From e160884c5a56487e8ce8511f33fa484bf1e040be Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Mon, 18 Aug 2025 10:59:38 -0600 Subject: [PATCH 01/79] Example set up to use doc co2, need to updated mcm locally --- .../co2_hydrogenation/plant_config_co2h.yaml | 1 + .../co2_hydrogenation/tech_config_co2h.yaml | 24 +++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml index c64b66d26..bdcda460a 100644 --- a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml @@ -28,6 +28,7 @@ technology_interconnections: [ ["electrolyzer", "methanol", "hydrogen", "pipe"], ["financials_group_1", "methanol", "LCOE"], ["financials_group_1", "methanol", "LCOH"], + ["doc","methanol","co2","pipe"], ] plant: diff --git a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml index 84469418d..46a592bde 100644 --- a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml @@ -36,6 +36,30 @@ technologies: turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: replacement_cost_percent: 0.15 # percent of capex - H2A default case + doc: + performance_model: + model: "direct_ocean_capture_performance" + cost_model: + model: "direct_ocean_capture_cost" + model_inputs: + performance_parameters: + power_single_ed_w: 24000000.0 # W + flow_rate_single_ed_m3s: 0.6 # m^3/s + number_ed_min: 1 + number_ed_max: 10 + E_HCl: 0.05 # kWh/mol + E_NaOH: 0.05 # kWh/mol + y_ext: 0.9 + y_pur: 0.2 + y_vac: 0.6 + frac_ed_flow: 0.01 + use_storage_tanks: True + initial_tank_volume_m3: 0.0 # m^3 + store_hours: 12.0 # hours + sal: 33.0 # ppt + temp_C: 12.0 # degrees Celsius + dic_i: 0.0022 # mol/L + pH_i: 8.1 # initial pH methanol: performance_model: model: "co2h_methanol_plant_performance" From b5641882381d04e1216ef91e1e8b0c6c8958c9b5 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Tue, 19 Aug 2025 09:31:14 -0600 Subject: [PATCH 02/79] Running with co2 connection (not correctly) --- .../co2_hydrogenation/plant_config_co2h.yaml | 1 + .../co2_hydrogenation/tech_config_co2h.yaml | 4 +++- .../co2/marine/direct_ocean_capture.py | 11 ++++++++--- .../marine/marine_carbon_capture_baseclass.py | 7 +++++++ h2integrate/core/h2integrate_model.py | 1 + h2integrate/transporters/cable.py | 18 +++++++++++++----- h2integrate/transporters/pipe.py | 19 ++++++++++++++----- 7 files changed, 47 insertions(+), 14 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml index bdcda460a..b29b2fd7d 100644 --- a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml @@ -61,6 +61,7 @@ finance_parameters: hopp: 2019 electrolyzer: 2021 methanol: 2020 + doc: 2020 options: commodity_type: "methanol" cost_adjustment_parameters: diff --git a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml index 46a592bde..192a09777 100644 --- a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml @@ -42,7 +42,7 @@ technologies: cost_model: model: "direct_ocean_capture_cost" model_inputs: - performance_parameters: + shared_parameters: power_single_ed_w: 24000000.0 # W flow_rate_single_ed_m3s: 0.6 # m^3/s number_ed_min: 1 @@ -60,6 +60,8 @@ technologies: temp_C: 12.0 # degrees Celsius dic_i: 0.0022 # mol/L pH_i: 8.1 # initial pH + cost_parameters: + infrastructure_type: "desal" methanol: performance_model: model: "co2h_methanol_plant_performance" diff --git a/h2integrate/converters/co2/marine/direct_ocean_capture.py b/h2integrate/converters/co2/marine/direct_ocean_capture.py index 086549b9d..7a815a64d 100644 --- a/h2integrate/converters/co2/marine/direct_ocean_capture.py +++ b/h2integrate/converters/co2/marine/direct_ocean_capture.py @@ -71,8 +71,12 @@ class DOCPerformanceModel(MarineCarbonCapturePerformanceBaseClass): MarineCarbonCapturePerformanceBaseClass Computes: - - Hourly CO2 capture rate (t/h) - - Annual CO2 capture (t/year) + - co2_capture_rate_mt: Hourly CO2 capture rate (t/h) + - co2_out: Hourly CO2 capture rate (kg/h) + - co2_capture_mtpy: Annual CO2 capture (t/year) + - co2_capture_kgpy: Annual CO2 capture (kg/year) + - total_tank_volume_m3: Total tank volume (m^3) + - plant_mCC_capacity_mtph: Plant carbon capture capacity (t/h) """ def initialize(self): @@ -121,7 +125,8 @@ def compute(self, inputs, outputs): ) outputs["co2_capture_rate_mt"] = ed_outputs.ED_outputs["mCC"] - outputs["co2_capture_mtpy"] = ed_outputs.mCC_yr + outputs["co2_out"] = ed_outputs.ED_outputs["mCC"] * 1000 + outputs["co2_capture_mtpy"] = max(ed_outputs.mCC_yr, 1e-6) # Must be >0 outputs["total_tank_volume_m3"] = range_outputs.V_aT_max + range_outputs.V_bT_max outputs["plant_mCC_capacity_mtph"] = max(range_outputs.S1["mCC"]) diff --git a/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py b/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py index 3c07ee10f..d4d8f9238 100644 --- a/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py +++ b/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py @@ -52,6 +52,13 @@ def setup(self): units="t", desc="Hourly CO₂ capture rate (t)", ) + self.add_output( + "co2_out", + val=0.0, + shape=8760, + units="kg/h", + desc="Hourly CO₂ capture rate (kg)", + ) self.add_output("co2_capture_mtpy", units="t/year", desc="Annual CO₂ captured (t/year)") diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index 9c5dd9da2..48a591905 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -449,6 +449,7 @@ def connect_technologies(self): # Create the transport object connection_component = self.supported_models[transport_type]() + connection_component.transport_item = transport_item # Add the connection component to the model self.plant.add_subsystem(connection_name, connection_component) diff --git a/h2integrate/transporters/cable.py b/h2integrate/transporters/cable.py index 1261b70b4..b6398d0e3 100644 --- a/h2integrate/transporters/cable.py +++ b/h2integrate/transporters/cable.py @@ -1,4 +1,7 @@ import openmdao.api as om +from attrs import field + +from h2integrate.core.validators import contains class CablePerformanceModel(om.ExplicitComponent): @@ -6,21 +9,26 @@ class CablePerformanceModel(om.ExplicitComponent): Pass-through cable with no losses. """ + transport_item: str = field(validator=contains(["electricity"])) + # TODO: Deliniate AC & DC electricity, voltage levels? + def setup(self): + self.input_name = self.transport_item + "_in" + self.output_name = self.transport_item + "_out" self.add_input( - "electricity_in", + self.input_name, val=0.0, shape_by_conn=True, - copy_shape="electricity_out", + copy_shape=self.output_name, units="kW", ) self.add_output( - "electricity_out", + self.output_name, val=0.0, shape_by_conn=True, - copy_shape="electricity_in", + copy_shape=self.input_name, units="kW", ) def compute(self, inputs, outputs): - outputs["electricity_out"] = inputs["electricity_in"] + outputs[self.output_name] = inputs[self.input_name] diff --git a/h2integrate/transporters/pipe.py b/h2integrate/transporters/pipe.py index 077e080db..0734feb2a 100644 --- a/h2integrate/transporters/pipe.py +++ b/h2integrate/transporters/pipe.py @@ -1,4 +1,7 @@ import openmdao.api as om +from attrs import field + +from h2integrate.core.validators import contains class PipePerformanceModel(om.ExplicitComponent): @@ -6,21 +9,27 @@ class PipePerformanceModel(om.ExplicitComponent): Pass-through pipe with no losses. """ + transport_item: str = field( + validator=contains(["hydrogen", "co2", "methanol", "ammonia", "nitrogen"]) + ) + def setup(self): + self.input_name = self.transport_item + "_in" + self.output_name = self.transport_item + "_out" self.add_input( - "hydrogen_in", + self.input_name, val=0.0, shape_by_conn=True, - copy_shape="hydrogen_out", + copy_shape=self.output_name, units="kg/s", ) self.add_output( - "hydrogen_out", + self.output_name, val=0.0, shape_by_conn=True, - copy_shape="hydrogen_in", + copy_shape=self.input_name, units="kg/s", ) def compute(self, inputs, outputs): - outputs["hydrogen_out"] = inputs["hydrogen_in"] + outputs[self.output_name] = inputs[self.input_name] From 4ea37bf44720a035bb64fbf22660057daaa24f39 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Mon, 25 Aug 2025 17:21:14 -0600 Subject: [PATCH 03/79] Running example with plots --- .../co2_hydrogenation/plant_config_co2h.yaml | 2 + .../co2_hydrogenation/plot_co2h_methanol.py | 62 +++++++++++++++++++ .../co2_hydrogenation/run_co2h_methanol.py | 4 ++ .../co2_hydrogenation/tech_config_co2h.yaml | 33 ++++++++++ 4 files changed, 101 insertions(+) create mode 100644 examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py diff --git a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml index b29b2fd7d..7afee8386 100644 --- a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml @@ -28,6 +28,7 @@ technology_interconnections: [ ["electrolyzer", "methanol", "hydrogen", "pipe"], ["financials_group_1", "methanol", "LCOE"], ["financials_group_1", "methanol", "LCOH"], + ["wind","doc","electricity","cable"], ["doc","methanol","co2","pipe"], ] @@ -61,6 +62,7 @@ finance_parameters: hopp: 2019 electrolyzer: 2021 methanol: 2020 + wind: 2020 doc: 2020 options: commodity_type: "methanol" diff --git a/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py new file mode 100644 index 000000000..a36999ad9 --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py @@ -0,0 +1,62 @@ +import pandas as pd +import matplotlib.pyplot as plt + + +def plot_methanol(model): + plt.clf() + + times = pd.date_range("2013", periods=8760, freq="1h") + + # HOPP Electricity for Electrolyzer + plt.subplot(3, 2, 1) + plt.title("HOPP for Electrolyzer") + hopp_elec_out = model.plant.hopp.hopp.get_val("electricity_out") + plt.plot(times, hopp_elec_out, label="electricity_out [kW]") + plt.yscale("log") + plt.legend() + + # Electricity to H2 using Electrolyzer + plt.subplot(3, 2, 3) + plt.title("Electrolyzer") + elyzer_elec_in = model.plant.electrolyzer.eco_pem_electrolyzer_performance.get_val( + "electricity_in" + ) + elyzer_h2_out = model.plant.electrolyzer.eco_pem_electrolyzer_performance.get_val( + "hydrogen_out" + ) + plt.plot(times, elyzer_elec_in, label="electricity_in [kW]") + plt.plot(times, elyzer_h2_out, label="hydrogen_out [kg/hr]") + plt.yscale("log") + plt.legend() + + # Wind Electricity for DOC + plt.subplot(3, 2, 2) + plt.title("Wind for DOC") + wind_elec_out = model.plant.wind.wind_plant_performance.get_val("electricity_out") + plt.plot(times, wind_elec_out, label="electricity_out [kW]") + plt.yscale("log") + plt.legend() + + # Electricity to CO2 using DOC + plt.subplot(3, 2, 4) + plt.title("DOC") + doc_elec_in = model.plant.doc.direct_ocean_capture_performance.get_val("electricity_in") + doc_co2_out = model.plant.doc.direct_ocean_capture_performance.get_val("co2_out") + plt.plot(times, doc_elec_in, label="electricity_in [kW]") + plt.plot(times, doc_co2_out, label="co2_out [kg/hr]") + plt.yscale("log") + plt.legend() + + # H2 and CO2 to Methanol + plt.subplot(3, 2, 5) + plt.title("Methanol") + meoh_h2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("hydrogen_in") + meoh_co2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("co2_in") + meoh_meoh_out = model.plant.methanol.co2h_methanol_plant_performance.get_val("methanol_out") + plt.plot(times, meoh_h2_in, label="hydrogen_in [kg/hr]") + plt.plot(times, meoh_co2_in, label="co2_in [kg/hr]") + plt.plot(times, meoh_meoh_out, label="methanol_out [kg/hr]") + plt.yscale("log") + plt.legend() + + plt.show() diff --git a/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py index 71c64af2b..c814aa882 100644 --- a/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py @@ -1,3 +1,5 @@ +from plot_co2h_methanol import plot_methanol + from h2integrate.core.h2integrate_model import H2IntegrateModel @@ -8,3 +10,5 @@ h2i.run() h2i.post_process() + +plot_methanol(h2i.prob.model) diff --git a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml index 192a09777..68e79f58e 100644 --- a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml @@ -36,6 +36,39 @@ technologies: turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: replacement_cost_percent: 0.15 # percent of capex - H2A default case + wind: + performance_model: + model: "wind_plant_performance" + cost_model: + model: "wind_plant_cost" + resource: + type: "pysam_wind" + wind_speed: 9. + model_inputs: + shared_parameters: + num_turbines: 100 + turbine_rating_kw: 8300 + performance_parameters: + rotor_diameter: 196. + hub_height: 130. + layout_mode: "basicgrid" + model_name: "pysam" + model_input_file: null + layout_params: + row_D_spacing: 10. + turbine_D_spacing: 10. + rating_range_kw: [1000, 5000] + floris_config: null + operational_losses: 10.0 + timestep: [1, 60] + fin_model: "default" + name: "UtilityScaleWindPlant" + turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use + turbine_group: "onshore" + override_wind_resource_height: True + adjust_air_density_for_elevation: True + cost_parameters: + cost_per_kw: 1500.0 doc: performance_model: model: "direct_ocean_capture_performance" From e94bb3da882bcf6d4e1072f2f286a8db401012aa Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Tue, 26 Aug 2025 08:59:14 -0600 Subject: [PATCH 04/79] Making tighter plots --- examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py | 2 ++ examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py | 1 + 2 files changed, 3 insertions(+) diff --git a/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py index a36999ad9..455c92537 100644 --- a/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py @@ -59,4 +59,6 @@ def plot_methanol(model): plt.yscale("log") plt.legend() + fig = plt.gcf() + fig.tight_layout() plt.show() diff --git a/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py index c814aa882..a955e4363 100644 --- a/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py @@ -11,4 +11,5 @@ h2i.post_process() +# Plot major in/out flows plot_methanol(h2i.prob.model) From f791fa7aa57d809c8e6cc477518cc3a106ae640f Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Tue, 26 Aug 2025 09:08:46 -0600 Subject: [PATCH 05/79] Plot colors --- .../co2_hydrogenation/plot_co2h_methanol.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py index 455c92537..f8f35780a 100644 --- a/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py @@ -25,7 +25,7 @@ def plot_methanol(model): "hydrogen_out" ) plt.plot(times, elyzer_elec_in, label="electricity_in [kW]") - plt.plot(times, elyzer_h2_out, label="hydrogen_out [kg/hr]") + plt.plot(times, elyzer_h2_out, label="hydrogen_out [kg/hr]", color=[1, 0.5, 0]) plt.yscale("log") plt.legend() @@ -40,10 +40,10 @@ def plot_methanol(model): # Electricity to CO2 using DOC plt.subplot(3, 2, 4) plt.title("DOC") - doc_elec_in = model.plant.doc.direct_ocean_capture_performance.get_val("electricity_in") + doc_elec_in = model.plant.doc.direct_ocean_capture_performance.get_val("electricity_in") / 1000 doc_co2_out = model.plant.doc.direct_ocean_capture_performance.get_val("co2_out") plt.plot(times, doc_elec_in, label="electricity_in [kW]") - plt.plot(times, doc_co2_out, label="co2_out [kg/hr]") + plt.plot(times, doc_co2_out, label="co2_out [kg/hr]", color=[0.5, 0.25, 0]) plt.yscale("log") plt.legend() @@ -53,9 +53,9 @@ def plot_methanol(model): meoh_h2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("hydrogen_in") meoh_co2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("co2_in") meoh_meoh_out = model.plant.methanol.co2h_methanol_plant_performance.get_val("methanol_out") - plt.plot(times, meoh_h2_in, label="hydrogen_in [kg/hr]") - plt.plot(times, meoh_co2_in, label="co2_in [kg/hr]") - plt.plot(times, meoh_meoh_out, label="methanol_out [kg/hr]") + plt.plot(times, meoh_h2_in, label="hydrogen_in [kg/hr]", color=[1, 0.5, 0]) + plt.plot(times, meoh_co2_in, label="co2_in [kg/hr]", color=[0.5, 0.25, 0]) + plt.plot(times, meoh_meoh_out, label="methanol_out [kg/hr]", color=[1, 0, 0.5]) plt.yscale("log") plt.legend() From 64680e8e69cb42fd98e213bc07900445961aa33f Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Thu, 4 Sep 2025 13:04:48 -0600 Subject: [PATCH 06/79] Making new folder for methanol doc example --- .../03_co2h_methanol.yaml | 0 .../driver_config.yaml | 0 .../plant_config_co2h.yaml | 0 .../plot_co2h_methanol.py | 0 .../run_co2h_methanol.py | 0 .../tech_config_co2h.yaml | 0 .../tech_inputs/default_fin_config.yaml | 0 .../tech_inputs/hopp_config.yaml | 0 .../tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv | 0 .../wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw | 0 10 files changed, 0 insertions(+), 0 deletions(-) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/03_co2h_methanol.yaml (100%) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/driver_config.yaml (100%) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/plant_config_co2h.yaml (100%) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/plot_co2h_methanol.py (100%) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/run_co2h_methanol.py (100%) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/tech_config_co2h.yaml (100%) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/tech_inputs/default_fin_config.yaml (100%) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/tech_inputs/hopp_config.yaml (100%) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv (100%) rename examples/03_methanol/{co2_hydrogenation => co2_hydrogenation_doc}/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw (100%) diff --git a/examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml b/examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml similarity index 100% rename from examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml rename to examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml diff --git a/examples/03_methanol/co2_hydrogenation/driver_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml similarity index 100% rename from examples/03_methanol/co2_hydrogenation/driver_config.yaml rename to examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml diff --git a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml similarity index 100% rename from examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml rename to examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml diff --git a/examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py similarity index 100% rename from examples/03_methanol/co2_hydrogenation/plot_co2h_methanol.py rename to examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py diff --git a/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation_doc/run_co2h_methanol.py similarity index 100% rename from examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py rename to examples/03_methanol/co2_hydrogenation_doc/run_co2h_methanol.py diff --git a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml similarity index 100% rename from examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml rename to examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/default_fin_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/default_fin_config.yaml similarity index 100% rename from examples/03_methanol/co2_hydrogenation/tech_inputs/default_fin_config.yaml rename to examples/03_methanol/co2_hydrogenation_doc/tech_inputs/default_fin_config.yaml diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml similarity index 100% rename from examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml rename to examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv similarity index 100% rename from examples/03_methanol/co2_hydrogenation/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv rename to examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw similarity index 100% rename from examples/03_methanol/co2_hydrogenation/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw rename to examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw From e4c1a9bec737e2cebf0e8f3246c282cfb8fec641 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Thu, 4 Sep 2025 13:07:23 -0600 Subject: [PATCH 07/79] Repopulating co2h example --- .../co2_hydrogenation/03_co2h_methanol.yaml | 7 + .../co2_hydrogenation/driver_config.yaml | 5 + .../co2_hydrogenation/plant_config_co2h.yaml | 73 + .../co2_hydrogenation/run_co2h_methanol.py | 10 + .../co2_hydrogenation/tech_config_co2h.yaml | 71 + .../tech_inputs/default_fin_config.yaml | 41 + .../tech_inputs/hopp_config.yaml | 65 + .../solar/32.31714_-100.18_psmv3_60_2013.csv | 8763 ++++++++++++++++ ...00.18_windtoolkit_2013_60min_100m_120m.srw | 8765 +++++++++++++++++ 9 files changed, 17800 insertions(+) create mode 100644 examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml create mode 100644 examples/03_methanol/co2_hydrogenation/driver_config.yaml create mode 100644 examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml create mode 100644 examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py create mode 100644 examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml create mode 100644 examples/03_methanol/co2_hydrogenation/tech_inputs/default_fin_config.yaml create mode 100644 examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml create mode 100644 examples/03_methanol/co2_hydrogenation/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv create mode 100644 examples/03_methanol/co2_hydrogenation/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw diff --git a/examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml b/examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml new file mode 100644 index 000000000..0420632e8 --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/03_co2h_methanol.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "This reference hybrid plant contains a simple SMR methanol plant" + +driver_config: "driver_config.yaml" +technology_config: "tech_config_co2h.yaml" +plant_config: "plant_config_co2h.yaml" diff --git a/examples/03_methanol/co2_hydrogenation/driver_config.yaml b/examples/03_methanol/co2_hydrogenation/driver_config.yaml new file mode 100644 index 000000000..0533f88a4 --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/driver_config.yaml @@ -0,0 +1,5 @@ +name: "driver_config" +description: "This analysis runs a hybrid plant to match the first example in H2I" + +general: + folder_output: outputs diff --git a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml new file mode 100644 index 000000000..c64b66d26 --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml @@ -0,0 +1,73 @@ +name: "plant_config" +description: "This plant is located west of the Wolf Hollow II NGCC power plant in Texas" + +site: + latitude: 32.34 + longitude: -98.27 + elevation_m: 440.0 + time_zone: -6 + + # array of polygons defining boundaries with x/y coords + boundaries: [ + { + x: [0.0, 1000.0, 1000.0, 0.0], + y: [0.0, 0.0, 100.0, 1000.0], + }, + { + x: [2000.0, 2500.0, 2000.0], + y: [2000.0, 2000.0, 2500.0], + } + ] + +# array of arrays containing left-to-right technology +# interconnections; can support bidirectional connections +# with the reverse definition. +# this will naturally grow as we mature the interconnected tech +technology_interconnections: [ + ["hopp", "electrolyzer", "electricity", "cable"], + ["electrolyzer", "methanol", "hydrogen", "pipe"], + ["financials_group_1", "methanol", "LCOE"], + ["financials_group_1", "methanol", "LCOH"], +] + +plant: + plant_life: 30 + grid_connection: True # option, can be turned on or off + ppa_price: 0.027498168 # based off correlations of LBNL PPA data + hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True + +finance_parameters: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind + debt_equity_split: False + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax: 0.02 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_insurance: 0.01 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + administrative_expense_percent_of_sales: 0.00 # percent of sales H2FAST default + depreciation_method: "MACRS" # can be "MACRS" or "Straight line" - MACRS may be better and can reduce LCOH by more than $1/kg and is spec'd in the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depreciation_period_electrolyzer: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + discount_years: + hopp: 2019 + electrolyzer: 2021 + methanol: 2020 + options: + commodity_type: "methanol" + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + target_dollar_year: 2022 + +policy_parameters: # these should be adjusted for inflation prior to application - order of operations: rate in 1992 $, then prevailing wage multiplier if applicable, then inflation + electricity_itc: 0 + electricity_ptc: 0 + h2_ptc: 0 + h2_storage_itc: 0 diff --git a/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py new file mode 100644 index 000000000..71c64af2b --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/run_co2h_methanol.py @@ -0,0 +1,10 @@ +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +# Create an H2I model +h2i = H2IntegrateModel("03_co2h_methanol.yaml") + +# Run the model +h2i.run() + +h2i.post_process() diff --git a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml new file mode 100644 index 000000000..84469418d --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml @@ -0,0 +1,71 @@ +name: "technology_config" +description: "This hybrid plant produces methanol" + +technologies: + hopp: + performance_model: + model: "hopp" + config: !include tech_inputs/hopp_config.yaml + cost_model: + model: "hopp" + financial_model: + group: "1" + electrolyzer_rating: 156. # MW + electrolyzer: + performance_model: + model: "eco_pem_electrolyzer_performance" + cost_model: + model: "singlitico_electrolyzer_cost" + financial_model: + group: "1" + model_inputs: + shared_parameters: + location: "onshore" + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) + performance_parameters: + sizing: + resize_for_enduse: False + size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) + hydrogen_dmd: + n_clusters: 4 + cluster_rating_MW: 39 + pem_control_type: 'basic' + eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000 #number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: True #include degradation + turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + financial_parameters: + replacement_cost_percent: 0.15 # percent of capex - H2A default case + methanol: + performance_model: + model: "co2h_methanol_plant_performance" + cost_model: + model: "co2h_methanol_plant_cost" + financial_model: + model: "co2h_methanol_plant_financial" + group: "2" + model_inputs: + shared_parameters: + plant_capacity_kgpy: 127893196.8 + plant_capacity_flow: "methanol" + performance_parameters: + capacity_factor: 0.9 + co2e_emit_ratio: 0.020296 + h2o_consume_ratio: 0.988 + h2_consume_ratio: 0.195 + co2_consume_ratio: 1.423 + elec_consume_ratio: 0.09466667 + meoh_syn_cat_consume_ratio: 0.00000128398 + ng_consume_ratio: 0.073511601 + cost_parameters: + ng_lhv: 47.1 + toc_kg_y: 1.0633873 + foc_kg_y2: 0.020743864 + voc_kg: 0.00079 + meoh_syn_cat_price: 615.274273 + ng_price: 4.0 + co2_price: 0.0549007 + finance_parameters: + # Sources in NETL-PUB-22580: Exhibit 3-5 and Exhibit 3-7 + tasc_toc_multiplier: 1.093 + fixed_charge_rate: 0.0707 diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/default_fin_config.yaml b/examples/03_methanol/co2_hydrogenation/tech_inputs/default_fin_config.yaml new file mode 100644 index 000000000..f39184e74 --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/tech_inputs/default_fin_config.yaml @@ -0,0 +1,41 @@ +battery_system: + batt_replacement_schedule_percent: + - 0 + batt_bank_replacement: + - 0 + batt_replacement_option: 0 + batt_computed_bank_capacity: 0 + batt_meter_position: 0 +system_costs: + om_fixed: [0] + om_production: [0] + om_capacity: [0] + om_batt_fixed_cost: 0 + om_batt_variable_cost: [0] + om_batt_capacity_cost: 0 + om_batt_replacement_cost: 0 + om_replacement_cost_escal: 0 +system_use_lifetime_output: 0 +financial_parameters: + inflation_rate: 0.0 # nominal basis + real_discount_rate: 9.0 # nominal return based on 2024 ATB baseline workbook for land-based wind - with 0% inflation, real and nominal rates are equal + federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates + state_tax_rate: 9.8 # https://taxfoundation.org/data/all/state/state-corporate-income-tax-rates-brackets-2024/ + property_tax_rate: 2.0 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + debt_percent: 72.4 # based on 2024 ATB for land-based wind + term_int_rate: 7.0 # based on 2024 ATB land-based wind nominal interest rate + months_working_reserve: 1 + analysis_start_year: 2030 + installation_months: 36 + sales_tax_rate_state: 7.375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + admin_expense_percent_of_sales: 0.0 # H2FAST default + capital_gains_tax_rate: 15.0 # H2FAST default + debt_type: "Revolving debt" # H2FAST default + depreciation_method: "MACRS" + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 +cp_capacity_credit_percent: [0] +degradation: [0] +revenue: + ppa_price_input: [0.0] # cents/kWh + ppa_escalation: 0 # % diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml new file mode 100644 index 000000000..7aed60354 --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml @@ -0,0 +1,65 @@ +site: #!include flatirons_site.yaml + data: + lat: 32.34 + lon: -98.27 + elev: 440 + year: 2013 + tz: -6 + site_boundaries: # enlarged boundaries to fit all turbines + verts: + - [0.0, 0.0] + - [0.0, 25000] + - [25000, 25000] + - [25000, 0.0] + verts_simple: + - [0.0, 0.0] + - [0.0, 25000] + - [25000, 25000] + - [25000, 0.0] + solar_resource_file: "tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv" + wind_resource_file: "tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw" + wave_resource_file: "" + grid_resource_file: "" + hub_height: 115.0 + capacity_hours: [] + solar: true + wind: true + wave: false + wind_resource_origin: "WTK" + +technologies: + wind: + num_turbines: 29 + turbine_rating_kw: 6000.0 + model_name: pysam #floris + timestep: [0, 8760] + # floris_config: !include floris_input_lbw_6MW.yaml + fin_model: !include default_fin_config.yaml + pv: + system_capacity_kw: 350000 + dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + fin_model: !include default_fin_config.yaml + grid: + interconnect_kw: 200000 # Set higher than rated generation capacity + fin_model: !include default_fin_config.yaml + +config: + simulation_options: + cache: true + wind: + skip_financial: false + dispatch_options: + battery_dispatch: load_following_heuristic # load_following_heuristic #heuristic + solver: cbc + n_look_ahead_periods: 48 + grid_charging: false + pv_charging_only: false + include_lifecycle_count: false + cost_info: + wind_installed_cost_mw: 1380000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for land-based wind. 2025 used as an overnight-capex lock-in date for 2030 operation + solar_installed_cost_mw: 1323000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale pv. 2025 used as an overnight-capex lock-in date for 2030 operation + storage_installed_cost_mwh: 310000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation + storage_installed_cost_mw: 311000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation + wind_om_per_kw: 29 # (2022USD) 2030 costs in 2022 USD from 2024 ATB for land-based wind + pv_om_per_kw: 18 # (2022USD) 2030 costs in 2022 USD from NREL 2024 ATB for utility-scale PV + battery_om_per_kw: 15.525 # (2022USD) based on 2.5 percent of battery capex/kW for a 1-hour battery using both power and energy costs above diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv b/examples/03_methanol/co2_hydrogenation/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv new file mode 100644 index 000000000..d3865c868 --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv @@ -0,0 +1,8763 @@ +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 Units,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 +NSRDB,611351,-,-,-,32.33,-100.18,-6,761,-6,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,v3.2.2 +Year,Month,Day,Hour,Minute,GHI,DHI,DNI,Wind Speed,Temperature,Solar Zenith Angle,Pressure,Dew Point +2013,1,1,0,30,0,0,0,3.5,1.5,170.13,929,-1.8 +2013,1,1,1,30,0,0,0,3.7,0.1,166.24,930,-1.8 +2013,1,1,2,30,0,0,0,3.7,-1.1,154.88,931,-2.1 +2013,1,1,3,30,0,0,0,3.6,-1.9000000000000001,142.39000000000001,931,-3.1 +2013,1,1,4,30,0,0,0,3.5,-2.4000000000000004,129.73,931,-4.3 +2013,1,1,5,30,0,0,0,3.4000000000000004,-2.9000000000000004,117.18,932,-5.1000000000000005 +2013,1,1,6,30,0,0,0,3.3000000000000003,-3.4000000000000004,104.92,933,-5.5 +2013,1,1,7,30,0,0,0,3.6,-3.5,93.15,934,-5.800000000000001 +2013,1,1,8,30,65,51,99,4.1000000000000005,-2.4000000000000004,82,934,-6 +2013,1,1,9,30,305,56,812,4,-0.6000000000000001,72.14,935,-6 +2013,1,1,10,30,391,112,634,3.9000000000000004,1.3,63.9,935,-6.1000000000000005 +2013,1,1,11,30,417,218,377,3.8000000000000003,3.1,58.04,934,-6.300000000000001 +2013,1,1,12,30,466,230,415,3.7,4.5,55.35,934,-6.2 +2013,1,1,13,30,503,161,617,3.8000000000000003,5.4,56.300000000000004,933,-6.2 +2013,1,1,14,30,462,102,735,3.9000000000000004,5.6000000000000005,60.7,933,-6.2 +2013,1,1,15,30,300,123,471,3.9000000000000004,4.9,67.89,933,-6.4 +2013,1,1,16,30,189,43,650,3,3.1,77.05,934,-6.5 +2013,1,1,17,30,20,20,0,2.2,1.8,87.42,934,-6.2 +2013,1,1,18,30,0,0,0,2.1,0,99.13,935,-6.300000000000001 +2013,1,1,19,30,0,0,0,2.1,-0.8,111.18,935,-6.6000000000000005 +2013,1,1,20,30,0,0,0,2,-1.6,123.60000000000001,936,-6.800000000000001 +2013,1,1,21,30,0,0,0,1.7000000000000002,-2.2,136.23,936,-7 +2013,1,1,22,30,0,0,0,1.5,-2.7,148.86,936,-7.2 +2013,1,1,23,30,0,0,0,1.3,-3.1,160.99,936,-7.4 +2013,1,2,0,30,0,0,0,1.1,-3.4000000000000004,170.02,936,-7.5 +2013,1,2,1,30,0,0,0,0.9,-3.8000000000000003,166.25,936,-7.6000000000000005 +2013,1,2,2,30,0,0,0,0.9,-4.1000000000000005,154.94,936,-7.7 +2013,1,2,3,30,0,0,0,0.9,-4.2,142.45000000000002,936,-7.7 +2013,1,2,4,30,0,0,0,0.9,-4.3,129.79,936,-7.800000000000001 +2013,1,2,5,30,0,0,0,0.9,-4.3,117.24000000000001,936,-7.800000000000001 +2013,1,2,6,30,0,0,0,0.8,-4.3,104.97,936,-7.800000000000001 +2013,1,2,7,30,0,0,0,1.2000000000000002,-3.6,93.19,936,-7.9 +2013,1,2,8,30,64,51,97,1.8,-2,82.03,936,-7.7 +2013,1,2,9,30,226,103,403,2,0,72.14,936,-7.7 +2013,1,2,10,30,387,117,615,2.3000000000000003,2,63.88,936,-7.4 +2013,1,2,11,30,490,134,672,2.6,4,57.99,936,-6.9 +2013,1,2,12,30,522,163,630,2.8000000000000003,5.9,55.27,935,-6.6000000000000005 +2013,1,2,13,30,517,147,663,2.8000000000000003,7.300000000000001,56.19,934,-6.7 +2013,1,2,14,30,534,65,953,2.6,7.9,60.57,933,-7 +2013,1,2,15,30,397,58,896,1.9000000000000001,7.6000000000000005,67.75,933,-7.1000000000000005 +2013,1,2,16,30,216,45,757,1.2000000000000002,5.6000000000000005,76.91,933,-5.9 +2013,1,2,17,30,35,18,361,1,4.1000000000000005,87.29,933,-5.2 +2013,1,2,18,30,0,0,0,1.3,1,98.99000000000001,934,-6.4 +2013,1,2,19,30,0,0,0,1.3,-0.2,111.04,935,-6.6000000000000005 +2013,1,2,20,30,0,0,0,1.3,-0.9,123.47,936,-6.800000000000001 +2013,1,2,21,30,0,0,0,1.2000000000000002,-1.2000000000000002,136.1,936,-6.800000000000001 +2013,1,2,22,30,0,0,0,1,-1.3,148.72,937,-6.7 +2013,1,2,23,30,0,0,0,0.8,-1.4000000000000001,160.85,937,-6.7 +2013,1,3,0,30,0,0,0,0.8,-1.8,169.89000000000001,937,-6.7 +2013,1,3,1,30,0,0,0,1,-2.7,166.25,937,-6.7 +2013,1,3,2,30,0,0,0,1.1,-3.8000000000000003,154.99,937,-6.7 +2013,1,3,3,30,0,0,0,1.2000000000000002,-4.7,142.51,938,-6.7 +2013,1,3,4,30,0,0,0,1.3,-5,129.85,938,-6.800000000000001 +2013,1,3,5,30,0,0,0,1.4000000000000001,-5.1000000000000005,117.29,939,-6.7 +2013,1,3,6,30,0,0,0,1.6,-4.9,105.02,939,-6.6000000000000005 +2013,1,3,7,30,0,0,0,2.4000000000000004,-3.7,93.22,940,-6.300000000000001 +2013,1,3,8,30,29,29,0,2.9000000000000004,-1.9000000000000001,82.04,940,-6 +2013,1,3,9,30,117,113,13,3.2,0.8,72.14,941,-5.5 +2013,1,3,10,30,297,190,242,3.5,3.3000000000000003,63.85,941,-5.2 +2013,1,3,11,30,279,238,78,3.5,4.800000000000001,57.93,940,-5.6000000000000005 +2013,1,3,12,30,450,244,359,3.4000000000000004,5.800000000000001,55.18,939,-6 +2013,1,3,13,30,455,225,411,3.3000000000000003,6.300000000000001,56.07,939,-6.6000000000000005 +2013,1,3,14,30,138,138,0,3.3000000000000003,6.300000000000001,60.44,938,-7.300000000000001 +2013,1,3,15,30,151,143,19,3,5.800000000000001,67.61,938,-7.800000000000001 +2013,1,3,16,30,35,35,0,1.9000000000000001,4,76.77,939,-7.800000000000001 +2013,1,3,17,30,16,16,0,1,2.6,87.15,939,-5.5 +2013,1,3,18,30,0,0,0,1.1,1.2000000000000002,98.84,939,-5.800000000000001 +2013,1,3,19,30,0,0,0,1.1,0.9,110.9,940,-5.800000000000001 +2013,1,3,20,30,0,0,0,0.9,0.8,123.33,940,-5.7 +2013,1,3,21,30,0,0,0,0.9,0.7000000000000001,135.96,941,-5.5 +2013,1,3,22,30,0,0,0,0.8,0.7000000000000001,148.58,941,-5.6000000000000005 +2013,1,3,23,30,0,0,0,0.6000000000000001,0.9,160.70000000000002,941,-5.9 +2013,1,4,0,30,0,0,0,0.30000000000000004,0.9,169.76,941,-5.9 +2013,1,4,1,30,0,0,0,0.4,0.30000000000000004,166.25,941,-5.5 +2013,1,4,2,30,0,0,0,0.7000000000000001,-0.5,155.03,941,-5.300000000000001 +2013,1,4,3,30,0,0,0,0.7000000000000001,-1.1,142.56,940,-4.9 +2013,1,4,4,30,0,0,0,0.8,-1.4000000000000001,129.9,940,-4.800000000000001 +2013,1,4,5,30,0,0,0,0.9,-1.7000000000000002,117.34,940,-4.800000000000001 +2013,1,4,6,30,0,0,0,0.9,-1.9000000000000001,105.06,941,-4.800000000000001 +2013,1,4,7,30,0,0,0,0.8,-1.2000000000000002,93.25,941,-4.800000000000001 +2013,1,4,8,30,43,43,0,1.4000000000000001,0.5,82.06,942,-4.1000000000000005 +2013,1,4,9,30,79,79,0,2.4000000000000004,2,72.13,942,-3.6 +2013,1,4,10,30,192,177,34,2.9000000000000004,2.9000000000000004,63.81,942,-3.5 +2013,1,4,11,30,224,209,27,3,3.6,57.86,941,-3.4000000000000004 +2013,1,4,12,30,269,243,44,2.9000000000000004,3.9000000000000004,55.08,940,-3.2 +2013,1,4,13,30,315,259,99,2.7,4.1000000000000005,55.94,939,-3 +2013,1,4,14,30,270,223,94,2.4000000000000004,4.1000000000000005,60.300000000000004,938,-2.9000000000000004 +2013,1,4,15,30,193,162,79,2.2,3.7,67.46000000000001,938,-2.7 +2013,1,4,16,30,116,91,107,1.5,2.6,76.62,938,-2.6 +2013,1,4,17,30,17,17,0,1,1.7000000000000002,87.01,938,-2.2 +2013,1,4,18,30,0,0,0,0.9,0,98.7,938,-2.2 +2013,1,4,19,30,0,0,0,1.2000000000000002,-0.5,110.76,938,-1.8 +2013,1,4,20,30,0,0,0,1.7000000000000002,-1,123.19,938,-1.6 +2013,1,4,21,30,0,0,0,2,-1.6,135.82,938,-1.6 +2013,1,4,22,30,0,0,0,2.2,-2.2,148.44,938,-2.2 +2013,1,4,23,30,0,0,0,2.5,-2.5,160.56,937,-2.5 +2013,1,5,0,30,0,0,0,2.8000000000000003,-2.6,169.62,937,-2.6 +2013,1,5,1,30,0,0,0,3.2,-2.3000000000000003,166.24,937,-2.3000000000000003 +2013,1,5,2,30,0,0,0,3.4000000000000004,-2.3000000000000003,155.07,937,-2.3000000000000003 +2013,1,5,3,30,0,0,0,3.4000000000000004,-2.4000000000000004,142.61,936,-2.4000000000000004 +2013,1,5,4,30,0,0,0,3.3000000000000003,-2.7,129.95,936,-2.7 +2013,1,5,5,30,0,0,0,3.4000000000000004,-2.8000000000000003,117.38,936,-2.8000000000000003 +2013,1,5,6,30,0,0,0,3.5,-3,105.09,936,-3 +2013,1,5,7,30,0,0,0,3.9000000000000004,-2.5,93.27,936,-2.8000000000000003 +2013,1,5,8,30,120,33,630,4.5,-0.9,82.06,936,-2.5 +2013,1,5,9,30,314,48,866,4.6000000000000005,1.6,72.12,936,-1.9000000000000001 +2013,1,5,10,30,479,56,959,4.5,4.5,63.77,936,-1.6 +2013,1,5,11,30,594,59,1003,4.4,7.4,57.79,935,-2.6 +2013,1,5,12,30,645,59,1022,4.2,9.700000000000001,54.97,934,-4.7 +2013,1,5,13,30,630,58,1017,4,11.100000000000001,55.81,933,-6.1000000000000005 +2013,1,5,14,30,548,54,992,3.5,11.700000000000001,60.15,933,-6.6000000000000005 +2013,1,5,15,30,408,48,935,2.4000000000000004,11.100000000000001,67.31,933,-6.6000000000000005 +2013,1,5,16,30,227,38,806,1.4000000000000001,8.6,76.47,933,-2.1 +2013,1,5,17,30,42,17,449,1.2000000000000002,6.9,86.87,933,-3.7 +2013,1,5,18,30,0,0,0,1.2000000000000002,5.2,98.55,934,-5.800000000000001 +2013,1,5,19,30,0,0,0,1.3,3.6,110.61,935,-6.1000000000000005 +2013,1,5,20,30,0,0,0,1.5,1.9000000000000001,123.05,936,-6.300000000000001 +2013,1,5,21,30,0,0,0,1.7000000000000002,0.5,135.68,936,-6.6000000000000005 +2013,1,5,22,30,0,0,0,1.9000000000000001,-0.6000000000000001,148.3,937,-7 +2013,1,5,23,30,0,0,0,2.2,-1.5,160.41,937,-7.5 +2013,1,6,0,30,0,0,0,2.3000000000000003,-2.2,169.48,938,-7.9 +2013,1,6,1,30,0,0,0,2.3000000000000003,-2.9000000000000004,166.22,938,-8.200000000000001 +2013,1,6,2,30,0,0,0,2.3000000000000003,-3.5,155.1,938,-8.3 +2013,1,6,3,30,0,0,0,2.3000000000000003,-4,142.65,939,-8.200000000000001 +2013,1,6,4,30,0,0,0,2.3000000000000003,-4.5,129.99,939,-8 +2013,1,6,5,30,0,0,0,2.2,-4.800000000000001,117.42,939,-7.5 +2013,1,6,6,30,0,0,0,2.1,-5,105.12,940,-7 +2013,1,6,7,30,0,0,0,2.5,-3.8000000000000003,93.29,940,-6.6000000000000005 +2013,1,6,8,30,121,29,663,2.9000000000000004,-1.1,82.06,940,-5.9 +2013,1,6,9,30,313,42,879,2.5,2.2,72.10000000000001,941,-5 +2013,1,6,10,30,478,50,968,2.5,5.9,63.72,941,-4.3 +2013,1,6,11,30,592,52,1011,2.5,8.5,57.71,940,-4.800000000000001 +2013,1,6,12,30,647,58,1023,2.2,10,54.86,939,-5 +2013,1,6,13,30,632,56,1021,2,10.8,55.67,938,-5 +2013,1,6,14,30,551,53,995,2,11,60,938,-5.2 +2013,1,6,15,30,412,48,936,1.7000000000000002,10.3,67.15,937,-5.2 +2013,1,6,16,30,230,38,810,1.3,7.7,76.31,937,-3.1 +2013,1,6,17,30,44,18,461,1.2000000000000002,5.6000000000000005,86.72,937,-3 +2013,1,6,18,30,0,0,0,1.4000000000000001,2.8000000000000003,98.4,937,-4.7 +2013,1,6,19,30,0,0,0,1.5,1.7000000000000002,110.46000000000001,937,-5.1000000000000005 +2013,1,6,20,30,0,0,0,1.5,0.7000000000000001,122.9,937,-5.4 +2013,1,6,21,30,0,0,0,1.5,-0.1,135.54,937,-5.7 +2013,1,6,22,30,0,0,0,1.6,-0.8,148.15,937,-6 +2013,1,6,23,30,0,0,0,1.6,-1.5,160.25,937,-6.1000000000000005 +2013,1,7,0,30,0,0,0,1.7000000000000002,-1.9000000000000001,169.32,936,-6.1000000000000005 +2013,1,7,1,30,0,0,0,1.7000000000000002,-1.8,166.19,936,-6 +2013,1,7,2,30,0,0,0,1.6,-1.7000000000000002,155.13,935,-5.9 +2013,1,7,3,30,0,0,0,1.5,-2.1,142.69,935,-5.7 +2013,1,7,4,30,0,0,0,1.4000000000000001,-3,130.03,935,-5.6000000000000005 +2013,1,7,5,30,0,0,0,1.4000000000000001,-3.7,117.45,935,-5.6000000000000005 +2013,1,7,6,30,0,0,0,1.5,-3.5,105.15,935,-5.4 +2013,1,7,7,30,0,0,0,1.9000000000000001,-2,93.3,935,-5.2 +2013,1,7,8,30,79,47,229,2.6,-0.1,82.06,935,-4.800000000000001 +2013,1,7,9,30,250,83,540,2.9000000000000004,1.7000000000000002,72.07000000000001,935,-4.6000000000000005 +2013,1,7,10,30,279,197,185,3.3000000000000003,4.3,63.660000000000004,934,-4.1000000000000005 +2013,1,7,11,30,374,245,242,4,6.9,57.620000000000005,933,-4.4 +2013,1,7,12,30,419,267,263,4,8,54.74,932,-5.1000000000000005 +2013,1,7,13,30,394,265,228,3.6,8.1,55.53,931,-5 +2013,1,7,14,30,398,199,395,3.4000000000000004,8.200000000000001,59.84,931,-4.7 +2013,1,7,15,30,198,167,79,3.1,8,66.98,930,-4.4 +2013,1,7,16,30,225,45,753,2.2,5.7,76.15,930,-3.7 +2013,1,7,17,30,25,22,52,1.5,3.7,86.57000000000001,930,-3 +2013,1,7,18,30,0,0,0,1.8,1.5,98.25,930,-3.5 +2013,1,7,19,30,0,0,0,2,1.5,110.32000000000001,930,-3.3000000000000003 +2013,1,7,20,30,0,0,0,2.2,1.3,122.76,929,-3 +2013,1,7,21,30,0,0,0,2.2,1.1,135.39000000000001,929,-2.8000000000000003 +2013,1,7,22,30,0,0,0,2.1,0.9,148.01,929,-2.6 +2013,1,7,23,30,0,0,0,2,0.5,160.1,929,-2.2 +2013,1,8,0,30,0,0,0,1.9000000000000001,0.1,169.17000000000002,928,-1.9000000000000001 +2013,1,8,1,30,0,0,0,1.9000000000000001,-0.4,166.16,928,-1.6 +2013,1,8,2,30,0,0,0,1.7000000000000002,-1,155.15,928,-1.4000000000000001 +2013,1,8,3,30,0,0,0,1.6,-1.5,142.73,928,-1.5 +2013,1,8,4,30,0,0,0,1.4000000000000001,-1.8,130.07,927,-1.8 +2013,1,8,5,30,0,0,0,1.2000000000000002,-1.8,117.48,927,-1.8 +2013,1,8,6,30,0,0,0,1.1,-1,105.17,928,-1 +2013,1,8,7,30,0,0,0,1.3,0.7000000000000001,93.31,928,0.4 +2013,1,8,8,30,101,45,403,1.6,2.2,82.05,929,0.9 +2013,1,8,9,30,10,10,0,1.8,3.1,72.03,929,1.4000000000000001 +2013,1,8,10,30,32,32,0,1.9000000000000001,4.2,63.6,928,2.1 +2013,1,8,11,30,29,29,0,2,5.300000000000001,57.52,927,3.1 +2013,1,8,12,30,107,107,0,2.1,6.300000000000001,54.61,926,4.1000000000000005 +2013,1,8,13,30,125,125,0,2.3000000000000003,7.1000000000000005,55.370000000000005,925,4.800000000000001 +2013,1,8,14,30,128,128,0,2.6,7.5,59.67,924,5.300000000000001 +2013,1,8,15,30,72,72,0,2.9000000000000004,7.4,66.82000000000001,925,5.5 +2013,1,8,16,30,13,13,0,2.6,6.7,75.98,926,5.6000000000000005 +2013,1,8,17,30,38,25,215,2.3000000000000003,6.1000000000000005,86.42,926,5.6000000000000005 +2013,1,8,18,30,0,0,0,2.7,5,98.09,927,5 +2013,1,8,19,30,0,0,0,3.2,4.5,110.17,928,4.5 +2013,1,8,20,30,0,0,0,3.8000000000000003,4.1000000000000005,122.61,927,4.1000000000000005 +2013,1,8,21,30,0,0,0,3.6,4,135.25,928,4 +2013,1,8,22,30,0,0,0,3.7,4,147.86,929,4 +2013,1,8,23,30,0,0,0,4.4,4,159.94,928,4 +2013,1,9,0,30,0,0,0,3.8000000000000003,3.9000000000000004,169,929,3.9000000000000004 +2013,1,9,1,30,0,0,0,2.7,3.9000000000000004,166.11,930,3.9000000000000004 +2013,1,9,2,30,0,0,0,2.6,3.9000000000000004,155.16,931,3.9000000000000004 +2013,1,9,3,30,0,0,0,2.9000000000000004,4,142.76,931,4 +2013,1,9,4,30,0,0,0,3.1,4,130.1,931,4 +2013,1,9,5,30,0,0,0,4,3.9000000000000004,117.51,931,3.9000000000000004 +2013,1,9,6,30,0,0,0,4.7,3.9000000000000004,105.18,931,3.9000000000000004 +2013,1,9,7,30,0,0,0,4.9,4.1000000000000005,93.31,931,4.1000000000000005 +2013,1,9,8,30,22,22,0,5.4,4.7,82.03,932,4.3 +2013,1,9,9,30,21,21,0,5.9,5.7,71.99,932,4.7 +2013,1,9,10,30,32,32,0,6.6000000000000005,6.300000000000001,63.53,931,5 +2013,1,9,11,30,123,123,0,6.2,6.2,57.42,930,5 +2013,1,9,12,30,253,235,31,5.5,5.800000000000001,54.480000000000004,930,4.800000000000001 +2013,1,9,13,30,61,61,0,5.9,5.300000000000001,55.22,928,4.6000000000000005 +2013,1,9,14,30,57,57,0,5.800000000000001,5,59.5,927,4.4 +2013,1,9,15,30,98,98,0,5.4,4.800000000000001,66.64,927,4.3 +2013,1,9,16,30,7,7,0,4.9,4.5,75.81,928,4.3 +2013,1,9,17,30,4,4,0,4.5,4.4,86.26,928,4.4 +2013,1,9,18,30,0,0,0,3.4000000000000004,4.3,97.93,928,4.3 +2013,1,9,19,30,0,0,0,2.7,4.3,110.01,928,4.3 +2013,1,9,20,30,0,0,0,2,4.3,122.46000000000001,928,4.3 +2013,1,9,21,30,0,0,0,1.5,4.3,135.1,928,4.3 +2013,1,9,22,30,0,0,0,1.1,4.4,147.71,928,4.4 +2013,1,9,23,30,0,0,0,0.5,4.3,159.78,927,4.3 +2013,1,10,0,30,0,0,0,0.30000000000000004,4,168.83,927,4 +2013,1,10,1,30,0,0,0,0.8,3.8000000000000003,166.06,926,3.8000000000000003 +2013,1,10,2,30,0,0,0,1.6,3.8000000000000003,155.17000000000002,925,3.8000000000000003 +2013,1,10,3,30,0,0,0,2.3000000000000003,3.9000000000000004,142.78,924,3.9000000000000004 +2013,1,10,4,30,0,0,0,1.9000000000000001,4,130.12,924,4 +2013,1,10,5,30,0,0,0,1.4000000000000001,4,117.53,925,4 +2013,1,10,6,30,0,0,0,1.6,4.2,105.19,926,4.2 +2013,1,10,7,30,0,0,0,2.4000000000000004,4.5,93.3,927,4.2 +2013,1,10,8,30,108,39,496,3.4000000000000004,5.4,82.01,927,4.1000000000000005 +2013,1,10,9,30,124,117,22,4,7.2,71.95,927,4.3 +2013,1,10,10,30,271,200,157,4.5,9.700000000000001,63.46,926,4.7 +2013,1,10,11,30,331,254,144,5.1000000000000005,12.100000000000001,57.31,925,4.800000000000001 +2013,1,10,12,30,630,67,964,5.4,13.700000000000001,54.33,924,4.5 +2013,1,10,13,30,615,65,960,5.300000000000001,14.5,55.050000000000004,924,4.5 +2013,1,10,14,30,538,61,935,5,14.8,59.33,924,4.5 +2013,1,10,15,30,403,54,873,4.2,14.3,66.47,924,4.6000000000000005 +2013,1,10,16,30,228,43,747,2.5,11.8,75.64,924,5 +2013,1,10,17,30,48,20,411,1.5,9.8,86.10000000000001,925,5.300000000000001 +2013,1,10,18,30,0,0,0,2.1,7.4,97.78,925,4.4 +2013,1,10,19,30,0,0,0,2.7,6.9,109.86,925,3.9000000000000004 +2013,1,10,20,30,0,0,0,3.2,6.2,122.31,925,3.1 +2013,1,10,21,30,0,0,0,3.3000000000000003,5.5,134.95,925,2.1 +2013,1,10,22,30,0,0,0,3.5,4.9,147.56,925,1.3 +2013,1,10,23,30,0,0,0,3.9000000000000004,4.5,159.61,924,1 +2013,1,11,0,30,0,0,0,4.3,4.2,168.65,924,1 +2013,1,11,1,30,0,0,0,4.5,4.2,166,924,1.3 +2013,1,11,2,30,0,0,0,4.6000000000000005,4.3,155.17000000000002,924,1.7000000000000002 +2013,1,11,3,30,0,0,0,4.6000000000000005,4.4,142.8,923,2.2 +2013,1,11,4,30,0,0,0,4.800000000000001,4.7,130.14000000000001,923,2.7 +2013,1,11,5,30,0,0,0,4.9,5,117.54,922,3 +2013,1,11,6,30,0,0,0,5,5.300000000000001,105.2,922,3.2 +2013,1,11,7,30,0,0,0,5.4,6.2,93.29,923,3.6 +2013,1,11,8,30,78,49,213,5.9,8.4,81.98,923,4.1000000000000005 +2013,1,11,9,30,259,79,580,7.1000000000000005,11.9,71.9,923,5 +2013,1,11,10,30,383,140,544,8.3,15.4,63.370000000000005,923,5.4 +2013,1,11,11,30,516,125,723,8.200000000000001,17.5,57.19,921,5.1000000000000005 +2013,1,11,12,30,648,67,992,7.6000000000000005,18.400000000000002,54.18,920,4.7 +2013,1,11,13,30,636,68,986,7,18.900000000000002,54.88,919,4.3 +2013,1,11,14,30,456,151,595,6.2,19.200000000000003,59.14,919,3.9000000000000004 +2013,1,11,15,30,234,176,144,4.7,18.1,66.29,919,3.6 +2013,1,11,16,30,106,96,37,3.1,15.3,75.47,919,4.7 +2013,1,11,17,30,25,24,5,2.5,13.700000000000001,85.94,920,5.2 +2013,1,11,18,30,0,0,0,2.7,12.200000000000001,97.61,920,5.1000000000000005 +2013,1,11,19,30,0,0,0,3,12,109.7,921,5.300000000000001 +2013,1,11,20,30,0,0,0,3.1,11.5,122.16,921,5.5 +2013,1,11,21,30,0,0,0,2.7,10.700000000000001,134.8,922,5.6000000000000005 +2013,1,11,22,30,0,0,0,2.1,9.700000000000001,147.4,922,5.6000000000000005 +2013,1,11,23,30,0,0,0,1.7000000000000002,8.9,159.44,922,5.300000000000001 +2013,1,12,0,30,0,0,0,1.6,8.3,168.47,923,4.800000000000001 +2013,1,12,1,30,0,0,0,1.7000000000000002,7.6000000000000005,165.93,923,3.9000000000000004 +2013,1,12,2,30,0,0,0,2.3000000000000003,6.9,155.16,923,2.7 +2013,1,12,3,30,0,0,0,3,5.9,142.81,923,1 +2013,1,12,4,30,0,0,0,3.4000000000000004,4.7,130.15,922,-0.8 +2013,1,12,5,30,0,0,0,3.7,3.6,117.55,922,-3 +2013,1,12,6,30,0,0,0,3.8000000000000003,3,105.19,922,-5.300000000000001 +2013,1,12,7,30,0,0,0,3.9000000000000004,3.2,93.28,922,-6.2 +2013,1,12,8,30,39,39,0,4.3,4.3,81.95,923,-6.2 +2013,1,12,9,30,19,19,0,4.6000000000000005,5.9,71.84,923,-6.1000000000000005 +2013,1,12,10,30,206,186,45,4.800000000000001,7.4,63.28,923,-6.1000000000000005 +2013,1,12,11,30,181,177,7,4.800000000000001,8.5,57.07,923,-5.9 +2013,1,12,12,30,176,174,4,4.7,9.3,54.03,922,-5.7 +2013,1,12,13,30,99,99,0,4.6000000000000005,9.600000000000001,54.7,922,-5.4 +2013,1,12,14,30,94,94,0,4.7,9.3,58.96,922,-5.4 +2013,1,12,15,30,228,178,123,4.800000000000001,8.3,66.1,922,-5.6000000000000005 +2013,1,12,16,30,245,49,774,4.2,6.300000000000001,75.29,923,-5.800000000000001 +2013,1,12,17,30,56,24,430,3.7,4.9,85.77,924,-5.300000000000001 +2013,1,12,18,30,0,0,0,3.9000000000000004,1.9000000000000001,97.45,925,-5.1000000000000005 +2013,1,12,19,30,0,0,0,4.4,0.5,109.55,926,-5.300000000000001 +2013,1,12,20,30,0,0,0,4.7,-0.9,122.01,926,-5.2 +2013,1,12,21,30,0,0,0,4.6000000000000005,-2.1,134.65,927,-5 +2013,1,12,22,30,0,0,0,4.5,-3,147.25,927,-4.9 +2013,1,12,23,30,0,0,0,4.2,-3.6,159.27,928,-5.2 +2013,1,13,0,30,0,0,0,3.9000000000000004,-4.2,168.28,929,-5.9 +2013,1,13,1,30,0,0,0,3.8000000000000003,-4.7,165.85,930,-6.7 +2013,1,13,2,30,0,0,0,3.7,-5.2,155.15,930,-7.6000000000000005 +2013,1,13,3,30,0,0,0,3.7,-5.7,142.81,931,-8.6 +2013,1,13,4,30,0,0,0,3.8000000000000003,-6.1000000000000005,130.16,931,-9.5 +2013,1,13,5,30,0,0,0,3.8000000000000003,-6.5,117.55,932,-10.3 +2013,1,13,6,30,0,0,0,3.6,-6.7,105.19,933,-11 +2013,1,13,7,30,0,0,0,4,-6.2,93.26,934,-11.4 +2013,1,13,8,30,125,34,648,4.7,-4.6000000000000005,81.9,935,-12 +2013,1,13,9,30,324,51,872,4.7,-2.6,71.77,935,-13.100000000000001 +2013,1,13,10,30,496,60,967,4.3,-0.8,63.190000000000005,935,-12.8 +2013,1,13,11,30,616,65,1011,4.1000000000000005,0.8,56.94,934,-12.100000000000001 +2013,1,13,12,30,673,67,1028,3.8000000000000003,2.1,53.86,933,-11.4 +2013,1,13,13,30,661,66,1025,3.6,3,54.51,932,-10.9 +2013,1,13,14,30,582,63,1000,3.5,3.3000000000000003,58.76,932,-10.600000000000001 +2013,1,13,15,30,442,56,946,3.5,2.9000000000000004,65.91,932,-10.4 +2013,1,13,16,30,257,44,828,2.6,1,75.10000000000001,932,-10.4 +2013,1,13,17,30,62,23,502,1.8,-0.5,85.59,933,-8.700000000000001 +2013,1,13,18,30,0,0,0,1.8,-3.3000000000000003,97.29,933,-8.8 +2013,1,13,19,30,0,0,0,1.9000000000000001,-4,109.39,934,-9.3 +2013,1,13,20,30,0,0,0,2.1,-4.6000000000000005,121.86,934,-9.600000000000001 +2013,1,13,21,30,0,0,0,2.5,-5.1000000000000005,134.5,934,-10 +2013,1,13,22,30,0,0,0,3,-5.6000000000000005,147.09,934,-10.5 +2013,1,13,23,30,0,0,0,3.1,-6.1000000000000005,159.1,934,-10.9 +2013,1,14,0,30,0,0,0,2.7,-6.5,168.09,934,-11.200000000000001 +2013,1,14,1,30,0,0,0,2.4000000000000004,-6.9,165.76,935,-11.4 +2013,1,14,2,30,0,0,0,2.4000000000000004,-7,155.13,935,-11.600000000000001 +2013,1,14,3,30,0,0,0,2.6,-7.1000000000000005,142.81,935,-11.8 +2013,1,14,4,30,0,0,0,2.7,-7.1000000000000005,130.17000000000002,935,-12 +2013,1,14,5,30,0,0,0,2.8000000000000003,-7,117.55,935,-12.100000000000001 +2013,1,14,6,30,0,0,0,2.9000000000000004,-6.9,105.18,936,-12.100000000000001 +2013,1,14,7,30,0,0,0,3.5,-6.1000000000000005,93.23,936,-12.100000000000001 +2013,1,14,8,30,122,34,626,4.3,-4.4,81.86,936,-12.4 +2013,1,14,9,30,319,50,854,4.6000000000000005,-2.3000000000000003,71.7,936,-12.600000000000001 +2013,1,14,10,30,488,58,951,4.2,-0.4,63.08,935,-12.3 +2013,1,14,11,30,608,63,995,3.7,1.3,56.800000000000004,934,-11.8 +2013,1,14,12,30,664,64,1014,3.4000000000000004,2.7,53.69,933,-11.200000000000001 +2013,1,14,13,30,653,63,1011,3.3000000000000003,3.5,54.32,932,-10.700000000000001 +2013,1,14,14,30,575,60,987,3.3000000000000003,3.8000000000000003,58.56,932,-10.200000000000001 +2013,1,14,15,30,437,54,931,3.2,3.5,65.71000000000001,932,-9.9 +2013,1,14,16,30,255,45,810,2.2,1.2000000000000002,74.92,933,-9.600000000000001 +2013,1,14,17,30,62,23,489,1.3,-0.7000000000000001,85.42,933,-7.800000000000001 +2013,1,14,18,30,0,0,0,1.4000000000000001,-3.4000000000000004,97.12,934,-8.8 +2013,1,14,19,30,0,0,0,1.7000000000000002,-3.9000000000000004,109.23,934,-9.4 +2013,1,14,20,30,0,0,0,2,-4.2,121.7,934,-10 +2013,1,14,21,30,0,0,0,2.2,-4.5,134.35,933,-10.4 +2013,1,14,22,30,0,0,0,2.2,-4.9,146.94,933,-10.700000000000001 +2013,1,14,23,30,0,0,0,2.2,-5.4,158.93,933,-10.8 +2013,1,15,0,30,0,0,0,2.3000000000000003,-5.7,167.89000000000001,933,-10.8 +2013,1,15,1,30,0,0,0,2.4000000000000004,-5.9,165.67000000000002,933,-10.9 +2013,1,15,2,30,0,0,0,2.7,-6.2,155.11,933,-11 +2013,1,15,3,30,0,0,0,2.8000000000000003,-6.4,142.81,933,-11 +2013,1,15,4,30,0,0,0,2.9000000000000004,-6.6000000000000005,130.16,933,-11 +2013,1,15,5,30,0,0,0,2.9000000000000004,-6.7,117.55,933,-10.9 +2013,1,15,6,30,0,0,0,2.9000000000000004,-6.7,105.16,933,-10.9 +2013,1,15,7,30,0,0,0,3.3000000000000003,-6,93.2,933,-10.8 +2013,1,15,8,30,120,35,595,3.8000000000000003,-4,81.8,934,-10.8 +2013,1,15,9,30,41,41,0,4.1000000000000005,-1.3,71.62,934,-10.8 +2013,1,15,10,30,111,111,0,4.3,0.9,62.97,934,-10.4 +2013,1,15,11,30,204,196,14,4.5,2.3000000000000003,56.65,933,-9.8 +2013,1,15,12,30,201,196,9,4.800000000000001,3.1,53.52,932,-9.700000000000001 +2013,1,15,13,30,168,166,2,5,3.4000000000000004,54.13,932,-9.700000000000001 +2013,1,15,14,30,183,179,9,5.1000000000000005,3.2,58.36,932,-9.8 +2013,1,15,15,30,434,65,890,4.800000000000001,2.6,65.52,933,-9.8 +2013,1,15,16,30,253,51,766,3.4000000000000004,0.5,74.73,934,-9.600000000000001 +2013,1,15,17,30,63,26,456,2.3000000000000003,-1,85.25,934,-8.8 +2013,1,15,18,30,0,0,0,1.6,-3.9000000000000004,96.95,935,-9 +2013,1,15,19,30,0,0,0,1.4000000000000001,-4.3,109.07000000000001,935,-9.3 +2013,1,15,20,30,0,0,0,1.2000000000000002,-4.5,121.55,935,-9.5 +2013,1,15,21,30,0,0,0,1.2000000000000002,-4.6000000000000005,134.2,935,-9.700000000000001 +2013,1,15,22,30,0,0,0,1.1,-5,146.78,935,-9.700000000000001 +2013,1,15,23,30,0,0,0,1.2000000000000002,-5.4,158.75,935,-9.700000000000001 +2013,1,16,0,30,0,0,0,1.3,-5.5,167.68,934,-9.700000000000001 +2013,1,16,1,30,0,0,0,1.5,-5.6000000000000005,165.56,934,-9.600000000000001 +2013,1,16,2,30,0,0,0,1.8,-5.6000000000000005,155.07,934,-9.600000000000001 +2013,1,16,3,30,0,0,0,2,-5.6000000000000005,142.8,934,-9.600000000000001 +2013,1,16,4,30,0,0,0,2.2,-5.7,130.16,934,-9.600000000000001 +2013,1,16,5,30,0,0,0,2.2,-5.800000000000001,117.53,934,-9.8 +2013,1,16,6,30,0,0,0,2.1,-5.9,105.13,935,-10 +2013,1,16,7,30,0,0,0,2.6,-5,93.16,935,-10.200000000000001 +2013,1,16,8,30,127,32,665,3.1,-2.4000000000000004,81.75,935,-10.200000000000001 +2013,1,16,9,30,327,47,884,3.2,1.1,71.53,936,-10.200000000000001 +2013,1,16,10,30,494,53,966,3.7,4,62.86,935,-11.700000000000001 +2013,1,16,11,30,608,55,1002,4.2,5.800000000000001,56.5,934,-12.3 +2013,1,16,12,30,661,57,1012,4.7,7.1000000000000005,53.33,933,-11.8 +2013,1,16,13,30,643,56,997,5.2,8.1,53.92,933,-10.100000000000001 +2013,1,16,14,30,564,53,969,5.4,8.6,58.15,932,-8.200000000000001 +2013,1,16,15,30,428,48,910,4.800000000000001,8.5,65.31,933,-6.5 +2013,1,16,16,30,250,39,790,3.1,5.9,74.54,933,-4.9 +2013,1,16,17,30,64,21,493,2,3.6,85.08,933,-3.6 +2013,1,16,18,30,0,0,0,1.8,1,96.78,935,-3.9000000000000004 +2013,1,16,19,30,0,0,0,1.7000000000000002,0.5,108.91,935,-3.8000000000000003 +2013,1,16,20,30,0,0,0,1.7000000000000002,0.1,121.39,936,-3.6 +2013,1,16,21,30,0,0,0,1.8,-0.30000000000000004,134.04,936,-3.2 +2013,1,16,22,30,0,0,0,1.9000000000000001,-0.7000000000000001,146.62,936,-2.7 +2013,1,16,23,30,0,0,0,2.1,-1,158.57,937,-2.3000000000000003 +2013,1,17,0,30,0,0,0,2.3000000000000003,-1.2000000000000002,167.47,937,-2.1 +2013,1,17,1,30,0,0,0,2.4000000000000004,-1.5,165.44,938,-2.1 +2013,1,17,2,30,0,0,0,2.4000000000000004,-1.7000000000000002,155.03,938,-2.2 +2013,1,17,3,30,0,0,0,2.5,-1.8,142.78,938,-2.4000000000000004 +2013,1,17,4,30,0,0,0,2.7,-1.8,130.14000000000001,938,-2.5 +2013,1,17,5,30,0,0,0,2.9000000000000004,-1.9000000000000001,117.51,939,-2.6 +2013,1,17,6,30,0,0,0,2.9000000000000004,-2.1,105.11,940,-2.7 +2013,1,17,7,30,0,0,0,3.3000000000000003,-1,93.11,941,-2.8000000000000003 +2013,1,17,8,30,121,29,638,3.7,1.7000000000000002,81.68,942,-2.9000000000000004 +2013,1,17,9,30,313,41,853,3.5,5.1000000000000005,71.44,943,-2.6 +2013,1,17,10,30,481,50,941,3.6,8.6,62.730000000000004,943,-2.8000000000000003 +2013,1,17,11,30,599,54,984,3.6,11.3,56.34,943,-3.3000000000000003 +2013,1,17,12,30,656,56,1002,3.5,13,53.14,942,-3.8000000000000003 +2013,1,17,13,30,646,55,999,3.3000000000000003,13.5,53.71,941,-3.6 +2013,1,17,14,30,570,53,975,3,13.5,57.94,941,-3.3000000000000003 +2013,1,17,15,30,437,51,917,2.4000000000000004,12.700000000000001,65.11,941,-2.9000000000000004 +2013,1,17,16,30,258,41,804,1.6,9.9,74.35000000000001,941,-1.4000000000000001 +2013,1,17,17,30,68,23,508,1.2000000000000002,7.800000000000001,84.9,941,0.1 +2013,1,17,18,30,0,0,0,1.4000000000000001,5.5,96.61,942,-1.6 +2013,1,17,19,30,0,0,0,1.3,5,108.75,942,-1.9000000000000001 +2013,1,17,20,30,0,0,0,1.3,4.4,121.24000000000001,943,-2.1 +2013,1,17,21,30,0,0,0,1.3,3.8000000000000003,133.89000000000001,943,-2.2 +2013,1,17,22,30,0,0,0,1.3,3.1,146.46,943,-2.3000000000000003 +2013,1,17,23,30,0,0,0,1.3,2.4000000000000004,158.39000000000001,942,-2.4000000000000004 +2013,1,18,0,30,0,0,0,1.3,1.7000000000000002,167.26,942,-2.5 +2013,1,18,1,30,0,0,0,1.3,0.9,165.32,942,-2.6 +2013,1,18,2,30,0,0,0,1.4000000000000001,0.1,154.99,942,-2.7 +2013,1,18,3,30,0,0,0,1.4000000000000001,-0.8,142.76,941,-2.7 +2013,1,18,4,30,0,0,0,1.5,-1.5,130.12,941,-2.6 +2013,1,18,5,30,0,0,0,1.7000000000000002,-1.8,117.49000000000001,941,-2.5 +2013,1,18,6,30,0,0,0,2.1,-1.9000000000000001,105.07000000000001,941,-2.3000000000000003 +2013,1,18,7,30,0,0,0,3.2,-0.2,93.06,941,-2.1 +2013,1,18,8,30,123,32,626,4.1000000000000005,2.9000000000000004,81.61,941,-1.6 +2013,1,18,9,30,317,48,841,4.5,6.6000000000000005,71.34,941,-0.9 +2013,1,18,10,30,486,58,932,5.300000000000001,10.600000000000001,62.6,941,-0.6000000000000001 +2013,1,18,11,30,606,63,975,5.5,13.4,56.18,939,-1.2000000000000002 +2013,1,18,12,30,664,68,989,5.300000000000001,15.100000000000001,52.95,938,-1.4000000000000001 +2013,1,18,13,30,654,68,985,5,16,53.5,936,-1.4000000000000001 +2013,1,18,14,30,578,66,960,4.800000000000001,16.3,57.72,936,-1.4000000000000001 +2013,1,18,15,30,442,60,900,4,15.5,64.9,935,-1.6 +2013,1,18,16,30,264,49,787,2.7,12.4,74.15,935,-0.6000000000000001 +2013,1,18,17,30,71,27,480,2,9.9,84.72,935,0.6000000000000001 +2013,1,18,18,30,0,0,0,2.5,7.2,96.44,935,-0.2 +2013,1,18,19,30,0,0,0,2.9000000000000004,6.7,108.58,935,-0.5 +2013,1,18,20,30,0,0,0,3.4000000000000004,6.1000000000000005,121.08,935,-0.6000000000000001 +2013,1,18,21,30,0,0,0,3.7,5.5,133.73,935,-0.6000000000000001 +2013,1,18,22,30,0,0,0,4,4.9,146.29,935,-0.6000000000000001 +2013,1,18,23,30,0,0,0,4.1000000000000005,4.4,158.20000000000002,934,-0.5 +2013,1,19,0,30,0,0,0,4.2,4,167.04,934,-0.4 +2013,1,19,1,30,0,0,0,4.3,3.7,165.19,934,-0.30000000000000004 +2013,1,19,2,30,0,0,0,4.1000000000000005,3.3000000000000003,154.93,934,-0.2 +2013,1,19,3,30,0,0,0,3.8000000000000003,2.7,142.72,933,-0.30000000000000004 +2013,1,19,4,30,0,0,0,3.6,2,130.1,933,-0.30000000000000004 +2013,1,19,5,30,0,0,0,3.5,1.4000000000000001,117.46000000000001,933,-0.2 +2013,1,19,6,30,0,0,0,3.6,1,105.03,933,-0.1 +2013,1,19,7,30,0,0,0,4.2,1.6,93.01,933,0 +2013,1,19,8,30,97,45,352,4.6000000000000005,4,81.54,933,0.2 +2013,1,19,9,30,325,49,856,4.7,7.7,71.24,933,0.5 +2013,1,19,10,30,495,57,948,4.9,11.700000000000001,62.47,933,0.30000000000000004 +2013,1,19,11,30,616,61,994,4.7,15,56.01,932,0.1 +2013,1,19,12,30,679,61,1021,4.5,17.400000000000002,52.74,931,-0.9 +2013,1,19,13,30,669,61,1019,4.1000000000000005,18.8,53.28,930,-2.3000000000000003 +2013,1,19,14,30,593,57,997,3.6,19.1,57.5,930,-3.1 +2013,1,19,15,30,455,51,946,2.4000000000000004,18,64.69,930,-3.6 +2013,1,19,16,30,273,41,839,1.3,14.600000000000001,73.96000000000001,930,2.1 +2013,1,19,17,30,78,23,571,1.3,12.200000000000001,84.54,931,0.9 +2013,1,19,18,30,0,0,0,1.5,8.700000000000001,96.26,932,-1.4000000000000001 +2013,1,19,19,30,0,0,0,1.6,7.2,108.42,933,-1.6 +2013,1,19,20,30,0,0,0,1.7000000000000002,5.800000000000001,120.92,933,-1.8 +2013,1,19,21,30,0,0,0,1.7000000000000002,4.6000000000000005,133.58,934,-1.9000000000000001 +2013,1,19,22,30,0,0,0,1.6,3.6,146.13,934,-2.1 +2013,1,19,23,30,0,0,0,1.5,2.7,158.02,934,-2.3000000000000003 +2013,1,20,0,30,0,0,0,1.5,2,166.81,934,-2.6 +2013,1,20,1,30,0,0,0,1.5,1.4000000000000001,165.05,934,-2.8000000000000003 +2013,1,20,2,30,0,0,0,1.6,0.8,154.87,934,-2.9000000000000004 +2013,1,20,3,30,0,0,0,1.7000000000000002,0.30000000000000004,142.69,934,-3 +2013,1,20,4,30,0,0,0,1.7000000000000002,-0.1,130.06,934,-3 +2013,1,20,5,30,0,0,0,1.7000000000000002,-0.6000000000000001,117.42,934,-3.1 +2013,1,20,6,30,0,0,0,1.6,-1,104.98,934,-3.3000000000000003 +2013,1,20,7,30,0,0,0,2,0.7000000000000001,92.94,934,-3.5 +2013,1,20,8,30,131,30,685,2.5,4.1000000000000005,81.46000000000001,934,-3.1 +2013,1,20,9,30,328,43,881,2.1,7.6000000000000005,71.13,935,-2.8000000000000003 +2013,1,20,10,30,500,50,969,1,12.100000000000001,62.32,934,-1.3 +2013,1,20,11,30,622,54,1011,0.9,15.9,55.83,933,-1 +2013,1,20,12,30,683,62,1022,1.5,17.6,52.53,932,-2.3000000000000003 +2013,1,20,13,30,674,62,1019,1.9000000000000001,18.2,53.050000000000004,931,-2.9000000000000004 +2013,1,20,14,30,598,59,997,2,18.3,57.28,930,-3.4000000000000004 +2013,1,20,15,30,461,54,943,1.6,17.400000000000002,64.47,930,-3.9000000000000004 +2013,1,20,16,30,281,46,842,1.1,15.100000000000001,73.76,930,1.6 +2013,1,20,17,30,81,26,558,1.1,13.600000000000001,84.36,930,-0.1 +2013,1,20,18,30,0,0,0,1.2000000000000002,11.600000000000001,96.09,930,-2.8000000000000003 +2013,1,20,19,30,0,0,0,1.4000000000000001,10.200000000000001,108.26,930,-3 +2013,1,20,20,30,0,0,0,1.5,8.700000000000001,120.76,931,-3 +2013,1,20,21,30,0,0,0,1.6,7.4,133.42000000000002,931,-3 +2013,1,20,22,30,0,0,0,1.6,6.300000000000001,145.97,931,-3 +2013,1,20,23,30,0,0,0,1.5,5.5,157.83,932,-3.1 +2013,1,21,0,30,0,0,0,1.4000000000000001,5.1000000000000005,166.58,932,-3.3000000000000003 +2013,1,21,1,30,0,0,0,1.1,4.7,164.9,932,-3.4000000000000004 +2013,1,21,2,30,0,0,0,1.2000000000000002,3.4000000000000004,154.8,933,-3.5 +2013,1,21,3,30,0,0,0,1.9000000000000001,1.7000000000000002,142.64000000000001,933,-3.3000000000000003 +2013,1,21,4,30,0,0,0,2.7,0.7000000000000001,130.03,933,-2.9000000000000004 +2013,1,21,5,30,0,0,0,3.4000000000000004,-0.2,117.38,934,-2.5 +2013,1,21,6,30,0,0,0,3.8000000000000003,-1.4000000000000001,104.93,935,-2.4000000000000004 +2013,1,21,7,30,0,0,0,4.4,-1.7000000000000002,92.88,936,-3 +2013,1,21,8,30,130,35,631,5.2,-0.30000000000000004,81.37,936,-4.3 +2013,1,21,9,30,328,53,848,5.300000000000001,1.7000000000000002,71.01,937,-5.4 +2013,1,21,10,30,381,166,460,5.1000000000000005,4,62.17,937,-5.7 +2013,1,21,11,30,623,67,985,4.7,6,55.64,937,-5.300000000000001 +2013,1,21,12,30,683,68,1006,4,7.6000000000000005,52.32,936,-4.7 +2013,1,21,13,30,670,67,997,3.1,8.700000000000001,52.82,935,-4 +2013,1,21,14,30,594,64,973,2.2,9.3,57.04,935,-3.3000000000000003 +2013,1,21,15,30,458,57,923,1.4000000000000001,9.200000000000001,64.25,934,-2.8000000000000003 +2013,1,21,16,30,277,47,811,0.8,8,73.55,934,-2.4000000000000004 +2013,1,21,17,30,80,27,525,0.6000000000000001,7,84.17,934,-1.4000000000000001 +2013,1,21,18,30,0,0,0,0.7000000000000001,5,95.92,935,-2.2 +2013,1,21,19,30,0,0,0,0.9,4.1000000000000005,108.09,935,-2.5 +2013,1,21,20,30,0,0,0,1,3.2,120.61,935,-2.9000000000000004 +2013,1,21,21,30,0,0,0,1.2000000000000002,2.2,133.26,935,-3.2 +2013,1,21,22,30,0,0,0,1.2000000000000002,1.4000000000000001,145.8,935,-3.4000000000000004 +2013,1,21,23,30,0,0,0,1.1,1,157.64000000000001,935,-3.6 +2013,1,22,0,30,0,0,0,1,0.8,166.35,935,-3.8000000000000003 +2013,1,22,1,30,0,0,0,1,0.6000000000000001,164.74,935,-3.8000000000000003 +2013,1,22,2,30,0,0,0,1,0.6000000000000001,154.72,935,-3.7 +2013,1,22,3,30,0,0,0,1,0.7000000000000001,142.59,935,-3.4000000000000004 +2013,1,22,4,30,0,0,0,0.9,0.8,129.98,935,-3 +2013,1,22,5,30,0,0,0,0.9,0.8,117.33,935,-2.7 +2013,1,22,6,30,0,0,0,1,0.7000000000000001,104.87,935,-2.3000000000000003 +2013,1,22,7,30,0,0,0,1.6,2,92.8,935,-1.8 +2013,1,22,8,30,118,48,467,2.7,4.7,81.27,935,-0.7000000000000001 +2013,1,22,9,30,221,126,289,3.4000000000000004,7.9,70.89,935,0.9 +2013,1,22,10,30,480,90,831,4.1000000000000005,11.700000000000001,62.02,935,4 +2013,1,22,11,30,600,95,890,4.9,15,55.45,934,7.2 +2013,1,22,12,30,665,82,949,5.1000000000000005,17.2,52.1,933,8.700000000000001 +2013,1,22,13,30,655,81,944,5,18.400000000000002,52.58,932,8.9 +2013,1,22,14,30,580,77,920,4.7,18.900000000000002,56.81,932,8.8 +2013,1,22,15,30,449,64,879,4,18.6,64.03,931,8.6 +2013,1,22,16,30,271,53,761,2.6,16,73.35000000000001,931,8.6 +2013,1,22,17,30,79,30,470,1.8,13.9,83.99,931,8.6 +2013,1,22,18,30,0,0,0,2,11,95.74000000000001,932,8.200000000000001 +2013,1,22,19,30,0,0,0,2.3000000000000003,10.4,107.93,932,8.4 +2013,1,22,20,30,0,0,0,2.9000000000000004,9.8,120.45,932,8.700000000000001 +2013,1,22,21,30,0,0,0,3.4000000000000004,9.3,133.1,933,9.1 +2013,1,22,22,30,0,0,0,3.6,8.700000000000001,145.63,933,8.700000000000001 +2013,1,22,23,30,0,0,0,3.6,8.3,157.44,933,8.3 +2013,1,23,0,30,0,0,0,3.5,8.1,166.11,933,8.1 +2013,1,23,1,30,0,0,0,3.3000000000000003,8,164.57,934,8 +2013,1,23,2,30,0,0,0,3.1,7.7,154.63,934,7.7 +2013,1,23,3,30,0,0,0,2.9000000000000004,7.6000000000000005,142.54,934,7.6000000000000005 +2013,1,23,4,30,0,0,0,2.8000000000000003,7.5,129.93,934,7.5 +2013,1,23,5,30,0,0,0,2.7,7.4,117.28,934,7.4 +2013,1,23,6,30,0,0,0,2.6,7.4,104.81,934,7.4 +2013,1,23,7,30,0,0,0,3.1,7.800000000000001,92.72,935,7.800000000000001 +2013,1,23,8,30,125,45,527,3.9000000000000004,8.700000000000001,81.18,935,7.800000000000001 +2013,1,23,9,30,325,67,784,4.5,10.5,70.76,935,8 +2013,1,23,10,30,502,72,911,4.7,13.5,61.86,935,8.1 +2013,1,23,11,30,627,72,975,4.6000000000000005,16.7,55.25,934,7.7 +2013,1,23,12,30,688,67,1005,4.6000000000000005,19.400000000000002,51.870000000000005,933,6.6000000000000005 +2013,1,23,13,30,679,65,1005,4.6000000000000005,21.200000000000003,52.34,933,4.7 +2013,1,23,14,30,607,62,990,4.7,22,56.57,932,2.5 +2013,1,23,15,30,471,55,941,3.8000000000000003,21.400000000000002,63.81,932,1 +2013,1,23,16,30,288,46,834,2.5,17.900000000000002,73.14,932,2.6 +2013,1,23,17,30,88,27,567,2,15.3,83.81,932,3.3000000000000003 +2013,1,23,18,30,0,0,0,2.3000000000000003,12,95.56,932,1.7000000000000002 +2013,1,23,19,30,0,0,0,2.6,11.200000000000001,107.76,932,1 +2013,1,23,20,30,0,0,0,2.9000000000000004,10.600000000000001,120.29,932,0.7000000000000001 +2013,1,23,21,30,0,0,0,3.2,10.200000000000001,132.94,932,0.8 +2013,1,23,22,30,0,0,0,3.5,9.8,145.47,933,1.6 +2013,1,23,23,30,0,0,0,3.9000000000000004,9.4,157.25,933,3.1 +2013,1,24,0,30,0,0,0,4.1000000000000005,8.9,165.86,933,4.800000000000001 +2013,1,24,1,30,0,0,0,4.1000000000000005,8.3,164.39000000000001,933,6.5 +2013,1,24,2,30,0,0,0,4.1000000000000005,7.9,154.54,933,7.6000000000000005 +2013,1,24,3,30,0,0,0,4.2,7.800000000000001,142.47,933,7.800000000000001 +2013,1,24,4,30,0,0,0,4.2,7.6000000000000005,129.88,932,7.6000000000000005 +2013,1,24,5,30,0,0,0,4,7.2,117.22,933,7.2 +2013,1,24,6,30,0,0,0,4.1000000000000005,6.7,104.74000000000001,933,6.7 +2013,1,24,7,30,0,0,0,4.4,7,92.64,933,5.7 +2013,1,24,8,30,97,51,293,4.4,8.700000000000001,81.07000000000001,934,4 +2013,1,24,9,30,282,80,610,4,11.9,70.63,934,2.5 +2013,1,24,10,30,508,60,945,3.7,15.9,61.690000000000005,934,1.4000000000000001 +2013,1,24,11,30,631,65,989,3.6,19.200000000000003,55.050000000000004,933,0.2 +2013,1,24,12,30,691,65,1009,3.7,21.700000000000003,51.63,932,0 +2013,1,24,13,30,680,64,1002,3.7,23.3,52.09,931,0.6000000000000001 +2013,1,24,14,30,605,61,980,3.4000000000000004,24.1,56.33,930,1.4000000000000001 +2013,1,24,15,30,467,57,923,2.4000000000000004,23.1,63.58,929,2.1 +2013,1,24,16,30,285,48,809,1.3,20.200000000000003,72.93,929,7.4 +2013,1,24,17,30,78,31,420,1.2000000000000002,18.400000000000002,83.62,929,6.5 +2013,1,24,18,30,0,0,0,2,15.3,95.39,929,5.4 +2013,1,24,19,30,0,0,0,2.7,14.5,107.59,929,5.5 +2013,1,24,20,30,0,0,0,3.4000000000000004,14,120.13,929,5.7 +2013,1,24,21,30,0,0,0,3.9000000000000004,13.3,132.78,929,5.9 +2013,1,24,22,30,0,0,0,4.1000000000000005,12.600000000000001,145.3,929,6.300000000000001 +2013,1,24,23,30,0,0,0,4.1000000000000005,12.100000000000001,157.05,929,6.7 +2013,1,25,0,30,0,0,0,4,11.8,165.61,929,7 +2013,1,25,1,30,0,0,0,4,11.4,164.21,929,7.2 +2013,1,25,2,30,0,0,0,3.8000000000000003,10.700000000000001,154.44,929,7.2 +2013,1,25,3,30,0,0,0,3.6,9.700000000000001,142.4,929,6.9 +2013,1,25,4,30,0,0,0,3.2,8.8,129.81,929,6.300000000000001 +2013,1,25,5,30,0,0,0,2.7,7.9,117.16,929,5.5 +2013,1,25,6,30,0,0,0,2.2,7.1000000000000005,104.67,930,4.6000000000000005 +2013,1,25,7,30,0,0,0,2.7,7.2,92.55,931,3.8000000000000003 +2013,1,25,8,30,76,58,111,3.6,7.800000000000001,80.96000000000001,932,2.7 +2013,1,25,9,30,218,133,255,4,8.200000000000001,70.49,933,1.9000000000000001 +2013,1,25,10,30,391,171,460,4.2,8.4,61.51,933,1.3 +2013,1,25,11,30,454,247,359,4,8.9,54.84,933,1.1 +2013,1,25,12,30,502,273,366,3.7,9.700000000000001,51.39,932,1 +2013,1,25,13,30,551,209,553,3.2,10.4,51.84,932,0.9 +2013,1,25,14,30,450,228,398,2.9000000000000004,10.8,56.08,931,0.9 +2013,1,25,15,30,453,63,870,2.7,10.700000000000001,63.35,931,0.8 +2013,1,25,16,30,251,68,618,2.2,9.700000000000001,72.72,931,0.6000000000000001 +2013,1,25,17,30,46,41,50,1.8,9,83.42,932,1 +2013,1,25,18,30,0,0,0,1.5,7,95.21000000000001,932,1.2000000000000002 +2013,1,25,19,30,0,0,0,1.5,6.4,107.43,932,0.6000000000000001 +2013,1,25,20,30,0,0,0,1.4000000000000001,5.800000000000001,119.97,933,0.4 +2013,1,25,21,30,0,0,0,1.1,5.2,132.62,933,0.2 +2013,1,25,22,30,0,0,0,0.8,4.6000000000000005,145.13,933,0.2 +2013,1,25,23,30,0,0,0,0.6000000000000001,4.1000000000000005,156.85,933,0.1 +2013,1,26,0,30,0,0,0,0.4,3.9000000000000004,165.36,933,-0.30000000000000004 +2013,1,26,1,30,0,0,0,0.4,3.6,164.02,933,-0.6000000000000001 +2013,1,26,2,30,0,0,0,0.5,3.2,154.33,932,-0.8 +2013,1,26,3,30,0,0,0,0.7000000000000001,2.8000000000000003,142.33,932,-1 +2013,1,26,4,30,0,0,0,0.7000000000000001,2.6,129.75,932,-1.1 +2013,1,26,5,30,0,0,0,0.8,2.5,117.09,932,-1.1 +2013,1,26,6,30,0,0,0,0.7000000000000001,2.5,104.59,932,-1.1 +2013,1,26,7,30,0,0,0,0.7000000000000001,3.6,92.45,932,-1.1 +2013,1,26,8,30,130,35,596,0.8,5.800000000000001,80.84,933,-0.7000000000000001 +2013,1,26,9,30,238,124,338,0.9,8.5,70.34,933,-0.30000000000000004 +2013,1,26,10,30,381,183,412,1.3,11.4,61.33,933,0.4 +2013,1,26,11,30,459,247,366,1.7000000000000002,13.9,54.620000000000005,932,1.4000000000000001 +2013,1,26,12,30,540,241,476,2.3000000000000003,15.8,51.15,931,3 +2013,1,26,13,30,651,78,922,2.9000000000000004,17,51.58,929,4.7 +2013,1,26,14,30,436,242,344,3.5,17.2,55.83,929,6.300000000000001 +2013,1,26,15,30,265,203,138,3.8000000000000003,16.7,63.120000000000005,928,7.6000000000000005 +2013,1,26,16,30,46,46,0,3.2,15.200000000000001,72.51,928,8.6 +2013,1,26,17,30,85,33,434,2.6,14,83.24,928,9.3 +2013,1,26,18,30,0,0,0,2.7,11.600000000000001,95.03,929,9.8 +2013,1,26,19,30,0,0,0,3.1,11.200000000000001,107.26,929,10.5 +2013,1,26,20,30,0,0,0,3.4000000000000004,10.8,119.81,928,10.8 +2013,1,26,21,30,0,0,0,3.4000000000000004,10.8,132.46,928,10.8 +2013,1,26,22,30,0,0,0,3.3000000000000003,10.8,144.96,929,10.8 +2013,1,26,23,30,0,0,0,3.3000000000000003,10.8,156.64000000000001,929,10.8 +2013,1,27,0,30,0,0,0,3.6,10.8,165.1,928,10.8 +2013,1,27,1,30,0,0,0,4,10.8,163.82,928,10.8 +2013,1,27,2,30,0,0,0,4.6000000000000005,10.9,154.21,928,10.9 +2013,1,27,3,30,0,0,0,4.9,11,142.24,927,10.9 +2013,1,27,4,30,0,0,0,4.7,11,129.67000000000002,927,10.9 +2013,1,27,5,30,0,0,0,4.4,10.9,117.01,927,10.9 +2013,1,27,6,30,0,0,0,4.2,10.9,104.5,927,10.9 +2013,1,27,7,30,0,0,0,4.4,11.5,92.35000000000001,928,11.5 +2013,1,27,8,30,20,20,0,5.300000000000001,13,80.72,928,11.8 +2013,1,27,9,30,253,117,403,6.5,15.600000000000001,70.19,928,12 +2013,1,27,10,30,484,73,851,6.9,18.5,61.15,928,11.4 +2013,1,27,11,30,605,79,904,6.6000000000000005,20.700000000000003,54.4,927,10.700000000000001 +2013,1,27,12,30,664,82,923,6.2,22.3,50.89,926,10.4 +2013,1,27,13,30,658,82,922,5.800000000000001,23.3,51.32,925,10.3 +2013,1,27,14,30,588,79,901,5.4,23.700000000000003,55.57,924,10.200000000000001 +2013,1,27,15,30,460,66,862,4.800000000000001,23.3,62.88,924,10 +2013,1,27,16,30,285,53,763,3.4000000000000004,21.1,72.3,924,10 +2013,1,27,17,30,93,31,512,2.5,19.3,83.05,924,10.5 +2013,1,27,18,30,0,0,0,2.8000000000000003,16.400000000000002,94.85000000000001,925,10.100000000000001 +2013,1,27,19,30,0,0,0,3.2,15.8,107.09,925,10.100000000000001 +2013,1,27,20,30,0,0,0,3.7,15.4,119.65,925,10.3 +2013,1,27,21,30,0,0,0,4.2,14.8,132.3,926,10.600000000000001 +2013,1,27,22,30,0,0,0,4.3,14.100000000000001,144.78,926,11 +2013,1,27,23,30,0,0,0,4.3,13.4,156.44,926,11.3 +2013,1,28,0,30,0,0,0,4.2,12.8,164.84,926,11.5 +2013,1,28,1,30,0,0,0,3.8000000000000003,12.100000000000001,163.61,926,11.700000000000001 +2013,1,28,2,30,0,0,0,3.4000000000000004,11.5,154.09,926,11.5 +2013,1,28,3,30,0,0,0,3,11.100000000000001,142.15,926,11.100000000000001 +2013,1,28,4,30,0,0,0,2.8000000000000003,11.100000000000001,129.59,926,11.100000000000001 +2013,1,28,5,30,0,0,0,2.8000000000000003,11.4,116.93,926,11.4 +2013,1,28,6,30,0,0,0,3,11.8,104.41,926,11.8 +2013,1,28,7,30,0,0,0,3.8000000000000003,13,92.24,926,13 +2013,1,28,8,30,130,43,530,5.4,15.4,80.59,926,14.100000000000001 +2013,1,28,9,30,222,137,248,7.1000000000000005,18.2,70.03,926,14.700000000000001 +2013,1,28,10,30,354,207,304,8,20.700000000000003,60.95,926,14.3 +2013,1,28,11,30,484,238,420,8.200000000000001,22.700000000000003,54.17,925,13.100000000000001 +2013,1,28,12,30,680,79,948,8.200000000000001,24,50.64,924,11.600000000000001 +2013,1,28,13,30,674,81,944,8,24.5,51.050000000000004,923,10 +2013,1,28,14,30,605,79,924,7.6000000000000005,24.5,55.31,922,8.4 +2013,1,28,15,30,472,69,876,6.800000000000001,23.900000000000002,62.64,921,7.300000000000001 +2013,1,28,16,30,216,111,340,5.300000000000001,21.8,72.08,921,6.9 +2013,1,28,17,30,68,43,201,4.4,20.3,82.85000000000001,921,7.4 +2013,1,28,18,30,0,0,0,4.1000000000000005,17.400000000000002,94.67,922,7.9 +2013,1,28,19,30,0,0,0,4.3,16.8,106.92,922,8.6 +2013,1,28,20,30,0,0,0,4.5,16.2,119.48,922,9.600000000000001 +2013,1,28,21,30,0,0,0,4.7,15.8,132.14000000000001,922,10.9 +2013,1,28,22,30,0,0,0,4.800000000000001,15.4,144.61,921,12.5 +2013,1,28,23,30,0,0,0,4.9,15,156.23,920,14 +2013,1,29,0,30,0,0,0,5.1000000000000005,14.8,164.57,919,14.8 +2013,1,29,1,30,0,0,0,5.6000000000000005,14.8,163.39000000000001,918,14.8 +2013,1,29,2,30,0,0,0,6.300000000000001,14.9,153.96,918,14.9 +2013,1,29,3,30,0,0,0,6.5,14.8,142.05,918,14.8 +2013,1,29,4,30,0,0,0,6.1000000000000005,14.4,129.5,917,14.4 +2013,1,29,5,30,0,0,0,5.4,13.8,116.84,917,13.8 +2013,1,29,6,30,0,0,0,4.7,13,104.31,918,13 +2013,1,29,7,30,0,0,0,4.5,12.8,92.13,918,12.8 +2013,1,29,8,30,72,62,60,4.9,13.8,80.46000000000001,918,11.5 +2013,1,29,9,30,202,145,166,5.9,15.700000000000001,69.87,918,8.700000000000001 +2013,1,29,10,30,436,133,619,7.2,17.3,60.76,918,3.9000000000000004 +2013,1,29,11,30,611,90,885,8.3,17.7,53.93,917,0.2 +2013,1,29,12,30,150,150,1,9.200000000000001,17.3,50.370000000000005,916,-2.2 +2013,1,29,13,30,576,208,582,9.9,16.6,50.77,916,-3.9000000000000004 +2013,1,29,14,30,414,265,261,10.100000000000001,15.600000000000001,55.050000000000004,916,-4.6000000000000005 +2013,1,29,15,30,391,155,510,9.8,14.100000000000001,62.4,916,-4.6000000000000005 +2013,1,29,16,30,246,92,494,9.1,12.200000000000001,71.86,917,-4.9 +2013,1,29,17,30,48,45,26,8.700000000000001,11.200000000000001,82.66,918,-6.4 +2013,1,29,18,30,0,0,0,7.2,9,94.49,919,-7.800000000000001 +2013,1,29,19,30,0,0,0,6.800000000000001,8,106.76,919,-8.3 +2013,1,29,20,30,0,0,0,6.4,7.1000000000000005,119.32000000000001,920,-8.1 +2013,1,29,21,30,0,0,0,6.1000000000000005,6.300000000000001,131.98,920,-7.9 +2013,1,29,22,30,0,0,0,6.2,5.6000000000000005,144.44,920,-8.6 +2013,1,29,23,30,0,0,0,6.300000000000001,4.800000000000001,156.02,921,-10.3 +2013,1,30,0,30,0,0,0,6.4,3.8000000000000003,164.3,921,-11.200000000000001 +2013,1,30,1,30,0,0,0,6.6000000000000005,2.5,163.17000000000002,923,-8.8 +2013,1,30,2,30,0,0,0,6.5,1.4000000000000001,153.82,924,-5.7 +2013,1,30,3,30,0,0,0,6.2,0.8,141.95000000000002,925,-4.9 +2013,1,30,4,30,0,0,0,6.1000000000000005,0.4,129.41,926,-5.800000000000001 +2013,1,30,5,30,0,0,0,6,0,116.74000000000001,927,-7.5 +2013,1,30,6,30,0,0,0,5.9,-0.30000000000000004,104.21000000000001,928,-9.1 +2013,1,30,7,30,0,0,0,6.1000000000000005,0.30000000000000004,92.01,930,-10 +2013,1,30,8,30,152,34,702,6.800000000000001,2.1,80.31,932,-10.4 +2013,1,30,9,30,363,47,910,7,4.2,69.7,933,-10.700000000000001 +2013,1,30,10,30,543,53,996,6.5,6.1000000000000005,60.550000000000004,933,-10.8 +2013,1,30,11,30,670,56,1038,6,7.6000000000000005,53.69,932,-12.100000000000001 +2013,1,30,12,30,734,58,1055,5.9,8.700000000000001,50.1,931,-13 +2013,1,30,13,30,728,59,1052,5.7,9.4,50.5,931,-13.5 +2013,1,30,14,30,652,57,1032,5.7,9.700000000000001,54.79,930,-13.8 +2013,1,30,15,30,507,53,973,5.4,9.600000000000001,62.160000000000004,930,-14 +2013,1,30,16,30,321,45,877,4,8.1,71.65,930,-13.9 +2013,1,30,17,30,113,29,643,2.7,6.800000000000001,82.46000000000001,930,-10.9 +2013,1,30,18,30,0,0,0,1.6,2.8000000000000003,94.31,931,-8.6 +2013,1,30,19,30,0,0,0,1.7000000000000002,2.2,106.59,932,-8.700000000000001 +2013,1,30,20,30,0,0,0,1.8,1.6,119.16,932,-9.200000000000001 +2013,1,30,21,30,0,0,0,1.8,1,131.82,932,-9.5 +2013,1,30,22,30,0,0,0,1.7000000000000002,0.5,144.26,932,-9.9 +2013,1,30,23,30,0,0,0,1.7000000000000002,0.1,155.81,932,-10.200000000000001 +2013,1,31,0,30,0,0,0,2,-0.1,164.03,932,-10.600000000000001 +2013,1,31,1,30,0,0,0,2.7,0.2,162.93,932,-11.200000000000001 +2013,1,31,2,30,0,0,0,3.3000000000000003,0.2,153.67000000000002,932,-11.600000000000001 +2013,1,31,3,30,0,0,0,3.5,-0.1,141.84,931,-11.5 +2013,1,31,4,30,0,0,0,3.8000000000000003,-0.4,129.31,931,-11.100000000000001 +2013,1,31,5,30,0,0,0,4,-0.7000000000000001,116.64,931,-10.8 +2013,1,31,6,30,0,0,0,3.9000000000000004,-1,104.10000000000001,932,-10.4 +2013,1,31,7,30,0,0,0,4.3,0,91.89,932,-9.9 +2013,1,31,8,30,152,30,718,4.5,2.9000000000000004,80.17,932,-9.4 +2013,1,31,9,30,358,41,905,4.6000000000000005,7.1000000000000005,69.52,933,-8 +2013,1,31,10,30,536,49,984,5.2,11.4,60.34,933,-6.4 +2013,1,31,11,30,662,53,1023,5.6000000000000005,14.5,53.45,932,-5.4 +2013,1,31,12,30,727,59,1035,5.6000000000000005,16.400000000000002,49.83,932,-5.300000000000001 +2013,1,31,13,30,629,154,742,5.2,17.3,50.21,931,-5.7 +2013,1,31,14,30,517,185,572,4.6000000000000005,17.6,54.52,931,-6.4 +2013,1,31,15,30,384,168,458,3.6,17.1,61.910000000000004,931,-6.9 +2013,1,31,16,30,327,47,878,2.2,14.3,71.43,931,-5.800000000000001 +2013,1,31,17,30,81,44,277,1.3,12,82.27,931,-1.2000000000000002 +2013,1,31,18,30,0,0,0,1.4000000000000001,9.9,94.13,932,-3.1 +2013,1,31,19,30,0,0,0,1.4000000000000001,9.4,106.42,933,-3.7 +2013,1,31,20,30,0,0,0,1.5,8.4,119,934,-4.3 +2013,1,31,21,30,0,0,0,2.1,7,131.65,934,-4.800000000000001 +2013,1,31,22,30,0,0,0,2.8000000000000003,5.7,144.08,935,-4.7 +2013,1,31,23,30,0,0,0,3.4000000000000004,4.5,155.59,936,-4.2 +2013,2,1,0,30,0,0,0,3.7,3,163.75,937,-3.8000000000000003 +2013,2,1,1,30,0,0,0,3.8000000000000003,1.5,162.70000000000002,937,-3.4000000000000004 +2013,2,1,2,30,0,0,0,3.6,0.4,153.51,937,-3.4000000000000004 +2013,2,1,3,30,0,0,0,3.1,-0.30000000000000004,141.72,937,-3.6 +2013,2,1,4,30,0,0,0,2.9000000000000004,-0.7000000000000001,129.21,937,-3.8000000000000003 +2013,2,1,5,30,0,0,0,2.8000000000000003,-1,116.54,937,-4.1000000000000005 +2013,2,1,6,30,0,0,0,2.4000000000000004,-1.3,103.98,937,-4.5 +2013,2,1,7,30,0,0,0,2.2,-0.8,91.76,938,-4.800000000000001 +2013,2,1,8,30,154,37,676,2.3000000000000003,0.9,80.02,938,-5.1000000000000005 +2013,2,1,9,30,361,53,873,2.4000000000000004,3.6,69.34,937,-5.1000000000000005 +2013,2,1,10,30,539,62,958,2.6,7.1000000000000005,60.120000000000005,937,-4.6000000000000005 +2013,2,1,11,30,666,67,1000,3.3000000000000003,10.9,53.19,936,-4 +2013,2,1,12,30,729,70,1016,4.2,14.200000000000001,49.550000000000004,935,-3.9000000000000004 +2013,2,1,13,30,722,70,1013,4.7,16.400000000000002,49.93,933,-4.1000000000000005 +2013,2,1,14,30,647,69,989,5,17.400000000000002,54.24,932,-3.9000000000000004 +2013,2,1,15,30,506,65,929,4.7,17.400000000000002,61.67,932,-3.6 +2013,2,1,16,30,320,55,823,3.4000000000000004,15.100000000000001,71.21000000000001,931,-2.7 +2013,2,1,17,30,114,35,569,2.4000000000000004,13.100000000000001,82.07000000000001,931,-0.4 +2013,2,1,18,30,0,0,0,3.4000000000000004,10.200000000000001,93.95,931,-0.5 +2013,2,1,19,30,0,0,0,4.2,9.9,106.25,931,-0.30000000000000004 +2013,2,1,20,30,0,0,0,4.5,9.200000000000001,118.84,931,0.30000000000000004 +2013,2,1,21,30,0,0,0,4.7,8.5,131.49,931,1 +2013,2,1,22,30,0,0,0,4.800000000000001,7.7,143.9,931,1.8 +2013,2,1,23,30,0,0,0,4.800000000000001,7,155.38,931,2.5 +2013,2,2,0,30,0,0,0,4.9,6.300000000000001,163.47,931,3.1 +2013,2,2,1,30,0,0,0,4.9,5.5,162.45000000000002,931,3.5 +2013,2,2,2,30,0,0,0,4.7,4.800000000000001,153.35,931,3.7 +2013,2,2,3,30,0,0,0,4.2,4,141.6,931,3.6 +2013,2,2,4,30,0,0,0,3.7,3.1,129.1,931,3.1 +2013,2,2,5,30,0,0,0,3.2,2.2,116.43,932,2.1 +2013,2,2,6,30,0,0,0,3,1.5,103.86,933,0.4 +2013,2,2,7,30,0,0,0,3.5,2.3000000000000003,91.62,934,-1.6 +2013,2,2,8,30,115,56,337,4.4,5,79.86,935,-3 +2013,2,2,9,30,267,124,404,5.1000000000000005,8.3,69.16,936,-3.3000000000000003 +2013,2,2,10,30,410,186,446,5.800000000000001,11.5,59.9,936,-2.8000000000000003 +2013,2,2,11,30,514,231,471,6.2,14.100000000000001,52.94,936,-2.7 +2013,2,2,12,30,733,69,1017,6,15.700000000000001,49.26,936,-3.1 +2013,2,2,13,30,722,69,1009,5.4,16.6,49.64,936,-3.1 +2013,2,2,14,30,648,67,988,5,16.8,53.97,935,-3.1 +2013,2,2,15,30,511,62,939,4.6000000000000005,16.3,61.42,936,-3.2 +2013,2,2,16,30,326,52,841,3.1,14,70.99,936,-3.2 +2013,2,2,17,30,119,33,606,2,12.100000000000001,81.87,936,-1 +2013,2,2,18,30,0,0,0,1.6,7.7,93.77,937,-1.2000000000000002 +2013,2,2,19,30,0,0,0,1.5,6.800000000000001,106.09,937,-1.7000000000000002 +2013,2,2,20,30,0,0,0,1.4000000000000001,6.1000000000000005,118.68,938,-2 +2013,2,2,21,30,0,0,0,1.4000000000000001,5.6000000000000005,131.33,938,-2.5 +2013,2,2,22,30,0,0,0,1.3,5.300000000000001,143.72,939,-3 +2013,2,2,23,30,0,0,0,1.2000000000000002,5,155.15,938,-3.5 +2013,2,3,0,30,0,0,0,1.2000000000000002,4.6000000000000005,163.18,938,-3.8000000000000003 +2013,2,3,1,30,0,0,0,1.2000000000000002,4.3,162.20000000000002,938,-4.2 +2013,2,3,2,30,0,0,0,1.2000000000000002,3.8000000000000003,153.18,938,-4.5 +2013,2,3,3,30,0,0,0,1.2000000000000002,3.3000000000000003,141.47,937,-4.7 +2013,2,3,4,30,0,0,0,1.3,2.8000000000000003,128.98,937,-4.6000000000000005 +2013,2,3,5,30,0,0,0,1.3,2.2,116.31,937,-4.3 +2013,2,3,6,30,0,0,0,1.4000000000000001,1.8,103.74000000000001,937,-3.8000000000000003 +2013,2,3,7,30,0,0,0,1.8,3.7,91.48,937,-3.1 +2013,2,3,8,30,94,66,157,2.7,7.4,79.7,937,-1.4000000000000001 +2013,2,3,9,30,361,55,852,3.7,11.3,68.97,937,-0.5 +2013,2,3,10,30,533,68,920,4.7,14.700000000000001,59.68,937,-1 +2013,2,3,11,30,507,245,431,5.300000000000001,16.400000000000002,52.67,935,0.2 +2013,2,3,12,30,711,91,944,5.5,17.1,48.97,933,2.6 +2013,2,3,13,30,581,228,542,5.6000000000000005,17.5,49.34,932,4.3 +2013,2,3,14,30,538,179,607,5.5,17.7,53.69,930,5.4 +2013,2,3,15,30,484,95,807,5.2,17.400000000000002,61.17,929,5.9 +2013,2,3,16,30,220,128,280,4.2,16.2,70.76,929,6.2 +2013,2,3,17,30,77,52,176,3.6,15.4,81.68,928,6.800000000000001 +2013,2,3,18,30,0,0,0,3.8000000000000003,13.600000000000001,93.59,928,7.1000000000000005 +2013,2,3,19,30,0,0,0,4.3,13.100000000000001,105.92,928,7.6000000000000005 +2013,2,3,20,30,0,0,0,4.1000000000000005,12.4,118.51,927,8 +2013,2,3,21,30,0,0,0,3.7,11.700000000000001,131.16,927,8.5 +2013,2,3,22,30,0,0,0,3.3000000000000003,11.200000000000001,143.54,926,8.9 +2013,2,3,23,30,0,0,0,3,10.8,154.93,926,9.3 +2013,2,4,0,30,0,0,0,2.8000000000000003,10.3,162.89000000000001,926,9.600000000000001 +2013,2,4,1,30,0,0,0,2.6,9.9,161.94,925,9.600000000000001 +2013,2,4,2,30,0,0,0,2.6,9.600000000000001,153,925,9.600000000000001 +2013,2,4,3,30,0,0,0,2.7,9.5,141.33,924,9.5 +2013,2,4,4,30,0,0,0,3.1,9.3,128.86,924,9.3 +2013,2,4,5,30,0,0,0,3.4000000000000004,9,116.19,924,9 +2013,2,4,6,30,0,0,0,3.4000000000000004,8.6,103.61,924,8.6 +2013,2,4,7,30,0,0,0,3.9000000000000004,9.1,91.33,924,9.1 +2013,2,4,8,30,98,67,168,4.4,11.100000000000001,79.54,924,9.1 +2013,2,4,9,30,262,135,349,4.3,13.600000000000001,68.77,924,8.4 +2013,2,4,10,30,532,74,900,4.1000000000000005,16.2,59.45,924,6.2 +2013,2,4,11,30,658,78,951,4.1000000000000005,18.400000000000002,52.410000000000004,924,3.3000000000000003 +2013,2,4,12,30,724,77,980,4.2,19.700000000000003,48.68,923,0.6000000000000001 +2013,2,4,13,30,718,76,980,4.3,20.400000000000002,49.04,922,-1.2000000000000002 +2013,2,4,14,30,559,164,663,4.2,20.400000000000002,53.410000000000004,922,-2 +2013,2,4,15,30,511,64,921,3.9000000000000004,19.700000000000003,60.92,922,-2.2 +2013,2,4,16,30,327,54,822,2.7,17.2,70.54,923,-1.8 +2013,2,4,17,30,122,35,591,1.9000000000000001,15.200000000000001,81.48,923,1.5 +2013,2,4,18,30,0,0,0,2,11.700000000000001,93.41,924,1 +2013,2,4,19,30,0,0,0,2.2,10.600000000000001,105.75,925,0.6000000000000001 +2013,2,4,20,30,0,0,0,2.1,9.4,118.35000000000001,925,0.5 +2013,2,4,21,30,0,0,0,1.9000000000000001,8.200000000000001,131,925,0.6000000000000001 +2013,2,4,22,30,0,0,0,1.8,7.2,143.36,926,0.4 +2013,2,4,23,30,0,0,0,1.7000000000000002,6.2,154.71,926,0 +2013,2,5,0,30,0,0,0,1.6,5.4,162.6,926,-0.6000000000000001 +2013,2,5,1,30,0,0,0,1.5,4.7,161.67000000000002,926,-1.5 +2013,2,5,2,30,0,0,0,1.5,4.2,152.82,926,-2.3000000000000003 +2013,2,5,3,30,0,0,0,1.4000000000000001,4,141.18,926,-3 +2013,2,5,4,30,0,0,0,1.3,3.8000000000000003,128.73,926,-3.5 +2013,2,5,5,30,0,0,0,1.3,3.6,116.06,926,-3.9000000000000004 +2013,2,5,6,30,0,0,0,1.3,3.3000000000000003,103.47,926,-4.2 +2013,2,5,7,30,0,0,0,1.6,5.2,91.18,927,-4.1000000000000005 +2013,2,5,8,30,168,34,725,2,8.5,79.36,928,-3.3000000000000003 +2013,2,5,9,30,378,47,905,1.6,12.3,68.57000000000001,928,-3.5 +2013,2,5,10,30,559,55,983,1.2000000000000002,16.5,59.21,928,-3 +2013,2,5,11,30,682,60,1014,1,19.200000000000003,52.13,928,-4.3 +2013,2,5,12,30,748,67,1025,0.8,20.5,48.38,927,-4.2 +2013,2,5,13,30,742,67,1022,0.8,21.3,48.74,926,-4 +2013,2,5,14,30,666,65,1003,1.2000000000000002,21.400000000000002,53.13,926,-3.9000000000000004 +2013,2,5,15,30,529,60,957,1.7000000000000002,20.900000000000002,60.660000000000004,925,-3.9000000000000004 +2013,2,5,16,30,342,51,863,1.7000000000000002,18.1,70.32000000000001,925,-3.1 +2013,2,5,17,30,131,34,641,1.4000000000000001,15.8,81.29,925,2.2 +2013,2,5,18,30,0,0,0,2.3000000000000003,11.8,93.23,926,-0.1 +2013,2,5,19,30,0,0,0,2.7,11.200000000000001,105.58,927,-0.2 +2013,2,5,20,30,0,0,0,2.8000000000000003,10.8,118.19,927,0.8 +2013,2,5,21,30,0,0,0,2.7,10.3,130.83,927,2.7 +2013,2,5,22,30,0,0,0,2.5,9.8,143.18,927,4.9 +2013,2,5,23,30,0,0,0,2.4000000000000004,9.4,154.48,927,6.7 +2013,2,6,0,30,0,0,0,2.3000000000000003,9.1,162.3,927,8 +2013,2,6,1,30,0,0,0,2.4000000000000004,9,161.4,927,8.700000000000001 +2013,2,6,2,30,0,0,0,2.4000000000000004,8.8,152.62,927,8.8 +2013,2,6,3,30,0,0,0,2.5,8.5,141.03,926,8.5 +2013,2,6,4,30,0,0,0,2.6,8.200000000000001,128.59,926,8.200000000000001 +2013,2,6,5,30,0,0,0,2.8000000000000003,7.7,115.93,926,7.7 +2013,2,6,6,30,0,0,0,3,7.300000000000001,103.33,926,7.300000000000001 +2013,2,6,7,30,0,0,0,3.5,8,91.03,927,6.800000000000001 +2013,2,6,8,30,154,46,577,4.1000000000000005,10.5,79.19,927,6.1000000000000005 +2013,2,6,9,30,355,66,783,4.9,14.4,68.37,926,6.300000000000001 +2013,2,6,10,30,529,78,876,5.6000000000000005,18,58.97,926,8.1 +2013,2,6,11,30,656,84,926,5.5,20.5,51.85,925,8.4 +2013,2,6,12,30,722,80,960,5.1000000000000005,21.900000000000002,48.08,923,8.3 +2013,2,6,13,30,716,80,960,4.800000000000001,22.700000000000003,48.43,922,8 +2013,2,6,14,30,645,77,940,4.6000000000000005,22.900000000000002,52.84,921,7.300000000000001 +2013,2,6,15,30,513,68,899,4.2,22.5,60.410000000000004,921,6.4 +2013,2,6,16,30,196,143,155,2.9000000000000004,20.3,70.10000000000001,921,5.5 +2013,2,6,17,30,126,38,569,1.9000000000000001,18.5,81.09,922,6.5 +2013,2,6,18,30,0,0,0,1.8,15,93.05,922,5.7 +2013,2,6,19,30,0,0,0,1.9000000000000001,14.5,105.41,923,5.5 +2013,2,6,20,30,0,0,0,2,14,118.03,923,5.5 +2013,2,6,21,30,0,0,0,2.3000000000000003,13.700000000000001,130.66,923,5.7 +2013,2,6,22,30,0,0,0,2.9000000000000004,13.600000000000001,142.99,922,6.2 +2013,2,6,23,30,0,0,0,3.6,13.4,154.25,923,7 +2013,2,7,0,30,0,0,0,4.2,12.9,162,923,7.7 +2013,2,7,1,30,0,0,0,4.5,12.200000000000001,161.12,923,8 +2013,2,7,2,30,0,0,0,4.6000000000000005,11.3,152.43,923,7.7 +2013,2,7,3,30,0,0,0,4.5,10.4,140.88,923,7 +2013,2,7,4,30,0,0,0,4.4,9.4,128.45,923,6 +2013,2,7,5,30,0,0,0,4.3,8.5,115.79,923,5.2 +2013,2,7,6,30,0,0,0,4.2,7.800000000000001,103.19,924,4.7 +2013,2,7,7,30,0,0,0,4.4,8.5,90.87,925,4.2 +2013,2,7,8,30,168,40,669,4.9,10.9,79.01,926,3.1 +2013,2,7,9,30,376,56,858,5.4,13.5,68.15,926,0.8 +2013,2,7,10,30,554,67,939,5.800000000000001,15.700000000000001,58.72,927,0.5 +2013,2,7,11,30,678,74,972,6.2,17.6,51.57,927,1.4000000000000001 +2013,2,7,12,30,741,78,987,6.6000000000000005,18.8,47.77,927,2.4000000000000004 +2013,2,7,13,30,735,80,982,7,19.3,48.120000000000005,926,3 +2013,2,7,14,30,660,78,958,7,19,52.550000000000004,927,3.1 +2013,2,7,15,30,521,71,904,6.800000000000001,18.1,60.15,927,3 +2013,2,7,16,30,337,60,803,5.9,16.400000000000002,69.87,928,2.8000000000000003 +2013,2,7,17,30,130,40,570,5.300000000000001,15.3,80.89,929,2.8000000000000003 +2013,2,7,18,30,0,0,0,3.4000000000000004,11.5,92.87,930,3.1 +2013,2,7,19,30,0,0,0,3,10.200000000000001,105.25,931,3.2 +2013,2,7,20,30,0,0,0,2.6,9,117.86,932,3.2 +2013,2,7,21,30,0,0,0,2.4000000000000004,7.9,130.5,933,3.1 +2013,2,7,22,30,0,0,0,2.3000000000000003,7,142.81,934,2.8000000000000003 +2013,2,7,23,30,0,0,0,2.3000000000000003,6.2,154.02,934,2.2 +2013,2,8,0,30,0,0,0,2.4000000000000004,5.5,161.69,934,1.4000000000000001 +2013,2,8,1,30,0,0,0,2.3000000000000003,4.7,160.83,934,0.6000000000000001 +2013,2,8,2,30,0,0,0,2.2,4,152.22,934,-0.1 +2013,2,8,3,30,0,0,0,2.1,3.3000000000000003,140.71,934,-0.8 +2013,2,8,4,30,0,0,0,2,2.6,128.3,934,-1.4000000000000001 +2013,2,8,5,30,0,0,0,1.8,1.9000000000000001,115.64,935,-1.8 +2013,2,8,6,30,0,0,0,1.7000000000000002,1.5,103.03,935,-2 +2013,2,8,7,30,0,0,0,2.2,3.1,90.14,935,-2.1 +2013,2,8,8,30,116,69,243,3,6.4,78.82000000000001,936,-1.8 +2013,2,8,9,30,286,131,412,3.5,9.600000000000001,67.94,936,-2.8000000000000003 +2013,2,8,10,30,572,67,965,3.5,12.3,58.47,936,-5.2 +2013,2,8,11,30,569,197,595,3.3000000000000003,14.3,51.28,935,-6.5 +2013,2,8,12,30,757,76,1007,3,15.600000000000001,47.45,934,-6.6000000000000005 +2013,2,8,13,30,752,76,1006,2.8000000000000003,16.400000000000002,47.81,932,-6.4 +2013,2,8,14,30,673,73,980,2.9000000000000004,16.6,52.26,931,-6.300000000000001 +2013,2,8,15,30,400,193,413,3,16.2,59.89,931,-6.300000000000001 +2013,2,8,16,30,308,70,684,2.4000000000000004,14.3,69.64,930,-6.300000000000001 +2013,2,8,17,30,67,59,45,1.7000000000000002,12.700000000000001,80.69,930,-2.6 +2013,2,8,18,30,0,0,0,2.1,8.8,92.69,930,-2.9000000000000004 +2013,2,8,19,30,0,0,0,2.5,8.200000000000001,105.08,930,-3.9000000000000004 +2013,2,8,20,30,0,0,0,2.8000000000000003,7.6000000000000005,117.7,930,-4.3 +2013,2,8,21,30,0,0,0,3.1,7,130.33,930,-4.3 +2013,2,8,22,30,0,0,0,3.4000000000000004,6.5,142.62,929,-4.2 +2013,2,8,23,30,0,0,0,3.7,6.4,153.78,929,-3.9000000000000004 +2013,2,9,0,30,0,0,0,3.9000000000000004,6.6000000000000005,161.38,928,-3.4000000000000004 +2013,2,9,1,30,0,0,0,3.9000000000000004,6.6000000000000005,160.54,928,-2.7 +2013,2,9,2,30,0,0,0,4.1000000000000005,6.7,152,928,-1.7000000000000002 +2013,2,9,3,30,0,0,0,4.4,6.800000000000001,140.54,927,-0.6000000000000001 +2013,2,9,4,30,0,0,0,4.9,7.1000000000000005,128.15,927,0.5 +2013,2,9,5,30,0,0,0,5.2,7.300000000000001,115.49000000000001,927,1.8 +2013,2,9,6,30,0,0,0,5.2,7.300000000000001,102.88,927,2.8000000000000003 +2013,2,9,7,30,0,0,0,5.5,7.5,90.01,926,3.3000000000000003 +2013,2,9,8,30,14,14,0,6.5,8.700000000000001,78.63,925,4.1000000000000005 +2013,2,9,9,30,145,139,15,7.7,10.9,67.72,925,5.9 +2013,2,9,10,30,285,238,90,8.200000000000001,13.5,58.21,924,7.300000000000001 +2013,2,9,11,30,333,289,71,8.3,16,50.99,923,8.200000000000001 +2013,2,9,12,30,505,330,258,8.3,18.2,47.13,921,9.5 +2013,2,9,13,30,438,335,153,8.3,19.700000000000003,47.49,920,10.3 +2013,2,9,14,30,417,297,194,8.200000000000001,20.400000000000002,51.97,918,10.600000000000001 +2013,2,9,15,30,410,192,431,7.9,20.400000000000002,59.64,918,10.4 +2013,2,9,16,30,269,118,428,7,19.200000000000003,69.42,918,10.100000000000001 +2013,2,9,17,30,86,61,153,6.4,18.3,80.5,918,10.3 +2013,2,9,18,30,0,0,0,6.1000000000000005,15.200000000000001,92.51,918,10.8 +2013,2,9,19,30,0,0,0,5.800000000000001,13.9,104.91,918,11.700000000000001 +2013,2,9,20,30,0,0,0,5.2,13.200000000000001,117.54,918,12.5 +2013,2,9,21,30,0,0,0,4.6000000000000005,13,130.16,919,12.9 +2013,2,9,22,30,0,0,0,4.3,12.4,142.43,920,12.4 +2013,2,9,23,30,0,0,0,4.3,11.5,153.54,921,11.100000000000001 +2013,2,10,0,30,0,0,0,4.1000000000000005,10.3,161.07,922,7.6000000000000005 +2013,2,10,1,30,0,0,0,3.8000000000000003,8.9,160.24,922,2.9000000000000004 +2013,2,10,2,30,0,0,0,3.8000000000000003,7.7,151.78,922,-1.3 +2013,2,10,3,30,0,0,0,4.1000000000000005,7,140.36,922,-4 +2013,2,10,4,30,0,0,0,4.1000000000000005,6.5,127.99000000000001,923,-5.300000000000001 +2013,2,10,5,30,0,0,0,4,5.800000000000001,115.34,923,-6 +2013,2,10,6,30,0,0,0,3.9000000000000004,5.1000000000000005,102.72,923,-6.6000000000000005 +2013,2,10,7,30,0,0,0,4.3,5.6000000000000005,89.86,924,-7.1000000000000005 +2013,2,10,8,30,135,63,359,5.300000000000001,7.9,78.43,925,-7.5 +2013,2,10,9,30,334,91,635,6,10.600000000000001,67.49,925,-7.800000000000001 +2013,2,10,10,30,440,199,453,5.9,12.5,57.95,925,-8.6 +2013,2,10,11,30,719,71,1024,5.800000000000001,13.9,50.69,924,-9.4 +2013,2,10,12,30,784,75,1036,5.800000000000001,14.8,46.81,924,-10 +2013,2,10,13,30,778,75,1034,5.7,15.5,47.17,923,-10.5 +2013,2,10,14,30,702,73,1013,5.5,15.700000000000001,51.67,923,-10.700000000000001 +2013,2,10,15,30,560,68,966,4.9,15.5,59.38,923,-10.9 +2013,2,10,16,30,369,58,877,3.3000000000000003,13.9,69.19,924,-10.5 +2013,2,10,17,30,152,39,669,2.1,12.5,80.3,924,-5.5 +2013,2,10,18,30,0,0,0,1.5,8.8,92.33,925,-3.8000000000000003 +2013,2,10,19,30,0,0,0,1.4000000000000001,8.4,104.74000000000001,926,-3.8000000000000003 +2013,2,10,20,30,0,0,0,1.3,8.4,117.38,926,-4.4 +2013,2,10,21,30,0,0,0,1.2000000000000002,8.700000000000001,129.99,927,-5.5 +2013,2,10,22,30,0,0,0,1,8.8,142.24,927,-6.7 +2013,2,10,23,30,0,0,0,0.7000000000000001,8.700000000000001,153.3,927,-7 +2013,2,11,0,30,0,0,0,0.4,8.1,160.76,928,-6.9 +2013,2,11,1,30,0,0,0,0.30000000000000004,7.1000000000000005,159.94,928,-6.800000000000001 +2013,2,11,2,30,0,0,0,0.5,6.1000000000000005,151.56,928,-6.6000000000000005 +2013,2,11,3,30,0,0,0,0.8,5.1000000000000005,140.18,928,-6.300000000000001 +2013,2,11,4,30,0,0,0,1.1,4,127.83,928,-5.5 +2013,2,11,5,30,0,0,0,1.4000000000000001,3,115.18,929,-4.3 +2013,2,11,6,30,0,0,0,1.6,2.5,102.55,929,-3.5 +2013,2,11,7,30,0,0,0,2.2,3.5,89.69,930,-2.8000000000000003 +2013,2,11,8,30,102,78,116,3,5.9,78.23,930,-2.4000000000000004 +2013,2,11,9,30,382,70,806,3.6,8.700000000000001,67.26,930,-2 +2013,2,11,10,30,558,84,886,3.9000000000000004,11,57.69,930,-1.6 +2013,2,11,11,30,681,96,918,4.1000000000000005,12.5,50.39,929,-0.4 +2013,2,11,12,30,681,178,731,4.2,13.3,46.480000000000004,929,1.1 +2013,2,11,13,30,524,325,290,4.2,13.4,46.84,928,2.5 +2013,2,11,14,30,661,99,899,4.1000000000000005,13.100000000000001,51.370000000000005,927,3.4000000000000004 +2013,2,11,15,30,499,92,793,4.1000000000000005,12.5,59.120000000000005,927,4 +2013,2,11,16,30,250,138,314,4,11.600000000000001,68.97,927,4.2 +2013,2,11,17,30,82,64,104,3.9000000000000004,11,80.10000000000001,927,4.2 +2013,2,11,18,30,0,0,0,3.3000000000000003,8.200000000000001,92.15,928,3.9000000000000004 +2013,2,11,19,30,0,0,0,3.6,7,104.58,928,3.5 +2013,2,11,20,30,0,0,0,3.8000000000000003,6,117.22,928,2.9000000000000004 +2013,2,11,21,30,0,0,0,4,5.1000000000000005,129.82,927,2.3000000000000003 +2013,2,11,22,30,0,0,0,3.8000000000000003,4.5,142.05,927,1.9000000000000001 +2013,2,11,23,30,0,0,0,3.5,4.3,153.06,926,2.2 +2013,2,12,0,30,0,0,0,3.2,4.7,160.44,926,3.1 +2013,2,12,1,30,0,0,0,3.4000000000000004,5.4,159.63,926,4.3 +2013,2,12,2,30,0,0,0,3.5,5.9,151.32,925,5.5 +2013,2,12,3,30,0,0,0,3.1,6.2,139.99,925,6.1000000000000005 +2013,2,12,4,30,0,0,0,2.7,6.300000000000001,127.66,924,6.300000000000001 +2013,2,12,5,30,0,0,0,2.4000000000000004,6.4,115.01,924,6.4 +2013,2,12,6,30,0,0,0,2.2,6.5,102.38,924,6.5 +2013,2,12,7,30,0,0,0,2,6.9,89.54,924,6.800000000000001 +2013,2,12,8,30,30,30,0,1.9000000000000001,7.800000000000001,78.03,924,7 +2013,2,12,9,30,45,45,0,2.7,9.200000000000001,67.03,924,7 +2013,2,12,10,30,92,92,0,4,10.4,57.42,924,5.800000000000001 +2013,2,12,11,30,305,276,45,5.2,10.8,50.08,924,3.6 +2013,2,12,12,30,760,108,941,5.800000000000001,10.700000000000001,46.15,924,1.7000000000000002 +2013,2,12,13,30,237,228,13,6,10.700000000000001,46.51,924,0.6000000000000001 +2013,2,12,14,30,686,93,944,6.1000000000000005,10.5,51.08,925,0.1 +2013,2,12,15,30,198,189,17,6.300000000000001,9.8,58.86,925,0 +2013,2,12,16,30,66,66,0,6.300000000000001,8.4,68.74,926,-0.2 +2013,2,12,17,30,9,9,0,6.2,7.4,79.9,927,-0.5 +2013,2,12,18,30,0,0,0,5.2,4.3,91.97,929,-0.9 +2013,2,12,19,30,0,0,0,4.6000000000000005,2.7,104.41,930,-1.3 +2013,2,12,20,30,0,0,0,3.8000000000000003,1.4000000000000001,117.05,931,-1.5 +2013,2,12,21,30,0,0,0,2.9000000000000004,0.4,129.65,931,-1.5 +2013,2,12,22,30,0,0,0,2.3000000000000003,-0.4,141.85,932,-1.5 +2013,2,12,23,30,0,0,0,2.2,-0.9,152.81,931,-1.6 +2013,2,13,0,30,0,0,0,2.1,-1.4000000000000001,160.12,931,-1.6 +2013,2,13,1,30,0,0,0,2.1,-1.8,159.32,931,-1.8 +2013,2,13,2,30,0,0,0,1.9000000000000001,-2.2,151.08,931,-2.2 +2013,2,13,3,30,0,0,0,1.9000000000000001,-2.5,139.8,930,-2.5 +2013,2,13,4,30,0,0,0,1.8,-2.9000000000000004,127.48,930,-2.9000000000000004 +2013,2,13,5,30,0,0,0,1.8,-3.2,114.84,931,-3.2 +2013,2,13,6,30,0,0,0,2,-3,102.2,931,-3 +2013,2,13,7,30,0,0,0,2.9000000000000004,-0.8,89.36,931,-2.3000000000000003 +2013,2,13,8,30,198,42,737,3.2,3.1,77.82000000000001,932,-2.3000000000000003 +2013,2,13,9,30,415,57,908,2.9000000000000004,7.5,66.79,932,-2.9000000000000004 +2013,2,13,10,30,600,65,986,2.8000000000000003,10.9,57.14,931,-5.6000000000000005 +2013,2,13,11,30,732,70,1025,3.1,12.9,49.77,931,-6.7 +2013,2,13,12,30,791,72,1031,3.4000000000000004,14.3,45.82,930,-7.300000000000001 +2013,2,13,13,30,785,72,1029,3.7,15.100000000000001,46.18,929,-7.9 +2013,2,13,14,30,708,69,1010,3.8000000000000003,15.4,50.78,928,-8.700000000000001 +2013,2,13,15,30,573,64,977,3.7,15.100000000000001,58.59,927,-9.600000000000001 +2013,2,13,16,30,380,55,889,2.6,13,68.52,927,-10.3 +2013,2,13,17,30,161,38,690,1.6,11.200000000000001,79.71000000000001,927,-5 +2013,2,13,18,30,0,0,0,1.5,6.5,91.8,928,-5.4 +2013,2,13,19,30,0,0,0,1.6,5.5,104.25,928,-6 +2013,2,13,20,30,0,0,0,1.7000000000000002,4.7,116.89,928,-6.4 +2013,2,13,21,30,0,0,0,1.9000000000000001,4,129.49,929,-6.6000000000000005 +2013,2,13,22,30,0,0,0,2,3.4000000000000004,141.66,929,-6.800000000000001 +2013,2,13,23,30,0,0,0,2.2,3,152.57,929,-6.9 +2013,2,14,0,30,0,0,0,2.4000000000000004,2.6,159.79,929,-6.800000000000001 +2013,2,14,1,30,0,0,0,2.6,2.1,159,928,-6.5 +2013,2,14,2,30,0,0,0,2.6,1.5,150.83,928,-6.2 +2013,2,14,3,30,0,0,0,2.6,0.8,139.59,928,-5.9 +2013,2,14,4,30,0,0,0,2.4000000000000004,0.2,127.3,928,-5.6000000000000005 +2013,2,14,5,30,0,0,0,2.4000000000000004,-0.4,114.66,928,-5.6000000000000005 +2013,2,14,6,30,0,0,0,2.5,-0.5,102.02,929,-5.800000000000001 +2013,2,14,7,30,0,0,0,3.4000000000000004,1.3,89.2,929,-6 +2013,2,14,8,30,199,43,729,3.8000000000000003,4.800000000000001,77.60000000000001,929,-6.2 +2013,2,14,9,30,415,58,898,3.8000000000000003,8.9,66.54,930,-6 +2013,2,14,10,30,599,67,975,4.2,12.9,56.86,929,-6.800000000000001 +2013,2,14,11,30,730,72,1013,4.5,16,49.45,928,-7.5 +2013,2,14,12,30,795,77,1025,4.5,17.8,45.480000000000004,927,-7.9 +2013,2,14,13,30,789,79,1020,4.3,18.7,45.85,927,-8.1 +2013,2,14,14,30,712,77,998,4.1000000000000005,19,50.47,926,-8 +2013,2,14,15,30,572,68,959,3.5,18.6,58.33,926,-7.800000000000001 +2013,2,14,16,30,380,59,868,2.1,16.400000000000002,68.29,926,-7 +2013,2,14,17,30,161,41,661,1.1,14.600000000000001,79.51,925,-0.8 +2013,2,14,18,30,0,0,0,0.6000000000000001,11.9,91.62,926,-3.8000000000000003 +2013,2,14,19,30,0,0,0,0.9,10.8,104.08,927,-4.6000000000000005 +2013,2,14,20,30,0,0,0,2,9,116.73,928,-4.6000000000000005 +2013,2,14,21,30,0,0,0,3.5,6.9,129.32,929,-4.1000000000000005 +2013,2,14,22,30,0,0,0,5.300000000000001,5.2,141.46,930,-3.1 +2013,2,14,23,30,0,0,0,6.6000000000000005,3.9000000000000004,152.32,931,-1.9000000000000001 +2013,2,15,0,30,0,0,0,6.9,2.9000000000000004,159.46,932,-0.7000000000000001 +2013,2,15,1,30,0,0,0,6.6000000000000005,2.3000000000000003,158.67000000000002,933,-0.2 +2013,2,15,2,30,0,0,0,6.1000000000000005,1.8,150.58,933,0.1 +2013,2,15,3,30,0,0,0,5.6000000000000005,1.4000000000000001,139.39000000000001,934,0.2 +2013,2,15,4,30,0,0,0,5.300000000000001,1,127.11,934,0.2 +2013,2,15,5,30,0,0,0,4.9,0.6000000000000001,114.48,935,0 +2013,2,15,6,30,0,0,0,4.6000000000000005,0.30000000000000004,101.83,936,-0.30000000000000004 +2013,2,15,7,30,0,0,0,5.1000000000000005,1.3,89.02,937,-0.8 +2013,2,15,8,30,61,61,0,6,3.6,77.39,938,-2 +2013,2,15,9,30,255,171,210,6.4,5.7,66.3,939,-4.3 +2013,2,15,10,30,462,206,464,6,7.2,56.58,939,-6.2 +2013,2,15,11,30,550,275,420,5.5,8.4,49.13,938,-7.5 +2013,2,15,12,30,527,342,262,5.2,9,45.13,938,-8.200000000000001 +2013,2,15,13,30,549,329,315,5.1000000000000005,9.200000000000001,45.51,937,-8.6 +2013,2,15,14,30,568,220,543,5.1000000000000005,8.8,50.17,937,-8.5 +2013,2,15,15,30,286,238,90,5.1000000000000005,7.800000000000001,58.07,937,-8.3 +2013,2,15,16,30,214,159,146,4.9,6.4,68.07000000000001,938,-7.9 +2013,2,15,17,30,49,49,0,4.6000000000000005,5.5,79.32000000000001,938,-7.4 +2013,2,15,18,30,0,0,0,2.4000000000000004,2.3000000000000003,91.44,939,-6.4 +2013,2,15,19,30,0,0,0,1.6,1,103.92,939,-5.800000000000001 +2013,2,15,20,30,0,0,0,1.1,0,116.57000000000001,939,-5.5 +2013,2,15,21,30,0,0,0,0.8,-0.4,129.14000000000001,940,-5.6000000000000005 +2013,2,15,22,30,0,0,0,0.7000000000000001,-0.6000000000000001,141.27,939,-5.9 +2013,2,15,23,30,0,0,0,0.9,-1,152.06,939,-6 +2013,2,16,0,30,0,0,0,1.2000000000000002,-1.8,159.13,939,-6 +2013,2,16,1,30,0,0,0,1.5,-2.4000000000000004,158.34,939,-6 +2013,2,16,2,30,0,0,0,1.9000000000000001,-2.5,150.32,939,-6 +2013,2,16,3,30,0,0,0,2.2,-2.7,139.17000000000002,939,-6 +2013,2,16,4,30,0,0,0,2.3000000000000003,-2.9000000000000004,126.92,939,-6.2 +2013,2,16,5,30,0,0,0,2.3000000000000003,-3.3000000000000003,114.3,939,-6.6000000000000005 +2013,2,16,6,30,0,0,0,2.4000000000000004,-3.2,101.64,940,-6.9 +2013,2,16,7,30,16,11,227,3.1,-1.3,88.83,940,-7 +2013,2,16,8,30,206,43,732,3.3000000000000003,2.3000000000000003,77.16,940,-6.800000000000001 +2013,2,16,9,30,422,57,898,3.2,6.6000000000000005,66.05,940,-6.2 +2013,2,16,10,30,606,66,973,3.5,10.3,56.29,939,-5.800000000000001 +2013,2,16,11,30,736,70,1012,3.8000000000000003,12.8,48.81,938,-5.7 +2013,2,16,12,30,801,71,1028,4,14.600000000000001,44.79,937,-5.800000000000001 +2013,2,16,13,30,796,71,1027,4,15.9,45.17,935,-6.300000000000001 +2013,2,16,14,30,724,70,1015,3.9000000000000004,16.6,49.870000000000005,934,-6.7 +2013,2,16,15,30,583,65,971,3.6,16.6,57.81,933,-7 +2013,2,16,16,30,390,57,884,2.4000000000000004,14.700000000000001,67.85,932,-7.1000000000000005 +2013,2,16,17,30,170,41,687,1.5,12.8,79.12,932,-2.1 +2013,2,16,18,30,0,0,0,1.7000000000000002,7.9,91.27,932,-3.4000000000000004 +2013,2,16,19,30,0,0,0,2.1,7.1000000000000005,103.75,932,-4.1000000000000005 +2013,2,16,20,30,0,0,0,2.6,6.6000000000000005,116.41,932,-4.6000000000000005 +2013,2,16,21,30,0,0,0,3.3000000000000003,6.300000000000001,128.97,932,-4.800000000000001 +2013,2,16,22,30,0,0,0,4.1000000000000005,5.9,141.07,931,-4.9 +2013,2,16,23,30,0,0,0,4.800000000000001,5.4,151.81,931,-4.800000000000001 +2013,2,17,0,30,0,0,0,5,4.6000000000000005,158.8,931,-4.7 +2013,2,17,1,30,0,0,0,4.800000000000001,3.7,158.01,930,-4.800000000000001 +2013,2,17,2,30,0,0,0,4.5,2.8000000000000003,150.05,930,-4.9 +2013,2,17,3,30,0,0,0,4.4,2,138.95000000000002,930,-5 +2013,2,17,4,30,0,0,0,4.4,1.3,126.72,929,-5.1000000000000005 +2013,2,17,5,30,0,0,0,4.4,0.7000000000000001,114.10000000000001,929,-5.1000000000000005 +2013,2,17,6,30,0,0,0,4.6000000000000005,0.4,101.45,929,-5.1000000000000005 +2013,2,17,7,30,18,13,235,5,1.8,88.65,929,-5 +2013,2,17,8,30,215,46,747,5.5,5.300000000000001,76.94,929,-4.9 +2013,2,17,9,30,434,62,909,6.2,10.100000000000001,65.79,929,-4.800000000000001 +2013,2,17,10,30,621,71,984,7,14.5,56,928,-5.300000000000001 +2013,2,17,11,30,753,77,1020,7.4,17.7,48.480000000000004,927,-6.1000000000000005 +2013,2,17,12,30,819,79,1037,7.5,19.6,44.44,926,-7 +2013,2,17,13,30,812,80,1033,7.5,20.400000000000002,44.83,925,-7.1000000000000005 +2013,2,17,14,30,734,80,1009,7.4,20.5,49.56,924,-7 +2013,2,17,15,30,585,75,950,7,19.8,57.550000000000004,923,-6.9 +2013,2,17,16,30,294,130,429,6.1000000000000005,18,67.62,922,-6.4 +2013,2,17,17,30,114,68,240,5.4,16.7,78.93,922,-5.1000000000000005 +2013,2,17,18,30,0,0,0,5,12.8,91.09,923,-3.3000000000000003 +2013,2,17,19,30,0,0,0,5.4,11.700000000000001,103.59,923,-1.8 +2013,2,17,20,30,0,0,0,5.6000000000000005,10.600000000000001,116.24000000000001,922,0.1 +2013,2,17,21,30,0,0,0,5.800000000000001,9.8,128.8,922,2.1 +2013,2,17,22,30,0,0,0,5.9,9.1,140.87,922,3.9000000000000004 +2013,2,17,23,30,0,0,0,6,8.6,151.55,921,5.4 +2013,2,18,0,30,0,0,0,6,8.1,158.46,921,6.5 +2013,2,18,1,30,0,0,0,6.1000000000000005,7.9,157.67000000000002,921,7.4 +2013,2,18,2,30,0,0,0,6.4,8.1,149.78,920,8.1 +2013,2,18,3,30,0,0,0,7.1000000000000005,8.8,138.73,920,8.8 +2013,2,18,4,30,0,0,0,7.7,9.4,126.52,920,9.4 +2013,2,18,5,30,0,0,0,7.5,9.3,113.91,920,9.3 +2013,2,18,6,30,0,0,0,6.800000000000001,8.8,101.25,921,8.8 +2013,2,18,7,30,18,14,161,6.4,9.200000000000001,88.47,922,7.9 +2013,2,18,8,30,213,50,709,6.1000000000000005,11.5,76.71000000000001,923,5.6000000000000005 +2013,2,18,9,30,433,65,887,6.5,14,65.53,923,0.1 +2013,2,18,10,30,619,74,968,6.9,15.4,55.71,924,-4.800000000000001 +2013,2,18,11,30,752,77,1011,6.9,16.1,48.15,925,-5.4 +2013,2,18,12,30,817,78,1030,6.7,16.6,44.09,925,-4.800000000000001 +2013,2,18,13,30,812,77,1031,6.6000000000000005,16.8,44.49,925,-4.2 +2013,2,18,14,30,729,73,1006,6.4,16.5,49.25,926,-4 +2013,2,18,15,30,588,66,966,6,15.9,57.29,926,-4.1000000000000005 +2013,2,18,16,30,396,58,881,5.2,14.5,67.4,927,-4.3 +2013,2,18,17,30,176,41,691,4.5,13.5,78.74,927,-4.2 +2013,2,18,18,30,0,0,0,2.9000000000000004,9.200000000000001,90.92,929,-3.2 +2013,2,18,19,30,0,0,0,3.2,8,103.43,930,-3.5 +2013,2,18,20,30,0,0,0,3.2,6.800000000000001,116.08,931,-4.1000000000000005 +2013,2,18,21,30,0,0,0,3,5.9,128.63,932,-4.7 +2013,2,18,22,30,0,0,0,2.7,5,140.67000000000002,932,-5.2 +2013,2,18,23,30,0,0,0,2.4000000000000004,4.3,151.29,932,-5.6000000000000005 +2013,2,19,0,30,0,0,0,2.2,4,158.13,932,-5.800000000000001 +2013,2,19,1,30,0,0,0,2,3.7,157.33,932,-5.800000000000001 +2013,2,19,2,30,0,0,0,1.7000000000000002,3.3000000000000003,149.51,932,-5.6000000000000005 +2013,2,19,3,30,0,0,0,1.5,2.7,138.5,932,-5.300000000000001 +2013,2,19,4,30,0,0,0,1.4000000000000001,2.1,126.31,932,-5.2 +2013,2,19,5,30,0,0,0,1.3,1.8,113.71000000000001,933,-5.2 +2013,2,19,6,30,0,0,0,1.4000000000000001,2.2,101.05,934,-4.9 +2013,2,19,7,30,7,7,0,2.1,3.7,88.26,935,-4.6000000000000005 +2013,2,19,8,30,217,46,730,3.4000000000000004,6.4,76.47,935,-4.800000000000001 +2013,2,19,9,30,295,169,302,4.5,9.3,65.27,936,-5.2 +2013,2,19,10,30,507,170,594,4.9,11.200000000000001,55.410000000000004,935,-6 +2013,2,19,11,30,744,78,991,5.1000000000000005,12.4,47.82,935,-6.300000000000001 +2013,2,19,12,30,807,86,998,5.4,13.200000000000001,43.730000000000004,933,-6.4 +2013,2,19,13,30,654,259,550,5.7,13.600000000000001,44.14,932,-6.4 +2013,2,19,14,30,549,276,415,5.9,13.9,48.95,931,-6.2 +2013,2,19,15,30,337,253,155,5.9,13.700000000000001,57.03,930,-6 +2013,2,19,16,30,182,160,58,5.2,12.700000000000001,67.18,930,-5.7 +2013,2,19,17,30,57,57,0,4.7,11.9,78.55,930,-5.1000000000000005 +2013,2,19,18,30,0,0,0,3.1,9.4,90.19,930,-4 +2013,2,19,19,30,0,0,0,2.8000000000000003,8.5,103.26,931,-2.7 +2013,2,19,20,30,0,0,0,3.7,7.800000000000001,115.92,932,-1.7000000000000002 +2013,2,19,21,30,0,0,0,4.5,7.2,128.46,931,-1.1 +2013,2,19,22,30,0,0,0,4.6000000000000005,6.7,140.47,931,-0.30000000000000004 +2013,2,19,23,30,0,0,0,4.5,6.4,151.03,930,0.2 +2013,2,20,0,30,0,0,0,4.5,6.2,157.78,929,0.6000000000000001 +2013,2,20,1,30,0,0,0,4.6000000000000005,6.2,156.99,928,1 +2013,2,20,2,30,0,0,0,4.800000000000001,6.300000000000001,149.22,928,1.7000000000000002 +2013,2,20,3,30,0,0,0,4.4,6.1000000000000005,138.26,928,2.6 +2013,2,20,4,30,0,0,0,4,5.9,126.10000000000001,927,3.6 +2013,2,20,5,30,0,0,0,4.4,5.9,113.5,927,4.2 +2013,2,20,6,30,0,0,0,4.9,6,100.84,926,4.3 +2013,2,20,7,30,20,16,113,5,6.4,88.07000000000001,926,4.5 +2013,2,20,8,30,59,59,0,5.1000000000000005,7.1000000000000005,76.24,926,4.800000000000001 +2013,2,20,9,30,69,69,0,5.300000000000001,7.800000000000001,65,925,5.2 +2013,2,20,10,30,124,124,0,5.5,8.6,55.11,925,5.800000000000001 +2013,2,20,11,30,295,274,31,5.7,9.600000000000001,47.480000000000004,923,6.5 +2013,2,20,12,30,302,284,26,5.7,10.600000000000001,43.37,922,7.300000000000001 +2013,2,20,13,30,262,250,16,5.7,11.600000000000001,43.800000000000004,920,8.200000000000001 +2013,2,20,14,30,104,104,0,5.6000000000000005,12.4,48.64,919,9.1 +2013,2,20,15,30,115,115,0,5.4,12.8,56.76,918,9.8 +2013,2,20,16,30,35,35,0,5.2,12.3,66.96000000000001,918,10.200000000000001 +2013,2,20,17,30,6,6,0,5.1000000000000005,11.8,78.36,918,10.3 +2013,2,20,18,30,0,0,0,5.6000000000000005,9.9,90.05,918,9.9 +2013,2,20,19,30,0,0,0,5.9,9.3,103.10000000000001,918,9.3 +2013,2,20,20,30,0,0,0,6,9,115.76,917,9 +2013,2,20,21,30,0,0,0,5.9,9.1,128.28,916,9.1 +2013,2,20,22,30,0,0,0,5.800000000000001,9.700000000000001,140.26,916,9.700000000000001 +2013,2,20,23,30,0,0,0,5.800000000000001,10.700000000000001,150.77,915,10.700000000000001 +2013,2,21,0,30,0,0,0,6.1000000000000005,12,157.44,914,12 +2013,2,21,1,30,0,0,0,6.4,12.700000000000001,156.64000000000001,913,12.700000000000001 +2013,2,21,2,30,0,0,0,6.300000000000001,12.100000000000001,148.93,913,12.100000000000001 +2013,2,21,3,30,0,0,0,6,10.3,138.02,914,10.3 +2013,2,21,4,30,0,0,0,5.800000000000001,8.200000000000001,125.88000000000001,915,8.200000000000001 +2013,2,21,5,30,0,0,0,5.7,6.5,113.29,916,4.4 +2013,2,21,6,30,0,0,0,5.7,5.5,100.63,917,1.3 +2013,2,21,7,30,28,15,347,6.2,6.2,87.86,918,-0.9 +2013,2,21,8,30,236,43,796,7.5,8.4,76,918,-2.1 +2013,2,21,9,30,453,59,923,8.700000000000001,10.5,64.73,918,-4.5 +2013,2,21,10,30,634,72,976,9.3,12.200000000000001,54.800000000000004,918,-6.4 +2013,2,21,11,30,759,82,995,9.600000000000001,13.600000000000001,47.14,918,-6.2 +2013,2,21,12,30,823,88,1006,9.5,14.8,43.01,918,-4.9 +2013,2,21,13,30,817,87,1005,9.1,15.8,43.45,918,-4.2 +2013,2,21,14,30,739,83,988,8.4,16.5,48.33,918,-4.1000000000000005 +2013,2,21,15,30,598,74,950,7.4,16.5,56.5,918,-4.4 +2013,2,21,16,30,408,62,876,5.4,15.200000000000001,66.74,919,-4.9 +2013,2,21,17,30,186,44,692,4,14.100000000000001,78.17,919,-3.9000000000000004 +2013,2,21,18,30,0,0,0,2.1,8.200000000000001,89.9,921,-1.6 +2013,2,21,19,30,0,0,0,2.6,6.7,102.94,923,-1.4000000000000001 +2013,2,21,20,30,0,0,0,3.4000000000000004,5.1000000000000005,115.60000000000001,924,-1.4000000000000001 +2013,2,21,21,30,0,0,0,3.8000000000000003,3,128.11,925,-1.4000000000000001 +2013,2,21,22,30,0,0,0,3.8000000000000003,1.1,140.06,926,-1.8 +2013,2,21,23,30,0,0,0,4,-0.30000000000000004,150.5,926,-2.6 +2013,2,22,0,30,0,0,0,4.2,-1.5,157.09,926,-3.9000000000000004 +2013,2,22,1,30,0,0,0,4.4,-2.5,156.28,926,-5.300000000000001 +2013,2,22,2,30,0,0,0,3.9000000000000004,-3.3000000000000003,148.64000000000001,927,-6.5 +2013,2,22,3,30,0,0,0,3.2,-3.7,137.77,928,-7.2 +2013,2,22,4,30,0,0,0,2.7,-4.1000000000000005,125.66,929,-7.7 +2013,2,22,5,30,0,0,0,2.4000000000000004,-4.5,113.08,929,-8 +2013,2,22,6,30,0,0,0,2.5,-4.6000000000000005,100.41,930,-8.3 +2013,2,22,7,30,11,11,0,3.2,-3.4000000000000004,87.63,930,-8.6 +2013,2,22,8,30,200,55,589,3.7,-1.3,75.75,930,-9.700000000000001 +2013,2,22,9,30,374,113,605,3.4000000000000004,1.2000000000000002,64.46000000000001,930,-9.8 +2013,2,22,10,30,636,73,969,3,3.7,54.5,930,-9.3 +2013,2,22,11,30,767,78,1007,2.4000000000000004,6,46.79,929,-8.4 +2013,2,22,12,30,832,80,1023,1.9000000000000001,8.1,42.64,928,-7.2 +2013,2,22,13,30,821,80,1013,2,9.700000000000001,43.09,927,-6.300000000000001 +2013,2,22,14,30,742,80,990,2.4000000000000004,10.8,48.02,927,-5.7 +2013,2,22,15,30,601,72,952,2.6,11.100000000000001,56.24,927,-5.5 +2013,2,22,16,30,407,62,865,2.3000000000000003,10.200000000000001,66.52,928,-5.300000000000001 +2013,2,22,17,30,186,45,678,1.9000000000000001,9.3,77.98,928,-4.2 +2013,2,22,18,30,0,0,0,2.3000000000000003,4.4,89.75,928,-3.6 +2013,2,22,19,30,0,0,0,2.9000000000000004,3.2,102.78,928,-4.7 +2013,2,22,20,30,0,0,0,2.9000000000000004,1.9000000000000001,115.44,929,-5.1000000000000005 +2013,2,22,21,30,0,0,0,2.5,0.8,127.94,929,-5.300000000000001 +2013,2,22,22,30,0,0,0,2.1,-0.2,139.85,929,-5.4 +2013,2,22,23,30,0,0,0,1.7000000000000002,-1.1,150.23,929,-5.5 +2013,2,23,0,30,0,0,0,1.3,-1.8,156.74,929,-5.800000000000001 +2013,2,23,1,30,0,0,0,1.1,-2.4000000000000004,155.93,929,-6 +2013,2,23,2,30,0,0,0,1,-2.9000000000000004,148.34,928,-6.2 +2013,2,23,3,30,0,0,0,1,-3.2,137.52,927,-6.300000000000001 +2013,2,23,4,30,0,0,0,1.1,-3.5,125.43,927,-6.300000000000001 +2013,2,23,5,30,0,0,0,1.1,-3.8000000000000003,112.86,927,-6.1000000000000005 +2013,2,23,6,30,0,0,0,1.4000000000000001,-3.3000000000000003,100.19,928,-5.800000000000001 +2013,2,23,7,30,30,18,285,2.1,-1,87.42,928,-5.4 +2013,2,23,8,30,237,49,753,2.8000000000000003,2.9000000000000004,75.5,928,-5 +2013,2,23,9,30,464,61,923,3.2,7,64.18,928,-5.1000000000000005 +2013,2,23,10,30,651,69,995,3.7,10.4,54.18,927,-5.7 +2013,2,23,11,30,784,73,1031,4.2,12.9,46.45,926,-6.9 +2013,2,23,12,30,849,77,1043,4.3,14.600000000000001,42.27,926,-7.300000000000001 +2013,2,23,13,30,842,78,1040,4.2,15.600000000000001,42.74,925,-7.5 +2013,2,23,14,30,763,75,1022,3.9000000000000004,16.3,47.71,924,-7.9 +2013,2,23,15,30,619,69,983,3.3000000000000003,16.3,55.980000000000004,924,-8.5 +2013,2,23,16,30,422,59,904,2,14.9,66.3,923,-8.9 +2013,2,23,17,30,197,43,727,1,13.600000000000001,77.79,923,-2.5 +2013,2,23,18,30,0,0,0,1.4000000000000001,8.4,89.61,923,-5 +2013,2,23,19,30,0,0,0,1.8,6.5,102.62,923,-5.1000000000000005 +2013,2,23,20,30,0,0,0,2.3000000000000003,5.800000000000001,115.28,923,-5.9 +2013,2,23,21,30,0,0,0,3,5.6000000000000005,127.76,923,-6.7 +2013,2,23,22,30,0,0,0,3.6,5.2,139.64000000000001,923,-7.2 +2013,2,23,23,30,0,0,0,4,4.6000000000000005,149.96,922,-7.4 +2013,2,24,0,30,0,0,0,4.3,3.8000000000000003,156.39000000000001,922,-7.2 +2013,2,24,1,30,0,0,0,4.4,3,155.56,921,-6.9 +2013,2,24,2,30,0,0,0,4.3,2.3000000000000003,148.04,921,-6.4 +2013,2,24,3,30,0,0,0,4.1000000000000005,1.7000000000000002,137.26,921,-5.4 +2013,2,24,4,30,0,0,0,4.1000000000000005,1.3,125.2,920,-4.3 +2013,2,24,5,30,0,0,0,4.1000000000000005,1.1,112.64,920,-3.2 +2013,2,24,6,30,0,0,0,4.4,1.5,99.97,920,-2.1 +2013,2,24,7,30,32,19,280,4.9,3.6,87.21000000000001,920,-0.7000000000000001 +2013,2,24,8,30,234,52,715,5.7,7.5,75.25,920,0.7000000000000001 +2013,2,24,9,30,449,69,865,6.800000000000001,12.200000000000001,63.910000000000004,920,2.4000000000000004 +2013,2,24,10,30,633,80,937,7.4,16.3,53.870000000000005,919,3.8000000000000003 +2013,2,24,11,30,762,87,974,7.2,19.200000000000003,46.09,918,3.8000000000000003 +2013,2,24,12,30,827,88,992,6.800000000000001,21.200000000000003,41.9,917,3.2 +2013,2,24,13,30,819,90,987,6.300000000000001,22.3,42.39,916,2.4000000000000004 +2013,2,24,14,30,741,87,966,5.800000000000001,22.700000000000003,47.4,915,1.4000000000000001 +2013,2,24,15,30,602,80,927,5.4,22.400000000000002,55.72,914,0.30000000000000004 +2013,2,24,16,30,409,68,841,4.2,20.3,66.08,914,-0.1 +2013,2,24,17,30,189,49,653,3.4000000000000004,18.7,77.60000000000001,914,2.3000000000000003 +2013,2,24,18,30,0,0,0,4.2,14.200000000000001,89.48,913,3.4000000000000004 +2013,2,24,19,30,0,0,0,5.300000000000001,13.3,102.46000000000001,913,5 +2013,2,24,20,30,0,0,0,5.1000000000000005,12.200000000000001,115.12,913,6.7 +2013,2,24,21,30,0,0,0,4.5,11.5,127.59,913,7.800000000000001 +2013,2,24,22,30,0,0,0,4.5,11,139.43,914,8.4 +2013,2,24,23,30,0,0,0,4.800000000000001,10.200000000000001,149.69,914,8.200000000000001 +2013,2,25,0,30,0,0,0,4.7,8.9,156.04,914,6.300000000000001 +2013,2,25,1,30,0,0,0,4.7,7,155.20000000000002,914,3.1 +2013,2,25,2,30,0,0,0,5.1000000000000005,5.2,147.73,914,0.2 +2013,2,25,3,30,0,0,0,5,4,137,914,-0.8 +2013,2,25,4,30,0,0,0,4.6000000000000005,3.1,124.96000000000001,914,-1.1 +2013,2,25,5,30,0,0,0,4.4,2.5,112.41,914,-1.6 +2013,2,25,6,30,0,0,0,4.5,2.2,99.74000000000001,914,-2.3000000000000003 +2013,2,25,7,30,32,23,164,5.6000000000000005,3,86.98,915,-2.6 +2013,2,25,8,30,161,96,250,7.4,4.3,75,915,-2.2 +2013,2,25,9,30,264,197,151,8.6,4.800000000000001,63.620000000000005,915,-2.7 +2013,2,25,10,30,257,238,31,9.3,4.9,53.550000000000004,915,-3.6 +2013,2,25,11,30,167,164,4,10,5.1000000000000005,45.74,915,-4.1000000000000005 +2013,2,25,12,30,128,128,0,10.9,5.300000000000001,41.53,916,-4.2 +2013,2,25,13,30,208,202,9,11.5,5.1000000000000005,42.03,916,-4.3 +2013,2,25,14,30,214,207,10,11.8,4.6000000000000005,47.09,917,-4.2 +2013,2,25,15,30,227,214,22,11.5,4.2,55.46,918,-4 +2013,2,25,16,30,184,166,46,10.8,3.7,65.86,919,-3.8000000000000003 +2013,2,25,17,30,51,51,0,10.4,3.4000000000000004,77.41,920,-3.6 +2013,2,25,18,30,0,0,0,9,2.7,89.31,922,-3.5 +2013,2,25,19,30,0,0,0,8.4,2.6,102.3,923,-3.4000000000000004 +2013,2,25,20,30,0,0,0,7.800000000000001,2.4000000000000004,114.95,924,-3.5 +2013,2,25,21,30,0,0,0,6.9,1.9000000000000001,127.41,924,-3.7 +2013,2,25,22,30,0,0,0,6.1000000000000005,1.3,139.22,924,-4 +2013,2,25,23,30,0,0,0,5.5,0.6000000000000001,149.41,924,-4.2 +2013,2,26,0,30,0,0,0,4.9,-0.2,155.68,924,-4.5 +2013,2,26,1,30,0,0,0,4.7,-0.9,154.83,924,-4.9 +2013,2,26,2,30,0,0,0,4.5,-1.6,147.42000000000002,924,-5.300000000000001 +2013,2,26,3,30,0,0,0,4.2,-2.1,136.74,924,-5.7 +2013,2,26,4,30,0,0,0,3.8000000000000003,-2.7,124.72,924,-6.1000000000000005 +2013,2,26,5,30,0,0,0,3.4000000000000004,-3.3000000000000003,112.18,924,-6.4 +2013,2,26,6,30,0,0,0,3.5,-3.3000000000000003,99.51,924,-6.7 +2013,2,26,7,30,42,19,394,3.8000000000000003,-1.5,86.74,925,-6.800000000000001 +2013,2,26,8,30,254,47,785,4,1.8,74.74,925,-6.5 +2013,2,26,9,30,476,61,925,3.8000000000000003,5,63.34,925,-6.1000000000000005 +2013,2,26,10,30,662,69,992,3.4000000000000004,7.5,53.230000000000004,925,-6.1000000000000005 +2013,2,26,11,30,794,73,1026,3.1,9.700000000000001,45.38,925,-6.4 +2013,2,26,12,30,858,76,1040,3,11.5,41.15,924,-6.5 +2013,2,26,13,30,851,75,1039,3.1,13.100000000000001,41.67,923,-6.7 +2013,2,26,14,30,771,70,1023,3.1,14.200000000000001,46.78,922,-7.2 +2013,2,26,15,30,632,66,993,2.7,14.600000000000001,55.21,922,-7.7 +2013,2,26,16,30,435,57,918,1.6,13.9,65.65,921,-7.9 +2013,2,26,17,30,208,42,752,0.8,13,77.23,921,-2.3000000000000003 +2013,2,26,18,30,0,0,0,1.2000000000000002,8.5,89.17,921,-5.2 +2013,2,26,19,30,0,0,0,1.6,6.2,102.14,921,-5 +2013,2,26,20,30,0,0,0,1.9000000000000001,5,114.79,921,-5.2 +2013,2,26,21,30,0,0,0,2.3000000000000003,4.4,127.23,921,-5.6000000000000005 +2013,2,26,22,30,0,0,0,2.1,3.7,139.01,921,-5.7 +2013,2,26,23,30,0,0,0,1.2000000000000002,2.6,149.13,922,-5.6000000000000005 +2013,2,27,0,30,0,0,0,1.5,1.8,155.33,922,-5.5 +2013,2,27,1,30,0,0,0,3.1,0.9,154.46,923,-5.300000000000001 +2013,2,27,2,30,0,0,0,4.2,-0.30000000000000004,147.1,925,-4.6000000000000005 +2013,2,27,3,30,0,0,0,4.7,-1.3,136.47,926,-4.1000000000000005 +2013,2,27,4,30,0,0,0,4.6000000000000005,-2,124.48,928,-3.9000000000000004 +2013,2,27,5,30,0,0,0,4.1000000000000005,-2.5,111.95,929,-4.1000000000000005 +2013,2,27,6,30,0,0,0,3.9000000000000004,-2.3000000000000003,99.27,931,-4.7 +2013,2,27,7,30,44,21,380,4.4,-0.30000000000000004,86.51,931,-5.4 +2013,2,27,8,30,258,50,778,5.7,3.2,74.48,932,-5.4 +2013,2,27,9,30,480,65,915,6.6000000000000005,6.2,63.050000000000004,933,-4.6000000000000005 +2013,2,27,10,30,672,74,993,6.7,8.3,52.910000000000004,933,-4.800000000000001 +2013,2,27,11,30,805,78,1029,6.800000000000001,9.9,45.02,933,-6.4 +2013,2,27,12,30,870,78,1045,6.800000000000001,11,40.77,933,-8.6 +2013,2,27,13,30,862,77,1046,6.7,11.700000000000001,41.31,933,-10.200000000000001 +2013,2,27,14,30,782,73,1029,6.5,11.9,46.47,933,-10.5 +2013,2,27,15,30,637,69,989,6.2,11.3,54.95,933,-10.100000000000001 +2013,2,27,16,30,439,60,912,5.5,10,65.43,933,-9.3 +2013,2,27,17,30,209,45,732,5,9.1,77.05,933,-8.3 +2013,2,27,18,30,0,0,0,2.4000000000000004,4.3,89.01,934,-6.2 +2013,2,27,19,30,0,0,0,2.1,2.8000000000000003,101.98,935,-5.300000000000001 +2013,2,27,20,30,0,0,0,1.9000000000000001,1.8,114.63,936,-4.9 +2013,2,27,21,30,0,0,0,1.6,0.9,127.06,936,-4.6000000000000005 +2013,2,27,22,30,0,0,0,1.4000000000000001,0.1,138.79,936,-4.5 +2013,2,27,23,30,0,0,0,1.3,-0.5,148.85,936,-4.5 +2013,2,28,0,30,0,0,0,1.3,-1.2000000000000002,154.96,936,-4.5 +2013,2,28,1,30,0,0,0,1.4000000000000001,-1.7000000000000002,154.09,936,-4.6000000000000005 +2013,2,28,2,30,0,0,0,1.6,-2.2,146.78,936,-4.6000000000000005 +2013,2,28,3,30,0,0,0,1.7000000000000002,-2.7,136.19,936,-4.800000000000001 +2013,2,28,4,30,0,0,0,1.9000000000000001,-3.1,124.23,936,-5 +2013,2,28,5,30,0,0,0,1.9000000000000001,-3.6,111.71000000000001,937,-5.4 +2013,2,28,6,30,0,0,0,2.2,-3.2,99.04,937,-6 +2013,2,28,7,30,47,21,400,2.8000000000000003,-1,86.27,937,-6.4 +2013,2,28,8,30,263,49,785,3.2,3,74.22,937,-6.5 +2013,2,28,9,30,485,63,923,3.6,7.1000000000000005,62.76,938,-7.300000000000001 +2013,2,28,10,30,672,72,988,3.8000000000000003,9.8,52.59,937,-8.4 +2013,2,28,11,30,803,78,1019,3.7,11.5,44.660000000000004,937,-8.700000000000001 +2013,2,28,12,30,867,83,1029,3.7,12.700000000000001,40.39,936,-8.9 +2013,2,28,13,30,858,83,1026,3.7,13.3,40.95,935,-9 +2013,2,28,14,30,777,82,1004,3.8000000000000003,13.5,46.160000000000004,935,-9.1 +2013,2,28,15,30,632,77,959,3.8000000000000003,13.100000000000001,54.69,934,-9.3 +2013,2,28,16,30,435,67,877,3,11.8,65.22,934,-9.3 +2013,2,28,17,30,208,49,700,2.2,10.8,76.86,934,-6.7 +2013,2,28,18,30,15,12,159,1.2000000000000002,6.2,88.86,935,-4.9 +2013,2,28,19,30,0,0,0,1.2000000000000002,5.4,101.83,935,-5.800000000000001 +2013,2,28,20,30,0,0,0,1.2000000000000002,4.7,114.47,935,-6.4 +2013,2,28,21,30,0,0,0,1.2000000000000002,4,126.88000000000001,935,-6.800000000000001 +2013,2,28,22,30,0,0,0,1.1,3.2,138.58,935,-7 +2013,2,28,23,30,0,0,0,1.1,2.6,148.57,935,-7.300000000000001 +2013,3,1,0,30,0,0,0,1,2.2,154.6,935,-7.5 +2013,3,1,1,30,0,0,0,0.9,1.8,153.71,934,-7.800000000000001 +2013,3,1,2,30,0,0,0,0.8,1.4000000000000001,146.46,934,-7.9 +2013,3,1,3,30,0,0,0,0.9,0.9,135.91,934,-7.7 +2013,3,1,4,30,0,0,0,1,0.30000000000000004,123.98,934,-7.300000000000001 +2013,3,1,5,30,0,0,0,1,0,111.47,934,-7.1000000000000005 +2013,3,1,6,30,0,0,0,0.7000000000000001,0.4,98.8,934,-7 +2013,3,1,7,30,23,23,0,0.5,2.2,86.03,935,-5.9 +2013,3,1,8,30,263,52,766,0.8,5.6000000000000005,73.95,935,-6.5 +2013,3,1,9,30,485,65,909,1.1,9.3,62.47,935,-7.6000000000000005 +2013,3,1,10,30,676,73,985,1.8,12.100000000000001,52.26,935,-7.9 +2013,3,1,11,30,807,78,1018,3.3000000000000003,13.700000000000001,44.300000000000004,935,-7.9 +2013,3,1,12,30,865,81,1024,5.1000000000000005,14.4,40.01,935,-7.800000000000001 +2013,3,1,13,30,857,82,1021,6.300000000000001,14.4,40.59,934,-7.7 +2013,3,1,14,30,777,78,1004,6.9,13.8,45.85,934,-7.7 +2013,3,1,15,30,436,256,310,7.1000000000000005,12.8,54.44,935,-8 +2013,3,1,16,30,440,61,896,6.6000000000000005,11.4,65.01,935,-8.200000000000001 +2013,3,1,17,30,214,45,734,6.2,10.5,76.68,935,-7.800000000000001 +2013,3,1,18,30,17,12,203,3.2,6,88.72,936,-6.5 +2013,3,1,19,30,0,0,0,2.4000000000000004,4.1000000000000005,101.67,937,-5.5 +2013,3,1,20,30,0,0,0,1.9000000000000001,2.7,114.31,937,-4.9 +2013,3,1,21,30,0,0,0,1.5,1.6,126.7,937,-4.6000000000000005 +2013,3,1,22,30,0,0,0,1.3,0.8,138.36,938,-4.5 +2013,3,1,23,30,0,0,0,1.3,0.2,148.29,938,-4.5 +2013,3,2,0,30,0,0,0,1.3,-0.30000000000000004,154.24,938,-4.6000000000000005 +2013,3,2,1,30,0,0,0,1.4000000000000001,-0.8,153.34,939,-4.6000000000000005 +2013,3,2,2,30,0,0,0,1.5,-1.2000000000000002,146.13,939,-4.6000000000000005 +2013,3,2,3,30,0,0,0,1.5,-1.6,135.63,939,-4.7 +2013,3,2,4,30,0,0,0,1.6,-2.1,123.72,939,-4.7 +2013,3,2,5,30,0,0,0,1.5,-2.6,111.23,939,-4.7 +2013,3,2,6,30,0,0,0,1.7000000000000002,-2.1,98.55,940,-4.7 +2013,3,2,7,30,51,24,372,2.2,0.30000000000000004,85.79,940,-4.7 +2013,3,2,8,30,263,52,750,2.6,4.1000000000000005,73.68,941,-4.4 +2013,3,2,9,30,482,66,891,2.7,7.800000000000001,62.17,941,-5.2 +2013,3,2,10,30,666,75,958,3.1,10.8,51.93,940,-5.4 +2013,3,2,11,30,795,79,994,3.6,13.4,43.93,939,-5 +2013,3,2,12,30,858,84,1004,4,15.4,39.62,938,-3.9000000000000004 +2013,3,2,13,30,849,84,1003,4.2,16.7,40.230000000000004,937,-2.9000000000000004 +2013,3,2,14,30,770,80,985,4.1000000000000005,17.5,45.54,936,-2.2 +2013,3,2,15,30,627,72,949,3.8000000000000003,17.6,54.19,935,-1.9000000000000001 +2013,3,2,16,30,434,62,873,2.5,16.5,64.8,934,-1.8 +2013,3,2,17,30,211,46,706,1.5,15.5,76.5,934,1.6 +2013,3,2,18,30,17,12,204,0.9,12,88.57000000000001,934,0.1 +2013,3,2,19,30,0,0,0,1.1,10.5,101.51,934,-0.8 +2013,3,2,20,30,0,0,0,1.3,8.5,114.15,934,-1 +2013,3,2,21,30,0,0,0,1.5,6.9,126.52,934,-1.2000000000000002 +2013,3,2,22,30,0,0,0,1.7000000000000002,6.1000000000000005,138.14000000000001,934,-1.5 +2013,3,2,23,30,0,0,0,2.1,5.7,148,934,-1.9000000000000001 +2013,3,3,0,30,0,0,0,2.6,5.5,153.87,933,-2.3000000000000003 +2013,3,3,1,30,0,0,0,3.1,5.4,152.96,933,-2.6 +2013,3,3,2,30,0,0,0,3.6,5.1000000000000005,145.8,932,-3 +2013,3,3,3,30,0,0,0,3.9000000000000004,4.7,135.34,932,-3.2 +2013,3,3,4,30,0,0,0,4,4.2,123.46000000000001,932,-3.4000000000000004 +2013,3,3,5,30,0,0,0,4.3,3.8000000000000003,110.98,931,-3.7 +2013,3,3,6,30,0,0,0,4.7,4,98.31,931,-4.2 +2013,3,3,7,30,56,24,414,4.9,5.7,85.55,931,-4.800000000000001 +2013,3,3,8,30,274,51,779,5.1000000000000005,9.5,73.41,930,-5 +2013,3,3,9,30,495,65,913,6.300000000000001,14.100000000000001,61.88,930,-4.800000000000001 +2013,3,3,10,30,555,199,573,7.4,18.3,51.6,928,-5.800000000000001 +2013,3,3,11,30,809,105,971,7.5,21.400000000000002,43.56,927,-6.2 +2013,3,3,12,30,873,80,1024,7.5,23.6,39.24,926,-6.1000000000000005 +2013,3,3,13,30,869,81,1027,7.5,24.8,39.86,924,-5.9 +2013,3,3,14,30,788,80,1005,7.4,25.3,45.24,923,-5.800000000000001 +2013,3,3,15,30,642,75,963,6.800000000000001,25.200000000000003,53.93,922,-5.800000000000001 +2013,3,3,16,30,445,65,885,5.5,23.6,64.59,921,-5.5 +2013,3,3,17,30,180,62,502,4.5,22.200000000000003,76.32000000000001,921,-3.5 +2013,3,3,18,30,10,10,0,5,17.6,88.44,920,-3.1 +2013,3,3,19,30,0,0,0,6.300000000000001,17.2,101.35000000000001,920,-4.1000000000000005 +2013,3,3,20,30,0,0,0,6.9,16.400000000000002,113.99000000000001,920,-4.4 +2013,3,3,21,30,0,0,0,6.5,14.8,126.34,920,-4.6000000000000005 +2013,3,3,22,30,0,0,0,5.9,13.100000000000001,137.92000000000002,919,-4.6000000000000005 +2013,3,3,23,30,0,0,0,5.7,11.700000000000001,147.71,919,-4.7 +2013,3,4,0,30,0,0,0,5.4,10.5,153.51,919,-4.7 +2013,3,4,1,30,0,0,0,5.1000000000000005,9.4,152.57,919,-4.6000000000000005 +2013,3,4,2,30,0,0,0,4.800000000000001,8.700000000000001,145.46,919,-4.6000000000000005 +2013,3,4,3,30,0,0,0,4.5,8.3,135.05,919,-4.5 +2013,3,4,4,30,0,0,0,4.2,8.3,123.2,919,-4.3 +2013,3,4,5,30,0,0,0,4.1000000000000005,8.700000000000001,110.73,919,-4.1000000000000005 +2013,3,4,6,30,0,0,0,4.3,9.4,98.06,920,-3.9000000000000004 +2013,3,4,7,30,39,28,133,4.7,11.3,85.3,920,-3.7 +2013,3,4,8,30,179,112,231,4.9,14.3,73.14,920,-3.4000000000000004 +2013,3,4,9,30,379,175,429,4.800000000000001,17.900000000000002,61.58,920,-2.5 +2013,3,4,10,30,460,290,272,5.300000000000001,22.200000000000003,51.26,920,-1.9000000000000001 +2013,3,4,11,30,549,356,265,5.7,25.6,43.19,919,-2.5 +2013,3,4,12,30,737,288,576,5.5,26.8,38.85,918,-2.1 +2013,3,4,13,30,845,81,989,5.2,27.1,39.5,917,-1.2000000000000002 +2013,3,4,14,30,413,343,98,5,27,44.93,917,-0.5 +2013,3,4,15,30,421,274,247,4.7,26.3,53.68,916,-0.30000000000000004 +2013,3,4,16,30,342,151,441,4.2,24.3,64.38,916,0.1 +2013,3,4,17,30,119,94,105,4,23,76.15,916,0 +2013,3,4,18,30,19,14,169,4.7,18.6,88.29,917,-2.8000000000000003 +2013,3,4,19,30,0,0,0,5,17.400000000000002,101.2,917,-5.4 +2013,3,4,20,30,0,0,0,4.6000000000000005,16.3,113.82000000000001,918,-5.4 +2013,3,4,21,30,0,0,0,3.9000000000000004,15.100000000000001,126.15,919,-3.5 +2013,3,4,22,30,0,0,0,5.4,13.9,137.70000000000002,921,-0.9 +2013,3,4,23,30,0,0,0,8.700000000000001,11.700000000000001,147.42000000000002,925,1.4000000000000001 +2013,3,5,0,30,0,0,0,10.3,8.4,153.14000000000001,928,0.9 +2013,3,5,1,30,0,0,0,9.9,5.800000000000001,152.19,930,-1.2000000000000002 +2013,3,5,2,30,0,0,0,8.9,4.3,145.12,932,-2 +2013,3,5,3,30,0,0,0,7.7,3.6,134.76,934,-2.3000000000000003 +2013,3,5,4,30,0,0,0,6.7,3.1,122.93,935,-2.7 +2013,3,5,5,30,0,0,0,6,2.5,110.47,936,-3.3000000000000003 +2013,3,5,6,30,0,0,0,5.7,2.4000000000000004,97.81,937,-3.8000000000000003 +2013,3,5,7,30,65,27,451,6.300000000000001,3.4000000000000004,85.04,938,-4.6000000000000005 +2013,3,5,8,30,294,53,818,7.2,5.300000000000001,72.87,939,-7.6000000000000005 +2013,3,5,9,30,522,66,948,7.4,7,61.28,940,-11.3 +2013,3,5,10,30,721,74,1027,7.1000000000000005,8.6,50.93,940,-13.3 +2013,3,5,11,30,855,78,1059,6.6000000000000005,10.200000000000001,42.82,939,-13.9 +2013,3,5,12,30,920,79,1073,6.1000000000000005,11.5,38.45,939,-14 +2013,3,5,13,30,910,78,1073,5.5,12.5,39.13,938,-14 +2013,3,5,14,30,827,75,1056,4.9,12.9,44.62,938,-14 +2013,3,5,15,30,677,69,1021,4.4,12.600000000000001,53.43,938,-13.9 +2013,3,5,16,30,474,60,950,3.5,11.600000000000001,64.17,938,-13.8 +2013,3,5,17,30,239,46,797,3,10.8,75.97,938,-12.9 +2013,3,5,18,30,25,15,307,1.3,5.1000000000000005,88.12,938,-7.5 +2013,3,5,19,30,0,0,0,1.3,3.8000000000000003,101.04,939,-8 +2013,3,5,20,30,0,0,0,1.3,2.9000000000000004,113.66,939,-8.6 +2013,3,5,21,30,0,0,0,1.3,2.2,125.97,939,-9 +2013,3,5,22,30,0,0,0,1.2000000000000002,1.9000000000000001,137.47,939,-9.4 +2013,3,5,23,30,0,0,0,1.2000000000000002,1.6,147.13,939,-9.9 +2013,3,6,0,30,0,0,0,1.2000000000000002,1.1,152.77,939,-10.5 +2013,3,6,1,30,0,0,0,1.2000000000000002,0.5,151.8,938,-10.9 +2013,3,6,2,30,0,0,0,1.1,0.30000000000000004,144.78,938,-11.200000000000001 +2013,3,6,3,30,0,0,0,1,0.1,134.46,938,-11.600000000000001 +2013,3,6,4,30,0,0,0,1.1,-0.7000000000000001,122.66,938,-11.700000000000001 +2013,3,6,5,30,0,0,0,1.2000000000000002,-1.2000000000000002,110.22,939,-11.3 +2013,3,6,6,30,0,0,0,1.3,-0.5,97.55,939,-10.600000000000001 +2013,3,6,7,30,41,32,100,1.8,1.5,84.79,940,-9.200000000000001 +2013,3,6,8,30,226,89,457,2.8000000000000003,3.7,72.59,940,-10.700000000000001 +2013,3,6,9,30,518,76,912,3.5,5.9,60.980000000000004,940,-10.600000000000001 +2013,3,6,10,30,694,89,953,3.9000000000000004,7.6000000000000005,50.59,939,-11.100000000000001 +2013,3,6,11,30,615,329,388,4,9,42.45,938,-11.100000000000001 +2013,3,6,12,30,683,326,453,4,10.5,38.06,937,-10.9 +2013,3,6,13,30,464,385,101,3.9000000000000004,11.8,38.77,936,-10.8 +2013,3,6,14,30,553,338,300,4,12.9,44.31,935,-10.700000000000001 +2013,3,6,15,30,601,101,835,4.2,13.700000000000001,53.18,934,-10.5 +2013,3,6,16,30,433,80,805,3.9000000000000004,13.4,63.97,933,-10.3 +2013,3,6,17,30,213,58,633,3.4000000000000004,12.8,75.79,933,-8.9 +2013,3,6,18,30,15,15,0,2.7,8,87.97,933,-6.5 +2013,3,6,19,30,0,0,0,3.3000000000000003,7.2,100.89,933,-7.2 +2013,3,6,20,30,0,0,0,3.6,6.5,113.5,932,-7.4 +2013,3,6,21,30,0,0,0,3.8000000000000003,5.800000000000001,125.79,932,-7.2 +2013,3,6,22,30,0,0,0,3.8000000000000003,5.1000000000000005,137.25,932,-7.1000000000000005 +2013,3,6,23,30,0,0,0,3.8000000000000003,4.6000000000000005,146.84,931,-7 +2013,3,7,0,30,0,0,0,3.7,4.3,152.39000000000001,931,-7 +2013,3,7,1,30,0,0,0,3.6,3.9000000000000004,151.41,930,-7 +2013,3,7,2,30,0,0,0,3.3000000000000003,3.4000000000000004,144.44,930,-7 +2013,3,7,3,30,0,0,0,2.8000000000000003,2.8000000000000003,134.16,930,-6.9 +2013,3,7,4,30,0,0,0,2.4000000000000004,2.2,122.39,930,-6.800000000000001 +2013,3,7,5,30,0,0,0,2.4000000000000004,2,109.96000000000001,930,-6.800000000000001 +2013,3,7,6,30,0,0,0,3,2.9000000000000004,97.3,931,-6.800000000000001 +2013,3,7,7,30,66,31,366,4.1000000000000005,5.5,84.53,931,-6.9 +2013,3,7,8,30,209,107,336,5,9.3,72.32000000000001,931,-6.2 +2013,3,7,9,30,376,191,379,5.800000000000001,13,60.68,931,-3.6 +2013,3,7,10,30,673,103,890,6,16,50.25,931,-1.6 +2013,3,7,11,30,798,114,921,5.9,18.400000000000002,42.07,930,-0.8 +2013,3,7,12,30,865,102,964,5.800000000000001,20.5,37.67,929,0.1 +2013,3,7,13,30,734,294,562,5.800000000000001,22,38.4,928,0.9 +2013,3,7,14,30,766,110,912,5.800000000000001,22.6,44.01,928,1.4000000000000001 +2013,3,7,15,30,618,112,839,5.9,22.1,52.94,928,1.7000000000000002 +2013,3,7,16,30,332,168,372,5.4,20.5,63.77,928,2.1 +2013,3,7,17,30,202,75,509,4.9,19.5,75.62,928,2.7 +2013,3,7,18,30,15,15,0,3.6,14.8,87.83,928,3.5 +2013,3,7,19,30,0,0,0,3.9000000000000004,13.3,100.73,929,3.8000000000000003 +2013,3,7,20,30,0,0,0,4.1000000000000005,12.3,113.34,929,4.1000000000000005 +2013,3,7,21,30,0,0,0,4.2,11.700000000000001,125.60000000000001,929,4.6000000000000005 +2013,3,7,22,30,0,0,0,4.3,11.3,137.02,929,5.300000000000001 +2013,3,7,23,30,0,0,0,4,10.8,146.54,929,6.1000000000000005 +2013,3,8,0,30,0,0,0,3.7,10,152.02,928,7 +2013,3,8,1,30,0,0,0,3.7,9.700000000000001,151.02,928,8 +2013,3,8,2,30,0,0,0,4.1000000000000005,10.200000000000001,144.09,928,9 +2013,3,8,3,30,0,0,0,4.800000000000001,11,133.86,928,10.100000000000001 +2013,3,8,4,30,0,0,0,4.800000000000001,11.600000000000001,122.11,928,11.200000000000001 +2013,3,8,5,30,0,0,0,4.2,11.9,109.7,928,11.8 +2013,3,8,6,30,0,0,0,4.1000000000000005,12.3,97.04,929,12.3 +2013,3,8,7,30,9,9,0,4.3,13.200000000000001,84.28,929,12.700000000000001 +2013,3,8,8,30,14,14,0,4.5,14.700000000000001,72.04,929,13 +2013,3,8,9,30,42,42,0,5,16.7,60.370000000000005,929,13.3 +2013,3,8,10,30,297,271,41,5.5,18.400000000000002,49.92,929,13.100000000000001 +2013,3,8,11,30,277,263,18,5.9,19.200000000000003,41.69,928,12.600000000000001 +2013,3,8,12,30,419,371,60,6.1000000000000005,19.700000000000003,37.27,927,12.200000000000001 +2013,3,8,13,30,362,334,36,6.4,20.700000000000003,38.04,926,12 +2013,3,8,14,30,348,315,45,6.7,21.700000000000003,43.7,925,11.8 +2013,3,8,15,30,135,135,0,6.9,22,52.69,925,11.4 +2013,3,8,16,30,330,173,351,6.7,21.3,63.56,925,11.3 +2013,3,8,17,30,204,72,523,6.5,20.6,75.44,925,11.600000000000001 +2013,3,8,18,30,21,18,88,5.9,17.6,87.68,925,12.200000000000001 +2013,3,8,19,30,0,0,0,6,16.2,100.58,925,13 +2013,3,8,20,30,0,0,0,6,15.100000000000001,113.17,925,13.5 +2013,3,8,21,30,0,0,0,5.9,14.3,125.42,924,13.8 +2013,3,8,22,30,0,0,0,5.9,13.600000000000001,136.79,924,13.600000000000001 +2013,3,8,23,30,0,0,0,6.1000000000000005,13,146.24,923,13 +2013,3,9,0,30,0,0,0,6.300000000000001,12.700000000000001,151.64000000000001,923,12.700000000000001 +2013,3,9,1,30,0,0,0,6.4,12.600000000000001,150.63,922,12.600000000000001 +2013,3,9,2,30,0,0,0,6.5,12.700000000000001,143.74,922,12.600000000000001 +2013,3,9,3,30,0,0,0,6.5,12.9,133.55,921,12.700000000000001 +2013,3,9,4,30,0,0,0,6.7,13.100000000000001,121.83,921,12.9 +2013,3,9,5,30,0,0,0,6.5,13.200000000000001,109.43,921,13.100000000000001 +2013,3,9,6,30,0,0,0,6.300000000000001,13.4,96.78,921,13.200000000000001 +2013,3,9,7,30,71,33,372,6.6000000000000005,14.700000000000001,84.02,921,13.3 +2013,3,9,8,30,113,111,8,7.1000000000000005,17.3,71.76,921,13 +2013,3,9,9,30,399,185,429,6.9,19.900000000000002,60.07,921,11.4 +2013,3,9,10,30,511,287,345,6.4,21.8,49.58,921,8.8 +2013,3,9,11,30,475,376,131,6.1000000000000005,22.700000000000003,41.31,920,6.800000000000001 +2013,3,9,12,30,256,245,14,6,23.1,36.88,920,5.300000000000001 +2013,3,9,13,30,866,93,976,6.1000000000000005,23.200000000000003,37.67,919,4 +2013,3,9,14,30,400,344,77,6.2,22.8,43.4,918,2.8000000000000003 +2013,3,9,15,30,478,263,353,6.300000000000001,22.1,52.45,919,1.2000000000000002 +2013,3,9,16,30,454,67,863,5.9,20.700000000000003,63.36,919,-0.7000000000000001 +2013,3,9,17,30,229,50,704,5.4,19.900000000000002,75.27,919,-2.3000000000000003 +2013,3,9,18,30,27,17,240,2.5,14.9,87.53,920,-2 +2013,3,9,19,30,0,0,0,2.1,13.700000000000001,100.42,920,-1.8 +2013,3,9,20,30,0,0,0,2.5,13.200000000000001,113.01,920,-1.6 +2013,3,9,21,30,0,0,0,3.1,12.600000000000001,125.23,921,-1.4000000000000001 +2013,3,9,22,30,0,0,0,2.9000000000000004,11.4,136.56,922,-0.9 +2013,3,9,23,30,0,0,0,2.6,10.200000000000001,145.94,922,-0.2 +2013,3,10,0,30,0,0,0,2.7,9.3,151.27,922,-0.1 +2013,3,10,1,30,0,0,0,3.6,8.700000000000001,150.24,921,-0.7000000000000001 +2013,3,10,2,30,0,0,0,4.6000000000000005,7.9,143.38,922,-2.3000000000000003 +2013,3,10,3,30,0,0,0,5.4,6.6000000000000005,133.24,923,-2.7 +2013,3,10,4,30,0,0,0,6.4,5.2,121.55,925,-2.7 +2013,3,10,5,30,0,0,0,7.1000000000000005,4,109.17,926,-3.2 +2013,3,10,6,30,0,0,0,7.5,3.6,96.52,927,-3.6 +2013,3,10,7,30,81,33,443,8.1,4.7,83.75,928,-3.9000000000000004 +2013,3,10,8,30,307,59,780,8.700000000000001,6.300000000000001,71.47,928,-4.6000000000000005 +2013,3,10,9,30,534,70,921,8.700000000000001,7.800000000000001,59.76,928,-5.6000000000000005 +2013,3,10,10,30,720,76,986,8.4,9.200000000000001,49.230000000000004,928,-6.9 +2013,3,10,11,30,849,81,1017,7.9,10.5,40.93,928,-8 +2013,3,10,12,30,917,82,1039,7.4,11.700000000000001,36.480000000000004,928,-8.9 +2013,3,10,13,30,906,82,1036,7.1000000000000005,12.5,37.300000000000004,928,-9.9 +2013,3,10,14,30,823,80,1018,7,12.700000000000001,43.09,928,-10.8 +2013,3,10,15,30,675,73,981,7,12.4,52.2,928,-11.600000000000001 +2013,3,10,16,30,479,64,918,6.6000000000000005,11.4,63.160000000000004,928,-12.3 +2013,3,10,17,30,246,49,766,6.2,10.700000000000001,75.10000000000001,929,-12.5 +2013,3,10,18,30,32,18,319,3.1,6.7,87.37,930,-11.100000000000001 +2013,3,10,19,30,0,0,0,2.2,4.7,100.27,931,-9.200000000000001 +2013,3,10,20,30,0,0,0,1.9000000000000001,3.5,112.85000000000001,931,-8.4 +2013,3,10,21,30,0,0,0,1.8,2.7,125.04,932,-8.1 +2013,3,10,22,30,0,0,0,1.9000000000000001,1.9000000000000001,136.33,931,-8.200000000000001 +2013,3,10,23,30,0,0,0,2.2,1.3,145.64000000000001,931,-8.4 +2013,3,11,0,30,0,0,0,2.6,0.7000000000000001,150.89000000000001,931,-8.700000000000001 +2013,3,11,1,30,0,0,0,3,0.2,149.84,931,-9.1 +2013,3,11,2,30,0,0,0,2.8000000000000003,-0.6000000000000001,143.03,931,-9.3 +2013,3,11,3,30,0,0,0,2.3000000000000003,-1.7000000000000002,132.93,931,-9.4 +2013,3,11,4,30,0,0,0,1.8,-2.5,121.27,931,-9.5 +2013,3,11,5,30,0,0,0,1.6,-2.9000000000000004,108.9,931,-9.700000000000001 +2013,3,11,6,30,0,0,0,2,-1.8,96.25,932,-9.9 +2013,3,11,7,30,90,32,510,2.7,1.4000000000000001,83.48,932,-10 +2013,3,11,8,30,318,57,810,3,5.800000000000001,71.19,932,-10.4 +2013,3,11,9,30,543,70,930,3.2,9.9,59.45,932,-12 +2013,3,11,10,30,729,78,990,3.4000000000000004,13.100000000000001,48.89,932,-11.600000000000001 +2013,3,11,11,30,859,82,1023,3.5,15.8,40.550000000000004,931,-10.5 +2013,3,11,12,30,916,82,1031,3.4000000000000004,18,36.08,930,-9.4 +2013,3,11,13,30,904,81,1030,3.1,19.400000000000002,36.94,928,-8.6 +2013,3,11,14,30,822,78,1013,2.8000000000000003,20.1,42.79,927,-8.1 +2013,3,11,15,30,673,74,972,2.7,20.200000000000003,51.96,926,-7.800000000000001 +2013,3,11,16,30,473,66,896,2,19.1,62.97,926,-7.7 +2013,3,11,17,30,243,50,742,1.3,18.2,74.93,926,-1.7000000000000002 +2013,3,11,18,30,32,18,295,1.4000000000000001,12.3,87.23,926,-1.9000000000000001 +2013,3,11,19,30,0,0,0,1.6,10.3,100.11,926,-3 +2013,3,11,20,30,0,0,0,2,9.4,112.68,927,-3.6 +2013,3,11,21,30,0,0,0,2.6,9.1,124.86,927,-4.3 +2013,3,11,22,30,0,0,0,3.4000000000000004,8.9,136.1,927,-5 +2013,3,11,23,30,0,0,0,4,8.6,145.33,927,-5.300000000000001 +2013,3,12,0,30,0,0,0,4.3,8,150.51,927,-5.5 +2013,3,12,1,30,0,0,0,4.5,7.300000000000001,149.45000000000002,927,-5.6000000000000005 +2013,3,12,2,30,0,0,0,4.800000000000001,6.7,142.67000000000002,927,-6 +2013,3,12,3,30,0,0,0,4.7,6,132.61,927,-6.6000000000000005 +2013,3,12,4,30,0,0,0,4.5,5.300000000000001,120.98,927,-7.1000000000000005 +2013,3,12,5,30,0,0,0,4.2,4.5,108.63,927,-7.1000000000000005 +2013,3,12,6,30,0,0,0,4.2,4.6000000000000005,95.99000000000001,927,-6.9 +2013,3,12,7,30,91,32,500,4.2,6.6000000000000005,83.22,928,-6.6000000000000005 +2013,3,12,8,30,317,58,793,4.1000000000000005,9.600000000000001,70.91,929,-5.800000000000001 +2013,3,12,9,30,539,72,910,4.1000000000000005,12.200000000000001,59.14,930,-5 +2013,3,12,10,30,723,83,967,4.1000000000000005,14.200000000000001,48.550000000000004,931,-4 +2013,3,12,11,30,847,90,991,4.1000000000000005,15.8,40.17,932,-3.4000000000000004 +2013,3,12,12,30,910,86,1014,4.3,17.1,35.68,932,-3.1 +2013,3,12,13,30,894,87,1004,4.800000000000001,17.900000000000002,36.57,932,-2.9000000000000004 +2013,3,12,14,30,811,85,984,5.4,18,42.49,932,-3 +2013,3,12,15,30,664,79,944,5.800000000000001,17.5,51.72,932,-3.3000000000000003 +2013,3,12,16,30,467,69,870,5.800000000000001,16.400000000000002,62.77,933,-3.7 +2013,3,12,17,30,240,52,716,5.7,15.600000000000001,74.76,933,-3.9000000000000004 +2013,3,12,18,30,33,19,282,4.4,11.3,87.08,935,-3.5 +2013,3,12,19,30,0,0,0,4.3,9.600000000000001,99.96000000000001,936,-3.5 +2013,3,12,20,30,0,0,0,3.8000000000000003,8.200000000000001,112.52,937,-3.5 +2013,3,12,21,30,0,0,0,2.9000000000000004,6.800000000000001,124.67,938,-3.5 +2013,3,12,22,30,0,0,0,2.2,5.5,135.86,938,-3.3000000000000003 +2013,3,12,23,30,0,0,0,1.7000000000000002,4.5,145.03,938,-3.2 +2013,3,13,0,30,0,0,0,1.5,3.8000000000000003,150.13,938,-3.1 +2013,3,13,1,30,0,0,0,1.4000000000000001,3.3000000000000003,149.05,938,-3.1 +2013,3,13,2,30,0,0,0,1.3,2.9000000000000004,142.31,938,-3 +2013,3,13,3,30,0,0,0,1.3,2.6,132.3,938,-2.9000000000000004 +2013,3,13,4,30,0,0,0,1.2000000000000002,2.4000000000000004,120.69,939,-2.6 +2013,3,13,5,30,0,0,0,1.2000000000000002,2.3000000000000003,108.36,939,-2.4000000000000004 +2013,3,13,6,30,0,0,0,1.2000000000000002,3.4000000000000004,95.72,940,-2.1 +2013,3,13,7,30,94,33,496,1.7000000000000002,6.4,82.95,940,-1.5 +2013,3,13,8,30,320,59,786,3.1,10.5,70.62,941,-1.1 +2013,3,13,9,30,542,74,904,4.1000000000000005,14.100000000000001,58.83,940,-1.4000000000000001 +2013,3,13,10,30,725,83,963,4.1000000000000005,16.5,48.2,940,-0.9 +2013,3,13,11,30,853,89,994,3.9000000000000004,18.400000000000002,39.79,939,-0.30000000000000004 +2013,3,13,12,30,764,316,549,3.9000000000000004,20,35.29,938,-0.1 +2013,3,13,13,30,895,95,993,3.8000000000000003,21.1,36.21,937,-0.1 +2013,3,13,14,30,812,92,973,3.6,21.8,42.2,936,-0.2 +2013,3,13,15,30,666,83,937,3.2,21.900000000000002,51.49,935,-0.5 +2013,3,13,16,30,468,73,857,2.3000000000000003,21,62.58,935,-0.7000000000000001 +2013,3,13,17,30,241,56,695,1.6,20.1,74.59,935,2.5 +2013,3,13,18,30,33,20,249,1.5,14.3,86.93,935,2.9000000000000004 +2013,3,13,19,30,0,0,0,2,12.8,99.8,935,1.8 +2013,3,13,20,30,0,0,0,2.5,12,112.35000000000001,936,1.7000000000000002 +2013,3,13,21,30,0,0,0,3,11.3,124.48,936,1.7000000000000002 +2013,3,13,22,30,0,0,0,3.4000000000000004,10.600000000000001,135.63,936,1.7000000000000002 +2013,3,13,23,30,0,0,0,3.6,10,144.72,936,1.5 +2013,3,14,0,30,0,0,0,3.7,9.3,149.75,936,1.2000000000000002 +2013,3,14,1,30,0,0,0,3.5,8.4,148.65,936,1.1 +2013,3,14,2,30,0,0,0,3.2,7.6000000000000005,141.95000000000002,936,1.1 +2013,3,14,3,30,0,0,0,3.1,7,131.98,935,1.1 +2013,3,14,4,30,0,0,0,3,6.6000000000000005,120.41,935,1.4000000000000001 +2013,3,14,5,30,0,0,0,3,6.300000000000001,108.08,936,1.9000000000000001 +2013,3,14,6,30,0,0,0,3.6,7,95.45,936,2.5 +2013,3,14,7,30,94,37,448,4.7,9.600000000000001,82.68,936,3.3000000000000003 +2013,3,14,8,30,317,66,745,5.7,13.3,70.34,937,4.6000000000000005 +2013,3,14,9,30,536,82,870,6.1000000000000005,17.1,58.53,936,5.6000000000000005 +2013,3,14,10,30,718,92,934,5.800000000000001,20.400000000000002,47.86,936,5.4 +2013,3,14,11,30,842,98,964,5.4,23.1,39.410000000000004,935,4.5 +2013,3,14,12,30,906,90,994,5.2,25,34.89,934,3.6 +2013,3,14,13,30,893,91,989,5.2,26,35.84,933,2.8000000000000003 +2013,3,14,14,30,810,89,968,5.2,26.3,41.9,932,2.1 +2013,3,14,15,30,660,85,920,5.1000000000000005,25.900000000000002,51.25,932,1.6 +2013,3,14,16,30,464,75,839,4.4,24.6,62.38,932,1.3 +2013,3,14,17,30,177,94,310,3.8000000000000003,23.6,74.43,932,2.1 +2013,3,14,18,30,35,21,245,3.3000000000000003,18.1,86.79,932,3.4000000000000004 +2013,3,14,19,30,0,0,0,4.4,17.2,99.65,933,2.9000000000000004 +2013,3,14,20,30,0,0,0,5.2,16.400000000000002,112.19,933,2.9000000000000004 +2013,3,14,21,30,0,0,0,5.6000000000000005,15.3,124.29,933,2.9000000000000004 +2013,3,14,22,30,0,0,0,5.7,14.3,135.39000000000001,933,3 +2013,3,14,23,30,0,0,0,5.6000000000000005,13.4,144.41,932,3 +2013,3,15,0,30,0,0,0,5.2,12.5,149.37,932,3 +2013,3,15,1,30,0,0,0,4.800000000000001,11.4,148.25,932,2.9000000000000004 +2013,3,15,2,30,0,0,0,4.6000000000000005,10.5,141.59,932,2.8000000000000003 +2013,3,15,3,30,0,0,0,4.5,9.700000000000001,131.66,931,2.8000000000000003 +2013,3,15,4,30,0,0,0,4.3,9.1,120.11,931,2.9000000000000004 +2013,3,15,5,30,0,0,0,4.1000000000000005,8.5,107.81,931,3.3000000000000003 +2013,3,15,6,30,0,0,0,4.3,8.8,95.18,931,3.9000000000000004 +2013,3,15,7,30,102,35,505,4.9,11,82.42,931,4.5 +2013,3,15,8,30,328,60,788,5.6000000000000005,14.700000000000001,70.05,931,5.300000000000001 +2013,3,15,9,30,549,73,903,6,18.900000000000002,58.22,931,5.800000000000001 +2013,3,15,10,30,731,82,961,6.1000000000000005,22.700000000000003,47.52,930,5.300000000000001 +2013,3,15,11,30,858,88,992,6.1000000000000005,25.700000000000003,39.02,929,4.1000000000000005 +2013,3,15,12,30,918,88,1007,6.1000000000000005,27.6,34.49,928,2.6 +2013,3,15,13,30,906,88,1004,6.2,28.6,35.480000000000004,926,1.4000000000000001 +2013,3,15,14,30,819,86,981,6.1000000000000005,28.8,41.6,925,0.7000000000000001 +2013,3,15,15,30,672,80,941,5.9,28.3,51.02,924,0.1 +2013,3,15,16,30,475,72,866,5.300000000000001,27,62.190000000000005,924,-0.1 +2013,3,15,17,30,247,55,706,4.800000000000001,26,74.26,924,0.7000000000000001 +2013,3,15,18,30,37,21,279,4.800000000000001,20.8,86.65,924,2 +2013,3,15,19,30,0,0,0,5.7,19.3,99.5,924,2.2 +2013,3,15,20,30,0,0,0,5.800000000000001,17.8,112.03,924,2.6 +2013,3,15,21,30,0,0,0,5.7,16.3,124.09,924,3.1 +2013,3,15,22,30,0,0,0,5.800000000000001,15.200000000000001,135.15,924,3.2 +2013,3,15,23,30,0,0,0,5.800000000000001,14.3,144.11,923,3.2 +2013,3,16,0,30,0,0,0,5.800000000000001,13.5,148.99,923,3.2 +2013,3,16,1,30,0,0,0,5.7,12.9,147.85,922,3.1 +2013,3,16,2,30,0,0,0,5.5,12.3,141.23,922,3 +2013,3,16,3,30,0,0,0,5.300000000000001,11.5,131.33,921,2.9000000000000004 +2013,3,16,4,30,0,0,0,5.2,10.700000000000001,119.82000000000001,921,3 +2013,3,16,5,30,0,0,0,5,9.8,107.53,921,3.2 +2013,3,16,6,30,0,0,0,5,9.8,94.91,921,3.4000000000000004 +2013,3,16,7,30,107,37,515,5.4,11.700000000000001,82.15,921,3.6 +2013,3,16,8,30,339,61,804,5.800000000000001,15.5,69.77,921,3.6 +2013,3,16,9,30,563,74,920,5.800000000000001,20,57.910000000000004,921,3.1 +2013,3,16,10,30,747,83,978,5.300000000000001,24,47.17,920,1.6 +2013,3,16,11,30,870,88,1002,4.6000000000000005,27.3,38.64,920,-0.2 +2013,3,16,12,30,930,90,1014,4,29.700000000000003,34.08,919,-1.5 +2013,3,16,13,30,917,93,1007,3.5,31,35.11,918,-2.4000000000000004 +2013,3,16,14,30,715,253,614,3,31.5,41.31,917,-2.9000000000000004 +2013,3,16,15,30,609,150,726,2.3000000000000003,31.3,50.79,916,-3.2 +2013,3,16,16,30,390,153,505,1.1,29.5,62,916,-2.5 +2013,3,16,17,30,201,83,429,0.4,28,74.10000000000001,916,4.9 +2013,3,16,18,30,29,22,126,1.2000000000000002,22.200000000000003,86.5,917,2.7 +2013,3,16,19,30,0,0,0,1.5,19.5,99.35000000000001,917,2.8000000000000003 +2013,3,16,20,30,0,0,0,1.6,17.2,111.86,918,3.9000000000000004 +2013,3,16,21,30,0,0,0,1.5,15.4,123.9,919,4.6000000000000005 +2013,3,16,22,30,0,0,0,1.2000000000000002,14,134.91,919,5 +2013,3,16,23,30,0,0,0,1,13,143.79,919,5.1000000000000005 +2013,3,17,0,30,0,0,0,1.1,12,148.61,919,5.2 +2013,3,17,1,30,0,0,0,1.8,10.9,147.45000000000002,920,5.4 +2013,3,17,2,30,0,0,0,3.1,9.9,140.86,920,5.4 +2013,3,17,3,30,0,0,0,4.1000000000000005,8.9,131.01,920,4.800000000000001 +2013,3,17,4,30,0,0,0,4.1000000000000005,7.800000000000001,119.52,921,3.7 +2013,3,17,5,30,0,0,0,3.5,6.9,107.25,921,2.6 +2013,3,17,6,30,0,0,0,3.4000000000000004,6.800000000000001,94.64,922,1.7000000000000002 +2013,3,17,7,30,106,41,460,3.6,8.1,81.87,923,1.2000000000000002 +2013,3,17,8,30,332,68,751,3.4000000000000004,10.4,69.48,923,1.6 +2013,3,17,9,30,552,83,875,3.1,12.700000000000001,57.6,923,2.4000000000000004 +2013,3,17,10,30,734,91,938,2.8000000000000003,15,46.83,923,3.1 +2013,3,17,11,30,860,96,973,2.4000000000000004,17.1,38.26,922,3.7 +2013,3,17,12,30,919,97,988,2.3000000000000003,19,33.68,921,4.1000000000000005 +2013,3,17,13,30,910,94,993,2.5,20.5,34.75,920,4.3 +2013,3,17,14,30,826,90,976,2.8000000000000003,21.700000000000003,41.02,919,4.2 +2013,3,17,15,30,679,83,938,2.8000000000000003,22.3,50.56,918,3.7 +2013,3,17,16,30,480,72,864,2.2,22,61.82,918,3 +2013,3,17,17,30,252,56,708,1.6,21.6,73.94,918,3.8000000000000003 +2013,3,17,18,30,41,22,296,0.8,17.1,86.35000000000001,918,4.800000000000001 +2013,3,17,19,30,0,0,0,1.5,14.9,99.19,917,3.7 +2013,3,17,20,30,0,0,0,1.9000000000000001,14,111.7,917,3.3000000000000003 +2013,3,17,21,30,0,0,0,2.7,14.100000000000001,123.71000000000001,917,2.8000000000000003 +2013,3,17,22,30,0,0,0,3.7,14.700000000000001,134.67000000000002,917,2.3000000000000003 +2013,3,17,23,30,0,0,0,4.4,14.700000000000001,143.48,917,1.6 +2013,3,18,0,30,0,0,0,4.3,14,148.23,917,0.6000000000000001 +2013,3,18,1,30,0,0,0,4.1000000000000005,13,147.05,918,-0.5 +2013,3,18,2,30,0,0,0,4.2,12.3,140.5,918,-1.4000000000000001 +2013,3,18,3,30,0,0,0,4.3,11.600000000000001,130.68,919,-1.8 +2013,3,18,4,30,0,0,0,3.7,10.4,119.23,919,-1.9000000000000001 +2013,3,18,5,30,0,0,0,3.6,9.3,106.97,920,-1.8 +2013,3,18,6,30,0,0,0,4.800000000000001,9.5,94.36,922,-1.8 +2013,3,18,7,30,119,37,568,6.4,10.700000000000001,81.60000000000001,924,-1.3 +2013,3,18,8,30,350,61,812,7,12.200000000000001,69.19,925,0.8 +2013,3,18,9,30,571,79,911,6.800000000000001,13.9,57.29,926,2.1 +2013,3,18,10,30,749,92,953,6.2,15.600000000000001,46.480000000000004,927,2.6 +2013,3,18,11,30,874,101,978,5.4,17.3,37.87,926,2.8000000000000003 +2013,3,18,12,30,777,340,522,4.6000000000000005,18.8,33.28,926,2.8000000000000003 +2013,3,18,13,30,915,106,981,3.9000000000000004,19.8,34.39,926,2.6 +2013,3,18,14,30,824,115,935,3.7,20.1,40.730000000000004,926,2.2 +2013,3,18,15,30,598,175,663,3.8000000000000003,19.700000000000003,50.33,926,1.7000000000000002 +2013,3,18,16,30,307,208,207,3.6,18.900000000000002,61.63,926,1.2000000000000002 +2013,3,18,17,30,221,70,540,3.2,18.3,73.78,926,1.1 +2013,3,18,18,30,31,23,113,1.6,13.4,86.2,926,2.6 +2013,3,18,19,30,0,0,0,1.9000000000000001,11.700000000000001,99.04,926,2 +2013,3,18,20,30,0,0,0,2.3000000000000003,11,111.53,927,1.6 +2013,3,18,21,30,0,0,0,2.6,10.3,123.51,927,1.6 +2013,3,18,22,30,0,0,0,2.6,9.5,134.42000000000002,927,1.8 +2013,3,18,23,30,0,0,0,2.4000000000000004,8.700000000000001,143.17000000000002,926,2.1 +2013,3,19,0,30,0,0,0,2.1,7.9,147.84,926,2.5 +2013,3,19,1,30,0,0,0,2,7.2,146.65,926,3 +2013,3,19,2,30,0,0,0,1.9000000000000001,6.7,140.13,926,3.6 +2013,3,19,3,30,0,0,0,1.9000000000000001,6.2,130.36,926,4.1000000000000005 +2013,3,19,4,30,0,0,0,1.9000000000000001,5.7,118.93,926,4.6000000000000005 +2013,3,19,5,30,0,0,0,2,5.1000000000000005,106.69,927,5 +2013,3,19,6,30,0,0,0,2.9000000000000004,5.9,94.09,927,5.4 +2013,3,19,7,30,65,54,71,3.9000000000000004,8.4,81.33,927,5.6000000000000005 +2013,3,19,8,30,205,150,155,4.3,11.5,68.91,927,5.6000000000000005 +2013,3,19,9,30,404,231,317,4.3,14.600000000000001,56.980000000000004,927,5.300000000000001 +2013,3,19,10,30,471,338,192,4,17.7,46.14,927,4.6000000000000005 +2013,3,19,11,30,675,340,422,3.5,21.1,37.49,926,3.7 +2013,3,19,12,30,778,345,515,2.7,23.3,32.88,925,2.4000000000000004 +2013,3,19,13,30,713,356,431,2.6,23.3,34.03,925,1.1 +2013,3,19,14,30,500,382,156,3.2,21.900000000000002,40.44,925,0.4 +2013,3,19,15,30,340,292,75,4,19.8,50.1,925,1.7000000000000002 +2013,3,19,16,30,332,202,273,4.800000000000001,17.8,61.45,926,3 +2013,3,19,17,30,97,97,2,5.1000000000000005,16.8,73.62,926,4.3 +2013,3,19,18,30,24,23,4,5.800000000000001,13.700000000000001,86.06,928,5.5 +2013,3,19,19,30,0,0,0,5.9,12.3,98.89,929,5.7 +2013,3,19,20,30,0,0,0,5.6000000000000005,11.4,111.36,930,5.2 +2013,3,19,21,30,0,0,0,5,10.700000000000001,123.32000000000001,931,4.5 +2013,3,19,22,30,0,0,0,4.3,9.9,134.18,932,3.9000000000000004 +2013,3,19,23,30,0,0,0,3.8000000000000003,9.1,142.86,932,3.2 +2013,3,20,0,30,0,0,0,3.2,8.4,147.46,933,2.5 +2013,3,20,1,30,0,0,0,2.6,7.9,146.25,933,2 +2013,3,20,2,30,0,0,0,2.1,7.300000000000001,139.76,933,1.6 +2013,3,20,3,30,0,0,0,1.9000000000000001,6.7,130.03,934,1.4000000000000001 +2013,3,20,4,30,0,0,0,1.9000000000000001,5.9,118.63,934,1.3 +2013,3,20,5,30,0,0,0,1.9000000000000001,5.2,106.41,935,1.4000000000000001 +2013,3,20,6,30,0,0,0,2.6,5.6000000000000005,93.82000000000001,936,1.4000000000000001 +2013,3,20,7,30,121,42,507,3.4000000000000004,8,81.05,937,1.5 +2013,3,20,8,30,350,67,776,4,11.4,68.62,937,0.6000000000000001 +2013,3,20,9,30,574,81,897,4.4,14.3,56.67,937,-0.9 +2013,3,20,10,30,756,89,956,4.2,16.400000000000002,45.800000000000004,937,-1.9000000000000001 +2013,3,20,11,30,882,94,987,3.7,18,37.1,936,-2.6 +2013,3,20,12,30,939,98,998,3.3000000000000003,19.200000000000003,32.480000000000004,934,-2.8000000000000003 +2013,3,20,13,30,922,97,991,3.2,20,33.67,933,-2.6 +2013,3,20,14,30,837,95,971,3.3000000000000003,20.400000000000002,40.160000000000004,931,-2.3000000000000003 +2013,3,20,15,30,685,94,917,3.4000000000000004,20.1,49.88,930,-2 +2013,3,20,16,30,382,172,436,3.5,19.200000000000003,61.27,929,-1.9000000000000001 +2013,3,20,17,30,162,112,178,3.4000000000000004,18.5,73.46000000000001,929,-1.6 +2013,3,20,18,30,27,24,31,2.1,14.4,85.91,929,0.5 +2013,3,20,19,30,0,0,0,2.6,13.100000000000001,98.74000000000001,929,0.6000000000000001 +2013,3,20,20,30,0,0,0,3.4000000000000004,12.700000000000001,111.2,928,0.30000000000000004 +2013,3,20,21,30,0,0,0,4.2,12.4,123.12,928,0.4 +2013,3,20,22,30,0,0,0,4.4,11.8,133.94,927,0.8 +2013,3,20,23,30,0,0,0,4.2,11.200000000000001,142.54,926,1.4000000000000001 +2013,3,21,0,30,0,0,0,3.9000000000000004,10.5,147.08,925,2.1 +2013,3,21,1,30,0,0,0,4,9.9,145.85,924,2.5 +2013,3,21,2,30,0,0,0,4.2,9.5,139.39000000000001,923,2.6 +2013,3,21,3,30,0,0,0,4.3,9.1,129.7,922,2.6 +2013,3,21,4,30,0,0,0,4.5,8.700000000000001,118.33,921,2.4000000000000004 +2013,3,21,5,30,0,0,0,4.7,8.5,106.13,921,2.5 +2013,3,21,6,30,0,0,0,5,9,93.54,920,3.3000000000000003 +2013,3,21,7,30,89,55,212,6.300000000000001,11.3,80.78,919,4.6000000000000005 +2013,3,21,8,30,207,155,142,7.6000000000000005,15.200000000000001,68.33,919,7.6000000000000005 +2013,3,21,9,30,363,254,197,7.800000000000001,19.200000000000003,56.36,918,9.700000000000001 +2013,3,21,10,30,518,336,261,7.5,22.700000000000003,45.45,917,9.8 +2013,3,21,11,30,686,342,430,7.4,25.200000000000003,36.72,916,8.700000000000001 +2013,3,21,12,30,702,409,345,7.300000000000001,26.900000000000002,32.08,915,6.800000000000001 +2013,3,21,13,30,663,413,299,7.1000000000000005,28.1,33.31,914,4.5 +2013,3,21,14,30,827,108,937,7,29,39.87,912,1.9000000000000001 +2013,3,21,15,30,583,209,578,6.6000000000000005,29,49.660000000000004,912,-0.8 +2013,3,21,16,30,434,112,667,5.2,27.900000000000002,61.09,911,-2.5 +2013,3,21,17,30,230,70,556,4.1000000000000005,27,73.3,911,-1.6 +2013,3,21,18,30,39,25,188,2.1,20,85.78,912,1.1 +2013,3,21,19,30,0,0,0,2.1,18.2,98.59,912,0.8 +2013,3,21,20,30,0,0,0,2.2,17.1,111.03,913,0.6000000000000001 +2013,3,21,21,30,0,0,0,2.2,16,122.93,913,0.4 +2013,3,21,22,30,0,0,0,2.4000000000000004,15.200000000000001,133.69,913,0.30000000000000004 +2013,3,21,23,30,0,0,0,2.9000000000000004,14.8,142.23,914,0 +2013,3,22,0,30,0,0,0,3.6,14.3,146.70000000000002,914,-0.4 +2013,3,22,1,30,0,0,0,3.9000000000000004,13.600000000000001,145.45000000000002,915,-0.7000000000000001 +2013,3,22,2,30,0,0,0,3.8000000000000003,12.4,139.02,915,-0.7000000000000001 +2013,3,22,3,30,0,0,0,4.1000000000000005,10.8,129.37,916,0 +2013,3,22,4,30,0,0,0,4.7,9.3,118.03,918,2.3000000000000003 +2013,3,22,5,30,0,0,0,5.1000000000000005,8.1,105.84,919,4.6000000000000005 +2013,3,22,6,30,0,0,0,5.4,7.5,93.27,920,5.7 +2013,3,22,7,30,87,59,170,5.4,7.6000000000000005,80.51,921,5.800000000000001 +2013,3,22,8,30,80,80,0,5.2,8.1,68.05,921,5.300000000000001 +2013,3,22,9,30,211,202,18,4.7,8.6,56.050000000000004,922,4.9 +2013,3,22,10,30,348,312,52,4.2,8.9,45.11,923,4.6000000000000005 +2013,3,22,11,30,340,318,27,3.9000000000000004,9.3,36.34,923,4.4 +2013,3,22,12,30,498,423,89,3.5,9.8,31.68,922,4.3 +2013,3,22,13,30,510,422,105,3.1,10.200000000000001,32.96,922,4.2 +2013,3,22,14,30,455,378,100,2.8000000000000003,10.600000000000001,39.59,922,4.2 +2013,3,22,15,30,451,309,218,2.8000000000000003,10.9,49.44,922,4.1000000000000005 +2013,3,22,16,30,308,215,191,2.8000000000000003,10.9,60.910000000000004,922,4 +2013,3,22,17,30,174,112,213,2.8000000000000003,10.600000000000001,73.14,922,3.9000000000000004 +2013,3,22,18,30,16,16,0,2.4000000000000004,8.200000000000001,85.62,922,3.8000000000000003 +2013,3,22,19,30,0,0,0,2.4000000000000004,6.800000000000001,98.44,921,3.6 +2013,3,22,20,30,0,0,0,2.4000000000000004,5.7,110.86,921,3.5 +2013,3,22,21,30,0,0,0,1.9000000000000001,4.9,122.73,921,3.5 +2013,3,22,22,30,0,0,0,1.4000000000000001,4.2,133.44,921,3.5 +2013,3,22,23,30,0,0,0,1,4,141.91,921,3.5 +2013,3,23,0,30,0,0,0,1,4.2,146.31,921,3.6 +2013,3,23,1,30,0,0,0,1,4.3,145.05,921,3.6 +2013,3,23,2,30,0,0,0,1.1,4.2,138.65,921,3.7 +2013,3,23,3,30,0,0,0,1.3,4,129.04,921,3.7 +2013,3,23,4,30,0,0,0,1.6,3.7,117.73,921,3.7 +2013,3,23,5,30,0,0,0,2.1,3.7,105.56,920,3.7 +2013,3,23,6,30,0,0,0,2.7,4.3,92.99,920,3.7 +2013,3,23,7,30,124,56,401,3.1,6.300000000000001,80.23,920,4 +2013,3,23,8,30,115,115,0,3.3000000000000003,9.600000000000001,67.76,920,4.6000000000000005 +2013,3,23,9,30,213,203,18,3.3000000000000003,13.5,55.74,920,5.300000000000001 +2013,3,23,10,30,356,317,55,3.4000000000000004,17.8,44.77,919,5.9 +2013,3,23,11,30,889,103,971,3.8000000000000003,21.8,35.96,918,5.1000000000000005 +2013,3,23,12,30,951,102,994,4.4,24.700000000000003,31.28,917,2.5 +2013,3,23,13,30,944,100,1002,5.1000000000000005,26.1,32.6,916,-1.1 +2013,3,23,14,30,861,100,983,5.5,26.5,39.31,915,-4.7 +2013,3,23,15,30,711,97,941,5.5,26.1,49.230000000000004,915,-7.5 +2013,3,23,16,30,413,150,537,4.4,24.700000000000003,60.730000000000004,914,-8.8 +2013,3,23,17,30,270,65,700,3.5,23.700000000000003,72.99,914,-5.800000000000001 +2013,3,23,18,30,51,30,261,2.7,17.5,85.49,915,-2.8000000000000003 +2013,3,23,19,30,0,0,0,5.6000000000000005,16.7,98.29,917,-5.4 +2013,3,23,20,30,0,0,0,8.8,15.200000000000001,110.7,920,-10 +2013,3,23,21,30,0,0,0,9.200000000000001,12,122.53,923,-13.3 +2013,3,23,22,30,0,0,0,9.5,8.6,133.19,925,-9.8 +2013,3,23,23,30,0,0,0,9.4,5.1000000000000005,141.59,927,-5.300000000000001 +2013,3,24,0,30,0,0,0,8.3,2.6,145.93,929,-3.9000000000000004 +2013,3,24,1,30,0,0,0,7.5,1.3,144.66,929,-4.6000000000000005 +2013,3,24,2,30,0,0,0,7,0.30000000000000004,138.28,929,-5.800000000000001 +2013,3,24,3,30,0,0,0,6.6000000000000005,-0.5,128.71,930,-6.800000000000001 +2013,3,24,4,30,0,0,0,6.300000000000001,-1.1,117.43,930,-7.4 +2013,3,24,5,30,0,0,0,6,-1.6,105.28,931,-7.9 +2013,3,24,6,30,0,0,0,6.2,-1.5,92.72,932,-8.5 +2013,3,24,7,30,147,42,607,6.6000000000000005,-0.30000000000000004,79.96000000000001,933,-8.9 +2013,3,24,8,30,388,62,849,6.7,1.7000000000000002,67.47,934,-9.5 +2013,3,24,9,30,613,74,950,6.5,3.9000000000000004,55.43,934,-10 +2013,3,24,10,30,797,81,1002,6.1000000000000005,6,44.43,934,-10.5 +2013,3,24,11,30,922,86,1028,5.7,7.9,35.57,933,-11.100000000000001 +2013,3,24,12,30,979,88,1038,5.4,9.4,30.88,932,-11.700000000000001 +2013,3,24,13,30,963,88,1035,5.2,10.3,32.25,932,-12.3 +2013,3,24,14,30,875,85,1018,5.1000000000000005,10.700000000000001,39.04,931,-13 +2013,3,24,15,30,722,80,979,5,10.5,49.01,930,-13.700000000000001 +2013,3,24,16,30,519,69,914,4.7,9.8,60.56,930,-14.200000000000001 +2013,3,24,17,30,284,54,782,4.5,9.200000000000001,72.84,930,-14.5 +2013,3,24,18,30,59,25,420,2.6,5.2,85.33,931,-13 +2013,3,24,19,30,0,0,0,2.8000000000000003,3.6,98.14,931,-12 +2013,3,24,20,30,0,0,0,3.1,2.8000000000000003,110.53,932,-12.700000000000001 +2013,3,24,21,30,0,0,0,3.1,1.8,122.33,932,-12.700000000000001 +2013,3,24,22,30,0,0,0,2.9000000000000004,0.9,132.94,933,-12.5 +2013,3,24,23,30,0,0,0,2.7,0,141.27,933,-12.3 +2013,3,25,0,30,0,0,0,2.4000000000000004,-0.9,145.55,933,-11.9 +2013,3,25,1,30,0,0,0,2,-1.6,144.26,934,-11.600000000000001 +2013,3,25,2,30,0,0,0,1.7000000000000002,-2.4000000000000004,137.91,935,-11.3 +2013,3,25,3,30,0,0,0,1.4000000000000001,-3,128.38,935,-11.100000000000001 +2013,3,25,4,30,0,0,0,1.4000000000000001,-3.6,117.12,936,-11 +2013,3,25,5,30,0,0,0,1.5,-3.9000000000000004,104.99000000000001,937,-11.100000000000001 +2013,3,25,6,30,0,0,0,2.4000000000000004,-2.7,92.44,938,-11.200000000000001 +2013,3,25,7,30,154,43,621,3.7,0.30000000000000004,79.68,939,-11.3 +2013,3,25,8,30,392,65,844,4.3,3.5,67.19,939,-11.9 +2013,3,25,9,30,616,78,940,4,5.800000000000001,55.13,939,-11.9 +2013,3,25,10,30,799,88,989,3.4000000000000004,7.800000000000001,44.09,939,-12 +2013,3,25,11,30,924,94,1016,2.8000000000000003,9.4,35.19,938,-12 +2013,3,25,12,30,974,96,1019,2.6,10.600000000000001,30.48,938,-11.8 +2013,3,25,13,30,958,95,1016,2.7,11.3,31.89,937,-11.600000000000001 +2013,3,25,14,30,871,91,1001,3,11.5,38.76,936,-11.5 +2013,3,25,15,30,716,92,948,3.2,11.3,48.800000000000004,935,-11.5 +2013,3,25,16,30,513,79,879,3.2,10.5,60.38,936,-11.4 +2013,3,25,17,30,281,60,741,3.2,9.9,72.68,936,-11.4 +2013,3,25,18,30,59,27,378,1.7000000000000002,5.5,85.19,937,-8.6 +2013,3,25,19,30,0,0,0,1.7000000000000002,3.8000000000000003,97.98,937,-8.1 +2013,3,25,20,30,0,0,0,1.8,2.9000000000000004,110.36,938,-8.700000000000001 +2013,3,25,21,30,0,0,0,1.8,2,122.13,939,-8.9 +2013,3,25,22,30,0,0,0,1.6,1,132.69,939,-9 +2013,3,25,23,30,0,0,0,1.5,0.2,140.95000000000002,939,-9.1 +2013,3,26,0,30,0,0,0,1.3,-0.6000000000000001,145.17000000000002,939,-9.1 +2013,3,26,1,30,0,0,0,1.2000000000000002,-1.3,143.86,939,-9.200000000000001 +2013,3,26,2,30,0,0,0,1.2000000000000002,-1.8,137.54,939,-9.4 +2013,3,26,3,30,0,0,0,1.2000000000000002,-2.3000000000000003,128.04,939,-9.5 +2013,3,26,4,30,0,0,0,1.2000000000000002,-2.7,116.82000000000001,939,-9.600000000000001 +2013,3,26,5,30,0,0,0,1.2000000000000002,-3,104.71000000000001,940,-9.600000000000001 +2013,3,26,6,30,0,0,0,1.8,-1.5,92.17,940,-9.4 +2013,3,26,7,30,156,44,607,2.7,2,79.41,941,-8.700000000000001 +2013,3,26,8,30,392,66,830,3.5,6.2,66.91,941,-9.1 +2013,3,26,9,30,615,80,928,3.9000000000000004,9.700000000000001,54.82,940,-10.3 +2013,3,26,10,30,796,90,979,3.9000000000000004,12.3,43.75,940,-10.100000000000001 +2013,3,26,11,30,916,96,999,4,14.3,34.81,939,-10 +2013,3,26,12,30,972,96,1013,4.2,15.8,30.080000000000002,938,-10 +2013,3,26,13,30,956,96,1009,4.4,16.900000000000002,31.54,936,-10 +2013,3,26,14,30,868,94,989,4.5,17.400000000000002,38.49,935,-10 +2013,3,26,15,30,716,87,950,4.6000000000000005,17.5,48.59,934,-9.9 +2013,3,26,16,30,512,79,873,4.5,16.8,60.21,933,-9.9 +2013,3,26,17,30,279,62,723,4.3,16.3,72.53,933,-9.600000000000001 +2013,3,26,18,30,37,30,90,2.8000000000000003,10.9,85.05,933,-7 +2013,3,26,19,30,0,0,0,3.4000000000000004,9.4,97.83,933,-6.9 +2013,3,26,20,30,0,0,0,4.2,8.700000000000001,110.19,934,-7.1000000000000005 +2013,3,26,21,30,0,0,0,4.6000000000000005,7.800000000000001,121.93,934,-6.9 +2013,3,26,22,30,0,0,0,4.4,6.800000000000001,132.44,934,-6.800000000000001 +2013,3,26,23,30,0,0,0,4.3,5.9,140.64000000000001,933,-6.6000000000000005 +2013,3,27,0,30,0,0,0,4.5,5.300000000000001,144.78,933,-6.6000000000000005 +2013,3,27,1,30,0,0,0,4.6000000000000005,4.7,143.46,932,-6.7 +2013,3,27,2,30,0,0,0,4.7,4.2,137.17000000000002,932,-6.800000000000001 +2013,3,27,3,30,0,0,0,4.6000000000000005,3.8000000000000003,127.71000000000001,932,-6.800000000000001 +2013,3,27,4,30,0,0,0,4.5,3.5,116.52,932,-6.5 +2013,3,27,5,30,0,0,0,4.4,3.4000000000000004,104.43,932,-5.800000000000001 +2013,3,27,6,30,0,0,0,4.7,4.1000000000000005,91.89,932,-4.800000000000001 +2013,3,27,7,30,153,51,541,6.1000000000000005,6.7,79.14,933,-3.5 +2013,3,27,8,30,382,78,767,7.5,10.4,66.62,933,-0.1 +2013,3,27,9,30,601,95,872,7.6000000000000005,13.8,54.52,932,2.4000000000000004 +2013,3,27,10,30,777,106,924,7.300000000000001,16.8,43.410000000000004,932,2.9000000000000004 +2013,3,27,11,30,899,113,953,6.9,19.400000000000002,34.43,931,2.8000000000000003 +2013,3,27,12,30,953,110,970,6.6000000000000005,21.3,29.68,930,2.6 +2013,3,27,13,30,836,304,623,6.1000000000000005,22.6,31.2,929,2.4000000000000004 +2013,3,27,14,30,849,106,945,5.7,23.3,38.230000000000004,928,2.3000000000000003 +2013,3,27,15,30,698,100,900,5.5,23.200000000000003,48.39,928,2.2 +2013,3,27,16,30,436,131,610,5.300000000000001,22.200000000000003,60.04,928,2.2 +2013,3,27,17,30,272,67,677,5.1000000000000005,21.5,72.39,928,2.6 +2013,3,27,18,30,50,29,242,4.1000000000000005,16.7,84.92,928,3.6 +2013,3,27,19,30,0,0,0,4.7,14.8,97.68,929,4.2 +2013,3,27,20,30,0,0,0,5.1000000000000005,13.700000000000001,110.03,929,4.800000000000001 +2013,3,27,21,30,0,0,0,5.2,12.8,121.73,930,5.4 +2013,3,27,22,30,0,0,0,5.2,11.9,132.19,930,6 +2013,3,27,23,30,0,0,0,4.9,11.100000000000001,140.32,930,6.5 +2013,3,28,0,30,0,0,0,4.4,10.5,144.4,930,7 +2013,3,28,1,30,0,0,0,4.2,10.200000000000001,143.06,930,7.4 +2013,3,28,2,30,0,0,0,3.9000000000000004,9.9,136.81,929,7.7 +2013,3,28,3,30,0,0,0,3.6,9.3,127.38000000000001,929,8.1 +2013,3,28,4,30,0,0,0,3.4000000000000004,8.8,116.22,929,8.4 +2013,3,28,5,30,0,0,0,3.3000000000000003,8.6,104.14,929,8.6 +2013,3,28,6,30,0,0,0,3.6,9.3,91.62,930,9.1 +2013,3,28,7,30,149,58,470,4.4,11.3,78.87,930,9.4 +2013,3,28,8,30,373,88,711,4.9,14.3,66.34,931,9.9 +2013,3,28,9,30,589,105,828,4.7,17.5,54.22,931,10.100000000000001 +2013,3,28,10,30,764,114,889,4.6000000000000005,20.3,43.08,931,10.200000000000001 +2013,3,28,11,30,739,339,483,4.5,22.8,34.06,930,10.100000000000001 +2013,3,28,12,30,937,111,947,4.5,24.8,29.29,929,9.700000000000001 +2013,3,28,13,30,918,110,941,4.5,26.200000000000003,30.85,929,9.1 +2013,3,28,14,30,831,106,920,4.3,26.8,37.96,928,8.5 +2013,3,28,15,30,684,99,877,4.1000000000000005,26.900000000000002,48.18,927,7.9 +2013,3,28,16,30,488,87,799,3.8000000000000003,26.1,59.88,927,7.300000000000001 +2013,3,28,17,30,265,69,645,3.6,25.5,72.24,927,7.4 +2013,3,28,18,30,57,31,283,3.2,20.400000000000002,84.78,928,8.5 +2013,3,28,19,30,0,0,0,4.6000000000000005,19,97.53,929,8.200000000000001 +2013,3,28,20,30,0,0,0,5.300000000000001,18,109.86,929,8.5 +2013,3,28,21,30,0,0,0,5.2,16.7,121.53,930,8.9 +2013,3,28,22,30,0,0,0,5,15.5,131.94,930,9.600000000000001 +2013,3,28,23,30,0,0,0,4.9,14.600000000000001,140,930,10.5 +2013,3,29,0,30,0,0,0,4.6000000000000005,13.8,144.02,930,11.4 +2013,3,29,1,30,0,0,0,4.3,13.100000000000001,142.67000000000002,930,12 +2013,3,29,2,30,0,0,0,4,12.600000000000001,136.44,930,12.5 +2013,3,29,3,30,0,0,0,3.5,12.3,127.05,930,12.3 +2013,3,29,4,30,0,0,0,3.1,12.100000000000001,115.91,930,12.100000000000001 +2013,3,29,5,30,0,0,0,2.9000000000000004,11.9,103.86,930,11.9 +2013,3,29,6,30,0,0,0,3.2,12.4,91.35000000000001,930,12.4 +2013,3,29,7,30,102,73,146,4.1000000000000005,13.600000000000001,78.60000000000001,931,12.5 +2013,3,29,8,30,271,163,267,4.7,15.100000000000001,66.06,931,12.600000000000001 +2013,3,29,9,30,451,248,345,4.7,16.400000000000002,53.92,931,12.600000000000001 +2013,3,29,10,30,633,282,478,4.3,17.6,42.74,931,12.5 +2013,3,29,11,30,725,346,455,4.3,18.900000000000002,33.68,930,12.3 +2013,3,29,12,30,635,452,209,4.7,20.5,28.89,929,12.200000000000001 +2013,3,29,13,30,771,365,470,5,21.8,30.51,929,12 +2013,3,29,14,30,626,376,316,5,22.1,37.7,929,11.9 +2013,3,29,15,30,288,267,31,4.6000000000000005,21.900000000000002,47.980000000000004,928,11.9 +2013,3,29,16,30,240,211,56,4.1000000000000005,21.6,59.71,928,12.100000000000001 +2013,3,29,17,30,13,13,0,3.8000000000000003,21.3,72.09,927,12.3 +2013,3,29,18,30,41,32,99,2.6,17.8,84.64,928,12.600000000000001 +2013,3,29,19,30,0,0,0,3.2,16.400000000000002,97.38,928,13 +2013,3,29,20,30,0,0,0,3.8000000000000003,15.8,109.69,929,13.4 +2013,3,29,21,30,0,0,0,4.1000000000000005,15.100000000000001,121.32000000000001,929,13.700000000000001 +2013,3,29,22,30,0,0,0,4.2,14.600000000000001,131.68,929,13.700000000000001 +2013,3,29,23,30,0,0,0,4.2,14.200000000000001,139.68,929,13.5 +2013,3,30,0,30,0,0,0,4,13.8,143.64000000000001,929,13.200000000000001 +2013,3,30,1,30,0,0,0,3.9000000000000004,13.4,142.27,928,13 +2013,3,30,2,30,0,0,0,3.8000000000000003,12.9,136.07,928,12.8 +2013,3,30,3,30,0,0,0,3.8000000000000003,12.5,126.72,928,12.5 +2013,3,30,4,30,0,0,0,3.7,12,115.61,928,12 +2013,3,30,5,30,0,0,0,3.6,11.700000000000001,103.58,928,11.700000000000001 +2013,3,30,6,30,0,0,0,4,12.3,91.07000000000001,928,12.3 +2013,3,30,7,30,163,51,554,4.800000000000001,14.3,78.33,928,12.600000000000001 +2013,3,30,8,30,393,74,779,5.1000000000000005,17.3,65.78,928,12.700000000000001 +2013,3,30,9,30,613,85,890,4.5,20.700000000000003,53.620000000000005,928,12.4 +2013,3,30,10,30,768,128,867,3.6,24.1,42.410000000000004,928,11.600000000000001 +2013,3,30,11,30,878,175,842,2.9000000000000004,27.3,33.31,927,9.700000000000001 +2013,3,30,12,30,966,96,989,2.2,29.400000000000002,28.5,926,6.7 +2013,3,30,13,30,948,96,985,1.8,30.3,30.16,925,4.800000000000001 +2013,3,30,14,30,837,147,869,1.6,30.6,37.44,924,3.6 +2013,3,30,15,30,607,217,580,1.6,30.3,47.78,923,2.6 +2013,3,30,16,30,437,141,584,1.2000000000000002,29.200000000000003,59.550000000000004,923,1.7000000000000002 +2013,3,30,17,30,179,123,180,0.8,28.3,71.94,923,5.2 +2013,3,30,18,30,35,32,26,0.9,23.1,84.5,923,7.800000000000001 +2013,3,30,19,30,0,0,0,1.2000000000000002,21.1,97.23,923,6.2 +2013,3,30,20,30,0,0,0,1.5,20,109.52,923,5.800000000000001 +2013,3,30,21,30,0,0,0,1.8,19.3,121.12,924,5.300000000000001 +2013,3,30,22,30,0,0,0,2.1,18.7,131.43,923,4.6000000000000005 +2013,3,30,23,30,0,0,0,2.7,18.3,139.35,923,3.7 +2013,3,31,0,30,0,0,0,3.8000000000000003,18.1,143.26,923,2.5 +2013,3,31,1,30,0,0,0,5,18.400000000000002,141.88,923,1.3 +2013,3,31,2,30,0,0,0,5.7,18.8,135.7,923,0.7000000000000001 +2013,3,31,3,30,0,0,0,5.1000000000000005,18.7,126.38000000000001,924,1.3 +2013,3,31,4,30,0,0,0,4,18,115.31,924,2.6 +2013,3,31,5,30,0,0,0,3.5,17.1,103.3,925,3.9000000000000004 +2013,3,31,6,30,0,0,0,5,16.400000000000002,90.25,926,5.7 +2013,3,31,7,30,102,78,116,7,16.3,78.06,928,8 +2013,3,31,8,30,154,148,15,7.7,16.900000000000002,65.51,928,9.4 +2013,3,31,9,30,599,91,851,7.300000000000001,18.2,53.33,929,9.9 +2013,3,31,10,30,771,103,900,6.5,19.6,42.08,929,9.9 +2013,3,31,11,30,889,110,929,5.800000000000001,20.900000000000002,32.93,929,9.8 +2013,3,31,12,30,943,106,949,5,22.1,28.11,928,9.600000000000001 +2013,3,31,13,30,926,104,948,4.2,23,29.82,928,9.5 +2013,3,31,14,30,840,99,930,3.7,23.400000000000002,37.18,927,9.3 +2013,3,31,15,30,694,92,892,3.5,23.3,47.58,927,8.9 +2013,3,31,16,30,501,79,828,3.4000000000000004,22.5,59.38,926,8.4 +2013,3,31,17,30,278,60,696,3.4000000000000004,22,71.8,926,8 +2013,3,31,18,30,65,30,355,1.9000000000000001,18,84.36,927,8.1 +2013,3,31,19,30,0,0,0,1.7000000000000002,16.1,97.08,927,7.800000000000001 +2013,3,31,20,30,0,0,0,1.7000000000000002,15,109.35000000000001,928,7.4 +2013,3,31,21,30,0,0,0,1.6,13.9,120.92,928,7.1000000000000005 +2013,3,31,22,30,0,0,0,1.5,12.9,131.17000000000002,928,7 +2013,3,31,23,30,0,0,0,1.4000000000000001,12,139.03,928,7.1000000000000005 +2013,4,1,0,30,0,0,0,1.4000000000000001,11.3,142.89000000000001,928,7.300000000000001 +2013,4,1,1,30,0,0,0,1.4000000000000001,10.700000000000001,141.49,928,7.6000000000000005 +2013,4,1,2,30,0,0,0,1.4000000000000001,10.100000000000001,135.34,928,7.9 +2013,4,1,3,30,0,0,0,1.5,9.600000000000001,126.05,928,8.200000000000001 +2013,4,1,4,30,0,0,0,1.5,9.200000000000001,115.01,929,8.700000000000001 +2013,4,1,5,30,0,0,0,1.5,9,103.01,929,9 +2013,4,1,6,30,0,0,0,2.2,10.700000000000001,90.01,929,9.4 +2013,4,1,7,30,173,50,580,3.2,14.4,77.8,930,9.700000000000001 +2013,4,1,8,30,402,74,783,3.9000000000000004,18.5,65.23,930,9.5 +2013,4,1,9,30,617,88,878,4.3,22.1,53.03,930,8.4 +2013,4,1,10,30,789,98,926,4.3,24.6,41.76,929,7.9 +2013,4,1,11,30,905,104,950,4.3,26.5,32.56,929,7.7 +2013,4,1,12,30,959,103,967,4.4,27.900000000000002,27.71,927,7.5 +2013,4,1,13,30,941,102,963,4.4,28.6,29.48,926,7.300000000000001 +2013,4,1,14,30,853,99,944,4.5,28.8,36.92,925,7.1000000000000005 +2013,4,1,15,30,701,94,895,4.7,28.6,47.39,924,7 +2013,4,1,16,30,503,84,818,4.7,27.700000000000003,59.22,924,6.9 +2013,4,1,17,30,276,68,662,4.7,27,71.65,924,7.1000000000000005 +2013,4,1,18,30,64,34,303,4.3,23,84.22,924,8 +2013,4,1,19,30,0,0,0,4.7,21.3,96.93,924,8.4 +2013,4,1,20,30,0,0,0,4.7,20,109.18,925,9.1 +2013,4,1,21,30,0,0,0,4.4,18.900000000000002,120.71000000000001,925,9.9 +2013,4,1,22,30,0,0,0,3.9000000000000004,17.900000000000002,130.92000000000002,925,10.700000000000001 +2013,4,1,23,30,0,0,0,3.2,16.900000000000002,138.71,925,11.5 +2013,4,2,0,30,0,0,0,2.6,15.9,142.51,925,12.200000000000001 +2013,4,2,1,30,0,0,0,2.6,15.100000000000001,141.1,925,12.600000000000001 +2013,4,2,2,30,0,0,0,3,14.700000000000001,134.97,925,12.9 +2013,4,2,3,30,0,0,0,3.2,14.5,125.72,925,13.200000000000001 +2013,4,2,4,30,0,0,0,3,14.3,114.71000000000001,925,13.5 +2013,4,2,5,30,0,0,0,2.4000000000000004,14,102.74000000000001,925,13.700000000000001 +2013,4,2,6,30,0,0,0,2.1,14.100000000000001,89.79,926,13.700000000000001 +2013,4,2,7,30,6,6,0,2.5,14.5,77.53,927,13.600000000000001 +2013,4,2,8,30,34,34,0,3.4000000000000004,14.600000000000001,64.96000000000001,927,13 +2013,4,2,9,30,42,42,0,4.3,14,52.74,928,11.9 +2013,4,2,10,30,63,63,0,4.6000000000000005,13.200000000000001,41.43,928,10.3 +2013,4,2,11,30,106,106,0,4.5,12.700000000000001,32.19,928,9 +2013,4,2,12,30,104,104,0,4.3,12.5,27.32,928,8.1 +2013,4,2,13,30,185,178,8,4.1000000000000005,12.3,29.150000000000002,928,7.7 +2013,4,2,14,30,274,262,16,4,11.9,36.67,927,7.300000000000001 +2013,4,2,15,30,172,169,5,4.1000000000000005,11.3,47.19,927,6.9 +2013,4,2,16,30,162,160,4,4.1000000000000005,10.8,59.06,927,6.4 +2013,4,2,17,30,105,105,0,4.1000000000000005,10.600000000000001,71.51,927,6.1000000000000005 +2013,4,2,18,30,24,24,0,3.8000000000000003,9.8,84.08,927,6.2 +2013,4,2,19,30,0,0,0,3.7,9.5,96.78,928,6.5 +2013,4,2,20,30,0,0,0,3.8000000000000003,9.1,109.01,929,6.9 +2013,4,2,21,30,0,0,0,4,8.700000000000001,120.51,929,7.2 +2013,4,2,22,30,0,0,0,4.2,8.1,130.66,929,7.300000000000001 +2013,4,2,23,30,0,0,0,4.4,7.4,138.39000000000001,929,7.1000000000000005 +2013,4,3,0,30,0,0,0,4.7,6.800000000000001,142.13,929,6.5 +2013,4,3,1,30,0,0,0,4.9,6.2,140.71,929,5.800000000000001 +2013,4,3,2,30,0,0,0,4.9,5.6000000000000005,134.61,929,4.9 +2013,4,3,3,30,0,0,0,4.9,5.1000000000000005,125.4,929,4.2 +2013,4,3,4,30,0,0,0,4.800000000000001,4.7,114.41,930,3.6 +2013,4,3,5,30,0,0,0,4.7,4.4,102.46000000000001,930,3.2 +2013,4,3,6,30,0,0,0,4.6000000000000005,4.2,89.54,930,2.8000000000000003 +2013,4,3,7,30,159,89,315,4.6000000000000005,4.3,77.27,931,2.5 +2013,4,3,8,30,132,132,0,4.4,4.5,64.69,931,2.3000000000000003 +2013,4,3,9,30,102,102,0,4.3,5.1000000000000005,52.45,932,2.2 +2013,4,3,10,30,187,182,7,4.1000000000000005,5.800000000000001,41.11,932,2.2 +2013,4,3,11,30,89,89,0,3.8000000000000003,6.4,31.830000000000002,932,2.3000000000000003 +2013,4,3,12,30,99,99,0,3.7,6.800000000000001,26.94,932,2.5 +2013,4,3,13,30,217,207,11,3.8000000000000003,7.1000000000000005,28.82,931,2.7 +2013,4,3,14,30,98,98,0,4.4,7.6000000000000005,36.42,931,2.6 +2013,4,3,15,30,177,174,5,4.800000000000001,8.1,47,930,2.4000000000000004 +2013,4,3,16,30,185,179,13,4.7,8.200000000000001,58.910000000000004,930,2.1 +2013,4,3,17,30,157,128,91,4.5,8,71.37,931,1.9000000000000001 +2013,4,3,18,30,20,20,0,3.6,6.1000000000000005,83.94,932,1.8 +2013,4,3,19,30,0,0,0,3.2,4.7,96.63,933,1.7000000000000002 +2013,4,3,20,30,0,0,0,2.9000000000000004,3.6,108.83,933,1.6 +2013,4,3,21,30,0,0,0,2.6,2.8000000000000003,120.3,934,1.5 +2013,4,3,22,30,0,0,0,2.5,2.3000000000000003,130.4,934,1.5 +2013,4,3,23,30,0,0,0,2.6,1.9000000000000001,138.07,933,1.4000000000000001 +2013,4,4,0,30,0,0,0,2.8000000000000003,1.7000000000000002,141.76,933,1.3 +2013,4,4,1,30,0,0,0,3,1.5,140.32,933,1.1 +2013,4,4,2,30,0,0,0,3.3000000000000003,1.4000000000000001,134.24,932,0.9 +2013,4,4,3,30,0,0,0,3.5,1.3,125.07000000000001,933,0.6000000000000001 +2013,4,4,4,30,0,0,0,3.6,1.1,114.11,933,0.30000000000000004 +2013,4,4,5,30,0,0,0,3.6,0.9,102.18,933,-0.1 +2013,4,4,6,30,0,0,0,3.8000000000000003,1.2000000000000002,89.31,934,-0.30000000000000004 +2013,4,4,7,30,35,35,0,4.3,2.7,77,934,-0.7000000000000001 +2013,4,4,8,30,124,124,0,4.4,5.2,64.42,935,-0.8 +2013,4,4,9,30,207,201,11,4.3,8,52.160000000000004,935,-0.6000000000000001 +2013,4,4,10,30,404,351,70,4.2,10.8,40.79,934,-0.30000000000000004 +2013,4,4,11,30,730,365,427,4.3,13.5,31.46,934,0.1 +2013,4,4,12,30,992,103,993,4.3,15.700000000000001,26.55,933,0.5 +2013,4,4,13,30,977,99,1000,4.2,17.5,28.48,932,0.6000000000000001 +2013,4,4,14,30,889,91,988,4.1000000000000005,18.6,36.17,931,0.5 +2013,4,4,15,30,738,83,957,4,19,46.81,930,0.2 +2013,4,4,16,30,535,73,891,3.7,18.5,58.75,930,-0.1 +2013,4,4,17,30,303,58,762,3.5,18,71.23,930,-0.30000000000000004 +2013,4,4,18,30,79,30,451,1.8,12.100000000000001,83.8,931,1.9000000000000001 +2013,4,4,19,30,0,0,0,1.7000000000000002,9.5,96.48,932,1.5 +2013,4,4,20,30,0,0,0,1.6,8.1,108.66,932,1.3 +2013,4,4,21,30,0,0,0,1.4000000000000001,6.800000000000001,120.09,933,1.3 +2013,4,4,22,30,0,0,0,1.3,5.7,130.15,933,1.3 +2013,4,4,23,30,0,0,0,1.2000000000000002,4.800000000000001,137.75,933,1.5 +2013,4,5,0,30,0,0,0,1.3,4.1000000000000005,141.39000000000001,933,1.8 +2013,4,5,1,30,0,0,0,1.3,3.5,139.94,933,2 +2013,4,5,2,30,0,0,0,1.3,2.9000000000000004,133.88,933,2.2 +2013,4,5,3,30,0,0,0,1.3,2.5,124.74000000000001,933,2.4000000000000004 +2013,4,5,4,30,0,0,0,1.3,2.1,113.82000000000001,933,2.1 +2013,4,5,5,30,0,0,0,1.3,1.9000000000000001,101.9,933,1.9000000000000001 +2013,4,5,6,30,0,0,0,2.1,3.7,89.08,934,3 +2013,4,5,7,30,198,53,636,2.7,7.2,76.74,934,3.1 +2013,4,5,8,30,368,115,579,2.9000000000000004,11.3,64.15,934,3.3000000000000003 +2013,4,5,9,30,548,184,590,3.5,15.5,51.88,933,3.3000000000000003 +2013,4,5,10,30,648,303,454,3.9000000000000004,19,40.47,933,3 +2013,4,5,11,30,762,359,471,4.2,21.6,31.1,932,2.5 +2013,4,5,12,30,869,352,576,4.6000000000000005,23.400000000000002,26.16,930,2.3000000000000003 +2013,4,5,13,30,862,322,612,5,24.5,28.16,929,2.3000000000000003 +2013,4,5,14,30,733,318,512,5.300000000000001,25,35.93,928,2.4000000000000004 +2013,4,5,15,30,569,278,424,5.5,24.8,46.63,927,2.4000000000000004 +2013,4,5,16,30,519,97,810,5.300000000000001,23.8,58.6,926,2.4000000000000004 +2013,4,5,17,30,293,73,677,5,23.1,71.09,926,2.9000000000000004 +2013,4,5,18,30,75,35,360,3.7,18.2,83.67,926,4.3 +2013,4,5,19,30,0,0,0,4,16.3,96.33,926,4.9 +2013,4,5,20,30,0,0,0,4.6000000000000005,15.4,108.49000000000001,927,5.5 +2013,4,5,21,30,0,0,0,4.9,14.600000000000001,119.88,926,5.9 +2013,4,5,22,30,0,0,0,5.2,13.9,129.89000000000001,926,6.1000000000000005 +2013,4,5,23,30,0,0,0,5.4,13.3,137.43,925,6.2 +2013,4,6,0,30,0,0,0,5.4,12.700000000000001,141.01,925,6.2 +2013,4,6,1,30,0,0,0,5.4,12.200000000000001,139.55,924,6.1000000000000005 +2013,4,6,2,30,0,0,0,5.5,11.700000000000001,133.52,924,5.9 +2013,4,6,3,30,0,0,0,5.5,11.100000000000001,124.42,923,5.7 +2013,4,6,4,30,0,0,0,5.5,10.4,113.52,923,5.5 +2013,4,6,5,30,0,0,0,5.5,9.8,101.63,923,5.4 +2013,4,6,6,30,13,11,87,5.9,10.4,88.85000000000001,923,5.5 +2013,4,6,7,30,196,56,599,7.1000000000000005,13.100000000000001,76.49,923,6 +2013,4,6,8,30,429,77,799,7.4,17.2,63.89,923,6.6000000000000005 +2013,4,6,9,30,647,90,897,6.6000000000000005,21.3,51.6,923,6.300000000000001 +2013,4,6,10,30,826,99,952,5.800000000000001,25,40.160000000000004,923,4.9 +2013,4,6,11,30,945,106,976,5.2,27.900000000000002,30.740000000000002,922,3.4000000000000004 +2013,4,6,12,30,965,189,862,4.7,29.700000000000003,25.78,922,2.2 +2013,4,6,13,30,793,386,461,4.2,30.400000000000002,27.830000000000002,921,1.2000000000000002 +2013,4,6,14,30,646,388,319,3.6,30.200000000000003,35.69,920,0.4 +2013,4,6,15,30,588,256,482,2.7,29.5,46.44,920,-0.1 +2013,4,6,16,30,462,134,626,1.8,27.5,58.44,920,1.1 +2013,4,6,17,30,246,99,448,1.4000000000000001,26,70.95,920,7.800000000000001 +2013,4,6,18,30,60,37,205,1.8,21.200000000000003,83.53,921,7.1000000000000005 +2013,4,6,19,30,0,0,0,1.8,18.7,96.18,922,7 +2013,4,6,20,30,0,0,0,1.6,16.7,108.32000000000001,922,7.300000000000001 +2013,4,6,21,30,0,0,0,1.4000000000000001,15.200000000000001,119.68,923,7.6000000000000005 +2013,4,6,22,30,0,0,0,1.5,14.100000000000001,129.63,923,8.1 +2013,4,6,23,30,0,0,0,1.9000000000000001,13.600000000000001,137.11,923,8.5 +2013,4,7,0,30,0,0,0,2.5,13.3,140.64000000000001,923,8.9 +2013,4,7,1,30,0,0,0,3,13.100000000000001,139.17000000000002,922,9.200000000000001 +2013,4,7,2,30,0,0,0,3.3000000000000003,12.9,133.17000000000002,922,9.700000000000001 +2013,4,7,3,30,0,0,0,3.6,12.600000000000001,124.09,921,10.4 +2013,4,7,4,30,0,0,0,3.8000000000000003,12,113.23,921,11.100000000000001 +2013,4,7,5,30,0,0,0,4,11.600000000000001,101.36,922,11.600000000000001 +2013,4,7,6,30,6,6,0,4.5,12.5,88.62,922,11.700000000000001 +2013,4,7,7,30,56,56,0,5.2,15.200000000000001,76.23,922,11.8 +2013,4,7,8,30,239,191,108,5.7,18.900000000000002,63.63,922,12 +2013,4,7,9,30,404,294,175,6,22.200000000000003,51.32,922,11.5 +2013,4,7,10,30,677,294,499,6.1000000000000005,24.900000000000002,39.85,922,10.100000000000001 +2013,4,7,11,30,828,330,577,6.1000000000000005,27.200000000000003,30.38,921,8 +2013,4,7,12,30,985,114,964,6.1000000000000005,29.200000000000003,25.400000000000002,920,6.2 +2013,4,7,13,30,966,108,968,6.2,30.6,27.51,919,4.5 +2013,4,7,14,30,880,103,954,6.2,31.200000000000003,35.45,918,3.2 +2013,4,7,15,30,727,99,908,6.1000000000000005,31.1,46.26,917,2.1 +2013,4,7,16,30,361,229,251,5.5,30.1,58.29,917,1.4000000000000001 +2013,4,7,17,30,297,71,688,4.9,29.3,70.81,917,2.3000000000000003 +2013,4,7,18,30,78,37,360,3.4000000000000004,23.200000000000003,83.39,917,5.1000000000000005 +2013,4,7,19,30,0,0,0,4.1000000000000005,21.200000000000003,96.03,918,6.7 +2013,4,7,20,30,0,0,0,4.7,20.3,108.14,918,8.700000000000001 +2013,4,7,21,30,0,0,0,4.800000000000001,19.200000000000003,119.47,918,10.700000000000001 +2013,4,7,22,30,0,0,0,4.7,18.1,129.37,918,12.200000000000001 +2013,4,7,23,30,0,0,0,4.7,17.2,136.79,918,13 +2013,4,8,0,30,0,0,0,4.800000000000001,16.400000000000002,140.28,918,13.4 +2013,4,8,1,30,0,0,0,5,15.700000000000001,138.79,918,13.8 +2013,4,8,2,30,0,0,0,5.1000000000000005,15.100000000000001,132.81,918,14.3 +2013,4,8,3,30,0,0,0,4.9,14.600000000000001,123.77,917,14.600000000000001 +2013,4,8,4,30,0,0,0,4.7,14.3,112.94,917,14.3 +2013,4,8,5,30,0,0,0,4.4,14.3,101.08,917,14.3 +2013,4,8,6,30,15,13,56,4.9,15,88.39,918,14.9 +2013,4,8,7,30,194,70,511,5.9,17.2,75.98,918,14.9 +2013,4,8,8,30,351,154,441,6.4,20.400000000000002,63.370000000000005,918,14.9 +2013,4,8,9,30,557,196,574,6.1000000000000005,23.700000000000003,51.04,918,14.100000000000001 +2013,4,8,10,30,813,110,912,5.7,26.8,39.54,917,12.3 +2013,4,8,11,30,930,111,946,5.4,29.400000000000002,30.03,916,9.8 +2013,4,8,12,30,981,110,961,5.300000000000001,31,25.02,915,7.800000000000001 +2013,4,8,13,30,965,105,966,5.5,31.900000000000002,27.19,914,6.4 +2013,4,8,14,30,876,99,951,5.800000000000001,32.1,35.21,913,5.4 +2013,4,8,15,30,724,97,903,6,31.700000000000003,46.08,913,4.800000000000001 +2013,4,8,16,30,524,87,828,5.9,30.5,58.14,913,4.800000000000001 +2013,4,8,17,30,297,70,687,5.800000000000001,29.700000000000003,70.67,913,5.6000000000000005 +2013,4,8,18,30,79,37,366,5.6000000000000005,25,83.26,913,7.300000000000001 +2013,4,8,19,30,0,0,0,6.1000000000000005,22.6,95.88,914,9 +2013,4,8,20,30,0,0,0,6.6000000000000005,21.1,107.97,914,10.8 +2013,4,8,21,30,0,0,0,7,19.8,119.26,914,12.9 +2013,4,8,22,30,0,0,0,7.1000000000000005,18.8,129.11,914,15 +2013,4,8,23,30,0,0,0,6.9,17.8,136.47,914,16.3 +2013,4,9,0,30,0,0,0,7.1000000000000005,17.400000000000002,139.91,914,17 +2013,4,9,1,30,0,0,0,7.6000000000000005,17.3,138.41,914,17 +2013,4,9,2,30,0,0,0,7.800000000000001,17.3,132.46,914,16.900000000000002 +2013,4,9,3,30,0,0,0,7.7,17.3,123.45,914,16.7 +2013,4,9,4,30,0,0,0,7.2,17.1,112.64,914,16.7 +2013,4,9,5,30,0,0,0,6.6000000000000005,16.7,100.82000000000001,914,16.7 +2013,4,9,6,30,17,15,77,6.5,17.2,88.15,915,16.7 +2013,4,9,7,30,201,68,537,7,19.1,75.73,915,16.8 +2013,4,9,8,30,431,89,757,7.5,22.1,63.11,915,16.3 +2013,4,9,9,30,645,99,862,7.5,25.200000000000003,50.77,915,14.200000000000001 +2013,4,9,10,30,819,108,918,7,27.700000000000003,39.24,915,11.3 +2013,4,9,11,30,936,112,948,6.2,29.5,29.68,915,8.9 +2013,4,9,12,30,989,111,966,5.4,30.8,24.650000000000002,914,7.1000000000000005 +2013,4,9,13,30,968,110,961,4.7,31.6,26.87,914,5.7 +2013,4,9,14,30,880,108,943,4,31.8,34.980000000000004,913,4.5 +2013,4,9,15,30,727,104,895,3.3000000000000003,31.3,45.9,913,3.7 +2013,4,9,16,30,527,93,817,2.7,30,57.99,913,3.4000000000000004 +2013,4,9,17,30,297,75,666,2.3000000000000003,29.1,70.53,913,4.2 +2013,4,9,18,30,56,41,118,1.2000000000000002,23.1,83.12,914,9.1 +2013,4,9,19,30,0,0,0,1.2000000000000002,20.400000000000002,95.73,915,8.200000000000001 +2013,4,9,20,30,0,0,0,1.9000000000000001,18.6,107.8,916,8.6 +2013,4,9,21,30,0,0,0,3.9000000000000004,16.7,119.05,918,8.9 +2013,4,9,22,30,0,0,0,6.5,14,128.85,920,8.700000000000001 +2013,4,9,23,30,0,0,0,7.800000000000001,10.5,136.16,922,7 +2013,4,10,0,30,0,0,0,7.9,7.4,139.54,923,4.3 +2013,4,10,1,30,0,0,0,7.9,5.2,138.04,924,1.9000000000000001 +2013,4,10,2,30,0,0,0,7.7,3.5,132.11,925,0.8 +2013,4,10,3,30,0,0,0,7.2,2.1,123.14,925,0.4 +2013,4,10,4,30,0,0,0,6.5,1.3,112.36,926,-0.1 +2013,4,10,5,30,0,0,0,6.1000000000000005,0.8,100.55,927,-0.6000000000000001 +2013,4,10,6,30,4,4,0,6,0.4,87.89,928,-1.1 +2013,4,10,7,30,99,92,30,6.2,0.6000000000000001,75.48,928,-1.7000000000000002 +2013,4,10,8,30,135,135,0,6.2,1.6,62.86,929,-2.2 +2013,4,10,9,30,479,280,312,5.9,3.5,50.5,929,-2.5 +2013,4,10,10,30,601,369,299,5.4,6.1000000000000005,38.94,928,-2.4000000000000004 +2013,4,10,11,30,624,448,202,5,8.6,29.330000000000002,927,-2.1 +2013,4,10,12,30,777,409,404,4.7,10.8,24.27,927,-1.8 +2013,4,10,13,30,992,114,982,4.5,12.5,26.560000000000002,926,-1.7000000000000002 +2013,4,10,14,30,901,108,966,4.4,13.600000000000001,34.75,925,-1.9000000000000001 +2013,4,10,15,30,748,99,930,4.3,13.9,45.730000000000004,925,-2.4000000000000004 +2013,4,10,16,30,545,86,862,4.1000000000000005,13.5,57.84,925,-2.9000000000000004 +2013,4,10,17,30,313,69,728,3.9000000000000004,13.100000000000001,70.39,925,-3.2 +2013,4,10,18,30,88,38,413,2,9,82.98,925,-1.5 +2013,4,10,19,30,0,0,0,1.8,6.7,95.58,926,-0.5 +2013,4,10,20,30,0,0,0,2,5.7,107.62,927,-1.2000000000000002 +2013,4,10,21,30,0,0,0,2,4.800000000000001,118.84,927,-1.8 +2013,4,10,22,30,0,0,0,1.8,4.1000000000000005,128.59,927,-2 +2013,4,10,23,30,0,0,0,1.8,3.6,135.84,927,-2.1 +2013,4,11,0,30,0,0,0,1.6,3.3000000000000003,139.18,927,-2.3000000000000003 +2013,4,11,1,30,0,0,0,1.3,2.8000000000000003,137.67000000000002,927,-2.3000000000000003 +2013,4,11,2,30,0,0,0,1,2.2,131.76,926,-2.1 +2013,4,11,3,30,0,0,0,0.9,1.4000000000000001,122.82000000000001,926,-2.4000000000000004 +2013,4,11,4,30,0,0,0,1,0.6000000000000001,112.07000000000001,926,-2.9000000000000004 +2013,4,11,5,30,0,0,0,1.1,0.30000000000000004,100.28,925,-3.4000000000000004 +2013,4,11,6,30,24,17,163,1.7000000000000002,1.3,87.66,926,-3.5 +2013,4,11,7,30,222,59,640,1.9000000000000001,3.5,75.23,926,-5.300000000000001 +2013,4,11,8,30,457,80,820,1.2000000000000002,5.9,62.61,926,-6.7 +2013,4,11,9,30,674,93,908,0.7000000000000001,8.5,50.24,926,-6.4 +2013,4,11,10,30,849,102,956,1.1,11.3,38.64,925,-5.7 +2013,4,11,11,30,962,108,977,1.9000000000000001,14,28.98,924,-4.800000000000001 +2013,4,11,12,30,1014,104,995,2.4000000000000004,16.400000000000002,23.900000000000002,923,-3.9000000000000004 +2013,4,11,13,30,992,103,992,2.5,18.400000000000002,26.25,922,-3.2 +2013,4,11,14,30,901,99,973,2.4000000000000004,19.700000000000003,34.52,920,-2.7 +2013,4,11,15,30,748,93,935,2.3000000000000003,20.200000000000003,45.56,920,-2.6 +2013,4,11,16,30,546,83,866,1.9000000000000001,20,57.7,920,-2.6 +2013,4,11,17,30,315,66,737,1.6,19.700000000000003,70.26,920,-2.5 +2013,4,11,18,30,91,36,437,0.5,15.8,82.84,920,2.4000000000000004 +2013,4,11,19,30,0,0,0,1,13.600000000000001,95.43,921,-0.4 +2013,4,11,20,30,0,0,0,1.3,11.600000000000001,107.45,921,-0.1 +2013,4,11,21,30,0,0,0,1.7000000000000002,10,118.63,922,0.1 +2013,4,11,22,30,0,0,0,2.2,9.200000000000001,128.33,922,-0.30000000000000004 +2013,4,11,23,30,0,0,0,2.9000000000000004,8.6,135.52,923,-0.4 +2013,4,12,0,30,0,0,0,3.1,7.9,138.82,923,-0.2 +2013,4,12,1,30,0,0,0,3.1,7.1000000000000005,137.3,923,0.2 +2013,4,12,2,30,0,0,0,2.7,6.300000000000001,131.41,923,0.6000000000000001 +2013,4,12,3,30,0,0,0,2.1,5.6000000000000005,122.51,923,0.9 +2013,4,12,4,30,0,0,0,1.7000000000000002,5,111.79,924,1.2000000000000002 +2013,4,12,5,30,0,0,0,1.4000000000000001,4.800000000000001,100.02,924,1.4000000000000001 +2013,4,12,6,30,27,18,202,1.9000000000000001,6.6000000000000005,87.43,925,1.5 +2013,4,12,7,30,227,57,658,2.3000000000000003,10.100000000000001,74.99,926,1.8 +2013,4,12,8,30,459,78,821,2.8000000000000003,14.4,62.36,926,2.4000000000000004 +2013,4,12,9,30,673,93,902,3.5,18.900000000000002,49.97,926,2.4000000000000004 +2013,4,12,10,30,843,104,942,3.7,22.1,38.35,926,1 +2013,4,12,11,30,957,111,964,4.1000000000000005,24,28.64,925,0.2 +2013,4,12,12,30,1003,113,970,4.5,25.3,23.53,924,0 +2013,4,12,13,30,980,117,960,4.7,26,25.94,923,0 +2013,4,12,14,30,801,276,635,4.7,26.1,34.300000000000004,922,0.30000000000000004 +2013,4,12,15,30,730,115,876,4.6000000000000005,25.8,45.39,921,0.6000000000000001 +2013,4,12,16,30,527,106,785,4.2,25,57.56,921,1.1 +2013,4,12,17,30,300,86,628,3.9000000000000004,24.5,70.12,921,2.2 +2013,4,12,18,30,84,44,313,3.1,19.700000000000003,82.71000000000001,921,4.3 +2013,4,12,19,30,0,0,0,3.9000000000000004,17.900000000000002,95.27,922,4.2 +2013,4,12,20,30,0,0,0,4.800000000000001,17.2,107.27,922,4.4 +2013,4,12,21,30,0,0,0,5.1000000000000005,16.3,118.42,923,4.9 +2013,4,12,22,30,0,0,0,4.9,15.3,128.08,923,5.2 +2013,4,12,23,30,0,0,0,4.5,14.200000000000001,135.21,924,5.5 +2013,4,13,0,30,0,0,0,4.1000000000000005,13.3,138.46,924,5.7 +2013,4,13,1,30,0,0,0,4,12.5,136.93,924,5.9 +2013,4,13,2,30,0,0,0,3.7,11.700000000000001,131.07,924,6 +2013,4,13,3,30,0,0,0,3.2,11.100000000000001,122.2,924,6.1000000000000005 +2013,4,13,4,30,0,0,0,2.6,10.4,111.5,924,6.2 +2013,4,13,5,30,0,0,0,2,9.9,99.76,924,6.4 +2013,4,13,6,30,17,17,0,2.3000000000000003,10.700000000000001,87.2,924,6.800000000000001 +2013,4,13,7,30,187,78,415,3.3000000000000003,13,74.75,925,7.5 +2013,4,13,8,30,392,132,555,4,15.8,62.120000000000005,925,8.3 +2013,4,13,9,30,582,194,600,4.7,19,49.72,925,8 +2013,4,13,10,30,822,127,882,5.2,21.900000000000002,38.06,924,6.6000000000000005 +2013,4,13,11,30,821,369,514,5.5,24,28.3,923,5.4 +2013,4,13,12,30,986,125,937,5.5,25.3,23.16,922,5 +2013,4,13,13,30,962,128,925,5.4,26,25.63,921,4.9 +2013,4,13,14,30,867,130,890,5.2,26.1,34.08,921,5 +2013,4,13,15,30,687,166,739,5.1000000000000005,25.6,45.22,920,5 +2013,4,13,16,30,427,202,417,4.9,24.5,57.410000000000004,919,5.1000000000000005 +2013,4,13,17,30,290,101,551,4.800000000000001,23.8,69.99,919,5.4 +2013,4,13,18,30,48,44,32,3.5,20.3,82.57000000000001,920,6.300000000000001 +2013,4,13,19,30,0,0,0,3.8000000000000003,18.8,95.12,920,6.7 +2013,4,13,20,30,0,0,0,4.2,17.7,107.10000000000001,920,6.7 +2013,4,13,21,30,0,0,0,4.1000000000000005,16.3,118.21000000000001,920,7 +2013,4,13,22,30,0,0,0,4,15.200000000000001,127.82000000000001,920,7.300000000000001 +2013,4,13,23,30,0,0,0,4,14.200000000000001,134.9,919,7.6000000000000005 +2013,4,14,0,30,0,0,0,4.1000000000000005,13.5,138.1,919,7.9 +2013,4,14,1,30,0,0,0,4.3,12.8,136.57,918,8 +2013,4,14,2,30,0,0,0,4.4,12.3,130.73,918,8.200000000000001 +2013,4,14,3,30,0,0,0,4.5,11.8,121.89,917,8.3 +2013,4,14,4,30,0,0,0,4.6000000000000005,11.4,111.22,917,8.5 +2013,4,14,5,30,0,0,0,4.800000000000001,11.200000000000001,99.5,917,8.9 +2013,4,14,6,30,30,21,157,5.5,12.3,86.97,917,9.5 +2013,4,14,7,30,229,64,617,6.6000000000000005,15.700000000000001,74.52,917,10.4 +2013,4,14,8,30,464,84,805,6.9,20.400000000000002,61.88,917,10.700000000000001 +2013,4,14,9,30,677,98,892,6.800000000000001,25,49.46,917,8.6 +2013,4,14,10,30,853,107,944,6.9,28.200000000000003,37.77,916,2.8000000000000003 +2013,4,14,11,30,969,113,969,6.7,29.900000000000002,27.97,916,-0.8 +2013,4,14,12,30,1022,114,985,6.5,30.900000000000002,22.8,915,-2.2 +2013,4,14,13,30,999,113,981,6.300000000000001,31.400000000000002,25.330000000000002,914,-2.7 +2013,4,14,14,30,908,108,963,6.1000000000000005,31.6,33.86,913,-2.9000000000000004 +2013,4,14,15,30,754,101,923,5.7,31.200000000000003,45.050000000000004,913,-2.8000000000000003 +2013,4,14,16,30,552,89,856,4.800000000000001,30.200000000000003,57.27,913,-2.6 +2013,4,14,17,30,321,71,725,4.2,29.5,69.86,913,-0.9 +2013,4,14,18,30,94,40,414,2.4000000000000004,22.900000000000002,82.44,914,2.6 +2013,4,14,19,30,0,0,0,2.6,20.5,94.97,914,1.6 +2013,4,14,20,30,0,0,0,3,19.8,106.92,915,0.7000000000000001 +2013,4,14,21,30,0,0,0,3.6,19.200000000000003,118,916,0 +2013,4,14,22,30,0,0,0,4.2,18.8,127.56,916,-0.9 +2013,4,14,23,30,0,0,0,4.800000000000001,18.2,134.58,916,-1.6 +2013,4,15,0,30,0,0,0,4.9,17.2,137.75,916,-2 +2013,4,15,1,30,0,0,0,4.7,15.9,136.2,916,-1.9000000000000001 +2013,4,15,2,30,0,0,0,4.5,14.9,130.39000000000001,916,-1.6 +2013,4,15,3,30,0,0,0,4.2,14.100000000000001,121.58,917,-1.2000000000000002 +2013,4,15,4,30,0,0,0,4,13.5,110.95,917,-0.7000000000000001 +2013,4,15,5,30,0,0,0,3.8000000000000003,13,99.25,918,-0.2 +2013,4,15,6,30,34,21,228,3.9000000000000004,14.100000000000001,86.74,918,0.6000000000000001 +2013,4,15,7,30,237,60,657,3.9000000000000004,17.3,74.28,919,1.4000000000000001 +2013,4,15,8,30,470,80,822,3.8000000000000003,21.200000000000003,61.64,919,2.2 +2013,4,15,9,30,684,92,906,3.7,24.900000000000002,49.21,920,1.6 +2013,4,15,10,30,856,100,953,3.5,27.8,37.49,920,0.6000000000000001 +2013,4,15,11,30,971,105,977,3.4000000000000004,30.200000000000003,27.64,919,0.30000000000000004 +2013,4,15,12,30,979,217,824,3.4000000000000004,32.1,22.44,919,0.30000000000000004 +2013,4,15,13,30,896,324,632,3.7,33.300000000000004,25.03,918,0.4 +2013,4,15,14,30,902,102,960,4.3,33.7,33.65,917,0.4 +2013,4,15,15,30,749,97,921,4.7,33.5,44.89,916,0.2 +2013,4,15,16,30,512,100,759,4.5,32.4,57.13,916,-0.2 +2013,4,15,17,30,321,69,728,4.1000000000000005,31.6,69.73,916,1 +2013,4,15,18,30,79,42,275,2.1,24.700000000000003,82.3,917,4.6000000000000005 +2013,4,15,19,30,0,0,0,2.4000000000000004,22.1,94.82000000000001,917,4.2 +2013,4,15,20,30,0,0,0,3.3000000000000003,21.6,106.75,918,4.5 +2013,4,15,21,30,0,0,0,4.1000000000000005,21.200000000000003,117.79,919,5.1000000000000005 +2013,4,15,22,30,0,0,0,4.6000000000000005,20.5,127.3,919,5.4 +2013,4,15,23,30,0,0,0,4.3,19.400000000000002,134.27,919,5.6000000000000005 +2013,4,16,0,30,0,0,0,3.7,18.1,137.4,919,6 +2013,4,16,1,30,0,0,0,3.3000000000000003,17.1,135.85,919,6.6000000000000005 +2013,4,16,2,30,0,0,0,3.1,16.5,130.05,920,7.2 +2013,4,16,3,30,0,0,0,2.9000000000000004,16,121.28,920,7.9 +2013,4,16,4,30,0,0,0,2.9000000000000004,15.600000000000001,110.67,921,8.9 +2013,4,16,5,30,0,0,0,3,15.4,98.99000000000001,921,10.200000000000001 +2013,4,16,6,30,24,21,41,3.6,16.5,86.51,922,11.700000000000001 +2013,4,16,7,30,210,70,511,4.5,19.1,74.05,923,13.3 +2013,4,16,8,30,389,157,483,4.5,22.1,61.410000000000004,923,14.700000000000001 +2013,4,16,9,30,563,226,513,3.7,25,48.96,923,14.600000000000001 +2013,4,16,10,30,830,121,890,2.9000000000000004,27.6,37.21,923,13.8 +2013,4,16,11,30,940,127,915,2.8000000000000003,29.700000000000003,27.310000000000002,923,13 +2013,4,16,12,30,983,132,918,3.2,31.200000000000003,22.080000000000002,922,12.600000000000001 +2013,4,16,13,30,955,132,907,3.9000000000000004,32.300000000000004,24.740000000000002,921,12.5 +2013,4,16,14,30,862,132,876,4.6000000000000005,32.6,33.44,920,12.8 +2013,4,16,15,30,703,142,790,5.1000000000000005,32.4,44.730000000000004,919,13.3 +2013,4,16,16,30,380,237,264,5.4,31.5,56.99,919,13.8 +2013,4,16,17,30,257,113,414,5.5,30.900000000000002,69.59,919,14.3 +2013,4,16,18,30,71,46,186,5.300000000000001,27.6,82.17,920,14.600000000000001 +2013,4,16,19,30,0,0,0,5.9,25.700000000000003,94.67,920,14.700000000000001 +2013,4,16,20,30,0,0,0,6.2,24.3,106.57000000000001,921,14.8 +2013,4,16,21,30,0,0,0,6.4,22.900000000000002,117.58,921,15.200000000000001 +2013,4,16,22,30,0,0,0,6.4,21.6,127.05,921,15.9 +2013,4,16,23,30,0,0,0,6.300000000000001,20.3,133.96,921,16.7 +2013,4,17,0,30,0,0,0,6.2,19.3,137.05,921,17.3 +2013,4,17,1,30,0,0,0,6,18.8,135.49,921,17.8 +2013,4,17,2,30,0,0,0,5.7,18.6,129.72,920,18.1 +2013,4,17,3,30,0,0,0,5.300000000000001,18.7,120.98,920,18.3 +2013,4,17,4,30,0,0,0,4.9,18.8,110.4,920,18.400000000000002 +2013,4,17,5,30,0,0,0,4.7,19,98.74000000000001,920,18.6 +2013,4,17,6,30,25,22,38,5,19.900000000000002,86.29,920,18.8 +2013,4,17,7,30,200,124,272,6,21.6,73.82000000000001,920,19.1 +2013,4,17,8,30,408,199,433,7.1000000000000005,23.8,61.18,920,19.200000000000003 +2013,4,17,9,30,607,239,558,7.7,26,48.72,920,18.8 +2013,4,17,10,30,774,248,659,7.7,27.900000000000002,36.94,919,18 +2013,4,17,11,30,890,236,735,7.5,29.6,26.990000000000002,918,17 +2013,4,17,12,30,945,215,785,7.2,31,21.73,917,16 +2013,4,17,13,30,928,192,809,7,32.1,24.45,916,14.9 +2013,4,17,14,30,847,171,807,6.800000000000001,32.6,33.230000000000004,915,13.700000000000001 +2013,4,17,15,30,552,324,320,6.6000000000000005,32.5,44.57,914,12.4 +2013,4,17,16,30,462,170,535,6.1000000000000005,31.6,56.86,913,11.200000000000001 +2013,4,17,17,30,243,126,332,5.800000000000001,30.900000000000002,69.46000000000001,913,11.3 +2013,4,17,18,30,91,47,313,5.9,26.5,82.04,913,13.100000000000001 +2013,4,17,19,30,0,0,0,6.4,24.3,94.52,913,14.9 +2013,4,17,20,30,0,0,0,6.4,23,106.4,914,16.3 +2013,4,17,21,30,0,0,0,6,21.900000000000002,117.37,915,17.3 +2013,4,17,22,30,0,0,0,4.9,21,126.79,916,18 +2013,4,17,23,30,0,0,0,3.8000000000000003,20.400000000000002,133.66,917,17.8 +2013,4,18,0,30,0,0,0,3.7,19.700000000000003,136.70000000000002,918,16.1 +2013,4,18,1,30,0,0,0,4.7,18.1,135.14000000000001,920,11.600000000000001 +2013,4,18,2,30,0,0,0,6.2,15.200000000000001,129.39000000000001,921,4.800000000000001 +2013,4,18,3,30,0,0,0,7.300000000000001,11.5,120.68,923,-0.2 +2013,4,18,4,30,0,0,0,7.800000000000001,8.1,110.13,924,-0.2 +2013,4,18,5,30,0,0,0,7.800000000000001,5.7,98.5,926,0 +2013,4,18,6,30,34,23,151,7.9,4.9,86.05,927,-1 +2013,4,18,7,30,189,95,336,7.9,5.6000000000000005,73.59,928,-2.6 +2013,4,18,8,30,494,79,856,7.7,7.2,60.95,928,-4.1000000000000005 +2013,4,18,9,30,711,88,941,7.300000000000001,9.1,48.480000000000004,928,-5.2 +2013,4,18,10,30,891,92,996,7,11.200000000000001,36.67,928,-6 +2013,4,18,11,30,1007,94,1022,6.800000000000001,13,26.67,928,-6.6000000000000005 +2013,4,18,12,30,1055,93,1033,6.800000000000001,14.4,21.37,928,-7.1000000000000005 +2013,4,18,13,30,1032,91,1031,6.7,15.4,24.16,928,-7.6000000000000005 +2013,4,18,14,30,939,87,1016,6.6000000000000005,15.700000000000001,33.03,928,-8.200000000000001 +2013,4,18,15,30,782,86,974,6.4,15.600000000000001,44.410000000000004,928,-8.8 +2013,4,18,16,30,578,77,913,6.2,14.8,56.72,928,-9.5 +2013,4,18,17,30,343,63,795,6,14.200000000000001,69.33,928,-10 +2013,4,18,18,30,112,37,527,4.6000000000000005,11.100000000000001,81.89,930,-10.100000000000001 +2013,4,18,19,30,0,0,0,3.6,9,94.37,931,-9.1 +2013,4,18,20,30,0,0,0,3.1,7.5,106.22,932,-8.200000000000001 +2013,4,18,21,30,0,0,0,2.8000000000000003,6.300000000000001,117.16,933,-7.5 +2013,4,18,22,30,0,0,0,2.7,5.4,126.53,933,-7.1000000000000005 +2013,4,18,23,30,0,0,0,2.7,4.6000000000000005,133.35,934,-7.1000000000000005 +2013,4,19,0,30,0,0,0,2.7,3.9000000000000004,136.36,934,-7.300000000000001 +2013,4,19,1,30,0,0,0,2.6,3.1,134.79,934,-7.6000000000000005 +2013,4,19,2,30,0,0,0,2.3000000000000003,2.4000000000000004,129.06,934,-7.9 +2013,4,19,3,30,0,0,0,2,1.6,120.38,935,-8.1 +2013,4,19,4,30,0,0,0,1.8,0.9,109.86,935,-8.200000000000001 +2013,4,19,5,30,0,0,0,2,0.8,98.25,936,-8.4 +2013,4,19,6,30,49,25,324,2.8000000000000003,2.5,85.82000000000001,937,-8.700000000000001 +2013,4,19,7,30,264,63,706,3.6,5.6000000000000005,73.37,937,-9.600000000000001 +2013,4,19,8,30,502,86,850,3.7,8.8,60.72,938,-10 +2013,4,19,9,30,718,101,926,3.4000000000000004,11.5,48.24,937,-9.8 +2013,4,19,10,30,892,110,972,3.2,13.8,36.410000000000004,937,-9.5 +2013,4,19,11,30,1008,114,998,2.9000000000000004,15.8,26.36,936,-9.5 +2013,4,19,12,30,1057,113,1011,2.6,17.2,21.03,935,-9.9 +2013,4,19,13,30,1033,109,1011,2.3000000000000003,18.1,23.88,934,-10.3 +2013,4,19,14,30,940,105,994,2.3000000000000003,18.7,32.82,933,-10.600000000000001 +2013,4,19,15,30,783,98,957,2.2,18.8,44.25,932,-11 +2013,4,19,16,30,578,86,893,2.1,18.400000000000002,56.58,932,-11.3 +2013,4,19,17,30,344,69,775,2.1,18.1,69.2,931,-11.600000000000001 +2013,4,19,18,30,113,40,507,1.1,13.200000000000001,81.76,931,-3.6 +2013,4,19,19,30,0,0,0,1.4000000000000001,10.3,94.22,931,-4.2 +2013,4,19,20,30,0,0,0,2,9.4,106.05,931,-5.5 +2013,4,19,21,30,0,0,0,3.1,9.200000000000001,116.95,931,-6.800000000000001 +2013,4,19,22,30,0,0,0,4.1000000000000005,8.9,126.28,931,-7.300000000000001 +2013,4,19,23,30,0,0,0,4.7,8.200000000000001,133.05,931,-6.7 +2013,4,20,0,30,0,0,0,4.9,7.5,136.02,930,-6.2 +2013,4,20,1,30,0,0,0,4.800000000000001,6.800000000000001,134.45,930,-5.9 +2013,4,20,2,30,0,0,0,4.4,5.9,128.74,930,-5.6000000000000005 +2013,4,20,3,30,0,0,0,4,5.300000000000001,120.09,929,-5.1000000000000005 +2013,4,20,4,30,0,0,0,4.1000000000000005,4.9,109.60000000000001,929,-4.6000000000000005 +2013,4,20,5,30,0,0,0,4.3,4.800000000000001,98.01,930,-4 +2013,4,20,6,30,50,27,294,4.7,5.800000000000001,85.61,930,-3.4000000000000004 +2013,4,20,7,30,263,64,686,5.9,8.8,73.15,930,-3.1 +2013,4,20,8,30,498,84,842,7.300000000000001,12.9,60.51,930,-3.7 +2013,4,20,9,30,714,97,921,7.9,16.400000000000002,48.01,930,-4.4 +2013,4,20,10,30,880,106,959,7.800000000000001,19.200000000000003,36.15,929,-4.7 +2013,4,20,11,30,994,111,983,7.6000000000000005,21.3,26.05,928,-4.6000000000000005 +2013,4,20,12,30,1041,112,993,7.4,22.900000000000002,20.68,927,-4.6000000000000005 +2013,4,20,13,30,1017,113,986,7.2,23.900000000000002,23.6,926,-4.6000000000000005 +2013,4,20,14,30,923,110,965,7.1000000000000005,24.3,32.62,925,-4.7 +2013,4,20,15,30,764,105,918,6.800000000000001,24.1,44.1,924,-4.7 +2013,4,20,16,30,561,95,844,6.4,23.3,56.45,924,-4.7 +2013,4,20,17,30,328,78,698,6.1000000000000005,22.700000000000003,69.07000000000001,924,-4.4 +2013,4,20,18,30,103,47,386,5.2,18.8,81.63,924,-3.6 +2013,4,20,19,30,0,0,0,5.1000000000000005,16.3,94.07000000000001,925,-2.7 +2013,4,20,20,30,0,0,0,5,14.700000000000001,105.88,926,-1.9000000000000001 +2013,4,20,21,30,0,0,0,4.9,13.200000000000001,116.74000000000001,926,-1.2000000000000002 +2013,4,20,22,30,0,0,0,5.1000000000000005,12,126.02,926,-1 +2013,4,20,23,30,0,0,0,5,11,132.74,926,-0.9 +2013,4,21,0,30,0,0,0,4.800000000000001,10.100000000000001,135.68,926,-0.7000000000000001 +2013,4,21,1,30,0,0,0,4.6000000000000005,9.200000000000001,134.1,926,-0.5 +2013,4,21,2,30,0,0,0,4.1000000000000005,8.4,128.42000000000002,926,0.30000000000000004 +2013,4,21,3,30,0,0,0,3.6,7.5,119.8,926,1.2000000000000002 +2013,4,21,4,30,0,0,0,3.2,6.9,109.34,927,2.1 +2013,4,21,5,30,0,0,0,3.3000000000000003,6.6000000000000005,97.77,927,2.9000000000000004 +2013,4,21,6,30,49,29,247,4.1000000000000005,7.9,85.39,928,3.8000000000000003 +2013,4,21,7,30,256,72,626,5,10.700000000000001,72.94,929,5 +2013,4,21,8,30,486,96,786,5.2,14,60.29,929,6.1000000000000005 +2013,4,21,9,30,697,111,873,4.7,17.5,47.78,930,6.1000000000000005 +2013,4,21,10,30,864,120,918,4.1000000000000005,20.700000000000003,35.89,929,5.7 +2013,4,21,11,30,976,125,944,3.8000000000000003,23.3,25.740000000000002,929,5 +2013,4,21,12,30,1021,126,954,3.7,25.200000000000003,20.34,928,4.3 +2013,4,21,13,30,998,124,952,3.7,26.400000000000002,23.32,927,3.6 +2013,4,21,14,30,907,118,935,3.7,27.1,32.43,926,2.8000000000000003 +2013,4,21,15,30,756,107,901,3.8000000000000003,27.200000000000003,43.95,926,1.9000000000000001 +2013,4,21,16,30,559,94,839,3.8000000000000003,26.6,56.32,925,1 +2013,4,21,17,30,332,75,716,3.9000000000000004,26.200000000000003,68.95,925,0.8 +2013,4,21,18,30,109,43,444,3.5,21,81.5,926,3.7 +2013,4,21,19,30,0,0,0,4.3,18.400000000000002,93.92,926,5.1000000000000005 +2013,4,21,20,30,0,0,0,4.9,16.900000000000002,105.7,927,6.300000000000001 +2013,4,21,21,30,0,0,0,5.2,15.700000000000001,116.53,928,7.2 +2013,4,21,22,30,0,0,0,5.300000000000001,14.700000000000001,125.77,928,7.6000000000000005 +2013,4,21,23,30,0,0,0,5.2,13.8,132.44,927,8 +2013,4,22,0,30,0,0,0,5.1000000000000005,13,135.35,927,8.200000000000001 +2013,4,22,1,30,0,0,0,5.2,12.600000000000001,133.77,927,8.3 +2013,4,22,2,30,0,0,0,5.2,12.3,128.11,927,8.3 +2013,4,22,3,30,0,0,0,4.800000000000001,12,119.52,927,8.4 +2013,4,22,4,30,0,0,0,4.6000000000000005,11.600000000000001,109.09,927,8.9 +2013,4,22,5,30,0,0,0,4.7,11.5,97.54,927,9.9 +2013,4,22,6,30,50,32,209,5.5,12.8,85.18,927,11 +2013,4,22,7,30,253,80,583,6.800000000000001,15.4,72.73,927,12 +2013,4,22,8,30,483,99,768,7.4,18.8,60.08,927,12.3 +2013,4,22,9,30,694,109,867,7.2,22.200000000000003,47.56,927,11.9 +2013,4,22,10,30,861,116,916,6.800000000000001,25.200000000000003,35.64,926,10.8 +2013,4,22,11,30,972,120,944,6.5,27.700000000000003,25.44,925,9.600000000000001 +2013,4,22,12,30,1019,117,960,6.300000000000001,29.6,20,924,8.5 +2013,4,22,13,30,994,118,952,6.2,30.700000000000003,23.05,923,7.4 +2013,4,22,14,30,902,116,930,6.1000000000000005,31.3,32.24,922,6.4 +2013,4,22,15,30,750,109,888,5.9,31.400000000000002,43.800000000000004,921,5.4 +2013,4,22,16,30,554,97,821,5.5,30.8,56.19,920,4.3 +2013,4,22,17,30,329,78,697,5.2,30.3,68.82000000000001,920,3.7 +2013,4,22,18,30,108,45,420,4.2,25.5,81.37,920,4.9 +2013,4,22,19,30,0,0,0,5.1000000000000005,23.3,93.77,921,6.1000000000000005 +2013,4,22,20,30,0,0,0,5.6000000000000005,22,105.53,921,7.1000000000000005 +2013,4,22,21,30,0,0,0,5.5,20.5,116.32000000000001,921,8.1 +2013,4,22,22,30,0,0,0,5.6000000000000005,19.200000000000003,125.52,921,9 +2013,4,22,23,30,0,0,0,5.6000000000000005,18.2,132.14000000000001,921,9.9 +2013,4,23,0,30,0,0,0,5.300000000000001,17.3,135.02,921,10.600000000000001 +2013,4,23,1,30,0,0,0,4.5,16.400000000000002,133.43,921,11.100000000000001 +2013,4,23,2,30,0,0,0,2.6,15.100000000000001,127.79,921,11.4 +2013,4,23,3,30,0,0,0,2,13.600000000000001,119.24000000000001,922,11.4 +2013,4,23,4,30,0,0,0,3.6,12.200000000000001,108.83,924,10.600000000000001 +2013,4,23,5,30,0,0,0,5.2,10.5,97.31,926,8.700000000000001 +2013,4,23,6,30,15,15,0,6.1000000000000005,9.1,84.97,927,5.800000000000001 +2013,4,23,7,30,64,64,0,6.6000000000000005,8.6,72.52,929,3.4000000000000004 +2013,4,23,8,30,183,175,15,6.5,8.5,59.870000000000005,930,2 +2013,4,23,9,30,246,235,17,6.2,8.5,47.34,930,1.1 +2013,4,23,10,30,405,363,51,5.7,9.200000000000001,35.4,931,0.4 +2013,4,23,11,30,384,358,28,5.1000000000000005,10.200000000000001,25.150000000000002,931,0.2 +2013,4,23,12,30,447,410,39,4.4,11.4,19.66,930,0.2 +2013,4,23,13,30,531,455,82,4,12.5,22.78,930,0.30000000000000004 +2013,4,23,14,30,483,411,85,3.9000000000000004,13.100000000000001,32.05,929,0.30000000000000004 +2013,4,23,15,30,382,330,71,4,13.200000000000001,43.65,929,0.2 +2013,4,23,16,30,434,217,387,4.3,12.600000000000001,56.06,929,-0.30000000000000004 +2013,4,23,17,30,192,149,120,4.4,12.100000000000001,68.69,929,-0.8 +2013,4,23,18,30,112,45,438,4.2,9.200000000000001,81.23,930,-1.2000000000000002 +2013,4,23,19,30,0,0,0,4.4,7.300000000000001,93.62,931,-1.5 +2013,4,23,20,30,0,0,0,5,5.9,105.35000000000001,933,-1.6 +2013,4,23,21,30,0,0,0,5.6000000000000005,4.6000000000000005,116.12,934,-1.8 +2013,4,23,22,30,0,0,0,5.7,3.4000000000000004,125.27,935,-2.2 +2013,4,23,23,30,0,0,0,5.2,2.3000000000000003,131.85,936,-2.8000000000000003 +2013,4,24,0,30,0,0,0,4.6000000000000005,1.4000000000000001,134.69,936,-3.4000000000000004 +2013,4,24,1,30,0,0,0,4.3,0.7000000000000001,133.1,936,-3.8000000000000003 +2013,4,24,2,30,0,0,0,4.1000000000000005,0.2,127.49000000000001,936,-4.2 +2013,4,24,3,30,0,0,0,3.7,0,118.96000000000001,936,-4.4 +2013,4,24,4,30,0,0,0,3.3000000000000003,-0.2,108.58,936,-4.6000000000000005 +2013,4,24,5,30,0,0,0,3.3000000000000003,-0.30000000000000004,97.08,937,-4.7 +2013,4,24,6,30,60,30,332,3.9000000000000004,0.7000000000000001,84.75,937,-4.800000000000001 +2013,4,24,7,30,273,64,689,4.3,2.8000000000000003,72.32000000000001,938,-4.9 +2013,4,24,8,30,504,82,836,4.2,5.2,59.67,938,-4.800000000000001 +2013,4,24,9,30,715,94,912,3.9000000000000004,7.800000000000001,47.13,938,-4.6000000000000005 +2013,4,24,10,30,883,102,955,3.6,10.4,35.160000000000004,937,-4.5 +2013,4,24,11,30,994,107,977,3.2,12.8,24.85,936,-4.4 +2013,4,24,12,30,1035,109,982,2.8000000000000003,14.8,19.330000000000002,935,-4.3 +2013,4,24,13,30,1006,110,970,2.4000000000000004,16.400000000000002,22.51,935,-4.3 +2013,4,24,14,30,914,109,948,2.1,17.3,31.86,934,-4.2 +2013,4,24,15,30,757,106,898,2.1,17.6,43.51,934,-4 +2013,4,24,16,30,560,95,829,2.1,17.2,55.93,933,-3.8000000000000003 +2013,4,24,17,30,207,149,159,2.2,16.8,68.57000000000001,933,-3.6 +2013,4,24,18,30,113,45,438,1.6,13.200000000000001,81.10000000000001,934,-2.7 +2013,4,24,19,30,0,0,0,1.5,10.8,93.47,934,-0.7000000000000001 +2013,4,24,20,30,0,0,0,2.1,10.100000000000001,105.18,935,-2 +2013,4,24,21,30,0,0,0,2.6,9.600000000000001,115.91,936,-2.7 +2013,4,24,22,30,0,0,0,2.7,9,125.02,936,-2.7 +2013,4,24,23,30,0,0,0,2.6,8.5,131.55,936,-2.4000000000000004 +2013,4,25,0,30,0,0,0,2.5,7.800000000000001,134.37,936,-2 +2013,4,25,1,30,0,0,0,2.1,7.2,132.77,936,-1.7000000000000002 +2013,4,25,2,30,0,0,0,1.7000000000000002,6.800000000000001,127.18,936,-1.3 +2013,4,25,3,30,0,0,0,1.5,6.6000000000000005,118.69,937,-1 +2013,4,25,4,30,0,0,0,1.4000000000000001,6.5,108.34,937,-0.8 +2013,4,25,5,30,0,0,0,1.6,6.7,96.85000000000001,937,-0.7000000000000001 +2013,4,25,6,30,60,33,280,2.3000000000000003,8.3,84.55,937,-0.7000000000000001 +2013,4,25,7,30,72,72,0,3.1,11,72.12,938,-1.1 +2013,4,25,8,30,345,215,256,3.7,13.700000000000001,59.47,937,-1.8 +2013,4,25,9,30,598,226,545,4.1000000000000005,16.400000000000002,46.92,937,-1.5 +2013,4,25,10,30,638,389,303,4.1000000000000005,18.900000000000002,34.92,936,-0.6000000000000001 +2013,4,25,11,30,792,396,435,4.1000000000000005,21.1,24.57,935,0.6000000000000001 +2013,4,25,12,30,773,456,335,4.4,22.8,19.01,934,1.9000000000000001 +2013,4,25,13,30,371,349,24,4.800000000000001,23.900000000000002,22.25,933,3.2 +2013,4,25,14,30,385,355,35,5.300000000000001,24.3,31.68,932,4.3 +2013,4,25,15,30,455,352,142,5.6000000000000005,24.1,43.36,931,5 +2013,4,25,16,30,332,254,138,5.7,23.400000000000002,55.800000000000004,930,5.300000000000001 +2013,4,25,17,30,323,87,642,5.7,23,68.44,930,5.7 +2013,4,25,18,30,109,49,379,4.6000000000000005,19.6,80.97,930,6.2 +2013,4,25,19,30,0,0,0,4.5,17.3,93.32000000000001,930,6.800000000000001 +2013,4,25,20,30,0,0,0,4.7,15.9,105.01,931,7.300000000000001 +2013,4,25,21,30,0,0,0,4.6000000000000005,14.8,115.7,931,7.9 +2013,4,25,22,30,0,0,0,4.4,14,124.77,931,8.4 +2013,4,25,23,30,0,0,0,4.6000000000000005,13.5,131.26,931,8.9 +2013,4,26,0,30,0,0,0,4.9,13.3,134.04,930,9.4 +2013,4,26,1,30,0,0,0,4.9,13.100000000000001,132.45,930,9.9 +2013,4,26,2,30,0,0,0,4.7,12.9,126.88000000000001,929,10.3 +2013,4,26,3,30,0,0,0,4.5,12.700000000000001,118.41,929,10.600000000000001 +2013,4,26,4,30,0,0,0,4.5,12.4,108.09,929,10.9 +2013,4,26,5,30,0,0,0,4.7,12.4,96.63,929,11.200000000000001 +2013,4,26,6,30,57,36,211,5.1000000000000005,13.5,84.36,929,11.5 +2013,4,26,7,30,257,86,551,6,15.8,71.92,929,11.700000000000001 +2013,4,26,8,30,382,198,360,6.5,18.8,59.28,929,12 +2013,4,26,9,30,606,225,556,6.4,21.8,46.72,929,12 +2013,4,26,10,30,863,121,902,5.800000000000001,24.700000000000003,34.69,929,11.5 +2013,4,26,11,30,977,120,940,5.1000000000000005,27.400000000000002,24.29,928,10.3 +2013,4,26,12,30,1025,116,960,4.6000000000000005,29.5,18.68,927,8.3 +2013,4,26,13,30,1005,112,964,4.4,30.900000000000002,21.990000000000002,926,5.9 +2013,4,26,14,30,918,105,954,4.3,31.700000000000003,31.5,926,3.4000000000000004 +2013,4,26,15,30,758,112,887,4.2,31.900000000000002,43.22,925,1 +2013,4,26,16,30,578,82,879,3.7,31.3,55.68,925,-1.2000000000000002 +2013,4,26,17,30,353,65,779,3.4000000000000004,30.8,68.32000000000001,925,-2.1 +2013,4,26,18,30,125,40,536,1.6,23.700000000000003,80.84,926,3.8000000000000003 +2013,4,26,19,30,0,0,0,1.9000000000000001,20.700000000000003,93.18,926,3.4000000000000004 +2013,4,26,20,30,0,0,0,2,19.400000000000002,104.83,927,3.9000000000000004 +2013,4,26,21,30,0,0,0,1.5,18.3,115.5,928,5.1000000000000005 +2013,4,26,22,30,0,0,0,1.3,17,124.53,929,6.5 +2013,4,26,23,30,0,0,0,1.5,15.4,130.97,930,7.800000000000001 +2013,4,27,0,30,0,0,0,1.4000000000000001,14.200000000000001,133.73,930,7.9 +2013,4,27,1,30,0,0,0,1.4000000000000001,13.200000000000001,132.13,930,7.7 +2013,4,27,2,30,0,0,0,1.4000000000000001,12.200000000000001,126.58,931,7.9 +2013,4,27,3,30,0,0,0,1.6,11.5,118.15,931,8.3 +2013,4,27,4,30,0,0,0,1.9000000000000001,11,107.85000000000001,931,9.1 +2013,4,27,5,30,0,0,0,2.5,11.100000000000001,96.42,932,9.9 +2013,4,27,6,30,65,35,295,3.5,12.4,84.16,932,10.4 +2013,4,27,7,30,273,74,637,4.1000000000000005,14.700000000000001,71.73,933,11.100000000000001 +2013,4,27,8,30,502,91,800,4.1000000000000005,17.5,59.08,933,11.200000000000001 +2013,4,27,9,30,710,100,885,3.9000000000000004,20.1,46.52,933,10.5 +2013,4,27,10,30,875,107,931,3.7,22.6,34.47,933,9 +2013,4,27,11,30,984,111,955,3.6,24.6,24.01,932,7 +2013,4,27,12,30,1028,111,967,3.5,26,18.36,931,5 +2013,4,27,13,30,1007,109,967,3.4000000000000004,26.900000000000002,21.740000000000002,930,3.7 +2013,4,27,14,30,915,104,949,3.3000000000000003,27.3,31.32,929,2.7 +2013,4,27,15,30,764,98,912,3.2,27.200000000000003,43.08,929,1.9000000000000001 +2013,4,27,16,30,570,86,855,3.2,26.5,55.550000000000004,928,1.3 +2013,4,27,17,30,345,69,742,3.2,25.900000000000002,68.2,928,1 +2013,4,27,18,30,122,42,492,1.9000000000000001,21,80.71000000000001,928,2.7 +2013,4,27,19,30,0,0,0,1.9000000000000001,18.1,93.03,929,3.8000000000000003 +2013,4,27,20,30,0,0,0,2.2,16.900000000000002,104.66,930,3.4000000000000004 +2013,4,27,21,30,0,0,0,2.4000000000000004,16,115.29,930,3.5 +2013,4,27,22,30,0,0,0,2.5,15,124.28,930,3.8000000000000003 +2013,4,27,23,30,0,0,0,2.6,14.200000000000001,130.69,929,4.2 +2013,4,28,0,30,0,0,0,2.6,13.5,133.41,929,4.7 +2013,4,28,1,30,0,0,0,2.6,12.8,131.82,928,5.5 +2013,4,28,2,30,0,0,0,2.5,12.3,126.29,928,6.7 +2013,4,28,3,30,0,0,0,2.5,11.9,117.89,928,8.1 +2013,4,28,4,30,0,0,0,2.5,11.9,107.62,928,9.9 +2013,4,28,5,30,0,0,0,2.8000000000000003,12.600000000000001,96.2,928,11.600000000000001 +2013,4,28,6,30,66,36,288,3.4000000000000004,14.8,83.97,928,13.200000000000001 +2013,4,28,7,30,273,74,628,4.1000000000000005,18.3,71.55,928,14.5 +2013,4,28,8,30,499,91,790,4.5,21.900000000000002,58.9,928,15.3 +2013,4,28,9,30,704,102,872,4.1000000000000005,24.6,46.33,928,13.9 +2013,4,28,10,30,868,111,915,3.7,26.900000000000002,34.25,927,11.9 +2013,4,28,11,30,976,117,938,3.5,28.700000000000003,23.740000000000002,927,10.100000000000001 +2013,4,28,12,30,1021,120,948,3.7,30,18.05,926,8.200000000000001 +2013,4,28,13,30,935,299,684,4,30.6,21.490000000000002,925,6.7 +2013,4,28,14,30,356,333,27,4.3,30.6,31.14,924,5.7 +2013,4,28,15,30,494,355,190,4.7,30.1,42.94,923,5.1000000000000005 +2013,4,28,16,30,556,99,805,4.9,28.900000000000002,55.43,923,5 +2013,4,28,17,30,333,82,673,4.9,28.200000000000003,68.07000000000001,923,5.4 +2013,4,28,18,30,115,50,402,3.8000000000000003,24.3,80.58,923,6.5 +2013,4,28,19,30,0,0,0,3.5,21.900000000000002,92.88,924,8.200000000000001 +2013,4,28,20,30,0,0,0,3.7,20.700000000000003,104.49000000000001,924,9.5 +2013,4,28,21,30,0,0,0,3.8000000000000003,19.700000000000003,115.09,925,10.8 +2013,4,28,22,30,0,0,0,3.8000000000000003,18.8,124.04,925,11.9 +2013,4,28,23,30,0,0,0,3.7,17.8,130.4,925,12.8 +2013,4,29,0,30,0,0,0,3.6,16.900000000000002,133.1,924,13.600000000000001 +2013,4,29,1,30,0,0,0,3.6,16.1,131.51,924,14.100000000000001 +2013,4,29,2,30,0,0,0,3.5,15.4,126,924,14.4 +2013,4,29,3,30,0,0,0,3.3000000000000003,14.700000000000001,117.63,924,14.600000000000001 +2013,4,29,4,30,0,0,0,3.1,14.3,107.39,924,14.3 +2013,4,29,5,30,0,0,0,3.1,14.3,96,924,14.3 +2013,4,29,6,30,69,36,306,3.6,15.600000000000001,83.78,925,14.700000000000001 +2013,4,29,7,30,279,72,646,4.1000000000000005,18.5,71.36,925,14.8 +2013,4,29,8,30,507,89,805,4.3,22.1,58.72,925,14 +2013,4,29,9,30,714,100,887,4.3,25.5,46.14,925,10.8 +2013,4,29,10,30,879,108,931,4.4,27.900000000000002,34.04,924,7.6000000000000005 +2013,4,29,11,30,988,112,955,4.5,29.5,23.48,923,6.2 +2013,4,29,12,30,1032,112,966,4.6000000000000005,30.5,17.740000000000002,922,5.800000000000001 +2013,4,29,13,30,1007,111,962,4.6000000000000005,31,21.240000000000002,921,5.800000000000001 +2013,4,29,14,30,916,107,944,4.6000000000000005,31,30.970000000000002,921,5.9 +2013,4,29,15,30,763,99,906,4.5,30.6,42.81,920,6 +2013,4,29,16,30,568,87,844,4.5,29.6,55.300000000000004,920,6 +2013,4,29,17,30,345,70,731,4.5,29,67.95,920,6.2 +2013,4,29,18,30,123,43,480,3.8000000000000003,25.200000000000003,80.45,920,7.1000000000000005 +2013,4,29,19,30,0,0,0,4,22.8,92.73,920,8.700000000000001 +2013,4,29,20,30,0,0,0,4.6000000000000005,21.400000000000002,104.32000000000001,920,10 +2013,4,29,21,30,0,0,0,4.9,20.1,114.88,921,11.4 +2013,4,29,22,30,0,0,0,4.9,19,123.8,921,12.600000000000001 +2013,4,29,23,30,0,0,0,4.9,17.900000000000002,130.12,921,13.5 +2013,4,30,0,30,0,0,0,4.800000000000001,16.900000000000002,132.8,920,14.3 +2013,4,30,1,30,0,0,0,4.6000000000000005,16.1,131.2,920,14.9 +2013,4,30,2,30,0,0,0,4.3,15.5,125.72,920,15.200000000000001 +2013,4,30,3,30,0,0,0,4.1000000000000005,15.200000000000001,117.37,920,15.200000000000001 +2013,4,30,4,30,0,0,0,3.9000000000000004,15.100000000000001,107.16,920,15.100000000000001 +2013,4,30,5,30,0,0,0,4,15.100000000000001,95.79,920,15.100000000000001 +2013,4,30,6,30,71,36,313,4.7,16.2,83.59,921,15 +2013,4,30,7,30,278,72,638,5.300000000000001,18.6,71.19,921,14.8 +2013,4,30,8,30,502,90,789,5.4,21.700000000000003,58.54,921,14.3 +2013,4,30,9,30,707,102,870,5.4,24.900000000000002,45.95,920,13.4 +2013,4,30,10,30,870,108,916,5.2,27.6,33.83,920,12.200000000000001 +2013,4,30,11,30,977,112,942,5.1000000000000005,29.8,23.22,919,11 +2013,4,30,12,30,1020,113,950,4.9,31.3,17.43,919,10.100000000000001 +2013,4,30,13,30,995,112,946,4.7,32.2,21,918,9.4 +2013,4,30,14,30,905,108,928,4.7,32.6,30.8,917,8.700000000000001 +2013,4,30,15,30,755,102,889,4.7,32.5,42.67,917,8.1 +2013,4,30,16,30,562,90,827,4.800000000000001,31.8,55.18,917,7.7 +2013,4,30,17,30,343,72,716,4.800000000000001,31.3,67.83,917,7.6000000000000005 +2013,4,30,18,30,123,45,463,4.2,27.1,80.32000000000001,917,8.5 +2013,4,30,19,30,0,0,0,4.4,24.5,92.59,918,9.600000000000001 +2013,4,30,20,30,0,0,0,4.800000000000001,22.8,104.15,919,10.200000000000001 +2013,4,30,21,30,0,0,0,4.9,21.3,114.68,919,10.8 +2013,4,30,22,30,0,0,0,4.9,20,123.56,919,11.3 +2013,4,30,23,30,0,0,0,4.7,18.900000000000002,129.85,919,11.9 +2013,5,1,0,30,0,0,0,4.4,18,132.49,919,12.5 +2013,5,1,1,30,0,0,0,4.2,17.3,130.9,920,13.100000000000001 +2013,5,1,2,30,0,0,0,3.9000000000000004,16.900000000000002,125.44,920,13.600000000000001 +2013,5,1,3,30,0,0,0,3.7,16.400000000000002,117.12,920,13.9 +2013,5,1,4,30,0,0,0,3.4000000000000004,15.8,106.94,920,14.200000000000001 +2013,5,1,5,30,0,0,0,3.3000000000000003,15.600000000000001,95.59,920,14.4 +2013,5,1,6,30,50,39,94,3.8000000000000003,16.900000000000002,83.41,921,14.700000000000001 +2013,5,1,7,30,251,88,501,4.6000000000000005,19.900000000000002,71.01,921,15.3 +2013,5,1,8,30,410,193,413,4.5,23.5,58.370000000000005,922,15.5 +2013,5,1,9,30,603,243,516,3.3000000000000003,26.6,45.77,922,13.700000000000001 +2013,5,1,10,30,755,330,511,1.9000000000000001,28.900000000000002,33.63,922,11.200000000000001 +2013,5,1,11,30,856,402,493,1.5,30.200000000000003,22.97,922,9.4 +2013,5,1,12,30,1012,138,915,1.9000000000000001,30.8,17.13,922,8.4 +2013,5,1,13,30,987,133,913,2.4000000000000004,31.1,20.76,922,8 +2013,5,1,14,30,898,125,898,2.8000000000000003,31,30.63,922,7.9 +2013,5,1,15,30,752,113,867,3.1,30.6,42.54,923,7.7 +2013,5,1,16,30,261,235,46,3.3000000000000003,29.700000000000003,55.06,923,7.5 +2013,5,1,17,30,340,78,690,3.3000000000000003,29.1,67.71000000000001,923,7.6000000000000005 +2013,5,1,18,30,108,50,341,2.9000000000000004,24.5,80.19,925,9.600000000000001 +2013,5,1,19,30,0,0,0,3.3000000000000003,21.3,92.44,926,10.600000000000001 +2013,5,1,20,30,0,0,0,4.2,19,103.98,927,10.5 +2013,5,1,21,30,0,0,0,5.2,16.8,114.48,929,9.9 +2013,5,1,22,30,0,0,0,6,14.600000000000001,123.32000000000001,930,9.1 +2013,5,1,23,30,0,0,0,6.6000000000000005,12.200000000000001,129.57,931,8.1 +2013,5,2,0,30,0,0,0,7.2,9.8,132.2,932,6.9 +2013,5,2,1,30,0,0,0,7.5,8,130.6,933,5.4 +2013,5,2,2,30,0,0,0,7.7,6.6000000000000005,125.17,934,4.1000000000000005 +2013,5,2,3,30,0,0,0,7.9,5.4,116.88,935,2.9000000000000004 +2013,5,2,4,30,0,0,0,7.9,4.5,106.72,936,1.8 +2013,5,2,5,30,0,0,0,7.800000000000001,4,95.39,937,1 +2013,5,2,6,30,71,45,215,7.9,4.3,83.23,938,0.6000000000000001 +2013,5,2,7,30,91,91,0,8.200000000000001,5.300000000000001,70.84,939,0.2 +2013,5,2,8,30,66,66,0,8.5,6.800000000000001,58.2,939,-0.2 +2013,5,2,9,30,160,158,3,8.8,8.3,45.6,939,-0.30000000000000004 +2013,5,2,10,30,161,156,5,8.9,9.600000000000001,33.43,940,-0.30000000000000004 +2013,5,2,11,30,162,156,6,8.8,10.600000000000001,22.72,940,-0.4 +2013,5,2,12,30,157,151,6,8.5,11.5,16.830000000000002,940,-0.8 +2013,5,2,13,30,276,262,15,8.200000000000001,12.5,20.52,939,-1.2000000000000002 +2013,5,2,14,30,360,336,27,8.1,13.3,30.47,939,-1.6 +2013,5,2,15,30,337,307,40,8.1,13.4,42.410000000000004,939,-1.9000000000000001 +2013,5,2,16,30,237,220,30,8,12.8,54.94,939,-2.4000000000000004 +2013,5,2,17,30,129,127,5,7.9,12.3,67.58,939,-3.1 +2013,5,2,18,30,130,51,456,6.300000000000001,10,80.05,940,-3.8000000000000003 +2013,5,2,19,30,0,0,0,5.1000000000000005,8.5,92.29,940,-4.4 +2013,5,2,20,30,0,0,0,4.5,7.4,103.81,941,-4.800000000000001 +2013,5,2,21,30,0,0,0,4.2,6.5,114.28,941,-5.300000000000001 +2013,5,2,22,30,0,0,0,4.2,5.9,123.08,941,-5.7 +2013,5,2,23,30,0,0,0,4.4,5.4,129.3,941,-6.300000000000001 +2013,5,3,0,30,0,0,0,4.4,4.9,131.9,940,-6.9 +2013,5,3,1,30,0,0,0,4.1000000000000005,4.2,130.31,940,-7.300000000000001 +2013,5,3,2,30,0,0,0,3.7,3.5,124.9,940,-7.5 +2013,5,3,3,30,0,0,0,3.2,2.7,116.64,940,-7.7 +2013,5,3,4,30,0,0,0,2.8000000000000003,1.9000000000000001,106.51,940,-7.7 +2013,5,3,5,30,0,0,0,2.9000000000000004,2,95.2,940,-7.800000000000001 +2013,5,3,6,30,87,40,389,3.5,3.8000000000000003,83.05,940,-8.200000000000001 +2013,5,3,7,30,309,74,711,4.1000000000000005,7.5,70.67,940,-8.5 +2013,5,3,8,30,544,93,853,4.5,11,58.04,939,-9.4 +2013,5,3,9,30,750,105,919,4.6000000000000005,13.3,45.43,939,-10.200000000000001 +2013,5,3,10,30,918,112,964,4.4,15.100000000000001,33.24,938,-10.9 +2013,5,3,11,30,1028,115,988,4.2,16.7,22.48,936,-11.3 +2013,5,3,12,30,1073,113,1001,4,18.1,16.53,934,-11.3 +2013,5,3,13,30,1049,111,1000,3.8000000000000003,19,20.29,933,-11.3 +2013,5,3,14,30,956,105,986,3.6,19.6,30.310000000000002,932,-11.200000000000001 +2013,5,3,15,30,802,99,950,3.4000000000000004,19.8,42.28,931,-11.200000000000001 +2013,5,3,16,30,601,87,892,3.1,19.6,54.82,930,-11.100000000000001 +2013,5,3,17,30,372,71,787,2.9000000000000004,19.3,67.46000000000001,930,-11 +2013,5,3,18,30,142,45,554,1,15.9,79.93,929,-4.3 +2013,5,3,19,30,0,0,0,1,13.4,92.15,929,-4.800000000000001 +2013,5,3,20,30,0,0,0,1.3,11.200000000000001,103.64,929,-5.1000000000000005 +2013,5,3,21,30,0,0,0,1.6,9.8,114.08,929,-5.300000000000001 +2013,5,3,22,30,0,0,0,1.9000000000000001,9.200000000000001,122.85000000000001,928,-6.4 +2013,5,3,23,30,0,0,0,2.3000000000000003,8.8,129.03,928,-7.2 +2013,5,4,0,30,0,0,0,2.4000000000000004,8.3,131.61,928,-7.7 +2013,5,4,1,30,0,0,0,2.4000000000000004,7.6000000000000005,130.03,928,-7.9 +2013,5,4,2,30,0,0,0,2.2,6.7,124.63000000000001,928,-7.9 +2013,5,4,3,30,0,0,0,2.1,5.800000000000001,116.4,928,-7.800000000000001 +2013,5,4,4,30,0,0,0,2,5.2,106.3,928,-7.800000000000001 +2013,5,4,5,30,0,0,0,2.2,5.4,95.01,928,-7.7 +2013,5,4,6,30,93,34,481,2.7,7.7,82.89,929,-7.5 +2013,5,4,7,30,316,59,771,3.1,11.700000000000001,70.51,929,-7.6000000000000005 +2013,5,4,8,30,545,74,887,3.3000000000000003,16.1,57.88,929,-8.3 +2013,5,4,9,30,753,84,951,3.4000000000000004,19.5,45.27,929,-9 +2013,5,4,10,30,919,91,988,3.3000000000000003,21.6,33.05,929,-8.5 +2013,5,4,11,30,1027,96,1006,3.1,23.200000000000003,22.240000000000002,928,-7.800000000000001 +2013,5,4,12,30,1065,101,1004,3,24.3,16.240000000000002,927,-7.4 +2013,5,4,13,30,1038,103,995,3,25,20.06,927,-7 +2013,5,4,14,30,796,349,517,3,25.3,30.150000000000002,926,-6.9 +2013,5,4,15,30,635,276,484,3.1,25,42.15,926,-6.800000000000001 +2013,5,4,16,30,592,87,874,3.1,24.3,54.7,926,-6.7 +2013,5,4,17,30,367,70,771,3.2,23.8,67.34,926,-6.5 +2013,5,4,18,30,140,45,536,1.9000000000000001,18.8,79.8,926,-3.5 +2013,5,4,19,30,0,0,0,2,15.700000000000001,92,927,-1.7000000000000002 +2013,5,4,20,30,0,0,0,2.5,14.5,103.47,928,-2.8000000000000003 +2013,5,4,21,30,0,0,0,2.8000000000000003,13.3,113.88,929,-3.4000000000000004 +2013,5,4,22,30,0,0,0,2.6,11.9,122.61,929,-3.8000000000000003 +2013,5,4,23,30,0,0,0,2.2,10.3,128.76,930,-4 +2013,5,5,0,30,0,0,0,2,9,131.33,930,-4.1000000000000005 +2013,5,5,1,30,0,0,0,2.2,8.1,129.74,931,-4 +2013,5,5,2,30,0,0,0,2.4000000000000004,7.300000000000001,124.37,931,-3.2 +2013,5,5,3,30,0,0,0,2.3000000000000003,6.5,116.17,932,-1.8 +2013,5,5,4,30,0,0,0,2,5.6000000000000005,106.09,932,-0.30000000000000004 +2013,5,5,5,30,0,0,0,2.1,5.6000000000000005,94.83,933,0.8 +2013,5,5,6,30,89,39,397,3,7.5,82.72,933,1.5 +2013,5,5,7,30,305,73,690,3.9000000000000004,10.5,70.36,934,1.6 +2013,5,5,8,30,531,93,821,4.3,13.4,57.730000000000004,934,1.1 +2013,5,5,9,30,736,106,893,4.4,16,45.11,934,0.1 +2013,5,5,10,30,900,115,934,4.2,18.3,32.87,933,-0.8 +2013,5,5,11,30,1007,122,955,4.1000000000000005,20.3,22.01,933,-1.3 +2013,5,5,12,30,1046,123,960,4,21.900000000000002,15.96,932,-1.5 +2013,5,5,13,30,1019,127,949,3.9000000000000004,22.900000000000002,19.84,931,-1.7000000000000002 +2013,5,5,14,30,922,127,918,3.7,23.3,29.990000000000002,930,-1.9000000000000001 +2013,5,5,15,30,773,109,894,3.5,23.3,42.02,930,-2.2 +2013,5,5,16,30,578,97,831,3.3000000000000003,22.8,54.58,929,-2.3000000000000003 +2013,5,5,17,30,356,78,717,3.2,22.5,67.22,929,-2.3000000000000003 +2013,5,5,18,30,52,52,0,1.7000000000000002,18.1,79.67,929,-0.5 +2013,5,5,19,30,0,0,0,1.3,15,91.86,930,2 +2013,5,5,20,30,0,0,0,1.5,13.700000000000001,103.3,930,2 +2013,5,5,21,30,0,0,0,1.6,12.9,113.69,930,2.5 +2013,5,5,22,30,0,0,0,1.7000000000000002,12.200000000000001,122.38,931,3.1 +2013,5,5,23,30,0,0,0,1.8,11.5,128.5,931,3.5 +2013,5,6,0,30,0,0,0,1.8,10.8,131.05,930,3.8000000000000003 +2013,5,6,1,30,0,0,0,1.8,10.100000000000001,129.47,930,4 +2013,5,6,2,30,0,0,0,1.7000000000000002,9.4,124.11,930,4.3 +2013,5,6,3,30,0,0,0,1.4000000000000001,8.8,115.94,930,4.5 +2013,5,6,4,30,0,0,0,1.2000000000000002,8.4,105.89,930,4.7 +2013,5,6,5,30,0,0,0,1.3,8.9,94.65,930,5 +2013,5,6,6,30,86,43,333,1.8,10.700000000000001,82.56,931,5.2 +2013,5,6,7,30,192,134,171,2.1,13.200000000000001,70.21000000000001,931,5.5 +2013,5,6,8,30,371,227,269,2.4000000000000004,15.4,57.58,932,5.5 +2013,5,6,9,30,525,323,286,2.6,16.900000000000002,44.96,932,5.300000000000001 +2013,5,6,10,30,695,364,394,2.8000000000000003,18.2,32.7,931,5.2 +2013,5,6,11,30,773,419,381,2.8000000000000003,19.400000000000002,21.79,931,5.2 +2013,5,6,12,30,481,436,47,2.3000000000000003,20.200000000000003,15.68,931,5.6000000000000005 +2013,5,6,13,30,245,233,14,1.9000000000000001,20.900000000000002,19.62,930,6.4 +2013,5,6,14,30,160,155,6,1.8,21.400000000000002,29.84,929,7 +2013,5,6,15,30,120,120,0,2.2,21.6,41.9,929,7.300000000000001 +2013,5,6,16,30,274,243,54,2.6,21.400000000000002,54.47,928,7.2 +2013,5,6,17,30,239,156,214,2.7,21.200000000000003,67.11,928,6.9 +2013,5,6,18,30,123,69,297,1.9000000000000001,18.1,79.54,928,7.2 +2013,5,6,19,30,0,0,0,1.6,15.700000000000001,91.71000000000001,928,7.6000000000000005 +2013,5,6,20,30,0,0,0,1.7000000000000002,14.600000000000001,103.14,929,7.1000000000000005 +2013,5,6,21,30,0,0,0,1.9000000000000001,13.8,113.49000000000001,929,6.7 +2013,5,6,22,30,0,0,0,2.1,13.100000000000001,122.16,929,6.4 +2013,5,6,23,30,0,0,0,2.2,12.5,128.24,929,6.300000000000001 +2013,5,7,0,30,0,0,0,2.2,11.9,130.77,929,6.2 +2013,5,7,1,30,0,0,0,2.1,11.200000000000001,129.19,928,6.2 +2013,5,7,2,30,0,0,0,1.9000000000000001,10.600000000000001,123.86,928,6.4 +2013,5,7,3,30,0,0,0,1.8,9.9,115.72,929,6.7 +2013,5,7,4,30,0,0,0,1.7000000000000002,9.4,105.69,929,7 +2013,5,7,5,30,0,0,0,2.3000000000000003,9.9,94.48,929,7.2 +2013,5,7,6,30,89,40,369,3,12,82.41,929,7.300000000000001 +2013,5,7,7,30,298,74,654,3.8000000000000003,15.8,70.06,929,7.4 +2013,5,7,8,30,519,95,789,4.7,20,57.44,929,6.9 +2013,5,7,9,30,720,108,862,5.1000000000000005,23.3,44.81,929,6.4 +2013,5,7,10,30,878,117,902,5.2,25.700000000000003,32.53,928,6.7 +2013,5,7,11,30,980,121,924,5.2,27.5,21.580000000000002,928,7.300000000000001 +2013,5,7,12,30,1021,118,936,5.300000000000001,28.6,15.4,927,7.800000000000001 +2013,5,7,13,30,993,119,927,5.300000000000001,29.200000000000003,19.400000000000002,926,8.3 +2013,5,7,14,30,903,115,907,5.4,29.200000000000003,29.69,925,8.700000000000001 +2013,5,7,15,30,757,106,873,5.5,28.700000000000003,41.77,924,9 +2013,5,7,16,30,568,94,813,5.4,27.900000000000002,54.35,924,9 +2013,5,7,17,30,350,77,698,5.4,27.400000000000002,66.99,924,8.9 +2013,5,7,18,30,135,50,461,4,23.700000000000003,79.42,924,9 +2013,5,7,19,30,0,0,0,3.5,21.200000000000003,91.57000000000001,925,9.600000000000001 +2013,5,7,20,30,0,0,0,4.1000000000000005,20.1,102.97,925,9.5 +2013,5,7,21,30,0,0,0,4.6000000000000005,19.400000000000002,113.3,925,9.600000000000001 +2013,5,7,22,30,0,0,0,4.7,18.8,121.93,925,10 +2013,5,7,23,30,0,0,0,4.7,18.2,127.99000000000001,925,11 +2013,5,8,0,30,0,0,0,4.6000000000000005,17.6,130.5,925,12.200000000000001 +2013,5,8,1,30,0,0,0,4.2,16.900000000000002,128.93,925,13 +2013,5,8,2,30,0,0,0,3.7,16.3,123.62,924,13.600000000000001 +2013,5,8,3,30,0,0,0,3.6,15.9,115.5,924,13.9 +2013,5,8,4,30,0,0,0,3.9000000000000004,15.600000000000001,105.5,925,14.3 +2013,5,8,5,30,0,0,0,4.2,15.600000000000001,94.31,925,14.600000000000001 +2013,5,8,6,30,84,48,266,4.7,16.6,82.26,926,14.9 +2013,5,8,7,30,282,97,539,5.4,18.400000000000002,69.92,926,15.3 +2013,5,8,8,30,371,231,260,5.7,20.3,57.300000000000004,926,15.8 +2013,5,8,9,30,517,330,263,5.800000000000001,22.5,44.67,926,16 +2013,5,8,10,30,357,333,29,5.7,25,32.37,926,15.700000000000001 +2013,5,8,11,30,740,459,302,5.6000000000000005,27.3,21.37,925,15.100000000000001 +2013,5,8,12,30,741,493,256,5.5,29.3,15.13,924,14.3 +2013,5,8,13,30,903,394,538,5.4,30.8,19.19,923,13.3 +2013,5,8,14,30,606,441,189,5.2,31.400000000000002,29.54,922,12.200000000000001 +2013,5,8,15,30,717,199,693,4.9,31.3,41.65,922,11 +2013,5,8,16,30,248,229,33,4.5,30.8,54.24,921,9.8 +2013,5,8,17,30,344,92,643,4.3,30.5,66.87,921,8.700000000000001 +2013,5,8,18,30,135,54,439,3.3000000000000003,26.200000000000003,79.29,921,9.4 +2013,5,8,19,30,0,0,0,3.3000000000000003,23.3,91.42,922,9.600000000000001 +2013,5,8,20,30,0,0,0,3.6,21.8,102.81,922,9.4 +2013,5,8,21,30,0,0,0,4.1000000000000005,20.900000000000002,113.11,923,9.9 +2013,5,8,22,30,0,0,0,4.4,20.200000000000003,121.71000000000001,923,11.100000000000001 +2013,5,8,23,30,0,0,0,4.3,19.400000000000002,127.74000000000001,923,12.4 +2013,5,9,0,30,0,0,0,4.3,18.8,130.23,923,13.4 +2013,5,9,1,30,0,0,0,4.3,18.2,128.66,923,14.100000000000001 +2013,5,9,2,30,0,0,0,4,17.8,123.38000000000001,923,14.600000000000001 +2013,5,9,3,30,0,0,0,3.8000000000000003,17.7,115.29,923,15.200000000000001 +2013,5,9,4,30,0,0,0,4.1000000000000005,17.8,105.32000000000001,924,15.8 +2013,5,9,5,30,0,0,0,4.3,18,94.14,924,16.3 +2013,5,9,6,30,87,48,279,4.1000000000000005,18.5,82.11,925,16.6 +2013,5,9,7,30,258,104,448,3.9000000000000004,19.8,69.78,926,16.8 +2013,5,9,8,30,382,228,284,3.8000000000000003,21.400000000000002,57.17,926,16.7 +2013,5,9,9,30,507,334,243,3.4000000000000004,23.1,44.53,926,16.3 +2013,5,9,10,30,532,422,129,2.6,25.1,32.21,926,15.5 +2013,5,9,11,30,205,195,11,1.7000000000000002,27,21.16,925,14.100000000000001 +2013,5,9,12,30,758,488,280,1.7000000000000002,28.1,14.870000000000001,925,12.700000000000001 +2013,5,9,13,30,832,430,425,2.3000000000000003,28.3,18.98,924,12.100000000000001 +2013,5,9,14,30,94,94,0,2.9000000000000004,27.400000000000002,29.39,924,12.100000000000001 +2013,5,9,15,30,111,111,0,3.5,26.200000000000003,41.53,924,12.4 +2013,5,9,16,30,209,200,15,3.9000000000000004,25.1,54.120000000000005,923,13 +2013,5,9,17,30,344,89,645,4,24.6,66.75,923,13.600000000000001 +2013,5,9,18,30,134,55,421,2.9000000000000004,21.5,79.16,924,14.3 +2013,5,9,19,30,0,0,0,2.1,19.3,91.28,924,15.100000000000001 +2013,5,9,20,30,0,0,0,1.8,18,102.64,925,15.3 +2013,5,9,21,30,0,0,0,1.5,16.900000000000002,112.92,925,15.700000000000001 +2013,5,9,22,30,0,0,0,1.2000000000000002,16.1,121.49000000000001,926,16.1 +2013,5,9,23,30,0,0,0,0.9,15.600000000000001,127.49000000000001,926,15.600000000000001 +2013,5,10,0,30,0,0,0,0.7000000000000001,15.3,129.97,926,15.3 +2013,5,10,1,30,0,0,0,0.5,15.100000000000001,128.41,927,15.100000000000001 +2013,5,10,2,30,0,0,0,0.6000000000000001,14.9,123.14,927,14.9 +2013,5,10,3,30,0,0,0,1.4000000000000001,14.700000000000001,115.08,928,14.700000000000001 +2013,5,10,4,30,0,0,0,2.5,14.600000000000001,105.14,928,14.600000000000001 +2013,5,10,5,30,0,0,0,3.1,14.3,93.98,928,14.3 +2013,5,10,6,30,58,49,67,3.5,14.200000000000001,81.97,929,13.8 +2013,5,10,7,30,290,91,572,4.1000000000000005,14.8,69.65,929,13.3 +2013,5,10,8,30,509,112,728,4.6000000000000005,16.3,57.04,929,13 +2013,5,10,9,30,325,296,41,4.800000000000001,18.400000000000002,44.4,929,12.8 +2013,5,10,10,30,866,126,874,4.9,20.400000000000002,32.06,929,12.600000000000001 +2013,5,10,11,30,974,126,908,4.800000000000001,21.700000000000003,20.96,929,12.5 +2013,5,10,12,30,168,161,8,4.6000000000000005,22.400000000000002,14.61,929,12.200000000000001 +2013,5,10,13,30,223,212,12,4.5,22.5,18.78,928,11.9 +2013,5,10,14,30,135,133,2,4.7,22.3,29.25,928,11.4 +2013,5,10,15,30,679,254,566,4.800000000000001,22.1,41.410000000000004,928,11 +2013,5,10,16,30,234,219,25,4,21.400000000000002,54.01,928,10.5 +2013,5,10,17,30,97,97,0,3.3000000000000003,20.700000000000003,66.64,929,10.4 +2013,5,10,18,30,70,66,22,1.7000000000000002,18.2,79.04,930,10.9 +2013,5,10,19,30,0,0,0,1.2000000000000002,16.7,91.14,930,11.4 +2013,5,10,20,30,0,0,0,1.1,15.8,102.48,931,10.9 +2013,5,10,21,30,0,0,0,1.1,14.9,112.73,931,10.200000000000001 +2013,5,10,22,30,0,0,0,1.1,14.100000000000001,121.27,931,9.600000000000001 +2013,5,10,23,30,0,0,0,1.2000000000000002,13.4,127.25,931,9.200000000000001 +2013,5,11,0,30,0,0,0,1.3,12.8,129.71,932,8.9 +2013,5,11,1,30,0,0,0,1.3,12.200000000000001,128.15,932,8.700000000000001 +2013,5,11,2,30,0,0,0,1.3,11.600000000000001,122.91,932,8.700000000000001 +2013,5,11,3,30,0,0,0,1.2000000000000002,11.200000000000001,114.88,933,8.8 +2013,5,11,4,30,0,0,0,1.1,10.8,104.96000000000001,933,8.9 +2013,5,11,5,30,0,0,0,1.3,11.3,93.83,934,9 +2013,5,11,6,30,98,41,397,2,13.4,81.83,934,9.200000000000001 +2013,5,11,7,30,309,71,681,3,16.8,69.52,934,9.4 +2013,5,11,8,30,533,88,815,4,19.700000000000003,56.92,934,8.5 +2013,5,11,9,30,733,99,886,4.5,21.700000000000003,44.27,934,7.1000000000000005 +2013,5,11,10,30,893,106,926,4.7,23.400000000000002,31.92,934,6.4 +2013,5,11,11,30,997,111,947,5,24.6,20.77,933,5.9 +2013,5,11,12,30,1036,119,946,5,25.6,14.35,933,5.7 +2013,5,11,13,30,1007,119,936,4.7,26,18.580000000000002,933,5.7 +2013,5,11,14,30,666,428,273,4.4,25.900000000000002,29.11,932,5.5 +2013,5,11,15,30,767,119,862,4.3,25.400000000000002,41.29,932,5.1000000000000005 +2013,5,11,16,30,578,103,807,4.1000000000000005,24.900000000000002,53.9,932,4.5 +2013,5,11,17,30,361,82,700,3.9000000000000004,24.5,66.52,932,4 +2013,5,11,18,30,144,52,478,2.1,20.700000000000003,78.91,933,4.9 +2013,5,11,19,30,0,0,0,1.5,17.8,91,933,6.6000000000000005 +2013,5,11,20,30,0,0,0,1.5,16.6,102.32000000000001,934,6.300000000000001 +2013,5,11,21,30,0,0,0,1.5,15.8,112.54,934,6.2 +2013,5,11,22,30,0,0,0,1.4000000000000001,14.8,121.06,934,6.1000000000000005 +2013,5,11,23,30,0,0,0,1.3,14,127.01,934,6 +2013,5,12,0,30,0,0,0,1.3,13.3,129.46,934,6 +2013,5,12,1,30,0,0,0,1.3,12.600000000000001,127.91,934,6 +2013,5,12,2,30,0,0,0,1.4000000000000001,11.9,122.69,934,6.1000000000000005 +2013,5,12,3,30,0,0,0,1.5,11.3,114.68,934,6.4 +2013,5,12,4,30,0,0,0,1.7000000000000002,10.8,104.79,935,6.9 +2013,5,12,5,30,0,0,0,2.3000000000000003,11.3,93.68,936,7.4 +2013,5,12,6,30,74,49,171,3.2,13.3,81.69,936,7.7 +2013,5,12,7,30,273,96,502,3.7,16.2,69.39,937,6.9 +2013,5,12,8,30,530,100,786,3.7,19.200000000000003,56.800000000000004,937,6.300000000000001 +2013,5,12,9,30,730,115,858,3.2,21.700000000000003,44.15,937,6.800000000000001 +2013,5,12,10,30,889,124,900,2.5,23.6,31.78,936,7.300000000000001 +2013,5,12,11,30,994,133,920,2,24.900000000000002,20.59,935,7.2 +2013,5,12,12,30,988,288,722,1.7000000000000002,25.8,14.1,935,6.6000000000000005 +2013,5,12,13,30,845,431,437,1.7000000000000002,26.3,18.38,934,6 +2013,5,12,14,30,770,366,462,2,26.400000000000002,28.97,933,5.6000000000000005 +2013,5,12,15,30,623,298,431,2.5,26.1,41.17,932,5.300000000000001 +2013,5,12,16,30,524,153,628,2.9000000000000004,25.3,53.79,932,5.1000000000000005 +2013,5,12,17,30,342,80,654,3,24.8,66.41,932,5 +2013,5,12,18,30,89,71,96,2.3000000000000003,21.400000000000002,78.79,932,5.9 +2013,5,12,19,30,0,0,0,2.4000000000000004,19.1,90.86,933,7.4 +2013,5,12,20,30,0,0,0,3,18.1,102.16,934,7.4 +2013,5,12,21,30,0,0,0,3.3000000000000003,17.2,112.36,934,7.6000000000000005 +2013,5,12,22,30,0,0,0,3.4000000000000004,16.3,120.85000000000001,934,7.7 +2013,5,12,23,30,0,0,0,3.4000000000000004,15.5,126.77,934,7.800000000000001 +2013,5,13,0,30,0,0,0,3.5,14.700000000000001,129.21,934,7.800000000000001 +2013,5,13,1,30,0,0,0,3.5,14,127.67,934,7.7 +2013,5,13,2,30,0,0,0,3.4000000000000004,13.3,122.47,934,7.7 +2013,5,13,3,30,0,0,0,3.3000000000000003,12.700000000000001,114.49000000000001,934,7.7 +2013,5,13,4,30,0,0,0,3.2,12.100000000000001,104.62,935,7.4 +2013,5,13,5,30,0,0,0,3.5,12.4,93.53,935,7 +2013,5,13,6,30,106,41,446,3.8000000000000003,14.3,81.57000000000001,936,6.6000000000000005 +2013,5,13,7,30,321,68,715,4.1000000000000005,18,69.27,936,6.4 +2013,5,13,8,30,546,84,841,4.4,22.200000000000003,56.68,936,5.1000000000000005 +2013,5,13,9,30,748,93,910,4.2,25.200000000000003,44.03,935,3.1 +2013,5,13,10,30,908,100,949,4,27.200000000000003,31.650000000000002,935,2.4000000000000004 +2013,5,13,11,30,1013,104,971,4.1000000000000005,28.700000000000003,20.41,934,2 +2013,5,13,12,30,1055,103,981,4.4,29.700000000000003,13.86,934,2.1 +2013,5,13,13,30,1027,102,974,4.7,30.200000000000003,18.19,933,2.4000000000000004 +2013,5,13,14,30,936,99,956,4.9,30.200000000000003,28.830000000000002,932,2.7 +2013,5,13,15,30,789,96,918,4.800000000000001,29.700000000000003,41.06,932,2.8000000000000003 +2013,5,13,16,30,596,86,860,4.6000000000000005,28.8,53.68,932,2.8000000000000003 +2013,5,13,17,30,375,71,756,4.4,28.200000000000003,66.29,932,2.7 +2013,5,13,18,30,154,48,540,2.8000000000000003,23.700000000000003,78.67,932,3.8000000000000003 +2013,5,13,19,30,0,0,0,2.5,20.700000000000003,90.19,932,5.6000000000000005 +2013,5,13,20,30,0,0,0,3.2,19.700000000000003,102,933,5.6000000000000005 +2013,5,13,21,30,0,0,0,3.9000000000000004,19,112.18,933,5.9 +2013,5,13,22,30,0,0,0,4,18.1,120.64,933,6.6000000000000005 +2013,5,13,23,30,0,0,0,3.9000000000000004,17.2,126.54,933,7.7 +2013,5,14,0,30,0,0,0,3.8000000000000003,16.5,128.97,932,8.9 +2013,5,14,1,30,0,0,0,3.6,15.9,127.43,932,9.9 +2013,5,14,2,30,0,0,0,3.5,15.4,122.26,932,10.5 +2013,5,14,3,30,0,0,0,3.2,14.8,114.3,932,11 +2013,5,14,4,30,0,0,0,2.8000000000000003,14.200000000000001,104.46000000000001,932,11.3 +2013,5,14,5,30,0,0,0,2.9000000000000004,14.3,93.39,932,11.600000000000001 +2013,5,14,6,30,100,45,374,3.7,16.2,81.44,932,12 +2013,5,14,7,30,305,82,626,4.800000000000001,19.400000000000002,69.16,932,12.3 +2013,5,14,8,30,516,108,742,5.300000000000001,22.400000000000002,56.57,932,12.100000000000001 +2013,5,14,9,30,708,131,801,5.300000000000001,24.8,43.92,932,11.9 +2013,5,14,10,30,859,148,834,5.300000000000001,26.700000000000003,31.52,931,11.9 +2013,5,14,11,30,957,159,850,5.5,27.900000000000002,20.240000000000002,930,12.100000000000001 +2013,5,14,12,30,1004,138,892,5.800000000000001,28.400000000000002,13.620000000000001,930,12.5 +2013,5,14,13,30,977,143,877,6.1000000000000005,28.1,18,929,13 +2013,5,14,14,30,887,146,845,6.300000000000001,27.200000000000003,28.7,928,13.5 +2013,5,14,15,30,748,126,824,6.300000000000001,26.200000000000003,40.94,928,14 +2013,5,14,16,30,561,114,753,5.9,25.200000000000003,53.57,928,14.4 +2013,5,14,17,30,350,93,636,5.7,24.700000000000003,66.18,928,14.700000000000001 +2013,5,14,18,30,142,58,422,4.4,22.5,78.55,927,15 +2013,5,14,19,30,0,0,0,3.7,21.1,90.08,928,15.3 +2013,5,14,20,30,0,0,0,3.5,20.1,101.85000000000001,928,15.4 +2013,5,14,21,30,0,0,0,3.6,19.3,112,928,15.3 +2013,5,14,22,30,0,0,0,3.7,18.5,120.44,928,15.100000000000001 +2013,5,14,23,30,0,0,0,3.8000000000000003,18,126.31,928,15.100000000000001 +2013,5,15,0,30,0,0,0,3.8000000000000003,17.7,128.73,928,15.3 +2013,5,15,1,30,0,0,0,3.7,17.5,127.2,927,15.600000000000001 +2013,5,15,2,30,0,0,0,3.6,17.2,122.05,927,16.2 +2013,5,15,3,30,0,0,0,3.6,17,114.12,926,16.7 +2013,5,15,4,30,0,0,0,3.6,16.900000000000002,104.3,926,16.900000000000002 +2013,5,15,5,30,0,0,0,3.8000000000000003,17.1,93.25,926,17.1 +2013,5,15,6,30,46,46,0,4.3,17.7,81.32000000000001,926,17.5 +2013,5,15,7,30,193,144,135,5.300000000000001,19.1,69.05,926,17.900000000000002 +2013,5,15,8,30,331,247,153,6.1000000000000005,21.5,56.47,926,17.7 +2013,5,15,9,30,711,139,793,6.1000000000000005,24,43.82,925,16.8 +2013,5,15,10,30,866,143,847,5.800000000000001,26,31.400000000000002,925,15.8 +2013,5,15,11,30,968,149,872,5.5,27.6,20.080000000000002,924,14.8 +2013,5,15,12,30,654,507,151,5.2,28.900000000000002,13.39,923,14 +2013,5,15,13,30,981,146,877,4.9,30,17.82,922,13.200000000000001 +2013,5,15,14,30,891,146,848,4.6000000000000005,30.8,28.560000000000002,921,12.600000000000001 +2013,5,15,15,30,160,157,5,4.3,31.200000000000003,40.83,920,12 +2013,5,15,16,30,561,123,736,3.7,30.6,53.46,919,11.600000000000001 +2013,5,15,17,30,84,84,0,3.3000000000000003,30,66.07000000000001,919,13.200000000000001 +2013,5,15,18,30,71,69,12,2.4000000000000004,25.6,78.43,919,16.2 +2013,5,15,19,30,0,0,0,2.5,23.200000000000003,89.97,919,15.700000000000001 +2013,5,15,20,30,0,0,0,2.6,21.900000000000002,101.69,919,15 +2013,5,15,21,30,0,0,0,2.5,20.8,111.82000000000001,920,14.4 +2013,5,15,22,30,0,0,0,2.6,19.700000000000003,120.23,920,14.100000000000001 +2013,5,15,23,30,0,0,0,3.1,18.900000000000002,126.09,920,14 +2013,5,16,0,30,0,0,0,3.5,18.400000000000002,128.5,920,14.5 +2013,5,16,1,30,0,0,0,3.5,17.900000000000002,126.98,920,15.700000000000001 +2013,5,16,2,30,0,0,0,3.3000000000000003,17.400000000000002,121.85000000000001,920,16.900000000000002 +2013,5,16,3,30,0,0,0,2.9000000000000004,17.1,113.94,920,17.1 +2013,5,16,4,30,0,0,0,2.4000000000000004,16.900000000000002,104.15,920,16.900000000000002 +2013,5,16,5,30,0,0,0,2.3000000000000003,17.2,93.12,920,17.2 +2013,5,16,6,30,103,49,351,2.9000000000000004,18.5,81.21000000000001,920,17.900000000000002 +2013,5,16,7,30,309,81,635,3.3000000000000003,20.900000000000002,68.95,921,17.900000000000002 +2013,5,16,8,30,529,94,786,2.8000000000000003,23.900000000000002,56.370000000000005,921,17 +2013,5,16,9,30,729,103,867,1.9000000000000001,26.900000000000002,43.72,921,15.9 +2013,5,16,10,30,887,108,911,1.8,29.8,31.29,921,14.8 +2013,5,16,11,30,992,111,938,2.2,32.300000000000004,19.92,921,13 +2013,5,16,12,30,1033,112,945,2.3000000000000003,33.9,13.16,920,11.200000000000001 +2013,5,16,13,30,1005,111,938,2.1,34.6,17.64,920,10.700000000000001 +2013,5,16,14,30,917,107,921,1.7000000000000002,34.9,28.43,919,10.4 +2013,5,16,15,30,772,101,886,1.2000000000000002,34.7,40.72,919,10.200000000000001 +2013,5,16,16,30,584,90,828,1,34.1,53.35,919,10 +2013,5,16,17,30,369,74,724,1.2000000000000002,33.7,65.96000000000001,919,10.200000000000001 +2013,5,16,18,30,153,50,507,1.8,28.8,78.31,919,13.5 +2013,5,16,19,30,0,0,0,2.9000000000000004,26.1,89.86,919,13 +2013,5,16,20,30,0,0,0,3.8000000000000003,24.900000000000002,101.54,920,12.8 +2013,5,16,21,30,0,0,0,4.1000000000000005,23.6,111.65,921,14.3 +2013,5,16,22,30,0,0,0,4,22.400000000000002,120.04,921,15.600000000000001 +2013,5,16,23,30,0,0,0,3.8000000000000003,21.400000000000002,125.87,921,16.5 +2013,5,17,0,30,0,0,0,3.6,20.5,128.27,921,17 +2013,5,17,1,30,0,0,0,3.5,19.6,126.76,921,17.2 +2013,5,17,2,30,0,0,0,3.6,18.6,121.65,921,16.8 +2013,5,17,3,30,0,0,0,3.6,17.900000000000002,113.77,921,15.8 +2013,5,17,4,30,0,0,0,3.6,17.2,104,921,14.4 +2013,5,17,5,30,0,0,0,3.9000000000000004,17.2,92.99,922,12.600000000000001 +2013,5,17,6,30,112,43,445,4.2,19,81.10000000000001,922,11.100000000000001 +2013,5,17,7,30,328,71,713,4.1000000000000005,22.5,68.85000000000001,922,10.3 +2013,5,17,8,30,552,87,837,3.8000000000000003,26.8,56.28,922,10.3 +2013,5,17,9,30,753,98,905,3.7,30.8,43.62,922,10 +2013,5,17,10,30,913,105,944,3.9000000000000004,34.4,31.18,922,8.9 +2013,5,17,11,30,1014,109,962,4,36.9,19.77,922,6.300000000000001 +2013,5,17,12,30,1056,110,971,3.8000000000000003,38.2,12.94,921,5.300000000000001 +2013,5,17,13,30,1027,110,961,3.7,38.800000000000004,17.46,921,4.9 +2013,5,17,14,30,934,109,937,3.6,38.800000000000004,28.310000000000002,920,4.800000000000001 +2013,5,17,15,30,782,105,892,3.7,38.2,40.61,920,5.1000000000000005 +2013,5,17,16,30,586,98,816,3.7,37,53.25,920,5.800000000000001 +2013,5,17,17,30,287,150,335,3.6,36.1,65.85,919,8.3 +2013,5,17,18,30,150,58,448,3.3000000000000003,31.400000000000002,78.19,920,12.100000000000001 +2013,5,17,19,30,0,0,0,4.2,29.400000000000002,89.75,920,13.4 +2013,5,17,20,30,0,0,0,4.800000000000001,28.1,101.39,921,14.200000000000001 +2013,5,17,21,30,0,0,0,4.800000000000001,26.700000000000003,111.48,922,14.700000000000001 +2013,5,17,22,30,0,0,0,4.7,25.5,119.84,922,15.200000000000001 +2013,5,17,23,30,0,0,0,4.800000000000001,24.6,125.66,922,15.700000000000001 +2013,5,18,0,30,0,0,0,5,24.1,128.05,922,16.1 +2013,5,18,1,30,0,0,0,5.300000000000001,23.700000000000003,126.55,922,16.6 +2013,5,18,2,30,0,0,0,5.4,23.3,121.46000000000001,922,17.1 +2013,5,18,3,30,0,0,0,5.4,22.8,113.61,922,17.7 +2013,5,18,4,30,0,0,0,5.1000000000000005,22.1,103.86,922,18.3 +2013,5,18,5,30,0,0,0,5,21.700000000000003,92.87,922,18.8 +2013,5,18,6,30,104,50,342,5.2,22.700000000000003,80.99,923,19.200000000000003 +2013,5,18,7,30,308,85,615,5.800000000000001,25.200000000000003,68.75,923,19.5 +2013,5,18,8,30,312,247,117,6.2,28.5,56.19,923,19.1 +2013,5,18,9,30,629,255,516,6.300000000000001,31.3,43.53,923,17.7 +2013,5,18,10,30,769,350,489,6.6000000000000005,33.300000000000004,31.07,922,16.400000000000002 +2013,5,18,11,30,741,466,292,6.9,34.5,19.63,922,15.9 +2013,5,18,12,30,834,448,396,7.2,35.1,12.72,921,15.8 +2013,5,18,13,30,538,466,75,7.4,35.2,17.29,920,15.5 +2013,5,18,14,30,804,368,495,7.5,34.800000000000004,28.18,920,15.200000000000001 +2013,5,18,15,30,633,300,437,7.6000000000000005,34,40.5,919,15 +2013,5,18,16,30,557,134,705,7.5,33,53.14,919,14.700000000000001 +2013,5,18,17,30,354,100,618,7.5,32.4,65.74,919,14.700000000000001 +2013,5,18,18,30,147,62,410,7.2,29.1,78.07000000000001,919,15.700000000000001 +2013,5,18,19,30,0,0,0,7,27,89.63,920,17.1 +2013,5,18,20,30,0,0,0,6.9,25.6,101.24000000000001,920,18.1 +2013,5,18,21,30,0,0,0,6.800000000000001,24.700000000000003,111.31,921,18.5 +2013,5,18,22,30,0,0,0,6.6000000000000005,24.1,119.65,921,18.2 +2013,5,18,23,30,0,0,0,6.2,23.3,125.45,921,17.6 +2013,5,19,0,30,0,0,0,5.800000000000001,22.5,127.83,921,17.3 +2013,5,19,1,30,0,0,0,5.300000000000001,21.6,126.34,921,17.2 +2013,5,19,2,30,0,0,0,4.800000000000001,20.8,121.27,920,17.1 +2013,5,19,3,30,0,0,0,4.6000000000000005,20,113.45,920,17.1 +2013,5,19,4,30,0,0,0,4.6000000000000005,19.3,103.72,920,17.1 +2013,5,19,5,30,0,0,0,4.7,19.1,92.75,920,17.1 +2013,5,19,6,30,108,50,367,5.2,20.5,80.89,920,16.900000000000002 +2013,5,19,7,30,321,82,655,5.6000000000000005,23.6,68.66,920,16.2 +2013,5,19,8,30,544,97,801,5.300000000000001,27.400000000000002,56.1,920,13.4 +2013,5,19,9,30,747,104,885,5,30.8,43.44,920,9 +2013,5,19,10,30,910,109,934,5,33.1,30.98,920,4.9 +2013,5,19,11,30,1019,109,965,5.300000000000001,34.7,19.490000000000002,919,2.6 +2013,5,19,12,30,1067,105,985,5.5,35.7,12.51,919,1.5 +2013,5,19,13,30,1042,105,980,5.6000000000000005,36.2,17.12,918,0.8 +2013,5,19,14,30,951,103,960,5.5,36.300000000000004,28.060000000000002,918,0.2 +2013,5,19,15,30,804,97,928,5.4,36,40.4,917,-0.4 +2013,5,19,16,30,610,89,866,5.2,35.2,53.04,917,-1 +2013,5,19,17,30,389,76,758,5,34.6,65.63,917,-1.1 +2013,5,19,18,30,166,54,536,2.6,29.1,77.95,918,2 +2013,5,19,19,30,0,0,0,2.1,25.400000000000002,89.51,918,4.5 +2013,5,19,20,30,0,0,0,2.2,23.900000000000002,101.10000000000001,919,4.2 +2013,5,19,21,30,0,0,0,2.3000000000000003,22.900000000000002,111.14,919,4.3 +2013,5,19,22,30,0,0,0,2.6,22.200000000000003,119.46000000000001,919,5.2 +2013,5,19,23,30,0,0,0,3.1,21.6,125.24000000000001,919,7.2 +2013,5,20,0,30,0,0,0,3.8000000000000003,21.1,127.62,919,9.9 +2013,5,20,1,30,0,0,0,4,20.700000000000003,126.14,919,12.600000000000001 +2013,5,20,2,30,0,0,0,4,20.1,121.09,919,14.700000000000001 +2013,5,20,3,30,0,0,0,4,19.5,113.29,920,16.6 +2013,5,20,4,30,0,0,0,3.8000000000000003,19,103.59,920,17.8 +2013,5,20,5,30,0,0,0,3.9000000000000004,19.200000000000003,92.64,920,18.5 +2013,5,20,6,30,103,59,274,4.9,20.700000000000003,80.8,921,18.8 +2013,5,20,7,30,305,108,540,6.1000000000000005,23.5,68.58,921,19 +2013,5,20,8,30,523,128,707,6.4,26.700000000000003,56.02,921,18.6 +2013,5,20,9,30,724,134,811,6.2,29.700000000000003,43.36,921,17.1 +2013,5,20,10,30,883,138,868,5.800000000000001,32.4,30.88,920,14.600000000000001 +2013,5,20,11,30,991,138,903,5.4,34.5,19.36,920,11.8 +2013,5,20,12,30,1037,131,927,4.9,36,12.31,919,9.1 +2013,5,20,13,30,1017,126,931,4.6000000000000005,36.9,16.96,918,6.7 +2013,5,20,14,30,932,118,921,4.4,37.1,27.94,918,4.800000000000001 +2013,5,20,15,30,787,116,880,4.2,36.800000000000004,40.29,917,3.1 +2013,5,20,16,30,600,102,826,3.7,35.9,52.94,917,1.7000000000000002 +2013,5,20,17,30,385,83,728,3.5,35.4,65.52,917,0.8 +2013,5,20,18,30,166,56,521,1.3,29.6,77.84,917,6.6000000000000005 +2013,5,20,19,30,0,0,0,1.1,26.6,89.4,918,8.1 +2013,5,20,20,30,0,0,0,0.9,25.900000000000002,100.95,918,6.9 +2013,5,20,21,30,0,0,0,1.1,24.700000000000003,110.98,919,6.300000000000001 +2013,5,20,22,30,0,0,0,1.8,22.6,119.28,919,7.5 +2013,5,20,23,30,0,0,0,2.8000000000000003,21.700000000000003,125.04,919,10 +2013,5,21,0,30,0,0,0,3.9000000000000004,21.6,127.42,919,13.4 +2013,5,21,1,30,0,0,0,4.3,21.200000000000003,125.95,919,16.6 +2013,5,21,2,30,0,0,0,4.1000000000000005,20.6,120.92,919,18.5 +2013,5,21,3,30,0,0,0,3.3000000000000003,19.900000000000002,113.14,919,19 +2013,5,21,4,30,0,0,0,2.3000000000000003,19.200000000000003,103.47,919,19 +2013,5,21,5,30,0,0,0,1.7000000000000002,19.3,92.53,919,18.7 +2013,5,21,6,30,96,64,202,2.2,20.900000000000002,80.71000000000001,920,18.3 +2013,5,21,7,30,149,137,34,3.1,23.3,68.49,920,18.3 +2013,5,21,8,30,290,243,83,3.3000000000000003,25.5,55.95,921,17.8 +2013,5,21,9,30,687,211,654,3.8000000000000003,26.8,43.29,921,16.3 +2013,5,21,10,30,121,121,0,5.300000000000001,27.1,30.8,922,14.4 +2013,5,21,11,30,294,279,16,6.6000000000000005,26.400000000000002,19.23,923,12.600000000000001 +2013,5,21,12,30,727,505,227,6.800000000000001,25.8,12.11,923,10.8 +2013,5,21,13,30,1005,151,892,6.4,25.700000000000003,16.79,923,9.3 +2013,5,21,14,30,931,124,912,6.1000000000000005,25.8,27.82,923,7.800000000000001 +2013,5,21,15,30,792,100,906,5.7,25.700000000000003,40.19,923,6.800000000000001 +2013,5,21,16,30,604,87,856,5.2,25,52.83,923,6.6000000000000005 +2013,5,21,17,30,388,71,762,4.9,24.6,65.42,923,6.7 +2013,5,21,18,30,170,49,566,3.1,21.8,77.72,924,7 +2013,5,21,19,30,0,0,0,1.7000000000000002,19.400000000000002,89.28,924,7.9 +2013,5,21,20,30,0,0,0,1.3,18,100.81,925,8.5 +2013,5,21,21,30,0,0,0,1.3,17,110.82000000000001,925,8.5 +2013,5,21,22,30,0,0,0,1.3,16.2,119.10000000000001,925,8.4 +2013,5,21,23,30,0,0,0,1.3,15.600000000000001,124.85000000000001,925,8.3 +2013,5,22,0,30,0,0,0,1.4000000000000001,15,127.22,924,8.3 +2013,5,22,1,30,0,0,0,1.4000000000000001,14.5,125.76,924,8.3 +2013,5,22,2,30,0,0,0,1.4000000000000001,14,120.75,924,8.4 +2013,5,22,3,30,0,0,0,1.3,13.5,113,925,8.5 +2013,5,22,4,30,0,0,0,1.2000000000000002,13,103.34,925,8.700000000000001 +2013,5,22,5,30,0,0,0,1.6,13.8,92.43,925,8.8 +2013,5,22,6,30,123,38,520,2.1,16.3,80.62,926,8.9 +2013,5,22,7,30,336,60,751,2.9000000000000004,20.3,68.42,926,9.1 +2013,5,22,8,30,555,74,859,3.9000000000000004,24.6,55.88,926,5.800000000000001 +2013,5,22,9,30,754,84,920,4.3,27.400000000000002,43.22,926,3.5 +2013,5,22,10,30,911,91,954,4.5,29.5,30.72,926,3.2 +2013,5,22,11,30,1013,96,971,4.7,31.200000000000003,19.11,925,3.2 +2013,5,22,12,30,1053,99,975,4.9,32.5,11.92,924,3.1 +2013,5,22,13,30,1028,100,968,5,33.4,16.64,923,3.1 +2013,5,22,14,30,939,98,950,5.1000000000000005,33.9,27.7,922,3.1 +2013,5,22,15,30,796,95,916,5.1000000000000005,33.9,40.09,922,3.1 +2013,5,22,16,30,603,88,849,5,33.2,52.730000000000004,921,3.2 +2013,5,22,17,30,384,78,734,5,32.800000000000004,65.31,921,3.5 +2013,5,22,18,30,164,56,505,4.2,29,77.61,921,4.800000000000001 +2013,5,22,19,30,0,0,0,4.5,26.400000000000002,89.18,922,6.1000000000000005 +2013,5,22,20,30,0,0,0,4.9,24.700000000000003,100.67,922,7.1000000000000005 +2013,5,22,21,30,0,0,0,5,23.400000000000002,110.66,923,8.5 +2013,5,22,22,30,0,0,0,5.1000000000000005,22.6,118.92,923,10.100000000000001 +2013,5,22,23,30,0,0,0,5.1000000000000005,22.200000000000003,124.66,923,11.700000000000001 +2013,5,23,0,30,0,0,0,4.9,21.8,127.02,923,13.3 +2013,5,23,1,30,0,0,0,4.6000000000000005,21.3,125.57000000000001,924,14.700000000000001 +2013,5,23,2,30,0,0,0,4.2,20.900000000000002,120.59,924,15.8 +2013,5,23,3,30,0,0,0,4,20.5,112.86,924,17 +2013,5,23,4,30,0,0,0,3.9000000000000004,20.200000000000003,103.23,925,18.3 +2013,5,23,5,30,0,0,0,4,20.400000000000002,92.34,925,19.400000000000002 +2013,5,23,6,30,105,59,275,4.5,21.700000000000003,80.54,926,20.200000000000003 +2013,5,23,7,30,304,102,548,5.2,23.900000000000002,68.35000000000001,926,20.900000000000002 +2013,5,23,8,30,519,118,713,5.4,26.1,55.81,926,20.6 +2013,5,23,9,30,712,127,801,5.1000000000000005,27.5,43.15,926,20 +2013,5,23,10,30,865,134,850,4.9,28.400000000000002,30.64,927,20 +2013,5,23,11,30,966,138,876,5,28.8,19,926,20.400000000000002 +2013,5,23,12,30,1004,150,872,5.2,29.1,11.73,926,20.700000000000003 +2013,5,23,13,30,981,146,871,5.5,29.200000000000003,16.48,926,20.8 +2013,5,23,14,30,898,139,856,5.800000000000001,29,27.59,926,20.6 +2013,5,23,15,30,753,144,795,6,28.6,39.980000000000004,926,20.3 +2013,5,23,16,30,573,123,740,6,27.8,52.63,926,19.900000000000002 +2013,5,23,17,30,115,115,0,6.1000000000000005,27.3,65.21000000000001,925,19.5 +2013,5,23,18,30,57,57,0,5.7,24.700000000000003,77.5,925,19.5 +2013,5,23,19,30,0,0,0,4,23.1,89.06,926,19.8 +2013,5,23,20,30,0,0,0,2.7,22.1,100.53,928,20.1 +2013,5,23,21,30,0,0,0,2.7,21.700000000000003,110.51,929,20.3 +2013,5,23,22,30,0,0,0,3.5,21.3,118.75,929,20.1 +2013,5,23,23,30,0,0,0,4,20.900000000000002,124.47,929,20 +2013,5,24,0,30,0,0,0,4.1000000000000005,20.5,126.84,928,20 +2013,5,24,1,30,0,0,0,3.7,20.200000000000003,125.4,928,20 +2013,5,24,2,30,0,0,0,3.2,19.900000000000002,120.43,928,19.900000000000002 +2013,5,24,3,30,0,0,0,2.7,19.5,112.73,928,19.5 +2013,5,24,4,30,0,0,0,2.7,19.3,103.12,929,19.3 +2013,5,24,5,30,0,0,0,3,19.3,92.24,929,19.3 +2013,5,24,6,30,45,45,0,3.5,19.700000000000003,80.46000000000001,929,19.6 +2013,5,24,7,30,207,149,155,4.1000000000000005,20.8,68.28,930,19.700000000000003 +2013,5,24,8,30,369,247,215,4.2,22.200000000000003,55.75,931,19.6 +2013,5,24,9,30,490,348,194,4.1000000000000005,23.400000000000002,43.09,931,19.400000000000002 +2013,5,24,10,30,659,414,284,4,24.3,30.57,931,19.3 +2013,5,24,11,30,760,457,320,4,24.700000000000003,18.900000000000002,931,19.200000000000003 +2013,5,24,12,30,712,507,210,4.2,24.900000000000002,11.56,931,19 +2013,5,24,13,30,780,453,341,4.3,24.8,16.330000000000002,930,18.900000000000002 +2013,5,24,14,30,720,403,356,4.6000000000000005,24.5,27.48,930,19 +2013,5,24,15,30,595,346,325,4.7,24,39.89,930,19.1 +2013,5,24,16,30,452,254,325,4.7,23.400000000000002,52.53,930,19.200000000000003 +2013,5,24,17,30,213,173,94,4.7,23,65.11,930,19.200000000000003 +2013,5,24,18,30,110,80,137,3.9000000000000004,21.5,77.39,930,19.3 +2013,5,24,19,30,4,4,0,3.7,20.5,88.95,931,19.400000000000002 +2013,5,24,20,30,0,0,0,3.7,19.900000000000002,100.4,931,19.6 +2013,5,24,21,30,0,0,0,3.8000000000000003,19.400000000000002,110.35000000000001,931,19.400000000000002 +2013,5,24,22,30,0,0,0,3.6,18.8,118.59,931,18.8 +2013,5,24,23,30,0,0,0,3.4000000000000004,18.3,124.29,931,18.3 +2013,5,25,0,30,0,0,0,3.3000000000000003,18,126.66,931,18 +2013,5,25,1,30,0,0,0,3.3000000000000003,17.900000000000002,125.23,930,17.900000000000002 +2013,5,25,2,30,0,0,0,3.2,17.8,120.28,931,17.8 +2013,5,25,3,30,0,0,0,3,17.7,112.60000000000001,931,17.7 +2013,5,25,4,30,0,0,0,3.1,17.6,103.01,931,17.6 +2013,5,25,5,30,0,0,0,3.5,17.8,92.16,931,17.8 +2013,5,25,6,30,114,47,403,4.3,18.7,80.39,931,18.1 +2013,5,25,7,30,105,105,0,5.2,20,68.21000000000001,932,18 +2013,5,25,8,30,153,152,1,5.5,21.6,55.69,932,17.400000000000002 +2013,5,25,9,30,717,105,838,5.4,23.3,43.04,932,17.1 +2013,5,25,10,30,869,114,877,5.2,24.900000000000002,30.51,931,17 +2013,5,25,11,30,763,452,329,5.1000000000000005,26.400000000000002,18.8,931,17.1 +2013,5,25,12,30,1008,123,903,5,27.700000000000003,11.38,930,17.1 +2013,5,25,13,30,837,437,417,4.9,28.3,16.19,929,17.2 +2013,5,25,14,30,784,377,459,4.800000000000001,28.400000000000002,27.37,928,17.2 +2013,5,25,15,30,725,223,654,4.7,28.1,39.79,928,17.3 +2013,5,25,16,30,375,278,160,4.5,27.400000000000002,52.44,928,17.3 +2013,5,25,17,30,304,150,363,4.4,26.900000000000002,65.01,927,17.5 +2013,5,25,18,30,162,63,449,3.7,24.5,77.28,927,18.1 +2013,5,25,19,30,11,10,48,3.8000000000000003,23.1,88.84,928,18.6 +2013,5,25,20,30,0,0,0,4,22,100.26,928,19.200000000000003 +2013,5,25,21,30,0,0,0,4.1000000000000005,21.1,110.21000000000001,928,19.700000000000003 +2013,5,25,22,30,0,0,0,4.3,20.400000000000002,118.42,928,20 +2013,5,25,23,30,0,0,0,4.2,19.900000000000002,124.12,928,19.900000000000002 +2013,5,26,0,30,0,0,0,3.7,19.700000000000003,126.48,928,19.700000000000003 +2013,5,26,1,30,0,0,0,3.3000000000000003,19.5,125.06,928,19.5 +2013,5,26,2,30,0,0,0,3.5,19.400000000000002,120.14,928,19.400000000000002 +2013,5,26,3,30,0,0,0,3.8000000000000003,19.3,112.48,928,19.3 +2013,5,26,4,30,0,0,0,3.9000000000000004,19.200000000000003,102.91,928,19.200000000000003 +2013,5,26,5,30,0,0,0,3.7,19.400000000000002,92.07000000000001,928,19.400000000000002 +2013,5,26,6,30,83,59,142,4.1000000000000005,20.5,80.32000000000001,928,19.700000000000003 +2013,5,26,7,30,192,150,111,4.800000000000001,22.6,68.16,929,19.8 +2013,5,26,8,30,455,195,462,5.1000000000000005,24.8,55.64,929,19.3 +2013,5,26,9,30,715,116,819,4.9,26.700000000000003,42.99,929,18.8 +2013,5,26,10,30,868,122,865,4.9,28.3,30.45,929,18.2 +2013,5,26,11,30,969,126,889,4.800000000000001,29.6,18.71,928,17.6 +2013,5,26,12,30,1012,116,913,4.800000000000001,30.700000000000003,11.22,927,17.1 +2013,5,26,13,30,991,114,913,4.9,31.400000000000002,16.05,927,16.8 +2013,5,26,14,30,907,108,898,5,31.8,27.26,926,16.5 +2013,5,26,15,30,756,173,758,5.2,31.700000000000003,39.69,925,16.3 +2013,5,26,16,30,588,88,818,5.4,31,52.34,925,16.3 +2013,5,26,17,30,380,73,723,5.5,30.5,64.91,925,16.5 +2013,5,26,18,30,170,51,537,4.9,27.700000000000003,77.17,925,16.900000000000002 +2013,5,26,19,30,12,10,96,4.5,25.900000000000002,88.74,925,17.5 +2013,5,26,20,30,0,0,0,4.5,24.5,100.13,926,18.1 +2013,5,26,21,30,0,0,0,4.9,23.5,110.06,926,18.6 +2013,5,26,22,30,0,0,0,5.300000000000001,22.400000000000002,118.26,926,19.200000000000003 +2013,5,26,23,30,0,0,0,5.300000000000001,21.3,123.95,926,19.8 +2013,5,27,0,30,0,0,0,5.2,20.400000000000002,126.31,925,19.900000000000002 +2013,5,27,1,30,0,0,0,5.1000000000000005,19.700000000000003,124.91,925,19.700000000000003 +2013,5,27,2,30,0,0,0,4.7,19.200000000000003,120,925,19.200000000000003 +2013,5,27,3,30,0,0,0,4.3,18.8,112.37,925,18.8 +2013,5,27,4,30,0,0,0,4.1000000000000005,18.6,102.82000000000001,925,18.6 +2013,5,27,5,30,0,0,0,4.4,18.8,92,925,18.400000000000002 +2013,5,27,6,30,114,53,361,5.300000000000001,20.3,80.26,925,18.400000000000002 +2013,5,27,7,30,317,87,615,6.2,22.6,68.1,925,18.3 +2013,5,27,8,30,528,105,749,6.6000000000000005,25.3,55.59,925,18.400000000000002 +2013,5,27,9,30,720,115,826,6.7,27.700000000000003,42.94,925,18.2 +2013,5,27,10,30,872,122,869,6.6000000000000005,29.700000000000003,30.39,924,17.8 +2013,5,27,11,30,971,127,891,6.7,31.3,18.62,924,17.400000000000002 +2013,5,27,12,30,1011,123,905,6.7,32.4,11.06,923,17.2 +2013,5,27,13,30,986,127,893,6.9,33,15.91,922,17 +2013,5,27,14,30,897,130,862,7,32.9,27.16,921,16.900000000000002 +2013,5,27,15,30,760,118,833,6.9,32.2,39.6,921,17 +2013,5,27,16,30,575,114,754,6.7,30.900000000000002,52.25,920,17.1 +2013,5,27,17,30,184,165,44,6.5,30.200000000000003,64.81,920,17.3 +2013,5,27,18,30,59,59,0,5.800000000000001,27.700000000000003,77.07000000000001,921,17.5 +2013,5,27,19,30,6,6,0,5.4,26,88.63,921,17.8 +2013,5,27,20,30,0,0,0,5.300000000000001,24.6,100,922,18.1 +2013,5,27,21,30,0,0,0,5.4,23.6,109.92,922,18.2 +2013,5,27,22,30,0,0,0,5.5,22.900000000000002,118.11,922,18.3 +2013,5,27,23,30,0,0,0,5.5,22.200000000000003,123.79,922,18.6 +2013,5,28,0,30,0,0,0,5.5,21.5,126.15,922,18.900000000000002 +2013,5,28,1,30,0,0,0,5.4,20.900000000000002,124.75,922,19.1 +2013,5,28,2,30,0,0,0,5.300000000000001,20.400000000000002,119.87,922,19.200000000000003 +2013,5,28,3,30,0,0,0,5.2,20.1,112.26,922,19.1 +2013,5,28,4,30,0,0,0,5.1000000000000005,19.900000000000002,102.73,922,18.900000000000002 +2013,5,28,5,30,0,0,0,5.2,19.900000000000002,91.92,921,18.7 +2013,5,28,6,30,70,60,56,5.800000000000001,20.400000000000002,80.2,921,18.3 +2013,5,28,7,30,37,37,0,6.6000000000000005,21.700000000000003,68.05,922,17.900000000000002 +2013,5,28,8,30,80,80,0,7.4,23.400000000000002,55.550000000000004,922,17.6 +2013,5,28,9,30,84,84,0,7.4,25.3,42.9,922,17.6 +2013,5,28,10,30,457,401,65,6.9,27.400000000000002,30.34,921,16.7 +2013,5,28,11,30,303,287,17,6.5,29,18.55,921,14.5 +2013,5,28,12,30,178,169,9,6.1000000000000005,29.6,10.9,921,13 +2013,5,28,13,30,455,417,39,5.6000000000000005,28.900000000000002,15.77,920,12.9 +2013,5,28,14,30,255,243,14,5.7,27.8,27.05,920,13.9 +2013,5,28,15,30,634,313,415,6.2,26.8,39.5,920,15.4 +2013,5,28,16,30,241,227,24,6.5,26.1,52.15,919,17 +2013,5,28,17,30,170,158,28,6.4,25.700000000000003,64.71000000000001,919,17.900000000000002 +2013,5,28,18,30,77,76,5,5.9,24.700000000000003,76.96000000000001,919,18.2 +2013,5,28,19,30,8,8,0,5.7,23.700000000000003,88.53,919,18.3 +2013,5,28,20,30,0,0,0,5.7,23,99.88,919,18.400000000000002 +2013,5,28,21,30,0,0,0,5.800000000000001,22.5,109.78,919,18.6 +2013,5,28,22,30,0,0,0,6.2,22,117.96000000000001,919,18.900000000000002 +2013,5,28,23,30,0,0,0,6.6000000000000005,21.6,123.63000000000001,919,19.400000000000002 +2013,5,29,0,30,0,0,0,6.800000000000001,21.200000000000003,125.99000000000001,919,19.700000000000003 +2013,5,29,1,30,0,0,0,6.5,21,124.61,919,19.700000000000003 +2013,5,29,2,30,0,0,0,6.1000000000000005,20.8,119.75,919,19.700000000000003 +2013,5,29,3,30,0,0,0,5.7,20.700000000000003,112.16,919,19.6 +2013,5,29,4,30,0,0,0,5.4,20.6,102.65,919,19.5 +2013,5,29,5,30,0,0,0,5.4,20.700000000000003,91.86,919,19.400000000000002 +2013,5,29,6,30,78,61,98,5.9,21.3,80.14,919,19.400000000000002 +2013,5,29,7,30,212,151,163,6.7,22.5,68.01,919,19.3 +2013,5,29,8,30,326,253,129,7.4,24.1,55.51,919,19.1 +2013,5,29,9,30,446,350,130,7.5,25.6,42.86,919,19 +2013,5,29,10,30,851,151,811,7.4,26.700000000000003,30.3,918,19 +2013,5,29,11,30,949,163,828,7.1000000000000005,27.8,18.47,918,18.8 +2013,5,29,12,30,986,173,828,7,29.1,10.76,917,18.400000000000002 +2013,5,29,13,30,454,417,39,7,30.200000000000003,15.64,917,17.900000000000002 +2013,5,29,14,30,640,449,214,7.1000000000000005,30.8,26.95,916,17.5 +2013,5,29,15,30,541,373,217,7.2,30.700000000000003,39.410000000000004,916,17.1 +2013,5,29,16,30,567,135,703,7.4,30.3,52.06,915,16.6 +2013,5,29,17,30,366,106,607,7.5,30,64.62,915,16.400000000000002 +2013,5,29,18,30,163,69,412,7.300000000000001,27.6,76.86,915,16.6 +2013,5,29,19,30,12,11,40,7.4,25.900000000000002,88.43,916,17.2 +2013,5,29,20,30,0,0,0,7.5,24.700000000000003,99.76,917,18.1 +2013,5,29,21,30,0,0,0,7.5,23.700000000000003,109.65,918,19 +2013,5,29,22,30,0,0,0,7.4,22.8,117.81,918,19.6 +2013,5,29,23,30,0,0,0,7,22,123.48,918,20 +2013,5,30,0,30,0,0,0,6.7,21.400000000000002,125.84,918,20.3 +2013,5,30,1,30,0,0,0,6.300000000000001,20.900000000000002,124.47,918,20.3 +2013,5,30,2,30,0,0,0,6.2,20.6,119.63,918,20.1 +2013,5,30,3,30,0,0,0,6.2,20.400000000000002,112.06,918,19.900000000000002 +2013,5,30,4,30,0,0,0,5.9,20.200000000000003,102.57000000000001,919,19.8 +2013,5,30,5,30,0,0,0,5.9,20.5,91.8,919,19.700000000000003 +2013,5,30,6,30,113,59,312,6.4,21.8,80.10000000000001,920,19.700000000000003 +2013,5,30,7,30,205,152,141,6.9,23.900000000000002,67.97,920,19.6 +2013,5,30,8,30,531,109,744,6.7,26.5,55.480000000000004,920,19.3 +2013,5,30,9,30,726,115,834,6.2,29.1,42.83,920,18.7 +2013,5,30,10,30,882,119,883,5.6000000000000005,31.400000000000002,30.26,920,17.5 +2013,5,30,11,30,986,122,911,5.2,33.4,18.41,920,16 +2013,5,30,12,30,1029,125,920,4.800000000000001,34.800000000000004,10.620000000000001,919,14.3 +2013,5,30,13,30,1009,122,921,4.7,35.7,15.52,918,12.600000000000001 +2013,5,30,14,30,927,114,911,4.7,36,26.85,918,11.100000000000001 +2013,5,30,15,30,744,206,695,4.6000000000000005,35.9,39.32,917,9.3 +2013,5,30,16,30,605,92,832,4.3,35.2,51.97,917,7.5 +2013,5,30,17,30,403,73,766,4.1000000000000005,34.7,64.52,917,6.5 +2013,5,30,18,30,186,51,590,2.3000000000000003,29.6,76.76,918,10.5 +2013,5,30,19,30,17,13,128,2.4000000000000004,26.3,88.33,919,11.600000000000001 +2013,5,30,20,30,0,0,0,3.2,24.900000000000002,99.64,919,11.200000000000001 +2013,5,30,21,30,0,0,0,4.3,24.200000000000003,109.52,920,12.5 +2013,5,30,22,30,0,0,0,5.1000000000000005,23.400000000000002,117.67,920,14.5 +2013,5,30,23,30,0,0,0,5.300000000000001,22.5,123.33,920,16.400000000000002 +2013,5,31,0,30,0,0,0,5.4,21.8,125.69,921,17.900000000000002 +2013,5,31,1,30,0,0,0,5.4,21.400000000000002,124.34,921,19 +2013,5,31,2,30,0,0,0,5.5,21.200000000000003,119.52,921,19.8 +2013,5,31,3,30,0,0,0,5.5,20.8,111.97,921,20.200000000000003 +2013,5,31,4,30,0,0,0,5.300000000000001,20.400000000000002,102.5,921,20.400000000000002 +2013,5,31,5,30,0,0,0,5.5,20.5,91.74,921,20.400000000000002 +2013,5,31,6,30,122,51,407,6.300000000000001,22,80.05,922,20.3 +2013,5,31,7,30,329,80,664,7,24.700000000000003,67.94,922,20.200000000000003 +2013,5,31,8,30,543,95,790,7.1000000000000005,27.8,55.45,922,19.900000000000002 +2013,5,31,9,30,737,106,860,6.9,30.6,42.800000000000004,922,19.1 +2013,5,31,10,30,890,114,899,6.6000000000000005,33.1,30.23,921,17.900000000000002 +2013,5,31,11,30,989,118,918,6.4,35.1,18.35,921,16.7 +2013,5,31,12,30,1032,114,934,6.300000000000001,36.5,10.48,920,15.600000000000001 +2013,5,31,13,30,1009,115,927,6.300000000000001,37.4,15.39,919,14.600000000000001 +2013,5,31,14,30,923,113,906,6.300000000000001,37.7,26.75,918,13.5 +2013,5,31,15,30,782,108,870,6.2,37.6,39.230000000000004,918,12.5 +2013,5,31,16,30,598,99,808,6,37,51.88,917,11.600000000000001 +2013,5,31,17,30,389,83,707,5.800000000000001,36.5,64.43,917,11.5 +2013,5,31,18,30,176,58,511,5.300000000000001,32.9,76.67,917,13.100000000000001 +2013,5,31,19,30,16,13,87,5.6000000000000005,30.5,88.23,917,15.200000000000001 +2013,5,31,20,30,0,0,0,6,29,99.52,918,17.2 +2013,5,31,21,30,0,0,0,6.1000000000000005,27.8,109.39,918,18.6 +2013,5,31,22,30,0,0,0,6.2,26.900000000000002,117.53,919,19.5 +2013,5,31,23,30,0,0,0,6.4,26,123.19,919,20.1 +2013,6,1,0,30,0,0,0,6.6000000000000005,25.200000000000003,125.55,919,20.200000000000003 +2013,6,1,1,30,0,0,0,6.800000000000001,24.3,124.21000000000001,919,20.1 +2013,6,1,2,30,0,0,0,6.5,23.5,119.41,919,20 +2013,6,1,3,30,0,0,0,5.5,22.700000000000003,111.88,920,20 +2013,6,1,4,30,0,0,0,3.9000000000000004,21.900000000000002,102.43,920,20 +2013,6,1,5,30,0,0,0,2.9000000000000004,21.900000000000002,91.69,921,20 +2013,6,1,6,30,119,51,394,3,23.400000000000002,80.01,922,19.700000000000003 +2013,6,1,7,30,321,84,629,3.2,25.5,67.91,923,19.200000000000003 +2013,6,1,8,30,239,220,34,3.5,27.400000000000002,55.43,924,18.8 +2013,6,1,9,30,634,260,510,4.3,28.8,42.78,924,18.1 +2013,6,1,10,30,872,134,854,5.4,29.6,30.2,925,17.2 +2013,6,1,11,30,805,424,402,6.1000000000000005,30.3,18.29,925,16.1 +2013,6,1,12,30,949,404,554,6.300000000000001,30.900000000000002,10.36,925,15 +2013,6,1,13,30,950,342,630,6.300000000000001,31.200000000000003,15.27,925,13.8 +2013,6,1,14,30,905,151,844,6.2,31.200000000000003,26.66,925,12.8 +2013,6,1,15,30,767,144,802,5.9,30.8,39.14,925,11.8 +2013,6,1,16,30,590,122,757,5.6000000000000005,30,51.800000000000004,925,10.700000000000001 +2013,6,1,17,30,384,95,667,5.4,29.400000000000002,64.34,925,9.8 +2013,6,1,18,30,177,63,492,3.8000000000000003,26.3,76.57000000000001,926,8.9 +2013,6,1,19,30,17,14,85,2.7,23.700000000000003,88.12,927,8.8 +2013,6,1,20,30,0,0,0,2.4000000000000004,21.900000000000002,99.41,928,8.6 +2013,6,1,21,30,0,0,0,2.4000000000000004,20.900000000000002,109.27,928,8.3 +2013,6,1,22,30,0,0,0,2.2,19.8,117.4,929,8.4 +2013,6,1,23,30,0,0,0,2,18.900000000000002,123.05,929,8.6 +2013,6,2,0,30,0,0,0,1.9000000000000001,18.1,125.42,929,8.8 +2013,6,2,1,30,0,0,0,1.9000000000000001,17.5,124.09,929,9 +2013,6,2,2,30,0,0,0,1.9000000000000001,16.8,119.31,929,9.1 +2013,6,2,3,30,0,0,0,1.9000000000000001,16.2,111.8,929,9.3 +2013,6,2,4,30,0,0,0,1.9000000000000001,15.600000000000001,102.37,930,9.700000000000001 +2013,6,2,5,30,0,0,0,2.5,15.9,91.64,931,10.200000000000001 +2013,6,2,6,30,127,46,463,3.6,18,79.97,932,10.700000000000001 +2013,6,2,7,30,336,74,697,4.6000000000000005,20.900000000000002,67.88,932,10.700000000000001 +2013,6,2,8,30,552,89,814,4.800000000000001,23.400000000000002,55.4,932,10 +2013,6,2,9,30,747,98,884,4.4,25.400000000000002,42.76,932,9.700000000000001 +2013,6,2,10,30,901,102,924,3.8000000000000003,27.3,30.17,931,9.4 +2013,6,2,11,30,1005,104,949,3.3000000000000003,28.8,18.240000000000002,931,9.1 +2013,6,2,12,30,1043,108,951,2.9000000000000004,30.1,10.24,930,8.700000000000001 +2013,6,2,13,30,1018,105,947,2.5,31,15.16,929,8.4 +2013,6,2,14,30,934,102,930,2.2,31.400000000000002,26.57,928,8.1 +2013,6,2,15,30,792,100,891,1.9000000000000001,31.5,39.050000000000004,927,7.7 +2013,6,2,16,30,608,92,833,1.9000000000000001,31.1,51.71,927,7.300000000000001 +2013,6,2,17,30,398,78,735,2,30.700000000000003,64.25,926,6.9 +2013,6,2,18,30,184,56,550,1.5,27.1,76.47,926,8.1 +2013,6,2,19,30,18,14,129,1.5,24.3,88.03,926,10.700000000000001 +2013,6,2,20,30,0,0,0,2.1,23.200000000000003,99.3,926,9.5 +2013,6,2,21,30,0,0,0,3,22.700000000000003,109.15,925,8.8 +2013,6,2,22,30,0,0,0,3.1,21.700000000000003,117.28,925,8.700000000000001 +2013,6,2,23,30,0,0,0,2.1,20.400000000000002,122.92,926,9.4 +2013,6,3,0,30,0,0,0,1.4000000000000001,19.3,125.3,927,10.4 +2013,6,3,1,30,0,0,0,1.9000000000000001,18.6,123.98,928,10.700000000000001 +2013,6,3,2,30,0,0,0,2.7,18.2,119.22,927,10.600000000000001 +2013,6,3,3,30,0,0,0,3,17.900000000000002,111.73,927,10.9 +2013,6,3,4,30,0,0,0,3,17.5,102.31,927,11.4 +2013,6,3,5,30,0,0,0,3.4000000000000004,17.900000000000002,91.60000000000001,927,11.8 +2013,6,3,6,30,85,61,135,4.1000000000000005,19.6,79.95,927,11.9 +2013,6,3,7,30,231,148,222,4.4,22.200000000000003,67.86,927,11.700000000000001 +2013,6,3,8,30,369,250,208,4.6000000000000005,25,55.39,927,11.700000000000001 +2013,6,3,9,30,561,327,319,4.7,27.5,42.74,927,13.600000000000001 +2013,6,3,10,30,870,130,856,4.800000000000001,29.5,30.150000000000002,926,15.100000000000001 +2013,6,3,11,30,908,379,557,4.7,30.8,18.2,925,15.600000000000001 +2013,6,3,12,30,1011,126,899,4.4,31.5,10.13,924,15.700000000000001 +2013,6,3,13,30,987,128,889,4.2,32,15.05,923,15.8 +2013,6,3,14,30,903,127,867,4.2,32.5,26.48,923,16 +2013,6,3,15,30,768,116,839,4.4,33,38.97,922,16.1 +2013,6,3,16,30,589,106,779,4.5,33,51.620000000000005,922,16.1 +2013,6,3,17,30,383,92,668,4.5,32.9,64.16,922,16.1 +2013,6,3,18,30,175,66,464,3.6,30.400000000000002,76.38,922,16.2 +2013,6,3,19,30,17,15,79,3.5,28.3,87.94,922,16.6 +2013,6,3,20,30,0,0,0,4.1000000000000005,27.1,99.19,923,16.7 +2013,6,3,21,30,0,0,0,4.4,26.1,109.03,923,16.900000000000002 +2013,6,3,22,30,0,0,0,4.3,25,117.15,923,17.2 +2013,6,3,23,30,0,0,0,4.3,24,122.8,923,17.5 +2013,6,4,0,30,0,0,0,4.4,23,125.18,923,17.5 +2013,6,4,1,30,0,0,0,4.4,22.1,123.87,923,17.400000000000002 +2013,6,4,2,30,0,0,0,4.2,21.3,119.13,923,17 +2013,6,4,3,30,0,0,0,4,20.700000000000003,111.66,923,16.5 +2013,6,4,4,30,0,0,0,3.8000000000000003,20.3,102.26,923,16.2 +2013,6,4,5,30,0,0,0,4,20.5,91.56,923,16 +2013,6,4,6,30,120,51,392,4.9,22.400000000000002,79.92,923,16.1 +2013,6,4,7,30,320,83,629,5.9,25.5,67.84,923,16.8 +2013,6,4,8,30,531,102,755,6.1000000000000005,29,55.38,923,16.900000000000002 +2013,6,4,9,30,722,115,826,5.800000000000001,32,42.730000000000004,923,16.6 +2013,6,4,10,30,875,124,869,5.5,34.4,30.14,922,16.3 +2013,6,4,11,30,976,127,893,5.2,36.300000000000004,18.17,922,16.2 +2013,6,4,12,30,1024,112,926,5.1000000000000005,37.7,10.02,921,16 +2013,6,4,13,30,1000,111,920,5.1000000000000005,38.6,14.94,920,15.600000000000001 +2013,6,4,14,30,914,108,901,5.2,39,26.39,919,15.3 +2013,6,4,15,30,723,250,608,5.2,38.900000000000006,38.89,919,14.9 +2013,6,4,16,30,596,92,810,5.2,38.300000000000004,51.54,918,14.4 +2013,6,4,17,30,389,79,709,5.2,37.800000000000004,64.07000000000001,918,14.4 +2013,6,4,18,30,180,57,520,5.300000000000001,34.1,76.29,919,15.700000000000001 +2013,6,4,19,30,19,14,118,5.6000000000000005,31.6,87.85000000000001,919,16.3 +2013,6,4,20,30,0,0,0,6,29.8,99.08,920,16.5 +2013,6,4,21,30,0,0,0,5.9,28.3,108.92,921,16.2 +2013,6,4,22,30,0,0,0,5.800000000000001,26.700000000000003,117.04,921,15.4 +2013,6,4,23,30,0,0,0,5.7,25.200000000000003,122.68,922,14.600000000000001 +2013,6,5,0,30,0,0,0,5.7,24,125.06,922,14.200000000000001 +2013,6,5,1,30,0,0,0,5.5,23,123.77,922,14.100000000000001 +2013,6,5,2,30,0,0,0,5.300000000000001,22.200000000000003,119.05,922,14.4 +2013,6,5,3,30,0,0,0,5,21.5,111.60000000000001,922,14.9 +2013,6,5,4,30,0,0,0,4.6000000000000005,20.8,102.22,922,15.5 +2013,6,5,5,30,0,0,0,4.6000000000000005,20.6,91.53,923,16.1 +2013,6,5,6,30,84,62,128,5.4,22,79.9,923,16.6 +2013,6,5,7,30,284,115,447,5.9,24.6,67.83,923,16.7 +2013,6,5,8,30,512,126,678,5.7,27.700000000000003,55.370000000000005,923,16.5 +2013,6,5,9,30,508,348,219,5.2,30.700000000000003,42.730000000000004,923,16 +2013,6,5,10,30,880,116,883,4.7,33.300000000000004,30.13,923,15.600000000000001 +2013,6,5,11,30,977,122,900,4.3,35.2,18.13,922,15.3 +2013,6,5,12,30,1018,119,913,4,36.4,9.92,922,15.3 +2013,6,5,13,30,992,119,903,3.8000000000000003,37,14.83,921,15.4 +2013,6,5,14,30,907,118,880,3.7,37,26.3,921,15.600000000000001 +2013,6,5,15,30,767,113,839,3.8000000000000003,36.300000000000004,38.800000000000004,920,15.8 +2013,6,5,16,30,586,106,770,3.8000000000000003,35.1,51.46,920,16 +2013,6,5,17,30,380,94,653,3.7,34.300000000000004,63.99,920,16.5 +2013,6,5,18,30,173,70,432,2.2,29.900000000000002,76.2,921,18.8 +2013,6,5,19,30,14,14,0,2.1,27.200000000000003,87.76,922,20 +2013,6,5,20,30,0,0,0,2.5,25.700000000000003,98.98,922,19 +2013,6,5,21,30,0,0,0,2.3000000000000003,24.200000000000003,108.81,923,18.3 +2013,6,5,22,30,0,0,0,1.6,22.8,116.92,924,18.3 +2013,6,5,23,30,0,0,0,1.5,21.8,122.56,924,18.900000000000002 +2013,6,6,0,30,0,0,0,1.9000000000000001,21.200000000000003,124.96000000000001,925,19.200000000000003 +2013,6,6,1,30,0,0,0,2.1,20.6,123.68,924,19.3 +2013,6,6,2,30,0,0,0,2.2,20.1,118.97,924,19.400000000000002 +2013,6,6,3,30,0,0,0,2.4000000000000004,19.6,111.54,925,19.400000000000002 +2013,6,6,4,30,0,0,0,2.7,19.1,102.17,925,19.1 +2013,6,6,5,30,0,0,0,3.4000000000000004,18.900000000000002,91.5,925,18.900000000000002 +2013,6,6,6,30,115,61,307,4.4,19.3,79.88,926,18.900000000000002 +2013,6,6,7,30,308,111,524,4.9,20.5,67.82000000000001,926,18.400000000000002 +2013,6,6,8,30,512,145,646,4.9,22.200000000000003,55.36,927,17.8 +2013,6,6,9,30,698,168,721,4.9,23.900000000000002,42.72,927,17.400000000000002 +2013,6,6,10,30,678,407,313,4.800000000000001,25.5,30.12,927,17.2 +2013,6,6,11,30,762,457,321,4.7,26.8,18.11,927,17 +2013,6,6,12,30,614,503,112,4.7,27.8,9.83,926,16.8 +2013,6,6,13,30,744,485,268,4.7,28.200000000000003,14.73,926,16.6 +2013,6,6,14,30,572,451,134,4.7,28.200000000000003,26.21,926,16.5 +2013,6,6,15,30,478,377,129,4.5,27.700000000000003,38.72,925,16.2 +2013,6,6,16,30,583,128,728,4.3,26.8,51.38,925,16 +2013,6,6,17,30,278,179,227,4.2,26.200000000000003,63.910000000000004,925,15.700000000000001 +2013,6,6,18,30,176,70,440,3.5,24,76.11,926,15.5 +2013,6,6,19,30,19,15,87,2.8000000000000003,22.400000000000002,87.67,926,15.600000000000001 +2013,6,6,20,30,0,0,0,2.5,21.200000000000003,98.89,927,15.8 +2013,6,6,21,30,0,0,0,2.3000000000000003,20.400000000000002,108.71000000000001,928,15.700000000000001 +2013,6,6,22,30,0,0,0,2,19.6,116.82000000000001,928,15.700000000000001 +2013,6,6,23,30,0,0,0,1.7000000000000002,18.900000000000002,122.46000000000001,928,15.600000000000001 +2013,6,7,0,30,0,0,0,1.4000000000000001,18.2,124.86,928,15.5 +2013,6,7,1,30,0,0,0,1,17.5,123.60000000000001,928,15.5 +2013,6,7,2,30,0,0,0,0.8,16.900000000000002,118.91,929,15.5 +2013,6,7,3,30,0,0,0,0.7000000000000001,16.5,111.49000000000001,929,15.5 +2013,6,7,4,30,0,0,0,0.6000000000000001,16.1,102.14,929,15.5 +2013,6,7,5,30,0,0,0,0.7000000000000001,16.7,91.48,929,15.5 +2013,6,7,6,30,79,62,96,1.3,18.7,79.87,929,15.4 +2013,6,7,7,30,234,147,232,1.9000000000000001,21.1,67.81,929,13.9 +2013,6,7,8,30,372,249,216,2.3000000000000003,23.5,55.36,929,12.4 +2013,6,7,9,30,491,350,193,2.5,25.5,42.730000000000004,929,11.4 +2013,6,7,10,30,691,399,338,2.5,27.3,30.12,929,10.700000000000001 +2013,6,7,11,30,732,473,273,2.5,28.6,18.09,928,10.3 +2013,6,7,12,30,857,458,405,2.4000000000000004,29.6,9.75,928,10 +2013,6,7,13,30,766,476,300,2.4000000000000004,30.200000000000003,14.64,927,9.8 +2013,6,7,14,30,746,388,398,2.5,30.400000000000002,26.13,926,9.700000000000001 +2013,6,7,15,30,763,182,744,2.7,30.200000000000003,38.65,926,9.600000000000001 +2013,6,7,16,30,608,92,825,2.8000000000000003,29.700000000000003,51.300000000000004,926,9.3 +2013,6,7,17,30,401,77,734,2.8000000000000003,29.3,63.83,925,9.1 +2013,6,7,18,30,191,54,568,2.4000000000000004,26.1,76.03,925,9.600000000000001 +2013,6,7,19,30,23,16,171,2.7,23.700000000000003,87.58,925,11.200000000000001 +2013,6,7,20,30,0,0,0,3.6,22.6,98.79,925,10.4 +2013,6,7,21,30,0,0,0,3.3000000000000003,21.5,108.61,925,10.5 +2013,6,7,22,30,0,0,0,2.5,20.200000000000003,116.71000000000001,926,11.100000000000001 +2013,6,7,23,30,0,0,0,2.5,19.3,122.36,926,11.5 +2013,6,8,0,30,0,0,0,3.1,18.8,124.76,927,11.700000000000001 +2013,6,8,1,30,0,0,0,3.5,18.2,123.52,927,12.100000000000001 +2013,6,8,2,30,0,0,0,3.4000000000000004,17.5,118.84,926,12.9 +2013,6,8,3,30,0,0,0,3.1,16.900000000000002,111.45,926,13.700000000000001 +2013,6,8,4,30,0,0,0,3,16.5,102.11,925,14.3 +2013,6,8,5,30,0,0,0,3.2,16.8,91.46000000000001,925,14.8 +2013,6,8,6,30,69,61,41,3.9000000000000004,18.7,79.86,925,15.200000000000001 +2013,6,8,7,30,268,128,372,4.800000000000001,21.5,67.81,925,14.700000000000001 +2013,6,8,8,30,290,245,79,5.4,24,55.370000000000005,925,13.200000000000001 +2013,6,8,9,30,456,351,143,5.5,25.8,42.730000000000004,925,13.200000000000001 +2013,6,8,10,30,487,414,84,5.5,27,30.12,925,14.200000000000001 +2013,6,8,11,30,827,430,418,5.4,27.6,18.07,924,15.200000000000001 +2013,6,8,12,30,885,469,422,5.4,27.5,9.67,924,16.1 +2013,6,8,13,30,825,439,399,5.300000000000001,26.8,14.540000000000001,923,16.900000000000002 +2013,6,8,14,30,744,391,393,5.2,26,26.05,922,17.6 +2013,6,8,15,30,766,120,825,5,25.6,38.57,922,18.1 +2013,6,8,16,30,591,105,775,4.7,25.400000000000002,51.22,922,18.5 +2013,6,8,17,30,389,86,684,4.5,25.3,63.75,921,18.8 +2013,6,8,18,30,184,61,509,3.1,23.5,75.95,922,19.400000000000002 +2013,6,8,19,30,22,17,125,2.8000000000000003,22.1,87.5,922,19.8 +2013,6,8,20,30,0,0,0,3.2,21.3,98.7,923,19.6 +2013,6,8,21,30,0,0,0,3.6,20.8,108.52,923,19.5 +2013,6,8,22,30,0,0,0,3.7,20.200000000000003,116.62,923,19.5 +2013,6,8,23,30,0,0,0,3.5,19.8,122.26,923,19.6 +2013,6,9,0,30,0,0,0,3.1,19.400000000000002,124.68,923,19.400000000000002 +2013,6,9,1,30,0,0,0,2.5,19.3,123.44,923,19.3 +2013,6,9,2,30,0,0,0,2,19.1,118.79,924,19.1 +2013,6,9,3,30,0,0,0,1.7000000000000002,18.8,111.41,924,18.8 +2013,6,9,4,30,0,0,0,1.9000000000000001,18.7,102.09,924,18.7 +2013,6,9,5,30,0,0,0,2.5,18.900000000000002,91.45,925,18.900000000000002 +2013,6,9,6,30,28,28,0,2.9000000000000004,19.8,79.86,926,19.5 +2013,6,9,7,30,275,122,405,3,21.6,67.81,926,19.8 +2013,6,9,8,30,527,107,739,2.7,24,55.370000000000005,926,19.8 +2013,6,9,9,30,579,315,358,2.1,26.3,42.74,926,19.5 +2013,6,9,10,30,878,116,881,1.9000000000000001,28.3,30.13,926,18.900000000000002 +2013,6,9,11,30,982,118,909,2.1,29.700000000000003,18.06,926,18.3 +2013,6,9,12,30,1028,107,934,2.4000000000000004,30.700000000000003,9.6,926,17.8 +2013,6,9,13,30,1008,103,935,2.6,31.400000000000002,14.450000000000001,926,17.2 +2013,6,9,14,30,927,98,922,2.8000000000000003,31.700000000000003,25.98,925,16.6 +2013,6,9,15,30,793,91,897,2.9000000000000004,31.6,38.5,925,16.1 +2013,6,9,16,30,613,81,847,2.9000000000000004,31,51.15,925,15.5 +2013,6,9,17,30,407,69,762,2.9000000000000004,30.6,63.67,925,15 +2013,6,9,18,30,196,50,597,1.7000000000000002,27.3,75.87,925,15.9 +2013,6,9,19,30,25,16,193,1.3,24.6,87.43,926,17.400000000000002 +2013,6,9,20,30,0,0,0,1.4000000000000001,23.200000000000003,98.62,927,16.400000000000002 +2013,6,9,21,30,0,0,0,1.5,22.400000000000002,108.43,927,16 +2013,6,9,22,30,0,0,0,1.6,21.700000000000003,116.53,928,15.8 +2013,6,9,23,30,0,0,0,1.9000000000000001,21.200000000000003,122.17,928,15.700000000000001 +2013,6,10,0,30,0,0,0,2.2,20.700000000000003,124.59,928,15.9 +2013,6,10,1,30,0,0,0,2.6,20.200000000000003,123.38000000000001,927,16.3 +2013,6,10,2,30,0,0,0,2.8000000000000003,19.700000000000003,118.74000000000001,927,17 +2013,6,10,3,30,0,0,0,2.7,19.200000000000003,111.38,927,17.7 +2013,6,10,4,30,0,0,0,2.6,18.6,102.07000000000001,927,18.400000000000002 +2013,6,10,5,30,0,0,0,3.1,19.200000000000003,91.44,927,18.8 +2013,6,10,6,30,131,43,502,3.8000000000000003,21.5,79.86,928,19.200000000000003 +2013,6,10,7,30,340,65,728,4.3,24.5,67.82000000000001,928,19.400000000000002 +2013,6,10,8,30,554,78,838,4.5,27.3,55.38,928,18.5 +2013,6,10,9,30,747,87,900,4.5,29.5,42.75,928,17.2 +2013,6,10,10,30,900,92,934,4.4,31.400000000000002,30.14,928,16.1 +2013,6,10,11,30,1003,95,955,4.3,32.9,18.06,928,15.100000000000001 +2013,6,10,12,30,1042,98,957,4.2,33.9,9.540000000000001,927,14.5 +2013,6,10,13,30,1021,98,953,4.1000000000000005,34.5,14.370000000000001,927,14.100000000000001 +2013,6,10,14,30,939,95,938,3.9000000000000004,34.7,25.900000000000002,926,13.8 +2013,6,10,15,30,799,94,900,3.9000000000000004,34.4,38.42,925,13.3 +2013,6,10,16,30,620,86,850,3.9000000000000004,33.6,51.08,925,12.700000000000001 +2013,6,10,17,30,411,73,762,3.9000000000000004,33.1,63.6,925,12.200000000000001 +2013,6,10,18,30,199,53,596,2.7,29.1,75.79,926,13.100000000000001 +2013,6,10,19,30,26,17,184,2.7,26.400000000000002,87.35000000000001,926,13.600000000000001 +2013,6,10,20,30,0,0,0,3.4000000000000004,25.200000000000003,98.53,927,12.4 +2013,6,10,21,30,0,0,0,3.8000000000000003,24.3,108.34,927,12 +2013,6,10,22,30,0,0,0,3.8000000000000003,23.200000000000003,116.44,927,12.3 +2013,6,10,23,30,0,0,0,3.6,22.3,122.09,927,12.9 +2013,6,11,0,30,0,0,0,3.5,21.6,124.52,927,13.700000000000001 +2013,6,11,1,30,0,0,0,3.3000000000000003,21,123.32000000000001,927,14.3 +2013,6,11,2,30,0,0,0,3.1,20.6,118.7,928,14.8 +2013,6,11,3,30,0,0,0,2.8000000000000003,20.1,111.35000000000001,928,15.200000000000001 +2013,6,11,4,30,0,0,0,2.4000000000000004,19.6,102.05,928,15.600000000000001 +2013,6,11,5,30,0,0,0,2.8000000000000003,20.1,91.44,928,16.2 +2013,6,11,6,30,126,49,438,3.8000000000000003,22.3,79.86,929,17 +2013,6,11,7,30,331,77,673,4.4,25.3,67.83,929,18.3 +2013,6,11,8,30,544,95,791,4.5,28,55.4,929,18.7 +2013,6,11,9,30,735,107,854,4.4,30,42.77,929,18 +2013,6,11,10,30,886,116,891,4.4,31.6,30.150000000000002,929,17.2 +2013,6,11,11,30,987,121,910,4.5,32.9,18.06,928,16.7 +2013,6,11,12,30,1026,118,921,4.5,33.9,9.48,928,16.6 +2013,6,11,13,30,1005,117,916,4.6000000000000005,34.6,14.290000000000001,927,16.5 +2013,6,11,14,30,921,113,897,4.6000000000000005,34.800000000000004,25.830000000000002,926,16.6 +2013,6,11,15,30,784,104,868,4.5,34.6,38.35,926,16.6 +2013,6,11,16,30,606,92,817,4.5,34,51.01,925,16.5 +2013,6,11,17,30,402,77,727,4.5,33.5,63.53,925,16.400000000000002 +2013,6,11,18,30,193,56,555,3.3000000000000003,30.700000000000003,75.72,925,16.5 +2013,6,11,19,30,25,18,144,3.1,28.6,87.28,926,17 +2013,6,11,20,30,0,0,0,3.9000000000000004,27.3,98.45,926,16.7 +2013,6,11,21,30,0,0,0,4.6000000000000005,26.200000000000003,108.26,927,16.900000000000002 +2013,6,11,22,30,0,0,0,4.9,25,116.36,927,17.6 +2013,6,11,23,30,0,0,0,4.9,24,122.01,928,18.6 +2013,6,12,0,30,0,0,0,4.6000000000000005,23.1,124.45,928,19.400000000000002 +2013,6,12,1,30,0,0,0,4.4,22.400000000000002,123.27,928,20 +2013,6,12,2,30,0,0,0,4.2,21.8,118.66,928,20.200000000000003 +2013,6,12,3,30,0,0,0,3.9000000000000004,21.200000000000003,111.33,928,20.3 +2013,6,12,4,30,0,0,0,3.6,20.700000000000003,102.04,928,20.200000000000003 +2013,6,12,5,30,0,0,0,3.8000000000000003,20.900000000000002,91.44,929,20.1 +2013,6,12,6,30,124,47,437,4.7,22.5,79.87,929,19.900000000000002 +2013,6,12,7,30,325,72,673,5.2,24.8,67.84,930,19.3 +2013,6,12,8,30,534,86,790,5.1000000000000005,27.1,55.42,930,18.8 +2013,6,12,9,30,723,95,855,5,29.200000000000003,42.79,930,18.2 +2013,6,12,10,30,875,101,895,5,31,30.17,929,17.8 +2013,6,12,11,30,976,105,916,5.1000000000000005,32.300000000000004,18.06,929,17.6 +2013,6,12,12,30,1019,104,927,5.4,33.1,9.44,928,17.400000000000002 +2013,6,12,13,30,998,106,920,5.6000000000000005,33.4,14.21,927,17.3 +2013,6,12,14,30,917,107,900,5.800000000000001,33.2,25.76,927,17.1 +2013,6,12,15,30,604,357,315,5.800000000000001,32.7,38.29,927,16.900000000000002 +2013,6,12,16,30,602,105,788,5.6000000000000005,31.8,50.94,926,16.6 +2013,6,12,17,30,395,91,681,5.4,31.3,63.46,926,16.5 +2013,6,12,18,30,187,67,485,3.8000000000000003,29,75.65,927,16.6 +2013,6,12,19,30,23,18,100,2.6,27.1,87.21000000000001,927,17.2 +2013,6,12,20,30,0,0,0,2.4000000000000004,25.900000000000002,98.38,928,17.7 +2013,6,12,21,30,0,0,0,2.7,25.200000000000003,108.19,928,18 +2013,6,12,22,30,0,0,0,3,24.6,116.29,929,18.5 +2013,6,12,23,30,0,0,0,3,23.900000000000002,121.94,929,19 +2013,6,13,0,30,0,0,0,2.9000000000000004,23.200000000000003,124.39,929,19.700000000000003 +2013,6,13,1,30,0,0,0,2.7,22.6,123.22,929,20.200000000000003 +2013,6,13,2,30,0,0,0,2.6,22,118.63,929,20.5 +2013,6,13,3,30,0,0,0,2.5,21.5,111.31,929,20.700000000000003 +2013,6,13,4,30,0,0,0,2.4000000000000004,21.200000000000003,102.04,929,20.8 +2013,6,13,5,30,0,0,0,2.9000000000000004,21.5,91.44,929,20.900000000000002 +2013,6,13,6,30,118,53,374,3.8000000000000003,23.1,79.88,930,20.8 +2013,6,13,7,30,319,82,629,4.1000000000000005,25.6,67.86,930,20.200000000000003 +2013,6,13,8,30,527,98,756,3.7,28,55.44,930,19.6 +2013,6,13,9,30,717,109,829,3.4000000000000004,29.900000000000002,42.81,930,19 +2013,6,13,10,30,866,116,868,3.5,31.3,30.19,930,18.400000000000002 +2013,6,13,11,30,966,120,889,3.8000000000000003,32.4,18.07,929,17.8 +2013,6,13,12,30,1010,115,907,4.1000000000000005,32.9,9.39,929,17.2 +2013,6,13,13,30,990,114,904,4.3,32.9,14.14,928,16.900000000000002 +2013,6,13,14,30,850,340,565,4.5,32.6,25.69,928,16.7 +2013,6,13,15,30,443,370,92,4.7,32,38.22,927,16.5 +2013,6,13,16,30,600,92,805,4.7,31.200000000000003,50.870000000000005,927,16.400000000000002 +2013,6,13,17,30,398,79,712,4.7,30.8,63.39,927,16.2 +2013,6,13,18,30,187,58,517,3.8000000000000003,28.400000000000002,75.58,927,16.400000000000002 +2013,6,13,19,30,16,16,0,3.4000000000000004,26.5,87.14,927,17 +2013,6,13,20,30,0,0,0,3.4000000000000004,25.1,98.31,927,17.3 +2013,6,13,21,30,0,0,0,3.2,24,108.11,928,17.8 +2013,6,13,22,30,0,0,0,2.8000000000000003,23,116.22,928,18.3 +2013,6,13,23,30,0,0,0,2.4000000000000004,22.3,121.88,928,18.8 +2013,6,14,0,30,0,0,0,2.1,21.8,124.34,928,19.200000000000003 +2013,6,14,1,30,0,0,0,1.8,21.3,123.18,928,19.6 +2013,6,14,2,30,0,0,0,1.6,20.900000000000002,118.61,928,19.900000000000002 +2013,6,14,3,30,0,0,0,1.5,20.700000000000003,111.3,928,20.200000000000003 +2013,6,14,4,30,0,0,0,1.6,20.6,102.04,928,20.400000000000002 +2013,6,14,5,30,0,0,0,2.1,20.900000000000002,91.45,928,20.6 +2013,6,14,6,30,29,29,0,3,21.8,79.9,929,20.700000000000003 +2013,6,14,7,30,12,12,0,3.9000000000000004,22.900000000000002,67.88,929,20.200000000000003 +2013,6,14,8,30,88,88,0,4.6000000000000005,23.900000000000002,55.46,929,18.400000000000002 +2013,6,14,9,30,63,63,0,4.9,24.900000000000002,42.84,929,16.400000000000002 +2013,6,14,10,30,287,273,16,5.1000000000000005,25.900000000000002,30.21,929,15.600000000000001 +2013,6,14,11,30,472,427,48,5.300000000000001,26.700000000000003,18.09,928,15.4 +2013,6,14,12,30,301,285,17,5.4,27,9.36,928,15.700000000000001 +2013,6,14,13,30,396,371,26,5.4,26.900000000000002,14.07,927,16.1 +2013,6,14,14,30,245,233,13,5.300000000000001,26.5,25.62,927,16.6 +2013,6,14,15,30,350,321,36,5,25.8,38.160000000000004,927,17.1 +2013,6,14,16,30,214,206,13,4.5,24.8,50.81,927,17.6 +2013,6,14,17,30,28,28,0,4.1000000000000005,24.3,63.32,927,18.1 +2013,6,14,18,30,54,54,0,2.5,22.700000000000003,75.51,927,18.8 +2013,6,14,19,30,14,14,0,1.6,21.8,87.07000000000001,927,19.5 +2013,6,14,20,30,0,0,0,1.4000000000000001,21.200000000000003,98.24000000000001,927,19.8 +2013,6,14,21,30,0,0,0,1.4000000000000001,20.8,108.05,927,19.700000000000003 +2013,6,14,22,30,0,0,0,1.3,20.400000000000002,116.15,927,19.400000000000002 +2013,6,14,23,30,0,0,0,1.1,20.1,121.82000000000001,928,19.3 +2013,6,15,0,30,0,0,0,1,19.900000000000002,124.29,928,19.200000000000003 +2013,6,15,1,30,0,0,0,0.9,20,123.15,928,19.200000000000003 +2013,6,15,2,30,0,0,0,0.7000000000000001,20,118.59,927,19.3 +2013,6,15,3,30,0,0,0,0.7000000000000001,19.900000000000002,111.3,927,19.3 +2013,6,15,4,30,0,0,0,1,19.8,102.05,928,19.400000000000002 +2013,6,15,5,30,0,0,0,1.7000000000000002,20.1,91.47,928,19.400000000000002 +2013,6,15,6,30,116,53,358,2.6,21,79.92,928,19.5 +2013,6,15,7,30,123,122,3,3.4000000000000004,22.5,67.91,929,19.6 +2013,6,15,8,30,180,176,8,4.1000000000000005,24.6,55.49,929,19.1 +2013,6,15,9,30,428,345,113,4.5,26.700000000000003,42.86,929,17.6 +2013,6,15,10,30,329,310,22,4.6000000000000005,28.700000000000003,30.240000000000002,928,16.6 +2013,6,15,11,30,270,256,15,4.6000000000000005,30.200000000000003,18.1,928,16.5 +2013,6,15,12,30,484,440,45,4.7,30.900000000000002,9.33,927,16.7 +2013,6,15,13,30,976,133,869,4.800000000000001,31,14.01,926,17 +2013,6,15,14,30,895,131,847,4.800000000000001,30.900000000000002,25.560000000000002,926,17.3 +2013,6,15,15,30,763,122,815,4.7,30.400000000000002,38.1,925,17.5 +2013,6,15,16,30,589,108,761,4.6000000000000005,29.8,50.75,925,17.7 +2013,6,15,17,30,391,89,670,4.5,29.400000000000002,63.26,925,17.8 +2013,6,15,18,30,189,63,503,3.6,27.400000000000002,75.45,925,18 +2013,6,15,19,30,26,19,141,2.9000000000000004,25.900000000000002,87.02,926,18.3 +2013,6,15,20,30,0,0,0,2.9000000000000004,24.8,98.18,926,18.5 +2013,6,15,21,30,0,0,0,3,24,107.99000000000001,927,18.6 +2013,6,15,22,30,0,0,0,2.8000000000000003,23.3,116.09,927,18.900000000000002 +2013,6,15,23,30,0,0,0,2.7,22.6,121.77,927,19.200000000000003 +2013,6,16,0,30,0,0,0,2.5,21.900000000000002,124.25,927,19.5 +2013,6,16,1,30,0,0,0,2.4000000000000004,21.400000000000002,123.12,927,19.8 +2013,6,16,2,30,0,0,0,2.2,20.900000000000002,118.58,927,20.1 +2013,6,16,3,30,0,0,0,1.9000000000000001,20.5,111.3,927,20.3 +2013,6,16,4,30,0,0,0,1.6,20.1,102.06,928,20.1 +2013,6,16,5,30,0,0,0,2.2,20.700000000000003,91.48,928,20.400000000000002 +2013,6,16,6,30,115,56,333,3.4000000000000004,22.6,79.94,929,20.5 +2013,6,16,7,30,312,91,586,4.1000000000000005,25.200000000000003,67.93,929,20.5 +2013,6,16,8,30,521,106,734,4.2,27.900000000000002,55.52,928,20.5 +2013,6,16,9,30,713,113,818,4,30.1,42.9,928,20.400000000000002 +2013,6,16,10,30,865,120,862,4,31.8,30.27,928,20.200000000000003 +2013,6,16,11,30,965,123,886,4.2,33,18.13,927,20 +2013,6,16,12,30,1011,116,907,4.5,33.800000000000004,9.31,927,19.8 +2013,6,16,13,30,991,114,904,4.6000000000000005,34.300000000000004,13.950000000000001,926,19.6 +2013,6,16,14,30,910,110,886,4.6000000000000005,34.4,25.5,926,19.3 +2013,6,16,15,30,777,103,855,4.5,34.1,38.04,925,19.1 +2013,6,16,16,30,601,93,802,4.4,33.300000000000004,50.69,925,19 +2013,6,16,17,30,400,79,711,4.4,32.9,63.21,925,19 +2013,6,16,18,30,193,58,539,3.7,30.400000000000002,75.4,925,19 +2013,6,16,19,30,21,18,44,3.1,28.5,86.96000000000001,925,19.3 +2013,6,16,20,30,0,0,0,3.1,27.1,98.12,926,19.5 +2013,6,16,21,30,0,0,0,3.3000000000000003,26.200000000000003,107.93,927,19.6 +2013,6,16,22,30,0,0,0,3.4000000000000004,25.400000000000002,116.04,927,19.6 +2013,6,16,23,30,0,0,0,3.5,24.6,121.73,927,19.6 +2013,6,17,0,30,0,0,0,3.5,23.900000000000002,124.22,927,19.6 +2013,6,17,1,30,0,0,0,3.4000000000000004,23.200000000000003,123.10000000000001,927,19.6 +2013,6,17,2,30,0,0,0,3.3000000000000003,22.6,118.57000000000001,926,19.6 +2013,6,17,3,30,0,0,0,3,21.900000000000002,111.3,926,19.700000000000003 +2013,6,17,4,30,0,0,0,2.4000000000000004,21.3,102.07000000000001,927,19.900000000000002 +2013,6,17,5,30,0,0,0,2.6,21.5,91.51,927,20.1 +2013,6,17,6,30,57,57,0,3.5,22.8,79.97,928,20.400000000000002 +2013,6,17,7,30,12,12,0,4,24.900000000000002,67.96000000000001,928,20.700000000000003 +2013,6,17,8,30,250,226,43,3.9000000000000004,26.900000000000002,55.550000000000004,928,20.700000000000003 +2013,6,17,9,30,514,342,234,3.7,28.3,42.93,928,20.700000000000003 +2013,6,17,10,30,697,382,365,3.6,29,30.3,927,20.900000000000002 +2013,6,17,11,30,944,154,831,3.4000000000000004,29.5,18.150000000000002,927,21.3 +2013,6,17,12,30,990,150,851,3,29.700000000000003,9.3,927,21.700000000000003 +2013,6,17,13,30,973,144,854,2.5,29.900000000000002,13.89,926,22 +2013,6,17,14,30,897,134,845,2.1,30.200000000000003,25.45,926,22.1 +2013,6,17,15,30,602,362,304,1.8,30.3,37.980000000000004,925,22.200000000000003 +2013,6,17,16,30,411,289,192,1.6,30.1,50.63,925,22.200000000000003 +2013,6,17,17,30,180,167,29,1.6,29.8,63.15,925,22.400000000000002 +2013,6,17,18,30,161,82,311,1.4000000000000001,27.400000000000002,75.34,925,23.400000000000002 +2013,6,17,19,30,16,16,0,1.4000000000000001,25.3,86.91,925,23.700000000000003 +2013,6,17,20,30,0,0,0,1.1,24.3,98.07000000000001,926,23.1 +2013,6,17,21,30,0,0,0,0.9,23.8,107.88,927,23.1 +2013,6,17,22,30,0,0,0,0.9,23.3,116,928,22.900000000000002 +2013,6,17,23,30,0,0,0,0.9,22.6,121.69,927,22.6 +2013,6,18,0,30,0,0,0,1,22,124.19,927,22 +2013,6,18,1,30,0,0,0,0.9,21.5,123.09,927,21.5 +2013,6,18,2,30,0,0,0,0.8,21.200000000000003,118.57000000000001,927,21.200000000000003 +2013,6,18,3,30,0,0,0,0.8,21,111.32000000000001,928,21 +2013,6,18,4,30,0,0,0,0.8,20.900000000000002,102.09,928,20.900000000000002 +2013,6,18,5,30,0,0,0,1,21,91.53,928,21 +2013,6,18,6,30,63,59,21,1.5,21.6,80,928,21.400000000000002 +2013,6,18,7,30,232,145,232,1.9000000000000001,22.6,68,928,21.3 +2013,6,18,8,30,513,111,711,2.7,24.1,55.59,929,21.1 +2013,6,18,9,30,700,124,788,3.2,25.900000000000002,42.97,929,20.8 +2013,6,18,10,30,854,129,839,3.3000000000000003,27.200000000000003,30.34,929,20.5 +2013,6,18,11,30,958,130,871,3,28.3,18.18,928,20.1 +2013,6,18,12,30,1013,105,920,2.5,29,9.290000000000001,928,19.8 +2013,6,18,13,30,996,101,922,2.1,29.5,13.84,927,19.6 +2013,6,18,14,30,921,96,913,2,29.8,25.39,927,19.400000000000002 +2013,6,18,15,30,788,97,876,2,29.8,37.93,927,18.900000000000002 +2013,6,18,16,30,613,85,832,2.1,29.5,50.58,926,18.400000000000002 +2013,6,18,17,30,410,72,749,2.1,29.200000000000003,63.1,926,18 +2013,6,18,18,30,203,52,593,1.5,26.700000000000003,75.29,926,18.400000000000002 +2013,6,18,19,30,30,18,219,1.3,24.5,86.86,926,19.6 +2013,6,18,20,30,0,0,0,1.5,23.400000000000002,98.02,927,18.5 +2013,6,18,21,30,0,0,0,1.7000000000000002,22.700000000000003,107.83,927,18.1 +2013,6,18,22,30,0,0,0,1.8,22.1,115.96000000000001,927,18 +2013,6,18,23,30,0,0,0,2.1,21.5,121.66,927,17.900000000000002 +2013,6,19,0,30,0,0,0,2.4000000000000004,21,124.18,927,17.900000000000002 +2013,6,19,1,30,0,0,0,2.6,20.6,123.08,927,18.1 +2013,6,19,2,30,0,0,0,2.7,20.200000000000003,118.58,927,18.3 +2013,6,19,3,30,0,0,0,2.4000000000000004,19.900000000000002,111.33,927,18.6 +2013,6,19,4,30,0,0,0,2.2,19.700000000000003,102.12,927,18.8 +2013,6,19,5,30,0,0,0,2.6,20.3,91.56,927,18.900000000000002 +2013,6,19,6,30,117,50,390,3.4000000000000004,22.200000000000003,80.04,928,19.1 +2013,6,19,7,30,315,81,626,4.1000000000000005,24.900000000000002,68.04,928,19.400000000000002 +2013,6,19,8,30,523,99,750,4.5,27.3,55.63,927,19.5 +2013,6,19,9,30,710,111,820,4.5,29.200000000000003,43.01,927,19.5 +2013,6,19,10,30,861,120,859,4.4,30.5,30.38,927,19.6 +2013,6,19,11,30,960,127,878,4.2,31.400000000000002,18.22,927,19.700000000000003 +2013,6,19,12,30,997,144,864,4.2,31.8,9.290000000000001,926,19.8 +2013,6,19,13,30,931,391,557,4.2,32,13.8,926,19.8 +2013,6,19,14,30,374,350,27,4.3,31.900000000000002,25.34,925,19.700000000000003 +2013,6,19,15,30,672,301,470,4.2,31.5,37.88,925,19.5 +2013,6,19,16,30,580,143,688,3.9000000000000004,30.900000000000002,50.53,924,19.400000000000002 +2013,6,19,17,30,382,118,583,3.7,30.6,63.050000000000004,924,19.6 +2013,6,19,18,30,157,86,277,2.5,27.900000000000002,75.24,924,20.3 +2013,6,19,19,30,21,19,38,2.3000000000000003,26,86.81,925,20.400000000000002 +2013,6,19,20,30,0,0,0,2.6,25,97.97,925,19.6 +2013,6,19,21,30,0,0,0,2.9000000000000004,24.3,107.79,926,19 +2013,6,19,22,30,0,0,0,3,23.400000000000002,115.92,926,18.5 +2013,6,19,23,30,0,0,0,2.9000000000000004,22.5,121.63,926,18 +2013,6,20,0,30,0,0,0,2.9000000000000004,21.8,124.16,926,17.5 +2013,6,20,1,30,0,0,0,3.1,21.200000000000003,123.09,926,17 +2013,6,20,2,30,0,0,0,3.4000000000000004,20.8,118.59,926,16.8 +2013,6,20,3,30,0,0,0,3.6,20.400000000000002,111.36,927,17 +2013,6,20,4,30,0,0,0,3.6,20.1,102.15,927,17.6 +2013,6,20,5,30,0,0,0,3.8000000000000003,20.400000000000002,91.60000000000001,927,18.1 +2013,6,20,6,30,88,59,164,4.9,21.900000000000002,80.07000000000001,928,18.7 +2013,6,20,7,30,308,94,573,5.9,24.200000000000003,68.08,928,19.200000000000003 +2013,6,20,8,30,515,118,705,6.2,26.6,55.67,928,19.5 +2013,6,20,9,30,703,134,780,6.300000000000001,28.6,43.050000000000004,928,19.5 +2013,6,20,10,30,854,144,823,6.300000000000001,30.1,30.42,928,19.200000000000003 +2013,6,20,11,30,957,150,849,6.300000000000001,31.3,18.25,928,18.7 +2013,6,20,12,30,996,160,847,6.2,32.300000000000004,9.3,927,18.2 +2013,6,20,13,30,815,437,388,6.1000000000000005,33.1,13.76,927,17.7 +2013,6,20,14,30,805,388,461,6,33.5,25.3,926,17.2 +2013,6,20,15,30,758,210,693,5.9,33.2,37.83,926,16.900000000000002 +2013,6,20,16,30,574,162,646,5.6000000000000005,32.2,50.480000000000004,926,16.7 +2013,6,20,17,30,403,83,705,5.4,31.5,63,926,16.8 +2013,6,20,18,30,158,86,285,4.2,28.700000000000003,75.19,926,17.2 +2013,6,20,19,30,22,19,48,3.8000000000000003,27.1,86.77,927,17.5 +2013,6,20,20,30,0,0,0,3.7,25.900000000000002,97.93,927,17.5 +2013,6,20,21,30,0,0,0,3.5,24.900000000000002,107.76,927,17.5 +2013,6,20,22,30,0,0,0,3.4000000000000004,24.1,115.89,928,17.5 +2013,6,20,23,30,0,0,0,3.4000000000000004,23.400000000000002,121.61,928,17.5 +2013,6,21,0,30,0,0,0,3.5,22.900000000000002,124.16,928,17.6 +2013,6,21,1,30,0,0,0,3.5,22.5,123.09,928,17.8 +2013,6,21,2,30,0,0,0,3.6,22.1,118.61,929,18.1 +2013,6,21,3,30,0,0,0,3.8000000000000003,21.8,111.38,929,18.400000000000002 +2013,6,21,4,30,0,0,0,3.9000000000000004,21.400000000000002,102.18,929,18.6 +2013,6,21,5,30,0,0,0,4.1000000000000005,21.6,91.64,929,18.8 +2013,6,21,6,30,48,48,0,5,22.700000000000003,80.11,929,19 +2013,6,21,7,30,296,95,540,5.7,24.5,68.12,929,19 +2013,6,21,8,30,382,241,250,6,26.400000000000002,55.72,930,18.900000000000002 +2013,6,21,9,30,601,276,445,6.1000000000000005,28.3,43.1,930,18.400000000000002 +2013,6,21,10,30,707,367,395,6,30.1,30.47,929,17.8 +2013,6,21,11,30,852,428,446,6,31.6,18.3,929,17.400000000000002 +2013,6,21,12,30,1010,120,901,5.9,32.6,9.32,928,17 +2013,6,21,13,30,993,120,899,5.9,33.2,13.72,928,16.6 +2013,6,21,14,30,913,118,879,6,33.300000000000004,25.25,927,16.2 +2013,6,21,15,30,781,113,844,6,33,37.78,927,16 +2013,6,21,16,30,604,103,787,6,32.300000000000004,50.44,926,15.8 +2013,6,21,17,30,402,88,692,5.9,31.8,62.96,926,15.8 +2013,6,21,18,30,195,64,511,4.9,29.3,75.15,926,16 +2013,6,21,19,30,29,22,118,4.6000000000000005,27.5,86.73,927,16.3 +2013,6,21,20,30,0,0,0,4.5,26.3,97.9,927,16.3 +2013,6,21,21,30,0,0,0,4.1000000000000005,25.3,107.73,927,16.5 +2013,6,21,22,30,0,0,0,3.7,24.3,115.87,927,16.6 +2013,6,21,23,30,0,0,0,3.5,23.5,121.60000000000001,927,16.7 +2013,6,22,0,30,0,0,0,3.4000000000000004,22.900000000000002,124.16,927,16.7 +2013,6,22,1,30,0,0,0,3.4000000000000004,22.3,123.11,927,16.7 +2013,6,22,2,30,0,0,0,3.4000000000000004,21.6,118.64,927,16.8 +2013,6,22,3,30,0,0,0,3.7,21,111.42,927,17.1 +2013,6,22,4,30,0,0,0,3.9000000000000004,20.5,102.22,928,17.6 +2013,6,22,5,30,0,0,0,4.4,20.6,91.68,928,18.2 +2013,6,22,6,30,105,65,234,5.4,22,80.16,928,18.8 +2013,6,22,7,30,302,104,532,6.300000000000001,24.400000000000002,68.17,928,19.3 +2013,6,22,8,30,515,119,704,6.7,26.8,55.76,928,19 +2013,6,22,9,30,705,127,793,6.800000000000001,28.900000000000002,43.15,928,18.1 +2013,6,22,10,30,861,132,847,6.800000000000001,30.6,30.52,928,17.2 +2013,6,22,11,30,964,134,874,6.7,31.8,18.34,927,16.6 +2013,6,22,12,30,1009,133,888,6.6000000000000005,32.7,9.34,927,16.2 +2013,6,22,13,30,990,135,881,6.4,33.1,13.69,926,15.8 +2013,6,22,14,30,910,134,858,6.2,33.1,25.21,925,15.600000000000001 +2013,6,22,15,30,774,134,810,6,32.800000000000004,37.74,925,15.4 +2013,6,22,16,30,598,122,747,5.800000000000001,32.2,50.4,924,15.200000000000001 +2013,6,22,17,30,349,150,436,5.6000000000000005,31.900000000000002,62.910000000000004,924,15.200000000000001 +2013,6,22,18,30,166,82,328,4.7,29.5,75.11,924,15.4 +2013,6,22,19,30,21,20,29,4.5,27.700000000000003,86.7,924,15.700000000000001 +2013,6,22,20,30,0,0,0,4.6000000000000005,26.5,97.86,925,15.700000000000001 +2013,6,22,21,30,0,0,0,4.4,25.400000000000002,107.7,925,15.9 +2013,6,22,22,30,0,0,0,4.1000000000000005,24.5,115.85000000000001,926,16.1 +2013,6,22,23,30,0,0,0,4.2,23.900000000000002,121.60000000000001,925,16.3 +2013,6,23,0,30,0,0,0,4.5,23.3,124.17,925,16.5 +2013,6,23,1,30,0,0,0,4.7,22.700000000000003,123.13000000000001,925,16.8 +2013,6,23,2,30,0,0,0,4.7,22.1,118.67,925,17.2 +2013,6,23,3,30,0,0,0,4.4,21.6,111.46000000000001,925,17.5 +2013,6,23,4,30,0,0,0,3.9000000000000004,21.1,102.27,925,17.7 +2013,6,23,5,30,0,0,0,3.9000000000000004,21.200000000000003,91.73,926,17.900000000000002 +2013,6,23,6,30,85,59,152,4.800000000000001,22.3,80.21000000000001,926,18.2 +2013,6,23,7,30,234,141,250,5.9,24.200000000000003,68.22,926,18.400000000000002 +2013,6,23,8,30,439,206,414,6.5,26.400000000000002,55.81,926,18.400000000000002 +2013,6,23,9,30,698,141,764,6.800000000000001,28.5,43.2,926,17.900000000000002 +2013,6,23,10,30,850,148,816,6.9,30.6,30.57,926,17.3 +2013,6,23,11,30,826,428,420,6.9,32.300000000000004,18.39,925,16.900000000000002 +2013,6,23,12,30,868,465,408,6.800000000000001,33.6,9.370000000000001,925,16.7 +2013,6,23,13,30,940,376,580,6.7,34.5,13.67,924,16.5 +2013,6,23,14,30,908,135,854,6.7,34.800000000000004,25.17,923,16.3 +2013,6,23,15,30,776,128,818,6.7,34.5,37.7,923,16.1 +2013,6,23,16,30,602,115,762,6.6000000000000005,33.7,50.36,923,15.9 +2013,6,23,17,30,400,95,669,6.5,33.1,62.88,923,15.8 +2013,6,23,18,30,197,67,504,5.4,30.3,75.08,924,15.8 +2013,6,23,19,30,30,21,145,4.800000000000001,28.3,86.67,924,16 +2013,6,23,20,30,0,0,0,4.7,26.900000000000002,97.84,925,16.1 +2013,6,23,21,30,0,0,0,4.5,25.8,107.68,926,16.2 +2013,6,23,22,30,0,0,0,4.1000000000000005,24.700000000000003,115.84,926,16.400000000000002 +2013,6,23,23,30,0,0,0,3.9000000000000004,23.8,121.60000000000001,926,16.5 +2013,6,24,0,30,0,0,0,4.1000000000000005,23.1,124.18,926,16.6 +2013,6,24,1,30,0,0,0,4.3,22.400000000000002,123.16,926,16.7 +2013,6,24,2,30,0,0,0,4.6000000000000005,21.8,118.71000000000001,926,17 +2013,6,24,3,30,0,0,0,4.6000000000000005,21.200000000000003,111.5,927,17.6 +2013,6,24,4,30,0,0,0,4.4,20.900000000000002,102.31,927,18.2 +2013,6,24,5,30,0,0,0,4.6000000000000005,20.900000000000002,91.78,927,18.7 +2013,6,24,6,30,107,63,259,5.5,22,80.26,928,19.200000000000003 +2013,6,24,7,30,300,111,511,6.2,23.8,68.27,928,19.3 +2013,6,24,8,30,425,215,373,6.5,25.8,55.870000000000005,928,19.200000000000003 +2013,6,24,9,30,689,180,699,6.6000000000000005,27.8,43.25,927,19 +2013,6,24,10,30,837,249,683,6.5,29.5,30.62,927,18.6 +2013,6,24,11,30,960,155,849,6.300000000000001,31,18.44,927,18.2 +2013,6,24,12,30,1003,157,858,6.1000000000000005,32.2,9.4,926,17.8 +2013,6,24,13,30,756,483,280,6,32.800000000000004,13.64,925,17.5 +2013,6,24,14,30,791,390,443,5.9,32.9,25.14,925,17.3 +2013,6,24,15,30,781,120,835,5.9,32.7,37.67,924,17.2 +2013,6,24,16,30,607,105,786,5.9,32.4,50.32,924,17.1 +2013,6,24,17,30,406,86,700,5.800000000000001,32.1,62.84,924,16.900000000000002 +2013,6,24,18,30,199,62,534,4.9,30,75.05,924,16.8 +2013,6,24,19,30,31,21,167,4.4,28.200000000000003,86.64,924,16.7 +2013,6,24,20,30,0,0,0,4.3,26.900000000000002,97.82000000000001,925,16.6 +2013,6,24,21,30,0,0,0,3.9000000000000004,25.700000000000003,107.67,925,16.5 +2013,6,24,22,30,0,0,0,3.6,24.700000000000003,115.84,926,16.6 +2013,6,24,23,30,0,0,0,3.7,23.900000000000002,121.60000000000001,926,16.5 +2013,6,25,0,30,0,0,0,3.9000000000000004,23.3,124.2,926,16.6 +2013,6,25,1,30,0,0,0,4.2,22.6,123.19,926,16.8 +2013,6,25,2,30,0,0,0,4.3,21.900000000000002,118.75,926,17.3 +2013,6,25,3,30,0,0,0,4.2,21.3,111.55,926,18 +2013,6,25,4,30,0,0,0,4.2,20.8,102.37,926,18.6 +2013,6,25,5,30,0,0,0,4.6000000000000005,21,91.83,926,19.1 +2013,6,25,6,30,108,59,293,5.800000000000001,22.6,80.31,927,19.6 +2013,6,25,7,30,304,96,562,6.6000000000000005,25,68.32000000000001,927,19.700000000000003 +2013,6,25,8,30,512,116,707,6.6000000000000005,27.700000000000003,55.92,927,19.5 +2013,6,25,9,30,699,129,783,6.2,30.3,43.300000000000004,926,19.200000000000003 +2013,6,25,10,30,849,139,825,5.7,32.5,30.67,926,19 +2013,6,25,11,30,950,146,848,5.2,34.4,18.5,925,19 +2013,6,25,12,30,1000,123,890,4.7,35.800000000000004,9.44,925,19 +2013,6,25,13,30,981,126,880,4.5,36.7,13.63,924,18.900000000000002 +2013,6,25,14,30,903,125,859,4.5,37.2,25.11,923,18.8 +2013,6,25,15,30,772,119,824,4.7,37.1,37.63,923,18.7 +2013,6,25,16,30,599,108,767,4.9,36.6,50.29,922,18.400000000000002 +2013,6,25,17,30,398,92,668,5,36.1,62.81,922,18 +2013,6,25,18,30,181,72,423,4.7,33.300000000000004,75.02,922,17.8 +2013,6,25,19,30,26,20,94,4.4,30.900000000000002,86.62,923,17.5 +2013,6,25,20,30,0,0,0,4.5,29.200000000000003,97.8,923,16.900000000000002 +2013,6,25,21,30,0,0,0,4.6000000000000005,27.900000000000002,107.66,924,16.5 +2013,6,25,22,30,0,0,0,4.6000000000000005,26.900000000000002,115.84,924,16.3 +2013,6,25,23,30,0,0,0,4.6000000000000005,25.900000000000002,121.62,924,16.2 +2013,6,26,0,30,0,0,0,4.5,25.1,124.23,924,16.2 +2013,6,26,1,30,0,0,0,4.4,24.3,123.23,924,16.3 +2013,6,26,2,30,0,0,0,4.3,23.6,118.8,924,16.3 +2013,6,26,3,30,0,0,0,4.2,22.900000000000002,111.61,924,16.6 +2013,6,26,4,30,0,0,0,4.2,22.3,102.42,924,17 +2013,6,26,5,30,0,0,0,4.6000000000000005,22.400000000000002,91.89,925,17.5 +2013,6,26,6,30,78,59,118,5.7,23.8,80.37,925,18 +2013,6,26,7,30,241,135,288,6.300000000000001,26.3,68.38,925,18.7 +2013,6,26,8,30,491,141,626,5.9,29.1,55.980000000000004,925,19.1 +2013,6,26,9,30,677,162,708,5.4,31.6,43.36,925,19.200000000000003 +2013,6,26,10,30,829,179,756,4.9,33.800000000000004,30.73,925,19.200000000000003 +2013,6,26,11,30,931,187,785,4.7,35.6,18.56,925,19.1 +2013,6,26,12,30,976,190,798,4.6000000000000005,36.9,9.49,925,18.900000000000002 +2013,6,26,13,30,959,185,796,4.7,37.800000000000004,13.620000000000001,924,18.6 +2013,6,26,14,30,885,175,783,4.800000000000001,38.300000000000004,25.080000000000002,924,18.2 +2013,6,26,15,30,762,143,782,5,38.2,37.6,923,17.7 +2013,6,26,16,30,593,125,732,5,37.5,50.26,923,17.2 +2013,6,26,17,30,395,103,639,5,37,62.79,923,16.8 +2013,6,26,18,30,192,71,466,3.9000000000000004,33.800000000000004,75,923,16.6 +2013,6,26,19,30,28,21,117,3.6,31.5,86.61,924,16.900000000000002 +2013,6,26,20,30,0,0,0,4,30.1,97.79,925,16.5 +2013,6,26,21,30,0,0,0,4.3,28.900000000000002,107.65,925,16.6 +2013,6,26,22,30,0,0,0,4.1000000000000005,27.8,115.85000000000001,926,16.900000000000002 +2013,6,26,23,30,0,0,0,3.8000000000000003,26.8,121.64,926,17.400000000000002 +2013,6,27,0,30,0,0,0,3.4000000000000004,25.900000000000002,124.27,926,17.8 +2013,6,27,1,30,0,0,0,3.2,25.1,123.28,926,18.1 +2013,6,27,2,30,0,0,0,3.1,24.3,118.85000000000001,926,18.3 +2013,6,27,3,30,0,0,0,2.9000000000000004,23.6,111.67,926,18.400000000000002 +2013,6,27,4,30,0,0,0,2.9000000000000004,22.900000000000002,102.49000000000001,927,18.6 +2013,6,27,5,30,0,0,0,3.4000000000000004,23,91.95,928,18.8 +2013,6,27,6,30,108,53,331,4.5,24.5,80.43,928,19 +2013,6,27,7,30,305,90,585,5.1000000000000005,27,68.44,929,19.1 +2013,6,27,8,30,516,111,725,4.9,29.8,56.04,929,18.8 +2013,6,27,9,30,708,123,805,4.4,32.5,43.42,929,18 +2013,6,27,10,30,863,131,853,4.1000000000000005,34.800000000000004,30.79,928,17 +2013,6,27,11,30,968,135,880,3.8000000000000003,36.6,18.62,928,16 +2013,6,27,12,30,1020,123,909,3.8000000000000003,37.9,9.540000000000001,927,15 +2013,6,27,13,30,1003,121,908,3.7,38.7,13.61,927,14.200000000000001 +2013,6,27,14,30,926,116,894,3.7,39,25.060000000000002,926,13.600000000000001 +2013,6,27,15,30,794,106,869,3.6,38.800000000000004,37.58,926,13.200000000000001 +2013,6,27,16,30,618,95,817,3.4000000000000004,38.1,50.230000000000004,926,13 +2013,6,27,17,30,415,80,732,3.4000000000000004,37.5,62.76,926,12.8 +2013,6,27,18,30,206,58,571,2,33.5,74.98,926,13.8 +2013,6,27,19,30,32,21,193,1.6,30.3,86.59,926,15.600000000000001 +2013,6,27,20,30,0,0,0,1.9000000000000001,28.8,97.78,927,14.700000000000001 +2013,6,27,21,30,0,0,0,2.1,27.900000000000002,107.66,928,13.9 +2013,6,27,22,30,0,0,0,2.4000000000000004,26.900000000000002,115.86,928,13.3 +2013,6,27,23,30,0,0,0,2.6,26,121.67,928,12.9 +2013,6,28,0,30,0,0,0,2.8000000000000003,25,124.31,928,12.600000000000001 +2013,6,28,1,30,0,0,0,2.8000000000000003,24.200000000000003,123.33,928,12.5 +2013,6,28,2,30,0,0,0,2.9000000000000004,23.5,118.92,927,12.5 +2013,6,28,3,30,0,0,0,3,22.900000000000002,111.73,927,12.5 +2013,6,28,4,30,0,0,0,3,22.3,102.55,927,12.600000000000001 +2013,6,28,5,30,0,0,0,3.3000000000000003,22.400000000000002,92.02,928,12.700000000000001 +2013,6,28,6,30,75,58,106,3.5,24.200000000000003,80.5,929,12.9 +2013,6,28,7,30,220,143,210,3.7,27.5,68.51,929,13.4 +2013,6,28,8,30,354,244,196,4,31.3,56.1,929,12.9 +2013,6,28,9,30,536,327,288,3.9000000000000004,34.2,43.480000000000004,929,12.100000000000001 +2013,6,28,10,30,666,403,306,3.6,36.300000000000004,30.85,929,12 +2013,6,28,11,30,815,422,415,3.4000000000000004,37.9,18.68,928,12.600000000000001 +2013,6,28,12,30,861,460,406,3.5,39.1,9.6,927,13.100000000000001 +2013,6,28,13,30,938,377,577,3.6,39.800000000000004,13.61,926,13.600000000000001 +2013,6,28,14,30,786,390,437,3.8000000000000003,40.1,25.04,925,14 +2013,6,28,15,30,766,202,711,3.9000000000000004,39.7,37.550000000000004,925,14.100000000000001 +2013,6,28,16,30,613,99,804,4,38.900000000000006,50.21,924,14 +2013,6,28,17,30,412,80,725,4,38.300000000000004,62.74,924,13.700000000000001 +2013,6,28,18,30,206,57,573,2.8000000000000003,34.5,74.96000000000001,924,13.700000000000001 +2013,6,28,19,30,32,20,208,2.1,31.200000000000003,86.58,925,15.100000000000001 +2013,6,28,20,30,0,0,0,2.4000000000000004,29.5,97.78,926,14.600000000000001 +2013,6,28,21,30,0,0,0,2.8000000000000003,28.5,107.66,926,14.100000000000001 +2013,6,28,22,30,0,0,0,2.9000000000000004,27.5,115.88,926,13.9 +2013,6,28,23,30,0,0,0,2.7,26.5,121.7,926,14.200000000000001 +2013,6,29,0,30,0,0,0,2.3000000000000003,25.5,124.36,926,14.600000000000001 +2013,6,29,1,30,0,0,0,1.8,24.5,123.39,926,15 +2013,6,29,2,30,0,0,0,1.4000000000000001,23.6,118.98,926,15.100000000000001 +2013,6,29,3,30,0,0,0,1.1,22.900000000000002,111.8,926,15.100000000000001 +2013,6,29,4,30,0,0,0,0.9,22.400000000000002,102.62,927,15.200000000000001 +2013,6,29,5,30,0,0,0,0.8,23.3,92.09,927,15.3 +2013,6,29,6,30,77,57,123,0.8,25.400000000000002,80.56,927,15.9 +2013,6,29,7,30,239,134,288,1.1,29.1,68.57000000000001,927,16 +2013,6,29,8,30,522,94,770,1.8,32.9,56.17,927,13.3 +2013,6,29,9,30,711,109,830,2.4000000000000004,34.9,43.550000000000004,927,11.4 +2013,6,29,10,30,755,348,475,2.5,36.2,30.92,927,11.200000000000001 +2013,6,29,11,30,825,425,422,2.6,37,18.75,926,11.200000000000001 +2013,6,29,12,30,869,464,411,2.7,37.5,9.67,926,11.4 +2013,6,29,13,30,871,453,430,2.9000000000000004,37.7,13.620000000000001,925,11.600000000000001 +2013,6,29,14,30,796,391,447,3.1,37.6,25.03,924,11.9 +2013,6,29,15,30,505,386,150,3.1,37.300000000000004,37.53,924,12.100000000000001 +2013,6,29,16,30,593,142,705,3.2,36.7,50.19,923,12.200000000000001 +2013,6,29,17,30,363,141,483,3.2,36.2,62.72,923,12.3 +2013,6,29,18,30,151,92,225,2.3000000000000003,32.7,74.95,923,12.700000000000001 +2013,6,29,19,30,33,20,207,1.7000000000000002,29.700000000000003,86.57000000000001,924,14.8 +2013,6,29,20,30,0,0,0,1.8,28.200000000000003,97.78,924,14.8 +2013,6,29,21,30,0,0,0,2,27.3,107.68,925,14.4 +2013,6,29,22,30,0,0,0,1.9000000000000001,26.400000000000002,115.91,925,14.4 +2013,6,29,23,30,0,0,0,1.7000000000000002,25.6,121.74000000000001,926,14.4 +2013,6,30,0,30,0,0,0,1.4000000000000001,25.1,124.41,926,14.600000000000001 +2013,6,30,1,30,0,0,0,1,24.6,123.46000000000001,926,14.9 +2013,6,30,2,30,0,0,0,0.7000000000000001,24.1,119.06,926,16.2 +2013,6,30,3,30,0,0,0,0.6000000000000001,23.3,111.87,927,18 +2013,6,30,4,30,0,0,0,1,22.3,102.7,927,18.400000000000002 +2013,6,30,5,30,0,0,0,1.6,21.5,92.16,928,18 +2013,6,30,6,30,58,55,19,2,21.700000000000003,80.63,928,17.7 +2013,6,30,7,30,193,146,129,2.3000000000000003,23,68.64,929,17.7 +2013,6,30,8,30,421,212,377,2.5,24.700000000000003,56.230000000000004,929,17.3 +2013,6,30,9,30,525,330,269,2.4000000000000004,26.3,43.61,929,16.900000000000002 +2013,6,30,10,30,733,350,447,2.1,28,30.990000000000002,928,16.400000000000002 +2013,6,30,11,30,788,419,390,1.8,29.700000000000003,18.82,928,16 +2013,6,30,12,30,893,464,434,1.8,31,9.74,927,15.8 +2013,6,30,13,30,989,123,890,1.9000000000000001,31.900000000000002,13.63,927,15.5 +2013,6,30,14,30,691,442,274,2.2,32.300000000000004,25.01,926,15.100000000000001 +2013,6,30,15,30,583,374,263,2.5,32.2,37.52,926,14.700000000000001 +2013,6,30,16,30,469,275,303,2.7,31.8,50.18,925,14.200000000000001 +2013,6,30,17,30,411,83,717,2.7,31.5,62.71,925,13.700000000000001 +2013,6,30,18,30,204,58,562,1.9000000000000001,29,74.94,926,13.700000000000001 +2013,6,30,19,30,33,20,211,1.4000000000000001,26.700000000000003,86.57000000000001,926,15.700000000000001 +2013,6,30,20,30,0,0,0,1.6,25.200000000000003,97.78,927,15 +2013,6,30,21,30,0,0,0,2,24.1,107.69,927,13.9 +2013,6,30,22,30,0,0,0,2.4000000000000004,23.200000000000003,115.94,927,12.9 +2013,6,30,23,30,0,0,0,2.3000000000000003,22.200000000000003,121.79,928,12.100000000000001 +2013,7,1,0,30,0,0,0,2,21.200000000000003,124.47,928,11.700000000000001 +2013,7,1,1,30,0,0,0,1.8,20.5,123.53,928,11.600000000000001 +2013,7,1,2,30,0,0,0,1.8,20.200000000000003,119.14,929,11.600000000000001 +2013,7,1,3,30,0,0,0,1.8,20,111.95,929,11.700000000000001 +2013,7,1,4,30,0,0,0,1.6,19.700000000000003,102.77,930,12 +2013,7,1,5,30,0,0,0,2,19.8,92.24,930,12.3 +2013,7,1,6,30,35,35,0,2.6,20.900000000000002,80.7,931,12.4 +2013,7,1,7,30,90,90,0,3.3000000000000003,22.900000000000002,68.71000000000001,931,11.8 +2013,7,1,8,30,107,107,0,4.2,25.1,56.300000000000004,931,10.8 +2013,7,1,9,30,308,285,33,4.9,26.8,43.68,931,10 +2013,7,1,10,30,661,403,301,5.300000000000001,28.1,31.05,931,9.600000000000001 +2013,7,1,11,30,798,417,403,5.4,29.200000000000003,18.900000000000002,931,9.4 +2013,7,1,12,30,976,336,650,5.4,30,9.82,930,9.1 +2013,7,1,13,30,1008,141,892,5.2,30.400000000000002,13.65,930,8.700000000000001 +2013,7,1,14,30,930,137,875,5.1000000000000005,30.400000000000002,25.01,929,8.200000000000001 +2013,7,1,15,30,424,365,75,4.9,30,37.5,929,7.7 +2013,7,1,16,30,607,138,733,4.7,29.1,50.160000000000004,929,7.1000000000000005 +2013,7,1,17,30,404,112,638,4.5,28.6,62.7,929,6.6000000000000005 +2013,7,1,18,30,196,74,470,2.9000000000000004,25.400000000000002,74.93,930,6.4 +2013,7,1,19,30,29,20,155,1.6,22.700000000000003,86.57000000000001,930,8.3 +2013,7,1,20,30,0,0,0,1.4000000000000001,21.1,97.8,931,9.1 +2013,7,1,21,30,0,0,0,1.3,20.200000000000003,107.72,931,9.3 +2013,7,1,22,30,0,0,0,1.3,19.400000000000002,115.98,931,9.4 +2013,7,1,23,30,0,0,0,1.3,18.7,121.84,931,9.600000000000001 +2013,7,2,0,30,0,0,0,1.2000000000000002,18,124.54,931,9.700000000000001 +2013,7,2,1,30,0,0,0,1.1,17.400000000000002,123.61,931,9.700000000000001 +2013,7,2,2,30,0,0,0,1,16.900000000000002,119.22,931,9.600000000000001 +2013,7,2,3,30,0,0,0,0.9,16.6,112.04,932,9.4 +2013,7,2,4,30,0,0,0,0.9,16.2,102.86,932,9.200000000000001 +2013,7,2,5,30,0,0,0,1.1,16.900000000000002,92.31,932,9.1 +2013,7,2,6,30,98,55,266,1.6,18.900000000000002,80.78,933,9.700000000000001 +2013,7,2,7,30,294,111,505,2.4000000000000004,21.900000000000002,68.78,933,9.3 +2013,7,2,8,30,506,143,655,3.2,24.700000000000003,56.370000000000005,933,7.9 +2013,7,2,9,30,701,163,745,3.7,26.400000000000002,43.75,933,7 +2013,7,2,10,30,861,173,803,3.9000000000000004,27.700000000000003,31.13,933,6.800000000000001 +2013,7,2,11,30,971,176,841,3.9000000000000004,28.8,18.98,932,6.6000000000000005 +2013,7,2,12,30,1034,141,906,3.8000000000000003,29.700000000000003,9.91,932,6.4 +2013,7,2,13,30,1020,137,909,3.7,30.200000000000003,13.67,931,6.2 +2013,7,2,14,30,943,128,899,3.6,30.3,25,930,6.1000000000000005 +2013,7,2,15,30,812,116,877,3.5,30.1,37.5,930,5.9 +2013,7,2,16,30,634,102,832,3.4000000000000004,29.5,50.15,929,5.5 +2013,7,2,17,30,427,83,749,3.3000000000000003,29,62.7,929,5.300000000000001 +2013,7,2,18,30,213,60,589,1.9000000000000001,25.6,74.93,930,5.5 +2013,7,2,19,30,24,20,67,1.1,22.700000000000003,86.58,930,9.3 +2013,7,2,20,30,0,0,0,1.2000000000000002,21.3,97.81,930,9 +2013,7,2,21,30,0,0,0,1.3,20.5,107.75,931,8.4 +2013,7,2,22,30,0,0,0,1.6,19.700000000000003,116.02,931,7.7 +2013,7,2,23,30,0,0,0,1.7000000000000002,18.900000000000002,121.91,931,7.1000000000000005 +2013,7,3,0,30,0,0,0,1.7000000000000002,18.2,124.62,931,6.9 +2013,7,3,1,30,0,0,0,1.7000000000000002,17.7,123.7,931,6.7 +2013,7,3,2,30,0,0,0,1.7000000000000002,17.2,119.31,931,6.6000000000000005 +2013,7,3,3,30,0,0,0,1.7000000000000002,16.7,112.13,930,6.5 +2013,7,3,4,30,0,0,0,1.6,16.2,102.94,930,6.4 +2013,7,3,5,30,0,0,0,2,17.1,92.4,931,6.5 +2013,7,3,6,30,114,41,460,2.7,19.700000000000003,80.86,931,6.5 +2013,7,3,7,30,244,126,329,2.5,23.400000000000002,68.86,931,6.4 +2013,7,3,8,30,532,88,804,1.7000000000000002,26.900000000000002,56.44,931,6 +2013,7,3,9,30,707,134,795,1.5,29,43.82,931,5.7 +2013,7,3,10,30,882,115,897,1.8,30.400000000000002,31.2,930,5.800000000000001 +2013,7,3,11,30,986,124,912,2,31.5,19.06,930,6 +2013,7,3,12,30,977,333,654,2.2,32.2,10,929,6.2 +2013,7,3,13,30,867,451,429,2.2,32.5,13.700000000000001,928,6.300000000000001 +2013,7,3,14,30,749,393,393,2.4000000000000004,32.5,25.01,927,6.4 +2013,7,3,15,30,636,341,372,2.6,32.2,37.49,927,6.300000000000001 +2013,7,3,16,30,550,195,554,2.8000000000000003,31.5,50.15,926,5.9 +2013,7,3,17,30,249,193,123,2.8000000000000003,31.1,62.690000000000005,926,5.6000000000000005 +2013,7,3,18,30,203,67,520,2.1,27.6,74.94,926,5.800000000000001 +2013,7,3,19,30,31,20,179,1.9000000000000001,24.700000000000003,86.59,927,8.5 +2013,7,3,20,30,0,0,0,2.5,23.400000000000002,97.84,927,7.6000000000000005 +2013,7,3,21,30,0,0,0,3,22.700000000000003,107.78,927,7.1000000000000005 +2013,7,3,22,30,0,0,0,3.5,22,116.07000000000001,928,7 +2013,7,3,23,30,0,0,0,3.7,21.200000000000003,121.97,928,7 +2013,7,4,0,30,0,0,0,3.8000000000000003,20.400000000000002,124.7,927,7.1000000000000005 +2013,7,4,1,30,0,0,0,3.6,19.700000000000003,123.79,927,7.2 +2013,7,4,2,30,0,0,0,3.4000000000000004,19.1,119.41,927,7.4 +2013,7,4,3,30,0,0,0,3.2,18.6,112.22,927,7.7 +2013,7,4,4,30,0,0,0,2.8000000000000003,18,103.03,927,8.1 +2013,7,4,5,30,0,0,0,2.9000000000000004,18.2,92.48,927,8.5 +2013,7,4,6,30,79,53,163,3.3000000000000003,19.8,80.94,928,8.700000000000001 +2013,7,4,7,30,204,142,173,3.8000000000000003,23,68.93,928,8.9 +2013,7,4,8,30,412,213,360,4.1000000000000005,26.400000000000002,56.52,928,9.3 +2013,7,4,9,30,689,161,732,3.6,28.5,43.89,928,9.600000000000001 +2013,7,4,10,30,839,180,771,3.1,29,31.27,929,9.600000000000001 +2013,7,4,11,30,944,184,804,2.9000000000000004,28.400000000000002,19.14,929,9.9 +2013,7,4,12,30,952,387,574,2.8000000000000003,28,10.1,929,10.200000000000001 +2013,7,4,13,30,979,170,833,3,28.3,13.74,928,10.600000000000001 +2013,7,4,14,30,905,158,825,3.2,28.8,25.01,927,10.8 +2013,7,4,15,30,784,124,832,3.7,29.400000000000002,37.49,927,10.8 +2013,7,4,16,30,613,106,791,4,29.400000000000002,50.15,926,10.600000000000001 +2013,7,4,17,30,411,86,710,4.1000000000000005,29.3,62.7,926,10.4 +2013,7,4,18,30,204,61,551,3,26.8,74.95,926,10.4 +2013,7,4,19,30,31,20,194,2,24.3,86.61,926,11.3 +2013,7,4,20,30,0,0,0,1.9000000000000001,23.1,97.86,927,11.4 +2013,7,4,21,30,0,0,0,2,22.6,107.82000000000001,927,11.200000000000001 +2013,7,4,22,30,0,0,0,2.3000000000000003,22.3,116.13,927,11 +2013,7,4,23,30,0,0,0,3,22.200000000000003,122.05,927,10.700000000000001 +2013,7,5,0,30,0,0,0,3.5,21.8,124.79,927,10.600000000000001 +2013,7,5,1,30,0,0,0,3.6,21,123.89,927,10.600000000000001 +2013,7,5,2,30,0,0,0,3.4000000000000004,20.1,119.51,927,10.700000000000001 +2013,7,5,3,30,0,0,0,3.2,19.400000000000002,112.32000000000001,927,10.8 +2013,7,5,4,30,0,0,0,3.2,19,103.13,927,11.200000000000001 +2013,7,5,5,30,0,0,0,3.4000000000000004,19.3,92.57000000000001,927,11.700000000000001 +2013,7,5,6,30,104,47,362,4.3,21.200000000000003,81.02,928,12.4 +2013,7,5,7,30,303,83,614,5.2,24.400000000000002,69.01,928,13 +2013,7,5,8,30,514,104,746,5.6000000000000005,27.700000000000003,56.59,928,12.5 +2013,7,5,9,30,708,117,822,5.5,30.400000000000002,43.97,928,11.8 +2013,7,5,10,30,866,125,868,5.300000000000001,32.300000000000004,31.35,927,11.100000000000001 +2013,7,5,11,30,973,129,894,5.300000000000001,33.7,19.23,927,10.5 +2013,7,5,12,30,1023,132,905,5.2,34.7,10.200000000000001,926,9.9 +2013,7,5,13,30,1008,129,905,5.1000000000000005,35.300000000000004,13.780000000000001,925,9.3 +2013,7,5,14,30,931,125,889,5,35.5,25.02,924,8.9 +2013,7,5,15,30,797,121,851,4.9,35.2,37.49,924,8.4 +2013,7,5,16,30,621,111,795,4.800000000000001,34.4,50.15,923,8 +2013,7,5,17,30,415,93,702,4.7,33.800000000000004,62.7,923,7.7 +2013,7,5,18,30,169,82,333,3.5,30.5,74.96000000000001,923,8 +2013,7,5,19,30,31,21,174,3.2,28,86.63,924,9.3 +2013,7,5,20,30,0,0,0,4,27,97.9,924,9.5 +2013,7,5,21,30,0,0,0,4,26.1,107.87,925,9.8 +2013,7,5,22,30,0,0,0,3.6,25.1,116.19,926,10.4 +2013,7,5,23,30,0,0,0,3.4000000000000004,24.3,122.13,926,10.8 +2013,7,6,0,30,0,0,0,3.5,23.6,124.89,926,11.200000000000001 +2013,7,6,1,30,0,0,0,3.4000000000000004,22.900000000000002,123.99000000000001,925,11.4 +2013,7,6,2,30,0,0,0,3.3000000000000003,22.200000000000003,119.61,925,11.700000000000001 +2013,7,6,3,30,0,0,0,3.3000000000000003,21.700000000000003,112.42,926,12.200000000000001 +2013,7,6,4,30,0,0,0,3.4000000000000004,21.3,103.22,926,12.700000000000001 +2013,7,6,5,30,0,0,0,3.6,21.5,92.66,926,13.4 +2013,7,6,6,30,102,48,347,4.4,23,81.11,926,13.9 +2013,7,6,7,30,230,131,279,5.2,25.6,69.09,927,13.9 +2013,7,6,8,30,382,229,279,5.300000000000001,28.400000000000002,56.67,927,13.5 +2013,7,6,9,30,659,205,631,5.1000000000000005,30.700000000000003,44.04,927,13.4 +2013,7,6,10,30,613,418,229,5.1000000000000005,32.5,31.43,927,13.200000000000001 +2013,7,6,11,30,841,425,441,5.2,33.7,19.32,926,13 +2013,7,6,12,30,1003,145,872,5.300000000000001,34.5,10.31,925,12.700000000000001 +2013,7,6,13,30,938,377,577,5.5,34.9,13.83,924,12.5 +2013,7,6,14,30,911,135,856,5.6000000000000005,34.9,25.04,924,12.5 +2013,7,6,15,30,783,120,836,5.7,34.7,37.5,923,12.100000000000001 +2013,7,6,16,30,611,106,789,5.5,34.1,50.160000000000004,923,11.3 +2013,7,6,17,30,410,88,701,5.4,33.6,62.71,923,10.3 +2013,7,6,18,30,202,63,536,4,30.700000000000003,74.98,924,9.5 +2013,7,6,19,30,31,20,181,3.3000000000000003,28.400000000000002,86.65,924,9.700000000000001 +2013,7,6,20,30,0,0,0,3.2,26.900000000000002,97.93,925,9.8 +2013,7,6,21,30,0,0,0,3.1,25.700000000000003,107.92,926,10 +2013,7,6,22,30,0,0,0,3,24.700000000000003,116.26,926,10.4 +2013,7,6,23,30,0,0,0,2.7,23.8,122.21000000000001,926,10.9 +2013,7,7,0,30,0,0,0,2.4000000000000004,22.900000000000002,124.99000000000001,926,11.3 +2013,7,7,1,30,0,0,0,2.2,22.3,124.11,926,11.700000000000001 +2013,7,7,2,30,0,0,0,2.2,22,119.72,926,12 +2013,7,7,3,30,0,0,0,2.3000000000000003,21.900000000000002,112.53,926,12.3 +2013,7,7,4,30,0,0,0,2.4000000000000004,21.6,103.33,927,12.9 +2013,7,7,5,30,0,0,0,2.9000000000000004,22,92.76,927,13.700000000000001 +2013,7,7,6,30,99,47,341,4,23.8,81.19,928,14.9 +2013,7,7,7,30,295,80,605,4.7,26.400000000000002,69.18,928,17 +2013,7,7,8,30,503,98,739,4.7,28.900000000000002,56.75,928,17.6 +2013,7,7,9,30,696,111,815,4.5,31,44.12,928,17.2 +2013,7,7,10,30,852,122,856,4.4,32.6,31.51,928,16.6 +2013,7,7,11,30,957,126,882,4.3,33.9,19.41,928,15.9 +2013,7,7,12,30,1004,133,885,4.2,34.9,10.42,927,15.200000000000001 +2013,7,7,13,30,991,128,889,4.1000000000000005,35.5,13.88,926,14.600000000000001 +2013,7,7,14,30,918,120,880,4,35.7,25.060000000000002,926,14 +2013,7,7,15,30,780,132,816,4.1000000000000005,35.4,37.51,925,13.700000000000001 +2013,7,7,16,30,591,146,695,4.1000000000000005,34.7,50.17,925,13.4 +2013,7,7,17,30,289,188,219,4.1000000000000005,34.2,62.730000000000004,925,13.200000000000001 +2013,7,7,18,30,196,69,492,3.2,31.400000000000002,75,926,13.200000000000001 +2013,7,7,19,30,29,21,142,2.3000000000000003,29,86.68,927,13.9 +2013,7,7,20,30,0,0,0,2.3000000000000003,27.6,97.98,927,14.3 +2013,7,7,21,30,0,0,0,2.4000000000000004,26.900000000000002,107.98,928,14.4 +2013,7,7,22,30,0,0,0,2.8000000000000003,26.400000000000002,116.34,928,14.5 +2013,7,7,23,30,0,0,0,3.3000000000000003,26,122.31,928,14.700000000000001 +2013,7,8,0,30,0,0,0,3.6,25.6,125.10000000000001,928,15.4 +2013,7,8,1,30,0,0,0,3.7,25.200000000000003,124.22,928,16.5 +2013,7,8,2,30,0,0,0,3.5,24.8,119.84,929,17.5 +2013,7,8,3,30,0,0,0,3.1,24.200000000000003,112.64,929,18.3 +2013,7,8,4,30,0,0,0,2.7,23.5,103.43,929,18.8 +2013,7,8,5,30,0,0,0,3,23.6,92.85000000000001,930,19.200000000000003 +2013,7,8,6,30,97,46,338,3.6,25.1,81.28,931,19.6 +2013,7,8,7,30,291,81,591,3.6,27.3,69.26,931,19.6 +2013,7,8,8,30,499,104,722,3.3000000000000003,29.5,56.83,931,19.3 +2013,7,8,9,30,688,119,794,3.1,31.400000000000002,44.2,931,18.8 +2013,7,8,10,30,841,130,834,3.2,32.9,31.59,931,18.3 +2013,7,8,11,30,944,137,856,3.3000000000000003,34,19.5,930,17.8 +2013,7,8,12,30,992,137,869,3.5,34.800000000000004,10.540000000000001,929,17.400000000000002 +2013,7,8,13,30,907,425,496,3.7,35.2,13.94,928,17.2 +2013,7,8,14,30,900,133,847,3.9000000000000004,35.2,25.080000000000002,928,17 +2013,7,8,15,30,749,231,654,4,34.800000000000004,37.52,928,16.8 +2013,7,8,16,30,600,108,769,4.1000000000000005,34.1,50.18,927,16.6 +2013,7,8,17,30,401,89,681,4.2,33.6,62.75,927,16.400000000000002 +2013,7,8,18,30,196,63,516,3.9000000000000004,31.400000000000002,75.02,928,16.3 +2013,7,8,19,30,30,20,163,3.7,29.700000000000003,86.72,929,16.400000000000002 +2013,7,8,20,30,0,0,0,3.9000000000000004,28.400000000000002,98.02,930,16.5 +2013,7,8,21,30,0,0,0,4.2,27.3,108.04,931,16.5 +2013,7,8,22,30,0,0,0,4.4,26.200000000000003,116.42,931,16.400000000000002 +2013,7,8,23,30,0,0,0,4.4,25.3,122.41,931,16.3 +2013,7,9,0,30,0,0,0,4.3,24.5,125.21000000000001,931,16.1 +2013,7,9,1,30,0,0,0,4,23.8,124.35000000000001,931,16 +2013,7,9,2,30,0,0,0,3.6,23.3,119.96000000000001,931,16.1 +2013,7,9,3,30,0,0,0,3.2,22.8,112.76,931,16.2 +2013,7,9,4,30,0,0,0,2.9000000000000004,22.3,103.54,931,16.5 +2013,7,9,5,30,0,0,0,3.4000000000000004,22.6,92.95,932,17 +2013,7,9,6,30,98,42,374,4.6000000000000005,24.1,81.37,932,18 +2013,7,9,7,30,294,69,638,5.2,26.3,69.35000000000001,932,18.8 +2013,7,9,8,30,504,82,773,5,28.700000000000003,56.910000000000004,932,18.2 +2013,7,9,9,30,696,90,847,4.800000000000001,30.900000000000002,44.28,932,17.2 +2013,7,9,10,30,852,95,890,4.6000000000000005,32.7,31.67,932,16.2 +2013,7,9,11,30,960,97,915,4.6000000000000005,34.2,19.6,931,15.4 +2013,7,9,12,30,1009,98,928,4.7,35.300000000000004,10.67,930,14.700000000000001 +2013,7,9,13,30,994,96,925,4.800000000000001,36,14.01,929,14.3 +2013,7,9,14,30,920,94,912,4.800000000000001,36.300000000000004,25.11,929,14 +2013,7,9,15,30,790,89,884,4.800000000000001,36.1,37.54,928,13.8 +2013,7,9,16,30,617,81,837,4.800000000000001,35.5,50.2,928,13.700000000000001 +2013,7,9,17,30,414,69,754,4.7,35.1,62.77,928,13.600000000000001 +2013,7,9,18,30,205,51,597,3.6,32.4,75.05,928,13.700000000000001 +2013,7,9,19,30,31,19,221,2.7,30.1,86.76,929,14.3 +2013,7,9,20,30,0,0,0,2.9000000000000004,28.8,98.08,929,14.700000000000001 +2013,7,9,21,30,0,0,0,3.2,28,108.11,930,15 +2013,7,9,22,30,0,0,0,3.2,27.1,116.5,930,15.3 +2013,7,9,23,30,0,0,0,3,26.3,122.51,930,15.600000000000001 +2013,7,10,0,30,0,0,0,2.9000000000000004,25.6,125.34,930,15.8 +2013,7,10,1,30,0,0,0,2.9000000000000004,25,124.47,930,16 +2013,7,10,2,30,0,0,0,3,24.5,120.09,930,16.3 +2013,7,10,3,30,0,0,0,3.2,23.900000000000002,112.88,930,16.900000000000002 +2013,7,10,4,30,0,0,0,3.2,23.3,103.65,930,17.6 +2013,7,10,5,30,0,0,0,3.6,23.3,93.05,931,18.5 +2013,7,10,6,30,67,51,108,4.6000000000000005,24.8,81.47,931,19.200000000000003 +2013,7,10,7,30,209,135,211,4.800000000000001,27.3,69.43,932,19.3 +2013,7,10,8,30,380,225,285,4.3,30,57,932,18.8 +2013,7,10,9,30,604,250,494,3.6,32.300000000000004,44.36,931,18.2 +2013,7,10,10,30,682,378,357,3.1,34,31.76,931,17.7 +2013,7,10,11,30,904,350,588,3,35.300000000000004,19.7,930,17.2 +2013,7,10,12,30,839,448,398,3.1,36.300000000000004,10.8,929,16.8 +2013,7,10,13,30,985,117,895,3.1,37,14.09,928,16.5 +2013,7,10,14,30,910,113,880,3.1,37.2,25.14,927,16.2 +2013,7,10,15,30,645,326,403,3.1,37,37.57,927,16 +2013,7,10,16,30,607,94,802,3,36.300000000000004,50.230000000000004,926,15.600000000000001 +2013,7,10,17,30,406,79,715,3,35.9,62.800000000000004,926,15.4 +2013,7,10,18,30,199,57,552,2.2,33.300000000000004,75.09,927,15.3 +2013,7,10,19,30,20,19,14,1.6,31.1,86.8,927,16.2 +2013,7,10,20,30,0,0,0,1.8,29.900000000000002,98.14,927,16.2 +2013,7,10,21,30,0,0,0,2.2,29.400000000000002,108.19,928,15.9 +2013,7,10,22,30,0,0,0,2.7,28.8,116.60000000000001,928,15.600000000000001 +2013,7,10,23,30,0,0,0,3.1,28.1,122.63,928,15.4 +2013,7,11,0,30,0,0,0,3.3000000000000003,27.3,125.46000000000001,928,15.3 +2013,7,11,1,30,0,0,0,3.3000000000000003,26.6,124.61,928,15.200000000000001 +2013,7,11,2,30,0,0,0,3.2,25.900000000000002,120.22,928,15.3 +2013,7,11,3,30,0,0,0,3,25.200000000000003,113,928,15.5 +2013,7,11,4,30,0,0,0,2.9000000000000004,24.6,103.76,928,15.9 +2013,7,11,5,30,0,0,0,3.3000000000000003,24.6,93.16,928,16.3 +2013,7,11,6,30,67,51,109,4.2,26.200000000000003,81.56,929,16.900000000000002 +2013,7,11,7,30,216,132,240,4.4,28.8,69.52,929,17.2 +2013,7,11,8,30,399,213,341,3.4000000000000004,31.8,57.08,929,16.6 +2013,7,11,9,30,554,305,348,2.3000000000000003,34.300000000000004,44.45,928,15.3 +2013,7,11,10,30,699,355,405,1.7000000000000002,35.9,31.85,928,14.700000000000001 +2013,7,11,11,30,760,435,346,1.7000000000000002,37,19.8,928,14.700000000000001 +2013,7,11,12,30,781,483,304,2.1,37.5,10.94,927,14.8 +2013,7,11,13,30,698,497,208,2.6,37.5,14.17,926,14.700000000000001 +2013,7,11,14,30,801,389,455,3,37,25.18,926,14.8 +2013,7,11,15,30,502,385,148,3.4000000000000004,36.7,37.6,925,14.700000000000001 +2013,7,11,16,30,511,243,419,3.6,36.300000000000004,50.25,925,14.600000000000001 +2013,7,11,17,30,313,177,298,3.7,36,62.83,925,14.3 +2013,7,11,18,30,190,63,495,3.1,33.5,75.13,925,14.100000000000001 +2013,7,11,19,30,23,19,74,2.4000000000000004,31.200000000000003,86.85000000000001,925,14.600000000000001 +2013,7,11,20,30,0,0,0,2.5,29.8,98.2,926,14.9 +2013,7,11,21,30,0,0,0,2.9000000000000004,28.900000000000002,108.27,926,15 +2013,7,11,22,30,0,0,0,3,28,116.7,927,15.200000000000001 +2013,7,11,23,30,0,0,0,3,27.200000000000003,122.75,927,15.4 +2013,7,12,0,30,0,0,0,3,26.5,125.60000000000001,927,15.4 +2013,7,12,1,30,0,0,0,3.1,25.900000000000002,124.75,927,15.5 +2013,7,12,2,30,0,0,0,3,25.5,120.36,927,15.5 +2013,7,12,3,30,0,0,0,2.9000000000000004,25.1,113.13,927,15.600000000000001 +2013,7,12,4,30,0,0,0,2.9000000000000004,24.700000000000003,103.88,927,15.700000000000001 +2013,7,12,5,30,0,0,0,3.3000000000000003,24.8,93.27,927,15.8 +2013,7,12,6,30,68,50,130,4.1000000000000005,26.1,81.66,928,16.3 +2013,7,12,7,30,289,72,623,4.2,28.6,69.62,928,16.900000000000002 +2013,7,12,8,30,497,90,751,3.2,31.400000000000002,57.17,928,16.3 +2013,7,12,9,30,689,103,823,2.7,33.800000000000004,44.53,928,15.3 +2013,7,12,10,30,846,110,867,3.2,35.5,31.94,928,14.600000000000001 +2013,7,12,11,30,953,114,892,3.7,36.800000000000004,19.91,927,14.200000000000001 +2013,7,12,12,30,1000,120,897,4.1000000000000005,37.5,11.08,926,14 +2013,7,12,13,30,986,119,894,4.3,37.9,14.25,926,13.8 +2013,7,12,14,30,912,117,878,4.3,37.9,25.23,925,13.600000000000001 +2013,7,12,15,30,776,123,824,4.3,37.4,37.63,925,13.3 +2013,7,12,16,30,427,289,216,4.3,36.6,50.29,925,13.200000000000001 +2013,7,12,17,30,402,92,679,4.2,36.1,62.870000000000005,925,13.100000000000001 +2013,7,12,18,30,195,65,507,3.3000000000000003,33.6,75.17,925,13.100000000000001 +2013,7,12,19,30,28,20,139,2.4000000000000004,31.400000000000002,86.9,925,13.600000000000001 +2013,7,12,20,30,0,0,0,2.4000000000000004,30.1,98.27,926,13.9 +2013,7,12,21,30,0,0,0,2.8000000000000003,29.3,108.35000000000001,927,14 +2013,7,12,22,30,0,0,0,3.1,28.5,116.8,927,14 +2013,7,12,23,30,0,0,0,3.3000000000000003,27.700000000000003,122.87,927,14 +2013,7,13,0,30,0,0,0,3.2,26.8,125.74000000000001,927,13.700000000000001 +2013,7,13,1,30,0,0,0,3,25.900000000000002,124.9,927,13.200000000000001 +2013,7,13,2,30,0,0,0,2.7,25.1,120.5,927,12.700000000000001 +2013,7,13,3,30,0,0,0,2.3000000000000003,24.3,113.26,927,12.200000000000001 +2013,7,13,4,30,0,0,0,2.2,23.700000000000003,104,928,12 +2013,7,13,5,30,0,0,0,2.7,24.1,93.38,928,11.9 +2013,7,13,6,30,97,40,395,3.4000000000000004,26.200000000000003,81.76,929,12.200000000000001 +2013,7,13,7,30,297,69,659,3.5,29.200000000000003,69.71000000000001,929,13.200000000000001 +2013,7,13,8,30,511,85,789,2.9000000000000004,32.1,57.26,929,13.4 +2013,7,13,9,30,707,95,860,2.4000000000000004,34.300000000000004,44.62,929,13.100000000000001 +2013,7,13,10,30,866,102,901,2.3000000000000003,36,32.03,928,12.9 +2013,7,13,11,30,974,107,923,2.4000000000000004,37.2,20.02,928,12.600000000000001 +2013,7,13,12,30,1023,109,933,2.6,38.1,11.23,927,12.100000000000001 +2013,7,13,13,30,958,326,652,2.7,38.6,14.35,926,11.600000000000001 +2013,7,13,14,30,564,452,124,2.8000000000000003,38.7,25.28,926,11.200000000000001 +2013,7,13,15,30,755,218,678,2.8000000000000003,38.300000000000004,37.67,925,10.700000000000001 +2013,7,13,16,30,265,246,31,2.7,37.6,50.32,925,10.200000000000001 +2013,7,13,17,30,339,158,396,2.7,37.1,62.910000000000004,924,9.8 +2013,7,13,18,30,203,57,575,1.8,34,75.22,925,9.700000000000001 +2013,7,13,19,30,29,19,182,1.2000000000000002,31.5,86.96000000000001,925,12.100000000000001 +2013,7,13,20,30,0,0,0,1.4000000000000001,30.200000000000003,98.34,926,12.200000000000001 +2013,7,13,21,30,0,0,0,1.7000000000000002,29.6,108.45,926,12 +2013,7,13,22,30,0,0,0,2,29,116.92,926,12.100000000000001 +2013,7,13,23,30,0,0,0,2.2,28.400000000000002,123.01,926,12.3 +2013,7,14,0,30,0,0,0,2.4000000000000004,27.700000000000003,125.89,926,12.5 +2013,7,14,1,30,0,0,0,2.4000000000000004,26.900000000000002,125.05,926,12.600000000000001 +2013,7,14,2,30,0,0,0,2.3000000000000003,25.900000000000002,120.65,926,12.600000000000001 +2013,7,14,3,30,0,0,0,2.3000000000000003,25,113.4,925,12.4 +2013,7,14,4,30,0,0,0,2.6,24.400000000000002,104.12,925,12.100000000000001 +2013,7,14,5,30,0,0,0,3.2,24.5,93.49,926,11.9 +2013,7,14,6,30,94,41,378,3.6,26.1,81.86,926,11.9 +2013,7,14,7,30,292,71,641,3.9000000000000004,29.1,69.8,926,12 +2013,7,14,8,30,504,89,769,3.9000000000000004,32.4,57.34,925,11.9 +2013,7,14,9,30,452,336,163,3.3000000000000003,34.800000000000004,44.7,925,11.200000000000001 +2013,7,14,10,30,856,110,881,2.4000000000000004,36.4,32.12,925,10.600000000000001 +2013,7,14,11,30,962,117,900,1.6,37.300000000000004,20.13,924,10.4 +2013,7,14,12,30,954,373,593,1.1,37.4,11.38,924,10.4 +2013,7,14,13,30,985,136,877,1.5,37,14.450000000000001,923,10.700000000000001 +2013,7,14,14,30,795,390,448,2.5,36.1,25.34,923,11.3 +2013,7,14,15,30,686,298,491,3.8000000000000003,34.7,37.71,922,12 +2013,7,14,16,30,307,270,57,5.1000000000000005,33,50.36,922,13.100000000000001 +2013,7,14,17,30,253,192,135,5.800000000000001,31.900000000000002,62.95,923,14.4 +2013,7,14,18,30,90,87,13,6.5,27.3,75.28,924,16 +2013,7,14,19,30,9,9,0,6.300000000000001,24.400000000000002,87.02,925,17.5 +2013,7,14,20,30,0,0,0,5.7,22.3,98.42,926,18.5 +2013,7,14,21,30,0,0,0,5,21.1,108.54,926,18.900000000000002 +2013,7,14,22,30,0,0,0,4.6000000000000005,20.3,117.04,927,18.7 +2013,7,14,23,30,0,0,0,4.2,19.6,123.14,927,18.400000000000002 +2013,7,15,0,30,0,0,0,3.8000000000000003,19,126.04,928,18.3 +2013,7,15,1,30,0,0,0,3.6,18.6,125.21000000000001,927,18.1 +2013,7,15,2,30,0,0,0,3.4000000000000004,18.3,120.8,927,18 +2013,7,15,3,30,0,0,0,3.3000000000000003,18.1,113.54,927,17.900000000000002 +2013,7,15,4,30,0,0,0,3.3000000000000003,17.900000000000002,104.25,927,17.8 +2013,7,15,5,30,0,0,0,3.4000000000000004,17.8,93.60000000000001,927,17.7 +2013,7,15,6,30,16,16,0,3.6,17.900000000000002,81.96000000000001,928,17.5 +2013,7,15,7,30,5,5,0,3.7,18.3,69.89,928,17.3 +2013,7,15,8,30,71,71,0,3.8000000000000003,19.200000000000003,57.43,928,17.3 +2013,7,15,9,30,118,118,0,3.9000000000000004,20.200000000000003,44.79,929,17.2 +2013,7,15,10,30,91,91,0,3.8000000000000003,21.400000000000002,32.21,928,17.2 +2013,7,15,11,30,173,165,8,3.7,22.700000000000003,20.240000000000002,928,17.3 +2013,7,15,12,30,245,231,14,3.6,23.900000000000002,11.540000000000001,928,17.400000000000002 +2013,7,15,13,30,202,191,11,3.6,24.5,14.56,927,17.5 +2013,7,15,14,30,260,247,14,3.5,24.5,25.400000000000002,927,17.7 +2013,7,15,15,30,209,201,10,3.3000000000000003,24,37.76,927,17.900000000000002 +2013,7,15,16,30,264,245,31,3.1,23.1,50.410000000000004,927,18.3 +2013,7,15,17,30,61,61,0,3,22.6,63,927,18.7 +2013,7,15,18,30,72,72,0,2.3000000000000003,21.1,75.33,928,19.1 +2013,7,15,19,30,16,16,0,1.8,20.3,87.08,928,19.5 +2013,7,15,20,30,0,0,0,1.5,19.900000000000002,98.51,929,19.700000000000003 +2013,7,15,21,30,0,0,0,1.6,19.8,108.65,929,19.8 +2013,7,15,22,30,0,0,0,2.2,19.700000000000003,117.16,930,19.700000000000003 +2013,7,15,23,30,0,0,0,2.8000000000000003,19.6,123.29,929,19.6 +2013,7,16,0,30,0,0,0,3.3000000000000003,19.5,126.2,929,19.5 +2013,7,16,1,30,0,0,0,3.5,19.5,125.37,929,19.5 +2013,7,16,2,30,0,0,0,3.6,19.5,120.96000000000001,929,19.5 +2013,7,16,3,30,0,0,0,3.7,19.6,113.68,929,19.6 +2013,7,16,4,30,0,0,0,4,19.700000000000003,104.38,929,19.700000000000003 +2013,7,16,5,30,0,0,0,4.3,20,93.72,930,20 +2013,7,16,6,30,10,10,0,4.5,20.700000000000003,82.06,930,20.400000000000002 +2013,7,16,7,30,6,6,0,5,21.700000000000003,69.99,931,20.700000000000003 +2013,7,16,8,30,171,167,7,5.300000000000001,22.700000000000003,57.52,931,20.200000000000003 +2013,7,16,9,30,50,50,0,5.1000000000000005,23.5,44.88,932,19.5 +2013,7,16,10,30,370,342,33,4.800000000000001,24.400000000000002,32.3,932,19.200000000000003 +2013,7,16,11,30,441,404,40,4.5,24.900000000000002,20.36,932,19.200000000000003 +2013,7,16,12,30,332,314,18,4.1000000000000005,24.900000000000002,11.700000000000001,932,19 +2013,7,16,13,30,298,282,16,3.7,24.5,14.67,932,19.200000000000003 +2013,7,16,14,30,147,143,4,3.5,24,25.46,932,19.6 +2013,7,16,15,30,200,193,9,3.3000000000000003,23.400000000000002,37.81,932,20 +2013,7,16,16,30,301,267,53,3,22.8,50.46,932,20.400000000000002 +2013,7,16,17,30,41,41,0,2.8000000000000003,22.6,63.06,932,20.8 +2013,7,16,18,30,138,92,185,2.4000000000000004,21.6,75.4,933,21.1 +2013,7,16,19,30,15,15,0,2.5,21,87.16,933,21 +2013,7,16,20,30,0,0,0,2.7,20.8,98.60000000000001,933,20.8 +2013,7,16,21,30,0,0,0,2.8000000000000003,20.6,108.76,934,20.6 +2013,7,16,22,30,0,0,0,2.7,20.5,117.29,934,20.5 +2013,7,16,23,30,0,0,0,2.5,20.5,123.44,934,20.5 +2013,7,17,0,30,0,0,0,2.5,20.400000000000002,126.37,934,20.400000000000002 +2013,7,17,1,30,0,0,0,2.6,20.400000000000002,125.54,934,20.400000000000002 +2013,7,17,2,30,0,0,0,2.8000000000000003,20.3,121.12,933,20.3 +2013,7,17,3,30,0,0,0,2.9000000000000004,20.200000000000003,113.83,933,20.200000000000003 +2013,7,17,4,30,0,0,0,2.8000000000000003,20.1,104.51,933,20.1 +2013,7,17,5,30,0,0,0,2.8000000000000003,20.1,93.83,934,20.1 +2013,7,17,6,30,13,13,0,3.1,20.3,82.17,934,20.3 +2013,7,17,7,30,15,15,0,3.3000000000000003,20.700000000000003,70.09,935,20.700000000000003 +2013,7,17,8,30,122,122,0,3.4000000000000004,21.400000000000002,57.61,935,20.6 +2013,7,17,9,30,274,258,23,3.3000000000000003,22.3,44.97,935,20.5 +2013,7,17,10,30,544,417,150,3.3000000000000003,23.200000000000003,32.4,935,20.3 +2013,7,17,11,30,296,281,16,3.3000000000000003,23.900000000000002,20.48,935,20.3 +2013,7,17,12,30,642,503,142,3.4000000000000004,24.3,11.870000000000001,935,20.400000000000002 +2013,7,17,13,30,766,478,298,3.5,24.3,14.8,934,20.5 +2013,7,17,14,30,616,454,179,3.6,24.1,25.54,934,20.700000000000003 +2013,7,17,15,30,156,152,4,3.6,23.700000000000003,37.87,934,21 +2013,7,17,16,30,126,126,0,3.4000000000000004,23,50.52,934,21.400000000000002 +2013,7,17,17,30,192,174,41,3.2,22.700000000000003,63.120000000000005,934,21.700000000000003 +2013,7,17,18,30,127,93,135,2.6,21.700000000000003,75.46000000000001,934,21.700000000000003 +2013,7,17,19,30,14,14,0,2.4000000000000004,21.200000000000003,87.23,934,21.200000000000003 +2013,7,17,20,30,0,0,0,2.3000000000000003,20.900000000000002,98.7,934,20.900000000000002 +2013,7,17,21,30,0,0,0,2.3000000000000003,20.700000000000003,108.87,934,20.700000000000003 +2013,7,17,22,30,0,0,0,2.3000000000000003,20.5,117.43,934,20.5 +2013,7,17,23,30,0,0,0,2.3000000000000003,20.3,123.60000000000001,934,20.3 +2013,7,18,0,30,0,0,0,2.1,20.1,126.54,934,20.1 +2013,7,18,1,30,0,0,0,1.9000000000000001,20,125.71000000000001,934,20 +2013,7,18,2,30,0,0,0,1.8,19.8,121.28,934,19.8 +2013,7,18,3,30,0,0,0,1.7000000000000002,19.700000000000003,113.98,934,19.700000000000003 +2013,7,18,4,30,0,0,0,1.7000000000000002,19.6,104.64,934,19.6 +2013,7,18,5,30,0,0,0,2,19.8,93.95,934,19.8 +2013,7,18,6,30,27,27,0,2.7,20.400000000000002,82.27,934,20.400000000000002 +2013,7,18,7,30,74,74,0,3.3000000000000003,21.400000000000002,70.18,935,20.6 +2013,7,18,8,30,325,233,172,3.7,22.6,57.71,935,20.400000000000002 +2013,7,18,9,30,475,330,206,3.9000000000000004,23.900000000000002,45.06,934,20.1 +2013,7,18,10,30,620,407,254,4,25,32.5,934,20 +2013,7,18,11,30,601,474,136,3.9000000000000004,25.900000000000002,20.6,934,19.8 +2013,7,18,12,30,586,490,98,3.8000000000000003,26.5,12.05,933,19.700000000000003 +2013,7,18,13,30,980,101,910,3.6,26.8,14.93,932,19.700000000000003 +2013,7,18,14,30,410,377,37,3.4000000000000004,26.8,25.62,932,19.700000000000003 +2013,7,18,15,30,170,166,6,3.2,26.700000000000003,37.93,931,19.6 +2013,7,18,16,30,605,81,824,2.9000000000000004,26.400000000000002,50.58,931,19.700000000000003 +2013,7,18,17,30,403,69,739,2.8000000000000003,26.200000000000003,63.18,931,19.700000000000003 +2013,7,18,18,30,195,50,577,1.5,24.200000000000003,75.54,931,20.400000000000002 +2013,7,18,19,30,25,16,192,1,22.6,87.32000000000001,931,21.3 +2013,7,18,20,30,0,0,0,1,21.8,98.8,931,20.8 +2013,7,18,21,30,0,0,0,1,21.200000000000003,108.99000000000001,931,20.5 +2013,7,18,22,30,0,0,0,1,20.700000000000003,117.57000000000001,931,20.200000000000003 +2013,7,18,23,30,0,0,0,1.1,20.200000000000003,123.76,931,19.900000000000002 +2013,7,19,0,30,0,0,0,1.1,19.8,126.72,931,19.700000000000003 +2013,7,19,1,30,0,0,0,1.1,19.400000000000002,125.89,931,19.400000000000002 +2013,7,19,2,30,0,0,0,1.1,19,121.45,930,19 +2013,7,19,3,30,0,0,0,1.1,18.7,114.13,930,18.7 +2013,7,19,4,30,0,0,0,1.1,18.400000000000002,104.78,930,18.400000000000002 +2013,7,19,5,30,0,0,0,1.5,19.1,94.07000000000001,931,19.1 +2013,7,19,6,30,86,38,362,2.1,20.900000000000002,82.38,931,19.5 +2013,7,19,7,30,281,69,630,2.7,23.5,70.28,931,20 +2013,7,19,8,30,491,87,757,3,25.8,57.800000000000004,931,19.6 +2013,7,19,9,30,685,101,828,3.1,27.200000000000003,45.15,931,19.6 +2013,7,19,10,30,842,111,868,3.1,28.1,32.59,931,19.5 +2013,7,19,11,30,950,117,890,3.1,28.8,20.72,930,19.6 +2013,7,19,12,30,1000,116,905,3,29.3,12.22,929,19.6 +2013,7,19,13,30,987,113,905,2.9000000000000004,29.5,15.06,929,19.6 +2013,7,19,14,30,912,108,892,2.8000000000000003,29.5,25.7,928,19.5 +2013,7,19,15,30,783,101,864,2.7,29.200000000000003,38,927,19.400000000000002 +2013,7,19,16,30,607,90,815,2.7,28.6,50.64,927,19.3 +2013,7,19,17,30,404,76,729,2.6,28.200000000000003,63.25,927,19.200000000000003 +2013,7,19,18,30,194,55,561,1.6,25.6,75.62,927,20.3 +2013,7,19,19,30,24,17,170,1.3,23.900000000000002,87.4,928,21.1 +2013,7,19,20,30,0,0,0,1.3,23,98.9,928,20.400000000000002 +2013,7,19,21,30,0,0,0,1.5,22.400000000000002,109.12,929,20 +2013,7,19,22,30,0,0,0,1.8,21.900000000000002,117.72,929,19.700000000000003 +2013,7,19,23,30,0,0,0,2.2,21.400000000000002,123.93,928,19.3 +2013,7,20,0,30,0,0,0,2.4000000000000004,20.8,126.9,928,19.1 +2013,7,20,1,30,0,0,0,2.4000000000000004,20.200000000000003,126.08,928,18.900000000000002 +2013,7,20,2,30,0,0,0,2.2,19.6,121.63,928,18.900000000000002 +2013,7,20,3,30,0,0,0,1.9000000000000001,19.200000000000003,114.29,928,18.8 +2013,7,20,4,30,0,0,0,1.7000000000000002,18.900000000000002,104.92,928,18.8 +2013,7,20,5,30,0,0,0,2.3000000000000003,19.400000000000002,94.2,928,18.900000000000002 +2013,7,20,6,30,85,36,373,2.9000000000000004,21.3,82.49,928,19.3 +2013,7,20,7,30,281,65,643,3.4000000000000004,23.900000000000002,70.38,928,20 +2013,7,20,8,30,492,83,771,3.3000000000000003,26.400000000000002,57.89,928,20.1 +2013,7,20,9,30,686,95,839,2.7,27.900000000000002,45.25,928,20.1 +2013,7,20,10,30,843,105,876,2.5,29,32.7,928,20 +2013,7,20,11,30,950,113,895,2.6,29.700000000000003,20.85,927,19.900000000000002 +2013,7,20,12,30,1002,102,922,2.9000000000000004,30.1,12.41,927,19.700000000000003 +2013,7,20,13,30,986,105,912,3.1,30.3,15.200000000000001,926,19.5 +2013,7,20,14,30,909,105,893,3.3000000000000003,30.200000000000003,25.79,926,19.3 +2013,7,20,15,30,778,100,861,3.3000000000000003,29.900000000000002,38.07,925,19.1 +2013,7,20,16,30,602,91,808,3.2,29.3,50.71,925,19 +2013,7,20,17,30,399,77,717,3.1,28.900000000000002,63.33,925,19 +2013,7,20,18,30,155,80,304,1.9000000000000001,26.400000000000002,75.7,925,20.200000000000003 +2013,7,20,19,30,23,16,161,1.6,24.700000000000003,87.5,926,20.900000000000002 +2013,7,20,20,30,0,0,0,1.6,23.8,99.02,926,20.5 +2013,7,20,21,30,0,0,0,1.8,23.1,109.25,927,20.3 +2013,7,20,22,30,0,0,0,1.9000000000000001,22.5,117.87,927,20.1 +2013,7,20,23,30,0,0,0,2.1,22,124.11,927,20 +2013,7,21,0,30,0,0,0,2.2,21.400000000000002,127.09,926,19.900000000000002 +2013,7,21,1,30,0,0,0,2.2,20.900000000000002,126.27,926,19.8 +2013,7,21,2,30,0,0,0,2,20.5,121.81,926,19.6 +2013,7,21,3,30,0,0,0,1.9000000000000001,20.200000000000003,114.45,926,19.3 +2013,7,21,4,30,0,0,0,2,19.900000000000002,105.06,926,19.1 +2013,7,21,5,30,0,0,0,2.5,20.3,94.32000000000001,926,18.900000000000002 +2013,7,21,6,30,83,35,376,3.1,22,82.60000000000001,927,19.1 +2013,7,21,7,30,279,62,651,3.6,24.400000000000002,70.49,927,19.400000000000002 +2013,7,21,8,30,490,77,780,3.8000000000000003,26.700000000000003,57.99,927,19.200000000000003 +2013,7,21,9,30,685,87,850,3.6,28.5,45.34,927,19 +2013,7,21,10,30,844,93,893,3.5,29.8,32.8,927,18.900000000000002 +2013,7,21,11,30,953,96,917,3.7,30.8,20.98,926,18.900000000000002 +2013,7,21,12,30,1002,97,928,4,31.400000000000002,12.6,926,18.900000000000002 +2013,7,21,13,30,989,96,926,4.1000000000000005,31.700000000000003,15.35,925,18.900000000000002 +2013,7,21,14,30,914,92,914,4.1000000000000005,31.700000000000003,25.89,925,18.900000000000002 +2013,7,21,15,30,780,96,869,4.1000000000000005,31.400000000000002,38.15,924,18.8 +2013,7,21,16,30,603,88,815,4,30.700000000000003,50.79,924,18.8 +2013,7,21,17,30,398,76,721,3.9000000000000004,30.200000000000003,63.410000000000004,924,19 +2013,7,21,18,30,188,55,544,2.7,27.400000000000002,75.79,925,20 +2013,7,21,19,30,22,16,143,2.5,25.700000000000003,87.59,925,20.5 +2013,7,21,20,30,0,0,0,2.8000000000000003,25,99.13,926,20.3 +2013,7,21,21,30,0,0,0,2.9000000000000004,24.3,109.39,926,20.400000000000002 +2013,7,21,22,30,0,0,0,2.9000000000000004,23.6,118.03,927,20.400000000000002 +2013,7,21,23,30,0,0,0,2.9000000000000004,23,124.29,927,20.400000000000002 +2013,7,22,0,30,0,0,0,2.7,22.5,127.29,927,20.3 +2013,7,22,1,30,0,0,0,2.5,21.900000000000002,126.46000000000001,926,20.200000000000003 +2013,7,22,2,30,0,0,0,2.3000000000000003,21.400000000000002,121.99000000000001,926,20.1 +2013,7,22,3,30,0,0,0,2.2,21,114.61,927,20.1 +2013,7,22,4,30,0,0,0,2.2,20.700000000000003,105.2,927,20.1 +2013,7,22,5,30,0,0,0,2.6,21,94.45,927,20.1 +2013,7,22,6,30,76,41,281,3.4000000000000004,22.5,82.71000000000001,927,20.3 +2013,7,22,7,30,266,79,564,4.1000000000000005,24.8,70.59,927,20.6 +2013,7,22,8,30,473,102,701,4.3,26.8,58.08,927,20.8 +2013,7,22,9,30,663,120,775,4.2,28.5,45.43,927,21 +2013,7,22,10,30,816,137,809,4.1000000000000005,29.6,32.9,927,21 +2013,7,22,11,30,920,151,824,4.1000000000000005,30.200000000000003,21.11,927,21 +2013,7,22,12,30,970,149,841,4.3,30.5,12.790000000000001,926,20.900000000000002 +2013,7,22,13,30,895,427,486,4.5,30.5,15.51,926,21 +2013,7,22,14,30,878,148,813,4.800000000000001,30.3,25.990000000000002,925,21.1 +2013,7,22,15,30,752,132,790,4.9,30.1,38.24,925,21.1 +2013,7,22,16,30,582,113,743,4.7,29.6,50.870000000000005,925,21 +2013,7,22,17,30,383,91,653,4.6000000000000005,29.3,63.49,925,20.8 +2013,7,22,18,30,179,62,482,3.2,27.400000000000002,75.88,925,21.1 +2013,7,22,19,30,12,12,0,2.6,26.200000000000003,87.69,925,21.1 +2013,7,22,20,30,0,0,0,2.6,25.5,99.26,926,20.8 +2013,7,22,21,30,0,0,0,2.8000000000000003,25,109.53,926,20.700000000000003 +2013,7,22,22,30,0,0,0,2.8000000000000003,24.400000000000002,118.2,927,20.6 +2013,7,22,23,30,0,0,0,2.6,23.8,124.48,927,20.5 +2013,7,23,0,30,0,0,0,2.4000000000000004,23.200000000000003,127.49000000000001,927,20.400000000000002 +2013,7,23,1,30,0,0,0,2.5,22.700000000000003,126.66,927,20.3 +2013,7,23,2,30,0,0,0,2.8000000000000003,22.3,122.18,927,20.200000000000003 +2013,7,23,3,30,0,0,0,3.1,21.900000000000002,114.78,927,20.200000000000003 +2013,7,23,4,30,0,0,0,3.3000000000000003,21.6,105.35000000000001,927,20.3 +2013,7,23,5,30,0,0,0,3.6,21.8,94.58,927,20.400000000000002 +2013,7,23,6,30,76,39,300,4.6000000000000005,23.1,82.82000000000001,927,20.700000000000003 +2013,7,23,7,30,268,72,592,5.4,25.400000000000002,70.69,927,21.1 +2013,7,23,8,30,477,91,733,5.300000000000001,27.8,58.18,927,21.400000000000002 +2013,7,23,9,30,670,103,809,4.9,29.8,45.53,927,21.400000000000002 +2013,7,23,10,30,827,114,850,4.5,31.400000000000002,33,927,21.400000000000002 +2013,7,23,11,30,932,122,870,4.3,32.5,21.240000000000002,927,21.400000000000002 +2013,7,23,12,30,985,110,898,4.2,33.1,12.99,926,21.3 +2013,7,23,13,30,969,113,890,4.2,33.300000000000004,15.67,926,21.200000000000003 +2013,7,23,14,30,892,113,867,4.2,33.2,26.1,925,21.1 +2013,7,23,15,30,761,111,827,4.3,32.800000000000004,38.33,925,21 +2013,7,23,16,30,586,103,767,4.3,32,50.95,924,20.900000000000002 +2013,7,23,17,30,384,87,666,4.3,31.5,63.58,924,21 +2013,7,23,18,30,178,62,478,3.3000000000000003,28.900000000000002,75.98,924,21.5 +2013,7,23,19,30,19,15,84,3.2,27.6,87.8,925,21.6 +2013,7,23,20,30,0,0,0,3.2,26.8,99.38,925,21.5 +2013,7,23,21,30,0,0,0,2.9000000000000004,26.200000000000003,109.68,926,21.400000000000002 +2013,7,23,22,30,0,0,0,2.7,25.6,118.37,926,21.200000000000003 +2013,7,23,23,30,0,0,0,2.5,25.1,124.67,926,21 +2013,7,24,0,30,0,0,0,2.6,24.700000000000003,127.69,926,20.700000000000003 +2013,7,24,1,30,0,0,0,2.8000000000000003,24.3,126.87,926,20.3 +2013,7,24,2,30,0,0,0,3,23.8,122.37,926,19.6 +2013,7,24,3,30,0,0,0,3,23.200000000000003,114.95,926,18.900000000000002 +2013,7,24,4,30,0,0,0,3,22.5,105.5,926,18.5 +2013,7,24,5,30,0,0,0,3.3000000000000003,22.3,94.7,927,18.400000000000002 +2013,7,24,6,30,74,40,280,3.6,23,82.94,927,18.5 +2013,7,24,7,30,268,76,584,3.7,24.700000000000003,70.79,927,18.900000000000002 +2013,7,24,8,30,480,95,732,3.7,26.900000000000002,58.28,927,19.400000000000002 +2013,7,24,9,30,675,107,813,3.4000000000000004,29,45.63,927,19.700000000000003 +2013,7,24,10,30,834,115,858,2.9000000000000004,30.8,33.11,927,19.6 +2013,7,24,11,30,797,409,417,2.7,32.1,21.38,927,19.700000000000003 +2013,7,24,12,30,859,452,417,2.8000000000000003,32.800000000000004,13.19,927,20 +2013,7,24,13,30,794,435,373,3.1,32.6,15.85,927,20.200000000000003 +2013,7,24,14,30,740,390,390,3.1,32.1,26.21,927,20.400000000000002 +2013,7,24,15,30,689,287,514,3,31.5,38.42,927,20.5 +2013,7,24,16,30,591,102,778,2.5,30.700000000000003,51.04,927,20.6 +2013,7,24,17,30,387,87,677,2.2,30.3,63.67,927,21.200000000000003 +2013,7,24,18,30,179,62,486,1.2000000000000002,28,76.08,927,22.5 +2013,7,24,19,30,18,15,81,1.1,26.8,87.91,927,22.200000000000003 +2013,7,24,20,30,0,0,0,1.2000000000000002,26.200000000000003,99.52,928,21.700000000000003 +2013,7,24,21,30,0,0,0,1.4000000000000001,25.8,109.83,928,21.5 +2013,7,24,22,30,0,0,0,1.5,25.400000000000002,118.55,928,21.400000000000002 +2013,7,24,23,30,0,0,0,1.6,25,124.87,928,21.3 +2013,7,25,0,30,0,0,0,1.8,24.6,127.91,928,21.200000000000003 +2013,7,25,1,30,0,0,0,1.8,24.200000000000003,127.08,928,21.1 +2013,7,25,2,30,0,0,0,1.8,23.900000000000002,122.56,929,21 +2013,7,25,3,30,0,0,0,1.6,23.6,115.12,929,20.8 +2013,7,25,4,30,0,0,0,1.2000000000000002,23.200000000000003,105.65,929,20.6 +2013,7,25,5,30,0,0,0,1,23.200000000000003,94.84,929,20.400000000000002 +2013,7,25,6,30,72,40,265,1.2000000000000002,23.900000000000002,83.05,929,20.6 +2013,7,25,7,30,264,77,571,1.3,25.3,70.9,930,20.3 +2013,7,25,8,30,474,97,719,1.3,27,58.38,930,19.900000000000002 +2013,7,25,9,30,669,110,800,1.3,28.6,45.72,930,19.6 +2013,7,25,10,30,828,117,850,1.4000000000000001,29.8,33.22,930,19.900000000000002 +2013,7,25,11,30,801,408,423,1.7000000000000002,30.200000000000003,21.52,930,20.3 +2013,7,25,12,30,784,462,331,2.1,30.200000000000003,13.4,930,20.6 +2013,7,25,13,30,450,413,39,2.5,30.1,16.02,930,20.900000000000002 +2013,7,25,14,30,823,364,512,2.8000000000000003,29.8,26.330000000000002,929,21.200000000000003 +2013,7,25,15,30,756,127,805,3,29.400000000000002,38.52,929,21.400000000000002 +2013,7,25,16,30,581,112,747,3,28.8,51.14,929,21.5 +2013,7,25,17,30,169,159,22,3,28.5,63.77,929,21.900000000000002 +2013,7,25,18,30,98,87,46,2.5,26.8,76.19,929,22.400000000000002 +2013,7,25,19,30,9,9,0,2.6,25.900000000000002,88.02,929,22.3 +2013,7,25,20,30,0,0,0,2.9000000000000004,25.5,99.66,929,22.1 +2013,7,25,21,30,0,0,0,3.1,25.1,109.99000000000001,929,21.900000000000002 +2013,7,25,22,30,0,0,0,3.2,24.700000000000003,118.73,929,21.6 +2013,7,25,23,30,0,0,0,3.2,24.200000000000003,125.08,929,21.3 +2013,7,26,0,30,0,0,0,3,23.8,128.13,929,21 +2013,7,26,1,30,0,0,0,2.8000000000000003,23.400000000000002,127.3,928,20.700000000000003 +2013,7,26,2,30,0,0,0,2.7,23.1,122.76,928,20.5 +2013,7,26,3,30,0,0,0,2.6,22.700000000000003,115.29,928,20.200000000000003 +2013,7,26,4,30,0,0,0,2.6,22.200000000000003,105.8,928,19.900000000000002 +2013,7,26,5,30,0,0,0,2.8000000000000003,22.200000000000003,94.97,928,19.700000000000003 +2013,7,26,6,30,21,21,0,3.2,23.1,83.17,929,19.6 +2013,7,26,7,30,190,124,205,3.7,25.200000000000003,71,929,19.6 +2013,7,26,8,30,376,206,325,4.1000000000000005,27.900000000000002,58.47,929,19.3 +2013,7,26,9,30,663,118,783,4,30.3,45.82,929,18.8 +2013,7,26,10,30,795,261,639,3.7,32.300000000000004,33.33,929,18.3 +2013,7,26,11,30,927,133,855,3.5,33.7,21.67,928,18.2 +2013,7,26,12,30,975,137,862,3.8000000000000003,34.4,13.620000000000001,928,18.5 +2013,7,26,13,30,881,433,466,4.3,34.2,16.21,927,18.7 +2013,7,26,14,30,883,140,829,4.7,33.5,26.46,927,18.7 +2013,7,26,15,30,756,128,804,5,32.9,38.63,927,18.400000000000002 +2013,7,26,16,30,587,106,769,5,32,51.24,927,17.900000000000002 +2013,7,26,17,30,388,82,693,5,31.5,63.88,927,17.5 +2013,7,26,18,30,180,55,529,4,28.200000000000003,76.3,928,17.6 +2013,7,26,19,30,17,13,127,3.5,26.1,88.14,929,18 +2013,7,26,20,30,0,0,0,3.4000000000000004,24.8,99.8,930,18.2 +2013,7,26,21,30,0,0,0,3.1,23.8,110.16,930,18.400000000000002 +2013,7,26,22,30,0,0,0,2.8000000000000003,23,118.92,931,18.7 +2013,7,26,23,30,0,0,0,2.7,22.3,125.29,931,18.8 +2013,7,27,0,30,0,0,0,2.7,21.700000000000003,128.35,931,18.8 +2013,7,27,1,30,0,0,0,2.5,21,127.52,930,18.7 +2013,7,27,2,30,0,0,0,2.3000000000000003,20.1,122.96000000000001,930,18.6 +2013,7,27,3,30,0,0,0,2.2,19.400000000000002,115.47,930,18.5 +2013,7,27,4,30,0,0,0,2.1,18.900000000000002,105.95,930,18.5 +2013,7,27,5,30,0,0,0,2.6,19.1,95.10000000000001,930,18.400000000000002 +2013,7,27,6,30,76,35,357,3.4000000000000004,20.8,83.28,931,18.400000000000002 +2013,7,27,7,30,277,65,653,3.8000000000000003,23.1,71.11,931,18 +2013,7,27,8,30,430,150,538,3.8000000000000003,25.1,58.57,931,17.5 +2013,7,27,9,30,606,225,549,3.6,26.900000000000002,45.92,931,17.2 +2013,7,27,10,30,836,184,782,3.5,28.400000000000002,33.44,931,17 +2013,7,27,11,30,841,405,470,3.4000000000000004,29.700000000000003,21.81,930,16.7 +2013,7,27,12,30,968,313,675,3.4000000000000004,30.700000000000003,13.83,929,16.2 +2013,7,27,13,30,958,298,689,3.4000000000000004,31.200000000000003,16.4,929,15.8 +2013,7,27,14,30,931,93,938,3.4000000000000004,31.400000000000002,26.59,928,15.4 +2013,7,27,15,30,796,87,909,3.4000000000000004,31.1,38.74,928,15 +2013,7,27,16,30,616,79,859,3.3000000000000003,30.3,51.35,927,14.4 +2013,7,27,17,30,328,148,409,3.3000000000000003,29.8,63.980000000000004,927,13.8 +2013,7,27,18,30,155,71,358,1.9000000000000001,26.200000000000003,76.41,927,14.700000000000001 +2013,7,27,19,30,17,13,146,1.4000000000000001,23.900000000000002,88.26,927,15.8 +2013,7,27,20,30,0,0,0,1.5,23,99.95,928,15.3 +2013,7,27,21,30,0,0,0,1.7000000000000002,22.3,110.33,928,15 +2013,7,27,22,30,0,0,0,1.9000000000000001,21.700000000000003,119.12,928,14.8 +2013,7,27,23,30,0,0,0,2.1,21,125.51,928,14.600000000000001 +2013,7,28,0,30,0,0,0,2.2,20.3,128.58,928,14.700000000000001 +2013,7,28,1,30,0,0,0,2.1,19.700000000000003,127.74000000000001,928,14.8 +2013,7,28,2,30,0,0,0,2,19,123.16,928,15.100000000000001 +2013,7,28,3,30,0,0,0,1.8,18.3,115.65,928,15.4 +2013,7,28,4,30,0,0,0,1.8,17.7,106.11,928,15.600000000000001 +2013,7,28,5,30,0,0,0,2.2,18,95.24,928,15.8 +2013,7,28,6,30,78,32,407,3,19.900000000000002,83.4,928,16.1 +2013,7,28,7,30,282,59,692,3.5,22.700000000000003,71.22,928,16.3 +2013,7,28,8,30,501,75,820,3.4000000000000004,25.200000000000003,58.67,928,16.2 +2013,7,28,9,30,700,84,887,2.9000000000000004,27.200000000000003,46.02,928,15.600000000000001 +2013,7,28,10,30,862,91,925,2.6,28.900000000000002,33.55,927,14.9 +2013,7,28,11,30,971,95,945,2.6,30.3,21.96,927,14.3 +2013,7,28,12,30,1018,103,943,2.7,31.400000000000002,14.06,926,14 +2013,7,28,13,30,1001,103,938,2.9000000000000004,32.2,16.59,925,13.700000000000001 +2013,7,28,14,30,920,100,918,3.1,32.6,26.73,925,13.700000000000001 +2013,7,28,15,30,782,101,875,3.3000000000000003,32.6,38.85,924,13.700000000000001 +2013,7,28,16,30,600,93,814,3.4000000000000004,32.1,51.46,924,13.700000000000001 +2013,7,28,17,30,389,82,702,3.4000000000000004,31.700000000000003,64.1,924,14 +2013,7,28,18,30,126,84,182,2.3000000000000003,28.6,76.54,924,16 +2013,7,28,19,30,13,12,37,2.3000000000000003,26.900000000000002,88.39,925,16.5 +2013,7,28,20,30,0,0,0,3,26.5,100.10000000000001,925,16.2 +2013,7,28,21,30,0,0,0,3.6,26.200000000000003,110.5,925,16.7 +2013,7,28,22,30,0,0,0,3.9000000000000004,25.700000000000003,119.32000000000001,925,17.6 +2013,7,28,23,30,0,0,0,3.8000000000000003,25.3,125.73,925,18.5 +2013,7,29,0,30,0,0,0,3.6,24.900000000000002,128.81,925,19.200000000000003 +2013,7,29,1,30,0,0,0,3.4000000000000004,24.5,127.97,925,19.6 +2013,7,29,2,30,0,0,0,3.4000000000000004,24,123.37,925,19.900000000000002 +2013,7,29,3,30,0,0,0,3.5,23.6,115.83,925,19.900000000000002 +2013,7,29,4,30,0,0,0,3.6,23.200000000000003,106.26,926,19.900000000000002 +2013,7,29,5,30,0,0,0,3.9000000000000004,23.1,95.37,926,20.1 +2013,7,29,6,30,31,31,0,4.7,24,83.52,927,20.5 +2013,7,29,7,30,114,110,12,5.6000000000000005,25.5,71.32000000000001,927,21.1 +2013,7,29,8,30,441,145,570,5.800000000000001,27.400000000000002,58.78,927,21.1 +2013,7,29,9,30,635,159,687,5.800000000000001,29.200000000000003,46.12,927,20.700000000000003 +2013,7,29,10,30,547,412,163,5.7,30.6,33.67,927,20.400000000000002 +2013,7,29,11,30,810,408,433,5.4,31.6,22.12,927,20.1 +2013,7,29,12,30,523,461,64,5.2,32.1,14.280000000000001,927,20 +2013,7,29,13,30,845,438,425,4.9,32.1,16.8,926,19.8 +2013,7,29,14,30,677,436,270,4.4,31.8,26.88,926,19.700000000000003 +2013,7,29,15,30,743,132,785,3.8000000000000003,31.200000000000003,38.97,926,19.700000000000003 +2013,7,29,16,30,568,118,725,2.9000000000000004,30.5,51.57,926,19.900000000000002 +2013,7,29,17,30,325,146,411,2.3000000000000003,30.200000000000003,64.22,926,20.900000000000002 +2013,7,29,18,30,85,81,21,1.5,28.200000000000003,76.66,926,21.900000000000002 +2013,7,29,19,30,5,5,0,1.8,27.200000000000003,88.51,927,21 +2013,7,29,20,30,0,0,0,2.2,26.700000000000003,100.26,927,20.1 +2013,7,29,21,30,0,0,0,2.6,26.1,110.69,928,19.3 +2013,7,29,22,30,0,0,0,2.6,25.3,119.52,928,18.7 +2013,7,29,23,30,0,0,0,2.8000000000000003,24.5,125.96000000000001,928,18.400000000000002 +2013,7,30,0,30,0,0,0,3.2,23.900000000000002,129.05,928,18 +2013,7,30,1,30,0,0,0,3.6,23.3,128.2,928,17.6 +2013,7,30,2,30,0,0,0,3.8000000000000003,22.8,123.59,928,17.3 +2013,7,30,3,30,0,0,0,3.8000000000000003,22.5,116.02,928,17.400000000000002 +2013,7,30,4,30,0,0,0,3.8000000000000003,22.400000000000002,106.42,929,18 +2013,7,30,5,30,0,0,0,4,22.400000000000002,95.51,929,18.8 +2013,7,30,6,30,36,36,5,4.800000000000001,23.3,83.63,929,19.6 +2013,7,30,7,30,192,118,230,5.6000000000000005,25.1,71.43,930,20.400000000000002 +2013,7,30,8,30,338,219,232,5.7,27.5,58.88,930,20.5 +2013,7,30,9,30,388,318,101,5.1000000000000005,29.700000000000003,46.230000000000004,930,20 +2013,7,30,10,30,709,331,455,4.4,31.400000000000002,33.78,930,19.700000000000003 +2013,7,30,11,30,811,407,436,3.7,32.6,22.27,929,19.6 +2013,7,30,12,30,870,448,436,3.2,33.300000000000004,14.52,929,19.6 +2013,7,30,13,30,859,436,442,2.7,33.6,17.01,929,19.6 +2013,7,30,14,30,786,377,459,2.4000000000000004,33.7,27.03,928,19.700000000000003 +2013,7,30,15,30,649,299,450,2.3000000000000003,33.7,39.1,928,19.700000000000003 +2013,7,30,16,30,453,263,305,2.2,33.300000000000004,51.69,928,19.700000000000003 +2013,7,30,17,30,310,156,354,2.1,33,64.34,928,20.1 +2013,7,30,18,30,146,71,329,1.5,30.3,76.79,928,21.700000000000003 +2013,7,30,19,30,8,8,0,1.5,28.700000000000003,88.65,928,21.3 +2013,7,30,20,30,0,0,0,1.7000000000000002,27.900000000000002,100.42,928,20.8 +2013,7,30,21,30,0,0,0,1.8,27.3,110.87,929,20.6 +2013,7,30,22,30,0,0,0,1.9000000000000001,26.900000000000002,119.73,929,20.400000000000002 +2013,7,30,23,30,0,0,0,2.2,26.5,126.19,929,20.3 +2013,7,31,0,30,0,0,0,2.5,26.3,129.3,929,20 +2013,7,31,1,30,0,0,0,2.7,26,128.44,929,19.700000000000003 +2013,7,31,2,30,0,0,0,3,25.6,123.8,929,19.400000000000002 +2013,7,31,3,30,0,0,0,3.2,25,116.21000000000001,929,19.1 +2013,7,31,4,30,0,0,0,3.4000000000000004,24.5,106.58,930,19 +2013,7,31,5,30,0,0,0,3.7,24.3,95.65,931,19 +2013,7,31,6,30,42,36,50,3.9000000000000004,25.200000000000003,83.75,931,19.1 +2013,7,31,7,30,239,105,425,3.8000000000000003,27.200000000000003,71.54,932,19.3 +2013,7,31,8,30,449,137,605,3.1,29.6,58.980000000000004,932,19.3 +2013,7,31,9,30,643,158,702,2,31.8,46.33,931,19.3 +2013,7,31,10,30,800,172,757,1.3,33.4,33.9,931,19.5 +2013,7,31,11,30,878,354,568,1.6,34.4,22.43,931,19.8 +2013,7,31,12,30,964,161,830,2.3000000000000003,34.800000000000004,14.75,930,20 +2013,7,31,13,30,948,160,825,2.8000000000000003,34.6,17.22,929,20.1 +2013,7,31,14,30,871,155,804,3.1,34.1,27.19,929,20 +2013,7,31,15,30,413,355,74,3.1,33.5,39.230000000000004,929,19.900000000000002 +2013,7,31,16,30,490,240,404,2.8000000000000003,32.800000000000004,51.82,929,19.700000000000003 +2013,7,31,17,30,129,129,0,2.5,32.4,64.47,929,19.700000000000003 +2013,7,31,18,30,158,70,389,1.3,30.200000000000003,76.93,929,20.700000000000003 +2013,7,31,19,30,7,7,0,1,28.8,88.79,929,20.6 +2013,7,31,20,30,0,0,0,0.9,28,100.59,930,20.1 +2013,7,31,21,30,0,0,0,0.8,27.5,111.06,930,19.8 +2013,7,31,22,30,0,0,0,0.8,27,119.95,930,19.5 +2013,7,31,23,30,0,0,0,0.9,26.5,126.43,930,19.400000000000002 +2013,8,1,0,30,0,0,0,1.1,25.900000000000002,129.55,930,19.3 +2013,8,1,1,30,0,0,0,1.2000000000000002,25.400000000000002,128.68,930,19.400000000000002 +2013,8,1,2,30,0,0,0,1.2000000000000002,24.900000000000002,124.02,929,19.6 +2013,8,1,3,30,0,0,0,1.1,24.400000000000002,116.4,929,19.900000000000002 +2013,8,1,4,30,0,0,0,0.9,24,106.75,929,20.3 +2013,8,1,5,30,0,0,0,1.1,24.1,95.79,930,20.6 +2013,8,1,6,30,46,36,97,1.4000000000000001,25.3,83.87,930,21.1 +2013,8,1,7,30,163,123,127,1.5,27.400000000000002,71.65,930,21 +2013,8,1,8,30,405,175,447,1.5,29.700000000000003,59.08,930,20.8 +2013,8,1,9,30,593,227,531,1.9000000000000001,31.400000000000002,46.44,930,20.400000000000002 +2013,8,1,10,30,793,250,655,2.3000000000000003,32.5,34.02,930,20.400000000000002 +2013,8,1,11,30,926,126,867,2.5,33.1,22.59,930,20.200000000000003 +2013,8,1,12,30,979,119,891,2.5,33.300000000000004,15,929,19.900000000000002 +2013,8,1,13,30,966,116,891,2.2,33.300000000000004,17.45,929,19.5 +2013,8,1,14,30,890,111,878,1.9000000000000001,33.2,27.35,928,19.1 +2013,8,1,15,30,757,108,839,1.7000000000000002,32.9,39.37,927,18.7 +2013,8,1,16,30,379,281,160,1.6,32.6,51.95,927,18.2 +2013,8,1,17,30,289,165,289,1.6,32.300000000000004,64.6,927,18 +2013,8,1,18,30,143,69,328,1,29.700000000000003,77.07000000000001,927,19.5 +2013,8,1,19,30,5,5,0,1,27.8,88.93,927,19.8 +2013,8,1,20,30,0,0,0,1.2000000000000002,26.900000000000002,100.76,928,19.3 +2013,8,1,21,30,0,0,0,1.5,26.400000000000002,111.26,928,19.1 +2013,8,1,22,30,0,0,0,1.7000000000000002,26,120.17,928,19 +2013,8,1,23,30,0,0,0,2,25.700000000000003,126.68,927,19 +2013,8,2,0,30,0,0,0,2.1,25.400000000000002,129.81,927,19 +2013,8,2,1,30,0,0,0,2.2,25,128.93,927,19.1 +2013,8,2,2,30,0,0,0,2.2,24.700000000000003,124.24000000000001,926,19.1 +2013,8,2,3,30,0,0,0,2.3000000000000003,24.200000000000003,116.59,926,19.1 +2013,8,2,4,30,0,0,0,2.6,23.8,106.91,926,19 +2013,8,2,5,30,0,0,0,3.2,23.8,95.93,927,18.7 +2013,8,2,6,30,62,35,263,4.2,24.900000000000002,83.99,927,18.2 +2013,8,2,7,30,255,72,586,5.300000000000001,27.200000000000003,71.76,928,17.400000000000002 +2013,8,2,8,30,471,92,739,5.9,30,59.19,928,15.8 +2013,8,2,9,30,670,105,820,5.6000000000000005,32.7,46.54,928,14.8 +2013,8,2,10,30,832,115,866,5,34.7,34.14,928,15.100000000000001 +2013,8,2,11,30,941,120,890,4.6000000000000005,36.1,22.76,927,15.600000000000001 +2013,8,2,12,30,993,118,907,4.4,37,15.24,926,15.8 +2013,8,2,13,30,977,118,901,4.3,37.4,17.67,925,15.600000000000001 +2013,8,2,14,30,899,116,882,4.3,37.5,27.52,925,15.600000000000001 +2013,8,2,15,30,766,106,855,4.2,37.1,39.51,924,15.5 +2013,8,2,16,30,586,95,798,4.1000000000000005,36.300000000000004,52.08,924,15.4 +2013,8,2,17,30,377,80,697,4.1000000000000005,35.800000000000004,64.74,924,15.4 +2013,8,2,18,30,166,55,501,2.7,32.1,77.22,924,16.3 +2013,8,2,19,30,0,0,0,2.6,29.900000000000002,89.07000000000001,925,17.1 +2013,8,2,20,30,0,0,0,3.3000000000000003,29,100.94,925,16.6 +2013,8,2,21,30,0,0,0,4,28.200000000000003,111.46000000000001,926,16.3 +2013,8,2,22,30,0,0,0,4.3,27.3,120.4,926,15.9 +2013,8,2,23,30,0,0,0,4.4,26.400000000000002,126.93,926,15.4 +2013,8,3,0,30,0,0,0,4.4,25.5,130.07,927,15.100000000000001 +2013,8,3,1,30,0,0,0,4.4,24.900000000000002,129.18,927,14.9 +2013,8,3,2,30,0,0,0,4.2,24.3,124.47,927,14.9 +2013,8,3,3,30,0,0,0,4.1000000000000005,23.8,116.78,927,15.200000000000001 +2013,8,3,4,30,0,0,0,4.1000000000000005,23.200000000000003,107.07000000000001,927,15.9 +2013,8,3,5,30,0,0,0,4.1000000000000005,23,96.07000000000001,927,16.8 +2013,8,3,6,30,62,33,284,4.9,24.200000000000003,84.11,928,17.6 +2013,8,3,7,30,259,68,614,5.7,26.8,71.87,928,18.1 +2013,8,3,8,30,476,86,763,5.6000000000000005,29.8,59.29,928,17.7 +2013,8,3,9,30,676,98,843,5,32.4,46.65,928,17 +2013,8,3,10,30,839,105,888,4.2,34.5,34.27,928,16.3 +2013,8,3,11,30,949,110,911,3.8000000000000003,36,22.93,928,15.8 +2013,8,3,12,30,1002,105,930,3.6,37,15.49,927,15.4 +2013,8,3,13,30,986,104,927,3.6,37.6,17.91,926,15.200000000000001 +2013,8,3,14,30,906,100,910,3.8000000000000003,37.7,27.7,926,15.200000000000001 +2013,8,3,15,30,771,94,880,4,37.300000000000004,39.660000000000004,926,15.200000000000001 +2013,8,3,16,30,589,85,823,4.1000000000000005,36.4,52.22,926,15.4 +2013,8,3,17,30,380,71,727,4.1000000000000005,35.9,64.88,926,15.5 +2013,8,3,18,30,167,50,534,2.8000000000000003,32.4,77.36,926,16.1 +2013,8,3,19,30,0,0,0,2.7,30.3,89.22,927,17 +2013,8,3,20,30,0,0,0,3.4000000000000004,29.400000000000002,101.12,928,16.7 +2013,8,3,21,30,0,0,0,3.8000000000000003,28.5,111.66,928,16.3 +2013,8,3,22,30,0,0,0,3.8000000000000003,27.5,120.63,929,15.8 +2013,8,3,23,30,0,0,0,3.7,26.6,127.18,929,15.3 +2013,8,4,0,30,0,0,0,3.5,25.700000000000003,130.33,929,14.9 +2013,8,4,1,30,0,0,0,3.6,25.1,129.44,929,14.9 +2013,8,4,2,30,0,0,0,3.7,24.6,124.69,929,14.9 +2013,8,4,3,30,0,0,0,3.5,24,116.98,929,15.600000000000001 +2013,8,4,4,30,0,0,0,3.4000000000000004,23.5,107.24000000000001,930,16.900000000000002 +2013,8,4,5,30,0,0,0,3.5,23.400000000000002,96.21000000000001,930,18.2 +2013,8,4,6,30,60,31,289,4.4,24.6,84.23,931,19.400000000000002 +2013,8,4,7,30,254,65,610,5.1000000000000005,27,71.98,931,20.3 +2013,8,4,8,30,466,84,752,4.800000000000001,29.400000000000002,59.4,931,20.400000000000002 +2013,8,4,9,30,663,96,828,4.2,31.6,46.76,930,20 +2013,8,4,10,30,823,107,869,3.7,33.2,34.39,930,19.6 +2013,8,4,11,30,932,113,891,3.6,34.300000000000004,23.1,929,19.5 +2013,8,4,12,30,980,116,898,3.6,35,15.75,928,19.3 +2013,8,4,13,30,963,116,891,3.7,35.300000000000004,18.150000000000002,928,19.200000000000003 +2013,8,4,14,30,885,113,874,3.8000000000000003,35.2,27.88,927,19.1 +2013,8,4,15,30,721,225,645,3.8000000000000003,34.7,39.82,927,18.900000000000002 +2013,8,4,16,30,434,264,279,3.8000000000000003,34,52.370000000000005,927,18.7 +2013,8,4,17,30,366,83,670,3.7,33.6,65.02,926,18.400000000000002 +2013,8,4,18,30,157,56,471,2.3000000000000003,31.3,77.52,927,18.5 +2013,8,4,19,30,0,0,0,1.8,29.6,89.37,927,19 +2013,8,4,20,30,0,0,0,2.3000000000000003,28.900000000000002,101.31,928,18.6 +2013,8,4,21,30,0,0,0,3.1,28.5,111.87,928,18.3 +2013,8,4,22,30,0,0,0,3.7,28,120.87,928,18.1 +2013,8,4,23,30,0,0,0,3.9000000000000004,27.400000000000002,127.44,928,18 +2013,8,5,0,30,0,0,0,3.8000000000000003,26.700000000000003,130.6,928,17.8 +2013,8,5,1,30,0,0,0,3.5,26,129.7,928,17.6 +2013,8,5,2,30,0,0,0,3.5,25.3,124.93,928,17.400000000000002 +2013,8,5,3,30,0,0,0,3.6,24.6,117.17,928,17.2 +2013,8,5,4,30,0,0,0,3.6,23.8,107.41,928,17.1 +2013,8,5,5,30,0,0,0,3.6,23.5,96.35000000000001,929,17.1 +2013,8,5,6,30,60,30,308,4.2,24.6,84.36,929,17.1 +2013,8,5,7,30,256,61,634,4.9,27,72.09,929,16.900000000000002 +2013,8,5,8,30,472,79,776,4.800000000000001,29.700000000000003,59.5,929,16.5 +2013,8,5,9,30,672,90,851,4.2,32.2,46.87,929,16.2 +2013,8,5,10,30,833,97,893,3.8000000000000003,34.2,34.52,928,16 +2013,8,5,11,30,944,101,918,3.7,35.7,23.28,928,15.8 +2013,8,5,12,30,998,99,935,3.9000000000000004,36.7,16.01,927,15.600000000000001 +2013,8,5,13,30,984,96,936,4.1000000000000005,37.300000000000004,18.400000000000002,926,15.3 +2013,8,5,14,30,906,91,924,4.2,37.6,28.07,925,14.8 +2013,8,5,15,30,772,87,893,4.3,37.4,39.980000000000004,924,14.4 +2013,8,5,16,30,590,79,841,4.2,36.800000000000004,52.52,924,14 +2013,8,5,17,30,381,66,750,4.1000000000000005,36.300000000000004,65.18,924,13.600000000000001 +2013,8,5,18,30,165,46,558,2.6,32.6,77.68,924,14.100000000000001 +2013,8,5,19,30,0,0,0,2.4000000000000004,30.1,89.52,924,15 +2013,8,5,20,30,0,0,0,3.2,29.3,101.5,925,14.600000000000001 +2013,8,5,21,30,0,0,0,3.9000000000000004,28.700000000000003,112.09,925,14.5 +2013,8,5,22,30,0,0,0,4.2,27.8,121.11,925,14.8 +2013,8,5,23,30,0,0,0,4,26.8,127.71000000000001,925,15.100000000000001 +2013,8,6,0,30,0,0,0,3.8000000000000003,26,130.88,925,15.3 +2013,8,6,1,30,0,0,0,3.8000000000000003,25.400000000000002,129.96,925,15.200000000000001 +2013,8,6,2,30,0,0,0,3.8000000000000003,24.8,125.16,925,15.100000000000001 +2013,8,6,3,30,0,0,0,3.8000000000000003,24.200000000000003,117.37,925,15.100000000000001 +2013,8,6,4,30,0,0,0,3.8000000000000003,23.700000000000003,107.57000000000001,925,15.5 +2013,8,6,5,30,0,0,0,3.9000000000000004,23.5,96.49000000000001,925,15.9 +2013,8,6,6,30,59,30,306,4.7,24.700000000000003,84.48,926,16.5 +2013,8,6,7,30,256,61,638,5.6000000000000005,27.400000000000002,72.2,926,17.1 +2013,8,6,8,30,474,78,782,5.6000000000000005,30.5,59.61,926,17 +2013,8,6,9,30,675,89,858,5.1000000000000005,33.300000000000004,46.980000000000004,926,16.5 +2013,8,6,10,30,839,97,901,4.5,35.5,34.65,925,16.1 +2013,8,6,11,30,950,103,924,4.2,37,23.46,925,15.8 +2013,8,6,12,30,999,103,934,4.2,38.1,16.27,924,15.4 +2013,8,6,13,30,982,103,928,4.2,38.7,18.650000000000002,923,14.9 +2013,8,6,14,30,903,102,909,4.2,38.900000000000006,28.26,923,14.600000000000001 +2013,8,6,15,30,762,107,856,4.1000000000000005,38.6,40.14,922,14.200000000000001 +2013,8,6,16,30,578,101,787,4,37.9,52.67,922,13.600000000000001 +2013,8,6,17,30,365,89,662,3.9000000000000004,37.300000000000004,65.33,922,13.3 +2013,8,6,18,30,151,63,414,2.2,33.2,77.84,922,14.4 +2013,8,6,19,30,0,0,0,2,30.700000000000003,89.68,923,15.3 +2013,8,6,20,30,0,0,0,2.5,29.700000000000003,101.7,923,14.5 +2013,8,6,21,30,0,0,0,3.1,29,112.31,924,14.100000000000001 +2013,8,6,22,30,0,0,0,3.6,28.200000000000003,121.36,924,14.200000000000001 +2013,8,6,23,30,0,0,0,3.9000000000000004,27.3,127.98,924,14.4 +2013,8,7,0,30,0,0,0,3.9000000000000004,26.400000000000002,131.16,924,14.600000000000001 +2013,8,7,1,30,0,0,0,3.9000000000000004,25.6,130.23,924,14.8 +2013,8,7,2,30,0,0,0,3.6,24.900000000000002,125.39,924,14.9 +2013,8,7,3,30,0,0,0,3.3000000000000003,24.3,117.57000000000001,924,15.200000000000001 +2013,8,7,4,30,0,0,0,3.1,23.700000000000003,107.74000000000001,924,15.600000000000001 +2013,8,7,5,30,0,0,0,3.3000000000000003,23.700000000000003,96.64,924,16.1 +2013,8,7,6,30,49,36,137,4.2,25,84.60000000000001,925,16.6 +2013,8,7,7,30,234,89,478,5.2,27.6,72.32000000000001,925,17.400000000000002 +2013,8,7,8,30,445,118,649,5.4,30.700000000000003,59.72,925,17.6 +2013,8,7,9,30,642,136,742,5,33.7,47.09,925,17 +2013,8,7,10,30,803,148,798,4.2,36.300000000000004,34.78,924,16.2 +2013,8,7,11,30,912,155,827,3.5,38,23.64,924,15.8 +2013,8,7,12,30,981,106,913,3.2,38.800000000000004,16.54,923,15.700000000000001 +2013,8,7,13,30,964,109,904,3.2,38.900000000000006,18.91,923,15.9 +2013,8,7,14,30,883,109,880,3.4000000000000004,38.6,28.46,922,16.1 +2013,8,7,15,30,747,105,842,3.5,37.9,40.31,922,16.400000000000002 +2013,8,7,16,30,566,96,777,3.6,36.800000000000004,52.83,922,16.6 +2013,8,7,17,30,358,81,669,3.6,36.1,65.49,922,17.400000000000002 +2013,8,7,18,30,149,55,452,2.3000000000000003,32.1,78.01,922,20 +2013,8,7,19,30,0,0,0,2,30.200000000000003,89.84,923,21 +2013,8,7,20,30,0,0,0,2,29.3,101.9,923,20.8 +2013,8,7,21,30,0,0,0,2,28.6,112.54,924,20.8 +2013,8,7,22,30,0,0,0,2.1,27.700000000000003,121.61,924,20.6 +2013,8,7,23,30,0,0,0,2.3000000000000003,26.8,128.25,924,20.200000000000003 +2013,8,8,0,30,0,0,0,2.5,26,131.44,923,19.700000000000003 +2013,8,8,1,30,0,0,0,2.6,25.200000000000003,130.5,923,19.200000000000003 +2013,8,8,2,30,0,0,0,2.4000000000000004,24.5,125.63000000000001,924,18.8 +2013,8,8,3,30,0,0,0,2.1,23.8,117.77,924,18.6 +2013,8,8,4,30,0,0,0,2,23.3,107.91,924,18.5 +2013,8,8,5,30,0,0,0,2.5,23.200000000000003,96.78,924,18.400000000000002 +2013,8,8,6,30,23,23,0,3.5,24.5,84.72,924,18.3 +2013,8,8,7,30,164,116,157,4.3,27.1,72.43,924,18.400000000000002 +2013,8,8,8,30,445,107,673,4.5,30.1,59.82,924,18.400000000000002 +2013,8,8,9,30,460,315,212,4.4,32.7,47.2,924,18 +2013,8,8,10,30,588,400,230,4.2,34.5,34.910000000000004,924,17.400000000000002 +2013,8,8,11,30,914,141,845,4,35.800000000000004,23.82,924,17.3 +2013,8,8,12,30,969,129,877,4.1000000000000005,36.5,16.81,923,17.3 +2013,8,8,13,30,954,127,876,4.1000000000000005,36.800000000000004,19.17,923,17.2 +2013,8,8,14,30,876,124,856,4.1000000000000005,36.800000000000004,28.66,922,17.1 +2013,8,8,15,30,334,307,35,4,36.5,40.49,922,16.8 +2013,8,8,16,30,556,115,733,3.6,35.800000000000004,53,922,16.2 +2013,8,8,17,30,131,130,2,3.3000000000000003,35.300000000000004,65.66,922,16.3 +2013,8,8,18,30,70,69,7,1.9000000000000001,31.1,78.18,922,19.1 +2013,8,8,19,30,0,0,0,1.9000000000000001,29,90,923,18.900000000000002 +2013,8,8,20,30,0,0,0,2.3000000000000003,28.3,102.10000000000001,923,17.6 +2013,8,8,21,30,0,0,0,2.7,27.8,112.76,924,16.6 +2013,8,8,22,30,0,0,0,3.1,27.1,121.86,924,15.8 +2013,8,8,23,30,0,0,0,3.4000000000000004,26.400000000000002,128.53,924,15.3 +2013,8,9,0,30,0,0,0,3.4000000000000004,25.6,131.73,924,15 +2013,8,9,1,30,0,0,0,3.3000000000000003,25,130.77,924,14.9 +2013,8,9,2,30,0,0,0,3.1,24.3,125.87,925,14.8 +2013,8,9,3,30,0,0,0,3,23.6,117.98,925,14.9 +2013,8,9,4,30,0,0,0,3,22.900000000000002,108.08,925,15.3 +2013,8,9,5,30,0,0,0,3,22.700000000000003,96.92,926,16.2 +2013,8,9,6,30,46,36,108,3.7,23.900000000000002,84.85000000000001,926,17.2 +2013,8,9,7,30,230,93,456,4.2,26.200000000000003,72.54,927,18.6 +2013,8,9,8,30,443,123,638,4,29,59.93,927,19.3 +2013,8,9,9,30,641,142,735,3.3000000000000003,31.5,47.32,927,19.200000000000003 +2013,8,9,10,30,802,156,789,2.4000000000000004,33.5,35.050000000000004,927,18.7 +2013,8,9,11,30,911,163,819,1.4000000000000001,34.9,24.01,927,18.5 +2013,8,9,12,30,978,118,900,0.6000000000000001,35.800000000000004,17.080000000000002,927,18.2 +2013,8,9,13,30,964,119,896,0.6000000000000001,36.300000000000004,19.44,926,17.8 +2013,8,9,14,30,883,115,876,1.2000000000000002,36.4,28.88,926,17.400000000000002 +2013,8,9,15,30,744,114,832,1.8,36,40.67,926,17.1 +2013,8,9,16,30,476,229,413,2.3000000000000003,35.1,53.17,926,16.900000000000002 +2013,8,9,17,30,292,144,361,2.6,34.5,65.83,926,16.900000000000002 +2013,8,9,18,30,145,54,452,2.3000000000000003,31.400000000000002,78.36,927,17.400000000000002 +2013,8,9,19,30,0,0,0,2.5,29.400000000000002,90.16,928,18.400000000000002 +2013,8,9,20,30,0,0,0,3.1,28.200000000000003,102.31,929,18.5 +2013,8,9,21,30,0,0,0,3.3000000000000003,27.3,113,930,18.6 +2013,8,9,22,30,0,0,0,3.3000000000000003,26.3,122.12,930,18.7 +2013,8,9,23,30,0,0,0,3.3000000000000003,25.5,128.82,930,18.8 +2013,8,10,0,30,0,0,0,3.2,24.700000000000003,132.02,930,18.7 +2013,8,10,1,30,0,0,0,3.1,23.900000000000002,131.05,931,18.6 +2013,8,10,2,30,0,0,0,3,23.200000000000003,126.12,931,18.400000000000002 +2013,8,10,3,30,0,0,0,3,22.6,118.18,931,18.3 +2013,8,10,4,30,0,0,0,3.1,22,108.25,931,18.1 +2013,8,10,5,30,0,0,0,3.4000000000000004,21.700000000000003,97.07000000000001,932,18 +2013,8,10,6,30,48,31,197,4.2,22.6,84.97,932,18.1 +2013,8,10,7,30,236,74,542,4.800000000000001,24.6,72.65,933,18.1 +2013,8,10,8,30,172,167,11,4.800000000000001,26.8,60.04,933,17.3 +2013,8,10,9,30,268,251,25,4.6000000000000005,28.8,47.43,933,17 +2013,8,10,10,30,278,265,16,4.3,30.6,35.19,933,16.8 +2013,8,10,11,30,609,464,159,3.9000000000000004,32.1,24.2,932,16.7 +2013,8,10,12,30,973,123,890,3.7,33.300000000000004,17.36,931,16.7 +2013,8,10,13,30,959,118,893,3.5,34.1,19.72,930,16.7 +2013,8,10,14,30,881,111,881,3.4000000000000004,34.300000000000004,29.09,930,16.7 +2013,8,10,15,30,745,101,852,3.4000000000000004,34.2,40.85,929,16.6 +2013,8,10,16,30,566,89,800,3.4000000000000004,33.5,53.34,929,16.5 +2013,8,10,17,30,357,72,701,3.3000000000000003,33,66,929,16.5 +2013,8,10,18,30,146,48,493,2.2,30,78.54,929,16.7 +2013,8,10,19,30,0,0,0,1.7000000000000002,28,90.86,930,17.7 +2013,8,10,20,30,0,0,0,2,27.1,102.53,931,17.6 +2013,8,10,21,30,0,0,0,2.2,26.400000000000002,113.24000000000001,931,17.5 +2013,8,10,22,30,0,0,0,2.2,25.6,122.39,931,17.5 +2013,8,10,23,30,0,0,0,2,24.900000000000002,129.11,931,17.5 +2013,8,11,0,30,0,0,0,1.7000000000000002,24.200000000000003,132.32,931,17.5 +2013,8,11,1,30,0,0,0,1.5,23.5,131.33,931,17.6 +2013,8,11,2,30,0,0,0,1.3,22.900000000000002,126.36,931,17.7 +2013,8,11,3,30,0,0,0,1.2000000000000002,22.3,118.39,930,17.900000000000002 +2013,8,11,4,30,0,0,0,1.1,21.8,108.42,931,18.1 +2013,8,11,5,30,0,0,0,1.4000000000000001,21.900000000000002,97.21000000000001,931,18.3 +2013,8,11,6,30,48,30,209,1.8,23.6,85.09,931,18.5 +2013,8,11,7,30,236,72,553,1.8,26.6,72.77,932,18.900000000000002 +2013,8,11,8,30,450,96,710,1.6,29.700000000000003,60.15,932,18.900000000000002 +2013,8,11,9,30,648,112,794,1.4000000000000001,31.900000000000002,47.550000000000004,932,18.5 +2013,8,11,10,30,810,123,842,1.4000000000000001,33.6,35.33,931,18 +2013,8,11,11,30,921,131,867,1.7000000000000002,34.800000000000004,24.400000000000002,930,17.5 +2013,8,11,12,30,973,123,892,2.1,35.7,17.650000000000002,930,17 +2013,8,11,13,30,658,482,188,2.5,36.300000000000004,20,929,16.5 +2013,8,11,14,30,683,414,308,2.8000000000000003,36.300000000000004,29.32,928,16.2 +2013,8,11,15,30,478,364,152,3.2,36,41.050000000000004,928,15.9 +2013,8,11,16,30,544,132,693,3.5,35.1,53.52,928,15.600000000000001 +2013,8,11,17,30,304,129,433,3.5,34.6,66.18,928,15.5 +2013,8,11,18,30,111,66,232,2.7,31.700000000000003,78.72,928,16 +2013,8,11,19,30,0,0,0,2.4000000000000004,30.1,91.06,929,17.1 +2013,8,11,20,30,0,0,0,2.7,29.400000000000002,102.75,929,17.400000000000002 +2013,8,11,21,30,0,0,0,3,28.6,113.48,930,17.6 +2013,8,11,22,30,0,0,0,3.2,27.8,122.66,930,17.7 +2013,8,11,23,30,0,0,0,3.2,26.900000000000002,129.4,930,17.7 +2013,8,12,0,30,0,0,0,3.1,25.900000000000002,132.62,930,17.7 +2013,8,12,1,30,0,0,0,3.2,25.1,131.61,930,17.7 +2013,8,12,2,30,0,0,0,3,24.400000000000002,126.61,929,17.8 +2013,8,12,3,30,0,0,0,2.8000000000000003,23.700000000000003,118.60000000000001,929,17.900000000000002 +2013,8,12,4,30,0,0,0,2.6,23,108.60000000000001,930,18.2 +2013,8,12,5,30,0,0,0,2.8000000000000003,22.8,97.36,930,18.400000000000002 +2013,8,12,6,30,49,27,257,3.6,23.900000000000002,85.21000000000001,930,18.6 +2013,8,12,7,30,241,63,605,4.2,26.3,72.88,931,18.8 +2013,8,12,8,30,459,82,761,3.9000000000000004,29.1,60.26,931,18.400000000000002 +2013,8,12,9,30,661,93,843,3.4000000000000004,31.400000000000002,47.660000000000004,931,17.6 +2013,8,12,10,30,823,100,887,3.2,33.2,35.47,930,16.8 +2013,8,12,11,30,935,103,915,3,34.6,24.6,930,16.2 +2013,8,12,12,30,986,97,934,3,35.6,17.94,929,15.700000000000001 +2013,8,12,13,30,968,96,930,3.1,36.1,20.28,928,15.4 +2013,8,12,14,30,887,92,914,3.1,36.2,29.55,927,15.200000000000001 +2013,8,12,15,30,749,86,882,3.1,35.800000000000004,41.24,927,15.200000000000001 +2013,8,12,16,30,567,77,827,3.1,35,53.71,927,15.3 +2013,8,12,17,30,355,64,727,3.1,34.4,66.36,927,15.5 +2013,8,12,18,30,143,43,519,2.2,31.400000000000002,78.91,927,16 +2013,8,12,19,30,0,0,0,2,29.5,91.26,928,17.3 +2013,8,12,20,30,0,0,0,2.5,28.700000000000003,102.97,928,17.400000000000002 +2013,8,12,21,30,0,0,0,2.9000000000000004,28.1,113.73,929,17.5 +2013,8,12,22,30,0,0,0,3,27.400000000000002,122.93,929,17.6 +2013,8,12,23,30,0,0,0,3,26.8,129.7,929,17.5 +2013,8,13,0,30,0,0,0,3,26.1,132.93,928,17.3 +2013,8,13,1,30,0,0,0,3,25.5,131.9,928,17.1 +2013,8,13,2,30,0,0,0,2.8000000000000003,24.8,126.86,928,16.900000000000002 +2013,8,13,3,30,0,0,0,2.7,24.3,118.8,929,16.7 +2013,8,13,4,30,0,0,0,2.7,23.900000000000002,108.77,929,16.6 +2013,8,13,5,30,0,0,0,3,23.8,97.5,930,16.7 +2013,8,13,6,30,48,24,293,4.1000000000000005,24.900000000000002,85.34,930,17.1 +2013,8,13,7,30,240,55,634,5,27.1,73,930,17.8 +2013,8,13,8,30,455,71,776,4.7,29.5,60.370000000000005,930,17.8 +2013,8,13,9,30,654,83,850,3.8000000000000003,31.5,47.78,930,17.5 +2013,8,13,10,30,815,90,892,2.9000000000000004,33,35.61,930,17.400000000000002 +2013,8,13,11,30,926,94,916,2.1,34,24.8,929,17.400000000000002 +2013,8,13,12,30,973,106,913,1.4000000000000001,34.6,18.23,929,17.400000000000002 +2013,8,13,13,30,956,104,910,0.8,35,20.57,928,17.2 +2013,8,13,14,30,876,101,893,0.8,35,29.78,927,17.1 +2013,8,13,15,30,730,119,815,1.2000000000000002,34.800000000000004,41.45,927,16.900000000000002 +2013,8,13,16,30,548,106,749,1.7000000000000002,34.2,53.9,926,16.6 +2013,8,13,17,30,338,87,632,2,33.7,66.55,926,16.6 +2013,8,13,18,30,131,54,404,1.7000000000000002,30.6,79.11,927,18.400000000000002 +2013,8,13,19,30,0,0,0,2.1,28.900000000000002,91.47,927,19.3 +2013,8,13,20,30,0,0,0,2.8000000000000003,28.200000000000003,103.2,928,18.8 +2013,8,13,21,30,0,0,0,3.2,27.6,113.98,928,18.8 +2013,8,13,22,30,0,0,0,3.3000000000000003,26.900000000000002,123.21000000000001,928,19 +2013,8,13,23,30,0,0,0,3.1,26.3,130,929,19.3 +2013,8,14,0,30,0,0,0,2.9000000000000004,25.6,133.24,929,19.5 +2013,8,14,1,30,0,0,0,2.5,24.900000000000002,132.19,929,19.700000000000003 +2013,8,14,2,30,0,0,0,2.1,24.200000000000003,127.11,929,19.8 +2013,8,14,3,30,0,0,0,1.9000000000000001,23.400000000000002,119.01,929,19.900000000000002 +2013,8,14,4,30,0,0,0,1.8,22.8,108.94,929,20 +2013,8,14,5,30,0,0,0,2.1,22.6,97.65,929,20.200000000000003 +2013,8,14,6,30,24,24,0,2.5,23.400000000000002,85.46000000000001,929,20.400000000000002 +2013,8,14,7,30,22,22,0,2.4000000000000004,25.3,73.11,930,20.400000000000002 +2013,8,14,8,30,21,21,0,1.8,27.3,60.480000000000004,930,20 +2013,8,14,9,30,38,38,0,2.1,28.900000000000002,47.9,930,19.6 +2013,8,14,10,30,204,197,9,3.1,29.5,35.76,930,19.400000000000002 +2013,8,14,11,30,544,450,103,3.8000000000000003,29.400000000000002,25.01,930,19.5 +2013,8,14,12,30,528,458,73,4,29,18.52,930,19.8 +2013,8,14,13,30,347,328,21,3.8000000000000003,28.6,20.87,929,19.900000000000002 +2013,8,14,14,30,544,432,129,3.3000000000000003,28.3,30.02,929,19.900000000000002 +2013,8,14,15,30,688,231,612,2.9000000000000004,28.1,41.65,928,19.700000000000003 +2013,8,14,16,30,546,95,770,2.7,27.900000000000002,54.09,928,19.5 +2013,8,14,17,30,339,76,667,2.6,27.700000000000003,66.74,928,19.3 +2013,8,14,18,30,132,48,450,1.7000000000000002,25.900000000000002,79.3,929,19.6 +2013,8,14,19,30,0,0,0,1.2000000000000002,24.700000000000003,91.68,929,20.200000000000003 +2013,8,14,20,30,0,0,0,1.2000000000000002,24,103.43,930,20 +2013,8,14,21,30,0,0,0,1.3,23.400000000000002,114.23,930,19.8 +2013,8,14,22,30,0,0,0,1.5,22.900000000000002,123.5,930,19.6 +2013,8,14,23,30,0,0,0,1.5,22.5,130.31,930,19.700000000000003 +2013,8,15,0,30,0,0,0,1.5,22,133.55,929,19.8 +2013,8,15,1,30,0,0,0,1.3,21.6,132.48,929,20 +2013,8,15,2,30,0,0,0,1.1,21.1,127.36,929,20.200000000000003 +2013,8,15,3,30,0,0,0,0.8,20.700000000000003,119.22,929,20.3 +2013,8,15,4,30,0,0,0,0.6000000000000001,20.400000000000002,109.12,930,20.400000000000002 +2013,8,15,5,30,0,0,0,0.7000000000000001,20.6,97.8,930,20.6 +2013,8,15,6,30,25,25,7,0.9,21.8,85.58,930,20.700000000000003 +2013,8,15,7,30,68,68,0,0.6000000000000001,24,73.22,930,20.8 +2013,8,15,8,30,230,201,60,0.6000000000000001,26.6,60.6,930,19.900000000000002 +2013,8,15,9,30,647,99,818,1.1,28.6,48.02,930,18.900000000000002 +2013,8,15,10,30,701,315,476,1.4000000000000001,30,35.9,930,18.5 +2013,8,15,11,30,837,373,513,1.8,31.1,25.22,929,18.3 +2013,8,15,12,30,816,423,416,2.1,31.8,18.82,929,18.1 +2013,8,15,13,30,877,387,526,2.4000000000000004,32.1,21.17,928,17.900000000000002 +2013,8,15,14,30,875,111,885,2.6,32,30.27,928,17.6 +2013,8,15,15,30,732,115,828,2.9000000000000004,31.5,41.87,928,17.400000000000002 +2013,8,15,16,30,550,101,770,3,30.6,54.29,928,17.400000000000002 +2013,8,15,17,30,338,81,657,3.1,30.1,66.94,928,17.7 +2013,8,15,18,30,128,51,425,2.4000000000000004,27.200000000000003,79.5,928,18.7 +2013,8,15,19,30,0,0,0,2.3000000000000003,25.5,91.9,929,19.5 +2013,8,15,20,30,0,0,0,2.4000000000000004,24.6,103.66,929,19.6 +2013,8,15,21,30,0,0,0,2.4000000000000004,23.900000000000002,114.49000000000001,929,19.8 +2013,8,15,22,30,0,0,0,2.3000000000000003,23.3,123.78,929,19.8 +2013,8,15,23,30,0,0,0,2.2,22.700000000000003,130.62,929,19.8 +2013,8,16,0,30,0,0,0,2.2,22.1,133.87,929,19.900000000000002 +2013,8,16,1,30,0,0,0,2,21.5,132.78,929,20 +2013,8,16,2,30,0,0,0,1.8,21,127.62,929,20.3 +2013,8,16,3,30,0,0,0,1.6,20.6,119.43,929,20.5 +2013,8,16,4,30,0,0,0,1.5,20.3,109.29,929,20.3 +2013,8,16,5,30,0,0,0,1.7000000000000002,20.5,97.94,930,20.5 +2013,8,16,6,30,18,18,0,2.3000000000000003,21.8,85.71000000000001,930,20.900000000000002 +2013,8,16,7,30,149,110,135,2.6,24.200000000000003,73.34,930,21.1 +2013,8,16,8,30,21,21,0,2.3000000000000003,26.900000000000002,60.71,930,20.8 +2013,8,16,9,30,72,72,0,1.7000000000000002,29.1,48.14,930,19.5 +2013,8,16,10,30,562,396,205,1.8,30.6,36.050000000000004,930,18.5 +2013,8,16,11,30,922,115,894,2.5,31.5,25.43,929,17.900000000000002 +2013,8,16,12,30,976,111,915,3,32,19.13,929,17.6 +2013,8,16,13,30,961,108,917,3.4000000000000004,31.8,21.47,929,17.6 +2013,8,16,14,30,880,104,900,3.6,31.1,30.52,928,17.8 +2013,8,16,15,30,741,96,869,3.6,30.3,42.08,928,18.1 +2013,8,16,16,30,556,86,809,3.4000000000000004,29.3,54.49,928,18.2 +2013,8,16,17,30,343,71,700,3.3000000000000003,28.700000000000003,67.14,928,18.3 +2013,8,16,18,30,129,45,472,1.7000000000000002,25.6,79.71000000000001,929,19.5 +2013,8,16,19,30,0,0,0,1.3,23.900000000000002,92.12,930,20.3 +2013,8,16,20,30,0,0,0,1.3,23.1,103.9,930,19.700000000000003 +2013,8,16,21,30,0,0,0,1.4000000000000001,22.5,114.75,931,19.200000000000003 +2013,8,16,22,30,0,0,0,1.4000000000000001,21.900000000000002,124.07000000000001,931,18.6 +2013,8,16,23,30,0,0,0,1.4000000000000001,21.3,130.93,931,18.3 +2013,8,17,0,30,0,0,0,1.4000000000000001,20.700000000000003,134.19,931,18 +2013,8,17,1,30,0,0,0,1.4000000000000001,20.200000000000003,133.08,931,17.900000000000002 +2013,8,17,2,30,0,0,0,1.5,19.6,127.87,931,17.8 +2013,8,17,3,30,0,0,0,1.5,19,119.65,931,17.7 +2013,8,17,4,30,0,0,0,1.4000000000000001,18.400000000000002,109.46000000000001,931,17.6 +2013,8,17,5,30,0,0,0,1.7000000000000002,18.2,98.09,931,17.5 +2013,8,17,6,30,41,25,228,2.5,19.5,85.83,932,17.400000000000002 +2013,8,17,7,30,230,68,570,2.9000000000000004,22,73.45,932,17 +2013,8,17,8,30,444,94,718,2.7,24.900000000000002,60.82,932,16.7 +2013,8,17,9,30,643,112,798,2.5,27.8,48.27,932,16.400000000000002 +2013,8,17,10,30,805,125,844,2.5,29.900000000000002,36.21,931,15.4 +2013,8,17,11,30,914,133,867,2.6,31.3,25.64,931,14.9 +2013,8,17,12,30,964,130,884,2.7,32.2,19.43,930,14.700000000000001 +2013,8,17,13,30,944,133,873,2.8000000000000003,32.6,21.78,929,14.700000000000001 +2013,8,17,14,30,858,136,840,3,32.4,30.77,928,14.600000000000001 +2013,8,17,15,30,716,131,791,3.3000000000000003,31.5,42.300000000000004,928,14.600000000000001 +2013,8,17,16,30,531,118,715,3.7,30.200000000000003,54.7,928,14.8 +2013,8,17,17,30,323,93,596,3.9000000000000004,29.5,67.35,928,15.100000000000001 +2013,8,17,18,30,118,55,364,3.1,26.6,79.92,928,15.700000000000001 +2013,8,17,19,30,0,0,0,2.5,25,92.34,929,16.2 +2013,8,17,20,30,0,0,0,2.2,24,104.14,929,16.3 +2013,8,17,21,30,0,0,0,2.1,23.3,115.02,929,16.3 +2013,8,17,22,30,0,0,0,2.1,22.8,124.37,930,16.1 +2013,8,17,23,30,0,0,0,2.2,22.200000000000003,131.25,930,15.700000000000001 +2013,8,18,0,30,0,0,0,2.3000000000000003,21.6,134.51,930,15.4 +2013,8,18,1,30,0,0,0,2.2,21,133.38,930,14.9 +2013,8,18,2,30,0,0,0,2.1,20.3,128.13,930,14.600000000000001 +2013,8,18,3,30,0,0,0,2.2,19.900000000000002,119.86,930,14.4 +2013,8,18,4,30,0,0,0,2.2,19.6,109.64,930,14.3 +2013,8,18,5,30,0,0,0,2.3000000000000003,19.5,98.23,930,14.4 +2013,8,18,6,30,31,25,84,2.4000000000000004,20.200000000000003,85.95,931,14.5 +2013,8,18,7,30,207,109,346,2.8000000000000003,22.1,73.57000000000001,931,14.5 +2013,8,18,8,30,416,158,531,3.3000000000000003,24.700000000000003,60.94,932,13.700000000000001 +2013,8,18,9,30,616,180,657,3.4000000000000004,27.3,48.39,932,12.9 +2013,8,18,10,30,782,188,738,3.2,29.400000000000002,36.36,931,12.8 +2013,8,18,11,30,896,191,783,3.2,31,25.86,931,12.9 +2013,8,18,12,30,949,179,818,3.3000000000000003,32.2,19.740000000000002,930,13.100000000000001 +2013,8,18,13,30,831,411,453,3.6,33,22.1,929,13.3 +2013,8,18,14,30,852,163,805,3.9000000000000004,33.2,31.03,929,13.3 +2013,8,18,15,30,715,148,770,4.3,32.800000000000004,42.53,928,13.3 +2013,8,18,16,30,534,125,710,4.5,31.900000000000002,54.910000000000004,928,13.3 +2013,8,18,17,30,323,97,594,4.6000000000000005,31.200000000000003,67.56,928,13.3 +2013,8,18,18,30,116,54,364,3.9000000000000004,27.700000000000003,80.13,928,13.8 +2013,8,18,19,30,0,0,0,3.9000000000000004,25.8,92.57000000000001,928,14 +2013,8,18,20,30,0,0,0,4,24.6,104.39,929,14.100000000000001 +2013,8,18,21,30,0,0,0,3.8000000000000003,23.8,115.29,929,14.3 +2013,8,18,22,30,0,0,0,3.6,23,124.67,929,14.4 +2013,8,18,23,30,0,0,0,3.4000000000000004,22.400000000000002,131.58,929,14.5 +2013,8,19,0,30,0,0,0,3.1,21.8,134.84,929,14.5 +2013,8,19,1,30,0,0,0,2.7,21.3,133.68,929,14.600000000000001 +2013,8,19,2,30,0,0,0,2.7,20.900000000000002,128.39000000000001,929,14.700000000000001 +2013,8,19,3,30,0,0,0,3,20.8,120.07000000000001,929,14.8 +2013,8,19,4,30,0,0,0,3.2,20.700000000000003,109.81,929,14.8 +2013,8,19,5,30,0,0,0,3.3000000000000003,20.6,98.38,930,15 +2013,8,19,6,30,31,25,90,3.6,21.3,86.07000000000001,930,15.100000000000001 +2013,8,19,7,30,206,104,362,4.1000000000000005,23,73.68,930,15.200000000000001 +2013,8,19,8,30,413,156,531,4.800000000000001,25.3,61.050000000000004,931,14.8 +2013,8,19,9,30,610,186,640,5.300000000000001,27.5,48.52,931,14.200000000000001 +2013,8,19,10,30,774,202,711,5.4,29.5,36.52,931,13.700000000000001 +2013,8,19,11,30,886,206,757,5.2,31.1,26.09,930,13.600000000000001 +2013,8,19,12,30,925,239,730,4.9,32.4,20.06,929,13.700000000000001 +2013,8,19,13,30,912,221,747,4.6000000000000005,33.300000000000004,22.41,928,13.9 +2013,8,19,14,30,834,201,742,4.3,33.7,31.3,928,14.100000000000001 +2013,8,19,15,30,701,176,715,4,33.5,42.76,927,14.100000000000001 +2013,8,19,16,30,517,147,647,3.7,32.7,55.13,927,14.200000000000001 +2013,8,19,17,30,309,111,524,3.6,32.1,67.77,927,14.200000000000001 +2013,8,19,18,30,108,59,292,2.3000000000000003,28.400000000000002,80.35000000000001,927,15.4 +2013,8,19,19,30,0,0,0,2.4000000000000004,26.6,92.8,927,15.5 +2013,8,19,20,30,0,0,0,2.8000000000000003,25.900000000000002,104.64,928,15.3 +2013,8,19,21,30,0,0,0,3.1,25.200000000000003,115.57000000000001,928,15.4 +2013,8,19,22,30,0,0,0,3.4000000000000004,24.6,124.97,928,15.600000000000001 +2013,8,19,23,30,0,0,0,3.5,23.900000000000002,131.9,928,15.8 +2013,8,20,0,30,0,0,0,3.5,23.3,135.18,928,15.9 +2013,8,20,1,30,0,0,0,3.4000000000000004,22.8,133.99,928,16 +2013,8,20,2,30,0,0,0,3.3000000000000003,22.400000000000002,128.65,928,16 +2013,8,20,3,30,0,0,0,3.1,22.1,120.28,928,15.9 +2013,8,20,4,30,0,0,0,2.9000000000000004,21.900000000000002,109.99000000000001,929,15.8 +2013,8,20,5,30,0,0,0,2.8000000000000003,21.900000000000002,98.53,929,15.700000000000001 +2013,8,20,6,30,26,22,57,3,22.400000000000002,86.2,930,15.600000000000001 +2013,8,20,7,30,201,108,334,3.7,24,73.8,930,15.5 +2013,8,20,8,30,416,146,560,4.2,26.8,61.17,930,15.200000000000001 +2013,8,20,9,30,620,159,698,3.9000000000000004,29.700000000000003,48.64,930,14.600000000000001 +2013,8,20,10,30,789,162,781,3.3000000000000003,32,36.68,929,14.4 +2013,8,20,11,30,904,165,824,3,33.6,26.310000000000002,929,14.600000000000001 +2013,8,20,12,30,951,172,831,3,34.6,20.38,928,14.700000000000001 +2013,8,20,13,30,935,167,832,3.3000000000000003,35.2,22.740000000000002,927,14.600000000000001 +2013,8,20,14,30,811,292,609,3.6,35.2,31.57,927,14.4 +2013,8,20,15,30,707,164,742,4,34.6,43,926,14.200000000000001 +2013,8,20,16,30,523,139,674,4.1000000000000005,33.6,55.35,926,14 +2013,8,20,17,30,312,106,550,4.2,32.9,67.99,926,13.700000000000001 +2013,8,20,18,30,108,56,318,3.4000000000000004,29.3,80.57000000000001,927,13.9 +2013,8,20,19,30,0,0,0,3.6,27.400000000000002,93.03,928,13.8 +2013,8,20,20,30,0,0,0,3.9000000000000004,26.200000000000003,104.89,928,13.3 +2013,8,20,21,30,0,0,0,3.8000000000000003,25.1,115.84,929,13.100000000000001 +2013,8,20,22,30,0,0,0,3.5,24.1,125.28,929,13 +2013,8,20,23,30,0,0,0,3.3000000000000003,23.200000000000003,132.23,929,13 +2013,8,21,0,30,0,0,0,3.1,22.400000000000002,135.51,929,13.200000000000001 +2013,8,21,1,30,0,0,0,2.8000000000000003,21.700000000000003,134.3,929,13.700000000000001 +2013,8,21,2,30,0,0,0,2.7,21.1,128.91,930,14.4 +2013,8,21,3,30,0,0,0,2.5,20.400000000000002,120.5,930,15.200000000000001 +2013,8,21,4,30,0,0,0,2.2,19.8,110.16,930,15.8 +2013,8,21,5,30,0,0,0,2.2,19.6,98.67,930,16.2 +2013,8,21,6,30,35,23,186,2.6,21,86.32000000000001,931,16.5 +2013,8,21,7,30,224,71,554,2.7,24.1,73.92,931,17.1 +2013,8,21,8,30,445,96,726,2.3000000000000003,27.200000000000003,61.28,931,16.3 +2013,8,21,9,30,650,111,818,2.2,29.3,48.77,931,14.200000000000001 +2013,8,21,10,30,815,120,868,2.3000000000000003,30.700000000000003,36.84,931,13.5 +2013,8,21,11,30,926,123,897,2.7,31.8,26.54,931,13.200000000000001 +2013,8,21,12,30,933,293,684,2.9000000000000004,32.5,20.7,930,13.200000000000001 +2013,8,21,13,30,871,369,546,3.1,32.800000000000004,23.06,929,13.4 +2013,8,21,14,30,636,414,262,3.1,32.9,31.85,929,13.700000000000001 +2013,8,21,15,30,460,349,152,3.2,32.7,43.24,928,14 +2013,8,21,16,30,350,253,171,3.3000000000000003,32,55.57,928,14.200000000000001 +2013,8,21,17,30,233,144,241,3.3000000000000003,31.5,68.21000000000001,928,14.600000000000001 +2013,8,21,18,30,44,44,0,2.5,28.700000000000003,80.8,928,15.600000000000001 +2013,8,21,19,30,0,0,0,2.6,27.200000000000003,93.27,929,16.5 +2013,8,21,20,30,0,0,0,3.1,26.700000000000003,105.15,930,16.8 +2013,8,21,21,30,0,0,0,3.3000000000000003,26,116.13,930,17.2 +2013,8,21,22,30,0,0,0,3.4000000000000004,25.3,125.59,930,17.400000000000002 +2013,8,21,23,30,0,0,0,3.3000000000000003,24.700000000000003,132.57,930,17.5 +2013,8,22,0,30,0,0,0,3.3000000000000003,24.1,135.85,930,17.5 +2013,8,22,1,30,0,0,0,3.1,23.5,134.61,930,17.7 +2013,8,22,2,30,0,0,0,2.8000000000000003,23,129.18,930,18 +2013,8,22,3,30,0,0,0,2.6,22.400000000000002,120.71000000000001,930,18.400000000000002 +2013,8,22,4,30,0,0,0,2.3000000000000003,21.900000000000002,110.34,931,18.8 +2013,8,22,5,30,0,0,0,2.3000000000000003,21.700000000000003,98.82000000000001,931,19.1 +2013,8,22,6,30,33,22,188,2.8000000000000003,22.900000000000002,86.44,931,19.3 +2013,8,22,7,30,218,65,557,3.2,25.400000000000002,74.03,932,19.200000000000003 +2013,8,22,8,30,434,87,725,2.9000000000000004,27.700000000000003,61.4,932,18.8 +2013,8,22,9,30,633,100,811,2.7,29.400000000000002,48.9,932,18.2 +2013,8,22,10,30,796,108,862,2.9000000000000004,30.700000000000003,37,931,17.7 +2013,8,22,11,30,907,112,890,3.3000000000000003,31.6,26.77,930,17.3 +2013,8,22,12,30,951,125,884,3.5,32.300000000000004,21.02,930,16.900000000000002 +2013,8,22,13,30,932,124,881,3.5,32.6,23.39,929,16.6 +2013,8,22,14,30,850,118,864,3.5,32.6,32.13,928,16.400000000000002 +2013,8,22,15,30,714,102,843,3.4000000000000004,32.4,43.49,927,16.2 +2013,8,22,16,30,452,200,448,3.2,31.900000000000002,55.800000000000004,927,16 +2013,8,22,17,30,315,73,658,3.1,31.6,68.43,927,15.8 +2013,8,22,18,30,107,43,407,1.5,28.8,81.02,927,16.900000000000002 +2013,8,22,19,30,0,0,0,1.4000000000000001,27.3,93.51,928,17.2 +2013,8,22,20,30,0,0,0,1.8,26.700000000000003,105.41,928,16.7 +2013,8,22,21,30,0,0,0,2.4000000000000004,26.1,116.41,929,16.5 +2013,8,22,22,30,0,0,0,3,25.6,125.9,929,16.400000000000002 +2013,8,22,23,30,0,0,0,3.3000000000000003,25.1,132.91,929,16.400000000000002 +2013,8,23,0,30,0,0,0,3.3000000000000003,24.700000000000003,136.19,929,16.6 +2013,8,23,1,30,0,0,0,3.1,24.3,134.92000000000002,929,16.7 +2013,8,23,2,30,0,0,0,2.7,23.900000000000002,129.44,929,16.7 +2013,8,23,3,30,0,0,0,2.2,23.5,120.93,929,16.7 +2013,8,23,4,30,0,0,0,1.8,23,110.51,929,16.7 +2013,8,23,5,30,0,0,0,1.8,23,98.96000000000001,929,16.7 +2013,8,23,6,30,31,21,163,2.2,23.900000000000002,86.57000000000001,930,16.7 +2013,8,23,7,30,214,68,536,2.5,26.3,74.15,930,16.8 +2013,8,23,8,30,429,90,710,2,29.3,61.52,930,16.8 +2013,8,23,9,30,630,103,804,1.5,31.400000000000002,49.03,930,16.6 +2013,8,23,10,30,793,112,854,2,32.6,37.17,930,16.400000000000002 +2013,8,23,11,30,832,355,535,2.7,33.4,27.01,929,16.3 +2013,8,23,12,30,894,364,569,3.2,33.7,21.35,928,16.3 +2013,8,23,13,30,937,105,909,3.5,33.5,23.73,928,16.2 +2013,8,23,14,30,853,103,888,3.7,32.9,32.410000000000004,927,16.2 +2013,8,23,15,30,710,96,850,3.7,32.2,43.74,927,16.3 +2013,8,23,16,30,525,85,787,3.7,31.5,56.04,927,16.5 +2013,8,23,17,30,238,136,280,3.6,31.1,68.66,927,16.8 +2013,8,23,18,30,71,53,116,2.4000000000000004,28.400000000000002,81.25,927,17.8 +2013,8,23,19,30,0,0,0,2.3000000000000003,27,93.76,927,18.5 +2013,8,23,20,30,0,0,0,2.5,26.400000000000002,105.67,928,18.5 +2013,8,23,21,30,0,0,0,2.4000000000000004,25.700000000000003,116.7,928,18.7 +2013,8,23,22,30,0,0,0,2.3000000000000003,25.1,126.22,929,19 +2013,8,23,23,30,0,0,0,2,24.5,133.25,929,19.1 +2013,8,24,0,30,0,0,0,1.8,23.900000000000002,136.54,929,19.200000000000003 +2013,8,24,1,30,0,0,0,1.5,23.3,135.23,929,19.3 +2013,8,24,2,30,0,0,0,1.4000000000000001,22.8,129.7,929,19.3 +2013,8,24,3,30,0,0,0,1.3,22.3,121.14,929,19.400000000000002 +2013,8,24,4,30,0,0,0,1.2000000000000002,21.900000000000002,110.69,929,19.400000000000002 +2013,8,24,5,30,0,0,0,1.3,21.8,99.11,930,19.3 +2013,8,24,6,30,32,20,198,1.8,23.1,86.69,931,19.3 +2013,8,24,7,30,218,61,579,2.2,26.3,74.27,931,19.1 +2013,8,24,8,30,435,82,742,2,29.5,61.64,931,17.7 +2013,8,24,9,30,636,96,826,1.9000000000000001,31.5,49.17,931,17.2 +2013,8,24,10,30,798,106,870,2.3000000000000003,32.9,37.34,931,16.8 +2013,8,24,11,30,841,338,566,2.8000000000000003,33.9,27.25,930,16.400000000000002 +2013,8,24,12,30,317,300,18,3.3000000000000003,34.6,21.68,929,16.1 +2013,8,24,13,30,855,375,526,3.7,34.7,24.07,929,15.9 +2013,8,24,14,30,714,345,438,4,34.4,32.7,928,15.8 +2013,8,24,15,30,521,334,261,4.1000000000000005,33.7,43.99,928,15.8 +2013,8,24,16,30,505,122,689,4.1000000000000005,32.6,56.27,928,15.9 +2013,8,24,17,30,293,100,534,4.1000000000000005,32,68.89,928,16.2 +2013,8,24,18,30,91,52,263,2.6,29.5,81.49,929,16.8 +2013,8,24,19,30,0,0,0,1.9000000000000001,28,94,930,17.6 +2013,8,24,20,30,0,0,0,1.6,27.1,105.94,930,17.900000000000002 +2013,8,24,21,30,0,0,0,1.4000000000000001,26.400000000000002,116.99000000000001,931,18.1 +2013,8,24,22,30,0,0,0,1.3,25.8,126.54,931,18.1 +2013,8,24,23,30,0,0,0,1.3,25.200000000000003,133.59,931,18 +2013,8,25,0,30,0,0,0,1.3,24.700000000000003,136.88,931,17.900000000000002 +2013,8,25,1,30,0,0,0,1.3,24.200000000000003,135.55,931,17.8 +2013,8,25,2,30,0,0,0,1.3,23.700000000000003,129.97,931,17.8 +2013,8,25,3,30,0,0,0,1.3,23.1,121.35000000000001,932,17.900000000000002 +2013,8,25,4,30,0,0,0,1.2000000000000002,22.6,110.86,932,17.900000000000002 +2013,8,25,5,30,0,0,0,1.2000000000000002,22.400000000000002,99.25,932,18 +2013,8,25,6,30,26,20,104,1.6,23.700000000000003,86.81,933,18.2 +2013,8,25,7,30,203,84,440,2,26.8,74.39,933,18.2 +2013,8,25,8,30,415,120,622,2.2,29.900000000000002,61.75,933,17.5 +2013,8,25,9,30,614,141,725,2.7,31.700000000000003,49.300000000000004,933,17 +2013,8,25,10,30,777,153,786,3.4000000000000004,33,37.51,933,16.7 +2013,8,25,11,30,333,314,21,4,34,27.490000000000002,932,16.400000000000002 +2013,8,25,12,30,943,135,871,4.3,34.5,22.01,932,16.2 +2013,8,25,13,30,583,463,132,4.5,34.800000000000004,24.41,931,16 +2013,8,25,14,30,756,330,508,4.6000000000000005,34.7,33,930,15.9 +2013,8,25,15,30,234,225,13,4.6000000000000005,34.300000000000004,44.25,930,15.700000000000001 +2013,8,25,16,30,461,167,533,4.6000000000000005,33.4,56.51,930,15.4 +2013,8,25,17,30,308,66,680,4.5,32.800000000000004,69.13,930,15.3 +2013,8,25,18,30,99,38,425,3,29.6,81.72,930,15.4 +2013,8,25,19,30,0,0,0,2.4000000000000004,27.700000000000003,94.25,931,16 +2013,8,25,20,30,0,0,0,2.4000000000000004,26.8,106.2,932,16.1 +2013,8,25,21,30,0,0,0,2.3000000000000003,25.900000000000002,117.28,933,16.2 +2013,8,25,22,30,0,0,0,2.1,25.1,126.86,933,16.3 +2013,8,25,23,30,0,0,0,1.9000000000000001,24.400000000000002,133.94,933,16.400000000000002 +2013,8,26,0,30,0,0,0,1.8,23.8,137.23,933,16.5 +2013,8,26,1,30,0,0,0,1.6,23.200000000000003,135.87,933,16.7 +2013,8,26,2,30,0,0,0,1.4000000000000001,22.5,130.24,933,17.1 +2013,8,26,3,30,0,0,0,1.2000000000000002,22,121.57000000000001,933,17.5 +2013,8,26,4,30,0,0,0,1.2000000000000002,21.5,111.03,933,17.900000000000002 +2013,8,26,5,30,0,0,0,1.5,21.400000000000002,99.4,933,18.2 +2013,8,26,6,30,30,19,206,2.4000000000000004,22.6,86.93,934,18.6 +2013,8,26,7,30,217,56,602,3.2,25,74.5,934,19 +2013,8,26,8,30,437,74,770,3.6,27.3,61.88,934,18.7 +2013,8,26,9,30,640,86,853,4,29.200000000000003,49.44,934,18 +2013,8,26,10,30,805,92,901,4.3,30.8,37.69,934,17.2 +2013,8,26,11,30,916,94,929,4.6000000000000005,32.1,27.740000000000002,933,16.6 +2013,8,26,12,30,830,409,455,4.800000000000001,33,22.35,932,16 +2013,8,26,13,30,942,91,938,4.9,33.5,24.76,931,15.700000000000001 +2013,8,26,14,30,532,416,139,4.9,33.7,33.29,930,15.5 +2013,8,26,15,30,714,81,889,4.800000000000001,33.4,44.51,930,15.4 +2013,8,26,16,30,409,217,350,4.7,32.5,56.76,930,15.4 +2013,8,26,17,30,310,58,714,4.6000000000000005,32,69.36,930,15.4 +2013,8,26,18,30,98,34,457,3.1,29.1,81.96000000000001,930,15.5 +2013,8,26,19,30,0,0,0,2.6,27.5,94.51,930,16.1 +2013,8,26,20,30,0,0,0,2.7,26.6,106.48,931,16.400000000000002 +2013,8,26,21,30,0,0,0,2.7,25.8,117.58,931,16.6 +2013,8,26,22,30,0,0,0,2.6,24.900000000000002,127.19,931,16.900000000000002 +2013,8,26,23,30,0,0,0,2.4000000000000004,24,134.29,931,17.3 +2013,8,27,0,30,0,0,0,2.3000000000000003,23.200000000000003,137.59,931,17.8 +2013,8,27,1,30,0,0,0,1.9000000000000001,22.400000000000002,136.19,931,18.5 +2013,8,27,2,30,0,0,0,1.5,21.700000000000003,130.5,931,19.200000000000003 +2013,8,27,3,30,0,0,0,1.2000000000000002,21.3,121.78,931,19.700000000000003 +2013,8,27,4,30,0,0,0,1.1,21,111.21000000000001,931,20.1 +2013,8,27,5,30,0,0,0,1.3,21,99.55,931,20.3 +2013,8,27,6,30,28,18,177,1.9000000000000001,21.900000000000002,87.05,931,20.400000000000002 +2013,8,27,7,30,210,56,581,2.4000000000000004,23.8,74.62,932,20.3 +2013,8,27,8,30,426,72,753,2.8000000000000003,25.700000000000003,62,931,19.6 +2013,8,27,9,30,547,218,508,3.2,27.200000000000003,49.58,931,19.1 +2013,8,27,10,30,441,373,86,3.5,28.1,37.86,931,19 +2013,8,27,11,30,285,271,16,4,28.1,27.990000000000002,930,19.1 +2013,8,27,12,30,615,474,153,4.6000000000000005,27.700000000000003,22.69,930,19.400000000000002 +2013,8,27,13,30,662,458,225,5.2,27.200000000000003,25.1,929,19.6 +2013,8,27,14,30,712,338,449,5.4,26.700000000000003,33.6,929,19.6 +2013,8,27,15,30,549,311,336,5.4,26.5,44.78,929,19.5 +2013,8,27,16,30,455,163,537,4.9,26.6,57.01,929,19.200000000000003 +2013,8,27,17,30,185,140,129,4.7,26.6,69.61,929,18.900000000000002 +2013,8,27,18,30,54,47,52,3.2,25.700000000000003,82.21000000000001,929,18.6 +2013,8,27,19,30,0,0,0,2.8000000000000003,24.900000000000002,94.76,929,18.3 +2013,8,27,20,30,0,0,0,3.2,24.400000000000002,106.75,929,18 +2013,8,27,21,30,0,0,0,3.6,23.700000000000003,117.88,930,17.8 +2013,8,27,22,30,0,0,0,3.7,23.1,127.51,930,17.6 +2013,8,27,23,30,0,0,0,3.6,22.5,134.65,930,17.400000000000002 +2013,8,28,0,30,0,0,0,3.5,22,137.94,930,17.400000000000002 +2013,8,28,1,30,0,0,0,3.3000000000000003,21.6,136.51,930,17.5 +2013,8,28,2,30,0,0,0,3.1,21.200000000000003,130.77,930,17.6 +2013,8,28,3,30,0,0,0,2.9000000000000004,20.900000000000002,122,930,17.900000000000002 +2013,8,28,4,30,0,0,0,2.7,20.6,111.38,930,18.2 +2013,8,28,5,30,0,0,0,2.7,20.5,99.69,931,18.6 +2013,8,28,6,30,24,20,88,3.4000000000000004,21.400000000000002,87.17,931,19 +2013,8,28,7,30,200,70,496,4.5,23.8,74.74,932,19.5 +2013,8,28,8,30,417,92,694,4.800000000000001,26.5,62.120000000000005,932,19.3 +2013,8,28,9,30,618,106,792,4.5,29,49.72,932,18.6 +2013,8,28,10,30,781,114,847,4.1000000000000005,30.900000000000002,38.04,932,18.1 +2013,8,28,11,30,892,116,881,4.1000000000000005,32.300000000000004,28.25,931,17.6 +2013,8,28,12,30,943,104,911,4.3,33.4,23.03,931,17 +2013,8,28,13,30,923,102,909,4.5,34.1,25.46,930,16.3 +2013,8,28,14,30,839,97,894,4.5,34.300000000000004,33.9,929,15.600000000000001 +2013,8,28,15,30,697,89,861,4.4,33.9,45.050000000000004,929,15 +2013,8,28,16,30,511,77,801,4.2,33.1,57.26,928,14.4 +2013,8,28,17,30,297,61,686,4.1000000000000005,32.5,69.85000000000001,929,13.9 +2013,8,28,18,30,89,34,417,2.3000000000000003,28.700000000000003,82.45,929,14.3 +2013,8,28,19,30,0,0,0,2,26.6,95.02,930,15 +2013,8,28,20,30,0,0,0,2.1,25.700000000000003,107.03,930,14.700000000000001 +2013,8,28,21,30,0,0,0,2.1,24.900000000000002,118.18,931,14.700000000000001 +2013,8,28,22,30,0,0,0,1.9000000000000001,24.1,127.85000000000001,931,14.700000000000001 +2013,8,28,23,30,0,0,0,1.7000000000000002,23.400000000000002,135,931,14.9 +2013,8,29,0,30,0,0,0,1.6,22.8,138.3,931,15 +2013,8,29,1,30,0,0,0,1.6,22.400000000000002,136.84,931,15.200000000000001 +2013,8,29,2,30,0,0,0,1.7000000000000002,22,131.04,931,15.5 +2013,8,29,3,30,0,0,0,1.9000000000000001,21.700000000000003,122.21000000000001,931,15.8 +2013,8,29,4,30,0,0,0,2.1,21.3,111.56,931,16.1 +2013,8,29,5,30,0,0,0,2.4000000000000004,21.3,99.84,932,16.2 +2013,8,29,6,30,27,17,208,3,22.400000000000002,87.3,932,16.400000000000002 +2013,8,29,7,30,214,51,623,3.7,25.400000000000002,74.86,933,16.7 +2013,8,29,8,30,433,70,780,4.1000000000000005,28.8,62.24,933,16.6 +2013,8,29,9,30,635,81,859,3.7,31.200000000000003,49.86,933,16.2 +2013,8,29,10,30,798,90,901,3.3000000000000003,33,38.230000000000004,932,15.9 +2013,8,29,11,30,906,96,922,3.1,34.4,28.5,931,15.600000000000001 +2013,8,29,12,30,950,104,922,2.9000000000000004,35.5,23.38,930,15.3 +2013,8,29,13,30,929,103,918,2.8000000000000003,36.1,25.810000000000002,930,15 +2013,8,29,14,30,843,99,899,2.7,36.300000000000004,34.21,929,14.8 +2013,8,29,15,30,700,92,864,2.6,36,45.32,928,14.600000000000001 +2013,8,29,16,30,510,82,797,2.6,35.2,57.51,928,14.5 +2013,8,29,17,30,294,65,672,2.6,34.6,70.10000000000001,928,14.4 +2013,8,29,18,30,85,35,391,1.8,30.400000000000002,82.7,928,16 +2013,8,29,19,30,0,0,0,2.2,28.5,95.28,929,16.2 +2013,8,29,20,30,0,0,0,2.7,27.700000000000003,107.3,929,15.700000000000001 +2013,8,29,21,30,0,0,0,2.8000000000000003,26.900000000000002,118.48,929,15.700000000000001 +2013,8,29,22,30,0,0,0,2.7,26.1,128.18,929,15.8 +2013,8,29,23,30,0,0,0,2.6,25.400000000000002,135.36,929,15.8 +2013,8,30,0,30,0,0,0,2.5,24.700000000000003,138.66,929,15.9 +2013,8,30,1,30,0,0,0,2.4000000000000004,24.1,137.16,929,15.9 +2013,8,30,2,30,0,0,0,2.4000000000000004,23.6,131.31,929,16 +2013,8,30,3,30,0,0,0,2.3000000000000003,23,122.43,929,16.1 +2013,8,30,4,30,0,0,0,2.1,22.5,111.73,929,16.1 +2013,8,30,5,30,0,0,0,2.3000000000000003,22.200000000000003,99.98,930,16.2 +2013,8,30,6,30,25,17,179,2.8000000000000003,23.400000000000002,87.42,930,16.3 +2013,8,30,7,30,210,57,589,3.1,26.400000000000002,74.98,931,16.400000000000002 +2013,8,30,8,30,429,78,756,2.7,30.1,62.370000000000005,931,16.1 +2013,8,30,9,30,633,92,842,2.2,32.7,50,930,14.700000000000001 +2013,8,30,10,30,797,101,889,2.1,34.2,38.410000000000004,930,14.3 +2013,8,30,11,30,908,105,915,2.1,35.4,28.76,929,13.9 +2013,8,30,12,30,959,99,939,2.3000000000000003,36.2,23.73,929,13.5 +2013,8,30,13,30,938,98,936,2.4000000000000004,36.7,26.17,928,12.9 +2013,8,30,14,30,852,93,921,2.4000000000000004,36.800000000000004,34.53,927,12.4 +2013,8,30,15,30,704,93,874,2.4000000000000004,36.4,45.6,926,12 +2013,8,30,16,30,512,82,807,2.4000000000000004,35.5,57.77,926,11.700000000000001 +2013,8,30,17,30,294,65,681,2.4000000000000004,35,70.35000000000001,926,11.600000000000001 +2013,8,30,18,30,83,35,393,1.3,30.3,82.95,926,14.600000000000001 +2013,8,30,19,30,0,0,0,1.3,28.1,95.55,926,14.8 +2013,8,30,20,30,0,0,0,1.5,27.200000000000003,107.59,927,14.4 +2013,8,30,21,30,0,0,0,1.6,26.5,118.79,927,14.4 +2013,8,30,22,30,0,0,0,1.8,25.900000000000002,128.52,927,14.5 +2013,8,30,23,30,0,0,0,1.9000000000000001,25.400000000000002,135.72,927,14.600000000000001 +2013,8,31,0,30,0,0,0,2.1,24.900000000000002,139.03,927,14.8 +2013,8,31,1,30,0,0,0,2.2,24.5,137.49,926,15 +2013,8,31,2,30,0,0,0,2.3000000000000003,24.1,131.58,926,15.3 +2013,8,31,3,30,0,0,0,2.3000000000000003,23.5,122.64,926,15.600000000000001 +2013,8,31,4,30,0,0,0,2.2,23,111.9,926,15.8 +2013,8,31,5,30,0,0,0,2.3000000000000003,22.700000000000003,100.13,927,15.8 +2013,8,31,6,30,24,17,168,2.8000000000000003,23.700000000000003,87.54,927,15.9 +2013,8,31,7,30,207,59,579,3.1,26.700000000000003,75.11,927,16 +2013,8,31,8,30,428,80,753,2.6,30.700000000000003,62.5,927,15.9 +2013,8,31,9,30,632,94,840,2,33.800000000000004,50.15,927,14.700000000000001 +2013,8,31,10,30,797,103,888,1.8,35.4,38.6,927,14.3 +2013,8,31,11,30,907,108,914,2,36.5,29.03,926,14 +2013,8,31,12,30,948,124,903,2.1,37.300000000000004,24.080000000000002,925,13.700000000000001 +2013,8,31,13,30,926,123,898,2.1,37.7,26.53,924,13.5 +2013,8,31,14,30,838,118,877,2.1,37.7,34.84,924,13.4 +2013,8,31,15,30,688,118,819,2,37.300000000000004,45.88,923,13.200000000000001 +2013,8,31,16,30,495,103,741,2,36.4,58.03,923,13 +2013,8,31,17,30,279,80,599,2,35.800000000000004,70.60000000000001,923,12.9 +2013,8,31,18,30,75,39,303,1.1,31.3,83.21000000000001,923,16 +2013,8,31,19,30,0,0,0,1.3,29.200000000000003,95.81,924,16 +2013,8,31,20,30,0,0,0,1.6,28.400000000000002,107.87,924,15.600000000000001 +2013,8,31,21,30,0,0,0,1.9000000000000001,27.700000000000003,119.10000000000001,924,15.5 +2013,8,31,22,30,0,0,0,2.1,27.1,128.85,924,15.5 +2013,8,31,23,30,0,0,0,2.5,26.5,136.09,924,15.4 +2013,9,1,0,30,0,0,0,2.7,26,139.39000000000001,924,15.5 +2013,9,1,1,30,0,0,0,2.7,25.3,137.82,924,15.600000000000001 +2013,9,1,2,30,0,0,0,2.7,24.700000000000003,131.84,925,15.8 +2013,9,1,3,30,0,0,0,2.8000000000000003,24.1,122.86,925,16.1 +2013,9,1,4,30,0,0,0,2.9000000000000004,23.5,112.08,925,16.400000000000002 +2013,9,1,5,30,0,0,0,3.2,23.200000000000003,100.27,926,16.6 +2013,9,1,6,30,20,16,104,3.5,24,87.66,926,16.7 +2013,9,1,7,30,196,71,488,3.8000000000000003,26.8,75.23,926,16.900000000000002 +2013,9,1,8,30,409,102,668,3.4000000000000004,30.400000000000002,62.620000000000005,927,17 +2013,9,1,9,30,608,122,762,2.3000000000000003,33.4,50.300000000000004,927,16.3 +2013,9,1,10,30,770,136,813,1.1,35.4,38.79,926,15.5 +2013,9,1,11,30,876,147,836,0.9,36.7,29.3,926,15.100000000000001 +2013,9,1,12,30,855,377,526,1.1,37.5,24.43,925,14.9 +2013,9,1,13,30,910,116,891,1.3,37.7,26.900000000000002,924,14.700000000000001 +2013,9,1,14,30,172,166,7,1.4000000000000001,37.7,35.160000000000004,924,14.600000000000001 +2013,9,1,15,30,628,211,602,1.5,37.2,46.17,923,14.4 +2013,9,1,16,30,489,89,762,1.5,36.4,58.300000000000004,923,14.100000000000001 +2013,9,1,17,30,188,129,182,1.5,35.9,70.86,923,14.100000000000001 +2013,9,1,18,30,55,38,151,0.9,32.1,83.46000000000001,924,17 +2013,9,1,19,30,0,0,0,1.1,30.200000000000003,96.08,925,17.8 +2013,9,1,20,30,0,0,0,1.3,29.3,108.16,925,17.3 +2013,9,1,21,30,0,0,0,1.5,28.5,119.41,925,17.3 +2013,9,1,22,30,0,0,0,1.4000000000000001,27.8,129.2,926,17.5 +2013,9,1,23,30,0,0,0,1.1,26.900000000000002,136.46,926,17.8 +2013,9,2,0,30,0,0,0,1,26.200000000000003,139.76,926,18 +2013,9,2,1,30,0,0,0,0.9,25.6,138.15,926,18.2 +2013,9,2,2,30,0,0,0,0.9,25.200000000000003,132.11,926,18.3 +2013,9,2,3,30,0,0,0,0.9,24.8,123.07000000000001,927,18.5 +2013,9,2,4,30,0,0,0,0.9,24.3,112.25,927,18.7 +2013,9,2,5,30,0,0,0,1.1,23.900000000000002,100.42,927,18.7 +2013,9,2,6,30,19,15,93,1.8,24.1,87.78,928,18.7 +2013,9,2,7,30,193,68,495,2.5,25.700000000000003,75.35000000000001,929,18.400000000000002 +2013,9,2,8,30,409,94,689,2.9000000000000004,28.1,62.75,929,18.3 +2013,9,2,9,30,612,108,791,3.3000000000000003,30.400000000000002,50.45,929,18 +2013,9,2,10,30,775,115,849,3.7,32.300000000000004,38.980000000000004,929,17.900000000000002 +2013,9,2,11,30,884,119,880,4.1000000000000005,33.6,29.57,928,17.8 +2013,9,2,12,30,924,138,866,4.2,34.5,24.79,927,17.7 +2013,9,2,13,30,904,131,870,4.4,34.800000000000004,27.26,926,17.7 +2013,9,2,14,30,819,122,856,4.4,34.7,35.49,926,17.5 +2013,9,2,15,30,654,167,706,4.3,34.2,46.45,925,17 +2013,9,2,16,30,487,95,751,4.1000000000000005,33.2,58.56,925,16.5 +2013,9,2,17,30,218,112,330,3.9000000000000004,32.6,71.12,925,16.2 +2013,9,2,18,30,68,35,306,2.2,29.400000000000002,83.72,926,16.8 +2013,9,2,19,30,0,0,0,1.5,27.5,96.35000000000001,927,17.8 +2013,9,2,20,30,0,0,0,1.4000000000000001,26.5,108.44,928,18.2 +2013,9,2,21,30,0,0,0,1.2000000000000002,25.700000000000003,119.72,928,18.3 +2013,9,2,22,30,0,0,0,1,25.1,129.54,928,18.400000000000002 +2013,9,2,23,30,0,0,0,0.8,24.6,136.83,928,18.400000000000002 +2013,9,3,0,30,0,0,0,0.7000000000000001,24.3,140.13,928,18.400000000000002 +2013,9,3,1,30,0,0,0,0.5,24.3,138.48,929,18.400000000000002 +2013,9,3,2,30,0,0,0,0.30000000000000004,24.1,132.38,929,18.400000000000002 +2013,9,3,3,30,0,0,0,0.4,23.6,123.29,929,18.400000000000002 +2013,9,3,4,30,0,0,0,0.6000000000000001,22.8,112.42,929,18.400000000000002 +2013,9,3,5,30,0,0,0,0.8,22.200000000000003,100.56,929,18.5 +2013,9,3,6,30,20,15,136,1.5,23.1,87.9,930,18.5 +2013,9,3,7,30,201,59,566,2,25.900000000000002,75.47,930,18.3 +2013,9,3,8,30,421,80,748,2.2,28.8,62.88,930,17.7 +2013,9,3,9,30,627,92,842,2.5,31,50.6,930,17.5 +2013,9,3,10,30,793,98,897,2.9000000000000004,32.800000000000004,39.18,930,17.1 +2013,9,3,11,30,906,100,929,3.2,34.1,29.84,929,16.3 +2013,9,3,12,30,952,99,942,3.3000000000000003,35.1,25.150000000000002,928,15.200000000000001 +2013,9,3,13,30,932,96,943,3.4000000000000004,35.7,27.63,928,13.9 +2013,9,3,14,30,845,91,929,3.5,35.800000000000004,35.81,927,12.8 +2013,9,3,15,30,697,90,886,3.5,35.4,46.75,926,11.8 +2013,9,3,16,30,505,77,825,3.4000000000000004,34.4,58.83,926,10.8 +2013,9,3,17,30,284,60,703,3.3000000000000003,33.800000000000004,71.38,926,10 +2013,9,3,18,30,54,34,186,1.6,28.8,83.97,927,12 +2013,9,3,19,30,0,0,0,1.4000000000000001,26.400000000000002,96.62,928,12.600000000000001 +2013,9,3,20,30,0,0,0,1.5,25.3,108.73,928,12.3 +2013,9,3,21,30,0,0,0,1.5,24.400000000000002,120.03,929,12.200000000000001 +2013,9,3,22,30,0,0,0,1.4000000000000001,23.5,129.88,929,12.200000000000001 +2013,9,3,23,30,0,0,0,1.3,22.8,137.20000000000002,929,12.3 +2013,9,4,0,30,0,0,0,1.2000000000000002,22.200000000000003,140.5,929,12.3 +2013,9,4,1,30,0,0,0,1.1,21.700000000000003,138.81,929,12.4 +2013,9,4,2,30,0,0,0,1,21.200000000000003,132.65,929,12.4 +2013,9,4,3,30,0,0,0,0.9,20.900000000000002,123.5,929,12.4 +2013,9,4,4,30,0,0,0,0.9,20.6,112.59,930,12.4 +2013,9,4,5,30,0,0,0,0.9,20.400000000000002,100.7,930,12.4 +2013,9,4,6,30,21,14,211,1.4000000000000001,21.400000000000002,88.02,930,12.600000000000001 +2013,9,4,7,30,213,49,657,2.1,24.3,75.60000000000001,931,12.8 +2013,9,4,8,30,439,66,823,2.4000000000000004,28.3,63.01,931,13 +2013,9,4,9,30,648,75,906,2.8000000000000003,31.6,50.75,931,12.3 +2013,9,4,10,30,817,81,952,3.2,33.300000000000004,39.38,931,11.200000000000001 +2013,9,4,11,30,926,84,973,3.4000000000000004,34.5,30.12,931,10.3 +2013,9,4,12,30,972,85,983,3.5,35.4,25.51,930,9.5 +2013,9,4,13,30,948,83,980,3.5,35.800000000000004,28,929,8.8 +2013,9,4,14,30,857,79,964,3.4000000000000004,35.9,36.14,929,8.200000000000001 +2013,9,4,15,30,709,73,932,3.4000000000000004,35.4,47.04,928,7.6000000000000005 +2013,9,4,16,30,511,65,869,3.2,34.5,59.11,928,7.2 +2013,9,4,17,30,286,52,745,3.1,33.9,71.64,928,7.2 +2013,9,4,18,30,70,27,432,1.4000000000000001,28.5,84.23,929,10.700000000000001 +2013,9,4,19,30,0,0,0,1.3,26.3,96.9,930,11.4 +2013,9,4,20,30,0,0,0,1.3,25.400000000000002,109.02,930,11.600000000000001 +2013,9,4,21,30,0,0,0,1.3,24.8,120.35000000000001,930,12.100000000000001 +2013,9,4,22,30,0,0,0,1.2000000000000002,24.200000000000003,130.23,930,12.9 +2013,9,4,23,30,0,0,0,1.2000000000000002,23.700000000000003,137.57,930,13.700000000000001 +2013,9,5,0,30,0,0,0,1.1,23.200000000000003,140.88,930,14.5 +2013,9,5,1,30,0,0,0,1.1,22.8,139.14000000000001,930,15.4 +2013,9,5,2,30,0,0,0,1.1,22.400000000000002,132.92000000000002,930,16.1 +2013,9,5,3,30,0,0,0,1.2000000000000002,21.900000000000002,123.71000000000001,930,16.7 +2013,9,5,4,30,0,0,0,1.2000000000000002,21.5,112.76,931,17.1 +2013,9,5,5,30,0,0,0,1.2000000000000002,21.3,100.85000000000001,931,17.3 +2013,9,5,6,30,17,14,113,1.7000000000000002,22.6,88.14,932,17.5 +2013,9,5,7,30,194,64,530,1.9000000000000001,25.8,75.72,932,17.7 +2013,9,5,8,30,411,90,712,1,29.5,63.14,932,17.2 +2013,9,5,9,30,614,107,803,1,32.1,50.910000000000004,932,15.9 +2013,9,5,10,30,774,120,849,1.6,33.7,39.58,932,15.100000000000001 +2013,9,5,11,30,791,347,515,2,34.800000000000004,30.400000000000002,931,14.9 +2013,9,5,12,30,583,459,138,2.3000000000000003,35.4,25.87,931,14.8 +2013,9,5,13,30,833,337,564,2.6,35.7,28.38,930,14.8 +2013,9,5,14,30,542,399,178,2.9000000000000004,35.4,36.480000000000004,929,14.9 +2013,9,5,15,30,514,299,318,3.2,34.5,47.34,929,15.100000000000001 +2013,9,5,16,30,247,213,66,3.5,33.4,59.38,929,15.4 +2013,9,5,17,30,189,117,232,3.5,32.800000000000004,71.91,929,15.700000000000001 +2013,9,5,18,30,51,31,208,2.5,29.8,84.5,930,16.6 +2013,9,5,19,30,0,0,0,2.5,28.1,97.17,930,17.400000000000002 +2013,9,5,20,30,0,0,0,2.6,27.200000000000003,109.32000000000001,931,17.6 +2013,9,5,21,30,0,0,0,2.5,26.400000000000002,120.67,931,17.8 +2013,9,5,22,30,0,0,0,2.4000000000000004,25.700000000000003,130.58,931,17.8 +2013,9,5,23,30,0,0,0,2.2,25.1,137.95000000000002,931,17.7 +2013,9,6,0,30,0,0,0,2.1,24.6,141.25,931,17.6 +2013,9,6,1,30,0,0,0,2.1,24.1,139.47,931,17.6 +2013,9,6,2,30,0,0,0,2,23.6,133.19,931,17.5 +2013,9,6,3,30,0,0,0,1.9000000000000001,23,123.92,931,17.6 +2013,9,6,4,30,0,0,0,1.7000000000000002,22.5,112.93,931,17.6 +2013,9,6,5,30,0,0,0,1.6,22.200000000000003,100.99000000000001,931,17.7 +2013,9,6,6,30,15,13,83,2.1,23.1,88.26,932,17.900000000000002 +2013,9,6,7,30,187,70,479,2.2,26.200000000000003,75.84,932,17.900000000000002 +2013,9,6,8,30,401,102,665,1.5,29.5,63.28,932,17.3 +2013,9,6,9,30,601,123,761,1.5,31.700000000000003,51.06,932,16.7 +2013,9,6,10,30,762,139,810,2,33.2,39.79,932,16.2 +2013,9,6,11,30,801,333,544,2.5,34.2,30.68,931,15.700000000000001 +2013,9,6,12,30,928,107,915,2.7,34.9,26.240000000000002,930,15.4 +2013,9,6,13,30,904,105,912,2.9000000000000004,35.300000000000004,28.75,929,15.100000000000001 +2013,9,6,14,30,815,99,894,3,35.2,36.81,929,14.700000000000001 +2013,9,6,15,30,629,175,673,3.1,34.800000000000004,47.64,928,14.4 +2013,9,6,16,30,473,80,778,3,33.9,59.660000000000004,928,14.200000000000001 +2013,9,6,17,30,257,63,635,3,33.300000000000004,72.18,928,14.100000000000001 +2013,9,6,18,30,55,28,296,1.8,30,84.76,928,14.8 +2013,9,6,19,30,0,0,0,1.8,28.5,97.45,929,15.600000000000001 +2013,9,6,20,30,0,0,0,2.1,27.8,109.61,929,15.5 +2013,9,6,21,30,0,0,0,2.4000000000000004,27.1,120.99000000000001,929,15.5 +2013,9,6,22,30,0,0,0,2.7,26.3,130.93,929,15.600000000000001 +2013,9,6,23,30,0,0,0,2.9000000000000004,25.6,138.33,929,15.700000000000001 +2013,9,7,0,30,0,0,0,3,24.900000000000002,141.63,929,15.9 +2013,9,7,1,30,0,0,0,3,24.3,139.81,929,16.1 +2013,9,7,2,30,0,0,0,2.8000000000000003,23.700000000000003,133.46,929,16.3 +2013,9,7,3,30,0,0,0,2.5,23,124.13000000000001,929,16.5 +2013,9,7,4,30,0,0,0,2.1,22.400000000000002,113.10000000000001,929,16.7 +2013,9,7,5,30,0,0,0,1.9000000000000001,22.1,101.13,929,16.900000000000002 +2013,9,7,6,30,14,12,86,2.2,22.900000000000002,88.38,930,17 +2013,9,7,7,30,184,67,483,2.4000000000000004,25.8,75.97,930,17.1 +2013,9,7,8,30,396,99,665,1.8,29.400000000000002,63.410000000000004,930,16.6 +2013,9,7,9,30,470,268,321,1.6,31.8,51.22,930,15.3 +2013,9,7,10,30,676,282,514,2,33.300000000000004,39.99,930,14.9 +2013,9,7,11,30,812,316,578,2.6,34.2,30.96,929,14.9 +2013,9,7,12,30,536,446,101,2.9000000000000004,34.7,26.6,929,14.9 +2013,9,7,13,30,817,346,539,3.2,34.9,29.13,928,14.9 +2013,9,7,14,30,227,218,11,3.4000000000000004,34.7,37.15,927,14.700000000000001 +2013,9,7,15,30,628,169,685,3.5,34,47.94,927,14.5 +2013,9,7,16,30,441,140,601,3.5,33.1,59.94,927,14.3 +2013,9,7,17,30,233,98,450,3.5,32.5,72.45,927,14.100000000000001 +2013,9,7,18,30,46,32,160,2.2,29.3,85.03,927,14.600000000000001 +2013,9,7,19,30,0,0,0,2,27.8,97.73,928,15.100000000000001 +2013,9,7,20,30,0,0,0,2.3000000000000003,26.900000000000002,109.91,928,14.8 +2013,9,7,21,30,0,0,0,2.5,26.1,121.31,929,14.700000000000001 +2013,9,7,22,30,0,0,0,2.8000000000000003,25.200000000000003,131.28,928,14.700000000000001 +2013,9,7,23,30,0,0,0,2.9000000000000004,24.400000000000002,138.71,928,15 +2013,9,8,0,30,0,0,0,2.8000000000000003,23.6,142.01,928,15.600000000000001 +2013,9,8,1,30,0,0,0,2.5,22.900000000000002,140.14000000000001,928,16.400000000000002 +2013,9,8,2,30,0,0,0,2,22.1,133.73,928,17.2 +2013,9,8,3,30,0,0,0,1.5,21.400000000000002,124.35000000000001,928,17.900000000000002 +2013,9,8,4,30,0,0,0,1.1,20.700000000000003,113.27,928,18.400000000000002 +2013,9,8,5,30,0,0,0,1,20.400000000000002,101.28,928,18.7 +2013,9,8,6,30,14,12,108,1.4000000000000001,21.200000000000003,88.5,928,19 +2013,9,8,7,30,189,57,549,1.7000000000000002,24.3,76.10000000000001,929,19.200000000000003 +2013,9,8,8,30,407,78,738,1.9000000000000001,27.8,63.550000000000004,929,17.6 +2013,9,8,9,30,610,90,833,2.7,30,51.38,929,16.1 +2013,9,8,10,30,772,96,885,3.4000000000000004,31.5,40.2,928,15.600000000000001 +2013,9,8,11,30,880,100,913,3.9000000000000004,32.6,31.25,928,15.200000000000001 +2013,9,8,12,30,923,97,927,4.2,33.300000000000004,26.97,927,15 +2013,9,8,13,30,809,349,528,4.4,33.5,29.51,926,15 +2013,9,8,14,30,807,92,901,4.4,33.300000000000004,37.49,925,15 +2013,9,8,15,30,656,89,851,4.5,32.7,48.24,925,15.100000000000001 +2013,9,8,16,30,259,214,92,4.6000000000000005,31.700000000000003,60.22,925,15.200000000000001 +2013,9,8,17,30,247,61,625,4.5,31,72.72,925,15.3 +2013,9,8,18,30,30,27,33,3.5,28.6,85.29,925,15.600000000000001 +2013,9,8,19,30,0,0,0,3.2,27.400000000000002,98.01,926,16 +2013,9,8,20,30,0,0,0,3.2,26.6,110.2,926,16.3 +2013,9,8,21,30,0,0,0,3.2,25.700000000000003,121.63,927,16.7 +2013,9,8,22,30,0,0,0,3.1,24.900000000000002,131.63,927,17 +2013,9,8,23,30,0,0,0,3,24.200000000000003,139.09,927,17.5 +2013,9,9,0,30,0,0,0,3,23.6,142.39000000000001,927,18 +2013,9,9,1,30,0,0,0,3.1,23.1,140.48,928,18.5 +2013,9,9,2,30,0,0,0,2.9000000000000004,22.6,134,928,19 +2013,9,9,3,30,0,0,0,2.4000000000000004,22,124.56,927,19.400000000000002 +2013,9,9,4,30,0,0,0,2,21.5,113.44,927,19.5 +2013,9,9,5,30,0,0,0,1.9000000000000001,21.1,101.42,928,19.6 +2013,9,9,6,30,13,11,89,2.5,21.400000000000002,88.62,928,19.700000000000003 +2013,9,9,7,30,184,57,530,3.2,22.700000000000003,76.22,929,19.5 +2013,9,9,8,30,400,78,727,3.6,24.6,63.68,929,18.8 +2013,9,9,9,30,601,88,825,3.9000000000000004,26.400000000000002,51.550000000000004,929,17.900000000000002 +2013,9,9,10,30,763,96,876,4.2,27.900000000000002,40.42,929,17.1 +2013,9,9,11,30,869,100,903,4.4,28.900000000000002,31.54,928,16.5 +2013,9,9,12,30,858,322,604,4.6000000000000005,29.6,27.34,928,16.3 +2013,9,9,13,30,891,88,926,4.6000000000000005,30,29.89,927,16 +2013,9,9,14,30,800,86,905,4.6000000000000005,30,37.84,926,15.8 +2013,9,9,15,30,649,87,849,4.7,29.8,48.550000000000004,926,15.700000000000001 +2013,9,9,16,30,230,202,57,4.7,29.3,60.51,926,15.4 +2013,9,9,17,30,241,61,615,4.7,28.900000000000002,73,926,15.3 +2013,9,9,18,30,45,25,250,3.6,26.900000000000002,85.56,926,15.5 +2013,9,9,19,30,0,0,0,3.4000000000000004,25.8,98.29,927,15.9 +2013,9,9,20,30,0,0,0,3.7,25.1,110.5,928,16.3 +2013,9,9,21,30,0,0,0,3.9000000000000004,24.3,121.95,928,16.900000000000002 +2013,9,9,22,30,0,0,0,3.9000000000000004,23.5,131.99,928,17.5 +2013,9,9,23,30,0,0,0,3.8000000000000003,22.8,139.47,929,18.2 +2013,9,10,0,30,0,0,0,3.6,22.1,142.77,929,18.8 +2013,9,10,1,30,0,0,0,3.4000000000000004,21.5,140.81,928,19.200000000000003 +2013,9,10,2,30,0,0,0,3.3000000000000003,21,134.26,928,19.6 +2013,9,10,3,30,0,0,0,3.2,20.700000000000003,124.76,928,19.900000000000002 +2013,9,10,4,30,0,0,0,2.9000000000000004,20.400000000000002,113.61,929,20 +2013,9,10,5,30,0,0,0,2.7,20.3,101.56,929,20 +2013,9,10,6,30,13,11,93,3.4000000000000004,20.900000000000002,88.74,930,19.8 +2013,9,10,7,30,183,54,545,4.1000000000000005,22.700000000000003,76.35000000000001,931,19.400000000000002 +2013,9,10,8,30,113,113,0,4.5,25,63.82,931,18.6 +2013,9,10,9,30,259,241,30,4.7,27.1,51.71,931,18 +2013,9,10,10,30,187,182,7,5,28.700000000000003,40.63,931,17.6 +2013,9,10,11,30,488,413,89,5.2,29.900000000000002,31.84,930,17.3 +2013,9,10,12,30,685,437,280,5.4,30.5,27.72,929,17.2 +2013,9,10,13,30,489,418,83,5.4,30.5,30.28,929,17.2 +2013,9,10,14,30,786,99,874,5.4,30.200000000000003,38.18,928,17.3 +2013,9,10,15,30,502,286,328,5.4,29.700000000000003,48.86,928,17.5 +2013,9,10,16,30,251,208,87,5.300000000000001,28.8,60.800000000000004,928,17.7 +2013,9,10,17,30,229,67,562,5.2,28.3,73.27,928,17.900000000000002 +2013,9,10,18,30,39,26,185,4,26.700000000000003,85.83,929,18.2 +2013,9,10,19,30,0,0,0,3.4000000000000004,26,98.58,930,18.5 +2013,9,10,20,30,0,0,0,3.2,25.400000000000002,110.8,930,18.900000000000002 +2013,9,10,21,30,0,0,0,3.1,24.8,122.27,930,19.1 +2013,9,10,22,30,0,0,0,3,24.200000000000003,132.34,931,19.400000000000002 +2013,9,10,23,30,0,0,0,2.9000000000000004,23.6,139.86,931,19.700000000000003 +2013,9,11,0,30,0,0,0,2.9000000000000004,23,143.16,931,19.900000000000002 +2013,9,11,1,30,0,0,0,2.8000000000000003,22.400000000000002,141.15,931,20.200000000000003 +2013,9,11,2,30,0,0,0,2.7,21.900000000000002,134.53,931,20.400000000000002 +2013,9,11,3,30,0,0,0,2.6,21.6,124.97,931,20.6 +2013,9,11,4,30,0,0,0,2.5,21.3,113.78,931,20.6 +2013,9,11,5,30,0,0,0,2.5,21.200000000000003,101.71000000000001,931,20.5 +2013,9,11,6,30,11,10,61,2.7,21.6,88.86,932,20.400000000000002 +2013,9,11,7,30,100,87,58,3.1,23.1,76.48,932,19.900000000000002 +2013,9,11,8,30,239,186,120,3.4000000000000004,25.3,63.96,932,18.6 +2013,9,11,9,30,597,85,831,3.6,27.3,51.88,933,17.400000000000002 +2013,9,11,10,30,653,284,488,3.8000000000000003,29.1,40.85,932,16.8 +2013,9,11,11,30,759,343,491,3.9000000000000004,30.5,32.14,932,16.400000000000002 +2013,9,11,12,30,611,451,182,4.1000000000000005,31.6,28.09,931,16.1 +2013,9,11,13,30,622,433,219,4.2,32.2,30.66,930,15.9 +2013,9,11,14,30,787,97,882,4.2,32.300000000000004,38.53,929,15.700000000000001 +2013,9,11,15,30,348,295,80,4.1000000000000005,32.1,49.17,929,15.4 +2013,9,11,16,30,447,78,762,3.9000000000000004,31.3,61.08,929,15.100000000000001 +2013,9,11,17,30,151,110,144,3.8000000000000003,30.8,73.55,929,14.8 +2013,9,11,18,30,23,23,8,2.1,27.700000000000003,86.10000000000001,930,15.100000000000001 +2013,9,11,19,30,0,0,0,1.8,26.1,98.86,930,15.5 +2013,9,11,20,30,0,0,0,2.1,25.400000000000002,111.10000000000001,930,15.3 +2013,9,11,21,30,0,0,0,2.5,24.700000000000003,122.60000000000001,930,15.3 +2013,9,11,22,30,0,0,0,2.8000000000000003,24,132.7,931,15.600000000000001 +2013,9,11,23,30,0,0,0,2.7,23.200000000000003,140.24,930,15.9 +2013,9,12,0,30,0,0,0,2.4000000000000004,22.3,143.54,930,16.3 +2013,9,12,1,30,0,0,0,2,21.400000000000002,141.48,930,16.8 +2013,9,12,2,30,0,0,0,1.6,20.700000000000003,134.8,930,17.1 +2013,9,12,3,30,0,0,0,1.4000000000000001,20.1,125.18,930,17.400000000000002 +2013,9,12,4,30,0,0,0,1.4000000000000001,19.6,113.94,930,17.7 +2013,9,12,5,30,0,0,0,1.4000000000000001,19.3,101.85000000000001,931,18 +2013,9,12,6,30,11,10,61,1.9000000000000001,20.200000000000003,88.97,931,18.3 +2013,9,12,7,30,177,61,502,2.5,23,76.61,931,18.400000000000002 +2013,9,12,8,30,392,89,695,2.6,26.3,64.1,932,17.6 +2013,9,12,9,30,591,107,787,2.7,28.5,52.050000000000004,932,17.1 +2013,9,12,10,30,752,119,839,2.9000000000000004,30.1,41.07,932,17.1 +2013,9,12,11,30,832,247,694,3,31.200000000000003,32.43,931,16.900000000000002 +2013,9,12,12,30,690,429,297,3.2,32.1,28.47,930,16.6 +2013,9,12,13,30,509,423,100,3.3000000000000003,32.6,31.05,929,16.3 +2013,9,12,14,30,782,113,860,3.4000000000000004,32.6,38.88,928,16.1 +2013,9,12,15,30,628,115,790,3.4000000000000004,32.300000000000004,49.480000000000004,928,15.700000000000001 +2013,9,12,16,30,347,187,334,3.3000000000000003,31.5,61.370000000000005,927,15.4 +2013,9,12,17,30,222,71,541,3.3000000000000003,30.900000000000002,73.83,927,15.100000000000001 +2013,9,12,18,30,24,22,32,1.6,27.700000000000003,86.37,928,15.600000000000001 +2013,9,12,19,30,0,0,0,1.3,26.200000000000003,99.15,928,16.1 +2013,9,12,20,30,0,0,0,1.3,25.400000000000002,111.4,929,16.1 +2013,9,12,21,30,0,0,0,1.3,24.8,122.92,929,15.9 +2013,9,12,22,30,0,0,0,1.2000000000000002,24.1,133.06,929,15.8 +2013,9,12,23,30,0,0,0,1.2000000000000002,23.5,140.63,929,15.600000000000001 +2013,9,13,0,30,0,0,0,1.2000000000000002,23,143.93,929,15.5 +2013,9,13,1,30,0,0,0,1.1,22.400000000000002,141.82,928,15.4 +2013,9,13,2,30,0,0,0,1.1,21.900000000000002,135.06,928,15.4 +2013,9,13,3,30,0,0,0,1,21.5,125.39,928,15.4 +2013,9,13,4,30,0,0,0,1,21.200000000000003,114.11,928,15.5 +2013,9,13,5,30,0,0,0,0.9,21,101.99000000000001,928,15.5 +2013,9,13,6,30,0,0,0,1.5,21.8,89.09,929,15.600000000000001 +2013,9,13,7,30,166,75,396,1.6,24.1,76.74,929,15.8 +2013,9,13,8,30,376,115,602,1.1,27.1,64.25,929,15.600000000000001 +2013,9,13,9,30,577,136,720,1.2000000000000002,29.3,52.22,929,15.200000000000001 +2013,9,13,10,30,618,315,403,1.8,30.6,41.29,928,15.200000000000001 +2013,9,13,11,30,73,73,0,2.3000000000000003,31.8,32.74,928,15.200000000000001 +2013,9,13,12,30,815,356,525,2.7,32.800000000000004,28.85,927,14.9 +2013,9,13,13,30,564,433,154,2.8000000000000003,33.4,31.44,926,14.4 +2013,9,13,14,30,778,130,836,2.9000000000000004,33.5,39.230000000000004,925,14 +2013,9,13,15,30,626,123,779,3,33.2,49.800000000000004,924,13.5 +2013,9,13,16,30,429,110,672,3.1,32.300000000000004,61.67,924,13.200000000000001 +2013,9,13,17,30,214,82,484,3.1,31.700000000000003,74.11,924,13.100000000000001 +2013,9,13,18,30,29,22,115,2.3000000000000003,28.700000000000003,86.64,925,14.4 +2013,9,13,19,30,0,0,0,2.8000000000000003,27.5,99.43,925,15.4 +2013,9,13,20,30,0,0,0,3.3000000000000003,26.700000000000003,111.7,926,16.1 +2013,9,13,21,30,0,0,0,3.4000000000000004,25.700000000000003,123.25,926,17 +2013,9,13,22,30,0,0,0,3,24.8,133.42000000000002,926,17.900000000000002 +2013,9,13,23,30,0,0,0,2.5,24,141.02,926,18.5 +2013,9,14,0,30,0,0,0,1.9000000000000001,23.3,144.31,926,18.7 +2013,9,14,1,30,0,0,0,1.4000000000000001,22.5,142.15,926,18.7 +2013,9,14,2,30,0,0,0,1.1,21.900000000000002,135.33,926,18.5 +2013,9,14,3,30,0,0,0,0.8,21.3,125.59,925,18.2 +2013,9,14,4,30,0,0,0,0.6000000000000001,20.8,114.28,926,17.900000000000002 +2013,9,14,5,30,0,0,0,0.5,20.400000000000002,102.13,926,17.7 +2013,9,14,6,30,0,0,0,0.8,21.3,89.21000000000001,927,17.6 +2013,9,14,7,30,175,61,504,1.4000000000000001,24.1,76.87,927,17.3 +2013,9,14,8,30,391,88,702,1.9000000000000001,27.6,64.39,927,15.9 +2013,9,14,9,30,591,105,796,1.9000000000000001,30.200000000000003,52.39,928,14.9 +2013,9,14,10,30,752,115,851,2,32,41.52,927,14.5 +2013,9,14,11,30,592,422,204,2.2,33.1,33.04,927,14.3 +2013,9,14,12,30,743,374,423,2.5,33.7,29.23,926,14.100000000000001 +2013,9,14,13,30,861,148,838,2.8000000000000003,34,31.830000000000002,925,13.9 +2013,9,14,14,30,173,168,6,3,33.800000000000004,39.58,925,13.8 +2013,9,14,15,30,519,258,408,3.4000000000000004,33.2,50.120000000000005,924,13.700000000000001 +2013,9,14,16,30,411,137,584,3.6,32.300000000000004,61.96,924,13.8 +2013,9,14,17,30,163,98,241,3.7,31.700000000000003,74.39,924,14 +2013,9,14,18,30,19,19,1,2.9000000000000004,29,86.91,925,14.700000000000001 +2013,9,14,19,30,0,0,0,3.2,27.900000000000002,99.72,925,15.600000000000001 +2013,9,14,20,30,0,0,0,3.5,27.3,112,926,16.1 +2013,9,14,21,30,0,0,0,3.6,26.8,123.58,926,16.7 +2013,9,14,22,30,0,0,0,3.6,26.3,133.78,926,17.1 +2013,9,14,23,30,0,0,0,3.5,25.900000000000002,141.41,927,17.400000000000002 +2013,9,15,0,30,0,0,0,3.4000000000000004,25.400000000000002,144.70000000000002,927,17.5 +2013,9,15,1,30,0,0,0,3.2,24.8,142.49,927,17.3 +2013,9,15,2,30,0,0,0,2.9000000000000004,24.1,135.59,927,17 +2013,9,15,3,30,0,0,0,2.7,23.400000000000002,125.8,927,16.6 +2013,9,15,4,30,0,0,0,2.5,22.700000000000003,114.44,927,16.2 +2013,9,15,5,30,0,0,0,2.4000000000000004,22.200000000000003,102.27,928,15.8 +2013,9,15,6,30,0,0,0,2.7,22.400000000000002,89.33,928,15.600000000000001 +2013,9,15,7,30,79,77,6,3.3000000000000003,24.200000000000003,77,929,15.9 +2013,9,15,8,30,346,129,505,3.6,26.5,64.53,929,17.1 +2013,9,15,9,30,464,254,346,3.5,28.200000000000003,52.57,929,17.5 +2013,9,15,10,30,724,159,758,3.2,29.200000000000003,41.75,929,17.7 +2013,9,15,11,30,827,168,790,3.2,30.1,33.35,929,17.8 +2013,9,15,12,30,849,291,641,3.4000000000000004,30.700000000000003,29.61,929,17.7 +2013,9,15,13,30,585,428,185,3.7,30.8,32.22,928,17.5 +2013,9,15,14,30,584,360,292,3.9000000000000004,30.700000000000003,39.94,928,17.3 +2013,9,15,15,30,564,192,584,4.1000000000000005,30.400000000000002,50.44,928,17.1 +2013,9,15,16,30,320,189,282,4.1000000000000005,29.8,62.26,928,16.8 +2013,9,15,17,30,94,92,9,4,29.400000000000002,74.67,928,16.6 +2013,9,15,18,30,20,20,0,2.6,27.3,87.17,929,16.7 +2013,9,15,19,30,0,0,0,2,26.200000000000003,100,929,16.7 +2013,9,15,20,30,0,0,0,1.8,25.700000000000003,112.3,929,16.5 +2013,9,15,21,30,0,0,0,1.7000000000000002,25.3,123.9,930,16.5 +2013,9,15,22,30,0,0,0,1.7000000000000002,25,134.13,930,16.5 +2013,9,15,23,30,0,0,0,1.9000000000000001,24.700000000000003,141.8,930,16.5 +2013,9,16,0,30,0,0,0,2.1,24.3,145.09,930,16.5 +2013,9,16,1,30,0,0,0,2.1,23.900000000000002,142.82,930,16.5 +2013,9,16,2,30,0,0,0,2.1,23.400000000000002,135.85,930,16.6 +2013,9,16,3,30,0,0,0,2,22.900000000000002,126,930,16.8 +2013,9,16,4,30,0,0,0,1.8,22.400000000000002,114.61,930,17.1 +2013,9,16,5,30,0,0,0,1.7000000000000002,22,102.41,931,17.5 +2013,9,16,6,30,0,0,0,2,22.5,89.44,931,17.8 +2013,9,16,7,30,87,80,29,2.4000000000000004,24.5,77.13,931,18.1 +2013,9,16,8,30,268,177,213,2.5,26.8,64.68,932,18.3 +2013,9,16,9,30,481,239,401,2.5,28.400000000000002,52.75,932,18.3 +2013,9,16,10,30,44,44,0,2.9000000000000004,29.6,41.980000000000004,931,18.2 +2013,9,16,11,30,393,359,42,3.3000000000000003,30.400000000000002,33.660000000000004,931,18.1 +2013,9,16,12,30,696,413,327,3.7,30.8,29.990000000000002,930,17.900000000000002 +2013,9,16,13,30,652,409,289,3.9000000000000004,30.700000000000003,32.61,930,17.7 +2013,9,16,14,30,579,359,288,3.9000000000000004,30.200000000000003,40.29,929,17.400000000000002 +2013,9,16,15,30,17,17,0,3.7,29.3,50.76,929,17.2 +2013,9,16,16,30,117,117,0,3.1,28.3,62.550000000000004,929,17 +2013,9,16,17,30,178,80,375,2.7,27.8,74.96000000000001,929,17.2 +2013,9,16,18,30,12,12,0,1.1,25.200000000000003,87.44,930,19.1 +2013,9,16,19,30,0,0,0,0.9,24.200000000000003,100.29,930,19.3 +2013,9,16,20,30,0,0,0,1,23.700000000000003,112.61,931,18.900000000000002 +2013,9,16,21,30,0,0,0,1,23.1,124.23,931,18.5 +2013,9,16,22,30,0,0,0,1.1,22.6,134.49,931,18.3 +2013,9,16,23,30,0,0,0,1.1,22.1,142.19,931,18 +2013,9,17,0,30,0,0,0,1.1,21.700000000000003,145.48,931,17.900000000000002 +2013,9,17,1,30,0,0,0,1.1,21.400000000000002,143.16,931,18 +2013,9,17,2,30,0,0,0,1.1,21.3,136.11,931,18.2 +2013,9,17,3,30,0,0,0,1.1,21.1,126.2,931,18.5 +2013,9,17,4,30,0,0,0,1,20.900000000000002,114.77,931,18.900000000000002 +2013,9,17,5,30,0,0,0,1,20.8,102.55,931,19.3 +2013,9,17,6,30,0,0,0,1.3,21.200000000000003,89.55,931,19.6 +2013,9,17,7,30,58,58,0,1.8,22.400000000000002,77.26,932,19.900000000000002 +2013,9,17,8,30,182,165,39,2.2,23.900000000000002,64.83,932,19.900000000000002 +2013,9,17,9,30,207,200,12,2.5,25.1,52.93,932,19.3 +2013,9,17,10,30,353,318,46,2.8000000000000003,26,42.21,932,18.7 +2013,9,17,11,30,292,277,17,3.1,26.5,33.97,931,18.2 +2013,9,17,12,30,471,410,71,3.4000000000000004,26.900000000000002,30.37,931,17.8 +2013,9,17,13,30,562,424,165,3.5,27.200000000000003,33,930,17.5 +2013,9,17,14,30,480,372,142,3.4000000000000004,27.5,40.65,929,17.1 +2013,9,17,15,30,342,285,90,3.3000000000000003,27.700000000000003,51.08,929,16.7 +2013,9,17,16,30,217,188,63,3,27.6,62.85,928,16.2 +2013,9,17,17,30,67,67,0,2.8000000000000003,27.400000000000002,75.24,928,15.9 +2013,9,17,18,30,13,13,0,1.3,25,87.71000000000001,928,16.6 +2013,9,17,19,30,0,0,0,1.4000000000000001,24.1,100.58,929,16.6 +2013,9,17,20,30,0,0,0,1.7000000000000002,23.8,112.91,929,16.3 +2013,9,17,21,30,0,0,0,2.2,23.400000000000002,124.55,929,16.3 +2013,9,17,22,30,0,0,0,2.5,23,134.85,929,16.6 +2013,9,17,23,30,0,0,0,2.7,22.6,142.58,929,17.1 +2013,9,18,0,30,0,0,0,2.7,22.200000000000003,145.87,929,17.7 +2013,9,18,1,30,0,0,0,2.5,21.8,143.49,929,18.3 +2013,9,18,2,30,0,0,0,2.3000000000000003,21.400000000000002,136.37,929,18.8 +2013,9,18,3,30,0,0,0,2,20.900000000000002,126.4,928,19.200000000000003 +2013,9,18,4,30,0,0,0,1.9000000000000001,20.5,114.93,928,19.400000000000002 +2013,9,18,5,30,0,0,0,1.8,20.1,102.69,929,19.700000000000003 +2013,9,18,6,30,0,0,0,2.3000000000000003,20.700000000000003,89.67,929,19.900000000000002 +2013,9,18,7,30,6,6,0,3.4000000000000004,22.8,77.39,929,20.1 +2013,9,18,8,30,62,62,0,4.1000000000000005,25.200000000000003,64.98,929,19.8 +2013,9,18,9,30,281,251,49,4.4,27.400000000000002,53.11,929,18.5 +2013,9,18,10,30,492,360,179,4.7,29.1,42.45,929,17.3 +2013,9,18,11,30,560,417,174,4.9,30.5,34.28,928,16.6 +2013,9,18,12,30,826,310,601,5,31.400000000000002,30.75,927,16.3 +2013,9,18,13,30,802,285,619,5.1000000000000005,31.8,33.39,926,16.1 +2013,9,18,14,30,553,362,253,5.1000000000000005,31.8,41.01,925,16.1 +2013,9,18,15,30,613,74,864,5.1000000000000005,31.3,51.4,925,16 +2013,9,18,16,30,419,65,783,4.9,30.400000000000002,63.15,925,15.8 +2013,9,18,17,30,104,93,46,4.800000000000001,29.8,75.53,925,15.700000000000001 +2013,9,18,18,30,20,14,169,3.2,26.900000000000002,87.98,925,15.9 +2013,9,18,19,30,0,0,0,2.8000000000000003,25.6,100.87,926,16.2 +2013,9,18,20,30,0,0,0,2.9000000000000004,24.900000000000002,113.21000000000001,926,16.400000000000002 +2013,9,18,21,30,0,0,0,3.1,24.3,124.88000000000001,927,16.8 +2013,9,18,22,30,0,0,0,3.1,23.700000000000003,135.21,927,17.2 +2013,9,18,23,30,0,0,0,3,23.200000000000003,142.97,927,17.7 +2013,9,19,0,30,0,0,0,2.8000000000000003,22.700000000000003,146.26,927,18.1 +2013,9,19,1,30,0,0,0,2.8000000000000003,22.5,143.83,927,18.5 +2013,9,19,2,30,0,0,0,3,22.3,136.63,926,18.900000000000002 +2013,9,19,3,30,0,0,0,3,22.1,126.61,926,19.3 +2013,9,19,4,30,0,0,0,2.8000000000000003,21.8,115.09,926,19.700000000000003 +2013,9,19,5,30,0,0,0,2.8000000000000003,21.6,102.84,927,20.1 +2013,9,19,6,30,0,0,0,3.1,21.6,89.78,927,20.3 +2013,9,19,7,30,30,30,0,3.7,22.200000000000003,77.53,927,20.5 +2013,9,19,8,30,67,67,0,4.2,23,65.13,928,20 +2013,9,19,9,30,144,144,0,4.3,23.700000000000003,53.29,928,18.8 +2013,9,19,10,30,124,124,0,4.1000000000000005,24.3,42.68,928,18.1 +2013,9,19,11,30,139,137,2,3.9000000000000004,24.6,34.6,928,17.900000000000002 +2013,9,19,12,30,205,197,10,3.6,24.6,31.14,927,17.900000000000002 +2013,9,19,13,30,346,323,27,3.5,24.400000000000002,33.78,926,18.1 +2013,9,19,14,30,357,323,45,3.4000000000000004,24.1,41.37,926,18.400000000000002 +2013,9,19,15,30,172,169,4,3.2,23.6,51.730000000000004,926,18.8 +2013,9,19,16,30,105,105,0,2.8000000000000003,22.8,63.45,926,19.3 +2013,9,19,17,30,68,68,0,2.5,22.400000000000002,75.81,926,19.8 +2013,9,19,18,30,5,5,0,1.7000000000000002,21.1,88.23,926,20.5 +2013,9,19,19,30,0,0,0,1.7000000000000002,20.8,101.15,926,20.700000000000003 +2013,9,19,20,30,0,0,0,1.7000000000000002,20.6,113.51,926,20.6 +2013,9,19,21,30,0,0,0,1.5,20.6,125.21000000000001,926,20.6 +2013,9,19,22,30,0,0,0,1.2000000000000002,20.5,135.57,926,20.5 +2013,9,19,23,30,0,0,0,1,20.5,143.36,925,20.5 +2013,9,20,0,30,0,0,0,0.9,20.400000000000002,146.65,925,20.400000000000002 +2013,9,20,1,30,0,0,0,0.9,20.3,144.16,925,20.3 +2013,9,20,2,30,0,0,0,1.2000000000000002,20.200000000000003,136.89000000000001,925,20.200000000000003 +2013,9,20,3,30,0,0,0,1.6,20,126.8,925,20 +2013,9,20,4,30,0,0,0,2.3000000000000003,19.8,115.26,925,19.8 +2013,9,20,5,30,0,0,0,3,19.6,102.98,926,19.6 +2013,9,20,6,30,0,0,0,3.7,19.400000000000002,89.89,926,19.400000000000002 +2013,9,20,7,30,3,3,0,4.6000000000000005,19.5,77.66,927,19.5 +2013,9,20,8,30,48,48,0,5.5,19.700000000000003,65.28,927,19.5 +2013,9,20,9,30,154,154,1,5.9,20.200000000000003,53.480000000000004,927,19.3 +2013,9,20,10,30,184,179,7,5.800000000000001,20.6,42.92,927,19 +2013,9,20,11,30,185,179,8,5.5,21,34.910000000000004,927,18.6 +2013,9,20,12,30,241,230,13,5.300000000000001,21.3,31.52,927,18.400000000000002 +2013,9,20,13,30,161,157,5,5.1000000000000005,21.3,34.18,927,18.1 +2013,9,20,14,30,210,203,9,4.9,21.1,41.730000000000004,926,17.8 +2013,9,20,15,30,108,108,0,4.7,20.6,52.050000000000004,926,17.5 +2013,9,20,16,30,249,190,135,4.4,19.8,63.75,926,17.1 +2013,9,20,17,30,91,86,21,4.3,19.400000000000002,76.09,926,16.6 +2013,9,20,18,30,7,7,0,3.8000000000000003,17.8,88.49,927,16.2 +2013,9,20,19,30,0,0,0,3.7,16.900000000000002,101.44,927,15.8 +2013,9,20,20,30,0,0,0,3.5,16.2,113.81,928,15.3 +2013,9,20,21,30,0,0,0,3.5,15.700000000000001,125.53,928,15 +2013,9,20,22,30,0,0,0,3.5,15.3,135.93,929,14.600000000000001 +2013,9,20,23,30,0,0,0,3.5,14.8,143.75,929,14.100000000000001 +2013,9,21,0,30,0,0,0,3.5,14.200000000000001,147.04,929,13.5 +2013,9,21,1,30,0,0,0,3.4000000000000004,13.700000000000001,144.49,929,12.700000000000001 +2013,9,21,2,30,0,0,0,3.2,13.100000000000001,137.15,929,11.8 +2013,9,21,3,30,0,0,0,3,12.600000000000001,127,929,11 +2013,9,21,4,30,0,0,0,2.9000000000000004,12.100000000000001,115.42,929,10.200000000000001 +2013,9,21,5,30,0,0,0,2.7,11.600000000000001,103.12,929,9.600000000000001 +2013,9,21,6,30,0,0,0,2.9000000000000004,12,89.99,929,9.200000000000001 +2013,9,21,7,30,181,40,664,3.4000000000000004,14.4,77.8,930,9.200000000000001 +2013,9,21,8,30,409,56,851,3.8000000000000003,17.6,65.43,930,9 +2013,9,21,9,30,618,64,935,4,20.3,53.660000000000004,930,8.200000000000001 +2013,9,21,10,30,780,69,974,3.9000000000000004,22.3,43.17,930,7.7 +2013,9,21,11,30,887,73,997,3.6,23.700000000000003,35.230000000000004,929,7.6000000000000005 +2013,9,21,12,30,923,77,997,3.3000000000000003,24.8,31.91,929,7.7 +2013,9,21,13,30,892,76,992,3,25.400000000000002,34.57,928,7.9 +2013,9,21,14,30,794,73,972,2.8000000000000003,25.6,42.09,927,8.200000000000001 +2013,9,21,15,30,635,68,928,2.8000000000000003,25.3,52.38,926,8.5 +2013,9,21,16,30,432,58,853,2.5,24.400000000000002,64.05,926,8.5 +2013,9,21,17,30,206,43,692,2.2,23.700000000000003,76.38,926,9.5 +2013,9,21,18,30,16,11,213,1.2000000000000002,18.8,88.75,926,12.200000000000001 +2013,9,21,19,30,0,0,0,1.3,17.2,101.73,926,10.8 +2013,9,21,20,30,0,0,0,1.3,16.3,114.11,927,10.200000000000001 +2013,9,21,21,30,0,0,0,1.3,15.5,125.86,927,9.8 +2013,9,21,22,30,0,0,0,1.1,14.8,136.29,926,9.3 +2013,9,21,23,30,0,0,0,1.1,14.5,144.15,926,8.700000000000001 +2013,9,22,0,30,0,0,0,1,14.3,147.43,926,8.1 +2013,9,22,1,30,0,0,0,0.9,14.200000000000001,144.82,926,7.6000000000000005 +2013,9,22,2,30,0,0,0,0.9,13.9,137.4,926,7.1000000000000005 +2013,9,22,3,30,0,0,0,0.9,13.600000000000001,127.2,926,6.800000000000001 +2013,9,22,4,30,0,0,0,0.9,13.200000000000001,115.58,926,6.6000000000000005 +2013,9,22,5,30,0,0,0,0.9,12.9,103.26,926,6.5 +2013,9,22,6,30,0,0,0,0.8,13.700000000000001,90.11,926,6.5 +2013,9,22,7,30,181,39,679,1,15.8,77.94,927,8.6 +2013,9,22,8,30,409,55,857,1.6,19.1,65.59,927,8 +2013,9,22,9,30,618,64,938,2,22.1,53.85,927,7 +2013,9,22,10,30,783,70,982,1.8,23.900000000000002,43.410000000000004,927,6.7 +2013,9,22,11,30,890,73,1004,1.7000000000000002,25.200000000000003,35.550000000000004,926,7.2 +2013,9,22,12,30,929,76,1009,1.9000000000000001,26.1,32.3,925,7.5 +2013,9,22,13,30,897,74,1004,2.2,26.700000000000003,34.97,924,7.5 +2013,9,22,14,30,801,71,990,2.7,26.700000000000003,42.45,923,7.2 +2013,9,22,15,30,640,67,945,3.1,26.3,52.7,923,6.9 +2013,9,22,16,30,434,58,868,3.1,25,64.35,922,6.6000000000000005 +2013,9,22,17,30,205,42,704,2.8000000000000003,24.200000000000003,76.67,922,7.9 +2013,9,22,18,30,0,0,0,1.6,18.900000000000002,89.01,922,10.3 +2013,9,22,19,30,0,0,0,1.6,17.400000000000002,102.02,923,9.600000000000001 +2013,9,22,20,30,0,0,0,1.7000000000000002,16.5,114.41,923,9.4 +2013,9,22,21,30,0,0,0,1.7000000000000002,15.700000000000001,126.18,923,9.3 +2013,9,22,22,30,0,0,0,1.8,15.100000000000001,136.65,923,9.200000000000001 +2013,9,22,23,30,0,0,0,1.9000000000000001,14.600000000000001,144.54,923,9.200000000000001 +2013,9,23,0,30,0,0,0,2.1,14.100000000000001,147.82,923,9.200000000000001 +2013,9,23,1,30,0,0,0,2.3000000000000003,13.600000000000001,145.15,923,9.4 +2013,9,23,2,30,0,0,0,2.6,13.100000000000001,137.66,923,9.8 +2013,9,23,3,30,0,0,0,2.8000000000000003,12.700000000000001,127.4,923,10.100000000000001 +2013,9,23,4,30,0,0,0,3.1,12.3,115.74000000000001,922,10.3 +2013,9,23,5,30,0,0,0,3.2,11.9,103.4,922,10.3 +2013,9,23,6,30,0,0,0,3.6,12.4,90.22,922,10.4 +2013,9,23,7,30,169,44,604,3.9000000000000004,14.700000000000001,78.07000000000001,923,10.700000000000001 +2013,9,23,8,30,388,65,785,4.2,18.6,65.75,923,11.3 +2013,9,23,9,30,589,78,871,4.800000000000001,22.8,54.050000000000004,923,10.700000000000001 +2013,9,23,10,30,749,86,916,4.7,25.6,43.660000000000004,922,9.4 +2013,9,23,11,30,851,90,939,4.4,27.5,35.88,922,10 +2013,9,23,12,30,889,92,946,4.1000000000000005,28.900000000000002,32.68,921,10.9 +2013,9,23,13,30,859,92,941,4,29.900000000000002,35.36,920,11.700000000000001 +2013,9,23,14,30,762,88,919,3.7,30.400000000000002,42.81,919,12.3 +2013,9,23,15,30,605,83,868,3.4000000000000004,30.400000000000002,53.03,919,12.5 +2013,9,23,16,30,405,73,776,2.6,29.400000000000002,64.65,919,12.600000000000001 +2013,9,23,17,30,184,52,587,2,28.5,76.96000000000001,919,14.9 +2013,9,23,18,30,0,0,0,1.7000000000000002,23.6,89.27,920,15.3 +2013,9,23,19,30,0,0,0,1.8,22.1,102.3,921,13.600000000000001 +2013,9,23,20,30,0,0,0,1.7000000000000002,20.900000000000002,114.71000000000001,922,13.100000000000001 +2013,9,23,21,30,0,0,0,1.7000000000000002,19.900000000000002,126.5,922,12.600000000000001 +2013,9,23,22,30,0,0,0,1.7000000000000002,19,137.01,923,12.3 +2013,9,23,23,30,0,0,0,1.7000000000000002,18.1,144.93,923,12.100000000000001 +2013,9,24,0,30,0,0,0,1.5,17.2,148.21,923,11.8 +2013,9,24,1,30,0,0,0,1.1,16.3,145.48,924,11.5 +2013,9,24,2,30,0,0,0,1,15.4,137.91,924,11.100000000000001 +2013,9,24,3,30,0,0,0,1.2000000000000002,14.700000000000001,127.59,924,10.9 +2013,9,24,4,30,0,0,0,1.7000000000000002,14.3,115.9,925,11 +2013,9,24,5,30,0,0,0,2.3000000000000003,14.200000000000001,103.54,925,11.5 +2013,9,24,6,30,0,0,0,3.2,15.100000000000001,90.91,926,12 +2013,9,24,7,30,167,46,594,3.9000000000000004,17.7,78.21000000000001,927,12.600000000000001 +2013,9,24,8,30,388,66,789,4.3,21.3,65.91,928,13 +2013,9,24,9,30,593,78,882,5,25,54.24,928,12.9 +2013,9,24,10,30,756,85,932,5.2,27.5,43.910000000000004,928,11.600000000000001 +2013,9,24,11,30,860,88,957,4.9,28.900000000000002,36.2,928,11 +2013,9,24,12,30,902,86,974,4.4,29.6,33.07,927,10.8 +2013,9,24,13,30,870,83,969,3.9000000000000004,30,35.76,926,10.5 +2013,9,24,14,30,771,79,948,3.7,29.900000000000002,43.18,926,10.100000000000001 +2013,9,24,15,30,612,73,902,3.4000000000000004,29.3,53.36,926,9.700000000000001 +2013,9,24,16,30,411,62,824,2.8000000000000003,28,64.95,925,9.4 +2013,9,24,17,30,187,44,650,2.3000000000000003,27.1,77.24,926,11.5 +2013,9,24,18,30,0,0,0,1.4000000000000001,21.8,89.51,926,12.9 +2013,9,24,19,30,0,0,0,1.4000000000000001,20.3,102.59,926,11.5 +2013,9,24,20,30,0,0,0,1.4000000000000001,19.5,115.01,927,10.9 +2013,9,24,21,30,0,0,0,1.3,18.900000000000002,126.82000000000001,927,10.4 +2013,9,24,22,30,0,0,0,1.3,18.400000000000002,137.36,927,9.9 +2013,9,24,23,30,0,0,0,1.2000000000000002,18.1,145.32,927,9.4 +2013,9,25,0,30,0,0,0,1.1,17.900000000000002,148.6,927,9 +2013,9,25,1,30,0,0,0,1.1,17.7,145.81,927,8.6 +2013,9,25,2,30,0,0,0,1.1,17.3,138.16,926,8.3 +2013,9,25,3,30,0,0,0,1.2000000000000002,16.7,127.79,926,8.1 +2013,9,25,4,30,0,0,0,1.3,16,116.06,926,8 +2013,9,25,5,30,0,0,0,1.3,15.3,103.68,926,8.1 +2013,9,25,6,30,0,0,0,1.5,16.2,91.04,926,8.4 +2013,9,25,7,30,168,42,624,2.2,19.200000000000003,78.36,926,10.5 +2013,9,25,8,30,392,62,813,2.9000000000000004,22.900000000000002,66.07000000000001,926,10.4 +2013,9,25,9,30,595,75,895,3.3000000000000003,26.5,54.44,926,11.8 +2013,9,25,10,30,755,83,937,3.6,29,44.160000000000004,926,12 +2013,9,25,11,30,857,89,956,3.6,30.200000000000003,36.53,925,12.3 +2013,9,25,12,30,894,92,961,3.6,31.1,33.46,924,12.4 +2013,9,25,13,30,859,91,950,3.7,31.700000000000003,36.15,922,12.5 +2013,9,25,14,30,756,88,921,3.7,31.900000000000002,43.54,922,12.600000000000001 +2013,9,25,15,30,597,84,865,3.7,31.5,53.68,921,12.700000000000001 +2013,9,25,16,30,393,74,764,3.3000000000000003,30.3,65.26,921,13 +2013,9,25,17,30,173,53,556,2.8000000000000003,29.5,77.53,921,14.5 +2013,9,25,18,30,0,0,0,2.8000000000000003,25.1,89.76,921,15.700000000000001 +2013,9,25,19,30,0,0,0,3.8000000000000003,24.3,102.87,921,15.600000000000001 +2013,9,25,20,30,0,0,0,4.6000000000000005,23.700000000000003,115.31,922,15.9 +2013,9,25,21,30,0,0,0,4.9,22.900000000000002,127.14,922,15.9 +2013,9,25,22,30,0,0,0,5.1000000000000005,22.200000000000003,137.72,922,15.8 +2013,9,25,23,30,0,0,0,5.1000000000000005,21.5,145.71,922,15.5 +2013,9,26,0,30,0,0,0,4.9,20.8,148.99,922,15.100000000000001 +2013,9,26,1,30,0,0,0,4.7,20.1,146.14000000000001,922,14.9 +2013,9,26,2,30,0,0,0,4.3,19.3,138.41,922,14.700000000000001 +2013,9,26,3,30,0,0,0,3.9000000000000004,18.5,127.98,922,14.700000000000001 +2013,9,26,4,30,0,0,0,3.7,17.900000000000002,116.21000000000001,922,14.8 +2013,9,26,5,30,0,0,0,3.7,17.400000000000002,103.82000000000001,923,14.9 +2013,9,26,6,30,0,0,0,4,17.7,91.18,923,14.9 +2013,9,26,7,30,156,50,533,4.7,19.700000000000003,78.5,924,15 +2013,9,26,8,30,374,75,742,5.6000000000000005,23,66.23,924,15.4 +2013,9,26,9,30,576,89,840,6.2,26.1,54.63,924,15.8 +2013,9,26,10,30,734,99,889,6,28.400000000000002,44.42,924,15.5 +2013,9,26,11,30,837,105,915,5.7,30,36.86,924,15.200000000000001 +2013,9,26,12,30,882,88,957,5.4,31.1,33.85,923,15.100000000000001 +2013,9,26,13,30,849,87,948,5.2,31.6,36.54,923,14.9 +2013,9,26,14,30,751,83,927,5.1000000000000005,31.5,43.9,922,14.600000000000001 +2013,9,26,15,30,593,78,877,5.2,30.900000000000002,54.01,922,14.4 +2013,9,26,16,30,393,66,791,5,29.6,65.56,922,14.200000000000001 +2013,9,26,17,30,174,46,602,4.800000000000001,28.8,77.81,922,14.3 +2013,9,26,18,30,0,0,0,3.7,24.8,90,922,14.700000000000001 +2013,9,26,19,30,0,0,0,4,23.5,103.15,923,14.600000000000001 +2013,9,26,20,30,0,0,0,4.2,22.5,115.60000000000001,923,14.5 +2013,9,26,21,30,0,0,0,4.3,21.5,127.46000000000001,924,14.3 +2013,9,26,22,30,0,0,0,4.4,20.700000000000003,138.07,924,14.100000000000001 +2013,9,26,23,30,0,0,0,4.3,20,146.1,924,14 +2013,9,27,0,30,0,0,0,3.9000000000000004,19.3,149.38,924,13.9 +2013,9,27,1,30,0,0,0,3.5,18.7,146.47,924,14 +2013,9,27,2,30,0,0,0,3.4000000000000004,18.2,138.66,924,14.5 +2013,9,27,3,30,0,0,0,3.5,17.900000000000002,128.17000000000002,924,15.4 +2013,9,27,4,30,0,0,0,3.5,17.900000000000002,116.37,924,16.7 +2013,9,27,5,30,0,0,0,3.4000000000000004,18.1,103.96000000000001,924,17.8 +2013,9,27,6,30,0,0,0,3.7,18.8,91.31,924,18.7 +2013,9,27,7,30,148,54,480,4.6000000000000005,20.700000000000003,78.64,925,19.400000000000002 +2013,9,27,8,30,260,161,246,5.7,23.3,66.39,925,20.200000000000003 +2013,9,27,9,30,446,234,368,6.2,25.900000000000002,54.83,925,20.1 +2013,9,27,10,30,717,98,870,6.1000000000000005,28,44.67,924,19.700000000000003 +2013,9,27,11,30,820,99,905,6.1000000000000005,29.700000000000003,37.19,924,19.200000000000003 +2013,9,27,12,30,857,98,918,6,30.8,34.230000000000004,923,18.6 +2013,9,27,13,30,823,95,910,6.1000000000000005,31.5,36.94,922,18.3 +2013,9,27,14,30,725,89,887,6.2,31.5,44.26,921,18 +2013,9,27,15,30,569,81,836,6.2,31,54.34,921,18 +2013,9,27,16,30,372,69,741,6,29.8,65.86,921,18.3 +2013,9,27,17,30,159,48,540,5.800000000000001,29.1,78.10000000000001,921,18.8 +2013,9,27,18,30,0,0,0,4.5,26.1,90.25,922,19.5 +2013,9,27,19,30,0,0,0,4.2,24.8,103.44,922,19.900000000000002 +2013,9,27,20,30,0,0,0,4.2,24.1,115.9,923,20.3 +2013,9,27,21,30,0,0,0,4.6000000000000005,23.6,127.78,923,20.6 +2013,9,27,22,30,0,0,0,4.9,23.200000000000003,138.42000000000002,923,20.900000000000002 +2013,9,27,23,30,0,0,0,5,22.8,146.49,923,21.200000000000003 +2013,9,28,0,30,0,0,0,4.9,22.400000000000002,149.77,923,21.400000000000002 +2013,9,28,1,30,0,0,0,4.800000000000001,22.1,146.79,923,21.700000000000003 +2013,9,28,2,30,0,0,0,4.6000000000000005,21.900000000000002,138.91,924,21.8 +2013,9,28,3,30,0,0,0,4.1000000000000005,21.8,128.36,924,21.8 +2013,9,28,4,30,0,0,0,3.7,21.700000000000003,116.53,924,21.700000000000003 +2013,9,28,5,30,0,0,0,3.2,21.5,104.10000000000001,925,21.5 +2013,9,28,6,30,0,0,0,2.6,21.200000000000003,91.45,926,21.200000000000003 +2013,9,28,7,30,32,32,0,3,20.400000000000002,78.78,927,20.400000000000002 +2013,9,28,8,30,16,16,0,4.3,19.400000000000002,66.56,928,19.200000000000003 +2013,9,28,9,30,23,23,0,5.4,18.6,55.04,929,17 +2013,9,28,10,30,100,100,0,5.9,18.8,44.93,930,15.700000000000001 +2013,9,28,11,30,128,128,0,5.9,19.6,37.52,930,15.4 +2013,9,28,12,30,231,221,12,5.7,20.6,34.62,929,15.5 +2013,9,28,13,30,422,369,66,5.4,21.3,37.33,929,15.3 +2013,9,28,14,30,590,290,422,5.2,21.5,44.62,929,14.9 +2013,9,28,15,30,342,265,132,4.800000000000001,21.400000000000002,54.660000000000004,929,14.200000000000001 +2013,9,28,16,30,359,84,679,4.3,20.8,66.16,929,13.200000000000001 +2013,9,28,17,30,151,53,489,4,20.3,78.38,930,12.3 +2013,9,28,18,30,0,0,0,2.1,17.1,91.05,930,12.700000000000001 +2013,9,28,19,30,0,0,0,1.9000000000000001,15.9,103.72,931,12.3 +2013,9,28,20,30,0,0,0,1.7000000000000002,15,116.19,932,11.600000000000001 +2013,9,28,21,30,0,0,0,1.6,14.4,128.1,932,10.9 +2013,9,28,22,30,0,0,0,1.8,14,138.77,932,10.3 +2013,9,28,23,30,0,0,0,2,13.700000000000001,146.88,932,9.600000000000001 +2013,9,29,0,30,0,0,0,2.3000000000000003,13.4,150.16,932,9 +2013,9,29,1,30,0,0,0,2.3000000000000003,13,147.12,932,8.6 +2013,9,29,2,30,0,0,0,2.2,12.700000000000001,139.16,932,8.4 +2013,9,29,3,30,0,0,0,2,12.3,128.55,932,8.200000000000001 +2013,9,29,4,30,0,0,0,1.9000000000000001,11.8,116.69,932,8 +2013,9,29,5,30,0,0,0,1.8,11.3,104.24000000000001,932,7.800000000000001 +2013,9,29,6,30,0,0,0,2.3000000000000003,11.700000000000001,91.59,932,7.5 +2013,9,29,7,30,161,39,636,3,13.700000000000001,78.93,932,7.5 +2013,9,29,8,30,387,55,842,3.6,16.900000000000002,66.73,932,7.6000000000000005 +2013,9,29,9,30,596,63,935,4.1000000000000005,19.900000000000002,55.24,932,5.6000000000000005 +2013,9,29,10,30,760,69,979,4.1000000000000005,21.700000000000003,45.19,931,4.5 +2013,9,29,11,30,864,73,1002,3.6,23,37.85,931,4.6000000000000005 +2013,9,29,12,30,903,74,1012,3,24,35.01,930,4.800000000000001 +2013,9,29,13,30,869,73,1006,2.4000000000000004,24.5,37.72,929,4.9 +2013,9,29,14,30,766,70,984,1.9000000000000001,24.6,44.99,928,5 +2013,9,29,15,30,603,63,941,1.6,24.3,54.99,928,5 +2013,9,29,16,30,397,54,858,1.1,23.400000000000002,66.46000000000001,927,4.9 +2013,9,29,17,30,170,38,673,0.8,22.700000000000003,78.66,927,6.7 +2013,9,29,18,30,0,0,0,0.9,18.400000000000002,91.33,927,9.200000000000001 +2013,9,29,19,30,0,0,0,1.2000000000000002,16.5,104,927,7.9 +2013,9,29,20,30,0,0,0,1.3,15.200000000000001,116.48,928,7.7 +2013,9,29,21,30,0,0,0,1.4000000000000001,14.3,128.41,928,7.4 +2013,9,29,22,30,0,0,0,1.5,13.600000000000001,139.12,927,7.2 +2013,9,29,23,30,0,0,0,1.6,13,147.27,927,7 +2013,9,30,0,30,0,0,0,1.8,12.5,150.55,927,6.800000000000001 +2013,9,30,1,30,0,0,0,2,12.200000000000001,147.44,926,6.7 +2013,9,30,2,30,0,0,0,2.2,11.8,139.4,926,6.7 +2013,9,30,3,30,0,0,0,2.4000000000000004,11.5,128.74,925,6.7 +2013,9,30,4,30,0,0,0,2.4000000000000004,11.200000000000001,116.84,925,6.9 +2013,9,30,5,30,0,0,0,2.4000000000000004,10.9,104.38,925,7.1000000000000005 +2013,9,30,6,30,0,0,0,3,11.700000000000001,91.73,925,7.4 +2013,9,30,7,30,159,41,624,3.5,14.200000000000001,79.07000000000001,925,8.1 +2013,9,30,8,30,383,59,826,3.7,17.900000000000002,66.89,925,9.3 +2013,9,30,9,30,587,69,914,4.2,22,55.45,924,11 +2013,9,30,10,30,750,76,961,4.6000000000000005,25.6,45.46,924,11.9 +2013,9,30,11,30,853,80,984,4.5,28.200000000000003,38.18,924,11.3 +2013,9,30,12,30,886,82,987,4.3,29.8,35.4,923,10.4 +2013,9,30,13,30,851,81,979,4.1000000000000005,30.5,38.12,922,9.9 +2013,9,30,14,30,746,77,952,3.9000000000000004,30.700000000000003,45.35,922,9.600000000000001 +2013,9,30,15,30,585,72,903,3.5,30.200000000000003,55.32,921,9.4 +2013,9,30,16,30,381,61,811,2.8000000000000003,28.3,66.76,921,10.200000000000001 +2013,9,30,17,30,158,42,605,2.4000000000000004,26.900000000000002,78.94,921,14.100000000000001 +2013,9,30,18,30,0,0,0,3.1,22.3,91.60000000000001,922,13 +2013,9,30,19,30,0,0,0,3.9000000000000004,21.400000000000002,104.27,922,12.200000000000001 +2013,9,30,20,30,0,0,0,4.2,20.6,116.77,922,12.100000000000001 +2013,9,30,21,30,0,0,0,4.4,19.700000000000003,128.72,923,12.200000000000001 +2013,9,30,22,30,0,0,0,4.5,18.900000000000002,139.47,923,12.4 +2013,9,30,23,30,0,0,0,4.4,18.2,147.66,923,12.700000000000001 +2013,10,1,0,30,0,0,0,4.3,17.7,150.94,923,13.100000000000001 +2013,10,1,1,30,0,0,0,4.2,17.3,147.77,923,13.5 +2013,10,1,2,30,0,0,0,4.1000000000000005,17,139.64000000000001,923,13.700000000000001 +2013,10,1,3,30,0,0,0,4,16.7,128.93,923,13.9 +2013,10,1,4,30,0,0,0,3.7,16.3,117,923,14.100000000000001 +2013,10,1,5,30,0,0,0,3.5,15.9,104.52,923,14.3 +2013,10,1,6,30,0,0,0,3.8000000000000003,16.3,91.87,923,14.5 +2013,10,1,7,30,149,44,562,4,18.2,79.22,924,14.8 +2013,10,1,8,30,366,65,772,4.5,21.700000000000003,67.07000000000001,924,15.600000000000001 +2013,10,1,9,30,567,77,868,5.2,25.3,55.660000000000004,925,16.7 +2013,10,1,10,30,724,85,915,5.4,27.700000000000003,45.72,924,16.2 +2013,10,1,11,30,825,90,940,5.300000000000001,29.3,38.52,924,15.600000000000001 +2013,10,1,12,30,860,83,957,5.2,30.3,35.79,924,15.200000000000001 +2013,10,1,13,30,823,84,946,5.2,30.8,38.51,923,14.9 +2013,10,1,14,30,722,80,919,5.1000000000000005,30.8,45.71,922,14.8 +2013,10,1,15,30,563,74,866,4.9,30.3,55.64,922,14.8 +2013,10,1,16,30,362,63,769,4.3,29,67.06,922,15 +2013,10,1,17,30,147,43,557,3.8000000000000003,28.1,79.22,923,16 +2013,10,1,18,30,0,0,0,3.2,24.3,91.88,923,16.6 +2013,10,1,19,30,0,0,0,3.8000000000000003,23.3,104.55,924,16.6 +2013,10,1,20,30,0,0,0,4.1000000000000005,22.400000000000002,117.05,924,16.7 +2013,10,1,21,30,0,0,0,4.2,21.5,129.03,925,17 +2013,10,1,22,30,0,0,0,4.2,20.700000000000003,139.82,925,17.2 +2013,10,1,23,30,0,0,0,4.1000000000000005,19.900000000000002,148.04,925,17.400000000000002 +2013,10,2,0,30,0,0,0,3.9000000000000004,19.3,151.33,925,17.6 +2013,10,2,1,30,0,0,0,3.7,18.7,148.09,925,17.8 +2013,10,2,2,30,0,0,0,3.5,18.1,139.89000000000001,924,18 +2013,10,2,3,30,0,0,0,3.2,17.7,129.12,924,17.7 +2013,10,2,4,30,0,0,0,3,17.6,117.15,924,17.6 +2013,10,2,5,30,0,0,0,2.9000000000000004,17.6,104.66,925,17.6 +2013,10,2,6,30,0,0,0,3.2,18.1,92.01,925,18.1 +2013,10,2,7,30,139,52,473,4,20.1,79.37,926,18.7 +2013,10,2,8,30,352,79,707,4.9,23,67.24,926,19.5 +2013,10,2,9,30,553,92,821,5.300000000000001,25.8,55.870000000000005,926,19.900000000000002 +2013,10,2,10,30,712,98,884,5.4,28,45.99,926,19.5 +2013,10,2,11,30,814,100,917,5.300000000000001,29.6,38.85,925,18.900000000000002 +2013,10,2,12,30,852,92,941,5.300000000000001,30.700000000000003,36.17,924,18.2 +2013,10,2,13,30,814,92,928,5.2,31.400000000000002,38.9,923,17.5 +2013,10,2,14,30,712,90,897,5.2,31.5,46.07,922,16.900000000000002 +2013,10,2,15,30,556,79,852,5,31.1,55.97,922,16.400000000000002 +2013,10,2,16,30,355,68,745,4.4,29.900000000000002,67.35,922,15.9 +2013,10,2,17,30,140,46,515,3.9000000000000004,29.1,79.5,922,16.5 +2013,10,2,18,30,0,0,0,3.8000000000000003,25.5,92.15,923,17.1 +2013,10,2,19,30,0,0,0,4.3,24.6,104.82000000000001,923,17.2 +2013,10,2,20,30,0,0,0,4.6000000000000005,23.8,117.34,924,17.5 +2013,10,2,21,30,0,0,0,4.6000000000000005,22.900000000000002,129.34,924,17.8 +2013,10,2,22,30,0,0,0,4.4,22,140.16,924,18 +2013,10,2,23,30,0,0,0,4.4,21.200000000000003,148.43,924,18.1 +2013,10,3,0,30,0,0,0,4.3,20.6,151.72,924,18.2 +2013,10,3,1,30,0,0,0,4.2,20,148.4,924,18.3 +2013,10,3,2,30,0,0,0,4,19.400000000000002,140.13,924,18.3 +2013,10,3,3,30,0,0,0,3.7,18.8,129.3,924,18.3 +2013,10,3,4,30,0,0,0,3.6,18.3,117.31,924,18.3 +2013,10,3,5,30,0,0,0,3.7,18.1,104.8,924,18.1 +2013,10,3,6,30,0,0,0,4.2,18.5,92.15,924,18.2 +2013,10,3,7,30,139,48,500,5.1000000000000005,20.400000000000002,79.52,925,18.3 +2013,10,3,8,30,353,71,734,5.800000000000001,23.400000000000002,67.41,925,18.6 +2013,10,3,9,30,552,84,837,6.2,26.200000000000003,56.08,925,18.6 +2013,10,3,10,30,707,93,888,6.2,28.400000000000002,46.25,924,18.1 +2013,10,3,11,30,805,99,911,6,30.1,39.19,924,17.7 +2013,10,3,12,30,844,83,948,5.800000000000001,31.3,36.56,923,17.2 +2013,10,3,13,30,807,85,933,5.7,32,39.29,922,16.8 +2013,10,3,14,30,706,83,902,5.6000000000000005,32.1,46.42,921,16.400000000000002 +2013,10,3,15,30,548,75,852,5.5,31.6,56.29,921,16.1 +2013,10,3,16,30,350,63,754,5.1000000000000005,30.3,67.65,921,15.700000000000001 +2013,10,3,17,30,136,42,529,4.7,29.400000000000002,79.78,921,15.9 +2013,10,3,18,30,0,0,0,4,25.700000000000003,92.42,921,16 +2013,10,3,19,30,0,0,0,4.2,24.3,105.10000000000001,922,15.9 +2013,10,3,20,30,0,0,0,4.4,23.400000000000002,117.62,922,16 +2013,10,3,21,30,0,0,0,4.4,22.8,129.64000000000001,922,16.2 +2013,10,3,22,30,0,0,0,4.4,22.3,140.5,922,16.5 +2013,10,3,23,30,0,0,0,4.3,21.8,148.81,922,16.8 +2013,10,4,0,30,0,0,0,4.2,21.400000000000002,152.1,923,17.1 +2013,10,4,1,30,0,0,0,4.1000000000000005,21,148.72,923,17.400000000000002 +2013,10,4,2,30,0,0,0,4,20.6,140.36,923,17.7 +2013,10,4,3,30,0,0,0,3.9000000000000004,20.1,129.49,923,18.1 +2013,10,4,4,30,0,0,0,3.9000000000000004,19.8,117.46000000000001,923,18.5 +2013,10,4,5,30,0,0,0,3.8000000000000003,19.6,104.95,923,18.8 +2013,10,4,6,30,0,0,0,3.9000000000000004,19.700000000000003,92.29,923,19.1 +2013,10,4,7,30,67,63,22,4.7,20.700000000000003,79.67,924,19.400000000000002 +2013,10,4,8,30,257,147,288,5.800000000000001,22.400000000000002,67.59,924,19.6 +2013,10,4,9,30,534,98,786,6.2,24.400000000000002,56.29,924,19.400000000000002 +2013,10,4,10,30,690,105,850,6.1000000000000005,26.1,46.52,924,18.900000000000002 +2013,10,4,11,30,790,108,884,5.800000000000001,27.5,39.52,924,18.2 +2013,10,4,12,30,576,400,221,5.5,28.700000000000003,36.94,923,17.6 +2013,10,4,13,30,719,270,584,5.300000000000001,29.900000000000002,39.67,922,17.1 +2013,10,4,14,30,582,257,475,5.2,30.700000000000003,46.78,922,16.8 +2013,10,4,15,30,380,244,247,5.1000000000000005,30.900000000000002,56.61,921,16.5 +2013,10,4,16,30,338,68,720,4.5,30,67.95,921,16.3 +2013,10,4,17,30,128,44,487,4.1000000000000005,29.200000000000003,80.06,922,16.7 +2013,10,4,18,30,0,0,0,3.7,25.700000000000003,92.69,922,16.900000000000002 +2013,10,4,19,30,0,0,0,4,24.8,105.36,923,16.8 +2013,10,4,20,30,0,0,0,4.3,24.1,117.9,923,16.8 +2013,10,4,21,30,0,0,0,4.4,23.5,129.94,924,16.900000000000002 +2013,10,4,22,30,0,0,0,4.3,22.700000000000003,140.84,924,17.1 +2013,10,4,23,30,0,0,0,3.8000000000000003,21.8,149.19,924,17.3 +2013,10,5,0,30,0,0,0,3,21.200000000000003,152.49,924,17.400000000000002 +2013,10,5,1,30,0,0,0,2.1,20.5,149.04,925,17.2 +2013,10,5,2,30,0,0,0,2.4000000000000004,19.5,140.6,926,16.400000000000002 +2013,10,5,3,30,0,0,0,3.7,18.2,129.67000000000002,927,14.600000000000001 +2013,10,5,4,30,0,0,0,5,16.400000000000002,117.62,927,11.8 +2013,10,5,5,30,0,0,0,5.800000000000001,14.3,105.09,929,8.200000000000001 +2013,10,5,6,30,0,0,0,6.2,12.5,92.43,930,4.5 +2013,10,5,7,30,126,57,391,6.300000000000001,12,79.82000000000001,931,1.6 +2013,10,5,8,30,51,51,0,6.300000000000001,12.9,67.76,931,0.1 +2013,10,5,9,30,361,249,202,6.1000000000000005,14.4,56.51,932,0.30000000000000004 +2013,10,5,10,30,96,96,0,5.800000000000001,15.9,46.79,932,1.1 +2013,10,5,11,30,101,101,0,5.5,17.5,39.86,932,2 +2013,10,5,12,30,665,344,404,5.1000000000000005,18.8,37.33,931,2.8000000000000003 +2013,10,5,13,30,798,102,909,4.9,19.900000000000002,40.06,931,3.5 +2013,10,5,14,30,431,328,152,4.7,20.5,47.14,930,4 +2013,10,5,15,30,546,83,848,4.6000000000000005,20.400000000000002,56.93,930,4 +2013,10,5,16,30,348,65,765,4.1000000000000005,19.6,68.24,930,3.4000000000000004 +2013,10,5,17,30,134,40,560,3.8000000000000003,19,80.33,930,2.9000000000000004 +2013,10,5,18,30,0,0,0,1.4000000000000001,14.5,92.96000000000001,931,4.9 +2013,10,5,19,30,0,0,0,1.2000000000000002,13,105.63,932,5.1000000000000005 +2013,10,5,20,30,0,0,0,1.1,12.100000000000001,118.18,932,4.9 +2013,10,5,21,30,0,0,0,1,11.3,130.24,933,4.6000000000000005 +2013,10,5,22,30,0,0,0,1.1,10.700000000000001,141.17000000000002,933,4.2 +2013,10,5,23,30,0,0,0,1.1,10.100000000000001,149.57,933,3.6 +2013,10,6,0,30,0,0,0,1.2000000000000002,9.5,152.87,933,3 +2013,10,6,1,30,0,0,0,1.2000000000000002,8.8,149.35,933,2.3000000000000003 +2013,10,6,2,30,0,0,0,1.3,8.3,140.84,933,1.8 +2013,10,6,3,30,0,0,0,1.4000000000000001,7.800000000000001,129.85,933,1.2000000000000002 +2013,10,6,4,30,0,0,0,1.7000000000000002,7.4,117.77,933,0.7000000000000001 +2013,10,6,5,30,0,0,0,1.9000000000000001,7.2,105.23,933,0.2 +2013,10,6,6,30,0,0,0,2.5,8.1,92.57000000000001,933,-0.4 +2013,10,6,7,30,152,35,668,3.3000000000000003,10.600000000000001,79.98,934,-0.8 +2013,10,6,8,30,380,53,871,4,14.3,67.94,934,-1.1 +2013,10,6,9,30,588,64,957,4.4,17.6,56.72,935,-2.7 +2013,10,6,10,30,752,70,1002,4.3,19.700000000000003,47.07,934,-4 +2013,10,6,11,30,850,74,1017,3.9000000000000004,21.3,40.2,934,-3.9000000000000004 +2013,10,6,12,30,885,76,1023,3.6,22.5,37.71,933,-3.6 +2013,10,6,13,30,843,74,1010,3.5,23.400000000000002,40.45,933,-3.2 +2013,10,6,14,30,737,70,987,3.5,23.8,47.49,932,-2.9000000000000004 +2013,10,6,15,30,568,64,933,3.2,23.700000000000003,57.25,932,-2.9000000000000004 +2013,10,6,16,30,361,53,841,2.1,22.5,68.53,931,-2.9000000000000004 +2013,10,6,17,30,136,35,621,1.2000000000000002,21.5,80.60000000000001,931,4.3 +2013,10,6,18,30,0,0,0,0.7000000000000001,19,93.22,932,2.7 +2013,10,6,19,30,0,0,0,0.5,18.400000000000002,105.9,932,0.30000000000000004 +2013,10,6,20,30,0,0,0,0.6000000000000001,17.400000000000002,118.45,932,0 +2013,10,6,21,30,0,0,0,0.9,15.9,130.54,932,-0.1 +2013,10,6,22,30,0,0,0,1.2000000000000002,14.3,141.51,933,0.7000000000000001 +2013,10,6,23,30,0,0,0,1.3,12.8,149.95000000000002,933,1.1 +2013,10,7,0,30,0,0,0,1.4000000000000001,11.8,153.25,933,1.3 +2013,10,7,1,30,0,0,0,1.5,11.200000000000001,149.66,933,1.1 +2013,10,7,2,30,0,0,0,1.5,10.9,141.07,933,0.9 +2013,10,7,3,30,0,0,0,1.6,10.600000000000001,130.03,933,0.6000000000000001 +2013,10,7,4,30,0,0,0,1.6,10.200000000000001,117.93,933,0.4 +2013,10,7,5,30,0,0,0,1.6,9.8,105.37,933,0.4 +2013,10,7,6,30,0,0,0,1.7000000000000002,10.5,92.72,933,0.7000000000000001 +2013,10,7,7,30,143,33,640,2.2,13.3,80.13,934,1.8 +2013,10,7,8,30,363,48,845,2.3000000000000003,16.900000000000002,68.12,934,1.5 +2013,10,7,9,30,566,57,933,1.9000000000000001,20.900000000000002,56.94,934,2.6 +2013,10,7,10,30,725,62,979,1.8,23.900000000000002,47.34,934,2.8000000000000003 +2013,10,7,11,30,824,66,997,1.8,25.400000000000002,40.53,933,3.5 +2013,10,7,12,30,858,75,995,1.8,26.200000000000003,38.1,932,4 +2013,10,7,13,30,821,75,986,1.9000000000000001,26.700000000000003,40.83,931,4.2 +2013,10,7,14,30,714,71,958,1.9000000000000001,26.700000000000003,47.84,931,4.3 +2013,10,7,15,30,551,68,901,1.9000000000000001,26.200000000000003,57.57,931,4.3 +2013,10,7,16,30,346,56,801,1.6,24.8,68.82000000000001,931,4.3 +2013,10,7,17,30,127,36,572,1.2000000000000002,23.700000000000003,80.87,931,7.800000000000001 +2013,10,7,18,30,0,0,0,1.2000000000000002,18.3,93.49,931,8.5 +2013,10,7,19,30,0,0,0,1.4000000000000001,16.900000000000002,106.16,931,7.1000000000000005 +2013,10,7,20,30,0,0,0,1.4000000000000001,16,118.72,931,6.7 +2013,10,7,21,30,0,0,0,1.4000000000000001,15.100000000000001,130.83,931,6.300000000000001 +2013,10,7,22,30,0,0,0,1.4000000000000001,14.3,141.84,931,6.1000000000000005 +2013,10,7,23,30,0,0,0,1.5,13.600000000000001,150.32,931,5.800000000000001 +2013,10,8,0,30,0,0,0,1.5,12.9,153.63,931,5.6000000000000005 +2013,10,8,1,30,0,0,0,1.5,12.3,149.97,931,5.5 +2013,10,8,2,30,0,0,0,1.5,11.8,141.3,930,5.300000000000001 +2013,10,8,3,30,0,0,0,1.5,11.3,130.22,930,5.2 +2013,10,8,4,30,0,0,0,1.4000000000000001,10.9,118.08,930,5 +2013,10,8,5,30,0,0,0,1.3,10.5,105.52,930,4.9 +2013,10,8,6,30,0,0,0,1.4000000000000001,11.100000000000001,92.86,930,4.800000000000001 +2013,10,8,7,30,139,36,610,2,13.8,80.29,930,5.6000000000000005 +2013,10,8,8,30,360,55,824,2.3000000000000003,17.5,68.3,930,5.5 +2013,10,8,9,30,563,66,917,2.9000000000000004,21.900000000000002,57.160000000000004,930,5.9 +2013,10,8,10,30,723,73,964,3.7,25.5,47.62,930,3.4000000000000004 +2013,10,8,11,30,824,77,987,3.8000000000000003,27.1,40.87,929,3.5 +2013,10,8,12,30,751,256,633,3.9000000000000004,28,38.480000000000004,928,3.7 +2013,10,8,13,30,721,232,650,3.9000000000000004,28.6,41.21,927,3.8000000000000003 +2013,10,8,14,30,610,204,610,3.9000000000000004,28.5,48.2,926,3.8000000000000003 +2013,10,8,15,30,520,80,828,3.8000000000000003,27.700000000000003,57.89,926,3.9000000000000004 +2013,10,8,16,30,342,61,789,3.1,26,69.11,926,4.2 +2013,10,8,17,30,113,37,492,2.4000000000000004,24.700000000000003,81.14,926,7 +2013,10,8,18,30,0,0,0,2.2,19.5,93.75,926,7.300000000000001 +2013,10,8,19,30,0,0,0,2.6,18.5,106.42,926,6.800000000000001 +2013,10,8,20,30,0,0,0,3,17.7,118.99000000000001,927,6.7 +2013,10,8,21,30,0,0,0,3.3000000000000003,16.8,131.12,927,6.9 +2013,10,8,22,30,0,0,0,3.4000000000000004,15.8,142.16,926,7 +2013,10,8,23,30,0,0,0,3.4000000000000004,14.9,150.70000000000002,927,7.1000000000000005 +2013,10,9,0,30,0,0,0,3.4000000000000004,14.100000000000001,154.01,927,7.2 +2013,10,9,1,30,0,0,0,3.3000000000000003,13.4,150.28,927,7.2 +2013,10,9,2,30,0,0,0,3.1,12.8,141.53,927,7.2 +2013,10,9,3,30,0,0,0,2.9000000000000004,12.200000000000001,130.39000000000001,927,7.2 +2013,10,9,4,30,0,0,0,2.8000000000000003,11.8,118.23,927,7.1000000000000005 +2013,10,9,5,30,0,0,0,2.9000000000000004,11.5,105.66,927,7.2 +2013,10,9,6,30,0,0,0,3.3000000000000003,11.8,93.01,928,7.6000000000000005 +2013,10,9,7,30,97,55,252,3.9000000000000004,13.700000000000001,80.45,928,8.4 +2013,10,9,8,30,265,129,372,5,17.1,68.49,929,10 +2013,10,9,9,30,553,73,891,6,20.700000000000003,57.39,929,11.700000000000001 +2013,10,9,10,30,698,99,894,6,23.5,47.89,928,11.3 +2013,10,9,11,30,810,84,964,5.7,25.6,41.21,928,10.600000000000001 +2013,10,9,12,30,843,84,974,5.4,27,38.86,927,10.100000000000001 +2013,10,9,13,30,802,82,963,5.2,28,41.59,926,9.700000000000001 +2013,10,9,14,30,695,80,930,5,28.200000000000003,48.550000000000004,926,9.4 +2013,10,9,15,30,533,70,878,4.800000000000001,27.700000000000003,58.2,925,9.200000000000001 +2013,10,9,16,30,330,59,769,4,26.200000000000003,69.4,925,9.200000000000001 +2013,10,9,17,30,114,37,517,3.4000000000000004,25.200000000000003,81.41,925,10.100000000000001 +2013,10,9,18,30,0,0,0,3,21.1,94.01,926,10.5 +2013,10,9,19,30,0,0,0,3.6,20.3,106.68,926,10.3 +2013,10,9,20,30,0,0,0,4.1000000000000005,19.3,119.26,927,10.3 +2013,10,9,21,30,0,0,0,4.3,18.3,131.41,927,10.4 +2013,10,9,22,30,0,0,0,4.2,17.400000000000002,142.49,927,10.600000000000001 +2013,10,9,23,30,0,0,0,4.1000000000000005,16.6,151.07,927,10.700000000000001 +2013,10,10,0,30,0,0,0,3.8000000000000003,15.9,154.39000000000001,927,10.9 +2013,10,10,1,30,0,0,0,3.5,15.200000000000001,150.59,927,11.100000000000001 +2013,10,10,2,30,0,0,0,3.4000000000000004,14.700000000000001,141.76,927,11.4 +2013,10,10,3,30,0,0,0,3.4000000000000004,14.3,130.57,927,11.9 +2013,10,10,4,30,0,0,0,3.4000000000000004,14,118.39,927,12.600000000000001 +2013,10,10,5,30,0,0,0,3.4000000000000004,13.8,105.8,927,13.4 +2013,10,10,6,30,0,0,0,3.7,14.3,93.15,927,14.200000000000001 +2013,10,10,7,30,120,48,443,4.6000000000000005,16.1,80.61,928,14.700000000000001 +2013,10,10,8,30,330,77,695,5.800000000000001,19.1,68.67,928,15.5 +2013,10,10,9,30,528,90,819,6.300000000000001,22,57.61,928,15.9 +2013,10,10,10,30,687,93,890,6.2,24.5,48.17,927,15.600000000000001 +2013,10,10,11,30,785,93,925,6.2,26.6,41.550000000000004,926,15 +2013,10,10,12,30,821,81,956,6.2,28.200000000000003,39.24,925,14.200000000000001 +2013,10,10,13,30,783,81,943,6.2,29.1,41.97,924,13.5 +2013,10,10,14,30,677,79,909,6.300000000000001,29.400000000000002,48.89,923,12.9 +2013,10,10,15,30,516,71,853,6.4,29.1,58.52,922,12.4 +2013,10,10,16,30,316,60,739,6,27.900000000000002,69.68,922,12 +2013,10,10,17,30,106,37,480,5.7,27.1,81.67,922,12 +2013,10,10,18,30,0,0,0,4.3,23.3,94.26,922,12.4 +2013,10,10,19,30,0,0,0,4.6000000000000005,21.8,106.93,923,12.700000000000001 +2013,10,10,20,30,0,0,0,4.800000000000001,20.8,119.52,923,12.9 +2013,10,10,21,30,0,0,0,5,19.900000000000002,131.69,923,13.200000000000001 +2013,10,10,22,30,0,0,0,5,19.200000000000003,142.81,923,13.5 +2013,10,10,23,30,0,0,0,4.800000000000001,18.7,151.43,923,13.9 +2013,10,11,0,30,0,0,0,4.3,18.3,154.77,923,14.3 +2013,10,11,1,30,0,0,0,4.2,17.900000000000002,150.89000000000001,923,14.600000000000001 +2013,10,11,2,30,0,0,0,4.3,17.6,141.98,923,15.100000000000001 +2013,10,11,3,30,0,0,0,3.7,17.1,130.75,923,15.4 +2013,10,11,4,30,0,0,0,3,16.5,118.54,924,15.700000000000001 +2013,10,11,5,30,0,0,0,2.6,16.1,105.95,924,15.9 +2013,10,11,6,30,0,0,0,2.8000000000000003,16.3,93.3,924,16 +2013,10,11,7,30,119,44,472,3.7,18.1,80.77,925,16.1 +2013,10,11,8,30,332,67,734,4.4,21.1,68.86,925,15.9 +2013,10,11,9,30,533,76,858,4.2,23.900000000000002,57.83,925,14.5 +2013,10,11,10,30,694,80,925,3.7,26.5,48.45,925,12.4 +2013,10,11,11,30,796,81,960,3.7,28.6,41.88,924,10.100000000000001 +2013,10,11,12,30,827,84,963,3.8000000000000003,30,39.61,924,7.800000000000001 +2013,10,11,13,30,791,81,962,3.8000000000000003,30.700000000000003,42.34,923,6.1000000000000005 +2013,10,11,14,30,687,75,937,3.8000000000000003,30.8,49.24,922,5 +2013,10,11,15,30,526,69,884,3.6,30.3,58.83,922,4.5 +2013,10,11,16,30,325,57,782,2.6,28.400000000000002,69.96000000000001,922,4.4 +2013,10,11,17,30,109,35,530,1.7000000000000002,27,81.93,922,8.8 +2013,10,11,18,30,0,0,0,1.4000000000000001,21.6,94.51,923,8.8 +2013,10,11,19,30,0,0,0,1.4000000000000001,20.400000000000002,107.18,924,8.1 +2013,10,11,20,30,0,0,0,1.4000000000000001,19.5,119.78,924,7.800000000000001 +2013,10,11,21,30,0,0,0,1.4000000000000001,18.7,131.97,924,7.7 +2013,10,11,22,30,0,0,0,1.5,17.8,143.12,925,7.6000000000000005 +2013,10,11,23,30,0,0,0,1.5,17.1,151.8,925,7.6000000000000005 +2013,10,12,0,30,0,0,0,1.6,16.400000000000002,155.14000000000001,925,7.6000000000000005 +2013,10,12,1,30,0,0,0,1.7000000000000002,15.700000000000001,151.20000000000002,926,7.5 +2013,10,12,2,30,0,0,0,1.6,15,142.21,926,6.9 +2013,10,12,3,30,0,0,0,1.5,14.3,130.93,927,6 +2013,10,12,4,30,0,0,0,1.3,13.700000000000001,118.69,927,5 +2013,10,12,5,30,0,0,0,1.3,13.200000000000001,106.09,928,4 +2013,10,12,6,30,0,0,0,1.6,13.4,93.45,928,3.3000000000000003 +2013,10,12,7,30,120,42,492,2.3000000000000003,15.3,80.92,929,2.5 +2013,10,12,8,30,332,66,743,2.7,18.2,69.04,929,1.2000000000000002 +2013,10,12,9,30,529,80,850,2.7,21.6,58.06,929,2.2 +2013,10,12,10,30,686,87,908,2.1,24.8,48.730000000000004,929,4.4 +2013,10,12,11,30,784,90,938,1.6,27.200000000000003,42.22,929,7.2 +2013,10,12,12,30,816,88,950,1.6,28.6,39.99,929,8.4 +2013,10,12,13,30,778,85,943,1.8,29.3,42.72,928,8.9 +2013,10,12,14,30,674,81,915,2.2,29.400000000000002,49.58,928,9 +2013,10,12,15,30,512,72,857,2.7,28.8,59.13,928,8.9 +2013,10,12,16,30,311,59,746,2.7,27.200000000000003,70.24,928,8.700000000000001 +2013,10,12,17,30,101,35,484,2.4000000000000004,26.1,82.19,928,10.100000000000001 +2013,10,12,18,30,0,0,0,2.9000000000000004,21.900000000000002,94.77,929,9.700000000000001 +2013,10,12,19,30,0,0,0,3.6,21,107.43,930,8.700000000000001 +2013,10,12,20,30,0,0,0,3.9000000000000004,20.200000000000003,120.03,930,8.5 +2013,10,12,21,30,0,0,0,3.7,19.3,132.24,931,8.9 +2013,10,12,22,30,0,0,0,3.4000000000000004,18.400000000000002,143.44,931,9.700000000000001 +2013,10,12,23,30,0,0,0,3.1,17.6,152.16,931,10.600000000000001 +2013,10,13,0,30,0,0,0,3,17,155.51,932,11.5 +2013,10,13,1,30,0,0,0,3.1,16.5,151.5,932,12.200000000000001 +2013,10,13,2,30,0,0,0,3.1,16.2,142.43,932,13 +2013,10,13,3,30,0,0,0,2.9000000000000004,15.8,131.1,932,13.8 +2013,10,13,4,30,0,0,0,2.8000000000000003,15.600000000000001,118.84,932,14.4 +2013,10,13,5,30,0,0,0,2.8000000000000003,15.5,106.23,932,14.8 +2013,10,13,6,30,0,0,0,2.8000000000000003,15.5,93.59,932,15.100000000000001 +2013,10,13,7,30,39,39,0,3,15.9,81.09,933,15.3 +2013,10,13,8,30,137,130,20,3.2,16.8,69.23,933,15.8 +2013,10,13,9,30,246,219,51,3.3000000000000003,18,58.29,934,16.400000000000002 +2013,10,13,10,30,254,241,20,3.5,19.200000000000003,49,933,17.2 +2013,10,13,11,30,229,221,11,3.7,20.200000000000003,42.56,933,17.900000000000002 +2013,10,13,12,30,299,283,22,4,20.900000000000002,40.36,932,18.5 +2013,10,13,13,30,393,340,73,4.2,21.200000000000003,43.09,931,18.900000000000002 +2013,10,13,14,30,280,259,33,4.3,21.200000000000003,49.92,931,19.1 +2013,10,13,15,30,283,226,111,3.9000000000000004,20.8,59.44,931,19.1 +2013,10,13,16,30,146,130,48,3.2,20,70.52,931,19.1 +2013,10,13,17,30,33,33,0,2.7,19.5,82.44,931,19 +2013,10,13,18,30,0,0,0,2.5,18.2,95.01,932,18.2 +2013,10,13,19,30,0,0,0,2.5,17.900000000000002,107.68,932,17.900000000000002 +2013,10,13,20,30,0,0,0,1.7000000000000002,17.6,120.29,932,17.6 +2013,10,13,21,30,0,0,0,1,17.5,132.52,932,17.5 +2013,10,13,22,30,0,0,0,0.9,17.400000000000002,143.74,932,17.400000000000002 +2013,10,13,23,30,0,0,0,0.9,17.3,152.52,931,17.3 +2013,10,14,0,30,0,0,0,1,17.3,155.88,931,17.3 +2013,10,14,1,30,0,0,0,1.5,17.3,151.79,930,17.3 +2013,10,14,2,30,0,0,0,2,17.400000000000002,142.65,930,17.400000000000002 +2013,10,14,3,30,0,0,0,2.1,17.6,131.28,929,17.6 +2013,10,14,4,30,0,0,0,2.2,17.7,118.99000000000001,929,17.7 +2013,10,14,5,30,0,0,0,2.3000000000000003,17.900000000000002,106.38,929,17.900000000000002 +2013,10,14,6,30,0,0,0,2.6,18.2,93.74,929,18.2 +2013,10,14,7,30,38,38,0,3.2,18.900000000000002,81.25,929,18.900000000000002 +2013,10,14,8,30,56,56,0,4.2,19.900000000000002,69.42,929,19.5 +2013,10,14,9,30,137,137,0,5.300000000000001,21.3,58.52,928,19.900000000000002 +2013,10,14,10,30,99,99,0,5.9,22.700000000000003,49.29,928,19.6 +2013,10,14,11,30,282,267,21,5.7,23.6,42.89,927,19.3 +2013,10,14,12,30,388,344,57,5.4,24.1,40.74,926,19.3 +2013,10,14,13,30,415,347,93,5.300000000000001,24.3,43.46,926,19.3 +2013,10,14,14,30,133,133,0,5,24.1,50.26,925,19.200000000000003 +2013,10,14,15,30,216,199,34,4.3,23.8,59.74,925,19.1 +2013,10,14,16,30,170,134,110,3.5,23.1,70.8,925,19.1 +2013,10,14,17,30,28,28,0,3.1,22.700000000000003,82.7,925,19.3 +2013,10,14,18,30,0,0,0,3,21.200000000000003,95.26,926,19.200000000000003 +2013,10,14,19,30,0,0,0,3.2,20.900000000000002,107.92,926,19.200000000000003 +2013,10,14,20,30,0,0,0,3.3000000000000003,20.5,120.53,926,19.200000000000003 +2013,10,14,21,30,0,0,0,3.3000000000000003,20.1,132.78,926,19.200000000000003 +2013,10,14,22,30,0,0,0,3.3000000000000003,19.700000000000003,144.05,926,19.200000000000003 +2013,10,14,23,30,0,0,0,3.3000000000000003,19.3,152.88,926,19.200000000000003 +2013,10,15,0,30,0,0,0,3.3000000000000003,19.1,156.25,926,19.1 +2013,10,15,1,30,0,0,0,3.6,19,152.09,926,19 +2013,10,15,2,30,0,0,0,3.7,19,142.87,926,19 +2013,10,15,3,30,0,0,0,3.1,18.900000000000002,131.45,926,18.900000000000002 +2013,10,15,4,30,0,0,0,2.3000000000000003,18.6,119.14,927,18.6 +2013,10,15,5,30,0,0,0,2.5,17.900000000000002,106.52,927,17.900000000000002 +2013,10,15,6,30,0,0,0,3.7,16.7,93.89,928,16.7 +2013,10,15,7,30,11,11,0,4.9,15.200000000000001,81.41,929,15.200000000000001 +2013,10,15,8,30,64,64,0,5.7,14.100000000000001,69.61,929,12.100000000000001 +2013,10,15,9,30,80,80,0,5.9,13.600000000000001,58.74,930,9.3 +2013,10,15,10,30,159,158,2,5.800000000000001,13.600000000000001,49.57,930,7.800000000000001 +2013,10,15,11,30,108,108,0,5.6000000000000005,13.8,43.230000000000004,930,7.4 +2013,10,15,12,30,71,71,0,5.2,13.8,41.11,929,7.4 +2013,10,15,13,30,386,334,72,4.800000000000001,13.8,43.82,929,7.4 +2013,10,15,14,30,273,253,32,4.4,13.8,50.6,929,7.300000000000001 +2013,10,15,15,30,109,109,0,4.2,13.4,60.04,929,7.2 +2013,10,15,16,30,56,56,0,3.8000000000000003,12.700000000000001,71.07000000000001,929,7 +2013,10,15,17,30,30,30,0,3.6,12.200000000000001,82.94,929,7.2 +2013,10,15,18,30,0,0,0,2.5,10.600000000000001,95.5,930,7.800000000000001 +2013,10,15,19,30,0,0,0,2.2,10.100000000000001,108.15,931,8 +2013,10,15,20,30,0,0,0,2.2,9.700000000000001,120.78,931,8 +2013,10,15,21,30,0,0,0,2.2,9.5,133.05,931,8 +2013,10,15,22,30,0,0,0,2.3000000000000003,9.4,144.35,931,8 +2013,10,15,23,30,0,0,0,2.5,9.200000000000001,153.23,931,7.9 +2013,10,16,0,30,0,0,0,2.7,9,156.62,931,7.9 +2013,10,16,1,30,0,0,0,3,8.9,152.38,931,7.7 +2013,10,16,2,30,0,0,0,3.2,8.8,143.08,931,7.5 +2013,10,16,3,30,0,0,0,3.4000000000000004,8.9,131.62,931,7.1000000000000005 +2013,10,16,4,30,0,0,0,3.5,8.8,119.3,931,6.7 +2013,10,16,5,30,0,0,0,3.6,8.700000000000001,106.67,931,6.1000000000000005 +2013,10,16,6,30,0,0,0,3.7,8.6,94.04,932,5.4 +2013,10,16,7,30,26,26,0,4.1000000000000005,9,81.57000000000001,932,4.6000000000000005 +2013,10,16,8,30,96,96,0,4.3,10.100000000000001,69.8,933,3.7 +2013,10,16,9,30,520,61,891,4.1000000000000005,11.600000000000001,58.97,933,3.4000000000000004 +2013,10,16,10,30,383,305,120,3.7,13.3,49.85,932,3.6 +2013,10,16,11,30,774,71,970,3.3000000000000003,15,43.56,931,4 +2013,10,16,12,30,558,364,259,2.9000000000000004,16.3,41.47,931,4.5 +2013,10,16,13,30,471,353,165,2.8000000000000003,17.3,44.19,930,5 +2013,10,16,14,30,305,272,52,2.9000000000000004,17.6,50.93,929,5.4 +2013,10,16,15,30,211,195,34,3.1,17.400000000000002,60.34,929,5.6000000000000005 +2013,10,16,16,30,152,128,76,3,16.400000000000002,71.34,929,5.5 +2013,10,16,17,30,87,31,471,2.8000000000000003,15.700000000000001,83.19,930,5.6000000000000005 +2013,10,16,18,30,0,0,0,1.4000000000000001,11.8,95.74000000000001,930,6.800000000000001 +2013,10,16,19,30,0,0,0,1.4000000000000001,10.600000000000001,108.39,931,6.2 +2013,10,16,20,30,0,0,0,1.3,9.600000000000001,121.02,931,5.6000000000000005 +2013,10,16,21,30,0,0,0,1.3,8.700000000000001,133.31,932,5 +2013,10,16,22,30,0,0,0,1.1,7.800000000000001,144.64000000000001,931,4.5 +2013,10,16,23,30,0,0,0,1,7,153.58,931,4 +2013,10,17,0,30,0,0,0,0.8,6.5,156.98,931,3.6 +2013,10,17,1,30,0,0,0,0.7000000000000001,6.300000000000001,152.67000000000002,931,3.1 +2013,10,17,2,30,0,0,0,0.5,6.300000000000001,143.3,931,2.7 +2013,10,17,3,30,0,0,0,0.4,6.2,131.79,931,2.4000000000000004 +2013,10,17,4,30,0,0,0,0.6000000000000001,5.800000000000001,119.45,931,2.3000000000000003 +2013,10,17,5,30,0,0,0,0.8,5.300000000000001,106.81,931,2.3000000000000003 +2013,10,17,6,30,0,0,0,1,5.5,94.19,931,2.3000000000000003 +2013,10,17,7,30,116,34,573,1.7000000000000002,7.5,81.74,932,3.1 +2013,10,17,8,30,332,53,814,2,11,70,932,3.5 +2013,10,17,9,30,530,64,910,1.8,14.5,59.21,932,5.2 +2013,10,17,10,30,686,71,960,1.9000000000000001,16.900000000000002,50.13,931,6.6000000000000005 +2013,10,17,11,30,781,76,979,2.2,18.7,43.9,930,7.5 +2013,10,17,12,30,809,79,980,2.5,20.1,41.84,929,8 +2013,10,17,13,30,769,78,969,2.8000000000000003,21,44.550000000000004,928,8.3 +2013,10,17,14,30,660,75,935,3,21.3,51.26,928,8.4 +2013,10,17,15,30,495,68,871,3.1,21,60.64,927,8.6 +2013,10,17,16,30,291,56,745,2.7,19.700000000000003,71.61,927,8.8 +2013,10,17,17,30,83,32,450,2.3000000000000003,18.7,83.44,927,10.100000000000001 +2013,10,17,18,30,0,0,0,2.6,15,95.97,927,9.9 +2013,10,17,19,30,0,0,0,3.4000000000000004,14.200000000000001,108.62,927,9.4 +2013,10,17,20,30,0,0,0,3.7,13.5,121.25,928,9.3 +2013,10,17,21,30,0,0,0,3.7,12.9,133.56,927,9.4 +2013,10,17,22,30,0,0,0,3.6,12.4,144.94,927,9.600000000000001 +2013,10,17,23,30,0,0,0,3.5,12,153.92000000000002,927,9.8 +2013,10,18,0,30,0,0,0,3.3000000000000003,11.700000000000001,157.34,927,10.100000000000001 +2013,10,18,1,30,0,0,0,3.1,11.4,152.96,926,10.3 +2013,10,18,2,30,0,0,0,2.9000000000000004,11.200000000000001,143.51,926,10.600000000000001 +2013,10,18,3,30,0,0,0,2.7,11.100000000000001,131.96,926,10.9 +2013,10,18,4,30,0,0,0,2.4000000000000004,10.9,119.60000000000001,926,10.9 +2013,10,18,5,30,0,0,0,2.5,10.8,106.96000000000001,926,10.8 +2013,10,18,6,30,0,0,0,3,11.200000000000001,94.35000000000001,926,11.100000000000001 +2013,10,18,7,30,38,38,0,3.6,12.600000000000001,81.91,926,11.200000000000001 +2013,10,18,8,30,62,62,0,4.3,15.100000000000001,70.19,926,11.600000000000001 +2013,10,18,9,30,94,94,0,4.7,17.6,59.44,926,12.3 +2013,10,18,10,30,205,199,9,4.7,19.8,50.410000000000004,926,13.4 +2013,10,18,11,30,260,248,17,4.3,21.700000000000003,44.230000000000004,925,14.200000000000001 +2013,10,18,12,30,595,340,345,3.9000000000000004,23.200000000000003,42.2,924,14.600000000000001 +2013,10,18,13,30,740,101,902,3.4000000000000004,24.200000000000003,44.910000000000004,923,14.3 +2013,10,18,14,30,636,94,873,3.1,24.3,51.59,923,13.5 +2013,10,18,15,30,465,107,737,3.4000000000000004,23.5,60.93,923,12.4 +2013,10,18,16,30,27,27,0,5.4,20.5,71.87,925,11.4 +2013,10,18,17,30,17,17,0,6.9,18.400000000000002,83.68,926,10.600000000000001 +2013,10,18,18,30,0,0,0,8.6,9.4,96.2,930,7.2 +2013,10,18,19,30,0,0,0,7.800000000000001,6.5,108.85000000000001,932,3.9000000000000004 +2013,10,18,20,30,0,0,0,7.1000000000000005,5.5,121.49000000000001,933,2.3000000000000003 +2013,10,18,21,30,0,0,0,6.300000000000001,4.800000000000001,133.81,934,1.4000000000000001 +2013,10,18,22,30,0,0,0,5.300000000000001,4.1000000000000005,145.22,934,0.8 +2013,10,18,23,30,0,0,0,4.4,3.5,154.27,935,0.6000000000000001 +2013,10,19,0,30,0,0,0,3.6,2.9000000000000004,157.70000000000002,935,0.5 +2013,10,19,1,30,0,0,0,2.9000000000000004,2.3000000000000003,153.24,934,0.4 +2013,10,19,2,30,0,0,0,2.6,1.9000000000000001,143.72,934,0.30000000000000004 +2013,10,19,3,30,0,0,0,2.6,1.6,132.13,934,0.1 +2013,10,19,4,30,0,0,0,2.6,1.4000000000000001,119.75,934,0 +2013,10,19,5,30,0,0,0,2.6,1.3,107.10000000000001,934,-0.2 +2013,10,19,6,30,0,0,0,2.8000000000000003,1.6,94.5,935,-0.30000000000000004 +2013,10,19,7,30,114,33,590,3.1,3.5,82.07000000000001,935,-0.4 +2013,10,19,8,30,333,52,835,3.1,6.9,70.38,935,-0.5 +2013,10,19,9,30,536,63,937,2.7,10.3,59.67,935,-1 +2013,10,19,10,30,694,69,987,2.4000000000000004,12.9,50.69,935,-1.4000000000000001 +2013,10,19,11,30,789,72,1006,2,15,44.56,934,-1.6 +2013,10,19,12,30,819,73,1013,1.5,16.6,42.56,933,-1.4000000000000001 +2013,10,19,13,30,778,71,1004,0.9,17.5,45.26,932,-1.1 +2013,10,19,14,30,666,67,971,0.5,18,51.910000000000004,931,-0.7000000000000001 +2013,10,19,15,30,501,61,914,0.6000000000000001,17.8,61.22,930,-0.4 +2013,10,19,16,30,295,50,800,0.8,16.7,72.13,930,0 +2013,10,19,17,30,82,27,509,0.8,15.700000000000001,83.91,930,4.3 +2013,10,19,18,30,0,0,0,1.2000000000000002,10.9,96.43,930,3.7 +2013,10,19,19,30,0,0,0,1.6,9.700000000000001,109.07000000000001,930,2.9000000000000004 +2013,10,19,20,30,0,0,0,2.1,9.200000000000001,121.71000000000001,930,2.3000000000000003 +2013,10,19,21,30,0,0,0,2.6,8.9,134.05,930,2 +2013,10,19,22,30,0,0,0,3.1,8.5,145.5,930,2 +2013,10,19,23,30,0,0,0,3.2,7.9,154.6,930,2.2 +2013,10,20,0,30,0,0,0,3.2,7.4,158.06,930,2.4000000000000004 +2013,10,20,1,30,0,0,0,3.1,6.9,153.53,929,2.6 +2013,10,20,2,30,0,0,0,3,6.5,143.93,929,2.8000000000000003 +2013,10,20,3,30,0,0,0,3,6.2,132.3,928,3 +2013,10,20,4,30,0,0,0,2.9000000000000004,6,119.9,928,3.3000000000000003 +2013,10,20,5,30,0,0,0,3,5.800000000000001,107.25,927,3.6 +2013,10,20,6,30,0,0,0,3.2,6,94.65,927,4 +2013,10,20,7,30,105,36,511,3.7,7.7,82.24,927,4.4 +2013,10,20,8,30,318,60,774,4.2,11.200000000000001,70.58,927,5.1000000000000005 +2013,10,20,9,30,515,74,880,5.1000000000000005,15.3,59.910000000000004,927,5.9 +2013,10,20,10,30,671,81,935,5.9,18.8,50.97,926,7 +2013,10,20,11,30,767,86,962,6.1000000000000005,21.400000000000002,44.89,925,8.4 +2013,10,20,12,30,796,81,977,6,23.3,42.92,924,9.1 +2013,10,20,13,30,755,82,962,5.9,24.400000000000002,45.61,923,9.3 +2013,10,20,14,30,645,79,923,5.7,24.700000000000003,52.230000000000004,922,9.3 +2013,10,20,15,30,483,67,873,5.300000000000001,24.3,61.51,922,9.200000000000001 +2013,10,20,16,30,279,55,739,4.2,22.6,72.39,922,9.4 +2013,10,20,17,30,72,30,417,3.5,21.200000000000003,84.15,922,10.700000000000001 +2013,10,20,18,30,0,0,0,4.2,17.7,96.65,922,10.8 +2013,10,20,19,30,0,0,0,5,16.8,109.29,923,11.100000000000001 +2013,10,20,20,30,0,0,0,5.300000000000001,15.8,121.94,923,11.3 +2013,10,20,21,30,0,0,0,5.1000000000000005,14.700000000000001,134.29,924,11.4 +2013,10,20,22,30,0,0,0,4.800000000000001,13.700000000000001,145.78,924,11.5 +2013,10,20,23,30,0,0,0,4.5,13,154.94,924,11.5 +2013,10,21,0,30,0,0,0,4,12.200000000000001,158.41,924,11.5 +2013,10,21,1,30,0,0,0,3.3000000000000003,11.5,153.81,925,11.5 +2013,10,21,2,30,0,0,0,2.8000000000000003,10.8,144.14000000000001,925,10.8 +2013,10,21,3,30,0,0,0,2.4000000000000004,10.100000000000001,132.47,925,10.100000000000001 +2013,10,21,4,30,0,0,0,2.2,9.600000000000001,120.05,926,9.600000000000001 +2013,10,21,5,30,0,0,0,2.3000000000000003,9,107.4,926,8.700000000000001 +2013,10,21,6,30,0,0,0,2.8000000000000003,8.700000000000001,94.81,926,7 +2013,10,21,7,30,101,35,502,4,9.700000000000001,82.41,927,5.6000000000000005 +2013,10,21,8,30,124,119,15,5.1000000000000005,12,70.78,928,5 +2013,10,21,9,30,191,182,18,5.6000000000000005,14.3,60.14,928,6 +2013,10,21,10,30,369,295,118,5.9,16.3,51.25,929,7.2 +2013,10,21,11,30,506,341,235,6.2,17.8,45.22,929,8 +2013,10,21,12,30,568,340,314,6.4,18.7,43.28,929,8.3 +2013,10,21,13,30,524,327,284,6.4,19,45.96,929,8.200000000000001 +2013,10,21,14,30,629,93,880,6.300000000000001,18.900000000000002,52.550000000000004,929,7.6000000000000005 +2013,10,21,15,30,471,75,836,5.9,18.400000000000002,61.79,929,6.9 +2013,10,21,16,30,271,58,713,5.1000000000000005,17.1,72.64,929,6 +2013,10,21,17,30,69,29,405,4.5,16.3,84.37,930,5.6000000000000005 +2013,10,21,18,30,0,0,0,2.1,12.100000000000001,96.87,931,5.800000000000001 +2013,10,21,19,30,0,0,0,1.8,10.8,109.5,932,5.6000000000000005 +2013,10,21,20,30,0,0,0,1.6,9.8,122.15,932,5.4 +2013,10,21,21,30,0,0,0,1.4000000000000001,8.9,134.53,933,5.2 +2013,10,21,22,30,0,0,0,1.2000000000000002,8.1,146.05,933,4.9 +2013,10,21,23,30,0,0,0,1.1,7.6000000000000005,155.27,933,4.7 +2013,10,22,0,30,0,0,0,1,7.300000000000001,158.77,933,4.4 +2013,10,22,1,30,0,0,0,1,6.9,154.09,933,4.1000000000000005 +2013,10,22,2,30,0,0,0,1,6.6000000000000005,144.35,933,3.7 +2013,10,22,3,30,0,0,0,1,6.2,132.63,933,3.2 +2013,10,22,4,30,0,0,0,1.1,5.9,120.2,933,2.8000000000000003 +2013,10,22,5,30,0,0,0,1.2000000000000002,5.6000000000000005,107.55,933,2.4000000000000004 +2013,10,22,6,30,0,0,0,1.3,5.800000000000001,94.96000000000001,934,2.1 +2013,10,22,7,30,102,30,560,2.1,8.4,82.58,934,2.3000000000000003 +2013,10,22,8,30,312,49,809,2.6,12.3,70.98,934,2.7 +2013,10,22,9,30,510,59,912,2.3000000000000003,16.1,60.38,934,2.6 +2013,10,22,10,30,664,64,965,2.3000000000000003,19.200000000000003,51.54,934,1.2000000000000002 +2013,10,22,11,30,760,67,990,2.3000000000000003,20.900000000000002,45.550000000000004,933,1.6 +2013,10,22,12,30,790,69,996,2.2,22.1,43.63,932,2 +2013,10,22,13,30,746,67,984,2.1,22.8,46.300000000000004,931,2.4000000000000004 +2013,10,22,14,30,640,63,955,2.1,23,52.86,931,2.6 +2013,10,22,15,30,477,56,898,2,22.6,62.07,931,2.8000000000000003 +2013,10,22,16,30,275,46,781,1.3,21,72.89,930,3.3000000000000003 +2013,10,22,17,30,69,24,477,0.8,19.700000000000003,84.60000000000001,930,9 +2013,10,22,18,30,0,0,0,1.3,15.700000000000001,97.09,931,5.4 +2013,10,22,19,30,0,0,0,1.5,14.100000000000001,109.71000000000001,931,5.2 +2013,10,22,20,30,0,0,0,1.7000000000000002,13.100000000000001,122.37,931,4.800000000000001 +2013,10,22,21,30,0,0,0,2,12.600000000000001,134.76,932,4.3 +2013,10,22,22,30,0,0,0,2.3000000000000003,12.100000000000001,146.32,932,3.8000000000000003 +2013,10,22,23,30,0,0,0,2.4000000000000004,11.600000000000001,155.59,932,3.4000000000000004 +2013,10,23,0,30,0,0,0,2.4000000000000004,11.100000000000001,159.12,932,3.1 +2013,10,23,1,30,0,0,0,2.4000000000000004,10.4,154.36,932,3 +2013,10,23,2,30,0,0,0,2.4000000000000004,9.8,144.55,932,3 +2013,10,23,3,30,0,0,0,2.4000000000000004,9.3,132.8,932,3 +2013,10,23,4,30,0,0,0,2.5,8.8,120.35000000000001,932,3.1 +2013,10,23,5,30,0,0,0,2.5,8.3,107.69,932,3.2 +2013,10,23,6,30,0,0,0,2.7,8.4,95.12,933,3.3000000000000003 +2013,10,23,7,30,99,29,551,3.2,10.100000000000001,82.75,933,3.5 +2013,10,23,8,30,309,48,807,3.2,13.3,71.18,933,3.8000000000000003 +2013,10,23,9,30,506,58,913,3,17.7,60.61,933,5 +2013,10,23,10,30,660,64,965,3.5,21.900000000000002,51.82,933,4.3 +2013,10,23,11,30,755,66,991,3.8000000000000003,24.200000000000003,45.88,932,3.4000000000000004 +2013,10,23,12,30,782,71,987,3.9000000000000004,25.200000000000003,43.980000000000004,932,3.8000000000000003 +2013,10,23,13,30,741,70,978,4,25.6,46.65,931,4.1000000000000005 +2013,10,23,14,30,635,67,948,4,25.5,53.18,930,4.3 +2013,10,23,15,30,472,61,884,3.8000000000000003,24.700000000000003,62.35,930,4.3 +2013,10,23,16,30,270,50,758,2.8000000000000003,22.400000000000002,73.14,929,4.9 +2013,10,23,17,30,65,25,435,1.9000000000000001,20.6,84.82000000000001,929,8.200000000000001 +2013,10,23,18,30,0,0,0,2.2,16.2,97.3,930,6.9 +2013,10,23,19,30,0,0,0,2.6,15.4,109.92,930,6.1000000000000005 +2013,10,23,20,30,0,0,0,3,14.600000000000001,122.58,931,5.6000000000000005 +2013,10,23,21,30,0,0,0,3.3000000000000003,13.700000000000001,134.98,931,5 +2013,10,23,22,30,0,0,0,3.4000000000000004,12.8,146.58,931,4.7 +2013,10,23,23,30,0,0,0,3.4000000000000004,12,155.91,932,4.6000000000000005 +2013,10,24,0,30,0,0,0,3.2,11.200000000000001,159.46,932,4.5 +2013,10,24,1,30,0,0,0,2.9000000000000004,10.5,154.64000000000001,932,4.4 +2013,10,24,2,30,0,0,0,2.5,9.700000000000001,144.75,932,4.3 +2013,10,24,3,30,0,0,0,2.1,9,132.97,932,4.2 +2013,10,24,4,30,0,0,0,1.7000000000000002,8.3,120.5,932,4.1000000000000005 +2013,10,24,5,30,0,0,0,1.4000000000000001,8,107.84,933,4.1000000000000005 +2013,10,24,6,30,0,0,0,1.2000000000000002,8.4,95.28,933,4.2 +2013,10,24,7,30,58,43,123,1.6,10.100000000000001,82.92,934,4.6000000000000005 +2013,10,24,8,30,302,56,772,1.8,12.700000000000001,71.38,935,5 +2013,10,24,9,30,499,69,884,1.3,15.8,60.85,935,5.5 +2013,10,24,10,30,654,76,942,1.1,19.5,52.1,935,5.5 +2013,10,24,11,30,750,79,969,0.9,22.200000000000003,46.2,935,5 +2013,10,24,12,30,777,77,978,0.7000000000000001,23.6,44.33,934,5 +2013,10,24,13,30,736,75,969,1,24.3,46.980000000000004,933,5 +2013,10,24,14,30,630,71,939,1.6,24.400000000000002,53.480000000000004,933,5.1000000000000005 +2013,10,24,15,30,466,65,871,2,23.8,62.620000000000005,932,5.1000000000000005 +2013,10,24,16,30,264,52,743,1.7000000000000002,21.700000000000003,73.38,932,5.4 +2013,10,24,17,30,61,26,409,1.2000000000000002,20,85.04,932,9.4 +2013,10,24,18,30,0,0,0,1.5,15.600000000000001,97.51,933,7.800000000000001 +2013,10,24,19,30,0,0,0,1.7000000000000002,14.600000000000001,110.12,934,7.5 +2013,10,24,20,30,0,0,0,1.7000000000000002,13.700000000000001,122.78,935,7.5 +2013,10,24,21,30,0,0,0,1.6,12.600000000000001,135.2,935,7.5 +2013,10,24,22,30,0,0,0,1.5,11.600000000000001,146.83,936,7.5 +2013,10,24,23,30,0,0,0,1.3,10.700000000000001,156.23,936,7.6000000000000005 +2013,10,25,0,30,0,0,0,1.3,9.9,159.8,936,7.800000000000001 +2013,10,25,1,30,0,0,0,1.3,9.1,154.91,936,8 +2013,10,25,2,30,0,0,0,1.4000000000000001,8.4,144.95000000000002,936,8.1 +2013,10,25,3,30,0,0,0,1.4000000000000001,7.800000000000001,133.13,937,7.800000000000001 +2013,10,25,4,30,0,0,0,1.7000000000000002,7.5,120.65,937,7.5 +2013,10,25,5,30,0,0,0,2,7.4,107.99000000000001,938,7.4 +2013,10,25,6,30,0,0,0,2.4000000000000004,7.5,95.43,938,7.5 +2013,10,25,7,30,47,42,41,2.8000000000000003,8.700000000000001,83.09,938,7.7 +2013,10,25,8,30,289,64,712,3.1,11.3,71.58,938,7.7 +2013,10,25,9,30,482,77,838,3.2,14.4,61.09,938,8.3 +2013,10,25,10,30,632,85,897,3.5,17.3,52.38,938,9.1 +2013,10,25,11,30,576,283,426,3.8000000000000003,19.8,46.52,937,9.5 +2013,10,25,12,30,634,254,534,3.9000000000000004,21.400000000000002,44.68,936,9 +2013,10,25,13,30,716,85,931,3.7,22.1,47.32,935,8.5 +2013,10,25,14,30,610,81,896,3.7,22.200000000000003,53.79,935,8.1 +2013,10,25,15,30,449,70,830,3.9000000000000004,21.700000000000003,62.89,934,7.9 +2013,10,25,16,30,251,56,691,3.3000000000000003,20.200000000000003,73.62,934,7.9 +2013,10,25,17,30,54,26,339,2.6,19.1,85.25,933,8.9 +2013,10,25,18,30,0,0,0,2.1,15.700000000000001,97.71000000000001,934,9.4 +2013,10,25,19,30,0,0,0,3,15.5,110.31,934,9.700000000000001 +2013,10,25,20,30,0,0,0,3.7,15.3,122.98,934,10.200000000000001 +2013,10,25,21,30,0,0,0,4,15.100000000000001,135.42000000000002,934,10.9 +2013,10,25,22,30,0,0,0,4,14.9,147.08,934,11.600000000000001 +2013,10,25,23,30,0,0,0,3.8000000000000003,14.9,156.54,933,12.200000000000001 +2013,10,26,0,30,0,0,0,3.7,14.700000000000001,160.14000000000001,933,12.8 +2013,10,26,1,30,0,0,0,3.7,14.4,155.17000000000002,933,13.4 +2013,10,26,2,30,0,0,0,3.4000000000000004,14,145.15,932,13.9 +2013,10,26,3,30,0,0,0,3,13.600000000000001,133.3,932,13.600000000000001 +2013,10,26,4,30,0,0,0,2.8000000000000003,13.5,120.8,932,13.5 +2013,10,26,5,30,0,0,0,3,13.600000000000001,108.14,932,13.600000000000001 +2013,10,26,6,30,0,0,0,3.4000000000000004,13.9,95.59,932,13.9 +2013,10,26,7,30,74,44,258,3.9000000000000004,14.9,83.27,933,14.600000000000001 +2013,10,26,8,30,98,98,0,4.5,16.7,71.78,933,15 +2013,10,26,9,30,454,103,731,5.2,18.900000000000002,61.32,933,15.200000000000001 +2013,10,26,10,30,280,254,43,5.5,20.8,52.660000000000004,932,14.8 +2013,10,26,11,30,117,117,0,5.2,22.200000000000003,46.84,932,14.3 +2013,10,26,12,30,728,114,868,4.800000000000001,23.1,45.02,931,14 +2013,10,26,13,30,688,112,855,4.3,23.700000000000003,47.65,930,13.5 +2013,10,26,14,30,586,104,821,3.8000000000000003,23.900000000000002,54.08,930,13 +2013,10,26,15,30,431,89,757,3.2,23.8,63.15,929,12.4 +2013,10,26,16,30,100,98,7,1.9000000000000001,22.5,73.85000000000001,930,11.9 +2013,10,26,17,30,50,28,278,1,21.400000000000002,85.46000000000001,930,14.200000000000001 +2013,10,26,18,30,0,0,0,0.8,18.900000000000002,97.91,930,12.200000000000001 +2013,10,26,19,30,0,0,0,0.9,17.8,110.5,931,11.700000000000001 +2013,10,26,20,30,0,0,0,1.7000000000000002,16.6,123.17,931,11.600000000000001 +2013,10,26,21,30,0,0,0,2.7,15.3,135.62,932,11.4 +2013,10,26,22,30,0,0,0,3.5,13.9,147.32,932,11.200000000000001 +2013,10,26,23,30,0,0,0,3.9000000000000004,12.700000000000001,156.84,932,11.4 +2013,10,27,0,30,0,0,0,4,11.8,160.48,932,11.600000000000001 +2013,10,27,1,30,0,0,0,3.9000000000000004,11.3,155.44,932,11.3 +2013,10,27,2,30,0,0,0,3.7,10.8,145.35,932,10.8 +2013,10,27,3,30,0,0,0,3.3000000000000003,10.3,133.46,932,10.200000000000001 +2013,10,27,4,30,0,0,0,2.7,9.700000000000001,120.95,932,9.4 +2013,10,27,5,30,0,0,0,2.4000000000000004,8.9,108.29,932,8.4 +2013,10,27,6,30,0,0,0,2.4000000000000004,8.4,95.75,932,7.1000000000000005 +2013,10,27,7,30,83,32,444,2.7,9.1,83.44,932,5.7 +2013,10,27,8,30,88,88,0,2.8000000000000003,11.600000000000001,71.98,933,4.5 +2013,10,27,9,30,308,209,207,2.5,14.4,61.56,932,4.4 +2013,10,27,10,30,409,282,211,2.1,16.6,52.94,932,4.9 +2013,10,27,11,30,733,76,966,1.7000000000000002,18.3,47.160000000000004,931,4.9 +2013,10,27,12,30,497,343,219,1.3,19.6,45.35,930,5.1000000000000005 +2013,10,27,13,30,719,78,957,1.1,20.400000000000002,47.97,929,5.300000000000001 +2013,10,27,14,30,613,72,928,1.2000000000000002,20.8,54.38,928,5.4 +2013,10,27,15,30,452,65,865,1.2000000000000002,20.6,63.410000000000004,928,5.300000000000001 +2013,10,27,16,30,252,51,735,1.1,19.3,74.08,928,5.2 +2013,10,27,17,30,53,23,384,0.8,18.2,85.66,928,8.3 +2013,10,27,18,30,0,0,0,1.2000000000000002,14.100000000000001,98.10000000000001,928,7.1000000000000005 +2013,10,27,19,30,0,0,0,1.4000000000000001,13,110.69,928,7 +2013,10,27,20,30,0,0,0,1.8,12.700000000000001,123.36,928,7.300000000000001 +2013,10,27,21,30,0,0,0,2.4000000000000004,12.8,135.83,928,8.1 +2013,10,27,22,30,0,0,0,2.7,12.600000000000001,147.56,928,9 +2013,10,27,23,30,0,0,0,2.8000000000000003,12,157.14000000000001,928,10 +2013,10,28,0,30,0,0,0,2.9000000000000004,11.700000000000001,160.82,928,10.9 +2013,10,28,1,30,0,0,0,3,11.8,155.70000000000002,928,11.8 +2013,10,28,2,30,0,0,0,3.1,12.200000000000001,145.55,927,12.200000000000001 +2013,10,28,3,30,0,0,0,2.9000000000000004,12.5,133.62,927,12.5 +2013,10,28,4,30,0,0,0,2.9000000000000004,12.8,121.10000000000001,927,12.8 +2013,10,28,5,30,0,0,0,2.9000000000000004,13.100000000000001,108.44,927,13.100000000000001 +2013,10,28,6,30,0,0,0,3,13.5,95.91,928,13.5 +2013,10,28,7,30,28,28,0,3.4000000000000004,14.5,83.62,928,14.3 +2013,10,28,8,30,263,69,633,4.4,16.5,72.19,928,15 +2013,10,28,9,30,312,206,224,5.7,19.400000000000002,61.800000000000004,928,16.2 +2013,10,28,10,30,335,277,98,6.4,21.900000000000002,53.22,928,16.7 +2013,10,28,11,30,562,287,407,6.300000000000001,23.3,47.480000000000004,927,16.400000000000002 +2013,10,28,12,30,582,300,404,6.1000000000000005,24.3,45.69,926,15.9 +2013,10,28,13,30,504,308,296,6,24.900000000000002,48.300000000000004,926,15.5 +2013,10,28,14,30,388,269,206,5.800000000000001,24.900000000000002,54.67,925,15 +2013,10,28,15,30,238,193,101,5.5,24.400000000000002,63.67,925,14.600000000000001 +2013,10,28,16,30,149,106,156,5.2,23.3,74.31,926,14.4 +2013,10,28,17,30,29,25,59,4.9,22.6,85.86,926,14.3 +2013,10,28,18,30,0,0,0,4.6000000000000005,20.400000000000002,98.29,927,14.3 +2013,10,28,19,30,0,0,0,4.7,19.5,110.87,927,14.5 +2013,10,28,20,30,0,0,0,4.7,18.8,123.54,928,14.8 +2013,10,28,21,30,0,0,0,4.6000000000000005,18.3,136.02,928,15.200000000000001 +2013,10,28,22,30,0,0,0,4.5,17.900000000000002,147.79,928,15.700000000000001 +2013,10,28,23,30,0,0,0,4.5,17.5,157.44,928,16.1 +2013,10,29,0,30,0,0,0,4.6000000000000005,17.3,161.15,927,16.3 +2013,10,29,1,30,0,0,0,4.6000000000000005,17,155.96,928,16.5 +2013,10,29,2,30,0,0,0,4.4,16.900000000000002,145.74,928,16.6 +2013,10,29,3,30,0,0,0,4.1000000000000005,16.900000000000002,133.79,928,16.8 +2013,10,29,4,30,0,0,0,3.8000000000000003,16.900000000000002,121.25,928,16.900000000000002 +2013,10,29,5,30,0,0,0,3.4000000000000004,16.900000000000002,108.60000000000001,928,16.900000000000002 +2013,10,29,6,30,0,0,0,3.3000000000000003,17,96.07000000000001,928,17 +2013,10,29,7,30,37,36,7,3.5,17.7,83.8,928,17.5 +2013,10,29,8,30,118,112,21,4.2,19.200000000000003,72.39,929,17.900000000000002 +2013,10,29,9,30,268,208,129,5,21,62.04,929,18.400000000000002 +2013,10,29,10,30,433,269,275,5.4,22.6,53.5,928,18.900000000000002 +2013,10,29,11,30,529,302,338,5.2,23.8,47.79,928,19 +2013,10,29,12,30,583,290,422,4.9,24.8,46.02,927,18.8 +2013,10,29,13,30,543,280,396,4.5,25.400000000000002,48.620000000000005,926,18.6 +2013,10,29,14,30,463,229,408,4.1000000000000005,25.400000000000002,54.96,926,18.3 +2013,10,29,15,30,287,188,224,3.5,25,63.92,926,18.1 +2013,10,29,16,30,153,103,184,2.7,23.8,74.53,926,18.3 +2013,10,29,17,30,23,23,0,2.2,22.900000000000002,86.05,926,18.5 +2013,10,29,18,30,0,0,0,3.3000000000000003,21.400000000000002,98.48,927,18.400000000000002 +2013,10,29,19,30,0,0,0,4.2,21,111.05,927,18.400000000000002 +2013,10,29,20,30,0,0,0,4.5,20.5,123.72,927,18.400000000000002 +2013,10,29,21,30,0,0,0,4.4,19.8,136.21,927,18.3 +2013,10,29,22,30,0,0,0,4.1000000000000005,19,148.02,927,18.2 +2013,10,29,23,30,0,0,0,3.9000000000000004,18.5,157.72,926,18.2 +2013,10,30,0,30,0,0,0,3.9000000000000004,18.2,161.47,926,18.2 +2013,10,30,1,30,0,0,0,3.8000000000000003,18.1,156.22,926,18.1 +2013,10,30,2,30,0,0,0,3.9000000000000004,18.2,145.93,925,18.2 +2013,10,30,3,30,0,0,0,4.3,18.400000000000002,133.95,925,18.400000000000002 +2013,10,30,4,30,0,0,0,4.800000000000001,18.6,121.4,925,18.6 +2013,10,30,5,30,0,0,0,5,18.7,108.75,925,18.6 +2013,10,30,6,30,0,0,0,4.800000000000001,18.8,96.24000000000001,925,18.6 +2013,10,30,7,30,22,22,0,5,19.400000000000002,83.98,926,18.6 +2013,10,30,8,30,27,27,0,5.7,20.700000000000003,72.60000000000001,926,18.7 +2013,10,30,9,30,126,126,0,6.1000000000000005,22.3,62.28,926,18.7 +2013,10,30,10,30,173,171,4,5.9,23.900000000000002,53.77,925,18.5 +2013,10,30,11,30,95,95,0,5.4,25.400000000000002,48.1,925,18.1 +2013,10,30,12,30,119,119,0,5,26.1,46.35,924,17.5 +2013,10,30,13,30,137,137,0,4.5,26.3,48.93,923,16.7 +2013,10,30,14,30,114,114,0,4.3,26.3,55.24,922,16 +2013,10,30,15,30,85,85,0,4.1000000000000005,26,64.17,922,15.5 +2013,10,30,16,30,123,103,74,3.3000000000000003,24.700000000000003,74.75,922,15.100000000000001 +2013,10,30,17,30,12,12,0,2.7,23.700000000000003,86.24,922,15.9 +2013,10,30,18,30,0,0,0,2.9000000000000004,21.5,98.65,922,16 +2013,10,30,19,30,0,0,0,3.6,21.1,111.22,922,16.2 +2013,10,30,20,30,0,0,0,3.9000000000000004,20.5,123.89,922,16.5 +2013,10,30,21,30,0,0,0,4.1000000000000005,19.900000000000002,136.4,922,16.5 +2013,10,30,22,30,0,0,0,4.5,19.3,148.23,921,16.2 +2013,10,30,23,30,0,0,0,4.800000000000001,18.7,158.01,921,15.8 +2013,10,31,0,30,0,0,0,5.1000000000000005,18.3,161.8,921,15.5 +2013,10,31,1,30,0,0,0,5.2,18,156.47,921,15.200000000000001 +2013,10,31,2,30,0,0,0,4.800000000000001,17.400000000000002,146.13,921,14.9 +2013,10,31,3,30,0,0,0,4.5,16.3,134.11,922,13.9 +2013,10,31,4,30,0,0,0,4.2,14.700000000000001,121.55,922,11.5 +2013,10,31,5,30,0,0,0,4,12.9,108.9,923,8.200000000000001 +2013,10,31,6,30,0,0,0,4.1000000000000005,11.600000000000001,96.4,924,5.4 +2013,10,31,7,30,83,26,560,4.7,12,84.15,924,3.5 +2013,10,31,8,30,292,46,832,5.800000000000001,14,72.8,925,2.1 +2013,10,31,9,30,491,57,940,6.7,16.400000000000002,62.51,925,-0.30000000000000004 +2013,10,31,10,30,646,64,992,7,18.400000000000002,54.050000000000004,925,-1.3 +2013,10,31,11,30,738,68,1009,6.800000000000001,19.900000000000002,48.410000000000004,924,-1.8 +2013,10,31,12,30,766,69,1016,6.300000000000001,21,46.67,924,-2 +2013,10,31,13,30,724,67,1006,5.6000000000000005,21.6,49.24,923,-2.1 +2013,10,31,14,30,615,63,976,4.7,21.700000000000003,55.52,923,-2.3000000000000003 +2013,10,31,15,30,451,55,915,3.6,21.3,64.41,923,-2.5 +2013,10,31,16,30,247,44,784,2,19.400000000000002,74.96000000000001,923,-2.5 +2013,10,31,17,30,46,19,420,1,17.8,86.42,923,4.1000000000000005 +2013,10,31,18,30,0,0,0,0.7000000000000001,15.600000000000001,98.83,924,1.2000000000000002 +2013,10,31,19,30,0,0,0,0.9,14.4,111.39,924,0.30000000000000004 +2013,10,31,20,30,0,0,0,1.2000000000000002,12.700000000000001,124.06,924,0.5 +2013,10,31,21,30,0,0,0,1.4000000000000001,11.3,136.58,924,0.7000000000000001 +2013,10,31,22,30,0,0,0,1.6,10.4,148.44,923,0.4 +2013,10,31,23,30,0,0,0,1.9000000000000001,10,158.28,923,0 +2013,11,1,0,30,0,0,0,2.5,9.8,162.12,923,-0.4 +2013,11,1,1,30,0,0,0,3,9.5,156.73,923,-0.6000000000000001 +2013,11,1,2,30,0,0,0,3.4000000000000004,8.9,146.32,922,-0.6000000000000001 +2013,11,1,3,30,0,0,0,3.4000000000000004,8.3,134.27,922,-0.5 +2013,11,1,4,30,0,0,0,3.4000000000000004,7.9,121.71000000000001,922,-0.6000000000000001 +2013,11,1,5,30,0,0,0,3.4000000000000004,7.6000000000000005,109.05,923,-0.8 +2013,11,1,6,30,0,0,0,3.5,7.5,96.56,923,-0.9 +2013,11,1,7,30,77,25,527,4,8.8,84.32000000000001,924,-1 +2013,11,1,8,30,283,45,815,4.7,11.600000000000001,73,925,-0.9 +2013,11,1,9,30,479,56,925,4.9,14.9,62.75,925,-0.8 +2013,11,1,10,30,633,63,977,5.1000000000000005,17.7,54.32,925,-0.6000000000000001 +2013,11,1,11,30,729,68,1001,5.5,19.900000000000002,48.72,925,-0.4 +2013,11,1,12,30,753,71,999,6.1000000000000005,21.3,46.99,925,-0.4 +2013,11,1,13,30,711,71,987,6.6000000000000005,21.8,49.54,925,-0.30000000000000004 +2013,11,1,14,30,601,66,951,6.7,21.6,55.79,926,-0.5 +2013,11,1,15,30,438,59,886,6.300000000000001,20.900000000000002,64.65,927,-0.8 +2013,11,1,16,30,238,45,753,5.2,19.200000000000003,75.17,927,-0.9 +2013,11,1,17,30,42,19,382,4.4,18,86.60000000000001,928,-0.1 +2013,11,1,18,30,0,0,0,3.2,14,99,930,1 +2013,11,1,19,30,0,0,0,3.1,12.9,111.55,931,1.3 +2013,11,1,20,30,0,0,0,2.9000000000000004,11.8,124.22,932,1.7000000000000002 +2013,11,1,21,30,0,0,0,2.6,10.700000000000001,136.75,933,1.8 +2013,11,1,22,30,0,0,0,2.3000000000000003,9.600000000000001,148.65,934,1.6 +2013,11,1,23,30,0,0,0,2,8.700000000000001,158.55,934,1.2000000000000002 +2013,11,2,0,30,0,0,0,1.9000000000000001,7.9,162.43,935,0.8 +2013,11,2,1,30,0,0,0,1.9000000000000001,7.300000000000001,156.98,935,0.5 +2013,11,2,2,30,0,0,0,2,6.800000000000001,146.51,935,0.2 +2013,11,2,3,30,0,0,0,2,6.300000000000001,134.43,936,0.1 +2013,11,2,4,30,0,0,0,1.9000000000000001,5.7,121.86,936,0 +2013,11,2,5,30,0,0,0,1.8,5.2,109.21000000000001,936,-0.1 +2013,11,2,6,30,0,0,0,1.6,5,96.72,937,-0.30000000000000004 +2013,11,2,7,30,74,26,505,2.1,6.7,84.5,938,-0.30000000000000004 +2013,11,2,8,30,279,47,805,2.6,10.100000000000001,73.21000000000001,938,-0.30000000000000004 +2013,11,2,9,30,475,57,919,2.8000000000000003,13.700000000000001,62.99,938,-1.1 +2013,11,2,10,30,625,63,969,2.7,16.400000000000002,54.59,938,-3.3000000000000003 +2013,11,2,11,30,720,67,995,2.1,18,49.02,938,-3.5 +2013,11,2,12,30,748,69,1000,1.7000000000000002,19,47.300000000000004,937,-2.9000000000000004 +2013,11,2,13,30,706,67,991,1.4000000000000001,19.700000000000003,49.84,936,-2.3000000000000003 +2013,11,2,14,30,599,63,960,1.1,19.8,56.06,935,-1.9000000000000001 +2013,11,2,15,30,437,59,890,0.8,19.400000000000002,64.88,934,-1.7000000000000002 +2013,11,2,16,30,236,45,754,0.7000000000000001,17.6,75.37,934,-1.6 +2013,11,2,17,30,40,19,374,0.7000000000000001,16.3,86.77,934,3.8000000000000003 +2013,11,2,18,30,0,0,0,1.3,11.8,99.16,934,1.9000000000000001 +2013,11,2,19,30,0,0,0,1.6,10.700000000000001,111.7,934,1.2000000000000002 +2013,11,2,20,30,0,0,0,2,10.100000000000001,124.37,934,0.5 +2013,11,2,21,30,0,0,0,2.4000000000000004,9.600000000000001,136.91,934,0.2 +2013,11,2,22,30,0,0,0,2.8000000000000003,9.1,148.85,934,0.2 +2013,11,2,23,30,0,0,0,3,8.5,158.81,933,0.5 +2013,11,3,0,30,0,0,0,3,7.9,162.75,933,0.8 +2013,11,3,1,30,0,0,0,3.1,7.300000000000001,157.22,933,1.2000000000000002 +2013,11,3,2,30,0,0,0,3.3000000000000003,6.9,146.69,933,1.5 +2013,11,3,3,30,0,0,0,3.7,6.5,134.59,932,1.7000000000000002 +2013,11,3,4,30,0,0,0,3.9000000000000004,6.1000000000000005,122.01,931,1.8 +2013,11,3,5,30,0,0,0,3.6,5.5,109.36,932,1.8 +2013,11,3,6,30,0,0,0,3.7,5.5,96.89,933,1.8 +2013,11,3,7,30,70,25,478,4.3,6.5,84.68,932,1.7000000000000002 +2013,11,3,8,30,272,48,784,4.7,8,73.41,932,1.6 +2013,11,3,9,30,342,171,379,5.5,10,63.22,931,1.4000000000000001 +2013,11,3,10,30,451,241,365,6.4,12.200000000000001,54.86,931,0.30000000000000004 +2013,11,3,11,30,232,222,14,6.7,14.3,49.32,929,-0.30000000000000004 +2013,11,3,12,30,251,239,17,6.9,16.1,47.62,928,-0.2 +2013,11,3,13,30,208,202,10,6.9,17.5,50.14,926,0 +2013,11,3,14,30,75,75,0,6.800000000000001,18.3,56.32,926,0.30000000000000004 +2013,11,3,15,30,102,102,0,6.6000000000000005,18,65.11,925,0.7000000000000001 +2013,11,3,16,30,124,98,104,5.6000000000000005,16.5,75.57000000000001,926,1.3 +2013,11,3,17,30,15,15,0,4.800000000000001,15.5,86.94,926,2.3000000000000003 +2013,11,3,18,30,0,0,0,4.800000000000001,12.600000000000001,99.32000000000001,926,3.3000000000000003 +2013,11,3,19,30,0,0,0,5.300000000000001,11.4,111.85000000000001,926,4.2 +2013,11,3,20,30,0,0,0,5.4,10.3,124.52,927,5.5 +2013,11,3,21,30,0,0,0,5.1000000000000005,9.700000000000001,137.07,927,6.4 +2013,11,3,22,30,0,0,0,4.9,9.5,149.04,926,6.6000000000000005 +2013,11,3,23,30,0,0,0,4.800000000000001,9.600000000000001,159.07,926,6.1000000000000005 +2013,11,4,0,30,0,0,0,4.6000000000000005,9.8,163.06,926,5.2 +2013,11,4,1,30,0,0,0,4.2,9.8,157.47,925,4.3 +2013,11,4,2,30,0,0,0,4,9.8,146.88,925,3.9000000000000004 +2013,11,4,3,30,0,0,0,3.8000000000000003,9.8,134.75,925,3.9000000000000004 +2013,11,4,4,30,0,0,0,3.7,9.9,122.16,925,4.3 +2013,11,4,5,30,0,0,0,3.5,9.9,109.51,925,4.9 +2013,11,4,6,30,0,0,0,3.7,10.100000000000001,97.05,926,5.5 +2013,11,4,7,30,38,31,74,4.2,10.9,84.86,926,6.300000000000001 +2013,11,4,8,30,95,95,0,4.800000000000001,12.700000000000001,73.62,926,7.2 +2013,11,4,9,30,148,147,3,5.2,15.200000000000001,63.46,927,7.7 +2013,11,4,10,30,462,229,408,5.2,17.7,55.13,927,8.1 +2013,11,4,11,30,544,262,436,5,19.8,49.620000000000005,926,8.9 +2013,11,4,12,30,704,78,933,4.9,21.200000000000003,47.92,926,9.700000000000001 +2013,11,4,13,30,663,78,918,4.9,21.8,50.43,925,10.200000000000001 +2013,11,4,14,30,559,75,880,5.1000000000000005,21.5,56.58,924,10.4 +2013,11,4,15,30,403,65,810,5.4,20.400000000000002,65.33,924,10.5 +2013,11,4,16,30,151,90,247,5.5,18.400000000000002,75.76,925,10.700000000000001 +2013,11,4,17,30,12,12,0,5.4,17.2,87.11,925,10.9 +2013,11,4,18,30,0,0,0,4.3,14.200000000000001,99.48,926,11.4 +2013,11,4,19,30,0,0,0,4,13.3,112,927,11.700000000000001 +2013,11,4,20,30,0,0,0,3.7,12.8,124.66,927,12 +2013,11,4,21,30,0,0,0,3.1,12.4,137.23,928,12.200000000000001 +2013,11,4,22,30,0,0,0,2.6,12.200000000000001,149.22,927,12.200000000000001 +2013,11,4,23,30,0,0,0,2.5,12.200000000000001,159.32,927,12.200000000000001 +2013,11,5,0,30,0,0,0,2.5,12.4,163.36,927,12.4 +2013,11,5,1,30,0,0,0,2.7,12.5,157.71,926,12.5 +2013,11,5,2,30,0,0,0,2.7,12.600000000000001,147.06,926,12.600000000000001 +2013,11,5,3,30,0,0,0,2.7,12.600000000000001,134.91,926,12.600000000000001 +2013,11,5,4,30,0,0,0,2.7,12.700000000000001,122.31,926,12.700000000000001 +2013,11,5,5,30,0,0,0,3,12.9,109.67,926,12.9 +2013,11,5,6,30,0,0,0,3.4000000000000004,13.3,97.22,926,13.3 +2013,11,5,7,30,55,30,295,4,14.3,85.04,927,14.3 +2013,11,5,8,30,241,62,643,4.800000000000001,16.1,73.82000000000001,927,15 +2013,11,5,9,30,226,190,80,5.6000000000000005,18.2,63.690000000000005,927,15.600000000000001 +2013,11,5,10,30,418,252,293,6.300000000000001,20.1,55.4,927,15.600000000000001 +2013,11,5,11,30,350,298,80,6.5,21.6,49.92,926,15.600000000000001 +2013,11,5,12,30,208,202,9,6.300000000000001,22.400000000000002,48.22,925,15.5 +2013,11,5,13,30,294,267,42,6,22.900000000000002,50.71,924,15.4 +2013,11,5,14,30,157,156,1,5.5,23.1,56.83,923,15.200000000000001 +2013,11,5,15,30,81,81,0,4.800000000000001,22.8,65.55,923,15 +2013,11,5,16,30,130,95,144,3.6,21.700000000000003,75.95,924,14.700000000000001 +2013,11,5,17,30,26,20,121,2.7,20.8,87.27,924,14.8 +2013,11,5,18,30,0,0,0,2.4000000000000004,17.900000000000002,99.62,925,14.4 +2013,11,5,19,30,0,0,0,2.8000000000000003,17.1,112.14,926,14 +2013,11,5,20,30,0,0,0,3.1,16.5,124.8,926,13.700000000000001 +2013,11,5,21,30,0,0,0,3.2,15.8,137.37,927,13.5 +2013,11,5,22,30,0,0,0,2.7,15,149.4,928,13.3 +2013,11,5,23,30,0,0,0,2.9000000000000004,14,159.57,929,12.9 +2013,11,6,0,30,0,0,0,4.3,12.4,163.66,930,11.700000000000001 +2013,11,6,1,30,0,0,0,5.300000000000001,10.4,157.95000000000002,931,9.4 +2013,11,6,2,30,0,0,0,5.6000000000000005,8.3,147.25,932,6.5 +2013,11,6,3,30,0,0,0,5.5,7.1000000000000005,135.07,932,3.9000000000000004 +2013,11,6,4,30,0,0,0,5.4,6.6000000000000005,122.46000000000001,933,2.3000000000000003 +2013,11,6,5,30,0,0,0,5.300000000000001,6.300000000000001,109.82000000000001,934,1.3 +2013,11,6,6,30,0,0,0,5.1000000000000005,6,97.38,936,0.5 +2013,11,6,7,30,56,27,348,5.1000000000000005,6.1000000000000005,85.21000000000001,937,0.2 +2013,11,6,8,30,247,54,700,5.4,6.9,74.03,937,-0.30000000000000004 +2013,11,6,9,30,373,126,561,5.5,8.6,63.93,938,-1.3 +2013,11,6,10,30,595,69,931,5.5,10.8,55.67,937,-2.5 +2013,11,6,11,30,693,71,972,5.5,13,50.21,937,-3.8000000000000003 +2013,11,6,12,30,726,70,990,5.4,14.8,48.52,936,-4.7 +2013,11,6,13,30,692,67,992,5.300000000000001,15.9,50.99,936,-5 +2013,11,6,14,30,593,63,975,5.1000000000000005,16.1,57.08,936,-5.2 +2013,11,6,15,30,433,55,921,4.7,15.600000000000001,65.76,936,-5.4 +2013,11,6,16,30,230,42,784,3.4000000000000004,13.600000000000001,76.13,936,-5.6000000000000005 +2013,11,6,17,30,33,16,375,2.4000000000000004,12.100000000000001,87.41,937,-3.5 +2013,11,6,18,30,0,0,0,1.6,7.6000000000000005,99.77,937,-2.3000000000000003 +2013,11,6,19,30,0,0,0,1.5,6.6000000000000005,112.27,938,-2.5 +2013,11,6,20,30,0,0,0,1.5,5.7,124.93,939,-2.7 +2013,11,6,21,30,0,0,0,1.4000000000000001,4.9,137.51,939,-2.8000000000000003 +2013,11,6,22,30,0,0,0,1.3,4.2,149.57,939,-2.9000000000000004 +2013,11,6,23,30,0,0,0,1.2000000000000002,3.6,159.8,940,-3.1 +2013,11,7,0,30,0,0,0,1.1,3.1,163.96,940,-3.3000000000000003 +2013,11,7,1,30,0,0,0,1.1,2.7,158.18,940,-3.5 +2013,11,7,2,30,0,0,0,1,2.5,147.43,940,-3.7 +2013,11,7,3,30,0,0,0,0.9,2.4000000000000004,135.23,941,-4 +2013,11,7,4,30,0,0,0,0.9,2.2,122.62,941,-4.3 +2013,11,7,5,30,0,0,0,1,1.7000000000000002,109.98,942,-4.5 +2013,11,7,6,30,0,0,0,1.1,1.4000000000000001,97.55,943,-4.5 +2013,11,7,7,30,39,28,134,1.5,3.3000000000000003,85.39,943,-4.2 +2013,11,7,8,30,194,86,397,1.9000000000000001,6.800000000000001,74.23,943,-3.5 +2013,11,7,9,30,459,52,934,1.8,10.600000000000001,64.16,943,-3.8000000000000003 +2013,11,7,10,30,613,60,989,2.1,13.9,55.93,943,-5.9 +2013,11,7,11,30,621,142,754,2.4000000000000004,15.5,50.49,942,-5.9 +2013,11,7,12,30,598,212,586,2.4000000000000004,16.400000000000002,48.82,941,-5.5 +2013,11,7,13,30,520,252,430,2.3000000000000003,16.7,51.27,941,-5.2 +2013,11,7,14,30,483,147,624,2.3000000000000003,16.5,57.32,940,-4.9 +2013,11,7,15,30,262,171,224,2,15.600000000000001,65.97,940,-4.5 +2013,11,7,16,30,110,92,78,1.4000000000000001,13.4,76.31,940,-2 +2013,11,7,17,30,17,17,0,1.1,11.8,87.56,940,1.1 +2013,11,7,18,30,0,0,0,1.5,9.4,99.91,940,0.1 +2013,11,7,19,30,0,0,0,1.6,8.700000000000001,112.4,940,-0.2 +2013,11,7,20,30,0,0,0,1.7000000000000002,8.200000000000001,125.06,940,-0.30000000000000004 +2013,11,7,21,30,0,0,0,1.7000000000000002,7.800000000000001,137.65,940,-0.4 +2013,11,7,22,30,0,0,0,1.7000000000000002,7.300000000000001,149.73,940,-0.4 +2013,11,7,23,30,0,0,0,1.8,7,160.03,940,-0.5 +2013,11,8,0,30,0,0,0,1.9000000000000001,6.7,164.25,939,-0.6000000000000001 +2013,11,8,1,30,0,0,0,2,6.5,158.42000000000002,939,-0.6000000000000001 +2013,11,8,2,30,0,0,0,2.3000000000000003,6.4,147.61,939,-0.6000000000000001 +2013,11,8,3,30,0,0,0,2.4000000000000004,6.300000000000001,135.38,938,-0.5 +2013,11,8,4,30,0,0,0,2.5,6.2,122.77,938,-0.4 +2013,11,8,5,30,0,0,0,2.5,6.1000000000000005,110.13,937,-0.2 +2013,11,8,6,30,0,0,0,2.8000000000000003,6.300000000000001,97.72,937,0 +2013,11,8,7,30,55,23,421,3.3000000000000003,7.1000000000000005,85.57000000000001,937,0.2 +2013,11,8,8,30,247,47,744,3.7,8.6,74.44,937,0.5 +2013,11,8,9,30,300,177,284,4.5,10.5,64.39,937,0.8 +2013,11,8,10,30,246,226,36,5.5,12.100000000000001,56.19,937,-0.4 +2013,11,8,11,30,326,284,66,5.9,13.200000000000001,50.78,936,-1.9000000000000001 +2013,11,8,12,30,335,295,62,6.2,13.8,49.1,935,-2.8000000000000003 +2013,11,8,13,30,174,172,4,6.300000000000001,14,51.54,934,-3.1 +2013,11,8,14,30,293,242,94,6.300000000000001,13.8,57.56,933,-2.8000000000000003 +2013,11,8,15,30,91,91,0,5.800000000000001,12.9,66.17,932,-1.7000000000000002 +2013,11,8,16,30,50,50,0,5,11.600000000000001,76.48,932,-0.1 +2013,11,8,17,30,7,7,0,4.5,10.8,87.7,932,1.3 +2013,11,8,18,30,0,0,0,4.5,9,100.04,932,2.3000000000000003 +2013,11,8,19,30,0,0,0,4.6000000000000005,8.4,112.52,932,3 +2013,11,8,20,30,0,0,0,4.6000000000000005,8,125.18,931,3.3000000000000003 +2013,11,8,21,30,0,0,0,4.7,7.7,137.78,931,3.4000000000000004 +2013,11,8,22,30,0,0,0,4.6000000000000005,7.5,149.89000000000001,931,3.3000000000000003 +2013,11,8,23,30,0,0,0,4.4,7.300000000000001,160.25,931,3.2 +2013,11,9,0,30,0,0,0,4.2,6.9,164.54,930,3.1 +2013,11,9,1,30,0,0,0,3.9000000000000004,6.5,158.65,930,3 +2013,11,9,2,30,0,0,0,3.6,6,147.79,929,3 +2013,11,9,3,30,0,0,0,3.4000000000000004,5.6000000000000005,135.54,929,2.9000000000000004 +2013,11,9,4,30,0,0,0,3.3000000000000003,5.2,122.92,929,3 +2013,11,9,5,30,0,0,0,3.2,4.9,110.29,929,3.1 +2013,11,9,6,30,0,0,0,3.3000000000000003,4.800000000000001,97.88,930,3.3000000000000003 +2013,11,9,7,30,51,24,369,3.7,5.7,85.74,930,3.5 +2013,11,9,8,30,242,52,719,4.1000000000000005,8.200000000000001,74.64,930,4.2 +2013,11,9,9,30,434,65,861,4.1000000000000005,11.5,64.62,931,5.7 +2013,11,9,10,30,584,71,928,3.8000000000000003,14.700000000000001,56.45,930,6.800000000000001 +2013,11,9,11,30,677,74,959,3.6,17.6,51.06,930,7.7 +2013,11,9,12,30,703,72,969,3.5,19.900000000000002,49.39,929,8.200000000000001 +2013,11,9,13,30,663,71,958,3.4000000000000004,21.400000000000002,51.800000000000004,929,8.4 +2013,11,9,14,30,558,67,922,3.3000000000000003,22.200000000000003,57.79,928,8 +2013,11,9,15,30,400,60,849,2.9000000000000004,22.1,66.37,928,7.6000000000000005 +2013,11,9,16,30,206,46,694,2,19.8,76.65,929,8 +2013,11,9,17,30,25,15,262,1.3,17.8,87.84,929,9.3 +2013,11,9,18,30,0,0,0,2.2,14.600000000000001,100.17,930,8.200000000000001 +2013,11,9,19,30,0,0,0,2.8000000000000003,14,112.64,930,8.6 +2013,11,9,20,30,0,0,0,3.1,13,125.29,931,9 +2013,11,9,21,30,0,0,0,2.8000000000000003,11.700000000000001,137.9,931,9.1 +2013,11,9,22,30,0,0,0,2.5,10.4,150.04,932,9.1 +2013,11,9,23,30,0,0,0,2.3000000000000003,9.4,160.47,932,8.9 +2013,11,10,0,30,0,0,0,2,8.5,164.82,932,8.5 +2013,11,10,1,30,0,0,0,1.8,7.7,158.87,933,7.7 +2013,11,10,2,30,0,0,0,1.6,7.2,147.96,933,7.2 +2013,11,10,3,30,0,0,0,1.4000000000000001,6.800000000000001,135.7,934,6.800000000000001 +2013,11,10,4,30,0,0,0,1.2000000000000002,6.6000000000000005,123.07000000000001,934,6.6000000000000005 +2013,11,10,5,30,0,0,0,1,6.5,110.45,935,6.5 +2013,11,10,6,30,0,0,0,1,6.6000000000000005,98.05,935,6.6000000000000005 +2013,11,10,7,30,46,25,298,1.4000000000000001,7.800000000000001,85.92,936,7.800000000000001 +2013,11,10,8,30,231,59,660,2,10.200000000000001,74.84,937,8.1 +2013,11,10,9,30,417,76,802,2.5,13,64.85,937,8.8 +2013,11,10,10,30,565,88,868,3.2,15.9,56.71,937,10 +2013,11,10,11,30,657,93,903,3.6,18.3,51.34,936,10.9 +2013,11,10,12,30,352,300,80,3.8000000000000003,20,49.67,936,11.200000000000001 +2013,11,10,13,30,334,283,83,3.9000000000000004,21,52.06,935,11.200000000000001 +2013,11,10,14,30,398,223,330,3.8000000000000003,21.400000000000002,58.02,934,11 +2013,11,10,15,30,384,77,774,3.4000000000000004,21.1,66.56,934,10.8 +2013,11,10,16,30,194,57,602,2.3000000000000003,19.1,76.81,934,10.600000000000001 +2013,11,10,17,30,22,16,156,1.5,17.400000000000002,87.97,934,11.100000000000001 +2013,11,10,18,30,0,0,0,1.8,14,100.29,935,10.600000000000001 +2013,11,10,19,30,0,0,0,2.3000000000000003,13.4,112.75,935,10.8 +2013,11,10,20,30,0,0,0,2.7,12.700000000000001,125.4,935,10.9 +2013,11,10,21,30,0,0,0,2.9000000000000004,11.8,138.01,936,11 +2013,11,10,22,30,0,0,0,2.9000000000000004,11,150.18,936,11 +2013,11,10,23,30,0,0,0,2.9000000000000004,10.5,160.67000000000002,936,10.5 +2013,11,11,0,30,0,0,0,3,10.200000000000001,165.1,935,10.200000000000001 +2013,11,11,1,30,0,0,0,3,10.100000000000001,159.1,935,10.100000000000001 +2013,11,11,2,30,0,0,0,2.8000000000000003,9.9,148.14000000000001,935,9.9 +2013,11,11,3,30,0,0,0,2.4000000000000004,9.600000000000001,135.85,935,9.600000000000001 +2013,11,11,4,30,0,0,0,2.2,9.4,123.22,935,9.4 +2013,11,11,5,30,0,0,0,2.1,9.1,110.60000000000001,935,9.1 +2013,11,11,6,30,0,0,0,2.1,8.9,98.21000000000001,935,8.9 +2013,11,11,7,30,44,25,266,2.2,9.5,86.10000000000001,936,9.200000000000001 +2013,11,11,8,30,48,48,0,2.5,11.700000000000001,75.04,936,9.5 +2013,11,11,9,30,163,156,18,2.9000000000000004,15.100000000000001,65.08,936,10.3 +2013,11,11,10,30,263,233,54,3.3000000000000003,18.5,56.96,936,11.5 +2013,11,11,11,30,488,271,349,3.2,20.700000000000003,51.61,935,11.5 +2013,11,11,12,30,526,273,393,3,22,49.94,934,10.8 +2013,11,11,13,30,648,80,928,2.8000000000000003,22.8,52.32,933,10.100000000000001 +2013,11,11,14,30,545,74,895,2.5,22.900000000000002,58.24,933,9.5 +2013,11,11,15,30,388,63,823,2.2,22.3,66.75,932,9.1 +2013,11,11,16,30,197,47,667,1.5,20,76.97,932,9.200000000000001 +2013,11,11,17,30,22,14,224,0.9,18.2,88.09,933,10.9 +2013,11,11,18,30,0,0,0,1.2000000000000002,14.700000000000001,100.41,933,9.8 +2013,11,11,19,30,0,0,0,1.2000000000000002,13.600000000000001,112.85000000000001,934,10.3 +2013,11,11,20,30,0,0,0,1.2000000000000002,12.8,125.5,935,10.8 +2013,11,11,21,30,0,0,0,1.2000000000000002,12.100000000000001,138.12,935,11.200000000000001 +2013,11,11,22,30,0,0,0,0.9,12,150.31,936,11.3 +2013,11,11,23,30,0,0,0,0.7000000000000001,11.9,160.87,937,11.4 +2013,11,12,0,30,0,0,0,1.7000000000000002,11.4,165.37,938,11.3 +2013,11,12,1,30,0,0,0,4.2,10.8,159.32,939,10.8 +2013,11,12,2,30,0,0,0,6.4,9.9,148.31,941,9.5 +2013,11,12,3,30,0,0,0,7.300000000000001,7.9,136.01,942,6.5 +2013,11,12,4,30,0,0,0,7.4,6,123.37,944,2.6 +2013,11,12,5,30,0,0,0,7.300000000000001,4.6000000000000005,110.76,945,-0.2 +2013,11,12,6,30,0,0,0,7.300000000000001,3.8000000000000003,98.38,946,-1.7000000000000002 +2013,11,12,7,30,40,26,226,7.4,3.2,86.27,948,-2.7 +2013,11,12,8,30,65,65,0,7.300000000000001,3,75.24,948,-4.1000000000000005 +2013,11,12,9,30,119,119,0,7.2,3.6,65.3,949,-5.5 +2013,11,12,10,30,110,110,0,7.1000000000000005,5,57.21,949,-6.6000000000000005 +2013,11,12,11,30,412,293,192,6.9,6.6000000000000005,51.88,948,-7.300000000000001 +2013,11,12,12,30,691,81,953,6.7,8,50.21,947,-7.7 +2013,11,12,13,30,655,75,955,6.6000000000000005,8.9,52.56,947,-7.800000000000001 +2013,11,12,14,30,555,66,933,6.300000000000001,9.1,58.45,946,-8.200000000000001 +2013,11,12,15,30,398,57,870,5.9,8.6,66.93,946,-9 +2013,11,12,16,30,203,41,726,5,7.300000000000001,77.11,947,-10.100000000000001 +2013,11,12,17,30,22,13,295,4.3,6.5,88.2,947,-10.8 +2013,11,12,18,30,0,0,0,2.2,3.4000000000000004,100.52,948,-9.9 +2013,11,12,19,30,0,0,0,2,2.5,112.95,948,-9.700000000000001 +2013,11,12,20,30,0,0,0,1.9000000000000001,1.6,125.60000000000001,948,-9.9 +2013,11,12,21,30,0,0,0,1.8,0.9,138.22,948,-10.200000000000001 +2013,11,12,22,30,0,0,0,1.7000000000000002,0.1,150.44,948,-10.5 +2013,11,12,23,30,0,0,0,1.7000000000000002,-0.7000000000000001,161.06,948,-10.8 +2013,11,13,0,30,0,0,0,1.6,-1.5,165.64000000000001,948,-11 +2013,11,13,1,30,0,0,0,1.5,-2.3000000000000003,159.54,948,-11.200000000000001 +2013,11,13,2,30,0,0,0,1.3,-3.1,148.48,948,-11.200000000000001 +2013,11,13,3,30,0,0,0,1.1,-3.8000000000000003,136.16,948,-11 +2013,11,13,4,30,0,0,0,0.9,-4.3,123.52,947,-10.9 +2013,11,13,5,30,0,0,0,0.8,-4.5,110.91,947,-10.9 +2013,11,13,6,30,0,0,0,0.7000000000000001,-4.4,98.55,947,-11.200000000000001 +2013,11,13,7,30,47,18,469,0.8,-3.1,86.44,947,-11.200000000000001 +2013,11,13,8,30,246,38,828,1.2000000000000002,-0.2,75.44,947,-11.4 +2013,11,13,9,30,441,47,951,1.5,2.8000000000000003,65.53,946,-13.3 +2013,11,13,10,30,595,52,1009,1.7000000000000002,5.5,57.46,946,-13.600000000000001 +2013,11,13,11,30,684,55,1025,1.9000000000000001,7.9,52.14,944,-13.600000000000001 +2013,11,13,12,30,714,59,1030,2.1,9.9,50.47,943,-13.600000000000001 +2013,11,13,13,30,674,58,1020,2.3000000000000003,11.200000000000001,52.81,942,-13.5 +2013,11,13,14,30,568,55,988,2.5,11.9,58.660000000000004,941,-13.3 +2013,11,13,15,30,408,50,918,2.6,11.600000000000001,67.1,940,-13.200000000000001 +2013,11,13,16,30,209,39,771,1.9000000000000001,9.3,77.26,939,-12.700000000000001 +2013,11,13,17,30,23,13,327,1.3,7.300000000000001,88.31,939,-6.800000000000001 +2013,11,13,18,30,0,0,0,1.8,3.8000000000000003,100.62,939,-7.300000000000001 +2013,11,13,19,30,0,0,0,2.1,3.3000000000000003,113.05,939,-7.800000000000001 +2013,11,13,20,30,0,0,0,2.5,2.8000000000000003,125.69,938,-7.800000000000001 +2013,11,13,21,30,0,0,0,2.9000000000000004,2.4000000000000004,138.32,938,-7.4 +2013,11,13,22,30,0,0,0,3.2,2,150.56,938,-6.800000000000001 +2013,11,13,23,30,0,0,0,3.3000000000000003,1.5,161.25,937,-6.2 +2013,11,14,0,30,0,0,0,3.4000000000000004,1.2000000000000002,165.9,936,-5.5 +2013,11,14,1,30,0,0,0,3.5,1.1,159.75,936,-4.9 +2013,11,14,2,30,0,0,0,3.5,1.2000000000000002,148.66,935,-4.3 +2013,11,14,3,30,0,0,0,3.4000000000000004,1.3,136.32,934,-3.8000000000000003 +2013,11,14,4,30,0,0,0,3.3000000000000003,1.4000000000000001,123.67,934,-3.4000000000000004 +2013,11,14,5,30,0,0,0,3.2,1.5,111.07000000000001,933,-3.2 +2013,11,14,6,30,0,0,0,3.3000000000000003,1.6,98.71000000000001,933,-3 +2013,11,14,7,30,19,19,0,3.5,2.2,86.62,933,-2.9000000000000004 +2013,11,14,8,30,132,97,141,3.9000000000000004,3.7,75.64,933,-2.9000000000000004 +2013,11,14,9,30,177,162,35,4.5,5.9,65.75,932,-3.2 +2013,11,14,10,30,229,212,31,5,8.200000000000001,57.7,932,-2.6 +2013,11,14,11,30,293,263,49,5.4,11,52.4,930,-1 +2013,11,14,12,30,259,244,24,5.6000000000000005,13.4,50.730000000000004,929,0.5 +2013,11,14,13,30,441,276,275,5.6000000000000005,14.4,53.04,928,1.9000000000000001 +2013,11,14,14,30,521,86,840,5.4,14.4,58.86,927,2.8000000000000003 +2013,11,14,15,30,369,74,762,5.2,14,67.27,927,3.2 +2013,11,14,16,30,61,61,0,4.6000000000000005,12.9,77.4,927,3.4000000000000004 +2013,11,14,17,30,17,14,134,4.1000000000000005,12.100000000000001,88.43,927,3.7 +2013,11,14,18,30,0,0,0,4,9.600000000000001,100.72,927,3.7 +2013,11,14,19,30,0,0,0,4.3,9,113.14,927,3.9000000000000004 +2013,11,14,20,30,0,0,0,4.5,8.4,125.77,926,4.1000000000000005 +2013,11,14,21,30,0,0,0,4.6000000000000005,7.7,138.41,926,4.3 +2013,11,14,22,30,0,0,0,4.5,6.9,150.67000000000002,926,4.4 +2013,11,14,23,30,0,0,0,4.3,6.2,161.42000000000002,926,4.3 +2013,11,15,0,30,0,0,0,4.1000000000000005,5.6000000000000005,166.16,926,4.3 +2013,11,15,1,30,0,0,0,3.9000000000000004,5.1000000000000005,159.97,926,4.4 +2013,11,15,2,30,0,0,0,3.6,4.6000000000000005,148.83,926,4.3 +2013,11,15,3,30,0,0,0,3.2,4.2,136.47,925,4.2 +2013,11,15,4,30,0,0,0,3,3.9000000000000004,123.83,925,3.9000000000000004 +2013,11,15,5,30,0,0,0,2.8000000000000003,3.6,111.22,926,3.6 +2013,11,15,6,30,0,0,0,2.8000000000000003,3.6,98.88,926,3.6 +2013,11,15,7,30,39,19,345,3.2,4.9,86.79,926,4.1000000000000005 +2013,11,15,8,30,226,46,737,3.1,7.800000000000001,75.84,927,4.1000000000000005 +2013,11,15,9,30,416,57,882,2.4000000000000004,11.8,65.97,927,4.3 +2013,11,15,10,30,566,63,949,2,16,57.94,927,4.9 +2013,11,15,11,30,660,66,980,2.3000000000000003,19.700000000000003,52.660000000000004,925,5.1000000000000005 +2013,11,15,12,30,686,67,984,3.3000000000000003,22.700000000000003,50.99,924,4.4 +2013,11,15,13,30,574,141,725,4,24.3,53.27,923,3.5 +2013,11,15,14,30,537,65,919,4.4,24.6,59.06,922,3.5 +2013,11,15,15,30,378,59,833,4,23.8,67.44,921,3.9000000000000004 +2013,11,15,16,30,187,44,660,3.2,21.1,77.53,921,5.4 +2013,11,15,17,30,17,12,190,2.9000000000000004,19.1,88.54,921,6.5 +2013,11,15,18,30,0,0,0,4.5,17.8,100.81,922,6.6000000000000005 +2013,11,15,19,30,0,0,0,5.1000000000000005,17.3,113.22,922,7.4 +2013,11,15,20,30,0,0,0,5.2,16.7,125.85000000000001,922,8.3 +2013,11,15,21,30,0,0,0,5.2,15.9,138.49,922,8.700000000000001 +2013,11,15,22,30,0,0,0,5,14.700000000000001,150.77,922,8.9 +2013,11,15,23,30,0,0,0,4.9,13.8,161.59,922,8.9 +2013,11,16,0,30,0,0,0,4.800000000000001,13.100000000000001,166.42000000000002,921,8.9 +2013,11,16,1,30,0,0,0,4.7,12.8,160.18,921,9 +2013,11,16,2,30,0,0,0,4.6000000000000005,12.600000000000001,149,921,9.1 +2013,11,16,3,30,0,0,0,4.2,12.5,136.62,921,9.200000000000001 +2013,11,16,4,30,0,0,0,3.8000000000000003,12.3,123.98,921,9.4 +2013,11,16,5,30,0,0,0,3.6,12.200000000000001,111.38,921,9.600000000000001 +2013,11,16,6,30,0,0,0,3.6,11.9,99.04,921,9.8 +2013,11,16,7,30,33,19,274,4.3,12.4,86.97,921,9.9 +2013,11,16,8,30,209,46,677,5.300000000000001,14.5,76.04,922,10.200000000000001 +2013,11,16,9,30,390,58,824,6.1000000000000005,17.6,66.19,921,10.600000000000001 +2013,11,16,10,30,417,211,391,6.5,20.700000000000003,58.18,921,11.100000000000001 +2013,11,16,11,30,483,256,376,6.6000000000000005,23.400000000000002,52.910000000000004,921,11.600000000000001 +2013,11,16,12,30,655,71,932,6.7,25.3,51.230000000000004,919,11.700000000000001 +2013,11,16,13,30,527,193,563,6.7,26.200000000000003,53.5,918,11.4 +2013,11,16,14,30,471,121,684,6.6000000000000005,26.400000000000002,59.25,918,11.100000000000001 +2013,11,16,15,30,364,61,797,6,26,67.6,917,10.9 +2013,11,16,16,30,180,45,631,4.9,24.200000000000003,77.66,917,10.8 +2013,11,16,17,30,16,12,168,4.3,22.8,88.64,917,11.200000000000001 +2013,11,16,18,30,0,0,0,4.800000000000001,19.8,100.9,918,11.4 +2013,11,16,19,30,0,0,0,5.1000000000000005,18.7,113.29,918,11.9 +2013,11,16,20,30,0,0,0,5.300000000000001,17.7,125.92,918,12.5 +2013,11,16,21,30,0,0,0,5.7,17.1,138.56,919,13.100000000000001 +2013,11,16,22,30,0,0,0,5.800000000000001,16.6,150.87,919,13.5 +2013,11,16,23,30,0,0,0,5.4,16.1,161.75,919,13.8 +2013,11,17,0,30,0,0,0,4.800000000000001,15.5,166.67000000000002,920,13.9 +2013,11,17,1,30,0,0,0,4.5,14.9,160.39000000000001,920,13.9 +2013,11,17,2,30,0,0,0,4.7,14.600000000000001,149.16,921,13.700000000000001 +2013,11,17,3,30,0,0,0,4.7,14.3,136.78,921,13.100000000000001 +2013,11,17,4,30,0,0,0,4.3,13.8,124.13000000000001,921,12.3 +2013,11,17,5,30,0,0,0,3.9000000000000004,13.200000000000001,111.54,922,11.100000000000001 +2013,11,17,6,30,0,0,0,3.7,12.600000000000001,99.21000000000001,923,10 +2013,11,17,7,30,35,17,356,4,13.5,87.14,924,9.1 +2013,11,17,8,30,222,41,757,4.3,16.2,76.24,924,8.5 +2013,11,17,9,30,411,53,894,4.800000000000001,19.700000000000003,66.41,925,8.3 +2013,11,17,10,30,561,59,958,5.7,22.900000000000002,58.42,925,6 +2013,11,17,11,30,656,64,987,5.800000000000001,24.6,53.160000000000004,925,3.2 +2013,11,17,12,30,685,65,995,5.6000000000000005,25.6,51.47,924,1.5 +2013,11,17,13,30,646,64,983,5.300000000000001,26,53.72,923,0.30000000000000004 +2013,11,17,14,30,543,60,949,4.800000000000001,26,59.44,923,-0.5 +2013,11,17,15,30,385,53,878,3.5,24.8,67.75,923,-0.8 +2013,11,17,16,30,193,41,718,1.9000000000000001,21.6,77.78,924,2.7 +2013,11,17,17,30,17,12,235,1.3,19.200000000000003,88.73,924,5.4 +2013,11,17,18,30,0,0,0,1.2000000000000002,17.3,100.99000000000001,925,4.2 +2013,11,17,19,30,0,0,0,1.2000000000000002,16.8,113.36,926,4 +2013,11,17,20,30,0,0,0,1.2000000000000002,15.9,125.98,927,3.8000000000000003 +2013,11,17,21,30,0,0,0,1.4000000000000001,14.4,138.63,927,3.7 +2013,11,17,22,30,0,0,0,1.6,12.8,150.96,928,3.6 +2013,11,17,23,30,0,0,0,2,11.4,161.9,929,3.7 +2013,11,18,0,30,0,0,0,2.6,10.5,166.91,929,3.6 +2013,11,18,1,30,0,0,0,3.3000000000000003,9.8,160.59,930,3.6 +2013,11,18,2,30,0,0,0,3.5,9.200000000000001,149.33,930,3.5 +2013,11,18,3,30,0,0,0,3.3000000000000003,8.9,136.93,931,3.1 +2013,11,18,4,30,0,0,0,2.9000000000000004,8.700000000000001,124.28,931,2.3000000000000003 +2013,11,18,5,30,0,0,0,2.5,8.5,111.69,932,1.2000000000000002 +2013,11,18,6,30,0,0,0,2.5,8.3,99.37,933,0.4 +2013,11,18,7,30,18,18,0,2.8000000000000003,8.6,87.31,933,-0.2 +2013,11,18,8,30,103,90,55,3.1,9.700000000000001,76.43,934,-0.6000000000000001 +2013,11,18,9,30,272,160,281,3.3000000000000003,11.5,66.62,934,-1.1 +2013,11,18,10,30,339,238,195,3.3000000000000003,13.4,58.65,934,-1.9000000000000001 +2013,11,18,11,30,369,283,143,3,15,53.4,934,-2.1 +2013,11,18,12,30,492,269,359,2.5,16.2,51.71,933,-1.7000000000000002 +2013,11,18,13,30,623,70,940,2.3000000000000003,16.7,53.93,932,-1.1 +2013,11,18,14,30,521,65,902,2.2,16.8,59.620000000000005,931,-0.5 +2013,11,18,15,30,254,151,274,2.1,16.5,67.89,931,0.1 +2013,11,18,16,30,111,80,150,1.7000000000000002,14.9,77.9,932,1.8 +2013,11,18,17,30,5,5,0,1.5,13.700000000000001,88.81,932,3.2 +2013,11,18,18,30,0,0,0,1.9000000000000001,12.200000000000001,101.06,932,2.4000000000000004 +2013,11,18,19,30,0,0,0,2,11.8,113.43,932,2.2 +2013,11,18,20,30,0,0,0,2,11.4,126.04,932,2.5 +2013,11,18,21,30,0,0,0,2.2,11.100000000000001,138.70000000000002,932,3 +2013,11,18,22,30,0,0,0,2.4000000000000004,10.600000000000001,151.04,932,3.6 +2013,11,18,23,30,0,0,0,2.2,9.9,162.04,931,4.2 +2013,11,19,0,30,0,0,0,1.7000000000000002,9.200000000000001,167.14000000000001,931,4.7 +2013,11,19,1,30,0,0,0,1.4000000000000001,8.700000000000001,160.79,931,5.1000000000000005 +2013,11,19,2,30,0,0,0,1.2000000000000002,8.3,149.49,931,5.5 +2013,11,19,3,30,0,0,0,1.2000000000000002,7.800000000000001,137.08,931,5.800000000000001 +2013,11,19,4,30,0,0,0,1.4000000000000001,7.300000000000001,124.43,931,6.2 +2013,11,19,5,30,0,0,0,1.8,7.2,111.85000000000001,931,6.6000000000000005 +2013,11,19,6,30,0,0,0,2.3000000000000003,7.4,99.54,931,7 +2013,11,19,7,30,27,18,211,3.1,8.700000000000001,87.48,931,7.1000000000000005 +2013,11,19,8,30,197,55,617,4.2,11.3,76.62,931,7 +2013,11,19,9,30,283,151,335,5,14.200000000000001,66.83,931,5.9 +2013,11,19,10,30,411,202,404,5.2,16.8,58.88,931,5.4 +2013,11,19,11,30,616,88,890,5.1000000000000005,19.1,53.63,929,7 +2013,11,19,12,30,648,81,920,5,20.700000000000003,51.94,928,8.6 +2013,11,19,13,30,609,79,904,4.9,21.6,54.14,927,9.200000000000001 +2013,11,19,14,30,509,75,862,4.9,22,59.79,926,9.5 +2013,11,19,15,30,358,64,787,4.9,21.6,68.03,925,9.700000000000001 +2013,11,19,16,30,174,48,610,4.4,20.200000000000003,78.01,925,9.9 +2013,11,19,17,30,14,11,130,3.9000000000000004,19.1,88.89,925,10.200000000000001 +2013,11,19,18,30,0,0,0,4.7,16.900000000000002,101.13,925,10.200000000000001 +2013,11,19,19,30,0,0,0,5.300000000000001,16,113.49000000000001,925,10.4 +2013,11,19,20,30,0,0,0,5.4,15.100000000000001,126.10000000000001,925,10.8 +2013,11,19,21,30,0,0,0,5.1000000000000005,14.100000000000001,138.75,925,11.4 +2013,11,19,22,30,0,0,0,4.800000000000001,13.200000000000001,151.12,925,11.9 +2013,11,19,23,30,0,0,0,4.6000000000000005,12.600000000000001,162.18,925,12.200000000000001 +2013,11,20,0,30,0,0,0,4.5,12.200000000000001,167.38,925,12.200000000000001 +2013,11,20,1,30,0,0,0,4.4,11.9,160.99,925,11.9 +2013,11,20,2,30,0,0,0,4.3,11.8,149.66,925,11.8 +2013,11,20,3,30,0,0,0,4.2,11.8,137.23,924,11.8 +2013,11,20,4,30,0,0,0,4.1000000000000005,11.8,124.58,924,11.8 +2013,11,20,5,30,0,0,0,4.1000000000000005,11.8,112,924,11.8 +2013,11,20,6,30,0,0,0,4.2,11.9,99.7,925,11.9 +2013,11,20,7,30,8,8,0,4.5,12.600000000000001,87.65,925,12.5 +2013,11,20,8,30,95,86,38,5.5,14.4,76.82000000000001,925,12.8 +2013,11,20,9,30,249,164,218,6.4,17.1,67.04,925,13.4 +2013,11,20,10,30,368,225,279,6.5,20,59.1,925,13.8 +2013,11,20,11,30,501,222,472,6.300000000000001,22.3,53.870000000000005,924,13.9 +2013,11,20,12,30,640,78,916,6.2,24,52.160000000000004,923,13.700000000000001 +2013,11,20,13,30,599,79,893,6,24.700000000000003,54.34,922,13.3 +2013,11,20,14,30,498,77,841,5.5,24.400000000000002,59.96,922,13.100000000000001 +2013,11,20,15,30,269,139,347,4.7,23.3,68.16,921,13.100000000000001 +2013,11,20,16,30,140,65,368,3.6,21.6,78.12,922,13.3 +2013,11,20,17,30,4,4,0,3,20.5,88.97,922,13.600000000000001 +2013,11,20,18,30,0,0,0,3.3000000000000003,18.2,101.2,923,13.700000000000001 +2013,11,20,19,30,0,0,0,3.9000000000000004,17.5,113.54,924,13.9 +2013,11,20,20,30,0,0,0,4.1000000000000005,16.7,126.14,924,14.200000000000001 +2013,11,20,21,30,0,0,0,4.1000000000000005,15.8,138.8,924,14.5 +2013,11,20,22,30,0,0,0,3.9000000000000004,15,151.19,925,14.9 +2013,11,20,23,30,0,0,0,3.7,14.600000000000001,162.3,925,14.600000000000001 +2013,11,21,0,30,0,0,0,3.4000000000000004,14.5,167.6,925,14.5 +2013,11,21,1,30,0,0,0,3,14.4,161.19,925,14.4 +2013,11,21,2,30,0,0,0,2.7,14.200000000000001,149.82,925,14.200000000000001 +2013,11,21,3,30,0,0,0,2.4000000000000004,14.200000000000001,137.38,925,14.200000000000001 +2013,11,21,4,30,0,0,0,2.3000000000000003,14.3,124.73,925,14.3 +2013,11,21,5,30,0,0,0,2.3000000000000003,14.5,112.16,925,14.5 +2013,11,21,6,30,0,0,0,2,14.600000000000001,99.87,926,14.600000000000001 +2013,11,21,7,30,14,14,0,2.1,15.200000000000001,87.82000000000001,927,15.200000000000001 +2013,11,21,8,30,138,81,252,2.7,16.6,77.01,927,15.8 +2013,11,21,9,30,258,158,257,3.6,18.900000000000002,67.25,928,16.400000000000002 +2013,11,21,10,30,352,228,243,4.4,21.5,59.33,928,17 +2013,11,21,11,30,328,272,95,4.3,23.5,54.09,927,16.6 +2013,11,21,12,30,484,265,359,3.7,24.6,52.38,927,16 +2013,11,21,13,30,422,265,271,3,25.3,54.53,926,15.4 +2013,11,21,14,30,194,185,19,2.2,25.400000000000002,60.120000000000005,926,14.8 +2013,11,21,15,30,342,72,730,1.1,24.700000000000003,68.29,926,14.3 +2013,11,21,16,30,163,52,541,1,22.900000000000002,78.21000000000001,927,14.200000000000001 +2013,11,21,17,30,0,0,0,1.4000000000000001,21.5,89.04,927,15.100000000000001 +2013,11,21,18,30,0,0,0,4.9,17.900000000000002,101.26,929,13.700000000000001 +2013,11,21,19,30,0,0,0,7.300000000000001,14.3,113.59,932,12.200000000000001 +2013,11,21,20,30,0,0,0,8.1,9.600000000000001,126.19,934,8.700000000000001 +2013,11,21,21,30,0,0,0,7.7,5.6000000000000005,138.85,935,3.4000000000000004 +2013,11,21,22,30,0,0,0,7.2,3.6,151.25,936,-0.9 +2013,11,21,23,30,0,0,0,7,2.6,162.42000000000002,936,-2.8000000000000003 +2013,11,22,0,30,0,0,0,7,1.7000000000000002,167.82,937,-3.7 +2013,11,22,1,30,0,0,0,7.1000000000000005,0.7000000000000001,161.38,937,-4.7 +2013,11,22,2,30,0,0,0,7.2,-0.2,149.98,938,-5.6000000000000005 +2013,11,22,3,30,0,0,0,7.2,-1,137.53,939,-6.2 +2013,11,22,4,30,0,0,0,7.1000000000000005,-1.6,124.88000000000001,939,-6.4 +2013,11,22,5,30,0,0,0,7.2,-2.2,112.31,940,-6.800000000000001 +2013,11,22,6,30,0,0,0,7.300000000000001,-2.7,100.03,941,-7.2 +2013,11,22,7,30,6,6,0,7.300000000000001,-2.9000000000000004,87.96000000000001,942,-7.5 +2013,11,22,8,30,186,54,598,7.1000000000000005,-2.6,77.19,943,-7.6000000000000005 +2013,11,22,9,30,366,71,769,6.800000000000001,-1.8,67.45,943,-7.4 +2013,11,22,10,30,512,81,850,6.6000000000000005,-0.9,59.54,943,-6.9 +2013,11,22,11,30,26,26,0,6.4,0,54.31,943,-6.1000000000000005 +2013,11,22,12,30,120,120,0,6.4,0.7000000000000001,52.59,942,-5.4 +2013,11,22,13,30,195,190,9,6.4,1.2000000000000002,54.71,941,-4.9 +2013,11,22,14,30,186,179,15,6.300000000000001,1.4000000000000001,60.27,941,-4.4 +2013,11,22,15,30,52,52,0,6.1000000000000005,1.3,68.41,941,-4.2 +2013,11,22,16,30,29,29,0,5.7,0.5,78.3,941,-4 +2013,11,22,17,30,0,0,0,5.4,-0.1,89.07000000000001,941,-4.2 +2013,11,22,18,30,0,0,0,4.9,-1.4000000000000001,101.31,942,-4.4 +2013,11,22,19,30,0,0,0,4.9,-1.8,113.63,942,-4.6000000000000005 +2013,11,22,20,30,0,0,0,4.800000000000001,-2,126.22,942,-4.7 +2013,11,22,21,30,0,0,0,4.800000000000001,-2.1,138.88,942,-4.9 +2013,11,22,22,30,0,0,0,4.9,-2.1,151.3,942,-5 +2013,11,22,23,30,0,0,0,5,-2.1,162.53,942,-5.2 +2013,11,23,0,30,0,0,0,5.1000000000000005,-2.1,168.03,942,-5.4 +2013,11,23,1,30,0,0,0,5.2,-2,161.57,942,-5.6000000000000005 +2013,11,23,2,30,0,0,0,5.300000000000001,-2,150.14000000000001,942,-5.800000000000001 +2013,11,23,3,30,0,0,0,5.4,-2,137.68,942,-6.1000000000000005 +2013,11,23,4,30,0,0,0,5.5,-2,125.03,942,-6.4 +2013,11,23,5,30,0,0,0,5.6000000000000005,-1.9000000000000001,112.46000000000001,942,-6.7 +2013,11,23,6,30,0,0,0,5.5,-1.9000000000000001,100.19,943,-6.9 +2013,11,23,7,30,21,15,160,5.5,-1.5,88.12,944,-6.800000000000001 +2013,11,23,8,30,15,15,0,5.7,-0.9,77.38,944,-6.4 +2013,11,23,9,30,62,62,0,5.9,-0.1,67.65,944,-5.7 +2013,11,23,10,30,37,37,0,6,0.7000000000000001,59.75,944,-4.9 +2013,11,23,11,30,88,88,0,6,1.5,54.53,943,-4.5 +2013,11,23,12,30,204,198,9,5.9,2,52.800000000000004,943,-4.5 +2013,11,23,13,30,216,207,16,5.5,2.3000000000000003,54.89,942,-4.7 +2013,11,23,14,30,240,211,59,5.1000000000000005,2.1,60.410000000000004,942,-5 +2013,11,23,15,30,158,144,37,5,1.5,68.52,942,-4.9 +2013,11,23,16,30,84,75,43,4.6000000000000005,0.9,78.38,942,-4.7 +2013,11,23,17,30,0,0,0,4.3,0.6000000000000001,89.12,943,-4.7 +2013,11,23,18,30,0,0,0,3.9000000000000004,0.1,101.36,943,-4.7 +2013,11,23,19,30,0,0,0,4,-0.1,113.67,943,-4.9 +2013,11,23,20,30,0,0,0,4.1000000000000005,-0.2,126.25,943,-5 +2013,11,23,21,30,0,0,0,4.3,-0.4,138.91,944,-5.1000000000000005 +2013,11,23,22,30,0,0,0,4.6000000000000005,-0.7000000000000001,151.35,944,-5.4 +2013,11,23,23,30,0,0,0,4.800000000000001,-1.1,162.63,944,-6 +2013,11,24,0,30,0,0,0,4.800000000000001,-1.4000000000000001,168.24,943,-6.4 +2013,11,24,1,30,0,0,0,4.5,-1.7000000000000002,161.76,944,-6.5 +2013,11,24,2,30,0,0,0,4,-1.9000000000000001,150.3,944,-6.300000000000001 +2013,11,24,3,30,0,0,0,3.8000000000000003,-2,137.83,944,-6.2 +2013,11,24,4,30,0,0,0,3.8000000000000003,-2.1,125.17,944,-5.9 +2013,11,24,5,30,0,0,0,3.8000000000000003,-2.3000000000000003,112.62,944,-5.7 +2013,11,24,6,30,0,0,0,3.8000000000000003,-2.5,100.35000000000001,944,-5.6000000000000005 +2013,11,24,7,30,7,7,0,4,-2.6,88.28,944,-5.4 +2013,11,24,8,30,7,7,0,4.2,-2.4000000000000004,77.56,943,-5.4 +2013,11,24,9,30,132,131,4,4.2,-1.7000000000000002,67.85,943,-5.6000000000000005 +2013,11,24,10,30,146,146,0,3.8000000000000003,-0.7000000000000001,59.96,942,-5.4 +2013,11,24,11,30,264,240,40,3.2,0.2,54.74,942,-5 +2013,11,24,12,30,355,285,118,2.5,0.8,53,940,-4.5 +2013,11,24,13,30,319,264,97,2,1.2000000000000002,55.07,939,-4 +2013,11,24,14,30,279,222,116,1.7000000000000002,1.3,60.550000000000004,938,-3.7 +2013,11,24,15,30,361,74,789,1.6,1.1,68.63,938,-3.5 +2013,11,24,16,30,173,51,608,1.5,0.5,78.46000000000001,938,-3.4000000000000004 +2013,11,24,17,30,0,0,0,1.4000000000000001,0,89.18,938,-3.5 +2013,11,24,18,30,0,0,0,1.5,-1,101.4,938,-3.7 +2013,11,24,19,30,0,0,0,1.5,-1.3,113.7,938,-3.7 +2013,11,24,20,30,0,0,0,1.6,-1.7000000000000002,126.27,937,-3.7 +2013,11,24,21,30,0,0,0,1.6,-2,138.94,937,-3.7 +2013,11,24,22,30,0,0,0,1.6,-2.2,151.39000000000001,936,-3.7 +2013,11,24,23,30,0,0,0,1.6,-2.2,162.72,936,-3.7 +2013,11,25,0,30,0,0,0,1.5,-2.2,168.44,935,-3.7 +2013,11,25,1,30,0,0,0,1.5,-2.3000000000000003,161.95000000000002,934,-3.6 +2013,11,25,2,30,0,0,0,1.6,-2.5,150.46,934,-3.7 +2013,11,25,3,30,0,0,0,1.6,-2.6,137.98,933,-3.7 +2013,11,25,4,30,0,0,0,1.4000000000000001,-2.7,125.32000000000001,933,-3.7 +2013,11,25,5,30,0,0,0,1.3,-2.7,112.77,932,-3.7 +2013,11,25,6,30,0,0,0,1.4000000000000001,-2.8000000000000003,100.51,932,-3.7 +2013,11,25,7,30,4,4,0,1.9000000000000001,-2.3000000000000003,88.44,933,-3.9000000000000004 +2013,11,25,8,30,111,82,140,2.4000000000000004,-1.3,77.74,933,-3.6 +2013,11,25,9,30,122,122,0,2.4000000000000004,-0.30000000000000004,68.04,933,-3.3000000000000003 +2013,11,25,10,30,95,95,0,2.2,0.6000000000000001,60.17,933,-2.9000000000000004 +2013,11,25,11,30,102,102,0,2,1.7000000000000002,54.95,932,-2.4000000000000004 +2013,11,25,12,30,140,140,0,1.9000000000000001,2.9000000000000004,53.19,931,-2 +2013,11,25,13,30,126,126,0,1.9000000000000001,4.1000000000000005,55.230000000000004,930,-1.8 +2013,11,25,14,30,86,86,0,1.7000000000000002,4.800000000000001,60.69,930,-1.6 +2013,11,25,15,30,60,60,0,1.5,5,68.73,930,-1.4000000000000001 +2013,11,25,16,30,176,43,673,1.1,3.8000000000000003,78.54,930,-1.3 +2013,11,25,17,30,0,0,0,0.8,2.7,89.23,930,-0.7000000000000001 +2013,11,25,18,30,0,0,0,1.4000000000000001,-0.1,101.44,931,-2 +2013,11,25,19,30,0,0,0,2,-0.7000000000000001,113.72,932,-2.2 +2013,11,25,20,30,0,0,0,2.5,-1.2000000000000002,126.29,933,-2.1 +2013,11,25,21,30,0,0,0,2.8000000000000003,-1.6,138.96,933,-2.2 +2013,11,25,22,30,0,0,0,2.8000000000000003,-2,151.42000000000002,934,-2.3000000000000003 +2013,11,25,23,30,0,0,0,2.8000000000000003,-2.5,162.8,934,-2.6 +2013,11,26,0,30,0,0,0,2.9000000000000004,-3,168.64000000000001,934,-3 +2013,11,26,1,30,0,0,0,3.2,-3.3000000000000003,162.13,934,-3.4000000000000004 +2013,11,26,2,30,0,0,0,3.5,-3.3000000000000003,150.62,934,-3.6 +2013,11,26,3,30,0,0,0,3.6,-3.2,138.13,934,-3.5 +2013,11,26,4,30,0,0,0,3.3000000000000003,-3.2,125.47,934,-3.5 +2013,11,26,5,30,0,0,0,2.9000000000000004,-3.5,112.92,934,-3.7 +2013,11,26,6,30,0,0,0,2.7,-3.8000000000000003,100.67,935,-4.1000000000000005 +2013,11,26,7,30,3,3,0,3.4000000000000004,-3.1,88.59,936,-4.5 +2013,11,26,8,30,191,42,708,4.4,-0.8,77.92,937,-4 +2013,11,26,9,30,378,54,873,5.300000000000001,1.8,68.23,937,-3.3000000000000003 +2013,11,26,10,30,529,60,948,5.9,4,60.370000000000005,937,-3.2 +2013,11,26,11,30,624,62,983,6.300000000000001,5.800000000000001,55.15,937,-3.5 +2013,11,26,12,30,655,61,996,6.6000000000000005,7.2,53.38,936,-4.5 +2013,11,26,13,30,619,60,985,6.800000000000001,8.200000000000001,55.39,936,-5.4 +2013,11,26,14,30,520,56,951,6.7,8.4,60.81,936,-5.800000000000001 +2013,11,26,15,30,367,49,879,6.2,8,68.82000000000001,936,-5.800000000000001 +2013,11,26,16,30,178,36,718,4.7,6.2,78.61,937,-5.6000000000000005 +2013,11,26,17,30,0,0,0,3.5,4.7,89.27,937,-4.5 +2013,11,26,18,30,0,0,0,2.4000000000000004,1.6,101.47,938,-4.3 +2013,11,26,19,30,0,0,0,2.5,0.9,113.74000000000001,939,-4.5 +2013,11,26,20,30,0,0,0,2.8000000000000003,0.4,126.3,939,-4.800000000000001 +2013,11,26,21,30,0,0,0,3.1,0.1,138.97,940,-5.1000000000000005 +2013,11,26,22,30,0,0,0,3.2,-0.4,151.45000000000002,940,-5.300000000000001 +2013,11,26,23,30,0,0,0,3.2,-1.1,162.88,940,-5.6000000000000005 +2013,11,27,0,30,0,0,0,3,-1.9000000000000001,168.82,940,-5.800000000000001 +2013,11,27,1,30,0,0,0,2.8000000000000003,-2.7,162.31,940,-6.1000000000000005 +2013,11,27,2,30,0,0,0,2.4000000000000004,-3.5,150.77,940,-6.4 +2013,11,27,3,30,0,0,0,2.1,-4.4,138.28,940,-6.7 +2013,11,27,4,30,0,0,0,1.8,-5.300000000000001,125.62,941,-7 +2013,11,27,5,30,0,0,0,1.5,-6,113.07000000000001,941,-7.300000000000001 +2013,11,27,6,30,0,0,0,1.3,-6.4,100.83,941,-7.6000000000000005 +2013,11,27,7,30,18,12,312,1.6,-4.9,88.74,942,-7.800000000000001 +2013,11,27,8,30,197,37,777,2,-1.7000000000000002,78.10000000000001,942,-7.5 +2013,11,27,9,30,389,48,927,1.9000000000000001,1,68.42,941,-9.200000000000001 +2013,11,27,10,30,542,54,994,1.6,3.1,60.56,941,-9.700000000000001 +2013,11,27,11,30,640,57,1025,1,4.800000000000001,55.34,940,-9.5 +2013,11,27,12,30,666,59,1022,0.6000000000000001,6.4,53.56,939,-9 +2013,11,27,13,30,631,58,1012,0.7000000000000001,7.5,55.550000000000004,938,-8.1 +2013,11,27,14,30,531,56,977,0.9,8,60.93,937,-7.300000000000001 +2013,11,27,15,30,376,55,891,0.9,7.7,68.91,936,-6.800000000000001 +2013,11,27,16,30,183,41,724,0.9,5.9,78.67,936,-5.7 +2013,11,27,17,30,0,0,0,0.9,4.5,89.31,936,-3.4000000000000004 +2013,11,27,18,30,0,0,0,1.3,2.4000000000000004,101.49000000000001,937,-4.2 +2013,11,27,19,30,0,0,0,1.5,2,113.75,937,-4.5 +2013,11,27,20,30,0,0,0,1.8,1.8,126.31,937,-5 +2013,11,27,21,30,0,0,0,2.1,1.7000000000000002,138.97,936,-5.6000000000000005 +2013,11,27,22,30,0,0,0,2.5,1.6,151.46,936,-6.1000000000000005 +2013,11,27,23,30,0,0,0,2.7,1.4000000000000001,162.94,936,-6.4 +2013,11,28,0,30,0,0,0,2.8000000000000003,1.2000000000000002,169,936,-6.4 +2013,11,28,1,30,0,0,0,2.8000000000000003,0.9,162.49,936,-6.2 +2013,11,28,2,30,0,0,0,2.7,0.7000000000000001,150.92000000000002,936,-5.9 +2013,11,28,3,30,0,0,0,2.3000000000000003,0.30000000000000004,138.42000000000002,936,-5.6000000000000005 +2013,11,28,4,30,0,0,0,2,-0.30000000000000004,125.76,936,-5.2 +2013,11,28,5,30,0,0,0,1.8,-1.2000000000000002,113.22,936,-5.2 +2013,11,28,6,30,0,0,0,1.7000000000000002,-2,100.99000000000001,937,-5.300000000000001 +2013,11,28,7,30,16,11,227,2.4000000000000004,-1,88.89,937,-5.300000000000001 +2013,11,28,8,30,123,72,253,3,1.6,78.28,937,-4.6000000000000005 +2013,11,28,9,30,372,55,870,3.4000000000000004,4.800000000000001,68.61,937,-3.9000000000000004 +2013,11,28,10,30,523,62,943,3.8000000000000003,8.200000000000001,60.76,937,-3.9000000000000004 +2013,11,28,11,30,619,66,976,3.6,10.700000000000001,55.53,937,-3.6 +2013,11,28,12,30,646,59,992,3.4000000000000004,12.200000000000001,53.730000000000004,936,-3.2 +2013,11,28,13,30,612,60,979,3.2,13.100000000000001,55.69,936,-2.9000000000000004 +2013,11,28,14,30,514,58,943,2.8000000000000003,13.3,61.050000000000004,936,-2.6 +2013,11,28,15,30,362,49,872,2.2,12.700000000000001,68.99,935,-2.3000000000000003 +2013,11,28,16,30,175,37,709,1.5,9.8,78.72,936,-0.9 +2013,11,28,17,30,0,0,0,1.2000000000000002,7.6000000000000005,89.34,936,0.4 +2013,11,28,18,30,0,0,0,1.7000000000000002,4.800000000000001,101.51,937,-1.1 +2013,11,28,19,30,0,0,0,2,4.1000000000000005,113.76,938,-1.5 +2013,11,28,20,30,0,0,0,2.1,3.4000000000000004,126.31,938,-1.8 +2013,11,28,21,30,0,0,0,2.2,2.5,138.97,938,-2 +2013,11,28,22,30,0,0,0,2.2,1.7000000000000002,151.48,939,-2 +2013,11,28,23,30,0,0,0,2.1,1,163,939,-1.8 +2013,11,29,0,30,0,0,0,2,0.2,169.18,939,-1.6 +2013,11,29,1,30,0,0,0,1.8,-0.4,162.66,939,-1.4000000000000001 +2013,11,29,2,30,0,0,0,1.7000000000000002,-0.9,151.08,939,-1.3 +2013,11,29,3,30,0,0,0,1.6,-1.4000000000000001,138.57,939,-1.5 +2013,11,29,4,30,0,0,0,1.5,-1.8,125.91,939,-1.8 +2013,11,29,5,30,0,0,0,1.4000000000000001,-2.1,113.37,939,-2.2 +2013,11,29,6,30,0,0,0,1.3,-2.4000000000000004,101.15,940,-2.5 +2013,11,29,7,30,0,0,0,1.8,-0.9,89.04,940,-2.8000000000000003 +2013,11,29,8,30,138,61,385,2.4000000000000004,2,78.45,940,-2.7 +2013,11,29,9,30,368,56,863,3,5.6000000000000005,68.79,940,-2.2 +2013,11,29,10,30,519,64,937,3.8000000000000003,9.3,60.94,940,-2.1 +2013,11,29,11,30,462,222,427,4.3,11.700000000000001,55.72,940,-1.7000000000000002 +2013,11,29,12,30,516,198,539,4.4,13.200000000000001,53.9,938,-1 +2013,11,29,13,30,610,68,966,4.4,14.100000000000001,55.83,937,-0.4 +2013,11,29,14,30,512,63,930,4.2,14.5,61.15,937,0.1 +2013,11,29,15,30,256,132,347,3.7,14,69.07000000000001,936,0.6000000000000001 +2013,11,29,16,30,174,41,684,2.5,11.3,78.77,936,1.3 +2013,11,29,17,30,0,0,0,1.7000000000000002,9.1,89.37,936,2.3000000000000003 +2013,11,29,18,30,0,0,0,2.2,6.9,101.52,936,1.8 +2013,11,29,19,30,0,0,0,2.6,6.6000000000000005,113.76,936,1.9000000000000001 +2013,11,29,20,30,0,0,0,3.1,6.2,126.31,937,2.2 +2013,11,29,21,30,0,0,0,3.4000000000000004,5.7,138.97,937,2.4000000000000004 +2013,11,29,22,30,0,0,0,3.5,5,151.48,937,2.5 +2013,11,29,23,30,0,0,0,3.4000000000000004,4.4,163.05,937,2.4000000000000004 +2013,11,30,0,30,0,0,0,3.3000000000000003,3.7,169.34,937,2.4000000000000004 +2013,11,30,1,30,0,0,0,3.2,3.2,162.83,936,2.4000000000000004 +2013,11,30,2,30,0,0,0,3.1,2.8000000000000003,151.23,936,2.7 +2013,11,30,3,30,0,0,0,2.9000000000000004,2.7,138.71,936,2.7 +2013,11,30,4,30,0,0,0,2.9000000000000004,2.8000000000000003,126.06,936,2.8000000000000003 +2013,11,30,5,30,0,0,0,2.9000000000000004,3.1,113.52,936,3.1 +2013,11,30,6,30,0,0,0,3,3.4000000000000004,101.3,936,3.4000000000000004 +2013,11,30,7,30,0,0,0,3.3000000000000003,4,89.19,937,4 +2013,11,30,8,30,168,51,595,3.6,5.4,78.62,937,4.4 +2013,11,30,9,30,351,69,787,4.3,8.1,68.97,936,5 +2013,11,30,10,30,362,197,342,4.9,11.700000000000001,61.120000000000005,936,5.9 +2013,11,30,11,30,597,76,929,5,14.9,55.9,935,6.300000000000001 +2013,11,30,12,30,632,67,962,4.7,17.3,54.06,934,6.4 +2013,11,30,13,30,598,66,952,4.4,18.900000000000002,55.97,933,6.5 +2013,11,30,14,30,500,63,910,4.1000000000000005,19.400000000000002,61.25,932,6.5 +2013,11,30,15,30,314,76,669,3.2,18.6,69.14,931,6.5 +2013,11,30,16,30,168,41,656,2.1,15.600000000000001,78.82000000000001,931,7.6000000000000005 +2013,11,30,17,30,0,0,0,1.6,13.3,89.4,931,7.6000000000000005 +2013,11,30,18,30,0,0,0,2.3000000000000003,11.200000000000001,101.53,932,7.1000000000000005 +2013,11,30,19,30,0,0,0,3.1,11,113.76,932,7.5 +2013,11,30,20,30,0,0,0,3.5,10.4,126.3,932,7.800000000000001 +2013,11,30,21,30,0,0,0,3.7,9.600000000000001,138.96,932,8.1 +2013,11,30,22,30,0,0,0,3.7,8.9,151.48,932,8.5 +2013,11,30,23,30,0,0,0,3.6,8.3,163.09,932,8.3 +2013,12,1,0,30,0,0,0,3.6,8.1,169.5,932,8.1 +2013,12,1,1,30,0,0,0,3.6,8.200000000000001,163,932,8.200000000000001 +2013,12,1,2,30,0,0,0,3.4000000000000004,8,151.38,932,8 +2013,12,1,3,30,0,0,0,3.4000000000000004,7.9,138.86,932,7.9 +2013,12,1,4,30,0,0,0,3.4000000000000004,8,126.2,931,8 +2013,12,1,5,30,0,0,0,3.3000000000000003,8,113.67,931,8 +2013,12,1,6,30,0,0,0,3.3000000000000003,7.800000000000001,101.46000000000001,931,7.800000000000001 +2013,12,1,7,30,0,0,0,3.4000000000000004,8.1,89.34,931,7.9 +2013,12,1,8,30,80,73,40,3.5,9.3,78.79,931,7.7 +2013,12,1,9,30,110,110,0,3.5,11.600000000000001,69.14,931,7.800000000000001 +2013,12,1,10,30,99,99,0,3.5,14.100000000000001,61.300000000000004,931,7.7 +2013,12,1,11,30,85,85,0,3.4000000000000004,16.3,56.07,930,7.300000000000001 +2013,12,1,12,30,160,159,1,3.4000000000000004,18,54.22,929,6.6000000000000005 +2013,12,1,13,30,116,116,0,3.6,19.3,56.09,929,5.5 +2013,12,1,14,30,114,114,0,3.6,19.8,61.34,928,4.5 +2013,12,1,15,30,140,133,20,2.6,18.900000000000002,69.2,927,4.1000000000000005 +2013,12,1,16,30,110,71,205,1.6,16.2,78.85000000000001,927,6.5 +2013,12,1,17,30,0,0,0,1.5,14.4,89.41,927,6.2 +2013,12,1,18,30,0,0,0,1.9000000000000001,12.8,101.53,927,5.300000000000001 +2013,12,1,19,30,0,0,0,2.1,12.3,113.75,927,5 +2013,12,1,20,30,0,0,0,2.3000000000000003,11.5,126.28,927,4.5 +2013,12,1,21,30,0,0,0,2.4000000000000004,10.4,138.94,927,3.9000000000000004 +2013,12,1,22,30,0,0,0,2.4000000000000004,9.1,151.47,926,3.2 +2013,12,1,23,30,0,0,0,2.4000000000000004,7.800000000000001,163.12,926,2.5 +2013,12,2,0,30,0,0,0,2.5,6.9,169.65,926,1.8 +2013,12,2,1,30,0,0,0,2.6,6,163.17000000000002,925,1.1 +2013,12,2,2,30,0,0,0,2.6,5.1000000000000005,151.53,925,0.4 +2013,12,2,3,30,0,0,0,2.4000000000000004,4.4,139,924,-0.30000000000000004 +2013,12,2,4,30,0,0,0,2.4000000000000004,3.9000000000000004,126.34,924,-0.8 +2013,12,2,5,30,0,0,0,2.4000000000000004,3.5,113.82000000000001,923,-1.3 +2013,12,2,6,30,0,0,0,2.6,3.2,101.61,923,-1.6 +2013,12,2,7,30,0,0,0,3.4000000000000004,4.2,89.48,923,-1.9000000000000001 +2013,12,2,8,30,122,64,301,4,6.800000000000001,78.95,923,-1.8 +2013,12,2,9,30,279,112,474,4,10.200000000000001,69.31,923,-1.5 +2013,12,2,10,30,511,49,966,3.9000000000000004,13.700000000000001,61.47,922,-1.6 +2013,12,2,11,30,604,52,993,3.7,16.3,56.230000000000004,921,-1.4000000000000001 +2013,12,2,12,30,638,53,1003,3.7,18.3,54.36,920,-1 +2013,12,2,13,30,602,54,986,3.8000000000000003,19.5,56.21,919,-0.7000000000000001 +2013,12,2,14,30,506,50,952,3.6,20.1,61.43,919,-0.4 +2013,12,2,15,30,356,44,880,2.5,19.3,69.26,918,-0.1 +2013,12,2,16,30,172,33,719,1.4000000000000001,16.5,78.88,918,4.2 +2013,12,2,17,30,0,0,0,1.2000000000000002,14.5,89.43,918,3.4000000000000004 +2013,12,2,18,30,0,0,0,1.2000000000000002,13.100000000000001,101.52,919,1.5 +2013,12,2,19,30,0,0,0,1.3,11.9,113.73,919,1.2000000000000002 +2013,12,2,20,30,0,0,0,1.4000000000000001,10.4,126.26,919,1 +2013,12,2,21,30,0,0,0,1.7000000000000002,9.200000000000001,138.92000000000002,918,0.8 +2013,12,2,22,30,0,0,0,2.4000000000000004,8.8,151.46,918,0.5 +2013,12,2,23,30,0,0,0,3.1,8.8,163.15,918,-0.1 +2013,12,3,0,30,0,0,0,3.6,8.700000000000001,169.79,918,-0.9 +2013,12,3,1,30,0,0,0,4,8.5,163.33,917,-1.6 +2013,12,3,2,30,0,0,0,4.3,8.1,151.67000000000002,917,-1.8 +2013,12,3,3,30,0,0,0,4.5,7.6000000000000005,139.14000000000001,917,-1.7000000000000002 +2013,12,3,4,30,0,0,0,4.4,7.4,126.48,916,-1.6 +2013,12,3,5,30,0,0,0,4.3,7.300000000000001,113.96000000000001,916,-1.5 +2013,12,3,6,30,0,0,0,4.2,7.2,101.76,917,-1.4000000000000001 +2013,12,3,7,30,0,0,0,4.3,7.800000000000001,89.62,917,-1.3 +2013,12,3,8,30,172,35,721,4.6000000000000005,9.8,79.11,917,-1.1 +2013,12,3,9,30,299,88,601,4.4,13.200000000000001,69.48,917,-0.7000000000000001 +2013,12,3,10,30,418,133,600,4.3,17.400000000000002,61.64,917,0.2 +2013,12,3,11,30,470,205,478,4.5,21.400000000000002,56.39,917,-0.1 +2013,12,3,12,30,641,56,1007,4.7,23.900000000000002,54.5,916,-1.4000000000000001 +2013,12,3,13,30,605,55,991,4.7,24.900000000000002,56.32,915,-2.7 +2013,12,3,14,30,398,166,484,4.3,24.700000000000003,61.51,914,-2.4000000000000004 +2013,12,3,15,30,263,126,388,3.1,22.700000000000003,69.31,914,-0.5 +2013,12,3,16,30,130,61,362,2.1,18.6,78.91,914,4.2 +2013,12,3,17,30,0,0,0,1.9000000000000001,16.2,89.44,914,3.7 +2013,12,3,18,30,0,0,0,2.4000000000000004,13.9,101.52,915,2.5 +2013,12,3,19,30,0,0,0,3,13.4,113.71000000000001,915,1.7000000000000002 +2013,12,3,20,30,0,0,0,3.6,13,126.23,916,0.9 +2013,12,3,21,30,0,0,0,3.8000000000000003,12.4,138.89000000000001,916,0.30000000000000004 +2013,12,3,22,30,0,0,0,4,11.9,151.44,916,0.1 +2013,12,3,23,30,0,0,0,4,11.600000000000001,163.17000000000002,916,0.30000000000000004 +2013,12,4,0,30,0,0,0,4.1000000000000005,11.5,169.93,916,0.9 +2013,12,4,1,30,0,0,0,4.4,11.9,163.49,916,1.9000000000000001 +2013,12,4,2,30,0,0,0,4.3,12.3,151.82,916,3.2 +2013,12,4,3,30,0,0,0,3.9000000000000004,12.3,139.28,917,4.5 +2013,12,4,4,30,0,0,0,3.7,12.3,126.63000000000001,917,5.5 +2013,12,4,5,30,0,0,0,3.6,12.4,114.11,917,6.2 +2013,12,4,6,30,0,0,0,3.3000000000000003,12.3,101.91,918,6.6000000000000005 +2013,12,4,7,30,0,0,0,3.4000000000000004,12.700000000000001,89.76,918,6.7 +2013,12,4,8,30,112,66,247,3.5,14.4,79.27,919,7 +2013,12,4,9,30,342,52,832,3.5,17.2,69.64,919,7.4 +2013,12,4,10,30,491,58,916,4.3,20.700000000000003,61.800000000000004,919,7.800000000000001 +2013,12,4,11,30,587,61,954,5.300000000000001,23.200000000000003,56.550000000000004,919,6.9 +2013,12,4,12,30,619,63,961,5.300000000000001,24.400000000000002,54.64,918,5.9 +2013,12,4,13,30,464,211,457,5,24.900000000000002,56.42,917,5.300000000000001 +2013,12,4,14,30,367,189,373,4.2,24.8,61.58,917,5.2 +2013,12,4,15,30,310,78,657,2.6,23.400000000000002,69.35000000000001,917,5.6000000000000005 +2013,12,4,16,30,85,73,61,1,20.5,78.93,917,9.4 +2013,12,4,17,30,0,0,0,0.6000000000000001,18.7,89.44,917,8.6 +2013,12,4,18,30,0,0,0,1,16.400000000000002,101.5,919,7.300000000000001 +2013,12,4,19,30,0,0,0,1.7000000000000002,14.700000000000001,113.69,919,7.300000000000001 +2013,12,4,20,30,0,0,0,2.6,13.100000000000001,126.2,920,7 +2013,12,4,21,30,0,0,0,3.7,11.3,138.86,922,5.9 +2013,12,4,22,30,0,0,0,4.800000000000001,9.1,151.41,923,4 +2013,12,4,23,30,0,0,0,5.5,6.5,163.18,924,1.6 +2013,12,5,0,30,0,0,0,6,4.1000000000000005,170.06,925,-1.3 +2013,12,5,1,30,0,0,0,6.300000000000001,2.1,163.65,926,-4 +2013,12,5,2,30,0,0,0,6.6000000000000005,0.6000000000000001,151.96,927,-5.800000000000001 +2013,12,5,3,30,0,0,0,6.800000000000001,-0.7000000000000001,139.42000000000002,928,-7 +2013,12,5,4,30,0,0,0,6.800000000000001,-1.9000000000000001,126.77,929,-7.9 +2013,12,5,5,30,0,0,0,6.800000000000001,-3,114.25,930,-8.8 +2013,12,5,6,30,0,0,0,6.6000000000000005,-3.8000000000000003,102.05,931,-9.600000000000001 +2013,12,5,7,30,0,0,0,6.300000000000001,-4.3,89.85000000000001,931,-10 +2013,12,5,8,30,41,41,0,6,-4.4,79.42,932,-10.100000000000001 +2013,12,5,9,30,163,141,63,5.800000000000001,-4.3,69.8,932,-10 +2013,12,5,10,30,272,212,128,5.6000000000000005,-3.7,61.96,932,-9.8 +2013,12,5,11,30,146,146,0,5.5,-2.8000000000000003,56.69,932,-9.700000000000001 +2013,12,5,12,30,142,142,0,5.1000000000000005,-1.8,54.76,931,-9.600000000000001 +2013,12,5,13,30,111,111,0,4.7,-1,56.52,930,-9.5 +2013,12,5,14,30,63,63,0,4.2,-0.9,61.64,930,-9.200000000000001 +2013,12,5,15,30,151,138,35,3.9000000000000004,-1.4000000000000001,69.38,930,-9.200000000000001 +2013,12,5,16,30,36,36,0,3.6,-2.4000000000000004,78.93,930,-9.4 +2013,12,5,17,30,0,0,0,3.5,-3,89.39,930,-9.8 +2013,12,5,18,30,0,0,0,3.9000000000000004,-4.1000000000000005,101.48,931,-10.4 +2013,12,5,19,30,0,0,0,4.3,-4.6000000000000005,113.66,931,-10.9 +2013,12,5,20,30,0,0,0,4.5,-5.1000000000000005,126.16,931,-11.4 +2013,12,5,21,30,0,0,0,4.3,-5.4,138.82,932,-11.3 +2013,12,5,22,30,0,0,0,4.3,-5.7,151.38,933,-10.4 +2013,12,5,23,30,0,0,0,4.6000000000000005,-6,163.18,932,-9.8 +2013,12,6,0,30,0,0,0,4.6000000000000005,-6.2,170.17000000000002,932,-9.8 +2013,12,6,1,30,0,0,0,4.5,-6.4,163.8,932,-9.8 +2013,12,6,2,30,0,0,0,4.9,-6.5,152.1,932,-9.8 +2013,12,6,3,30,0,0,0,5.2,-6.7,139.56,933,-9.9 +2013,12,6,4,30,0,0,0,5.300000000000001,-6.800000000000001,126.9,933,-10 +2013,12,6,5,30,0,0,0,5.2,-6.9,114.39,934,-10.100000000000001 +2013,12,6,6,30,0,0,0,5,-7,102.2,935,-10.200000000000001 +2013,12,6,7,30,0,0,0,5,-6.9,89.97,936,-10.3 +2013,12,6,8,30,9,9,0,5.2,-6.2,79.57000000000001,937,-10.4 +2013,12,6,9,30,349,66,827,5.300000000000001,-5.2,69.95,938,-10.4 +2013,12,6,10,30,205,189,36,5.2,-4.1000000000000005,62.11,938,-10.200000000000001 +2013,12,6,11,30,298,249,89,5.2,-3.2,56.83,938,-10 +2013,12,6,12,30,377,272,182,5.1000000000000005,-2.4000000000000004,54.88,938,-9.5 +2013,12,6,13,30,347,258,162,5,-2,56.61,937,-9.1 +2013,12,6,14,30,312,211,213,4.9,-2,61.7,937,-8.700000000000001 +2013,12,6,15,30,184,148,103,4.800000000000001,-2.4000000000000004,69.41,937,-8.700000000000001 +2013,12,6,16,30,180,44,708,4.4,-3.6,78.94,938,-8.9 +2013,12,6,17,30,0,0,0,4,-4.3,89.38,938,-9.700000000000001 +2013,12,6,18,30,0,0,0,3,-6.6000000000000005,101.45,939,-10.600000000000001 +2013,12,6,19,30,0,0,0,2.7,-7.5,113.62,940,-11.200000000000001 +2013,12,6,20,30,0,0,0,2.6,-8.1,126.12,941,-11.600000000000001 +2013,12,6,21,30,0,0,0,2.7,-8.5,138.77,941,-11.9 +2013,12,6,22,30,0,0,0,2.9000000000000004,-8.700000000000001,151.35,942,-12.200000000000001 +2013,12,6,23,30,0,0,0,3.2,-8.700000000000001,163.17000000000002,942,-12.600000000000001 +2013,12,7,0,30,0,0,0,3.6,-8.8,170.28,942,-13.200000000000001 +2013,12,7,1,30,0,0,0,3.9000000000000004,-9,163.95000000000002,941,-13.8 +2013,12,7,2,30,0,0,0,4.1000000000000005,-9.1,152.24,942,-14.5 +2013,12,7,3,30,0,0,0,4.2,-9.3,139.70000000000002,942,-15 +2013,12,7,4,30,0,0,0,4.1000000000000005,-9.3,127.04,942,-15.4 +2013,12,7,5,30,0,0,0,4.1000000000000005,-9.3,114.53,942,-15.700000000000001 +2013,12,7,6,30,0,0,0,4,-9.3,102.34,942,-16 +2013,12,7,7,30,0,0,0,4,-8.9,90.08,942,-16.2 +2013,12,7,8,30,60,60,0,4,-8.200000000000001,79.72,942,-16.1 +2013,12,7,9,30,112,112,0,3.8000000000000003,-7.4,70.10000000000001,942,-15.9 +2013,12,7,10,30,234,201,70,3.5,-6.7,62.25,941,-15.600000000000001 +2013,12,7,11,30,231,215,28,3.2,-6,56.96,940,-15.100000000000001 +2013,12,7,12,30,177,175,4,2.9000000000000004,-5.4,54.99,939,-14.5 +2013,12,7,13,30,332,257,136,2.5,-4.800000000000001,56.69,937,-13.8 +2013,12,7,14,30,321,208,237,2.2,-4.5,61.75,936,-13.200000000000001 +2013,12,7,15,30,113,113,0,1.9000000000000001,-4.7,69.43,935,-12.600000000000001 +2013,12,7,16,30,85,73,65,1.7000000000000002,-5.1000000000000005,78.93,935,-12.3 +2013,12,7,17,30,0,0,0,1.6,-5.4,89.36,935,-12.100000000000001 +2013,12,7,18,30,0,0,0,1.1,-5.9,101.42,935,-12.100000000000001 +2013,12,7,19,30,0,0,0,0.8,-6,113.58,936,-12 +2013,12,7,20,30,0,0,0,0.9,-6.1000000000000005,126.07000000000001,936,-11.8 +2013,12,7,21,30,0,0,0,1.1,-6.300000000000001,138.73,935,-11.700000000000001 +2013,12,7,22,30,0,0,0,1.2000000000000002,-6.800000000000001,151.3,934,-11.700000000000001 +2013,12,7,23,30,0,0,0,1.2000000000000002,-7.300000000000001,163.16,933,-11.8 +2013,12,8,0,30,0,0,0,1.4000000000000001,-7.6000000000000005,170.39000000000001,933,-11.8 +2013,12,8,1,30,0,0,0,1.8,-7.800000000000001,164.09,932,-11.8 +2013,12,8,2,30,0,0,0,2,-7.800000000000001,152.38,931,-11.700000000000001 +2013,12,8,3,30,0,0,0,2.1,-7.7,139.83,931,-11.600000000000001 +2013,12,8,4,30,0,0,0,1.9000000000000001,-7.5,127.18,930,-11.4 +2013,12,8,5,30,0,0,0,1.8,-7.300000000000001,114.67,930,-11.100000000000001 +2013,12,8,6,30,0,0,0,1.7000000000000002,-7.1000000000000005,102.48,929,-10.9 +2013,12,8,7,30,0,0,0,2.1,-6.4,90.22,929,-10.8 +2013,12,8,8,30,73,65,43,2.8000000000000003,-4.4,79.86,929,-10 +2013,12,8,9,30,191,142,145,3.5,-1.7000000000000002,70.25,929,-8.700000000000001 +2013,12,8,10,30,506,67,949,3.8000000000000003,1,62.4,929,-7.1000000000000005 +2013,12,8,11,30,608,73,986,4,3.6,57.09,928,-5.1000000000000005 +2013,12,8,12,30,646,78,993,4,6,55.1,927,-3.5 +2013,12,8,13,30,615,75,986,3.9000000000000004,8.1,56.76,926,-2.1 +2013,12,8,14,30,519,69,952,3.6,9.3,61.79,926,-1 +2013,12,8,15,30,366,59,877,2.3000000000000003,8.3,69.45,926,0 +2013,12,8,16,30,178,42,711,1.5,5,78.93,926,1.5 +2013,12,8,17,30,0,0,0,1.5,3.1,89.36,926,-0.6000000000000001 +2013,12,8,18,30,0,0,0,1.5,2.6,101.39,927,-1.1 +2013,12,8,19,30,0,0,0,1.5,2.1,113.53,927,-1.1 +2013,12,8,20,30,0,0,0,1.5,0.8,126.02,927,-1.1 +2013,12,8,21,30,0,0,0,1.5,-0.4,138.67000000000002,928,-1 +2013,12,8,22,30,0,0,0,1.5,-0.9,151.26,928,-0.9 +2013,12,8,23,30,0,0,0,1.4000000000000001,-1,163.14000000000001,929,-1 +2013,12,9,0,30,0,0,0,1.1,-1,170.48,929,-1 +2013,12,9,1,30,0,0,0,1,-1.3,164.24,928,-1.3 +2013,12,9,2,30,0,0,0,1.4000000000000001,-2.1,152.52,928,-2.1 +2013,12,9,3,30,0,0,0,2.3000000000000003,-3,139.96,929,-3 +2013,12,9,4,30,0,0,0,3.2,-3.4000000000000004,127.31,929,-3.4000000000000004 +2013,12,9,5,30,0,0,0,4.1000000000000005,-3.6,114.8,930,-3.6 +2013,12,9,6,30,0,0,0,4.5,-3.9000000000000004,102.62,931,-3.9000000000000004 +2013,12,9,7,30,0,0,0,5,-3.9000000000000004,90.96000000000001,932,-4.1000000000000005 +2013,12,9,8,30,146,51,550,5.2,-3.4000000000000004,80,932,-4.5 +2013,12,9,9,30,330,78,750,4.9,-2.7,70.39,933,-4.6000000000000005 +2013,12,9,10,30,100,100,0,4.4,-1.9000000000000001,62.53,934,-4.800000000000001 +2013,12,9,11,30,133,133,0,3.9000000000000004,-1.1,57.21,934,-4.9 +2013,12,9,12,30,134,134,0,3.5,-0.6000000000000001,55.19,933,-4.9 +2013,12,9,13,30,593,104,894,3.3000000000000003,-0.30000000000000004,56.83,933,-5 +2013,12,9,14,30,501,93,864,3.5,-0.5,61.83,933,-5.1000000000000005 +2013,12,9,15,30,352,77,785,3.8000000000000003,-1.1,69.45,934,-5.5 +2013,12,9,16,30,168,52,603,3.9000000000000004,-2.2,78.92,935,-6.1000000000000005 +2013,12,9,17,30,0,0,0,3.7,-3,89.32000000000001,935,-7.1000000000000005 +2013,12,9,18,30,0,0,0,2.6,-5.1000000000000005,101.35000000000001,937,-8.200000000000001 +2013,12,9,19,30,0,0,0,1.9000000000000001,-6.300000000000001,113.48,938,-9.200000000000001 +2013,12,9,20,30,0,0,0,1.5,-7,125.97,939,-9.9 +2013,12,9,21,30,0,0,0,1.2000000000000002,-7.300000000000001,138.62,939,-10.4 +2013,12,9,22,30,0,0,0,1,-7.5,151.21,940,-10.700000000000001 +2013,12,9,23,30,0,0,0,1,-7.800000000000001,163.12,940,-10.9 +2013,12,10,0,30,0,0,0,1.1,-8.1,170.56,940,-11.100000000000001 +2013,12,10,1,30,0,0,0,1.1,-8.3,164.38,940,-11.200000000000001 +2013,12,10,2,30,0,0,0,1,-8.3,152.65,940,-11.200000000000001 +2013,12,10,3,30,0,0,0,1.1,-8.200000000000001,140.1,940,-11 +2013,12,10,4,30,0,0,0,1.3,-8,127.44,940,-10.600000000000001 +2013,12,10,5,30,0,0,0,1.5,-7.800000000000001,114.94,940,-10.200000000000001 +2013,12,10,6,30,0,0,0,1.5,-7.7,102.75,940,-9.8 +2013,12,10,7,30,0,0,0,1.8,-6.5,91.09,940,-9.5 +2013,12,10,8,30,162,34,744,1.9000000000000001,-4,80.14,940,-9.1 +2013,12,10,9,30,221,130,273,1.6,-0.8,70.52,940,-8.200000000000001 +2013,12,10,10,30,504,53,982,1.9000000000000001,2.2,62.660000000000004,941,-7.800000000000001 +2013,12,10,11,30,600,57,1006,2.5,4.3,57.33,940,-8.3 +2013,12,10,12,30,639,63,1011,3,5.7,55.28,939,-8.700000000000001 +2013,12,10,13,30,604,61,995,3.3000000000000003,6.5,56.89,937,-9 +2013,12,10,14,30,507,57,954,3.4000000000000004,6.7,61.86,936,-8.9 +2013,12,10,15,30,357,51,872,2.6,5.7,69.46000000000001,936,-8.6 +2013,12,10,16,30,174,38,708,1.7000000000000002,2.3000000000000003,78.9,935,-5.800000000000001 +2013,12,10,17,30,0,0,0,1.6,-0.2,89.29,935,-6.5 +2013,12,10,18,30,0,0,0,2,-1.7000000000000002,101.3,935,-7.4 +2013,12,10,19,30,0,0,0,2.3000000000000003,-1.7000000000000002,113.43,935,-7.300000000000001 +2013,12,10,20,30,0,0,0,2.7,-1.6,125.91,935,-7.2 +2013,12,10,21,30,0,0,0,3.1,-1.4000000000000001,138.55,935,-7.1000000000000005 +2013,12,10,22,30,0,0,0,3.3000000000000003,-1.4000000000000001,151.15,935,-6.9 +2013,12,10,23,30,0,0,0,3,-1.9000000000000001,163.08,935,-6.7 +2013,12,11,0,30,0,0,0,2.9000000000000004,-2.2,170.64000000000001,935,-6.6000000000000005 +2013,12,11,1,30,0,0,0,2.8000000000000003,-2.4000000000000004,164.51,934,-6.300000000000001 +2013,12,11,2,30,0,0,0,2.6,-3,152.78,934,-6.1000000000000005 +2013,12,11,3,30,0,0,0,2.5,-3.4000000000000004,140.23,935,-6.2 +2013,12,11,4,30,0,0,0,2.6,-3.5,127.57000000000001,935,-6.2 +2013,12,11,5,30,0,0,0,2.6,-3.4000000000000004,115.07000000000001,936,-6.300000000000001 +2013,12,11,6,30,0,0,0,2.6,-3.4000000000000004,102.89,936,-6.5 +2013,12,11,7,30,0,0,0,2.9000000000000004,-2.8000000000000003,91.23,937,-6.9 +2013,12,11,8,30,82,63,111,3.5,-1.2000000000000002,80.27,938,-7.2 +2013,12,11,9,30,261,100,486,4.1000000000000005,0.7000000000000001,70.65,939,-7.6000000000000005 +2013,12,11,10,30,379,155,489,4.6000000000000005,2.4000000000000004,62.78,940,-7.800000000000001 +2013,12,11,11,30,459,191,499,5,3.8000000000000003,57.43,940,-7.6000000000000005 +2013,12,11,12,30,501,184,557,5.2,4.9,55.370000000000005,940,-7.300000000000001 +2013,12,11,13,30,461,203,474,5.300000000000001,5.4,56.94,940,-7 +2013,12,11,14,30,388,165,472,5.300000000000001,5.1000000000000005,61.88,940,-6.7 +2013,12,11,15,30,218,145,207,4.800000000000001,4.2,69.45,941,-6.4 +2013,12,11,16,30,87,73,71,3.5,2.6,78.87,942,-6 +2013,12,11,17,30,0,0,0,2.6,1.6,89.26,942,-5.300000000000001 +2013,12,11,18,30,0,0,0,2,-0.4,101.25,943,-5.2 +2013,12,11,19,30,0,0,0,2.1,-1.2000000000000002,113.37,944,-5.300000000000001 +2013,12,11,20,30,0,0,0,2,-1.8,125.84,944,-5.300000000000001 +2013,12,11,21,30,0,0,0,1.8,-2.5,138.49,944,-5.4 +2013,12,11,22,30,0,0,0,1.7000000000000002,-2.9000000000000004,151.09,945,-5.4 +2013,12,11,23,30,0,0,0,1.8,-3,163.05,945,-5.300000000000001 +2013,12,12,0,30,0,0,0,1.7000000000000002,-3.3000000000000003,170.71,944,-5.300000000000001 +2013,12,12,1,30,0,0,0,1.3,-3.6,164.64000000000001,944,-5.2 +2013,12,12,2,30,0,0,0,1.1,-3.8000000000000003,152.91,944,-5.1000000000000005 +2013,12,12,3,30,0,0,0,0.9,-3.9000000000000004,140.35,944,-5.1000000000000005 +2013,12,12,4,30,0,0,0,0.7000000000000001,-4,127.7,944,-5 +2013,12,12,5,30,0,0,0,0.4,-3.9000000000000004,115.2,944,-4.9 +2013,12,12,6,30,0,0,0,0.30000000000000004,-3.8000000000000003,103.02,944,-4.800000000000001 +2013,12,12,7,30,0,0,0,0.7000000000000001,-3.4000000000000004,91.36,944,-4.800000000000001 +2013,12,12,8,30,142,39,620,1.3,-1.9000000000000001,80.4,944,-4.7 +2013,12,12,9,30,246,110,412,1.7000000000000002,0.30000000000000004,70.78,944,-4.4 +2013,12,12,10,30,473,65,896,1.9000000000000001,2.5,62.9,943,-4 +2013,12,12,11,30,568,70,928,2.1,4.3,57.54,943,-3.6 +2013,12,12,12,30,482,213,473,2.2,5.6000000000000005,55.44,941,-3.4000000000000004 +2013,12,12,13,30,401,242,292,2.3000000000000003,6.5,56.99,940,-3.2 +2013,12,12,14,30,39,39,0,2.5,7,61.89,938,-3.1 +2013,12,12,15,30,238,138,284,2.2,6.6000000000000005,69.44,938,-2.9000000000000004 +2013,12,12,16,30,79,72,35,1.7000000000000002,5.300000000000001,78.85000000000001,937,-1.9000000000000001 +2013,12,12,17,30,0,0,0,1.6,4.4,89.22,937,-1.3 +2013,12,12,18,30,0,0,0,2.1,3.9000000000000004,101.19,937,-1.4000000000000001 +2013,12,12,19,30,0,0,0,2.3000000000000003,3.7,113.31,937,-1.3 +2013,12,12,20,30,0,0,0,2.6,3.7,125.77,937,-1.2000000000000002 +2013,12,12,21,30,0,0,0,3.3000000000000003,3.7,138.42000000000002,936,-1.1 +2013,12,12,22,30,0,0,0,3.9000000000000004,3.7,151.02,935,-0.7000000000000001 +2013,12,12,23,30,0,0,0,4.3,3.6,163,934,-0.2 +2013,12,13,0,30,0,0,0,4.4,3.3000000000000003,170.76,933,0.6000000000000001 +2013,12,13,1,30,0,0,0,4,3,164.77,932,1.4000000000000001 +2013,12,13,2,30,0,0,0,3.5,2.7,153.04,931,1.9000000000000001 +2013,12,13,3,30,0,0,0,3.2,2.6,140.48,930,2 +2013,12,13,4,30,0,0,0,3,2.4000000000000004,127.83,930,2 +2013,12,13,5,30,0,0,0,2.8000000000000003,1.9000000000000001,115.32000000000001,929,1.9000000000000001 +2013,12,13,6,30,0,0,0,2.5,1.3,103.14,928,1.3 +2013,12,13,7,30,0,0,0,3.1,1.8,91.48,928,1.5 +2013,12,13,8,30,47,47,0,4.3,3.6,80.53,928,1.8 +2013,12,13,9,30,211,131,245,5.2,6.1000000000000005,70.9,927,2 +2013,12,13,10,30,306,198,237,5.9,8.700000000000001,63.01,926,2.5 +2013,12,13,11,30,392,238,288,6.1000000000000005,11.200000000000001,57.63,925,3.2 +2013,12,13,12,30,151,151,0,6.2,13.5,55.51,923,4 +2013,12,13,13,30,14,14,0,6.300000000000001,15.3,57.03,922,4.9 +2013,12,13,14,30,104,104,0,6.300000000000001,16.3,61.9,921,5.4 +2013,12,13,15,30,291,99,548,5.6000000000000005,16.1,69.43,920,5.4 +2013,12,13,16,30,169,44,644,4.2,13.9,78.81,920,5.2 +2013,12,13,17,30,0,0,0,3.5,12.100000000000001,89.2,921,4.7 +2013,12,13,18,30,0,0,0,4.2,10.3,101.13,921,3.7 +2013,12,13,19,30,0,0,0,4.4,9.5,113.24000000000001,922,2.9000000000000004 +2013,12,13,20,30,0,0,0,4.6000000000000005,8.6,125.7,922,2.2 +2013,12,13,21,30,0,0,0,4.6000000000000005,7.7,138.34,922,1.7000000000000002 +2013,12,13,22,30,0,0,0,4.5,6.800000000000001,150.95000000000002,923,1.2000000000000002 +2013,12,13,23,30,0,0,0,4.1000000000000005,5.6000000000000005,162.95000000000002,923,0.7000000000000001 +2013,12,14,0,30,0,0,0,3.8000000000000003,4.4,170.81,924,0.1 +2013,12,14,1,30,0,0,0,3.8000000000000003,3.3000000000000003,164.89000000000001,925,-0.8 +2013,12,14,2,30,0,0,0,4.1000000000000005,2.2,153.16,925,-1.9000000000000001 +2013,12,14,3,30,0,0,0,4.5,1.4000000000000001,140.6,926,-3 +2013,12,14,4,30,0,0,0,4.7,0.6000000000000001,127.95,927,-4.1000000000000005 +2013,12,14,5,30,0,0,0,4.800000000000001,-0.1,115.45,928,-4.7 +2013,12,14,6,30,0,0,0,4.7,-0.8,103.27,930,-5 +2013,12,14,7,30,0,0,0,5,-0.8,91.61,932,-5.1000000000000005 +2013,12,14,8,30,140,37,636,6.1000000000000005,0.30000000000000004,80.65,933,-5.1000000000000005 +2013,12,14,9,30,324,53,835,6.6000000000000005,2,71.02,935,-4.9 +2013,12,14,10,30,478,60,924,6.300000000000001,3.9000000000000004,63.11,935,-5.2 +2013,12,14,11,30,580,64,966,6,5.7,57.72,935,-5.7 +2013,12,14,12,30,619,63,983,5.9,7.2,55.57,935,-6 +2013,12,14,13,30,592,62,975,5.9,8.3,57.06,935,-5.9 +2013,12,14,14,30,502,58,942,5.800000000000001,8.9,61.9,935,-5.7 +2013,12,14,15,30,357,50,873,5.300000000000001,8.700000000000001,69.4,935,-5.4 +2013,12,14,16,30,176,36,716,3.6,6.6000000000000005,78.77,936,-4.9 +2013,12,14,17,30,0,0,0,2.3000000000000003,4.800000000000001,89.13,936,-3.8000000000000003 +2013,12,14,18,30,0,0,0,1.7000000000000002,1.9000000000000001,101.06,937,-3.8000000000000003 +2013,12,14,19,30,0,0,0,1.5,0.9,113.16,937,-4 +2013,12,14,20,30,0,0,0,1.4000000000000001,0.2,125.62,938,-4.3 +2013,12,14,21,30,0,0,0,1.3,-0.30000000000000004,138.26,938,-4.5 +2013,12,14,22,30,0,0,0,1.2000000000000002,-0.4,150.87,938,-4.6000000000000005 +2013,12,14,23,30,0,0,0,1.1,-0.1,162.89000000000001,938,-4.7 +2013,12,15,0,30,0,0,0,1,-0.1,170.85,938,-4.800000000000001 +2013,12,15,1,30,0,0,0,1.2000000000000002,-0.8,165.01,938,-4.800000000000001 +2013,12,15,2,30,0,0,0,1.3,-1.8,153.29,938,-4.800000000000001 +2013,12,15,3,30,0,0,0,1.4000000000000001,-2.4000000000000004,140.73,938,-4.9 +2013,12,15,4,30,0,0,0,1.5,-2.8000000000000003,128.07,937,-5 +2013,12,15,5,30,0,0,0,1.5,-3.1,115.57000000000001,937,-5.1000000000000005 +2013,12,15,6,30,0,0,0,1.7000000000000002,-3.2,103.39,938,-5.1000000000000005 +2013,12,15,7,30,0,0,0,2.3000000000000003,-1.7000000000000002,91.73,938,-5.2 +2013,12,15,8,30,141,29,698,3.2,1.5,80.76,938,-4.9 +2013,12,15,9,30,326,41,883,3.6,5.1000000000000005,71.13,938,-4.5 +2013,12,15,10,30,481,47,963,4,9,63.21,938,-4 +2013,12,15,11,30,584,50,1000,4.4,12,57.800000000000004,937,-4.5 +2013,12,15,12,30,621,57,1000,4.3,13.5,55.63,936,-4.5 +2013,12,15,13,30,596,57,990,4.2,14.200000000000001,57.08,935,-4.5 +2013,12,15,14,30,506,55,957,4.1000000000000005,14.3,61.9,935,-4.7 +2013,12,15,15,30,361,49,886,3.3000000000000003,13.4,69.37,934,-4.7 +2013,12,15,16,30,179,37,725,2.1,10,78.72,934,-2.7 +2013,12,15,17,30,0,0,0,1.7000000000000002,7.4,89.08,934,-1.9000000000000001 +2013,12,15,18,30,0,0,0,1.9000000000000001,5.2,100.99000000000001,934,-2.8000000000000003 +2013,12,15,19,30,0,0,0,2,4.6000000000000005,113.09,935,-3 +2013,12,15,20,30,0,0,0,2.2,4,125.54,935,-3.1 +2013,12,15,21,30,0,0,0,2.4000000000000004,3.6,138.18,935,-3.3000000000000003 +2013,12,15,22,30,0,0,0,2.8000000000000003,3.2,150.79,935,-3.3000000000000003 +2013,12,15,23,30,0,0,0,3,2.7,162.83,935,-3.3000000000000003 +2013,12,16,0,30,0,0,0,3,2,170.88,935,-3.3000000000000003 +2013,12,16,1,30,0,0,0,3,1.2000000000000002,165.12,934,-3.3000000000000003 +2013,12,16,2,30,0,0,0,2.9000000000000004,0.5,153.41,934,-3.2 +2013,12,16,3,30,0,0,0,3,0,140.85,934,-3.2 +2013,12,16,4,30,0,0,0,2.9000000000000004,-0.5,128.19,934,-3.2 +2013,12,16,5,30,0,0,0,2.8000000000000003,-1,115.69,934,-3.2 +2013,12,16,6,30,0,0,0,2.7,-1.4000000000000001,103.51,934,-3.3000000000000003 +2013,12,16,7,30,0,0,0,3,-0.4,91.84,934,-3.5 +2013,12,16,8,30,140,30,693,3.3000000000000003,2.2,80.88,934,-3.7 +2013,12,16,9,30,325,41,883,2.9000000000000004,5.7,71.23,934,-3.6 +2013,12,16,10,30,480,47,963,2.8000000000000003,9.9,63.31,934,-2.8000000000000003 +2013,12,16,11,30,582,50,1001,3.1,13.8,57.870000000000005,934,-2.6 +2013,12,16,12,30,622,50,1015,3.4000000000000004,16.7,55.67,933,-2.9000000000000004 +2013,12,16,13,30,596,49,1007,3.5,18.1,57.09,932,-3.7 +2013,12,16,14,30,506,46,976,3.1,18.400000000000002,61.88,932,-3.6 +2013,12,16,15,30,361,41,908,2,17,69.34,932,-3.1 +2013,12,16,16,30,180,32,754,1.2000000000000002,14,78.67,932,3.2 +2013,12,16,17,30,0,0,0,1.3,12.200000000000001,89.03,932,-0.30000000000000004 +2013,12,16,18,30,0,0,0,1.5,8.700000000000001,100.92,933,-1.4000000000000001 +2013,12,16,19,30,0,0,0,1.6,7.1000000000000005,113.01,933,-1.3 +2013,12,16,20,30,0,0,0,1.7000000000000002,6.1000000000000005,125.45,933,-1.4000000000000001 +2013,12,16,21,30,0,0,0,1.8,5.4,138.09,934,-1.4000000000000001 +2013,12,16,22,30,0,0,0,2,4.800000000000001,150.71,934,-1.5 +2013,12,16,23,30,0,0,0,2.2,4.2,162.76,934,-1.7000000000000002 +2013,12,17,0,30,0,0,0,2.4000000000000004,3.6,170.9,934,-2 +2013,12,17,1,30,0,0,0,2.4000000000000004,2.9000000000000004,165.23,934,-2.2 +2013,12,17,2,30,0,0,0,2.4000000000000004,2.3000000000000003,153.52,934,-2.4000000000000004 +2013,12,17,3,30,0,0,0,2.3000000000000003,1.8,140.96,934,-2.6 +2013,12,17,4,30,0,0,0,2.2,1.4000000000000001,128.31,934,-2.7 +2013,12,17,5,30,0,0,0,2,1,115.81,934,-2.7 +2013,12,17,6,30,0,0,0,1.8,0.8,103.62,935,-2.8000000000000003 +2013,12,17,7,30,0,0,0,1.6,2.1,91.96000000000001,935,-3 +2013,12,17,8,30,138,30,687,1.8,5.4,80.98,936,-2.3000000000000003 +2013,12,17,9,30,323,42,879,1.6,8.9,71.33,936,-2.5 +2013,12,17,10,30,479,48,961,0.9,12.5,63.39,936,-1.8 +2013,12,17,11,30,582,52,999,0.7000000000000001,16.2,57.93,936,-1 +2013,12,17,12,30,625,58,1007,0.9,18.5,55.71,935,-1.8 +2013,12,17,13,30,595,57,991,1.1,19.3,57.1,935,-2 +2013,12,17,14,30,506,54,959,1.4000000000000001,19.200000000000003,61.86,934,-2 +2013,12,17,15,30,362,47,891,1.2000000000000002,17.8,69.29,934,-1.7000000000000002 +2013,12,17,16,30,181,36,733,1.1,14.200000000000001,78.61,935,3.8000000000000003 +2013,12,17,17,30,15,10,271,1.3,11.9,88.96000000000001,935,1.6 +2013,12,17,18,30,0,0,0,1.5,8.9,100.84,935,0.2 +2013,12,17,19,30,0,0,0,1.5,7.9,112.92,936,-0.1 +2013,12,17,20,30,0,0,0,1.6,7,125.37,936,-0.30000000000000004 +2013,12,17,21,30,0,0,0,1.6,6.2,138,936,-0.4 +2013,12,17,22,30,0,0,0,1.6,5.4,150.62,936,-0.4 +2013,12,17,23,30,0,0,0,1.7000000000000002,4.800000000000001,162.69,935,-0.30000000000000004 +2013,12,18,0,30,0,0,0,1.8,4.2,170.92000000000002,935,-0.1 +2013,12,18,1,30,0,0,0,1.9000000000000001,3.8000000000000003,165.34,935,0.2 +2013,12,18,2,30,0,0,0,2,3.3000000000000003,153.64000000000001,934,0.4 +2013,12,18,3,30,0,0,0,2,2.9000000000000004,141.08,934,0.5 +2013,12,18,4,30,0,0,0,2.2,2.6,128.43,934,0.4 +2013,12,18,5,30,0,0,0,2.3000000000000003,2.2,115.92,934,0.1 +2013,12,18,6,30,0,0,0,2.4000000000000004,2,103.74000000000001,934,-0.30000000000000004 +2013,12,18,7,30,0,0,0,3,2.9000000000000004,92.07000000000001,934,-0.5 +2013,12,18,8,30,85,56,186,3.7,5.5,81.09,934,-0.2 +2013,12,18,9,30,315,56,813,3.7,8.700000000000001,71.42,934,0.6000000000000001 +2013,12,18,10,30,469,65,905,4.5,12.700000000000001,63.47,933,2.1 +2013,12,18,11,30,573,70,949,5.7,16.2,57.99,932,3.6 +2013,12,18,12,30,615,63,981,6.1000000000000005,18.3,55.74,930,3.5 +2013,12,18,13,30,587,64,964,6,19.200000000000003,57.1,929,3.1 +2013,12,18,14,30,499,63,925,5.800000000000001,19.400000000000002,61.84,928,2.9000000000000004 +2013,12,18,15,30,356,58,842,5.1000000000000005,18.400000000000002,69.25,927,2.8000000000000003 +2013,12,18,16,30,92,76,81,4,15.9,78.55,927,3.3000000000000003 +2013,12,18,17,30,7,7,0,3.6,14.100000000000001,88.9,927,3.8000000000000003 +2013,12,18,18,30,0,0,0,4.800000000000001,12.700000000000001,100.76,927,4 +2013,12,18,19,30,0,0,0,5.1000000000000005,11.8,112.83,927,4.5 +2013,12,18,20,30,0,0,0,5,10.700000000000001,125.27,926,5.1000000000000005 +2013,12,18,21,30,0,0,0,5.1000000000000005,9.8,137.91,926,5.7 +2013,12,18,22,30,0,0,0,5.300000000000001,9.200000000000001,150.53,925,6.300000000000001 +2013,12,18,23,30,0,0,0,5.4,8.9,162.61,925,6.7 +2013,12,19,0,30,0,0,0,5.4,8.8,170.92000000000002,924,6.9 +2013,12,19,1,30,0,0,0,5.7,8.8,165.44,924,7.1000000000000005 +2013,12,19,2,30,0,0,0,6,9,153.75,923,7.300000000000001 +2013,12,19,3,30,0,0,0,6,9.1,141.19,923,7.9 +2013,12,19,4,30,0,0,0,5.800000000000001,9.1,128.54,922,8.5 +2013,12,19,5,30,0,0,0,5.4,9,116.03,922,9 +2013,12,19,6,30,0,0,0,5.2,9,103.84,922,9 +2013,12,19,7,30,0,0,0,5.300000000000001,9.4,92.17,922,9.4 +2013,12,19,8,30,84,55,193,6.1000000000000005,10.700000000000001,81.19,922,9.9 +2013,12,19,9,30,182,132,157,7.2,12.9,71.51,922,10.3 +2013,12,19,10,30,355,163,433,7.5,15.700000000000001,63.550000000000004,922,10.100000000000001 +2013,12,19,11,30,459,176,535,7.4,18.2,58.050000000000004,921,9.3 +2013,12,19,12,30,421,253,300,7.1000000000000005,20,55.76,920,8.4 +2013,12,19,13,30,446,215,426,6.6000000000000005,20.8,57.09,919,7.6000000000000005 +2013,12,19,14,30,348,199,315,5.7,20.6,61.800000000000004,919,6.7 +2013,12,19,15,30,289,106,514,4.5,19.6,69.19,919,6.300000000000001 +2013,12,19,16,30,177,40,688,3.2,16.7,78.48,919,6.6000000000000005 +2013,12,19,17,30,16,11,235,2.7,14.600000000000001,88.83,919,6.7 +2013,12,19,18,30,0,0,0,3.6,12.8,100.67,919,6.4 +2013,12,19,19,30,0,0,0,4.2,12.100000000000001,112.74000000000001,920,6.7 +2013,12,19,20,30,0,0,0,4.4,11.200000000000001,125.18,920,7.2 +2013,12,19,21,30,0,0,0,4.7,10.8,137.81,920,7.800000000000001 +2013,12,19,22,30,0,0,0,4.800000000000001,10.5,150.43,920,8.3 +2013,12,19,23,30,0,0,0,4.6000000000000005,10.200000000000001,162.52,920,8.8 +2013,12,20,0,30,0,0,0,4.3,9.8,170.91,920,9 +2013,12,20,1,30,0,0,0,3.6,9.200000000000001,165.54,920,9.1 +2013,12,20,2,30,0,0,0,3,8.6,153.86,920,8.6 +2013,12,20,3,30,0,0,0,2.3000000000000003,8.200000000000001,141.3,920,8.200000000000001 +2013,12,20,4,30,0,0,0,1.8,7.7,128.65,920,7.7 +2013,12,20,5,30,0,0,0,1.5,7.1000000000000005,116.14,921,7.1000000000000005 +2013,12,20,6,30,0,0,0,2.2,6.7,103.95,922,6.7 +2013,12,20,7,30,0,0,0,3.4000000000000004,6.4,92.27,923,5.7 +2013,12,20,8,30,12,12,0,3.7,6,81.28,924,3.8000000000000003 +2013,12,20,9,30,25,25,0,3.7,5.6000000000000005,71.60000000000001,924,2 +2013,12,20,10,30,80,80,0,3.8000000000000003,5.800000000000001,63.61,923,0.8 +2013,12,20,11,30,46,46,0,3.6,6.5,58.09,923,0.7000000000000001 +2013,12,20,12,30,76,76,0,3.2,6.4,55.78,923,0.8 +2013,12,20,13,30,36,36,0,3.2,5.5,57.08,923,1 +2013,12,20,14,30,59,59,0,3.4000000000000004,4.800000000000001,61.76,921,1 +2013,12,20,15,30,69,69,0,3.1,4.4,69.13,920,0.8 +2013,12,20,16,30,79,74,23,2.6,3.7,78.4,921,0.7000000000000001 +2013,12,20,17,30,4,4,0,2.3000000000000003,3.3000000000000003,88.74,921,0.5 +2013,12,20,18,30,0,0,0,2.5,2,100.57000000000001,921,0.2 +2013,12,20,19,30,0,0,0,2.1,1.4000000000000001,112.64,921,-0.1 +2013,12,20,20,30,0,0,0,1.8,1.3,125.08,920,-0.1 +2013,12,20,21,30,0,0,0,2.1,1.3,137.71,919,0.2 +2013,12,20,22,30,0,0,0,2.1,1.3,150.33,919,0.5 +2013,12,20,23,30,0,0,0,1.7000000000000002,1.3,162.43,919,0.8 +2013,12,21,0,30,0,0,0,1.9000000000000001,1.5,170.9,919,1 +2013,12,21,1,30,0,0,0,2.4000000000000004,1.6,165.63,918,1.3 +2013,12,21,2,30,0,0,0,2.5,1.7000000000000002,153.96,918,1.5 +2013,12,21,3,30,0,0,0,2.4000000000000004,1.8,141.41,917,1.5 +2013,12,21,4,30,0,0,0,2,2.1,128.75,917,1.6 +2013,12,21,5,30,0,0,0,1.6,2.3000000000000003,116.24000000000001,916,1.8 +2013,12,21,6,30,0,0,0,1.3,2.3000000000000003,104.05,916,2.1 +2013,12,21,7,30,0,0,0,1.7000000000000002,3.1,92.37,916,2.3000000000000003 +2013,12,21,8,30,41,41,0,3.3000000000000003,5.2,81.37,916,3.4000000000000004 +2013,12,21,9,30,99,99,0,5.4,7.800000000000001,71.67,916,4.9 +2013,12,21,10,30,227,193,77,7.1000000000000005,9.8,63.67,916,4.2 +2013,12,21,11,30,570,59,968,7.9,10.9,58.13,915,0.8 +2013,12,21,12,30,610,60,977,8.1,11.4,55.79,914,-0.7000000000000001 +2013,12,21,13,30,587,64,962,8.1,11.700000000000001,57.06,913,-0.6000000000000001 +2013,12,21,14,30,194,183,24,7.5,11.8,61.71,913,-0.1 +2013,12,21,15,30,358,57,843,6.2,11.5,69.06,913,0.2 +2013,12,21,16,30,178,44,662,4.4,10,78.32000000000001,914,0.7000000000000001 +2013,12,21,17,30,16,12,163,3.4000000000000004,8.8,88.67,915,1.4000000000000001 +2013,12,21,18,30,0,0,0,4.2,7.9,100.48,916,1.5 +2013,12,21,19,30,0,0,0,4.800000000000001,7.7,112.54,917,1.7000000000000002 +2013,12,21,20,30,0,0,0,5,7.2,124.97,918,1.8 +2013,12,21,21,30,0,0,0,4.7,6.4,137.6,919,1.6 +2013,12,21,22,30,0,0,0,3.8000000000000003,4.9,150.23,920,1.2000000000000002 +2013,12,21,23,30,0,0,0,3.2,2.9000000000000004,162.34,922,0.9 +2013,12,22,0,30,0,0,0,3.5,1.2000000000000002,170.87,923,0.30000000000000004 +2013,12,22,1,30,0,0,0,3.8000000000000003,-0.30000000000000004,165.71,924,-0.7000000000000001 +2013,12,22,2,30,0,0,0,3.5,-1.6,154.06,925,-2.2 +2013,12,22,3,30,0,0,0,3,-2.6,141.51,926,-3.7 +2013,12,22,4,30,0,0,0,2.6,-3.4000000000000004,128.86,927,-4.800000000000001 +2013,12,22,5,30,0,0,0,2.7,-3.7,116.35000000000001,928,-5.4 +2013,12,22,6,30,0,0,0,2.9000000000000004,-3.9000000000000004,104.15,929,-5.7 +2013,12,22,7,30,0,0,0,3.5,-3.3000000000000003,92.46000000000001,930,-5.9 +2013,12,22,8,30,23,23,0,4.5,-1.5,81.45,932,-5.800000000000001 +2013,12,22,9,30,157,129,90,5.1000000000000005,0.7000000000000001,71.74,933,-6.1000000000000005 +2013,12,22,10,30,464,62,908,5.1000000000000005,2.7,63.730000000000004,934,-5.9 +2013,12,22,11,30,570,67,953,5,4.3,58.15,934,-5.800000000000001 +2013,12,22,12,30,613,67,973,4.9,5.6000000000000005,55.79,933,-5.7 +2013,12,22,13,30,591,66,965,4.7,6.300000000000001,57.03,933,-5.5 +2013,12,22,14,30,505,62,933,4.5,6.5,61.660000000000004,933,-5 +2013,12,22,15,30,363,55,860,4,5.9,68.99,934,-4.5 +2013,12,22,16,30,185,41,702,2.6,3.9000000000000004,78.23,934,-4 +2013,12,22,17,30,19,12,258,1.6,2.3000000000000003,88.56,935,-2.9000000000000004 +2013,12,22,18,30,0,0,0,1.2000000000000002,-0.1,100.38,936,-3.3000000000000003 +2013,12,22,19,30,0,0,0,1.2000000000000002,-1,112.44,937,-3.7 +2013,12,22,20,30,0,0,0,1.1,-1.7000000000000002,124.87,937,-4.1000000000000005 +2013,12,22,21,30,0,0,0,1,-2.4000000000000004,137.5,937,-4.6000000000000005 +2013,12,22,22,30,0,0,0,1,-2.9000000000000004,150.12,938,-5 +2013,12,22,23,30,0,0,0,1,-3.2,162.24,938,-5.4 +2013,12,23,0,30,0,0,0,1,-3.6,170.84,938,-5.7 +2013,12,23,1,30,0,0,0,1,-4.1000000000000005,165.79,938,-5.9 +2013,12,23,2,30,0,0,0,1,-4.5,154.16,938,-6 +2013,12,23,3,30,0,0,0,1.1,-4.7,141.61,939,-5.9 +2013,12,23,4,30,0,0,0,1.2000000000000002,-4.9,128.96,939,-5.800000000000001 +2013,12,23,5,30,0,0,0,1.3,-4.9,116.44,939,-5.5 +2013,12,23,6,30,0,0,0,1.4000000000000001,-4.9,104.24000000000001,940,-5.2 +2013,12,23,7,30,0,0,0,2.1,-3.7,92.55,940,-4.9 +2013,12,23,8,30,126,32,637,2.7,-1.1,81.52,941,-4.4 +2013,12,23,9,30,313,47,850,2.8000000000000003,2,71.81,942,-3.8000000000000003 +2013,12,23,10,30,470,55,938,3.2,5.300000000000001,63.77,942,-3.3000000000000003 +2013,12,23,11,30,576,60,979,3.3000000000000003,8.200000000000001,58.18,941,-2.5 +2013,12,23,12,30,620,61,994,3.2,10.200000000000001,55.78,940,-2 +2013,12,23,13,30,598,59,988,3,11.3,56.99,940,-1.7000000000000002 +2013,12,23,14,30,512,55,959,2.6,11.8,61.59,939,-1.6 +2013,12,23,15,30,373,49,900,1.7000000000000002,11.3,68.91,939,-1.7000000000000002 +2013,12,23,16,30,192,37,753,0.6000000000000001,9.600000000000001,78.14,939,1 +2013,12,23,17,30,21,12,318,0.2,8.6,88.48,940,-1.5 +2013,12,23,18,30,0,0,0,1.1,4.9,100.27,940,-2.2 +2013,12,23,19,30,0,0,0,1.2000000000000002,2.9000000000000004,112.33,941,-2.2 +2013,12,23,20,30,0,0,0,1.2000000000000002,1.5,124.76,941,-2.3000000000000003 +2013,12,23,21,30,0,0,0,1.2000000000000002,0.5,137.38,942,-2.4000000000000004 +2013,12,23,22,30,0,0,0,1.2000000000000002,-0.30000000000000004,150.01,942,-2.7 +2013,12,23,23,30,0,0,0,1.2000000000000002,-1,162.14000000000001,942,-3.1 +2013,12,24,0,30,0,0,0,1.3,-1.7000000000000002,170.8,941,-3.3000000000000003 +2013,12,24,1,30,0,0,0,1.3,-2.2,165.86,941,-3.4000000000000004 +2013,12,24,2,30,0,0,0,1.4000000000000001,-2.6,154.26,941,-3.3000000000000003 +2013,12,24,3,30,0,0,0,1.4000000000000001,-3.1,141.71,940,-3.1 +2013,12,24,4,30,0,0,0,1.5,-3.4000000000000004,129.06,940,-3.4000000000000004 +2013,12,24,5,30,0,0,0,1.5,-3.6,116.54,940,-3.6 +2013,12,24,6,30,0,0,0,1.7000000000000002,-3.7,104.33,940,-3.7 +2013,12,24,7,30,0,0,0,2.4000000000000004,-2.4000000000000004,92.63,940,-2.4000000000000004 +2013,12,24,8,30,128,32,654,3.3000000000000003,0.30000000000000004,81.60000000000001,939,-2 +2013,12,24,9,30,315,47,861,3.8000000000000003,3.7,71.87,939,-1.5 +2013,12,24,10,30,473,55,948,5,7.800000000000001,63.82,939,-0.8 +2013,12,24,11,30,581,60,988,6.1000000000000005,11.100000000000001,58.19,937,-0.6000000000000001 +2013,12,24,12,30,626,63,1000,6.6000000000000005,13.100000000000001,55.76,936,-0.8 +2013,12,24,13,30,604,63,992,6.7,14.100000000000001,56.95,934,-1.2000000000000002 +2013,12,24,14,30,518,60,959,6.5,14.3,61.53,933,-1.7000000000000002 +2013,12,24,15,30,375,52,894,5.9,13.4,68.82000000000001,933,-2 +2013,12,24,16,30,194,40,741,4.4,10.600000000000001,78.04,933,-1.8 +2013,12,24,17,30,21,13,291,3.6,8.5,88.39,932,-1 +2013,12,24,18,30,0,0,0,4.3,6.2,100.16,932,-1.2000000000000002 +2013,12,24,19,30,0,0,0,4.6000000000000005,5.2,112.22,932,-1.3 +2013,12,24,20,30,0,0,0,4.5,4.2,124.64,932,-1.3 +2013,12,24,21,30,0,0,0,4.3,3.3000000000000003,137.27,932,-1.5 +2013,12,24,22,30,0,0,0,4,2.6,149.9,932,-1.6 +2013,12,24,23,30,0,0,0,3.6,1.9000000000000001,162.03,932,-1.8 +2013,12,25,0,30,0,0,0,3.2,1.2000000000000002,170.75,932,-1.9000000000000001 +2013,12,25,1,30,0,0,0,2.5,0.4,165.93,932,-1.9000000000000001 +2013,12,25,2,30,0,0,0,1.9000000000000001,-0.4,154.35,933,-1.8 +2013,12,25,3,30,0,0,0,1.7000000000000002,-1,141.81,933,-1.6 +2013,12,25,4,30,0,0,0,1.6,-1.3,129.15,933,-1.4000000000000001 +2013,12,25,5,30,0,0,0,1.9000000000000001,-1.6,116.63,934,-1.6 +2013,12,25,6,30,0,0,0,2.6,-1.7000000000000002,104.42,935,-1.7000000000000002 +2013,12,25,7,30,0,0,0,3.9000000000000004,-1,92.71000000000001,935,-1.1 +2013,12,25,8,30,119,37,565,5.300000000000001,0.6000000000000001,81.67,936,-1.1 +2013,12,25,9,30,150,127,75,5.9,2.7,71.92,937,-0.9 +2013,12,25,10,30,185,173,28,6,4.800000000000001,63.85,938,-0.6000000000000001 +2013,12,25,11,30,359,241,224,5.9,6.6000000000000005,58.2,938,-0.4 +2013,12,25,12,30,608,75,947,5.7,7.9,55.74,937,-0.2 +2013,12,25,13,30,425,231,356,5.6000000000000005,8.6,56.89,937,-0.1 +2013,12,25,14,30,346,203,297,5.5,8.700000000000001,61.45,938,-0.2 +2013,12,25,15,30,365,60,840,5.300000000000001,8,68.73,938,-0.5 +2013,12,25,16,30,188,44,688,4,6.1000000000000005,77.94,938,-0.9 +2013,12,25,17,30,22,14,265,3,4.7,88.28,938,-1.1 +2013,12,25,18,30,0,0,0,2.2,1.9000000000000001,100.05,939,-1.5 +2013,12,25,19,30,0,0,0,2,0.8,112.10000000000001,940,-2.1 +2013,12,25,20,30,0,0,0,1.7000000000000002,-0.2,124.53,940,-2.8000000000000003 +2013,12,25,21,30,0,0,0,1.5,-1.1,137.15,941,-3.4000000000000004 +2013,12,25,22,30,0,0,0,1.4000000000000001,-1.9000000000000001,149.78,941,-3.8000000000000003 +2013,12,25,23,30,0,0,0,1.3,-2.6,161.92000000000002,940,-4.2 +2013,12,26,0,30,0,0,0,1.3,-3.2,170.69,940,-4.5 +2013,12,26,1,30,0,0,0,1.4000000000000001,-3.7,166,940,-4.800000000000001 +2013,12,26,2,30,0,0,0,1.5,-4.1000000000000005,154.43,940,-5 +2013,12,26,3,30,0,0,0,1.5,-4.4,141.9,940,-5.1000000000000005 +2013,12,26,4,30,0,0,0,1.4000000000000001,-4.5,129.24,939,-5.300000000000001 +2013,12,26,5,30,0,0,0,1.4000000000000001,-4.6000000000000005,116.72,939,-5.4 +2013,12,26,6,30,0,0,0,1.3,-4.5,104.5,940,-5.5 +2013,12,26,7,30,0,0,0,1.3,-2.9000000000000004,92.79,940,-5.7 +2013,12,26,8,30,128,29,692,1.7000000000000002,0.2,81.73,941,-5 +2013,12,26,9,30,318,42,893,1.5,3.8000000000000003,71.97,941,-4.9 +2013,12,26,10,30,473,48,966,0.7000000000000001,7.4,63.88,940,-6.1000000000000005 +2013,12,26,11,30,582,52,1007,0.7000000000000001,9.8,58.2,939,-8.4 +2013,12,26,12,30,630,56,1019,0.9,11,55.71,938,-8.700000000000001 +2013,12,26,13,30,609,55,1013,1.1,11.600000000000001,56.83,937,-8.6 +2013,12,26,14,30,523,52,984,1.1,11.600000000000001,61.370000000000005,936,-8.5 +2013,12,26,15,30,381,47,919,0.7000000000000001,10.9,68.63,936,-8.3 +2013,12,26,16,30,157,58,468,0.4,9.200000000000001,77.83,936,-5.4 +2013,12,26,17,30,24,13,358,0.5,8.1,88.18,936,-6.9 +2013,12,26,18,30,0,0,0,1.2000000000000002,4.9,99.93,937,-6.9 +2013,12,26,19,30,0,0,0,1.4000000000000001,3.1,111.98,937,-6.300000000000001 +2013,12,26,20,30,0,0,0,1.4000000000000001,1.7000000000000002,124.41,938,-6 +2013,12,26,21,30,0,0,0,1.5,0.6000000000000001,137.03,938,-5.7 +2013,12,26,22,30,0,0,0,1.5,-0.1,149.66,938,-5.300000000000001 +2013,12,26,23,30,0,0,0,1.4000000000000001,-0.30000000000000004,161.8,939,-4.9 +2013,12,27,0,30,0,0,0,1.4000000000000001,-0.5,170.62,939,-4.5 +2013,12,27,1,30,0,0,0,1.4000000000000001,-0.8,166.05,939,-4.4 +2013,12,27,2,30,0,0,0,1.4000000000000001,-1.3,154.52,938,-4.5 +2013,12,27,3,30,0,0,0,1.4000000000000001,-1.9000000000000001,141.99,938,-4.7 +2013,12,27,4,30,0,0,0,1.4000000000000001,-2.5,129.33,938,-5.1000000000000005 +2013,12,27,5,30,0,0,0,1.5,-3,116.8,939,-5.6000000000000005 +2013,12,27,6,30,0,0,0,1.5,-3.3000000000000003,104.58,939,-6.2 +2013,12,27,7,30,0,0,0,1.8,-2,92.86,940,-6.6000000000000005 +2013,12,27,8,30,122,30,647,2.3000000000000003,0.8,81.79,940,-5.9 +2013,12,27,9,30,308,45,854,2,3.9000000000000004,72.02,940,-5.7 +2013,12,27,10,30,464,52,935,1.1,7.7,63.9,940,-4.6000000000000005 +2013,12,27,11,30,569,57,970,1.3,10.8,58.2,940,-6 +2013,12,27,12,30,615,59,986,1.9000000000000001,12,55.67,939,-6.5 +2013,12,27,13,30,592,59,973,2.1,12.5,56.77,938,-6.2 +2013,12,27,14,30,507,56,938,2,12.5,61.28,937,-5.7 +2013,12,27,15,30,369,50,869,1.5,11.700000000000001,68.53,937,-5 +2013,12,27,16,30,74,74,0,1.1,9.5,77.72,937,-1.2000000000000002 +2013,12,27,17,30,9,9,0,1.1,7.800000000000001,88.07000000000001,937,-1.2000000000000002 +2013,12,27,18,30,0,0,0,1.4000000000000001,5.1000000000000005,99.81,938,-2.2 +2013,12,27,19,30,0,0,0,1.5,4.1000000000000005,111.86,938,-2.1 +2013,12,27,20,30,0,0,0,1.6,3.4000000000000004,124.29,937,-2 +2013,12,27,21,30,0,0,0,1.8,2.9000000000000004,136.91,937,-1.6 +2013,12,27,22,30,0,0,0,2.1,2.5,149.54,937,-1.1 +2013,12,27,23,30,0,0,0,2.2,2,161.68,937,-0.4 +2013,12,28,0,30,0,0,0,2.1,1.5,170.54,936,0.4 +2013,12,28,1,30,0,0,0,2,1,166.1,936,1 +2013,12,28,2,30,0,0,0,1.9000000000000001,0.7000000000000001,154.6,935,0.7000000000000001 +2013,12,28,3,30,0,0,0,2,0.8,142.07,935,0.8 +2013,12,28,4,30,0,0,0,2.2,1.2000000000000002,129.41,934,1.2000000000000002 +2013,12,28,5,30,0,0,0,2.4000000000000004,1.7000000000000002,116.88,934,1.7000000000000002 +2013,12,28,6,30,0,0,0,2.7,2.2,104.65,934,2.2 +2013,12,28,7,30,0,0,0,2.9000000000000004,2.6,92.92,933,2.6 +2013,12,28,8,30,26,26,0,3.1,3.4000000000000004,81.84,933,3.1 +2013,12,28,9,30,58,58,0,3.5,5.1000000000000005,72.05,933,3.6 +2013,12,28,10,30,116,116,0,4.2,8,63.910000000000004,932,4.6000000000000005 +2013,12,28,11,30,300,243,108,4.9,11,58.18,931,5.300000000000001 +2013,12,28,12,30,324,264,107,5.300000000000001,12.9,55.63,929,5.4 +2013,12,28,13,30,294,250,81,5.5,13.9,56.69,928,5.1000000000000005 +2013,12,28,14,30,300,220,167,5.300000000000001,14.200000000000001,61.18,927,4.2 +2013,12,28,15,30,372,61,845,4.5,13.600000000000001,68.42,926,3.1 +2013,12,28,16,30,196,46,699,2.8000000000000003,10.8,77.61,925,2.6 +2013,12,28,17,30,25,15,279,1.8,8.6,87.96000000000001,925,2.7 +2013,12,28,18,30,0,0,0,2,6.300000000000001,99.69,925,2.3000000000000003 +2013,12,28,19,30,0,0,0,2.5,5.800000000000001,111.74000000000001,925,2.9000000000000004 +2013,12,28,20,30,0,0,0,3.2,5.5,124.16,925,3.8000000000000003 +2013,12,28,21,30,0,0,0,3.9000000000000004,5,136.79,925,4.7 +2013,12,28,22,30,0,0,0,4.4,4.6000000000000005,149.41,925,4.6000000000000005 +2013,12,28,23,30,0,0,0,4.800000000000001,4.4,161.56,925,4.4 +2013,12,29,0,30,0,0,0,4.9,4.3,170.46,925,4.3 +2013,12,29,1,30,0,0,0,4.6000000000000005,4.2,166.14000000000001,924,4.2 +2013,12,29,2,30,0,0,0,4.1000000000000005,4.2,154.67000000000002,924,4.2 +2013,12,29,3,30,0,0,0,3.6,4.3,142.15,924,4.3 +2013,12,29,4,30,0,0,0,3,4.3,129.49,925,4.3 +2013,12,29,5,30,0,0,0,2.6,4.2,116.96000000000001,926,4.2 +2013,12,29,6,30,0,0,0,3.3000000000000003,3.5,104.72,927,3.5 +2013,12,29,7,30,0,0,0,4.9,2.3000000000000003,92.98,929,2.3000000000000003 +2013,12,29,8,30,46,46,0,6.5,1.2000000000000002,81.89,931,0.2 +2013,12,29,9,30,5,5,0,7.1000000000000005,0.5,72.08,932,-2.1 +2013,12,29,10,30,93,93,0,7,0.1,63.92,933,-4.2 +2013,12,29,11,30,56,56,0,6.6000000000000005,0.1,58.160000000000004,934,-5.800000000000001 +2013,12,29,12,30,165,164,2,6.1000000000000005,0.30000000000000004,55.58,933,-7.2 +2013,12,29,13,30,77,77,0,5.7,0.5,56.61,933,-8.200000000000001 +2013,12,29,14,30,61,61,0,5.4,0.5,61.08,933,-8.9 +2013,12,29,15,30,48,48,0,5.2,0,68.3,934,-9.3 +2013,12,29,16,30,59,59,0,5,-0.8,77.48,934,-9.8 +2013,12,29,17,30,8,8,0,4.800000000000001,-1.3,87.83,935,-10.200000000000001 +2013,12,29,18,30,0,0,0,4,-2.5,99.56,936,-10.4 +2013,12,29,19,30,0,0,0,3.1,-3.5,111.61,936,-10.600000000000001 +2013,12,29,20,30,0,0,0,2.1,-4.5,124.03,936,-10.5 +2013,12,29,21,30,0,0,0,1.6,-5.2,136.66,936,-10.3 +2013,12,29,22,30,0,0,0,1.6,-5.7,149.29,936,-10.3 +2013,12,29,23,30,0,0,0,1.7000000000000002,-6,161.43,936,-10.600000000000001 +2013,12,30,0,30,0,0,0,1.7000000000000002,-6.2,170.37,936,-10.700000000000001 +2013,12,30,1,30,0,0,0,1.7000000000000002,-6.300000000000001,166.18,936,-10.700000000000001 +2013,12,30,2,30,0,0,0,1.9000000000000001,-6.300000000000001,154.74,936,-10.8 +2013,12,30,3,30,0,0,0,1.7000000000000002,-6.4,142.23,935,-10.8 +2013,12,30,4,30,0,0,0,1.5,-6.4,129.57,935,-10.600000000000001 +2013,12,30,5,30,0,0,0,1.3,-6.4,117.03,935,-10.5 +2013,12,30,6,30,0,0,0,1.2000000000000002,-6.300000000000001,104.79,935,-10.4 +2013,12,30,7,30,0,0,0,1.6,-5.300000000000001,93.04,935,-10.200000000000001 +2013,12,30,8,30,122,31,643,2.1,-2.7,81.93,935,-10.100000000000001 +2013,12,30,9,30,310,47,857,2.1,0.30000000000000004,72.11,936,-10 +2013,12,30,10,30,472,56,945,2,3.1,63.92,936,-9.3 +2013,12,30,11,30,582,61,988,2,5.6000000000000005,58.13,935,-8.200000000000001 +2013,12,30,12,30,630,61,1005,2,7.7,55.52,934,-7 +2013,12,30,13,30,612,60,1001,1.6,9.200000000000001,56.52,933,-6 +2013,12,30,14,30,524,56,964,1,10.100000000000001,60.97,933,-5.2 +2013,12,30,15,30,384,49,903,0.5,9.9,68.18,934,-4.800000000000001 +2013,12,30,16,30,205,38,763,0.8,7.300000000000001,77.36,934,-2 +2013,12,30,17,30,29,15,364,1.2000000000000002,5.2,87.71000000000001,935,-3.1 +2013,12,30,18,30,0,0,0,1.4000000000000001,2.1,99.43,937,-4.1000000000000005 +2013,12,30,19,30,0,0,0,1.4000000000000001,1.2000000000000002,111.48,938,-4.5 +2013,12,30,20,30,0,0,0,1.3,0.7000000000000001,123.9,939,-5.1000000000000005 +2013,12,30,21,30,0,0,0,1.1,0.6000000000000001,136.53,939,-5.7 +2013,12,30,22,30,0,0,0,0.8,1,149.16,940,-6.2 +2013,12,30,23,30,0,0,0,0.4,1.3,161.3,939,-6.5 +2013,12,31,0,30,0,0,0,0.5,0.8,170.27,939,-6.6000000000000005 +2013,12,31,1,30,0,0,0,0.9,-0.2,166.21,939,-6.6000000000000005 +2013,12,31,2,30,0,0,0,1.2000000000000002,-1.1,154.81,939,-6.6000000000000005 +2013,12,31,3,30,0,0,0,1.2000000000000002,-1.6,142.3,939,-6.6000000000000005 +2013,12,31,4,30,0,0,0,1,-1.4000000000000001,129.64000000000001,939,-6.5 +2013,12,31,5,30,0,0,0,0.8,-1,117.10000000000001,939,-6.5 +2013,12,31,6,30,0,0,0,0.7000000000000001,-1,104.85000000000001,939,-6.4 +2013,12,31,7,30,0,0,0,0.9,-0.7000000000000001,93.09,939,-6.4 +2013,12,31,8,30,120,27,662,1.6,1.2000000000000002,81.96000000000001,940,-5.2 +2013,12,31,9,30,308,41,869,2.6,4.3,72.12,940,-5.2 +2013,12,31,10,30,466,49,947,3.5,7.6000000000000005,63.910000000000004,939,-4.9 +2013,12,31,11,30,576,53,989,4.2,10,58.1,938,-4.5 +2013,12,31,12,30,626,58,1001,4.6000000000000005,11.8,55.45,936,-3.9000000000000004 +2013,12,31,13,30,609,59,994,4.800000000000001,13,56.43,935,-3.4000000000000004 +2013,12,31,14,30,527,57,965,4.800000000000001,13.5,60.86,934,-3.1 +2013,12,31,15,30,385,52,890,4,12.8,68.05,933,-2.7 +2013,12,31,16,30,206,41,749,2.7,9.600000000000001,77.23,933,-1.4000000000000001 +2013,12,31,17,30,30,16,345,2.1,7.2,87.59,933,-0.7000000000000001 +2013,12,31,18,30,0,0,0,1.6,7.1000000000000005,99.26,927,-1.7000000000000002 +2013,12,31,19,30,0,0,0,1.5,6.2,111.31,927,-2 +2013,12,31,20,30,0,0,0,1.5,5.5,123.74000000000001,928,-2.2 +2013,12,31,21,30,0,0,0,1.4000000000000001,4.800000000000001,136.37,928,-2.4000000000000004 +2013,12,31,22,30,0,0,0,1.7000000000000002,3.9000000000000004,148.99,928,-2.3000000000000003 +2013,12,31,23,30,0,0,0,2.6,2.9000000000000004,161.13,929,-2.1 diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw b/examples/03_methanol/co2_hydrogenation/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw new file mode 100644 index 000000000..cda6d99dd --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw @@ -0,0 +1,8765 @@ +1052613,city??,TX,country??,2013,32.3187141418,-100.181152344,Not Available,1,8760 +WIND Toolkit data from NREL downloaded on 2024-10-21 +Temperature,Pressure,Speed,Direction,Temperature,Pressure,Speed,Direction +C,atm,m/s,Degrees,C,atm,m/s,Degrees +100,100,100,100,120,120,120,120 +10.1,0.91,9.780,300.7,10.2,0.91,10.210,301.8 +3.4,0.91,6.670,11.6,3.8,0.91,6.760,12.0 +2.9,0.91,5.490,18.0,2.8,0.91,5.720,18.7 +3.4,0.91,4.840,19.7,3.3,0.91,4.960,20.5 +3.0,0.91,6.270,22.7,2.9,0.91,6.360,23.3 +2.0,0.91,6.980,7.1,1.8,0.91,7.170,7.5 +0.7,0.91,7.500,4.0,0.6,0.91,7.550,4.1 +-0.8,0.91,8.190,3.8,-1.0,0.91,8.400,4.1 +-2.5,0.91,8.300,15.3,-2.7,0.91,8.700,15.6 +-3.0,0.91,7.710,11.7,-3.2,0.91,7.760,12.1 +-2.4,0.91,7.400,11.7,-2.6,0.91,7.430,11.6 +-1.3,0.91,6.610,4.2,-1.5,0.91,6.640,4.0 +-0.3,0.91,6.930,359.1,-0.5,0.91,6.940,358.8 +0.8,0.91,5.970,354.5,0.6,0.91,6.010,354.1 +1.8,0.91,6.030,354.5,1.6,0.91,6.070,354.0 +2.4,0.91,5.790,356.3,2.2,0.91,5.830,355.9 +2.5,0.91,5.570,358.2,2.3,0.91,5.620,357.9 +2.2,0.91,5.240,3.8,2.0,0.91,5.300,3.4 +1.6,0.91,5.240,0.3,1.5,0.91,5.350,0.9 +1.2,0.91,7.040,4.0,1.1,0.91,7.260,3.6 +0.8,0.91,7.720,2.0,0.7,0.91,7.750,2.7 +0.3,0.91,7.580,5.0,0.2,0.91,7.760,6.2 +-0.2,0.91,7.200,16.4,-0.4,0.91,7.430,17.1 +-0.8,0.91,7.960,19.0,-1.0,0.91,8.100,20.3 +-1.6,0.91,7.340,29.8,-1.7,0.91,7.530,32.1 +-2.0,0.91,6.620,33.7,-2.2,0.91,6.790,32.8 +-2.5,0.91,6.210,26.3,-2.6,0.91,6.320,24.5 +-2.9,0.91,5.090,32.4,-3.0,0.91,5.250,29.8 +-3.1,0.91,4.510,29.3,-3.1,0.91,4.750,25.6 +-3.1,0.91,4.150,21.4,-3.1,0.91,4.440,19.4 +-3.4,0.91,3.050,37.3,-3.4,0.91,3.360,33.6 +-3.4,0.91,2.520,25.6,-3.4,0.91,2.840,24.3 +-3.3,0.91,2.520,13.8,-3.3,0.91,2.810,15.0 +-3.0,0.91,1.780,354.6,-3.0,0.91,2.180,358.3 +-1.5,0.91,1.810,342.4,-1.7,0.91,1.830,340.8 +-0.0,0.91,2.230,338.5,-0.2,0.91,2.240,337.4 +1.5,0.91,2.550,334.9,1.3,0.91,2.560,334.7 +2.6,0.91,3.020,328.8,2.4,0.91,3.030,329.5 +3.7,0.91,2.980,342.7,3.5,0.91,3.010,342.5 +4.3,0.91,3.410,357.6,4.1,0.91,3.420,356.6 +4.5,0.91,3.800,7.0,4.3,0.91,3.790,6.0 +4.4,0.91,3.570,5.2,4.2,0.91,3.570,5.3 +3.9,0.91,3.690,40.3,3.8,0.91,3.710,39.1 +3.4,0.91,3.360,45.7,3.3,0.91,3.650,45.0 +2.9,0.91,3.150,52.3,2.9,0.91,3.510,51.0 +2.7,0.91,2.890,39.3,2.7,0.91,3.240,39.6 +2.3,0.91,3.270,41.9,2.4,0.91,3.610,42.8 +1.9,0.91,3.260,49.6,2.0,0.91,3.630,49.2 +2.2,0.91,3.320,41.0,2.2,0.91,3.680,40.0 +2.2,0.92,3.590,35.1,2.3,0.92,4.010,35.6 +1.9,0.92,3.720,32.2,2.0,0.92,4.170,33.4 +1.2,0.92,4.270,33.6,1.3,0.92,4.730,34.4 +-0.1,0.92,4.800,17.5,-0.0,0.92,5.050,19.6 +-0.5,0.92,5.770,24.5,-0.3,0.92,6.090,26.4 +-1.2,0.92,6.420,29.1,-1.1,0.92,6.870,30.8 +-2.0,0.92,6.810,34.0,-1.9,0.92,7.110,37.4 +-2.5,0.92,6.930,38.6,-2.3,0.92,7.290,41.5 +-2.5,0.92,6.220,34.5,-2.4,0.92,6.870,36.0 +-1.4,0.92,5.530,32.5,-1.6,0.92,5.660,32.6 +-0.1,0.92,6.140,35.4,-0.3,0.92,6.210,35.3 +1.1,0.92,6.120,36.7,0.9,0.92,6.170,36.5 +1.9,0.92,5.350,32.5,1.7,0.92,5.390,32.4 +2.4,0.92,5.260,36.1,2.2,0.92,5.300,36.1 +2.6,0.92,4.510,32.1,2.5,0.92,4.540,32.3 +2.7,0.92,4.160,30.2,2.5,0.92,4.180,30.4 +2.7,0.92,4.030,41.0,2.5,0.92,4.070,41.2 +2.5,0.92,3.990,61.4,2.3,0.92,4.010,60.6 +2.3,0.92,3.840,61.6,2.2,0.92,3.780,60.9 +2.1,0.92,2.540,55.8,2.0,0.92,2.750,55.9 +1.8,0.92,2.340,70.1,1.7,0.92,2.580,71.0 +1.6,0.92,1.710,60.6,1.5,0.92,1.960,64.3 +1.3,0.92,1.660,71.5,1.2,0.92,1.890,73.8 +1.1,0.92,1.190,92.3,1.1,0.92,1.450,91.6 +1.0,0.92,0.700,94.3,0.9,0.92,0.940,90.8 +1.0,0.92,1.330,174.2,0.8,0.92,1.390,164.5 +0.8,0.92,2.190,171.5,0.7,0.92,2.280,166.2 +0.6,0.92,3.480,173.5,0.5,0.92,3.590,170.4 +0.3,0.92,5.550,170.9,0.2,0.92,5.700,170.7 +-0.5,0.92,4.400,165.4,-0.6,0.92,4.470,161.6 +-0.8,0.92,3.690,174.8,-1.0,0.92,3.960,171.5 +-0.8,0.92,3.520,159.5,-0.9,0.92,3.150,158.5 +-0.5,0.92,2.520,223.1,-0.7,0.92,2.530,220.3 +0.5,0.92,3.320,182.6,0.3,0.92,3.390,181.8 +1.1,0.92,4.310,172.1,0.9,0.92,4.350,171.9 +1.8,0.92,4.640,178.3,1.6,0.92,4.680,177.9 +2.5,0.92,4.660,183.7,2.3,0.92,4.710,183.5 +3.1,0.92,4.480,187.9,2.9,0.92,4.530,187.9 +3.6,0.92,4.510,191.0,3.4,0.92,4.550,190.7 +3.7,0.92,4.450,196.7,3.5,0.92,4.470,196.4 +3.7,0.92,4.710,193.2,3.5,0.92,4.740,193.3 +3.6,0.92,4.930,198.8,3.4,0.92,4.970,199.6 +3.4,0.92,4.820,192.0,3.2,0.92,4.810,192.4 +3.0,0.92,6.390,197.6,2.8,0.92,6.540,198.1 +2.8,0.92,6.760,201.0,2.6,0.92,7.200,200.9 +2.7,0.92,7.030,205.4,2.6,0.92,7.260,206.2 +2.2,0.91,7.500,208.0,2.1,0.91,7.780,208.3 +1.7,0.91,9.270,220.4,1.6,0.91,9.600,220.2 +1.3,0.91,9.320,217.8,1.2,0.91,9.690,218.3 +0.9,0.91,10.630,225.0,0.9,0.91,10.990,226.2 +0.5,0.91,10.750,228.3,0.5,0.91,11.160,229.1 +0.2,0.91,11.340,228.6,0.2,0.91,11.720,229.2 +-0.0,0.91,10.680,232.6,0.0,0.91,11.260,234.2 +-0.3,0.91,10.880,229.5,-0.1,0.91,11.540,232.3 +-0.5,0.91,10.870,228.8,-0.3,0.91,11.600,231.9 +-0.3,0.91,11.520,231.6,0.0,0.91,12.170,234.7 +-0.2,0.91,10.280,234.7,-0.1,0.91,10.850,236.6 +1.6,0.91,8.330,240.3,1.4,0.91,8.420,240.9 +3.6,0.91,7.760,239.7,3.4,0.91,7.800,240.1 +5.4,0.91,6.430,237.8,5.2,0.91,6.480,238.1 +6.8,0.91,5.830,240.0,6.6,0.91,5.860,240.4 +8.1,0.91,6.760,241.4,7.9,0.91,6.790,241.8 +9.0,0.91,5.750,255.5,8.8,0.91,5.810,255.9 +9.5,0.91,6.340,258.9,9.3,0.91,6.400,259.1 +9.3,0.91,5.510,278.6,9.1,0.91,5.640,278.6 +9.0,0.91,6.540,277.3,8.8,0.91,6.620,277.1 +9.2,0.91,5.800,278.1,9.1,0.91,5.850,282.1 +9.6,0.91,6.310,297.4,9.5,0.91,6.280,299.9 +9.2,0.91,6.230,348.9,9.1,0.91,6.160,351.1 +8.5,0.91,6.160,8.2,8.4,0.91,6.310,9.2 +7.3,0.91,8.160,1.9,7.3,0.91,8.290,5.8 +6.6,0.92,8.850,358.1,6.6,0.92,9.010,359.0 +4.2,0.92,11.970,13.8,4.0,0.92,12.660,16.4 +2.9,0.92,11.900,14.0,2.9,0.92,12.480,17.3 +2.1,0.92,11.640,13.2,2.1,0.92,12.100,17.4 +1.7,0.92,11.020,14.6,1.7,0.92,11.290,18.7 +1.4,0.92,10.820,14.5,1.5,0.92,11.190,18.4 +1.3,0.92,10.730,17.1,1.4,0.92,11.070,20.8 +1.1,0.92,10.350,17.6,1.1,0.92,10.660,21.1 +1.0,0.92,10.090,18.8,1.1,0.92,10.210,21.9 +0.6,0.92,8.010,17.1,0.7,0.92,8.540,19.4 +1.3,0.92,6.020,16.6,1.2,0.92,6.170,17.3 +2.8,0.92,5.490,21.7,2.6,0.92,5.510,21.8 +4.2,0.92,4.910,24.0,4.0,0.92,4.930,23.9 +5.3,0.92,4.140,26.7,5.1,0.92,4.150,26.8 +6.4,0.92,3.790,29.3,6.2,0.92,3.810,29.5 +7.1,0.92,2.990,35.1,6.9,0.92,3.000,35.1 +7.3,0.92,3.060,50.5,7.1,0.92,3.050,50.1 +7.0,0.92,2.890,58.4,6.8,0.92,2.810,58.9 +6.6,0.92,3.110,72.4,6.5,0.92,3.100,71.8 +6.4,0.92,2.700,88.4,6.3,0.92,2.640,89.9 +6.1,0.92,3.180,95.2,6.0,0.92,3.230,95.8 +6.2,0.92,3.740,117.7,6.1,0.92,3.900,119.8 +5.8,0.92,4.470,134.7,5.7,0.92,4.440,135.0 +5.6,0.91,5.980,146.7,5.5,0.91,6.070,148.5 +5.5,0.91,7.570,160.3,5.5,0.91,7.650,160.8 +5.2,0.91,9.000,166.4,5.2,0.91,9.210,167.1 +4.6,0.91,9.720,168.4,4.8,0.91,9.970,168.6 +4.4,0.91,10.230,170.4,4.7,0.91,10.540,170.3 +4.2,0.91,10.210,171.1,4.5,0.91,10.560,171.0 +3.9,0.91,10.070,174.8,4.3,0.91,10.430,173.9 +3.4,0.91,10.240,174.2,3.8,0.91,10.670,173.2 +3.2,0.91,10.110,172.9,3.7,0.91,10.620,172.2 +3.1,0.91,9.620,171.4,3.5,0.91,10.060,170.6 +2.4,0.91,8.960,173.0,2.9,0.91,9.700,172.5 +3.0,0.91,7.170,172.1,3.0,0.91,7.900,171.1 +4.2,0.91,6.440,168.2,4.0,0.91,6.530,168.0 +5.1,0.91,6.170,168.8,4.9,0.91,6.230,168.8 +6.3,0.91,6.490,167.9,6.1,0.91,6.550,167.8 +7.3,0.91,6.150,165.3,7.1,0.91,6.210,165.2 +7.8,0.91,5.990,157.8,7.6,0.91,6.060,157.8 +7.8,0.91,6.450,155.7,7.6,0.91,6.520,155.8 +7.4,0.91,6.360,151.1,7.2,0.91,6.560,151.2 +6.9,0.91,5.600,147.4,6.7,0.91,6.090,148.6 +6.3,0.91,7.530,146.1,6.2,0.91,7.990,146.7 +6.1,0.91,9.330,145.9,6.0,0.91,9.920,146.3 +5.9,0.91,10.050,152.1,5.8,0.91,10.720,152.4 +5.7,0.91,10.070,154.8,5.6,0.91,10.770,154.9 +5.2,0.91,9.370,153.9,5.2,0.91,10.260,154.4 +4.9,0.91,9.880,158.5,4.9,0.91,10.810,159.4 +4.7,0.91,10.480,164.9,4.7,0.91,11.340,166.1 +4.2,0.91,9.550,168.0,4.3,0.91,10.460,169.6 +3.7,0.91,8.920,167.6,3.8,0.91,9.750,169.6 +3.9,0.91,9.240,176.3,4.0,0.91,9.730,178.2 +5.0,0.91,7.800,186.9,5.3,0.91,8.380,187.4 +4.5,0.91,6.230,173.8,4.7,0.91,6.780,174.2 +5.0,0.91,5.390,165.0,5.3,0.91,5.820,165.3 +5.0,0.91,3.720,152.5,5.2,0.91,4.030,154.3 +4.3,0.91,3.070,132.1,4.4,0.91,3.530,137.3 +4.7,0.91,3.020,116.5,5.0,0.91,3.430,120.5 +4.7,0.91,3.150,98.0,4.8,0.91,3.560,103.7 +3.9,0.91,3.110,83.0,4.1,0.91,3.410,88.7 +4.1,0.91,4.050,78.4,4.3,0.91,4.610,82.8 +4.2,0.91,3.710,73.2,4.4,0.91,4.350,80.0 +4.0,0.91,4.220,61.5,4.0,0.91,4.590,67.3 +3.7,0.91,3.970,46.2,3.6,0.91,4.210,50.3 +3.6,0.91,4.570,46.4,3.6,0.91,4.900,49.2 +3.7,0.91,4.640,37.4,3.7,0.91,4.920,40.4 +3.7,0.91,5.400,41.0,3.6,0.91,5.600,42.6 +3.7,0.91,7.110,37.4,3.6,0.91,7.330,38.6 +3.6,0.91,7.980,36.2,3.5,0.91,8.120,37.4 +3.5,0.91,7.990,37.4,3.3,0.91,8.180,37.9 +3.5,0.91,8.880,32.4,3.4,0.91,9.270,33.4 +3.5,0.91,9.180,29.1,3.5,0.91,9.640,30.2 +3.7,0.91,9.380,30.2,3.7,0.91,9.860,31.4 +3.9,0.91,8.990,34.7,3.8,0.91,9.390,35.5 +4.0,0.91,9.220,21.4,4.0,0.91,9.590,23.4 +4.1,0.91,10.750,24.9,4.1,0.91,11.250,26.5 +4.2,0.91,8.770,29.6,4.1,0.91,9.140,29.9 +4.0,0.91,8.760,21.3,4.0,0.91,9.140,22.0 +3.9,0.91,9.460,23.4,3.8,0.91,9.920,23.6 +4.1,0.91,8.990,18.9,4.0,0.91,9.450,19.4 +3.7,0.91,10.210,23.1,3.5,0.91,10.630,23.8 +3.6,0.91,10.400,17.2,3.4,0.91,10.760,18.3 +3.3,0.91,7.680,18.1,3.1,0.91,7.930,18.8 +2.6,0.91,8.510,6.7,2.4,0.91,8.760,8.1 +2.3,0.91,10.140,8.3,2.2,0.91,10.530,9.7 +2.5,0.91,10.130,11.7,2.4,0.91,10.590,12.6 +2.7,0.91,10.120,16.3,2.6,0.91,10.610,17.6 +2.9,0.91,11.070,14.4,2.8,0.91,11.660,15.6 +3.1,0.91,9.630,21.2,3.0,0.91,10.100,22.2 +3.5,0.91,9.830,31.8,3.4,0.91,10.230,32.4 +3.7,0.91,8.160,23.8,3.6,0.91,8.530,24.5 +3.9,0.91,7.070,22.8,3.8,0.91,7.360,23.4 +4.0,0.91,6.400,7.4,3.9,0.91,6.660,8.6 +4.0,0.91,5.600,12.5,3.9,0.91,5.900,13.3 +4.1,0.91,4.580,4.0,4.1,0.91,4.770,7.8 +4.2,0.91,3.250,340.7,4.2,0.91,3.250,348.0 +4.7,0.91,3.380,357.9,5.0,0.91,3.130,2.2 +3.9,0.91,4.280,354.3,4.0,0.91,4.000,357.2 +4.4,0.91,2.810,322.9,4.6,0.91,2.680,325.3 +4.8,0.91,1.810,336.7,5.0,0.91,1.600,331.3 +6.0,0.91,1.970,241.9,6.1,0.91,2.140,232.6 +5.9,0.91,2.750,242.4,6.0,0.91,2.840,236.4 +5.4,0.91,5.050,249.3,5.5,0.91,5.340,247.9 +4.9,0.91,5.640,263.3,5.0,0.91,6.010,265.5 +5.1,0.91,4.970,288.9,5.0,0.91,5.500,289.0 +5.6,0.91,4.270,263.7,5.5,0.91,4.790,266.0 +6.7,0.91,6.000,259.2,6.5,0.91,6.050,259.7 +7.5,0.91,5.310,276.4,7.3,0.91,5.380,276.4 +9.3,0.91,5.940,276.7,9.1,0.91,6.060,276.5 +9.9,0.91,6.920,268.9,9.7,0.91,7.000,268.9 +10.2,0.91,5.790,264.2,10.0,0.91,5.880,264.3 +10.7,0.91,5.520,246.8,10.5,0.91,5.610,246.9 +10.8,0.90,6.650,238.0,10.6,0.90,6.850,238.3 +10.8,0.90,6.580,232.9,10.7,0.90,6.730,232.8 +11.2,0.90,9.280,226.2,11.1,0.90,9.520,226.4 +11.8,0.90,11.150,216.2,11.9,0.90,11.390,216.8 +10.5,0.90,12.670,216.0,10.7,0.90,13.220,219.3 +11.4,0.90,13.400,222.1,11.7,0.90,13.790,223.1 +11.6,0.90,13.840,215.6,12.2,0.90,14.530,215.7 +11.0,0.90,14.590,212.5,11.4,0.90,15.760,215.2 +9.6,0.90,16.710,215.8,10.0,0.90,17.930,217.7 +10.9,0.90,19.540,215.3,11.2,0.90,20.540,215.4 +11.3,0.90,19.370,210.4,11.5,0.90,20.420,210.2 +9.7,0.90,19.010,201.8,10.0,0.90,20.160,202.7 +9.7,0.90,18.720,202.3,10.1,0.90,20.050,203.1 +9.1,0.90,18.640,201.0,9.3,0.90,19.970,202.1 +8.5,0.90,17.890,201.0,8.8,0.90,19.260,202.2 +8.3,0.90,17.210,200.2,8.5,0.90,18.340,201.0 +9.3,0.90,17.990,202.3,9.4,0.90,18.730,202.9 +10.1,0.90,16.470,202.8,10.0,0.90,17.270,203.4 +11.6,0.90,12.870,202.4,11.5,0.90,13.080,202.9 +13.3,0.90,11.630,201.7,13.1,0.90,11.740,202.0 +14.9,0.90,10.200,203.2,14.7,0.90,10.320,203.5 +16.1,0.90,11.080,204.9,16.0,0.90,11.170,205.1 +17.5,0.90,9.630,205.9,17.3,0.90,9.760,206.2 +17.4,0.90,8.610,199.8,17.2,0.90,8.780,200.2 +16.9,0.90,9.880,198.9,16.8,0.90,10.520,200.8 +16.7,0.90,12.630,201.6,16.6,0.90,13.330,202.2 +16.0,0.90,11.680,197.1,16.0,0.90,12.250,198.7 +15.3,0.90,11.130,196.3,15.3,0.90,11.860,198.0 +14.8,0.90,10.670,201.7,14.8,0.90,11.340,203.6 +14.3,0.90,9.410,205.8,14.4,0.90,10.010,207.7 +14.1,0.90,7.940,215.5,14.2,0.90,8.260,219.2 +14.7,0.90,5.490,255.0,14.9,0.90,5.820,267.9 +13.1,0.90,6.930,328.9,13.2,0.90,7.190,326.1 +12.8,0.90,8.050,348.3,12.7,0.90,8.340,350.7 +10.1,0.90,10.410,10.1,9.9,0.90,10.640,10.5 +8.4,0.90,7.790,18.1,8.3,0.90,8.020,18.8 +7.4,0.90,7.340,29.2,7.2,0.90,7.540,29.4 +6.4,0.90,8.530,29.4,6.3,0.90,8.990,29.3 +6.0,0.90,9.190,22.0,5.8,0.90,9.630,23.0 +5.8,0.90,9.450,28.5,5.6,0.90,9.880,29.2 +5.4,0.90,10.320,32.8,5.2,0.90,10.640,33.1 +5.0,0.90,9.560,23.7,4.9,0.90,9.650,23.9 +5.1,0.90,9.570,32.9,5.0,0.90,9.630,33.0 +5.7,0.90,8.610,22.0,5.5,0.90,8.670,22.1 +6.1,0.90,8.470,14.8,5.9,0.90,8.510,14.9 +6.3,0.90,7.680,11.0,6.1,0.90,7.720,10.8 +6.7,0.90,7.920,12.3,6.5,0.90,7.960,12.2 +6.6,0.90,8.120,16.8,6.4,0.90,8.180,16.6 +6.1,0.90,8.090,19.4,5.9,0.90,8.150,19.4 +5.0,0.90,8.960,23.6,4.9,0.90,9.290,23.4 +3.6,0.90,9.880,19.1,3.4,0.90,10.390,19.4 +2.4,0.90,9.680,18.0,2.3,0.90,10.140,18.4 +1.3,0.90,9.250,30.0,1.1,0.90,9.820,29.5 +-0.5,0.90,11.410,30.0,-0.7,0.90,11.670,29.0 +-1.6,0.90,10.850,29.9,-1.8,0.90,11.460,29.9 +-2.5,0.91,10.580,27.9,-2.6,0.91,11.200,28.5 +-3.2,0.91,11.090,26.0,-3.4,0.91,11.670,27.0 +-3.9,0.91,11.090,28.0,-4.1,0.91,11.630,28.6 +-4.3,0.91,10.350,26.4,-4.5,0.91,10.770,26.6 +-4.4,0.91,8.390,17.1,-4.6,0.91,8.680,16.7 +-4.8,0.91,8.640,9.2,-5.0,0.91,8.750,9.3 +-5.2,0.91,9.160,5.2,-5.4,0.91,9.270,5.3 +-5.4,0.91,9.230,13.7,-5.6,0.91,9.360,13.8 +-5.5,0.91,8.850,13.7,-5.7,0.91,8.990,13.9 +-5.2,0.91,7.750,13.5,-5.4,0.91,7.800,13.5 +-4.4,0.91,8.340,15.3,-4.5,0.91,8.390,15.2 +-3.5,0.91,8.490,18.1,-3.7,0.91,8.530,17.9 +-2.5,0.91,7.890,19.6,-2.7,0.91,7.940,19.6 +-1.6,0.91,7.230,21.4,-1.8,0.91,7.270,21.4 +-0.8,0.91,6.930,21.2,-1.1,0.91,6.970,21.2 +-0.5,0.91,6.620,26.5,-0.7,0.91,6.660,26.4 +-0.4,0.91,6.890,32.3,-0.6,0.91,6.940,32.2 +-0.8,0.91,6.790,35.4,-1.0,0.91,6.870,35.4 +-1.2,0.91,7.820,30.7,-1.4,0.91,7.780,31.3 +-1.8,0.91,8.080,46.0,-1.9,0.91,8.490,47.1 +-2.4,0.91,9.730,50.9,-2.4,0.91,10.080,51.7 +-3.2,0.91,8.620,50.9,-3.3,0.91,9.130,51.8 +-3.6,0.91,8.980,48.9,-3.7,0.91,9.590,49.6 +-4.0,0.91,9.330,50.9,-4.2,0.91,9.820,52.1 +-4.6,0.91,9.590,53.9,-4.8,0.91,10.080,55.1 +-5.1,0.91,9.440,54.8,-5.3,0.91,9.870,55.8 +-5.6,0.91,8.890,54.2,-5.8,0.91,9.170,55.0 +-6.0,0.91,8.520,53.7,-6.2,0.91,8.830,54.5 +-6.3,0.91,7.670,47.1,-6.4,0.91,7.950,47.9 +-6.6,0.91,6.960,39.2,-6.8,0.91,7.100,40.3 +-7.0,0.91,7.080,40.0,-7.2,0.91,7.220,40.9 +-7.3,0.91,6.930,35.5,-7.5,0.91,7.180,36.8 +-7.7,0.91,7.250,33.2,-7.9,0.91,7.470,34.5 +-7.5,0.91,6.930,36.5,-7.7,0.91,6.950,37.0 +-6.7,0.91,6.910,39.7,-6.9,0.91,6.930,39.9 +-5.5,0.91,6.960,41.4,-5.7,0.91,6.990,41.6 +-4.3,0.91,6.700,44.0,-4.5,0.91,6.720,44.2 +-3.1,0.91,6.500,46.9,-3.3,0.91,6.520,47.2 +-2.4,0.91,6.360,48.2,-2.6,0.91,6.380,48.6 +-1.9,0.91,6.100,48.5,-2.1,0.91,6.130,48.9 +-1.8,0.91,6.350,47.9,-1.9,0.91,6.390,48.4 +-1.9,0.91,6.430,53.0,-2.0,0.91,6.570,53.5 +-2.4,0.91,7.960,55.4,-2.5,0.91,7.880,55.2 +-2.8,0.91,8.160,57.4,-2.9,0.91,8.460,58.8 +-3.5,0.91,8.060,58.6,-3.5,0.91,8.510,58.7 +-3.5,0.91,7.990,55.4,-3.5,0.91,8.150,55.7 +-3.6,0.91,7.690,54.9,-3.6,0.91,8.070,54.5 +-4.0,0.91,6.940,54.1,-3.8,0.91,7.460,54.3 +-4.2,0.91,6.060,54.4,-4.0,0.91,6.620,55.0 +-4.7,0.91,5.380,46.4,-4.5,0.91,5.780,48.6 +-4.7,0.91,5.070,45.5,-4.5,0.91,5.470,48.3 +-5.5,0.91,5.120,35.8,-5.5,0.91,5.330,41.4 +-5.9,0.91,5.300,23.7,-5.8,0.91,5.440,30.0 +-6.3,0.91,4.990,25.1,-6.1,0.91,5.270,31.3 +-6.3,0.91,5.530,13.8,-6.2,0.91,5.890,18.7 +-6.7,0.91,6.270,4.9,-6.8,0.91,6.560,7.0 +-7.0,0.91,6.250,8.0,-7.0,0.91,6.610,10.5 +-6.6,0.91,6.330,10.4,-6.8,0.91,6.410,10.7 +-5.5,0.91,5.710,10.1,-5.7,0.91,5.740,10.3 +-4.0,0.91,6.870,7.0,-4.2,0.91,6.910,7.1 +-2.7,0.91,7.640,4.0,-2.9,0.91,7.700,4.2 +-1.8,0.91,7.310,2.7,-2.0,0.91,7.360,2.9 +-1.0,0.91,7.540,0.8,-1.2,0.91,7.620,0.7 +-0.6,0.91,7.550,358.7,-0.8,0.91,7.640,358.4 +-0.5,0.91,8.300,355.4,-0.7,0.91,8.350,355.4 +-0.8,0.91,7.700,349.9,-0.9,0.91,7.900,350.1 +-0.9,0.91,8.530,351.4,-1.1,0.91,8.500,351.6 +-1.1,0.91,7.620,352.9,-1.2,0.91,7.810,353.2 +-1.2,0.91,7.530,357.5,-1.3,0.91,7.730,356.9 +-1.2,0.91,6.960,358.1,-1.4,0.91,7.170,358.3 +-1.3,0.91,6.590,353.4,-1.5,0.91,6.770,352.9 +-1.4,0.91,6.690,343.1,-1.5,0.91,6.990,344.0 +-1.2,0.91,6.790,341.2,-1.3,0.91,6.960,342.6 +-1.0,0.91,6.500,335.8,-1.1,0.91,6.590,337.6 +-0.9,0.91,6.210,326.0,-0.9,0.91,6.460,328.9 +-1.4,0.91,5.360,311.1,-1.2,0.91,5.650,315.2 +-1.2,0.91,5.790,298.9,-1.2,0.91,5.790,301.1 +-1.7,0.91,7.740,298.7,-1.6,0.91,7.740,301.4 +-1.9,0.91,9.030,302.7,-1.7,0.91,8.910,306.2 +-1.3,0.91,8.740,306.4,-1.1,0.91,8.640,309.2 +-1.3,0.91,9.420,295.4,-1.1,0.91,9.080,298.9 +-1.0,0.91,8.270,289.5,-0.7,0.91,8.830,291.8 +0.4,0.91,6.210,281.9,0.2,0.91,6.490,282.6 +1.4,0.91,7.410,291.3,1.2,0.91,7.500,291.5 +2.9,0.91,7.620,299.8,2.8,0.91,7.720,300.0 +4.3,0.91,8.490,304.8,4.1,0.91,8.610,304.9 +5.3,0.91,8.810,310.6,5.1,0.91,8.960,310.6 +6.4,0.91,9.160,306.1,6.2,0.91,9.320,306.3 +6.8,0.91,9.820,326.3,6.6,0.91,10.030,326.2 +7.3,0.91,8.900,322.6,7.1,0.91,9.240,322.4 +7.8,0.91,11.690,322.1,7.7,0.91,12.290,322.6 +7.7,0.91,10.740,329.5,7.7,0.91,11.260,332.0 +8.2,0.91,11.650,334.1,8.2,0.91,11.830,335.6 +8.2,0.91,11.510,335.7,8.1,0.91,11.500,337.0 +8.8,0.91,13.760,339.0,8.8,0.91,13.980,340.7 +8.2,0.91,13.390,343.2,8.4,0.91,13.620,347.4 +7.4,0.91,12.570,340.0,7.9,0.91,12.890,345.7 +6.9,0.92,12.070,341.2,7.4,0.92,12.570,347.1 +7.9,0.92,11.420,348.5,8.2,0.92,11.620,353.4 +7.6,0.92,10.750,345.3,7.9,0.92,10.750,349.3 +7.4,0.92,11.330,345.5,7.7,0.92,11.410,348.9 +6.2,0.92,11.260,347.4,6.5,0.92,11.680,351.7 +6.0,0.92,12.460,355.2,6.2,0.92,12.750,359.2 +5.1,0.92,11.870,3.6,5.3,0.92,12.260,7.8 +4.3,0.92,10.420,0.4,4.4,0.92,10.720,5.1 +3.9,0.92,8.230,357.2,3.9,0.92,8.660,359.8 +4.1,0.92,7.720,356.9,4.0,0.92,8.100,358.3 +5.1,0.92,6.710,8.8,5.0,0.92,6.760,8.9 +6.5,0.92,6.060,9.5,6.3,0.92,6.090,9.7 +7.5,0.92,5.690,9.0,7.3,0.92,5.710,9.2 +8.3,0.92,5.200,11.7,8.1,0.92,5.230,11.6 +8.8,0.92,4.780,17.2,8.6,0.92,4.790,16.8 +9.0,0.92,3.970,23.9,8.8,0.92,3.970,23.9 +8.9,0.92,4.230,26.5,8.7,0.92,4.250,26.8 +8.2,0.92,4.460,48.1,8.0,0.92,4.460,47.2 +8.0,0.92,4.060,42.3,8.0,0.92,4.280,43.0 +7.6,0.92,2.660,48.0,7.6,0.92,3.020,47.3 +7.6,0.92,3.040,58.5,7.6,0.92,3.330,57.8 +7.8,0.92,2.310,70.6,7.8,0.92,2.570,68.8 +7.9,0.92,2.450,88.4,7.9,0.92,2.610,84.5 +7.8,0.92,2.710,104.1,7.8,0.92,2.710,103.5 +8.1,0.92,3.290,133.5,8.0,0.92,3.330,136.8 +8.1,0.92,3.380,149.2,8.1,0.92,3.310,151.9 +7.9,0.92,4.730,159.0,8.0,0.92,4.620,161.4 +7.8,0.92,6.390,165.2,8.0,0.92,6.220,166.2 +7.7,0.92,7.500,173.8,8.0,0.92,7.280,174.0 +7.9,0.92,7.840,179.9,8.1,0.92,7.650,180.0 +7.5,0.92,9.280,180.1,7.8,0.92,9.320,180.1 +7.3,0.92,10.240,183.8,7.8,0.92,10.410,183.7 +7.2,0.92,11.100,185.2,7.7,0.92,11.550,184.5 +7.0,0.92,10.520,187.5,7.4,0.92,11.320,186.7 +7.5,0.92,9.030,188.9,7.4,0.92,9.320,188.8 +8.7,0.92,8.920,191.3,8.5,0.92,9.030,191.3 +10.0,0.92,8.620,197.3,9.8,0.92,8.700,197.6 +11.0,0.92,8.700,200.2,10.8,0.92,8.780,200.3 +11.6,0.92,9.080,200.7,11.4,0.92,9.200,201.0 +12.5,0.92,9.040,200.7,12.3,0.92,9.190,201.0 +12.7,0.91,8.500,202.0,12.6,0.91,8.830,202.4 +12.5,0.91,10.560,201.8,12.3,0.91,10.760,202.4 +12.3,0.91,12.120,204.3,12.2,0.91,12.140,204.7 +11.6,0.91,12.940,209.8,11.6,0.91,13.430,210.0 +10.8,0.91,13.710,209.1,11.0,0.91,14.180,209.4 +10.1,0.91,14.910,209.7,10.2,0.91,15.540,209.7 +9.2,0.91,15.100,209.4,9.3,0.91,15.840,209.5 +8.4,0.91,15.100,207.0,8.6,0.91,15.900,207.7 +8.0,0.91,15.190,206.4,8.2,0.91,16.070,207.3 +7.8,0.91,15.300,207.6,8.0,0.91,16.240,208.5 +7.6,0.91,15.050,206.9,7.8,0.91,15.930,208.0 +7.0,0.91,14.290,204.5,7.1,0.91,14.930,206.2 +6.6,0.91,13.630,205.6,6.8,0.91,14.330,207.7 +6.4,0.91,13.960,210.0,6.7,0.91,14.860,211.7 +6.5,0.91,14.700,212.3,6.7,0.91,15.710,213.9 +6.5,0.91,15.680,215.6,6.8,0.91,16.560,217.1 +6.8,0.91,13.430,217.2,7.0,0.91,13.960,218.9 +7.6,0.91,10.970,218.4,7.6,0.91,11.700,220.3 +9.4,0.91,8.400,224.8,9.3,0.91,8.460,225.6 +11.6,0.91,7.400,231.7,11.5,0.91,7.440,232.4 +13.8,0.91,6.510,236.6,13.6,0.91,6.560,237.2 +15.1,0.91,6.030,240.7,14.9,0.91,6.090,241.4 +15.6,0.91,5.020,259.4,15.4,0.91,5.080,259.4 +15.5,0.91,5.090,266.8,15.3,0.91,5.170,266.7 +15.2,0.91,5.810,265.7,15.0,0.91,5.930,265.0 +15.0,0.91,5.140,289.9,14.8,0.91,5.180,289.1 +14.6,0.91,5.130,294.2,14.6,0.91,5.380,294.0 +12.6,0.91,6.290,348.9,12.6,0.91,5.920,347.9 +12.5,0.91,4.340,356.6,12.5,0.91,4.230,353.8 +12.1,0.91,4.590,1.1,12.0,0.91,4.620,2.6 +11.7,0.91,5.720,10.8,11.7,0.91,5.830,12.4 +11.5,0.91,5.370,13.3,11.5,0.91,5.450,14.8 +12.2,0.91,5.310,11.9,12.2,0.91,5.400,13.7 +11.2,0.91,5.400,24.3,11.2,0.91,5.430,25.3 +10.4,0.91,4.620,16.8,10.4,0.91,4.720,19.6 +10.4,0.91,5.160,11.6,10.5,0.91,5.130,15.4 +9.8,0.91,5.350,17.0,9.9,0.91,5.450,19.7 +8.2,0.91,5.110,17.0,8.5,0.91,5.230,17.9 +7.3,0.91,4.850,19.7,7.6,0.91,5.000,21.0 +7.4,0.91,4.320,17.1,7.8,0.91,4.370,18.3 +7.8,0.91,2.850,14.6,8.1,0.91,2.960,20.1 +8.6,0.91,2.380,14.5,9.1,0.91,2.650,24.2 +9.7,0.91,1.220,349.7,9.6,0.91,1.190,351.9 +11.7,0.91,0.850,352.1,11.5,0.91,0.790,349.3 +13.3,0.91,0.690,202.9,13.1,0.91,0.720,206.8 +14.7,0.91,1.260,222.3,14.6,0.91,1.320,222.3 +15.6,0.91,2.270,225.5,15.4,0.91,2.290,225.6 +15.5,0.91,2.930,224.3,15.4,0.91,2.920,224.9 +15.3,0.91,3.610,212.3,15.1,0.91,3.580,212.4 +14.7,0.91,4.400,205.4,14.6,0.91,4.120,208.6 +14.6,0.91,3.630,226.1,14.5,0.91,3.610,229.8 +15.0,0.91,3.500,227.2,14.9,0.91,3.410,230.9 +14.8,0.91,3.470,217.8,14.7,0.91,3.420,221.4 +14.7,0.91,4.220,207.2,14.8,0.91,4.130,211.6 +14.8,0.91,4.610,199.6,14.8,0.91,4.480,203.0 +15.3,0.91,4.460,206.3,15.4,0.91,4.370,209.4 +15.0,0.91,3.720,198.8,15.2,0.91,3.470,202.8 +15.0,0.91,3.570,207.6,15.2,0.91,3.240,212.2 +14.7,0.91,3.430,208.4,15.0,0.91,2.970,211.7 +4.6,0.91,8.030,22.8,5.0,0.91,8.240,23.1 +1.3,0.91,9.790,28.4,1.2,0.91,10.170,31.7 +-0.1,0.91,10.360,25.4,-0.2,0.91,10.840,27.8 +-1.2,0.91,11.100,25.5,-1.4,0.91,11.530,27.4 +-2.1,0.91,11.010,25.0,-2.3,0.91,11.450,27.1 +-2.3,0.91,9.640,30.6,-2.4,0.91,9.750,31.0 +-1.2,0.91,8.310,28.1,-1.4,0.91,8.310,28.3 +-0.1,0.91,8.160,29.7,-0.2,0.91,8.160,29.8 +1.4,0.91,7.410,27.0,1.2,0.91,7.410,27.0 +2.7,0.91,6.390,26.2,2.5,0.91,6.400,26.2 +3.8,0.91,5.710,26.4,3.6,0.91,5.720,26.5 +4.5,0.91,5.060,28.5,4.4,0.91,5.060,28.4 +4.9,0.91,4.370,30.3,4.7,0.91,4.370,30.1 +4.9,0.91,3.980,34.0,4.7,0.91,3.970,33.7 +4.5,0.91,3.610,39.6,4.3,0.91,3.540,39.5 +4.5,0.91,2.550,38.1,4.5,0.91,2.480,40.4 +4.4,0.91,2.310,54.0,4.4,0.91,2.550,55.3 +4.5,0.91,2.450,54.7,4.6,0.91,2.530,56.7 +4.8,0.91,1.780,71.8,5.0,0.91,1.590,80.0 +5.1,0.91,1.370,91.8,5.3,0.91,1.110,105.3 +6.0,0.91,0.600,200.8,6.3,0.91,1.010,227.0 +6.2,0.91,1.120,209.8,6.4,0.91,1.480,221.2 +6.7,0.91,2.030,223.7,7.0,0.91,2.410,225.9 +7.1,0.91,1.510,226.7,7.2,0.91,1.900,224.3 +7.4,0.91,1.950,204.4,7.4,0.91,2.280,204.5 +7.7,0.91,3.240,191.6,7.8,0.91,3.370,193.9 +8.1,0.91,4.140,189.8,8.4,0.91,4.190,192.4 +8.7,0.91,5.590,192.2,8.9,0.91,5.670,194.4 +8.5,0.91,6.340,192.9,8.8,0.91,6.450,195.5 +7.9,0.91,8.020,193.9,8.2,0.91,8.010,196.9 +7.5,0.91,8.030,199.2,7.6,0.91,8.790,200.9 +8.4,0.91,7.560,207.7,8.3,0.91,7.730,208.7 +10.6,0.91,7.630,220.0,10.4,0.91,7.690,220.1 +12.1,0.91,8.800,217.5,11.9,0.91,8.870,217.7 +13.1,0.91,8.200,218.1,13.0,0.91,8.290,218.4 +14.0,0.91,8.130,217.6,13.8,0.91,8.200,217.8 +14.3,0.91,7.980,215.1,14.1,0.91,8.090,215.4 +14.6,0.91,8.650,208.2,14.4,0.91,8.950,208.5 +14.2,0.91,11.070,212.3,14.1,0.91,11.440,212.5 +13.6,0.91,11.910,212.5,13.6,0.91,12.190,213.1 +13.1,0.91,10.910,215.0,13.1,0.91,11.140,215.8 +12.6,0.91,13.070,216.3,12.6,0.91,13.680,216.5 +12.2,0.91,13.420,214.4,12.2,0.91,13.960,214.2 +11.7,0.91,13.570,215.7,11.8,0.91,14.190,215.6 +11.4,0.91,13.620,213.6,11.5,0.91,14.350,214.4 +11.1,0.91,13.960,219.6,11.2,0.91,14.910,220.9 +11.0,0.91,14.800,219.8,11.2,0.91,15.770,220.5 +10.8,0.91,14.570,220.0,11.1,0.91,15.610,220.8 +10.9,0.91,15.010,220.8,11.2,0.91,16.100,221.4 +11.0,0.91,14.780,222.9,11.3,0.91,15.750,223.3 +11.1,0.91,14.430,225.2,11.5,0.91,15.250,225.6 +10.6,0.91,13.610,222.5,10.9,0.91,14.340,223.6 +10.1,0.91,11.730,228.2,10.9,0.91,12.420,227.8 +8.4,0.91,11.270,227.0,8.5,0.91,11.690,227.1 +8.8,0.91,10.960,224.9,8.7,0.91,11.210,225.2 +9.4,0.91,9.030,226.4,9.2,0.91,9.150,226.8 +11.3,0.91,8.070,228.8,11.2,0.91,8.050,229.9 +14.2,0.91,8.020,226.6,14.1,0.91,8.050,227.1 +15.7,0.91,8.060,229.7,15.6,0.91,8.070,230.2 +17.0,0.91,7.730,226.6,16.8,0.91,7.740,227.1 +17.5,0.91,7.800,221.5,17.3,0.91,7.840,221.9 +17.6,0.91,8.280,212.2,17.4,0.91,8.510,213.5 +17.9,0.91,10.690,208.0,17.8,0.91,11.000,209.9 +19.0,0.91,12.090,213.7,18.9,0.91,12.320,214.7 +19.1,0.91,13.190,220.8,19.3,0.91,13.580,221.7 +18.4,0.91,13.550,224.8,18.7,0.91,13.730,225.8 +17.5,0.91,14.310,227.8,17.9,0.91,14.630,229.2 +17.3,0.91,14.480,232.1,17.9,0.91,14.830,233.1 +16.6,0.91,15.400,228.5,17.3,0.91,16.140,229.3 +15.7,0.91,15.030,228.6,16.5,0.91,15.930,230.4 +15.7,0.91,16.330,231.4,16.5,0.91,17.280,232.5 +15.4,0.91,16.310,230.0,16.0,0.91,17.160,231.2 +14.5,0.91,15.900,231.0,15.1,0.91,16.850,232.0 +14.8,0.91,14.290,233.8,15.4,0.91,15.010,234.8 +14.0,0.91,12.970,234.7,14.5,0.91,13.690,235.5 +14.3,0.91,14.020,238.3,14.8,0.91,14.630,238.3 +14.4,0.91,13.000,243.2,15.1,0.91,13.520,243.6 +13.0,0.91,9.680,256.5,13.6,0.91,10.370,257.8 +13.6,0.91,6.620,265.0,13.7,0.91,7.710,267.2 +15.2,0.91,5.460,257.0,15.2,0.91,5.590,259.8 +17.3,0.91,4.330,266.4,17.2,0.91,4.370,266.9 +18.6,0.91,3.590,252.5,18.4,0.91,3.620,252.8 +19.6,0.91,3.830,233.8,19.4,0.91,3.860,234.3 +20.1,0.91,3.750,227.8,19.9,0.91,3.770,228.6 +20.4,0.91,3.970,214.1,20.2,0.91,3.970,214.6 +20.0,0.91,3.580,212.1,19.8,0.91,3.610,212.4 +19.4,0.91,2.160,170.6,19.4,0.91,2.560,182.2 +21.0,0.91,5.130,195.5,21.2,0.91,5.810,199.6 +20.9,0.91,10.950,201.5,21.0,0.91,11.870,207.1 +19.6,0.91,14.220,217.9,19.7,0.91,15.070,219.3 +18.9,0.91,14.450,225.6,19.1,0.91,15.420,226.2 +18.4,0.91,14.420,225.8,18.6,0.91,15.570,226.7 +17.0,0.91,14.720,221.8,17.2,0.91,15.860,222.7 +16.6,0.91,14.810,223.4,16.8,0.91,15.860,224.3 +16.5,0.91,15.520,225.8,16.6,0.91,16.550,226.4 +16.0,0.91,14.980,228.8,16.1,0.91,15.940,229.3 +15.9,0.91,14.510,230.6,16.0,0.91,15.440,231.3 +15.6,0.91,12.350,238.7,15.8,0.91,13.320,239.9 +15.4,0.91,12.740,247.3,15.6,0.91,13.380,249.3 +15.7,0.91,10.130,261.0,16.5,0.91,9.810,266.3 +16.2,0.91,7.290,277.2,17.1,0.91,6.780,287.6 +9.6,0.91,5.670,19.9,10.0,0.91,5.400,18.1 +6.8,0.91,5.480,7.7,6.7,0.91,5.420,7.2 +6.8,0.91,6.130,16.5,6.6,0.91,6.100,16.1 +8.0,0.91,6.230,18.4,7.8,0.91,6.220,18.1 +8.8,0.91,6.220,21.3,8.6,0.91,6.210,21.4 +9.3,0.91,6.200,22.5,9.1,0.91,6.190,22.4 +9.5,0.91,5.810,19.7,9.3,0.91,5.800,19.7 +9.4,0.91,5.330,21.6,9.2,0.91,5.320,21.6 +9.1,0.91,4.920,25.3,8.9,0.91,4.930,25.2 +8.7,0.91,5.170,28.6,8.5,0.91,5.170,28.2 +8.3,0.91,4.470,28.2,8.2,0.91,4.470,27.9 +8.2,0.91,4.220,30.7,8.0,0.91,4.230,30.7 +7.9,0.91,4.580,30.7,7.8,0.91,4.610,30.8 +7.5,0.91,4.270,43.1,7.4,0.91,4.360,43.8 +7.3,0.91,4.020,49.1,7.2,0.91,4.180,50.1 +6.9,0.91,4.880,50.1,6.7,0.91,4.840,51.3 +6.5,0.91,3.900,53.8,6.3,0.91,3.440,48.0 +6.0,0.91,3.040,41.7,5.8,0.91,2.900,38.4 +5.4,0.91,2.960,36.2,5.4,0.91,2.950,31.7 +5.1,0.91,2.400,27.1,5.2,0.91,2.460,21.2 +5.0,0.91,2.730,22.3,5.3,0.91,2.850,15.9 +4.7,0.91,2.810,25.1,5.1,0.91,2.910,18.2 +4.7,0.91,2.750,18.8,5.2,0.91,2.900,13.7 +4.9,0.91,2.270,29.8,5.5,0.91,2.260,24.7 +5.9,0.91,0.780,63.3,6.8,0.91,0.600,83.1 +6.6,0.91,1.290,116.3,6.9,0.91,1.450,140.6 +9.6,0.91,1.980,139.6,9.4,0.91,2.070,143.3 +12.3,0.91,1.840,146.7,12.1,0.91,1.940,149.4 +13.7,0.91,3.930,165.4,13.5,0.91,3.920,165.2 +14.5,0.91,4.960,162.3,14.3,0.91,4.990,162.6 +15.1,0.91,5.790,160.6,14.9,0.91,5.840,160.8 +15.6,0.91,6.090,154.6,15.4,0.91,6.170,154.7 +14.2,0.91,6.930,168.6,14.0,0.91,7.010,168.8 +13.4,0.91,7.080,179.4,13.2,0.91,7.400,178.0 +13.4,0.91,7.330,166.7,13.2,0.91,7.720,165.7 +13.0,0.91,7.810,149.8,13.0,0.91,8.380,150.6 +13.2,0.91,9.590,149.8,13.1,0.91,10.130,150.7 +13.2,0.91,13.100,161.6,13.1,0.91,13.690,161.9 +13.4,0.91,15.840,175.2,13.4,0.91,16.380,175.6 +13.7,0.91,17.070,178.3,13.7,0.91,17.640,178.5 +13.6,0.91,17.850,177.3,13.5,0.91,18.410,177.4 +13.7,0.91,19.620,179.3,13.7,0.91,20.200,179.5 +13.6,0.91,18.480,186.6,13.5,0.91,19.040,186.7 +13.5,0.91,18.220,186.7,13.4,0.91,18.770,187.0 +13.6,0.91,18.680,187.5,13.5,0.91,19.240,187.9 +13.5,0.91,17.340,187.6,13.5,0.91,17.900,188.2 +13.3,0.91,17.610,186.3,13.2,0.91,18.200,186.7 +13.0,0.91,16.370,192.7,12.9,0.91,16.950,193.2 +13.3,0.91,16.410,194.6,13.2,0.91,16.910,194.9 +13.7,0.91,15.350,194.5,13.5,0.91,15.520,194.7 +14.5,0.91,13.380,194.9,14.3,0.91,13.500,195.0 +15.7,0.91,12.310,197.3,15.5,0.91,12.430,197.5 +17.6,0.91,12.430,199.8,17.4,0.91,12.580,200.0 +19.0,0.91,12.190,202.9,18.8,0.91,12.330,203.1 +20.0,0.91,10.750,204.3,19.8,0.91,10.870,204.5 +20.7,0.91,9.710,204.7,20.5,0.91,9.850,205.0 +20.9,0.90,9.170,200.4,20.8,0.90,9.420,200.8 +20.6,0.91,9.380,197.7,20.6,0.91,9.740,200.3 +19.9,0.91,11.700,196.6,20.1,0.91,12.570,197.9 +19.4,0.91,11.750,199.7,19.6,0.91,12.570,200.7 +18.8,0.91,11.710,204.2,19.0,0.91,12.730,205.6 +18.0,0.91,12.620,199.3,18.2,0.91,13.610,201.0 +17.1,0.91,14.380,201.2,17.2,0.91,15.540,202.8 +16.3,0.91,13.150,197.0,16.3,0.91,14.080,198.6 +15.4,0.91,12.150,196.2,15.3,0.91,12.730,197.9 +14.2,0.91,13.360,194.1,14.1,0.91,14.120,195.0 +13.7,0.91,12.710,189.7,13.6,0.91,13.140,189.9 +14.6,0.91,12.680,189.0,14.5,0.91,13.180,189.1 +14.6,0.91,12.560,188.0,14.6,0.91,13.230,188.9 +15.2,0.91,15.270,188.6,15.1,0.91,15.750,188.9 +15.0,0.91,13.840,182.4,14.8,0.91,14.360,182.7 +14.7,0.91,12.680,175.6,14.7,0.91,13.110,175.6 +15.2,0.91,14.770,182.6,15.0,0.91,15.190,182.8 +15.3,0.91,14.750,186.3,15.2,0.91,15.030,186.7 +15.9,0.91,13.170,186.0,15.7,0.91,13.330,186.2 +17.7,0.90,12.820,189.7,17.5,0.90,12.980,189.8 +19.0,0.90,12.280,194.8,18.8,0.90,12.420,194.8 +21.0,0.90,13.510,204.8,20.8,0.90,13.710,204.8 +21.8,0.90,12.710,209.8,21.6,0.90,12.910,209.8 +21.9,0.90,12.600,210.2,21.7,0.90,12.790,210.2 +21.5,0.90,10.220,205.2,21.3,0.90,10.520,205.4 +20.8,0.90,11.620,209.3,20.8,0.90,12.610,209.7 +20.3,0.90,12.540,200.3,20.3,0.90,13.210,200.1 +19.4,0.90,15.370,195.9,19.5,0.90,16.380,196.0 +17.9,0.90,14.670,185.8,17.8,0.90,15.480,186.2 +16.9,0.90,16.800,188.5,16.9,0.90,17.590,188.5 +16.7,0.90,16.090,187.4,16.7,0.90,17.100,187.5 +16.1,0.90,16.130,185.9,16.1,0.90,17.270,186.3 +15.9,0.90,14.850,182.1,15.9,0.90,15.790,182.5 +15.0,0.90,15.320,179.7,15.0,0.90,16.250,180.1 +14.8,0.90,15.750,182.8,14.9,0.90,16.770,183.7 +14.5,0.90,15.730,191.7,14.5,0.90,16.650,192.9 +13.8,0.90,13.400,189.7,13.8,0.90,14.230,190.6 +13.8,0.90,12.030,217.1,13.7,0.90,12.580,218.1 +14.3,0.90,11.060,227.7,14.3,0.90,11.290,230.1 +13.6,0.90,9.390,250.4,13.6,0.90,9.440,254.6 +13.5,0.90,8.580,255.0,13.4,0.90,9.750,256.1 +13.8,0.90,7.420,274.2,13.6,0.90,7.520,274.2 +13.3,0.90,8.230,295.9,13.1,0.90,8.350,295.8 +13.2,0.90,10.440,272.5,13.0,0.90,10.640,272.4 +13.0,0.90,14.920,270.2,12.8,0.90,15.180,270.2 +12.9,0.90,15.850,254.1,12.7,0.90,16.160,254.0 +12.7,0.90,15.630,252.8,12.5,0.90,15.930,252.7 +12.3,0.90,16.040,261.4,12.1,0.90,16.460,261.4 +10.9,0.90,19.510,259.9,10.7,0.90,19.930,260.0 +9.8,0.90,18.350,256.6,9.7,0.90,18.930,256.6 +8.7,0.90,14.270,249.3,8.6,0.90,15.050,249.8 +8.2,0.90,15.680,253.0,8.0,0.90,16.400,253.2 +7.4,0.90,13.130,248.0,7.3,0.90,13.970,248.9 +6.8,0.90,13.430,255.0,6.7,0.90,14.320,256.0 +6.2,0.90,12.940,259.5,6.1,0.90,14.010,261.0 +5.4,0.90,12.290,263.6,5.3,0.90,13.080,263.6 +4.7,0.90,14.880,270.6,4.6,0.90,15.940,271.5 +3.8,0.90,13.670,280.0,3.7,0.90,14.610,281.0 +1.0,0.90,14.080,309.9,0.8,0.90,14.590,310.3 +1.6,0.90,11.750,308.9,1.4,0.90,12.420,309.7 +1.1,0.90,11.810,302.3,1.0,0.90,12.440,302.9 +0.7,0.90,13.660,312.0,0.6,0.90,14.290,312.5 +0.6,0.91,13.700,311.0,0.5,0.91,14.370,312.0 +0.4,0.91,13.360,311.4,0.3,0.91,14.030,312.5 +0.8,0.91,12.240,318.8,0.6,0.91,12.500,319.1 +1.6,0.91,11.630,323.3,1.4,0.91,11.820,323.5 +2.4,0.91,10.180,326.2,2.2,0.91,10.340,326.2 +3.3,0.91,9.920,320.1,3.1,0.91,10.080,320.1 +4.1,0.91,9.790,315.6,3.9,0.91,9.940,315.5 +5.1,0.91,8.440,308.0,4.9,0.91,8.600,307.8 +6.0,0.91,9.570,302.1,5.8,0.91,9.750,302.0 +6.4,0.91,9.220,299.5,6.2,0.91,9.390,299.4 +6.7,0.91,9.390,287.5,6.5,0.91,9.590,287.8 +6.7,0.91,8.120,286.4,6.6,0.91,8.410,286.4 +6.8,0.91,7.280,273.0,6.7,0.91,7.680,274.6 +6.9,0.91,8.310,263.1,6.9,0.91,8.770,265.1 +7.3,0.91,10.350,276.2,7.3,0.91,10.530,280.3 +7.7,0.91,9.170,284.4,7.7,0.91,9.150,287.9 +8.0,0.91,9.300,274.6,8.1,0.91,9.190,277.3 +8.2,0.91,9.790,267.2,8.4,0.91,9.670,268.7 +8.0,0.91,12.320,268.8,8.4,0.91,12.670,270.8 +7.8,0.91,11.640,260.4,8.4,0.91,12.130,263.7 +7.9,0.91,13.730,256.1,8.4,0.91,14.190,258.2 +5.7,0.91,11.620,253.1,6.0,0.91,12.550,258.9 +5.9,0.91,12.360,262.4,6.3,0.91,13.200,267.2 +6.5,0.91,15.130,271.1,6.9,0.91,16.330,274.6 +6.4,0.91,14.860,279.1,6.7,0.91,15.890,280.3 +5.9,0.91,13.140,261.0,6.2,0.91,13.890,264.3 +5.7,0.91,10.090,263.4,5.6,0.91,10.290,263.7 +6.8,0.91,8.270,267.1,6.6,0.91,8.410,267.4 +8.2,0.91,6.740,264.8,8.0,0.91,6.830,265.1 +9.8,0.91,6.910,257.3,9.6,0.91,6.990,257.6 +11.0,0.91,6.950,252.3,10.8,0.91,7.020,252.6 +12.1,0.91,6.490,255.8,11.9,0.91,6.570,256.1 +13.0,0.91,5.530,274.6,12.8,0.91,5.610,274.5 +13.4,0.91,5.560,278.4,13.2,0.91,5.640,278.3 +13.4,0.91,5.250,275.7,13.3,0.91,5.370,275.8 +13.3,0.91,5.030,274.8,13.2,0.91,5.180,275.4 +13.4,0.91,4.580,272.6,13.3,0.91,4.690,274.6 +13.4,0.91,3.390,270.4,13.3,0.91,3.490,274.2 +13.6,0.91,3.550,279.8,13.5,0.91,3.660,283.2 +13.4,0.91,2.830,268.2,13.3,0.91,2.830,273.8 +13.5,0.91,1.980,313.7,13.3,0.91,1.980,322.8 +6.7,0.91,8.090,58.2,6.8,0.91,8.600,62.9 +4.9,0.91,9.720,71.6,4.8,0.91,10.720,75.0 +3.6,0.92,8.340,71.7,3.5,0.92,9.860,76.8 +2.7,0.92,7.470,73.0,2.6,0.92,8.700,78.4 +2.3,0.91,7.270,80.9,2.4,0.91,8.400,87.2 +1.4,0.91,6.780,82.4,1.5,0.91,7.460,89.4 +1.2,0.92,6.170,104.6,1.3,0.92,7.150,109.7 +1.2,0.92,8.960,116.3,1.5,0.92,10.190,117.7 +0.5,0.92,9.530,120.3,0.8,0.92,10.970,121.7 +1.3,0.92,5.270,130.9,1.2,0.92,5.850,133.2 +3.9,0.92,5.410,155.7,3.7,0.92,5.500,155.8 +6.1,0.91,5.520,165.5,6.0,0.91,5.560,165.6 +8.4,0.91,6.210,179.7,8.3,0.91,6.250,179.7 +10.2,0.91,7.400,187.1,10.0,0.91,7.450,187.3 +11.4,0.91,8.250,188.9,11.2,0.91,8.320,189.1 +12.3,0.91,9.740,190.3,12.1,0.91,9.840,190.4 +12.9,0.91,9.200,191.7,12.7,0.91,9.310,191.8 +13.1,0.91,7.980,180.0,13.0,0.91,8.230,180.6 +13.7,0.91,9.360,173.0,13.6,0.91,9.500,175.4 +14.6,0.91,11.620,195.9,14.7,0.91,12.410,200.2 +14.3,0.91,14.340,203.4,14.3,0.91,14.920,204.3 +13.2,0.91,15.490,208.7,13.3,0.91,16.280,209.1 +12.3,0.91,15.360,208.8,12.4,0.91,16.260,209.6 +11.8,0.91,15.330,210.4,11.9,0.91,16.190,211.2 +11.2,0.91,14.280,213.3,11.3,0.91,15.210,214.3 +10.9,0.91,14.510,215.6,11.1,0.91,15.630,217.0 +10.9,0.91,14.620,219.5,11.1,0.91,15.900,220.9 +10.9,0.91,14.480,224.2,11.1,0.91,15.650,225.4 +10.3,0.91,12.840,234.7,10.5,0.91,13.450,235.8 +10.6,0.91,9.700,260.4,10.8,0.91,9.970,260.1 +10.3,0.91,9.600,268.6,10.5,0.91,9.700,270.4 +9.4,0.91,8.940,301.4,9.7,0.91,9.310,305.1 +6.3,0.91,8.680,354.6,6.3,0.91,8.520,358.3 +5.5,0.91,6.570,12.3,5.7,0.91,7.320,14.4 +6.6,0.91,6.200,14.7,6.5,0.91,6.380,15.2 +8.7,0.92,6.890,24.5,8.6,0.92,6.920,24.7 +10.1,0.92,7.790,34.4,10.0,0.92,7.840,34.5 +11.0,0.92,8.000,35.8,10.8,0.92,8.070,35.8 +12.0,0.92,7.410,39.3,11.8,0.92,7.480,39.3 +12.7,0.92,6.980,39.4,12.5,0.92,7.040,39.4 +13.3,0.92,6.030,42.6,13.1,0.92,6.110,42.4 +13.4,0.92,5.820,44.1,13.2,0.92,5.890,43.9 +13.2,0.92,6.420,50.9,13.0,0.92,6.500,50.2 +12.7,0.92,7.650,49.8,12.7,0.92,7.570,50.0 +11.7,0.92,5.310,52.8,11.8,0.92,5.910,52.1 +11.0,0.92,4.890,59.3,11.1,0.92,5.400,59.4 +10.8,0.92,4.270,69.0,11.0,0.92,4.810,69.6 +10.8,0.92,4.280,72.1,11.0,0.92,4.810,72.0 +10.8,0.92,4.280,85.2,11.0,0.92,4.710,84.2 +10.9,0.92,4.510,95.5,11.0,0.92,4.840,94.4 +10.9,0.92,4.530,96.0,10.9,0.92,4.700,95.4 +11.1,0.92,4.460,107.3,11.0,0.92,4.590,105.3 +11.1,0.92,5.590,129.4,11.2,0.92,5.550,127.4 +11.4,0.92,6.060,133.3,11.4,0.92,5.930,132.8 +11.4,0.92,6.500,136.6,11.4,0.92,6.380,136.3 +11.2,0.92,7.830,147.3,11.1,0.92,7.900,146.9 +10.8,0.92,8.450,157.8,11.0,0.92,8.580,156.1 +10.3,0.92,8.960,165.8,10.7,0.92,9.290,163.3 +10.2,0.92,7.440,170.9,10.3,0.92,8.220,168.6 +11.5,0.91,7.480,167.5,11.3,0.91,7.570,167.3 +12.4,0.91,7.900,169.0,12.2,0.91,7.980,168.9 +13.2,0.91,9.540,172.4,13.0,0.91,9.650,172.4 +13.9,0.91,9.300,174.7,13.7,0.91,9.410,174.7 +14.1,0.91,9.200,180.9,13.9,0.91,9.300,181.0 +14.6,0.91,9.660,178.9,14.4,0.91,9.800,179.1 +14.9,0.91,7.940,173.7,14.7,0.91,8.150,173.7 +15.1,0.91,9.360,171.8,15.0,0.91,9.880,172.0 +14.4,0.91,11.580,166.8,14.3,0.91,12.280,166.5 +13.6,0.91,12.890,167.6,13.6,0.91,13.550,167.9 +13.5,0.91,12.920,196.0,13.4,0.91,13.540,196.6 +13.2,0.91,15.050,198.5,13.1,0.91,15.620,198.7 +12.8,0.91,14.950,194.1,12.7,0.91,15.510,194.2 +12.4,0.91,14.530,194.1,12.3,0.91,15.090,194.5 +12.4,0.90,14.850,197.3,12.3,0.90,15.360,197.6 +12.4,0.90,13.460,193.4,12.3,0.90,13.890,193.8 +12.2,0.90,12.260,194.1,12.1,0.90,12.660,194.8 +12.5,0.90,12.600,199.3,12.3,0.90,13.050,200.0 +12.3,0.90,11.770,200.2,12.2,0.90,12.240,201.0 +12.1,0.90,11.680,201.3,12.0,0.90,12.220,202.8 +11.7,0.90,12.370,207.6,11.6,0.90,13.060,209.1 +11.3,0.90,12.740,208.9,11.1,0.90,13.190,210.1 +11.2,0.90,9.110,233.4,11.0,0.90,9.250,233.8 +12.1,0.90,8.930,242.6,11.9,0.90,8.990,243.0 +14.7,0.90,7.670,259.7,14.5,0.90,7.710,260.1 +16.3,0.90,6.720,288.1,16.1,0.90,6.780,287.9 +17.2,0.90,5.850,293.1,17.0,0.90,5.930,292.8 +18.2,0.90,5.580,290.8,18.0,0.90,5.650,290.4 +18.7,0.90,5.200,297.7,18.4,0.90,5.250,297.2 +18.7,0.90,5.000,302.3,18.5,0.90,5.050,301.8 +17.3,0.90,6.680,342.2,17.1,0.90,6.750,342.2 +16.1,0.90,7.680,357.3,16.0,0.90,7.800,357.5 +15.9,0.90,6.370,353.8,15.8,0.90,6.350,355.7 +15.8,0.90,7.270,11.8,15.7,0.90,7.310,16.7 +14.1,0.90,9.680,21.9,14.0,0.90,10.530,25.0 +12.7,0.90,9.130,22.7,12.6,0.90,10.090,26.3 +11.9,0.90,9.650,29.5,12.0,0.90,10.510,32.6 +11.3,0.90,8.550,34.3,11.3,0.90,9.200,38.5 +10.8,0.91,8.080,42.1,10.8,0.91,8.550,46.1 +10.6,0.91,6.230,36.4,10.6,0.91,6.410,39.3 +10.3,0.91,5.050,26.5,10.4,0.91,5.120,28.6 +9.9,0.91,4.150,21.3,10.1,0.91,4.390,23.6 +10.0,0.91,4.330,18.1,10.2,0.91,4.560,20.1 +10.1,0.91,3.790,21.2,10.3,0.91,4.040,23.1 +10.1,0.91,3.780,24.5,10.4,0.91,4.030,25.2 +10.6,0.91,3.070,30.9,10.9,0.91,3.340,32.1 +11.3,0.91,3.150,24.7,11.6,0.91,3.330,26.8 +11.2,0.91,1.930,27.4,11.1,0.91,2.010,26.0 +12.3,0.91,2.450,41.9,12.1,0.91,2.390,41.7 +13.8,0.91,2.050,57.2,13.6,0.91,1.990,58.3 +15.1,0.91,1.940,43.2,15.0,0.91,1.870,43.4 +16.1,0.91,2.070,36.8,16.0,0.91,2.010,37.1 +16.8,0.91,2.170,46.1,16.6,0.91,2.120,46.8 +16.9,0.91,3.110,57.5,16.7,0.91,3.090,58.3 +16.7,0.91,3.680,77.3,16.5,0.91,3.680,77.5 +16.1,0.91,4.770,73.2,15.9,0.91,4.780,75.6 +14.0,0.91,6.180,110.9,14.1,0.91,5.890,111.5 +12.3,0.91,8.080,131.8,12.6,0.91,7.940,131.7 +13.5,0.91,7.240,135.6,14.2,0.91,6.910,137.5 +13.9,0.91,6.940,137.7,14.6,0.91,6.780,141.0 +14.8,0.91,6.720,137.8,15.0,0.91,6.680,140.2 +15.2,0.91,6.800,153.9,15.1,0.91,6.790,155.5 +12.5,0.91,8.450,151.5,13.2,0.91,8.530,154.0 +11.2,0.91,8.500,151.7,12.7,0.91,9.210,151.4 +9.5,0.91,8.190,164.2,10.7,0.91,9.150,162.8 +9.4,0.91,8.500,160.6,10.3,0.91,9.400,159.8 +8.7,0.91,8.520,159.9,9.1,0.91,9.280,159.4 +8.5,0.91,9.020,165.1,8.4,0.91,9.480,165.1 +8.8,0.91,10.250,172.2,8.7,0.91,10.550,172.3 +9.2,0.91,8.420,181.5,9.1,0.91,8.780,181.5 +9.4,0.91,7.900,192.5,9.2,0.91,8.420,192.5 +11.0,0.91,9.150,202.0,11.1,0.91,9.640,202.1 +13.1,0.90,9.470,190.7,13.0,0.90,9.640,191.0 +14.7,0.90,10.950,189.3,14.5,0.90,11.080,189.3 +15.2,0.90,11.980,185.5,15.0,0.90,12.070,185.6 +16.4,0.90,10.710,188.5,16.2,0.90,10.810,188.6 +17.1,0.90,9.830,185.5,16.9,0.90,9.920,185.5 +17.9,0.90,9.130,185.6,17.7,0.90,9.240,185.7 +18.5,0.90,9.050,183.8,18.3,0.90,9.180,183.8 +18.3,0.90,8.010,174.7,18.2,0.90,8.270,174.1 +18.3,0.90,10.670,169.2,18.3,0.90,11.250,170.2 +18.1,0.90,11.840,175.8,18.2,0.90,12.330,176.2 +16.9,0.90,12.970,179.2,17.0,0.90,13.740,180.6 +16.4,0.90,13.280,186.4,16.4,0.90,13.810,187.4 +15.7,0.90,12.890,195.8,15.7,0.90,13.640,197.8 +14.9,0.90,11.120,196.4,15.0,0.90,11.850,199.1 +14.3,0.90,12.080,197.1,14.4,0.90,12.890,199.4 +13.7,0.90,12.220,204.2,13.8,0.90,12.890,205.8 +13.7,0.90,10.520,205.2,13.7,0.90,11.020,206.9 +13.5,0.90,10.890,217.2,13.4,0.90,11.340,218.3 +13.5,0.90,12.460,228.6,13.4,0.90,12.920,229.0 +13.1,0.90,11.520,235.6,12.9,0.90,11.940,236.6 +13.0,0.90,11.190,238.6,12.9,0.90,11.900,240.4 +12.3,0.90,9.710,252.2,12.4,0.90,10.470,255.1 +12.2,0.90,6.790,278.1,12.1,0.90,6.960,278.5 +12.2,0.91,7.590,300.5,12.1,0.91,7.640,300.5 +12.4,0.91,7.910,320.8,12.2,0.91,7.970,320.8 +12.3,0.91,9.100,322.4,12.1,0.91,9.190,322.5 +13.0,0.91,9.100,323.5,12.7,0.91,9.210,323.6 +13.9,0.91,10.230,333.7,13.7,0.91,10.370,333.6 +14.3,0.91,10.580,335.0,14.1,0.91,10.710,335.0 +14.3,0.91,9.880,347.0,14.1,0.91,10.000,346.9 +14.0,0.91,9.980,358.6,13.8,0.91,10.120,358.6 +12.8,0.91,9.080,18.6,12.6,0.91,9.440,18.3 +12.5,0.91,8.120,19.0,12.3,0.91,8.370,19.5 +11.2,0.91,9.560,22.1,11.0,0.91,10.150,22.2 +10.7,0.91,9.590,21.8,10.6,0.91,9.920,24.5 +10.3,0.91,9.170,19.0,10.2,0.91,9.390,20.6 +9.2,0.91,11.300,21.4,9.0,0.91,12.220,25.0 +8.3,0.91,11.600,29.5,8.1,0.91,12.540,31.5 +7.7,0.91,11.780,35.9,7.7,0.91,12.890,38.1 +7.4,0.91,12.980,39.5,7.4,0.91,13.810,40.2 +6.6,0.91,13.040,40.8,6.5,0.91,13.840,42.9 +5.8,0.91,12.400,44.8,5.7,0.91,13.210,47.4 +5.1,0.91,11.120,48.8,4.9,0.91,11.600,52.2 +4.3,0.91,9.490,52.6,4.1,0.91,9.620,55.5 +3.5,0.91,8.120,54.0,3.4,0.91,8.570,57.5 +2.9,0.91,7.480,56.1,2.9,0.91,8.050,59.1 +3.1,0.91,6.160,65.2,2.9,0.91,6.570,65.8 +4.5,0.91,5.170,62.0,4.3,0.91,5.220,62.9 +6.5,0.91,5.100,66.9,6.3,0.91,5.150,67.6 +8.4,0.91,4.990,71.7,8.2,0.91,5.030,72.2 +10.0,0.91,5.160,79.9,9.8,0.91,5.200,80.3 +11.1,0.91,5.050,90.5,10.9,0.91,5.080,90.9 +11.9,0.91,5.000,109.1,11.7,0.91,5.060,109.2 +12.0,0.91,5.620,117.9,11.8,0.91,5.670,118.0 +12.0,0.91,6.230,120.8,11.8,0.91,6.320,120.9 +11.6,0.91,7.700,120.9,11.5,0.91,7.930,121.6 +11.0,0.91,8.130,127.8,11.0,0.91,8.670,128.0 +10.4,0.91,8.790,128.7,10.3,0.91,9.440,129.2 +10.1,0.91,9.740,134.3,10.0,0.91,10.390,134.8 +9.6,0.91,10.600,139.4,9.5,0.91,11.340,139.6 +9.3,0.91,10.660,142.9,9.2,0.91,11.320,142.9 +9.0,0.91,10.680,146.2,8.8,0.91,11.310,146.2 +9.0,0.91,12.200,152.1,8.9,0.91,12.820,152.0 +8.6,0.91,12.460,155.6,8.5,0.91,13.090,155.6 +8.7,0.91,14.020,159.0,8.5,0.91,14.730,159.0 +8.8,0.91,16.320,161.8,8.7,0.91,16.900,161.8 +8.9,0.91,18.350,172.1,8.8,0.91,18.860,172.0 +8.5,0.90,20.570,168.7,8.4,0.90,21.060,168.8 +8.3,0.90,17.680,167.0,8.3,0.90,18.200,167.1 +8.0,0.90,18.900,170.1,7.9,0.90,19.590,169.9 +9.0,0.90,18.430,175.1,8.9,0.90,19.180,175.1 +9.9,0.90,17.110,177.7,9.8,0.90,17.570,178.0 +11.3,0.90,18.230,176.8,11.1,0.90,18.460,177.0 +12.0,0.90,18.680,172.8,11.8,0.90,18.900,172.9 +13.2,0.90,18.260,174.3,13.0,0.90,18.470,174.4 +13.8,0.90,18.160,173.8,13.7,0.90,18.370,173.9 +14.6,0.90,16.580,176.4,14.4,0.90,16.770,176.4 +15.3,0.90,17.040,180.9,15.1,0.90,17.290,181.0 +14.8,0.90,16.520,182.1,14.7,0.90,16.800,182.2 +14.0,0.90,15.560,177.3,13.9,0.90,16.060,177.6 +14.3,0.90,15.660,172.7,14.2,0.90,16.290,173.2 +14.8,0.90,17.050,177.5,14.7,0.90,17.560,177.8 +14.7,0.90,15.500,182.1,14.5,0.90,15.960,182.4 +14.6,0.90,15.030,192.3,14.4,0.90,15.460,192.6 +14.5,0.90,12.360,215.4,14.3,0.90,12.810,215.6 +14.5,0.90,9.430,275.3,14.4,0.90,9.830,273.9 +13.6,0.90,16.520,286.2,13.4,0.90,17.220,286.5 +12.3,0.90,14.000,279.6,12.2,0.90,14.770,279.7 +10.9,0.90,14.790,285.1,10.8,0.90,15.760,285.7 +10.0,0.90,17.570,285.5,9.8,0.90,18.300,286.0 +9.1,0.90,14.810,282.7,9.0,0.90,15.670,283.4 +8.2,0.90,13.900,282.5,8.1,0.90,14.860,283.8 +7.4,0.90,11.560,284.3,7.3,0.90,12.780,285.6 +7.3,0.90,12.630,286.2,7.1,0.90,13.430,286.8 +7.5,0.90,11.600,288.4,7.3,0.90,11.890,288.5 +8.2,0.90,11.370,289.8,8.0,0.90,11.590,289.8 +9.2,0.90,10.610,289.7,9.0,0.90,10.800,289.6 +10.4,0.90,9.370,289.4,10.2,0.90,9.540,289.3 +11.4,0.90,8.090,283.7,11.2,0.90,8.240,283.6 +12.3,0.90,8.130,274.9,12.1,0.90,8.270,274.8 +12.9,0.90,8.660,275.1,12.7,0.90,8.810,275.0 +13.2,0.90,8.090,274.5,13.0,0.90,8.230,274.4 +13.2,0.90,8.020,276.2,13.0,0.90,8.180,276.1 +13.0,0.90,7.860,275.6,12.8,0.90,8.220,275.7 +12.8,0.90,8.440,280.5,12.6,0.90,8.610,280.7 +12.6,0.91,7.210,281.7,12.5,0.91,7.270,281.7 +12.7,0.91,5.560,289.9,12.6,0.91,5.270,291.0 +12.8,0.91,3.270,301.5,12.7,0.91,3.120,303.8 +13.1,0.91,2.020,344.9,13.1,0.91,2.160,351.5 +12.2,0.91,1.650,55.0,12.3,0.91,1.770,51.7 +12.6,0.91,2.110,64.0,12.7,0.91,2.420,61.4 +12.5,0.91,2.760,77.5,12.6,0.91,3.040,75.3 +11.3,0.91,3.950,53.7,11.5,0.91,4.330,55.5 +11.0,0.91,4.380,88.7,11.3,0.91,4.890,90.2 +10.2,0.91,4.840,96.6,10.5,0.91,5.280,99.2 +8.7,0.91,5.010,82.8,9.0,0.91,5.390,87.0 +6.3,0.91,5.060,66.8,6.8,0.91,5.310,71.0 +4.6,0.91,6.040,54.2,4.9,0.91,6.370,57.5 +3.9,0.91,6.020,63.3,3.9,0.91,6.860,65.9 +5.1,0.91,5.220,63.4,5.0,0.91,5.250,64.5 +7.2,0.91,5.710,67.5,7.0,0.91,5.740,68.1 +9.3,0.91,5.960,77.2,9.1,0.91,6.000,77.8 +10.9,0.91,5.790,91.9,10.7,0.91,5.850,92.4 +12.1,0.91,5.670,102.2,11.9,0.91,5.730,102.3 +12.5,0.91,6.560,110.5,12.3,0.91,6.610,110.2 +12.6,0.91,7.270,109.6,12.4,0.91,7.330,109.5 +12.6,0.91,7.740,106.1,12.4,0.91,7.870,106.5 +11.9,0.91,7.540,101.8,11.7,0.91,7.970,102.2 +11.2,0.91,10.850,100.2,11.1,0.91,11.310,100.5 +9.9,0.91,10.560,93.0,9.9,0.91,11.490,94.3 +9.0,0.91,10.210,95.7,9.0,0.91,11.240,97.7 +8.2,0.91,9.290,99.6,8.2,0.91,10.480,101.6 +7.6,0.91,10.480,109.8,7.5,0.91,11.540,110.8 +6.8,0.90,8.430,115.3,6.5,0.90,9.190,116.2 +7.5,0.90,11.170,128.2,7.3,0.90,11.760,128.2 +7.7,0.90,8.190,127.2,7.5,0.90,8.700,128.0 +7.5,0.90,8.660,136.8,7.3,0.90,9.030,137.4 +7.8,0.90,8.040,154.9,7.6,0.90,8.470,154.6 +7.6,0.90,10.240,161.9,7.5,0.90,10.620,161.9 +7.5,0.90,8.910,166.9,7.3,0.90,9.340,167.0 +7.6,0.90,6.460,176.3,7.4,0.90,6.950,176.6 +7.8,0.90,6.210,177.7,7.6,0.90,6.620,179.0 +8.3,0.90,4.550,183.4,8.2,0.90,5.010,188.3 +7.9,0.90,3.040,324.1,7.8,0.90,2.930,321.0 +3.8,0.90,5.940,344.1,3.6,0.90,5.920,343.7 +3.5,0.90,7.640,335.8,3.3,0.90,7.700,335.7 +3.1,0.90,7.250,343.4,2.9,0.90,7.280,343.4 +2.9,0.91,5.990,337.1,2.7,0.91,6.020,336.7 +2.5,0.91,6.120,325.0,2.3,0.91,6.160,324.9 +3.0,0.91,7.260,327.2,2.8,0.91,7.380,327.1 +3.4,0.91,8.610,331.1,3.2,0.91,8.740,330.9 +3.3,0.91,7.780,331.4,3.2,0.91,8.300,330.7 +2.3,0.91,10.440,338.2,2.1,0.91,10.960,338.1 +1.4,0.91,10.540,339.6,1.3,0.91,11.020,339.4 +1.0,0.91,11.840,331.1,0.8,0.91,12.420,331.4 +0.3,0.91,9.600,327.9,0.1,0.91,10.110,329.0 +-0.0,0.91,9.610,335.9,-0.2,0.91,10.280,337.1 +-0.3,0.91,9.650,331.5,-0.4,0.91,10.300,333.3 +-0.4,0.91,8.510,327.7,-0.4,0.91,9.110,329.8 +0.2,0.91,9.210,318.2,0.4,0.91,9.730,320.7 +0.9,0.91,9.010,319.1,1.1,0.91,9.380,323.5 +1.4,0.91,9.720,316.5,1.7,0.91,9.790,320.6 +1.9,0.91,8.070,318.0,2.4,0.91,8.020,323.2 +2.8,0.91,8.500,314.3,3.3,0.91,8.560,318.8 +3.0,0.91,8.340,306.2,3.5,0.91,8.490,310.0 +3.2,0.91,8.460,302.1,3.7,0.91,8.670,305.4 +3.6,0.91,7.140,296.6,3.6,0.91,7.990,298.6 +5.0,0.91,5.790,295.3,4.8,0.91,5.870,295.4 +6.4,0.91,5.780,298.2,6.2,0.91,5.820,298.1 +7.9,0.91,4.560,301.6,7.7,0.91,4.610,301.4 +9.3,0.91,4.400,301.7,9.1,0.91,4.460,301.5 +10.3,0.91,4.520,302.6,10.1,0.91,4.580,302.3 +10.8,0.91,4.790,294.0,10.6,0.91,4.850,293.8 +11.3,0.91,4.150,282.6,11.1,0.91,4.220,282.3 +11.4,0.91,4.630,269.2,11.2,0.91,4.690,269.1 +11.4,0.91,3.560,270.3,11.3,0.91,3.720,270.6 +11.3,0.91,2.770,251.3,11.2,0.91,2.910,254.6 +11.4,0.91,2.820,236.3,11.3,0.91,2.990,238.3 +11.3,0.91,3.990,219.0,11.3,0.91,4.090,221.9 +11.0,0.91,5.590,197.6,11.0,0.91,5.480,200.8 +10.6,0.91,7.150,198.3,10.6,0.91,7.310,197.7 +10.1,0.91,7.770,192.3,10.4,0.91,7.660,195.1 +10.7,0.91,6.300,197.9,10.8,0.91,5.980,201.7 +10.9,0.91,5.390,207.2,11.0,0.91,5.310,211.1 +10.5,0.91,7.000,209.2,10.8,0.91,6.940,212.2 +10.2,0.91,8.310,214.8,10.4,0.91,8.430,216.3 +10.2,0.91,9.300,219.4,10.4,0.91,9.530,220.5 +9.5,0.91,9.640,214.5,9.8,0.91,9.880,215.9 +9.2,0.91,10.550,210.4,9.5,0.91,10.860,211.8 +8.1,0.91,11.020,207.3,8.3,0.91,11.280,208.3 +7.9,0.91,9.460,210.0,8.5,0.91,9.820,213.1 +8.9,0.91,8.040,213.8,8.9,0.91,8.290,215.1 +10.8,0.91,8.310,214.2,10.7,0.91,8.360,214.6 +12.0,0.91,7.430,213.9,11.8,0.91,7.510,214.2 +13.4,0.91,7.480,208.6,13.2,0.91,7.560,208.7 +13.9,0.91,6.790,204.1,13.7,0.91,6.830,204.3 +14.8,0.91,5.480,210.7,14.7,0.91,5.550,210.8 +15.5,0.91,5.220,218.5,15.3,0.91,5.280,218.7 +15.6,0.91,4.920,234.6,15.4,0.91,4.970,234.6 +15.5,0.91,3.300,250.3,15.3,0.91,3.440,250.1 +15.4,0.91,1.780,293.4,15.3,0.91,1.830,290.6 +12.3,0.91,5.800,20.4,12.6,0.91,5.680,18.4 +11.0,0.91,7.080,39.6,11.3,0.91,7.650,39.3 +10.0,0.91,10.760,45.7,10.1,0.91,11.490,47.4 +7.7,0.91,11.980,8.6,7.7,0.91,12.670,11.3 +5.8,0.91,12.620,16.2,5.7,0.91,13.480,17.9 +4.8,0.91,13.830,20.7,4.7,0.91,14.650,21.9 +3.8,0.91,13.870,20.6,3.7,0.91,14.550,21.1 +2.7,0.91,14.360,25.8,2.6,0.91,15.070,26.2 +2.3,0.91,14.160,28.0,2.1,0.91,14.870,28.3 +1.5,0.91,13.730,29.4,1.4,0.91,14.410,29.9 +1.1,0.91,12.850,30.1,1.0,0.91,13.520,30.9 +1.0,0.91,12.980,30.5,0.9,0.91,13.700,31.5 +0.7,0.92,11.560,25.6,0.6,0.92,12.230,26.0 +0.9,0.92,11.560,31.0,0.7,0.92,11.710,31.3 +1.5,0.92,12.060,40.1,1.3,0.92,12.180,40.3 +2.3,0.92,10.880,38.4,2.1,0.92,10.980,38.4 +3.3,0.92,9.320,36.6,3.1,0.92,9.400,36.6 +4.3,0.92,8.370,31.3,4.1,0.92,8.440,31.4 +5.1,0.92,7.870,26.4,4.9,0.92,7.930,26.5 +5.5,0.92,7.480,28.1,5.3,0.92,7.530,28.0 +5.8,0.92,7.070,29.4,5.5,0.92,7.130,29.2 +5.7,0.92,7.070,23.7,5.5,0.92,7.150,23.6 +5.0,0.92,7.040,20.9,4.9,0.92,7.170,21.0 +4.6,0.92,5.980,22.6,4.5,0.92,6.210,22.8 +4.3,0.92,5.620,23.7,4.1,0.92,5.690,23.9 +4.3,0.92,4.110,15.8,4.2,0.92,4.100,14.7 +4.2,0.92,2.800,10.7,4.1,0.92,3.000,8.3 +4.3,0.92,2.470,332.2,4.3,0.92,2.710,334.7 +4.6,0.92,2.940,306.2,4.5,0.92,3.010,311.3 +4.7,0.92,3.390,297.4,4.7,0.92,3.460,302.5 +4.8,0.92,4.110,278.8,4.8,0.92,4.220,283.3 +4.7,0.92,5.120,271.6,4.8,0.92,5.130,274.9 +5.1,0.92,6.680,271.9,5.2,0.92,6.630,274.9 +5.4,0.92,7.570,270.6,5.4,0.92,7.510,273.9 +5.8,0.92,8.210,276.8,5.9,0.92,8.040,281.3 +5.7,0.92,9.110,282.5,6.0,0.92,8.880,286.4 +1.3,0.92,8.450,303.0,1.9,0.92,8.810,301.3 +2.8,0.92,8.840,290.8,3.1,0.92,9.480,291.9 +5.1,0.92,6.320,286.5,5.0,0.92,6.500,287.1 +7.3,0.92,6.240,282.7,7.1,0.92,6.320,282.5 +8.7,0.92,6.230,280.2,8.5,0.92,6.310,279.9 +10.2,0.92,6.750,270.5,10.0,0.92,6.830,270.4 +11.5,0.92,6.890,258.1,11.3,0.92,6.970,258.1 +12.6,0.91,6.760,256.8,12.4,0.91,6.860,256.8 +13.4,0.91,6.790,251.5,13.2,0.91,6.900,251.5 +13.8,0.91,6.070,240.7,13.6,0.91,6.180,241.0 +14.2,0.91,5.880,237.4,14.0,0.91,6.100,237.4 +14.3,0.91,7.650,228.4,14.2,0.91,7.900,231.0 +14.1,0.91,9.360,227.6,14.1,0.91,9.460,228.3 +14.0,0.91,10.870,233.0,14.0,0.91,10.760,234.3 +12.6,0.91,13.790,225.6,12.7,0.91,14.530,226.7 +11.2,0.91,14.780,221.7,11.3,0.91,15.710,222.9 +10.7,0.91,14.730,219.5,11.0,0.91,15.810,221.0 +9.6,0.91,14.660,214.8,9.8,0.91,15.630,216.5 +8.8,0.91,16.000,215.7,9.0,0.91,17.210,217.1 +8.4,0.91,16.600,215.7,8.6,0.91,17.760,216.7 +8.2,0.91,16.370,216.0,8.5,0.91,17.450,217.2 +8.1,0.91,16.170,214.9,8.5,0.91,17.220,216.2 +7.8,0.91,15.820,212.6,8.1,0.91,16.880,214.1 +7.4,0.91,15.820,214.2,7.7,0.91,16.830,215.3 +6.9,0.91,15.270,214.2,7.1,0.91,16.160,215.0 +7.4,0.91,14.630,213.1,7.4,0.91,15.650,213.6 +8.6,0.91,12.390,208.3,8.5,0.91,12.580,208.8 +10.6,0.91,11.240,204.6,10.4,0.91,11.310,205.0 +12.3,0.91,12.540,205.7,12.1,0.91,12.620,206.0 +14.0,0.91,12.400,204.8,13.8,0.91,12.510,204.9 +15.5,0.91,12.810,202.6,15.3,0.91,12.960,202.8 +16.3,0.90,13.220,201.2,16.1,0.90,13.390,201.3 +16.7,0.90,13.790,201.0,16.5,0.90,13.970,201.0 +16.4,0.90,14.040,197.8,16.3,0.90,14.300,197.9 +15.3,0.90,15.870,192.9,15.2,0.90,16.590,193.0 +14.1,0.90,17.570,192.8,14.1,0.90,18.360,192.8 +13.1,0.90,19.020,191.8,13.0,0.90,19.680,191.8 +12.1,0.90,19.960,191.7,12.0,0.90,20.630,191.7 +11.6,0.90,20.010,191.2,11.5,0.90,20.730,191.5 +11.0,0.90,19.170,191.3,11.0,0.90,20.010,192.0 +10.5,0.90,18.800,186.8,10.5,0.90,19.550,187.7 +9.8,0.90,17.520,186.8,9.8,0.90,18.320,188.3 +9.7,0.90,18.210,193.4,9.6,0.90,18.860,193.9 +9.6,0.90,15.900,194.3,9.4,0.90,16.450,194.8 +10.3,0.90,17.230,202.0,10.2,0.90,17.840,202.4 +10.4,0.90,15.810,204.0,10.2,0.90,16.360,204.6 +10.2,0.90,14.980,207.6,10.1,0.90,15.520,208.0 +9.9,0.90,14.720,213.4,9.7,0.90,15.350,214.3 +9.9,0.90,14.160,231.8,9.8,0.90,14.670,232.9 +11.3,0.90,9.040,255.8,11.2,0.90,9.330,257.0 +13.3,0.90,9.930,269.6,13.1,0.90,10.120,270.2 +14.7,0.90,11.570,284.2,14.5,0.90,11.780,284.2 +14.7,0.90,10.370,306.3,14.5,0.90,10.540,306.2 +14.5,0.90,10.180,315.6,14.3,0.90,10.290,315.3 +14.2,0.90,9.070,325.8,14.0,0.90,9.190,325.5 +14.0,0.91,9.200,327.1,13.8,0.91,9.310,327.0 +13.6,0.91,8.680,338.7,13.4,0.91,8.810,338.4 +13.2,0.91,9.110,344.5,13.0,0.91,9.240,344.2 +12.3,0.91,8.810,2.4,12.1,0.91,9.130,2.1 +11.4,0.91,9.340,15.1,11.3,0.91,10.110,14.2 +10.5,0.91,11.190,13.0,10.4,0.91,11.740,13.6 +9.9,0.91,10.500,25.8,9.8,0.91,11.050,26.2 +9.8,0.91,10.140,31.5,9.8,0.91,10.490,30.9 +9.3,0.91,9.840,36.8,9.4,0.91,10.130,36.3 +9.1,0.91,10.390,44.4,9.0,0.91,10.330,44.5 +8.3,0.91,10.160,53.4,8.3,0.91,10.520,52.5 +7.7,0.91,9.950,58.2,7.7,0.91,10.380,57.3 +6.8,0.91,8.750,71.0,6.9,0.91,9.280,70.5 +6.5,0.91,8.810,86.8,6.5,0.91,9.230,86.0 +6.5,0.91,8.710,89.3,6.6,0.91,9.280,87.8 +6.2,0.91,8.670,94.7,6.2,0.91,9.290,93.3 +5.3,0.91,9.070,106.8,5.4,0.91,9.900,106.0 +4.9,0.91,8.370,123.4,4.8,0.91,8.930,122.9 +5.2,0.91,7.320,123.2,5.1,0.91,7.530,123.0 +6.5,0.91,8.300,126.3,6.3,0.91,8.400,126.3 +8.1,0.91,7.690,123.5,7.9,0.91,7.780,123.5 +9.4,0.91,8.450,123.8,9.2,0.91,8.550,123.8 +10.3,0.91,8.960,126.6,10.1,0.91,9.070,126.7 +11.1,0.91,9.120,131.9,10.9,0.91,9.230,132.1 +11.5,0.91,9.850,135.6,11.3,0.91,9.980,135.7 +11.6,0.91,9.960,141.3,11.4,0.91,10.130,141.3 +11.3,0.91,10.870,144.6,11.1,0.91,11.080,144.5 +11.1,0.91,10.790,147.6,10.9,0.91,11.100,147.6 +9.5,0.91,11.340,149.1,9.3,0.91,11.620,149.2 +8.3,0.91,10.110,146.8,8.1,0.91,10.320,146.8 +6.4,0.91,7.910,130.2,6.2,0.91,8.080,130.6 +8.3,0.91,9.970,138.8,8.1,0.91,10.440,139.2 +8.1,0.91,10.860,139.6,8.0,0.91,11.240,140.2 +7.3,0.91,12.840,148.6,7.1,0.91,13.280,148.8 +5.9,0.91,12.690,148.7,5.8,0.91,13.490,148.8 +5.0,0.91,11.090,140.5,4.9,0.91,11.610,140.9 +4.5,0.91,11.600,135.5,4.4,0.91,12.270,136.0 +4.4,0.91,8.000,137.0,4.3,0.91,8.900,139.9 +3.9,0.91,7.870,128.0,3.7,0.91,8.200,128.7 +3.8,0.91,4.500,95.0,3.6,0.91,4.710,98.0 +3.9,0.91,9.100,128.9,3.7,0.91,9.810,131.7 +3.9,0.90,11.920,139.4,3.8,0.90,12.640,139.8 +3.9,0.90,12.700,145.2,3.7,0.90,13.210,145.3 +3.9,0.91,7.830,125.9,3.7,0.91,8.030,126.6 +3.7,0.90,8.600,120.0,3.5,0.90,8.760,120.5 +3.6,0.90,8.680,124.3,3.4,0.90,8.830,124.6 +3.7,0.90,8.140,121.4,3.6,0.90,8.280,121.9 +3.9,0.90,7.900,124.3,3.7,0.90,8.010,124.7 +4.2,0.90,7.430,120.2,4.1,0.90,7.580,120.9 +4.4,0.90,6.730,111.6,4.3,0.90,6.850,112.4 +4.3,0.90,6.460,111.6,4.2,0.90,6.850,113.3 +4.9,0.90,8.310,115.9,4.9,0.90,9.630,119.4 +5.2,0.90,10.470,119.1,5.1,0.90,11.100,120.1 +5.7,0.90,13.260,128.7,5.7,0.90,14.130,129.2 +5.5,0.90,12.920,129.4,5.5,0.90,13.640,130.0 +5.8,0.90,13.150,135.8,5.7,0.90,13.800,136.2 +6.3,0.90,15.090,138.1,6.2,0.90,15.590,138.4 +6.0,0.90,14.960,143.1,5.9,0.90,15.660,143.0 +13.3,0.89,16.220,208.7,13.6,0.89,17.700,212.6 +8.0,0.89,12.960,151.3,8.1,0.89,13.550,151.5 +8.7,0.89,10.710,157.4,8.7,0.89,11.160,157.7 +5.9,0.90,4.310,293.7,6.4,0.90,4.530,285.2 +5.3,0.90,5.970,299.1,5.5,0.90,6.510,297.6 +5.4,0.90,7.040,287.7,5.8,0.90,7.800,284.4 +6.8,0.90,10.450,265.9,6.9,0.90,11.210,267.6 +5.8,0.90,9.370,257.1,5.8,0.90,10.390,259.1 +7.1,0.90,14.370,254.7,7.0,0.90,14.940,255.4 +7.5,0.90,16.140,260.5,7.4,0.90,16.450,260.7 +8.7,0.90,14.400,255.7,8.5,0.90,14.610,255.9 +9.3,0.90,13.790,258.1,9.1,0.90,14.050,258.2 +10.3,0.90,12.390,255.9,10.0,0.90,12.640,256.0 +11.0,0.90,12.660,255.2,10.8,0.90,12.880,255.3 +11.9,0.90,11.080,255.6,11.7,0.90,11.310,255.8 +12.4,0.90,9.990,256.9,12.2,0.90,10.170,257.3 +12.6,0.90,8.440,268.2,12.4,0.90,8.590,268.2 +12.4,0.90,7.050,261.5,12.3,0.90,7.480,262.0 +12.9,0.90,8.500,258.7,12.8,0.90,8.980,259.6 +13.1,0.90,9.790,253.1,13.0,0.90,10.170,254.3 +13.0,0.90,11.450,257.7,12.9,0.90,11.490,258.5 +6.6,0.90,8.720,20.7,6.6,0.90,8.760,20.9 +2.6,0.90,10.460,26.8,2.4,0.90,10.880,26.4 +1.5,0.90,8.990,26.8,1.3,0.90,9.580,26.8 +0.4,0.90,9.430,25.9,0.2,0.90,9.510,27.1 +-0.5,0.91,8.700,40.4,-0.7,0.91,8.880,41.2 +-1.6,0.91,8.670,34.0,-1.8,0.91,8.870,34.1 +-2.7,0.91,8.480,36.9,-2.9,0.91,8.740,37.3 +-3.8,0.91,9.660,42.6,-4.0,0.91,9.900,42.3 +-4.2,0.91,8.850,41.2,-4.3,0.91,8.960,41.6 +-4.5,0.91,5.990,36.5,-4.7,0.91,6.040,36.4 +-4.8,0.91,6.020,37.7,-5.0,0.91,6.020,37.3 +-3.9,0.91,5.760,37.0,-4.1,0.91,5.750,36.8 +-2.5,0.91,5.600,41.6,-2.7,0.91,5.600,41.5 +-0.9,0.91,5.040,41.3,-1.1,0.91,5.020,41.2 +0.6,0.91,4.480,43.8,0.5,0.91,4.450,43.8 +2.0,0.91,3.950,40.1,1.8,0.91,3.910,40.1 +3.4,0.91,2.970,35.6,3.3,0.91,2.930,35.4 +4.4,0.91,3.200,40.6,4.2,0.91,3.150,40.6 +4.9,0.91,3.150,45.8,4.7,0.91,3.120,45.9 +5.0,0.91,3.870,39.0,4.8,0.91,3.840,39.2 +4.5,0.91,4.850,46.1,4.4,0.91,4.830,46.1 +4.1,0.91,6.000,48.2,4.0,0.91,5.930,48.7 +3.4,0.91,6.930,54.3,3.3,0.91,7.250,54.8 +2.6,0.91,8.790,64.2,2.5,0.91,9.010,63.6 +1.8,0.91,8.460,75.2,1.7,0.91,8.830,76.1 +1.3,0.91,8.440,78.7,1.4,0.91,8.340,76.3 +0.8,0.91,8.660,79.8,0.9,0.91,8.970,79.0 +0.1,0.91,7.840,85.2,0.3,0.91,8.160,85.8 +-0.1,0.91,7.000,86.4,0.1,0.91,7.040,87.9 +0.4,0.91,5.920,97.7,0.7,0.91,5.710,96.4 +-0.2,0.91,6.440,105.5,0.1,0.91,6.310,105.8 +0.2,0.91,4.050,105.3,0.5,0.91,4.010,106.6 +0.8,0.91,3.100,141.7,0.9,0.91,3.200,142.2 +1.9,0.91,6.260,173.2,2.2,0.91,6.210,175.1 +2.4,0.91,9.670,184.2,2.8,0.91,9.950,186.4 +1.7,0.91,1.840,181.8,1.5,0.91,1.950,182.7 +3.2,0.91,3.070,191.0,3.0,0.91,3.100,191.3 +5.2,0.91,4.610,226.5,5.0,0.91,4.630,227.0 +7.4,0.91,3.360,250.5,7.2,0.91,3.400,251.2 +9.5,0.91,4.780,260.6,9.2,0.91,4.850,260.5 +10.4,0.91,6.320,262.3,10.2,0.91,6.340,262.3 +11.1,0.90,4.820,255.4,10.9,0.90,4.900,255.5 +12.3,0.90,5.570,255.5,12.1,0.90,5.670,255.3 +12.8,0.90,5.680,248.5,12.6,0.90,5.790,248.5 +12.7,0.90,4.190,244.7,12.6,0.90,4.380,245.5 +12.7,0.90,4.250,240.0,12.6,0.90,4.380,241.0 +12.9,0.90,4.060,209.3,12.8,0.90,4.230,211.5 +12.9,0.90,6.380,190.4,12.9,0.90,6.530,191.9 +12.3,0.90,8.660,183.6,12.7,0.90,9.070,186.4 +11.2,0.90,11.960,175.3,11.6,0.90,11.560,177.9 +10.1,0.90,14.250,168.8,10.7,0.90,14.440,171.3 +10.5,0.90,15.540,173.1,11.3,0.90,15.970,174.6 +9.6,0.90,15.280,176.4,10.5,0.90,15.520,178.4 +8.7,0.90,15.040,176.6,9.3,0.90,15.190,178.0 +8.9,0.90,15.580,177.9,9.7,0.90,15.920,179.2 +7.9,0.90,16.050,180.5,8.5,0.90,16.580,181.9 +8.1,0.90,16.470,183.0,8.7,0.90,16.820,184.3 +8.1,0.90,16.140,179.8,8.5,0.90,16.530,180.7 +7.7,0.90,15.860,179.1,7.7,0.90,16.260,179.6 +7.7,0.90,15.530,180.5,7.7,0.90,16.050,180.8 +8.9,0.90,13.810,180.9,8.8,0.90,14.160,181.1 +10.8,0.90,13.460,180.7,10.6,0.90,13.610,180.9 +12.2,0.90,13.430,184.9,12.0,0.90,13.570,185.1 +14.3,0.90,11.330,188.5,14.1,0.90,11.480,188.6 +16.3,0.90,10.420,187.2,16.1,0.90,10.580,187.5 +17.4,0.90,10.440,188.9,17.2,0.90,10.600,189.1 +18.1,0.90,9.640,182.7,17.9,0.90,9.800,182.8 +18.4,0.90,9.820,183.7,18.3,0.90,10.020,183.8 +18.1,0.90,9.580,176.4,18.0,0.90,9.950,176.6 +16.8,0.90,12.740,160.8,16.9,0.90,13.710,162.1 +15.7,0.90,14.400,161.2,15.8,0.90,15.390,162.9 +14.2,0.89,14.160,160.2,14.2,0.89,15.150,161.1 +13.2,0.89,12.360,168.8,13.2,0.89,13.120,169.4 +7.7,0.89,6.580,319.3,7.6,0.89,6.710,319.2 +12.1,0.89,10.360,240.9,12.1,0.89,10.940,240.9 +11.4,0.90,12.230,257.0,11.3,0.90,12.860,258.4 +10.0,0.90,16.180,282.9,10.0,0.90,17.220,283.4 +9.9,0.90,11.990,287.1,9.8,0.90,12.590,288.0 +6.8,0.89,8.670,286.4,6.8,0.89,8.950,285.9 +6.6,0.89,6.110,275.4,6.5,0.89,6.230,271.6 +4.4,0.89,11.040,278.4,4.3,0.89,11.630,280.9 +2.6,0.89,10.730,304.4,2.4,0.89,10.950,304.3 +0.7,0.89,10.010,307.1,0.5,0.89,10.220,307.0 +-0.2,0.89,11.500,295.4,-0.4,0.89,11.670,295.6 +0.7,0.89,12.210,293.6,0.5,0.89,12.380,293.6 +0.3,0.90,13.770,300.4,0.1,0.90,14.000,300.4 +0.8,0.90,15.250,307.4,0.6,0.90,15.500,307.4 +1.3,0.90,17.160,313.1,1.1,0.90,17.480,313.1 +1.0,0.90,18.780,317.5,0.8,0.90,19.140,317.5 +1.2,0.90,18.590,323.9,1.0,0.90,18.960,323.9 +0.8,0.90,18.210,321.2,0.6,0.90,18.550,321.1 +0.1,0.90,17.180,324.6,-0.0,0.90,17.550,324.5 +-0.4,0.90,14.600,324.9,-0.5,0.90,15.070,324.6 +0.3,0.90,18.710,326.5,0.1,0.90,19.470,326.5 +1.2,0.90,16.050,322.3,1.0,0.90,16.670,322.4 +0.9,0.90,16.540,319.2,0.8,0.90,17.290,319.5 +0.8,0.90,14.720,317.9,0.6,0.90,15.440,318.1 +0.6,0.90,16.170,319.7,0.4,0.90,16.940,319.9 +0.4,0.90,15.650,320.9,0.3,0.90,16.420,321.3 +0.2,0.90,16.130,320.0,0.1,0.90,16.900,320.9 +-0.2,0.90,14.120,318.7,-0.3,0.90,14.990,319.9 +-0.5,0.90,12.900,321.9,-0.5,0.90,13.880,323.6 +-1.0,0.90,11.750,318.4,-1.0,0.90,12.680,320.6 +-1.3,0.90,10.140,316.8,-1.3,0.90,10.910,318.7 +-1.4,0.90,10.810,315.4,-1.4,0.90,11.530,318.0 +-1.6,0.90,9.410,312.5,-1.6,0.90,10.140,315.4 +-1.2,0.90,8.060,320.8,-1.2,0.90,8.650,323.2 +-0.1,0.90,6.150,324.7,-0.3,0.90,6.250,325.4 +1.5,0.90,5.090,324.9,1.4,0.90,5.130,325.3 +3.1,0.90,4.840,318.2,2.9,0.90,4.870,318.5 +4.5,0.90,4.510,313.5,4.3,0.90,4.550,313.8 +5.9,0.90,3.760,307.9,5.7,0.90,3.790,307.8 +7.4,0.90,2.720,298.2,7.2,0.90,2.760,296.8 +9.2,0.90,3.100,289.6,9.0,0.90,3.150,288.4 +10.3,0.90,1.600,281.9,10.1,0.90,1.660,279.1 +10.9,0.90,2.050,240.5,10.7,0.90,2.090,240.4 +10.9,0.90,1.120,94.7,10.8,0.90,0.880,106.1 +9.3,0.90,3.870,86.5,9.5,0.90,3.140,89.7 +9.2,0.90,4.000,92.5,9.3,0.90,3.720,96.4 +8.9,0.90,4.840,82.7,9.1,0.90,4.590,84.2 +7.7,0.90,4.410,82.5,8.2,0.90,4.350,89.3 +7.8,0.90,4.750,73.3,8.2,0.90,4.660,76.2 +6.5,0.90,5.280,53.1,6.9,0.90,5.540,54.6 +2.6,0.90,10.180,344.2,2.8,0.90,10.290,347.6 +1.2,0.90,9.470,353.1,1.4,0.90,9.970,357.2 +0.2,0.90,8.630,358.7,0.2,0.90,8.980,2.9 +-1.0,0.91,9.840,358.3,-1.2,0.91,10.460,0.2 +-1.3,0.91,10.190,354.9,-1.3,0.91,10.970,356.2 +1.5,0.91,10.040,357.4,2.1,0.91,10.840,2.0 +-0.5,0.91,11.250,341.0,-0.3,0.91,12.070,343.6 +0.2,0.91,9.970,335.6,0.4,0.91,10.740,338.3 +1.2,0.91,6.820,329.3,1.1,0.91,7.100,330.4 +3.3,0.91,9.550,335.0,3.1,0.91,9.710,335.1 +4.2,0.91,10.970,345.4,4.0,0.91,11.140,345.4 +4.9,0.91,11.270,348.4,4.7,0.91,11.410,348.2 +5.7,0.91,11.420,350.6,5.4,0.91,11.560,350.4 +6.2,0.91,11.150,352.2,6.0,0.91,11.290,352.0 +6.4,0.91,11.480,352.7,6.2,0.91,11.620,352.4 +6.3,0.91,11.300,354.3,6.1,0.91,11.450,354.1 +5.9,0.91,11.220,352.7,5.7,0.91,11.380,352.6 +5.2,0.91,10.550,0.4,5.0,0.91,10.870,0.1 +4.4,0.91,9.020,1.5,4.3,0.91,9.730,1.6 +3.6,0.91,10.830,0.2,3.5,0.91,11.310,0.8 +2.9,0.91,9.830,3.6,2.8,0.91,10.380,3.8 +2.7,0.91,8.370,12.0,2.5,0.91,8.610,12.9 +2.4,0.91,9.680,16.7,2.2,0.91,10.010,17.7 +2.2,0.91,8.790,25.7,2.1,0.91,9.540,25.1 +2.2,0.91,9.830,19.8,2.2,0.91,9.960,22.1 +1.4,0.91,8.280,33.4,1.3,0.91,8.080,30.4 +1.7,0.91,5.730,14.6,1.7,0.91,6.040,16.2 +1.5,0.91,5.090,35.5,1.5,0.91,5.560,34.2 +1.9,0.91,6.680,11.4,1.9,0.91,7.110,12.7 +1.7,0.91,6.390,18.7,1.7,0.91,6.760,19.5 +1.7,0.91,5.050,12.4,1.7,0.91,5.490,12.5 +1.6,0.92,3.930,350.3,1.6,0.92,4.300,351.9 +2.1,0.92,3.560,326.2,1.9,0.92,3.560,328.6 +3.4,0.92,3.950,359.9,3.2,0.92,3.990,359.8 +4.4,0.92,4.870,358.8,4.2,0.92,4.900,358.2 +5.6,0.92,4.440,354.3,5.4,0.92,4.480,353.6 +6.7,0.92,4.990,350.4,6.4,0.92,5.030,349.7 +7.5,0.91,4.990,347.7,7.3,0.91,5.040,347.1 +8.3,0.91,5.020,344.7,8.1,0.91,5.070,344.2 +8.6,0.91,5.400,340.7,8.4,0.91,5.470,340.3 +8.7,0.91,5.500,345.7,8.5,0.91,5.560,345.2 +8.6,0.91,5.270,352.0,8.4,0.91,5.390,351.3 +8.4,0.91,6.070,349.2,8.2,0.91,6.070,349.6 +8.0,0.91,5.430,16.2,7.9,0.91,5.480,16.2 +7.2,0.91,4.850,32.8,7.1,0.91,5.260,32.1 +6.3,0.91,3.980,46.2,6.2,0.91,4.290,43.9 +6.5,0.91,3.850,35.7,6.6,0.91,4.190,34.1 +6.9,0.91,3.310,30.1,7.1,0.91,3.750,28.9 +6.7,0.91,3.230,29.4,6.9,0.91,3.680,30.2 +6.0,0.91,2.360,43.2,6.2,0.91,2.670,43.9 +5.9,0.91,2.040,48.7,6.1,0.91,2.400,47.6 +5.7,0.91,1.380,91.8,5.9,0.91,1.520,85.6 +5.8,0.91,2.280,119.7,6.0,0.91,2.230,123.9 +5.7,0.91,2.450,155.7,5.7,0.91,2.480,158.5 +6.2,0.91,1.880,181.3,6.3,0.91,1.880,179.0 +5.9,0.91,0.490,129.0,6.2,0.91,0.680,163.2 +5.1,0.91,1.110,14.5,5.4,0.91,0.940,23.6 +6.6,0.91,1.300,335.2,6.5,0.91,1.270,330.0 +8.1,0.91,2.780,337.8,7.9,0.91,2.810,336.9 +9.0,0.91,4.790,310.7,8.8,0.91,4.820,311.1 +10.1,0.91,6.740,331.4,9.9,0.91,6.850,331.4 +10.2,0.91,8.740,348.4,10.0,0.91,8.840,348.2 +10.5,0.91,10.080,346.0,10.3,0.91,10.230,345.8 +10.6,0.91,11.850,341.2,10.4,0.91,12.060,341.0 +10.4,0.91,12.130,345.6,10.2,0.91,12.360,345.4 +10.9,0.91,12.790,343.4,10.7,0.91,13.260,343.6 +10.0,0.91,11.620,355.4,9.9,0.91,12.540,355.8 +9.2,0.91,11.520,9.0,9.1,0.91,12.610,9.2 +8.3,0.91,10.530,20.1,8.1,0.91,11.560,21.0 +7.4,0.92,10.430,26.6,7.3,0.92,11.570,28.3 +5.6,0.92,7.700,45.2,5.4,0.92,9.010,50.6 +4.8,0.92,8.000,57.2,4.6,0.92,9.100,54.1 +4.1,0.92,7.250,43.3,4.0,0.92,7.710,40.2 +3.6,0.92,6.060,26.4,3.5,0.92,6.490,26.4 +3.2,0.92,6.990,23.1,3.1,0.92,7.380,23.7 +2.8,0.92,6.680,17.6,2.7,0.92,7.030,18.7 +2.4,0.92,7.010,16.2,2.3,0.92,7.190,17.5 +1.9,0.92,7.120,17.3,1.8,0.92,7.300,18.1 +1.4,0.92,6.220,9.9,1.3,0.92,6.440,10.9 +1.4,0.92,5.340,355.7,1.4,0.92,5.630,359.0 +2.3,0.92,3.630,343.2,2.1,0.92,3.740,344.9 +4.2,0.92,2.880,331.0,4.0,0.92,2.910,331.5 +5.9,0.92,4.230,313.4,5.7,0.92,4.250,313.8 +7.8,0.92,4.540,303.8,7.6,0.92,4.590,303.7 +9.7,0.92,4.840,304.9,9.5,0.92,4.900,304.9 +11.1,0.92,5.250,305.9,10.9,0.92,5.310,305.9 +12.3,0.92,5.220,303.2,12.1,0.92,5.280,303.4 +13.2,0.91,5.050,301.5,13.0,0.91,5.130,301.5 +13.9,0.91,4.690,300.8,13.7,0.91,4.780,300.7 +14.1,0.91,4.060,285.9,13.9,0.91,4.160,286.4 +14.2,0.91,5.120,252.6,14.1,0.91,5.180,253.6 +14.3,0.91,6.780,233.7,14.2,0.91,6.790,235.3 +14.6,0.91,7.580,239.0,14.6,0.91,7.850,242.5 +14.9,0.91,9.660,245.8,15.0,0.91,9.860,249.7 +14.9,0.91,8.990,238.7,15.0,0.91,8.970,242.1 +15.2,0.91,9.240,236.1,15.3,0.91,9.320,237.5 +15.3,0.91,8.780,234.2,15.5,0.91,8.960,237.2 +14.9,0.91,9.580,230.1,15.2,0.91,9.680,232.0 +14.9,0.91,10.240,225.9,15.1,0.91,10.290,226.9 +13.9,0.91,11.090,218.1,14.4,0.91,11.350,218.4 +14.2,0.91,11.610,222.2,14.6,0.91,12.010,222.9 +12.5,0.91,12.470,221.5,12.9,0.91,13.060,222.7 +11.8,0.91,14.920,220.5,12.3,0.91,15.690,220.7 +11.1,0.91,14.670,216.3,11.4,0.91,15.610,216.8 +11.1,0.91,12.690,211.0,11.0,0.91,13.480,211.8 +13.0,0.91,11.790,207.2,12.9,0.91,11.920,207.6 +14.8,0.91,11.520,203.5,14.7,0.91,11.630,203.9 +16.8,0.91,12.470,202.1,16.6,0.91,12.600,202.4 +18.7,0.91,12.670,205.0,18.5,0.91,12.810,205.2 +20.4,0.91,13.260,208.7,20.2,0.91,13.410,208.8 +21.4,0.90,13.460,212.4,21.2,0.90,13.630,212.6 +22.1,0.90,14.050,215.8,21.9,0.90,14.250,216.0 +22.3,0.90,14.130,212.7,22.1,0.90,14.370,212.8 +21.6,0.90,14.140,203.9,21.5,0.90,14.780,204.6 +20.2,0.90,16.180,200.4,20.2,0.90,17.060,201.6 +18.5,0.90,18.260,204.3,18.5,0.90,19.390,205.4 +17.2,0.90,18.210,205.8,17.2,0.90,19.420,206.8 +16.2,0.90,18.830,207.5,16.3,0.90,20.060,208.2 +15.8,0.90,19.030,210.2,15.8,0.90,20.280,211.0 +15.5,0.90,19.390,212.2,15.7,0.90,20.780,213.3 +15.2,0.90,19.600,214.5,15.3,0.90,21.010,215.2 +14.5,0.90,19.020,214.5,14.6,0.90,20.310,215.3 +14.1,0.90,15.680,225.2,14.4,0.90,16.900,227.1 +14.6,0.90,14.160,239.5,15.0,0.90,15.470,242.8 +17.4,0.90,15.600,264.5,17.8,0.90,16.720,267.7 +18.2,0.90,15.590,273.8,18.5,0.90,16.810,277.5 +18.1,0.90,15.540,276.8,18.4,0.90,16.810,279.4 +17.9,0.90,13.010,289.2,18.0,0.90,14.050,292.9 +17.7,0.90,10.760,292.3,17.5,0.90,11.370,293.5 +18.5,0.90,8.980,283.0,18.4,0.90,9.090,283.1 +20.7,0.90,7.650,273.6,20.5,0.90,7.770,273.8 +21.7,0.90,8.160,284.2,21.5,0.90,8.290,284.1 +22.5,0.90,6.920,289.5,22.3,0.90,7.020,289.5 +23.2,0.90,6.720,268.8,23.0,0.90,6.820,268.6 +23.9,0.90,6.860,264.7,23.7,0.90,6.940,264.5 +24.6,0.90,7.430,266.2,24.4,0.90,7.550,265.8 +25.5,0.90,7.620,270.3,25.3,0.90,7.810,270.1 +25.2,0.90,7.650,266.4,25.1,0.90,7.990,267.9 +24.6,0.90,10.960,284.3,24.6,0.90,11.400,285.9 +24.5,0.90,10.900,266.8,24.4,0.90,11.320,267.3 +22.8,0.90,14.050,268.3,22.9,0.90,15.140,269.3 +22.8,0.90,14.800,277.4,22.7,0.90,15.580,277.9 +19.0,0.90,12.670,302.0,19.1,0.90,13.890,303.0 +14.0,0.90,12.340,24.3,13.9,0.90,13.150,26.4 +11.8,0.91,13.450,17.4,11.7,0.91,14.660,18.5 +10.0,0.91,19.080,22.1,9.8,0.91,20.300,22.8 +7.4,0.91,16.580,11.3,7.2,0.91,17.090,11.0 +4.8,0.91,16.690,21.4,4.6,0.91,17.000,21.2 +3.9,0.91,16.300,15.4,3.7,0.91,16.750,15.4 +3.6,0.91,12.930,5.4,3.4,0.91,13.380,5.4 +3.0,0.91,14.020,8.1,2.9,0.91,14.720,8.9 +3.2,0.92,14.240,13.6,3.0,0.92,14.800,14.0 +3.8,0.92,14.710,16.5,3.6,0.92,14.900,16.6 +4.2,0.92,13.980,16.4,4.0,0.92,14.140,16.5 +5.0,0.92,12.330,13.5,4.8,0.92,12.450,13.5 +5.9,0.92,11.540,14.3,5.6,0.92,11.650,14.3 +6.8,0.92,11.260,14.7,6.5,0.92,11.360,14.7 +7.8,0.92,8.170,16.0,7.6,0.92,8.240,15.8 +8.8,0.92,7.010,14.6,8.6,0.92,7.080,14.2 +9.1,0.92,6.460,14.6,8.9,0.92,6.520,14.3 +9.2,0.92,5.690,17.8,9.0,0.92,5.720,17.6 +8.9,0.92,5.100,23.7,8.7,0.92,5.140,23.1 +8.6,0.92,4.720,28.1,8.4,0.92,4.840,27.9 +7.8,0.92,4.610,35.8,7.8,0.92,4.870,36.1 +7.1,0.92,4.130,39.6,7.1,0.92,4.510,39.5 +6.6,0.92,3.180,43.3,6.7,0.92,3.640,42.9 +6.4,0.92,3.160,42.2,6.5,0.92,3.620,43.1 +6.0,0.92,2.740,66.8,6.1,0.92,3.130,63.6 +6.1,0.92,3.120,56.3,6.2,0.92,3.530,54.7 +5.9,0.92,3.390,67.6,6.1,0.92,3.780,65.2 +5.6,0.92,4.200,78.3,5.8,0.92,4.510,75.7 +5.4,0.92,4.900,91.2,5.5,0.92,5.150,88.5 +5.0,0.92,5.420,86.9,4.9,0.92,5.510,87.9 +5.5,0.92,6.270,91.9,5.3,0.92,6.200,91.7 +5.3,0.92,6.640,117.0,5.3,0.92,6.490,114.5 +4.3,0.92,8.030,136.3,4.5,0.92,8.300,134.8 +4.7,0.92,6.060,146.1,4.6,0.92,6.220,145.2 +5.9,0.92,6.390,153.4,5.7,0.92,6.440,153.3 +7.1,0.92,5.820,157.7,6.9,0.92,5.870,157.7 +8.5,0.92,6.070,159.4,8.3,0.92,6.120,159.5 +9.9,0.92,6.460,166.0,9.7,0.92,6.520,165.9 +11.1,0.91,7.040,164.0,10.9,0.91,7.110,164.0 +11.9,0.91,7.550,169.9,11.7,0.91,7.630,169.8 +12.1,0.91,7.730,169.4,11.9,0.91,7.820,169.4 +12.5,0.91,8.880,166.0,12.3,0.91,9.000,166.1 +12.3,0.91,8.530,159.9,12.1,0.91,8.870,160.2 +11.8,0.91,10.480,152.4,11.7,0.91,11.170,152.9 +11.4,0.91,11.800,155.1,11.4,0.91,12.650,155.3 +10.5,0.91,13.260,162.2,10.5,0.91,14.080,162.1 +10.0,0.91,14.620,167.1,10.0,0.91,15.460,167.1 +9.6,0.91,15.810,174.9,9.7,0.91,16.610,175.7 +9.8,0.91,16.730,193.2,9.8,0.91,17.370,193.6 +9.3,0.91,17.820,197.2,9.3,0.91,18.540,197.5 +9.2,0.91,18.650,196.8,9.3,0.91,19.360,197.0 +8.8,0.91,17.860,196.6,8.9,0.91,18.620,197.0 +8.4,0.91,16.370,196.7,8.5,0.91,17.080,197.1 +8.2,0.91,16.800,197.0,8.3,0.91,17.540,197.6 +8.1,0.91,17.000,196.2,8.2,0.91,17.650,196.8 +7.9,0.91,16.690,195.3,8.0,0.91,17.280,195.8 +7.8,0.91,15.940,194.3,7.9,0.91,16.730,195.0 +9.0,0.91,14.800,195.2,8.9,0.91,15.230,195.4 +10.3,0.91,13.280,190.8,10.1,0.91,13.410,191.0 +11.8,0.91,12.300,190.2,11.6,0.91,12.400,190.3 +13.7,0.91,11.230,188.1,13.5,0.91,11.350,188.1 +15.2,0.91,11.510,185.2,15.0,0.91,11.650,185.2 +16.7,0.91,10.910,177.8,16.5,0.91,11.040,177.7 +17.4,0.91,10.280,171.1,17.2,0.91,10.390,171.2 +18.1,0.91,10.580,167.5,17.9,0.91,10.730,167.6 +18.0,0.91,12.110,169.1,17.8,0.91,12.300,169.3 +17.9,0.91,11.630,175.4,17.8,0.91,12.080,175.2 +17.0,0.91,12.650,168.8,16.9,0.91,13.520,168.9 +16.0,0.91,13.810,169.1,15.9,0.91,14.570,169.3 +15.4,0.91,14.310,177.0,15.3,0.91,15.090,177.0 +14.3,0.91,17.440,180.8,14.2,0.91,18.140,180.7 +13.3,0.91,18.680,183.1,13.2,0.91,19.330,183.1 +13.1,0.91,18.990,184.7,13.0,0.91,19.550,184.7 +13.0,0.91,18.480,187.5,12.9,0.91,19.010,187.5 +13.2,0.91,19.090,191.3,13.0,0.91,19.600,191.3 +13.4,0.91,19.460,192.2,13.2,0.91,19.970,192.2 +13.7,0.91,20.100,194.1,13.5,0.91,20.600,194.3 +13.8,0.91,18.520,191.6,13.7,0.91,18.940,191.7 +13.7,0.91,17.970,187.3,13.5,0.91,18.390,187.5 +13.6,0.91,17.570,189.4,13.5,0.91,17.990,189.6 +13.9,0.91,17.860,188.7,13.8,0.91,18.280,189.0 +13.7,0.91,16.520,185.6,13.5,0.91,17.090,185.6 +14.4,0.91,16.590,187.3,14.2,0.91,16.870,187.4 +14.8,0.91,16.330,183.5,14.7,0.91,16.550,183.8 +15.9,0.91,14.890,186.9,15.7,0.91,15.040,187.1 +17.5,0.91,13.320,173.3,17.3,0.91,13.440,173.4 +18.8,0.91,13.390,174.6,18.6,0.91,13.550,174.6 +19.4,0.91,13.530,168.3,19.2,0.91,13.720,168.5 +20.7,0.91,13.140,171.1,20.5,0.91,13.360,171.3 +20.0,0.90,14.970,165.5,19.8,0.90,15.220,165.5 +19.7,0.90,15.090,162.1,19.5,0.90,15.480,162.3 +18.6,0.90,14.590,160.6,18.5,0.90,15.120,160.7 +18.1,0.90,15.970,168.1,17.9,0.90,16.560,168.2 +17.0,0.90,15.650,167.5,16.8,0.90,16.220,167.6 +15.8,0.90,15.470,165.1,15.6,0.90,16.240,165.3 +15.6,0.90,14.560,169.7,15.4,0.90,15.040,169.7 +15.1,0.90,15.680,170.8,15.0,0.90,16.330,170.9 +14.7,0.90,16.450,169.3,14.5,0.90,17.050,169.4 +14.3,0.90,16.890,171.0,14.1,0.90,17.630,171.1 +14.1,0.90,16.780,174.6,13.9,0.90,17.380,174.6 +14.0,0.90,17.010,176.7,13.8,0.90,17.340,176.8 +14.4,0.90,15.820,183.4,14.3,0.90,16.230,183.7 +14.6,0.90,14.350,188.2,14.4,0.90,14.790,188.4 +14.7,0.90,14.060,191.4,14.5,0.90,14.520,191.7 +14.5,0.90,13.000,198.1,14.3,0.90,13.400,198.3 +14.7,0.90,9.270,210.1,14.5,0.90,9.800,210.1 +14.8,0.90,12.190,218.2,14.6,0.90,12.720,218.2 +15.9,0.90,10.440,217.5,15.7,0.90,10.570,217.8 +17.4,0.90,7.630,270.5,17.2,0.90,7.710,270.2 +18.0,0.90,7.880,272.6,17.8,0.90,7.990,272.4 +18.6,0.90,7.980,259.1,18.4,0.90,8.060,259.6 +19.3,0.90,8.490,267.9,19.0,0.90,8.630,267.1 +19.0,0.90,8.330,265.4,18.8,0.90,8.470,265.4 +18.7,0.90,8.740,276.7,18.5,0.90,8.860,276.0 +18.2,0.90,8.560,282.8,18.0,0.90,8.940,282.8 +17.2,0.90,11.440,280.2,17.1,0.90,12.100,279.7 +15.2,0.90,14.580,293.3,15.1,0.90,15.180,292.9 +15.4,0.90,12.500,297.1,15.3,0.90,12.970,297.1 +15.6,0.90,8.500,279.0,15.5,0.90,9.200,280.6 +15.0,0.90,7.250,279.6,14.8,0.90,8.080,283.8 +14.2,0.90,6.940,282.1,14.1,0.90,8.150,284.3 +13.6,0.90,10.440,307.7,13.5,0.90,10.940,308.0 +13.0,0.90,9.320,306.9,12.9,0.90,10.180,309.2 +12.5,0.90,10.510,301.4,12.3,0.90,11.230,302.6 +10.4,0.90,14.850,314.3,10.2,0.90,15.350,315.7 +6.5,0.90,14.280,335.5,6.3,0.90,14.900,335.4 +5.1,0.90,10.570,335.8,4.9,0.90,11.570,335.7 +3.7,0.90,14.190,341.1,3.6,0.90,14.800,340.5 +3.1,0.91,13.260,326.1,2.9,0.91,13.560,326.2 +3.1,0.91,14.950,339.8,2.9,0.91,15.240,339.7 +3.8,0.91,13.290,337.1,3.6,0.91,13.510,337.0 +4.8,0.91,13.360,333.4,4.5,0.91,13.590,333.3 +5.5,0.91,13.400,337.1,5.3,0.91,13.620,337.0 +6.3,0.91,12.050,341.1,6.0,0.91,12.240,340.9 +7.1,0.91,12.030,337.0,6.9,0.91,12.220,336.8 +8.0,0.91,10.950,332.1,7.7,0.91,11.140,331.9 +8.4,0.91,11.500,322.8,8.2,0.91,11.710,322.9 +8.6,0.91,11.450,324.7,8.4,0.91,11.680,324.7 +8.2,0.91,11.520,333.2,8.0,0.91,11.820,333.3 +7.6,0.91,9.220,338.4,7.5,0.91,9.760,338.3 +7.2,0.91,11.470,343.4,7.1,0.91,12.250,343.9 +6.6,0.91,8.370,357.0,6.5,0.91,8.520,359.5 +6.2,0.91,10.010,349.9,6.0,0.91,11.110,351.5 +5.7,0.91,9.600,351.0,5.6,0.91,9.660,352.1 +5.1,0.91,11.630,342.0,5.0,0.91,12.210,344.8 +4.4,0.91,10.150,335.7,4.4,0.91,10.550,338.6 +3.9,0.91,12.400,343.3,3.8,0.91,13.200,345.4 +3.0,0.91,12.400,342.7,2.9,0.91,12.890,343.3 +2.6,0.91,12.100,333.4,2.5,0.91,12.760,336.4 +2.1,0.91,11.230,334.7,2.0,0.91,11.570,338.6 +1.9,0.91,9.880,334.3,1.9,0.91,9.930,337.5 +1.7,0.91,8.850,324.9,1.9,0.91,8.990,327.6 +1.5,0.91,7.070,321.5,1.8,0.91,7.640,324.7 +3.0,0.91,4.970,310.3,2.9,0.91,5.140,310.9 +5.2,0.91,4.390,306.4,5.0,0.91,4.440,306.7 +7.6,0.91,4.480,305.1,7.4,0.91,4.530,305.2 +10.0,0.91,4.350,300.4,9.8,0.91,4.400,300.2 +12.3,0.91,5.000,290.4,12.1,0.91,5.100,289.9 +13.9,0.91,6.180,281.1,13.7,0.91,6.270,280.9 +15.1,0.91,5.280,272.8,14.8,0.91,5.360,272.8 +15.9,0.91,6.230,269.5,15.7,0.91,6.300,269.6 +16.6,0.91,5.300,276.7,16.4,0.91,5.400,276.9 +16.8,0.91,5.130,248.6,16.6,0.91,5.350,250.1 +16.8,0.91,4.510,238.9,16.7,0.91,4.750,239.3 +17.1,0.91,6.170,226.2,17.0,0.91,6.310,228.5 +17.1,0.91,7.370,217.5,17.0,0.91,7.460,219.7 +16.3,0.91,7.940,210.5,16.4,0.91,7.880,217.3 +15.9,0.91,8.040,214.3,16.0,0.91,8.140,218.3 +15.4,0.91,9.330,208.9,15.6,0.91,9.620,211.8 +15.0,0.91,10.670,204.6,15.2,0.91,11.050,206.7 +13.7,0.91,11.900,203.4,14.0,0.91,12.240,206.0 +14.6,0.91,12.500,214.6,15.0,0.91,13.200,216.7 +14.7,0.91,13.280,224.8,15.2,0.91,13.890,227.3 +14.0,0.91,15.190,232.5,14.4,0.91,16.080,235.1 +13.6,0.91,13.430,231.8,14.0,0.91,13.720,235.7 +11.3,0.91,12.100,242.1,11.8,0.91,12.720,247.9 +11.7,0.91,10.210,266.7,12.0,0.91,10.760,270.0 +12.3,0.91,6.560,286.2,12.2,0.91,6.670,286.6 +10.5,0.91,5.970,320.1,10.3,0.91,5.980,319.9 +10.5,0.91,6.340,337.9,10.3,0.91,6.360,337.6 +10.9,0.91,7.630,354.5,10.7,0.91,7.640,354.2 +11.6,0.91,7.980,4.7,11.4,0.91,8.040,4.4 +12.2,0.91,8.560,13.0,12.0,0.91,8.620,12.9 +13.0,0.91,8.820,15.1,12.8,0.91,8.900,15.2 +13.6,0.91,9.310,23.2,13.4,0.91,9.410,23.2 +13.8,0.91,9.430,27.2,13.6,0.91,9.540,27.4 +13.4,0.91,9.720,32.2,13.2,0.91,9.910,32.4 +12.6,0.91,10.500,39.2,12.5,0.91,11.160,40.0 +11.7,0.91,11.280,41.7,11.7,0.91,12.030,43.0 +10.6,0.91,10.600,45.1,10.7,0.91,11.530,47.1 +10.1,0.92,11.690,53.5,10.2,0.92,12.700,55.1 +9.4,0.92,10.110,58.7,9.7,0.92,11.460,60.2 +9.2,0.92,9.260,67.3,9.4,0.92,10.220,67.5 +9.0,0.92,8.050,69.5,9.1,0.92,8.550,69.0 +8.5,0.92,6.630,71.3,8.6,0.92,7.210,71.2 +7.7,0.92,5.980,52.0,7.9,0.92,6.430,54.6 +7.2,0.92,5.850,65.0,7.4,0.92,6.370,66.9 +7.2,0.92,6.230,72.8,7.6,0.92,6.730,74.5 +7.9,0.92,5.860,94.7,8.2,0.92,6.280,96.2 +8.0,0.92,5.820,99.5,8.2,0.92,6.180,101.3 +8.8,0.92,5.610,111.8,9.0,0.92,6.050,113.1 +9.7,0.92,5.390,129.5,9.6,0.92,5.540,129.3 +11.1,0.92,5.990,143.7,10.9,0.92,6.070,143.9 +12.2,0.92,5.840,152.0,12.0,0.92,5.900,152.1 +13.4,0.92,5.180,156.9,13.2,0.92,5.240,157.0 +14.6,0.92,5.300,161.9,14.4,0.92,5.350,162.0 +15.6,0.92,5.450,168.9,15.4,0.92,5.510,168.8 +16.3,0.92,5.710,177.2,16.1,0.92,5.750,177.0 +16.7,0.92,5.350,183.0,16.5,0.92,5.410,183.3 +17.1,0.92,5.450,182.8,16.9,0.92,5.520,183.1 +17.1,0.92,4.730,164.2,16.9,0.92,4.820,164.5 +17.0,0.92,5.600,146.3,16.9,0.92,5.650,147.2 +16.9,0.92,7.580,139.4,16.8,0.92,7.670,140.3 +16.0,0.92,11.770,147.0,16.1,0.92,12.120,148.4 +15.1,0.92,13.340,150.8,15.3,0.92,14.020,151.1 +14.4,0.91,14.430,162.2,14.5,0.91,15.140,164.9 +14.6,0.91,12.950,195.5,15.0,0.91,13.350,199.6 +13.8,0.91,13.760,203.6,14.0,0.91,14.760,205.3 +13.4,0.91,14.420,202.9,13.7,0.91,15.380,203.8 +12.9,0.91,15.490,201.1,13.0,0.91,16.410,201.2 +12.2,0.91,15.920,203.9,12.4,0.91,16.910,204.4 +12.1,0.91,15.750,206.7,12.2,0.91,16.640,207.5 +11.3,0.91,15.820,204.8,11.3,0.91,16.580,206.0 +10.7,0.91,15.380,205.2,10.8,0.91,15.960,206.3 +10.6,0.91,14.690,204.2,10.6,0.91,15.460,205.2 +11.7,0.92,12.670,203.6,11.6,0.92,12.960,204.1 +13.5,0.92,11.660,203.0,13.3,0.92,11.720,203.4 +15.3,0.92,11.830,202.8,15.1,0.92,11.890,203.0 +17.1,0.91,11.770,201.2,16.9,0.91,11.850,201.3 +18.4,0.91,11.020,200.4,18.2,0.91,11.100,200.5 +19.6,0.91,10.090,198.6,19.3,0.91,10.170,198.7 +20.5,0.91,9.750,196.4,20.3,0.91,9.840,196.6 +21.1,0.91,9.020,193.7,20.9,0.91,9.120,193.9 +21.3,0.91,9.320,192.6,21.1,0.91,9.440,192.8 +21.0,0.91,9.540,186.5,20.9,0.91,9.900,186.7 +20.8,0.91,12.220,191.0,20.8,0.91,12.520,190.9 +20.1,0.91,13.600,195.8,20.1,0.91,14.170,196.5 +18.7,0.91,14.550,201.7,18.9,0.91,15.370,202.8 +17.7,0.91,16.190,205.1,17.7,0.91,17.030,205.4 +16.3,0.91,16.430,201.6,16.4,0.91,17.350,202.1 +15.8,0.91,16.870,202.1,15.9,0.91,17.800,202.5 +15.1,0.91,16.390,199.7,15.3,0.91,17.310,200.6 +15.0,0.91,17.320,204.5,15.1,0.91,18.300,205.3 +14.5,0.91,17.800,205.5,14.7,0.91,18.810,206.1 +13.8,0.91,17.300,206.2,14.0,0.91,18.300,207.3 +13.9,0.91,16.390,213.9,14.1,0.91,17.510,214.7 +12.7,0.91,16.710,206.3,12.8,0.91,17.490,207.6 +11.9,0.91,16.700,210.2,12.1,0.91,17.560,211.3 +12.4,0.91,13.950,210.6,12.4,0.91,14.750,211.2 +13.7,0.91,12.270,208.0,13.6,0.91,12.600,208.7 +15.8,0.91,11.550,209.2,15.6,0.91,11.640,209.5 +17.3,0.91,12.300,203.3,17.1,0.91,12.360,203.5 +19.4,0.91,12.030,204.1,19.2,0.91,12.110,204.2 +21.3,0.91,11.070,206.0,21.0,0.91,11.160,206.2 +22.9,0.91,10.580,204.8,22.7,0.91,10.680,205.0 +23.9,0.91,10.410,202.0,23.7,0.91,10.520,202.3 +24.3,0.91,10.500,201.7,24.1,0.91,10.620,201.9 +24.1,0.91,11.000,199.9,23.9,0.91,11.130,200.1 +23.6,0.91,11.490,195.2,23.4,0.91,11.860,195.4 +22.6,0.91,13.870,196.5,22.6,0.91,14.550,197.0 +21.1,0.90,14.660,193.5,21.2,0.90,15.410,194.5 +19.7,0.90,16.860,196.3,19.7,0.90,17.720,196.9 +18.6,0.90,17.320,197.1,18.6,0.90,18.200,197.8 +17.5,0.90,17.850,196.8,17.5,0.90,18.760,197.6 +16.8,0.90,18.510,198.4,16.9,0.90,19.500,199.3 +16.4,0.90,18.900,201.8,16.5,0.90,20.040,202.8 +16.1,0.90,19.850,203.1,16.2,0.90,20.960,204.0 +15.6,0.90,19.070,205.0,15.7,0.90,20.140,205.9 +15.3,0.90,18.380,206.3,15.4,0.90,19.390,207.3 +14.6,0.90,18.610,204.8,14.7,0.90,19.440,205.8 +14.0,0.90,17.740,206.1,14.2,0.90,18.390,207.2 +13.5,0.90,17.140,206.4,13.6,0.90,17.750,207.7 +13.8,0.90,15.300,206.6,13.9,0.90,16.070,207.7 +14.8,0.90,13.520,205.7,14.7,0.90,13.950,206.5 +16.9,0.90,12.600,208.8,16.8,0.90,12.700,209.3 +19.6,0.90,12.440,208.3,19.4,0.90,12.500,208.7 +22.1,0.90,11.430,211.3,21.9,0.90,11.520,211.5 +24.2,0.90,9.840,212.9,24.0,0.90,9.930,213.0 +26.0,0.90,8.350,215.4,25.8,0.90,8.440,215.6 +27.4,0.90,7.710,210.8,27.2,0.90,7.800,211.1 +28.5,0.90,7.480,216.2,28.3,0.90,7.590,216.3 +28.7,0.90,7.670,207.2,28.5,0.90,7.780,207.6 +28.4,0.90,9.870,189.8,28.2,0.90,10.140,190.4 +26.6,0.90,13.290,180.0,26.7,0.90,14.200,181.4 +21.6,0.90,11.000,28.9,21.8,0.90,11.340,30.6 +20.1,0.90,7.880,59.1,19.8,0.90,8.900,57.1 +18.4,0.90,8.290,39.9,18.1,0.90,8.700,41.0 +16.8,0.90,4.750,18.7,16.7,0.90,4.930,20.2 +14.5,0.90,6.020,10.7,14.3,0.90,5.740,13.6 +13.5,0.90,5.450,33.4,13.4,0.90,4.490,38.2 +12.6,0.90,4.730,26.4,12.6,0.90,4.390,30.5 +10.9,0.90,8.160,20.8,10.5,0.90,8.290,24.5 +9.9,0.90,9.090,11.0,9.8,0.90,9.460,15.1 +8.6,0.90,10.480,14.1,8.4,0.90,11.230,16.4 +7.7,0.90,9.400,19.0,7.5,0.90,10.270,21.1 +6.8,0.90,9.790,12.2,6.6,0.90,10.510,14.2 +6.4,0.90,7.950,15.3,6.2,0.90,7.990,15.6 +7.0,0.90,7.150,21.4,6.9,0.90,7.170,21.4 +8.7,0.90,6.180,17.0,8.5,0.90,6.190,17.0 +10.6,0.90,5.120,16.2,10.4,0.90,5.130,16.0 +12.4,0.90,3.930,17.4,12.2,0.90,3.920,16.9 +14.0,0.90,3.440,16.1,13.8,0.90,3.430,15.1 +15.4,0.90,2.490,30.8,15.2,0.90,2.450,28.8 +17.0,0.90,1.010,41.7,16.8,0.90,0.940,37.5 +18.4,0.90,0.520,80.1,18.3,0.90,0.410,84.4 +19.9,0.90,2.970,202.9,19.7,0.90,3.000,202.9 +20.1,0.90,4.240,176.3,19.9,0.90,4.360,177.1 +19.5,0.90,8.070,166.0,19.4,0.90,8.190,166.9 +19.5,0.90,11.160,173.3,19.5,0.90,11.230,175.9 +13.5,0.90,15.800,335.0,13.3,0.90,16.760,334.9 +13.1,0.90,7.020,85.8,14.0,0.90,6.080,79.9 +20.5,0.90,9.610,182.9,20.7,0.90,9.680,185.9 +19.9,0.90,10.380,213.1,20.1,0.90,10.920,219.5 +19.0,0.90,10.860,191.5,20.2,0.90,11.230,196.2 +17.8,0.90,12.160,208.7,18.9,0.90,12.660,210.1 +18.6,0.90,11.670,222.2,19.7,0.90,12.160,224.8 +19.0,0.90,11.810,269.2,19.4,0.90,12.250,276.4 +16.6,0.90,10.360,307.2,16.8,0.90,10.940,313.4 +15.4,0.90,12.190,326.6,15.3,0.90,14.780,333.0 +13.3,0.90,13.770,334.0,13.4,0.90,16.460,338.7 +11.1,0.90,9.640,1.0,10.9,0.90,10.030,0.5 +10.2,0.90,10.300,5.3,10.0,0.90,10.350,5.3 +9.1,0.90,10.600,13.2,8.8,0.90,10.650,13.0 +9.8,0.91,9.920,14.6,9.6,0.91,9.980,14.5 +11.5,0.91,9.520,12.1,11.3,0.91,9.580,11.9 +12.8,0.91,8.560,11.1,12.6,0.91,8.620,10.8 +14.1,0.91,7.040,12.0,13.9,0.91,7.090,11.8 +15.0,0.91,5.960,16.1,14.8,0.91,5.990,15.7 +15.5,0.91,5.090,25.6,15.3,0.91,5.110,25.3 +15.9,0.91,4.580,20.8,15.7,0.91,4.600,20.8 +15.4,0.91,4.410,43.0,15.2,0.91,4.420,42.6 +14.9,0.91,4.310,62.6,14.7,0.91,4.260,64.8 +14.5,0.91,5.320,91.1,14.4,0.91,5.280,92.3 +14.3,0.91,6.790,82.2,14.2,0.91,6.760,82.6 +13.4,0.91,9.400,106.2,13.6,0.91,9.120,104.7 +13.5,0.91,10.040,120.3,13.9,0.91,9.620,120.2 +12.8,0.90,11.410,129.0,13.2,0.90,11.850,129.7 +13.0,0.90,12.210,144.4,13.7,0.90,12.590,145.9 +10.2,0.90,10.220,144.1,10.3,0.90,11.340,143.5 +9.8,0.90,10.290,158.2,9.9,0.90,11.600,157.9 +10.1,0.90,15.330,166.8,10.3,0.90,16.140,166.3 +9.6,0.90,16.340,168.2,9.8,0.90,17.150,167.8 +7.8,0.91,6.440,171.3,7.8,0.91,8.250,168.0 +7.8,0.91,11.110,151.1,7.9,0.91,12.530,151.2 +8.4,0.91,9.460,161.8,8.3,0.91,10.120,162.0 +10.2,0.91,7.010,166.5,10.0,0.91,7.140,166.7 +12.5,0.91,5.840,173.1,12.3,0.91,5.880,173.3 +14.9,0.91,5.280,177.4,14.8,0.91,5.310,177.6 +17.6,0.91,4.630,197.7,17.4,0.91,4.670,198.2 +19.2,0.91,4.460,204.5,19.0,0.91,4.500,205.1 +20.5,0.91,2.820,202.7,20.3,0.91,2.830,203.7 +21.4,0.90,0.900,143.6,21.3,0.90,0.840,144.2 +22.0,0.90,4.020,43.5,21.8,0.90,4.040,43.7 +19.3,0.91,13.690,44.3,19.1,0.91,13.830,44.6 +17.4,0.91,12.240,58.1,17.2,0.91,12.450,58.3 +15.2,0.91,14.380,59.5,15.1,0.91,14.880,59.5 +14.3,0.91,12.230,50.3,14.1,0.91,12.510,50.5 +13.8,0.91,11.820,52.5,13.6,0.91,12.030,52.9 +12.7,0.91,9.880,52.9,12.5,0.91,10.300,53.4 +12.5,0.91,10.750,50.8,12.3,0.91,11.090,51.0 +11.7,0.91,9.680,62.3,11.6,0.91,9.980,62.8 +11.1,0.91,8.020,61.9,11.0,0.91,8.440,62.6 +10.7,0.91,8.080,60.3,10.5,0.91,8.510,62.0 +10.1,0.91,8.600,57.7,10.0,0.91,8.930,61.0 +9.5,0.91,8.740,49.9,9.5,0.91,9.050,53.8 +9.1,0.91,8.200,63.9,9.2,0.91,8.930,68.0 +8.8,0.91,8.190,64.1,8.9,0.91,8.920,66.4 +8.0,0.91,7.550,53.4,8.0,0.91,7.980,55.1 +7.6,0.91,5.820,56.6,7.8,0.91,6.690,59.3 +8.7,0.92,5.050,64.4,8.6,0.92,5.200,65.3 +10.6,0.92,5.780,67.4,10.4,0.92,5.870,67.7 +11.9,0.91,6.490,77.5,11.7,0.91,6.560,77.7 +13.1,0.91,5.990,83.8,12.9,0.91,6.030,83.9 +14.0,0.91,5.110,87.5,13.8,0.91,5.140,87.9 +15.1,0.91,4.700,128.3,14.8,0.91,4.710,128.0 +15.5,0.91,4.770,120.9,15.3,0.91,4.780,121.2 +16.1,0.91,5.020,133.2,15.9,0.91,5.090,133.8 +16.1,0.91,5.060,139.8,16.0,0.91,5.130,140.2 +16.0,0.91,6.300,143.2,15.8,0.91,6.410,143.7 +15.4,0.91,8.660,146.0,15.3,0.91,9.090,145.5 +14.7,0.91,9.160,155.5,14.6,0.91,9.720,155.6 +14.0,0.91,10.520,159.8,13.9,0.91,11.150,159.9 +13.3,0.91,12.480,162.5,13.2,0.91,13.230,162.4 +12.8,0.91,13.610,165.6,12.7,0.91,14.330,165.6 +12.1,0.91,14.880,169.0,12.1,0.91,15.730,168.8 +11.6,0.90,15.220,174.7,11.6,0.90,15.930,174.7 +11.8,0.90,16.040,182.4,11.8,0.90,16.820,182.4 +11.3,0.90,16.690,184.9,11.3,0.90,17.430,185.2 +10.9,0.90,17.320,182.7,10.9,0.90,17.980,183.2 +11.0,0.90,17.350,183.1,10.9,0.90,17.950,183.5 +10.5,0.90,16.390,182.9,10.5,0.90,16.940,183.6 +9.9,0.90,16.430,184.3,9.9,0.90,17.080,185.3 +10.3,0.90,16.970,188.8,10.2,0.90,17.320,189.0 +11.6,0.90,16.150,190.0,11.5,0.90,16.370,190.3 +12.8,0.90,16.500,195.4,12.6,0.90,16.690,195.7 +14.9,0.90,15.950,194.8,14.7,0.90,16.080,195.0 +17.9,0.90,13.830,197.5,17.7,0.90,13.980,197.7 +20.6,0.90,12.490,204.4,20.4,0.90,12.630,204.7 +22.9,0.90,11.090,225.2,22.7,0.90,11.230,225.6 +24.3,0.90,10.610,244.7,24.1,0.90,10.800,245.0 +25.3,0.89,12.000,262.4,25.1,0.89,12.210,262.2 +25.8,0.89,10.860,260.5,25.6,0.89,11.050,261.0 +25.6,0.89,10.920,274.8,25.5,0.89,11.570,274.8 +25.6,0.89,12.520,260.9,25.5,0.89,13.000,261.4 +25.3,0.89,12.210,274.1,25.3,0.89,13.380,276.5 +25.0,0.89,11.130,273.1,24.9,0.89,11.740,276.9 +23.1,0.89,11.370,219.7,23.0,0.89,12.300,220.1 +21.4,0.89,11.830,226.8,21.4,0.89,12.750,229.6 +20.6,0.89,12.370,229.4,21.1,0.89,12.830,235.2 +21.4,0.90,9.980,261.6,22.1,0.90,10.330,271.5 +22.2,0.90,11.350,300.6,22.1,0.90,12.010,306.2 +20.6,0.90,10.920,315.2,20.5,0.90,11.470,321.7 +15.5,0.90,10.480,352.7,15.4,0.90,10.550,352.6 +11.0,0.90,8.100,358.5,10.8,0.90,8.210,358.8 +9.2,0.90,9.320,8.8,9.0,0.90,9.420,8.1 +8.5,0.90,7.560,12.0,8.3,0.90,7.690,12.4 +8.3,0.90,9.180,16.7,8.2,0.90,9.270,16.8 +7.7,0.90,8.640,10.4,7.5,0.90,8.690,10.4 +7.0,0.90,8.750,10.8,6.8,0.90,8.780,10.8 +6.5,0.90,8.370,18.7,6.3,0.90,8.380,18.7 +6.4,0.90,7.950,13.2,6.2,0.90,7.970,13.1 +6.4,0.90,7.790,11.6,6.3,0.90,7.810,11.5 +6.4,0.90,7.120,17.7,6.3,0.90,7.140,17.6 +6.3,0.90,6.560,20.1,6.1,0.90,6.560,20.0 +6.3,0.90,5.230,25.6,6.1,0.90,5.230,25.6 +6.5,0.90,4.770,23.4,6.3,0.90,4.750,23.4 +6.1,0.90,6.490,15.0,5.9,0.90,6.500,14.8 +5.8,0.90,5.520,36.5,5.6,0.90,5.520,36.6 +5.6,0.90,5.240,64.7,5.6,0.90,5.530,64.3 +6.2,0.90,5.160,86.5,6.5,0.90,5.610,85.5 +5.6,0.90,5.890,43.9,5.5,0.90,6.090,46.1 +5.7,0.90,5.480,54.0,5.7,0.90,5.760,55.9 +5.4,0.90,5.800,57.5,5.2,0.90,6.030,57.8 +4.8,0.90,5.480,76.9,4.8,0.90,5.870,77.3 +5.0,0.90,5.000,78.7,5.0,0.90,5.880,80.1 +5.1,0.90,5.150,14.6,4.9,0.90,5.100,19.1 +6.2,0.90,3.780,74.6,6.3,0.90,4.310,74.1 +5.3,0.90,1.790,63.0,5.2,0.90,2.070,75.2 +6.9,0.90,2.710,142.3,7.0,0.90,3.030,141.6 +7.2,0.90,1.280,190.3,7.1,0.90,1.810,177.9 +7.4,0.90,3.080,60.7,7.5,0.90,3.210,59.4 +9.0,0.90,2.740,142.5,8.8,0.90,2.780,143.8 +11.5,0.90,6.860,179.0,11.3,0.90,6.900,179.2 +14.2,0.90,8.350,197.0,14.0,0.90,8.400,197.3 +17.0,0.90,5.670,224.8,16.8,0.90,5.710,225.5 +18.5,0.90,5.020,230.3,18.3,0.90,5.060,230.7 +21.5,0.90,7.090,267.2,21.3,0.90,7.270,267.5 +21.8,0.90,4.430,274.8,21.5,0.90,4.540,275.2 +23.2,0.90,11.130,284.2,23.0,0.90,11.310,284.1 +23.4,0.90,14.800,274.5,23.2,0.90,15.060,274.6 +23.1,0.90,11.470,277.6,22.9,0.90,11.990,277.5 +22.3,0.90,11.550,289.5,22.2,0.90,12.340,291.6 +15.7,0.90,6.730,19.1,15.6,0.90,6.800,22.6 +16.0,0.90,6.150,8.6,16.4,0.90,7.080,354.8 +7.5,0.90,12.280,356.6,7.3,0.90,12.470,356.6 +8.4,0.90,11.840,350.7,8.3,0.90,12.490,351.0 +6.0,0.90,15.390,354.6,5.8,0.90,15.660,354.9 +3.8,0.91,13.010,356.0,3.6,0.91,13.350,355.9 +2.1,0.91,14.830,3.8,1.9,0.91,15.210,3.6 +1.7,0.91,14.040,357.6,1.5,0.91,14.520,357.8 +1.1,0.91,17.980,349.8,0.9,0.91,18.510,350.1 +0.1,0.91,16.750,352.4,-0.0,0.91,17.290,352.7 +-0.4,0.91,13.360,343.2,-0.6,0.91,14.110,343.1 +-0.8,0.91,11.500,343.4,-0.9,0.91,12.000,343.2 +-1.0,0.91,12.340,349.4,-1.2,0.91,12.570,349.5 +-0.5,0.91,11.560,349.4,-0.7,0.91,11.720,349.4 +0.4,0.91,10.450,349.6,0.2,0.91,10.590,349.6 +1.7,0.91,10.020,349.5,1.4,0.91,10.150,349.4 +3.1,0.91,8.870,346.1,2.8,0.91,8.980,345.9 +4.3,0.91,8.170,345.5,4.0,0.91,8.270,345.3 +5.2,0.91,8.440,350.4,5.0,0.91,8.540,350.2 +5.8,0.91,8.080,353.2,5.6,0.91,8.170,353.2 +6.4,0.91,7.530,356.2,6.2,0.91,7.620,356.2 +6.6,0.91,7.290,4.6,6.4,0.91,7.370,4.1 +6.5,0.91,6.900,12.3,6.3,0.91,7.000,12.1 +6.1,0.91,7.560,22.6,5.9,0.91,7.700,22.9 +5.5,0.91,8.150,33.5,5.4,0.91,8.540,35.4 +5.0,0.91,8.960,48.1,4.9,0.91,9.400,48.3 +3.9,0.91,8.450,58.1,3.9,0.91,9.620,57.6 +2.9,0.91,8.340,64.6,2.9,0.91,9.430,63.0 +2.2,0.91,8.420,66.7,2.2,0.91,9.610,65.6 +1.6,0.91,8.810,66.7,1.5,0.91,9.850,66.8 +0.5,0.91,8.700,73.0,0.5,0.91,9.570,73.0 +-0.1,0.91,8.090,73.1,-0.1,0.91,8.980,73.0 +-0.6,0.91,7.910,71.6,-0.6,0.91,8.690,71.9 +-1.1,0.91,7.180,61.4,-1.1,0.91,7.750,62.0 +-1.5,0.91,6.510,50.9,-1.4,0.91,7.080,51.3 +-1.8,0.92,6.110,46.0,-1.7,0.92,6.700,46.6 +-1.9,0.92,5.300,43.2,-2.0,0.92,6.050,43.4 +-0.4,0.92,5.600,44.6,-0.6,0.92,5.660,44.7 +0.9,0.92,5.650,41.3,0.7,0.92,5.710,41.4 +2.1,0.92,5.490,42.8,1.9,0.92,5.520,42.8 +3.2,0.92,4.710,43.2,3.0,0.92,4.730,43.1 +4.3,0.92,3.710,45.9,4.1,0.92,3.720,45.6 +5.3,0.92,3.480,34.3,5.1,0.92,3.490,34.1 +6.0,0.92,3.370,24.6,5.8,0.92,3.370,24.7 +6.4,0.91,3.150,28.3,6.2,0.91,3.140,28.3 +6.7,0.91,3.400,48.2,6.5,0.91,3.420,47.5 +6.7,0.92,3.720,22.6,6.5,0.92,3.720,22.5 +6.3,0.92,5.030,60.1,6.1,0.92,5.030,58.3 +5.7,0.92,5.240,61.9,5.6,0.92,5.280,61.0 +5.8,0.92,5.170,53.2,5.6,0.92,5.060,53.6 +4.7,0.92,4.570,72.0,4.8,0.92,5.050,70.7 +4.5,0.92,5.070,76.4,4.6,0.92,5.310,76.8 +4.8,0.92,4.290,90.3,4.6,0.92,4.210,88.7 +4.7,0.92,4.250,108.9,4.7,0.92,4.040,106.5 +5.0,0.92,4.000,135.9,5.0,0.92,3.730,133.6 +4.3,0.92,6.120,146.7,4.4,0.92,5.680,147.7 +3.9,0.92,7.690,157.9,4.0,0.92,7.450,158.1 +4.6,0.92,8.020,163.9,4.7,0.92,8.010,164.4 +3.5,0.92,8.440,179.1,3.8,0.92,8.440,177.2 +3.6,0.92,8.880,185.4,3.9,0.92,9.050,183.8 +4.0,0.92,8.430,186.0,4.4,0.92,8.960,184.9 +4.6,0.92,7.170,185.2,4.5,0.92,7.320,184.9 +6.1,0.92,7.960,185.5,5.9,0.92,8.020,185.5 +7.5,0.92,7.560,187.5,7.3,0.92,7.630,187.5 +8.9,0.92,7.290,188.4,8.7,0.92,7.360,188.4 +10.1,0.92,6.930,187.9,9.9,0.92,7.020,188.0 +11.3,0.92,6.760,187.4,11.1,0.92,6.830,187.1 +12.3,0.91,7.540,180.0,12.1,0.91,7.620,180.1 +13.2,0.91,7.590,183.9,13.0,0.91,7.680,183.9 +13.6,0.91,8.910,189.4,13.3,0.91,9.020,189.0 +13.6,0.91,9.060,182.6,13.5,0.91,9.260,182.8 +13.4,0.91,11.620,169.7,13.3,0.91,12.280,170.4 +12.5,0.91,12.450,166.6,12.5,0.91,13.170,166.7 +11.0,0.91,13.160,169.3,11.1,0.91,13.860,169.9 +9.8,0.91,13.730,174.7,9.9,0.91,14.500,175.5 +8.8,0.91,13.690,184.1,8.9,0.91,14.520,185.7 +8.5,0.91,16.160,190.8,8.6,0.91,17.200,191.3 +8.2,0.91,18.140,191.3,8.3,0.91,18.980,191.5 +7.6,0.91,17.900,194.0,7.6,0.91,18.660,194.4 +7.7,0.91,18.800,196.3,7.7,0.91,19.570,196.5 +7.0,0.91,18.340,193.5,7.1,0.91,19.080,193.9 +6.3,0.91,18.050,191.5,6.3,0.91,18.790,192.0 +5.8,0.91,17.920,191.0,5.8,0.91,18.680,191.4 +5.7,0.91,18.120,195.3,5.7,0.91,18.900,195.7 +6.0,0.91,17.690,195.9,5.9,0.91,18.730,195.8 +7.3,0.91,17.350,194.7,7.1,0.91,17.620,194.8 +8.8,0.91,17.030,194.9,8.6,0.91,17.200,195.0 +10.8,0.91,16.190,194.4,10.6,0.91,16.360,194.4 +12.8,0.91,15.830,194.1,12.6,0.91,16.010,194.2 +14.4,0.91,14.030,192.8,14.2,0.91,14.200,192.8 +15.6,0.91,12.830,191.4,15.4,0.91,12.980,191.5 +16.6,0.91,12.500,190.2,16.4,0.91,12.650,190.3 +17.4,0.91,12.260,189.2,17.2,0.91,12.410,189.3 +17.6,0.91,12.960,188.0,17.4,0.91,13.120,188.1 +17.0,0.91,13.370,188.8,16.8,0.91,13.580,188.6 +16.0,0.91,14.870,185.2,16.0,0.91,15.640,185.4 +14.6,0.91,15.920,185.5,14.5,0.91,16.540,185.7 +12.8,0.91,17.090,188.3,12.7,0.91,17.710,188.5 +11.0,0.91,18.690,192.4,10.8,0.91,19.340,192.8 +9.8,0.91,18.090,192.2,9.7,0.91,18.730,192.6 +9.2,0.91,17.360,193.6,9.1,0.91,18.140,194.3 +8.8,0.91,16.890,191.4,8.8,0.91,17.650,192.4 +8.7,0.91,16.490,193.2,8.7,0.91,17.250,194.4 +8.8,0.91,17.880,196.9,8.8,0.91,18.630,197.4 +8.9,0.91,18.240,200.1,8.8,0.91,18.820,200.4 +8.8,0.91,18.540,199.6,8.7,0.91,19.220,200.1 +9.5,0.91,16.530,197.0,9.3,0.91,16.960,197.2 +9.9,0.91,14.700,194.4,9.8,0.91,15.100,194.5 +10.6,0.91,15.520,193.5,10.5,0.91,15.970,193.7 +11.5,0.91,14.270,195.3,11.3,0.91,14.650,195.6 +12.6,0.91,13.080,194.8,12.4,0.91,13.270,195.0 +13.9,0.91,13.450,193.5,13.7,0.91,13.570,193.5 +16.0,0.91,10.950,194.4,15.8,0.91,11.070,194.5 +17.8,0.91,9.620,187.7,17.6,0.91,9.730,188.1 +19.5,0.91,9.700,190.6,19.3,0.91,9.810,190.8 +20.7,0.91,8.850,187.7,20.5,0.91,8.970,187.8 +21.4,0.91,9.050,184.2,21.2,0.91,9.170,184.4 +21.7,0.91,9.220,188.2,21.5,0.91,9.340,187.9 +21.2,0.91,10.440,178.6,21.0,0.91,10.620,178.5 +20.8,0.91,11.590,180.6,20.8,0.91,12.250,181.4 +18.4,0.91,15.550,181.6,18.3,0.91,16.220,181.8 +17.2,0.91,16.560,188.5,17.2,0.91,17.260,189.2 +16.3,0.91,17.220,190.4,16.2,0.91,17.860,190.5 +15.6,0.91,16.840,197.0,15.5,0.91,17.460,197.1 +14.8,0.91,17.120,193.2,14.8,0.91,17.810,193.6 +14.3,0.91,17.690,194.7,14.1,0.91,18.150,194.8 +14.1,0.91,17.450,197.5,13.9,0.91,17.990,197.6 +14.1,0.91,18.570,201.3,13.9,0.91,19.040,201.1 +14.2,0.91,15.570,198.7,14.0,0.91,16.000,198.8 +14.3,0.91,16.780,202.5,14.1,0.91,17.180,202.7 +14.0,0.91,14.800,197.6,13.8,0.91,15.150,197.9 +14.0,0.91,15.230,207.1,13.9,0.91,15.610,207.1 +14.2,0.91,13.690,202.9,14.0,0.91,14.080,203.2 +15.1,0.91,15.740,206.0,14.9,0.91,15.910,206.0 +16.5,0.91,7.120,206.9,16.3,0.91,7.250,206.9 +17.5,0.91,6.830,198.2,17.3,0.91,6.900,198.1 +19.0,0.91,7.560,191.8,18.8,0.91,7.630,191.8 +20.4,0.91,8.270,188.3,20.1,0.91,8.360,188.4 +21.4,0.91,8.570,191.7,21.1,0.91,8.640,191.4 +22.3,0.91,9.170,186.8,22.1,0.91,9.280,186.9 +22.9,0.91,9.300,185.2,22.7,0.91,9.460,185.3 +22.8,0.91,9.950,179.3,22.6,0.91,10.120,179.1 +22.1,0.91,8.670,166.8,21.9,0.91,9.030,167.1 +13.4,0.91,20.320,289.4,13.3,0.91,20.560,289.6 +14.0,0.91,5.920,112.8,13.8,0.91,5.930,112.6 +15.3,0.91,8.980,168.2,15.7,0.91,9.420,172.2 +15.1,0.91,4.840,342.1,15.2,0.91,4.900,339.5 +15.7,0.91,8.540,168.8,15.7,0.91,8.950,171.8 +15.2,0.91,7.420,159.1,15.3,0.91,8.340,161.4 +14.4,0.91,6.580,137.4,14.4,0.91,6.980,140.7 +14.8,0.91,10.780,169.5,14.8,0.91,11.360,169.4 +13.9,0.91,11.290,168.1,13.9,0.91,12.180,168.1 +14.2,0.91,14.470,180.1,14.2,0.91,14.960,180.5 +14.0,0.91,14.220,187.3,14.0,0.91,14.640,188.0 +13.7,0.91,13.720,198.0,13.7,0.91,14.130,198.8 +13.9,0.91,14.330,200.9,13.9,0.91,14.790,201.3 +13.6,0.91,14.570,202.3,13.5,0.91,14.920,202.5 +14.4,0.91,13.560,212.4,14.3,0.91,13.900,212.8 +15.8,0.91,12.960,214.4,15.7,0.91,13.040,214.5 +17.8,0.91,11.570,210.9,17.6,0.91,11.630,211.1 +19.8,0.91,8.270,219.6,19.6,0.91,8.340,219.6 +21.6,0.91,5.670,219.2,21.3,0.91,5.720,219.6 +23.3,0.91,5.190,222.4,23.1,0.91,5.240,222.9 +24.9,0.91,4.410,225.0,24.7,0.91,4.450,225.6 +26.0,0.90,3.620,217.8,25.8,0.90,3.660,219.0 +27.0,0.90,4.370,279.4,26.8,0.90,4.460,279.2 +26.8,0.90,5.150,275.5,26.7,0.90,5.140,275.9 +21.6,0.90,5.630,59.4,21.8,0.90,5.800,56.4 +22.8,0.90,8.400,74.0,22.6,0.90,8.430,73.4 +23.4,0.90,3.410,110.4,23.6,0.90,3.000,111.8 +22.9,0.90,3.850,129.2,22.9,0.90,3.710,132.3 +18.9,0.90,9.470,140.0,19.1,0.90,9.840,140.7 +19.8,0.90,8.420,181.5,20.4,0.90,7.860,190.2 +19.2,0.90,9.850,183.3,19.5,0.90,9.930,188.5 +18.6,0.90,12.050,190.5,18.8,0.90,12.540,192.7 +18.9,0.90,12.440,193.2,19.1,0.90,12.840,195.2 +18.7,0.90,12.260,201.4,18.8,0.90,12.700,203.1 +18.9,0.90,10.790,211.8,19.1,0.90,11.270,214.1 +18.7,0.90,3.630,276.9,18.6,0.90,4.160,270.5 +14.5,0.91,9.150,12.8,14.3,0.91,9.760,15.6 +14.1,0.91,10.770,21.9,13.9,0.91,10.930,22.1 +13.8,0.91,10.440,29.6,13.7,0.91,10.540,29.8 +14.2,0.91,11.270,38.0,14.0,0.91,11.390,38.1 +14.9,0.91,10.800,36.5,14.7,0.91,10.910,36.6 +16.4,0.91,9.450,39.8,16.2,0.91,9.560,39.9 +17.7,0.91,8.920,43.4,17.4,0.91,9.000,43.4 +18.6,0.91,7.800,42.1,18.4,0.91,7.890,42.3 +19.1,0.91,7.490,53.3,18.9,0.91,7.550,53.0 +19.6,0.91,6.830,41.4,19.4,0.91,6.910,41.4 +19.6,0.91,5.920,51.3,19.4,0.91,5.990,51.5 +19.3,0.91,5.480,58.1,19.1,0.91,5.500,58.1 +19.0,0.91,4.780,45.8,18.8,0.91,4.790,46.1 +18.7,0.91,5.920,52.7,18.6,0.91,5.920,52.9 +17.9,0.91,6.020,69.4,17.9,0.91,6.570,68.7 +17.1,0.91,4.660,69.6,17.1,0.91,5.190,72.2 +16.9,0.91,4.760,84.2,16.9,0.91,4.950,85.0 +16.5,0.91,5.070,88.1,16.5,0.91,5.050,90.5 +16.7,0.91,5.990,110.8,16.6,0.91,5.580,110.8 +16.6,0.91,7.760,136.7,16.5,0.91,7.500,137.8 +16.8,0.91,6.600,139.2,16.9,0.91,6.350,141.0 +16.3,0.91,8.230,143.8,16.4,0.91,7.840,146.4 +15.9,0.91,8.200,154.6,15.9,0.91,7.940,156.7 +15.6,0.91,9.060,157.9,15.7,0.91,8.870,159.3 +15.2,0.91,9.610,162.2,15.4,0.91,9.630,163.3 +14.6,0.91,8.600,167.9,15.0,0.91,9.360,167.1 +16.3,0.91,7.150,171.9,16.1,0.91,7.260,171.6 +17.8,0.91,7.630,165.7,17.7,0.91,7.690,165.8 +18.5,0.91,7.240,162.4,18.3,0.91,7.290,162.5 +19.6,0.91,7.220,166.3,19.4,0.91,7.270,166.3 +21.3,0.91,6.810,165.6,21.1,0.91,6.880,165.6 +22.6,0.91,6.800,162.9,22.4,0.91,6.880,162.9 +23.5,0.91,7.000,163.6,23.3,0.91,7.080,163.6 +23.9,0.91,8.290,163.9,23.7,0.91,8.390,164.0 +23.8,0.90,10.440,156.5,23.6,0.90,10.600,156.6 +24.1,0.90,9.880,161.3,23.9,0.90,10.060,161.4 +23.1,0.90,11.810,150.4,22.9,0.90,12.400,150.4 +22.0,0.90,11.550,158.7,21.9,0.90,12.190,158.6 +14.8,0.91,11.670,14.5,14.8,0.91,12.310,14.3 +14.6,0.91,6.170,43.6,14.5,0.91,6.820,41.9 +14.3,0.91,9.250,82.9,14.2,0.91,9.650,82.4 +14.4,0.91,7.880,107.0,14.3,0.91,8.460,107.1 +14.9,0.91,7.980,134.5,14.9,0.91,8.550,135.9 +15.8,0.90,10.240,148.7,15.8,0.90,10.990,149.2 +15.3,0.91,9.120,142.6,15.3,0.91,9.660,143.3 +15.3,0.90,8.100,151.0,15.3,0.90,8.730,151.9 +15.6,0.91,7.020,150.7,15.5,0.91,7.440,152.0 +15.7,0.91,6.060,156.9,15.5,0.91,6.420,158.0 +15.9,0.91,4.830,172.5,15.7,0.91,5.090,172.9 +16.4,0.91,3.650,195.0,16.3,0.91,4.130,197.3 +12.2,0.91,4.960,45.6,12.4,0.91,4.730,46.2 +12.0,0.91,4.770,54.6,11.9,0.91,4.840,54.9 +12.3,0.91,5.070,70.2,12.2,0.91,5.220,71.1 +13.3,0.91,6.300,53.8,13.1,0.91,6.360,54.2 +8.9,0.91,7.320,34.4,8.7,0.91,7.330,34.6 +8.0,0.91,8.310,28.3,7.8,0.91,8.310,28.5 +7.9,0.91,8.500,28.7,7.7,0.91,8.520,28.8 +7.6,0.91,9.520,33.5,7.4,0.91,9.560,33.6 +7.2,0.91,10.570,39.6,7.0,0.91,10.650,39.7 +6.3,0.91,8.430,1.3,6.1,0.91,8.480,1.4 +5.6,0.91,5.990,28.2,5.4,0.91,6.020,28.3 +5.2,0.91,9.990,74.0,5.0,0.91,10.310,74.0 +5.1,0.91,10.870,18.1,4.9,0.91,11.020,18.3 +4.2,0.91,10.920,19.5,4.0,0.91,11.050,19.8 +3.9,0.91,10.710,26.2,3.7,0.91,10.860,26.3 +3.4,0.91,9.800,32.9,3.2,0.91,9.950,32.8 +3.0,0.91,9.120,28.2,2.8,0.91,9.220,28.3 +2.9,0.91,8.860,21.9,2.7,0.91,8.960,22.2 +2.7,0.91,9.460,7.6,2.5,0.91,9.600,7.6 +2.3,0.91,8.940,8.3,2.1,0.91,9.040,8.3 +2.0,0.91,9.920,4.0,1.8,0.91,10.010,4.3 +1.8,0.91,8.710,20.8,1.6,0.91,8.810,20.8 +1.8,0.91,7.120,40.4,1.6,0.91,7.220,40.5 +1.9,0.91,7.800,12.9,1.7,0.91,7.880,13.0 +2.0,0.91,6.540,16.0,1.9,0.91,6.630,15.9 +2.3,0.91,6.410,358.0,2.1,0.91,6.470,358.2 +1.9,0.91,8.160,352.2,1.7,0.91,8.260,352.1 +2.3,0.91,7.170,351.0,2.1,0.91,7.250,351.0 +2.5,0.91,6.330,354.6,2.4,0.91,6.380,354.0 +2.4,0.91,8.060,351.7,2.2,0.91,8.160,351.5 +2.8,0.91,7.900,341.7,2.6,0.91,7.970,341.8 +3.0,0.91,7.620,342.3,2.8,0.91,7.720,342.1 +2.7,0.91,7.890,350.9,2.5,0.91,7.960,351.0 +2.5,0.91,5.850,356.0,2.3,0.91,5.880,355.6 +2.4,0.91,5.960,353.6,2.2,0.91,6.000,353.4 +2.3,0.91,6.570,348.3,2.1,0.91,6.660,348.4 +2.2,0.91,5.300,358.1,2.0,0.91,5.350,358.1 +2.1,0.91,6.320,358.1,1.9,0.91,6.430,358.0 +1.8,0.91,6.500,357.7,1.6,0.91,6.570,357.5 +1.8,0.91,5.050,352.0,1.6,0.91,5.090,351.9 +1.6,0.91,5.660,354.9,1.4,0.91,5.780,354.4 +0.8,0.91,7.800,351.0,0.7,0.91,8.110,351.6 +0.1,0.91,7.290,341.4,0.0,0.91,7.490,341.5 +-0.4,0.91,8.400,349.9,-0.5,0.91,8.830,350.7 +-0.7,0.91,8.120,343.3,-0.8,0.91,8.640,345.3 +-0.7,0.91,7.760,355.8,-0.8,0.91,8.140,357.8 +-0.7,0.91,8.190,346.1,-0.8,0.91,8.630,347.4 +-0.3,0.91,6.680,353.5,-0.5,0.91,6.770,353.5 +1.2,0.91,6.040,343.9,1.0,0.91,6.120,343.6 +3.4,0.91,5.990,343.4,3.2,0.91,6.050,343.0 +5.4,0.91,5.840,339.3,5.2,0.91,5.900,338.9 +7.5,0.91,5.850,339.9,7.2,0.91,5.920,339.4 +9.4,0.91,6.120,340.1,9.2,0.91,6.190,339.7 +11.0,0.91,6.490,337.9,10.8,0.91,6.570,337.6 +12.2,0.91,6.190,346.1,12.0,0.91,6.250,345.6 +13.1,0.91,6.150,344.3,12.8,0.91,6.220,344.0 +13.6,0.91,5.690,351.3,13.4,0.91,5.740,350.9 +13.5,0.91,5.210,9.3,13.3,0.91,5.250,8.7 +12.9,0.91,5.500,28.0,12.7,0.91,5.560,26.4 +12.2,0.91,5.810,35.0,12.1,0.91,5.630,32.3 +11.3,0.91,5.520,50.1,11.2,0.91,5.480,45.9 +10.4,0.91,4.950,61.9,10.2,0.91,4.690,58.9 +9.4,0.91,4.370,64.7,9.4,0.91,4.150,62.1 +9.0,0.91,2.780,75.9,9.1,0.91,2.710,73.1 +9.0,0.91,2.020,88.5,9.2,0.91,2.110,79.4 +9.3,0.91,2.630,182.4,9.5,0.91,2.290,180.1 +10.9,0.91,0.930,236.6,11.0,0.91,0.720,246.8 +10.7,0.91,1.090,148.4,10.8,0.91,1.050,154.3 +10.7,0.91,2.740,166.1,11.0,0.91,2.320,161.2 +9.0,0.91,5.850,174.7,9.6,0.91,5.160,171.8 +8.5,0.91,6.500,189.5,9.6,0.91,5.630,188.0 +8.2,0.91,8.230,195.1,9.3,0.91,8.380,195.6 +10.0,0.91,6.540,190.9,10.4,0.91,7.000,191.7 +11.8,0.91,6.900,186.5,11.6,0.91,6.880,186.6 +13.7,0.91,6.460,189.2,13.6,0.91,6.470,189.4 +15.4,0.91,6.990,186.5,15.2,0.91,7.030,186.6 +17.1,0.91,7.120,182.6,16.9,0.91,7.170,182.7 +18.4,0.91,7.680,181.4,18.2,0.91,7.740,181.5 +19.3,0.91,8.190,180.7,19.1,0.91,8.250,180.9 +20.0,0.91,8.720,172.6,19.8,0.91,8.830,172.8 +20.1,0.91,9.230,167.3,19.9,0.91,9.360,167.6 +20.0,0.91,9.830,159.3,19.8,0.91,10.060,159.5 +19.2,0.91,11.740,153.8,19.1,0.91,12.460,153.9 +18.3,0.91,13.420,154.9,18.2,0.91,14.180,155.0 +17.0,0.91,14.960,162.6,16.9,0.91,15.690,162.6 +15.9,0.91,15.950,165.1,15.8,0.91,16.650,165.1 +15.6,0.90,15.960,176.9,15.6,0.90,16.540,177.5 +15.5,0.90,17.670,185.4,15.4,0.90,18.320,185.7 +14.8,0.90,18.720,188.1,14.8,0.90,19.310,188.3 +14.2,0.90,19.250,188.2,14.1,0.90,19.850,188.4 +13.8,0.90,19.870,189.1,13.7,0.90,20.480,189.3 +13.3,0.90,19.380,189.7,13.2,0.90,19.980,190.0 +12.9,0.90,19.730,193.2,12.8,0.90,20.410,193.5 +12.8,0.90,18.910,195.5,12.8,0.90,19.700,196.2 +12.5,0.90,19.190,198.3,12.4,0.90,19.890,198.8 +12.6,0.90,17.160,201.8,12.4,0.90,17.580,202.0 +13.3,0.90,16.280,200.2,13.2,0.90,16.440,200.4 +15.2,0.90,14.370,202.9,15.0,0.90,14.490,203.1 +17.5,0.90,13.450,206.3,17.3,0.90,13.560,206.6 +19.8,0.90,12.580,209.5,19.6,0.90,12.700,209.7 +22.1,0.90,10.840,214.8,21.9,0.90,10.950,215.0 +24.2,0.90,9.700,221.0,24.0,0.90,9.800,221.3 +25.7,0.90,8.420,228.7,25.4,0.90,8.520,229.0 +26.6,0.90,6.640,224.2,26.4,0.90,6.730,224.6 +27.2,0.90,6.060,211.3,27.0,0.90,6.140,211.8 +27.2,0.90,6.600,184.3,27.0,0.90,6.820,185.3 +26.7,0.90,9.210,189.2,26.6,0.90,9.360,192.1 +24.5,0.90,10.710,180.7,24.6,0.90,11.320,184.3 +22.4,0.90,13.440,194.1,22.5,0.90,14.570,196.6 +21.0,0.90,11.170,182.7,21.0,0.90,11.490,186.7 +19.8,0.90,11.890,181.7,19.8,0.90,12.260,185.0 +18.7,0.90,11.810,189.4,18.6,0.90,12.180,193.0 +17.9,0.90,12.750,190.0,17.9,0.90,13.400,192.6 +17.4,0.90,12.790,191.0,17.5,0.90,13.390,193.6 +17.1,0.90,13.290,196.6,17.2,0.90,13.930,198.8 +16.5,0.90,13.540,193.5,16.6,0.90,14.050,195.5 +15.9,0.90,14.050,190.9,16.0,0.90,14.560,192.5 +15.5,0.90,14.600,193.5,15.5,0.90,15.200,194.9 +14.8,0.90,14.560,195.1,14.9,0.90,15.240,196.5 +14.9,0.90,13.850,200.5,14.8,0.90,14.740,201.3 +16.5,0.90,12.230,202.2,16.4,0.90,12.340,202.7 +18.6,0.90,11.540,200.0,18.4,0.90,11.610,200.3 +20.7,0.90,12.110,199.8,20.4,0.90,12.190,200.1 +22.7,0.90,11.920,198.0,22.5,0.90,12.030,198.2 +24.7,0.90,11.270,201.5,24.5,0.90,11.390,201.7 +26.1,0.90,10.880,203.2,25.9,0.90,11.020,203.5 +27.6,0.90,10.190,203.8,27.4,0.90,10.340,204.1 +28.6,0.90,10.540,215.7,28.4,0.90,10.700,216.0 +28.9,0.90,11.130,221.2,28.7,0.90,11.320,221.3 +28.6,0.90,10.270,209.7,28.5,0.90,10.660,210.0 +28.3,0.90,13.330,205.7,28.3,0.90,13.700,205.8 +27.5,0.90,14.620,202.9,27.6,0.90,15.160,203.8 +24.9,0.90,15.970,198.1,25.0,0.90,16.980,198.7 +22.4,0.90,14.230,188.1,22.5,0.90,15.090,189.7 +20.8,0.90,14.780,190.2,20.8,0.90,15.620,191.5 +19.7,0.90,14.650,187.9,19.7,0.90,15.440,189.8 +18.9,0.90,15.850,186.1,18.9,0.90,16.580,187.5 +17.9,0.90,15.690,189.3,17.9,0.90,16.490,190.5 +17.2,0.90,15.670,189.2,17.2,0.90,16.360,190.7 +16.7,0.90,15.710,191.0,16.7,0.90,16.400,192.2 +16.2,0.90,15.280,190.9,16.2,0.90,15.860,192.1 +15.8,0.90,15.920,189.9,15.8,0.90,16.260,190.2 +16.1,0.90,15.670,191.8,16.0,0.90,15.950,192.1 +16.3,0.90,14.900,195.9,16.1,0.90,15.640,196.5 +17.1,0.90,14.940,197.7,16.9,0.90,15.210,198.0 +18.0,0.90,15.030,198.6,17.8,0.90,15.180,198.6 +19.1,0.90,15.710,193.8,18.9,0.90,15.840,194.0 +20.2,0.90,14.570,192.1,20.0,0.90,14.690,192.3 +21.7,0.90,14.150,195.0,21.5,0.90,14.280,194.9 +23.0,0.90,13.080,191.3,22.7,0.90,13.200,191.5 +24.5,0.90,11.580,189.2,24.3,0.90,11.720,189.4 +25.4,0.90,11.280,182.9,25.2,0.90,11.450,183.1 +26.2,0.90,11.690,180.0,26.0,0.90,11.880,180.2 +26.3,0.89,12.320,176.7,26.1,0.89,12.650,176.7 +22.9,0.89,13.540,153.5,22.8,0.89,14.310,153.8 +21.2,0.89,16.090,158.0,21.0,0.89,16.820,158.3 +20.2,0.90,15.290,161.5,20.1,0.90,15.990,161.7 +20.1,0.89,15.790,168.6,20.0,0.89,16.620,168.7 +18.5,0.89,17.400,166.3,18.4,0.89,18.110,166.5 +17.9,0.89,15.580,168.6,17.7,0.89,16.430,168.6 +17.6,0.89,17.020,170.0,17.4,0.89,17.820,170.1 +17.5,0.90,16.300,171.8,17.4,0.90,17.090,171.9 +17.4,0.89,17.220,175.3,17.2,0.89,18.000,175.6 +17.4,0.89,16.510,177.7,17.2,0.89,17.240,177.7 +17.3,0.89,14.750,180.3,17.1,0.89,15.290,180.4 +17.3,0.90,14.600,185.4,17.1,0.90,15.170,185.6 +17.0,0.90,15.510,190.3,16.9,0.90,16.030,190.3 +16.8,0.90,14.310,190.4,16.6,0.90,14.930,190.7 +17.7,0.90,14.670,196.4,17.5,0.90,14.920,196.6 +19.4,0.90,11.570,198.0,19.2,0.90,11.730,198.3 +21.9,0.90,10.050,213.7,21.7,0.90,10.240,213.9 +23.5,0.90,10.720,217.4,23.3,0.90,10.870,217.5 +25.2,0.90,9.400,221.1,25.0,0.90,9.520,221.2 +26.1,0.90,8.300,219.1,25.9,0.90,8.410,219.1 +26.9,0.90,7.270,204.3,26.7,0.90,7.390,204.5 +28.1,0.89,7.720,199.8,27.9,0.89,7.830,200.2 +28.7,0.89,8.870,199.3,28.5,0.89,8.990,199.4 +28.7,0.89,9.000,205.5,28.6,0.89,9.280,205.7 +28.6,0.89,9.630,196.4,28.4,0.89,9.680,196.5 +26.2,0.90,6.690,9.0,26.1,0.90,6.750,9.1 +23.6,0.90,3.070,144.9,23.7,0.90,2.770,140.6 +14.1,0.90,15.980,353.7,14.0,0.90,16.430,353.7 +11.3,0.90,11.910,13.9,11.1,0.90,12.110,13.6 +7.8,0.90,12.330,9.1,7.6,0.90,12.500,8.8 +4.6,0.90,12.060,3.5,4.4,0.90,12.220,2.8 +3.4,0.90,12.130,7.9,3.2,0.90,12.390,7.4 +2.6,0.90,12.690,3.4,2.4,0.90,12.890,3.4 +2.0,0.90,12.070,10.4,1.9,0.90,12.350,10.5 +1.7,0.90,11.290,6.9,1.5,0.90,11.430,7.0 +1.5,0.90,10.070,8.0,1.4,0.90,10.170,8.1 +1.0,0.90,10.380,29.5,0.8,0.90,10.460,29.2 +1.0,0.90,9.760,16.1,0.8,0.90,9.840,15.7 +0.5,0.91,12.870,0.3,0.3,0.91,12.970,0.4 +1.1,0.91,10.840,355.0,0.9,0.91,10.930,354.9 +2.0,0.91,9.720,354.5,1.8,0.91,9.800,354.2 +3.8,0.91,9.180,357.4,3.5,0.91,9.250,357.1 +5.9,0.91,8.380,355.3,5.7,0.91,8.470,355.2 +7.3,0.91,8.310,353.1,7.1,0.91,8.390,353.2 +8.2,0.90,7.610,358.9,8.0,0.90,7.670,358.6 +8.9,0.90,7.630,359.6,8.7,0.90,7.700,359.3 +9.0,0.90,6.940,359.8,8.8,0.90,7.010,359.7 +8.9,0.90,6.720,355.1,8.7,0.90,6.780,355.7 +8.3,0.90,7.670,353.7,8.1,0.90,7.800,354.4 +7.6,0.90,7.200,22.7,7.5,0.90,7.460,22.0 +7.4,0.90,8.300,18.6,7.2,0.90,8.620,19.0 +6.8,0.91,8.460,33.9,6.7,0.91,8.800,33.8 +6.4,0.90,9.800,30.1,6.2,0.90,9.800,29.3 +5.8,0.91,9.870,36.2,5.6,0.91,10.030,36.7 +5.2,0.91,10.460,42.0,5.0,0.91,10.720,42.3 +4.6,0.91,10.200,45.6,4.5,0.91,10.390,44.6 +4.0,0.91,9.030,55.6,3.8,0.91,9.280,53.9 +3.4,0.90,8.130,51.0,3.2,0.90,8.220,49.7 +2.9,0.90,7.600,42.8,2.7,0.90,7.760,42.3 +2.5,0.90,7.560,39.0,2.3,0.90,7.550,39.9 +1.8,0.90,5.660,44.8,1.7,0.90,5.920,43.7 +2.0,0.90,3.660,45.9,1.8,0.90,3.760,45.6 +3.4,0.90,2.810,47.5,3.2,0.90,2.810,47.6 +5.4,0.90,2.180,50.7,5.2,0.90,2.150,51.4 +7.7,0.90,0.610,113.6,7.5,0.90,0.620,119.8 +10.1,0.90,1.510,187.8,9.9,0.90,1.560,188.0 +12.0,0.90,3.430,207.8,11.8,0.90,3.460,208.3 +13.2,0.90,4.230,226.5,12.9,0.90,4.250,227.0 +14.4,0.90,5.240,234.9,14.2,0.90,5.300,235.4 +15.5,0.90,5.240,244.7,15.3,0.90,5.310,245.1 +16.1,0.90,4.100,231.5,15.9,0.90,4.170,232.3 +16.7,0.90,2.890,249.0,16.5,0.90,2.990,249.8 +15.6,0.90,4.540,146.6,15.5,0.90,4.390,146.4 +15.2,0.90,5.210,144.3,15.1,0.90,4.800,144.6 +15.5,0.90,5.660,160.3,15.4,0.90,5.580,161.0 +15.1,0.90,6.100,174.6,15.1,0.90,5.770,175.4 +14.8,0.90,7.950,175.5,14.9,0.90,7.700,177.3 +14.3,0.90,10.290,173.6,14.4,0.90,10.340,174.1 +13.1,0.90,12.810,170.7,13.3,0.90,13.010,170.2 +13.1,0.90,13.320,169.7,13.3,0.90,13.640,169.1 +12.3,0.90,14.620,166.6,12.5,0.90,15.070,166.6 +11.8,0.90,12.980,175.4,12.1,0.90,13.170,175.8 +11.0,0.90,11.810,179.5,11.4,0.90,11.690,178.8 +12.4,0.90,10.200,193.7,13.2,0.90,10.110,197.2 +12.3,0.90,10.030,189.9,12.8,0.90,10.270,191.3 +12.6,0.90,9.510,192.6,13.2,0.90,10.120,193.5 +13.7,0.90,7.660,191.4,13.6,0.90,7.840,191.6 +15.5,0.91,6.810,184.5,15.3,0.91,6.840,184.5 +17.0,0.91,5.580,171.7,16.8,0.91,5.630,171.8 +18.2,0.90,5.640,165.0,18.0,0.90,5.700,165.1 +19.2,0.90,6.860,167.5,19.0,0.90,6.940,167.5 +19.9,0.90,7.740,168.3,19.7,0.90,7.820,168.4 +20.7,0.90,7.780,164.8,20.5,0.90,7.900,165.0 +21.7,0.90,8.460,166.9,21.5,0.90,8.600,167.0 +22.1,0.90,9.010,166.1,21.9,0.90,9.170,166.3 +22.1,0.90,9.500,165.2,21.9,0.90,9.710,165.4 +21.2,0.90,10.400,144.6,21.1,0.90,10.980,145.3 +20.0,0.90,12.790,144.2,20.0,0.90,13.730,144.6 +18.8,0.90,14.300,149.1,18.9,0.90,15.240,149.5 +17.7,0.90,14.610,159.4,17.7,0.90,15.530,159.9 +16.8,0.90,15.410,171.0,16.9,0.90,16.240,171.9 +16.1,0.90,16.290,176.4,16.1,0.90,17.180,176.6 +15.4,0.90,17.260,178.5,15.5,0.90,18.220,178.6 +14.8,0.90,17.590,175.6,14.8,0.90,18.480,175.6 +14.0,0.90,17.530,178.8,14.0,0.90,18.310,179.2 +13.4,0.90,16.370,181.9,13.4,0.90,17.130,182.3 +13.4,0.90,16.430,181.1,13.4,0.90,17.170,181.3 +13.0,0.90,16.830,183.2,13.0,0.90,17.520,183.5 +12.6,0.90,15.440,187.9,12.6,0.90,16.000,188.3 +12.4,0.90,14.090,184.0,12.3,0.90,14.700,184.3 +13.7,0.90,9.030,180.2,13.5,0.90,9.200,180.5 +15.3,0.90,8.520,183.4,15.1,0.90,8.640,183.5 +16.9,0.90,9.070,180.4,16.7,0.90,9.200,180.4 +18.1,0.90,9.660,179.7,17.9,0.90,9.780,179.8 +19.6,0.90,8.790,176.9,19.3,0.90,8.910,176.9 +20.6,0.90,8.950,172.8,20.4,0.90,9.070,172.9 +21.3,0.90,9.710,172.8,21.1,0.90,9.830,172.8 +21.7,0.90,9.950,171.1,21.5,0.90,10.110,171.2 +21.9,0.90,9.160,172.3,21.7,0.90,9.330,172.4 +21.9,0.90,9.660,169.5,21.7,0.90,9.870,169.5 +21.1,0.90,10.840,160.0,21.1,0.90,11.450,160.0 +19.7,0.90,12.820,164.5,19.7,0.90,13.690,164.5 +18.0,0.90,10.150,185.8,17.9,0.90,10.910,187.1 +17.5,0.90,10.330,193.9,17.6,0.90,11.200,193.9 +17.0,0.90,10.130,193.2,17.1,0.90,11.130,193.4 +17.0,0.90,13.150,193.9,17.0,0.90,13.880,193.9 +16.7,0.90,13.410,187.2,16.6,0.90,14.060,187.1 +15.7,0.90,15.850,187.1,15.6,0.90,16.510,187.1 +14.5,0.90,15.570,190.0,14.4,0.90,16.280,190.5 +13.7,0.90,15.560,194.6,13.6,0.90,16.330,195.3 +13.1,0.90,16.400,199.2,13.1,0.90,17.130,199.8 +13.1,0.90,17.120,200.2,13.1,0.90,17.940,200.9 +12.9,0.90,15.700,201.2,12.8,0.90,16.280,202.2 +13.6,0.90,13.610,201.8,13.5,0.90,14.170,203.3 +15.9,0.90,11.940,207.7,15.7,0.90,12.040,208.3 +18.8,0.90,10.580,213.7,18.6,0.90,10.660,214.2 +22.1,0.90,10.780,232.6,21.9,0.90,10.910,233.0 +24.5,0.90,10.590,251.2,24.3,0.90,10.770,251.3 +26.2,0.90,10.320,256.4,25.9,0.90,10.500,256.4 +27.0,0.90,10.160,252.8,26.8,0.90,10.320,252.6 +27.6,0.90,9.740,252.4,27.4,0.90,9.920,252.4 +28.0,0.90,10.650,245.8,27.8,0.90,10.780,246.1 +28.2,0.90,9.570,254.3,28.0,0.90,9.790,254.4 +27.9,0.90,8.270,241.8,27.8,0.90,8.600,242.0 +27.4,0.90,10.710,238.8,27.3,0.90,11.190,239.4 +27.2,0.90,13.420,242.2,27.4,0.90,14.190,244.2 +26.5,0.90,12.500,237.4,26.7,0.90,13.220,239.4 +26.7,0.90,15.110,245.4,26.9,0.90,16.060,247.1 +26.5,0.90,15.230,246.3,26.8,0.90,15.870,247.9 +26.0,0.90,15.380,247.5,26.4,0.90,16.170,249.8 +25.7,0.90,15.710,257.7,26.1,0.90,16.390,259.2 +21.4,0.90,10.140,220.2,22.1,0.90,10.650,232.4 +21.8,0.90,12.980,216.4,22.0,0.90,12.800,218.8 +23.3,0.90,15.780,229.9,23.6,0.90,16.320,228.9 +23.1,0.90,14.930,228.5,23.4,0.90,15.460,229.3 +21.5,0.90,17.750,222.9,21.6,0.90,18.860,223.1 +20.7,0.90,15.210,226.7,21.0,0.90,16.040,227.4 +21.7,0.90,10.520,232.2,22.5,0.90,11.550,234.2 +21.7,0.90,8.350,218.0,21.5,0.90,8.360,218.8 +23.8,0.90,8.230,223.7,23.6,0.90,8.310,223.9 +25.1,0.90,6.310,225.6,24.9,0.90,6.380,225.8 +26.6,0.90,6.390,222.9,26.4,0.90,6.450,223.1 +27.8,0.90,7.660,226.4,27.6,0.90,7.760,226.6 +28.5,0.90,7.330,221.5,28.3,0.90,7.440,221.6 +29.0,0.90,8.770,215.2,28.8,0.90,8.870,215.3 +29.2,0.90,9.300,211.3,29.0,0.90,9.430,211.5 +29.7,0.90,10.050,222.7,29.5,0.90,10.220,222.9 +29.2,0.90,9.970,226.5,29.0,0.90,10.230,226.5 +28.8,0.90,9.620,225.2,28.6,0.90,9.810,227.7 +28.5,0.90,10.690,226.2,28.4,0.90,11.190,226.4 +28.6,0.90,10.470,231.1,28.5,0.90,10.760,231.9 +28.4,0.90,11.650,237.9,28.4,0.90,11.800,238.4 +27.9,0.90,11.020,227.5,27.9,0.90,11.260,228.3 +27.3,0.90,10.310,214.1,27.3,0.90,10.420,213.2 +25.0,0.90,11.450,193.7,25.3,0.90,11.700,197.1 +23.5,0.90,13.290,191.5,23.4,0.90,13.960,193.1 +22.2,0.90,14.060,198.4,22.1,0.90,14.860,199.6 +21.1,0.90,13.380,199.2,21.1,0.90,14.120,200.8 +20.3,0.90,13.000,194.7,20.4,0.90,13.450,195.8 +19.3,0.90,13.730,189.9,19.3,0.90,14.220,190.8 +18.9,0.90,12.250,195.2,18.9,0.90,12.740,195.6 +19.3,0.90,10.370,199.2,19.2,0.90,10.650,199.3 +20.4,0.90,9.900,202.1,20.3,0.90,9.990,202.2 +22.1,0.90,6.600,202.5,21.9,0.90,6.670,202.5 +23.9,0.90,5.430,190.3,23.7,0.90,5.490,190.5 +25.3,0.90,4.380,169.2,25.1,0.90,4.440,169.2 +26.3,0.90,4.850,153.4,26.0,0.90,4.890,153.3 +26.8,0.90,5.640,138.2,26.6,0.90,5.690,138.5 +27.8,0.90,7.310,142.2,27.5,0.90,7.400,142.2 +28.5,0.90,8.030,141.2,28.3,0.90,8.180,141.3 +28.9,0.90,9.730,146.7,28.7,0.90,9.900,146.7 +28.0,0.90,13.210,143.3,27.8,0.90,13.460,143.5 +27.1,0.90,12.480,138.0,26.9,0.90,13.160,138.1 +25.7,0.90,14.890,145.1,25.6,0.90,15.630,145.3 +24.2,0.90,16.340,154.8,24.0,0.90,17.000,154.8 +23.1,0.90,14.850,161.4,22.9,0.90,15.470,161.5 +21.9,0.90,14.970,167.5,21.7,0.90,15.470,167.6 +21.0,0.90,16.480,174.0,20.8,0.90,17.040,173.9 +20.5,0.90,18.570,176.7,20.4,0.90,19.260,176.7 +20.5,0.90,17.660,182.7,20.3,0.90,18.300,182.6 +20.4,0.90,18.290,181.8,20.2,0.90,18.680,181.7 +19.9,0.90,17.420,184.2,19.7,0.90,17.690,184.2 +19.8,0.90,17.820,183.2,19.7,0.90,18.350,183.0 +20.1,0.90,17.130,186.1,19.9,0.90,17.620,186.1 +20.1,0.90,15.320,184.9,19.9,0.90,15.680,184.9 +20.2,0.90,16.500,187.5,20.0,0.90,16.790,187.6 +20.3,0.90,14.990,186.7,20.1,0.90,15.190,186.8 +21.1,0.90,14.720,188.0,20.9,0.90,14.910,188.1 +22.6,0.90,15.120,194.9,22.4,0.90,15.330,194.6 +23.6,0.90,14.920,188.8,23.4,0.90,15.100,189.0 +25.3,0.90,13.230,195.1,25.0,0.90,13.420,195.3 +26.8,0.90,11.920,193.4,26.5,0.90,12.090,193.6 +27.7,0.90,10.570,187.9,27.4,0.90,10.700,188.3 +28.8,0.90,11.280,197.0,28.5,0.90,11.420,196.9 +29.4,0.90,11.130,193.9,29.2,0.90,11.370,193.9 +27.6,0.89,3.060,226.6,27.6,0.89,3.680,219.3 +29.1,0.89,14.180,191.7,29.0,0.89,14.840,191.6 +26.0,0.89,12.780,174.1,25.9,0.89,13.770,174.8 +25.4,0.89,13.260,185.2,25.4,0.89,14.160,185.8 +24.7,0.90,13.060,189.1,24.6,0.90,13.960,190.2 +24.3,0.90,13.030,206.9,24.2,0.90,13.950,206.9 +20.2,0.90,9.180,295.9,20.2,0.90,9.970,294.9 +22.2,0.90,11.080,280.7,22.2,0.90,13.320,284.6 +19.8,0.90,16.190,305.9,19.8,0.90,17.190,306.4 +13.9,0.90,13.670,5.3,13.5,0.90,14.030,5.2 +9.1,0.90,10.710,350.8,8.8,0.90,11.290,350.2 +7.6,0.90,10.290,350.6,7.4,0.90,10.730,349.9 +5.9,0.90,13.450,350.8,5.7,0.90,13.940,350.6 +4.2,0.90,11.760,349.8,4.0,0.90,11.960,349.3 +3.3,0.91,12.900,347.1,3.1,0.91,13.060,347.1 +3.4,0.91,12.880,347.5,3.2,0.91,13.050,347.3 +4.6,0.91,11.670,343.5,4.4,0.91,11.810,343.5 +5.8,0.91,11.590,346.8,5.6,0.91,11.720,346.6 +7.2,0.91,10.470,346.8,7.0,0.91,10.610,346.6 +8.4,0.91,10.750,343.0,8.2,0.91,10.900,342.9 +9.4,0.91,10.970,340.6,9.2,0.91,11.130,340.6 +10.1,0.91,10.090,344.9,9.8,0.91,10.230,344.7 +10.5,0.91,9.960,343.3,10.3,0.91,10.110,343.1 +10.5,0.91,9.300,349.4,10.3,0.91,9.440,349.1 +10.5,0.91,9.970,351.9,10.3,0.91,10.120,351.8 +9.8,0.91,9.060,12.3,9.6,0.91,9.430,11.8 +9.2,0.91,10.650,11.0,9.1,0.91,11.350,11.3 +8.6,0.91,9.120,16.4,8.5,0.91,9.930,16.5 +8.3,0.91,9.860,23.6,8.2,0.91,10.290,24.6 +7.8,0.91,10.550,29.0,7.7,0.91,10.830,29.0 +7.1,0.91,13.700,19.8,7.0,0.91,14.490,20.7 +5.9,0.91,11.550,24.4,5.8,0.91,12.270,25.2 +5.3,0.91,10.540,26.1,5.2,0.91,11.110,26.7 +4.5,0.91,8.900,21.7,4.3,0.91,9.880,23.4 +3.7,0.91,9.740,30.9,3.7,0.91,10.680,30.9 +3.3,0.91,9.170,29.6,3.3,0.91,10.000,29.7 +3.3,0.91,8.230,25.2,3.2,0.91,8.580,24.6 +3.1,0.91,7.100,23.5,3.0,0.91,7.450,24.1 +3.6,0.91,4.920,14.0,3.4,0.91,5.070,13.7 +5.0,0.91,4.980,4.7,4.8,0.91,5.030,4.5 +6.7,0.92,4.040,357.3,6.5,0.92,4.080,357.0 +8.5,0.91,3.250,342.5,8.3,0.91,3.280,341.7 +9.9,0.91,3.800,305.4,9.7,0.91,3.830,305.6 +11.4,0.91,3.500,299.4,11.2,0.91,3.560,299.0 +12.8,0.91,3.710,295.8,12.6,0.91,3.760,295.3 +13.7,0.91,3.540,294.7,13.5,0.91,3.590,294.0 +14.4,0.91,3.570,272.3,14.2,0.91,3.610,271.8 +14.8,0.91,3.370,278.0,14.6,0.91,3.400,276.6 +14.9,0.91,4.070,240.2,14.7,0.91,4.090,240.6 +14.7,0.91,5.130,205.2,14.5,0.91,5.130,205.7 +14.4,0.91,6.050,187.2,14.3,0.91,6.100,189.1 +14.1,0.91,8.470,177.3,13.9,0.91,8.460,177.6 +13.2,0.91,10.710,169.4,13.2,0.91,10.800,170.1 +12.5,0.91,12.020,170.2,12.6,0.91,12.320,171.3 +11.7,0.91,13.790,172.7,12.0,0.91,14.480,173.5 +11.2,0.91,15.080,171.9,11.4,0.91,15.870,172.0 +10.3,0.91,15.790,174.1,10.5,0.91,16.600,174.5 +9.6,0.91,16.720,177.6,9.9,0.91,17.660,178.1 +9.2,0.91,17.350,179.0,9.4,0.91,18.230,179.5 +8.8,0.91,17.610,180.2,9.0,0.91,18.480,180.8 +7.9,0.91,18.310,181.0,8.1,0.91,19.190,181.5 +7.8,0.91,17.810,183.8,7.9,0.91,18.470,184.0 +7.9,0.91,15.740,182.5,7.8,0.91,16.500,182.6 +10.0,0.91,15.460,186.4,9.8,0.91,15.720,186.4 +12.0,0.91,16.010,184.3,11.8,0.91,16.210,184.4 +13.6,0.91,15.910,181.9,13.4,0.91,16.120,182.0 +15.4,0.91,15.240,181.9,15.2,0.91,15.480,182.0 +16.9,0.91,15.190,183.1,16.7,0.91,15.410,183.1 +17.8,0.91,15.210,177.8,17.5,0.91,15.460,178.1 +18.3,0.91,15.680,177.9,18.0,0.91,15.870,178.0 +18.6,0.91,15.150,179.0,18.4,0.91,15.250,179.1 +18.8,0.90,15.010,173.3,18.6,0.90,15.210,173.3 +18.6,0.90,13.300,171.8,18.4,0.90,13.580,171.8 +17.9,0.90,12.920,166.3,17.8,0.90,13.660,166.5 +16.5,0.91,13.580,157.4,16.4,0.91,14.370,157.5 +15.2,0.90,15.560,159.1,15.1,0.90,16.390,159.3 +14.2,0.91,17.620,165.2,14.1,0.91,18.450,165.2 +13.4,0.90,19.680,170.5,13.3,0.90,20.450,170.5 +12.4,0.91,19.630,170.4,12.3,0.91,20.420,170.3 +11.5,0.91,19.670,169.9,11.4,0.91,20.520,169.8 +10.6,0.91,20.220,172.0,10.5,0.91,21.010,172.1 +9.8,0.91,20.530,175.5,9.8,0.91,21.280,175.6 +9.4,0.91,20.940,177.0,9.3,0.91,21.660,177.0 +8.9,0.91,19.760,178.9,8.8,0.91,20.450,179.0 +8.5,0.91,18.490,182.1,8.5,0.91,19.100,182.3 +7.8,0.91,17.000,179.3,7.7,0.91,17.710,179.7 +8.2,0.91,13.730,175.6,8.1,0.91,14.480,175.7 +9.3,0.91,11.390,180.3,9.2,0.91,11.780,180.3 +10.5,0.91,7.410,172.0,10.3,0.91,7.560,172.3 +11.7,0.91,7.470,171.5,11.5,0.91,7.570,171.8 +13.1,0.91,9.200,179.3,12.9,0.91,9.320,179.7 +14.2,0.91,8.850,184.9,14.0,0.91,8.960,185.0 +15.7,0.91,8.210,180.5,15.5,0.91,8.280,180.7 +17.3,0.91,7.360,178.7,17.1,0.91,7.440,179.0 +17.9,0.91,6.860,174.0,17.7,0.91,6.930,174.4 +18.7,0.91,6.480,166.4,18.5,0.91,6.540,166.8 +18.4,0.91,7.480,148.7,18.2,0.91,7.540,149.1 +17.7,0.91,8.070,141.4,17.6,0.91,8.320,142.1 +17.2,0.91,10.780,140.0,17.2,0.91,11.360,140.5 +17.0,0.91,13.530,142.1,16.9,0.91,14.270,142.2 +16.6,0.91,14.420,147.4,16.6,0.91,15.210,147.4 +16.5,0.91,16.710,156.8,16.4,0.91,17.480,156.6 +15.8,0.91,17.380,165.3,15.8,0.91,18.100,165.6 +15.1,0.91,17.700,171.7,15.1,0.91,18.420,171.9 +14.1,0.91,17.640,170.1,14.1,0.91,18.350,170.4 +13.5,0.91,18.170,175.1,13.5,0.91,18.930,175.3 +12.9,0.91,18.320,179.1,12.9,0.91,19.100,179.4 +12.2,0.91,18.240,182.9,12.2,0.91,18.940,183.2 +12.2,0.91,18.220,187.6,12.1,0.91,18.510,187.7 +13.4,0.91,18.180,185.7,13.2,0.91,18.800,185.8 +14.0,0.91,17.650,190.2,13.8,0.91,18.440,190.5 +14.7,0.91,18.270,196.0,14.5,0.91,18.660,196.1 +15.6,0.91,18.020,194.2,15.4,0.91,18.220,194.3 +17.4,0.91,16.650,199.1,17.1,0.91,16.810,199.1 +20.2,0.91,15.070,200.4,19.9,0.91,15.250,200.5 +22.1,0.90,13.990,199.2,21.9,0.90,14.150,199.3 +23.9,0.90,13.340,198.6,23.7,0.90,13.500,198.8 +25.2,0.90,12.700,203.7,25.0,0.90,12.860,203.8 +26.2,0.90,11.720,203.3,25.9,0.90,11.880,203.3 +26.7,0.90,11.030,201.1,26.5,0.90,11.210,201.3 +26.9,0.90,10.560,199.5,26.8,0.90,10.770,199.6 +25.9,0.90,12.050,184.5,25.9,0.90,12.580,185.2 +24.5,0.90,15.370,183.5,24.5,0.90,16.080,184.2 +22.5,0.90,15.650,184.1,22.4,0.90,16.480,184.7 +21.4,0.90,16.530,188.7,21.3,0.90,17.290,189.3 +20.1,0.90,16.690,184.6,20.0,0.90,17.480,185.7 +18.9,0.90,16.570,185.2,18.9,0.90,17.280,186.4 +18.4,0.90,18.170,194.7,18.4,0.90,19.110,195.5 +18.2,0.90,16.590,193.9,18.3,0.90,17.580,195.2 +18.1,0.90,16.720,196.2,18.1,0.90,17.620,197.6 +17.3,0.90,16.510,194.9,17.3,0.90,17.150,196.0 +17.1,0.90,6.420,359.2,16.9,0.90,6.590,358.7 +11.7,0.90,7.590,11.0,11.5,0.90,7.670,10.4 +9.4,0.91,8.690,15.5,9.3,0.91,8.740,14.9 +7.9,0.91,10.640,19.0,7.7,0.91,10.700,18.9 +6.3,0.91,12.030,14.8,6.1,0.91,12.100,14.9 +5.2,0.91,11.970,21.3,5.0,0.91,12.070,21.2 +4.6,0.91,11.740,15.2,4.4,0.91,11.820,15.3 +3.9,0.91,11.750,18.8,3.7,0.91,11.850,18.7 +3.8,0.91,10.860,12.8,3.6,0.91,10.940,12.9 +3.5,0.91,10.450,16.8,3.3,0.91,10.530,16.7 +3.5,0.91,10.010,13.8,3.3,0.91,10.090,13.9 +3.1,0.91,9.740,17.3,2.9,0.91,9.830,17.2 +2.8,0.91,9.620,16.6,2.6,0.91,9.700,16.6 +2.6,0.91,9.710,19.7,2.4,0.91,9.810,19.6 +2.2,0.91,10.030,20.1,2.0,0.91,10.130,20.2 +1.8,0.91,10.180,22.6,1.6,0.91,10.290,22.4 +1.6,0.91,10.680,21.3,1.4,0.91,10.800,21.3 +1.4,0.91,11.350,19.0,1.2,0.91,11.490,18.9 +1.2,0.91,12.190,16.8,1.0,0.91,12.350,16.7 +1.4,0.91,12.250,14.7,1.3,0.91,12.430,14.5 +1.3,0.91,12.670,17.4,1.1,0.91,12.860,17.4 +0.4,0.91,12.850,23.5,0.3,0.91,13.450,23.8 +-0.0,0.91,12.440,24.0,-0.2,0.91,13.080,24.7 +-0.4,0.91,11.790,24.8,-0.6,0.91,12.410,25.4 +-0.6,0.91,11.450,26.4,-0.8,0.91,12.120,27.3 +-0.8,0.91,10.710,30.9,-0.8,0.91,11.310,31.3 +-0.7,0.91,9.950,26.6,-0.8,0.91,10.510,26.6 +-0.1,0.92,9.530,22.4,-0.2,0.92,9.620,22.4 +1.3,0.92,8.340,19.4,1.1,0.92,8.410,19.4 +2.9,0.92,7.260,23.4,2.7,0.92,7.320,23.4 +4.8,0.91,7.040,25.9,4.5,0.91,7.080,25.8 +6.5,0.91,5.620,36.2,6.3,0.91,5.650,36.1 +8.3,0.91,4.880,35.6,8.1,0.91,4.910,35.6 +9.8,0.91,4.500,46.3,9.5,0.91,4.510,46.1 +11.0,0.91,4.050,48.7,10.8,0.91,4.050,49.0 +11.9,0.91,3.690,53.3,11.7,0.91,3.710,53.9 +12.0,0.91,3.210,80.4,11.8,0.91,3.210,80.4 +12.0,0.91,3.450,77.5,11.8,0.91,3.470,78.0 +11.9,0.91,4.820,85.1,11.8,0.91,4.900,85.6 +11.2,0.91,5.650,109.7,11.0,0.91,5.710,109.8 +10.9,0.91,5.070,108.7,10.7,0.91,5.210,109.0 +11.0,0.91,5.200,110.2,10.8,0.91,5.280,110.2 +10.8,0.91,4.800,106.3,10.7,0.91,4.890,106.7 +10.5,0.91,4.820,100.8,10.4,0.91,4.870,101.4 +10.3,0.91,5.150,111.7,10.1,0.91,5.270,112.6 +9.6,0.92,6.050,117.7,9.4,0.92,6.300,117.9 +9.1,0.92,6.950,115.7,8.9,0.92,7.020,115.2 +8.6,0.92,7.240,124.4,8.4,0.92,7.510,124.9 +8.2,0.92,6.070,126.5,8.1,0.92,6.470,126.5 +8.2,0.92,5.710,131.5,8.0,0.92,5.930,131.7 +8.0,0.92,6.050,144.6,7.9,0.92,6.340,144.1 +7.9,0.92,5.420,142.4,7.8,0.92,5.580,142.3 +8.5,0.92,5.390,142.0,8.3,0.92,5.490,142.1 +8.8,0.92,6.010,147.9,8.6,0.92,6.070,148.0 +10.6,0.92,5.310,147.4,10.4,0.92,5.380,147.8 +12.5,0.91,5.860,150.6,12.3,0.91,5.930,150.4 +12.7,0.91,6.320,154.1,12.5,0.91,6.390,154.2 +14.7,0.91,7.370,155.2,14.5,0.91,7.420,155.1 +15.1,0.91,7.360,167.3,14.9,0.91,7.480,167.0 +15.5,0.91,8.420,164.1,15.3,0.91,8.520,163.9 +14.6,0.91,8.700,158.7,14.4,0.91,8.770,158.6 +14.4,0.91,9.630,158.6,14.2,0.91,9.750,158.4 +13.9,0.91,8.990,158.5,13.7,0.91,9.360,158.4 +14.0,0.91,10.020,161.7,13.9,0.91,10.710,161.8 +13.9,0.91,9.460,165.2,13.7,0.91,9.950,165.2 +13.7,0.91,9.190,163.4,13.6,0.91,9.630,163.7 +13.7,0.91,11.260,166.7,13.5,0.91,11.800,166.9 +13.8,0.91,11.560,179.6,13.6,0.91,12.140,179.5 +13.4,0.91,12.830,174.2,13.2,0.91,13.420,174.4 +13.2,0.91,14.610,181.9,13.0,0.91,15.360,182.0 +12.8,0.91,15.190,190.8,12.6,0.91,16.550,189.9 +13.0,0.91,18.370,176.9,12.9,0.91,19.000,177.0 +13.0,0.91,15.990,190.9,12.9,0.91,16.570,190.9 +12.5,0.91,11.070,188.0,12.3,0.91,11.560,188.0 +12.9,0.91,14.260,196.0,12.8,0.91,14.870,196.8 +13.7,0.91,13.390,195.1,13.6,0.91,14.240,195.4 +14.3,0.91,13.050,199.5,14.1,0.91,13.340,199.5 +15.0,0.91,12.740,202.5,14.8,0.91,13.010,202.5 +15.8,0.91,14.210,196.7,15.6,0.91,14.430,196.8 +17.9,0.91,13.590,199.3,17.7,0.91,13.740,199.4 +20.3,0.91,11.300,201.0,20.1,0.91,11.420,201.2 +22.1,0.91,10.010,199.4,21.9,0.91,10.110,199.7 +24.1,0.91,8.580,205.5,23.8,0.91,8.670,205.7 +24.9,0.91,8.610,202.6,24.7,0.91,8.720,203.0 +25.5,0.91,7.290,189.8,25.3,0.91,7.360,190.3 +25.3,0.91,9.580,176.6,25.1,0.91,9.690,176.8 +24.7,0.91,11.840,169.7,24.5,0.91,12.290,169.9 +24.6,0.91,12.570,181.3,24.5,0.91,12.750,181.4 +23.6,0.91,13.370,186.2,23.6,0.91,13.870,187.0 +22.2,0.91,12.720,191.1,22.3,0.91,13.350,192.5 +22.0,0.91,12.550,205.6,21.9,0.91,13.220,207.2 +20.9,0.91,10.680,210.4,20.8,0.91,11.450,212.4 +18.4,0.91,11.340,357.1,18.4,0.91,11.520,358.8 +16.6,0.91,7.190,348.4,16.5,0.91,8.270,352.7 +15.0,0.91,8.260,4.0,14.9,0.91,8.690,6.2 +13.5,0.91,8.660,13.5,13.3,0.91,9.610,14.6 +12.6,0.91,9.470,17.4,12.5,0.91,10.430,17.0 +11.7,0.91,9.390,24.1,11.6,0.91,9.840,22.6 +11.3,0.91,7.760,14.4,11.2,0.91,7.870,14.9 +11.0,0.91,7.580,17.3,10.8,0.91,7.640,17.4 +11.3,0.91,7.210,24.8,11.1,0.91,7.230,24.1 +13.0,0.91,7.420,27.1,12.8,0.91,7.460,26.8 +14.9,0.91,5.170,32.3,14.7,0.91,5.200,31.7 +17.5,0.91,5.890,30.3,17.3,0.91,5.950,30.1 +19.2,0.91,6.180,30.9,19.0,0.91,6.230,30.8 +20.6,0.91,5.850,38.7,20.4,0.91,5.900,38.6 +21.6,0.91,5.630,46.0,21.3,0.91,5.670,45.9 +22.1,0.91,5.870,51.1,21.9,0.91,5.920,51.0 +22.2,0.91,6.480,52.1,22.0,0.91,6.540,52.2 +22.0,0.91,7.140,48.9,21.8,0.91,7.210,48.8 +21.5,0.91,7.920,53.6,21.3,0.91,7.980,53.6 +20.8,0.91,8.820,66.1,20.6,0.91,8.810,66.6 +19.1,0.91,9.850,115.0,19.1,0.91,10.250,114.2 +18.7,0.91,9.930,116.4,18.6,0.91,9.980,116.4 +18.7,0.91,7.800,119.0,18.7,0.91,7.450,121.1 +18.1,0.91,8.870,121.6,18.0,0.91,8.600,123.5 +17.7,0.91,9.320,133.6,17.7,0.91,9.070,135.9 +17.2,0.91,9.660,151.7,17.2,0.91,9.600,153.3 +16.3,0.91,10.860,158.7,16.4,0.91,10.830,160.1 +16.6,0.91,12.100,168.4,16.8,0.91,12.350,169.1 +16.1,0.91,12.430,178.1,16.3,0.91,12.730,178.4 +16.8,0.91,11.860,196.1,17.1,0.91,12.240,196.8 +16.6,0.91,11.480,199.5,17.0,0.91,12.030,199.2 +16.3,0.91,10.420,201.5,16.3,0.91,11.170,201.7 +18.3,0.91,8.920,206.7,18.1,0.91,9.010,206.7 +20.5,0.91,7.640,210.9,20.3,0.91,7.700,211.0 +22.6,0.91,6.170,208.7,22.3,0.91,6.230,208.8 +24.0,0.91,4.560,193.7,23.8,0.91,4.590,194.0 +25.0,0.91,4.030,181.9,24.8,0.91,4.050,182.2 +25.7,0.91,4.100,173.3,25.5,0.91,4.110,173.5 +26.2,0.91,4.260,171.6,26.0,0.91,4.300,172.2 +26.3,0.90,4.460,161.6,26.1,0.90,4.500,161.9 +26.3,0.90,6.190,155.6,26.1,0.90,6.220,155.9 +26.1,0.90,5.380,161.7,25.9,0.90,5.440,161.8 +25.6,0.90,7.720,151.1,25.4,0.90,7.770,151.2 +24.8,0.90,11.240,157.7,24.8,0.90,11.610,158.3 +24.0,0.90,13.070,160.1,24.1,0.90,13.710,160.4 +21.7,0.90,14.440,160.4,21.7,0.90,15.270,160.5 +20.9,0.90,14.630,181.9,21.0,0.90,15.440,182.9 +20.6,0.90,14.580,191.6,20.7,0.90,15.410,192.0 +20.1,0.90,13.870,190.8,20.2,0.90,14.500,191.8 +19.4,0.90,14.660,199.6,19.5,0.90,15.340,200.6 +18.6,0.90,14.030,204.7,18.7,0.90,14.710,206.4 +18.1,0.90,14.040,206.3,18.2,0.90,14.760,207.2 +17.5,0.90,13.750,207.5,17.6,0.90,14.440,208.3 +17.2,0.90,12.890,213.8,17.3,0.90,13.570,213.9 +16.4,0.90,11.770,207.9,16.4,0.90,12.240,208.2 +17.4,0.90,9.610,212.6,17.2,0.90,9.780,212.8 +18.8,0.90,8.900,209.8,18.6,0.90,8.980,209.9 +21.0,0.90,7.650,203.8,20.8,0.90,7.730,203.8 +22.2,0.90,7.180,193.3,22.0,0.90,7.250,193.4 +23.5,0.90,6.570,187.5,23.3,0.90,6.630,187.6 +24.7,0.90,6.680,182.2,24.4,0.90,6.750,181.9 +25.5,0.90,5.740,170.9,25.3,0.90,5.790,171.8 +26.1,0.90,5.630,188.6,25.9,0.90,5.690,187.3 +26.4,0.90,5.470,182.8,26.2,0.90,5.520,181.2 +26.4,0.90,5.230,181.4,26.2,0.90,5.290,180.6 +26.3,0.90,5.940,161.5,26.1,0.90,6.030,161.7 +25.7,0.90,8.270,151.6,25.5,0.90,8.670,152.3 +21.9,0.90,13.540,158.9,21.8,0.90,14.250,159.2 +20.0,0.90,14.650,166.2,19.8,0.90,15.350,166.3 +18.8,0.90,15.200,172.1,18.8,0.90,15.950,172.2 +18.4,0.90,15.360,169.5,18.4,0.90,15.970,170.0 +18.0,0.90,15.470,176.7,18.1,0.90,16.120,177.5 +16.8,0.90,15.330,177.3,16.9,0.90,15.950,178.1 +16.3,0.90,16.120,186.2,16.4,0.90,16.840,186.9 +15.7,0.90,16.410,186.1,15.7,0.90,17.070,186.8 +15.5,0.90,15.480,191.2,15.6,0.90,16.120,192.3 +15.4,0.90,15.780,198.1,15.5,0.90,16.580,199.2 +14.3,0.90,15.600,190.2,14.3,0.90,16.200,191.2 +14.9,0.90,14.650,194.8,14.8,0.90,15.340,195.8 +15.8,0.90,13.160,196.5,15.6,0.90,13.350,196.8 +17.1,0.90,12.360,196.1,17.0,0.90,12.450,196.3 +19.2,0.90,12.360,187.5,19.1,0.90,12.450,187.6 +21.1,0.90,10.430,185.6,20.9,0.90,10.540,185.7 +22.7,0.90,9.830,188.7,22.5,0.90,9.930,188.8 +24.2,0.90,9.960,185.3,24.0,0.90,10.060,185.4 +25.8,0.90,11.110,172.5,25.6,0.90,11.240,172.8 +27.2,0.90,9.540,176.7,27.0,0.90,9.680,176.7 +27.9,0.90,10.620,176.8,27.7,0.90,10.760,177.0 +28.2,0.90,11.100,175.4,28.0,0.90,11.310,175.7 +28.0,0.90,11.960,168.3,27.8,0.90,12.160,168.5 +27.3,0.90,10.530,156.9,27.2,0.90,11.120,157.3 +25.6,0.90,13.920,153.9,25.6,0.90,14.760,154.2 +23.9,0.90,15.250,156.2,23.8,0.90,16.040,156.3 +19.1,0.90,9.430,289.4,18.9,0.90,9.860,290.7 +20.5,0.90,10.040,234.1,20.8,0.90,9.670,235.4 +27.2,0.90,12.200,196.1,27.2,0.90,11.990,198.0 +22.2,0.90,10.240,154.1,22.5,0.90,10.060,159.5 +20.7,0.90,14.840,172.6,20.9,0.90,15.690,170.8 +18.7,0.90,16.690,183.1,18.7,0.90,17.460,182.8 +19.0,0.90,16.270,178.9,19.1,0.90,16.880,179.7 +18.8,0.90,16.280,181.1,18.9,0.90,16.970,182.4 +18.7,0.90,15.690,185.8,18.8,0.90,16.280,186.9 +18.5,0.90,14.780,194.9,18.5,0.90,15.260,195.7 +18.8,0.90,16.130,199.4,18.6,0.90,16.470,199.6 +19.6,0.90,14.790,208.0,19.4,0.90,14.920,208.0 +21.4,0.90,12.320,201.6,21.2,0.90,12.450,201.7 +23.2,0.90,8.190,196.3,23.0,0.90,8.270,196.6 +25.2,0.90,5.140,196.4,24.9,0.90,5.180,197.1 +26.4,0.90,4.910,175.5,26.1,0.90,4.940,176.2 +27.5,0.90,3.420,164.2,27.3,0.90,3.420,165.1 +28.2,0.90,2.960,132.8,28.0,0.90,2.940,133.2 +28.8,0.90,2.200,113.3,28.6,0.90,2.190,113.0 +29.2,0.90,0.760,121.6,29.0,0.90,0.750,118.9 +28.9,0.90,4.000,62.8,28.7,0.90,4.040,63.0 +21.0,0.90,4.920,91.5,20.8,0.90,5.250,94.2 +18.3,0.90,8.600,39.4,18.1,0.90,8.650,39.9 +17.9,0.91,9.370,35.1,17.8,0.91,9.610,36.0 +16.9,0.91,9.720,52.2,16.7,0.91,10.010,52.6 +13.7,0.91,10.850,31.1,13.5,0.91,10.980,31.1 +10.9,0.91,11.290,35.1,10.7,0.91,11.380,34.7 +9.5,0.91,11.040,19.1,9.3,0.91,11.160,18.9 +8.8,0.91,11.810,4.3,8.6,0.91,11.970,4.3 +7.4,0.91,12.430,5.7,7.2,0.91,12.600,5.7 +6.3,0.91,12.480,9.8,6.1,0.91,12.630,9.6 +5.3,0.91,13.340,1.6,5.1,0.91,13.540,1.5 +4.5,0.92,15.840,4.9,4.3,0.92,16.090,4.8 +4.0,0.92,14.550,5.1,3.8,0.92,14.770,5.0 +3.9,0.92,15.430,1.2,3.7,0.92,15.710,1.2 +3.5,0.92,14.410,2.9,3.3,0.92,14.610,2.7 +2.8,0.92,15.650,359.2,2.6,0.92,15.910,359.2 +2.7,0.92,15.590,1.7,2.5,0.92,15.830,1.7 +2.4,0.92,16.340,359.6,2.2,0.92,16.570,359.6 +2.4,0.92,15.130,0.3,2.2,0.92,15.350,0.3 +2.7,0.92,14.750,0.3,2.5,0.92,14.970,0.3 +3.2,0.92,14.220,0.9,3.0,0.92,14.430,0.9 +3.7,0.92,12.890,4.6,3.5,0.92,13.070,4.5 +4.2,0.92,10.290,9.2,4.0,0.92,10.440,9.0 +6.8,0.92,10.600,12.1,6.6,0.92,10.790,12.1 +8.1,0.92,12.470,17.3,8.0,0.92,12.970,17.0 +7.3,0.92,13.820,17.5,7.2,0.92,14.670,17.6 +6.4,0.92,12.660,22.6,6.4,0.92,13.370,23.8 +5.9,0.92,11.700,19.5,5.9,0.92,12.330,20.2 +5.8,0.92,11.610,9.8,5.7,0.92,12.520,11.5 +5.4,0.92,13.730,10.3,5.4,0.92,14.870,12.3 +5.6,0.92,13.740,7.0,5.6,0.92,14.680,9.5 +5.4,0.92,12.140,357.6,5.5,0.92,12.870,1.3 +5.2,0.92,11.870,351.4,5.3,0.92,12.490,355.8 +5.0,0.92,12.300,348.3,5.2,0.92,12.860,353.5 +5.1,0.92,11.720,347.1,5.4,0.92,12.220,354.1 +4.8,0.92,11.330,341.7,5.2,0.92,11.690,349.4 +4.4,0.92,9.790,333.0,4.7,0.92,10.270,337.3 +5.1,0.92,6.930,325.3,5.0,0.92,7.360,327.8 +7.0,0.92,7.070,330.2,6.8,0.92,7.180,330.7 +8.4,0.92,6.510,334.9,8.2,0.92,6.610,334.9 +9.6,0.92,6.690,327.4,9.4,0.92,6.780,327.4 +10.7,0.92,6.460,320.6,10.5,0.92,6.550,320.7 +11.9,0.91,6.040,313.4,11.6,0.91,6.120,313.6 +13.0,0.91,6.140,317.3,12.7,0.91,6.220,317.2 +13.9,0.91,5.310,315.0,13.7,0.91,5.390,314.8 +14.8,0.91,5.090,301.3,14.6,0.91,5.170,301.3 +15.3,0.91,5.480,302.2,15.1,0.91,5.560,302.2 +15.8,0.91,3.590,301.7,15.6,0.91,3.690,301.2 +15.8,0.91,3.460,274.7,15.6,0.91,3.590,275.3 +15.8,0.91,6.260,250.2,15.7,0.91,6.490,253.2 +15.9,0.91,7.790,240.9,15.8,0.91,7.850,242.0 +16.3,0.91,8.940,245.6,16.2,0.91,9.030,247.3 +16.1,0.91,10.540,236.3,16.2,0.91,10.690,238.6 +15.9,0.91,10.910,238.0,16.2,0.91,11.210,241.1 +15.4,0.91,13.280,247.1,15.9,0.91,13.750,248.4 +15.6,0.91,13.330,254.6,16.1,0.91,13.770,256.8 +15.7,0.91,13.160,266.1,16.1,0.91,13.670,267.8 +11.9,0.91,10.910,293.5,12.2,0.91,11.370,290.7 +14.3,0.91,12.010,290.3,14.5,0.91,12.220,293.1 +12.3,0.91,10.310,298.2,12.3,0.91,10.180,300.5 +11.3,0.91,7.420,314.4,12.3,0.91,7.460,319.0 +11.1,0.91,3.490,322.8,11.2,0.91,3.810,333.0 +12.9,0.91,3.100,346.8,12.7,0.91,3.100,347.8 +14.7,0.91,3.360,22.6,14.6,0.91,3.360,22.7 +16.1,0.91,4.100,26.2,15.8,0.91,4.100,25.9 +17.1,0.91,4.000,25.0,16.9,0.91,4.000,24.6 +18.1,0.91,3.910,18.8,17.9,0.91,3.920,18.3 +19.1,0.91,3.600,9.5,18.9,0.91,3.620,8.9 +19.7,0.91,4.150,358.7,19.5,0.91,4.160,358.4 +20.1,0.91,3.780,0.8,19.9,0.91,3.780,0.6 +20.6,0.91,4.870,350.1,20.4,0.91,4.890,350.2 +20.3,0.91,4.220,12.6,20.1,0.91,4.250,12.6 +19.8,0.91,6.490,24.2,19.6,0.91,6.570,23.5 +19.2,0.91,8.400,31.8,19.1,0.91,8.490,31.8 +17.5,0.91,8.000,50.7,17.6,0.91,8.900,51.3 +15.9,0.91,9.310,56.7,15.9,0.91,10.370,56.9 +14.1,0.91,9.790,58.9,14.1,0.91,11.130,58.0 +13.0,0.91,10.710,57.1,12.9,0.91,11.570,57.2 +12.1,0.91,10.020,58.4,12.1,0.91,10.820,58.9 +10.3,0.91,10.580,56.8,10.0,0.91,11.600,59.8 +8.6,0.91,11.520,57.6,8.6,0.91,12.400,57.2 +8.0,0.91,10.010,51.0,8.0,0.91,10.910,52.0 +7.1,0.91,9.720,48.5,7.1,0.91,10.100,49.1 +6.7,0.91,9.440,46.3,6.6,0.91,9.750,47.0 +5.9,0.91,7.240,38.8,5.8,0.91,7.760,38.6 +6.8,0.91,6.460,23.2,6.6,0.91,6.540,23.0 +8.2,0.91,6.670,17.1,8.0,0.91,6.720,16.9 +9.8,0.91,5.800,10.9,9.6,0.91,5.850,10.6 +11.6,0.91,6.120,4.4,11.3,0.91,6.180,4.2 +13.0,0.91,5.600,4.7,12.8,0.91,5.650,4.5 +14.7,0.91,5.390,10.4,14.5,0.91,5.410,10.2 +16.0,0.91,4.990,7.9,15.8,0.91,4.990,7.8 +17.4,0.91,4.590,359.4,17.2,0.91,4.630,359.9 +18.2,0.91,4.420,10.6,18.0,0.91,4.480,11.3 +18.4,0.91,4.720,20.4,18.2,0.91,4.730,19.9 +18.4,0.91,4.470,29.0,18.2,0.91,4.510,28.6 +17.8,0.91,5.100,56.4,17.6,0.91,5.120,55.8 +16.8,0.91,6.050,79.2,16.6,0.91,5.940,78.7 +16.1,0.91,6.320,86.7,15.9,0.91,6.230,85.7 +15.4,0.91,6.300,89.3,15.4,0.91,6.040,87.0 +14.7,0.91,5.950,96.7,14.8,0.91,6.110,92.9 +15.0,0.91,5.740,103.9,15.0,0.91,5.380,98.5 +15.0,0.91,5.000,111.9,15.0,0.91,4.810,109.0 +14.3,0.91,7.180,144.3,14.6,0.91,6.420,144.4 +13.9,0.91,8.720,148.4,14.3,0.91,8.420,149.7 +13.1,0.91,7.620,137.2,13.4,0.91,7.780,138.6 +13.6,0.91,7.680,141.1,13.7,0.91,7.520,141.6 +13.8,0.91,8.660,160.9,13.9,0.91,8.590,159.9 +12.9,0.91,8.850,168.4,13.6,0.91,9.010,166.0 +13.6,0.91,7.490,172.6,13.7,0.91,8.120,171.6 +16.2,0.91,5.830,169.7,16.0,0.91,5.840,170.0 +17.9,0.91,5.050,168.4,17.7,0.91,5.070,168.5 +18.8,0.91,6.480,191.8,18.6,0.91,6.520,191.9 +19.2,0.91,6.600,192.7,19.0,0.91,6.640,192.7 +15.5,0.91,3.670,221.6,15.4,0.91,3.760,220.6 +15.5,0.91,1.730,220.1,15.3,0.91,1.700,217.8 +15.8,0.91,1.310,66.5,15.6,0.91,1.310,69.0 +16.3,0.91,4.830,59.9,16.1,0.91,4.850,60.3 +17.9,0.91,5.050,65.6,17.7,0.91,5.060,66.1 +18.4,0.91,5.840,81.2,18.3,0.91,5.890,81.3 +18.3,0.91,6.280,90.9,18.1,0.91,6.360,91.7 +18.0,0.91,7.260,109.2,17.9,0.91,7.340,109.8 +17.8,0.91,8.770,129.8,17.9,0.91,8.960,130.4 +17.4,0.91,9.520,146.6,17.7,0.91,9.690,150.0 +17.5,0.91,8.060,166.7,17.5,0.91,7.700,172.6 +17.2,0.91,8.900,166.2,17.3,0.91,8.880,167.5 +17.0,0.91,11.000,164.0,17.1,0.91,11.170,164.9 +16.7,0.91,11.820,164.2,16.9,0.91,12.290,164.8 +16.4,0.91,12.330,168.6,16.7,0.91,12.800,169.8 +16.0,0.91,12.030,176.0,16.2,0.91,12.430,178.0 +15.7,0.91,11.800,181.8,15.9,0.91,12.370,183.1 +15.1,0.91,9.600,185.0,15.3,0.91,10.050,186.3 +14.6,0.91,8.630,182.4,14.9,0.91,9.220,183.1 +14.8,0.91,7.790,181.3,14.7,0.91,8.020,181.4 +16.8,0.91,8.390,180.6,16.6,0.91,8.490,180.5 +18.6,0.91,9.080,176.7,18.4,0.91,9.200,176.7 +20.3,0.91,8.750,173.5,20.0,0.91,8.860,173.6 +21.7,0.91,8.430,173.3,21.4,0.91,8.540,173.4 +22.9,0.91,8.160,168.3,22.7,0.91,8.270,168.4 +23.8,0.91,8.630,166.9,23.6,0.91,8.740,167.1 +24.7,0.91,8.460,171.2,24.5,0.91,8.590,171.3 +25.2,0.91,8.840,165.0,25.0,0.91,8.960,165.3 +25.5,0.90,9.420,156.0,25.3,0.90,9.560,156.3 +25.3,0.90,11.610,156.8,25.1,0.90,11.820,157.0 +24.5,0.90,10.690,151.5,24.3,0.90,11.210,151.6 +23.4,0.90,9.870,141.2,23.3,0.90,10.550,141.7 +14.7,0.91,12.970,205.1,14.8,0.91,13.930,205.1 +15.1,0.91,12.250,158.8,15.2,0.91,12.590,159.8 +17.3,0.91,1.490,130.9,17.5,0.91,0.950,133.9 +18.6,0.91,6.390,141.6,18.9,0.91,6.350,145.3 +19.1,0.91,11.380,156.5,19.2,0.91,12.050,156.4 +17.4,0.91,12.780,156.1,17.5,0.91,13.580,156.2 +16.7,0.91,9.450,152.0,16.7,0.91,10.220,154.0 +16.7,0.91,11.010,163.7,16.8,0.91,11.770,165.7 +16.4,0.91,13.050,170.1,16.4,0.91,13.670,170.9 +15.8,0.91,13.910,174.3,15.7,0.91,14.520,175.0 +15.0,0.91,14.140,182.9,14.9,0.91,14.530,183.3 +15.4,0.91,11.420,188.7,15.3,0.91,11.620,188.9 +16.5,0.91,11.930,197.3,16.3,0.91,12.140,197.5 +17.9,0.91,13.090,196.5,17.7,0.91,13.270,196.7 +18.8,0.91,12.460,190.3,18.6,0.91,12.630,190.6 +20.0,0.91,12.620,193.2,19.8,0.91,12.800,193.3 +20.8,0.91,11.430,195.3,20.5,0.91,11.570,195.4 +21.2,0.91,10.720,193.2,21.0,0.91,10.850,193.2 +22.5,0.90,9.400,194.8,22.3,0.90,9.510,194.7 +23.0,0.90,8.960,183.3,22.7,0.90,9.080,183.2 +22.8,0.90,10.190,171.1,22.6,0.90,10.330,171.7 +22.7,0.90,10.760,169.5,22.5,0.90,10.930,169.6 +21.8,0.90,12.290,170.8,21.6,0.90,12.700,170.7 +20.3,0.90,13.760,169.3,20.1,0.90,14.340,169.4 +19.8,0.90,14.770,177.1,19.7,0.90,15.380,177.3 +19.5,0.90,14.550,178.5,19.4,0.90,15.170,179.0 +19.4,0.90,14.920,181.6,19.3,0.90,15.560,182.5 +19.1,0.90,13.860,186.1,19.1,0.90,14.390,187.1 +18.8,0.90,12.370,187.9,18.8,0.90,12.870,189.6 +18.6,0.90,11.590,193.7,18.6,0.90,12.010,195.3 +18.1,0.90,11.750,195.8,18.1,0.90,12.270,196.8 +17.6,0.90,12.090,197.1,17.5,0.90,12.540,198.3 +17.3,0.90,12.860,195.2,17.2,0.90,13.230,196.1 +17.6,0.90,11.060,206.2,17.5,0.90,11.570,207.7 +18.2,0.90,10.900,207.0,18.2,0.90,11.440,208.4 +19.1,0.90,11.560,203.1,19.1,0.90,12.350,204.2 +20.6,0.90,10.280,213.7,20.4,0.90,10.370,214.0 +19.4,0.91,11.580,190.0,19.2,0.91,11.680,190.2 +20.5,0.90,10.210,181.2,20.3,0.90,10.270,181.3 +23.5,0.90,10.160,195.9,23.3,0.90,10.240,196.3 +23.8,0.90,11.800,177.4,23.6,0.90,11.930,177.6 +19.9,0.91,13.390,244.8,19.7,0.91,13.250,245.1 +16.9,0.90,10.540,162.5,16.9,0.90,10.790,164.4 +18.4,0.90,8.160,25.3,18.1,0.90,8.130,25.5 +19.0,0.90,5.840,43.6,18.8,0.90,5.810,43.7 +20.9,0.90,5.850,123.4,20.8,0.90,5.850,123.2 +19.9,0.90,7.150,154.0,19.7,0.90,7.410,154.7 +19.4,0.90,7.030,163.0,19.5,0.90,7.200,168.7 +19.5,0.90,9.200,174.0,19.7,0.90,9.290,175.8 +15.8,0.91,9.140,55.6,15.7,0.91,9.790,54.7 +16.7,0.90,8.160,74.0,16.9,0.90,8.400,71.3 +16.3,0.91,5.560,76.4,16.4,0.91,5.620,73.9 +16.5,0.91,4.670,61.4,16.8,0.91,4.960,62.2 +15.9,0.91,3.870,69.4,16.5,0.91,4.170,64.8 +13.5,0.91,7.310,29.2,13.6,0.91,7.400,32.5 +13.6,0.91,6.360,38.1,13.7,0.91,6.330,40.6 +13.6,0.91,6.880,29.1,13.8,0.91,7.060,31.7 +14.6,0.91,5.950,45.1,14.8,0.91,6.410,45.0 +13.2,0.91,5.990,25.4,13.4,0.91,6.500,26.0 +14.4,0.91,7.180,65.2,14.7,0.91,7.780,62.8 +14.3,0.91,8.080,30.1,14.1,0.91,8.090,30.1 +16.5,0.91,10.550,20.1,16.3,0.91,10.680,20.1 +17.7,0.91,9.960,18.6,17.5,0.91,10.070,18.6 +17.5,0.91,9.520,357.1,17.3,0.91,9.600,357.3 +16.2,0.91,8.940,351.9,16.0,0.91,9.020,352.1 +15.8,0.91,9.720,340.0,15.6,0.91,9.830,340.3 +16.0,0.91,6.730,31.0,15.8,0.91,6.770,30.9 +17.8,0.91,5.180,26.7,17.6,0.91,5.200,26.9 +18.2,0.91,4.270,20.6,18.0,0.91,4.270,20.9 +18.8,0.91,3.670,48.6,18.6,0.91,3.720,48.6 +19.0,0.91,3.630,51.3,18.8,0.91,3.690,50.7 +19.0,0.91,3.860,9.5,18.8,0.91,3.930,11.2 +14.0,0.91,11.700,349.0,13.8,0.91,12.010,349.6 +13.5,0.91,6.650,31.5,13.3,0.91,7.120,31.5 +13.3,0.91,6.630,54.2,13.1,0.91,7.310,52.6 +14.5,0.91,5.630,53.9,14.8,0.91,6.380,52.8 +14.5,0.91,5.560,49.6,14.6,0.91,6.120,47.7 +14.6,0.91,7.680,55.3,14.7,0.91,8.300,54.6 +14.6,0.91,5.350,30.3,14.7,0.91,5.820,30.8 +14.2,0.91,6.240,29.3,14.3,0.91,6.650,29.7 +14.0,0.91,4.700,23.2,14.1,0.91,5.060,26.7 +14.1,0.91,5.860,20.2,14.1,0.91,5.990,23.4 +13.6,0.91,5.520,12.5,13.6,0.91,5.850,16.4 +14.2,0.91,4.570,21.3,14.0,0.91,4.640,21.9 +15.8,0.91,6.150,22.6,15.6,0.91,6.250,22.7 +17.0,0.91,7.360,26.8,16.8,0.91,7.450,26.9 +18.1,0.91,7.890,28.9,17.9,0.91,7.980,28.9 +18.9,0.91,7.830,29.5,18.6,0.91,7.920,29.5 +19.5,0.91,7.300,33.5,19.3,0.91,7.370,33.5 +20.1,0.91,6.860,44.4,19.9,0.91,6.930,44.3 +20.7,0.91,7.290,40.3,20.4,0.91,7.370,40.3 +21.0,0.91,7.370,41.7,20.8,0.91,7.440,41.8 +21.2,0.91,7.480,53.7,21.0,0.91,7.580,53.6 +21.0,0.91,7.640,55.1,20.8,0.91,7.740,55.1 +20.7,0.91,6.880,65.9,20.6,0.91,7.110,65.5 +20.5,0.91,6.840,59.1,20.4,0.91,7.040,58.4 +19.6,0.91,4.760,85.2,19.4,0.91,5.090,86.7 +19.5,0.91,7.340,95.7,19.4,0.91,7.370,94.3 +18.3,0.91,5.860,89.7,18.3,0.91,6.890,91.9 +19.4,0.91,6.700,103.1,19.5,0.91,6.810,97.8 +16.8,0.91,4.200,54.0,16.9,0.91,4.480,56.5 +16.8,0.91,3.980,72.2,17.0,0.91,4.570,74.5 +14.9,0.91,4.680,60.4,15.0,0.91,5.020,63.1 +14.9,0.91,5.050,54.3,15.3,0.91,5.470,57.0 +14.4,0.91,4.910,68.0,14.6,0.91,5.370,70.1 +14.4,0.91,5.350,76.0,14.6,0.91,5.820,78.3 +14.0,0.91,5.050,79.0,14.2,0.91,5.620,81.3 +14.5,0.92,3.570,84.9,14.4,0.92,3.700,88.0 +16.4,0.92,4.090,115.5,16.2,0.92,4.170,116.5 +17.8,0.92,4.250,140.1,17.6,0.92,4.300,140.6 +18.9,0.92,3.500,160.5,18.7,0.92,3.520,160.6 +20.1,0.91,2.640,156.9,19.9,0.91,2.660,156.9 +21.0,0.91,2.520,156.8,20.8,0.91,2.520,156.8 +21.7,0.91,2.960,156.1,21.5,0.91,2.960,156.0 +22.2,0.91,3.470,164.5,22.0,0.91,3.480,164.5 +22.2,0.91,5.140,179.8,22.0,0.91,5.130,179.4 +22.5,0.91,2.960,172.1,22.3,0.91,3.150,170.1 +22.3,0.91,3.790,152.7,22.1,0.91,3.810,152.7 +21.9,0.91,6.210,176.1,21.7,0.91,6.370,176.0 +21.6,0.91,7.830,164.1,21.5,0.91,7.740,164.4 +20.6,0.91,10.550,169.7,20.6,0.91,11.040,169.0 +20.1,0.91,11.290,169.2,20.1,0.91,11.710,169.3 +19.7,0.91,11.530,171.5,19.8,0.91,11.760,172.2 +19.2,0.91,12.570,178.3,19.4,0.91,12.900,178.4 +18.5,0.91,12.900,187.9,18.7,0.91,13.500,187.7 +18.1,0.91,13.340,193.6,18.3,0.91,13.870,193.5 +18.1,0.91,12.520,202.8,18.4,0.91,13.030,202.4 +17.7,0.91,13.090,209.5,18.0,0.91,13.620,209.1 +17.8,0.91,13.200,212.6,18.1,0.91,13.660,212.0 +17.1,0.91,13.680,219.3,17.4,0.91,14.200,219.1 +16.8,0.91,12.110,222.9,16.9,0.91,12.540,222.8 +17.3,0.91,9.670,227.2,17.3,0.91,10.390,227.7 +19.3,0.91,9.540,225.4,19.1,0.91,9.640,225.4 +20.8,0.91,8.520,220.7,20.6,0.91,8.620,220.7 +21.9,0.91,7.750,217.6,21.7,0.91,7.830,217.5 +23.1,0.91,6.850,211.1,22.9,0.91,6.910,211.1 +24.0,0.91,6.680,195.7,23.8,0.91,6.750,195.9 +24.5,0.91,6.770,189.3,24.3,0.91,6.840,189.3 +25.0,0.91,6.320,186.8,24.8,0.91,6.400,186.6 +25.2,0.91,6.520,185.6,25.0,0.91,6.610,185.7 +25.4,0.91,6.710,184.0,25.2,0.91,6.760,183.0 +25.3,0.91,7.320,165.2,25.1,0.91,7.430,165.5 +25.1,0.91,6.950,175.9,24.9,0.91,6.970,174.6 +24.2,0.91,10.220,158.1,24.2,0.91,10.620,159.1 +23.2,0.91,12.510,158.2,23.3,0.91,12.860,158.8 +22.3,0.91,14.150,162.3,22.5,0.91,15.000,162.6 +21.2,0.91,14.410,171.8,21.4,0.91,15.240,173.0 +20.2,0.91,13.440,186.2,20.4,0.91,14.110,188.1 +19.5,0.91,13.290,194.2,19.7,0.91,14.090,195.6 +18.9,0.91,13.620,198.5,19.1,0.91,14.630,199.1 +18.4,0.91,13.660,199.3,18.6,0.91,14.640,199.7 +18.1,0.91,13.470,200.6,18.3,0.91,14.440,201.0 +17.7,0.91,13.300,202.7,17.9,0.91,14.270,202.6 +17.1,0.91,12.850,201.5,17.2,0.91,13.630,202.0 +16.6,0.91,12.410,208.8,16.5,0.91,13.190,209.4 +17.1,0.91,9.430,207.8,16.9,0.91,9.580,208.1 +18.6,0.91,9.370,209.1,18.4,0.91,9.490,209.3 +19.9,0.91,9.860,203.4,19.7,0.91,9.990,203.6 +21.4,0.91,10.190,201.8,21.2,0.91,10.320,201.9 +22.7,0.91,9.840,199.9,22.5,0.91,9.970,200.0 +23.6,0.91,10.190,194.6,23.4,0.91,10.330,194.6 +24.4,0.91,10.500,197.9,24.2,0.91,10.630,197.8 +25.3,0.91,10.270,190.4,25.1,0.91,10.430,190.5 +25.9,0.91,10.620,188.9,25.7,0.91,10.800,188.8 +26.1,0.91,11.420,184.5,25.9,0.91,11.620,184.5 +25.9,0.91,12.750,187.3,25.8,0.91,12.990,187.2 +25.2,0.91,11.230,203.4,25.0,0.91,11.600,203.4 +16.4,0.91,11.240,281.1,16.6,0.91,11.950,279.3 +19.5,0.91,6.380,227.0,19.8,0.91,7.200,225.3 +19.4,0.91,11.850,192.5,19.7,0.91,12.820,193.9 +19.1,0.91,11.890,187.3,19.2,0.91,12.520,188.1 +18.7,0.91,11.170,187.8,18.7,0.91,11.750,188.1 +19.2,0.91,13.260,188.3,19.4,0.91,14.040,188.6 +18.4,0.91,12.820,191.0,18.4,0.91,13.250,191.7 +17.7,0.91,13.190,199.9,17.7,0.91,13.800,200.6 +17.8,0.91,15.610,193.3,17.9,0.91,16.330,192.7 +17.0,0.91,14.860,191.6,17.0,0.91,15.630,192.0 +16.6,0.91,14.160,190.6,16.5,0.91,14.700,191.2 +16.3,0.91,13.920,194.1,16.1,0.91,14.560,194.9 +17.1,0.91,13.250,195.8,17.0,0.91,13.940,196.6 +18.6,0.91,12.610,200.9,18.4,0.91,12.790,201.1 +20.5,0.91,13.340,196.7,20.3,0.91,13.500,196.8 +22.4,0.90,12.590,200.8,22.2,0.90,12.760,201.0 +24.2,0.90,11.720,189.8,24.0,0.90,11.860,190.0 +26.0,0.90,11.840,211.0,25.8,0.90,11.960,211.1 +26.3,0.90,9.840,199.2,26.0,0.90,10.000,199.5 +27.6,0.90,11.040,213.9,27.4,0.90,11.210,214.2 +28.8,0.90,10.890,221.6,28.6,0.90,11.060,221.9 +29.7,0.90,9.880,229.7,29.4,0.90,10.080,229.9 +28.4,0.90,12.610,223.6,28.2,0.90,12.770,223.8 +28.5,0.90,11.460,208.5,28.4,0.90,12.080,209.9 +27.0,0.90,14.340,223.1,26.9,0.90,15.030,223.5 +26.8,0.90,12.520,231.2,27.0,0.90,13.170,233.6 +25.6,0.90,12.680,216.3,25.6,0.90,13.830,220.4 +24.5,0.90,10.380,206.0,24.5,0.90,10.570,209.4 +23.2,0.90,8.770,182.1,23.1,0.90,9.570,181.3 +21.1,0.90,13.480,161.3,21.1,0.90,14.250,161.2 +20.0,0.90,15.420,175.2,20.2,0.90,15.930,175.7 +20.8,0.90,15.100,186.8,21.1,0.90,15.670,188.0 +20.4,0.90,17.000,188.7,20.5,0.90,17.780,189.7 +19.5,0.90,15.610,189.7,19.5,0.90,16.420,191.2 +19.2,0.90,13.850,189.7,19.2,0.90,14.490,191.9 +18.9,0.90,12.100,190.0,18.8,0.90,12.770,191.4 +19.9,0.90,10.620,200.8,19.8,0.90,10.750,201.2 +21.8,0.90,7.980,199.2,21.6,0.90,7.960,199.7 +24.1,0.90,5.240,211.8,23.9,0.90,5.250,212.1 +26.3,0.90,0.950,215.6,26.1,0.90,0.950,217.3 +27.9,0.90,0.960,129.4,27.7,0.90,0.930,130.4 +29.5,0.90,1.950,41.1,29.3,0.90,1.940,41.6 +30.5,0.90,2.270,32.8,30.3,0.90,2.230,32.4 +31.1,0.90,1.680,29.3,30.9,0.90,1.650,28.5 +31.7,0.90,1.490,36.9,31.5,0.90,1.470,37.0 +32.1,0.90,2.910,99.2,31.9,0.90,2.920,99.5 +31.9,0.90,3.190,121.2,31.8,0.90,3.160,122.0 +23.8,0.90,15.270,76.2,23.7,0.90,15.110,77.7 +21.6,0.90,6.420,35.5,22.0,0.90,6.330,35.4 +23.0,0.90,14.420,116.9,22.9,0.90,15.280,116.9 +21.9,0.90,11.460,119.2,22.2,0.90,12.220,117.9 +24.5,0.90,8.570,102.3,25.3,0.90,8.280,93.9 +25.6,0.90,8.260,130.3,25.7,0.90,8.040,133.2 +23.9,0.90,11.780,157.1,24.5,0.90,12.200,158.3 +22.3,0.90,14.130,169.0,22.6,0.90,14.840,169.4 +22.3,0.90,16.740,181.9,22.6,0.90,17.580,182.2 +20.9,0.90,16.460,171.7,21.0,0.90,16.970,172.6 +20.7,0.90,16.070,174.5,20.7,0.90,16.520,175.5 +20.3,0.90,14.650,185.1,20.6,0.90,15.050,187.5 +20.5,0.90,14.940,196.2,21.1,0.90,15.640,198.8 +21.4,0.90,13.340,198.3,21.4,0.90,14.180,200.0 +23.6,0.90,11.530,199.4,23.5,0.90,11.650,200.2 +26.3,0.90,10.300,203.0,26.2,0.90,10.340,203.5 +29.4,0.90,8.850,204.3,29.2,0.90,8.930,204.8 +32.7,0.90,7.830,213.8,32.5,0.90,7.930,214.1 +34.0,0.90,7.350,222.5,33.8,0.90,7.430,222.6 +34.6,0.90,6.830,207.1,34.4,0.90,6.880,207.5 +35.3,0.90,5.570,224.2,35.0,0.90,5.640,224.3 +35.4,0.90,6.330,243.2,35.2,0.90,6.370,242.6 +35.6,0.90,3.710,217.2,35.4,0.90,3.830,218.2 +35.1,0.90,6.490,191.9,34.9,0.90,6.840,193.7 +30.3,0.90,4.900,17.7,31.0,0.90,4.160,14.2 +27.7,0.90,11.700,170.0,27.8,0.90,11.750,171.0 +24.3,0.90,20.590,198.3,24.1,0.90,21.210,199.1 +23.4,0.90,20.700,152.4,23.6,0.90,21.580,152.1 +23.1,0.90,14.620,144.3,23.0,0.90,15.310,145.7 +26.9,0.90,14.460,148.4,26.9,0.90,15.070,148.9 +27.3,0.90,15.360,157.9,27.2,0.90,15.820,159.0 +25.9,0.90,12.240,166.8,25.9,0.90,12.870,167.4 +24.3,0.90,13.870,171.1,24.1,0.90,14.340,170.8 +22.6,0.90,13.870,180.3,22.5,0.90,14.520,181.3 +22.4,0.90,2.560,81.8,22.1,0.90,2.530,107.3 +21.8,0.90,6.350,159.4,21.7,0.90,6.470,162.4 +21.2,0.90,4.580,133.4,20.9,0.90,4.690,135.9 +21.6,0.90,10.890,179.4,21.4,0.90,11.420,180.2 +22.9,0.90,12.680,187.0,22.7,0.90,12.880,187.3 +24.9,0.90,13.420,182.1,24.7,0.90,13.580,182.3 +25.8,0.90,14.040,179.4,25.6,0.90,14.190,179.5 +27.7,0.90,13.920,181.3,27.4,0.90,14.110,181.4 +29.3,0.90,13.960,175.9,29.1,0.90,14.150,176.4 +30.5,0.90,13.100,186.3,30.2,0.90,13.280,186.1 +30.1,0.90,14.680,179.6,29.9,0.90,14.870,179.7 +31.5,0.90,13.880,177.9,31.3,0.90,14.000,177.9 +32.4,0.90,12.250,179.9,32.1,0.90,12.480,180.1 +31.8,0.90,15.080,172.8,31.6,0.90,15.370,173.1 +29.7,0.90,16.020,169.5,29.6,0.90,16.490,169.7 +28.3,0.90,18.570,174.8,28.2,0.90,19.210,174.8 +27.6,0.90,15.060,183.6,27.5,0.90,15.670,184.2 +25.8,0.90,14.330,185.3,25.6,0.90,15.260,185.1 +26.8,0.90,14.640,180.2,26.7,0.90,15.230,181.0 +25.8,0.90,14.090,179.9,25.7,0.90,14.700,180.4 +25.0,0.90,13.730,182.8,24.9,0.90,14.140,184.8 +24.2,0.90,13.220,189.4,24.2,0.90,14.010,192.0 +23.1,0.90,13.840,183.6,23.1,0.90,14.430,185.6 +22.7,0.90,14.600,187.6,22.7,0.90,15.410,189.4 +22.1,0.90,15.170,190.1,22.1,0.90,15.900,191.9 +21.3,0.90,13.810,195.8,21.4,0.90,14.530,197.6 +20.9,0.90,12.500,202.4,20.9,0.90,13.350,203.7 +22.2,0.90,12.180,206.7,22.0,0.90,12.380,207.1 +23.6,0.90,11.530,211.0,23.4,0.90,11.620,211.3 +25.5,0.90,9.720,209.9,25.3,0.90,9.780,210.3 +28.0,0.90,7.340,225.4,27.8,0.90,7.430,225.9 +30.4,0.90,7.130,244.8,30.2,0.90,7.240,245.0 +31.2,0.90,8.310,244.7,31.0,0.90,8.440,244.8 +31.9,0.90,8.890,244.3,31.7,0.90,9.030,244.1 +32.3,0.90,9.680,238.1,32.1,0.90,9.840,238.1 +32.5,0.90,9.930,241.5,32.3,0.90,10.100,241.4 +32.9,0.90,9.950,237.4,32.6,0.90,10.130,237.2 +32.5,0.90,11.650,231.1,32.3,0.90,11.850,231.2 +31.9,0.90,11.830,227.6,31.8,0.90,12.370,227.7 +31.4,0.90,9.730,232.6,31.4,0.90,10.300,233.8 +31.4,0.90,9.940,234.2,31.2,0.90,10.110,235.8 +30.8,0.90,10.490,245.2,30.8,0.90,10.850,248.2 +31.5,0.90,10.460,243.3,31.4,0.90,10.450,242.6 +27.8,0.90,17.440,200.5,27.7,0.90,18.580,202.3 +25.9,0.90,13.360,200.7,26.0,0.90,14.150,202.1 +24.4,0.90,14.090,189.9,24.3,0.90,15.090,191.1 +22.5,0.90,13.920,183.3,22.5,0.90,14.630,185.7 +21.2,0.90,14.810,190.3,21.2,0.90,15.650,191.7 +20.7,0.90,15.250,195.2,20.7,0.90,16.100,196.6 +20.4,0.90,14.330,194.4,20.4,0.90,15.100,196.2 +20.0,0.90,13.090,197.6,20.0,0.90,13.900,198.4 +21.2,0.90,12.120,205.2,21.0,0.90,12.300,205.5 +22.6,0.90,11.330,203.2,22.4,0.90,11.430,203.6 +24.3,0.90,12.190,202.4,24.1,0.90,12.310,202.7 +26.6,0.90,11.530,202.0,26.4,0.90,11.670,202.2 +28.3,0.90,9.810,204.1,28.1,0.90,9.930,204.4 +30.2,0.90,9.040,212.4,30.0,0.90,9.160,212.6 +31.7,0.90,8.720,210.9,31.4,0.90,8.850,211.3 +32.6,0.90,9.390,220.3,32.4,0.90,9.540,220.4 +33.2,0.90,10.130,222.3,33.0,0.90,10.300,222.7 +33.4,0.90,10.110,221.4,33.2,0.90,10.280,221.5 +33.6,0.90,9.960,230.3,33.4,0.90,10.170,230.4 +32.7,0.90,7.930,236.3,32.6,0.90,8.350,237.5 +31.4,0.90,9.260,253.2,31.7,0.90,9.750,255.0 +32.2,0.90,12.320,255.5,32.0,0.90,12.060,255.5 +31.8,0.90,11.340,263.9,31.8,0.90,11.390,263.8 +28.3,0.90,14.210,207.0,28.5,0.90,15.230,208.1 +26.7,0.90,12.240,196.6,26.6,0.90,13.090,198.2 +25.1,0.90,12.230,185.0,25.2,0.90,12.970,187.4 +23.4,0.90,13.660,179.9,23.3,0.90,14.150,181.8 +22.1,0.90,13.500,186.6,22.1,0.90,14.030,188.5 +21.5,0.90,14.620,191.5,21.5,0.90,15.300,192.9 +20.9,0.90,13.540,200.0,20.8,0.90,14.400,201.7 +20.3,0.90,13.210,193.6,20.3,0.90,13.830,195.3 +20.4,0.90,12.600,197.7,20.2,0.90,13.250,198.3 +21.4,0.90,11.070,209.2,21.2,0.90,11.200,209.4 +22.8,0.90,9.560,218.2,22.6,0.90,9.680,218.3 +24.4,0.90,8.600,235.2,24.2,0.90,8.700,235.4 +22.7,0.90,7.620,308.4,22.6,0.90,7.670,307.7 +22.7,0.90,9.320,325.9,22.5,0.90,9.360,325.7 +20.8,0.90,10.140,342.2,20.5,0.90,10.220,341.9 +18.1,0.90,11.320,2.2,17.9,0.90,11.380,2.0 +16.6,0.90,11.240,12.7,16.4,0.90,11.340,12.5 +18.1,0.90,8.800,17.1,17.9,0.90,8.880,17.0 +19.4,0.90,8.530,22.9,19.1,0.90,8.620,22.8 +19.9,0.90,6.890,27.0,19.7,0.90,6.950,26.9 +20.1,0.90,5.520,20.3,19.9,0.90,5.600,20.4 +19.7,0.90,5.030,35.2,19.6,0.90,4.980,34.9 +19.4,0.90,3.790,40.4,19.2,0.90,3.870,40.6 +19.1,0.90,2.840,54.6,19.0,0.90,3.060,54.4 +18.9,0.90,3.080,79.0,18.9,0.90,3.300,77.1 +18.7,0.90,5.010,107.0,18.4,0.90,4.870,106.5 +19.7,0.90,5.710,122.2,19.8,0.90,5.560,118.9 +17.4,0.90,9.100,150.4,18.0,0.90,8.630,147.1 +18.5,0.90,8.530,154.5,19.2,0.90,8.300,149.1 +16.4,0.90,10.970,165.7,16.8,0.90,11.110,163.9 +18.3,0.90,9.090,164.6,18.8,0.90,9.160,161.2 +18.4,0.90,10.070,157.3,18.8,0.90,10.240,155.2 +19.0,0.90,9.720,159.6,19.5,0.90,10.240,157.4 +19.1,0.91,6.980,161.2,19.1,0.91,7.860,158.3 +20.4,0.91,7.340,165.1,20.2,0.91,7.420,164.7 +21.8,0.91,7.070,168.2,21.6,0.91,7.140,168.0 +23.7,0.91,8.060,155.0,23.5,0.91,8.160,155.0 +25.0,0.91,8.330,160.1,24.8,0.91,8.440,160.2 +26.4,0.91,7.950,163.1,26.2,0.91,8.050,163.2 +27.2,0.90,8.300,169.8,27.0,0.90,8.400,169.9 +28.0,0.90,8.280,169.2,27.8,0.90,8.390,169.4 +28.8,0.90,8.190,161.8,28.5,0.90,8.310,162.1 +29.3,0.90,8.380,163.9,29.0,0.90,8.520,164.2 +29.3,0.90,9.090,155.0,29.1,0.90,9.240,155.3 +28.5,0.90,9.720,144.4,28.3,0.90,10.170,144.9 +27.4,0.90,11.410,142.6,27.4,0.90,12.240,143.0 +26.5,0.90,13.520,149.8,26.4,0.90,14.350,149.9 +25.3,0.90,14.480,152.8,25.3,0.90,15.320,152.8 +24.8,0.90,15.220,161.0,24.7,0.90,15.960,161.1 +24.1,0.90,15.970,164.8,24.1,0.90,16.680,165.0 +23.8,0.90,16.160,173.9,23.8,0.90,16.870,174.2 +23.0,0.90,16.540,172.8,22.9,0.90,17.220,173.1 +22.4,0.90,17.770,174.4,22.3,0.90,18.520,174.5 +21.5,0.90,16.550,178.9,21.5,0.90,17.250,179.3 +21.4,0.90,16.890,183.0,21.4,0.90,17.630,183.2 +21.0,0.90,16.230,186.4,21.0,0.90,16.970,186.7 +20.7,0.91,15.340,187.1,20.6,0.91,16.240,186.9 +21.7,0.91,13.590,189.7,21.5,0.91,13.790,189.7 +23.0,0.91,13.300,191.3,22.8,0.91,13.430,191.4 +24.7,0.91,11.820,192.1,24.5,0.91,11.960,192.1 +26.3,0.91,8.600,187.8,26.0,0.91,8.730,187.9 +27.6,0.91,7.320,174.7,27.3,0.91,7.390,174.9 +28.7,0.91,6.220,148.3,28.4,0.91,6.290,148.6 +29.6,0.91,7.210,155.1,29.4,0.91,7.300,155.2 +30.1,0.90,9.850,155.7,29.9,0.90,10.000,155.7 +30.3,0.90,11.080,143.5,30.0,0.90,11.250,143.8 +30.4,0.90,11.860,150.8,30.2,0.90,12.070,150.9 +17.2,0.91,18.420,350.5,17.9,0.91,19.520,350.1 +17.2,0.91,7.340,10.1,17.0,0.91,7.610,8.9 +17.9,0.91,7.120,18.7,17.8,0.91,7.170,17.9 +18.7,0.91,7.320,305.4,18.5,0.91,7.400,305.5 +18.7,0.91,9.660,323.0,19.2,0.91,10.800,319.3 +22.4,0.91,7.400,74.4,22.7,0.91,7.670,72.7 +20.3,0.91,5.600,73.4,20.6,0.91,5.790,73.8 +21.8,0.91,6.390,109.3,21.7,0.91,6.760,110.5 +21.1,0.91,7.430,130.9,21.1,0.91,8.090,130.8 +21.0,0.91,7.660,130.8,21.0,0.91,8.390,134.2 +20.4,0.91,9.590,155.8,20.4,0.91,10.280,157.5 +20.2,0.91,9.410,162.9,20.1,0.91,10.080,165.6 +19.7,0.91,9.250,167.7,19.8,0.91,9.870,170.0 +19.4,0.91,9.570,176.6,19.4,0.91,10.320,177.3 +20.3,0.91,8.180,173.0,20.1,0.91,8.340,173.2 +21.6,0.91,8.700,166.1,21.4,0.91,8.810,166.2 +22.6,0.91,8.020,164.0,22.4,0.91,8.130,164.1 +24.0,0.91,7.010,145.5,23.8,0.91,7.100,145.6 +25.2,0.91,7.690,136.0,25.0,0.91,7.800,136.1 +26.6,0.91,8.650,140.3,26.3,0.91,8.780,140.5 +26.8,0.91,9.510,135.2,26.6,0.91,9.610,135.4 +25.7,0.91,7.340,107.1,25.5,0.91,7.490,109.6 +27.7,0.91,9.380,135.6,27.4,0.91,9.500,135.7 +27.5,0.91,10.980,127.6,27.3,0.91,11.130,128.1 +23.7,0.91,6.020,245.8,23.5,0.91,6.170,246.5 +24.1,0.91,1.900,292.0,23.9,0.91,1.680,281.1 +24.4,0.91,3.660,139.1,24.3,0.91,4.210,139.8 +24.9,0.91,12.790,138.9,24.9,0.91,14.030,139.9 +21.5,0.91,12.720,168.3,21.3,0.91,13.270,167.5 +20.8,0.91,11.950,165.7,20.7,0.91,12.750,165.1 +20.4,0.91,11.480,159.6,20.3,0.91,12.230,159.3 +19.8,0.91,11.100,164.2,19.7,0.91,11.840,164.1 +19.4,0.91,11.330,167.9,19.4,0.91,12.060,168.0 +19.2,0.91,11.920,167.8,19.2,0.91,12.460,168.6 +18.9,0.91,12.000,170.0,18.9,0.91,12.610,170.3 +18.7,0.91,12.320,171.9,18.6,0.91,12.940,172.5 +18.2,0.91,12.520,166.8,18.1,0.91,13.100,167.2 +18.2,0.91,11.950,177.0,18.1,0.91,12.290,177.1 +18.5,0.91,10.560,171.9,18.3,0.91,10.720,172.0 +19.9,0.91,9.450,173.6,19.7,0.91,9.580,173.7 +21.1,0.91,9.570,168.7,20.9,0.91,9.730,168.9 +20.3,0.91,11.020,172.6,20.1,0.91,11.160,172.5 +21.2,0.91,9.970,175.5,20.9,0.91,10.100,175.4 +22.3,0.91,9.790,172.7,22.1,0.91,9.910,172.7 +23.9,0.91,9.100,173.0,23.7,0.91,9.220,173.1 +24.9,0.91,8.060,166.5,24.6,0.91,8.170,166.7 +24.9,0.91,10.930,160.0,24.7,0.91,11.030,160.2 +25.3,0.91,9.850,158.6,25.1,0.91,10.030,158.5 +25.0,0.91,9.770,163.0,24.8,0.91,9.910,163.1 +25.3,0.91,9.450,164.2,25.1,0.91,9.690,164.4 +24.4,0.91,10.970,159.4,24.2,0.91,11.550,159.0 +23.0,0.91,12.990,157.2,22.9,0.91,13.650,157.4 +22.2,0.91,12.450,165.0,22.1,0.91,13.040,165.0 +21.5,0.91,13.640,180.4,21.4,0.91,14.150,180.6 +20.7,0.91,13.170,180.8,20.5,0.91,13.720,181.1 +19.8,0.91,13.430,190.1,19.7,0.91,13.980,190.5 +19.4,0.91,11.760,202.4,19.3,0.91,12.240,202.6 +19.2,0.91,12.780,202.8,19.0,0.91,13.200,203.4 +18.9,0.91,13.370,182.3,18.8,0.91,13.780,182.8 +18.6,0.91,13.460,177.0,18.5,0.91,13.940,177.0 +18.9,0.91,13.300,190.5,18.9,0.91,13.920,190.7 +18.5,0.91,11.880,193.6,18.3,0.91,12.280,194.0 +20.1,0.91,12.130,198.4,19.9,0.91,12.280,198.5 +21.1,0.91,12.200,191.5,20.9,0.91,12.310,191.6 +22.4,0.91,12.130,190.2,22.2,0.91,12.260,190.4 +24.4,0.91,11.530,191.6,24.2,0.91,11.680,191.8 +26.0,0.91,10.850,189.2,25.8,0.91,10.990,189.3 +27.3,0.91,10.950,190.3,27.1,0.91,11.070,190.3 +28.3,0.91,9.890,184.5,28.0,0.91,10.000,184.3 +29.2,0.91,9.320,184.3,28.9,0.91,9.430,184.1 +29.7,0.91,8.650,181.8,29.5,0.91,8.750,181.3 +29.9,0.91,10.010,169.8,29.6,0.91,10.180,170.2 +29.7,0.91,10.650,168.9,29.5,0.91,10.760,169.1 +29.3,0.91,10.090,172.7,29.1,0.91,10.340,173.1 +28.1,0.91,11.590,173.9,28.0,0.91,12.310,174.2 +27.1,0.91,13.650,177.3,27.0,0.91,14.290,177.5 +25.9,0.91,15.370,181.8,25.7,0.91,16.010,181.9 +25.0,0.91,16.230,188.6,24.9,0.91,16.940,188.7 +23.5,0.91,15.870,183.2,23.4,0.91,16.380,182.9 +22.0,0.91,16.260,189.1,21.9,0.91,16.930,189.2 +21.0,0.90,17.440,188.6,20.9,0.90,18.060,189.0 +20.5,0.91,17.020,190.8,20.4,0.91,17.700,191.3 +19.9,0.90,18.000,194.1,19.9,0.90,18.700,194.6 +19.3,0.90,17.860,192.9,19.2,0.90,18.570,193.4 +18.8,0.90,18.050,193.0,18.7,0.90,18.780,193.6 +18.8,0.90,16.740,195.7,18.7,0.90,17.240,196.0 +19.8,0.90,16.220,201.3,19.6,0.90,16.420,201.4 +21.4,0.90,15.050,199.8,21.2,0.90,15.210,199.9 +23.2,0.90,13.890,198.0,23.0,0.90,14.050,198.1 +25.2,0.90,12.930,193.9,25.0,0.90,13.100,194.0 +26.9,0.90,11.670,190.0,26.7,0.90,11.830,190.1 +28.3,0.90,11.860,190.0,28.1,0.90,12.020,190.2 +29.4,0.90,12.140,191.7,29.2,0.90,12.290,191.7 +30.4,0.90,11.960,183.8,30.1,0.90,12.150,184.1 +30.8,0.90,12.540,193.1,30.6,0.90,12.680,192.9 +30.8,0.90,12.820,184.9,30.5,0.90,13.060,185.0 +30.2,0.90,15.630,185.4,30.0,0.90,15.790,185.5 +29.3,0.90,13.890,182.3,29.2,0.90,14.270,182.3 +28.0,0.90,15.360,190.8,27.9,0.90,15.850,190.8 +26.9,0.90,16.280,193.9,26.8,0.90,16.970,193.8 +25.7,0.90,16.830,188.4,25.6,0.90,17.480,188.5 +24.9,0.90,18.380,186.1,24.8,0.90,19.090,186.2 +24.3,0.90,19.220,188.0,24.2,0.90,20.010,188.0 +23.7,0.90,18.850,183.9,23.7,0.90,19.720,184.1 +23.2,0.90,19.570,187.8,23.1,0.90,20.360,188.0 +22.5,0.90,17.330,186.2,22.4,0.90,17.980,186.4 +21.3,0.90,19.290,189.7,21.3,0.90,20.050,190.2 +20.8,0.90,18.840,195.7,20.7,0.90,19.560,196.0 +20.0,0.90,18.580,192.9,19.9,0.90,19.330,193.3 +19.8,0.90,18.170,189.8,19.7,0.90,19.160,189.9 +19.9,0.90,17.690,191.8,19.8,0.90,18.040,191.9 +21.3,0.90,17.000,192.8,21.1,0.90,17.200,192.9 +22.6,0.90,16.080,190.1,22.4,0.90,16.270,190.2 +23.8,0.90,15.680,187.3,23.6,0.90,15.880,187.4 +25.6,0.90,15.140,185.0,25.4,0.90,15.350,185.1 +26.6,0.90,8.630,180.1,26.4,0.90,8.890,179.8 +28.0,0.90,15.040,180.2,27.8,0.90,15.210,180.1 +29.4,0.90,14.020,172.2,29.1,0.90,14.270,172.1 +29.7,0.90,14.750,171.4,29.5,0.90,14.980,171.6 +29.6,0.90,14.820,198.3,29.4,0.90,15.160,198.4 +25.3,0.90,12.050,161.2,25.1,0.90,12.570,161.0 +25.9,0.90,14.810,165.1,25.9,0.90,15.590,164.9 +25.9,0.90,16.670,161.4,25.8,0.90,17.700,161.1 +25.6,0.90,19.170,168.2,25.5,0.90,20.030,168.0 +24.7,0.90,18.900,169.4,24.6,0.90,19.680,169.2 +23.4,0.90,19.960,171.5,23.3,0.90,20.720,171.4 +22.2,0.90,19.940,171.6,22.1,0.90,20.600,171.6 +21.1,0.90,20.740,175.8,20.9,0.90,21.400,175.8 +20.5,0.90,20.980,179.5,20.4,0.90,21.610,179.5 +20.1,0.90,20.900,183.0,20.0,0.90,21.580,182.9 +19.7,0.90,21.860,186.6,19.5,0.90,22.540,186.5 +19.3,0.90,20.080,190.3,19.2,0.90,20.700,190.4 +19.2,0.90,19.560,188.0,19.1,0.90,20.230,188.0 +19.3,0.90,20.220,191.7,19.1,0.90,20.810,191.7 +19.9,0.90,17.400,189.2,19.7,0.90,17.660,189.1 +21.1,0.90,19.310,189.5,20.9,0.90,19.590,189.5 +23.1,0.90,18.800,191.1,22.9,0.90,19.070,191.2 +24.5,0.90,16.870,192.1,24.3,0.90,17.120,192.1 +25.8,0.90,16.940,193.8,25.6,0.90,17.190,193.8 +27.0,0.90,15.730,189.3,26.8,0.90,15.970,189.4 +28.5,0.90,14.780,192.8,28.3,0.90,15.030,192.9 +29.2,0.90,13.660,187.2,29.0,0.90,13.900,187.5 +30.0,0.90,13.460,193.6,29.7,0.90,13.680,193.6 +30.5,0.90,12.670,193.8,30.3,0.90,12.860,194.1 +30.5,0.90,12.050,195.6,30.3,0.90,12.290,195.6 +26.3,0.90,21.490,187.2,26.1,0.90,21.780,187.0 +26.1,0.90,12.140,154.8,26.1,0.90,12.250,155.9 +26.5,0.90,13.630,155.3,26.5,0.90,14.320,156.6 +25.5,0.90,15.470,174.0,25.5,0.90,16.370,174.5 +24.8,0.90,15.450,173.9,24.7,0.90,16.260,174.5 +23.0,0.90,16.480,171.1,22.9,0.90,17.110,171.3 +21.9,0.90,15.500,170.9,21.8,0.90,16.060,171.2 +21.4,0.90,16.500,176.5,21.2,0.90,17.060,176.8 +20.8,0.90,16.290,180.0,20.7,0.90,16.870,180.4 +20.6,0.90,16.230,186.3,20.4,0.90,16.810,186.7 +20.3,0.90,15.120,187.9,20.1,0.90,15.680,188.3 +20.1,0.90,15.460,187.1,19.9,0.90,15.840,187.4 +20.2,0.90,16.220,189.8,20.0,0.90,16.880,190.1 +20.8,0.90,15.940,191.9,20.6,0.90,16.190,192.1 +22.1,0.90,15.570,196.3,21.9,0.90,15.750,196.4 +24.2,0.90,13.770,201.1,24.0,0.90,13.940,201.2 +26.5,0.90,11.490,209.8,26.3,0.90,11.660,210.0 +28.1,0.90,10.080,218.9,27.9,0.90,10.210,219.0 +29.6,0.90,8.900,225.8,29.4,0.90,9.020,225.9 +30.9,0.90,8.320,229.2,30.7,0.90,8.410,229.2 +32.0,0.90,7.750,244.0,31.8,0.90,7.820,243.8 +32.4,0.90,7.030,247.0,32.2,0.90,7.120,246.7 +33.0,0.90,8.220,216.8,32.7,0.90,8.340,217.2 +32.8,0.90,8.640,247.8,32.6,0.90,8.690,247.3 +32.9,0.90,7.840,212.9,32.8,0.90,7.750,213.8 +32.6,0.90,8.690,223.3,32.5,0.90,8.750,222.0 +32.6,0.90,10.370,230.6,32.5,0.90,10.510,231.1 +31.6,0.90,10.030,226.0,31.7,0.90,10.520,226.4 +27.6,0.90,14.220,201.8,27.5,0.90,15.200,202.3 +26.3,0.90,14.050,200.3,26.3,0.90,14.940,201.0 +25.3,0.90,14.790,198.0,25.3,0.90,15.700,199.2 +24.2,0.90,15.020,188.7,24.2,0.90,15.680,189.7 +23.2,0.90,16.040,189.3,23.2,0.90,16.690,190.3 +22.2,0.90,16.250,191.3,22.2,0.90,16.950,192.3 +21.7,0.90,16.830,194.3,21.7,0.90,17.560,195.3 +21.0,0.90,16.950,195.1,20.9,0.90,17.640,195.8 +20.7,0.90,16.780,194.3,20.6,0.90,17.560,194.9 +21.8,0.90,15.350,196.8,21.6,0.90,15.530,197.0 +23.5,0.90,14.880,196.4,23.4,0.90,15.010,196.5 +25.7,0.90,14.240,197.9,25.5,0.90,14.380,198.1 +27.8,0.90,13.440,199.7,27.6,0.90,13.580,199.8 +30.0,0.90,11.600,198.3,29.8,0.90,11.740,198.5 +31.8,0.90,10.460,201.5,31.6,0.90,10.590,201.8 +33.3,0.90,9.640,209.0,33.0,0.90,9.780,209.2 +34.3,0.90,10.190,227.7,34.1,0.90,10.320,227.7 +34.7,0.90,9.980,219.7,34.4,0.90,10.130,219.9 +34.9,0.90,10.130,213.8,34.7,0.90,10.280,214.1 +35.0,0.90,10.860,214.7,34.8,0.90,11.050,215.0 +34.5,0.90,11.170,202.9,34.3,0.90,11.630,203.2 +33.8,0.90,13.240,203.6,33.8,0.90,14.140,204.5 +32.1,0.90,14.640,203.7,32.0,0.90,15.570,204.0 +30.5,0.90,15.030,195.4,30.5,0.90,16.060,195.9 +29.3,0.90,15.440,196.1,29.2,0.90,16.260,196.4 +28.0,0.90,13.930,189.2,28.0,0.90,14.740,190.1 +27.1,0.90,14.230,188.7,27.1,0.90,15.050,190.6 +26.6,0.90,15.650,193.8,26.5,0.90,16.480,195.4 +25.4,0.90,16.820,191.8,25.4,0.90,17.600,193.2 +24.7,0.90,16.510,195.3,24.7,0.90,17.400,196.6 +23.9,0.90,11.640,207.1,23.9,0.90,12.430,208.6 +22.5,0.90,3.490,252.9,22.7,0.90,4.080,249.7 +24.1,0.90,4.400,273.4,24.2,0.90,5.010,280.1 +22.7,0.90,4.730,355.7,22.6,0.90,4.680,355.0 +22.8,0.90,6.330,4.7,22.6,0.90,6.350,4.6 +24.2,0.90,6.790,12.4,24.0,0.90,6.820,12.2 +24.8,0.91,8.070,25.0,24.6,0.91,8.130,25.0 +25.3,0.91,8.810,30.1,25.0,0.91,8.890,30.1 +26.4,0.91,8.670,29.6,26.1,0.91,8.750,29.8 +26.5,0.91,9.470,42.9,26.3,0.91,9.560,42.7 +27.1,0.91,7.550,35.2,26.9,0.91,7.660,35.4 +27.5,0.91,8.750,40.1,27.3,0.91,8.850,40.1 +27.3,0.91,9.840,34.5,27.1,0.91,9.930,34.6 +27.1,0.91,9.640,35.3,26.9,0.91,9.750,35.4 +26.7,0.91,9.470,35.7,26.5,0.91,9.700,35.8 +25.5,0.91,11.370,40.9,25.4,0.91,11.990,41.3 +24.4,0.91,10.480,58.2,24.3,0.91,11.450,58.9 +23.1,0.91,11.830,66.8,23.1,0.91,13.070,67.5 +22.1,0.91,10.860,77.6,22.2,0.91,12.090,77.2 +21.8,0.91,11.260,82.7,21.9,0.91,12.140,81.9 +21.1,0.91,11.000,91.5,21.2,0.91,12.150,91.4 +21.0,0.91,11.320,95.7,21.1,0.91,12.600,94.1 +20.4,0.91,11.380,101.7,20.5,0.91,12.570,100.1 +19.7,0.91,11.790,104.5,19.8,0.91,12.710,101.1 +18.7,0.91,10.680,111.9,18.8,0.91,11.170,110.4 +18.1,0.91,8.150,109.0,18.2,0.91,8.780,107.2 +17.6,0.91,5.700,95.6,17.5,0.91,6.400,96.3 +18.8,0.91,5.990,75.7,18.7,0.91,6.060,76.7 +20.1,0.91,6.900,78.5,19.9,0.91,6.970,79.0 +21.3,0.91,6.440,77.5,21.1,0.91,6.490,77.9 +22.8,0.91,5.560,79.6,22.6,0.91,5.610,80.2 +24.1,0.91,4.890,81.0,23.8,0.91,4.930,82.4 +25.1,0.91,3.930,110.2,24.9,0.91,3.990,110.9 +26.1,0.91,3.690,133.4,25.8,0.91,3.680,133.0 +26.9,0.91,4.030,114.0,26.6,0.91,4.080,114.4 +27.5,0.91,4.470,135.0,27.3,0.91,4.500,135.2 +27.7,0.91,5.050,131.4,27.5,0.91,5.120,131.8 +27.6,0.91,5.470,140.5,27.4,0.91,5.500,140.5 +27.1,0.91,7.220,128.9,27.0,0.91,7.310,128.9 +26.6,0.91,8.800,133.6,26.4,0.91,9.070,133.6 +24.8,0.91,9.620,124.0,24.8,0.91,10.340,124.0 +23.5,0.91,10.680,124.9,23.6,0.91,11.540,124.8 +23.1,0.91,10.890,134.0,23.1,0.91,11.640,133.9 +22.4,0.91,10.840,139.8,22.5,0.91,11.630,139.7 +21.8,0.91,10.500,145.7,21.8,0.91,11.220,145.6 +20.9,0.91,11.610,151.4,20.9,0.91,12.400,151.0 +20.1,0.91,10.980,157.4,20.1,0.91,11.760,157.0 +19.8,0.91,11.680,167.2,19.8,0.91,12.290,166.9 +19.7,0.91,11.470,168.5,19.6,0.91,12.080,168.3 +19.5,0.91,12.460,172.0,19.5,0.91,12.970,172.1 +19.6,0.91,11.830,175.6,19.5,0.91,12.720,175.1 +20.9,0.91,11.730,178.1,20.7,0.91,11.910,178.2 +22.4,0.91,11.600,178.7,22.2,0.91,11.740,178.8 +23.9,0.91,12.460,183.3,23.7,0.91,12.600,183.3 +25.5,0.91,9.660,191.3,25.2,0.91,9.800,191.4 +26.9,0.91,8.990,191.9,26.7,0.91,9.120,192.0 +28.3,0.91,8.380,194.4,28.0,0.91,8.500,194.5 +29.4,0.90,7.620,194.4,29.1,0.90,7.710,194.5 +29.9,0.90,8.050,187.9,29.7,0.90,8.090,188.2 +30.4,0.90,9.000,182.6,30.2,0.90,9.010,182.9 +30.9,0.90,8.640,172.3,30.7,0.90,8.740,173.0 +31.1,0.90,9.560,188.8,30.9,0.90,9.650,188.5 +30.8,0.90,9.890,176.2,30.6,0.90,10.120,176.3 +29.9,0.90,10.410,172.8,29.8,0.90,10.910,173.1 +29.2,0.90,11.210,181.2,29.2,0.90,11.890,182.4 +28.2,0.90,11.970,186.7,28.1,0.90,12.660,187.4 +27.4,0.90,14.970,191.5,27.3,0.90,15.640,191.6 +26.5,0.90,15.810,188.7,26.4,0.90,16.510,189.1 +25.7,0.90,15.400,184.0,25.7,0.90,16.090,184.2 +24.3,0.90,4.960,153.8,24.2,0.90,5.790,160.3 +23.8,0.90,11.120,171.1,23.8,0.90,11.840,173.3 +19.9,0.90,8.130,114.3,20.0,0.90,8.980,116.3 +21.5,0.90,8.250,146.7,21.5,0.90,9.040,149.4 +20.0,0.90,5.430,88.6,19.9,0.90,5.530,96.4 +20.5,0.90,4.880,134.4,20.6,0.90,6.030,147.2 +22.3,0.90,6.380,166.6,22.2,0.90,6.470,167.5 +24.2,0.90,9.630,185.9,24.0,0.90,9.750,186.1 +25.7,0.90,11.070,184.8,25.5,0.90,11.180,185.0 +27.9,0.90,11.700,189.4,27.6,0.90,11.830,189.6 +29.7,0.90,11.830,183.2,29.5,0.90,11.970,183.4 +31.2,0.90,12.070,182.1,30.9,0.90,12.170,182.3 +32.7,0.90,10.190,187.4,32.5,0.90,10.350,187.9 +33.5,0.90,9.910,190.8,33.3,0.90,10.020,191.0 +34.4,0.90,8.730,193.8,34.1,0.90,8.860,194.0 +34.6,0.90,8.850,186.2,34.3,0.90,8.990,186.3 +34.2,0.90,12.610,179.0,34.0,0.90,12.690,179.2 +33.7,0.90,15.970,184.7,33.5,0.90,16.330,184.9 +33.1,0.90,11.720,189.2,32.9,0.90,11.990,188.4 +31.1,0.90,15.770,186.4,31.0,0.90,16.360,186.4 +29.3,0.90,15.730,189.7,29.2,0.90,16.510,189.9 +28.1,0.90,16.880,188.2,28.0,0.90,17.610,188.5 +26.7,0.90,8.180,166.7,26.7,0.90,8.850,170.0 +25.7,0.90,10.500,170.4,25.7,0.90,11.300,172.1 +24.6,0.90,13.730,172.6,24.5,0.90,14.260,173.8 +24.0,0.90,14.640,184.3,24.0,0.90,15.210,185.3 +23.3,0.90,14.600,187.0,23.4,0.90,15.250,188.3 +22.9,0.90,15.440,183.9,22.9,0.90,16.060,185.1 +22.2,0.90,16.000,190.0,22.2,0.90,16.660,191.0 +21.9,0.90,9.950,196.3,21.7,0.90,10.870,196.4 +23.0,0.90,8.340,198.1,22.8,0.90,8.460,198.4 +24.3,0.90,5.370,180.6,24.1,0.90,5.490,180.9 +25.6,0.90,5.100,175.6,25.4,0.90,5.150,175.9 +27.2,0.90,5.780,173.8,27.0,0.90,5.860,174.3 +28.5,0.90,6.280,167.4,28.3,0.90,6.360,167.6 +29.5,0.90,3.970,138.1,29.3,0.90,3.980,138.7 +30.5,0.90,4.740,137.7,30.2,0.90,4.780,138.3 +31.3,0.90,4.570,127.0,31.1,0.90,4.620,127.4 +32.0,0.90,5.700,93.5,31.7,0.90,5.740,94.1 +32.0,0.90,8.530,118.0,31.8,0.90,8.670,118.5 +20.9,0.90,20.150,232.1,20.8,0.90,20.680,231.8 +20.9,0.90,11.150,191.1,20.9,0.90,10.250,191.1 +22.4,0.90,14.660,132.2,22.5,0.90,15.310,132.0 +25.6,0.90,6.280,101.1,25.8,0.90,6.520,99.2 +19.3,0.91,11.120,345.6,19.1,0.91,11.430,345.4 +18.3,0.91,6.790,27.4,18.2,0.91,7.000,26.4 +17.7,0.90,4.390,67.0,17.9,0.90,4.700,62.7 +20.9,0.90,3.630,57.4,21.6,0.90,3.730,49.2 +17.9,0.91,4.810,332.0,17.9,0.91,4.660,335.7 +18.7,0.91,6.370,302.5,18.6,0.91,6.670,306.3 +18.5,0.91,6.790,22.5,18.3,0.91,7.120,21.8 +17.7,0.91,5.710,32.6,17.5,0.91,5.820,32.5 +17.4,0.91,7.570,2.1,17.3,0.91,8.130,2.8 +16.8,0.91,5.340,35.1,16.7,0.91,5.390,35.3 +17.1,0.91,6.610,26.0,16.9,0.91,6.630,26.2 +17.5,0.91,6.930,22.6,17.3,0.91,6.990,22.7 +18.2,0.91,5.390,23.5,18.0,0.91,5.430,24.1 +20.4,0.91,6.110,30.6,20.2,0.91,6.160,30.6 +21.7,0.91,6.610,18.2,21.5,0.91,6.660,18.3 +22.7,0.91,6.310,23.6,22.4,0.91,6.350,23.8 +22.9,0.91,7.970,359.8,22.7,0.91,8.020,0.3 +23.7,0.91,5.250,11.5,23.4,0.91,5.280,11.4 +23.9,0.91,8.530,23.3,23.7,0.91,8.590,23.4 +23.8,0.91,7.020,20.3,23.6,0.91,7.080,20.2 +23.5,0.91,8.190,47.9,23.3,0.91,8.280,48.0 +23.1,0.91,8.350,39.1,22.9,0.91,8.500,39.5 +22.3,0.91,7.680,45.1,22.1,0.91,8.020,45.7 +21.5,0.91,7.740,44.4,21.3,0.91,8.130,45.2 +20.8,0.91,8.340,61.4,20.6,0.91,8.810,61.7 +20.0,0.91,7.540,66.8,19.8,0.91,8.130,67.5 +19.2,0.91,7.430,75.9,19.1,0.91,8.070,77.2 +18.8,0.91,7.550,85.4,18.6,0.91,8.000,85.8 +18.2,0.91,8.930,77.5,18.2,0.91,9.450,77.7 +17.7,0.91,8.950,78.0,17.7,0.91,9.540,78.5 +17.7,0.91,7.850,79.0,17.7,0.91,8.160,78.6 +17.7,0.91,7.140,100.4,17.8,0.91,7.230,98.1 +16.9,0.91,5.180,85.8,16.9,0.91,5.670,85.8 +17.1,0.91,3.900,136.1,17.0,0.91,4.150,134.1 +18.4,0.91,4.160,150.6,18.2,0.91,4.190,150.3 +19.7,0.91,3.420,135.7,19.5,0.91,3.460,135.5 +21.0,0.91,3.920,135.9,20.8,0.91,3.950,135.8 +22.1,0.91,4.010,132.6,21.9,0.91,4.040,132.7 +23.4,0.91,3.550,125.7,23.2,0.91,3.570,125.9 +24.6,0.91,3.920,120.9,24.4,0.91,3.970,120.7 +25.5,0.91,3.720,119.0,25.3,0.91,3.750,119.1 +26.1,0.91,4.110,118.3,25.9,0.91,4.130,118.3 +26.5,0.91,4.790,122.3,26.3,0.91,4.830,122.6 +26.7,0.91,6.370,137.9,26.5,0.91,6.440,137.9 +26.6,0.91,6.970,137.6,26.4,0.91,7.040,137.6 +25.9,0.91,8.090,134.9,25.7,0.91,8.350,134.7 +24.7,0.90,9.320,131.8,24.6,0.90,9.790,132.2 +23.6,0.91,10.580,133.3,23.5,0.91,11.270,132.9 +22.5,0.91,11.060,136.8,22.5,0.91,11.840,136.5 +21.9,0.91,11.770,142.6,21.9,0.91,12.530,142.7 +21.3,0.91,12.580,157.0,21.4,0.91,13.490,156.3 +21.0,0.91,13.350,162.4,21.1,0.91,14.070,162.2 +20.8,0.91,14.210,169.2,20.8,0.91,14.880,169.4 +20.4,0.91,11.970,175.7,20.4,0.91,12.440,176.3 +19.8,0.91,12.140,178.2,19.8,0.91,12.590,178.6 +19.6,0.91,12.160,178.5,19.6,0.91,12.610,178.9 +18.8,0.90,13.230,179.5,18.9,0.90,13.690,179.9 +18.4,0.90,11.510,183.4,18.3,0.90,12.030,183.5 +19.4,0.91,11.020,184.2,19.3,0.91,11.150,184.2 +20.7,0.91,9.460,182.0,20.5,0.91,9.570,182.0 +22.4,0.91,8.620,187.8,22.2,0.91,8.720,187.9 +23.7,0.90,8.600,190.4,23.5,0.90,8.720,190.5 +25.1,0.90,8.600,187.0,24.9,0.90,8.720,187.1 +26.1,0.90,8.540,183.7,25.8,0.90,8.630,183.8 +26.9,0.90,8.510,186.6,26.7,0.90,8.600,186.1 +28.1,0.90,8.130,183.1,27.8,0.90,8.230,183.1 +28.5,0.90,9.380,171.5,28.3,0.90,9.490,171.9 +28.8,0.90,8.950,170.5,28.6,0.90,9.070,170.9 +29.0,0.90,9.570,179.4,28.8,0.90,9.650,179.4 +28.7,0.90,10.350,162.5,28.6,0.90,10.590,162.8 +27.6,0.90,12.060,160.7,27.4,0.90,12.580,161.1 +26.7,0.90,12.780,160.7,26.6,0.90,13.340,161.0 +26.0,0.90,11.650,174.3,25.9,0.90,12.100,174.5 +25.2,0.90,11.770,177.8,25.1,0.90,12.420,177.9 +24.1,0.90,6.290,144.5,23.9,0.90,6.830,147.6 +15.6,0.90,6.150,337.5,15.6,0.90,6.840,334.4 +17.1,0.91,4.360,239.8,16.9,0.91,4.380,240.4 +17.7,0.90,4.520,204.3,18.0,0.90,4.610,208.8 +19.8,0.91,5.290,304.7,20.2,0.91,5.780,309.0 +18.2,0.91,4.160,96.9,18.3,0.91,3.220,87.6 +18.3,0.91,5.810,195.8,18.7,0.91,5.340,200.0 +20.2,0.91,4.620,202.6,20.3,0.91,4.610,203.5 +20.1,0.91,2.280,223.5,20.0,0.91,2.260,224.0 +22.0,0.91,1.440,107.3,21.8,0.91,1.450,108.1 +23.7,0.91,2.690,116.1,23.5,0.91,2.700,116.0 +25.0,0.91,2.910,108.6,24.8,0.91,2.930,108.1 +26.2,0.91,3.380,66.8,26.0,0.91,3.380,67.2 +27.0,0.91,4.180,76.0,26.8,0.91,4.180,76.1 +27.8,0.91,4.560,88.8,27.6,0.91,4.600,88.8 +28.4,0.91,4.470,79.0,28.2,0.91,4.500,79.5 +28.8,0.91,4.510,78.2,28.6,0.91,4.540,79.7 +28.9,0.91,5.010,66.2,28.8,0.91,5.020,67.4 +29.0,0.91,4.580,102.1,28.8,0.91,4.580,102.0 +28.5,0.91,5.040,103.2,28.3,0.91,5.000,103.4 +27.9,0.91,6.050,97.1,27.8,0.91,5.950,97.8 +27.3,0.91,8.860,128.2,27.2,0.91,9.030,127.6 +26.7,0.91,8.180,136.4,26.5,0.91,7.840,137.1 +25.8,0.91,8.450,152.6,25.7,0.91,8.270,154.3 +25.5,0.91,10.130,161.8,25.4,0.91,10.200,163.0 +24.6,0.91,10.520,161.1,24.6,0.91,10.760,161.5 +23.2,0.91,10.760,194.8,23.1,0.91,11.300,195.8 +22.9,0.91,12.240,190.3,23.0,0.91,12.790,189.8 +22.2,0.91,12.860,195.2,22.3,0.91,13.500,194.9 +21.1,0.91,12.990,202.4,21.2,0.91,13.730,202.9 +20.9,0.91,12.370,206.4,21.1,0.91,12.940,205.8 +20.6,0.91,9.880,214.9,20.5,0.91,10.950,214.2 +21.9,0.91,8.830,210.0,21.7,0.91,8.960,209.8 +23.2,0.91,9.390,207.3,23.0,0.91,9.500,207.3 +25.0,0.91,8.140,209.7,24.8,0.91,8.230,209.7 +26.7,0.91,7.310,202.9,26.4,0.91,7.400,202.9 +27.9,0.91,7.970,194.2,27.7,0.91,8.060,194.2 +29.0,0.91,7.950,188.8,28.8,0.91,8.040,188.9 +30.0,0.91,6.930,185.7,29.8,0.91,7.010,185.3 +30.7,0.91,6.530,175.7,30.5,0.91,6.590,175.9 +31.1,0.91,6.630,177.3,30.9,0.91,6.730,176.1 +31.1,0.91,6.280,175.6,30.9,0.91,6.370,175.1 +31.2,0.91,7.380,159.9,30.9,0.91,7.470,159.9 +30.6,0.91,8.310,148.3,30.5,0.91,8.660,148.9 +30.1,0.91,10.240,153.7,30.0,0.91,10.590,152.8 +29.2,0.91,11.880,150.3,29.2,0.91,12.420,151.1 +28.1,0.91,12.660,157.0,28.1,0.91,13.430,157.5 +27.3,0.91,13.300,166.4,27.2,0.91,14.330,167.2 +26.5,0.91,12.720,174.8,26.5,0.91,13.450,176.5 +25.8,0.91,12.360,183.8,25.9,0.91,13.110,185.9 +25.3,0.91,11.280,192.7,25.3,0.91,11.910,195.0 +24.6,0.91,11.090,196.1,24.6,0.91,11.900,197.8 +23.9,0.91,11.040,194.6,23.8,0.91,11.750,196.2 +23.1,0.91,11.020,199.0,23.0,0.91,11.740,201.9 +22.3,0.91,11.560,196.3,22.3,0.91,12.270,198.6 +21.9,0.91,8.150,204.3,21.7,0.91,8.530,205.0 +22.5,0.91,8.790,196.6,22.3,0.91,8.870,196.8 +23.6,0.91,8.320,200.1,23.4,0.91,8.420,200.2 +25.0,0.91,7.250,197.2,24.8,0.91,7.330,197.3 +26.1,0.91,8.470,189.8,25.9,0.91,8.570,189.9 +27.3,0.91,7.730,186.3,27.1,0.91,7.820,186.3 +28.3,0.91,6.930,185.8,28.1,0.91,7.010,185.6 +29.1,0.91,8.490,189.9,28.9,0.91,8.550,188.8 +29.7,0.91,7.130,183.2,29.5,0.91,7.170,183.5 +30.2,0.91,8.310,172.0,30.0,0.91,8.360,172.2 +30.4,0.91,8.250,170.0,30.3,0.91,8.310,170.1 +30.6,0.91,8.810,177.6,30.4,0.91,8.850,177.7 +30.3,0.91,8.800,171.5,30.1,0.91,9.010,171.6 +29.7,0.91,10.720,170.9,29.6,0.91,11.160,171.2 +28.7,0.91,11.540,177.0,28.7,0.91,12.400,178.0 +27.5,0.91,12.030,182.5,27.4,0.91,12.870,183.0 +26.4,0.91,11.840,186.4,26.4,0.91,12.640,186.5 +25.6,0.91,12.380,189.0,25.5,0.91,13.210,189.2 +24.9,0.91,13.170,192.7,24.8,0.91,14.040,192.9 +24.1,0.91,13.440,192.4,24.0,0.91,14.270,192.6 +23.4,0.91,13.680,194.0,23.4,0.91,14.590,194.3 +22.4,0.91,12.430,195.5,22.4,0.91,13.280,195.9 +21.5,0.91,12.540,195.9,21.4,0.91,13.380,196.5 +20.7,0.91,12.460,197.0,20.6,0.91,13.250,197.6 +20.6,0.91,11.670,199.1,20.5,0.91,11.930,199.4 +21.3,0.91,10.310,200.8,21.1,0.91,10.430,201.0 +22.6,0.91,9.980,197.8,22.4,0.91,10.080,197.9 +24.1,0.91,8.930,195.6,23.9,0.91,9.030,195.7 +25.6,0.91,7.850,191.9,25.4,0.91,7.940,192.0 +26.9,0.91,7.840,185.3,26.7,0.91,7.920,185.3 +28.2,0.91,7.320,184.6,28.0,0.91,7.390,184.2 +29.2,0.91,7.530,172.5,28.9,0.91,7.620,172.6 +29.9,0.91,7.030,176.2,29.6,0.91,7.120,175.5 +30.3,0.91,8.650,169.1,30.0,0.91,8.730,169.3 +30.5,0.91,9.240,167.7,30.3,0.91,9.310,167.6 +30.6,0.91,7.890,173.2,30.4,0.91,8.030,172.9 +30.2,0.91,9.540,168.6,30.0,0.91,9.710,168.7 +29.4,0.91,10.280,163.8,29.4,0.91,10.760,164.7 +28.4,0.91,12.480,162.7,28.4,0.91,13.140,163.3 +27.0,0.91,12.320,169.4,27.1,0.91,13.180,170.1 +26.2,0.91,13.450,179.6,26.2,0.91,14.280,180.2 +25.5,0.91,12.680,184.8,25.6,0.91,13.520,185.4 +24.9,0.91,13.310,188.1,25.0,0.91,14.260,188.8 +24.5,0.91,12.200,189.3,24.5,0.91,12.890,189.7 +23.8,0.91,12.390,188.5,23.8,0.91,12.990,189.2 +22.7,0.91,12.660,193.4,22.5,0.91,13.580,194.6 +21.8,0.91,11.600,198.3,21.7,0.91,12.380,199.5 +21.2,0.91,10.620,199.4,21.2,0.91,11.260,200.3 +21.0,0.91,8.660,198.7,20.9,0.91,9.350,199.0 +21.9,0.91,8.100,196.6,21.7,0.91,8.180,196.8 +23.2,0.91,7.310,199.8,23.0,0.91,7.370,200.0 +24.9,0.91,5.110,185.1,24.7,0.91,5.160,185.2 +26.2,0.91,5.710,180.6,26.0,0.91,5.760,180.5 +27.3,0.91,5.890,163.4,27.1,0.91,5.920,163.6 +28.5,0.91,5.710,163.4,28.2,0.91,5.780,163.3 +29.4,0.91,6.390,164.3,29.2,0.91,6.480,164.1 +30.0,0.91,6.080,153.2,29.8,0.91,6.170,153.2 +30.5,0.91,7.420,151.3,30.3,0.91,7.520,151.3 +30.5,0.91,7.490,153.4,30.3,0.91,7.580,153.4 +30.5,0.91,7.640,154.9,30.3,0.91,7.770,154.8 +30.1,0.91,8.700,151.1,29.9,0.91,8.990,151.4 +29.7,0.91,8.880,150.6,29.5,0.91,9.250,151.7 +28.7,0.91,11.340,157.5,28.7,0.91,12.000,157.7 +27.6,0.91,12.010,157.1,27.6,0.91,12.900,157.3 +27.2,0.91,12.350,172.2,27.1,0.91,12.720,173.4 +26.2,0.91,12.640,179.6,26.2,0.91,13.170,180.8 +25.4,0.91,10.950,184.5,25.4,0.91,11.530,185.2 +24.8,0.91,11.190,187.1,24.8,0.91,11.610,188.1 +24.2,0.91,11.890,186.8,24.1,0.91,12.290,187.1 +23.3,0.91,10.480,178.8,23.2,0.91,11.030,179.4 +22.5,0.91,10.850,183.8,22.4,0.91,11.330,185.4 +21.9,0.91,10.490,187.3,21.9,0.91,10.900,188.6 +21.3,0.91,7.730,189.5,21.1,0.91,7.980,189.6 +22.1,0.91,8.000,183.7,21.9,0.91,8.080,183.6 +23.1,0.91,7.550,183.1,22.9,0.91,7.620,183.0 +24.2,0.91,6.710,177.8,24.0,0.91,6.800,177.9 +25.4,0.91,7.610,174.4,25.2,0.91,7.690,174.5 +26.5,0.91,7.560,167.5,26.3,0.91,7.670,167.5 +27.8,0.91,8.180,163.8,27.6,0.91,8.300,163.9 +28.7,0.91,9.350,168.5,28.4,0.91,9.470,168.4 +28.9,0.91,11.170,173.8,28.7,0.91,11.270,173.7 +25.9,0.91,7.960,245.3,25.7,0.91,8.030,244.7 +25.7,0.91,7.270,266.1,25.6,0.91,7.190,265.9 +25.1,0.91,1.560,311.2,25.2,0.91,1.190,300.9 +24.7,0.91,3.790,55.4,24.5,0.91,3.720,55.6 +24.1,0.91,1.160,97.9,24.3,0.91,1.210,116.1 +26.5,0.91,6.290,145.4,26.7,0.91,7.110,151.9 +26.1,0.91,5.640,143.2,26.3,0.91,6.280,158.2 +26.6,0.91,8.290,162.3,26.4,0.91,8.430,160.5 +26.3,0.91,11.870,165.7,26.2,0.91,12.030,166.2 +25.3,0.91,10.360,174.8,25.3,0.91,11.100,175.8 +24.8,0.91,11.890,175.9,24.8,0.91,12.360,176.2 +24.2,0.91,11.170,179.7,24.1,0.91,11.610,179.6 +23.5,0.91,11.130,181.7,23.5,0.91,11.820,183.3 +23.1,0.91,10.530,193.5,23.1,0.91,11.050,194.3 +22.7,0.91,8.120,201.4,22.6,0.91,8.280,202.5 +22.1,0.91,7.220,192.0,22.2,0.91,7.680,192.3 +22.7,0.91,6.720,189.0,22.5,0.91,6.780,189.2 +23.3,0.91,7.150,198.8,23.1,0.91,7.220,198.8 +24.1,0.91,7.410,190.0,23.9,0.91,7.500,190.0 +23.7,0.91,7.820,189.4,23.5,0.91,7.900,189.3 +23.8,0.91,7.640,189.7,23.6,0.91,7.700,189.9 +24.9,0.91,8.310,182.3,24.7,0.91,8.410,182.6 +26.0,0.91,7.220,176.4,25.7,0.91,7.330,176.6 +27.0,0.91,7.420,185.5,26.8,0.91,7.510,185.2 +28.1,0.91,7.280,167.0,27.9,0.91,7.370,167.7 +28.7,0.91,7.420,183.8,28.4,0.91,7.520,183.5 +28.5,0.91,8.400,187.6,28.3,0.91,8.510,187.2 +28.2,0.91,9.450,181.7,28.0,0.91,9.520,181.7 +27.5,0.91,9.130,191.3,27.4,0.91,9.570,191.2 +27.1,0.91,8.390,185.8,27.0,0.91,8.860,185.5 +26.8,0.91,8.790,182.2,26.7,0.91,9.220,182.7 +26.5,0.91,8.360,171.2,26.5,0.91,8.710,172.8 +26.1,0.91,8.810,184.3,25.9,0.91,8.980,185.4 +25.3,0.91,8.640,174.0,25.3,0.91,8.920,176.4 +25.3,0.91,10.190,190.5,25.2,0.91,10.450,191.2 +24.4,0.91,10.020,195.3,24.3,0.91,10.550,196.4 +23.9,0.91,10.810,199.3,23.8,0.91,11.500,200.3 +22.8,0.91,11.200,196.4,22.7,0.91,11.930,197.8 +22.2,0.91,11.350,199.7,22.2,0.91,12.120,200.3 +22.1,0.91,9.250,200.3,22.0,0.91,9.600,200.6 +23.0,0.91,9.020,198.2,22.8,0.91,9.110,198.4 +24.2,0.91,9.010,201.7,24.0,0.91,9.090,201.8 +25.8,0.91,7.990,200.1,25.6,0.91,8.060,200.2 +27.3,0.91,5.480,193.9,27.1,0.91,5.530,194.0 +28.4,0.91,4.660,184.3,28.2,0.91,4.690,184.4 +29.3,0.91,4.900,189.7,29.0,0.91,4.920,189.5 +30.1,0.91,6.070,165.5,29.9,0.91,6.130,166.2 +30.8,0.91,5.520,182.2,30.6,0.91,5.550,182.0 +31.5,0.91,6.930,172.5,31.2,0.91,7.010,172.9 +31.8,0.91,6.720,172.0,31.6,0.91,6.840,171.6 +31.6,0.90,8.610,184.3,31.4,0.90,8.700,184.3 +31.7,0.90,7.710,183.8,31.5,0.90,7.830,183.7 +31.3,0.91,9.080,185.5,31.1,0.91,9.400,186.0 +20.8,0.91,18.330,302.1,20.6,0.91,18.760,302.4 +21.0,0.91,15.140,283.8,20.9,0.91,15.810,284.0 +25.3,0.91,8.030,306.4,25.9,0.91,8.280,305.7 +28.0,0.91,9.630,201.0,27.9,0.91,9.950,201.3 +26.3,0.91,3.370,220.8,26.1,0.91,3.660,222.3 +24.6,0.91,7.630,217.8,24.6,0.91,7.840,218.4 +23.4,0.91,8.110,200.1,23.5,0.91,8.530,202.0 +23.0,0.91,9.940,198.7,23.2,0.91,10.400,199.3 +21.9,0.91,11.900,192.1,22.0,0.91,12.340,192.3 +22.0,0.91,11.320,195.3,22.0,0.91,11.760,196.1 +22.2,0.91,6.010,197.7,22.1,0.91,6.970,199.1 +23.6,0.91,7.220,207.7,23.4,0.91,7.300,207.9 +24.9,0.91,7.310,202.1,24.7,0.91,7.370,202.4 +26.2,0.91,7.070,196.3,25.9,0.91,7.130,196.5 +27.7,0.91,5.550,198.6,27.5,0.91,5.600,198.7 +29.0,0.91,5.090,184.3,28.8,0.91,5.130,184.4 +30.1,0.91,4.520,173.9,29.9,0.91,4.530,174.2 +31.2,0.91,4.260,183.2,31.0,0.91,4.300,183.0 +31.5,0.91,5.560,171.9,31.3,0.91,5.560,172.2 +32.2,0.90,4.830,190.4,32.0,0.90,4.830,189.2 +32.5,0.90,6.600,163.4,32.2,0.90,6.670,163.8 +32.4,0.90,8.360,157.6,32.2,0.90,8.480,157.7 +32.3,0.90,8.980,161.2,32.1,0.90,9.260,161.3 +25.0,0.90,12.130,28.6,24.9,0.90,12.430,29.9 +18.6,0.91,8.780,333.3,18.4,0.91,9.010,333.4 +18.3,0.91,6.760,51.1,18.3,0.91,7.410,49.1 +19.0,0.91,9.050,132.0,18.8,0.91,9.310,132.0 +19.2,0.91,5.560,101.8,19.0,0.91,6.040,103.2 +20.8,0.91,3.510,132.5,21.1,0.91,3.780,129.5 +20.1,0.91,3.490,41.7,19.9,0.91,3.540,43.0 +19.7,0.91,2.240,22.9,19.6,0.91,2.350,24.8 +19.6,0.91,0.850,359.4,19.4,0.91,1.020,10.1 +19.7,0.91,2.120,42.0,19.5,0.91,2.150,45.3 +19.8,0.91,3.610,50.3,19.8,0.91,3.930,50.0 +19.4,0.91,3.920,75.6,19.2,0.91,4.010,75.7 +20.0,0.91,2.470,69.4,19.8,0.91,2.490,71.0 +21.6,0.91,1.430,80.3,21.4,0.91,1.440,81.7 +23.2,0.91,2.420,54.9,23.0,0.91,2.400,55.8 +24.2,0.91,2.110,47.4,24.0,0.91,2.090,48.4 +25.3,0.91,2.520,47.6,25.1,0.91,2.500,47.6 +26.3,0.91,2.530,49.1,26.1,0.91,2.500,49.4 +27.1,0.91,2.850,53.6,26.8,0.91,2.830,54.1 +27.7,0.91,2.470,52.2,27.5,0.91,2.450,52.5 +28.3,0.91,2.150,56.5,28.1,0.91,2.110,56.9 +28.5,0.91,3.000,55.8,28.3,0.91,2.970,56.7 +28.6,0.91,3.140,76.8,28.4,0.91,3.140,76.8 +28.3,0.91,4.090,79.1,28.1,0.91,4.140,79.7 +28.0,0.91,5.260,100.1,27.9,0.91,5.170,101.3 +27.0,0.91,8.530,94.7,26.9,0.91,9.040,94.4 +26.2,0.91,8.850,104.1,26.1,0.91,9.530,104.8 +25.1,0.91,8.890,122.5,24.9,0.91,9.500,123.8 +24.8,0.91,9.450,141.8,24.8,0.91,10.140,142.0 +23.9,0.91,10.860,157.2,23.8,0.91,11.600,157.0 +23.3,0.91,8.870,155.5,23.3,0.91,9.620,156.3 +22.6,0.91,7.240,26.1,22.7,0.91,7.110,23.7 +19.4,0.91,8.100,69.5,19.2,0.91,8.590,70.4 +19.8,0.91,8.450,113.4,19.7,0.91,8.940,113.2 +20.5,0.91,11.530,126.8,20.4,0.91,12.000,127.0 +21.5,0.91,10.220,149.0,21.4,0.91,10.550,149.0 +22.1,0.91,9.880,173.0,21.9,0.91,9.980,173.2 +23.6,0.91,9.650,185.5,23.4,0.91,9.730,185.5 +25.3,0.91,7.540,188.9,25.1,0.91,7.610,189.0 +26.8,0.91,2.380,228.9,26.6,0.91,2.410,229.0 +18.8,0.91,11.900,13.7,18.6,0.91,12.090,13.9 +20.6,0.91,9.790,64.3,20.4,0.91,9.820,64.3 +23.8,0.91,7.360,84.5,23.6,0.91,7.370,84.7 +26.3,0.91,7.250,105.5,26.1,0.91,7.330,105.9 +27.8,0.91,7.740,125.6,27.6,0.91,7.840,126.0 +29.2,0.91,8.640,145.9,29.0,0.91,8.770,146.1 +29.7,0.90,9.550,148.3,29.5,0.90,9.710,148.5 +29.2,0.90,10.180,148.1,29.1,0.90,10.610,148.2 +29.0,0.90,11.120,147.7,29.0,0.90,11.980,147.1 +28.0,0.91,11.790,142.7,28.0,0.91,12.590,143.3 +27.8,0.91,14.800,167.0,27.7,0.91,15.640,167.0 +27.0,0.91,14.520,173.9,27.0,0.91,15.350,174.2 +26.6,0.91,15.660,181.1,26.5,0.91,16.460,181.3 +25.9,0.91,5.000,307.1,25.9,0.91,4.410,290.9 +22.7,0.91,2.230,289.9,23.1,0.91,1.860,223.0 +24.6,0.91,7.830,178.5,24.6,0.91,8.480,179.1 +24.1,0.91,12.760,189.5,24.0,0.91,13.280,190.9 +23.1,0.91,15.150,192.1,23.1,0.91,15.860,192.8 +22.3,0.91,15.810,193.3,22.2,0.91,16.520,193.7 +21.9,0.91,15.110,193.4,21.7,0.91,15.590,193.7 +22.5,0.91,12.870,194.4,22.3,0.91,13.050,194.5 +23.6,0.91,12.230,190.1,23.4,0.91,12.380,190.2 +25.2,0.91,11.860,189.2,25.0,0.91,12.010,189.3 +26.8,0.91,10.800,183.7,26.6,0.91,10.940,183.8 +28.3,0.91,10.740,181.9,28.1,0.91,10.900,182.0 +29.6,0.91,10.300,176.9,29.4,0.91,10.440,177.1 +30.5,0.91,9.970,172.3,30.3,0.91,10.120,172.6 +31.3,0.91,10.260,172.0,31.0,0.91,10.400,172.3 +31.4,0.91,12.300,168.6,31.2,0.91,12.450,168.8 +31.6,0.91,11.850,170.0,31.4,0.91,12.020,170.1 +31.4,0.91,11.920,173.6,31.2,0.91,12.150,173.5 +30.8,0.91,12.670,175.7,30.6,0.91,13.070,175.6 +29.6,0.91,12.980,169.3,29.4,0.91,13.760,169.7 +28.4,0.91,12.640,175.9,28.3,0.91,13.400,176.0 +27.8,0.91,12.000,177.6,27.7,0.91,12.720,177.7 +26.8,0.91,12.430,177.6,26.8,0.91,13.280,177.6 +26.2,0.91,13.780,181.0,26.2,0.91,14.600,181.2 +25.2,0.91,12.340,184.7,25.2,0.91,13.410,184.4 +24.3,0.91,14.900,190.2,24.2,0.91,15.630,190.5 +23.5,0.91,13.410,192.0,23.4,0.91,14.130,192.4 +22.8,0.91,12.900,191.1,22.7,0.91,13.570,191.6 +22.1,0.91,13.490,191.5,21.9,0.91,14.140,191.9 +21.4,0.91,14.060,191.5,21.3,0.91,14.730,192.0 +21.3,0.91,12.520,190.5,21.2,0.91,12.810,190.7 +21.9,0.91,11.830,187.0,21.7,0.91,11.970,187.1 +22.9,0.91,11.940,189.5,22.7,0.91,12.090,189.5 +24.4,0.91,10.630,191.6,24.2,0.91,10.760,191.6 +25.9,0.91,10.760,189.8,25.6,0.91,10.910,189.8 +27.0,0.91,10.500,185.9,26.8,0.91,10.650,186.0 +28.3,0.91,11.130,185.4,28.0,0.91,11.240,185.4 +29.5,0.91,9.740,189.2,29.3,0.91,9.870,188.8 +29.9,0.91,12.340,180.5,29.7,0.91,12.400,180.6 +30.6,0.91,11.740,188.3,30.4,0.91,11.860,187.6 +30.8,0.91,11.670,174.2,30.5,0.91,11.820,174.5 +30.7,0.91,12.350,179.7,30.5,0.91,12.410,179.7 +30.3,0.91,10.820,165.2,30.1,0.91,11.160,165.4 +29.4,0.91,11.700,166.2,29.3,0.91,12.470,166.7 +28.5,0.91,12.390,170.2,28.4,0.91,13.320,170.3 +27.4,0.91,13.610,176.2,27.4,0.91,14.410,176.0 +26.4,0.91,13.630,174.5,26.3,0.91,14.440,174.8 +25.8,0.91,14.930,177.8,25.8,0.91,15.790,178.0 +25.3,0.91,13.600,178.8,25.3,0.91,14.720,178.9 +24.2,0.91,14.950,183.1,24.1,0.91,15.770,183.5 +23.2,0.91,16.240,183.6,23.1,0.91,17.020,183.9 +22.3,0.91,15.320,185.7,22.2,0.91,16.040,186.0 +21.4,0.91,15.790,184.8,21.3,0.91,16.470,185.2 +21.0,0.91,15.130,187.6,20.9,0.91,15.730,188.0 +20.8,0.91,14.200,193.1,20.7,0.91,14.500,193.2 +21.6,0.91,13.510,189.2,21.4,0.91,13.710,189.2 +22.8,0.91,12.120,187.4,22.6,0.91,12.290,187.5 +24.5,0.91,12.130,189.2,24.3,0.91,12.300,189.2 +26.1,0.91,11.940,184.0,25.9,0.91,12.100,184.1 +27.4,0.91,11.850,184.0,27.2,0.91,12.020,184.0 +28.8,0.91,10.860,182.7,28.5,0.91,11.030,182.6 +29.8,0.91,11.170,179.2,29.6,0.91,11.340,179.4 +30.4,0.91,11.720,177.5,30.2,0.91,11.810,177.5 +31.0,0.91,11.580,172.3,30.8,0.91,11.740,172.5 +31.2,0.90,13.150,172.2,30.9,0.90,13.290,172.2 +31.1,0.90,13.510,176.6,30.9,0.90,13.590,176.6 +30.7,0.90,11.890,176.5,30.5,0.90,12.450,176.9 +29.4,0.90,13.240,176.7,29.3,0.90,14.090,176.4 +28.5,0.90,14.520,180.0,28.4,0.90,15.270,180.0 +27.7,0.91,14.500,178.9,27.6,0.91,15.320,179.0 +26.7,0.91,15.060,178.8,26.6,0.91,15.810,179.0 +26.1,0.91,12.840,175.5,26.1,0.91,13.690,175.9 +24.9,0.91,17.130,177.6,24.8,0.91,17.850,177.9 +23.7,0.91,18.130,181.3,23.6,0.91,18.860,181.5 +22.9,0.91,16.060,185.5,22.8,0.91,16.710,185.5 +22.4,0.91,16.900,187.6,22.3,0.91,17.520,187.8 +21.9,0.91,16.720,189.0,21.8,0.91,17.300,189.4 +21.3,0.91,17.050,191.4,21.2,0.91,17.610,191.7 +21.4,0.91,15.500,195.0,21.3,0.91,15.850,195.1 +22.0,0.91,15.470,190.5,21.8,0.91,15.650,190.6 +23.3,0.91,15.390,191.0,23.1,0.91,15.550,191.1 +24.8,0.91,15.030,187.3,24.6,0.91,15.210,187.3 +26.4,0.91,11.410,185.2,26.1,0.91,11.590,185.2 +28.1,0.91,10.400,175.1,27.8,0.91,10.540,175.3 +29.5,0.91,10.330,174.9,29.3,0.91,10.470,175.1 +30.4,0.91,11.560,172.0,30.2,0.91,11.750,172.2 +31.2,0.90,10.850,175.0,30.9,0.90,11.020,174.8 +31.3,0.90,12.900,175.8,31.1,0.90,12.990,175.8 +31.4,0.90,12.720,171.7,31.2,0.90,12.930,172.0 +31.4,0.90,11.280,171.4,31.3,0.90,11.450,171.4 +30.8,0.90,10.480,160.2,30.6,0.90,10.890,160.4 +29.7,0.91,11.590,158.2,29.6,0.91,12.680,159.1 +28.6,0.91,13.340,165.0,28.6,0.91,14.210,165.4 +27.4,0.91,14.200,166.6,27.3,0.91,14.970,166.9 +26.4,0.91,14.740,172.5,26.3,0.91,15.490,172.6 +25.8,0.91,14.360,177.4,25.7,0.91,15.030,177.4 +24.6,0.91,16.420,179.7,24.4,0.91,17.100,179.8 +23.6,0.91,14.380,181.3,23.5,0.91,15.060,181.4 +22.7,0.91,14.760,183.6,22.6,0.91,15.430,183.8 +22.1,0.91,14.540,184.2,21.9,0.91,15.180,184.3 +21.3,0.91,12.390,183.1,21.2,0.91,13.040,183.4 +20.6,0.91,14.000,187.2,20.5,0.91,14.630,187.5 +20.6,0.91,12.110,190.0,20.4,0.91,12.380,190.1 +21.3,0.91,10.990,192.7,21.1,0.91,11.140,192.8 +22.5,0.91,10.390,188.0,22.3,0.91,10.520,188.1 +23.9,0.91,11.300,182.8,23.7,0.91,11.440,182.8 +25.5,0.91,11.520,181.8,25.2,0.91,11.680,181.9 +27.1,0.91,11.650,180.4,26.9,0.91,11.800,180.2 +28.6,0.91,10.830,177.3,28.3,0.91,11.010,177.4 +29.3,0.91,11.230,178.8,29.1,0.91,11.270,178.9 +30.1,0.91,10.800,177.4,29.9,0.91,10.830,177.5 +30.6,0.91,11.040,174.2,30.4,0.91,11.090,174.3 +30.8,0.91,11.710,172.5,30.6,0.91,11.790,172.5 +30.9,0.91,10.470,174.1,30.7,0.91,10.640,174.6 +30.5,0.91,11.120,174.9,30.3,0.91,11.390,174.6 +29.6,0.90,11.570,171.6,29.6,0.90,12.230,171.8 +28.9,0.91,12.640,176.6,28.9,0.91,13.410,176.9 +28.2,0.91,12.560,180.2,28.1,0.91,13.340,180.4 +27.3,0.91,13.690,180.4,27.2,0.91,14.520,180.7 +25.8,0.91,13.180,172.2,25.7,0.91,13.790,172.3 +24.8,0.91,17.160,176.0,24.7,0.91,17.850,176.2 +23.8,0.91,16.090,181.8,23.7,0.91,16.690,181.8 +22.9,0.91,16.630,185.9,22.8,0.91,17.290,186.1 +22.2,0.91,16.120,188.7,22.0,0.91,16.730,188.9 +21.5,0.91,17.210,191.3,21.4,0.91,17.820,191.5 +21.0,0.91,17.480,193.6,20.8,0.91,18.110,193.8 +20.9,0.91,16.630,198.6,20.8,0.91,17.000,198.7 +21.6,0.91,16.280,197.4,21.4,0.91,16.460,197.5 +23.1,0.91,16.040,196.7,22.9,0.91,16.210,196.7 +24.8,0.91,14.840,197.4,24.6,0.91,14.990,197.5 +26.8,0.91,13.270,197.7,26.6,0.91,13.430,197.7 +28.7,0.91,11.740,197.0,28.5,0.91,11.880,197.0 +30.2,0.91,10.650,194.5,29.9,0.91,10.780,194.6 +31.4,0.91,10.370,187.5,31.2,0.91,10.490,187.6 +32.4,0.91,9.610,185.8,32.2,0.91,9.720,186.0 +33.0,0.90,9.200,180.6,32.8,0.90,9.320,181.1 +33.4,0.90,9.170,184.2,33.2,0.90,9.310,184.2 +33.4,0.90,9.390,184.1,33.2,0.90,9.540,183.9 +33.1,0.90,10.460,185.1,32.9,0.90,10.680,184.7 +32.0,0.90,12.030,177.5,31.9,0.90,12.680,177.7 +30.9,0.90,13.990,183.0,30.9,0.90,14.740,183.5 +29.9,0.90,14.310,189.4,29.8,0.90,14.990,189.8 +29.0,0.90,16.150,191.4,29.0,0.90,16.930,191.7 +28.2,0.90,16.790,192.5,28.2,0.90,17.540,192.7 +27.6,0.90,16.550,195.8,27.5,0.90,17.310,196.1 +26.6,0.90,16.590,195.6,26.5,0.90,17.340,196.1 +25.5,0.90,16.390,192.5,25.4,0.90,17.080,192.8 +24.3,0.90,16.680,194.0,24.1,0.90,17.350,194.5 +23.5,0.90,16.190,202.6,23.4,0.90,16.890,203.1 +22.9,0.90,16.610,204.2,22.8,0.90,17.320,204.9 +23.1,0.90,15.080,203.7,23.0,0.90,15.590,204.0 +23.7,0.90,14.350,197.7,23.6,0.90,14.480,197.9 +25.4,0.91,13.100,203.3,25.2,0.91,13.190,203.4 +27.4,0.91,12.550,196.1,27.2,0.91,12.630,196.3 +29.1,0.91,11.620,192.5,28.9,0.91,11.720,192.7 +30.7,0.91,10.110,191.3,30.4,0.91,10.200,191.5 +32.2,0.91,8.450,187.1,32.0,0.91,8.530,187.3 +33.4,0.91,7.690,180.5,33.2,0.91,7.760,180.7 +34.3,0.91,6.880,168.7,34.1,0.91,6.940,169.6 +34.8,0.91,7.390,170.6,34.6,0.91,7.430,170.6 +35.3,0.90,7.590,169.1,35.1,0.90,7.690,169.1 +35.3,0.90,8.890,170.6,35.1,0.90,9.020,170.7 +34.7,0.90,9.190,166.6,34.5,0.90,9.570,166.7 +33.8,0.90,11.100,160.1,33.7,0.90,11.550,160.3 +32.8,0.90,12.060,167.2,32.7,0.90,12.750,167.8 +31.6,0.91,13.980,175.6,31.5,0.91,14.740,176.1 +30.3,0.91,13.970,183.9,30.2,0.91,14.700,184.4 +29.3,0.91,14.640,186.9,29.3,0.91,15.390,187.5 +28.4,0.91,14.940,189.6,28.4,0.91,15.680,190.2 +27.6,0.91,15.270,191.6,27.6,0.91,16.060,192.1 +26.6,0.91,15.340,189.2,26.5,0.91,16.040,189.8 +25.1,0.91,15.900,193.9,25.1,0.91,16.570,194.6 +24.1,0.91,15.320,198.2,24.0,0.91,16.050,198.9 +23.2,0.91,13.400,198.0,23.2,0.91,14.120,198.9 +23.2,0.91,10.840,205.3,23.0,0.91,11.160,205.6 +24.1,0.91,9.860,202.7,23.9,0.91,9.960,203.0 +25.7,0.91,8.760,199.2,25.5,0.91,8.840,199.5 +27.7,0.91,6.920,198.2,27.4,0.91,6.980,198.3 +29.2,0.91,6.320,186.7,29.0,0.91,6.370,186.9 +31.0,0.91,5.110,183.2,30.8,0.91,5.140,183.3 +32.6,0.91,4.220,171.3,32.4,0.91,4.260,171.2 +33.7,0.91,4.610,166.0,33.5,0.91,4.650,165.7 +34.4,0.91,5.120,161.6,34.2,0.91,5.170,161.5 +34.9,0.91,5.420,161.6,34.6,0.91,5.480,161.5 +34.9,0.91,6.100,145.7,34.7,0.91,6.130,146.0 +35.0,0.91,5.360,152.6,34.7,0.91,5.450,152.7 +34.6,0.91,6.150,154.0,34.4,0.91,6.380,154.1 +34.0,0.91,7.990,160.7,33.9,0.91,8.060,160.8 +32.9,0.91,10.140,159.1,32.8,0.91,10.700,159.2 +32.1,0.91,11.130,164.8,32.0,0.91,11.470,165.6 +31.4,0.91,12.940,169.7,31.4,0.91,13.500,170.2 +30.5,0.91,12.500,181.6,30.6,0.91,12.980,183.8 +29.5,0.91,11.920,202.9,29.6,0.91,12.330,206.3 +28.8,0.91,12.310,209.8,28.8,0.91,12.880,210.7 +28.0,0.91,12.540,210.6,28.0,0.91,13.330,211.2 +27.3,0.91,11.660,219.1,27.4,0.91,12.230,219.3 +26.9,0.91,11.890,229.2,27.0,0.91,12.380,229.6 +26.4,0.91,10.590,236.8,26.4,0.91,11.080,237.1 +25.6,0.91,9.430,245.5,25.5,0.91,9.740,245.7 +26.9,0.91,6.270,247.3,26.7,0.91,6.340,247.9 +28.5,0.91,5.960,258.1,28.3,0.91,6.000,258.4 +30.0,0.91,5.250,294.6,29.8,0.91,5.290,294.5 +30.9,0.91,5.470,312.0,30.7,0.91,5.520,312.0 +32.3,0.91,3.850,329.2,32.1,0.91,3.890,329.4 +33.5,0.91,3.840,9.1,33.3,0.91,3.870,8.6 +34.5,0.91,3.450,4.5,34.3,0.91,3.500,4.8 +35.4,0.91,5.790,26.8,35.2,0.91,5.820,26.4 +35.9,0.91,5.750,23.1,35.7,0.91,5.820,23.3 +35.8,0.91,7.490,39.4,35.6,0.91,7.560,39.3 +35.4,0.91,7.910,51.6,35.2,0.91,7.980,51.6 +34.9,0.91,7.330,50.4,34.7,0.91,7.550,50.6 +34.1,0.91,7.560,51.7,34.0,0.91,7.780,52.7 +32.1,0.91,8.640,76.5,31.9,0.91,9.590,77.5 +30.8,0.91,9.300,81.8,30.8,0.91,10.310,81.3 +30.4,0.91,9.440,83.2,30.5,0.91,10.050,82.8 +30.2,0.91,9.590,81.9,30.2,0.91,9.830,82.0 +29.5,0.91,9.970,82.5,29.6,0.91,10.630,82.5 +29.1,0.91,9.830,93.9,29.1,0.91,10.140,94.1 +28.3,0.91,10.330,104.4,28.3,0.91,10.810,103.7 +28.4,0.91,9.540,113.8,28.3,0.91,9.160,114.3 +28.0,0.91,11.010,120.1,28.0,0.91,10.970,120.6 +27.8,0.91,9.040,128.5,27.8,0.91,8.450,129.6 +26.8,0.91,7.490,138.9,27.0,0.91,8.020,137.4 +27.0,0.91,3.550,59.1,26.9,0.91,3.540,60.9 +27.6,0.91,8.710,13.0,27.4,0.91,8.730,13.2 +27.8,0.91,6.150,34.3,27.6,0.91,6.200,34.2 +28.9,0.91,4.870,31.3,28.7,0.91,4.900,31.1 +29.8,0.91,3.250,41.9,29.6,0.91,3.260,41.3 +31.0,0.91,1.710,42.0,30.8,0.91,1.710,41.4 +32.0,0.91,1.500,66.0,31.8,0.91,1.480,64.0 +33.2,0.91,1.360,62.9,33.0,0.91,1.370,60.5 +33.6,0.90,1.630,67.8,33.4,0.90,1.600,65.9 +34.1,0.90,1.800,59.9,33.9,0.90,1.820,59.0 +34.0,0.90,2.500,63.1,33.8,0.90,2.480,62.8 +33.8,0.90,3.420,65.3,33.6,0.90,3.400,65.7 +33.5,0.90,4.360,61.0,33.3,0.90,4.180,60.1 +32.5,0.90,7.580,71.7,32.5,0.90,7.860,71.7 +30.0,0.90,10.490,118.9,29.9,0.90,11.020,118.6 +29.2,0.90,9.150,117.2,29.2,0.90,9.900,117.2 +28.4,0.90,8.880,117.0,28.4,0.90,9.660,116.4 +25.9,0.91,15.190,297.2,26.0,0.91,14.780,298.9 +21.3,0.91,7.540,333.2,21.2,0.91,8.020,332.6 +22.0,0.91,3.730,125.9,22.0,0.91,3.390,123.5 +20.7,0.91,9.110,94.3,20.8,0.91,9.420,92.9 +20.8,0.91,5.550,137.6,20.8,0.91,6.090,136.4 +20.8,0.91,1.880,193.6,20.8,0.91,1.970,177.4 +22.0,0.91,0.980,121.5,22.2,0.91,1.480,128.3 +23.6,0.91,1.230,131.7,23.4,0.91,1.240,133.1 +24.7,0.91,3.020,72.9,24.5,0.91,3.020,73.3 +25.5,0.91,3.360,48.3,25.3,0.91,3.360,48.6 +26.4,0.91,3.360,45.4,26.2,0.91,3.360,45.4 +27.5,0.91,3.230,39.7,27.3,0.91,3.240,39.0 +28.6,0.91,3.690,8.9,28.4,0.91,3.690,9.2 +29.6,0.91,4.690,41.6,29.4,0.91,4.730,41.3 +30.1,0.91,5.590,40.1,29.9,0.91,5.620,39.9 +30.4,0.91,6.500,48.1,30.2,0.91,6.550,47.9 +30.4,0.91,5.980,54.8,30.2,0.91,6.020,54.7 +30.3,0.91,6.380,57.7,30.1,0.91,6.430,57.8 +29.9,0.91,6.950,64.5,29.7,0.91,7.080,64.5 +29.1,0.91,8.430,63.0,29.0,0.91,8.700,64.0 +27.8,0.91,8.460,76.3,27.7,0.91,9.090,76.0 +26.4,0.91,7.800,92.3,26.3,0.91,8.570,91.4 +25.8,0.91,10.030,88.5,25.7,0.91,10.460,87.5 +24.6,0.91,7.410,94.4,24.4,0.91,8.380,93.9 +24.1,0.91,8.410,83.1,23.8,0.91,9.340,83.8 +23.1,0.91,6.620,86.1,23.0,0.91,7.640,89.4 +22.6,0.91,6.960,88.9,22.6,0.91,7.770,90.3 +21.9,0.91,5.930,83.8,21.8,0.91,6.690,85.8 +21.2,0.91,5.610,78.1,21.1,0.91,6.280,82.9 +21.1,0.91,6.140,78.2,21.1,0.91,6.540,81.7 +20.5,0.91,4.380,64.3,20.4,0.91,4.910,67.8 +21.1,0.91,4.330,50.7,20.9,0.91,4.380,51.2 +21.9,0.91,4.550,49.3,21.7,0.91,4.590,49.3 +22.7,0.91,5.390,36.1,22.5,0.91,5.450,35.9 +23.7,0.91,6.320,27.3,23.5,0.91,6.390,27.2 +24.4,0.91,6.590,26.4,24.1,0.91,6.650,26.2 +25.0,0.91,7.400,26.0,24.8,0.91,7.480,25.8 +25.4,0.91,8.290,27.8,25.2,0.91,8.340,27.6 +25.9,0.91,7.980,24.3,25.7,0.91,8.090,24.1 +25.9,0.91,8.690,32.5,25.7,0.91,8.770,32.4 +26.0,0.91,8.850,31.8,25.8,0.91,8.950,31.9 +25.9,0.91,7.710,47.2,25.7,0.91,7.800,47.1 +25.4,0.91,7.580,50.8,25.2,0.91,7.710,50.7 +24.8,0.91,8.430,57.5,24.6,0.91,8.880,57.5 +23.8,0.91,7.350,74.8,23.7,0.91,7.990,74.7 +23.0,0.91,6.600,86.0,22.9,0.91,7.300,85.9 +22.2,0.91,5.800,90.7,22.1,0.91,6.700,90.1 +21.9,0.91,6.810,94.6,21.9,0.91,7.730,93.8 +21.4,0.91,6.240,87.9,21.4,0.91,6.860,86.9 +21.1,0.91,5.980,89.0,20.9,0.91,6.110,86.8 +20.4,0.91,4.290,81.9,20.4,0.91,4.660,82.1 +20.0,0.91,4.020,77.4,20.1,0.91,4.430,78.1 +19.7,0.91,3.690,64.2,19.8,0.91,4.120,66.1 +19.4,0.91,3.240,52.4,19.5,0.91,3.620,55.1 +19.2,0.91,3.000,60.1,19.3,0.91,3.380,62.0 +19.9,0.91,2.590,49.3,19.7,0.91,2.620,51.0 +21.3,0.91,3.650,46.1,21.1,0.91,3.690,46.3 +22.2,0.91,4.360,43.4,22.0,0.91,4.390,43.2 +23.1,0.91,4.810,37.4,22.8,0.91,4.850,37.1 +23.9,0.91,5.350,31.3,23.6,0.91,5.390,31.1 +24.5,0.91,5.820,33.7,24.3,0.91,5.870,33.5 +25.4,0.91,5.240,29.2,25.1,0.91,5.280,29.4 +26.0,0.91,5.300,42.2,25.7,0.91,5.360,41.9 +26.0,0.91,4.250,47.9,25.8,0.91,4.280,47.7 +26.1,0.91,4.780,52.0,25.9,0.91,4.770,51.8 +26.1,0.91,4.870,65.8,25.9,0.91,4.880,65.8 +25.9,0.91,4.690,71.5,25.8,0.91,4.760,71.4 +25.4,0.91,5.120,72.2,25.3,0.91,5.320,72.5 +24.6,0.91,8.810,101.7,24.5,0.91,9.050,102.5 +24.0,0.91,9.820,108.5,23.9,0.91,10.140,107.6 +22.8,0.91,10.320,119.9,22.7,0.91,11.100,120.1 +22.8,0.91,10.870,123.9,22.9,0.91,11.110,123.6 +22.4,0.91,10.860,133.1,22.5,0.91,10.970,133.0 +22.7,0.91,10.170,135.2,22.8,0.91,10.020,135.7 +22.4,0.91,10.090,140.3,22.5,0.91,9.950,140.9 +22.3,0.91,9.710,141.1,22.5,0.91,9.510,142.1 +22.3,0.91,9.700,146.0,22.4,0.91,9.580,146.4 +22.2,0.91,9.220,149.2,22.3,0.91,9.160,148.7 +20.2,0.91,8.670,165.2,20.4,0.91,9.410,163.5 +21.6,0.91,6.660,171.0,21.4,0.91,6.870,170.5 +23.4,0.91,6.480,162.8,23.2,0.91,6.540,162.6 +24.6,0.91,5.150,158.2,24.4,0.91,5.180,158.1 +25.4,0.91,3.560,140.5,25.2,0.91,3.580,140.4 +26.0,0.91,2.610,125.9,25.8,0.91,2.620,125.0 +26.5,0.91,2.860,64.5,26.3,0.91,2.840,64.1 +27.3,0.91,4.500,51.7,27.1,0.91,4.480,52.6 +27.6,0.91,5.160,137.6,27.4,0.91,5.120,137.0 +27.8,0.91,3.680,65.7,27.6,0.91,3.670,66.4 +27.9,0.91,3.670,102.8,27.7,0.91,3.680,103.2 +27.9,0.91,4.490,109.3,27.7,0.91,4.530,110.3 +27.6,0.91,4.700,113.9,27.4,0.91,4.810,114.9 +26.7,0.91,7.720,120.1,26.6,0.91,7.990,120.5 +25.6,0.91,10.420,123.6,25.5,0.91,11.020,123.4 +25.2,0.91,11.000,124.9,25.2,0.91,11.570,124.8 +24.6,0.91,11.360,132.8,24.7,0.91,12.040,132.3 +24.3,0.91,12.240,134.0,24.4,0.91,12.950,133.7 +23.9,0.91,11.960,143.0,24.0,0.91,12.590,143.2 +23.6,0.91,11.720,146.8,23.7,0.91,12.340,147.3 +22.8,0.91,12.570,159.1,22.9,0.91,13.150,160.3 +22.3,0.91,9.770,166.5,22.6,0.91,10.000,167.6 +22.2,0.91,8.780,171.3,22.6,0.91,8.810,174.5 +21.6,0.91,10.520,168.2,22.0,0.91,10.640,167.3 +20.9,0.91,9.360,180.0,21.3,0.91,10.010,181.7 +21.2,0.91,5.170,204.3,21.0,0.91,5.420,202.8 +22.8,0.91,6.030,186.9,22.7,0.91,6.100,187.3 +24.9,0.91,5.860,195.4,24.7,0.91,5.940,195.5 +26.1,0.91,5.620,199.8,25.9,0.91,5.670,200.0 +26.9,0.91,4.360,212.3,26.7,0.91,4.400,212.1 +27.6,0.91,5.370,200.8,27.4,0.91,5.410,200.5 +25.1,0.91,12.570,210.4,24.9,0.91,12.590,210.6 +25.9,0.91,10.790,200.8,25.7,0.91,10.890,200.7 +26.3,0.91,8.580,196.8,26.1,0.91,8.700,196.8 +27.4,0.91,6.200,202.5,27.2,0.91,6.280,202.1 +27.7,0.91,4.800,189.8,27.5,0.91,4.860,189.7 +27.2,0.91,6.420,186.4,27.0,0.91,6.500,186.3 +22.9,0.91,8.890,143.0,22.8,0.91,9.350,142.8 +22.5,0.91,10.290,147.6,22.4,0.91,10.850,147.2 +22.2,0.91,12.060,158.4,22.2,0.91,12.780,157.9 +21.1,0.91,12.520,163.3,21.0,0.91,13.330,162.7 +21.6,0.91,12.670,167.5,21.7,0.91,13.350,167.6 +21.7,0.91,13.640,166.3,21.8,0.91,14.260,166.4 +22.0,0.91,14.410,174.0,22.2,0.91,15.130,174.0 +21.8,0.91,15.080,178.2,22.0,0.91,15.900,178.5 +21.4,0.91,14.560,180.4,21.5,0.91,15.280,181.3 +20.9,0.91,13.320,183.7,20.9,0.91,13.900,185.3 +20.8,0.91,12.900,194.3,20.9,0.91,13.500,195.4 +20.5,0.91,12.720,195.5,20.3,0.91,12.980,195.6 +21.7,0.91,11.550,192.5,21.5,0.91,11.670,192.7 +23.1,0.91,11.270,193.9,22.9,0.91,11.370,194.1 +24.9,0.91,10.980,193.1,24.7,0.91,11.100,193.2 +26.5,0.91,10.230,190.9,26.3,0.91,10.350,190.9 +27.9,0.91,8.730,190.1,27.6,0.91,8.830,190.0 +29.1,0.91,7.530,182.4,28.9,0.91,7.620,182.5 +29.9,0.91,7.590,191.2,29.7,0.91,7.650,190.2 +30.7,0.91,6.560,183.6,30.4,0.91,6.650,183.1 +30.8,0.91,7.400,162.8,30.6,0.91,7.500,163.1 +30.8,0.90,8.520,162.3,30.5,0.90,8.590,162.6 +30.5,0.90,10.200,153.3,30.3,0.90,10.340,153.6 +30.1,0.90,8.530,157.6,30.0,0.90,8.840,157.6 +29.2,0.90,11.020,149.6,29.2,0.90,11.740,149.7 +28.2,0.91,13.240,155.4,28.2,0.91,13.970,155.3 +27.3,0.91,13.630,158.7,27.3,0.91,14.620,158.8 +26.5,0.91,13.730,163.1,26.5,0.91,14.610,163.2 +25.7,0.91,14.790,172.3,25.7,0.91,15.710,172.7 +25.2,0.91,14.310,182.4,25.3,0.91,15.220,183.0 +24.7,0.91,14.370,186.6,24.7,0.91,15.280,186.9 +24.2,0.91,14.200,186.9,24.3,0.91,15.000,187.5 +23.6,0.91,14.770,180.8,23.6,0.91,15.580,181.2 +22.1,0.91,14.740,188.3,22.1,0.91,15.470,189.3 +21.5,0.91,13.430,195.0,21.5,0.91,14.100,195.6 +21.2,0.91,12.330,185.6,21.0,0.91,12.920,185.8 +22.1,0.91,11.310,194.1,21.9,0.91,11.430,194.1 +23.7,0.91,10.980,183.1,23.5,0.91,11.120,183.2 +25.7,0.91,10.030,183.7,25.5,0.91,10.150,183.6 +26.9,0.91,9.170,180.3,26.7,0.91,9.260,180.4 +28.3,0.91,8.310,173.5,28.0,0.91,8.420,173.7 +29.0,0.91,8.830,165.9,28.8,0.91,8.870,165.8 +29.9,0.91,8.280,159.3,29.7,0.91,8.360,159.4 +30.3,0.91,8.060,158.6,30.1,0.91,8.160,158.6 +30.5,0.91,9.470,157.2,30.3,0.91,9.590,157.2 +30.5,0.90,8.450,154.6,30.3,0.90,8.560,154.6 +30.4,0.90,9.550,148.8,30.2,0.90,9.640,148.9 +30.0,0.90,9.410,151.1,29.8,0.90,9.700,151.4 +29.0,0.90,10.810,147.6,28.9,0.90,11.470,147.7 +28.7,0.91,11.670,152.1,28.7,0.91,12.280,152.5 +27.8,0.91,12.550,151.6,27.8,0.91,13.220,152.3 +27.2,0.91,13.080,154.5,27.3,0.91,13.880,154.9 +26.6,0.91,12.180,159.1,26.6,0.91,12.860,159.5 +25.6,0.91,12.180,159.8,25.6,0.91,12.840,160.5 +24.9,0.91,12.670,161.6,25.0,0.91,13.380,162.2 +24.2,0.91,12.270,165.2,24.2,0.91,13.020,166.5 +23.8,0.91,11.800,176.6,23.9,0.91,12.420,178.7 +23.1,0.91,11.540,186.8,23.2,0.91,12.070,189.5 +22.4,0.91,10.340,187.4,22.4,0.91,10.740,190.0 +21.9,0.91,8.290,187.8,21.8,0.91,8.950,188.1 +23.0,0.91,7.690,190.7,22.8,0.91,7.770,190.7 +24.4,0.91,7.350,184.5,24.2,0.91,7.420,184.5 +25.6,0.91,6.370,179.3,25.4,0.91,6.420,179.1 +27.0,0.91,5.270,161.3,26.8,0.91,5.310,161.2 +28.1,0.91,4.820,155.4,27.9,0.91,4.870,155.3 +29.0,0.91,5.840,143.6,28.8,0.91,5.890,143.7 +29.9,0.91,5.430,149.8,29.7,0.91,5.490,149.7 +30.1,0.91,5.510,139.4,29.8,0.91,5.560,139.4 +30.0,0.91,6.210,152.1,29.8,0.91,6.270,152.1 +30.0,0.91,7.400,120.6,29.8,0.91,7.470,121.0 +30.3,0.91,7.250,133.2,30.1,0.91,7.410,133.5 +30.1,0.91,7.950,136.2,29.9,0.91,8.090,136.4 +29.6,0.91,6.860,122.8,29.4,0.91,7.150,122.9 +28.4,0.91,7.380,125.2,28.3,0.91,7.850,126.4 +27.6,0.91,7.710,140.3,27.5,0.91,8.200,139.9 +27.3,0.91,8.910,160.4,27.2,0.91,9.530,161.7 +26.2,0.91,10.550,162.4,26.0,0.91,11.270,163.0 +25.4,0.91,10.570,169.3,25.3,0.91,11.060,170.0 +24.8,0.91,10.910,176.8,24.7,0.91,11.420,177.6 +24.2,0.91,10.080,179.3,24.1,0.91,10.570,180.4 +23.8,0.91,10.270,187.0,23.7,0.91,10.700,188.3 +23.1,0.91,10.600,185.5,23.0,0.91,11.040,186.7 +22.6,0.91,9.780,189.6,22.5,0.91,10.260,191.3 +22.5,0.91,8.610,196.7,22.3,0.91,8.720,197.0 +23.4,0.91,7.340,199.4,23.2,0.91,7.400,199.6 +24.7,0.91,6.690,194.8,24.5,0.91,6.750,194.9 +26.0,0.91,5.400,194.0,25.8,0.91,5.440,194.1 +27.2,0.91,4.810,187.7,26.9,0.91,4.840,187.7 +28.2,0.91,5.040,182.1,28.0,0.91,5.070,181.9 +29.3,0.91,4.330,169.1,29.1,0.91,4.360,169.6 +29.9,0.91,4.700,158.5,29.6,0.91,4.720,158.6 +30.6,0.91,5.950,154.7,30.4,0.91,5.980,154.8 +31.1,0.91,5.210,158.2,30.9,0.91,5.300,158.0 +31.0,0.91,6.060,149.1,30.8,0.91,6.090,149.1 +30.9,0.91,6.870,151.4,30.7,0.91,6.930,151.4 +30.6,0.91,7.640,157.3,30.4,0.91,7.790,157.3 +29.9,0.91,9.120,160.8,29.8,0.91,9.360,160.7 +29.3,0.91,9.650,158.9,29.2,0.91,10.160,158.7 +28.3,0.91,12.010,163.1,28.1,0.91,12.700,163.6 +27.0,0.91,11.370,181.7,26.8,0.91,11.900,181.9 +26.2,0.91,12.410,187.7,26.1,0.91,13.170,187.9 +25.4,0.91,10.670,196.3,25.2,0.91,11.270,196.5 +24.6,0.91,10.430,198.5,24.4,0.91,10.920,198.8 +23.8,0.91,11.370,193.5,23.7,0.91,11.750,193.7 +23.1,0.91,12.760,195.6,23.0,0.91,13.260,196.1 +22.6,0.91,12.250,200.8,22.4,0.91,12.770,201.2 +22.1,0.91,11.280,198.5,22.0,0.91,11.810,199.0 +22.2,0.91,11.300,204.0,22.0,0.91,11.480,204.2 +23.0,0.91,10.640,204.8,22.8,0.91,10.760,204.9 +24.3,0.91,9.370,207.1,24.0,0.91,9.480,207.2 +25.5,0.91,9.320,204.3,25.3,0.91,9.420,204.4 +26.8,0.91,7.400,197.0,26.6,0.91,7.480,197.1 +28.0,0.91,7.390,189.0,27.8,0.91,7.460,189.1 +29.1,0.91,7.430,190.1,28.9,0.91,7.510,190.1 +30.1,0.91,7.340,186.2,29.9,0.91,7.430,186.3 +30.6,0.91,7.060,188.5,30.4,0.91,7.130,188.8 +31.4,0.91,7.070,190.2,31.2,0.91,7.180,190.0 +31.5,0.91,9.080,179.8,31.3,0.91,9.090,180.0 +31.7,0.91,7.660,180.3,31.4,0.91,7.760,179.6 +31.4,0.91,8.960,177.3,31.2,0.91,9.120,178.0 +30.7,0.91,9.170,170.5,30.6,0.91,9.470,172.2 +30.0,0.91,9.930,174.3,29.9,0.91,10.510,174.4 +29.1,0.91,10.040,178.3,29.1,0.91,10.670,179.2 +28.2,0.91,10.710,187.5,28.1,0.91,11.920,188.2 +27.4,0.91,11.310,189.1,27.4,0.91,12.270,189.5 +26.8,0.91,12.010,194.2,26.7,0.91,12.990,194.9 +26.2,0.91,10.480,196.2,26.2,0.91,11.240,196.8 +25.6,0.91,11.390,199.5,25.5,0.91,12.270,199.9 +25.0,0.91,9.420,198.3,24.9,0.91,10.000,199.1 +24.3,0.91,9.160,201.3,24.2,0.91,9.760,202.5 +23.5,0.91,10.240,198.9,23.4,0.91,10.710,200.4 +23.2,0.91,9.390,201.6,23.0,0.91,9.560,202.0 +24.0,0.91,8.380,210.3,23.8,0.91,8.460,210.4 +25.2,0.91,7.800,208.4,25.0,0.91,7.870,208.5 +26.7,0.91,6.510,205.8,26.5,0.91,6.570,205.9 +28.1,0.91,5.690,200.4,27.8,0.91,5.740,200.6 +29.2,0.91,5.610,194.6,28.9,0.91,5.660,194.8 +30.2,0.91,4.920,186.2,29.9,0.91,4.960,186.2 +30.8,0.91,5.520,199.3,30.6,0.91,5.540,198.6 +31.7,0.91,4.350,190.6,31.4,0.91,4.400,188.6 +32.0,0.91,5.440,184.4,31.8,0.91,5.460,184.2 +32.2,0.91,5.580,182.1,32.0,0.91,5.580,181.8 +32.5,0.91,5.740,171.1,32.3,0.91,5.820,171.1 +32.2,0.91,6.080,161.3,32.0,0.91,6.170,161.5 +31.8,0.91,8.010,155.9,31.7,0.91,8.300,155.7 +31.5,0.91,8.490,156.3,31.4,0.91,8.690,156.0 +30.5,0.91,10.640,161.9,30.5,0.91,11.190,162.6 +29.8,0.91,12.060,167.7,29.8,0.91,12.860,168.0 +29.0,0.91,12.490,174.2,29.0,0.91,13.150,175.4 +28.5,0.91,11.440,195.8,28.5,0.91,11.870,197.9 +27.8,0.91,11.540,201.4,27.8,0.91,12.030,202.8 +27.2,0.91,11.660,208.4,27.2,0.91,12.430,209.4 +26.4,0.91,12.440,208.2,26.4,0.91,13.190,209.0 +25.8,0.91,12.300,208.8,25.8,0.91,13.060,210.0 +25.2,0.91,11.960,215.1,25.1,0.91,12.640,216.4 +24.9,0.91,9.900,217.4,24.8,0.91,10.390,218.1 +25.9,0.91,8.320,218.3,25.7,0.91,8.380,218.4 +27.4,0.91,5.940,223.9,27.2,0.91,5.980,224.0 +29.0,0.91,4.400,208.1,28.8,0.91,4.430,208.0 +30.1,0.91,2.940,174.6,29.9,0.91,2.950,174.5 +31.2,0.91,3.230,142.5,30.9,0.91,3.260,142.4 +31.8,0.91,4.080,144.7,31.6,0.91,4.120,144.6 +32.5,0.91,4.430,139.1,32.3,0.91,4.480,139.0 +33.0,0.91,5.040,129.6,32.7,0.91,5.050,129.7 +33.3,0.91,4.630,149.3,33.1,0.91,4.670,148.9 +33.5,0.91,5.050,132.0,33.3,0.91,5.110,132.5 +33.4,0.91,5.740,125.5,33.2,0.91,5.830,125.8 +32.9,0.91,7.380,126.5,32.7,0.91,7.550,126.5 +31.8,0.91,7.440,114.7,31.7,0.91,7.770,115.7 +30.7,0.91,9.720,143.7,30.5,0.91,10.610,144.5 +29.4,0.91,10.290,137.6,29.3,0.91,11.020,137.2 +28.9,0.91,11.420,145.8,28.8,0.91,12.390,145.5 +28.4,0.91,11.590,157.4,28.4,0.91,12.220,158.9 +28.0,0.91,11.090,165.8,28.1,0.91,11.350,168.0 +27.2,0.91,11.120,177.8,27.2,0.91,11.490,180.3 +26.9,0.91,10.300,190.2,27.0,0.91,10.810,194.9 +26.5,0.91,9.810,201.2,26.5,0.91,10.580,204.7 +26.0,0.91,9.960,207.8,25.9,0.91,10.480,210.4 +25.4,0.91,9.730,206.8,25.3,0.91,10.230,208.2 +24.9,0.91,7.490,214.9,24.8,0.91,8.140,216.0 +25.8,0.91,7.270,214.9,25.6,0.91,7.310,215.0 +27.4,0.91,4.950,210.9,27.2,0.91,4.980,210.8 +28.7,0.91,4.360,187.9,28.5,0.91,4.380,187.8 +29.8,0.91,4.220,168.2,29.6,0.91,4.250,167.8 +30.6,0.91,4.850,151.0,30.4,0.91,4.870,151.0 +31.5,0.91,5.440,145.7,31.2,0.91,5.490,145.8 +32.1,0.91,5.980,149.5,31.8,0.91,6.040,149.4 +30.1,0.91,10.570,92.5,30.3,0.91,10.140,95.8 +31.7,0.91,5.860,70.0,31.5,0.91,5.810,70.9 +31.0,0.91,1.380,15.6,30.9,0.91,1.230,28.3 +30.7,0.91,5.600,149.0,30.5,0.91,5.830,149.2 +30.2,0.91,9.670,140.0,30.0,0.91,9.870,139.8 +29.6,0.91,8.280,133.5,29.5,0.91,8.750,134.2 +29.0,0.91,10.740,146.0,28.8,0.91,11.310,146.1 +28.3,0.91,10.340,156.7,28.3,0.91,10.920,156.8 +28.2,0.91,10.550,166.0,28.1,0.91,11.100,166.2 +27.4,0.91,10.850,168.6,27.3,0.91,11.450,168.6 +27.0,0.91,10.700,179.1,27.0,0.91,11.250,180.6 +27.2,0.91,10.680,197.5,27.3,0.91,11.140,200.8 +27.8,0.91,10.120,210.7,27.8,0.91,10.550,212.2 +27.4,0.91,9.130,221.5,27.4,0.91,9.550,221.7 +27.0,0.91,9.780,215.6,27.0,0.91,10.270,216.6 +26.7,0.91,9.420,218.7,26.7,0.91,9.850,219.4 +26.2,0.91,7.320,213.9,26.3,0.91,7.780,215.0 +27.0,0.91,6.290,217.1,26.9,0.91,6.330,217.3 +28.6,0.91,4.750,212.2,28.4,0.91,4.770,212.1 +29.7,0.91,4.240,197.5,29.4,0.91,4.270,197.2 +30.6,0.91,3.920,178.7,30.4,0.91,3.940,178.5 +31.4,0.91,4.610,165.6,31.2,0.91,4.630,165.4 +32.0,0.91,3.830,152.1,31.8,0.91,3.850,151.8 +32.8,0.91,5.000,138.5,32.5,0.91,5.000,138.8 +33.3,0.91,3.640,143.9,33.1,0.91,3.690,143.8 +33.5,0.91,3.740,123.6,33.2,0.91,3.790,124.6 +33.7,0.91,4.580,154.6,33.5,0.91,4.640,154.7 +33.5,0.91,3.140,128.3,33.3,0.91,3.180,128.8 +33.3,0.91,4.870,143.3,33.1,0.91,4.930,143.5 +32.9,0.91,5.270,177.7,32.8,0.91,5.210,176.8 +32.4,0.91,4.980,182.5,32.3,0.91,5.100,179.8 +29.1,0.91,11.000,145.1,29.0,0.91,11.730,144.3 +28.8,0.91,12.110,152.7,28.8,0.91,12.800,152.3 +28.3,0.91,12.180,149.7,28.2,0.91,12.860,149.1 +27.6,0.91,12.510,149.7,27.6,0.91,13.150,150.0 +27.2,0.91,11.340,156.3,27.2,0.91,12.160,156.1 +26.6,0.91,11.210,166.1,26.6,0.91,11.890,166.0 +26.5,0.91,8.460,198.4,26.7,0.91,8.090,203.0 +26.6,0.91,7.910,219.3,26.7,0.91,7.980,222.4 +26.5,0.91,6.720,226.6,26.4,0.91,6.910,228.8 +25.7,0.91,6.450,217.0,25.8,0.91,6.950,219.3 +26.7,0.91,5.570,218.8,26.5,0.91,5.620,219.3 +28.1,0.91,4.160,235.2,27.9,0.91,4.200,235.7 +29.5,0.91,2.780,244.3,29.3,0.91,2.800,244.8 +30.8,0.91,2.310,248.6,30.6,0.91,2.340,249.2 +31.8,0.91,1.760,5.3,31.5,0.91,1.730,4.8 +32.2,0.91,3.010,46.2,31.9,0.91,3.000,45.5 +30.7,0.90,12.460,63.3,30.4,0.90,12.490,63.6 +29.5,0.90,12.450,89.0,29.3,0.90,12.570,89.5 +27.0,0.91,13.950,84.5,26.8,0.91,14.080,84.8 +25.8,0.90,12.950,93.7,25.6,0.90,13.160,94.0 +25.1,0.91,11.810,101.4,24.9,0.91,12.000,101.7 +24.0,0.91,13.020,69.0,23.8,0.91,13.230,69.3 +19.1,0.91,14.490,66.3,18.9,0.91,14.720,66.6 +17.9,0.91,10.210,75.9,17.7,0.91,10.460,76.3 +17.4,0.91,6.500,77.2,17.2,0.91,6.760,77.9 +17.4,0.91,7.460,50.5,17.3,0.91,7.590,51.3 +17.2,0.91,8.060,73.5,17.0,0.91,8.250,73.7 +16.1,0.91,10.000,24.7,16.0,0.91,10.470,28.4 +16.5,0.91,9.160,64.5,16.4,0.91,9.740,65.7 +15.6,0.91,7.340,60.8,15.5,0.91,7.660,61.6 +16.1,0.91,6.920,64.4,16.0,0.91,7.070,64.7 +15.9,0.91,7.360,70.2,15.8,0.91,7.560,70.3 +16.0,0.91,6.010,66.0,15.8,0.91,6.220,67.0 +16.0,0.91,5.930,45.7,15.9,0.91,6.040,46.7 +15.8,0.91,5.880,71.3,15.7,0.91,6.170,71.4 +15.8,0.91,6.470,43.4,15.6,0.91,6.640,43.5 +15.2,0.91,6.490,38.6,15.1,0.91,6.640,38.8 +15.1,0.91,5.800,32.1,15.0,0.91,5.840,33.0 +15.8,0.91,6.390,46.1,15.7,0.91,6.390,46.7 +16.0,0.91,5.890,33.3,15.8,0.91,5.920,33.4 +16.2,0.91,6.060,45.0,16.1,0.91,6.130,44.9 +16.2,0.91,3.580,53.5,16.1,0.91,3.610,53.4 +16.2,0.91,4.520,60.2,16.1,0.91,4.590,62.3 +16.5,0.91,3.610,61.4,16.3,0.91,3.650,62.1 +16.6,0.91,2.520,75.9,16.5,0.91,2.810,79.0 +16.5,0.91,3.230,125.7,16.4,0.91,3.450,128.4 +16.6,0.91,3.320,130.2,16.5,0.91,3.360,131.2 +16.6,0.91,5.680,147.2,16.5,0.91,6.110,145.5 +16.8,0.91,5.330,135.0,16.6,0.91,5.570,134.9 +16.5,0.91,5.050,139.2,16.4,0.91,5.950,139.7 +16.9,0.91,5.100,135.9,16.8,0.91,5.810,138.0 +17.2,0.91,4.990,139.8,17.0,0.91,5.190,140.6 +17.3,0.91,3.110,144.6,17.1,0.91,3.690,146.1 +17.4,0.91,2.780,136.2,17.3,0.91,3.060,140.7 +17.4,0.91,2.850,127.3,17.3,0.91,3.120,124.1 +17.5,0.91,2.710,88.2,17.4,0.91,2.780,94.8 +17.6,0.91,3.800,135.0,17.5,0.91,4.150,139.2 +17.8,0.91,4.760,147.1,17.7,0.91,5.150,148.0 +17.9,0.91,4.330,161.1,17.8,0.91,4.800,163.7 +17.9,0.91,7.190,147.8,17.8,0.91,7.440,146.8 +18.2,0.91,3.230,140.0,18.0,0.91,3.380,139.6 +18.5,0.91,1.800,211.1,18.3,0.91,1.880,209.3 +18.8,0.91,1.310,202.6,18.6,0.91,1.430,198.8 +20.1,0.91,1.230,158.4,19.9,0.91,1.320,159.5 +19.3,0.91,4.490,70.6,19.2,0.91,4.460,70.1 +20.3,0.91,6.570,73.5,20.1,0.91,6.640,74.4 +19.8,0.91,4.940,99.4,19.6,0.91,4.950,100.2 +21.3,0.91,4.780,105.3,21.1,0.91,4.800,105.3 +21.4,0.91,6.220,133.2,21.2,0.91,6.320,133.4 +19.4,0.91,4.280,88.2,19.2,0.91,4.490,89.9 +19.1,0.91,5.360,76.8,19.0,0.91,5.700,79.8 +19.2,0.91,5.780,83.2,19.1,0.91,6.230,84.5 +19.1,0.91,4.220,79.3,19.0,0.91,4.670,83.7 +19.0,0.91,6.170,90.2,18.9,0.91,6.820,91.8 +19.1,0.91,6.200,96.5,19.0,0.91,6.660,97.2 +18.7,0.91,6.360,118.7,18.5,0.91,6.750,119.4 +19.3,0.91,8.480,124.0,19.3,0.91,8.990,123.0 +19.2,0.91,5.050,104.5,19.3,0.91,5.500,108.4 +18.9,0.91,5.950,87.8,18.8,0.91,6.090,88.8 +19.0,0.91,5.220,92.2,18.9,0.91,5.480,95.5 +18.8,0.91,5.520,78.3,18.7,0.91,5.650,78.7 +18.9,0.91,4.930,85.1,18.8,0.91,5.080,85.1 +18.8,0.91,5.340,80.0,18.7,0.91,5.610,82.7 +19.5,0.92,4.870,103.8,19.3,0.92,4.980,104.7 +20.3,0.92,5.100,89.3,20.2,0.92,5.170,89.9 +21.7,0.92,6.050,101.4,21.5,0.92,6.130,101.5 +21.6,0.91,5.820,73.6,21.4,0.91,5.910,73.7 +20.3,0.91,4.240,53.4,20.2,0.91,4.710,55.1 +21.0,0.91,5.490,108.7,20.9,0.91,6.150,109.5 +19.9,0.91,11.030,106.9,19.9,0.91,12.030,109.9 +20.9,0.91,5.380,120.9,20.7,0.91,5.460,121.4 +20.9,0.91,4.890,117.4,20.7,0.91,4.980,117.4 +21.9,0.91,4.980,87.0,21.7,0.91,5.080,88.0 +21.3,0.91,6.540,120.1,21.2,0.91,6.730,119.9 +20.7,0.91,6.770,109.1,20.6,0.91,7.150,108.5 +20.7,0.91,5.610,121.5,20.6,0.91,6.110,122.9 +20.7,0.91,6.390,144.6,20.7,0.91,6.860,144.9 +20.2,0.91,6.690,140.4,20.1,0.91,7.680,142.1 +20.3,0.91,5.750,149.2,20.3,0.91,6.270,148.3 +19.8,0.91,5.800,150.8,19.8,0.91,6.340,155.8 +19.5,0.91,6.710,147.3,19.4,0.91,7.080,149.0 +19.3,0.91,6.040,147.9,19.3,0.91,6.520,149.8 +19.8,0.91,6.590,175.4,19.9,0.91,7.020,176.6 +19.2,0.91,5.580,165.0,19.2,0.91,5.960,165.5 +19.3,0.91,6.220,163.3,19.4,0.91,6.590,162.9 +19.0,0.91,5.700,154.8,19.1,0.91,6.140,155.3 +18.6,0.91,4.070,151.8,18.6,0.91,5.120,152.3 +19.0,0.91,2.950,163.2,18.9,0.91,3.030,162.9 +21.7,0.91,4.640,154.5,21.5,0.91,4.700,154.3 +23.0,0.91,5.620,154.5,22.8,0.91,5.670,154.6 +23.7,0.91,4.870,141.9,23.5,0.91,4.920,142.0 +24.8,0.91,5.400,141.2,24.6,0.91,5.460,141.4 +25.6,0.91,6.130,141.8,25.4,0.91,6.200,142.0 +26.2,0.91,5.440,141.2,26.0,0.91,5.510,141.5 +26.7,0.91,5.380,147.3,26.5,0.91,5.450,147.4 +27.0,0.91,5.520,154.2,26.8,0.91,5.570,154.2 +26.9,0.91,5.450,166.7,26.7,0.91,5.550,166.7 +26.8,0.91,4.330,156.9,26.6,0.91,4.490,157.5 +24.4,0.91,6.140,228.5,24.3,0.91,6.250,226.3 +24.4,0.91,5.120,221.4,24.4,0.91,5.210,215.0 +24.2,0.91,5.240,213.6,24.1,0.91,5.340,209.1 +24.1,0.91,5.160,203.7,24.0,0.91,5.370,201.8 +24.0,0.91,5.820,193.3,23.9,0.91,6.090,192.4 +23.6,0.91,6.330,196.6,23.5,0.91,6.580,195.6 +22.9,0.91,7.040,191.6,22.8,0.91,7.280,192.0 +22.6,0.91,7.990,198.0,22.5,0.91,8.170,197.5 +22.4,0.91,7.580,203.9,22.4,0.91,7.930,204.3 +22.4,0.91,6.770,207.0,22.4,0.91,7.010,205.6 +21.9,0.91,7.240,206.0,22.0,0.91,7.480,206.4 +21.5,0.91,6.360,209.2,21.7,0.91,6.860,210.5 +21.9,0.91,4.620,215.9,21.8,0.91,4.660,216.5 +23.2,0.91,4.650,209.8,23.0,0.91,4.690,210.0 +24.2,0.91,4.190,228.6,23.9,0.91,4.210,228.6 +25.2,0.91,3.210,199.7,25.0,0.91,3.240,199.7 +26.1,0.91,4.210,182.9,25.9,0.91,4.230,183.0 +26.8,0.91,4.240,184.5,26.6,0.91,4.260,184.6 +27.7,0.91,3.710,187.8,27.4,0.91,3.740,187.8 +28.1,0.91,4.700,179.9,27.9,0.91,4.700,179.6 +28.4,0.91,3.800,177.1,28.2,0.91,3.860,176.0 +28.7,0.91,4.460,169.9,28.5,0.91,4.500,169.6 +28.6,0.91,5.730,154.8,28.4,0.91,5.800,155.2 +28.4,0.91,5.180,159.2,28.2,0.91,5.230,158.4 +28.3,0.91,5.710,161.5,28.1,0.91,5.730,162.6 +27.8,0.91,5.410,170.8,27.6,0.91,5.610,171.3 +27.7,0.91,6.970,143.0,27.6,0.91,7.530,144.5 +27.3,0.91,8.860,164.5,27.2,0.91,9.050,164.9 +26.4,0.91,9.560,170.3,26.4,0.91,9.900,171.7 +26.7,0.91,11.830,165.4,26.6,0.91,12.110,166.7 +24.9,0.91,10.560,167.4,24.9,0.91,10.830,168.2 +24.8,0.91,10.480,191.2,24.9,0.91,10.730,196.6 +24.3,0.91,9.260,208.3,24.3,0.91,9.580,211.4 +23.7,0.91,9.260,208.3,23.7,0.91,9.610,208.6 +23.2,0.91,9.080,204.8,23.2,0.91,9.460,204.8 +22.4,0.91,8.520,210.3,22.4,0.91,8.960,211.2 +22.5,0.91,7.770,211.7,22.4,0.91,7.860,212.0 +23.6,0.91,6.460,218.2,23.4,0.91,6.520,218.3 +24.8,0.91,5.340,219.8,24.6,0.91,5.390,219.8 +25.9,0.91,4.730,206.9,25.7,0.91,4.770,207.0 +27.0,0.91,4.880,183.8,26.8,0.91,4.930,184.0 +27.8,0.91,5.010,183.0,27.6,0.91,5.030,183.1 +28.4,0.91,5.080,180.5,28.2,0.91,5.120,180.2 +28.8,0.91,5.820,175.5,28.6,0.91,5.850,175.6 +29.3,0.91,5.650,160.4,29.1,0.91,5.720,160.5 +29.3,0.90,6.150,168.8,29.1,0.90,6.200,168.9 +29.3,0.90,6.130,167.5,29.1,0.90,6.230,167.3 +29.2,0.90,6.080,158.3,29.0,0.90,6.360,158.6 +29.1,0.90,8.400,152.7,29.0,0.90,8.320,152.6 +28.6,0.91,9.200,160.2,28.6,0.91,9.530,161.1 +28.4,0.91,9.470,157.7,28.3,0.91,9.800,158.1 +27.8,0.91,11.370,167.3,27.8,0.91,11.840,167.3 +26.3,0.91,6.220,213.5,26.2,0.91,6.510,220.8 +25.5,0.91,6.680,208.2,25.5,0.91,7.190,213.8 +24.8,0.91,7.760,198.5,24.9,0.91,7.950,203.2 +23.8,0.91,7.920,202.7,23.9,0.91,7.700,213.8 +23.5,0.91,6.840,227.8,23.5,0.91,7.180,229.5 +23.2,0.91,9.800,229.7,23.2,0.91,10.340,229.4 +22.1,0.91,10.250,230.5,22.0,0.91,10.910,231.2 +21.7,0.91,9.110,225.6,21.6,0.91,9.780,225.0 +22.5,0.91,8.780,213.0,22.4,0.91,8.860,212.9 +23.7,0.91,7.270,209.8,23.5,0.91,7.340,209.8 +24.8,0.91,6.300,207.2,24.6,0.91,6.360,207.2 +25.8,0.91,5.950,205.3,25.6,0.91,6.010,205.4 +26.8,0.91,6.820,202.8,26.6,0.91,6.890,203.0 +27.6,0.91,6.390,199.2,27.4,0.91,6.450,199.3 +28.4,0.91,4.770,186.2,28.1,0.91,4.820,186.2 +29.0,0.91,4.920,171.4,28.8,0.91,4.970,172.3 +29.5,0.91,5.550,162.4,29.3,0.91,5.550,163.1 +26.6,0.91,9.530,209.9,26.4,0.91,9.640,209.7 +27.3,0.90,8.000,192.6,27.1,0.90,8.110,192.8 +27.3,0.90,7.020,199.0,27.1,0.90,7.150,198.8 +27.0,0.91,6.010,207.1,26.9,0.91,6.140,206.8 +27.1,0.91,7.780,185.8,27.1,0.91,8.090,187.2 +26.9,0.91,8.240,184.9,26.8,0.91,8.490,187.1 +26.4,0.91,8.830,190.7,26.4,0.91,9.080,192.1 +25.9,0.91,10.290,189.6,25.9,0.91,10.730,190.5 +25.7,0.91,11.600,191.1,25.9,0.91,12.420,192.8 +25.7,0.91,12.000,198.0,25.9,0.91,12.820,198.8 +25.6,0.91,13.270,200.0,25.8,0.91,14.140,200.6 +25.2,0.91,13.070,202.1,25.4,0.91,14.060,202.7 +23.3,0.91,13.040,200.6,23.3,0.91,14.050,201.4 +22.3,0.91,13.460,200.7,22.3,0.91,14.560,202.1 +21.9,0.91,12.390,205.2,21.8,0.91,13.000,205.8 +22.3,0.91,11.010,204.8,22.1,0.91,11.180,205.0 +23.6,0.91,9.830,205.9,23.4,0.91,9.940,206.1 +24.8,0.91,9.480,202.5,24.6,0.91,9.580,202.6 +26.0,0.91,8.640,199.0,25.8,0.91,8.730,199.1 +27.2,0.91,7.670,191.8,27.0,0.91,7.750,191.9 +28.2,0.91,7.940,186.7,28.0,0.91,8.030,186.9 +29.0,0.91,8.210,180.7,28.8,0.91,8.300,181.0 +29.7,0.91,8.160,176.2,29.5,0.91,8.270,176.5 +30.3,0.91,7.450,174.1,30.1,0.91,7.550,174.6 +30.4,0.91,8.510,168.7,30.2,0.91,8.620,169.1 +30.5,0.91,8.630,171.1,30.3,0.91,8.810,171.3 +30.3,0.90,9.600,168.5,30.1,0.90,10.200,168.6 +29.9,0.91,11.120,165.2,29.9,0.91,11.670,165.3 +29.1,0.91,11.440,174.3,29.1,0.91,12.350,174.7 +28.8,0.91,12.540,186.0,28.9,0.91,13.480,187.0 +28.0,0.91,11.720,195.6,28.1,0.91,12.620,196.6 +28.2,0.91,12.910,202.8,28.2,0.91,13.830,202.7 +27.5,0.91,11.550,196.0,27.7,0.91,12.460,196.8 +25.4,0.91,15.740,189.1,25.3,0.91,16.680,189.0 +24.6,0.91,13.650,190.2,24.5,0.91,14.520,191.2 +23.8,0.91,13.170,195.2,23.7,0.91,13.950,196.2 +23.1,0.91,12.430,195.2,23.0,0.91,13.150,196.2 +22.6,0.91,12.870,193.9,22.5,0.91,13.630,195.3 +22.4,0.91,12.030,198.3,22.3,0.91,12.330,198.7 +23.1,0.91,11.010,201.3,22.9,0.91,11.150,201.5 +24.2,0.91,10.480,204.5,24.0,0.91,10.590,204.6 +25.8,0.91,9.790,197.3,25.6,0.91,9.890,197.4 +27.2,0.91,9.070,197.0,27.0,0.91,9.170,197.2 +28.4,0.91,8.160,191.3,28.2,0.91,8.250,191.4 +29.5,0.91,7.930,186.9,29.3,0.91,8.030,187.1 +30.4,0.91,7.650,188.8,30.2,0.91,7.750,188.9 +31.1,0.91,8.730,187.2,30.8,0.91,8.810,187.2 +31.6,0.91,8.340,171.7,31.4,0.91,8.410,172.2 +32.0,0.91,8.230,196.4,31.8,0.91,8.290,195.9 +32.1,0.90,8.760,181.2,31.9,0.90,8.880,181.5 +31.8,0.90,8.150,174.3,31.6,0.90,8.490,176.3 +31.2,0.90,10.230,179.4,31.2,0.90,11.260,179.8 +30.7,0.90,11.990,181.1,30.6,0.90,12.370,181.2 +29.2,0.91,11.580,186.6,29.2,0.91,12.710,186.4 +29.0,0.91,12.850,194.1,29.0,0.91,13.720,193.9 +28.6,0.91,12.740,203.7,28.6,0.91,13.120,203.9 +28.7,0.91,13.470,199.7,28.8,0.91,14.230,200.4 +27.9,0.91,13.690,201.7,28.0,0.91,14.380,202.4 +27.5,0.91,11.590,205.6,27.7,0.91,12.190,206.8 +26.7,0.91,11.780,207.6,26.8,0.91,12.370,207.9 +25.3,0.91,12.890,207.8,25.2,0.91,13.790,208.9 +24.4,0.91,11.460,206.8,24.4,0.91,12.250,208.9 +23.7,0.91,10.320,211.4,23.7,0.91,10.840,212.5 +24.3,0.91,6.520,211.3,24.1,0.91,6.570,211.8 +25.6,0.91,6.070,216.6,25.4,0.91,6.110,217.0 +27.1,0.91,3.730,205.1,26.9,0.91,3.750,205.4 +28.2,0.91,3.140,187.5,28.0,0.91,3.140,187.8 +29.2,0.91,3.280,169.8,29.0,0.91,3.280,169.8 +30.0,0.91,3.710,170.1,29.8,0.91,3.710,170.0 +30.7,0.91,4.050,161.9,30.5,0.91,4.080,162.2 +31.2,0.91,3.550,163.5,31.0,0.91,3.560,163.2 +31.8,0.91,4.620,153.7,31.6,0.91,4.660,154.1 +31.9,0.91,5.020,152.9,31.7,0.91,5.040,152.9 +31.9,0.91,4.400,151.2,31.7,0.91,4.440,151.3 +31.9,0.91,4.880,154.8,31.7,0.91,4.930,154.5 +31.6,0.91,6.480,145.2,31.5,0.91,6.480,144.9 +31.5,0.91,5.480,149.0,31.3,0.91,5.590,149.1 +31.0,0.91,7.690,146.0,30.9,0.91,7.530,146.0 +30.3,0.91,9.500,150.5,30.3,0.91,9.570,151.7 +29.8,0.91,9.750,164.8,29.8,0.91,10.040,166.0 +29.2,0.91,10.180,166.8,29.2,0.91,10.430,167.1 +28.5,0.91,8.950,180.1,28.5,0.91,8.880,182.4 +27.8,0.91,8.120,214.9,27.8,0.91,7.870,216.8 +27.7,0.91,7.730,216.7,27.8,0.91,7.840,218.2 +27.4,0.91,6.210,218.9,27.4,0.91,6.220,219.9 +27.1,0.91,5.210,213.6,27.3,0.91,5.340,214.3 +26.7,0.91,5.260,211.7,26.8,0.91,5.310,212.7 +26.4,0.91,4.120,214.1,26.4,0.91,4.420,214.8 +26.9,0.91,4.670,204.5,26.7,0.91,4.690,205.1 +28.2,0.91,3.460,215.7,28.0,0.91,3.470,216.0 +29.3,0.91,2.360,204.5,29.1,0.91,2.370,204.3 +30.0,0.91,3.310,161.6,29.8,0.91,3.310,161.6 +30.5,0.91,3.870,173.5,30.3,0.91,3.890,173.3 +30.8,0.91,4.370,175.6,30.6,0.91,4.370,175.6 +31.3,0.91,4.920,175.0,31.1,0.91,4.930,175.1 +31.6,0.91,5.660,175.9,31.4,0.91,5.670,175.8 +32.0,0.91,5.390,178.2,31.8,0.91,5.480,177.8 +31.9,0.91,5.750,163.7,31.8,0.91,5.830,164.2 +31.6,0.91,6.930,160.0,31.4,0.91,7.340,161.0 +31.5,0.91,7.580,154.5,31.4,0.91,7.770,154.2 +31.2,0.91,10.470,163.4,31.1,0.91,10.920,165.1 +30.3,0.91,12.100,164.8,30.3,0.91,12.450,165.5 +29.6,0.91,12.640,167.4,29.6,0.91,13.100,168.1 +28.7,0.91,12.790,165.1,28.8,0.91,13.600,165.3 +27.8,0.91,12.280,182.8,27.9,0.91,12.720,186.0 +27.3,0.91,12.050,197.7,27.3,0.91,12.530,200.6 +26.6,0.91,12.700,208.5,26.6,0.91,13.600,209.7 +25.9,0.91,12.390,209.0,26.0,0.91,13.260,209.7 +25.4,0.91,12.130,209.2,25.4,0.91,12.940,209.6 +24.7,0.91,12.180,214.1,24.8,0.91,13.070,215.3 +24.2,0.91,10.690,215.2,24.2,0.91,11.250,216.3 +24.6,0.91,8.660,214.5,24.5,0.91,8.780,215.1 +25.8,0.91,7.960,217.1,25.6,0.91,7.990,217.4 +27.6,0.91,6.120,227.8,27.4,0.91,6.150,228.2 +29.3,0.91,4.650,248.1,29.1,0.91,4.690,248.6 +30.6,0.91,3.360,272.1,30.4,0.91,3.410,272.5 +31.4,0.91,3.780,307.4,31.2,0.91,3.800,306.8 +32.1,0.91,3.970,305.6,31.9,0.91,4.010,305.4 +32.5,0.91,3.570,299.4,32.3,0.91,3.620,299.6 +33.0,0.91,2.970,307.1,32.8,0.91,3.010,307.5 +33.1,0.91,2.380,324.3,32.9,0.91,2.400,324.3 +33.4,0.91,4.090,350.1,33.2,0.91,4.180,350.4 +32.8,0.91,6.550,30.6,32.6,0.91,6.530,30.7 +31.6,0.91,8.090,30.7,31.5,0.91,8.730,30.2 +30.2,0.91,9.570,35.6,30.1,0.91,10.340,35.1 +28.8,0.91,10.210,36.7,28.7,0.91,11.150,36.8 +28.1,0.91,8.790,34.2,28.0,0.91,9.340,33.3 +26.7,0.91,11.050,44.3,26.5,0.91,12.000,46.6 +24.8,0.91,12.010,39.5,24.7,0.91,12.570,39.9 +23.8,0.91,9.230,43.9,23.6,0.91,9.850,44.7 +23.1,0.91,8.080,41.3,23.0,0.91,8.580,42.3 +22.5,0.91,8.440,35.7,22.4,0.91,8.950,36.9 +21.8,0.91,7.200,35.0,21.6,0.91,7.650,38.0 +20.9,0.91,7.420,41.8,20.8,0.91,7.890,45.0 +20.3,0.91,6.090,43.6,20.1,0.91,6.170,44.4 +20.7,0.91,5.460,43.3,20.5,0.91,5.500,43.4 +21.6,0.91,5.550,42.9,21.4,0.91,5.590,42.8 +22.7,0.91,4.880,44.9,22.5,0.91,4.920,44.9 +24.0,0.91,4.790,46.4,23.8,0.91,4.810,46.6 +25.4,0.91,4.800,46.7,25.2,0.91,4.830,47.0 +26.7,0.91,5.140,47.3,26.4,0.91,5.180,47.6 +27.8,0.91,4.870,63.5,27.6,0.91,4.910,63.9 +28.6,0.91,5.140,78.4,28.4,0.91,5.200,78.6 +28.9,0.91,5.880,86.1,28.7,0.91,5.920,86.4 +29.0,0.91,5.460,76.5,28.8,0.91,5.490,76.3 +28.9,0.91,5.600,98.6,28.7,0.91,5.670,98.9 +28.5,0.91,6.020,110.2,28.3,0.91,6.240,111.1 +27.9,0.91,8.260,117.4,27.8,0.91,8.450,117.9 +27.3,0.91,8.900,120.1,27.1,0.91,8.630,120.2 +26.1,0.91,8.280,119.4,25.9,0.91,8.650,118.6 +25.8,0.91,8.560,129.3,25.6,0.91,8.890,128.1 +25.2,0.91,8.810,132.8,25.1,0.91,8.970,132.8 +24.6,0.91,9.960,130.3,24.6,0.91,10.100,130.9 +23.7,0.91,10.330,134.9,23.7,0.91,10.730,135.2 +23.0,0.91,10.430,139.1,23.0,0.91,10.770,139.6 +22.4,0.91,10.240,145.3,22.5,0.91,10.540,146.2 +22.0,0.91,10.810,153.3,22.0,0.91,11.320,153.6 +21.7,0.91,10.400,149.1,21.7,0.91,10.820,150.2 +21.3,0.91,8.790,158.9,21.2,0.91,9.280,159.0 +22.2,0.91,7.640,163.6,22.0,0.91,7.760,163.8 +23.3,0.91,7.490,168.2,23.1,0.91,7.580,168.3 +24.7,0.91,6.640,166.4,24.5,0.91,6.720,166.5 +26.0,0.91,5.420,170.9,25.8,0.91,5.470,170.9 +27.2,0.91,4.410,171.1,26.9,0.91,4.440,171.1 +28.2,0.91,4.080,178.7,27.9,0.91,4.100,178.9 +29.0,0.91,4.270,178.5,28.8,0.91,4.270,178.8 +29.9,0.91,5.010,178.5,29.7,0.91,5.010,178.7 +30.5,0.91,5.550,157.3,30.3,0.91,5.590,157.9 +30.8,0.90,6.010,165.9,30.6,0.90,6.080,166.1 +30.9,0.90,6.940,170.5,30.7,0.90,7.080,170.7 +29.4,0.90,5.330,214.6,29.3,0.90,5.460,213.7 +29.3,0.90,7.570,157.5,29.1,0.90,7.980,157.9 +29.3,0.90,8.770,160.6,29.3,0.90,9.280,160.9 +28.9,0.91,9.810,153.8,28.9,0.91,10.470,153.5 +28.9,0.91,10.400,155.0,28.9,0.91,11.060,156.1 +29.0,0.91,11.690,160.8,29.1,0.91,12.440,163.6 +28.0,0.91,11.920,184.1,28.1,0.91,12.590,185.9 +27.6,0.91,13.640,193.5,27.6,0.91,14.560,193.4 +26.3,0.91,13.790,188.5,26.2,0.91,14.890,188.2 +25.2,0.91,14.380,189.4,25.1,0.91,15.410,190.1 +24.2,0.91,14.050,186.7,24.1,0.91,14.870,187.3 +23.5,0.91,13.820,190.0,23.4,0.91,14.520,190.7 +23.3,0.91,13.370,190.3,23.1,0.91,13.600,190.4 +24.1,0.91,11.770,195.3,23.9,0.91,11.920,195.6 +25.3,0.91,10.950,197.0,25.1,0.91,11.080,197.2 +26.8,0.91,10.640,193.4,26.6,0.91,10.760,193.6 +28.3,0.91,10.260,192.9,28.0,0.91,10.390,193.0 +29.6,0.91,9.480,195.2,29.4,0.91,9.600,195.3 +30.8,0.91,9.670,192.3,30.5,0.91,9.790,192.4 +31.7,0.91,8.930,192.1,31.5,0.91,9.060,192.2 +32.4,0.91,9.300,182.4,32.1,0.91,9.400,182.9 +32.8,0.91,9.680,194.6,32.6,0.91,9.740,194.4 +33.2,0.91,8.640,197.3,33.0,0.91,8.750,197.0 +33.3,0.91,8.290,193.5,33.1,0.91,8.450,193.7 +33.0,0.91,9.210,189.1,32.8,0.91,9.580,189.3 +31.9,0.91,10.760,179.0,31.9,0.91,11.410,179.7 +31.0,0.91,12.890,179.8,31.0,0.91,13.680,180.2 +30.2,0.91,13.630,188.5,30.2,0.91,14.470,189.1 +29.7,0.91,15.100,194.6,29.8,0.91,15.970,194.7 +29.2,0.91,15.670,195.9,29.2,0.91,16.520,195.9 +28.3,0.91,15.330,195.0,28.3,0.91,16.210,195.3 +27.0,0.91,15.290,192.3,26.9,0.91,16.090,193.0 +25.6,0.91,15.690,195.0,25.5,0.91,16.480,195.6 +24.5,0.91,16.330,197.6,24.5,0.91,17.150,198.2 +23.8,0.91,16.230,197.7,23.8,0.91,17.060,198.4 +23.4,0.91,16.070,200.6,23.3,0.91,16.930,201.4 +23.3,0.91,15.420,199.7,23.3,0.91,16.110,200.4 +24.1,0.91,13.080,202.1,23.9,0.91,13.290,202.4 +25.3,0.91,12.190,208.0,25.1,0.91,12.290,208.2 +26.9,0.91,11.280,206.8,26.7,0.91,11.370,207.0 +28.6,0.91,10.090,208.4,28.4,0.91,10.180,208.6 +30.1,0.91,8.640,205.3,29.9,0.91,8.710,205.5 +31.3,0.91,7.180,199.7,31.1,0.91,7.240,200.0 +32.2,0.91,5.920,193.3,32.0,0.91,5.960,193.6 +33.0,0.91,5.300,193.8,32.8,0.91,5.340,193.9 +33.4,0.91,6.000,172.6,33.1,0.91,6.030,173.1 +33.8,0.91,4.640,190.6,33.6,0.91,4.660,190.4 +33.7,0.91,5.780,173.8,33.5,0.91,5.850,174.1 +33.7,0.91,6.600,172.0,33.5,0.91,6.540,172.1 +33.1,0.91,5.600,171.9,33.0,0.91,6.120,169.5 +33.0,0.91,7.500,167.8,32.8,0.91,7.480,168.2 +31.9,0.91,11.290,178.5,31.8,0.91,11.760,179.9 +30.8,0.91,12.220,188.8,30.8,0.91,12.740,191.3 +30.1,0.91,11.980,200.6,30.1,0.91,12.680,202.6 +29.1,0.91,11.120,204.7,29.1,0.91,12.100,206.1 +28.6,0.91,12.550,207.6,28.6,0.91,13.560,208.3 +28.2,0.91,13.120,210.2,28.2,0.91,14.090,210.5 +27.3,0.91,12.780,205.3,27.1,0.91,13.610,206.0 +26.1,0.91,12.720,210.4,26.0,0.91,13.270,212.4 +25.5,0.91,11.100,213.9,25.5,0.91,11.740,215.5 +24.9,0.91,11.070,217.4,24.9,0.91,11.700,218.2 +25.5,0.91,8.370,221.2,25.4,0.91,8.480,221.5 +26.9,0.91,6.900,222.1,26.8,0.91,6.920,222.5 +28.6,0.91,4.470,238.1,28.3,0.91,4.490,238.6 +30.1,0.91,1.650,282.6,29.9,0.91,1.670,283.1 +31.2,0.91,1.080,329.1,30.9,0.91,1.110,328.8 +32.1,0.91,2.490,20.9,31.9,0.91,2.490,20.5 +32.9,0.91,1.540,46.5,32.7,0.91,1.580,47.2 +33.3,0.91,3.250,60.7,33.1,0.91,3.250,60.3 +33.6,0.91,3.900,61.6,33.4,0.91,3.890,61.1 +33.9,0.91,3.140,73.3,33.7,0.91,3.140,72.9 +33.9,0.91,3.080,60.8,33.7,0.91,3.110,61.4 +33.6,0.91,5.190,91.7,33.5,0.91,5.330,90.3 +32.1,0.91,6.450,159.7,32.0,0.91,6.480,158.5 +32.1,0.91,4.620,147.6,31.9,0.91,4.660,143.9 +31.5,0.91,3.930,150.6,31.3,0.91,3.940,148.2 +30.7,0.91,2.290,112.6,30.6,0.91,2.480,111.7 +29.6,0.91,2.620,58.2,29.6,0.91,2.820,61.9 +29.0,0.91,2.810,58.6,29.1,0.91,2.960,65.1 +28.2,0.91,3.860,87.8,28.2,0.91,4.190,88.8 +28.2,0.91,5.110,85.2,28.2,0.91,5.380,87.3 +28.4,0.91,6.320,101.7,28.3,0.91,6.480,101.4 +27.7,0.91,6.570,124.9,27.7,0.91,6.910,126.1 +27.1,0.91,5.320,116.0,27.1,0.91,5.430,117.4 +26.4,0.91,4.260,114.2,26.4,0.91,4.360,117.0 +26.5,0.91,1.770,133.5,26.4,0.91,1.770,136.3 +28.5,0.91,3.700,240.9,28.3,0.91,3.750,241.3 +29.8,0.91,3.320,260.4,29.6,0.91,3.390,260.5 +30.8,0.91,2.230,325.0,30.6,0.91,2.240,324.5 +31.5,0.91,2.350,22.2,31.2,0.91,2.320,21.4 +32.0,0.91,2.580,34.6,31.8,0.91,2.550,34.6 +32.6,0.91,2.980,47.9,32.4,0.91,2.950,48.9 +33.2,0.91,3.730,92.7,32.9,0.91,3.740,92.5 +33.4,0.91,3.470,67.5,33.2,0.91,3.470,67.9 +33.8,0.91,2.590,95.9,33.6,0.91,2.610,97.7 +34.3,0.91,3.990,167.7,34.1,0.91,4.020,167.3 +34.0,0.91,4.330,157.7,33.8,0.91,4.420,156.7 +33.3,0.91,4.640,145.6,33.2,0.91,4.680,146.7 +31.9,0.91,8.310,131.8,31.7,0.91,8.580,130.1 +31.0,0.91,9.830,126.3,30.9,0.91,10.660,125.3 +30.5,0.91,11.160,127.1,30.5,0.91,11.710,127.5 +29.9,0.91,11.410,138.3,30.0,0.91,11.930,138.6 +29.3,0.91,12.420,148.0,29.3,0.91,13.100,147.6 +28.6,0.91,12.090,183.8,28.7,0.91,12.530,187.1 +28.6,0.91,12.350,214.1,28.6,0.91,13.040,215.3 +27.8,0.91,11.730,216.1,27.8,0.91,12.560,217.1 +27.0,0.91,11.780,206.0,27.0,0.91,12.460,207.6 +26.7,0.91,12.270,209.0,26.8,0.91,12.910,210.5 +26.2,0.91,12.660,208.5,26.2,0.91,13.260,209.3 +26.7,0.91,11.330,210.7,26.5,0.91,11.490,211.0 +28.1,0.91,11.420,211.1,27.9,0.91,11.540,211.2 +29.5,0.91,9.860,211.5,29.3,0.91,9.950,211.5 +30.6,0.91,9.190,207.3,30.4,0.91,9.280,207.4 +31.7,0.91,8.480,198.8,31.5,0.91,8.560,198.9 +32.5,0.91,7.060,197.2,32.3,0.91,7.130,197.3 +33.2,0.91,6.450,193.7,33.0,0.91,6.500,193.8 +33.7,0.91,5.470,203.2,33.5,0.91,5.520,202.8 +34.1,0.91,5.590,195.5,33.9,0.91,5.600,194.7 +34.3,0.91,5.250,183.7,34.1,0.91,5.330,183.6 +34.2,0.91,5.350,177.2,34.0,0.91,5.450,176.8 +33.8,0.91,7.950,161.9,33.6,0.91,8.090,161.7 +33.4,0.91,8.690,161.9,33.2,0.91,9.240,161.7 +32.6,0.91,10.580,152.4,32.5,0.91,11.010,153.1 +31.6,0.91,12.240,157.0,31.6,0.91,13.000,157.5 +30.7,0.91,13.050,161.0,30.7,0.91,13.820,161.8 +29.3,0.91,13.260,178.5,29.3,0.91,13.980,180.2 +28.9,0.91,12.940,191.7,28.9,0.91,13.670,192.8 +28.1,0.91,13.200,192.7,28.1,0.91,13.920,194.0 +27.4,0.91,13.790,195.3,27.4,0.91,14.550,196.3 +26.9,0.91,14.400,199.8,26.9,0.91,15.260,200.8 +26.2,0.91,14.250,199.9,26.2,0.91,15.100,201.3 +25.3,0.91,14.030,199.1,25.3,0.91,14.770,200.6 +24.6,0.91,13.390,202.1,24.5,0.91,14.020,202.8 +24.9,0.91,12.180,204.4,24.8,0.91,12.310,204.6 +26.4,0.91,10.850,204.6,26.2,0.91,10.920,204.8 +28.1,0.91,9.860,204.7,27.9,0.91,9.940,204.9 +29.7,0.91,8.170,199.1,29.5,0.91,8.240,199.2 +30.9,0.91,6.640,190.8,30.6,0.91,6.680,190.9 +31.8,0.91,4.860,176.6,31.6,0.91,4.870,176.6 +32.6,0.91,4.850,154.7,32.4,0.91,4.880,155.1 +33.2,0.91,4.920,156.9,33.0,0.91,4.970,156.9 +33.4,0.91,5.650,152.3,33.2,0.91,5.670,152.6 +33.6,0.91,7.460,151.8,33.4,0.91,7.550,152.1 +33.5,0.91,6.070,170.6,33.3,0.91,6.140,170.5 +33.1,0.91,7.960,162.8,33.0,0.91,8.160,162.7 +32.3,0.91,9.980,149.5,32.2,0.91,10.510,149.5 +31.4,0.91,11.920,152.9,31.4,0.91,12.570,153.3 +30.7,0.91,12.030,158.7,30.7,0.91,12.830,159.6 +29.8,0.91,12.610,169.5,29.8,0.91,13.310,170.9 +28.9,0.91,12.310,181.9,28.8,0.91,13.010,182.9 +28.3,0.91,12.070,189.7,28.3,0.91,12.680,191.2 +27.7,0.91,12.280,191.3,27.6,0.91,12.960,192.1 +27.1,0.91,12.390,191.4,27.0,0.91,13.080,191.9 +25.8,0.91,12.200,186.0,25.7,0.91,12.690,186.6 +24.7,0.91,12.810,191.5,24.7,0.91,13.620,193.0 +24.0,0.91,12.230,194.4,24.0,0.91,12.990,195.5 +23.6,0.91,10.770,197.5,23.5,0.91,11.350,198.0 +24.3,0.91,9.420,196.0,24.1,0.91,9.510,196.2 +25.5,0.91,7.940,200.1,25.3,0.91,8.010,200.2 +26.9,0.91,7.160,198.1,26.7,0.91,7.220,198.2 +28.1,0.91,6.540,187.1,27.9,0.91,6.600,187.2 +29.2,0.91,5.760,180.2,29.0,0.91,5.800,180.3 +30.4,0.91,4.540,168.7,30.2,0.91,4.580,169.4 +30.9,0.91,5.370,170.7,30.7,0.91,5.380,170.6 +31.8,0.91,5.230,192.5,31.6,0.91,5.260,190.9 +32.3,0.91,5.600,165.3,32.1,0.91,5.680,165.3 +32.2,0.91,7.080,160.4,32.0,0.91,7.130,160.2 +32.3,0.91,6.720,147.2,32.1,0.91,6.810,147.4 +32.1,0.91,7.100,150.8,31.9,0.91,7.360,150.8 +31.9,0.91,9.140,161.1,31.8,0.91,9.540,161.4 +31.1,0.91,10.130,156.2,31.0,0.91,10.720,156.6 +30.1,0.91,10.310,160.3,30.1,0.91,11.080,162.2 +29.1,0.91,11.880,173.3,29.1,0.91,12.710,174.6 +28.3,0.91,12.100,183.7,28.3,0.91,12.890,184.9 +27.7,0.91,12.070,191.7,27.7,0.91,12.820,192.7 +27.1,0.91,13.030,194.6,27.0,0.91,13.910,195.1 +26.2,0.91,13.480,193.5,26.1,0.91,14.360,193.8 +25.0,0.91,13.170,195.3,24.9,0.91,14.020,196.4 +24.1,0.91,12.630,202.5,24.1,0.91,13.460,203.1 +23.7,0.91,12.910,202.8,23.7,0.91,13.830,203.8 +23.6,0.91,12.370,207.9,23.4,0.91,12.650,208.2 +24.3,0.91,10.820,207.8,24.1,0.91,10.950,208.1 +25.7,0.91,9.120,207.1,25.5,0.91,9.210,207.2 +27.3,0.91,7.990,211.0,27.0,0.91,8.070,211.1 +28.6,0.91,6.900,200.6,28.4,0.91,6.960,200.8 +29.8,0.91,6.460,194.8,29.6,0.91,6.520,195.0 +30.8,0.91,6.080,191.1,30.6,0.91,6.140,191.3 +31.8,0.91,6.010,187.1,31.5,0.91,6.050,187.5 +32.4,0.91,6.220,200.7,32.2,0.91,6.260,200.2 +33.2,0.91,5.090,190.6,33.0,0.91,5.150,190.6 +33.3,0.91,5.860,173.6,33.1,0.91,5.930,173.7 +33.2,0.91,6.410,176.2,33.0,0.91,6.460,176.1 +33.1,0.91,5.930,175.8,32.9,0.91,6.040,175.1 +32.7,0.91,8.730,164.0,32.5,0.91,9.050,163.5 +31.5,0.91,10.690,165.1,31.5,0.91,11.240,166.4 +30.6,0.91,13.750,180.5,30.6,0.91,14.550,182.0 +29.5,0.91,12.840,195.5,29.6,0.91,13.830,196.3 +28.5,0.91,13.570,194.9,28.5,0.91,14.590,196.2 +27.8,0.91,14.400,198.5,27.8,0.91,15.430,199.0 +27.4,0.91,15.200,196.8,27.5,0.91,16.250,197.3 +26.8,0.91,16.030,199.1,26.8,0.91,17.080,199.4 +25.9,0.91,15.480,200.4,25.9,0.91,16.460,201.0 +24.9,0.91,15.520,201.0,24.9,0.91,16.510,201.8 +24.2,0.91,15.460,202.6,24.3,0.91,16.440,203.9 +23.7,0.91,14.870,204.3,23.7,0.91,15.610,204.9 +24.2,0.91,12.720,206.8,24.1,0.91,12.970,207.1 +25.8,0.91,12.200,205.1,25.6,0.91,12.290,205.3 +27.7,0.91,10.560,205.3,27.5,0.91,10.630,205.5 +29.6,0.91,9.290,205.8,29.4,0.91,9.360,205.9 +31.2,0.91,7.820,206.2,30.9,0.91,7.880,206.4 +32.5,0.91,6.540,195.8,32.3,0.91,6.580,196.1 +33.6,0.91,6.050,190.9,33.3,0.91,6.100,191.2 +34.3,0.90,6.030,194.4,34.1,0.90,6.070,194.7 +34.8,0.90,5.610,195.3,34.5,0.90,5.660,195.5 +34.9,0.90,6.750,173.7,34.6,0.90,6.780,174.4 +35.0,0.90,5.840,181.6,34.8,0.90,5.900,181.8 +34.7,0.90,8.170,172.7,34.5,0.90,8.200,172.2 +34.5,0.90,9.280,163.0,34.4,0.90,9.330,163.3 +33.7,0.90,11.000,164.2,33.7,0.90,11.310,164.7 +32.1,0.90,14.040,171.4,32.1,0.90,14.830,172.7 +30.7,0.90,13.560,184.3,30.7,0.90,14.110,186.3 +29.7,0.90,13.710,190.1,29.7,0.90,14.430,192.2 +28.9,0.90,13.200,198.5,28.8,0.90,13.990,200.8 +28.3,0.90,14.300,200.7,28.4,0.90,15.290,202.0 +27.9,0.90,14.810,199.2,27.9,0.90,15.860,200.5 +27.3,0.90,14.460,203.9,27.3,0.90,15.360,204.9 +26.4,0.90,15.350,205.8,26.4,0.90,16.260,206.9 +25.5,0.90,14.110,205.7,25.6,0.90,14.890,207.5 +24.9,0.91,13.080,211.3,24.9,0.91,13.820,212.6 +25.9,0.91,11.740,211.0,25.7,0.91,11.950,211.6 +27.8,0.91,10.590,212.1,27.6,0.91,10.670,212.5 +29.9,0.91,10.310,215.6,29.7,0.91,10.400,215.9 +31.9,0.91,9.460,212.8,31.7,0.91,9.550,213.0 +33.4,0.91,7.150,210.9,33.2,0.91,7.220,211.0 +34.4,0.91,7.330,198.4,34.1,0.91,7.400,198.6 +35.1,0.90,7.000,192.3,34.8,0.90,7.070,192.4 +35.4,0.90,6.650,187.7,35.2,0.90,6.710,187.9 +35.7,0.90,5.990,197.3,35.5,0.90,6.030,196.9 +35.9,0.90,6.800,177.5,35.7,0.90,6.880,177.2 +35.7,0.90,7.470,181.0,35.5,0.90,7.510,181.0 +35.3,0.90,8.730,156.7,35.2,0.90,9.170,156.4 +34.6,0.90,11.470,156.7,34.6,0.90,11.960,157.5 +33.6,0.90,13.310,158.6,33.6,0.90,14.190,159.6 +32.1,0.90,7.530,260.3,31.8,0.90,7.440,260.6 +32.4,0.90,5.410,265.3,32.3,0.90,5.360,261.2 +30.6,0.90,4.570,184.9,30.5,0.90,4.400,179.9 +30.3,0.90,4.120,238.3,30.2,0.90,4.300,240.5 +29.6,0.90,9.100,207.7,29.6,0.90,8.960,207.8 +28.9,0.90,12.490,209.4,29.0,0.90,13.260,210.2 +28.4,0.90,11.740,201.8,28.3,0.90,12.380,203.0 +27.4,0.90,11.820,204.0,27.3,0.90,12.550,205.0 +25.9,0.91,10.990,203.7,25.8,0.91,11.910,207.1 +25.3,0.91,11.100,215.7,25.3,0.91,11.760,216.7 +25.9,0.91,7.890,208.3,25.7,0.91,7.960,208.9 +27.5,0.91,7.360,203.6,27.3,0.91,7.410,204.1 +29.2,0.91,7.050,201.3,29.0,0.91,7.110,201.6 +30.4,0.91,7.120,190.5,30.2,0.91,7.180,190.6 +31.6,0.91,7.070,185.4,31.4,0.91,7.140,185.5 +32.7,0.91,6.780,183.4,32.4,0.91,6.860,183.2 +33.7,0.90,7.370,180.2,33.5,0.90,7.440,180.7 +34.2,0.90,8.490,179.1,34.0,0.90,8.550,179.0 +34.6,0.90,8.130,181.6,34.4,0.90,8.140,181.7 +35.0,0.90,7.740,187.3,34.8,0.90,7.810,186.6 +34.9,0.90,8.940,186.3,34.7,0.90,8.990,186.3 +34.7,0.90,8.770,182.0,34.5,0.90,8.890,182.5 +33.6,0.90,10.460,169.3,33.6,0.90,11.420,169.6 +31.0,0.90,4.980,188.0,31.0,0.90,5.860,181.2 +30.1,0.90,6.270,205.0,30.3,0.90,7.320,223.5 +30.9,0.90,10.110,168.1,31.0,0.90,10.520,168.4 +29.7,0.90,13.810,184.1,29.8,0.90,14.300,184.6 +29.2,0.90,14.590,191.8,29.3,0.90,15.390,192.8 +28.8,0.91,13.220,196.1,28.8,0.91,13.990,197.4 +28.2,0.91,12.820,199.0,28.3,0.91,13.800,200.9 +26.8,0.91,12.360,187.8,26.9,0.91,12.850,189.8 +25.6,0.91,7.430,193.8,25.8,0.91,8.630,195.0 +25.4,0.91,6.820,200.1,25.4,0.91,7.610,204.6 +25.1,0.91,6.350,208.9,25.0,0.91,6.750,210.5 +25.3,0.91,5.940,214.2,25.1,0.91,6.030,214.7 +26.5,0.91,5.270,219.3,26.3,0.91,5.320,219.5 +28.1,0.91,4.200,227.1,27.9,0.91,4.220,227.3 +29.6,0.91,2.610,214.2,29.4,0.91,2.610,214.7 +30.9,0.91,1.140,203.4,30.7,0.91,1.150,203.3 +32.0,0.91,0.860,126.6,31.8,0.91,0.870,128.4 +32.9,0.91,2.010,131.5,32.6,0.91,2.040,131.8 +33.3,0.91,1.070,128.8,33.1,0.91,1.070,128.7 +33.8,0.91,1.820,105.7,33.5,0.91,1.790,106.4 +33.9,0.91,2.630,98.2,33.7,0.91,2.620,98.8 +34.0,0.91,2.900,119.7,33.8,0.91,2.920,119.6 +33.5,0.91,5.150,29.6,33.4,0.91,5.080,32.3 +31.8,0.91,5.190,139.2,31.6,0.91,5.560,141.6 +30.9,0.91,9.400,142.5,30.8,0.91,10.080,142.2 +30.2,0.91,6.780,154.5,30.1,0.91,7.190,152.5 +29.4,0.91,5.480,125.7,29.6,0.91,6.940,124.4 +29.7,0.91,7.270,108.9,29.5,0.91,6.570,108.4 +28.0,0.91,6.000,66.4,27.9,0.91,6.320,68.0 +27.4,0.91,6.890,72.0,27.2,0.91,7.080,68.7 +26.8,0.91,6.950,64.8,26.5,0.91,7.050,64.9 +25.7,0.91,5.420,53.6,25.5,0.91,5.540,53.1 +24.6,0.91,6.310,45.4,24.4,0.91,6.460,44.5 +24.2,0.91,7.240,34.3,24.0,0.91,7.510,35.3 +23.1,0.91,6.280,39.1,22.9,0.91,6.500,40.0 +23.4,0.91,6.320,52.1,23.2,0.91,6.350,52.2 +24.7,0.91,6.100,40.0,24.5,0.91,6.130,40.1 +25.9,0.91,5.770,42.7,25.7,0.91,5.790,42.8 +27.1,0.91,5.650,42.7,26.9,0.91,5.680,42.6 +28.1,0.91,5.070,42.1,27.9,0.91,5.090,42.2 +29.1,0.91,4.980,46.6,28.9,0.91,5.000,46.8 +30.0,0.91,4.540,40.5,29.8,0.91,4.550,40.8 +30.8,0.91,4.560,44.2,30.5,0.91,4.580,44.4 +31.2,0.91,5.060,52.9,30.9,0.91,5.090,53.1 +31.6,0.91,4.990,59.4,31.4,0.91,5.040,59.8 +31.4,0.91,5.870,57.6,31.2,0.91,5.940,58.0 +30.9,0.91,5.630,90.4,30.7,0.91,5.760,90.4 +30.2,0.91,3.350,106.8,30.0,0.91,3.720,105.0 +27.3,0.91,6.230,202.0,27.3,0.91,6.620,200.1 +28.4,0.91,4.420,207.3,28.4,0.91,4.290,200.8 +27.0,0.91,3.960,269.2,27.3,0.91,3.410,260.1 +28.1,0.91,0.640,113.2,28.0,0.91,1.120,109.6 +27.2,0.91,3.020,38.6,27.1,0.91,3.260,42.6 +26.1,0.91,3.830,33.2,26.0,0.91,4.040,34.4 +25.1,0.91,3.400,35.8,25.1,0.91,3.690,39.1 +24.6,0.91,3.510,32.8,24.5,0.91,3.510,39.9 +24.3,0.91,2.210,40.7,24.3,0.91,2.370,46.1 +24.1,0.91,0.860,30.6,24.2,0.91,0.690,50.6 +24.3,0.91,0.960,242.9,24.3,0.91,1.220,225.9 +25.4,0.91,2.220,217.3,25.2,0.91,2.270,217.6 +27.0,0.91,3.370,241.8,26.8,0.91,3.400,241.8 +28.3,0.91,2.310,249.1,28.0,0.91,2.330,249.3 +29.2,0.91,2.370,204.4,29.0,0.91,2.370,204.8 +30.2,0.91,1.820,204.4,29.9,0.91,1.830,203.6 +30.9,0.91,1.620,170.2,30.7,0.91,1.610,169.7 +31.7,0.91,3.040,154.3,31.4,0.91,3.020,154.2 +30.9,0.91,5.810,91.2,30.7,0.91,5.680,93.1 +28.7,0.91,5.310,49.4,28.5,0.91,5.280,50.2 +28.4,0.91,6.400,47.2,28.2,0.91,6.370,47.2 +30.1,0.91,2.570,41.0,29.9,0.91,2.540,41.2 +26.6,0.91,12.510,140.1,26.4,0.91,12.910,139.3 +28.0,0.91,8.310,128.5,28.1,0.91,8.380,129.8 +27.5,0.91,12.050,142.9,27.4,0.91,12.660,142.7 +26.9,0.91,11.310,154.3,26.8,0.91,11.850,154.7 +25.9,0.91,10.600,162.9,25.8,0.91,11.130,162.8 +25.3,0.91,8.280,161.9,25.2,0.91,8.840,162.1 +24.7,0.91,4.760,174.0,24.6,0.91,5.700,173.7 +24.4,0.91,7.920,178.8,24.4,0.91,8.610,180.1 +24.3,0.91,9.850,201.0,24.3,0.91,10.390,202.8 +23.8,0.91,9.540,198.1,23.8,0.91,9.910,199.3 +23.4,0.91,9.970,213.3,23.3,0.91,10.480,214.7 +23.0,0.91,8.970,218.7,22.9,0.91,9.570,219.8 +22.8,0.91,8.060,221.7,22.6,0.91,8.360,221.8 +23.5,0.91,7.190,221.3,23.3,0.91,7.250,221.2 +24.9,0.91,5.590,223.3,24.7,0.91,5.630,223.2 +26.3,0.91,5.110,206.0,26.1,0.91,5.150,205.9 +27.8,0.91,4.600,193.6,27.6,0.91,4.630,193.7 +28.9,0.91,4.280,183.6,28.6,0.91,4.290,183.7 +29.7,0.91,3.860,175.2,29.5,0.91,3.870,175.2 +30.7,0.91,3.890,182.7,30.5,0.91,3.920,180.9 +31.3,0.91,4.010,166.4,31.1,0.91,4.040,166.3 +31.3,0.91,6.180,160.7,31.1,0.91,6.180,160.8 +31.5,0.91,5.100,165.0,31.3,0.91,5.130,164.9 +31.5,0.91,4.920,170.1,31.3,0.91,4.960,170.1 +31.2,0.91,4.940,159.3,31.0,0.91,5.050,159.7 +30.7,0.91,6.830,168.7,30.6,0.91,7.150,169.2 +29.8,0.91,8.760,162.7,29.7,0.91,9.140,163.0 +29.6,0.91,10.340,177.1,29.5,0.91,11.040,178.0 +28.7,0.91,11.100,192.5,28.7,0.91,11.820,193.9 +28.0,0.91,11.410,206.2,28.0,0.91,12.280,207.6 +27.2,0.91,11.570,205.6,27.1,0.91,12.420,206.6 +26.5,0.91,12.520,208.5,26.4,0.91,13.420,209.0 +26.0,0.91,12.470,209.2,26.0,0.91,13.260,209.6 +25.6,0.91,13.000,208.7,25.6,0.91,13.840,209.1 +25.2,0.91,12.650,212.3,25.2,0.91,13.470,213.0 +24.6,0.91,13.290,212.4,24.5,0.91,14.160,213.1 +23.9,0.91,11.960,217.6,23.8,0.91,12.460,217.6 +24.4,0.91,10.010,219.6,24.3,0.91,10.140,219.7 +25.9,0.91,8.470,221.2,25.7,0.91,8.550,221.3 +27.3,0.91,6.860,226.6,27.1,0.91,6.930,226.7 +28.6,0.91,4.850,226.1,28.4,0.91,4.890,226.3 +29.8,0.91,3.240,212.0,29.6,0.91,3.250,212.2 +30.7,0.91,3.810,194.7,30.5,0.91,3.830,194.8 +31.4,0.91,2.900,181.0,31.2,0.91,2.910,181.3 +32.1,0.91,3.190,180.2,31.9,0.91,3.190,180.1 +32.4,0.91,3.010,160.9,32.2,0.91,3.020,161.4 +32.6,0.91,4.150,202.3,32.4,0.91,4.090,201.7 +32.7,0.91,3.140,177.4,32.5,0.91,3.160,178.5 +32.7,0.91,3.630,165.7,32.5,0.91,3.570,167.5 +32.2,0.91,3.730,178.9,32.0,0.91,3.730,179.9 +31.8,0.91,2.250,84.6,31.7,0.91,2.250,85.3 +26.1,0.91,8.310,56.6,25.9,0.91,8.900,58.0 +25.0,0.91,8.080,65.3,24.8,0.91,8.640,66.2 +24.2,0.91,7.490,50.7,23.9,0.91,7.860,52.9 +22.9,0.91,7.830,41.1,22.7,0.91,8.050,42.6 +22.2,0.91,8.920,57.8,22.1,0.91,9.280,58.3 +21.6,0.91,8.340,56.4,21.4,0.91,8.690,57.4 +21.2,0.91,7.810,63.4,21.1,0.91,8.200,65.2 +21.1,0.91,6.430,80.8,21.0,0.91,7.140,82.9 +20.9,0.91,7.200,41.5,20.8,0.91,7.350,44.3 +20.8,0.91,6.500,45.2,20.7,0.91,6.870,45.4 +21.1,0.91,6.630,48.6,20.9,0.91,6.650,48.8 +21.9,0.91,5.670,50.7,21.7,0.91,5.670,51.0 +24.3,0.91,4.870,56.1,24.1,0.91,4.910,56.3 +25.9,0.91,4.810,58.9,25.7,0.91,4.850,59.0 +26.9,0.91,5.090,35.6,26.7,0.91,5.100,35.9 +28.1,0.91,4.320,38.0,27.9,0.91,4.320,38.1 +28.7,0.91,4.710,45.3,28.4,0.91,4.720,45.4 +29.3,0.91,4.340,44.2,29.1,0.91,4.330,44.4 +30.0,0.91,3.210,50.5,29.8,0.91,3.210,50.6 +30.4,0.91,3.890,59.5,30.1,0.91,3.900,59.1 +30.3,0.91,4.380,53.4,30.1,0.91,4.420,53.6 +27.5,0.91,7.900,53.4,27.3,0.91,8.160,53.3 +27.0,0.91,7.080,106.0,26.9,0.91,7.360,104.6 +26.5,0.91,6.680,84.2,26.3,0.91,6.960,85.3 +25.9,0.91,6.540,83.5,25.7,0.91,6.900,84.8 +24.9,0.91,5.760,93.0,24.8,0.91,6.110,93.8 +23.6,0.91,4.610,80.7,23.4,0.91,4.860,84.0 +22.7,0.91,8.020,123.1,22.6,0.91,8.420,123.7 +22.9,0.91,4.940,133.2,22.8,0.91,5.360,134.4 +20.8,0.91,5.410,355.1,20.7,0.91,5.770,353.0 +20.9,0.91,7.090,136.4,20.7,0.91,7.420,138.5 +20.8,0.91,5.130,160.7,20.6,0.91,5.430,159.9 +20.9,0.91,4.820,181.9,20.8,0.91,5.240,182.8 +20.8,0.91,3.180,175.1,20.7,0.91,3.350,176.3 +21.8,0.91,2.450,149.6,21.6,0.91,2.490,150.2 +23.6,0.91,2.780,201.7,23.4,0.91,2.780,201.8 +25.1,0.91,1.530,303.4,24.9,0.91,1.550,303.8 +26.3,0.91,1.820,3.2,26.0,0.91,1.810,1.2 +27.1,0.91,2.950,23.2,26.9,0.91,2.930,22.3 +28.4,0.91,3.540,12.1,28.2,0.91,3.530,11.7 +29.1,0.91,3.160,37.0,28.9,0.91,3.120,35.5 +29.9,0.91,3.220,53.0,29.7,0.91,3.200,52.4 +30.3,0.91,3.870,44.6,30.1,0.91,3.820,45.0 +29.8,0.91,4.740,75.1,29.6,0.91,4.740,74.8 +29.2,0.91,2.380,78.9,29.1,0.91,2.420,78.7 +24.7,0.91,1.550,278.1,24.6,0.91,1.170,293.7 +24.3,0.91,4.590,110.9,24.1,0.91,4.560,114.3 +25.5,0.91,8.070,131.4,25.4,0.91,8.540,131.6 +25.2,0.91,9.260,156.2,25.1,0.91,9.710,156.4 +25.0,0.91,7.830,167.8,25.0,0.91,8.610,164.9 +23.3,0.91,8.820,194.1,23.2,0.91,9.180,192.4 +23.3,0.91,10.220,188.9,23.2,0.91,10.780,187.8 +23.0,0.91,9.600,209.4,22.9,0.91,9.970,208.2 +23.4,0.91,8.770,198.4,23.4,0.91,9.060,195.8 +22.9,0.91,5.800,190.4,22.9,0.91,6.060,186.8 +16.9,0.91,15.700,54.7,16.7,0.91,16.270,53.6 +16.8,0.91,10.230,93.6,16.6,0.91,10.740,93.6 +16.9,0.91,6.720,88.4,16.7,0.91,6.920,89.3 +19.1,0.91,4.480,98.9,18.9,0.91,4.570,99.5 +18.6,0.91,8.330,87.7,18.5,0.91,8.460,87.6 +22.4,0.91,5.670,131.1,22.2,0.91,5.750,130.3 +25.2,0.91,5.260,121.4,24.9,0.91,5.310,121.4 +25.5,0.91,4.460,119.9,25.3,0.91,4.480,120.2 +27.0,0.91,1.950,120.3,26.8,0.91,1.950,120.3 +28.2,0.91,2.340,67.9,27.9,0.91,2.310,69.4 +29.1,0.91,3.260,49.0,28.9,0.91,3.220,49.7 +29.5,0.91,2.720,30.6,29.2,0.91,2.700,32.0 +29.7,0.91,3.280,73.5,29.5,0.91,3.290,73.0 +29.0,0.91,7.370,85.9,28.8,0.91,7.440,85.7 +28.2,0.91,7.570,82.1,28.0,0.91,7.880,82.4 +26.9,0.91,8.360,81.0,26.8,0.91,8.830,81.3 +26.1,0.91,8.220,89.7,26.0,0.91,8.780,89.6 +25.8,0.91,7.810,88.6,25.7,0.91,8.110,88.5 +25.4,0.91,8.650,96.1,25.3,0.91,8.990,96.3 +24.7,0.91,8.930,114.3,24.7,0.91,9.590,113.9 +24.1,0.91,9.790,118.1,24.1,0.91,10.180,118.3 +23.8,0.91,9.350,119.9,23.8,0.91,9.770,119.5 +23.3,0.91,10.160,129.4,23.3,0.91,10.570,129.8 +23.0,0.91,8.850,138.5,23.0,0.91,8.920,138.7 +22.6,0.91,6.860,138.3,22.6,0.91,6.380,139.2 +22.2,0.91,6.360,140.8,22.1,0.91,5.840,140.4 +21.7,0.91,5.630,141.8,22.0,0.91,5.410,141.9 +21.5,0.91,4.580,145.1,21.4,0.91,4.610,145.2 +23.1,0.91,3.890,129.8,22.9,0.91,3.890,130.0 +24.5,0.91,4.020,131.2,24.3,0.91,4.030,131.4 +25.6,0.91,4.090,130.6,25.4,0.91,4.100,130.9 +26.9,0.91,4.360,136.8,26.7,0.91,4.390,137.3 +28.0,0.91,4.220,118.1,27.8,0.91,4.220,118.3 +28.8,0.91,4.740,129.7,28.5,0.91,4.770,129.8 +29.3,0.91,5.430,123.7,29.1,0.91,5.480,124.0 +29.7,0.91,5.520,123.9,29.4,0.91,5.560,124.3 +29.8,0.91,5.290,128.3,29.5,0.91,5.340,128.5 +29.5,0.91,6.810,123.0,29.3,0.91,6.880,123.5 +28.9,0.91,7.810,126.2,28.7,0.91,8.060,126.4 +27.7,0.91,8.970,124.2,27.5,0.91,9.520,124.5 +26.6,0.91,9.690,128.3,26.4,0.91,10.280,128.2 +25.7,0.91,10.220,129.5,25.6,0.91,10.930,129.3 +25.1,0.91,11.040,132.6,25.0,0.91,11.760,132.4 +24.7,0.91,10.550,142.8,24.6,0.91,11.300,142.3 +24.2,0.91,11.620,143.0,24.1,0.91,12.410,143.1 +23.8,0.91,11.390,149.2,23.8,0.91,12.130,149.4 +22.9,0.91,12.330,155.2,22.9,0.91,13.090,155.2 +22.3,0.91,6.530,195.0,22.2,0.91,7.250,191.7 +21.5,0.91,10.570,142.3,21.4,0.91,10.840,143.1 +21.8,0.91,10.500,175.4,22.0,0.91,10.750,175.4 +22.5,0.91,10.420,179.8,22.8,0.91,11.020,179.3 +22.5,0.91,7.320,179.5,22.4,0.91,7.420,179.6 +24.0,0.91,5.570,172.1,23.9,0.91,5.630,172.3 +25.3,0.91,5.970,175.9,25.1,0.91,6.020,176.1 +26.5,0.91,5.320,163.4,26.3,0.91,5.350,163.6 +27.8,0.91,4.750,159.1,27.5,0.91,4.780,159.3 +29.0,0.91,4.900,157.6,28.8,0.91,4.940,157.7 +29.8,0.91,5.690,151.2,29.6,0.91,5.740,151.4 +30.4,0.91,5.900,146.3,30.1,0.91,5.960,146.5 +30.7,0.91,6.970,145.7,30.4,0.91,7.050,146.0 +30.6,0.91,7.510,136.9,30.4,0.91,7.590,137.4 +30.3,0.91,7.990,137.8,30.1,0.91,8.100,138.0 +29.7,0.91,8.520,144.7,29.5,0.91,8.860,144.9 +28.6,0.91,10.520,144.3,28.4,0.91,11.100,144.2 +27.8,0.91,11.090,142.8,27.7,0.91,11.740,142.9 +27.1,0.91,11.740,153.6,26.9,0.91,12.420,153.3 +26.4,0.91,12.660,155.6,26.3,0.91,13.360,155.7 +25.9,0.91,12.630,161.7,25.8,0.91,13.260,161.6 +25.5,0.91,12.740,166.3,25.5,0.91,13.390,166.3 +25.2,0.91,13.380,168.3,25.2,0.91,14.030,168.7 +24.7,0.91,12.980,178.5,24.8,0.91,13.630,179.5 +24.2,0.91,11.970,177.6,24.2,0.91,12.650,178.6 +23.9,0.91,11.700,176.7,23.9,0.91,12.270,178.0 +23.3,0.91,10.790,171.0,23.3,0.91,11.350,172.5 +23.3,0.91,11.210,170.5,23.4,0.91,11.670,171.5 +23.8,0.91,8.590,171.4,23.7,0.91,8.750,171.5 +25.4,0.91,8.380,174.4,25.2,0.91,8.490,174.5 +26.6,0.91,7.700,179.2,26.4,0.91,7.790,179.3 +27.6,0.91,7.490,178.8,27.4,0.91,7.560,178.8 +28.5,0.91,6.950,175.8,28.3,0.91,6.970,175.8 +29.4,0.91,6.620,172.8,29.2,0.91,6.630,172.7 +30.4,0.91,6.390,158.2,30.2,0.91,6.440,158.6 +30.9,0.91,6.010,150.0,30.7,0.91,6.050,150.3 +31.2,0.91,7.130,141.7,30.9,0.91,7.190,142.0 +31.3,0.91,6.640,151.1,31.0,0.91,6.710,151.2 +31.1,0.91,7.000,142.7,30.9,0.91,7.100,143.1 +30.4,0.91,8.810,137.4,30.2,0.91,9.110,137.9 +29.7,0.91,9.680,142.8,29.6,0.91,10.150,142.8 +28.9,0.91,10.120,143.8,28.8,0.91,10.550,143.9 +28.1,0.91,10.870,148.5,27.9,0.91,11.560,148.5 +27.5,0.91,12.600,160.1,27.4,0.91,13.110,159.9 +26.9,0.91,5.190,224.1,26.7,0.91,5.280,217.9 +25.1,0.91,7.130,243.5,25.2,0.91,7.200,238.8 +22.8,0.91,5.590,167.4,22.6,0.91,5.980,168.4 +23.1,0.91,3.380,117.1,23.1,0.91,3.450,127.3 +23.7,0.91,9.720,179.8,23.9,0.91,9.800,180.2 +23.9,0.91,9.710,179.8,24.0,0.91,10.080,180.9 +24.0,0.91,10.390,185.5,24.1,0.91,10.710,186.1 +23.6,0.91,10.960,182.4,23.6,0.91,11.330,182.5 +23.9,0.91,9.980,183.4,23.7,0.91,10.100,183.5 +25.4,0.91,9.410,191.7,25.2,0.91,9.490,191.8 +26.6,0.91,8.330,192.1,26.4,0.91,8.390,192.2 +27.5,0.91,7.780,184.1,27.3,0.91,7.840,184.1 +28.6,0.91,5.790,181.8,28.3,0.91,5.850,181.5 +29.0,0.91,5.080,165.4,28.8,0.91,5.100,165.5 +29.9,0.91,5.090,154.3,29.7,0.91,5.140,154.3 +30.3,0.91,5.270,136.8,30.1,0.91,5.320,137.0 +30.6,0.91,5.390,130.4,30.4,0.91,5.420,130.6 +30.5,0.91,5.720,127.8,30.3,0.91,5.760,128.0 +30.2,0.91,6.770,131.4,30.0,0.91,6.830,131.5 +29.5,0.91,8.410,137.3,29.3,0.91,8.700,137.5 +28.5,0.91,10.400,144.6,28.4,0.91,10.960,144.6 +27.9,0.91,11.320,145.1,27.8,0.91,11.950,145.1 +27.2,0.91,12.530,151.3,27.2,0.91,13.260,151.0 +26.9,0.91,12.980,153.6,26.9,0.91,13.590,153.6 +26.9,0.91,12.420,153.8,26.9,0.91,12.760,154.2 +25.3,0.91,12.440,162.2,25.5,0.91,12.770,162.2 +23.3,0.91,12.180,181.2,23.3,0.91,12.690,182.1 +22.7,0.91,11.240,186.1,22.7,0.91,11.630,187.2 +22.6,0.91,10.780,187.3,22.6,0.91,11.170,187.3 +22.6,0.91,9.620,186.3,22.7,0.91,9.940,186.5 +21.8,0.91,9.750,189.4,21.9,0.91,10.020,190.9 +21.7,0.91,9.790,188.8,21.8,0.91,9.960,190.9 +21.9,0.91,7.370,191.2,21.8,0.91,7.590,192.1 +23.6,0.91,6.140,193.4,23.4,0.91,6.180,193.4 +25.8,0.91,4.550,164.7,25.6,0.91,4.580,164.3 +26.8,0.91,3.360,131.9,26.6,0.91,3.370,131.8 +27.7,0.91,3.340,120.2,27.4,0.91,3.360,120.2 +28.4,0.91,3.560,120.5,28.2,0.91,3.610,120.4 +29.1,0.91,2.100,88.5,28.9,0.91,2.090,89.8 +29.7,0.91,5.070,136.6,29.4,0.91,5.070,136.8 +29.6,0.91,3.970,107.7,29.4,0.91,3.990,108.6 +29.9,0.91,2.850,152.4,29.7,0.91,2.900,152.1 +29.9,0.91,5.530,132.9,29.6,0.91,5.600,133.2 +27.7,0.91,10.200,162.1,27.5,0.91,10.350,162.1 +26.5,0.91,8.670,155.4,26.4,0.91,8.920,155.6 +26.1,0.91,9.890,160.1,25.9,0.91,10.240,160.1 +25.8,0.91,8.900,164.1,25.7,0.91,9.250,164.5 +24.8,0.91,10.320,168.8,24.6,0.91,10.730,168.8 +24.2,0.91,9.750,180.0,24.0,0.91,10.140,181.0 +24.1,0.91,10.480,189.5,24.0,0.91,10.890,190.9 +23.5,0.91,10.870,186.9,23.4,0.91,11.210,188.1 +23.0,0.91,10.180,203.2,22.9,0.91,10.610,204.6 +22.8,0.91,10.600,208.8,22.7,0.91,11.070,209.4 +22.4,0.91,9.630,203.5,22.3,0.91,10.150,204.3 +22.1,0.91,9.040,191.8,22.0,0.91,9.480,192.8 +21.5,0.91,7.210,185.7,21.4,0.91,7.640,186.1 +22.5,0.91,6.500,196.2,22.3,0.91,6.540,196.4 +23.9,0.91,6.140,186.2,23.7,0.91,6.190,186.3 +25.5,0.91,5.570,188.7,25.3,0.91,5.630,188.7 +26.8,0.91,5.550,183.0,26.6,0.91,5.600,182.7 +28.1,0.91,5.400,173.4,27.9,0.91,5.450,174.1 +28.9,0.91,5.850,168.6,28.7,0.91,5.890,168.8 +29.6,0.91,6.070,172.7,29.4,0.91,6.110,172.5 +30.3,0.91,5.030,182.2,30.1,0.91,5.070,180.8 +30.7,0.91,5.120,191.8,30.5,0.91,5.130,190.0 +30.8,0.91,4.610,157.6,30.6,0.91,4.670,157.7 +30.7,0.91,5.620,154.7,30.5,0.91,5.680,155.1 +30.4,0.91,6.760,144.9,30.2,0.91,6.920,145.4 +29.7,0.91,7.520,149.0,29.6,0.91,7.930,148.5 +27.2,0.91,11.600,171.5,27.0,0.91,12.050,171.5 +25.6,0.91,10.490,181.5,25.4,0.91,10.880,181.5 +25.2,0.91,9.270,184.9,25.1,0.91,9.660,185.3 +24.9,0.91,10.140,188.2,24.8,0.91,10.590,189.0 +24.3,0.91,10.230,197.4,24.2,0.91,10.680,198.3 +24.6,0.91,9.750,199.1,24.6,0.91,10.320,199.0 +23.9,0.91,7.950,194.5,24.0,0.91,8.470,196.6 +24.0,0.91,7.130,194.3,24.1,0.91,7.380,194.0 +24.0,0.91,7.410,197.9,24.1,0.91,7.530,197.7 +24.0,0.91,6.970,191.5,24.1,0.91,6.990,191.9 +23.8,0.91,6.280,184.1,24.0,0.91,6.480,184.7 +24.2,0.91,4.870,201.4,24.1,0.91,4.940,201.8 +25.7,0.91,4.280,209.7,25.5,0.91,4.310,210.0 +27.0,0.91,3.680,187.7,26.8,0.91,3.710,187.6 +28.0,0.91,3.740,188.9,27.8,0.91,3.750,188.6 +28.9,0.91,3.860,173.5,28.7,0.91,3.880,173.1 +29.8,0.91,4.060,147.6,29.5,0.91,4.080,147.8 +30.4,0.91,4.690,146.3,30.2,0.91,4.730,146.3 +31.0,0.91,5.960,131.3,30.8,0.91,6.000,131.6 +31.0,0.91,7.460,115.3,30.8,0.91,7.470,115.7 +31.0,0.91,8.010,134.2,30.8,0.91,8.020,134.2 +30.5,0.91,3.160,177.1,30.3,0.91,3.190,171.3 +29.3,0.91,5.690,99.5,29.2,0.91,5.970,102.1 +28.5,0.91,5.560,216.2,28.3,0.91,5.670,215.5 +27.8,0.91,4.500,215.2,27.7,0.91,4.640,218.1 +26.4,0.91,7.350,193.2,26.4,0.91,7.460,194.6 +26.3,0.91,4.690,220.3,26.3,0.91,4.400,218.7 +26.0,0.91,3.580,205.7,25.9,0.91,3.600,201.1 +25.7,0.91,3.350,200.7,25.7,0.91,3.490,196.1 +25.7,0.91,3.750,181.7,25.7,0.91,4.000,181.0 +25.6,0.91,4.410,199.1,25.6,0.91,4.550,199.8 +25.1,0.91,5.420,199.5,25.1,0.91,5.590,199.3 +24.4,0.91,5.600,209.1,24.4,0.91,5.710,210.7 +24.9,0.91,4.900,208.3,25.0,0.91,5.040,206.5 +24.9,0.91,5.070,207.6,25.0,0.91,5.200,206.5 +25.2,0.91,3.940,205.7,25.1,0.91,4.080,205.8 +26.4,0.91,4.110,198.0,26.2,0.91,4.130,197.9 +27.4,0.91,3.670,183.0,27.2,0.91,3.680,182.8 +28.2,0.91,4.040,169.9,28.0,0.91,4.080,169.5 +29.2,0.91,4.390,148.4,29.0,0.91,4.410,148.5 +30.0,0.91,4.930,144.7,29.8,0.91,4.980,144.7 +30.7,0.91,5.260,150.7,30.4,0.91,5.330,150.5 +28.7,0.91,13.870,102.6,28.6,0.91,13.610,103.4 +31.1,0.91,7.760,120.6,30.8,0.91,7.830,120.7 +28.4,0.91,6.120,65.9,28.2,0.91,6.180,66.5 +30.7,0.91,8.020,103.5,30.5,0.91,8.090,103.7 +29.3,0.91,6.950,77.0,29.1,0.91,7.120,78.1 +30.1,0.91,7.310,87.3,29.9,0.91,7.730,87.2 +29.7,0.91,7.370,120.4,29.5,0.91,8.390,117.9 +28.8,0.91,11.000,120.0,28.8,0.91,11.950,120.4 +28.7,0.91,10.450,120.9,28.8,0.91,11.150,121.2 +27.7,0.91,11.180,148.3,27.7,0.91,12.130,150.9 +27.5,0.91,10.990,166.4,27.4,0.91,11.700,167.3 +26.6,0.91,10.580,158.7,26.5,0.91,11.170,159.5 +26.1,0.91,10.290,160.4,26.0,0.91,10.800,161.6 +25.5,0.91,10.260,163.1,25.5,0.91,10.520,164.5 +24.9,0.91,10.600,161.9,25.0,0.91,10.980,162.9 +24.5,0.91,10.370,164.5,24.6,0.91,10.690,165.8 +24.1,0.91,7.800,169.0,24.1,0.91,8.060,169.9 +24.8,0.91,5.710,170.1,24.6,0.91,5.780,170.2 +26.4,0.91,3.590,167.3,26.2,0.91,3.610,167.2 +27.5,0.91,3.310,144.2,27.3,0.91,3.340,144.0 +28.4,0.91,4.370,120.6,28.2,0.91,4.400,120.5 +29.2,0.91,5.160,106.2,29.0,0.91,5.200,106.2 +29.8,0.91,5.310,111.6,29.6,0.91,5.350,111.5 +30.2,0.91,5.760,88.9,30.0,0.91,5.800,89.5 +30.7,0.91,6.440,104.5,30.4,0.91,6.540,105.1 +31.1,0.91,6.910,113.3,30.8,0.91,7.000,113.1 +30.9,0.91,7.790,104.8,30.7,0.91,7.910,104.9 +30.3,0.91,9.050,108.6,30.1,0.91,9.190,108.6 +29.6,0.91,9.230,113.6,29.4,0.91,9.650,114.1 +28.7,0.91,9.000,113.0,28.6,0.91,9.520,113.8 +28.1,0.91,9.480,118.1,28.0,0.91,10.130,118.1 +27.4,0.91,9.760,123.2,27.4,0.91,10.530,123.3 +26.8,0.91,9.540,127.9,26.7,0.91,10.310,128.4 +26.0,0.91,10.300,133.5,25.9,0.91,11.180,133.9 +25.3,0.91,10.360,138.3,25.2,0.91,11.160,138.5 +24.7,0.91,10.150,141.8,24.6,0.91,10.850,142.1 +24.2,0.91,10.350,147.2,24.1,0.91,11.030,148.3 +23.3,0.91,10.270,161.0,23.2,0.91,10.780,162.2 +22.9,0.91,9.260,159.9,22.7,0.91,9.640,159.8 +22.6,0.91,8.140,153.3,22.6,0.91,8.210,153.8 +22.2,0.91,7.830,152.7,22.3,0.91,8.270,153.2 +22.7,0.91,6.240,149.1,22.5,0.91,6.310,149.2 +23.6,0.91,5.710,142.7,23.4,0.91,5.770,142.6 +24.7,0.91,5.230,132.7,24.5,0.91,5.280,132.8 +25.8,0.91,5.380,116.4,25.6,0.91,5.450,116.2 +26.7,0.91,6.230,112.4,26.5,0.91,6.300,112.4 +27.4,0.91,6.130,113.2,27.2,0.91,6.210,113.0 +27.8,0.91,6.870,130.0,27.6,0.91,6.910,129.4 +28.7,0.91,5.250,104.9,28.4,0.91,5.310,105.3 +27.7,0.91,5.390,129.2,27.6,0.91,5.600,128.4 +28.8,0.91,6.840,110.3,28.6,0.91,6.960,110.4 +28.6,0.91,8.710,106.9,28.4,0.91,8.850,107.0 +28.1,0.91,7.460,117.5,27.9,0.91,7.810,117.6 +27.2,0.91,8.890,112.9,27.1,0.91,9.470,113.1 +26.5,0.91,8.400,117.4,26.4,0.91,8.940,117.9 +25.9,0.91,9.030,123.1,25.9,0.91,9.600,123.6 +25.5,0.91,9.170,133.6,25.5,0.91,9.920,134.4 +23.9,0.91,9.830,151.1,23.7,0.91,10.390,152.9 +23.2,0.91,8.280,171.0,23.0,0.91,8.900,171.4 +22.7,0.91,9.600,170.4,22.6,0.91,9.830,170.8 +22.4,0.91,8.120,167.3,22.3,0.91,8.190,168.5 +21.7,0.91,7.710,167.7,21.7,0.91,7.670,168.7 +21.2,0.91,7.390,174.9,21.1,0.91,7.450,176.7 +20.7,0.91,7.150,178.4,20.7,0.91,7.390,180.1 +20.5,0.91,5.540,179.0,20.4,0.91,5.830,179.9 +21.3,0.91,4.580,179.5,21.1,0.91,4.600,179.6 +22.6,0.91,3.140,182.6,22.4,0.91,3.150,182.7 +23.7,0.91,3.120,172.2,23.5,0.91,3.130,172.2 +24.0,0.91,3.960,161.8,23.9,0.91,3.910,164.7 +25.5,0.91,4.100,171.9,25.3,0.91,4.100,171.6 +24.6,0.91,6.130,170.1,24.4,0.91,6.170,169.7 +26.1,0.91,5.270,153.1,25.9,0.91,5.290,154.2 +23.6,0.91,10.670,181.3,23.4,0.91,10.690,181.2 +24.8,0.91,9.180,175.4,24.6,0.91,9.250,175.6 +25.1,0.91,7.950,180.2,24.9,0.91,8.020,180.6 +24.9,0.91,8.520,182.0,24.7,0.91,8.560,182.0 +24.3,0.91,7.740,177.8,24.1,0.91,7.860,178.0 +24.3,0.91,8.740,181.2,24.1,0.91,9.040,181.8 +24.3,0.91,8.000,194.1,24.2,0.91,8.400,194.0 +24.1,0.91,8.340,186.3,24.0,0.91,8.790,186.5 +22.5,0.91,10.000,164.7,22.4,0.91,10.670,165.0 +22.3,0.91,10.140,173.5,22.2,0.91,10.620,174.3 +22.4,0.91,10.220,188.6,22.2,0.91,10.590,189.0 +21.7,0.91,10.920,198.2,21.6,0.91,11.510,199.1 +21.3,0.91,10.570,195.9,21.2,0.91,11.100,196.8 +20.9,0.91,11.800,200.9,20.8,0.91,12.480,201.6 +20.8,0.91,12.180,205.0,20.8,0.91,12.920,205.2 +20.6,0.91,11.330,206.2,20.5,0.91,12.030,206.4 +20.3,0.91,10.820,209.8,20.3,0.91,11.450,210.1 +21.2,0.91,8.870,207.0,21.0,0.91,8.990,207.2 +22.7,0.91,8.740,208.4,22.5,0.91,8.840,208.5 +24.2,0.91,7.660,205.7,24.0,0.91,7.740,205.8 +25.7,0.91,7.400,203.4,25.4,0.91,7.480,203.5 +27.1,0.91,7.090,199.3,26.8,0.91,7.170,199.4 +28.3,0.91,6.850,194.3,28.0,0.91,6.920,194.5 +29.2,0.91,7.550,191.3,29.0,0.91,7.630,191.4 +29.8,0.91,6.870,190.4,29.6,0.91,6.950,190.5 +30.0,0.91,7.030,186.3,29.8,0.91,7.100,186.5 +30.2,0.91,6.810,196.9,30.0,0.91,6.880,196.5 +30.2,0.91,5.390,194.1,30.0,0.91,5.480,193.9 +30.1,0.91,5.600,169.1,29.9,0.91,5.700,172.9 +29.8,0.91,8.160,160.0,29.7,0.91,8.070,161.1 +29.5,0.91,9.430,163.7,29.3,0.91,9.550,164.9 +29.1,0.91,9.400,173.6,29.0,0.91,9.580,174.6 +28.5,0.91,8.590,184.6,28.4,0.91,8.620,185.2 +27.4,0.91,7.960,180.8,27.4,0.91,8.040,182.5 +27.0,0.91,6.100,192.9,27.0,0.91,6.080,194.8 +26.3,0.91,6.790,213.2,26.2,0.91,6.980,213.1 +25.6,0.91,7.280,213.5,25.5,0.91,7.570,214.6 +25.1,0.91,7.730,213.4,25.0,0.91,8.070,213.5 +24.5,0.91,8.050,214.0,24.5,0.91,8.390,215.0 +23.8,0.91,8.820,206.1,23.8,0.91,9.250,207.1 +23.2,0.91,8.960,207.1,23.1,0.91,9.440,208.3 +23.7,0.91,7.610,211.9,23.5,0.91,7.730,212.3 +25.1,0.91,6.950,209.3,24.9,0.91,7.010,209.4 +26.5,0.91,6.050,204.8,26.3,0.91,6.110,204.7 +27.6,0.91,6.020,194.9,27.4,0.91,6.080,195.1 +28.6,0.91,5.480,191.4,28.4,0.91,5.520,191.5 +29.5,0.91,5.690,191.3,29.2,0.91,5.710,191.3 +30.4,0.91,5.380,182.8,30.1,0.91,5.420,183.0 +30.9,0.91,4.760,195.5,30.7,0.91,4.790,195.3 +31.2,0.91,4.330,186.5,31.0,0.91,4.360,186.3 +31.5,0.91,4.910,192.5,31.3,0.91,4.950,192.3 +31.4,0.91,3.710,179.6,31.2,0.91,3.740,179.3 +31.0,0.91,4.340,180.6,30.8,0.91,4.460,182.3 +30.9,0.91,5.570,179.2,30.7,0.91,5.610,178.5 +30.4,0.91,8.470,167.6,30.3,0.91,8.670,167.8 +30.0,0.91,9.380,173.2,29.9,0.91,9.650,174.3 +29.0,0.91,8.350,180.9,29.0,0.91,8.610,184.0 +28.8,0.91,10.150,185.9,28.7,0.91,10.350,186.0 +28.1,0.91,9.080,199.2,28.1,0.91,9.400,201.6 +27.6,0.91,8.840,213.6,27.6,0.91,9.170,215.5 +27.0,0.91,10.320,224.6,27.1,0.91,10.970,225.9 +26.7,0.91,9.780,230.0,26.8,0.91,10.260,229.7 +26.2,0.91,11.090,229.5,26.3,0.91,11.470,229.3 +26.0,0.91,11.100,235.2,26.2,0.91,11.200,234.4 +25.6,0.91,10.380,236.4,25.9,0.91,10.700,236.0 +25.6,0.91,6.610,242.0,25.6,0.91,7.540,241.7 +27.4,0.91,5.320,241.6,27.2,0.91,5.380,241.2 +28.6,0.91,4.910,219.5,28.4,0.91,4.950,219.5 +29.7,0.91,3.990,209.2,29.4,0.91,4.020,209.2 +30.5,0.91,4.140,204.5,30.2,0.91,4.150,204.5 +31.2,0.91,4.140,191.4,31.0,0.91,4.160,191.7 +31.9,0.91,3.550,183.9,31.6,0.91,3.560,184.3 +32.2,0.91,4.220,171.0,32.0,0.91,4.220,171.3 +32.8,0.91,3.750,194.7,32.5,0.91,3.780,194.5 +32.6,0.91,4.370,193.5,32.5,0.91,4.330,193.4 +32.6,0.91,4.540,163.1,32.4,0.91,4.540,163.9 +32.3,0.91,3.950,191.5,32.1,0.91,4.010,191.6 +32.0,0.91,5.760,188.0,31.8,0.91,5.960,188.2 +31.8,0.91,5.400,186.8,31.6,0.91,5.240,187.6 +31.1,0.91,6.680,168.8,31.1,0.91,7.140,167.8 +30.4,0.91,6.950,172.8,30.5,0.91,7.420,173.2 +29.9,0.91,6.280,205.5,29.9,0.91,6.310,208.4 +29.4,0.91,6.660,231.2,29.3,0.91,6.940,233.0 +28.9,0.91,7.130,235.1,28.8,0.91,7.550,236.4 +27.9,0.91,8.280,231.5,27.9,0.91,8.820,233.5 +27.8,0.91,6.470,232.3,27.8,0.91,6.980,234.8 +27.1,0.91,10.520,238.3,27.3,0.91,11.040,239.6 +26.4,0.91,9.690,238.9,26.6,0.91,10.270,240.6 +26.4,0.91,9.270,245.4,26.7,0.91,9.730,246.3 +26.4,0.91,7.010,243.1,26.4,0.91,7.610,244.4 +28.6,0.91,5.760,245.2,28.4,0.91,5.800,245.4 +30.0,0.91,4.910,242.0,29.8,0.91,4.940,242.0 +30.7,0.91,3.740,213.2,30.5,0.91,3.750,213.2 +31.5,0.91,3.270,195.4,31.3,0.91,3.290,195.3 +32.1,0.91,3.790,178.5,31.9,0.91,3.790,178.6 +32.6,0.91,3.680,188.0,32.4,0.91,3.700,187.8 +33.0,0.91,4.040,188.2,32.8,0.91,4.020,188.3 +33.1,0.90,4.430,178.2,32.9,0.90,4.430,178.3 +33.5,0.90,4.040,188.5,33.2,0.90,4.070,187.0 +33.4,0.90,3.410,201.6,33.1,0.90,3.430,201.1 +33.0,0.90,4.280,180.9,32.8,0.90,4.300,181.6 +32.6,0.90,6.470,169.9,32.5,0.90,6.530,170.2 +32.0,0.90,8.530,173.4,31.9,0.90,8.650,173.2 +31.8,0.90,9.390,173.0,31.7,0.90,9.450,173.4 +31.5,0.90,8.740,178.1,31.4,0.90,8.740,178.1 +30.4,0.90,8.810,210.9,30.4,0.90,8.780,212.3 +29.4,0.90,10.510,230.4,29.4,0.90,11.270,231.3 +28.6,0.90,11.810,228.8,28.6,0.90,12.560,229.2 +27.6,0.91,11.730,228.7,27.6,0.91,12.520,229.1 +26.8,0.91,11.960,230.0,26.8,0.91,12.790,230.4 +26.3,0.91,12.070,230.0,26.4,0.91,12.870,230.8 +25.8,0.91,11.860,233.3,25.9,0.91,12.600,234.5 +25.3,0.91,9.950,232.1,25.3,0.91,10.430,233.6 +25.8,0.91,6.950,248.1,25.7,0.91,7.400,248.2 +27.3,0.91,6.180,245.5,27.2,0.91,6.230,245.8 +29.4,0.91,4.300,267.0,29.2,0.91,4.350,267.3 +30.9,0.91,3.100,310.7,30.7,0.91,3.110,310.4 +31.9,0.91,2.270,337.9,31.6,0.91,2.270,338.0 +32.8,0.91,2.450,39.0,32.5,0.91,2.430,38.6 +33.3,0.91,1.600,37.5,33.1,0.91,1.640,38.1 +33.5,0.90,2.690,46.5,33.3,0.90,2.650,46.2 +32.8,0.90,5.860,206.6,32.6,0.90,5.860,205.7 +33.5,0.90,4.990,173.3,33.3,0.90,5.030,173.3 +32.9,0.90,1.610,144.6,32.7,0.90,1.640,143.7 +32.8,0.90,2.690,196.8,32.6,0.90,2.760,195.5 +31.3,0.90,10.680,173.2,31.2,0.90,10.960,174.6 +30.9,0.91,9.370,191.4,30.8,0.91,9.830,192.0 +29.5,0.91,8.500,180.7,29.4,0.91,8.600,182.1 +29.2,0.91,9.840,184.8,29.2,0.91,10.200,186.1 +29.4,0.91,9.270,196.9,29.3,0.91,9.310,197.6 +28.6,0.91,7.810,195.0,28.8,0.91,7.820,199.3 +28.4,0.91,6.580,207.8,28.4,0.91,6.350,209.5 +27.1,0.91,4.510,239.1,27.2,0.91,4.620,235.7 +27.7,0.91,3.690,242.2,27.7,0.91,3.730,246.4 +27.9,0.91,4.410,257.3,27.9,0.91,4.410,261.3 +25.3,0.91,4.190,304.3,25.4,0.91,4.010,305.3 +24.7,0.91,5.220,8.1,24.9,0.91,4.800,12.4 +24.6,0.91,3.390,350.3,24.4,0.91,3.420,351.8 +25.9,0.91,3.290,6.0,25.7,0.91,3.270,5.7 +27.2,0.91,3.230,28.9,27.0,0.91,3.220,29.3 +28.0,0.91,3.210,30.2,27.8,0.91,3.220,31.1 +27.2,0.91,6.680,17.2,27.1,0.91,6.660,17.7 +30.0,0.91,4.480,64.0,29.8,0.91,4.510,63.9 +30.1,0.91,7.530,56.1,29.9,0.91,7.570,56.1 +30.7,0.91,6.370,58.8,30.4,0.91,6.430,58.7 +29.2,0.91,4.750,20.0,29.1,0.91,4.790,24.2 +27.4,0.91,3.170,144.8,27.2,0.91,3.250,145.3 +28.0,0.91,4.460,120.7,28.0,0.91,4.820,122.5 +27.9,0.91,5.170,130.3,27.8,0.91,5.500,129.8 +25.8,0.91,6.390,175.8,25.8,0.91,6.630,173.0 +26.8,0.91,6.370,159.2,26.9,0.91,6.670,156.6 +26.9,0.91,5.420,159.7,27.1,0.91,5.760,154.6 +27.3,0.91,4.770,143.1,27.3,0.91,4.950,141.0 +27.1,0.91,5.080,146.8,27.3,0.91,5.400,144.0 +26.8,0.91,4.390,144.7,26.9,0.91,4.660,140.6 +26.0,0.91,6.430,155.5,26.1,0.91,6.450,156.8 +26.0,0.91,5.830,169.4,26.1,0.91,5.810,168.8 +26.3,0.91,5.630,172.9,26.3,0.91,5.490,171.5 +26.7,0.91,4.690,173.6,26.6,0.91,4.630,172.1 +26.7,0.91,3.320,169.6,26.7,0.91,3.180,166.2 +22.9,0.91,2.620,52.4,23.5,0.91,2.280,57.7 +22.7,0.91,2.470,25.7,23.0,0.91,2.890,27.2 +24.4,0.91,2.770,21.0,24.2,0.91,2.780,19.8 +27.0,0.91,2.120,67.9,26.8,0.91,2.110,69.5 +28.1,0.91,2.660,43.0,27.9,0.91,2.650,44.0 +29.1,0.91,3.260,35.3,28.9,0.91,3.250,36.4 +30.0,0.91,3.930,39.0,29.8,0.91,3.950,39.7 +30.9,0.91,4.400,59.8,30.7,0.91,4.430,60.1 +31.2,0.91,4.440,47.8,31.0,0.91,4.450,48.4 +31.5,0.91,5.560,67.7,31.3,0.91,5.530,67.5 +31.6,0.91,6.480,61.9,31.4,0.91,6.570,61.9 +31.2,0.91,5.420,61.3,31.0,0.91,5.480,61.3 +30.5,0.91,5.830,55.3,30.4,0.91,5.900,55.9 +30.5,0.91,5.390,63.9,30.4,0.91,5.720,67.0 +29.8,0.91,9.350,87.5,29.7,0.91,9.610,87.2 +29.0,0.91,7.410,104.0,29.0,0.91,7.980,105.7 +28.8,0.91,5.860,122.0,28.7,0.91,6.200,123.8 +28.2,0.91,5.800,112.1,28.0,0.91,5.510,112.8 +27.2,0.91,7.410,98.3,27.0,0.91,8.200,100.0 +26.7,0.91,8.000,97.1,26.8,0.91,8.870,99.6 +26.0,0.91,7.010,92.3,25.9,0.91,7.660,93.5 +25.2,0.91,6.620,90.6,25.2,0.91,7.330,93.2 +24.6,0.91,4.550,99.2,24.7,0.91,4.610,102.0 +24.9,0.91,3.140,74.9,25.4,0.91,3.320,81.0 +23.9,0.91,3.200,69.8,24.4,0.91,3.200,76.0 +23.5,0.91,2.910,63.3,24.0,0.91,3.240,68.6 +24.6,0.91,2.920,47.1,24.5,0.91,2.860,48.5 +26.9,0.91,2.400,45.7,26.7,0.91,2.360,46.3 +28.6,0.91,3.430,46.4,28.4,0.91,3.420,46.7 +29.6,0.91,4.280,42.4,29.3,0.91,4.300,42.6 +30.5,0.91,4.790,45.3,30.3,0.91,4.810,45.6 +31.2,0.91,5.650,45.7,31.0,0.91,5.680,46.0 +31.6,0.91,5.890,48.6,31.3,0.91,5.920,48.8 +31.8,0.91,5.760,66.4,31.6,0.91,5.820,66.2 +31.9,0.91,6.070,48.5,31.7,0.91,6.140,49.1 +31.9,0.91,4.820,72.3,31.7,0.91,4.910,73.4 +31.5,0.91,5.980,69.2,31.4,0.91,6.140,71.1 +30.5,0.91,6.660,73.0,30.5,0.91,7.320,73.4 +29.8,0.91,7.380,85.2,29.7,0.91,8.060,84.8 +29.2,0.91,7.000,88.9,29.3,0.91,7.570,89.9 +28.9,0.91,5.870,106.3,29.0,0.91,6.170,110.1 +28.6,0.91,9.100,124.0,28.6,0.91,9.180,125.7 +27.3,0.91,9.930,134.5,27.5,0.91,10.310,136.8 +27.5,0.91,8.850,159.1,27.5,0.91,8.750,163.2 +27.4,0.91,7.720,205.0,27.6,0.91,7.710,208.9 +26.6,0.91,7.360,209.5,26.8,0.91,7.420,211.2 +26.1,0.91,7.410,211.2,26.1,0.91,7.600,210.5 +25.8,0.91,7.520,218.8,25.9,0.91,7.620,221.0 +25.9,0.91,7.020,225.7,25.8,0.91,7.190,226.6 +25.3,0.91,5.480,218.3,25.2,0.91,6.120,220.2 +26.5,0.91,4.770,225.3,26.3,0.91,4.790,225.5 +27.8,0.91,2.750,223.0,27.6,0.91,2.760,222.7 +28.7,0.91,2.560,190.8,28.5,0.91,2.560,190.6 +29.5,0.91,2.680,164.2,29.2,0.91,2.680,163.9 +30.1,0.91,3.250,148.7,29.9,0.91,3.250,148.8 +30.2,0.91,3.120,90.2,30.0,0.91,3.110,91.7 +30.9,0.91,3.370,121.7,30.7,0.91,3.380,122.0 +30.4,0.91,7.000,40.2,30.2,0.91,6.900,41.8 +28.4,0.91,11.960,151.1,28.2,0.91,12.040,151.1 +28.7,0.91,9.270,147.1,28.5,0.91,9.390,147.2 +28.5,0.91,7.250,153.8,28.4,0.91,7.500,153.6 +28.7,0.91,7.600,165.7,28.6,0.91,7.990,165.2 +28.5,0.91,6.150,154.8,28.5,0.91,6.520,150.6 +27.2,0.91,5.400,206.6,27.3,0.91,5.250,187.5 +27.7,0.91,5.650,175.6,27.6,0.91,6.040,176.8 +26.7,0.91,7.340,197.2,26.5,0.91,7.460,198.3 +25.8,0.91,8.910,209.1,25.8,0.91,9.180,208.0 +25.6,0.91,8.710,220.5,25.6,0.91,8.930,218.8 +25.5,0.91,8.180,208.7,25.5,0.91,8.390,204.8 +24.4,0.91,7.520,203.5,24.4,0.91,7.750,200.6 +24.2,0.91,6.900,202.8,24.2,0.91,7.150,203.2 +24.3,0.91,6.100,206.6,24.4,0.91,6.210,208.4 +24.1,0.91,5.510,211.4,24.2,0.91,5.530,213.4 +24.3,0.91,3.840,213.7,24.4,0.91,4.330,216.8 +25.8,0.91,3.400,221.1,25.6,0.91,3.410,221.3 +27.2,0.91,2.630,198.3,26.9,0.91,2.640,197.8 +28.1,0.91,2.940,169.4,27.9,0.91,2.950,169.2 +29.0,0.91,3.460,149.9,28.8,0.91,3.470,149.9 +29.6,0.91,4.000,158.9,29.4,0.91,4.020,158.6 +30.4,0.91,4.160,156.1,30.1,0.91,4.190,156.1 +30.8,0.91,4.410,139.0,30.6,0.91,4.410,139.3 +30.8,0.91,3.360,152.6,30.6,0.91,3.360,152.6 +30.7,0.91,6.430,144.0,30.5,0.91,6.420,144.7 +30.8,0.91,4.790,179.4,30.6,0.91,4.830,179.0 +30.6,0.91,5.230,172.0,30.4,0.91,5.310,170.8 +30.0,0.91,6.990,153.5,29.9,0.91,7.210,153.5 +29.6,0.91,9.740,150.0,29.5,0.91,9.920,150.3 +29.3,0.91,10.190,151.4,29.2,0.91,10.340,151.8 +27.0,0.91,10.630,186.0,26.9,0.91,10.700,191.5 +26.6,0.91,8.470,210.2,26.6,0.91,8.860,208.6 +26.7,0.91,7.370,203.8,26.7,0.91,7.570,201.5 +26.5,0.91,7.320,195.1,26.5,0.91,7.550,195.3 +25.7,0.91,8.310,186.1,25.8,0.91,8.400,187.0 +25.1,0.91,8.120,197.4,25.3,0.91,7.980,200.7 +24.4,0.91,9.440,195.6,24.6,0.91,9.560,198.0 +24.3,0.91,8.600,209.4,24.3,0.91,8.730,212.2 +24.2,0.91,8.200,215.8,24.4,0.91,8.510,218.0 +24.4,0.91,5.870,218.8,24.4,0.91,6.620,220.1 +26.1,0.91,5.270,214.9,25.9,0.91,5.310,215.1 +27.5,0.91,4.070,199.6,27.3,0.91,4.100,199.4 +28.5,0.91,3.790,169.9,28.3,0.91,3.800,169.7 +29.2,0.91,3.670,146.2,28.9,0.91,3.690,146.1 +29.9,0.91,3.930,139.7,29.7,0.91,3.970,139.6 +30.3,0.91,4.840,139.7,30.1,0.91,4.870,139.7 +30.6,0.91,3.070,154.0,30.3,0.91,3.090,153.1 +30.7,0.91,4.660,117.1,30.5,0.91,4.690,117.2 +30.9,0.91,5.180,152.8,30.7,0.91,5.210,152.2 +30.7,0.91,5.890,123.0,30.5,0.91,5.960,123.3 +30.3,0.91,7.680,129.8,30.1,0.91,7.710,128.9 +29.6,0.91,8.810,127.7,29.5,0.91,9.140,127.6 +28.5,0.91,10.240,122.1,28.5,0.91,11.050,122.0 +28.1,0.91,9.810,129.8,28.1,0.91,10.370,131.2 +26.5,0.91,8.920,184.7,26.4,0.91,9.310,186.5 +25.6,0.91,9.560,179.1,25.5,0.91,9.820,179.6 +24.9,0.91,9.000,184.8,24.9,0.91,9.120,186.1 +24.3,0.91,9.470,178.2,24.4,0.91,9.670,180.0 +23.4,0.91,9.320,178.2,23.5,0.91,9.490,180.0 +22.9,0.91,9.160,182.2,23.0,0.91,9.270,183.4 +22.4,0.91,7.920,196.6,22.6,0.91,7.800,200.5 +22.6,0.91,5.890,196.8,22.8,0.91,5.700,199.4 +22.3,0.91,5.420,197.0,22.4,0.91,5.260,198.4 +22.1,0.91,5.310,191.6,22.1,0.91,5.510,192.2 +23.9,0.91,3.540,195.0,23.7,0.91,3.520,195.0 +25.4,0.91,2.810,171.8,25.2,0.91,2.800,171.3 +26.6,0.91,2.930,134.4,26.4,0.91,2.960,134.1 +27.6,0.91,3.470,129.6,27.4,0.91,3.490,129.8 +28.4,0.91,4.940,130.4,28.1,0.91,4.970,130.5 +28.9,0.91,4.970,131.3,28.7,0.91,5.020,131.5 +29.4,0.91,5.230,134.8,29.1,0.91,5.290,134.9 +29.4,0.91,5.890,138.2,29.2,0.91,5.930,138.3 +29.5,0.91,6.520,139.7,29.3,0.91,6.580,139.6 +28.5,0.91,9.300,162.6,28.3,0.91,9.350,162.5 +25.6,0.91,6.280,154.7,25.5,0.91,6.660,150.4 +26.4,0.91,7.800,167.9,26.5,0.91,8.130,165.9 +22.9,0.91,9.670,194.4,22.7,0.91,10.030,194.6 +23.3,0.91,9.010,183.8,23.4,0.91,9.520,183.1 +22.7,0.91,10.350,187.8,22.6,0.91,10.790,187.6 +22.3,0.91,10.390,190.6,22.2,0.91,10.880,190.7 +21.9,0.91,8.740,192.4,21.9,0.91,9.220,192.8 +21.9,0.91,9.050,186.3,21.8,0.91,9.560,186.3 +21.6,0.91,8.680,181.0,21.6,0.91,9.120,181.4 +21.3,0.91,8.900,182.8,21.3,0.91,9.340,183.4 +20.9,0.91,8.620,182.7,20.8,0.91,8.900,184.3 +20.3,0.91,8.190,187.2,20.3,0.91,8.340,189.4 +19.7,0.91,8.100,188.1,19.7,0.91,8.320,189.2 +20.3,0.91,6.900,190.7,20.1,0.91,6.970,190.9 +21.4,0.91,6.100,185.6,21.2,0.91,6.150,185.7 +22.5,0.91,6.080,180.9,22.3,0.91,6.140,180.9 +23.8,0.91,5.990,174.8,23.6,0.91,6.040,174.9 +25.0,0.91,6.350,171.1,24.8,0.91,6.400,171.1 +26.1,0.91,6.490,173.4,25.8,0.91,6.560,173.3 +27.0,0.91,6.760,163.9,26.7,0.91,6.840,164.0 +27.6,0.91,7.430,160.8,27.4,0.91,7.500,160.8 +28.1,0.91,7.480,164.2,27.9,0.91,7.550,163.8 +27.5,0.91,5.270,119.8,27.4,0.91,5.400,122.0 +27.7,0.91,9.100,148.7,27.5,0.91,9.240,148.8 +22.2,0.91,13.290,146.0,22.0,0.91,13.780,146.2 +23.2,0.91,11.600,152.3,23.3,0.91,12.320,152.7 +22.8,0.91,11.760,161.5,22.6,0.91,12.150,161.6 +22.4,0.91,12.130,172.1,22.2,0.91,12.570,171.9 +21.9,0.91,11.430,171.8,21.7,0.91,11.890,171.7 +21.3,0.91,11.570,171.7,21.1,0.91,12.110,171.4 +20.8,0.91,10.250,171.4,20.7,0.91,10.770,171.0 +20.4,0.91,10.350,162.9,20.3,0.91,11.060,162.6 +20.0,0.91,9.860,176.2,19.9,0.91,10.380,176.4 +19.4,0.91,9.700,177.0,19.3,0.91,10.200,177.2 +19.2,0.91,9.680,174.0,19.1,0.91,10.100,174.5 +19.2,0.91,9.090,173.7,19.1,0.91,9.520,174.2 +19.2,0.91,8.410,171.2,19.1,0.91,8.990,172.0 +19.6,0.91,7.030,169.7,19.5,0.91,7.170,170.2 +21.1,0.91,7.320,172.1,20.9,0.91,7.430,172.2 +22.3,0.91,6.650,163.5,22.1,0.91,6.730,163.5 +23.3,0.91,7.330,161.2,23.1,0.91,7.400,161.0 +23.8,0.91,7.770,151.6,23.6,0.91,7.830,151.8 +25.2,0.91,7.660,152.7,24.9,0.91,7.750,152.6 +26.6,0.91,8.330,154.6,26.3,0.91,8.440,154.7 +26.8,0.91,8.400,143.0,26.6,0.91,8.480,143.3 +27.5,0.91,8.490,157.3,27.3,0.91,8.600,157.1 +27.6,0.91,8.850,146.1,27.4,0.91,9.010,146.3 +27.2,0.91,9.630,141.7,27.0,0.91,9.780,141.8 +23.8,0.91,10.620,136.3,23.7,0.91,11.420,136.7 +24.1,0.91,11.780,152.0,23.9,0.91,12.130,151.9 +23.9,0.91,10.180,153.9,23.8,0.91,10.620,153.9 +23.5,0.91,10.330,163.3,23.3,0.91,10.740,163.2 +22.5,0.91,10.430,163.3,22.3,0.91,10.940,163.2 +21.8,0.91,9.410,165.3,21.7,0.91,9.890,165.1 +21.3,0.91,8.640,172.1,21.2,0.91,9.110,172.2 +20.7,0.91,8.660,170.0,20.5,0.91,9.100,169.8 +20.4,0.91,8.130,170.1,20.2,0.91,8.380,170.2 +20.1,0.91,8.310,173.2,19.9,0.91,8.780,173.5 +19.9,0.91,8.140,166.8,19.7,0.91,8.600,167.3 +19.7,0.91,7.400,167.5,19.5,0.91,7.850,167.5 +19.5,0.91,7.390,166.7,19.4,0.91,7.740,167.0 +20.2,0.91,6.310,161.3,20.0,0.91,6.380,161.5 +20.3,0.91,5.620,167.1,20.2,0.91,5.690,167.2 +22.5,0.91,5.670,161.9,22.3,0.91,5.750,162.3 +24.1,0.91,5.550,156.7,23.9,0.91,5.620,156.6 +25.1,0.91,5.940,151.8,24.9,0.91,6.020,151.8 +25.8,0.91,6.370,142.5,25.6,0.91,6.440,143.0 +26.1,0.91,7.840,158.6,25.9,0.91,7.830,158.5 +26.5,0.91,4.280,129.5,26.3,0.91,4.560,130.7 +27.1,0.91,7.300,123.5,26.9,0.91,7.370,123.8 +27.2,0.91,6.380,146.0,27.0,0.91,6.460,146.0 +27.3,0.91,7.010,140.8,27.1,0.91,7.140,141.0 +27.0,0.91,7.320,148.0,26.9,0.91,7.620,149.2 +25.5,0.91,8.380,160.0,25.4,0.91,8.900,160.1 +25.2,0.91,7.940,173.0,25.1,0.91,8.490,173.1 +24.6,0.91,7.050,183.6,24.4,0.91,7.430,184.7 +23.9,0.91,7.680,180.0,23.7,0.91,8.120,181.6 +23.3,0.91,7.630,187.5,23.1,0.91,8.410,188.0 +22.7,0.91,9.710,180.2,22.5,0.91,10.390,181.1 +22.3,0.91,7.740,185.9,22.2,0.91,8.340,189.7 +22.0,0.91,7.890,189.9,22.0,0.91,8.260,191.8 +21.7,0.91,8.110,188.7,21.7,0.91,8.260,190.8 +21.7,0.91,7.190,197.8,21.7,0.91,7.290,198.8 +21.4,0.91,6.430,189.6,21.4,0.91,6.420,190.5 +21.5,0.91,5.210,191.9,21.6,0.91,5.440,191.8 +21.4,0.91,4.550,184.0,21.4,0.91,5.050,184.3 +22.9,0.91,3.420,182.6,22.7,0.91,3.440,182.2 +24.2,0.91,3.600,151.2,24.0,0.91,3.650,150.9 +25.4,0.91,4.000,138.0,25.2,0.91,4.050,137.9 +26.5,0.91,5.320,127.0,26.3,0.91,5.370,127.1 +27.1,0.91,4.610,126.4,26.9,0.91,4.660,126.2 +28.1,0.91,5.820,118.7,27.9,0.91,5.880,118.9 +28.6,0.91,5.720,110.9,28.4,0.91,5.770,111.3 +29.0,0.91,5.780,122.8,28.8,0.91,5.850,122.9 +29.0,0.91,6.180,131.3,28.8,0.91,6.270,131.3 +28.8,0.91,5.730,131.8,28.6,0.91,5.810,131.8 +28.4,0.91,6.070,134.9,28.3,0.91,6.210,135.5 +28.1,0.91,7.620,145.9,28.0,0.91,7.810,146.5 +26.3,0.91,8.670,127.9,26.1,0.91,8.780,127.8 +26.1,0.91,8.420,127.2,26.1,0.91,8.510,128.0 +25.9,0.91,8.740,137.9,26.1,0.91,8.640,138.3 +26.4,0.91,8.170,150.1,26.5,0.91,7.900,152.1 +26.4,0.91,6.350,162.4,26.4,0.91,6.100,162.1 +25.6,0.91,5.840,170.8,25.5,0.91,5.930,171.9 +25.2,0.91,5.830,180.7,25.2,0.91,5.920,182.4 +24.9,0.91,6.560,195.0,25.0,0.91,6.740,196.1 +25.0,0.91,6.650,206.0,25.1,0.91,6.720,205.9 +25.1,0.91,6.250,211.1,25.1,0.91,6.320,210.0 +24.9,0.91,5.380,210.9,25.0,0.91,5.320,209.0 +23.6,0.91,2.410,209.8,23.8,0.91,3.020,209.0 +25.3,0.91,1.750,204.9,25.1,0.91,1.800,204.9 +26.4,0.91,2.000,178.8,26.2,0.91,2.000,178.6 +27.2,0.91,2.670,140.8,27.0,0.91,2.700,140.5 +27.8,0.91,3.270,127.2,27.6,0.91,3.300,127.0 +28.5,0.91,4.170,131.3,28.3,0.91,4.210,130.7 +29.0,0.91,4.920,119.5,28.8,0.91,4.980,119.6 +29.1,0.91,5.430,147.9,28.9,0.91,5.500,146.8 +29.8,0.91,5.880,130.7,29.6,0.91,5.970,130.8 +29.7,0.91,5.390,126.1,29.5,0.91,5.470,126.6 +29.4,0.91,6.060,130.0,29.2,0.91,6.100,130.2 +29.2,0.91,5.710,145.9,29.0,0.91,5.700,145.3 +28.7,0.91,6.200,133.9,28.6,0.91,6.410,135.5 +28.7,0.91,7.110,143.5,28.6,0.91,7.070,143.6 +27.7,0.91,7.180,126.6,27.6,0.91,7.480,129.3 +26.1,0.91,12.210,121.7,26.3,0.91,12.300,122.7 +25.6,0.91,11.790,118.3,25.8,0.91,12.890,120.2 +23.1,0.91,6.050,71.6,23.0,0.91,6.470,77.7 +22.8,0.91,5.090,85.6,22.8,0.91,5.820,91.6 +23.7,0.91,7.190,131.8,23.9,0.91,7.550,137.4 +23.4,0.91,5.400,128.3,23.5,0.91,5.490,136.4 +23.4,0.91,4.580,145.3,23.6,0.91,4.780,150.3 +23.6,0.91,5.670,168.6,23.8,0.91,5.500,174.1 +24.0,0.91,5.520,186.8,24.3,0.91,5.240,190.6 +23.6,0.91,4.970,185.1,24.1,0.91,5.010,190.7 +25.3,0.91,2.660,204.9,25.1,0.91,2.670,206.4 +26.4,0.91,2.750,195.2,26.2,0.91,2.760,195.2 +27.3,0.91,3.230,165.4,27.1,0.91,3.260,165.2 +27.9,0.91,4.210,160.2,27.7,0.91,4.230,160.1 +28.4,0.91,4.730,159.4,28.2,0.91,4.740,159.2 +29.0,0.91,3.640,154.0,28.8,0.91,3.720,154.0 +29.8,0.91,5.630,156.8,29.6,0.91,5.680,156.9 +27.1,0.91,10.650,181.0,26.9,0.91,10.730,180.8 +28.8,0.91,8.080,176.3,28.6,0.91,8.170,175.8 +28.2,0.91,8.000,193.1,28.0,0.91,8.040,193.0 +26.1,0.91,8.860,140.9,26.0,0.91,9.340,140.7 +25.4,0.91,7.940,126.1,25.4,0.91,8.450,125.8 +26.0,0.91,8.820,125.1,26.1,0.91,9.000,126.4 +24.8,0.91,10.790,134.0,24.7,0.91,11.170,134.5 +24.3,0.91,10.980,143.3,24.3,0.91,11.710,143.1 +24.2,0.91,10.650,154.3,24.2,0.91,11.450,154.3 +24.0,0.91,11.880,161.3,23.9,0.91,12.700,161.6 +23.8,0.91,12.070,172.5,23.7,0.91,12.650,172.8 +23.3,0.91,11.580,176.6,23.3,0.91,12.180,177.2 +22.8,0.91,11.160,179.1,22.7,0.91,11.720,179.8 +22.3,0.91,10.090,184.8,22.3,0.91,10.610,186.0 +21.9,0.91,9.190,189.3,21.9,0.91,9.720,190.7 +21.6,0.91,8.420,194.6,21.5,0.91,8.900,196.4 +21.8,0.91,6.820,195.3,21.6,0.91,6.970,195.8 +22.8,0.91,7.330,191.9,22.6,0.91,7.390,192.0 +24.1,0.91,6.660,185.5,23.9,0.91,6.730,185.5 +25.3,0.91,5.790,179.0,25.1,0.91,5.850,179.1 +26.5,0.91,6.200,173.3,26.3,0.91,6.230,173.2 +27.7,0.91,5.500,163.6,27.4,0.91,5.560,163.4 +28.5,0.91,5.860,152.5,28.3,0.91,5.940,152.4 +29.0,0.91,6.360,154.4,28.8,0.91,6.430,154.3 +29.4,0.91,7.080,158.2,29.1,0.91,7.170,157.9 +29.6,0.91,7.930,136.9,29.4,0.91,8.070,137.2 +29.3,0.91,8.490,142.1,29.1,0.91,8.640,142.1 +28.9,0.91,7.590,134.1,28.7,0.91,8.170,134.2 +28.4,0.91,9.410,145.8,28.3,0.91,9.750,146.0 +27.8,0.91,9.990,141.9,27.7,0.91,10.260,141.8 +27.3,0.91,10.060,145.8,27.2,0.91,10.140,146.5 +25.7,0.91,11.230,159.2,25.5,0.91,11.920,160.8 +24.2,0.91,10.450,172.5,24.1,0.91,11.030,173.2 +23.8,0.91,9.830,181.6,23.7,0.91,10.250,182.7 +23.8,0.91,8.750,186.8,23.7,0.91,9.050,188.5 +23.6,0.91,7.330,175.4,23.5,0.91,7.610,176.3 +23.1,0.91,7.340,171.8,23.0,0.91,7.420,172.6 +22.7,0.91,8.230,170.9,22.7,0.91,8.360,172.3 +22.4,0.91,7.330,171.7,22.4,0.91,7.330,174.9 +22.0,0.91,7.400,187.7,22.0,0.91,7.460,188.7 +22.0,0.91,5.360,188.7,21.9,0.91,5.520,188.1 +23.4,0.91,3.950,180.9,23.2,0.91,3.970,180.9 +24.8,0.91,3.110,173.3,24.5,0.91,3.140,173.2 +26.0,0.91,2.740,142.9,25.8,0.91,2.780,142.7 +27.0,0.91,4.340,120.3,26.8,0.91,4.370,120.4 +27.7,0.91,4.910,121.6,27.4,0.91,4.960,121.4 +28.3,0.91,6.430,123.2,28.1,0.91,6.490,123.3 +28.0,0.91,7.630,155.2,27.8,0.91,7.570,154.8 +28.6,0.91,6.560,154.8,28.4,0.91,6.660,154.8 +28.2,0.91,8.280,139.8,27.9,0.91,8.370,140.0 +28.0,0.91,6.420,133.7,27.8,0.91,6.530,134.0 +25.1,0.91,9.400,147.8,24.9,0.91,9.750,147.4 +23.3,0.91,3.350,340.0,23.2,0.91,2.930,341.3 +20.7,0.91,3.230,20.0,20.5,0.91,3.310,19.9 +20.5,0.91,2.970,14.3,20.5,0.91,2.820,19.6 +20.4,0.91,3.330,16.5,20.2,0.91,3.500,16.6 +19.5,0.91,3.970,42.6,19.5,0.91,4.160,43.5 +19.8,0.91,3.570,32.6,19.6,0.91,3.720,34.0 +19.6,0.91,2.630,38.1,19.4,0.91,2.630,38.8 +20.7,0.91,0.950,167.1,21.1,0.91,1.590,166.6 +20.6,0.91,1.680,123.3,21.0,0.91,2.120,140.6 +21.4,0.91,3.420,158.5,21.6,0.91,3.810,161.2 +21.3,0.91,3.210,177.8,21.6,0.91,3.650,181.9 +21.9,0.91,3.650,175.0,21.9,0.91,3.910,179.1 +22.1,0.91,2.670,209.6,21.9,0.91,2.880,210.6 +23.5,0.91,2.460,196.8,23.3,0.91,2.510,196.6 +24.6,0.91,4.060,177.8,24.4,0.91,4.110,177.9 +25.6,0.91,4.040,181.0,25.4,0.91,4.070,180.6 +26.5,0.91,4.350,161.7,26.3,0.91,4.390,162.0 +27.0,0.91,4.810,168.4,26.8,0.91,4.830,168.5 +27.9,0.91,5.300,165.8,27.7,0.91,5.350,166.0 +28.3,0.91,5.030,178.1,28.1,0.91,5.080,177.7 +28.7,0.91,5.230,167.7,28.5,0.91,5.290,167.6 +28.7,0.91,5.520,164.0,28.5,0.91,5.600,163.9 +28.7,0.91,6.830,152.7,28.5,0.91,6.910,152.8 +23.6,0.91,6.680,178.0,23.4,0.91,6.930,179.2 +23.3,0.91,7.630,162.2,23.1,0.91,7.890,161.8 +23.2,0.91,7.700,161.6,23.0,0.91,8.060,161.8 +23.1,0.91,8.190,160.6,22.9,0.91,8.600,160.5 +23.1,0.91,8.830,177.6,22.9,0.91,9.230,177.6 +22.2,0.91,11.120,172.7,22.0,0.91,11.390,172.8 +21.9,0.91,8.550,167.2,21.7,0.91,8.850,167.4 +21.2,0.91,7.450,181.9,21.0,0.91,7.630,181.9 +21.2,0.91,8.600,184.8,21.1,0.91,9.020,184.7 +21.1,0.91,8.610,180.0,21.1,0.91,9.120,179.9 +20.9,0.91,8.280,176.4,20.8,0.91,8.750,176.7 +20.8,0.91,8.370,176.4,20.9,0.91,8.950,177.4 +21.1,0.91,8.290,179.8,21.0,0.91,8.710,180.6 +21.0,0.91,7.750,175.6,20.8,0.91,7.960,176.1 +21.9,0.91,7.190,179.8,21.7,0.91,7.270,179.8 +23.6,0.91,7.520,182.9,23.4,0.91,7.630,182.8 +24.9,0.91,8.000,181.2,24.6,0.91,8.110,181.0 +26.0,0.91,7.070,179.0,25.8,0.91,7.150,179.1 +27.0,0.91,7.840,191.4,26.8,0.91,7.930,191.0 +28.0,0.91,7.520,190.9,27.7,0.91,7.580,190.4 +28.4,0.91,6.700,194.8,28.2,0.91,6.800,195.1 +28.7,0.91,7.160,186.4,28.5,0.91,7.250,186.6 +28.8,0.91,5.520,168.2,28.6,0.91,5.580,169.1 +24.3,0.91,9.710,121.0,24.1,0.91,9.910,120.9 +25.1,0.91,11.210,149.2,24.9,0.91,11.670,149.2 +24.2,0.91,11.720,159.0,24.1,0.91,12.210,159.2 +24.0,0.91,10.150,158.9,23.9,0.91,10.610,159.2 +23.9,0.91,10.270,166.5,23.7,0.91,10.830,166.1 +23.4,0.91,11.550,169.1,23.3,0.91,12.140,169.6 +22.6,0.91,11.340,172.7,22.5,0.91,11.830,173.0 +22.3,0.91,10.670,180.1,22.2,0.91,11.230,180.8 +22.0,0.91,11.330,185.4,21.9,0.91,11.950,186.0 +21.7,0.91,10.580,188.7,21.6,0.91,11.180,189.2 +21.2,0.91,9.130,183.3,21.1,0.91,9.680,184.0 +20.9,0.91,8.450,185.5,20.8,0.91,8.960,186.3 +20.7,0.91,8.180,187.0,20.6,0.91,8.640,187.7 +20.6,0.91,7.010,190.1,20.5,0.91,7.400,191.0 +20.6,0.91,5.840,184.3,20.5,0.91,6.090,184.6 +21.3,0.91,5.900,185.0,21.1,0.91,5.980,185.4 +21.8,0.91,5.690,191.7,21.6,0.91,5.750,191.8 +22.7,0.91,6.050,196.2,22.4,0.91,6.120,196.3 +23.5,0.91,6.020,191.3,23.3,0.91,6.080,191.3 +24.4,0.91,6.320,190.6,24.2,0.91,6.370,190.7 +25.2,0.91,5.730,181.3,25.0,0.91,5.790,181.3 +26.1,0.91,6.010,173.7,25.9,0.91,6.080,173.8 +25.8,0.90,8.300,169.0,25.6,0.90,8.380,168.9 +23.1,0.90,9.950,157.6,22.9,0.90,10.050,157.6 +22.0,0.91,8.250,156.9,21.8,0.91,8.320,156.9 +21.9,0.91,4.390,151.2,21.7,0.91,4.420,151.4 +21.6,0.91,4.380,143.0,21.4,0.91,4.480,143.5 +21.4,0.91,4.900,149.3,21.3,0.91,5.280,149.6 +21.2,0.91,4.400,153.4,21.0,0.91,4.500,153.7 +21.1,0.91,5.380,151.0,21.1,0.91,5.660,148.7 +20.3,0.91,5.130,151.1,20.1,0.91,5.260,150.7 +19.9,0.91,4.700,157.0,19.7,0.91,4.900,156.8 +20.2,0.91,5.320,158.9,20.1,0.91,5.790,157.2 +19.7,0.91,2.320,119.8,19.6,0.91,3.730,135.2 +19.5,0.91,1.780,37.6,19.3,0.91,1.680,40.1 +19.4,0.91,3.270,30.2,19.2,0.91,3.290,30.6 +18.9,0.91,3.680,47.1,18.8,0.91,3.740,46.5 +19.3,0.91,5.620,34.8,19.2,0.91,5.900,35.4 +18.6,0.91,7.560,34.1,18.5,0.91,8.000,34.6 +18.5,0.91,7.090,19.6,18.4,0.91,7.260,19.5 +18.5,0.91,8.650,36.0,18.4,0.91,8.890,36.7 +18.4,0.91,7.650,45.1,18.3,0.91,7.760,45.3 +18.9,0.91,7.130,49.7,18.7,0.91,7.180,49.8 +19.0,0.91,9.610,28.9,18.8,0.91,9.750,28.9 +19.7,0.91,6.920,40.8,19.5,0.91,7.000,40.8 +19.6,0.91,7.640,34.0,19.4,0.91,7.700,34.1 +19.8,0.91,8.240,32.1,19.6,0.91,8.320,32.1 +18.8,0.91,5.250,65.6,18.6,0.91,5.380,65.4 +18.3,0.91,6.220,64.0,18.1,0.91,6.420,63.9 +18.5,0.91,6.240,36.7,18.3,0.91,6.400,36.6 +17.8,0.91,5.700,25.4,17.7,0.91,6.050,25.8 +17.3,0.91,7.280,15.7,17.1,0.91,7.380,16.1 +17.0,0.91,7.770,12.6,16.9,0.91,7.920,12.7 +16.8,0.91,7.370,16.3,16.6,0.91,7.480,16.4 +16.2,0.91,6.310,17.3,16.1,0.91,6.390,17.6 +16.1,0.91,5.810,14.5,15.9,0.91,5.880,14.7 +16.0,0.91,6.630,18.2,15.8,0.91,6.700,18.0 +15.8,0.91,6.770,19.9,15.6,0.91,6.840,20.0 +15.7,0.91,7.210,25.4,15.5,0.91,7.290,25.6 +15.3,0.91,7.080,24.4,15.2,0.91,7.340,26.2 +15.5,0.91,7.370,29.3,15.3,0.91,7.770,30.5 +15.4,0.91,7.460,29.5,15.3,0.91,7.810,30.1 +15.1,0.91,6.610,37.4,14.9,0.91,6.660,38.0 +15.8,0.91,5.910,39.2,15.6,0.91,5.950,39.4 +16.9,0.91,5.090,35.8,16.7,0.91,5.120,35.8 +18.1,0.91,4.740,38.2,17.9,0.91,4.770,38.3 +19.4,0.91,4.500,37.8,19.2,0.91,4.530,37.8 +20.7,0.91,4.220,41.2,20.4,0.91,4.230,41.2 +21.6,0.91,4.010,41.1,21.4,0.91,4.020,41.3 +22.3,0.91,4.050,44.1,22.1,0.91,4.060,44.1 +22.7,0.91,4.070,46.8,22.5,0.91,4.080,46.8 +22.8,0.91,3.870,52.5,22.6,0.91,3.890,52.5 +22.6,0.91,3.950,60.6,22.4,0.91,3.990,60.7 +22.2,0.91,4.970,68.6,22.0,0.91,4.870,69.1 +21.6,0.91,4.760,79.5,21.4,0.91,4.510,78.4 +21.1,0.91,4.700,100.2,20.9,0.91,4.310,97.7 +20.6,0.91,3.680,113.7,20.5,0.91,3.580,110.5 +20.4,0.91,2.720,113.7,20.4,0.91,2.900,108.3 +20.2,0.91,3.640,121.3,20.2,0.91,3.520,118.8 +19.9,0.91,4.730,144.2,19.8,0.91,4.610,143.0 +19.4,0.91,5.140,147.1,19.4,0.91,5.020,149.0 +19.2,0.91,6.300,158.3,19.2,0.91,6.160,157.2 +19.1,0.91,6.280,158.8,19.0,0.91,6.110,158.5 +18.8,0.91,6.390,162.1,18.8,0.91,6.220,162.2 +18.4,0.91,6.650,165.7,18.5,0.91,6.510,165.2 +18.2,0.91,6.430,170.0,18.3,0.91,6.370,168.8 +18.0,0.91,6.770,170.0,18.1,0.91,6.750,169.2 +18.0,0.91,5.630,174.8,17.9,0.91,5.720,174.2 +19.2,0.91,5.420,172.0,19.0,0.91,5.420,171.9 +20.3,0.91,4.340,170.5,20.1,0.91,4.350,170.3 +21.4,0.91,3.880,167.1,21.2,0.91,3.900,167.0 +22.3,0.91,4.000,161.6,22.1,0.91,4.010,161.6 +23.0,0.90,4.060,160.6,22.8,0.90,4.090,160.6 +23.6,0.90,4.590,163.1,23.4,0.90,4.630,163.1 +23.8,0.90,5.280,165.7,23.6,0.90,5.330,165.6 +23.7,0.90,5.500,166.9,23.5,0.90,5.570,166.8 +23.1,0.90,6.360,162.3,23.0,0.90,6.490,162.7 +22.6,0.90,8.380,162.3,22.4,0.90,8.290,162.3 +22.0,0.90,8.950,160.2,21.9,0.90,8.880,160.2 +21.2,0.90,10.550,155.0,21.2,0.90,10.610,156.0 +20.9,0.90,10.680,156.2,20.9,0.90,10.740,157.2 +20.7,0.90,11.460,158.6,20.7,0.90,11.570,160.0 +19.7,0.90,12.320,158.4,19.9,0.90,12.820,158.9 +19.2,0.90,12.970,159.4,19.4,0.90,13.510,160.0 +18.3,0.90,13.230,162.2,18.6,0.90,14.010,162.2 +17.5,0.90,13.220,163.5,17.8,0.90,14.020,163.3 +17.2,0.90,13.340,169.6,17.5,0.90,14.090,169.8 +16.6,0.90,12.740,173.4,16.9,0.90,13.160,174.8 +17.0,0.90,12.210,182.0,17.4,0.90,12.650,183.0 +16.4,0.90,11.620,185.8,16.9,0.90,11.970,187.5 +16.7,0.90,11.400,188.9,17.4,0.90,12.100,190.4 +17.6,0.90,10.480,190.2,17.6,0.90,11.460,190.9 +19.5,0.90,10.620,188.7,19.4,0.90,10.730,189.0 +21.5,0.90,10.510,190.5,21.3,0.90,10.620,190.7 +22.9,0.90,10.400,193.6,22.7,0.90,10.510,193.7 +24.3,0.90,10.380,193.8,24.1,0.90,10.490,193.9 +25.5,0.90,9.150,199.0,25.3,0.90,9.260,199.2 +26.5,0.90,7.830,207.7,26.2,0.90,7.930,207.9 +27.2,0.90,7.180,210.4,26.9,0.90,7.270,210.6 +27.3,0.90,6.920,207.0,27.1,0.90,7.020,207.3 +27.2,0.90,6.680,187.5,27.0,0.90,6.860,188.2 +26.8,0.90,9.210,179.4,26.6,0.90,9.370,180.0 +26.2,0.90,9.720,179.8,26.2,0.90,10.000,180.8 +25.8,0.90,9.060,185.5,25.8,0.90,9.420,187.5 +25.1,0.90,9.610,194.1,25.1,0.90,9.930,196.3 +23.9,0.90,8.920,190.6,24.1,0.90,8.920,198.6 +23.7,0.90,6.280,205.0,23.9,0.90,5.580,212.9 +23.8,0.90,3.890,229.8,24.2,0.90,3.470,233.9 +23.0,0.90,4.030,255.2,23.3,0.90,3.950,263.9 +25.0,0.90,5.190,316.7,25.2,0.90,4.820,320.9 +24.3,0.90,6.070,329.0,24.4,0.90,5.880,332.0 +23.0,0.91,6.830,328.0,23.3,0.91,6.580,331.9 +18.1,0.91,9.640,341.5,18.1,0.91,10.070,344.4 +17.1,0.91,8.420,349.4,17.5,0.91,8.500,354.6 +16.5,0.91,7.320,347.5,16.9,0.91,7.640,351.9 +17.7,0.91,5.900,355.3,17.6,0.91,5.970,355.9 +19.9,0.91,6.080,5.5,19.7,0.91,6.090,6.0 +21.5,0.91,6.600,17.4,21.4,0.91,6.610,17.4 +23.3,0.91,6.880,23.5,23.0,0.91,6.930,23.7 +24.5,0.91,6.720,36.6,24.3,0.91,6.770,36.6 +25.7,0.91,6.870,45.7,25.5,0.91,6.930,45.8 +26.4,0.91,5.860,48.6,26.2,0.91,5.900,48.7 +26.8,0.91,5.440,48.0,26.6,0.91,5.470,48.1 +26.8,0.91,5.700,48.3,26.6,0.91,5.760,48.6 +26.5,0.91,5.730,63.4,26.3,0.91,5.860,63.5 +25.9,0.91,6.090,71.9,25.8,0.91,6.330,71.8 +25.3,0.91,7.030,71.5,25.3,0.91,7.400,71.6 +24.7,0.91,6.830,78.1,24.7,0.91,7.430,78.6 +25.0,0.91,7.490,92.5,25.1,0.91,7.560,91.4 +24.8,0.91,7.770,98.4,24.9,0.91,7.960,97.6 +24.6,0.91,7.110,104.9,24.8,0.91,7.320,104.4 +25.0,0.91,8.530,119.7,24.9,0.91,8.430,120.7 +25.2,0.91,7.990,124.2,25.1,0.91,7.470,127.3 +24.4,0.91,8.300,135.5,24.3,0.91,8.070,136.8 +23.4,0.91,8.870,146.1,23.5,0.91,8.920,147.0 +23.7,0.91,9.190,151.4,23.8,0.91,9.410,151.0 +23.1,0.91,9.900,155.0,23.3,0.91,10.190,154.7 +22.7,0.91,9.580,155.9,22.9,0.91,9.850,155.5 +21.6,0.91,9.370,165.1,22.2,0.91,9.920,164.8 +22.1,0.91,6.740,176.1,22.1,0.91,7.150,176.1 +23.5,0.91,7.660,181.9,23.4,0.91,7.740,182.0 +24.7,0.91,7.520,188.0,24.5,0.91,7.590,188.2 +26.0,0.90,7.190,194.0,25.8,0.90,7.260,194.2 +27.1,0.90,7.170,205.9,26.9,0.90,7.250,206.1 +27.8,0.90,7.580,197.9,27.6,0.90,7.670,198.2 +28.5,0.90,7.680,199.3,28.3,0.90,7.770,199.5 +28.8,0.90,6.590,195.8,28.6,0.90,6.700,195.7 +29.0,0.90,9.080,186.1,28.8,0.90,9.220,186.3 +28.7,0.90,7.440,202.6,28.6,0.90,7.710,202.6 +28.1,0.90,10.520,183.6,28.0,0.90,10.970,183.4 +27.6,0.90,11.970,184.3,27.6,0.90,12.480,185.0 +27.0,0.90,11.620,190.0,27.1,0.90,12.250,190.9 +26.9,0.90,12.520,196.9,27.0,0.90,13.140,197.2 +26.1,0.90,12.780,198.9,26.3,0.90,13.780,199.4 +25.1,0.90,14.770,198.5,25.2,0.90,16.000,198.6 +24.4,0.90,15.570,196.7,24.6,0.90,16.870,197.2 +23.6,0.90,16.510,195.6,23.7,0.90,17.700,195.8 +22.9,0.90,16.960,197.3,23.1,0.90,18.110,197.6 +22.3,0.90,16.880,198.7,22.5,0.90,18.030,198.9 +21.7,0.90,16.220,196.9,21.9,0.90,17.390,197.4 +21.1,0.90,16.490,196.1,21.3,0.90,17.530,196.7 +20.6,0.90,16.640,197.7,20.8,0.90,17.620,198.3 +20.1,0.90,14.690,196.6,19.9,0.90,14.780,196.7 +21.0,0.90,12.670,195.9,20.8,0.90,12.940,196.0 +22.6,0.90,12.500,191.7,22.4,0.90,12.630,191.9 +24.3,0.90,12.850,188.6,24.1,0.90,12.980,188.7 +25.9,0.90,11.700,186.9,25.7,0.90,11.830,186.9 +27.3,0.90,10.380,184.3,27.1,0.90,10.520,184.3 +28.0,0.90,10.600,174.8,27.8,0.90,10.690,175.2 +28.7,0.90,9.030,172.1,28.5,0.90,9.140,172.8 +28.8,0.90,8.920,176.5,28.6,0.90,9.060,176.0 +28.6,0.90,10.440,164.3,28.4,0.90,10.580,164.5 +28.1,0.90,10.180,163.8,27.9,0.90,10.580,164.2 +27.0,0.90,11.630,155.7,27.0,0.90,12.410,156.2 +26.0,0.90,12.840,153.3,26.0,0.90,13.800,153.3 +25.2,0.90,13.100,156.5,25.2,0.90,14.020,156.6 +24.2,0.90,12.640,161.1,24.2,0.90,13.610,161.7 +23.4,0.90,12.920,167.3,23.4,0.90,13.900,168.3 +22.5,0.90,12.560,176.6,22.6,0.90,13.610,177.3 +21.9,0.90,12.870,181.7,22.0,0.90,14.010,182.1 +21.4,0.90,13.230,182.4,21.5,0.90,14.350,182.7 +20.7,0.90,13.100,176.0,20.7,0.90,14.050,176.3 +19.7,0.90,13.480,178.0,19.7,0.90,14.370,178.5 +19.3,0.90,13.980,181.8,19.3,0.90,14.940,182.3 +18.7,0.90,14.370,181.3,18.7,0.90,15.180,181.8 +18.6,0.90,14.510,180.6,18.6,0.90,15.340,181.2 +19.1,0.90,14.090,180.2,19.0,0.90,15.030,180.4 +20.4,0.90,13.580,182.2,20.3,0.90,13.780,182.3 +21.9,0.90,13.250,182.2,21.8,0.90,13.440,182.3 +23.6,0.90,13.150,180.7,23.4,0.90,13.330,180.7 +25.0,0.90,12.760,181.0,24.8,0.90,12.960,181.0 +26.1,0.90,12.310,181.5,25.8,0.90,12.510,181.5 +26.8,0.90,14.000,180.7,26.6,0.90,14.060,180.8 +27.5,0.90,13.980,180.6,27.3,0.90,14.000,180.7 +28.1,0.90,14.530,180.8,27.9,0.90,14.590,180.9 +28.2,0.90,15.080,177.9,28.0,0.90,15.210,178.0 +27.9,0.90,14.000,176.2,27.7,0.90,14.330,176.1 +27.0,0.90,12.880,173.9,26.9,0.90,13.620,173.8 +26.2,0.90,13.190,174.3,26.1,0.90,13.830,174.7 +25.5,0.90,15.150,173.2,25.4,0.90,15.820,173.3 +24.9,0.90,16.670,175.7,24.8,0.90,17.340,175.6 +24.5,0.90,16.700,179.2,24.3,0.90,17.360,179.2 +23.9,0.90,16.610,178.6,23.8,0.90,17.290,178.5 +23.1,0.90,16.740,178.0,22.9,0.90,17.450,178.0 +22.4,0.90,15.860,179.7,22.2,0.90,16.550,179.8 +21.8,0.90,15.000,181.2,21.7,0.90,15.660,181.5 +21.7,0.90,13.810,185.8,21.6,0.90,14.510,186.0 +21.6,0.90,10.730,198.6,21.4,0.90,11.160,198.2 +21.7,0.91,10.440,187.1,21.6,0.91,10.870,187.7 +21.3,0.91,10.490,193.8,21.3,0.91,10.940,194.8 +21.3,0.91,8.070,204.6,21.1,0.91,8.480,204.6 +16.8,0.91,6.610,334.7,16.6,0.91,7.080,335.7 +17.4,0.91,6.490,349.9,17.2,0.91,6.550,349.6 +17.2,0.91,6.410,344.1,17.0,0.91,6.460,343.9 +17.9,0.91,7.840,356.0,17.7,0.91,7.880,355.9 +18.3,0.91,8.370,5.2,18.1,0.91,8.450,4.9 +17.7,0.91,8.600,6.1,17.5,0.91,8.630,6.5 +17.1,0.91,8.470,16.9,16.9,0.91,8.490,17.0 +16.7,0.91,6.690,32.5,16.5,0.91,6.710,32.1 +17.7,0.91,7.150,29.8,17.5,0.91,7.190,29.7 +18.0,0.91,7.390,32.8,17.8,0.91,7.450,32.7 +17.8,0.91,7.340,28.8,17.6,0.91,7.480,29.4 +17.3,0.91,6.620,40.3,17.2,0.91,6.720,40.5 +17.2,0.91,7.770,33.6,17.0,0.91,7.880,33.9 +16.8,0.91,5.960,49.6,16.6,0.91,6.070,49.7 +16.5,0.91,6.770,39.6,16.3,0.91,6.910,39.8 +16.1,0.91,4.800,47.5,15.9,0.91,4.900,47.1 +14.9,0.91,4.840,49.9,15.0,0.91,5.250,46.2 +14.3,0.91,3.030,58.2,14.3,0.91,3.450,51.8 +14.1,0.91,2.880,60.4,14.2,0.91,3.790,52.7 +14.1,0.91,2.850,42.1,14.2,0.91,3.670,42.2 +14.2,0.91,4.150,30.5,14.3,0.91,4.580,31.6 +14.3,0.91,4.550,27.1,14.2,0.91,5.020,28.9 +14.2,0.91,5.130,19.2,14.2,0.91,5.510,21.1 +14.2,0.91,4.380,8.7,14.2,0.91,5.130,11.4 +15.3,0.91,4.390,17.4,15.1,0.91,4.420,17.5 +16.5,0.91,4.600,17.7,16.3,0.91,4.620,17.5 +17.8,0.91,4.280,17.4,17.6,0.91,4.300,17.0 +19.1,0.91,3.510,12.6,18.9,0.91,3.530,11.7 +20.3,0.91,3.330,356.1,20.1,0.91,3.350,355.3 +21.1,0.91,2.910,349.6,20.9,0.91,2.910,348.8 +21.9,0.91,3.210,327.1,21.7,0.91,3.250,326.6 +22.2,0.91,3.060,320.4,22.0,0.91,3.070,320.4 +22.4,0.91,2.100,332.0,22.2,0.91,2.110,331.6 +22.2,0.91,2.060,337.8,22.0,0.91,2.010,336.9 +21.7,0.91,2.390,52.3,21.5,0.91,2.290,49.9 +21.2,0.91,2.570,78.1,21.1,0.91,2.500,77.5 +20.9,0.91,1.870,104.0,20.9,0.91,1.650,108.7 +20.9,0.91,4.800,157.1,20.9,0.91,4.840,159.3 +20.9,0.91,6.400,178.5,20.9,0.91,6.410,180.6 +20.6,0.91,7.740,187.7,20.6,0.91,7.890,189.0 +19.8,0.91,8.760,188.5,20.1,0.91,8.740,191.4 +19.7,0.91,9.640,195.3,20.0,0.91,9.680,197.6 +20.1,0.91,9.170,201.9,20.3,0.91,9.260,203.8 +20.6,0.91,9.390,206.8,20.9,0.91,9.510,208.8 +20.4,0.91,9.790,215.5,20.8,0.91,10.090,217.5 +20.3,0.90,10.470,210.7,20.7,0.90,10.750,212.6 +19.9,0.90,10.660,211.3,20.4,0.90,10.900,213.7 +20.4,0.90,9.940,220.6,20.9,0.90,10.390,222.6 +19.9,0.90,9.110,211.1,20.2,0.90,9.960,213.3 +20.8,0.90,8.150,199.7,20.7,0.90,8.160,200.6 +22.9,0.90,7.730,200.9,22.7,0.90,7.740,201.6 +24.7,0.90,7.130,207.2,24.5,0.90,7.170,207.7 +25.9,0.90,6.360,206.0,25.7,0.90,6.400,206.4 +27.2,0.90,5.890,202.0,27.0,0.90,5.950,202.4 +27.9,0.90,5.880,198.0,27.7,0.90,5.930,198.4 +28.0,0.90,6.590,189.5,27.8,0.90,6.650,189.9 +28.0,0.90,7.020,182.8,27.8,0.90,7.120,183.2 +27.7,0.90,7.010,175.1,27.5,0.90,7.350,174.9 +27.3,0.90,9.760,169.5,27.2,0.90,9.920,170.4 +26.4,0.90,11.140,158.2,26.5,0.90,11.180,160.5 +25.1,0.90,13.560,155.2,25.4,0.90,14.090,156.6 +24.0,0.90,14.450,157.1,24.3,0.90,15.050,158.8 +23.6,0.90,14.390,163.3,23.8,0.90,14.930,164.7 +22.8,0.90,15.260,170.5,22.9,0.90,15.970,171.4 +22.2,0.90,14.480,172.1,22.4,0.90,15.020,173.2 +22.4,0.90,12.910,188.7,22.7,0.90,13.260,191.2 +21.9,0.90,13.740,197.8,22.2,0.90,14.540,199.4 +21.6,0.90,14.430,198.7,21.8,0.90,15.250,199.9 +21.2,0.90,14.300,196.5,21.4,0.90,14.960,197.4 +20.6,0.90,14.290,198.6,20.7,0.90,14.950,199.6 +20.0,0.90,14.310,195.6,20.2,0.90,14.920,196.6 +19.7,0.90,13.000,193.1,20.0,0.90,13.750,194.4 +20.3,0.90,11.630,191.4,20.2,0.90,11.970,191.8 +21.9,0.90,10.980,193.8,21.7,0.90,11.080,194.0 +23.6,0.90,10.190,185.2,23.4,0.90,10.260,185.4 +24.8,0.90,10.110,183.4,24.6,0.90,10.230,183.4 +26.4,0.90,8.650,181.0,26.2,0.90,8.770,181.1 +27.5,0.90,8.290,176.7,27.3,0.90,8.380,176.9 +28.0,0.90,8.710,171.5,27.8,0.90,8.780,171.7 +28.5,0.90,7.880,170.1,28.3,0.90,7.990,170.3 +28.8,0.90,7.400,173.9,28.6,0.90,7.540,173.8 +28.0,0.90,8.460,150.5,27.9,0.90,8.830,151.0 +27.0,0.90,10.740,142.0,27.0,0.90,11.320,142.7 +25.8,0.90,12.810,140.6,25.8,0.90,13.640,141.0 +25.3,0.90,13.970,144.9,25.3,0.90,14.780,145.1 +24.1,0.90,15.120,150.7,24.1,0.90,15.890,151.2 +23.6,0.90,15.680,164.9,23.6,0.90,16.400,165.7 +22.9,0.90,14.820,172.5,22.9,0.90,15.470,173.4 +22.2,0.90,14.700,176.1,22.2,0.90,15.430,177.0 +21.7,0.90,14.820,179.6,21.7,0.90,15.570,180.4 +21.4,0.90,15.120,183.4,21.5,0.90,15.930,183.9 +20.9,0.90,15.000,179.5,20.9,0.90,15.730,180.2 +20.3,0.91,14.590,183.2,20.4,0.91,15.320,184.4 +19.6,0.91,13.910,182.4,19.6,0.91,14.500,183.5 +19.1,0.91,14.020,183.8,19.0,0.91,14.620,184.5 +19.4,0.91,13.820,187.3,19.3,0.91,14.490,187.6 +20.5,0.91,11.760,183.0,20.3,0.91,11.920,183.4 +22.0,0.91,11.870,188.0,21.8,0.91,11.960,188.2 +23.4,0.91,11.930,185.3,23.2,0.91,12.050,185.4 +24.8,0.91,11.650,182.8,24.5,0.91,11.770,182.9 +26.3,0.91,10.770,184.6,26.1,0.91,10.910,184.8 +27.7,0.90,9.990,187.5,27.5,0.90,10.120,187.7 +28.5,0.90,9.460,186.0,28.3,0.90,9.570,185.8 +29.0,0.90,8.460,184.7,28.8,0.90,8.600,185.4 +29.1,0.90,8.150,182.9,28.9,0.90,8.270,183.5 +28.8,0.90,9.000,172.0,28.7,0.90,9.240,172.2 +28.1,0.90,9.540,164.6,28.1,0.90,10.140,165.4 +27.1,0.90,11.670,159.3,27.0,0.90,12.310,160.0 +25.7,0.90,13.780,161.4,25.7,0.90,14.650,162.1 +25.0,0.90,13.840,171.4,24.9,0.90,14.600,172.1 +24.2,0.90,14.940,183.0,24.2,0.90,15.780,183.5 +23.7,0.90,15.200,192.6,23.7,0.90,16.220,193.2 +22.8,0.90,14.580,189.3,22.8,0.90,15.410,190.3 +21.9,0.90,15.100,183.7,22.0,0.90,15.800,184.7 +21.8,0.90,15.700,185.7,21.9,0.90,16.440,186.7 +21.1,0.90,15.530,185.6,21.1,0.90,16.160,186.5 +20.9,0.90,16.180,189.0,20.9,0.90,16.770,189.7 +20.5,0.90,16.110,190.3,20.5,0.90,16.690,191.2 +20.1,0.90,16.790,192.5,20.1,0.90,17.380,193.1 +19.4,0.90,15.700,192.8,19.4,0.90,16.370,193.1 +20.2,0.90,14.600,192.4,20.1,0.90,14.830,192.7 +21.6,0.90,15.060,190.2,21.4,0.90,15.210,190.3 +23.4,0.90,14.450,192.8,23.2,0.90,14.590,192.8 +25.1,0.90,14.330,192.7,24.8,0.90,14.470,192.7 +26.5,0.90,14.150,190.3,26.3,0.90,14.300,190.3 +27.6,0.90,13.580,188.2,27.4,0.90,13.720,188.4 +28.5,0.90,13.290,185.9,28.3,0.90,13.430,186.1 +29.1,0.90,12.790,188.4,28.9,0.90,12.940,188.4 +29.2,0.90,12.350,183.4,28.9,0.90,12.550,183.4 +28.6,0.90,12.340,176.3,28.4,0.90,12.870,176.1 +27.9,0.90,13.960,171.5,27.9,0.90,14.640,171.4 +26.7,0.90,14.940,175.6,26.6,0.90,15.680,175.9 +25.6,0.90,16.160,179.4,25.6,0.90,16.980,179.8 +24.2,0.90,16.250,182.4,24.2,0.90,17.030,182.7 +23.4,0.90,17.370,184.3,23.3,0.90,18.140,184.7 +22.7,0.90,18.000,185.5,22.7,0.90,18.800,185.9 +22.3,0.90,18.120,187.2,22.3,0.90,18.890,187.6 +21.9,0.90,18.070,188.2,21.9,0.90,18.910,188.7 +21.4,0.90,17.290,190.1,21.4,0.90,18.130,190.8 +21.0,0.90,17.770,191.6,21.0,0.90,18.550,192.2 +20.4,0.90,17.500,192.0,20.3,0.90,18.210,192.6 +19.6,0.90,16.760,193.2,19.6,0.90,17.470,194.0 +19.1,0.90,16.910,197.4,19.1,0.90,17.660,197.9 +19.0,0.90,16.840,195.2,18.8,0.90,17.510,195.2 +19.8,0.90,14.710,195.4,19.7,0.90,14.900,195.6 +21.0,0.90,14.600,195.5,20.8,0.90,14.710,195.6 +22.7,0.90,14.750,197.1,22.5,0.90,14.860,197.3 +24.3,0.90,13.740,196.3,24.1,0.90,13.860,196.3 +25.7,0.90,12.960,196.2,25.5,0.90,13.100,196.3 +27.0,0.90,12.030,199.4,26.8,0.90,12.160,199.5 +27.5,0.90,11.680,192.4,27.3,0.90,11.830,192.6 +28.5,0.90,11.170,195.1,28.3,0.90,11.320,195.2 +28.7,0.90,10.670,192.1,28.5,0.90,10.840,192.3 +28.5,0.90,9.530,186.9,28.4,0.90,9.950,186.7 +28.2,0.90,12.890,188.0,28.2,0.90,13.420,187.9 +27.5,0.90,12.950,189.3,27.5,0.90,13.580,189.3 +26.5,0.90,12.940,191.6,26.5,0.90,13.690,192.2 +25.6,0.90,15.110,191.6,25.6,0.90,15.970,191.8 +24.3,0.90,14.380,191.3,24.3,0.90,15.150,192.2 +23.7,0.90,14.550,192.3,23.7,0.90,15.300,192.7 +23.4,0.90,15.380,190.4,23.4,0.90,16.070,190.7 +23.1,0.90,14.250,199.0,23.1,0.90,14.990,199.0 +22.3,0.91,7.660,222.6,22.4,0.91,8.430,220.5 +16.9,0.91,8.390,346.8,16.6,0.91,9.440,347.2 +15.1,0.91,8.880,7.4,14.9,0.91,8.930,7.9 +13.8,0.91,9.790,4.9,13.7,0.91,9.880,5.1 +12.5,0.91,13.200,17.0,12.3,0.91,13.400,17.1 +12.1,0.91,12.400,19.7,11.9,0.91,12.570,19.6 +11.6,0.91,11.630,15.5,11.4,0.91,11.760,15.3 +11.2,0.91,11.250,14.6,11.0,0.91,11.350,14.4 +10.9,0.91,11.090,12.2,10.7,0.91,11.200,12.2 +11.2,0.91,10.950,13.1,11.0,0.91,11.040,13.0 +11.6,0.91,10.590,14.4,11.4,0.91,10.710,14.4 +12.4,0.91,9.390,15.7,12.2,0.91,9.490,15.7 +13.2,0.91,9.470,18.8,13.0,0.91,9.540,18.9 +14.1,0.91,8.030,23.6,13.9,0.91,8.120,23.5 +14.9,0.91,6.880,24.3,14.7,0.91,6.960,23.8 +15.2,0.91,5.530,34.3,15.0,0.91,5.640,33.8 +15.0,0.91,4.400,41.8,14.9,0.91,4.540,39.4 +15.8,0.91,8.920,26.8,15.8,0.91,9.310,26.8 +15.4,0.91,7.650,34.1,15.4,0.91,7.840,34.0 +15.0,0.91,7.170,35.7,14.9,0.91,7.330,35.8 +14.7,0.91,6.830,30.2,14.6,0.91,6.940,31.6 +14.1,0.91,5.500,28.6,14.1,0.91,5.630,29.0 +14.3,0.91,4.880,16.2,14.3,0.91,5.260,16.5 +14.5,0.91,4.080,13.3,14.6,0.91,4.470,15.1 +14.9,0.91,4.110,357.4,14.9,0.91,4.430,0.6 +15.3,0.91,5.490,341.6,15.3,0.91,5.610,345.6 +15.2,0.91,6.000,327.8,15.3,0.91,6.020,331.8 +15.7,0.91,7.040,320.7,16.0,0.91,7.050,325.6 +15.3,0.91,8.200,321.7,15.7,0.91,8.420,326.5 +11.3,0.91,9.920,335.4,11.4,0.91,10.460,337.6 +11.7,0.91,6.610,355.3,11.5,0.91,6.780,356.5 +13.6,0.91,5.890,8.3,13.5,0.91,5.960,8.5 +15.3,0.91,5.590,6.2,15.1,0.91,5.640,6.2 +16.6,0.91,4.950,357.8,16.4,0.91,4.990,357.6 +18.1,0.91,4.700,346.8,17.9,0.91,4.760,346.4 +19.3,0.91,4.620,332.9,19.1,0.91,4.690,332.9 +20.1,0.91,4.400,325.3,19.8,0.91,4.470,325.4 +20.7,0.91,4.970,324.6,20.5,0.91,5.040,324.5 +21.0,0.91,4.060,335.9,20.8,0.91,4.140,335.5 +21.0,0.91,3.900,349.7,20.8,0.91,3.980,349.3 +20.7,0.91,3.000,18.7,20.6,0.91,3.250,16.7 +20.4,0.91,1.960,34.6,20.4,0.91,2.310,34.6 +20.3,0.91,1.170,65.4,20.3,0.91,1.500,57.2 +20.2,0.91,1.210,163.5,20.1,0.91,0.990,158.2 +20.3,0.91,1.990,211.4,20.2,0.91,1.890,212.8 +20.6,0.91,2.700,215.6,20.5,0.91,2.450,218.9 +20.7,0.91,2.810,234.9,20.7,0.91,2.510,239.9 +20.9,0.91,3.010,240.5,20.8,0.91,2.770,243.9 +20.7,0.91,2.740,238.8,20.7,0.91,2.380,242.7 +20.2,0.91,2.310,249.0,20.4,0.91,1.920,254.4 +20.2,0.91,1.530,314.5,20.3,0.91,1.330,331.1 +18.1,0.91,2.460,16.1,18.0,0.91,2.500,19.4 +17.9,0.91,2.160,25.9,18.3,0.91,2.380,35.4 +18.3,0.91,2.310,11.5,18.7,0.91,2.540,14.3 +18.1,0.91,2.670,7.0,18.6,0.91,3.020,14.0 +19.0,0.91,2.360,13.8,18.9,0.91,2.360,13.2 +20.4,0.91,2.290,43.4,20.2,0.91,2.260,42.8 +21.4,0.91,2.070,38.4,21.2,0.91,2.050,37.4 +22.2,0.91,2.340,44.5,22.0,0.91,2.320,44.0 +22.9,0.91,1.920,50.9,22.7,0.91,1.890,50.4 +23.3,0.91,1.750,48.8,23.1,0.91,1.720,48.3 +23.6,0.91,1.800,40.5,23.4,0.91,1.770,39.8 +23.7,0.91,1.730,51.3,23.5,0.91,1.690,51.4 +23.3,0.91,4.010,75.2,23.1,0.91,4.000,74.9 +22.8,0.91,4.910,87.6,22.6,0.91,4.840,87.7 +22.3,0.91,4.820,114.9,22.3,0.91,4.760,114.9 +22.4,0.91,5.430,128.3,22.2,0.91,5.370,128.5 +21.7,0.91,7.420,145.4,21.7,0.91,7.130,147.6 +21.3,0.91,8.610,156.8,21.2,0.91,8.420,159.1 +20.9,0.91,8.660,162.0,21.0,0.91,8.580,163.6 +20.4,0.91,9.910,169.8,20.7,0.91,10.110,169.7 +19.6,0.91,10.620,166.0,20.0,0.91,10.830,166.2 +19.4,0.91,10.300,171.8,19.8,0.91,10.680,171.3 +19.6,0.91,10.760,172.3,20.1,0.91,11.180,172.5 +19.4,0.91,10.600,172.0,19.9,0.91,10.910,172.0 +19.5,0.91,10.030,171.3,20.2,0.91,10.230,171.8 +18.5,0.91,9.720,177.4,19.4,0.91,9.700,177.4 +18.4,0.91,8.810,195.0,19.3,0.91,8.760,198.9 +18.7,0.91,8.740,205.3,19.6,0.91,9.290,208.0 +19.3,0.91,7.360,199.5,19.2,0.91,7.450,200.3 +20.6,0.91,8.050,197.9,20.4,0.91,8.110,198.3 +22.0,0.91,8.300,198.6,21.8,0.91,8.400,198.8 +22.8,0.91,8.390,192.5,22.5,0.91,8.490,192.5 +23.4,0.91,7.600,186.6,23.2,0.91,7.700,186.7 +24.1,0.91,7.180,186.0,23.9,0.91,7.290,186.0 +24.9,0.91,7.920,181.3,24.7,0.91,8.030,181.2 +24.9,0.91,7.320,182.3,24.7,0.91,7.430,181.9 +24.7,0.91,9.680,178.6,24.6,0.91,9.770,178.5 +24.0,0.91,9.910,169.7,24.0,0.91,10.430,169.8 +23.3,0.91,11.400,168.1,23.5,0.91,12.190,169.4 +21.4,0.91,11.280,162.2,21.5,0.91,11.790,164.5 +20.1,0.91,11.320,177.0,20.3,0.91,11.840,180.3 +19.2,0.91,12.640,187.9,19.4,0.91,13.580,190.0 +18.7,0.91,14.880,192.3,18.9,0.91,16.010,193.4 +18.6,0.91,16.370,194.0,18.9,0.91,17.440,193.7 +18.1,0.91,15.980,191.9,18.3,0.91,16.940,191.9 +17.2,0.91,15.320,186.4,17.5,0.91,16.150,186.9 +16.2,0.91,16.010,183.8,16.4,0.91,16.980,184.7 +16.3,0.91,16.050,186.8,16.5,0.91,16.870,187.5 +15.5,0.91,15.170,184.6,15.8,0.91,15.840,186.0 +15.1,0.91,14.830,183.3,15.4,0.91,15.430,184.3 +15.3,0.91,14.520,186.3,15.7,0.91,15.170,186.8 +15.8,0.91,12.510,187.1,15.8,0.91,13.370,187.2 +17.2,0.91,11.480,188.8,17.0,0.91,11.630,188.9 +18.7,0.91,10.460,181.8,18.5,0.91,10.590,182.0 +20.0,0.91,9.910,179.8,19.8,0.91,10.030,180.0 +21.6,0.91,9.920,176.6,21.3,0.91,10.030,176.6 +22.8,0.91,9.130,171.3,22.6,0.91,9.250,171.5 +23.6,0.91,9.130,167.0,23.4,0.91,9.270,167.2 +24.0,0.91,9.350,165.4,23.8,0.91,9.500,165.6 +24.1,0.91,9.790,166.3,23.9,0.91,9.960,166.5 +23.8,0.91,9.760,162.6,23.6,0.91,10.230,162.6 +22.4,0.91,10.780,153.6,22.3,0.91,11.600,154.0 +21.7,0.91,12.860,157.8,21.7,0.91,13.680,158.0 +21.1,0.91,14.550,163.1,21.0,0.91,15.350,163.3 +20.2,0.91,14.710,172.7,20.1,0.91,15.450,173.0 +19.3,0.91,14.580,179.6,19.3,0.91,15.270,179.9 +18.8,0.91,15.630,182.0,18.7,0.91,16.320,182.2 +18.6,0.91,16.180,181.5,18.5,0.91,16.800,181.6 +18.3,0.91,16.750,183.4,18.2,0.91,17.360,183.6 +17.7,0.91,16.940,183.0,17.7,0.91,17.590,183.3 +17.3,0.91,17.410,184.2,17.2,0.91,18.030,184.5 +16.9,0.91,17.040,184.6,16.8,0.91,17.610,185.0 +16.6,0.91,15.930,183.1,16.5,0.91,16.430,183.4 +16.3,0.91,14.320,184.3,16.2,0.91,14.740,184.5 +16.4,0.91,12.070,183.2,16.2,0.91,12.960,183.2 +16.4,0.91,10.390,185.2,16.3,0.91,10.780,185.3 +18.5,0.91,11.630,188.3,18.3,0.91,11.820,188.4 +19.1,0.91,11.630,180.2,18.9,0.91,11.760,180.3 +20.7,0.91,11.560,182.6,20.5,0.91,11.700,182.5 +22.3,0.91,11.430,177.7,22.1,0.91,11.570,177.9 +23.7,0.91,11.980,173.3,23.4,0.91,12.140,173.5 +24.4,0.90,11.650,173.4,24.2,0.90,11.850,173.5 +25.0,0.90,12.830,173.2,24.8,0.90,13.070,173.2 +25.0,0.90,13.760,174.0,24.8,0.90,14.010,173.8 +24.4,0.90,14.470,168.8,24.3,0.90,14.980,168.8 +23.6,0.90,15.910,170.5,23.5,0.90,16.610,170.7 +22.9,0.90,17.030,173.5,22.8,0.90,17.700,173.7 +22.0,0.90,17.510,176.3,21.9,0.90,18.250,176.4 +21.0,0.90,17.570,175.2,20.9,0.90,18.200,175.3 +20.4,0.90,17.000,174.7,20.3,0.90,17.640,175.0 +20.0,0.90,17.390,176.6,19.9,0.90,18.040,176.8 +19.7,0.90,18.350,178.5,19.6,0.90,19.000,178.8 +19.2,0.90,15.000,195.6,19.1,0.90,15.580,195.7 +19.3,0.90,14.060,191.8,19.3,0.90,14.550,192.8 +19.3,0.90,13.350,196.3,19.2,0.90,13.890,196.9 +19.6,0.90,14.000,206.6,19.5,0.90,14.480,206.9 +19.7,0.90,12.030,209.0,19.5,0.90,12.440,209.5 +19.2,0.90,10.950,206.4,19.2,0.90,11.560,207.7 +19.4,0.90,8.500,209.9,19.3,0.90,9.050,210.7 +20.4,0.90,9.040,225.6,20.3,0.90,9.200,225.7 +21.4,0.90,6.730,224.0,21.2,0.90,6.800,224.3 +22.5,0.90,5.840,244.6,22.3,0.90,5.920,244.3 +24.1,0.90,5.600,239.4,23.8,0.90,5.670,239.3 +25.5,0.90,5.680,243.7,25.3,0.90,5.760,243.8 +26.6,0.90,5.140,251.4,26.4,0.90,5.230,251.1 +27.0,0.90,5.250,255.3,26.8,0.90,5.320,255.0 +27.4,0.90,5.270,242.6,27.2,0.90,5.330,242.5 +27.6,0.90,6.420,250.2,27.4,0.90,6.490,250.0 +27.1,0.90,6.800,276.9,26.9,0.90,6.800,276.6 +26.8,0.90,5.690,274.5,26.7,0.90,5.600,273.8 +26.8,0.90,4.720,267.8,26.7,0.90,4.660,264.9 +26.4,0.90,6.940,273.2,26.3,0.90,6.970,272.0 +26.3,0.90,7.080,266.8,26.2,0.90,7.070,266.1 +25.4,0.90,7.310,282.8,25.6,0.90,7.610,278.9 +23.2,0.91,4.200,252.8,23.8,0.91,4.810,261.2 +24.5,0.91,6.010,185.7,24.4,0.91,5.950,187.8 +24.9,0.91,5.820,180.6,24.9,0.91,5.990,179.9 +24.3,0.91,6.490,202.7,24.2,0.91,6.650,203.4 +22.5,0.91,6.830,228.8,22.5,0.91,7.160,228.9 +22.4,0.91,5.780,260.1,22.2,0.91,5.870,256.9 +22.4,0.91,4.460,287.4,22.5,0.91,4.630,286.8 +22.9,0.91,2.960,325.7,23.0,0.91,2.750,330.2 +18.7,0.91,3.070,350.7,19.0,0.91,3.590,352.5 +18.7,0.91,4.160,2.6,18.6,0.91,4.570,3.1 +20.7,0.91,3.330,18.1,20.5,0.91,3.340,18.2 +22.5,0.91,3.760,32.6,22.3,0.91,3.740,32.3 +23.3,0.91,4.520,30.1,23.1,0.91,4.500,29.9 +24.4,0.91,2.710,30.7,24.2,0.91,2.690,30.6 +25.2,0.91,3.120,44.3,25.0,0.91,3.110,44.5 +25.8,0.91,4.540,41.7,25.6,0.91,4.550,41.8 +26.0,0.91,6.140,48.8,25.8,0.91,6.170,49.1 +25.6,0.91,7.600,52.1,25.4,0.91,7.660,52.3 +25.0,0.91,8.550,49.1,24.9,0.91,8.830,49.5 +23.6,0.91,6.620,102.8,23.5,0.91,6.770,100.6 +20.6,0.91,6.070,154.0,20.4,0.91,6.160,153.7 +20.4,0.91,5.850,170.2,20.3,0.91,6.280,169.5 +19.9,0.91,2.610,177.5,19.7,0.91,2.900,178.0 +19.9,0.91,2.780,79.1,19.7,0.91,2.630,90.7 +19.5,0.91,1.990,136.7,19.3,0.91,2.020,136.9 +19.3,0.91,2.840,100.0,19.3,0.91,2.850,115.4 +20.0,0.91,4.000,108.3,20.2,0.91,4.360,104.6 +18.7,0.91,2.010,60.5,18.8,0.91,2.030,67.3 +19.5,0.91,1.020,52.1,19.6,0.91,0.990,71.6 +18.3,0.91,3.320,293.7,18.8,0.91,2.600,293.2 +16.7,0.91,3.440,278.9,17.6,0.91,3.010,272.6 +18.4,0.91,4.630,301.6,18.5,0.91,4.240,300.0 +17.1,0.91,0.480,290.5,17.6,0.91,0.750,311.9 +18.4,0.91,1.080,96.5,18.3,0.91,0.930,105.9 +19.2,0.91,3.560,81.3,19.2,0.91,3.920,82.8 +18.5,0.91,2.960,92.7,18.5,0.91,3.310,97.0 +19.1,0.91,2.590,100.9,18.9,0.91,2.630,102.5 +19.9,0.91,2.120,78.8,19.8,0.91,2.170,83.7 +19.9,0.91,3.830,152.8,19.7,0.91,3.860,151.8 +19.9,0.91,2.490,84.5,19.7,0.91,2.540,85.2 +19.5,0.91,3.290,73.4,19.3,0.91,3.280,74.2 +20.0,0.91,4.340,99.6,19.8,0.91,4.370,99.7 +18.9,0.91,5.690,76.5,18.8,0.91,5.870,78.8 +19.0,0.91,5.930,106.8,18.8,0.91,6.400,107.3 +18.5,0.91,5.190,94.4,18.4,0.91,5.660,96.3 +18.6,0.91,5.160,105.8,18.5,0.91,5.620,106.9 +18.6,0.91,5.490,124.8,18.5,0.91,5.880,125.4 +18.4,0.91,7.060,140.3,18.2,0.91,7.260,140.6 +18.5,0.91,7.310,143.3,18.4,0.91,7.780,143.3 +18.6,0.91,8.740,148.7,18.4,0.91,9.180,148.9 +18.6,0.91,10.060,156.8,18.5,0.91,10.440,156.5 +18.7,0.91,11.380,167.3,18.6,0.91,11.880,167.8 +18.9,0.91,10.150,173.6,18.7,0.91,10.520,173.5 +18.8,0.91,10.240,181.2,18.7,0.91,10.640,181.0 +18.6,0.91,10.470,179.0,18.5,0.91,10.840,179.1 +19.0,0.91,13.440,183.6,18.8,0.91,13.810,183.7 +18.8,0.91,14.660,180.3,18.6,0.91,15.030,180.5 +18.4,0.91,11.780,184.2,18.2,0.91,12.190,184.3 +18.6,0.91,10.390,196.5,18.4,0.91,10.580,196.9 +19.4,0.91,9.140,191.1,19.3,0.91,9.250,191.1 +20.6,0.91,9.430,191.9,20.4,0.91,9.510,192.0 +21.8,0.91,9.890,196.2,21.6,0.91,9.990,196.3 +22.7,0.91,10.320,193.2,22.5,0.91,10.420,193.5 +21.1,0.91,6.020,204.9,21.2,0.91,6.460,201.1 +22.4,0.91,10.420,178.1,22.2,0.91,10.490,178.2 +20.7,0.91,7.510,193.1,20.5,0.91,7.630,196.4 +21.0,0.91,5.920,215.5,20.9,0.91,6.250,212.8 +20.2,0.91,6.460,170.2,20.2,0.91,6.690,176.7 +20.5,0.91,9.610,182.2,20.4,0.91,9.960,183.7 +21.1,0.91,12.100,192.8,21.0,0.91,12.580,193.5 +20.8,0.91,12.200,191.1,20.7,0.91,12.770,191.6 +20.2,0.91,12.480,200.5,20.1,0.91,12.950,201.5 +19.7,0.91,12.940,200.4,19.6,0.91,13.490,201.0 +19.8,0.91,12.940,202.3,19.8,0.91,13.550,203.4 +19.7,0.91,12.900,201.9,19.7,0.91,13.420,203.6 +19.7,0.91,13.080,203.4,19.6,0.91,13.700,204.7 +19.6,0.91,13.200,206.0,19.5,0.91,13.790,206.7 +19.7,0.91,12.120,213.3,19.6,0.91,12.660,214.1 +19.3,0.91,3.820,11.6,19.1,0.91,3.260,10.9 +19.7,0.91,1.290,317.9,19.5,0.91,1.470,301.8 +13.9,0.91,10.500,356.0,13.8,0.91,10.550,356.4 +10.7,0.91,10.550,14.6,10.5,0.91,10.860,14.8 +9.5,0.91,11.380,24.1,9.3,0.91,11.570,24.0 +9.2,0.91,8.690,3.3,9.0,0.91,8.720,3.6 +8.2,0.91,11.770,30.0,8.0,0.91,11.880,29.9 +8.0,0.91,9.360,19.9,7.9,0.91,9.450,19.6 +8.0,0.91,10.060,15.8,7.8,0.91,10.150,16.0 +8.5,0.91,9.410,21.0,8.4,0.91,9.500,20.9 +8.7,0.91,8.420,26.8,8.5,0.91,8.490,26.6 +8.6,0.91,7.410,23.6,8.5,0.91,7.480,23.5 +8.2,0.91,7.950,23.3,8.1,0.91,8.120,23.5 +8.2,0.91,7.770,26.0,8.0,0.91,7.970,25.8 +7.9,0.91,8.320,11.0,7.7,0.91,8.420,11.3 +7.8,0.91,8.170,25.2,7.6,0.91,8.310,25.6 +7.9,0.91,7.800,31.9,7.8,0.91,7.980,32.2 +7.9,0.91,8.490,26.8,7.7,0.91,8.630,27.1 +7.9,0.91,8.170,32.2,7.7,0.91,8.360,32.6 +8.0,0.91,7.520,33.9,7.8,0.91,7.740,34.3 +8.1,0.91,7.450,34.1,7.9,0.91,7.660,34.3 +8.1,0.91,7.260,30.9,7.9,0.91,7.430,31.4 +8.3,0.91,5.970,25.8,8.1,0.91,6.250,26.4 +8.4,0.91,9.300,27.3,8.3,0.91,9.820,28.3 +8.5,0.91,8.390,28.6,8.3,0.91,8.810,29.3 +8.2,0.91,9.970,36.2,8.0,0.91,10.300,36.7 +7.9,0.91,8.470,31.4,7.8,0.91,8.830,32.3 +7.7,0.91,8.230,31.6,7.5,0.91,8.340,31.9 +7.7,0.91,7.920,33.7,7.5,0.91,7.980,33.8 +8.1,0.91,6.910,34.6,7.9,0.91,6.960,34.6 +8.3,0.91,6.180,27.0,8.1,0.91,6.210,27.0 +8.4,0.91,6.080,15.2,8.2,0.91,6.130,15.2 +8.5,0.91,5.490,4.0,8.3,0.91,5.530,4.7 +9.3,0.91,4.460,5.7,9.1,0.91,4.510,5.9 +10.5,0.91,4.950,8.5,10.4,0.91,5.000,8.4 +11.1,0.91,4.710,13.7,10.9,0.91,4.770,13.4 +10.6,0.91,6.110,344.4,10.4,0.91,6.250,344.8 +9.7,0.91,4.870,352.9,9.5,0.91,5.040,353.1 +9.6,0.91,3.750,346.2,9.5,0.91,3.930,347.4 +9.6,0.91,3.360,357.4,9.5,0.91,3.380,0.8 +9.7,0.91,3.340,2.5,9.6,0.91,3.300,5.1 +9.5,0.91,2.560,8.5,9.5,0.91,2.840,10.1 +9.3,0.91,2.170,10.6,9.3,0.91,2.410,11.3 +9.3,0.91,1.470,4.4,9.4,0.91,1.690,359.4 +9.7,0.91,1.230,359.1,9.9,0.91,1.550,358.9 +10.5,0.91,0.740,288.4,10.6,0.91,0.720,311.5 +11.0,0.91,1.520,235.3,11.0,0.91,1.270,240.7 +10.9,0.91,2.420,225.8,10.8,0.91,2.120,229.5 +10.6,0.91,3.630,215.8,10.7,0.91,3.250,217.8 +10.8,0.91,4.010,216.2,11.0,0.91,3.630,218.3 +11.3,0.91,5.180,218.2,11.4,0.91,4.800,219.0 +11.4,0.91,5.360,216.7,11.6,0.91,5.560,215.7 +12.5,0.91,4.330,217.7,12.3,0.91,4.320,217.6 +13.9,0.91,3.660,215.3,13.8,0.91,3.650,215.2 +15.3,0.91,3.240,206.3,15.1,0.91,3.250,206.3 +16.4,0.91,4.190,186.9,16.1,0.91,4.200,187.2 +17.1,0.91,4.580,185.1,16.9,0.91,4.600,185.3 +17.8,0.91,4.680,183.4,17.6,0.91,4.700,183.6 +18.1,0.91,5.120,178.5,17.9,0.91,5.170,178.7 +18.1,0.91,6.210,175.5,17.9,0.91,6.230,175.5 +17.7,0.91,6.920,167.8,17.6,0.91,7.180,168.4 +16.9,0.91,9.240,156.7,16.8,0.91,9.570,157.0 +16.4,0.91,10.550,160.1,16.4,0.91,10.950,160.3 +15.7,0.91,11.170,159.0,15.8,0.91,11.880,159.5 +15.5,0.91,11.810,163.9,15.6,0.91,12.600,164.4 +15.2,0.91,12.710,167.2,15.2,0.91,13.340,167.7 +14.9,0.91,14.190,173.4,15.0,0.91,14.810,173.6 +15.0,0.91,15.610,174.2,15.0,0.91,16.290,174.2 +14.3,0.91,15.340,182.3,14.4,0.91,15.990,182.9 +14.3,0.91,14.440,180.6,14.5,0.91,14.990,181.6 +13.5,0.91,13.380,185.6,13.6,0.91,13.990,186.2 +13.8,0.91,13.920,187.3,13.9,0.91,14.480,187.9 +13.4,0.91,13.730,186.9,13.5,0.91,14.190,187.7 +13.0,0.90,14.010,190.9,13.1,0.90,14.500,191.5 +13.0,0.90,14.670,187.9,13.3,0.90,15.470,188.6 +13.6,0.90,12.900,188.6,13.5,0.90,13.330,189.0 +14.3,0.90,12.720,192.8,14.2,0.90,12.940,193.2 +15.2,0.90,12.460,193.8,15.0,0.90,12.580,194.2 +16.3,0.90,10.450,200.5,16.1,0.90,10.580,200.8 +17.4,0.90,8.580,210.4,17.2,0.90,8.660,210.6 +18.4,0.91,5.690,216.2,18.2,0.91,5.750,216.7 +19.3,0.91,5.180,222.1,19.1,0.91,5.220,222.3 +19.5,0.91,3.660,196.1,19.3,0.91,3.650,197.6 +16.0,0.91,11.780,7.5,15.8,0.91,12.060,7.6 +10.4,0.91,12.810,7.0,10.2,0.91,12.980,7.1 +8.5,0.91,13.460,5.2,8.3,0.91,13.630,5.3 +6.8,0.91,14.140,12.3,6.6,0.91,14.360,12.0 +5.6,0.91,13.430,8.1,5.4,0.91,13.750,8.2 +5.1,0.91,11.750,13.3,5.0,0.91,12.160,13.3 +4.5,0.91,12.050,11.0,4.3,0.91,12.420,11.1 +4.1,0.91,11.090,10.7,4.0,0.91,11.470,10.6 +3.8,0.91,11.670,10.2,3.7,0.91,12.130,10.7 +3.4,0.91,10.240,12.5,3.3,0.91,10.780,13.1 +3.3,0.91,10.290,14.1,3.2,0.91,10.900,15.2 +3.2,0.91,10.080,13.1,3.2,0.91,10.670,14.5 +3.2,0.91,9.610,5.2,3.1,0.91,9.980,7.0 +3.1,0.91,8.880,356.9,3.1,0.91,9.070,358.6 +3.2,0.91,7.860,348.4,3.2,0.91,7.900,351.3 +3.4,0.91,5.840,339.7,3.6,0.91,6.010,344.5 +4.3,0.91,3.840,327.1,4.2,0.91,3.900,329.6 +6.1,0.91,3.430,326.0,6.0,0.91,3.410,326.9 +8.1,0.91,2.960,325.5,7.9,0.91,2.950,326.1 +10.1,0.91,1.770,327.4,9.9,0.91,1.760,327.9 +11.8,0.91,0.680,343.0,11.6,0.91,0.670,342.2 +13.2,0.91,0.310,168.6,13.0,0.91,0.290,172.1 +14.4,0.91,1.600,179.9,14.2,0.91,1.600,181.0 +15.0,0.91,2.550,172.9,14.8,0.91,2.570,173.7 +15.0,0.91,3.890,189.3,14.8,0.91,3.910,189.3 +14.5,0.91,5.340,185.2,14.3,0.91,5.270,185.4 +13.8,0.91,6.800,188.0,13.6,0.91,6.760,187.7 +12.9,0.91,9.140,183.3,12.8,0.91,9.200,183.4 +12.4,0.91,10.340,183.2,12.4,0.91,10.480,183.1 +12.2,0.91,11.370,186.1,12.3,0.91,11.630,187.1 +12.0,0.91,12.350,190.0,12.1,0.91,12.630,190.7 +11.7,0.91,12.850,190.8,11.9,0.91,13.220,191.6 +11.5,0.91,13.630,192.8,11.7,0.91,14.040,193.3 +12.2,0.91,13.480,198.3,12.6,0.91,13.880,199.2 +11.9,0.91,13.530,201.1,12.3,0.91,14.010,201.8 +12.2,0.91,13.410,202.4,12.6,0.91,13.870,202.7 +11.9,0.91,13.530,207.8,12.4,0.91,14.120,209.5 +11.8,0.91,13.990,213.5,12.2,0.91,14.700,214.5 +11.3,0.91,14.650,209.3,11.7,0.91,15.270,210.3 +11.2,0.91,14.340,206.8,11.3,0.91,14.910,207.4 +11.5,0.91,13.330,204.1,11.5,0.91,13.990,204.9 +12.9,0.91,12.310,201.1,12.8,0.91,12.460,201.6 +14.3,0.90,11.360,200.5,14.2,0.90,11.410,200.9 +15.8,0.90,11.050,199.6,15.7,0.90,11.100,199.8 +17.8,0.90,11.100,198.4,17.6,0.90,11.170,198.6 +19.4,0.90,11.260,196.1,19.2,0.90,11.360,196.3 +20.4,0.90,11.180,195.9,20.2,0.90,11.310,196.1 +20.9,0.90,11.190,194.9,20.7,0.90,11.330,195.0 +20.8,0.90,11.240,194.9,20.6,0.90,11.420,195.1 +20.2,0.90,12.970,192.1,20.1,0.90,13.400,192.3 +19.0,0.90,13.160,187.3,19.0,0.90,13.510,188.4 +18.3,0.90,14.740,192.3,18.3,0.90,15.510,193.8 +17.6,0.90,14.930,199.6,17.6,0.90,15.960,201.4 +16.5,0.90,14.510,197.4,16.5,0.90,15.590,199.8 +15.8,0.90,14.750,199.6,15.9,0.90,15.800,201.7 +15.4,0.90,15.000,203.7,15.6,0.90,16.140,205.7 +15.4,0.90,14.000,201.8,15.5,0.90,14.760,203.8 +15.2,0.90,14.530,202.6,15.3,0.90,15.370,204.5 +15.0,0.90,14.150,202.7,15.1,0.90,14.790,204.5 +14.5,0.90,10.620,215.2,14.7,0.90,11.280,215.8 +13.9,0.91,6.780,253.1,14.0,0.91,7.540,246.8 +13.8,0.91,5.700,293.0,13.8,0.91,5.990,291.5 +11.0,0.91,7.770,332.5,10.9,0.91,8.460,338.5 +9.9,0.91,8.890,349.3,9.8,0.91,9.300,350.2 +10.0,0.91,7.830,359.0,9.8,0.91,7.890,359.1 +11.0,0.91,7.960,5.8,10.8,0.91,8.020,5.9 +12.5,0.91,8.940,9.0,12.3,0.91,9.020,9.0 +13.5,0.91,9.790,10.3,13.3,0.91,9.890,10.2 +14.1,0.91,10.160,14.1,13.9,0.91,10.280,14.2 +14.9,0.91,10.370,17.1,14.7,0.91,10.490,17.1 +13.9,0.91,10.150,16.7,13.7,0.91,10.270,16.9 +14.2,0.91,11.110,28.0,14.0,0.91,11.240,28.0 +14.8,0.91,8.260,27.9,14.6,0.91,8.370,27.9 +14.9,0.91,7.440,31.9,14.7,0.91,7.690,31.8 +14.5,0.91,7.480,29.0,14.4,0.91,7.850,29.3 +13.9,0.91,9.450,30.6,13.8,0.91,9.970,33.1 +13.4,0.91,9.550,33.0,13.3,0.91,9.950,35.4 +12.6,0.91,8.730,45.7,12.5,0.91,8.780,49.1 +11.9,0.91,6.660,51.1,11.8,0.91,6.970,52.6 +11.3,0.91,5.880,48.1,11.2,0.91,6.100,47.8 +10.5,0.91,4.610,48.6,10.6,0.91,5.030,47.2 +10.4,0.91,4.030,38.6,10.5,0.91,4.440,40.0 +10.3,0.91,3.150,32.3,10.4,0.91,3.520,35.2 +10.7,0.91,2.900,10.7,10.8,0.91,3.190,16.1 +11.2,0.91,2.550,354.0,11.3,0.91,2.710,1.9 +11.8,0.91,2.270,347.1,11.9,0.91,2.350,356.4 +12.3,0.91,1.800,322.1,12.3,0.91,1.690,332.3 +13.3,0.91,2.530,303.8,13.4,0.91,2.280,309.4 +13.5,0.91,3.610,285.7,13.8,0.91,3.230,287.6 +14.1,0.91,3.160,275.4,13.9,0.91,3.140,275.2 +15.7,0.91,3.240,282.0,15.6,0.91,3.250,281.6 +17.1,0.91,3.680,287.2,16.9,0.91,3.700,287.0 +18.0,0.91,3.960,287.1,17.8,0.91,3.990,286.8 +18.7,0.91,3.960,286.3,18.5,0.91,3.990,286.1 +19.3,0.91,3.880,288.6,19.1,0.91,3.920,288.5 +19.7,0.91,3.460,285.4,19.5,0.91,3.500,285.3 +19.8,0.91,3.470,277.7,19.6,0.91,3.530,277.9 +19.7,0.91,3.500,256.5,19.5,0.91,3.560,257.1 +19.5,0.91,4.920,252.4,19.4,0.91,4.830,253.9 +19.4,0.91,5.640,241.5,19.3,0.91,5.640,241.9 +19.4,0.91,6.700,241.7,19.3,0.91,6.680,243.1 +18.8,0.91,7.300,228.2,18.7,0.91,7.190,230.5 +18.6,0.91,7.900,238.5,18.6,0.91,7.960,239.4 +18.4,0.91,9.180,239.9,18.4,0.91,9.120,241.0 +18.1,0.91,10.090,237.1,18.2,0.91,10.070,237.8 +18.0,0.91,10.880,238.0,18.1,0.91,10.910,238.3 +17.6,0.91,11.440,239.4,17.9,0.91,11.520,239.7 +17.7,0.91,11.460,240.3,18.0,0.91,11.270,240.1 +18.0,0.91,10.650,243.5,18.1,0.91,10.350,243.1 +18.1,0.91,9.630,241.5,18.2,0.91,9.350,240.5 +18.1,0.91,9.160,240.9,18.2,0.91,8.850,239.5 +18.4,0.91,8.690,239.7,18.5,0.91,8.430,237.6 +18.1,0.91,8.320,237.6,18.7,0.91,8.740,236.4 +18.3,0.91,6.500,232.7,18.2,0.91,6.690,232.9 +19.8,0.91,6.540,229.6,19.6,0.91,6.600,229.6 +20.6,0.91,7.020,222.1,20.4,0.91,7.090,222.2 +21.3,0.91,7.660,216.6,21.1,0.91,7.750,216.5 +21.6,0.91,8.260,214.0,21.4,0.91,8.360,214.0 +22.0,0.91,8.250,211.2,21.8,0.91,8.350,211.2 +22.0,0.91,8.170,212.2,21.8,0.91,8.280,212.2 +21.9,0.91,8.000,209.0,21.7,0.91,8.160,209.0 +21.3,0.91,10.210,201.3,21.2,0.91,10.450,201.7 +20.9,0.91,11.370,205.6,20.8,0.91,11.570,205.7 +20.3,0.91,11.990,209.4,20.4,0.91,12.280,209.2 +19.9,0.91,12.470,214.1,19.9,0.91,12.770,214.1 +19.4,0.91,12.310,214.1,19.5,0.91,12.570,213.6 +18.9,0.91,12.500,215.6,19.0,0.91,12.860,215.0 +18.5,0.91,13.150,215.8,18.7,0.91,13.600,215.1 +17.9,0.91,13.070,215.3,18.1,0.91,13.580,214.6 +17.4,0.91,13.160,216.3,17.6,0.91,13.760,215.7 +17.0,0.91,12.610,217.6,17.4,0.91,13.140,217.5 +16.7,0.91,12.210,217.9,17.0,0.91,12.700,217.7 +16.7,0.91,11.310,218.2,17.0,0.91,11.710,218.1 +16.7,0.91,10.580,215.6,17.0,0.91,10.920,215.7 +16.6,0.91,9.730,217.1,17.0,0.91,10.030,217.4 +16.4,0.91,8.650,213.2,16.8,0.91,8.930,213.7 +16.8,0.91,7.810,211.3,17.2,0.91,8.210,211.7 +17.1,0.91,2.230,201.5,17.0,0.91,2.300,202.4 +18.3,0.91,1.450,207.2,18.1,0.91,1.460,208.5 +19.3,0.91,1.910,192.2,19.1,0.91,1.920,192.7 +20.1,0.91,2.380,188.6,19.9,0.91,2.370,188.7 +20.6,0.91,2.650,166.3,20.4,0.91,2.650,165.9 +21.0,0.91,2.710,147.6,20.8,0.91,2.720,147.7 +21.2,0.91,3.680,128.1,21.0,0.91,3.670,128.7 +21.1,0.91,3.300,159.6,20.9,0.91,3.370,159.0 +20.7,0.91,5.410,145.8,20.5,0.91,5.480,145.9 +20.4,0.91,5.020,136.0,20.3,0.91,5.070,137.2 +20.7,0.91,5.900,134.2,20.6,0.91,5.730,137.0 +17.6,0.91,4.350,86.2,17.6,0.91,4.310,94.8 +14.8,0.91,6.440,69.7,15.2,0.91,6.310,79.5 +13.4,0.91,6.450,73.3,13.6,0.91,7.610,84.7 +12.1,0.91,6.860,80.4,12.2,0.91,7.950,88.5 +11.5,0.92,7.200,89.9,11.6,0.92,8.060,97.1 +11.1,0.92,7.960,106.3,11.3,0.92,9.910,110.0 +10.6,0.92,8.050,107.8,11.0,0.92,9.320,111.7 +11.3,0.92,8.050,116.6,12.2,0.92,8.310,125.4 +11.6,0.92,7.240,122.0,13.0,0.92,7.370,133.0 +10.5,0.92,6.510,119.5,11.8,0.92,7.160,131.6 +10.9,0.92,6.140,125.1,12.4,0.92,6.370,137.6 +9.5,0.92,4.930,127.2,10.4,0.92,5.600,132.8 +11.0,0.92,4.430,141.0,11.4,0.92,5.270,144.6 +11.5,0.92,2.730,115.9,11.5,0.92,3.070,127.0 +14.6,0.92,2.920,120.9,14.5,0.92,3.040,124.5 +16.5,0.92,5.140,162.1,16.3,0.92,5.200,162.3 +17.5,0.92,6.040,173.0,17.3,0.92,6.110,173.1 +18.0,0.92,5.780,174.0,17.8,0.92,5.850,174.0 +18.6,0.91,6.170,170.2,18.4,0.91,6.250,170.4 +18.8,0.91,6.540,174.0,18.6,0.91,6.640,174.1 +18.4,0.91,7.210,174.6,18.2,0.91,7.310,174.6 +17.8,0.91,7.620,149.6,17.7,0.91,7.960,149.6 +17.2,0.91,8.370,136.4,17.0,0.91,8.910,136.4 +16.6,0.91,9.370,141.1,16.5,0.91,9.910,141.2 +16.0,0.91,9.540,149.8,16.0,0.91,10.540,149.3 +15.5,0.91,10.110,148.7,15.4,0.91,10.930,148.6 +14.7,0.91,11.010,151.0,14.6,0.91,12.100,151.2 +14.5,0.91,11.720,164.4,14.5,0.91,12.640,163.9 +14.7,0.91,11.280,171.2,14.6,0.91,11.830,171.5 +14.3,0.91,11.600,175.4,14.2,0.91,12.170,175.5 +14.8,0.91,12.140,182.9,14.6,0.91,12.550,183.1 +15.2,0.91,12.000,197.1,15.1,0.91,12.420,197.3 +15.5,0.91,10.190,187.3,15.3,0.91,10.600,187.7 +15.4,0.91,10.220,193.8,15.3,0.91,10.600,194.0 +15.3,0.91,10.950,188.5,15.2,0.91,11.410,189.4 +15.4,0.91,11.610,196.3,15.3,0.91,12.070,197.2 +15.3,0.91,8.990,195.3,15.2,0.91,9.290,196.1 +16.3,0.91,9.480,202.4,16.1,0.91,9.620,202.8 +17.4,0.91,9.120,209.1,17.2,0.91,9.240,209.5 +16.4,0.91,6.610,223.8,16.3,0.91,6.670,222.0 +19.4,0.91,8.010,227.8,19.2,0.91,8.100,228.0 +19.8,0.91,8.420,230.5,19.6,0.91,8.500,230.9 +20.4,0.91,7.410,225.3,20.3,0.91,7.480,226.2 +20.9,0.91,6.180,232.8,20.7,0.91,6.220,233.3 +21.4,0.91,6.240,251.5,21.3,0.91,6.310,251.6 +21.6,0.91,4.550,304.8,21.4,0.91,4.780,305.0 +20.4,0.91,2.530,5.7,20.3,0.91,3.150,3.7 +20.4,0.91,6.400,356.9,20.3,0.91,6.430,356.9 +19.7,0.91,6.820,7.8,19.6,0.91,7.010,8.7 +17.8,0.91,4.950,31.9,17.6,0.91,5.120,31.2 +16.4,0.91,5.420,55.6,16.3,0.91,5.620,51.8 +15.4,0.91,6.610,34.7,15.3,0.91,6.850,36.4 +14.3,0.91,5.990,28.4,14.2,0.91,6.520,29.8 +13.8,0.91,6.990,20.7,13.7,0.91,7.440,21.3 +13.8,0.91,6.100,23.0,13.7,0.91,6.420,22.8 +13.1,0.91,7.580,20.4,12.9,0.91,7.850,20.6 +12.5,0.91,6.300,4.2,12.3,0.91,6.340,4.6 +11.9,0.91,5.440,358.3,11.7,0.91,5.450,358.4 +11.2,0.91,4.930,360.0,11.0,0.91,4.980,359.7 +11.0,0.91,4.290,10.6,10.8,0.91,4.290,10.8 +11.1,0.91,4.100,5.5,10.9,0.91,4.110,5.4 +12.1,0.91,3.470,5.1,12.0,0.91,3.480,4.7 +13.5,0.91,2.650,20.1,13.3,0.91,2.650,19.2 +14.7,0.91,1.530,27.0,14.5,0.91,1.500,25.0 +16.3,0.91,1.260,338.4,16.1,0.91,1.280,335.2 +17.6,0.91,1.110,263.5,17.4,0.91,1.130,262.2 +18.5,0.91,0.850,241.0,18.3,0.91,0.900,240.1 +19.2,0.91,2.700,197.4,19.0,0.91,2.690,198.0 +18.8,0.91,4.760,182.9,18.6,0.91,4.770,183.6 +18.0,0.91,6.430,182.0,17.8,0.91,6.550,182.4 +17.4,0.91,6.990,175.6,17.3,0.91,6.940,176.9 +16.7,0.91,8.710,173.1,16.7,0.91,8.990,173.7 +15.6,0.91,9.280,168.2,15.7,0.91,9.640,169.6 +15.8,0.91,10.470,178.3,15.8,0.91,10.840,178.6 +15.5,0.91,11.750,175.8,15.5,0.91,12.180,176.1 +15.2,0.91,12.590,174.8,15.2,0.91,13.080,175.2 +15.8,0.91,12.760,182.1,15.8,0.91,13.250,182.4 +16.0,0.91,13.460,184.9,16.1,0.91,13.990,185.1 +15.8,0.91,13.300,181.0,15.8,0.91,13.810,181.5 +15.4,0.91,13.440,182.6,15.4,0.91,14.040,183.2 +15.3,0.91,13.470,182.0,15.3,0.91,14.280,182.5 +16.1,0.91,13.520,185.5,16.0,0.91,13.910,185.7 +16.6,0.91,13.840,186.4,16.5,0.91,14.270,186.7 +16.9,0.91,14.420,185.8,16.7,0.91,14.830,186.1 +16.6,0.91,14.560,181.7,16.5,0.91,14.980,181.8 +17.7,0.91,14.300,184.8,17.6,0.91,14.570,185.0 +18.4,0.91,14.340,185.8,18.2,0.91,14.530,185.9 +19.2,0.91,13.770,186.1,19.0,0.91,13.930,186.3 +20.6,0.91,12.390,179.7,20.4,0.91,12.550,180.0 +22.3,0.91,12.460,184.1,22.1,0.91,12.630,184.1 +22.9,0.91,11.860,178.8,22.6,0.91,12.050,179.1 +23.5,0.91,13.050,179.3,23.3,0.91,13.270,179.5 +23.6,0.91,15.080,179.8,23.4,0.91,15.270,179.8 +22.9,0.91,12.100,175.3,22.7,0.91,12.690,175.2 +22.4,0.91,14.110,174.7,22.3,0.91,14.780,174.6 +21.6,0.91,17.190,174.4,21.5,0.91,17.810,174.6 +20.6,0.91,18.530,178.2,20.6,0.91,19.290,178.4 +20.8,0.91,21.190,183.5,20.7,0.91,21.940,183.6 +20.2,0.91,19.920,184.0,20.2,0.91,20.680,184.0 +19.5,0.91,17.500,183.0,19.4,0.91,18.280,183.0 +18.9,0.91,17.050,183.7,18.8,0.91,17.840,183.9 +18.3,0.91,17.280,186.0,18.3,0.91,18.090,186.3 +18.3,0.91,17.390,186.5,18.2,0.91,18.140,186.7 +18.0,0.91,16.500,188.1,17.9,0.91,17.180,188.5 +17.9,0.91,17.160,190.4,17.8,0.91,17.800,190.8 +17.6,0.91,16.760,192.2,17.6,0.91,17.420,192.5 +17.6,0.91,16.480,193.4,17.5,0.91,17.120,193.6 +17.6,0.91,15.930,193.8,17.5,0.91,16.530,194.1 +17.9,0.91,14.720,193.6,17.8,0.91,15.350,193.7 +18.8,0.91,14.300,193.6,18.6,0.91,14.490,193.7 +19.8,0.91,12.550,193.7,19.6,0.91,12.690,193.8 +20.8,0.91,11.400,195.3,20.6,0.91,11.520,195.4 +21.9,0.91,9.670,195.1,21.7,0.91,9.790,195.1 +23.0,0.91,9.800,192.7,22.8,0.91,9.930,192.7 +23.7,0.91,9.540,189.8,23.5,0.91,9.680,189.8 +23.9,0.91,8.590,183.2,23.7,0.91,8.730,183.3 +24.0,0.91,9.830,176.5,23.9,0.91,10.080,176.6 +23.7,0.91,8.460,175.5,23.6,0.91,9.180,175.7 +23.4,0.91,10.720,180.5,23.3,0.91,11.440,180.5 +22.9,0.91,11.770,183.9,22.8,0.91,12.380,184.0 +22.4,0.91,12.990,183.5,22.3,0.91,13.690,183.5 +21.6,0.91,10.850,178.2,21.4,0.91,11.540,177.7 +20.6,0.91,11.820,174.6,20.6,0.91,12.820,174.5 +20.2,0.91,13.060,172.8,20.1,0.91,13.630,173.1 +20.0,0.91,14.180,170.9,19.9,0.91,14.660,171.3 +19.7,0.91,15.210,178.9,19.6,0.91,15.720,179.1 +19.6,0.91,16.620,189.6,19.4,0.91,17.060,189.9 +19.3,0.91,15.230,187.3,19.1,0.91,15.570,187.6 +19.2,0.91,15.630,192.0,19.0,0.91,16.180,192.4 +19.1,0.91,17.090,175.8,18.9,0.91,17.580,176.5 +18.9,0.91,17.250,187.1,18.7,0.91,17.730,187.3 +18.6,0.90,15.240,187.6,18.5,0.90,15.720,187.5 +19.4,0.91,14.240,187.9,19.3,0.91,14.530,188.0 +19.7,0.91,14.220,182.2,19.5,0.91,14.430,182.4 +20.2,0.91,13.220,192.4,20.0,0.91,13.380,192.6 +20.4,0.90,12.490,186.7,20.2,0.90,12.620,186.9 +22.0,0.90,10.140,200.1,21.8,0.90,10.260,200.3 +22.4,0.90,8.930,195.1,22.2,0.90,9.040,195.8 +23.5,0.90,8.950,215.3,23.3,0.90,9.110,215.6 +20.7,0.90,9.910,217.6,21.0,0.90,10.610,218.5 +22.2,0.90,9.840,214.4,22.1,0.90,10.270,214.4 +19.2,0.90,12.550,182.0,19.1,0.90,12.930,182.4 +18.4,0.90,12.180,188.6,18.3,0.90,12.600,188.8 +18.4,0.90,11.710,192.7,18.4,0.90,12.230,193.4 +19.4,0.90,12.100,209.4,19.4,0.90,12.770,210.2 +19.2,0.90,12.410,196.6,19.2,0.90,13.100,196.9 +18.8,0.90,11.520,196.1,18.7,0.90,12.120,196.8 +18.8,0.90,11.260,213.5,18.8,0.90,11.870,214.1 +19.0,0.90,12.370,228.3,18.9,0.90,13.150,228.8 +18.6,0.90,11.660,237.2,18.5,0.90,12.200,238.2 +18.5,0.90,11.820,239.1,18.5,0.90,12.530,240.3 +18.8,0.90,11.930,250.7,18.8,0.90,12.680,251.5 +17.1,0.90,14.370,283.4,17.0,0.90,15.480,285.0 +16.2,0.90,15.610,299.5,16.1,0.90,16.410,299.3 +14.7,0.90,14.340,286.7,14.6,0.90,15.610,288.8 +13.2,0.90,13.150,285.8,13.2,0.90,14.290,287.3 +13.1,0.90,13.950,293.8,12.9,0.90,14.400,293.9 +13.4,0.90,12.840,299.1,13.2,0.90,13.010,299.3 +14.6,0.90,10.420,300.7,14.4,0.90,10.570,300.9 +15.8,0.90,9.020,297.4,15.6,0.90,9.160,297.5 +16.7,0.90,9.200,299.6,16.5,0.90,9.330,299.5 +17.2,0.90,8.230,297.7,17.0,0.90,8.370,297.7 +17.7,0.90,6.900,295.4,17.5,0.90,7.030,295.3 +18.0,0.90,6.750,288.8,17.8,0.90,6.860,288.8 +18.1,0.90,5.660,292.3,17.9,0.90,5.770,291.8 +17.9,0.90,6.710,289.8,17.7,0.90,6.720,290.2 +17.9,0.90,6.050,277.4,17.8,0.90,6.010,278.1 +17.9,0.90,7.260,260.9,17.8,0.90,7.260,262.1 +18.0,0.90,8.330,267.9,18.0,0.90,8.390,268.1 +18.0,0.90,8.150,249.1,17.9,0.90,8.100,249.6 +18.2,0.90,10.420,263.0,18.2,0.90,10.360,264.6 +19.0,0.90,9.640,257.4,19.1,0.90,9.610,257.6 +19.4,0.90,9.380,244.2,19.4,0.90,9.410,245.2 +16.8,0.90,11.380,222.6,17.2,0.90,11.710,223.7 +14.9,0.90,9.600,267.6,15.0,0.90,9.850,273.0 +15.9,0.90,14.680,281.2,16.0,0.90,15.910,284.7 +14.6,0.90,14.700,278.2,14.6,0.90,15.860,281.6 +13.1,0.90,15.680,276.0,13.3,0.90,17.020,279.3 +12.6,0.90,16.030,279.1,12.7,0.90,17.220,282.4 +11.8,0.90,15.410,286.6,12.0,0.90,16.510,289.6 +11.5,0.90,10.820,285.0,11.4,0.90,11.530,286.2 +12.2,0.90,9.390,299.1,12.0,0.90,9.470,299.5 +13.7,0.90,8.740,308.9,13.5,0.90,8.780,309.3 +15.3,0.91,8.290,317.3,15.1,0.91,8.350,317.5 +16.7,0.91,7.450,338.1,16.5,0.91,7.560,338.1 +17.5,0.91,9.560,354.0,17.3,0.91,9.680,353.9 +17.6,0.91,9.860,1.1,17.4,0.91,10.020,1.0 +17.3,0.91,10.550,8.4,17.1,0.91,10.700,8.2 +17.1,0.91,10.770,10.3,16.9,0.91,10.960,10.2 +17.3,0.91,9.990,20.1,17.2,0.91,10.500,20.0 +17.2,0.91,10.520,17.4,17.2,0.91,10.900,18.1 +16.6,0.91,10.710,14.3,16.6,0.91,11.370,16.1 +15.5,0.91,12.400,25.8,15.5,0.91,13.100,27.3 +14.8,0.91,11.390,31.9,14.8,0.91,11.990,32.5 +14.5,0.91,10.470,34.2,14.5,0.91,11.200,34.3 +13.4,0.91,8.990,35.2,13.7,0.91,10.600,35.7 +12.9,0.91,7.810,42.8,13.1,0.91,8.910,42.7 +12.1,0.91,5.770,39.7,12.1,0.91,6.430,38.8 +11.3,0.91,5.210,33.7,11.4,0.91,5.710,34.0 +11.1,0.91,5.440,29.7,11.2,0.91,5.940,30.9 +10.8,0.92,5.380,26.6,10.9,0.92,5.800,28.1 +10.6,0.92,5.830,17.8,10.7,0.92,6.190,19.7 +10.3,0.92,6.000,15.9,10.3,0.92,6.180,18.3 +10.1,0.92,5.550,21.0,10.2,0.92,5.640,22.7 +9.9,0.92,4.450,15.3,9.9,0.92,5.130,17.7 +11.0,0.92,4.080,25.6,10.8,0.92,4.120,25.6 +12.2,0.92,3.800,35.1,12.0,0.92,3.800,35.0 +13.3,0.92,2.490,45.8,13.1,0.92,2.490,45.6 +14.3,0.92,1.760,34.9,14.1,0.92,1.730,34.5 +15.3,0.92,1.060,46.3,15.1,0.92,1.020,46.3 +16.0,0.91,0.600,18.6,15.8,0.91,0.550,17.6 +16.5,0.91,0.170,353.8,16.3,0.91,0.110,345.7 +16.6,0.91,1.890,118.5,16.4,0.91,1.880,120.3 +16.2,0.91,2.900,179.3,16.1,0.91,3.040,181.3 +16.1,0.91,5.330,169.3,15.9,0.91,5.340,169.9 +15.3,0.91,7.800,170.1,15.3,0.91,7.850,171.3 +15.4,0.91,8.440,175.8,15.3,0.91,8.470,176.5 +14.4,0.91,10.280,170.4,14.4,0.91,10.140,171.7 +13.6,0.91,12.010,167.1,13.8,0.91,12.260,168.4 +12.8,0.91,13.160,168.2,13.1,0.91,13.610,169.1 +12.4,0.91,13.340,172.5,12.8,0.91,13.910,173.1 +12.3,0.91,13.760,172.0,12.7,0.91,14.420,172.7 +11.0,0.91,14.120,178.0,11.3,0.91,14.770,178.4 +10.5,0.91,13.900,181.4,10.8,0.91,14.630,181.7 +10.2,0.91,13.770,181.6,10.6,0.91,14.510,182.2 +9.7,0.91,13.790,179.6,10.1,0.91,14.500,180.2 +9.1,0.91,13.790,179.6,9.4,0.91,14.520,180.4 +8.7,0.91,13.210,178.4,8.9,0.91,13.950,178.8 +8.3,0.91,12.450,181.8,8.3,0.91,13.810,182.1 +10.2,0.91,11.610,183.7,10.1,0.91,11.820,183.7 +11.6,0.91,11.340,183.7,11.5,0.91,11.490,183.8 +13.8,0.91,12.700,186.4,13.6,0.91,12.910,186.5 +14.7,0.91,12.300,184.2,14.5,0.91,12.500,184.3 +15.8,0.91,14.130,185.2,15.6,0.91,14.350,185.2 +16.3,0.91,14.800,193.8,16.1,0.91,15.070,193.7 +16.2,0.91,14.450,189.0,16.0,0.91,14.730,189.0 +16.0,0.91,13.230,190.4,15.8,0.91,13.590,190.4 +13.7,0.91,13.740,195.7,13.5,0.91,14.110,195.6 +14.0,0.91,14.690,195.6,13.8,0.91,15.140,195.3 +14.0,0.91,16.300,187.6,13.8,0.91,16.870,187.7 +13.4,0.91,16.270,191.0,13.2,0.91,16.910,191.0 +13.3,0.90,16.770,192.3,13.2,0.90,17.290,192.5 +13.4,0.90,17.870,192.1,13.3,0.90,18.460,192.1 +13.3,0.90,18.090,192.7,13.2,0.90,18.680,192.9 +13.1,0.90,19.240,194.7,13.0,0.90,19.840,195.0 +12.8,0.90,18.570,192.6,12.6,0.90,19.150,192.7 +12.4,0.90,18.200,192.1,12.2,0.90,18.790,192.5 +12.2,0.90,17.400,194.6,12.0,0.90,17.920,195.0 +12.0,0.90,18.070,197.1,11.9,0.90,18.610,197.3 +11.9,0.90,17.240,196.9,11.8,0.90,17.740,197.2 +11.8,0.90,16.210,199.6,11.7,0.90,16.730,199.9 +11.8,0.91,15.360,200.5,11.7,0.91,15.840,200.7 +12.2,0.91,14.000,197.2,12.1,0.91,14.550,197.4 +13.3,0.91,14.370,198.3,13.1,0.91,14.520,198.5 +13.5,0.91,11.960,197.8,13.3,0.91,12.100,198.1 +13.6,0.91,10.890,199.0,13.4,0.91,10.980,199.1 +13.2,0.91,10.640,195.0,13.0,0.91,10.780,195.5 +13.8,0.91,8.090,190.6,14.0,0.91,8.790,189.5 +17.7,0.91,9.230,181.8,17.5,0.91,9.390,181.9 +17.9,0.91,10.040,182.6,17.7,0.91,10.220,182.5 +15.1,0.91,11.920,168.3,14.9,0.91,12.070,168.5 +13.5,0.91,11.590,174.4,13.3,0.91,12.000,174.7 +13.2,0.91,12.240,181.2,13.1,0.91,12.690,181.3 +12.9,0.91,11.180,169.4,12.8,0.91,11.740,169.2 +13.0,0.91,11.450,159.6,12.9,0.91,11.970,159.6 +13.8,0.91,11.520,158.5,13.7,0.91,11.970,158.8 +14.2,0.91,11.840,165.9,14.1,0.91,12.380,166.2 +14.8,0.91,10.730,168.5,14.7,0.91,11.160,168.4 +15.2,0.91,11.590,172.3,15.0,0.91,12.040,172.6 +15.4,0.91,12.950,176.2,15.2,0.91,13.380,176.2 +15.5,0.91,14.020,179.2,15.3,0.91,14.520,179.3 +15.4,0.91,13.820,178.8,15.3,0.91,14.310,178.8 +15.5,0.91,14.960,181.4,15.3,0.91,15.380,181.5 +15.3,0.91,14.310,181.4,15.1,0.91,14.810,181.5 +15.0,0.91,15.030,183.5,14.8,0.91,15.530,183.7 +15.2,0.91,14.380,185.1,15.0,0.91,14.810,185.3 +15.1,0.91,14.130,187.2,15.0,0.91,14.820,187.5 +16.0,0.91,13.500,187.1,15.9,0.91,13.780,187.4 +17.1,0.91,13.470,188.3,16.9,0.91,13.690,188.6 +17.8,0.91,13.490,190.7,17.6,0.91,13.660,190.9 +18.2,0.91,12.640,188.1,18.0,0.91,12.790,188.5 +18.9,0.91,10.600,188.0,18.7,0.91,10.730,188.1 +19.6,0.90,11.110,189.3,19.4,0.90,11.190,189.2 +20.3,0.90,10.180,179.7,20.1,0.90,10.330,179.7 +21.0,0.90,10.410,190.1,20.8,0.90,10.590,190.0 +20.9,0.90,11.420,181.8,20.8,0.90,11.990,181.8 +20.3,0.90,11.120,166.1,20.2,0.90,11.530,167.7 +19.6,0.91,11.640,186.8,19.7,0.91,12.450,188.0 +16.1,0.91,6.730,233.6,16.2,0.91,6.790,237.0 +17.9,0.91,8.410,228.2,18.3,0.91,8.780,230.9 +18.4,0.91,6.790,237.3,18.9,0.91,6.790,242.3 +19.2,0.91,6.690,231.6,19.1,0.91,6.780,232.7 +18.1,0.91,5.260,308.2,18.1,0.91,5.280,307.8 +10.9,0.91,10.600,358.3,10.7,0.91,11.330,358.3 +9.6,0.91,12.210,358.5,9.5,0.91,12.730,358.5 +8.3,0.91,14.490,357.1,8.1,0.91,14.920,357.1 +7.2,0.91,12.780,4.3,7.0,0.91,13.230,4.5 +6.5,0.91,10.750,1.2,6.3,0.91,11.390,1.6 +5.5,0.91,12.230,0.3,5.4,0.91,12.710,0.8 +5.0,0.91,13.900,8.9,4.8,0.91,14.320,9.1 +4.9,0.91,12.830,8.1,4.7,0.91,12.980,8.2 +5.7,0.91,10.110,7.9,5.5,0.91,10.210,7.9 +6.8,0.92,9.970,4.6,6.6,0.92,10.060,4.6 +8.2,0.92,9.140,5.8,8.0,0.92,9.220,5.7 +9.7,0.92,8.390,7.6,9.5,0.92,8.470,7.5 +10.8,0.92,8.370,4.2,10.6,0.92,8.450,4.2 +11.5,0.92,7.600,6.5,11.3,0.92,7.690,6.2 +11.9,0.92,7.260,7.9,11.7,0.92,7.350,7.8 +11.8,0.92,6.930,14.0,11.6,0.92,7.010,13.8 +11.3,0.92,6.610,31.7,11.1,0.92,6.760,31.2 +10.7,0.92,7.880,36.3,10.6,0.92,8.010,36.5 +9.9,0.92,7.630,51.5,9.8,0.92,7.870,51.6 +9.2,0.92,6.840,55.0,9.2,0.92,7.320,54.1 +8.3,0.92,7.130,63.1,8.4,0.92,7.570,61.2 +8.1,0.92,6.630,59.8,8.2,0.92,7.160,58.4 +7.7,0.92,5.720,62.9,7.9,0.92,6.240,61.6 +7.5,0.92,4.870,63.1,7.6,0.92,5.320,61.9 +7.6,0.92,4.200,62.3,7.8,0.92,4.720,61.1 +7.6,0.92,3.470,70.3,7.8,0.92,3.930,67.4 +7.6,0.92,3.250,73.8,7.8,0.92,3.660,70.6 +8.0,0.92,3.600,68.4,8.3,0.92,4.010,67.1 +8.2,0.92,3.340,68.9,8.4,0.92,3.770,67.7 +8.3,0.92,3.170,67.8,8.6,0.92,3.600,67.0 +8.5,0.92,3.220,79.4,8.7,0.92,3.570,78.4 +9.0,0.92,3.270,90.3,9.1,0.92,3.610,90.0 +9.5,0.92,1.960,90.1,9.3,0.92,2.030,91.9 +10.8,0.92,1.850,87.2,10.6,0.92,1.860,89.5 +12.1,0.92,1.910,102.0,11.9,0.92,1.930,103.1 +13.0,0.92,3.300,129.3,12.8,0.92,3.300,128.7 +13.6,0.92,3.360,127.7,13.4,0.92,3.370,127.3 +14.0,0.92,3.280,130.5,13.8,0.92,3.310,130.9 +14.2,0.92,3.550,133.9,14.0,0.92,3.590,134.2 +14.0,0.92,4.150,147.3,13.8,0.92,4.230,147.3 +13.6,0.92,5.260,157.9,13.4,0.92,5.290,157.6 +13.1,0.92,6.080,159.5,13.0,0.92,5.930,160.4 +12.7,0.92,7.000,156.1,12.6,0.92,6.980,156.8 +12.1,0.92,7.810,172.5,12.0,0.92,8.110,172.8 +11.8,0.92,8.790,172.0,11.8,0.92,9.160,171.9 +11.3,0.92,9.730,177.4,11.3,0.92,10.190,177.3 +11.1,0.92,10.950,178.3,11.1,0.92,11.450,178.4 +10.8,0.92,11.350,179.2,10.8,0.92,11.850,179.5 +10.4,0.92,11.450,180.0,10.4,0.92,11.970,180.3 +10.0,0.92,11.080,184.2,10.0,0.92,11.670,184.1 +9.8,0.92,11.850,184.8,9.7,0.92,12.400,184.9 +9.5,0.92,11.610,183.6,9.5,0.92,12.110,183.6 +9.2,0.92,11.310,184.1,9.2,0.92,11.850,184.3 +9.1,0.92,11.640,184.8,9.1,0.92,12.180,185.0 +9.2,0.92,11.300,187.1,9.1,0.92,11.740,187.1 +8.8,0.92,10.810,186.6,8.7,0.92,11.400,186.4 +9.4,0.92,9.510,188.6,9.3,0.92,9.690,188.7 +10.5,0.92,10.370,191.6,10.3,0.92,10.520,191.8 +11.3,0.91,10.830,191.8,11.1,0.91,10.960,191.8 +12.2,0.91,11.810,193.3,12.0,0.91,11.960,193.4 +12.7,0.91,11.870,198.6,12.5,0.91,12.040,198.6 +11.4,0.91,11.160,202.5,11.2,0.91,11.310,202.5 +9.0,0.91,11.300,199.7,8.8,0.91,11.410,199.7 +8.1,0.91,11.600,195.3,7.9,0.91,11.820,195.2 +8.1,0.91,12.930,194.9,7.9,0.91,13.300,195.0 +8.3,0.91,14.000,200.4,8.1,0.91,14.690,200.6 +9.0,0.91,14.630,200.1,9.0,0.91,15.170,199.9 +9.9,0.91,13.920,197.9,9.8,0.91,14.440,198.0 +10.3,0.91,14.650,198.4,10.2,0.91,15.210,198.6 +10.3,0.91,15.390,198.8,10.2,0.91,15.980,199.3 +10.3,0.91,14.980,202.8,10.3,0.91,15.670,203.3 +10.2,0.91,14.580,202.4,10.2,0.91,15.300,203.1 +9.9,0.91,15.300,205.1,9.9,0.91,16.030,205.8 +9.6,0.91,16.110,206.4,9.6,0.91,16.910,207.1 +9.5,0.91,16.440,207.6,9.5,0.91,17.280,208.2 +9.2,0.91,15.740,205.4,9.3,0.91,16.510,206.4 +8.9,0.91,14.600,204.2,8.9,0.91,15.250,205.9 +8.7,0.91,14.270,208.1,8.8,0.91,14.920,209.7 +8.7,0.91,14.140,209.8,8.8,0.91,14.760,211.5 +9.2,0.91,11.930,211.3,9.1,0.91,12.640,212.7 +10.7,0.91,10.110,208.9,10.6,0.91,10.270,209.9 +12.7,0.91,8.460,209.0,12.5,0.91,8.470,209.7 +14.5,0.91,8.110,207.3,14.3,0.91,8.130,207.8 +16.0,0.91,7.050,201.2,15.8,0.91,7.080,201.6 +17.4,0.91,6.500,196.2,17.2,0.91,6.540,196.5 +18.4,0.91,6.100,195.3,18.2,0.91,6.150,195.5 +19.0,0.91,6.150,183.3,18.8,0.91,6.210,183.5 +18.9,0.91,6.670,177.9,18.8,0.91,6.830,178.1 +18.6,0.91,8.640,165.5,18.5,0.91,8.760,166.7 +18.5,0.91,10.600,169.4,18.5,0.91,10.770,170.0 +17.9,0.91,11.540,169.4,18.1,0.91,11.600,170.9 +17.1,0.91,11.960,183.8,17.3,0.91,12.390,186.6 +16.3,0.91,12.710,190.8,16.6,0.91,13.200,192.3 +15.8,0.91,12.240,193.1,16.0,0.91,12.540,193.5 +14.9,0.91,11.370,192.6,15.2,0.91,11.670,193.6 +14.7,0.91,11.570,194.0,15.1,0.91,11.930,194.3 +14.6,0.91,11.630,194.5,15.0,0.91,11.970,194.4 +14.1,0.91,11.360,195.2,14.6,0.91,11.640,195.9 +13.7,0.91,11.060,191.1,14.1,0.91,11.250,192.4 +12.8,0.91,8.300,189.9,13.3,0.91,8.710,191.1 +12.9,0.91,6.650,191.1,13.1,0.91,6.850,192.4 +12.5,0.91,4.770,192.1,12.7,0.91,4.980,193.9 +12.0,0.91,3.760,178.5,12.2,0.91,3.990,181.3 +12.6,0.92,3.500,183.0,12.7,0.92,3.860,185.5 +13.1,0.92,2.860,164.8,12.9,0.92,2.850,165.6 +14.3,0.92,3.130,177.3,14.1,0.92,3.150,177.4 +15.4,0.92,3.950,179.5,15.2,0.92,3.970,179.3 +16.3,0.92,4.290,181.6,16.1,0.92,4.310,181.6 +17.1,0.91,4.720,177.5,16.9,0.91,4.750,177.5 +17.6,0.91,5.070,181.0,17.4,0.91,5.100,181.0 +17.7,0.91,5.630,176.6,17.5,0.91,5.650,176.7 +17.2,0.91,6.270,168.4,17.0,0.91,6.320,168.4 +16.1,0.91,7.630,155.8,15.9,0.91,7.910,156.3 +14.9,0.91,9.330,154.3,14.8,0.91,9.680,154.3 +14.4,0.91,9.770,158.5,14.4,0.91,10.180,158.9 +14.4,0.91,10.050,162.3,14.5,0.91,10.520,163.1 +13.8,0.91,11.130,161.8,13.9,0.91,11.660,162.6 +13.2,0.91,11.990,172.4,13.3,0.91,12.580,172.3 +12.5,0.91,12.480,178.7,12.6,0.91,13.060,178.3 +12.3,0.91,12.800,183.8,12.5,0.91,13.440,183.7 +12.0,0.91,11.840,186.4,12.0,0.91,12.480,186.8 +12.3,0.91,10.650,192.0,12.5,0.91,11.210,193.9 +12.1,0.91,9.580,192.9,12.2,0.91,10.130,193.6 +12.1,0.91,9.540,204.4,12.1,0.91,10.030,204.5 +12.0,0.91,9.390,211.3,11.9,0.91,9.730,211.7 +12.2,0.91,9.050,215.9,12.1,0.91,9.290,215.9 +12.4,0.91,8.450,218.5,12.3,0.91,8.730,219.1 +12.2,0.91,6.050,221.4,12.0,0.91,6.160,222.3 +12.8,0.91,5.920,225.8,12.6,0.91,5.980,225.9 +12.8,0.91,6.350,224.9,12.6,0.91,6.380,224.8 +13.8,0.91,5.540,224.4,13.6,0.91,5.580,224.2 +14.8,0.91,5.040,221.7,14.6,0.91,5.050,221.8 +16.1,0.91,4.440,215.5,15.9,0.91,4.450,215.7 +17.2,0.91,3.900,209.6,17.0,0.91,3.930,209.6 +17.7,0.91,3.720,198.1,17.5,0.91,3.720,198.7 +17.6,0.91,3.420,189.4,17.4,0.91,3.430,190.0 +17.1,0.91,4.380,176.3,16.9,0.91,4.340,177.1 +17.0,0.91,4.320,173.8,16.9,0.91,4.300,174.2 +16.7,0.91,4.530,167.2,16.6,0.91,4.150,169.5 +16.8,0.91,3.840,166.1,16.8,0.91,3.680,168.1 +16.9,0.91,2.880,164.5,16.9,0.91,2.650,168.1 +17.1,0.92,1.200,114.0,17.0,0.92,0.960,106.3 +16.7,0.92,1.530,68.9,16.9,0.92,1.370,63.0 +16.5,0.92,3.020,45.4,16.6,0.92,3.310,45.4 +10.6,0.92,8.530,32.5,10.5,0.92,8.890,32.5 +10.4,0.92,7.820,34.5,10.3,0.92,8.450,35.1 +8.3,0.92,10.010,24.9,8.1,0.92,10.140,25.0 +5.6,0.92,12.670,28.9,5.5,0.92,12.850,29.0 +4.4,0.92,13.240,26.2,4.2,0.92,13.410,26.2 +3.8,0.92,13.070,22.8,3.6,0.92,13.230,22.8 +2.5,0.92,14.490,21.8,2.3,0.92,14.660,22.1 +1.4,0.93,14.100,19.5,1.2,0.93,14.270,19.5 +-0.1,0.93,14.790,20.0,-0.3,0.93,14.950,20.0 +-0.3,0.93,13.320,21.2,-0.6,0.93,13.430,21.1 +-0.4,0.93,12.210,19.2,-0.6,0.93,12.290,19.2 +0.1,0.93,11.640,16.0,-0.1,0.93,11.710,16.1 +1.8,0.93,10.550,19.8,1.6,0.93,10.650,19.8 +3.7,0.93,10.530,21.8,3.5,0.93,10.630,21.8 +4.0,0.93,10.580,26.3,3.8,0.93,10.680,26.1 +3.8,0.93,9.800,27.2,3.6,0.93,9.900,27.1 +3.5,0.93,9.720,22.5,3.3,0.93,10.020,22.8 +3.1,0.93,9.660,29.1,2.9,0.93,10.160,29.5 +2.6,0.93,9.410,29.9,2.5,0.93,9.740,30.9 +2.2,0.93,9.960,32.2,2.1,0.93,10.390,32.8 +1.7,0.93,9.200,38.6,1.6,0.93,9.520,40.7 +0.8,0.93,9.140,49.8,0.6,0.93,9.510,51.6 +0.2,0.93,8.290,52.8,-0.0,0.93,8.630,54.4 +-0.6,0.93,7.720,55.9,-0.8,0.93,8.050,57.9 +-1.2,0.93,6.600,67.0,-1.4,0.93,6.910,69.2 +-1.3,0.93,4.820,75.3,-1.3,0.93,5.070,72.6 +-1.7,0.93,4.010,87.3,-1.7,0.93,3.750,82.7 +-1.7,0.93,2.760,99.0,-1.6,0.93,2.660,92.4 +-1.3,0.92,1.710,104.1,-1.2,0.92,1.710,94.4 +-0.9,0.92,1.590,133.7,-0.8,0.92,1.570,122.4 +-0.3,0.92,1.830,167.6,-0.2,0.92,1.600,157.9 +0.3,0.92,2.140,191.4,0.5,0.92,1.950,185.2 +1.7,0.92,2.590,196.2,1.5,0.92,2.540,195.8 +3.4,0.92,2.390,203.2,3.2,0.92,2.380,203.5 +4.7,0.92,2.740,203.6,4.5,0.92,2.740,204.0 +6.0,0.92,3.220,200.8,5.8,0.92,3.210,201.2 +7.0,0.92,3.670,197.8,6.8,0.92,3.670,198.3 +7.8,0.92,3.900,197.3,7.6,0.92,3.900,197.9 +8.1,0.92,4.340,190.5,7.9,0.92,4.350,190.9 +7.8,0.92,5.150,188.5,7.6,0.92,5.160,188.8 +7.4,0.92,6.400,183.8,7.2,0.92,6.440,183.7 +6.7,0.92,8.720,179.1,6.6,0.92,8.710,180.1 +6.3,0.92,9.940,178.2,6.4,0.92,9.990,179.7 +6.2,0.92,10.580,182.0,6.4,0.92,10.820,184.2 +5.3,0.92,12.090,177.6,5.5,0.92,12.560,178.3 +4.9,0.92,13.100,183.4,5.1,0.92,13.660,183.9 +4.9,0.91,13.500,187.2,5.2,0.91,14.130,187.7 +4.8,0.91,13.730,190.8,5.2,0.91,14.320,191.5 +4.7,0.91,14.730,195.4,5.0,0.91,15.280,195.6 +4.2,0.91,12.930,198.7,4.6,0.91,13.540,200.1 +4.8,0.91,13.920,202.9,5.1,0.91,14.600,203.6 +4.7,0.91,13.870,203.5,4.9,0.91,14.580,204.1 +4.2,0.91,14.040,200.9,4.4,0.91,14.660,201.4 +4.0,0.91,14.260,199.3,4.1,0.91,14.810,199.7 +4.1,0.91,14.400,200.8,4.1,0.91,14.980,201.2 +4.0,0.91,14.070,196.8,3.9,0.91,14.510,197.1 +4.9,0.91,12.550,197.0,4.7,0.91,12.870,197.3 +6.4,0.91,11.160,197.8,6.2,0.91,11.280,198.0 +8.2,0.91,11.890,198.9,8.0,0.91,11.990,199.1 +9.8,0.91,11.610,195.2,9.7,0.91,11.720,195.4 +11.4,0.91,12.080,197.0,11.2,0.91,12.200,197.1 +12.4,0.91,12.060,194.5,12.2,0.91,12.200,194.6 +12.9,0.91,12.250,196.7,12.7,0.91,12.400,196.9 +12.9,0.91,12.560,194.0,12.8,0.91,12.890,194.1 +12.5,0.91,14.160,191.2,12.4,0.91,14.690,191.4 +12.0,0.91,14.530,194.3,12.0,0.91,15.060,194.6 +11.2,0.91,14.680,198.2,11.2,0.91,15.200,198.7 +10.2,0.91,14.820,200.5,10.1,0.91,15.430,201.3 +9.3,0.91,15.990,202.8,9.3,0.91,16.670,203.8 +8.9,0.90,15.140,202.6,8.9,0.90,15.800,204.4 +8.8,0.90,15.070,207.5,8.9,0.90,15.980,209.5 +8.6,0.90,14.440,205.8,8.8,0.90,15.350,208.1 +9.1,0.91,15.010,210.3,9.3,0.91,16.020,212.6 +9.3,0.90,15.320,216.0,9.6,0.90,16.410,218.2 +9.3,0.90,14.160,220.3,9.6,0.90,15.000,222.5 +10.2,0.90,12.730,231.7,10.8,0.90,13.100,234.3 +11.6,0.90,12.640,240.7,12.3,0.90,13.270,241.8 +12.1,0.90,12.450,242.5,13.1,0.90,12.640,244.7 +12.6,0.90,10.950,246.3,13.6,0.90,11.110,249.2 +12.4,0.90,9.190,238.0,13.6,0.90,9.730,240.7 +13.0,0.90,8.130,227.3,13.5,0.90,8.970,230.8 +15.2,0.90,6.890,221.1,15.1,0.90,6.970,222.1 +16.9,0.90,7.070,211.4,16.8,0.90,7.080,211.9 +18.6,0.90,7.490,207.0,18.4,0.90,7.510,207.5 +19.1,0.90,7.880,194.7,18.9,0.90,7.890,195.2 +19.6,0.90,8.920,193.8,19.4,0.90,8.990,194.0 +20.1,0.90,9.870,186.2,19.9,0.90,9.950,186.4 +20.0,0.90,10.580,175.7,19.8,0.90,10.970,175.9 +20.6,0.90,12.840,179.7,20.6,0.90,13.280,180.2 +19.9,0.90,14.910,185.1,19.9,0.90,15.620,185.6 +19.1,0.90,14.470,187.8,19.1,0.90,15.100,188.5 +18.1,0.90,14.270,186.4,18.1,0.90,15.000,187.7 +17.0,0.90,14.130,189.1,17.0,0.90,14.880,190.3 +16.2,0.90,14.680,190.5,16.2,0.90,15.470,191.6 +15.4,0.90,13.920,192.4,15.4,0.90,14.630,193.7 +15.2,0.90,14.750,193.0,15.2,0.90,15.580,194.2 +14.4,0.90,15.220,193.9,14.4,0.90,15.930,195.1 +14.0,0.90,13.920,194.5,14.0,0.90,14.850,196.1 +14.1,0.90,14.720,200.1,14.1,0.90,15.530,200.8 +14.5,0.90,14.540,212.2,14.5,0.90,15.310,212.2 +14.6,0.90,15.740,213.1,14.6,0.90,16.680,212.7 +14.0,0.90,15.540,208.3,14.0,0.90,16.510,208.8 +14.1,0.90,16.830,206.3,14.1,0.90,17.710,206.8 +14.2,0.90,15.210,210.8,14.1,0.90,16.400,211.4 +15.4,0.90,12.890,207.8,15.2,0.90,13.100,208.2 +17.2,0.90,13.040,207.0,17.1,0.90,13.220,207.4 +18.8,0.90,12.670,202.6,18.6,0.90,12.790,202.9 +20.3,0.90,13.120,208.2,20.1,0.90,13.260,208.5 +21.3,0.90,12.980,206.2,21.1,0.90,13.120,206.3 +22.7,0.90,12.560,206.7,22.5,0.90,12.720,206.9 +23.4,0.90,12.510,205.7,23.2,0.90,12.710,205.8 +23.3,0.90,12.030,193.9,23.1,0.90,12.390,194.2 +22.6,0.90,12.860,189.2,22.5,0.90,13.390,190.5 +21.7,0.90,14.050,198.9,21.7,0.90,14.890,199.3 +21.1,0.90,15.920,204.1,21.1,0.90,16.950,204.5 +20.0,0.90,15.560,211.0,19.9,0.90,16.550,211.2 +18.8,0.90,15.550,211.6,18.8,0.90,16.640,212.0 +18.3,0.90,15.800,214.1,18.3,0.90,16.720,214.5 +18.1,0.90,14.450,216.7,18.2,0.90,15.370,217.3 +17.9,0.90,15.530,220.6,18.1,0.90,16.710,221.4 +17.9,0.90,14.370,223.9,18.0,0.90,15.540,224.7 +17.8,0.90,13.020,228.2,18.1,0.90,14.230,230.4 +17.6,0.90,11.520,228.7,17.9,0.90,12.420,233.0 +17.4,0.90,11.540,231.2,17.7,0.90,12.160,238.1 +18.8,0.90,16.140,264.1,19.1,0.90,17.780,267.4 +17.9,0.90,16.450,273.8,18.2,0.90,18.170,276.4 +16.8,0.90,13.840,270.6,17.0,0.90,15.440,273.5 +17.4,0.90,11.440,279.5,17.3,0.90,12.120,279.9 +17.5,0.90,8.830,282.0,17.4,0.90,9.020,282.2 +18.6,0.90,7.070,300.8,18.4,0.90,7.160,300.7 +20.0,0.90,7.010,295.1,19.8,0.90,7.110,295.2 +20.6,0.91,7.130,299.0,20.4,0.91,7.220,298.9 +21.5,0.91,7.810,285.3,21.3,0.91,7.900,285.3 +22.1,0.91,6.990,290.6,21.9,0.91,7.090,290.6 +22.4,0.91,5.820,282.9,22.3,0.91,5.970,283.2 +22.3,0.91,7.290,299.4,22.1,0.91,7.450,299.1 +22.1,0.91,6.890,292.8,21.9,0.91,6.900,292.1 +22.0,0.91,5.980,298.6,21.8,0.91,5.720,298.1 +21.9,0.91,4.700,304.0,21.9,0.91,4.880,303.5 +21.8,0.91,4.890,306.6,21.9,0.91,5.030,308.3 +20.9,0.91,4.510,331.4,21.0,0.91,4.770,334.0 +17.7,0.91,5.250,32.4,17.7,0.91,5.330,34.4 +17.2,0.91,8.130,86.1,17.2,0.91,8.900,87.2 +14.7,0.91,8.280,75.6,14.7,0.91,9.290,78.0 +13.4,0.91,9.070,69.3,13.4,0.91,10.400,74.7 +12.1,0.91,9.040,65.2,12.0,0.91,9.970,71.3 +11.3,0.91,8.250,62.4,11.3,0.91,8.800,67.2 +10.7,0.91,8.250,59.9,10.7,0.91,8.640,63.6 +10.3,0.91,8.140,57.0,10.3,0.91,8.520,60.8 +9.7,0.91,7.980,56.7,9.7,0.91,8.350,60.2 +9.2,0.91,7.740,54.4,9.2,0.91,8.110,58.3 +9.0,0.91,6.420,59.5,8.9,0.91,7.040,62.1 +9.9,0.91,6.150,60.2,9.7,0.91,6.180,60.9 +11.1,0.91,6.010,62.3,10.9,0.91,6.030,62.9 +12.5,0.91,5.940,61.8,12.3,0.91,5.980,62.3 +13.5,0.91,5.890,61.9,13.3,0.91,5.920,62.2 +14.3,0.91,5.740,60.8,14.2,0.91,5.780,61.1 +15.0,0.91,5.550,65.9,14.8,0.91,5.600,66.1 +15.1,0.91,5.510,66.8,14.9,0.91,5.550,67.1 +15.0,0.91,5.580,67.2,14.8,0.91,5.710,67.8 +14.7,0.91,5.960,77.7,14.5,0.91,6.330,79.4 +14.3,0.91,6.940,77.5,14.2,0.91,7.480,79.0 +13.8,0.91,6.750,93.1,13.6,0.91,7.200,94.4 +13.3,0.91,7.950,112.3,13.2,0.91,8.590,112.2 +13.0,0.91,7.610,117.7,12.9,0.91,8.600,117.8 +12.7,0.91,8.560,119.2,12.7,0.91,9.630,119.9 +12.4,0.91,7.110,122.7,12.3,0.91,8.460,124.3 +12.3,0.91,9.910,128.3,12.2,0.91,10.790,129.4 +12.3,0.91,11.130,133.1,12.3,0.91,11.830,135.4 +12.2,0.91,11.380,146.8,12.3,0.91,11.940,148.3 +12.0,0.91,11.540,153.2,12.1,0.91,12.100,154.3 +11.7,0.91,11.340,162.2,11.8,0.91,11.620,163.6 +11.3,0.91,11.330,162.4,11.5,0.91,11.700,163.5 +11.1,0.91,12.070,164.9,11.3,0.91,12.530,165.6 +10.5,0.91,12.270,165.4,10.7,0.91,12.710,166.2 +10.5,0.91,11.990,171.7,10.4,0.91,12.180,171.7 +11.7,0.91,10.340,174.6,11.5,0.91,10.550,174.6 +12.7,0.91,9.710,173.5,12.5,0.91,9.800,173.7 +13.7,0.91,8.770,174.3,13.5,0.91,8.840,174.5 +15.2,0.91,8.700,171.8,15.0,0.91,8.780,172.0 +15.8,0.91,8.920,169.0,15.6,0.91,9.000,169.2 +16.3,0.91,9.490,174.1,16.1,0.91,9.590,174.2 +16.3,0.91,10.970,171.9,16.1,0.91,11.090,172.1 +16.4,0.91,11.170,173.4,16.2,0.91,11.390,173.4 +16.0,0.91,13.090,166.8,15.9,0.91,13.570,166.8 +15.8,0.91,14.340,166.7,15.7,0.91,14.990,166.8 +15.2,0.90,15.460,165.5,15.1,0.90,16.120,165.6 +14.3,0.90,17.180,166.6,14.2,0.90,17.920,166.5 +13.7,0.90,18.040,170.5,13.7,0.90,18.760,170.7 +13.4,0.90,18.060,175.8,13.4,0.90,18.730,176.2 +13.4,0.90,16.980,180.2,13.3,0.90,17.540,180.3 +13.2,0.90,16.530,181.2,13.1,0.90,17.040,181.4 +12.6,0.90,16.670,180.7,12.6,0.90,17.240,181.2 +12.3,0.90,16.730,182.9,12.3,0.90,17.250,183.6 +12.3,0.90,16.540,186.2,12.3,0.90,17.050,186.8 +12.3,0.90,16.430,187.8,12.3,0.90,16.970,188.6 +12.2,0.90,15.670,191.9,12.0,0.90,16.040,192.3 +12.9,0.90,15.830,194.2,12.8,0.90,16.260,194.5 +13.4,0.90,15.200,195.5,13.2,0.90,15.630,195.8 +13.7,0.90,15.030,196.0,13.6,0.90,15.710,196.8 +14.0,0.90,14.740,197.8,13.9,0.90,15.350,198.3 +14.8,0.90,15.200,198.3,14.6,0.90,15.500,198.9 +15.6,0.90,14.170,202.7,15.4,0.90,14.340,203.0 +16.9,0.90,13.660,196.2,16.6,0.90,13.770,196.6 +18.1,0.90,12.990,194.5,17.9,0.90,13.130,194.8 +19.4,0.90,13.120,200.0,19.2,0.90,13.290,200.0 +19.2,0.90,13.930,195.3,19.0,0.90,14.080,195.4 +18.5,0.90,13.370,189.7,18.3,0.90,13.590,189.8 +17.8,0.90,14.420,190.2,17.6,0.90,15.010,190.3 +17.3,0.90,15.710,192.2,17.1,0.90,16.220,192.3 +17.2,0.90,15.850,192.6,17.0,0.90,16.290,192.8 +17.0,0.90,15.950,192.1,16.9,0.90,16.370,192.2 +16.9,0.90,13.990,185.9,16.7,0.90,14.420,186.0 +16.5,0.90,15.170,190.5,16.4,0.90,15.640,190.8 +15.9,0.90,14.330,187.8,15.8,0.90,14.750,188.0 +16.1,0.90,13.900,191.2,16.0,0.90,14.270,191.3 +16.6,0.90,15.630,191.8,16.4,0.90,16.130,192.1 +16.5,0.90,13.630,188.9,16.3,0.90,14.050,189.1 +16.9,0.90,14.520,191.6,16.7,0.90,14.960,191.8 +16.6,0.90,14.250,192.6,16.5,0.90,14.660,193.1 +16.6,0.90,13.050,190.0,16.4,0.90,13.380,190.4 +16.7,0.91,13.050,191.6,16.5,0.91,13.410,192.0 +16.9,0.91,12.030,193.2,16.8,0.91,12.430,193.8 +17.2,0.91,11.890,198.3,17.1,0.91,12.320,199.1 +17.7,0.91,10.010,200.6,17.6,0.91,10.150,201.3 +18.1,0.91,9.410,203.5,17.9,0.91,9.570,204.3 +19.8,0.91,8.300,212.9,19.6,0.91,8.420,213.3 +20.2,0.91,6.710,200.7,20.0,0.91,6.830,201.1 +21.5,0.91,6.550,218.5,21.3,0.91,6.660,218.3 +21.7,0.91,5.690,196.2,21.5,0.91,5.720,196.3 +22.3,0.91,4.100,236.8,22.1,0.91,4.150,236.0 +22.2,0.91,2.780,254.7,22.0,0.91,2.810,253.1 +21.8,0.91,4.560,11.9,21.6,0.91,4.580,11.7 +18.5,0.91,8.050,27.8,18.4,0.91,8.440,27.4 +11.6,0.91,14.930,22.3,11.4,0.91,15.050,22.6 +8.0,0.91,12.880,31.0,7.8,0.91,13.010,30.7 +6.7,0.91,12.790,29.6,6.5,0.91,12.910,29.4 +4.8,0.91,12.950,32.9,4.7,0.91,13.050,32.5 +3.8,0.91,14.220,26.5,3.6,0.91,14.370,26.4 +2.4,0.92,14.310,23.4,2.2,0.92,14.440,23.5 +1.2,0.92,13.990,20.7,1.0,0.92,14.120,20.7 +0.3,0.92,15.230,20.9,0.1,0.92,15.410,21.0 +-0.2,0.92,14.550,19.1,-0.4,0.92,14.710,19.2 +-0.8,0.92,14.680,21.2,-1.0,0.92,14.840,21.1 +-1.8,0.92,14.090,15.4,-2.0,0.92,14.250,15.6 +-2.8,0.92,14.650,10.8,-3.0,0.92,14.820,11.0 +-3.1,0.92,13.680,18.2,-3.3,0.92,13.820,18.2 +-3.6,0.92,14.030,19.3,-3.8,0.92,14.220,19.2 +-4.1,0.92,13.620,18.0,-4.3,0.92,13.790,17.9 +-4.3,0.92,13.580,15.7,-4.5,0.92,13.750,15.6 +-4.6,0.92,14.790,13.8,-4.8,0.92,14.940,13.9 +-4.3,0.92,11.920,12.6,-4.5,0.92,12.040,12.6 +-4.4,0.92,11.770,14.8,-4.6,0.92,11.880,14.7 +-4.4,0.92,12.300,14.1,-4.6,0.92,12.440,14.2 +-4.4,0.92,11.360,9.3,-4.6,0.92,11.480,9.4 +-4.5,0.92,11.210,15.2,-4.7,0.92,11.330,15.1 +-4.4,0.92,10.400,10.6,-4.6,0.92,10.530,10.5 +-4.6,0.92,9.490,13.8,-4.8,0.92,9.610,13.7 +-4.6,0.92,10.570,15.0,-4.8,0.92,10.700,14.8 +-4.6,0.92,11.020,8.8,-4.8,0.92,11.120,9.0 +-4.5,0.92,10.060,10.1,-4.7,0.92,10.210,10.1 +-4.4,0.92,9.040,5.7,-4.6,0.92,9.130,5.7 +-4.3,0.92,10.140,11.3,-4.5,0.92,10.290,11.3 +-4.2,0.92,10.170,16.0,-4.4,0.92,10.370,16.1 +-3.8,0.92,9.580,12.0,-4.0,0.92,9.770,11.8 +-3.6,0.92,10.240,10.1,-3.8,0.92,10.410,10.3 +-3.6,0.92,10.530,5.8,-3.8,0.92,10.720,6.0 +-3.7,0.92,11.450,15.8,-3.9,0.92,11.740,15.8 +-4.0,0.92,12.600,22.8,-4.2,0.92,12.850,22.7 +-4.1,0.92,11.200,11.2,-4.3,0.92,11.400,11.7 +-4.0,0.92,11.490,16.9,-4.2,0.92,11.760,16.9 +-3.7,0.92,10.380,18.3,-3.9,0.92,10.580,18.3 +-3.5,0.92,11.300,23.1,-3.6,0.92,11.630,22.9 +-3.6,0.92,12.600,22.9,-3.8,0.92,12.790,23.0 +-3.5,0.92,11.280,15.7,-3.7,0.92,11.420,15.6 +-3.9,0.92,11.990,19.6,-4.0,0.92,12.120,19.7 +-4.0,0.92,12.020,22.6,-4.2,0.92,12.160,22.7 +-4.3,0.92,11.570,18.3,-4.5,0.92,11.690,18.4 +-4.6,0.92,11.230,15.9,-4.8,0.92,11.350,16.1 +-4.7,0.92,10.790,22.0,-4.8,0.92,10.960,22.2 +-4.4,0.92,11.440,26.1,-4.6,0.92,11.640,26.3 +-4.3,0.92,10.670,17.6,-4.5,0.92,10.880,17.9 +-4.2,0.92,10.390,23.5,-4.4,0.92,10.600,23.8 +-4.0,0.92,10.760,33.2,-4.1,0.92,11.150,33.5 +-3.5,0.92,11.000,39.5,-3.7,0.92,11.190,39.7 +-3.4,0.92,10.620,38.1,-3.6,0.92,10.780,38.4 +-3.3,0.92,9.570,40.4,-3.5,0.92,9.740,40.7 +-3.4,0.92,8.810,40.2,-3.5,0.92,9.020,40.6 +-3.1,0.92,8.620,46.3,-3.3,0.92,8.770,46.6 +-2.9,0.92,8.540,46.8,-3.0,0.92,8.680,47.1 +-2.9,0.92,7.190,39.5,-3.1,0.92,7.330,40.1 +-3.0,0.92,7.620,38.1,-3.2,0.92,7.830,38.9 +-3.4,0.92,8.670,40.6,-3.5,0.92,8.930,41.4 +-3.4,0.92,7.500,52.9,-3.6,0.92,7.650,52.8 +-3.9,0.92,8.240,46.0,-4.0,0.92,8.310,46.5 +-4.2,0.92,7.290,43.6,-4.3,0.92,7.550,45.0 +-4.2,0.92,7.470,49.7,-4.3,0.92,7.650,50.7 +-4.1,0.92,5.290,47.8,-4.3,0.92,5.420,48.1 +-4.8,0.92,5.960,38.7,-5.0,0.92,6.200,39.6 +-5.4,0.92,5.650,58.2,-5.6,0.92,5.970,58.2 +-4.9,0.92,4.730,48.9,-5.0,0.92,4.750,48.9 +-5.0,0.92,3.890,27.1,-5.2,0.92,3.850,28.3 +-5.2,0.92,3.870,33.9,-5.4,0.92,3.850,34.2 +-5.2,0.92,4.000,40.0,-5.4,0.92,3.980,40.2 +-5.2,0.92,3.050,44.2,-5.4,0.92,3.050,45.9 +-5.3,0.92,2.660,40.0,-5.4,0.92,2.670,42.4 +-5.2,0.92,1.880,53.9,-5.3,0.92,1.960,58.2 +-5.0,0.92,1.420,76.3,-4.9,0.92,1.600,86.3 +-4.7,0.91,1.080,111.3,-4.6,0.91,1.520,131.9 +-4.5,0.91,1.530,140.0,-4.5,0.91,2.230,153.9 +-4.1,0.91,1.700,175.9,-4.3,0.91,2.040,177.3 +-3.9,0.91,2.340,179.1,-4.1,0.91,2.530,180.4 +-3.8,0.91,2.660,185.9,-4.0,0.91,2.810,186.7 +-3.7,0.91,3.220,205.9,-3.8,0.91,3.320,206.2 +-3.5,0.91,2.920,209.4,-3.6,0.91,2.970,209.9 +-3.3,0.91,3.630,212.0,-3.5,0.91,3.680,212.9 +-3.2,0.91,3.010,213.3,-3.4,0.91,3.040,214.5 +-3.1,0.91,4.270,211.7,-3.2,0.91,4.530,216.3 +-2.9,0.91,4.340,221.3,-3.0,0.91,4.540,225.6 +-2.7,0.91,4.280,232.6,-2.7,0.91,4.740,238.2 +-2.3,0.91,2.420,246.5,-2.5,0.91,2.610,251.7 +-1.9,0.91,2.650,228.7,-2.0,0.91,2.630,234.5 +-1.3,0.91,2.010,235.7,-1.4,0.91,2.010,238.8 +-0.8,0.91,1.980,232.6,-1.0,0.91,1.980,234.9 +-0.2,0.91,1.160,276.9,-0.3,0.91,1.260,282.1 +0.6,0.91,1.890,325.4,0.4,0.91,1.970,324.1 +0.8,0.91,3.090,332.8,0.6,0.91,3.340,331.8 +0.3,0.91,2.890,28.0,0.2,0.91,2.900,23.6 +-0.3,0.91,3.750,45.6,-0.3,0.91,3.930,42.5 +-0.6,0.91,5.120,46.7,-0.7,0.91,5.470,45.8 +-0.8,0.91,6.050,42.3,-0.8,0.91,6.470,42.3 +-1.9,0.91,8.010,44.1,-1.9,0.91,8.410,43.5 +-2.5,0.91,9.610,27.4,-2.5,0.91,10.070,29.2 +-3.1,0.91,9.700,18.1,-3.1,0.91,10.120,19.4 +-3.1,0.91,9.660,8.8,-3.1,0.91,10.110,10.5 +-3.1,0.91,10.000,352.4,-3.1,0.91,10.410,354.3 +-3.4,0.91,10.490,345.4,-3.4,0.91,10.970,347.2 +-4.1,0.91,10.830,338.3,-4.0,0.91,11.410,341.1 +-4.2,0.91,11.940,337.9,-3.9,0.91,12.480,341.9 +-4.4,0.91,11.810,333.8,-4.1,0.91,12.410,338.6 +-3.9,0.91,12.170,337.2,-3.6,0.91,12.880,341.4 +-3.3,0.91,13.120,339.7,-3.0,0.91,13.800,343.4 +-2.8,0.91,14.070,348.2,-2.6,0.91,14.910,351.9 +-2.4,0.91,13.160,347.6,-2.3,0.91,13.710,349.4 +-1.8,0.91,12.050,345.0,-1.8,0.91,12.700,345.9 +-0.8,0.91,10.830,344.9,-1.0,0.91,11.400,345.6 +-0.1,0.92,9.140,340.1,-0.3,0.92,9.380,340.7 +0.7,0.92,9.500,338.0,0.6,0.92,9.730,338.3 +1.7,0.92,10.010,339.2,1.5,0.92,10.310,339.4 +2.1,0.92,10.070,341.2,1.9,0.92,10.430,341.4 +2.0,0.92,10.110,335.0,1.9,0.92,10.650,335.6 +2.0,0.92,10.790,331.1,1.9,0.92,11.510,332.3 +1.5,0.92,12.560,328.4,1.6,0.92,13.640,330.6 +1.5,0.92,13.620,334.3,1.5,0.92,14.880,336.8 +1.3,0.92,13.790,337.1,1.4,0.92,15.050,340.2 +1.0,0.92,14.740,349.5,1.0,0.92,15.740,351.7 +0.6,0.92,15.100,356.8,0.6,0.92,15.960,359.2 +0.1,0.92,14.720,6.0,0.1,0.92,15.480,8.9 +-0.2,0.92,12.850,13.3,-0.2,0.92,13.480,16.4 +-0.5,0.92,10.450,18.2,-0.5,0.92,10.930,21.7 +-1.0,0.92,9.930,25.0,-1.0,0.92,10.250,28.5 +-1.4,0.92,9.240,28.6,-1.5,0.92,9.360,30.8 +-1.9,0.92,8.020,29.1,-1.9,0.92,8.110,30.9 +-2.2,0.92,6.100,35.8,-2.2,0.92,6.140,39.1 +-2.4,0.92,6.030,31.7,-2.3,0.92,6.320,32.0 +-2.2,0.92,4.260,28.0,-2.2,0.92,4.490,29.1 +-1.9,0.92,4.800,13.3,-1.9,0.92,5.020,15.0 +-1.9,0.92,3.320,25.6,-1.9,0.92,3.510,26.2 +-1.3,0.92,1.070,10.5,-1.2,0.92,1.480,21.3 +-0.7,0.92,0.970,359.9,-0.9,0.92,1.060,2.6 +-0.1,0.92,1.110,217.9,-0.2,0.92,1.000,219.7 +0.7,0.92,2.980,213.5,0.5,0.92,2.980,215.3 +1.4,0.92,3.710,220.3,1.3,0.92,3.720,219.8 +1.9,0.92,3.680,217.4,1.7,0.92,3.690,218.0 +2.2,0.92,4.120,222.8,2.1,0.92,4.160,222.2 +2.4,0.92,5.500,211.6,2.3,0.92,5.450,212.0 +2.8,0.92,6.610,208.7,3.0,0.92,6.620,211.3 +3.5,0.92,7.490,207.4,3.6,0.92,7.390,208.7 +3.9,0.92,7.790,207.0,3.9,0.92,7.830,208.9 +3.9,0.92,8.570,202.7,3.9,0.92,8.620,204.5 +4.0,0.92,8.950,202.3,4.0,0.92,9.000,204.0 +4.2,0.91,9.530,200.7,4.2,0.91,9.600,202.2 +4.3,0.91,9.530,200.3,4.4,0.91,9.650,201.8 +4.5,0.91,9.480,201.5,4.6,0.91,9.610,203.3 +4.2,0.91,10.060,198.4,4.4,0.91,10.180,200.4 +4.6,0.91,9.740,201.7,4.8,0.91,9.820,203.8 +4.4,0.91,9.550,202.5,4.6,0.91,9.680,204.6 +4.2,0.91,9.890,205.4,4.5,0.91,10.150,206.7 +4.4,0.91,10.490,210.2,4.8,0.91,10.810,211.1 +4.4,0.92,10.400,209.2,4.8,0.92,10.610,210.7 +4.1,0.92,9.940,209.5,4.6,0.92,10.160,211.5 +4.1,0.92,9.950,211.8,4.5,0.92,10.310,213.4 +3.7,0.92,9.310,207.6,4.0,0.92,9.820,208.9 +4.1,0.92,8.330,206.9,4.3,0.92,8.810,207.9 +4.5,0.92,8.000,202.7,4.6,0.92,8.460,204.2 +5.0,0.92,7.500,200.2,5.0,0.92,7.920,201.5 +5.5,0.92,6.930,199.1,5.4,0.92,7.230,200.0 +6.1,0.92,7.150,191.5,5.9,0.92,7.330,191.7 +6.7,0.92,6.910,189.3,6.5,0.92,7.040,189.4 +7.1,0.92,7.000,182.7,7.0,0.92,7.100,183.6 +7.7,0.92,8.310,186.4,7.6,0.92,8.280,187.8 +7.5,0.92,8.120,175.6,7.6,0.92,8.120,180.1 +8.0,0.92,8.300,172.1,8.0,0.92,8.120,175.4 +7.8,0.92,10.730,173.5,7.8,0.92,10.560,174.0 +6.9,0.92,11.920,176.7,7.0,0.92,11.930,178.3 +6.3,0.92,12.070,180.4,6.6,0.92,12.160,181.4 +6.5,0.92,12.090,186.7,6.8,0.92,12.270,187.8 +6.5,0.92,10.650,200.7,6.9,0.92,10.790,202.8 +5.8,0.92,10.270,201.3,6.1,0.92,10.480,201.8 +5.5,0.92,10.660,201.4,5.9,0.92,10.920,201.5 +5.5,0.92,10.960,202.3,5.9,0.92,11.250,202.2 +5.7,0.92,11.070,206.1,6.1,0.92,11.310,205.8 +5.3,0.92,11.070,208.3,5.7,0.92,11.290,208.9 +4.6,0.92,10.940,206.8,5.1,0.92,11.220,207.8 +5.0,0.92,11.160,208.5,5.4,0.92,11.450,208.8 +4.8,0.92,10.900,206.2,5.3,0.92,11.360,206.7 +5.0,0.92,10.290,203.0,5.1,0.92,10.760,203.5 +5.5,0.92,10.020,205.2,5.9,0.92,10.800,206.0 +5.9,0.92,9.910,202.3,5.9,0.92,10.400,202.6 +6.3,0.92,8.300,197.1,6.2,0.92,8.580,197.7 +7.0,0.92,8.150,192.7,6.8,0.92,8.280,192.8 +7.3,0.92,8.540,193.3,7.1,0.92,8.780,193.5 +7.7,0.92,9.330,191.9,7.6,0.92,9.700,192.4 +8.5,0.92,9.880,186.6,8.5,0.92,10.230,188.2 +9.7,0.92,12.090,194.2,9.6,0.92,12.400,194.1 +10.0,0.92,12.710,194.8,10.1,0.92,13.010,194.8 +10.2,0.92,13.460,196.2,10.3,0.92,13.890,196.5 +9.9,0.91,14.000,198.2,10.2,0.91,14.550,199.0 +9.1,0.91,14.760,203.2,9.4,0.91,15.350,203.6 +8.4,0.91,16.240,208.8,8.7,0.91,16.980,208.6 +7.8,0.91,16.190,210.5,8.1,0.91,17.000,210.5 +7.4,0.91,16.280,210.4,7.6,0.91,17.230,210.9 +7.0,0.92,16.210,211.8,7.2,0.92,17.150,212.7 +6.8,0.91,15.820,213.4,7.0,0.91,16.800,214.5 +6.4,0.91,15.680,212.1,6.6,0.91,16.590,213.1 +6.3,0.91,15.720,213.1,6.5,0.91,16.610,213.8 +6.3,0.91,15.030,212.0,6.6,0.91,15.840,212.9 +6.4,0.91,14.990,210.7,6.6,0.91,15.720,211.6 +5.6,0.91,14.270,210.5,5.9,0.91,14.910,211.4 +4.5,0.91,13.740,211.2,4.6,0.91,14.400,212.1 +4.6,0.91,12.760,207.5,4.7,0.91,13.080,208.0 +5.0,0.91,11.930,204.4,4.9,0.91,12.630,205.5 +7.7,0.91,10.030,206.8,7.7,0.91,10.690,208.5 +9.6,0.91,9.770,206.3,9.4,0.91,9.850,206.9 +10.8,0.91,9.770,204.8,10.6,0.91,9.820,205.2 +12.1,0.91,9.360,202.8,11.9,0.91,9.460,203.1 +13.1,0.91,9.090,203.2,13.0,0.91,9.240,203.3 +13.6,0.91,10.570,203.2,13.5,0.91,10.840,203.7 +14.0,0.91,11.660,205.0,13.9,0.91,11.900,205.3 +14.3,0.91,13.110,210.3,14.3,0.91,13.410,210.3 +14.2,0.91,13.980,212.3,14.2,0.91,14.230,212.3 +13.4,0.91,14.560,216.1,13.6,0.91,14.880,216.5 +12.9,0.91,14.770,218.3,13.1,0.91,15.220,218.4 +12.2,0.91,15.150,221.3,12.4,0.91,15.820,221.6 +11.4,0.91,14.970,221.5,11.6,0.91,15.930,222.2 +11.4,0.91,14.600,226.2,11.6,0.91,15.550,227.0 +10.9,0.91,13.620,226.2,11.2,0.91,14.640,227.3 +11.0,0.91,13.470,226.6,11.3,0.91,14.340,227.2 +10.4,0.91,12.630,225.4,10.7,0.91,13.370,226.4 +8.8,0.91,10.760,220.7,8.8,0.91,11.270,221.4 +8.3,0.91,9.290,221.9,8.2,0.91,9.790,224.4 +8.1,0.91,9.550,227.8,8.2,0.91,10.170,229.9 +8.3,0.91,10.400,233.8,8.4,0.91,10.980,235.1 +9.6,0.91,9.190,237.2,10.4,0.91,9.650,240.8 +9.1,0.91,8.180,231.0,9.5,0.91,9.120,236.9 +10.7,0.91,6.840,230.0,10.6,0.91,7.530,234.8 +12.8,0.91,6.340,237.6,12.7,0.91,6.540,239.7 +14.3,0.91,6.580,240.7,14.1,0.91,6.610,241.6 +15.2,0.91,6.310,243.7,15.1,0.91,6.330,244.3 +15.5,0.91,6.660,243.1,15.3,0.91,6.720,243.9 +15.3,0.91,7.460,242.9,15.2,0.91,7.840,244.5 +15.3,0.91,8.780,241.7,15.2,0.91,9.280,243.8 +17.4,0.91,10.000,234.3,17.5,0.91,10.520,236.7 +17.5,0.91,11.990,246.1,17.7,0.91,12.540,248.5 +17.7,0.91,13.210,264.4,18.0,0.91,13.930,267.6 +17.8,0.91,13.220,278.8,18.2,0.91,14.180,282.7 +17.8,0.91,13.770,288.6,18.1,0.91,14.540,291.0 +15.6,0.91,11.550,291.7,15.9,0.91,12.300,294.4 +15.6,0.91,12.150,294.8,15.9,0.91,12.750,298.1 +15.5,0.91,10.690,299.6,15.7,0.91,10.840,302.3 +15.1,0.91,12.260,295.8,15.3,0.91,12.770,298.7 +14.3,0.90,11.860,293.8,14.6,0.90,12.240,297.4 +13.7,0.90,11.940,294.0,13.9,0.90,12.120,296.9 +13.0,0.90,12.660,292.0,13.3,0.90,13.140,295.9 +12.8,0.90,12.430,290.0,13.0,0.90,13.030,293.8 +11.9,0.90,13.360,286.6,12.3,0.90,14.140,290.3 +11.4,0.90,13.860,284.7,11.7,0.90,14.600,288.1 +10.8,0.90,11.930,279.5,10.9,0.90,12.560,281.2 +11.2,0.90,8.770,279.9,11.0,0.90,8.980,280.5 +12.3,0.90,8.030,282.0,12.2,0.90,8.100,282.2 +13.8,0.90,5.740,283.8,13.6,0.90,5.800,283.7 +15.4,0.90,6.370,278.4,15.2,0.90,6.400,278.4 +16.8,0.90,6.760,279.4,16.6,0.90,6.820,279.4 +17.7,0.90,6.310,279.1,17.5,0.90,6.370,279.0 +18.0,0.90,5.970,269.4,17.8,0.90,6.040,269.4 +18.0,0.90,7.370,261.4,17.8,0.90,7.490,261.7 +17.7,0.90,7.980,257.3,17.6,0.90,7.950,258.9 +18.1,0.90,10.330,260.8,18.0,0.90,9.730,261.7 +18.8,0.90,9.790,263.2,18.8,0.90,9.480,263.5 +18.8,0.90,10.470,264.6,18.9,0.90,10.420,264.0 +18.9,0.90,10.000,257.2,18.9,0.90,10.140,259.2 +19.2,0.90,13.100,262.6,19.6,0.90,13.400,264.6 +18.5,0.90,15.580,260.5,19.0,0.90,16.530,262.3 +18.6,0.90,16.380,265.2,19.1,0.90,17.030,266.0 +18.0,0.90,16.430,272.3,18.5,0.90,17.210,274.5 +17.1,0.90,16.560,273.6,17.5,0.90,17.480,275.1 +16.8,0.90,15.470,271.5,17.2,0.90,16.460,273.2 +16.1,0.90,14.270,269.6,16.4,0.90,15.130,271.7 +14.9,0.90,14.090,273.9,15.3,0.90,15.030,277.2 +15.4,0.90,14.360,274.3,16.0,0.90,15.000,277.1 +15.7,0.90,15.240,280.3,16.0,0.90,16.000,282.5 +15.6,0.90,13.350,280.6,15.9,0.90,14.370,282.4 +16.8,0.90,10.880,285.2,16.8,0.90,11.740,285.2 +18.4,0.90,9.870,281.5,18.3,0.90,10.260,281.8 +19.6,0.90,8.370,278.5,19.4,0.90,8.550,278.8 +22.3,0.90,7.840,276.2,22.1,0.90,8.010,276.3 +22.7,0.90,6.610,260.6,22.5,0.90,6.680,260.8 +22.3,0.90,7.540,236.3,22.1,0.90,7.600,236.6 +22.2,0.90,8.300,239.1,21.9,0.90,8.370,239.3 +21.9,0.90,6.990,231.8,21.7,0.90,7.350,232.8 +21.4,0.90,7.470,227.0,21.3,0.90,8.060,233.7 +21.7,0.90,11.860,228.6,21.8,0.90,12.320,229.7 +21.3,0.90,14.410,231.2,21.4,0.90,15.070,233.7 +20.0,0.90,13.440,227.8,20.2,0.90,14.460,232.0 +19.6,0.90,15.670,234.0,20.0,0.90,16.910,236.7 +19.7,0.90,15.850,235.1,20.0,0.90,16.880,238.0 +19.7,0.90,16.940,245.9,20.0,0.90,18.070,248.0 +18.5,0.90,15.550,244.3,19.1,0.90,17.160,247.1 +18.6,0.90,15.540,245.7,19.2,0.90,16.980,248.4 +18.6,0.90,15.890,245.0,19.0,0.90,17.200,246.6 +18.1,0.90,15.720,244.8,18.6,0.90,16.840,246.1 +18.0,0.90,16.980,252.1,18.6,0.90,18.540,254.9 +17.7,0.90,16.400,251.5,18.1,0.90,17.850,254.2 +16.9,0.90,14.310,253.1,17.3,0.90,15.710,256.2 +16.2,0.90,15.610,258.1,16.7,0.90,17.060,260.8 +16.5,0.90,12.030,262.4,16.7,0.90,12.900,264.7 +17.8,0.90,8.310,259.1,17.7,0.90,8.540,260.1 +18.9,0.90,6.710,249.9,18.8,0.90,6.790,250.5 +20.3,0.90,11.180,263.9,20.1,0.90,11.390,264.0 +21.5,0.90,11.530,266.5,21.3,0.90,11.760,266.5 +22.1,0.90,7.740,252.1,21.9,0.90,7.900,252.0 +22.4,0.90,7.500,251.6,22.2,0.90,7.630,251.6 +22.7,0.90,7.050,254.1,22.5,0.90,7.210,253.8 +22.5,0.90,6.030,245.3,22.3,0.90,6.500,245.4 +22.5,0.90,7.640,230.1,22.4,0.90,7.950,232.3 +22.3,0.90,8.710,257.9,22.1,0.90,8.800,258.0 +22.3,0.90,6.540,245.9,22.2,0.90,6.480,244.3 +21.6,0.90,4.770,236.5,21.4,0.90,4.980,235.5 +20.1,0.90,4.220,202.1,20.1,0.90,4.630,206.8 +17.2,0.90,3.000,64.5,17.6,0.90,2.620,68.3 +11.0,0.90,7.840,46.8,10.8,0.90,8.260,49.3 +8.6,0.90,9.610,45.5,8.4,0.90,9.750,45.9 +6.2,0.90,10.800,38.3,6.0,0.90,10.870,38.4 +4.3,0.91,11.470,40.2,4.1,0.91,11.550,40.3 +2.5,0.91,11.810,33.3,2.3,0.91,11.890,33.4 +1.1,0.91,12.380,31.5,0.9,0.91,12.470,31.7 +-0.8,0.91,12.130,35.2,-1.0,0.91,12.200,35.4 +-1.7,0.91,11.620,33.0,-1.9,0.91,11.730,32.8 +-1.9,0.91,11.330,35.8,-2.1,0.91,11.430,35.7 +-2.7,0.91,11.200,29.2,-2.9,0.91,11.280,29.1 +-3.5,0.91,11.490,31.8,-3.7,0.91,11.580,31.9 +-3.4,0.91,10.340,34.7,-3.6,0.91,10.410,34.6 +-3.6,0.91,10.040,30.4,-3.8,0.91,10.110,30.5 +-3.9,0.91,9.350,39.4,-4.1,0.91,9.410,39.5 +-4.2,0.91,8.660,30.5,-4.4,0.91,8.700,30.6 +-4.3,0.91,8.240,35.7,-4.4,0.91,8.280,35.8 +-4.2,0.91,7.770,37.8,-4.4,0.91,7.810,37.9 +-4.2,0.91,8.080,40.5,-4.4,0.91,8.120,40.3 +-4.4,0.91,8.250,40.8,-4.5,0.91,8.280,40.9 +-4.5,0.91,8.040,33.2,-4.6,0.91,8.080,33.4 +-4.5,0.91,9.530,63.9,-4.7,0.91,9.550,63.7 +-4.6,0.91,7.950,50.6,-4.8,0.91,7.990,50.5 +-4.0,0.91,5.690,49.0,-4.2,0.91,5.750,48.6 +-4.5,0.91,10.470,38.5,-4.7,0.91,10.510,38.1 +-4.6,0.91,7.940,33.3,-4.8,0.91,7.940,33.6 +-5.4,0.91,10.600,16.5,-5.6,0.91,10.660,17.1 +-5.6,0.91,8.980,19.0,-5.8,0.91,8.980,19.4 +-6.0,0.91,10.920,13.6,-6.2,0.91,11.000,13.8 +-6.7,0.91,9.930,12.5,-6.9,0.91,10.020,12.6 +-6.7,0.91,9.490,21.0,-6.9,0.91,9.580,20.7 +-6.7,0.91,10.910,16.1,-6.9,0.91,11.020,16.0 +-6.6,0.91,10.490,15.1,-6.8,0.91,10.550,15.0 +-8.5,0.91,9.570,5.7,-8.7,0.91,9.630,5.8 +-9.4,0.91,11.320,12.2,-9.6,0.91,11.430,12.0 +-9.4,0.91,9.650,6.6,-9.6,0.91,9.740,6.5 +-9.1,0.91,10.210,13.5,-9.3,0.91,10.290,13.5 +-8.4,0.91,9.900,13.1,-8.6,0.91,9.970,13.0 +-7.9,0.91,9.620,14.4,-8.1,0.91,9.680,14.3 +-7.4,0.92,8.930,14.4,-7.6,0.92,8.980,14.3 +-7.3,0.92,8.980,15.6,-7.5,0.92,9.040,15.5 +-7.1,0.92,8.890,17.9,-7.3,0.92,8.960,17.9 +-7.3,0.92,8.100,21.4,-7.5,0.92,8.300,21.4 +-7.6,0.92,9.050,27.3,-7.8,0.92,9.300,27.0 +-7.9,0.92,9.920,30.1,-8.0,0.92,10.220,30.3 +-8.4,0.92,11.010,34.5,-8.5,0.92,11.450,34.7 +-8.8,0.92,11.170,37.2,-8.9,0.92,11.660,37.5 +-9.2,0.92,11.290,37.4,-9.3,0.92,11.850,37.8 +-9.8,0.92,10.910,38.1,-10.0,0.92,11.450,38.9 +-10.5,0.92,10.510,40.4,-10.6,0.92,11.060,41.1 +-11.1,0.92,10.410,38.0,-11.3,0.92,10.980,39.2 +-11.7,0.92,10.170,36.2,-11.8,0.92,10.740,37.8 +-12.2,0.92,9.520,36.3,-12.3,0.92,10.040,38.2 +-12.6,0.92,9.040,35.7,-12.7,0.92,9.430,37.1 +-12.8,0.92,8.210,34.7,-13.0,0.92,8.520,35.9 +-13.1,0.92,7.770,33.2,-13.2,0.92,8.070,34.0 +-13.1,0.92,8.060,28.2,-13.3,0.92,8.350,29.0 +-13.3,0.92,7.510,28.1,-13.5,0.92,7.720,28.8 +-13.5,0.92,6.970,29.6,-13.6,0.92,7.070,30.0 +-13.4,0.92,6.960,28.5,-13.6,0.92,6.990,28.9 +-13.2,0.92,6.540,26.4,-13.4,0.92,6.560,26.7 +-13.1,0.92,6.030,29.7,-13.2,0.92,6.040,29.8 +-13.0,0.92,5.450,23.8,-13.2,0.92,5.450,24.1 +-12.8,0.92,5.020,21.1,-13.0,0.92,5.020,21.5 +-12.6,0.92,4.480,24.1,-12.8,0.92,4.480,24.8 +-12.4,0.91,3.860,23.4,-12.6,0.91,3.860,23.8 +-12.1,0.91,3.520,25.4,-12.3,0.91,3.520,25.6 +-11.9,0.91,2.980,24.6,-12.1,0.91,2.980,24.6 +-11.6,0.91,2.500,31.9,-11.8,0.91,2.500,31.9 +-11.3,0.91,1.990,32.2,-11.5,0.91,1.980,32.1 +-11.1,0.91,1.610,73.6,-11.3,0.91,1.560,74.9 +-10.7,0.91,1.160,44.0,-10.9,0.91,1.080,46.6 +-10.3,0.91,1.360,99.4,-10.5,0.91,1.340,104.9 +-9.8,0.91,1.390,171.0,-10.0,0.91,1.460,172.9 +-9.1,0.91,3.030,192.2,-9.3,0.91,3.060,193.2 +-9.2,0.91,3.050,216.7,-9.3,0.91,3.280,216.9 +-9.6,0.91,6.550,195.6,-9.6,0.91,6.660,197.5 +-9.7,0.91,7.150,198.7,-9.5,0.91,7.680,200.0 +-9.1,0.91,7.870,208.1,-8.4,0.91,8.510,209.3 +-8.3,0.91,8.960,203.5,-7.6,0.91,9.610,205.3 +-5.8,0.91,10.690,216.5,-4.7,0.91,11.210,217.3 +-3.7,0.91,12.040,224.1,-2.7,0.91,12.320,224.8 +-3.9,0.91,12.990,215.3,-2.7,0.91,13.600,217.0 +-3.5,0.91,13.080,217.0,-2.6,0.91,13.990,218.9 +-2.0,0.91,11.650,223.0,-1.5,0.91,12.540,225.1 +0.0,0.91,10.530,224.1,0.4,0.91,11.310,227.4 +1.7,0.91,8.790,227.0,1.8,0.91,9.420,229.7 +3.0,0.91,8.450,229.1,3.1,0.91,9.230,232.5 +4.9,0.91,10.300,237.8,5.3,0.91,11.270,241.4 +5.8,0.91,9.050,240.6,5.9,0.91,9.730,243.3 +6.2,0.91,9.580,242.1,6.8,0.91,10.550,247.9 +7.9,0.91,11.180,248.6,8.7,0.91,12.360,253.3 +9.2,0.91,11.230,257.0,9.8,0.91,11.970,260.1 +9.6,0.91,10.020,266.6,10.0,0.91,10.330,269.4 +10.0,0.91,8.550,272.5,10.3,0.91,8.730,274.8 +10.5,0.91,6.830,277.6,10.5,0.91,6.830,280.2 +10.4,0.91,5.280,284.1,10.5,0.91,5.270,287.5 +8.7,0.91,4.170,358.9,8.7,0.91,4.420,1.9 +4.6,0.91,3.710,14.8,5.1,0.91,3.800,7.6 +5.9,0.91,4.280,16.6,6.2,0.91,4.700,20.8 +2.7,0.91,6.720,24.4,2.9,0.91,6.930,25.6 +-1.6,0.91,7.940,16.5,-1.5,0.91,8.050,20.1 +-3.5,0.91,8.700,30.0,-3.3,0.91,8.950,34.3 +-5.5,0.91,8.820,30.3,-5.3,0.91,9.030,35.4 +-6.7,0.91,8.910,27.3,-6.7,0.91,9.220,30.8 +-7.6,0.91,9.280,28.8,-7.6,0.91,9.690,31.1 +-8.1,0.91,8.980,32.7,-8.2,0.91,9.400,33.9 +-8.3,0.91,8.470,31.8,-8.4,0.91,8.840,32.5 +-8.3,0.91,7.640,28.0,-8.5,0.91,7.700,28.4 +-8.0,0.91,7.330,27.1,-8.2,0.91,7.350,27.3 +-7.5,0.91,7.220,24.3,-7.7,0.91,7.250,24.4 +-6.8,0.91,6.830,21.8,-7.0,0.91,6.860,21.7 +-6.3,0.91,6.290,19.8,-6.4,0.91,6.320,19.7 +-6.0,0.91,6.620,17.1,-6.2,0.91,6.660,17.0 +-5.9,0.91,6.800,12.3,-6.0,0.91,6.930,12.2 +-5.7,0.91,7.180,13.7,-5.8,0.91,7.370,13.5 +-5.7,0.91,8.440,14.3,-5.9,0.91,8.620,15.0 +-5.8,0.92,8.510,15.3,-6.0,0.92,8.630,15.3 +-6.1,0.92,7.810,18.6,-6.3,0.92,7.960,18.6 +-6.4,0.92,7.950,13.7,-6.6,0.92,8.090,13.9 +-6.7,0.92,7.800,10.2,-6.7,0.92,8.160,9.0 +-6.6,0.92,7.010,8.4,-6.5,0.92,7.330,8.2 +-6.9,0.92,6.460,8.9,-6.8,0.92,6.860,8.2 +-6.4,0.92,6.870,0.5,-6.2,0.92,7.270,1.0 +-5.5,0.92,6.070,353.1,-5.3,0.92,6.340,355.0 +-5.0,0.92,5.400,354.0,-4.8,0.92,5.640,356.2 +-3.9,0.92,5.520,349.4,-3.7,0.92,5.700,352.4 +-3.5,0.92,5.070,350.0,-3.4,0.92,5.160,354.2 +-3.1,0.92,4.290,343.6,-3.0,0.92,4.300,349.3 +-2.6,0.92,2.850,332.9,-2.5,0.92,2.800,342.5 +-1.9,0.92,2.070,320.8,-1.9,0.92,1.870,331.5 +-1.5,0.92,1.960,280.5,-1.2,0.92,1.590,286.9 +-0.9,0.92,2.380,213.1,-1.0,0.92,2.360,213.5 +0.2,0.92,3.570,214.3,0.0,0.92,3.560,214.2 +0.9,0.92,4.200,216.2,0.7,0.92,4.190,215.9 +1.6,0.92,5.020,208.0,1.4,0.92,5.020,207.9 +1.7,0.92,6.110,203.5,1.5,0.92,6.120,204.0 +1.4,0.92,6.810,200.9,1.3,0.92,6.960,201.7 +0.8,0.91,9.740,201.0,0.8,0.91,10.040,202.7 +1.4,0.91,11.290,198.8,1.5,0.91,11.580,201.4 +1.6,0.91,11.580,195.2,1.7,0.91,11.820,197.9 +1.8,0.91,12.000,198.5,2.2,0.91,12.270,201.5 +2.4,0.91,12.500,197.2,2.7,0.91,12.820,199.2 +2.6,0.91,13.140,199.3,3.1,0.91,13.510,201.7 +2.7,0.91,12.870,202.8,3.4,0.91,13.400,204.8 +3.6,0.91,12.760,207.5,4.3,0.91,13.320,209.0 +4.0,0.91,13.390,211.0,4.8,0.91,13.990,212.4 +4.6,0.91,12.870,214.5,5.3,0.91,13.420,215.5 +4.7,0.91,12.280,219.3,5.4,0.91,12.800,220.6 +4.7,0.91,11.380,225.1,5.3,0.91,11.640,226.9 +4.8,0.91,11.880,231.2,5.4,0.91,11.990,233.1 +4.9,0.91,11.660,247.7,5.4,0.91,11.860,249.8 +4.2,0.91,10.240,269.5,4.6,0.91,10.300,271.3 +2.6,0.92,10.390,300.6,3.1,0.92,10.740,304.2 +-0.7,0.92,8.570,339.5,-0.8,0.92,9.100,341.5 +-1.3,0.92,7.250,345.0,-1.5,0.92,7.460,345.3 +-1.2,0.92,8.130,356.4,-1.4,0.92,8.210,356.6 +-0.7,0.92,9.240,3.0,-0.9,0.92,9.280,3.2 +-0.1,0.92,9.630,10.1,-0.3,0.92,9.690,10.1 +-0.0,0.92,9.630,12.3,-0.2,0.92,9.690,12.2 +-0.1,0.92,9.610,14.8,-0.3,0.92,9.680,14.7 +-0.3,0.92,9.100,13.5,-0.5,0.92,9.170,13.6 +-0.6,0.92,8.510,12.3,-0.8,0.92,8.800,12.8 +-1.0,0.92,9.880,20.7,-1.2,0.92,10.530,20.8 +-1.4,0.92,10.830,19.7,-1.5,0.92,11.260,20.0 +-1.9,0.92,10.240,21.9,-2.0,0.92,10.590,22.8 +-2.6,0.92,10.300,25.1,-2.6,0.92,10.740,26.4 +-3.0,0.92,9.530,28.0,-3.0,0.92,9.860,29.9 +-3.3,0.92,8.240,33.4,-3.3,0.92,8.600,35.9 +-3.9,0.92,7.230,40.7,-3.9,0.92,7.620,44.3 +-4.2,0.92,6.130,44.3,-4.1,0.92,6.340,47.6 +-4.6,0.92,5.060,39.5,-4.5,0.92,5.130,43.3 +-5.0,0.92,3.750,45.9,-4.9,0.92,3.810,48.4 +-3.7,0.92,2.900,34.8,-3.5,0.92,3.290,37.3 +-4.0,0.92,2.820,24.3,-3.8,0.92,3.040,28.7 +-1.6,0.92,0.890,49.7,-1.3,0.92,1.270,53.7 +-2.6,0.92,1.660,14.9,-2.2,0.92,1.730,26.6 +-1.6,0.92,0.750,40.0,-1.3,0.92,0.880,66.1 +-0.8,0.92,1.260,170.1,-0.7,0.92,1.500,165.2 +-0.6,0.92,2.280,201.2,-0.7,0.92,2.320,201.2 +0.7,0.92,1.820,201.5,0.5,0.92,1.810,201.6 +2.0,0.92,2.830,201.6,1.9,0.92,2.840,201.6 +3.0,0.92,3.970,209.3,2.8,0.92,3.980,209.8 +3.4,0.92,3.860,206.4,3.3,0.92,3.870,206.5 +3.9,0.92,3.810,203.6,3.7,0.92,3.830,203.9 +3.9,0.92,3.960,200.6,3.7,0.92,3.950,201.6 +3.1,0.92,5.800,192.4,3.0,0.92,5.760,194.4 +3.0,0.92,8.680,190.1,3.1,0.92,8.930,192.0 +3.2,0.92,9.910,185.8,3.3,0.92,10.190,187.0 +3.3,0.91,11.270,189.6,3.5,0.91,11.620,191.3 +3.8,0.91,12.210,194.4,4.0,0.91,12.710,195.1 +3.8,0.91,11.810,189.6,4.0,0.91,12.330,190.1 +3.6,0.91,11.510,187.4,3.7,0.91,12.120,187.9 +4.2,0.91,12.950,189.9,4.3,0.91,13.630,190.2 +3.9,0.91,13.550,199.1,3.9,0.91,14.230,199.2 +4.6,0.91,15.240,198.3,4.7,0.91,15.960,199.1 +5.2,0.91,16.800,202.3,5.3,0.91,17.440,202.9 +5.1,0.91,16.900,203.3,5.2,0.91,17.630,203.9 +4.9,0.91,16.080,207.7,4.9,0.91,16.810,208.2 +4.7,0.91,16.550,207.2,4.7,0.91,17.280,207.7 +4.5,0.91,16.690,207.2,4.6,0.91,17.460,208.0 +4.4,0.91,16.360,207.7,4.4,0.91,17.090,208.9 +4.4,0.91,16.610,205.1,4.4,0.91,17.210,205.6 +4.7,0.91,15.920,204.1,4.6,0.91,16.620,204.8 +5.4,0.90,13.550,205.7,5.2,0.90,13.790,206.4 +6.8,0.90,12.460,205.7,6.7,0.90,12.620,206.4 +8.4,0.90,11.430,204.4,8.2,0.90,11.500,205.1 +10.0,0.90,10.850,203.6,9.8,0.90,10.910,204.0 +11.4,0.90,9.410,204.2,11.2,0.90,9.500,204.8 +12.7,0.90,8.380,213.2,12.5,0.90,8.780,215.0 +13.0,0.90,10.270,208.5,13.0,0.90,10.720,211.1 +13.6,0.90,10.720,217.4,13.5,0.90,11.130,223.7 +14.1,0.90,12.740,231.5,14.2,0.90,13.220,234.0 +13.2,0.90,14.460,246.8,13.6,0.90,16.000,250.6 +13.3,0.90,15.240,253.4,13.7,0.90,16.840,256.8 +12.3,0.90,14.880,264.0,12.7,0.90,16.170,268.2 +12.0,0.90,16.460,273.7,12.3,0.90,17.560,276.7 +9.7,0.90,14.640,284.8,9.8,0.90,15.690,287.0 +7.5,0.90,12.680,310.3,7.3,0.90,13.250,315.3 +5.2,0.90,10.090,351.6,5.2,0.90,10.880,351.7 +3.6,0.91,13.290,338.9,3.5,0.91,14.590,341.0 +2.3,0.91,14.330,345.7,2.2,0.91,15.600,347.2 +1.2,0.91,15.140,348.1,1.0,0.91,16.250,349.3 +-0.1,0.91,15.880,353.4,-0.2,0.91,16.810,354.4 +-0.7,0.91,15.100,356.1,-0.8,0.91,16.020,356.8 +-1.2,0.91,15.680,357.7,-1.3,0.91,16.560,358.5 +-1.3,0.91,13.520,358.6,-1.5,0.91,14.230,359.0 +-0.8,0.91,13.370,1.4,-1.0,0.91,13.530,1.4 +-0.1,0.91,12.250,359.7,-0.3,0.91,12.370,359.6 +1.1,0.91,11.050,352.5,0.9,0.91,11.160,352.5 +2.1,0.91,11.150,349.4,1.9,0.91,11.270,349.3 +3.1,0.91,10.200,351.3,3.0,0.91,10.320,351.1 +4.0,0.91,9.570,351.4,3.8,0.91,9.690,351.2 +4.6,0.91,9.330,348.8,4.4,0.91,9.460,348.6 +4.7,0.91,7.690,351.8,4.5,0.91,7.990,351.4 +5.1,0.92,8.680,353.2,4.9,0.92,8.890,353.2 +5.1,0.92,8.440,355.8,4.9,0.92,8.960,356.1 +5.0,0.92,7.990,4.6,4.8,0.92,8.310,5.1 +4.8,0.92,6.550,8.7,4.7,0.92,6.860,9.2 +5.1,0.92,6.030,2.5,5.1,0.92,6.360,3.1 +5.3,0.92,5.310,348.6,5.4,0.92,5.560,350.9 +5.9,0.92,5.110,336.8,6.0,0.92,5.360,339.8 +6.5,0.92,4.970,327.2,6.5,0.92,5.160,331.1 +6.9,0.92,4.420,316.5,6.9,0.92,4.440,321.1 +7.2,0.92,4.840,306.6,7.2,0.92,4.880,310.6 +7.1,0.92,4.110,287.2,7.3,0.92,4.080,291.9 +7.1,0.92,3.960,268.7,7.2,0.92,3.850,270.9 +7.3,0.92,4.710,257.2,7.3,0.92,4.510,258.8 +8.3,0.92,5.560,253.2,8.3,0.92,5.520,255.9 +8.8,0.92,6.040,252.3,8.8,0.92,6.020,254.3 +8.8,0.92,7.220,242.7,9.0,0.92,6.960,244.1 +8.2,0.92,7.780,231.7,8.8,0.92,8.110,234.4 +8.0,0.92,6.050,222.6,7.9,0.92,6.140,224.1 +9.0,0.92,5.930,227.4,8.8,0.92,5.950,228.1 +10.0,0.92,6.250,219.6,9.8,0.92,6.260,220.3 +10.9,0.91,6.790,225.5,10.7,0.91,6.850,226.0 +11.5,0.91,7.060,225.8,11.3,0.91,7.130,226.2 +11.6,0.91,7.200,229.9,11.5,0.91,7.320,230.0 +11.8,0.91,7.730,228.9,11.7,0.91,7.960,229.6 +11.9,0.91,8.240,225.3,11.7,0.91,8.380,227.2 +11.5,0.91,10.780,224.5,11.5,0.91,10.940,225.5 +11.9,0.91,10.500,225.2,11.8,0.91,10.550,225.3 +11.8,0.91,10.240,224.1,11.9,0.91,10.370,224.8 +11.8,0.91,9.270,221.8,11.8,0.91,9.430,223.2 +11.1,0.91,11.220,222.2,11.3,0.91,11.380,222.6 +10.4,0.91,12.100,229.2,10.8,0.91,12.450,230.4 +10.6,0.91,13.150,231.0,11.1,0.91,13.570,231.8 +10.3,0.91,13.140,231.6,11.0,0.91,13.400,233.1 +9.4,0.91,12.440,237.2,10.1,0.91,12.860,238.2 +9.6,0.91,12.650,239.5,10.3,0.91,12.900,240.5 +9.1,0.91,12.310,237.1,9.7,0.91,12.490,238.2 +9.0,0.91,12.180,240.7,9.6,0.91,12.280,241.4 +9.3,0.91,11.620,237.9,9.9,0.91,11.500,239.0 +10.0,0.91,10.630,238.8,10.8,0.91,10.370,239.5 +10.8,0.91,9.640,240.0,12.0,0.91,9.550,241.4 +11.4,0.91,8.960,238.8,12.6,0.91,9.490,240.4 +11.2,0.91,6.820,238.3,11.6,0.91,7.950,241.3 +12.3,0.91,5.340,242.4,12.2,0.91,5.380,243.4 +13.6,0.91,4.980,240.6,13.4,0.91,4.980,241.2 +14.7,0.91,4.820,239.1,14.5,0.91,4.830,239.6 +15.1,0.91,4.750,232.8,14.9,0.91,4.760,233.2 +14.8,0.91,4.730,222.2,14.6,0.91,4.740,222.7 +14.1,0.91,6.260,210.8,14.0,0.91,6.330,211.2 +14.4,0.91,6.660,213.7,14.5,0.91,6.780,216.6 +15.0,0.91,7.450,206.3,15.0,0.91,7.500,209.3 +15.1,0.91,7.370,206.9,15.1,0.91,7.320,209.2 +15.3,0.91,7.090,212.2,15.4,0.91,7.100,214.3 +15.2,0.91,6.980,212.2,15.4,0.91,6.990,215.3 +15.1,0.91,6.480,222.0,15.3,0.91,6.520,224.7 +15.0,0.91,6.380,225.7,15.2,0.91,6.560,227.1 +15.2,0.91,5.330,238.3,15.5,0.91,5.310,240.1 +15.4,0.91,5.250,248.3,15.6,0.91,5.240,251.7 +15.6,0.91,5.640,261.7,15.8,0.91,5.600,265.1 +14.6,0.91,5.140,240.0,14.9,0.91,4.860,243.2 +14.6,0.91,4.970,247.7,14.9,0.91,4.680,250.0 +14.4,0.91,3.670,257.6,14.5,0.91,3.540,258.9 +14.8,0.91,2.780,260.6,15.0,0.91,2.440,261.6 +14.9,0.91,0.430,345.3,14.9,0.91,0.460,19.1 +14.2,0.91,0.840,127.3,14.3,0.91,0.890,135.0 +13.7,0.91,0.910,103.5,13.7,0.91,1.050,90.7 +14.0,0.91,1.090,177.9,14.2,0.91,1.120,155.4 +15.1,0.91,0.910,114.0,14.9,0.91,0.940,115.7 +14.2,0.92,3.610,52.1,14.0,0.92,3.520,52.5 +14.5,0.92,2.800,57.6,14.3,0.92,2.740,59.5 +15.0,0.92,3.130,62.3,14.8,0.92,3.090,63.8 +15.1,0.91,2.890,68.0,14.9,0.91,2.860,69.0 +14.5,0.91,3.450,74.4,14.4,0.91,3.550,77.2 +14.3,0.92,4.150,86.4,14.3,0.92,4.240,89.6 +14.2,0.92,4.390,97.9,14.3,0.92,4.470,101.1 +13.9,0.92,5.020,103.5,13.9,0.92,5.030,107.4 +14.3,0.91,5.310,144.8,14.4,0.91,5.280,145.5 +14.0,0.91,6.570,159.6,14.0,0.91,6.640,159.1 +14.1,0.91,6.820,164.8,14.1,0.91,6.830,165.1 +13.8,0.91,7.800,176.8,13.9,0.91,7.880,177.2 +13.7,0.91,8.860,186.0,13.9,0.91,9.020,186.2 +12.3,0.91,9.830,190.7,12.7,0.91,10.000,190.2 +12.8,0.91,10.600,190.5,13.2,0.91,10.940,190.8 +12.0,0.91,10.820,195.3,12.4,0.91,11.090,196.5 +11.7,0.91,10.930,209.2,12.2,0.91,11.230,210.6 +10.9,0.91,11.670,211.7,11.4,0.91,12.060,212.1 +10.1,0.91,12.240,213.4,10.6,0.91,12.690,213.8 +9.6,0.91,12.770,213.4,10.1,0.91,13.340,213.7 +9.2,0.91,12.010,211.7,9.6,0.91,12.680,211.9 +9.3,0.91,10.690,207.3,9.6,0.91,11.530,208.0 +10.6,0.91,8.690,201.8,10.5,0.91,9.030,202.7 +11.6,0.91,9.170,198.4,11.4,0.91,9.250,198.9 +12.9,0.91,9.830,199.3,12.8,0.91,9.900,199.6 +13.7,0.91,10.010,193.4,13.5,0.91,10.100,193.6 +14.8,0.91,10.780,192.9,14.6,0.91,10.910,193.0 +15.5,0.91,11.030,192.7,15.3,0.91,11.210,192.8 +15.3,0.91,12.390,188.9,15.2,0.91,12.930,189.2 +15.0,0.91,14.460,190.1,15.0,0.91,15.090,190.5 +14.3,0.91,15.100,193.3,14.3,0.91,15.950,193.9 +13.4,0.91,15.770,196.5,13.4,0.91,16.540,196.9 +12.1,0.91,16.370,194.4,12.0,0.91,17.100,194.8 +10.8,0.91,16.180,194.9,10.7,0.91,16.970,195.6 +10.2,0.90,15.700,195.0,10.1,0.90,16.450,195.8 +10.1,0.90,16.570,196.5,10.1,0.90,17.350,197.1 +9.8,0.90,16.760,196.2,9.8,0.90,17.610,197.0 +9.8,0.90,16.460,195.2,9.8,0.90,17.240,195.8 +10.3,0.90,16.750,196.7,10.2,0.90,17.420,197.1 +10.5,0.90,16.910,201.1,10.4,0.90,17.560,201.4 +10.4,0.90,16.810,199.2,10.3,0.90,17.380,199.4 +10.7,0.90,17.000,198.2,10.6,0.90,17.550,198.5 +11.0,0.90,16.880,197.0,10.9,0.90,17.400,197.3 +11.2,0.90,18.120,197.4,11.1,0.90,18.620,197.7 +11.2,0.90,16.920,197.2,11.1,0.90,17.480,197.3 +11.2,0.90,16.230,198.0,11.1,0.90,16.770,198.3 +11.7,0.90,15.420,199.7,11.5,0.90,15.580,199.9 +13.1,0.90,13.760,199.0,12.9,0.90,13.870,199.3 +14.7,0.90,13.990,198.9,14.5,0.90,14.090,199.2 +15.9,0.90,13.910,196.6,15.7,0.90,14.000,196.8 +16.7,0.90,12.910,193.6,16.6,0.90,13.010,193.9 +16.8,0.90,12.530,188.0,16.6,0.90,12.650,188.3 +16.8,0.90,11.960,188.7,16.7,0.90,12.340,188.9 +16.2,0.90,13.120,190.2,16.2,0.90,13.680,192.2 +16.2,0.90,13.100,188.7,16.3,0.90,13.320,191.6 +15.8,0.90,13.190,194.1,16.0,0.90,13.620,197.2 +14.8,0.90,13.770,193.8,15.0,0.90,14.570,196.5 +14.1,0.90,13.520,194.4,14.3,0.90,14.120,196.6 +13.6,0.90,14.630,200.7,13.9,0.90,15.510,202.7 +13.6,0.90,14.430,197.8,13.8,0.90,15.210,199.3 +13.7,0.90,14.890,199.9,14.0,0.90,15.690,201.1 +13.8,0.90,14.540,201.8,14.1,0.90,15.270,202.5 +13.7,0.90,13.450,206.2,13.9,0.90,14.160,206.9 +13.3,0.90,11.880,206.0,13.5,0.90,12.390,207.2 +12.9,0.90,11.920,217.1,13.1,0.90,12.630,217.9 +13.0,0.90,11.380,217.6,13.1,0.90,11.850,219.5 +12.0,0.90,5.040,238.3,12.3,0.90,5.850,238.8 +12.9,0.90,6.770,282.6,13.2,0.90,7.050,289.5 +9.8,0.90,4.710,331.9,9.8,0.90,4.900,334.0 +9.6,0.90,6.350,8.7,9.5,0.90,6.470,8.8 +6.7,0.90,6.940,31.1,6.5,0.90,6.960,30.3 +5.8,0.90,6.560,33.4,5.6,0.90,6.530,33.3 +5.5,0.90,6.600,43.0,5.4,0.90,6.560,42.9 +5.4,0.90,5.270,52.2,5.3,0.90,5.240,52.5 +5.8,0.90,4.740,48.8,5.6,0.90,4.690,49.0 +5.3,0.90,6.080,49.8,5.1,0.90,6.050,49.8 +4.9,0.90,6.230,52.2,4.7,0.90,6.220,52.2 +4.5,0.90,6.260,49.5,4.3,0.90,6.400,50.3 +4.3,0.90,6.560,46.4,4.1,0.90,6.650,46.7 +4.1,0.90,5.900,31.6,3.9,0.90,5.880,31.9 +3.6,0.90,5.520,25.2,3.4,0.90,5.500,25.8 +3.2,0.90,4.110,39.8,3.0,0.90,4.070,40.0 +3.1,0.90,4.810,70.7,3.7,0.90,4.950,76.9 +2.0,0.90,4.420,45.3,2.2,0.90,4.440,49.4 +2.7,0.90,1.730,249.6,2.9,0.90,2.200,241.4 +4.1,0.90,1.150,137.3,4.9,0.90,1.890,155.5 +8.0,0.90,3.880,165.6,9.4,0.90,4.470,178.3 +7.9,0.90,6.980,165.3,8.9,0.90,7.820,171.2 +10.0,0.89,9.160,191.1,10.7,0.89,9.810,194.0 +7.3,0.89,2.000,183.1,7.4,0.89,2.680,189.0 +7.1,0.89,5.160,202.5,7.3,0.89,5.770,202.3 +7.2,0.89,7.450,211.8,7.4,0.89,8.380,215.0 +8.8,0.89,7.060,212.8,8.9,0.89,7.770,215.8 +9.7,0.89,6.760,242.3,9.6,0.89,6.930,243.5 +10.5,0.89,9.460,267.4,10.3,0.89,9.630,267.5 +10.7,0.89,9.460,238.7,10.5,0.89,9.620,238.8 +11.0,0.89,10.040,241.0,10.8,0.89,10.220,241.0 +11.5,0.89,10.530,235.6,11.2,0.89,10.750,235.7 +11.5,0.89,12.950,238.1,11.3,0.89,13.230,238.2 +11.4,0.89,13.900,240.3,11.2,0.89,14.200,240.4 +11.2,0.89,10.760,238.1,11.0,0.89,11.370,238.5 +10.8,0.89,12.300,231.4,10.8,0.89,13.180,232.7 +10.9,0.90,13.440,232.6,10.9,0.90,14.340,234.0 +10.3,0.90,13.230,232.2,10.5,0.90,14.470,235.3 +9.8,0.90,14.690,244.8,9.9,0.90,16.010,246.9 +9.3,0.90,14.520,253.2,9.4,0.90,15.910,255.7 +8.9,0.90,12.440,260.1,9.0,0.90,13.950,261.5 +0.7,0.90,7.190,9.0,0.6,0.90,7.280,7.6 +-0.5,0.90,7.340,12.6,-0.7,0.90,7.370,12.0 +-1.6,0.90,7.540,0.8,-1.8,0.90,7.870,0.7 +-2.4,0.90,9.630,1.7,-2.6,0.90,9.960,1.9 +-2.6,0.90,8.730,3.0,-2.7,0.90,9.100,2.8 +-2.5,0.90,8.970,353.1,-2.7,0.90,9.390,353.3 +-2.9,0.91,9.930,353.2,-3.1,0.91,10.290,353.2 +-3.3,0.91,9.760,351.1,-3.5,0.91,10.050,351.2 +-3.5,0.91,9.470,357.4,-3.7,0.91,9.760,357.3 +-3.4,0.91,9.960,354.3,-3.6,0.91,10.080,354.4 +-2.5,0.91,9.220,355.2,-2.7,0.91,9.310,355.2 +-1.4,0.91,8.870,357.3,-1.6,0.91,8.950,357.2 +-0.2,0.91,7.690,348.3,-0.4,0.91,7.770,348.2 +1.0,0.91,7.660,353.1,0.7,0.91,7.730,352.7 +1.9,0.91,6.810,344.9,1.7,0.91,6.880,344.7 +2.5,0.91,6.460,342.5,2.3,0.91,6.540,342.3 +2.9,0.91,6.580,343.0,2.7,0.91,6.670,342.7 +2.8,0.91,6.080,350.8,2.6,0.91,6.250,350.1 +2.5,0.91,6.480,1.0,2.3,0.91,6.560,0.5 +2.2,0.91,7.030,12.5,2.0,0.91,7.020,12.1 +1.7,0.91,7.310,24.0,1.6,0.91,7.270,23.2 +1.3,0.92,6.590,32.9,1.2,0.92,6.570,29.6 +0.8,0.92,5.690,33.5,0.8,0.92,5.640,30.8 +0.3,0.92,4.620,46.8,0.3,0.92,4.810,44.2 +0.3,0.92,3.580,42.7,0.4,0.92,3.850,38.4 +0.6,0.92,2.830,38.3,0.9,0.92,3.140,31.5 +1.2,0.92,2.070,49.5,1.5,0.92,2.240,39.9 +1.7,0.92,0.640,81.4,1.9,0.92,0.710,49.6 +2.0,0.92,1.190,180.2,2.1,0.92,0.810,178.2 +2.7,0.92,2.720,198.9,2.8,0.92,2.380,201.3 +3.1,0.92,4.440,211.9,3.5,0.92,4.010,215.7 +2.8,0.92,6.210,206.3,3.3,0.92,5.710,210.3 +2.6,0.92,7.660,207.8,3.2,0.92,7.280,211.1 +3.1,0.92,8.020,207.6,3.6,0.92,7.990,210.6 +2.7,0.92,7.240,203.1,2.9,0.92,7.960,207.0 +4.1,0.92,6.660,210.1,4.0,0.92,6.690,211.2 +5.8,0.92,6.000,208.0,5.6,0.92,6.010,208.6 +6.7,0.92,5.240,221.4,6.5,0.92,5.250,221.8 +7.5,0.92,4.720,224.1,7.3,0.92,4.730,224.8 +7.8,0.92,4.530,206.3,7.6,0.92,4.540,207.0 +7.8,0.92,4.690,199.8,7.7,0.92,4.710,200.4 +8.2,0.92,4.690,209.5,8.1,0.92,4.640,214.4 +8.1,0.92,2.600,234.6,8.1,0.92,2.630,243.3 +8.1,0.92,1.920,316.6,7.9,0.92,2.000,322.4 +6.8,0.92,3.910,359.5,6.6,0.92,4.150,1.7 +4.8,0.92,5.400,44.9,4.9,0.92,5.510,43.9 +4.7,0.92,4.900,33.9,4.9,0.92,5.210,33.9 +3.1,0.92,4.050,41.5,3.4,0.92,4.320,42.6 +3.4,0.92,3.450,40.0,4.2,0.92,3.340,44.8 +4.1,0.92,2.370,54.5,5.0,0.92,2.150,68.8 +5.0,0.92,1.790,108.8,5.7,0.92,2.100,129.1 +5.4,0.92,3.160,155.4,5.7,0.92,3.630,159.9 +5.2,0.92,5.170,176.2,5.5,0.92,5.340,180.9 +6.2,0.92,7.760,196.7,6.6,0.92,7.880,200.1 +6.3,0.92,9.390,205.0,6.6,0.92,9.620,207.0 +6.0,0.92,10.160,206.6,6.4,0.92,10.470,208.0 +5.5,0.92,10.970,201.8,6.0,0.92,11.350,203.0 +4.6,0.92,11.760,201.8,4.9,0.92,12.300,202.3 +4.0,0.92,11.570,197.9,4.1,0.92,12.480,198.9 +5.4,0.92,11.040,199.5,5.3,0.92,11.370,200.0 +6.9,0.92,11.640,199.2,6.8,0.92,11.780,199.6 +7.8,0.92,11.960,194.9,7.6,0.92,12.070,195.1 +9.3,0.91,12.360,194.7,9.1,0.91,12.500,194.9 +10.4,0.91,13.000,198.8,10.2,0.91,13.180,198.9 +10.5,0.91,13.120,198.3,10.4,0.91,13.390,198.4 +10.1,0.91,13.950,197.4,10.0,0.91,14.580,197.6 +9.2,0.91,14.610,199.2,9.2,0.91,15.320,199.8 +8.3,0.91,15.210,199.8,8.4,0.91,15.940,200.5 +7.5,0.91,17.410,202.1,7.6,0.91,18.370,202.7 +6.6,0.91,15.720,199.9,6.7,0.91,16.710,201.0 +5.8,0.91,15.020,198.8,5.8,0.91,16.030,200.6 +5.4,0.91,16.860,202.8,5.4,0.91,17.880,204.2 +5.2,0.91,16.510,205.9,5.4,0.91,17.470,207.3 +5.4,0.91,16.780,206.6,5.6,0.91,17.480,207.6 +5.4,0.91,16.540,205.2,5.6,0.91,17.270,206.2 +5.4,0.91,13.990,208.3,5.6,0.91,14.450,209.3 +5.5,0.91,12.610,214.3,5.7,0.91,13.250,215.5 +3.3,0.91,7.120,302.1,3.4,0.91,6.900,294.0 +1.4,0.91,9.060,337.2,1.8,0.91,8.520,332.8 +-0.6,0.91,10.590,347.5,-0.9,0.91,11.700,350.6 +-1.1,0.91,11.150,354.1,-1.2,0.91,11.990,356.7 +-1.0,0.92,9.650,2.6,-1.2,0.92,9.950,2.9 +-0.1,0.92,9.760,6.4,-0.3,0.92,9.840,6.5 +1.1,0.92,9.850,8.3,0.9,0.92,9.930,8.3 +2.4,0.92,10.130,9.3,2.2,0.92,10.220,9.2 +3.3,0.92,9.740,11.4,3.1,0.92,9.830,11.2 +4.0,0.92,9.800,10.0,3.8,0.92,9.890,9.8 +4.6,0.92,9.370,12.7,4.4,0.92,9.450,12.5 +4.8,0.92,9.210,13.4,4.6,0.92,9.280,13.1 +4.6,0.92,8.490,15.9,4.4,0.92,8.670,15.7 +4.1,0.92,9.240,18.2,4.0,0.92,9.610,18.0 +3.8,0.92,9.090,21.3,3.7,0.92,9.470,21.4 +3.4,0.92,10.390,25.4,3.4,0.92,10.840,25.8 +2.8,0.92,9.490,30.9,2.7,0.92,9.840,30.6 +2.4,0.92,9.440,30.8,2.3,0.92,9.740,30.1 +1.9,0.92,9.080,27.5,1.8,0.92,9.320,27.1 +1.7,0.92,8.790,22.0,1.5,0.92,8.940,21.2 +1.3,0.92,8.420,17.9,1.2,0.92,8.600,18.3 +1.0,0.92,7.150,18.9,1.0,0.92,7.320,19.7 +0.8,0.92,6.380,17.9,0.9,0.92,6.550,20.0 +0.9,0.92,5.970,21.9,1.0,0.92,6.160,24.7 +1.0,0.92,5.100,24.3,1.1,0.92,5.340,26.4 +1.0,0.92,4.350,21.3,1.1,0.92,4.600,23.9 +1.2,0.92,3.620,14.8,1.3,0.92,3.890,18.2 +1.6,0.92,3.230,7.6,1.6,0.92,3.420,12.5 +2.3,0.92,2.950,355.5,2.3,0.92,3.030,1.9 +2.8,0.92,1.710,351.8,2.7,0.92,1.860,359.4 +4.2,0.92,1.480,340.7,4.0,0.92,1.440,341.4 +5.5,0.92,1.190,358.6,5.3,0.92,1.150,357.1 +6.4,0.92,1.100,15.0,6.3,0.92,1.050,12.5 +7.0,0.92,0.910,48.7,6.9,0.92,0.860,47.3 +7.6,0.92,0.790,80.9,7.4,0.92,0.750,83.4 +7.9,0.92,0.580,75.6,7.7,0.92,0.540,80.2 +7.6,0.92,1.590,75.8,7.4,0.92,1.550,81.7 +7.2,0.92,2.220,141.6,7.1,0.92,2.230,146.1 +6.9,0.92,4.550,182.8,6.8,0.92,4.450,183.4 +6.8,0.92,4.780,179.6,6.7,0.92,4.830,180.1 +6.7,0.92,5.270,185.6,6.6,0.92,5.300,185.5 +6.6,0.92,4.960,193.8,6.6,0.92,4.960,192.8 +6.6,0.92,5.160,195.7,6.6,0.92,5.150,195.0 +6.6,0.92,5.060,199.8,6.6,0.92,4.920,200.7 +6.5,0.92,5.150,201.5,6.6,0.92,4.940,202.3 +6.6,0.92,4.790,210.1,6.7,0.92,4.500,211.7 +6.8,0.92,4.160,216.1,7.0,0.92,3.850,218.7 +7.0,0.92,3.630,224.3,7.1,0.92,3.240,228.1 +7.2,0.92,2.830,240.8,7.3,0.92,2.540,246.4 +7.4,0.92,2.270,278.1,7.3,0.92,2.100,285.2 +7.2,0.92,1.980,268.0,7.2,0.92,1.550,271.5 +7.3,0.92,0.670,12.2,7.2,0.92,0.770,34.9 +6.5,0.92,0.710,66.8,6.8,0.92,0.520,76.3 +6.9,0.92,0.880,102.0,7.1,0.92,1.120,98.9 +7.6,0.92,0.990,137.8,7.4,0.92,1.030,139.9 +8.5,0.92,0.910,121.6,8.3,0.92,0.930,122.1 +9.2,0.92,1.250,157.6,9.0,0.92,1.290,157.4 +9.6,0.92,2.340,189.7,9.4,0.92,2.340,189.1 +9.9,0.92,2.270,190.3,9.7,0.92,2.270,189.9 +9.8,0.92,2.840,188.5,9.6,0.92,2.810,188.3 +9.4,0.92,4.180,191.4,9.2,0.92,4.150,191.5 +9.1,0.92,4.590,200.2,8.9,0.92,4.550,199.3 +9.0,0.92,5.490,199.0,8.9,0.92,5.460,198.6 +9.0,0.92,5.710,189.8,8.8,0.92,5.570,190.9 +8.0,0.92,7.770,183.2,8.1,0.92,7.370,184.2 +6.2,0.92,9.460,182.6,6.5,0.92,9.290,186.4 +6.5,0.92,8.530,192.0,6.8,0.92,8.340,194.7 +7.0,0.91,7.340,213.1,7.1,0.91,7.230,214.7 +6.8,0.91,8.120,218.4,6.9,0.91,8.300,217.1 +6.1,0.91,8.850,210.5,6.2,0.91,9.190,209.9 +6.5,0.91,9.560,212.5,6.7,0.91,9.860,212.4 +6.7,0.91,9.570,212.4,6.8,0.91,9.690,212.2 +7.0,0.91,8.350,219.3,7.1,0.91,8.420,221.5 +6.7,0.91,7.550,227.3,6.8,0.91,7.660,228.8 +5.7,0.91,7.990,213.5,5.8,0.91,8.190,215.5 +5.5,0.91,8.090,215.5,5.6,0.91,8.140,218.4 +5.2,0.91,7.760,208.7,5.4,0.91,8.080,211.6 +6.1,0.91,7.720,209.5,6.1,0.91,8.030,211.4 +6.7,0.91,8.940,214.4,6.5,0.91,9.100,214.9 +7.3,0.91,8.810,212.8,7.1,0.91,8.920,213.1 +9.0,0.91,9.290,210.6,8.8,0.91,9.410,210.8 +10.0,0.91,9.470,209.0,9.8,0.91,9.580,209.3 +10.5,0.91,9.170,203.2,10.3,0.91,9.270,203.7 +11.1,0.91,8.860,203.7,10.9,0.91,8.970,204.0 +10.8,0.91,8.830,197.5,10.7,0.91,9.110,197.9 +10.5,0.91,11.000,195.1,10.4,0.91,11.310,195.7 +10.1,0.90,12.440,196.2,10.1,0.90,13.010,196.9 +9.5,0.90,13.460,199.7,9.6,0.90,14.170,201.4 +8.7,0.90,14.290,205.5,8.8,0.90,15.130,207.3 +7.8,0.90,13.620,207.6,7.9,0.90,14.430,209.3 +7.3,0.90,13.890,211.9,7.4,0.90,14.800,213.4 +6.8,0.90,13.420,212.9,6.9,0.90,14.190,214.5 +6.1,0.90,12.390,210.7,6.0,0.90,12.800,211.3 +5.9,0.90,12.260,214.3,5.8,0.90,12.590,214.8 +6.0,0.90,11.130,215.5,5.9,0.90,11.420,216.1 +5.8,0.90,10.480,222.5,5.7,0.90,10.710,222.7 +5.7,0.90,7.830,225.8,5.6,0.90,7.940,227.5 +5.1,0.91,7.080,243.9,4.9,0.91,7.230,244.0 +4.7,0.91,6.890,314.7,4.5,0.91,7.250,315.3 +0.9,0.91,8.300,341.2,0.7,0.91,8.420,341.1 +-0.3,0.91,12.410,6.1,-0.5,0.91,12.640,6.6 +-1.3,0.91,12.930,11.4,-1.5,0.91,13.140,11.7 +-2.9,0.91,12.430,6.5,-3.1,0.91,12.500,6.7 +-3.7,0.91,11.650,17.5,-3.9,0.91,11.770,17.4 +-3.4,0.91,12.100,15.0,-3.6,0.91,12.230,14.9 +-2.8,0.91,10.510,9.9,-3.0,0.91,10.610,9.9 +-2.5,0.91,10.210,13.8,-2.7,0.91,10.310,13.6 +-2.2,0.91,10.020,14.9,-2.4,0.91,10.130,14.7 +-1.8,0.91,9.810,11.9,-2.0,0.91,9.980,11.8 +-1.9,0.91,9.340,17.9,-2.1,0.91,9.610,17.8 +-2.1,0.91,8.190,21.4,-2.3,0.91,8.560,21.5 +-2.3,0.91,8.780,19.7,-2.5,0.91,9.280,20.8 +-2.6,0.91,9.220,16.9,-2.7,0.91,9.520,16.3 +-3.1,0.91,9.030,12.7,-3.3,0.91,9.370,13.5 +-3.6,0.91,8.780,8.8,-3.7,0.91,9.000,8.6 +-4.0,0.91,7.430,11.3,-4.2,0.91,7.830,11.9 +-4.2,0.91,6.670,9.3,-4.3,0.91,7.030,9.0 +-4.4,0.91,5.820,358.8,-4.6,0.91,6.160,358.4 +-4.7,0.91,5.900,351.4,-4.8,0.91,6.140,352.2 +-4.8,0.91,5.330,341.5,-4.9,0.91,5.610,341.3 +-4.9,0.91,4.890,335.3,-5.0,0.91,5.270,333.7 +-4.8,0.91,4.870,317.0,-4.8,0.91,5.230,316.3 +-4.3,0.91,5.480,304.7,-4.2,0.91,6.000,305.8 +-3.4,0.91,5.600,300.3,-3.3,0.91,5.920,302.5 +-2.3,0.91,5.480,295.3,-2.1,0.91,5.970,297.6 +-0.8,0.91,3.570,289.1,-1.0,0.91,3.750,289.7 +1.4,0.91,3.110,285.4,1.3,0.91,3.170,285.2 +3.5,0.91,2.760,277.2,3.3,0.91,2.800,276.9 +5.2,0.91,2.530,285.6,5.0,0.91,2.560,284.9 +6.4,0.91,1.800,288.1,6.3,0.91,1.810,286.6 +6.9,0.91,2.070,313.3,6.8,0.91,2.040,311.6 +6.8,0.91,2.520,330.9,6.7,0.91,2.490,330.1 +6.5,0.91,2.590,13.9,6.3,0.91,2.600,12.9 +5.9,0.91,2.980,39.7,5.8,0.91,3.140,34.5 +5.4,0.92,3.390,47.2,5.5,0.92,3.620,43.6 +4.9,0.92,4.010,46.5,5.0,0.92,4.320,45.9 +4.3,0.92,3.810,57.4,4.4,0.92,4.180,57.4 +4.3,0.92,3.770,58.0,4.4,0.92,4.120,58.3 +4.1,0.92,3.360,61.5,4.3,0.92,3.680,60.6 +4.2,0.92,2.830,59.6,4.3,0.92,3.190,58.5 +4.0,0.92,2.550,47.5,4.1,0.92,2.920,48.1 +4.0,0.92,2.480,41.2,4.2,0.92,2.820,43.1 +4.2,0.92,2.140,53.2,4.4,0.92,2.430,53.7 +4.2,0.92,1.800,64.1,4.4,0.92,2.090,64.2 +4.6,0.92,1.320,84.9,4.8,0.92,1.510,85.8 +4.7,0.92,1.580,129.3,4.9,0.92,1.720,128.7 +4.8,0.92,2.990,167.6,4.9,0.92,2.880,168.7 +4.6,0.92,5.450,183.6,4.8,0.92,5.150,184.4 +4.9,0.92,6.790,192.2,5.1,0.92,6.720,193.9 +4.5,0.92,6.920,199.5,4.8,0.92,7.540,200.8 +5.5,0.92,6.370,202.7,5.4,0.92,6.430,203.3 +6.5,0.92,7.320,204.1,6.3,0.92,7.350,204.4 +7.3,0.91,7.820,204.3,7.2,0.91,7.860,204.7 +7.7,0.91,8.090,203.5,7.6,0.91,8.130,203.9 +8.3,0.91,8.510,199.4,8.1,0.91,8.580,199.6 +9.0,0.91,9.530,198.1,8.8,0.91,9.650,198.5 +9.0,0.91,10.160,192.9,8.9,0.91,10.540,193.5 +13.3,0.91,7.920,275.8,13.2,0.91,8.330,276.2 +12.4,0.91,12.130,278.5,12.4,0.91,12.930,278.3 +11.8,0.91,12.380,279.4,11.9,0.91,12.840,279.4 +11.0,0.91,10.520,287.1,11.1,0.91,11.650,286.5 +10.0,0.91,7.290,290.2,10.1,0.91,8.380,288.7 +10.4,0.91,9.400,289.7,10.6,0.91,10.430,290.0 From 2d953eb797ea91301dc16b29a91c0a38d6544261 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Thu, 4 Sep 2025 14:51:59 -0600 Subject: [PATCH 08/79] Methanol doc with financials --- .../plant_config_co2h.yaml | 2 -- .../co2_hydrogenation_doc/tech_config_co2h.yaml | 17 +++++++++++------ .../converters/methanol/co2h_methanol_plant.py | 1 + .../converters/methanol/methanol_baseclass.py | 2 ++ .../converters/methanol/smr_methanol_plant.py | 1 + h2integrate/core/finances.py | 9 ++++++++- h2integrate/core/h2integrate_model.py | 16 +++++++++++----- 7 files changed, 34 insertions(+), 14 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index 7afee8386..d8d7f3340 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -26,8 +26,6 @@ site: technology_interconnections: [ ["hopp", "electrolyzer", "electricity", "cable"], ["electrolyzer", "methanol", "hydrogen", "pipe"], - ["financials_group_1", "methanol", "LCOE"], - ["financials_group_1", "methanol", "LCOH"], ["wind","doc","electricity","cable"], ["doc","methanol","co2","pipe"], ] diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 68e79f58e..7a1f1b54d 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -41,6 +41,8 @@ technologies: model: "wind_plant_performance" cost_model: model: "wind_plant_cost" + financial_model: + group: "1" resource: type: "pysam_wind" wind_speed: 9. @@ -74,6 +76,8 @@ technologies: model: "direct_ocean_capture_performance" cost_model: model: "direct_ocean_capture_cost" + financial_model: + group: "1" model_inputs: shared_parameters: power_single_ed_w: 24000000.0 # W @@ -101,8 +105,9 @@ technologies: cost_model: model: "co2h_methanol_plant_cost" financial_model: - model: "co2h_methanol_plant_financial" - group: "2" + group: "1" + # financial_model: + # model: "co2h_methanol_plant_financial" model_inputs: shared_parameters: plant_capacity_kgpy: 127893196.8 @@ -124,7 +129,7 @@ technologies: meoh_syn_cat_price: 615.274273 ng_price: 4.0 co2_price: 0.0549007 - finance_parameters: - # Sources in NETL-PUB-22580: Exhibit 3-5 and Exhibit 3-7 - tasc_toc_multiplier: 1.093 - fixed_charge_rate: 0.0707 + # finance_parameters: + # # Sources in NETL-PUB-22580: Exhibit 3-5 and Exhibit 3-7 + # tasc_toc_multiplier: 1.093 + # fixed_charge_rate: 0.0707 diff --git a/h2integrate/converters/methanol/co2h_methanol_plant.py b/h2integrate/converters/methanol/co2h_methanol_plant.py index 81bda15d7..074f25c19 100644 --- a/h2integrate/converters/methanol/co2h_methanol_plant.py +++ b/h2integrate/converters/methanol/co2h_methanol_plant.py @@ -110,6 +110,7 @@ def compute(self, inputs, outputs): # Parse outputs outputs["methanol_out"] = meoh_prod + outputs["total_methanol_produced"] = np.sum(meoh_prod) outputs["meoh_syn_cat_consume"] = np.sum(meoh_prod) * syn_ratio outputs["ng_consume"] = meoh_prod * ng_ratio outputs["co2_consume"] = meoh_prod * co2_ratio diff --git a/h2integrate/converters/methanol/methanol_baseclass.py b/h2integrate/converters/methanol/methanol_baseclass.py index e6b39fc51..7e0bf8540 100644 --- a/h2integrate/converters/methanol/methanol_baseclass.py +++ b/h2integrate/converters/methanol/methanol_baseclass.py @@ -28,6 +28,7 @@ class MethanolPerformanceBaseClass(om.ExplicitComponent): - h2o_consume_ratio: (float) ratio of kg h2o consumed to kg methanol produced Outputs: - methanol_out: methanol production in kg/h + - total_methanol_produced: annual methanol production in kg/year - co2e_emissions: co2e emissions in kg/h - h2o_consumption: h2o consumption in kg/h """ @@ -44,6 +45,7 @@ def setup(self): self.add_input("h2o_consume_ratio", units="kg/kg", val=self.config.h2o_consume_ratio) self.add_output("methanol_out", units="kg/h", shape=(8760,)) + self.add_output("total_methanol_produced", units="kg/year") self.add_output("co2e_emissions", units="kg/h", shape=(8760,)) self.add_output("h2o_consumption", units="kg/h", shape=(8760,)) diff --git a/h2integrate/converters/methanol/smr_methanol_plant.py b/h2integrate/converters/methanol/smr_methanol_plant.py index 739bbc841..00122c173 100644 --- a/h2integrate/converters/methanol/smr_methanol_plant.py +++ b/h2integrate/converters/methanol/smr_methanol_plant.py @@ -98,6 +98,7 @@ def compute(self, inputs, outputs): outputs["meoh_atr_cat_consume"] = np.sum(meoh_prod) * atr_ratio outputs["ng_consume"] = meoh_prod * ng_ratio outputs["methanol_out"] = meoh_prod + outputs["total_methanol_produced"] = np.sum(meoh_prod) outputs["electricity_out"] = meoh_prod * elec_ratio diff --git a/h2integrate/core/finances.py b/h2integrate/core/finances.py index 7aa9b6587..770c15361 100644 --- a/h2integrate/core/finances.py +++ b/h2integrate/core/finances.py @@ -127,6 +127,10 @@ def setup(self): self.add_input("total_ammonia_produced", val=0.0, units="kg/year") self.add_output("LCOA", val=0.0, units="USD/kg") + if self.options["commodity_type"] == "methanol": + self.add_input("total_methanol_produced", val=0.0, units="kg/year") + self.add_output("LCOM", val=0.0, units="USD/kg") + if self.options["commodity_type"] == "nitrogen": self.add_input("total_nitrogen_produced", val=0.0, units="kg/year") self.add_output("LCON", val=0.0, units="USD/kg") @@ -161,7 +165,7 @@ def setup(self): ) def compute(self, inputs, outputs): - mass_commodities = ["hydrogen", "ammonia", "co2", "nitrogen"] + mass_commodities = ["hydrogen", "ammonia", "methanol", "co2", "nitrogen"] if "pf_params" in self.plant_config["finance_parameters"]: gen_inflation = self.plant_config["finance_parameters"]["pf_params"]["params"][ @@ -342,6 +346,9 @@ def compute(self, inputs, outputs): elif self.options["commodity_type"] == "ammonia": outputs["LCOA"] = sol["price"] + elif self.options["commodity_type"] == "methanol": + outputs["LCOM"] = sol["price"] + elif self.options["commodity_type"] == "electricity": outputs["LCOE"] = sol["price"] diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index 48a591905..4a3eb9c01 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -321,10 +321,10 @@ def create_financial_model(self): for tech in electricity_producing_techs: if tech in tech_configs: commodity_types.append("electricity") - continue + break # Steel, methanol provides their own financials - if any(c in commodity_types for c in ("steel", "methanol")): + if any(c in commodity_types for c in ("steel")): continue # GeoH2 provides own financials @@ -340,7 +340,7 @@ def create_financial_model(self): # commodity types for this group all_included_techs = set() for commodity_type in commodity_types: - if commodity_type not in ["steel", "methanol"]: # These handle their own financials + if commodity_type not in ["steel"]: # These handle their own financials included_techs = self.get_included_technologies( tech_configs, commodity_type, self.plant_config ) @@ -410,6 +410,7 @@ def get_included_technologies(self, tech_config, commodity_type, plant_config): "electricity": "LCOE", "ammonia": "LCOA", "nitrogen": "LCON", + "methanol": "LCOM", } metric_key = metrics_map.get(commodity_type) included_techs = ( @@ -526,7 +527,7 @@ def connect_technologies(self): # Connect the outputs of the technology models to the appropriate financial groups for group_id, tech_configs in self.financial_groups.items(): # Skip steel financials; it provides its own financials - if any(c in tech_configs for c in ("steel", "methanol", "geoh2")): + if any(c in tech_configs for c in ("steel", "geoh2")): continue plant_producing_electricity = False @@ -557,7 +558,6 @@ def connect_technologies(self): for commodity_type in commodity_types: if commodity_type not in [ "steel", - "methanol", ]: # These handle their own financials included_techs = self.get_included_technologies( tech_configs, commodity_type, self.plant_config @@ -608,6 +608,12 @@ def connect_technologies(self): f"financials_group_{group_id}.total_ammonia_produced", ) + if "methanol" in tech_name: + self.plant.connect( + f"{tech_name}.total_methanol_produced", + f"financials_group_{group_id}.total_methanol_produced", + ) + if "doc" in tech_name: self.plant.connect( f"{tech_name}.co2_capture_mtpy", From b98d80ed9a03f454f439bbd1f120fd49db6a7384 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Thu, 4 Sep 2025 15:18:51 -0600 Subject: [PATCH 09/79] Config updates from merge --- .../plant_config_co2h.yaml | 46 +++++++++---------- .../tech_config_co2h.yaml | 17 +++---- .../tech_inputs/hopp_config.yaml | 6 +-- 3 files changed, 33 insertions(+), 36 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index d8d7f3340..ea2e152da 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -37,31 +37,27 @@ plant: hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True finance_parameters: - analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind - debt_equity_split: False - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax: 0.02 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - property_insurance: 0.01 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf - total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - administrative_expense_percent_of_sales: 0.00 # percent of sales H2FAST default - depreciation_method: "MACRS" # can be "MACRS" or "Straight line" - MACRS may be better and can reduce LCOH by more than $1/kg and is spec'd in the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - depreciation_period_electrolyzer: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - discount_years: - hopp: 2019 - electrolyzer: 2021 - methanol: 2020 - wind: 2020 - doc: 2020 + + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 # 5 y options: commodity_type: "methanol" cost_adjustment_parameters: diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 7a1f1b54d..82e950e96 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -11,6 +11,9 @@ technologies: financial_model: group: "1" electrolyzer_rating: 156. # MW + model_inputs: + cost_parameters: + cost_year: 2019 electrolyzer: performance_model: model: "eco_pem_electrolyzer_performance" @@ -35,7 +38,9 @@ technologies: include_degradation_penalty: True #include degradation turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW financial_parameters: - replacement_cost_percent: 0.15 # percent of capex - H2A default case + capital_items: + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case wind: performance_model: model: "wind_plant_performance" @@ -71,6 +76,7 @@ technologies: adjust_air_density_for_elevation: True cost_parameters: cost_per_kw: 1500.0 + cost_year: 2019 doc: performance_model: model: "direct_ocean_capture_performance" @@ -80,7 +86,7 @@ technologies: group: "1" model_inputs: shared_parameters: - power_single_ed_w: 24000000.0 # W + power_single_ed_w: 3000000.0 # W flow_rate_single_ed_m3s: 0.6 # m^3/s number_ed_min: 1 number_ed_max: 10 @@ -106,8 +112,6 @@ technologies: model: "co2h_methanol_plant_cost" financial_model: group: "1" - # financial_model: - # model: "co2h_methanol_plant_financial" model_inputs: shared_parameters: plant_capacity_kgpy: 127893196.8 @@ -129,7 +133,4 @@ technologies: meoh_syn_cat_price: 615.274273 ng_price: 4.0 co2_price: 0.0549007 - # finance_parameters: - # # Sources in NETL-PUB-22580: Exhibit 3-5 and Exhibit 3-7 - # tasc_toc_multiplier: 1.093 - # fixed_charge_rate: 0.0707 + cost_year: 2020 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml index 7aed60354..ede625396 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml @@ -29,18 +29,18 @@ site: #!include flatirons_site.yaml technologies: wind: - num_turbines: 29 + num_turbines: 35 turbine_rating_kw: 6000.0 model_name: pysam #floris timestep: [0, 8760] # floris_config: !include floris_input_lbw_6MW.yaml fin_model: !include default_fin_config.yaml pv: - system_capacity_kw: 350000 + system_capacity_kw: 12000 dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] fin_model: !include default_fin_config.yaml grid: - interconnect_kw: 200000 # Set higher than rated generation capacity + interconnect_kw: 156000 # Set higher than rated generation capacity fin_model: !include default_fin_config.yaml config: From 7467b99c1b512b327065521d30c410fa4bc98c77 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Fri, 5 Sep 2025 11:06:59 -0600 Subject: [PATCH 10/79] Getting tests passing --- examples/03_methanol/smr/plant_config_smr.yaml | 7 +++---- h2integrate/core/h2integrate_model.py | 3 +-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/examples/03_methanol/smr/plant_config_smr.yaml b/examples/03_methanol/smr/plant_config_smr.yaml index 7b53ef179..c2b036477 100644 --- a/examples/03_methanol/smr/plant_config_smr.yaml +++ b/examples/03_methanol/smr/plant_config_smr.yaml @@ -34,14 +34,14 @@ plant: finance_parameters: finance_model: "ProFastComp" - profast_inputs: + model_inputs: params: analysis_start_year: 2032 installation_time: 36 # months inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB basline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx and https://www.nrel.gov/docs/fy25osti/91775.pdf + property_tax_and_insurance: 0.03 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ @@ -52,8 +52,7 @@ finance_parameters: admin_expense: 0.00 # percent of sales H2FAST default capital_items: depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - refurb: [0.] + depr_period: 5 # 5 y options: commodity_type: "methanol" cost_adjustment_parameters: diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index e730eb511..f8269f881 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -324,10 +324,9 @@ def create_financial_model(self): if tech in tech_configs: commodity_types.append("electricity") break - break # Steel, methanol provides their own financials - if any(c in commodity_types for c in ("steel")): + if any(c in commodity_types for c in ("steel",)): continue # GeoH2 provides own financials From 087c6a400f1d1bb7c0447e04e62479d5f0652dcb Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Fri, 5 Sep 2025 12:50:24 -0600 Subject: [PATCH 11/79] Example chart set up --- .../tech_inputs/hopp_config.yaml | 4 +- .../plant_config_co2h.yaml | 3 +- .../plot_co2h_methanol.py | 14 ++++++- .../tech_config_co2h.yaml | 37 +++++++++++++++++-- .../tech_inputs/hopp_config.yaml | 18 ++++----- .../hydrogen_dispatch.ipynb | 6 +-- .../methanol/co2h_methanol_plant.py | 14 ++++--- .../converters/methanol/smr_methanol_plant.py | 17 ++++++--- 8 files changed, 81 insertions(+), 32 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml index 7aed60354..3f74a5cc0 100644 --- a/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml +++ b/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml @@ -16,8 +16,8 @@ site: #!include flatirons_site.yaml - [0.0, 25000] - [25000, 25000] - [25000, 0.0] - solar_resource_file: "tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv" - wind_resource_file: "tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw" + solar_resource_file: "" + wind_resource_file: "" wave_resource_file: "" grid_resource_file: "" hub_height: 115.0 diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index ea2e152da..f7f14a853 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -25,7 +25,8 @@ site: # this will naturally grow as we mature the interconnected tech technology_interconnections: [ ["hopp", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "methanol", "hydrogen", "pipe"], + ["electrolyzer", "h2_storage", "hydrogen", "pipe"], + ["h2_storage", "methanol", "hydrogen", "pipe"], ["wind","doc","electricity","cable"], ["doc","methanol","co2","pipe"], ] diff --git a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py index f8f35780a..ce6cf7082 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py @@ -47,13 +47,23 @@ def plot_methanol(model): plt.yscale("log") plt.legend() - # H2 and CO2 to Methanol + # H2 and Storage plt.subplot(3, 2, 5) + plt.title("H2 Storage") + h2_storage_in = model.plant.h2_storage.h2_storage.get_val("hydrogen_in") + h2_storage_out = model.plant.h2_storage_to_methanol_pipe.get_val("hydrogen_out") * 3600 + plt.plot(times, h2_storage_in, label="hydrogen_in [kg/hr]", color=[1, 0.5, 0]) + plt.plot(times, h2_storage_out, label="hydrogen_out [kg/hr]", color=[0, 0.5, 0]) + plt.yscale("log") + plt.legend() + + # H2 and CO2 to Methanol + plt.subplot(3, 2, 6) plt.title("Methanol") meoh_h2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("hydrogen_in") meoh_co2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("co2_in") meoh_meoh_out = model.plant.methanol.co2h_methanol_plant_performance.get_val("methanol_out") - plt.plot(times, meoh_h2_in, label="hydrogen_in [kg/hr]", color=[1, 0.5, 0]) + plt.plot(times, meoh_h2_in, label="hydrogen_in [kg/hr]", color=[0, 0.5, 0]) plt.plot(times, meoh_co2_in, label="co2_in [kg/hr]", color=[0.5, 0.25, 0]) plt.plot(times, meoh_meoh_out, label="methanol_out [kg/hr]", color=[1, 0, 0.5]) plt.yscale("log") diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 82e950e96..473efbbb3 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -30,7 +30,7 @@ technologies: resize_for_enduse: False size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) hydrogen_dmd: - n_clusters: 4 + n_clusters: 8 cluster_rating_MW: 39 pem_control_type: 'basic' eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol @@ -41,6 +41,35 @@ technologies: capital_items: depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 replacement_cost_percent: 0.15 # percent of capex - H2A default case + h2_storage: + performance_model: + model: "h2_storage" + control_strategy: + model: "demand_open_loop_controller" + cost_model: + model: "h2_storage" + financial_model: + group: default + model_inputs: + performance_parameters: + rating: 312. + size_capacity_from_demand: + flag: True # If True, then storage is sized to provide steady-state storage + capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. + type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] + days: 0 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) + control_parameters: + resource_name: "hydrogen" + resource_rate_units: "kg/h" + max_capacity: 300000.0 # kg + max_charge_percent: 1.0 # percent as decimal + min_charge_percent: 0.1 # percent as decimal + init_charge_percent: 0.25 # percent as decimal + max_charge_rate: 10000.0 # kg/time step + max_discharge_rate: 10000.0 # kg/time step + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal + demand_profile: 2226.0274 # Example: 10 time steps with 5000 kg/time step demand. Scalar indicates constant demand, array-like indicates dynamic demand wind: performance_model: model: "wind_plant_performance" @@ -53,8 +82,8 @@ technologies: wind_speed: 9. model_inputs: shared_parameters: - num_turbines: 100 - turbine_rating_kw: 8300 + num_turbines: 66 + turbine_rating_kw: 15000 performance_parameters: rotor_diameter: 196. hub_height: 130. @@ -114,7 +143,7 @@ technologies: group: "1" model_inputs: shared_parameters: - plant_capacity_kgpy: 127893196.8 + plant_capacity_kgpy: 100000000 plant_capacity_flow: "methanol" performance_parameters: capacity_factor: 0.9 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml index ede625396..cb30a1d3e 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml @@ -1,8 +1,8 @@ site: #!include flatirons_site.yaml data: - lat: 32.34 - lon: -98.27 - elev: 440 + lat: 29.2 + lon: -94.6 + elev: 0 year: 2013 tz: -6 site_boundaries: # enlarged boundaries to fit all turbines @@ -16,8 +16,8 @@ site: #!include flatirons_site.yaml - [0.0, 25000] - [25000, 25000] - [25000, 0.0] - solar_resource_file: "tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv" - wind_resource_file: "tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw" + solar_resource_file: "" + wind_resource_file: "" wave_resource_file: "" grid_resource_file: "" hub_height: 115.0 @@ -29,18 +29,18 @@ site: #!include flatirons_site.yaml technologies: wind: - num_turbines: 35 - turbine_rating_kw: 6000.0 + num_turbines: 28 + turbine_rating_kw: 15000.0 model_name: pysam #floris timestep: [0, 8760] # floris_config: !include floris_input_lbw_6MW.yaml fin_model: !include default_fin_config.yaml pv: - system_capacity_kw: 12000 + system_capacity_kw: 24000 dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] fin_model: !include default_fin_config.yaml grid: - interconnect_kw: 156000 # Set higher than rated generation capacity + interconnect_kw: 312000 # Set higher than rated generation capacity fin_model: !include default_fin_config.yaml config: diff --git a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb index eb306d865..7a3df5b0d 100644 --- a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb +++ b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb @@ -36,7 +36,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "91c90e5c", "metadata": {}, "outputs": [ @@ -64,7 +64,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "bcabc113", "metadata": {}, "outputs": [ @@ -221,7 +221,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "id": "8f08c94a", "metadata": {}, "outputs": [ diff --git a/h2integrate/converters/methanol/co2h_methanol_plant.py b/h2integrate/converters/methanol/co2h_methanol_plant.py index b3c1a241c..53b2afd1a 100644 --- a/h2integrate/converters/methanol/co2h_methanol_plant.py +++ b/h2integrate/converters/methanol/co2h_methanol_plant.py @@ -181,13 +181,17 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): lhv_mj = inputs["ng_lhv"] lhv_mmbtu = convert_units(lhv_mj, "MJ", "MBtu") - outputs["CapEx"] = toc_usd - outputs["OpEx"] = foc_usd_y + voc_usd_y outputs["Fixed_OpEx"] = foc_usd_y outputs["Variable_OpEx"] = voc_usd_y - outputs["meoh_syn_cat_cost"] = inputs["meoh_syn_cat_consume"] * inputs["meoh_syn_cat_price"] - outputs["ng_cost"] = np.sum(inputs["ng_consume"]) * lhv_mmbtu * inputs["ng_price"] - outputs["co2_cost"] = np.sum(inputs["carbon_dioxide_consume"]) * inputs["co2_price"] + meoh_cat = inputs["meoh_syn_cat_consume"] * inputs["meoh_syn_cat_price"] + outputs["meoh_syn_cat_cost"] = meoh_cat + ng_cost = np.sum(inputs["ng_consume"]) * lhv_mmbtu * inputs["ng_price"] + outputs["ng_cost"] = ng_cost + co2_cost = np.sum(inputs["carbon_dioxide_consume"]) * inputs["co2_price"] + outputs["co2_cost"] = co2_cost + + outputs["CapEx"] = toc_usd + outputs["OpEx"] = foc_usd_y + voc_usd_y + meoh_cat + ng_cost + co2_cost class CO2HMethanolPlantFinanceModel(MethanolFinanceBaseClass): diff --git a/h2integrate/converters/methanol/smr_methanol_plant.py b/h2integrate/converters/methanol/smr_methanol_plant.py index e694f72d7..5a34a8acd 100644 --- a/h2integrate/converters/methanol/smr_methanol_plant.py +++ b/h2integrate/converters/methanol/smr_methanol_plant.py @@ -169,14 +169,19 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): lhv_mj = inputs["ng_lhv"] lhv_mmbtu = convert_units(lhv_mj, "MJ", "MBtu") - outputs["CapEx"] = toc_usd - outputs["OpEx"] = foc_usd_y + voc_usd_y outputs["Fixed_OpEx"] = foc_usd_y outputs["Variable_OpEx"] = voc_usd_y - outputs["meoh_syn_cat_cost"] = inputs["meoh_syn_cat_consume"] * inputs["meoh_syn_cat_price"] - outputs["meoh_atr_cat_cost"] = inputs["meoh_atr_cat_consume"] * inputs["meoh_atr_cat_price"] - outputs["ng_cost"] = np.sum(inputs["ng_consume"]) * lhv_mmbtu * inputs["ng_price"] - outputs["elec_revenue"] = np.sum(inputs["electricity_out"]) * ppa_price + meoh_cat = inputs["meoh_syn_cat_consume"] * inputs["meoh_syn_cat_price"] + outputs["meoh_syn_cat_cost"] = meoh_cat + atr_cat = inputs["meoh_atr_cat_consume"] * inputs["meoh_atr_cat_price"] + outputs["meoh_atr_cat_cost"] = atr_cat + ng_cost = np.sum(inputs["ng_consume"]) * lhv_mmbtu * inputs["ng_price"] + outputs["ng_cost"] = ng_cost + elec_rev = np.sum(inputs["electricity_out"]) * ppa_price + outputs["elec_revenue"] = elec_rev + + outputs["CapEx"] = toc_usd + outputs["OpEx"] = foc_usd_y + voc_usd_y + meoh_cat + atr_cat + ng_cost - elec_rev class SMRMethanolPlantFinanceModel(MethanolFinanceBaseClass): From ad69753d71d4dafc8c7cc669894bdf75eb062c31 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Fri, 5 Sep 2025 12:52:14 -0600 Subject: [PATCH 12/79] Changelog update --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a374693d1..1b9ceb772 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,7 @@ - Added `simulation` section under `plant_config['plant']` that has information such as number of timesteps in the simulation, time step interval in seconds, simulation start time, and time zone. - Added `"custom_electrolyzer_cost"` model, an electrolyzer cost model that allows for user-defined capex and opex values - Made `pipe` and `cable` substance-agnostic rather than hard-coded for `hydrogen` and `electricity` +- Added example of DOC integrating with methanol ## 0.3.0 [May 2 2025] From b131e0ddcc41b8e0ce0d3934644a5486a9e1edc7 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Fri, 5 Sep 2025 13:32:35 -0600 Subject: [PATCH 13/79] Tests fixes --- .../tech_inputs/hopp_config.yaml | 4 +- .../solar/29.2_-94.6_psmv3_60_2013.csv | 8763 ++++++++++++++++ .../solar/32.31714_-100.18_psmv3_60_2013.csv | 8763 ---------------- ...29.2_-94.6_windtoolkit_2013_60min_100m.srw | 8765 +++++++++++++++++ ...-94.6_windtoolkit_2013_60min_100m_120m.srw | 8765 +++++++++++++++++ ...29.2_-94.6_windtoolkit_2013_60min_120m.srw | 8765 +++++++++++++++++ ...00.18_windtoolkit_2013_60min_100m_120m.srw | 8765 ----------------- tests/h2integrate/test_all_examples.py | 17 + 8 files changed, 35077 insertions(+), 17530 deletions(-) create mode 100644 examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/29.2_-94.6_psmv3_60_2013.csv delete mode 100644 examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv create mode 100644 examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m.srw create mode 100644 examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m_120m.srw create mode 100644 examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_120m.srw delete mode 100644 examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml index cb30a1d3e..086d7283a 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml @@ -16,8 +16,8 @@ site: #!include flatirons_site.yaml - [0.0, 25000] - [25000, 25000] - [25000, 0.0] - solar_resource_file: "" - wind_resource_file: "" + solar_resource_file: "tech_inputs/weather/solar/29.2_-94.6_psmv3_60_2013.csv" + wind_resource_file: "tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m_120m.srw" wave_resource_file: "" grid_resource_file: "" hub_height: 115.0 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/29.2_-94.6_psmv3_60_2013.csv b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/29.2_-94.6_psmv3_60_2013.csv new file mode 100644 index 000000000..93df0fe7e --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/29.2_-94.6_psmv3_60_2013.csv @@ -0,0 +1,8763 @@ +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 Units,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 +NSRDB,751441,-,-,-,29.21,-94.58,-6,0,-6,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,v3.2.2 +Year,Month,Day,Hour,Minute,GHI,DHI,DNI,Wind Speed,Temperature,Solar Zenith Angle,Pressure,Dew Point +2013,1,1,0,30,0,0,0,5.5,18.8,173.51,1014,18.7 +2013,1,1,1,30,0,0,0,5.9,18.900000000000002,163.51,1014,18.8 +2013,1,1,2,30,0,0,0,6,18.900000000000002,150.67000000000002,1014,18.8 +2013,1,1,3,30,0,0,0,5.5,18.7,137.59,1013,18.7 +2013,1,1,4,30,0,0,0,4.6000000000000005,18.3,124.58,1013,18.3 +2013,1,1,5,30,0,0,0,3.7,17.7,111.79,1014,17.7 +2013,1,1,6,30,0,0,0,3.3000000000000003,16.8,99.34,1014,16.8 +2013,1,1,7,30,2,2,0,4.3,15.8,87.2,1015,15.8 +2013,1,1,8,30,40,40,0,6.2,14.8,76.31,1016,14.8 +2013,1,1,9,30,10,10,0,7.7,14.200000000000001,66.55,1017,13.700000000000001 +2013,1,1,10,30,38,38,0,8.3,14.100000000000001,58.69,1017,12.9 +2013,1,1,11,30,25,25,0,8.200000000000001,14.3,53.620000000000005,1017,12.600000000000001 +2013,1,1,12,30,150,150,0,8,14.5,52.160000000000004,1017,12.600000000000001 +2013,1,1,13,30,121,121,0,7.9,14.600000000000001,54.620000000000005,1017,12.4 +2013,1,1,14,30,85,85,0,7.800000000000001,14.600000000000001,60.51,1017,12.100000000000001 +2013,1,1,15,30,25,25,0,7.4,14.5,68.95,1018,11.9 +2013,1,1,16,30,12,12,0,7,14.200000000000001,79.09,1018,11.700000000000001 +2013,1,1,17,30,0,0,0,6.800000000000001,14,89.93,1019,11.600000000000001 +2013,1,1,18,30,0,0,0,6.9,13.3,102.55,1020,11.5 +2013,1,1,19,30,0,0,0,6.9,12.8,115.10000000000001,1021,11.200000000000001 +2013,1,1,20,30,0,0,0,6.800000000000001,12.3,127.97,1021,11 +2013,1,1,21,30,0,0,0,6.7,11.9,141.01,1021,10.700000000000001 +2013,1,1,22,30,0,0,0,6.5,11.5,154.07,1021,10.4 +2013,1,1,23,30,0,0,0,6.5,11.200000000000001,166.67000000000002,1021,10.100000000000001 +2013,1,2,0,30,0,0,0,6.5,10.9,173.45000000000002,1022,9.8 +2013,1,2,1,30,0,0,0,6.7,10.600000000000001,163.57,1022,9.4 +2013,1,2,2,30,0,0,0,6.9,10.3,150.74,1022,9 +2013,1,2,3,30,0,0,0,7,10,137.67000000000002,1022,8.700000000000001 +2013,1,2,4,30,0,0,0,7.1000000000000005,9.8,124.65,1022,8.4 +2013,1,2,5,30,0,0,0,7,9.700000000000001,111.85000000000001,1023,8.200000000000001 +2013,1,2,6,30,0,0,0,6.800000000000001,9.600000000000001,99.4,1023,8.1 +2013,1,2,7,30,7,7,0,6.800000000000001,9.600000000000001,87.23,1024,8 +2013,1,2,8,30,28,28,0,6.5,9.700000000000001,76.34,1024,7.9 +2013,1,2,9,30,6,6,0,6,9.9,66.55,1024,7.9 +2013,1,2,10,30,36,36,0,5.4,10.100000000000001,58.660000000000004,1024,7.9 +2013,1,2,11,30,99,99,0,4.800000000000001,10.3,53.550000000000004,1024,7.800000000000001 +2013,1,2,12,30,99,99,0,4.6000000000000005,10.4,52.07,1023,7.7 +2013,1,2,13,30,121,121,0,4.6000000000000005,10.5,54.5,1023,7.7 +2013,1,2,14,30,68,68,0,4.800000000000001,10.600000000000001,60.370000000000005,1023,7.7 +2013,1,2,15,30,63,63,0,5,10.4,68.8,1023,7.7 +2013,1,2,16,30,23,23,0,5.2,10,78.94,1023,7.800000000000001 +2013,1,2,17,30,0,0,0,5.300000000000001,9.9,89.8,1024,7.9 +2013,1,2,18,30,0,0,0,5.7,9.5,102.41,1024,7.800000000000001 +2013,1,2,19,30,0,0,0,5.7,9.3,114.97,1024,7.6000000000000005 +2013,1,2,20,30,0,0,0,5.800000000000001,9.1,127.84,1024,7.4 +2013,1,2,21,30,0,0,0,5.800000000000001,9,140.88,1025,7.2 +2013,1,2,22,30,0,0,0,5.800000000000001,8.9,153.94,1025,7.1000000000000005 +2013,1,2,23,30,0,0,0,5.800000000000001,8.700000000000001,166.53,1025,7 +2013,1,3,0,30,0,0,0,5.9,8.6,173.39000000000001,1025,6.9 +2013,1,3,1,30,0,0,0,6.2,8.5,163.62,1025,6.9 +2013,1,3,2,30,0,0,0,6.4,8.4,150.81,1025,6.9 +2013,1,3,3,30,0,0,0,6.7,8.3,137.74,1025,6.800000000000001 +2013,1,3,4,30,0,0,0,6.9,8.3,124.72,1026,6.800000000000001 +2013,1,3,5,30,0,0,0,7.1000000000000005,8.200000000000001,111.91,1026,6.7 +2013,1,3,6,30,0,0,0,7.2,8.200000000000001,99.44,1027,6.6000000000000005 +2013,1,3,7,30,10,10,0,7.300000000000001,8.3,87.26,1027,6.5 +2013,1,3,8,30,142,87,234,7.300000000000001,8.700000000000001,76.35000000000001,1028,6.300000000000001 +2013,1,3,9,30,260,163,242,7.2,9.200000000000001,66.54,1028,6.1000000000000005 +2013,1,3,10,30,299,235,122,6.800000000000001,9.8,58.620000000000005,1028,6 +2013,1,3,11,30,351,278,124,6.4,10.4,53.480000000000004,1027,5.9 +2013,1,3,12,30,652,87,918,5.9,10.9,51.96,1027,5.800000000000001 +2013,1,3,13,30,610,84,903,5.6000000000000005,11.3,54.370000000000005,1026,5.7 +2013,1,3,14,30,353,210,289,5.5,11.700000000000001,60.230000000000004,1026,5.5 +2013,1,3,15,30,198,153,123,5.4,12,68.66,1026,5.300000000000001 +2013,1,3,16,30,39,39,0,5.4,11.9,78.8,1026,5.4 +2013,1,3,17,30,0,0,0,5.4,11.8,89.69,1027,5.9 +2013,1,3,18,30,0,0,0,5.800000000000001,11.8,102.27,1028,6 +2013,1,3,19,30,0,0,0,5.9,11.700000000000001,114.83,1028,6.2 +2013,1,3,20,30,0,0,0,6,11.5,127.7,1029,6.300000000000001 +2013,1,3,21,30,0,0,0,6,11.200000000000001,140.75,1029,6.5 +2013,1,3,22,30,0,0,0,6,11,153.8,1028,6.7 +2013,1,3,23,30,0,0,0,5.9,10.8,166.39000000000001,1028,6.7 +2013,1,4,0,30,0,0,0,5.9,10.700000000000001,173.31,1028,6.800000000000001 +2013,1,4,1,30,0,0,0,5.9,10.600000000000001,163.67000000000002,1028,7 +2013,1,4,2,30,0,0,0,6.1000000000000005,10.600000000000001,150.88,1028,7.1000000000000005 +2013,1,4,3,30,0,0,0,6.2,10.600000000000001,137.8,1028,7.1000000000000005 +2013,1,4,4,30,0,0,0,6.4,10.5,124.78,1029,7 +2013,1,4,5,30,0,0,0,6.5,10.4,111.96000000000001,1029,6.9 +2013,1,4,6,30,0,0,0,6.5,10.4,99.49000000000001,1030,6.9 +2013,1,4,7,30,5,5,0,6.4,10.4,87.29,1031,6.7 +2013,1,4,8,30,56,56,0,6.4,10.5,76.36,1031,6.5 +2013,1,4,9,30,70,70,0,6.4,10.700000000000001,66.53,1032,6.2 +2013,1,4,10,30,138,138,0,6.5,10.8,58.58,1032,5.9 +2013,1,4,11,30,153,153,0,6.5,11,53.410000000000004,1031,5.800000000000001 +2013,1,4,12,30,84,84,0,6.5,11.200000000000001,51.85,1029,5.800000000000001 +2013,1,4,13,30,184,182,3,6.4,11.3,54.24,1029,5.9 +2013,1,4,14,30,115,115,0,6.300000000000001,11.5,60.09,1028,6 +2013,1,4,15,30,73,73,0,6.2,11.600000000000001,68.51,1028,6.1000000000000005 +2013,1,4,16,30,30,30,0,6,11.3,78.65,1028,6.300000000000001 +2013,1,4,17,30,0,0,0,6,11.100000000000001,89.56,1028,6.7 +2013,1,4,18,30,0,0,0,6.4,11.100000000000001,102.13,1028,7 +2013,1,4,19,30,0,0,0,6.4,11,114.69,1028,7.2 +2013,1,4,20,30,0,0,0,5.6000000000000005,10.8,127.57000000000001,1028,7.300000000000001 +2013,1,4,21,30,0,0,0,4.3,10.700000000000001,140.61,1029,7.2 +2013,1,4,22,30,0,0,0,4,10.700000000000001,153.67000000000002,1029,7.1000000000000005 +2013,1,4,23,30,0,0,0,4.4,10.8,166.24,1028,7.6000000000000005 +2013,1,5,0,30,0,0,0,4.6000000000000005,10.8,173.22,1028,7.9 +2013,1,5,1,30,0,0,0,4.7,10.8,163.71,1027,8.200000000000001 +2013,1,5,2,30,0,0,0,4.800000000000001,10.700000000000001,150.94,1027,8.5 +2013,1,5,3,30,0,0,0,4.9,10.600000000000001,137.86,1027,8.700000000000001 +2013,1,5,4,30,0,0,0,5.300000000000001,10.5,124.84,1027,8.9 +2013,1,5,5,30,0,0,0,5.7,10.4,112.01,1027,8.9 +2013,1,5,6,30,0,0,0,5.9,10.3,99.53,1027,9 +2013,1,5,7,30,5,5,0,6.2,10.3,87.32000000000001,1028,9 +2013,1,5,8,30,6,6,0,6.300000000000001,10.5,76.37,1028,9.1 +2013,1,5,9,30,38,38,0,6.300000000000001,10.700000000000001,66.51,1028,9.1 +2013,1,5,10,30,22,22,0,6.2,11,58.53,1027,9.200000000000001 +2013,1,5,11,30,211,205,10,6.1000000000000005,11.200000000000001,53.32,1026,9.3 +2013,1,5,12,30,100,100,0,6.1000000000000005,11.4,51.74,1025,9.4 +2013,1,5,13,30,41,41,0,6.1000000000000005,11.5,54.1,1024,9.5 +2013,1,5,14,30,19,19,0,6.4,11.600000000000001,59.94,1024,9.700000000000001 +2013,1,5,15,30,76,76,0,6.5,11.5,68.36,1024,9.8 +2013,1,5,16,30,56,56,0,6.5,11.4,78.5,1024,9.9 +2013,1,5,17,30,0,0,0,6.5,11.3,89.44,1024,10 +2013,1,5,18,30,0,0,0,6.300000000000001,11.200000000000001,101.99000000000001,1024,10.100000000000001 +2013,1,5,19,30,0,0,0,6.1000000000000005,11.200000000000001,114.55,1024,10.200000000000001 +2013,1,5,20,30,0,0,0,5.9,11.100000000000001,127.43,1024,10.200000000000001 +2013,1,5,21,30,0,0,0,5.6000000000000005,11.100000000000001,140.48,1024,10.200000000000001 +2013,1,5,22,30,0,0,0,5.5,11,153.53,1024,10.200000000000001 +2013,1,5,23,30,0,0,0,5.6000000000000005,10.8,166.09,1024,10.200000000000001 +2013,1,6,0,30,0,0,0,5.800000000000001,10.600000000000001,173.13,1024,10.100000000000001 +2013,1,6,1,30,0,0,0,6.2,10.4,163.75,1024,10 +2013,1,6,2,30,0,0,0,6.800000000000001,10.100000000000001,150.99,1024,9.8 +2013,1,6,3,30,0,0,0,7.4,9.9,137.92000000000002,1024,9.600000000000001 +2013,1,6,4,30,0,0,0,7.9,9.700000000000001,124.89,1024,9.4 +2013,1,6,5,30,0,0,0,8.1,9.5,112.05,1025,9.200000000000001 +2013,1,6,6,30,0,0,0,8.1,9.200000000000001,99.56,1025,8.9 +2013,1,6,7,30,10,10,0,8,9.1,87.33,1026,8.6 +2013,1,6,8,30,139,88,216,8,9.3,76.37,1026,8.5 +2013,1,6,9,30,269,160,272,7.7,9.700000000000001,66.49,1026,8.4 +2013,1,6,10,30,338,236,195,7.4,10.4,58.480000000000004,1026,8.5 +2013,1,6,11,30,477,247,384,6.9,11.4,53.230000000000004,1025,8.5 +2013,1,6,12,30,679,89,950,6.5,12.200000000000001,51.61,1025,8.200000000000001 +2013,1,6,13,30,640,83,946,6.1000000000000005,12.9,53.95,1024,7.9 +2013,1,6,14,30,535,76,912,6,13.4,59.78,1024,7.7 +2013,1,6,15,30,374,65,834,5.800000000000001,13.5,68.2,1024,7.5 +2013,1,6,16,30,179,47,653,5.6000000000000005,13.100000000000001,78.35000000000001,1024,7.7 +2013,1,6,17,30,0,0,0,5.5,12.700000000000001,89.31,1024,7.800000000000001 +2013,1,6,18,30,0,0,0,5.4,12.200000000000001,101.84,1025,7.800000000000001 +2013,1,6,19,30,0,0,0,5.300000000000001,12,114.41,1026,7.9 +2013,1,6,20,30,0,0,0,5.4,11.600000000000001,127.29,1026,7.9 +2013,1,6,21,30,0,0,0,5.6000000000000005,11.3,140.34,1026,8 +2013,1,6,22,30,0,0,0,5.800000000000001,11,153.39000000000001,1026,8 +2013,1,6,23,30,0,0,0,5.9,10.700000000000001,165.94,1026,8 +2013,1,7,0,30,0,0,0,5.800000000000001,10.4,173.02,1026,8.1 +2013,1,7,1,30,0,0,0,5.9,10.3,163.77,1025,8.1 +2013,1,7,2,30,0,0,0,6,10.3,151.04,1025,8.1 +2013,1,7,3,30,0,0,0,6.1000000000000005,10.4,137.97,1025,8.200000000000001 +2013,1,7,4,30,0,0,0,6.1000000000000005,10.3,124.94,1024,8.200000000000001 +2013,1,7,5,30,0,0,0,6,10.3,112.09,1025,8.3 +2013,1,7,6,30,0,0,0,5.7,10.4,99.59,1025,8.3 +2013,1,7,7,30,6,6,0,5.4,10.8,87.35000000000001,1025,8.5 +2013,1,7,8,30,139,87,221,5.2,11.4,76.37,1025,8.8 +2013,1,7,9,30,279,156,306,5,12.100000000000001,66.45,1025,9 +2013,1,7,10,30,386,220,318,4.7,12.700000000000001,58.410000000000004,1025,9.4 +2013,1,7,11,30,305,266,65,4.6000000000000005,13,53.13,1024,9.700000000000001 +2013,1,7,12,30,366,293,118,4.7,13.200000000000001,51.480000000000004,1023,10 +2013,1,7,13,30,405,273,224,4.9,13.200000000000001,53.800000000000004,1022,10.3 +2013,1,7,14,30,379,205,344,5.300000000000001,13.200000000000001,59.620000000000005,1022,10.4 +2013,1,7,15,30,262,141,323,5.5,13.100000000000001,68.04,1022,10.5 +2013,1,7,16,30,130,69,295,5.7,12.8,78.19,1022,10.600000000000001 +2013,1,7,17,30,0,0,0,5.7,12.700000000000001,89.18,1021,10.700000000000001 +2013,1,7,18,30,0,0,0,6,12.700000000000001,101.69,1021,10.8 +2013,1,7,19,30,0,0,0,5.9,12.9,114.27,1021,11 +2013,1,7,20,30,0,0,0,5.9,13.100000000000001,127.15,1020,11.200000000000001 +2013,1,7,21,30,0,0,0,6,13.4,140.21,1020,11.700000000000001 +2013,1,7,22,30,0,0,0,6.1000000000000005,13.700000000000001,153.25,1019,12.100000000000001 +2013,1,7,23,30,0,0,0,6.1000000000000005,13.9,165.79,1018,12.600000000000001 +2013,1,8,0,30,0,0,0,6.2,14.100000000000001,172.91,1018,13.200000000000001 +2013,1,8,1,30,0,0,0,6.2,14.3,163.8,1017,13.600000000000001 +2013,1,8,2,30,0,0,0,6.4,14.4,151.09,1017,13.9 +2013,1,8,3,30,0,0,0,6.5,14.5,138.02,1016,14.200000000000001 +2013,1,8,4,30,0,0,0,6.5,14.700000000000001,124.98,1016,14.4 +2013,1,8,5,30,0,0,0,6.6000000000000005,14.9,112.13,1016,14.700000000000001 +2013,1,8,6,30,0,0,0,6.7,15.3,99.61,1017,15 +2013,1,8,7,30,5,5,0,6.9,15.700000000000001,87.36,1017,15.4 +2013,1,8,8,30,24,24,0,7,16.2,76.36,1017,15.9 +2013,1,8,9,30,39,39,0,7.1000000000000005,16.6,66.42,1017,16.3 +2013,1,8,10,30,162,162,0,7,17,58.34,1016,16.7 +2013,1,8,11,30,160,160,0,6.7,17.3,53.03,1015,17.1 +2013,1,8,12,30,142,142,0,6.4,17.400000000000002,51.34,1014,17.3 +2013,1,8,13,30,74,74,0,6.2,17.5,53.64,1012,17.400000000000002 +2013,1,8,14,30,85,85,0,6.300000000000001,17.5,59.45,1012,17.5 +2013,1,8,15,30,66,66,0,6.1000000000000005,17.5,67.87,1013,17.5 +2013,1,8,16,30,26,26,0,5.5,17.400000000000002,78.03,1013,17.400000000000002 +2013,1,8,17,30,0,0,0,5.2,17.3,89.05,1013,17.3 +2013,1,8,18,30,0,0,0,6.2,17.400000000000002,101.55,1013,17.400000000000002 +2013,1,8,19,30,0,0,0,6.800000000000001,17.400000000000002,114.13,1013,17.400000000000002 +2013,1,8,20,30,0,0,0,7.300000000000001,17.5,127.01,1013,17.5 +2013,1,8,21,30,0,0,0,7.5,17.400000000000002,140.07,1013,17.400000000000002 +2013,1,8,22,30,0,0,0,7.6000000000000005,17.400000000000002,153.11,1014,17.400000000000002 +2013,1,8,23,30,0,0,0,8,17.400000000000002,165.63,1014,17.400000000000002 +2013,1,9,0,30,0,0,0,8.5,17.400000000000002,172.78,1014,17.400000000000002 +2013,1,9,1,30,0,0,0,8.700000000000001,17.400000000000002,163.81,1014,17.400000000000002 +2013,1,9,2,30,0,0,0,8.6,17.400000000000002,151.13,1014,17.400000000000002 +2013,1,9,3,30,0,0,0,8.4,17.3,138.06,1013,17.3 +2013,1,9,4,30,0,0,0,8,17.3,125.02,1013,17.3 +2013,1,9,5,30,0,0,0,7.6000000000000005,17.3,112.16,1014,17.3 +2013,1,9,6,30,0,0,0,7.2,17.3,99.63,1015,17.3 +2013,1,9,7,30,6,6,0,6.6000000000000005,17.400000000000002,87.37,1016,17.400000000000002 +2013,1,9,8,30,3,3,0,6.2,17.5,76.34,1017,17.5 +2013,1,9,9,30,14,14,0,6.4,17.8,66.37,1017,17.7 +2013,1,9,10,30,42,42,0,6.800000000000001,18.1,58.27,1016,18 +2013,1,9,11,30,121,121,0,7.2,18.3,52.910000000000004,1015,18.2 +2013,1,9,12,30,133,133,0,8.1,18.3,51.2,1013,18.3 +2013,1,9,13,30,66,66,0,8.9,18.3,53.47,1012,18.3 +2013,1,9,14,30,34,34,0,8.6,18.400000000000002,59.28,1012,18.3 +2013,1,9,15,30,27,27,0,7.5,18.400000000000002,67.7,1013,18.400000000000002 +2013,1,9,16,30,39,39,0,6.300000000000001,18.2,77.87,1013,18.2 +2013,1,9,17,30,3,3,0,5.800000000000001,18.1,88.91,1013,18.1 +2013,1,9,18,30,0,0,0,6.2,17.8,101.39,1014,17.8 +2013,1,9,19,30,0,0,0,5.800000000000001,17.2,113.98,1016,17.2 +2013,1,9,20,30,0,0,0,5.4,16.6,126.87,1017,16.6 +2013,1,9,21,30,0,0,0,4.7,16.1,139.93,1018,15.8 +2013,1,9,22,30,0,0,0,3.8000000000000003,15.8,152.97,1018,15.100000000000001 +2013,1,9,23,30,0,0,0,3.1,15.600000000000001,165.47,1017,14.8 +2013,1,10,0,30,0,0,0,3.2,15.4,172.65,1017,14.600000000000001 +2013,1,10,1,30,0,0,0,4.2,15.100000000000001,163.82,1017,14.4 +2013,1,10,2,30,0,0,0,5.9,14.8,151.16,1018,14.100000000000001 +2013,1,10,3,30,0,0,0,6.6000000000000005,14.700000000000001,138.1,1018,13.9 +2013,1,10,4,30,0,0,0,5.7,14.600000000000001,125.06,1019,13.700000000000001 +2013,1,10,5,30,0,0,0,4.3,14.600000000000001,112.19,1019,13.600000000000001 +2013,1,10,6,30,0,0,0,3.4000000000000004,14.600000000000001,99.65,1019,13.600000000000001 +2013,1,10,7,30,9,9,0,3.4000000000000004,14.700000000000001,87.36,1020,13.8 +2013,1,10,8,30,16,16,0,2.7,15,76.32000000000001,1020,14.100000000000001 +2013,1,10,9,30,62,62,0,1.7000000000000002,15.4,66.32000000000001,1019,14.3 +2013,1,10,10,30,124,124,0,1.1,15.700000000000001,58.18,1019,14.4 +2013,1,10,11,30,175,174,1,1.4000000000000001,16,52.79,1018,14.4 +2013,1,10,12,30,453,291,257,2.4000000000000004,16.400000000000002,51.04,1018,14.4 +2013,1,10,13,30,493,234,434,2.9000000000000004,16.7,53.300000000000004,1017,14.3 +2013,1,10,14,30,514,82,842,3,16.900000000000002,59.1,1017,14.200000000000001 +2013,1,10,15,30,362,71,762,3,16.8,67.52,1017,14.200000000000001 +2013,1,10,16,30,179,50,606,3,16.2,77.7,1017,14.4 +2013,1,10,17,30,15,12,152,3,15.8,88.76,1017,14.3 +2013,1,10,18,30,0,0,0,3.1,15.4,101.24000000000001,1018,14.200000000000001 +2013,1,10,19,30,0,0,0,3.1,15.200000000000001,113.83,1018,14.200000000000001 +2013,1,10,20,30,0,0,0,3,15.100000000000001,126.73,1019,14.200000000000001 +2013,1,10,21,30,0,0,0,3,14.9,139.79,1019,14.100000000000001 +2013,1,10,22,30,0,0,0,2.9000000000000004,14.700000000000001,152.83,1018,13.9 +2013,1,10,23,30,0,0,0,2.9000000000000004,14.5,165.31,1018,13.700000000000001 +2013,1,11,0,30,0,0,0,2.8000000000000003,14.3,172.51,1018,13.4 +2013,1,11,1,30,0,0,0,2.5,14.200000000000001,163.82,1017,13.200000000000001 +2013,1,11,2,30,0,0,0,2.2,14.100000000000001,151.19,1017,12.9 +2013,1,11,3,30,0,0,0,1.9000000000000001,14.100000000000001,138.14000000000001,1017,12.700000000000001 +2013,1,11,4,30,0,0,0,1.4000000000000001,14.100000000000001,125.09,1016,12.5 +2013,1,11,5,30,0,0,0,0.7000000000000001,14.200000000000001,112.21000000000001,1016,12.200000000000001 +2013,1,11,6,30,0,0,0,0.5,14.4,99.66,1017,12.100000000000001 +2013,1,11,7,30,20,20,0,1.1,14.8,87.36,1017,12.200000000000001 +2013,1,11,8,30,136,90,195,1.5,15.600000000000001,76.29,1018,12.9 +2013,1,11,9,30,381,73,765,1.6,16.400000000000002,66.27,1018,13.5 +2013,1,11,10,30,525,83,835,1.7000000000000002,17.1,58.09,1017,13.700000000000001 +2013,1,11,11,30,455,269,307,1.9000000000000001,17.400000000000002,52.67,1016,14 +2013,1,11,12,30,513,262,399,2,17.5,50.88,1015,14.4 +2013,1,11,13,30,180,178,2,2.1,17.6,53.120000000000005,1014,14.9 +2013,1,11,14,30,183,179,8,2.3000000000000003,17.7,58.92,1013,15.600000000000001 +2013,1,11,15,30,87,87,0,2.5,17.6,67.35,1013,16.3 +2013,1,11,16,30,16,16,0,2.7,17.5,77.53,1013,17 +2013,1,11,17,30,7,7,0,2.8000000000000003,17.400000000000002,88.62,1013,17.400000000000002 +2013,1,11,18,30,0,0,0,3.6,17.900000000000002,101.09,1013,17.900000000000002 +2013,1,11,19,30,0,0,0,4.3,18.3,113.69,1013,18.3 +2013,1,11,20,30,0,0,0,5,18.7,126.59,1012,18.7 +2013,1,11,21,30,0,0,0,5.4,18.900000000000002,139.65,1012,18.900000000000002 +2013,1,11,22,30,0,0,0,5.4,18.900000000000002,152.68,1012,18.900000000000002 +2013,1,11,23,30,0,0,0,5.1000000000000005,19,165.15,1013,19 +2013,1,12,0,30,0,0,0,4.9,19,172.36,1013,19 +2013,1,12,1,30,0,0,0,4.7,19,163.82,1013,19 +2013,1,12,2,30,0,0,0,4.4,18.900000000000002,151.22,1012,18.900000000000002 +2013,1,12,3,30,0,0,0,4.4,18.900000000000002,138.17000000000002,1012,18.900000000000002 +2013,1,12,4,30,0,0,0,4.7,18.900000000000002,125.11,1012,18.900000000000002 +2013,1,12,5,30,0,0,0,5.1000000000000005,18.900000000000002,112.23,1012,18.900000000000002 +2013,1,12,6,30,0,0,0,5.9,19,99.66,1013,19 +2013,1,12,7,30,11,11,0,6.9,19.1,87.35000000000001,1013,19.1 +2013,1,12,8,30,127,92,149,7.1000000000000005,19.200000000000003,76.25,1013,19.200000000000003 +2013,1,12,9,30,282,159,305,6.9,19.200000000000003,66.2,1013,19.200000000000003 +2013,1,12,10,30,294,239,103,6.800000000000001,19.3,58,1012,19.200000000000003 +2013,1,12,11,30,170,170,0,6.800000000000001,19.3,52.53,1011,19.200000000000003 +2013,1,12,12,30,511,267,386,6.800000000000001,19.400000000000002,50.72,1010,19.200000000000003 +2013,1,12,13,30,353,282,117,6.5,19.3,52.94,1009,19.1 +2013,1,12,14,30,307,236,137,6.2,19.200000000000003,58.730000000000004,1009,19 +2013,1,12,15,30,227,165,161,6,19.1,67.17,1009,19 +2013,1,12,16,30,70,70,0,6,19,77.36,1009,18.900000000000002 +2013,1,12,17,30,5,5,0,6.1000000000000005,18.900000000000002,88.48,1008,18.900000000000002 +2013,1,12,18,30,0,0,0,6.1000000000000005,18.900000000000002,100.93,1009,18.900000000000002 +2013,1,12,19,30,0,0,0,5.800000000000001,18.900000000000002,113.54,1009,18.900000000000002 +2013,1,12,20,30,0,0,0,5.6000000000000005,18.900000000000002,126.45,1009,18.900000000000002 +2013,1,12,21,30,0,0,0,5.6000000000000005,19,139.51,1009,19 +2013,1,12,22,30,0,0,0,5.7,19.1,152.54,1009,19.1 +2013,1,12,23,30,0,0,0,5.7,19.1,164.98,1009,19.1 +2013,1,13,0,30,0,0,0,5.5,19.1,172.20000000000002,1009,19.1 +2013,1,13,1,30,0,0,0,5.4,19.1,163.8,1009,19.1 +2013,1,13,2,30,0,0,0,5.300000000000001,18.900000000000002,151.24,1009,18.900000000000002 +2013,1,13,3,30,0,0,0,4.800000000000001,18.5,138.19,1009,18.5 +2013,1,13,4,30,0,0,0,4.1000000000000005,17.7,125.13000000000001,1010,17.7 +2013,1,13,5,30,0,0,0,3.7,16.5,112.24000000000001,1011,16.5 +2013,1,13,6,30,0,0,0,4,14.9,99.66,1013,14.9 +2013,1,13,7,30,6,6,0,5.300000000000001,13.200000000000001,87.33,1014,13.200000000000001 +2013,1,13,8,30,16,16,0,6.9,11.9,76.21000000000001,1015,11.9 +2013,1,13,9,30,100,100,0,8.1,11,66.13,1017,10.4 +2013,1,13,10,30,170,169,2,8.700000000000001,10.600000000000001,57.89,1017,9.3 +2013,1,13,11,30,189,187,4,8.8,10.700000000000001,52.39,1016,8.9 +2013,1,13,12,30,256,242,22,8.700000000000001,11.100000000000001,50.54,1016,8.9 +2013,1,13,13,30,105,105,0,8.700000000000001,11.600000000000001,52.75,1016,9 +2013,1,13,14,30,202,194,17,8.5,12.100000000000001,58.54,1016,9 +2013,1,13,15,30,143,140,8,8.4,12.4,66.98,1017,9 +2013,1,13,16,30,42,42,0,8.1,12.3,77.18,1017,8.9 +2013,1,13,17,30,8,8,0,8,12.200000000000001,88.31,1018,8.9 +2013,1,13,18,30,0,0,0,8.1,11.600000000000001,100.78,1018,8.8 +2013,1,13,19,30,0,0,0,8.1,11.3,113.39,1019,8.700000000000001 +2013,1,13,20,30,0,0,0,8.1,10.9,126.3,1019,8.6 +2013,1,13,21,30,0,0,0,8,10.5,139.37,1019,8.6 +2013,1,13,22,30,0,0,0,8,10.3,152.39000000000001,1019,8.5 +2013,1,13,23,30,0,0,0,8,10.200000000000001,164.81,1019,8.6 +2013,1,14,0,30,0,0,0,7.9,10.200000000000001,172.03,1019,8.700000000000001 +2013,1,14,1,30,0,0,0,7.800000000000001,10.200000000000001,163.78,1019,8.9 +2013,1,14,2,30,0,0,0,7.4,10.3,151.25,1018,9 +2013,1,14,3,30,0,0,0,6.9,10.3,138.21,1019,9.200000000000001 +2013,1,14,4,30,0,0,0,6.5,10.200000000000001,125.15,1019,9.200000000000001 +2013,1,14,5,30,0,0,0,6.4,10,112.24000000000001,1020,9 +2013,1,14,6,30,0,0,0,6.7,9.8,99.65,1021,8.8 +2013,1,14,7,30,5,5,0,6.800000000000001,9.700000000000001,87.3,1022,8.6 +2013,1,14,8,30,42,42,0,6.9,9.600000000000001,76.16,1022,8.3 +2013,1,14,9,30,35,35,0,7,9.600000000000001,66.06,1022,8.200000000000001 +2013,1,14,10,30,183,179,6,6.9,9.600000000000001,57.78,1022,8.200000000000001 +2013,1,14,11,30,186,184,3,6.800000000000001,9.8,52.24,1021,8.200000000000001 +2013,1,14,12,30,46,46,0,6.7,10.100000000000001,50.370000000000005,1020,8.200000000000001 +2013,1,14,13,30,156,156,0,6.6000000000000005,10.4,52.550000000000004,1019,8.4 +2013,1,14,14,30,118,118,0,6.6000000000000005,10.600000000000001,58.34,1019,8.5 +2013,1,14,15,30,181,160,52,6.6000000000000005,10.700000000000001,66.79,1019,8.6 +2013,1,14,16,30,53,53,0,6.800000000000001,10.5,77,1020,8.6 +2013,1,14,17,30,6,6,0,7,10.3,88.16,1020,8.5 +2013,1,14,18,30,0,0,0,7.4,9.700000000000001,100.62,1020,8.3 +2013,1,14,19,30,0,0,0,7.4,9.200000000000001,113.24000000000001,1020,8.1 +2013,1,14,20,30,0,0,0,7.300000000000001,8.8,126.16,1020,7.800000000000001 +2013,1,14,21,30,0,0,0,7,8.700000000000001,139.23,1020,7.6000000000000005 +2013,1,14,22,30,0,0,0,6.6000000000000005,8.700000000000001,152.24,1019,7.5 +2013,1,14,23,30,0,0,0,6.2,8.700000000000001,164.64000000000001,1019,7.4 +2013,1,15,0,30,0,0,0,5.9,8.700000000000001,171.85,1019,7.4 +2013,1,15,1,30,0,0,0,5.7,8.700000000000001,163.75,1018,7.4 +2013,1,15,2,30,0,0,0,5.6000000000000005,8.6,151.26,1018,7.4 +2013,1,15,3,30,0,0,0,5.6000000000000005,8.4,138.22,1018,7.4 +2013,1,15,4,30,0,0,0,5.6000000000000005,8.200000000000001,125.16,1018,7.300000000000001 +2013,1,15,5,30,0,0,0,5.800000000000001,8,112.24000000000001,1018,7.2 +2013,1,15,6,30,0,0,0,5.800000000000001,7.9,99.64,1019,7.1000000000000005 +2013,1,15,7,30,2,2,0,5.7,7.9,87.27,1019,7 +2013,1,15,8,30,19,19,0,5.6000000000000005,8,76.11,1020,7 +2013,1,15,9,30,58,58,0,5.6000000000000005,8.1,65.98,1020,7 +2013,1,15,10,30,20,20,0,5.6000000000000005,8.200000000000001,57.660000000000004,1019,7.1000000000000005 +2013,1,15,11,30,56,56,0,5.5,8.3,52.09,1018,7.1000000000000005 +2013,1,15,12,30,34,34,0,5.300000000000001,8.5,50.18,1017,7.2 +2013,1,15,13,30,23,23,0,5.4,8.6,52.35,1016,7.300000000000001 +2013,1,15,14,30,47,47,0,5.800000000000001,8.700000000000001,58.14,1016,7.4 +2013,1,15,15,30,71,71,0,6,8.5,66.6,1017,7.4 +2013,1,15,16,30,33,33,0,6.1000000000000005,8.3,76.82000000000001,1018,7.300000000000001 +2013,1,15,17,30,6,6,0,6.300000000000001,8.200000000000001,88,1018,7.1000000000000005 +2013,1,15,18,30,0,0,0,6.800000000000001,7.6000000000000005,100.46000000000001,1020,6.9 +2013,1,15,19,30,0,0,0,6.9,7.300000000000001,113.09,1020,6.6000000000000005 +2013,1,15,20,30,0,0,0,6.9,6.9,126.02,1020,6.300000000000001 +2013,1,15,21,30,0,0,0,7.1000000000000005,6.7,139.08,1021,6 +2013,1,15,22,30,0,0,0,7.2,6.4,152.09,1021,5.7 +2013,1,15,23,30,0,0,0,7.2,6.2,164.46,1021,5.4 +2013,1,16,0,30,0,0,0,7.1000000000000005,6,171.67000000000002,1021,5.1000000000000005 +2013,1,16,1,30,0,0,0,7.1000000000000005,5.800000000000001,163.72,1021,5 +2013,1,16,2,30,0,0,0,7.1000000000000005,5.7,151.26,1022,4.9 +2013,1,16,3,30,0,0,0,7.1000000000000005,5.7,138.23,1022,4.800000000000001 +2013,1,16,4,30,0,0,0,7.300000000000001,5.800000000000001,125.16,1022,4.7 +2013,1,16,5,30,0,0,0,7.4,5.9,112.24000000000001,1023,4.800000000000001 +2013,1,16,6,30,0,0,0,7.4,5.9,99.62,1024,4.7 +2013,1,16,7,30,5,5,0,7.4,6.300000000000001,87.23,1024,4.6000000000000005 +2013,1,16,8,30,41,41,0,7.5,6.9,76.05,1025,4.4 +2013,1,16,9,30,107,107,0,7.300000000000001,7.6000000000000005,65.89,1025,4 +2013,1,16,10,30,350,243,199,7,8.4,57.54,1025,3.8000000000000003 +2013,1,16,11,30,659,93,917,6.7,9.200000000000001,51.92,1024,3.5 +2013,1,16,12,30,696,90,943,6.7,10,49.99,1023,3.3000000000000003 +2013,1,16,13,30,664,84,946,6.800000000000001,10.5,52.14,1022,3 +2013,1,16,14,30,566,76,923,6.9,10.9,57.93,1022,2.7 +2013,1,16,15,30,409,66,856,7.1000000000000005,10.8,66.4,1023,2.4000000000000004 +2013,1,16,16,30,212,49,703,7.1000000000000005,10.3,76.64,1023,2.2 +2013,1,16,17,30,26,16,261,7,9.8,87.84,1024,2.6 +2013,1,16,18,30,0,0,0,6.9,9,100.3,1025,2.7 +2013,1,16,19,30,0,0,0,6.6000000000000005,8.6,112.94,1026,2.7 +2013,1,16,20,30,0,0,0,6.2,8.4,125.87,1026,2.6 +2013,1,16,21,30,0,0,0,5.800000000000001,8.200000000000001,138.94,1026,2.4000000000000004 +2013,1,16,22,30,0,0,0,5.4,8.1,151.95000000000002,1025,2.2 +2013,1,16,23,30,0,0,0,5.1000000000000005,8.1,164.29,1025,2 +2013,1,17,0,30,0,0,0,4.9,8,171.48,1025,1.9000000000000001 +2013,1,17,1,30,0,0,0,4.9,7.800000000000001,163.67000000000002,1026,1.8 +2013,1,17,2,30,0,0,0,5,7.7,151.25,1026,1.9000000000000001 +2013,1,17,3,30,0,0,0,5.2,7.7,138.23,1026,2 +2013,1,17,4,30,0,0,0,5.4,7.6000000000000005,125.16,1026,2.2 +2013,1,17,5,30,0,0,0,5.5,7.5,112.23,1027,2.2 +2013,1,17,6,30,0,0,0,5.4,7.5,99.60000000000001,1028,2.2 +2013,1,17,7,30,35,18,351,5.2,8.1,87.19,1029,2.3000000000000003 +2013,1,17,8,30,227,46,748,5,9.200000000000001,75.99,1030,2.3000000000000003 +2013,1,17,9,30,425,62,886,4.800000000000001,10.5,65.79,1030,2.2 +2013,1,17,10,30,580,67,952,4.9,11.8,57.410000000000004,1030,1.7000000000000002 +2013,1,17,11,30,677,70,980,5.1000000000000005,12.5,51.75,1029,1.5 +2013,1,17,12,30,709,76,981,5.1000000000000005,13,49.79,1028,2.1 +2013,1,17,13,30,674,74,972,5.1000000000000005,13.5,51.93,1028,2.9000000000000004 +2013,1,17,14,30,571,69,939,5,13.8,57.72,1027,3.8000000000000003 +2013,1,17,15,30,412,61,870,4.7,14,66.2,1028,4.800000000000001 +2013,1,17,16,30,215,46,720,4.5,13.5,76.46000000000001,1028,6.1000000000000005 +2013,1,17,17,30,28,16,296,4.4,13.100000000000001,87.68,1029,6.6000000000000005 +2013,1,17,18,30,0,0,0,4.5,12.700000000000001,100.14,1030,6.9 +2013,1,17,19,30,0,0,0,4.5,12.4,112.79,1030,7.1000000000000005 +2013,1,17,20,30,0,0,0,4.4,12.100000000000001,125.73,1031,7.2 +2013,1,17,21,30,0,0,0,4.3,11.700000000000001,138.8,1031,7.300000000000001 +2013,1,17,22,30,0,0,0,4.2,11.3,151.79,1031,7.4 +2013,1,17,23,30,0,0,0,4.1000000000000005,11,164.11,1031,7.5 +2013,1,18,0,30,0,0,0,4.1000000000000005,10.8,171.28,1031,7.6000000000000005 +2013,1,18,1,30,0,0,0,4.1000000000000005,10.5,163.62,1031,7.7 +2013,1,18,2,30,0,0,0,4.3,10.4,151.24,1031,7.7 +2013,1,18,3,30,0,0,0,4.5,10.4,138.23,1031,7.5 +2013,1,18,4,30,0,0,0,4.7,10.600000000000001,125.15,1031,7.5 +2013,1,18,5,30,0,0,0,4.9,10.700000000000001,112.22,1032,7.5 +2013,1,18,6,30,0,0,0,5,10.8,99.57000000000001,1032,7.4 +2013,1,18,7,30,34,18,315,5.1000000000000005,11.200000000000001,87.15,1033,7.300000000000001 +2013,1,18,8,30,225,48,726,5.1000000000000005,11.9,75.92,1033,7.300000000000001 +2013,1,18,9,30,422,66,866,5,12.5,65.69,1033,7.1000000000000005 +2013,1,18,10,30,581,75,936,4.6000000000000005,12.8,57.27,1033,6.7 +2013,1,18,11,30,682,79,970,4.1000000000000005,12.9,51.58,1032,6.6000000000000005 +2013,1,18,12,30,716,81,979,3.7,12.9,49.58,1031,6.4 +2013,1,18,13,30,680,79,970,3.4000000000000004,12.8,51.71,1030,6.1000000000000005 +2013,1,18,14,30,577,74,937,3.2,12.700000000000001,57.51,1029,5.800000000000001 +2013,1,18,15,30,417,65,864,3.1,12.5,66,1029,5.6000000000000005 +2013,1,18,16,30,219,50,713,3,11.8,76.27,1029,5.7 +2013,1,18,17,30,30,17,285,2.9000000000000004,11.3,87.52,1029,5.7 +2013,1,18,18,30,0,0,0,2.9000000000000004,10.8,99.98,1030,5.4 +2013,1,18,19,30,0,0,0,2.9000000000000004,10.700000000000001,112.64,1030,5.2 +2013,1,18,20,30,0,0,0,2.9000000000000004,10.600000000000001,125.58,1029,5 +2013,1,18,21,30,0,0,0,2.8000000000000003,10.600000000000001,138.65,1029,5 +2013,1,18,22,30,0,0,0,2.7,10.8,151.64000000000001,1029,5.2 +2013,1,18,23,30,0,0,0,2.7,11,163.93,1028,5.5 +2013,1,19,0,30,0,0,0,2.5,11.3,171.07,1028,5.9 +2013,1,19,1,30,0,0,0,2.2,11.600000000000001,163.56,1028,6.4 +2013,1,19,2,30,0,0,0,1.8,11.700000000000001,151.22,1027,6.7 +2013,1,19,3,30,0,0,0,1.5,11.8,138.22,1027,6.9 +2013,1,19,4,30,0,0,0,1.6,11.700000000000001,125.14,1026,7.2 +2013,1,19,5,30,0,0,0,2,11.600000000000001,112.19,1026,7.6000000000000005 +2013,1,19,6,30,0,0,0,2.3000000000000003,11.700000000000001,99.54,1027,8.200000000000001 +2013,1,19,7,30,23,23,0,2.5,12.4,87.10000000000001,1027,8.700000000000001 +2013,1,19,8,30,128,95,135,2.7,13.4,75.84,1027,9.5 +2013,1,19,9,30,378,77,726,2.8000000000000003,14.3,65.59,1027,9.9 +2013,1,19,10,30,519,105,762,2.8000000000000003,14.9,57.13,1027,10.3 +2013,1,19,11,30,598,145,725,2.6,15.200000000000001,51.4,1026,10.600000000000001 +2013,1,19,12,30,705,78,963,2.3000000000000003,15.4,49.370000000000005,1025,10.8 +2013,1,19,13,30,667,78,947,2,15.600000000000001,51.49,1024,11 +2013,1,19,14,30,566,74,910,1.6,15.600000000000001,57.29,1023,11.100000000000001 +2013,1,19,15,30,407,66,832,1.4000000000000001,15.3,65.8,1023,11.200000000000001 +2013,1,19,16,30,213,52,671,1.5,14.700000000000001,76.09,1023,11.600000000000001 +2013,1,19,17,30,30,18,244,1.6,14.200000000000001,87.36,1023,11.700000000000001 +2013,1,19,18,30,0,0,0,2.2,13.700000000000001,99.82000000000001,1024,11.600000000000001 +2013,1,19,19,30,0,0,0,2.5,13.600000000000001,112.49000000000001,1025,11.8 +2013,1,19,20,30,0,0,0,2.5,13.4,125.44,1025,12.100000000000001 +2013,1,19,21,30,0,0,0,2.4000000000000004,13.3,138.51,1025,12.200000000000001 +2013,1,19,22,30,0,0,0,2.1,13.100000000000001,151.49,1024,12.3 +2013,1,19,23,30,0,0,0,1.8,13.100000000000001,163.74,1024,12.3 +2013,1,20,0,30,0,0,0,1.4000000000000001,13.100000000000001,170.86,1025,12.3 +2013,1,20,1,30,0,0,0,1.2000000000000002,13.200000000000001,163.49,1024,12.200000000000001 +2013,1,20,2,30,0,0,0,1.2000000000000002,13.200000000000001,151.20000000000002,1024,12.200000000000001 +2013,1,20,3,30,0,0,0,1.4000000000000001,13.100000000000001,138.20000000000002,1024,12.200000000000001 +2013,1,20,4,30,0,0,0,1.7000000000000002,12.9,125.12,1024,12.200000000000001 +2013,1,20,5,30,0,0,0,2,12.700000000000001,112.17,1024,12.200000000000001 +2013,1,20,6,30,0,0,0,2.1,12.700000000000001,99.5,1024,12.200000000000001 +2013,1,20,7,30,33,20,261,2.2,13.200000000000001,87.05,1025,12.3 +2013,1,20,8,30,218,53,672,2.1,14.100000000000001,75.76,1025,12.5 +2013,1,20,9,30,204,174,71,1.8,14.8,65.47,1025,12.8 +2013,1,20,10,30,448,200,456,1.5,15.4,56.980000000000004,1025,12.8 +2013,1,20,11,30,668,82,935,1.4000000000000001,15.8,51.21,1024,12.700000000000001 +2013,1,20,12,30,517,285,354,1.3,15.9,49.15,1023,12.600000000000001 +2013,1,20,13,30,355,292,102,1.4000000000000001,16,51.26,1022,12.5 +2013,1,20,14,30,474,166,566,1.5,15.8,57.07,1021,12.5 +2013,1,20,15,30,361,99,636,1.8,15.5,65.59,1021,12.5 +2013,1,20,16,30,112,95,71,2.2,14.8,75.9,1021,12.9 +2013,1,20,17,30,21,21,0,2.3000000000000003,14.3,87.2,1021,12.9 +2013,1,20,18,30,0,0,0,2.6,13.700000000000001,99.66,1022,12.8 +2013,1,20,19,30,0,0,0,2.8000000000000003,13.5,112.33,1022,12.9 +2013,1,20,20,30,0,0,0,2.9000000000000004,13.4,125.29,1022,12.9 +2013,1,20,21,30,0,0,0,2.7,13.4,138.36,1022,13 +2013,1,20,22,30,0,0,0,2.3000000000000003,13.4,151.34,1022,12.9 +2013,1,20,23,30,0,0,0,1.9000000000000001,13.4,163.55,1022,13 +2013,1,21,0,30,0,0,0,1.5,13.5,170.64000000000001,1022,13 +2013,1,21,1,30,0,0,0,1,13.700000000000001,163.41,1022,13 +2013,1,21,2,30,0,0,0,0.7000000000000001,13.9,151.17000000000002,1021,12.9 +2013,1,21,3,30,0,0,0,0.9,13.8,138.18,1021,12.8 +2013,1,21,4,30,0,0,0,1.3,13.5,125.10000000000001,1021,12.700000000000001 +2013,1,21,5,30,0,0,0,1.8,13.200000000000001,112.14,1021,12.600000000000001 +2013,1,21,6,30,0,0,0,2.3000000000000003,12.9,99.45,1022,12.5 +2013,1,21,7,30,18,18,0,2.7,13.200000000000001,86.99,1023,12.5 +2013,1,21,8,30,112,96,65,2.9000000000000004,13.8,75.67,1024,12.600000000000001 +2013,1,21,9,30,296,163,320,2.6,14.600000000000001,65.35,1024,12.700000000000001 +2013,1,21,10,30,472,176,541,2.3000000000000003,15.3,56.82,1024,12.4 +2013,1,21,11,30,516,256,413,2.1,15.8,51.01,1023,12.100000000000001 +2013,1,21,12,30,586,215,565,1.8,16,48.93,1023,11.8 +2013,1,21,13,30,530,244,456,1.7000000000000002,16.2,51.03,1022,11.5 +2013,1,21,14,30,401,235,303,1.7000000000000002,16.2,56.84,1022,11.3 +2013,1,21,15,30,251,178,175,1.8,16,65.39,1022,11.200000000000001 +2013,1,21,16,30,82,82,0,1.9000000000000001,15.3,75.71000000000001,1022,11.600000000000001 +2013,1,21,17,30,21,21,0,2,14.9,87.03,1022,11.5 +2013,1,21,18,30,0,0,0,2.1,14.200000000000001,99.5,1023,11.200000000000001 +2013,1,21,19,30,0,0,0,2.2,14,112.18,1023,11 +2013,1,21,20,30,0,0,0,2.2,13.9,125.14,1023,10.9 +2013,1,21,21,30,0,0,0,2.2,13.9,138.22,1023,10.8 +2013,1,21,22,30,0,0,0,2.2,13.8,151.18,1023,10.9 +2013,1,21,23,30,0,0,0,2,13.8,163.37,1023,11.100000000000001 +2013,1,22,0,30,0,0,0,1.9000000000000001,13.9,170.41,1023,11.3 +2013,1,22,1,30,0,0,0,2,13.700000000000001,163.32,1023,11.5 +2013,1,22,2,30,0,0,0,2.3000000000000003,13.5,151.13,1023,11.8 +2013,1,22,3,30,0,0,0,2.8000000000000003,13.200000000000001,138.16,1023,11.9 +2013,1,22,4,30,0,0,0,3.2,12.9,125.07000000000001,1024,12 +2013,1,22,5,30,0,0,0,3.4000000000000004,12.600000000000001,112.10000000000001,1024,12 +2013,1,22,6,30,0,0,0,3.5,12.5,99.4,1025,11.9 +2013,1,22,7,30,32,22,183,3.5,12.9,86.92,1026,11.700000000000001 +2013,1,22,8,30,213,66,591,3.5,13.700000000000001,75.58,1026,11.700000000000001 +2013,1,22,9,30,403,90,749,3.3000000000000003,14.3,65.23,1027,11.700000000000001 +2013,1,22,10,30,559,102,833,3,14.8,56.660000000000004,1027,11.8 +2013,1,22,11,30,660,107,874,2.7,15.3,50.81,1026,11.9 +2013,1,22,12,30,700,97,913,2.5,15.5,48.7,1025,12.100000000000001 +2013,1,22,13,30,668,95,907,2.5,15.700000000000001,50.79,1025,12.200000000000001 +2013,1,22,14,30,568,88,872,2.7,15.700000000000001,56.620000000000005,1024,12.200000000000001 +2013,1,22,15,30,415,77,804,2.9000000000000004,15.5,65.17,1024,12.3 +2013,1,22,16,30,221,58,649,3.1,14.9,75.52,1024,12.5 +2013,1,22,17,30,35,21,248,3.2,14.4,86.86,1024,12.600000000000001 +2013,1,22,18,30,0,0,0,3.5,14,99.33,1025,12.600000000000001 +2013,1,22,19,30,0,0,0,3.5,13.9,112.03,1025,12.8 +2013,1,22,20,30,0,0,0,3.5,14,125,1026,12.9 +2013,1,22,21,30,0,0,0,3.4000000000000004,14.100000000000001,138.07,1026,13 +2013,1,22,22,30,0,0,0,3.3000000000000003,14.100000000000001,151.03,1026,13.100000000000001 +2013,1,22,23,30,0,0,0,3.1,14.200000000000001,163.17000000000002,1026,13.200000000000001 +2013,1,23,0,30,0,0,0,3,14.200000000000001,170.18,1026,13.3 +2013,1,23,1,30,0,0,0,2.7,14.200000000000001,163.22,1026,13.3 +2013,1,23,2,30,0,0,0,2.5,14.3,151.08,1026,13.4 +2013,1,23,3,30,0,0,0,2.4000000000000004,14.3,138.12,1025,13.5 +2013,1,23,4,30,0,0,0,2.5,14.3,125.04,1026,13.600000000000001 +2013,1,23,5,30,0,0,0,2.5,14.3,112.06,1026,13.700000000000001 +2013,1,23,6,30,0,0,0,2.6,14.5,99.34,1026,13.8 +2013,1,23,7,30,34,22,222,2.7,15.3,86.85000000000001,1027,14 +2013,1,23,8,30,217,61,624,2.7,16.3,75.48,1028,14.4 +2013,1,23,9,30,410,79,785,2.6,17.1,65.1,1028,14.700000000000001 +2013,1,23,10,30,566,90,862,2.5,17.6,56.49,1028,14.8 +2013,1,23,11,30,665,96,897,2.4000000000000004,17.900000000000002,50.6,1027,14.9 +2013,1,23,12,30,700,97,910,2.4000000000000004,18,48.46,1026,15 +2013,1,23,13,30,664,96,893,2.4000000000000004,18.1,50.550000000000004,1025,15.100000000000001 +2013,1,23,14,30,562,93,848,2.5,18,56.38,1025,15.100000000000001 +2013,1,23,15,30,403,88,743,2.5,17.8,64.96000000000001,1025,15.200000000000001 +2013,1,23,16,30,212,67,569,2.4000000000000004,17.3,75.32000000000001,1025,15.5 +2013,1,23,17,30,33,23,173,2.4000000000000004,16.900000000000002,86.69,1025,15.600000000000001 +2013,1,23,18,30,0,0,0,2.8000000000000003,16.5,99.17,1026,15.600000000000001 +2013,1,23,19,30,0,0,0,2.9000000000000004,16.400000000000002,111.88,1026,15.700000000000001 +2013,1,23,20,30,0,0,0,3,16.3,124.85000000000001,1026,15.8 +2013,1,23,21,30,0,0,0,3.2,16.3,137.93,1025,15.9 +2013,1,23,22,30,0,0,0,3.4000000000000004,16.3,150.87,1025,15.9 +2013,1,23,23,30,0,0,0,3.5,16.3,162.98,1025,15.9 +2013,1,24,0,30,0,0,0,3.5,16.2,169.94,1025,16 +2013,1,24,1,30,0,0,0,3.4000000000000004,16.1,163.11,1025,16 +2013,1,24,2,30,0,0,0,3.2,16.1,151.03,1025,16 +2013,1,24,3,30,0,0,0,3.1,16,138.08,1025,16 +2013,1,24,4,30,0,0,0,2.9000000000000004,15.9,125,1025,15.9 +2013,1,24,5,30,0,0,0,2.7,15.8,112.01,1025,15.8 +2013,1,24,6,30,0,0,0,2.4000000000000004,16,99.28,1025,16 +2013,1,24,7,30,34,22,207,2.3000000000000003,16.6,86.78,1026,16 +2013,1,24,8,30,216,60,615,2.3000000000000003,17.400000000000002,75.37,1026,16.400000000000002 +2013,1,24,9,30,407,78,777,2.4000000000000004,17.900000000000002,64.96000000000001,1027,16.6 +2013,1,24,10,30,407,239,304,2.5,18.400000000000002,56.31,1026,16.6 +2013,1,24,11,30,491,281,329,2.6,18.7,50.39,1026,16.6 +2013,1,24,12,30,696,99,896,2.7,18.8,48.22,1024,16.6 +2013,1,24,13,30,538,250,450,3.1,18.8,50.300000000000004,1023,16.5 +2013,1,24,14,30,443,220,401,3.4000000000000004,18.6,56.15,1023,16.5 +2013,1,24,15,30,415,76,793,3.7,18.400000000000002,64.75,1022,16.400000000000002 +2013,1,24,16,30,156,95,238,3.7,17.900000000000002,75.13,1022,16.5 +2013,1,24,17,30,39,23,262,3.6,17.6,86.53,1022,16.5 +2013,1,24,18,30,0,0,0,3.5,17.1,99.01,1023,16.400000000000002 +2013,1,24,19,30,0,0,0,3.5,17,111.73,1023,16.400000000000002 +2013,1,24,20,30,0,0,0,3.7,17,124.71000000000001,1023,16.400000000000002 +2013,1,24,21,30,0,0,0,4,16.900000000000002,137.78,1023,16.400000000000002 +2013,1,24,22,30,0,0,0,4.3,16.8,150.72,1022,16.3 +2013,1,24,23,30,0,0,0,4.5,16.7,162.78,1022,16.3 +2013,1,25,0,30,0,0,0,4.7,16.6,169.69,1022,16.3 +2013,1,25,1,30,0,0,0,4.800000000000001,16.6,163,1022,16.2 +2013,1,25,2,30,0,0,0,4.7,16.6,150.97,1021,16.2 +2013,1,25,3,30,0,0,0,4.3,16.5,138.04,1021,16.2 +2013,1,25,4,30,0,0,0,3.9000000000000004,16.400000000000002,124.95,1021,16.2 +2013,1,25,5,30,0,0,0,3.5,16.400000000000002,111.96000000000001,1022,16.2 +2013,1,25,6,30,0,0,0,3.3000000000000003,16.6,99.22,1022,16.2 +2013,1,25,7,30,36,24,205,3.3000000000000003,17.1,86.69,1023,16.3 +2013,1,25,8,30,220,63,618,3.4000000000000004,17.8,75.26,1023,16.6 +2013,1,25,9,30,414,81,783,3.4000000000000004,18.400000000000002,64.81,1023,16.7 +2013,1,25,10,30,571,91,862,3.4000000000000004,18.8,56.13,1023,16.6 +2013,1,25,11,30,671,96,898,3.3000000000000003,19.1,50.17,1022,16.5 +2013,1,25,12,30,706,96,911,3.2,19.200000000000003,47.97,1021,16.5 +2013,1,25,13,30,539,254,445,3.2,19.200000000000003,50.050000000000004,1021,16.5 +2013,1,25,14,30,571,90,858,3.2,19.1,55.910000000000004,1020,16.400000000000002 +2013,1,25,15,30,229,185,101,3.1,18.900000000000002,64.53,1020,16.5 +2013,1,25,16,30,224,61,627,3,18.3,74.93,1020,16.6 +2013,1,25,17,30,39,25,229,2.9000000000000004,17.900000000000002,86.36,1020,16.6 +2013,1,25,18,30,0,0,0,2.9000000000000004,17.400000000000002,98.84,1020,16.5 +2013,1,25,19,30,0,0,0,2.8000000000000003,17.3,111.57000000000001,1021,16.5 +2013,1,25,20,30,0,0,0,2.7,17.1,124.56,1021,16.5 +2013,1,25,21,30,0,0,0,2.6,17,137.64000000000001,1021,16.5 +2013,1,25,22,30,0,0,0,2.5,16.900000000000002,150.56,1021,16.6 +2013,1,25,23,30,0,0,0,2.4000000000000004,16.8,162.58,1021,16.6 +2013,1,26,0,30,0,0,0,2.3000000000000003,16.8,169.44,1021,16.6 +2013,1,26,1,30,0,0,0,2.2,16.7,162.88,1021,16.6 +2013,1,26,2,30,0,0,0,2,16.7,150.9,1021,16.6 +2013,1,26,3,30,0,0,0,1.9000000000000001,16.7,137.99,1021,16.6 +2013,1,26,4,30,0,0,0,1.9000000000000001,16.6,124.9,1021,16.6 +2013,1,26,5,30,0,0,0,2.1,16.6,111.9,1021,16.6 +2013,1,26,6,30,0,0,0,2.2,16.7,99.14,1022,16.6 +2013,1,26,7,30,22,22,3,2.2,17.2,86.61,1022,16.5 +2013,1,26,8,30,194,71,480,2.2,17.900000000000002,75.14,1023,16.8 +2013,1,26,9,30,403,79,757,2.1,18.5,64.67,1023,16.900000000000002 +2013,1,26,10,30,559,89,839,2.1,18.8,55.94,1023,16.900000000000002 +2013,1,26,11,30,659,94,878,2.1,19,49.94,1022,16.900000000000002 +2013,1,26,12,30,696,94,895,2.2,19.1,47.72,1021,16.8 +2013,1,26,13,30,664,90,888,2.4000000000000004,19.1,49.79,1021,16.8 +2013,1,26,14,30,566,85,853,2.6,19,55.67,1020,16.7 +2013,1,26,15,30,415,76,782,2.7,18.7,64.31,1020,16.6 +2013,1,26,16,30,225,58,635,2.7,18.2,74.74,1020,16.6 +2013,1,26,17,30,41,24,259,2.7,17.900000000000002,86.18,1021,16.6 +2013,1,26,18,30,0,0,0,2.9000000000000004,17.400000000000002,98.68,1021,16.5 +2013,1,26,19,30,0,0,0,3.1,17.3,111.42,1021,16.400000000000002 +2013,1,26,20,30,0,0,0,3.4000000000000004,17.2,124.42,1021,16.400000000000002 +2013,1,26,21,30,0,0,0,3.6,17.2,137.49,1021,16.400000000000002 +2013,1,26,22,30,0,0,0,3.5,17.1,150.4,1021,16.400000000000002 +2013,1,26,23,30,0,0,0,3.4000000000000004,17,162.38,1021,16.5 +2013,1,27,0,30,0,0,0,3.2,17,169.19,1021,16.6 +2013,1,27,1,30,0,0,0,3.3000000000000003,17,162.74,1021,16.7 +2013,1,27,2,30,0,0,0,3.4000000000000004,17.1,150.83,1021,16.8 +2013,1,27,3,30,0,0,0,3.6,17.1,137.93,1020,16.8 +2013,1,27,4,30,0,0,0,3.7,17.2,124.84,1020,16.900000000000002 +2013,1,27,5,30,0,0,0,3.8000000000000003,17.2,111.83,1020,16.900000000000002 +2013,1,27,6,30,0,0,0,3.9000000000000004,17.400000000000002,99.06,1021,17 +2013,1,27,7,30,21,21,0,4.1000000000000005,17.8,86.51,1021,17 +2013,1,27,8,30,86,86,0,4.3,18.3,75.02,1021,17.2 +2013,1,27,9,30,207,180,64,4.3,18.7,64.51,1022,17.400000000000002 +2013,1,27,10,30,260,235,44,4.3,19.1,55.75,1021,17.6 +2013,1,27,11,30,540,259,435,4.3,19.400000000000002,49.71,1021,17.7 +2013,1,27,12,30,506,314,284,4.4,19.400000000000002,47.46,1020,17.7 +2013,1,27,13,30,586,202,591,4.6000000000000005,19.3,49.53,1019,17.8 +2013,1,27,14,30,498,174,571,4.800000000000001,19.1,55.42,1019,17.8 +2013,1,27,15,30,222,186,81,4.9,18.900000000000002,64.09,1019,17.900000000000002 +2013,1,27,16,30,121,104,61,4.9,18.8,74.54,1019,17.900000000000002 +2013,1,27,17,30,13,13,0,4.9,18.7,86.01,1019,17.900000000000002 +2013,1,27,18,30,0,0,0,5.1000000000000005,18.7,98.52,1019,18 +2013,1,27,19,30,0,0,0,5.2,18.7,111.27,1019,18 +2013,1,27,20,30,0,0,0,5.2,18.7,124.27,1019,18.1 +2013,1,27,21,30,0,0,0,5.2,18.7,137.35,1019,18.1 +2013,1,27,22,30,0,0,0,5.300000000000001,18.6,150.24,1019,18.1 +2013,1,27,23,30,0,0,0,5.4,18.6,162.17000000000002,1019,18.1 +2013,1,28,0,30,0,0,0,5.2,18.6,168.92000000000002,1019,18 +2013,1,28,1,30,0,0,0,4.800000000000001,18.6,162.6,1019,18 +2013,1,28,2,30,0,0,0,4.3,18.5,150.75,1019,18 +2013,1,28,3,30,0,0,0,3.9000000000000004,18.5,137.86,1019,18.1 +2013,1,28,4,30,0,0,0,3.7,18.400000000000002,124.78,1019,18.1 +2013,1,28,5,30,0,0,0,3.5,18.400000000000002,111.76,1020,18.1 +2013,1,28,6,30,0,0,0,3.5,18.5,98.98,1020,18.1 +2013,1,28,7,30,9,9,0,3.7,18.8,86.42,1020,18.1 +2013,1,28,8,30,28,28,0,3.8000000000000003,19.200000000000003,74.89,1020,18.3 +2013,1,28,9,30,78,78,0,3.8000000000000003,19.6,64.35,1021,18.400000000000002 +2013,1,28,10,30,208,201,13,3.9000000000000004,19.8,55.550000000000004,1020,18.5 +2013,1,28,11,30,211,206,7,3.9000000000000004,19.900000000000002,49.47,1020,18.5 +2013,1,28,12,30,267,254,20,4,19.900000000000002,47.2,1019,18.5 +2013,1,28,13,30,246,236,16,4.1000000000000005,19.8,49.26,1018,18.5 +2013,1,28,14,30,415,251,287,4.2,19.700000000000003,55.17,1018,18.6 +2013,1,28,15,30,315,175,319,4.3,19.5,63.86,1017,18.6 +2013,1,28,16,30,225,64,597,4.4,19.200000000000003,74.34,1017,18.7 +2013,1,28,17,30,43,27,218,4.6000000000000005,19,85.84,1017,18.7 +2013,1,28,18,30,0,0,0,5.4,18.900000000000002,98.35000000000001,1017,18.8 +2013,1,28,19,30,0,0,0,5.7,19,111.12,1017,18.8 +2013,1,28,20,30,0,0,0,5.9,19.1,124.12,1017,18.900000000000002 +2013,1,28,21,30,0,0,0,6,19.1,137.20000000000002,1017,19 +2013,1,28,22,30,0,0,0,6,19.1,150.08,1016,19.1 +2013,1,28,23,30,0,0,0,6,19.1,161.96,1016,19.1 +2013,1,29,0,30,0,0,0,5.9,19.1,168.65,1015,19.1 +2013,1,29,1,30,0,0,0,5.7,19.1,162.45000000000002,1015,19.1 +2013,1,29,2,30,0,0,0,5.4,19.1,150.66,1014,19.1 +2013,1,29,3,30,0,0,0,5.4,19.1,137.79,1013,19.1 +2013,1,29,4,30,0,0,0,5.6000000000000005,19.200000000000003,124.71000000000001,1013,19.200000000000003 +2013,1,29,5,30,0,0,0,6,19.3,111.69,1013,19.3 +2013,1,29,6,30,0,0,0,6.300000000000001,19.3,98.89,1013,19.3 +2013,1,29,7,30,20,20,0,6.5,19.5,86.31,1013,19.5 +2013,1,29,8,30,125,104,80,6.7,19.700000000000003,74.76,1012,19.5 +2013,1,29,9,30,405,87,730,7.1000000000000005,20,64.18,1012,19.700000000000003 +2013,1,29,10,30,418,249,297,7.5,20.3,55.34,1011,19.8 +2013,1,29,11,30,521,282,366,7.7,20.400000000000002,49.230000000000004,1010,19.900000000000002 +2013,1,29,12,30,518,317,295,8,20.5,46.93,1008,19.900000000000002 +2013,1,29,13,30,241,232,15,8.3,20.5,48.99,1007,20 +2013,1,29,14,30,327,264,108,8.4,20.400000000000002,54.92,1006,19.900000000000002 +2013,1,29,15,30,281,192,201,8.5,20.200000000000003,63.64,1005,19.900000000000002 +2013,1,29,16,30,90,90,0,8.6,20.1,74.14,1005,19.8 +2013,1,29,17,30,16,16,0,8.6,20,85.67,1005,19.8 +2013,1,29,18,30,0,0,0,8.8,19.900000000000002,98.19,1005,19.8 +2013,1,29,19,30,0,0,0,8.9,20,110.97,1005,19.8 +2013,1,29,20,30,0,0,0,8.5,19.900000000000002,123.98,1005,19.900000000000002 +2013,1,29,21,30,0,0,0,7.5,19.8,137.05,1005,19.8 +2013,1,29,22,30,0,0,0,6.800000000000001,19.6,149.91,1006,19.6 +2013,1,29,23,30,0,0,0,6.6000000000000005,19.400000000000002,161.75,1006,19.400000000000002 +2013,1,30,0,30,0,0,0,6.800000000000001,18.400000000000002,168.38,1007,18.400000000000002 +2013,1,30,1,30,0,0,0,7.2,16.7,162.29,1008,15.3 +2013,1,30,2,30,0,0,0,7.4,15.200000000000001,150.56,1009,11.700000000000001 +2013,1,30,3,30,0,0,0,6.6000000000000005,14.600000000000001,137.72,1009,9.4 +2013,1,30,4,30,0,0,0,6,14.3,124.64,1010,8.9 +2013,1,30,5,30,0,0,0,6.2,14.100000000000001,111.60000000000001,1011,8.4 +2013,1,30,6,30,0,0,0,7.2,14.200000000000001,98.8,1013,7.7 +2013,1,30,7,30,13,13,0,8.4,14.600000000000001,86.2,1014,6.800000000000001 +2013,1,30,8,30,130,105,94,9.5,15.100000000000001,74.62,1015,6.2 +2013,1,30,9,30,336,159,405,10.4,15.200000000000001,64.01,1016,4.800000000000001 +2013,1,30,10,30,402,257,254,11.100000000000001,14.8,55.13,1017,3.6 +2013,1,30,11,30,722,79,980,11.600000000000001,14.4,48.980000000000004,1017,4.2 +2013,1,30,12,30,764,82,993,11.8,14.200000000000001,46.65,1017,4.5 +2013,1,30,13,30,731,76,993,11.600000000000001,14.100000000000001,48.72,1017,4.4 +2013,1,30,14,30,633,69,976,11,14,54.67,1017,4.2 +2013,1,30,15,30,471,63,912,10.100000000000001,13.9,63.410000000000004,1018,4.2 +2013,1,30,16,30,268,49,789,9.200000000000001,13.5,73.94,1020,4.1000000000000005 +2013,1,30,17,30,60,24,453,8.8,13.100000000000001,85.49,1020,4.3 +2013,1,30,18,30,0,0,0,7.7,12.3,98.03,1022,4.800000000000001 +2013,1,30,19,30,0,0,0,7.1000000000000005,11.9,110.81,1022,5 +2013,1,30,20,30,0,0,0,6.5,11.700000000000001,123.83,1023,5 +2013,1,30,21,30,0,0,0,5.7,11.5,136.9,1023,4.800000000000001 +2013,1,30,22,30,0,0,0,4.9,11.3,149.75,1024,4.3 +2013,1,30,23,30,0,0,0,4.2,11.3,161.54,1024,3.6 +2013,1,31,0,30,0,0,0,3.9000000000000004,11.4,168.1,1024,2.8000000000000003 +2013,1,31,1,30,0,0,0,3.7,11.5,162.12,1025,2.2 +2013,1,31,2,30,0,0,0,3.6,11.5,150.46,1024,1.7000000000000002 +2013,1,31,3,30,0,0,0,3.2,11.3,137.63,1024,1.3 +2013,1,31,4,30,0,0,0,2.5,11.200000000000001,124.56,1024,0.5 +2013,1,31,5,30,0,0,0,1.6,11.100000000000001,111.52,1025,-0.7000000000000001 +2013,1,31,6,30,0,0,0,1,11.100000000000001,98.7,1026,-1.8 +2013,1,31,7,30,51,21,446,1,11.600000000000001,86.08,1026,-1.9000000000000001 +2013,1,31,8,30,257,44,798,1.2000000000000002,12.600000000000001,74.48,1027,-1.5 +2013,1,31,9,30,463,60,913,1.4000000000000001,13.600000000000001,63.83,1027,-1.3 +2013,1,31,10,30,629,67,977,1.8,14.5,54.92,1027,-1.2000000000000002 +2013,1,31,11,30,736,71,1008,2.2,15,48.72,1026,-0.4 +2013,1,31,12,30,769,74,1008,2.7,15.3,46.37,1025,0.5 +2013,1,31,13,30,513,296,327,3.1,15.600000000000001,48.44,1025,1.5 +2013,1,31,14,30,490,215,474,3.3000000000000003,15.700000000000001,54.410000000000004,1025,2.3000000000000003 +2013,1,31,15,30,412,90,712,3.3000000000000003,15.5,63.18,1025,2.8000000000000003 +2013,1,31,16,30,221,72,535,3.3000000000000003,14.8,73.74,1025,3.9000000000000004 +2013,1,31,17,30,36,29,83,3.4000000000000004,14.200000000000001,85.31,1025,4.9 +2013,1,31,18,30,0,0,0,4,13.8,97.87,1025,5.1000000000000005 +2013,1,31,19,30,0,0,0,4.1000000000000005,13.700000000000001,110.66,1026,5.300000000000001 +2013,1,31,20,30,0,0,0,4,13.600000000000001,123.69,1026,5.5 +2013,1,31,21,30,0,0,0,3.6,13.5,136.76,1027,5.7 +2013,1,31,22,30,0,0,0,3.2,13.5,149.58,1027,5.9 +2013,1,31,23,30,0,0,0,2.9000000000000004,13.5,161.32,1027,6 +2013,2,1,0,30,0,0,0,2.5,13.5,167.82,1027,6.1000000000000005 +2013,2,1,1,30,0,0,0,2.2,13.5,161.95000000000002,1027,6.2 +2013,2,1,2,30,0,0,0,2,13.600000000000001,150.35,1027,6.4 +2013,2,1,3,30,0,0,0,1.8,13.9,137.54,1026,6.800000000000001 +2013,2,1,4,30,0,0,0,1.6,14.200000000000001,124.47,1026,7.2 +2013,2,1,5,30,0,0,0,1.2000000000000002,14.4,111.43,1027,7.6000000000000005 +2013,2,1,6,30,0,0,0,0.9,14.600000000000001,98.59,1027,8.1 +2013,2,1,7,30,34,25,118,1,15,85.96000000000001,1028,8.5 +2013,2,1,8,30,198,81,432,1.3,15.600000000000001,74.33,1028,9.4 +2013,2,1,9,30,363,141,500,1.7000000000000002,16.3,63.65,1028,10 +2013,2,1,10,30,496,195,520,2.2,16.900000000000002,54.69,1028,10 +2013,2,1,11,30,720,79,966,2.7,17.2,48.46,1027,10 +2013,2,1,12,30,758,80,976,3.2,17.3,46.09,1027,10 +2013,2,1,13,30,725,79,968,3.7,17.3,48.160000000000004,1026,9.9 +2013,2,1,14,30,624,75,937,4.1000000000000005,17.1,54.15,1026,9.8 +2013,2,1,15,30,464,67,874,4.2,16.8,62.96,1026,9.600000000000001 +2013,2,1,16,30,264,54,741,3.9000000000000004,16.2,73.54,1026,9.8 +2013,2,1,17,30,60,26,399,3.7,15.8,85.14,1026,10.100000000000001 +2013,2,1,18,30,0,0,0,4.2,15.3,97.7,1026,10 +2013,2,1,19,30,0,0,0,4.5,15.3,110.51,1025,10 +2013,2,1,20,30,0,0,0,4.7,15.3,123.54,1025,10.200000000000001 +2013,2,1,21,30,0,0,0,4.7,15.200000000000001,136.61,1025,10.5 +2013,2,1,22,30,0,0,0,4.4,15.200000000000001,149.42000000000002,1024,10.9 +2013,2,1,23,30,0,0,0,3.9000000000000004,15.200000000000001,161.1,1024,11.5 +2013,2,2,0,30,0,0,0,3.3000000000000003,15.200000000000001,167.53,1024,11.9 +2013,2,2,1,30,0,0,0,2.6,15.3,161.76,1024,12.3 +2013,2,2,2,30,0,0,0,2,15.4,150.23,1024,12.5 +2013,2,2,3,30,0,0,0,1.6,15.5,137.45000000000002,1024,12.600000000000001 +2013,2,2,4,30,0,0,0,1.5,15.4,124.38000000000001,1023,12.600000000000001 +2013,2,2,5,30,0,0,0,1.5,15.4,111.33,1024,12.8 +2013,2,2,6,30,0,0,0,1.4000000000000001,15.5,98.48,1024,13 +2013,2,2,7,30,47,26,278,1.5,16.2,85.84,1025,13.3 +2013,2,2,8,30,241,60,661,1.5,17.1,74.17,1025,13.9 +2013,2,2,9,30,441,75,819,1.4000000000000001,17.8,63.46,1025,13.9 +2013,2,2,10,30,602,84,892,1.2000000000000002,18.2,54.47,1025,13.700000000000001 +2013,2,2,11,30,707,88,927,1,18.5,48.19,1024,13.600000000000001 +2013,2,2,12,30,745,88,943,0.9,18.7,45.800000000000004,1024,13.700000000000001 +2013,2,2,13,30,712,87,931,0.8,18.7,47.870000000000005,1023,13.600000000000001 +2013,2,2,14,30,612,84,896,0.9,18.7,53.89,1023,13.600000000000001 +2013,2,2,15,30,455,75,831,1.2000000000000002,18.3,62.730000000000004,1022,13.700000000000001 +2013,2,2,16,30,259,59,696,1.5,17.6,73.34,1022,14.100000000000001 +2013,2,2,17,30,59,29,348,1.7000000000000002,17.1,84.97,1022,14.5 +2013,2,2,18,30,0,0,0,1.9000000000000001,16.1,97.54,1023,14.4 +2013,2,2,19,30,0,0,0,1.8,15.9,110.36,1024,14.5 +2013,2,2,20,30,0,0,0,1.7000000000000002,15.700000000000001,123.4,1025,14.700000000000001 +2013,2,2,21,30,0,0,0,1.5,15.600000000000001,136.46,1025,14.700000000000001 +2013,2,2,22,30,0,0,0,1.3,15.600000000000001,149.25,1025,14.700000000000001 +2013,2,2,23,30,0,0,0,1.1,15.600000000000001,160.88,1025,14.600000000000001 +2013,2,3,0,30,0,0,0,0.9,15.5,167.24,1025,14.4 +2013,2,3,1,30,0,0,0,1.1,15.200000000000001,161.57,1025,14.4 +2013,2,3,2,30,0,0,0,1.7000000000000002,14.8,150.1,1025,14.4 +2013,2,3,3,30,0,0,0,2.5,14.4,137.35,1025,14.200000000000001 +2013,2,3,4,30,0,0,0,3.1,14,124.28,1025,14 +2013,2,3,5,30,0,0,0,3.5,13.600000000000001,111.22,1025,13.600000000000001 +2013,2,3,6,30,0,0,0,3.9000000000000004,13.600000000000001,98.37,1025,13.600000000000001 +2013,2,3,7,30,47,28,261,4.4,14.100000000000001,85.71000000000001,1026,13.4 +2013,2,3,8,30,201,84,424,4.800000000000001,14.9,74.01,1027,13.3 +2013,2,3,9,30,348,161,415,5,15.9,63.27,1027,12.700000000000001 +2013,2,3,10,30,463,236,388,4.800000000000001,16.6,54.230000000000004,1027,11.9 +2013,2,3,11,30,717,96,927,4.3,16.900000000000002,47.92,1026,11.5 +2013,2,3,12,30,756,94,945,3.9000000000000004,17.2,45.5,1025,11 +2013,2,3,13,30,727,91,944,3.5,17.3,47.58,1023,10.5 +2013,2,3,14,30,627,85,914,3.2,17.2,53.63,1023,10.100000000000001 +2013,2,3,15,30,359,167,415,2.9000000000000004,17,62.49,1022,9.9 +2013,2,3,16,30,185,108,265,2.9000000000000004,16.3,73.13,1022,10 +2013,2,3,17,30,43,32,128,2.9000000000000004,15.8,84.79,1022,10.5 +2013,2,3,18,30,0,0,0,3.2,15.100000000000001,97.38,1022,10.4 +2013,2,3,19,30,0,0,0,3.4000000000000004,15,110.21000000000001,1021,10.600000000000001 +2013,2,3,20,30,0,0,0,3.6,15,123.25,1021,11 +2013,2,3,21,30,0,0,0,3.7,15,136.31,1020,11.4 +2013,2,3,22,30,0,0,0,3.8000000000000003,15.100000000000001,149.08,1020,11.9 +2013,2,3,23,30,0,0,0,3.9000000000000004,15.200000000000001,160.65,1019,12.3 +2013,2,4,0,30,0,0,0,3.8000000000000003,15.4,166.94,1018,12.9 +2013,2,4,1,30,0,0,0,3.6,15.5,161.37,1018,13.5 +2013,2,4,2,30,0,0,0,3.4000000000000004,15.600000000000001,149.97,1017,13.9 +2013,2,4,3,30,0,0,0,3.2,15.700000000000001,137.24,1016,14.3 +2013,2,4,4,30,0,0,0,2.9000000000000004,15.9,124.18,1016,14.600000000000001 +2013,2,4,5,30,0,0,0,2.7,16.1,111.12,1016,14.9 +2013,2,4,6,30,0,0,0,2.6,16.3,98.25,1016,15.100000000000001 +2013,2,4,7,30,45,30,195,2.6,17,85.58,1016,15.3 +2013,2,4,8,30,152,110,150,2.6,17.7,73.85000000000001,1016,15.8 +2013,2,4,9,30,160,157,6,2.4000000000000004,18,63.07,1016,16 +2013,2,4,10,30,147,147,0,2.2,18.1,53.99,1016,16.3 +2013,2,4,11,30,466,323,213,2.1,18.3,47.64,1015,16.5 +2013,2,4,12,30,240,232,11,2.2,18.400000000000002,45.2,1014,16.7 +2013,2,4,13,30,351,307,65,2.3000000000000003,18.5,47.29,1013,16.8 +2013,2,4,14,30,283,254,48,2.4000000000000004,18.400000000000002,53.36,1012,17 +2013,2,4,15,30,220,194,55,2.3000000000000003,18.3,62.26,1012,17.1 +2013,2,4,16,30,110,107,11,2,18,72.93,1012,17.3 +2013,2,4,17,30,56,33,241,1.9000000000000001,17.7,84.62,1012,17.3 +2013,2,4,18,30,0,0,0,1.9000000000000001,17.400000000000002,97.22,1013,17.3 +2013,2,4,19,30,0,0,0,1.8,17.400000000000002,110.06,1013,17.3 +2013,2,4,20,30,0,0,0,1.8,17.3,123.11,1013,17.3 +2013,2,4,21,30,0,0,0,1.8,17.2,136.16,1013,17.2 +2013,2,4,22,30,0,0,0,1.9000000000000001,17.1,148.91,1013,17.1 +2013,2,4,23,30,0,0,0,1.8,17.1,160.42000000000002,1013,17.1 +2013,2,5,0,30,0,0,0,1.8,17,166.63,1013,17 +2013,2,5,1,30,0,0,0,1.6,17,161.16,1012,17 +2013,2,5,2,30,0,0,0,1.4000000000000001,17.1,149.83,1012,17.1 +2013,2,5,3,30,0,0,0,1.2000000000000002,17.1,137.12,1012,17.1 +2013,2,5,4,30,0,0,0,1.1,17.3,124.07000000000001,1013,17.3 +2013,2,5,5,30,0,0,0,0.9,17.400000000000002,111,1013,17.400000000000002 +2013,2,5,6,30,0,0,0,0.7000000000000001,17.6,98.12,1014,17.6 +2013,2,5,7,30,29,28,14,0.6000000000000001,18.1,85.44,1015,17.7 +2013,2,5,8,30,96,96,0,0.6000000000000001,18.7,73.68,1015,18.2 +2013,2,5,9,30,264,200,140,0.7000000000000001,19.200000000000003,62.870000000000005,1016,18.3 +2013,2,5,10,30,592,96,838,0.8,19.5,53.75,1016,18.2 +2013,2,5,11,30,483,322,238,1,19.6,47.36,1015,18 +2013,2,5,12,30,418,341,108,1.3,19.6,44.9,1015,17.8 +2013,2,5,13,30,696,109,861,1.5,19.5,46.99,1014,17.7 +2013,2,5,14,30,598,102,827,1.7000000000000002,19.3,53.1,1014,17.6 +2013,2,5,15,30,445,87,764,1.9000000000000001,19,62.03,1014,17.5 +2013,2,5,16,30,253,69,619,2.1,18.5,72.73,1014,17.6 +2013,2,5,17,30,61,33,286,2.3000000000000003,18.1,84.44,1014,17.6 +2013,2,5,18,30,0,0,0,2.9000000000000004,17.5,97.06,1015,17.400000000000002 +2013,2,5,19,30,0,0,0,3,17.3,109.91,1015,17.3 +2013,2,5,20,30,0,0,0,3,17.1,122.96000000000001,1016,17.1 +2013,2,5,21,30,0,0,0,3,17,136.01,1016,17 +2013,2,5,22,30,0,0,0,2.9000000000000004,17,148.74,1016,17 +2013,2,5,23,30,0,0,0,2.9000000000000004,17,160.19,1016,17 +2013,2,6,0,30,0,0,0,2.8000000000000003,17,166.33,1016,17 +2013,2,6,1,30,0,0,0,2.6,17.1,160.95000000000002,1016,17.1 +2013,2,6,2,30,0,0,0,2.4000000000000004,17.1,149.68,1016,17.1 +2013,2,6,3,30,0,0,0,2.1,17.2,137,1016,17.2 +2013,2,6,4,30,0,0,0,1.9000000000000001,17.2,123.95,1017,17.2 +2013,2,6,5,30,0,0,0,2,17.1,110.88,1017,17.1 +2013,2,6,6,30,0,0,0,2.6,17.2,97.99000000000001,1018,17.2 +2013,2,6,7,30,13,13,0,3.9000000000000004,17.3,85.29,1018,17.2 +2013,2,6,8,30,37,37,0,5.300000000000001,17.5,73.5,1018,17.2 +2013,2,6,9,30,72,72,0,5.9,17.7,62.660000000000004,1017,17.2 +2013,2,6,10,30,413,272,237,5.800000000000001,17.8,53.5,1017,17.2 +2013,2,6,11,30,322,292,45,5.6000000000000005,17.900000000000002,47.07,1016,17.2 +2013,2,6,12,30,153,153,0,5.6000000000000005,17.7,44.59,1015,17.1 +2013,2,6,13,30,128,128,0,6,17.6,46.69,1014,17.1 +2013,2,6,14,30,76,76,0,6.6000000000000005,17.5,52.83,1013,17.1 +2013,2,6,15,30,52,52,0,7.2,17.400000000000002,61.800000000000004,1012,17.1 +2013,2,6,16,30,50,50,0,7.5,17.3,72.53,1012,17.1 +2013,2,6,17,30,2,2,0,7.4,17.3,84.27,1012,17.1 +2013,2,6,18,30,0,0,0,7.300000000000001,17.400000000000002,96.89,1013,17.2 +2013,2,6,19,30,0,0,0,7.1000000000000005,17.400000000000002,109.76,1013,17.2 +2013,2,6,20,30,0,0,0,6.6000000000000005,17.400000000000002,122.82000000000001,1012,17.2 +2013,2,6,21,30,0,0,0,5.7,17.3,135.86,1012,17.2 +2013,2,6,22,30,0,0,0,4.7,17.2,148.56,1012,17.1 +2013,2,6,23,30,0,0,0,3.9000000000000004,17.1,159.95000000000002,1012,17 +2013,2,7,0,30,0,0,0,3.4000000000000004,16.900000000000002,166.01,1012,16.900000000000002 +2013,2,7,1,30,0,0,0,3.1,16.7,160.72,1012,16.7 +2013,2,7,2,30,0,0,0,2.7,16.5,149.53,1012,16.5 +2013,2,7,3,30,0,0,0,2.1,16.3,136.87,1012,16.3 +2013,2,7,4,30,0,0,0,1.7000000000000002,16.2,123.83,1012,16.2 +2013,2,7,5,30,0,0,0,1.6,16.1,110.76,1013,16.1 +2013,2,7,6,30,0,0,0,1.5,16.2,97.85000000000001,1013,16 +2013,2,7,7,30,54,28,317,1.6,16.5,85.14,1014,16.1 +2013,2,7,8,30,252,59,672,1.5,17.1,73.32000000000001,1015,16.3 +2013,2,7,9,30,450,75,810,1.4000000000000001,17.7,62.440000000000005,1015,16.7 +2013,2,7,10,30,611,85,879,1.2000000000000002,18.3,53.25,1015,17 +2013,2,7,11,30,286,268,26,1,18.7,46.78,1015,17.1 +2013,2,7,12,30,368,324,61,0.9,18.900000000000002,44.28,1014,17.1 +2013,2,7,13,30,319,291,40,0.9,19,46.39,1013,17.1 +2013,2,7,14,30,256,239,27,1,19,52.56,1013,17 +2013,2,7,15,30,185,177,17,1.2000000000000002,18.7,61.56,1013,17 +2013,2,7,16,30,85,85,0,1.4000000000000001,18.2,72.33,1013,17.1 +2013,2,7,17,30,68,34,333,1.5,17.900000000000002,84.09,1013,17.2 +2013,2,7,18,30,0,0,0,1.7000000000000002,17.2,96.73,1014,17 +2013,2,7,19,30,0,0,0,1.6,17,109.61,1014,17 +2013,2,7,20,30,0,0,0,1.6,16.900000000000002,122.67,1015,16.900000000000002 +2013,2,7,21,30,0,0,0,1.8,16.8,135.71,1015,16.8 +2013,2,7,22,30,0,0,0,1.9000000000000001,16.7,148.39000000000001,1015,16.7 +2013,2,7,23,30,0,0,0,1.9000000000000001,16.8,159.71,1016,16.8 +2013,2,8,0,30,0,0,0,2.2,16.8,165.70000000000002,1016,16.8 +2013,2,8,1,30,0,0,0,2.7,16.8,160.49,1016,16.8 +2013,2,8,2,30,0,0,0,3.4000000000000004,16.5,149.37,1016,16.5 +2013,2,8,3,30,0,0,0,4.1000000000000005,16,136.74,1017,16 +2013,2,8,4,30,0,0,0,4.9,15.4,123.71000000000001,1017,15.4 +2013,2,8,5,30,0,0,0,5.5,14.8,110.63,1018,14.700000000000001 +2013,2,8,6,30,0,0,0,6,14.4,97.71000000000001,1019,13.8 +2013,2,8,7,30,17,17,0,6.2,14.5,84.98,1020,13.100000000000001 +2013,2,8,8,30,57,57,0,6.1000000000000005,15.100000000000001,73.14,1021,12.9 +2013,2,8,9,30,171,166,11,5.7,15.8,62.230000000000004,1021,12.8 +2013,2,8,10,30,343,278,108,5,16.400000000000002,52.99,1021,13 +2013,2,8,11,30,400,328,105,4.4,17,46.480000000000004,1021,13.3 +2013,2,8,12,30,551,336,298,3.9000000000000004,17.400000000000002,43.96,1020,13.5 +2013,2,8,13,30,742,97,929,3.4000000000000004,17.7,46.08,1019,13.700000000000001 +2013,2,8,14,30,638,94,890,3.1,17.900000000000002,52.28,1019,13.9 +2013,2,8,15,30,478,83,823,3,17.8,61.33,1019,14 +2013,2,8,16,30,277,68,680,3,17.5,72.12,1019,14.100000000000001 +2013,2,8,17,30,73,35,352,2.9000000000000004,17.1,83.92,1020,14.5 +2013,2,8,18,30,0,0,0,3.4000000000000004,16.5,96.57000000000001,1020,14.3 +2013,2,8,19,30,0,0,0,4,16.3,109.46000000000001,1020,14.3 +2013,2,8,20,30,0,0,0,4.7,16.1,122.53,1020,14.4 +2013,2,8,21,30,0,0,0,5.300000000000001,15.8,135.56,1020,14.4 +2013,2,8,22,30,0,0,0,5.7,15.4,148.21,1020,14.100000000000001 +2013,2,8,23,30,0,0,0,5.9,15.200000000000001,159.47,1020,13.600000000000001 +2013,2,9,0,30,0,0,0,5.9,15,165.38,1020,13.100000000000001 +2013,2,9,1,30,0,0,0,5.800000000000001,14.8,160.25,1020,12.8 +2013,2,9,2,30,0,0,0,5.6000000000000005,14.600000000000001,149.20000000000002,1019,12.5 +2013,2,9,3,30,0,0,0,5.5,14.5,136.6,1019,12.5 +2013,2,9,4,30,0,0,0,5.2,14.5,123.57000000000001,1019,12.600000000000001 +2013,2,9,5,30,0,0,0,5,14.700000000000001,110.49000000000001,1019,12.8 +2013,2,9,6,30,0,0,0,4.9,15.3,97.57000000000001,1019,13.200000000000001 +2013,2,9,7,30,56,34,236,4.800000000000001,16.1,84.82000000000001,1020,13.700000000000001 +2013,2,9,8,30,248,80,572,4.800000000000001,17,72.95,1020,14.3 +2013,2,9,9,30,441,110,704,4.7,17.6,62,1020,15 +2013,2,9,10,30,596,131,768,4.4,18.1,52.730000000000004,1019,15.5 +2013,2,9,11,30,695,143,797,4.1000000000000005,18.400000000000002,46.18,1018,16 +2013,2,9,12,30,733,138,823,4,18.6,43.64,1017,16.3 +2013,2,9,13,30,701,134,812,4.4,18.6,45.77,1016,16.6 +2013,2,9,14,30,450,278,279,4.9,18.6,52.01,1015,16.8 +2013,2,9,15,30,262,213,102,5.4,18.6,61.09,1015,17 +2013,2,9,16,30,113,111,6,5.7,18.5,71.92,1015,17.2 +2013,2,9,17,30,44,38,55,5.9,18.400000000000002,83.74,1014,17.400000000000002 +2013,2,9,18,30,0,0,0,6.5,18.5,96.42,1014,17.5 +2013,2,9,19,30,0,0,0,6.800000000000001,18.6,109.32000000000001,1014,17.7 +2013,2,9,20,30,0,0,0,7,18.7,122.38,1014,18 +2013,2,9,21,30,0,0,0,6.800000000000001,18.6,135.4,1013,18.1 +2013,2,9,22,30,0,0,0,6.5,18.6,148.03,1013,18.3 +2013,2,9,23,30,0,0,0,6.2,18.7,159.23,1012,18.5 +2013,2,10,0,30,0,0,0,5.9,18.8,165.06,1012,18.7 +2013,2,10,1,30,0,0,0,5.800000000000001,18.900000000000002,160,1011,18.8 +2013,2,10,2,30,0,0,0,6,19.1,149.03,1011,19 +2013,2,10,3,30,0,0,0,6.4,19.3,136.45,1011,19.200000000000003 +2013,2,10,4,30,0,0,0,6.5,19.5,123.44,1011,19.3 +2013,2,10,5,30,0,0,0,6.2,19.5,110.35000000000001,1011,19.200000000000003 +2013,2,10,6,30,0,0,0,5.6000000000000005,19.5,97.42,1012,19.1 +2013,2,10,7,30,47,38,100,5.5,19.6,84.66,1012,19.1 +2013,2,10,8,30,228,102,426,5.9,19.8,72.76,1012,19.3 +2013,2,10,9,30,255,207,102,6.4,19.900000000000002,61.78,1012,19.5 +2013,2,10,10,30,461,266,319,6.300000000000001,20,52.46,1012,19.8 +2013,2,10,11,30,259,248,16,5.800000000000001,20.1,45.88,1011,19.900000000000002 +2013,2,10,12,30,52,52,0,5.300000000000001,20.200000000000003,43.31,1010,19.900000000000002 +2013,2,10,13,30,450,342,154,4.9,20.3,45.46,1010,19.900000000000002 +2013,2,10,14,30,69,69,0,4.4,20.200000000000003,51.730000000000004,1010,19.900000000000002 +2013,2,10,15,30,141,141,0,3.9000000000000004,20,60.86,1010,19.700000000000003 +2013,2,10,16,30,58,58,0,3.3000000000000003,19.700000000000003,71.72,1011,19.5 +2013,2,10,17,30,38,38,4,2.9000000000000004,19.5,83.57000000000001,1011,19.200000000000003 +2013,2,10,18,30,0,0,0,2,19,96.26,1012,18.900000000000002 +2013,2,10,19,30,0,0,0,1.8,18.900000000000002,109.17,1013,18.7 +2013,2,10,20,30,0,0,0,1.7000000000000002,18.7,122.24000000000001,1013,18.5 +2013,2,10,21,30,0,0,0,1.7000000000000002,18.6,135.25,1013,18.400000000000002 +2013,2,10,22,30,0,0,0,1.7000000000000002,18.400000000000002,147.85,1014,18.400000000000002 +2013,2,10,23,30,0,0,0,1.6,18.3,158.98,1014,18.3 +2013,2,11,0,30,0,0,0,1.6,18.1,164.73,1014,18.1 +2013,2,11,1,30,0,0,0,1.8,17.8,159.75,1014,17.8 +2013,2,11,2,30,0,0,0,2.1,17.2,148.84,1014,17.2 +2013,2,11,3,30,0,0,0,2.9000000000000004,16.5,136.3,1015,16.400000000000002 +2013,2,11,4,30,0,0,0,4,16.1,123.3,1015,15.700000000000001 +2013,2,11,5,30,0,0,0,5,15.8,110.21000000000001,1015,15.200000000000001 +2013,2,11,6,30,0,0,0,5.800000000000001,15.600000000000001,97.26,1016,14.9 +2013,2,11,7,30,13,13,0,6.7,15.600000000000001,84.49,1016,14.700000000000001 +2013,2,11,8,30,39,39,0,7.5,15.8,72.56,1017,14.700000000000001 +2013,2,11,9,30,118,118,0,7.9,15.9,61.54,1017,14.700000000000001 +2013,2,11,10,30,217,210,11,8,16.1,52.19,1017,14.700000000000001 +2013,2,11,11,30,222,216,8,7.9,16.3,45.56,1016,14.8 +2013,2,11,12,30,285,270,20,7.7,16.5,42.980000000000004,1015,14.9 +2013,2,11,13,30,67,67,0,7.6000000000000005,16.6,45.15,1015,15 +2013,2,11,14,30,90,90,0,7.6000000000000005,16.6,51.46,1014,15.100000000000001 +2013,2,11,15,30,86,86,0,7.7,16.6,60.620000000000005,1014,15.100000000000001 +2013,2,11,16,30,80,80,0,8,16.3,71.52,1014,15.100000000000001 +2013,2,11,17,30,11,11,0,8.1,16.1,83.4,1014,15 +2013,2,11,18,30,0,0,0,8.4,15.5,96.10000000000001,1014,14.8 +2013,2,11,19,30,0,0,0,8.4,15.200000000000001,109.02,1015,14.600000000000001 +2013,2,11,20,30,0,0,0,8.200000000000001,14.9,122.09,1015,14.3 +2013,2,11,21,30,0,0,0,7.9,14.8,135.1,1015,14.100000000000001 +2013,2,11,22,30,0,0,0,7.9,14.8,147.67000000000002,1015,14 +2013,2,11,23,30,0,0,0,7.9,14.9,158.73,1014,14 +2013,2,12,0,30,0,0,0,7.6000000000000005,15.100000000000001,164.4,1014,14.200000000000001 +2013,2,12,1,30,0,0,0,6.9,15.5,159.49,1013,14.600000000000001 +2013,2,12,2,30,0,0,0,6.1000000000000005,15.9,148.65,1013,15.100000000000001 +2013,2,12,3,30,0,0,0,5.4,16.2,136.14000000000001,1012,15.8 +2013,2,12,4,30,0,0,0,4.9,16.6,123.15,1011,16.3 +2013,2,12,5,30,0,0,0,4.5,17.1,110.06,1011,16.8 +2013,2,12,6,30,0,0,0,4.1000000000000005,17.7,97.10000000000001,1011,17.5 +2013,2,12,7,30,58,37,204,4,18.400000000000002,84.32000000000001,1011,18.1 +2013,2,12,8,30,95,95,0,4.1000000000000005,19.200000000000003,72.36,1011,18.8 +2013,2,12,9,30,158,157,2,4.5,19.8,61.31,1011,19.5 +2013,2,12,10,30,606,107,809,5,20.200000000000003,51.910000000000004,1010,19.8 +2013,2,12,11,30,375,324,72,5.300000000000001,20.3,45.25,1010,19.900000000000002 +2013,2,12,12,30,356,321,47,5.4,20.1,42.65,1009,19.6 +2013,2,12,13,30,198,195,5,5.7,19.8,44.83,1009,19 +2013,2,12,14,30,325,281,70,6,19.5,51.18,1009,18.2 +2013,2,12,15,30,236,208,57,6.1000000000000005,19.1,60.38,1010,17.2 +2013,2,12,16,30,131,122,29,5.9,18.5,71.32000000000001,1011,16.400000000000002 +2013,2,12,17,30,71,38,283,5.7,18.2,83.22,1011,15.700000000000001 +2013,2,12,18,30,0,0,0,5.7,17,95.94,1012,15.200000000000001 +2013,2,12,19,30,0,0,0,5.5,16.3,108.88,1013,14.700000000000001 +2013,2,12,20,30,0,0,0,5,15.8,121.95,1013,14.3 +2013,2,12,21,30,0,0,0,4.7,15.5,134.95,1014,13.9 +2013,2,12,22,30,0,0,0,4.6000000000000005,15.200000000000001,147.48,1014,13.600000000000001 +2013,2,12,23,30,0,0,0,4.800000000000001,15,158.48,1015,13.4 +2013,2,13,0,30,0,0,0,5.300000000000001,14.700000000000001,164.06,1015,13.200000000000001 +2013,2,13,1,30,0,0,0,6.1000000000000005,14.100000000000001,159.22,1016,12.700000000000001 +2013,2,13,2,30,0,0,0,6.800000000000001,13.200000000000001,148.46,1016,11.9 +2013,2,13,3,30,0,0,0,7.2,12.3,135.98,1017,10.8 +2013,2,13,4,30,0,0,0,7.300000000000001,11.700000000000001,122.99000000000001,1017,9.700000000000001 +2013,2,13,5,30,0,0,0,7.300000000000001,11.200000000000001,109.9,1018,8.9 +2013,2,13,6,30,0,0,0,7.300000000000001,11,96.93,1019,8.6 +2013,2,13,7,30,16,16,0,7.2,11.200000000000001,84.14,1019,8.700000000000001 +2013,2,13,8,30,71,71,0,6.800000000000001,11.5,72.15,1020,8.6 +2013,2,13,9,30,217,196,42,6.1000000000000005,11.8,61.07,1020,8.5 +2013,2,13,10,30,83,83,0,5.6000000000000005,12.4,51.63,1020,8.4 +2013,2,13,11,30,250,241,13,5.1000000000000005,13,44.93,1019,8.3 +2013,2,13,12,30,547,356,259,4.6000000000000005,13.5,42.31,1018,8.200000000000001 +2013,2,13,13,30,355,316,54,4.3,14,44.51,1018,8.1 +2013,2,13,14,30,520,251,426,4,14.5,50.9,1017,8 +2013,2,13,15,30,508,81,858,3.8000000000000003,14.8,60.15,1017,7.9 +2013,2,13,16,30,305,65,740,3.6,14.8,71.12,1017,7.9 +2013,2,13,17,30,90,36,444,3.5,14.600000000000001,83.05,1017,8.4 +2013,2,13,18,30,0,0,0,4,14.200000000000001,95.79,1018,8.4 +2013,2,13,19,30,0,0,0,4.4,14,108.73,1019,8.6 +2013,2,13,20,30,0,0,0,4.7,13.700000000000001,121.8,1019,8.9 +2013,2,13,21,30,0,0,0,4.7,13.3,134.79,1019,8.9 +2013,2,13,22,30,0,0,0,4.5,12.8,147.3,1019,8.8 +2013,2,13,23,30,0,0,0,4.2,12.4,158.22,1019,8.6 +2013,2,14,0,30,0,0,0,4,12,163.72,1020,8.3 +2013,2,14,1,30,0,0,0,3.8000000000000003,11.700000000000001,158.95000000000002,1019,8.1 +2013,2,14,2,30,0,0,0,3.7,11.5,148.26,1019,7.9 +2013,2,14,3,30,0,0,0,3.7,11.200000000000001,135.81,1019,7.800000000000001 +2013,2,14,4,30,0,0,0,3.6,11.100000000000001,122.83,1019,7.800000000000001 +2013,2,14,5,30,0,0,0,3.5,11,109.74000000000001,1020,7.7 +2013,2,14,6,30,0,0,0,3.5,11.3,96.77,1020,7.6000000000000005 +2013,2,14,7,30,79,32,447,3.6,12,83.95,1021,7.6000000000000005 +2013,2,14,8,30,299,61,770,3.5,13,71.94,1021,7.5 +2013,2,14,9,30,513,74,901,3.2,13.8,60.82,1021,7.1000000000000005 +2013,2,14,10,30,683,81,964,2.9000000000000004,14.3,51.34,1021,6.6000000000000005 +2013,2,14,11,30,789,85,988,2.4000000000000004,14.600000000000001,44.6,1021,6.300000000000001 +2013,2,14,12,30,829,87,997,2,14.700000000000001,41.97,1020,5.9 +2013,2,14,13,30,795,87,987,1.8,14.8,44.19,1019,5.6000000000000005 +2013,2,14,14,30,687,84,951,1.8,14.9,50.620000000000005,1019,5.7 +2013,2,14,15,30,522,76,890,1.6,14.9,59.910000000000004,1019,5.7 +2013,2,14,16,30,313,62,768,1.6,14.600000000000001,70.92,1019,5.800000000000001 +2013,2,14,17,30,95,35,480,1.7000000000000002,14.3,82.88,1019,6.4 +2013,2,14,18,30,0,0,0,2.1,13.600000000000001,95.63,1019,6.2 +2013,2,14,19,30,0,0,0,2.2,13.5,108.58,1019,6.2 +2013,2,14,20,30,0,0,0,2.2,13.5,121.66,1019,6.2 +2013,2,14,21,30,0,0,0,2.2,13.4,134.64000000000001,1020,6.1000000000000005 +2013,2,14,22,30,0,0,0,2.1,13.4,147.11,1020,6 +2013,2,14,23,30,0,0,0,2.1,13.4,157.96,1020,6 +2013,2,15,0,30,0,0,0,2.1,13.5,163.38,1020,6 +2013,2,15,1,30,0,0,0,2.1,13.600000000000001,158.67000000000002,1019,6.1000000000000005 +2013,2,15,2,30,0,0,0,2,13.8,148.05,1019,6.2 +2013,2,15,3,30,0,0,0,2,13.9,135.63,1020,6.2 +2013,2,15,4,30,0,0,0,2.2,13.700000000000001,122.67,1020,6.4 +2013,2,15,5,30,0,0,0,2.7,13.3,109.58,1021,6.9 +2013,2,15,6,30,0,0,0,3.3000000000000003,13.200000000000001,96.59,1022,7.5 +2013,2,15,7,30,77,33,406,3.9000000000000004,13.8,83.77,1022,8.4 +2013,2,15,8,30,290,66,716,4.2,14.600000000000001,71.72,1023,9 +2013,2,15,9,30,391,175,439,3.9000000000000004,15.5,60.57,1023,9 +2013,2,15,10,30,527,243,452,3.6,16,51.050000000000004,1023,8.8 +2013,2,15,11,30,643,243,558,3.3000000000000003,16.3,44.28,1023,8.700000000000001 +2013,2,15,12,30,800,116,914,3,16.5,41.63,1022,8.5 +2013,2,15,13,30,766,117,900,2.7,16.6,43.87,1021,8.3 +2013,2,15,14,30,661,114,858,2.5,16.6,50.34,1021,8.200000000000001 +2013,2,15,15,30,501,95,803,2.2,16.7,59.68,1021,8.3 +2013,2,15,16,30,298,78,667,1.9000000000000001,16.5,70.72,1021,8.6 +2013,2,15,17,30,88,42,361,1.7000000000000002,16.2,82.71000000000001,1021,9.200000000000001 +2013,2,15,18,30,0,0,0,2.3000000000000003,15.9,95.48,1022,9.200000000000001 +2013,2,15,19,30,0,0,0,3.6,15.8,108.44,1022,9.5 +2013,2,15,20,30,0,0,0,5.9,15.200000000000001,121.52,1023,10 +2013,2,15,21,30,0,0,0,8.200000000000001,13.700000000000001,134.48,1024,10.200000000000001 +2013,2,15,22,30,0,0,0,9.3,12,146.92000000000002,1025,9.700000000000001 +2013,2,15,23,30,0,0,0,9.200000000000001,10.700000000000001,157.70000000000002,1026,9 +2013,2,16,0,30,0,0,0,8.5,10,163.03,1026,8.200000000000001 +2013,2,16,1,30,0,0,0,7.5,9.700000000000001,158.38,1027,7.6000000000000005 +2013,2,16,2,30,0,0,0,6.6000000000000005,9.600000000000001,147.83,1027,7.2 +2013,2,16,3,30,0,0,0,6.4,9.600000000000001,135.45,1027,6.7 +2013,2,16,4,30,0,0,0,6.7,9.5,122.5,1028,6.2 +2013,2,16,5,30,0,0,0,6.9,9.200000000000001,109.41,1028,5.5 +2013,2,16,6,30,0,0,0,7,9.1,96.41,1029,4.800000000000001 +2013,2,16,7,30,87,31,505,6.9,9.5,83.57000000000001,1030,4.3 +2013,2,16,8,30,310,56,801,6.5,10.200000000000001,71.5,1030,3.1 +2013,2,16,9,30,524,67,923,6,10.9,60.32,1030,2 +2013,2,16,10,30,690,73,976,5.5,11.700000000000001,50.76,1030,1.9000000000000001 +2013,2,16,11,30,800,78,1004,5.4,12.4,43.94,1029,2.1 +2013,2,16,12,30,839,83,1005,5.4,13,41.28,1028,2.5 +2013,2,16,13,30,800,84,987,5.4,13.700000000000001,43.54,1027,2.9000000000000004 +2013,2,16,14,30,695,82,954,5.300000000000001,14.200000000000001,50.06,1026,3.3000000000000003 +2013,2,16,15,30,529,76,892,5,14.600000000000001,59.44,1026,3.6 +2013,2,16,16,30,320,63,772,4.5,14.4,70.52,1026,4 +2013,2,16,17,30,99,37,485,4.2,14.100000000000001,82.54,1025,4.9 +2013,2,16,18,30,0,0,0,3.4000000000000004,13.9,95.32000000000001,1026,4.4 +2013,2,16,19,30,0,0,0,2.6,14,108.3,1026,3.7 +2013,2,16,20,30,0,0,0,1.8,13.8,121.37,1026,2.8000000000000003 +2013,2,16,21,30,0,0,0,1.1,13.4,134.32,1026,2.2 +2013,2,16,22,30,0,0,0,1,13.100000000000001,146.73,1026,1.9000000000000001 +2013,2,16,23,30,0,0,0,1.6,12.9,157.43,1026,2.4000000000000004 +2013,2,17,0,30,0,0,0,2.2,12.9,162.69,1025,3.2 +2013,2,17,1,30,0,0,0,2.7,13,158.09,1025,4.2 +2013,2,17,2,30,0,0,0,3.2,13,147.61,1025,5.1000000000000005 +2013,2,17,3,30,0,0,0,3.5,13.100000000000001,135.27,1024,6 +2013,2,17,4,30,0,0,0,3.5,13.200000000000001,122.33,1024,6.6000000000000005 +2013,2,17,5,30,0,0,0,3.4000000000000004,13.4,109.24000000000001,1025,7 +2013,2,17,6,30,0,0,0,3.2,13.8,96.23,1025,7.2 +2013,2,17,7,30,86,34,455,3.5,14.9,83.38,1025,7.7 +2013,2,17,8,30,305,60,761,4.1000000000000005,16.1,71.28,1025,8.3 +2013,2,17,9,30,516,70,892,4.7,16.900000000000002,60.07,1025,8.5 +2013,2,17,10,30,684,78,952,5.2,17.400000000000002,50.46,1025,8.700000000000001 +2013,2,17,11,30,793,82,982,5.7,17.6,43.61,1024,8.9 +2013,2,17,12,30,831,86,986,6.1000000000000005,17.7,40.93,1023,9.1 +2013,2,17,13,30,798,86,977,6.4,17.6,43.22,1022,9.200000000000001 +2013,2,17,14,30,694,82,948,6.5,17.5,49.78,1021,9.4 +2013,2,17,15,30,532,72,897,6.6000000000000005,17.3,59.21,1021,9.5 +2013,2,17,16,30,323,61,779,6.6000000000000005,16.900000000000002,70.33,1021,9.8 +2013,2,17,17,30,102,37,492,6.6000000000000005,16.6,82.37,1020,10.200000000000001 +2013,2,17,18,30,0,0,0,7,16.1,95.17,1020,10.600000000000001 +2013,2,17,19,30,0,0,0,7.300000000000001,16.3,108.15,1020,11 +2013,2,17,20,30,0,0,0,7.7,16.5,121.23,1020,11.5 +2013,2,17,21,30,0,0,0,8,16.7,134.17000000000002,1020,12 +2013,2,17,22,30,0,0,0,8.200000000000001,16.900000000000002,146.54,1020,12.5 +2013,2,17,23,30,0,0,0,8.4,17.1,157.17000000000002,1019,12.8 +2013,2,18,0,30,0,0,0,8.4,17.3,162.34,1019,13.200000000000001 +2013,2,18,1,30,0,0,0,8.3,17.400000000000002,157.79,1018,13.5 +2013,2,18,2,30,0,0,0,8.200000000000001,17.5,147.38,1017,13.700000000000001 +2013,2,18,3,30,0,0,0,7.9,17.6,135.07,1017,14 +2013,2,18,4,30,0,0,0,7.5,17.7,122.15,1016,14.5 +2013,2,18,5,30,0,0,0,7.4,17.8,109.06,1016,14.8 +2013,2,18,6,30,0,0,0,7.300000000000001,18,96.04,1016,15.100000000000001 +2013,2,18,7,30,38,38,0,7.4,18.400000000000002,83.18,1017,15.5 +2013,2,18,8,30,122,118,12,7.5,18.900000000000002,71.06,1017,15.8 +2013,2,18,9,30,326,222,207,7.5,19.3,59.81,1016,16.1 +2013,2,18,10,30,354,295,91,7.5,19.5,50.160000000000004,1016,16.3 +2013,2,18,11,30,529,351,244,7.5,19.6,43.27,1015,16.400000000000002 +2013,2,18,12,30,493,377,153,7.2,19.6,40.58,1014,16.7 +2013,2,18,13,30,446,357,122,7,19.5,42.89,1014,17 +2013,2,18,14,30,208,204,7,6.800000000000001,19.400000000000002,49.5,1013,17.3 +2013,2,18,15,30,190,183,12,6.800000000000001,19.3,58.980000000000004,1013,17.5 +2013,2,18,16,30,191,139,153,6.800000000000001,19.1,70.13,1013,17.6 +2013,2,18,17,30,54,48,43,6.800000000000001,19,82.21000000000001,1013,17.7 +2013,2,18,18,30,0,0,0,6.5,18.7,95.02,1014,17.7 +2013,2,18,19,30,0,0,0,6.2,18.7,108.01,1015,17.7 +2013,2,18,20,30,0,0,0,5.7,18.5,121.09,1016,17.8 +2013,2,18,21,30,0,0,0,5.2,18.3,134.01,1016,17.7 +2013,2,18,22,30,0,0,0,4.6000000000000005,18,146.35,1017,17.6 +2013,2,18,23,30,0,0,0,4.5,17.7,156.9,1017,17.400000000000002 +2013,2,19,0,30,0,0,0,5,16.900000000000002,161.98,1018,16.900000000000002 +2013,2,19,1,30,0,0,0,5.9,15.9,157.48,1019,15.9 +2013,2,19,2,30,0,0,0,6.7,15,147.15,1019,14.100000000000001 +2013,2,19,3,30,0,0,0,7.300000000000001,14.4,134.87,1020,11.8 +2013,2,19,4,30,0,0,0,7.4,13.9,121.96000000000001,1020,10.3 +2013,2,19,5,30,0,0,0,7.5,13.4,108.87,1021,9.9 +2013,2,19,6,30,0,0,0,7.6000000000000005,13.200000000000001,95.85000000000001,1022,9.4 +2013,2,19,7,30,60,43,140,7.7,13.5,82.98,1023,9.200000000000001 +2013,2,19,8,30,205,127,238,7.6000000000000005,13.9,70.83,1024,8.9 +2013,2,19,9,30,380,201,352,7.300000000000001,14.5,59.54,1024,8.6 +2013,2,19,10,30,607,162,691,7,15.100000000000001,49.86,1024,8.5 +2013,2,19,11,30,701,207,674,6.7,15.700000000000001,42.93,1024,8.6 +2013,2,19,12,30,843,92,984,6.5,16.1,40.22,1023,8.6 +2013,2,19,13,30,807,90,973,6.2,16.5,42.56,1023,8.6 +2013,2,19,14,30,703,86,944,6.1000000000000005,16.7,49.22,1022,8.5 +2013,2,19,15,30,537,76,888,6.1000000000000005,16.8,58.74,1022,8.5 +2013,2,19,16,30,328,63,774,6,16.400000000000002,69.93,1022,8.6 +2013,2,19,17,30,74,48,186,6,16.1,82.04,1022,9.1 +2013,2,19,18,30,0,0,0,6.6000000000000005,15.5,94.87,1022,9 +2013,2,19,19,30,0,0,0,7,15.4,107.87,1021,8.8 +2013,2,19,20,30,0,0,0,7.5,15.3,120.94,1021,8.8 +2013,2,19,21,30,0,0,0,7.7,15.200000000000001,133.85,1021,8.8 +2013,2,19,22,30,0,0,0,7.5,15,146.15,1021,9 +2013,2,19,23,30,0,0,0,7.300000000000001,14.9,156.62,1020,9.200000000000001 +2013,2,20,0,30,0,0,0,7.2,15,161.62,1020,9.4 +2013,2,20,1,30,0,0,0,7.300000000000001,15.100000000000001,157.17000000000002,1020,9.8 +2013,2,20,2,30,0,0,0,7.6000000000000005,15.200000000000001,146.91,1020,10.100000000000001 +2013,2,20,3,30,0,0,0,7.800000000000001,15.100000000000001,134.67000000000002,1019,10.3 +2013,2,20,4,30,0,0,0,7.800000000000001,15.100000000000001,121.77,1019,10.4 +2013,2,20,5,30,0,0,0,7.7,15.100000000000001,108.69,1020,10.5 +2013,2,20,6,30,0,0,0,7.800000000000001,15.100000000000001,95.66,1020,10.5 +2013,2,20,7,30,33,33,0,8,15.3,82.77,1020,10.600000000000001 +2013,2,20,8,30,58,58,0,8.1,15.700000000000001,70.59,1019,10.8 +2013,2,20,9,30,222,204,35,8.5,16.2,59.28,1018,11.200000000000001 +2013,2,20,10,30,160,160,0,8.6,16.7,49.550000000000004,1017,11.700000000000001 +2013,2,20,11,30,573,341,315,8.5,17.2,42.58,1016,12.600000000000001 +2013,2,20,12,30,248,240,11,7.9,17.5,39.86,1015,13.5 +2013,2,20,13,30,132,132,0,7.5,17.6,42.230000000000004,1015,14.3 +2013,2,20,14,30,168,168,0,7.5,17.6,48.94,1014,15 +2013,2,20,15,30,192,186,13,7.800000000000001,17.5,58.51,1014,15.4 +2013,2,20,16,30,252,118,388,8,17.400000000000002,69.74,1013,15.8 +2013,2,20,17,30,30,30,0,8.1,17.400000000000002,81.88,1013,16.2 +2013,2,20,18,30,0,0,0,8.5,17.5,94.72,1012,16.5 +2013,2,20,19,30,0,0,0,8.6,17.7,107.73,1012,16.8 +2013,2,20,20,30,0,0,0,8.5,18,120.8,1011,17.2 +2013,2,20,21,30,0,0,0,8.3,18.2,133.69,1011,17.6 +2013,2,20,22,30,0,0,0,8.3,18.400000000000002,145.95000000000002,1011,17.8 +2013,2,20,23,30,0,0,0,8.4,18.6,156.35,1010,18 +2013,2,21,0,30,0,0,0,8.5,18.7,161.26,1009,18.1 +2013,2,21,1,30,0,0,0,8.700000000000001,18.7,156.86,1008,18.2 +2013,2,21,2,30,0,0,0,8.9,18.8,146.66,1008,18.3 +2013,2,21,3,30,0,0,0,9,18.900000000000002,134.46,1007,18.5 +2013,2,21,4,30,0,0,0,8.9,19.1,121.58,1007,18.6 +2013,2,21,5,30,0,0,0,8.9,19.200000000000003,108.49000000000001,1007,18.8 +2013,2,21,6,30,0,0,0,9,19.400000000000002,95.46000000000001,1008,19 +2013,2,21,7,30,36,36,0,8.9,19.6,82.56,1008,19.200000000000003 +2013,2,21,8,30,52,52,0,8.8,19.900000000000002,70.36,1008,19.400000000000002 +2013,2,21,9,30,91,91,0,8.8,20.200000000000003,59.01,1008,19.700000000000003 +2013,2,21,10,30,202,198,6,8.6,20.5,49.24,1008,19.900000000000002 +2013,2,21,11,30,105,105,0,8.4,20.6,42.230000000000004,1007,19.900000000000002 +2013,2,21,12,30,199,194,6,8.1,20.700000000000003,39.5,1007,20 +2013,2,21,13,30,157,157,1,7.7,20.700000000000003,41.89,1006,19.900000000000002 +2013,2,21,14,30,272,256,25,7.2,20.700000000000003,48.660000000000004,1006,19.900000000000002 +2013,2,21,15,30,269,229,75,6.4,20.5,58.28,1006,19.700000000000003 +2013,2,21,16,30,212,141,204,5.300000000000001,20.1,69.55,1007,19.6 +2013,2,21,17,30,54,51,24,4.6000000000000005,19.8,81.71000000000001,1007,19.3 +2013,2,21,18,30,0,0,0,2.8000000000000003,18.900000000000002,94.57000000000001,1008,18.6 +2013,2,21,19,30,0,0,0,2.2,18.400000000000002,107.58,1009,17.8 +2013,2,21,20,30,0,0,0,2.5,17.900000000000002,120.66,1010,16.8 +2013,2,21,21,30,0,0,0,3.4000000000000004,17.5,133.53,1011,15.700000000000001 +2013,2,21,22,30,0,0,0,4.2,17.1,145.75,1011,14.600000000000001 +2013,2,21,23,30,0,0,0,4.7,16.8,156.07,1011,13.8 +2013,2,22,0,30,0,0,0,4.9,16.5,160.9,1011,13.4 +2013,2,22,1,30,0,0,0,4.9,16.2,156.54,1011,13.4 +2013,2,22,2,30,0,0,0,5,16,146.41,1011,13.5 +2013,2,22,3,30,0,0,0,5.5,16,134.24,1011,13.600000000000001 +2013,2,22,4,30,0,0,0,6.1000000000000005,16,121.38,1011,13.5 +2013,2,22,5,30,0,0,0,6.5,15.9,108.3,1012,13.3 +2013,2,22,6,30,0,0,0,6.6000000000000005,15.9,95.26,1013,13.3 +2013,2,22,7,30,33,33,0,6.5,16.2,82.35000000000001,1013,13.3 +2013,2,22,8,30,60,60,0,6.4,16.7,70.12,1014,13.3 +2013,2,22,9,30,185,180,10,6.2,17,58.730000000000004,1014,13.3 +2013,2,22,10,30,251,239,18,6,17.3,48.93,1013,13.4 +2013,2,22,11,30,185,182,4,5.9,17.5,41.88,1013,13.600000000000001 +2013,2,22,12,30,168,166,2,6,17.6,39.13,1013,13.3 +2013,2,22,13,30,236,228,10,6.1000000000000005,17.400000000000002,41.56,1012,12.8 +2013,2,22,14,30,267,252,23,6.2,17.2,48.38,1012,12.5 +2013,2,22,15,30,177,174,5,6.2,16.900000000000002,58.050000000000004,1012,12.600000000000001 +2013,2,22,16,30,97,97,0,6.4,16.6,69.36,1012,12.8 +2013,2,22,17,30,7,7,0,6.5,16.400000000000002,81.55,1012,13.100000000000001 +2013,2,22,18,30,0,0,0,6.7,16.1,94.42,1013,13.3 +2013,2,22,19,30,0,0,0,6.6000000000000005,15.9,107.44,1013,13.5 +2013,2,22,20,30,0,0,0,6.4,15.700000000000001,120.51,1014,13.600000000000001 +2013,2,22,21,30,0,0,0,6.4,15.4,133.37,1014,13.600000000000001 +2013,2,22,22,30,0,0,0,6.5,15,145.55,1014,13.4 +2013,2,22,23,30,0,0,0,6.7,14.8,155.78,1014,13.200000000000001 +2013,2,23,0,30,0,0,0,6.800000000000001,14.600000000000001,160.53,1014,13.100000000000001 +2013,2,23,1,30,0,0,0,6.9,14.4,156.21,1013,12.9 +2013,2,23,2,30,0,0,0,6.9,14.200000000000001,146.15,1013,12.8 +2013,2,23,3,30,0,0,0,6.800000000000001,14.100000000000001,134.03,1013,12.700000000000001 +2013,2,23,4,30,0,0,0,6.5,13.9,121.18,1013,12.600000000000001 +2013,2,23,5,30,0,0,0,6.2,13.8,108.10000000000001,1014,12.5 +2013,2,23,6,30,0,0,0,6,13.8,95.05,1015,12.4 +2013,2,23,7,30,15,15,0,5.9,14.100000000000001,82.13,1015,12.4 +2013,2,23,8,30,146,133,38,5.6000000000000005,14.600000000000001,69.87,1015,12.4 +2013,2,23,9,30,287,233,104,5.2,15.200000000000001,58.46,1015,12.5 +2013,2,23,10,30,449,314,204,4.5,15.700000000000001,48.61,1015,12.600000000000001 +2013,2,23,11,30,587,347,320,3.7,16,41.52,1014,12.8 +2013,2,23,12,30,650,345,391,3.3000000000000003,16.3,38.76,1014,13 +2013,2,23,13,30,744,203,719,3.1,16.6,41.22,1013,13 +2013,2,23,14,30,586,227,537,2.7,16.8,48.1,1013,12.9 +2013,2,23,15,30,204,195,17,2.3000000000000003,17,57.82,1013,13 +2013,2,23,16,30,262,119,402,2.2,16.900000000000002,69.17,1013,13.5 +2013,2,23,17,30,63,54,60,2.1,16.8,81.39,1013,13.5 +2013,2,23,18,30,0,0,0,2.2,16.6,94.27,1013,13.3 +2013,2,23,19,30,0,0,0,2.2,16.400000000000002,107.3,1014,13.3 +2013,2,23,20,30,0,0,0,2.2,16.2,120.37,1014,13.200000000000001 +2013,2,23,21,30,0,0,0,2.2,15.8,133.21,1014,12.9 +2013,2,23,22,30,0,0,0,2.3000000000000003,15.3,145.35,1014,12.8 +2013,2,23,23,30,0,0,0,2.6,14.9,155.5,1014,12.8 +2013,2,24,0,30,0,0,0,3.1,14.600000000000001,160.17000000000002,1014,13.100000000000001 +2013,2,24,1,30,0,0,0,3.7,14.5,155.88,1013,13.3 +2013,2,24,2,30,0,0,0,4.3,14.4,145.89000000000001,1012,13.5 +2013,2,24,3,30,0,0,0,4.800000000000001,14.4,133.8,1012,13.5 +2013,2,24,4,30,0,0,0,5.1000000000000005,14.3,120.97,1012,13.4 +2013,2,24,5,30,0,0,0,5.300000000000001,14.3,107.89,1013,13.200000000000001 +2013,2,24,6,30,0,0,0,5.5,14.700000000000001,94.84,1013,13 +2013,2,24,7,30,103,42,432,5.800000000000001,15.600000000000001,81.91,1013,12.9 +2013,2,24,8,30,237,129,311,6,16.3,69.63,1013,13 +2013,2,24,9,30,401,210,361,6,16.900000000000002,58.18,1013,13.100000000000001 +2013,2,24,10,30,381,312,103,5.9,17.3,48.29,1013,13.3 +2013,2,24,11,30,507,372,180,5.7,17.5,41.160000000000004,1012,13.5 +2013,2,24,12,30,564,388,224,5.5,17.7,38.39,1011,13.8 +2013,2,24,13,30,433,363,93,5.300000000000001,17.7,40.89,1010,14.100000000000001 +2013,2,24,14,30,210,205,7,5.300000000000001,17.6,47.82,1009,14.3 +2013,2,24,15,30,254,226,53,5.300000000000001,17.5,57.6,1009,14.700000000000001 +2013,2,24,16,30,43,43,0,5.4,17.3,68.98,1008,15.100000000000001 +2013,2,24,17,30,32,32,0,5.4,17.1,81.23,1008,15.600000000000001 +2013,2,24,18,30,0,0,0,5.4,16.900000000000002,94.13,1008,15.9 +2013,2,24,19,30,0,0,0,5.4,17.1,107.16,1007,16.3 +2013,2,24,20,30,0,0,0,5,17.3,120.23,1007,16.7 +2013,2,24,21,30,0,0,0,4.4,17.5,133.05,1006,17.1 +2013,2,24,22,30,0,0,0,3.8000000000000003,17.7,145.14000000000001,1005,17.5 +2013,2,24,23,30,0,0,0,3.4000000000000004,17.900000000000002,155.21,1004,17.8 +2013,2,25,0,30,0,0,0,3.4000000000000004,18.1,159.8,1004,18.1 +2013,2,25,1,30,0,0,0,3.7,18.2,155.55,1003,18.2 +2013,2,25,2,30,0,0,0,4,18.400000000000002,145.62,1002,18.400000000000002 +2013,2,25,3,30,0,0,0,4.1000000000000005,18.5,133.57,1002,18.5 +2013,2,25,4,30,0,0,0,3.9000000000000004,18.6,120.76,1002,18.6 +2013,2,25,5,30,0,0,0,3.5,18.7,107.69,1002,18.7 +2013,2,25,6,30,0,0,0,3,18.900000000000002,94.63,1003,18.900000000000002 +2013,2,25,7,30,45,45,0,2.8000000000000003,19.3,81.68,1003,19.200000000000003 +2013,2,25,8,30,83,83,0,3.1,19.700000000000003,69.38,1002,19.5 +2013,2,25,9,30,50,50,0,3.8000000000000003,20,57.9,1002,19.6 +2013,2,25,10,30,103,103,0,4.7,20.200000000000003,47.97,1001,19.400000000000002 +2013,2,25,11,30,588,356,307,6.1000000000000005,20.3,40.800000000000004,1001,18.3 +2013,2,25,12,30,422,368,68,7.7,20.3,38.02,1001,15.8 +2013,2,25,13,30,637,332,401,8.5,20.3,40.550000000000004,1001,11.8 +2013,2,25,14,30,738,93,954,9.1,20,47.54,1001,8.1 +2013,2,25,15,30,572,86,901,10,19.400000000000002,57.370000000000005,1002,6.4 +2013,2,25,16,30,356,72,784,10.4,18.6,68.79,1002,5.5 +2013,2,25,17,30,123,45,499,10.3,18,81.07000000000001,1003,6 +2013,2,25,18,30,0,0,0,10.700000000000001,16.5,93.98,1004,6.4 +2013,2,25,19,30,0,0,0,11.4,15.4,107.02,1006,5.9 +2013,2,25,20,30,0,0,0,12,14.200000000000001,120.08,1007,4.9 +2013,2,25,21,30,0,0,0,12.5,12.9,132.89000000000001,1008,4.2 +2013,2,25,22,30,0,0,0,12.4,11.700000000000001,144.94,1009,4.2 +2013,2,25,23,30,0,0,0,11.8,10.9,154.92000000000002,1009,4.6000000000000005 +2013,2,26,0,30,0,0,0,11.3,10.4,159.42000000000002,1009,5 +2013,2,26,1,30,0,0,0,10.8,10.100000000000001,155.21,1009,5.300000000000001 +2013,2,26,2,30,0,0,0,10.3,9.9,145.35,1009,5.5 +2013,2,26,3,30,0,0,0,9.9,9.8,133.34,1009,5.6000000000000005 +2013,2,26,4,30,0,0,0,9.5,9.700000000000001,120.54,1010,5.7 +2013,2,26,5,30,0,0,0,9.1,9.700000000000001,107.47,1011,5.800000000000001 +2013,2,26,6,30,0,0,0,8.8,9.8,94.41,1012,5.9 +2013,2,26,7,30,116,45,478,8.8,10.4,81.45,1013,6 +2013,2,26,8,30,347,72,771,8.5,11.100000000000001,69.12,1013,5.800000000000001 +2013,2,26,9,30,566,81,906,8,12,57.61,1014,5.800000000000001 +2013,2,26,10,30,740,87,968,7.6000000000000005,13,47.64,1013,6 +2013,2,26,11,30,731,225,664,7.300000000000001,14,40.44,1013,6.1000000000000005 +2013,2,26,12,30,705,298,514,7,15,37.65,1013,6.2 +2013,2,26,13,30,565,370,255,6.800000000000001,15.8,40.21,1012,6.300000000000001 +2013,2,26,14,30,550,286,389,6.5,16.5,47.27,1012,6.300000000000001 +2013,2,26,15,30,411,220,352,6.1000000000000005,16.8,57.15,1012,6.4 +2013,2,26,16,30,267,125,388,5.4,16.6,68.61,1012,6.5 +2013,2,26,17,30,54,54,2,5,16.3,80.91,1012,7.300000000000001 +2013,2,26,18,30,0,0,0,4,15.600000000000001,93.84,1013,7.2 +2013,2,26,19,30,0,0,0,3.3000000000000003,15.5,106.89,1014,6.9 +2013,2,26,20,30,0,0,0,2.4000000000000004,15.4,119.94,1014,6.2 +2013,2,26,21,30,0,0,0,1.8,15.3,132.72,1014,5.7 +2013,2,26,22,30,0,0,0,1.3,15.200000000000001,144.73,1014,5.300000000000001 +2013,2,26,23,30,0,0,0,1,15.100000000000001,154.63,1014,5.300000000000001 +2013,2,27,0,30,0,0,0,1,15,159.05,1014,5.5 +2013,2,27,1,30,0,0,0,1.3,14.9,154.87,1013,5.9 +2013,2,27,2,30,0,0,0,1.6,14.8,145.07,1014,6.300000000000001 +2013,2,27,3,30,0,0,0,1.8,14.700000000000001,133.1,1014,6.800000000000001 +2013,2,27,4,30,0,0,0,2,14.600000000000001,120.32000000000001,1014,7.2 +2013,2,27,5,30,0,0,0,2.2,14.700000000000001,107.26,1015,7.7 +2013,2,27,6,30,0,0,0,2.2,15.100000000000001,94.19,1015,8.200000000000001 +2013,2,27,7,30,75,55,132,2.3000000000000003,15.8,81.22,1016,9 +2013,2,27,8,30,342,71,751,2.7,16.7,68.87,1017,9.4 +2013,2,27,9,30,554,85,868,3.3000000000000003,17.5,57.32,1017,9.8 +2013,2,27,10,30,717,94,918,3.7,18,47.31,1017,10.700000000000001 +2013,2,27,11,30,675,284,510,4.2,18.5,40.07,1016,11.5 +2013,2,27,12,30,714,296,526,4.4,18.8,37.27,1016,12.200000000000001 +2013,2,27,13,30,813,116,907,4.6000000000000005,18.900000000000002,39.88,1016,12.600000000000001 +2013,2,27,14,30,707,115,869,4.800000000000001,18.7,46.99,1016,12.4 +2013,2,27,15,30,553,92,844,5.6000000000000005,18.2,56.92,1016,11.5 +2013,2,27,16,30,349,74,748,6.800000000000001,17.400000000000002,68.42,1017,10.200000000000001 +2013,2,27,17,30,110,45,404,7.300000000000001,16.8,80.75,1017,9 +2013,2,27,18,30,0,0,0,7.6000000000000005,15.200000000000001,93.69,1018,8.3 +2013,2,27,19,30,0,0,0,7.300000000000001,14.600000000000001,106.75,1019,8.200000000000001 +2013,2,27,20,30,0,0,0,7.1000000000000005,14,119.79,1020,8.1 +2013,2,27,21,30,0,0,0,7,13.5,132.56,1021,7.800000000000001 +2013,2,27,22,30,0,0,0,7,13.100000000000001,144.52,1021,7.300000000000001 +2013,2,27,23,30,0,0,0,7,12.600000000000001,154.33,1021,6.9 +2013,2,28,0,30,0,0,0,7.1000000000000005,12.200000000000001,158.67000000000002,1021,6.6000000000000005 +2013,2,28,1,30,0,0,0,7.300000000000001,11.8,154.52,1021,6.5 +2013,2,28,2,30,0,0,0,7.6000000000000005,11.3,144.79,1021,6.300000000000001 +2013,2,28,3,30,0,0,0,7.9,10.8,132.85,1022,5.6000000000000005 +2013,2,28,4,30,0,0,0,7.9,10.100000000000001,120.09,1023,5.2 +2013,2,28,5,30,0,0,0,7.5,9.600000000000001,107.04,1023,4.800000000000001 +2013,2,28,6,30,0,0,0,7.300000000000001,9.5,93.97,1024,4.7 +2013,2,28,7,30,77,56,130,7.4,9.9,80.98,1024,4.5 +2013,2,28,8,30,265,126,381,7.1000000000000005,10.3,68.61,1025,4 +2013,2,28,9,30,207,198,16,6.4,10.700000000000001,57.03,1024,3.8000000000000003 +2013,2,28,10,30,307,282,37,5.9,11.200000000000001,46.980000000000004,1024,3.8000000000000003 +2013,2,28,11,30,431,365,85,5.7,11.8,39.7,1024,3.9000000000000004 +2013,2,28,12,30,336,315,27,5.7,12.4,36.89,1023,4 +2013,2,28,13,30,394,349,58,5.5,13,39.54,1022,4 +2013,2,28,14,30,361,312,72,5.300000000000001,13.600000000000001,46.71,1021,4.1000000000000005 +2013,2,28,15,30,349,248,184,5.300000000000001,14,56.7,1021,4.1000000000000005 +2013,2,28,16,30,181,152,79,5.300000000000001,14,68.24,1021,4.2 +2013,2,28,17,30,97,54,265,5.2,13.8,80.59,1021,4.800000000000001 +2013,2,28,18,30,0,0,0,5.6000000000000005,12.8,93.55,1022,5.2 +2013,2,28,19,30,0,0,0,5.9,12.5,106.61,1023,5.4 +2013,2,28,20,30,0,0,0,5.800000000000001,12.100000000000001,119.65,1023,5.5 +2013,2,28,21,30,0,0,0,5.5,11.9,132.39000000000001,1023,5.5 +2013,2,28,22,30,0,0,0,5.300000000000001,11.8,144.3,1023,5.300000000000001 +2013,2,28,23,30,0,0,0,5.300000000000001,11.700000000000001,154.04,1023,5.300000000000001 +2013,3,1,0,30,0,0,0,5.4,11.5,158.29,1023,5.2 +2013,3,1,1,30,0,0,0,5.6000000000000005,11.4,154.17000000000002,1023,5.1000000000000005 +2013,3,1,2,30,0,0,0,5.800000000000001,11.100000000000001,144.5,1023,4.9 +2013,3,1,3,30,0,0,0,5.800000000000001,10.9,132.61,1023,4.800000000000001 +2013,3,1,4,30,0,0,0,5.6000000000000005,10.600000000000001,119.87,1023,4.7 +2013,3,1,5,30,0,0,0,5.4,10.4,106.82000000000001,1023,4.5 +2013,3,1,6,30,0,0,0,5.300000000000001,10.700000000000001,93.74,1024,4.4 +2013,3,1,7,30,130,43,544,5.300000000000001,11.5,80.75,1024,4.5 +2013,3,1,8,30,363,67,803,5.300000000000001,12.5,68.35000000000001,1025,4.4 +2013,3,1,9,30,578,78,911,5.6000000000000005,13.600000000000001,56.74,1025,4.1000000000000005 +2013,3,1,10,30,749,86,966,5.9,14.3,46.65,1025,3.6 +2013,3,1,11,30,853,93,983,6,14.9,39.33,1024,3.6 +2013,3,1,12,30,887,97,983,5.9,15.4,36.51,1023,3.7 +2013,3,1,13,30,849,98,970,5.800000000000001,15.9,39.2,1022,3.7 +2013,3,1,14,30,742,94,941,5.6000000000000005,16.2,46.44,1022,3.7 +2013,3,1,15,30,573,85,883,5.4,16.3,56.480000000000004,1022,3.8000000000000003 +2013,3,1,16,30,357,73,761,5.1000000000000005,15.9,68.06,1022,3.9000000000000004 +2013,3,1,17,30,130,47,496,5,15.600000000000001,80.44,1022,4.9 +2013,3,1,18,30,0,0,0,4.6000000000000005,14.5,93.41,1022,5.1000000000000005 +2013,3,1,19,30,0,0,0,4.5,14.200000000000001,106.47,1023,5.1000000000000005 +2013,3,1,20,30,0,0,0,4.9,14,119.51,1023,5.300000000000001 +2013,3,1,21,30,0,0,0,5.300000000000001,13.600000000000001,132.22,1024,5.7 +2013,3,1,22,30,0,0,0,5.1000000000000005,13,144.09,1024,5.800000000000001 +2013,3,1,23,30,0,0,0,4.3,12.3,153.74,1024,5.300000000000001 +2013,3,2,0,30,0,0,0,3.8000000000000003,11.700000000000001,157.91,1024,4.7 +2013,3,2,1,30,0,0,0,4.5,11.3,153.82,1024,4.800000000000001 +2013,3,2,2,30,0,0,0,5.7,10.9,144.21,1024,5.300000000000001 +2013,3,2,3,30,0,0,0,6.800000000000001,10.3,132.36,1024,5.7 +2013,3,2,4,30,0,0,0,7.4,9.600000000000001,119.63,1025,5.9 +2013,3,2,5,30,0,0,0,7.7,8.9,106.59,1025,5.9 +2013,3,2,6,30,0,0,0,7.800000000000001,8.700000000000001,93.51,1026,5.6000000000000005 +2013,3,2,7,30,129,48,489,7.9,8.9,80.51,1027,5.300000000000001 +2013,3,2,8,30,361,78,758,7.800000000000001,9.3,68.09,1027,4.4 +2013,3,2,9,30,579,91,883,7.7,9.9,56.45,1027,3.9000000000000004 +2013,3,2,10,30,751,98,945,7.800000000000001,10.5,46.32,1027,3.4000000000000004 +2013,3,2,11,30,866,104,980,8,11.100000000000001,38.95,1026,3 +2013,3,2,12,30,904,107,986,8.200000000000001,11.700000000000001,36.13,1025,2.5 +2013,3,2,13,30,867,103,982,8.3,12.100000000000001,38.86,1025,2.3000000000000003 +2013,3,2,14,30,754,96,951,8.3,12.3,46.160000000000004,1024,2.2 +2013,3,2,15,30,584,86,896,8.3,12.5,56.26,1024,2.2 +2013,3,2,16,30,368,72,787,8.1,12.3,67.88,1024,2.3000000000000003 +2013,3,2,17,30,135,45,533,8,12.100000000000001,80.29,1025,2.6 +2013,3,2,18,30,0,0,0,7.4,11,93.27,1026,3.1 +2013,3,2,19,30,0,0,0,6.800000000000001,10.600000000000001,106.34,1026,3.5 +2013,3,2,20,30,0,0,0,6.2,10.200000000000001,119.36,1026,3.6 +2013,3,2,21,30,0,0,0,5.4,9.9,132.06,1026,3.5 +2013,3,2,22,30,0,0,0,4.7,9.700000000000001,143.87,1026,3.1 +2013,3,2,23,30,0,0,0,4.2,9.5,153.43,1025,2.6 +2013,3,3,0,30,0,0,0,3.8000000000000003,9.4,157.53,1025,2.2 +2013,3,3,1,30,0,0,0,3.6,9.3,153.46,1025,1.9000000000000001 +2013,3,3,2,30,0,0,0,3.6,9.200000000000001,143.92000000000002,1025,1.8 +2013,3,3,3,30,0,0,0,3.4000000000000004,9.1,132.1,1025,1.8 +2013,3,3,4,30,0,0,0,3.1,9.1,119.4,1025,1.6 +2013,3,3,5,30,0,0,0,2.6,9.1,106.36,1025,1.2000000000000002 +2013,3,3,6,30,0,0,0,2.1,9.5,93.28,1026,0.7000000000000001 +2013,3,3,7,30,138,41,575,1.7000000000000002,10.200000000000001,80.27,1026,0.7000000000000001 +2013,3,3,8,30,369,63,812,1.2000000000000002,11.200000000000001,67.83,1026,0 +2013,3,3,9,30,582,73,914,1,12.100000000000001,56.15,1026,-0.7000000000000001 +2013,3,3,10,30,751,80,966,1.2000000000000002,12.9,45.980000000000004,1025,-0.5 +2013,3,3,11,30,859,86,989,1.8,13.600000000000001,38.58,1024,0.6000000000000001 +2013,3,3,12,30,892,89,990,2.3000000000000003,14.100000000000001,35.75,1023,1.9000000000000001 +2013,3,3,13,30,856,89,980,2.8000000000000003,14.5,38.52,1022,2.9000000000000004 +2013,3,3,14,30,748,86,951,3.1,14.8,45.89,1022,3.8000000000000003 +2013,3,3,15,30,579,74,905,3.6,14.9,56.04,1021,4.5 +2013,3,3,16,30,367,63,801,3.9000000000000004,14.700000000000001,67.7,1020,5.300000000000001 +2013,3,3,17,30,138,41,567,4.1000000000000005,14.5,80.13,1020,6.300000000000001 +2013,3,3,18,30,0,0,0,4.800000000000001,14.100000000000001,93.13,1020,7.1000000000000005 +2013,3,3,19,30,0,0,0,5.5,14.4,106.2,1020,7.9 +2013,3,3,20,30,0,0,0,6.2,14.700000000000001,119.21000000000001,1020,8.8 +2013,3,3,21,30,0,0,0,6.7,15,131.89000000000001,1019,9.700000000000001 +2013,3,3,22,30,0,0,0,7.2,15.3,143.65,1018,10.5 +2013,3,3,23,30,0,0,0,7.5,15.600000000000001,153.13,1017,11.100000000000001 +2013,3,4,0,30,0,0,0,7.7,15.9,157.15,1017,11.700000000000001 +2013,3,4,1,30,0,0,0,7.800000000000001,16.1,153.11,1016,12.100000000000001 +2013,3,4,2,30,0,0,0,7.9,16.3,143.62,1015,12.4 +2013,3,4,3,30,0,0,0,7.9,16.400000000000002,131.84,1015,12.700000000000001 +2013,3,4,4,30,0,0,0,7.800000000000001,16.5,119.16,1015,13.100000000000001 +2013,3,4,5,30,0,0,0,7.6000000000000005,16.6,106.13,1014,13.4 +2013,3,4,6,30,0,0,0,7.6000000000000005,17,93.04,1014,13.8 +2013,3,4,7,30,132,52,460,7.7,17.7,80.03,1014,14.3 +2013,3,4,8,30,355,83,713,7.7,18.400000000000002,67.56,1014,14.8 +2013,3,4,9,30,566,97,835,7.6000000000000005,18.900000000000002,55.86,1014,15.100000000000001 +2013,3,4,10,30,729,112,883,7.6000000000000005,19.200000000000003,45.64,1014,15.4 +2013,3,4,11,30,830,123,901,7.5,19.400000000000002,38.2,1013,15.5 +2013,3,4,12,30,644,388,314,7.2,19.400000000000002,35.36,1013,15.700000000000001 +2013,3,4,13,30,649,351,379,7,19.400000000000002,38.18,1012,15.9 +2013,3,4,14,30,555,307,355,6.800000000000001,19.200000000000003,45.62,1011,16 +2013,3,4,15,30,380,251,229,6.5,18.900000000000002,55.83,1011,16.1 +2013,3,4,16,30,345,97,651,5.9,18.5,67.52,1011,16.3 +2013,3,4,17,30,125,62,364,5.6000000000000005,18.3,79.98,1011,16.5 +2013,3,4,18,30,0,0,0,5.6000000000000005,17.7,92.99,1011,16.6 +2013,3,4,19,30,0,0,0,5.800000000000001,17.6,106.06,1011,16.6 +2013,3,4,20,30,0,0,0,6.1000000000000005,17.6,119.07000000000001,1011,16.7 +2013,3,4,21,30,0,0,0,6.4,17.7,131.72,1011,16.8 +2013,3,4,22,30,0,0,0,6.7,17.7,143.43,1010,16.8 +2013,3,4,23,30,0,0,0,6.800000000000001,17.8,152.82,1010,16.7 +2013,3,5,0,30,0,0,0,6.9,17.8,156.76,1010,16.7 +2013,3,5,1,30,0,0,0,7.300000000000001,17.900000000000002,152.74,1011,16.6 +2013,3,5,2,30,0,0,0,7.300000000000001,18,143.31,1011,16.5 +2013,3,5,3,30,0,0,0,6.4,17.900000000000002,131.58,1012,16.6 +2013,3,5,4,30,0,0,0,5,17.7,118.92,1013,16.7 +2013,3,5,5,30,0,0,0,4.3,17.6,105.9,1015,16.7 +2013,3,5,6,30,0,0,0,4.3,17.5,92.81,1017,16.7 +2013,3,5,7,30,67,63,23,4.800000000000001,17.400000000000002,79.78,1018,16.400000000000002 +2013,3,5,8,30,155,145,24,6.1000000000000005,17.2,67.29,1019,15.100000000000001 +2013,3,5,9,30,215,206,17,7.300000000000001,17.1,55.56,1020,13.100000000000001 +2013,3,5,10,30,498,334,233,7.5,17.3,45.300000000000004,1020,11.4 +2013,3,5,11,30,642,358,360,6.800000000000001,17.6,37.82,1020,10.600000000000001 +2013,3,5,12,30,760,294,569,6,17.900000000000002,34.980000000000004,1020,10.3 +2013,3,5,13,30,658,351,389,5.5,18.2,37.85,1020,10.100000000000001 +2013,3,5,14,30,636,222,589,5.2,18.3,45.35,1021,9.9 +2013,3,5,15,30,504,148,631,5,18.3,55.61,1021,9.600000000000001 +2013,3,5,16,30,323,97,587,4.800000000000001,17.900000000000002,67.35,1021,9.3 +2013,3,5,17,30,110,57,300,4.800000000000001,17.6,79.83,1022,9.200000000000001 +2013,3,5,18,30,0,0,0,5.9,16,92.85000000000001,1022,8.8 +2013,3,5,19,30,0,0,0,6.6000000000000005,15.200000000000001,105.93,1023,8.5 +2013,3,5,20,30,0,0,0,6.9,14.4,118.92,1024,8.4 +2013,3,5,21,30,0,0,0,7.2,13.600000000000001,131.54,1025,8.1 +2013,3,5,22,30,0,0,0,7.5,12.9,143.21,1025,7.1000000000000005 +2013,3,5,23,30,0,0,0,7.800000000000001,12.3,152.51,1025,5.800000000000001 +2013,3,6,0,30,0,0,0,7.9,11.700000000000001,156.37,1026,5 +2013,3,6,1,30,0,0,0,8,11.200000000000001,152.38,1026,4.7 +2013,3,6,2,30,0,0,0,7.9,10.700000000000001,143.01,1026,4.5 +2013,3,6,3,30,0,0,0,7.7,10.3,131.31,1026,4.5 +2013,3,6,4,30,0,0,0,7.4,9.9,118.67,1027,4.6000000000000005 +2013,3,6,5,30,0,0,0,7.1000000000000005,9.700000000000001,105.66,1028,4.7 +2013,3,6,6,30,0,0,0,7,9.9,92.57000000000001,1028,4.800000000000001 +2013,3,6,7,30,157,45,617,7.1000000000000005,10.8,79.53,1029,4.9 +2013,3,6,8,30,397,67,844,6.800000000000001,11.600000000000001,67.02,1029,4.5 +2013,3,6,9,30,515,141,656,6,12.3,55.26,1029,4.1000000000000005 +2013,3,6,10,30,790,88,991,4.9,12.8,44.96,1029,4 +2013,3,6,11,30,772,227,686,3.7,13.3,37.43,1028,3.9000000000000004 +2013,3,6,12,30,802,248,673,2.7,13.700000000000001,34.59,1028,3.4000000000000004 +2013,3,6,13,30,738,269,591,1.8,14,37.51,1027,2.9000000000000004 +2013,3,6,14,30,625,237,550,1.3,14.200000000000001,45.08,1026,2.5 +2013,3,6,15,30,542,105,769,1.1,14.200000000000001,55.4,1025,2.4000000000000004 +2013,3,6,16,30,381,77,782,1.1,14,67.17,1025,2.8000000000000003 +2013,3,6,17,30,147,50,541,1.2000000000000002,13.9,79.68,1025,4.4 +2013,3,6,18,30,0,0,0,1.2000000000000002,13.200000000000001,92.71000000000001,1025,4.4 +2013,3,6,19,30,0,0,0,1.6,13.200000000000001,105.79,1025,4.4 +2013,3,6,20,30,0,0,0,2,13.200000000000001,118.78,1025,4.9 +2013,3,6,21,30,0,0,0,2,13.200000000000001,131.37,1025,5.2 +2013,3,6,22,30,0,0,0,1.9000000000000001,13.200000000000001,142.98,1025,5.5 +2013,3,6,23,30,0,0,0,2.1,13.200000000000001,152.20000000000002,1024,5.9 +2013,3,7,0,30,0,0,0,2.3000000000000003,13.200000000000001,155.98,1024,6.300000000000001 +2013,3,7,1,30,0,0,0,2.5,13.3,152.01,1023,6.6000000000000005 +2013,3,7,2,30,0,0,0,2.7,13.3,142.70000000000002,1023,7 +2013,3,7,3,30,0,0,0,2.7,13.3,131.04,1023,7.2 +2013,3,7,4,30,0,0,0,2.7,13.3,118.42,1023,7.2 +2013,3,7,5,30,0,0,0,2.8000000000000003,13.200000000000001,105.42,1024,7.300000000000001 +2013,3,7,6,30,0,0,0,3.2,13.600000000000001,92.33,1024,7.5 +2013,3,7,7,30,147,52,511,3.6,14.600000000000001,79.28,1025,8.4 +2013,3,7,8,30,346,80,673,3.9000000000000004,15.4,66.75,1025,8.3 +2013,3,7,9,30,499,169,575,4.2,15.9,54.96,1025,8.4 +2013,3,7,10,30,600,281,448,4.2,16.3,44.62,1025,8.700000000000001 +2013,3,7,11,30,733,280,567,4.3,16.5,37.050000000000004,1025,9 +2013,3,7,12,30,767,298,567,4.5,16.5,34.2,1025,9.200000000000001 +2013,3,7,13,30,677,330,434,4.5,16.5,37.17,1024,9.5 +2013,3,7,14,30,663,203,649,4.6000000000000005,16.5,44.81,1023,9.700000000000001 +2013,3,7,15,30,506,154,616,4.6000000000000005,16.3,55.19,1023,9.9 +2013,3,7,16,30,335,89,631,4.7,16,67,1023,10 +2013,3,7,17,30,100,64,199,4.800000000000001,15.700000000000001,79.54,1023,10.4 +2013,3,7,18,30,0,0,0,4.5,15,92.58,1024,10.700000000000001 +2013,3,7,19,30,0,0,0,4.6000000000000005,14.9,105.65,1024,10.9 +2013,3,7,20,30,0,0,0,5,14.9,118.63,1023,11.200000000000001 +2013,3,7,21,30,0,0,0,5,14.9,131.2,1023,11.600000000000001 +2013,3,7,22,30,0,0,0,4.9,15.100000000000001,142.75,1023,12.100000000000001 +2013,3,7,23,30,0,0,0,4.6000000000000005,15.200000000000001,151.88,1022,12.5 +2013,3,8,0,30,0,0,0,4.1000000000000005,15.200000000000001,155.59,1022,13 +2013,3,8,1,30,0,0,0,3.6,15.3,151.64000000000001,1022,13.4 +2013,3,8,2,30,0,0,0,3.3000000000000003,15.4,142.38,1022,13.8 +2013,3,8,3,30,0,0,0,3.3000000000000003,15.5,130.77,1022,14.100000000000001 +2013,3,8,4,30,0,0,0,3.6,15.600000000000001,118.17,1022,14.3 +2013,3,8,5,30,0,0,0,3.6,15.600000000000001,105.18,1022,14.5 +2013,3,8,6,30,0,0,0,3.8000000000000003,16.1,92.09,1022,14.700000000000001 +2013,3,8,7,30,103,68,183,4.4,16.8,79.03,1023,15 +2013,3,8,8,30,245,164,201,4.9,17.3,66.48,1023,15.3 +2013,3,8,9,30,420,249,296,4.6000000000000005,17.8,54.65,1023,15.4 +2013,3,8,10,30,555,322,327,4.4,18,44.27,1024,15.5 +2013,3,8,11,30,567,398,211,4.5,18.2,36.67,1023,15.5 +2013,3,8,12,30,576,418,191,4.7,18.2,33.81,1022,15.5 +2013,3,8,13,30,454,384,87,5,18,36.83,1022,15.4 +2013,3,8,14,30,631,241,547,5.1000000000000005,17.8,44.54,1021,15.3 +2013,3,8,15,30,497,172,565,5.2,17.400000000000002,54.980000000000004,1021,15.200000000000001 +2013,3,8,16,30,298,130,425,5.300000000000001,17.1,66.83,1021,15.200000000000001 +2013,3,8,17,30,87,68,104,5.2,17,79.39,1021,15.3 +2013,3,8,18,30,0,0,0,5.5,16.6,92.44,1021,15.4 +2013,3,8,19,30,0,0,0,5.4,16.6,105.52,1021,15.5 +2013,3,8,20,30,0,0,0,5.7,16.7,118.48,1020,15.5 +2013,3,8,21,30,0,0,0,5.9,16.8,131.02,1020,15.600000000000001 +2013,3,8,22,30,0,0,0,5.800000000000001,16.8,142.52,1019,15.700000000000001 +2013,3,8,23,30,0,0,0,5.5,16.900000000000002,151.57,1018,15.8 +2013,3,9,0,30,0,0,0,5,16.900000000000002,155.20000000000002,1018,16 +2013,3,9,1,30,0,0,0,4.6000000000000005,17,151.27,1017,16.1 +2013,3,9,2,30,0,0,0,4.6000000000000005,17.2,142.07,1017,16.3 +2013,3,9,3,30,0,0,0,5,17.400000000000002,130.49,1017,16.400000000000002 +2013,3,9,4,30,0,0,0,5.4,17.5,117.92,1016,16.5 +2013,3,9,5,30,0,0,0,5.800000000000001,17.6,104.93,1016,16.6 +2013,3,9,6,30,0,0,0,6.2,17.8,91.84,1016,16.7 +2013,3,9,7,30,30,30,0,6.4,18.2,78.78,1016,16.8 +2013,3,9,8,30,70,70,0,6,18.6,66.21000000000001,1016,17 +2013,3,9,9,30,192,188,7,5.4,18.900000000000002,54.35,1016,17.1 +2013,3,9,10,30,146,146,0,5.1000000000000005,19.1,43.93,1016,17.1 +2013,3,9,11,30,290,277,16,5.1000000000000005,19.200000000000003,36.28,1016,17.1 +2013,3,9,12,30,285,273,15,5.4,19.200000000000003,33.42,1014,17.1 +2013,3,9,13,30,167,165,3,5.7,19.200000000000003,36.49,1013,17.1 +2013,3,9,14,30,123,123,0,5.9,19.1,44.28,1013,17.1 +2013,3,9,15,30,127,127,0,5.800000000000001,18.900000000000002,54.77,1012,17 +2013,3,9,16,30,187,161,65,5.7,18.6,66.66,1012,17.1 +2013,3,9,17,30,81,69,67,5.6000000000000005,18.400000000000002,79.25,1012,17.1 +2013,3,9,18,30,0,0,0,6.4,18.2,92.3,1012,17.1 +2013,3,9,19,30,0,0,0,7,18.2,105.38,1012,17 +2013,3,9,20,30,0,0,0,7.2,18.2,118.33,1011,17 +2013,3,9,21,30,0,0,0,7.1000000000000005,18.2,130.84,1011,17.1 +2013,3,9,22,30,0,0,0,6.800000000000001,18.2,142.29,1010,17.2 +2013,3,9,23,30,0,0,0,6.800000000000001,18.2,151.25,1009,17.400000000000002 +2013,3,10,0,30,0,0,0,7.1000000000000005,18.3,154.81,1009,17.5 +2013,3,10,1,30,0,0,0,7.300000000000001,18.3,150.89000000000001,1008,17.6 +2013,3,10,2,30,0,0,0,7.4,18.400000000000002,141.75,1007,17.6 +2013,3,10,3,30,0,0,0,7.2,18.5,130.21,1008,17.5 +2013,3,10,4,30,0,0,0,6.7,18.5,117.66,1008,17.5 +2013,3,10,5,30,0,0,0,6.2,18.6,104.69,1009,17.5 +2013,3,10,6,30,0,0,0,6,18.7,91.59,1009,17.6 +2013,3,10,7,30,55,55,0,5.7,18.8,78.53,1010,17.8 +2013,3,10,8,30,171,158,33,5.300000000000001,18.8,65.93,1010,18 +2013,3,10,9,30,300,258,72,4.4,18.6,54.050000000000004,1011,17.900000000000002 +2013,3,10,10,30,30,30,0,3.4000000000000004,18.3,43.58,1011,17.5 +2013,3,10,11,30,37,37,0,2.7,18.2,35.89,1011,16.8 +2013,3,10,12,30,122,122,0,2.7,18,33.03,1010,16.1 +2013,3,10,13,30,98,98,0,3.7,17.7,36.160000000000004,1010,15.4 +2013,3,10,14,30,233,226,10,5.2,17.400000000000002,44.01,1010,14.5 +2013,3,10,15,30,56,56,0,6.300000000000001,17.2,54.57,1011,13.700000000000001 +2013,3,10,16,30,59,59,0,6.5,16.900000000000002,66.49,1011,13.200000000000001 +2013,3,10,17,30,51,51,0,6.5,16.7,79.10000000000001,1012,13.100000000000001 +2013,3,10,18,30,0,0,0,6.300000000000001,16.400000000000002,92.17,1013,12.9 +2013,3,10,19,30,0,0,0,6.6000000000000005,16.1,105.25,1015,12.3 +2013,3,10,20,30,0,0,0,7.4,15.700000000000001,118.19,1015,11.4 +2013,3,10,21,30,0,0,0,8.4,14.9,130.66,1016,9.700000000000001 +2013,3,10,22,30,0,0,0,8.8,13.9,142.06,1017,8.3 +2013,3,10,23,30,0,0,0,8.6,13.100000000000001,150.93,1017,7.5 +2013,3,11,0,30,0,0,0,8.1,12.4,154.42000000000002,1017,7.1000000000000005 +2013,3,11,1,30,0,0,0,7.4,11.8,150.52,1017,6.9 +2013,3,11,2,30,0,0,0,6.800000000000001,11.3,141.42000000000002,1017,6.9 +2013,3,11,3,30,0,0,0,6.2,11,129.93,1018,6.800000000000001 +2013,3,11,4,30,0,0,0,5.800000000000001,10.9,117.4,1018,6.4 +2013,3,11,5,30,0,0,0,5.800000000000001,10.8,104.44,1019,6.1000000000000005 +2013,3,11,6,30,0,0,0,6.2,11,91.35000000000001,1019,5.9 +2013,3,11,7,30,164,55,540,6.5,11.5,78.27,1020,5.7 +2013,3,11,8,30,400,78,783,6.6000000000000005,12,65.66,1020,5.2 +2013,3,11,9,30,623,87,906,6.6000000000000005,12.600000000000001,53.74,1020,4.800000000000001 +2013,3,11,10,30,802,93,973,6.5,13.3,43.230000000000004,1020,4.4 +2013,3,11,11,30,910,97,998,6.5,14,35.5,1019,4.1000000000000005 +2013,3,11,12,30,945,100,1003,6.5,14.700000000000001,32.63,1018,3.9000000000000004 +2013,3,11,13,30,904,99,993,6.6000000000000005,15.3,35.82,1017,3.8000000000000003 +2013,3,11,14,30,792,96,964,6.6000000000000005,15.700000000000001,43.75,1016,3.9000000000000004 +2013,3,11,15,30,618,89,908,6.5,15.8,54.36,1016,4 +2013,3,11,16,30,397,76,801,6.2,15.600000000000001,66.33,1016,4.1000000000000005 +2013,3,11,17,30,160,51,567,6,15.3,78.96000000000001,1016,4.6000000000000005 +2013,3,11,18,30,0,0,0,5.4,14.100000000000001,92.04,1017,5.1000000000000005 +2013,3,11,19,30,0,0,0,5.1000000000000005,13.700000000000001,105.11,1018,5.2 +2013,3,11,20,30,0,0,0,4.800000000000001,13.4,118.04,1019,5.2 +2013,3,11,21,30,0,0,0,4.7,13.100000000000001,130.48,1019,5.2 +2013,3,11,22,30,0,0,0,4.5,12.8,141.82,1019,5 +2013,3,11,23,30,0,0,0,4.3,12.5,150.61,1019,4.800000000000001 +2013,3,12,0,30,0,0,0,4,12.3,154.02,1019,4.5 +2013,3,12,1,30,0,0,0,3.9000000000000004,12.100000000000001,150.14000000000001,1019,4.2 +2013,3,12,2,30,0,0,0,3.9000000000000004,11.9,141.1,1019,4.1000000000000005 +2013,3,12,3,30,0,0,0,3.8000000000000003,11.8,129.65,1019,4.1000000000000005 +2013,3,12,4,30,0,0,0,3.6,11.700000000000001,117.14,1020,4.1000000000000005 +2013,3,12,5,30,0,0,0,3.4000000000000004,11.700000000000001,104.19,1020,4.1000000000000005 +2013,3,12,6,30,0,0,0,3.2,12.100000000000001,91.10000000000001,1021,4.3 +2013,3,12,7,30,177,51,604,2.9000000000000004,13,78.01,1022,4.800000000000001 +2013,3,12,8,30,411,73,811,2.6,14,65.38,1022,4.6000000000000005 +2013,3,12,9,30,628,84,913,2.4000000000000004,14.700000000000001,53.43,1023,4.2 +2013,3,12,10,30,797,92,962,2,15.200000000000001,42.89,1023,4.3 +2013,3,12,11,30,904,97,987,1.7000000000000002,15.600000000000001,35.12,1023,4.4 +2013,3,12,12,30,939,98,994,1.5,15.8,32.24,1023,4.5 +2013,3,12,13,30,895,96,981,1.5,16.1,35.49,1022,4.6000000000000005 +2013,3,12,14,30,784,92,954,1.7000000000000002,16.2,43.49,1022,5 +2013,3,12,15,30,612,85,900,1.8,16.1,54.160000000000004,1022,5.4 +2013,3,12,16,30,394,72,797,2,15.8,66.16,1022,5.800000000000001 +2013,3,12,17,30,160,49,570,2.1,15.5,78.82000000000001,1022,7 +2013,3,12,18,30,0,0,0,2.3000000000000003,14.3,91.9,1022,7.2 +2013,3,12,19,30,0,0,0,2.4000000000000004,14.200000000000001,104.98,1023,7.300000000000001 +2013,3,12,20,30,0,0,0,2.3000000000000003,14.200000000000001,117.89,1024,7.4 +2013,3,12,21,30,0,0,0,2.2,14.3,130.3,1024,7.4 +2013,3,12,22,30,0,0,0,2.1,14.3,141.59,1024,7.5 +2013,3,12,23,30,0,0,0,2,14.4,150.28,1024,7.7 +2013,3,13,0,30,0,0,0,1.6,14.5,153.63,1025,7.9 +2013,3,13,1,30,0,0,0,1.4000000000000001,14.3,149.76,1025,8 +2013,3,13,2,30,0,0,0,1.9000000000000001,13.9,140.77,1025,8.3 +2013,3,13,3,30,0,0,0,2.8000000000000003,13.4,129.36,1025,9 +2013,3,13,4,30,0,0,0,3.5,13.100000000000001,116.88,1026,9.700000000000001 +2013,3,13,5,30,0,0,0,3.8000000000000003,12.8,103.94,1027,10.100000000000001 +2013,3,13,6,30,0,0,0,4,13.100000000000001,90.84,1028,10.3 +2013,3,13,7,30,168,60,508,4.3,14,77.76,1029,10.4 +2013,3,13,8,30,397,88,734,4.7,15.200000000000001,65.11,1030,10.4 +2013,3,13,9,30,615,96,866,5.2,16.3,53.13,1030,10 +2013,3,13,10,30,783,104,921,5.4,17,42.54,1030,9.4 +2013,3,13,11,30,888,108,948,5.300000000000001,17.3,34.730000000000004,1030,8.9 +2013,3,13,12,30,922,109,957,5,17.5,31.85,1029,8.700000000000001 +2013,3,13,13,30,883,106,950,4.5,17.5,35.160000000000004,1029,8.5 +2013,3,13,14,30,773,102,921,4.1000000000000005,17.5,43.24,1028,8.3 +2013,3,13,15,30,604,94,866,3.7,17.5,53.96,1028,8.4 +2013,3,13,16,30,388,79,759,3.4000000000000004,17.2,66,1028,8.6 +2013,3,13,17,30,157,53,532,3.2,16.900000000000002,78.67,1028,9.600000000000001 +2013,3,13,18,30,0,0,0,3,15.8,91.77,1028,9.700000000000001 +2013,3,13,19,30,0,0,0,2.8000000000000003,15.5,104.84,1028,10 +2013,3,13,20,30,0,0,0,2.6,15.4,117.74000000000001,1029,10.3 +2013,3,13,21,30,0,0,0,2.6,15.3,130.12,1029,10.5 +2013,3,13,22,30,0,0,0,2.6,15.200000000000001,141.35,1028,10.700000000000001 +2013,3,13,23,30,0,0,0,2.5,15,149.96,1028,11 +2013,3,14,0,30,0,0,0,2.5,14.9,153.23,1028,11.3 +2013,3,14,1,30,0,0,0,2.4000000000000004,14.8,149.38,1028,11.700000000000001 +2013,3,14,2,30,0,0,0,2.5,14.700000000000001,140.44,1028,11.9 +2013,3,14,3,30,0,0,0,2.6,14.700000000000001,129.07,1028,12 +2013,3,14,4,30,0,0,0,2.8000000000000003,14.700000000000001,116.62,1028,11.9 +2013,3,14,5,30,0,0,0,3.1,14.700000000000001,103.68,1028,11.600000000000001 +2013,3,14,6,30,0,0,0,3.4000000000000004,15.200000000000001,90.01,1029,11.4 +2013,3,14,7,30,175,58,542,3.9000000000000004,16.2,77.5,1030,11.3 +2013,3,14,8,30,406,84,757,4.3,17,64.83,1030,10.700000000000001 +2013,3,14,9,30,623,90,883,4.4,17.400000000000002,52.82,1030,10 +2013,3,14,10,30,790,98,935,4.4,17.7,42.19,1030,9.8 +2013,3,14,11,30,892,103,956,4.1000000000000005,17.8,34.33,1029,9.8 +2013,3,14,12,30,927,103,966,3.8000000000000003,17.900000000000002,31.46,1029,9.700000000000001 +2013,3,14,13,30,887,102,957,3.5,17.8,34.82,1028,9.700000000000001 +2013,3,14,14,30,777,97,929,3.3000000000000003,17.8,42.980000000000004,1027,9.700000000000001 +2013,3,14,15,30,608,85,884,3.2,17.6,53.76,1027,9.600000000000001 +2013,3,14,16,30,393,72,784,3,17.2,65.84,1027,9.600000000000001 +2013,3,14,17,30,161,49,565,2.9000000000000004,16.900000000000002,78.54,1027,9.8 +2013,3,14,18,30,0,0,0,3,15.8,91.64,1027,10.100000000000001 +2013,3,14,19,30,0,0,0,3.3000000000000003,15.700000000000001,104.71000000000001,1027,10.100000000000001 +2013,3,14,20,30,0,0,0,3.6,15.600000000000001,117.59,1027,10.3 +2013,3,14,21,30,0,0,0,3.9000000000000004,15.600000000000001,129.94,1027,10.600000000000001 +2013,3,14,22,30,0,0,0,4.1000000000000005,15.5,141.11,1026,11 +2013,3,14,23,30,0,0,0,4.2,15.5,149.63,1026,11.4 +2013,3,15,0,30,0,0,0,4.3,15.4,152.83,1025,11.9 +2013,3,15,1,30,0,0,0,4.3,15.4,148.99,1025,12.4 +2013,3,15,2,30,0,0,0,4.1000000000000005,15.4,140.11,1024,12.8 +2013,3,15,3,30,0,0,0,3.8000000000000003,15.3,128.78,1024,13.200000000000001 +2013,3,15,4,30,0,0,0,3.6,15.3,116.35000000000001,1024,13.600000000000001 +2013,3,15,5,30,0,0,0,3.5,15.4,103.43,1024,14 +2013,3,15,6,30,0,0,0,3.4000000000000004,16.2,89.81,1025,14.3 +2013,3,15,7,30,181,54,576,3.4000000000000004,17.3,77.24,1025,14.8 +2013,3,15,8,30,411,76,780,3.4000000000000004,18.1,64.55,1025,15.100000000000001 +2013,3,15,9,30,623,88,878,3.4000000000000004,18.6,52.51,1025,15.200000000000001 +2013,3,15,10,30,786,97,925,3.5,19,41.84,1025,15.200000000000001 +2013,3,15,11,30,889,102,949,3.7,19.200000000000003,33.94,1024,15.200000000000001 +2013,3,15,12,30,924,100,962,3.9000000000000004,19.3,31.060000000000002,1023,15.200000000000001 +2013,3,15,13,30,886,99,955,4.1000000000000005,19.3,34.49,1022,15.200000000000001 +2013,3,15,14,30,776,95,928,4.2,19.200000000000003,42.730000000000004,1021,15.3 +2013,3,15,15,30,607,85,880,4.4,19,53.57,1020,15.3 +2013,3,15,16,30,395,72,784,4.4,18.6,65.68,1020,15.3 +2013,3,15,17,30,163,49,564,4.4,18.3,78.4,1020,15.5 +2013,3,15,18,30,0,0,0,4.3,17.400000000000002,91.51,1020,15.700000000000001 +2013,3,15,19,30,0,0,0,4.4,17.2,104.57000000000001,1020,15.8 +2013,3,15,20,30,0,0,0,4.4,17.1,117.44,1020,15.8 +2013,3,15,21,30,0,0,0,4.5,17,129.75,1019,15.8 +2013,3,15,22,30,0,0,0,4.7,17,140.86,1019,15.8 +2013,3,15,23,30,0,0,0,5.1000000000000005,17.1,149.31,1018,15.700000000000001 +2013,3,16,0,30,0,0,0,5.5,17.2,152.44,1018,15.700000000000001 +2013,3,16,1,30,0,0,0,5.9,17.3,148.61,1017,15.700000000000001 +2013,3,16,2,30,0,0,0,6.300000000000001,17.3,139.78,1016,15.600000000000001 +2013,3,16,3,30,0,0,0,6.1000000000000005,17.3,128.49,1016,15.4 +2013,3,16,4,30,0,0,0,5.5,17,116.08,1016,15.5 +2013,3,16,5,30,0,0,0,4.800000000000001,17,103.17,1016,15.700000000000001 +2013,3,16,6,30,0,0,0,4.5,17.5,89.60000000000001,1016,15.9 +2013,3,16,7,30,186,57,575,4.5,18.5,76.98,1016,16.2 +2013,3,16,8,30,418,81,776,4.6000000000000005,19.1,64.27,1017,16.400000000000002 +2013,3,16,9,30,629,91,877,4.7,19.6,52.21,1017,16.3 +2013,3,16,10,30,793,102,922,4.7,19.900000000000002,41.49,1016,16.3 +2013,3,16,11,30,896,109,944,4.7,20,33.55,1016,16.400000000000002 +2013,3,16,12,30,928,107,955,4.6000000000000005,20,30.67,1015,16.5 +2013,3,16,13,30,886,108,941,4.6000000000000005,19.900000000000002,34.17,1014,16.5 +2013,3,16,14,30,774,106,907,4.6000000000000005,19.8,42.480000000000004,1013,16.5 +2013,3,16,15,30,556,133,708,4.7,19.5,53.38,1013,16.5 +2013,3,16,16,30,324,132,462,4.800000000000001,19.200000000000003,65.53,1013,16.6 +2013,3,16,17,30,144,56,431,4.9,19,78.26,1013,16.7 +2013,3,16,18,30,0,0,0,5,18.400000000000002,91.38,1013,16.8 +2013,3,16,19,30,0,0,0,5.2,18.3,104.44,1013,16.900000000000002 +2013,3,16,20,30,0,0,0,5.300000000000001,18.3,117.28,1014,17 +2013,3,16,21,30,0,0,0,5.300000000000001,18.2,129.57,1014,17 +2013,3,16,22,30,0,0,0,5.2,18.1,140.62,1013,17.1 +2013,3,16,23,30,0,0,0,4.9,18,148.98,1012,17.1 +2013,3,17,0,30,0,0,0,4.7,18,152.04,1012,17.2 +2013,3,17,1,30,0,0,0,4.4,18,148.23,1011,17.3 +2013,3,17,2,30,0,0,0,4.3,18,139.44,1011,17.400000000000002 +2013,3,17,3,30,0,0,0,4.2,18.1,128.19,1011,17.6 +2013,3,17,4,30,0,0,0,4.1000000000000005,18.2,115.81,1011,17.7 +2013,3,17,5,30,0,0,0,4,18.3,102.91,1011,17.900000000000002 +2013,3,17,6,30,0,0,0,4.1000000000000005,18.6,89.38,1011,18.1 +2013,3,17,7,30,176,72,451,4.3,19.1,76.72,1012,18.400000000000002 +2013,3,17,8,30,401,97,692,4.6000000000000005,19.6,64,1012,18.7 +2013,3,17,9,30,546,179,594,4.9,20.200000000000003,51.9,1012,18.900000000000002 +2013,3,17,10,30,589,343,326,5,20.6,41.15,1012,19 +2013,3,17,11,30,661,398,313,4.9,20.700000000000003,33.160000000000004,1011,18.900000000000002 +2013,3,17,12,30,353,332,25,4.7,20.8,30.28,1010,18.900000000000002 +2013,3,17,13,30,626,407,265,4.5,20.8,33.84,1009,18.900000000000002 +2013,3,17,14,30,538,352,251,4.6000000000000005,20.700000000000003,42.230000000000004,1009,18.900000000000002 +2013,3,17,15,30,424,266,264,4.800000000000001,20.5,53.19,1008,18.900000000000002 +2013,3,17,16,30,170,158,28,4.800000000000001,20.1,65.37,1008,19 +2013,3,17,17,30,92,77,73,4.7,19.900000000000002,78.13,1008,19.1 +2013,3,17,18,30,0,0,0,4.7,19.3,91.25,1008,19.1 +2013,3,17,19,30,0,0,0,4.6000000000000005,19.200000000000003,104.3,1008,19.200000000000003 +2013,3,17,20,30,0,0,0,4.2,19.200000000000003,117.13,1009,19.200000000000003 +2013,3,17,21,30,0,0,0,3.7,19,129.38,1009,19 +2013,3,17,22,30,0,0,0,3.3000000000000003,18.900000000000002,140.37,1009,18.900000000000002 +2013,3,17,23,30,0,0,0,3.1,18.900000000000002,148.65,1008,18.900000000000002 +2013,3,18,0,30,0,0,0,3.3000000000000003,18.900000000000002,151.64000000000001,1008,18.900000000000002 +2013,3,18,1,30,0,0,0,3.7,18.900000000000002,147.84,1008,18.900000000000002 +2013,3,18,2,30,0,0,0,4,18.900000000000002,139.1,1008,18.900000000000002 +2013,3,18,3,30,0,0,0,4,18.900000000000002,127.89,1008,18.8 +2013,3,18,4,30,0,0,0,3.6,18.900000000000002,115.54,1009,18.8 +2013,3,18,5,30,0,0,0,3.1,18.900000000000002,102.65,1010,18.7 +2013,3,18,6,30,0,0,0,2.7,19.200000000000003,89.16,1010,18.7 +2013,3,18,7,30,53,53,0,2.5,19.8,76.46000000000001,1011,18.8 +2013,3,18,8,30,215,184,71,2.4000000000000004,20.3,63.72,1011,18.8 +2013,3,18,9,30,509,238,437,2.5,20.700000000000003,51.59,1011,18.8 +2013,3,18,10,30,469,369,132,2.6,21,40.800000000000004,1011,18.8 +2013,3,18,11,30,737,333,481,2.7,21.200000000000003,32.77,1010,18.8 +2013,3,18,12,30,898,156,855,2.5,21.400000000000002,29.88,1009,18.7 +2013,3,18,13,30,859,150,851,2.3000000000000003,21.400000000000002,33.51,1009,18.7 +2013,3,18,14,30,749,141,819,2.1,21.5,41.99,1008,18.7 +2013,3,18,15,30,581,129,751,2.2,21.400000000000002,53,1008,18.7 +2013,3,18,16,30,372,109,628,2.3000000000000003,21,65.22,1009,18.7 +2013,3,18,17,30,150,71,378,2.3000000000000003,20.700000000000003,77.99,1009,19 +2013,3,18,18,30,0,0,0,2.1,19.6,91.12,1009,19.1 +2013,3,18,19,30,0,0,0,1.7000000000000002,19.5,104.17,1010,19.200000000000003 +2013,3,18,20,30,0,0,0,1.3,19.5,116.98,1011,19 +2013,3,18,21,30,0,0,0,1.2000000000000002,19.400000000000002,129.19,1012,18.8 +2013,3,18,22,30,0,0,0,1.3,19.3,140.13,1012,18.5 +2013,3,18,23,30,0,0,0,1.7000000000000002,19.200000000000003,148.31,1012,18.1 +2013,3,19,0,30,0,0,0,2.6,19.1,151.25,1012,17.8 +2013,3,19,1,30,0,0,0,3.8000000000000003,18.900000000000002,147.45000000000002,1013,17.6 +2013,3,19,2,30,0,0,0,5,18.7,138.77,1013,17.5 +2013,3,19,3,30,0,0,0,6.1000000000000005,18.400000000000002,127.59,1013,17.6 +2013,3,19,4,30,0,0,0,7.2,18,115.26,1014,17.400000000000002 +2013,3,19,5,30,0,0,0,7.800000000000001,17.6,102.39,1014,16.400000000000002 +2013,3,19,6,30,10,10,23,7.7,17.5,88.93,1015,15.3 +2013,3,19,7,30,186,76,461,7.4,17.900000000000002,76.2,1015,14.600000000000001 +2013,3,19,8,30,412,111,674,6.9,18.5,63.440000000000005,1016,14.4 +2013,3,19,9,30,626,113,821,6.2,19.1,51.29,1016,15 +2013,3,19,10,30,786,128,864,5.4,19.6,40.45,1015,15.9 +2013,3,19,11,30,707,373,395,4.5,19.900000000000002,32.37,1015,16.7 +2013,3,19,12,30,449,400,57,3.7,20.200000000000003,29.490000000000002,1014,17.400000000000002 +2013,3,19,13,30,633,409,267,3.2,20.3,33.19,1014,17.8 +2013,3,19,14,30,433,356,103,3.2,20.200000000000003,41.74,1013,18 +2013,3,19,15,30,244,229,24,3.4000000000000004,19.900000000000002,52.81,1013,18.1 +2013,3,19,16,30,132,132,0,3.8000000000000003,19.5,65.07000000000001,1013,18.1 +2013,3,19,17,30,27,27,0,4,19.3,77.86,1013,18.1 +2013,3,19,18,30,0,0,0,4.4,18.6,90.99,1014,18.1 +2013,3,19,19,30,0,0,0,4.6000000000000005,18.5,104.03,1014,18 +2013,3,19,20,30,0,0,0,4.7,18.5,116.83,1014,18 +2013,3,19,21,30,0,0,0,4.9,18.6,129,1014,18.1 +2013,3,19,22,30,0,0,0,5.1000000000000005,18.6,139.88,1014,18.1 +2013,3,19,23,30,0,0,0,4.9,18.6,147.98,1014,18.2 +2013,3,20,0,30,0,0,0,4.2,18.6,150.85,1014,18.2 +2013,3,20,1,30,0,0,0,4.5,18.5,147.07,1015,18.3 +2013,3,20,2,30,0,0,0,6.1000000000000005,17.900000000000002,138.43,1015,17.7 +2013,3,20,3,30,0,0,0,8.1,17,127.29,1017,16.6 +2013,3,20,4,30,0,0,0,9.8,15.8,114.99000000000001,1018,14.8 +2013,3,20,5,30,0,0,0,10.5,15,102.13,1020,13 +2013,3,20,6,30,2,2,0,10.200000000000001,15.100000000000001,88.69,1020,12.600000000000001 +2013,3,20,7,30,7,7,0,9.700000000000001,15.600000000000001,75.93,1021,12.9 +2013,3,20,8,30,124,124,0,9.200000000000001,16.400000000000002,63.160000000000004,1021,13.200000000000001 +2013,3,20,9,30,517,239,442,8.4,17.3,50.980000000000004,1021,13.3 +2013,3,20,10,30,553,367,243,7.5,18,40.1,1021,13.3 +2013,3,20,11,30,743,335,481,7,18.6,31.98,1021,13.100000000000001 +2013,3,20,12,30,939,114,944,6.6000000000000005,19.1,29.1,1020,12.8 +2013,3,20,13,30,901,110,942,6.2,19.400000000000002,32.87,1020,12.4 +2013,3,20,14,30,792,104,920,5.6000000000000005,19.6,41.5,1019,12 +2013,3,20,15,30,622,91,876,4.9,19.6,52.63,1019,11.700000000000001 +2013,3,20,16,30,409,76,786,4.1000000000000005,19.400000000000002,64.92,1018,11.700000000000001 +2013,3,20,17,30,175,52,579,3.7,19.1,77.73,1018,12.4 +2013,3,20,18,30,0,0,0,3.1,18,90.86,1018,12.700000000000001 +2013,3,20,19,30,0,0,0,3.1,17.8,103.9,1018,12.600000000000001 +2013,3,20,20,30,0,0,0,3.3000000000000003,17.6,116.67,1019,12.700000000000001 +2013,3,20,21,30,0,0,0,3.5,17.2,128.81,1018,12.700000000000001 +2013,3,20,22,30,0,0,0,3.7,16.900000000000002,139.63,1018,12.9 +2013,3,20,23,30,0,0,0,3.8000000000000003,16.8,147.65,1017,13.100000000000001 +2013,3,21,0,30,0,0,0,3.9000000000000004,16.7,150.45000000000002,1017,13.100000000000001 +2013,3,21,1,30,0,0,0,4.1000000000000005,16.6,146.68,1017,12.8 +2013,3,21,2,30,0,0,0,4.4,16.400000000000002,138.08,1016,12.200000000000001 +2013,3,21,3,30,0,0,0,4.6000000000000005,16.400000000000002,126.99000000000001,1015,11.8 +2013,3,21,4,30,0,0,0,4.800000000000001,16.400000000000002,114.71000000000001,1015,11.4 +2013,3,21,5,30,0,0,0,5,16.6,101.87,1015,11.3 +2013,3,21,6,30,14,13,56,5.4,17.3,88.46000000000001,1015,11.200000000000001 +2013,3,21,7,30,147,89,236,5.800000000000001,18.2,75.67,1015,11.600000000000001 +2013,3,21,8,30,334,171,358,6,18.900000000000002,62.88,1015,11.5 +2013,3,21,9,30,501,258,383,5.9,19.200000000000003,50.68,1015,11.8 +2013,3,21,10,30,142,142,0,6,19.5,39.76,1014,12.3 +2013,3,21,11,30,765,330,511,6.300000000000001,19.8,31.59,1013,12.9 +2013,3,21,12,30,909,140,877,6.5,19.900000000000002,28.71,1012,13.5 +2013,3,21,13,30,744,330,490,6.5,19.900000000000002,32.55,1010,13.9 +2013,3,21,14,30,677,255,562,6.4,19.8,41.27,1009,14.3 +2013,3,21,15,30,421,275,240,6.2,19.6,52.45,1009,14.5 +2013,3,21,16,30,130,130,0,6,19.400000000000002,64.77,1008,14.8 +2013,3,21,17,30,93,80,63,6,19.3,77.60000000000001,1008,15.3 +2013,3,21,18,30,0,0,0,5.800000000000001,18.900000000000002,90.15,1008,15.8 +2013,3,21,19,30,0,0,0,5.6000000000000005,18.900000000000002,103.76,1008,16.3 +2013,3,21,20,30,0,0,0,5.6000000000000005,19,116.52,1008,16.8 +2013,3,21,21,30,0,0,0,5.7,19.1,128.62,1008,17.1 +2013,3,21,22,30,0,0,0,5.6000000000000005,19.1,139.37,1008,17.5 +2013,3,21,23,30,0,0,0,5.6000000000000005,19.200000000000003,147.31,1007,17.8 +2013,3,22,0,30,0,0,0,5.2,19.200000000000003,150.05,1007,18.2 +2013,3,22,1,30,0,0,0,4.7,19.200000000000003,146.29,1006,18.5 +2013,3,22,2,30,0,0,0,4.1000000000000005,19.200000000000003,137.74,1006,18.7 +2013,3,22,3,30,0,0,0,3.7,19.200000000000003,126.69,1007,18.900000000000002 +2013,3,22,4,30,0,0,0,3.7,19.200000000000003,114.44,1007,19.1 +2013,3,22,5,30,0,0,0,3.9000000000000004,19.3,101.61,1007,19.200000000000003 +2013,3,22,6,30,3,3,0,4.2,19.700000000000003,88.23,1008,19.3 +2013,3,22,7,30,30,30,0,4.3,20.200000000000003,75.41,1008,19.5 +2013,3,22,8,30,204,184,44,4.2,20.700000000000003,62.61,1008,19.700000000000003 +2013,3,22,9,30,422,296,198,4.1000000000000005,21.1,50.370000000000005,1008,19.700000000000003 +2013,3,22,10,30,765,148,799,3.9000000000000004,21.400000000000002,39.410000000000004,1008,19.700000000000003 +2013,3,22,11,30,861,155,825,3.9000000000000004,21.5,31.2,1008,19.700000000000003 +2013,3,22,12,30,471,414,65,3.9000000000000004,21.5,28.310000000000002,1007,19.700000000000003 +2013,3,22,13,30,327,309,21,3.7,21.3,32.230000000000004,1007,19.700000000000003 +2013,3,22,14,30,240,232,11,3.5,21.200000000000003,41.03,1006,19.700000000000003 +2013,3,22,15,30,203,198,8,3.3000000000000003,21,52.27,1006,19.700000000000003 +2013,3,22,16,30,87,87,0,2.9000000000000004,20.8,64.62,1006,19.8 +2013,3,22,17,30,32,32,0,2.7,20.6,77.47,1006,19.8 +2013,3,22,18,30,0,0,0,2.4000000000000004,20,90.05,1007,19.900000000000002 +2013,3,22,19,30,0,0,0,2.5,19.8,103.63,1007,19.8 +2013,3,22,20,30,0,0,0,2.7,19.700000000000003,116.36,1008,19.700000000000003 +2013,3,22,21,30,0,0,0,2.9000000000000004,19.6,128.43,1008,19.6 +2013,3,22,22,30,0,0,0,3.1,19.6,139.12,1008,19.6 +2013,3,22,23,30,0,0,0,3.5,19.5,146.98,1007,19.5 +2013,3,23,0,30,0,0,0,4,19.5,149.66,1007,19.5 +2013,3,23,1,30,0,0,0,4.6000000000000005,19.5,145.91,1006,19.5 +2013,3,23,2,30,0,0,0,4.7,19.5,137.4,1005,19.5 +2013,3,23,3,30,0,0,0,4,19.400000000000002,126.39,1005,19.400000000000002 +2013,3,23,4,30,0,0,0,2.6,19.400000000000002,114.16,1006,19.400000000000002 +2013,3,23,5,30,0,0,0,1.9000000000000001,19.5,101.34,1006,19.5 +2013,3,23,6,30,4,4,0,2.1,19.700000000000003,87.99,1006,19.700000000000003 +2013,3,23,7,30,105,95,37,2.6,20.1,75.15,1006,19.8 +2013,3,23,8,30,45,45,0,2.9000000000000004,20.5,62.33,1006,19.900000000000002 +2013,3,23,9,30,115,115,0,3,20.900000000000002,50.07,1006,20 +2013,3,23,10,30,270,259,15,2.7,21.1,39.06,1005,19.900000000000002 +2013,3,23,11,30,202,196,7,2.3000000000000003,21.3,30.810000000000002,1005,19.900000000000002 +2013,3,23,12,30,131,131,0,1.7000000000000002,21.400000000000002,27.92,1004,19.900000000000002 +2013,3,23,13,30,183,179,6,1.2000000000000002,21.6,31.92,1003,19.900000000000002 +2013,3,23,14,30,207,202,7,0.9,21.700000000000003,40.800000000000004,1002,19.900000000000002 +2013,3,23,15,30,217,209,12,0.9,21.6,52.09,1002,19.8 +2013,3,23,16,30,119,119,0,1,21.3,64.48,1002,19.700000000000003 +2013,3,23,17,30,147,91,253,1.1,21.200000000000003,77.34,1002,19.700000000000003 +2013,3,23,18,30,0,0,0,1.4000000000000001,20.3,89.94,1003,19.700000000000003 +2013,3,23,19,30,0,0,0,1.8,19.900000000000002,103.49000000000001,1004,19.5 +2013,3,23,20,30,0,0,0,2,19.6,116.21000000000001,1004,19.3 +2013,3,23,21,30,0,0,0,1.9000000000000001,19.3,128.24,1004,19 +2013,3,23,22,30,0,0,0,1.7000000000000002,18.900000000000002,138.87,1004,18.7 +2013,3,23,23,30,0,0,0,1.7000000000000002,18.6,146.64000000000001,1004,18.5 +2013,3,24,0,30,0,0,0,1.9000000000000001,18.3,149.26,1004,18.2 +2013,3,24,1,30,0,0,0,2.1,18,145.52,1004,17.900000000000002 +2013,3,24,2,30,0,0,0,3.4000000000000004,17.8,137.06,1005,17.7 +2013,3,24,3,30,0,0,0,6,17.400000000000002,126.08,1007,17.400000000000002 +2013,3,24,4,30,0,0,0,7.9,16.900000000000002,113.88,1009,16.6 +2013,3,24,5,30,0,0,0,8.8,16.1,101.08,1010,15.3 +2013,3,24,6,30,9,9,0,9.700000000000001,15.4,87.75,1012,13.600000000000001 +2013,3,24,7,30,207,87,461,10.100000000000001,14.9,74.89,1014,11.8 +2013,3,24,8,30,446,111,714,10.200000000000001,14.700000000000001,62.06,1015,9.8 +2013,3,24,9,30,660,130,821,10.200000000000001,14.700000000000001,49.77,1015,8 +2013,3,24,10,30,834,128,905,10.100000000000001,15.100000000000001,38.72,1015,6.5 +2013,3,24,11,30,941,124,948,10,15.600000000000001,30.42,1015,5.6000000000000005 +2013,3,24,12,30,972,125,955,9.8,16.1,27.53,1015,5.2 +2013,3,24,13,30,930,116,956,9.600000000000001,16.400000000000002,31.6,1015,4.9 +2013,3,24,14,30,817,108,933,9.5,16.5,40.57,1015,4.800000000000001 +2013,3,24,15,30,639,101,871,9.3,16.400000000000002,51.910000000000004,1015,4.6000000000000005 +2013,3,24,16,30,420,85,773,8.9,16.1,64.33,1015,4.4 +2013,3,24,17,30,182,59,555,8.700000000000001,15.9,77.21000000000001,1015,4.4 +2013,3,24,18,30,0,0,0,8.1,14.700000000000001,89.82000000000001,1017,4.6000000000000005 +2013,3,24,19,30,0,0,0,7.9,14,103.36,1018,5 +2013,3,24,20,30,0,0,0,8,13.4,116.05,1018,5.2 +2013,3,24,21,30,0,0,0,8.1,12.9,128.04,1019,5.300000000000001 +2013,3,24,22,30,0,0,0,8.3,12.3,138.61,1020,5.300000000000001 +2013,3,24,23,30,0,0,0,8.3,11.8,146.3,1020,5.4 +2013,3,25,0,30,0,0,0,8.3,11.200000000000001,148.87,1020,5.4 +2013,3,25,1,30,0,0,0,8.200000000000001,10.700000000000001,145.13,1020,5.4 +2013,3,25,2,30,0,0,0,8.1,10.3,136.71,1021,5.5 +2013,3,25,3,30,0,0,0,8.1,10,125.78,1021,5.5 +2013,3,25,4,30,0,0,0,8,9.600000000000001,113.60000000000001,1022,5.4 +2013,3,25,5,30,0,0,0,8,9.3,100.82000000000001,1023,5.2 +2013,3,25,6,30,25,19,132,8.200000000000001,9.4,87.5,1025,5.1000000000000005 +2013,3,25,7,30,231,67,616,8.3,9.9,74.63,1026,4.4 +2013,3,25,8,30,469,90,802,7.9,10.700000000000001,61.78,1026,3.6 +2013,3,25,9,30,684,104,893,7.4,11.600000000000001,49.47,1026,3.2 +2013,3,25,10,30,849,114,938,6.9,12.600000000000001,38.38,1026,2.7 +2013,3,25,11,30,951,120,960,6.2,13.5,30.03,1026,2.3000000000000003 +2013,3,25,12,30,981,122,966,5.5,14.3,27.150000000000002,1025,1.8 +2013,3,25,13,30,933,119,952,4.800000000000001,14.9,31.29,1024,1.3 +2013,3,25,14,30,816,116,919,4.3,15.3,40.34,1023,0.7000000000000001 +2013,3,25,15,30,640,106,862,3.9000000000000004,15.700000000000001,51.74,1023,0.30000000000000004 +2013,3,25,16,30,420,90,756,3.8000000000000003,15.8,64.19,1023,0.2 +2013,3,25,17,30,182,63,536,3.8000000000000003,15.8,77.08,1023,0.8 +2013,3,25,18,30,0,0,0,4.6000000000000005,14.8,89.71000000000001,1024,2.5 +2013,3,25,19,30,0,0,0,5.5,14.5,103.22,1025,3.6 +2013,3,25,20,30,0,0,0,6.5,14,115.89,1026,4.5 +2013,3,25,21,30,0,0,0,7.2,13.5,127.84,1027,5 +2013,3,25,22,30,0,0,0,7.7,12.8,138.35,1028,5 +2013,3,25,23,30,0,0,0,7.9,12.200000000000001,145.97,1028,4.7 +2013,3,26,0,30,0,0,0,8,11.700000000000001,148.47,1028,4.2 +2013,3,26,1,30,0,0,0,8,11.3,144.74,1028,3.8000000000000003 +2013,3,26,2,30,0,0,0,7.800000000000001,10.9,136.37,1028,3.6 +2013,3,26,3,30,0,0,0,7.6000000000000005,10.4,125.47,1029,3.6 +2013,3,26,4,30,0,0,0,7.300000000000001,10,113.32000000000001,1029,3.7 +2013,3,26,5,30,0,0,0,6.9,9.8,100.56,1030,3.7 +2013,3,26,6,30,30,19,221,6.7,10.100000000000001,87.25,1031,3.7 +2013,3,26,7,30,246,59,696,6.5,11,74.37,1032,3.2 +2013,3,26,8,30,489,78,862,6.2,11.700000000000001,61.51,1032,2.4000000000000004 +2013,3,26,9,30,705,90,941,5.9,12.3,49.17,1032,2 +2013,3,26,10,30,871,99,981,5.5,12.9,38.04,1032,1.8 +2013,3,26,11,30,974,103,1001,5.1000000000000005,13.5,29.64,1031,1.6 +2013,3,26,12,30,997,105,998,4.6000000000000005,14.100000000000001,26.76,1030,1.2000000000000002 +2013,3,26,13,30,952,104,988,4.1000000000000005,14.700000000000001,30.990000000000002,1029,0.9 +2013,3,26,14,30,835,101,959,3.7,15.200000000000001,40.12,1028,0.5 +2013,3,26,15,30,655,97,896,3.3000000000000003,15.600000000000001,51.57,1028,0.2 +2013,3,26,16,30,432,83,799,3,15.700000000000001,64.05,1027,0 +2013,3,26,17,30,192,58,591,2.8000000000000003,15.700000000000001,76.95,1027,0.6000000000000001 +2013,3,26,18,30,0,0,0,2.7,14.600000000000001,89.60000000000001,1027,1.8 +2013,3,26,19,30,0,0,0,2.9000000000000004,14.3,103.09,1027,2.2 +2013,3,26,20,30,0,0,0,3.1,14.100000000000001,115.73,1028,2.7 +2013,3,26,21,30,0,0,0,3.1,13.8,127.65,1028,3.1 +2013,3,26,22,30,0,0,0,3,13.5,138.09,1028,3.4000000000000004 +2013,3,26,23,30,0,0,0,2.9000000000000004,13.3,145.63,1028,3.5 +2013,3,27,0,30,0,0,0,2.9000000000000004,13.200000000000001,148.08,1027,3.7 +2013,3,27,1,30,0,0,0,3,13.100000000000001,144.36,1027,3.9000000000000004 +2013,3,27,2,30,0,0,0,3.2,13.100000000000001,136.02,1027,4.4 +2013,3,27,3,30,0,0,0,3.2,13,125.17,1027,4.7 +2013,3,27,4,30,0,0,0,3.1,13,113.04,1027,4.800000000000001 +2013,3,27,5,30,0,0,0,3.2,13.100000000000001,100.29,1028,5 +2013,3,27,6,30,30,20,186,3.5,13.8,87.01,1028,5.5 +2013,3,27,7,30,236,64,627,3.8000000000000003,14.9,74.11,1029,6.4 +2013,3,27,8,30,471,85,802,4,15.600000000000001,61.24,1029,6.2 +2013,3,27,9,30,683,97,891,4.2,16,48.870000000000005,1029,6.6000000000000005 +2013,3,27,10,30,846,105,937,4.4,16.3,37.7,1028,7.1000000000000005 +2013,3,27,11,30,942,110,954,4.4,16.5,29.25,1028,7.4 +2013,3,27,12,30,973,109,965,4.4,16.6,26.37,1027,7.7 +2013,3,27,13,30,924,108,949,4.4,16.6,30.68,1026,7.9 +2013,3,27,14,30,807,105,914,4.4,16.400000000000002,39.9,1026,8.1 +2013,3,27,15,30,635,95,867,4.6000000000000005,16.2,51.4,1025,8.3 +2013,3,27,16,30,417,81,762,4.7,16,63.910000000000004,1025,8.700000000000001 +2013,3,27,17,30,184,58,553,4.800000000000001,15.8,76.83,1025,9 +2013,3,27,18,30,0,0,0,4.9,15.100000000000001,89.5,1025,9.5 +2013,3,27,19,30,0,0,0,5.2,15.100000000000001,102.95,1025,10 +2013,3,27,20,30,0,0,0,5.4,15.200000000000001,115.58,1025,10.3 +2013,3,27,21,30,0,0,0,5.4,15.4,127.45,1025,10.600000000000001 +2013,3,27,22,30,0,0,0,5.4,15.5,137.83,1025,11 +2013,3,27,23,30,0,0,0,5.300000000000001,15.700000000000001,145.29,1024,11.3 +2013,3,28,0,30,0,0,0,5,15.8,147.68,1024,11.600000000000001 +2013,3,28,1,30,0,0,0,4.7,15.9,143.97,1024,11.8 +2013,3,28,2,30,0,0,0,4.4,16.1,135.68,1024,12.100000000000001 +2013,3,28,3,30,0,0,0,4,16.3,124.86,1024,12.4 +2013,3,28,4,30,0,0,0,3.9000000000000004,16.400000000000002,112.77,1024,12.700000000000001 +2013,3,28,5,30,0,0,0,4,16.6,100.03,1024,13 +2013,3,28,6,30,9,9,0,4.4,17.1,86.77,1024,13.3 +2013,3,28,7,30,108,101,24,4.800000000000001,17.8,73.85000000000001,1025,13.600000000000001 +2013,3,28,8,30,278,210,140,5,18.3,60.97,1025,13.700000000000001 +2013,3,28,9,30,594,189,613,5,18.7,48.57,1026,13.8 +2013,3,28,10,30,665,328,425,5.1000000000000005,19,37.36,1025,13.9 +2013,3,28,11,30,906,133,883,5.2,19.200000000000003,28.87,1025,14 +2013,3,28,12,30,753,399,394,5.2,19.200000000000003,25.990000000000002,1024,14 +2013,3,28,13,30,882,149,850,5.2,19.1,30.38,1024,14 +2013,3,28,14,30,770,144,814,5.1000000000000005,18.900000000000002,39.68,1023,13.9 +2013,3,28,15,30,601,133,748,5,18.8,51.24,1023,13.9 +2013,3,28,16,30,393,108,644,4.9,18.6,63.78,1023,14 +2013,3,28,17,30,132,82,215,4.800000000000001,18.5,76.71000000000001,1023,14.100000000000001 +2013,3,28,18,30,0,0,0,4.4,17.8,89.4,1023,14.5 +2013,3,28,19,30,0,0,0,4.4,17.6,102.82000000000001,1024,14.8 +2013,3,28,20,30,0,0,0,4.5,17.5,115.42,1024,15 +2013,3,28,21,30,0,0,0,4.7,17.400000000000002,127.25,1024,15.200000000000001 +2013,3,28,22,30,0,0,0,4.7,17.3,137.57,1024,15.4 +2013,3,28,23,30,0,0,0,4.7,17.2,144.95000000000002,1023,15.600000000000001 +2013,3,29,0,30,0,0,0,4.6000000000000005,17.2,147.29,1023,15.700000000000001 +2013,3,29,1,30,0,0,0,4.3,17.1,143.59,1023,15.8 +2013,3,29,2,30,0,0,0,4.1000000000000005,17,135.34,1022,16 +2013,3,29,3,30,0,0,0,3.9000000000000004,17,124.56,1023,16.1 +2013,3,29,4,30,0,0,0,3.8000000000000003,17,112.49000000000001,1023,16.3 +2013,3,29,5,30,0,0,0,3.9000000000000004,17.1,99.77,1023,16.400000000000002 +2013,3,29,6,30,9,9,0,4.3,17.900000000000002,86.53,1024,16.5 +2013,3,29,7,30,228,72,551,4.800000000000001,18.8,73.60000000000001,1024,16.6 +2013,3,29,8,30,453,98,725,5.1000000000000005,19.3,60.7,1025,16.5 +2013,3,29,9,30,655,112,815,5.1000000000000005,19.700000000000003,48.28,1025,16.5 +2013,3,29,10,30,812,123,863,5.2,20,37.03,1024,16.5 +2013,3,29,11,30,909,128,888,5.2,20.1,28.48,1023,16.5 +2013,3,29,12,30,936,130,894,5,20.200000000000003,25.6,1022,16.5 +2013,3,29,13,30,892,129,882,4.7,20.1,30.080000000000002,1022,16.5 +2013,3,29,14,30,490,376,148,4.4,20,39.47,1021,16.6 +2013,3,29,15,30,241,229,19,4.3,19.8,51.08,1021,16.6 +2013,3,29,16,30,273,186,197,4.3,19.5,63.64,1021,16.7 +2013,3,29,17,30,92,84,31,4.2,19.3,76.58,1021,16.8 +2013,3,29,18,30,0,0,0,3.8000000000000003,18.7,89.29,1021,17 +2013,3,29,19,30,0,0,0,4.1000000000000005,18.5,102.68,1022,17.2 +2013,3,29,20,30,0,0,0,4.2,18.5,115.26,1022,17.3 +2013,3,29,21,30,0,0,0,4,18.5,127.05,1022,17.3 +2013,3,29,22,30,0,0,0,3.6,18.400000000000002,137.31,1022,17.400000000000002 +2013,3,29,23,30,0,0,0,3.5,18.5,144.61,1021,17.400000000000002 +2013,3,30,0,30,0,0,0,3.6,18.5,146.9,1021,17.400000000000002 +2013,3,30,1,30,0,0,0,3.9000000000000004,18.6,143.20000000000002,1020,17.5 +2013,3,30,2,30,0,0,0,4.1000000000000005,18.5,134.99,1019,17.5 +2013,3,30,3,30,0,0,0,4.3,18.5,124.25,1019,17.5 +2013,3,30,4,30,0,0,0,4.6000000000000005,18.400000000000002,112.21000000000001,1019,17.6 +2013,3,30,5,30,0,0,0,4.7,18.400000000000002,99.5,1019,17.7 +2013,3,30,6,30,7,7,0,4.7,18.8,86.29,1019,17.7 +2013,3,30,7,30,14,14,0,4.3,19.400000000000002,73.34,1020,17.900000000000002 +2013,3,30,8,30,119,119,0,4,19.900000000000002,60.43,1020,17.8 +2013,3,30,9,30,432,314,177,3.7,20.3,47.99,1020,17.7 +2013,3,30,10,30,673,330,428,3.5,20.6,36.69,1020,17.7 +2013,3,30,11,30,896,152,843,3.5,20.8,28.1,1019,17.8 +2013,3,30,12,30,522,443,88,3.6,20.900000000000002,25.22,1019,17.8 +2013,3,30,13,30,883,145,850,3.6,20.900000000000002,29.78,1018,17.8 +2013,3,30,14,30,774,138,821,3.6,20.700000000000003,39.25,1017,17.8 +2013,3,30,15,30,604,128,755,3.7,20.5,50.92,1016,17.900000000000002 +2013,3,30,16,30,396,107,647,3.8000000000000003,20.200000000000003,63.51,1016,18 +2013,3,30,17,30,174,73,431,3.9000000000000004,20,76.46000000000001,1016,18.2 +2013,3,30,18,30,0,0,0,3.9000000000000004,19.3,89.19,1016,18.400000000000002 +2013,3,30,19,30,0,0,0,3.9000000000000004,19.1,102.55,1016,18.6 +2013,3,30,20,30,0,0,0,4,19,115.10000000000001,1017,18.7 +2013,3,30,21,30,0,0,0,4.1000000000000005,19,126.85000000000001,1017,18.8 +2013,3,30,22,30,0,0,0,4.2,19,137.05,1016,18.900000000000002 +2013,3,30,23,30,0,0,0,4.1000000000000005,19,144.28,1016,18.900000000000002 +2013,3,31,0,30,0,0,0,3.9000000000000004,18.900000000000002,146.51,1015,18.900000000000002 +2013,3,31,1,30,0,0,0,3.7,18.8,142.82,1015,18.8 +2013,3,31,2,30,0,0,0,3.6,18.8,134.65,1014,18.8 +2013,3,31,3,30,0,0,0,3.5,18.7,123.95,1014,18.7 +2013,3,31,4,30,0,0,0,3.4000000000000004,18.6,111.93,1014,18.6 +2013,3,31,5,30,0,0,0,3.2,18.8,99.24000000000001,1014,18.8 +2013,3,31,6,30,36,27,137,3,19.3,86.04,1015,19.1 +2013,3,31,7,30,230,83,506,2.7,19.900000000000002,73.09,1016,19.3 +2013,3,31,8,30,285,217,137,2.4000000000000004,20.200000000000003,60.160000000000004,1016,19.3 +2013,3,31,9,30,531,280,373,2.2,20.6,47.7,1016,19.3 +2013,3,31,10,30,572,393,222,2.3000000000000003,20.900000000000002,36.36,1016,19.3 +2013,3,31,11,30,716,416,338,2.7,21.3,27.72,1015,19.200000000000003 +2013,3,31,12,30,675,456,241,3.1,21.5,24.84,1014,19.200000000000003 +2013,3,31,13,30,496,421,86,3,21.5,29.490000000000002,1014,19.200000000000003 +2013,3,31,14,30,586,364,285,2.6,21.400000000000002,39.04,1013,19.3 +2013,3,31,15,30,587,160,674,2.3000000000000003,21,50.76,1013,19.3 +2013,3,31,16,30,76,76,0,2.4000000000000004,20.5,63.370000000000005,1013,19.400000000000002 +2013,3,31,17,30,53,53,0,2.5,20.200000000000003,76.34,1013,19.400000000000002 +2013,3,31,18,30,0,0,0,3.3000000000000003,19.5,89.08,1013,19.200000000000003 +2013,3,31,19,30,0,0,0,4.2,19.400000000000002,102.41,1013,19.1 +2013,3,31,20,30,0,0,0,4.5,19.200000000000003,114.93,1013,19 +2013,3,31,21,30,0,0,0,4.2,19.1,126.65,1014,19.1 +2013,3,31,22,30,0,0,0,3.6,19,136.79,1014,19 +2013,3,31,23,30,0,0,0,2.8000000000000003,19,143.94,1014,19 +2013,4,1,0,30,0,0,0,2,19.1,146.12,1014,19.1 +2013,4,1,1,30,0,0,0,1.3,19.1,142.44,1014,19.1 +2013,4,1,2,30,0,0,0,0.8,19,134.31,1014,19 +2013,4,1,3,30,0,0,0,0.9,18.8,123.64,1015,18.8 +2013,4,1,4,30,0,0,0,1.6,18.5,111.65,1015,18.5 +2013,4,1,5,30,0,0,0,2.6,18.400000000000002,98.98,1016,18.400000000000002 +2013,4,1,6,30,11,11,0,3.4000000000000004,18.6,85.8,1017,18.5 +2013,4,1,7,30,49,49,0,3.8000000000000003,19,72.84,1018,18.6 +2013,4,1,8,30,164,162,4,3.7,19.5,59.9,1018,18.8 +2013,4,1,9,30,323,289,51,3.6,20,47.410000000000004,1019,18.8 +2013,4,1,10,30,442,379,78,3.6,20.400000000000002,36.03,1018,18.8 +2013,4,1,11,30,592,450,159,3.6,20.700000000000003,27.330000000000002,1018,18.7 +2013,4,1,12,30,921,171,824,3.6,20.8,24.46,1018,18.6 +2013,4,1,13,30,876,169,810,3.6,20.8,29.2,1017,18.5 +2013,4,1,14,30,767,160,778,3.7,20.700000000000003,38.84,1016,18.400000000000002 +2013,4,1,15,30,605,135,741,3.8000000000000003,20.5,50.6,1016,18.3 +2013,4,1,16,30,397,113,633,3.8000000000000003,20.200000000000003,63.24,1016,18.2 +2013,4,1,17,30,177,75,430,3.9000000000000004,20,76.22,1016,18.2 +2013,4,1,18,30,9,8,27,3.8000000000000003,19.1,88.97,1016,18.2 +2013,4,1,19,30,0,0,0,3.6,18.900000000000002,102.27,1016,18.2 +2013,4,1,20,30,0,0,0,3.3000000000000003,18.8,114.77,1016,18.3 +2013,4,1,21,30,0,0,0,3.2,18.7,126.44,1017,18.3 +2013,4,1,22,30,0,0,0,3.1,18.7,136.52,1016,18.400000000000002 +2013,4,1,23,30,0,0,0,3.1,18.6,143.6,1016,18.400000000000002 +2013,4,2,0,30,0,0,0,3.2,18.6,145.73,1016,18.5 +2013,4,2,1,30,0,0,0,3.4000000000000004,18.5,142.06,1015,18.5 +2013,4,2,2,30,0,0,0,3.6,18.5,133.96,1015,18.5 +2013,4,2,3,30,0,0,0,3.9000000000000004,18.6,123.34,1015,18.6 +2013,4,2,4,30,0,0,0,4.3,18.6,111.38,1016,18.6 +2013,4,2,5,30,0,0,0,4.9,18.8,98.72,1016,18.8 +2013,4,2,6,30,19,19,0,5.6000000000000005,19.3,85.55,1016,18.900000000000002 +2013,4,2,7,30,18,18,0,5.9,19.8,72.59,1016,19 +2013,4,2,8,30,18,18,0,5.9,20.3,59.64,1016,19.200000000000003 +2013,4,2,9,30,501,304,289,5.7,20.6,47.13,1016,19.3 +2013,4,2,10,30,82,82,0,5.5,20.8,35.71,1016,19.3 +2013,4,2,11,30,723,418,342,5.300000000000001,20.900000000000002,26.96,1016,19.400000000000002 +2013,4,2,12,30,444,403,45,5.2,20.900000000000002,24.080000000000002,1015,19.400000000000002 +2013,4,2,13,30,234,225,10,5,20.900000000000002,28.91,1014,19.3 +2013,4,2,14,30,182,179,4,4.7,20.8,38.63,1014,19.3 +2013,4,2,15,30,168,167,1,4.800000000000001,20.6,50.45,1014,19.3 +2013,4,2,16,30,106,106,0,5.300000000000001,20.200000000000003,63.11,1013,19.200000000000003 +2013,4,2,17,30,57,57,0,5.6000000000000005,20,76.10000000000001,1013,19.200000000000003 +2013,4,2,18,30,3,3,0,6.2,19.5,88.86,1013,19.200000000000003 +2013,4,2,19,30,0,0,0,6.5,19.400000000000002,102.14,1014,19.200000000000003 +2013,4,2,20,30,0,0,0,6.6000000000000005,19.3,114.61,1014,19.200000000000003 +2013,4,2,21,30,0,0,0,6.7,19.3,126.24000000000001,1013,19.1 +2013,4,2,22,30,0,0,0,6.7,19.200000000000003,136.26,1012,19.1 +2013,4,2,23,30,0,0,0,6.2,19.3,143.26,1011,19.1 +2013,4,3,0,30,0,0,0,5.4,19.400000000000002,145.34,1010,19.200000000000003 +2013,4,3,1,30,0,0,0,4.6000000000000005,19.5,141.68,1009,19.3 +2013,4,3,2,30,0,0,0,3.9000000000000004,19.5,133.62,1009,19.400000000000002 +2013,4,3,3,30,0,0,0,3.2,19.400000000000002,123.03,1009,19.400000000000002 +2013,4,3,4,30,0,0,0,2.7,19.3,111.10000000000001,1010,19.3 +2013,4,3,5,30,0,0,0,2.3000000000000003,19.200000000000003,98.47,1010,19.200000000000003 +2013,4,3,6,30,18,18,0,2,19.200000000000003,85.31,1011,19.1 +2013,4,3,7,30,43,43,0,1.7000000000000002,19.3,72.34,1012,19.1 +2013,4,3,8,30,57,57,0,1.8,19.5,59.38,1012,19.1 +2013,4,3,9,30,216,211,9,2.6,19.6,46.84,1013,18.900000000000002 +2013,4,3,10,30,417,369,59,3.6,19.700000000000003,35.38,1013,18.6 +2013,4,3,11,30,477,419,65,4.5,19.8,26.580000000000002,1013,18.3 +2013,4,3,12,30,514,443,78,5.300000000000001,19.8,23.71,1013,18 +2013,4,3,13,30,433,390,48,5.9,19.700000000000003,28.63,1012,17.7 +2013,4,3,14,30,340,315,32,6.300000000000001,19.5,38.43,1012,17.3 +2013,4,3,15,30,144,144,0,6.5,19.1,50.29,1011,16.900000000000002 +2013,4,3,16,30,212,185,60,6.1000000000000005,18.6,62.980000000000004,1012,16.5 +2013,4,3,17,30,180,79,419,5.800000000000001,18.3,75.98,1013,16 +2013,4,3,18,30,4,4,0,6.5,17.1,88.74,1015,15.5 +2013,4,3,19,30,0,0,0,7.1000000000000005,16.2,102,1016,14.9 +2013,4,3,20,30,0,0,0,6.800000000000001,15.3,114.45,1017,14 +2013,4,3,21,30,0,0,0,5.9,14.8,126.03,1017,13.4 +2013,4,3,22,30,0,0,0,5.1000000000000005,14.4,135.99,1018,13.100000000000001 +2013,4,3,23,30,0,0,0,5,14,142.92000000000002,1018,12.8 +2013,4,4,0,30,0,0,0,5.300000000000001,13.600000000000001,144.96,1018,12.600000000000001 +2013,4,4,1,30,0,0,0,4.9,13.3,141.3,1017,12.200000000000001 +2013,4,4,2,30,0,0,0,4.9,13.100000000000001,133.28,1017,11.8 +2013,4,4,3,30,0,0,0,5.2,13,122.73,1017,11.700000000000001 +2013,4,4,4,30,0,0,0,5.5,12.9,110.83,1017,11.600000000000001 +2013,4,4,5,30,0,0,0,5.800000000000001,12.9,98.21000000000001,1017,11.600000000000001 +2013,4,4,6,30,12,12,0,6.300000000000001,13,85.07000000000001,1018,11.600000000000001 +2013,4,4,7,30,15,15,0,6.7,13.200000000000001,72.09,1019,11.5 +2013,4,4,8,30,72,72,0,7,13.600000000000001,59.120000000000005,1020,11.4 +2013,4,4,9,30,80,80,0,7.1000000000000005,14,46.56,1020,11.3 +2013,4,4,10,30,112,112,0,7.1000000000000005,14.5,35.06,1020,11.200000000000001 +2013,4,4,11,30,159,156,3,7.1000000000000005,15.100000000000001,26.21,1019,11.200000000000001 +2013,4,4,12,30,144,144,1,7.1000000000000005,15.5,23.330000000000002,1019,11.100000000000001 +2013,4,4,13,30,140,140,0,7.1000000000000005,15.9,28.35,1018,11 +2013,4,4,14,30,202,197,6,7.2,15.9,38.230000000000004,1017,10.8 +2013,4,4,15,30,106,106,0,7.4,15.700000000000001,50.14,1017,10.600000000000001 +2013,4,4,16,30,211,185,57,7.5,15.200000000000001,62.86,1018,10.3 +2013,4,4,17,30,38,38,0,7.6000000000000005,15,75.86,1018,10.100000000000001 +2013,4,4,18,30,4,4,0,7.300000000000001,13.9,88.63,1019,10 +2013,4,4,19,30,0,0,0,7,13.3,101.86,1020,9.9 +2013,4,4,20,30,0,0,0,6.800000000000001,12.9,114.28,1021,9.9 +2013,4,4,21,30,0,0,0,6.800000000000001,12.5,125.83,1021,9.8 +2013,4,4,22,30,0,0,0,6.9,12.3,135.72,1022,9.8 +2013,4,4,23,30,0,0,0,7,12,142.59,1022,9.700000000000001 +2013,4,5,0,30,0,0,0,6.800000000000001,11.700000000000001,144.57,1022,9.5 +2013,4,5,1,30,0,0,0,6.6000000000000005,11.5,140.92000000000002,1022,9.5 +2013,4,5,2,30,0,0,0,6.4,11.3,132.95,1022,9.4 +2013,4,5,3,30,0,0,0,6.300000000000001,11.200000000000001,122.43,1022,9.4 +2013,4,5,4,30,0,0,0,6.300000000000001,11.200000000000001,110.55,1022,9.4 +2013,4,5,5,30,0,0,0,6.300000000000001,11.3,97.95,1023,9.5 +2013,4,5,6,30,53,33,220,6.2,11.9,84.83,1023,9.600000000000001 +2013,4,5,7,30,265,83,583,5.9,12.9,71.84,1023,9.600000000000001 +2013,4,5,8,30,498,106,758,5.2,14,58.870000000000005,1024,9.5 +2013,4,5,9,30,710,110,867,4.2,14.9,46.29,1024,9.5 +2013,4,5,10,30,869,117,915,3.3000000000000003,15.600000000000001,34.74,1024,9.4 +2013,4,5,11,30,966,120,940,2.3000000000000003,16.1,25.830000000000002,1023,9.200000000000001 +2013,4,5,12,30,992,122,945,1.4000000000000001,16.5,22.96,1022,8.9 +2013,4,5,13,30,948,119,939,1,16.8,28.07,1022,8.8 +2013,4,5,14,30,832,115,910,1.3,17,38.04,1021,9 +2013,4,5,15,30,540,221,496,1.5,17.1,49.99,1020,9.3 +2013,4,5,16,30,345,161,401,1.5,17,62.730000000000004,1020,9.600000000000001 +2013,4,5,17,30,167,75,370,1.4000000000000001,16.900000000000002,75.74,1020,9.9 +2013,4,5,18,30,7,7,0,1.7000000000000002,16,88.52,1020,10.4 +2013,4,5,19,30,0,0,0,2.3000000000000003,15.8,101.72,1020,10.5 +2013,4,5,20,30,0,0,0,2.6,15.8,114.12,1020,10.8 +2013,4,5,21,30,0,0,0,2.9000000000000004,15.8,125.62,1020,11 +2013,4,5,22,30,0,0,0,3.2,16,135.46,1020,11.3 +2013,4,5,23,30,0,0,0,3.4000000000000004,16.1,142.25,1019,11.5 +2013,4,6,0,30,0,0,0,3.7,16.3,144.19,1019,11.700000000000001 +2013,4,6,1,30,0,0,0,4.2,16.400000000000002,140.55,1019,12.100000000000001 +2013,4,6,2,30,0,0,0,4.7,16.5,132.61,1018,12.5 +2013,4,6,3,30,0,0,0,5.2,16.7,122.13,1018,12.8 +2013,4,6,4,30,0,0,0,5.6000000000000005,16.8,110.28,1018,13.200000000000001 +2013,4,6,5,30,0,0,0,5.9,17.1,97.7,1018,13.4 +2013,4,6,6,30,43,32,117,6.2,17.6,84.59,1018,13.700000000000001 +2013,4,6,7,30,40,40,0,6.4,18.3,71.60000000000001,1019,14.100000000000001 +2013,4,6,8,30,430,163,511,6.5,18.900000000000002,58.620000000000005,1019,14.4 +2013,4,6,9,30,438,328,159,6.4,19.3,46.01,1019,14.600000000000001 +2013,4,6,10,30,660,375,346,6.300000000000001,19.6,34.43,1019,14.9 +2013,4,6,11,30,686,445,267,6.2,19.8,25.46,1019,15.100000000000001 +2013,4,6,12,30,837,378,497,5.800000000000001,19.900000000000002,22.59,1018,15.3 +2013,4,6,13,30,917,141,877,5.5,20,27.79,1017,15.5 +2013,4,6,14,30,803,133,848,5.300000000000001,19.900000000000002,37.85,1017,15.600000000000001 +2013,4,6,15,30,633,119,797,5.2,19.900000000000002,49.85,1016,15.700000000000001 +2013,4,6,16,30,422,99,701,5.1000000000000005,19.700000000000003,62.61,1016,15.8 +2013,4,6,17,30,195,69,507,5.1000000000000005,19.6,75.62,1016,15.9 +2013,4,6,18,30,15,13,67,5.1000000000000005,19.200000000000003,88.41,1016,15.9 +2013,4,6,19,30,0,0,0,5.2,19.1,101.58,1016,16 +2013,4,6,20,30,0,0,0,5.4,19.1,113.95,1016,16.1 +2013,4,6,21,30,0,0,0,5.5,19.1,125.41,1016,16.3 +2013,4,6,22,30,0,0,0,5.6000000000000005,19.1,135.19,1016,16.400000000000002 +2013,4,6,23,30,0,0,0,5.6000000000000005,19.1,141.91,1016,16.6 +2013,4,7,0,30,0,0,0,5.6000000000000005,19.1,143.81,1015,16.7 +2013,4,7,1,30,0,0,0,5.6000000000000005,19.1,140.18,1015,16.8 +2013,4,7,2,30,0,0,0,5.5,19,132.27,1014,16.900000000000002 +2013,4,7,3,30,0,0,0,5.2,18.8,121.83,1014,17.1 +2013,4,7,4,30,0,0,0,5,18.7,110.01,1014,17.3 +2013,4,7,5,30,0,0,0,4.9,18.900000000000002,97.45,1015,17.400000000000002 +2013,4,7,6,30,15,15,0,5,19.5,84.36,1016,17.6 +2013,4,7,7,30,102,102,0,5.1000000000000005,20.1,71.36,1016,17.8 +2013,4,7,8,30,488,109,722,5.1000000000000005,20.5,58.370000000000005,1016,17.8 +2013,4,7,9,30,497,321,253,5,20.8,45.74,1017,17.900000000000002 +2013,4,7,10,30,676,374,365,5,21,34.12,1017,18 +2013,4,7,11,30,675,452,247,5.1000000000000005,21.1,25.1,1016,18.1 +2013,4,7,12,30,967,129,906,5.1000000000000005,21.200000000000003,22.23,1015,18.1 +2013,4,7,13,30,619,447,194,5.1000000000000005,21.1,27.52,1014,18.1 +2013,4,7,14,30,642,347,372,5.1000000000000005,21,37.660000000000004,1014,18.1 +2013,4,7,15,30,640,108,822,5.1000000000000005,20.8,49.7,1013,18.2 +2013,4,7,16,30,427,92,724,5.2,20.5,62.480000000000004,1013,18.2 +2013,4,7,17,30,197,67,522,5.300000000000001,20.3,75.51,1013,18.2 +2013,4,7,18,30,15,14,56,5.300000000000001,19.8,88.3,1013,18.5 +2013,4,7,19,30,0,0,0,5.6000000000000005,19.700000000000003,101.44,1013,18.6 +2013,4,7,20,30,0,0,0,5.9,19.8,113.78,1013,18.8 +2013,4,7,21,30,0,0,0,6,19.8,125.2,1013,18.8 +2013,4,7,22,30,0,0,0,5.9,19.900000000000002,134.92000000000002,1013,18.900000000000002 +2013,4,7,23,30,0,0,0,5.6000000000000005,19.900000000000002,141.58,1012,19 +2013,4,8,0,30,0,0,0,5.300000000000001,19.900000000000002,143.43,1012,19.1 +2013,4,8,1,30,0,0,0,5.1000000000000005,19.900000000000002,139.81,1012,19.200000000000003 +2013,4,8,2,30,0,0,0,5.2,19.900000000000002,131.94,1011,19.200000000000003 +2013,4,8,3,30,0,0,0,5.4,20,121.53,1011,19.200000000000003 +2013,4,8,4,30,0,0,0,5.6000000000000005,20,109.74000000000001,1011,19.200000000000003 +2013,4,8,5,30,0,0,0,5.800000000000001,20.1,97.2,1011,19.1 +2013,4,8,6,30,56,41,141,6,20.3,84.12,1011,19 +2013,4,8,7,30,257,107,465,6.1000000000000005,20.700000000000003,71.13,1012,19 +2013,4,8,8,30,477,145,630,6.1000000000000005,21,58.120000000000005,1012,18.900000000000002 +2013,4,8,9,30,680,155,748,6,21.3,45.480000000000004,1012,18.8 +2013,4,8,10,30,830,175,788,5.9,21.5,33.81,1012,18.8 +2013,4,8,11,30,918,186,807,5.800000000000001,21.700000000000003,24.73,1012,18.8 +2013,4,8,12,30,942,178,822,5.800000000000001,21.6,21.86,1011,18.900000000000002 +2013,4,8,13,30,736,399,378,5.9,21.5,27.25,1011,19 +2013,4,8,14,30,269,258,14,6.1000000000000005,21.400000000000002,37.47,1010,19.1 +2013,4,8,15,30,604,166,675,6.2,21.200000000000003,49.56,1010,19.200000000000003 +2013,4,8,16,30,395,144,542,6.2,21,62.36,1010,19.400000000000002 +2013,4,8,17,30,136,94,163,6.1000000000000005,20.900000000000002,75.39,1010,19.6 +2013,4,8,18,30,10,10,12,6.300000000000001,20.5,88.19,1010,19.900000000000002 +2013,4,8,19,30,0,0,0,6.7,20.5,101.31,1010,20 +2013,4,8,20,30,0,0,0,7.1000000000000005,20.5,113.62,1010,20 +2013,4,8,21,30,0,0,0,7.4,20.5,124.99000000000001,1010,19.900000000000002 +2013,4,8,22,30,0,0,0,7.5,20.5,134.65,1010,19.700000000000003 +2013,4,8,23,30,0,0,0,7.300000000000001,20.5,141.24,1009,19.6 +2013,4,9,0,30,0,0,0,7,20.400000000000002,143.06,1009,19.6 +2013,4,9,1,30,0,0,0,6.6000000000000005,20.3,139.44,1009,19.700000000000003 +2013,4,9,2,30,0,0,0,6.300000000000001,20.200000000000003,131.61,1009,19.8 +2013,4,9,3,30,0,0,0,6.2,20.1,121.24000000000001,1009,19.8 +2013,4,9,4,30,0,0,0,6.300000000000001,20,109.47,1009,19.8 +2013,4,9,5,30,0,0,0,6.4,20.1,96.95,1009,19.700000000000003 +2013,4,9,6,30,58,41,165,6.5,20.400000000000002,83.89,1009,19.700000000000003 +2013,4,9,7,30,264,99,502,6.800000000000001,20.8,70.89,1010,19.8 +2013,4,9,8,30,486,132,665,6.9,21.200000000000003,57.88,1010,19.8 +2013,4,9,9,30,677,165,727,6.800000000000001,21.6,45.21,1010,20 +2013,4,9,10,30,631,399,278,6.6000000000000005,21.900000000000002,33.51,1010,20.200000000000003 +2013,4,9,11,30,582,461,133,6.7,22.200000000000003,24.37,1010,20.6 +2013,4,9,12,30,702,467,253,7,22.400000000000002,21.5,1009,20.900000000000002 +2013,4,9,13,30,786,360,479,7.2,22.5,26.990000000000002,1008,21.1 +2013,4,9,14,30,624,362,329,7.4,22.5,37.29,1008,21.200000000000003 +2013,4,9,15,30,539,238,462,7.800000000000001,22.400000000000002,49.42,1007,21.200000000000003 +2013,4,9,16,30,50,50,0,8,22.1,62.24,1008,21.200000000000003 +2013,4,9,17,30,169,110,234,7.9,21.900000000000002,75.27,1008,21.1 +2013,4,9,18,30,7,7,0,7.7,21.3,88.07000000000001,1008,21 +2013,4,9,19,30,0,0,0,8,21.200000000000003,101.17,1008,21 +2013,4,9,20,30,0,0,0,8.3,21.200000000000003,113.45,1009,21.1 +2013,4,9,21,30,0,0,0,8.3,21.3,124.78,1009,21.1 +2013,4,9,22,30,0,0,0,8,21.200000000000003,134.38,1009,21.1 +2013,4,9,23,30,0,0,0,7.5,21.200000000000003,140.91,1008,21.1 +2013,4,10,0,30,0,0,0,7.1000000000000005,21.200000000000003,142.68,1008,21.1 +2013,4,10,1,30,0,0,0,6.9,21.1,139.07,1008,21.1 +2013,4,10,2,30,0,0,0,6.7,21.1,131.28,1008,21 +2013,4,10,3,30,0,0,0,6.7,21,120.94,1008,21 +2013,4,10,4,30,0,0,0,6.800000000000001,21,109.21000000000001,1008,21 +2013,4,10,5,30,0,0,0,6.9,21.1,96.7,1008,21 +2013,4,10,6,30,57,44,120,7,21.3,83.66,1008,21 +2013,4,10,7,30,250,123,385,7.1000000000000005,21.700000000000003,70.66,1008,21.200000000000003 +2013,4,10,8,30,392,213,335,7.2,22.1,57.64,1008,21.3 +2013,4,10,9,30,551,305,348,7.300000000000001,22.400000000000002,44.95,1009,21.3 +2013,4,10,10,30,630,402,273,7.1000000000000005,22.6,33.21,1009,21.3 +2013,4,10,11,30,679,458,241,6.800000000000001,22.8,24.01,1008,21.3 +2013,4,10,12,30,619,477,152,6.6000000000000005,22.8,21.14,1008,21.200000000000003 +2013,4,10,13,30,708,426,316,6.300000000000001,22.8,26.73,1008,21.200000000000003 +2013,4,10,14,30,431,371,76,5.9,22.5,37.11,1007,21.200000000000003 +2013,4,10,15,30,235,225,15,5.300000000000001,22,49.28,1007,21.200000000000003 +2013,4,10,16,30,67,67,0,4.7,21.5,62.120000000000005,1006,21.200000000000003 +2013,4,10,17,30,84,84,0,4.5,21.200000000000003,75.16,1006,21 +2013,4,10,18,30,7,7,5,4,20.6,87.96000000000001,1007,20.6 +2013,4,10,19,30,0,0,0,3.6,20.1,101.03,1007,20.1 +2013,4,10,20,30,0,0,0,3.2,19.6,113.28,1008,19.6 +2013,4,10,21,30,0,0,0,2.8000000000000003,18.8,124.57000000000001,1008,18.8 +2013,4,10,22,30,0,0,0,2.6,17.8,134.11,1008,17.8 +2013,4,10,23,30,0,0,0,3.9000000000000004,16.400000000000002,140.58,1008,16.400000000000002 +2013,4,11,0,30,0,0,0,6.1000000000000005,15,142.31,1008,15 +2013,4,11,1,30,0,0,0,7.800000000000001,13.700000000000001,138.71,1008,13.700000000000001 +2013,4,11,2,30,0,0,0,8.8,12.700000000000001,130.95,1009,12.700000000000001 +2013,4,11,3,30,0,0,0,9.200000000000001,12.100000000000001,120.65,1009,11.700000000000001 +2013,4,11,4,30,0,0,0,9.3,11.9,108.94,1010,11.200000000000001 +2013,4,11,5,30,0,0,0,9.4,11.9,96.46000000000001,1011,11.100000000000001 +2013,4,11,6,30,15,15,0,9.3,12,83.42,1012,11.100000000000001 +2013,4,11,7,30,22,22,0,9.1,12.3,70.43,1012,11.100000000000001 +2013,4,11,8,30,46,46,0,8.5,12.9,57.4,1012,11 +2013,4,11,9,30,98,98,0,7.4,13.700000000000001,44.7,1012,10.9 +2013,4,11,10,30,855,146,844,6.300000000000001,14.600000000000001,32.910000000000004,1012,10.8 +2013,4,11,11,30,962,139,899,5.5,15.700000000000001,23.66,1011,10.600000000000001 +2013,4,11,12,30,823,393,460,5.2,16.7,20.78,1011,10.4 +2013,4,11,13,30,961,121,938,4.7,17.400000000000002,26.47,1010,10.3 +2013,4,11,14,30,849,111,923,4,18.1,36.93,1009,10 +2013,4,11,15,30,671,106,864,3.5,18.6,49.14,1009,10 +2013,4,11,16,30,452,89,774,3.2,18.8,62,1009,10 +2013,4,11,17,30,215,64,585,3.1,18.900000000000002,75.04,1009,10.5 +2013,4,11,18,30,20,16,116,2.8000000000000003,18.1,87.84,1010,11.200000000000001 +2013,4,11,19,30,0,0,0,2.9000000000000004,17.900000000000002,100.89,1011,11.200000000000001 +2013,4,11,20,30,0,0,0,3,17.7,113.11,1011,11.5 +2013,4,11,21,30,0,0,0,2.9000000000000004,17.400000000000002,124.36,1012,11.700000000000001 +2013,4,11,22,30,0,0,0,2.6,17.2,133.85,1012,11.600000000000001 +2013,4,11,23,30,0,0,0,2.4000000000000004,16.900000000000002,140.24,1012,11.4 +2013,4,12,0,30,0,0,0,2.2,16.7,141.94,1012,11.3 +2013,4,12,1,30,0,0,0,2.2,16.400000000000002,138.35,1012,11.3 +2013,4,12,2,30,0,0,0,2.3000000000000003,16.2,130.62,1012,11.5 +2013,4,12,3,30,0,0,0,2.6,15.9,120.36,1013,11.700000000000001 +2013,4,12,4,30,0,0,0,3,15.700000000000001,108.68,1013,12 +2013,4,12,5,30,0,0,0,3.3000000000000003,15.8,96.21000000000001,1014,12.200000000000001 +2013,4,12,6,30,77,40,312,3.6,16.5,83.2,1015,12.4 +2013,4,12,7,30,299,78,650,3.7,17.5,70.2,1016,12.4 +2013,4,12,8,30,531,98,800,3.6,18.400000000000002,57.17,1016,12.3 +2013,4,12,9,30,737,108,881,3.6,19.200000000000003,44.44,1016,11.9 +2013,4,12,10,30,896,115,927,3.6,19.8,32.62,1016,11.8 +2013,4,12,11,30,990,118,950,3.5,20.3,23.3,1016,11.700000000000001 +2013,4,12,12,30,859,386,504,3.3000000000000003,20.6,20.43,1015,11.600000000000001 +2013,4,12,13,30,961,116,942,3.2,20.8,26.22,1015,11.700000000000001 +2013,4,12,14,30,843,111,914,3.3000000000000003,20.900000000000002,36.75,1014,11.9 +2013,4,12,15,30,669,101,865,3.6,20.700000000000003,49.01,1013,12 +2013,4,12,16,30,451,87,773,3.9000000000000004,20.400000000000002,61.88,1013,12.200000000000001 +2013,4,12,17,30,216,64,585,4.1000000000000005,20.200000000000003,74.93,1013,12.700000000000001 +2013,4,12,18,30,22,17,124,4.2,18.900000000000002,87.73,1013,13.3 +2013,4,12,19,30,0,0,0,4.3,18.6,100.75,1014,13.4 +2013,4,12,20,30,0,0,0,4.3,18.5,112.94,1014,13.600000000000001 +2013,4,12,21,30,0,0,0,4.2,18.400000000000002,124.15,1014,13.8 +2013,4,12,22,30,0,0,0,4.1000000000000005,18.3,133.58,1015,13.9 +2013,4,12,23,30,0,0,0,3.9000000000000004,18.3,139.91,1015,14.100000000000001 +2013,4,13,0,30,0,0,0,3.7,18.3,141.57,1015,14.3 +2013,4,13,1,30,0,0,0,3.8000000000000003,18.2,137.99,1015,14.5 +2013,4,13,2,30,0,0,0,4,18.1,130.3,1014,14.700000000000001 +2013,4,13,3,30,0,0,0,4.2,18,120.07000000000001,1014,15 +2013,4,13,4,30,0,0,0,4.3,17.900000000000002,108.42,1014,15.200000000000001 +2013,4,13,5,30,0,0,0,4.3,18.1,95.97,1014,15.3 +2013,4,13,6,30,77,42,282,4.5,18.900000000000002,82.97,1015,15.4 +2013,4,13,7,30,291,88,594,5,19.8,69.98,1015,15.700000000000001 +2013,4,13,8,30,413,209,374,5.300000000000001,20.3,56.94,1015,15.600000000000001 +2013,4,13,9,30,639,224,579,5.6000000000000005,20.700000000000003,44.19,1015,15.600000000000001 +2013,4,13,10,30,763,312,534,5.9,21,32.33,1015,15.700000000000001 +2013,4,13,11,30,803,382,457,6.1000000000000005,21.1,22.96,1014,15.600000000000001 +2013,4,13,12,30,969,165,856,6.2,21.200000000000003,20.080000000000002,1013,15.600000000000001 +2013,4,13,13,30,917,172,829,6.300000000000001,21.1,25.96,1012,15.5 +2013,4,13,14,30,797,174,776,6.300000000000001,21,36.58,1011,15.5 +2013,4,13,15,30,632,147,737,6.1000000000000005,20.900000000000002,48.870000000000005,1011,15.600000000000001 +2013,4,13,16,30,313,193,253,6,20.700000000000003,61.76,1011,15.9 +2013,4,13,17,30,195,96,378,5.9,20.6,74.81,1011,16.2 +2013,4,13,18,30,17,15,42,5.6000000000000005,19.900000000000002,87.61,1011,16.7 +2013,4,13,19,30,0,0,0,5.800000000000001,19.8,100.60000000000001,1011,17 +2013,4,13,20,30,0,0,0,6,19.8,112.77,1011,17.3 +2013,4,13,21,30,0,0,0,6,19.700000000000003,123.94,1011,17.6 +2013,4,13,22,30,0,0,0,5.7,19.5,133.31,1010,17.8 +2013,4,13,23,30,0,0,0,5,19.3,139.59,1009,17.8 +2013,4,14,0,30,0,0,0,4,19,141.21,1009,17.900000000000002 +2013,4,14,1,30,0,0,0,3,18.900000000000002,137.64000000000001,1008,17.900000000000002 +2013,4,14,2,30,0,0,0,2.3000000000000003,18.900000000000002,129.98,1008,17.900000000000002 +2013,4,14,3,30,0,0,0,1.9000000000000001,18.900000000000002,119.79,1008,18.1 +2013,4,14,4,30,0,0,0,1.8,18.900000000000002,108.17,1008,18.2 +2013,4,14,5,30,0,0,0,1.8,19.1,95.74000000000001,1008,18.3 +2013,4,14,6,30,68,52,126,1.8,19.700000000000003,82.75,1009,18.5 +2013,4,14,7,30,269,125,414,1.4000000000000001,20.3,69.75,1009,18.7 +2013,4,14,8,30,486,161,592,0.9,20.8,56.71,1009,18.8 +2013,4,14,9,30,681,180,696,0.8,21.3,43.95,1010,18.900000000000002 +2013,4,14,10,30,830,191,754,0.9,21.700000000000003,32.04,1009,19 +2013,4,14,11,30,920,196,784,1.2000000000000002,22,22.61,1009,19.1 +2013,4,14,12,30,960,157,852,1.7000000000000002,22.200000000000003,19.73,1009,19.1 +2013,4,14,13,30,914,154,844,2.3000000000000003,22.200000000000003,25.72,1008,19.200000000000003 +2013,4,14,14,30,802,144,818,2.9000000000000004,22.1,36.410000000000004,1007,19.1 +2013,4,14,15,30,637,121,783,3.4000000000000004,21.900000000000002,48.74,1007,19.1 +2013,4,14,16,30,429,102,689,3.8000000000000003,21.6,61.65,1007,19.1 +2013,4,14,17,30,205,72,505,4,21.3,74.7,1007,19.1 +2013,4,14,18,30,21,17,94,4.3,20.6,87.5,1007,19.1 +2013,4,14,19,30,0,0,0,4.6000000000000005,20.400000000000002,100.46000000000001,1008,19.200000000000003 +2013,4,14,20,30,0,0,0,4.9,20.3,112.60000000000001,1008,19.400000000000002 +2013,4,14,21,30,0,0,0,5,20.200000000000003,123.72,1008,19.5 +2013,4,14,22,30,0,0,0,5,20.200000000000003,133.04,1008,19.700000000000003 +2013,4,14,23,30,0,0,0,4.7,20.1,139.26,1008,19.8 +2013,4,15,0,30,0,0,0,4.4,20.1,140.85,1008,19.900000000000002 +2013,4,15,1,30,0,0,0,4.3,20.1,137.28,1008,20.1 +2013,4,15,2,30,0,0,0,4.3,20.1,129.66,1008,20.1 +2013,4,15,3,30,0,0,0,4.3,20.1,119.51,1009,20.1 +2013,4,15,4,30,0,0,0,4.3,20,107.91,1009,20 +2013,4,15,5,30,0,0,0,4.4,20.3,95.5,1010,20.3 +2013,4,15,6,30,80,48,244,4.5,20.900000000000002,82.53,1010,20.5 +2013,4,15,7,30,291,101,544,4.5,21.5,69.54,1011,20.8 +2013,4,15,8,30,275,235,72,4.2,22,56.49,1011,20.8 +2013,4,15,9,30,706,163,751,3.8000000000000003,22.3,43.71,1011,20.900000000000002 +2013,4,15,10,30,646,407,281,3.4000000000000004,22.5,31.76,1011,21 +2013,4,15,11,30,583,467,125,3,22.6,22.27,1011,21.1 +2013,4,15,12,30,533,458,79,2.9000000000000004,22.700000000000003,19.38,1011,21.1 +2013,4,15,13,30,377,353,27,3,22.5,25.48,1010,21.200000000000003 +2013,4,15,14,30,474,388,107,3.3000000000000003,22.3,36.24,1010,21.1 +2013,4,15,15,30,394,306,133,3.6,22.1,48.61,1010,21.1 +2013,4,15,16,30,265,204,128,4.1000000000000005,21.900000000000002,61.53,1010,21.1 +2013,4,15,17,30,60,60,0,4.3,21.8,74.59,1010,21.1 +2013,4,15,18,30,8,8,0,4.6000000000000005,21.3,87.38,1010,21.200000000000003 +2013,4,15,19,30,0,0,0,4.7,21.200000000000003,100.32000000000001,1010,21.200000000000003 +2013,4,15,20,30,0,0,0,4.9,21.200000000000003,112.43,1011,21.200000000000003 +2013,4,15,21,30,0,0,0,5,21.200000000000003,123.51,1011,21.200000000000003 +2013,4,15,22,30,0,0,0,4.9,21.1,132.78,1011,21.1 +2013,4,15,23,30,0,0,0,4.7,21.1,138.93,1011,21.1 +2013,4,16,0,30,0,0,0,4.5,21.1,140.49,1011,21.1 +2013,4,16,1,30,0,0,0,4.2,21.1,136.94,1011,21.1 +2013,4,16,2,30,0,0,0,4,21.1,129.34,1011,21.1 +2013,4,16,3,30,0,0,0,4,21,119.22,1011,21 +2013,4,16,4,30,0,0,0,4.1000000000000005,21.1,107.66,1012,21.1 +2013,4,16,5,30,0,0,0,4.5,21.3,95.27,1012,21.3 +2013,4,16,6,30,11,11,0,4.9,21.900000000000002,82.31,1013,21.8 +2013,4,16,7,30,135,128,20,5.2,22.400000000000002,69.32000000000001,1014,22 +2013,4,16,8,30,233,215,32,5.300000000000001,22.8,56.27,1014,22.1 +2013,4,16,9,30,437,343,129,5.300000000000001,23.1,43.47,1014,22 +2013,4,16,10,30,728,340,455,5.300000000000001,23.3,31.490000000000002,1015,22 +2013,4,16,11,30,661,470,206,5.2,23.3,21.93,1014,22 +2013,4,16,12,30,213,204,9,5.2,23.1,19.04,1014,21.900000000000002 +2013,4,16,13,30,554,450,115,5.4,22.900000000000002,25.240000000000002,1013,21.8 +2013,4,16,14,30,353,327,33,5.5,22.700000000000003,36.08,1013,21.8 +2013,4,16,15,30,83,83,0,5,22.6,48.49,1013,21.900000000000002 +2013,4,16,16,30,218,193,52,4.800000000000001,22.400000000000002,61.42,1013,21.900000000000002 +2013,4,16,17,30,38,38,0,4.800000000000001,22.3,74.47,1013,21.900000000000002 +2013,4,16,18,30,10,10,0,6.300000000000001,22,87.27,1013,21.900000000000002 +2013,4,16,19,30,0,0,0,6.9,22,100.18,1014,22 +2013,4,16,20,30,0,0,0,7.4,22,112.26,1014,22 +2013,4,16,21,30,0,0,0,7.9,22,123.3,1014,22 +2013,4,16,22,30,0,0,0,8.3,22,132.51,1013,22 +2013,4,16,23,30,0,0,0,8,21.900000000000002,138.61,1013,21.900000000000002 +2013,4,17,0,30,0,0,0,6.6000000000000005,21.8,140.13,1013,21.8 +2013,4,17,1,30,0,0,0,4.9,21.6,136.59,1013,21.6 +2013,4,17,2,30,0,0,0,3.8000000000000003,21.400000000000002,129.03,1014,21.400000000000002 +2013,4,17,3,30,0,0,0,3.5,21.3,118.95,1014,21.3 +2013,4,17,4,30,0,0,0,3.9000000000000004,21.3,107.41,1014,21.3 +2013,4,17,5,30,0,0,0,4.6000000000000005,21.5,95.04,1014,21.5 +2013,4,17,6,30,83,48,253,5.300000000000001,21.900000000000002,82.10000000000001,1014,21.8 +2013,4,17,7,30,77,77,0,5.7,22.400000000000002,69.11,1014,21.900000000000002 +2013,4,17,8,30,108,108,0,5.9,22.8,56.050000000000004,1014,21.900000000000002 +2013,4,17,9,30,214,208,8,6.2,23,43.24,1014,22 +2013,4,17,10,30,523,420,120,6.800000000000001,23.3,31.220000000000002,1014,22 +2013,4,17,11,30,415,384,33,7.300000000000001,23.400000000000002,21.6,1013,22.1 +2013,4,17,12,30,349,331,20,7.6000000000000005,23.400000000000002,18.7,1012,22.200000000000003 +2013,4,17,13,30,699,441,285,7.9,23.400000000000002,25,1011,22.200000000000003 +2013,4,17,14,30,750,252,616,8.200000000000001,23.400000000000002,35.92,1010,22.1 +2013,4,17,15,30,337,292,68,8.200000000000001,23.200000000000003,48.36,1010,22 +2013,4,17,16,30,297,203,195,8.1,23,61.31,1009,21.900000000000002 +2013,4,17,17,30,92,91,1,8,22.900000000000002,74.36,1009,21.8 +2013,4,17,18,30,14,13,18,7.9,22.6,87.15,1010,21.8 +2013,4,17,19,30,0,0,0,8.1,22.5,100.04,1010,21.700000000000003 +2013,4,17,20,30,0,0,0,8.3,22.400000000000002,112.09,1010,21.700000000000003 +2013,4,17,21,30,0,0,0,8,22.3,123.09,1010,21.700000000000003 +2013,4,17,22,30,0,0,0,7.4,22.1,132.24,1009,21.700000000000003 +2013,4,17,23,30,0,0,0,6.800000000000001,21.900000000000002,138.29,1009,21.8 +2013,4,18,0,30,0,0,0,6.5,21.8,139.78,1008,21.8 +2013,4,18,1,30,0,0,0,6.2,21.8,136.25,1008,21.8 +2013,4,18,2,30,0,0,0,6.300000000000001,21.8,128.72,1008,21.8 +2013,4,18,3,30,0,0,0,6.4,21.8,118.67,1007,21.8 +2013,4,18,4,30,0,0,0,6.5,21.8,107.16,1007,21.8 +2013,4,18,5,30,0,0,0,7,22,94.81,1007,21.900000000000002 +2013,4,18,6,30,60,49,76,7.5,22.3,81.89,1007,21.900000000000002 +2013,4,18,7,30,278,126,423,7.5,22.5,68.9,1007,22 +2013,4,18,8,30,476,194,501,6.9,22.6,55.84,1007,22 +2013,4,18,9,30,446,347,134,6.1000000000000005,22.900000000000002,43.01,1008,22 +2013,4,18,10,30,598,426,201,5.2,23.1,30.95,1008,22 +2013,4,18,11,30,558,463,102,4.7,23.1,21.27,1007,22 +2013,4,18,12,30,409,381,29,4.4,23,18.36,1007,22.1 +2013,4,18,13,30,406,375,34,4,22.8,24.77,1006,22 +2013,4,18,14,30,308,291,20,3.7,22.1,35.76,1006,21.6 +2013,4,18,15,30,186,183,4,4.2,21,48.24,1007,20.5 +2013,4,18,16,30,96,96,0,6.2,19.3,61.2,1008,18.6 +2013,4,18,17,30,36,36,0,7.6000000000000005,18.3,74.25,1009,16.1 +2013,4,18,18,30,9,9,0,10.4,15.600000000000001,87.03,1011,13.600000000000001 +2013,4,18,19,30,0,0,0,10.8,14.600000000000001,99.9,1013,12 +2013,4,18,20,30,0,0,0,10.600000000000001,14.3,111.92,1015,11.5 +2013,4,18,21,30,0,0,0,10.3,14.3,122.88,1016,11.100000000000001 +2013,4,18,22,30,0,0,0,10.3,14.5,131.98,1017,10.700000000000001 +2013,4,18,23,30,0,0,0,10.3,14.5,137.97,1017,10.100000000000001 +2013,4,19,0,30,0,0,0,10.200000000000001,14.3,139.43,1018,9.600000000000001 +2013,4,19,1,30,0,0,0,10,13.9,135.91,1018,9 +2013,4,19,2,30,0,0,0,9.8,13.5,128.41,1019,8.5 +2013,4,19,3,30,0,0,0,9.9,13.100000000000001,118.4,1020,8.1 +2013,4,19,4,30,0,0,0,10.200000000000001,12.700000000000001,106.92,1021,7.6000000000000005 +2013,4,19,5,30,0,0,0,10.700000000000001,12.3,94.59,1021,7.1000000000000005 +2013,4,19,6,30,35,35,0,10.700000000000001,12.3,81.67,1022,6.7 +2013,4,19,7,30,237,134,283,9.8,12.8,68.69,1022,6.300000000000001 +2013,4,19,8,30,456,195,463,8.3,13.8,55.63,1023,6.2 +2013,4,19,9,30,725,173,752,7.300000000000001,14.700000000000001,42.78,1024,6.2 +2013,4,19,10,30,588,426,188,6.800000000000001,15.5,30.69,1024,6.2 +2013,4,19,11,30,598,472,135,6.4,16.400000000000002,20.94,1023,6.1000000000000005 +2013,4,19,12,30,654,485,178,6.2,17.2,18.03,1023,6 +2013,4,19,13,30,876,302,631,6,17.900000000000002,24.54,1022,5.9 +2013,4,19,14,30,859,118,912,6,18.5,35.61,1021,5.7 +2013,4,19,15,30,687,105,872,5.9,18.900000000000002,48.11,1020,5.6000000000000005 +2013,4,19,16,30,473,87,799,5.7,18.900000000000002,61.08,1020,5.4 +2013,4,19,17,30,237,64,632,5.6000000000000005,18.8,74.13,1020,5.5 +2013,4,19,18,30,31,21,185,5.2,17.400000000000002,86.91,1021,6.300000000000001 +2013,4,19,19,30,0,0,0,5.2,16.8,99.76,1022,6.7 +2013,4,19,20,30,0,0,0,5.300000000000001,16.400000000000002,111.75,1022,7 +2013,4,19,21,30,0,0,0,5.5,15.9,122.66,1023,7.2 +2013,4,19,22,30,0,0,0,5.6000000000000005,15.4,131.71,1023,7.5 +2013,4,19,23,30,0,0,0,5.5,14.9,137.65,1023,7.7 +2013,4,20,0,30,0,0,0,5.4,14.5,139.08,1023,7.800000000000001 +2013,4,20,1,30,0,0,0,5.2,14.200000000000001,135.57,1023,7.800000000000001 +2013,4,20,2,30,0,0,0,5,13.9,128.11,1023,7.7 +2013,4,20,3,30,0,0,0,4.9,13.8,118.13,1023,7.5 +2013,4,20,4,30,0,0,0,4.800000000000001,13.700000000000001,106.67,1023,7.4 +2013,4,20,5,30,0,0,0,4.800000000000001,13.9,94.37,1023,7.300000000000001 +2013,4,20,6,30,105,50,370,5,14.9,81.47,1024,7.7 +2013,4,20,7,30,335,88,674,5.300000000000001,15.9,68.49,1024,7.7 +2013,4,20,8,30,570,109,813,5.300000000000001,16.6,55.43,1024,7.6000000000000005 +2013,4,20,9,30,772,120,885,5.2,17.1,42.56,1024,7.9 +2013,4,20,10,30,923,126,924,5,17.400000000000002,30.43,1024,8.5 +2013,4,20,11,30,1015,130,946,4.800000000000001,17.7,20.62,1023,9 +2013,4,20,12,30,923,334,618,4.6000000000000005,17.8,17.7,1022,9.5 +2013,4,20,13,30,981,126,939,4.5,17.900000000000002,24.32,1022,9.8 +2013,4,20,14,30,860,119,910,4.6000000000000005,17.8,35.45,1021,10.100000000000001 +2013,4,20,15,30,684,108,861,4.7,17.7,47.99,1020,10.5 +2013,4,20,16,30,466,94,768,4.6000000000000005,17.6,60.97,1020,10.600000000000001 +2013,4,20,17,30,231,69,588,4.6000000000000005,17.5,74.02,1020,10.700000000000001 +2013,4,20,18,30,31,22,157,4.3,16.7,86.79,1020,11 +2013,4,20,19,30,0,0,0,4.5,16.400000000000002,99.61,1021,11.200000000000001 +2013,4,20,20,30,0,0,0,4.9,16.5,111.58,1021,11.4 +2013,4,20,21,30,0,0,0,5.1000000000000005,16.6,122.45,1021,11.600000000000001 +2013,4,20,22,30,0,0,0,5,16.7,131.45,1021,11.700000000000001 +2013,4,20,23,30,0,0,0,5,16.900000000000002,137.34,1021,11.9 +2013,4,21,0,30,0,0,0,5.2,17,138.74,1020,12.100000000000001 +2013,4,21,1,30,0,0,0,5.6000000000000005,17.3,135.24,1019,12.5 +2013,4,21,2,30,0,0,0,5.9,17.5,127.81,1019,13 +2013,4,21,3,30,0,0,0,5.800000000000001,17.6,117.86,1019,13.4 +2013,4,21,4,30,0,0,0,5.4,17.7,106.44,1019,13.600000000000001 +2013,4,21,5,30,0,0,0,5.1000000000000005,18.1,94.15,1020,13.8 +2013,4,21,6,30,63,53,67,5,18.7,81.27,1021,14 +2013,4,21,7,30,230,142,240,4.9,19.3,68.3,1021,14.100000000000001 +2013,4,21,8,30,271,238,59,4.7,19.6,55.230000000000004,1022,13.9 +2013,4,21,9,30,319,294,33,4.6000000000000005,19.900000000000002,42.35,1022,14 +2013,4,21,10,30,597,428,195,4.5,20.1,30.18,1022,14.100000000000001 +2013,4,21,11,30,670,474,209,4.3,20.3,20.3,1021,14.200000000000001 +2013,4,21,12,30,732,473,272,4.1000000000000005,20.400000000000002,17.37,1021,14.200000000000001 +2013,4,21,13,30,940,147,869,4.1000000000000005,20.5,24.1,1020,14.3 +2013,4,21,14,30,826,135,846,4.3,20.400000000000002,35.300000000000004,1020,14.3 +2013,4,21,15,30,657,124,794,4.5,20.200000000000003,47.870000000000005,1019,14.3 +2013,4,21,16,30,446,104,702,4.7,20,60.870000000000005,1019,14.4 +2013,4,21,17,30,220,76,521,4.800000000000001,19.8,73.91,1019,14.4 +2013,4,21,18,30,30,23,126,4.800000000000001,18.900000000000002,86.68,1019,14.600000000000001 +2013,4,21,19,30,0,0,0,4.800000000000001,18.6,99.47,1019,14.700000000000001 +2013,4,21,20,30,0,0,0,4.800000000000001,18.5,111.41,1020,14.8 +2013,4,21,21,30,0,0,0,4.5,18.400000000000002,122.24000000000001,1020,14.700000000000001 +2013,4,21,22,30,0,0,0,4.1000000000000005,18.5,131.19,1020,14.700000000000001 +2013,4,21,23,30,0,0,0,3.6,18.6,137.02,1020,14.600000000000001 +2013,4,22,0,30,0,0,0,3.1,18.6,138.4,1019,14.600000000000001 +2013,4,22,1,30,0,0,0,2.8000000000000003,18.7,134.91,1019,14.600000000000001 +2013,4,22,2,30,0,0,0,2.7,18.7,127.51,1019,14.700000000000001 +2013,4,22,3,30,0,0,0,2.7,18.7,117.60000000000001,1019,14.9 +2013,4,22,4,30,0,0,0,2.7,18.6,106.2,1018,15 +2013,4,22,5,30,0,0,0,2.6,18.7,93.93,1019,15.200000000000001 +2013,4,22,6,30,104,51,337,2.6,19.3,81.07000000000001,1019,15.3 +2013,4,22,7,30,323,90,624,2.7,20.1,68.1,1020,15.4 +2013,4,22,8,30,549,111,764,2.6,20.5,55.03,1020,15.4 +2013,4,22,9,30,746,127,836,2.5,20.900000000000002,42.14,1020,15.4 +2013,4,22,10,30,896,136,877,2.3000000000000003,21.200000000000003,29.94,1020,15.5 +2013,4,22,11,30,984,141,897,2.3000000000000003,21.400000000000002,19.990000000000002,1019,15.5 +2013,4,22,12,30,1004,140,904,2.5,21.5,17.05,1018,15.600000000000001 +2013,4,22,13,30,954,136,895,2.8000000000000003,21.400000000000002,23.88,1018,15.600000000000001 +2013,4,22,14,30,841,129,871,3.1,21.3,35.160000000000004,1017,15.700000000000001 +2013,4,22,15,30,669,115,824,3.6,21.1,47.76,1016,15.8 +2013,4,22,16,30,457,98,734,4,20.700000000000003,60.76,1016,16 +2013,4,22,17,30,228,73,557,4.2,20.5,73.8,1016,16.2 +2013,4,22,18,30,32,23,148,4.6000000000000005,19.700000000000003,86.56,1016,16.400000000000002 +2013,4,22,19,30,0,0,0,4.9,19.400000000000002,99.33,1016,16.7 +2013,4,22,20,30,0,0,0,5.1000000000000005,19.400000000000002,111.24000000000001,1016,16.900000000000002 +2013,4,22,21,30,0,0,0,5.300000000000001,19.400000000000002,122.03,1016,17.1 +2013,4,22,22,30,0,0,0,5.300000000000001,19.400000000000002,130.93,1016,17.3 +2013,4,22,23,30,0,0,0,5.4,19.400000000000002,136.71,1015,17.6 +2013,4,23,0,30,0,0,0,5.2,19.5,138.07,1015,17.900000000000002 +2013,4,23,1,30,0,0,0,5.1000000000000005,19.5,134.58,1014,18.2 +2013,4,23,2,30,0,0,0,4.9,19.6,127.22,1014,18.5 +2013,4,23,3,30,0,0,0,4.800000000000001,19.8,117.34,1014,18.7 +2013,4,23,4,30,0,0,0,4.9,19.900000000000002,105.97,1015,18.8 +2013,4,23,5,30,0,0,0,5.2,20.3,93.72,1015,18.900000000000002 +2013,4,23,6,30,106,51,350,5.5,20.900000000000002,80.87,1015,19 +2013,4,23,7,30,197,152,119,5.7,21.5,67.91,1016,19.1 +2013,4,23,8,30,201,194,11,5.6000000000000005,22,54.84,1016,19.200000000000003 +2013,4,23,9,30,557,335,298,5.300000000000001,22.400000000000002,41.93,1016,19.200000000000003 +2013,4,23,10,30,884,131,867,4.7,22.700000000000003,29.7,1016,19.400000000000002 +2013,4,23,11,30,665,478,199,4,22.900000000000002,19.68,1016,19.700000000000003 +2013,4,23,12,30,980,154,862,3.4000000000000004,23,16.73,1015,19.8 +2013,4,23,13,30,929,149,852,3.1,23,23.67,1014,19.900000000000002 +2013,4,23,14,30,648,368,342,3.4000000000000004,22.900000000000002,35.01,1014,20 +2013,4,23,15,30,501,291,312,3.8000000000000003,22.6,47.64,1013,20 +2013,4,23,16,30,277,210,136,4,22.400000000000002,60.65,1013,20.200000000000003 +2013,4,23,17,30,185,92,333,4,22.200000000000003,73.69,1013,20.400000000000002 +2013,4,23,18,30,14,14,0,3.8000000000000003,21.6,86.45,1013,20.700000000000003 +2013,4,23,19,30,0,0,0,3.8000000000000003,21.400000000000002,99.19,1014,21 +2013,4,23,20,30,0,0,0,3.7,21.400000000000002,111.07000000000001,1014,21.1 +2013,4,23,21,30,0,0,0,3.6,21.5,121.82000000000001,1015,21.1 +2013,4,23,22,30,0,0,0,3.5,21.5,130.67000000000002,1015,21.1 +2013,4,23,23,30,0,0,0,3.5,21.6,136.41,1015,21.1 +2013,4,24,0,30,0,0,0,3.5,21.5,137.73,1015,21.200000000000003 +2013,4,24,1,30,0,0,0,3.4000000000000004,21.200000000000003,134.26,1015,21.1 +2013,4,24,2,30,0,0,0,3.2,20.5,126.93,1015,20.5 +2013,4,24,3,30,0,0,0,3.5,19.1,117.08,1016,19.1 +2013,4,24,4,30,0,0,0,5.6000000000000005,17.2,105.74000000000001,1017,17.2 +2013,4,24,5,30,0,0,0,8.200000000000001,15.3,93.51,1019,15.3 +2013,4,24,6,30,39,39,0,9.4,14.100000000000001,80.68,1020,13.5 +2013,4,24,7,30,54,54,0,9.4,14,67.72,1021,12.3 +2013,4,24,8,30,128,128,0,9,14.600000000000001,54.65,1021,12.100000000000001 +2013,4,24,9,30,311,289,29,8.6,15.200000000000001,41.730000000000004,1021,12.200000000000001 +2013,4,24,10,30,466,405,70,8.4,15.9,29.46,1021,12.3 +2013,4,24,11,30,164,160,4,8,16.6,19.38,1021,12.3 +2013,4,24,12,30,307,292,15,7.4,17.3,16.42,1021,12.3 +2013,4,24,13,30,404,375,33,7,18,23.46,1020,12.3 +2013,4,24,14,30,342,319,28,6.800000000000001,18.5,34.87,1019,12.4 +2013,4,24,15,30,236,227,14,5.7,18.7,47.52,1019,12.700000000000001 +2013,4,24,16,30,134,134,0,4.2,18.3,60.54,1020,12.700000000000001 +2013,4,24,17,30,164,104,212,3.7,17.900000000000002,73.58,1021,13.4 +2013,4,24,18,30,22,20,43,5.5,17.6,86.33,1021,14.4 +2013,4,24,19,30,0,0,0,5.7,17.900000000000002,99.05,1022,14.700000000000001 +2013,4,24,20,30,0,0,0,5.9,18.2,110.89,1022,14.700000000000001 +2013,4,24,21,30,0,0,0,6.300000000000001,18.400000000000002,121.61,1022,14.600000000000001 +2013,4,24,22,30,0,0,0,6.7,18.2,130.41,1022,14.4 +2013,4,24,23,30,0,0,0,6.800000000000001,17.900000000000002,136.1,1022,14.4 +2013,4,25,0,30,0,0,0,6.800000000000001,17.5,137.4,1022,14.4 +2013,4,25,1,30,0,0,0,7,17.1,133.94,1022,14.3 +2013,4,25,2,30,0,0,0,7.300000000000001,16.7,126.64,1022,14.200000000000001 +2013,4,25,3,30,0,0,0,7.6000000000000005,16.400000000000002,116.83,1023,14.100000000000001 +2013,4,25,4,30,0,0,0,7.800000000000001,16,105.51,1023,13.8 +2013,4,25,5,30,0,0,0,7.7,15.600000000000001,93.31,1024,13.5 +2013,4,25,6,30,100,62,233,7.6000000000000005,15.4,80.49,1025,13.4 +2013,4,25,7,30,96,96,0,7.5,15.5,67.54,1026,13.200000000000001 +2013,4,25,8,30,153,153,0,7.5,15.8,54.47,1026,13.200000000000001 +2013,4,25,9,30,43,43,0,7.5,16.3,41.53,1026,13.4 +2013,4,25,10,30,86,86,0,7.300000000000001,16.900000000000002,29.23,1026,13.600000000000001 +2013,4,25,11,30,174,169,5,6.9,17.6,19.080000000000002,1025,13.9 +2013,4,25,12,30,174,168,5,6.4,18.5,16.11,1024,14.100000000000001 +2013,4,25,13,30,302,288,15,6.1000000000000005,19.3,23.26,1023,14.3 +2013,4,25,14,30,233,225,9,5.7,19.900000000000002,34.730000000000004,1023,14.700000000000001 +2013,4,25,15,30,210,205,8,5.5,20.200000000000003,47.410000000000004,1023,15 +2013,4,25,16,30,119,119,0,5.5,20.200000000000003,60.44,1023,15.3 +2013,4,25,17,30,67,67,0,5.5,20.200000000000003,73.47,1022,15.600000000000001 +2013,4,25,18,30,14,14,0,5.2,19.5,86.21000000000001,1023,16.2 +2013,4,25,19,30,0,0,0,4.800000000000001,19.3,98.9,1023,16.7 +2013,4,25,20,30,0,0,0,4.6000000000000005,19.3,110.72,1024,17.2 +2013,4,25,21,30,0,0,0,4.6000000000000005,19.3,121.4,1024,17.6 +2013,4,25,22,30,0,0,0,4.7,19.3,130.15,1023,18 +2013,4,25,23,30,0,0,0,4.800000000000001,19.3,135.8,1022,18.3 +2013,4,26,0,30,0,0,0,4.9,19.400000000000002,137.08,1021,18.6 +2013,4,26,1,30,0,0,0,5.1000000000000005,19.5,133.63,1021,18.900000000000002 +2013,4,26,2,30,0,0,0,5.2,19.6,126.36,1021,19.1 +2013,4,26,3,30,0,0,0,5.2,19.6,116.58,1020,19.3 +2013,4,26,4,30,0,0,0,4.9,19.700000000000003,105.29,1021,19.6 +2013,4,26,5,30,0,0,0,4.7,20.1,93.11,1021,19.8 +2013,4,26,6,30,59,57,11,4.6000000000000005,20.8,80.31,1022,20.1 +2013,4,26,7,30,203,156,122,4.6000000000000005,21.400000000000002,67.36,1023,20.3 +2013,4,26,8,30,150,150,0,4.5,21.900000000000002,54.29,1023,20.400000000000002 +2013,4,26,9,30,208,203,7,4.6000000000000005,22.3,41.34,1023,20.5 +2013,4,26,10,30,242,232,10,4.800000000000001,22.6,29.01,1023,20.700000000000003 +2013,4,26,11,30,444,406,40,5.1000000000000005,22.700000000000003,18.79,1022,20.700000000000003 +2013,4,26,12,30,804,423,397,5.2,22.8,15.8,1022,20.8 +2013,4,26,13,30,515,441,81,5.4,22.700000000000003,23.06,1021,20.8 +2013,4,26,14,30,815,141,819,5.5,22.6,34.59,1020,20.8 +2013,4,26,15,30,648,131,762,5.5,22.400000000000002,47.300000000000004,1020,20.8 +2013,4,26,16,30,349,192,317,5.4,22.200000000000003,60.33,1020,20.8 +2013,4,26,17,30,174,102,252,5.300000000000001,22,73.36,1020,20.8 +2013,4,26,18,30,34,25,129,5.1000000000000005,21.5,86.09,1020,20.8 +2013,4,26,19,30,0,0,0,4.9,21.400000000000002,98.76,1020,20.900000000000002 +2013,4,26,20,30,0,0,0,4.4,21.3,110.55,1021,20.8 +2013,4,26,21,30,0,0,0,4.2,21.3,121.19,1021,20.700000000000003 +2013,4,26,22,30,0,0,0,4.2,21.200000000000003,129.9,1020,20.6 +2013,4,26,23,30,0,0,0,4.4,21,135.5,1020,20.6 +2013,4,27,0,30,0,0,0,4.5,20.900000000000002,136.76,1019,20.6 +2013,4,27,1,30,0,0,0,4.3,20.900000000000002,133.32,1018,20.700000000000003 +2013,4,27,2,30,0,0,0,3.8000000000000003,20.8,126.08,1018,20.8 +2013,4,27,3,30,0,0,0,3.3000000000000003,20.8,116.33,1018,20.8 +2013,4,27,4,30,0,0,0,2.9000000000000004,20.700000000000003,105.07000000000001,1018,20.700000000000003 +2013,4,27,5,30,0,0,0,2.7,20.900000000000002,92.91,1019,20.900000000000002 +2013,4,27,6,30,78,61,97,2.6,21.3,80.13,1020,21 +2013,4,27,7,30,88,88,0,2.5,21.700000000000003,67.19,1020,21.1 +2013,4,27,8,30,258,234,41,2.5,22.1,54.11,1020,21.200000000000003 +2013,4,27,9,30,298,281,24,2.7,22.400000000000002,41.160000000000004,1020,21.200000000000003 +2013,4,27,10,30,590,436,176,2.9000000000000004,22.6,28.79,1020,21.3 +2013,4,27,11,30,611,480,138,3.2,22.6,18.5,1020,21.400000000000002 +2013,4,27,12,30,806,423,398,3.4000000000000004,22.6,15.5,1019,21.400000000000002 +2013,4,27,13,30,897,197,760,3.6,22.6,22.86,1018,21.400000000000002 +2013,4,27,14,30,685,333,427,3.7,22.5,34.46,1017,21.3 +2013,4,27,15,30,291,268,33,3.8000000000000003,22.3,47.19,1017,21.3 +2013,4,27,16,30,109,109,0,3.9000000000000004,22,60.230000000000004,1017,21.3 +2013,4,27,17,30,45,45,0,3.9000000000000004,21.900000000000002,73.26,1017,21.3 +2013,4,27,18,30,16,16,0,3.7,21.5,85.98,1016,21.400000000000002 +2013,4,27,19,30,0,0,0,3.4000000000000004,21.3,98.62,1017,21.3 +2013,4,27,20,30,0,0,0,3.1,21.3,110.38,1018,21.3 +2013,4,27,21,30,0,0,0,3.2,21.3,120.98,1018,21.200000000000003 +2013,4,27,22,30,0,0,0,4,21.200000000000003,129.64000000000001,1017,21 +2013,4,27,23,30,0,0,0,4.4,21.1,135.2,1016,20.8 +2013,4,28,0,30,0,0,0,4.3,21,136.44,1015,20.6 +2013,4,28,1,30,0,0,0,3.9000000000000004,20.900000000000002,133.01,1015,20.5 +2013,4,28,2,30,0,0,0,3.8000000000000003,20.8,125.8,1015,20.5 +2013,4,28,3,30,0,0,0,3.6,20.700000000000003,116.09,1015,20.5 +2013,4,28,4,30,0,0,0,3.3000000000000003,20.6,104.86,1015,20.200000000000003 +2013,4,28,5,30,0,0,0,3.2,20.5,92.72,1015,20 +2013,4,28,6,30,27,27,0,3.5,20.700000000000003,79.95,1016,19.900000000000002 +2013,4,28,7,30,34,34,0,3.8000000000000003,20.8,67.02,1016,19.8 +2013,4,28,8,30,397,255,240,3.7,21,53.94,1017,19.8 +2013,4,28,9,30,569,339,304,3.5,21.3,40.980000000000004,1016,19.700000000000003 +2013,4,28,10,30,755,349,463,3.1,21.700000000000003,28.57,1016,19.8 +2013,4,28,11,30,930,217,751,2.5,22.1,18.22,1016,19.900000000000002 +2013,4,28,12,30,779,467,323,1.8,22.5,15.200000000000001,1015,20 +2013,4,28,13,30,721,443,301,1.5,22.700000000000003,22.67,1015,20.1 +2013,4,28,14,30,635,381,308,1.4000000000000001,22.700000000000003,34.33,1014,20.1 +2013,4,28,15,30,309,280,43,1.5,22.6,47.08,1014,20.1 +2013,4,28,16,30,272,213,118,1.7000000000000002,22.400000000000002,60.120000000000005,1013,20.1 +2013,4,28,17,30,61,61,0,1.8,22.200000000000003,73.15,1013,20.200000000000003 +2013,4,28,18,30,21,21,0,2.6,21.5,85.86,1013,20.200000000000003 +2013,4,28,19,30,0,0,0,3.1,21.3,98.48,1014,20.200000000000003 +2013,4,28,20,30,0,0,0,3.4000000000000004,21.200000000000003,110.21000000000001,1014,20.200000000000003 +2013,4,28,21,30,0,0,0,3.4000000000000004,21.1,120.77,1014,20.200000000000003 +2013,4,28,22,30,0,0,0,3.3000000000000003,21,129.39000000000001,1014,20.200000000000003 +2013,4,28,23,30,0,0,0,3.2,20.8,134.91,1014,20.200000000000003 +2013,4,29,0,30,0,0,0,3.1,20.700000000000003,136.13,1013,20.200000000000003 +2013,4,29,1,30,0,0,0,3.1,20.5,132.71,1013,20.200000000000003 +2013,4,29,2,30,0,0,0,3,20.400000000000002,125.53,1013,20.3 +2013,4,29,3,30,0,0,0,2.9000000000000004,20.400000000000002,115.85000000000001,1012,20.3 +2013,4,29,4,30,0,0,0,2.8000000000000003,20.400000000000002,104.65,1013,20.3 +2013,4,29,5,30,0,0,0,2.7,20.700000000000003,92.53,1013,20.3 +2013,4,29,6,30,69,62,39,2.6,21.3,79.78,1014,20.400000000000002 +2013,4,29,7,30,265,144,308,2.7,21.8,66.85,1014,20.400000000000002 +2013,4,29,8,30,444,234,356,2.7,22.1,53.78,1014,20.3 +2013,4,29,9,30,367,327,53,2.7,22.400000000000002,40.800000000000004,1015,20.400000000000002 +2013,4,29,10,30,681,416,302,2.8000000000000003,22.5,28.37,1014,20.5 +2013,4,29,11,30,702,477,236,3.1,22.6,17.95,1014,20.6 +2013,4,29,12,30,741,479,271,3.3000000000000003,22.6,14.9,1013,20.6 +2013,4,29,13,30,596,465,141,3.6,22.6,22.48,1012,20.700000000000003 +2013,4,29,14,30,427,374,63,3.8000000000000003,22.6,34.2,1012,20.8 +2013,4,29,15,30,200,196,6,3.9000000000000004,22.5,46.97,1011,20.8 +2013,4,29,16,30,236,205,63,3.8000000000000003,22.400000000000002,60.02,1011,20.8 +2013,4,29,17,30,112,105,24,3.7,22.3,73.04,1011,20.900000000000002 +2013,4,29,18,30,17,17,0,3.5,21.700000000000003,85.74,1011,20.900000000000002 +2013,4,29,19,30,0,0,0,3.2,21.5,98.34,1011,20.900000000000002 +2013,4,29,20,30,0,0,0,3,21.5,110.04,1011,21 +2013,4,29,21,30,0,0,0,3.4000000000000004,21.5,120.57000000000001,1012,21.200000000000003 +2013,4,29,22,30,0,0,0,3.8000000000000003,21.400000000000002,129.14000000000001,1011,21.200000000000003 +2013,4,29,23,30,0,0,0,4,21.3,134.62,1011,21.1 +2013,4,30,0,30,0,0,0,4.1000000000000005,21.3,135.82,1010,20.900000000000002 +2013,4,30,1,30,0,0,0,4.1000000000000005,21.200000000000003,132.41,1010,20.700000000000003 +2013,4,30,2,30,0,0,0,3.9000000000000004,21.200000000000003,125.26,1010,20.6 +2013,4,30,3,30,0,0,0,3.7,21.1,115.62,1010,20.6 +2013,4,30,4,30,0,0,0,3.7,21.1,104.44,1010,20.5 +2013,4,30,5,30,0,0,0,4,21.200000000000003,92.34,1010,20.6 +2013,4,30,6,30,41,41,0,4.4,21.5,79.61,1010,20.8 +2013,4,30,7,30,256,151,265,4.7,21.8,66.69,1010,21 +2013,4,30,8,30,206,199,12,5,22,53.620000000000005,1011,21.200000000000003 +2013,4,30,9,30,297,279,23,5.300000000000001,22.3,40.63,1010,21.3 +2013,4,30,10,30,751,356,448,5.6000000000000005,22.5,28.16,1010,21.200000000000003 +2013,4,30,11,30,706,478,239,5.800000000000001,22.6,17.68,1010,21.1 +2013,4,30,12,30,630,494,141,5.800000000000001,22.6,14.61,1009,21 +2013,4,30,13,30,772,399,402,5.6000000000000005,22.5,22.3,1008,20.8 +2013,4,30,14,30,794,176,746,5.4,22.3,34.07,1008,20.6 +2013,4,30,15,30,626,170,666,5.300000000000001,22.200000000000003,46.86,1008,20.400000000000002 +2013,4,30,16,30,310,213,193,5.1000000000000005,22,59.92,1008,20.3 +2013,4,30,17,30,132,112,69,5,21.900000000000002,72.93,1008,20.3 +2013,4,30,18,30,30,26,61,4.5,21.6,85.63,1009,20.200000000000003 +2013,4,30,19,30,0,0,0,4.5,21.400000000000002,98.2,1009,20.200000000000003 +2013,4,30,20,30,0,0,0,4.6000000000000005,21.400000000000002,109.87,1009,20.3 +2013,4,30,21,30,0,0,0,4.4,21.5,120.36,1009,20.3 +2013,4,30,22,30,0,0,0,4.2,21.5,128.89000000000001,1009,20.3 +2013,4,30,23,30,0,0,0,4,21.5,134.33,1009,20.3 +2013,5,1,0,30,0,0,0,3.7,21.5,135.51,1009,20.400000000000002 +2013,5,1,1,30,0,0,0,3.3000000000000003,21.400000000000002,132.12,1008,20.400000000000002 +2013,5,1,2,30,0,0,0,2.9000000000000004,21.400000000000002,125,1008,20.400000000000002 +2013,5,1,3,30,0,0,0,2.8000000000000003,21.400000000000002,115.39,1008,20.5 +2013,5,1,4,30,0,0,0,2.8000000000000003,21.3,104.24000000000001,1009,20.5 +2013,5,1,5,30,0,0,0,2.9000000000000004,21.6,92.16,1010,20.6 +2013,5,1,6,30,119,63,303,2.9000000000000004,22.1,79.44,1011,20.700000000000003 +2013,5,1,7,30,328,108,553,2.8000000000000003,22.5,66.53,1011,20.8 +2013,5,1,8,30,542,132,689,2.6,22.900000000000002,53.46,1012,20.8 +2013,5,1,9,30,550,353,259,2.3000000000000003,23.200000000000003,40.46,1012,20.8 +2013,5,1,10,30,869,161,801,2.1,23.400000000000002,27.97,1012,20.8 +2013,5,1,11,30,952,166,824,1.8,23.6,17.41,1012,20.8 +2013,5,1,12,30,977,149,854,1.7000000000000002,23.700000000000003,14.32,1011,20.8 +2013,5,1,13,30,927,147,841,1.5,23.700000000000003,22.11,1011,20.700000000000003 +2013,5,1,14,30,814,140,812,1.3,23.700000000000003,33.94,1011,20.700000000000003 +2013,5,1,15,30,650,122,770,1,23.6,46.76,1011,20.6 +2013,5,1,16,30,445,108,672,0.9,23.5,59.81,1011,20.5 +2013,5,1,17,30,226,81,492,0.9,23.400000000000002,72.82000000000001,1011,20.5 +2013,5,1,18,30,39,28,144,1.3,22.700000000000003,85.51,1012,20.8 +2013,5,1,19,30,0,0,0,1.8,22.3,98.05,1012,20.6 +2013,5,1,20,30,0,0,0,2.1,22.1,109.7,1012,20.6 +2013,5,1,21,30,0,0,0,2.3000000000000003,21.900000000000002,120.16,1012,20.5 +2013,5,1,22,30,0,0,0,2.3000000000000003,21.8,128.65,1012,20.400000000000002 +2013,5,1,23,30,0,0,0,2.1,21.6,134.04,1012,20.400000000000002 +2013,5,2,0,30,0,0,0,1.8,21.400000000000002,135.21,1012,20.3 +2013,5,2,1,30,0,0,0,1.7000000000000002,21.3,131.83,1012,20.400000000000002 +2013,5,2,2,30,0,0,0,2,21.200000000000003,124.74000000000001,1012,20.400000000000002 +2013,5,2,3,30,0,0,0,2.5,21.1,115.16,1012,20.5 +2013,5,2,4,30,0,0,0,3.2,21,104.04,1013,20.6 +2013,5,2,5,30,0,0,0,3.8000000000000003,21.1,91.98,1013,20.6 +2013,5,2,6,30,63,62,5,4.2,21.6,79.28,1014,20.5 +2013,5,2,7,30,180,157,57,4.4,22.1,66.38,1014,20.200000000000003 +2013,5,2,8,30,546,131,696,4.6000000000000005,22.700000000000003,53.31,1015,19.900000000000002 +2013,5,2,9,30,747,117,826,4.6000000000000005,23.200000000000003,40.300000000000004,1016,19.700000000000003 +2013,5,2,10,30,891,121,870,4.7,23.5,27.78,1016,19.3 +2013,5,2,11,30,294,280,15,4.7,23.900000000000002,17.150000000000002,1016,19 +2013,5,2,12,30,136,136,0,4.4,24.200000000000003,14.040000000000001,1015,18.8 +2013,5,2,13,30,511,441,75,4.1000000000000005,24.400000000000002,21.94,1015,18.8 +2013,5,2,14,30,640,382,311,4.2,24.3,33.82,1015,18.900000000000002 +2013,5,2,15,30,180,177,3,4.9,24,46.65,1014,18.7 +2013,5,2,16,30,93,93,0,6.1000000000000005,23.400000000000002,59.71,1015,18.3 +2013,5,2,17,30,96,96,0,6.800000000000001,23,72.71000000000001,1015,17.8 +2013,5,2,18,30,18,18,0,8.5,21.1,85.39,1017,17.3 +2013,5,2,19,30,0,0,0,9.700000000000001,19.5,97.91,1018,16.400000000000002 +2013,5,2,20,30,0,0,0,10.4,17.7,109.54,1019,15 +2013,5,2,21,30,0,0,0,10.4,16.2,119.95,1020,13.700000000000001 +2013,5,2,22,30,0,0,0,10.200000000000001,15.100000000000001,128.4,1020,12.600000000000001 +2013,5,2,23,30,0,0,0,9.9,14.3,133.76,1019,11.8 +2013,5,3,0,30,0,0,0,9.700000000000001,13.600000000000001,134.91,1019,11.3 +2013,5,3,1,30,0,0,0,9.600000000000001,13.100000000000001,131.55,1019,10.8 +2013,5,3,2,30,0,0,0,9.600000000000001,12.700000000000001,124.49000000000001,1019,10.5 +2013,5,3,3,30,0,0,0,9.600000000000001,12.4,114.94,1019,10.200000000000001 +2013,5,3,4,30,0,0,0,9.700000000000001,12.200000000000001,103.84,1020,9.9 +2013,5,3,5,30,0,0,0,9.9,12,91.81,1020,9.700000000000001 +2013,5,3,6,30,93,67,136,10.100000000000001,12,79.12,1021,9.4 +2013,5,3,7,30,265,152,281,10.200000000000001,12.600000000000001,66.23,1021,9 +2013,5,3,8,30,581,132,748,10.100000000000001,13.5,53.160000000000004,1021,8.8 +2013,5,3,9,30,790,130,864,9.8,14.600000000000001,40.15,1021,8.700000000000001 +2013,5,3,10,30,950,133,921,9.600000000000001,15.9,27.6,1020,8.4 +2013,5,3,11,30,1039,130,950,9.4,17,16.9,1020,8.1 +2013,5,3,12,30,1059,127,960,9.200000000000001,17.900000000000002,13.76,1019,7.6000000000000005 +2013,5,3,13,30,1007,124,951,9,18.7,21.76,1018,7.1000000000000005 +2013,5,3,14,30,892,120,928,8.700000000000001,19.200000000000003,33.69,1018,6.6000000000000005 +2013,5,3,15,30,716,110,882,8.3,19.5,46.550000000000004,1017,6.1000000000000005 +2013,5,3,16,30,495,93,794,7.800000000000001,19.5,59.61,1017,5.9 +2013,5,3,17,30,259,72,626,7.6000000000000005,19.400000000000002,72.61,1017,5.800000000000001 +2013,5,3,18,30,49,30,230,6.9,18.1,85.27,1018,6.4 +2013,5,3,19,30,0,0,0,6.7,17.400000000000002,97.77,1018,6.9 +2013,5,3,20,30,0,0,0,6.5,17.1,109.37,1019,7.1000000000000005 +2013,5,3,21,30,0,0,0,6.300000000000001,16.7,119.75,1019,7.2 +2013,5,3,22,30,0,0,0,5.800000000000001,16.400000000000002,128.16,1019,7.2 +2013,5,3,23,30,0,0,0,5.300000000000001,16.2,133.49,1019,7.1000000000000005 +2013,5,4,0,30,0,0,0,4.5,16.3,134.62,1018,6.800000000000001 +2013,5,4,1,30,0,0,0,3.5,16.5,131.27,1018,6.1000000000000005 +2013,5,4,2,30,0,0,0,2.4000000000000004,16.400000000000002,124.24000000000001,1017,4.9 +2013,5,4,3,30,0,0,0,1.7000000000000002,16.2,114.72,1017,3.8000000000000003 +2013,5,4,4,30,0,0,0,1.5,16,103.65,1017,3.3000000000000003 +2013,5,4,5,30,0,0,0,1.8,16.3,91.64,1017,3.6 +2013,5,4,6,30,147,52,496,2.4000000000000004,17.3,78.97,1018,5.1000000000000005 +2013,5,4,7,30,378,79,737,3.2,18.5,66.09,1018,5.6000000000000005 +2013,5,4,8,30,607,94,853,3.8000000000000003,19.400000000000002,53.02,1018,5.9 +2013,5,4,9,30,802,101,914,4.3,20.1,40,1018,6.4 +2013,5,4,10,30,949,108,948,4.800000000000001,20.700000000000003,27.42,1017,7.1000000000000005 +2013,5,4,11,30,1030,115,955,5.4,21.200000000000003,16.65,1016,7.9 +2013,5,4,12,30,1049,112,964,5.800000000000001,21.700000000000003,13.48,1016,8.700000000000001 +2013,5,4,13,30,993,111,949,6.1000000000000005,22.1,21.59,1015,9.5 +2013,5,4,14,30,872,108,917,6.300000000000001,22.3,33.57,1014,10.3 +2013,5,4,15,30,694,106,853,6.5,22.3,46.44,1013,10.9 +2013,5,4,16,30,382,183,393,6.6000000000000005,22,59.51,1013,11.5 +2013,5,4,17,30,232,72,532,6.7,21.700000000000003,72.5,1013,12.4 +2013,5,4,18,30,37,28,105,6.800000000000001,20.3,85.15,1013,13.200000000000001 +2013,5,4,19,30,0,0,0,7,19.900000000000002,97.63,1013,13.600000000000001 +2013,5,4,20,30,0,0,0,7,19.700000000000003,109.2,1014,14.100000000000001 +2013,5,4,21,30,0,0,0,6.9,19.5,119.55,1014,14.3 +2013,5,4,22,30,0,0,0,6.6000000000000005,19.3,127.92,1014,14.5 +2013,5,4,23,30,0,0,0,6.300000000000001,19.1,133.21,1015,14.600000000000001 +2013,5,5,0,30,0,0,0,6,18.7,134.34,1015,14.600000000000001 +2013,5,5,1,30,0,0,0,5.800000000000001,18.2,131,1015,14.600000000000001 +2013,5,5,2,30,0,0,0,5.6000000000000005,17.7,124,1015,14.5 +2013,5,5,3,30,0,0,0,5.5,17,114.51,1016,14 +2013,5,5,4,30,0,0,0,5.4,16.3,103.47,1016,13.200000000000001 +2013,5,5,5,30,0,0,0,5.6000000000000005,15.9,91.48,1017,12.4 +2013,5,5,6,30,146,53,477,6,16,78.82000000000001,1017,11.700000000000001 +2013,5,5,7,30,372,81,714,6.1000000000000005,16.400000000000002,65.95,1018,11 +2013,5,5,8,30,597,97,828,6,17.1,52.88,1018,10.5 +2013,5,5,9,30,793,105,896,5.7,17.900000000000002,39.86,1019,10.3 +2013,5,5,10,30,939,112,930,5.5,18.7,27.25,1019,10.100000000000001 +2013,5,5,11,30,1024,117,945,5.4,19.5,16.41,1018,10 +2013,5,5,12,30,1037,119,943,5.300000000000001,20.3,13.21,1017,10 +2013,5,5,13,30,984,121,927,5.1000000000000005,20.900000000000002,21.42,1017,10.100000000000001 +2013,5,5,14,30,863,118,893,4.9,21.400000000000002,33.45,1016,10.3 +2013,5,5,15,30,692,109,845,4.6000000000000005,21.700000000000003,46.34,1016,10.4 +2013,5,5,16,30,482,93,763,4.3,21.700000000000003,59.410000000000004,1016,10.4 +2013,5,5,17,30,255,70,609,4.1000000000000005,21.6,72.39,1016,10.5 +2013,5,5,18,30,52,30,251,3.7,20.3,85.03,1016,11 +2013,5,5,19,30,0,0,0,3.8000000000000003,19.6,97.49000000000001,1017,11.100000000000001 +2013,5,5,20,30,0,0,0,4,19.200000000000003,109.03,1017,11 +2013,5,5,21,30,0,0,0,4.1000000000000005,18.6,119.35000000000001,1018,11 +2013,5,5,22,30,0,0,0,3.9000000000000004,18.1,127.68,1018,11.100000000000001 +2013,5,5,23,30,0,0,0,3.4000000000000004,17.8,132.94,1018,11 +2013,5,6,0,30,0,0,0,2.8000000000000003,17.7,134.05,1018,10.600000000000001 +2013,5,6,1,30,0,0,0,2.2,17.5,130.73,1018,10 +2013,5,6,2,30,0,0,0,1.9000000000000001,17.3,123.76,1018,9.600000000000001 +2013,5,6,3,30,0,0,0,2,17.1,114.3,1018,9.4 +2013,5,6,4,30,0,0,0,2.1,16.900000000000002,103.29,1018,9.4 +2013,5,6,5,30,0,0,0,2.2,17,91.32000000000001,1019,9.4 +2013,5,6,6,30,147,52,483,2.1,17.6,78.68,1019,9.700000000000001 +2013,5,6,7,30,368,81,702,2,18.400000000000002,65.81,1019,9.200000000000001 +2013,5,6,8,30,589,99,810,1.9000000000000001,19.3,52.75,1019,8.8 +2013,5,6,9,30,777,113,862,2,19.8,39.72,1019,9 +2013,5,6,10,30,917,125,889,2.4000000000000004,20.400000000000002,27.080000000000002,1019,9.5 +2013,5,6,11,30,997,132,900,2.7,20.900000000000002,16.18,1019,10.100000000000001 +2013,5,6,12,30,1009,139,893,2.7,21.400000000000002,12.950000000000001,1018,10.600000000000001 +2013,5,6,13,30,813,383,462,2.6,21.700000000000003,21.26,1017,10.9 +2013,5,6,14,30,834,149,819,2.7,21.900000000000002,33.34,1016,11.4 +2013,5,6,15,30,557,273,411,2.9000000000000004,21.8,46.24,1016,12.4 +2013,5,6,16,30,416,152,517,3.1,21.700000000000003,59.31,1015,12.9 +2013,5,6,17,30,242,83,524,3.2,21.6,72.28,1015,13.600000000000001 +2013,5,6,18,30,28,28,0,3.1,20.700000000000003,84.92,1015,14.600000000000001 +2013,5,6,19,30,0,0,0,2.9000000000000004,20.5,97.35000000000001,1016,14.700000000000001 +2013,5,6,20,30,0,0,0,2.7,20.5,108.87,1016,14.9 +2013,5,6,21,30,0,0,0,2.1,20.5,119.15,1016,15 +2013,5,6,22,30,0,0,0,1.7000000000000002,20.200000000000003,127.45,1016,14.4 +2013,5,6,23,30,0,0,0,2.1,19.8,132.68,1016,14 +2013,5,7,0,30,0,0,0,3,19.3,133.77,1016,14.600000000000001 +2013,5,7,1,30,0,0,0,3.6,19,130.47,1016,15.200000000000001 +2013,5,7,2,30,0,0,0,3.8000000000000003,18.8,123.52,1016,15.4 +2013,5,7,3,30,0,0,0,3.6,18.8,114.10000000000001,1016,15.4 +2013,5,7,4,30,0,0,0,3.4000000000000004,18.7,103.11,1017,15.3 +2013,5,7,5,30,0,0,0,3.3000000000000003,18.900000000000002,91.16,1017,15.4 +2013,5,7,6,30,144,58,431,3.3000000000000003,19.5,78.54,1018,15.600000000000001 +2013,5,7,7,30,363,87,671,3.2,20.400000000000002,65.68,1019,15.700000000000001 +2013,5,7,8,30,584,103,792,2.8000000000000003,21.6,52.63,1019,15.4 +2013,5,7,9,30,775,113,859,2.2,22.400000000000002,39.58,1019,15.100000000000001 +2013,5,7,10,30,918,120,895,1.9000000000000001,22.8,26.93,1018,15.4 +2013,5,7,11,30,1001,125,911,2,23.1,15.950000000000001,1018,15.4 +2013,5,7,12,30,1022,124,920,2.4000000000000004,23.3,12.69,1017,15.4 +2013,5,7,13,30,970,125,906,3,23.3,21.1,1017,15.600000000000001 +2013,5,7,14,30,852,121,874,3.5,23.3,33.22,1016,15.700000000000001 +2013,5,7,15,30,583,233,505,3.8000000000000003,23.1,46.14,1016,15.700000000000001 +2013,5,7,16,30,477,98,742,3.7,22.8,59.21,1016,15.700000000000001 +2013,5,7,17,30,253,74,586,3.7,22.5,72.18,1016,15.700000000000001 +2013,5,7,18,30,54,32,244,3.9000000000000004,21.3,84.8,1016,16.2 +2013,5,7,19,30,0,0,0,4.2,20.8,97.21000000000001,1016,16.7 +2013,5,7,20,30,0,0,0,4.5,20.700000000000003,108.7,1017,17.2 +2013,5,7,21,30,0,0,0,4.7,20.6,118.96000000000001,1017,17.3 +2013,5,7,22,30,0,0,0,4.9,20.6,127.22,1017,17.3 +2013,5,7,23,30,0,0,0,4.9,20.5,132.41,1017,17.2 +2013,5,8,0,30,0,0,0,4.800000000000001,20.5,133.5,1016,17.1 +2013,5,8,1,30,0,0,0,4.6000000000000005,20.5,130.21,1016,17.1 +2013,5,8,2,30,0,0,0,4.4,20.5,123.29,1016,17.1 +2013,5,8,3,30,0,0,0,4.1000000000000005,20.5,113.9,1016,17.3 +2013,5,8,4,30,0,0,0,3.8000000000000003,20.6,102.94,1017,17.5 +2013,5,8,5,30,0,0,0,3.5,20.900000000000002,91.01,1018,17.7 +2013,5,8,6,30,140,65,377,3.5,21.5,78.4,1018,17.900000000000002 +2013,5,8,7,30,258,163,230,4,21.900000000000002,65.56,1018,18 +2013,5,8,8,30,456,244,348,4.800000000000001,22.3,52.5,1019,18.1 +2013,5,8,9,30,673,263,530,5.300000000000001,22.700000000000003,39.46,1019,18.3 +2013,5,8,10,30,907,130,870,5.300000000000001,23.1,26.77,1019,18.400000000000002 +2013,5,8,11,30,991,131,894,5.2,23.400000000000002,15.73,1018,18.400000000000002 +2013,5,8,12,30,1010,126,905,5,23.5,12.43,1018,18.400000000000002 +2013,5,8,13,30,962,123,898,4.9,23.5,20.94,1017,18.3 +2013,5,8,14,30,847,119,870,4.800000000000001,23.400000000000002,33.11,1017,18.3 +2013,5,8,15,30,680,109,822,4.9,23.1,46.04,1016,18.3 +2013,5,8,16,30,474,96,735,5.1000000000000005,22.700000000000003,59.11,1016,18.400000000000002 +2013,5,8,17,30,190,110,261,5.2,22.400000000000002,72.07000000000001,1016,18.7 +2013,5,8,18,30,54,32,233,5.1000000000000005,21.700000000000003,84.68,1016,19 +2013,5,8,19,30,0,0,0,5.1000000000000005,21.3,97.07000000000001,1016,19.3 +2013,5,8,20,30,0,0,0,5.4,21.3,108.54,1016,19.400000000000002 +2013,5,8,21,30,0,0,0,5.800000000000001,21.400000000000002,118.76,1016,19.5 +2013,5,8,22,30,0,0,0,6,21.400000000000002,126.99000000000001,1016,19.700000000000003 +2013,5,8,23,30,0,0,0,5.800000000000001,21.5,132.16,1015,19.900000000000002 +2013,5,9,0,30,0,0,0,5.4,21.5,133.23,1015,20.200000000000003 +2013,5,9,1,30,0,0,0,4.9,21.6,129.95,1015,20.400000000000002 +2013,5,9,2,30,0,0,0,4.5,21.700000000000003,123.07000000000001,1015,20.6 +2013,5,9,3,30,0,0,0,4.2,21.700000000000003,113.7,1015,20.900000000000002 +2013,5,9,4,30,0,0,0,4.1000000000000005,21.700000000000003,102.77,1015,21.1 +2013,5,9,5,30,0,0,0,4.1000000000000005,21.900000000000002,90.86,1016,21.3 +2013,5,9,6,30,52,52,0,4.3,22.3,78.27,1016,21.5 +2013,5,9,7,30,142,139,6,4.5,22.700000000000003,65.43,1017,21.700000000000003 +2013,5,9,8,30,107,107,0,4.7,23,52.39,1017,21.8 +2013,5,9,9,30,170,168,3,4.9,23.1,39.33,1017,21.900000000000002 +2013,5,9,10,30,447,399,54,5.1000000000000005,23.1,26.63,1017,21.900000000000002 +2013,5,9,11,30,410,382,29,5.2,23,15.52,1017,22 +2013,5,9,12,30,562,478,86,5.2,23,12.18,1016,22 +2013,5,9,13,30,770,409,387,5.300000000000001,23,20.78,1016,22.1 +2013,5,9,14,30,501,405,115,5.300000000000001,22.900000000000002,33,1015,22.1 +2013,5,9,15,30,328,293,51,5.4,22.900000000000002,45.94,1014,22.200000000000003 +2013,5,9,16,30,217,199,36,5.6000000000000005,22.8,59.01,1014,22.200000000000003 +2013,5,9,17,30,71,71,0,5.6000000000000005,22.700000000000003,71.96000000000001,1014,22.3 +2013,5,9,18,30,28,28,0,5.2,22.5,84.57000000000001,1014,22.3 +2013,5,9,19,30,0,0,0,5.300000000000001,22.5,96.93,1014,22.3 +2013,5,9,20,30,0,0,0,5.7,22.5,108.38,1015,22.3 +2013,5,9,21,30,0,0,0,6.300000000000001,22.5,118.57000000000001,1014,22.400000000000002 +2013,5,9,22,30,0,0,0,6.5,22.5,126.76,1014,22.400000000000002 +2013,5,9,23,30,0,0,0,6.2,22.5,131.9,1014,22.400000000000002 +2013,5,10,0,30,0,0,0,5.800000000000001,22.5,132.97,1013,22.5 +2013,5,10,1,30,0,0,0,5.5,22.5,129.71,1013,22.5 +2013,5,10,2,30,0,0,0,5.300000000000001,22.5,122.85000000000001,1013,22.5 +2013,5,10,3,30,0,0,0,5,22.400000000000002,113.52,1013,22.400000000000002 +2013,5,10,4,30,0,0,0,4.800000000000001,22.3,102.61,1013,22.3 +2013,5,10,5,30,0,0,0,4.800000000000001,22.3,90.14,1014,22.3 +2013,5,10,6,30,5,5,0,4.9,22.5,78.15,1014,22.3 +2013,5,10,7,30,185,163,52,4.800000000000001,22.700000000000003,65.32000000000001,1014,22.400000000000002 +2013,5,10,8,30,429,261,275,4.5,22.8,52.27,1015,22.5 +2013,5,10,9,30,425,358,87,4,23,39.22,1015,22.5 +2013,5,10,10,30,76,76,0,3.6,23.1,26.490000000000002,1015,22.400000000000002 +2013,5,10,11,30,199,191,8,3.7,23.200000000000003,15.31,1014,22.400000000000002 +2013,5,10,12,30,82,82,0,4.2,23.3,11.93,1014,22.5 +2013,5,10,13,30,632,472,171,4.6000000000000005,23.3,20.63,1013,22.5 +2013,5,10,14,30,218,211,9,4.7,23.3,32.89,1012,22.5 +2013,5,10,15,30,644,160,694,4.6000000000000005,23.200000000000003,45.84,1012,22.5 +2013,5,10,16,30,445,138,594,4.5,23.1,58.910000000000004,1012,22.5 +2013,5,10,17,30,232,103,414,4.5,23,71.86,1012,22.5 +2013,5,10,18,30,49,36,136,4.4,22.5,84.45,1013,22.5 +2013,5,10,19,30,0,0,0,4.6000000000000005,22.3,96.8,1013,22.3 +2013,5,10,20,30,0,0,0,4.6000000000000005,22.200000000000003,108.21000000000001,1013,22.200000000000003 +2013,5,10,21,30,0,0,0,3.9000000000000004,22.1,118.38,1014,22.1 +2013,5,10,22,30,0,0,0,2.9000000000000004,22.1,126.54,1014,22.1 +2013,5,10,23,30,0,0,0,2.6,22.1,131.65,1015,22.1 +2013,5,11,0,30,0,0,0,3,22,132.71,1015,22 +2013,5,11,1,30,0,0,0,3.5,21.8,129.46,1015,21.8 +2013,5,11,2,30,0,0,0,3.7,21.700000000000003,122.64,1014,21.700000000000003 +2013,5,11,3,30,0,0,0,3.6,21.5,113.33,1014,21.5 +2013,5,11,4,30,0,0,0,2.9000000000000004,21.400000000000002,102.45,1014,21.400000000000002 +2013,5,11,5,30,0,0,0,2.2,21.5,90.02,1016,21.5 +2013,5,11,6,30,23,23,0,1.9000000000000001,21.6,78.02,1017,21.400000000000002 +2013,5,11,7,30,61,61,0,2,21.6,65.21000000000001,1017,21.3 +2013,5,11,8,30,107,107,0,2.4000000000000004,21.900000000000002,52.17,1017,21.3 +2013,5,11,9,30,526,368,204,2.8000000000000003,22.200000000000003,39.1,1017,21.200000000000003 +2013,5,11,10,30,626,443,203,3.6,22.6,26.35,1017,21.1 +2013,5,11,11,30,579,479,104,4.4,23,15.120000000000001,1017,21.1 +2013,5,11,12,30,773,474,306,4.7,23.5,11.68,1016,21 +2013,5,11,13,30,617,472,156,4.7,23.900000000000002,20.490000000000002,1015,20.900000000000002 +2013,5,11,14,30,817,148,796,4.3,24.3,32.78,1015,20.8 +2013,5,11,15,30,655,133,749,3.5,24.400000000000002,45.75,1015,20.8 +2013,5,11,16,30,368,202,321,2.6,24.400000000000002,58.81,1015,20.900000000000002 +2013,5,11,17,30,188,115,235,2.3000000000000003,24.400000000000002,71.75,1016,21 +2013,5,11,18,30,37,33,46,1.8,23.5,84.33,1017,21.3 +2013,5,11,19,30,0,0,0,1.9000000000000001,23,96.66,1017,20.900000000000002 +2013,5,11,20,30,0,0,0,2.2,22.700000000000003,108.05,1017,20.8 +2013,5,11,21,30,0,0,0,2.4000000000000004,22.400000000000002,118.19,1018,20.700000000000003 +2013,5,11,22,30,0,0,0,2.6,22.1,126.32000000000001,1018,20.700000000000003 +2013,5,11,23,30,0,0,0,3.2,21.900000000000002,131.41,1017,20.6 +2013,5,12,0,30,0,0,0,3.7,21.700000000000003,132.46,1017,20.700000000000003 +2013,5,12,1,30,0,0,0,3.8000000000000003,21.6,129.23,1017,20.8 +2013,5,12,2,30,0,0,0,3.9000000000000004,21.5,122.43,1018,20.900000000000002 +2013,5,12,3,30,0,0,0,4.5,21.6,113.15,1018,20.8 +2013,5,12,4,30,0,0,0,5.1000000000000005,21.5,102.29,1019,20.6 +2013,5,12,5,30,0,0,0,5.4,21.400000000000002,89.91,1020,20.200000000000003 +2013,5,12,6,30,81,74,32,5.300000000000001,21.5,77.9,1020,19.8 +2013,5,12,7,30,280,158,290,5.1000000000000005,21.700000000000003,65.1,1021,19.5 +2013,5,12,8,30,563,129,706,5,22.200000000000003,52.06,1021,19.200000000000003 +2013,5,12,9,30,756,130,805,5.1000000000000005,22.900000000000002,39,1021,18.400000000000002 +2013,5,12,10,30,507,428,87,5,23.3,26.23,1021,17.6 +2013,5,12,11,30,792,433,371,5,23.700000000000003,14.92,1021,17.1 +2013,5,12,12,30,561,478,85,5,23.900000000000002,11.450000000000001,1020,16.6 +2013,5,12,13,30,621,472,159,5,24.1,20.34,1020,16.3 +2013,5,12,14,30,653,383,321,4.9,24.200000000000003,32.67,1019,16 +2013,5,12,15,30,456,323,191,4.6000000000000005,24.1,45.65,1019,16 +2013,5,12,16,30,347,213,259,4.1000000000000005,23.900000000000002,58.72,1019,16.3 +2013,5,12,17,30,257,77,571,3.8000000000000003,23.8,71.65,1019,16.8 +2013,5,12,18,30,45,34,110,3.4000000000000004,22.700000000000003,84.22,1020,17.6 +2013,5,12,19,30,0,0,0,3.4000000000000004,22.200000000000003,96.52,1020,17.6 +2013,5,12,20,30,0,0,0,3.4000000000000004,21.900000000000002,107.89,1021,17.900000000000002 +2013,5,12,21,30,0,0,0,3.4000000000000004,21.6,118,1021,18.2 +2013,5,12,22,30,0,0,0,3.4000000000000004,21.3,126.10000000000001,1021,18.400000000000002 +2013,5,12,23,30,0,0,0,3.6,20.900000000000002,131.16,1021,18.5 +2013,5,13,0,30,0,0,0,4.2,20.6,132.21,1021,18.5 +2013,5,13,1,30,0,0,0,4.7,20.3,129,1021,18.2 +2013,5,13,2,30,0,0,0,4.800000000000001,20.1,122.22,1021,17.8 +2013,5,13,3,30,0,0,0,4.5,19.900000000000002,112.98,1022,17.3 +2013,5,13,4,30,0,0,0,4.4,19.700000000000003,102.14,1022,16.900000000000002 +2013,5,13,5,30,0,0,0,4.4,20,89.8,1023,16.5 +2013,5,13,6,30,159,58,478,4.6000000000000005,20.700000000000003,77.79,1024,16.3 +2013,5,13,7,30,381,83,705,4.6000000000000005,21.400000000000002,64.99,1025,15.9 +2013,5,13,8,30,603,98,819,4.6000000000000005,21.8,51.96,1025,15.5 +2013,5,13,9,30,794,108,881,4.6000000000000005,22.1,38.9,1025,15.3 +2013,5,13,10,30,937,114,916,4.800000000000001,22.3,26.11,1025,15.3 +2013,5,13,11,30,1020,116,935,4.800000000000001,22.5,14.74,1024,15.200000000000001 +2013,5,13,12,30,1039,115,941,4.6000000000000005,22.5,11.21,1024,15.100000000000001 +2013,5,13,13,30,986,114,930,4.2,22.5,20.2,1024,15 +2013,5,13,14,30,871,110,903,4,22.400000000000002,32.57,1023,15 +2013,5,13,15,30,703,104,855,4,22.200000000000003,45.550000000000004,1023,15.100000000000001 +2013,5,13,16,30,494,92,772,4.1000000000000005,21.900000000000002,58.620000000000005,1023,15.3 +2013,5,13,17,30,268,73,615,4.1000000000000005,21.700000000000003,71.54,1023,15.600000000000001 +2013,5,13,18,30,63,35,280,3.7,20.8,84.10000000000001,1023,16.2 +2013,5,13,19,30,0,0,0,3.4000000000000004,20.3,96.39,1023,16.400000000000002 +2013,5,13,20,30,0,0,0,3.4000000000000004,20.200000000000003,107.74000000000001,1024,16.6 +2013,5,13,21,30,0,0,0,3.6,20.1,117.82000000000001,1024,16.8 +2013,5,13,22,30,0,0,0,3.7,20,125.89,1024,17 +2013,5,13,23,30,0,0,0,3.8000000000000003,19.900000000000002,130.93,1023,17.2 +2013,5,14,0,30,0,0,0,4,19.8,131.97,1023,17.5 +2013,5,14,1,30,0,0,0,4.2,19.8,128.77,1022,17.7 +2013,5,14,2,30,0,0,0,4.5,19.900000000000002,122.03,1022,18 +2013,5,14,3,30,0,0,0,4.5,19.900000000000002,112.81,1022,18.2 +2013,5,14,4,30,0,0,0,4.3,20,102,1022,18.3 +2013,5,14,5,30,0,0,0,4,20.6,89.69,1022,18.400000000000002 +2013,5,14,6,30,149,68,378,3.9000000000000004,21.5,77.68,1023,18.7 +2013,5,14,7,30,361,110,592,4,22.200000000000003,64.9,1023,18.7 +2013,5,14,8,30,489,227,425,4.2,22.700000000000003,51.870000000000005,1024,18.6 +2013,5,14,9,30,624,331,376,4.5,23,38.800000000000004,1024,18.5 +2013,5,14,10,30,898,154,828,4.7,23.200000000000003,25.990000000000002,1024,18.400000000000002 +2013,5,14,11,30,980,156,852,4.800000000000001,23.3,14.56,1023,18.2 +2013,5,14,12,30,996,158,854,4.7,23.400000000000002,10.98,1023,18.1 +2013,5,14,13,30,946,156,840,4.7,23.3,20.06,1022,17.900000000000002 +2013,5,14,14,30,833,150,809,4.7,23.3,32.46,1022,17.8 +2013,5,14,15,30,674,127,779,4.800000000000001,23.1,45.46,1021,17.8 +2013,5,14,16,30,471,108,695,5,22.8,58.52,1021,17.8 +2013,5,14,17,30,254,81,543,5.1000000000000005,22.6,71.44,1021,17.900000000000002 +2013,5,14,18,30,60,36,225,5,22,83.99,1021,18.2 +2013,5,14,19,30,0,0,0,5.1000000000000005,21.700000000000003,96.25,1021,18.400000000000002 +2013,5,14,20,30,0,0,0,5.4,21.700000000000003,107.58,1021,18.5 +2013,5,14,21,30,0,0,0,5.7,21.700000000000003,117.63,1021,18.6 +2013,5,14,22,30,0,0,0,6,21.8,125.67,1021,18.8 +2013,5,14,23,30,0,0,0,6.2,21.8,130.7,1020,18.8 +2013,5,15,0,30,0,0,0,6.4,21.900000000000002,131.73,1020,18.900000000000002 +2013,5,15,1,30,0,0,0,6.300000000000001,21.900000000000002,128.55,1020,19 +2013,5,15,2,30,0,0,0,6,21.900000000000002,121.83,1020,19.1 +2013,5,15,3,30,0,0,0,5.6000000000000005,21.900000000000002,112.64,1020,19.200000000000003 +2013,5,15,4,30,0,0,0,5.300000000000001,21.8,101.86,1020,19.200000000000003 +2013,5,15,5,30,0,0,0,5.2,22.1,89.59,1020,19.3 +2013,5,15,6,30,71,71,0,5.300000000000001,22.400000000000002,77.58,1020,19.6 +2013,5,15,7,30,154,148,13,5.5,22.700000000000003,64.8,1020,19.8 +2013,5,15,8,30,158,158,0,5.7,22.8,51.78,1020,19.900000000000002 +2013,5,15,9,30,172,170,3,5.800000000000001,22.900000000000002,38.71,1020,19.900000000000002 +2013,5,15,10,30,303,288,16,6,23,25.88,1019,19.900000000000002 +2013,5,15,11,30,92,92,0,6.300000000000001,23.1,14.39,1019,19.8 +2013,5,15,12,30,453,416,38,6.5,23.1,10.76,1018,19.700000000000003 +2013,5,15,13,30,749,441,328,6.5,23.200000000000003,19.93,1017,19.6 +2013,5,15,14,30,615,402,251,6.5,23.3,32.36,1017,19.700000000000003 +2013,5,15,15,30,219,212,9,6.5,23.3,45.37,1016,19.8 +2013,5,15,16,30,371,205,316,6.6000000000000005,23.200000000000003,58.43,1015,19.8 +2013,5,15,17,30,145,123,69,6.7,23.200000000000003,71.34,1015,19.8 +2013,5,15,18,30,34,34,0,6.5,22.700000000000003,83.87,1015,19.900000000000002 +2013,5,15,19,30,0,0,0,6.4,22.5,96.12,1015,19.900000000000002 +2013,5,15,20,30,0,0,0,6.4,22.400000000000002,107.43,1016,19.900000000000002 +2013,5,15,21,30,0,0,0,6.5,22.400000000000002,117.45,1016,19.900000000000002 +2013,5,15,22,30,0,0,0,6.7,22.400000000000002,125.47,1015,20 +2013,5,15,23,30,0,0,0,6.9,22.3,130.47,1015,20 +2013,5,16,0,30,0,0,0,7,22.200000000000003,131.5,1014,20 +2013,5,16,1,30,0,0,0,7,22.200000000000003,128.33,1014,20.1 +2013,5,16,2,30,0,0,0,6.9,22.1,121.64,1013,20.1 +2013,5,16,3,30,0,0,0,6.5,22,112.48,1013,20.200000000000003 +2013,5,16,4,30,0,0,0,6.1000000000000005,22,101.72,1013,20.200000000000003 +2013,5,16,5,30,0,0,0,5.9,22.200000000000003,89.5,1013,20.3 +2013,5,16,6,30,147,75,331,6,22.700000000000003,77.48,1013,20.6 +2013,5,16,7,30,354,120,547,5.9,23.1,64.71000000000001,1013,20.8 +2013,5,16,8,30,562,148,667,5.800000000000001,23.5,51.7,1013,21 +2013,5,16,9,30,748,157,757,5.800000000000001,23.8,38.62,1013,21.200000000000003 +2013,5,16,10,30,885,168,796,5.9,24.1,25.78,1013,21.400000000000002 +2013,5,16,11,30,962,176,811,6,24.200000000000003,14.22,1013,21.6 +2013,5,16,12,30,977,181,810,6.2,24.3,10.540000000000001,1013,21.700000000000003 +2013,5,16,13,30,924,183,788,6.2,24.3,19.79,1012,21.8 +2013,5,16,14,30,554,413,166,6.300000000000001,24.200000000000003,32.26,1012,21.900000000000002 +2013,5,16,15,30,399,323,109,6.2,24,45.27,1011,21.8 +2013,5,16,16,30,225,205,39,6.1000000000000005,23.8,58.33,1011,21.8 +2013,5,16,17,30,96,96,0,6,23.6,71.24,1011,21.900000000000002 +2013,5,16,18,30,13,13,0,5.800000000000001,23.1,83.76,1011,21.900000000000002 +2013,5,16,19,30,0,0,0,5.800000000000001,23,95.99000000000001,1012,22 +2013,5,16,20,30,0,0,0,5.800000000000001,22.900000000000002,107.27,1012,22.1 +2013,5,16,21,30,0,0,0,5.800000000000001,23,117.28,1012,22.1 +2013,5,16,22,30,0,0,0,5.9,23,125.26,1012,22.200000000000003 +2013,5,16,23,30,0,0,0,5.9,23.1,130.24,1012,22.3 +2013,5,17,0,30,0,0,0,5.9,23.1,131.28,1012,22.400000000000002 +2013,5,17,1,30,0,0,0,5.800000000000001,23.200000000000003,128.12,1012,22.5 +2013,5,17,2,30,0,0,0,5.5,23.200000000000003,121.46000000000001,1012,22.5 +2013,5,17,3,30,0,0,0,5.2,23.1,112.33,1012,22.5 +2013,5,17,4,30,0,0,0,4.9,23,101.59,1012,22.5 +2013,5,17,5,30,0,0,0,4.7,23.200000000000003,89.4,1013,22.6 +2013,5,17,6,30,146,74,330,4.6000000000000005,23.700000000000003,77.38,1013,22.8 +2013,5,17,7,30,189,167,51,4.7,24.1,64.63,1014,23 +2013,5,17,8,30,333,274,96,4.7,24.400000000000002,51.620000000000005,1014,23.1 +2013,5,17,9,30,482,373,139,4.6000000000000005,24.700000000000003,38.54,1014,23.200000000000003 +2013,5,17,10,30,515,433,92,4.5,25,25.68,1014,23.3 +2013,5,17,11,30,960,172,812,4.4,25.1,14.07,1014,23.3 +2013,5,17,12,30,593,490,105,4.3,25.1,10.32,1014,23.3 +2013,5,17,13,30,464,418,49,4.3,25,19.66,1013,23.3 +2013,5,17,14,30,585,411,206,4.4,24.8,32.160000000000004,1013,23.200000000000003 +2013,5,17,15,30,643,176,662,4.6000000000000005,24.6,45.18,1013,23.200000000000003 +2013,5,17,16,30,449,148,572,4.800000000000001,24.3,58.24,1013,23.200000000000003 +2013,5,17,17,30,241,106,420,4.9,24.200000000000003,71.13,1013,23.200000000000003 +2013,5,17,18,30,58,40,158,5,23.6,83.65,1014,23.3 +2013,5,17,19,30,0,0,0,5.300000000000001,23.400000000000002,95.86,1014,23.400000000000002 +2013,5,17,20,30,0,0,0,5.7,23.3,107.12,1014,23.3 +2013,5,17,21,30,0,0,0,5.9,23.3,117.10000000000001,1015,23.3 +2013,5,17,22,30,0,0,0,5.9,23.400000000000002,125.07000000000001,1015,23.400000000000002 +2013,5,17,23,30,0,0,0,6.1000000000000005,23.400000000000002,130.03,1014,23.400000000000002 +2013,5,18,0,30,0,0,0,6.300000000000001,23.5,131.06,1014,23.5 +2013,5,18,1,30,0,0,0,6.4,23.6,127.92,1013,23.6 +2013,5,18,2,30,0,0,0,6.2,23.6,121.29,1013,23.6 +2013,5,18,3,30,0,0,0,5.800000000000001,23.6,112.18,1014,23.6 +2013,5,18,4,30,0,0,0,5.300000000000001,23.5,101.47,1014,23.5 +2013,5,18,5,30,0,0,0,5.1000000000000005,23.700000000000003,89.31,1014,23.700000000000003 +2013,5,18,6,30,97,80,79,5.1000000000000005,24,77.29,1015,23.8 +2013,5,18,7,30,215,175,94,5.2,24.3,64.55,1016,23.8 +2013,5,18,8,30,408,275,214,5.300000000000001,24.5,51.54,1016,23.400000000000002 +2013,5,18,9,30,754,145,777,5.300000000000001,24.8,38.47,1016,23.200000000000003 +2013,5,18,10,30,893,153,820,5.300000000000001,25,25.59,1016,23 +2013,5,18,11,30,974,156,843,5.300000000000001,25.200000000000003,13.92,1015,22.8 +2013,5,18,12,30,992,152,853,5.2,25.200000000000003,10.11,1015,22.5 +2013,5,18,13,30,944,151,841,5.2,25.200000000000003,19.54,1015,22.400000000000002 +2013,5,18,14,30,833,147,810,5.300000000000001,25,32.07,1014,22.3 +2013,5,18,15,30,671,134,761,5.4,24.8,45.09,1014,22.200000000000003 +2013,5,18,16,30,392,195,372,5.4,24.5,58.15,1014,22.3 +2013,5,18,17,30,200,118,251,5.4,24.400000000000002,71.03,1014,22.6 +2013,5,18,18,30,45,38,66,5.300000000000001,23.700000000000003,83.54,1014,22.900000000000002 +2013,5,18,19,30,0,0,0,5.5,23.5,95.73,1014,23.200000000000003 +2013,5,18,20,30,0,0,0,6.1000000000000005,23.6,106.97,1014,23.400000000000002 +2013,5,18,21,30,0,0,0,6.6000000000000005,23.6,116.93,1014,23.5 +2013,5,18,22,30,0,0,0,6.7,23.700000000000003,124.87,1014,23.5 +2013,5,18,23,30,0,0,0,6.7,23.700000000000003,129.81,1013,23.5 +2013,5,19,0,30,0,0,0,6.7,23.700000000000003,130.84,1013,23.6 +2013,5,19,1,30,0,0,0,6.7,23.700000000000003,127.72,1013,23.6 +2013,5,19,2,30,0,0,0,6.7,23.700000000000003,121.11,1012,23.5 +2013,5,19,3,30,0,0,0,6.4,23.700000000000003,112.03,1012,23.5 +2013,5,19,4,30,0,0,0,6.1000000000000005,23.6,101.35000000000001,1013,23.400000000000002 +2013,5,19,5,30,0,0,0,6,23.700000000000003,89.22,1013,23.3 +2013,5,19,6,30,110,80,133,6.2,24,77.21000000000001,1013,23.1 +2013,5,19,7,30,288,163,291,6.2,24.3,64.47,1013,22.900000000000002 +2013,5,19,8,30,392,279,181,6,24.700000000000003,51.47,1014,22.5 +2013,5,19,9,30,760,138,793,5.7,25,38.4,1014,22.3 +2013,5,19,10,30,898,145,834,5.5,25.3,25.5,1013,22.200000000000003 +2013,5,19,11,30,978,149,853,5.300000000000001,25.5,13.77,1013,22.200000000000003 +2013,5,19,12,30,994,147,859,5.1000000000000005,25.6,9.91,1013,22.5 +2013,5,19,13,30,943,148,843,5,25.6,19.41,1012,22.700000000000003 +2013,5,19,14,30,469,398,84,5.1000000000000005,25.5,31.970000000000002,1012,23 +2013,5,19,15,30,355,309,66,5.300000000000001,25.200000000000003,45,1011,23.3 +2013,5,19,16,30,291,228,120,5.6000000000000005,25,58.050000000000004,1011,23.6 +2013,5,19,17,30,258,86,527,5.800000000000001,24.8,70.93,1011,23.8 +2013,5,19,18,30,65,40,212,5.800000000000001,24.400000000000002,83.43,1011,24 +2013,5,19,19,30,0,0,0,5.9,24.200000000000003,95.60000000000001,1012,24.200000000000003 +2013,5,19,20,30,0,0,0,6.1000000000000005,24.1,106.83,1012,24.1 +2013,5,19,21,30,0,0,0,6.1000000000000005,24.200000000000003,116.76,1012,24.200000000000003 +2013,5,19,22,30,0,0,0,6,24.200000000000003,124.68,1012,24.200000000000003 +2013,5,19,23,30,0,0,0,5.800000000000001,24.1,129.61,1012,24.1 +2013,5,20,0,30,0,0,0,5.7,24.1,130.63,1012,24.1 +2013,5,20,1,30,0,0,0,5.5,24.1,127.53,1011,24.1 +2013,5,20,2,30,0,0,0,5.5,24.200000000000003,120.95,1011,24.200000000000003 +2013,5,20,3,30,0,0,0,5.5,24.200000000000003,111.9,1011,24.200000000000003 +2013,5,20,4,30,0,0,0,5.6000000000000005,24.1,101.23,1012,24.1 +2013,5,20,5,30,0,0,0,5.800000000000001,24.200000000000003,89.14,1012,24.1 +2013,5,20,6,30,150,75,340,6.2,24.5,77.13,1013,24.1 +2013,5,20,7,30,202,173,67,6.4,24.700000000000003,64.4,1013,23.8 +2013,5,20,8,30,568,135,694,6.4,25,51.410000000000004,1013,23.400000000000002 +2013,5,20,9,30,746,156,752,6.1000000000000005,25.200000000000003,38.33,1013,23.200000000000003 +2013,5,20,10,30,881,169,788,5.7,25.5,25.42,1013,23.1 +2013,5,20,11,30,958,177,803,5.4,25.6,13.64,1013,23.200000000000003 +2013,5,20,12,30,980,170,822,5.300000000000001,25.8,9.71,1013,23.3 +2013,5,20,13,30,930,168,807,5.2,25.8,19.29,1012,23.5 +2013,5,20,14,30,544,415,152,5.2,25.700000000000003,31.88,1011,23.700000000000003 +2013,5,20,15,30,658,153,713,5.300000000000001,25.5,44.910000000000004,1011,23.8 +2013,5,20,16,30,281,227,103,5.6000000000000005,25.3,57.96,1011,24 +2013,5,20,17,30,133,121,36,5.7,25.1,70.83,1011,24.1 +2013,5,20,18,30,61,43,153,5.9,24.700000000000003,83.32000000000001,1011,24.200000000000003 +2013,5,20,19,30,0,0,0,6.1000000000000005,24.5,95.48,1011,24.3 +2013,5,20,20,30,0,0,0,6.4,24.5,106.68,1011,24.400000000000002 +2013,5,20,21,30,0,0,0,6.5,24.5,116.59,1011,24.400000000000002 +2013,5,20,22,30,0,0,0,6.4,24.5,124.49000000000001,1011,24.400000000000002 +2013,5,20,23,30,0,0,0,6.300000000000001,24.5,129.4,1011,24.400000000000002 +2013,5,21,0,30,0,0,0,6.1000000000000005,24.5,130.43,1011,24.400000000000002 +2013,5,21,1,30,0,0,0,6,24.5,127.35000000000001,1011,24.400000000000002 +2013,5,21,2,30,0,0,0,6,24.400000000000002,120.79,1011,24.3 +2013,5,21,3,30,0,0,0,6.300000000000001,24.400000000000002,111.76,1010,24.3 +2013,5,21,4,30,0,0,0,6.6000000000000005,24.3,101.12,1010,24.1 +2013,5,21,5,30,0,0,0,6.800000000000001,24.3,89.06,1011,24 +2013,5,21,6,30,156,70,384,6.800000000000001,24.5,77.05,1011,23.8 +2013,5,21,7,30,141,140,3,6.800000000000001,24.8,64.33,1011,23.400000000000002 +2013,5,21,8,30,572,130,709,6.5,25.1,51.35,1012,23 +2013,5,21,9,30,673,277,504,6.2,25.3,38.27,1012,22.900000000000002 +2013,5,21,10,30,755,371,425,5.7,25.6,25.35,1012,23 +2013,5,21,11,30,579,481,101,5.300000000000001,25.700000000000003,13.51,1011,23.200000000000003 +2013,5,21,12,30,536,468,69,5,25.8,9.52,1011,23.400000000000002 +2013,5,21,13,30,927,172,800,4.9,25.900000000000002,19.17,1010,23.6 +2013,5,21,14,30,635,400,277,5,25.8,31.78,1009,23.8 +2013,5,21,15,30,655,154,706,5.2,25.700000000000003,44.82,1009,24 +2013,5,21,16,30,258,221,69,5.300000000000001,25.5,57.870000000000005,1009,24.200000000000003 +2013,5,21,17,30,84,84,0,5.300000000000001,25.400000000000002,70.73,1009,24.3 +2013,5,21,18,30,10,10,0,5.4,25,83.21000000000001,1009,24.5 +2013,5,21,19,30,0,0,0,5.6000000000000005,24.8,95.35000000000001,1009,24.700000000000003 +2013,5,21,20,30,0,0,0,5.800000000000001,24.8,106.54,1009,24.700000000000003 +2013,5,21,21,30,0,0,0,6,24.8,116.43,1010,24.8 +2013,5,21,22,30,0,0,0,6,24.700000000000003,124.31,1009,24.700000000000003 +2013,5,21,23,30,0,0,0,5.6000000000000005,24.700000000000003,129.21,1010,24.700000000000003 +2013,5,22,0,30,0,0,0,5.300000000000001,24.6,130.23,1010,24.6 +2013,5,22,1,30,0,0,0,5.2,24.6,127.17,1010,24.6 +2013,5,22,2,30,0,0,0,5.2,24.6,120.63,1010,24.5 +2013,5,22,3,30,0,0,0,5.300000000000001,24.6,111.63,1010,24.5 +2013,5,22,4,30,0,0,0,5.300000000000001,24.5,101.02,1010,24.3 +2013,5,22,5,30,2,2,0,5.2,24.6,88.98,1011,24.200000000000003 +2013,5,22,6,30,37,37,0,4.9,24.900000000000002,76.98,1011,24.200000000000003 +2013,5,22,7,30,119,119,0,4.6000000000000005,25.200000000000003,64.27,1012,24.200000000000003 +2013,5,22,8,30,212,205,12,4.2,25.6,51.29,1012,24 +2013,5,22,9,30,324,302,28,3.7,25.900000000000002,38.21,1013,23.8 +2013,5,22,10,30,405,373,36,3.2,26.200000000000003,25.28,1013,23.700000000000003 +2013,5,22,11,30,462,421,42,2.9000000000000004,26.400000000000002,13.39,1013,23.6 +2013,5,22,12,30,470,429,42,2.8000000000000003,26.6,9.33,1012,23.5 +2013,5,22,13,30,430,395,37,2.9000000000000004,26.6,19.06,1012,23.400000000000002 +2013,5,22,14,30,365,338,32,3.1,26.400000000000002,31.69,1012,23.3 +2013,5,22,15,30,269,255,21,3.4000000000000004,26.3,44.74,1011,23.3 +2013,5,22,16,30,163,162,3,3.7,26,57.78,1011,23.3 +2013,5,22,17,30,72,72,0,3.8000000000000003,25.8,70.64,1011,23.400000000000002 +2013,5,22,18,30,63,44,155,4.2,25.200000000000003,83.10000000000001,1012,23.6 +2013,5,22,19,30,0,0,0,4.3,24.900000000000002,95.23,1012,23.8 +2013,5,22,20,30,0,0,0,4.4,24.8,106.4,1013,23.900000000000002 +2013,5,22,21,30,0,0,0,4.3,24.8,116.27,1013,24 +2013,5,22,22,30,0,0,0,4.1000000000000005,24.700000000000003,124.13000000000001,1013,24 +2013,5,22,23,30,0,0,0,3.9000000000000004,24.6,129.01,1013,24.1 +2013,5,23,0,30,0,0,0,3.7,24.6,130.04,1013,24.1 +2013,5,23,1,30,0,0,0,3.6,24.5,126.99000000000001,1013,24.200000000000003 +2013,5,23,2,30,0,0,0,3.4000000000000004,24.400000000000002,120.49000000000001,1014,24.3 +2013,5,23,3,30,0,0,0,3.4000000000000004,24.400000000000002,111.51,1014,24.400000000000002 +2013,5,23,4,30,0,0,0,3.4000000000000004,24.3,100.91,1014,24.3 +2013,5,23,5,30,2,2,0,3.7,24.700000000000003,88.9,1015,24.400000000000002 +2013,5,23,6,30,157,70,386,4.1000000000000005,25.3,76.91,1015,24.6 +2013,5,23,7,30,224,178,106,4.3,25.700000000000003,64.21000000000001,1016,24.5 +2013,5,23,8,30,303,264,62,4.3,26,51.24,1016,24.3 +2013,5,23,9,30,582,358,286,4.1000000000000005,26.3,38.160000000000004,1016,24.200000000000003 +2013,5,23,10,30,878,169,784,3.9000000000000004,26.5,25.22,1016,24 +2013,5,23,11,30,955,181,796,3.7,26.700000000000003,13.280000000000001,1016,23.900000000000002 +2013,5,23,12,30,956,222,744,3.5,26.8,9.14,1016,23.8 +2013,5,23,13,30,907,218,728,3.3000000000000003,26.8,18.94,1016,23.700000000000003 +2013,5,23,14,30,799,210,692,3.3000000000000003,26.8,31.6,1016,23.6 +2013,5,23,15,30,648,180,657,3.3000000000000003,26.6,44.65,1016,23.5 +2013,5,23,16,30,457,149,575,3.5,26.400000000000002,57.69,1015,23.400000000000002 +2013,5,23,17,30,160,129,91,3.5,26.200000000000003,70.54,1015,23.5 +2013,5,23,18,30,67,44,194,3.6,25.6,82.99,1016,23.700000000000003 +2013,5,23,19,30,0,0,0,3.7,25.3,95.11,1016,23.8 +2013,5,23,20,30,0,0,0,4,25.200000000000003,106.26,1017,24 +2013,5,23,21,30,0,0,0,4.3,25.1,116.11,1017,24 +2013,5,23,22,30,0,0,0,4.4,25,123.95,1017,23.900000000000002 +2013,5,23,23,30,0,0,0,4.1000000000000005,24.900000000000002,128.83,1017,23.8 +2013,5,24,0,30,0,0,0,4.1000000000000005,24.900000000000002,129.86,1017,23.6 +2013,5,24,1,30,0,0,0,4.3,24.8,126.82000000000001,1017,23.5 +2013,5,24,2,30,0,0,0,4.5,24.700000000000003,120.34,1017,23.400000000000002 +2013,5,24,3,30,0,0,0,4.3,24.6,111.39,1017,23.3 +2013,5,24,4,30,0,0,0,4.1000000000000005,24.6,100.82000000000001,1018,23.3 +2013,5,24,5,30,5,5,0,4,24.900000000000002,88.83,1018,23.200000000000003 +2013,5,24,6,30,20,20,0,4.1000000000000005,25.3,76.84,1019,23.400000000000002 +2013,5,24,7,30,201,173,65,4,25.700000000000003,64.16,1019,23.3 +2013,5,24,8,30,447,263,293,3.9000000000000004,26,51.19,1020,23.1 +2013,5,24,9,30,545,370,223,3.8000000000000003,26.3,38.11,1020,23 +2013,5,24,10,30,654,442,234,3.9000000000000004,26.5,25.16,1020,23.1 +2013,5,24,11,30,733,480,260,4,26.700000000000003,13.17,1020,23.1 +2013,5,24,12,30,832,425,412,4.1000000000000005,26.700000000000003,8.96,1019,23 +2013,5,24,13,30,820,391,454,4.2,26.8,18.830000000000002,1019,23 +2013,5,24,14,30,823,150,789,4.2,26.700000000000003,31.51,1019,23 +2013,5,24,15,30,595,243,495,4.1000000000000005,26.6,44.56,1019,23 +2013,5,24,16,30,389,205,344,4.1000000000000005,26.400000000000002,57.6,1019,22.900000000000002 +2013,5,24,17,30,139,125,42,4,26.3,70.44,1019,22.900000000000002 +2013,5,24,18,30,65,40,201,3.6,25.6,82.89,1019,23 +2013,5,24,19,30,0,0,0,3.4000000000000004,25.3,94.99,1020,23.1 +2013,5,24,20,30,0,0,0,3.4000000000000004,25.1,106.13,1020,23.1 +2013,5,24,21,30,0,0,0,3.4000000000000004,25,115.96000000000001,1020,23 +2013,5,24,22,30,0,0,0,3.5,24.900000000000002,123.78,1020,22.900000000000002 +2013,5,24,23,30,0,0,0,3.7,24.700000000000003,128.64000000000001,1020,22.900000000000002 +2013,5,25,0,30,0,0,0,3.9000000000000004,24.6,129.68,1019,22.8 +2013,5,25,1,30,0,0,0,4.1000000000000005,24.5,126.66,1019,22.700000000000003 +2013,5,25,2,30,0,0,0,4.3,24.5,120.21000000000001,1019,22.700000000000003 +2013,5,25,3,30,0,0,0,4.3,24.5,111.28,1019,22.700000000000003 +2013,5,25,4,30,0,0,0,4.3,24.5,100.73,1019,22.700000000000003 +2013,5,25,5,30,5,5,0,4.1000000000000005,24.700000000000003,88.77,1020,22.700000000000003 +2013,5,25,6,30,132,77,238,3.9000000000000004,25.1,76.78,1021,22.900000000000002 +2013,5,25,7,30,264,176,201,3.9000000000000004,25.400000000000002,64.11,1022,22.900000000000002 +2013,5,25,8,30,436,269,266,3.9000000000000004,25.6,51.15,1022,22.8 +2013,5,25,9,30,664,283,484,4,25.700000000000003,38.07,1022,22.8 +2013,5,25,10,30,727,408,352,4.1000000000000005,25.8,25.1,1022,22.8 +2013,5,25,11,30,763,467,303,4.3,25.900000000000002,13.07,1021,22.8 +2013,5,25,12,30,813,438,379,4.5,25.900000000000002,8.790000000000001,1021,22.8 +2013,5,25,13,30,649,475,184,4.800000000000001,25.900000000000002,18.72,1020,22.8 +2013,5,25,14,30,663,386,324,5,25.8,31.42,1020,22.8 +2013,5,25,15,30,577,271,429,5.2,25.8,44.480000000000004,1019,22.8 +2013,5,25,16,30,359,222,255,5.300000000000001,25.700000000000003,57.51,1019,23 +2013,5,25,17,30,176,131,133,5.300000000000001,25.700000000000003,70.35000000000001,1019,23.200000000000003 +2013,5,25,18,30,52,42,76,5.300000000000001,25.400000000000002,82.78,1019,23.400000000000002 +2013,5,25,19,30,0,0,0,5.300000000000001,25.3,94.87,1019,23.5 +2013,5,25,20,30,0,0,0,5.300000000000001,25.400000000000002,105.99000000000001,1019,23.5 +2013,5,25,21,30,0,0,0,5.300000000000001,25.400000000000002,115.81,1019,23.5 +2013,5,25,22,30,0,0,0,5.2,25.400000000000002,123.61,1019,23.5 +2013,5,25,23,30,0,0,0,5.2,25.400000000000002,128.47,1019,23.6 +2013,5,26,0,30,0,0,0,5.2,25.400000000000002,129.51,1019,23.700000000000003 +2013,5,26,1,30,0,0,0,5.2,25.3,126.51,1018,23.8 +2013,5,26,2,30,0,0,0,5.4,25.3,120.08,1018,23.900000000000002 +2013,5,26,3,30,0,0,0,5.5,25.200000000000003,111.18,1018,23.900000000000002 +2013,5,26,4,30,0,0,0,5.5,25.1,100.64,1018,23.8 +2013,5,26,5,30,7,7,0,5.2,25.1,88.71000000000001,1019,23.5 +2013,5,26,6,30,128,79,213,4.9,25.3,76.73,1019,23.400000000000002 +2013,5,26,7,30,208,176,74,4.7,25.5,64.06,1020,23.200000000000003 +2013,5,26,8,30,467,253,340,4.6000000000000005,25.700000000000003,51.11,1020,22.900000000000002 +2013,5,26,9,30,751,148,765,4.6000000000000005,26,38.03,1020,22.700000000000003 +2013,5,26,10,30,891,150,819,4.7,26.3,25.060000000000002,1020,22.700000000000003 +2013,5,26,11,30,782,457,333,4.7,26.6,12.98,1020,22.6 +2013,5,26,12,30,992,148,854,4.800000000000001,26.700000000000003,8.620000000000001,1019,22.6 +2013,5,26,13,30,736,452,299,4.9,26.900000000000002,18.62,1019,22.6 +2013,5,26,14,30,702,346,417,5,26.900000000000002,31.34,1018,22.5 +2013,5,26,15,30,587,256,463,5.1000000000000005,26.700000000000003,44.39,1018,22.5 +2013,5,26,16,30,377,214,303,5.1000000000000005,26.5,57.42,1018,22.5 +2013,5,26,17,30,151,129,65,5.2,26.400000000000002,70.25,1018,22.5 +2013,5,26,18,30,50,43,58,5.4,25.8,82.68,1018,22.6 +2013,5,26,19,30,0,0,0,5.7,25.5,94.75,1018,22.700000000000003 +2013,5,26,20,30,0,0,0,6.1000000000000005,25.5,105.86,1018,22.8 +2013,5,26,21,30,0,0,0,6.300000000000001,25.5,115.66,1018,22.8 +2013,5,26,22,30,0,0,0,6.4,25.6,123.45,1018,22.8 +2013,5,26,23,30,0,0,0,6.4,25.6,128.3,1018,22.8 +2013,5,27,0,30,0,0,0,6.2,25.6,129.34,1018,22.900000000000002 +2013,5,27,1,30,0,0,0,6.1000000000000005,25.5,126.36,1017,22.900000000000002 +2013,5,27,2,30,0,0,0,6,25.5,119.95,1017,23 +2013,5,27,3,30,0,0,0,5.9,25.400000000000002,111.07000000000001,1017,23 +2013,5,27,4,30,0,0,0,5.800000000000001,25.3,100.56,1017,23 +2013,5,27,5,30,9,9,13,5.800000000000001,25.5,88.65,1017,23 +2013,5,27,6,30,165,67,424,5.7,25.900000000000002,76.68,1017,23 +2013,5,27,7,30,373,102,618,5.6000000000000005,26.200000000000003,64.02,1018,22.900000000000002 +2013,5,27,8,30,579,125,723,5.4,26.5,51.07,1018,22.8 +2013,5,27,9,30,764,127,808,5.4,26.8,38,1018,22.700000000000003 +2013,5,27,10,30,900,135,843,5.5,27,25.02,1018,22.700000000000003 +2013,5,27,11,30,980,140,862,5.7,27.1,12.89,1017,22.6 +2013,5,27,12,30,1000,137,873,5.7,27.1,8.46,1017,22.5 +2013,5,27,13,30,953,131,867,5.800000000000001,27.1,18.52,1016,22.5 +2013,5,27,14,30,845,124,844,5.7,27,31.25,1015,22.400000000000002 +2013,5,27,15,30,558,294,369,5.6000000000000005,26.8,44.31,1015,22.3 +2013,5,27,16,30,334,231,192,5.6000000000000005,26.6,57.34,1015,22.3 +2013,5,27,17,30,190,130,176,5.6000000000000005,26.400000000000002,70.16,1015,22.400000000000002 +2013,5,27,18,30,54,44,77,5.800000000000001,25.8,82.58,1015,22.5 +2013,5,27,19,30,0,0,0,6,25.6,94.64,1015,22.700000000000003 +2013,5,27,20,30,0,0,0,6.4,25.5,105.73,1015,22.8 +2013,5,27,21,30,0,0,0,6.7,25.5,115.52,1016,22.8 +2013,5,27,22,30,0,0,0,7.1000000000000005,25.5,123.29,1016,22.8 +2013,5,27,23,30,0,0,0,7.300000000000001,25.400000000000002,128.13,1016,22.8 +2013,5,28,0,30,0,0,0,7.4,25.400000000000002,129.18,1015,22.700000000000003 +2013,5,28,1,30,0,0,0,7.5,25.3,126.22,1015,22.700000000000003 +2013,5,28,2,30,0,0,0,7.5,25.3,119.83,1014,22.700000000000003 +2013,5,28,3,30,0,0,0,7.5,25.200000000000003,110.98,1014,22.6 +2013,5,28,4,30,0,0,0,7.300000000000001,25.200000000000003,100.49000000000001,1014,22.6 +2013,5,28,5,30,8,8,0,7.2,25.3,88.60000000000001,1014,22.5 +2013,5,28,6,30,134,78,243,7.1000000000000005,25.700000000000003,76.63,1014,22.5 +2013,5,28,7,30,382,94,655,6.800000000000001,26,63.980000000000004,1014,22.400000000000002 +2013,5,28,8,30,589,115,754,6.5,26.400000000000002,51.04,1014,22.400000000000002 +2013,5,28,9,30,771,125,819,6.1000000000000005,26.700000000000003,37.97,1015,22.5 +2013,5,28,10,30,905,134,851,5.7,26.900000000000002,24.98,1015,22.6 +2013,5,28,11,30,988,132,878,5.4,27.1,12.81,1015,22.6 +2013,5,28,12,30,1004,132,881,5.5,27.1,8.3,1014,22.6 +2013,5,28,13,30,797,398,420,5.7,27.1,18.41,1014,22.700000000000003 +2013,5,28,14,30,743,321,492,6,26.900000000000002,31.16,1013,22.8 +2013,5,28,15,30,684,120,787,6.1000000000000005,26.6,44.230000000000004,1013,22.900000000000002 +2013,5,28,16,30,488,104,710,6.2,26.400000000000002,57.25,1013,23 +2013,5,28,17,30,275,82,569,6.300000000000001,26.3,70.07000000000001,1013,23.200000000000003 +2013,5,28,18,30,42,42,0,6.7,26,82.48,1013,23.200000000000003 +2013,5,28,19,30,0,0,0,7,25.8,94.52,1013,23.3 +2013,5,28,20,30,0,0,0,7.5,25.8,105.61,1013,23.200000000000003 +2013,5,28,21,30,0,0,0,7.800000000000001,25.700000000000003,115.38,1013,23 +2013,5,28,22,30,0,0,0,7.9,25.6,123.14,1013,23 +2013,5,28,23,30,0,0,0,7.800000000000001,25.6,127.97,1013,22.900000000000002 +2013,5,29,0,30,0,0,0,7.5,25.6,129.03,1013,22.900000000000002 +2013,5,29,1,30,0,0,0,7.2,25.5,126.08,1013,22.900000000000002 +2013,5,29,2,30,0,0,0,7.1000000000000005,25.400000000000002,119.72,1012,23 +2013,5,29,3,30,0,0,0,6.9,25.400000000000002,110.89,1012,23.1 +2013,5,29,4,30,0,0,0,6.7,25.3,100.42,1012,23.1 +2013,5,29,5,30,6,6,0,6.6000000000000005,25.400000000000002,88.55,1012,23.1 +2013,5,29,6,30,98,84,58,6.7,25.700000000000003,76.59,1012,23.1 +2013,5,29,7,30,219,179,91,6.6000000000000005,26.1,63.95,1013,23 +2013,5,29,8,30,451,264,298,6.6000000000000005,26.3,51.02,1013,23 +2013,5,29,9,30,614,342,346,6.6000000000000005,26.5,37.95,1013,23.1 +2013,5,29,10,30,703,424,307,6.800000000000001,26.700000000000003,24.95,1013,23.200000000000003 +2013,5,29,11,30,723,484,245,7,26.8,12.74,1013,23.3 +2013,5,29,12,30,835,427,412,7.1000000000000005,26.900000000000002,8.14,1013,23.400000000000002 +2013,5,29,13,30,790,403,407,7.2,26.900000000000002,18.32,1012,23.5 +2013,5,29,14,30,633,404,267,7.2,26.8,31.080000000000002,1012,23.5 +2013,5,29,15,30,511,321,265,7.1000000000000005,26.6,44.15,1011,23.5 +2013,5,29,16,30,342,231,204,6.9,26.400000000000002,57.17,1011,23.6 +2013,5,29,17,30,180,134,135,6.800000000000001,26.3,69.98,1011,23.700000000000003 +2013,5,29,18,30,48,44,31,6.7,26.1,82.38,1011,23.8 +2013,5,29,19,30,0,0,0,6.6000000000000005,26,94.41,1011,24 +2013,5,29,20,30,0,0,0,6.6000000000000005,26,105.49000000000001,1012,24 +2013,5,29,21,30,0,0,0,6.9,25.900000000000002,115.24000000000001,1012,24.1 +2013,5,29,22,30,0,0,0,7.2,25.900000000000002,122.99000000000001,1012,24.1 +2013,5,29,23,30,0,0,0,7.300000000000001,25.900000000000002,127.82000000000001,1012,24.1 +2013,5,30,0,30,0,0,0,7,25.900000000000002,128.88,1011,24.1 +2013,5,30,1,30,0,0,0,6.7,25.8,125.95,1011,24.200000000000003 +2013,5,30,2,30,0,0,0,6.4,25.700000000000003,119.61,1011,24.3 +2013,5,30,3,30,0,0,0,6.300000000000001,25.6,110.8,1010,24.5 +2013,5,30,4,30,0,0,0,6.4,25.6,100.35000000000001,1011,24.5 +2013,5,30,5,30,11,11,22,6.7,25.8,88.5,1011,24.5 +2013,5,30,6,30,160,70,391,7.1000000000000005,26.200000000000003,76.55,1012,24.5 +2013,5,30,7,30,365,102,599,7.2,26.6,63.92,1012,24.400000000000002 +2013,5,30,8,30,569,124,707,7.1000000000000005,26.900000000000002,50.99,1012,24.3 +2013,5,30,9,30,748,134,778,6.800000000000001,27.200000000000003,37.93,1013,24.3 +2013,5,30,10,30,644,445,219,6.4,27.5,24.92,1013,24.3 +2013,5,30,11,30,961,147,835,6.2,27.6,12.68,1013,24.3 +2013,5,30,12,30,666,503,165,6.2,27.8,8,1012,24.3 +2013,5,30,13,30,931,147,825,6.2,27.700000000000003,18.22,1012,24.5 +2013,5,30,14,30,600,414,216,6.2,27.700000000000003,31,1011,24.6 +2013,5,30,15,30,671,125,759,6.2,27.5,44.07,1011,24.700000000000003 +2013,5,30,16,30,478,110,678,6.2,27.3,57.08,1011,24.900000000000002 +2013,5,30,17,30,269,86,531,6.2,27.200000000000003,69.89,1011,25.1 +2013,5,30,18,30,78,45,250,6.2,26.700000000000003,82.29,1011,25.200000000000003 +2013,5,30,19,30,0,0,0,6.2,26.6,94.31,1012,25.400000000000002 +2013,5,30,20,30,0,0,0,6.4,26.5,105.37,1012,25.5 +2013,5,30,21,30,0,0,0,6.5,26.5,115.11,1012,25.6 +2013,5,30,22,30,0,0,0,6.5,26.400000000000002,122.85000000000001,1012,25.700000000000003 +2013,5,30,23,30,0,0,0,6.4,26.400000000000002,127.67,1012,25.700000000000003 +2013,5,31,0,30,0,0,0,6.2,26.3,128.74,1012,25.700000000000003 +2013,5,31,1,30,0,0,0,5.9,26.3,125.83,1012,25.700000000000003 +2013,5,31,2,30,0,0,0,5.6000000000000005,26.200000000000003,119.51,1012,25.700000000000003 +2013,5,31,3,30,0,0,0,5.5,26.200000000000003,110.73,1012,25.700000000000003 +2013,5,31,4,30,0,0,0,5.4,26.200000000000003,100.29,1012,25.700000000000003 +2013,5,31,5,30,13,12,38,5.4,26.400000000000002,88.46000000000001,1012,25.700000000000003 +2013,5,31,6,30,166,63,439,5.5,26.8,76.52,1013,25.8 +2013,5,31,7,30,374,89,647,5.6000000000000005,27.200000000000003,63.9,1013,25.700000000000003 +2013,5,31,8,30,581,104,758,5.6000000000000005,27.6,50.980000000000004,1013,25.400000000000002 +2013,5,31,9,30,759,117,813,5.4,28,37.910000000000004,1013,25.200000000000003 +2013,5,31,10,30,894,123,849,5.300000000000001,28.200000000000003,24.900000000000002,1013,25.200000000000003 +2013,5,31,11,30,437,403,34,5.300000000000001,28.400000000000002,12.620000000000001,1013,25.200000000000003 +2013,5,31,12,30,525,463,63,5.300000000000001,28.400000000000002,7.8500000000000005,1012,25.1 +2013,5,31,13,30,559,465,99,5.2,28.400000000000002,18.12,1012,25.200000000000003 +2013,5,31,14,30,594,416,208,5.2,28.3,30.92,1011,25.200000000000003 +2013,5,31,15,30,685,103,810,5.1000000000000005,28.1,43.99,1011,25.200000000000003 +2013,5,31,16,30,493,90,740,5.1000000000000005,27.8,57,1011,25.200000000000003 +2013,5,31,17,30,281,71,609,5.1000000000000005,27.700000000000003,69.8,1011,25.400000000000002 +2013,5,31,18,30,85,40,329,5.2,27.1,82.19,1011,25.6 +2013,5,31,19,30,0,0,0,5.4,26.8,94.2,1012,26 +2013,5,31,20,30,0,0,0,5.7,26.8,105.25,1012,26.200000000000003 +2013,5,31,21,30,0,0,0,6,26.700000000000003,114.98,1012,26.3 +2013,5,31,22,30,0,0,0,6.1000000000000005,26.700000000000003,122.71000000000001,1012,26.3 +2013,5,31,23,30,0,0,0,6.2,26.700000000000003,127.53,1012,26.3 +2013,6,1,0,30,0,0,0,6.300000000000001,26.700000000000003,128.6,1012,26.3 +2013,6,1,1,30,0,0,0,6.5,26.700000000000003,125.71000000000001,1011,26.1 +2013,6,1,2,30,0,0,0,6.5,26.6,119.42,1011,25.900000000000002 +2013,6,1,3,30,0,0,0,6.300000000000001,26.6,110.65,1011,25.8 +2013,6,1,4,30,0,0,0,6.1000000000000005,26.6,100.24000000000001,1011,25.6 +2013,6,1,5,30,13,12,44,6,26.8,88.42,1011,25.6 +2013,6,1,6,30,169,59,470,6,27.200000000000003,76.49,1012,25.6 +2013,6,1,7,30,378,81,674,6.1000000000000005,27.6,63.88,1012,25.3 +2013,6,1,8,30,584,96,774,6,28,50.96,1013,25 +2013,6,1,9,30,763,107,831,5.6000000000000005,28.3,37.9,1013,24.8 +2013,6,1,10,30,896,116,860,5.2,28.6,24.88,1013,24.8 +2013,6,1,11,30,974,123,872,4.800000000000001,28.700000000000003,12.56,1013,24.8 +2013,6,1,12,30,990,126,872,4.6000000000000005,28.700000000000003,7.72,1013,24.8 +2013,6,1,13,30,943,124,861,4.4,28.700000000000003,18.03,1012,24.8 +2013,6,1,14,30,837,118,837,4.3,28.5,30.84,1012,24.8 +2013,6,1,15,30,477,332,201,4.4,28.3,43.910000000000004,1012,24.900000000000002 +2013,6,1,16,30,488,97,718,4.4,28,56.92,1011,24.900000000000002 +2013,6,1,17,30,279,76,584,4.5,27.8,69.71000000000001,1011,25 +2013,6,1,18,30,84,43,301,4.6000000000000005,27.200000000000003,82.10000000000001,1012,25.1 +2013,6,1,19,30,0,0,0,4.800000000000001,26.900000000000002,94.10000000000001,1012,25.200000000000003 +2013,6,1,20,30,0,0,0,5,26.8,105.13,1012,25.3 +2013,6,1,21,30,0,0,0,5.2,26.700000000000003,114.86,1013,25.400000000000002 +2013,6,1,22,30,0,0,0,5.2,26.700000000000003,122.58,1013,25.400000000000002 +2013,6,1,23,30,0,0,0,5.1000000000000005,26.700000000000003,127.39,1013,25.400000000000002 +2013,6,2,0,30,0,0,0,4.9,26.700000000000003,128.47,1013,25.400000000000002 +2013,6,2,1,30,0,0,0,4.7,26.700000000000003,125.60000000000001,1013,25.400000000000002 +2013,6,2,2,30,0,0,0,4.4,26.6,119.33,1013,25.3 +2013,6,2,3,30,0,0,0,3.8000000000000003,26.5,110.58,1013,25.3 +2013,6,2,4,30,0,0,0,2.9000000000000004,26.400000000000002,100.19,1013,25.200000000000003 +2013,6,2,5,30,7,7,0,2,26.5,88.39,1014,25.1 +2013,6,2,6,30,160,70,385,1.2000000000000002,26.700000000000003,76.47,1015,25.1 +2013,6,2,7,30,319,150,383,0.6000000000000001,26.900000000000002,63.86,1015,24.900000000000002 +2013,6,2,8,30,47,47,0,0.6000000000000001,27.1,50.95,1014,24.700000000000003 +2013,6,2,9,30,405,352,67,1.4000000000000001,27.200000000000003,37.89,1014,24.5 +2013,6,2,10,30,547,443,114,2.5,27.200000000000003,24.86,1013,24.400000000000002 +2013,6,2,11,30,637,493,148,3.6,27.200000000000003,12.52,1013,24.400000000000002 +2013,6,2,12,30,676,503,174,4.4,27.200000000000003,7.58,1013,24.400000000000002 +2013,6,2,13,30,686,472,225,4.800000000000001,27.200000000000003,17.94,1013,24.200000000000003 +2013,6,2,14,30,666,390,321,4.7,27.1,30.76,1013,23.8 +2013,6,2,15,30,611,238,517,4.4,27.1,43.83,1012,23.200000000000003 +2013,6,2,16,30,475,143,607,4.2,27.1,56.84,1012,22.6 +2013,6,2,17,30,208,131,223,4.1000000000000005,27,69.62,1012,22 +2013,6,2,18,30,87,47,293,3.9000000000000004,26.400000000000002,82.01,1012,21.900000000000002 +2013,6,2,19,30,0,0,0,3.8000000000000003,26,94,1012,21.3 +2013,6,2,20,30,0,0,0,3.7,25.900000000000002,105.02,1013,20.8 +2013,6,2,21,30,0,0,0,3.5,25.700000000000003,114.74000000000001,1013,20.5 +2013,6,2,22,30,0,0,0,3.2,25.6,122.45,1013,20.400000000000002 +2013,6,2,23,30,0,0,0,3,25.400000000000002,127.26,1013,20.200000000000003 +2013,6,3,0,30,0,0,0,2.8000000000000003,25.3,128.35,1012,20.1 +2013,6,3,1,30,0,0,0,2.7,25.200000000000003,125.49000000000001,1012,20.1 +2013,6,3,2,30,0,0,0,2.6,25,119.25,1012,20.1 +2013,6,3,3,30,0,0,0,2.7,24.700000000000003,110.52,1012,20.200000000000003 +2013,6,3,4,30,0,0,0,3.3000000000000003,24.400000000000002,100.14,1013,20.6 +2013,6,3,5,30,14,13,58,3.9000000000000004,24.5,88.36,1014,20.900000000000002 +2013,6,3,6,30,175,67,459,4.1000000000000005,25,76.45,1014,21.3 +2013,6,3,7,30,388,94,668,4,25.700000000000003,63.85,1014,21.400000000000002 +2013,6,3,8,30,600,109,779,3.7,26.400000000000002,50.95,1014,21.1 +2013,6,3,9,30,783,121,838,3.4000000000000004,27,37.88,1014,21 +2013,6,3,10,30,921,128,875,3,27.400000000000002,24.85,1013,20.8 +2013,6,3,11,30,1001,130,892,2.5,27.8,12.48,1013,20.6 +2013,6,3,12,30,1021,121,907,2.1,28.1,7.46,1012,20.400000000000002 +2013,6,3,13,30,971,121,893,1.9000000000000001,28.3,17.85,1012,20.400000000000002 +2013,6,3,14,30,861,117,865,1.8,28.3,30.68,1011,20.5 +2013,6,3,15,30,703,102,832,1.9000000000000001,28.200000000000003,43.75,1011,20.6 +2013,6,3,16,30,506,91,758,2.2,28,56.76,1010,20.8 +2013,6,3,17,30,292,73,625,2.3000000000000003,27.8,69.54,1010,21.1 +2013,6,3,18,30,92,41,362,2.9000000000000004,26.700000000000003,81.92,1011,21.6 +2013,6,3,19,30,0,0,0,3.1,26.3,93.9,1011,21.900000000000002 +2013,6,3,20,30,0,0,0,3.2,26.1,104.92,1012,22.1 +2013,6,3,21,30,0,0,0,3.3000000000000003,26,114.62,1012,22.200000000000003 +2013,6,3,22,30,0,0,0,3.3000000000000003,25.900000000000002,122.33,1012,22.3 +2013,6,3,23,30,0,0,0,3.2,25.8,127.14,1012,22.400000000000002 +2013,6,4,0,30,0,0,0,3,25.6,128.24,1012,22.400000000000002 +2013,6,4,1,30,0,0,0,2.8000000000000003,25.5,125.4,1011,22.3 +2013,6,4,2,30,0,0,0,2.5,25.3,119.17,1011,22.200000000000003 +2013,6,4,3,30,0,0,0,2.1,25.200000000000003,110.46000000000001,1012,22.1 +2013,6,4,4,30,0,0,0,1.8,25.200000000000003,100.10000000000001,1012,21.900000000000002 +2013,6,4,5,30,15,13,92,1.6,25.5,88.34,1013,21.900000000000002 +2013,6,4,6,30,181,53,547,1.5,26.1,76.43,1013,22.1 +2013,6,4,7,30,397,72,737,1.4000000000000001,26.6,63.84,1013,21.900000000000002 +2013,6,4,8,30,608,82,836,1.4000000000000001,27,50.94,1013,21.8 +2013,6,4,9,30,793,87,894,1.4000000000000001,27.400000000000002,37.88,1013,21.900000000000002 +2013,6,4,10,30,928,90,924,1.6,27.8,24.85,1013,21.900000000000002 +2013,6,4,11,30,1010,93,939,1.8,28.1,12.450000000000001,1012,22 +2013,6,4,12,30,1025,101,932,2.1,28.3,7.34,1012,22.1 +2013,6,4,13,30,977,99,921,2.3000000000000003,28.400000000000002,17.77,1011,22.3 +2013,6,4,14,30,869,95,900,2.4000000000000004,28.400000000000002,30.61,1011,22.400000000000002 +2013,6,4,15,30,712,86,866,2.6,28.3,43.68,1011,22.6 +2013,6,4,16,30,515,76,799,2.7,28.1,56.68,1011,22.700000000000003 +2013,6,4,17,30,300,62,680,2.7,28,69.46000000000001,1011,23 +2013,6,4,18,30,96,36,422,2.6,27.3,81.83,1011,23.3 +2013,6,4,19,30,0,0,0,2.7,26.900000000000002,93.8,1012,23.700000000000003 +2013,6,4,20,30,0,0,0,2.8000000000000003,26.700000000000003,104.81,1012,23.900000000000002 +2013,6,4,21,30,0,0,0,2.9000000000000004,26.6,114.51,1012,24 +2013,6,4,22,30,0,0,0,3,26.5,122.21000000000001,1012,24 +2013,6,4,23,30,0,0,0,3,26.400000000000002,127.02,1012,24 +2013,6,5,0,30,0,0,0,3,26.3,128.13,1011,24 +2013,6,5,1,30,0,0,0,2.8000000000000003,26.200000000000003,125.31,1011,23.900000000000002 +2013,6,5,2,30,0,0,0,2.4000000000000004,26.1,119.10000000000001,1011,23.900000000000002 +2013,6,5,3,30,0,0,0,1.9000000000000001,26.1,110.41,1011,23.8 +2013,6,5,4,30,0,0,0,1.4000000000000001,26.1,100.07000000000001,1011,23.6 +2013,6,5,5,30,15,13,93,1.4000000000000001,26.400000000000002,88.32000000000001,1011,23.5 +2013,6,5,6,30,173,57,496,1.8,26.900000000000002,76.42,1012,23.700000000000003 +2013,6,5,7,30,383,81,686,2.4000000000000004,27.5,63.84,1012,23.700000000000003 +2013,6,5,8,30,589,94,787,2.9000000000000004,28,50.94,1013,23.900000000000002 +2013,6,5,9,30,767,104,840,3.2,28.5,37.89,1013,23.900000000000002 +2013,6,5,10,30,901,110,872,3.5,28.900000000000002,24.85,1012,23.900000000000002 +2013,6,5,11,30,980,113,888,3.7,29.200000000000003,12.42,1012,24 +2013,6,5,12,30,999,107,899,3.8000000000000003,29.3,7.22,1011,24.200000000000003 +2013,6,5,13,30,954,104,892,3.8000000000000003,29.3,17.68,1011,24.3 +2013,6,5,14,30,850,100,871,3.7,29.1,30.53,1010,24.400000000000002 +2013,6,5,15,30,689,103,810,3.5,28.900000000000002,43.6,1010,24.5 +2013,6,5,16,30,497,90,739,3.4000000000000004,28.700000000000003,56.6,1009,24.5 +2013,6,5,17,30,287,71,613,3.3000000000000003,28.5,69.38,1009,24.6 +2013,6,5,18,30,89,42,333,3.3000000000000003,27.8,81.74,1009,24.700000000000003 +2013,6,5,19,30,0,0,0,3.4000000000000004,27.400000000000002,93.71000000000001,1010,24.900000000000002 +2013,6,5,20,30,0,0,0,3.8000000000000003,27.200000000000003,104.71000000000001,1010,25 +2013,6,5,21,30,0,0,0,4.2,27,114.4,1010,25.1 +2013,6,5,22,30,0,0,0,4.4,26.900000000000002,122.10000000000001,1010,25.1 +2013,6,5,23,30,0,0,0,4.2,26.700000000000003,126.91,1010,25 +2013,6,6,0,30,0,0,0,3.6,26.6,128.03,1009,24.8 +2013,6,6,1,30,0,0,0,2.6,26.5,125.22,1009,24.6 +2013,6,6,2,30,0,0,0,1.6,26.5,119.03,1009,24.3 +2013,6,6,3,30,0,0,0,0.8,26.6,110.37,1010,23.900000000000002 +2013,6,6,4,30,0,0,0,0.6000000000000001,26.6,100.03,1010,23.700000000000003 +2013,6,6,5,30,14,12,49,0.9,26.8,88.3,1010,23.6 +2013,6,6,6,30,119,85,142,1,27.200000000000003,76.41,1011,23.700000000000003 +2013,6,6,7,30,266,178,199,1.2000000000000002,27.700000000000003,63.84,1011,23.400000000000002 +2013,6,6,8,30,579,105,753,1.3,28.200000000000003,50.95,1011,23.200000000000003 +2013,6,6,9,30,756,117,811,1.2000000000000002,28.6,37.89,1011,23.200000000000003 +2013,6,6,10,30,891,126,843,1.2000000000000002,28.900000000000002,24.85,1011,23.200000000000003 +2013,6,6,11,30,969,134,855,1.4000000000000001,29,12.39,1011,23.3 +2013,6,6,12,30,989,129,867,2,29,7.11,1010,23.5 +2013,6,6,13,30,944,128,856,2.6,28.900000000000002,17.6,1009,23.8 +2013,6,6,14,30,840,123,832,2.8000000000000003,28.700000000000003,30.46,1009,24 +2013,6,6,15,30,685,113,789,2.5,28.400000000000002,43.53,1009,24.1 +2013,6,6,16,30,495,96,723,2.2,28,56.53,1009,24.1 +2013,6,6,17,30,286,76,595,2,27.8,69.3,1009,24.200000000000003 +2013,6,6,18,30,75,47,190,1.8,26.900000000000002,81.66,1010,24.3 +2013,6,6,19,30,0,0,0,1.9000000000000001,26.5,93.61,1010,24.400000000000002 +2013,6,6,20,30,0,0,0,1.9000000000000001,26.3,104.61,1010,24.400000000000002 +2013,6,6,21,30,0,0,0,1.7000000000000002,25.900000000000002,114.3,1011,24.3 +2013,6,6,22,30,0,0,0,1.3,25.6,121.99000000000001,1011,24 +2013,6,6,23,30,0,0,0,1.6,25.3,126.8,1011,23.700000000000003 +2013,6,7,0,30,0,0,0,2.7,25,127.93,1011,23.700000000000003 +2013,6,7,1,30,0,0,0,3.7,24.6,125.14,1011,23.6 +2013,6,7,2,30,0,0,0,4.4,24.3,118.98,1011,23.3 +2013,6,7,3,30,0,0,0,4.5,24.1,110.33,1011,23 +2013,6,7,4,30,0,0,0,4.5,23.900000000000002,100.01,1012,22.8 +2013,6,7,5,30,10,10,21,4.7,24,88.29,1012,22.5 +2013,6,7,6,30,163,74,378,4.800000000000001,24.3,76.41,1013,22.400000000000002 +2013,6,7,7,30,367,107,591,4.6000000000000005,24.900000000000002,63.84,1013,22.200000000000003 +2013,6,7,8,30,572,125,710,4.2,25.6,50.96,1014,22.1 +2013,6,7,9,30,753,132,786,3.7,26.200000000000003,37.9,1014,21.900000000000002 +2013,6,7,10,30,890,137,829,3.2,26.700000000000003,24.86,1013,21.700000000000003 +2013,6,7,11,30,971,139,852,2.6,27.200000000000003,12.38,1013,21.3 +2013,6,7,12,30,989,141,854,2.1,27.700000000000003,7,1012,20.8 +2013,6,7,13,30,944,139,844,1.7000000000000002,28,17.52,1012,20.400000000000002 +2013,6,7,14,30,840,134,818,1.4000000000000001,28.3,30.38,1012,20.1 +2013,6,7,15,30,680,135,751,1.2000000000000002,28.5,43.46,1011,19.8 +2013,6,7,16,30,490,118,673,1.1,28.5,56.45,1011,19.6 +2013,6,7,17,30,282,92,535,1.1,28.5,69.22,1011,19.5 +2013,6,7,18,30,60,50,65,1,27.8,81.57000000000001,1012,19.8 +2013,6,7,19,30,0,0,0,0.9,27.400000000000002,93.53,1012,19.900000000000002 +2013,6,7,20,30,0,0,0,1,27,104.52,1012,19.700000000000003 +2013,6,7,21,30,0,0,0,1.4000000000000001,26.700000000000003,114.2,1012,19.5 +2013,6,7,22,30,0,0,0,1.8,26.400000000000002,121.89,1012,19.5 +2013,6,7,23,30,0,0,0,2.1,26.1,126.7,1012,19.6 +2013,6,8,0,30,0,0,0,2.1,25.8,127.84,1012,19.900000000000002 +2013,6,8,1,30,0,0,0,2,25.700000000000003,125.07000000000001,1012,20.200000000000003 +2013,6,8,2,30,0,0,0,2,25.6,118.92,1013,20.5 +2013,6,8,3,30,0,0,0,2.2,25.6,110.29,1013,20.8 +2013,6,8,4,30,0,0,0,2.2,25.700000000000003,99.99000000000001,1013,21.1 +2013,6,8,5,30,3,3,0,2.1,25.8,88.28,1013,21.400000000000002 +2013,6,8,6,30,83,80,12,2,26.1,76.41,1014,21.5 +2013,6,8,7,30,188,169,44,2.1,26.3,63.85,1014,21.6 +2013,6,8,8,30,488,239,396,2,26.5,50.97,1014,21.6 +2013,6,8,9,30,472,373,126,1.7000000000000002,26.6,37.92,1014,21.8 +2013,6,8,10,30,869,161,780,1.4000000000000001,26.8,24.87,1014,21.8 +2013,6,8,11,30,951,161,808,1.3,27.1,12.370000000000001,1014,21.900000000000002 +2013,6,8,12,30,886,428,461,1.4000000000000001,27.3,6.91,1013,22 +2013,6,8,13,30,656,478,186,1.7000000000000002,27.5,17.44,1013,22 +2013,6,8,14,30,620,413,239,2.1,27.6,30.310000000000002,1012,22 +2013,6,8,15,30,522,324,273,2.6,27.6,43.39,1012,22 +2013,6,8,16,30,418,202,390,3,27.5,56.38,1012,22.1 +2013,6,8,17,30,235,123,314,3.2,27.400000000000002,69.14,1012,22.3 +2013,6,8,18,30,93,45,324,3.7,27,81.49,1012,22.700000000000003 +2013,6,8,19,30,0,0,0,4.1000000000000005,26.8,93.44,1012,23 +2013,6,8,20,30,0,0,0,4.5,26.700000000000003,104.43,1012,23.3 +2013,6,8,21,30,0,0,0,4.7,26.700000000000003,114.10000000000001,1013,23.400000000000002 +2013,6,8,22,30,0,0,0,4.800000000000001,26.700000000000003,121.79,1013,23.5 +2013,6,8,23,30,0,0,0,4.800000000000001,26.700000000000003,126.61,1013,23.6 +2013,6,9,0,30,0,0,0,4.800000000000001,26.700000000000003,127.76,1013,23.700000000000003 +2013,6,9,1,30,0,0,0,4.800000000000001,26.6,125.01,1012,23.8 +2013,6,9,2,30,0,0,0,4.7,26.5,118.88,1012,24 +2013,6,9,3,30,0,0,0,4.5,26.400000000000002,110.26,1012,24.200000000000003 +2013,6,9,4,30,0,0,0,4.2,26.400000000000002,99.97,1012,24.3 +2013,6,9,5,30,14,12,59,3.9000000000000004,26.6,88.28,1012,24.5 +2013,6,9,6,30,169,60,462,3.7,27,76.41,1013,24.900000000000002 +2013,6,9,7,30,301,162,317,3.5,27.5,63.86,1013,25.1 +2013,6,9,8,30,579,98,765,3.3000000000000003,27.700000000000003,50.980000000000004,1013,25.200000000000003 +2013,6,9,9,30,756,109,821,3.2,27.900000000000002,37.93,1014,25.200000000000003 +2013,6,9,10,30,891,114,856,3.1,27.900000000000002,24.88,1014,25.3 +2013,6,9,11,30,970,116,874,3.2,28,12.36,1013,25.400000000000002 +2013,6,9,12,30,802,455,350,3.4000000000000004,27.900000000000002,6.8100000000000005,1013,25.5 +2013,6,9,13,30,577,471,112,3.6,27.900000000000002,17.37,1013,25.6 +2013,6,9,14,30,145,144,1,3.8000000000000003,27.8,30.240000000000002,1012,25.6 +2013,6,9,15,30,132,132,0,3.9000000000000004,27.6,43.32,1012,25.5 +2013,6,9,16,30,220,205,27,3.9000000000000004,27.3,56.31,1012,25.400000000000002 +2013,6,9,17,30,248,116,369,3.9000000000000004,27.200000000000003,69.07000000000001,1012,25.200000000000003 +2013,6,9,18,30,70,51,131,3.9000000000000004,26.8,81.42,1012,25 +2013,6,9,19,30,0,0,0,4,26.6,93.36,1013,24.8 +2013,6,9,20,30,0,0,0,4.2,26.6,104.34,1013,24.6 +2013,6,9,21,30,0,0,0,4.4,26.700000000000003,114.01,1014,24.5 +2013,6,9,22,30,0,0,0,4.5,26.8,121.7,1014,24.5 +2013,6,9,23,30,0,0,0,4.4,26.8,126.52,1014,24.5 +2013,6,10,0,30,0,0,0,4.3,26.8,127.68,1014,24.400000000000002 +2013,6,10,1,30,0,0,0,4.2,26.8,124.95,1014,24.400000000000002 +2013,6,10,2,30,0,0,0,4.1000000000000005,26.700000000000003,118.84,1014,24.3 +2013,6,10,3,30,0,0,0,3.9000000000000004,26.700000000000003,110.24000000000001,1014,24.3 +2013,6,10,4,30,0,0,0,3.7,26.6,99.96000000000001,1014,24.3 +2013,6,10,5,30,14,12,39,3.4000000000000004,26.900000000000002,88.28,1014,24.3 +2013,6,10,6,30,165,64,431,3.2,27.3,76.42,1015,24.700000000000003 +2013,6,10,7,30,369,90,633,3,27.6,63.870000000000005,1015,24.700000000000003 +2013,6,10,8,30,572,106,740,2.8000000000000003,28,51,1015,24.400000000000002 +2013,6,10,9,30,748,119,799,2.7,28.3,37.95,1016,24.3 +2013,6,10,10,30,752,371,420,2.8000000000000003,28.5,24.900000000000002,1016,24.400000000000002 +2013,6,10,11,30,765,466,306,3.2,28.6,12.36,1016,24.5 +2013,6,10,12,30,690,503,188,3.7,28.5,6.73,1015,24.700000000000003 +2013,6,10,13,30,712,466,258,4.1000000000000005,28.400000000000002,17.29,1015,24.900000000000002 +2013,6,10,14,30,765,318,517,4.4,28.3,30.18,1014,25.1 +2013,6,10,15,30,561,304,353,4.6000000000000005,28.200000000000003,43.25,1014,25.1 +2013,6,10,16,30,454,164,522,4.7,28.1,56.24,1014,25.200000000000003 +2013,6,10,17,30,238,123,320,4.7,28,69,1014,25.200000000000003 +2013,6,10,18,30,63,52,77,4.6000000000000005,27.6,81.34,1014,25.200000000000003 +2013,6,10,19,30,0,0,0,4.6000000000000005,27.400000000000002,93.28,1015,25.200000000000003 +2013,6,10,20,30,0,0,0,4.7,27.400000000000002,104.26,1015,25 +2013,6,10,21,30,0,0,0,4.800000000000001,27.400000000000002,113.93,1016,24.900000000000002 +2013,6,10,22,30,0,0,0,5,27.3,121.61,1016,24.8 +2013,6,10,23,30,0,0,0,5.1000000000000005,27.3,126.44,1015,24.6 +2013,6,11,0,30,0,0,0,5.1000000000000005,27.200000000000003,127.62,1015,24.5 +2013,6,11,1,30,0,0,0,5,27.200000000000003,124.9,1015,24.400000000000002 +2013,6,11,2,30,0,0,0,4.800000000000001,27.200000000000003,118.8,1015,24.400000000000002 +2013,6,11,3,30,0,0,0,4.4,27.1,110.22,1015,24.400000000000002 +2013,6,11,4,30,0,0,0,3.9000000000000004,27.1,99.96000000000001,1016,24.5 +2013,6,11,5,30,8,8,0,3.6,27.400000000000002,88.28,1016,24.6 +2013,6,11,6,30,119,85,146,3.6,27.900000000000002,76.43,1017,24.900000000000002 +2013,6,11,7,30,182,166,37,3.7,28.3,63.89,1018,25 +2013,6,11,8,30,390,280,175,3.9000000000000004,28.5,51.02,1018,25.1 +2013,6,11,9,30,719,192,669,4,28.8,37.980000000000004,1018,25.3 +2013,6,11,10,30,724,408,349,4,28.900000000000002,24.92,1018,25.3 +2013,6,11,11,30,930,215,731,3.9000000000000004,29,12.36,1018,25.200000000000003 +2013,6,11,12,30,937,247,695,3.6,29,6.640000000000001,1018,25.1 +2013,6,11,13,30,776,421,372,3.1,29,17.22,1017,24.900000000000002 +2013,6,11,14,30,622,413,242,2.7,28.900000000000002,30.11,1017,24.700000000000003 +2013,6,11,15,30,423,336,119,2.3000000000000003,28.700000000000003,43.18,1016,24.3 +2013,6,11,16,30,467,167,538,2.2,28.5,56.17,1016,24.1 +2013,6,11,17,30,229,129,276,2.1,28.3,68.93,1016,24 +2013,6,11,18,30,37,37,0,2.9000000000000004,27.700000000000003,81.27,1016,24.400000000000002 +2013,6,11,19,30,0,0,0,3.7,27.400000000000002,93.2,1016,24.5 +2013,6,11,20,30,0,0,0,4.4,27.3,104.18,1016,24.6 +2013,6,11,21,30,0,0,0,5,27.200000000000003,113.85000000000001,1017,24.6 +2013,6,11,22,30,0,0,0,5.2,27.1,121.53,1017,24.6 +2013,6,11,23,30,0,0,0,5.300000000000001,27,126.37,1017,24.700000000000003 +2013,6,12,0,30,0,0,0,5.1000000000000005,27,127.55,1017,24.700000000000003 +2013,6,12,1,30,0,0,0,4.9,26.900000000000002,124.85000000000001,1017,24.700000000000003 +2013,6,12,2,30,0,0,0,4.7,26.8,118.77,1017,24.6 +2013,6,12,3,30,0,0,0,4.5,26.8,110.21000000000001,1017,24.6 +2013,6,12,4,30,0,0,0,4.3,26.8,99.96000000000001,1017,24.6 +2013,6,12,5,30,13,12,30,4.2,27.200000000000003,88.29,1017,24.700000000000003 +2013,6,12,6,30,130,81,209,4.1000000000000005,27.8,76.44,1018,24.8 +2013,6,12,7,30,366,99,608,4,28.3,63.910000000000004,1018,24.8 +2013,6,12,8,30,425,272,242,3.7,28.700000000000003,51.04,1018,24.8 +2013,6,12,9,30,624,337,365,3.5,29,38,1019,24.8 +2013,6,12,10,30,737,386,387,3.3000000000000003,29.200000000000003,24.95,1018,24.900000000000002 +2013,6,12,11,30,824,414,420,3.2,29.3,12.370000000000001,1018,24.900000000000002 +2013,6,12,12,30,970,155,820,3.2,29.400000000000002,6.57,1018,25 +2013,6,12,13,30,926,153,809,3.2,29.3,17.150000000000002,1017,25 +2013,6,12,14,30,709,352,412,3.2,29.200000000000003,30.04,1017,25.1 +2013,6,12,15,30,482,337,199,3.2,29,43.12,1016,25.200000000000003 +2013,6,12,16,30,436,191,439,3.3000000000000003,28.8,56.11,1016,25.200000000000003 +2013,6,12,17,30,265,104,446,3.4000000000000004,28.700000000000003,68.86,1016,25.3 +2013,6,12,18,30,76,51,165,3.6,28.200000000000003,81.2,1016,25.5 +2013,6,12,19,30,0,0,0,3.7,27.900000000000002,93.13,1016,25.6 +2013,6,12,20,30,0,0,0,3.8000000000000003,27.900000000000002,104.10000000000001,1017,25.6 +2013,6,12,21,30,0,0,0,3.8000000000000003,27.8,113.77,1017,25.5 +2013,6,12,22,30,0,0,0,3.8000000000000003,27.6,121.46000000000001,1017,25.400000000000002 +2013,6,12,23,30,0,0,0,3.8000000000000003,27.5,126.3,1016,25.3 +2013,6,13,0,30,0,0,0,3.7,27.5,127.5,1016,25.200000000000003 +2013,6,13,1,30,0,0,0,3.6,27.400000000000002,124.81,1016,25 +2013,6,13,2,30,0,0,0,3.5,27.3,118.75,1016,24.900000000000002 +2013,6,13,3,30,0,0,0,3.2,27.3,110.2,1016,24.8 +2013,6,13,4,30,0,0,0,2.8000000000000003,27.3,99.96000000000001,1016,24.6 +2013,6,13,5,30,9,9,0,2.3000000000000003,27.5,88.3,1017,24.5 +2013,6,13,6,30,113,85,118,1.9000000000000001,27.900000000000002,76.46000000000001,1017,24.5 +2013,6,13,7,30,367,97,614,1.6,28.3,63.93,1018,24.200000000000003 +2013,6,13,8,30,571,115,725,1.5,28.700000000000003,51.07,1018,24 +2013,6,13,9,30,645,299,439,1.3,29.1,38.03,1018,23.8 +2013,6,13,10,30,780,358,465,1,29.5,24.97,1018,23.5 +2013,6,13,11,30,970,133,856,1,29.8,12.38,1017,23.3 +2013,6,13,12,30,992,132,865,1.5,29.900000000000002,6.5,1017,23.3 +2013,6,13,13,30,950,128,860,2.1,30,17.09,1016,23.5 +2013,6,13,14,30,848,121,840,2.7,29.900000000000002,29.98,1015,23.700000000000003 +2013,6,13,15,30,642,221,576,3,29.6,43.06,1015,24 +2013,6,13,16,30,415,209,369,3.2,29.200000000000003,56.04,1014,24.200000000000003 +2013,6,13,17,30,257,113,397,3.2,29,68.79,1014,24.3 +2013,6,13,18,30,91,46,286,3.4000000000000004,28.200000000000003,81.13,1014,24.6 +2013,6,13,19,30,0,0,0,3.4000000000000004,27.8,93.06,1014,24.8 +2013,6,13,20,30,0,0,0,3.4000000000000004,27.6,104.03,1014,25 +2013,6,13,21,30,0,0,0,3.2,27.5,113.7,1015,25 +2013,6,13,22,30,0,0,0,2.9000000000000004,27.5,121.39,1015,24.900000000000002 +2013,6,13,23,30,0,0,0,2.6,27.400000000000002,126.24000000000001,1014,24.700000000000003 +2013,6,14,0,30,0,0,0,2.4000000000000004,27.400000000000002,127.45,1014,24.5 +2013,6,14,1,30,0,0,0,2.2,27.3,124.78,1014,24.400000000000002 +2013,6,14,2,30,0,0,0,2,27.3,118.74000000000001,1014,24.3 +2013,6,14,3,30,0,0,0,1.9000000000000001,27.200000000000003,110.2,1014,24.3 +2013,6,14,4,30,0,0,0,1.9000000000000001,27.200000000000003,99.97,1014,24.400000000000002 +2013,6,14,5,30,8,8,0,2.1,27.400000000000002,88.31,1014,24.5 +2013,6,14,6,30,163,70,400,2.3000000000000003,27.900000000000002,76.48,1015,24.700000000000003 +2013,6,14,7,30,367,104,599,2.3000000000000003,28.3,63.96,1015,24.700000000000003 +2013,6,14,8,30,471,248,356,2.2,28.8,51.1,1015,24.5 +2013,6,14,9,30,748,138,774,2.1,29.3,38.06,1015,24.200000000000003 +2013,6,14,10,30,883,148,810,2,29.700000000000003,25,1015,23.900000000000002 +2013,6,14,11,30,962,154,827,2,30.1,12.4,1014,23.6 +2013,6,14,12,30,985,148,843,2.3000000000000003,30.200000000000003,6.44,1014,23.5 +2013,6,14,13,30,814,399,435,2.5,30.3,17.02,1013,23.400000000000002 +2013,6,14,14,30,718,344,432,2.8000000000000003,30.200000000000003,29.92,1013,23.400000000000002 +2013,6,14,15,30,683,129,758,3,30.1,43,1013,23.5 +2013,6,14,16,30,400,220,321,3.2,29.8,55.980000000000004,1012,23.400000000000002 +2013,6,14,17,30,239,127,309,3.3000000000000003,29.700000000000003,68.73,1012,23.400000000000002 +2013,6,14,18,30,74,53,141,3.3000000000000003,29,81.07000000000001,1013,23.5 +2013,6,14,19,30,0,0,0,3.2,28.6,92.99,1013,23.6 +2013,6,14,20,30,0,0,0,3.2,28.400000000000002,103.97,1014,23.700000000000003 +2013,6,14,21,30,0,0,0,3.2,28.3,113.63,1014,23.700000000000003 +2013,6,14,22,30,0,0,0,3.1,28.1,121.33,1014,23.700000000000003 +2013,6,14,23,30,0,0,0,2.9000000000000004,28,126.19,1014,23.8 +2013,6,15,0,30,0,0,0,2.6,27.8,127.41,1014,23.700000000000003 +2013,6,15,1,30,0,0,0,2.2,27.700000000000003,124.75,1013,23.5 +2013,6,15,2,30,0,0,0,1.8,27.700000000000003,118.73,1013,23.3 +2013,6,15,3,30,0,0,0,1.5,27.700000000000003,110.2,1014,23.1 +2013,6,15,4,30,0,0,0,1.4000000000000001,27.700000000000003,99.98,1014,23 +2013,6,15,5,30,7,7,0,1.5,27.900000000000002,88.33,1014,23 +2013,6,15,6,30,162,70,392,1.6,28.3,76.51,1015,23.1 +2013,6,15,7,30,364,104,593,1.7000000000000002,28.700000000000003,63.99,1015,22.900000000000002 +2013,6,15,8,30,566,124,705,1.9000000000000001,29.1,51.13,1016,22.900000000000002 +2013,6,15,9,30,743,139,768,2.2,29.400000000000002,38.1,1016,23.1 +2013,6,15,10,30,879,145,811,2.5,29.8,25.04,1016,23.3 +2013,6,15,11,30,963,146,837,2.8000000000000003,30.1,12.42,1015,23.5 +2013,6,15,12,30,983,145,843,3.1,30.3,6.38,1015,23.6 +2013,6,15,13,30,943,140,840,3.3000000000000003,30.3,16.96,1015,23.700000000000003 +2013,6,15,14,30,842,130,821,3.6,30.200000000000003,29.86,1014,23.8 +2013,6,15,15,30,690,124,774,3.8000000000000003,29.900000000000002,42.94,1014,23.8 +2013,6,15,16,30,502,106,707,3.8000000000000003,29.6,55.92,1014,23.900000000000002 +2013,6,15,17,30,295,83,584,3.9000000000000004,29.400000000000002,68.67,1013,23.900000000000002 +2013,6,15,18,30,98,49,317,3.9000000000000004,28.6,81.01,1014,24.1 +2013,6,15,19,30,0,0,0,4,28.200000000000003,92.93,1014,24.200000000000003 +2013,6,15,20,30,0,0,0,4.1000000000000005,28,103.9,1015,24.3 +2013,6,15,21,30,0,0,0,4.2,27.900000000000002,113.57000000000001,1015,24.400000000000002 +2013,6,15,22,30,0,0,0,4.4,27.8,121.27,1015,24.400000000000002 +2013,6,15,23,30,0,0,0,4.5,27.700000000000003,126.14,1015,24.400000000000002 +2013,6,16,0,30,0,0,0,4.6000000000000005,27.6,127.37,1015,24.400000000000002 +2013,6,16,1,30,0,0,0,4.5,27.6,124.73,1015,24.3 +2013,6,16,2,30,0,0,0,4.4,27.5,118.72,1015,24.3 +2013,6,16,3,30,0,0,0,4.3,27.400000000000002,110.21000000000001,1015,24.3 +2013,6,16,4,30,0,0,0,4.1000000000000005,27.400000000000002,99.99000000000001,1015,24.3 +2013,6,16,5,30,14,12,43,4,27.8,88.35000000000001,1016,24.3 +2013,6,16,6,30,168,63,450,3.8000000000000003,28.400000000000002,76.54,1016,24.3 +2013,6,16,7,30,374,89,649,3.6,28.900000000000002,64.02,1017,24.1 +2013,6,16,8,30,578,104,755,3.3000000000000003,29.3,51.17,1017,23.900000000000002 +2013,6,16,9,30,758,110,823,3.1,29.700000000000003,38.13,1017,23.8 +2013,6,16,10,30,892,117,856,3.1,30,25.07,1017,23.700000000000003 +2013,6,16,11,30,972,122,870,3.2,30.200000000000003,12.450000000000001,1017,23.8 +2013,6,16,12,30,991,123,873,3.5,30.400000000000002,6.33,1016,23.8 +2013,6,16,13,30,948,122,863,3.8000000000000003,30.5,16.9,1016,24 +2013,6,16,14,30,846,117,839,4.1000000000000005,30.400000000000002,29.8,1015,24 +2013,6,16,15,30,695,108,800,4.3,30.200000000000003,42.88,1015,24.200000000000003 +2013,6,16,16,30,505,96,730,4.4,29.900000000000002,55.86,1014,24.3 +2013,6,16,17,30,298,76,607,4.4,29.700000000000003,68.61,1014,24.400000000000002 +2013,6,16,18,30,100,47,339,4.4,29,80.95,1015,24.6 +2013,6,16,19,30,0,0,0,4.4,28.6,92.87,1015,24.8 +2013,6,16,20,30,0,0,0,4.6000000000000005,28.400000000000002,103.85000000000001,1015,25 +2013,6,16,21,30,0,0,0,4.9,28.200000000000003,113.52,1016,25.1 +2013,6,16,22,30,0,0,0,5.1000000000000005,28.1,121.22,1016,25.1 +2013,6,16,23,30,0,0,0,5.2,27.900000000000002,126.10000000000001,1016,25.200000000000003 +2013,6,17,0,30,0,0,0,5.1000000000000005,27.700000000000003,127.35000000000001,1015,25.1 +2013,6,17,1,30,0,0,0,5,27.5,124.72,1015,25.1 +2013,6,17,2,30,0,0,0,4.800000000000001,27.400000000000002,118.72,1015,25.1 +2013,6,17,3,30,0,0,0,4.6000000000000005,27.3,110.22,1015,25 +2013,6,17,4,30,0,0,0,4.3,27.3,100.02,1015,25 +2013,6,17,5,30,13,12,34,4.2,27.6,88.38,1015,24.900000000000002 +2013,6,17,6,30,53,53,0,4.1000000000000005,28.1,76.57000000000001,1016,24.900000000000002 +2013,6,17,7,30,375,89,653,3.9000000000000004,28.6,64.05,1016,24.700000000000003 +2013,6,17,8,30,581,106,759,3.6,29,51.21,1016,24.5 +2013,6,17,9,30,691,259,550,3.4000000000000004,29.400000000000002,38.17,1016,24.400000000000002 +2013,6,17,10,30,894,129,844,3.5,29.8,25.11,1016,24.1 +2013,6,17,11,30,974,133,862,3.8000000000000003,30,12.47,1016,24 +2013,6,17,12,30,857,428,432,4.2,30.1,6.29,1015,24 +2013,6,17,13,30,787,410,393,4.6000000000000005,30.1,16.85,1015,24.1 +2013,6,17,14,30,851,123,838,4.800000000000001,30,29.75,1014,24.200000000000003 +2013,6,17,15,30,697,115,794,4.9,29.8,42.82,1013,24.3 +2013,6,17,16,30,508,101,724,4.9,29.5,55.81,1013,24.400000000000002 +2013,6,17,17,30,299,80,599,4.9,29.3,68.55,1013,24.5 +2013,6,17,18,30,84,52,203,4.800000000000001,28.6,80.89,1013,24.700000000000003 +2013,6,17,19,30,0,0,0,4.800000000000001,28.3,92.82000000000001,1014,24.900000000000002 +2013,6,17,20,30,0,0,0,4.800000000000001,28.1,103.79,1014,25 +2013,6,17,21,30,0,0,0,5,28,113.47,1014,25.1 +2013,6,17,22,30,0,0,0,5.300000000000001,27.900000000000002,121.18,1015,25.1 +2013,6,17,23,30,0,0,0,5.4,27.8,126.06,1014,25.1 +2013,6,18,0,30,0,0,0,5.4,27.700000000000003,127.32000000000001,1014,25.1 +2013,6,18,1,30,0,0,0,5.2,27.6,124.72,1014,25 +2013,6,18,2,30,0,0,0,4.9,27.5,118.73,1014,24.900000000000002 +2013,6,18,3,30,0,0,0,4.7,27.400000000000002,110.24000000000001,1014,24.8 +2013,6,18,4,30,0,0,0,4.6000000000000005,27.400000000000002,100.04,1014,24.8 +2013,6,18,5,30,13,12,43,4.5,27.700000000000003,88.4,1015,24.700000000000003 +2013,6,18,6,30,165,64,435,4.5,28.200000000000003,76.60000000000001,1015,24.6 +2013,6,18,7,30,370,92,635,4.4,28.6,64.09,1015,24.400000000000002 +2013,6,18,8,30,574,109,744,4.2,29.1,51.24,1015,24.3 +2013,6,18,9,30,754,118,809,4.2,29.400000000000002,38.21,1015,24.200000000000003 +2013,6,18,10,30,756,365,431,4.2,29.700000000000003,25.150000000000002,1015,24.1 +2013,6,18,11,30,973,127,867,4.2,30,12.51,1015,24 +2013,6,18,12,30,994,128,871,4.3,30.1,6.25,1015,23.900000000000002 +2013,6,18,13,30,952,125,864,4.3,30,16.79,1014,23.8 +2013,6,18,14,30,850,120,840,4.2,29.900000000000002,29.69,1014,23.8 +2013,6,18,15,30,696,112,796,4,29.700000000000003,42.77,1014,23.8 +2013,6,18,16,30,506,100,720,3.8000000000000003,29.400000000000002,55.75,1014,23.8 +2013,6,18,17,30,297,82,586,3.7,29.200000000000003,68.5,1014,23.900000000000002 +2013,6,18,18,30,101,49,326,3.8000000000000003,28.5,80.84,1014,24.3 +2013,6,18,19,30,0,0,0,4.3,28.1,92.77,1014,24.6 +2013,6,18,20,30,0,0,0,5.1000000000000005,28,103.74000000000001,1014,24.700000000000003 +2013,6,18,21,30,0,0,0,5.5,27.900000000000002,113.42,1014,24.700000000000003 +2013,6,18,22,30,0,0,0,5.300000000000001,27.8,121.14,1014,24.700000000000003 +2013,6,18,23,30,0,0,0,4.9,27.6,126.03,1014,24.700000000000003 +2013,6,19,0,30,0,0,0,4.800000000000001,27.5,127.31,1014,24.6 +2013,6,19,1,30,0,0,0,4.800000000000001,27.5,124.72,1014,24.700000000000003 +2013,6,19,2,30,0,0,0,4.9,27.5,118.74000000000001,1013,24.8 +2013,6,19,3,30,0,0,0,5,27.5,110.26,1013,24.8 +2013,6,19,4,30,0,0,0,4.800000000000001,27.6,100.07000000000001,1014,24.900000000000002 +2013,6,19,5,30,12,11,21,4.5,27.900000000000002,88.44,1014,24.900000000000002 +2013,6,19,6,30,121,82,170,4.2,28.3,76.64,1015,25 +2013,6,19,7,30,271,172,227,3.9000000000000004,28.700000000000003,64.13,1016,24.900000000000002 +2013,6,19,8,30,554,142,658,3.5,29.1,51.29,1016,24.700000000000003 +2013,6,19,9,30,412,353,75,3.3000000000000003,29.400000000000002,38.25,1016,24.5 +2013,6,19,10,30,691,424,295,3.1,29.700000000000003,25.19,1016,24.3 +2013,6,19,11,30,955,156,818,3,29.900000000000002,12.540000000000001,1016,24.1 +2013,6,19,12,30,975,157,823,2.9000000000000004,30.1,6.22,1015,23.900000000000002 +2013,6,19,13,30,935,153,817,3,30.200000000000003,16.740000000000002,1015,23.900000000000002 +2013,6,19,14,30,835,146,792,3.2,30.1,29.64,1014,23.900000000000002 +2013,6,19,15,30,677,151,717,3.5,29.900000000000002,42.72,1014,24 +2013,6,19,16,30,489,133,633,3.7,29.6,55.7,1014,24.200000000000003 +2013,6,19,17,30,285,105,489,3.9000000000000004,29.400000000000002,68.45,1014,24.400000000000002 +2013,6,19,18,30,93,60,210,4.1000000000000005,28.700000000000003,80.79,1015,24.700000000000003 +2013,6,19,19,30,0,0,0,4.3,28.3,92.72,1015,24.900000000000002 +2013,6,19,20,30,0,0,0,4.5,28.200000000000003,103.7,1016,25.1 +2013,6,19,21,30,0,0,0,4.7,28.200000000000003,113.38,1016,25.1 +2013,6,19,22,30,0,0,0,4.9,28.1,121.10000000000001,1016,25.1 +2013,6,19,23,30,0,0,0,5,28.1,126.01,1016,25.1 +2013,6,20,0,30,0,0,0,5.1000000000000005,28,127.3,1016,25 +2013,6,20,1,30,0,0,0,5,28,124.72,1016,24.900000000000002 +2013,6,20,2,30,0,0,0,4.9,27.900000000000002,118.76,1016,24.8 +2013,6,20,3,30,0,0,0,4.7,27.900000000000002,110.29,1016,24.8 +2013,6,20,4,30,0,0,0,4.4,27.8,100.10000000000001,1016,24.700000000000003 +2013,6,20,5,30,9,9,5,4.2,28.1,88.47,1017,24.8 +2013,6,20,6,30,150,84,287,4,28.700000000000003,76.68,1017,24.900000000000002 +2013,6,20,7,30,288,163,287,3.9000000000000004,29.1,64.17,1018,24.8 +2013,6,20,8,30,471,244,363,3.6,29.400000000000002,51.33,1018,24.700000000000003 +2013,6,20,9,30,724,174,700,3.4000000000000004,29.700000000000003,38.300000000000004,1019,24.700000000000003 +2013,6,20,10,30,858,187,742,3.2,29.900000000000002,25.240000000000002,1019,24.6 +2013,6,20,11,30,940,193,765,3.2,30,12.58,1019,24.5 +2013,6,20,12,30,959,200,763,3.3000000000000003,30.1,6.2,1018,24.5 +2013,6,20,13,30,920,194,758,3.5,30,16.69,1018,24.5 +2013,6,20,14,30,822,183,735,3.6,29.900000000000002,29.59,1017,24.5 +2013,6,20,15,30,666,176,666,3.7,29.8,42.67,1017,24.5 +2013,6,20,16,30,482,151,587,3.8000000000000003,29.6,55.65,1017,24.5 +2013,6,20,17,30,280,116,447,3.8000000000000003,29.5,68.4,1017,24.6 +2013,6,20,18,30,91,62,183,3.9000000000000004,28.8,80.75,1017,24.700000000000003 +2013,6,20,19,30,0,0,0,4,28.400000000000002,92.67,1017,24.900000000000002 +2013,6,20,20,30,0,0,0,4.1000000000000005,28.3,103.66,1018,25 +2013,6,20,21,30,0,0,0,4.1000000000000005,28.200000000000003,113.34,1018,25 +2013,6,20,22,30,0,0,0,4.1000000000000005,28.1,121.08,1018,24.8 +2013,6,20,23,30,0,0,0,4,28,126,1018,24.6 +2013,6,21,0,30,0,0,0,4,27.900000000000002,127.3,1017,24.5 +2013,6,21,1,30,0,0,0,3.8000000000000003,27.8,124.74000000000001,1017,24.3 +2013,6,21,2,30,0,0,0,3.6,27.700000000000003,118.79,1017,24.200000000000003 +2013,6,21,3,30,0,0,0,3.4000000000000004,27.6,110.32000000000001,1017,24.200000000000003 +2013,6,21,4,30,0,0,0,3.2,27.6,100.14,1018,24.200000000000003 +2013,6,21,5,30,8,8,4,3,27.900000000000002,88.51,1018,24.200000000000003 +2013,6,21,6,30,147,86,266,2.9000000000000004,28.5,76.72,1019,24.3 +2013,6,21,7,30,345,133,487,2.7,28.900000000000002,64.22,1019,24.200000000000003 +2013,6,21,8,30,546,161,618,2.5,29.3,51.38,1020,24.1 +2013,6,21,9,30,618,329,368,2.3000000000000003,29.700000000000003,38.35,1020,23.900000000000002 +2013,6,21,10,30,718,410,341,2.2,30,25.28,1020,23.700000000000003 +2013,6,21,11,30,822,412,421,2.2,30.200000000000003,12.63,1019,23.6 +2013,6,21,12,30,859,426,435,2.4000000000000004,30.3,6.18,1019,23.5 +2013,6,21,13,30,806,400,424,2.6,30.3,16.65,1018,23.400000000000002 +2013,6,21,14,30,718,346,428,2.8000000000000003,30.200000000000003,29.55,1018,23.400000000000002 +2013,6,21,15,30,673,166,690,2.9000000000000004,30,42.62,1017,23.3 +2013,6,21,16,30,488,142,612,3,29.8,55.61,1017,23.3 +2013,6,21,17,30,284,110,472,3.1,29.6,68.36,1017,23.3 +2013,6,21,18,30,95,59,223,3.1,28.8,80.71000000000001,1017,23.5 +2013,6,21,19,30,0,0,0,3.1,28.400000000000002,92.63,1017,23.8 +2013,6,21,20,30,0,0,0,3.3000000000000003,28.200000000000003,103.62,1017,24 +2013,6,21,21,30,0,0,0,3.4000000000000004,28.1,113.32000000000001,1017,24 +2013,6,21,22,30,0,0,0,3.5,27.900000000000002,121.06,1017,24 +2013,6,21,23,30,0,0,0,3.5,27.8,125.99000000000001,1017,24 +2013,6,22,0,30,0,0,0,3.3000000000000003,27.700000000000003,127.31,1017,23.900000000000002 +2013,6,22,1,30,0,0,0,3.2,27.5,124.76,1016,23.900000000000002 +2013,6,22,2,30,0,0,0,3.2,27.5,118.82000000000001,1016,23.8 +2013,6,22,3,30,0,0,0,3.2,27.400000000000002,110.36,1017,23.8 +2013,6,22,4,30,0,0,0,3.3000000000000003,27.400000000000002,100.18,1017,23.900000000000002 +2013,6,22,5,30,6,6,0,3.3000000000000003,27.8,88.55,1017,24 +2013,6,22,6,30,112,83,127,3.2,28.5,76.77,1018,24.1 +2013,6,22,7,30,276,168,249,3,29,64.27,1018,23.8 +2013,6,22,8,30,454,253,323,2.6,29.400000000000002,51.43,1019,23.700000000000003 +2013,6,22,9,30,604,337,341,2.3000000000000003,29.8,38.4,1019,23.5 +2013,6,22,10,30,715,417,329,2.1,30.1,25.330000000000002,1019,23.3 +2013,6,22,11,30,874,407,478,2.2,30.3,12.67,1018,23.1 +2013,6,22,12,30,968,176,797,2.4000000000000004,30.400000000000002,6.17,1017,23.1 +2013,6,22,13,30,928,170,791,2.7,30.400000000000002,16.61,1017,23.1 +2013,6,22,14,30,830,161,769,3,30.3,29.5,1016,23.200000000000003 +2013,6,22,15,30,676,156,706,3.2,30.200000000000003,42.58,1016,23.3 +2013,6,22,16,30,489,137,623,3.3000000000000003,29.900000000000002,55.56,1015,23.5 +2013,6,22,17,30,285,108,480,3.4000000000000004,29.700000000000003,68.32000000000001,1015,23.6 +2013,6,22,18,30,96,57,241,3.5,29,80.67,1015,23.900000000000002 +2013,6,22,19,30,0,0,0,3.5,28.6,92.60000000000001,1015,24.3 +2013,6,22,20,30,0,0,0,3.6,28.400000000000002,103.59,1016,24.5 +2013,6,22,21,30,0,0,0,3.6,28.3,113.29,1016,24.6 +2013,6,22,22,30,0,0,0,3.6,28.200000000000003,121.04,1016,24.5 +2013,6,22,23,30,0,0,0,3.6,28.1,125.99000000000001,1016,24.5 +2013,6,23,0,30,0,0,0,3.7,28,127.32000000000001,1016,24.400000000000002 +2013,6,23,1,30,0,0,0,3.7,27.900000000000002,124.78,1015,24.400000000000002 +2013,6,23,2,30,0,0,0,3.7,27.8,118.85000000000001,1015,24.3 +2013,6,23,3,30,0,0,0,3.6,27.700000000000003,110.4,1015,24.200000000000003 +2013,6,23,4,30,0,0,0,3.5,27.700000000000003,100.23,1016,24.200000000000003 +2013,6,23,5,30,7,7,0,3.5,28.1,88.59,1016,24.200000000000003 +2013,6,23,6,30,121,80,177,3.6,28.700000000000003,76.82000000000001,1016,24.3 +2013,6,23,7,30,235,177,134,3.6,29.1,64.32000000000001,1017,24.1 +2013,6,23,8,30,469,242,364,3.6,29.5,51.480000000000004,1017,24 +2013,6,23,9,30,739,133,774,3.6,29.8,38.45,1017,24 +2013,6,23,10,30,782,354,474,3.7,30.1,25.38,1017,23.900000000000002 +2013,6,23,11,30,957,149,829,3.7,30.3,12.72,1017,23.900000000000002 +2013,6,23,12,30,880,428,455,3.9000000000000004,30.400000000000002,6.16,1016,23.900000000000002 +2013,6,23,13,30,938,148,824,4.1000000000000005,30.400000000000002,16.57,1016,24 +2013,6,23,14,30,768,322,512,4.3,30.3,29.46,1015,24 +2013,6,23,15,30,688,131,757,4.4,30.1,42.54,1015,24.1 +2013,6,23,16,30,412,219,341,4.6000000000000005,29.900000000000002,55.52,1015,24.200000000000003 +2013,6,23,17,30,223,140,224,4.6000000000000005,29.700000000000003,68.28,1015,24.3 +2013,6,23,18,30,92,51,248,4.6000000000000005,29.1,80.63,1015,24.5 +2013,6,23,19,30,0,0,0,4.5,28.700000000000003,92.57000000000001,1015,24.700000000000003 +2013,6,23,20,30,0,0,0,4.5,28.6,103.56,1016,24.8 +2013,6,23,21,30,0,0,0,4.7,28.5,113.27,1016,24.900000000000002 +2013,6,23,22,30,0,0,0,5,28.5,121.03,1017,24.900000000000002 +2013,6,23,23,30,0,0,0,5.300000000000001,28.400000000000002,125.99000000000001,1017,24.900000000000002 +2013,6,24,0,30,0,0,0,5.5,28.3,127.34,1017,24.900000000000002 +2013,6,24,1,30,0,0,0,5.6000000000000005,28.3,124.81,1016,24.900000000000002 +2013,6,24,2,30,0,0,0,5.6000000000000005,28.200000000000003,118.89,1016,24.900000000000002 +2013,6,24,3,30,0,0,0,5.5,28.1,110.45,1016,24.900000000000002 +2013,6,24,4,30,0,0,0,5.4,28.1,100.28,1017,24.900000000000002 +2013,6,24,5,30,8,8,4,5.300000000000001,28.400000000000002,88.64,1017,25 +2013,6,24,6,30,150,79,316,5.300000000000001,28.900000000000002,76.87,1018,25 +2013,6,24,7,30,348,120,527,5.1000000000000005,29.3,64.37,1018,24.8 +2013,6,24,8,30,550,144,652,5,29.700000000000003,51.53,1018,24.700000000000003 +2013,6,24,9,30,730,153,738,5,30,38.5,1018,24.8 +2013,6,24,10,30,867,160,783,5.2,30.200000000000003,25.43,1018,24.8 +2013,6,24,11,30,950,166,804,5.300000000000001,30.3,12.77,1018,24.900000000000002 +2013,6,24,12,30,974,160,819,5.5,30.3,6.17,1017,24.900000000000002 +2013,6,24,13,30,933,159,807,5.5,30.3,16.53,1017,25 +2013,6,24,14,30,647,408,274,5.6000000000000005,30.200000000000003,29.42,1016,25 +2013,6,24,15,30,686,136,747,5.5,30,42.5,1016,25 +2013,6,24,16,30,501,117,677,5.4,29.700000000000003,55.49,1016,25 +2013,6,24,17,30,295,93,546,5.300000000000001,29.6,68.24,1016,25.1 +2013,6,24,18,30,102,54,293,5.1000000000000005,28.900000000000002,80.60000000000001,1016,25.200000000000003 +2013,6,24,19,30,0,0,0,5.1000000000000005,28.6,92.54,1016,25.400000000000002 +2013,6,24,20,30,0,0,0,5.4,28.5,103.54,1017,25.5 +2013,6,24,21,30,0,0,0,5.800000000000001,28.400000000000002,113.26,1017,25.5 +2013,6,24,22,30,0,0,0,6.300000000000001,28.400000000000002,121.03,1017,25.5 +2013,6,24,23,30,0,0,0,6.5,28.3,126,1017,25.5 +2013,6,25,0,30,0,0,0,6.300000000000001,28.3,127.37,1017,25.5 +2013,6,25,1,30,0,0,0,6,28.200000000000003,124.85000000000001,1017,25.400000000000002 +2013,6,25,2,30,0,0,0,5.7,28.200000000000003,118.94,1017,25.3 +2013,6,25,3,30,0,0,0,5.4,28.1,110.5,1017,25.3 +2013,6,25,4,30,0,0,0,5.300000000000001,28.1,100.33,1017,25.3 +2013,6,25,5,30,6,6,0,5.300000000000001,28.3,88.69,1017,25.3 +2013,6,25,6,30,88,80,38,5.4,28.6,76.93,1017,25.400000000000002 +2013,6,25,7,30,264,171,216,5.300000000000001,29,64.43,1018,25.400000000000002 +2013,6,25,8,30,439,259,289,5.1000000000000005,29.3,51.58,1018,25.3 +2013,6,25,9,30,659,275,491,4.800000000000001,29.700000000000003,38.550000000000004,1018,25.200000000000003 +2013,6,25,10,30,868,163,780,4.6000000000000005,30,25.490000000000002,1018,25.200000000000003 +2013,6,25,11,30,951,167,803,4.4,30.200000000000003,12.83,1017,25.1 +2013,6,25,12,30,978,155,829,4.4,30.400000000000002,6.18,1017,25.200000000000003 +2013,6,25,13,30,939,148,825,4.4,30.400000000000002,16.5,1016,25.200000000000003 +2013,6,25,14,30,842,138,808,4.5,30.3,29.38,1016,25.200000000000003 +2013,6,25,15,30,688,139,744,4.6000000000000005,30.1,42.46,1015,25.200000000000003 +2013,6,25,16,30,413,219,341,4.7,29.8,55.45,1015,25.200000000000003 +2013,6,25,17,30,249,128,326,4.800000000000001,29.6,68.21000000000001,1015,25.3 +2013,6,25,18,30,76,56,120,5.1000000000000005,28.900000000000002,80.57000000000001,1015,25.5 +2013,6,25,19,30,0,0,0,5.300000000000001,28.6,92.51,1015,25.700000000000003 +2013,6,25,20,30,0,0,0,5.6000000000000005,28.5,103.53,1015,25.8 +2013,6,25,21,30,0,0,0,5.9,28.400000000000002,113.25,1015,25.900000000000002 +2013,6,25,22,30,0,0,0,6.2,28.3,121.04,1015,25.900000000000002 +2013,6,25,23,30,0,0,0,6.4,28.3,126.02,1015,25.8 +2013,6,26,0,30,0,0,0,6.5,28.200000000000003,127.4,1015,25.700000000000003 +2013,6,26,1,30,0,0,0,6.6000000000000005,28.200000000000003,124.9,1014,25.6 +2013,6,26,2,30,0,0,0,6.5,28.200000000000003,118.99000000000001,1014,25.5 +2013,6,26,3,30,0,0,0,6.300000000000001,28.200000000000003,110.55,1014,25.400000000000002 +2013,6,26,4,30,0,0,0,5.9,28.200000000000003,100.39,1015,25.400000000000002 +2013,6,26,5,30,9,9,9,5.6000000000000005,28.5,88.74,1015,25.400000000000002 +2013,6,26,6,30,157,67,401,5.4,28.900000000000002,76.98,1016,25.400000000000002 +2013,6,26,7,30,360,100,604,5,29.400000000000002,64.48,1016,25.3 +2013,6,26,8,30,562,121,711,4.5,29.8,51.64,1016,25.200000000000003 +2013,6,26,9,30,743,132,782,4,30.200000000000003,38.61,1017,25 +2013,6,26,10,30,881,140,821,3.5,30.5,25.55,1016,24.700000000000003 +2013,6,26,11,30,572,476,98,3.3000000000000003,30.700000000000003,12.89,1016,24.6 +2013,6,26,12,30,988,144,850,3.3000000000000003,30.700000000000003,6.2,1016,24.5 +2013,6,26,13,30,948,138,845,3.6,30.700000000000003,16.47,1015,24.5 +2013,6,26,14,30,851,129,828,3.9000000000000004,30.5,29.35,1015,24.6 +2013,6,26,15,30,703,115,796,4.2,30.200000000000003,42.43,1014,24.700000000000003 +2013,6,26,16,30,514,100,729,4.3,29.8,55.42,1014,24.8 +2013,6,26,17,30,255,124,355,4.4,29.6,68.18,1014,24.900000000000002 +2013,6,26,18,30,96,50,280,4.4,28.8,80.55,1014,25 +2013,6,26,19,30,0,0,0,4.4,28.5,92.5,1014,25.200000000000003 +2013,6,26,20,30,0,0,0,4.4,28.3,103.51,1015,25.3 +2013,6,26,21,30,0,0,0,4.5,28.200000000000003,113.25,1015,25.3 +2013,6,26,22,30,0,0,0,4.5,28.1,121.05,1015,25.200000000000003 +2013,6,26,23,30,0,0,0,4.6000000000000005,28.1,126.05,1015,25.1 +2013,6,27,0,30,0,0,0,4.6000000000000005,28,127.44,1015,25 +2013,6,27,1,30,0,0,0,4.5,28,124.95,1015,24.900000000000002 +2013,6,27,2,30,0,0,0,4.3,27.900000000000002,119.05,1015,24.8 +2013,6,27,3,30,0,0,0,4,27.900000000000002,110.61,1015,24.8 +2013,6,27,4,30,0,0,0,3.6,27.900000000000002,100.45,1016,24.8 +2013,6,27,5,30,11,10,30,3.3000000000000003,28.200000000000003,88.8,1016,24.8 +2013,6,27,6,30,159,62,433,3.1,28.8,77.04,1017,24.8 +2013,6,27,7,30,364,90,637,2.9000000000000004,29.200000000000003,64.54,1017,24.700000000000003 +2013,6,27,8,30,570,105,750,2.8000000000000003,29.6,51.7,1017,24.5 +2013,6,27,9,30,752,112,820,2.7,30,38.67,1017,24.400000000000002 +2013,6,27,10,30,892,116,860,2.6,30.400000000000002,25.6,1017,24.200000000000003 +2013,6,27,11,30,977,117,882,2.6,30.700000000000003,12.950000000000001,1016,23.900000000000002 +2013,6,27,12,30,993,135,863,2.7,30.900000000000002,6.22,1016,23.700000000000003 +2013,6,27,13,30,952,133,854,2.9000000000000004,30.900000000000002,16.44,1015,23.6 +2013,6,27,14,30,852,128,829,3.2,30.8,29.32,1015,23.700000000000003 +2013,6,27,15,30,701,117,792,3.4000000000000004,30.6,42.4,1014,23.700000000000003 +2013,6,27,16,30,512,103,719,3.6,30.200000000000003,55.39,1014,23.900000000000002 +2013,6,27,17,30,304,83,591,3.7,29.900000000000002,68.15,1014,24 +2013,6,27,18,30,106,50,342,4,29,80.52,1014,24.3 +2013,6,27,19,30,0,0,0,4.2,28.6,92.48,1015,24.6 +2013,6,27,20,30,0,0,0,4.4,28.400000000000002,103.51,1015,24.8 +2013,6,27,21,30,0,0,0,4.5,28.3,113.25,1015,24.8 +2013,6,27,22,30,0,0,0,4.5,28.200000000000003,121.06,1015,24.700000000000003 +2013,6,27,23,30,0,0,0,4.5,28.200000000000003,126.08,1015,24.6 +2013,6,28,0,30,0,0,0,4.5,28.1,127.49000000000001,1015,24.5 +2013,6,28,1,30,0,0,0,4.5,28,125.01,1015,24.400000000000002 +2013,6,28,2,30,0,0,0,4.5,27.900000000000002,119.11,1015,24.3 +2013,6,28,3,30,0,0,0,4.5,27.8,110.68,1014,24.200000000000003 +2013,6,28,4,30,0,0,0,4.5,27.700000000000003,100.52,1014,24.200000000000003 +2013,6,28,5,30,9,9,24,4.6000000000000005,27.900000000000002,88.86,1014,24.3 +2013,6,28,6,30,153,68,384,4.9,28.3,77.11,1015,24.400000000000002 +2013,6,28,7,30,275,164,259,4.9,28.700000000000003,64.6,1015,24.3 +2013,6,28,8,30,476,233,393,4.9,29.200000000000003,51.76,1015,24.1 +2013,6,28,9,30,678,260,535,4.7,29.700000000000003,38.730000000000004,1015,23.900000000000002 +2013,6,28,10,30,776,354,468,4.3,30.200000000000003,25.66,1014,23.5 +2013,6,28,11,30,843,412,442,3.9000000000000004,30.8,13.01,1014,23.1 +2013,6,28,12,30,868,429,441,3.7,31.200000000000003,6.25,1013,22.8 +2013,6,28,13,30,780,420,376,3.8000000000000003,31.400000000000002,16.42,1012,22.900000000000002 +2013,6,28,14,30,730,341,445,4.2,31.400000000000002,29.29,1012,23.200000000000003 +2013,6,28,15,30,688,137,745,4.7,31.200000000000003,42.37,1011,23.3 +2013,6,28,16,30,500,122,666,5.1000000000000005,30.8,55.36,1010,23.5 +2013,6,28,17,30,251,128,330,5.2,30.5,68.13,1010,23.900000000000002 +2013,6,28,18,30,78,57,128,5.5,29.200000000000003,80.51,1010,24.5 +2013,6,28,19,30,0,0,0,5.6000000000000005,28.700000000000003,92.47,1010,25.1 +2013,6,28,20,30,0,0,0,5.7,28.400000000000002,103.5,1010,25.400000000000002 +2013,6,28,21,30,0,0,0,5.800000000000001,28.3,113.26,1011,25.5 +2013,6,28,22,30,0,0,0,6,28.3,121.09,1011,25.5 +2013,6,28,23,30,0,0,0,6.1000000000000005,28.200000000000003,126.12,1010,25.5 +2013,6,29,0,30,0,0,0,6.1000000000000005,28.1,127.54,1010,25.5 +2013,6,29,1,30,0,0,0,5.9,28.1,125.07000000000001,1010,25.400000000000002 +2013,6,29,2,30,0,0,0,5.9,28,119.18,1010,25.400000000000002 +2013,6,29,3,30,0,0,0,5.9,27.900000000000002,110.75,1010,25.400000000000002 +2013,6,29,4,30,0,0,0,5.9,27.8,100.59,1010,25.5 +2013,6,29,5,30,8,7,12,6,27.8,88.92,1011,25.5 +2013,6,29,6,30,57,57,0,6.1000000000000005,28.200000000000003,77.17,1011,25.6 +2013,6,29,7,30,293,154,327,6.2,28.700000000000003,64.67,1011,25.400000000000002 +2013,6,29,8,30,552,132,679,6.1000000000000005,29.400000000000002,51.82,1011,25.1 +2013,6,29,9,30,734,136,768,5.9,30.200000000000003,38.79,1011,24.8 +2013,6,29,10,30,872,143,810,5.4,30.900000000000002,25.73,1010,24.5 +2013,6,29,11,30,956,145,833,4.9,31.6,13.08,1010,24.5 +2013,6,29,12,30,983,133,856,4.5,32,6.29,1009,24.5 +2013,6,29,13,30,820,402,437,4.5,32.2,16.4,1008,24.400000000000002 +2013,6,29,14,30,724,347,433,4.800000000000001,32.1,29.26,1007,24.5 +2013,6,29,15,30,586,301,386,5.1000000000000005,31.900000000000002,42.34,1006,24.6 +2013,6,29,16,30,414,221,341,5.5,31.5,55.34,1006,24.700000000000003 +2013,6,29,17,30,250,129,324,5.800000000000001,31.3,68.11,1006,24.700000000000003 +2013,6,29,18,30,89,54,215,6,29.900000000000002,80.49,1007,25.5 +2013,6,29,19,30,0,0,0,5.800000000000001,29.200000000000003,92.46000000000001,1007,26 +2013,6,29,20,30,0,0,0,5.4,28.8,103.51,1008,26.200000000000003 +2013,6,29,21,30,0,0,0,4.9,28.6,113.28,1008,26.1 +2013,6,29,22,30,0,0,0,4.5,28.5,121.12,1008,25.900000000000002 +2013,6,29,23,30,0,0,0,4.3,28.200000000000003,126.16,1008,25.8 +2013,6,30,0,30,0,0,0,4.3,28,127.60000000000001,1008,25.6 +2013,6,30,1,30,0,0,0,4.4,27.900000000000002,125.14,1009,25.400000000000002 +2013,6,30,2,30,0,0,0,4.5,27.8,119.26,1009,25.1 +2013,6,30,3,30,0,0,0,4.3,27.700000000000003,110.82000000000001,1009,24.700000000000003 +2013,6,30,4,30,0,0,0,3.8000000000000003,27.5,100.66,1009,24.200000000000003 +2013,6,30,5,30,9,8,47,3.4000000000000004,27.6,88.98,1009,23.8 +2013,6,30,6,30,161,52,493,3.2,28.3,77.24,1010,23.3 +2013,6,30,7,30,370,73,695,3.1,29.5,64.73,1010,22.6 +2013,6,30,8,30,469,237,376,3,30.700000000000003,51.88,1010,21.6 +2013,6,30,9,30,649,281,472,2.7,31.3,38.85,1010,21.3 +2013,6,30,10,30,668,429,264,2.3000000000000003,31.8,25.79,1010,21 +2013,6,30,11,30,752,468,292,1.8,32.2,13.15,1010,20.5 +2013,6,30,12,30,903,421,485,1.5,32.5,6.34,1009,20 +2013,6,30,13,30,853,398,474,1.9000000000000001,32.6,16.39,1009,20.3 +2013,6,30,14,30,735,340,453,2.5,32.5,29.240000000000002,1008,20.6 +2013,6,30,15,30,596,283,424,2.7,32.300000000000004,42.32,1008,21.200000000000003 +2013,6,30,16,30,484,144,597,2.9000000000000004,32,55.32,1008,21.900000000000002 +2013,6,30,17,30,244,132,300,3.1,31.900000000000002,68.1,1008,22.5 +2013,6,30,18,30,83,56,167,3.2,30.8,80.48,1008,23.3 +2013,6,30,19,30,0,0,0,3,30.1,92.46000000000001,1009,24.1 +2013,6,30,20,30,0,0,0,2.6,29.700000000000003,103.51,1009,24.1 +2013,6,30,21,30,0,0,0,2.1,29.3,113.3,1009,23.3 +2013,6,30,22,30,0,0,0,1.9000000000000001,28.8,121.15,1010,22.6 +2013,6,30,23,30,0,0,0,2.3000000000000003,28.200000000000003,126.22,1010,22.400000000000002 +2013,7,1,0,30,0,0,0,3.1,27.700000000000003,127.67,1010,22.3 +2013,7,1,1,30,0,0,0,3.7,27.400000000000002,125.22,1010,22.200000000000003 +2013,7,1,2,30,0,0,0,4.2,27.200000000000003,119.34,1010,21.900000000000002 +2013,7,1,3,30,0,0,0,4.4,27,110.9,1011,21.400000000000002 +2013,7,1,4,30,0,0,0,4.5,26.700000000000003,100.74000000000001,1011,21.1 +2013,7,1,5,30,0,0,0,4.5,26.8,89.04,1011,20.900000000000002 +2013,7,1,6,30,112,78,155,4.4,27.400000000000002,77.31,1012,20.6 +2013,7,1,7,30,372,80,684,4.2,28.200000000000003,64.8,1012,20.1 +2013,7,1,8,30,583,95,791,4,28.900000000000002,51.95,1013,19.400000000000002 +2013,7,1,9,30,765,111,840,4,29.400000000000002,38.910000000000004,1013,18.900000000000002 +2013,7,1,10,30,906,119,875,3.8000000000000003,29.8,25.85,1013,18.400000000000002 +2013,7,1,11,30,992,125,891,3.5,30.200000000000003,13.22,1012,17.8 +2013,7,1,12,30,856,428,431,3,30.400000000000002,6.4,1012,17.2 +2013,7,1,13,30,832,400,451,2.5,30.6,16.38,1012,16.8 +2013,7,1,14,30,784,314,538,2.2,30.6,29.22,1012,16.5 +2013,7,1,15,30,582,301,380,2.1,30.5,42.300000000000004,1011,16.7 +2013,7,1,16,30,419,217,354,2.2,30.3,55.300000000000004,1011,17 +2013,7,1,17,30,306,88,584,2.3000000000000003,30.1,68.08,1012,17.400000000000002 +2013,7,1,18,30,106,51,329,2.5,29.3,80.48,1012,18 +2013,7,1,19,30,0,0,0,2.6,28.700000000000003,92.46000000000001,1013,18.900000000000002 +2013,7,1,20,30,0,0,0,2.6,28.5,103.53,1014,19.3 +2013,7,1,21,30,0,0,0,2.3000000000000003,28.400000000000002,113.32000000000001,1014,19.400000000000002 +2013,7,1,22,30,0,0,0,1.9000000000000001,28.3,121.19,1014,19.200000000000003 +2013,7,1,23,30,0,0,0,1.5,28.1,126.28,1014,18.900000000000002 +2013,7,2,0,30,0,0,0,1.2000000000000002,27.8,127.74000000000001,1014,18.7 +2013,7,2,1,30,0,0,0,1.3,27.400000000000002,125.3,1014,18.7 +2013,7,2,2,30,0,0,0,1.6,27,119.42,1014,18.900000000000002 +2013,7,2,3,30,0,0,0,2.1,26.700000000000003,110.99000000000001,1014,19.3 +2013,7,2,4,30,0,0,0,2.5,26.5,100.82000000000001,1014,19.8 +2013,7,2,5,30,0,0,0,2.8000000000000003,26.700000000000003,89.11,1015,20.1 +2013,7,2,6,30,151,65,396,2.8000000000000003,27.3,77.38,1015,20.200000000000003 +2013,7,2,7,30,355,99,602,2.7,28.200000000000003,64.87,1016,19.900000000000002 +2013,7,2,8,30,429,258,278,2.6,29,52.01,1016,19.400000000000002 +2013,7,2,9,30,742,134,782,2.4000000000000004,29.5,38.980000000000004,1016,19.1 +2013,7,2,10,30,880,144,819,2.2,29.900000000000002,25.92,1016,18.7 +2013,7,2,11,30,965,151,837,1.8,30.1,13.3,1015,18.3 +2013,7,2,12,30,979,174,810,1.5,30.3,6.46,1015,18.1 +2013,7,2,13,30,941,168,806,1.4000000000000001,30.400000000000002,16.37,1014,18.2 +2013,7,2,14,30,843,158,785,1.7000000000000002,30.200000000000003,29.21,1014,18.5 +2013,7,2,15,30,691,145,738,2.1,29.900000000000002,42.28,1014,18.8 +2013,7,2,16,30,501,130,652,2.5,29.6,55.29,1014,19.1 +2013,7,2,17,30,294,103,512,2.6,29.400000000000002,68.08,1014,19.3 +2013,7,2,18,30,100,56,268,2.7,28.5,80.47,1015,19.6 +2013,7,2,19,30,0,0,0,2.6,28,92.47,1015,19.900000000000002 +2013,7,2,20,30,0,0,0,2.3000000000000003,27.8,103.54,1016,20 +2013,7,2,21,30,0,0,0,2,27.6,113.35000000000001,1016,19.900000000000002 +2013,7,2,22,30,0,0,0,1.5,27.400000000000002,121.24000000000001,1016,19.6 +2013,7,2,23,30,0,0,0,1,27.3,126.34,1016,19.3 +2013,7,3,0,30,0,0,0,0.7000000000000001,27.200000000000003,127.82000000000001,1016,18.900000000000002 +2013,7,3,1,30,0,0,0,0.8,27.1,125.39,1015,18.7 +2013,7,3,2,30,0,0,0,1.4000000000000001,26.900000000000002,119.51,1015,18.8 +2013,7,3,3,30,0,0,0,2.1,26.700000000000003,111.07000000000001,1015,19.400000000000002 +2013,7,3,4,30,0,0,0,2.7,26.5,100.9,1016,20.200000000000003 +2013,7,3,5,30,0,0,0,3.3000000000000003,26.700000000000003,89.18,1016,20.8 +2013,7,3,6,30,146,69,356,3.7,27.3,77.45,1016,21.3 +2013,7,3,7,30,348,110,560,3.9000000000000004,28.1,64.94,1016,21.1 +2013,7,3,8,30,435,254,295,3.9000000000000004,28.8,52.08,1017,20.900000000000002 +2013,7,3,9,30,734,154,746,3.8000000000000003,29.400000000000002,39.04,1016,20.6 +2013,7,3,10,30,768,353,462,3.7,29.900000000000002,25.990000000000002,1016,20.200000000000003 +2013,7,3,11,30,858,409,462,3.6,30.200000000000003,13.38,1016,20 +2013,7,3,12,30,977,187,796,3.6,30.400000000000002,6.53,1015,20 +2013,7,3,13,30,937,185,784,3.7,30.400000000000002,16.37,1015,20 +2013,7,3,14,30,837,179,753,3.7,30.3,29.19,1014,20.1 +2013,7,3,15,30,685,165,703,3.9000000000000004,30,42.27,1014,20.3 +2013,7,3,16,30,464,171,515,4,29.700000000000003,55.28,1013,20.5 +2013,7,3,17,30,238,136,271,4.1000000000000005,29.6,68.07000000000001,1013,20.8 +2013,7,3,18,30,63,56,38,4.1000000000000005,28.900000000000002,80.48,1014,21.1 +2013,7,3,19,30,0,0,0,4,28.5,92.48,1014,21.400000000000002 +2013,7,3,20,30,0,0,0,3.8000000000000003,28.400000000000002,103.57000000000001,1014,21.700000000000003 +2013,7,3,21,30,0,0,0,3.6,28.200000000000003,113.39,1015,21.900000000000002 +2013,7,3,22,30,0,0,0,3.2,28,121.29,1015,21.900000000000002 +2013,7,3,23,30,0,0,0,2.8000000000000003,27.900000000000002,126.41,1014,21.8 +2013,7,4,0,30,0,0,0,2.5,27.8,127.91,1014,21.700000000000003 +2013,7,4,1,30,0,0,0,2.3000000000000003,27.700000000000003,125.48,1014,21.6 +2013,7,4,2,30,0,0,0,2.2,27.5,119.61,1014,21.5 +2013,7,4,3,30,0,0,0,2.4000000000000004,27.3,111.17,1014,21.5 +2013,7,4,4,30,0,0,0,2.7,27,100.99000000000001,1014,21.8 +2013,7,4,5,30,0,0,0,3.1,27.1,89.25,1015,22.1 +2013,7,4,6,30,107,77,140,3.5,27.6,77.53,1015,22.3 +2013,7,4,7,30,350,101,592,3.6,28.200000000000003,65.01,1015,22.200000000000003 +2013,7,4,8,30,470,231,390,3.6,28.8,52.15,1015,22.1 +2013,7,4,9,30,738,139,772,3.7,29.3,39.11,1015,22 +2013,7,4,10,30,879,147,815,3.8000000000000003,29.8,26.060000000000002,1015,21.700000000000003 +2013,7,4,11,30,965,150,838,3.8000000000000003,30.200000000000003,13.46,1015,21.5 +2013,7,4,12,30,978,174,810,3.8000000000000003,30.400000000000002,6.6000000000000005,1014,21.400000000000002 +2013,7,4,13,30,942,169,806,3.9000000000000004,30.400000000000002,16.37,1014,21.400000000000002 +2013,7,4,14,30,842,160,781,4,30.3,29.18,1014,21.400000000000002 +2013,7,4,15,30,695,140,749,4.1000000000000005,30.1,42.26,1013,21.400000000000002 +2013,7,4,16,30,505,126,666,4.2,29.8,55.27,1013,21.5 +2013,7,4,17,30,297,101,527,4.2,29.6,68.07000000000001,1013,21.6 +2013,7,4,18,30,101,55,278,4.3,28.900000000000002,80.48,1014,21.8 +2013,7,4,19,30,0,0,0,4.4,28.6,92.49,1014,22.200000000000003 +2013,7,4,20,30,0,0,0,4.3,28.400000000000002,103.59,1014,22.6 +2013,7,4,21,30,0,0,0,4.1000000000000005,28.3,113.43,1015,22.8 +2013,7,4,22,30,0,0,0,3.8000000000000003,28.1,121.36,1015,23 +2013,7,4,23,30,0,0,0,3.6,27.900000000000002,126.49000000000001,1014,23 +2013,7,5,0,30,0,0,0,3.3000000000000003,27.8,128,1014,23.1 +2013,7,5,1,30,0,0,0,2.9000000000000004,27.700000000000003,125.58,1014,23.1 +2013,7,5,2,30,0,0,0,2.5,27.6,119.71000000000001,1014,23 +2013,7,5,3,30,0,0,0,2,27.5,111.26,1014,22.8 +2013,7,5,4,30,0,0,0,1.6,27.3,101.08,1014,22.700000000000003 +2013,7,5,5,30,0,0,0,1.8,27.400000000000002,89.33,1014,22.700000000000003 +2013,7,5,6,30,145,65,375,2.3000000000000003,27.8,77.61,1015,23 +2013,7,5,7,30,348,101,586,2.9000000000000004,28.400000000000002,65.08,1015,23.200000000000003 +2013,7,5,8,30,552,121,703,3.4000000000000004,28.900000000000002,52.22,1015,23.400000000000002 +2013,7,5,9,30,730,142,759,3.8000000000000003,29.400000000000002,39.18,1015,23.400000000000002 +2013,7,5,10,30,870,149,803,4.2,29.8,26.13,1015,23.3 +2013,7,5,11,30,957,152,828,4.7,30,13.540000000000001,1015,23.3 +2013,7,5,12,30,985,145,845,5.1000000000000005,30.1,6.69,1014,23.400000000000002 +2013,7,5,13,30,948,141,841,5.4,30.1,16.38,1014,23.5 +2013,7,5,14,30,850,133,822,5.5,30.1,29.18,1013,23.5 +2013,7,5,15,30,701,124,779,5.5,29.900000000000002,42.25,1012,23.5 +2013,7,5,16,30,513,108,710,5.4,29.6,55.27,1012,23.400000000000002 +2013,7,5,17,30,304,88,580,5.4,29.400000000000002,68.07000000000001,1012,23.6 +2013,7,5,18,30,104,53,308,5.2,28.700000000000003,80.49,1012,23.8 +2013,7,5,19,30,0,0,0,5.1000000000000005,28.200000000000003,92.51,1013,24.200000000000003 +2013,7,5,20,30,0,0,0,5.1000000000000005,28,103.63,1013,24.6 +2013,7,5,21,30,0,0,0,5,27.8,113.48,1013,24.900000000000002 +2013,7,5,22,30,0,0,0,4.7,27.6,121.42,1013,25 +2013,7,5,23,30,0,0,0,4.3,27.3,126.58,1013,25 +2013,7,6,0,30,0,0,0,3.9000000000000004,27.1,128.1,1013,24.900000000000002 +2013,7,6,1,30,0,0,0,3.5,26.900000000000002,125.69,1013,24.8 +2013,7,6,2,30,0,0,0,3,26.700000000000003,119.81,1013,24.6 +2013,7,6,3,30,0,0,0,2.6,26.6,111.36,1013,24.400000000000002 +2013,7,6,4,30,0,0,0,2.5,26.6,101.17,1013,24.3 +2013,7,6,5,30,0,0,0,2.7,26.900000000000002,89.4,1013,24.3 +2013,7,6,6,30,145,62,387,3.1,27.400000000000002,77.69,1013,24.3 +2013,7,6,7,30,348,91,612,3.5,28,65.16,1014,24.400000000000002 +2013,7,6,8,30,553,107,730,3.8000000000000003,28.6,52.29,1014,24.3 +2013,7,6,9,30,733,120,791,4.1000000000000005,29,39.25,1014,24.200000000000003 +2013,7,6,10,30,873,126,832,4.4,29.400000000000002,26.2,1014,24.200000000000003 +2013,7,6,11,30,959,127,856,4.800000000000001,29.6,13.63,1014,24.3 +2013,7,6,12,30,986,123,869,5,29.8,6.78,1013,24.400000000000002 +2013,7,6,13,30,948,117,866,5.2,29.8,16.39,1013,24.5 +2013,7,6,14,30,851,110,849,5.300000000000001,29.700000000000003,29.18,1012,24.6 +2013,7,6,15,30,702,102,810,5.4,29.5,42.25,1012,24.6 +2013,7,6,16,30,513,90,742,5.4,29.3,55.27,1012,24.6 +2013,7,6,17,30,305,74,619,5.300000000000001,29.1,68.08,1012,24.6 +2013,7,6,18,30,106,47,359,5.2,28.6,80.51,1012,24.8 +2013,7,6,19,30,0,0,0,5.1000000000000005,28.3,92.54,1012,25 +2013,7,6,20,30,0,0,0,4.9,28.200000000000003,103.66,1013,25.200000000000003 +2013,7,6,21,30,0,0,0,4.5,28.1,113.53,1013,25.3 +2013,7,6,22,30,0,0,0,3.8000000000000003,28,121.5,1013,25.3 +2013,7,6,23,30,0,0,0,3.2,27.900000000000002,126.67,1013,25.3 +2013,7,7,0,30,0,0,0,3.3000000000000003,27.8,128.21,1013,25.3 +2013,7,7,1,30,0,0,0,3.9000000000000004,27.700000000000003,125.8,1013,25.3 +2013,7,7,2,30,0,0,0,4.5,27.700000000000003,119.92,1013,25.3 +2013,7,7,3,30,0,0,0,4.7,27.700000000000003,111.46000000000001,1013,25.200000000000003 +2013,7,7,4,30,0,0,0,4.800000000000001,27.700000000000003,101.26,1014,25.1 +2013,7,7,5,30,0,0,0,4.9,28,89.48,1014,25.1 +2013,7,7,6,30,104,75,133,5.300000000000001,28.400000000000002,77.77,1015,25.200000000000003 +2013,7,7,7,30,227,169,137,5.800000000000001,28.700000000000003,65.23,1015,25.200000000000003 +2013,7,7,8,30,474,224,410,6.300000000000001,28.900000000000002,52.370000000000005,1015,25.200000000000003 +2013,7,7,9,30,342,313,38,6.5,28.900000000000002,39.32,1016,25.1 +2013,7,7,10,30,408,373,39,6.6000000000000005,28.900000000000002,26.27,1016,25 +2013,7,7,11,30,384,361,24,6.5,28.8,13.72,1016,24.900000000000002 +2013,7,7,12,30,413,386,28,6.2,28.700000000000003,6.87,1015,24.8 +2013,7,7,13,30,520,451,72,5.9,28.6,16.41,1015,24.6 +2013,7,7,14,30,377,348,33,5.800000000000001,28.5,29.18,1015,24.5 +2013,7,7,15,30,288,271,23,5.800000000000001,28.200000000000003,42.25,1015,24.5 +2013,7,7,16,30,378,239,244,5.7,27.900000000000002,55.27,1015,24.400000000000002 +2013,7,7,17,30,207,146,164,5.6000000000000005,27.8,68.09,1015,24.3 +2013,7,7,18,30,48,48,0,5.1000000000000005,27.5,80.52,1016,24.3 +2013,7,7,19,30,0,0,0,5.1000000000000005,27.400000000000002,92.57000000000001,1016,24.3 +2013,7,7,20,30,0,0,0,5.2,27.400000000000002,103.71000000000001,1017,24.400000000000002 +2013,7,7,21,30,0,0,0,5.5,27.5,113.59,1017,24.400000000000002 +2013,7,7,22,30,0,0,0,5.7,27.700000000000003,121.57000000000001,1017,24.5 +2013,7,7,23,30,0,0,0,5.7,27.8,126.77,1017,24.6 +2013,7,8,0,30,0,0,0,5.5,28,128.32,1017,24.6 +2013,7,8,1,30,0,0,0,5.2,28.1,125.92,1017,24.6 +2013,7,8,2,30,0,0,0,5,28.1,120.04,1017,24.700000000000003 +2013,7,8,3,30,0,0,0,4.800000000000001,28.1,111.57000000000001,1017,24.8 +2013,7,8,4,30,0,0,0,4.6000000000000005,28,101.36,1018,24.900000000000002 +2013,7,8,5,30,0,0,0,4.6000000000000005,28.200000000000003,89.56,1018,25 +2013,7,8,6,30,58,58,0,4.7,28.5,77.85000000000001,1019,25.1 +2013,7,8,7,30,225,169,134,4.800000000000001,28.700000000000003,65.31,1020,25.1 +2013,7,8,8,30,397,264,218,4.7,28.900000000000002,52.44,1020,25.1 +2013,7,8,9,30,392,341,67,4.4,29.1,39.39,1020,25.1 +2013,7,8,10,30,588,439,166,4.1000000000000005,29.200000000000003,26.35,1020,25.1 +2013,7,8,11,30,643,487,161,3.9000000000000004,29.3,13.81,1020,25.1 +2013,7,8,12,30,728,493,237,3.8000000000000003,29.5,6.98,1019,25 +2013,7,8,13,30,800,402,414,3.8000000000000003,29.6,16.43,1019,24.900000000000002 +2013,7,8,14,30,695,385,354,3.9000000000000004,29.700000000000003,29.19,1018,24.900000000000002 +2013,7,8,15,30,518,335,247,4.1000000000000005,29.700000000000003,42.26,1018,24.8 +2013,7,8,16,30,336,247,156,4.2,29.6,55.28,1018,24.8 +2013,7,8,17,30,260,121,372,4.3,29.5,68.1,1018,24.8 +2013,7,8,18,30,104,49,335,4.3,28.900000000000002,80.55,1018,25 +2013,7,8,19,30,0,0,0,4.4,28.5,92.60000000000001,1019,25.400000000000002 +2013,7,8,20,30,0,0,0,4.5,28.400000000000002,103.76,1019,25.700000000000003 +2013,7,8,21,30,0,0,0,4.6000000000000005,28.3,113.66,1020,25.8 +2013,7,8,22,30,0,0,0,4.6000000000000005,28.3,121.66,1020,25.8 +2013,7,8,23,30,0,0,0,4.4,28.200000000000003,126.87,1019,25.700000000000003 +2013,7,9,0,30,0,0,0,4.1000000000000005,28.1,128.44,1019,25.5 +2013,7,9,1,30,0,0,0,3.8000000000000003,28,126.04,1019,25.3 +2013,7,9,2,30,0,0,0,3.4000000000000004,27.900000000000002,120.16,1019,25.1 +2013,7,9,3,30,0,0,0,3.1,27.8,111.68,1019,25 +2013,7,9,4,30,0,0,0,2.9000000000000004,27.900000000000002,101.46000000000001,1019,24.8 +2013,7,9,5,30,0,0,0,2.7,28.200000000000003,89.63,1020,24.8 +2013,7,9,6,30,141,60,389,2.8000000000000003,28.700000000000003,77.94,1020,24.900000000000002 +2013,7,9,7,30,343,89,608,2.8000000000000003,29.200000000000003,65.39,1020,24.700000000000003 +2013,7,9,8,30,547,107,723,2.8000000000000003,29.700000000000003,52.51,1020,24.6 +2013,7,9,9,30,727,119,786,2.9000000000000004,30,39.46,1020,24.5 +2013,7,9,10,30,864,131,819,3.2,30.200000000000003,26.42,1020,24.5 +2013,7,9,11,30,948,139,833,3.5,30.3,13.9,1020,24.6 +2013,7,9,12,30,976,133,849,3.9000000000000004,30.200000000000003,7.09,1020,24.6 +2013,7,9,13,30,938,131,841,4.3,30.1,16.46,1019,24.700000000000003 +2013,7,9,14,30,841,125,820,4.6000000000000005,29.900000000000002,29.2,1019,24.900000000000002 +2013,7,9,15,30,696,107,795,4.7,29.8,42.26,1018,25 +2013,7,9,16,30,509,95,728,4.7,29.6,55.29,1018,25 +2013,7,9,17,30,302,77,604,4.6000000000000005,29.5,68.12,1018,25.1 +2013,7,9,18,30,105,46,366,4.5,29,80.57000000000001,1018,25.200000000000003 +2013,7,9,19,30,0,0,0,4.5,28.700000000000003,92.64,1018,25.3 +2013,7,9,20,30,0,0,0,4.6000000000000005,28.6,103.81,1018,25.400000000000002 +2013,7,9,21,30,0,0,0,4.7,28.5,113.73,1018,25.400000000000002 +2013,7,9,22,30,0,0,0,4.800000000000001,28.400000000000002,121.75,1018,25.3 +2013,7,9,23,30,0,0,0,4.7,28.400000000000002,126.99000000000001,1018,25.200000000000003 +2013,7,10,0,30,0,0,0,4.4,28.3,128.57,1018,25.1 +2013,7,10,1,30,0,0,0,4.1000000000000005,28.1,126.17,1018,24.900000000000002 +2013,7,10,2,30,0,0,0,3.7,28,120.28,1018,24.8 +2013,7,10,3,30,0,0,0,3.3000000000000003,27.900000000000002,111.8,1018,24.700000000000003 +2013,7,10,4,30,0,0,0,2.9000000000000004,27.900000000000002,101.57000000000001,1018,24.700000000000003 +2013,7,10,5,30,0,0,0,2.6,28.200000000000003,89.72,1019,24.6 +2013,7,10,6,30,97,74,108,2.5,28.700000000000003,78.02,1019,24.6 +2013,7,10,7,30,347,80,643,2.4000000000000004,29.1,65.47,1019,24.400000000000002 +2013,7,10,8,30,553,94,756,2.3000000000000003,29.5,52.59,1019,24.3 +2013,7,10,9,30,596,328,348,2.3000000000000003,29.8,39.54,1019,24.200000000000003 +2013,7,10,10,30,877,109,858,2.4000000000000004,30.200000000000003,26.5,1019,24 +2013,7,10,11,30,965,112,878,2.8000000000000003,30.400000000000002,14,1018,24 +2013,7,10,12,30,989,115,881,3.2,30.5,7.21,1018,24 +2013,7,10,13,30,952,113,876,3.6,30.5,16.490000000000002,1017,24.1 +2013,7,10,14,30,855,108,856,3.9000000000000004,30.400000000000002,29.21,1017,24.200000000000003 +2013,7,10,15,30,706,100,820,4.2,30.200000000000003,42.28,1016,24.200000000000003 +2013,7,10,16,30,518,89,754,4.3,29.900000000000002,55.31,1016,24.3 +2013,7,10,17,30,309,72,637,4.4,29.700000000000003,68.14,1015,24.400000000000002 +2013,7,10,18,30,108,44,391,4.3,29,80.61,1016,24.5 +2013,7,10,19,30,0,0,0,4.2,28.700000000000003,92.69,1016,24.700000000000003 +2013,7,10,20,30,0,0,0,4.2,28.6,103.87,1016,24.8 +2013,7,10,21,30,0,0,0,4.3,28.400000000000002,113.81,1016,24.8 +2013,7,10,22,30,0,0,0,4.4,28.3,121.85000000000001,1016,24.700000000000003 +2013,7,10,23,30,0,0,0,4.6000000000000005,28.200000000000003,127.10000000000001,1016,24.700000000000003 +2013,7,11,0,30,0,0,0,4.7,28.1,128.7,1016,24.700000000000003 +2013,7,11,1,30,0,0,0,4.7,28,126.31,1016,24.700000000000003 +2013,7,11,2,30,0,0,0,4.6000000000000005,27.900000000000002,120.41,1016,24.6 +2013,7,11,3,30,0,0,0,4.4,27.8,111.91,1016,24.6 +2013,7,11,4,30,0,0,0,4.2,27.8,101.68,1016,24.5 +2013,7,11,5,30,0,0,0,4.2,28.1,89.8,1016,24.6 +2013,7,11,6,30,142,58,410,4.3,28.6,78.11,1016,24.6 +2013,7,11,7,30,346,88,624,4.2,29.200000000000003,65.55,1016,24.400000000000002 +2013,7,11,8,30,552,107,735,4,29.700000000000003,52.67,1016,24.200000000000003 +2013,7,11,9,30,649,268,494,3.7,30.200000000000003,39.61,1016,23.900000000000002 +2013,7,11,10,30,743,359,429,3.4000000000000004,30.6,26.580000000000002,1016,23.400000000000002 +2013,7,11,11,30,871,401,484,3.1,30.900000000000002,14.1,1016,23 +2013,7,11,12,30,857,426,435,3.1,31,7.34,1015,22.8 +2013,7,11,13,30,943,144,833,3.3000000000000003,31,16.53,1015,22.8 +2013,7,11,14,30,842,142,803,3.6,30.8,29.23,1014,22.900000000000002 +2013,7,11,15,30,584,304,379,3.9000000000000004,30.400000000000002,42.29,1014,23.1 +2013,7,11,16,30,453,188,465,4.1000000000000005,30,55.33,1014,23.400000000000002 +2013,7,11,17,30,277,106,458,4.3,29.700000000000003,68.17,1014,23.6 +2013,7,11,18,30,62,55,39,4.6000000000000005,28.900000000000002,80.64,1014,24 +2013,7,11,19,30,0,0,0,4.800000000000001,28.6,92.73,1014,24.3 +2013,7,11,20,30,0,0,0,4.800000000000001,28.5,103.93,1014,24.5 +2013,7,11,21,30,0,0,0,4.800000000000001,28.5,113.89,1014,24.400000000000002 +2013,7,11,22,30,0,0,0,5,28.5,121.95,1014,24.3 +2013,7,11,23,30,0,0,0,5.1000000000000005,28.5,127.23,1014,24.200000000000003 +2013,7,12,0,30,0,0,0,5.300000000000001,28.400000000000002,128.84,1014,24.200000000000003 +2013,7,12,1,30,0,0,0,5.4,28.400000000000002,126.45,1014,24.3 +2013,7,12,2,30,0,0,0,5.300000000000001,28.3,120.54,1013,24.3 +2013,7,12,3,30,0,0,0,5,28.1,112.04,1014,24.400000000000002 +2013,7,12,4,30,0,0,0,4.7,28,101.78,1014,24.400000000000002 +2013,7,12,5,30,0,0,0,4.4,28,89.88,1014,24.5 +2013,7,12,6,30,119,66,259,4.2,28.400000000000002,78.2,1015,24.5 +2013,7,12,7,30,59,59,0,3.9000000000000004,28.8,65.63,1015,24.3 +2013,7,12,8,30,96,96,0,3.5,29.200000000000003,52.74,1015,24 +2013,7,12,9,30,408,347,80,2.9000000000000004,29.700000000000003,39.69,1015,23.5 +2013,7,12,10,30,586,438,165,1.9000000000000001,30.1,26.66,1015,23 +2013,7,12,11,30,300,285,15,1.3,30.3,14.200000000000001,1015,22.700000000000003 +2013,7,12,12,30,507,452,56,1.5,30.400000000000002,7.47,1014,22.6 +2013,7,12,13,30,710,469,251,2,30.400000000000002,16.580000000000002,1013,22.8 +2013,7,12,14,30,712,358,406,2.5,30.3,29.25,1013,23.1 +2013,7,12,15,30,683,143,730,2.8000000000000003,30.1,42.31,1013,23.200000000000003 +2013,7,12,16,30,499,123,661,3.1,29.900000000000002,55.35,1012,23.3 +2013,7,12,17,30,294,96,534,3.2,29.8,68.2,1012,23.3 +2013,7,12,18,30,101,52,306,3.6,29.200000000000003,80.68,1013,23.5 +2013,7,12,19,30,0,0,0,3.8000000000000003,28.700000000000003,92.79,1013,23.8 +2013,7,12,20,30,0,0,0,3.8000000000000003,28.5,104,1013,24 +2013,7,12,21,30,0,0,0,3.6,28.400000000000002,113.98,1013,24.1 +2013,7,12,22,30,0,0,0,3.3000000000000003,28.200000000000003,122.07000000000001,1013,24.1 +2013,7,12,23,30,0,0,0,3,28.1,127.36,1013,24 +2013,7,13,0,30,0,0,0,2.7,27.900000000000002,128.98,1013,23.900000000000002 +2013,7,13,1,30,0,0,0,2.3000000000000003,27.8,126.59,1013,23.700000000000003 +2013,7,13,2,30,0,0,0,2.1,27.6,120.68,1013,23.6 +2013,7,13,3,30,0,0,0,1.9000000000000001,27.5,112.16,1013,23.5 +2013,7,13,4,30,0,0,0,2,27.3,101.9,1014,23.6 +2013,7,13,5,30,0,0,0,2.3000000000000003,27.5,89.97,1014,23.8 +2013,7,13,6,30,135,62,360,2.6,27.900000000000002,78.29,1014,23.900000000000002 +2013,7,13,7,30,280,146,325,2.7,28.5,65.72,1015,23.900000000000002 +2013,7,13,8,30,336,265,117,2.7,29.200000000000003,52.82,1015,23.900000000000002 +2013,7,13,9,30,725,131,772,2.3000000000000003,29.900000000000002,39.76,1015,23.700000000000003 +2013,7,13,10,30,867,140,814,1.9000000000000001,30.5,26.740000000000002,1014,23.400000000000002 +2013,7,13,11,30,953,149,830,1.5,31,14.31,1014,23 +2013,7,13,12,30,974,164,817,1.6,31.3,7.61,1013,22.8 +2013,7,13,13,30,935,165,804,2.2,31.5,16.62,1013,22.900000000000002 +2013,7,13,14,30,678,395,324,3.1,31.5,29.28,1012,23 +2013,7,13,15,30,687,148,729,3.9000000000000004,31.400000000000002,42.34,1011,23.200000000000003 +2013,7,13,16,30,497,134,640,4.4,31,55.38,1011,23.5 +2013,7,13,17,30,289,108,490,4.5,30.8,68.24,1011,23.8 +2013,7,13,18,30,86,53,204,4.6000000000000005,29.8,80.73,1011,24.3 +2013,7,13,19,30,0,0,0,4.4,29.3,92.85000000000001,1012,24.8 +2013,7,13,20,30,0,0,0,4.1000000000000005,29.1,104.08,1012,24.900000000000002 +2013,7,13,21,30,0,0,0,3.8000000000000003,29,114.08,1013,24.900000000000002 +2013,7,13,22,30,0,0,0,3.5,28.900000000000002,122.18,1013,24.700000000000003 +2013,7,13,23,30,0,0,0,3.5,28.700000000000003,127.5,1012,24.5 +2013,7,14,0,30,0,0,0,3.5,28.6,129.13,1012,24.400000000000002 +2013,7,14,1,30,0,0,0,3.3000000000000003,28.400000000000002,126.74000000000001,1012,24.3 +2013,7,14,2,30,0,0,0,3,28.3,120.82000000000001,1012,24.1 +2013,7,14,3,30,0,0,0,2.7,28.200000000000003,112.29,1012,24 +2013,7,14,4,30,0,0,0,2.4000000000000004,28.1,102.01,1012,23.900000000000002 +2013,7,14,5,30,0,0,0,2.4000000000000004,28.200000000000003,90.05,1013,23.900000000000002 +2013,7,14,6,30,99,71,137,2.5,28.400000000000002,78.38,1013,23.900000000000002 +2013,7,14,7,30,314,117,482,2.4000000000000004,28.6,65.8,1014,24 +2013,7,14,8,30,246,228,30,2.1,28.8,52.9,1014,23.900000000000002 +2013,7,14,9,30,458,359,128,1.8,29,39.84,1014,23.6 +2013,7,14,10,30,587,438,167,1.7000000000000002,29.1,26.82,1014,23.400000000000002 +2013,7,14,11,30,539,462,79,1.9000000000000001,29.3,14.41,1014,23.3 +2013,7,14,12,30,751,485,268,2,29.3,7.76,1013,23.3 +2013,7,14,13,30,485,432,55,2.1,29.3,16.68,1013,23.200000000000003 +2013,7,14,14,30,369,342,30,2.4000000000000004,29.200000000000003,29.310000000000002,1013,23.3 +2013,7,14,15,30,545,323,300,2.8000000000000003,29.1,42.37,1013,23.5 +2013,7,14,16,30,343,246,171,3.2,29,55.410000000000004,1012,23.700000000000003 +2013,7,14,17,30,222,140,221,3.3000000000000003,29,68.28,1012,23.900000000000002 +2013,7,14,18,30,52,52,0,3.4000000000000004,28.700000000000003,80.78,1013,24.200000000000003 +2013,7,14,19,30,0,0,0,3.9000000000000004,28.6,92.91,1013,24.400000000000002 +2013,7,14,20,30,0,0,0,4.5,28.6,104.16,1013,24.5 +2013,7,14,21,30,0,0,0,4.9,28.5,114.18,1013,24.6 +2013,7,14,22,30,0,0,0,4.9,28.5,122.3,1014,24.5 +2013,7,14,23,30,0,0,0,4.9,28.400000000000002,127.64,1014,24.3 +2013,7,15,0,30,0,0,0,5.2,28.400000000000002,129.29,1013,24.1 +2013,7,15,1,30,0,0,0,5.7,28.400000000000002,126.9,1013,23.900000000000002 +2013,7,15,2,30,0,0,0,5.7,28.400000000000002,120.97,1013,23.8 +2013,7,15,3,30,0,0,0,4.9,28.3,112.42,1014,23.900000000000002 +2013,7,15,4,30,0,0,0,4,28.200000000000003,102.13,1014,23.900000000000002 +2013,7,15,5,30,0,0,0,3.5,28.3,90.14,1015,23.900000000000002 +2013,7,15,6,30,62,62,0,3.6,28.5,78.47,1015,24.1 +2013,7,15,7,30,198,163,85,4,28.700000000000003,65.89,1015,24.3 +2013,7,15,8,30,312,259,87,4.5,28.900000000000002,52.980000000000004,1015,24.400000000000002 +2013,7,15,9,30,396,341,72,5,29.200000000000003,39.92,1015,24.5 +2013,7,15,10,30,366,342,27,5.300000000000001,29.400000000000002,26.900000000000002,1015,24.6 +2013,7,15,11,30,763,455,318,5.300000000000001,29.400000000000002,14.530000000000001,1016,24.8 +2013,7,15,12,30,652,500,154,5,29.400000000000002,7.91,1016,24.8 +2013,7,15,13,30,623,479,151,4.800000000000001,29.400000000000002,16.740000000000002,1015,24.8 +2013,7,15,14,30,554,424,149,4.9,29.3,29.35,1015,24.8 +2013,7,15,15,30,559,314,332,5.2,29.1,42.4,1015,24.8 +2013,7,15,16,30,423,212,373,5.6000000000000005,29,55.45,1015,24.8 +2013,7,15,17,30,261,117,388,5.800000000000001,28.900000000000002,68.32000000000001,1015,24.900000000000002 +2013,7,15,18,30,89,50,243,6.1000000000000005,28.5,80.83,1016,25 +2013,7,15,19,30,0,0,0,6.2,28.400000000000002,92.98,1016,25.1 +2013,7,15,20,30,0,0,0,6.300000000000001,28.3,104.24000000000001,1016,25.1 +2013,7,15,21,30,0,0,0,6.4,28.200000000000003,114.28,1017,25.1 +2013,7,15,22,30,0,0,0,6.300000000000001,28.1,122.43,1017,25.1 +2013,7,15,23,30,0,0,0,6,28,127.79,1017,25 +2013,7,16,0,30,0,0,0,5.5,27.8,129.45,1017,24.900000000000002 +2013,7,16,1,30,0,0,0,5,27.700000000000003,127.06,1017,24.8 +2013,7,16,2,30,0,0,0,4.5,27.6,121.11,1017,24.700000000000003 +2013,7,16,3,30,0,0,0,4.1000000000000005,27.5,112.55,1017,24.5 +2013,7,16,4,30,0,0,0,3.8000000000000003,27.400000000000002,102.25,1017,24.400000000000002 +2013,7,16,5,30,0,0,0,3.8000000000000003,27.5,90.23,1017,24.400000000000002 +2013,7,16,6,30,85,70,75,3.9000000000000004,27.6,78.57000000000001,1018,24.400000000000002 +2013,7,16,7,30,259,154,259,4.1000000000000005,27.8,65.97,1018,24.400000000000002 +2013,7,16,8,30,229,216,22,4.3,27.900000000000002,53.06,1018,24.400000000000002 +2013,7,16,9,30,376,332,59,4.5,28.1,39.99,1019,24.5 +2013,7,16,10,30,776,342,487,4.6000000000000005,28.200000000000003,26.98,1019,24.6 +2013,7,16,11,30,793,418,388,4.800000000000001,28.200000000000003,14.64,1018,24.6 +2013,7,16,12,30,769,476,296,5,28.200000000000003,8.07,1018,24.6 +2013,7,16,13,30,672,476,205,5.1000000000000005,28.200000000000003,16.81,1018,24.6 +2013,7,16,14,30,692,387,350,5.2,28.1,29.39,1018,24.6 +2013,7,16,15,30,438,342,130,5.1000000000000005,27.900000000000002,42.44,1018,24.5 +2013,7,16,16,30,408,221,330,4.800000000000001,27.700000000000003,55.49,1018,24.6 +2013,7,16,17,30,258,119,378,4.7,27.6,68.37,1018,24.700000000000003 +2013,7,16,18,30,84,52,201,4.5,27.200000000000003,80.89,1018,24.900000000000002 +2013,7,16,19,30,0,0,0,4.6000000000000005,27,93.05,1019,25 +2013,7,16,20,30,0,0,0,4.9,26.900000000000002,104.33,1019,25.1 +2013,7,16,21,30,0,0,0,4.9,26.8,114.39,1019,25.1 +2013,7,16,22,30,0,0,0,4.800000000000001,26.700000000000003,122.57000000000001,1019,25 +2013,7,16,23,30,0,0,0,4.5,26.5,127.95,1019,24.900000000000002 +2013,7,17,0,30,0,0,0,4.2,26.400000000000002,129.62,1019,24.700000000000003 +2013,7,17,1,30,0,0,0,4,26.3,127.23,1019,24.6 +2013,7,17,2,30,0,0,0,3.8000000000000003,26.200000000000003,121.27,1019,24.5 +2013,7,17,3,30,0,0,0,3.8000000000000003,26.1,112.69,1019,24.5 +2013,7,17,4,30,0,0,0,3.8000000000000003,26.1,102.37,1019,24.5 +2013,7,17,5,30,0,0,0,3.9000000000000004,26.200000000000003,90.91,1020,24.6 +2013,7,17,6,30,8,8,0,3.9000000000000004,26.400000000000002,78.66,1020,24.700000000000003 +2013,7,17,7,30,138,135,7,3.8000000000000003,26.6,66.06,1021,24.700000000000003 +2013,7,17,8,30,47,47,0,3.7,26.8,53.14,1021,24.700000000000003 +2013,7,17,9,30,125,125,0,3.7,27,40.07,1021,24.700000000000003 +2013,7,17,10,30,311,296,17,3.7,27.1,27.07,1021,24.700000000000003 +2013,7,17,11,30,407,379,29,3.8000000000000003,27.200000000000003,14.75,1021,24.8 +2013,7,17,12,30,415,387,28,3.6,27.3,8.23,1021,24.700000000000003 +2013,7,17,13,30,499,439,62,3.4000000000000004,27.5,16.88,1021,24.6 +2013,7,17,14,30,418,376,49,3.1,27.700000000000003,29.44,1020,24.3 +2013,7,17,15,30,430,340,121,2.9000000000000004,27.900000000000002,42.480000000000004,1020,24 +2013,7,17,16,30,308,244,114,3.2,28,55.54,1020,23.900000000000002 +2013,7,17,17,30,303,65,647,3.4000000000000004,28.1,68.42,1019,24.1 +2013,7,17,18,30,74,54,129,4,27.900000000000002,80.95,1019,24.6 +2013,7,17,19,30,0,0,0,4.5,27.8,93.13,1020,25 +2013,7,17,20,30,0,0,0,4.9,27.8,104.43,1020,25.200000000000003 +2013,7,17,21,30,0,0,0,5.2,27.8,114.51,1020,25.3 +2013,7,17,22,30,0,0,0,5.4,27.8,122.71000000000001,1020,25.3 +2013,7,17,23,30,0,0,0,5.5,27.8,128.11,1020,25.3 +2013,7,18,0,30,0,0,0,5.4,27.700000000000003,129.79,1020,25.1 +2013,7,18,1,30,0,0,0,5.300000000000001,27.6,127.4,1019,24.900000000000002 +2013,7,18,2,30,0,0,0,5.1000000000000005,27.5,121.43,1019,24.700000000000003 +2013,7,18,3,30,0,0,0,4.800000000000001,27.3,112.83,1019,24.6 +2013,7,18,4,30,0,0,0,4.6000000000000005,27.200000000000003,102.49000000000001,1019,24.6 +2013,7,18,5,30,0,0,0,4.5,27.400000000000002,91.02,1019,24.6 +2013,7,18,6,30,132,54,398,4.4,27.900000000000002,78.76,1019,24.700000000000003 +2013,7,18,7,30,337,83,626,4.3,28.400000000000002,66.14,1020,24.6 +2013,7,18,8,30,545,100,743,4.2,28.8,53.22,1020,24.3 +2013,7,18,9,30,732,106,819,4.1000000000000005,29.3,40.15,1020,24 +2013,7,18,10,30,877,111,860,4.1000000000000005,29.6,27.150000000000002,1019,23.700000000000003 +2013,7,18,11,30,966,114,882,4.1000000000000005,29.8,14.870000000000001,1019,23.5 +2013,7,18,12,30,990,122,878,4,29.8,8.41,1018,23.3 +2013,7,18,13,30,953,120,870,3.9000000000000004,29.8,16.96,1018,23.200000000000003 +2013,7,18,14,30,853,116,847,3.8000000000000003,29.700000000000003,29.490000000000002,1017,23.1 +2013,7,18,15,30,706,99,823,3.7,29.6,42.53,1017,23 +2013,7,18,16,30,438,197,426,3.7,29.3,55.59,1017,23 +2013,7,18,17,30,304,70,636,3.6,29.200000000000003,68.48,1017,23.1 +2013,7,18,18,30,85,50,227,3.5,28.6,81.02,1017,23.400000000000002 +2013,7,18,19,30,0,0,0,3.6,28.3,93.21000000000001,1017,23.6 +2013,7,18,20,30,0,0,0,3.7,28.200000000000003,104.53,1017,23.700000000000003 +2013,7,18,21,30,0,0,0,3.8000000000000003,28.1,114.64,1017,23.8 +2013,7,18,22,30,0,0,0,3.9000000000000004,27.900000000000002,122.86,1017,23.900000000000002 +2013,7,18,23,30,0,0,0,3.8000000000000003,27.8,128.28,1017,24 +2013,7,19,0,30,0,0,0,3.7,27.700000000000003,129.97,1016,24 +2013,7,19,1,30,0,0,0,3.4000000000000004,27.5,127.57000000000001,1016,24 +2013,7,19,2,30,0,0,0,3.1,27.400000000000002,121.59,1016,24 +2013,7,19,3,30,0,0,0,2.6,27.400000000000002,112.97,1016,23.900000000000002 +2013,7,19,4,30,0,0,0,2,27.400000000000002,102.61,1016,23.700000000000003 +2013,7,19,5,30,0,0,0,1.4000000000000001,27.6,91.13,1016,23.5 +2013,7,19,6,30,36,36,0,1.1,27.900000000000002,78.85000000000001,1017,23.400000000000002 +2013,7,19,7,30,219,162,141,1.2000000000000002,28.3,66.23,1017,23.3 +2013,7,19,8,30,433,239,325,1.4000000000000001,28.5,53.300000000000004,1018,23.3 +2013,7,19,9,30,435,353,107,1.6,28.700000000000003,40.230000000000004,1018,23.3 +2013,7,19,10,30,693,405,325,1.7000000000000002,28.8,27.240000000000002,1018,23.200000000000003 +2013,7,19,11,30,598,480,122,1.8,28.8,14.99,1017,23 +2013,7,19,12,30,569,481,90,2,28.8,8.59,1017,22.900000000000002 +2013,7,19,13,30,371,349,23,2.1,28.8,17.05,1016,22.8 +2013,7,19,14,30,266,254,13,2.3000000000000003,28.700000000000003,29.55,1015,22.700000000000003 +2013,7,19,15,30,200,195,6,2.3000000000000003,28.6,42.58,1015,22.700000000000003 +2013,7,19,16,30,149,149,0,2.5,28.3,55.64,1015,22.8 +2013,7,19,17,30,144,133,30,2.5,28.1,68.54,1014,22.8 +2013,7,19,18,30,82,50,207,2.7,27.5,81.10000000000001,1014,23 +2013,7,19,19,30,0,0,0,2.8000000000000003,27.200000000000003,93.3,1015,23.3 +2013,7,19,20,30,0,0,0,2.8000000000000003,27.1,104.64,1015,23.3 +2013,7,19,21,30,0,0,0,2.6,27.1,114.76,1015,23.1 +2013,7,19,22,30,0,0,0,2.4000000000000004,27.1,123.01,1015,23 +2013,7,19,23,30,0,0,0,2.2,27.1,128.46,1015,22.900000000000002 +2013,7,20,0,30,0,0,0,2.1,27.200000000000003,130.16,1015,22.900000000000002 +2013,7,20,1,30,0,0,0,1.9000000000000001,27.200000000000003,127.76,1014,22.8 +2013,7,20,2,30,0,0,0,1.6,27.3,121.75,1014,22.700000000000003 +2013,7,20,3,30,0,0,0,1.3,27.400000000000002,113.12,1014,22.5 +2013,7,20,4,30,0,0,0,1.3,27.400000000000002,102.74000000000001,1014,22.400000000000002 +2013,7,20,5,30,0,0,0,1.6,27.6,91.24,1014,22.5 +2013,7,20,6,30,84,68,83,1.8,28.1,78.95,1015,23.1 +2013,7,20,7,30,238,158,200,1.8,28.6,66.32000000000001,1015,23.200000000000003 +2013,7,20,8,30,291,250,68,1.8,28.900000000000002,53.38,1016,23 +2013,7,20,9,30,311,290,28,2.1,29.200000000000003,40.31,1016,23.1 +2013,7,20,10,30,626,431,220,2.6,29.400000000000002,27.330000000000002,1016,23.3 +2013,7,20,11,30,844,404,455,3.1,29.5,15.120000000000001,1015,23.5 +2013,7,20,12,30,779,470,313,3.6,29.5,8.77,1015,23.8 +2013,7,20,13,30,743,453,304,3.9000000000000004,29.400000000000002,17.14,1014,24 +2013,7,20,14,30,366,340,30,4.2,29.3,29.61,1014,24.200000000000003 +2013,7,20,15,30,345,308,49,4.3,29.1,42.64,1013,24.3 +2013,7,20,16,30,460,167,521,4.4,28.900000000000002,55.7,1013,24.400000000000002 +2013,7,20,17,30,251,120,359,4.4,28.700000000000003,68.61,1013,24.6 +2013,7,20,18,30,92,45,309,4.2,28.1,81.17,1013,24.8 +2013,7,20,19,30,0,0,0,4.1000000000000005,27.8,93.4,1013,25 +2013,7,20,20,30,0,0,0,4,27.8,104.75,1014,25.200000000000003 +2013,7,20,21,30,0,0,0,4.1000000000000005,27.700000000000003,114.9,1014,25.3 +2013,7,20,22,30,0,0,0,4.2,27.700000000000003,123.17,1014,25.3 +2013,7,20,23,30,0,0,0,4.4,27.6,128.64000000000001,1014,25.3 +2013,7,21,0,30,0,0,0,4.6000000000000005,27.6,130.35,1014,25.3 +2013,7,21,1,30,0,0,0,4.9,27.6,127.94,1014,25.200000000000003 +2013,7,21,2,30,0,0,0,5.1000000000000005,27.5,121.92,1014,25.200000000000003 +2013,7,21,3,30,0,0,0,5,27.5,113.26,1014,25.1 +2013,7,21,4,30,0,0,0,4.7,27.5,102.87,1014,25.1 +2013,7,21,5,30,0,0,0,4.4,27.6,91.35000000000001,1015,25.1 +2013,7,21,6,30,45,45,0,4.2,27.8,79.05,1015,25.1 +2013,7,21,7,30,19,19,0,4.1000000000000005,28.1,66.41,1015,25.1 +2013,7,21,8,30,21,21,0,4,28.3,53.46,1016,25.1 +2013,7,21,9,30,498,357,186,4,28.5,40.39,1016,25.1 +2013,7,21,10,30,191,185,7,4.1000000000000005,28.6,27.42,1016,25.1 +2013,7,21,11,30,406,378,29,4.2,28.6,15.25,1016,25.200000000000003 +2013,7,21,12,30,392,368,24,4.5,28.6,8.96,1016,25.200000000000003 +2013,7,21,13,30,384,360,25,4.800000000000001,28.5,17.240000000000002,1015,25.3 +2013,7,21,14,30,605,420,213,4.9,28.400000000000002,29.68,1015,25.400000000000002 +2013,7,21,15,30,505,335,231,5,28.5,42.7,1014,25.400000000000002 +2013,7,21,16,30,203,194,16,4.9,28.400000000000002,55.77,1014,25.400000000000002 +2013,7,21,17,30,205,141,175,4.9,28.400000000000002,68.68,1014,25.400000000000002 +2013,7,21,18,30,77,50,174,4.800000000000001,28.200000000000003,81.26,1014,25.5 +2013,7,21,19,30,0,0,0,4.800000000000001,28.1,93.49,1014,25.6 +2013,7,21,20,30,0,0,0,5,28.1,104.87,1015,25.700000000000003 +2013,7,21,21,30,0,0,0,5.300000000000001,28.1,115.04,1015,25.8 +2013,7,21,22,30,0,0,0,5.6000000000000005,28.200000000000003,123.34,1016,25.900000000000002 +2013,7,21,23,30,0,0,0,5.9,28.200000000000003,128.82,1016,26 +2013,7,22,0,30,0,0,0,6.1000000000000005,28.200000000000003,130.55,1016,26.1 +2013,7,22,1,30,0,0,0,6.2,28.3,128.13,1016,26.1 +2013,7,22,2,30,0,0,0,6.1000000000000005,28.3,122.09,1016,26 +2013,7,22,3,30,0,0,0,5.800000000000001,28.200000000000003,113.41,1016,25.900000000000002 +2013,7,22,4,30,0,0,0,5.4,28.1,103,1016,25.8 +2013,7,22,5,30,0,0,0,5.1000000000000005,28.3,91.47,1016,25.8 +2013,7,22,6,30,122,58,341,4.9,28.700000000000003,79.15,1016,26 +2013,7,22,7,30,323,90,585,4.7,29.1,66.49,1017,26 +2013,7,22,8,30,530,109,708,4.6000000000000005,29.5,53.54,1017,25.900000000000002 +2013,7,22,9,30,602,317,375,4.6000000000000005,29.700000000000003,40.47,1017,25.900000000000002 +2013,7,22,10,30,853,134,811,4.7,29.900000000000002,27.51,1017,25.8 +2013,7,22,11,30,940,140,829,4.9,29.900000000000002,15.38,1017,25.8 +2013,7,22,12,30,963,153,820,5.2,29.900000000000002,9.16,1017,25.8 +2013,7,22,13,30,726,459,279,5.5,29.900000000000002,17.35,1016,25.8 +2013,7,22,14,30,537,421,134,5.7,29.8,29.75,1016,25.700000000000003 +2013,7,22,15,30,671,153,705,5.7,29.6,42.77,1016,25.700000000000003 +2013,7,22,16,30,483,135,619,5.7,29.400000000000002,55.84,1016,25.6 +2013,7,22,17,30,278,106,475,5.7,29.3,68.76,1016,25.6 +2013,7,22,18,30,74,51,154,5.5,28.900000000000002,81.34,1016,25.6 +2013,7,22,19,30,0,0,0,5.5,28.700000000000003,93.60000000000001,1016,25.700000000000003 +2013,7,22,20,30,0,0,0,5.6000000000000005,28.5,104.99000000000001,1016,25.8 +2013,7,22,21,30,0,0,0,5.7,28.400000000000002,115.18,1016,25.8 +2013,7,22,22,30,0,0,0,5.9,28.3,123.51,1016,25.8 +2013,7,22,23,30,0,0,0,6,28.3,129.02,1016,25.8 +2013,7,23,0,30,0,0,0,6,28.200000000000003,130.75,1016,25.8 +2013,7,23,1,30,0,0,0,5.9,28.1,128.33,1016,25.8 +2013,7,23,2,30,0,0,0,5.800000000000001,28.1,122.27,1015,25.6 +2013,7,23,3,30,0,0,0,5.7,28,113.57000000000001,1016,25.5 +2013,7,23,4,30,0,0,0,5.5,28,103.13,1016,25.400000000000002 +2013,7,23,5,30,0,0,0,5.4,28.1,91.58,1016,25.400000000000002 +2013,7,23,6,30,120,64,302,5.4,28.6,79.24,1017,25.400000000000002 +2013,7,23,7,30,322,103,552,5.300000000000001,29,66.58,1017,25.3 +2013,7,23,8,30,532,124,687,5.1000000000000005,29.5,53.63,1017,25.200000000000003 +2013,7,23,9,30,713,146,746,4.800000000000001,29.8,40.56,1017,25.1 +2013,7,23,10,30,858,153,796,4.5,30.1,27.6,1017,25 +2013,7,23,11,30,819,403,432,4.2,30.400000000000002,15.51,1017,24.8 +2013,7,23,12,30,872,422,456,4.1000000000000005,30.5,9.36,1016,24.700000000000003 +2013,7,23,13,30,792,402,408,4,30.5,17.46,1016,24.700000000000003 +2013,7,23,14,30,708,355,408,4.1000000000000005,30.3,29.830000000000002,1015,24.700000000000003 +2013,7,23,15,30,544,318,308,4.3,30,42.84,1015,24.700000000000003 +2013,7,23,16,30,409,215,347,4.4,29.6,55.910000000000004,1015,24.8 +2013,7,23,17,30,215,136,219,4.4,29.400000000000002,68.84,1014,24.8 +2013,7,23,18,30,75,49,174,4.6000000000000005,28.5,81.43,1014,25 +2013,7,23,19,30,0,0,0,4.800000000000001,28.1,93.7,1015,25.200000000000003 +2013,7,23,20,30,0,0,0,5.1000000000000005,27.900000000000002,105.12,1015,25.3 +2013,7,23,21,30,0,0,0,5.4,27.900000000000002,115.34,1015,25.3 +2013,7,23,22,30,0,0,0,5.7,27.900000000000002,123.68,1015,25.3 +2013,7,23,23,30,0,0,0,5.9,27.900000000000002,129.22,1015,25.3 +2013,7,24,0,30,0,0,0,5.9,27.900000000000002,130.96,1015,25.3 +2013,7,24,1,30,0,0,0,5.800000000000001,27.900000000000002,128.53,1014,25.200000000000003 +2013,7,24,2,30,0,0,0,5.7,27.900000000000002,122.45,1014,25.200000000000003 +2013,7,24,3,30,0,0,0,5.4,27.8,113.72,1014,25.200000000000003 +2013,7,24,4,30,0,0,0,5,27.700000000000003,103.26,1015,25.1 +2013,7,24,5,30,0,0,0,4.9,27.900000000000002,91.69,1015,25.1 +2013,7,24,6,30,88,65,124,5,28.400000000000002,79.34,1015,25.200000000000003 +2013,7,24,7,30,260,144,294,5.1000000000000005,28.8,66.67,1015,25 +2013,7,24,8,30,424,238,314,5.1000000000000005,29.3,53.71,1015,24.900000000000002 +2013,7,24,9,30,640,262,498,5,29.700000000000003,40.64,1015,24.8 +2013,7,24,10,30,727,362,412,4.800000000000001,30.200000000000003,27.7,1015,24.6 +2013,7,24,11,30,788,418,384,4.6000000000000005,30.5,15.65,1015,24.400000000000002 +2013,7,24,12,30,802,440,368,4.4,30.8,9.57,1014,24.200000000000003 +2013,7,24,13,30,840,394,469,4.2,30.900000000000002,17.580000000000002,1014,24 +2013,7,24,14,30,685,386,345,4.2,30.8,29.92,1013,23.8 +2013,7,24,15,30,528,326,276,4.4,30.6,42.910000000000004,1013,23.8 +2013,7,24,16,30,381,230,270,4.5,30.200000000000003,55.99,1013,24 +2013,7,24,17,30,166,139,74,4.5,29.900000000000002,68.92,1013,24.3 +2013,7,24,18,30,85,56,194,4.6000000000000005,28.8,81.53,1013,24.6 +2013,7,24,19,30,0,0,0,4.7,28.3,93.82000000000001,1013,24.900000000000002 +2013,7,24,20,30,0,0,0,4.800000000000001,28.1,105.25,1014,25.1 +2013,7,24,21,30,0,0,0,4.9,28,115.49000000000001,1014,25.1 +2013,7,24,22,30,0,0,0,5.1000000000000005,27.900000000000002,123.87,1015,25 +2013,7,24,23,30,0,0,0,5.300000000000001,27.900000000000002,129.42000000000002,1015,24.900000000000002 +2013,7,25,0,30,0,0,0,5.4,27.8,131.17000000000002,1015,24.900000000000002 +2013,7,25,1,30,0,0,0,5.300000000000001,27.8,128.73,1015,24.900000000000002 +2013,7,25,2,30,0,0,0,5,27.700000000000003,122.63,1015,24.8 +2013,7,25,3,30,0,0,0,4.800000000000001,27.6,113.88,1015,24.900000000000002 +2013,7,25,4,30,0,0,0,4.5,27.5,103.4,1016,25.1 +2013,7,25,5,30,0,0,0,4.4,27.6,91.81,1016,25.200000000000003 +2013,7,25,6,30,83,64,101,4.3,28,79.44,1016,25.3 +2013,7,25,7,30,261,142,302,4.1000000000000005,28.400000000000002,66.76,1017,25.200000000000003 +2013,7,25,8,30,451,219,393,3.7,29,53.79,1017,25 +2013,7,25,9,30,649,253,522,3,29.5,40.72,1017,24.6 +2013,7,25,10,30,741,350,442,2.4000000000000004,30,27.79,1017,24.1 +2013,7,25,11,30,837,401,453,1.9000000000000001,30.400000000000002,15.790000000000001,1017,23.6 +2013,7,25,12,30,966,182,796,1.7000000000000002,30.700000000000003,9.790000000000001,1017,23.1 +2013,7,25,13,30,785,406,398,1.8,30.8,17.71,1017,22.900000000000002 +2013,7,25,14,30,835,159,780,2.3000000000000003,30.6,30.01,1016,23 +2013,7,25,15,30,577,296,384,2.7,30.3,42.99,1016,23.3 +2013,7,25,16,30,400,218,325,3,29.900000000000002,56.07,1016,23.700000000000003 +2013,7,25,17,30,221,132,249,3.1,29.6,69.01,1016,24 +2013,7,25,18,30,69,49,136,3.3000000000000003,28.700000000000003,81.63,1016,24.3 +2013,7,25,19,30,0,0,0,3.5,28.3,93.94,1016,24.6 +2013,7,25,20,30,0,0,0,3.7,28.200000000000003,105.39,1016,24.8 +2013,7,25,21,30,0,0,0,3.8000000000000003,28.1,115.65,1017,24.900000000000002 +2013,7,25,22,30,0,0,0,4,28,124.06,1017,24.900000000000002 +2013,7,25,23,30,0,0,0,4.1000000000000005,27.900000000000002,129.63,1017,25 +2013,7,26,0,30,0,0,0,4.2,27.900000000000002,131.39000000000001,1017,25.200000000000003 +2013,7,26,1,30,0,0,0,4.3,27.8,128.94,1017,25.3 +2013,7,26,2,30,0,0,0,4.3,27.8,122.81,1017,25.400000000000002 +2013,7,26,3,30,0,0,0,4.2,27.700000000000003,114.04,1017,25.400000000000002 +2013,7,26,4,30,0,0,0,3.9000000000000004,27.700000000000003,103.53,1017,25.400000000000002 +2013,7,26,5,30,0,0,0,3.8000000000000003,28,91.93,1017,25.3 +2013,7,26,6,30,116,61,303,3.8000000000000003,28.5,79.55,1018,25.3 +2013,7,26,7,30,216,157,152,3.9000000000000004,29,66.85,1018,25.1 +2013,7,26,8,30,377,255,208,3.9000000000000004,29.5,53.88,1018,24.8 +2013,7,26,9,30,616,286,436,3.8000000000000003,30,40.81,1018,24.6 +2013,7,26,10,30,664,415,282,3.7,30.400000000000002,27.89,1017,24.3 +2013,7,26,11,30,803,405,414,3.7,30.700000000000003,15.94,1017,24.1 +2013,7,26,12,30,889,415,481,3.9000000000000004,30.8,10.01,1016,24 +2013,7,26,13,30,844,390,477,4.2,30.8,17.84,1016,24 +2013,7,26,14,30,763,319,513,4.5,30.6,30.1,1015,24.1 +2013,7,26,15,30,548,314,321,4.800000000000001,30.3,43.08,1015,24.200000000000003 +2013,7,26,16,30,429,196,417,5,29.8,56.160000000000004,1014,24.400000000000002 +2013,7,26,17,30,251,112,392,5.1000000000000005,29.6,69.11,1014,24.6 +2013,7,26,18,30,86,48,269,5.5,28.700000000000003,81.74,1014,24.900000000000002 +2013,7,26,19,30,0,0,0,5.800000000000001,28.400000000000002,94.06,1015,25.200000000000003 +2013,7,26,20,30,0,0,0,6.1000000000000005,28.3,105.53,1015,25.400000000000002 +2013,7,26,21,30,0,0,0,6.300000000000001,28.3,115.82000000000001,1015,25.5 +2013,7,26,22,30,0,0,0,6.6000000000000005,28.3,124.25,1015,25.6 +2013,7,26,23,30,0,0,0,7,28.400000000000002,129.85,1014,25.6 +2013,7,27,0,30,0,0,0,7.2,28.400000000000002,131.62,1014,25.6 +2013,7,27,1,30,0,0,0,7.4,28.400000000000002,129.15,1014,25.5 +2013,7,27,2,30,0,0,0,7.300000000000001,28.3,123,1014,25.3 +2013,7,27,3,30,0,0,0,7.1000000000000005,28.3,114.2,1014,25.3 +2013,7,27,4,30,0,0,0,6.800000000000001,28.200000000000003,103.67,1014,25.400000000000002 +2013,7,27,5,30,0,0,0,6.5,28.3,92.04,1014,25.400000000000002 +2013,7,27,6,30,27,27,0,6.4,28.5,79.65,1014,25.3 +2013,7,27,7,30,168,149,48,6.1000000000000005,28.8,66.95,1014,25.3 +2013,7,27,8,30,64,64,0,5.7,29.1,53.96,1014,25.1 +2013,7,27,9,30,454,354,133,5.2,29.400000000000002,40.89,1014,24.900000000000002 +2013,7,27,10,30,363,339,27,4.5,29.700000000000003,27.990000000000002,1014,24.8 +2013,7,27,11,30,510,447,66,4.1000000000000005,30,16.080000000000002,1014,24.700000000000003 +2013,7,27,12,30,696,495,205,4.1000000000000005,30.3,10.23,1013,24.700000000000003 +2013,7,27,13,30,758,443,330,4.3,30.6,17.98,1013,24.900000000000002 +2013,7,27,14,30,727,335,454,4.800000000000001,30.6,30.2,1012,25.1 +2013,7,27,15,30,532,321,288,5.1000000000000005,30.5,43.17,1012,25.400000000000002 +2013,7,27,16,30,107,107,0,5.2,30.200000000000003,56.25,1012,25.6 +2013,7,27,17,30,182,139,119,5.2,30,69.21000000000001,1012,25.8 +2013,7,27,18,30,76,55,146,4.9,29.1,81.85000000000001,1012,26 +2013,7,27,19,30,0,0,0,4.7,28.8,94.19,1012,26.200000000000003 +2013,7,27,20,30,0,0,0,4.6000000000000005,28.6,105.68,1013,26.3 +2013,7,27,21,30,0,0,0,4.6000000000000005,28.5,115.99000000000001,1013,26.200000000000003 +2013,7,27,22,30,0,0,0,4.7,28.400000000000002,124.45,1013,26.1 +2013,7,27,23,30,0,0,0,4.6000000000000005,28.3,130.07,1013,26.1 +2013,7,28,0,30,0,0,0,4.5,28.1,131.85,1013,26 +2013,7,28,1,30,0,0,0,4.3,28,129.37,1013,25.900000000000002 +2013,7,28,2,30,0,0,0,4.1000000000000005,28,123.19,1013,25.900000000000002 +2013,7,28,3,30,0,0,0,3.9000000000000004,27.900000000000002,114.36,1013,25.700000000000003 +2013,7,28,4,30,0,0,0,3.6,27.900000000000002,103.81,1013,25.6 +2013,7,28,5,30,0,0,0,3.2,28,92.16,1014,25.6 +2013,7,28,6,30,101,74,153,2.9000000000000004,28.3,79.75,1014,25.6 +2013,7,28,7,30,191,155,93,2.8000000000000003,28.6,67.04,1014,25.5 +2013,7,28,8,30,501,162,578,2.8000000000000003,29,54.050000000000004,1014,25.400000000000002 +2013,7,28,9,30,683,184,662,2.8000000000000003,29.5,40.980000000000004,1015,25.200000000000003 +2013,7,28,10,30,603,431,195,3,29.8,28.09,1015,25 +2013,7,28,11,30,722,467,265,3.3000000000000003,30,16.23,1015,24.900000000000002 +2013,7,28,12,30,680,496,187,3.7,30.1,10.46,1014,24.900000000000002 +2013,7,28,13,30,615,475,147,4,30.1,18.13,1014,24.900000000000002 +2013,7,28,14,30,613,414,231,4.2,29.900000000000002,30.310000000000002,1014,24.8 +2013,7,28,15,30,324,295,40,4.3,29.8,43.27,1013,24.8 +2013,7,28,16,30,358,234,222,4.4,29.6,56.35,1013,24.8 +2013,7,28,17,30,170,138,91,4.4,29.5,69.31,1013,24.8 +2013,7,28,18,30,28,28,0,4.3,28.8,81.96000000000001,1014,25 +2013,7,28,19,30,0,0,0,4.3,28.6,94.32000000000001,1014,25.1 +2013,7,28,20,30,0,0,0,4.5,28.5,105.83,1015,25.200000000000003 +2013,7,28,21,30,0,0,0,4.6000000000000005,28.400000000000002,116.17,1015,25.3 +2013,7,28,22,30,0,0,0,4.9,28.3,124.66,1016,25.3 +2013,7,28,23,30,0,0,0,5.1000000000000005,28.3,130.3,1016,25.3 +2013,7,29,0,30,0,0,0,5.300000000000001,28.3,132.08,1016,25.3 +2013,7,29,1,30,0,0,0,5.5,28.3,129.59,1016,25.200000000000003 +2013,7,29,2,30,0,0,0,5.5,28.3,123.39,1016,25.1 +2013,7,29,3,30,0,0,0,5.300000000000001,28.200000000000003,114.53,1016,25 +2013,7,29,4,30,0,0,0,5,28.1,103.95,1016,24.900000000000002 +2013,7,29,5,30,0,0,0,4.800000000000001,28.200000000000003,92.28,1016,24.900000000000002 +2013,7,29,6,30,106,70,205,4.6000000000000005,28.700000000000003,79.85000000000001,1017,24.8 +2013,7,29,7,30,306,119,480,4.3,29.200000000000003,67.13,1017,24.5 +2013,7,29,8,30,517,144,637,4,29.700000000000003,54.13,1018,24.3 +2013,7,29,9,30,702,167,710,3.8000000000000003,30,41.06,1018,24 +2013,7,29,10,30,849,176,764,3.8000000000000003,30.3,28.19,1018,23.8 +2013,7,29,11,30,942,179,795,3.9000000000000004,30.400000000000002,16.39,1018,23.6 +2013,7,29,12,30,974,167,822,4.1000000000000005,30.400000000000002,10.700000000000001,1018,23.6 +2013,7,29,13,30,938,160,819,4.3,30.3,18.28,1018,23.6 +2013,7,29,14,30,839,150,799,4.5,30.1,30.42,1017,23.700000000000003 +2013,7,29,15,30,683,147,738,4.6000000000000005,29.8,43.37,1017,23.8 +2013,7,29,16,30,490,125,660,4.6000000000000005,29.5,56.45,1017,24 +2013,7,29,17,30,278,97,516,4.7,29.3,69.42,1017,24.200000000000003 +2013,7,29,18,30,80,51,210,4.6000000000000005,28.5,82.08,1018,24.400000000000002 +2013,7,29,19,30,0,0,0,4.7,28.200000000000003,94.45,1018,24.700000000000003 +2013,7,29,20,30,0,0,0,5,28.1,105.99000000000001,1018,24.8 +2013,7,29,21,30,0,0,0,5.300000000000001,28.1,116.36,1019,24.900000000000002 +2013,7,29,22,30,0,0,0,5.6000000000000005,28,124.87,1019,24.8 +2013,7,29,23,30,0,0,0,5.800000000000001,28,130.53,1019,24.8 +2013,7,30,0,30,0,0,0,5.800000000000001,28,132.32,1019,24.700000000000003 +2013,7,30,1,30,0,0,0,5.800000000000001,27.900000000000002,129.82,1019,24.6 +2013,7,30,2,30,0,0,0,5.7,27.900000000000002,123.58,1019,24.6 +2013,7,30,3,30,0,0,0,5.4,27.700000000000003,114.69,1019,24.6 +2013,7,30,4,30,0,0,0,4.9,27.6,104.09,1019,24.6 +2013,7,30,5,30,0,0,0,4.4,27.8,92.4,1019,24.5 +2013,7,30,6,30,107,67,231,4.1000000000000005,28.400000000000002,79.95,1020,24.5 +2013,7,30,7,30,250,142,281,3.8000000000000003,28.900000000000002,67.22,1020,24.3 +2013,7,30,8,30,518,142,644,3.5,29.3,54.22,1020,24.1 +2013,7,30,9,30,701,172,702,3.3000000000000003,29.700000000000003,41.15,1020,23.8 +2013,7,30,10,30,742,344,452,3.2,30,28.3,1020,23.6 +2013,7,30,11,30,845,396,468,3.3000000000000003,30.200000000000003,16.55,1020,23.400000000000002 +2013,7,30,12,30,871,416,464,3.4000000000000004,30.200000000000003,10.94,1019,23.400000000000002 +2013,7,30,13,30,792,396,417,3.5,30.1,18.45,1019,23.400000000000002 +2013,7,30,14,30,685,382,352,3.6,29.900000000000002,30.54,1018,23.400000000000002 +2013,7,30,15,30,630,224,559,3.8000000000000003,29.6,43.47,1018,23.400000000000002 +2013,7,30,16,30,441,176,481,3.8000000000000003,29.200000000000003,56.550000000000004,1018,23.5 +2013,7,30,17,30,266,116,430,3.8000000000000003,29,69.53,1018,23.6 +2013,7,30,18,30,78,51,194,3.9000000000000004,28.3,82.2,1018,23.8 +2013,7,30,19,30,0,0,0,4,27.900000000000002,94.60000000000001,1018,24.1 +2013,7,30,20,30,0,0,0,4.2,27.8,106.15,1018,24.200000000000003 +2013,7,30,21,30,0,0,0,4.4,27.700000000000003,116.54,1018,24.3 +2013,7,30,22,30,0,0,0,4.6000000000000005,27.6,125.08,1018,24.3 +2013,7,30,23,30,0,0,0,4.7,27.6,130.77,1018,24.3 +2013,7,31,0,30,0,0,0,4.6000000000000005,27.5,132.57,1018,24.400000000000002 +2013,7,31,1,30,0,0,0,4.5,27.5,130.04,1018,24.5 +2013,7,31,2,30,0,0,0,4.3,27.5,123.78,1018,24.6 +2013,7,31,3,30,0,0,0,4,27.5,114.86,1018,24.700000000000003 +2013,7,31,4,30,0,0,0,3.7,27.400000000000002,104.23,1018,24.700000000000003 +2013,7,31,5,30,0,0,0,3.5,27.700000000000003,92.52,1018,24.700000000000003 +2013,7,31,6,30,77,60,99,3.5,28.200000000000003,80.06,1019,24.8 +2013,7,31,7,30,308,100,540,3.5,28.8,67.31,1019,24.6 +2013,7,31,8,30,518,121,682,3.5,29.200000000000003,54.31,1019,24.5 +2013,7,31,9,30,615,279,446,3.4000000000000004,29.6,41.24,1019,24.3 +2013,7,31,10,30,852,135,816,3.2,30,28.400000000000002,1019,24 +2013,7,31,11,30,822,398,442,2.8000000000000003,30.3,16.71,1018,23.700000000000003 +2013,7,31,12,30,846,417,437,2.5,30.6,11.19,1018,23.400000000000002 +2013,7,31,13,30,930,138,836,2.4000000000000004,30.700000000000003,18.61,1017,23.200000000000003 +2013,7,31,14,30,691,369,375,2.6,30.6,30.66,1016,23 +2013,7,31,15,30,677,125,762,3.1,30.400000000000002,43.58,1016,23.200000000000003 +2013,7,31,16,30,485,109,685,3.5,29.900000000000002,56.660000000000004,1016,23.5 +2013,7,31,17,30,274,85,544,3.7,29.6,69.65,1016,23.8 +2013,7,31,18,30,79,44,265,3.9000000000000004,28.6,82.33,1016,24.200000000000003 +2013,7,31,19,30,0,0,0,4,28.200000000000003,94.74,1016,24.6 +2013,7,31,20,30,0,0,0,4,28.1,106.32000000000001,1016,24.8 +2013,7,31,21,30,0,0,0,4,28.1,116.74000000000001,1016,24.8 +2013,7,31,22,30,0,0,0,4.1000000000000005,28,125.3,1016,24.700000000000003 +2013,7,31,23,30,0,0,0,4.3,28,131.02,1016,24.6 +2013,8,1,0,30,0,0,0,4.4,28,132.82,1016,24.6 +2013,8,1,1,30,0,0,0,4.5,27.900000000000002,130.28,1016,24.700000000000003 +2013,8,1,2,30,0,0,0,4.5,27.8,123.99000000000001,1016,24.700000000000003 +2013,8,1,3,30,0,0,0,4.3,27.700000000000003,115.03,1016,24.700000000000003 +2013,8,1,4,30,0,0,0,4,27.700000000000003,104.37,1016,24.8 +2013,8,1,5,30,0,0,0,3.9000000000000004,27.8,92.64,1016,24.8 +2013,8,1,6,30,107,56,295,3.9000000000000004,28.1,80.16,1017,24.8 +2013,8,1,7,30,307,97,547,3.7,28.5,67.41,1017,24.6 +2013,8,1,8,30,516,121,677,3.4000000000000004,29,54.39,1017,24.5 +2013,8,1,9,30,700,140,746,3,29.5,41.33,1017,24.3 +2013,8,1,10,30,746,342,460,2.3000000000000003,30.1,28.51,1017,24 +2013,8,1,11,30,807,400,426,1.7000000000000002,30.6,16.88,1016,23.5 +2013,8,1,12,30,829,417,420,1.5,30.900000000000002,11.44,1016,23 +2013,8,1,13,30,840,387,479,1.9000000000000001,31,18.79,1015,23.1 +2013,8,1,14,30,677,383,342,2.6,30.8,30.79,1014,23.3 +2013,8,1,15,30,561,298,363,3.1,30.5,43.7,1014,23.700000000000003 +2013,8,1,16,30,469,136,609,3.4000000000000004,30.1,56.78,1014,24 +2013,8,1,17,30,261,105,451,3.5,29.900000000000002,69.77,1014,24.200000000000003 +2013,8,1,18,30,74,46,210,3.7,29,82.46000000000001,1014,24.400000000000002 +2013,8,1,19,30,0,0,0,3.8000000000000003,28.6,94.89,1014,24.6 +2013,8,1,20,30,0,0,0,3.7,28.400000000000002,106.49000000000001,1015,24.8 +2013,8,1,21,30,0,0,0,3.7,28.400000000000002,116.94,1015,24.8 +2013,8,1,22,30,0,0,0,3.8000000000000003,28.3,125.53,1015,24.8 +2013,8,1,23,30,0,0,0,3.9000000000000004,28.200000000000003,131.27,1015,24.900000000000002 +2013,8,2,0,30,0,0,0,3.9000000000000004,28.200000000000003,133.07,1014,24.8 +2013,8,2,1,30,0,0,0,3.8000000000000003,28.1,130.51,1014,24.8 +2013,8,2,2,30,0,0,0,3.6,28,124.19,1014,24.700000000000003 +2013,8,2,3,30,0,0,0,3.3000000000000003,27.900000000000002,115.21000000000001,1014,24.6 +2013,8,2,4,30,0,0,0,3,27.700000000000003,104.52,1014,24.6 +2013,8,2,5,30,0,0,0,2.8000000000000003,27.900000000000002,92.76,1015,24.6 +2013,8,2,6,30,76,59,101,2.8000000000000003,28.400000000000002,80.26,1015,24.5 +2013,8,2,7,30,253,137,303,2.6,29,67.5,1016,24.400000000000002 +2013,8,2,8,30,428,226,347,2.3000000000000003,29.5,54.480000000000004,1016,24.200000000000003 +2013,8,2,9,30,579,317,349,2.1,29.900000000000002,41.42,1016,24 +2013,8,2,10,30,727,353,426,1.9000000000000001,30.3,28.62,1016,23.700000000000003 +2013,8,2,11,30,856,392,485,1.8,30.5,17.05,1016,23.5 +2013,8,2,12,30,957,170,804,2,30.6,11.700000000000001,1015,23.400000000000002 +2013,8,2,13,30,921,165,799,2.5,30.6,18.97,1015,23.5 +2013,8,2,14,30,821,157,775,3,30.400000000000002,30.93,1014,23.6 +2013,8,2,15,30,673,132,750,3.4000000000000004,30.200000000000003,43.82,1014,23.8 +2013,8,2,16,30,481,114,671,3.6,29.900000000000002,56.9,1014,24 +2013,8,2,17,30,219,122,282,3.7,29.700000000000003,69.9,1014,24.200000000000003 +2013,8,2,18,30,58,43,111,4,29,82.60000000000001,1014,24.400000000000002 +2013,8,2,19,30,0,0,0,4.1000000000000005,28.8,95.05,1015,24.700000000000003 +2013,8,2,20,30,0,0,0,4.3,28.700000000000003,106.67,1015,25 +2013,8,2,21,30,0,0,0,4.5,28.6,117.14,1015,25.1 +2013,8,2,22,30,0,0,0,4.7,28.6,125.76,1015,25.1 +2013,8,2,23,30,0,0,0,4.800000000000001,28.5,131.52,1015,25.1 +2013,8,3,0,30,0,0,0,4.7,28.400000000000002,133.33,1015,25.1 +2013,8,3,1,30,0,0,0,4.6000000000000005,28.400000000000002,130.75,1015,25.1 +2013,8,3,2,30,0,0,0,4.3,28.3,124.4,1015,25.1 +2013,8,3,3,30,0,0,0,4.1000000000000005,28.200000000000003,115.38,1015,25.1 +2013,8,3,4,30,0,0,0,3.8000000000000003,28.1,104.66,1015,25.1 +2013,8,3,5,30,0,0,0,3.5,28.400000000000002,92.89,1016,25.1 +2013,8,3,6,30,106,50,336,3.4000000000000004,28.900000000000002,80.37,1016,25 +2013,8,3,7,30,309,83,594,3.2,29.5,67.59,1017,24.900000000000002 +2013,8,3,8,30,519,101,722,2.9000000000000004,29.900000000000002,54.57,1017,24.700000000000003 +2013,8,3,9,30,706,112,793,2.7,30.400000000000002,41.51,1017,24.5 +2013,8,3,10,30,851,117,836,2.6,30.700000000000003,28.73,1017,24.3 +2013,8,3,11,30,941,119,860,2.7,30.900000000000002,17.22,1017,24.200000000000003 +2013,8,3,12,30,847,415,441,3,31,11.97,1017,24.3 +2013,8,3,13,30,925,129,843,3.5,31,19.150000000000002,1016,24.3 +2013,8,3,14,30,713,336,440,3.8000000000000003,30.8,31.07,1016,24.5 +2013,8,3,15,30,568,289,386,4.1000000000000005,30.6,43.95,1016,24.6 +2013,8,3,16,30,374,220,282,4.4,30.3,57.02,1016,24.8 +2013,8,3,17,30,250,97,446,4.5,30.1,70.03,1016,25.1 +2013,8,3,18,30,53,43,80,4.6000000000000005,29.5,82.74,1016,25.400000000000002 +2013,8,3,19,30,0,0,0,4.6000000000000005,29.3,95.21000000000001,1017,25.700000000000003 +2013,8,3,20,30,0,0,0,4.6000000000000005,29.200000000000003,106.85000000000001,1017,25.900000000000002 +2013,8,3,21,30,0,0,0,4.6000000000000005,29.1,117.35000000000001,1017,26 +2013,8,3,22,30,0,0,0,4.7,29,126,1018,26.1 +2013,8,3,23,30,0,0,0,4.6000000000000005,28.900000000000002,131.78,1018,26.1 +2013,8,4,0,30,0,0,0,4.5,28.8,133.6,1017,26 +2013,8,4,1,30,0,0,0,4.3,28.700000000000003,131,1017,25.900000000000002 +2013,8,4,2,30,0,0,0,4.1000000000000005,28.700000000000003,124.61,1017,25.8 +2013,8,4,3,30,0,0,0,3.7,28.6,115.55,1017,25.6 +2013,8,4,4,30,0,0,0,3.4000000000000004,28.6,104.81,1018,25.6 +2013,8,4,5,30,0,0,0,3.1,28.8,93.01,1018,25.5 +2013,8,4,6,30,69,57,68,2.9000000000000004,29.3,80.47,1019,25.400000000000002 +2013,8,4,7,30,308,81,597,2.7,29.8,67.69,1019,25.1 +2013,8,4,8,30,518,99,725,2.5,30.200000000000003,54.660000000000004,1019,24.900000000000002 +2013,8,4,9,30,704,112,791,2.3000000000000003,30.5,41.61,1019,24.700000000000003 +2013,8,4,10,30,848,121,831,2.2,30.700000000000003,28.84,1019,24.400000000000002 +2013,8,4,11,30,937,125,852,2.2,30.8,17.400000000000002,1018,24.3 +2013,8,4,12,30,964,125,859,2.4000000000000004,30.900000000000002,12.23,1018,24.3 +2013,8,4,13,30,926,121,854,2.8000000000000003,30.8,19.35,1017,24.400000000000002 +2013,8,4,14,30,827,114,834,3.3000000000000003,30.6,31.220000000000002,1016,24.5 +2013,8,4,15,30,673,109,785,3.6,30.400000000000002,44.08,1016,24.8 +2013,8,4,16,30,481,94,713,3.8000000000000003,30.1,57.15,1016,24.900000000000002 +2013,8,4,17,30,270,73,579,3.9000000000000004,29.900000000000002,70.16,1016,25.1 +2013,8,4,18,30,72,39,268,4.1000000000000005,29.3,82.89,1016,25.200000000000003 +2013,8,4,19,30,0,0,0,4.3,29.1,95.37,1017,25.5 +2013,8,4,20,30,0,0,0,4.4,29,107.04,1017,25.6 +2013,8,4,21,30,0,0,0,4.6000000000000005,28.900000000000002,117.56,1017,25.6 +2013,8,4,22,30,0,0,0,4.800000000000001,28.900000000000002,126.24000000000001,1017,25.6 +2013,8,4,23,30,0,0,0,4.9,28.8,132.05,1017,25.5 +2013,8,5,0,30,0,0,0,5,28.700000000000003,133.86,1017,25.5 +2013,8,5,1,30,0,0,0,5,28.6,131.24,1017,25.400000000000002 +2013,8,5,2,30,0,0,0,4.9,28.5,124.82000000000001,1016,25.200000000000003 +2013,8,5,3,30,0,0,0,4.6000000000000005,28.400000000000002,115.73,1017,25.200000000000003 +2013,8,5,4,30,0,0,0,4.3,28.200000000000003,104.95,1017,25.1 +2013,8,5,5,30,0,0,0,4.1000000000000005,28.400000000000002,93.13,1017,25.1 +2013,8,5,6,30,70,57,82,4,28.900000000000002,80.58,1017,24.900000000000002 +2013,8,5,7,30,307,83,593,3.8000000000000003,29.400000000000002,67.78,1018,24.700000000000003 +2013,8,5,8,30,455,201,440,3.5,29.900000000000002,54.75,1018,24.400000000000002 +2013,8,5,9,30,704,121,782,3.2,30.5,41.7,1018,24.1 +2013,8,5,10,30,849,127,825,3.1,30.900000000000002,28.96,1018,23.8 +2013,8,5,11,30,825,395,450,3.1,31.200000000000003,17.580000000000002,1017,23.6 +2013,8,5,12,30,965,134,851,3.5,31.3,12.51,1017,23.700000000000003 +2013,8,5,13,30,926,129,846,4.1000000000000005,31.3,19.55,1016,23.900000000000002 +2013,8,5,14,30,826,122,825,4.6000000000000005,31.1,31.37,1015,24.200000000000003 +2013,8,5,15,30,674,108,790,5,30.8,44.22,1015,24.5 +2013,8,5,16,30,481,95,713,5.300000000000001,30.400000000000002,57.29,1015,24.8 +2013,8,5,17,30,267,75,572,5.4,30.200000000000003,70.31,1015,25.1 +2013,8,5,18,30,71,39,269,5.5,29.400000000000002,83.04,1015,25.400000000000002 +2013,8,5,19,30,0,0,0,5.5,29,95.54,1015,25.700000000000003 +2013,8,5,20,30,0,0,0,5.4,28.900000000000002,107.23,1015,26 +2013,8,5,21,30,0,0,0,5.5,28.8,117.78,1015,26 +2013,8,5,22,30,0,0,0,5.5,28.8,126.49000000000001,1015,25.900000000000002 +2013,8,5,23,30,0,0,0,5.6000000000000005,28.700000000000003,132.32,1015,25.900000000000002 +2013,8,6,0,30,0,0,0,5.7,28.6,134.14000000000001,1014,25.700000000000003 +2013,8,6,1,30,0,0,0,5.7,28.5,131.49,1014,25.6 +2013,8,6,2,30,0,0,0,5.7,28.5,125.03,1014,25.5 +2013,8,6,3,30,0,0,0,5.7,28.400000000000002,115.91,1014,25.400000000000002 +2013,8,6,4,30,0,0,0,5.7,28.3,105.10000000000001,1014,25.5 +2013,8,6,5,30,0,0,0,5.6000000000000005,28.5,93.25,1015,25.6 +2013,8,6,6,30,100,54,283,5.5,29,80.68,1015,25.700000000000003 +2013,8,6,7,30,301,96,546,5.300000000000001,29.5,67.87,1015,25.700000000000003 +2013,8,6,8,30,511,120,679,5.1000000000000005,30.1,54.84,1016,25.6 +2013,8,6,9,30,698,134,756,4.800000000000001,30.6,41.79,1016,25.400000000000002 +2013,8,6,10,30,843,147,796,4.5,31.1,29.080000000000002,1016,25.3 +2013,8,6,11,30,931,153,817,4.4,31.400000000000002,17.77,1016,25.200000000000003 +2013,8,6,12,30,959,149,830,4.6000000000000005,31.6,12.780000000000001,1015,25.200000000000003 +2013,8,6,13,30,920,149,819,4.9,31.6,19.76,1014,25.3 +2013,8,6,14,30,817,145,789,5.1000000000000005,31.5,31.53,1014,25.400000000000002 +2013,8,6,15,30,660,140,727,5.300000000000001,31.1,44.36,1013,25.6 +2013,8,6,16,30,466,125,634,5.300000000000001,30.700000000000003,57.43,1013,25.700000000000003 +2013,8,6,17,30,254,98,466,5.300000000000001,30.400000000000002,70.45,1013,25.900000000000002 +2013,8,6,18,30,63,46,143,5.300000000000001,29.5,83.19,1013,26.1 +2013,8,6,19,30,0,0,0,5.4,29.1,95.71000000000001,1014,26.400000000000002 +2013,8,6,20,30,0,0,0,5.4,29,107.42,1014,26.6 +2013,8,6,21,30,0,0,0,5.5,28.900000000000002,118,1014,26.6 +2013,8,6,22,30,0,0,0,5.6000000000000005,28.900000000000002,126.74000000000001,1014,26.6 +2013,8,6,23,30,0,0,0,5.7,28.8,132.59,1014,26.6 +2013,8,7,0,30,0,0,0,5.7,28.8,134.41,1014,26.5 +2013,8,7,1,30,0,0,0,5.800000000000001,28.700000000000003,131.75,1014,26.400000000000002 +2013,8,7,2,30,0,0,0,5.7,28.5,125.25,1013,26.200000000000003 +2013,8,7,3,30,0,0,0,5.5,28.400000000000002,116.09,1013,26.1 +2013,8,7,4,30,0,0,0,5.300000000000001,28.200000000000003,105.24000000000001,1013,26 +2013,8,7,5,30,0,0,0,5.2,28.3,93.38,1014,26 +2013,8,7,6,30,66,55,68,5.1000000000000005,28.700000000000003,80.79,1014,25.900000000000002 +2013,8,7,7,30,207,148,156,4.800000000000001,29.200000000000003,67.97,1014,25.700000000000003 +2013,8,7,8,30,413,229,319,4.5,29.700000000000003,54.93,1015,25.5 +2013,8,7,9,30,533,336,265,4.2,30.3,41.89,1015,25.1 +2013,8,7,10,30,701,382,366,3.9000000000000004,30.8,29.2,1015,24.900000000000002 +2013,8,7,11,30,794,402,412,3.8000000000000003,31.200000000000003,17.96,1014,24.6 +2013,8,7,12,30,827,414,425,4,31.400000000000002,13.07,1014,24.5 +2013,8,7,13,30,882,260,661,4.3,31.400000000000002,19.97,1013,24.5 +2013,8,7,14,30,783,244,634,4.6000000000000005,31.200000000000003,31.69,1012,24.6 +2013,8,7,15,30,635,212,593,4.800000000000001,30.700000000000003,44.5,1012,24.8 +2013,8,7,16,30,446,176,503,5,30.200000000000003,57.57,1012,25 +2013,8,7,17,30,240,125,346,5,29.900000000000002,70.60000000000001,1012,25.200000000000003 +2013,8,7,18,30,57,48,76,5,29,83.35000000000001,1012,25.5 +2013,8,7,19,30,0,0,0,4.9,28.700000000000003,95.89,1013,25.700000000000003 +2013,8,7,20,30,0,0,0,4.800000000000001,28.6,107.62,1013,25.900000000000002 +2013,8,7,21,30,0,0,0,4.7,28.5,118.23,1013,25.8 +2013,8,7,22,30,0,0,0,4.7,28.5,127,1013,25.8 +2013,8,7,23,30,0,0,0,4.7,28.400000000000002,132.87,1013,25.700000000000003 +2013,8,8,0,30,0,0,0,4.7,28.3,134.7,1013,25.6 +2013,8,8,1,30,0,0,0,4.800000000000001,28.200000000000003,132.01,1012,25.5 +2013,8,8,2,30,0,0,0,4.800000000000001,28,125.47,1012,25.5 +2013,8,8,3,30,0,0,0,4.6000000000000005,27.900000000000002,116.26,1012,25.400000000000002 +2013,8,8,4,30,0,0,0,4.3,27.8,105.39,1012,25.400000000000002 +2013,8,8,5,30,0,0,0,4,27.900000000000002,93.5,1013,25.3 +2013,8,8,6,30,87,68,118,3.8000000000000003,28.400000000000002,80.89,1013,25.200000000000003 +2013,8,8,7,30,282,140,379,3.3000000000000003,28.8,68.06,1013,25 +2013,8,8,8,30,371,246,218,2.6,29.3,55.02,1014,24.700000000000003 +2013,8,8,9,30,678,204,638,2.1,29.8,41.99,1014,24.400000000000002 +2013,8,8,10,30,826,214,701,2.1,30.3,29.32,1014,24.1 +2013,8,8,11,30,919,216,740,2.4000000000000004,30.6,18.150000000000002,1014,23.900000000000002 +2013,8,8,12,30,943,227,736,2.8000000000000003,30.8,13.35,1013,23.8 +2013,8,8,13,30,907,215,737,3.3000000000000003,30.8,20.19,1013,23.8 +2013,8,8,14,30,807,198,717,3.6,30.6,31.86,1012,23.900000000000002 +2013,8,8,15,30,660,163,700,3.7,30.3,44.660000000000004,1012,24 +2013,8,8,16,30,464,136,614,3.8000000000000003,29.900000000000002,57.72,1012,24.1 +2013,8,8,17,30,252,102,456,3.7,29.700000000000003,70.75,1012,24.1 +2013,8,8,18,30,60,44,137,3.4000000000000004,28.900000000000002,83.51,1012,24.200000000000003 +2013,8,8,19,30,0,0,0,3.1,28.5,96.07000000000001,1013,24.400000000000002 +2013,8,8,20,30,0,0,0,2.8000000000000003,28.3,107.83,1013,24.400000000000002 +2013,8,8,21,30,0,0,0,2.7,28.200000000000003,118.46000000000001,1013,24.400000000000002 +2013,8,8,22,30,0,0,0,2.6,28,127.26,1013,24.3 +2013,8,8,23,30,0,0,0,2.6,27.900000000000002,133.16,1013,24.3 +2013,8,9,0,30,0,0,0,2.6,27.8,134.98,1013,24.400000000000002 +2013,8,9,1,30,0,0,0,2.6,27.700000000000003,132.26,1013,24.5 +2013,8,9,2,30,0,0,0,2.6,27.700000000000003,125.69,1013,24.6 +2013,8,9,3,30,0,0,0,2.3000000000000003,27.8,116.44,1013,24.6 +2013,8,9,4,30,0,0,0,1.8,27.900000000000002,105.54,1013,24.5 +2013,8,9,5,30,0,0,0,1.1,28.200000000000003,93.62,1013,24.3 +2013,8,9,6,30,99,47,328,0.7000000000000001,28.700000000000003,81,1014,24.1 +2013,8,9,7,30,303,81,597,0.6000000000000001,29.3,68.16,1014,23.900000000000002 +2013,8,9,8,30,516,98,731,0.9,30,55.11,1015,23.6 +2013,8,9,9,30,699,122,777,1.3,30.6,42.08,1015,23.400000000000002 +2013,8,9,10,30,844,130,819,1.7000000000000002,31,29.45,1015,23.5 +2013,8,9,11,30,933,135,841,2.2,31.3,18.35,1014,23.700000000000003 +2013,8,9,12,30,956,142,838,2.6,31.3,13.64,1014,24 +2013,8,9,13,30,915,140,827,3,31.200000000000003,20.42,1013,24.3 +2013,8,9,14,30,812,136,798,3.4000000000000004,31,32.04,1013,24.700000000000003 +2013,8,9,15,30,550,291,364,3.6,30.8,44.81,1012,24.900000000000002 +2013,8,9,16,30,460,113,653,3.8000000000000003,30.400000000000002,57.870000000000005,1012,25.1 +2013,8,9,17,30,248,87,493,3.9000000000000004,30.200000000000003,70.91,1013,25.400000000000002 +2013,8,9,18,30,61,36,234,4,29.700000000000003,83.68,1013,25.8 +2013,8,9,19,30,0,0,0,4.1000000000000005,29.6,96.26,1014,26.1 +2013,8,9,20,30,0,0,0,4.2,29.6,108.03,1014,26.400000000000002 +2013,8,9,21,30,0,0,0,4.3,29.5,118.7,1014,26.5 +2013,8,9,22,30,0,0,0,4.3,29.5,127.52,1015,26.6 +2013,8,9,23,30,0,0,0,4.3,29.400000000000002,133.44,1015,26.6 +2013,8,10,0,30,0,0,0,4.3,29.3,135.27,1014,26.400000000000002 +2013,8,10,1,30,0,0,0,4.1000000000000005,29.200000000000003,132.53,1014,26.3 +2013,8,10,2,30,0,0,0,3.9000000000000004,29,125.91,1014,26 +2013,8,10,3,30,0,0,0,3.7,28.8,116.63,1015,25.8 +2013,8,10,4,30,0,0,0,3.4000000000000004,28.6,105.69,1015,25.6 +2013,8,10,5,30,0,0,0,3.2,28.6,93.75,1015,25.400000000000002 +2013,8,10,6,30,56,52,24,3.2,28.700000000000003,81.10000000000001,1016,25.3 +2013,8,10,7,30,8,8,0,3.2,28.900000000000002,68.25,1016,25.200000000000003 +2013,8,10,8,30,45,45,0,3.2,29,55.2,1017,25.1 +2013,8,10,9,30,37,37,0,3.2,29.1,42.18,1017,25 +2013,8,10,10,30,465,401,73,3.3000000000000003,29,29.57,1017,25 +2013,8,10,11,30,805,394,434,3.4000000000000004,29,18.55,1017,25 +2013,8,10,12,30,525,457,69,3.5,28.900000000000002,13.94,1016,24.900000000000002 +2013,8,10,13,30,918,115,858,3.6,28.900000000000002,20.650000000000002,1016,25 +2013,8,10,14,30,681,362,377,3.8000000000000003,28.900000000000002,32.22,1015,25.1 +2013,8,10,15,30,323,291,45,4,29.1,44.980000000000004,1015,25.3 +2013,8,10,16,30,170,167,6,4.2,29.200000000000003,58.03,1015,25.5 +2013,8,10,17,30,111,109,6,4.2,29.200000000000003,71.07000000000001,1015,25.700000000000003 +2013,8,10,18,30,41,36,55,4.2,29.1,83.85000000000001,1015,26.1 +2013,8,10,19,30,0,0,0,4.3,29.1,96.45,1016,26.3 +2013,8,10,20,30,0,0,0,4.5,29.1,108.25,1016,26.3 +2013,8,10,21,30,0,0,0,4.6000000000000005,29.1,118.94,1016,26.200000000000003 +2013,8,10,22,30,0,0,0,4.6000000000000005,29.1,127.8,1016,26.1 +2013,8,10,23,30,0,0,0,4.6000000000000005,29,133.74,1016,25.900000000000002 +2013,8,11,0,30,0,0,0,4.4,28.900000000000002,135.57,1016,25.700000000000003 +2013,8,11,1,30,0,0,0,4.2,28.700000000000003,132.79,1016,25.6 +2013,8,11,2,30,0,0,0,3.9000000000000004,28.6,126.13000000000001,1016,25.400000000000002 +2013,8,11,3,30,0,0,0,3.6,28.6,116.81,1016,25.200000000000003 +2013,8,11,4,30,0,0,0,3.3000000000000003,28.5,105.84,1016,25.1 +2013,8,11,5,30,0,0,0,3.1,28.6,93.87,1017,25 +2013,8,11,6,30,93,48,292,3,29,81.2,1017,25.1 +2013,8,11,7,30,295,83,574,3.1,29.3,68.35000000000001,1018,24.900000000000002 +2013,8,11,8,30,506,101,710,3.1,29.6,55.29,1018,24.6 +2013,8,11,9,30,695,111,789,3.2,29.900000000000002,42.28,1018,24.5 +2013,8,11,10,30,687,389,343,3.4000000000000004,30,29.7,1018,24.400000000000002 +2013,8,11,11,30,795,396,421,3.6,30,18.76,1018,24.3 +2013,8,11,12,30,957,116,867,3.8000000000000003,29.900000000000002,14.24,1018,24.3 +2013,8,11,13,30,919,111,864,4,29.700000000000003,20.89,1017,24.3 +2013,8,11,14,30,818,104,847,4.1000000000000005,29.5,32.410000000000004,1017,24.3 +2013,8,11,15,30,665,92,812,4.1000000000000005,29.3,45.14,1017,24.400000000000002 +2013,8,11,16,30,471,79,743,4.1000000000000005,29.1,58.19,1017,24.5 +2013,8,11,17,30,257,62,607,4.1000000000000005,29,71.24,1017,24.6 +2013,8,11,18,30,50,34,152,3.9000000000000004,28.6,84.02,1017,24.8 +2013,8,11,19,30,0,0,0,3.8000000000000003,28.5,96.64,1017,25 +2013,8,11,20,30,0,0,0,3.8000000000000003,28.5,108.46000000000001,1017,25.1 +2013,8,11,21,30,0,0,0,4.1000000000000005,28.400000000000002,119.18,1017,25.200000000000003 +2013,8,11,22,30,0,0,0,4.4,28.400000000000002,128.07,1017,25.3 +2013,8,11,23,30,0,0,0,4.7,28.400000000000002,134.04,1017,25.400000000000002 +2013,8,12,0,30,0,0,0,4.800000000000001,28.3,135.86,1017,25.5 +2013,8,12,1,30,0,0,0,4.9,28.3,133.06,1017,25.5 +2013,8,12,2,30,0,0,0,4.800000000000001,28.200000000000003,126.35000000000001,1017,25.6 +2013,8,12,3,30,0,0,0,4.5,28.1,116.99000000000001,1017,25.6 +2013,8,12,4,30,0,0,0,4,28.1,105.98,1017,25.700000000000003 +2013,8,12,5,30,0,0,0,3.6,28.3,93.99,1017,25.6 +2013,8,12,6,30,98,40,385,3.2,28.700000000000003,81.31,1018,25.700000000000003 +2013,8,12,7,30,305,64,656,2.9000000000000004,29.200000000000003,68.44,1018,25.5 +2013,8,12,8,30,520,77,779,2.5,29.6,55.38,1019,25.3 +2013,8,12,9,30,708,86,841,2.2,30,42.38,1019,25 +2013,8,12,10,30,854,91,879,1.9000000000000001,30.3,29.830000000000002,1019,24.8 +2013,8,12,11,30,943,94,898,1.7000000000000002,30.6,18.97,1018,24.5 +2013,8,12,12,30,964,110,882,1.8,30.8,14.540000000000001,1018,24.3 +2013,8,12,13,30,820,378,473,2.2,30.900000000000002,21.13,1017,24.3 +2013,8,12,14,30,822,101,856,2.7,30.900000000000002,32.6,1017,24.400000000000002 +2013,8,12,15,30,595,229,521,3.1,30.700000000000003,45.31,1016,24.6 +2013,8,12,16,30,387,193,370,3.5,30.400000000000002,58.36,1016,24.8 +2013,8,12,17,30,224,96,404,3.6,30.200000000000003,71.41,1016,25.1 +2013,8,12,18,30,42,34,81,3.8000000000000003,29.5,84.2,1016,25.400000000000002 +2013,8,12,19,30,0,0,0,4.1000000000000005,29.200000000000003,96.84,1017,25.8 +2013,8,12,20,30,0,0,0,4.2,29.1,108.68,1017,26 +2013,8,12,21,30,0,0,0,4.4,29.1,119.43,1017,26.1 +2013,8,12,22,30,0,0,0,4.5,29,128.35,1017,26.200000000000003 +2013,8,12,23,30,0,0,0,4.6000000000000005,29,134.34,1017,26.200000000000003 +2013,8,13,0,30,0,0,0,4.6000000000000005,28.900000000000002,136.17000000000002,1016,26.200000000000003 +2013,8,13,1,30,0,0,0,4.6000000000000005,28.900000000000002,133.33,1016,26.200000000000003 +2013,8,13,2,30,0,0,0,4.6000000000000005,28.8,126.58,1016,26.200000000000003 +2013,8,13,3,30,0,0,0,4.5,28.700000000000003,117.17,1016,26.1 +2013,8,13,4,30,0,0,0,4.3,28.6,106.13,1016,26.200000000000003 +2013,8,13,5,30,0,0,0,4.1000000000000005,28.8,94.12,1016,26.200000000000003 +2013,8,13,6,30,94,44,339,4,29.3,81.41,1017,26.200000000000003 +2013,8,13,7,30,298,77,604,4,29.8,68.54,1017,26.1 +2013,8,13,8,30,512,96,733,3.9000000000000004,30.3,55.480000000000004,1017,25.900000000000002 +2013,8,13,9,30,701,109,803,3.7,30.900000000000002,42.49,1017,25.6 +2013,8,13,10,30,849,115,847,3.5,31.400000000000002,29.97,1017,25.200000000000003 +2013,8,13,11,30,940,117,871,3.3000000000000003,31.700000000000003,19.18,1017,24.8 +2013,8,13,12,30,967,117,879,3.3000000000000003,31.900000000000002,14.85,1016,24.5 +2013,8,13,13,30,928,114,874,3.6,31.900000000000002,21.38,1015,24.5 +2013,8,13,14,30,825,108,854,4,31.8,32.8,1015,24.5 +2013,8,13,15,30,667,103,804,4.3,31.5,45.49,1014,24.6 +2013,8,13,16,30,469,89,728,4.4,31,58.53,1014,24.700000000000003 +2013,8,13,17,30,253,68,585,4.5,30.8,71.58,1014,24.8 +2013,8,13,18,30,56,32,252,4.6000000000000005,29.700000000000003,84.39,1014,25.1 +2013,8,13,19,30,0,0,0,4.6000000000000005,29.3,97.04,1014,25.400000000000002 +2013,8,13,20,30,0,0,0,4.7,29.1,108.91,1015,25.6 +2013,8,13,21,30,0,0,0,4.9,28.900000000000002,119.68,1015,25.700000000000003 +2013,8,13,22,30,0,0,0,5,28.8,128.63,1015,25.700000000000003 +2013,8,13,23,30,0,0,0,5.2,28.8,134.65,1015,25.8 +2013,8,14,0,30,0,0,0,5.2,28.700000000000003,136.47,1014,25.8 +2013,8,14,1,30,0,0,0,5.2,28.6,133.6,1014,25.8 +2013,8,14,2,30,0,0,0,5.1000000000000005,28.6,126.81,1014,25.8 +2013,8,14,3,30,0,0,0,5,28.5,117.35000000000001,1014,25.8 +2013,8,14,4,30,0,0,0,4.800000000000001,28.400000000000002,106.28,1015,25.8 +2013,8,14,5,30,0,0,0,4.7,28.5,94.24,1015,25.900000000000002 +2013,8,14,6,30,63,51,83,4.7,28.8,81.52,1015,25.900000000000002 +2013,8,14,7,30,277,100,485,4.7,29.200000000000003,68.63,1016,25.900000000000002 +2013,8,14,8,30,310,246,114,4.5,29.6,55.57,1016,25.700000000000003 +2013,8,14,9,30,535,329,280,4.1000000000000005,30.1,42.59,1016,25.5 +2013,8,14,10,30,728,339,450,3.6,30.6,30.11,1016,25.200000000000003 +2013,8,14,11,30,933,132,849,3.1,31,19.400000000000002,1015,24.700000000000003 +2013,8,14,12,30,958,132,856,2.7,31.200000000000003,15.16,1014,24.3 +2013,8,14,13,30,836,370,502,2.7,31.400000000000002,21.64,1014,24.200000000000003 +2013,8,14,14,30,738,304,518,2.9000000000000004,31.3,33,1013,24.3 +2013,8,14,15,30,437,323,164,3.2,31,45.67,1013,24.5 +2013,8,14,16,30,292,222,134,3.4000000000000004,30.400000000000002,58.71,1013,24.900000000000002 +2013,8,14,17,30,100,100,0,3.5,30.1,71.76,1013,25.400000000000002 +2013,8,14,18,30,49,33,161,3.2,29,84.57000000000001,1013,25.8 +2013,8,14,19,30,0,0,0,2.9000000000000004,28.6,97.25,1014,25.900000000000002 +2013,8,14,20,30,0,0,0,2.4000000000000004,28.400000000000002,109.14,1014,25.8 +2013,8,14,21,30,0,0,0,1.9000000000000001,28.1,119.94,1014,25.6 +2013,8,14,22,30,0,0,0,1.5,28,128.92000000000002,1014,25.3 +2013,8,14,23,30,0,0,0,1.1,27.900000000000002,134.96,1014,25.1 +2013,8,15,0,30,0,0,0,0.7000000000000001,27.8,136.78,1014,24.900000000000002 +2013,8,15,1,30,0,0,0,0.6000000000000001,27.6,133.88,1014,24.8 +2013,8,15,2,30,0,0,0,0.8,27.5,127.03,1014,24.8 +2013,8,15,3,30,0,0,0,0.9,27.3,117.54,1014,24.900000000000002 +2013,8,15,4,30,0,0,0,0.9,27.200000000000003,106.43,1014,24.900000000000002 +2013,8,15,5,30,0,0,0,0.8,27.1,94.36,1014,24.900000000000002 +2013,8,15,6,30,39,39,0,1.1,27,81.62,1014,25 +2013,8,15,7,30,150,136,40,2.1,27,68.73,1015,25.1 +2013,8,15,8,30,11,11,0,3.5,27.1,55.660000000000004,1015,25.200000000000003 +2013,8,15,9,30,238,229,12,4.7,27.1,42.69,1016,25.200000000000003 +2013,8,15,10,30,29,29,0,5.300000000000001,27.1,30.240000000000002,1016,25 +2013,8,15,11,30,122,122,0,5.4,27.1,19.62,1016,24.700000000000003 +2013,8,15,12,30,421,390,32,5.300000000000001,27.200000000000003,15.48,1015,24.400000000000002 +2013,8,15,13,30,502,435,72,4.7,27.6,21.900000000000002,1015,24.1 +2013,8,15,14,30,274,262,14,4,28,33.21,1014,23.8 +2013,8,15,15,30,253,241,17,3.5,28.3,45.86,1014,23.6 +2013,8,15,16,30,186,178,14,3.2,28.3,58.89,1014,23.5 +2013,8,15,17,30,74,74,0,3.1,28.3,71.95,1014,23.5 +2013,8,15,18,30,33,30,32,2.8000000000000003,27.700000000000003,84.76,1014,24 +2013,8,15,19,30,0,0,0,2.9000000000000004,27.5,97.46000000000001,1014,24.200000000000003 +2013,8,15,20,30,0,0,0,3,27.400000000000002,109.37,1014,24.3 +2013,8,15,21,30,0,0,0,3.1,27.400000000000002,120.2,1015,24.400000000000002 +2013,8,15,22,30,0,0,0,3.1,27.400000000000002,129.22,1015,24.5 +2013,8,15,23,30,0,0,0,3.1,27.400000000000002,135.27,1014,24.400000000000002 +2013,8,16,0,30,0,0,0,3,27.400000000000002,137.09,1014,24.400000000000002 +2013,8,16,1,30,0,0,0,2.8000000000000003,27.5,134.16,1014,24.3 +2013,8,16,2,30,0,0,0,2.5,27.5,127.26,1014,24.1 +2013,8,16,3,30,0,0,0,2.3000000000000003,27.5,117.72,1014,23.900000000000002 +2013,8,16,4,30,0,0,0,2.2,27.400000000000002,106.58,1014,23.900000000000002 +2013,8,16,5,30,0,0,0,2.4000000000000004,27.400000000000002,94.48,1015,23.900000000000002 +2013,8,16,6,30,51,48,22,2.7,27.8,81.73,1015,24.200000000000003 +2013,8,16,7,30,184,143,114,3,28.3,68.82000000000001,1015,24.200000000000003 +2013,8,16,8,30,100,100,0,3.2,28.8,55.76,1015,24.1 +2013,8,16,9,30,515,335,245,3.3000000000000003,29.400000000000002,42.800000000000004,1015,24.1 +2013,8,16,10,30,643,407,273,3.2,29.8,30.39,1015,23.900000000000002 +2013,8,16,11,30,907,186,766,3,30.1,19.85,1014,23.700000000000003 +2013,8,16,12,30,938,172,796,2.9000000000000004,30.3,15.8,1014,23.6 +2013,8,16,13,30,896,170,783,2.8000000000000003,30.400000000000002,22.17,1013,23.5 +2013,8,16,14,30,791,164,752,2.9000000000000004,30.3,33.43,1013,23.5 +2013,8,16,15,30,637,141,714,3.2,30.1,46.050000000000004,1013,23.6 +2013,8,16,16,30,439,125,611,3.5,29.8,59.07,1013,23.700000000000003 +2013,8,16,17,30,184,111,238,3.7,29.6,72.13,1013,23.8 +2013,8,16,18,30,38,29,101,4,29,84.95,1014,24 +2013,8,16,19,30,0,0,0,4.2,28.900000000000002,97.67,1014,24 +2013,8,16,20,30,0,0,0,4.2,28.8,109.61,1015,24 +2013,8,16,21,30,0,0,0,3.9000000000000004,28.700000000000003,120.47,1015,23.8 +2013,8,16,22,30,0,0,0,3.4000000000000004,28.6,129.51,1014,23.6 +2013,8,16,23,30,0,0,0,2.9000000000000004,28.5,135.59,1014,23.400000000000002 +2013,8,17,0,30,0,0,0,2.7,28.400000000000002,137.41,1014,23.200000000000003 +2013,8,17,1,30,0,0,0,3.1,28.1,134.44,1014,23.200000000000003 +2013,8,17,2,30,0,0,0,3.9000000000000004,27.8,127.49000000000001,1014,23.3 +2013,8,17,3,30,0,0,0,4.7,27.5,117.91,1014,23.6 +2013,8,17,4,30,0,0,0,5.4,27.1,106.73,1014,23.6 +2013,8,17,5,30,0,0,0,5.9,26.8,94.61,1015,23.5 +2013,8,17,6,30,85,48,262,6.2,26.8,81.83,1015,23.200000000000003 +2013,8,17,7,30,287,94,536,6.1000000000000005,27.200000000000003,68.92,1016,22.700000000000003 +2013,8,17,8,30,502,120,679,5.7,27.900000000000002,55.85,1016,22.1 +2013,8,17,9,30,690,145,745,5.300000000000001,28.700000000000003,42.910000000000004,1016,21.8 +2013,8,17,10,30,838,157,791,5,29.3,30.53,1016,21.6 +2013,8,17,11,30,931,161,819,4.6000000000000005,29.8,20.080000000000002,1015,21.400000000000002 +2013,8,17,12,30,960,156,837,4.1000000000000005,30.200000000000003,16.12,1014,21.1 +2013,8,17,13,30,921,150,835,3.7,30.5,22.44,1013,20.700000000000003 +2013,8,17,14,30,816,140,812,3.2,30.6,33.65,1013,20.400000000000002 +2013,8,17,15,30,655,132,757,2.7,30.6,46.25,1012,20.200000000000003 +2013,8,17,16,30,455,110,675,2.5,30.5,59.26,1012,20 +2013,8,17,17,30,238,81,516,2.5,30.3,72.33,1012,20.200000000000003 +2013,8,17,18,30,45,29,184,2.6,29.3,85.15,1013,21.200000000000003 +2013,8,17,19,30,0,0,0,2.6,29,97.89,1013,21.5 +2013,8,17,20,30,0,0,0,2.6,28.8,109.85000000000001,1014,21.6 +2013,8,17,21,30,0,0,0,2.4000000000000004,28.6,120.73,1014,21.700000000000003 +2013,8,17,22,30,0,0,0,2.4000000000000004,28.5,129.81,1014,21.6 +2013,8,17,23,30,0,0,0,2.4000000000000004,28.3,135.92000000000002,1014,21.5 +2013,8,18,0,30,0,0,0,2.7,28.1,137.73,1014,21.6 +2013,8,18,1,30,0,0,0,3,27.8,134.72,1014,21.700000000000003 +2013,8,18,2,30,0,0,0,3.3000000000000003,27.5,127.72,1014,21.900000000000002 +2013,8,18,3,30,0,0,0,3.5,27.1,118.09,1014,22.1 +2013,8,18,4,30,0,0,0,3.8000000000000003,26.8,106.87,1015,22.400000000000002 +2013,8,18,5,30,0,0,0,4.2,26.8,94.73,1015,22.5 +2013,8,18,6,30,84,48,260,4.5,27.200000000000003,81.93,1016,22.700000000000003 +2013,8,18,7,30,287,97,530,4.7,28,69.01,1016,22.8 +2013,8,18,8,30,500,125,671,4.800000000000001,28.6,55.95,1017,22.6 +2013,8,18,9,30,690,144,747,4.9,29.1,43.02,1017,22.400000000000002 +2013,8,18,10,30,839,157,792,4.9,29.400000000000002,30.68,1017,22.3 +2013,8,18,11,30,928,161,817,4.800000000000001,29.6,20.32,1017,22.200000000000003 +2013,8,18,12,30,952,165,821,4.4,29.6,16.45,1016,22 +2013,8,18,13,30,913,158,818,3.9000000000000004,29.6,22.72,1016,21.900000000000002 +2013,8,18,14,30,808,145,799,3.4000000000000004,29.5,33.87,1015,21.700000000000003 +2013,8,18,15,30,652,126,764,3,29.3,46.45,1015,21.6 +2013,8,18,16,30,452,107,679,2.6,29,59.46,1015,21.6 +2013,8,18,17,30,234,77,521,2.5,28.8,72.52,1015,21.6 +2013,8,18,18,30,43,28,184,1.9000000000000001,28,85.35000000000001,1015,21.8 +2013,8,18,19,30,0,0,0,1.9000000000000001,27.700000000000003,98.11,1015,22 +2013,8,18,20,30,0,0,0,2.2,27.700000000000003,110.09,1015,22.3 +2013,8,18,21,30,0,0,0,2.7,27.700000000000003,121.01,1016,22.5 +2013,8,18,22,30,0,0,0,2.9000000000000004,27.700000000000003,130.12,1016,22.700000000000003 +2013,8,18,23,30,0,0,0,2.8000000000000003,27.700000000000003,136.24,1016,22.700000000000003 +2013,8,19,0,30,0,0,0,2.9000000000000004,27.900000000000002,138.05,1015,22.6 +2013,8,19,1,30,0,0,0,3.4000000000000004,28.1,135,1015,22.5 +2013,8,19,2,30,0,0,0,4.1000000000000005,28.1,127.95,1015,22.400000000000002 +2013,8,19,3,30,0,0,0,4.7,27.900000000000002,118.27,1015,22.6 +2013,8,19,4,30,0,0,0,5.2,27.8,107.02,1016,22.8 +2013,8,19,5,30,0,0,0,5.7,27.8,94.85000000000001,1016,23 +2013,8,19,6,30,46,45,8,6.2,28.200000000000003,82.04,1017,23.1 +2013,8,19,7,30,139,130,27,6.4,28.8,69.11,1017,22.900000000000002 +2013,8,19,8,30,506,114,702,6.5,29.200000000000003,56.050000000000004,1017,22.6 +2013,8,19,9,30,701,123,792,6.300000000000001,29.6,43.13,1017,22.400000000000002 +2013,8,19,10,30,744,325,488,6,30,30.830000000000002,1017,22.3 +2013,8,19,11,30,824,382,472,5.7,30.200000000000003,20.55,1017,22.1 +2013,8,19,12,30,846,400,465,5.4,30.3,16.78,1016,22 +2013,8,19,13,30,741,419,350,5.2,30.3,23,1015,22 +2013,8,19,14,30,676,340,406,5,30.1,34.1,1015,22.200000000000003 +2013,8,19,15,30,573,229,502,4.800000000000001,29.700000000000003,46.660000000000004,1014,22.5 +2013,8,19,16,30,404,157,488,4.6000000000000005,29.3,59.65,1014,22.8 +2013,8,19,17,30,187,102,286,4.5,29,72.72,1014,23.200000000000003 +2013,8,19,18,30,41,27,184,4.1000000000000005,28.3,85.55,1014,23.8 +2013,8,19,19,30,0,0,0,3.9000000000000004,28.200000000000003,98.34,1015,24.200000000000003 +2013,8,19,20,30,0,0,0,3.7,28.1,110.34,1015,24.5 +2013,8,19,21,30,0,0,0,3.6,28,121.28,1015,24.6 +2013,8,19,22,30,0,0,0,3.4000000000000004,27.900000000000002,130.42000000000002,1015,24.700000000000003 +2013,8,19,23,30,0,0,0,3.2,27.8,136.58,1015,24.700000000000003 +2013,8,20,0,30,0,0,0,2.9000000000000004,27.700000000000003,138.37,1015,24.6 +2013,8,20,1,30,0,0,0,2.6,27.6,135.29,1015,24.5 +2013,8,20,2,30,0,0,0,2.3000000000000003,27.5,128.18,1015,24.3 +2013,8,20,3,30,0,0,0,2.1,27.5,118.46000000000001,1015,24.1 +2013,8,20,4,30,0,0,0,1.9000000000000001,27.400000000000002,107.17,1015,24 +2013,8,20,5,30,0,0,0,1.7000000000000002,27.3,94.97,1016,24 +2013,8,20,6,30,55,47,60,1.6,27.5,82.14,1016,23.900000000000002 +2013,8,20,7,30,219,132,244,1.4000000000000001,27.700000000000003,69.2,1017,23.700000000000003 +2013,8,20,8,30,411,214,353,1.3,27.8,56.14,1017,23.700000000000003 +2013,8,20,9,30,601,264,462,1.4000000000000001,28,43.24,1017,23.6 +2013,8,20,10,30,713,343,432,1.5,28.200000000000003,30.98,1017,23.6 +2013,8,20,11,30,798,385,442,1.6,28.200000000000003,20.8,1017,23.6 +2013,8,20,12,30,114,114,0,1.8,28.200000000000003,17.11,1017,23.5 +2013,8,20,13,30,756,392,396,1.9000000000000001,28.200000000000003,23.29,1016,23.5 +2013,8,20,14,30,800,111,833,2,28.200000000000003,34.34,1016,23.5 +2013,8,20,15,30,596,200,579,2.1,28.3,46.87,1015,23.5 +2013,8,20,16,30,251,209,83,2.2,28.400000000000002,59.86,1015,23.6 +2013,8,20,17,30,218,75,487,2.3000000000000003,28.400000000000002,72.92,1015,23.700000000000003 +2013,8,20,18,30,25,25,10,2.5,28.200000000000003,85.76,1016,24.200000000000003 +2013,8,20,19,30,0,0,0,2.9000000000000004,28.200000000000003,98.57000000000001,1016,24.400000000000002 +2013,8,20,20,30,0,0,0,3.4000000000000004,28.200000000000003,110.59,1016,24.700000000000003 +2013,8,20,21,30,0,0,0,3.8000000000000003,28.200000000000003,121.56,1016,25 +2013,8,20,22,30,0,0,0,3.9000000000000004,28.1,130.74,1016,25.200000000000003 +2013,8,20,23,30,0,0,0,3.8000000000000003,28,136.91,1016,25.3 +2013,8,21,0,30,0,0,0,3.4000000000000004,27.900000000000002,138.70000000000002,1016,25.400000000000002 +2013,8,21,1,30,0,0,0,3,27.700000000000003,135.57,1016,25.400000000000002 +2013,8,21,2,30,0,0,0,2.8000000000000003,27.700000000000003,128.42000000000002,1016,25.400000000000002 +2013,8,21,3,30,0,0,0,2.6,27.700000000000003,118.64,1016,25.3 +2013,8,21,4,30,0,0,0,2.4000000000000004,27.700000000000003,107.32000000000001,1016,25.200000000000003 +2013,8,21,5,30,0,0,0,2.2,27.900000000000002,95.09,1017,25.1 +2013,8,21,6,30,84,39,338,2.3000000000000003,28.200000000000003,82.24,1017,25.200000000000003 +2013,8,21,7,30,290,71,619,2.6,28.5,69.3,1018,25.3 +2013,8,21,8,30,504,88,747,3,28.900000000000002,56.24,1018,25.200000000000003 +2013,8,21,9,30,695,97,823,3.3000000000000003,29.200000000000003,43.36,1018,25.200000000000003 +2013,8,21,10,30,842,103,863,3.6,29.5,31.14,1018,25.200000000000003 +2013,8,21,11,30,610,467,153,3.8000000000000003,29.8,21.04,1018,25.200000000000003 +2013,8,21,12,30,954,106,888,4.1000000000000005,30,17.45,1017,25.1 +2013,8,21,13,30,827,358,511,4.3,30.1,23.59,1017,25.1 +2013,8,21,14,30,671,338,405,4.4,30.1,34.58,1016,25 +2013,8,21,15,30,639,101,789,4.5,29.900000000000002,47.08,1016,25.1 +2013,8,21,16,30,439,89,702,4.6000000000000005,29.6,60.06,1016,25.3 +2013,8,21,17,30,223,67,536,4.7,29.400000000000002,73.13,1016,25.5 +2013,8,21,18,30,36,24,173,4.7,28.8,85.97,1016,25.900000000000002 +2013,8,21,19,30,0,0,0,4.800000000000001,28.5,98.8,1016,26.1 +2013,8,21,20,30,0,0,0,4.9,28.5,110.84,1017,26.200000000000003 +2013,8,21,21,30,0,0,0,4.9,28.400000000000002,121.84,1017,26.200000000000003 +2013,8,21,22,30,0,0,0,4.9,28.3,131.05,1017,26.200000000000003 +2013,8,21,23,30,0,0,0,4.7,28.3,137.25,1017,26 +2013,8,22,0,30,0,0,0,4.5,28.200000000000003,139.03,1016,25.900000000000002 +2013,8,22,1,30,0,0,0,4.1000000000000005,28.200000000000003,135.86,1016,25.700000000000003 +2013,8,22,2,30,0,0,0,3.7,28.200000000000003,128.65,1016,25.5 +2013,8,22,3,30,0,0,0,3.3000000000000003,28.1,118.82000000000001,1016,25.400000000000002 +2013,8,22,4,30,0,0,0,3,28.1,107.46000000000001,1016,25.3 +2013,8,22,5,30,0,0,0,2.8000000000000003,28.3,95.21000000000001,1017,25.200000000000003 +2013,8,22,6,30,81,39,315,2.8000000000000003,28.6,82.35000000000001,1017,25.3 +2013,8,22,7,30,285,71,608,2.8000000000000003,29,69.4,1017,25.200000000000003 +2013,8,22,8,30,499,88,741,2.8000000000000003,29.400000000000002,56.34,1018,25.1 +2013,8,22,9,30,691,97,818,2.8000000000000003,29.700000000000003,43.47,1018,25 +2013,8,22,10,30,837,103,859,3,29.900000000000002,31.3,1017,24.900000000000002 +2013,8,22,11,30,925,106,879,3.3000000000000003,30.1,21.29,1017,24.8 +2013,8,22,12,30,949,109,883,3.6,30.200000000000003,17.79,1016,24.700000000000003 +2013,8,22,13,30,907,106,876,3.9000000000000004,30.3,23.88,1015,24.700000000000003 +2013,8,22,14,30,800,100,853,4.1000000000000005,30.200000000000003,34.83,1015,24.700000000000003 +2013,8,22,15,30,640,92,807,4.3,30,47.300000000000004,1014,24.8 +2013,8,22,16,30,439,81,722,4.3,29.8,60.27,1014,24.8 +2013,8,22,17,30,179,98,281,4.3,29.700000000000003,73.34,1014,24.900000000000002 +2013,8,22,18,30,35,23,180,4,29.1,86.18,1014,25.1 +2013,8,22,19,30,0,0,0,4,28.900000000000002,99.03,1015,25.3 +2013,8,22,20,30,0,0,0,3.9000000000000004,28.8,111.10000000000001,1015,25.3 +2013,8,22,21,30,0,0,0,3.7,28.700000000000003,122.13,1015,25.3 +2013,8,22,22,30,0,0,0,3.6,28.700000000000003,131.37,1015,25.200000000000003 +2013,8,22,23,30,0,0,0,3.3000000000000003,28.6,137.59,1015,25.1 +2013,8,23,0,30,0,0,0,3.1,28.6,139.37,1015,24.8 +2013,8,23,1,30,0,0,0,2.8000000000000003,28.6,136.15,1015,24.6 +2013,8,23,2,30,0,0,0,2.6,28.6,128.88,1014,24.400000000000002 +2013,8,23,3,30,0,0,0,2.6,28.5,119.01,1014,24.3 +2013,8,23,4,30,0,0,0,2.8000000000000003,28.3,107.61,1014,24.400000000000002 +2013,8,23,5,30,0,0,0,3.3000000000000003,28.3,95.33,1015,24.700000000000003 +2013,8,23,6,30,80,39,313,3.9000000000000004,28.6,82.45,1015,25 +2013,8,23,7,30,283,74,596,4.4,29,69.49,1015,25.200000000000003 +2013,8,23,8,30,364,234,235,4.5,29.5,56.44,1016,25.200000000000003 +2013,8,23,9,30,38,38,0,4.5,29.900000000000002,43.59,1016,25 +2013,8,23,10,30,374,345,34,4.4,30.200000000000003,31.46,1015,24.900000000000002 +2013,8,23,11,30,694,455,258,4.2,30.5,21.55,1015,24.8 +2013,8,23,12,30,790,409,401,3.9000000000000004,30.6,18.14,1014,24.6 +2013,8,23,13,30,772,373,438,3.8000000000000003,30.700000000000003,24.19,1013,24.6 +2013,8,23,14,30,787,128,805,3.7,30.700000000000003,35.08,1013,24.6 +2013,8,23,15,30,629,111,766,3.7,30.6,47.52,1013,24.6 +2013,8,23,16,30,382,162,446,3.7,30.400000000000002,60.49,1012,24.700000000000003 +2013,8,23,17,30,142,107,122,3.7,30.3,73.55,1013,24.8 +2013,8,23,18,30,20,20,0,3.6,29.700000000000003,86.4,1013,25.200000000000003 +2013,8,23,19,30,0,0,0,3.7,29.5,99.27,1013,25.3 +2013,8,23,20,30,0,0,0,3.9000000000000004,29.5,111.36,1014,25.400000000000002 +2013,8,23,21,30,0,0,0,4.1000000000000005,29.400000000000002,122.42,1014,25.400000000000002 +2013,8,23,22,30,0,0,0,4.3,29.3,131.69,1014,25.3 +2013,8,23,23,30,0,0,0,4.5,29.200000000000003,137.94,1014,25.200000000000003 +2013,8,24,0,30,0,0,0,4.5,29,139.70000000000002,1014,25.1 +2013,8,24,1,30,0,0,0,4.5,28.8,136.44,1014,25.1 +2013,8,24,2,30,0,0,0,4.5,28.5,129.12,1014,25.1 +2013,8,24,3,30,0,0,0,4.4,28.3,119.19,1014,25.3 +2013,8,24,4,30,0,0,0,4.4,28.1,107.76,1014,25.400000000000002 +2013,8,24,5,30,0,0,0,4.6000000000000005,28.1,95.46000000000001,1014,25.5 +2013,8,24,6,30,77,41,278,4.9,28.400000000000002,82.55,1015,25.700000000000003 +2013,8,24,7,30,281,77,584,5.2,28.8,69.59,1016,25.6 +2013,8,24,8,30,496,96,725,5.4,29.3,56.54,1016,25.400000000000002 +2013,8,24,9,30,688,108,802,5.7,29.8,43.71,1016,25.200000000000003 +2013,8,24,10,30,834,116,844,6,30.1,31.62,1016,25 +2013,8,24,11,30,924,120,866,6.300000000000001,30.3,21.81,1016,24.6 +2013,8,24,12,30,948,119,874,6.6000000000000005,30.5,18.490000000000002,1015,24.400000000000002 +2013,8,24,13,30,902,118,862,6.7,30.400000000000002,24.5,1014,24.200000000000003 +2013,8,24,14,30,792,114,831,6.800000000000001,30.3,35.33,1014,24.200000000000003 +2013,8,24,15,30,626,113,763,6.800000000000001,30.200000000000003,47.75,1014,24.3 +2013,8,24,16,30,425,97,669,6.9,29.900000000000002,60.7,1014,24.400000000000002 +2013,8,24,17,30,209,73,488,6.9,29.8,73.77,1014,24.6 +2013,8,24,18,30,16,16,0,6.800000000000001,29.200000000000003,86.61,1014,24.900000000000002 +2013,8,24,19,30,0,0,0,6.800000000000001,28.900000000000002,99.51,1015,25.1 +2013,8,24,20,30,0,0,0,6.800000000000001,28.700000000000003,111.62,1015,25.200000000000003 +2013,8,24,21,30,0,0,0,6.6000000000000005,28.5,122.71000000000001,1016,25.3 +2013,8,24,22,30,0,0,0,6.4,28.3,132.02,1016,25.3 +2013,8,24,23,30,0,0,0,6,28.1,138.29,1016,25.200000000000003 +2013,8,25,0,30,0,0,0,5.5,27.900000000000002,140.04,1016,25.200000000000003 +2013,8,25,1,30,0,0,0,5.1000000000000005,27.8,136.74,1016,25.200000000000003 +2013,8,25,2,30,0,0,0,4.7,27.700000000000003,129.35,1016,25.200000000000003 +2013,8,25,3,30,0,0,0,4.3,27.6,119.37,1016,25.1 +2013,8,25,4,30,0,0,0,4,27.5,107.9,1016,25 +2013,8,25,5,30,0,0,0,3.8000000000000003,27.5,95.58,1016,24.900000000000002 +2013,8,25,6,30,42,41,3,3.6,27.700000000000003,82.66,1017,24.900000000000002 +2013,8,25,7,30,50,50,0,3.5,28.1,69.69,1017,24.900000000000002 +2013,8,25,8,30,80,80,0,3.5,28.400000000000002,56.64,1018,24.900000000000002 +2013,8,25,9,30,290,272,26,3.6,28.5,43.83,1018,25 +2013,8,25,10,30,74,74,0,3.7,28.400000000000002,31.79,1018,25.1 +2013,8,25,11,30,257,246,12,3.6,28.3,22.07,1017,25.200000000000003 +2013,8,25,12,30,405,377,30,3.5,28.1,18.84,1017,25.3 +2013,8,25,13,30,456,407,54,3.6,27.900000000000002,24.810000000000002,1016,25.400000000000002 +2013,8,25,14,30,486,389,119,4.1000000000000005,27.700000000000003,35.59,1016,25.5 +2013,8,25,15,30,359,299,90,5,27.700000000000003,47.980000000000004,1016,25.6 +2013,8,25,16,30,240,201,80,6.1000000000000005,27.6,60.92,1016,25.700000000000003 +2013,8,25,17,30,97,94,8,6.7,27.6,73.99,1016,25.900000000000002 +2013,8,25,18,30,14,14,0,6.7,27.700000000000003,86.83,1017,25.8 +2013,8,25,19,30,0,0,0,6.300000000000001,27.8,99.75,1018,25.6 +2013,8,25,20,30,0,0,0,5.9,27.8,111.89,1018,25.400000000000002 +2013,8,25,21,30,0,0,0,5.7,27.8,123.01,1018,25.3 +2013,8,25,22,30,0,0,0,5.5,27.6,132.34,1018,25.3 +2013,8,25,23,30,0,0,0,5.2,27.5,138.64000000000001,1018,25.3 +2013,8,26,0,30,0,0,0,5,27.400000000000002,140.39000000000001,1018,25.3 +2013,8,26,1,30,0,0,0,5,27.3,137.03,1018,25.3 +2013,8,26,2,30,0,0,0,5,27.1,129.58,1018,25.3 +2013,8,26,3,30,0,0,0,5,27,119.56,1018,25.200000000000003 +2013,8,26,4,30,0,0,0,5,26.900000000000002,108.05,1018,25.200000000000003 +2013,8,26,5,30,0,0,0,5.1000000000000005,26.900000000000002,95.7,1018,25.1 +2013,8,26,6,30,21,21,0,5.300000000000001,27.1,82.76,1019,25.200000000000003 +2013,8,26,7,30,41,41,0,5.5,27.200000000000003,69.79,1019,25.3 +2013,8,26,8,30,22,22,0,5.7,27.400000000000002,56.75,1020,25.3 +2013,8,26,9,30,67,67,0,5.7,27.5,43.95,1020,25.3 +2013,8,26,10,30,119,119,0,5.6000000000000005,27.5,31.96,1020,25.200000000000003 +2013,8,26,11,30,209,201,9,5.4,27.400000000000002,22.330000000000002,1020,25.1 +2013,8,26,12,30,351,332,20,5.2,27.3,19.19,1020,24.900000000000002 +2013,8,26,13,30,314,299,17,4.9,27.1,25.12,1019,24.8 +2013,8,26,14,30,202,196,7,4.5,27,35.85,1019,24.6 +2013,8,26,15,30,131,131,0,4,26.900000000000002,48.22,1019,24.400000000000002 +2013,8,26,16,30,82,82,0,3.6,26.8,61.15,1019,24.200000000000003 +2013,8,26,17,30,64,64,0,3.4000000000000004,26.700000000000003,74.21000000000001,1019,24.1 +2013,8,26,18,30,9,9,0,2.7,26.5,87.05,1019,24 +2013,8,26,19,30,0,0,0,2.4000000000000004,26.5,100,1019,23.8 +2013,8,26,20,30,0,0,0,2.6,26.6,112.15,1019,23.700000000000003 +2013,8,26,21,30,0,0,0,3,26.700000000000003,123.3,1019,23.8 +2013,8,26,22,30,0,0,0,3.3000000000000003,26.8,132.67000000000002,1018,23.900000000000002 +2013,8,26,23,30,0,0,0,3.5,26.900000000000002,138.99,1018,24 +2013,8,27,0,30,0,0,0,3.4000000000000004,27,140.73,1018,24 +2013,8,27,1,30,0,0,0,3.3000000000000003,27,137.33,1018,24 +2013,8,27,2,30,0,0,0,3.2,27.1,129.82,1018,24 +2013,8,27,3,30,0,0,0,3.2,27.200000000000003,119.74000000000001,1018,24.1 +2013,8,27,4,30,0,0,0,3.3000000000000003,27.200000000000003,108.19,1019,24.3 +2013,8,27,5,30,0,0,0,3.5,27.400000000000002,95.82000000000001,1019,24.5 +2013,8,27,6,30,47,42,41,3.8000000000000003,27.700000000000003,82.86,1019,24.8 +2013,8,27,7,30,226,120,310,3.9000000000000004,28,69.89,1019,25.1 +2013,8,27,8,30,414,201,389,3.8000000000000003,28.400000000000002,56.85,1020,25.1 +2013,8,27,9,30,553,303,348,3.6,28.8,44.08,1020,25 +2013,8,27,10,30,742,314,506,3.4000000000000004,29.1,32.14,1019,24.700000000000003 +2013,8,27,11,30,815,372,480,3.3000000000000003,29.400000000000002,22.6,1019,24.5 +2013,8,27,12,30,649,474,185,3.2,29.6,19.55,1018,24.3 +2013,8,27,13,30,728,411,350,3,29.8,25.44,1018,24.1 +2013,8,27,14,30,537,389,183,2.9000000000000004,29.8,36.12,1017,23.8 +2013,8,27,15,30,553,219,503,2.9000000000000004,29.700000000000003,48.46,1017,23.6 +2013,8,27,16,30,366,159,432,3,29.5,61.38,1017,23.5 +2013,8,27,17,30,193,82,415,3,29.3,74.44,1017,23.6 +2013,8,27,18,30,22,18,77,3.1,28.400000000000002,87.27,1017,24 +2013,8,27,19,30,0,0,0,3.2,28.1,100.25,1017,24 +2013,8,27,20,30,0,0,0,3.4000000000000004,28,112.42,1017,24 +2013,8,27,21,30,0,0,0,3.6,27.900000000000002,123.60000000000001,1017,24 +2013,8,27,22,30,0,0,0,3.8000000000000003,27.8,133.01,1017,23.900000000000002 +2013,8,27,23,30,0,0,0,3.8000000000000003,27.8,139.35,1017,23.8 +2013,8,28,0,30,0,0,0,3.6,27.700000000000003,141.08,1017,23.6 +2013,8,28,1,30,0,0,0,3.3000000000000003,27.700000000000003,137.62,1017,23.5 +2013,8,28,2,30,0,0,0,3.1,27.700000000000003,130.05,1016,23.200000000000003 +2013,8,28,3,30,0,0,0,2.8000000000000003,27.8,119.92,1017,23.200000000000003 +2013,8,28,4,30,0,0,0,2.7,27.900000000000002,108.34,1017,23.200000000000003 +2013,8,28,5,30,0,0,0,2.8000000000000003,28,95.94,1017,23.3 +2013,8,28,6,30,69,43,214,3,28.400000000000002,82.97,1018,23.700000000000003 +2013,8,28,7,30,202,130,210,3.2,29,69.99,1018,23.700000000000003 +2013,8,28,8,30,481,124,655,3.3000000000000003,29.5,56.96,1019,23.8 +2013,8,28,9,30,673,142,741,3.2,30,44.21,1019,23.700000000000003 +2013,8,28,10,30,819,151,791,3,30.3,32.31,1018,23.5 +2013,8,28,11,30,908,157,815,2.7,30.6,22.88,1018,23.3 +2013,8,28,12,30,929,162,815,2.5,30.8,19.91,1017,23 +2013,8,28,13,30,883,160,803,2.4000000000000004,30.900000000000002,25.77,1016,22.900000000000002 +2013,8,28,14,30,773,153,770,2.6,30.900000000000002,36.39,1016,22.900000000000002 +2013,8,28,15,30,607,141,707,2.7,30.6,48.7,1015,23 +2013,8,28,16,30,406,119,603,2.9000000000000004,30.3,61.61,1015,23 +2013,8,28,17,30,191,83,412,3,30.1,74.67,1015,23.200000000000003 +2013,8,28,18,30,18,16,58,3.4000000000000004,29.1,87.5,1016,23.6 +2013,8,28,19,30,0,0,0,3.4000000000000004,28.8,100.5,1016,23.700000000000003 +2013,8,28,20,30,0,0,0,3.4000000000000004,28.6,112.7,1017,23.8 +2013,8,28,21,30,0,0,0,3.4000000000000004,28.400000000000002,123.91,1017,23.8 +2013,8,28,22,30,0,0,0,3.3000000000000003,28.200000000000003,133.35,1017,23.900000000000002 +2013,8,28,23,30,0,0,0,3.2,28.1,139.71,1017,23.8 +2013,8,29,0,30,0,0,0,3,27.900000000000002,141.43,1017,23.8 +2013,8,29,1,30,0,0,0,2.7,27.8,137.92000000000002,1017,23.700000000000003 +2013,8,29,2,30,0,0,0,2.3000000000000003,27.700000000000003,130.29,1017,23.5 +2013,8,29,3,30,0,0,0,1.9000000000000001,27.6,120.10000000000001,1017,23.5 +2013,8,29,4,30,0,0,0,1.6,27.6,108.48,1017,23.5 +2013,8,29,5,30,0,0,0,1.5,27.700000000000003,96.05,1018,23.6 +2013,8,29,6,30,62,45,139,1.7000000000000002,28.1,83.07000000000001,1018,23.900000000000002 +2013,8,29,7,30,254,119,395,2.1,28.700000000000003,70.09,1018,24 +2013,8,29,8,30,462,160,557,2.3000000000000003,29.3,57.06,1018,24.1 +2013,8,29,9,30,653,176,667,2.3000000000000003,29.900000000000002,44.34,1018,24.1 +2013,8,29,10,30,798,187,725,2,30.400000000000002,32.5,1018,23.900000000000002 +2013,8,29,11,30,885,195,750,1.5,30.8,23.16,1017,23.6 +2013,8,29,12,30,909,188,769,1.3,31.1,20.27,1016,23.3 +2013,8,29,13,30,864,182,759,1.8,31.3,26.1,1016,23.400000000000002 +2013,8,29,14,30,755,173,726,2.6,31.3,36.67,1015,23.8 +2013,8,29,15,30,597,145,688,3.3000000000000003,31,48.95,1015,24.1 +2013,8,29,16,30,395,127,567,3.9000000000000004,30.6,61.84,1014,24.400000000000002 +2013,8,29,17,30,183,87,368,4.2,30.3,74.9,1014,24.8 +2013,8,29,18,30,16,14,52,4.6000000000000005,29.200000000000003,87.72,1015,25.3 +2013,8,29,19,30,0,0,0,4.7,28.8,100.75,1015,25.5 +2013,8,29,20,30,0,0,0,4.6000000000000005,28.6,112.97,1016,25.700000000000003 +2013,8,29,21,30,0,0,0,4.5,28.400000000000002,124.21000000000001,1016,25.6 +2013,8,29,22,30,0,0,0,4.3,28.3,133.68,1016,25.400000000000002 +2013,8,29,23,30,0,0,0,4,28.1,140.07,1016,25.200000000000003 +2013,8,30,0,30,0,0,0,3.7,27.900000000000002,141.78,1016,25 +2013,8,30,1,30,0,0,0,3.2,27.8,138.22,1016,24.700000000000003 +2013,8,30,2,30,0,0,0,2.7,27.6,130.52,1016,24.400000000000002 +2013,8,30,3,30,0,0,0,2,27.5,120.29,1016,24.200000000000003 +2013,8,30,4,30,0,0,0,1.5,27.400000000000002,108.63,1016,24 +2013,8,30,5,30,0,0,0,1.1,27.5,96.17,1016,23.900000000000002 +2013,8,30,6,30,64,44,171,0.9,28,83.17,1016,23.900000000000002 +2013,8,30,7,30,260,104,463,0.9,28.5,70.19,1017,23.900000000000002 +2013,8,30,8,30,474,132,631,0.9,29,57.17,1017,23.900000000000002 +2013,8,30,9,30,659,161,698,0.7000000000000001,29.400000000000002,44.47,1017,23.8 +2013,8,30,10,30,805,173,750,0.7000000000000001,29.700000000000003,32.68,1016,23.5 +2013,8,30,11,30,892,179,777,1.2000000000000002,30,23.44,1016,23.5 +2013,8,30,12,30,912,182,780,2,30.3,20.63,1015,23.6 +2013,8,30,13,30,866,177,770,2.8000000000000003,30.3,26.43,1015,23.8 +2013,8,30,14,30,758,165,741,3.4000000000000004,30.3,36.95,1014,24 +2013,8,30,15,30,592,156,667,3.8000000000000003,30,49.2,1014,24.1 +2013,8,30,16,30,392,129,561,4.1000000000000005,29.6,62.08,1013,24.3 +2013,8,30,17,30,182,85,379,4.2,29.400000000000002,75.14,1013,24.400000000000002 +2013,8,30,18,30,14,13,50,4.2,28.700000000000003,87.95,1013,24.6 +2013,8,30,19,30,0,0,0,4.2,28.5,101.01,1014,24.700000000000003 +2013,8,30,20,30,0,0,0,4.2,28.400000000000002,113.25,1014,24.8 +2013,8,30,21,30,0,0,0,4.2,28.3,124.52,1014,24.8 +2013,8,30,22,30,0,0,0,4.2,28.200000000000003,134.03,1013,24.8 +2013,8,30,23,30,0,0,0,4.1000000000000005,28.1,140.44,1013,24.700000000000003 +2013,8,31,0,30,0,0,0,4,28,142.13,1013,24.6 +2013,8,31,1,30,0,0,0,3.7,27.900000000000002,138.52,1013,24.5 +2013,8,31,2,30,0,0,0,3.3000000000000003,27.8,130.75,1013,24.200000000000003 +2013,8,31,3,30,0,0,0,2.8000000000000003,27.700000000000003,120.47,1014,24 +2013,8,31,4,30,0,0,0,2.5,27.6,108.77,1014,23.700000000000003 +2013,8,31,5,30,0,0,0,2.2,27.700000000000003,96.29,1014,23.6 +2013,8,31,6,30,69,40,247,2.1,28.1,83.28,1014,23.6 +2013,8,31,7,30,270,86,548,1.9000000000000001,28.700000000000003,70.29,1015,23.3 +2013,8,31,8,30,487,111,696,1.7000000000000002,29.200000000000003,57.28,1015,23.1 +2013,8,31,9,30,680,121,786,1.4000000000000001,29.700000000000003,44.6,1015,22.8 +2013,8,31,10,30,827,131,829,1.6,30.1,32.87,1014,22.5 +2013,8,31,11,30,915,136,851,2.1,30.400000000000002,23.72,1014,22.5 +2013,8,31,12,30,942,125,875,2.7,30.5,21,1013,22.700000000000003 +2013,8,31,13,30,895,122,865,3.3000000000000003,30.400000000000002,26.76,1012,22.8 +2013,8,31,14,30,783,116,838,3.7,30.200000000000003,37.24,1012,23 +2013,8,31,15,30,618,105,790,3.9000000000000004,30,49.45,1012,23 +2013,8,31,16,30,413,88,700,3.9000000000000004,29.6,62.32,1011,23.1 +2013,8,31,17,30,194,62,521,3.8000000000000003,29.400000000000002,75.37,1011,23.200000000000003 +2013,8,31,18,30,17,14,106,3.6,28.700000000000003,88.18,1012,23.3 +2013,8,31,19,30,0,0,0,3.6,28.5,101.27,1012,23.5 +2013,8,31,20,30,0,0,0,3.8000000000000003,28.400000000000002,113.53,1012,23.700000000000003 +2013,8,31,21,30,0,0,0,4.2,28.3,124.83,1012,24 +2013,8,31,22,30,0,0,0,4.6000000000000005,28.200000000000003,134.37,1012,24.200000000000003 +2013,8,31,23,30,0,0,0,4.800000000000001,28.1,140.81,1012,24.3 +2013,9,1,0,30,0,0,0,4.800000000000001,28,142.49,1012,24.3 +2013,9,1,1,30,0,0,0,4.800000000000001,27.900000000000002,138.81,1012,24.3 +2013,9,1,2,30,0,0,0,4.6000000000000005,27.8,130.99,1012,24.200000000000003 +2013,9,1,3,30,0,0,0,4.3,27.700000000000003,120.65,1012,24 +2013,9,1,4,30,0,0,0,4,27.700000000000003,108.91,1013,23.900000000000002 +2013,9,1,5,30,0,0,0,3.7,27.900000000000002,96.41,1013,23.8 +2013,9,1,6,30,68,37,275,3.6,28.5,83.38,1013,23.8 +2013,9,1,7,30,270,77,576,3.5,29.200000000000003,70.39,1014,23.6 +2013,9,1,8,30,486,99,717,3.2,29.8,57.39,1014,23.400000000000002 +2013,9,1,9,30,680,106,807,2.9000000000000004,30.3,44.74,1014,23.200000000000003 +2013,9,1,10,30,824,115,846,2.8000000000000003,30.700000000000003,33.06,1014,23.1 +2013,9,1,11,30,912,119,868,2.8000000000000003,31,24.01,1013,23.1 +2013,9,1,12,30,936,111,887,3,31.200000000000003,21.37,1013,23.200000000000003 +2013,9,1,13,30,888,109,876,3.3000000000000003,31.200000000000003,27.1,1012,23.200000000000003 +2013,9,1,14,30,776,105,847,3.6,31,37.52,1012,23.400000000000002 +2013,9,1,15,30,609,98,791,3.8000000000000003,30.700000000000003,49.71,1011,23.6 +2013,9,1,16,30,405,82,699,3.9000000000000004,30.400000000000002,62.56,1011,23.900000000000002 +2013,9,1,17,30,187,58,518,4,30.1,75.61,1012,24.200000000000003 +2013,9,1,18,30,15,12,84,4.1000000000000005,29.5,88.41,1012,24.5 +2013,9,1,19,30,0,0,0,4.2,29.200000000000003,101.53,1012,24.900000000000002 +2013,9,1,20,30,0,0,0,4.3,29.1,113.81,1013,25.200000000000003 +2013,9,1,21,30,0,0,0,4.5,28.900000000000002,125.14,1013,25.3 +2013,9,1,22,30,0,0,0,4.6000000000000005,28.8,134.72,1013,25.3 +2013,9,1,23,30,0,0,0,4.7,28.6,141.18,1013,25.400000000000002 +2013,9,2,0,30,0,0,0,4.800000000000001,28.5,142.85,1013,25.400000000000002 +2013,9,2,1,30,0,0,0,4.800000000000001,28.400000000000002,139.11,1013,25.400000000000002 +2013,9,2,2,30,0,0,0,4.7,28.3,131.22,1013,25.3 +2013,9,2,3,30,0,0,0,4.6000000000000005,28.3,120.83,1013,25.200000000000003 +2013,9,2,4,30,0,0,0,4.3,28.200000000000003,109.05,1013,25.200000000000003 +2013,9,2,5,30,0,0,0,4.1000000000000005,28.400000000000002,96.53,1013,25.3 +2013,9,2,6,30,68,34,303,4,28.900000000000002,83.49,1014,25.400000000000002 +2013,9,2,7,30,272,68,611,3.8000000000000003,29.5,70.49,1014,25.400000000000002 +2013,9,2,8,30,487,87,745,3.4000000000000004,30,57.5,1015,25.200000000000003 +2013,9,2,9,30,467,329,194,3,30.5,44.88,1015,24.900000000000002 +2013,9,2,10,30,822,105,857,2.7,30.8,33.25,1015,24.6 +2013,9,2,11,30,908,109,876,2.5,31.1,24.3,1014,24.3 +2013,9,2,12,30,929,108,884,2.5,31.3,21.740000000000002,1014,24.200000000000003 +2013,9,2,13,30,882,106,874,2.9000000000000004,31.400000000000002,27.45,1013,24.200000000000003 +2013,9,2,14,30,770,101,847,3.4000000000000004,31.3,37.81,1012,24.400000000000002 +2013,9,2,15,30,600,103,772,3.9000000000000004,31,49.97,1012,24.8 +2013,9,2,16,30,396,88,675,4.4,30.5,62.81,1012,25.200000000000003 +2013,9,2,17,30,180,62,481,4.5,30.3,75.86,1012,25.5 +2013,9,2,18,30,13,11,65,4.7,29.400000000000002,88.63,1012,25.900000000000002 +2013,9,2,19,30,0,0,0,4.800000000000001,29.200000000000003,101.79,1013,26.3 +2013,9,2,20,30,0,0,0,4.800000000000001,29.1,114.09,1013,26.400000000000002 +2013,9,2,21,30,0,0,0,4.800000000000001,29,125.45,1013,26.400000000000002 +2013,9,2,22,30,0,0,0,4.800000000000001,28.900000000000002,135.06,1013,26.200000000000003 +2013,9,2,23,30,0,0,0,4.800000000000001,28.900000000000002,141.55,1013,26 +2013,9,3,0,30,0,0,0,4.6000000000000005,28.8,143.20000000000002,1013,25.8 +2013,9,3,1,30,0,0,0,4.5,28.700000000000003,139.41,1014,25.700000000000003 +2013,9,3,2,30,0,0,0,4.3,28.5,131.45,1014,25.5 +2013,9,3,3,30,0,0,0,4,28.400000000000002,121.01,1014,25.400000000000002 +2013,9,3,4,30,0,0,0,3.7,28.200000000000003,109.2,1014,25.400000000000002 +2013,9,3,5,30,0,0,0,3.5,28,96.65,1014,25.400000000000002 +2013,9,3,6,30,65,36,258,3.4000000000000004,28.1,83.59,1015,25.400000000000002 +2013,9,3,7,30,265,76,569,3.2,28.400000000000002,70.60000000000001,1015,25.3 +2013,9,3,8,30,480,98,713,2.8000000000000003,28.8,57.620000000000005,1015,24.8 +2013,9,3,9,30,669,111,789,2.3000000000000003,29.400000000000002,45.02,1016,24.3 +2013,9,3,10,30,812,121,828,1.8,29.900000000000002,33.45,1015,23.700000000000003 +2013,9,3,11,30,897,128,846,1.7000000000000002,30.400000000000002,24.6,1015,23.400000000000002 +2013,9,3,12,30,919,124,859,2,30.6,22.12,1014,23.3 +2013,9,3,13,30,871,122,847,2.4000000000000004,30.700000000000003,27.79,1014,23.3 +2013,9,3,14,30,760,115,820,2.8000000000000003,30.700000000000003,38.11,1013,23.5 +2013,9,3,15,30,592,111,751,3.1,30.6,50.24,1012,23.6 +2013,9,3,16,30,388,95,647,3.3000000000000003,30.3,63.06,1012,23.6 +2013,9,3,17,30,158,73,351,3.4000000000000004,30.200000000000003,76.10000000000001,1012,23.8 +2013,9,3,18,30,6,6,0,3.2,29.5,88.86,1013,24.1 +2013,9,3,19,30,0,0,0,3.1,29.3,102.05,1013,24.200000000000003 +2013,9,3,20,30,0,0,0,3,29.200000000000003,114.38,1014,24.3 +2013,9,3,21,30,0,0,0,2.9000000000000004,29.1,125.77,1014,24.400000000000002 +2013,9,3,22,30,0,0,0,3,29,135.42000000000002,1014,24.6 +2013,9,3,23,30,0,0,0,2.9000000000000004,28.8,141.93,1014,24.700000000000003 +2013,9,4,0,30,0,0,0,2.9000000000000004,28.700000000000003,143.57,1014,24.700000000000003 +2013,9,4,1,30,0,0,0,2.6,28.5,139.72,1014,24.8 +2013,9,4,2,30,0,0,0,2.3000000000000003,28.400000000000002,131.68,1014,24.700000000000003 +2013,9,4,3,30,0,0,0,1.9000000000000001,28.200000000000003,121.18,1014,24.6 +2013,9,4,4,30,0,0,0,1.7000000000000002,28.1,109.34,1015,24.6 +2013,9,4,5,30,0,0,0,1.6,28,96.77,1015,24.700000000000003 +2013,9,4,6,30,60,39,194,1.6,28.3,83.69,1016,24.8 +2013,9,4,7,30,255,91,495,1.5,28.8,70.7,1016,24.6 +2013,9,4,8,30,272,227,85,1.4000000000000001,29.200000000000003,57.730000000000004,1017,24.3 +2013,9,4,9,30,303,279,34,1.5,29.5,45.160000000000004,1017,24.200000000000003 +2013,9,4,10,30,592,401,230,1.7000000000000002,29.700000000000003,33.65,1017,24.200000000000003 +2013,9,4,11,30,768,373,436,2,29.900000000000002,24.900000000000002,1017,24.3 +2013,9,4,12,30,789,382,441,2.3000000000000003,29.900000000000002,22.490000000000002,1016,24.3 +2013,9,4,13,30,789,338,512,2.5,29.900000000000002,28.14,1015,24.400000000000002 +2013,9,4,14,30,691,268,541,2.8000000000000003,29.8,38.410000000000004,1015,24.6 +2013,9,4,15,30,586,113,744,3.2,29.700000000000003,50.5,1015,24.700000000000003 +2013,9,4,16,30,384,95,644,3.5,29.5,63.31,1015,24.900000000000002 +2013,9,4,17,30,170,64,449,3.6,29.400000000000002,76.35000000000001,1015,25.1 +2013,9,4,18,30,0,0,0,3.8000000000000003,28.900000000000002,89.08,1016,25.400000000000002 +2013,9,4,19,30,0,0,0,3.9000000000000004,28.8,102.32000000000001,1016,25.5 +2013,9,4,20,30,0,0,0,4,28.8,114.67,1017,25.6 +2013,9,4,21,30,0,0,0,4,28.8,126.08,1017,25.6 +2013,9,4,22,30,0,0,0,3.8000000000000003,28.700000000000003,135.77,1017,25.5 +2013,9,4,23,30,0,0,0,3.5,28.6,142.31,1016,25.400000000000002 +2013,9,5,0,30,0,0,0,3.1,28.5,143.93,1016,25.3 +2013,9,5,1,30,0,0,0,2.8000000000000003,28.400000000000002,140.02,1016,25.200000000000003 +2013,9,5,2,30,0,0,0,2.5,28.3,131.92000000000002,1016,25 +2013,9,5,3,30,0,0,0,2.3000000000000003,28.3,121.36,1016,24.900000000000002 +2013,9,5,4,30,0,0,0,2.3000000000000003,28.200000000000003,109.48,1016,25 +2013,9,5,5,30,0,0,0,2.6,28.200000000000003,96.88,1017,25.1 +2013,9,5,6,30,39,36,32,3.1,28.5,83.8,1017,25.3 +2013,9,5,7,30,260,77,556,3.6,29,70.81,1018,25.400000000000002 +2013,9,5,8,30,474,97,708,4,29.400000000000002,57.85,1018,25.400000000000002 +2013,9,5,9,30,667,105,800,4.2,29.900000000000002,45.300000000000004,1019,25.3 +2013,9,5,10,30,812,109,847,4.4,30.200000000000003,33.85,1019,25.200000000000003 +2013,9,5,11,30,899,111,871,4.5,30.400000000000002,25.2,1018,25.200000000000003 +2013,9,5,12,30,920,112,877,4.6000000000000005,30.5,22.87,1017,25.200000000000003 +2013,9,5,13,30,871,109,867,4.6000000000000005,30.5,28.490000000000002,1017,25.1 +2013,9,5,14,30,758,104,838,4.6000000000000005,30.400000000000002,38.71,1016,25.1 +2013,9,5,15,30,592,94,787,4.4,30.200000000000003,50.77,1016,25.1 +2013,9,5,16,30,387,80,690,4.3,29.900000000000002,63.56,1016,25.1 +2013,9,5,17,30,171,56,495,4.2,29.8,76.60000000000001,1016,25.200000000000003 +2013,9,5,18,30,0,0,0,3.8000000000000003,29.1,89.31,1017,25.400000000000002 +2013,9,5,19,30,0,0,0,3.7,29,102.58,1017,25.6 +2013,9,5,20,30,0,0,0,3.6,28.900000000000002,114.95,1017,25.6 +2013,9,5,21,30,0,0,0,3.5,28.8,126.4,1017,25.6 +2013,9,5,22,30,0,0,0,3.3000000000000003,28.6,136.12,1017,25.5 +2013,9,5,23,30,0,0,0,2.9000000000000004,28.6,142.69,1017,25.400000000000002 +2013,9,6,0,30,0,0,0,2.4000000000000004,28.5,144.29,1017,25.200000000000003 +2013,9,6,1,30,0,0,0,2,28.5,140.32,1016,24.900000000000002 +2013,9,6,2,30,0,0,0,1.8,28.400000000000002,132.15,1016,24.6 +2013,9,6,3,30,0,0,0,2.1,28.1,121.54,1016,24.6 +2013,9,6,4,30,0,0,0,2.6,27.900000000000002,109.62,1017,24.900000000000002 +2013,9,6,5,30,0,0,0,3.3000000000000003,27.8,97,1017,25.200000000000003 +2013,9,6,6,30,61,34,252,4,28.1,83.9,1018,25.5 +2013,9,6,7,30,134,122,38,4.4,28.6,70.91,1018,25.6 +2013,9,6,8,30,67,67,0,4.6000000000000005,29,57.97,1018,25.5 +2013,9,6,9,30,351,306,64,4.800000000000001,29.3,45.45,1018,25.3 +2013,9,6,10,30,46,46,0,4.800000000000001,29.5,34.06,1018,25.3 +2013,9,6,11,30,453,405,53,4.800000000000001,29.6,25.5,1017,25.3 +2013,9,6,12,30,679,453,246,4.7,29.700000000000003,23.25,1017,25.3 +2013,9,6,13,30,787,332,519,4.5,29.6,28.84,1016,25.1 +2013,9,6,14,30,734,144,759,4.3,29.5,39.01,1015,25 +2013,9,6,15,30,586,91,787,4.1000000000000005,29.3,51.050000000000004,1015,25 +2013,9,6,16,30,302,167,306,4,29.1,63.82,1015,25 +2013,9,6,17,30,168,52,510,3.9000000000000004,28.900000000000002,76.85000000000001,1015,25 +2013,9,6,18,30,0,0,0,3.6,28.5,89.53,1015,25.1 +2013,9,6,19,30,0,0,0,3.5,28.3,102.85000000000001,1016,25.200000000000003 +2013,9,6,20,30,0,0,0,3.5,28.3,115.24000000000001,1016,25.3 +2013,9,6,21,30,0,0,0,3.5,28.200000000000003,126.72,1016,25.3 +2013,9,6,22,30,0,0,0,3.5,28.1,136.48,1016,25.3 +2013,9,6,23,30,0,0,0,3.5,28,143.07,1015,25.3 +2013,9,7,0,30,0,0,0,3.3000000000000003,27.900000000000002,144.66,1015,25.3 +2013,9,7,1,30,0,0,0,3.2,27.900000000000002,140.62,1015,25.200000000000003 +2013,9,7,2,30,0,0,0,3,27.8,132.38,1015,25.200000000000003 +2013,9,7,3,30,0,0,0,2.8000000000000003,27.700000000000003,121.71000000000001,1015,25.1 +2013,9,7,4,30,0,0,0,2.7,27.700000000000003,109.76,1015,25.1 +2013,9,7,5,30,0,0,0,2.7,27.8,97.12,1015,25.1 +2013,9,7,6,30,62,30,311,2.8000000000000003,28.200000000000003,84.01,1016,25.200000000000003 +2013,9,7,7,30,265,61,627,2.9000000000000004,28.700000000000003,71.02,1016,25.1 +2013,9,7,8,30,441,149,552,2.9000000000000004,29.1,58.08,1017,25 +2013,9,7,9,30,671,83,840,3,29.3,45.6,1017,24.900000000000002 +2013,9,7,10,30,603,393,254,3.1,29.400000000000002,34.27,1017,24.8 +2013,9,7,11,30,701,427,305,3.3000000000000003,29.400000000000002,25.810000000000002,1016,24.8 +2013,9,7,12,30,629,460,184,3.5,29.3,23.64,1016,24.8 +2013,9,7,13,30,413,375,43,3.7,29.200000000000003,29.2,1015,24.700000000000003 +2013,9,7,14,30,527,369,204,3.7,29,39.32,1015,24.700000000000003 +2013,9,7,15,30,517,209,492,3.8000000000000003,28.700000000000003,51.32,1015,24.700000000000003 +2013,9,7,16,30,78,78,0,3.7,28.400000000000002,64.08,1014,24.6 +2013,9,7,17,30,105,82,103,3.7,28.200000000000003,77.10000000000001,1014,24.6 +2013,9,7,18,30,0,0,0,3.4000000000000004,27.6,89.75,1015,24.8 +2013,9,7,19,30,0,0,0,3.2,27.5,103.12,1015,24.900000000000002 +2013,9,7,20,30,0,0,0,3.1,27.400000000000002,115.53,1015,24.900000000000002 +2013,9,7,21,30,0,0,0,3.1,27.400000000000002,127.04,1015,24.8 +2013,9,7,22,30,0,0,0,3.2,27.400000000000002,136.83,1015,24.8 +2013,9,7,23,30,0,0,0,3.3000000000000003,27.400000000000002,143.45000000000002,1014,24.700000000000003 +2013,9,8,0,30,0,0,0,3.4000000000000004,27.400000000000002,145.02,1014,24.700000000000003 +2013,9,8,1,30,0,0,0,3.6,27.400000000000002,140.92000000000002,1014,24.6 +2013,9,8,2,30,0,0,0,3.7,27.400000000000002,132.61,1013,24.6 +2013,9,8,3,30,0,0,0,3.7,27.3,121.89,1014,24.5 +2013,9,8,4,30,0,0,0,3.6,27.3,109.9,1014,24.5 +2013,9,8,5,30,0,0,0,3.5,27.3,97.24000000000001,1014,24.5 +2013,9,8,6,30,36,34,24,3.5,27.5,84.11,1014,24.6 +2013,9,8,7,30,255,76,555,3.4000000000000004,27.8,71.12,1015,24.700000000000003 +2013,9,8,8,30,410,184,429,3.3000000000000003,28,58.21,1015,24.6 +2013,9,8,9,30,482,319,234,3.3000000000000003,28.200000000000003,45.75,1016,24.6 +2013,9,8,10,30,589,396,234,3.5,28.400000000000002,34.480000000000004,1015,24.6 +2013,9,8,11,30,576,448,142,3.6,28.6,26.12,1015,24.700000000000003 +2013,9,8,12,30,489,427,68,3.8000000000000003,28.700000000000003,24.02,1015,24.700000000000003 +2013,9,8,13,30,169,165,4,3.9000000000000004,28.8,29.560000000000002,1014,24.6 +2013,9,8,14,30,78,78,0,3.9000000000000004,28.700000000000003,39.63,1013,24.400000000000002 +2013,9,8,15,30,238,225,20,3.9000000000000004,28.6,51.6,1013,24.200000000000003 +2013,9,8,16,30,65,65,0,3.8000000000000003,28.5,64.34,1013,24.1 +2013,9,8,17,30,144,65,359,3.7,28.400000000000002,77.36,1013,24 +2013,9,8,18,30,0,0,0,3.7,28,89.97,1014,24.1 +2013,9,8,19,30,0,0,0,3.9000000000000004,28,103.39,1014,24.200000000000003 +2013,9,8,20,30,0,0,0,4.1000000000000005,27.900000000000002,115.82000000000001,1014,24.200000000000003 +2013,9,8,21,30,0,0,0,4.2,27.8,127.36,1014,24.3 +2013,9,8,22,30,0,0,0,4.3,27.6,137.19,1014,24.400000000000002 +2013,9,8,23,30,0,0,0,4.4,27.5,143.84,1014,24.5 +2013,9,9,0,30,0,0,0,4.4,27.400000000000002,145.39000000000001,1014,24.6 +2013,9,9,1,30,0,0,0,4.5,27.200000000000003,141.22,1014,24.6 +2013,9,9,2,30,0,0,0,4.4,27.200000000000003,132.83,1014,24.6 +2013,9,9,3,30,0,0,0,4.4,27.200000000000003,122.06,1014,24.5 +2013,9,9,4,30,0,0,0,4.4,27.400000000000002,110.04,1014,24.400000000000002 +2013,9,9,5,30,0,0,0,4.5,27.6,97.35000000000001,1014,24.400000000000002 +2013,9,9,6,30,57,33,244,4.800000000000001,28.1,84.22,1015,24.5 +2013,9,9,7,30,257,72,573,5.2,28.700000000000003,71.23,1016,24.5 +2013,9,9,8,30,470,96,713,5.5,29.200000000000003,58.33,1016,24.400000000000002 +2013,9,9,9,30,660,110,791,5.7,29.5,45.910000000000004,1016,24.3 +2013,9,9,10,30,803,122,828,5.7,29.700000000000003,34.7,1016,24.200000000000003 +2013,9,9,11,30,730,401,368,5.7,29.700000000000003,26.44,1016,24.1 +2013,9,9,12,30,771,378,432,5.7,29.6,24.41,1016,24.1 +2013,9,9,13,30,606,427,207,5.6000000000000005,29.5,29.92,1015,24 +2013,9,9,14,30,339,311,36,5.5,29.3,39.94,1015,24 +2013,9,9,15,30,463,251,343,5.4,29.1,51.88,1014,24 +2013,9,9,16,30,200,172,65,5.300000000000001,29,64.6,1014,24 +2013,9,9,17,30,64,64,0,5.300000000000001,28.900000000000002,77.61,1014,24.1 +2013,9,9,18,30,0,0,0,5.1000000000000005,28.5,90.19,1015,24.3 +2013,9,9,19,30,0,0,0,5.1000000000000005,28.400000000000002,103.67,1015,24.400000000000002 +2013,9,9,20,30,0,0,0,5.1000000000000005,28.3,116.12,1015,24.5 +2013,9,9,21,30,0,0,0,5.1000000000000005,28.3,127.68,1016,24.5 +2013,9,9,22,30,0,0,0,5,28.200000000000003,137.55,1016,24.5 +2013,9,9,23,30,0,0,0,4.800000000000001,28.1,144.23,1016,24.5 +2013,9,10,0,30,0,0,0,4.7,28.1,145.76,1016,24.400000000000002 +2013,9,10,1,30,0,0,0,4.7,28,141.52,1015,24.3 +2013,9,10,2,30,0,0,0,4.7,28,133.06,1015,24.1 +2013,9,10,3,30,0,0,0,4.800000000000001,27.900000000000002,122.23,1015,23.900000000000002 +2013,9,10,4,30,0,0,0,4.9,27.900000000000002,110.17,1016,23.8 +2013,9,10,5,30,0,0,0,5,28,97.47,1016,23.700000000000003 +2013,9,10,6,30,30,30,0,5.2,28.400000000000002,84.32000000000001,1017,23.700000000000003 +2013,9,10,7,30,35,35,0,5.300000000000001,28.900000000000002,71.34,1017,23.700000000000003 +2013,9,10,8,30,246,215,59,5.4,29.3,58.45,1018,23.700000000000003 +2013,9,10,9,30,426,323,147,5.5,29.6,46.07,1018,23.6 +2013,9,10,10,30,618,383,287,5.5,29.8,34.92,1018,23.700000000000003 +2013,9,10,11,30,603,446,176,5.5,29.8,26.75,1018,23.900000000000002 +2013,9,10,12,30,801,364,481,5.5,29.8,24.79,1017,24.1 +2013,9,10,13,30,349,327,25,5.5,29.8,30.28,1017,24.3 +2013,9,10,14,30,464,364,132,5.4,29.8,40.26,1016,24.5 +2013,9,10,15,30,480,235,399,5.4,29.700000000000003,52.160000000000004,1016,24.6 +2013,9,10,16,30,360,95,622,5.300000000000001,29.5,64.87,1016,24.700000000000003 +2013,9,10,17,30,88,76,58,5.300000000000001,29.400000000000002,77.87,1016,24.8 +2013,9,10,18,30,0,0,0,5.2,28.900000000000002,91.03,1016,24.900000000000002 +2013,9,10,19,30,0,0,0,5.300000000000001,28.8,103.94,1017,25 +2013,9,10,20,30,0,0,0,5.4,28.700000000000003,116.41,1017,24.900000000000002 +2013,9,10,21,30,0,0,0,5.4,28.6,128.01,1017,24.8 +2013,9,10,22,30,0,0,0,5.300000000000001,28.5,137.91,1017,24.6 +2013,9,10,23,30,0,0,0,5.1000000000000005,28.3,144.62,1017,24.400000000000002 +2013,9,11,0,30,0,0,0,5,28.1,146.13,1017,24.3 +2013,9,11,1,30,0,0,0,4.9,27.900000000000002,141.82,1017,24.200000000000003 +2013,9,11,2,30,0,0,0,4.7,27.8,133.29,1017,24.200000000000003 +2013,9,11,3,30,0,0,0,4.6000000000000005,27.700000000000003,122.41,1017,24.200000000000003 +2013,9,11,4,30,0,0,0,4.5,27.6,110.31,1017,24.3 +2013,9,11,5,30,0,0,0,4.6000000000000005,27.700000000000003,97.59,1017,24.400000000000002 +2013,9,11,6,30,52,37,150,4.9,28.1,84.43,1018,24.6 +2013,9,11,7,30,248,92,493,5.2,28.700000000000003,71.45,1018,24.700000000000003 +2013,9,11,8,30,463,119,659,5.300000000000001,29.200000000000003,58.58,1018,24.6 +2013,9,11,9,30,511,303,301,5.5,29.6,46.230000000000004,1018,24.6 +2013,9,11,10,30,563,397,203,5.6000000000000005,29.900000000000002,35.14,1018,24.6 +2013,9,11,11,30,888,131,850,5.7,30.1,27.07,1018,24.6 +2013,9,11,12,30,764,376,430,5.7,30.200000000000003,25.18,1017,24.6 +2013,9,11,13,30,744,334,477,5.6000000000000005,30.1,30.650000000000002,1017,24.5 +2013,9,11,14,30,732,130,792,5.4,29.900000000000002,40.58,1016,24.400000000000002 +2013,9,11,15,30,565,113,743,5.2,29.6,52.45,1016,24.400000000000002 +2013,9,11,16,30,326,127,474,5,29.3,65.14,1016,24.400000000000002 +2013,9,11,17,30,109,73,178,4.9,29.1,78.13,1016,24.5 +2013,9,11,18,30,0,0,0,4.7,28.5,91.29,1016,24.8 +2013,9,11,19,30,0,0,0,4.6000000000000005,28.3,104.21000000000001,1017,25.1 +2013,9,11,20,30,0,0,0,4.6000000000000005,28.200000000000003,116.7,1017,25.3 +2013,9,11,21,30,0,0,0,4.6000000000000005,28.200000000000003,128.33,1017,25.400000000000002 +2013,9,11,22,30,0,0,0,4.4,28.200000000000003,138.27,1017,25.5 +2013,9,11,23,30,0,0,0,4.2,28.200000000000003,145.01,1016,25.400000000000002 +2013,9,12,0,30,0,0,0,4.1000000000000005,28.200000000000003,146.5,1016,25.3 +2013,9,12,1,30,0,0,0,4,28.200000000000003,142.12,1016,25 +2013,9,12,2,30,0,0,0,4,28.200000000000003,133.51,1016,24.8 +2013,9,12,3,30,0,0,0,4.1000000000000005,28.1,122.58,1015,24.700000000000003 +2013,9,12,4,30,0,0,0,4.3,28,110.45,1015,24.6 +2013,9,12,5,30,0,0,0,4.7,27.900000000000002,97.7,1016,24.6 +2013,9,12,6,30,43,32,111,5.1000000000000005,28.1,84.53,1016,24.6 +2013,9,12,7,30,204,111,294,5.4,28.400000000000002,71.56,1017,24.5 +2013,9,12,8,30,383,197,360,5.6000000000000005,28.900000000000002,58.7,1017,24.200000000000003 +2013,9,12,9,30,524,294,334,5.7,29.400000000000002,46.39,1017,23.8 +2013,9,12,10,30,652,360,359,5.7,29.8,35.37,1017,23.6 +2013,9,12,11,30,898,119,877,5.6000000000000005,30.1,27.39,1016,23.400000000000002 +2013,9,12,12,30,811,356,504,5.4,30.200000000000003,25.57,1015,23.400000000000002 +2013,9,12,13,30,728,340,452,5.300000000000001,30.200000000000003,31.02,1014,23.400000000000002 +2013,9,12,14,30,749,102,856,5.300000000000001,30,40.9,1014,23.400000000000002 +2013,9,12,15,30,577,93,799,5.2,29.8,52.74,1013,23.400000000000002 +2013,9,12,16,30,366,78,692,5.1000000000000005,29.400000000000002,65.41,1013,23.6 +2013,9,12,17,30,147,52,471,5,29.200000000000003,78.39,1013,23.700000000000003 +2013,9,12,18,30,0,0,0,4.5,28.400000000000002,91.55,1013,24 +2013,9,12,19,30,0,0,0,4.3,28.200000000000003,104.49000000000001,1014,24.3 +2013,9,12,20,30,0,0,0,4.2,28.1,117,1014,24.400000000000002 +2013,9,12,21,30,0,0,0,4.1000000000000005,28.1,128.66,1014,24.400000000000002 +2013,9,12,22,30,0,0,0,4.1000000000000005,28.1,138.64000000000001,1014,24.400000000000002 +2013,9,12,23,30,0,0,0,4,28.200000000000003,145.4,1013,24.3 +2013,9,13,0,30,0,0,0,3.9000000000000004,28.3,146.87,1013,24.200000000000003 +2013,9,13,1,30,0,0,0,3.8000000000000003,28.3,142.41,1013,24.1 +2013,9,13,2,30,0,0,0,3.7,28.200000000000003,133.73,1013,24 +2013,9,13,3,30,0,0,0,3.6,28,122.75,1012,24 +2013,9,13,4,30,0,0,0,3.6,27.6,110.58,1012,24.1 +2013,9,13,5,30,0,0,0,3.8000000000000003,27.5,97.82000000000001,1013,24.200000000000003 +2013,9,13,6,30,53,32,222,4.1000000000000005,27.8,84.64,1013,24.400000000000002 +2013,9,13,7,30,254,77,562,4.5,28.5,71.67,1013,24.5 +2013,9,13,8,30,471,100,717,4.6000000000000005,29.3,58.83,1013,24.200000000000003 +2013,9,13,9,30,663,117,793,4.7,30,46.550000000000004,1013,23.8 +2013,9,13,10,30,808,125,840,4.800000000000001,30.5,35.6,1013,23.5 +2013,9,13,11,30,895,129,865,4.800000000000001,30.8,27.72,1012,23.3 +2013,9,13,12,30,909,134,861,4.9,31,25.96,1012,23.200000000000003 +2013,9,13,13,30,858,130,852,5,30.900000000000002,31.38,1011,23.200000000000003 +2013,9,13,14,30,740,122,821,5,30.700000000000003,41.22,1010,23.200000000000003 +2013,9,13,15,30,571,105,774,5,30.5,53.03,1010,23.3 +2013,9,13,16,30,360,87,664,4.9,30.1,65.68,1010,23.400000000000002 +2013,9,13,17,30,141,56,436,4.9,29.8,78.65,1010,23.5 +2013,9,13,18,30,0,0,0,4.7,29,91.82000000000001,1010,23.900000000000002 +2013,9,13,19,30,0,0,0,4.800000000000001,28.700000000000003,104.76,1011,24.200000000000003 +2013,9,13,20,30,0,0,0,4.800000000000001,28.5,117.29,1011,24.400000000000002 +2013,9,13,21,30,0,0,0,4.7,28.400000000000002,128.98,1011,24.400000000000002 +2013,9,13,22,30,0,0,0,4.4,28.200000000000003,139,1011,24.3 +2013,9,13,23,30,0,0,0,4,28.1,145.79,1011,24.1 +2013,9,14,0,30,0,0,0,3.7,28,147.24,1011,23.900000000000002 +2013,9,14,1,30,0,0,0,3.4000000000000004,27.900000000000002,142.71,1011,23.700000000000003 +2013,9,14,2,30,0,0,0,3.4000000000000004,27.8,133.96,1011,23.6 +2013,9,14,3,30,0,0,0,3.7,27.700000000000003,122.92,1011,23.6 +2013,9,14,4,30,0,0,0,4.1000000000000005,27.6,110.72,1011,23.8 +2013,9,14,5,30,0,0,0,4.5,27.6,97.93,1012,24 +2013,9,14,6,30,49,33,168,4.9,27.900000000000002,84.75,1012,24.3 +2013,9,14,7,30,244,85,507,5.1000000000000005,28.5,71.79,1012,24.3 +2013,9,14,8,30,457,112,668,5,29,58.96,1013,24.3 +2013,9,14,9,30,640,139,731,4.9,29.400000000000002,46.72,1013,24.3 +2013,9,14,10,30,781,152,776,4.800000000000001,29.8,35.83,1013,24.3 +2013,9,14,11,30,862,161,794,4.9,30,28.05,1013,24.400000000000002 +2013,9,14,12,30,878,158,803,4.9,30.1,26.35,1012,24.3 +2013,9,14,13,30,824,157,785,5,30.1,31.75,1012,24.3 +2013,9,14,14,30,707,148,747,5.1000000000000005,30,41.54,1011,24.3 +2013,9,14,15,30,536,138,666,5.1000000000000005,29.700000000000003,53.32,1011,24.200000000000003 +2013,9,14,16,30,333,112,541,5.2,29.400000000000002,65.95,1012,24.1 +2013,9,14,17,30,125,66,304,5.1000000000000005,29.200000000000003,78.92,1012,24.1 +2013,9,14,18,30,0,0,0,4.9,28.6,92.09,1012,24.1 +2013,9,14,19,30,0,0,0,5.1000000000000005,28.400000000000002,105.04,1013,24.200000000000003 +2013,9,14,20,30,0,0,0,5.5,28.3,117.59,1013,24.3 +2013,9,14,21,30,0,0,0,5.9,28.200000000000003,129.31,1013,24.400000000000002 +2013,9,14,22,30,0,0,0,6,28.1,139.36,1013,24.400000000000002 +2013,9,14,23,30,0,0,0,6.1000000000000005,28,146.18,1013,24.5 +2013,9,15,0,30,0,0,0,6.1000000000000005,27.900000000000002,147.61,1013,24.5 +2013,9,15,1,30,0,0,0,6.2,27.8,143.01,1013,24.6 +2013,9,15,2,30,0,0,0,6.1000000000000005,27.700000000000003,134.18,1013,24.6 +2013,9,15,3,30,0,0,0,6,27.700000000000003,123.08,1013,24.6 +2013,9,15,4,30,0,0,0,5.9,27.700000000000003,110.85000000000001,1013,24.700000000000003 +2013,9,15,5,30,0,0,0,5.7,27.8,98.05,1014,24.700000000000003 +2013,9,15,6,30,34,30,40,5.7,28.200000000000003,84.85000000000001,1014,24.8 +2013,9,15,7,30,191,113,249,5.9,28.8,71.9,1015,24.8 +2013,9,15,8,30,376,196,351,6,29.400000000000002,59.09,1015,24.700000000000003 +2013,9,15,9,30,505,299,302,6,29.8,46.89,1015,24.700000000000003 +2013,9,15,10,30,671,327,425,6.1000000000000005,30.200000000000003,36.06,1015,24.700000000000003 +2013,9,15,11,30,682,418,301,6.1000000000000005,30.400000000000002,28.38,1015,24.700000000000003 +2013,9,15,12,30,782,356,476,6.2,30.400000000000002,26.75,1015,24.8 +2013,9,15,13,30,688,378,367,6.300000000000001,30.400000000000002,32.13,1014,24.8 +2013,9,15,14,30,464,355,146,6.300000000000001,30.3,41.87,1014,24.900000000000002 +2013,9,15,15,30,450,234,364,6.5,30,53.61,1014,25 +2013,9,15,16,30,280,145,334,6.7,29.700000000000003,66.22,1014,25.200000000000003 +2013,9,15,17,30,93,67,137,6.800000000000001,29.5,79.18,1014,25.400000000000002 +2013,9,15,18,30,0,0,0,6.5,29.200000000000003,92.35000000000001,1015,25.5 +2013,9,15,19,30,0,0,0,6.4,29.1,105.32000000000001,1015,25.6 +2013,9,15,20,30,0,0,0,6.5,29,117.88,1016,25.6 +2013,9,15,21,30,0,0,0,6.9,28.900000000000002,129.63,1016,25.5 +2013,9,15,22,30,0,0,0,7.300000000000001,28.8,139.73,1015,25.3 +2013,9,15,23,30,0,0,0,7.4,28.700000000000003,146.58,1015,25.1 +2013,9,16,0,30,0,0,0,7.2,28.5,147.98,1015,24.900000000000002 +2013,9,16,1,30,0,0,0,6.800000000000001,28.3,143.3,1015,24.8 +2013,9,16,2,30,0,0,0,6.300000000000001,28.1,134.4,1015,24.6 +2013,9,16,3,30,0,0,0,5.7,28,123.25,1015,24.6 +2013,9,16,4,30,0,0,0,5.2,28,110.98,1015,24.6 +2013,9,16,5,30,0,0,0,4.9,28,98.16,1015,24.700000000000003 +2013,9,16,6,30,29,29,3,4.9,28.400000000000002,84.96000000000001,1016,24.700000000000003 +2013,9,16,7,30,186,114,235,5,29,72.01,1016,24.700000000000003 +2013,9,16,8,30,346,211,263,5.2,29.5,59.230000000000004,1016,24.700000000000003 +2013,9,16,9,30,491,303,276,5.300000000000001,29.900000000000002,47.06,1017,24.700000000000003 +2013,9,16,10,30,616,371,304,5.6000000000000005,30.1,36.300000000000004,1017,24.700000000000003 +2013,9,16,11,30,604,437,191,5.800000000000001,30.3,28.71,1016,24.700000000000003 +2013,9,16,12,30,688,426,294,5.9,30.3,27.14,1016,24.700000000000003 +2013,9,16,13,30,662,389,324,6.1000000000000005,30.200000000000003,32.5,1015,24.6 +2013,9,16,14,30,470,353,157,6.2,30.1,42.2,1015,24.6 +2013,9,16,15,30,371,263,183,6.300000000000001,29.8,53.9,1014,24.6 +2013,9,16,16,30,269,148,306,6.300000000000001,29.6,66.5,1014,24.8 +2013,9,16,17,30,100,63,200,6.300000000000001,29.400000000000002,79.44,1014,25 +2013,9,16,18,30,0,0,0,6,28.900000000000002,92.62,1015,25.3 +2013,9,16,19,30,0,0,0,5.9,28.700000000000003,105.59,1016,25.6 +2013,9,16,20,30,0,0,0,5.9,28.6,118.18,1016,25.8 +2013,9,16,21,30,0,0,0,5.9,28.6,129.96,1016,25.8 +2013,9,16,22,30,0,0,0,5.800000000000001,28.5,140.09,1016,25.700000000000003 +2013,9,16,23,30,0,0,0,5.7,28.5,146.97,1016,25.6 +2013,9,17,0,30,0,0,0,5.5,28.400000000000002,148.35,1016,25.400000000000002 +2013,9,17,1,30,0,0,0,5.300000000000001,28.3,143.6,1016,25.3 +2013,9,17,2,30,0,0,0,5.2,28.200000000000003,134.62,1015,25.1 +2013,9,17,3,30,0,0,0,5,28.1,123.41,1015,25 +2013,9,17,4,30,0,0,0,4.800000000000001,27.900000000000002,111.11,1015,25 +2013,9,17,5,30,0,0,0,4.7,27.900000000000002,98.28,1016,25 +2013,9,17,6,30,46,31,179,4.800000000000001,28.200000000000003,85.07000000000001,1016,25.1 +2013,9,17,7,30,243,74,552,5,28.6,72.13,1017,25.200000000000003 +2013,9,17,8,30,458,96,711,5.300000000000001,29,59.36,1017,25.1 +2013,9,17,9,30,521,286,346,5.5,29.3,47.230000000000004,1017,25 +2013,9,17,10,30,793,114,845,5.7,29.5,36.54,1017,24.8 +2013,9,17,11,30,876,117,868,5.6000000000000005,29.6,29.04,1017,24.700000000000003 +2013,9,17,12,30,889,123,864,5.4,29.6,27.54,1016,24.6 +2013,9,17,13,30,731,319,490,5.2,29.5,32.87,1015,24.6 +2013,9,17,14,30,584,313,368,5,29.400000000000002,42.53,1015,24.5 +2013,9,17,15,30,463,215,424,4.9,29.200000000000003,54.2,1014,24.400000000000002 +2013,9,17,16,30,233,159,189,4.7,28.900000000000002,66.77,1014,24.5 +2013,9,17,17,30,64,61,17,4.6000000000000005,28.700000000000003,79.71000000000001,1014,24.6 +2013,9,17,18,30,0,0,0,4.1000000000000005,28.1,92.89,1015,24.8 +2013,9,17,19,30,0,0,0,4,28,105.87,1015,25 +2013,9,17,20,30,0,0,0,3.9000000000000004,27.900000000000002,118.47,1015,25 +2013,9,17,21,30,0,0,0,3.9000000000000004,27.900000000000002,130.28,1015,25.1 +2013,9,17,22,30,0,0,0,4,27.900000000000002,140.46,1015,25.1 +2013,9,17,23,30,0,0,0,4,27.900000000000002,147.37,1015,25.1 +2013,9,18,0,30,0,0,0,4.1000000000000005,27.900000000000002,148.73,1015,25.1 +2013,9,18,1,30,0,0,0,4.3,27.8,143.89000000000001,1015,25.200000000000003 +2013,9,18,2,30,0,0,0,4.4,27.700000000000003,134.83,1015,25.1 +2013,9,18,3,30,0,0,0,4.4,27.700000000000003,123.58,1014,25 +2013,9,18,4,30,0,0,0,4.3,27.6,111.25,1014,25 +2013,9,18,5,30,0,0,0,4.3,27.6,98.39,1015,25 +2013,9,18,6,30,33,28,56,4.6000000000000005,28,85.17,1015,25.1 +2013,9,18,7,30,179,114,214,4.800000000000001,28.400000000000002,72.25,1015,25.200000000000003 +2013,9,18,8,30,379,188,376,4.9,28.8,59.5,1015,25.1 +2013,9,18,9,30,536,274,387,5,29.200000000000003,47.410000000000004,1016,25 +2013,9,18,10,30,655,341,392,4.9,29.400000000000002,36.78,1015,24.900000000000002 +2013,9,18,11,30,766,340,489,4.9,29.6,29.38,1015,24.900000000000002 +2013,9,18,12,30,791,344,506,4.9,29.700000000000003,27.93,1014,24.900000000000002 +2013,9,18,13,30,712,328,460,5,29.8,33.25,1014,24.900000000000002 +2013,9,18,14,30,489,347,194,5.1000000000000005,29.8,42.86,1013,24.900000000000002 +2013,9,18,15,30,262,236,45,5.2,29.6,54.5,1013,25 +2013,9,18,16,30,193,158,90,5.5,29.3,67.05,1012,25.1 +2013,9,18,17,30,111,60,294,5.6000000000000005,29.200000000000003,79.98,1013,25.3 +2013,9,18,18,30,0,0,0,6,28.6,93.16,1013,25.5 +2013,9,18,19,30,0,0,0,6.2,28.5,106.15,1013,25.700000000000003 +2013,9,18,20,30,0,0,0,6.300000000000001,28.5,118.77,1014,25.8 +2013,9,18,21,30,0,0,0,6.4,28.5,130.61,1014,25.8 +2013,9,18,22,30,0,0,0,6.4,28.5,140.82,1014,25.700000000000003 +2013,9,18,23,30,0,0,0,6.300000000000001,28.5,147.76,1013,25.6 +2013,9,19,0,30,0,0,0,6.2,28.400000000000002,149.1,1013,25.5 +2013,9,19,1,30,0,0,0,6.1000000000000005,28.3,144.19,1013,25.400000000000002 +2013,9,19,2,30,0,0,0,5.9,28.200000000000003,135.05,1013,25.3 +2013,9,19,3,30,0,0,0,5.7,28.200000000000003,123.74000000000001,1013,25.3 +2013,9,19,4,30,0,0,0,5.5,28.1,111.38,1013,25.3 +2013,9,19,5,30,0,0,0,5.4,28.200000000000003,98.51,1013,25.200000000000003 +2013,9,19,6,30,33,28,57,5.4,28.400000000000002,85.28,1013,25.3 +2013,9,19,7,30,235,74,533,5.5,28.900000000000002,72.36,1013,25.3 +2013,9,19,8,30,446,98,690,5.5,29.3,59.64,1014,25.200000000000003 +2013,9,19,9,30,522,281,357,5.5,29.5,47.59,1014,25.200000000000003 +2013,9,19,10,30,772,121,816,5.6000000000000005,29.6,37.03,1014,25.3 +2013,9,19,11,30,851,127,833,5.7,29.6,29.71,1014,25.400000000000002 +2013,9,19,12,30,759,353,461,5.7,29.5,28.330000000000002,1013,25.5 +2013,9,19,13,30,492,403,107,5.7,29.3,33.63,1012,25.6 +2013,9,19,14,30,229,222,10,5.6000000000000005,29.1,43.19,1012,25.700000000000003 +2013,9,19,15,30,421,236,321,5.5,29,54.79,1012,25.8 +2013,9,19,16,30,268,136,343,5.5,28.8,67.33,1012,25.900000000000002 +2013,9,19,17,30,112,48,377,5.5,28.700000000000003,80.24,1012,26.1 +2013,9,19,18,30,0,0,0,5.800000000000001,28.5,93.42,1012,26.200000000000003 +2013,9,19,19,30,0,0,0,6,28.5,106.42,1012,26.200000000000003 +2013,9,19,20,30,0,0,0,6.2,28.5,119.06,1013,26.3 +2013,9,19,21,30,0,0,0,6.2,28.5,130.93,1013,26.3 +2013,9,19,22,30,0,0,0,6.300000000000001,28.400000000000002,141.19,1013,26.3 +2013,9,19,23,30,0,0,0,6.4,28.400000000000002,148.16,1012,26.400000000000002 +2013,9,20,0,30,0,0,0,6.5,28.400000000000002,149.47,1012,26.400000000000002 +2013,9,20,1,30,0,0,0,6.7,28.3,144.48,1011,26.5 +2013,9,20,2,30,0,0,0,6.7,28.3,135.26,1011,26.5 +2013,9,20,3,30,0,0,0,6.7,28.200000000000003,123.9,1011,26.6 +2013,9,20,4,30,0,0,0,6.6000000000000005,28.200000000000003,111.51,1011,26.5 +2013,9,20,5,30,0,0,0,6.4,28.200000000000003,98.63,1011,26.5 +2013,9,20,6,30,13,13,0,6.300000000000001,28.3,85.39,1011,26.400000000000002 +2013,9,20,7,30,62,62,0,6.2,28.5,72.48,1012,26.400000000000002 +2013,9,20,8,30,394,172,441,6.1000000000000005,28.6,59.78,1012,26.5 +2013,9,20,9,30,322,286,53,6.1000000000000005,28.8,47.77,1012,26.6 +2013,9,20,10,30,478,384,119,6.1000000000000005,28.900000000000002,37.28,1012,26.6 +2013,9,20,11,30,663,414,288,6.1000000000000005,28.900000000000002,30.05,1011,26.6 +2013,9,20,12,30,639,433,236,6.2,28.900000000000002,28.73,1010,26.700000000000003 +2013,9,20,13,30,489,401,106,6.300000000000001,28.900000000000002,34,1009,26.700000000000003 +2013,9,20,14,30,268,255,18,6.300000000000001,28.8,43.52,1009,26.6 +2013,9,20,15,30,205,197,14,6.5,28.8,55.09,1008,26.6 +2013,9,20,16,30,174,151,61,6.9,28.700000000000003,67.6,1007,26.6 +2013,9,20,17,30,73,59,89,7.2,28.6,80.51,1007,26.6 +2013,9,20,18,30,0,0,0,7.1000000000000005,28.5,93.69,1007,26.6 +2013,9,20,19,30,0,0,0,6.7,28.5,106.7,1007,26.6 +2013,9,20,20,30,0,0,0,6.4,28.400000000000002,119.36,1008,26.8 +2013,9,20,21,30,0,0,0,6.1000000000000005,28.200000000000003,131.25,1008,26.900000000000002 +2013,9,20,22,30,0,0,0,5.9,27.900000000000002,141.55,1008,26.900000000000002 +2013,9,20,23,30,0,0,0,5.7,27.700000000000003,148.56,1008,26.900000000000002 +2013,9,21,0,30,0,0,0,5.4,27.5,149.84,1007,26.8 +2013,9,21,1,30,0,0,0,5.1000000000000005,27.3,144.77,1007,26.6 +2013,9,21,2,30,0,0,0,4.800000000000001,27,135.47,1007,26.5 +2013,9,21,3,30,0,0,0,4.4,26.8,124.06,1007,26.3 +2013,9,21,4,30,0,0,0,4.1000000000000005,26.5,111.64,1007,26 +2013,9,21,5,30,0,0,0,3.8000000000000003,26.1,98.74000000000001,1007,25.6 +2013,9,21,6,30,19,19,0,3.7,25.6,85.5,1008,25 +2013,9,21,7,30,4,4,0,4.4,25.1,72.60000000000001,1008,24.400000000000002 +2013,9,21,8,30,132,132,0,5.800000000000001,24.700000000000003,59.92,1009,24 +2013,9,21,9,30,84,84,0,7.1000000000000005,24.5,47.95,1009,23.5 +2013,9,21,10,30,43,43,0,8.200000000000001,24.400000000000002,37.53,1010,23.200000000000003 +2013,9,21,11,30,193,187,7,8.9,24.400000000000002,30.400000000000002,1010,22.900000000000002 +2013,9,21,12,30,253,243,12,9.3,24.400000000000002,29.12,1009,22.5 +2013,9,21,13,30,370,341,36,9.1,24.5,34.38,1009,22.200000000000003 +2013,9,21,14,30,304,282,30,8.6,24.5,43.86,1008,22 +2013,9,21,15,30,71,71,0,7.9,24.6,55.39,1008,21.900000000000002 +2013,9,21,16,30,25,25,0,7.300000000000001,24.6,67.88,1008,22.1 +2013,9,21,17,30,9,9,0,7.1000000000000005,24.6,80.77,1008,22.3 +2013,9,21,18,30,0,0,0,6.800000000000001,24.6,93.96000000000001,1008,22.3 +2013,9,21,19,30,0,0,0,6.9,24.6,106.97,1009,22.400000000000002 +2013,9,21,20,30,0,0,0,7,24.6,119.65,1009,22.400000000000002 +2013,9,21,21,30,0,0,0,7,24.6,131.58,1009,22.200000000000003 +2013,9,21,22,30,0,0,0,7.1000000000000005,24.6,141.92000000000002,1008,22.1 +2013,9,21,23,30,0,0,0,7.4,24.5,148.96,1008,21.900000000000002 +2013,9,22,0,30,0,0,0,7.800000000000001,24.3,150.21,1008,21.700000000000003 +2013,9,22,1,30,0,0,0,8.3,24,145.06,1008,21.5 +2013,9,22,2,30,0,0,0,8.6,23.700000000000003,135.69,1008,21.200000000000003 +2013,9,22,3,30,0,0,0,8.6,23.5,124.22,1008,20.900000000000002 +2013,9,22,4,30,0,0,0,8.4,23.200000000000003,111.77,1008,20.6 +2013,9,22,5,30,0,0,0,8.3,23,98.86,1008,20.5 +2013,9,22,6,30,11,11,0,8.3,23.1,85.61,1009,20.400000000000002 +2013,9,22,7,30,81,81,0,8.4,23.5,72.72,1009,20.3 +2013,9,22,8,30,147,147,0,8.4,24.1,60.07,1009,20.200000000000003 +2013,9,22,9,30,289,266,34,8.4,24.6,48.14,1009,20 +2013,9,22,10,30,183,179,5,8.3,25,37.78,1009,19.900000000000002 +2013,9,22,11,30,545,427,138,8.3,25.400000000000002,30.740000000000002,1009,20 +2013,9,22,12,30,470,408,71,8.200000000000001,25.900000000000002,29.52,1008,20 +2013,9,22,13,30,134,134,0,8.200000000000001,26.3,34.76,1007,20 +2013,9,22,14,30,205,200,7,8.200000000000001,26.6,44.19,1007,19.900000000000002 +2013,9,22,15,30,318,250,120,8.200000000000001,26.6,55.69,1006,19.900000000000002 +2013,9,22,16,30,80,80,0,8,26.400000000000002,68.16,1007,20.1 +2013,9,22,17,30,33,33,0,7.800000000000001,26.200000000000003,81.04,1007,20.6 +2013,9,22,18,30,0,0,0,7.6000000000000005,25.5,94.23,1007,20.700000000000003 +2013,9,22,19,30,0,0,0,7.5,25.3,107.25,1008,20.8 +2013,9,22,20,30,0,0,0,7.4,25.1,119.94,1008,20.900000000000002 +2013,9,22,21,30,0,0,0,7.300000000000001,25,131.9,1008,20.900000000000002 +2013,9,22,22,30,0,0,0,7.300000000000001,25,142.28,1008,21 +2013,9,22,23,30,0,0,0,7.5,25,149.35,1008,21.3 +2013,9,23,0,30,0,0,0,7.6000000000000005,25.1,150.59,1007,21.8 +2013,9,23,1,30,0,0,0,7.6000000000000005,25.1,145.34,1007,22.3 +2013,9,23,2,30,0,0,0,7.5,25.1,135.89000000000001,1007,22.700000000000003 +2013,9,23,3,30,0,0,0,7.4,25,124.38000000000001,1007,23.1 +2013,9,23,4,30,0,0,0,7.300000000000001,25,111.9,1007,23.400000000000002 +2013,9,23,5,30,0,0,0,7.2,25,98.97,1007,23.400000000000002 +2013,9,23,6,30,10,10,0,7.2,25.200000000000003,85.72,1007,23.400000000000002 +2013,9,23,7,30,227,74,520,7.2,25.6,72.85000000000001,1008,23.6 +2013,9,23,8,30,438,99,681,7,26.1,60.21,1008,23.8 +2013,9,23,9,30,283,262,32,6.9,26.700000000000003,48.33,1008,24 +2013,9,23,10,30,431,367,81,6.7,27.200000000000003,38.04,1008,24.3 +2013,9,23,11,30,504,417,101,6.5,27.6,31.080000000000002,1008,24.700000000000003 +2013,9,23,12,30,592,434,183,6.4,28,29.92,1007,25 +2013,9,23,13,30,650,370,342,6.1000000000000005,28.3,35.14,1007,25.200000000000003 +2013,9,23,14,30,456,338,165,5.9,28.400000000000002,44.53,1006,25.3 +2013,9,23,15,30,150,150,0,5.7,28.400000000000002,55.99,1006,25.400000000000002 +2013,9,23,16,30,235,140,259,5.5,28.3,68.44,1006,25.6 +2013,9,23,17,30,93,50,287,5.4,28.200000000000003,81.31,1006,25.8 +2013,9,23,18,30,0,0,0,5.1000000000000005,27.6,94.49,1007,25.900000000000002 +2013,9,23,19,30,0,0,0,5,27.5,107.52,1007,26 +2013,9,23,20,30,0,0,0,4.800000000000001,27.5,120.23,1008,26.1 +2013,9,23,21,30,0,0,0,4.5,27.400000000000002,132.22,1008,26.200000000000003 +2013,9,23,22,30,0,0,0,4.1000000000000005,27.400000000000002,142.64000000000001,1008,26.200000000000003 +2013,9,23,23,30,0,0,0,3.7,27.400000000000002,149.75,1008,26.3 +2013,9,24,0,30,0,0,0,3.3000000000000003,27.400000000000002,150.96,1008,26.3 +2013,9,24,1,30,0,0,0,2.8000000000000003,27.3,145.63,1008,26.3 +2013,9,24,2,30,0,0,0,2.5,27.200000000000003,136.1,1008,26.3 +2013,9,24,3,30,0,0,0,2.1,27.1,124.54,1008,26.200000000000003 +2013,9,24,4,30,0,0,0,1.8,26.900000000000002,112.03,1008,26.200000000000003 +2013,9,24,5,30,0,0,0,1.5,26.900000000000002,99.09,1008,26.1 +2013,9,24,6,30,41,23,239,1.5,27.1,85.83,1009,26.1 +2013,9,24,7,30,238,56,620,1.6,27.5,72.97,1010,26.200000000000003 +2013,9,24,8,30,453,70,774,1.6,28.1,60.36,1010,26.3 +2013,9,24,9,30,640,83,842,1.8,28.5,48.52,1010,26.200000000000003 +2013,9,24,10,30,781,88,882,2,28.8,38.300000000000004,1010,26 +2013,9,24,11,30,861,92,901,2.2,29.1,31.43,1010,25.900000000000002 +2013,9,24,12,30,868,103,886,2.3000000000000003,29.3,30.32,1009,25.700000000000003 +2013,9,24,13,30,808,106,864,2.2,29.400000000000002,35.52,1009,25.700000000000003 +2013,9,24,14,30,686,104,820,2.2,29.5,44.86,1008,25.6 +2013,9,24,15,30,513,91,762,2.2,29.5,56.29,1008,25.5 +2013,9,24,16,30,304,77,624,2.2,29.3,68.72,1008,25.400000000000002 +2013,9,24,17,30,95,44,342,2.2,29.200000000000003,81.57000000000001,1008,25.400000000000002 +2013,9,24,18,30,0,0,0,2.2,28.3,94.76,1009,25.400000000000002 +2013,9,24,19,30,0,0,0,2.2,28,107.79,1009,25.1 +2013,9,24,20,30,0,0,0,2.1,27.8,120.52,1010,24.8 +2013,9,24,21,30,0,0,0,1.9000000000000001,27.5,132.54,1010,24.5 +2013,9,24,22,30,0,0,0,1.5,27.3,143,1010,24.200000000000003 +2013,9,24,23,30,0,0,0,1,27.1,150.15,1010,23.900000000000002 +2013,9,25,0,30,0,0,0,0.7000000000000001,26.900000000000002,151.33,1010,23.6 +2013,9,25,1,30,0,0,0,0.7000000000000001,26.700000000000003,145.91,1010,23.400000000000002 +2013,9,25,2,30,0,0,0,1.2000000000000002,26.5,136.31,1010,23.200000000000003 +2013,9,25,3,30,0,0,0,1.8,26.3,124.7,1010,23.200000000000003 +2013,9,25,4,30,0,0,0,2.3000000000000003,26,112.16,1010,23.400000000000002 +2013,9,25,5,30,0,0,0,2.7,25.700000000000003,99.2,1010,23.400000000000002 +2013,9,25,6,30,43,24,272,3,25.900000000000002,85.94,1011,23.3 +2013,9,25,7,30,250,60,651,3.2,26.400000000000002,73.10000000000001,1012,23.1 +2013,9,25,8,30,472,78,801,3.1,27.1,60.51,1012,22.900000000000002 +2013,9,25,9,30,670,88,881,2.9000000000000004,28.200000000000003,48.71,1012,22.8 +2013,9,25,10,30,815,96,920,2.6,29.1,38.56,1012,22 +2013,9,25,11,30,897,100,938,2.2,29.6,31.78,1011,21.3 +2013,9,25,12,30,907,102,937,1.7000000000000002,29.900000000000002,30.72,1011,21.1 +2013,9,25,13,30,847,100,922,1.2000000000000002,30.1,35.89,1010,20.5 +2013,9,25,14,30,720,96,886,0.7000000000000001,30.200000000000003,45.2,1010,19.8 +2013,9,25,15,30,538,86,820,0.5,30.200000000000003,56.6,1009,19.400000000000002 +2013,9,25,16,30,320,71,695,0.9,29.8,69,1009,19.8 +2013,9,25,17,30,100,41,413,1.3,29.5,81.84,1009,20.700000000000003 +2013,9,25,18,30,0,0,0,2.6,28.1,95.02,1009,21.3 +2013,9,25,19,30,0,0,0,3.1,27.6,108.07000000000001,1010,21.6 +2013,9,25,20,30,0,0,0,3.5,27.400000000000002,120.81,1010,21.900000000000002 +2013,9,25,21,30,0,0,0,3.6,27.200000000000003,132.85,1010,22 +2013,9,25,22,30,0,0,0,3.6,27.1,143.36,1010,21.900000000000002 +2013,9,25,23,30,0,0,0,3.5,27,150.55,1010,21.6 +2013,9,26,0,30,0,0,0,3.3000000000000003,26.900000000000002,151.70000000000002,1010,21.200000000000003 +2013,9,26,1,30,0,0,0,3.2,26.700000000000003,146.20000000000002,1010,21 +2013,9,26,2,30,0,0,0,3,26.6,136.51,1010,20.900000000000002 +2013,9,26,3,30,0,0,0,2.8000000000000003,26.5,124.85000000000001,1011,20.900000000000002 +2013,9,26,4,30,0,0,0,2.5,26.400000000000002,112.29,1011,21 +2013,9,26,5,30,0,0,0,2.1,26.400000000000002,99.32000000000001,1011,21 +2013,9,26,6,30,41,23,266,1.6,26.8,86.05,1012,20.900000000000002 +2013,9,26,7,30,247,60,646,1.3,27.6,73.22,1013,21.200000000000003 +2013,9,26,8,30,470,78,800,1.3,28.3,60.660000000000004,1013,20.900000000000002 +2013,9,26,9,30,664,87,878,1.6,29,48.910000000000004,1013,20.400000000000002 +2013,9,26,10,30,809,93,918,2.2,29.3,38.83,1013,20.3 +2013,9,26,11,30,890,96,937,2.7,29.5,32.13,1013,20.700000000000003 +2013,9,26,12,30,899,97,937,3.2,29.5,31.11,1012,21 +2013,9,26,13,30,839,95,922,3.6,29.5,36.27,1012,21.1 +2013,9,26,14,30,711,91,886,3.8000000000000003,29.400000000000002,45.54,1011,21.1 +2013,9,26,15,30,529,83,817,4,29.200000000000003,56.9,1011,21.200000000000003 +2013,9,26,16,30,186,142,123,4,28.900000000000002,69.28,1011,21.5 +2013,9,26,17,30,60,48,88,4,28.6,82.10000000000001,1011,22 +2013,9,26,18,30,0,0,0,4.2,27.8,95.29,1012,22.400000000000002 +2013,9,26,19,30,0,0,0,4.5,27.700000000000003,108.34,1012,22.700000000000003 +2013,9,26,20,30,0,0,0,4.7,27.6,121.10000000000001,1012,22.900000000000002 +2013,9,26,21,30,0,0,0,4.9,27.5,133.17000000000002,1013,23 +2013,9,26,22,30,0,0,0,5,27.400000000000002,143.72,1013,23 +2013,9,26,23,30,0,0,0,5,27.3,150.94,1013,23 +2013,9,27,0,30,0,0,0,5,27.200000000000003,152.07,1012,22.900000000000002 +2013,9,27,1,30,0,0,0,4.800000000000001,27.1,146.48,1012,22.900000000000002 +2013,9,27,2,30,0,0,0,4.5,27,136.72,1012,22.8 +2013,9,27,3,30,0,0,0,4.2,27,125.01,1012,22.8 +2013,9,27,4,30,0,0,0,3.8000000000000003,27,112.41,1013,22.8 +2013,9,27,5,30,0,0,0,3.5,27,99.44,1013,22.8 +2013,9,27,6,30,36,24,182,3.5,27.5,86.17,1014,22.900000000000002 +2013,9,27,7,30,229,69,560,3.8000000000000003,28.200000000000003,73.35000000000001,1014,23.3 +2013,9,27,8,30,443,91,722,4.1000000000000005,28.700000000000003,60.82,1015,23.3 +2013,9,27,9,30,497,277,335,4.4,29,49.11,1015,23.5 +2013,9,27,10,30,638,326,402,4.7,29.1,39.09,1015,23.700000000000003 +2013,9,27,11,30,849,115,869,4.9,29.200000000000003,32.480000000000004,1014,23.700000000000003 +2013,9,27,12,30,445,392,63,5.1000000000000005,29.200000000000003,31.51,1013,23.700000000000003 +2013,9,27,13,30,564,390,217,5.2,29.1,36.65,1013,23.700000000000003 +2013,9,27,14,30,677,106,820,5.300000000000001,29,45.87,1012,23.6 +2013,9,27,15,30,499,100,736,5.4,28.8,57.2,1012,23.6 +2013,9,27,16,30,290,80,604,5.4,28.5,69.55,1012,23.5 +2013,9,27,17,30,84,42,318,5.4,28.3,82.37,1012,23.6 +2013,9,27,18,30,0,0,0,5.300000000000001,27.700000000000003,95.55,1013,23.6 +2013,9,27,19,30,0,0,0,5.4,27.6,108.61,1013,23.700000000000003 +2013,9,27,20,30,0,0,0,5.6000000000000005,27.5,121.38,1014,23.6 +2013,9,27,21,30,0,0,0,5.800000000000001,27.5,133.48,1014,23.6 +2013,9,27,22,30,0,0,0,6,27.400000000000002,144.08,1014,23.5 +2013,9,27,23,30,0,0,0,6.2,27.3,151.34,1014,23.400000000000002 +2013,9,28,0,30,0,0,0,6.300000000000001,27.3,152.44,1014,23.3 +2013,9,28,1,30,0,0,0,6.300000000000001,27.200000000000003,146.76,1014,23.3 +2013,9,28,2,30,0,0,0,6.2,27.200000000000003,136.92000000000002,1014,23.3 +2013,9,28,3,30,0,0,0,6,27.1,125.16,1014,23.5 +2013,9,28,4,30,0,0,0,5.7,27.1,112.54,1014,23.700000000000003 +2013,9,28,5,30,0,0,0,5.300000000000001,27.200000000000003,99.55,1014,23.900000000000002 +2013,9,28,6,30,32,24,117,5.2,27.6,86.28,1014,24.200000000000003 +2013,9,28,7,30,216,78,486,5.1000000000000005,28.200000000000003,73.48,1015,24.5 +2013,9,28,8,30,424,105,658,5.1000000000000005,28.6,60.97,1016,24.6 +2013,9,28,9,30,315,278,55,5.1000000000000005,28.8,49.31,1016,24.8 +2013,9,28,10,30,615,340,355,5.2,29,39.36,1016,24.8 +2013,9,28,11,30,541,417,147,5.2,29.1,32.83,1015,24.900000000000002 +2013,9,28,12,30,359,335,29,5.2,29.1,31.91,1015,24.900000000000002 +2013,9,28,13,30,532,391,176,5.1000000000000005,29,37.03,1014,24.8 +2013,9,28,14,30,329,294,50,5,28.900000000000002,46.21,1014,24.8 +2013,9,28,15,30,82,82,0,4.9,28.700000000000003,57.5,1014,24.700000000000003 +2013,9,28,16,30,52,52,0,4.800000000000001,28.5,69.83,1014,24.700000000000003 +2013,9,28,17,30,14,14,0,4.800000000000001,28.400000000000002,82.63,1014,24.6 +2013,9,28,18,30,0,0,0,4.7,28,95.81,1015,24.700000000000003 +2013,9,28,19,30,0,0,0,4.800000000000001,28,108.87,1015,24.6 +2013,9,28,20,30,0,0,0,5.1000000000000005,27.900000000000002,121.67,1016,24.6 +2013,9,28,21,30,0,0,0,5.6000000000000005,27.900000000000002,133.8,1016,24.6 +2013,9,28,22,30,0,0,0,6.1000000000000005,27.8,144.43,1015,24.700000000000003 +2013,9,28,23,30,0,0,0,6.2,27.700000000000003,151.73,1015,24.700000000000003 +2013,9,29,0,30,0,0,0,6,27.6,152.81,1015,24.6 +2013,9,29,1,30,0,0,0,5.6000000000000005,27.5,147.03,1015,24.6 +2013,9,29,2,30,0,0,0,5.2,27.400000000000002,137.12,1015,24.5 +2013,9,29,3,30,0,0,0,5,27.400000000000002,125.31,1015,24.5 +2013,9,29,4,30,0,0,0,4.800000000000001,27.3,112.67,1015,24.400000000000002 +2013,9,29,5,30,0,0,0,4.7,27.3,99.67,1015,24.400000000000002 +2013,9,29,6,30,24,22,24,4.6000000000000005,27.400000000000002,86.4,1015,24.400000000000002 +2013,9,29,7,30,182,96,304,4.6000000000000005,27.700000000000003,73.61,1015,24.6 +2013,9,29,8,30,354,181,359,4.7,27.8,61.13,1015,24.700000000000003 +2013,9,29,9,30,417,300,180,4.6000000000000005,28,49.51,1015,24.900000000000002 +2013,9,29,10,30,474,372,132,4.4,28.1,39.63,1015,24.900000000000002 +2013,9,29,11,30,495,407,105,3.9000000000000004,28.1,33.18,1015,24.900000000000002 +2013,9,29,12,30,477,404,86,3.4000000000000004,28.1,32.3,1014,25 +2013,9,29,13,30,55,55,0,3,28.1,37.410000000000004,1013,25 +2013,9,29,14,30,143,143,0,2.9000000000000004,28.1,46.54,1013,25 +2013,9,29,15,30,381,217,308,2.8000000000000003,28,57.800000000000004,1013,25 +2013,9,29,16,30,229,119,324,2.9000000000000004,27.8,70.11,1013,24.900000000000002 +2013,9,29,17,30,40,40,0,2.9000000000000004,27.700000000000003,82.89,1013,24.900000000000002 +2013,9,29,18,30,0,0,0,3.3000000000000003,27.200000000000003,96.08,1013,24.900000000000002 +2013,9,29,19,30,0,0,0,3.5,27.1,109.14,1013,24.900000000000002 +2013,9,29,20,30,0,0,0,3.6,27,121.95,1013,24.8 +2013,9,29,21,30,0,0,0,3.9000000000000004,27,134.11,1013,24.700000000000003 +2013,9,29,22,30,0,0,0,4.3,27.1,144.79,1013,24.700000000000003 +2013,9,29,23,30,0,0,0,4.7,27,152.13,1013,24.700000000000003 +2013,9,30,0,30,0,0,0,5.1000000000000005,27,153.17000000000002,1012,24.700000000000003 +2013,9,30,1,30,0,0,0,5.4,27,147.31,1012,24.700000000000003 +2013,9,30,2,30,0,0,0,5.5,27,137.32,1012,24.700000000000003 +2013,9,30,3,30,0,0,0,5.4,26.900000000000002,125.47,1011,24.700000000000003 +2013,9,30,4,30,0,0,0,5.2,26.900000000000002,112.8,1012,24.700000000000003 +2013,9,30,5,30,0,0,0,5,26.8,99.79,1012,24.700000000000003 +2013,9,30,6,30,13,13,0,4.9,26.900000000000002,86.51,1012,24.8 +2013,9,30,7,30,217,67,536,5,27.200000000000003,73.75,1012,25 +2013,9,30,8,30,322,197,261,4.9,27.400000000000002,61.29,1013,24.900000000000002 +2013,9,30,9,30,394,299,146,4.800000000000001,27.6,49.72,1013,24.700000000000003 +2013,9,30,10,30,744,119,815,4.7,27.700000000000003,39.910000000000004,1013,24.700000000000003 +2013,9,30,11,30,658,386,326,4.7,27.900000000000002,33.53,1012,24.700000000000003 +2013,9,30,12,30,533,417,137,4.7,28,32.7,1011,24.8 +2013,9,30,13,30,384,345,50,4.800000000000001,28,37.78,1011,24.900000000000002 +2013,9,30,14,30,413,321,136,4.9,28,46.88,1010,25 +2013,9,30,15,30,370,219,286,5.1000000000000005,27.900000000000002,58.1,1010,25 +2013,9,30,16,30,269,82,558,5.2,27.700000000000003,70.39,1010,25.1 +2013,9,30,17,30,70,41,244,5.300000000000001,27.6,83.15,1010,25 +2013,9,30,18,30,0,0,0,5.4,27.400000000000002,96.34,1011,25 +2013,9,30,19,30,0,0,0,5.6000000000000005,27.400000000000002,109.4,1011,24.900000000000002 +2013,9,30,20,30,0,0,0,5.9,27.3,122.23,1012,24.8 +2013,9,30,21,30,0,0,0,6,27.3,134.41,1012,24.8 +2013,9,30,22,30,0,0,0,5.800000000000001,27.200000000000003,145.14000000000001,1012,24.700000000000003 +2013,9,30,23,30,0,0,0,5.7,27.200000000000003,152.52,1012,24.5 +2013,10,1,0,30,0,0,0,5.6000000000000005,27.200000000000003,153.54,1011,24.400000000000002 +2013,10,1,1,30,0,0,0,5.5,27.200000000000003,147.58,1011,24.3 +2013,10,1,2,30,0,0,0,5.300000000000001,27.1,137.51,1011,24.3 +2013,10,1,3,30,0,0,0,5.1000000000000005,27.1,125.62,1011,24.200000000000003 +2013,10,1,4,30,0,0,0,4.9,27.1,112.93,1012,24.200000000000003 +2013,10,1,5,30,0,0,0,4.800000000000001,27.1,99.91,1012,24.200000000000003 +2013,10,1,6,30,18,18,0,4.800000000000001,27.3,86.63,1013,24.200000000000003 +2013,10,1,7,30,174,97,277,4.9,27.700000000000003,73.88,1013,24.5 +2013,10,1,8,30,57,57,0,4.5,28,61.46,1014,24.5 +2013,10,1,9,30,34,34,0,4.3,28.1,49.92,1014,24.5 +2013,10,1,10,30,50,50,0,4.5,28.1,40.18,1014,24.5 +2013,10,1,11,30,77,77,0,4.800000000000001,28.1,33.89,1014,24.6 +2013,10,1,12,30,110,110,0,4.9,28.1,33.1,1013,24.700000000000003 +2013,10,1,13,30,169,167,3,4.800000000000001,28,38.160000000000004,1013,24.700000000000003 +2013,10,1,14,30,178,176,3,4.7,27.900000000000002,47.21,1012,24.700000000000003 +2013,10,1,15,30,227,207,38,4.7,27.8,58.4,1012,24.700000000000003 +2013,10,1,16,30,98,98,0,4.9,27.6,70.66,1012,24.8 +2013,10,1,17,30,41,38,24,5,27.5,83.41,1012,24.900000000000002 +2013,10,1,18,30,0,0,0,5.1000000000000005,27.200000000000003,96.59,1013,24.900000000000002 +2013,10,1,19,30,0,0,0,5,27.1,109.67,1013,24.900000000000002 +2013,10,1,20,30,0,0,0,5.2,27.1,122.5,1014,24.900000000000002 +2013,10,1,21,30,0,0,0,5.5,27.1,134.72,1014,24.900000000000002 +2013,10,1,22,30,0,0,0,6,27.1,145.49,1014,24.900000000000002 +2013,10,1,23,30,0,0,0,6.300000000000001,27.1,152.92000000000002,1014,24.8 +2013,10,2,0,30,0,0,0,6.4,27.1,153.91,1013,24.700000000000003 +2013,10,2,1,30,0,0,0,6.1000000000000005,27.1,147.85,1013,24.700000000000003 +2013,10,2,2,30,0,0,0,5.4,27,137.71,1013,24.5 +2013,10,2,3,30,0,0,0,4.5,27,125.77,1014,24.400000000000002 +2013,10,2,4,30,0,0,0,4.1000000000000005,27,113.05,1014,24.3 +2013,10,2,5,30,0,0,0,4,27,100.03,1014,24.200000000000003 +2013,10,2,6,30,30,21,154,3.9000000000000004,27.200000000000003,86.75,1014,24.3 +2013,10,2,7,30,218,60,572,3.7,27.700000000000003,74.02,1015,24.6 +2013,10,2,8,30,430,79,738,3.5,28,61.620000000000005,1015,24.6 +2013,10,2,9,30,616,88,824,3.4000000000000004,28.200000000000003,50.14,1015,24.5 +2013,10,2,10,30,754,94,868,3.4000000000000004,28.3,40.46,1015,24.5 +2013,10,2,11,30,832,95,891,3.4000000000000004,28.3,34.24,1015,24.6 +2013,10,2,12,30,840,96,893,3.3000000000000003,28.3,33.49,1014,24.700000000000003 +2013,10,2,13,30,672,293,485,3.2,28.3,38.53,1013,24.700000000000003 +2013,10,2,14,30,502,298,303,3.2,28.200000000000003,47.550000000000004,1013,24.6 +2013,10,2,15,30,414,179,453,3.2,28,58.7,1013,24.6 +2013,10,2,16,30,215,116,303,3.4000000000000004,27.8,70.94,1012,24.700000000000003 +2013,10,2,17,30,54,37,147,3.5,27.6,83.66,1013,24.900000000000002 +2013,10,2,18,30,0,0,0,3.9000000000000004,27.200000000000003,96.85000000000001,1013,25 +2013,10,2,19,30,0,0,0,4.3,27.200000000000003,109.93,1013,25 +2013,10,2,20,30,0,0,0,4.6000000000000005,27.200000000000003,122.78,1014,25 +2013,10,2,21,30,0,0,0,5,27.200000000000003,135.02,1014,24.900000000000002 +2013,10,2,22,30,0,0,0,5.300000000000001,27.200000000000003,145.84,1014,24.700000000000003 +2013,10,2,23,30,0,0,0,5.4,27.200000000000003,153.31,1014,24.5 +2013,10,3,0,30,0,0,0,5.4,27.1,154.27,1013,24.200000000000003 +2013,10,3,1,30,0,0,0,5.2,27,148.12,1013,24 +2013,10,3,2,30,0,0,0,4.7,26.900000000000002,137.9,1013,23.900000000000002 +2013,10,3,3,30,0,0,0,4.3,26.8,125.92,1013,23.700000000000003 +2013,10,3,4,30,0,0,0,3.8000000000000003,26.8,113.18,1013,23.700000000000003 +2013,10,3,5,30,0,0,0,3.5,26.8,100.15,1013,23.6 +2013,10,3,6,30,29,20,160,3.4000000000000004,27.200000000000003,86.86,1014,23.6 +2013,10,3,7,30,218,59,583,3.5,27.8,74.16,1014,24 +2013,10,3,8,30,432,75,755,3.6,28.200000000000003,61.79,1015,23.900000000000002 +2013,10,3,9,30,619,84,839,3.6,28.5,50.35,1015,24 +2013,10,3,10,30,759,86,887,3.5,28.6,40.74,1015,24.1 +2013,10,3,11,30,839,87,914,3.4000000000000004,28.700000000000003,34.59,1014,24.1 +2013,10,3,12,30,846,93,908,3.3000000000000003,28.700000000000003,33.88,1013,24.1 +2013,10,3,13,30,787,89,896,3.3000000000000003,28.700000000000003,38.910000000000004,1012,24.1 +2013,10,3,14,30,663,84,863,3.4000000000000004,28.6,47.88,1012,24.1 +2013,10,3,15,30,485,76,794,3.6,28.400000000000002,59,1012,24.1 +2013,10,3,16,30,275,61,664,3.7,28.1,71.21000000000001,1012,24.200000000000003 +2013,10,3,17,30,68,31,346,3.7,27.900000000000002,83.92,1012,24.3 +2013,10,3,18,30,0,0,0,3.9000000000000004,27.200000000000003,97.10000000000001,1013,24.3 +2013,10,3,19,30,0,0,0,4.1000000000000005,27.1,110.18,1013,24.3 +2013,10,3,20,30,0,0,0,4.3,27,123.05,1013,24.3 +2013,10,3,21,30,0,0,0,4.5,27,135.32,1013,24.200000000000003 +2013,10,3,22,30,0,0,0,4.6000000000000005,27,146.18,1013,24.200000000000003 +2013,10,3,23,30,0,0,0,4.6000000000000005,27,153.70000000000002,1013,24.1 +2013,10,4,0,30,0,0,0,4.5,27,154.63,1013,24.1 +2013,10,4,1,30,0,0,0,4.4,26.900000000000002,148.39000000000001,1012,24 +2013,10,4,2,30,0,0,0,4.2,26.900000000000002,138.1,1012,24 +2013,10,4,3,30,0,0,0,3.9000000000000004,26.8,126.07000000000001,1012,23.900000000000002 +2013,10,4,4,30,0,0,0,3.5,26.900000000000002,113.31,1013,23.8 +2013,10,4,5,30,0,0,0,3,26.900000000000002,100.27,1013,23.700000000000003 +2013,10,4,6,30,30,19,199,2.6,27.3,86.98,1013,23.6 +2013,10,4,7,30,221,53,619,2.4000000000000004,27.900000000000002,74.3,1014,23.8 +2013,10,4,8,30,434,70,773,2.4000000000000004,28.400000000000002,61.96,1014,23.700000000000003 +2013,10,4,9,30,618,82,845,2.7,28.700000000000003,50.56,1014,23.8 +2013,10,4,10,30,756,89,883,3.1,28.8,41.02,1014,24.1 +2013,10,4,11,30,312,296,20,3.5,28.900000000000002,34.95,1014,24.400000000000002 +2013,10,4,12,30,840,90,907,3.7,28.900000000000002,34.28,1013,24.6 +2013,10,4,13,30,778,88,891,3.9000000000000004,28.8,39.28,1013,24.700000000000003 +2013,10,4,14,30,653,84,855,3.9000000000000004,28.700000000000003,48.21,1012,24.700000000000003 +2013,10,4,15,30,351,212,272,3.9000000000000004,28.5,59.300000000000004,1012,24.700000000000003 +2013,10,4,16,30,266,61,647,3.9000000000000004,28.3,71.48,1012,24.700000000000003 +2013,10,4,17,30,63,30,318,4,28.1,84.17,1012,24.8 +2013,10,4,18,30,0,0,0,4.3,27.6,97.36,1013,24.900000000000002 +2013,10,4,19,30,0,0,0,4.6000000000000005,27.5,110.44,1013,25 +2013,10,4,20,30,0,0,0,5,27.5,123.32000000000001,1013,25.1 +2013,10,4,21,30,0,0,0,5.300000000000001,27.5,135.62,1013,25.1 +2013,10,4,22,30,0,0,0,5.4,27.400000000000002,146.52,1013,25.1 +2013,10,4,23,30,0,0,0,5.4,27.400000000000002,154.09,1013,25.1 +2013,10,5,0,30,0,0,0,5.1000000000000005,27.3,154.99,1012,25 +2013,10,5,1,30,0,0,0,4.7,27.200000000000003,148.66,1012,24.900000000000002 +2013,10,5,2,30,0,0,0,4.2,27.1,138.29,1012,24.900000000000002 +2013,10,5,3,30,0,0,0,3.7,27,126.21000000000001,1012,24.700000000000003 +2013,10,5,4,30,0,0,0,3.2,27,113.43,1013,24.6 +2013,10,5,5,30,0,0,0,2.8000000000000003,27,100.39,1013,24.5 +2013,10,5,6,30,25,20,100,2.6,27.3,87.10000000000001,1013,24.5 +2013,10,5,7,30,208,67,524,2.6,27.700000000000003,74.44,1014,24.700000000000003 +2013,10,5,8,30,419,90,703,2.5,28.1,62.13,1014,24.6 +2013,10,5,9,30,606,100,801,2.5,28.400000000000002,50.78,1014,24.700000000000003 +2013,10,5,10,30,743,109,844,2.4000000000000004,28.700000000000003,41.300000000000004,1014,24.8 +2013,10,5,11,30,817,114,862,2.3000000000000003,28.8,35.300000000000004,1013,24.8 +2013,10,5,12,30,828,107,876,2.2,28.900000000000002,34.67,1012,24.900000000000002 +2013,10,5,13,30,765,105,857,2.2,28.900000000000002,39.65,1012,24.900000000000002 +2013,10,5,14,30,640,99,817,2.2,28.8,48.550000000000004,1011,24.8 +2013,10,5,15,30,465,86,749,2.1,28.700000000000003,59.59,1011,24.8 +2013,10,5,16,30,257,68,604,2,28.5,71.75,1011,24.700000000000003 +2013,10,5,17,30,57,32,256,2,28.3,84.43,1011,24.700000000000003 +2013,10,5,18,30,0,0,0,2.5,27.700000000000003,97.61,1012,24.8 +2013,10,5,19,30,0,0,0,2.7,27.400000000000002,110.69,1013,24.8 +2013,10,5,20,30,0,0,0,2.4000000000000004,27.3,123.59,1013,24.700000000000003 +2013,10,5,21,30,0,0,0,2,27,135.91,1013,24.5 +2013,10,5,22,30,0,0,0,2.6,26.700000000000003,146.86,1012,24.200000000000003 +2013,10,5,23,30,0,0,0,4.5,25.900000000000002,154.47,1012,24.1 +2013,10,6,0,30,0,0,0,6.5,24.700000000000003,155.35,1013,23.5 +2013,10,6,1,30,0,0,0,7.800000000000001,23.1,148.92000000000002,1013,22.3 +2013,10,6,2,30,0,0,0,8.3,21.8,138.47,1013,20.8 +2013,10,6,3,30,0,0,0,8.4,21,126.36,1014,19.8 +2013,10,6,4,30,0,0,0,8.4,20.5,113.56,1014,19.1 +2013,10,6,5,30,0,0,0,8.3,20.3,100.51,1015,18.7 +2013,10,6,6,30,23,19,82,8.200000000000001,20.400000000000002,87.22,1015,18.3 +2013,10,6,7,30,198,81,439,8.1,20.8,74.58,1016,17.8 +2013,10,6,8,30,76,76,0,8,21.200000000000003,62.300000000000004,1017,17.2 +2013,10,6,9,30,61,61,0,8,21.3,51,1017,16.8 +2013,10,6,10,30,118,118,0,7.9,21.5,41.59,1017,16.3 +2013,10,6,11,30,151,150,1,7.5,22.1,35.660000000000004,1016,15.9 +2013,10,6,12,30,246,237,11,7.2,22.900000000000002,35.06,1016,15.600000000000001 +2013,10,6,13,30,405,351,71,7,23.700000000000003,40.02,1015,15.3 +2013,10,6,14,30,537,255,428,7,24.200000000000003,48.88,1015,15 +2013,10,6,15,30,380,186,387,6.800000000000001,24.5,59.89,1015,14.600000000000001 +2013,10,6,16,30,279,58,713,6.5,24.5,72.02,1016,14.4 +2013,10,6,17,30,43,32,125,6.4,24.3,84.67,1016,14.8 +2013,10,6,18,30,0,0,0,6.6000000000000005,23.6,97.85000000000001,1016,14.5 +2013,10,6,19,30,0,0,0,6.800000000000001,23.5,110.94,1017,14.200000000000001 +2013,10,6,20,30,0,0,0,7,23.1,123.85000000000001,1017,13.9 +2013,10,6,21,30,0,0,0,7.300000000000001,22.5,136.2,1017,13.5 +2013,10,6,22,30,0,0,0,7.300000000000001,21.8,147.20000000000002,1018,13.200000000000001 +2013,10,6,23,30,0,0,0,7.1000000000000005,21.200000000000003,154.86,1018,12.9 +2013,10,7,0,30,0,0,0,6.800000000000001,20.8,155.71,1018,12.700000000000001 +2013,10,7,1,30,0,0,0,6.800000000000001,20.400000000000002,149.18,1018,12.700000000000001 +2013,10,7,2,30,0,0,0,6.7,20.200000000000003,138.66,1018,12.700000000000001 +2013,10,7,3,30,0,0,0,6.7,20.1,126.51,1018,13 +2013,10,7,4,30,0,0,0,6.7,19.900000000000002,113.69,1018,13.3 +2013,10,7,5,30,0,0,0,6.7,19.8,100.63,1019,13.700000000000001 +2013,10,7,6,30,28,17,241,6.6000000000000005,20.1,87.33,1019,14.100000000000001 +2013,10,7,7,30,229,51,677,6.5,20.8,74.72,1020,14.5 +2013,10,7,8,30,452,66,835,6.300000000000001,21.700000000000003,62.47,1020,14.8 +2013,10,7,9,30,645,72,916,6.2,22.6,51.22,1020,14.8 +2013,10,7,10,30,788,77,954,5.6000000000000005,23.1,41.87,1020,14.5 +2013,10,7,11,30,866,79,972,4.9,23.400000000000002,36.01,1019,14.4 +2013,10,7,12,30,870,80,970,4.3,23.700000000000003,35.45,1019,14.3 +2013,10,7,13,30,806,79,954,4,24,40.39,1018,14.3 +2013,10,7,14,30,675,76,918,4,24.3,49.2,1017,14.3 +2013,10,7,15,30,491,68,851,4.1000000000000005,24.5,60.18,1017,14.5 +2013,10,7,16,30,273,55,718,4.2,24.5,72.29,1017,14.8 +2013,10,7,17,30,59,26,375,4.2,24.3,84.92,1017,15.8 +2013,10,7,18,30,0,0,0,4.5,23.6,98.10000000000001,1017,15.600000000000001 +2013,10,7,19,30,0,0,0,4.5,23.5,111.19,1018,15.5 +2013,10,7,20,30,0,0,0,4.5,23.3,124.11,1018,15.3 +2013,10,7,21,30,0,0,0,4.4,23,136.49,1018,14.9 +2013,10,7,22,30,0,0,0,4.5,22.700000000000003,147.53,1018,14.700000000000001 +2013,10,7,23,30,0,0,0,4.7,22.3,155.24,1018,14.5 +2013,10,8,0,30,0,0,0,4.9,21.900000000000002,156.07,1017,14.4 +2013,10,8,1,30,0,0,0,5,21.5,149.44,1017,14.3 +2013,10,8,2,30,0,0,0,5,21.3,138.85,1017,14.3 +2013,10,8,3,30,0,0,0,4.800000000000001,21.1,126.65,1017,14.5 +2013,10,8,4,30,0,0,0,4.6000000000000005,21,113.81,1017,14.8 +2013,10,8,5,30,0,0,0,4.2,20.900000000000002,100.75,1018,15.100000000000001 +2013,10,8,6,30,27,16,239,3.9000000000000004,21.400000000000002,87.46000000000001,1018,15.200000000000001 +2013,10,8,7,30,226,51,669,3.6,22.3,74.87,1019,15.5 +2013,10,8,8,30,446,67,826,3.2,23.200000000000003,62.65,1019,15.4 +2013,10,8,9,30,639,75,905,2.9000000000000004,23.900000000000002,51.44,1019,15.100000000000001 +2013,10,8,10,30,781,80,945,2.7,24.3,42.160000000000004,1018,14.9 +2013,10,8,11,30,858,83,963,2.5,24.5,36.37,1018,14.9 +2013,10,8,12,30,865,83,965,2.3000000000000003,24.6,35.83,1017,14.9 +2013,10,8,13,30,801,82,949,2.1,24.6,40.76,1017,14.8 +2013,10,8,14,30,668,78,910,1.9000000000000001,24.6,49.53,1016,14.600000000000001 +2013,10,8,15,30,484,73,833,1.8,24.5,60.47,1016,14.5 +2013,10,8,16,30,266,58,692,1.8,24.200000000000003,72.55,1016,14.600000000000001 +2013,10,8,17,30,55,26,336,1.9000000000000001,24,85.16,1016,15.3 +2013,10,8,18,30,0,0,0,2.2,23.1,98.34,1016,15.4 +2013,10,8,19,30,0,0,0,2.4000000000000004,22.900000000000002,111.43,1017,15.600000000000001 +2013,10,8,20,30,0,0,0,2.5,22.700000000000003,124.37,1017,15.700000000000001 +2013,10,8,21,30,0,0,0,2.7,22.6,136.77,1017,15.700000000000001 +2013,10,8,22,30,0,0,0,2.8000000000000003,22.400000000000002,147.87,1017,15.8 +2013,10,8,23,30,0,0,0,2.9000000000000004,22.3,155.63,1017,15.8 +2013,10,9,0,30,0,0,0,2.9000000000000004,22.1,156.42000000000002,1017,15.9 +2013,10,9,1,30,0,0,0,2.8000000000000003,21.900000000000002,149.70000000000002,1016,15.9 +2013,10,9,2,30,0,0,0,2.7,21.8,139.03,1016,15.8 +2013,10,9,3,30,0,0,0,2.4000000000000004,21.700000000000003,126.8,1016,15.700000000000001 +2013,10,9,4,30,0,0,0,2.1,21.700000000000003,113.94,1016,15.5 +2013,10,9,5,30,0,0,0,1.8,21.8,100.87,1017,15.3 +2013,10,9,6,30,23,16,148,1.6,22.1,87.58,1017,15.200000000000001 +2013,10,9,7,30,214,64,580,1.5,23,75.01,1018,15.700000000000001 +2013,10,9,8,30,342,163,390,1.2000000000000002,23.8,62.82,1019,15.5 +2013,10,9,9,30,630,85,879,1,24.400000000000002,51.660000000000004,1019,15.4 +2013,10,9,10,30,576,327,338,1,24.900000000000002,42.45,1019,15.700000000000001 +2013,10,9,11,30,848,95,940,1.2000000000000002,25.200000000000003,36.72,1018,16 +2013,10,9,12,30,855,88,951,1.4000000000000001,25.400000000000002,36.22,1018,16.3 +2013,10,9,13,30,790,85,936,1.7000000000000002,25.5,41.13,1017,16.6 +2013,10,9,14,30,661,80,901,2,25.5,49.86,1016,16.900000000000002 +2013,10,9,15,30,479,70,837,2.4000000000000004,25.3,60.76,1016,17.2 +2013,10,9,16,30,262,55,699,2.6,24.900000000000002,72.82000000000001,1016,17.6 +2013,10,9,17,30,52,25,344,2.7,24.6,85.41,1016,18.2 +2013,10,9,18,30,0,0,0,3.1,23.700000000000003,98.58,1017,18.400000000000002 +2013,10,9,19,30,0,0,0,3.3000000000000003,23.5,111.68,1017,18.6 +2013,10,9,20,30,0,0,0,3.4000000000000004,23.400000000000002,124.62,1017,18.7 +2013,10,9,21,30,0,0,0,3.6,23.3,137.05,1017,18.7 +2013,10,9,22,30,0,0,0,3.7,23.200000000000003,148.19,1017,18.6 +2013,10,9,23,30,0,0,0,3.8000000000000003,23.1,156.01,1017,18.6 +2013,10,10,0,30,0,0,0,3.8000000000000003,23.1,156.77,1017,18.7 +2013,10,10,1,30,0,0,0,3.7,23.1,149.95000000000002,1017,18.7 +2013,10,10,2,30,0,0,0,3.4000000000000004,23.200000000000003,139.21,1017,18.7 +2013,10,10,3,30,0,0,0,3.1,23.400000000000002,126.94,1017,18.7 +2013,10,10,4,30,0,0,0,2.8000000000000003,23.6,114.06,1017,18.8 +2013,10,10,5,30,0,0,0,2.3000000000000003,23.8,100.99000000000001,1017,18.8 +2013,10,10,6,30,13,13,0,1.9000000000000001,24.3,87.7,1017,18.7 +2013,10,10,7,30,51,51,0,1.7000000000000002,25,75.16,1018,19.1 +2013,10,10,8,30,278,192,190,1.7000000000000002,25.700000000000003,63,1018,18.8 +2013,10,10,9,30,458,263,316,1.8,26.1,51.89,1018,18.8 +2013,10,10,10,30,760,82,923,2.1,26.5,42.730000000000004,1018,18.900000000000002 +2013,10,10,11,30,836,84,943,2.4000000000000004,26.8,37.08,1017,19.1 +2013,10,10,12,30,842,84,944,2.7,27,36.6,1016,19.3 +2013,10,10,13,30,778,81,931,3.1,27,41.49,1016,19.5 +2013,10,10,14,30,650,75,897,3.4000000000000004,26.900000000000002,50.18,1015,19.6 +2013,10,10,15,30,468,66,832,3.7,26.700000000000003,61.050000000000004,1015,19.700000000000003 +2013,10,10,16,30,254,52,697,3.9000000000000004,26.3,73.08,1014,19.8 +2013,10,10,17,30,49,23,336,4,26,85.65,1014,20 +2013,10,10,18,30,0,0,0,4.3,25.400000000000002,98.82000000000001,1015,20.200000000000003 +2013,10,10,19,30,0,0,0,4.6000000000000005,25.200000000000003,111.92,1015,20.200000000000003 +2013,10,10,20,30,0,0,0,4.800000000000001,25.1,124.87,1015,20.3 +2013,10,10,21,30,0,0,0,4.800000000000001,25.1,137.33,1015,20.3 +2013,10,10,22,30,0,0,0,4.7,25.1,148.52,1015,20.3 +2013,10,10,23,30,0,0,0,4.6000000000000005,25.1,156.38,1015,20.200000000000003 +2013,10,11,0,30,0,0,0,4.5,25.1,157.13,1015,20.200000000000003 +2013,10,11,1,30,0,0,0,4.4,25.1,150.20000000000002,1014,20.200000000000003 +2013,10,11,2,30,0,0,0,4.5,25.1,139.39000000000001,1014,20.3 +2013,10,11,3,30,0,0,0,4.4,25.1,127.08,1014,20.400000000000002 +2013,10,11,4,30,0,0,0,4.2,25.200000000000003,114.19,1014,20.5 +2013,10,11,5,30,0,0,0,4.1000000000000005,25.200000000000003,101.12,1014,20.5 +2013,10,11,6,30,22,15,173,3.9000000000000004,25.8,87.83,1014,20.700000000000003 +2013,10,11,7,30,210,51,624,3.9000000000000004,26.6,75.31,1015,21.200000000000003 +2013,10,11,8,30,423,68,787,3.9000000000000004,27.3,63.18,1015,21.200000000000003 +2013,10,11,9,30,388,282,172,3.7,27.8,52.120000000000005,1015,21.3 +2013,10,11,10,30,739,88,890,3.5,28.1,43.02,1015,21.700000000000003 +2013,10,11,11,30,811,92,905,3.5,28.200000000000003,37.43,1014,22.1 +2013,10,11,12,30,685,311,468,3.7,28.200000000000003,36.980000000000004,1014,22.5 +2013,10,11,13,30,590,329,350,4.1000000000000005,28.1,41.85,1013,22.8 +2013,10,11,14,30,221,213,12,4.4,27.900000000000002,50.5,1013,23.1 +2013,10,11,15,30,313,202,231,4.6000000000000005,27.6,61.33,1013,23.400000000000002 +2013,10,11,16,30,231,63,588,4.7,27.3,73.34,1013,23.6 +2013,10,11,17,30,40,25,209,4.6000000000000005,27.1,85.88,1013,23.900000000000002 +2013,10,11,18,30,0,0,0,4.7,26.700000000000003,99.06,1013,24.200000000000003 +2013,10,11,19,30,0,0,0,4.9,26.700000000000003,112.15,1013,24.400000000000002 +2013,10,11,20,30,0,0,0,5.2,26.6,125.12,1014,24.700000000000003 +2013,10,11,21,30,0,0,0,5.4,26.6,137.6,1014,24.900000000000002 +2013,10,11,22,30,0,0,0,5.6000000000000005,26.5,148.83,1014,24.900000000000002 +2013,10,11,23,30,0,0,0,5.7,26.5,156.76,1014,24.900000000000002 +2013,10,12,0,30,0,0,0,5.800000000000001,26.400000000000002,157.47,1014,24.900000000000002 +2013,10,12,1,30,0,0,0,5.7,26.400000000000002,150.45000000000002,1014,24.900000000000002 +2013,10,12,2,30,0,0,0,5.5,26.3,139.57,1014,24.8 +2013,10,12,3,30,0,0,0,5.1000000000000005,26.3,127.22,1014,24.900000000000002 +2013,10,12,4,30,0,0,0,4.6000000000000005,26.200000000000003,114.32000000000001,1014,24.900000000000002 +2013,10,12,5,30,0,0,0,4.2,26.200000000000003,101.24000000000001,1015,25 +2013,10,12,6,30,18,15,93,3.8000000000000003,26.5,87.95,1015,25 +2013,10,12,7,30,136,94,166,3.6,27,75.46000000000001,1016,25.3 +2013,10,12,8,30,309,176,297,3.5,27.3,63.370000000000005,1016,25.400000000000002 +2013,10,12,9,30,584,85,818,3.5,27.6,52.34,1016,25.400000000000002 +2013,10,12,10,30,719,90,864,3.5,27.700000000000003,43.31,1016,25.400000000000002 +2013,10,12,11,30,791,93,883,3.5,27.900000000000002,37.78,1016,25.400000000000002 +2013,10,12,12,30,532,392,176,3.4000000000000004,27.900000000000002,37.36,1015,25.3 +2013,10,12,13,30,725,109,831,3.3000000000000003,27.8,42.21,1015,25.3 +2013,10,12,14,30,334,283,82,3.2,27.6,50.82,1015,25.3 +2013,10,12,15,30,235,199,74,3,27.400000000000002,61.620000000000005,1015,25.3 +2013,10,12,16,30,21,21,0,2.7,27.1,73.60000000000001,1015,25.3 +2013,10,12,17,30,13,13,0,2.6,27,86.12,1015,25.5 +2013,10,12,18,30,0,0,0,2.7,26.6,99.29,1016,25.5 +2013,10,12,19,30,0,0,0,2.9000000000000004,26.6,112.38,1016,25.5 +2013,10,12,20,30,0,0,0,3.1,26.6,125.36,1017,25.6 +2013,10,12,21,30,0,0,0,3.6,26.5,137.87,1017,25.6 +2013,10,12,22,30,0,0,0,4.2,26.400000000000002,149.15,1017,25.6 +2013,10,12,23,30,0,0,0,4.3,26.3,157.13,1017,25.5 +2013,10,13,0,30,0,0,0,3.4000000000000004,26.1,157.82,1017,25.3 +2013,10,13,1,30,0,0,0,2.7,26,150.70000000000002,1018,25 +2013,10,13,2,30,0,0,0,2.5,25.8,139.75,1018,24.700000000000003 +2013,10,13,3,30,0,0,0,2.6,25.6,127.36,1018,24.5 +2013,10,13,4,30,0,0,0,2.6,25.5,114.44,1018,24.3 +2013,10,13,5,30,0,0,0,2.6,25.400000000000002,101.37,1019,24.1 +2013,10,13,6,30,9,9,0,2.6,25.6,88.08,1019,23.900000000000002 +2013,10,13,7,30,54,54,0,2.7,25.8,75.61,1019,23.8 +2013,10,13,8,30,127,127,0,2.7,26,63.550000000000004,1020,23.900000000000002 +2013,10,13,9,30,269,246,38,3.1,26.200000000000003,52.57,1020,23.8 +2013,10,13,10,30,353,315,53,3.7,26.200000000000003,43.6,1020,23.8 +2013,10,13,11,30,457,377,101,4.1000000000000005,26.200000000000003,38.14,1020,23.700000000000003 +2013,10,13,12,30,467,382,108,4.3,26.200000000000003,37.74,1019,23.5 +2013,10,13,13,30,193,189,5,4.4,26.200000000000003,42.57,1018,23.400000000000002 +2013,10,13,14,30,317,275,68,4.3,26.200000000000003,51.14,1018,23.3 +2013,10,13,15,30,177,169,15,4.2,26.1,61.9,1018,23.200000000000003 +2013,10,13,16,30,57,57,0,3.9000000000000004,26,73.85000000000001,1018,23.1 +2013,10,13,17,30,11,11,0,3.7,25.900000000000002,86.34,1018,23.200000000000003 +2013,10,13,18,30,0,0,0,3.6,25.700000000000003,99.52,1019,23.200000000000003 +2013,10,13,19,30,0,0,0,3.6,25.700000000000003,112.61,1019,23.200000000000003 +2013,10,13,20,30,0,0,0,3.6,25.700000000000003,125.60000000000001,1019,23.200000000000003 +2013,10,13,21,30,0,0,0,3.5,25.700000000000003,138.13,1019,23.3 +2013,10,13,22,30,0,0,0,3.6,25.700000000000003,149.46,1019,23.3 +2013,10,13,23,30,0,0,0,3.8000000000000003,25.700000000000003,157.5,1018,23.200000000000003 +2013,10,14,0,30,0,0,0,4.1000000000000005,25.700000000000003,158.17000000000002,1018,23.200000000000003 +2013,10,14,1,30,0,0,0,4.2,25.700000000000003,150.94,1018,23 +2013,10,14,2,30,0,0,0,4.1000000000000005,25.8,139.92000000000002,1018,22.8 +2013,10,14,3,30,0,0,0,3.9000000000000004,25.8,127.51,1018,22.6 +2013,10,14,4,30,0,0,0,3.8000000000000003,25.8,114.57000000000001,1018,22.400000000000002 +2013,10,14,5,30,0,0,0,3.7,25.8,101.49000000000001,1019,22.3 +2013,10,14,6,30,9,9,0,3.7,25.900000000000002,88.2,1019,22.3 +2013,10,14,7,30,185,64,495,3.8000000000000003,26.3,75.77,1019,22.5 +2013,10,14,8,30,283,183,226,3.9000000000000004,26.700000000000003,63.74,1019,22.5 +2013,10,14,9,30,570,100,777,4.1000000000000005,27,52.81,1019,22.400000000000002 +2013,10,14,10,30,573,311,365,4.3,27.3,43.9,1018,22.400000000000002 +2013,10,14,11,30,523,384,177,4.3,27.400000000000002,38.49,1017,22.400000000000002 +2013,10,14,12,30,640,347,372,4.2,27.3,38.12,1017,22.5 +2013,10,14,13,30,715,112,824,4.1000000000000005,27.3,42.92,1016,22.5 +2013,10,14,14,30,591,101,786,3.9000000000000004,27.1,51.46,1015,22.5 +2013,10,14,15,30,415,90,697,3.8000000000000003,26.900000000000002,62.18,1015,22.5 +2013,10,14,16,30,171,97,268,3.6,26.700000000000003,74.10000000000001,1015,22.6 +2013,10,14,17,30,31,22,150,3.5,26.5,86.57000000000001,1015,22.700000000000003 +2013,10,14,18,30,0,0,0,3.6,26.1,99.75,1016,22.8 +2013,10,14,19,30,0,0,0,3.7,26,112.84,1016,22.8 +2013,10,14,20,30,0,0,0,3.9000000000000004,26,125.83,1016,22.900000000000002 +2013,10,14,21,30,0,0,0,4.1000000000000005,26,138.39000000000001,1016,22.900000000000002 +2013,10,14,22,30,0,0,0,4.3,25.900000000000002,149.77,1016,22.900000000000002 +2013,10,14,23,30,0,0,0,4.5,25.8,157.87,1015,22.900000000000002 +2013,10,15,0,30,0,0,0,4.5,25.700000000000003,158.51,1015,22.8 +2013,10,15,1,30,0,0,0,4.3,25.700000000000003,151.18,1015,22.700000000000003 +2013,10,15,2,30,0,0,0,4,25.6,140.09,1015,22.700000000000003 +2013,10,15,3,30,0,0,0,3.7,25.5,127.65,1015,22.700000000000003 +2013,10,15,4,30,0,0,0,3.4000000000000004,25.5,114.7,1015,22.6 +2013,10,15,5,30,0,0,0,3.2,25.400000000000002,101.62,1015,22.6 +2013,10,15,6,30,4,4,0,3.1,25.700000000000003,88.33,1015,22.6 +2013,10,15,7,30,185,59,520,3.3000000000000003,26.3,75.92,1016,22.900000000000002 +2013,10,15,8,30,93,93,0,3.5,26.700000000000003,63.92,1016,22.8 +2013,10,15,9,30,385,275,183,3.6,27,53.04,1016,22.900000000000002 +2013,10,15,10,30,318,293,35,3.6,27.200000000000003,44.19,1015,22.900000000000002 +2013,10,15,11,30,180,177,4,3.6,27.400000000000002,38.84,1015,22.900000000000002 +2013,10,15,12,30,200,196,6,3.5,27.5,38.49,1014,22.900000000000002 +2013,10,15,13,30,382,331,70,3.3000000000000003,27.5,43.27,1013,22.8 +2013,10,15,14,30,269,248,35,3.3000000000000003,27.5,51.77,1013,22.700000000000003 +2013,10,15,15,30,411,94,686,3.3000000000000003,27.400000000000002,62.46,1012,22.6 +2013,10,15,16,30,208,70,513,3.3000000000000003,27.1,74.35000000000001,1012,22.6 +2013,10,15,17,30,28,21,124,3.3000000000000003,26.900000000000002,86.8,1013,22.700000000000003 +2013,10,15,18,30,0,0,0,3.4000000000000004,26.400000000000002,99.97,1013,22.6 +2013,10,15,19,30,0,0,0,3.6,26.3,113.06,1014,22.6 +2013,10,15,20,30,0,0,0,3.7,26.200000000000003,126.06,1014,22.5 +2013,10,15,21,30,0,0,0,3.9000000000000004,26,138.65,1014,22.400000000000002 +2013,10,15,22,30,0,0,0,4,25.900000000000002,150.07,1014,22.400000000000002 +2013,10,15,23,30,0,0,0,4.2,25.900000000000002,158.23,1014,22.400000000000002 +2013,10,16,0,30,0,0,0,4.4,25.8,158.85,1013,22.400000000000002 +2013,10,16,1,30,0,0,0,4.4,25.700000000000003,151.42000000000002,1013,22.400000000000002 +2013,10,16,2,30,0,0,0,4.3,25.6,140.27,1013,22.400000000000002 +2013,10,16,3,30,0,0,0,4.1000000000000005,25.5,127.78,1013,22.400000000000002 +2013,10,16,4,30,0,0,0,3.9000000000000004,25.5,114.82000000000001,1013,22.5 +2013,10,16,5,30,0,0,0,3.7,25.5,101.74000000000001,1013,22.6 +2013,10,16,6,30,14,13,71,3.5,25.700000000000003,88.45,1014,22.700000000000003 +2013,10,16,7,30,66,66,0,3.3000000000000003,26.1,76.08,1014,22.900000000000002 +2013,10,16,8,30,95,95,0,3.1,26.5,64.11,1015,22.8 +2013,10,16,9,30,326,268,96,2.9000000000000004,26.8,53.27,1015,22.8 +2013,10,16,10,30,535,325,294,2.8000000000000003,27.1,44.480000000000004,1014,22.8 +2013,10,16,11,30,622,346,357,2.6,27.3,39.18,1014,22.900000000000002 +2013,10,16,12,30,776,108,857,2.4000000000000004,27.400000000000002,38.86,1013,22.900000000000002 +2013,10,16,13,30,458,349,150,2.3000000000000003,27.400000000000002,43.62,1012,23 +2013,10,16,14,30,410,281,210,2.3000000000000003,27.3,52.08,1012,23 +2013,10,16,15,30,401,102,653,2.4000000000000004,27,62.730000000000004,1012,23 +2013,10,16,16,30,117,101,61,2.4000000000000004,26.5,74.60000000000001,1012,23 +2013,10,16,17,30,13,13,0,2.4000000000000004,26.200000000000003,87.01,1012,22.900000000000002 +2013,10,16,18,30,0,0,0,3,25.200000000000003,100.19,1013,22.700000000000003 +2013,10,16,19,30,0,0,0,3.7,24.3,113.28,1014,22.3 +2013,10,16,20,30,0,0,0,4.5,23.5,126.29,1015,21.900000000000002 +2013,10,16,21,30,0,0,0,5.1000000000000005,22.700000000000003,138.9,1015,21.5 +2013,10,16,22,30,0,0,0,5.5,22.1,150.37,1015,21 +2013,10,16,23,30,0,0,0,5.7,21.6,158.6,1015,20.6 +2013,10,17,0,30,0,0,0,5.800000000000001,21.3,159.18,1015,20.200000000000003 +2013,10,17,1,30,0,0,0,5.800000000000001,21.1,151.66,1015,20 +2013,10,17,2,30,0,0,0,5.6000000000000005,21,140.44,1015,19.8 +2013,10,17,3,30,0,0,0,5.5,20.900000000000002,127.92,1015,19.8 +2013,10,17,4,30,0,0,0,5.5,20.900000000000002,114.95,1015,19.700000000000003 +2013,10,17,5,30,0,0,0,5.6000000000000005,20.8,101.87,1016,19.700000000000003 +2013,10,17,6,30,3,3,0,5.800000000000001,20.8,88.57000000000001,1016,19.6 +2013,10,17,7,30,63,63,0,6,21,76.23,1017,19.400000000000002 +2013,10,17,8,30,183,168,35,6,21.5,64.3,1017,19.200000000000003 +2013,10,17,9,30,260,239,36,5.7,22,53.51,1018,19 +2013,10,17,10,30,179,177,3,5.2,22.5,44.77,1017,18.8 +2013,10,17,11,30,410,355,71,4.7,22.900000000000002,39.53,1017,18.8 +2013,10,17,12,30,395,349,60,4.3,23.200000000000003,39.230000000000004,1016,18.6 +2013,10,17,13,30,489,345,200,3.9000000000000004,23.400000000000002,43.97,1015,18.5 +2013,10,17,14,30,290,258,52,3.8000000000000003,23.6,52.39,1015,18.3 +2013,10,17,15,30,252,195,126,3.8000000000000003,23.6,63,1015,18.3 +2013,10,17,16,30,96,93,11,3.8000000000000003,23.400000000000002,74.84,1015,18.3 +2013,10,17,17,30,14,14,0,3.8000000000000003,23.200000000000003,87.23,1015,18.6 +2013,10,17,18,30,0,0,0,4.1000000000000005,22.700000000000003,100.41,1015,18.5 +2013,10,17,19,30,0,0,0,4.3,22.5,113.49000000000001,1016,18.400000000000002 +2013,10,17,20,30,0,0,0,4.4,22.3,126.51,1016,18.400000000000002 +2013,10,17,21,30,0,0,0,4.6000000000000005,22.1,139.15,1016,18.3 +2013,10,17,22,30,0,0,0,4.7,21.8,150.66,1015,18.2 +2013,10,17,23,30,0,0,0,4.7,21.6,158.95000000000002,1015,18.2 +2013,10,18,0,30,0,0,0,4.6000000000000005,21.400000000000002,159.52,1015,18.2 +2013,10,18,1,30,0,0,0,4.6000000000000005,21.3,151.89000000000001,1015,18.2 +2013,10,18,2,30,0,0,0,4.6000000000000005,21.200000000000003,140.61,1015,18.2 +2013,10,18,3,30,0,0,0,4.9,21.3,128.06,1015,18.400000000000002 +2013,10,18,4,30,0,0,0,5.2,21.400000000000002,115.08,1015,18.5 +2013,10,18,5,30,0,0,0,5.4,21.5,102,1015,18.6 +2013,10,18,6,30,3,3,0,5.5,21.700000000000003,88.7,1016,18.7 +2013,10,18,7,30,35,35,0,5.800000000000001,22.1,76.39,1016,18.8 +2013,10,18,8,30,247,182,149,6.300000000000001,22.400000000000002,64.49,1016,18.900000000000002 +2013,10,18,9,30,427,255,290,6.7,22.8,53.74,1016,18.900000000000002 +2013,10,18,10,30,494,334,226,6.5,23.1,45.07,1015,18.7 +2013,10,18,11,30,537,373,214,5.9,23.5,39.88,1015,18.5 +2013,10,18,12,30,222,216,8,5.6000000000000005,23.700000000000003,39.6,1014,18.3 +2013,10,18,13,30,109,109,0,5.5,23.900000000000002,44.31,1013,18.400000000000002 +2013,10,18,14,30,13,13,0,5.6000000000000005,24,52.69,1013,18.7 +2013,10,18,15,30,150,149,3,5.800000000000001,23.8,63.27,1012,19.1 +2013,10,18,16,30,73,73,0,5.9,23.5,75.09,1012,19.6 +2013,10,18,17,30,9,9,0,5.9,23.400000000000002,87.44,1012,20.3 +2013,10,18,18,30,0,0,0,6,23.200000000000003,100.62,1012,20.900000000000002 +2013,10,18,19,30,0,0,0,5.800000000000001,23.3,113.7,1013,21.5 +2013,10,18,20,30,0,0,0,5.4,23.400000000000002,126.73,1013,22.1 +2013,10,18,21,30,0,0,0,4.7,23.6,139.39000000000001,1013,22.5 +2013,10,18,22,30,0,0,0,4.1000000000000005,23.700000000000003,150.95000000000002,1012,22.700000000000003 +2013,10,18,23,30,0,0,0,3.6,23.6,159.31,1012,22.700000000000003 +2013,10,19,0,30,0,0,0,3.6,23.1,159.85,1012,22.400000000000002 +2013,10,19,1,30,0,0,0,4.9,22,152.12,1013,21.700000000000003 +2013,10,19,2,30,0,0,0,7.1000000000000005,20.5,140.77,1014,20.5 +2013,10,19,3,30,0,0,0,8.9,19.3,128.2,1015,19.1 +2013,10,19,4,30,0,0,0,9,18.7,115.2,1016,17.900000000000002 +2013,10,19,5,30,0,0,0,8,18.7,102.13,1017,17.400000000000002 +2013,10,19,6,30,6,6,0,7.1000000000000005,19,88.82000000000001,1017,17.3 +2013,10,19,7,30,149,76,314,6.800000000000001,19.400000000000002,76.55,1018,17.3 +2013,10,19,8,30,218,179,91,6.7,19.8,64.68,1018,17.2 +2013,10,19,9,30,347,268,134,6.6000000000000005,20.200000000000003,53.980000000000004,1019,17.1 +2013,10,19,10,30,359,314,65,6.4,20.6,45.36,1019,17 +2013,10,19,11,30,508,373,176,6.1000000000000005,21,40.22,1018,17 +2013,10,19,12,30,492,375,152,5.9,21.400000000000002,39.96,1017,17 +2013,10,19,13,30,491,338,215,5.800000000000001,21.900000000000002,44.65,1017,17 +2013,10,19,14,30,616,90,873,5.7,22.1,52.99,1016,16.7 +2013,10,19,15,30,436,74,811,5.800000000000001,22.200000000000003,63.54,1016,16.3 +2013,10,19,16,30,221,55,655,5.800000000000001,21.8,75.32000000000001,1016,15.9 +2013,10,19,17,30,26,17,217,5.7,21.5,87.64,1016,15.700000000000001 +2013,10,19,18,30,0,0,0,6.2,20.3,100.83,1017,15.4 +2013,10,19,19,30,0,0,0,6.2,19.700000000000003,113.91,1018,15 +2013,10,19,20,30,0,0,0,5.9,19,126.94,1018,14.700000000000001 +2013,10,19,21,30,0,0,0,5.6000000000000005,18.5,139.62,1019,14.4 +2013,10,19,22,30,0,0,0,5.5,18,151.23,1018,14.3 +2013,10,19,23,30,0,0,0,5.4,17.7,159.66,1018,14.200000000000001 +2013,10,20,0,30,0,0,0,5.2,17.400000000000002,160.18,1018,14.100000000000001 +2013,10,20,1,30,0,0,0,5,17.1,152.35,1018,14 +2013,10,20,2,30,0,0,0,4.800000000000001,16.900000000000002,140.94,1018,14 +2013,10,20,3,30,0,0,0,4.7,16.900000000000002,128.34,1018,14 +2013,10,20,4,30,0,0,0,4.5,16.900000000000002,115.33,1018,14.100000000000001 +2013,10,20,5,30,0,0,0,4.3,16.900000000000002,102.26,1018,14.200000000000001 +2013,10,20,6,30,6,6,0,4.1000000000000005,17.400000000000002,88.94,1018,14.3 +2013,10,20,7,30,138,80,252,4,18.400000000000002,76.71000000000001,1018,14.600000000000001 +2013,10,20,8,30,338,130,491,3.9000000000000004,19.5,64.88,1019,14.8 +2013,10,20,9,30,597,80,884,3.7,20.400000000000002,54.22,1018,15 +2013,10,20,10,30,730,87,920,3.5,21.1,45.65,1018,15.200000000000001 +2013,10,20,11,30,801,92,934,3.2,21.6,40.57,1017,15.200000000000001 +2013,10,20,12,30,801,95,927,2.9000000000000004,22,40.32,1016,15.200000000000001 +2013,10,20,13,30,730,93,901,2.7,22.3,44.99,1016,15.3 +2013,10,20,14,30,473,235,400,2.7,22.400000000000002,53.29,1015,15.3 +2013,10,20,15,30,128,128,0,2.9000000000000004,22.3,63.800000000000004,1015,15.4 +2013,10,20,16,30,88,87,6,3,22.1,75.56,1014,15.700000000000001 +2013,10,20,17,30,12,12,0,3.1,21.8,87.85000000000001,1014,16.3 +2013,10,20,18,30,0,0,0,3.4000000000000004,21.400000000000002,101.03,1015,16.2 +2013,10,20,19,30,0,0,0,3.7,21.400000000000002,114.11,1015,16.3 +2013,10,20,20,30,0,0,0,4,21.5,127.15,1015,16.400000000000002 +2013,10,20,21,30,0,0,0,4.3,21.6,139.85,1015,16.6 +2013,10,20,22,30,0,0,0,4.6000000000000005,21.900000000000002,151.51,1015,16.8 +2013,10,20,23,30,0,0,0,4.7,22.1,160.01,1015,17.1 +2013,10,21,0,30,0,0,0,4.6000000000000005,22.400000000000002,160.51,1015,17.5 +2013,10,21,1,30,0,0,0,4.5,22.6,152.58,1015,17.8 +2013,10,21,2,30,0,0,0,4.4,22.8,141.1,1015,18.1 +2013,10,21,3,30,0,0,0,4.2,22.900000000000002,128.47,1014,18.400000000000002 +2013,10,21,4,30,0,0,0,4.1000000000000005,23,115.46000000000001,1014,18.8 +2013,10,21,5,30,0,0,0,4.1000000000000005,23.200000000000003,102.39,1015,19.3 +2013,10,21,6,30,0,0,0,3.8000000000000003,23.5,89.08,1015,19.700000000000003 +2013,10,21,7,30,27,27,0,3.6,24.1,76.88,1015,20.400000000000002 +2013,10,21,8,30,97,97,0,3.4000000000000004,24.400000000000002,65.07000000000001,1016,20.900000000000002 +2013,10,21,9,30,107,107,0,3.2,24.3,54.46,1016,21.1 +2013,10,21,10,30,58,58,0,3.5,24.1,45.94,1016,20.8 +2013,10,21,11,30,54,54,0,4.5,23.900000000000002,40.910000000000004,1014,20.700000000000003 +2013,10,21,12,30,171,169,3,5.5,23.8,40.68,1013,21 +2013,10,21,13,30,310,285,34,6,23.8,45.32,1012,21.400000000000002 +2013,10,21,14,30,370,272,165,6.300000000000001,23.700000000000003,53.59,1011,21.8 +2013,10,21,15,30,246,187,134,6.2,23.6,64.06,1010,22.1 +2013,10,21,16,30,37,37,0,5.5,23.400000000000002,75.79,1011,22.200000000000003 +2013,10,21,17,30,6,6,0,5.1000000000000005,23.200000000000003,88.05,1011,22.200000000000003 +2013,10,21,18,30,0,0,0,4.6000000000000005,22.8,101.23,1012,22 +2013,10,21,19,30,0,0,0,4.3,22.6,114.31,1013,21.8 +2013,10,21,20,30,0,0,0,4,22.5,127.36,1013,21.6 +2013,10,21,21,30,0,0,0,3.6,22.400000000000002,140.08,1014,21.6 +2013,10,21,22,30,0,0,0,3,22.400000000000002,151.78,1014,21.700000000000003 +2013,10,21,23,30,0,0,0,2.6,22.400000000000002,160.35,1014,21.8 +2013,10,22,0,30,0,0,0,2.9000000000000004,22.400000000000002,160.83,1013,21.700000000000003 +2013,10,22,1,30,0,0,0,3.3000000000000003,22.200000000000003,152.8,1014,21.6 +2013,10,22,2,30,0,0,0,4.3,21.900000000000002,141.27,1014,21.3 +2013,10,22,3,30,0,0,0,5.7,21.6,128.61,1014,21 +2013,10,22,4,30,0,0,0,6.7,21.3,115.59,1014,20.700000000000003 +2013,10,22,5,30,0,0,0,7.1000000000000005,21,102.52,1015,20.3 +2013,10,22,6,30,0,0,0,7.2,21,89.2,1016,19.700000000000003 +2013,10,22,7,30,176,56,537,7,21.200000000000003,77.04,1017,19.400000000000002 +2013,10,22,8,30,249,175,176,6.7,21.6,65.27,1017,19.3 +2013,10,22,9,30,287,249,65,6.300000000000001,22,54.7,1017,19.3 +2013,10,22,10,30,179,177,2,5.9,22.400000000000002,46.24,1017,19.400000000000002 +2013,10,22,11,30,134,134,0,5.7,22.700000000000003,41.25,1017,19.5 +2013,10,22,12,30,169,167,2,5.6000000000000005,23,41.03,1016,19.5 +2013,10,22,13,30,306,283,34,5.5,23.200000000000003,45.65,1016,19.400000000000002 +2013,10,22,14,30,190,186,6,5.5,23.400000000000002,53.88,1015,19.1 +2013,10,22,15,30,411,73,779,5.4,23.400000000000002,64.31,1015,18.6 +2013,10,22,16,30,203,53,620,5.5,23,76.01,1016,17.900000000000002 +2013,10,22,17,30,19,14,167,5.5,22.700000000000003,88.24,1016,17.400000000000002 +2013,10,22,18,30,0,0,0,5.800000000000001,21.6,101.43,1017,16.5 +2013,10,22,19,30,0,0,0,5.7,21.1,114.5,1018,15.600000000000001 +2013,10,22,20,30,0,0,0,5.5,20.6,127.55,1019,14.700000000000001 +2013,10,22,21,30,0,0,0,5.1000000000000005,20.200000000000003,140.3,1019,14 +2013,10,22,22,30,0,0,0,4.9,19.900000000000002,152.05,1019,13.600000000000001 +2013,10,22,23,30,0,0,0,4.7,19.6,160.69,1019,13.5 +2013,10,23,0,30,0,0,0,4.6000000000000005,19.400000000000002,161.16,1019,13.600000000000001 +2013,10,23,1,30,0,0,0,4.6000000000000005,19.200000000000003,153.02,1019,13.600000000000001 +2013,10,23,2,30,0,0,0,4.5,19,141.43,1019,13.600000000000001 +2013,10,23,3,30,0,0,0,4.3,19,128.75,1019,13.5 +2013,10,23,4,30,0,0,0,4.1000000000000005,18.900000000000002,115.72,1019,13.3 +2013,10,23,5,30,0,0,0,3.9000000000000004,18.900000000000002,102.65,1020,13.100000000000001 +2013,10,23,6,30,0,0,0,3.7,19.1,89.33,1021,13 +2013,10,23,7,30,186,47,630,3.6,19.8,77.21000000000001,1021,13.200000000000001 +2013,10,23,8,30,400,64,810,3.3000000000000003,20.6,65.47,1021,12.9 +2013,10,23,9,30,589,73,898,2.9000000000000004,21.700000000000003,54.94,1021,12.9 +2013,10,23,10,30,726,78,942,2.7,22.8,46.53,1021,12.5 +2013,10,23,11,30,799,80,961,2.5,23.6,41.58,1020,12.200000000000001 +2013,10,23,12,30,802,80,962,2.4000000000000004,24,41.38,1020,12.100000000000001 +2013,10,23,13,30,734,78,945,2.4000000000000004,24.3,45.980000000000004,1019,12.100000000000001 +2013,10,23,14,30,601,73,902,2.4000000000000004,24.400000000000002,54.17,1018,12.200000000000001 +2013,10,23,15,30,418,64,824,2.4000000000000004,24.400000000000002,64.57000000000001,1018,12.4 +2013,10,23,16,30,204,48,658,2.4000000000000004,24.1,76.24,1018,12.600000000000001 +2013,10,23,17,30,17,12,191,2.3000000000000003,23.8,88.43,1019,13.100000000000001 +2013,10,23,18,30,0,0,0,2.1,23.3,101.62,1019,12.700000000000001 +2013,10,23,19,30,0,0,0,2.1,23,114.69,1020,13 +2013,10,23,20,30,0,0,0,2.1,22.700000000000003,127.75,1020,13.3 +2013,10,23,21,30,0,0,0,2.3000000000000003,22.3,140.51,1020,13.600000000000001 +2013,10,23,22,30,0,0,0,2.5,22,152.31,1020,13.9 +2013,10,23,23,30,0,0,0,2.6,21.700000000000003,161.02,1020,14.200000000000001 +2013,10,24,0,30,0,0,0,2.5,21.6,161.47,1020,14.4 +2013,10,24,1,30,0,0,0,2.4000000000000004,21.400000000000002,153.24,1020,14.4 +2013,10,24,2,30,0,0,0,2.1,21.3,141.59,1020,14.4 +2013,10,24,3,30,0,0,0,1.8,21.5,128.88,1020,14.200000000000001 +2013,10,24,4,30,0,0,0,1.6,21.5,115.85000000000001,1021,14.200000000000001 +2013,10,24,5,30,0,0,0,1.7000000000000002,21.3,102.79,1021,14.200000000000001 +2013,10,24,6,30,0,0,0,2,21.3,89.45,1022,14.5 +2013,10,24,7,30,180,48,601,2.2,21.8,77.37,1023,15.100000000000001 +2013,10,24,8,30,391,68,784,2.2,22.6,65.66,1023,15.3 +2013,10,24,9,30,575,79,869,2.1,23.5,55.18,1023,15.600000000000001 +2013,10,24,10,30,711,85,914,2.1,24.200000000000003,46.82,1023,15.600000000000001 +2013,10,24,11,30,781,89,931,2.1,24.6,41.92,1023,15.700000000000001 +2013,10,24,12,30,784,90,929,2.1,24.700000000000003,41.730000000000004,1022,15.9 +2013,10,24,13,30,717,87,912,2.2,24.8,46.300000000000004,1021,15.9 +2013,10,24,14,30,588,81,873,2.4000000000000004,24.700000000000003,54.45,1021,16.1 +2013,10,24,15,30,407,69,794,2.4000000000000004,24.6,64.81,1021,16.1 +2013,10,24,16,30,197,50,625,2.4000000000000004,24.1,76.46000000000001,1021,16.2 +2013,10,24,17,30,15,12,154,2.4000000000000004,23.8,88.61,1021,16.6 +2013,10,24,18,30,0,0,0,2.6,23,101.81,1022,16.3 +2013,10,24,19,30,0,0,0,2.7,22.8,114.87,1022,16.2 +2013,10,24,20,30,0,0,0,2.8000000000000003,22.700000000000003,127.94,1023,16.1 +2013,10,24,21,30,0,0,0,2.7,22.700000000000003,140.72,1023,15.9 +2013,10,24,22,30,0,0,0,2.5,22.700000000000003,152.57,1023,15.8 +2013,10,24,23,30,0,0,0,2.3000000000000003,22.700000000000003,161.35,1023,15.8 +2013,10,25,0,30,0,0,0,2.2,22.700000000000003,161.79,1023,15.700000000000001 +2013,10,25,1,30,0,0,0,2.3000000000000003,22.3,153.46,1023,15.8 +2013,10,25,2,30,0,0,0,2.7,21.8,141.75,1024,16.2 +2013,10,25,3,30,0,0,0,3.5,21.400000000000002,129.02,1024,16.7 +2013,10,25,4,30,0,0,0,4.4,21,115.97,1024,17.3 +2013,10,25,5,30,0,0,0,5.300000000000001,20.6,102.92,1025,17.7 +2013,10,25,6,30,0,0,0,6,20.5,89.58,1025,17.900000000000002 +2013,10,25,7,30,172,54,550,6.6000000000000005,20.700000000000003,77.54,1026,18 +2013,10,25,8,30,380,77,741,6.9,21,65.86,1026,17.8 +2013,10,25,9,30,565,89,838,6.9,21.400000000000002,55.42,1027,17.8 +2013,10,25,10,30,698,99,880,6.7,21.8,47.11,1027,17.8 +2013,10,25,11,30,768,106,893,6.6000000000000005,22.1,42.25,1026,17.8 +2013,10,25,12,30,772,103,901,6.4,22.3,42.07,1026,17.8 +2013,10,25,13,30,703,103,873,6.300000000000001,22.5,46.62,1025,17.8 +2013,10,25,14,30,571,99,819,6.2,22.5,54.730000000000004,1024,17.8 +2013,10,25,15,30,392,83,735,6.2,22.5,65.06,1024,17.7 +2013,10,25,16,30,185,59,547,6,22.1,76.67,1024,17.7 +2013,10,25,17,30,12,11,89,5.9,21.900000000000002,88.78,1024,17.7 +2013,10,25,18,30,0,0,0,5.9,21.400000000000002,101.99000000000001,1025,17.7 +2013,10,25,19,30,0,0,0,6,21.400000000000002,115.05,1025,17.6 +2013,10,25,20,30,0,0,0,6.1000000000000005,21.3,128.12,1025,17.6 +2013,10,25,21,30,0,0,0,6.1000000000000005,21.200000000000003,140.92000000000002,1025,17.6 +2013,10,25,22,30,0,0,0,6.1000000000000005,21,152.81,1024,17.6 +2013,10,25,23,30,0,0,0,5.9,20.8,161.68,1024,17.6 +2013,10,26,0,30,0,0,0,5.5,20.6,162.1,1024,17.5 +2013,10,26,1,30,0,0,0,5.2,20.5,153.67000000000002,1024,17.5 +2013,10,26,2,30,0,0,0,4.9,20.400000000000002,141.91,1023,17.5 +2013,10,26,3,30,0,0,0,4.7,20.400000000000002,129.16,1023,17.6 +2013,10,26,4,30,0,0,0,4.5,20.400000000000002,116.10000000000001,1023,17.7 +2013,10,26,5,30,0,0,0,4.5,20.5,103.05,1023,17.7 +2013,10,26,6,30,0,0,0,4.5,20.900000000000002,89.71000000000001,1023,17.900000000000002 +2013,10,26,7,30,169,56,531,4.6000000000000005,21.8,77.71000000000001,1023,18.1 +2013,10,26,8,30,222,170,127,4.7,22.8,66.06,1024,18.2 +2013,10,26,9,30,332,255,136,4.6000000000000005,23.6,55.660000000000004,1024,18.400000000000002 +2013,10,26,10,30,505,304,296,4.6000000000000005,24.1,47.4,1023,18.5 +2013,10,26,11,30,765,102,900,4.4,24.3,42.58,1023,18.5 +2013,10,26,12,30,769,97,911,4.3,24.5,42.410000000000004,1022,18.5 +2013,10,26,13,30,480,319,235,4.3,24.5,46.94,1021,18.5 +2013,10,26,14,30,570,87,844,4.3,24.400000000000002,55.01,1021,18.5 +2013,10,26,15,30,392,73,763,4.3,24.200000000000003,65.3,1020,18.5 +2013,10,26,16,30,130,82,210,4.1000000000000005,23.700000000000003,76.88,1020,18.6 +2013,10,26,17,30,12,11,86,4,23.400000000000002,88.96000000000001,1020,18.8 +2013,10,26,18,30,0,0,0,3.9000000000000004,22.8,102.17,1020,18.8 +2013,10,26,19,30,0,0,0,4,22.700000000000003,115.22,1021,18.900000000000002 +2013,10,26,20,30,0,0,0,4.1000000000000005,22.700000000000003,128.3,1020,19 +2013,10,26,21,30,0,0,0,4.3,22.700000000000003,141.12,1020,19.1 +2013,10,26,22,30,0,0,0,4.4,22.700000000000003,153.06,1020,19.1 +2013,10,26,23,30,0,0,0,4.800000000000001,22.8,162,1019,19.200000000000003 +2013,10,27,0,30,0,0,0,5.4,22.900000000000002,162.41,1018,19.3 +2013,10,27,1,30,0,0,0,5.9,23,153.88,1018,19.400000000000002 +2013,10,27,2,30,0,0,0,5.6000000000000005,23.1,142.07,1018,19.5 +2013,10,27,3,30,0,0,0,5,23,129.29,1018,19.6 +2013,10,27,4,30,0,0,0,4.6000000000000005,22.900000000000002,116.24000000000001,1018,19.8 +2013,10,27,5,30,0,0,0,4.2,22.8,103.19,1018,19.900000000000002 +2013,10,27,6,30,0,0,0,3.8000000000000003,22.900000000000002,89.84,1018,19.900000000000002 +2013,10,27,7,30,3,3,0,3.7,23.1,77.88,1018,20.200000000000003 +2013,10,27,8,30,81,81,0,3.8000000000000003,23.3,66.26,1019,20.400000000000002 +2013,10,27,9,30,343,254,159,3.9000000000000004,23.5,55.9,1018,20.6 +2013,10,27,10,30,291,270,32,4,23.700000000000003,47.69,1018,20.8 +2013,10,27,11,30,716,136,791,3.9000000000000004,23.900000000000002,42.910000000000004,1017,21 +2013,10,27,12,30,715,141,782,3.7,24.1,42.75,1016,21.200000000000003 +2013,10,27,13,30,202,198,6,3.4000000000000004,24.3,47.25,1016,21.3 +2013,10,27,14,30,334,259,131,3,24.400000000000002,55.28,1015,21.3 +2013,10,27,15,30,95,95,0,2.6,24.3,65.54,1015,21.200000000000003 +2013,10,27,16,30,38,38,0,2.3000000000000003,23.900000000000002,77.09,1016,21.1 +2013,10,27,17,30,0,0,0,2.1,23.700000000000003,89.13,1016,21 +2013,10,27,18,30,0,0,0,1.8,23.1,102.35000000000001,1017,20.6 +2013,10,27,19,30,0,0,0,1.6,22.8,115.39,1017,20.400000000000002 +2013,10,27,20,30,0,0,0,1.6,22.6,128.47,1017,20.3 +2013,10,27,21,30,0,0,0,1.7000000000000002,22.5,141.31,1017,20.200000000000003 +2013,10,27,22,30,0,0,0,1.8,22.400000000000002,153.29,1017,20.200000000000003 +2013,10,27,23,30,0,0,0,1.9000000000000001,22.3,162.32,1017,20.3 +2013,10,28,0,30,0,0,0,2,22.200000000000003,162.72,1017,20.3 +2013,10,28,1,30,0,0,0,2,22.3,154.09,1017,20.400000000000002 +2013,10,28,2,30,0,0,0,1.9000000000000001,22.400000000000002,142.22,1017,20.400000000000002 +2013,10,28,3,30,0,0,0,1.7000000000000002,22.5,129.43,1017,20.400000000000002 +2013,10,28,4,30,0,0,0,1.6,22.6,116.37,1018,20.5 +2013,10,28,5,30,0,0,0,1.6,22.6,103.33,1018,20.5 +2013,10,28,6,30,0,0,0,1.8,23,89.96000000000001,1019,20.6 +2013,10,28,7,30,158,54,504,2.3000000000000003,23.6,78.05,1019,21 +2013,10,28,8,30,360,76,713,2.7,24.3,66.47,1020,21.400000000000002 +2013,10,28,9,30,539,88,809,2.9000000000000004,25,56.14,1020,21.8 +2013,10,28,10,30,670,94,862,3.1,25.5,47.980000000000004,1020,22 +2013,10,28,11,30,554,335,300,3.3000000000000003,25.700000000000003,43.230000000000004,1019,22 +2013,10,28,12,30,573,327,337,3.6,25.8,43.08,1019,22 +2013,10,28,13,30,579,238,506,3.9000000000000004,25.900000000000002,47.56,1018,22 +2013,10,28,14,30,548,88,813,4.2,25.8,55.550000000000004,1018,21.900000000000002 +2013,10,28,15,30,372,78,716,4.3,25.6,65.77,1018,21.8 +2013,10,28,16,30,170,55,522,4.5,25.200000000000003,77.3,1018,21.8 +2013,10,28,17,30,0,0,0,4.6000000000000005,25,89.29,1018,21.8 +2013,10,28,18,30,0,0,0,5.2,24.5,102.52,1019,21.8 +2013,10,28,19,30,0,0,0,5.6000000000000005,24.400000000000002,115.56,1019,21.8 +2013,10,28,20,30,0,0,0,5.9,24.3,128.64000000000001,1020,21.6 +2013,10,28,21,30,0,0,0,6.1000000000000005,24.200000000000003,141.49,1020,21.400000000000002 +2013,10,28,22,30,0,0,0,6.2,24.1,153.52,1020,21.200000000000003 +2013,10,28,23,30,0,0,0,6.2,24.1,162.63,1020,21.1 +2013,10,29,0,30,0,0,0,6.2,24,163.02,1020,21 +2013,10,29,1,30,0,0,0,6.1000000000000005,24,154.3,1020,20.900000000000002 +2013,10,29,2,30,0,0,0,6,23.900000000000002,142.38,1019,20.700000000000003 +2013,10,29,3,30,0,0,0,5.800000000000001,23.900000000000002,129.56,1019,20.6 +2013,10,29,4,30,0,0,0,5.5,23.900000000000002,116.5,1019,20.700000000000003 +2013,10,29,5,30,0,0,0,5.2,23.900000000000002,103.46000000000001,1019,20.8 +2013,10,29,6,30,0,0,0,4.9,24.1,90.09,1020,21 +2013,10,29,7,30,155,55,490,4.9,24.8,78.22,1020,21.400000000000002 +2013,10,29,8,30,356,80,696,4.9,25.3,66.67,1021,21.700000000000003 +2013,10,29,9,30,535,92,800,5,25.6,56.39,1021,21.900000000000002 +2013,10,29,10,30,664,103,842,5.2,25.8,48.26,1020,21.900000000000002 +2013,10,29,11,30,732,111,857,5.300000000000001,25.900000000000002,43.56,1020,21.900000000000002 +2013,10,29,12,30,730,116,845,5.300000000000001,25.8,43.410000000000004,1019,22 +2013,10,29,13,30,664,114,820,5.300000000000001,25.700000000000003,47.86,1018,21.900000000000002 +2013,10,29,14,30,535,106,765,5.300000000000001,25.6,55.82,1018,21.900000000000002 +2013,10,29,15,30,359,92,658,5.2,25.3,66,1018,21.900000000000002 +2013,10,29,16,30,160,65,438,5.2,25.1,77.49,1018,22 +2013,10,29,17,30,0,0,0,5.2,24.900000000000002,89.44,1018,22 +2013,10,29,18,30,0,0,0,5.6000000000000005,24.8,102.68,1019,22.1 +2013,10,29,19,30,0,0,0,5.9,24.700000000000003,115.71000000000001,1019,22.1 +2013,10,29,20,30,0,0,0,6.2,24.700000000000003,128.8,1019,22.200000000000003 +2013,10,29,21,30,0,0,0,6.300000000000001,24.700000000000003,141.67000000000002,1019,22.3 +2013,10,29,22,30,0,0,0,6.4,24.700000000000003,153.74,1019,22.3 +2013,10,29,23,30,0,0,0,6.5,24.700000000000003,162.93,1019,22.400000000000002 +2013,10,30,0,30,0,0,0,6.5,24.700000000000003,163.32,1018,22.5 +2013,10,30,1,30,0,0,0,6.5,24.700000000000003,154.5,1018,22.5 +2013,10,30,2,30,0,0,0,6.2,24.700000000000003,142.53,1017,22.6 +2013,10,30,3,30,0,0,0,6,24.700000000000003,129.7,1017,22.700000000000003 +2013,10,30,4,30,0,0,0,5.800000000000001,24.700000000000003,116.63,1017,22.8 +2013,10,30,5,30,0,0,0,5.800000000000001,24.700000000000003,103.60000000000001,1017,22.900000000000002 +2013,10,30,6,30,0,0,0,6,24.900000000000002,90.22,1018,23.1 +2013,10,30,7,30,5,5,0,6.1000000000000005,25.1,78.4,1018,23.3 +2013,10,30,8,30,158,148,25,6,25.400000000000002,66.87,1018,23.700000000000003 +2013,10,30,9,30,382,239,260,6.1000000000000005,25.5,56.63,1018,23.900000000000002 +2013,10,30,10,30,202,198,6,6.2,25.700000000000003,48.550000000000004,1017,24 +2013,10,30,11,30,477,349,177,6.300000000000001,25.700000000000003,43.88,1017,24.1 +2013,10,30,12,30,513,345,233,6.4,25.700000000000003,43.730000000000004,1015,24.200000000000003 +2013,10,30,13,30,468,311,235,6.5,25.700000000000003,48.160000000000004,1014,24.200000000000003 +2013,10,30,14,30,111,111,0,6.5,25.700000000000003,56.08,1014,24.3 +2013,10,30,15,30,174,158,39,6.4,25.6,66.22,1013,24.200000000000003 +2013,10,30,16,30,17,17,0,6.4,25.5,77.69,1013,24.200000000000003 +2013,10,30,17,30,0,0,0,6.4,25.400000000000002,89.60000000000001,1013,24.1 +2013,10,30,18,30,0,0,0,6.5,25.3,102.84,1014,24.1 +2013,10,30,19,30,0,0,0,6.7,25.3,115.87,1014,24.200000000000003 +2013,10,30,20,30,0,0,0,6.800000000000001,25.3,128.95,1014,24.3 +2013,10,30,21,30,0,0,0,7.1000000000000005,25.3,141.84,1013,24.400000000000002 +2013,10,30,22,30,0,0,0,7.4,25.400000000000002,153.96,1013,24.400000000000002 +2013,10,30,23,30,0,0,0,7.6000000000000005,25.400000000000002,163.24,1012,24.400000000000002 +2013,10,31,0,30,0,0,0,7.800000000000001,25.400000000000002,163.62,1012,24.5 +2013,10,31,1,30,0,0,0,7.800000000000001,25.400000000000002,154.70000000000002,1012,24.5 +2013,10,31,2,30,0,0,0,7.6000000000000005,25.400000000000002,142.69,1012,24.6 +2013,10,31,3,30,0,0,0,7.5,25.400000000000002,129.83,1011,24.700000000000003 +2013,10,31,4,30,0,0,0,7.6000000000000005,25.5,116.76,1011,24.700000000000003 +2013,10,31,5,30,0,0,0,7.7,25.5,103.74000000000001,1011,24.700000000000003 +2013,10,31,6,30,0,0,0,7.800000000000001,25.5,90.96000000000001,1010,24.700000000000003 +2013,10,31,7,30,54,54,0,7.800000000000001,25.5,78.57000000000001,1010,24.6 +2013,10,31,8,30,55,55,0,7.5,25.5,67.08,1011,24.6 +2013,10,31,9,30,134,134,0,6.9,25.400000000000002,56.870000000000005,1011,24.6 +2013,10,31,10,30,70,70,0,6.7,25.200000000000003,48.83,1010,24.700000000000003 +2013,10,31,11,30,95,95,0,6.7,25.1,44.19,1010,24.6 +2013,10,31,12,30,88,88,0,6.1000000000000005,25,44.050000000000004,1009,24.6 +2013,10,31,13,30,97,97,0,5,24.6,48.46,1008,24.3 +2013,10,31,14,30,32,32,0,4.4,24.1,56.33,1009,23.8 +2013,10,31,15,30,10,10,0,4.2,23.5,66.44,1009,22.8 +2013,10,31,16,30,116,77,186,4.1000000000000005,23,77.88,1010,21.700000000000003 +2013,10,31,17,30,0,0,0,3.9000000000000004,22.700000000000003,89.74,1010,20.3 +2013,10,31,18,30,0,0,0,3.4000000000000004,22.3,103,1011,18.8 +2013,10,31,19,30,0,0,0,2.9000000000000004,22.200000000000003,116.01,1011,17.7 +2013,10,31,20,30,0,0,0,2.4000000000000004,22.1,129.1,1012,17 +2013,10,31,21,30,0,0,0,2.1,22,142.01,1012,16.7 +2013,10,31,22,30,0,0,0,2,21.8,154.16,1012,16.7 +2013,10,31,23,30,0,0,0,2.1,21.6,163.53,1011,16.900000000000002 +2013,11,1,0,30,0,0,0,2.3000000000000003,21.3,163.92000000000002,1011,16.900000000000002 +2013,11,1,1,30,0,0,0,2.5,20.900000000000002,154.9,1011,16.8 +2013,11,1,2,30,0,0,0,2.7,20.5,142.84,1012,16.6 +2013,11,1,3,30,0,0,0,2.9000000000000004,20.3,129.97,1012,16.400000000000002 +2013,11,1,4,30,0,0,0,3,20,116.9,1012,16.2 +2013,11,1,5,30,0,0,0,3,19.8,103.88,1012,15.9 +2013,11,1,6,30,0,0,0,3.1,20,91.12,1013,15.700000000000001 +2013,11,1,7,30,163,44,609,3.1,20.700000000000003,78.74,1013,15.9 +2013,11,1,8,30,374,62,808,3,21.5,67.28,1014,16.2 +2013,11,1,9,30,559,72,897,2.7,22.3,57.11,1014,16.2 +2013,11,1,10,30,694,78,942,2.3000000000000003,23,49.11,1014,15.9 +2013,11,1,11,30,764,80,958,1.9000000000000001,23.5,44.51,1013,15.600000000000001 +2013,11,1,12,30,766,81,958,1.7000000000000002,23.900000000000002,44.37,1012,15.3 +2013,11,1,13,30,696,78,937,1.7000000000000002,24.1,48.74,1011,15.3 +2013,11,1,14,30,563,73,889,1.7000000000000002,24.1,56.58,1011,15.5 +2013,11,1,15,30,381,64,802,1.6,24,66.66,1011,15.8 +2013,11,1,16,30,171,47,603,1.4000000000000001,23.6,78.06,1011,16.2 +2013,11,1,17,30,0,0,0,1.3,23.3,89.88,1011,16.7 +2013,11,1,18,30,0,0,0,1.1,22.8,103.15,1012,16.8 +2013,11,1,19,30,0,0,0,1.2000000000000002,22.700000000000003,116.16,1013,17.3 +2013,11,1,20,30,0,0,0,1.4000000000000001,22.6,129.24,1013,17.8 +2013,11,1,21,30,0,0,0,1.4000000000000001,22.5,142.16,1014,18.1 +2013,11,1,22,30,0,0,0,1.3,22.400000000000002,154.36,1014,18.2 +2013,11,1,23,30,0,0,0,1.9000000000000001,22.1,163.82,1014,18.400000000000002 +2013,11,2,0,30,0,0,0,3.1,21.6,164.21,1014,18.8 +2013,11,2,1,30,0,0,0,4.2,20.700000000000003,155.1,1014,18.8 +2013,11,2,2,30,0,0,0,5.1000000000000005,20,142.99,1015,18.400000000000002 +2013,11,2,3,30,0,0,0,6,19.400000000000002,130.1,1015,17.900000000000002 +2013,11,2,4,30,0,0,0,7.2,19.1,117.03,1016,17.8 +2013,11,2,5,30,0,0,0,8.3,18.8,104.02,1018,17.6 +2013,11,2,6,30,0,0,0,8.8,18.6,91.27,1019,16.8 +2013,11,2,7,30,153,54,512,8.9,18.7,78.92,1020,15.600000000000001 +2013,11,2,8,30,369,72,777,8.8,19.200000000000003,67.49,1021,14.8 +2013,11,2,9,30,564,74,908,8.6,19.8,57.35,1022,13.9 +2013,11,2,10,30,705,75,969,8.3,20.400000000000002,49.39,1022,13 +2013,11,2,11,30,778,76,990,8.1,20.8,44.82,1021,12.100000000000001 +2013,11,2,12,30,779,79,985,7.9,21.1,44.68,1021,11.4 +2013,11,2,13,30,710,76,968,7.6000000000000005,21.3,49.03,1020,11 +2013,11,2,14,30,574,70,922,7.4,21.3,56.83,1020,11.100000000000001 +2013,11,2,15,30,390,61,836,7,21.200000000000003,66.86,1020,11.3 +2013,11,2,16,30,175,44,645,6.6000000000000005,20.700000000000003,78.24,1020,11.8 +2013,11,2,17,30,0,0,0,6.4,20.3,90,1020,12.4 +2013,11,2,18,30,0,0,0,6.4,19.5,103.29,1021,12.5 +2013,11,2,19,30,0,0,0,6.6000000000000005,19.1,116.29,1022,12.600000000000001 +2013,11,2,20,30,0,0,0,6.7,18.6,129.38,1022,12.600000000000001 +2013,11,2,21,30,0,0,0,6.800000000000001,18,142.32,1023,12.5 +2013,11,2,22,30,0,0,0,6.800000000000001,17.5,154.56,1023,12.3 +2013,11,2,23,30,0,0,0,6.800000000000001,17.1,164.1,1023,12.200000000000001 +2013,11,3,0,30,0,0,0,6.7,16.7,164.49,1023,12 +2013,11,3,1,30,0,0,0,6.6000000000000005,16.5,155.3,1023,12 +2013,11,3,2,30,0,0,0,6.4,16.3,143.14000000000001,1022,12 +2013,11,3,3,30,0,0,0,6.2,16.3,130.24,1022,12.100000000000001 +2013,11,3,4,30,0,0,0,5.9,16.3,117.16,1022,12.200000000000001 +2013,11,3,5,30,0,0,0,5.6000000000000005,16.400000000000002,104.16,1022,12.200000000000001 +2013,11,3,6,30,0,0,0,5.5,16.8,91.43,1022,12.200000000000001 +2013,11,3,7,30,109,66,229,5.5,17.6,79.09,1022,12.4 +2013,11,3,8,30,371,63,812,5.5,18.5,67.69,1022,12.5 +2013,11,3,9,30,440,186,474,5.1000000000000005,19.1,57.59,1022,12.4 +2013,11,3,10,30,690,81,940,4.4,19.400000000000002,49.67,1022,12.5 +2013,11,3,11,30,758,86,953,4,19.6,45.12,1022,12.600000000000001 +2013,11,3,12,30,758,86,950,3.9000000000000004,19.700000000000003,44.99,1021,12.700000000000001 +2013,11,3,13,30,689,85,927,3.9000000000000004,19.8,49.31,1020,12.9 +2013,11,3,14,30,555,80,875,4.1000000000000005,19.700000000000003,57.07,1020,13.100000000000001 +2013,11,3,15,30,375,67,792,4.3,19.5,67.07000000000001,1019,13.200000000000001 +2013,11,3,16,30,115,71,218,4.5,19.1,78.42,1019,13.4 +2013,11,3,17,30,0,0,0,4.6000000000000005,18.8,90.13,1019,13.700000000000001 +2013,11,3,18,30,0,0,0,4.9,18.5,103.43,1019,13.8 +2013,11,3,19,30,0,0,0,5,18.6,116.43,1019,14 +2013,11,3,20,30,0,0,0,4.800000000000001,18.7,129.51,1019,14.200000000000001 +2013,11,3,21,30,0,0,0,4.7,18.900000000000002,142.46,1020,14.5 +2013,11,3,22,30,0,0,0,4.6000000000000005,19.200000000000003,154.74,1020,14.9 +2013,11,3,23,30,0,0,0,4.6000000000000005,19.5,164.38,1019,15.200000000000001 +2013,11,4,0,30,0,0,0,4.7,19.900000000000002,164.78,1019,15.600000000000001 +2013,11,4,1,30,0,0,0,4.9,20.3,155.49,1018,16 +2013,11,4,2,30,0,0,0,5,20.700000000000003,143.29,1018,16.3 +2013,11,4,3,30,0,0,0,4.9,20.900000000000002,130.38,1017,16.7 +2013,11,4,4,30,0,0,0,4.800000000000001,21.1,117.3,1017,17.1 +2013,11,4,5,30,0,0,0,4.7,21.3,104.31,1017,17.400000000000002 +2013,11,4,6,30,0,0,0,5,21.6,91.59,1018,17.8 +2013,11,4,7,30,89,69,110,5.5,22.3,79.27,1018,18.400000000000002 +2013,11,4,8,30,224,155,184,5.800000000000001,23,67.9,1019,19 +2013,11,4,9,30,364,231,250,6,23.5,57.83,1019,19.3 +2013,11,4,10,30,445,298,227,6.4,23.8,49.95,1019,19.5 +2013,11,4,11,30,388,327,87,6.9,24,45.43,1018,19.6 +2013,11,4,12,30,309,285,33,7.300000000000001,24,45.29,1018,19.700000000000003 +2013,11,4,13,30,234,225,14,7.6000000000000005,24,49.58,1017,19.700000000000003 +2013,11,4,14,30,40,40,0,7.800000000000001,23.900000000000002,57.31,1016,19.700000000000003 +2013,11,4,15,30,124,124,0,8,23.700000000000003,67.27,1016,19.6 +2013,11,4,16,30,33,33,0,8.200000000000001,23.5,78.59,1016,19.5 +2013,11,4,17,30,0,0,0,8.1,23.3,90.86,1016,19.3 +2013,11,4,18,30,0,0,0,8.1,23.200000000000003,103.57000000000001,1017,19.200000000000003 +2013,11,4,19,30,0,0,0,8,23.200000000000003,116.55,1018,19.1 +2013,11,4,20,30,0,0,0,7.7,23.1,129.64000000000001,1018,19 +2013,11,4,21,30,0,0,0,7.5,23.1,142.6,1018,18.900000000000002 +2013,11,4,22,30,0,0,0,7.5,23.200000000000003,154.92000000000002,1018,18.900000000000002 +2013,11,4,23,30,0,0,0,7.5,23.1,164.65,1017,19 +2013,11,5,0,30,0,0,0,7.300000000000001,23.1,165.06,1017,19.1 +2013,11,5,1,30,0,0,0,6.9,23.1,155.68,1017,19.3 +2013,11,5,2,30,0,0,0,6.5,23.200000000000003,143.44,1017,19.5 +2013,11,5,3,30,0,0,0,6.1000000000000005,23.200000000000003,130.51,1017,19.700000000000003 +2013,11,5,4,30,0,0,0,5.9,23.3,117.43,1017,20 +2013,11,5,5,30,0,0,0,5.800000000000001,23.400000000000002,104.45,1017,20.3 +2013,11,5,6,30,0,0,0,5.7,23.5,91.74,1017,20.5 +2013,11,5,7,30,24,24,0,5.6000000000000005,23.8,79.45,1018,20.8 +2013,11,5,8,30,127,127,1,5.5,24.200000000000003,68.1,1018,21.200000000000003 +2013,11,5,9,30,239,216,44,5.5,24.5,58.07,1018,21.5 +2013,11,5,10,30,625,99,822,5.5,24.8,50.230000000000004,1018,21.5 +2013,11,5,11,30,595,264,475,5.6000000000000005,25,45.730000000000004,1017,21.5 +2013,11,5,12,30,423,335,126,5.4,25.1,45.59,1017,21.6 +2013,11,5,13,30,354,296,91,5.300000000000001,25,49.85,1016,21.6 +2013,11,5,14,30,217,204,24,5.1000000000000005,25,57.54,1015,21.700000000000003 +2013,11,5,15,30,250,152,256,5,24.8,67.47,1015,21.8 +2013,11,5,16,30,142,54,451,4.9,24.400000000000002,78.76,1015,22 +2013,11,5,17,30,0,0,0,4.800000000000001,24.200000000000003,91.01,1015,22.1 +2013,11,5,18,30,0,0,0,5,23.900000000000002,103.7,1016,22.1 +2013,11,5,19,30,0,0,0,5.1000000000000005,23.8,116.67,1016,22.200000000000003 +2013,11,5,20,30,0,0,0,5.2,23.8,129.76,1017,22.200000000000003 +2013,11,5,21,30,0,0,0,5.2,23.700000000000003,142.73,1017,22.200000000000003 +2013,11,5,22,30,0,0,0,5.1000000000000005,23.5,155.09,1017,22.3 +2013,11,5,23,30,0,0,0,5.1000000000000005,23.400000000000002,164.91,1017,22.400000000000002 +2013,11,6,0,30,0,0,0,5,23.400000000000002,165.34,1017,22.5 +2013,11,6,1,30,0,0,0,4.9,23.400000000000002,155.87,1016,22.400000000000002 +2013,11,6,2,30,0,0,0,4.6000000000000005,23.3,143.59,1016,22.400000000000002 +2013,11,6,3,30,0,0,0,4.3,23.3,130.65,1016,22.400000000000002 +2013,11,6,4,30,0,0,0,4,23.200000000000003,117.57000000000001,1016,22.400000000000002 +2013,11,6,5,30,0,0,0,3.6,23.200000000000003,104.59,1016,22.5 +2013,11,6,6,30,0,0,0,3.2,23.400000000000002,91.9,1017,22.5 +2013,11,6,7,30,129,49,445,2.7,23.8,79.63,1018,22.700000000000003 +2013,11,6,8,30,321,73,672,2.3000000000000003,24.200000000000003,68.31,1018,23 +2013,11,6,9,30,494,86,778,1.9000000000000001,24.6,58.31,1019,23.1 +2013,11,6,10,30,622,93,832,1.5,24.900000000000002,50.5,1019,23.1 +2013,11,6,11,30,691,95,858,1.2000000000000002,25.1,46.02,1018,23 +2013,11,6,12,30,692,97,854,0.9,25.3,45.89,1017,22.8 +2013,11,6,13,30,627,94,831,0.7000000000000001,25.200000000000003,50.120000000000005,1017,22.5 +2013,11,6,14,30,269,231,72,0.8,24.900000000000002,57.77,1017,22.400000000000002 +2013,11,6,15,30,87,87,0,1.4000000000000001,24.400000000000002,67.66,1017,22.400000000000002 +2013,11,6,16,30,93,71,111,2.6,23.700000000000003,78.92,1018,22.1 +2013,11,6,17,30,0,0,0,3.3000000000000003,23.3,91.15,1018,21.400000000000002 +2013,11,6,18,30,0,0,0,6.4,21.700000000000003,103.82000000000001,1020,20.400000000000002 +2013,11,6,19,30,0,0,0,7.9,20.5,116.79,1021,19.200000000000003 +2013,11,6,20,30,0,0,0,8.700000000000001,19.5,129.88,1022,17.8 +2013,11,6,21,30,0,0,0,8.700000000000001,18.6,142.86,1022,16.7 +2013,11,6,22,30,0,0,0,8.5,17.7,155.26,1022,15.700000000000001 +2013,11,6,23,30,0,0,0,8.4,17,165.17000000000002,1022,15 +2013,11,7,0,30,0,0,0,8.5,16.400000000000002,165.61,1022,14.3 +2013,11,7,1,30,0,0,0,8.6,15.8,156.06,1023,13.700000000000001 +2013,11,7,2,30,0,0,0,8.6,15.200000000000001,143.74,1023,13.200000000000001 +2013,11,7,3,30,0,0,0,8.6,14.8,130.78,1023,12.8 +2013,11,7,4,30,0,0,0,8.700000000000001,14.4,117.71000000000001,1024,12.4 +2013,11,7,5,30,0,0,0,8.8,14,104.74000000000001,1025,12.200000000000001 +2013,11,7,6,30,0,0,0,8.8,13.700000000000001,92.06,1026,12 +2013,11,7,7,30,94,63,175,8.8,13.8,79.8,1026,11.9 +2013,11,7,8,30,252,135,321,8.8,14.3,68.51,1027,11.600000000000001 +2013,11,7,9,30,413,192,423,8.8,15,58.550000000000004,1027,11.200000000000001 +2013,11,7,10,30,681,73,961,8.700000000000001,15.8,50.77,1027,10.9 +2013,11,7,11,30,750,76,977,8.6,16.7,46.32,1027,10.9 +2013,11,7,12,30,597,250,500,8.3,17.5,46.17,1026,11 +2013,11,7,13,30,684,79,948,8.1,18.2,50.38,1026,11.100000000000001 +2013,11,7,14,30,460,149,586,8,18.7,57.99,1026,11.200000000000001 +2013,11,7,15,30,320,89,610,8,18.8,67.84,1026,11.3 +2013,11,7,16,30,162,42,633,8,18.5,79.07000000000001,1026,11.3 +2013,11,7,17,30,0,0,0,8.1,18.2,91.28,1026,11.4 +2013,11,7,18,30,0,0,0,8.4,17.400000000000002,103.94,1027,11.5 +2013,11,7,19,30,0,0,0,8.5,17,116.9,1027,11.5 +2013,11,7,20,30,0,0,0,8.4,16.7,129.98,1027,11.5 +2013,11,7,21,30,0,0,0,8.4,16.400000000000002,142.98,1027,11.600000000000001 +2013,11,7,22,30,0,0,0,8.200000000000001,16,155.41,1027,11.600000000000001 +2013,11,7,23,30,0,0,0,8,15.700000000000001,165.41,1027,11.600000000000001 +2013,11,8,0,30,0,0,0,7.800000000000001,15.4,165.88,1027,11.600000000000001 +2013,11,8,1,30,0,0,0,7.7,15.100000000000001,156.24,1027,11.5 +2013,11,8,2,30,0,0,0,7.7,14.9,143.89000000000001,1027,11.5 +2013,11,8,3,30,0,0,0,7.7,14.8,130.92000000000002,1026,11.4 +2013,11,8,4,30,0,0,0,7.7,14.700000000000001,117.84,1026,11.3 +2013,11,8,5,30,0,0,0,7.7,14.8,104.88,1026,11.3 +2013,11,8,6,30,0,0,0,7.800000000000001,15,92.22,1027,11.3 +2013,11,8,7,30,89,63,151,8,15.700000000000001,79.98,1027,11.3 +2013,11,8,8,30,278,113,457,8.200000000000001,16.6,68.71000000000001,1027,11.100000000000001 +2013,11,8,9,30,530,71,885,8,17.3,58.78,1027,10.8 +2013,11,8,10,30,512,249,419,7.7,17.900000000000002,51.03,1026,10.600000000000001 +2013,11,8,11,30,732,82,946,7.2,18.3,46.6,1026,10.600000000000001 +2013,11,8,12,30,578,274,442,6.6000000000000005,18.5,46.46,1025,10.700000000000001 +2013,11,8,13,30,549,212,532,5.9,18.5,50.63,1024,10.600000000000001 +2013,11,8,14,30,458,146,592,5.300000000000001,18.5,58.2,1023,10.5 +2013,11,8,15,30,255,141,305,4.800000000000001,18.3,68.02,1023,10.4 +2013,11,8,16,30,150,48,545,4.4,17.900000000000002,79.22,1023,10.600000000000001 +2013,11,8,17,30,0,0,0,4.3,17.7,91.41,1023,11.100000000000001 +2013,11,8,18,30,0,0,0,4.3,17.3,104.05,1023,10.9 +2013,11,8,19,30,0,0,0,4.2,17.3,117,1023,10.9 +2013,11,8,20,30,0,0,0,4.2,17.2,130.09,1023,10.9 +2013,11,8,21,30,0,0,0,4.1000000000000005,17.2,143.09,1022,11 +2013,11,8,22,30,0,0,0,3.9000000000000004,17.1,155.56,1022,11.200000000000001 +2013,11,8,23,30,0,0,0,3.6,17.1,165.66,1022,11.3 +2013,11,9,0,30,0,0,0,3.1,17.1,166.15,1021,11.3 +2013,11,9,1,30,0,0,0,2.6,17.2,156.42000000000002,1021,11.200000000000001 +2013,11,9,2,30,0,0,0,2.2,17.2,144.03,1021,11.200000000000001 +2013,11,9,3,30,0,0,0,1.9000000000000001,17.3,131.05,1021,11.3 +2013,11,9,4,30,0,0,0,1.9000000000000001,17.3,117.98,1021,11.600000000000001 +2013,11,9,5,30,0,0,0,2.2,17.400000000000002,105.03,1021,11.9 +2013,11,9,6,30,0,0,0,2.5,17.8,92.38,1022,12.4 +2013,11,9,7,30,127,47,468,3,18.400000000000002,80.16,1023,13.100000000000001 +2013,11,9,8,30,160,142,49,3.4000000000000004,19.1,68.92,1023,13.700000000000001 +2013,11,9,9,30,258,221,72,3.5,19.8,59.02,1023,14 +2013,11,9,10,30,627,91,857,3.3000000000000003,20.3,51.300000000000004,1023,14.100000000000001 +2013,11,9,11,30,696,95,879,3.2,20.700000000000003,46.89,1022,14.3 +2013,11,9,12,30,696,97,874,3.1,21,46.74,1021,14.5 +2013,11,9,13,30,631,94,851,3.1,21.1,50.88,1021,14.8 +2013,11,9,14,30,504,88,795,3.2,21.1,58.410000000000004,1020,14.9 +2013,11,9,15,30,331,75,690,3.3000000000000003,20.900000000000002,68.2,1020,15.100000000000001 +2013,11,9,16,30,137,51,466,3.3000000000000003,20.400000000000002,79.37,1021,15.4 +2013,11,9,17,30,0,0,0,3.3000000000000003,20.1,91.54,1021,15.700000000000001 +2013,11,9,18,30,0,0,0,3.6,19.700000000000003,104.16,1022,15.600000000000001 +2013,11,9,19,30,0,0,0,3.7,19.6,117.10000000000001,1022,15.5 +2013,11,9,20,30,0,0,0,3.8000000000000003,19.400000000000002,130.18,1022,15.4 +2013,11,9,21,30,0,0,0,3.9000000000000004,19.3,143.20000000000002,1022,15.3 +2013,11,9,22,30,0,0,0,4,19.1,155.70000000000002,1022,15.200000000000001 +2013,11,9,23,30,0,0,0,4,19,165.89000000000001,1022,15.100000000000001 +2013,11,10,0,30,0,0,0,4,18.900000000000002,166.41,1022,15 +2013,11,10,1,30,0,0,0,3.9000000000000004,18.7,156.6,1022,14.9 +2013,11,10,2,30,0,0,0,3.8000000000000003,18.6,144.18,1022,14.8 +2013,11,10,3,30,0,0,0,3.8000000000000003,18.400000000000002,131.19,1022,14.700000000000001 +2013,11,10,4,30,0,0,0,3.9000000000000004,18.2,118.12,1023,14.700000000000001 +2013,11,10,5,30,0,0,0,4.2,18,105.17,1023,14.600000000000001 +2013,11,10,6,30,0,0,0,4.6000000000000005,17.900000000000002,92.54,1024,14.600000000000001 +2013,11,10,7,30,75,61,79,4.9,18.1,80.33,1025,14.5 +2013,11,10,8,30,260,121,389,5.1000000000000005,18.6,69.12,1025,14.4 +2013,11,10,9,30,488,95,769,5,19.3,59.25,1025,14.3 +2013,11,10,10,30,622,101,838,4.800000000000001,19.900000000000002,51.56,1025,14.3 +2013,11,10,11,30,694,102,871,4.6000000000000005,20.5,47.17,1024,14.4 +2013,11,10,12,30,702,93,894,4.4,20.900000000000002,47.01,1023,14.5 +2013,11,10,13,30,637,90,871,4.3,21.200000000000003,51.13,1023,14.8 +2013,11,10,14,30,510,84,819,4.2,21.400000000000002,58.620000000000005,1023,15.100000000000001 +2013,11,10,15,30,336,73,714,4,21.400000000000002,68.37,1023,15.5 +2013,11,10,16,30,139,49,497,3.8000000000000003,21,79.51,1023,16.1 +2013,11,10,17,30,0,0,0,3.7,20.700000000000003,91.66,1023,16.5 +2013,11,10,18,30,0,0,0,3.7,20.200000000000003,104.26,1023,16.400000000000002 +2013,11,10,19,30,0,0,0,3.7,20.1,117.19,1024,16.5 +2013,11,10,20,30,0,0,0,3.8000000000000003,19.900000000000002,130.27,1024,16.5 +2013,11,10,21,30,0,0,0,3.9000000000000004,19.6,143.3,1024,16.5 +2013,11,10,22,30,0,0,0,3.9000000000000004,19.400000000000002,155.83,1024,16.5 +2013,11,10,23,30,0,0,0,3.9000000000000004,19.1,166.12,1024,16.400000000000002 +2013,11,11,0,30,0,0,0,3.8000000000000003,18.8,166.67000000000002,1023,16.1 +2013,11,11,1,30,0,0,0,3.7,18.6,156.78,1023,15.9 +2013,11,11,2,30,0,0,0,3.7,18.3,144.33,1023,15.600000000000001 +2013,11,11,3,30,0,0,0,3.7,18.1,131.33,1022,15.4 +2013,11,11,4,30,0,0,0,3.7,18,118.25,1023,15.200000000000001 +2013,11,11,5,30,0,0,0,3.7,17.8,105.32000000000001,1023,15 +2013,11,11,6,30,0,0,0,3.7,17.900000000000002,92.7,1023,14.9 +2013,11,11,7,30,80,60,119,3.7,18.400000000000002,80.51,1024,15 +2013,11,11,8,30,265,113,430,3.6,19.1,69.33,1024,15.100000000000001 +2013,11,11,9,30,393,192,396,3.4000000000000004,19.900000000000002,59.480000000000004,1024,15.3 +2013,11,11,10,30,497,248,403,3.3000000000000003,20.700000000000003,51.82,1024,15.5 +2013,11,11,11,30,540,289,371,3.4000000000000004,21.1,47.44,1023,15.600000000000001 +2013,11,11,12,30,455,324,193,3.5,21.3,47.28,1022,15.700000000000001 +2013,11,11,13,30,516,241,441,3.4000000000000004,21.400000000000002,51.370000000000005,1022,15.700000000000001 +2013,11,11,14,30,499,99,773,3.1,21.400000000000002,58.82,1021,15.600000000000001 +2013,11,11,15,30,190,152,106,3,21.3,68.53,1021,15.600000000000001 +2013,11,11,16,30,131,55,423,2.8000000000000003,21,79.64,1021,15.9 +2013,11,11,17,30,0,0,0,2.8000000000000003,20.8,91.77,1021,15.700000000000001 +2013,11,11,18,30,0,0,0,2.7,20.5,104.36,1022,15.5 +2013,11,11,19,30,0,0,0,2.7,20.400000000000002,117.28,1022,15.5 +2013,11,11,20,30,0,0,0,2.8000000000000003,20.200000000000003,130.36,1022,15.5 +2013,11,11,21,30,0,0,0,2.9000000000000004,19.900000000000002,143.39000000000001,1023,15.5 +2013,11,11,22,30,0,0,0,3.1,19.5,155.96,1023,15.5 +2013,11,11,23,30,0,0,0,3.3000000000000003,19.200000000000003,166.34,1023,15.4 +2013,11,12,0,30,0,0,0,3.6,18.900000000000002,166.92000000000002,1023,15.4 +2013,11,12,1,30,0,0,0,3.8000000000000003,18.6,156.96,1023,15.4 +2013,11,12,2,30,0,0,0,4.1000000000000005,18.3,144.47,1023,15.4 +2013,11,12,3,30,0,0,0,4.4,18.1,131.46,1023,15.3 +2013,11,12,4,30,0,0,0,4.800000000000001,18,118.39,1024,15.200000000000001 +2013,11,12,5,30,0,0,0,5.300000000000001,17.900000000000002,105.47,1024,15.100000000000001 +2013,11,12,6,30,0,0,0,6,17.900000000000002,92.86,1025,15 +2013,11,12,7,30,72,59,80,6.6000000000000005,18.1,80.69,1026,14.9 +2013,11,12,8,30,266,109,449,7,18.7,69.53,1026,14.9 +2013,11,12,9,30,438,137,598,7.5,19.5,59.71,1027,15 +2013,11,12,10,30,562,163,649,8,20.200000000000003,52.08,1027,15 +2013,11,12,11,30,607,208,593,8.5,20.6,47.71,1027,15.100000000000001 +2013,11,12,12,30,577,249,486,8.8,20.900000000000002,47.54,1026,15.200000000000001 +2013,11,12,13,30,507,244,424,8.9,21,51.6,1026,15.5 +2013,11,12,14,30,356,220,265,8.8,20.8,59.01,1026,15.700000000000001 +2013,11,12,15,30,317,97,605,8.8,20.200000000000003,68.69,1027,15.700000000000001 +2013,11,12,16,30,126,63,351,9.1,19.3,79.77,1027,15.600000000000001 +2013,11,12,17,30,0,0,0,9.4,18.8,91.88,1028,15.3 +2013,11,12,18,30,0,0,0,10,16.900000000000002,104.45,1030,14.600000000000001 +2013,11,12,19,30,0,0,0,10.100000000000001,15.600000000000001,117.36,1031,13.5 +2013,11,12,20,30,0,0,0,10.100000000000001,14.5,130.44,1032,12.4 +2013,11,12,21,30,0,0,0,10.100000000000001,13.700000000000001,143.47,1033,11.3 +2013,11,12,22,30,0,0,0,10.200000000000001,12.8,156.08,1033,10.100000000000001 +2013,11,12,23,30,0,0,0,10.3,11.9,166.55,1033,8.6 +2013,11,13,0,30,0,0,0,10.3,11,167.17000000000002,1033,7.1000000000000005 +2013,11,13,1,30,0,0,0,10.200000000000001,10.3,157.13,1033,6 +2013,11,13,2,30,0,0,0,10,9.8,144.61,1033,5.5 +2013,11,13,3,30,0,0,0,9.8,9.4,131.6,1034,5.5 +2013,11,13,4,30,0,0,0,9.600000000000001,9.1,118.53,1034,5.6000000000000005 +2013,11,13,5,30,0,0,0,9.4,8.8,105.61,1034,5.7 +2013,11,13,6,30,0,0,0,9.1,8.6,93.02,1034,5.9 +2013,11,13,7,30,82,56,164,8.8,8.700000000000001,80.86,1035,6.1000000000000005 +2013,11,13,8,30,343,60,817,8.5,9.200000000000001,69.73,1035,6.1000000000000005 +2013,11,13,9,30,402,175,454,8.1,10,59.94,1035,6.1000000000000005 +2013,11,13,10,30,670,76,972,7.6000000000000005,10.9,52.33,1034,6.1000000000000005 +2013,11,13,11,30,739,79,986,7.1000000000000005,11.700000000000001,47.980000000000004,1033,6.300000000000001 +2013,11,13,12,30,740,85,975,6.7,12.4,47.800000000000004,1032,6.4 +2013,11,13,13,30,584,141,716,6.4,13,51.82,1031,6.5 +2013,11,13,14,30,351,219,259,6.1000000000000005,13.4,59.2,1031,6.5 +2013,11,13,15,30,268,120,411,5.9,13.600000000000001,68.84,1031,6.6000000000000005 +2013,11,13,16,30,111,56,314,5.800000000000001,13.4,79.89,1030,6.9 +2013,11,13,17,30,0,0,0,5.800000000000001,13.200000000000001,91.98,1030,7.4 +2013,11,13,18,30,0,0,0,5.6000000000000005,13.100000000000001,104.54,1030,7.5 +2013,11,13,19,30,0,0,0,5.5,13.100000000000001,117.44,1030,7.6000000000000005 +2013,11,13,20,30,0,0,0,5.2,13,130.51,1030,7.7 +2013,11,13,21,30,0,0,0,5,12.8,143.55,1030,7.800000000000001 +2013,11,13,22,30,0,0,0,4.7,12.700000000000001,156.18,1029,7.9 +2013,11,13,23,30,0,0,0,4.5,12.600000000000001,166.75,1029,8 +2013,11,14,0,30,0,0,0,4.1000000000000005,12.600000000000001,167.42000000000002,1028,8.1 +2013,11,14,1,30,0,0,0,3.8000000000000003,12.600000000000001,157.3,1028,8.200000000000001 +2013,11,14,2,30,0,0,0,3.4000000000000004,12.600000000000001,144.76,1027,8.200000000000001 +2013,11,14,3,30,0,0,0,3.1,12.8,131.73,1027,8.3 +2013,11,14,4,30,0,0,0,3.1,13,118.67,1026,8.5 +2013,11,14,5,30,0,0,0,3,13.200000000000001,105.76,1026,8.700000000000001 +2013,11,14,6,30,0,0,0,3,13.600000000000001,93.18,1026,9 +2013,11,14,7,30,83,55,184,3.1,14.200000000000001,81.04,1026,9.3 +2013,11,14,8,30,275,93,531,3.2,15,69.93,1026,9.700000000000001 +2013,11,14,9,30,388,184,411,3.2,15.9,60.160000000000004,1026,10 +2013,11,14,10,30,626,89,883,3.1,16.6,52.58,1025,10.3 +2013,11,14,11,30,695,93,904,3.1,17.1,48.24,1024,10.600000000000001 +2013,11,14,12,30,585,227,536,3.1,17.400000000000002,48.050000000000004,1023,10.8 +2013,11,14,13,30,502,242,423,3.2,17.6,52.04,1022,11.200000000000001 +2013,11,14,14,30,364,212,298,3.3000000000000003,17.7,59.38,1022,11.600000000000001 +2013,11,14,15,30,116,116,0,3.2,17.6,68.99,1021,12.100000000000001 +2013,11,14,16,30,56,56,0,3.3000000000000003,17.5,80.01,1021,12.600000000000001 +2013,11,14,17,30,0,0,0,3.3000000000000003,17.400000000000002,92.08,1021,12.9 +2013,11,14,18,30,0,0,0,3.8000000000000003,17.7,104.62,1021,13.3 +2013,11,14,19,30,0,0,0,4.3,17.8,117.51,1020,13.9 +2013,11,14,20,30,0,0,0,4.5,17.900000000000002,130.57,1019,14.600000000000001 +2013,11,14,21,30,0,0,0,4,17.900000000000002,143.63,1019,14.9 +2013,11,14,22,30,0,0,0,3.5,17.900000000000002,156.29,1019,15 +2013,11,14,23,30,0,0,0,3.4000000000000004,18,166.94,1018,15.100000000000001 +2013,11,15,0,30,0,0,0,3.1,18.1,167.66,1018,15.3 +2013,11,15,1,30,0,0,0,2.6,18.3,157.47,1018,15.3 +2013,11,15,2,30,0,0,0,2.1,18.400000000000002,144.9,1018,15.200000000000001 +2013,11,15,3,30,0,0,0,1.9000000000000001,18.5,131.87,1017,15.100000000000001 +2013,11,15,4,30,0,0,0,2,18.7,118.81,1017,15.200000000000001 +2013,11,15,5,30,0,0,0,2.4000000000000004,18.8,105.91,1017,15.5 +2013,11,15,6,30,0,0,0,2.9000000000000004,19,93.34,1018,15.9 +2013,11,15,7,30,54,53,9,3.4000000000000004,19.5,81.22,1018,16.3 +2013,11,15,8,30,297,69,672,3.7,20.1,70.13,1018,16.900000000000002 +2013,11,15,9,30,348,206,288,3.7,20.8,60.39,1018,17.2 +2013,11,15,10,30,602,89,850,3.6,21.400000000000002,52.83,1017,17.6 +2013,11,15,11,30,673,92,876,3.4000000000000004,21.700000000000003,48.5,1016,18 +2013,11,15,12,30,677,90,883,3.2,21.900000000000002,48.29,1015,18.2 +2013,11,15,13,30,613,89,856,3,21.900000000000002,52.26,1015,18.3 +2013,11,15,14,30,490,84,803,3.1,21.8,59.56,1014,18.400000000000002 +2013,11,15,15,30,318,73,688,3.3000000000000003,21.5,69.13,1014,18.5 +2013,11,15,16,30,127,48,461,3.5,21,80.13,1014,18.7 +2013,11,15,17,30,0,0,0,3.6,20.700000000000003,92.17,1014,18.8 +2013,11,15,18,30,0,0,0,4,20.3,104.7,1015,18.900000000000002 +2013,11,15,19,30,0,0,0,4,20.3,117.58,1015,19 +2013,11,15,20,30,0,0,0,3.9000000000000004,20.3,130.63,1015,19.200000000000003 +2013,11,15,21,30,0,0,0,3.8000000000000003,20.200000000000003,143.69,1015,19.400000000000002 +2013,11,15,22,30,0,0,0,3.7,20.200000000000003,156.38,1015,19.5 +2013,11,15,23,30,0,0,0,3.6,20.200000000000003,167.13,1015,19.6 +2013,11,16,0,30,0,0,0,3.5,20.200000000000003,167.9,1014,19.8 +2013,11,16,1,30,0,0,0,3.4000000000000004,20.3,157.64000000000001,1014,19.900000000000002 +2013,11,16,2,30,0,0,0,3.3000000000000003,20.3,145.04,1014,20.1 +2013,11,16,3,30,0,0,0,3.1,20.3,132.01,1013,20.200000000000003 +2013,11,16,4,30,0,0,0,3,20.400000000000002,118.95,1013,20.400000000000002 +2013,11,16,5,30,0,0,0,3.1,20.5,106.06,1013,20.5 +2013,11,16,6,30,0,0,0,3.2,20.8,93.5,1014,20.8 +2013,11,16,7,30,105,41,423,3.6,21.6,81.4,1014,21 +2013,11,16,8,30,291,67,668,4,22.3,70.33,1014,21.5 +2013,11,16,9,30,461,81,774,4.2,22.8,60.61,1014,21.8 +2013,11,16,10,30,585,91,823,4.4,23.1,53.07,1014,21.900000000000002 +2013,11,16,11,30,515,288,344,4.5,23.200000000000003,48.75,1013,22 +2013,11,16,12,30,509,294,324,4.5,23.200000000000003,48.53,1013,22 +2013,11,16,13,30,463,263,329,4.6000000000000005,23.1,52.47,1012,22 +2013,11,16,14,30,324,223,201,4.6000000000000005,23,59.730000000000004,1011,22 +2013,11,16,15,30,229,138,258,4.6000000000000005,22.900000000000002,69.27,1011,22.1 +2013,11,16,16,30,30,30,0,4.7,22.8,80.24,1011,22.200000000000003 +2013,11,16,17,30,0,0,0,4.7,22.6,92.26,1011,22.3 +2013,11,16,18,30,0,0,0,5.300000000000001,22.6,104.77,1011,22.400000000000002 +2013,11,16,19,30,0,0,0,5.4,22.6,117.63,1012,22.6 +2013,11,16,20,30,0,0,0,5.4,22.700000000000003,130.69,1012,22.700000000000003 +2013,11,16,21,30,0,0,0,5.4,22.700000000000003,143.75,1012,22.700000000000003 +2013,11,16,22,30,0,0,0,5.4,22.8,156.47,1012,22.8 +2013,11,16,23,30,0,0,0,5.4,22.900000000000002,167.3,1011,22.900000000000002 +2013,11,17,0,30,0,0,0,5.300000000000001,22.900000000000002,168.14000000000001,1011,22.900000000000002 +2013,11,17,1,30,0,0,0,5,22.900000000000002,157.81,1011,22.900000000000002 +2013,11,17,2,30,0,0,0,4.6000000000000005,22.900000000000002,145.18,1011,22.900000000000002 +2013,11,17,3,30,0,0,0,4.2,22.900000000000002,132.14000000000001,1011,22.900000000000002 +2013,11,17,4,30,0,0,0,3.8000000000000003,22.900000000000002,119.09,1011,22.900000000000002 +2013,11,17,5,30,0,0,0,3.7,22.900000000000002,106.2,1011,22.900000000000002 +2013,11,17,6,30,0,0,0,3.7,22.900000000000002,93.66,1012,22.900000000000002 +2013,11,17,7,30,44,44,0,3.8000000000000003,23.1,81.57000000000001,1012,23.1 +2013,11,17,8,30,59,59,0,3.8000000000000003,23.400000000000002,70.52,1013,23.3 +2013,11,17,9,30,291,216,154,3.8000000000000003,23.8,60.83,1013,23.400000000000002 +2013,11,17,10,30,256,238,31,3.8000000000000003,24,53.31,1013,23.400000000000002 +2013,11,17,11,30,304,276,42,3.6,24.200000000000003,49,1012,23.3 +2013,11,17,12,30,456,312,218,3.4000000000000004,24.3,48.77,1012,23.200000000000003 +2013,11,17,13,30,362,283,131,3.1,24.200000000000003,52.67,1011,23.1 +2013,11,17,14,30,454,110,688,2.9000000000000004,24,59.9,1011,23.1 +2013,11,17,15,30,160,141,55,2.7,23.8,69.4,1011,23.1 +2013,11,17,16,30,75,62,81,2.5,23.400000000000002,80.34,1011,23.1 +2013,11,17,17,30,0,0,0,2.4000000000000004,23.200000000000003,92.34,1012,23.1 +2013,11,17,18,30,0,0,0,2.3000000000000003,22.900000000000002,104.83,1012,22.900000000000002 +2013,11,17,19,30,0,0,0,2.3000000000000003,22.700000000000003,117.69,1013,22.700000000000003 +2013,11,17,20,30,0,0,0,2.3000000000000003,22.6,130.74,1013,22.6 +2013,11,17,21,30,0,0,0,2.2,22.5,143.8,1013,22.5 +2013,11,17,22,30,0,0,0,2.2,22.400000000000002,156.54,1014,22.400000000000002 +2013,11,17,23,30,0,0,0,2,22.400000000000002,167.47,1014,22.400000000000002 +2013,11,18,0,30,0,0,0,1.8,22.3,168.37,1014,22.3 +2013,11,18,1,30,0,0,0,1.5,22.3,157.97,1014,22.3 +2013,11,18,2,30,0,0,0,1.2000000000000002,22.3,145.32,1014,22.3 +2013,11,18,3,30,0,0,0,1,22.3,132.28,1014,22.3 +2013,11,18,4,30,0,0,0,1,22.200000000000003,119.23,1015,22.200000000000003 +2013,11,18,5,30,0,0,0,1.1,22,106.35000000000001,1015,22 +2013,11,18,6,30,0,0,0,1.5,21.900000000000002,93.82000000000001,1016,21.900000000000002 +2013,11,18,7,30,40,40,0,2,22.1,81.75,1016,21.900000000000002 +2013,11,18,8,30,90,90,0,2.6,22.400000000000002,70.72,1017,22 +2013,11,18,9,30,157,156,1,3.2,22.700000000000003,61.050000000000004,1017,21.900000000000002 +2013,11,18,10,30,111,111,0,3.9000000000000004,22.900000000000002,53.54,1017,21.700000000000003 +2013,11,18,11,30,173,173,1,4.7,22.8,49.24,1017,21.400000000000002 +2013,11,18,12,30,626,141,738,5.5,22.6,49,1016,20.900000000000002 +2013,11,18,13,30,362,281,135,6.2,22.3,52.870000000000005,1016,20.3 +2013,11,18,14,30,102,102,0,6.7,22,60.06,1016,19.5 +2013,11,18,15,30,42,42,0,6.800000000000001,21.6,69.53,1016,18.6 +2013,11,18,16,30,8,8,0,6.800000000000001,21.200000000000003,80.43,1016,18 +2013,11,18,17,30,0,0,0,6.800000000000001,20.900000000000002,92.41,1017,17.7 +2013,11,18,18,30,0,0,0,7,20.400000000000002,104.89,1018,17.5 +2013,11,18,19,30,0,0,0,7,20.200000000000003,117.74000000000001,1018,17 +2013,11,18,20,30,0,0,0,7,20,130.78,1018,16.5 +2013,11,18,21,30,0,0,0,7.1000000000000005,19.700000000000003,143.85,1018,16 +2013,11,18,22,30,0,0,0,7.300000000000001,19.5,156.61,1018,15.4 +2013,11,18,23,30,0,0,0,7.6000000000000005,19.1,167.63,1018,14.5 +2013,11,19,0,30,0,0,0,7.800000000000001,18.6,168.6,1018,13.8 +2013,11,19,1,30,0,0,0,7.9,18.2,158.14000000000001,1018,13.4 +2013,11,19,2,30,0,0,0,7.9,17.900000000000002,145.46,1018,13.100000000000001 +2013,11,19,3,30,0,0,0,7.9,17.6,132.41,1018,13.100000000000001 +2013,11,19,4,30,0,0,0,7.800000000000001,17.3,119.37,1018,13.200000000000001 +2013,11,19,5,30,0,0,0,8,16.900000000000002,106.5,1019,13.4 +2013,11,19,6,30,0,0,0,8.4,16.5,93.98,1020,13.600000000000001 +2013,11,19,7,30,24,24,0,8.9,16.3,81.92,1021,13.600000000000001 +2013,11,19,8,30,126,121,17,9.1,16.3,70.91,1021,13.600000000000001 +2013,11,19,9,30,299,211,183,8.9,16.6,61.26,1021,13.600000000000001 +2013,11,19,10,30,470,237,395,8.5,16.8,53.78,1020,13.600000000000001 +2013,11,19,11,30,434,308,194,8,17.2,49.480000000000004,1020,13.700000000000001 +2013,11,19,12,30,425,311,175,7.5,17.5,49.22,1019,13.8 +2013,11,19,13,30,230,219,17,7.300000000000001,17.8,53.06,1018,13.9 +2013,11,19,14,30,248,213,70,7.1000000000000005,18.1,60.21,1017,13.9 +2013,11,19,15,30,116,116,0,6.9,18.2,69.64,1017,13.8 +2013,11,19,16,30,66,60,42,6.5,18,80.52,1017,13.700000000000001 +2013,11,19,17,30,0,0,0,6.300000000000001,17.8,92.48,1017,13.600000000000001 +2013,11,19,18,30,0,0,0,6.5,17.7,104.94,1017,13.4 +2013,11,19,19,30,0,0,0,6.5,17.7,117.78,1017,13.200000000000001 +2013,11,19,20,30,0,0,0,6.300000000000001,17.7,130.82,1018,13 +2013,11,19,21,30,0,0,0,6.2,17.6,143.89000000000001,1017,12.8 +2013,11,19,22,30,0,0,0,6.1000000000000005,17.5,156.68,1017,12.700000000000001 +2013,11,19,23,30,0,0,0,5.9,17.5,167.78,1017,12.8 +2013,11,20,0,30,0,0,0,5.800000000000001,17.5,168.82,1017,12.9 +2013,11,20,1,30,0,0,0,5.6000000000000005,17.6,158.3,1016,13.200000000000001 +2013,11,20,2,30,0,0,0,5.4,17.8,145.61,1016,13.5 +2013,11,20,3,30,0,0,0,5.300000000000001,17.900000000000002,132.55,1016,13.8 +2013,11,20,4,30,0,0,0,5.2,18.1,119.51,1016,14 +2013,11,20,5,30,0,0,0,5.1000000000000005,18.400000000000002,106.65,1016,14.3 +2013,11,20,6,30,0,0,0,5.1000000000000005,18.7,94.14,1017,14.600000000000001 +2013,11,20,7,30,97,40,418,5.2,19.400000000000002,82.09,1017,15 +2013,11,20,8,30,287,66,682,5.300000000000001,20.200000000000003,71.10000000000001,1018,15.4 +2013,11,20,9,30,458,80,792,5.300000000000001,20.900000000000002,61.47,1018,15.9 +2013,11,20,10,30,585,89,844,5.300000000000001,21.3,54,1017,16.400000000000002 +2013,11,20,11,30,653,94,864,5.2,21.6,49.71,1016,17 +2013,11,20,12,30,488,293,299,5.2,21.8,49.44,1015,17.6 +2013,11,20,13,30,590,95,828,5.1000000000000005,21.900000000000002,53.24,1015,18.1 +2013,11,20,14,30,272,219,109,5.2,21.900000000000002,60.36,1014,18.6 +2013,11,20,15,30,128,125,10,5.4,21.700000000000003,69.76,1014,18.900000000000002 +2013,11,20,16,30,14,14,0,5.5,21.400000000000002,80.61,1015,19.200000000000003 +2013,11,20,17,30,0,0,0,5.5,21.200000000000003,92.55,1015,19.400000000000002 +2013,11,20,18,30,0,0,0,5.7,21,104.99000000000001,1016,19.700000000000003 +2013,11,20,19,30,0,0,0,5.800000000000001,21,117.81,1016,19.900000000000002 +2013,11,20,20,30,0,0,0,5.9,21,130.85,1016,20 +2013,11,20,21,30,0,0,0,6,21.1,143.92000000000002,1016,20.200000000000003 +2013,11,20,22,30,0,0,0,6.1000000000000005,21.3,156.73,1016,20.400000000000002 +2013,11,20,23,30,0,0,0,6.1000000000000005,21.400000000000002,167.92000000000002,1016,20.5 +2013,11,21,0,30,0,0,0,6.1000000000000005,21.5,169.04,1016,20.700000000000003 +2013,11,21,1,30,0,0,0,6,21.6,158.46,1016,20.8 +2013,11,21,2,30,0,0,0,5.800000000000001,21.700000000000003,145.74,1015,20.900000000000002 +2013,11,21,3,30,0,0,0,5.6000000000000005,21.8,132.69,1015,21 +2013,11,21,4,30,0,0,0,5.4,21.8,119.65,1016,21.1 +2013,11,21,5,30,0,0,0,5.1000000000000005,21.8,106.8,1016,21.200000000000003 +2013,11,21,6,30,0,0,0,4.9,21.900000000000002,94.3,1017,21.3 +2013,11,21,7,30,50,47,21,4.800000000000001,22.1,82.27,1018,21.400000000000002 +2013,11,21,8,30,259,91,525,4.9,22.400000000000002,71.3,1018,21.6 +2013,11,21,9,30,435,93,719,5,22.8,61.68,1018,21.700000000000003 +2013,11,21,10,30,491,214,473,5,23.1,54.230000000000004,1018,21.8 +2013,11,21,11,30,632,103,822,4.9,23.200000000000003,49.94,1018,21.8 +2013,11,21,12,30,638,101,830,4.7,23.200000000000003,49.65,1017,21.900000000000002 +2013,11,21,13,30,467,246,372,4.4,23.200000000000003,53.42,1017,22 +2013,11,21,14,30,460,88,754,4.3,23,60.5,1016,22 +2013,11,21,15,30,292,80,615,4.1000000000000005,22.8,69.86,1016,22.1 +2013,11,21,16,30,70,59,65,4,22.5,80.69,1017,22.1 +2013,11,21,17,30,0,0,0,3.9000000000000004,22.3,92.60000000000001,1017,22.1 +2013,11,21,18,30,0,0,0,4.2,22.1,105.03,1018,22.1 +2013,11,21,19,30,0,0,0,4.3,22.1,117.85000000000001,1018,22.1 +2013,11,21,20,30,0,0,0,4.3,22.1,130.87,1018,22.1 +2013,11,21,21,30,0,0,0,4.1000000000000005,22,143.95000000000002,1018,22 +2013,11,21,22,30,0,0,0,3.9000000000000004,21.900000000000002,156.78,1019,21.900000000000002 +2013,11,21,23,30,0,0,0,3.6,21.900000000000002,168.05,1019,21.900000000000002 +2013,11,22,0,30,0,0,0,3.3000000000000003,21.8,169.26,1019,21.8 +2013,11,22,1,30,0,0,0,3.1,21.700000000000003,158.62,1019,21.700000000000003 +2013,11,22,2,30,0,0,0,3,21.6,145.88,1019,21.6 +2013,11,22,3,30,0,0,0,3.2,21.6,132.82,1019,21.6 +2013,11,22,4,30,0,0,0,3.4000000000000004,21.5,119.79,1019,21.5 +2013,11,22,5,30,0,0,0,3.5,21.5,106.94,1020,21.5 +2013,11,22,6,30,0,0,0,3.3000000000000003,21.6,94.46000000000001,1020,21.6 +2013,11,22,7,30,89,38,394,3.1,21.900000000000002,82.44,1021,21.900000000000002 +2013,11,22,8,30,205,120,269,2.7,22.200000000000003,71.48,1021,22.1 +2013,11,22,9,30,233,200,70,2.3000000000000003,22.1,61.89,1022,22.1 +2013,11,22,10,30,316,263,92,2.1,22,54.45,1022,21.900000000000002 +2013,11,22,11,30,158,158,0,1.9000000000000001,21.8,50.160000000000004,1021,21.6 +2013,11,22,12,30,76,76,0,1.9000000000000001,21.700000000000003,49.85,1021,21.3 +2013,11,22,13,30,121,121,0,2.1,21.5,53.59,1020,21 +2013,11,22,14,30,80,80,0,2.5,21.200000000000003,60.63,1020,20.700000000000003 +2013,11,22,15,30,47,47,0,3,20.700000000000003,69.96000000000001,1020,20.400000000000002 +2013,11,22,16,30,39,39,0,3.4000000000000004,20,80.76,1021,20 +2013,11,22,17,30,0,0,0,3.7,19.6,92.66,1021,19.400000000000002 +2013,11,22,18,30,0,0,0,5,18.400000000000002,105.07000000000001,1022,18.400000000000002 +2013,11,22,19,30,0,0,0,5.9,17.6,117.87,1023,17.6 +2013,11,22,20,30,0,0,0,6.5,16.8,130.89000000000001,1023,16.8 +2013,11,22,21,30,0,0,0,6.9,16.2,143.97,1023,16.2 +2013,11,22,22,30,0,0,0,7,15.700000000000001,156.82,1022,15.700000000000001 +2013,11,22,23,30,0,0,0,7.2,15,168.18,1023,15 +2013,11,23,0,30,0,0,0,7.6000000000000005,14.200000000000001,169.47,1023,14.200000000000001 +2013,11,23,1,30,0,0,0,7.6000000000000005,13.700000000000001,158.78,1023,13.700000000000001 +2013,11,23,2,30,0,0,0,7.300000000000001,13.600000000000001,146.02,1023,13.4 +2013,11,23,3,30,0,0,0,7,13.8,132.96,1023,13.5 +2013,11,23,4,30,0,0,0,6.9,14,119.93,1023,13.700000000000001 +2013,11,23,5,30,0,0,0,7,14.100000000000001,107.09,1024,13.700000000000001 +2013,11,23,6,30,0,0,0,7.2,14,94.62,1025,13.600000000000001 +2013,11,23,7,30,22,22,0,7.7,13.9,82.60000000000001,1026,13.5 +2013,11,23,8,30,77,77,0,8.1,13.9,71.67,1026,13.200000000000001 +2013,11,23,9,30,67,67,0,8.200000000000001,13.9,62.09,1027,13.100000000000001 +2013,11,23,10,30,168,168,0,8.3,14,54.660000000000004,1027,13 +2013,11,23,11,30,129,129,0,8.5,14.100000000000001,50.370000000000005,1026,12.9 +2013,11,23,12,30,95,95,0,8.700000000000001,14.200000000000001,50.04,1025,12.8 +2013,11,23,13,30,130,130,0,8.700000000000001,14.3,53.75,1025,12.8 +2013,11,23,14,30,50,50,0,8.8,14.3,60.76,1025,12.8 +2013,11,23,15,30,38,38,0,8.8,14.200000000000001,70.06,1025,12.700000000000001 +2013,11,23,16,30,12,12,0,8.8,13.9,80.82000000000001,1025,12.600000000000001 +2013,11,23,17,30,0,0,0,8.9,13.700000000000001,92.7,1025,12.4 +2013,11,23,18,30,0,0,0,9.1,13.100000000000001,105.10000000000001,1026,12.100000000000001 +2013,11,23,19,30,0,0,0,9.200000000000001,12.700000000000001,117.89,1027,11.8 +2013,11,23,20,30,0,0,0,9.4,12.4,130.91,1028,11.5 +2013,11,23,21,30,0,0,0,9.600000000000001,12.200000000000001,143.99,1028,11.200000000000001 +2013,11,23,22,30,0,0,0,9.8,12.100000000000001,156.85,1028,10.9 +2013,11,23,23,30,0,0,0,9.9,12,168.29,1028,10.4 +2013,11,24,0,30,0,0,0,10,11.9,169.68,1028,9.700000000000001 +2013,11,24,1,30,0,0,0,10,11.700000000000001,158.93,1027,8.9 +2013,11,24,2,30,0,0,0,10,11.4,146.16,1027,8 +2013,11,24,3,30,0,0,0,9.9,11.3,133.1,1027,7.5 +2013,11,24,4,30,0,0,0,9.8,11.100000000000001,120.07000000000001,1027,7.2 +2013,11,24,5,30,0,0,0,9.600000000000001,11,107.24000000000001,1027,7.2 +2013,11,24,6,30,0,0,0,9.5,10.9,94.78,1028,7.2 +2013,11,24,7,30,43,43,2,9.4,10.9,82.77,1028,7.300000000000001 +2013,11,24,8,30,93,93,0,9.200000000000001,11,71.85000000000001,1029,7.2 +2013,11,24,9,30,101,101,0,8.9,11.3,62.29,1029,7 +2013,11,24,10,30,199,194,8,8.4,11.600000000000001,54.870000000000005,1029,7 +2013,11,24,11,30,213,208,8,7.9,11.9,50.58,1028,7 +2013,11,24,12,30,188,186,3,7.4,12.3,50.24,1027,7 +2013,11,24,13,30,312,264,81,6.800000000000001,12.600000000000001,53.910000000000004,1026,7.1000000000000005 +2013,11,24,14,30,144,144,0,6.4,12.8,60.88,1026,7.1000000000000005 +2013,11,24,15,30,149,134,45,6.1000000000000005,12.9,70.15,1026,7 +2013,11,24,16,30,23,23,0,6,12.8,80.89,1026,7 +2013,11,24,17,30,0,0,0,6,12.700000000000001,92.75,1026,7.300000000000001 +2013,11,24,18,30,0,0,0,6.300000000000001,12.600000000000001,105.13,1026,7.5 +2013,11,24,19,30,0,0,0,6.4,12.5,117.9,1026,7.800000000000001 +2013,11,24,20,30,0,0,0,6.4,12.4,130.91,1026,8 +2013,11,24,21,30,0,0,0,6.300000000000001,12.4,144,1026,8.3 +2013,11,24,22,30,0,0,0,6,12.5,156.88,1026,8.5 +2013,11,24,23,30,0,0,0,5.9,12.5,168.39000000000001,1025,8.700000000000001 +2013,11,25,0,30,0,0,0,5.800000000000001,12.600000000000001,169.89000000000001,1024,8.9 +2013,11,25,1,30,0,0,0,5.9,12.600000000000001,159.09,1024,9.200000000000001 +2013,11,25,2,30,0,0,0,6.2,12.600000000000001,146.3,1023,9.5 +2013,11,25,3,30,0,0,0,6.300000000000001,12.700000000000001,133.23,1022,9.9 +2013,11,25,4,30,0,0,0,6.300000000000001,12.8,120.21000000000001,1021,10.200000000000001 +2013,11,25,5,30,0,0,0,6.1000000000000005,12.9,107.39,1021,10.5 +2013,11,25,6,30,0,0,0,5.9,12.9,94.94,1021,10.8 +2013,11,25,7,30,4,4,0,6.1000000000000005,12.600000000000001,82.94,1021,11 +2013,11,25,8,30,5,5,0,6.7,12,72.04,1021,11.200000000000001 +2013,11,25,9,30,7,7,0,7.300000000000001,11.700000000000001,62.49,1021,11.100000000000001 +2013,11,25,10,30,22,22,0,7.5,11.5,55.08,1020,11 +2013,11,25,11,30,41,41,0,7.7,11.4,50.78,1019,11 +2013,11,25,12,30,89,89,0,7.800000000000001,11.3,50.42,1018,10.8 +2013,11,25,13,30,101,101,0,7.9,11.200000000000001,54.06,1017,10.700000000000001 +2013,11,25,14,30,17,17,0,8,11.3,60.99,1017,10.600000000000001 +2013,11,25,15,30,57,57,0,8.1,11.4,70.23,1016,10.700000000000001 +2013,11,25,16,30,50,50,0,8.3,11.4,80.94,1016,11 +2013,11,25,17,30,0,0,0,8.3,11.3,92.78,1016,11 +2013,11,25,18,30,0,0,0,8.5,10.9,105.15,1016,10.9 +2013,11,25,19,30,0,0,0,8.8,10.5,117.91,1017,10.5 +2013,11,25,20,30,0,0,0,8.9,10.200000000000001,130.92000000000002,1017,10.200000000000001 +2013,11,25,21,30,0,0,0,9,10,144,1016,9.9 +2013,11,25,22,30,0,0,0,8.9,9.8,156.9,1016,9.8 +2013,11,25,23,30,0,0,0,8.700000000000001,9.700000000000001,168.48,1015,9.700000000000001 +2013,11,26,0,30,0,0,0,8.200000000000001,9.5,170.09,1015,9.5 +2013,11,26,1,30,0,0,0,8.4,9.200000000000001,159.24,1016,9.200000000000001 +2013,11,26,2,30,0,0,0,9.1,8.8,146.44,1017,8.8 +2013,11,26,3,30,0,0,0,9.3,8.5,133.37,1017,8.5 +2013,11,26,4,30,0,0,0,9.1,8.3,120.35000000000001,1017,8.3 +2013,11,26,5,30,0,0,0,9.1,8.200000000000001,107.53,1018,8.200000000000001 +2013,11,26,6,30,0,0,0,9.1,8.1,95.09,1018,8.1 +2013,11,26,7,30,16,16,0,8.9,8.3,83.10000000000001,1018,8.1 +2013,11,26,8,30,59,59,0,8.700000000000001,8.5,72.22,1019,8.200000000000001 +2013,11,26,9,30,16,16,0,8.6,8.8,62.68,1019,8.200000000000001 +2013,11,26,10,30,57,57,0,8.5,8.9,55.28,1019,8.3 +2013,11,26,11,30,68,68,0,8.8,8.8,50.980000000000004,1019,8.200000000000001 +2013,11,26,12,30,69,69,0,9.3,8.6,50.6,1018,8.1 +2013,11,26,13,30,84,84,0,9.700000000000001,8.6,54.21,1018,7.9 +2013,11,26,14,30,103,103,0,9.700000000000001,8.700000000000001,61.1,1019,7.800000000000001 +2013,11,26,15,30,19,19,0,9.700000000000001,8.9,70.3,1019,7.800000000000001 +2013,11,26,16,30,62,56,39,9.8,9.1,80.99,1020,7.800000000000001 +2013,11,26,17,30,0,0,0,9.8,9.1,92.81,1021,7.7 +2013,11,26,18,30,0,0,0,9.600000000000001,9.1,105.16,1022,7.800000000000001 +2013,11,26,19,30,0,0,0,9.200000000000001,9.200000000000001,117.92,1023,7.800000000000001 +2013,11,26,20,30,0,0,0,8.8,9.4,130.91,1024,7.9 +2013,11,26,21,30,0,0,0,8.5,9.700000000000001,143.99,1024,7.9 +2013,11,26,22,30,0,0,0,8.3,9.9,156.91,1024,7.7 +2013,11,26,23,30,0,0,0,8.3,10,168.57,1024,7.5 +2013,11,27,0,30,0,0,0,8.3,9.9,170.28,1024,7.1000000000000005 +2013,11,27,1,30,0,0,0,8.4,9.5,159.39000000000001,1024,6.800000000000001 +2013,11,27,2,30,0,0,0,8.3,9.1,146.58,1025,6.6000000000000005 +2013,11,27,3,30,0,0,0,8.200000000000001,8.6,133.5,1025,6.5 +2013,11,27,4,30,0,0,0,7.9,8.1,120.49000000000001,1026,6.5 +2013,11,27,5,30,0,0,0,7.7,7.7,107.68,1027,6.4 +2013,11,27,6,30,0,0,0,7.4,7.5,95.25,1028,6.300000000000001 +2013,11,27,7,30,93,33,510,7.300000000000001,7.6000000000000005,83.26,1029,6.300000000000001 +2013,11,27,8,30,297,56,796,7,8,72.4,1029,6.1000000000000005 +2013,11,27,9,30,354,162,421,6.6000000000000005,8.5,62.870000000000005,1030,5.9 +2013,11,27,10,30,474,203,479,6.2,9,55.480000000000004,1029,5.6000000000000005 +2013,11,27,11,30,701,75,999,5.800000000000001,9.5,51.17,1028,5.300000000000001 +2013,11,27,12,30,706,82,987,5.4,10.100000000000001,50.77,1027,4.800000000000001 +2013,11,27,13,30,644,76,975,5.1000000000000005,10.5,54.34,1027,4.5 +2013,11,27,14,30,514,68,925,4.800000000000001,10.9,61.2,1026,4.1000000000000005 +2013,11,27,15,30,337,57,834,4.7,11,70.37,1026,3.8000000000000003 +2013,11,27,16,30,134,38,619,4.6000000000000005,10.700000000000001,81.03,1027,4 +2013,11,27,17,30,0,0,0,4.7,10.4,92.83,1027,4.7 +2013,11,27,18,30,0,0,0,5,10,105.17,1028,4.9 +2013,11,27,19,30,0,0,0,5.1000000000000005,9.700000000000001,117.91,1029,5 +2013,11,27,20,30,0,0,0,5,9.4,130.9,1029,5.2 +2013,11,27,21,30,0,0,0,4.6000000000000005,9.1,143.99,1029,5.1000000000000005 +2013,11,27,22,30,0,0,0,4.2,8.9,156.92000000000002,1029,5 +2013,11,27,23,30,0,0,0,4.2,8.8,168.64000000000001,1029,5 +2013,11,28,0,30,0,0,0,4.2,8.8,170.47,1028,5.300000000000001 +2013,11,28,1,30,0,0,0,3.8000000000000003,8.700000000000001,159.54,1029,5.300000000000001 +2013,11,28,2,30,0,0,0,3.5,8.8,146.71,1029,5.2 +2013,11,28,3,30,0,0,0,3.3000000000000003,9.1,133.64000000000001,1029,5.300000000000001 +2013,11,28,4,30,0,0,0,3.3000000000000003,9.3,120.63,1029,5.5 +2013,11,28,5,30,0,0,0,3.2,9.4,107.83,1029,5.800000000000001 +2013,11,28,6,30,0,0,0,3,9.700000000000001,95.4,1030,5.800000000000001 +2013,11,28,7,30,46,40,54,2.9000000000000004,10.200000000000001,83.43,1030,6 +2013,11,28,8,30,204,105,330,2.8000000000000003,10.9,72.57000000000001,1030,6.2 +2013,11,28,9,30,361,154,457,2.8000000000000003,11.700000000000001,63.06,1030,6.2 +2013,11,28,10,30,447,221,401,2.7,12.4,55.67,1030,6.5 +2013,11,28,11,30,488,265,358,2.6,12.9,51.36,1030,6.800000000000001 +2013,11,28,12,30,274,254,32,2.7,13.3,50.93,1029,7 +2013,11,28,13,30,416,258,273,3,13.5,54.47,1029,7.5 +2013,11,28,14,30,332,201,272,3.3000000000000003,13.600000000000001,61.300000000000004,1029,7.800000000000001 +2013,11,28,15,30,266,93,514,3.6,13.4,70.44,1029,8 +2013,11,28,16,30,99,48,328,3.9000000000000004,12.8,81.07000000000001,1029,8.5 +2013,11,28,17,30,0,0,0,4,12.3,92.85000000000001,1029,8.700000000000001 +2013,11,28,18,30,0,0,0,4.3,11.9,105.17,1030,8.6 +2013,11,28,19,30,0,0,0,4.4,11.700000000000001,117.91,1031,8.6 +2013,11,28,20,30,0,0,0,4.4,11.600000000000001,130.89000000000001,1031,8.6 +2013,11,28,21,30,0,0,0,4.3,11.5,143.97,1031,8.4 +2013,11,28,22,30,0,0,0,4.3,11.4,156.92000000000002,1031,8.200000000000001 +2013,11,28,23,30,0,0,0,4.3,11.200000000000001,168.71,1031,8.1 +2013,11,29,0,30,0,0,0,4.3,11,170.66,1031,7.9 +2013,11,29,1,30,0,0,0,4.3,10.9,159.69,1031,7.7 +2013,11,29,2,30,0,0,0,4.3,10.8,146.85,1031,7.6000000000000005 +2013,11,29,3,30,0,0,0,4.2,10.8,133.78,1031,7.4 +2013,11,29,4,30,0,0,0,4.4,10.8,120.76,1031,7.300000000000001 +2013,11,29,5,30,0,0,0,4.5,10.8,107.97,1032,7.2 +2013,11,29,6,30,0,0,0,4.5,11,95.56,1032,7.1000000000000005 +2013,11,29,7,30,85,32,480,4.5,11.700000000000001,83.59,1032,6.9 +2013,11,29,8,30,285,55,774,4.5,12.8,72.75,1033,6.9 +2013,11,29,9,30,468,66,891,4.3,13.600000000000001,63.24,1033,6.7 +2013,11,29,10,30,604,73,946,4,14.200000000000001,55.85,1032,6.6000000000000005 +2013,11,29,11,30,680,76,970,3.8000000000000003,14.700000000000001,51.54,1032,6.7 +2013,11,29,12,30,687,77,971,3.7,14.9,51.09,1031,6.7 +2013,11,29,13,30,622,75,944,3.7,15.100000000000001,54.6,1030,6.7 +2013,11,29,14,30,499,70,894,3.9000000000000004,15,61.38,1030,6.800000000000001 +2013,11,29,15,30,326,59,798,3.9000000000000004,14.8,70.49,1030,7 +2013,11,29,16,30,127,39,569,3.9000000000000004,14.100000000000001,81.10000000000001,1030,7.6000000000000005 +2013,11,29,17,30,0,0,0,3.9000000000000004,13.600000000000001,92.87,1030,7.6000000000000005 +2013,11,29,18,30,0,0,0,4.1000000000000005,13.200000000000001,105.17,1030,7.4 +2013,11,29,19,30,0,0,0,4.2,13.200000000000001,117.89,1030,7.300000000000001 +2013,11,29,20,30,0,0,0,4.2,13.3,130.87,1030,7.2 +2013,11,29,21,30,0,0,0,4.2,13.4,143.95000000000002,1030,7.2 +2013,11,29,22,30,0,0,0,4.2,13.5,156.91,1029,7.4 +2013,11,29,23,30,0,0,0,3.9000000000000004,13.600000000000001,168.76,1029,7.6000000000000005 +2013,11,30,0,30,0,0,0,3.5,13.9,170.84,1029,7.7 +2013,11,30,1,30,0,0,0,3.1,14,159.84,1028,7.9 +2013,11,30,2,30,0,0,0,2.7,14.200000000000001,146.99,1028,8 +2013,11,30,3,30,0,0,0,2.3000000000000003,14.200000000000001,133.91,1028,8.200000000000001 +2013,11,30,4,30,0,0,0,1.9000000000000001,14.3,120.9,1028,8.3 +2013,11,30,5,30,0,0,0,1.8,14.3,108.12,1029,8.4 +2013,11,30,6,30,0,0,0,2,14.3,95.71000000000001,1029,8.700000000000001 +2013,11,30,7,30,79,32,430,2.2,14.9,83.75,1029,9.1 +2013,11,30,8,30,270,57,726,2.5,15.8,72.92,1029,10 +2013,11,30,9,30,448,68,850,2.6,16.6,63.42,1029,10.3 +2013,11,30,10,30,581,74,908,2.8000000000000003,17.2,56.04,1029,10.600000000000001 +2013,11,30,11,30,535,213,520,2.8000000000000003,17.7,51.71,1028,11 +2013,11,30,12,30,572,176,632,2.9000000000000004,18,51.24,1027,11.3 +2013,11,30,13,30,602,77,908,3.1,18.1,54.71,1026,11.700000000000001 +2013,11,30,14,30,481,72,856,3.3000000000000003,18,61.46,1025,12 +2013,11,30,15,30,312,62,750,3.4000000000000004,17.7,70.54,1025,12.200000000000001 +2013,11,30,16,30,121,41,518,3.5,17,81.13,1025,12.600000000000001 +2013,11,30,17,30,0,0,0,3.6,16.5,92.87,1025,12.5 +2013,11,30,18,30,0,0,0,3.8000000000000003,16.1,105.16,1025,12.4 +2013,11,30,19,30,0,0,0,3.9000000000000004,16,117.88,1025,12.4 +2013,11,30,20,30,0,0,0,3.9000000000000004,16,130.85,1024,12.5 +2013,11,30,21,30,0,0,0,3.9000000000000004,16,143.93,1024,12.700000000000001 +2013,11,30,22,30,0,0,0,3.7,16,156.89000000000001,1024,12.9 +2013,11,30,23,30,0,0,0,3.5,16.1,168.81,1024,13.100000000000001 +2013,12,1,0,30,0,0,0,3.3000000000000003,16.2,171.02,1023,13.200000000000001 +2013,12,1,1,30,0,0,0,3,16.3,159.98,1023,13.4 +2013,12,1,2,30,0,0,0,2.7,16.400000000000002,147.12,1023,13.5 +2013,12,1,3,30,0,0,0,2.5,16.400000000000002,134.05,1023,13.5 +2013,12,1,4,30,0,0,0,2.4000000000000004,16.5,121.04,1023,13.5 +2013,12,1,5,30,0,0,0,2.6,16.5,108.26,1023,13.5 +2013,12,1,6,30,0,0,0,2.9000000000000004,16.6,95.86,1023,13.600000000000001 +2013,12,1,7,30,73,32,392,3,17.2,83.91,1023,13.8 +2013,12,1,8,30,144,116,94,3.2,18,73.09,1024,14.200000000000001 +2013,12,1,9,30,294,187,240,3.3000000000000003,18.6,63.59,1023,14.4 +2013,12,1,10,30,418,233,333,3.3000000000000003,19,56.21,1023,14.700000000000001 +2013,12,1,11,30,372,290,133,3.2,19.200000000000003,51.88,1022,15 +2013,12,1,12,30,407,295,180,3.1,19.200000000000003,51.38,1020,15.200000000000001 +2013,12,1,13,30,407,258,258,2.9000000000000004,19.200000000000003,54.82,1019,15.4 +2013,12,1,14,30,335,198,288,2.6,19.1,61.54,1019,15.700000000000001 +2013,12,1,15,30,224,123,304,2.5,18.900000000000002,70.59,1018,16 +2013,12,1,16,30,97,49,312,2.6,18.6,81.15,1018,16.2 +2013,12,1,17,30,0,0,0,2.6,18.400000000000002,92.87,1018,16.2 +2013,12,1,18,30,0,0,0,3.2,18.2,105.15,1017,16.400000000000002 +2013,12,1,19,30,0,0,0,3.5,18.2,117.85000000000001,1017,16.6 +2013,12,1,20,30,0,0,0,3.7,18.2,130.82,1016,16.900000000000002 +2013,12,1,21,30,0,0,0,3.9000000000000004,18.3,143.89000000000001,1016,17.1 +2013,12,1,22,30,0,0,0,3.8000000000000003,18.3,156.87,1015,17.3 +2013,12,1,23,30,0,0,0,3.4000000000000004,18.3,168.85,1015,17.5 +2013,12,2,0,30,0,0,0,3.2,18.3,171.20000000000002,1015,17.7 +2013,12,2,1,30,0,0,0,3.3000000000000003,18.3,160.13,1014,17.900000000000002 +2013,12,2,2,30,0,0,0,3.8000000000000003,18.3,147.26,1014,18 +2013,12,2,3,30,0,0,0,4.2,18.400000000000002,134.18,1013,18.1 +2013,12,2,4,30,0,0,0,4.1000000000000005,18.400000000000002,121.18,1012,18.1 +2013,12,2,5,30,0,0,0,4,18.3,108.41,1012,18.2 +2013,12,2,6,30,0,0,0,3.9000000000000004,18.3,96.01,1012,18.2 +2013,12,2,7,30,22,22,0,4,18.7,84.07000000000001,1012,18.2 +2013,12,2,8,30,117,109,28,4.1000000000000005,19.3,73.25,1012,18.400000000000002 +2013,12,2,9,30,250,193,129,4.3,19.8,63.77,1012,18.5 +2013,12,2,10,30,502,143,648,4.5,20.200000000000003,56.39,1012,18.5 +2013,12,2,11,30,490,256,380,4.7,20.5,52.04,1011,18.5 +2013,12,2,12,30,555,194,581,5,20.700000000000003,51.52,1010,18.5 +2013,12,2,13,30,582,86,864,5.2,20.8,54.93,1009,18.400000000000002 +2013,12,2,14,30,465,80,810,5.2,20.700000000000003,61.61,1008,18.400000000000002 +2013,12,2,15,30,301,68,704,5,20.5,70.63,1008,18.5 +2013,12,2,16,30,114,43,462,4.6000000000000005,19.900000000000002,81.17,1008,18.7 +2013,12,2,17,30,0,0,0,4.4,19.5,92.87,1008,18.6 +2013,12,2,18,30,0,0,0,4.2,19,105.13,1008,18.6 +2013,12,2,19,30,0,0,0,4.2,18.900000000000002,117.83,1008,18.7 +2013,12,2,20,30,0,0,0,4.2,18.7,130.78,1008,18.6 +2013,12,2,21,30,0,0,0,4.2,18.6,143.86,1008,18.6 +2013,12,2,22,30,0,0,0,4.2,18.5,156.84,1008,18.5 +2013,12,2,23,30,0,0,0,4.2,18.5,168.88,1008,18.5 +2013,12,3,0,30,0,0,0,4.3,18.5,171.37,1007,18.5 +2013,12,3,1,30,0,0,0,4.7,18.6,160.27,1007,18.6 +2013,12,3,2,30,0,0,0,4.9,18.7,147.39000000000001,1007,18.7 +2013,12,3,3,30,0,0,0,4.9,18.7,134.31,1007,18.7 +2013,12,3,4,30,0,0,0,4.800000000000001,18.7,121.32000000000001,1007,18.7 +2013,12,3,5,30,0,0,0,4.800000000000001,18.7,108.55,1007,18.7 +2013,12,3,6,30,0,0,0,4.6000000000000005,18.8,96.16,1007,18.8 +2013,12,3,7,30,64,38,264,4.5,19.3,84.22,1008,18.8 +2013,12,3,8,30,246,74,602,4.4,19.900000000000002,73.41,1008,19.1 +2013,12,3,9,30,420,92,746,4.4,20.400000000000002,63.93,1008,19.400000000000002 +2013,12,3,10,30,552,103,813,4.5,20.900000000000002,56.550000000000004,1008,19.5 +2013,12,3,11,30,623,110,837,4.6000000000000005,21.200000000000003,52.2,1007,19.5 +2013,12,3,12,30,523,240,456,4.800000000000001,21.400000000000002,51.65,1006,19.5 +2013,12,3,13,30,583,90,860,5,21.5,55.02,1005,19.6 +2013,12,3,14,30,299,209,189,5.1000000000000005,21.400000000000002,61.67,1005,19.6 +2013,12,3,15,30,272,84,567,5,21.1,70.66,1005,19.700000000000003 +2013,12,3,16,30,43,43,0,4.9,20.6,81.18,1005,19.700000000000003 +2013,12,3,17,30,0,0,0,4.9,20.3,92.86,1005,19.700000000000003 +2013,12,3,18,30,0,0,0,4.9,20.1,105.11,1006,19.6 +2013,12,3,19,30,0,0,0,4.7,20,117.79,1007,19.6 +2013,12,3,20,30,0,0,0,4.6000000000000005,19.900000000000002,130.74,1007,19.6 +2013,12,3,21,30,0,0,0,4.7,19.900000000000002,143.82,1007,19.6 +2013,12,3,22,30,0,0,0,4.9,19.900000000000002,156.81,1007,19.6 +2013,12,3,23,30,0,0,0,4.800000000000001,20,168.9,1007,19.6 +2013,12,4,0,30,0,0,0,4.800000000000001,20,171.53,1007,19.6 +2013,12,4,1,30,0,0,0,4.7,20,160.42000000000002,1007,19.700000000000003 +2013,12,4,2,30,0,0,0,4.6000000000000005,20,147.53,1007,19.700000000000003 +2013,12,4,3,30,0,0,0,4.4,20,134.45,1007,19.8 +2013,12,4,4,30,0,0,0,4.1000000000000005,19.8,121.45,1008,19.8 +2013,12,4,5,30,0,0,0,3.8000000000000003,19.8,108.69,1009,19.8 +2013,12,4,6,30,0,0,0,3.5,19.8,96.31,1009,19.8 +2013,12,4,7,30,18,18,0,3.5,20.200000000000003,84.37,1010,20 +2013,12,4,8,30,179,105,262,3.6,20.6,73.57000000000001,1010,20.3 +2013,12,4,9,30,293,182,254,3.7,21,64.1,1011,20.5 +2013,12,4,10,30,331,252,144,3.7,21.3,56.71,1010,20.6 +2013,12,4,11,30,507,238,440,3.7,21.5,52.35,1010,20.6 +2013,12,4,12,30,537,213,524,3.7,21.6,51.77,1009,20.6 +2013,12,4,13,30,413,254,279,3.7,21.6,55.11,1008,20.6 +2013,12,4,14,30,313,205,227,3.5,21.400000000000002,61.72,1008,20.6 +2013,12,4,15,30,242,111,395,3.2,21.200000000000003,70.69,1008,20.6 +2013,12,4,16,30,57,54,20,3.1,20.900000000000002,81.18,1008,20.700000000000003 +2013,12,4,17,30,0,0,0,3,20.700000000000003,92.85000000000001,1008,20.700000000000003 +2013,12,4,18,30,0,0,0,3.2,20.6,105.08,1009,20.6 +2013,12,4,19,30,0,0,0,3.4000000000000004,20.5,117.75,1009,20.5 +2013,12,4,20,30,0,0,0,3.6,20.6,130.7,1010,20.6 +2013,12,4,21,30,0,0,0,3.7,20.6,143.77,1010,20.6 +2013,12,4,22,30,0,0,0,3.8000000000000003,20.6,156.77,1010,20.6 +2013,12,4,23,30,0,0,0,3.8000000000000003,20.6,168.91,1010,20.6 +2013,12,5,0,30,0,0,0,3.8000000000000003,20.6,171.69,1010,20.6 +2013,12,5,1,30,0,0,0,3.8000000000000003,20.6,160.56,1010,20.6 +2013,12,5,2,30,0,0,0,3.8000000000000003,20.6,147.66,1010,20.6 +2013,12,5,3,30,0,0,0,3.9000000000000004,20.6,134.58,1010,20.6 +2013,12,5,4,30,0,0,0,3.9000000000000004,20.5,121.59,1010,20.5 +2013,12,5,5,30,0,0,0,3.8000000000000003,20.5,108.83,1011,20.5 +2013,12,5,6,30,0,0,0,3.6,20.5,96.45,1011,20.5 +2013,12,5,7,30,13,13,0,3.4000000000000004,20.900000000000002,84.52,1012,20.900000000000002 +2013,12,5,8,30,35,35,0,3.3000000000000003,21.3,73.73,1013,21.200000000000003 +2013,12,5,9,30,237,188,112,3.1,21.5,64.25,1013,21.200000000000003 +2013,12,5,10,30,262,233,53,3,21.6,56.870000000000005,1013,21.1 +2013,12,5,11,30,153,153,0,2.8000000000000003,21.6,52.49,1013,20.900000000000002 +2013,12,5,12,30,114,114,0,2.6,21.6,51.89,1012,20.6 +2013,12,5,13,30,211,203,13,2.4000000000000004,21.5,55.19,1011,20.400000000000002 +2013,12,5,14,30,178,171,13,2.2,21.1,61.77,1011,20.200000000000003 +2013,12,5,15,30,59,59,0,1.9000000000000001,20.400000000000002,70.7,1011,19.8 +2013,12,5,16,30,19,19,0,1.7000000000000002,19.400000000000002,81.18,1012,19.200000000000003 +2013,12,5,17,30,0,0,0,1.7000000000000002,18.8,92.83,1012,18.2 +2013,12,5,18,30,0,0,0,3.6,16.7,105.05,1014,16.7 +2013,12,5,19,30,0,0,0,4.9,15.200000000000001,117.71000000000001,1014,15.200000000000001 +2013,12,5,20,30,0,0,0,5.800000000000001,14,130.65,1015,14 +2013,12,5,21,30,0,0,0,6.4,13.100000000000001,143.72,1015,13.100000000000001 +2013,12,5,22,30,0,0,0,6.6000000000000005,12.4,156.73,1015,12.4 +2013,12,5,23,30,0,0,0,6.6000000000000005,11.9,168.91,1015,11.9 +2013,12,6,0,30,0,0,0,6.6000000000000005,11.5,171.85,1014,11.4 +2013,12,6,1,30,0,0,0,6.300000000000001,11.200000000000001,160.69,1014,11.200000000000001 +2013,12,6,2,30,0,0,0,6.1000000000000005,11,147.79,1014,10.9 +2013,12,6,3,30,0,0,0,6.4,10.8,134.71,1014,10.700000000000001 +2013,12,6,4,30,0,0,0,6.9,10.600000000000001,121.72,1015,10.5 +2013,12,6,5,30,0,0,0,7.2,10.3,108.97,1016,10.200000000000001 +2013,12,6,6,30,0,0,0,7,10.100000000000001,96.60000000000001,1017,9.8 +2013,12,6,7,30,9,9,0,7.1000000000000005,10,84.66,1018,9.600000000000001 +2013,12,6,8,30,40,40,0,7.5,10,73.88,1019,9.5 +2013,12,6,9,30,97,97,0,8,10,64.41,1020,9.4 +2013,12,6,10,30,177,175,3,8.5,10,57.02,1021,9.1 +2013,12,6,11,30,75,75,0,8.6,10.100000000000001,52.620000000000005,1021,8.8 +2013,12,6,12,30,92,92,0,8.4,10.3,51.99,1020,8.700000000000001 +2013,12,6,13,30,85,85,0,8.3,10.4,55.26,1020,8.700000000000001 +2013,12,6,14,30,33,33,0,8.3,10.4,61.81,1020,8.6 +2013,12,6,15,30,50,50,0,8.5,10.3,70.71000000000001,1021,8.4 +2013,12,6,16,30,17,17,0,8.6,10,81.16,1022,8.200000000000001 +2013,12,6,17,30,0,0,0,8.700000000000001,9.8,92.8,1022,7.9 +2013,12,6,18,30,0,0,0,9,9.1,105.01,1024,7.5 +2013,12,6,19,30,0,0,0,8.9,8.6,117.67,1025,7.2 +2013,12,6,20,30,0,0,0,8.8,8.200000000000001,130.59,1026,7 +2013,12,6,21,30,0,0,0,8.700000000000001,7.800000000000001,143.66,1026,6.800000000000001 +2013,12,6,22,30,0,0,0,8.6,7.5,156.68,1026,6.6000000000000005 +2013,12,6,23,30,0,0,0,8.5,7.300000000000001,168.91,1027,6.4 +2013,12,7,0,30,0,0,0,8.3,7.1000000000000005,172,1027,6.300000000000001 +2013,12,7,1,30,0,0,0,8.200000000000001,6.9,160.83,1027,6.2 +2013,12,7,2,30,0,0,0,8,6.800000000000001,147.92000000000002,1026,6.1000000000000005 +2013,12,7,3,30,0,0,0,7.800000000000001,6.800000000000001,134.84,1026,6.2 +2013,12,7,4,30,0,0,0,7.7,6.800000000000001,121.86,1027,6.300000000000001 +2013,12,7,5,30,0,0,0,7.5,6.800000000000001,109.11,1027,6.300000000000001 +2013,12,7,6,30,0,0,0,7.300000000000001,6.800000000000001,96.74000000000001,1028,6.4 +2013,12,7,7,30,11,11,0,7.1000000000000005,6.9,84.8,1028,6.4 +2013,12,7,8,30,59,59,0,6.7,7,74.03,1029,6.5 +2013,12,7,9,30,72,72,0,6.2,7.2,64.56,1029,6.4 +2013,12,7,10,30,134,134,0,5.5,7.4,57.160000000000004,1029,6.300000000000001 +2013,12,7,11,30,135,135,0,5,7.7,52.75,1028,6.2 +2013,12,7,12,30,108,108,0,4.800000000000001,8,52.09,1027,6.300000000000001 +2013,12,7,13,30,98,98,0,4.6000000000000005,8.200000000000001,55.33,1026,6.300000000000001 +2013,12,7,14,30,70,70,0,4.6000000000000005,8.4,61.84,1025,6.4 +2013,12,7,15,30,39,39,0,4.5,8.5,70.72,1025,6.5 +2013,12,7,16,30,11,11,0,4.5,8.5,81.15,1025,6.6000000000000005 +2013,12,7,17,30,0,0,0,4.4,8.4,92.77,1025,6.7 +2013,12,7,18,30,0,0,0,4.3,8.3,104.97,1025,6.800000000000001 +2013,12,7,19,30,0,0,0,4,8.200000000000001,117.61,1025,6.800000000000001 +2013,12,7,20,30,0,0,0,3.8000000000000003,8.200000000000001,130.54,1025,6.7 +2013,12,7,21,30,0,0,0,3.5,8.3,143.6,1025,6.800000000000001 +2013,12,7,22,30,0,0,0,3.5,8.4,156.63,1025,7 +2013,12,7,23,30,0,0,0,3.6,8.5,168.89000000000001,1025,7.1000000000000005 +2013,12,8,0,30,0,0,0,3.7,8.5,172.14000000000001,1024,7.300000000000001 +2013,12,8,1,30,0,0,0,3.6,8.5,160.97,1023,7.4 +2013,12,8,2,30,0,0,0,3.6,8.6,148.05,1023,7.5 +2013,12,8,3,30,0,0,0,3.8000000000000003,8.700000000000001,134.97,1022,7.6000000000000005 +2013,12,8,4,30,0,0,0,4.1000000000000005,8.9,121.99000000000001,1022,7.800000000000001 +2013,12,8,5,30,0,0,0,4.2,8.9,109.24000000000001,1022,8 +2013,12,8,6,30,0,0,0,4.2,9.1,96.88,1022,8 +2013,12,8,7,30,13,13,0,4,9.4,84.94,1022,8 +2013,12,8,8,30,46,46,0,3.8000000000000003,9.9,74.17,1022,8.1 +2013,12,8,9,30,124,124,0,3.7,10.3,64.7,1022,8.4 +2013,12,8,10,30,196,190,11,3.6,10.700000000000001,57.300000000000004,1021,8.6 +2013,12,8,11,30,259,241,30,3.5,11.100000000000001,52.870000000000005,1020,8.9 +2013,12,8,12,30,318,275,71,3.6,11.4,52.19,1019,9.1 +2013,12,8,13,30,227,215,21,3.8000000000000003,11.600000000000001,55.39,1019,9.3 +2013,12,8,14,30,139,139,0,4.1000000000000005,11.700000000000001,61.870000000000005,1018,9.5 +2013,12,8,15,30,99,99,0,4.2,11.8,70.72,1018,9.600000000000001 +2013,12,8,16,30,18,18,0,4.2,11.700000000000001,81.13,1018,9.600000000000001 +2013,12,8,17,30,0,0,0,4.2,11.5,92.74,1018,9.8 +2013,12,8,18,30,0,0,0,4.3,11.600000000000001,104.92,1019,9.9 +2013,12,8,19,30,0,0,0,4.4,11.5,117.56,1019,10 +2013,12,8,20,30,0,0,0,4.4,11.5,130.48,1020,10 +2013,12,8,21,30,0,0,0,4.3,11.4,143.54,1020,10 +2013,12,8,22,30,0,0,0,4.3,11.4,156.57,1020,10.100000000000001 +2013,12,8,23,30,0,0,0,4.3,11.3,168.87,1020,10.100000000000001 +2013,12,9,0,30,0,0,0,4.3,11.3,172.28,1019,10 +2013,12,9,1,30,0,0,0,4.2,11.200000000000001,161.1,1019,10 +2013,12,9,2,30,0,0,0,4.3,11.3,148.18,1019,10 +2013,12,9,3,30,0,0,0,4.6000000000000005,11.5,135.1,1018,10.100000000000001 +2013,12,9,4,30,0,0,0,4.9,11.600000000000001,122.12,1018,10.3 +2013,12,9,5,30,0,0,0,5.300000000000001,11.700000000000001,109.37,1019,10.5 +2013,12,9,6,30,0,0,0,5.7,11.700000000000001,97.01,1019,10.600000000000001 +2013,12,9,7,30,8,8,0,6.1000000000000005,11.8,85.08,1020,10.700000000000001 +2013,12,9,8,30,33,33,0,6.2,12.100000000000001,74.31,1020,10.8 +2013,12,9,9,30,45,45,0,6.300000000000001,12.3,64.84,1021,11 +2013,12,9,10,30,77,77,0,6.300000000000001,12.5,57.43,1020,11.200000000000001 +2013,12,9,11,30,89,89,0,6.1000000000000005,12.700000000000001,52.99,1019,11.4 +2013,12,9,12,30,124,124,0,5.800000000000001,12.9,52.27,1018,11.600000000000001 +2013,12,9,13,30,104,104,0,5.5,13.100000000000001,55.44,1018,11.700000000000001 +2013,12,9,14,30,49,49,0,5.300000000000001,13.100000000000001,61.89,1018,11.8 +2013,12,9,15,30,33,33,0,5.5,13,70.72,1018,11.8 +2013,12,9,16,30,26,26,0,5.9,12.700000000000001,81.11,1018,11.8 +2013,12,9,17,30,0,0,0,6.2,12.600000000000001,92.7,1019,11.700000000000001 +2013,12,9,18,30,0,0,0,7,12,104.87,1020,11.5 +2013,12,9,19,30,0,0,0,7.2,11.600000000000001,117.5,1021,11.200000000000001 +2013,12,9,20,30,0,0,0,7.5,11.200000000000001,130.41,1022,10.9 +2013,12,9,21,30,0,0,0,8.1,10.600000000000001,143.47,1023,10.4 +2013,12,9,22,30,0,0,0,8.9,9.9,156.51,1024,9.700000000000001 +2013,12,9,23,30,0,0,0,9.5,9.200000000000001,168.85,1024,8.9 +2013,12,10,0,30,0,0,0,9.600000000000001,8.4,172.42000000000002,1025,8.1 +2013,12,10,1,30,0,0,0,9.600000000000001,7.800000000000001,161.23,1026,7.300000000000001 +2013,12,10,2,30,0,0,0,9.5,7.1000000000000005,148.31,1026,6.6000000000000005 +2013,12,10,3,30,0,0,0,9.4,6.6000000000000005,135.23,1026,6 +2013,12,10,4,30,0,0,0,9.4,6.2,122.25,1027,5.7 +2013,12,10,5,30,0,0,0,9.4,5.800000000000001,109.51,1028,5.4 +2013,12,10,6,30,0,0,0,9.3,5.6000000000000005,97.15,1029,5.1000000000000005 +2013,12,10,7,30,28,28,0,9,5.7,85.2,1030,4.9 +2013,12,10,8,30,98,96,8,8.5,6.2,74.45,1030,4.800000000000001 +2013,12,10,9,30,303,164,328,7.7,7,64.97,1030,4.9 +2013,12,10,10,30,551,94,853,7,7.9,57.56,1030,5.2 +2013,12,10,11,30,630,98,885,6.4,8.8,53.09,1029,5.4 +2013,12,10,12,30,641,96,893,5.9,9.600000000000001,52.35,1028,5.6000000000000005 +2013,12,10,13,30,588,92,876,5.5,10.200000000000001,55.49,1027,5.6000000000000005 +2013,12,10,14,30,473,83,829,5.2,10.700000000000001,61.9,1027,5.6000000000000005 +2013,12,10,15,30,309,67,732,5,10.9,70.7,1027,5.6000000000000005 +2013,12,10,16,30,121,44,498,4.800000000000001,10.700000000000001,81.07000000000001,1027,5.800000000000001 +2013,12,10,17,30,0,0,0,4.7,10.4,92.65,1027,6.2 +2013,12,10,18,30,0,0,0,4.9,10.4,104.81,1027,6.300000000000001 +2013,12,10,19,30,0,0,0,5,10.4,117.43,1028,6.5 +2013,12,10,20,30,0,0,0,4.9,10.200000000000001,130.34,1028,6.7 +2013,12,10,21,30,0,0,0,4.800000000000001,10.100000000000001,143.4,1028,6.9 +2013,12,10,22,30,0,0,0,4.5,9.9,156.44,1028,7 +2013,12,10,23,30,0,0,0,4.2,9.8,168.81,1027,7.1000000000000005 +2013,12,11,0,30,0,0,0,3.7,9.700000000000001,172.55,1027,7.1000000000000005 +2013,12,11,1,30,0,0,0,3.3000000000000003,9.5,161.36,1027,7 +2013,12,11,2,30,0,0,0,3.1,9.5,148.44,1027,6.9 +2013,12,11,3,30,0,0,0,3,9.600000000000001,135.36,1026,7 +2013,12,11,4,30,0,0,0,3.1,9.8,122.38,1026,7.2 +2013,12,11,5,30,0,0,0,3.2,10,109.64,1027,7.4 +2013,12,11,6,30,0,0,0,3.3000000000000003,10.200000000000001,97.28,1028,7.6000000000000005 +2013,12,11,7,30,14,14,0,3.5,10.600000000000001,85.34,1028,7.800000000000001 +2013,12,11,8,30,36,36,0,3.7,11.100000000000001,74.58,1029,7.9 +2013,12,11,9,30,69,69,0,3.6,11.5,65.1,1030,7.9 +2013,12,11,10,30,131,131,0,3.4000000000000004,12,57.68,1030,8 +2013,12,11,11,30,148,148,0,3.2,12.4,53.19,1029,8.1 +2013,12,11,12,30,212,206,9,3.2,12.700000000000001,52.42,1028,8.1 +2013,12,11,13,30,171,171,1,3.5,13,55.52,1028,8.200000000000001 +2013,12,11,14,30,103,103,0,3.8000000000000003,13.200000000000001,61.910000000000004,1028,8.3 +2013,12,11,15,30,44,44,0,4.2,13.100000000000001,70.69,1028,8.3 +2013,12,11,16,30,58,55,21,4.4,12.8,81.04,1029,8.5 +2013,12,11,17,30,0,0,0,4.5,12.600000000000001,92.60000000000001,1029,8.700000000000001 +2013,12,11,18,30,0,0,0,5.1000000000000005,12.3,104.75,1030,8.700000000000001 +2013,12,11,19,30,0,0,0,5.300000000000001,12,117.36,1031,8.700000000000001 +2013,12,11,20,30,0,0,0,5.6000000000000005,11.700000000000001,130.27,1031,8.700000000000001 +2013,12,11,21,30,0,0,0,5.7,11.4,143.32,1031,8.6 +2013,12,11,22,30,0,0,0,6,11.100000000000001,156.37,1032,8.4 +2013,12,11,23,30,0,0,0,6.2,10.700000000000001,168.77,1032,8.200000000000001 +2013,12,12,0,30,0,0,0,6.4,10.4,172.67000000000002,1032,8.1 +2013,12,12,1,30,0,0,0,6.5,10,161.49,1032,7.9 +2013,12,12,2,30,0,0,0,6.6000000000000005,9.8,148.56,1032,7.800000000000001 +2013,12,12,3,30,0,0,0,6.9,9.5,135.48,1031,7.7 +2013,12,12,4,30,0,0,0,7,9.3,122.51,1031,7.7 +2013,12,12,5,30,0,0,0,7,9.1,109.77,1032,7.6000000000000005 +2013,12,12,6,30,0,0,0,7,9,97.41,1033,7.4 +2013,12,12,7,30,37,28,111,7,9.3,85.46000000000001,1033,7.2 +2013,12,12,8,30,190,81,412,6.9,9.9,74.71000000000001,1033,7.1000000000000005 +2013,12,12,9,30,369,96,653,6.7,10.600000000000001,65.23,1033,6.9 +2013,12,12,10,30,384,228,294,6.4,11.3,57.79,1033,6.9 +2013,12,12,11,30,487,235,421,6,11.8,53.29,1032,6.9 +2013,12,12,12,30,557,167,640,5.7,12.200000000000001,52.49,1031,7 +2013,12,12,13,30,471,207,466,5.4,12.600000000000001,55.550000000000004,1031,7 +2013,12,12,14,30,395,147,526,5.300000000000001,12.8,61.910000000000004,1030,7 +2013,12,12,15,30,146,131,46,5.300000000000001,12.9,70.66,1030,7 +2013,12,12,16,30,64,57,47,5.2,12.4,81,1029,7.4 +2013,12,12,17,30,0,0,0,5.2,12,92.54,1029,7.6000000000000005 +2013,12,12,18,30,0,0,0,5.1000000000000005,11.8,104.69,1029,7.5 +2013,12,12,19,30,0,0,0,4.800000000000001,11.8,117.29,1029,7.4 +2013,12,12,20,30,0,0,0,4.4,11.8,130.19,1029,7.4 +2013,12,12,21,30,0,0,0,4.1000000000000005,11.8,143.24,1028,7.4 +2013,12,12,22,30,0,0,0,3.9000000000000004,11.8,156.29,1028,7.4 +2013,12,12,23,30,0,0,0,3.7,12,168.72,1027,7.5 +2013,12,13,0,30,0,0,0,3.5,12.100000000000001,172.78,1026,7.800000000000001 +2013,12,13,1,30,0,0,0,3.3000000000000003,12.4,161.62,1025,8.1 +2013,12,13,2,30,0,0,0,3.2,12.600000000000001,148.69,1024,8.5 +2013,12,13,3,30,0,0,0,3.2,12.9,135.61,1024,9 +2013,12,13,4,30,0,0,0,3.4000000000000004,13.200000000000001,122.63,1023,9.600000000000001 +2013,12,13,5,30,0,0,0,3.5,13.600000000000001,109.89,1023,10.4 +2013,12,13,6,30,0,0,0,3.6,14,97.54,1022,11.100000000000001 +2013,12,13,7,30,23,23,0,3.7,14.700000000000001,85.59,1022,11.9 +2013,12,13,8,30,128,103,93,4,15.5,74.84,1022,12.8 +2013,12,13,9,30,185,167,41,4.2,16.2,65.35,1021,13.700000000000001 +2013,12,13,10,30,392,224,317,4.1000000000000005,16.7,57.9,1020,14.4 +2013,12,13,11,30,298,262,61,4.3,17.2,53.370000000000005,1018,15.100000000000001 +2013,12,13,12,30,140,140,0,4.7,17.400000000000002,52.54,1016,15.8 +2013,12,13,13,30,120,120,0,4.9,17.6,55.58,1015,16.3 +2013,12,13,14,30,22,22,0,4.9,17.8,61.910000000000004,1014,16.8 +2013,12,13,15,30,78,78,0,4.9,17.900000000000002,70.64,1013,17.1 +2013,12,13,16,30,24,24,0,5,18,80.95,1013,17.400000000000002 +2013,12,13,17,30,0,0,0,5.1000000000000005,18,92.48,1012,17.7 +2013,12,13,18,30,0,0,0,5.2,18.3,104.62,1013,18 +2013,12,13,19,30,0,0,0,4.800000000000001,18.2,117.21000000000001,1013,18.1 +2013,12,13,20,30,0,0,0,4.3,18,130.11,1013,18 +2013,12,13,21,30,0,0,0,4.2,17.400000000000002,143.16,1013,17.400000000000002 +2013,12,13,22,30,0,0,0,4.4,16.7,156.21,1013,16.7 +2013,12,13,23,30,0,0,0,4.3,15.8,168.67000000000002,1013,15.8 +2013,12,14,0,30,0,0,0,3.8000000000000003,15,172.89000000000001,1013,15 +2013,12,14,1,30,0,0,0,3.5,14.5,161.74,1012,14 +2013,12,14,2,30,0,0,0,3.4000000000000004,14.3,148.81,1012,13.5 +2013,12,14,3,30,0,0,0,3.5,14.3,135.73,1012,13.4 +2013,12,14,4,30,0,0,0,3.7,14.3,122.75,1012,13.3 +2013,12,14,5,30,0,0,0,3.7,14.3,110.02,1012,13.3 +2013,12,14,6,30,0,0,0,3.9000000000000004,14.3,97.66,1013,13.3 +2013,12,14,7,30,19,19,0,4.3,14.5,85.71000000000001,1014,13.3 +2013,12,14,8,30,31,31,0,4.800000000000001,14.9,74.96000000000001,1014,13.4 +2013,12,14,9,30,14,14,0,5.2,15.3,65.46000000000001,1015,13.5 +2013,12,14,10,30,174,172,3,5.7,15.700000000000001,58,1015,13.100000000000001 +2013,12,14,11,30,25,25,0,6.300000000000001,15.9,53.45,1015,12.4 +2013,12,14,12,30,199,195,6,7,16,52.59,1015,11.8 +2013,12,14,13,30,407,250,279,7.800000000000001,15.9,55.59,1015,11.3 +2013,12,14,14,30,115,115,0,8.4,15.600000000000001,61.89,1016,10.9 +2013,12,14,15,30,107,107,0,8.9,14.8,70.60000000000001,1017,10.3 +2013,12,14,16,30,32,32,0,9.3,13.700000000000001,80.9,1018,9.8 +2013,12,14,17,30,0,0,0,9.5,13,92.42,1019,9.4 +2013,12,14,18,30,0,0,0,9.700000000000001,11.3,104.54,1021,9 +2013,12,14,19,30,0,0,0,9.4,10.5,117.13,1022,8.5 +2013,12,14,20,30,0,0,0,9.1,10,130.02,1023,8 +2013,12,14,21,30,0,0,0,8.700000000000001,9.5,143.07,1024,7.4 +2013,12,14,22,30,0,0,0,8.3,9.1,156.12,1024,7 +2013,12,14,23,30,0,0,0,8,8.700000000000001,168.61,1024,6.7 +2013,12,15,0,30,0,0,0,7.800000000000001,8.4,173,1025,6.5 +2013,12,15,1,30,0,0,0,7.6000000000000005,8.200000000000001,161.86,1025,6.2 +2013,12,15,2,30,0,0,0,7.5,8,148.93,1025,6 +2013,12,15,3,30,0,0,0,7.4,7.800000000000001,135.85,1025,5.9 +2013,12,15,4,30,0,0,0,7.4,7.5,122.88,1026,5.800000000000001 +2013,12,15,5,30,0,0,0,7.2,7.2,110.14,1026,5.6000000000000005 +2013,12,15,6,30,0,0,0,7,7,97.78,1027,5.5 +2013,12,15,7,30,51,26,343,6.7,7.4,85.82000000000001,1027,5.300000000000001 +2013,12,15,8,30,240,57,713,6.4,8.1,75.07000000000001,1028,5.1000000000000005 +2013,12,15,9,30,426,70,861,5.9,8.9,65.57000000000001,1028,4.800000000000001 +2013,12,15,10,30,567,77,929,5.5,9.700000000000001,58.09,1028,4.7 +2013,12,15,11,30,651,80,960,5.300000000000001,10.4,53.52,1027,4.800000000000001 +2013,12,15,12,30,666,82,962,5.2,11.100000000000001,52.63,1026,4.9 +2013,12,15,13,30,613,78,948,5.1000000000000005,11.700000000000001,55.6,1026,5 +2013,12,15,14,30,497,71,904,4.9,12.3,61.870000000000005,1025,5 +2013,12,15,15,30,331,59,815,4.6000000000000005,12.5,70.56,1025,5.1000000000000005 +2013,12,15,16,30,135,40,599,4.5,12.200000000000001,80.84,1026,5.5 +2013,12,15,17,30,0,0,0,4.5,11.9,92.35000000000001,1026,5.7 +2013,12,15,18,30,0,0,0,4.6000000000000005,11.700000000000001,104.47,1026,5.7 +2013,12,15,19,30,0,0,0,4.3,11.5,117.05,1026,5.800000000000001 +2013,12,15,20,30,0,0,0,3.9000000000000004,11.3,129.93,1026,5.6000000000000005 +2013,12,15,21,30,0,0,0,3.5,11.100000000000001,142.98,1027,5.4 +2013,12,15,22,30,0,0,0,3.2,10.8,156.04,1027,5.1000000000000005 +2013,12,15,23,30,0,0,0,2.9000000000000004,10.5,168.54,1027,4.9 +2013,12,16,0,30,0,0,0,2.6,10.200000000000001,173.09,1027,4.7 +2013,12,16,1,30,0,0,0,2.3000000000000003,10,161.98,1027,4.4 +2013,12,16,2,30,0,0,0,1.9000000000000001,9.9,149.05,1027,4 +2013,12,16,3,30,0,0,0,1.6,10,135.97,1027,3.7 +2013,12,16,4,30,0,0,0,1.5,10.100000000000001,123,1026,3.4000000000000004 +2013,12,16,5,30,0,0,0,1.5,10.100000000000001,110.26,1027,3.4000000000000004 +2013,12,16,6,30,0,0,0,1.5,10.100000000000001,97.9,1027,3.4000000000000004 +2013,12,16,7,30,52,23,406,1.4000000000000001,10.4,85.94,1027,3.4000000000000004 +2013,12,16,8,30,242,49,755,1,11.100000000000001,75.18,1028,3.5 +2013,12,16,9,30,427,62,886,0.7000000000000001,12.100000000000001,65.67,1028,3.3000000000000003 +2013,12,16,10,30,569,68,949,0.5,13,58.18,1027,2.9000000000000004 +2013,12,16,11,30,652,72,976,0.5,13.600000000000001,53.59,1027,3.1 +2013,12,16,12,30,668,73,982,0.5,13.9,52.67,1026,3.3000000000000003 +2013,12,16,13,30,616,71,965,0.6000000000000001,14.200000000000001,55.6,1025,3.6 +2013,12,16,14,30,500,65,921,0.9,14.3,61.85,1025,3.8000000000000003 +2013,12,16,15,30,333,56,829,1,14.200000000000001,70.51,1025,4.1000000000000005 +2013,12,16,16,30,137,38,619,1,13.700000000000001,80.78,1025,5.1000000000000005 +2013,12,16,17,30,0,0,0,1,13.3,92.27,1025,4.7 +2013,12,16,18,30,0,0,0,1.2000000000000002,12.9,104.38,1025,4.6000000000000005 +2013,12,16,19,30,0,0,0,1.4000000000000001,12.700000000000001,116.96000000000001,1026,4.800000000000001 +2013,12,16,20,30,0,0,0,1.6,12.600000000000001,129.84,1026,5.1000000000000005 +2013,12,16,21,30,0,0,0,1.8,12.4,142.89000000000001,1026,5.300000000000001 +2013,12,16,22,30,0,0,0,2.1,12.3,155.94,1026,5.7 +2013,12,16,23,30,0,0,0,2.5,12.3,168.47,1025,6.300000000000001 +2013,12,17,0,30,0,0,0,2.6,12.4,173.18,1025,6.9 +2013,12,17,1,30,0,0,0,2.6,12.4,162.1,1025,7.300000000000001 +2013,12,17,2,30,0,0,0,2.4000000000000004,12.5,149.17000000000002,1025,7.7 +2013,12,17,3,30,0,0,0,2.2,12.5,136.09,1025,8 +2013,12,17,4,30,0,0,0,2,12.5,123.11,1025,8.3 +2013,12,17,5,30,0,0,0,1.7000000000000002,12.4,110.37,1026,8.5 +2013,12,17,6,30,0,0,0,1.4000000000000001,12.3,98.02,1026,8.5 +2013,12,17,7,30,48,23,371,1.2000000000000002,12.600000000000001,86.05,1027,8.6 +2013,12,17,8,30,234,51,723,1.2000000000000002,13.200000000000001,75.29,1027,8.9 +2013,12,17,9,30,414,64,853,1.2000000000000002,14.100000000000001,65.77,1028,9.200000000000001 +2013,12,17,10,30,554,72,917,1.2000000000000002,15.200000000000001,58.26,1028,9.5 +2013,12,17,11,30,636,75,946,1.1,16,53.65,1027,9.600000000000001 +2013,12,17,12,30,653,74,956,0.8,16.5,52.69,1026,9.600000000000001 +2013,12,17,13,30,602,72,938,0.6000000000000001,16.8,55.6,1025,9.600000000000001 +2013,12,17,14,30,491,67,898,0.5,16.900000000000002,61.81,1024,9.8 +2013,12,17,15,30,327,57,806,0.7000000000000001,16.7,70.46000000000001,1024,10 +2013,12,17,16,30,135,39,594,0.9,16.2,80.71000000000001,1025,10.700000000000001 +2013,12,17,17,30,0,0,0,1.1,15.9,92.2,1025,10.4 +2013,12,17,18,30,0,0,0,1.3,15.200000000000001,104.3,1025,10.4 +2013,12,17,19,30,0,0,0,1.5,14.8,116.87,1026,10.700000000000001 +2013,12,17,20,30,0,0,0,1.7000000000000002,14.5,129.75,1026,11 +2013,12,17,21,30,0,0,0,1.8,14.200000000000001,142.79,1026,11.100000000000001 +2013,12,17,22,30,0,0,0,1.9000000000000001,14,155.85,1026,11 +2013,12,17,23,30,0,0,0,1.9000000000000001,13.8,168.39000000000001,1026,10.8 +2013,12,18,0,30,0,0,0,2,13.700000000000001,173.27,1026,10.600000000000001 +2013,12,18,1,30,0,0,0,2,13.600000000000001,162.22,1026,10.600000000000001 +2013,12,18,2,30,0,0,0,1.9000000000000001,13.600000000000001,149.28,1025,10.600000000000001 +2013,12,18,3,30,0,0,0,1.5,13.600000000000001,136.21,1025,10.600000000000001 +2013,12,18,4,30,0,0,0,1.1,13.8,123.23,1025,10.5 +2013,12,18,5,30,0,0,0,0.8,13.8,110.49000000000001,1026,10.4 +2013,12,18,6,30,0,0,0,0.8,13.8,98.13,1026,10.3 +2013,12,18,7,30,24,24,0,1.1,13.9,86.15,1027,10.200000000000001 +2013,12,18,8,30,230,50,711,1.6,14.5,75.4,1027,10.4 +2013,12,18,9,30,411,64,849,2,15.4,65.87,1027,10.9 +2013,12,18,10,30,551,71,916,2.3000000000000003,16.2,58.34,1027,11.5 +2013,12,18,11,30,631,74,941,2.5,16.8,53.7,1026,11.9 +2013,12,18,12,30,649,74,949,2.6,17,52.71,1025,12.3 +2013,12,18,13,30,597,72,929,2.8000000000000003,17.2,55.59,1024,12.600000000000001 +2013,12,18,14,30,485,66,886,3.2,17.1,61.77,1023,12.9 +2013,12,18,15,30,323,57,793,3.7,16.900000000000002,70.4,1023,13.100000000000001 +2013,12,18,16,30,134,39,585,4.1000000000000005,16.3,80.64,1022,13.3 +2013,12,18,17,30,0,0,0,4.3,15.9,92.11,1022,13.4 +2013,12,18,18,30,0,0,0,4.800000000000001,15.700000000000001,104.21000000000001,1022,13.600000000000001 +2013,12,18,19,30,0,0,0,5,15.700000000000001,116.78,1022,13.8 +2013,12,18,20,30,0,0,0,5.2,15.700000000000001,129.65,1022,13.9 +2013,12,18,21,30,0,0,0,5.4,15.9,142.69,1021,14 +2013,12,18,22,30,0,0,0,5.5,16.2,155.75,1021,14.200000000000001 +2013,12,18,23,30,0,0,0,5.5,16.5,168.31,1021,14.4 +2013,12,19,0,30,0,0,0,5.7,16.8,173.34,1020,14.600000000000001 +2013,12,19,1,30,0,0,0,5.800000000000001,17,162.33,1020,14.8 +2013,12,19,2,30,0,0,0,5.800000000000001,17.3,149.4,1019,15 +2013,12,19,3,30,0,0,0,5.5,17.400000000000002,136.32,1019,15.3 +2013,12,19,4,30,0,0,0,5.1000000000000005,17.400000000000002,123.34,1018,15.600000000000001 +2013,12,19,5,30,0,0,0,4.800000000000001,17.5,110.60000000000001,1018,15.9 +2013,12,19,6,30,0,0,0,4.800000000000001,17.6,98.24000000000001,1018,16.2 +2013,12,19,7,30,22,22,0,4.9,18,86.26,1018,16.5 +2013,12,19,8,30,97,93,19,5,18.5,75.49,1018,16.8 +2013,12,19,9,30,111,111,0,5,18.900000000000002,65.95,1018,17.1 +2013,12,19,10,30,128,128,0,5.1000000000000005,19.3,58.410000000000004,1018,17.3 +2013,12,19,11,30,379,277,172,5.300000000000001,19.5,53.74,1017,17.400000000000002 +2013,12,19,12,30,209,204,9,5.4,19.6,52.72,1016,17.5 +2013,12,19,13,30,284,248,64,5.4,19.6,55.57,1015,17.6 +2013,12,19,14,30,454,88,772,5.4,19.5,61.730000000000004,1014,17.7 +2013,12,19,15,30,300,71,681,5.2,19.3,70.33,1014,17.8 +2013,12,19,16,30,120,48,438,5.1000000000000005,19,80.56,1014,18 +2013,12,19,17,30,0,0,0,5,18.900000000000002,92.02,1014,18 +2013,12,19,18,30,0,0,0,5.300000000000001,18.900000000000002,104.11,1014,18.2 +2013,12,19,19,30,0,0,0,5.7,19,116.68,1014,18.400000000000002 +2013,12,19,20,30,0,0,0,6,19,129.55,1014,18.6 +2013,12,19,21,30,0,0,0,6.1000000000000005,19,142.59,1014,18.900000000000002 +2013,12,19,22,30,0,0,0,5.800000000000001,19,155.65,1014,19 +2013,12,19,23,30,0,0,0,5.5,18.900000000000002,168.22,1013,18.900000000000002 +2013,12,20,0,30,0,0,0,5.4,19,173.41,1013,19 +2013,12,20,1,30,0,0,0,5.2,19,162.44,1013,19 +2013,12,20,2,30,0,0,0,4.7,18.900000000000002,149.51,1013,18.900000000000002 +2013,12,20,3,30,0,0,0,4.3,18.900000000000002,136.43,1013,18.900000000000002 +2013,12,20,4,30,0,0,0,3.9000000000000004,18.8,123.45,1013,18.8 +2013,12,20,5,30,0,0,0,3.8000000000000003,18.8,110.71000000000001,1013,18.8 +2013,12,20,6,30,0,0,0,4.1000000000000005,18.900000000000002,98.35000000000001,1013,18.900000000000002 +2013,12,20,7,30,24,23,17,4.4,19.200000000000003,86.36,1014,19.200000000000003 +2013,12,20,8,30,104,94,36,4.6000000000000005,19.5,75.59,1014,19.400000000000002 +2013,12,20,9,30,75,75,0,4.800000000000001,19.8,66.03,1014,19.6 +2013,12,20,10,30,62,62,0,5,20,58.47,1014,19.8 +2013,12,20,11,30,249,233,27,5.300000000000001,20.200000000000003,53.78,1013,19.8 +2013,12,20,12,30,200,196,7,5.6000000000000005,20.3,52.730000000000004,1012,19.8 +2013,12,20,13,30,136,136,0,5.800000000000001,20.200000000000003,55.54,1011,19.8 +2013,12,20,14,30,287,211,159,5.9,20.1,61.67,1010,19.700000000000003 +2013,12,20,15,30,162,138,72,5.9,19.900000000000002,70.26,1010,19.700000000000003 +2013,12,20,16,30,46,46,0,6.1000000000000005,19.700000000000003,80.48,1010,19.700000000000003 +2013,12,20,17,30,0,0,0,6.2,19.6,91.93,1010,19.6 +2013,12,20,18,30,0,0,0,6.9,19.700000000000003,104.02,1010,19.700000000000003 +2013,12,20,19,30,0,0,0,7.300000000000001,19.900000000000002,116.58,1010,19.900000000000002 +2013,12,20,20,30,0,0,0,7.7,19.900000000000002,129.44,1010,19.900000000000002 +2013,12,20,21,30,0,0,0,7.9,19.900000000000002,142.49,1010,19.900000000000002 +2013,12,20,22,30,0,0,0,7.9,19.8,155.55,1009,19.8 +2013,12,20,23,30,0,0,0,7.7,19.700000000000003,168.13,1009,19.700000000000003 +2013,12,21,0,30,0,0,0,7.5,19.700000000000003,173.47,1008,19.700000000000003 +2013,12,21,1,30,0,0,0,7.5,19.700000000000003,162.55,1007,19.700000000000003 +2013,12,21,2,30,0,0,0,7.300000000000001,19.700000000000003,149.62,1007,19.700000000000003 +2013,12,21,3,30,0,0,0,7,19.8,136.54,1007,19.8 +2013,12,21,4,30,0,0,0,7,19.900000000000002,123.56,1006,19.900000000000002 +2013,12,21,5,30,0,0,0,7,20,110.82000000000001,1006,19.900000000000002 +2013,12,21,6,30,0,0,0,6.7,20,98.45,1006,19.900000000000002 +2013,12,21,7,30,14,14,0,6.4,20,86.45,1006,19.8 +2013,12,21,8,30,8,8,0,6.300000000000001,20.1,75.68,1006,19.8 +2013,12,21,9,30,10,10,0,6.5,20.1,66.11,1006,19.900000000000002 +2013,12,21,10,30,51,51,0,6.6000000000000005,20.200000000000003,58.53,1005,20 +2013,12,21,11,30,157,157,0,7.1000000000000005,20.3,53.800000000000004,1005,20.1 +2013,12,21,12,30,326,277,82,7.6000000000000005,20.5,52.72,1004,20.3 +2013,12,21,13,30,249,230,34,7.7,20.5,55.5,1003,20.400000000000002 +2013,12,21,14,30,238,205,71,7,20.3,61.620000000000005,1003,20.3 +2013,12,21,15,30,218,134,249,5.800000000000001,19.900000000000002,70.18,1003,19.900000000000002 +2013,12,21,16,30,6,6,0,4.4,19.3,80.39,1004,19.3 +2013,12,21,17,30,0,0,0,3.6,19,91.84,1004,19 +2013,12,21,18,30,0,0,0,2.5,18.1,103.91,1006,18.1 +2013,12,21,19,30,0,0,0,2.7,17.5,116.47,1007,17.5 +2013,12,21,20,30,0,0,0,3.3000000000000003,16.8,129.34,1008,16.8 +2013,12,21,21,30,0,0,0,3.7,16.2,142.38,1009,16.2 +2013,12,21,22,30,0,0,0,3.7,15.8,155.44,1010,15.8 +2013,12,21,23,30,0,0,0,3.4000000000000004,15.5,168.03,1010,15.200000000000001 +2013,12,22,0,30,0,0,0,2.9000000000000004,15.5,173.52,1010,14.600000000000001 +2013,12,22,1,30,0,0,0,2.6,15.600000000000001,162.65,1011,14.200000000000001 +2013,12,22,2,30,0,0,0,2.5,15.8,149.73,1011,13.9 +2013,12,22,3,30,0,0,0,2.4000000000000004,16,136.65,1011,13.8 +2013,12,22,4,30,0,0,0,2.3000000000000003,16.1,123.67,1011,13.8 +2013,12,22,5,30,0,0,0,2.1,16.1,110.92,1012,13.8 +2013,12,22,6,30,0,0,0,2.1,16.1,98.55,1013,13.9 +2013,12,22,7,30,14,14,0,2.4000000000000004,16.2,86.54,1014,14.100000000000001 +2013,12,22,8,30,96,91,20,2.9000000000000004,16.400000000000002,75.76,1015,14.5 +2013,12,22,9,30,13,13,0,3.7,16.7,66.18,1016,14.8 +2013,12,22,10,30,232,212,38,4.9,16.900000000000002,58.58,1017,14.5 +2013,12,22,11,30,189,187,5,6,16.900000000000002,53.83,1017,13.600000000000001 +2013,12,22,12,30,146,146,0,6.7,16.7,52.71,1017,12.5 +2013,12,22,13,30,166,166,0,6.9,16.5,55.46,1017,11.700000000000001 +2013,12,22,14,30,137,137,0,7,16.1,61.550000000000004,1017,11.3 +2013,12,22,15,30,117,117,0,7.2,15.600000000000001,70.10000000000001,1018,10.9 +2013,12,22,16,30,127,51,454,7.6000000000000005,14.700000000000001,80.3,1019,10.3 +2013,12,22,17,30,0,0,0,7.800000000000001,14.3,91.74,1019,9.5 +2013,12,22,18,30,0,0,0,8.200000000000001,12.700000000000001,103.81,1021,8.8 +2013,12,22,19,30,0,0,0,8.3,11.600000000000001,116.36,1023,8.1 +2013,12,22,20,30,0,0,0,8.1,10.5,129.23,1024,7.5 +2013,12,22,21,30,0,0,0,7.9,9.600000000000001,142.27,1025,7.1000000000000005 +2013,12,22,22,30,0,0,0,7.800000000000001,8.9,155.33,1026,6.6000000000000005 +2013,12,22,23,30,0,0,0,7.800000000000001,8.3,167.93,1026,6.2 +2013,12,23,0,30,0,0,0,7.800000000000001,7.800000000000001,173.56,1026,5.9 +2013,12,23,1,30,0,0,0,7.9,7.300000000000001,162.75,1027,5.6000000000000005 +2013,12,23,2,30,0,0,0,7.9,7,149.83,1027,5.4 +2013,12,23,3,30,0,0,0,7.800000000000001,6.7,136.75,1027,5.2 +2013,12,23,4,30,0,0,0,7.7,6.5,123.77,1027,5.2 +2013,12,23,5,30,0,0,0,7.6000000000000005,6.4,111.02,1028,5.2 +2013,12,23,6,30,0,0,0,7.5,6.4,98.64,1029,5.2 +2013,12,23,7,30,18,18,0,7.4,6.800000000000001,86.61,1029,5.2 +2013,12,23,8,30,106,94,49,7.300000000000001,7.5,75.83,1030,5.2 +2013,12,23,9,30,233,172,151,7,8.3,66.24,1031,5.300000000000001 +2013,12,23,10,30,345,232,216,6.6000000000000005,9.1,58.620000000000005,1031,5.4 +2013,12,23,11,30,420,266,260,6.4,9.9,53.84,1031,5.5 +2013,12,23,12,30,508,231,456,6.2,10.600000000000001,52.69,1030,5.5 +2013,12,23,13,30,617,73,958,6.2,11.3,55.410000000000004,1030,5.4 +2013,12,23,14,30,505,67,918,6.2,11.8,61.47,1029,5.2 +2013,12,23,15,30,340,60,819,6.1000000000000005,12.100000000000001,70.01,1030,4.9 +2013,12,23,16,30,148,41,629,6,11.700000000000001,80.2,1030,4.9 +2013,12,23,17,30,0,0,0,6,11.3,91.63,1030,5.2 +2013,12,23,18,30,0,0,0,6.300000000000001,10.700000000000001,103.7,1032,5.300000000000001 +2013,12,23,19,30,0,0,0,6.4,10.3,116.25,1032,5.4 +2013,12,23,20,30,0,0,0,6.300000000000001,9.8,129.11,1032,5.300000000000001 +2013,12,23,21,30,0,0,0,6.300000000000001,9.4,142.15,1033,5.300000000000001 +2013,12,23,22,30,0,0,0,6.4,9.1,155.22,1033,5.2 +2013,12,23,23,30,0,0,0,6.4,8.700000000000001,167.82,1033,5.2 +2013,12,24,0,30,0,0,0,6.4,8.4,173.59,1032,5.1000000000000005 +2013,12,24,1,30,0,0,0,6.300000000000001,8.200000000000001,162.85,1032,5.1000000000000005 +2013,12,24,2,30,0,0,0,6,7.9,149.93,1032,5 +2013,12,24,3,30,0,0,0,5.7,7.800000000000001,136.86,1032,5 +2013,12,24,4,30,0,0,0,5.5,7.7,123.87,1032,4.9 +2013,12,24,5,30,0,0,0,5.300000000000001,7.7,111.12,1033,5 +2013,12,24,6,30,0,0,0,5.1000000000000005,7.7,98.74000000000001,1033,5 +2013,12,24,7,30,42,20,380,5.2,8.3,86.69,1034,5.2 +2013,12,24,8,30,232,47,758,5.300000000000001,9.3,75.91,1034,5.4 +2013,12,24,9,30,420,59,897,5.2,10.100000000000001,66.3,1034,5.300000000000001 +2013,12,24,10,30,566,65,963,5.1000000000000005,10.8,58.65,1034,5.300000000000001 +2013,12,24,11,30,654,68,992,4.9,11.200000000000001,53.84,1033,5.4 +2013,12,24,12,30,674,70,997,4.800000000000001,11.600000000000001,52.67,1032,5.5 +2013,12,24,13,30,627,68,983,4.6000000000000005,11.9,55.35,1030,5.5 +2013,12,24,14,30,514,64,940,4.4,12,61.4,1030,5.5 +2013,12,24,15,30,349,56,854,4.2,11.9,69.92,1030,5.5 +2013,12,24,16,30,79,64,88,4,11.3,80.09,1029,5.800000000000001 +2013,12,24,17,30,0,0,0,4,10.9,91.52,1029,5.9 +2013,12,24,18,30,0,0,0,4.2,10.9,103.59,1029,5.9 +2013,12,24,19,30,0,0,0,4.3,11,116.14,1028,6 +2013,12,24,20,30,0,0,0,4.4,11.200000000000001,129,1028,6.2 +2013,12,24,21,30,0,0,0,4.6000000000000005,11.3,142.04,1028,6.5 +2013,12,24,22,30,0,0,0,4.7,11.4,155.1,1027,6.7 +2013,12,24,23,30,0,0,0,4.800000000000001,11.5,167.71,1027,7 +2013,12,25,0,30,0,0,0,4.6000000000000005,11.5,173.62,1026,7.2 +2013,12,25,1,30,0,0,0,4.3,11.5,162.95000000000002,1026,7.300000000000001 +2013,12,25,2,30,0,0,0,4,11.5,150.04,1026,7.4 +2013,12,25,3,30,0,0,0,3.9000000000000004,11.5,136.96,1026,7.5 +2013,12,25,4,30,0,0,0,4.1000000000000005,11.600000000000001,123.97,1026,7.800000000000001 +2013,12,25,5,30,0,0,0,4.4,11.700000000000001,111.21000000000001,1026,8.1 +2013,12,25,6,30,0,0,0,4.7,11.9,98.82000000000001,1026,8.3 +2013,12,25,7,30,25,21,67,5,12.3,86.77,1027,8.5 +2013,12,25,8,30,157,84,299,5.2,13,75.98,1027,8.700000000000001 +2013,12,25,9,30,271,161,275,5.2,13.600000000000001,66.35,1028,8.9 +2013,12,25,10,30,463,138,625,4.9,14.200000000000001,58.68,1027,9 +2013,12,25,11,30,516,191,550,4.6000000000000005,14.5,53.84,1027,9 +2013,12,25,12,30,553,172,628,4.2,14.700000000000001,52.63,1026,8.9 +2013,12,25,13,30,463,220,427,4,14.700000000000001,55.29,1025,8.8 +2013,12,25,14,30,360,189,357,4,14.600000000000001,61.31,1025,8.8 +2013,12,25,15,30,225,135,262,4.1000000000000005,14.3,69.82000000000001,1025,8.8 +2013,12,25,16,30,93,63,168,4.3,13.9,79.99,1026,9 +2013,12,25,17,30,0,0,0,4.4,13.700000000000001,91.41,1026,8.8 +2013,12,25,18,30,0,0,0,4.800000000000001,13.5,103.47,1026,8.700000000000001 +2013,12,25,19,30,0,0,0,4.800000000000001,13.3,116.02,1027,8.6 +2013,12,25,20,30,0,0,0,4.7,13.200000000000001,128.88,1027,8.5 +2013,12,25,21,30,0,0,0,4.6000000000000005,13,141.92000000000002,1027,8.3 +2013,12,25,22,30,0,0,0,4.6000000000000005,12.9,154.98,1027,8.200000000000001 +2013,12,25,23,30,0,0,0,4.5,12.8,167.6,1027,8.200000000000001 +2013,12,26,0,30,0,0,0,4.4,12.600000000000001,173.63,1027,8.1 +2013,12,26,1,30,0,0,0,4.4,12.4,163.04,1027,8 +2013,12,26,2,30,0,0,0,4.5,12.200000000000001,150.13,1027,8 +2013,12,26,3,30,0,0,0,4.6000000000000005,12,137.05,1027,7.9 +2013,12,26,4,30,0,0,0,4.800000000000001,11.8,124.06,1027,7.9 +2013,12,26,5,30,0,0,0,4.9,11.600000000000001,111.3,1027,7.800000000000001 +2013,12,26,6,30,0,0,0,4.9,11.5,98.91,1028,7.7 +2013,12,26,7,30,23,21,43,5,11.9,86.85000000000001,1028,7.6000000000000005 +2013,12,26,8,30,154,85,290,5.1000000000000005,12.600000000000001,76.04,1029,7.6000000000000005 +2013,12,26,9,30,294,147,365,5.2,13.3,66.4,1029,7.4 +2013,12,26,10,30,403,204,383,5.1000000000000005,13.9,58.7,1029,7.1000000000000005 +2013,12,26,11,30,495,221,465,5,14.4,53.83,1028,7.1000000000000005 +2013,12,26,12,30,507,234,450,4.800000000000001,14.700000000000001,52.59,1027,7.2 +2013,12,26,13,30,504,171,584,4.6000000000000005,14.8,55.22,1026,7.300000000000001 +2013,12,26,14,30,419,134,591,4.3,14.700000000000001,61.22,1026,7.300000000000001 +2013,12,26,15,30,239,129,317,3.8000000000000003,14.4,69.71000000000001,1026,7.300000000000001 +2013,12,26,16,30,46,46,0,3.4000000000000004,14,79.88,1026,7.9 +2013,12,26,17,30,0,0,0,3.3000000000000003,13.8,91.29,1026,7.7 +2013,12,26,18,30,0,0,0,3.1,13.600000000000001,103.35000000000001,1027,7.4 +2013,12,26,19,30,0,0,0,3,13.600000000000001,115.9,1027,7.300000000000001 +2013,12,26,20,30,0,0,0,3.1,13.5,128.76,1027,7.4 +2013,12,26,21,30,0,0,0,3.3000000000000003,13.3,141.8,1027,7.6000000000000005 +2013,12,26,22,30,0,0,0,3.4000000000000004,13.200000000000001,154.86,1027,7.800000000000001 +2013,12,26,23,30,0,0,0,3.5,13.100000000000001,167.48,1027,7.9 +2013,12,27,0,30,0,0,0,3.6,12.9,173.64000000000001,1027,8 +2013,12,27,1,30,0,0,0,3.8000000000000003,12.700000000000001,163.12,1027,8.200000000000001 +2013,12,27,2,30,0,0,0,4.2,12.5,150.23,1027,8.4 +2013,12,27,3,30,0,0,0,4.7,12.3,137.15,1027,8.6 +2013,12,27,4,30,0,0,0,5,12.200000000000001,124.16,1027,8.8 +2013,12,27,5,30,0,0,0,4.800000000000001,12.100000000000001,111.39,1027,8.8 +2013,12,27,6,30,0,0,0,4.5,12,98.99000000000001,1028,8.6 +2013,12,27,7,30,13,13,0,4.5,12.200000000000001,86.91,1029,8.5 +2013,12,27,8,30,53,53,0,4.7,12.5,76.10000000000001,1029,8.5 +2013,12,27,9,30,189,165,61,5,12.8,66.44,1029,8.5 +2013,12,27,10,30,200,192,16,5.1000000000000005,13.200000000000001,58.72,1029,8.4 +2013,12,27,11,30,184,182,3,5,13.4,53.82,1029,8 +2013,12,27,12,30,172,172,0,4.9,13.5,52.54,1028,7.9 +2013,12,27,13,30,159,159,0,4.6000000000000005,13.5,55.14,1027,7.800000000000001 +2013,12,27,14,30,260,213,98,4.4,13.5,61.120000000000005,1027,7.800000000000001 +2013,12,27,15,30,186,145,117,4.4,13.3,69.60000000000001,1027,7.9 +2013,12,27,16,30,65,63,12,4.6000000000000005,13,79.76,1027,8.200000000000001 +2013,12,27,17,30,0,0,0,4.7,12.700000000000001,91.17,1027,8.200000000000001 +2013,12,27,18,30,0,0,0,5.300000000000001,12.5,103.23,1027,8.1 +2013,12,27,19,30,0,0,0,5.5,12.4,115.78,1027,8 +2013,12,27,20,30,0,0,0,5.6000000000000005,12.200000000000001,128.64000000000001,1027,7.9 +2013,12,27,21,30,0,0,0,5.4,12,141.68,1027,7.6000000000000005 +2013,12,27,22,30,0,0,0,5.1000000000000005,11.9,154.74,1027,7.4 +2013,12,27,23,30,0,0,0,4.7,11.700000000000001,167.36,1026,7.1000000000000005 +2013,12,28,0,30,0,0,0,4.5,11.600000000000001,173.63,1025,6.9 +2013,12,28,1,30,0,0,0,4.3,11.600000000000001,163.21,1025,6.800000000000001 +2013,12,28,2,30,0,0,0,4.1000000000000005,11.5,150.32,1024,6.800000000000001 +2013,12,28,3,30,0,0,0,3.9000000000000004,11.4,137.24,1024,6.9 +2013,12,28,4,30,0,0,0,3.7,11.4,124.24000000000001,1024,6.9 +2013,12,28,5,30,0,0,0,3.6,11.4,111.47,1024,7 +2013,12,28,6,30,0,0,0,3.5,11.4,99.06,1024,7.2 +2013,12,28,7,30,3,3,0,3.5,11.600000000000001,86.98,1024,7.300000000000001 +2013,12,28,8,30,105,92,55,3.3000000000000003,12,76.15,1024,7.4 +2013,12,28,9,30,116,116,0,3,12.5,66.47,1024,7.2 +2013,12,28,10,30,169,168,2,2.6,12.8,58.730000000000004,1023,6.9 +2013,12,28,11,30,220,212,14,2.3000000000000003,12.9,53.800000000000004,1022,6.7 +2013,12,28,12,30,328,278,83,2.1,13,52.480000000000004,1021,6.5 +2013,12,28,13,30,308,259,86,2,13,55.06,1020,6.4 +2013,12,28,14,30,67,67,0,2,13,61.02,1019,6.4 +2013,12,28,15,30,92,92,0,2,13,69.49,1018,6.4 +2013,12,28,16,30,73,66,39,2,12.700000000000001,79.64,1018,6.7 +2013,12,28,17,30,0,0,0,2,12.600000000000001,91.05,1018,6.300000000000001 +2013,12,28,18,30,0,0,0,1.8,12.4,103.11,1019,6 +2013,12,28,19,30,0,0,0,1.5,12.3,115.66,1019,5.6000000000000005 +2013,12,28,20,30,0,0,0,1.2000000000000002,12.100000000000001,128.52,1018,5.300000000000001 +2013,12,28,21,30,0,0,0,1.2000000000000002,11.9,141.56,1018,5 +2013,12,28,22,30,0,0,0,1.3,11.600000000000001,154.62,1018,4.7 +2013,12,28,23,30,0,0,0,1.6,11.5,167.24,1018,4.6000000000000005 +2013,12,29,0,30,0,0,0,1.7000000000000002,11.4,173.62,1018,4.5 +2013,12,29,1,30,0,0,0,1.6,11.3,163.28,1017,4.1000000000000005 +2013,12,29,2,30,0,0,0,1.5,11.3,150.41,1017,3.6 +2013,12,29,3,30,0,0,0,1.6,11.4,137.33,1017,3.5 +2013,12,29,4,30,0,0,0,1.5,11.600000000000001,124.33,1017,3.7 +2013,12,29,5,30,0,0,0,1.1,11.8,111.55,1018,3.7 +2013,12,29,6,30,0,0,0,0.7000000000000001,12,99.14,1018,3.5 +2013,12,29,7,30,34,19,296,0.8,12.600000000000001,87.04,1019,3.6 +2013,12,29,8,30,147,86,257,1,13.3,76.2,1019,4.3 +2013,12,29,9,30,395,64,828,1.1,14.3,66.5,1020,4.9 +2013,12,29,10,30,536,74,890,1,15.3,58.730000000000004,1020,4.9 +2013,12,29,11,30,623,81,918,1,15.8,53.77,1019,5.4 +2013,12,29,12,30,525,219,501,1.1,16,52.42,1018,6 +2013,12,29,13,30,526,150,655,1.2000000000000002,16.2,54.96,1018,6.800000000000001 +2013,12,29,14,30,366,193,357,1.5,16.2,60.910000000000004,1017,7.4 +2013,12,29,15,30,262,120,404,1.8,15.9,69.37,1017,8 +2013,12,29,16,30,126,53,402,2.1,15.5,79.52,1018,8.9 +2013,12,29,17,30,0,0,0,2.2,15.200000000000001,90.92,1018,9.1 +2013,12,29,18,30,0,0,0,2.4000000000000004,14.8,102.98,1019,9.5 +2013,12,29,19,30,0,0,0,2.3000000000000003,14.700000000000001,115.53,1020,9.8 +2013,12,29,20,30,0,0,0,2.1,14.600000000000001,128.39000000000001,1021,10 +2013,12,29,21,30,0,0,0,1.9000000000000001,14.600000000000001,141.43,1021,10 +2013,12,29,22,30,0,0,0,1.6,14.5,154.49,1021,10 +2013,12,29,23,30,0,0,0,2,14.100000000000001,167.11,1021,9.9 +2013,12,30,0,30,0,0,0,3.1,13.600000000000001,173.6,1021,10 +2013,12,30,1,30,0,0,0,4.3,12.8,163.36,1021,10 +2013,12,30,2,30,0,0,0,5.2,12,150.49,1021,9.9 +2013,12,30,3,30,0,0,0,5.800000000000001,11.3,137.41,1021,9.5 +2013,12,30,4,30,0,0,0,6.1000000000000005,10.700000000000001,124.41,1022,9 +2013,12,30,5,30,0,0,0,5.9,10.3,111.63,1022,8.5 +2013,12,30,6,30,0,0,0,5.7,10,99.2,1023,8 +2013,12,30,7,30,7,7,0,5.6000000000000005,9.9,87.09,1024,7.6000000000000005 +2013,12,30,8,30,15,15,0,5.5,9.9,76.24,1024,7.300000000000001 +2013,12,30,9,30,47,47,0,5.1000000000000005,9.9,66.52,1025,7 +2013,12,30,10,30,135,135,0,4.9,9.9,58.72,1025,6.800000000000001 +2013,12,30,11,30,155,155,0,4.7,10,53.730000000000004,1025,6.7 +2013,12,30,12,30,127,127,0,4.6000000000000005,10,52.35,1024,6.6000000000000005 +2013,12,30,13,30,87,87,0,4.6000000000000005,10,54.870000000000005,1024,6.6000000000000005 +2013,12,30,14,30,145,145,0,4.7,9.9,60.79,1024,6.6000000000000005 +2013,12,30,15,30,93,93,0,4.6000000000000005,9.9,69.24,1024,6.6000000000000005 +2013,12,30,16,30,32,32,0,4.4,9.8,79.39,1024,6.7 +2013,12,30,17,30,0,0,0,4.3,9.700000000000001,90.17,1025,6.800000000000001 +2013,12,30,18,30,0,0,0,4.4,9.700000000000001,102.85000000000001,1026,6.800000000000001 +2013,12,30,19,30,0,0,0,4.6000000000000005,9.700000000000001,115.4,1027,6.800000000000001 +2013,12,30,20,30,0,0,0,4.9,9.600000000000001,128.26,1028,6.800000000000001 +2013,12,30,21,30,0,0,0,5.1000000000000005,9.5,141.3,1028,6.800000000000001 +2013,12,30,22,30,0,0,0,5.2,9.3,154.36,1029,6.800000000000001 +2013,12,30,23,30,0,0,0,5.2,9.1,166.98,1029,6.800000000000001 +2013,12,31,0,30,0,0,0,5.2,8.9,173.56,1029,6.7 +2013,12,31,1,30,0,0,0,5.2,8.8,163.43,1028,6.7 +2013,12,31,2,30,0,0,0,5.1000000000000005,8.8,150.57,1028,6.7 +2013,12,31,3,30,0,0,0,5.1000000000000005,8.8,137.49,1028,6.800000000000001 +2013,12,31,4,30,0,0,0,5.2,8.8,124.49000000000001,1028,7 +2013,12,31,5,30,0,0,0,5.4,8.8,111.7,1028,7.1000000000000005 +2013,12,31,6,30,0,0,0,5.5,8.8,99.27,1029,7.2 +2013,12,31,7,30,6,6,0,5.6000000000000005,8.9,87.13,1030,7.300000000000001 +2013,12,31,8,30,7,7,0,5.6000000000000005,9.1,76.27,1030,7.300000000000001 +2013,12,31,9,30,69,69,0,5.5,9.5,66.53,1030,7.2 +2013,12,31,10,30,129,129,0,5.300000000000001,9.9,58.71,1030,7.2 +2013,12,31,11,30,198,194,6,5,10.200000000000001,53.68,1029,7.2 +2013,12,31,12,30,267,247,32,4.5,10.3,52.27,1028,7.2 +2013,12,31,13,30,95,95,0,4.1000000000000005,10.3,54.76,1028,7.1000000000000005 +2013,12,31,14,30,95,95,0,3.8000000000000003,10.200000000000001,60.67,1027,7.1000000000000005 +2013,12,31,15,30,70,70,0,3.5,10.100000000000001,69.11,1028,7.2 +2013,12,31,16,30,55,55,0,3.2,9.9,79.26,1028,7.6000000000000005 +2013,12,31,17,30,0,0,0,3.1,9.8,90.06,1028,7.6000000000000005 +2013,12,31,18,30,0,0,0,4.6000000000000005,18.400000000000002,102.69,1016,18.1 +2013,12,31,19,30,0,0,0,4.7,18.5,115.24000000000001,1016,18.3 +2013,12,31,20,30,0,0,0,4.9,18.5,128.1,1015,18.400000000000002 +2013,12,31,21,30,0,0,0,4.9,18.6,141.14000000000001,1015,18.5 +2013,12,31,22,30,0,0,0,4.9,18.6,154.20000000000002,1015,18.6 +2013,12,31,23,30,0,0,0,5,18.7,166.81,1015,18.6 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv deleted file mode 100644 index d3865c868..000000000 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv +++ /dev/null @@ -1,8763 +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 Units,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 -NSRDB,611351,-,-,-,32.33,-100.18,-6,761,-6,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,v3.2.2 -Year,Month,Day,Hour,Minute,GHI,DHI,DNI,Wind Speed,Temperature,Solar Zenith Angle,Pressure,Dew Point -2013,1,1,0,30,0,0,0,3.5,1.5,170.13,929,-1.8 -2013,1,1,1,30,0,0,0,3.7,0.1,166.24,930,-1.8 -2013,1,1,2,30,0,0,0,3.7,-1.1,154.88,931,-2.1 -2013,1,1,3,30,0,0,0,3.6,-1.9000000000000001,142.39000000000001,931,-3.1 -2013,1,1,4,30,0,0,0,3.5,-2.4000000000000004,129.73,931,-4.3 -2013,1,1,5,30,0,0,0,3.4000000000000004,-2.9000000000000004,117.18,932,-5.1000000000000005 -2013,1,1,6,30,0,0,0,3.3000000000000003,-3.4000000000000004,104.92,933,-5.5 -2013,1,1,7,30,0,0,0,3.6,-3.5,93.15,934,-5.800000000000001 -2013,1,1,8,30,65,51,99,4.1000000000000005,-2.4000000000000004,82,934,-6 -2013,1,1,9,30,305,56,812,4,-0.6000000000000001,72.14,935,-6 -2013,1,1,10,30,391,112,634,3.9000000000000004,1.3,63.9,935,-6.1000000000000005 -2013,1,1,11,30,417,218,377,3.8000000000000003,3.1,58.04,934,-6.300000000000001 -2013,1,1,12,30,466,230,415,3.7,4.5,55.35,934,-6.2 -2013,1,1,13,30,503,161,617,3.8000000000000003,5.4,56.300000000000004,933,-6.2 -2013,1,1,14,30,462,102,735,3.9000000000000004,5.6000000000000005,60.7,933,-6.2 -2013,1,1,15,30,300,123,471,3.9000000000000004,4.9,67.89,933,-6.4 -2013,1,1,16,30,189,43,650,3,3.1,77.05,934,-6.5 -2013,1,1,17,30,20,20,0,2.2,1.8,87.42,934,-6.2 -2013,1,1,18,30,0,0,0,2.1,0,99.13,935,-6.300000000000001 -2013,1,1,19,30,0,0,0,2.1,-0.8,111.18,935,-6.6000000000000005 -2013,1,1,20,30,0,0,0,2,-1.6,123.60000000000001,936,-6.800000000000001 -2013,1,1,21,30,0,0,0,1.7000000000000002,-2.2,136.23,936,-7 -2013,1,1,22,30,0,0,0,1.5,-2.7,148.86,936,-7.2 -2013,1,1,23,30,0,0,0,1.3,-3.1,160.99,936,-7.4 -2013,1,2,0,30,0,0,0,1.1,-3.4000000000000004,170.02,936,-7.5 -2013,1,2,1,30,0,0,0,0.9,-3.8000000000000003,166.25,936,-7.6000000000000005 -2013,1,2,2,30,0,0,0,0.9,-4.1000000000000005,154.94,936,-7.7 -2013,1,2,3,30,0,0,0,0.9,-4.2,142.45000000000002,936,-7.7 -2013,1,2,4,30,0,0,0,0.9,-4.3,129.79,936,-7.800000000000001 -2013,1,2,5,30,0,0,0,0.9,-4.3,117.24000000000001,936,-7.800000000000001 -2013,1,2,6,30,0,0,0,0.8,-4.3,104.97,936,-7.800000000000001 -2013,1,2,7,30,0,0,0,1.2000000000000002,-3.6,93.19,936,-7.9 -2013,1,2,8,30,64,51,97,1.8,-2,82.03,936,-7.7 -2013,1,2,9,30,226,103,403,2,0,72.14,936,-7.7 -2013,1,2,10,30,387,117,615,2.3000000000000003,2,63.88,936,-7.4 -2013,1,2,11,30,490,134,672,2.6,4,57.99,936,-6.9 -2013,1,2,12,30,522,163,630,2.8000000000000003,5.9,55.27,935,-6.6000000000000005 -2013,1,2,13,30,517,147,663,2.8000000000000003,7.300000000000001,56.19,934,-6.7 -2013,1,2,14,30,534,65,953,2.6,7.9,60.57,933,-7 -2013,1,2,15,30,397,58,896,1.9000000000000001,7.6000000000000005,67.75,933,-7.1000000000000005 -2013,1,2,16,30,216,45,757,1.2000000000000002,5.6000000000000005,76.91,933,-5.9 -2013,1,2,17,30,35,18,361,1,4.1000000000000005,87.29,933,-5.2 -2013,1,2,18,30,0,0,0,1.3,1,98.99000000000001,934,-6.4 -2013,1,2,19,30,0,0,0,1.3,-0.2,111.04,935,-6.6000000000000005 -2013,1,2,20,30,0,0,0,1.3,-0.9,123.47,936,-6.800000000000001 -2013,1,2,21,30,0,0,0,1.2000000000000002,-1.2000000000000002,136.1,936,-6.800000000000001 -2013,1,2,22,30,0,0,0,1,-1.3,148.72,937,-6.7 -2013,1,2,23,30,0,0,0,0.8,-1.4000000000000001,160.85,937,-6.7 -2013,1,3,0,30,0,0,0,0.8,-1.8,169.89000000000001,937,-6.7 -2013,1,3,1,30,0,0,0,1,-2.7,166.25,937,-6.7 -2013,1,3,2,30,0,0,0,1.1,-3.8000000000000003,154.99,937,-6.7 -2013,1,3,3,30,0,0,0,1.2000000000000002,-4.7,142.51,938,-6.7 -2013,1,3,4,30,0,0,0,1.3,-5,129.85,938,-6.800000000000001 -2013,1,3,5,30,0,0,0,1.4000000000000001,-5.1000000000000005,117.29,939,-6.7 -2013,1,3,6,30,0,0,0,1.6,-4.9,105.02,939,-6.6000000000000005 -2013,1,3,7,30,0,0,0,2.4000000000000004,-3.7,93.22,940,-6.300000000000001 -2013,1,3,8,30,29,29,0,2.9000000000000004,-1.9000000000000001,82.04,940,-6 -2013,1,3,9,30,117,113,13,3.2,0.8,72.14,941,-5.5 -2013,1,3,10,30,297,190,242,3.5,3.3000000000000003,63.85,941,-5.2 -2013,1,3,11,30,279,238,78,3.5,4.800000000000001,57.93,940,-5.6000000000000005 -2013,1,3,12,30,450,244,359,3.4000000000000004,5.800000000000001,55.18,939,-6 -2013,1,3,13,30,455,225,411,3.3000000000000003,6.300000000000001,56.07,939,-6.6000000000000005 -2013,1,3,14,30,138,138,0,3.3000000000000003,6.300000000000001,60.44,938,-7.300000000000001 -2013,1,3,15,30,151,143,19,3,5.800000000000001,67.61,938,-7.800000000000001 -2013,1,3,16,30,35,35,0,1.9000000000000001,4,76.77,939,-7.800000000000001 -2013,1,3,17,30,16,16,0,1,2.6,87.15,939,-5.5 -2013,1,3,18,30,0,0,0,1.1,1.2000000000000002,98.84,939,-5.800000000000001 -2013,1,3,19,30,0,0,0,1.1,0.9,110.9,940,-5.800000000000001 -2013,1,3,20,30,0,0,0,0.9,0.8,123.33,940,-5.7 -2013,1,3,21,30,0,0,0,0.9,0.7000000000000001,135.96,941,-5.5 -2013,1,3,22,30,0,0,0,0.8,0.7000000000000001,148.58,941,-5.6000000000000005 -2013,1,3,23,30,0,0,0,0.6000000000000001,0.9,160.70000000000002,941,-5.9 -2013,1,4,0,30,0,0,0,0.30000000000000004,0.9,169.76,941,-5.9 -2013,1,4,1,30,0,0,0,0.4,0.30000000000000004,166.25,941,-5.5 -2013,1,4,2,30,0,0,0,0.7000000000000001,-0.5,155.03,941,-5.300000000000001 -2013,1,4,3,30,0,0,0,0.7000000000000001,-1.1,142.56,940,-4.9 -2013,1,4,4,30,0,0,0,0.8,-1.4000000000000001,129.9,940,-4.800000000000001 -2013,1,4,5,30,0,0,0,0.9,-1.7000000000000002,117.34,940,-4.800000000000001 -2013,1,4,6,30,0,0,0,0.9,-1.9000000000000001,105.06,941,-4.800000000000001 -2013,1,4,7,30,0,0,0,0.8,-1.2000000000000002,93.25,941,-4.800000000000001 -2013,1,4,8,30,43,43,0,1.4000000000000001,0.5,82.06,942,-4.1000000000000005 -2013,1,4,9,30,79,79,0,2.4000000000000004,2,72.13,942,-3.6 -2013,1,4,10,30,192,177,34,2.9000000000000004,2.9000000000000004,63.81,942,-3.5 -2013,1,4,11,30,224,209,27,3,3.6,57.86,941,-3.4000000000000004 -2013,1,4,12,30,269,243,44,2.9000000000000004,3.9000000000000004,55.08,940,-3.2 -2013,1,4,13,30,315,259,99,2.7,4.1000000000000005,55.94,939,-3 -2013,1,4,14,30,270,223,94,2.4000000000000004,4.1000000000000005,60.300000000000004,938,-2.9000000000000004 -2013,1,4,15,30,193,162,79,2.2,3.7,67.46000000000001,938,-2.7 -2013,1,4,16,30,116,91,107,1.5,2.6,76.62,938,-2.6 -2013,1,4,17,30,17,17,0,1,1.7000000000000002,87.01,938,-2.2 -2013,1,4,18,30,0,0,0,0.9,0,98.7,938,-2.2 -2013,1,4,19,30,0,0,0,1.2000000000000002,-0.5,110.76,938,-1.8 -2013,1,4,20,30,0,0,0,1.7000000000000002,-1,123.19,938,-1.6 -2013,1,4,21,30,0,0,0,2,-1.6,135.82,938,-1.6 -2013,1,4,22,30,0,0,0,2.2,-2.2,148.44,938,-2.2 -2013,1,4,23,30,0,0,0,2.5,-2.5,160.56,937,-2.5 -2013,1,5,0,30,0,0,0,2.8000000000000003,-2.6,169.62,937,-2.6 -2013,1,5,1,30,0,0,0,3.2,-2.3000000000000003,166.24,937,-2.3000000000000003 -2013,1,5,2,30,0,0,0,3.4000000000000004,-2.3000000000000003,155.07,937,-2.3000000000000003 -2013,1,5,3,30,0,0,0,3.4000000000000004,-2.4000000000000004,142.61,936,-2.4000000000000004 -2013,1,5,4,30,0,0,0,3.3000000000000003,-2.7,129.95,936,-2.7 -2013,1,5,5,30,0,0,0,3.4000000000000004,-2.8000000000000003,117.38,936,-2.8000000000000003 -2013,1,5,6,30,0,0,0,3.5,-3,105.09,936,-3 -2013,1,5,7,30,0,0,0,3.9000000000000004,-2.5,93.27,936,-2.8000000000000003 -2013,1,5,8,30,120,33,630,4.5,-0.9,82.06,936,-2.5 -2013,1,5,9,30,314,48,866,4.6000000000000005,1.6,72.12,936,-1.9000000000000001 -2013,1,5,10,30,479,56,959,4.5,4.5,63.77,936,-1.6 -2013,1,5,11,30,594,59,1003,4.4,7.4,57.79,935,-2.6 -2013,1,5,12,30,645,59,1022,4.2,9.700000000000001,54.97,934,-4.7 -2013,1,5,13,30,630,58,1017,4,11.100000000000001,55.81,933,-6.1000000000000005 -2013,1,5,14,30,548,54,992,3.5,11.700000000000001,60.15,933,-6.6000000000000005 -2013,1,5,15,30,408,48,935,2.4000000000000004,11.100000000000001,67.31,933,-6.6000000000000005 -2013,1,5,16,30,227,38,806,1.4000000000000001,8.6,76.47,933,-2.1 -2013,1,5,17,30,42,17,449,1.2000000000000002,6.9,86.87,933,-3.7 -2013,1,5,18,30,0,0,0,1.2000000000000002,5.2,98.55,934,-5.800000000000001 -2013,1,5,19,30,0,0,0,1.3,3.6,110.61,935,-6.1000000000000005 -2013,1,5,20,30,0,0,0,1.5,1.9000000000000001,123.05,936,-6.300000000000001 -2013,1,5,21,30,0,0,0,1.7000000000000002,0.5,135.68,936,-6.6000000000000005 -2013,1,5,22,30,0,0,0,1.9000000000000001,-0.6000000000000001,148.3,937,-7 -2013,1,5,23,30,0,0,0,2.2,-1.5,160.41,937,-7.5 -2013,1,6,0,30,0,0,0,2.3000000000000003,-2.2,169.48,938,-7.9 -2013,1,6,1,30,0,0,0,2.3000000000000003,-2.9000000000000004,166.22,938,-8.200000000000001 -2013,1,6,2,30,0,0,0,2.3000000000000003,-3.5,155.1,938,-8.3 -2013,1,6,3,30,0,0,0,2.3000000000000003,-4,142.65,939,-8.200000000000001 -2013,1,6,4,30,0,0,0,2.3000000000000003,-4.5,129.99,939,-8 -2013,1,6,5,30,0,0,0,2.2,-4.800000000000001,117.42,939,-7.5 -2013,1,6,6,30,0,0,0,2.1,-5,105.12,940,-7 -2013,1,6,7,30,0,0,0,2.5,-3.8000000000000003,93.29,940,-6.6000000000000005 -2013,1,6,8,30,121,29,663,2.9000000000000004,-1.1,82.06,940,-5.9 -2013,1,6,9,30,313,42,879,2.5,2.2,72.10000000000001,941,-5 -2013,1,6,10,30,478,50,968,2.5,5.9,63.72,941,-4.3 -2013,1,6,11,30,592,52,1011,2.5,8.5,57.71,940,-4.800000000000001 -2013,1,6,12,30,647,58,1023,2.2,10,54.86,939,-5 -2013,1,6,13,30,632,56,1021,2,10.8,55.67,938,-5 -2013,1,6,14,30,551,53,995,2,11,60,938,-5.2 -2013,1,6,15,30,412,48,936,1.7000000000000002,10.3,67.15,937,-5.2 -2013,1,6,16,30,230,38,810,1.3,7.7,76.31,937,-3.1 -2013,1,6,17,30,44,18,461,1.2000000000000002,5.6000000000000005,86.72,937,-3 -2013,1,6,18,30,0,0,0,1.4000000000000001,2.8000000000000003,98.4,937,-4.7 -2013,1,6,19,30,0,0,0,1.5,1.7000000000000002,110.46000000000001,937,-5.1000000000000005 -2013,1,6,20,30,0,0,0,1.5,0.7000000000000001,122.9,937,-5.4 -2013,1,6,21,30,0,0,0,1.5,-0.1,135.54,937,-5.7 -2013,1,6,22,30,0,0,0,1.6,-0.8,148.15,937,-6 -2013,1,6,23,30,0,0,0,1.6,-1.5,160.25,937,-6.1000000000000005 -2013,1,7,0,30,0,0,0,1.7000000000000002,-1.9000000000000001,169.32,936,-6.1000000000000005 -2013,1,7,1,30,0,0,0,1.7000000000000002,-1.8,166.19,936,-6 -2013,1,7,2,30,0,0,0,1.6,-1.7000000000000002,155.13,935,-5.9 -2013,1,7,3,30,0,0,0,1.5,-2.1,142.69,935,-5.7 -2013,1,7,4,30,0,0,0,1.4000000000000001,-3,130.03,935,-5.6000000000000005 -2013,1,7,5,30,0,0,0,1.4000000000000001,-3.7,117.45,935,-5.6000000000000005 -2013,1,7,6,30,0,0,0,1.5,-3.5,105.15,935,-5.4 -2013,1,7,7,30,0,0,0,1.9000000000000001,-2,93.3,935,-5.2 -2013,1,7,8,30,79,47,229,2.6,-0.1,82.06,935,-4.800000000000001 -2013,1,7,9,30,250,83,540,2.9000000000000004,1.7000000000000002,72.07000000000001,935,-4.6000000000000005 -2013,1,7,10,30,279,197,185,3.3000000000000003,4.3,63.660000000000004,934,-4.1000000000000005 -2013,1,7,11,30,374,245,242,4,6.9,57.620000000000005,933,-4.4 -2013,1,7,12,30,419,267,263,4,8,54.74,932,-5.1000000000000005 -2013,1,7,13,30,394,265,228,3.6,8.1,55.53,931,-5 -2013,1,7,14,30,398,199,395,3.4000000000000004,8.200000000000001,59.84,931,-4.7 -2013,1,7,15,30,198,167,79,3.1,8,66.98,930,-4.4 -2013,1,7,16,30,225,45,753,2.2,5.7,76.15,930,-3.7 -2013,1,7,17,30,25,22,52,1.5,3.7,86.57000000000001,930,-3 -2013,1,7,18,30,0,0,0,1.8,1.5,98.25,930,-3.5 -2013,1,7,19,30,0,0,0,2,1.5,110.32000000000001,930,-3.3000000000000003 -2013,1,7,20,30,0,0,0,2.2,1.3,122.76,929,-3 -2013,1,7,21,30,0,0,0,2.2,1.1,135.39000000000001,929,-2.8000000000000003 -2013,1,7,22,30,0,0,0,2.1,0.9,148.01,929,-2.6 -2013,1,7,23,30,0,0,0,2,0.5,160.1,929,-2.2 -2013,1,8,0,30,0,0,0,1.9000000000000001,0.1,169.17000000000002,928,-1.9000000000000001 -2013,1,8,1,30,0,0,0,1.9000000000000001,-0.4,166.16,928,-1.6 -2013,1,8,2,30,0,0,0,1.7000000000000002,-1,155.15,928,-1.4000000000000001 -2013,1,8,3,30,0,0,0,1.6,-1.5,142.73,928,-1.5 -2013,1,8,4,30,0,0,0,1.4000000000000001,-1.8,130.07,927,-1.8 -2013,1,8,5,30,0,0,0,1.2000000000000002,-1.8,117.48,927,-1.8 -2013,1,8,6,30,0,0,0,1.1,-1,105.17,928,-1 -2013,1,8,7,30,0,0,0,1.3,0.7000000000000001,93.31,928,0.4 -2013,1,8,8,30,101,45,403,1.6,2.2,82.05,929,0.9 -2013,1,8,9,30,10,10,0,1.8,3.1,72.03,929,1.4000000000000001 -2013,1,8,10,30,32,32,0,1.9000000000000001,4.2,63.6,928,2.1 -2013,1,8,11,30,29,29,0,2,5.300000000000001,57.52,927,3.1 -2013,1,8,12,30,107,107,0,2.1,6.300000000000001,54.61,926,4.1000000000000005 -2013,1,8,13,30,125,125,0,2.3000000000000003,7.1000000000000005,55.370000000000005,925,4.800000000000001 -2013,1,8,14,30,128,128,0,2.6,7.5,59.67,924,5.300000000000001 -2013,1,8,15,30,72,72,0,2.9000000000000004,7.4,66.82000000000001,925,5.5 -2013,1,8,16,30,13,13,0,2.6,6.7,75.98,926,5.6000000000000005 -2013,1,8,17,30,38,25,215,2.3000000000000003,6.1000000000000005,86.42,926,5.6000000000000005 -2013,1,8,18,30,0,0,0,2.7,5,98.09,927,5 -2013,1,8,19,30,0,0,0,3.2,4.5,110.17,928,4.5 -2013,1,8,20,30,0,0,0,3.8000000000000003,4.1000000000000005,122.61,927,4.1000000000000005 -2013,1,8,21,30,0,0,0,3.6,4,135.25,928,4 -2013,1,8,22,30,0,0,0,3.7,4,147.86,929,4 -2013,1,8,23,30,0,0,0,4.4,4,159.94,928,4 -2013,1,9,0,30,0,0,0,3.8000000000000003,3.9000000000000004,169,929,3.9000000000000004 -2013,1,9,1,30,0,0,0,2.7,3.9000000000000004,166.11,930,3.9000000000000004 -2013,1,9,2,30,0,0,0,2.6,3.9000000000000004,155.16,931,3.9000000000000004 -2013,1,9,3,30,0,0,0,2.9000000000000004,4,142.76,931,4 -2013,1,9,4,30,0,0,0,3.1,4,130.1,931,4 -2013,1,9,5,30,0,0,0,4,3.9000000000000004,117.51,931,3.9000000000000004 -2013,1,9,6,30,0,0,0,4.7,3.9000000000000004,105.18,931,3.9000000000000004 -2013,1,9,7,30,0,0,0,4.9,4.1000000000000005,93.31,931,4.1000000000000005 -2013,1,9,8,30,22,22,0,5.4,4.7,82.03,932,4.3 -2013,1,9,9,30,21,21,0,5.9,5.7,71.99,932,4.7 -2013,1,9,10,30,32,32,0,6.6000000000000005,6.300000000000001,63.53,931,5 -2013,1,9,11,30,123,123,0,6.2,6.2,57.42,930,5 -2013,1,9,12,30,253,235,31,5.5,5.800000000000001,54.480000000000004,930,4.800000000000001 -2013,1,9,13,30,61,61,0,5.9,5.300000000000001,55.22,928,4.6000000000000005 -2013,1,9,14,30,57,57,0,5.800000000000001,5,59.5,927,4.4 -2013,1,9,15,30,98,98,0,5.4,4.800000000000001,66.64,927,4.3 -2013,1,9,16,30,7,7,0,4.9,4.5,75.81,928,4.3 -2013,1,9,17,30,4,4,0,4.5,4.4,86.26,928,4.4 -2013,1,9,18,30,0,0,0,3.4000000000000004,4.3,97.93,928,4.3 -2013,1,9,19,30,0,0,0,2.7,4.3,110.01,928,4.3 -2013,1,9,20,30,0,0,0,2,4.3,122.46000000000001,928,4.3 -2013,1,9,21,30,0,0,0,1.5,4.3,135.1,928,4.3 -2013,1,9,22,30,0,0,0,1.1,4.4,147.71,928,4.4 -2013,1,9,23,30,0,0,0,0.5,4.3,159.78,927,4.3 -2013,1,10,0,30,0,0,0,0.30000000000000004,4,168.83,927,4 -2013,1,10,1,30,0,0,0,0.8,3.8000000000000003,166.06,926,3.8000000000000003 -2013,1,10,2,30,0,0,0,1.6,3.8000000000000003,155.17000000000002,925,3.8000000000000003 -2013,1,10,3,30,0,0,0,2.3000000000000003,3.9000000000000004,142.78,924,3.9000000000000004 -2013,1,10,4,30,0,0,0,1.9000000000000001,4,130.12,924,4 -2013,1,10,5,30,0,0,0,1.4000000000000001,4,117.53,925,4 -2013,1,10,6,30,0,0,0,1.6,4.2,105.19,926,4.2 -2013,1,10,7,30,0,0,0,2.4000000000000004,4.5,93.3,927,4.2 -2013,1,10,8,30,108,39,496,3.4000000000000004,5.4,82.01,927,4.1000000000000005 -2013,1,10,9,30,124,117,22,4,7.2,71.95,927,4.3 -2013,1,10,10,30,271,200,157,4.5,9.700000000000001,63.46,926,4.7 -2013,1,10,11,30,331,254,144,5.1000000000000005,12.100000000000001,57.31,925,4.800000000000001 -2013,1,10,12,30,630,67,964,5.4,13.700000000000001,54.33,924,4.5 -2013,1,10,13,30,615,65,960,5.300000000000001,14.5,55.050000000000004,924,4.5 -2013,1,10,14,30,538,61,935,5,14.8,59.33,924,4.5 -2013,1,10,15,30,403,54,873,4.2,14.3,66.47,924,4.6000000000000005 -2013,1,10,16,30,228,43,747,2.5,11.8,75.64,924,5 -2013,1,10,17,30,48,20,411,1.5,9.8,86.10000000000001,925,5.300000000000001 -2013,1,10,18,30,0,0,0,2.1,7.4,97.78,925,4.4 -2013,1,10,19,30,0,0,0,2.7,6.9,109.86,925,3.9000000000000004 -2013,1,10,20,30,0,0,0,3.2,6.2,122.31,925,3.1 -2013,1,10,21,30,0,0,0,3.3000000000000003,5.5,134.95,925,2.1 -2013,1,10,22,30,0,0,0,3.5,4.9,147.56,925,1.3 -2013,1,10,23,30,0,0,0,3.9000000000000004,4.5,159.61,924,1 -2013,1,11,0,30,0,0,0,4.3,4.2,168.65,924,1 -2013,1,11,1,30,0,0,0,4.5,4.2,166,924,1.3 -2013,1,11,2,30,0,0,0,4.6000000000000005,4.3,155.17000000000002,924,1.7000000000000002 -2013,1,11,3,30,0,0,0,4.6000000000000005,4.4,142.8,923,2.2 -2013,1,11,4,30,0,0,0,4.800000000000001,4.7,130.14000000000001,923,2.7 -2013,1,11,5,30,0,0,0,4.9,5,117.54,922,3 -2013,1,11,6,30,0,0,0,5,5.300000000000001,105.2,922,3.2 -2013,1,11,7,30,0,0,0,5.4,6.2,93.29,923,3.6 -2013,1,11,8,30,78,49,213,5.9,8.4,81.98,923,4.1000000000000005 -2013,1,11,9,30,259,79,580,7.1000000000000005,11.9,71.9,923,5 -2013,1,11,10,30,383,140,544,8.3,15.4,63.370000000000005,923,5.4 -2013,1,11,11,30,516,125,723,8.200000000000001,17.5,57.19,921,5.1000000000000005 -2013,1,11,12,30,648,67,992,7.6000000000000005,18.400000000000002,54.18,920,4.7 -2013,1,11,13,30,636,68,986,7,18.900000000000002,54.88,919,4.3 -2013,1,11,14,30,456,151,595,6.2,19.200000000000003,59.14,919,3.9000000000000004 -2013,1,11,15,30,234,176,144,4.7,18.1,66.29,919,3.6 -2013,1,11,16,30,106,96,37,3.1,15.3,75.47,919,4.7 -2013,1,11,17,30,25,24,5,2.5,13.700000000000001,85.94,920,5.2 -2013,1,11,18,30,0,0,0,2.7,12.200000000000001,97.61,920,5.1000000000000005 -2013,1,11,19,30,0,0,0,3,12,109.7,921,5.300000000000001 -2013,1,11,20,30,0,0,0,3.1,11.5,122.16,921,5.5 -2013,1,11,21,30,0,0,0,2.7,10.700000000000001,134.8,922,5.6000000000000005 -2013,1,11,22,30,0,0,0,2.1,9.700000000000001,147.4,922,5.6000000000000005 -2013,1,11,23,30,0,0,0,1.7000000000000002,8.9,159.44,922,5.300000000000001 -2013,1,12,0,30,0,0,0,1.6,8.3,168.47,923,4.800000000000001 -2013,1,12,1,30,0,0,0,1.7000000000000002,7.6000000000000005,165.93,923,3.9000000000000004 -2013,1,12,2,30,0,0,0,2.3000000000000003,6.9,155.16,923,2.7 -2013,1,12,3,30,0,0,0,3,5.9,142.81,923,1 -2013,1,12,4,30,0,0,0,3.4000000000000004,4.7,130.15,922,-0.8 -2013,1,12,5,30,0,0,0,3.7,3.6,117.55,922,-3 -2013,1,12,6,30,0,0,0,3.8000000000000003,3,105.19,922,-5.300000000000001 -2013,1,12,7,30,0,0,0,3.9000000000000004,3.2,93.28,922,-6.2 -2013,1,12,8,30,39,39,0,4.3,4.3,81.95,923,-6.2 -2013,1,12,9,30,19,19,0,4.6000000000000005,5.9,71.84,923,-6.1000000000000005 -2013,1,12,10,30,206,186,45,4.800000000000001,7.4,63.28,923,-6.1000000000000005 -2013,1,12,11,30,181,177,7,4.800000000000001,8.5,57.07,923,-5.9 -2013,1,12,12,30,176,174,4,4.7,9.3,54.03,922,-5.7 -2013,1,12,13,30,99,99,0,4.6000000000000005,9.600000000000001,54.7,922,-5.4 -2013,1,12,14,30,94,94,0,4.7,9.3,58.96,922,-5.4 -2013,1,12,15,30,228,178,123,4.800000000000001,8.3,66.1,922,-5.6000000000000005 -2013,1,12,16,30,245,49,774,4.2,6.300000000000001,75.29,923,-5.800000000000001 -2013,1,12,17,30,56,24,430,3.7,4.9,85.77,924,-5.300000000000001 -2013,1,12,18,30,0,0,0,3.9000000000000004,1.9000000000000001,97.45,925,-5.1000000000000005 -2013,1,12,19,30,0,0,0,4.4,0.5,109.55,926,-5.300000000000001 -2013,1,12,20,30,0,0,0,4.7,-0.9,122.01,926,-5.2 -2013,1,12,21,30,0,0,0,4.6000000000000005,-2.1,134.65,927,-5 -2013,1,12,22,30,0,0,0,4.5,-3,147.25,927,-4.9 -2013,1,12,23,30,0,0,0,4.2,-3.6,159.27,928,-5.2 -2013,1,13,0,30,0,0,0,3.9000000000000004,-4.2,168.28,929,-5.9 -2013,1,13,1,30,0,0,0,3.8000000000000003,-4.7,165.85,930,-6.7 -2013,1,13,2,30,0,0,0,3.7,-5.2,155.15,930,-7.6000000000000005 -2013,1,13,3,30,0,0,0,3.7,-5.7,142.81,931,-8.6 -2013,1,13,4,30,0,0,0,3.8000000000000003,-6.1000000000000005,130.16,931,-9.5 -2013,1,13,5,30,0,0,0,3.8000000000000003,-6.5,117.55,932,-10.3 -2013,1,13,6,30,0,0,0,3.6,-6.7,105.19,933,-11 -2013,1,13,7,30,0,0,0,4,-6.2,93.26,934,-11.4 -2013,1,13,8,30,125,34,648,4.7,-4.6000000000000005,81.9,935,-12 -2013,1,13,9,30,324,51,872,4.7,-2.6,71.77,935,-13.100000000000001 -2013,1,13,10,30,496,60,967,4.3,-0.8,63.190000000000005,935,-12.8 -2013,1,13,11,30,616,65,1011,4.1000000000000005,0.8,56.94,934,-12.100000000000001 -2013,1,13,12,30,673,67,1028,3.8000000000000003,2.1,53.86,933,-11.4 -2013,1,13,13,30,661,66,1025,3.6,3,54.51,932,-10.9 -2013,1,13,14,30,582,63,1000,3.5,3.3000000000000003,58.76,932,-10.600000000000001 -2013,1,13,15,30,442,56,946,3.5,2.9000000000000004,65.91,932,-10.4 -2013,1,13,16,30,257,44,828,2.6,1,75.10000000000001,932,-10.4 -2013,1,13,17,30,62,23,502,1.8,-0.5,85.59,933,-8.700000000000001 -2013,1,13,18,30,0,0,0,1.8,-3.3000000000000003,97.29,933,-8.8 -2013,1,13,19,30,0,0,0,1.9000000000000001,-4,109.39,934,-9.3 -2013,1,13,20,30,0,0,0,2.1,-4.6000000000000005,121.86,934,-9.600000000000001 -2013,1,13,21,30,0,0,0,2.5,-5.1000000000000005,134.5,934,-10 -2013,1,13,22,30,0,0,0,3,-5.6000000000000005,147.09,934,-10.5 -2013,1,13,23,30,0,0,0,3.1,-6.1000000000000005,159.1,934,-10.9 -2013,1,14,0,30,0,0,0,2.7,-6.5,168.09,934,-11.200000000000001 -2013,1,14,1,30,0,0,0,2.4000000000000004,-6.9,165.76,935,-11.4 -2013,1,14,2,30,0,0,0,2.4000000000000004,-7,155.13,935,-11.600000000000001 -2013,1,14,3,30,0,0,0,2.6,-7.1000000000000005,142.81,935,-11.8 -2013,1,14,4,30,0,0,0,2.7,-7.1000000000000005,130.17000000000002,935,-12 -2013,1,14,5,30,0,0,0,2.8000000000000003,-7,117.55,935,-12.100000000000001 -2013,1,14,6,30,0,0,0,2.9000000000000004,-6.9,105.18,936,-12.100000000000001 -2013,1,14,7,30,0,0,0,3.5,-6.1000000000000005,93.23,936,-12.100000000000001 -2013,1,14,8,30,122,34,626,4.3,-4.4,81.86,936,-12.4 -2013,1,14,9,30,319,50,854,4.6000000000000005,-2.3000000000000003,71.7,936,-12.600000000000001 -2013,1,14,10,30,488,58,951,4.2,-0.4,63.08,935,-12.3 -2013,1,14,11,30,608,63,995,3.7,1.3,56.800000000000004,934,-11.8 -2013,1,14,12,30,664,64,1014,3.4000000000000004,2.7,53.69,933,-11.200000000000001 -2013,1,14,13,30,653,63,1011,3.3000000000000003,3.5,54.32,932,-10.700000000000001 -2013,1,14,14,30,575,60,987,3.3000000000000003,3.8000000000000003,58.56,932,-10.200000000000001 -2013,1,14,15,30,437,54,931,3.2,3.5,65.71000000000001,932,-9.9 -2013,1,14,16,30,255,45,810,2.2,1.2000000000000002,74.92,933,-9.600000000000001 -2013,1,14,17,30,62,23,489,1.3,-0.7000000000000001,85.42,933,-7.800000000000001 -2013,1,14,18,30,0,0,0,1.4000000000000001,-3.4000000000000004,97.12,934,-8.8 -2013,1,14,19,30,0,0,0,1.7000000000000002,-3.9000000000000004,109.23,934,-9.4 -2013,1,14,20,30,0,0,0,2,-4.2,121.7,934,-10 -2013,1,14,21,30,0,0,0,2.2,-4.5,134.35,933,-10.4 -2013,1,14,22,30,0,0,0,2.2,-4.9,146.94,933,-10.700000000000001 -2013,1,14,23,30,0,0,0,2.2,-5.4,158.93,933,-10.8 -2013,1,15,0,30,0,0,0,2.3000000000000003,-5.7,167.89000000000001,933,-10.8 -2013,1,15,1,30,0,0,0,2.4000000000000004,-5.9,165.67000000000002,933,-10.9 -2013,1,15,2,30,0,0,0,2.7,-6.2,155.11,933,-11 -2013,1,15,3,30,0,0,0,2.8000000000000003,-6.4,142.81,933,-11 -2013,1,15,4,30,0,0,0,2.9000000000000004,-6.6000000000000005,130.16,933,-11 -2013,1,15,5,30,0,0,0,2.9000000000000004,-6.7,117.55,933,-10.9 -2013,1,15,6,30,0,0,0,2.9000000000000004,-6.7,105.16,933,-10.9 -2013,1,15,7,30,0,0,0,3.3000000000000003,-6,93.2,933,-10.8 -2013,1,15,8,30,120,35,595,3.8000000000000003,-4,81.8,934,-10.8 -2013,1,15,9,30,41,41,0,4.1000000000000005,-1.3,71.62,934,-10.8 -2013,1,15,10,30,111,111,0,4.3,0.9,62.97,934,-10.4 -2013,1,15,11,30,204,196,14,4.5,2.3000000000000003,56.65,933,-9.8 -2013,1,15,12,30,201,196,9,4.800000000000001,3.1,53.52,932,-9.700000000000001 -2013,1,15,13,30,168,166,2,5,3.4000000000000004,54.13,932,-9.700000000000001 -2013,1,15,14,30,183,179,9,5.1000000000000005,3.2,58.36,932,-9.8 -2013,1,15,15,30,434,65,890,4.800000000000001,2.6,65.52,933,-9.8 -2013,1,15,16,30,253,51,766,3.4000000000000004,0.5,74.73,934,-9.600000000000001 -2013,1,15,17,30,63,26,456,2.3000000000000003,-1,85.25,934,-8.8 -2013,1,15,18,30,0,0,0,1.6,-3.9000000000000004,96.95,935,-9 -2013,1,15,19,30,0,0,0,1.4000000000000001,-4.3,109.07000000000001,935,-9.3 -2013,1,15,20,30,0,0,0,1.2000000000000002,-4.5,121.55,935,-9.5 -2013,1,15,21,30,0,0,0,1.2000000000000002,-4.6000000000000005,134.2,935,-9.700000000000001 -2013,1,15,22,30,0,0,0,1.1,-5,146.78,935,-9.700000000000001 -2013,1,15,23,30,0,0,0,1.2000000000000002,-5.4,158.75,935,-9.700000000000001 -2013,1,16,0,30,0,0,0,1.3,-5.5,167.68,934,-9.700000000000001 -2013,1,16,1,30,0,0,0,1.5,-5.6000000000000005,165.56,934,-9.600000000000001 -2013,1,16,2,30,0,0,0,1.8,-5.6000000000000005,155.07,934,-9.600000000000001 -2013,1,16,3,30,0,0,0,2,-5.6000000000000005,142.8,934,-9.600000000000001 -2013,1,16,4,30,0,0,0,2.2,-5.7,130.16,934,-9.600000000000001 -2013,1,16,5,30,0,0,0,2.2,-5.800000000000001,117.53,934,-9.8 -2013,1,16,6,30,0,0,0,2.1,-5.9,105.13,935,-10 -2013,1,16,7,30,0,0,0,2.6,-5,93.16,935,-10.200000000000001 -2013,1,16,8,30,127,32,665,3.1,-2.4000000000000004,81.75,935,-10.200000000000001 -2013,1,16,9,30,327,47,884,3.2,1.1,71.53,936,-10.200000000000001 -2013,1,16,10,30,494,53,966,3.7,4,62.86,935,-11.700000000000001 -2013,1,16,11,30,608,55,1002,4.2,5.800000000000001,56.5,934,-12.3 -2013,1,16,12,30,661,57,1012,4.7,7.1000000000000005,53.33,933,-11.8 -2013,1,16,13,30,643,56,997,5.2,8.1,53.92,933,-10.100000000000001 -2013,1,16,14,30,564,53,969,5.4,8.6,58.15,932,-8.200000000000001 -2013,1,16,15,30,428,48,910,4.800000000000001,8.5,65.31,933,-6.5 -2013,1,16,16,30,250,39,790,3.1,5.9,74.54,933,-4.9 -2013,1,16,17,30,64,21,493,2,3.6,85.08,933,-3.6 -2013,1,16,18,30,0,0,0,1.8,1,96.78,935,-3.9000000000000004 -2013,1,16,19,30,0,0,0,1.7000000000000002,0.5,108.91,935,-3.8000000000000003 -2013,1,16,20,30,0,0,0,1.7000000000000002,0.1,121.39,936,-3.6 -2013,1,16,21,30,0,0,0,1.8,-0.30000000000000004,134.04,936,-3.2 -2013,1,16,22,30,0,0,0,1.9000000000000001,-0.7000000000000001,146.62,936,-2.7 -2013,1,16,23,30,0,0,0,2.1,-1,158.57,937,-2.3000000000000003 -2013,1,17,0,30,0,0,0,2.3000000000000003,-1.2000000000000002,167.47,937,-2.1 -2013,1,17,1,30,0,0,0,2.4000000000000004,-1.5,165.44,938,-2.1 -2013,1,17,2,30,0,0,0,2.4000000000000004,-1.7000000000000002,155.03,938,-2.2 -2013,1,17,3,30,0,0,0,2.5,-1.8,142.78,938,-2.4000000000000004 -2013,1,17,4,30,0,0,0,2.7,-1.8,130.14000000000001,938,-2.5 -2013,1,17,5,30,0,0,0,2.9000000000000004,-1.9000000000000001,117.51,939,-2.6 -2013,1,17,6,30,0,0,0,2.9000000000000004,-2.1,105.11,940,-2.7 -2013,1,17,7,30,0,0,0,3.3000000000000003,-1,93.11,941,-2.8000000000000003 -2013,1,17,8,30,121,29,638,3.7,1.7000000000000002,81.68,942,-2.9000000000000004 -2013,1,17,9,30,313,41,853,3.5,5.1000000000000005,71.44,943,-2.6 -2013,1,17,10,30,481,50,941,3.6,8.6,62.730000000000004,943,-2.8000000000000003 -2013,1,17,11,30,599,54,984,3.6,11.3,56.34,943,-3.3000000000000003 -2013,1,17,12,30,656,56,1002,3.5,13,53.14,942,-3.8000000000000003 -2013,1,17,13,30,646,55,999,3.3000000000000003,13.5,53.71,941,-3.6 -2013,1,17,14,30,570,53,975,3,13.5,57.94,941,-3.3000000000000003 -2013,1,17,15,30,437,51,917,2.4000000000000004,12.700000000000001,65.11,941,-2.9000000000000004 -2013,1,17,16,30,258,41,804,1.6,9.9,74.35000000000001,941,-1.4000000000000001 -2013,1,17,17,30,68,23,508,1.2000000000000002,7.800000000000001,84.9,941,0.1 -2013,1,17,18,30,0,0,0,1.4000000000000001,5.5,96.61,942,-1.6 -2013,1,17,19,30,0,0,0,1.3,5,108.75,942,-1.9000000000000001 -2013,1,17,20,30,0,0,0,1.3,4.4,121.24000000000001,943,-2.1 -2013,1,17,21,30,0,0,0,1.3,3.8000000000000003,133.89000000000001,943,-2.2 -2013,1,17,22,30,0,0,0,1.3,3.1,146.46,943,-2.3000000000000003 -2013,1,17,23,30,0,0,0,1.3,2.4000000000000004,158.39000000000001,942,-2.4000000000000004 -2013,1,18,0,30,0,0,0,1.3,1.7000000000000002,167.26,942,-2.5 -2013,1,18,1,30,0,0,0,1.3,0.9,165.32,942,-2.6 -2013,1,18,2,30,0,0,0,1.4000000000000001,0.1,154.99,942,-2.7 -2013,1,18,3,30,0,0,0,1.4000000000000001,-0.8,142.76,941,-2.7 -2013,1,18,4,30,0,0,0,1.5,-1.5,130.12,941,-2.6 -2013,1,18,5,30,0,0,0,1.7000000000000002,-1.8,117.49000000000001,941,-2.5 -2013,1,18,6,30,0,0,0,2.1,-1.9000000000000001,105.07000000000001,941,-2.3000000000000003 -2013,1,18,7,30,0,0,0,3.2,-0.2,93.06,941,-2.1 -2013,1,18,8,30,123,32,626,4.1000000000000005,2.9000000000000004,81.61,941,-1.6 -2013,1,18,9,30,317,48,841,4.5,6.6000000000000005,71.34,941,-0.9 -2013,1,18,10,30,486,58,932,5.300000000000001,10.600000000000001,62.6,941,-0.6000000000000001 -2013,1,18,11,30,606,63,975,5.5,13.4,56.18,939,-1.2000000000000002 -2013,1,18,12,30,664,68,989,5.300000000000001,15.100000000000001,52.95,938,-1.4000000000000001 -2013,1,18,13,30,654,68,985,5,16,53.5,936,-1.4000000000000001 -2013,1,18,14,30,578,66,960,4.800000000000001,16.3,57.72,936,-1.4000000000000001 -2013,1,18,15,30,442,60,900,4,15.5,64.9,935,-1.6 -2013,1,18,16,30,264,49,787,2.7,12.4,74.15,935,-0.6000000000000001 -2013,1,18,17,30,71,27,480,2,9.9,84.72,935,0.6000000000000001 -2013,1,18,18,30,0,0,0,2.5,7.2,96.44,935,-0.2 -2013,1,18,19,30,0,0,0,2.9000000000000004,6.7,108.58,935,-0.5 -2013,1,18,20,30,0,0,0,3.4000000000000004,6.1000000000000005,121.08,935,-0.6000000000000001 -2013,1,18,21,30,0,0,0,3.7,5.5,133.73,935,-0.6000000000000001 -2013,1,18,22,30,0,0,0,4,4.9,146.29,935,-0.6000000000000001 -2013,1,18,23,30,0,0,0,4.1000000000000005,4.4,158.20000000000002,934,-0.5 -2013,1,19,0,30,0,0,0,4.2,4,167.04,934,-0.4 -2013,1,19,1,30,0,0,0,4.3,3.7,165.19,934,-0.30000000000000004 -2013,1,19,2,30,0,0,0,4.1000000000000005,3.3000000000000003,154.93,934,-0.2 -2013,1,19,3,30,0,0,0,3.8000000000000003,2.7,142.72,933,-0.30000000000000004 -2013,1,19,4,30,0,0,0,3.6,2,130.1,933,-0.30000000000000004 -2013,1,19,5,30,0,0,0,3.5,1.4000000000000001,117.46000000000001,933,-0.2 -2013,1,19,6,30,0,0,0,3.6,1,105.03,933,-0.1 -2013,1,19,7,30,0,0,0,4.2,1.6,93.01,933,0 -2013,1,19,8,30,97,45,352,4.6000000000000005,4,81.54,933,0.2 -2013,1,19,9,30,325,49,856,4.7,7.7,71.24,933,0.5 -2013,1,19,10,30,495,57,948,4.9,11.700000000000001,62.47,933,0.30000000000000004 -2013,1,19,11,30,616,61,994,4.7,15,56.01,932,0.1 -2013,1,19,12,30,679,61,1021,4.5,17.400000000000002,52.74,931,-0.9 -2013,1,19,13,30,669,61,1019,4.1000000000000005,18.8,53.28,930,-2.3000000000000003 -2013,1,19,14,30,593,57,997,3.6,19.1,57.5,930,-3.1 -2013,1,19,15,30,455,51,946,2.4000000000000004,18,64.69,930,-3.6 -2013,1,19,16,30,273,41,839,1.3,14.600000000000001,73.96000000000001,930,2.1 -2013,1,19,17,30,78,23,571,1.3,12.200000000000001,84.54,931,0.9 -2013,1,19,18,30,0,0,0,1.5,8.700000000000001,96.26,932,-1.4000000000000001 -2013,1,19,19,30,0,0,0,1.6,7.2,108.42,933,-1.6 -2013,1,19,20,30,0,0,0,1.7000000000000002,5.800000000000001,120.92,933,-1.8 -2013,1,19,21,30,0,0,0,1.7000000000000002,4.6000000000000005,133.58,934,-1.9000000000000001 -2013,1,19,22,30,0,0,0,1.6,3.6,146.13,934,-2.1 -2013,1,19,23,30,0,0,0,1.5,2.7,158.02,934,-2.3000000000000003 -2013,1,20,0,30,0,0,0,1.5,2,166.81,934,-2.6 -2013,1,20,1,30,0,0,0,1.5,1.4000000000000001,165.05,934,-2.8000000000000003 -2013,1,20,2,30,0,0,0,1.6,0.8,154.87,934,-2.9000000000000004 -2013,1,20,3,30,0,0,0,1.7000000000000002,0.30000000000000004,142.69,934,-3 -2013,1,20,4,30,0,0,0,1.7000000000000002,-0.1,130.06,934,-3 -2013,1,20,5,30,0,0,0,1.7000000000000002,-0.6000000000000001,117.42,934,-3.1 -2013,1,20,6,30,0,0,0,1.6,-1,104.98,934,-3.3000000000000003 -2013,1,20,7,30,0,0,0,2,0.7000000000000001,92.94,934,-3.5 -2013,1,20,8,30,131,30,685,2.5,4.1000000000000005,81.46000000000001,934,-3.1 -2013,1,20,9,30,328,43,881,2.1,7.6000000000000005,71.13,935,-2.8000000000000003 -2013,1,20,10,30,500,50,969,1,12.100000000000001,62.32,934,-1.3 -2013,1,20,11,30,622,54,1011,0.9,15.9,55.83,933,-1 -2013,1,20,12,30,683,62,1022,1.5,17.6,52.53,932,-2.3000000000000003 -2013,1,20,13,30,674,62,1019,1.9000000000000001,18.2,53.050000000000004,931,-2.9000000000000004 -2013,1,20,14,30,598,59,997,2,18.3,57.28,930,-3.4000000000000004 -2013,1,20,15,30,461,54,943,1.6,17.400000000000002,64.47,930,-3.9000000000000004 -2013,1,20,16,30,281,46,842,1.1,15.100000000000001,73.76,930,1.6 -2013,1,20,17,30,81,26,558,1.1,13.600000000000001,84.36,930,-0.1 -2013,1,20,18,30,0,0,0,1.2000000000000002,11.600000000000001,96.09,930,-2.8000000000000003 -2013,1,20,19,30,0,0,0,1.4000000000000001,10.200000000000001,108.26,930,-3 -2013,1,20,20,30,0,0,0,1.5,8.700000000000001,120.76,931,-3 -2013,1,20,21,30,0,0,0,1.6,7.4,133.42000000000002,931,-3 -2013,1,20,22,30,0,0,0,1.6,6.300000000000001,145.97,931,-3 -2013,1,20,23,30,0,0,0,1.5,5.5,157.83,932,-3.1 -2013,1,21,0,30,0,0,0,1.4000000000000001,5.1000000000000005,166.58,932,-3.3000000000000003 -2013,1,21,1,30,0,0,0,1.1,4.7,164.9,932,-3.4000000000000004 -2013,1,21,2,30,0,0,0,1.2000000000000002,3.4000000000000004,154.8,933,-3.5 -2013,1,21,3,30,0,0,0,1.9000000000000001,1.7000000000000002,142.64000000000001,933,-3.3000000000000003 -2013,1,21,4,30,0,0,0,2.7,0.7000000000000001,130.03,933,-2.9000000000000004 -2013,1,21,5,30,0,0,0,3.4000000000000004,-0.2,117.38,934,-2.5 -2013,1,21,6,30,0,0,0,3.8000000000000003,-1.4000000000000001,104.93,935,-2.4000000000000004 -2013,1,21,7,30,0,0,0,4.4,-1.7000000000000002,92.88,936,-3 -2013,1,21,8,30,130,35,631,5.2,-0.30000000000000004,81.37,936,-4.3 -2013,1,21,9,30,328,53,848,5.300000000000001,1.7000000000000002,71.01,937,-5.4 -2013,1,21,10,30,381,166,460,5.1000000000000005,4,62.17,937,-5.7 -2013,1,21,11,30,623,67,985,4.7,6,55.64,937,-5.300000000000001 -2013,1,21,12,30,683,68,1006,4,7.6000000000000005,52.32,936,-4.7 -2013,1,21,13,30,670,67,997,3.1,8.700000000000001,52.82,935,-4 -2013,1,21,14,30,594,64,973,2.2,9.3,57.04,935,-3.3000000000000003 -2013,1,21,15,30,458,57,923,1.4000000000000001,9.200000000000001,64.25,934,-2.8000000000000003 -2013,1,21,16,30,277,47,811,0.8,8,73.55,934,-2.4000000000000004 -2013,1,21,17,30,80,27,525,0.6000000000000001,7,84.17,934,-1.4000000000000001 -2013,1,21,18,30,0,0,0,0.7000000000000001,5,95.92,935,-2.2 -2013,1,21,19,30,0,0,0,0.9,4.1000000000000005,108.09,935,-2.5 -2013,1,21,20,30,0,0,0,1,3.2,120.61,935,-2.9000000000000004 -2013,1,21,21,30,0,0,0,1.2000000000000002,2.2,133.26,935,-3.2 -2013,1,21,22,30,0,0,0,1.2000000000000002,1.4000000000000001,145.8,935,-3.4000000000000004 -2013,1,21,23,30,0,0,0,1.1,1,157.64000000000001,935,-3.6 -2013,1,22,0,30,0,0,0,1,0.8,166.35,935,-3.8000000000000003 -2013,1,22,1,30,0,0,0,1,0.6000000000000001,164.74,935,-3.8000000000000003 -2013,1,22,2,30,0,0,0,1,0.6000000000000001,154.72,935,-3.7 -2013,1,22,3,30,0,0,0,1,0.7000000000000001,142.59,935,-3.4000000000000004 -2013,1,22,4,30,0,0,0,0.9,0.8,129.98,935,-3 -2013,1,22,5,30,0,0,0,0.9,0.8,117.33,935,-2.7 -2013,1,22,6,30,0,0,0,1,0.7000000000000001,104.87,935,-2.3000000000000003 -2013,1,22,7,30,0,0,0,1.6,2,92.8,935,-1.8 -2013,1,22,8,30,118,48,467,2.7,4.7,81.27,935,-0.7000000000000001 -2013,1,22,9,30,221,126,289,3.4000000000000004,7.9,70.89,935,0.9 -2013,1,22,10,30,480,90,831,4.1000000000000005,11.700000000000001,62.02,935,4 -2013,1,22,11,30,600,95,890,4.9,15,55.45,934,7.2 -2013,1,22,12,30,665,82,949,5.1000000000000005,17.2,52.1,933,8.700000000000001 -2013,1,22,13,30,655,81,944,5,18.400000000000002,52.58,932,8.9 -2013,1,22,14,30,580,77,920,4.7,18.900000000000002,56.81,932,8.8 -2013,1,22,15,30,449,64,879,4,18.6,64.03,931,8.6 -2013,1,22,16,30,271,53,761,2.6,16,73.35000000000001,931,8.6 -2013,1,22,17,30,79,30,470,1.8,13.9,83.99,931,8.6 -2013,1,22,18,30,0,0,0,2,11,95.74000000000001,932,8.200000000000001 -2013,1,22,19,30,0,0,0,2.3000000000000003,10.4,107.93,932,8.4 -2013,1,22,20,30,0,0,0,2.9000000000000004,9.8,120.45,932,8.700000000000001 -2013,1,22,21,30,0,0,0,3.4000000000000004,9.3,133.1,933,9.1 -2013,1,22,22,30,0,0,0,3.6,8.700000000000001,145.63,933,8.700000000000001 -2013,1,22,23,30,0,0,0,3.6,8.3,157.44,933,8.3 -2013,1,23,0,30,0,0,0,3.5,8.1,166.11,933,8.1 -2013,1,23,1,30,0,0,0,3.3000000000000003,8,164.57,934,8 -2013,1,23,2,30,0,0,0,3.1,7.7,154.63,934,7.7 -2013,1,23,3,30,0,0,0,2.9000000000000004,7.6000000000000005,142.54,934,7.6000000000000005 -2013,1,23,4,30,0,0,0,2.8000000000000003,7.5,129.93,934,7.5 -2013,1,23,5,30,0,0,0,2.7,7.4,117.28,934,7.4 -2013,1,23,6,30,0,0,0,2.6,7.4,104.81,934,7.4 -2013,1,23,7,30,0,0,0,3.1,7.800000000000001,92.72,935,7.800000000000001 -2013,1,23,8,30,125,45,527,3.9000000000000004,8.700000000000001,81.18,935,7.800000000000001 -2013,1,23,9,30,325,67,784,4.5,10.5,70.76,935,8 -2013,1,23,10,30,502,72,911,4.7,13.5,61.86,935,8.1 -2013,1,23,11,30,627,72,975,4.6000000000000005,16.7,55.25,934,7.7 -2013,1,23,12,30,688,67,1005,4.6000000000000005,19.400000000000002,51.870000000000005,933,6.6000000000000005 -2013,1,23,13,30,679,65,1005,4.6000000000000005,21.200000000000003,52.34,933,4.7 -2013,1,23,14,30,607,62,990,4.7,22,56.57,932,2.5 -2013,1,23,15,30,471,55,941,3.8000000000000003,21.400000000000002,63.81,932,1 -2013,1,23,16,30,288,46,834,2.5,17.900000000000002,73.14,932,2.6 -2013,1,23,17,30,88,27,567,2,15.3,83.81,932,3.3000000000000003 -2013,1,23,18,30,0,0,0,2.3000000000000003,12,95.56,932,1.7000000000000002 -2013,1,23,19,30,0,0,0,2.6,11.200000000000001,107.76,932,1 -2013,1,23,20,30,0,0,0,2.9000000000000004,10.600000000000001,120.29,932,0.7000000000000001 -2013,1,23,21,30,0,0,0,3.2,10.200000000000001,132.94,932,0.8 -2013,1,23,22,30,0,0,0,3.5,9.8,145.47,933,1.6 -2013,1,23,23,30,0,0,0,3.9000000000000004,9.4,157.25,933,3.1 -2013,1,24,0,30,0,0,0,4.1000000000000005,8.9,165.86,933,4.800000000000001 -2013,1,24,1,30,0,0,0,4.1000000000000005,8.3,164.39000000000001,933,6.5 -2013,1,24,2,30,0,0,0,4.1000000000000005,7.9,154.54,933,7.6000000000000005 -2013,1,24,3,30,0,0,0,4.2,7.800000000000001,142.47,933,7.800000000000001 -2013,1,24,4,30,0,0,0,4.2,7.6000000000000005,129.88,932,7.6000000000000005 -2013,1,24,5,30,0,0,0,4,7.2,117.22,933,7.2 -2013,1,24,6,30,0,0,0,4.1000000000000005,6.7,104.74000000000001,933,6.7 -2013,1,24,7,30,0,0,0,4.4,7,92.64,933,5.7 -2013,1,24,8,30,97,51,293,4.4,8.700000000000001,81.07000000000001,934,4 -2013,1,24,9,30,282,80,610,4,11.9,70.63,934,2.5 -2013,1,24,10,30,508,60,945,3.7,15.9,61.690000000000005,934,1.4000000000000001 -2013,1,24,11,30,631,65,989,3.6,19.200000000000003,55.050000000000004,933,0.2 -2013,1,24,12,30,691,65,1009,3.7,21.700000000000003,51.63,932,0 -2013,1,24,13,30,680,64,1002,3.7,23.3,52.09,931,0.6000000000000001 -2013,1,24,14,30,605,61,980,3.4000000000000004,24.1,56.33,930,1.4000000000000001 -2013,1,24,15,30,467,57,923,2.4000000000000004,23.1,63.58,929,2.1 -2013,1,24,16,30,285,48,809,1.3,20.200000000000003,72.93,929,7.4 -2013,1,24,17,30,78,31,420,1.2000000000000002,18.400000000000002,83.62,929,6.5 -2013,1,24,18,30,0,0,0,2,15.3,95.39,929,5.4 -2013,1,24,19,30,0,0,0,2.7,14.5,107.59,929,5.5 -2013,1,24,20,30,0,0,0,3.4000000000000004,14,120.13,929,5.7 -2013,1,24,21,30,0,0,0,3.9000000000000004,13.3,132.78,929,5.9 -2013,1,24,22,30,0,0,0,4.1000000000000005,12.600000000000001,145.3,929,6.300000000000001 -2013,1,24,23,30,0,0,0,4.1000000000000005,12.100000000000001,157.05,929,6.7 -2013,1,25,0,30,0,0,0,4,11.8,165.61,929,7 -2013,1,25,1,30,0,0,0,4,11.4,164.21,929,7.2 -2013,1,25,2,30,0,0,0,3.8000000000000003,10.700000000000001,154.44,929,7.2 -2013,1,25,3,30,0,0,0,3.6,9.700000000000001,142.4,929,6.9 -2013,1,25,4,30,0,0,0,3.2,8.8,129.81,929,6.300000000000001 -2013,1,25,5,30,0,0,0,2.7,7.9,117.16,929,5.5 -2013,1,25,6,30,0,0,0,2.2,7.1000000000000005,104.67,930,4.6000000000000005 -2013,1,25,7,30,0,0,0,2.7,7.2,92.55,931,3.8000000000000003 -2013,1,25,8,30,76,58,111,3.6,7.800000000000001,80.96000000000001,932,2.7 -2013,1,25,9,30,218,133,255,4,8.200000000000001,70.49,933,1.9000000000000001 -2013,1,25,10,30,391,171,460,4.2,8.4,61.51,933,1.3 -2013,1,25,11,30,454,247,359,4,8.9,54.84,933,1.1 -2013,1,25,12,30,502,273,366,3.7,9.700000000000001,51.39,932,1 -2013,1,25,13,30,551,209,553,3.2,10.4,51.84,932,0.9 -2013,1,25,14,30,450,228,398,2.9000000000000004,10.8,56.08,931,0.9 -2013,1,25,15,30,453,63,870,2.7,10.700000000000001,63.35,931,0.8 -2013,1,25,16,30,251,68,618,2.2,9.700000000000001,72.72,931,0.6000000000000001 -2013,1,25,17,30,46,41,50,1.8,9,83.42,932,1 -2013,1,25,18,30,0,0,0,1.5,7,95.21000000000001,932,1.2000000000000002 -2013,1,25,19,30,0,0,0,1.5,6.4,107.43,932,0.6000000000000001 -2013,1,25,20,30,0,0,0,1.4000000000000001,5.800000000000001,119.97,933,0.4 -2013,1,25,21,30,0,0,0,1.1,5.2,132.62,933,0.2 -2013,1,25,22,30,0,0,0,0.8,4.6000000000000005,145.13,933,0.2 -2013,1,25,23,30,0,0,0,0.6000000000000001,4.1000000000000005,156.85,933,0.1 -2013,1,26,0,30,0,0,0,0.4,3.9000000000000004,165.36,933,-0.30000000000000004 -2013,1,26,1,30,0,0,0,0.4,3.6,164.02,933,-0.6000000000000001 -2013,1,26,2,30,0,0,0,0.5,3.2,154.33,932,-0.8 -2013,1,26,3,30,0,0,0,0.7000000000000001,2.8000000000000003,142.33,932,-1 -2013,1,26,4,30,0,0,0,0.7000000000000001,2.6,129.75,932,-1.1 -2013,1,26,5,30,0,0,0,0.8,2.5,117.09,932,-1.1 -2013,1,26,6,30,0,0,0,0.7000000000000001,2.5,104.59,932,-1.1 -2013,1,26,7,30,0,0,0,0.7000000000000001,3.6,92.45,932,-1.1 -2013,1,26,8,30,130,35,596,0.8,5.800000000000001,80.84,933,-0.7000000000000001 -2013,1,26,9,30,238,124,338,0.9,8.5,70.34,933,-0.30000000000000004 -2013,1,26,10,30,381,183,412,1.3,11.4,61.33,933,0.4 -2013,1,26,11,30,459,247,366,1.7000000000000002,13.9,54.620000000000005,932,1.4000000000000001 -2013,1,26,12,30,540,241,476,2.3000000000000003,15.8,51.15,931,3 -2013,1,26,13,30,651,78,922,2.9000000000000004,17,51.58,929,4.7 -2013,1,26,14,30,436,242,344,3.5,17.2,55.83,929,6.300000000000001 -2013,1,26,15,30,265,203,138,3.8000000000000003,16.7,63.120000000000005,928,7.6000000000000005 -2013,1,26,16,30,46,46,0,3.2,15.200000000000001,72.51,928,8.6 -2013,1,26,17,30,85,33,434,2.6,14,83.24,928,9.3 -2013,1,26,18,30,0,0,0,2.7,11.600000000000001,95.03,929,9.8 -2013,1,26,19,30,0,0,0,3.1,11.200000000000001,107.26,929,10.5 -2013,1,26,20,30,0,0,0,3.4000000000000004,10.8,119.81,928,10.8 -2013,1,26,21,30,0,0,0,3.4000000000000004,10.8,132.46,928,10.8 -2013,1,26,22,30,0,0,0,3.3000000000000003,10.8,144.96,929,10.8 -2013,1,26,23,30,0,0,0,3.3000000000000003,10.8,156.64000000000001,929,10.8 -2013,1,27,0,30,0,0,0,3.6,10.8,165.1,928,10.8 -2013,1,27,1,30,0,0,0,4,10.8,163.82,928,10.8 -2013,1,27,2,30,0,0,0,4.6000000000000005,10.9,154.21,928,10.9 -2013,1,27,3,30,0,0,0,4.9,11,142.24,927,10.9 -2013,1,27,4,30,0,0,0,4.7,11,129.67000000000002,927,10.9 -2013,1,27,5,30,0,0,0,4.4,10.9,117.01,927,10.9 -2013,1,27,6,30,0,0,0,4.2,10.9,104.5,927,10.9 -2013,1,27,7,30,0,0,0,4.4,11.5,92.35000000000001,928,11.5 -2013,1,27,8,30,20,20,0,5.300000000000001,13,80.72,928,11.8 -2013,1,27,9,30,253,117,403,6.5,15.600000000000001,70.19,928,12 -2013,1,27,10,30,484,73,851,6.9,18.5,61.15,928,11.4 -2013,1,27,11,30,605,79,904,6.6000000000000005,20.700000000000003,54.4,927,10.700000000000001 -2013,1,27,12,30,664,82,923,6.2,22.3,50.89,926,10.4 -2013,1,27,13,30,658,82,922,5.800000000000001,23.3,51.32,925,10.3 -2013,1,27,14,30,588,79,901,5.4,23.700000000000003,55.57,924,10.200000000000001 -2013,1,27,15,30,460,66,862,4.800000000000001,23.3,62.88,924,10 -2013,1,27,16,30,285,53,763,3.4000000000000004,21.1,72.3,924,10 -2013,1,27,17,30,93,31,512,2.5,19.3,83.05,924,10.5 -2013,1,27,18,30,0,0,0,2.8000000000000003,16.400000000000002,94.85000000000001,925,10.100000000000001 -2013,1,27,19,30,0,0,0,3.2,15.8,107.09,925,10.100000000000001 -2013,1,27,20,30,0,0,0,3.7,15.4,119.65,925,10.3 -2013,1,27,21,30,0,0,0,4.2,14.8,132.3,926,10.600000000000001 -2013,1,27,22,30,0,0,0,4.3,14.100000000000001,144.78,926,11 -2013,1,27,23,30,0,0,0,4.3,13.4,156.44,926,11.3 -2013,1,28,0,30,0,0,0,4.2,12.8,164.84,926,11.5 -2013,1,28,1,30,0,0,0,3.8000000000000003,12.100000000000001,163.61,926,11.700000000000001 -2013,1,28,2,30,0,0,0,3.4000000000000004,11.5,154.09,926,11.5 -2013,1,28,3,30,0,0,0,3,11.100000000000001,142.15,926,11.100000000000001 -2013,1,28,4,30,0,0,0,2.8000000000000003,11.100000000000001,129.59,926,11.100000000000001 -2013,1,28,5,30,0,0,0,2.8000000000000003,11.4,116.93,926,11.4 -2013,1,28,6,30,0,0,0,3,11.8,104.41,926,11.8 -2013,1,28,7,30,0,0,0,3.8000000000000003,13,92.24,926,13 -2013,1,28,8,30,130,43,530,5.4,15.4,80.59,926,14.100000000000001 -2013,1,28,9,30,222,137,248,7.1000000000000005,18.2,70.03,926,14.700000000000001 -2013,1,28,10,30,354,207,304,8,20.700000000000003,60.95,926,14.3 -2013,1,28,11,30,484,238,420,8.200000000000001,22.700000000000003,54.17,925,13.100000000000001 -2013,1,28,12,30,680,79,948,8.200000000000001,24,50.64,924,11.600000000000001 -2013,1,28,13,30,674,81,944,8,24.5,51.050000000000004,923,10 -2013,1,28,14,30,605,79,924,7.6000000000000005,24.5,55.31,922,8.4 -2013,1,28,15,30,472,69,876,6.800000000000001,23.900000000000002,62.64,921,7.300000000000001 -2013,1,28,16,30,216,111,340,5.300000000000001,21.8,72.08,921,6.9 -2013,1,28,17,30,68,43,201,4.4,20.3,82.85000000000001,921,7.4 -2013,1,28,18,30,0,0,0,4.1000000000000005,17.400000000000002,94.67,922,7.9 -2013,1,28,19,30,0,0,0,4.3,16.8,106.92,922,8.6 -2013,1,28,20,30,0,0,0,4.5,16.2,119.48,922,9.600000000000001 -2013,1,28,21,30,0,0,0,4.7,15.8,132.14000000000001,922,10.9 -2013,1,28,22,30,0,0,0,4.800000000000001,15.4,144.61,921,12.5 -2013,1,28,23,30,0,0,0,4.9,15,156.23,920,14 -2013,1,29,0,30,0,0,0,5.1000000000000005,14.8,164.57,919,14.8 -2013,1,29,1,30,0,0,0,5.6000000000000005,14.8,163.39000000000001,918,14.8 -2013,1,29,2,30,0,0,0,6.300000000000001,14.9,153.96,918,14.9 -2013,1,29,3,30,0,0,0,6.5,14.8,142.05,918,14.8 -2013,1,29,4,30,0,0,0,6.1000000000000005,14.4,129.5,917,14.4 -2013,1,29,5,30,0,0,0,5.4,13.8,116.84,917,13.8 -2013,1,29,6,30,0,0,0,4.7,13,104.31,918,13 -2013,1,29,7,30,0,0,0,4.5,12.8,92.13,918,12.8 -2013,1,29,8,30,72,62,60,4.9,13.8,80.46000000000001,918,11.5 -2013,1,29,9,30,202,145,166,5.9,15.700000000000001,69.87,918,8.700000000000001 -2013,1,29,10,30,436,133,619,7.2,17.3,60.76,918,3.9000000000000004 -2013,1,29,11,30,611,90,885,8.3,17.7,53.93,917,0.2 -2013,1,29,12,30,150,150,1,9.200000000000001,17.3,50.370000000000005,916,-2.2 -2013,1,29,13,30,576,208,582,9.9,16.6,50.77,916,-3.9000000000000004 -2013,1,29,14,30,414,265,261,10.100000000000001,15.600000000000001,55.050000000000004,916,-4.6000000000000005 -2013,1,29,15,30,391,155,510,9.8,14.100000000000001,62.4,916,-4.6000000000000005 -2013,1,29,16,30,246,92,494,9.1,12.200000000000001,71.86,917,-4.9 -2013,1,29,17,30,48,45,26,8.700000000000001,11.200000000000001,82.66,918,-6.4 -2013,1,29,18,30,0,0,0,7.2,9,94.49,919,-7.800000000000001 -2013,1,29,19,30,0,0,0,6.800000000000001,8,106.76,919,-8.3 -2013,1,29,20,30,0,0,0,6.4,7.1000000000000005,119.32000000000001,920,-8.1 -2013,1,29,21,30,0,0,0,6.1000000000000005,6.300000000000001,131.98,920,-7.9 -2013,1,29,22,30,0,0,0,6.2,5.6000000000000005,144.44,920,-8.6 -2013,1,29,23,30,0,0,0,6.300000000000001,4.800000000000001,156.02,921,-10.3 -2013,1,30,0,30,0,0,0,6.4,3.8000000000000003,164.3,921,-11.200000000000001 -2013,1,30,1,30,0,0,0,6.6000000000000005,2.5,163.17000000000002,923,-8.8 -2013,1,30,2,30,0,0,0,6.5,1.4000000000000001,153.82,924,-5.7 -2013,1,30,3,30,0,0,0,6.2,0.8,141.95000000000002,925,-4.9 -2013,1,30,4,30,0,0,0,6.1000000000000005,0.4,129.41,926,-5.800000000000001 -2013,1,30,5,30,0,0,0,6,0,116.74000000000001,927,-7.5 -2013,1,30,6,30,0,0,0,5.9,-0.30000000000000004,104.21000000000001,928,-9.1 -2013,1,30,7,30,0,0,0,6.1000000000000005,0.30000000000000004,92.01,930,-10 -2013,1,30,8,30,152,34,702,6.800000000000001,2.1,80.31,932,-10.4 -2013,1,30,9,30,363,47,910,7,4.2,69.7,933,-10.700000000000001 -2013,1,30,10,30,543,53,996,6.5,6.1000000000000005,60.550000000000004,933,-10.8 -2013,1,30,11,30,670,56,1038,6,7.6000000000000005,53.69,932,-12.100000000000001 -2013,1,30,12,30,734,58,1055,5.9,8.700000000000001,50.1,931,-13 -2013,1,30,13,30,728,59,1052,5.7,9.4,50.5,931,-13.5 -2013,1,30,14,30,652,57,1032,5.7,9.700000000000001,54.79,930,-13.8 -2013,1,30,15,30,507,53,973,5.4,9.600000000000001,62.160000000000004,930,-14 -2013,1,30,16,30,321,45,877,4,8.1,71.65,930,-13.9 -2013,1,30,17,30,113,29,643,2.7,6.800000000000001,82.46000000000001,930,-10.9 -2013,1,30,18,30,0,0,0,1.6,2.8000000000000003,94.31,931,-8.6 -2013,1,30,19,30,0,0,0,1.7000000000000002,2.2,106.59,932,-8.700000000000001 -2013,1,30,20,30,0,0,0,1.8,1.6,119.16,932,-9.200000000000001 -2013,1,30,21,30,0,0,0,1.8,1,131.82,932,-9.5 -2013,1,30,22,30,0,0,0,1.7000000000000002,0.5,144.26,932,-9.9 -2013,1,30,23,30,0,0,0,1.7000000000000002,0.1,155.81,932,-10.200000000000001 -2013,1,31,0,30,0,0,0,2,-0.1,164.03,932,-10.600000000000001 -2013,1,31,1,30,0,0,0,2.7,0.2,162.93,932,-11.200000000000001 -2013,1,31,2,30,0,0,0,3.3000000000000003,0.2,153.67000000000002,932,-11.600000000000001 -2013,1,31,3,30,0,0,0,3.5,-0.1,141.84,931,-11.5 -2013,1,31,4,30,0,0,0,3.8000000000000003,-0.4,129.31,931,-11.100000000000001 -2013,1,31,5,30,0,0,0,4,-0.7000000000000001,116.64,931,-10.8 -2013,1,31,6,30,0,0,0,3.9000000000000004,-1,104.10000000000001,932,-10.4 -2013,1,31,7,30,0,0,0,4.3,0,91.89,932,-9.9 -2013,1,31,8,30,152,30,718,4.5,2.9000000000000004,80.17,932,-9.4 -2013,1,31,9,30,358,41,905,4.6000000000000005,7.1000000000000005,69.52,933,-8 -2013,1,31,10,30,536,49,984,5.2,11.4,60.34,933,-6.4 -2013,1,31,11,30,662,53,1023,5.6000000000000005,14.5,53.45,932,-5.4 -2013,1,31,12,30,727,59,1035,5.6000000000000005,16.400000000000002,49.83,932,-5.300000000000001 -2013,1,31,13,30,629,154,742,5.2,17.3,50.21,931,-5.7 -2013,1,31,14,30,517,185,572,4.6000000000000005,17.6,54.52,931,-6.4 -2013,1,31,15,30,384,168,458,3.6,17.1,61.910000000000004,931,-6.9 -2013,1,31,16,30,327,47,878,2.2,14.3,71.43,931,-5.800000000000001 -2013,1,31,17,30,81,44,277,1.3,12,82.27,931,-1.2000000000000002 -2013,1,31,18,30,0,0,0,1.4000000000000001,9.9,94.13,932,-3.1 -2013,1,31,19,30,0,0,0,1.4000000000000001,9.4,106.42,933,-3.7 -2013,1,31,20,30,0,0,0,1.5,8.4,119,934,-4.3 -2013,1,31,21,30,0,0,0,2.1,7,131.65,934,-4.800000000000001 -2013,1,31,22,30,0,0,0,2.8000000000000003,5.7,144.08,935,-4.7 -2013,1,31,23,30,0,0,0,3.4000000000000004,4.5,155.59,936,-4.2 -2013,2,1,0,30,0,0,0,3.7,3,163.75,937,-3.8000000000000003 -2013,2,1,1,30,0,0,0,3.8000000000000003,1.5,162.70000000000002,937,-3.4000000000000004 -2013,2,1,2,30,0,0,0,3.6,0.4,153.51,937,-3.4000000000000004 -2013,2,1,3,30,0,0,0,3.1,-0.30000000000000004,141.72,937,-3.6 -2013,2,1,4,30,0,0,0,2.9000000000000004,-0.7000000000000001,129.21,937,-3.8000000000000003 -2013,2,1,5,30,0,0,0,2.8000000000000003,-1,116.54,937,-4.1000000000000005 -2013,2,1,6,30,0,0,0,2.4000000000000004,-1.3,103.98,937,-4.5 -2013,2,1,7,30,0,0,0,2.2,-0.8,91.76,938,-4.800000000000001 -2013,2,1,8,30,154,37,676,2.3000000000000003,0.9,80.02,938,-5.1000000000000005 -2013,2,1,9,30,361,53,873,2.4000000000000004,3.6,69.34,937,-5.1000000000000005 -2013,2,1,10,30,539,62,958,2.6,7.1000000000000005,60.120000000000005,937,-4.6000000000000005 -2013,2,1,11,30,666,67,1000,3.3000000000000003,10.9,53.19,936,-4 -2013,2,1,12,30,729,70,1016,4.2,14.200000000000001,49.550000000000004,935,-3.9000000000000004 -2013,2,1,13,30,722,70,1013,4.7,16.400000000000002,49.93,933,-4.1000000000000005 -2013,2,1,14,30,647,69,989,5,17.400000000000002,54.24,932,-3.9000000000000004 -2013,2,1,15,30,506,65,929,4.7,17.400000000000002,61.67,932,-3.6 -2013,2,1,16,30,320,55,823,3.4000000000000004,15.100000000000001,71.21000000000001,931,-2.7 -2013,2,1,17,30,114,35,569,2.4000000000000004,13.100000000000001,82.07000000000001,931,-0.4 -2013,2,1,18,30,0,0,0,3.4000000000000004,10.200000000000001,93.95,931,-0.5 -2013,2,1,19,30,0,0,0,4.2,9.9,106.25,931,-0.30000000000000004 -2013,2,1,20,30,0,0,0,4.5,9.200000000000001,118.84,931,0.30000000000000004 -2013,2,1,21,30,0,0,0,4.7,8.5,131.49,931,1 -2013,2,1,22,30,0,0,0,4.800000000000001,7.7,143.9,931,1.8 -2013,2,1,23,30,0,0,0,4.800000000000001,7,155.38,931,2.5 -2013,2,2,0,30,0,0,0,4.9,6.300000000000001,163.47,931,3.1 -2013,2,2,1,30,0,0,0,4.9,5.5,162.45000000000002,931,3.5 -2013,2,2,2,30,0,0,0,4.7,4.800000000000001,153.35,931,3.7 -2013,2,2,3,30,0,0,0,4.2,4,141.6,931,3.6 -2013,2,2,4,30,0,0,0,3.7,3.1,129.1,931,3.1 -2013,2,2,5,30,0,0,0,3.2,2.2,116.43,932,2.1 -2013,2,2,6,30,0,0,0,3,1.5,103.86,933,0.4 -2013,2,2,7,30,0,0,0,3.5,2.3000000000000003,91.62,934,-1.6 -2013,2,2,8,30,115,56,337,4.4,5,79.86,935,-3 -2013,2,2,9,30,267,124,404,5.1000000000000005,8.3,69.16,936,-3.3000000000000003 -2013,2,2,10,30,410,186,446,5.800000000000001,11.5,59.9,936,-2.8000000000000003 -2013,2,2,11,30,514,231,471,6.2,14.100000000000001,52.94,936,-2.7 -2013,2,2,12,30,733,69,1017,6,15.700000000000001,49.26,936,-3.1 -2013,2,2,13,30,722,69,1009,5.4,16.6,49.64,936,-3.1 -2013,2,2,14,30,648,67,988,5,16.8,53.97,935,-3.1 -2013,2,2,15,30,511,62,939,4.6000000000000005,16.3,61.42,936,-3.2 -2013,2,2,16,30,326,52,841,3.1,14,70.99,936,-3.2 -2013,2,2,17,30,119,33,606,2,12.100000000000001,81.87,936,-1 -2013,2,2,18,30,0,0,0,1.6,7.7,93.77,937,-1.2000000000000002 -2013,2,2,19,30,0,0,0,1.5,6.800000000000001,106.09,937,-1.7000000000000002 -2013,2,2,20,30,0,0,0,1.4000000000000001,6.1000000000000005,118.68,938,-2 -2013,2,2,21,30,0,0,0,1.4000000000000001,5.6000000000000005,131.33,938,-2.5 -2013,2,2,22,30,0,0,0,1.3,5.300000000000001,143.72,939,-3 -2013,2,2,23,30,0,0,0,1.2000000000000002,5,155.15,938,-3.5 -2013,2,3,0,30,0,0,0,1.2000000000000002,4.6000000000000005,163.18,938,-3.8000000000000003 -2013,2,3,1,30,0,0,0,1.2000000000000002,4.3,162.20000000000002,938,-4.2 -2013,2,3,2,30,0,0,0,1.2000000000000002,3.8000000000000003,153.18,938,-4.5 -2013,2,3,3,30,0,0,0,1.2000000000000002,3.3000000000000003,141.47,937,-4.7 -2013,2,3,4,30,0,0,0,1.3,2.8000000000000003,128.98,937,-4.6000000000000005 -2013,2,3,5,30,0,0,0,1.3,2.2,116.31,937,-4.3 -2013,2,3,6,30,0,0,0,1.4000000000000001,1.8,103.74000000000001,937,-3.8000000000000003 -2013,2,3,7,30,0,0,0,1.8,3.7,91.48,937,-3.1 -2013,2,3,8,30,94,66,157,2.7,7.4,79.7,937,-1.4000000000000001 -2013,2,3,9,30,361,55,852,3.7,11.3,68.97,937,-0.5 -2013,2,3,10,30,533,68,920,4.7,14.700000000000001,59.68,937,-1 -2013,2,3,11,30,507,245,431,5.300000000000001,16.400000000000002,52.67,935,0.2 -2013,2,3,12,30,711,91,944,5.5,17.1,48.97,933,2.6 -2013,2,3,13,30,581,228,542,5.6000000000000005,17.5,49.34,932,4.3 -2013,2,3,14,30,538,179,607,5.5,17.7,53.69,930,5.4 -2013,2,3,15,30,484,95,807,5.2,17.400000000000002,61.17,929,5.9 -2013,2,3,16,30,220,128,280,4.2,16.2,70.76,929,6.2 -2013,2,3,17,30,77,52,176,3.6,15.4,81.68,928,6.800000000000001 -2013,2,3,18,30,0,0,0,3.8000000000000003,13.600000000000001,93.59,928,7.1000000000000005 -2013,2,3,19,30,0,0,0,4.3,13.100000000000001,105.92,928,7.6000000000000005 -2013,2,3,20,30,0,0,0,4.1000000000000005,12.4,118.51,927,8 -2013,2,3,21,30,0,0,0,3.7,11.700000000000001,131.16,927,8.5 -2013,2,3,22,30,0,0,0,3.3000000000000003,11.200000000000001,143.54,926,8.9 -2013,2,3,23,30,0,0,0,3,10.8,154.93,926,9.3 -2013,2,4,0,30,0,0,0,2.8000000000000003,10.3,162.89000000000001,926,9.600000000000001 -2013,2,4,1,30,0,0,0,2.6,9.9,161.94,925,9.600000000000001 -2013,2,4,2,30,0,0,0,2.6,9.600000000000001,153,925,9.600000000000001 -2013,2,4,3,30,0,0,0,2.7,9.5,141.33,924,9.5 -2013,2,4,4,30,0,0,0,3.1,9.3,128.86,924,9.3 -2013,2,4,5,30,0,0,0,3.4000000000000004,9,116.19,924,9 -2013,2,4,6,30,0,0,0,3.4000000000000004,8.6,103.61,924,8.6 -2013,2,4,7,30,0,0,0,3.9000000000000004,9.1,91.33,924,9.1 -2013,2,4,8,30,98,67,168,4.4,11.100000000000001,79.54,924,9.1 -2013,2,4,9,30,262,135,349,4.3,13.600000000000001,68.77,924,8.4 -2013,2,4,10,30,532,74,900,4.1000000000000005,16.2,59.45,924,6.2 -2013,2,4,11,30,658,78,951,4.1000000000000005,18.400000000000002,52.410000000000004,924,3.3000000000000003 -2013,2,4,12,30,724,77,980,4.2,19.700000000000003,48.68,923,0.6000000000000001 -2013,2,4,13,30,718,76,980,4.3,20.400000000000002,49.04,922,-1.2000000000000002 -2013,2,4,14,30,559,164,663,4.2,20.400000000000002,53.410000000000004,922,-2 -2013,2,4,15,30,511,64,921,3.9000000000000004,19.700000000000003,60.92,922,-2.2 -2013,2,4,16,30,327,54,822,2.7,17.2,70.54,923,-1.8 -2013,2,4,17,30,122,35,591,1.9000000000000001,15.200000000000001,81.48,923,1.5 -2013,2,4,18,30,0,0,0,2,11.700000000000001,93.41,924,1 -2013,2,4,19,30,0,0,0,2.2,10.600000000000001,105.75,925,0.6000000000000001 -2013,2,4,20,30,0,0,0,2.1,9.4,118.35000000000001,925,0.5 -2013,2,4,21,30,0,0,0,1.9000000000000001,8.200000000000001,131,925,0.6000000000000001 -2013,2,4,22,30,0,0,0,1.8,7.2,143.36,926,0.4 -2013,2,4,23,30,0,0,0,1.7000000000000002,6.2,154.71,926,0 -2013,2,5,0,30,0,0,0,1.6,5.4,162.6,926,-0.6000000000000001 -2013,2,5,1,30,0,0,0,1.5,4.7,161.67000000000002,926,-1.5 -2013,2,5,2,30,0,0,0,1.5,4.2,152.82,926,-2.3000000000000003 -2013,2,5,3,30,0,0,0,1.4000000000000001,4,141.18,926,-3 -2013,2,5,4,30,0,0,0,1.3,3.8000000000000003,128.73,926,-3.5 -2013,2,5,5,30,0,0,0,1.3,3.6,116.06,926,-3.9000000000000004 -2013,2,5,6,30,0,0,0,1.3,3.3000000000000003,103.47,926,-4.2 -2013,2,5,7,30,0,0,0,1.6,5.2,91.18,927,-4.1000000000000005 -2013,2,5,8,30,168,34,725,2,8.5,79.36,928,-3.3000000000000003 -2013,2,5,9,30,378,47,905,1.6,12.3,68.57000000000001,928,-3.5 -2013,2,5,10,30,559,55,983,1.2000000000000002,16.5,59.21,928,-3 -2013,2,5,11,30,682,60,1014,1,19.200000000000003,52.13,928,-4.3 -2013,2,5,12,30,748,67,1025,0.8,20.5,48.38,927,-4.2 -2013,2,5,13,30,742,67,1022,0.8,21.3,48.74,926,-4 -2013,2,5,14,30,666,65,1003,1.2000000000000002,21.400000000000002,53.13,926,-3.9000000000000004 -2013,2,5,15,30,529,60,957,1.7000000000000002,20.900000000000002,60.660000000000004,925,-3.9000000000000004 -2013,2,5,16,30,342,51,863,1.7000000000000002,18.1,70.32000000000001,925,-3.1 -2013,2,5,17,30,131,34,641,1.4000000000000001,15.8,81.29,925,2.2 -2013,2,5,18,30,0,0,0,2.3000000000000003,11.8,93.23,926,-0.1 -2013,2,5,19,30,0,0,0,2.7,11.200000000000001,105.58,927,-0.2 -2013,2,5,20,30,0,0,0,2.8000000000000003,10.8,118.19,927,0.8 -2013,2,5,21,30,0,0,0,2.7,10.3,130.83,927,2.7 -2013,2,5,22,30,0,0,0,2.5,9.8,143.18,927,4.9 -2013,2,5,23,30,0,0,0,2.4000000000000004,9.4,154.48,927,6.7 -2013,2,6,0,30,0,0,0,2.3000000000000003,9.1,162.3,927,8 -2013,2,6,1,30,0,0,0,2.4000000000000004,9,161.4,927,8.700000000000001 -2013,2,6,2,30,0,0,0,2.4000000000000004,8.8,152.62,927,8.8 -2013,2,6,3,30,0,0,0,2.5,8.5,141.03,926,8.5 -2013,2,6,4,30,0,0,0,2.6,8.200000000000001,128.59,926,8.200000000000001 -2013,2,6,5,30,0,0,0,2.8000000000000003,7.7,115.93,926,7.7 -2013,2,6,6,30,0,0,0,3,7.300000000000001,103.33,926,7.300000000000001 -2013,2,6,7,30,0,0,0,3.5,8,91.03,927,6.800000000000001 -2013,2,6,8,30,154,46,577,4.1000000000000005,10.5,79.19,927,6.1000000000000005 -2013,2,6,9,30,355,66,783,4.9,14.4,68.37,926,6.300000000000001 -2013,2,6,10,30,529,78,876,5.6000000000000005,18,58.97,926,8.1 -2013,2,6,11,30,656,84,926,5.5,20.5,51.85,925,8.4 -2013,2,6,12,30,722,80,960,5.1000000000000005,21.900000000000002,48.08,923,8.3 -2013,2,6,13,30,716,80,960,4.800000000000001,22.700000000000003,48.43,922,8 -2013,2,6,14,30,645,77,940,4.6000000000000005,22.900000000000002,52.84,921,7.300000000000001 -2013,2,6,15,30,513,68,899,4.2,22.5,60.410000000000004,921,6.4 -2013,2,6,16,30,196,143,155,2.9000000000000004,20.3,70.10000000000001,921,5.5 -2013,2,6,17,30,126,38,569,1.9000000000000001,18.5,81.09,922,6.5 -2013,2,6,18,30,0,0,0,1.8,15,93.05,922,5.7 -2013,2,6,19,30,0,0,0,1.9000000000000001,14.5,105.41,923,5.5 -2013,2,6,20,30,0,0,0,2,14,118.03,923,5.5 -2013,2,6,21,30,0,0,0,2.3000000000000003,13.700000000000001,130.66,923,5.7 -2013,2,6,22,30,0,0,0,2.9000000000000004,13.600000000000001,142.99,922,6.2 -2013,2,6,23,30,0,0,0,3.6,13.4,154.25,923,7 -2013,2,7,0,30,0,0,0,4.2,12.9,162,923,7.7 -2013,2,7,1,30,0,0,0,4.5,12.200000000000001,161.12,923,8 -2013,2,7,2,30,0,0,0,4.6000000000000005,11.3,152.43,923,7.7 -2013,2,7,3,30,0,0,0,4.5,10.4,140.88,923,7 -2013,2,7,4,30,0,0,0,4.4,9.4,128.45,923,6 -2013,2,7,5,30,0,0,0,4.3,8.5,115.79,923,5.2 -2013,2,7,6,30,0,0,0,4.2,7.800000000000001,103.19,924,4.7 -2013,2,7,7,30,0,0,0,4.4,8.5,90.87,925,4.2 -2013,2,7,8,30,168,40,669,4.9,10.9,79.01,926,3.1 -2013,2,7,9,30,376,56,858,5.4,13.5,68.15,926,0.8 -2013,2,7,10,30,554,67,939,5.800000000000001,15.700000000000001,58.72,927,0.5 -2013,2,7,11,30,678,74,972,6.2,17.6,51.57,927,1.4000000000000001 -2013,2,7,12,30,741,78,987,6.6000000000000005,18.8,47.77,927,2.4000000000000004 -2013,2,7,13,30,735,80,982,7,19.3,48.120000000000005,926,3 -2013,2,7,14,30,660,78,958,7,19,52.550000000000004,927,3.1 -2013,2,7,15,30,521,71,904,6.800000000000001,18.1,60.15,927,3 -2013,2,7,16,30,337,60,803,5.9,16.400000000000002,69.87,928,2.8000000000000003 -2013,2,7,17,30,130,40,570,5.300000000000001,15.3,80.89,929,2.8000000000000003 -2013,2,7,18,30,0,0,0,3.4000000000000004,11.5,92.87,930,3.1 -2013,2,7,19,30,0,0,0,3,10.200000000000001,105.25,931,3.2 -2013,2,7,20,30,0,0,0,2.6,9,117.86,932,3.2 -2013,2,7,21,30,0,0,0,2.4000000000000004,7.9,130.5,933,3.1 -2013,2,7,22,30,0,0,0,2.3000000000000003,7,142.81,934,2.8000000000000003 -2013,2,7,23,30,0,0,0,2.3000000000000003,6.2,154.02,934,2.2 -2013,2,8,0,30,0,0,0,2.4000000000000004,5.5,161.69,934,1.4000000000000001 -2013,2,8,1,30,0,0,0,2.3000000000000003,4.7,160.83,934,0.6000000000000001 -2013,2,8,2,30,0,0,0,2.2,4,152.22,934,-0.1 -2013,2,8,3,30,0,0,0,2.1,3.3000000000000003,140.71,934,-0.8 -2013,2,8,4,30,0,0,0,2,2.6,128.3,934,-1.4000000000000001 -2013,2,8,5,30,0,0,0,1.8,1.9000000000000001,115.64,935,-1.8 -2013,2,8,6,30,0,0,0,1.7000000000000002,1.5,103.03,935,-2 -2013,2,8,7,30,0,0,0,2.2,3.1,90.14,935,-2.1 -2013,2,8,8,30,116,69,243,3,6.4,78.82000000000001,936,-1.8 -2013,2,8,9,30,286,131,412,3.5,9.600000000000001,67.94,936,-2.8000000000000003 -2013,2,8,10,30,572,67,965,3.5,12.3,58.47,936,-5.2 -2013,2,8,11,30,569,197,595,3.3000000000000003,14.3,51.28,935,-6.5 -2013,2,8,12,30,757,76,1007,3,15.600000000000001,47.45,934,-6.6000000000000005 -2013,2,8,13,30,752,76,1006,2.8000000000000003,16.400000000000002,47.81,932,-6.4 -2013,2,8,14,30,673,73,980,2.9000000000000004,16.6,52.26,931,-6.300000000000001 -2013,2,8,15,30,400,193,413,3,16.2,59.89,931,-6.300000000000001 -2013,2,8,16,30,308,70,684,2.4000000000000004,14.3,69.64,930,-6.300000000000001 -2013,2,8,17,30,67,59,45,1.7000000000000002,12.700000000000001,80.69,930,-2.6 -2013,2,8,18,30,0,0,0,2.1,8.8,92.69,930,-2.9000000000000004 -2013,2,8,19,30,0,0,0,2.5,8.200000000000001,105.08,930,-3.9000000000000004 -2013,2,8,20,30,0,0,0,2.8000000000000003,7.6000000000000005,117.7,930,-4.3 -2013,2,8,21,30,0,0,0,3.1,7,130.33,930,-4.3 -2013,2,8,22,30,0,0,0,3.4000000000000004,6.5,142.62,929,-4.2 -2013,2,8,23,30,0,0,0,3.7,6.4,153.78,929,-3.9000000000000004 -2013,2,9,0,30,0,0,0,3.9000000000000004,6.6000000000000005,161.38,928,-3.4000000000000004 -2013,2,9,1,30,0,0,0,3.9000000000000004,6.6000000000000005,160.54,928,-2.7 -2013,2,9,2,30,0,0,0,4.1000000000000005,6.7,152,928,-1.7000000000000002 -2013,2,9,3,30,0,0,0,4.4,6.800000000000001,140.54,927,-0.6000000000000001 -2013,2,9,4,30,0,0,0,4.9,7.1000000000000005,128.15,927,0.5 -2013,2,9,5,30,0,0,0,5.2,7.300000000000001,115.49000000000001,927,1.8 -2013,2,9,6,30,0,0,0,5.2,7.300000000000001,102.88,927,2.8000000000000003 -2013,2,9,7,30,0,0,0,5.5,7.5,90.01,926,3.3000000000000003 -2013,2,9,8,30,14,14,0,6.5,8.700000000000001,78.63,925,4.1000000000000005 -2013,2,9,9,30,145,139,15,7.7,10.9,67.72,925,5.9 -2013,2,9,10,30,285,238,90,8.200000000000001,13.5,58.21,924,7.300000000000001 -2013,2,9,11,30,333,289,71,8.3,16,50.99,923,8.200000000000001 -2013,2,9,12,30,505,330,258,8.3,18.2,47.13,921,9.5 -2013,2,9,13,30,438,335,153,8.3,19.700000000000003,47.49,920,10.3 -2013,2,9,14,30,417,297,194,8.200000000000001,20.400000000000002,51.97,918,10.600000000000001 -2013,2,9,15,30,410,192,431,7.9,20.400000000000002,59.64,918,10.4 -2013,2,9,16,30,269,118,428,7,19.200000000000003,69.42,918,10.100000000000001 -2013,2,9,17,30,86,61,153,6.4,18.3,80.5,918,10.3 -2013,2,9,18,30,0,0,0,6.1000000000000005,15.200000000000001,92.51,918,10.8 -2013,2,9,19,30,0,0,0,5.800000000000001,13.9,104.91,918,11.700000000000001 -2013,2,9,20,30,0,0,0,5.2,13.200000000000001,117.54,918,12.5 -2013,2,9,21,30,0,0,0,4.6000000000000005,13,130.16,919,12.9 -2013,2,9,22,30,0,0,0,4.3,12.4,142.43,920,12.4 -2013,2,9,23,30,0,0,0,4.3,11.5,153.54,921,11.100000000000001 -2013,2,10,0,30,0,0,0,4.1000000000000005,10.3,161.07,922,7.6000000000000005 -2013,2,10,1,30,0,0,0,3.8000000000000003,8.9,160.24,922,2.9000000000000004 -2013,2,10,2,30,0,0,0,3.8000000000000003,7.7,151.78,922,-1.3 -2013,2,10,3,30,0,0,0,4.1000000000000005,7,140.36,922,-4 -2013,2,10,4,30,0,0,0,4.1000000000000005,6.5,127.99000000000001,923,-5.300000000000001 -2013,2,10,5,30,0,0,0,4,5.800000000000001,115.34,923,-6 -2013,2,10,6,30,0,0,0,3.9000000000000004,5.1000000000000005,102.72,923,-6.6000000000000005 -2013,2,10,7,30,0,0,0,4.3,5.6000000000000005,89.86,924,-7.1000000000000005 -2013,2,10,8,30,135,63,359,5.300000000000001,7.9,78.43,925,-7.5 -2013,2,10,9,30,334,91,635,6,10.600000000000001,67.49,925,-7.800000000000001 -2013,2,10,10,30,440,199,453,5.9,12.5,57.95,925,-8.6 -2013,2,10,11,30,719,71,1024,5.800000000000001,13.9,50.69,924,-9.4 -2013,2,10,12,30,784,75,1036,5.800000000000001,14.8,46.81,924,-10 -2013,2,10,13,30,778,75,1034,5.7,15.5,47.17,923,-10.5 -2013,2,10,14,30,702,73,1013,5.5,15.700000000000001,51.67,923,-10.700000000000001 -2013,2,10,15,30,560,68,966,4.9,15.5,59.38,923,-10.9 -2013,2,10,16,30,369,58,877,3.3000000000000003,13.9,69.19,924,-10.5 -2013,2,10,17,30,152,39,669,2.1,12.5,80.3,924,-5.5 -2013,2,10,18,30,0,0,0,1.5,8.8,92.33,925,-3.8000000000000003 -2013,2,10,19,30,0,0,0,1.4000000000000001,8.4,104.74000000000001,926,-3.8000000000000003 -2013,2,10,20,30,0,0,0,1.3,8.4,117.38,926,-4.4 -2013,2,10,21,30,0,0,0,1.2000000000000002,8.700000000000001,129.99,927,-5.5 -2013,2,10,22,30,0,0,0,1,8.8,142.24,927,-6.7 -2013,2,10,23,30,0,0,0,0.7000000000000001,8.700000000000001,153.3,927,-7 -2013,2,11,0,30,0,0,0,0.4,8.1,160.76,928,-6.9 -2013,2,11,1,30,0,0,0,0.30000000000000004,7.1000000000000005,159.94,928,-6.800000000000001 -2013,2,11,2,30,0,0,0,0.5,6.1000000000000005,151.56,928,-6.6000000000000005 -2013,2,11,3,30,0,0,0,0.8,5.1000000000000005,140.18,928,-6.300000000000001 -2013,2,11,4,30,0,0,0,1.1,4,127.83,928,-5.5 -2013,2,11,5,30,0,0,0,1.4000000000000001,3,115.18,929,-4.3 -2013,2,11,6,30,0,0,0,1.6,2.5,102.55,929,-3.5 -2013,2,11,7,30,0,0,0,2.2,3.5,89.69,930,-2.8000000000000003 -2013,2,11,8,30,102,78,116,3,5.9,78.23,930,-2.4000000000000004 -2013,2,11,9,30,382,70,806,3.6,8.700000000000001,67.26,930,-2 -2013,2,11,10,30,558,84,886,3.9000000000000004,11,57.69,930,-1.6 -2013,2,11,11,30,681,96,918,4.1000000000000005,12.5,50.39,929,-0.4 -2013,2,11,12,30,681,178,731,4.2,13.3,46.480000000000004,929,1.1 -2013,2,11,13,30,524,325,290,4.2,13.4,46.84,928,2.5 -2013,2,11,14,30,661,99,899,4.1000000000000005,13.100000000000001,51.370000000000005,927,3.4000000000000004 -2013,2,11,15,30,499,92,793,4.1000000000000005,12.5,59.120000000000005,927,4 -2013,2,11,16,30,250,138,314,4,11.600000000000001,68.97,927,4.2 -2013,2,11,17,30,82,64,104,3.9000000000000004,11,80.10000000000001,927,4.2 -2013,2,11,18,30,0,0,0,3.3000000000000003,8.200000000000001,92.15,928,3.9000000000000004 -2013,2,11,19,30,0,0,0,3.6,7,104.58,928,3.5 -2013,2,11,20,30,0,0,0,3.8000000000000003,6,117.22,928,2.9000000000000004 -2013,2,11,21,30,0,0,0,4,5.1000000000000005,129.82,927,2.3000000000000003 -2013,2,11,22,30,0,0,0,3.8000000000000003,4.5,142.05,927,1.9000000000000001 -2013,2,11,23,30,0,0,0,3.5,4.3,153.06,926,2.2 -2013,2,12,0,30,0,0,0,3.2,4.7,160.44,926,3.1 -2013,2,12,1,30,0,0,0,3.4000000000000004,5.4,159.63,926,4.3 -2013,2,12,2,30,0,0,0,3.5,5.9,151.32,925,5.5 -2013,2,12,3,30,0,0,0,3.1,6.2,139.99,925,6.1000000000000005 -2013,2,12,4,30,0,0,0,2.7,6.300000000000001,127.66,924,6.300000000000001 -2013,2,12,5,30,0,0,0,2.4000000000000004,6.4,115.01,924,6.4 -2013,2,12,6,30,0,0,0,2.2,6.5,102.38,924,6.5 -2013,2,12,7,30,0,0,0,2,6.9,89.54,924,6.800000000000001 -2013,2,12,8,30,30,30,0,1.9000000000000001,7.800000000000001,78.03,924,7 -2013,2,12,9,30,45,45,0,2.7,9.200000000000001,67.03,924,7 -2013,2,12,10,30,92,92,0,4,10.4,57.42,924,5.800000000000001 -2013,2,12,11,30,305,276,45,5.2,10.8,50.08,924,3.6 -2013,2,12,12,30,760,108,941,5.800000000000001,10.700000000000001,46.15,924,1.7000000000000002 -2013,2,12,13,30,237,228,13,6,10.700000000000001,46.51,924,0.6000000000000001 -2013,2,12,14,30,686,93,944,6.1000000000000005,10.5,51.08,925,0.1 -2013,2,12,15,30,198,189,17,6.300000000000001,9.8,58.86,925,0 -2013,2,12,16,30,66,66,0,6.300000000000001,8.4,68.74,926,-0.2 -2013,2,12,17,30,9,9,0,6.2,7.4,79.9,927,-0.5 -2013,2,12,18,30,0,0,0,5.2,4.3,91.97,929,-0.9 -2013,2,12,19,30,0,0,0,4.6000000000000005,2.7,104.41,930,-1.3 -2013,2,12,20,30,0,0,0,3.8000000000000003,1.4000000000000001,117.05,931,-1.5 -2013,2,12,21,30,0,0,0,2.9000000000000004,0.4,129.65,931,-1.5 -2013,2,12,22,30,0,0,0,2.3000000000000003,-0.4,141.85,932,-1.5 -2013,2,12,23,30,0,0,0,2.2,-0.9,152.81,931,-1.6 -2013,2,13,0,30,0,0,0,2.1,-1.4000000000000001,160.12,931,-1.6 -2013,2,13,1,30,0,0,0,2.1,-1.8,159.32,931,-1.8 -2013,2,13,2,30,0,0,0,1.9000000000000001,-2.2,151.08,931,-2.2 -2013,2,13,3,30,0,0,0,1.9000000000000001,-2.5,139.8,930,-2.5 -2013,2,13,4,30,0,0,0,1.8,-2.9000000000000004,127.48,930,-2.9000000000000004 -2013,2,13,5,30,0,0,0,1.8,-3.2,114.84,931,-3.2 -2013,2,13,6,30,0,0,0,2,-3,102.2,931,-3 -2013,2,13,7,30,0,0,0,2.9000000000000004,-0.8,89.36,931,-2.3000000000000003 -2013,2,13,8,30,198,42,737,3.2,3.1,77.82000000000001,932,-2.3000000000000003 -2013,2,13,9,30,415,57,908,2.9000000000000004,7.5,66.79,932,-2.9000000000000004 -2013,2,13,10,30,600,65,986,2.8000000000000003,10.9,57.14,931,-5.6000000000000005 -2013,2,13,11,30,732,70,1025,3.1,12.9,49.77,931,-6.7 -2013,2,13,12,30,791,72,1031,3.4000000000000004,14.3,45.82,930,-7.300000000000001 -2013,2,13,13,30,785,72,1029,3.7,15.100000000000001,46.18,929,-7.9 -2013,2,13,14,30,708,69,1010,3.8000000000000003,15.4,50.78,928,-8.700000000000001 -2013,2,13,15,30,573,64,977,3.7,15.100000000000001,58.59,927,-9.600000000000001 -2013,2,13,16,30,380,55,889,2.6,13,68.52,927,-10.3 -2013,2,13,17,30,161,38,690,1.6,11.200000000000001,79.71000000000001,927,-5 -2013,2,13,18,30,0,0,0,1.5,6.5,91.8,928,-5.4 -2013,2,13,19,30,0,0,0,1.6,5.5,104.25,928,-6 -2013,2,13,20,30,0,0,0,1.7000000000000002,4.7,116.89,928,-6.4 -2013,2,13,21,30,0,0,0,1.9000000000000001,4,129.49,929,-6.6000000000000005 -2013,2,13,22,30,0,0,0,2,3.4000000000000004,141.66,929,-6.800000000000001 -2013,2,13,23,30,0,0,0,2.2,3,152.57,929,-6.9 -2013,2,14,0,30,0,0,0,2.4000000000000004,2.6,159.79,929,-6.800000000000001 -2013,2,14,1,30,0,0,0,2.6,2.1,159,928,-6.5 -2013,2,14,2,30,0,0,0,2.6,1.5,150.83,928,-6.2 -2013,2,14,3,30,0,0,0,2.6,0.8,139.59,928,-5.9 -2013,2,14,4,30,0,0,0,2.4000000000000004,0.2,127.3,928,-5.6000000000000005 -2013,2,14,5,30,0,0,0,2.4000000000000004,-0.4,114.66,928,-5.6000000000000005 -2013,2,14,6,30,0,0,0,2.5,-0.5,102.02,929,-5.800000000000001 -2013,2,14,7,30,0,0,0,3.4000000000000004,1.3,89.2,929,-6 -2013,2,14,8,30,199,43,729,3.8000000000000003,4.800000000000001,77.60000000000001,929,-6.2 -2013,2,14,9,30,415,58,898,3.8000000000000003,8.9,66.54,930,-6 -2013,2,14,10,30,599,67,975,4.2,12.9,56.86,929,-6.800000000000001 -2013,2,14,11,30,730,72,1013,4.5,16,49.45,928,-7.5 -2013,2,14,12,30,795,77,1025,4.5,17.8,45.480000000000004,927,-7.9 -2013,2,14,13,30,789,79,1020,4.3,18.7,45.85,927,-8.1 -2013,2,14,14,30,712,77,998,4.1000000000000005,19,50.47,926,-8 -2013,2,14,15,30,572,68,959,3.5,18.6,58.33,926,-7.800000000000001 -2013,2,14,16,30,380,59,868,2.1,16.400000000000002,68.29,926,-7 -2013,2,14,17,30,161,41,661,1.1,14.600000000000001,79.51,925,-0.8 -2013,2,14,18,30,0,0,0,0.6000000000000001,11.9,91.62,926,-3.8000000000000003 -2013,2,14,19,30,0,0,0,0.9,10.8,104.08,927,-4.6000000000000005 -2013,2,14,20,30,0,0,0,2,9,116.73,928,-4.6000000000000005 -2013,2,14,21,30,0,0,0,3.5,6.9,129.32,929,-4.1000000000000005 -2013,2,14,22,30,0,0,0,5.300000000000001,5.2,141.46,930,-3.1 -2013,2,14,23,30,0,0,0,6.6000000000000005,3.9000000000000004,152.32,931,-1.9000000000000001 -2013,2,15,0,30,0,0,0,6.9,2.9000000000000004,159.46,932,-0.7000000000000001 -2013,2,15,1,30,0,0,0,6.6000000000000005,2.3000000000000003,158.67000000000002,933,-0.2 -2013,2,15,2,30,0,0,0,6.1000000000000005,1.8,150.58,933,0.1 -2013,2,15,3,30,0,0,0,5.6000000000000005,1.4000000000000001,139.39000000000001,934,0.2 -2013,2,15,4,30,0,0,0,5.300000000000001,1,127.11,934,0.2 -2013,2,15,5,30,0,0,0,4.9,0.6000000000000001,114.48,935,0 -2013,2,15,6,30,0,0,0,4.6000000000000005,0.30000000000000004,101.83,936,-0.30000000000000004 -2013,2,15,7,30,0,0,0,5.1000000000000005,1.3,89.02,937,-0.8 -2013,2,15,8,30,61,61,0,6,3.6,77.39,938,-2 -2013,2,15,9,30,255,171,210,6.4,5.7,66.3,939,-4.3 -2013,2,15,10,30,462,206,464,6,7.2,56.58,939,-6.2 -2013,2,15,11,30,550,275,420,5.5,8.4,49.13,938,-7.5 -2013,2,15,12,30,527,342,262,5.2,9,45.13,938,-8.200000000000001 -2013,2,15,13,30,549,329,315,5.1000000000000005,9.200000000000001,45.51,937,-8.6 -2013,2,15,14,30,568,220,543,5.1000000000000005,8.8,50.17,937,-8.5 -2013,2,15,15,30,286,238,90,5.1000000000000005,7.800000000000001,58.07,937,-8.3 -2013,2,15,16,30,214,159,146,4.9,6.4,68.07000000000001,938,-7.9 -2013,2,15,17,30,49,49,0,4.6000000000000005,5.5,79.32000000000001,938,-7.4 -2013,2,15,18,30,0,0,0,2.4000000000000004,2.3000000000000003,91.44,939,-6.4 -2013,2,15,19,30,0,0,0,1.6,1,103.92,939,-5.800000000000001 -2013,2,15,20,30,0,0,0,1.1,0,116.57000000000001,939,-5.5 -2013,2,15,21,30,0,0,0,0.8,-0.4,129.14000000000001,940,-5.6000000000000005 -2013,2,15,22,30,0,0,0,0.7000000000000001,-0.6000000000000001,141.27,939,-5.9 -2013,2,15,23,30,0,0,0,0.9,-1,152.06,939,-6 -2013,2,16,0,30,0,0,0,1.2000000000000002,-1.8,159.13,939,-6 -2013,2,16,1,30,0,0,0,1.5,-2.4000000000000004,158.34,939,-6 -2013,2,16,2,30,0,0,0,1.9000000000000001,-2.5,150.32,939,-6 -2013,2,16,3,30,0,0,0,2.2,-2.7,139.17000000000002,939,-6 -2013,2,16,4,30,0,0,0,2.3000000000000003,-2.9000000000000004,126.92,939,-6.2 -2013,2,16,5,30,0,0,0,2.3000000000000003,-3.3000000000000003,114.3,939,-6.6000000000000005 -2013,2,16,6,30,0,0,0,2.4000000000000004,-3.2,101.64,940,-6.9 -2013,2,16,7,30,16,11,227,3.1,-1.3,88.83,940,-7 -2013,2,16,8,30,206,43,732,3.3000000000000003,2.3000000000000003,77.16,940,-6.800000000000001 -2013,2,16,9,30,422,57,898,3.2,6.6000000000000005,66.05,940,-6.2 -2013,2,16,10,30,606,66,973,3.5,10.3,56.29,939,-5.800000000000001 -2013,2,16,11,30,736,70,1012,3.8000000000000003,12.8,48.81,938,-5.7 -2013,2,16,12,30,801,71,1028,4,14.600000000000001,44.79,937,-5.800000000000001 -2013,2,16,13,30,796,71,1027,4,15.9,45.17,935,-6.300000000000001 -2013,2,16,14,30,724,70,1015,3.9000000000000004,16.6,49.870000000000005,934,-6.7 -2013,2,16,15,30,583,65,971,3.6,16.6,57.81,933,-7 -2013,2,16,16,30,390,57,884,2.4000000000000004,14.700000000000001,67.85,932,-7.1000000000000005 -2013,2,16,17,30,170,41,687,1.5,12.8,79.12,932,-2.1 -2013,2,16,18,30,0,0,0,1.7000000000000002,7.9,91.27,932,-3.4000000000000004 -2013,2,16,19,30,0,0,0,2.1,7.1000000000000005,103.75,932,-4.1000000000000005 -2013,2,16,20,30,0,0,0,2.6,6.6000000000000005,116.41,932,-4.6000000000000005 -2013,2,16,21,30,0,0,0,3.3000000000000003,6.300000000000001,128.97,932,-4.800000000000001 -2013,2,16,22,30,0,0,0,4.1000000000000005,5.9,141.07,931,-4.9 -2013,2,16,23,30,0,0,0,4.800000000000001,5.4,151.81,931,-4.800000000000001 -2013,2,17,0,30,0,0,0,5,4.6000000000000005,158.8,931,-4.7 -2013,2,17,1,30,0,0,0,4.800000000000001,3.7,158.01,930,-4.800000000000001 -2013,2,17,2,30,0,0,0,4.5,2.8000000000000003,150.05,930,-4.9 -2013,2,17,3,30,0,0,0,4.4,2,138.95000000000002,930,-5 -2013,2,17,4,30,0,0,0,4.4,1.3,126.72,929,-5.1000000000000005 -2013,2,17,5,30,0,0,0,4.4,0.7000000000000001,114.10000000000001,929,-5.1000000000000005 -2013,2,17,6,30,0,0,0,4.6000000000000005,0.4,101.45,929,-5.1000000000000005 -2013,2,17,7,30,18,13,235,5,1.8,88.65,929,-5 -2013,2,17,8,30,215,46,747,5.5,5.300000000000001,76.94,929,-4.9 -2013,2,17,9,30,434,62,909,6.2,10.100000000000001,65.79,929,-4.800000000000001 -2013,2,17,10,30,621,71,984,7,14.5,56,928,-5.300000000000001 -2013,2,17,11,30,753,77,1020,7.4,17.7,48.480000000000004,927,-6.1000000000000005 -2013,2,17,12,30,819,79,1037,7.5,19.6,44.44,926,-7 -2013,2,17,13,30,812,80,1033,7.5,20.400000000000002,44.83,925,-7.1000000000000005 -2013,2,17,14,30,734,80,1009,7.4,20.5,49.56,924,-7 -2013,2,17,15,30,585,75,950,7,19.8,57.550000000000004,923,-6.9 -2013,2,17,16,30,294,130,429,6.1000000000000005,18,67.62,922,-6.4 -2013,2,17,17,30,114,68,240,5.4,16.7,78.93,922,-5.1000000000000005 -2013,2,17,18,30,0,0,0,5,12.8,91.09,923,-3.3000000000000003 -2013,2,17,19,30,0,0,0,5.4,11.700000000000001,103.59,923,-1.8 -2013,2,17,20,30,0,0,0,5.6000000000000005,10.600000000000001,116.24000000000001,922,0.1 -2013,2,17,21,30,0,0,0,5.800000000000001,9.8,128.8,922,2.1 -2013,2,17,22,30,0,0,0,5.9,9.1,140.87,922,3.9000000000000004 -2013,2,17,23,30,0,0,0,6,8.6,151.55,921,5.4 -2013,2,18,0,30,0,0,0,6,8.1,158.46,921,6.5 -2013,2,18,1,30,0,0,0,6.1000000000000005,7.9,157.67000000000002,921,7.4 -2013,2,18,2,30,0,0,0,6.4,8.1,149.78,920,8.1 -2013,2,18,3,30,0,0,0,7.1000000000000005,8.8,138.73,920,8.8 -2013,2,18,4,30,0,0,0,7.7,9.4,126.52,920,9.4 -2013,2,18,5,30,0,0,0,7.5,9.3,113.91,920,9.3 -2013,2,18,6,30,0,0,0,6.800000000000001,8.8,101.25,921,8.8 -2013,2,18,7,30,18,14,161,6.4,9.200000000000001,88.47,922,7.9 -2013,2,18,8,30,213,50,709,6.1000000000000005,11.5,76.71000000000001,923,5.6000000000000005 -2013,2,18,9,30,433,65,887,6.5,14,65.53,923,0.1 -2013,2,18,10,30,619,74,968,6.9,15.4,55.71,924,-4.800000000000001 -2013,2,18,11,30,752,77,1011,6.9,16.1,48.15,925,-5.4 -2013,2,18,12,30,817,78,1030,6.7,16.6,44.09,925,-4.800000000000001 -2013,2,18,13,30,812,77,1031,6.6000000000000005,16.8,44.49,925,-4.2 -2013,2,18,14,30,729,73,1006,6.4,16.5,49.25,926,-4 -2013,2,18,15,30,588,66,966,6,15.9,57.29,926,-4.1000000000000005 -2013,2,18,16,30,396,58,881,5.2,14.5,67.4,927,-4.3 -2013,2,18,17,30,176,41,691,4.5,13.5,78.74,927,-4.2 -2013,2,18,18,30,0,0,0,2.9000000000000004,9.200000000000001,90.92,929,-3.2 -2013,2,18,19,30,0,0,0,3.2,8,103.43,930,-3.5 -2013,2,18,20,30,0,0,0,3.2,6.800000000000001,116.08,931,-4.1000000000000005 -2013,2,18,21,30,0,0,0,3,5.9,128.63,932,-4.7 -2013,2,18,22,30,0,0,0,2.7,5,140.67000000000002,932,-5.2 -2013,2,18,23,30,0,0,0,2.4000000000000004,4.3,151.29,932,-5.6000000000000005 -2013,2,19,0,30,0,0,0,2.2,4,158.13,932,-5.800000000000001 -2013,2,19,1,30,0,0,0,2,3.7,157.33,932,-5.800000000000001 -2013,2,19,2,30,0,0,0,1.7000000000000002,3.3000000000000003,149.51,932,-5.6000000000000005 -2013,2,19,3,30,0,0,0,1.5,2.7,138.5,932,-5.300000000000001 -2013,2,19,4,30,0,0,0,1.4000000000000001,2.1,126.31,932,-5.2 -2013,2,19,5,30,0,0,0,1.3,1.8,113.71000000000001,933,-5.2 -2013,2,19,6,30,0,0,0,1.4000000000000001,2.2,101.05,934,-4.9 -2013,2,19,7,30,7,7,0,2.1,3.7,88.26,935,-4.6000000000000005 -2013,2,19,8,30,217,46,730,3.4000000000000004,6.4,76.47,935,-4.800000000000001 -2013,2,19,9,30,295,169,302,4.5,9.3,65.27,936,-5.2 -2013,2,19,10,30,507,170,594,4.9,11.200000000000001,55.410000000000004,935,-6 -2013,2,19,11,30,744,78,991,5.1000000000000005,12.4,47.82,935,-6.300000000000001 -2013,2,19,12,30,807,86,998,5.4,13.200000000000001,43.730000000000004,933,-6.4 -2013,2,19,13,30,654,259,550,5.7,13.600000000000001,44.14,932,-6.4 -2013,2,19,14,30,549,276,415,5.9,13.9,48.95,931,-6.2 -2013,2,19,15,30,337,253,155,5.9,13.700000000000001,57.03,930,-6 -2013,2,19,16,30,182,160,58,5.2,12.700000000000001,67.18,930,-5.7 -2013,2,19,17,30,57,57,0,4.7,11.9,78.55,930,-5.1000000000000005 -2013,2,19,18,30,0,0,0,3.1,9.4,90.19,930,-4 -2013,2,19,19,30,0,0,0,2.8000000000000003,8.5,103.26,931,-2.7 -2013,2,19,20,30,0,0,0,3.7,7.800000000000001,115.92,932,-1.7000000000000002 -2013,2,19,21,30,0,0,0,4.5,7.2,128.46,931,-1.1 -2013,2,19,22,30,0,0,0,4.6000000000000005,6.7,140.47,931,-0.30000000000000004 -2013,2,19,23,30,0,0,0,4.5,6.4,151.03,930,0.2 -2013,2,20,0,30,0,0,0,4.5,6.2,157.78,929,0.6000000000000001 -2013,2,20,1,30,0,0,0,4.6000000000000005,6.2,156.99,928,1 -2013,2,20,2,30,0,0,0,4.800000000000001,6.300000000000001,149.22,928,1.7000000000000002 -2013,2,20,3,30,0,0,0,4.4,6.1000000000000005,138.26,928,2.6 -2013,2,20,4,30,0,0,0,4,5.9,126.10000000000001,927,3.6 -2013,2,20,5,30,0,0,0,4.4,5.9,113.5,927,4.2 -2013,2,20,6,30,0,0,0,4.9,6,100.84,926,4.3 -2013,2,20,7,30,20,16,113,5,6.4,88.07000000000001,926,4.5 -2013,2,20,8,30,59,59,0,5.1000000000000005,7.1000000000000005,76.24,926,4.800000000000001 -2013,2,20,9,30,69,69,0,5.300000000000001,7.800000000000001,65,925,5.2 -2013,2,20,10,30,124,124,0,5.5,8.6,55.11,925,5.800000000000001 -2013,2,20,11,30,295,274,31,5.7,9.600000000000001,47.480000000000004,923,6.5 -2013,2,20,12,30,302,284,26,5.7,10.600000000000001,43.37,922,7.300000000000001 -2013,2,20,13,30,262,250,16,5.7,11.600000000000001,43.800000000000004,920,8.200000000000001 -2013,2,20,14,30,104,104,0,5.6000000000000005,12.4,48.64,919,9.1 -2013,2,20,15,30,115,115,0,5.4,12.8,56.76,918,9.8 -2013,2,20,16,30,35,35,0,5.2,12.3,66.96000000000001,918,10.200000000000001 -2013,2,20,17,30,6,6,0,5.1000000000000005,11.8,78.36,918,10.3 -2013,2,20,18,30,0,0,0,5.6000000000000005,9.9,90.05,918,9.9 -2013,2,20,19,30,0,0,0,5.9,9.3,103.10000000000001,918,9.3 -2013,2,20,20,30,0,0,0,6,9,115.76,917,9 -2013,2,20,21,30,0,0,0,5.9,9.1,128.28,916,9.1 -2013,2,20,22,30,0,0,0,5.800000000000001,9.700000000000001,140.26,916,9.700000000000001 -2013,2,20,23,30,0,0,0,5.800000000000001,10.700000000000001,150.77,915,10.700000000000001 -2013,2,21,0,30,0,0,0,6.1000000000000005,12,157.44,914,12 -2013,2,21,1,30,0,0,0,6.4,12.700000000000001,156.64000000000001,913,12.700000000000001 -2013,2,21,2,30,0,0,0,6.300000000000001,12.100000000000001,148.93,913,12.100000000000001 -2013,2,21,3,30,0,0,0,6,10.3,138.02,914,10.3 -2013,2,21,4,30,0,0,0,5.800000000000001,8.200000000000001,125.88000000000001,915,8.200000000000001 -2013,2,21,5,30,0,0,0,5.7,6.5,113.29,916,4.4 -2013,2,21,6,30,0,0,0,5.7,5.5,100.63,917,1.3 -2013,2,21,7,30,28,15,347,6.2,6.2,87.86,918,-0.9 -2013,2,21,8,30,236,43,796,7.5,8.4,76,918,-2.1 -2013,2,21,9,30,453,59,923,8.700000000000001,10.5,64.73,918,-4.5 -2013,2,21,10,30,634,72,976,9.3,12.200000000000001,54.800000000000004,918,-6.4 -2013,2,21,11,30,759,82,995,9.600000000000001,13.600000000000001,47.14,918,-6.2 -2013,2,21,12,30,823,88,1006,9.5,14.8,43.01,918,-4.9 -2013,2,21,13,30,817,87,1005,9.1,15.8,43.45,918,-4.2 -2013,2,21,14,30,739,83,988,8.4,16.5,48.33,918,-4.1000000000000005 -2013,2,21,15,30,598,74,950,7.4,16.5,56.5,918,-4.4 -2013,2,21,16,30,408,62,876,5.4,15.200000000000001,66.74,919,-4.9 -2013,2,21,17,30,186,44,692,4,14.100000000000001,78.17,919,-3.9000000000000004 -2013,2,21,18,30,0,0,0,2.1,8.200000000000001,89.9,921,-1.6 -2013,2,21,19,30,0,0,0,2.6,6.7,102.94,923,-1.4000000000000001 -2013,2,21,20,30,0,0,0,3.4000000000000004,5.1000000000000005,115.60000000000001,924,-1.4000000000000001 -2013,2,21,21,30,0,0,0,3.8000000000000003,3,128.11,925,-1.4000000000000001 -2013,2,21,22,30,0,0,0,3.8000000000000003,1.1,140.06,926,-1.8 -2013,2,21,23,30,0,0,0,4,-0.30000000000000004,150.5,926,-2.6 -2013,2,22,0,30,0,0,0,4.2,-1.5,157.09,926,-3.9000000000000004 -2013,2,22,1,30,0,0,0,4.4,-2.5,156.28,926,-5.300000000000001 -2013,2,22,2,30,0,0,0,3.9000000000000004,-3.3000000000000003,148.64000000000001,927,-6.5 -2013,2,22,3,30,0,0,0,3.2,-3.7,137.77,928,-7.2 -2013,2,22,4,30,0,0,0,2.7,-4.1000000000000005,125.66,929,-7.7 -2013,2,22,5,30,0,0,0,2.4000000000000004,-4.5,113.08,929,-8 -2013,2,22,6,30,0,0,0,2.5,-4.6000000000000005,100.41,930,-8.3 -2013,2,22,7,30,11,11,0,3.2,-3.4000000000000004,87.63,930,-8.6 -2013,2,22,8,30,200,55,589,3.7,-1.3,75.75,930,-9.700000000000001 -2013,2,22,9,30,374,113,605,3.4000000000000004,1.2000000000000002,64.46000000000001,930,-9.8 -2013,2,22,10,30,636,73,969,3,3.7,54.5,930,-9.3 -2013,2,22,11,30,767,78,1007,2.4000000000000004,6,46.79,929,-8.4 -2013,2,22,12,30,832,80,1023,1.9000000000000001,8.1,42.64,928,-7.2 -2013,2,22,13,30,821,80,1013,2,9.700000000000001,43.09,927,-6.300000000000001 -2013,2,22,14,30,742,80,990,2.4000000000000004,10.8,48.02,927,-5.7 -2013,2,22,15,30,601,72,952,2.6,11.100000000000001,56.24,927,-5.5 -2013,2,22,16,30,407,62,865,2.3000000000000003,10.200000000000001,66.52,928,-5.300000000000001 -2013,2,22,17,30,186,45,678,1.9000000000000001,9.3,77.98,928,-4.2 -2013,2,22,18,30,0,0,0,2.3000000000000003,4.4,89.75,928,-3.6 -2013,2,22,19,30,0,0,0,2.9000000000000004,3.2,102.78,928,-4.7 -2013,2,22,20,30,0,0,0,2.9000000000000004,1.9000000000000001,115.44,929,-5.1000000000000005 -2013,2,22,21,30,0,0,0,2.5,0.8,127.94,929,-5.300000000000001 -2013,2,22,22,30,0,0,0,2.1,-0.2,139.85,929,-5.4 -2013,2,22,23,30,0,0,0,1.7000000000000002,-1.1,150.23,929,-5.5 -2013,2,23,0,30,0,0,0,1.3,-1.8,156.74,929,-5.800000000000001 -2013,2,23,1,30,0,0,0,1.1,-2.4000000000000004,155.93,929,-6 -2013,2,23,2,30,0,0,0,1,-2.9000000000000004,148.34,928,-6.2 -2013,2,23,3,30,0,0,0,1,-3.2,137.52,927,-6.300000000000001 -2013,2,23,4,30,0,0,0,1.1,-3.5,125.43,927,-6.300000000000001 -2013,2,23,5,30,0,0,0,1.1,-3.8000000000000003,112.86,927,-6.1000000000000005 -2013,2,23,6,30,0,0,0,1.4000000000000001,-3.3000000000000003,100.19,928,-5.800000000000001 -2013,2,23,7,30,30,18,285,2.1,-1,87.42,928,-5.4 -2013,2,23,8,30,237,49,753,2.8000000000000003,2.9000000000000004,75.5,928,-5 -2013,2,23,9,30,464,61,923,3.2,7,64.18,928,-5.1000000000000005 -2013,2,23,10,30,651,69,995,3.7,10.4,54.18,927,-5.7 -2013,2,23,11,30,784,73,1031,4.2,12.9,46.45,926,-6.9 -2013,2,23,12,30,849,77,1043,4.3,14.600000000000001,42.27,926,-7.300000000000001 -2013,2,23,13,30,842,78,1040,4.2,15.600000000000001,42.74,925,-7.5 -2013,2,23,14,30,763,75,1022,3.9000000000000004,16.3,47.71,924,-7.9 -2013,2,23,15,30,619,69,983,3.3000000000000003,16.3,55.980000000000004,924,-8.5 -2013,2,23,16,30,422,59,904,2,14.9,66.3,923,-8.9 -2013,2,23,17,30,197,43,727,1,13.600000000000001,77.79,923,-2.5 -2013,2,23,18,30,0,0,0,1.4000000000000001,8.4,89.61,923,-5 -2013,2,23,19,30,0,0,0,1.8,6.5,102.62,923,-5.1000000000000005 -2013,2,23,20,30,0,0,0,2.3000000000000003,5.800000000000001,115.28,923,-5.9 -2013,2,23,21,30,0,0,0,3,5.6000000000000005,127.76,923,-6.7 -2013,2,23,22,30,0,0,0,3.6,5.2,139.64000000000001,923,-7.2 -2013,2,23,23,30,0,0,0,4,4.6000000000000005,149.96,922,-7.4 -2013,2,24,0,30,0,0,0,4.3,3.8000000000000003,156.39000000000001,922,-7.2 -2013,2,24,1,30,0,0,0,4.4,3,155.56,921,-6.9 -2013,2,24,2,30,0,0,0,4.3,2.3000000000000003,148.04,921,-6.4 -2013,2,24,3,30,0,0,0,4.1000000000000005,1.7000000000000002,137.26,921,-5.4 -2013,2,24,4,30,0,0,0,4.1000000000000005,1.3,125.2,920,-4.3 -2013,2,24,5,30,0,0,0,4.1000000000000005,1.1,112.64,920,-3.2 -2013,2,24,6,30,0,0,0,4.4,1.5,99.97,920,-2.1 -2013,2,24,7,30,32,19,280,4.9,3.6,87.21000000000001,920,-0.7000000000000001 -2013,2,24,8,30,234,52,715,5.7,7.5,75.25,920,0.7000000000000001 -2013,2,24,9,30,449,69,865,6.800000000000001,12.200000000000001,63.910000000000004,920,2.4000000000000004 -2013,2,24,10,30,633,80,937,7.4,16.3,53.870000000000005,919,3.8000000000000003 -2013,2,24,11,30,762,87,974,7.2,19.200000000000003,46.09,918,3.8000000000000003 -2013,2,24,12,30,827,88,992,6.800000000000001,21.200000000000003,41.9,917,3.2 -2013,2,24,13,30,819,90,987,6.300000000000001,22.3,42.39,916,2.4000000000000004 -2013,2,24,14,30,741,87,966,5.800000000000001,22.700000000000003,47.4,915,1.4000000000000001 -2013,2,24,15,30,602,80,927,5.4,22.400000000000002,55.72,914,0.30000000000000004 -2013,2,24,16,30,409,68,841,4.2,20.3,66.08,914,-0.1 -2013,2,24,17,30,189,49,653,3.4000000000000004,18.7,77.60000000000001,914,2.3000000000000003 -2013,2,24,18,30,0,0,0,4.2,14.200000000000001,89.48,913,3.4000000000000004 -2013,2,24,19,30,0,0,0,5.300000000000001,13.3,102.46000000000001,913,5 -2013,2,24,20,30,0,0,0,5.1000000000000005,12.200000000000001,115.12,913,6.7 -2013,2,24,21,30,0,0,0,4.5,11.5,127.59,913,7.800000000000001 -2013,2,24,22,30,0,0,0,4.5,11,139.43,914,8.4 -2013,2,24,23,30,0,0,0,4.800000000000001,10.200000000000001,149.69,914,8.200000000000001 -2013,2,25,0,30,0,0,0,4.7,8.9,156.04,914,6.300000000000001 -2013,2,25,1,30,0,0,0,4.7,7,155.20000000000002,914,3.1 -2013,2,25,2,30,0,0,0,5.1000000000000005,5.2,147.73,914,0.2 -2013,2,25,3,30,0,0,0,5,4,137,914,-0.8 -2013,2,25,4,30,0,0,0,4.6000000000000005,3.1,124.96000000000001,914,-1.1 -2013,2,25,5,30,0,0,0,4.4,2.5,112.41,914,-1.6 -2013,2,25,6,30,0,0,0,4.5,2.2,99.74000000000001,914,-2.3000000000000003 -2013,2,25,7,30,32,23,164,5.6000000000000005,3,86.98,915,-2.6 -2013,2,25,8,30,161,96,250,7.4,4.3,75,915,-2.2 -2013,2,25,9,30,264,197,151,8.6,4.800000000000001,63.620000000000005,915,-2.7 -2013,2,25,10,30,257,238,31,9.3,4.9,53.550000000000004,915,-3.6 -2013,2,25,11,30,167,164,4,10,5.1000000000000005,45.74,915,-4.1000000000000005 -2013,2,25,12,30,128,128,0,10.9,5.300000000000001,41.53,916,-4.2 -2013,2,25,13,30,208,202,9,11.5,5.1000000000000005,42.03,916,-4.3 -2013,2,25,14,30,214,207,10,11.8,4.6000000000000005,47.09,917,-4.2 -2013,2,25,15,30,227,214,22,11.5,4.2,55.46,918,-4 -2013,2,25,16,30,184,166,46,10.8,3.7,65.86,919,-3.8000000000000003 -2013,2,25,17,30,51,51,0,10.4,3.4000000000000004,77.41,920,-3.6 -2013,2,25,18,30,0,0,0,9,2.7,89.31,922,-3.5 -2013,2,25,19,30,0,0,0,8.4,2.6,102.3,923,-3.4000000000000004 -2013,2,25,20,30,0,0,0,7.800000000000001,2.4000000000000004,114.95,924,-3.5 -2013,2,25,21,30,0,0,0,6.9,1.9000000000000001,127.41,924,-3.7 -2013,2,25,22,30,0,0,0,6.1000000000000005,1.3,139.22,924,-4 -2013,2,25,23,30,0,0,0,5.5,0.6000000000000001,149.41,924,-4.2 -2013,2,26,0,30,0,0,0,4.9,-0.2,155.68,924,-4.5 -2013,2,26,1,30,0,0,0,4.7,-0.9,154.83,924,-4.9 -2013,2,26,2,30,0,0,0,4.5,-1.6,147.42000000000002,924,-5.300000000000001 -2013,2,26,3,30,0,0,0,4.2,-2.1,136.74,924,-5.7 -2013,2,26,4,30,0,0,0,3.8000000000000003,-2.7,124.72,924,-6.1000000000000005 -2013,2,26,5,30,0,0,0,3.4000000000000004,-3.3000000000000003,112.18,924,-6.4 -2013,2,26,6,30,0,0,0,3.5,-3.3000000000000003,99.51,924,-6.7 -2013,2,26,7,30,42,19,394,3.8000000000000003,-1.5,86.74,925,-6.800000000000001 -2013,2,26,8,30,254,47,785,4,1.8,74.74,925,-6.5 -2013,2,26,9,30,476,61,925,3.8000000000000003,5,63.34,925,-6.1000000000000005 -2013,2,26,10,30,662,69,992,3.4000000000000004,7.5,53.230000000000004,925,-6.1000000000000005 -2013,2,26,11,30,794,73,1026,3.1,9.700000000000001,45.38,925,-6.4 -2013,2,26,12,30,858,76,1040,3,11.5,41.15,924,-6.5 -2013,2,26,13,30,851,75,1039,3.1,13.100000000000001,41.67,923,-6.7 -2013,2,26,14,30,771,70,1023,3.1,14.200000000000001,46.78,922,-7.2 -2013,2,26,15,30,632,66,993,2.7,14.600000000000001,55.21,922,-7.7 -2013,2,26,16,30,435,57,918,1.6,13.9,65.65,921,-7.9 -2013,2,26,17,30,208,42,752,0.8,13,77.23,921,-2.3000000000000003 -2013,2,26,18,30,0,0,0,1.2000000000000002,8.5,89.17,921,-5.2 -2013,2,26,19,30,0,0,0,1.6,6.2,102.14,921,-5 -2013,2,26,20,30,0,0,0,1.9000000000000001,5,114.79,921,-5.2 -2013,2,26,21,30,0,0,0,2.3000000000000003,4.4,127.23,921,-5.6000000000000005 -2013,2,26,22,30,0,0,0,2.1,3.7,139.01,921,-5.7 -2013,2,26,23,30,0,0,0,1.2000000000000002,2.6,149.13,922,-5.6000000000000005 -2013,2,27,0,30,0,0,0,1.5,1.8,155.33,922,-5.5 -2013,2,27,1,30,0,0,0,3.1,0.9,154.46,923,-5.300000000000001 -2013,2,27,2,30,0,0,0,4.2,-0.30000000000000004,147.1,925,-4.6000000000000005 -2013,2,27,3,30,0,0,0,4.7,-1.3,136.47,926,-4.1000000000000005 -2013,2,27,4,30,0,0,0,4.6000000000000005,-2,124.48,928,-3.9000000000000004 -2013,2,27,5,30,0,0,0,4.1000000000000005,-2.5,111.95,929,-4.1000000000000005 -2013,2,27,6,30,0,0,0,3.9000000000000004,-2.3000000000000003,99.27,931,-4.7 -2013,2,27,7,30,44,21,380,4.4,-0.30000000000000004,86.51,931,-5.4 -2013,2,27,8,30,258,50,778,5.7,3.2,74.48,932,-5.4 -2013,2,27,9,30,480,65,915,6.6000000000000005,6.2,63.050000000000004,933,-4.6000000000000005 -2013,2,27,10,30,672,74,993,6.7,8.3,52.910000000000004,933,-4.800000000000001 -2013,2,27,11,30,805,78,1029,6.800000000000001,9.9,45.02,933,-6.4 -2013,2,27,12,30,870,78,1045,6.800000000000001,11,40.77,933,-8.6 -2013,2,27,13,30,862,77,1046,6.7,11.700000000000001,41.31,933,-10.200000000000001 -2013,2,27,14,30,782,73,1029,6.5,11.9,46.47,933,-10.5 -2013,2,27,15,30,637,69,989,6.2,11.3,54.95,933,-10.100000000000001 -2013,2,27,16,30,439,60,912,5.5,10,65.43,933,-9.3 -2013,2,27,17,30,209,45,732,5,9.1,77.05,933,-8.3 -2013,2,27,18,30,0,0,0,2.4000000000000004,4.3,89.01,934,-6.2 -2013,2,27,19,30,0,0,0,2.1,2.8000000000000003,101.98,935,-5.300000000000001 -2013,2,27,20,30,0,0,0,1.9000000000000001,1.8,114.63,936,-4.9 -2013,2,27,21,30,0,0,0,1.6,0.9,127.06,936,-4.6000000000000005 -2013,2,27,22,30,0,0,0,1.4000000000000001,0.1,138.79,936,-4.5 -2013,2,27,23,30,0,0,0,1.3,-0.5,148.85,936,-4.5 -2013,2,28,0,30,0,0,0,1.3,-1.2000000000000002,154.96,936,-4.5 -2013,2,28,1,30,0,0,0,1.4000000000000001,-1.7000000000000002,154.09,936,-4.6000000000000005 -2013,2,28,2,30,0,0,0,1.6,-2.2,146.78,936,-4.6000000000000005 -2013,2,28,3,30,0,0,0,1.7000000000000002,-2.7,136.19,936,-4.800000000000001 -2013,2,28,4,30,0,0,0,1.9000000000000001,-3.1,124.23,936,-5 -2013,2,28,5,30,0,0,0,1.9000000000000001,-3.6,111.71000000000001,937,-5.4 -2013,2,28,6,30,0,0,0,2.2,-3.2,99.04,937,-6 -2013,2,28,7,30,47,21,400,2.8000000000000003,-1,86.27,937,-6.4 -2013,2,28,8,30,263,49,785,3.2,3,74.22,937,-6.5 -2013,2,28,9,30,485,63,923,3.6,7.1000000000000005,62.76,938,-7.300000000000001 -2013,2,28,10,30,672,72,988,3.8000000000000003,9.8,52.59,937,-8.4 -2013,2,28,11,30,803,78,1019,3.7,11.5,44.660000000000004,937,-8.700000000000001 -2013,2,28,12,30,867,83,1029,3.7,12.700000000000001,40.39,936,-8.9 -2013,2,28,13,30,858,83,1026,3.7,13.3,40.95,935,-9 -2013,2,28,14,30,777,82,1004,3.8000000000000003,13.5,46.160000000000004,935,-9.1 -2013,2,28,15,30,632,77,959,3.8000000000000003,13.100000000000001,54.69,934,-9.3 -2013,2,28,16,30,435,67,877,3,11.8,65.22,934,-9.3 -2013,2,28,17,30,208,49,700,2.2,10.8,76.86,934,-6.7 -2013,2,28,18,30,15,12,159,1.2000000000000002,6.2,88.86,935,-4.9 -2013,2,28,19,30,0,0,0,1.2000000000000002,5.4,101.83,935,-5.800000000000001 -2013,2,28,20,30,0,0,0,1.2000000000000002,4.7,114.47,935,-6.4 -2013,2,28,21,30,0,0,0,1.2000000000000002,4,126.88000000000001,935,-6.800000000000001 -2013,2,28,22,30,0,0,0,1.1,3.2,138.58,935,-7 -2013,2,28,23,30,0,0,0,1.1,2.6,148.57,935,-7.300000000000001 -2013,3,1,0,30,0,0,0,1,2.2,154.6,935,-7.5 -2013,3,1,1,30,0,0,0,0.9,1.8,153.71,934,-7.800000000000001 -2013,3,1,2,30,0,0,0,0.8,1.4000000000000001,146.46,934,-7.9 -2013,3,1,3,30,0,0,0,0.9,0.9,135.91,934,-7.7 -2013,3,1,4,30,0,0,0,1,0.30000000000000004,123.98,934,-7.300000000000001 -2013,3,1,5,30,0,0,0,1,0,111.47,934,-7.1000000000000005 -2013,3,1,6,30,0,0,0,0.7000000000000001,0.4,98.8,934,-7 -2013,3,1,7,30,23,23,0,0.5,2.2,86.03,935,-5.9 -2013,3,1,8,30,263,52,766,0.8,5.6000000000000005,73.95,935,-6.5 -2013,3,1,9,30,485,65,909,1.1,9.3,62.47,935,-7.6000000000000005 -2013,3,1,10,30,676,73,985,1.8,12.100000000000001,52.26,935,-7.9 -2013,3,1,11,30,807,78,1018,3.3000000000000003,13.700000000000001,44.300000000000004,935,-7.9 -2013,3,1,12,30,865,81,1024,5.1000000000000005,14.4,40.01,935,-7.800000000000001 -2013,3,1,13,30,857,82,1021,6.300000000000001,14.4,40.59,934,-7.7 -2013,3,1,14,30,777,78,1004,6.9,13.8,45.85,934,-7.7 -2013,3,1,15,30,436,256,310,7.1000000000000005,12.8,54.44,935,-8 -2013,3,1,16,30,440,61,896,6.6000000000000005,11.4,65.01,935,-8.200000000000001 -2013,3,1,17,30,214,45,734,6.2,10.5,76.68,935,-7.800000000000001 -2013,3,1,18,30,17,12,203,3.2,6,88.72,936,-6.5 -2013,3,1,19,30,0,0,0,2.4000000000000004,4.1000000000000005,101.67,937,-5.5 -2013,3,1,20,30,0,0,0,1.9000000000000001,2.7,114.31,937,-4.9 -2013,3,1,21,30,0,0,0,1.5,1.6,126.7,937,-4.6000000000000005 -2013,3,1,22,30,0,0,0,1.3,0.8,138.36,938,-4.5 -2013,3,1,23,30,0,0,0,1.3,0.2,148.29,938,-4.5 -2013,3,2,0,30,0,0,0,1.3,-0.30000000000000004,154.24,938,-4.6000000000000005 -2013,3,2,1,30,0,0,0,1.4000000000000001,-0.8,153.34,939,-4.6000000000000005 -2013,3,2,2,30,0,0,0,1.5,-1.2000000000000002,146.13,939,-4.6000000000000005 -2013,3,2,3,30,0,0,0,1.5,-1.6,135.63,939,-4.7 -2013,3,2,4,30,0,0,0,1.6,-2.1,123.72,939,-4.7 -2013,3,2,5,30,0,0,0,1.5,-2.6,111.23,939,-4.7 -2013,3,2,6,30,0,0,0,1.7000000000000002,-2.1,98.55,940,-4.7 -2013,3,2,7,30,51,24,372,2.2,0.30000000000000004,85.79,940,-4.7 -2013,3,2,8,30,263,52,750,2.6,4.1000000000000005,73.68,941,-4.4 -2013,3,2,9,30,482,66,891,2.7,7.800000000000001,62.17,941,-5.2 -2013,3,2,10,30,666,75,958,3.1,10.8,51.93,940,-5.4 -2013,3,2,11,30,795,79,994,3.6,13.4,43.93,939,-5 -2013,3,2,12,30,858,84,1004,4,15.4,39.62,938,-3.9000000000000004 -2013,3,2,13,30,849,84,1003,4.2,16.7,40.230000000000004,937,-2.9000000000000004 -2013,3,2,14,30,770,80,985,4.1000000000000005,17.5,45.54,936,-2.2 -2013,3,2,15,30,627,72,949,3.8000000000000003,17.6,54.19,935,-1.9000000000000001 -2013,3,2,16,30,434,62,873,2.5,16.5,64.8,934,-1.8 -2013,3,2,17,30,211,46,706,1.5,15.5,76.5,934,1.6 -2013,3,2,18,30,17,12,204,0.9,12,88.57000000000001,934,0.1 -2013,3,2,19,30,0,0,0,1.1,10.5,101.51,934,-0.8 -2013,3,2,20,30,0,0,0,1.3,8.5,114.15,934,-1 -2013,3,2,21,30,0,0,0,1.5,6.9,126.52,934,-1.2000000000000002 -2013,3,2,22,30,0,0,0,1.7000000000000002,6.1000000000000005,138.14000000000001,934,-1.5 -2013,3,2,23,30,0,0,0,2.1,5.7,148,934,-1.9000000000000001 -2013,3,3,0,30,0,0,0,2.6,5.5,153.87,933,-2.3000000000000003 -2013,3,3,1,30,0,0,0,3.1,5.4,152.96,933,-2.6 -2013,3,3,2,30,0,0,0,3.6,5.1000000000000005,145.8,932,-3 -2013,3,3,3,30,0,0,0,3.9000000000000004,4.7,135.34,932,-3.2 -2013,3,3,4,30,0,0,0,4,4.2,123.46000000000001,932,-3.4000000000000004 -2013,3,3,5,30,0,0,0,4.3,3.8000000000000003,110.98,931,-3.7 -2013,3,3,6,30,0,0,0,4.7,4,98.31,931,-4.2 -2013,3,3,7,30,56,24,414,4.9,5.7,85.55,931,-4.800000000000001 -2013,3,3,8,30,274,51,779,5.1000000000000005,9.5,73.41,930,-5 -2013,3,3,9,30,495,65,913,6.300000000000001,14.100000000000001,61.88,930,-4.800000000000001 -2013,3,3,10,30,555,199,573,7.4,18.3,51.6,928,-5.800000000000001 -2013,3,3,11,30,809,105,971,7.5,21.400000000000002,43.56,927,-6.2 -2013,3,3,12,30,873,80,1024,7.5,23.6,39.24,926,-6.1000000000000005 -2013,3,3,13,30,869,81,1027,7.5,24.8,39.86,924,-5.9 -2013,3,3,14,30,788,80,1005,7.4,25.3,45.24,923,-5.800000000000001 -2013,3,3,15,30,642,75,963,6.800000000000001,25.200000000000003,53.93,922,-5.800000000000001 -2013,3,3,16,30,445,65,885,5.5,23.6,64.59,921,-5.5 -2013,3,3,17,30,180,62,502,4.5,22.200000000000003,76.32000000000001,921,-3.5 -2013,3,3,18,30,10,10,0,5,17.6,88.44,920,-3.1 -2013,3,3,19,30,0,0,0,6.300000000000001,17.2,101.35000000000001,920,-4.1000000000000005 -2013,3,3,20,30,0,0,0,6.9,16.400000000000002,113.99000000000001,920,-4.4 -2013,3,3,21,30,0,0,0,6.5,14.8,126.34,920,-4.6000000000000005 -2013,3,3,22,30,0,0,0,5.9,13.100000000000001,137.92000000000002,919,-4.6000000000000005 -2013,3,3,23,30,0,0,0,5.7,11.700000000000001,147.71,919,-4.7 -2013,3,4,0,30,0,0,0,5.4,10.5,153.51,919,-4.7 -2013,3,4,1,30,0,0,0,5.1000000000000005,9.4,152.57,919,-4.6000000000000005 -2013,3,4,2,30,0,0,0,4.800000000000001,8.700000000000001,145.46,919,-4.6000000000000005 -2013,3,4,3,30,0,0,0,4.5,8.3,135.05,919,-4.5 -2013,3,4,4,30,0,0,0,4.2,8.3,123.2,919,-4.3 -2013,3,4,5,30,0,0,0,4.1000000000000005,8.700000000000001,110.73,919,-4.1000000000000005 -2013,3,4,6,30,0,0,0,4.3,9.4,98.06,920,-3.9000000000000004 -2013,3,4,7,30,39,28,133,4.7,11.3,85.3,920,-3.7 -2013,3,4,8,30,179,112,231,4.9,14.3,73.14,920,-3.4000000000000004 -2013,3,4,9,30,379,175,429,4.800000000000001,17.900000000000002,61.58,920,-2.5 -2013,3,4,10,30,460,290,272,5.300000000000001,22.200000000000003,51.26,920,-1.9000000000000001 -2013,3,4,11,30,549,356,265,5.7,25.6,43.19,919,-2.5 -2013,3,4,12,30,737,288,576,5.5,26.8,38.85,918,-2.1 -2013,3,4,13,30,845,81,989,5.2,27.1,39.5,917,-1.2000000000000002 -2013,3,4,14,30,413,343,98,5,27,44.93,917,-0.5 -2013,3,4,15,30,421,274,247,4.7,26.3,53.68,916,-0.30000000000000004 -2013,3,4,16,30,342,151,441,4.2,24.3,64.38,916,0.1 -2013,3,4,17,30,119,94,105,4,23,76.15,916,0 -2013,3,4,18,30,19,14,169,4.7,18.6,88.29,917,-2.8000000000000003 -2013,3,4,19,30,0,0,0,5,17.400000000000002,101.2,917,-5.4 -2013,3,4,20,30,0,0,0,4.6000000000000005,16.3,113.82000000000001,918,-5.4 -2013,3,4,21,30,0,0,0,3.9000000000000004,15.100000000000001,126.15,919,-3.5 -2013,3,4,22,30,0,0,0,5.4,13.9,137.70000000000002,921,-0.9 -2013,3,4,23,30,0,0,0,8.700000000000001,11.700000000000001,147.42000000000002,925,1.4000000000000001 -2013,3,5,0,30,0,0,0,10.3,8.4,153.14000000000001,928,0.9 -2013,3,5,1,30,0,0,0,9.9,5.800000000000001,152.19,930,-1.2000000000000002 -2013,3,5,2,30,0,0,0,8.9,4.3,145.12,932,-2 -2013,3,5,3,30,0,0,0,7.7,3.6,134.76,934,-2.3000000000000003 -2013,3,5,4,30,0,0,0,6.7,3.1,122.93,935,-2.7 -2013,3,5,5,30,0,0,0,6,2.5,110.47,936,-3.3000000000000003 -2013,3,5,6,30,0,0,0,5.7,2.4000000000000004,97.81,937,-3.8000000000000003 -2013,3,5,7,30,65,27,451,6.300000000000001,3.4000000000000004,85.04,938,-4.6000000000000005 -2013,3,5,8,30,294,53,818,7.2,5.300000000000001,72.87,939,-7.6000000000000005 -2013,3,5,9,30,522,66,948,7.4,7,61.28,940,-11.3 -2013,3,5,10,30,721,74,1027,7.1000000000000005,8.6,50.93,940,-13.3 -2013,3,5,11,30,855,78,1059,6.6000000000000005,10.200000000000001,42.82,939,-13.9 -2013,3,5,12,30,920,79,1073,6.1000000000000005,11.5,38.45,939,-14 -2013,3,5,13,30,910,78,1073,5.5,12.5,39.13,938,-14 -2013,3,5,14,30,827,75,1056,4.9,12.9,44.62,938,-14 -2013,3,5,15,30,677,69,1021,4.4,12.600000000000001,53.43,938,-13.9 -2013,3,5,16,30,474,60,950,3.5,11.600000000000001,64.17,938,-13.8 -2013,3,5,17,30,239,46,797,3,10.8,75.97,938,-12.9 -2013,3,5,18,30,25,15,307,1.3,5.1000000000000005,88.12,938,-7.5 -2013,3,5,19,30,0,0,0,1.3,3.8000000000000003,101.04,939,-8 -2013,3,5,20,30,0,0,0,1.3,2.9000000000000004,113.66,939,-8.6 -2013,3,5,21,30,0,0,0,1.3,2.2,125.97,939,-9 -2013,3,5,22,30,0,0,0,1.2000000000000002,1.9000000000000001,137.47,939,-9.4 -2013,3,5,23,30,0,0,0,1.2000000000000002,1.6,147.13,939,-9.9 -2013,3,6,0,30,0,0,0,1.2000000000000002,1.1,152.77,939,-10.5 -2013,3,6,1,30,0,0,0,1.2000000000000002,0.5,151.8,938,-10.9 -2013,3,6,2,30,0,0,0,1.1,0.30000000000000004,144.78,938,-11.200000000000001 -2013,3,6,3,30,0,0,0,1,0.1,134.46,938,-11.600000000000001 -2013,3,6,4,30,0,0,0,1.1,-0.7000000000000001,122.66,938,-11.700000000000001 -2013,3,6,5,30,0,0,0,1.2000000000000002,-1.2000000000000002,110.22,939,-11.3 -2013,3,6,6,30,0,0,0,1.3,-0.5,97.55,939,-10.600000000000001 -2013,3,6,7,30,41,32,100,1.8,1.5,84.79,940,-9.200000000000001 -2013,3,6,8,30,226,89,457,2.8000000000000003,3.7,72.59,940,-10.700000000000001 -2013,3,6,9,30,518,76,912,3.5,5.9,60.980000000000004,940,-10.600000000000001 -2013,3,6,10,30,694,89,953,3.9000000000000004,7.6000000000000005,50.59,939,-11.100000000000001 -2013,3,6,11,30,615,329,388,4,9,42.45,938,-11.100000000000001 -2013,3,6,12,30,683,326,453,4,10.5,38.06,937,-10.9 -2013,3,6,13,30,464,385,101,3.9000000000000004,11.8,38.77,936,-10.8 -2013,3,6,14,30,553,338,300,4,12.9,44.31,935,-10.700000000000001 -2013,3,6,15,30,601,101,835,4.2,13.700000000000001,53.18,934,-10.5 -2013,3,6,16,30,433,80,805,3.9000000000000004,13.4,63.97,933,-10.3 -2013,3,6,17,30,213,58,633,3.4000000000000004,12.8,75.79,933,-8.9 -2013,3,6,18,30,15,15,0,2.7,8,87.97,933,-6.5 -2013,3,6,19,30,0,0,0,3.3000000000000003,7.2,100.89,933,-7.2 -2013,3,6,20,30,0,0,0,3.6,6.5,113.5,932,-7.4 -2013,3,6,21,30,0,0,0,3.8000000000000003,5.800000000000001,125.79,932,-7.2 -2013,3,6,22,30,0,0,0,3.8000000000000003,5.1000000000000005,137.25,932,-7.1000000000000005 -2013,3,6,23,30,0,0,0,3.8000000000000003,4.6000000000000005,146.84,931,-7 -2013,3,7,0,30,0,0,0,3.7,4.3,152.39000000000001,931,-7 -2013,3,7,1,30,0,0,0,3.6,3.9000000000000004,151.41,930,-7 -2013,3,7,2,30,0,0,0,3.3000000000000003,3.4000000000000004,144.44,930,-7 -2013,3,7,3,30,0,0,0,2.8000000000000003,2.8000000000000003,134.16,930,-6.9 -2013,3,7,4,30,0,0,0,2.4000000000000004,2.2,122.39,930,-6.800000000000001 -2013,3,7,5,30,0,0,0,2.4000000000000004,2,109.96000000000001,930,-6.800000000000001 -2013,3,7,6,30,0,0,0,3,2.9000000000000004,97.3,931,-6.800000000000001 -2013,3,7,7,30,66,31,366,4.1000000000000005,5.5,84.53,931,-6.9 -2013,3,7,8,30,209,107,336,5,9.3,72.32000000000001,931,-6.2 -2013,3,7,9,30,376,191,379,5.800000000000001,13,60.68,931,-3.6 -2013,3,7,10,30,673,103,890,6,16,50.25,931,-1.6 -2013,3,7,11,30,798,114,921,5.9,18.400000000000002,42.07,930,-0.8 -2013,3,7,12,30,865,102,964,5.800000000000001,20.5,37.67,929,0.1 -2013,3,7,13,30,734,294,562,5.800000000000001,22,38.4,928,0.9 -2013,3,7,14,30,766,110,912,5.800000000000001,22.6,44.01,928,1.4000000000000001 -2013,3,7,15,30,618,112,839,5.9,22.1,52.94,928,1.7000000000000002 -2013,3,7,16,30,332,168,372,5.4,20.5,63.77,928,2.1 -2013,3,7,17,30,202,75,509,4.9,19.5,75.62,928,2.7 -2013,3,7,18,30,15,15,0,3.6,14.8,87.83,928,3.5 -2013,3,7,19,30,0,0,0,3.9000000000000004,13.3,100.73,929,3.8000000000000003 -2013,3,7,20,30,0,0,0,4.1000000000000005,12.3,113.34,929,4.1000000000000005 -2013,3,7,21,30,0,0,0,4.2,11.700000000000001,125.60000000000001,929,4.6000000000000005 -2013,3,7,22,30,0,0,0,4.3,11.3,137.02,929,5.300000000000001 -2013,3,7,23,30,0,0,0,4,10.8,146.54,929,6.1000000000000005 -2013,3,8,0,30,0,0,0,3.7,10,152.02,928,7 -2013,3,8,1,30,0,0,0,3.7,9.700000000000001,151.02,928,8 -2013,3,8,2,30,0,0,0,4.1000000000000005,10.200000000000001,144.09,928,9 -2013,3,8,3,30,0,0,0,4.800000000000001,11,133.86,928,10.100000000000001 -2013,3,8,4,30,0,0,0,4.800000000000001,11.600000000000001,122.11,928,11.200000000000001 -2013,3,8,5,30,0,0,0,4.2,11.9,109.7,928,11.8 -2013,3,8,6,30,0,0,0,4.1000000000000005,12.3,97.04,929,12.3 -2013,3,8,7,30,9,9,0,4.3,13.200000000000001,84.28,929,12.700000000000001 -2013,3,8,8,30,14,14,0,4.5,14.700000000000001,72.04,929,13 -2013,3,8,9,30,42,42,0,5,16.7,60.370000000000005,929,13.3 -2013,3,8,10,30,297,271,41,5.5,18.400000000000002,49.92,929,13.100000000000001 -2013,3,8,11,30,277,263,18,5.9,19.200000000000003,41.69,928,12.600000000000001 -2013,3,8,12,30,419,371,60,6.1000000000000005,19.700000000000003,37.27,927,12.200000000000001 -2013,3,8,13,30,362,334,36,6.4,20.700000000000003,38.04,926,12 -2013,3,8,14,30,348,315,45,6.7,21.700000000000003,43.7,925,11.8 -2013,3,8,15,30,135,135,0,6.9,22,52.69,925,11.4 -2013,3,8,16,30,330,173,351,6.7,21.3,63.56,925,11.3 -2013,3,8,17,30,204,72,523,6.5,20.6,75.44,925,11.600000000000001 -2013,3,8,18,30,21,18,88,5.9,17.6,87.68,925,12.200000000000001 -2013,3,8,19,30,0,0,0,6,16.2,100.58,925,13 -2013,3,8,20,30,0,0,0,6,15.100000000000001,113.17,925,13.5 -2013,3,8,21,30,0,0,0,5.9,14.3,125.42,924,13.8 -2013,3,8,22,30,0,0,0,5.9,13.600000000000001,136.79,924,13.600000000000001 -2013,3,8,23,30,0,0,0,6.1000000000000005,13,146.24,923,13 -2013,3,9,0,30,0,0,0,6.300000000000001,12.700000000000001,151.64000000000001,923,12.700000000000001 -2013,3,9,1,30,0,0,0,6.4,12.600000000000001,150.63,922,12.600000000000001 -2013,3,9,2,30,0,0,0,6.5,12.700000000000001,143.74,922,12.600000000000001 -2013,3,9,3,30,0,0,0,6.5,12.9,133.55,921,12.700000000000001 -2013,3,9,4,30,0,0,0,6.7,13.100000000000001,121.83,921,12.9 -2013,3,9,5,30,0,0,0,6.5,13.200000000000001,109.43,921,13.100000000000001 -2013,3,9,6,30,0,0,0,6.300000000000001,13.4,96.78,921,13.200000000000001 -2013,3,9,7,30,71,33,372,6.6000000000000005,14.700000000000001,84.02,921,13.3 -2013,3,9,8,30,113,111,8,7.1000000000000005,17.3,71.76,921,13 -2013,3,9,9,30,399,185,429,6.9,19.900000000000002,60.07,921,11.4 -2013,3,9,10,30,511,287,345,6.4,21.8,49.58,921,8.8 -2013,3,9,11,30,475,376,131,6.1000000000000005,22.700000000000003,41.31,920,6.800000000000001 -2013,3,9,12,30,256,245,14,6,23.1,36.88,920,5.300000000000001 -2013,3,9,13,30,866,93,976,6.1000000000000005,23.200000000000003,37.67,919,4 -2013,3,9,14,30,400,344,77,6.2,22.8,43.4,918,2.8000000000000003 -2013,3,9,15,30,478,263,353,6.300000000000001,22.1,52.45,919,1.2000000000000002 -2013,3,9,16,30,454,67,863,5.9,20.700000000000003,63.36,919,-0.7000000000000001 -2013,3,9,17,30,229,50,704,5.4,19.900000000000002,75.27,919,-2.3000000000000003 -2013,3,9,18,30,27,17,240,2.5,14.9,87.53,920,-2 -2013,3,9,19,30,0,0,0,2.1,13.700000000000001,100.42,920,-1.8 -2013,3,9,20,30,0,0,0,2.5,13.200000000000001,113.01,920,-1.6 -2013,3,9,21,30,0,0,0,3.1,12.600000000000001,125.23,921,-1.4000000000000001 -2013,3,9,22,30,0,0,0,2.9000000000000004,11.4,136.56,922,-0.9 -2013,3,9,23,30,0,0,0,2.6,10.200000000000001,145.94,922,-0.2 -2013,3,10,0,30,0,0,0,2.7,9.3,151.27,922,-0.1 -2013,3,10,1,30,0,0,0,3.6,8.700000000000001,150.24,921,-0.7000000000000001 -2013,3,10,2,30,0,0,0,4.6000000000000005,7.9,143.38,922,-2.3000000000000003 -2013,3,10,3,30,0,0,0,5.4,6.6000000000000005,133.24,923,-2.7 -2013,3,10,4,30,0,0,0,6.4,5.2,121.55,925,-2.7 -2013,3,10,5,30,0,0,0,7.1000000000000005,4,109.17,926,-3.2 -2013,3,10,6,30,0,0,0,7.5,3.6,96.52,927,-3.6 -2013,3,10,7,30,81,33,443,8.1,4.7,83.75,928,-3.9000000000000004 -2013,3,10,8,30,307,59,780,8.700000000000001,6.300000000000001,71.47,928,-4.6000000000000005 -2013,3,10,9,30,534,70,921,8.700000000000001,7.800000000000001,59.76,928,-5.6000000000000005 -2013,3,10,10,30,720,76,986,8.4,9.200000000000001,49.230000000000004,928,-6.9 -2013,3,10,11,30,849,81,1017,7.9,10.5,40.93,928,-8 -2013,3,10,12,30,917,82,1039,7.4,11.700000000000001,36.480000000000004,928,-8.9 -2013,3,10,13,30,906,82,1036,7.1000000000000005,12.5,37.300000000000004,928,-9.9 -2013,3,10,14,30,823,80,1018,7,12.700000000000001,43.09,928,-10.8 -2013,3,10,15,30,675,73,981,7,12.4,52.2,928,-11.600000000000001 -2013,3,10,16,30,479,64,918,6.6000000000000005,11.4,63.160000000000004,928,-12.3 -2013,3,10,17,30,246,49,766,6.2,10.700000000000001,75.10000000000001,929,-12.5 -2013,3,10,18,30,32,18,319,3.1,6.7,87.37,930,-11.100000000000001 -2013,3,10,19,30,0,0,0,2.2,4.7,100.27,931,-9.200000000000001 -2013,3,10,20,30,0,0,0,1.9000000000000001,3.5,112.85000000000001,931,-8.4 -2013,3,10,21,30,0,0,0,1.8,2.7,125.04,932,-8.1 -2013,3,10,22,30,0,0,0,1.9000000000000001,1.9000000000000001,136.33,931,-8.200000000000001 -2013,3,10,23,30,0,0,0,2.2,1.3,145.64000000000001,931,-8.4 -2013,3,11,0,30,0,0,0,2.6,0.7000000000000001,150.89000000000001,931,-8.700000000000001 -2013,3,11,1,30,0,0,0,3,0.2,149.84,931,-9.1 -2013,3,11,2,30,0,0,0,2.8000000000000003,-0.6000000000000001,143.03,931,-9.3 -2013,3,11,3,30,0,0,0,2.3000000000000003,-1.7000000000000002,132.93,931,-9.4 -2013,3,11,4,30,0,0,0,1.8,-2.5,121.27,931,-9.5 -2013,3,11,5,30,0,0,0,1.6,-2.9000000000000004,108.9,931,-9.700000000000001 -2013,3,11,6,30,0,0,0,2,-1.8,96.25,932,-9.9 -2013,3,11,7,30,90,32,510,2.7,1.4000000000000001,83.48,932,-10 -2013,3,11,8,30,318,57,810,3,5.800000000000001,71.19,932,-10.4 -2013,3,11,9,30,543,70,930,3.2,9.9,59.45,932,-12 -2013,3,11,10,30,729,78,990,3.4000000000000004,13.100000000000001,48.89,932,-11.600000000000001 -2013,3,11,11,30,859,82,1023,3.5,15.8,40.550000000000004,931,-10.5 -2013,3,11,12,30,916,82,1031,3.4000000000000004,18,36.08,930,-9.4 -2013,3,11,13,30,904,81,1030,3.1,19.400000000000002,36.94,928,-8.6 -2013,3,11,14,30,822,78,1013,2.8000000000000003,20.1,42.79,927,-8.1 -2013,3,11,15,30,673,74,972,2.7,20.200000000000003,51.96,926,-7.800000000000001 -2013,3,11,16,30,473,66,896,2,19.1,62.97,926,-7.7 -2013,3,11,17,30,243,50,742,1.3,18.2,74.93,926,-1.7000000000000002 -2013,3,11,18,30,32,18,295,1.4000000000000001,12.3,87.23,926,-1.9000000000000001 -2013,3,11,19,30,0,0,0,1.6,10.3,100.11,926,-3 -2013,3,11,20,30,0,0,0,2,9.4,112.68,927,-3.6 -2013,3,11,21,30,0,0,0,2.6,9.1,124.86,927,-4.3 -2013,3,11,22,30,0,0,0,3.4000000000000004,8.9,136.1,927,-5 -2013,3,11,23,30,0,0,0,4,8.6,145.33,927,-5.300000000000001 -2013,3,12,0,30,0,0,0,4.3,8,150.51,927,-5.5 -2013,3,12,1,30,0,0,0,4.5,7.300000000000001,149.45000000000002,927,-5.6000000000000005 -2013,3,12,2,30,0,0,0,4.800000000000001,6.7,142.67000000000002,927,-6 -2013,3,12,3,30,0,0,0,4.7,6,132.61,927,-6.6000000000000005 -2013,3,12,4,30,0,0,0,4.5,5.300000000000001,120.98,927,-7.1000000000000005 -2013,3,12,5,30,0,0,0,4.2,4.5,108.63,927,-7.1000000000000005 -2013,3,12,6,30,0,0,0,4.2,4.6000000000000005,95.99000000000001,927,-6.9 -2013,3,12,7,30,91,32,500,4.2,6.6000000000000005,83.22,928,-6.6000000000000005 -2013,3,12,8,30,317,58,793,4.1000000000000005,9.600000000000001,70.91,929,-5.800000000000001 -2013,3,12,9,30,539,72,910,4.1000000000000005,12.200000000000001,59.14,930,-5 -2013,3,12,10,30,723,83,967,4.1000000000000005,14.200000000000001,48.550000000000004,931,-4 -2013,3,12,11,30,847,90,991,4.1000000000000005,15.8,40.17,932,-3.4000000000000004 -2013,3,12,12,30,910,86,1014,4.3,17.1,35.68,932,-3.1 -2013,3,12,13,30,894,87,1004,4.800000000000001,17.900000000000002,36.57,932,-2.9000000000000004 -2013,3,12,14,30,811,85,984,5.4,18,42.49,932,-3 -2013,3,12,15,30,664,79,944,5.800000000000001,17.5,51.72,932,-3.3000000000000003 -2013,3,12,16,30,467,69,870,5.800000000000001,16.400000000000002,62.77,933,-3.7 -2013,3,12,17,30,240,52,716,5.7,15.600000000000001,74.76,933,-3.9000000000000004 -2013,3,12,18,30,33,19,282,4.4,11.3,87.08,935,-3.5 -2013,3,12,19,30,0,0,0,4.3,9.600000000000001,99.96000000000001,936,-3.5 -2013,3,12,20,30,0,0,0,3.8000000000000003,8.200000000000001,112.52,937,-3.5 -2013,3,12,21,30,0,0,0,2.9000000000000004,6.800000000000001,124.67,938,-3.5 -2013,3,12,22,30,0,0,0,2.2,5.5,135.86,938,-3.3000000000000003 -2013,3,12,23,30,0,0,0,1.7000000000000002,4.5,145.03,938,-3.2 -2013,3,13,0,30,0,0,0,1.5,3.8000000000000003,150.13,938,-3.1 -2013,3,13,1,30,0,0,0,1.4000000000000001,3.3000000000000003,149.05,938,-3.1 -2013,3,13,2,30,0,0,0,1.3,2.9000000000000004,142.31,938,-3 -2013,3,13,3,30,0,0,0,1.3,2.6,132.3,938,-2.9000000000000004 -2013,3,13,4,30,0,0,0,1.2000000000000002,2.4000000000000004,120.69,939,-2.6 -2013,3,13,5,30,0,0,0,1.2000000000000002,2.3000000000000003,108.36,939,-2.4000000000000004 -2013,3,13,6,30,0,0,0,1.2000000000000002,3.4000000000000004,95.72,940,-2.1 -2013,3,13,7,30,94,33,496,1.7000000000000002,6.4,82.95,940,-1.5 -2013,3,13,8,30,320,59,786,3.1,10.5,70.62,941,-1.1 -2013,3,13,9,30,542,74,904,4.1000000000000005,14.100000000000001,58.83,940,-1.4000000000000001 -2013,3,13,10,30,725,83,963,4.1000000000000005,16.5,48.2,940,-0.9 -2013,3,13,11,30,853,89,994,3.9000000000000004,18.400000000000002,39.79,939,-0.30000000000000004 -2013,3,13,12,30,764,316,549,3.9000000000000004,20,35.29,938,-0.1 -2013,3,13,13,30,895,95,993,3.8000000000000003,21.1,36.21,937,-0.1 -2013,3,13,14,30,812,92,973,3.6,21.8,42.2,936,-0.2 -2013,3,13,15,30,666,83,937,3.2,21.900000000000002,51.49,935,-0.5 -2013,3,13,16,30,468,73,857,2.3000000000000003,21,62.58,935,-0.7000000000000001 -2013,3,13,17,30,241,56,695,1.6,20.1,74.59,935,2.5 -2013,3,13,18,30,33,20,249,1.5,14.3,86.93,935,2.9000000000000004 -2013,3,13,19,30,0,0,0,2,12.8,99.8,935,1.8 -2013,3,13,20,30,0,0,0,2.5,12,112.35000000000001,936,1.7000000000000002 -2013,3,13,21,30,0,0,0,3,11.3,124.48,936,1.7000000000000002 -2013,3,13,22,30,0,0,0,3.4000000000000004,10.600000000000001,135.63,936,1.7000000000000002 -2013,3,13,23,30,0,0,0,3.6,10,144.72,936,1.5 -2013,3,14,0,30,0,0,0,3.7,9.3,149.75,936,1.2000000000000002 -2013,3,14,1,30,0,0,0,3.5,8.4,148.65,936,1.1 -2013,3,14,2,30,0,0,0,3.2,7.6000000000000005,141.95000000000002,936,1.1 -2013,3,14,3,30,0,0,0,3.1,7,131.98,935,1.1 -2013,3,14,4,30,0,0,0,3,6.6000000000000005,120.41,935,1.4000000000000001 -2013,3,14,5,30,0,0,0,3,6.300000000000001,108.08,936,1.9000000000000001 -2013,3,14,6,30,0,0,0,3.6,7,95.45,936,2.5 -2013,3,14,7,30,94,37,448,4.7,9.600000000000001,82.68,936,3.3000000000000003 -2013,3,14,8,30,317,66,745,5.7,13.3,70.34,937,4.6000000000000005 -2013,3,14,9,30,536,82,870,6.1000000000000005,17.1,58.53,936,5.6000000000000005 -2013,3,14,10,30,718,92,934,5.800000000000001,20.400000000000002,47.86,936,5.4 -2013,3,14,11,30,842,98,964,5.4,23.1,39.410000000000004,935,4.5 -2013,3,14,12,30,906,90,994,5.2,25,34.89,934,3.6 -2013,3,14,13,30,893,91,989,5.2,26,35.84,933,2.8000000000000003 -2013,3,14,14,30,810,89,968,5.2,26.3,41.9,932,2.1 -2013,3,14,15,30,660,85,920,5.1000000000000005,25.900000000000002,51.25,932,1.6 -2013,3,14,16,30,464,75,839,4.4,24.6,62.38,932,1.3 -2013,3,14,17,30,177,94,310,3.8000000000000003,23.6,74.43,932,2.1 -2013,3,14,18,30,35,21,245,3.3000000000000003,18.1,86.79,932,3.4000000000000004 -2013,3,14,19,30,0,0,0,4.4,17.2,99.65,933,2.9000000000000004 -2013,3,14,20,30,0,0,0,5.2,16.400000000000002,112.19,933,2.9000000000000004 -2013,3,14,21,30,0,0,0,5.6000000000000005,15.3,124.29,933,2.9000000000000004 -2013,3,14,22,30,0,0,0,5.7,14.3,135.39000000000001,933,3 -2013,3,14,23,30,0,0,0,5.6000000000000005,13.4,144.41,932,3 -2013,3,15,0,30,0,0,0,5.2,12.5,149.37,932,3 -2013,3,15,1,30,0,0,0,4.800000000000001,11.4,148.25,932,2.9000000000000004 -2013,3,15,2,30,0,0,0,4.6000000000000005,10.5,141.59,932,2.8000000000000003 -2013,3,15,3,30,0,0,0,4.5,9.700000000000001,131.66,931,2.8000000000000003 -2013,3,15,4,30,0,0,0,4.3,9.1,120.11,931,2.9000000000000004 -2013,3,15,5,30,0,0,0,4.1000000000000005,8.5,107.81,931,3.3000000000000003 -2013,3,15,6,30,0,0,0,4.3,8.8,95.18,931,3.9000000000000004 -2013,3,15,7,30,102,35,505,4.9,11,82.42,931,4.5 -2013,3,15,8,30,328,60,788,5.6000000000000005,14.700000000000001,70.05,931,5.300000000000001 -2013,3,15,9,30,549,73,903,6,18.900000000000002,58.22,931,5.800000000000001 -2013,3,15,10,30,731,82,961,6.1000000000000005,22.700000000000003,47.52,930,5.300000000000001 -2013,3,15,11,30,858,88,992,6.1000000000000005,25.700000000000003,39.02,929,4.1000000000000005 -2013,3,15,12,30,918,88,1007,6.1000000000000005,27.6,34.49,928,2.6 -2013,3,15,13,30,906,88,1004,6.2,28.6,35.480000000000004,926,1.4000000000000001 -2013,3,15,14,30,819,86,981,6.1000000000000005,28.8,41.6,925,0.7000000000000001 -2013,3,15,15,30,672,80,941,5.9,28.3,51.02,924,0.1 -2013,3,15,16,30,475,72,866,5.300000000000001,27,62.190000000000005,924,-0.1 -2013,3,15,17,30,247,55,706,4.800000000000001,26,74.26,924,0.7000000000000001 -2013,3,15,18,30,37,21,279,4.800000000000001,20.8,86.65,924,2 -2013,3,15,19,30,0,0,0,5.7,19.3,99.5,924,2.2 -2013,3,15,20,30,0,0,0,5.800000000000001,17.8,112.03,924,2.6 -2013,3,15,21,30,0,0,0,5.7,16.3,124.09,924,3.1 -2013,3,15,22,30,0,0,0,5.800000000000001,15.200000000000001,135.15,924,3.2 -2013,3,15,23,30,0,0,0,5.800000000000001,14.3,144.11,923,3.2 -2013,3,16,0,30,0,0,0,5.800000000000001,13.5,148.99,923,3.2 -2013,3,16,1,30,0,0,0,5.7,12.9,147.85,922,3.1 -2013,3,16,2,30,0,0,0,5.5,12.3,141.23,922,3 -2013,3,16,3,30,0,0,0,5.300000000000001,11.5,131.33,921,2.9000000000000004 -2013,3,16,4,30,0,0,0,5.2,10.700000000000001,119.82000000000001,921,3 -2013,3,16,5,30,0,0,0,5,9.8,107.53,921,3.2 -2013,3,16,6,30,0,0,0,5,9.8,94.91,921,3.4000000000000004 -2013,3,16,7,30,107,37,515,5.4,11.700000000000001,82.15,921,3.6 -2013,3,16,8,30,339,61,804,5.800000000000001,15.5,69.77,921,3.6 -2013,3,16,9,30,563,74,920,5.800000000000001,20,57.910000000000004,921,3.1 -2013,3,16,10,30,747,83,978,5.300000000000001,24,47.17,920,1.6 -2013,3,16,11,30,870,88,1002,4.6000000000000005,27.3,38.64,920,-0.2 -2013,3,16,12,30,930,90,1014,4,29.700000000000003,34.08,919,-1.5 -2013,3,16,13,30,917,93,1007,3.5,31,35.11,918,-2.4000000000000004 -2013,3,16,14,30,715,253,614,3,31.5,41.31,917,-2.9000000000000004 -2013,3,16,15,30,609,150,726,2.3000000000000003,31.3,50.79,916,-3.2 -2013,3,16,16,30,390,153,505,1.1,29.5,62,916,-2.5 -2013,3,16,17,30,201,83,429,0.4,28,74.10000000000001,916,4.9 -2013,3,16,18,30,29,22,126,1.2000000000000002,22.200000000000003,86.5,917,2.7 -2013,3,16,19,30,0,0,0,1.5,19.5,99.35000000000001,917,2.8000000000000003 -2013,3,16,20,30,0,0,0,1.6,17.2,111.86,918,3.9000000000000004 -2013,3,16,21,30,0,0,0,1.5,15.4,123.9,919,4.6000000000000005 -2013,3,16,22,30,0,0,0,1.2000000000000002,14,134.91,919,5 -2013,3,16,23,30,0,0,0,1,13,143.79,919,5.1000000000000005 -2013,3,17,0,30,0,0,0,1.1,12,148.61,919,5.2 -2013,3,17,1,30,0,0,0,1.8,10.9,147.45000000000002,920,5.4 -2013,3,17,2,30,0,0,0,3.1,9.9,140.86,920,5.4 -2013,3,17,3,30,0,0,0,4.1000000000000005,8.9,131.01,920,4.800000000000001 -2013,3,17,4,30,0,0,0,4.1000000000000005,7.800000000000001,119.52,921,3.7 -2013,3,17,5,30,0,0,0,3.5,6.9,107.25,921,2.6 -2013,3,17,6,30,0,0,0,3.4000000000000004,6.800000000000001,94.64,922,1.7000000000000002 -2013,3,17,7,30,106,41,460,3.6,8.1,81.87,923,1.2000000000000002 -2013,3,17,8,30,332,68,751,3.4000000000000004,10.4,69.48,923,1.6 -2013,3,17,9,30,552,83,875,3.1,12.700000000000001,57.6,923,2.4000000000000004 -2013,3,17,10,30,734,91,938,2.8000000000000003,15,46.83,923,3.1 -2013,3,17,11,30,860,96,973,2.4000000000000004,17.1,38.26,922,3.7 -2013,3,17,12,30,919,97,988,2.3000000000000003,19,33.68,921,4.1000000000000005 -2013,3,17,13,30,910,94,993,2.5,20.5,34.75,920,4.3 -2013,3,17,14,30,826,90,976,2.8000000000000003,21.700000000000003,41.02,919,4.2 -2013,3,17,15,30,679,83,938,2.8000000000000003,22.3,50.56,918,3.7 -2013,3,17,16,30,480,72,864,2.2,22,61.82,918,3 -2013,3,17,17,30,252,56,708,1.6,21.6,73.94,918,3.8000000000000003 -2013,3,17,18,30,41,22,296,0.8,17.1,86.35000000000001,918,4.800000000000001 -2013,3,17,19,30,0,0,0,1.5,14.9,99.19,917,3.7 -2013,3,17,20,30,0,0,0,1.9000000000000001,14,111.7,917,3.3000000000000003 -2013,3,17,21,30,0,0,0,2.7,14.100000000000001,123.71000000000001,917,2.8000000000000003 -2013,3,17,22,30,0,0,0,3.7,14.700000000000001,134.67000000000002,917,2.3000000000000003 -2013,3,17,23,30,0,0,0,4.4,14.700000000000001,143.48,917,1.6 -2013,3,18,0,30,0,0,0,4.3,14,148.23,917,0.6000000000000001 -2013,3,18,1,30,0,0,0,4.1000000000000005,13,147.05,918,-0.5 -2013,3,18,2,30,0,0,0,4.2,12.3,140.5,918,-1.4000000000000001 -2013,3,18,3,30,0,0,0,4.3,11.600000000000001,130.68,919,-1.8 -2013,3,18,4,30,0,0,0,3.7,10.4,119.23,919,-1.9000000000000001 -2013,3,18,5,30,0,0,0,3.6,9.3,106.97,920,-1.8 -2013,3,18,6,30,0,0,0,4.800000000000001,9.5,94.36,922,-1.8 -2013,3,18,7,30,119,37,568,6.4,10.700000000000001,81.60000000000001,924,-1.3 -2013,3,18,8,30,350,61,812,7,12.200000000000001,69.19,925,0.8 -2013,3,18,9,30,571,79,911,6.800000000000001,13.9,57.29,926,2.1 -2013,3,18,10,30,749,92,953,6.2,15.600000000000001,46.480000000000004,927,2.6 -2013,3,18,11,30,874,101,978,5.4,17.3,37.87,926,2.8000000000000003 -2013,3,18,12,30,777,340,522,4.6000000000000005,18.8,33.28,926,2.8000000000000003 -2013,3,18,13,30,915,106,981,3.9000000000000004,19.8,34.39,926,2.6 -2013,3,18,14,30,824,115,935,3.7,20.1,40.730000000000004,926,2.2 -2013,3,18,15,30,598,175,663,3.8000000000000003,19.700000000000003,50.33,926,1.7000000000000002 -2013,3,18,16,30,307,208,207,3.6,18.900000000000002,61.63,926,1.2000000000000002 -2013,3,18,17,30,221,70,540,3.2,18.3,73.78,926,1.1 -2013,3,18,18,30,31,23,113,1.6,13.4,86.2,926,2.6 -2013,3,18,19,30,0,0,0,1.9000000000000001,11.700000000000001,99.04,926,2 -2013,3,18,20,30,0,0,0,2.3000000000000003,11,111.53,927,1.6 -2013,3,18,21,30,0,0,0,2.6,10.3,123.51,927,1.6 -2013,3,18,22,30,0,0,0,2.6,9.5,134.42000000000002,927,1.8 -2013,3,18,23,30,0,0,0,2.4000000000000004,8.700000000000001,143.17000000000002,926,2.1 -2013,3,19,0,30,0,0,0,2.1,7.9,147.84,926,2.5 -2013,3,19,1,30,0,0,0,2,7.2,146.65,926,3 -2013,3,19,2,30,0,0,0,1.9000000000000001,6.7,140.13,926,3.6 -2013,3,19,3,30,0,0,0,1.9000000000000001,6.2,130.36,926,4.1000000000000005 -2013,3,19,4,30,0,0,0,1.9000000000000001,5.7,118.93,926,4.6000000000000005 -2013,3,19,5,30,0,0,0,2,5.1000000000000005,106.69,927,5 -2013,3,19,6,30,0,0,0,2.9000000000000004,5.9,94.09,927,5.4 -2013,3,19,7,30,65,54,71,3.9000000000000004,8.4,81.33,927,5.6000000000000005 -2013,3,19,8,30,205,150,155,4.3,11.5,68.91,927,5.6000000000000005 -2013,3,19,9,30,404,231,317,4.3,14.600000000000001,56.980000000000004,927,5.300000000000001 -2013,3,19,10,30,471,338,192,4,17.7,46.14,927,4.6000000000000005 -2013,3,19,11,30,675,340,422,3.5,21.1,37.49,926,3.7 -2013,3,19,12,30,778,345,515,2.7,23.3,32.88,925,2.4000000000000004 -2013,3,19,13,30,713,356,431,2.6,23.3,34.03,925,1.1 -2013,3,19,14,30,500,382,156,3.2,21.900000000000002,40.44,925,0.4 -2013,3,19,15,30,340,292,75,4,19.8,50.1,925,1.7000000000000002 -2013,3,19,16,30,332,202,273,4.800000000000001,17.8,61.45,926,3 -2013,3,19,17,30,97,97,2,5.1000000000000005,16.8,73.62,926,4.3 -2013,3,19,18,30,24,23,4,5.800000000000001,13.700000000000001,86.06,928,5.5 -2013,3,19,19,30,0,0,0,5.9,12.3,98.89,929,5.7 -2013,3,19,20,30,0,0,0,5.6000000000000005,11.4,111.36,930,5.2 -2013,3,19,21,30,0,0,0,5,10.700000000000001,123.32000000000001,931,4.5 -2013,3,19,22,30,0,0,0,4.3,9.9,134.18,932,3.9000000000000004 -2013,3,19,23,30,0,0,0,3.8000000000000003,9.1,142.86,932,3.2 -2013,3,20,0,30,0,0,0,3.2,8.4,147.46,933,2.5 -2013,3,20,1,30,0,0,0,2.6,7.9,146.25,933,2 -2013,3,20,2,30,0,0,0,2.1,7.300000000000001,139.76,933,1.6 -2013,3,20,3,30,0,0,0,1.9000000000000001,6.7,130.03,934,1.4000000000000001 -2013,3,20,4,30,0,0,0,1.9000000000000001,5.9,118.63,934,1.3 -2013,3,20,5,30,0,0,0,1.9000000000000001,5.2,106.41,935,1.4000000000000001 -2013,3,20,6,30,0,0,0,2.6,5.6000000000000005,93.82000000000001,936,1.4000000000000001 -2013,3,20,7,30,121,42,507,3.4000000000000004,8,81.05,937,1.5 -2013,3,20,8,30,350,67,776,4,11.4,68.62,937,0.6000000000000001 -2013,3,20,9,30,574,81,897,4.4,14.3,56.67,937,-0.9 -2013,3,20,10,30,756,89,956,4.2,16.400000000000002,45.800000000000004,937,-1.9000000000000001 -2013,3,20,11,30,882,94,987,3.7,18,37.1,936,-2.6 -2013,3,20,12,30,939,98,998,3.3000000000000003,19.200000000000003,32.480000000000004,934,-2.8000000000000003 -2013,3,20,13,30,922,97,991,3.2,20,33.67,933,-2.6 -2013,3,20,14,30,837,95,971,3.3000000000000003,20.400000000000002,40.160000000000004,931,-2.3000000000000003 -2013,3,20,15,30,685,94,917,3.4000000000000004,20.1,49.88,930,-2 -2013,3,20,16,30,382,172,436,3.5,19.200000000000003,61.27,929,-1.9000000000000001 -2013,3,20,17,30,162,112,178,3.4000000000000004,18.5,73.46000000000001,929,-1.6 -2013,3,20,18,30,27,24,31,2.1,14.4,85.91,929,0.5 -2013,3,20,19,30,0,0,0,2.6,13.100000000000001,98.74000000000001,929,0.6000000000000001 -2013,3,20,20,30,0,0,0,3.4000000000000004,12.700000000000001,111.2,928,0.30000000000000004 -2013,3,20,21,30,0,0,0,4.2,12.4,123.12,928,0.4 -2013,3,20,22,30,0,0,0,4.4,11.8,133.94,927,0.8 -2013,3,20,23,30,0,0,0,4.2,11.200000000000001,142.54,926,1.4000000000000001 -2013,3,21,0,30,0,0,0,3.9000000000000004,10.5,147.08,925,2.1 -2013,3,21,1,30,0,0,0,4,9.9,145.85,924,2.5 -2013,3,21,2,30,0,0,0,4.2,9.5,139.39000000000001,923,2.6 -2013,3,21,3,30,0,0,0,4.3,9.1,129.7,922,2.6 -2013,3,21,4,30,0,0,0,4.5,8.700000000000001,118.33,921,2.4000000000000004 -2013,3,21,5,30,0,0,0,4.7,8.5,106.13,921,2.5 -2013,3,21,6,30,0,0,0,5,9,93.54,920,3.3000000000000003 -2013,3,21,7,30,89,55,212,6.300000000000001,11.3,80.78,919,4.6000000000000005 -2013,3,21,8,30,207,155,142,7.6000000000000005,15.200000000000001,68.33,919,7.6000000000000005 -2013,3,21,9,30,363,254,197,7.800000000000001,19.200000000000003,56.36,918,9.700000000000001 -2013,3,21,10,30,518,336,261,7.5,22.700000000000003,45.45,917,9.8 -2013,3,21,11,30,686,342,430,7.4,25.200000000000003,36.72,916,8.700000000000001 -2013,3,21,12,30,702,409,345,7.300000000000001,26.900000000000002,32.08,915,6.800000000000001 -2013,3,21,13,30,663,413,299,7.1000000000000005,28.1,33.31,914,4.5 -2013,3,21,14,30,827,108,937,7,29,39.87,912,1.9000000000000001 -2013,3,21,15,30,583,209,578,6.6000000000000005,29,49.660000000000004,912,-0.8 -2013,3,21,16,30,434,112,667,5.2,27.900000000000002,61.09,911,-2.5 -2013,3,21,17,30,230,70,556,4.1000000000000005,27,73.3,911,-1.6 -2013,3,21,18,30,39,25,188,2.1,20,85.78,912,1.1 -2013,3,21,19,30,0,0,0,2.1,18.2,98.59,912,0.8 -2013,3,21,20,30,0,0,0,2.2,17.1,111.03,913,0.6000000000000001 -2013,3,21,21,30,0,0,0,2.2,16,122.93,913,0.4 -2013,3,21,22,30,0,0,0,2.4000000000000004,15.200000000000001,133.69,913,0.30000000000000004 -2013,3,21,23,30,0,0,0,2.9000000000000004,14.8,142.23,914,0 -2013,3,22,0,30,0,0,0,3.6,14.3,146.70000000000002,914,-0.4 -2013,3,22,1,30,0,0,0,3.9000000000000004,13.600000000000001,145.45000000000002,915,-0.7000000000000001 -2013,3,22,2,30,0,0,0,3.8000000000000003,12.4,139.02,915,-0.7000000000000001 -2013,3,22,3,30,0,0,0,4.1000000000000005,10.8,129.37,916,0 -2013,3,22,4,30,0,0,0,4.7,9.3,118.03,918,2.3000000000000003 -2013,3,22,5,30,0,0,0,5.1000000000000005,8.1,105.84,919,4.6000000000000005 -2013,3,22,6,30,0,0,0,5.4,7.5,93.27,920,5.7 -2013,3,22,7,30,87,59,170,5.4,7.6000000000000005,80.51,921,5.800000000000001 -2013,3,22,8,30,80,80,0,5.2,8.1,68.05,921,5.300000000000001 -2013,3,22,9,30,211,202,18,4.7,8.6,56.050000000000004,922,4.9 -2013,3,22,10,30,348,312,52,4.2,8.9,45.11,923,4.6000000000000005 -2013,3,22,11,30,340,318,27,3.9000000000000004,9.3,36.34,923,4.4 -2013,3,22,12,30,498,423,89,3.5,9.8,31.68,922,4.3 -2013,3,22,13,30,510,422,105,3.1,10.200000000000001,32.96,922,4.2 -2013,3,22,14,30,455,378,100,2.8000000000000003,10.600000000000001,39.59,922,4.2 -2013,3,22,15,30,451,309,218,2.8000000000000003,10.9,49.44,922,4.1000000000000005 -2013,3,22,16,30,308,215,191,2.8000000000000003,10.9,60.910000000000004,922,4 -2013,3,22,17,30,174,112,213,2.8000000000000003,10.600000000000001,73.14,922,3.9000000000000004 -2013,3,22,18,30,16,16,0,2.4000000000000004,8.200000000000001,85.62,922,3.8000000000000003 -2013,3,22,19,30,0,0,0,2.4000000000000004,6.800000000000001,98.44,921,3.6 -2013,3,22,20,30,0,0,0,2.4000000000000004,5.7,110.86,921,3.5 -2013,3,22,21,30,0,0,0,1.9000000000000001,4.9,122.73,921,3.5 -2013,3,22,22,30,0,0,0,1.4000000000000001,4.2,133.44,921,3.5 -2013,3,22,23,30,0,0,0,1,4,141.91,921,3.5 -2013,3,23,0,30,0,0,0,1,4.2,146.31,921,3.6 -2013,3,23,1,30,0,0,0,1,4.3,145.05,921,3.6 -2013,3,23,2,30,0,0,0,1.1,4.2,138.65,921,3.7 -2013,3,23,3,30,0,0,0,1.3,4,129.04,921,3.7 -2013,3,23,4,30,0,0,0,1.6,3.7,117.73,921,3.7 -2013,3,23,5,30,0,0,0,2.1,3.7,105.56,920,3.7 -2013,3,23,6,30,0,0,0,2.7,4.3,92.99,920,3.7 -2013,3,23,7,30,124,56,401,3.1,6.300000000000001,80.23,920,4 -2013,3,23,8,30,115,115,0,3.3000000000000003,9.600000000000001,67.76,920,4.6000000000000005 -2013,3,23,9,30,213,203,18,3.3000000000000003,13.5,55.74,920,5.300000000000001 -2013,3,23,10,30,356,317,55,3.4000000000000004,17.8,44.77,919,5.9 -2013,3,23,11,30,889,103,971,3.8000000000000003,21.8,35.96,918,5.1000000000000005 -2013,3,23,12,30,951,102,994,4.4,24.700000000000003,31.28,917,2.5 -2013,3,23,13,30,944,100,1002,5.1000000000000005,26.1,32.6,916,-1.1 -2013,3,23,14,30,861,100,983,5.5,26.5,39.31,915,-4.7 -2013,3,23,15,30,711,97,941,5.5,26.1,49.230000000000004,915,-7.5 -2013,3,23,16,30,413,150,537,4.4,24.700000000000003,60.730000000000004,914,-8.8 -2013,3,23,17,30,270,65,700,3.5,23.700000000000003,72.99,914,-5.800000000000001 -2013,3,23,18,30,51,30,261,2.7,17.5,85.49,915,-2.8000000000000003 -2013,3,23,19,30,0,0,0,5.6000000000000005,16.7,98.29,917,-5.4 -2013,3,23,20,30,0,0,0,8.8,15.200000000000001,110.7,920,-10 -2013,3,23,21,30,0,0,0,9.200000000000001,12,122.53,923,-13.3 -2013,3,23,22,30,0,0,0,9.5,8.6,133.19,925,-9.8 -2013,3,23,23,30,0,0,0,9.4,5.1000000000000005,141.59,927,-5.300000000000001 -2013,3,24,0,30,0,0,0,8.3,2.6,145.93,929,-3.9000000000000004 -2013,3,24,1,30,0,0,0,7.5,1.3,144.66,929,-4.6000000000000005 -2013,3,24,2,30,0,0,0,7,0.30000000000000004,138.28,929,-5.800000000000001 -2013,3,24,3,30,0,0,0,6.6000000000000005,-0.5,128.71,930,-6.800000000000001 -2013,3,24,4,30,0,0,0,6.300000000000001,-1.1,117.43,930,-7.4 -2013,3,24,5,30,0,0,0,6,-1.6,105.28,931,-7.9 -2013,3,24,6,30,0,0,0,6.2,-1.5,92.72,932,-8.5 -2013,3,24,7,30,147,42,607,6.6000000000000005,-0.30000000000000004,79.96000000000001,933,-8.9 -2013,3,24,8,30,388,62,849,6.7,1.7000000000000002,67.47,934,-9.5 -2013,3,24,9,30,613,74,950,6.5,3.9000000000000004,55.43,934,-10 -2013,3,24,10,30,797,81,1002,6.1000000000000005,6,44.43,934,-10.5 -2013,3,24,11,30,922,86,1028,5.7,7.9,35.57,933,-11.100000000000001 -2013,3,24,12,30,979,88,1038,5.4,9.4,30.88,932,-11.700000000000001 -2013,3,24,13,30,963,88,1035,5.2,10.3,32.25,932,-12.3 -2013,3,24,14,30,875,85,1018,5.1000000000000005,10.700000000000001,39.04,931,-13 -2013,3,24,15,30,722,80,979,5,10.5,49.01,930,-13.700000000000001 -2013,3,24,16,30,519,69,914,4.7,9.8,60.56,930,-14.200000000000001 -2013,3,24,17,30,284,54,782,4.5,9.200000000000001,72.84,930,-14.5 -2013,3,24,18,30,59,25,420,2.6,5.2,85.33,931,-13 -2013,3,24,19,30,0,0,0,2.8000000000000003,3.6,98.14,931,-12 -2013,3,24,20,30,0,0,0,3.1,2.8000000000000003,110.53,932,-12.700000000000001 -2013,3,24,21,30,0,0,0,3.1,1.8,122.33,932,-12.700000000000001 -2013,3,24,22,30,0,0,0,2.9000000000000004,0.9,132.94,933,-12.5 -2013,3,24,23,30,0,0,0,2.7,0,141.27,933,-12.3 -2013,3,25,0,30,0,0,0,2.4000000000000004,-0.9,145.55,933,-11.9 -2013,3,25,1,30,0,0,0,2,-1.6,144.26,934,-11.600000000000001 -2013,3,25,2,30,0,0,0,1.7000000000000002,-2.4000000000000004,137.91,935,-11.3 -2013,3,25,3,30,0,0,0,1.4000000000000001,-3,128.38,935,-11.100000000000001 -2013,3,25,4,30,0,0,0,1.4000000000000001,-3.6,117.12,936,-11 -2013,3,25,5,30,0,0,0,1.5,-3.9000000000000004,104.99000000000001,937,-11.100000000000001 -2013,3,25,6,30,0,0,0,2.4000000000000004,-2.7,92.44,938,-11.200000000000001 -2013,3,25,7,30,154,43,621,3.7,0.30000000000000004,79.68,939,-11.3 -2013,3,25,8,30,392,65,844,4.3,3.5,67.19,939,-11.9 -2013,3,25,9,30,616,78,940,4,5.800000000000001,55.13,939,-11.9 -2013,3,25,10,30,799,88,989,3.4000000000000004,7.800000000000001,44.09,939,-12 -2013,3,25,11,30,924,94,1016,2.8000000000000003,9.4,35.19,938,-12 -2013,3,25,12,30,974,96,1019,2.6,10.600000000000001,30.48,938,-11.8 -2013,3,25,13,30,958,95,1016,2.7,11.3,31.89,937,-11.600000000000001 -2013,3,25,14,30,871,91,1001,3,11.5,38.76,936,-11.5 -2013,3,25,15,30,716,92,948,3.2,11.3,48.800000000000004,935,-11.5 -2013,3,25,16,30,513,79,879,3.2,10.5,60.38,936,-11.4 -2013,3,25,17,30,281,60,741,3.2,9.9,72.68,936,-11.4 -2013,3,25,18,30,59,27,378,1.7000000000000002,5.5,85.19,937,-8.6 -2013,3,25,19,30,0,0,0,1.7000000000000002,3.8000000000000003,97.98,937,-8.1 -2013,3,25,20,30,0,0,0,1.8,2.9000000000000004,110.36,938,-8.700000000000001 -2013,3,25,21,30,0,0,0,1.8,2,122.13,939,-8.9 -2013,3,25,22,30,0,0,0,1.6,1,132.69,939,-9 -2013,3,25,23,30,0,0,0,1.5,0.2,140.95000000000002,939,-9.1 -2013,3,26,0,30,0,0,0,1.3,-0.6000000000000001,145.17000000000002,939,-9.1 -2013,3,26,1,30,0,0,0,1.2000000000000002,-1.3,143.86,939,-9.200000000000001 -2013,3,26,2,30,0,0,0,1.2000000000000002,-1.8,137.54,939,-9.4 -2013,3,26,3,30,0,0,0,1.2000000000000002,-2.3000000000000003,128.04,939,-9.5 -2013,3,26,4,30,0,0,0,1.2000000000000002,-2.7,116.82000000000001,939,-9.600000000000001 -2013,3,26,5,30,0,0,0,1.2000000000000002,-3,104.71000000000001,940,-9.600000000000001 -2013,3,26,6,30,0,0,0,1.8,-1.5,92.17,940,-9.4 -2013,3,26,7,30,156,44,607,2.7,2,79.41,941,-8.700000000000001 -2013,3,26,8,30,392,66,830,3.5,6.2,66.91,941,-9.1 -2013,3,26,9,30,615,80,928,3.9000000000000004,9.700000000000001,54.82,940,-10.3 -2013,3,26,10,30,796,90,979,3.9000000000000004,12.3,43.75,940,-10.100000000000001 -2013,3,26,11,30,916,96,999,4,14.3,34.81,939,-10 -2013,3,26,12,30,972,96,1013,4.2,15.8,30.080000000000002,938,-10 -2013,3,26,13,30,956,96,1009,4.4,16.900000000000002,31.54,936,-10 -2013,3,26,14,30,868,94,989,4.5,17.400000000000002,38.49,935,-10 -2013,3,26,15,30,716,87,950,4.6000000000000005,17.5,48.59,934,-9.9 -2013,3,26,16,30,512,79,873,4.5,16.8,60.21,933,-9.9 -2013,3,26,17,30,279,62,723,4.3,16.3,72.53,933,-9.600000000000001 -2013,3,26,18,30,37,30,90,2.8000000000000003,10.9,85.05,933,-7 -2013,3,26,19,30,0,0,0,3.4000000000000004,9.4,97.83,933,-6.9 -2013,3,26,20,30,0,0,0,4.2,8.700000000000001,110.19,934,-7.1000000000000005 -2013,3,26,21,30,0,0,0,4.6000000000000005,7.800000000000001,121.93,934,-6.9 -2013,3,26,22,30,0,0,0,4.4,6.800000000000001,132.44,934,-6.800000000000001 -2013,3,26,23,30,0,0,0,4.3,5.9,140.64000000000001,933,-6.6000000000000005 -2013,3,27,0,30,0,0,0,4.5,5.300000000000001,144.78,933,-6.6000000000000005 -2013,3,27,1,30,0,0,0,4.6000000000000005,4.7,143.46,932,-6.7 -2013,3,27,2,30,0,0,0,4.7,4.2,137.17000000000002,932,-6.800000000000001 -2013,3,27,3,30,0,0,0,4.6000000000000005,3.8000000000000003,127.71000000000001,932,-6.800000000000001 -2013,3,27,4,30,0,0,0,4.5,3.5,116.52,932,-6.5 -2013,3,27,5,30,0,0,0,4.4,3.4000000000000004,104.43,932,-5.800000000000001 -2013,3,27,6,30,0,0,0,4.7,4.1000000000000005,91.89,932,-4.800000000000001 -2013,3,27,7,30,153,51,541,6.1000000000000005,6.7,79.14,933,-3.5 -2013,3,27,8,30,382,78,767,7.5,10.4,66.62,933,-0.1 -2013,3,27,9,30,601,95,872,7.6000000000000005,13.8,54.52,932,2.4000000000000004 -2013,3,27,10,30,777,106,924,7.300000000000001,16.8,43.410000000000004,932,2.9000000000000004 -2013,3,27,11,30,899,113,953,6.9,19.400000000000002,34.43,931,2.8000000000000003 -2013,3,27,12,30,953,110,970,6.6000000000000005,21.3,29.68,930,2.6 -2013,3,27,13,30,836,304,623,6.1000000000000005,22.6,31.2,929,2.4000000000000004 -2013,3,27,14,30,849,106,945,5.7,23.3,38.230000000000004,928,2.3000000000000003 -2013,3,27,15,30,698,100,900,5.5,23.200000000000003,48.39,928,2.2 -2013,3,27,16,30,436,131,610,5.300000000000001,22.200000000000003,60.04,928,2.2 -2013,3,27,17,30,272,67,677,5.1000000000000005,21.5,72.39,928,2.6 -2013,3,27,18,30,50,29,242,4.1000000000000005,16.7,84.92,928,3.6 -2013,3,27,19,30,0,0,0,4.7,14.8,97.68,929,4.2 -2013,3,27,20,30,0,0,0,5.1000000000000005,13.700000000000001,110.03,929,4.800000000000001 -2013,3,27,21,30,0,0,0,5.2,12.8,121.73,930,5.4 -2013,3,27,22,30,0,0,0,5.2,11.9,132.19,930,6 -2013,3,27,23,30,0,0,0,4.9,11.100000000000001,140.32,930,6.5 -2013,3,28,0,30,0,0,0,4.4,10.5,144.4,930,7 -2013,3,28,1,30,0,0,0,4.2,10.200000000000001,143.06,930,7.4 -2013,3,28,2,30,0,0,0,3.9000000000000004,9.9,136.81,929,7.7 -2013,3,28,3,30,0,0,0,3.6,9.3,127.38000000000001,929,8.1 -2013,3,28,4,30,0,0,0,3.4000000000000004,8.8,116.22,929,8.4 -2013,3,28,5,30,0,0,0,3.3000000000000003,8.6,104.14,929,8.6 -2013,3,28,6,30,0,0,0,3.6,9.3,91.62,930,9.1 -2013,3,28,7,30,149,58,470,4.4,11.3,78.87,930,9.4 -2013,3,28,8,30,373,88,711,4.9,14.3,66.34,931,9.9 -2013,3,28,9,30,589,105,828,4.7,17.5,54.22,931,10.100000000000001 -2013,3,28,10,30,764,114,889,4.6000000000000005,20.3,43.08,931,10.200000000000001 -2013,3,28,11,30,739,339,483,4.5,22.8,34.06,930,10.100000000000001 -2013,3,28,12,30,937,111,947,4.5,24.8,29.29,929,9.700000000000001 -2013,3,28,13,30,918,110,941,4.5,26.200000000000003,30.85,929,9.1 -2013,3,28,14,30,831,106,920,4.3,26.8,37.96,928,8.5 -2013,3,28,15,30,684,99,877,4.1000000000000005,26.900000000000002,48.18,927,7.9 -2013,3,28,16,30,488,87,799,3.8000000000000003,26.1,59.88,927,7.300000000000001 -2013,3,28,17,30,265,69,645,3.6,25.5,72.24,927,7.4 -2013,3,28,18,30,57,31,283,3.2,20.400000000000002,84.78,928,8.5 -2013,3,28,19,30,0,0,0,4.6000000000000005,19,97.53,929,8.200000000000001 -2013,3,28,20,30,0,0,0,5.300000000000001,18,109.86,929,8.5 -2013,3,28,21,30,0,0,0,5.2,16.7,121.53,930,8.9 -2013,3,28,22,30,0,0,0,5,15.5,131.94,930,9.600000000000001 -2013,3,28,23,30,0,0,0,4.9,14.600000000000001,140,930,10.5 -2013,3,29,0,30,0,0,0,4.6000000000000005,13.8,144.02,930,11.4 -2013,3,29,1,30,0,0,0,4.3,13.100000000000001,142.67000000000002,930,12 -2013,3,29,2,30,0,0,0,4,12.600000000000001,136.44,930,12.5 -2013,3,29,3,30,0,0,0,3.5,12.3,127.05,930,12.3 -2013,3,29,4,30,0,0,0,3.1,12.100000000000001,115.91,930,12.100000000000001 -2013,3,29,5,30,0,0,0,2.9000000000000004,11.9,103.86,930,11.9 -2013,3,29,6,30,0,0,0,3.2,12.4,91.35000000000001,930,12.4 -2013,3,29,7,30,102,73,146,4.1000000000000005,13.600000000000001,78.60000000000001,931,12.5 -2013,3,29,8,30,271,163,267,4.7,15.100000000000001,66.06,931,12.600000000000001 -2013,3,29,9,30,451,248,345,4.7,16.400000000000002,53.92,931,12.600000000000001 -2013,3,29,10,30,633,282,478,4.3,17.6,42.74,931,12.5 -2013,3,29,11,30,725,346,455,4.3,18.900000000000002,33.68,930,12.3 -2013,3,29,12,30,635,452,209,4.7,20.5,28.89,929,12.200000000000001 -2013,3,29,13,30,771,365,470,5,21.8,30.51,929,12 -2013,3,29,14,30,626,376,316,5,22.1,37.7,929,11.9 -2013,3,29,15,30,288,267,31,4.6000000000000005,21.900000000000002,47.980000000000004,928,11.9 -2013,3,29,16,30,240,211,56,4.1000000000000005,21.6,59.71,928,12.100000000000001 -2013,3,29,17,30,13,13,0,3.8000000000000003,21.3,72.09,927,12.3 -2013,3,29,18,30,41,32,99,2.6,17.8,84.64,928,12.600000000000001 -2013,3,29,19,30,0,0,0,3.2,16.400000000000002,97.38,928,13 -2013,3,29,20,30,0,0,0,3.8000000000000003,15.8,109.69,929,13.4 -2013,3,29,21,30,0,0,0,4.1000000000000005,15.100000000000001,121.32000000000001,929,13.700000000000001 -2013,3,29,22,30,0,0,0,4.2,14.600000000000001,131.68,929,13.700000000000001 -2013,3,29,23,30,0,0,0,4.2,14.200000000000001,139.68,929,13.5 -2013,3,30,0,30,0,0,0,4,13.8,143.64000000000001,929,13.200000000000001 -2013,3,30,1,30,0,0,0,3.9000000000000004,13.4,142.27,928,13 -2013,3,30,2,30,0,0,0,3.8000000000000003,12.9,136.07,928,12.8 -2013,3,30,3,30,0,0,0,3.8000000000000003,12.5,126.72,928,12.5 -2013,3,30,4,30,0,0,0,3.7,12,115.61,928,12 -2013,3,30,5,30,0,0,0,3.6,11.700000000000001,103.58,928,11.700000000000001 -2013,3,30,6,30,0,0,0,4,12.3,91.07000000000001,928,12.3 -2013,3,30,7,30,163,51,554,4.800000000000001,14.3,78.33,928,12.600000000000001 -2013,3,30,8,30,393,74,779,5.1000000000000005,17.3,65.78,928,12.700000000000001 -2013,3,30,9,30,613,85,890,4.5,20.700000000000003,53.620000000000005,928,12.4 -2013,3,30,10,30,768,128,867,3.6,24.1,42.410000000000004,928,11.600000000000001 -2013,3,30,11,30,878,175,842,2.9000000000000004,27.3,33.31,927,9.700000000000001 -2013,3,30,12,30,966,96,989,2.2,29.400000000000002,28.5,926,6.7 -2013,3,30,13,30,948,96,985,1.8,30.3,30.16,925,4.800000000000001 -2013,3,30,14,30,837,147,869,1.6,30.6,37.44,924,3.6 -2013,3,30,15,30,607,217,580,1.6,30.3,47.78,923,2.6 -2013,3,30,16,30,437,141,584,1.2000000000000002,29.200000000000003,59.550000000000004,923,1.7000000000000002 -2013,3,30,17,30,179,123,180,0.8,28.3,71.94,923,5.2 -2013,3,30,18,30,35,32,26,0.9,23.1,84.5,923,7.800000000000001 -2013,3,30,19,30,0,0,0,1.2000000000000002,21.1,97.23,923,6.2 -2013,3,30,20,30,0,0,0,1.5,20,109.52,923,5.800000000000001 -2013,3,30,21,30,0,0,0,1.8,19.3,121.12,924,5.300000000000001 -2013,3,30,22,30,0,0,0,2.1,18.7,131.43,923,4.6000000000000005 -2013,3,30,23,30,0,0,0,2.7,18.3,139.35,923,3.7 -2013,3,31,0,30,0,0,0,3.8000000000000003,18.1,143.26,923,2.5 -2013,3,31,1,30,0,0,0,5,18.400000000000002,141.88,923,1.3 -2013,3,31,2,30,0,0,0,5.7,18.8,135.7,923,0.7000000000000001 -2013,3,31,3,30,0,0,0,5.1000000000000005,18.7,126.38000000000001,924,1.3 -2013,3,31,4,30,0,0,0,4,18,115.31,924,2.6 -2013,3,31,5,30,0,0,0,3.5,17.1,103.3,925,3.9000000000000004 -2013,3,31,6,30,0,0,0,5,16.400000000000002,90.25,926,5.7 -2013,3,31,7,30,102,78,116,7,16.3,78.06,928,8 -2013,3,31,8,30,154,148,15,7.7,16.900000000000002,65.51,928,9.4 -2013,3,31,9,30,599,91,851,7.300000000000001,18.2,53.33,929,9.9 -2013,3,31,10,30,771,103,900,6.5,19.6,42.08,929,9.9 -2013,3,31,11,30,889,110,929,5.800000000000001,20.900000000000002,32.93,929,9.8 -2013,3,31,12,30,943,106,949,5,22.1,28.11,928,9.600000000000001 -2013,3,31,13,30,926,104,948,4.2,23,29.82,928,9.5 -2013,3,31,14,30,840,99,930,3.7,23.400000000000002,37.18,927,9.3 -2013,3,31,15,30,694,92,892,3.5,23.3,47.58,927,8.9 -2013,3,31,16,30,501,79,828,3.4000000000000004,22.5,59.38,926,8.4 -2013,3,31,17,30,278,60,696,3.4000000000000004,22,71.8,926,8 -2013,3,31,18,30,65,30,355,1.9000000000000001,18,84.36,927,8.1 -2013,3,31,19,30,0,0,0,1.7000000000000002,16.1,97.08,927,7.800000000000001 -2013,3,31,20,30,0,0,0,1.7000000000000002,15,109.35000000000001,928,7.4 -2013,3,31,21,30,0,0,0,1.6,13.9,120.92,928,7.1000000000000005 -2013,3,31,22,30,0,0,0,1.5,12.9,131.17000000000002,928,7 -2013,3,31,23,30,0,0,0,1.4000000000000001,12,139.03,928,7.1000000000000005 -2013,4,1,0,30,0,0,0,1.4000000000000001,11.3,142.89000000000001,928,7.300000000000001 -2013,4,1,1,30,0,0,0,1.4000000000000001,10.700000000000001,141.49,928,7.6000000000000005 -2013,4,1,2,30,0,0,0,1.4000000000000001,10.100000000000001,135.34,928,7.9 -2013,4,1,3,30,0,0,0,1.5,9.600000000000001,126.05,928,8.200000000000001 -2013,4,1,4,30,0,0,0,1.5,9.200000000000001,115.01,929,8.700000000000001 -2013,4,1,5,30,0,0,0,1.5,9,103.01,929,9 -2013,4,1,6,30,0,0,0,2.2,10.700000000000001,90.01,929,9.4 -2013,4,1,7,30,173,50,580,3.2,14.4,77.8,930,9.700000000000001 -2013,4,1,8,30,402,74,783,3.9000000000000004,18.5,65.23,930,9.5 -2013,4,1,9,30,617,88,878,4.3,22.1,53.03,930,8.4 -2013,4,1,10,30,789,98,926,4.3,24.6,41.76,929,7.9 -2013,4,1,11,30,905,104,950,4.3,26.5,32.56,929,7.7 -2013,4,1,12,30,959,103,967,4.4,27.900000000000002,27.71,927,7.5 -2013,4,1,13,30,941,102,963,4.4,28.6,29.48,926,7.300000000000001 -2013,4,1,14,30,853,99,944,4.5,28.8,36.92,925,7.1000000000000005 -2013,4,1,15,30,701,94,895,4.7,28.6,47.39,924,7 -2013,4,1,16,30,503,84,818,4.7,27.700000000000003,59.22,924,6.9 -2013,4,1,17,30,276,68,662,4.7,27,71.65,924,7.1000000000000005 -2013,4,1,18,30,64,34,303,4.3,23,84.22,924,8 -2013,4,1,19,30,0,0,0,4.7,21.3,96.93,924,8.4 -2013,4,1,20,30,0,0,0,4.7,20,109.18,925,9.1 -2013,4,1,21,30,0,0,0,4.4,18.900000000000002,120.71000000000001,925,9.9 -2013,4,1,22,30,0,0,0,3.9000000000000004,17.900000000000002,130.92000000000002,925,10.700000000000001 -2013,4,1,23,30,0,0,0,3.2,16.900000000000002,138.71,925,11.5 -2013,4,2,0,30,0,0,0,2.6,15.9,142.51,925,12.200000000000001 -2013,4,2,1,30,0,0,0,2.6,15.100000000000001,141.1,925,12.600000000000001 -2013,4,2,2,30,0,0,0,3,14.700000000000001,134.97,925,12.9 -2013,4,2,3,30,0,0,0,3.2,14.5,125.72,925,13.200000000000001 -2013,4,2,4,30,0,0,0,3,14.3,114.71000000000001,925,13.5 -2013,4,2,5,30,0,0,0,2.4000000000000004,14,102.74000000000001,925,13.700000000000001 -2013,4,2,6,30,0,0,0,2.1,14.100000000000001,89.79,926,13.700000000000001 -2013,4,2,7,30,6,6,0,2.5,14.5,77.53,927,13.600000000000001 -2013,4,2,8,30,34,34,0,3.4000000000000004,14.600000000000001,64.96000000000001,927,13 -2013,4,2,9,30,42,42,0,4.3,14,52.74,928,11.9 -2013,4,2,10,30,63,63,0,4.6000000000000005,13.200000000000001,41.43,928,10.3 -2013,4,2,11,30,106,106,0,4.5,12.700000000000001,32.19,928,9 -2013,4,2,12,30,104,104,0,4.3,12.5,27.32,928,8.1 -2013,4,2,13,30,185,178,8,4.1000000000000005,12.3,29.150000000000002,928,7.7 -2013,4,2,14,30,274,262,16,4,11.9,36.67,927,7.300000000000001 -2013,4,2,15,30,172,169,5,4.1000000000000005,11.3,47.19,927,6.9 -2013,4,2,16,30,162,160,4,4.1000000000000005,10.8,59.06,927,6.4 -2013,4,2,17,30,105,105,0,4.1000000000000005,10.600000000000001,71.51,927,6.1000000000000005 -2013,4,2,18,30,24,24,0,3.8000000000000003,9.8,84.08,927,6.2 -2013,4,2,19,30,0,0,0,3.7,9.5,96.78,928,6.5 -2013,4,2,20,30,0,0,0,3.8000000000000003,9.1,109.01,929,6.9 -2013,4,2,21,30,0,0,0,4,8.700000000000001,120.51,929,7.2 -2013,4,2,22,30,0,0,0,4.2,8.1,130.66,929,7.300000000000001 -2013,4,2,23,30,0,0,0,4.4,7.4,138.39000000000001,929,7.1000000000000005 -2013,4,3,0,30,0,0,0,4.7,6.800000000000001,142.13,929,6.5 -2013,4,3,1,30,0,0,0,4.9,6.2,140.71,929,5.800000000000001 -2013,4,3,2,30,0,0,0,4.9,5.6000000000000005,134.61,929,4.9 -2013,4,3,3,30,0,0,0,4.9,5.1000000000000005,125.4,929,4.2 -2013,4,3,4,30,0,0,0,4.800000000000001,4.7,114.41,930,3.6 -2013,4,3,5,30,0,0,0,4.7,4.4,102.46000000000001,930,3.2 -2013,4,3,6,30,0,0,0,4.6000000000000005,4.2,89.54,930,2.8000000000000003 -2013,4,3,7,30,159,89,315,4.6000000000000005,4.3,77.27,931,2.5 -2013,4,3,8,30,132,132,0,4.4,4.5,64.69,931,2.3000000000000003 -2013,4,3,9,30,102,102,0,4.3,5.1000000000000005,52.45,932,2.2 -2013,4,3,10,30,187,182,7,4.1000000000000005,5.800000000000001,41.11,932,2.2 -2013,4,3,11,30,89,89,0,3.8000000000000003,6.4,31.830000000000002,932,2.3000000000000003 -2013,4,3,12,30,99,99,0,3.7,6.800000000000001,26.94,932,2.5 -2013,4,3,13,30,217,207,11,3.8000000000000003,7.1000000000000005,28.82,931,2.7 -2013,4,3,14,30,98,98,0,4.4,7.6000000000000005,36.42,931,2.6 -2013,4,3,15,30,177,174,5,4.800000000000001,8.1,47,930,2.4000000000000004 -2013,4,3,16,30,185,179,13,4.7,8.200000000000001,58.910000000000004,930,2.1 -2013,4,3,17,30,157,128,91,4.5,8,71.37,931,1.9000000000000001 -2013,4,3,18,30,20,20,0,3.6,6.1000000000000005,83.94,932,1.8 -2013,4,3,19,30,0,0,0,3.2,4.7,96.63,933,1.7000000000000002 -2013,4,3,20,30,0,0,0,2.9000000000000004,3.6,108.83,933,1.6 -2013,4,3,21,30,0,0,0,2.6,2.8000000000000003,120.3,934,1.5 -2013,4,3,22,30,0,0,0,2.5,2.3000000000000003,130.4,934,1.5 -2013,4,3,23,30,0,0,0,2.6,1.9000000000000001,138.07,933,1.4000000000000001 -2013,4,4,0,30,0,0,0,2.8000000000000003,1.7000000000000002,141.76,933,1.3 -2013,4,4,1,30,0,0,0,3,1.5,140.32,933,1.1 -2013,4,4,2,30,0,0,0,3.3000000000000003,1.4000000000000001,134.24,932,0.9 -2013,4,4,3,30,0,0,0,3.5,1.3,125.07000000000001,933,0.6000000000000001 -2013,4,4,4,30,0,0,0,3.6,1.1,114.11,933,0.30000000000000004 -2013,4,4,5,30,0,0,0,3.6,0.9,102.18,933,-0.1 -2013,4,4,6,30,0,0,0,3.8000000000000003,1.2000000000000002,89.31,934,-0.30000000000000004 -2013,4,4,7,30,35,35,0,4.3,2.7,77,934,-0.7000000000000001 -2013,4,4,8,30,124,124,0,4.4,5.2,64.42,935,-0.8 -2013,4,4,9,30,207,201,11,4.3,8,52.160000000000004,935,-0.6000000000000001 -2013,4,4,10,30,404,351,70,4.2,10.8,40.79,934,-0.30000000000000004 -2013,4,4,11,30,730,365,427,4.3,13.5,31.46,934,0.1 -2013,4,4,12,30,992,103,993,4.3,15.700000000000001,26.55,933,0.5 -2013,4,4,13,30,977,99,1000,4.2,17.5,28.48,932,0.6000000000000001 -2013,4,4,14,30,889,91,988,4.1000000000000005,18.6,36.17,931,0.5 -2013,4,4,15,30,738,83,957,4,19,46.81,930,0.2 -2013,4,4,16,30,535,73,891,3.7,18.5,58.75,930,-0.1 -2013,4,4,17,30,303,58,762,3.5,18,71.23,930,-0.30000000000000004 -2013,4,4,18,30,79,30,451,1.8,12.100000000000001,83.8,931,1.9000000000000001 -2013,4,4,19,30,0,0,0,1.7000000000000002,9.5,96.48,932,1.5 -2013,4,4,20,30,0,0,0,1.6,8.1,108.66,932,1.3 -2013,4,4,21,30,0,0,0,1.4000000000000001,6.800000000000001,120.09,933,1.3 -2013,4,4,22,30,0,0,0,1.3,5.7,130.15,933,1.3 -2013,4,4,23,30,0,0,0,1.2000000000000002,4.800000000000001,137.75,933,1.5 -2013,4,5,0,30,0,0,0,1.3,4.1000000000000005,141.39000000000001,933,1.8 -2013,4,5,1,30,0,0,0,1.3,3.5,139.94,933,2 -2013,4,5,2,30,0,0,0,1.3,2.9000000000000004,133.88,933,2.2 -2013,4,5,3,30,0,0,0,1.3,2.5,124.74000000000001,933,2.4000000000000004 -2013,4,5,4,30,0,0,0,1.3,2.1,113.82000000000001,933,2.1 -2013,4,5,5,30,0,0,0,1.3,1.9000000000000001,101.9,933,1.9000000000000001 -2013,4,5,6,30,0,0,0,2.1,3.7,89.08,934,3 -2013,4,5,7,30,198,53,636,2.7,7.2,76.74,934,3.1 -2013,4,5,8,30,368,115,579,2.9000000000000004,11.3,64.15,934,3.3000000000000003 -2013,4,5,9,30,548,184,590,3.5,15.5,51.88,933,3.3000000000000003 -2013,4,5,10,30,648,303,454,3.9000000000000004,19,40.47,933,3 -2013,4,5,11,30,762,359,471,4.2,21.6,31.1,932,2.5 -2013,4,5,12,30,869,352,576,4.6000000000000005,23.400000000000002,26.16,930,2.3000000000000003 -2013,4,5,13,30,862,322,612,5,24.5,28.16,929,2.3000000000000003 -2013,4,5,14,30,733,318,512,5.300000000000001,25,35.93,928,2.4000000000000004 -2013,4,5,15,30,569,278,424,5.5,24.8,46.63,927,2.4000000000000004 -2013,4,5,16,30,519,97,810,5.300000000000001,23.8,58.6,926,2.4000000000000004 -2013,4,5,17,30,293,73,677,5,23.1,71.09,926,2.9000000000000004 -2013,4,5,18,30,75,35,360,3.7,18.2,83.67,926,4.3 -2013,4,5,19,30,0,0,0,4,16.3,96.33,926,4.9 -2013,4,5,20,30,0,0,0,4.6000000000000005,15.4,108.49000000000001,927,5.5 -2013,4,5,21,30,0,0,0,4.9,14.600000000000001,119.88,926,5.9 -2013,4,5,22,30,0,0,0,5.2,13.9,129.89000000000001,926,6.1000000000000005 -2013,4,5,23,30,0,0,0,5.4,13.3,137.43,925,6.2 -2013,4,6,0,30,0,0,0,5.4,12.700000000000001,141.01,925,6.2 -2013,4,6,1,30,0,0,0,5.4,12.200000000000001,139.55,924,6.1000000000000005 -2013,4,6,2,30,0,0,0,5.5,11.700000000000001,133.52,924,5.9 -2013,4,6,3,30,0,0,0,5.5,11.100000000000001,124.42,923,5.7 -2013,4,6,4,30,0,0,0,5.5,10.4,113.52,923,5.5 -2013,4,6,5,30,0,0,0,5.5,9.8,101.63,923,5.4 -2013,4,6,6,30,13,11,87,5.9,10.4,88.85000000000001,923,5.5 -2013,4,6,7,30,196,56,599,7.1000000000000005,13.100000000000001,76.49,923,6 -2013,4,6,8,30,429,77,799,7.4,17.2,63.89,923,6.6000000000000005 -2013,4,6,9,30,647,90,897,6.6000000000000005,21.3,51.6,923,6.300000000000001 -2013,4,6,10,30,826,99,952,5.800000000000001,25,40.160000000000004,923,4.9 -2013,4,6,11,30,945,106,976,5.2,27.900000000000002,30.740000000000002,922,3.4000000000000004 -2013,4,6,12,30,965,189,862,4.7,29.700000000000003,25.78,922,2.2 -2013,4,6,13,30,793,386,461,4.2,30.400000000000002,27.830000000000002,921,1.2000000000000002 -2013,4,6,14,30,646,388,319,3.6,30.200000000000003,35.69,920,0.4 -2013,4,6,15,30,588,256,482,2.7,29.5,46.44,920,-0.1 -2013,4,6,16,30,462,134,626,1.8,27.5,58.44,920,1.1 -2013,4,6,17,30,246,99,448,1.4000000000000001,26,70.95,920,7.800000000000001 -2013,4,6,18,30,60,37,205,1.8,21.200000000000003,83.53,921,7.1000000000000005 -2013,4,6,19,30,0,0,0,1.8,18.7,96.18,922,7 -2013,4,6,20,30,0,0,0,1.6,16.7,108.32000000000001,922,7.300000000000001 -2013,4,6,21,30,0,0,0,1.4000000000000001,15.200000000000001,119.68,923,7.6000000000000005 -2013,4,6,22,30,0,0,0,1.5,14.100000000000001,129.63,923,8.1 -2013,4,6,23,30,0,0,0,1.9000000000000001,13.600000000000001,137.11,923,8.5 -2013,4,7,0,30,0,0,0,2.5,13.3,140.64000000000001,923,8.9 -2013,4,7,1,30,0,0,0,3,13.100000000000001,139.17000000000002,922,9.200000000000001 -2013,4,7,2,30,0,0,0,3.3000000000000003,12.9,133.17000000000002,922,9.700000000000001 -2013,4,7,3,30,0,0,0,3.6,12.600000000000001,124.09,921,10.4 -2013,4,7,4,30,0,0,0,3.8000000000000003,12,113.23,921,11.100000000000001 -2013,4,7,5,30,0,0,0,4,11.600000000000001,101.36,922,11.600000000000001 -2013,4,7,6,30,6,6,0,4.5,12.5,88.62,922,11.700000000000001 -2013,4,7,7,30,56,56,0,5.2,15.200000000000001,76.23,922,11.8 -2013,4,7,8,30,239,191,108,5.7,18.900000000000002,63.63,922,12 -2013,4,7,9,30,404,294,175,6,22.200000000000003,51.32,922,11.5 -2013,4,7,10,30,677,294,499,6.1000000000000005,24.900000000000002,39.85,922,10.100000000000001 -2013,4,7,11,30,828,330,577,6.1000000000000005,27.200000000000003,30.38,921,8 -2013,4,7,12,30,985,114,964,6.1000000000000005,29.200000000000003,25.400000000000002,920,6.2 -2013,4,7,13,30,966,108,968,6.2,30.6,27.51,919,4.5 -2013,4,7,14,30,880,103,954,6.2,31.200000000000003,35.45,918,3.2 -2013,4,7,15,30,727,99,908,6.1000000000000005,31.1,46.26,917,2.1 -2013,4,7,16,30,361,229,251,5.5,30.1,58.29,917,1.4000000000000001 -2013,4,7,17,30,297,71,688,4.9,29.3,70.81,917,2.3000000000000003 -2013,4,7,18,30,78,37,360,3.4000000000000004,23.200000000000003,83.39,917,5.1000000000000005 -2013,4,7,19,30,0,0,0,4.1000000000000005,21.200000000000003,96.03,918,6.7 -2013,4,7,20,30,0,0,0,4.7,20.3,108.14,918,8.700000000000001 -2013,4,7,21,30,0,0,0,4.800000000000001,19.200000000000003,119.47,918,10.700000000000001 -2013,4,7,22,30,0,0,0,4.7,18.1,129.37,918,12.200000000000001 -2013,4,7,23,30,0,0,0,4.7,17.2,136.79,918,13 -2013,4,8,0,30,0,0,0,4.800000000000001,16.400000000000002,140.28,918,13.4 -2013,4,8,1,30,0,0,0,5,15.700000000000001,138.79,918,13.8 -2013,4,8,2,30,0,0,0,5.1000000000000005,15.100000000000001,132.81,918,14.3 -2013,4,8,3,30,0,0,0,4.9,14.600000000000001,123.77,917,14.600000000000001 -2013,4,8,4,30,0,0,0,4.7,14.3,112.94,917,14.3 -2013,4,8,5,30,0,0,0,4.4,14.3,101.08,917,14.3 -2013,4,8,6,30,15,13,56,4.9,15,88.39,918,14.9 -2013,4,8,7,30,194,70,511,5.9,17.2,75.98,918,14.9 -2013,4,8,8,30,351,154,441,6.4,20.400000000000002,63.370000000000005,918,14.9 -2013,4,8,9,30,557,196,574,6.1000000000000005,23.700000000000003,51.04,918,14.100000000000001 -2013,4,8,10,30,813,110,912,5.7,26.8,39.54,917,12.3 -2013,4,8,11,30,930,111,946,5.4,29.400000000000002,30.03,916,9.8 -2013,4,8,12,30,981,110,961,5.300000000000001,31,25.02,915,7.800000000000001 -2013,4,8,13,30,965,105,966,5.5,31.900000000000002,27.19,914,6.4 -2013,4,8,14,30,876,99,951,5.800000000000001,32.1,35.21,913,5.4 -2013,4,8,15,30,724,97,903,6,31.700000000000003,46.08,913,4.800000000000001 -2013,4,8,16,30,524,87,828,5.9,30.5,58.14,913,4.800000000000001 -2013,4,8,17,30,297,70,687,5.800000000000001,29.700000000000003,70.67,913,5.6000000000000005 -2013,4,8,18,30,79,37,366,5.6000000000000005,25,83.26,913,7.300000000000001 -2013,4,8,19,30,0,0,0,6.1000000000000005,22.6,95.88,914,9 -2013,4,8,20,30,0,0,0,6.6000000000000005,21.1,107.97,914,10.8 -2013,4,8,21,30,0,0,0,7,19.8,119.26,914,12.9 -2013,4,8,22,30,0,0,0,7.1000000000000005,18.8,129.11,914,15 -2013,4,8,23,30,0,0,0,6.9,17.8,136.47,914,16.3 -2013,4,9,0,30,0,0,0,7.1000000000000005,17.400000000000002,139.91,914,17 -2013,4,9,1,30,0,0,0,7.6000000000000005,17.3,138.41,914,17 -2013,4,9,2,30,0,0,0,7.800000000000001,17.3,132.46,914,16.900000000000002 -2013,4,9,3,30,0,0,0,7.7,17.3,123.45,914,16.7 -2013,4,9,4,30,0,0,0,7.2,17.1,112.64,914,16.7 -2013,4,9,5,30,0,0,0,6.6000000000000005,16.7,100.82000000000001,914,16.7 -2013,4,9,6,30,17,15,77,6.5,17.2,88.15,915,16.7 -2013,4,9,7,30,201,68,537,7,19.1,75.73,915,16.8 -2013,4,9,8,30,431,89,757,7.5,22.1,63.11,915,16.3 -2013,4,9,9,30,645,99,862,7.5,25.200000000000003,50.77,915,14.200000000000001 -2013,4,9,10,30,819,108,918,7,27.700000000000003,39.24,915,11.3 -2013,4,9,11,30,936,112,948,6.2,29.5,29.68,915,8.9 -2013,4,9,12,30,989,111,966,5.4,30.8,24.650000000000002,914,7.1000000000000005 -2013,4,9,13,30,968,110,961,4.7,31.6,26.87,914,5.7 -2013,4,9,14,30,880,108,943,4,31.8,34.980000000000004,913,4.5 -2013,4,9,15,30,727,104,895,3.3000000000000003,31.3,45.9,913,3.7 -2013,4,9,16,30,527,93,817,2.7,30,57.99,913,3.4000000000000004 -2013,4,9,17,30,297,75,666,2.3000000000000003,29.1,70.53,913,4.2 -2013,4,9,18,30,56,41,118,1.2000000000000002,23.1,83.12,914,9.1 -2013,4,9,19,30,0,0,0,1.2000000000000002,20.400000000000002,95.73,915,8.200000000000001 -2013,4,9,20,30,0,0,0,1.9000000000000001,18.6,107.8,916,8.6 -2013,4,9,21,30,0,0,0,3.9000000000000004,16.7,119.05,918,8.9 -2013,4,9,22,30,0,0,0,6.5,14,128.85,920,8.700000000000001 -2013,4,9,23,30,0,0,0,7.800000000000001,10.5,136.16,922,7 -2013,4,10,0,30,0,0,0,7.9,7.4,139.54,923,4.3 -2013,4,10,1,30,0,0,0,7.9,5.2,138.04,924,1.9000000000000001 -2013,4,10,2,30,0,0,0,7.7,3.5,132.11,925,0.8 -2013,4,10,3,30,0,0,0,7.2,2.1,123.14,925,0.4 -2013,4,10,4,30,0,0,0,6.5,1.3,112.36,926,-0.1 -2013,4,10,5,30,0,0,0,6.1000000000000005,0.8,100.55,927,-0.6000000000000001 -2013,4,10,6,30,4,4,0,6,0.4,87.89,928,-1.1 -2013,4,10,7,30,99,92,30,6.2,0.6000000000000001,75.48,928,-1.7000000000000002 -2013,4,10,8,30,135,135,0,6.2,1.6,62.86,929,-2.2 -2013,4,10,9,30,479,280,312,5.9,3.5,50.5,929,-2.5 -2013,4,10,10,30,601,369,299,5.4,6.1000000000000005,38.94,928,-2.4000000000000004 -2013,4,10,11,30,624,448,202,5,8.6,29.330000000000002,927,-2.1 -2013,4,10,12,30,777,409,404,4.7,10.8,24.27,927,-1.8 -2013,4,10,13,30,992,114,982,4.5,12.5,26.560000000000002,926,-1.7000000000000002 -2013,4,10,14,30,901,108,966,4.4,13.600000000000001,34.75,925,-1.9000000000000001 -2013,4,10,15,30,748,99,930,4.3,13.9,45.730000000000004,925,-2.4000000000000004 -2013,4,10,16,30,545,86,862,4.1000000000000005,13.5,57.84,925,-2.9000000000000004 -2013,4,10,17,30,313,69,728,3.9000000000000004,13.100000000000001,70.39,925,-3.2 -2013,4,10,18,30,88,38,413,2,9,82.98,925,-1.5 -2013,4,10,19,30,0,0,0,1.8,6.7,95.58,926,-0.5 -2013,4,10,20,30,0,0,0,2,5.7,107.62,927,-1.2000000000000002 -2013,4,10,21,30,0,0,0,2,4.800000000000001,118.84,927,-1.8 -2013,4,10,22,30,0,0,0,1.8,4.1000000000000005,128.59,927,-2 -2013,4,10,23,30,0,0,0,1.8,3.6,135.84,927,-2.1 -2013,4,11,0,30,0,0,0,1.6,3.3000000000000003,139.18,927,-2.3000000000000003 -2013,4,11,1,30,0,0,0,1.3,2.8000000000000003,137.67000000000002,927,-2.3000000000000003 -2013,4,11,2,30,0,0,0,1,2.2,131.76,926,-2.1 -2013,4,11,3,30,0,0,0,0.9,1.4000000000000001,122.82000000000001,926,-2.4000000000000004 -2013,4,11,4,30,0,0,0,1,0.6000000000000001,112.07000000000001,926,-2.9000000000000004 -2013,4,11,5,30,0,0,0,1.1,0.30000000000000004,100.28,925,-3.4000000000000004 -2013,4,11,6,30,24,17,163,1.7000000000000002,1.3,87.66,926,-3.5 -2013,4,11,7,30,222,59,640,1.9000000000000001,3.5,75.23,926,-5.300000000000001 -2013,4,11,8,30,457,80,820,1.2000000000000002,5.9,62.61,926,-6.7 -2013,4,11,9,30,674,93,908,0.7000000000000001,8.5,50.24,926,-6.4 -2013,4,11,10,30,849,102,956,1.1,11.3,38.64,925,-5.7 -2013,4,11,11,30,962,108,977,1.9000000000000001,14,28.98,924,-4.800000000000001 -2013,4,11,12,30,1014,104,995,2.4000000000000004,16.400000000000002,23.900000000000002,923,-3.9000000000000004 -2013,4,11,13,30,992,103,992,2.5,18.400000000000002,26.25,922,-3.2 -2013,4,11,14,30,901,99,973,2.4000000000000004,19.700000000000003,34.52,920,-2.7 -2013,4,11,15,30,748,93,935,2.3000000000000003,20.200000000000003,45.56,920,-2.6 -2013,4,11,16,30,546,83,866,1.9000000000000001,20,57.7,920,-2.6 -2013,4,11,17,30,315,66,737,1.6,19.700000000000003,70.26,920,-2.5 -2013,4,11,18,30,91,36,437,0.5,15.8,82.84,920,2.4000000000000004 -2013,4,11,19,30,0,0,0,1,13.600000000000001,95.43,921,-0.4 -2013,4,11,20,30,0,0,0,1.3,11.600000000000001,107.45,921,-0.1 -2013,4,11,21,30,0,0,0,1.7000000000000002,10,118.63,922,0.1 -2013,4,11,22,30,0,0,0,2.2,9.200000000000001,128.33,922,-0.30000000000000004 -2013,4,11,23,30,0,0,0,2.9000000000000004,8.6,135.52,923,-0.4 -2013,4,12,0,30,0,0,0,3.1,7.9,138.82,923,-0.2 -2013,4,12,1,30,0,0,0,3.1,7.1000000000000005,137.3,923,0.2 -2013,4,12,2,30,0,0,0,2.7,6.300000000000001,131.41,923,0.6000000000000001 -2013,4,12,3,30,0,0,0,2.1,5.6000000000000005,122.51,923,0.9 -2013,4,12,4,30,0,0,0,1.7000000000000002,5,111.79,924,1.2000000000000002 -2013,4,12,5,30,0,0,0,1.4000000000000001,4.800000000000001,100.02,924,1.4000000000000001 -2013,4,12,6,30,27,18,202,1.9000000000000001,6.6000000000000005,87.43,925,1.5 -2013,4,12,7,30,227,57,658,2.3000000000000003,10.100000000000001,74.99,926,1.8 -2013,4,12,8,30,459,78,821,2.8000000000000003,14.4,62.36,926,2.4000000000000004 -2013,4,12,9,30,673,93,902,3.5,18.900000000000002,49.97,926,2.4000000000000004 -2013,4,12,10,30,843,104,942,3.7,22.1,38.35,926,1 -2013,4,12,11,30,957,111,964,4.1000000000000005,24,28.64,925,0.2 -2013,4,12,12,30,1003,113,970,4.5,25.3,23.53,924,0 -2013,4,12,13,30,980,117,960,4.7,26,25.94,923,0 -2013,4,12,14,30,801,276,635,4.7,26.1,34.300000000000004,922,0.30000000000000004 -2013,4,12,15,30,730,115,876,4.6000000000000005,25.8,45.39,921,0.6000000000000001 -2013,4,12,16,30,527,106,785,4.2,25,57.56,921,1.1 -2013,4,12,17,30,300,86,628,3.9000000000000004,24.5,70.12,921,2.2 -2013,4,12,18,30,84,44,313,3.1,19.700000000000003,82.71000000000001,921,4.3 -2013,4,12,19,30,0,0,0,3.9000000000000004,17.900000000000002,95.27,922,4.2 -2013,4,12,20,30,0,0,0,4.800000000000001,17.2,107.27,922,4.4 -2013,4,12,21,30,0,0,0,5.1000000000000005,16.3,118.42,923,4.9 -2013,4,12,22,30,0,0,0,4.9,15.3,128.08,923,5.2 -2013,4,12,23,30,0,0,0,4.5,14.200000000000001,135.21,924,5.5 -2013,4,13,0,30,0,0,0,4.1000000000000005,13.3,138.46,924,5.7 -2013,4,13,1,30,0,0,0,4,12.5,136.93,924,5.9 -2013,4,13,2,30,0,0,0,3.7,11.700000000000001,131.07,924,6 -2013,4,13,3,30,0,0,0,3.2,11.100000000000001,122.2,924,6.1000000000000005 -2013,4,13,4,30,0,0,0,2.6,10.4,111.5,924,6.2 -2013,4,13,5,30,0,0,0,2,9.9,99.76,924,6.4 -2013,4,13,6,30,17,17,0,2.3000000000000003,10.700000000000001,87.2,924,6.800000000000001 -2013,4,13,7,30,187,78,415,3.3000000000000003,13,74.75,925,7.5 -2013,4,13,8,30,392,132,555,4,15.8,62.120000000000005,925,8.3 -2013,4,13,9,30,582,194,600,4.7,19,49.72,925,8 -2013,4,13,10,30,822,127,882,5.2,21.900000000000002,38.06,924,6.6000000000000005 -2013,4,13,11,30,821,369,514,5.5,24,28.3,923,5.4 -2013,4,13,12,30,986,125,937,5.5,25.3,23.16,922,5 -2013,4,13,13,30,962,128,925,5.4,26,25.63,921,4.9 -2013,4,13,14,30,867,130,890,5.2,26.1,34.08,921,5 -2013,4,13,15,30,687,166,739,5.1000000000000005,25.6,45.22,920,5 -2013,4,13,16,30,427,202,417,4.9,24.5,57.410000000000004,919,5.1000000000000005 -2013,4,13,17,30,290,101,551,4.800000000000001,23.8,69.99,919,5.4 -2013,4,13,18,30,48,44,32,3.5,20.3,82.57000000000001,920,6.300000000000001 -2013,4,13,19,30,0,0,0,3.8000000000000003,18.8,95.12,920,6.7 -2013,4,13,20,30,0,0,0,4.2,17.7,107.10000000000001,920,6.7 -2013,4,13,21,30,0,0,0,4.1000000000000005,16.3,118.21000000000001,920,7 -2013,4,13,22,30,0,0,0,4,15.200000000000001,127.82000000000001,920,7.300000000000001 -2013,4,13,23,30,0,0,0,4,14.200000000000001,134.9,919,7.6000000000000005 -2013,4,14,0,30,0,0,0,4.1000000000000005,13.5,138.1,919,7.9 -2013,4,14,1,30,0,0,0,4.3,12.8,136.57,918,8 -2013,4,14,2,30,0,0,0,4.4,12.3,130.73,918,8.200000000000001 -2013,4,14,3,30,0,0,0,4.5,11.8,121.89,917,8.3 -2013,4,14,4,30,0,0,0,4.6000000000000005,11.4,111.22,917,8.5 -2013,4,14,5,30,0,0,0,4.800000000000001,11.200000000000001,99.5,917,8.9 -2013,4,14,6,30,30,21,157,5.5,12.3,86.97,917,9.5 -2013,4,14,7,30,229,64,617,6.6000000000000005,15.700000000000001,74.52,917,10.4 -2013,4,14,8,30,464,84,805,6.9,20.400000000000002,61.88,917,10.700000000000001 -2013,4,14,9,30,677,98,892,6.800000000000001,25,49.46,917,8.6 -2013,4,14,10,30,853,107,944,6.9,28.200000000000003,37.77,916,2.8000000000000003 -2013,4,14,11,30,969,113,969,6.7,29.900000000000002,27.97,916,-0.8 -2013,4,14,12,30,1022,114,985,6.5,30.900000000000002,22.8,915,-2.2 -2013,4,14,13,30,999,113,981,6.300000000000001,31.400000000000002,25.330000000000002,914,-2.7 -2013,4,14,14,30,908,108,963,6.1000000000000005,31.6,33.86,913,-2.9000000000000004 -2013,4,14,15,30,754,101,923,5.7,31.200000000000003,45.050000000000004,913,-2.8000000000000003 -2013,4,14,16,30,552,89,856,4.800000000000001,30.200000000000003,57.27,913,-2.6 -2013,4,14,17,30,321,71,725,4.2,29.5,69.86,913,-0.9 -2013,4,14,18,30,94,40,414,2.4000000000000004,22.900000000000002,82.44,914,2.6 -2013,4,14,19,30,0,0,0,2.6,20.5,94.97,914,1.6 -2013,4,14,20,30,0,0,0,3,19.8,106.92,915,0.7000000000000001 -2013,4,14,21,30,0,0,0,3.6,19.200000000000003,118,916,0 -2013,4,14,22,30,0,0,0,4.2,18.8,127.56,916,-0.9 -2013,4,14,23,30,0,0,0,4.800000000000001,18.2,134.58,916,-1.6 -2013,4,15,0,30,0,0,0,4.9,17.2,137.75,916,-2 -2013,4,15,1,30,0,0,0,4.7,15.9,136.2,916,-1.9000000000000001 -2013,4,15,2,30,0,0,0,4.5,14.9,130.39000000000001,916,-1.6 -2013,4,15,3,30,0,0,0,4.2,14.100000000000001,121.58,917,-1.2000000000000002 -2013,4,15,4,30,0,0,0,4,13.5,110.95,917,-0.7000000000000001 -2013,4,15,5,30,0,0,0,3.8000000000000003,13,99.25,918,-0.2 -2013,4,15,6,30,34,21,228,3.9000000000000004,14.100000000000001,86.74,918,0.6000000000000001 -2013,4,15,7,30,237,60,657,3.9000000000000004,17.3,74.28,919,1.4000000000000001 -2013,4,15,8,30,470,80,822,3.8000000000000003,21.200000000000003,61.64,919,2.2 -2013,4,15,9,30,684,92,906,3.7,24.900000000000002,49.21,920,1.6 -2013,4,15,10,30,856,100,953,3.5,27.8,37.49,920,0.6000000000000001 -2013,4,15,11,30,971,105,977,3.4000000000000004,30.200000000000003,27.64,919,0.30000000000000004 -2013,4,15,12,30,979,217,824,3.4000000000000004,32.1,22.44,919,0.30000000000000004 -2013,4,15,13,30,896,324,632,3.7,33.300000000000004,25.03,918,0.4 -2013,4,15,14,30,902,102,960,4.3,33.7,33.65,917,0.4 -2013,4,15,15,30,749,97,921,4.7,33.5,44.89,916,0.2 -2013,4,15,16,30,512,100,759,4.5,32.4,57.13,916,-0.2 -2013,4,15,17,30,321,69,728,4.1000000000000005,31.6,69.73,916,1 -2013,4,15,18,30,79,42,275,2.1,24.700000000000003,82.3,917,4.6000000000000005 -2013,4,15,19,30,0,0,0,2.4000000000000004,22.1,94.82000000000001,917,4.2 -2013,4,15,20,30,0,0,0,3.3000000000000003,21.6,106.75,918,4.5 -2013,4,15,21,30,0,0,0,4.1000000000000005,21.200000000000003,117.79,919,5.1000000000000005 -2013,4,15,22,30,0,0,0,4.6000000000000005,20.5,127.3,919,5.4 -2013,4,15,23,30,0,0,0,4.3,19.400000000000002,134.27,919,5.6000000000000005 -2013,4,16,0,30,0,0,0,3.7,18.1,137.4,919,6 -2013,4,16,1,30,0,0,0,3.3000000000000003,17.1,135.85,919,6.6000000000000005 -2013,4,16,2,30,0,0,0,3.1,16.5,130.05,920,7.2 -2013,4,16,3,30,0,0,0,2.9000000000000004,16,121.28,920,7.9 -2013,4,16,4,30,0,0,0,2.9000000000000004,15.600000000000001,110.67,921,8.9 -2013,4,16,5,30,0,0,0,3,15.4,98.99000000000001,921,10.200000000000001 -2013,4,16,6,30,24,21,41,3.6,16.5,86.51,922,11.700000000000001 -2013,4,16,7,30,210,70,511,4.5,19.1,74.05,923,13.3 -2013,4,16,8,30,389,157,483,4.5,22.1,61.410000000000004,923,14.700000000000001 -2013,4,16,9,30,563,226,513,3.7,25,48.96,923,14.600000000000001 -2013,4,16,10,30,830,121,890,2.9000000000000004,27.6,37.21,923,13.8 -2013,4,16,11,30,940,127,915,2.8000000000000003,29.700000000000003,27.310000000000002,923,13 -2013,4,16,12,30,983,132,918,3.2,31.200000000000003,22.080000000000002,922,12.600000000000001 -2013,4,16,13,30,955,132,907,3.9000000000000004,32.300000000000004,24.740000000000002,921,12.5 -2013,4,16,14,30,862,132,876,4.6000000000000005,32.6,33.44,920,12.8 -2013,4,16,15,30,703,142,790,5.1000000000000005,32.4,44.730000000000004,919,13.3 -2013,4,16,16,30,380,237,264,5.4,31.5,56.99,919,13.8 -2013,4,16,17,30,257,113,414,5.5,30.900000000000002,69.59,919,14.3 -2013,4,16,18,30,71,46,186,5.300000000000001,27.6,82.17,920,14.600000000000001 -2013,4,16,19,30,0,0,0,5.9,25.700000000000003,94.67,920,14.700000000000001 -2013,4,16,20,30,0,0,0,6.2,24.3,106.57000000000001,921,14.8 -2013,4,16,21,30,0,0,0,6.4,22.900000000000002,117.58,921,15.200000000000001 -2013,4,16,22,30,0,0,0,6.4,21.6,127.05,921,15.9 -2013,4,16,23,30,0,0,0,6.300000000000001,20.3,133.96,921,16.7 -2013,4,17,0,30,0,0,0,6.2,19.3,137.05,921,17.3 -2013,4,17,1,30,0,0,0,6,18.8,135.49,921,17.8 -2013,4,17,2,30,0,0,0,5.7,18.6,129.72,920,18.1 -2013,4,17,3,30,0,0,0,5.300000000000001,18.7,120.98,920,18.3 -2013,4,17,4,30,0,0,0,4.9,18.8,110.4,920,18.400000000000002 -2013,4,17,5,30,0,0,0,4.7,19,98.74000000000001,920,18.6 -2013,4,17,6,30,25,22,38,5,19.900000000000002,86.29,920,18.8 -2013,4,17,7,30,200,124,272,6,21.6,73.82000000000001,920,19.1 -2013,4,17,8,30,408,199,433,7.1000000000000005,23.8,61.18,920,19.200000000000003 -2013,4,17,9,30,607,239,558,7.7,26,48.72,920,18.8 -2013,4,17,10,30,774,248,659,7.7,27.900000000000002,36.94,919,18 -2013,4,17,11,30,890,236,735,7.5,29.6,26.990000000000002,918,17 -2013,4,17,12,30,945,215,785,7.2,31,21.73,917,16 -2013,4,17,13,30,928,192,809,7,32.1,24.45,916,14.9 -2013,4,17,14,30,847,171,807,6.800000000000001,32.6,33.230000000000004,915,13.700000000000001 -2013,4,17,15,30,552,324,320,6.6000000000000005,32.5,44.57,914,12.4 -2013,4,17,16,30,462,170,535,6.1000000000000005,31.6,56.86,913,11.200000000000001 -2013,4,17,17,30,243,126,332,5.800000000000001,30.900000000000002,69.46000000000001,913,11.3 -2013,4,17,18,30,91,47,313,5.9,26.5,82.04,913,13.100000000000001 -2013,4,17,19,30,0,0,0,6.4,24.3,94.52,913,14.9 -2013,4,17,20,30,0,0,0,6.4,23,106.4,914,16.3 -2013,4,17,21,30,0,0,0,6,21.900000000000002,117.37,915,17.3 -2013,4,17,22,30,0,0,0,4.9,21,126.79,916,18 -2013,4,17,23,30,0,0,0,3.8000000000000003,20.400000000000002,133.66,917,17.8 -2013,4,18,0,30,0,0,0,3.7,19.700000000000003,136.70000000000002,918,16.1 -2013,4,18,1,30,0,0,0,4.7,18.1,135.14000000000001,920,11.600000000000001 -2013,4,18,2,30,0,0,0,6.2,15.200000000000001,129.39000000000001,921,4.800000000000001 -2013,4,18,3,30,0,0,0,7.300000000000001,11.5,120.68,923,-0.2 -2013,4,18,4,30,0,0,0,7.800000000000001,8.1,110.13,924,-0.2 -2013,4,18,5,30,0,0,0,7.800000000000001,5.7,98.5,926,0 -2013,4,18,6,30,34,23,151,7.9,4.9,86.05,927,-1 -2013,4,18,7,30,189,95,336,7.9,5.6000000000000005,73.59,928,-2.6 -2013,4,18,8,30,494,79,856,7.7,7.2,60.95,928,-4.1000000000000005 -2013,4,18,9,30,711,88,941,7.300000000000001,9.1,48.480000000000004,928,-5.2 -2013,4,18,10,30,891,92,996,7,11.200000000000001,36.67,928,-6 -2013,4,18,11,30,1007,94,1022,6.800000000000001,13,26.67,928,-6.6000000000000005 -2013,4,18,12,30,1055,93,1033,6.800000000000001,14.4,21.37,928,-7.1000000000000005 -2013,4,18,13,30,1032,91,1031,6.7,15.4,24.16,928,-7.6000000000000005 -2013,4,18,14,30,939,87,1016,6.6000000000000005,15.700000000000001,33.03,928,-8.200000000000001 -2013,4,18,15,30,782,86,974,6.4,15.600000000000001,44.410000000000004,928,-8.8 -2013,4,18,16,30,578,77,913,6.2,14.8,56.72,928,-9.5 -2013,4,18,17,30,343,63,795,6,14.200000000000001,69.33,928,-10 -2013,4,18,18,30,112,37,527,4.6000000000000005,11.100000000000001,81.89,930,-10.100000000000001 -2013,4,18,19,30,0,0,0,3.6,9,94.37,931,-9.1 -2013,4,18,20,30,0,0,0,3.1,7.5,106.22,932,-8.200000000000001 -2013,4,18,21,30,0,0,0,2.8000000000000003,6.300000000000001,117.16,933,-7.5 -2013,4,18,22,30,0,0,0,2.7,5.4,126.53,933,-7.1000000000000005 -2013,4,18,23,30,0,0,0,2.7,4.6000000000000005,133.35,934,-7.1000000000000005 -2013,4,19,0,30,0,0,0,2.7,3.9000000000000004,136.36,934,-7.300000000000001 -2013,4,19,1,30,0,0,0,2.6,3.1,134.79,934,-7.6000000000000005 -2013,4,19,2,30,0,0,0,2.3000000000000003,2.4000000000000004,129.06,934,-7.9 -2013,4,19,3,30,0,0,0,2,1.6,120.38,935,-8.1 -2013,4,19,4,30,0,0,0,1.8,0.9,109.86,935,-8.200000000000001 -2013,4,19,5,30,0,0,0,2,0.8,98.25,936,-8.4 -2013,4,19,6,30,49,25,324,2.8000000000000003,2.5,85.82000000000001,937,-8.700000000000001 -2013,4,19,7,30,264,63,706,3.6,5.6000000000000005,73.37,937,-9.600000000000001 -2013,4,19,8,30,502,86,850,3.7,8.8,60.72,938,-10 -2013,4,19,9,30,718,101,926,3.4000000000000004,11.5,48.24,937,-9.8 -2013,4,19,10,30,892,110,972,3.2,13.8,36.410000000000004,937,-9.5 -2013,4,19,11,30,1008,114,998,2.9000000000000004,15.8,26.36,936,-9.5 -2013,4,19,12,30,1057,113,1011,2.6,17.2,21.03,935,-9.9 -2013,4,19,13,30,1033,109,1011,2.3000000000000003,18.1,23.88,934,-10.3 -2013,4,19,14,30,940,105,994,2.3000000000000003,18.7,32.82,933,-10.600000000000001 -2013,4,19,15,30,783,98,957,2.2,18.8,44.25,932,-11 -2013,4,19,16,30,578,86,893,2.1,18.400000000000002,56.58,932,-11.3 -2013,4,19,17,30,344,69,775,2.1,18.1,69.2,931,-11.600000000000001 -2013,4,19,18,30,113,40,507,1.1,13.200000000000001,81.76,931,-3.6 -2013,4,19,19,30,0,0,0,1.4000000000000001,10.3,94.22,931,-4.2 -2013,4,19,20,30,0,0,0,2,9.4,106.05,931,-5.5 -2013,4,19,21,30,0,0,0,3.1,9.200000000000001,116.95,931,-6.800000000000001 -2013,4,19,22,30,0,0,0,4.1000000000000005,8.9,126.28,931,-7.300000000000001 -2013,4,19,23,30,0,0,0,4.7,8.200000000000001,133.05,931,-6.7 -2013,4,20,0,30,0,0,0,4.9,7.5,136.02,930,-6.2 -2013,4,20,1,30,0,0,0,4.800000000000001,6.800000000000001,134.45,930,-5.9 -2013,4,20,2,30,0,0,0,4.4,5.9,128.74,930,-5.6000000000000005 -2013,4,20,3,30,0,0,0,4,5.300000000000001,120.09,929,-5.1000000000000005 -2013,4,20,4,30,0,0,0,4.1000000000000005,4.9,109.60000000000001,929,-4.6000000000000005 -2013,4,20,5,30,0,0,0,4.3,4.800000000000001,98.01,930,-4 -2013,4,20,6,30,50,27,294,4.7,5.800000000000001,85.61,930,-3.4000000000000004 -2013,4,20,7,30,263,64,686,5.9,8.8,73.15,930,-3.1 -2013,4,20,8,30,498,84,842,7.300000000000001,12.9,60.51,930,-3.7 -2013,4,20,9,30,714,97,921,7.9,16.400000000000002,48.01,930,-4.4 -2013,4,20,10,30,880,106,959,7.800000000000001,19.200000000000003,36.15,929,-4.7 -2013,4,20,11,30,994,111,983,7.6000000000000005,21.3,26.05,928,-4.6000000000000005 -2013,4,20,12,30,1041,112,993,7.4,22.900000000000002,20.68,927,-4.6000000000000005 -2013,4,20,13,30,1017,113,986,7.2,23.900000000000002,23.6,926,-4.6000000000000005 -2013,4,20,14,30,923,110,965,7.1000000000000005,24.3,32.62,925,-4.7 -2013,4,20,15,30,764,105,918,6.800000000000001,24.1,44.1,924,-4.7 -2013,4,20,16,30,561,95,844,6.4,23.3,56.45,924,-4.7 -2013,4,20,17,30,328,78,698,6.1000000000000005,22.700000000000003,69.07000000000001,924,-4.4 -2013,4,20,18,30,103,47,386,5.2,18.8,81.63,924,-3.6 -2013,4,20,19,30,0,0,0,5.1000000000000005,16.3,94.07000000000001,925,-2.7 -2013,4,20,20,30,0,0,0,5,14.700000000000001,105.88,926,-1.9000000000000001 -2013,4,20,21,30,0,0,0,4.9,13.200000000000001,116.74000000000001,926,-1.2000000000000002 -2013,4,20,22,30,0,0,0,5.1000000000000005,12,126.02,926,-1 -2013,4,20,23,30,0,0,0,5,11,132.74,926,-0.9 -2013,4,21,0,30,0,0,0,4.800000000000001,10.100000000000001,135.68,926,-0.7000000000000001 -2013,4,21,1,30,0,0,0,4.6000000000000005,9.200000000000001,134.1,926,-0.5 -2013,4,21,2,30,0,0,0,4.1000000000000005,8.4,128.42000000000002,926,0.30000000000000004 -2013,4,21,3,30,0,0,0,3.6,7.5,119.8,926,1.2000000000000002 -2013,4,21,4,30,0,0,0,3.2,6.9,109.34,927,2.1 -2013,4,21,5,30,0,0,0,3.3000000000000003,6.6000000000000005,97.77,927,2.9000000000000004 -2013,4,21,6,30,49,29,247,4.1000000000000005,7.9,85.39,928,3.8000000000000003 -2013,4,21,7,30,256,72,626,5,10.700000000000001,72.94,929,5 -2013,4,21,8,30,486,96,786,5.2,14,60.29,929,6.1000000000000005 -2013,4,21,9,30,697,111,873,4.7,17.5,47.78,930,6.1000000000000005 -2013,4,21,10,30,864,120,918,4.1000000000000005,20.700000000000003,35.89,929,5.7 -2013,4,21,11,30,976,125,944,3.8000000000000003,23.3,25.740000000000002,929,5 -2013,4,21,12,30,1021,126,954,3.7,25.200000000000003,20.34,928,4.3 -2013,4,21,13,30,998,124,952,3.7,26.400000000000002,23.32,927,3.6 -2013,4,21,14,30,907,118,935,3.7,27.1,32.43,926,2.8000000000000003 -2013,4,21,15,30,756,107,901,3.8000000000000003,27.200000000000003,43.95,926,1.9000000000000001 -2013,4,21,16,30,559,94,839,3.8000000000000003,26.6,56.32,925,1 -2013,4,21,17,30,332,75,716,3.9000000000000004,26.200000000000003,68.95,925,0.8 -2013,4,21,18,30,109,43,444,3.5,21,81.5,926,3.7 -2013,4,21,19,30,0,0,0,4.3,18.400000000000002,93.92,926,5.1000000000000005 -2013,4,21,20,30,0,0,0,4.9,16.900000000000002,105.7,927,6.300000000000001 -2013,4,21,21,30,0,0,0,5.2,15.700000000000001,116.53,928,7.2 -2013,4,21,22,30,0,0,0,5.300000000000001,14.700000000000001,125.77,928,7.6000000000000005 -2013,4,21,23,30,0,0,0,5.2,13.8,132.44,927,8 -2013,4,22,0,30,0,0,0,5.1000000000000005,13,135.35,927,8.200000000000001 -2013,4,22,1,30,0,0,0,5.2,12.600000000000001,133.77,927,8.3 -2013,4,22,2,30,0,0,0,5.2,12.3,128.11,927,8.3 -2013,4,22,3,30,0,0,0,4.800000000000001,12,119.52,927,8.4 -2013,4,22,4,30,0,0,0,4.6000000000000005,11.600000000000001,109.09,927,8.9 -2013,4,22,5,30,0,0,0,4.7,11.5,97.54,927,9.9 -2013,4,22,6,30,50,32,209,5.5,12.8,85.18,927,11 -2013,4,22,7,30,253,80,583,6.800000000000001,15.4,72.73,927,12 -2013,4,22,8,30,483,99,768,7.4,18.8,60.08,927,12.3 -2013,4,22,9,30,694,109,867,7.2,22.200000000000003,47.56,927,11.9 -2013,4,22,10,30,861,116,916,6.800000000000001,25.200000000000003,35.64,926,10.8 -2013,4,22,11,30,972,120,944,6.5,27.700000000000003,25.44,925,9.600000000000001 -2013,4,22,12,30,1019,117,960,6.300000000000001,29.6,20,924,8.5 -2013,4,22,13,30,994,118,952,6.2,30.700000000000003,23.05,923,7.4 -2013,4,22,14,30,902,116,930,6.1000000000000005,31.3,32.24,922,6.4 -2013,4,22,15,30,750,109,888,5.9,31.400000000000002,43.800000000000004,921,5.4 -2013,4,22,16,30,554,97,821,5.5,30.8,56.19,920,4.3 -2013,4,22,17,30,329,78,697,5.2,30.3,68.82000000000001,920,3.7 -2013,4,22,18,30,108,45,420,4.2,25.5,81.37,920,4.9 -2013,4,22,19,30,0,0,0,5.1000000000000005,23.3,93.77,921,6.1000000000000005 -2013,4,22,20,30,0,0,0,5.6000000000000005,22,105.53,921,7.1000000000000005 -2013,4,22,21,30,0,0,0,5.5,20.5,116.32000000000001,921,8.1 -2013,4,22,22,30,0,0,0,5.6000000000000005,19.200000000000003,125.52,921,9 -2013,4,22,23,30,0,0,0,5.6000000000000005,18.2,132.14000000000001,921,9.9 -2013,4,23,0,30,0,0,0,5.300000000000001,17.3,135.02,921,10.600000000000001 -2013,4,23,1,30,0,0,0,4.5,16.400000000000002,133.43,921,11.100000000000001 -2013,4,23,2,30,0,0,0,2.6,15.100000000000001,127.79,921,11.4 -2013,4,23,3,30,0,0,0,2,13.600000000000001,119.24000000000001,922,11.4 -2013,4,23,4,30,0,0,0,3.6,12.200000000000001,108.83,924,10.600000000000001 -2013,4,23,5,30,0,0,0,5.2,10.5,97.31,926,8.700000000000001 -2013,4,23,6,30,15,15,0,6.1000000000000005,9.1,84.97,927,5.800000000000001 -2013,4,23,7,30,64,64,0,6.6000000000000005,8.6,72.52,929,3.4000000000000004 -2013,4,23,8,30,183,175,15,6.5,8.5,59.870000000000005,930,2 -2013,4,23,9,30,246,235,17,6.2,8.5,47.34,930,1.1 -2013,4,23,10,30,405,363,51,5.7,9.200000000000001,35.4,931,0.4 -2013,4,23,11,30,384,358,28,5.1000000000000005,10.200000000000001,25.150000000000002,931,0.2 -2013,4,23,12,30,447,410,39,4.4,11.4,19.66,930,0.2 -2013,4,23,13,30,531,455,82,4,12.5,22.78,930,0.30000000000000004 -2013,4,23,14,30,483,411,85,3.9000000000000004,13.100000000000001,32.05,929,0.30000000000000004 -2013,4,23,15,30,382,330,71,4,13.200000000000001,43.65,929,0.2 -2013,4,23,16,30,434,217,387,4.3,12.600000000000001,56.06,929,-0.30000000000000004 -2013,4,23,17,30,192,149,120,4.4,12.100000000000001,68.69,929,-0.8 -2013,4,23,18,30,112,45,438,4.2,9.200000000000001,81.23,930,-1.2000000000000002 -2013,4,23,19,30,0,0,0,4.4,7.300000000000001,93.62,931,-1.5 -2013,4,23,20,30,0,0,0,5,5.9,105.35000000000001,933,-1.6 -2013,4,23,21,30,0,0,0,5.6000000000000005,4.6000000000000005,116.12,934,-1.8 -2013,4,23,22,30,0,0,0,5.7,3.4000000000000004,125.27,935,-2.2 -2013,4,23,23,30,0,0,0,5.2,2.3000000000000003,131.85,936,-2.8000000000000003 -2013,4,24,0,30,0,0,0,4.6000000000000005,1.4000000000000001,134.69,936,-3.4000000000000004 -2013,4,24,1,30,0,0,0,4.3,0.7000000000000001,133.1,936,-3.8000000000000003 -2013,4,24,2,30,0,0,0,4.1000000000000005,0.2,127.49000000000001,936,-4.2 -2013,4,24,3,30,0,0,0,3.7,0,118.96000000000001,936,-4.4 -2013,4,24,4,30,0,0,0,3.3000000000000003,-0.2,108.58,936,-4.6000000000000005 -2013,4,24,5,30,0,0,0,3.3000000000000003,-0.30000000000000004,97.08,937,-4.7 -2013,4,24,6,30,60,30,332,3.9000000000000004,0.7000000000000001,84.75,937,-4.800000000000001 -2013,4,24,7,30,273,64,689,4.3,2.8000000000000003,72.32000000000001,938,-4.9 -2013,4,24,8,30,504,82,836,4.2,5.2,59.67,938,-4.800000000000001 -2013,4,24,9,30,715,94,912,3.9000000000000004,7.800000000000001,47.13,938,-4.6000000000000005 -2013,4,24,10,30,883,102,955,3.6,10.4,35.160000000000004,937,-4.5 -2013,4,24,11,30,994,107,977,3.2,12.8,24.85,936,-4.4 -2013,4,24,12,30,1035,109,982,2.8000000000000003,14.8,19.330000000000002,935,-4.3 -2013,4,24,13,30,1006,110,970,2.4000000000000004,16.400000000000002,22.51,935,-4.3 -2013,4,24,14,30,914,109,948,2.1,17.3,31.86,934,-4.2 -2013,4,24,15,30,757,106,898,2.1,17.6,43.51,934,-4 -2013,4,24,16,30,560,95,829,2.1,17.2,55.93,933,-3.8000000000000003 -2013,4,24,17,30,207,149,159,2.2,16.8,68.57000000000001,933,-3.6 -2013,4,24,18,30,113,45,438,1.6,13.200000000000001,81.10000000000001,934,-2.7 -2013,4,24,19,30,0,0,0,1.5,10.8,93.47,934,-0.7000000000000001 -2013,4,24,20,30,0,0,0,2.1,10.100000000000001,105.18,935,-2 -2013,4,24,21,30,0,0,0,2.6,9.600000000000001,115.91,936,-2.7 -2013,4,24,22,30,0,0,0,2.7,9,125.02,936,-2.7 -2013,4,24,23,30,0,0,0,2.6,8.5,131.55,936,-2.4000000000000004 -2013,4,25,0,30,0,0,0,2.5,7.800000000000001,134.37,936,-2 -2013,4,25,1,30,0,0,0,2.1,7.2,132.77,936,-1.7000000000000002 -2013,4,25,2,30,0,0,0,1.7000000000000002,6.800000000000001,127.18,936,-1.3 -2013,4,25,3,30,0,0,0,1.5,6.6000000000000005,118.69,937,-1 -2013,4,25,4,30,0,0,0,1.4000000000000001,6.5,108.34,937,-0.8 -2013,4,25,5,30,0,0,0,1.6,6.7,96.85000000000001,937,-0.7000000000000001 -2013,4,25,6,30,60,33,280,2.3000000000000003,8.3,84.55,937,-0.7000000000000001 -2013,4,25,7,30,72,72,0,3.1,11,72.12,938,-1.1 -2013,4,25,8,30,345,215,256,3.7,13.700000000000001,59.47,937,-1.8 -2013,4,25,9,30,598,226,545,4.1000000000000005,16.400000000000002,46.92,937,-1.5 -2013,4,25,10,30,638,389,303,4.1000000000000005,18.900000000000002,34.92,936,-0.6000000000000001 -2013,4,25,11,30,792,396,435,4.1000000000000005,21.1,24.57,935,0.6000000000000001 -2013,4,25,12,30,773,456,335,4.4,22.8,19.01,934,1.9000000000000001 -2013,4,25,13,30,371,349,24,4.800000000000001,23.900000000000002,22.25,933,3.2 -2013,4,25,14,30,385,355,35,5.300000000000001,24.3,31.68,932,4.3 -2013,4,25,15,30,455,352,142,5.6000000000000005,24.1,43.36,931,5 -2013,4,25,16,30,332,254,138,5.7,23.400000000000002,55.800000000000004,930,5.300000000000001 -2013,4,25,17,30,323,87,642,5.7,23,68.44,930,5.7 -2013,4,25,18,30,109,49,379,4.6000000000000005,19.6,80.97,930,6.2 -2013,4,25,19,30,0,0,0,4.5,17.3,93.32000000000001,930,6.800000000000001 -2013,4,25,20,30,0,0,0,4.7,15.9,105.01,931,7.300000000000001 -2013,4,25,21,30,0,0,0,4.6000000000000005,14.8,115.7,931,7.9 -2013,4,25,22,30,0,0,0,4.4,14,124.77,931,8.4 -2013,4,25,23,30,0,0,0,4.6000000000000005,13.5,131.26,931,8.9 -2013,4,26,0,30,0,0,0,4.9,13.3,134.04,930,9.4 -2013,4,26,1,30,0,0,0,4.9,13.100000000000001,132.45,930,9.9 -2013,4,26,2,30,0,0,0,4.7,12.9,126.88000000000001,929,10.3 -2013,4,26,3,30,0,0,0,4.5,12.700000000000001,118.41,929,10.600000000000001 -2013,4,26,4,30,0,0,0,4.5,12.4,108.09,929,10.9 -2013,4,26,5,30,0,0,0,4.7,12.4,96.63,929,11.200000000000001 -2013,4,26,6,30,57,36,211,5.1000000000000005,13.5,84.36,929,11.5 -2013,4,26,7,30,257,86,551,6,15.8,71.92,929,11.700000000000001 -2013,4,26,8,30,382,198,360,6.5,18.8,59.28,929,12 -2013,4,26,9,30,606,225,556,6.4,21.8,46.72,929,12 -2013,4,26,10,30,863,121,902,5.800000000000001,24.700000000000003,34.69,929,11.5 -2013,4,26,11,30,977,120,940,5.1000000000000005,27.400000000000002,24.29,928,10.3 -2013,4,26,12,30,1025,116,960,4.6000000000000005,29.5,18.68,927,8.3 -2013,4,26,13,30,1005,112,964,4.4,30.900000000000002,21.990000000000002,926,5.9 -2013,4,26,14,30,918,105,954,4.3,31.700000000000003,31.5,926,3.4000000000000004 -2013,4,26,15,30,758,112,887,4.2,31.900000000000002,43.22,925,1 -2013,4,26,16,30,578,82,879,3.7,31.3,55.68,925,-1.2000000000000002 -2013,4,26,17,30,353,65,779,3.4000000000000004,30.8,68.32000000000001,925,-2.1 -2013,4,26,18,30,125,40,536,1.6,23.700000000000003,80.84,926,3.8000000000000003 -2013,4,26,19,30,0,0,0,1.9000000000000001,20.700000000000003,93.18,926,3.4000000000000004 -2013,4,26,20,30,0,0,0,2,19.400000000000002,104.83,927,3.9000000000000004 -2013,4,26,21,30,0,0,0,1.5,18.3,115.5,928,5.1000000000000005 -2013,4,26,22,30,0,0,0,1.3,17,124.53,929,6.5 -2013,4,26,23,30,0,0,0,1.5,15.4,130.97,930,7.800000000000001 -2013,4,27,0,30,0,0,0,1.4000000000000001,14.200000000000001,133.73,930,7.9 -2013,4,27,1,30,0,0,0,1.4000000000000001,13.200000000000001,132.13,930,7.7 -2013,4,27,2,30,0,0,0,1.4000000000000001,12.200000000000001,126.58,931,7.9 -2013,4,27,3,30,0,0,0,1.6,11.5,118.15,931,8.3 -2013,4,27,4,30,0,0,0,1.9000000000000001,11,107.85000000000001,931,9.1 -2013,4,27,5,30,0,0,0,2.5,11.100000000000001,96.42,932,9.9 -2013,4,27,6,30,65,35,295,3.5,12.4,84.16,932,10.4 -2013,4,27,7,30,273,74,637,4.1000000000000005,14.700000000000001,71.73,933,11.100000000000001 -2013,4,27,8,30,502,91,800,4.1000000000000005,17.5,59.08,933,11.200000000000001 -2013,4,27,9,30,710,100,885,3.9000000000000004,20.1,46.52,933,10.5 -2013,4,27,10,30,875,107,931,3.7,22.6,34.47,933,9 -2013,4,27,11,30,984,111,955,3.6,24.6,24.01,932,7 -2013,4,27,12,30,1028,111,967,3.5,26,18.36,931,5 -2013,4,27,13,30,1007,109,967,3.4000000000000004,26.900000000000002,21.740000000000002,930,3.7 -2013,4,27,14,30,915,104,949,3.3000000000000003,27.3,31.32,929,2.7 -2013,4,27,15,30,764,98,912,3.2,27.200000000000003,43.08,929,1.9000000000000001 -2013,4,27,16,30,570,86,855,3.2,26.5,55.550000000000004,928,1.3 -2013,4,27,17,30,345,69,742,3.2,25.900000000000002,68.2,928,1 -2013,4,27,18,30,122,42,492,1.9000000000000001,21,80.71000000000001,928,2.7 -2013,4,27,19,30,0,0,0,1.9000000000000001,18.1,93.03,929,3.8000000000000003 -2013,4,27,20,30,0,0,0,2.2,16.900000000000002,104.66,930,3.4000000000000004 -2013,4,27,21,30,0,0,0,2.4000000000000004,16,115.29,930,3.5 -2013,4,27,22,30,0,0,0,2.5,15,124.28,930,3.8000000000000003 -2013,4,27,23,30,0,0,0,2.6,14.200000000000001,130.69,929,4.2 -2013,4,28,0,30,0,0,0,2.6,13.5,133.41,929,4.7 -2013,4,28,1,30,0,0,0,2.6,12.8,131.82,928,5.5 -2013,4,28,2,30,0,0,0,2.5,12.3,126.29,928,6.7 -2013,4,28,3,30,0,0,0,2.5,11.9,117.89,928,8.1 -2013,4,28,4,30,0,0,0,2.5,11.9,107.62,928,9.9 -2013,4,28,5,30,0,0,0,2.8000000000000003,12.600000000000001,96.2,928,11.600000000000001 -2013,4,28,6,30,66,36,288,3.4000000000000004,14.8,83.97,928,13.200000000000001 -2013,4,28,7,30,273,74,628,4.1000000000000005,18.3,71.55,928,14.5 -2013,4,28,8,30,499,91,790,4.5,21.900000000000002,58.9,928,15.3 -2013,4,28,9,30,704,102,872,4.1000000000000005,24.6,46.33,928,13.9 -2013,4,28,10,30,868,111,915,3.7,26.900000000000002,34.25,927,11.9 -2013,4,28,11,30,976,117,938,3.5,28.700000000000003,23.740000000000002,927,10.100000000000001 -2013,4,28,12,30,1021,120,948,3.7,30,18.05,926,8.200000000000001 -2013,4,28,13,30,935,299,684,4,30.6,21.490000000000002,925,6.7 -2013,4,28,14,30,356,333,27,4.3,30.6,31.14,924,5.7 -2013,4,28,15,30,494,355,190,4.7,30.1,42.94,923,5.1000000000000005 -2013,4,28,16,30,556,99,805,4.9,28.900000000000002,55.43,923,5 -2013,4,28,17,30,333,82,673,4.9,28.200000000000003,68.07000000000001,923,5.4 -2013,4,28,18,30,115,50,402,3.8000000000000003,24.3,80.58,923,6.5 -2013,4,28,19,30,0,0,0,3.5,21.900000000000002,92.88,924,8.200000000000001 -2013,4,28,20,30,0,0,0,3.7,20.700000000000003,104.49000000000001,924,9.5 -2013,4,28,21,30,0,0,0,3.8000000000000003,19.700000000000003,115.09,925,10.8 -2013,4,28,22,30,0,0,0,3.8000000000000003,18.8,124.04,925,11.9 -2013,4,28,23,30,0,0,0,3.7,17.8,130.4,925,12.8 -2013,4,29,0,30,0,0,0,3.6,16.900000000000002,133.1,924,13.600000000000001 -2013,4,29,1,30,0,0,0,3.6,16.1,131.51,924,14.100000000000001 -2013,4,29,2,30,0,0,0,3.5,15.4,126,924,14.4 -2013,4,29,3,30,0,0,0,3.3000000000000003,14.700000000000001,117.63,924,14.600000000000001 -2013,4,29,4,30,0,0,0,3.1,14.3,107.39,924,14.3 -2013,4,29,5,30,0,0,0,3.1,14.3,96,924,14.3 -2013,4,29,6,30,69,36,306,3.6,15.600000000000001,83.78,925,14.700000000000001 -2013,4,29,7,30,279,72,646,4.1000000000000005,18.5,71.36,925,14.8 -2013,4,29,8,30,507,89,805,4.3,22.1,58.72,925,14 -2013,4,29,9,30,714,100,887,4.3,25.5,46.14,925,10.8 -2013,4,29,10,30,879,108,931,4.4,27.900000000000002,34.04,924,7.6000000000000005 -2013,4,29,11,30,988,112,955,4.5,29.5,23.48,923,6.2 -2013,4,29,12,30,1032,112,966,4.6000000000000005,30.5,17.740000000000002,922,5.800000000000001 -2013,4,29,13,30,1007,111,962,4.6000000000000005,31,21.240000000000002,921,5.800000000000001 -2013,4,29,14,30,916,107,944,4.6000000000000005,31,30.970000000000002,921,5.9 -2013,4,29,15,30,763,99,906,4.5,30.6,42.81,920,6 -2013,4,29,16,30,568,87,844,4.5,29.6,55.300000000000004,920,6 -2013,4,29,17,30,345,70,731,4.5,29,67.95,920,6.2 -2013,4,29,18,30,123,43,480,3.8000000000000003,25.200000000000003,80.45,920,7.1000000000000005 -2013,4,29,19,30,0,0,0,4,22.8,92.73,920,8.700000000000001 -2013,4,29,20,30,0,0,0,4.6000000000000005,21.400000000000002,104.32000000000001,920,10 -2013,4,29,21,30,0,0,0,4.9,20.1,114.88,921,11.4 -2013,4,29,22,30,0,0,0,4.9,19,123.8,921,12.600000000000001 -2013,4,29,23,30,0,0,0,4.9,17.900000000000002,130.12,921,13.5 -2013,4,30,0,30,0,0,0,4.800000000000001,16.900000000000002,132.8,920,14.3 -2013,4,30,1,30,0,0,0,4.6000000000000005,16.1,131.2,920,14.9 -2013,4,30,2,30,0,0,0,4.3,15.5,125.72,920,15.200000000000001 -2013,4,30,3,30,0,0,0,4.1000000000000005,15.200000000000001,117.37,920,15.200000000000001 -2013,4,30,4,30,0,0,0,3.9000000000000004,15.100000000000001,107.16,920,15.100000000000001 -2013,4,30,5,30,0,0,0,4,15.100000000000001,95.79,920,15.100000000000001 -2013,4,30,6,30,71,36,313,4.7,16.2,83.59,921,15 -2013,4,30,7,30,278,72,638,5.300000000000001,18.6,71.19,921,14.8 -2013,4,30,8,30,502,90,789,5.4,21.700000000000003,58.54,921,14.3 -2013,4,30,9,30,707,102,870,5.4,24.900000000000002,45.95,920,13.4 -2013,4,30,10,30,870,108,916,5.2,27.6,33.83,920,12.200000000000001 -2013,4,30,11,30,977,112,942,5.1000000000000005,29.8,23.22,919,11 -2013,4,30,12,30,1020,113,950,4.9,31.3,17.43,919,10.100000000000001 -2013,4,30,13,30,995,112,946,4.7,32.2,21,918,9.4 -2013,4,30,14,30,905,108,928,4.7,32.6,30.8,917,8.700000000000001 -2013,4,30,15,30,755,102,889,4.7,32.5,42.67,917,8.1 -2013,4,30,16,30,562,90,827,4.800000000000001,31.8,55.18,917,7.7 -2013,4,30,17,30,343,72,716,4.800000000000001,31.3,67.83,917,7.6000000000000005 -2013,4,30,18,30,123,45,463,4.2,27.1,80.32000000000001,917,8.5 -2013,4,30,19,30,0,0,0,4.4,24.5,92.59,918,9.600000000000001 -2013,4,30,20,30,0,0,0,4.800000000000001,22.8,104.15,919,10.200000000000001 -2013,4,30,21,30,0,0,0,4.9,21.3,114.68,919,10.8 -2013,4,30,22,30,0,0,0,4.9,20,123.56,919,11.3 -2013,4,30,23,30,0,0,0,4.7,18.900000000000002,129.85,919,11.9 -2013,5,1,0,30,0,0,0,4.4,18,132.49,919,12.5 -2013,5,1,1,30,0,0,0,4.2,17.3,130.9,920,13.100000000000001 -2013,5,1,2,30,0,0,0,3.9000000000000004,16.900000000000002,125.44,920,13.600000000000001 -2013,5,1,3,30,0,0,0,3.7,16.400000000000002,117.12,920,13.9 -2013,5,1,4,30,0,0,0,3.4000000000000004,15.8,106.94,920,14.200000000000001 -2013,5,1,5,30,0,0,0,3.3000000000000003,15.600000000000001,95.59,920,14.4 -2013,5,1,6,30,50,39,94,3.8000000000000003,16.900000000000002,83.41,921,14.700000000000001 -2013,5,1,7,30,251,88,501,4.6000000000000005,19.900000000000002,71.01,921,15.3 -2013,5,1,8,30,410,193,413,4.5,23.5,58.370000000000005,922,15.5 -2013,5,1,9,30,603,243,516,3.3000000000000003,26.6,45.77,922,13.700000000000001 -2013,5,1,10,30,755,330,511,1.9000000000000001,28.900000000000002,33.63,922,11.200000000000001 -2013,5,1,11,30,856,402,493,1.5,30.200000000000003,22.97,922,9.4 -2013,5,1,12,30,1012,138,915,1.9000000000000001,30.8,17.13,922,8.4 -2013,5,1,13,30,987,133,913,2.4000000000000004,31.1,20.76,922,8 -2013,5,1,14,30,898,125,898,2.8000000000000003,31,30.63,922,7.9 -2013,5,1,15,30,752,113,867,3.1,30.6,42.54,923,7.7 -2013,5,1,16,30,261,235,46,3.3000000000000003,29.700000000000003,55.06,923,7.5 -2013,5,1,17,30,340,78,690,3.3000000000000003,29.1,67.71000000000001,923,7.6000000000000005 -2013,5,1,18,30,108,50,341,2.9000000000000004,24.5,80.19,925,9.600000000000001 -2013,5,1,19,30,0,0,0,3.3000000000000003,21.3,92.44,926,10.600000000000001 -2013,5,1,20,30,0,0,0,4.2,19,103.98,927,10.5 -2013,5,1,21,30,0,0,0,5.2,16.8,114.48,929,9.9 -2013,5,1,22,30,0,0,0,6,14.600000000000001,123.32000000000001,930,9.1 -2013,5,1,23,30,0,0,0,6.6000000000000005,12.200000000000001,129.57,931,8.1 -2013,5,2,0,30,0,0,0,7.2,9.8,132.2,932,6.9 -2013,5,2,1,30,0,0,0,7.5,8,130.6,933,5.4 -2013,5,2,2,30,0,0,0,7.7,6.6000000000000005,125.17,934,4.1000000000000005 -2013,5,2,3,30,0,0,0,7.9,5.4,116.88,935,2.9000000000000004 -2013,5,2,4,30,0,0,0,7.9,4.5,106.72,936,1.8 -2013,5,2,5,30,0,0,0,7.800000000000001,4,95.39,937,1 -2013,5,2,6,30,71,45,215,7.9,4.3,83.23,938,0.6000000000000001 -2013,5,2,7,30,91,91,0,8.200000000000001,5.300000000000001,70.84,939,0.2 -2013,5,2,8,30,66,66,0,8.5,6.800000000000001,58.2,939,-0.2 -2013,5,2,9,30,160,158,3,8.8,8.3,45.6,939,-0.30000000000000004 -2013,5,2,10,30,161,156,5,8.9,9.600000000000001,33.43,940,-0.30000000000000004 -2013,5,2,11,30,162,156,6,8.8,10.600000000000001,22.72,940,-0.4 -2013,5,2,12,30,157,151,6,8.5,11.5,16.830000000000002,940,-0.8 -2013,5,2,13,30,276,262,15,8.200000000000001,12.5,20.52,939,-1.2000000000000002 -2013,5,2,14,30,360,336,27,8.1,13.3,30.47,939,-1.6 -2013,5,2,15,30,337,307,40,8.1,13.4,42.410000000000004,939,-1.9000000000000001 -2013,5,2,16,30,237,220,30,8,12.8,54.94,939,-2.4000000000000004 -2013,5,2,17,30,129,127,5,7.9,12.3,67.58,939,-3.1 -2013,5,2,18,30,130,51,456,6.300000000000001,10,80.05,940,-3.8000000000000003 -2013,5,2,19,30,0,0,0,5.1000000000000005,8.5,92.29,940,-4.4 -2013,5,2,20,30,0,0,0,4.5,7.4,103.81,941,-4.800000000000001 -2013,5,2,21,30,0,0,0,4.2,6.5,114.28,941,-5.300000000000001 -2013,5,2,22,30,0,0,0,4.2,5.9,123.08,941,-5.7 -2013,5,2,23,30,0,0,0,4.4,5.4,129.3,941,-6.300000000000001 -2013,5,3,0,30,0,0,0,4.4,4.9,131.9,940,-6.9 -2013,5,3,1,30,0,0,0,4.1000000000000005,4.2,130.31,940,-7.300000000000001 -2013,5,3,2,30,0,0,0,3.7,3.5,124.9,940,-7.5 -2013,5,3,3,30,0,0,0,3.2,2.7,116.64,940,-7.7 -2013,5,3,4,30,0,0,0,2.8000000000000003,1.9000000000000001,106.51,940,-7.7 -2013,5,3,5,30,0,0,0,2.9000000000000004,2,95.2,940,-7.800000000000001 -2013,5,3,6,30,87,40,389,3.5,3.8000000000000003,83.05,940,-8.200000000000001 -2013,5,3,7,30,309,74,711,4.1000000000000005,7.5,70.67,940,-8.5 -2013,5,3,8,30,544,93,853,4.5,11,58.04,939,-9.4 -2013,5,3,9,30,750,105,919,4.6000000000000005,13.3,45.43,939,-10.200000000000001 -2013,5,3,10,30,918,112,964,4.4,15.100000000000001,33.24,938,-10.9 -2013,5,3,11,30,1028,115,988,4.2,16.7,22.48,936,-11.3 -2013,5,3,12,30,1073,113,1001,4,18.1,16.53,934,-11.3 -2013,5,3,13,30,1049,111,1000,3.8000000000000003,19,20.29,933,-11.3 -2013,5,3,14,30,956,105,986,3.6,19.6,30.310000000000002,932,-11.200000000000001 -2013,5,3,15,30,802,99,950,3.4000000000000004,19.8,42.28,931,-11.200000000000001 -2013,5,3,16,30,601,87,892,3.1,19.6,54.82,930,-11.100000000000001 -2013,5,3,17,30,372,71,787,2.9000000000000004,19.3,67.46000000000001,930,-11 -2013,5,3,18,30,142,45,554,1,15.9,79.93,929,-4.3 -2013,5,3,19,30,0,0,0,1,13.4,92.15,929,-4.800000000000001 -2013,5,3,20,30,0,0,0,1.3,11.200000000000001,103.64,929,-5.1000000000000005 -2013,5,3,21,30,0,0,0,1.6,9.8,114.08,929,-5.300000000000001 -2013,5,3,22,30,0,0,0,1.9000000000000001,9.200000000000001,122.85000000000001,928,-6.4 -2013,5,3,23,30,0,0,0,2.3000000000000003,8.8,129.03,928,-7.2 -2013,5,4,0,30,0,0,0,2.4000000000000004,8.3,131.61,928,-7.7 -2013,5,4,1,30,0,0,0,2.4000000000000004,7.6000000000000005,130.03,928,-7.9 -2013,5,4,2,30,0,0,0,2.2,6.7,124.63000000000001,928,-7.9 -2013,5,4,3,30,0,0,0,2.1,5.800000000000001,116.4,928,-7.800000000000001 -2013,5,4,4,30,0,0,0,2,5.2,106.3,928,-7.800000000000001 -2013,5,4,5,30,0,0,0,2.2,5.4,95.01,928,-7.7 -2013,5,4,6,30,93,34,481,2.7,7.7,82.89,929,-7.5 -2013,5,4,7,30,316,59,771,3.1,11.700000000000001,70.51,929,-7.6000000000000005 -2013,5,4,8,30,545,74,887,3.3000000000000003,16.1,57.88,929,-8.3 -2013,5,4,9,30,753,84,951,3.4000000000000004,19.5,45.27,929,-9 -2013,5,4,10,30,919,91,988,3.3000000000000003,21.6,33.05,929,-8.5 -2013,5,4,11,30,1027,96,1006,3.1,23.200000000000003,22.240000000000002,928,-7.800000000000001 -2013,5,4,12,30,1065,101,1004,3,24.3,16.240000000000002,927,-7.4 -2013,5,4,13,30,1038,103,995,3,25,20.06,927,-7 -2013,5,4,14,30,796,349,517,3,25.3,30.150000000000002,926,-6.9 -2013,5,4,15,30,635,276,484,3.1,25,42.15,926,-6.800000000000001 -2013,5,4,16,30,592,87,874,3.1,24.3,54.7,926,-6.7 -2013,5,4,17,30,367,70,771,3.2,23.8,67.34,926,-6.5 -2013,5,4,18,30,140,45,536,1.9000000000000001,18.8,79.8,926,-3.5 -2013,5,4,19,30,0,0,0,2,15.700000000000001,92,927,-1.7000000000000002 -2013,5,4,20,30,0,0,0,2.5,14.5,103.47,928,-2.8000000000000003 -2013,5,4,21,30,0,0,0,2.8000000000000003,13.3,113.88,929,-3.4000000000000004 -2013,5,4,22,30,0,0,0,2.6,11.9,122.61,929,-3.8000000000000003 -2013,5,4,23,30,0,0,0,2.2,10.3,128.76,930,-4 -2013,5,5,0,30,0,0,0,2,9,131.33,930,-4.1000000000000005 -2013,5,5,1,30,0,0,0,2.2,8.1,129.74,931,-4 -2013,5,5,2,30,0,0,0,2.4000000000000004,7.300000000000001,124.37,931,-3.2 -2013,5,5,3,30,0,0,0,2.3000000000000003,6.5,116.17,932,-1.8 -2013,5,5,4,30,0,0,0,2,5.6000000000000005,106.09,932,-0.30000000000000004 -2013,5,5,5,30,0,0,0,2.1,5.6000000000000005,94.83,933,0.8 -2013,5,5,6,30,89,39,397,3,7.5,82.72,933,1.5 -2013,5,5,7,30,305,73,690,3.9000000000000004,10.5,70.36,934,1.6 -2013,5,5,8,30,531,93,821,4.3,13.4,57.730000000000004,934,1.1 -2013,5,5,9,30,736,106,893,4.4,16,45.11,934,0.1 -2013,5,5,10,30,900,115,934,4.2,18.3,32.87,933,-0.8 -2013,5,5,11,30,1007,122,955,4.1000000000000005,20.3,22.01,933,-1.3 -2013,5,5,12,30,1046,123,960,4,21.900000000000002,15.96,932,-1.5 -2013,5,5,13,30,1019,127,949,3.9000000000000004,22.900000000000002,19.84,931,-1.7000000000000002 -2013,5,5,14,30,922,127,918,3.7,23.3,29.990000000000002,930,-1.9000000000000001 -2013,5,5,15,30,773,109,894,3.5,23.3,42.02,930,-2.2 -2013,5,5,16,30,578,97,831,3.3000000000000003,22.8,54.58,929,-2.3000000000000003 -2013,5,5,17,30,356,78,717,3.2,22.5,67.22,929,-2.3000000000000003 -2013,5,5,18,30,52,52,0,1.7000000000000002,18.1,79.67,929,-0.5 -2013,5,5,19,30,0,0,0,1.3,15,91.86,930,2 -2013,5,5,20,30,0,0,0,1.5,13.700000000000001,103.3,930,2 -2013,5,5,21,30,0,0,0,1.6,12.9,113.69,930,2.5 -2013,5,5,22,30,0,0,0,1.7000000000000002,12.200000000000001,122.38,931,3.1 -2013,5,5,23,30,0,0,0,1.8,11.5,128.5,931,3.5 -2013,5,6,0,30,0,0,0,1.8,10.8,131.05,930,3.8000000000000003 -2013,5,6,1,30,0,0,0,1.8,10.100000000000001,129.47,930,4 -2013,5,6,2,30,0,0,0,1.7000000000000002,9.4,124.11,930,4.3 -2013,5,6,3,30,0,0,0,1.4000000000000001,8.8,115.94,930,4.5 -2013,5,6,4,30,0,0,0,1.2000000000000002,8.4,105.89,930,4.7 -2013,5,6,5,30,0,0,0,1.3,8.9,94.65,930,5 -2013,5,6,6,30,86,43,333,1.8,10.700000000000001,82.56,931,5.2 -2013,5,6,7,30,192,134,171,2.1,13.200000000000001,70.21000000000001,931,5.5 -2013,5,6,8,30,371,227,269,2.4000000000000004,15.4,57.58,932,5.5 -2013,5,6,9,30,525,323,286,2.6,16.900000000000002,44.96,932,5.300000000000001 -2013,5,6,10,30,695,364,394,2.8000000000000003,18.2,32.7,931,5.2 -2013,5,6,11,30,773,419,381,2.8000000000000003,19.400000000000002,21.79,931,5.2 -2013,5,6,12,30,481,436,47,2.3000000000000003,20.200000000000003,15.68,931,5.6000000000000005 -2013,5,6,13,30,245,233,14,1.9000000000000001,20.900000000000002,19.62,930,6.4 -2013,5,6,14,30,160,155,6,1.8,21.400000000000002,29.84,929,7 -2013,5,6,15,30,120,120,0,2.2,21.6,41.9,929,7.300000000000001 -2013,5,6,16,30,274,243,54,2.6,21.400000000000002,54.47,928,7.2 -2013,5,6,17,30,239,156,214,2.7,21.200000000000003,67.11,928,6.9 -2013,5,6,18,30,123,69,297,1.9000000000000001,18.1,79.54,928,7.2 -2013,5,6,19,30,0,0,0,1.6,15.700000000000001,91.71000000000001,928,7.6000000000000005 -2013,5,6,20,30,0,0,0,1.7000000000000002,14.600000000000001,103.14,929,7.1000000000000005 -2013,5,6,21,30,0,0,0,1.9000000000000001,13.8,113.49000000000001,929,6.7 -2013,5,6,22,30,0,0,0,2.1,13.100000000000001,122.16,929,6.4 -2013,5,6,23,30,0,0,0,2.2,12.5,128.24,929,6.300000000000001 -2013,5,7,0,30,0,0,0,2.2,11.9,130.77,929,6.2 -2013,5,7,1,30,0,0,0,2.1,11.200000000000001,129.19,928,6.2 -2013,5,7,2,30,0,0,0,1.9000000000000001,10.600000000000001,123.86,928,6.4 -2013,5,7,3,30,0,0,0,1.8,9.9,115.72,929,6.7 -2013,5,7,4,30,0,0,0,1.7000000000000002,9.4,105.69,929,7 -2013,5,7,5,30,0,0,0,2.3000000000000003,9.9,94.48,929,7.2 -2013,5,7,6,30,89,40,369,3,12,82.41,929,7.300000000000001 -2013,5,7,7,30,298,74,654,3.8000000000000003,15.8,70.06,929,7.4 -2013,5,7,8,30,519,95,789,4.7,20,57.44,929,6.9 -2013,5,7,9,30,720,108,862,5.1000000000000005,23.3,44.81,929,6.4 -2013,5,7,10,30,878,117,902,5.2,25.700000000000003,32.53,928,6.7 -2013,5,7,11,30,980,121,924,5.2,27.5,21.580000000000002,928,7.300000000000001 -2013,5,7,12,30,1021,118,936,5.300000000000001,28.6,15.4,927,7.800000000000001 -2013,5,7,13,30,993,119,927,5.300000000000001,29.200000000000003,19.400000000000002,926,8.3 -2013,5,7,14,30,903,115,907,5.4,29.200000000000003,29.69,925,8.700000000000001 -2013,5,7,15,30,757,106,873,5.5,28.700000000000003,41.77,924,9 -2013,5,7,16,30,568,94,813,5.4,27.900000000000002,54.35,924,9 -2013,5,7,17,30,350,77,698,5.4,27.400000000000002,66.99,924,8.9 -2013,5,7,18,30,135,50,461,4,23.700000000000003,79.42,924,9 -2013,5,7,19,30,0,0,0,3.5,21.200000000000003,91.57000000000001,925,9.600000000000001 -2013,5,7,20,30,0,0,0,4.1000000000000005,20.1,102.97,925,9.5 -2013,5,7,21,30,0,0,0,4.6000000000000005,19.400000000000002,113.3,925,9.600000000000001 -2013,5,7,22,30,0,0,0,4.7,18.8,121.93,925,10 -2013,5,7,23,30,0,0,0,4.7,18.2,127.99000000000001,925,11 -2013,5,8,0,30,0,0,0,4.6000000000000005,17.6,130.5,925,12.200000000000001 -2013,5,8,1,30,0,0,0,4.2,16.900000000000002,128.93,925,13 -2013,5,8,2,30,0,0,0,3.7,16.3,123.62,924,13.600000000000001 -2013,5,8,3,30,0,0,0,3.6,15.9,115.5,924,13.9 -2013,5,8,4,30,0,0,0,3.9000000000000004,15.600000000000001,105.5,925,14.3 -2013,5,8,5,30,0,0,0,4.2,15.600000000000001,94.31,925,14.600000000000001 -2013,5,8,6,30,84,48,266,4.7,16.6,82.26,926,14.9 -2013,5,8,7,30,282,97,539,5.4,18.400000000000002,69.92,926,15.3 -2013,5,8,8,30,371,231,260,5.7,20.3,57.300000000000004,926,15.8 -2013,5,8,9,30,517,330,263,5.800000000000001,22.5,44.67,926,16 -2013,5,8,10,30,357,333,29,5.7,25,32.37,926,15.700000000000001 -2013,5,8,11,30,740,459,302,5.6000000000000005,27.3,21.37,925,15.100000000000001 -2013,5,8,12,30,741,493,256,5.5,29.3,15.13,924,14.3 -2013,5,8,13,30,903,394,538,5.4,30.8,19.19,923,13.3 -2013,5,8,14,30,606,441,189,5.2,31.400000000000002,29.54,922,12.200000000000001 -2013,5,8,15,30,717,199,693,4.9,31.3,41.65,922,11 -2013,5,8,16,30,248,229,33,4.5,30.8,54.24,921,9.8 -2013,5,8,17,30,344,92,643,4.3,30.5,66.87,921,8.700000000000001 -2013,5,8,18,30,135,54,439,3.3000000000000003,26.200000000000003,79.29,921,9.4 -2013,5,8,19,30,0,0,0,3.3000000000000003,23.3,91.42,922,9.600000000000001 -2013,5,8,20,30,0,0,0,3.6,21.8,102.81,922,9.4 -2013,5,8,21,30,0,0,0,4.1000000000000005,20.900000000000002,113.11,923,9.9 -2013,5,8,22,30,0,0,0,4.4,20.200000000000003,121.71000000000001,923,11.100000000000001 -2013,5,8,23,30,0,0,0,4.3,19.400000000000002,127.74000000000001,923,12.4 -2013,5,9,0,30,0,0,0,4.3,18.8,130.23,923,13.4 -2013,5,9,1,30,0,0,0,4.3,18.2,128.66,923,14.100000000000001 -2013,5,9,2,30,0,0,0,4,17.8,123.38000000000001,923,14.600000000000001 -2013,5,9,3,30,0,0,0,3.8000000000000003,17.7,115.29,923,15.200000000000001 -2013,5,9,4,30,0,0,0,4.1000000000000005,17.8,105.32000000000001,924,15.8 -2013,5,9,5,30,0,0,0,4.3,18,94.14,924,16.3 -2013,5,9,6,30,87,48,279,4.1000000000000005,18.5,82.11,925,16.6 -2013,5,9,7,30,258,104,448,3.9000000000000004,19.8,69.78,926,16.8 -2013,5,9,8,30,382,228,284,3.8000000000000003,21.400000000000002,57.17,926,16.7 -2013,5,9,9,30,507,334,243,3.4000000000000004,23.1,44.53,926,16.3 -2013,5,9,10,30,532,422,129,2.6,25.1,32.21,926,15.5 -2013,5,9,11,30,205,195,11,1.7000000000000002,27,21.16,925,14.100000000000001 -2013,5,9,12,30,758,488,280,1.7000000000000002,28.1,14.870000000000001,925,12.700000000000001 -2013,5,9,13,30,832,430,425,2.3000000000000003,28.3,18.98,924,12.100000000000001 -2013,5,9,14,30,94,94,0,2.9000000000000004,27.400000000000002,29.39,924,12.100000000000001 -2013,5,9,15,30,111,111,0,3.5,26.200000000000003,41.53,924,12.4 -2013,5,9,16,30,209,200,15,3.9000000000000004,25.1,54.120000000000005,923,13 -2013,5,9,17,30,344,89,645,4,24.6,66.75,923,13.600000000000001 -2013,5,9,18,30,134,55,421,2.9000000000000004,21.5,79.16,924,14.3 -2013,5,9,19,30,0,0,0,2.1,19.3,91.28,924,15.100000000000001 -2013,5,9,20,30,0,0,0,1.8,18,102.64,925,15.3 -2013,5,9,21,30,0,0,0,1.5,16.900000000000002,112.92,925,15.700000000000001 -2013,5,9,22,30,0,0,0,1.2000000000000002,16.1,121.49000000000001,926,16.1 -2013,5,9,23,30,0,0,0,0.9,15.600000000000001,127.49000000000001,926,15.600000000000001 -2013,5,10,0,30,0,0,0,0.7000000000000001,15.3,129.97,926,15.3 -2013,5,10,1,30,0,0,0,0.5,15.100000000000001,128.41,927,15.100000000000001 -2013,5,10,2,30,0,0,0,0.6000000000000001,14.9,123.14,927,14.9 -2013,5,10,3,30,0,0,0,1.4000000000000001,14.700000000000001,115.08,928,14.700000000000001 -2013,5,10,4,30,0,0,0,2.5,14.600000000000001,105.14,928,14.600000000000001 -2013,5,10,5,30,0,0,0,3.1,14.3,93.98,928,14.3 -2013,5,10,6,30,58,49,67,3.5,14.200000000000001,81.97,929,13.8 -2013,5,10,7,30,290,91,572,4.1000000000000005,14.8,69.65,929,13.3 -2013,5,10,8,30,509,112,728,4.6000000000000005,16.3,57.04,929,13 -2013,5,10,9,30,325,296,41,4.800000000000001,18.400000000000002,44.4,929,12.8 -2013,5,10,10,30,866,126,874,4.9,20.400000000000002,32.06,929,12.600000000000001 -2013,5,10,11,30,974,126,908,4.800000000000001,21.700000000000003,20.96,929,12.5 -2013,5,10,12,30,168,161,8,4.6000000000000005,22.400000000000002,14.61,929,12.200000000000001 -2013,5,10,13,30,223,212,12,4.5,22.5,18.78,928,11.9 -2013,5,10,14,30,135,133,2,4.7,22.3,29.25,928,11.4 -2013,5,10,15,30,679,254,566,4.800000000000001,22.1,41.410000000000004,928,11 -2013,5,10,16,30,234,219,25,4,21.400000000000002,54.01,928,10.5 -2013,5,10,17,30,97,97,0,3.3000000000000003,20.700000000000003,66.64,929,10.4 -2013,5,10,18,30,70,66,22,1.7000000000000002,18.2,79.04,930,10.9 -2013,5,10,19,30,0,0,0,1.2000000000000002,16.7,91.14,930,11.4 -2013,5,10,20,30,0,0,0,1.1,15.8,102.48,931,10.9 -2013,5,10,21,30,0,0,0,1.1,14.9,112.73,931,10.200000000000001 -2013,5,10,22,30,0,0,0,1.1,14.100000000000001,121.27,931,9.600000000000001 -2013,5,10,23,30,0,0,0,1.2000000000000002,13.4,127.25,931,9.200000000000001 -2013,5,11,0,30,0,0,0,1.3,12.8,129.71,932,8.9 -2013,5,11,1,30,0,0,0,1.3,12.200000000000001,128.15,932,8.700000000000001 -2013,5,11,2,30,0,0,0,1.3,11.600000000000001,122.91,932,8.700000000000001 -2013,5,11,3,30,0,0,0,1.2000000000000002,11.200000000000001,114.88,933,8.8 -2013,5,11,4,30,0,0,0,1.1,10.8,104.96000000000001,933,8.9 -2013,5,11,5,30,0,0,0,1.3,11.3,93.83,934,9 -2013,5,11,6,30,98,41,397,2,13.4,81.83,934,9.200000000000001 -2013,5,11,7,30,309,71,681,3,16.8,69.52,934,9.4 -2013,5,11,8,30,533,88,815,4,19.700000000000003,56.92,934,8.5 -2013,5,11,9,30,733,99,886,4.5,21.700000000000003,44.27,934,7.1000000000000005 -2013,5,11,10,30,893,106,926,4.7,23.400000000000002,31.92,934,6.4 -2013,5,11,11,30,997,111,947,5,24.6,20.77,933,5.9 -2013,5,11,12,30,1036,119,946,5,25.6,14.35,933,5.7 -2013,5,11,13,30,1007,119,936,4.7,26,18.580000000000002,933,5.7 -2013,5,11,14,30,666,428,273,4.4,25.900000000000002,29.11,932,5.5 -2013,5,11,15,30,767,119,862,4.3,25.400000000000002,41.29,932,5.1000000000000005 -2013,5,11,16,30,578,103,807,4.1000000000000005,24.900000000000002,53.9,932,4.5 -2013,5,11,17,30,361,82,700,3.9000000000000004,24.5,66.52,932,4 -2013,5,11,18,30,144,52,478,2.1,20.700000000000003,78.91,933,4.9 -2013,5,11,19,30,0,0,0,1.5,17.8,91,933,6.6000000000000005 -2013,5,11,20,30,0,0,0,1.5,16.6,102.32000000000001,934,6.300000000000001 -2013,5,11,21,30,0,0,0,1.5,15.8,112.54,934,6.2 -2013,5,11,22,30,0,0,0,1.4000000000000001,14.8,121.06,934,6.1000000000000005 -2013,5,11,23,30,0,0,0,1.3,14,127.01,934,6 -2013,5,12,0,30,0,0,0,1.3,13.3,129.46,934,6 -2013,5,12,1,30,0,0,0,1.3,12.600000000000001,127.91,934,6 -2013,5,12,2,30,0,0,0,1.4000000000000001,11.9,122.69,934,6.1000000000000005 -2013,5,12,3,30,0,0,0,1.5,11.3,114.68,934,6.4 -2013,5,12,4,30,0,0,0,1.7000000000000002,10.8,104.79,935,6.9 -2013,5,12,5,30,0,0,0,2.3000000000000003,11.3,93.68,936,7.4 -2013,5,12,6,30,74,49,171,3.2,13.3,81.69,936,7.7 -2013,5,12,7,30,273,96,502,3.7,16.2,69.39,937,6.9 -2013,5,12,8,30,530,100,786,3.7,19.200000000000003,56.800000000000004,937,6.300000000000001 -2013,5,12,9,30,730,115,858,3.2,21.700000000000003,44.15,937,6.800000000000001 -2013,5,12,10,30,889,124,900,2.5,23.6,31.78,936,7.300000000000001 -2013,5,12,11,30,994,133,920,2,24.900000000000002,20.59,935,7.2 -2013,5,12,12,30,988,288,722,1.7000000000000002,25.8,14.1,935,6.6000000000000005 -2013,5,12,13,30,845,431,437,1.7000000000000002,26.3,18.38,934,6 -2013,5,12,14,30,770,366,462,2,26.400000000000002,28.97,933,5.6000000000000005 -2013,5,12,15,30,623,298,431,2.5,26.1,41.17,932,5.300000000000001 -2013,5,12,16,30,524,153,628,2.9000000000000004,25.3,53.79,932,5.1000000000000005 -2013,5,12,17,30,342,80,654,3,24.8,66.41,932,5 -2013,5,12,18,30,89,71,96,2.3000000000000003,21.400000000000002,78.79,932,5.9 -2013,5,12,19,30,0,0,0,2.4000000000000004,19.1,90.86,933,7.4 -2013,5,12,20,30,0,0,0,3,18.1,102.16,934,7.4 -2013,5,12,21,30,0,0,0,3.3000000000000003,17.2,112.36,934,7.6000000000000005 -2013,5,12,22,30,0,0,0,3.4000000000000004,16.3,120.85000000000001,934,7.7 -2013,5,12,23,30,0,0,0,3.4000000000000004,15.5,126.77,934,7.800000000000001 -2013,5,13,0,30,0,0,0,3.5,14.700000000000001,129.21,934,7.800000000000001 -2013,5,13,1,30,0,0,0,3.5,14,127.67,934,7.7 -2013,5,13,2,30,0,0,0,3.4000000000000004,13.3,122.47,934,7.7 -2013,5,13,3,30,0,0,0,3.3000000000000003,12.700000000000001,114.49000000000001,934,7.7 -2013,5,13,4,30,0,0,0,3.2,12.100000000000001,104.62,935,7.4 -2013,5,13,5,30,0,0,0,3.5,12.4,93.53,935,7 -2013,5,13,6,30,106,41,446,3.8000000000000003,14.3,81.57000000000001,936,6.6000000000000005 -2013,5,13,7,30,321,68,715,4.1000000000000005,18,69.27,936,6.4 -2013,5,13,8,30,546,84,841,4.4,22.200000000000003,56.68,936,5.1000000000000005 -2013,5,13,9,30,748,93,910,4.2,25.200000000000003,44.03,935,3.1 -2013,5,13,10,30,908,100,949,4,27.200000000000003,31.650000000000002,935,2.4000000000000004 -2013,5,13,11,30,1013,104,971,4.1000000000000005,28.700000000000003,20.41,934,2 -2013,5,13,12,30,1055,103,981,4.4,29.700000000000003,13.86,934,2.1 -2013,5,13,13,30,1027,102,974,4.7,30.200000000000003,18.19,933,2.4000000000000004 -2013,5,13,14,30,936,99,956,4.9,30.200000000000003,28.830000000000002,932,2.7 -2013,5,13,15,30,789,96,918,4.800000000000001,29.700000000000003,41.06,932,2.8000000000000003 -2013,5,13,16,30,596,86,860,4.6000000000000005,28.8,53.68,932,2.8000000000000003 -2013,5,13,17,30,375,71,756,4.4,28.200000000000003,66.29,932,2.7 -2013,5,13,18,30,154,48,540,2.8000000000000003,23.700000000000003,78.67,932,3.8000000000000003 -2013,5,13,19,30,0,0,0,2.5,20.700000000000003,90.19,932,5.6000000000000005 -2013,5,13,20,30,0,0,0,3.2,19.700000000000003,102,933,5.6000000000000005 -2013,5,13,21,30,0,0,0,3.9000000000000004,19,112.18,933,5.9 -2013,5,13,22,30,0,0,0,4,18.1,120.64,933,6.6000000000000005 -2013,5,13,23,30,0,0,0,3.9000000000000004,17.2,126.54,933,7.7 -2013,5,14,0,30,0,0,0,3.8000000000000003,16.5,128.97,932,8.9 -2013,5,14,1,30,0,0,0,3.6,15.9,127.43,932,9.9 -2013,5,14,2,30,0,0,0,3.5,15.4,122.26,932,10.5 -2013,5,14,3,30,0,0,0,3.2,14.8,114.3,932,11 -2013,5,14,4,30,0,0,0,2.8000000000000003,14.200000000000001,104.46000000000001,932,11.3 -2013,5,14,5,30,0,0,0,2.9000000000000004,14.3,93.39,932,11.600000000000001 -2013,5,14,6,30,100,45,374,3.7,16.2,81.44,932,12 -2013,5,14,7,30,305,82,626,4.800000000000001,19.400000000000002,69.16,932,12.3 -2013,5,14,8,30,516,108,742,5.300000000000001,22.400000000000002,56.57,932,12.100000000000001 -2013,5,14,9,30,708,131,801,5.300000000000001,24.8,43.92,932,11.9 -2013,5,14,10,30,859,148,834,5.300000000000001,26.700000000000003,31.52,931,11.9 -2013,5,14,11,30,957,159,850,5.5,27.900000000000002,20.240000000000002,930,12.100000000000001 -2013,5,14,12,30,1004,138,892,5.800000000000001,28.400000000000002,13.620000000000001,930,12.5 -2013,5,14,13,30,977,143,877,6.1000000000000005,28.1,18,929,13 -2013,5,14,14,30,887,146,845,6.300000000000001,27.200000000000003,28.7,928,13.5 -2013,5,14,15,30,748,126,824,6.300000000000001,26.200000000000003,40.94,928,14 -2013,5,14,16,30,561,114,753,5.9,25.200000000000003,53.57,928,14.4 -2013,5,14,17,30,350,93,636,5.7,24.700000000000003,66.18,928,14.700000000000001 -2013,5,14,18,30,142,58,422,4.4,22.5,78.55,927,15 -2013,5,14,19,30,0,0,0,3.7,21.1,90.08,928,15.3 -2013,5,14,20,30,0,0,0,3.5,20.1,101.85000000000001,928,15.4 -2013,5,14,21,30,0,0,0,3.6,19.3,112,928,15.3 -2013,5,14,22,30,0,0,0,3.7,18.5,120.44,928,15.100000000000001 -2013,5,14,23,30,0,0,0,3.8000000000000003,18,126.31,928,15.100000000000001 -2013,5,15,0,30,0,0,0,3.8000000000000003,17.7,128.73,928,15.3 -2013,5,15,1,30,0,0,0,3.7,17.5,127.2,927,15.600000000000001 -2013,5,15,2,30,0,0,0,3.6,17.2,122.05,927,16.2 -2013,5,15,3,30,0,0,0,3.6,17,114.12,926,16.7 -2013,5,15,4,30,0,0,0,3.6,16.900000000000002,104.3,926,16.900000000000002 -2013,5,15,5,30,0,0,0,3.8000000000000003,17.1,93.25,926,17.1 -2013,5,15,6,30,46,46,0,4.3,17.7,81.32000000000001,926,17.5 -2013,5,15,7,30,193,144,135,5.300000000000001,19.1,69.05,926,17.900000000000002 -2013,5,15,8,30,331,247,153,6.1000000000000005,21.5,56.47,926,17.7 -2013,5,15,9,30,711,139,793,6.1000000000000005,24,43.82,925,16.8 -2013,5,15,10,30,866,143,847,5.800000000000001,26,31.400000000000002,925,15.8 -2013,5,15,11,30,968,149,872,5.5,27.6,20.080000000000002,924,14.8 -2013,5,15,12,30,654,507,151,5.2,28.900000000000002,13.39,923,14 -2013,5,15,13,30,981,146,877,4.9,30,17.82,922,13.200000000000001 -2013,5,15,14,30,891,146,848,4.6000000000000005,30.8,28.560000000000002,921,12.600000000000001 -2013,5,15,15,30,160,157,5,4.3,31.200000000000003,40.83,920,12 -2013,5,15,16,30,561,123,736,3.7,30.6,53.46,919,11.600000000000001 -2013,5,15,17,30,84,84,0,3.3000000000000003,30,66.07000000000001,919,13.200000000000001 -2013,5,15,18,30,71,69,12,2.4000000000000004,25.6,78.43,919,16.2 -2013,5,15,19,30,0,0,0,2.5,23.200000000000003,89.97,919,15.700000000000001 -2013,5,15,20,30,0,0,0,2.6,21.900000000000002,101.69,919,15 -2013,5,15,21,30,0,0,0,2.5,20.8,111.82000000000001,920,14.4 -2013,5,15,22,30,0,0,0,2.6,19.700000000000003,120.23,920,14.100000000000001 -2013,5,15,23,30,0,0,0,3.1,18.900000000000002,126.09,920,14 -2013,5,16,0,30,0,0,0,3.5,18.400000000000002,128.5,920,14.5 -2013,5,16,1,30,0,0,0,3.5,17.900000000000002,126.98,920,15.700000000000001 -2013,5,16,2,30,0,0,0,3.3000000000000003,17.400000000000002,121.85000000000001,920,16.900000000000002 -2013,5,16,3,30,0,0,0,2.9000000000000004,17.1,113.94,920,17.1 -2013,5,16,4,30,0,0,0,2.4000000000000004,16.900000000000002,104.15,920,16.900000000000002 -2013,5,16,5,30,0,0,0,2.3000000000000003,17.2,93.12,920,17.2 -2013,5,16,6,30,103,49,351,2.9000000000000004,18.5,81.21000000000001,920,17.900000000000002 -2013,5,16,7,30,309,81,635,3.3000000000000003,20.900000000000002,68.95,921,17.900000000000002 -2013,5,16,8,30,529,94,786,2.8000000000000003,23.900000000000002,56.370000000000005,921,17 -2013,5,16,9,30,729,103,867,1.9000000000000001,26.900000000000002,43.72,921,15.9 -2013,5,16,10,30,887,108,911,1.8,29.8,31.29,921,14.8 -2013,5,16,11,30,992,111,938,2.2,32.300000000000004,19.92,921,13 -2013,5,16,12,30,1033,112,945,2.3000000000000003,33.9,13.16,920,11.200000000000001 -2013,5,16,13,30,1005,111,938,2.1,34.6,17.64,920,10.700000000000001 -2013,5,16,14,30,917,107,921,1.7000000000000002,34.9,28.43,919,10.4 -2013,5,16,15,30,772,101,886,1.2000000000000002,34.7,40.72,919,10.200000000000001 -2013,5,16,16,30,584,90,828,1,34.1,53.35,919,10 -2013,5,16,17,30,369,74,724,1.2000000000000002,33.7,65.96000000000001,919,10.200000000000001 -2013,5,16,18,30,153,50,507,1.8,28.8,78.31,919,13.5 -2013,5,16,19,30,0,0,0,2.9000000000000004,26.1,89.86,919,13 -2013,5,16,20,30,0,0,0,3.8000000000000003,24.900000000000002,101.54,920,12.8 -2013,5,16,21,30,0,0,0,4.1000000000000005,23.6,111.65,921,14.3 -2013,5,16,22,30,0,0,0,4,22.400000000000002,120.04,921,15.600000000000001 -2013,5,16,23,30,0,0,0,3.8000000000000003,21.400000000000002,125.87,921,16.5 -2013,5,17,0,30,0,0,0,3.6,20.5,128.27,921,17 -2013,5,17,1,30,0,0,0,3.5,19.6,126.76,921,17.2 -2013,5,17,2,30,0,0,0,3.6,18.6,121.65,921,16.8 -2013,5,17,3,30,0,0,0,3.6,17.900000000000002,113.77,921,15.8 -2013,5,17,4,30,0,0,0,3.6,17.2,104,921,14.4 -2013,5,17,5,30,0,0,0,3.9000000000000004,17.2,92.99,922,12.600000000000001 -2013,5,17,6,30,112,43,445,4.2,19,81.10000000000001,922,11.100000000000001 -2013,5,17,7,30,328,71,713,4.1000000000000005,22.5,68.85000000000001,922,10.3 -2013,5,17,8,30,552,87,837,3.8000000000000003,26.8,56.28,922,10.3 -2013,5,17,9,30,753,98,905,3.7,30.8,43.62,922,10 -2013,5,17,10,30,913,105,944,3.9000000000000004,34.4,31.18,922,8.9 -2013,5,17,11,30,1014,109,962,4,36.9,19.77,922,6.300000000000001 -2013,5,17,12,30,1056,110,971,3.8000000000000003,38.2,12.94,921,5.300000000000001 -2013,5,17,13,30,1027,110,961,3.7,38.800000000000004,17.46,921,4.9 -2013,5,17,14,30,934,109,937,3.6,38.800000000000004,28.310000000000002,920,4.800000000000001 -2013,5,17,15,30,782,105,892,3.7,38.2,40.61,920,5.1000000000000005 -2013,5,17,16,30,586,98,816,3.7,37,53.25,920,5.800000000000001 -2013,5,17,17,30,287,150,335,3.6,36.1,65.85,919,8.3 -2013,5,17,18,30,150,58,448,3.3000000000000003,31.400000000000002,78.19,920,12.100000000000001 -2013,5,17,19,30,0,0,0,4.2,29.400000000000002,89.75,920,13.4 -2013,5,17,20,30,0,0,0,4.800000000000001,28.1,101.39,921,14.200000000000001 -2013,5,17,21,30,0,0,0,4.800000000000001,26.700000000000003,111.48,922,14.700000000000001 -2013,5,17,22,30,0,0,0,4.7,25.5,119.84,922,15.200000000000001 -2013,5,17,23,30,0,0,0,4.800000000000001,24.6,125.66,922,15.700000000000001 -2013,5,18,0,30,0,0,0,5,24.1,128.05,922,16.1 -2013,5,18,1,30,0,0,0,5.300000000000001,23.700000000000003,126.55,922,16.6 -2013,5,18,2,30,0,0,0,5.4,23.3,121.46000000000001,922,17.1 -2013,5,18,3,30,0,0,0,5.4,22.8,113.61,922,17.7 -2013,5,18,4,30,0,0,0,5.1000000000000005,22.1,103.86,922,18.3 -2013,5,18,5,30,0,0,0,5,21.700000000000003,92.87,922,18.8 -2013,5,18,6,30,104,50,342,5.2,22.700000000000003,80.99,923,19.200000000000003 -2013,5,18,7,30,308,85,615,5.800000000000001,25.200000000000003,68.75,923,19.5 -2013,5,18,8,30,312,247,117,6.2,28.5,56.19,923,19.1 -2013,5,18,9,30,629,255,516,6.300000000000001,31.3,43.53,923,17.7 -2013,5,18,10,30,769,350,489,6.6000000000000005,33.300000000000004,31.07,922,16.400000000000002 -2013,5,18,11,30,741,466,292,6.9,34.5,19.63,922,15.9 -2013,5,18,12,30,834,448,396,7.2,35.1,12.72,921,15.8 -2013,5,18,13,30,538,466,75,7.4,35.2,17.29,920,15.5 -2013,5,18,14,30,804,368,495,7.5,34.800000000000004,28.18,920,15.200000000000001 -2013,5,18,15,30,633,300,437,7.6000000000000005,34,40.5,919,15 -2013,5,18,16,30,557,134,705,7.5,33,53.14,919,14.700000000000001 -2013,5,18,17,30,354,100,618,7.5,32.4,65.74,919,14.700000000000001 -2013,5,18,18,30,147,62,410,7.2,29.1,78.07000000000001,919,15.700000000000001 -2013,5,18,19,30,0,0,0,7,27,89.63,920,17.1 -2013,5,18,20,30,0,0,0,6.9,25.6,101.24000000000001,920,18.1 -2013,5,18,21,30,0,0,0,6.800000000000001,24.700000000000003,111.31,921,18.5 -2013,5,18,22,30,0,0,0,6.6000000000000005,24.1,119.65,921,18.2 -2013,5,18,23,30,0,0,0,6.2,23.3,125.45,921,17.6 -2013,5,19,0,30,0,0,0,5.800000000000001,22.5,127.83,921,17.3 -2013,5,19,1,30,0,0,0,5.300000000000001,21.6,126.34,921,17.2 -2013,5,19,2,30,0,0,0,4.800000000000001,20.8,121.27,920,17.1 -2013,5,19,3,30,0,0,0,4.6000000000000005,20,113.45,920,17.1 -2013,5,19,4,30,0,0,0,4.6000000000000005,19.3,103.72,920,17.1 -2013,5,19,5,30,0,0,0,4.7,19.1,92.75,920,17.1 -2013,5,19,6,30,108,50,367,5.2,20.5,80.89,920,16.900000000000002 -2013,5,19,7,30,321,82,655,5.6000000000000005,23.6,68.66,920,16.2 -2013,5,19,8,30,544,97,801,5.300000000000001,27.400000000000002,56.1,920,13.4 -2013,5,19,9,30,747,104,885,5,30.8,43.44,920,9 -2013,5,19,10,30,910,109,934,5,33.1,30.98,920,4.9 -2013,5,19,11,30,1019,109,965,5.300000000000001,34.7,19.490000000000002,919,2.6 -2013,5,19,12,30,1067,105,985,5.5,35.7,12.51,919,1.5 -2013,5,19,13,30,1042,105,980,5.6000000000000005,36.2,17.12,918,0.8 -2013,5,19,14,30,951,103,960,5.5,36.300000000000004,28.060000000000002,918,0.2 -2013,5,19,15,30,804,97,928,5.4,36,40.4,917,-0.4 -2013,5,19,16,30,610,89,866,5.2,35.2,53.04,917,-1 -2013,5,19,17,30,389,76,758,5,34.6,65.63,917,-1.1 -2013,5,19,18,30,166,54,536,2.6,29.1,77.95,918,2 -2013,5,19,19,30,0,0,0,2.1,25.400000000000002,89.51,918,4.5 -2013,5,19,20,30,0,0,0,2.2,23.900000000000002,101.10000000000001,919,4.2 -2013,5,19,21,30,0,0,0,2.3000000000000003,22.900000000000002,111.14,919,4.3 -2013,5,19,22,30,0,0,0,2.6,22.200000000000003,119.46000000000001,919,5.2 -2013,5,19,23,30,0,0,0,3.1,21.6,125.24000000000001,919,7.2 -2013,5,20,0,30,0,0,0,3.8000000000000003,21.1,127.62,919,9.9 -2013,5,20,1,30,0,0,0,4,20.700000000000003,126.14,919,12.600000000000001 -2013,5,20,2,30,0,0,0,4,20.1,121.09,919,14.700000000000001 -2013,5,20,3,30,0,0,0,4,19.5,113.29,920,16.6 -2013,5,20,4,30,0,0,0,3.8000000000000003,19,103.59,920,17.8 -2013,5,20,5,30,0,0,0,3.9000000000000004,19.200000000000003,92.64,920,18.5 -2013,5,20,6,30,103,59,274,4.9,20.700000000000003,80.8,921,18.8 -2013,5,20,7,30,305,108,540,6.1000000000000005,23.5,68.58,921,19 -2013,5,20,8,30,523,128,707,6.4,26.700000000000003,56.02,921,18.6 -2013,5,20,9,30,724,134,811,6.2,29.700000000000003,43.36,921,17.1 -2013,5,20,10,30,883,138,868,5.800000000000001,32.4,30.88,920,14.600000000000001 -2013,5,20,11,30,991,138,903,5.4,34.5,19.36,920,11.8 -2013,5,20,12,30,1037,131,927,4.9,36,12.31,919,9.1 -2013,5,20,13,30,1017,126,931,4.6000000000000005,36.9,16.96,918,6.7 -2013,5,20,14,30,932,118,921,4.4,37.1,27.94,918,4.800000000000001 -2013,5,20,15,30,787,116,880,4.2,36.800000000000004,40.29,917,3.1 -2013,5,20,16,30,600,102,826,3.7,35.9,52.94,917,1.7000000000000002 -2013,5,20,17,30,385,83,728,3.5,35.4,65.52,917,0.8 -2013,5,20,18,30,166,56,521,1.3,29.6,77.84,917,6.6000000000000005 -2013,5,20,19,30,0,0,0,1.1,26.6,89.4,918,8.1 -2013,5,20,20,30,0,0,0,0.9,25.900000000000002,100.95,918,6.9 -2013,5,20,21,30,0,0,0,1.1,24.700000000000003,110.98,919,6.300000000000001 -2013,5,20,22,30,0,0,0,1.8,22.6,119.28,919,7.5 -2013,5,20,23,30,0,0,0,2.8000000000000003,21.700000000000003,125.04,919,10 -2013,5,21,0,30,0,0,0,3.9000000000000004,21.6,127.42,919,13.4 -2013,5,21,1,30,0,0,0,4.3,21.200000000000003,125.95,919,16.6 -2013,5,21,2,30,0,0,0,4.1000000000000005,20.6,120.92,919,18.5 -2013,5,21,3,30,0,0,0,3.3000000000000003,19.900000000000002,113.14,919,19 -2013,5,21,4,30,0,0,0,2.3000000000000003,19.200000000000003,103.47,919,19 -2013,5,21,5,30,0,0,0,1.7000000000000002,19.3,92.53,919,18.7 -2013,5,21,6,30,96,64,202,2.2,20.900000000000002,80.71000000000001,920,18.3 -2013,5,21,7,30,149,137,34,3.1,23.3,68.49,920,18.3 -2013,5,21,8,30,290,243,83,3.3000000000000003,25.5,55.95,921,17.8 -2013,5,21,9,30,687,211,654,3.8000000000000003,26.8,43.29,921,16.3 -2013,5,21,10,30,121,121,0,5.300000000000001,27.1,30.8,922,14.4 -2013,5,21,11,30,294,279,16,6.6000000000000005,26.400000000000002,19.23,923,12.600000000000001 -2013,5,21,12,30,727,505,227,6.800000000000001,25.8,12.11,923,10.8 -2013,5,21,13,30,1005,151,892,6.4,25.700000000000003,16.79,923,9.3 -2013,5,21,14,30,931,124,912,6.1000000000000005,25.8,27.82,923,7.800000000000001 -2013,5,21,15,30,792,100,906,5.7,25.700000000000003,40.19,923,6.800000000000001 -2013,5,21,16,30,604,87,856,5.2,25,52.83,923,6.6000000000000005 -2013,5,21,17,30,388,71,762,4.9,24.6,65.42,923,6.7 -2013,5,21,18,30,170,49,566,3.1,21.8,77.72,924,7 -2013,5,21,19,30,0,0,0,1.7000000000000002,19.400000000000002,89.28,924,7.9 -2013,5,21,20,30,0,0,0,1.3,18,100.81,925,8.5 -2013,5,21,21,30,0,0,0,1.3,17,110.82000000000001,925,8.5 -2013,5,21,22,30,0,0,0,1.3,16.2,119.10000000000001,925,8.4 -2013,5,21,23,30,0,0,0,1.3,15.600000000000001,124.85000000000001,925,8.3 -2013,5,22,0,30,0,0,0,1.4000000000000001,15,127.22,924,8.3 -2013,5,22,1,30,0,0,0,1.4000000000000001,14.5,125.76,924,8.3 -2013,5,22,2,30,0,0,0,1.4000000000000001,14,120.75,924,8.4 -2013,5,22,3,30,0,0,0,1.3,13.5,113,925,8.5 -2013,5,22,4,30,0,0,0,1.2000000000000002,13,103.34,925,8.700000000000001 -2013,5,22,5,30,0,0,0,1.6,13.8,92.43,925,8.8 -2013,5,22,6,30,123,38,520,2.1,16.3,80.62,926,8.9 -2013,5,22,7,30,336,60,751,2.9000000000000004,20.3,68.42,926,9.1 -2013,5,22,8,30,555,74,859,3.9000000000000004,24.6,55.88,926,5.800000000000001 -2013,5,22,9,30,754,84,920,4.3,27.400000000000002,43.22,926,3.5 -2013,5,22,10,30,911,91,954,4.5,29.5,30.72,926,3.2 -2013,5,22,11,30,1013,96,971,4.7,31.200000000000003,19.11,925,3.2 -2013,5,22,12,30,1053,99,975,4.9,32.5,11.92,924,3.1 -2013,5,22,13,30,1028,100,968,5,33.4,16.64,923,3.1 -2013,5,22,14,30,939,98,950,5.1000000000000005,33.9,27.7,922,3.1 -2013,5,22,15,30,796,95,916,5.1000000000000005,33.9,40.09,922,3.1 -2013,5,22,16,30,603,88,849,5,33.2,52.730000000000004,921,3.2 -2013,5,22,17,30,384,78,734,5,32.800000000000004,65.31,921,3.5 -2013,5,22,18,30,164,56,505,4.2,29,77.61,921,4.800000000000001 -2013,5,22,19,30,0,0,0,4.5,26.400000000000002,89.18,922,6.1000000000000005 -2013,5,22,20,30,0,0,0,4.9,24.700000000000003,100.67,922,7.1000000000000005 -2013,5,22,21,30,0,0,0,5,23.400000000000002,110.66,923,8.5 -2013,5,22,22,30,0,0,0,5.1000000000000005,22.6,118.92,923,10.100000000000001 -2013,5,22,23,30,0,0,0,5.1000000000000005,22.200000000000003,124.66,923,11.700000000000001 -2013,5,23,0,30,0,0,0,4.9,21.8,127.02,923,13.3 -2013,5,23,1,30,0,0,0,4.6000000000000005,21.3,125.57000000000001,924,14.700000000000001 -2013,5,23,2,30,0,0,0,4.2,20.900000000000002,120.59,924,15.8 -2013,5,23,3,30,0,0,0,4,20.5,112.86,924,17 -2013,5,23,4,30,0,0,0,3.9000000000000004,20.200000000000003,103.23,925,18.3 -2013,5,23,5,30,0,0,0,4,20.400000000000002,92.34,925,19.400000000000002 -2013,5,23,6,30,105,59,275,4.5,21.700000000000003,80.54,926,20.200000000000003 -2013,5,23,7,30,304,102,548,5.2,23.900000000000002,68.35000000000001,926,20.900000000000002 -2013,5,23,8,30,519,118,713,5.4,26.1,55.81,926,20.6 -2013,5,23,9,30,712,127,801,5.1000000000000005,27.5,43.15,926,20 -2013,5,23,10,30,865,134,850,4.9,28.400000000000002,30.64,927,20 -2013,5,23,11,30,966,138,876,5,28.8,19,926,20.400000000000002 -2013,5,23,12,30,1004,150,872,5.2,29.1,11.73,926,20.700000000000003 -2013,5,23,13,30,981,146,871,5.5,29.200000000000003,16.48,926,20.8 -2013,5,23,14,30,898,139,856,5.800000000000001,29,27.59,926,20.6 -2013,5,23,15,30,753,144,795,6,28.6,39.980000000000004,926,20.3 -2013,5,23,16,30,573,123,740,6,27.8,52.63,926,19.900000000000002 -2013,5,23,17,30,115,115,0,6.1000000000000005,27.3,65.21000000000001,925,19.5 -2013,5,23,18,30,57,57,0,5.7,24.700000000000003,77.5,925,19.5 -2013,5,23,19,30,0,0,0,4,23.1,89.06,926,19.8 -2013,5,23,20,30,0,0,0,2.7,22.1,100.53,928,20.1 -2013,5,23,21,30,0,0,0,2.7,21.700000000000003,110.51,929,20.3 -2013,5,23,22,30,0,0,0,3.5,21.3,118.75,929,20.1 -2013,5,23,23,30,0,0,0,4,20.900000000000002,124.47,929,20 -2013,5,24,0,30,0,0,0,4.1000000000000005,20.5,126.84,928,20 -2013,5,24,1,30,0,0,0,3.7,20.200000000000003,125.4,928,20 -2013,5,24,2,30,0,0,0,3.2,19.900000000000002,120.43,928,19.900000000000002 -2013,5,24,3,30,0,0,0,2.7,19.5,112.73,928,19.5 -2013,5,24,4,30,0,0,0,2.7,19.3,103.12,929,19.3 -2013,5,24,5,30,0,0,0,3,19.3,92.24,929,19.3 -2013,5,24,6,30,45,45,0,3.5,19.700000000000003,80.46000000000001,929,19.6 -2013,5,24,7,30,207,149,155,4.1000000000000005,20.8,68.28,930,19.700000000000003 -2013,5,24,8,30,369,247,215,4.2,22.200000000000003,55.75,931,19.6 -2013,5,24,9,30,490,348,194,4.1000000000000005,23.400000000000002,43.09,931,19.400000000000002 -2013,5,24,10,30,659,414,284,4,24.3,30.57,931,19.3 -2013,5,24,11,30,760,457,320,4,24.700000000000003,18.900000000000002,931,19.200000000000003 -2013,5,24,12,30,712,507,210,4.2,24.900000000000002,11.56,931,19 -2013,5,24,13,30,780,453,341,4.3,24.8,16.330000000000002,930,18.900000000000002 -2013,5,24,14,30,720,403,356,4.6000000000000005,24.5,27.48,930,19 -2013,5,24,15,30,595,346,325,4.7,24,39.89,930,19.1 -2013,5,24,16,30,452,254,325,4.7,23.400000000000002,52.53,930,19.200000000000003 -2013,5,24,17,30,213,173,94,4.7,23,65.11,930,19.200000000000003 -2013,5,24,18,30,110,80,137,3.9000000000000004,21.5,77.39,930,19.3 -2013,5,24,19,30,4,4,0,3.7,20.5,88.95,931,19.400000000000002 -2013,5,24,20,30,0,0,0,3.7,19.900000000000002,100.4,931,19.6 -2013,5,24,21,30,0,0,0,3.8000000000000003,19.400000000000002,110.35000000000001,931,19.400000000000002 -2013,5,24,22,30,0,0,0,3.6,18.8,118.59,931,18.8 -2013,5,24,23,30,0,0,0,3.4000000000000004,18.3,124.29,931,18.3 -2013,5,25,0,30,0,0,0,3.3000000000000003,18,126.66,931,18 -2013,5,25,1,30,0,0,0,3.3000000000000003,17.900000000000002,125.23,930,17.900000000000002 -2013,5,25,2,30,0,0,0,3.2,17.8,120.28,931,17.8 -2013,5,25,3,30,0,0,0,3,17.7,112.60000000000001,931,17.7 -2013,5,25,4,30,0,0,0,3.1,17.6,103.01,931,17.6 -2013,5,25,5,30,0,0,0,3.5,17.8,92.16,931,17.8 -2013,5,25,6,30,114,47,403,4.3,18.7,80.39,931,18.1 -2013,5,25,7,30,105,105,0,5.2,20,68.21000000000001,932,18 -2013,5,25,8,30,153,152,1,5.5,21.6,55.69,932,17.400000000000002 -2013,5,25,9,30,717,105,838,5.4,23.3,43.04,932,17.1 -2013,5,25,10,30,869,114,877,5.2,24.900000000000002,30.51,931,17 -2013,5,25,11,30,763,452,329,5.1000000000000005,26.400000000000002,18.8,931,17.1 -2013,5,25,12,30,1008,123,903,5,27.700000000000003,11.38,930,17.1 -2013,5,25,13,30,837,437,417,4.9,28.3,16.19,929,17.2 -2013,5,25,14,30,784,377,459,4.800000000000001,28.400000000000002,27.37,928,17.2 -2013,5,25,15,30,725,223,654,4.7,28.1,39.79,928,17.3 -2013,5,25,16,30,375,278,160,4.5,27.400000000000002,52.44,928,17.3 -2013,5,25,17,30,304,150,363,4.4,26.900000000000002,65.01,927,17.5 -2013,5,25,18,30,162,63,449,3.7,24.5,77.28,927,18.1 -2013,5,25,19,30,11,10,48,3.8000000000000003,23.1,88.84,928,18.6 -2013,5,25,20,30,0,0,0,4,22,100.26,928,19.200000000000003 -2013,5,25,21,30,0,0,0,4.1000000000000005,21.1,110.21000000000001,928,19.700000000000003 -2013,5,25,22,30,0,0,0,4.3,20.400000000000002,118.42,928,20 -2013,5,25,23,30,0,0,0,4.2,19.900000000000002,124.12,928,19.900000000000002 -2013,5,26,0,30,0,0,0,3.7,19.700000000000003,126.48,928,19.700000000000003 -2013,5,26,1,30,0,0,0,3.3000000000000003,19.5,125.06,928,19.5 -2013,5,26,2,30,0,0,0,3.5,19.400000000000002,120.14,928,19.400000000000002 -2013,5,26,3,30,0,0,0,3.8000000000000003,19.3,112.48,928,19.3 -2013,5,26,4,30,0,0,0,3.9000000000000004,19.200000000000003,102.91,928,19.200000000000003 -2013,5,26,5,30,0,0,0,3.7,19.400000000000002,92.07000000000001,928,19.400000000000002 -2013,5,26,6,30,83,59,142,4.1000000000000005,20.5,80.32000000000001,928,19.700000000000003 -2013,5,26,7,30,192,150,111,4.800000000000001,22.6,68.16,929,19.8 -2013,5,26,8,30,455,195,462,5.1000000000000005,24.8,55.64,929,19.3 -2013,5,26,9,30,715,116,819,4.9,26.700000000000003,42.99,929,18.8 -2013,5,26,10,30,868,122,865,4.9,28.3,30.45,929,18.2 -2013,5,26,11,30,969,126,889,4.800000000000001,29.6,18.71,928,17.6 -2013,5,26,12,30,1012,116,913,4.800000000000001,30.700000000000003,11.22,927,17.1 -2013,5,26,13,30,991,114,913,4.9,31.400000000000002,16.05,927,16.8 -2013,5,26,14,30,907,108,898,5,31.8,27.26,926,16.5 -2013,5,26,15,30,756,173,758,5.2,31.700000000000003,39.69,925,16.3 -2013,5,26,16,30,588,88,818,5.4,31,52.34,925,16.3 -2013,5,26,17,30,380,73,723,5.5,30.5,64.91,925,16.5 -2013,5,26,18,30,170,51,537,4.9,27.700000000000003,77.17,925,16.900000000000002 -2013,5,26,19,30,12,10,96,4.5,25.900000000000002,88.74,925,17.5 -2013,5,26,20,30,0,0,0,4.5,24.5,100.13,926,18.1 -2013,5,26,21,30,0,0,0,4.9,23.5,110.06,926,18.6 -2013,5,26,22,30,0,0,0,5.300000000000001,22.400000000000002,118.26,926,19.200000000000003 -2013,5,26,23,30,0,0,0,5.300000000000001,21.3,123.95,926,19.8 -2013,5,27,0,30,0,0,0,5.2,20.400000000000002,126.31,925,19.900000000000002 -2013,5,27,1,30,0,0,0,5.1000000000000005,19.700000000000003,124.91,925,19.700000000000003 -2013,5,27,2,30,0,0,0,4.7,19.200000000000003,120,925,19.200000000000003 -2013,5,27,3,30,0,0,0,4.3,18.8,112.37,925,18.8 -2013,5,27,4,30,0,0,0,4.1000000000000005,18.6,102.82000000000001,925,18.6 -2013,5,27,5,30,0,0,0,4.4,18.8,92,925,18.400000000000002 -2013,5,27,6,30,114,53,361,5.300000000000001,20.3,80.26,925,18.400000000000002 -2013,5,27,7,30,317,87,615,6.2,22.6,68.1,925,18.3 -2013,5,27,8,30,528,105,749,6.6000000000000005,25.3,55.59,925,18.400000000000002 -2013,5,27,9,30,720,115,826,6.7,27.700000000000003,42.94,925,18.2 -2013,5,27,10,30,872,122,869,6.6000000000000005,29.700000000000003,30.39,924,17.8 -2013,5,27,11,30,971,127,891,6.7,31.3,18.62,924,17.400000000000002 -2013,5,27,12,30,1011,123,905,6.7,32.4,11.06,923,17.2 -2013,5,27,13,30,986,127,893,6.9,33,15.91,922,17 -2013,5,27,14,30,897,130,862,7,32.9,27.16,921,16.900000000000002 -2013,5,27,15,30,760,118,833,6.9,32.2,39.6,921,17 -2013,5,27,16,30,575,114,754,6.7,30.900000000000002,52.25,920,17.1 -2013,5,27,17,30,184,165,44,6.5,30.200000000000003,64.81,920,17.3 -2013,5,27,18,30,59,59,0,5.800000000000001,27.700000000000003,77.07000000000001,921,17.5 -2013,5,27,19,30,6,6,0,5.4,26,88.63,921,17.8 -2013,5,27,20,30,0,0,0,5.300000000000001,24.6,100,922,18.1 -2013,5,27,21,30,0,0,0,5.4,23.6,109.92,922,18.2 -2013,5,27,22,30,0,0,0,5.5,22.900000000000002,118.11,922,18.3 -2013,5,27,23,30,0,0,0,5.5,22.200000000000003,123.79,922,18.6 -2013,5,28,0,30,0,0,0,5.5,21.5,126.15,922,18.900000000000002 -2013,5,28,1,30,0,0,0,5.4,20.900000000000002,124.75,922,19.1 -2013,5,28,2,30,0,0,0,5.300000000000001,20.400000000000002,119.87,922,19.200000000000003 -2013,5,28,3,30,0,0,0,5.2,20.1,112.26,922,19.1 -2013,5,28,4,30,0,0,0,5.1000000000000005,19.900000000000002,102.73,922,18.900000000000002 -2013,5,28,5,30,0,0,0,5.2,19.900000000000002,91.92,921,18.7 -2013,5,28,6,30,70,60,56,5.800000000000001,20.400000000000002,80.2,921,18.3 -2013,5,28,7,30,37,37,0,6.6000000000000005,21.700000000000003,68.05,922,17.900000000000002 -2013,5,28,8,30,80,80,0,7.4,23.400000000000002,55.550000000000004,922,17.6 -2013,5,28,9,30,84,84,0,7.4,25.3,42.9,922,17.6 -2013,5,28,10,30,457,401,65,6.9,27.400000000000002,30.34,921,16.7 -2013,5,28,11,30,303,287,17,6.5,29,18.55,921,14.5 -2013,5,28,12,30,178,169,9,6.1000000000000005,29.6,10.9,921,13 -2013,5,28,13,30,455,417,39,5.6000000000000005,28.900000000000002,15.77,920,12.9 -2013,5,28,14,30,255,243,14,5.7,27.8,27.05,920,13.9 -2013,5,28,15,30,634,313,415,6.2,26.8,39.5,920,15.4 -2013,5,28,16,30,241,227,24,6.5,26.1,52.15,919,17 -2013,5,28,17,30,170,158,28,6.4,25.700000000000003,64.71000000000001,919,17.900000000000002 -2013,5,28,18,30,77,76,5,5.9,24.700000000000003,76.96000000000001,919,18.2 -2013,5,28,19,30,8,8,0,5.7,23.700000000000003,88.53,919,18.3 -2013,5,28,20,30,0,0,0,5.7,23,99.88,919,18.400000000000002 -2013,5,28,21,30,0,0,0,5.800000000000001,22.5,109.78,919,18.6 -2013,5,28,22,30,0,0,0,6.2,22,117.96000000000001,919,18.900000000000002 -2013,5,28,23,30,0,0,0,6.6000000000000005,21.6,123.63000000000001,919,19.400000000000002 -2013,5,29,0,30,0,0,0,6.800000000000001,21.200000000000003,125.99000000000001,919,19.700000000000003 -2013,5,29,1,30,0,0,0,6.5,21,124.61,919,19.700000000000003 -2013,5,29,2,30,0,0,0,6.1000000000000005,20.8,119.75,919,19.700000000000003 -2013,5,29,3,30,0,0,0,5.7,20.700000000000003,112.16,919,19.6 -2013,5,29,4,30,0,0,0,5.4,20.6,102.65,919,19.5 -2013,5,29,5,30,0,0,0,5.4,20.700000000000003,91.86,919,19.400000000000002 -2013,5,29,6,30,78,61,98,5.9,21.3,80.14,919,19.400000000000002 -2013,5,29,7,30,212,151,163,6.7,22.5,68.01,919,19.3 -2013,5,29,8,30,326,253,129,7.4,24.1,55.51,919,19.1 -2013,5,29,9,30,446,350,130,7.5,25.6,42.86,919,19 -2013,5,29,10,30,851,151,811,7.4,26.700000000000003,30.3,918,19 -2013,5,29,11,30,949,163,828,7.1000000000000005,27.8,18.47,918,18.8 -2013,5,29,12,30,986,173,828,7,29.1,10.76,917,18.400000000000002 -2013,5,29,13,30,454,417,39,7,30.200000000000003,15.64,917,17.900000000000002 -2013,5,29,14,30,640,449,214,7.1000000000000005,30.8,26.95,916,17.5 -2013,5,29,15,30,541,373,217,7.2,30.700000000000003,39.410000000000004,916,17.1 -2013,5,29,16,30,567,135,703,7.4,30.3,52.06,915,16.6 -2013,5,29,17,30,366,106,607,7.5,30,64.62,915,16.400000000000002 -2013,5,29,18,30,163,69,412,7.300000000000001,27.6,76.86,915,16.6 -2013,5,29,19,30,12,11,40,7.4,25.900000000000002,88.43,916,17.2 -2013,5,29,20,30,0,0,0,7.5,24.700000000000003,99.76,917,18.1 -2013,5,29,21,30,0,0,0,7.5,23.700000000000003,109.65,918,19 -2013,5,29,22,30,0,0,0,7.4,22.8,117.81,918,19.6 -2013,5,29,23,30,0,0,0,7,22,123.48,918,20 -2013,5,30,0,30,0,0,0,6.7,21.400000000000002,125.84,918,20.3 -2013,5,30,1,30,0,0,0,6.300000000000001,20.900000000000002,124.47,918,20.3 -2013,5,30,2,30,0,0,0,6.2,20.6,119.63,918,20.1 -2013,5,30,3,30,0,0,0,6.2,20.400000000000002,112.06,918,19.900000000000002 -2013,5,30,4,30,0,0,0,5.9,20.200000000000003,102.57000000000001,919,19.8 -2013,5,30,5,30,0,0,0,5.9,20.5,91.8,919,19.700000000000003 -2013,5,30,6,30,113,59,312,6.4,21.8,80.10000000000001,920,19.700000000000003 -2013,5,30,7,30,205,152,141,6.9,23.900000000000002,67.97,920,19.6 -2013,5,30,8,30,531,109,744,6.7,26.5,55.480000000000004,920,19.3 -2013,5,30,9,30,726,115,834,6.2,29.1,42.83,920,18.7 -2013,5,30,10,30,882,119,883,5.6000000000000005,31.400000000000002,30.26,920,17.5 -2013,5,30,11,30,986,122,911,5.2,33.4,18.41,920,16 -2013,5,30,12,30,1029,125,920,4.800000000000001,34.800000000000004,10.620000000000001,919,14.3 -2013,5,30,13,30,1009,122,921,4.7,35.7,15.52,918,12.600000000000001 -2013,5,30,14,30,927,114,911,4.7,36,26.85,918,11.100000000000001 -2013,5,30,15,30,744,206,695,4.6000000000000005,35.9,39.32,917,9.3 -2013,5,30,16,30,605,92,832,4.3,35.2,51.97,917,7.5 -2013,5,30,17,30,403,73,766,4.1000000000000005,34.7,64.52,917,6.5 -2013,5,30,18,30,186,51,590,2.3000000000000003,29.6,76.76,918,10.5 -2013,5,30,19,30,17,13,128,2.4000000000000004,26.3,88.33,919,11.600000000000001 -2013,5,30,20,30,0,0,0,3.2,24.900000000000002,99.64,919,11.200000000000001 -2013,5,30,21,30,0,0,0,4.3,24.200000000000003,109.52,920,12.5 -2013,5,30,22,30,0,0,0,5.1000000000000005,23.400000000000002,117.67,920,14.5 -2013,5,30,23,30,0,0,0,5.300000000000001,22.5,123.33,920,16.400000000000002 -2013,5,31,0,30,0,0,0,5.4,21.8,125.69,921,17.900000000000002 -2013,5,31,1,30,0,0,0,5.4,21.400000000000002,124.34,921,19 -2013,5,31,2,30,0,0,0,5.5,21.200000000000003,119.52,921,19.8 -2013,5,31,3,30,0,0,0,5.5,20.8,111.97,921,20.200000000000003 -2013,5,31,4,30,0,0,0,5.300000000000001,20.400000000000002,102.5,921,20.400000000000002 -2013,5,31,5,30,0,0,0,5.5,20.5,91.74,921,20.400000000000002 -2013,5,31,6,30,122,51,407,6.300000000000001,22,80.05,922,20.3 -2013,5,31,7,30,329,80,664,7,24.700000000000003,67.94,922,20.200000000000003 -2013,5,31,8,30,543,95,790,7.1000000000000005,27.8,55.45,922,19.900000000000002 -2013,5,31,9,30,737,106,860,6.9,30.6,42.800000000000004,922,19.1 -2013,5,31,10,30,890,114,899,6.6000000000000005,33.1,30.23,921,17.900000000000002 -2013,5,31,11,30,989,118,918,6.4,35.1,18.35,921,16.7 -2013,5,31,12,30,1032,114,934,6.300000000000001,36.5,10.48,920,15.600000000000001 -2013,5,31,13,30,1009,115,927,6.300000000000001,37.4,15.39,919,14.600000000000001 -2013,5,31,14,30,923,113,906,6.300000000000001,37.7,26.75,918,13.5 -2013,5,31,15,30,782,108,870,6.2,37.6,39.230000000000004,918,12.5 -2013,5,31,16,30,598,99,808,6,37,51.88,917,11.600000000000001 -2013,5,31,17,30,389,83,707,5.800000000000001,36.5,64.43,917,11.5 -2013,5,31,18,30,176,58,511,5.300000000000001,32.9,76.67,917,13.100000000000001 -2013,5,31,19,30,16,13,87,5.6000000000000005,30.5,88.23,917,15.200000000000001 -2013,5,31,20,30,0,0,0,6,29,99.52,918,17.2 -2013,5,31,21,30,0,0,0,6.1000000000000005,27.8,109.39,918,18.6 -2013,5,31,22,30,0,0,0,6.2,26.900000000000002,117.53,919,19.5 -2013,5,31,23,30,0,0,0,6.4,26,123.19,919,20.1 -2013,6,1,0,30,0,0,0,6.6000000000000005,25.200000000000003,125.55,919,20.200000000000003 -2013,6,1,1,30,0,0,0,6.800000000000001,24.3,124.21000000000001,919,20.1 -2013,6,1,2,30,0,0,0,6.5,23.5,119.41,919,20 -2013,6,1,3,30,0,0,0,5.5,22.700000000000003,111.88,920,20 -2013,6,1,4,30,0,0,0,3.9000000000000004,21.900000000000002,102.43,920,20 -2013,6,1,5,30,0,0,0,2.9000000000000004,21.900000000000002,91.69,921,20 -2013,6,1,6,30,119,51,394,3,23.400000000000002,80.01,922,19.700000000000003 -2013,6,1,7,30,321,84,629,3.2,25.5,67.91,923,19.200000000000003 -2013,6,1,8,30,239,220,34,3.5,27.400000000000002,55.43,924,18.8 -2013,6,1,9,30,634,260,510,4.3,28.8,42.78,924,18.1 -2013,6,1,10,30,872,134,854,5.4,29.6,30.2,925,17.2 -2013,6,1,11,30,805,424,402,6.1000000000000005,30.3,18.29,925,16.1 -2013,6,1,12,30,949,404,554,6.300000000000001,30.900000000000002,10.36,925,15 -2013,6,1,13,30,950,342,630,6.300000000000001,31.200000000000003,15.27,925,13.8 -2013,6,1,14,30,905,151,844,6.2,31.200000000000003,26.66,925,12.8 -2013,6,1,15,30,767,144,802,5.9,30.8,39.14,925,11.8 -2013,6,1,16,30,590,122,757,5.6000000000000005,30,51.800000000000004,925,10.700000000000001 -2013,6,1,17,30,384,95,667,5.4,29.400000000000002,64.34,925,9.8 -2013,6,1,18,30,177,63,492,3.8000000000000003,26.3,76.57000000000001,926,8.9 -2013,6,1,19,30,17,14,85,2.7,23.700000000000003,88.12,927,8.8 -2013,6,1,20,30,0,0,0,2.4000000000000004,21.900000000000002,99.41,928,8.6 -2013,6,1,21,30,0,0,0,2.4000000000000004,20.900000000000002,109.27,928,8.3 -2013,6,1,22,30,0,0,0,2.2,19.8,117.4,929,8.4 -2013,6,1,23,30,0,0,0,2,18.900000000000002,123.05,929,8.6 -2013,6,2,0,30,0,0,0,1.9000000000000001,18.1,125.42,929,8.8 -2013,6,2,1,30,0,0,0,1.9000000000000001,17.5,124.09,929,9 -2013,6,2,2,30,0,0,0,1.9000000000000001,16.8,119.31,929,9.1 -2013,6,2,3,30,0,0,0,1.9000000000000001,16.2,111.8,929,9.3 -2013,6,2,4,30,0,0,0,1.9000000000000001,15.600000000000001,102.37,930,9.700000000000001 -2013,6,2,5,30,0,0,0,2.5,15.9,91.64,931,10.200000000000001 -2013,6,2,6,30,127,46,463,3.6,18,79.97,932,10.700000000000001 -2013,6,2,7,30,336,74,697,4.6000000000000005,20.900000000000002,67.88,932,10.700000000000001 -2013,6,2,8,30,552,89,814,4.800000000000001,23.400000000000002,55.4,932,10 -2013,6,2,9,30,747,98,884,4.4,25.400000000000002,42.76,932,9.700000000000001 -2013,6,2,10,30,901,102,924,3.8000000000000003,27.3,30.17,931,9.4 -2013,6,2,11,30,1005,104,949,3.3000000000000003,28.8,18.240000000000002,931,9.1 -2013,6,2,12,30,1043,108,951,2.9000000000000004,30.1,10.24,930,8.700000000000001 -2013,6,2,13,30,1018,105,947,2.5,31,15.16,929,8.4 -2013,6,2,14,30,934,102,930,2.2,31.400000000000002,26.57,928,8.1 -2013,6,2,15,30,792,100,891,1.9000000000000001,31.5,39.050000000000004,927,7.7 -2013,6,2,16,30,608,92,833,1.9000000000000001,31.1,51.71,927,7.300000000000001 -2013,6,2,17,30,398,78,735,2,30.700000000000003,64.25,926,6.9 -2013,6,2,18,30,184,56,550,1.5,27.1,76.47,926,8.1 -2013,6,2,19,30,18,14,129,1.5,24.3,88.03,926,10.700000000000001 -2013,6,2,20,30,0,0,0,2.1,23.200000000000003,99.3,926,9.5 -2013,6,2,21,30,0,0,0,3,22.700000000000003,109.15,925,8.8 -2013,6,2,22,30,0,0,0,3.1,21.700000000000003,117.28,925,8.700000000000001 -2013,6,2,23,30,0,0,0,2.1,20.400000000000002,122.92,926,9.4 -2013,6,3,0,30,0,0,0,1.4000000000000001,19.3,125.3,927,10.4 -2013,6,3,1,30,0,0,0,1.9000000000000001,18.6,123.98,928,10.700000000000001 -2013,6,3,2,30,0,0,0,2.7,18.2,119.22,927,10.600000000000001 -2013,6,3,3,30,0,0,0,3,17.900000000000002,111.73,927,10.9 -2013,6,3,4,30,0,0,0,3,17.5,102.31,927,11.4 -2013,6,3,5,30,0,0,0,3.4000000000000004,17.900000000000002,91.60000000000001,927,11.8 -2013,6,3,6,30,85,61,135,4.1000000000000005,19.6,79.95,927,11.9 -2013,6,3,7,30,231,148,222,4.4,22.200000000000003,67.86,927,11.700000000000001 -2013,6,3,8,30,369,250,208,4.6000000000000005,25,55.39,927,11.700000000000001 -2013,6,3,9,30,561,327,319,4.7,27.5,42.74,927,13.600000000000001 -2013,6,3,10,30,870,130,856,4.800000000000001,29.5,30.150000000000002,926,15.100000000000001 -2013,6,3,11,30,908,379,557,4.7,30.8,18.2,925,15.600000000000001 -2013,6,3,12,30,1011,126,899,4.4,31.5,10.13,924,15.700000000000001 -2013,6,3,13,30,987,128,889,4.2,32,15.05,923,15.8 -2013,6,3,14,30,903,127,867,4.2,32.5,26.48,923,16 -2013,6,3,15,30,768,116,839,4.4,33,38.97,922,16.1 -2013,6,3,16,30,589,106,779,4.5,33,51.620000000000005,922,16.1 -2013,6,3,17,30,383,92,668,4.5,32.9,64.16,922,16.1 -2013,6,3,18,30,175,66,464,3.6,30.400000000000002,76.38,922,16.2 -2013,6,3,19,30,17,15,79,3.5,28.3,87.94,922,16.6 -2013,6,3,20,30,0,0,0,4.1000000000000005,27.1,99.19,923,16.7 -2013,6,3,21,30,0,0,0,4.4,26.1,109.03,923,16.900000000000002 -2013,6,3,22,30,0,0,0,4.3,25,117.15,923,17.2 -2013,6,3,23,30,0,0,0,4.3,24,122.8,923,17.5 -2013,6,4,0,30,0,0,0,4.4,23,125.18,923,17.5 -2013,6,4,1,30,0,0,0,4.4,22.1,123.87,923,17.400000000000002 -2013,6,4,2,30,0,0,0,4.2,21.3,119.13,923,17 -2013,6,4,3,30,0,0,0,4,20.700000000000003,111.66,923,16.5 -2013,6,4,4,30,0,0,0,3.8000000000000003,20.3,102.26,923,16.2 -2013,6,4,5,30,0,0,0,4,20.5,91.56,923,16 -2013,6,4,6,30,120,51,392,4.9,22.400000000000002,79.92,923,16.1 -2013,6,4,7,30,320,83,629,5.9,25.5,67.84,923,16.8 -2013,6,4,8,30,531,102,755,6.1000000000000005,29,55.38,923,16.900000000000002 -2013,6,4,9,30,722,115,826,5.800000000000001,32,42.730000000000004,923,16.6 -2013,6,4,10,30,875,124,869,5.5,34.4,30.14,922,16.3 -2013,6,4,11,30,976,127,893,5.2,36.300000000000004,18.17,922,16.2 -2013,6,4,12,30,1024,112,926,5.1000000000000005,37.7,10.02,921,16 -2013,6,4,13,30,1000,111,920,5.1000000000000005,38.6,14.94,920,15.600000000000001 -2013,6,4,14,30,914,108,901,5.2,39,26.39,919,15.3 -2013,6,4,15,30,723,250,608,5.2,38.900000000000006,38.89,919,14.9 -2013,6,4,16,30,596,92,810,5.2,38.300000000000004,51.54,918,14.4 -2013,6,4,17,30,389,79,709,5.2,37.800000000000004,64.07000000000001,918,14.4 -2013,6,4,18,30,180,57,520,5.300000000000001,34.1,76.29,919,15.700000000000001 -2013,6,4,19,30,19,14,118,5.6000000000000005,31.6,87.85000000000001,919,16.3 -2013,6,4,20,30,0,0,0,6,29.8,99.08,920,16.5 -2013,6,4,21,30,0,0,0,5.9,28.3,108.92,921,16.2 -2013,6,4,22,30,0,0,0,5.800000000000001,26.700000000000003,117.04,921,15.4 -2013,6,4,23,30,0,0,0,5.7,25.200000000000003,122.68,922,14.600000000000001 -2013,6,5,0,30,0,0,0,5.7,24,125.06,922,14.200000000000001 -2013,6,5,1,30,0,0,0,5.5,23,123.77,922,14.100000000000001 -2013,6,5,2,30,0,0,0,5.300000000000001,22.200000000000003,119.05,922,14.4 -2013,6,5,3,30,0,0,0,5,21.5,111.60000000000001,922,14.9 -2013,6,5,4,30,0,0,0,4.6000000000000005,20.8,102.22,922,15.5 -2013,6,5,5,30,0,0,0,4.6000000000000005,20.6,91.53,923,16.1 -2013,6,5,6,30,84,62,128,5.4,22,79.9,923,16.6 -2013,6,5,7,30,284,115,447,5.9,24.6,67.83,923,16.7 -2013,6,5,8,30,512,126,678,5.7,27.700000000000003,55.370000000000005,923,16.5 -2013,6,5,9,30,508,348,219,5.2,30.700000000000003,42.730000000000004,923,16 -2013,6,5,10,30,880,116,883,4.7,33.300000000000004,30.13,923,15.600000000000001 -2013,6,5,11,30,977,122,900,4.3,35.2,18.13,922,15.3 -2013,6,5,12,30,1018,119,913,4,36.4,9.92,922,15.3 -2013,6,5,13,30,992,119,903,3.8000000000000003,37,14.83,921,15.4 -2013,6,5,14,30,907,118,880,3.7,37,26.3,921,15.600000000000001 -2013,6,5,15,30,767,113,839,3.8000000000000003,36.300000000000004,38.800000000000004,920,15.8 -2013,6,5,16,30,586,106,770,3.8000000000000003,35.1,51.46,920,16 -2013,6,5,17,30,380,94,653,3.7,34.300000000000004,63.99,920,16.5 -2013,6,5,18,30,173,70,432,2.2,29.900000000000002,76.2,921,18.8 -2013,6,5,19,30,14,14,0,2.1,27.200000000000003,87.76,922,20 -2013,6,5,20,30,0,0,0,2.5,25.700000000000003,98.98,922,19 -2013,6,5,21,30,0,0,0,2.3000000000000003,24.200000000000003,108.81,923,18.3 -2013,6,5,22,30,0,0,0,1.6,22.8,116.92,924,18.3 -2013,6,5,23,30,0,0,0,1.5,21.8,122.56,924,18.900000000000002 -2013,6,6,0,30,0,0,0,1.9000000000000001,21.200000000000003,124.96000000000001,925,19.200000000000003 -2013,6,6,1,30,0,0,0,2.1,20.6,123.68,924,19.3 -2013,6,6,2,30,0,0,0,2.2,20.1,118.97,924,19.400000000000002 -2013,6,6,3,30,0,0,0,2.4000000000000004,19.6,111.54,925,19.400000000000002 -2013,6,6,4,30,0,0,0,2.7,19.1,102.17,925,19.1 -2013,6,6,5,30,0,0,0,3.4000000000000004,18.900000000000002,91.5,925,18.900000000000002 -2013,6,6,6,30,115,61,307,4.4,19.3,79.88,926,18.900000000000002 -2013,6,6,7,30,308,111,524,4.9,20.5,67.82000000000001,926,18.400000000000002 -2013,6,6,8,30,512,145,646,4.9,22.200000000000003,55.36,927,17.8 -2013,6,6,9,30,698,168,721,4.9,23.900000000000002,42.72,927,17.400000000000002 -2013,6,6,10,30,678,407,313,4.800000000000001,25.5,30.12,927,17.2 -2013,6,6,11,30,762,457,321,4.7,26.8,18.11,927,17 -2013,6,6,12,30,614,503,112,4.7,27.8,9.83,926,16.8 -2013,6,6,13,30,744,485,268,4.7,28.200000000000003,14.73,926,16.6 -2013,6,6,14,30,572,451,134,4.7,28.200000000000003,26.21,926,16.5 -2013,6,6,15,30,478,377,129,4.5,27.700000000000003,38.72,925,16.2 -2013,6,6,16,30,583,128,728,4.3,26.8,51.38,925,16 -2013,6,6,17,30,278,179,227,4.2,26.200000000000003,63.910000000000004,925,15.700000000000001 -2013,6,6,18,30,176,70,440,3.5,24,76.11,926,15.5 -2013,6,6,19,30,19,15,87,2.8000000000000003,22.400000000000002,87.67,926,15.600000000000001 -2013,6,6,20,30,0,0,0,2.5,21.200000000000003,98.89,927,15.8 -2013,6,6,21,30,0,0,0,2.3000000000000003,20.400000000000002,108.71000000000001,928,15.700000000000001 -2013,6,6,22,30,0,0,0,2,19.6,116.82000000000001,928,15.700000000000001 -2013,6,6,23,30,0,0,0,1.7000000000000002,18.900000000000002,122.46000000000001,928,15.600000000000001 -2013,6,7,0,30,0,0,0,1.4000000000000001,18.2,124.86,928,15.5 -2013,6,7,1,30,0,0,0,1,17.5,123.60000000000001,928,15.5 -2013,6,7,2,30,0,0,0,0.8,16.900000000000002,118.91,929,15.5 -2013,6,7,3,30,0,0,0,0.7000000000000001,16.5,111.49000000000001,929,15.5 -2013,6,7,4,30,0,0,0,0.6000000000000001,16.1,102.14,929,15.5 -2013,6,7,5,30,0,0,0,0.7000000000000001,16.7,91.48,929,15.5 -2013,6,7,6,30,79,62,96,1.3,18.7,79.87,929,15.4 -2013,6,7,7,30,234,147,232,1.9000000000000001,21.1,67.81,929,13.9 -2013,6,7,8,30,372,249,216,2.3000000000000003,23.5,55.36,929,12.4 -2013,6,7,9,30,491,350,193,2.5,25.5,42.730000000000004,929,11.4 -2013,6,7,10,30,691,399,338,2.5,27.3,30.12,929,10.700000000000001 -2013,6,7,11,30,732,473,273,2.5,28.6,18.09,928,10.3 -2013,6,7,12,30,857,458,405,2.4000000000000004,29.6,9.75,928,10 -2013,6,7,13,30,766,476,300,2.4000000000000004,30.200000000000003,14.64,927,9.8 -2013,6,7,14,30,746,388,398,2.5,30.400000000000002,26.13,926,9.700000000000001 -2013,6,7,15,30,763,182,744,2.7,30.200000000000003,38.65,926,9.600000000000001 -2013,6,7,16,30,608,92,825,2.8000000000000003,29.700000000000003,51.300000000000004,926,9.3 -2013,6,7,17,30,401,77,734,2.8000000000000003,29.3,63.83,925,9.1 -2013,6,7,18,30,191,54,568,2.4000000000000004,26.1,76.03,925,9.600000000000001 -2013,6,7,19,30,23,16,171,2.7,23.700000000000003,87.58,925,11.200000000000001 -2013,6,7,20,30,0,0,0,3.6,22.6,98.79,925,10.4 -2013,6,7,21,30,0,0,0,3.3000000000000003,21.5,108.61,925,10.5 -2013,6,7,22,30,0,0,0,2.5,20.200000000000003,116.71000000000001,926,11.100000000000001 -2013,6,7,23,30,0,0,0,2.5,19.3,122.36,926,11.5 -2013,6,8,0,30,0,0,0,3.1,18.8,124.76,927,11.700000000000001 -2013,6,8,1,30,0,0,0,3.5,18.2,123.52,927,12.100000000000001 -2013,6,8,2,30,0,0,0,3.4000000000000004,17.5,118.84,926,12.9 -2013,6,8,3,30,0,0,0,3.1,16.900000000000002,111.45,926,13.700000000000001 -2013,6,8,4,30,0,0,0,3,16.5,102.11,925,14.3 -2013,6,8,5,30,0,0,0,3.2,16.8,91.46000000000001,925,14.8 -2013,6,8,6,30,69,61,41,3.9000000000000004,18.7,79.86,925,15.200000000000001 -2013,6,8,7,30,268,128,372,4.800000000000001,21.5,67.81,925,14.700000000000001 -2013,6,8,8,30,290,245,79,5.4,24,55.370000000000005,925,13.200000000000001 -2013,6,8,9,30,456,351,143,5.5,25.8,42.730000000000004,925,13.200000000000001 -2013,6,8,10,30,487,414,84,5.5,27,30.12,925,14.200000000000001 -2013,6,8,11,30,827,430,418,5.4,27.6,18.07,924,15.200000000000001 -2013,6,8,12,30,885,469,422,5.4,27.5,9.67,924,16.1 -2013,6,8,13,30,825,439,399,5.300000000000001,26.8,14.540000000000001,923,16.900000000000002 -2013,6,8,14,30,744,391,393,5.2,26,26.05,922,17.6 -2013,6,8,15,30,766,120,825,5,25.6,38.57,922,18.1 -2013,6,8,16,30,591,105,775,4.7,25.400000000000002,51.22,922,18.5 -2013,6,8,17,30,389,86,684,4.5,25.3,63.75,921,18.8 -2013,6,8,18,30,184,61,509,3.1,23.5,75.95,922,19.400000000000002 -2013,6,8,19,30,22,17,125,2.8000000000000003,22.1,87.5,922,19.8 -2013,6,8,20,30,0,0,0,3.2,21.3,98.7,923,19.6 -2013,6,8,21,30,0,0,0,3.6,20.8,108.52,923,19.5 -2013,6,8,22,30,0,0,0,3.7,20.200000000000003,116.62,923,19.5 -2013,6,8,23,30,0,0,0,3.5,19.8,122.26,923,19.6 -2013,6,9,0,30,0,0,0,3.1,19.400000000000002,124.68,923,19.400000000000002 -2013,6,9,1,30,0,0,0,2.5,19.3,123.44,923,19.3 -2013,6,9,2,30,0,0,0,2,19.1,118.79,924,19.1 -2013,6,9,3,30,0,0,0,1.7000000000000002,18.8,111.41,924,18.8 -2013,6,9,4,30,0,0,0,1.9000000000000001,18.7,102.09,924,18.7 -2013,6,9,5,30,0,0,0,2.5,18.900000000000002,91.45,925,18.900000000000002 -2013,6,9,6,30,28,28,0,2.9000000000000004,19.8,79.86,926,19.5 -2013,6,9,7,30,275,122,405,3,21.6,67.81,926,19.8 -2013,6,9,8,30,527,107,739,2.7,24,55.370000000000005,926,19.8 -2013,6,9,9,30,579,315,358,2.1,26.3,42.74,926,19.5 -2013,6,9,10,30,878,116,881,1.9000000000000001,28.3,30.13,926,18.900000000000002 -2013,6,9,11,30,982,118,909,2.1,29.700000000000003,18.06,926,18.3 -2013,6,9,12,30,1028,107,934,2.4000000000000004,30.700000000000003,9.6,926,17.8 -2013,6,9,13,30,1008,103,935,2.6,31.400000000000002,14.450000000000001,926,17.2 -2013,6,9,14,30,927,98,922,2.8000000000000003,31.700000000000003,25.98,925,16.6 -2013,6,9,15,30,793,91,897,2.9000000000000004,31.6,38.5,925,16.1 -2013,6,9,16,30,613,81,847,2.9000000000000004,31,51.15,925,15.5 -2013,6,9,17,30,407,69,762,2.9000000000000004,30.6,63.67,925,15 -2013,6,9,18,30,196,50,597,1.7000000000000002,27.3,75.87,925,15.9 -2013,6,9,19,30,25,16,193,1.3,24.6,87.43,926,17.400000000000002 -2013,6,9,20,30,0,0,0,1.4000000000000001,23.200000000000003,98.62,927,16.400000000000002 -2013,6,9,21,30,0,0,0,1.5,22.400000000000002,108.43,927,16 -2013,6,9,22,30,0,0,0,1.6,21.700000000000003,116.53,928,15.8 -2013,6,9,23,30,0,0,0,1.9000000000000001,21.200000000000003,122.17,928,15.700000000000001 -2013,6,10,0,30,0,0,0,2.2,20.700000000000003,124.59,928,15.9 -2013,6,10,1,30,0,0,0,2.6,20.200000000000003,123.38000000000001,927,16.3 -2013,6,10,2,30,0,0,0,2.8000000000000003,19.700000000000003,118.74000000000001,927,17 -2013,6,10,3,30,0,0,0,2.7,19.200000000000003,111.38,927,17.7 -2013,6,10,4,30,0,0,0,2.6,18.6,102.07000000000001,927,18.400000000000002 -2013,6,10,5,30,0,0,0,3.1,19.200000000000003,91.44,927,18.8 -2013,6,10,6,30,131,43,502,3.8000000000000003,21.5,79.86,928,19.200000000000003 -2013,6,10,7,30,340,65,728,4.3,24.5,67.82000000000001,928,19.400000000000002 -2013,6,10,8,30,554,78,838,4.5,27.3,55.38,928,18.5 -2013,6,10,9,30,747,87,900,4.5,29.5,42.75,928,17.2 -2013,6,10,10,30,900,92,934,4.4,31.400000000000002,30.14,928,16.1 -2013,6,10,11,30,1003,95,955,4.3,32.9,18.06,928,15.100000000000001 -2013,6,10,12,30,1042,98,957,4.2,33.9,9.540000000000001,927,14.5 -2013,6,10,13,30,1021,98,953,4.1000000000000005,34.5,14.370000000000001,927,14.100000000000001 -2013,6,10,14,30,939,95,938,3.9000000000000004,34.7,25.900000000000002,926,13.8 -2013,6,10,15,30,799,94,900,3.9000000000000004,34.4,38.42,925,13.3 -2013,6,10,16,30,620,86,850,3.9000000000000004,33.6,51.08,925,12.700000000000001 -2013,6,10,17,30,411,73,762,3.9000000000000004,33.1,63.6,925,12.200000000000001 -2013,6,10,18,30,199,53,596,2.7,29.1,75.79,926,13.100000000000001 -2013,6,10,19,30,26,17,184,2.7,26.400000000000002,87.35000000000001,926,13.600000000000001 -2013,6,10,20,30,0,0,0,3.4000000000000004,25.200000000000003,98.53,927,12.4 -2013,6,10,21,30,0,0,0,3.8000000000000003,24.3,108.34,927,12 -2013,6,10,22,30,0,0,0,3.8000000000000003,23.200000000000003,116.44,927,12.3 -2013,6,10,23,30,0,0,0,3.6,22.3,122.09,927,12.9 -2013,6,11,0,30,0,0,0,3.5,21.6,124.52,927,13.700000000000001 -2013,6,11,1,30,0,0,0,3.3000000000000003,21,123.32000000000001,927,14.3 -2013,6,11,2,30,0,0,0,3.1,20.6,118.7,928,14.8 -2013,6,11,3,30,0,0,0,2.8000000000000003,20.1,111.35000000000001,928,15.200000000000001 -2013,6,11,4,30,0,0,0,2.4000000000000004,19.6,102.05,928,15.600000000000001 -2013,6,11,5,30,0,0,0,2.8000000000000003,20.1,91.44,928,16.2 -2013,6,11,6,30,126,49,438,3.8000000000000003,22.3,79.86,929,17 -2013,6,11,7,30,331,77,673,4.4,25.3,67.83,929,18.3 -2013,6,11,8,30,544,95,791,4.5,28,55.4,929,18.7 -2013,6,11,9,30,735,107,854,4.4,30,42.77,929,18 -2013,6,11,10,30,886,116,891,4.4,31.6,30.150000000000002,929,17.2 -2013,6,11,11,30,987,121,910,4.5,32.9,18.06,928,16.7 -2013,6,11,12,30,1026,118,921,4.5,33.9,9.48,928,16.6 -2013,6,11,13,30,1005,117,916,4.6000000000000005,34.6,14.290000000000001,927,16.5 -2013,6,11,14,30,921,113,897,4.6000000000000005,34.800000000000004,25.830000000000002,926,16.6 -2013,6,11,15,30,784,104,868,4.5,34.6,38.35,926,16.6 -2013,6,11,16,30,606,92,817,4.5,34,51.01,925,16.5 -2013,6,11,17,30,402,77,727,4.5,33.5,63.53,925,16.400000000000002 -2013,6,11,18,30,193,56,555,3.3000000000000003,30.700000000000003,75.72,925,16.5 -2013,6,11,19,30,25,18,144,3.1,28.6,87.28,926,17 -2013,6,11,20,30,0,0,0,3.9000000000000004,27.3,98.45,926,16.7 -2013,6,11,21,30,0,0,0,4.6000000000000005,26.200000000000003,108.26,927,16.900000000000002 -2013,6,11,22,30,0,0,0,4.9,25,116.36,927,17.6 -2013,6,11,23,30,0,0,0,4.9,24,122.01,928,18.6 -2013,6,12,0,30,0,0,0,4.6000000000000005,23.1,124.45,928,19.400000000000002 -2013,6,12,1,30,0,0,0,4.4,22.400000000000002,123.27,928,20 -2013,6,12,2,30,0,0,0,4.2,21.8,118.66,928,20.200000000000003 -2013,6,12,3,30,0,0,0,3.9000000000000004,21.200000000000003,111.33,928,20.3 -2013,6,12,4,30,0,0,0,3.6,20.700000000000003,102.04,928,20.200000000000003 -2013,6,12,5,30,0,0,0,3.8000000000000003,20.900000000000002,91.44,929,20.1 -2013,6,12,6,30,124,47,437,4.7,22.5,79.87,929,19.900000000000002 -2013,6,12,7,30,325,72,673,5.2,24.8,67.84,930,19.3 -2013,6,12,8,30,534,86,790,5.1000000000000005,27.1,55.42,930,18.8 -2013,6,12,9,30,723,95,855,5,29.200000000000003,42.79,930,18.2 -2013,6,12,10,30,875,101,895,5,31,30.17,929,17.8 -2013,6,12,11,30,976,105,916,5.1000000000000005,32.300000000000004,18.06,929,17.6 -2013,6,12,12,30,1019,104,927,5.4,33.1,9.44,928,17.400000000000002 -2013,6,12,13,30,998,106,920,5.6000000000000005,33.4,14.21,927,17.3 -2013,6,12,14,30,917,107,900,5.800000000000001,33.2,25.76,927,17.1 -2013,6,12,15,30,604,357,315,5.800000000000001,32.7,38.29,927,16.900000000000002 -2013,6,12,16,30,602,105,788,5.6000000000000005,31.8,50.94,926,16.6 -2013,6,12,17,30,395,91,681,5.4,31.3,63.46,926,16.5 -2013,6,12,18,30,187,67,485,3.8000000000000003,29,75.65,927,16.6 -2013,6,12,19,30,23,18,100,2.6,27.1,87.21000000000001,927,17.2 -2013,6,12,20,30,0,0,0,2.4000000000000004,25.900000000000002,98.38,928,17.7 -2013,6,12,21,30,0,0,0,2.7,25.200000000000003,108.19,928,18 -2013,6,12,22,30,0,0,0,3,24.6,116.29,929,18.5 -2013,6,12,23,30,0,0,0,3,23.900000000000002,121.94,929,19 -2013,6,13,0,30,0,0,0,2.9000000000000004,23.200000000000003,124.39,929,19.700000000000003 -2013,6,13,1,30,0,0,0,2.7,22.6,123.22,929,20.200000000000003 -2013,6,13,2,30,0,0,0,2.6,22,118.63,929,20.5 -2013,6,13,3,30,0,0,0,2.5,21.5,111.31,929,20.700000000000003 -2013,6,13,4,30,0,0,0,2.4000000000000004,21.200000000000003,102.04,929,20.8 -2013,6,13,5,30,0,0,0,2.9000000000000004,21.5,91.44,929,20.900000000000002 -2013,6,13,6,30,118,53,374,3.8000000000000003,23.1,79.88,930,20.8 -2013,6,13,7,30,319,82,629,4.1000000000000005,25.6,67.86,930,20.200000000000003 -2013,6,13,8,30,527,98,756,3.7,28,55.44,930,19.6 -2013,6,13,9,30,717,109,829,3.4000000000000004,29.900000000000002,42.81,930,19 -2013,6,13,10,30,866,116,868,3.5,31.3,30.19,930,18.400000000000002 -2013,6,13,11,30,966,120,889,3.8000000000000003,32.4,18.07,929,17.8 -2013,6,13,12,30,1010,115,907,4.1000000000000005,32.9,9.39,929,17.2 -2013,6,13,13,30,990,114,904,4.3,32.9,14.14,928,16.900000000000002 -2013,6,13,14,30,850,340,565,4.5,32.6,25.69,928,16.7 -2013,6,13,15,30,443,370,92,4.7,32,38.22,927,16.5 -2013,6,13,16,30,600,92,805,4.7,31.200000000000003,50.870000000000005,927,16.400000000000002 -2013,6,13,17,30,398,79,712,4.7,30.8,63.39,927,16.2 -2013,6,13,18,30,187,58,517,3.8000000000000003,28.400000000000002,75.58,927,16.400000000000002 -2013,6,13,19,30,16,16,0,3.4000000000000004,26.5,87.14,927,17 -2013,6,13,20,30,0,0,0,3.4000000000000004,25.1,98.31,927,17.3 -2013,6,13,21,30,0,0,0,3.2,24,108.11,928,17.8 -2013,6,13,22,30,0,0,0,2.8000000000000003,23,116.22,928,18.3 -2013,6,13,23,30,0,0,0,2.4000000000000004,22.3,121.88,928,18.8 -2013,6,14,0,30,0,0,0,2.1,21.8,124.34,928,19.200000000000003 -2013,6,14,1,30,0,0,0,1.8,21.3,123.18,928,19.6 -2013,6,14,2,30,0,0,0,1.6,20.900000000000002,118.61,928,19.900000000000002 -2013,6,14,3,30,0,0,0,1.5,20.700000000000003,111.3,928,20.200000000000003 -2013,6,14,4,30,0,0,0,1.6,20.6,102.04,928,20.400000000000002 -2013,6,14,5,30,0,0,0,2.1,20.900000000000002,91.45,928,20.6 -2013,6,14,6,30,29,29,0,3,21.8,79.9,929,20.700000000000003 -2013,6,14,7,30,12,12,0,3.9000000000000004,22.900000000000002,67.88,929,20.200000000000003 -2013,6,14,8,30,88,88,0,4.6000000000000005,23.900000000000002,55.46,929,18.400000000000002 -2013,6,14,9,30,63,63,0,4.9,24.900000000000002,42.84,929,16.400000000000002 -2013,6,14,10,30,287,273,16,5.1000000000000005,25.900000000000002,30.21,929,15.600000000000001 -2013,6,14,11,30,472,427,48,5.300000000000001,26.700000000000003,18.09,928,15.4 -2013,6,14,12,30,301,285,17,5.4,27,9.36,928,15.700000000000001 -2013,6,14,13,30,396,371,26,5.4,26.900000000000002,14.07,927,16.1 -2013,6,14,14,30,245,233,13,5.300000000000001,26.5,25.62,927,16.6 -2013,6,14,15,30,350,321,36,5,25.8,38.160000000000004,927,17.1 -2013,6,14,16,30,214,206,13,4.5,24.8,50.81,927,17.6 -2013,6,14,17,30,28,28,0,4.1000000000000005,24.3,63.32,927,18.1 -2013,6,14,18,30,54,54,0,2.5,22.700000000000003,75.51,927,18.8 -2013,6,14,19,30,14,14,0,1.6,21.8,87.07000000000001,927,19.5 -2013,6,14,20,30,0,0,0,1.4000000000000001,21.200000000000003,98.24000000000001,927,19.8 -2013,6,14,21,30,0,0,0,1.4000000000000001,20.8,108.05,927,19.700000000000003 -2013,6,14,22,30,0,0,0,1.3,20.400000000000002,116.15,927,19.400000000000002 -2013,6,14,23,30,0,0,0,1.1,20.1,121.82000000000001,928,19.3 -2013,6,15,0,30,0,0,0,1,19.900000000000002,124.29,928,19.200000000000003 -2013,6,15,1,30,0,0,0,0.9,20,123.15,928,19.200000000000003 -2013,6,15,2,30,0,0,0,0.7000000000000001,20,118.59,927,19.3 -2013,6,15,3,30,0,0,0,0.7000000000000001,19.900000000000002,111.3,927,19.3 -2013,6,15,4,30,0,0,0,1,19.8,102.05,928,19.400000000000002 -2013,6,15,5,30,0,0,0,1.7000000000000002,20.1,91.47,928,19.400000000000002 -2013,6,15,6,30,116,53,358,2.6,21,79.92,928,19.5 -2013,6,15,7,30,123,122,3,3.4000000000000004,22.5,67.91,929,19.6 -2013,6,15,8,30,180,176,8,4.1000000000000005,24.6,55.49,929,19.1 -2013,6,15,9,30,428,345,113,4.5,26.700000000000003,42.86,929,17.6 -2013,6,15,10,30,329,310,22,4.6000000000000005,28.700000000000003,30.240000000000002,928,16.6 -2013,6,15,11,30,270,256,15,4.6000000000000005,30.200000000000003,18.1,928,16.5 -2013,6,15,12,30,484,440,45,4.7,30.900000000000002,9.33,927,16.7 -2013,6,15,13,30,976,133,869,4.800000000000001,31,14.01,926,17 -2013,6,15,14,30,895,131,847,4.800000000000001,30.900000000000002,25.560000000000002,926,17.3 -2013,6,15,15,30,763,122,815,4.7,30.400000000000002,38.1,925,17.5 -2013,6,15,16,30,589,108,761,4.6000000000000005,29.8,50.75,925,17.7 -2013,6,15,17,30,391,89,670,4.5,29.400000000000002,63.26,925,17.8 -2013,6,15,18,30,189,63,503,3.6,27.400000000000002,75.45,925,18 -2013,6,15,19,30,26,19,141,2.9000000000000004,25.900000000000002,87.02,926,18.3 -2013,6,15,20,30,0,0,0,2.9000000000000004,24.8,98.18,926,18.5 -2013,6,15,21,30,0,0,0,3,24,107.99000000000001,927,18.6 -2013,6,15,22,30,0,0,0,2.8000000000000003,23.3,116.09,927,18.900000000000002 -2013,6,15,23,30,0,0,0,2.7,22.6,121.77,927,19.200000000000003 -2013,6,16,0,30,0,0,0,2.5,21.900000000000002,124.25,927,19.5 -2013,6,16,1,30,0,0,0,2.4000000000000004,21.400000000000002,123.12,927,19.8 -2013,6,16,2,30,0,0,0,2.2,20.900000000000002,118.58,927,20.1 -2013,6,16,3,30,0,0,0,1.9000000000000001,20.5,111.3,927,20.3 -2013,6,16,4,30,0,0,0,1.6,20.1,102.06,928,20.1 -2013,6,16,5,30,0,0,0,2.2,20.700000000000003,91.48,928,20.400000000000002 -2013,6,16,6,30,115,56,333,3.4000000000000004,22.6,79.94,929,20.5 -2013,6,16,7,30,312,91,586,4.1000000000000005,25.200000000000003,67.93,929,20.5 -2013,6,16,8,30,521,106,734,4.2,27.900000000000002,55.52,928,20.5 -2013,6,16,9,30,713,113,818,4,30.1,42.9,928,20.400000000000002 -2013,6,16,10,30,865,120,862,4,31.8,30.27,928,20.200000000000003 -2013,6,16,11,30,965,123,886,4.2,33,18.13,927,20 -2013,6,16,12,30,1011,116,907,4.5,33.800000000000004,9.31,927,19.8 -2013,6,16,13,30,991,114,904,4.6000000000000005,34.300000000000004,13.950000000000001,926,19.6 -2013,6,16,14,30,910,110,886,4.6000000000000005,34.4,25.5,926,19.3 -2013,6,16,15,30,777,103,855,4.5,34.1,38.04,925,19.1 -2013,6,16,16,30,601,93,802,4.4,33.300000000000004,50.69,925,19 -2013,6,16,17,30,400,79,711,4.4,32.9,63.21,925,19 -2013,6,16,18,30,193,58,539,3.7,30.400000000000002,75.4,925,19 -2013,6,16,19,30,21,18,44,3.1,28.5,86.96000000000001,925,19.3 -2013,6,16,20,30,0,0,0,3.1,27.1,98.12,926,19.5 -2013,6,16,21,30,0,0,0,3.3000000000000003,26.200000000000003,107.93,927,19.6 -2013,6,16,22,30,0,0,0,3.4000000000000004,25.400000000000002,116.04,927,19.6 -2013,6,16,23,30,0,0,0,3.5,24.6,121.73,927,19.6 -2013,6,17,0,30,0,0,0,3.5,23.900000000000002,124.22,927,19.6 -2013,6,17,1,30,0,0,0,3.4000000000000004,23.200000000000003,123.10000000000001,927,19.6 -2013,6,17,2,30,0,0,0,3.3000000000000003,22.6,118.57000000000001,926,19.6 -2013,6,17,3,30,0,0,0,3,21.900000000000002,111.3,926,19.700000000000003 -2013,6,17,4,30,0,0,0,2.4000000000000004,21.3,102.07000000000001,927,19.900000000000002 -2013,6,17,5,30,0,0,0,2.6,21.5,91.51,927,20.1 -2013,6,17,6,30,57,57,0,3.5,22.8,79.97,928,20.400000000000002 -2013,6,17,7,30,12,12,0,4,24.900000000000002,67.96000000000001,928,20.700000000000003 -2013,6,17,8,30,250,226,43,3.9000000000000004,26.900000000000002,55.550000000000004,928,20.700000000000003 -2013,6,17,9,30,514,342,234,3.7,28.3,42.93,928,20.700000000000003 -2013,6,17,10,30,697,382,365,3.6,29,30.3,927,20.900000000000002 -2013,6,17,11,30,944,154,831,3.4000000000000004,29.5,18.150000000000002,927,21.3 -2013,6,17,12,30,990,150,851,3,29.700000000000003,9.3,927,21.700000000000003 -2013,6,17,13,30,973,144,854,2.5,29.900000000000002,13.89,926,22 -2013,6,17,14,30,897,134,845,2.1,30.200000000000003,25.45,926,22.1 -2013,6,17,15,30,602,362,304,1.8,30.3,37.980000000000004,925,22.200000000000003 -2013,6,17,16,30,411,289,192,1.6,30.1,50.63,925,22.200000000000003 -2013,6,17,17,30,180,167,29,1.6,29.8,63.15,925,22.400000000000002 -2013,6,17,18,30,161,82,311,1.4000000000000001,27.400000000000002,75.34,925,23.400000000000002 -2013,6,17,19,30,16,16,0,1.4000000000000001,25.3,86.91,925,23.700000000000003 -2013,6,17,20,30,0,0,0,1.1,24.3,98.07000000000001,926,23.1 -2013,6,17,21,30,0,0,0,0.9,23.8,107.88,927,23.1 -2013,6,17,22,30,0,0,0,0.9,23.3,116,928,22.900000000000002 -2013,6,17,23,30,0,0,0,0.9,22.6,121.69,927,22.6 -2013,6,18,0,30,0,0,0,1,22,124.19,927,22 -2013,6,18,1,30,0,0,0,0.9,21.5,123.09,927,21.5 -2013,6,18,2,30,0,0,0,0.8,21.200000000000003,118.57000000000001,927,21.200000000000003 -2013,6,18,3,30,0,0,0,0.8,21,111.32000000000001,928,21 -2013,6,18,4,30,0,0,0,0.8,20.900000000000002,102.09,928,20.900000000000002 -2013,6,18,5,30,0,0,0,1,21,91.53,928,21 -2013,6,18,6,30,63,59,21,1.5,21.6,80,928,21.400000000000002 -2013,6,18,7,30,232,145,232,1.9000000000000001,22.6,68,928,21.3 -2013,6,18,8,30,513,111,711,2.7,24.1,55.59,929,21.1 -2013,6,18,9,30,700,124,788,3.2,25.900000000000002,42.97,929,20.8 -2013,6,18,10,30,854,129,839,3.3000000000000003,27.200000000000003,30.34,929,20.5 -2013,6,18,11,30,958,130,871,3,28.3,18.18,928,20.1 -2013,6,18,12,30,1013,105,920,2.5,29,9.290000000000001,928,19.8 -2013,6,18,13,30,996,101,922,2.1,29.5,13.84,927,19.6 -2013,6,18,14,30,921,96,913,2,29.8,25.39,927,19.400000000000002 -2013,6,18,15,30,788,97,876,2,29.8,37.93,927,18.900000000000002 -2013,6,18,16,30,613,85,832,2.1,29.5,50.58,926,18.400000000000002 -2013,6,18,17,30,410,72,749,2.1,29.200000000000003,63.1,926,18 -2013,6,18,18,30,203,52,593,1.5,26.700000000000003,75.29,926,18.400000000000002 -2013,6,18,19,30,30,18,219,1.3,24.5,86.86,926,19.6 -2013,6,18,20,30,0,0,0,1.5,23.400000000000002,98.02,927,18.5 -2013,6,18,21,30,0,0,0,1.7000000000000002,22.700000000000003,107.83,927,18.1 -2013,6,18,22,30,0,0,0,1.8,22.1,115.96000000000001,927,18 -2013,6,18,23,30,0,0,0,2.1,21.5,121.66,927,17.900000000000002 -2013,6,19,0,30,0,0,0,2.4000000000000004,21,124.18,927,17.900000000000002 -2013,6,19,1,30,0,0,0,2.6,20.6,123.08,927,18.1 -2013,6,19,2,30,0,0,0,2.7,20.200000000000003,118.58,927,18.3 -2013,6,19,3,30,0,0,0,2.4000000000000004,19.900000000000002,111.33,927,18.6 -2013,6,19,4,30,0,0,0,2.2,19.700000000000003,102.12,927,18.8 -2013,6,19,5,30,0,0,0,2.6,20.3,91.56,927,18.900000000000002 -2013,6,19,6,30,117,50,390,3.4000000000000004,22.200000000000003,80.04,928,19.1 -2013,6,19,7,30,315,81,626,4.1000000000000005,24.900000000000002,68.04,928,19.400000000000002 -2013,6,19,8,30,523,99,750,4.5,27.3,55.63,927,19.5 -2013,6,19,9,30,710,111,820,4.5,29.200000000000003,43.01,927,19.5 -2013,6,19,10,30,861,120,859,4.4,30.5,30.38,927,19.6 -2013,6,19,11,30,960,127,878,4.2,31.400000000000002,18.22,927,19.700000000000003 -2013,6,19,12,30,997,144,864,4.2,31.8,9.290000000000001,926,19.8 -2013,6,19,13,30,931,391,557,4.2,32,13.8,926,19.8 -2013,6,19,14,30,374,350,27,4.3,31.900000000000002,25.34,925,19.700000000000003 -2013,6,19,15,30,672,301,470,4.2,31.5,37.88,925,19.5 -2013,6,19,16,30,580,143,688,3.9000000000000004,30.900000000000002,50.53,924,19.400000000000002 -2013,6,19,17,30,382,118,583,3.7,30.6,63.050000000000004,924,19.6 -2013,6,19,18,30,157,86,277,2.5,27.900000000000002,75.24,924,20.3 -2013,6,19,19,30,21,19,38,2.3000000000000003,26,86.81,925,20.400000000000002 -2013,6,19,20,30,0,0,0,2.6,25,97.97,925,19.6 -2013,6,19,21,30,0,0,0,2.9000000000000004,24.3,107.79,926,19 -2013,6,19,22,30,0,0,0,3,23.400000000000002,115.92,926,18.5 -2013,6,19,23,30,0,0,0,2.9000000000000004,22.5,121.63,926,18 -2013,6,20,0,30,0,0,0,2.9000000000000004,21.8,124.16,926,17.5 -2013,6,20,1,30,0,0,0,3.1,21.200000000000003,123.09,926,17 -2013,6,20,2,30,0,0,0,3.4000000000000004,20.8,118.59,926,16.8 -2013,6,20,3,30,0,0,0,3.6,20.400000000000002,111.36,927,17 -2013,6,20,4,30,0,0,0,3.6,20.1,102.15,927,17.6 -2013,6,20,5,30,0,0,0,3.8000000000000003,20.400000000000002,91.60000000000001,927,18.1 -2013,6,20,6,30,88,59,164,4.9,21.900000000000002,80.07000000000001,928,18.7 -2013,6,20,7,30,308,94,573,5.9,24.200000000000003,68.08,928,19.200000000000003 -2013,6,20,8,30,515,118,705,6.2,26.6,55.67,928,19.5 -2013,6,20,9,30,703,134,780,6.300000000000001,28.6,43.050000000000004,928,19.5 -2013,6,20,10,30,854,144,823,6.300000000000001,30.1,30.42,928,19.200000000000003 -2013,6,20,11,30,957,150,849,6.300000000000001,31.3,18.25,928,18.7 -2013,6,20,12,30,996,160,847,6.2,32.300000000000004,9.3,927,18.2 -2013,6,20,13,30,815,437,388,6.1000000000000005,33.1,13.76,927,17.7 -2013,6,20,14,30,805,388,461,6,33.5,25.3,926,17.2 -2013,6,20,15,30,758,210,693,5.9,33.2,37.83,926,16.900000000000002 -2013,6,20,16,30,574,162,646,5.6000000000000005,32.2,50.480000000000004,926,16.7 -2013,6,20,17,30,403,83,705,5.4,31.5,63,926,16.8 -2013,6,20,18,30,158,86,285,4.2,28.700000000000003,75.19,926,17.2 -2013,6,20,19,30,22,19,48,3.8000000000000003,27.1,86.77,927,17.5 -2013,6,20,20,30,0,0,0,3.7,25.900000000000002,97.93,927,17.5 -2013,6,20,21,30,0,0,0,3.5,24.900000000000002,107.76,927,17.5 -2013,6,20,22,30,0,0,0,3.4000000000000004,24.1,115.89,928,17.5 -2013,6,20,23,30,0,0,0,3.4000000000000004,23.400000000000002,121.61,928,17.5 -2013,6,21,0,30,0,0,0,3.5,22.900000000000002,124.16,928,17.6 -2013,6,21,1,30,0,0,0,3.5,22.5,123.09,928,17.8 -2013,6,21,2,30,0,0,0,3.6,22.1,118.61,929,18.1 -2013,6,21,3,30,0,0,0,3.8000000000000003,21.8,111.38,929,18.400000000000002 -2013,6,21,4,30,0,0,0,3.9000000000000004,21.400000000000002,102.18,929,18.6 -2013,6,21,5,30,0,0,0,4.1000000000000005,21.6,91.64,929,18.8 -2013,6,21,6,30,48,48,0,5,22.700000000000003,80.11,929,19 -2013,6,21,7,30,296,95,540,5.7,24.5,68.12,929,19 -2013,6,21,8,30,382,241,250,6,26.400000000000002,55.72,930,18.900000000000002 -2013,6,21,9,30,601,276,445,6.1000000000000005,28.3,43.1,930,18.400000000000002 -2013,6,21,10,30,707,367,395,6,30.1,30.47,929,17.8 -2013,6,21,11,30,852,428,446,6,31.6,18.3,929,17.400000000000002 -2013,6,21,12,30,1010,120,901,5.9,32.6,9.32,928,17 -2013,6,21,13,30,993,120,899,5.9,33.2,13.72,928,16.6 -2013,6,21,14,30,913,118,879,6,33.300000000000004,25.25,927,16.2 -2013,6,21,15,30,781,113,844,6,33,37.78,927,16 -2013,6,21,16,30,604,103,787,6,32.300000000000004,50.44,926,15.8 -2013,6,21,17,30,402,88,692,5.9,31.8,62.96,926,15.8 -2013,6,21,18,30,195,64,511,4.9,29.3,75.15,926,16 -2013,6,21,19,30,29,22,118,4.6000000000000005,27.5,86.73,927,16.3 -2013,6,21,20,30,0,0,0,4.5,26.3,97.9,927,16.3 -2013,6,21,21,30,0,0,0,4.1000000000000005,25.3,107.73,927,16.5 -2013,6,21,22,30,0,0,0,3.7,24.3,115.87,927,16.6 -2013,6,21,23,30,0,0,0,3.5,23.5,121.60000000000001,927,16.7 -2013,6,22,0,30,0,0,0,3.4000000000000004,22.900000000000002,124.16,927,16.7 -2013,6,22,1,30,0,0,0,3.4000000000000004,22.3,123.11,927,16.7 -2013,6,22,2,30,0,0,0,3.4000000000000004,21.6,118.64,927,16.8 -2013,6,22,3,30,0,0,0,3.7,21,111.42,927,17.1 -2013,6,22,4,30,0,0,0,3.9000000000000004,20.5,102.22,928,17.6 -2013,6,22,5,30,0,0,0,4.4,20.6,91.68,928,18.2 -2013,6,22,6,30,105,65,234,5.4,22,80.16,928,18.8 -2013,6,22,7,30,302,104,532,6.300000000000001,24.400000000000002,68.17,928,19.3 -2013,6,22,8,30,515,119,704,6.7,26.8,55.76,928,19 -2013,6,22,9,30,705,127,793,6.800000000000001,28.900000000000002,43.15,928,18.1 -2013,6,22,10,30,861,132,847,6.800000000000001,30.6,30.52,928,17.2 -2013,6,22,11,30,964,134,874,6.7,31.8,18.34,927,16.6 -2013,6,22,12,30,1009,133,888,6.6000000000000005,32.7,9.34,927,16.2 -2013,6,22,13,30,990,135,881,6.4,33.1,13.69,926,15.8 -2013,6,22,14,30,910,134,858,6.2,33.1,25.21,925,15.600000000000001 -2013,6,22,15,30,774,134,810,6,32.800000000000004,37.74,925,15.4 -2013,6,22,16,30,598,122,747,5.800000000000001,32.2,50.4,924,15.200000000000001 -2013,6,22,17,30,349,150,436,5.6000000000000005,31.900000000000002,62.910000000000004,924,15.200000000000001 -2013,6,22,18,30,166,82,328,4.7,29.5,75.11,924,15.4 -2013,6,22,19,30,21,20,29,4.5,27.700000000000003,86.7,924,15.700000000000001 -2013,6,22,20,30,0,0,0,4.6000000000000005,26.5,97.86,925,15.700000000000001 -2013,6,22,21,30,0,0,0,4.4,25.400000000000002,107.7,925,15.9 -2013,6,22,22,30,0,0,0,4.1000000000000005,24.5,115.85000000000001,926,16.1 -2013,6,22,23,30,0,0,0,4.2,23.900000000000002,121.60000000000001,925,16.3 -2013,6,23,0,30,0,0,0,4.5,23.3,124.17,925,16.5 -2013,6,23,1,30,0,0,0,4.7,22.700000000000003,123.13000000000001,925,16.8 -2013,6,23,2,30,0,0,0,4.7,22.1,118.67,925,17.2 -2013,6,23,3,30,0,0,0,4.4,21.6,111.46000000000001,925,17.5 -2013,6,23,4,30,0,0,0,3.9000000000000004,21.1,102.27,925,17.7 -2013,6,23,5,30,0,0,0,3.9000000000000004,21.200000000000003,91.73,926,17.900000000000002 -2013,6,23,6,30,85,59,152,4.800000000000001,22.3,80.21000000000001,926,18.2 -2013,6,23,7,30,234,141,250,5.9,24.200000000000003,68.22,926,18.400000000000002 -2013,6,23,8,30,439,206,414,6.5,26.400000000000002,55.81,926,18.400000000000002 -2013,6,23,9,30,698,141,764,6.800000000000001,28.5,43.2,926,17.900000000000002 -2013,6,23,10,30,850,148,816,6.9,30.6,30.57,926,17.3 -2013,6,23,11,30,826,428,420,6.9,32.300000000000004,18.39,925,16.900000000000002 -2013,6,23,12,30,868,465,408,6.800000000000001,33.6,9.370000000000001,925,16.7 -2013,6,23,13,30,940,376,580,6.7,34.5,13.67,924,16.5 -2013,6,23,14,30,908,135,854,6.7,34.800000000000004,25.17,923,16.3 -2013,6,23,15,30,776,128,818,6.7,34.5,37.7,923,16.1 -2013,6,23,16,30,602,115,762,6.6000000000000005,33.7,50.36,923,15.9 -2013,6,23,17,30,400,95,669,6.5,33.1,62.88,923,15.8 -2013,6,23,18,30,197,67,504,5.4,30.3,75.08,924,15.8 -2013,6,23,19,30,30,21,145,4.800000000000001,28.3,86.67,924,16 -2013,6,23,20,30,0,0,0,4.7,26.900000000000002,97.84,925,16.1 -2013,6,23,21,30,0,0,0,4.5,25.8,107.68,926,16.2 -2013,6,23,22,30,0,0,0,4.1000000000000005,24.700000000000003,115.84,926,16.400000000000002 -2013,6,23,23,30,0,0,0,3.9000000000000004,23.8,121.60000000000001,926,16.5 -2013,6,24,0,30,0,0,0,4.1000000000000005,23.1,124.18,926,16.6 -2013,6,24,1,30,0,0,0,4.3,22.400000000000002,123.16,926,16.7 -2013,6,24,2,30,0,0,0,4.6000000000000005,21.8,118.71000000000001,926,17 -2013,6,24,3,30,0,0,0,4.6000000000000005,21.200000000000003,111.5,927,17.6 -2013,6,24,4,30,0,0,0,4.4,20.900000000000002,102.31,927,18.2 -2013,6,24,5,30,0,0,0,4.6000000000000005,20.900000000000002,91.78,927,18.7 -2013,6,24,6,30,107,63,259,5.5,22,80.26,928,19.200000000000003 -2013,6,24,7,30,300,111,511,6.2,23.8,68.27,928,19.3 -2013,6,24,8,30,425,215,373,6.5,25.8,55.870000000000005,928,19.200000000000003 -2013,6,24,9,30,689,180,699,6.6000000000000005,27.8,43.25,927,19 -2013,6,24,10,30,837,249,683,6.5,29.5,30.62,927,18.6 -2013,6,24,11,30,960,155,849,6.300000000000001,31,18.44,927,18.2 -2013,6,24,12,30,1003,157,858,6.1000000000000005,32.2,9.4,926,17.8 -2013,6,24,13,30,756,483,280,6,32.800000000000004,13.64,925,17.5 -2013,6,24,14,30,791,390,443,5.9,32.9,25.14,925,17.3 -2013,6,24,15,30,781,120,835,5.9,32.7,37.67,924,17.2 -2013,6,24,16,30,607,105,786,5.9,32.4,50.32,924,17.1 -2013,6,24,17,30,406,86,700,5.800000000000001,32.1,62.84,924,16.900000000000002 -2013,6,24,18,30,199,62,534,4.9,30,75.05,924,16.8 -2013,6,24,19,30,31,21,167,4.4,28.200000000000003,86.64,924,16.7 -2013,6,24,20,30,0,0,0,4.3,26.900000000000002,97.82000000000001,925,16.6 -2013,6,24,21,30,0,0,0,3.9000000000000004,25.700000000000003,107.67,925,16.5 -2013,6,24,22,30,0,0,0,3.6,24.700000000000003,115.84,926,16.6 -2013,6,24,23,30,0,0,0,3.7,23.900000000000002,121.60000000000001,926,16.5 -2013,6,25,0,30,0,0,0,3.9000000000000004,23.3,124.2,926,16.6 -2013,6,25,1,30,0,0,0,4.2,22.6,123.19,926,16.8 -2013,6,25,2,30,0,0,0,4.3,21.900000000000002,118.75,926,17.3 -2013,6,25,3,30,0,0,0,4.2,21.3,111.55,926,18 -2013,6,25,4,30,0,0,0,4.2,20.8,102.37,926,18.6 -2013,6,25,5,30,0,0,0,4.6000000000000005,21,91.83,926,19.1 -2013,6,25,6,30,108,59,293,5.800000000000001,22.6,80.31,927,19.6 -2013,6,25,7,30,304,96,562,6.6000000000000005,25,68.32000000000001,927,19.700000000000003 -2013,6,25,8,30,512,116,707,6.6000000000000005,27.700000000000003,55.92,927,19.5 -2013,6,25,9,30,699,129,783,6.2,30.3,43.300000000000004,926,19.200000000000003 -2013,6,25,10,30,849,139,825,5.7,32.5,30.67,926,19 -2013,6,25,11,30,950,146,848,5.2,34.4,18.5,925,19 -2013,6,25,12,30,1000,123,890,4.7,35.800000000000004,9.44,925,19 -2013,6,25,13,30,981,126,880,4.5,36.7,13.63,924,18.900000000000002 -2013,6,25,14,30,903,125,859,4.5,37.2,25.11,923,18.8 -2013,6,25,15,30,772,119,824,4.7,37.1,37.63,923,18.7 -2013,6,25,16,30,599,108,767,4.9,36.6,50.29,922,18.400000000000002 -2013,6,25,17,30,398,92,668,5,36.1,62.81,922,18 -2013,6,25,18,30,181,72,423,4.7,33.300000000000004,75.02,922,17.8 -2013,6,25,19,30,26,20,94,4.4,30.900000000000002,86.62,923,17.5 -2013,6,25,20,30,0,0,0,4.5,29.200000000000003,97.8,923,16.900000000000002 -2013,6,25,21,30,0,0,0,4.6000000000000005,27.900000000000002,107.66,924,16.5 -2013,6,25,22,30,0,0,0,4.6000000000000005,26.900000000000002,115.84,924,16.3 -2013,6,25,23,30,0,0,0,4.6000000000000005,25.900000000000002,121.62,924,16.2 -2013,6,26,0,30,0,0,0,4.5,25.1,124.23,924,16.2 -2013,6,26,1,30,0,0,0,4.4,24.3,123.23,924,16.3 -2013,6,26,2,30,0,0,0,4.3,23.6,118.8,924,16.3 -2013,6,26,3,30,0,0,0,4.2,22.900000000000002,111.61,924,16.6 -2013,6,26,4,30,0,0,0,4.2,22.3,102.42,924,17 -2013,6,26,5,30,0,0,0,4.6000000000000005,22.400000000000002,91.89,925,17.5 -2013,6,26,6,30,78,59,118,5.7,23.8,80.37,925,18 -2013,6,26,7,30,241,135,288,6.300000000000001,26.3,68.38,925,18.7 -2013,6,26,8,30,491,141,626,5.9,29.1,55.980000000000004,925,19.1 -2013,6,26,9,30,677,162,708,5.4,31.6,43.36,925,19.200000000000003 -2013,6,26,10,30,829,179,756,4.9,33.800000000000004,30.73,925,19.200000000000003 -2013,6,26,11,30,931,187,785,4.7,35.6,18.56,925,19.1 -2013,6,26,12,30,976,190,798,4.6000000000000005,36.9,9.49,925,18.900000000000002 -2013,6,26,13,30,959,185,796,4.7,37.800000000000004,13.620000000000001,924,18.6 -2013,6,26,14,30,885,175,783,4.800000000000001,38.300000000000004,25.080000000000002,924,18.2 -2013,6,26,15,30,762,143,782,5,38.2,37.6,923,17.7 -2013,6,26,16,30,593,125,732,5,37.5,50.26,923,17.2 -2013,6,26,17,30,395,103,639,5,37,62.79,923,16.8 -2013,6,26,18,30,192,71,466,3.9000000000000004,33.800000000000004,75,923,16.6 -2013,6,26,19,30,28,21,117,3.6,31.5,86.61,924,16.900000000000002 -2013,6,26,20,30,0,0,0,4,30.1,97.79,925,16.5 -2013,6,26,21,30,0,0,0,4.3,28.900000000000002,107.65,925,16.6 -2013,6,26,22,30,0,0,0,4.1000000000000005,27.8,115.85000000000001,926,16.900000000000002 -2013,6,26,23,30,0,0,0,3.8000000000000003,26.8,121.64,926,17.400000000000002 -2013,6,27,0,30,0,0,0,3.4000000000000004,25.900000000000002,124.27,926,17.8 -2013,6,27,1,30,0,0,0,3.2,25.1,123.28,926,18.1 -2013,6,27,2,30,0,0,0,3.1,24.3,118.85000000000001,926,18.3 -2013,6,27,3,30,0,0,0,2.9000000000000004,23.6,111.67,926,18.400000000000002 -2013,6,27,4,30,0,0,0,2.9000000000000004,22.900000000000002,102.49000000000001,927,18.6 -2013,6,27,5,30,0,0,0,3.4000000000000004,23,91.95,928,18.8 -2013,6,27,6,30,108,53,331,4.5,24.5,80.43,928,19 -2013,6,27,7,30,305,90,585,5.1000000000000005,27,68.44,929,19.1 -2013,6,27,8,30,516,111,725,4.9,29.8,56.04,929,18.8 -2013,6,27,9,30,708,123,805,4.4,32.5,43.42,929,18 -2013,6,27,10,30,863,131,853,4.1000000000000005,34.800000000000004,30.79,928,17 -2013,6,27,11,30,968,135,880,3.8000000000000003,36.6,18.62,928,16 -2013,6,27,12,30,1020,123,909,3.8000000000000003,37.9,9.540000000000001,927,15 -2013,6,27,13,30,1003,121,908,3.7,38.7,13.61,927,14.200000000000001 -2013,6,27,14,30,926,116,894,3.7,39,25.060000000000002,926,13.600000000000001 -2013,6,27,15,30,794,106,869,3.6,38.800000000000004,37.58,926,13.200000000000001 -2013,6,27,16,30,618,95,817,3.4000000000000004,38.1,50.230000000000004,926,13 -2013,6,27,17,30,415,80,732,3.4000000000000004,37.5,62.76,926,12.8 -2013,6,27,18,30,206,58,571,2,33.5,74.98,926,13.8 -2013,6,27,19,30,32,21,193,1.6,30.3,86.59,926,15.600000000000001 -2013,6,27,20,30,0,0,0,1.9000000000000001,28.8,97.78,927,14.700000000000001 -2013,6,27,21,30,0,0,0,2.1,27.900000000000002,107.66,928,13.9 -2013,6,27,22,30,0,0,0,2.4000000000000004,26.900000000000002,115.86,928,13.3 -2013,6,27,23,30,0,0,0,2.6,26,121.67,928,12.9 -2013,6,28,0,30,0,0,0,2.8000000000000003,25,124.31,928,12.600000000000001 -2013,6,28,1,30,0,0,0,2.8000000000000003,24.200000000000003,123.33,928,12.5 -2013,6,28,2,30,0,0,0,2.9000000000000004,23.5,118.92,927,12.5 -2013,6,28,3,30,0,0,0,3,22.900000000000002,111.73,927,12.5 -2013,6,28,4,30,0,0,0,3,22.3,102.55,927,12.600000000000001 -2013,6,28,5,30,0,0,0,3.3000000000000003,22.400000000000002,92.02,928,12.700000000000001 -2013,6,28,6,30,75,58,106,3.5,24.200000000000003,80.5,929,12.9 -2013,6,28,7,30,220,143,210,3.7,27.5,68.51,929,13.4 -2013,6,28,8,30,354,244,196,4,31.3,56.1,929,12.9 -2013,6,28,9,30,536,327,288,3.9000000000000004,34.2,43.480000000000004,929,12.100000000000001 -2013,6,28,10,30,666,403,306,3.6,36.300000000000004,30.85,929,12 -2013,6,28,11,30,815,422,415,3.4000000000000004,37.9,18.68,928,12.600000000000001 -2013,6,28,12,30,861,460,406,3.5,39.1,9.6,927,13.100000000000001 -2013,6,28,13,30,938,377,577,3.6,39.800000000000004,13.61,926,13.600000000000001 -2013,6,28,14,30,786,390,437,3.8000000000000003,40.1,25.04,925,14 -2013,6,28,15,30,766,202,711,3.9000000000000004,39.7,37.550000000000004,925,14.100000000000001 -2013,6,28,16,30,613,99,804,4,38.900000000000006,50.21,924,14 -2013,6,28,17,30,412,80,725,4,38.300000000000004,62.74,924,13.700000000000001 -2013,6,28,18,30,206,57,573,2.8000000000000003,34.5,74.96000000000001,924,13.700000000000001 -2013,6,28,19,30,32,20,208,2.1,31.200000000000003,86.58,925,15.100000000000001 -2013,6,28,20,30,0,0,0,2.4000000000000004,29.5,97.78,926,14.600000000000001 -2013,6,28,21,30,0,0,0,2.8000000000000003,28.5,107.66,926,14.100000000000001 -2013,6,28,22,30,0,0,0,2.9000000000000004,27.5,115.88,926,13.9 -2013,6,28,23,30,0,0,0,2.7,26.5,121.7,926,14.200000000000001 -2013,6,29,0,30,0,0,0,2.3000000000000003,25.5,124.36,926,14.600000000000001 -2013,6,29,1,30,0,0,0,1.8,24.5,123.39,926,15 -2013,6,29,2,30,0,0,0,1.4000000000000001,23.6,118.98,926,15.100000000000001 -2013,6,29,3,30,0,0,0,1.1,22.900000000000002,111.8,926,15.100000000000001 -2013,6,29,4,30,0,0,0,0.9,22.400000000000002,102.62,927,15.200000000000001 -2013,6,29,5,30,0,0,0,0.8,23.3,92.09,927,15.3 -2013,6,29,6,30,77,57,123,0.8,25.400000000000002,80.56,927,15.9 -2013,6,29,7,30,239,134,288,1.1,29.1,68.57000000000001,927,16 -2013,6,29,8,30,522,94,770,1.8,32.9,56.17,927,13.3 -2013,6,29,9,30,711,109,830,2.4000000000000004,34.9,43.550000000000004,927,11.4 -2013,6,29,10,30,755,348,475,2.5,36.2,30.92,927,11.200000000000001 -2013,6,29,11,30,825,425,422,2.6,37,18.75,926,11.200000000000001 -2013,6,29,12,30,869,464,411,2.7,37.5,9.67,926,11.4 -2013,6,29,13,30,871,453,430,2.9000000000000004,37.7,13.620000000000001,925,11.600000000000001 -2013,6,29,14,30,796,391,447,3.1,37.6,25.03,924,11.9 -2013,6,29,15,30,505,386,150,3.1,37.300000000000004,37.53,924,12.100000000000001 -2013,6,29,16,30,593,142,705,3.2,36.7,50.19,923,12.200000000000001 -2013,6,29,17,30,363,141,483,3.2,36.2,62.72,923,12.3 -2013,6,29,18,30,151,92,225,2.3000000000000003,32.7,74.95,923,12.700000000000001 -2013,6,29,19,30,33,20,207,1.7000000000000002,29.700000000000003,86.57000000000001,924,14.8 -2013,6,29,20,30,0,0,0,1.8,28.200000000000003,97.78,924,14.8 -2013,6,29,21,30,0,0,0,2,27.3,107.68,925,14.4 -2013,6,29,22,30,0,0,0,1.9000000000000001,26.400000000000002,115.91,925,14.4 -2013,6,29,23,30,0,0,0,1.7000000000000002,25.6,121.74000000000001,926,14.4 -2013,6,30,0,30,0,0,0,1.4000000000000001,25.1,124.41,926,14.600000000000001 -2013,6,30,1,30,0,0,0,1,24.6,123.46000000000001,926,14.9 -2013,6,30,2,30,0,0,0,0.7000000000000001,24.1,119.06,926,16.2 -2013,6,30,3,30,0,0,0,0.6000000000000001,23.3,111.87,927,18 -2013,6,30,4,30,0,0,0,1,22.3,102.7,927,18.400000000000002 -2013,6,30,5,30,0,0,0,1.6,21.5,92.16,928,18 -2013,6,30,6,30,58,55,19,2,21.700000000000003,80.63,928,17.7 -2013,6,30,7,30,193,146,129,2.3000000000000003,23,68.64,929,17.7 -2013,6,30,8,30,421,212,377,2.5,24.700000000000003,56.230000000000004,929,17.3 -2013,6,30,9,30,525,330,269,2.4000000000000004,26.3,43.61,929,16.900000000000002 -2013,6,30,10,30,733,350,447,2.1,28,30.990000000000002,928,16.400000000000002 -2013,6,30,11,30,788,419,390,1.8,29.700000000000003,18.82,928,16 -2013,6,30,12,30,893,464,434,1.8,31,9.74,927,15.8 -2013,6,30,13,30,989,123,890,1.9000000000000001,31.900000000000002,13.63,927,15.5 -2013,6,30,14,30,691,442,274,2.2,32.300000000000004,25.01,926,15.100000000000001 -2013,6,30,15,30,583,374,263,2.5,32.2,37.52,926,14.700000000000001 -2013,6,30,16,30,469,275,303,2.7,31.8,50.18,925,14.200000000000001 -2013,6,30,17,30,411,83,717,2.7,31.5,62.71,925,13.700000000000001 -2013,6,30,18,30,204,58,562,1.9000000000000001,29,74.94,926,13.700000000000001 -2013,6,30,19,30,33,20,211,1.4000000000000001,26.700000000000003,86.57000000000001,926,15.700000000000001 -2013,6,30,20,30,0,0,0,1.6,25.200000000000003,97.78,927,15 -2013,6,30,21,30,0,0,0,2,24.1,107.69,927,13.9 -2013,6,30,22,30,0,0,0,2.4000000000000004,23.200000000000003,115.94,927,12.9 -2013,6,30,23,30,0,0,0,2.3000000000000003,22.200000000000003,121.79,928,12.100000000000001 -2013,7,1,0,30,0,0,0,2,21.200000000000003,124.47,928,11.700000000000001 -2013,7,1,1,30,0,0,0,1.8,20.5,123.53,928,11.600000000000001 -2013,7,1,2,30,0,0,0,1.8,20.200000000000003,119.14,929,11.600000000000001 -2013,7,1,3,30,0,0,0,1.8,20,111.95,929,11.700000000000001 -2013,7,1,4,30,0,0,0,1.6,19.700000000000003,102.77,930,12 -2013,7,1,5,30,0,0,0,2,19.8,92.24,930,12.3 -2013,7,1,6,30,35,35,0,2.6,20.900000000000002,80.7,931,12.4 -2013,7,1,7,30,90,90,0,3.3000000000000003,22.900000000000002,68.71000000000001,931,11.8 -2013,7,1,8,30,107,107,0,4.2,25.1,56.300000000000004,931,10.8 -2013,7,1,9,30,308,285,33,4.9,26.8,43.68,931,10 -2013,7,1,10,30,661,403,301,5.300000000000001,28.1,31.05,931,9.600000000000001 -2013,7,1,11,30,798,417,403,5.4,29.200000000000003,18.900000000000002,931,9.4 -2013,7,1,12,30,976,336,650,5.4,30,9.82,930,9.1 -2013,7,1,13,30,1008,141,892,5.2,30.400000000000002,13.65,930,8.700000000000001 -2013,7,1,14,30,930,137,875,5.1000000000000005,30.400000000000002,25.01,929,8.200000000000001 -2013,7,1,15,30,424,365,75,4.9,30,37.5,929,7.7 -2013,7,1,16,30,607,138,733,4.7,29.1,50.160000000000004,929,7.1000000000000005 -2013,7,1,17,30,404,112,638,4.5,28.6,62.7,929,6.6000000000000005 -2013,7,1,18,30,196,74,470,2.9000000000000004,25.400000000000002,74.93,930,6.4 -2013,7,1,19,30,29,20,155,1.6,22.700000000000003,86.57000000000001,930,8.3 -2013,7,1,20,30,0,0,0,1.4000000000000001,21.1,97.8,931,9.1 -2013,7,1,21,30,0,0,0,1.3,20.200000000000003,107.72,931,9.3 -2013,7,1,22,30,0,0,0,1.3,19.400000000000002,115.98,931,9.4 -2013,7,1,23,30,0,0,0,1.3,18.7,121.84,931,9.600000000000001 -2013,7,2,0,30,0,0,0,1.2000000000000002,18,124.54,931,9.700000000000001 -2013,7,2,1,30,0,0,0,1.1,17.400000000000002,123.61,931,9.700000000000001 -2013,7,2,2,30,0,0,0,1,16.900000000000002,119.22,931,9.600000000000001 -2013,7,2,3,30,0,0,0,0.9,16.6,112.04,932,9.4 -2013,7,2,4,30,0,0,0,0.9,16.2,102.86,932,9.200000000000001 -2013,7,2,5,30,0,0,0,1.1,16.900000000000002,92.31,932,9.1 -2013,7,2,6,30,98,55,266,1.6,18.900000000000002,80.78,933,9.700000000000001 -2013,7,2,7,30,294,111,505,2.4000000000000004,21.900000000000002,68.78,933,9.3 -2013,7,2,8,30,506,143,655,3.2,24.700000000000003,56.370000000000005,933,7.9 -2013,7,2,9,30,701,163,745,3.7,26.400000000000002,43.75,933,7 -2013,7,2,10,30,861,173,803,3.9000000000000004,27.700000000000003,31.13,933,6.800000000000001 -2013,7,2,11,30,971,176,841,3.9000000000000004,28.8,18.98,932,6.6000000000000005 -2013,7,2,12,30,1034,141,906,3.8000000000000003,29.700000000000003,9.91,932,6.4 -2013,7,2,13,30,1020,137,909,3.7,30.200000000000003,13.67,931,6.2 -2013,7,2,14,30,943,128,899,3.6,30.3,25,930,6.1000000000000005 -2013,7,2,15,30,812,116,877,3.5,30.1,37.5,930,5.9 -2013,7,2,16,30,634,102,832,3.4000000000000004,29.5,50.15,929,5.5 -2013,7,2,17,30,427,83,749,3.3000000000000003,29,62.7,929,5.300000000000001 -2013,7,2,18,30,213,60,589,1.9000000000000001,25.6,74.93,930,5.5 -2013,7,2,19,30,24,20,67,1.1,22.700000000000003,86.58,930,9.3 -2013,7,2,20,30,0,0,0,1.2000000000000002,21.3,97.81,930,9 -2013,7,2,21,30,0,0,0,1.3,20.5,107.75,931,8.4 -2013,7,2,22,30,0,0,0,1.6,19.700000000000003,116.02,931,7.7 -2013,7,2,23,30,0,0,0,1.7000000000000002,18.900000000000002,121.91,931,7.1000000000000005 -2013,7,3,0,30,0,0,0,1.7000000000000002,18.2,124.62,931,6.9 -2013,7,3,1,30,0,0,0,1.7000000000000002,17.7,123.7,931,6.7 -2013,7,3,2,30,0,0,0,1.7000000000000002,17.2,119.31,931,6.6000000000000005 -2013,7,3,3,30,0,0,0,1.7000000000000002,16.7,112.13,930,6.5 -2013,7,3,4,30,0,0,0,1.6,16.2,102.94,930,6.4 -2013,7,3,5,30,0,0,0,2,17.1,92.4,931,6.5 -2013,7,3,6,30,114,41,460,2.7,19.700000000000003,80.86,931,6.5 -2013,7,3,7,30,244,126,329,2.5,23.400000000000002,68.86,931,6.4 -2013,7,3,8,30,532,88,804,1.7000000000000002,26.900000000000002,56.44,931,6 -2013,7,3,9,30,707,134,795,1.5,29,43.82,931,5.7 -2013,7,3,10,30,882,115,897,1.8,30.400000000000002,31.2,930,5.800000000000001 -2013,7,3,11,30,986,124,912,2,31.5,19.06,930,6 -2013,7,3,12,30,977,333,654,2.2,32.2,10,929,6.2 -2013,7,3,13,30,867,451,429,2.2,32.5,13.700000000000001,928,6.300000000000001 -2013,7,3,14,30,749,393,393,2.4000000000000004,32.5,25.01,927,6.4 -2013,7,3,15,30,636,341,372,2.6,32.2,37.49,927,6.300000000000001 -2013,7,3,16,30,550,195,554,2.8000000000000003,31.5,50.15,926,5.9 -2013,7,3,17,30,249,193,123,2.8000000000000003,31.1,62.690000000000005,926,5.6000000000000005 -2013,7,3,18,30,203,67,520,2.1,27.6,74.94,926,5.800000000000001 -2013,7,3,19,30,31,20,179,1.9000000000000001,24.700000000000003,86.59,927,8.5 -2013,7,3,20,30,0,0,0,2.5,23.400000000000002,97.84,927,7.6000000000000005 -2013,7,3,21,30,0,0,0,3,22.700000000000003,107.78,927,7.1000000000000005 -2013,7,3,22,30,0,0,0,3.5,22,116.07000000000001,928,7 -2013,7,3,23,30,0,0,0,3.7,21.200000000000003,121.97,928,7 -2013,7,4,0,30,0,0,0,3.8000000000000003,20.400000000000002,124.7,927,7.1000000000000005 -2013,7,4,1,30,0,0,0,3.6,19.700000000000003,123.79,927,7.2 -2013,7,4,2,30,0,0,0,3.4000000000000004,19.1,119.41,927,7.4 -2013,7,4,3,30,0,0,0,3.2,18.6,112.22,927,7.7 -2013,7,4,4,30,0,0,0,2.8000000000000003,18,103.03,927,8.1 -2013,7,4,5,30,0,0,0,2.9000000000000004,18.2,92.48,927,8.5 -2013,7,4,6,30,79,53,163,3.3000000000000003,19.8,80.94,928,8.700000000000001 -2013,7,4,7,30,204,142,173,3.8000000000000003,23,68.93,928,8.9 -2013,7,4,8,30,412,213,360,4.1000000000000005,26.400000000000002,56.52,928,9.3 -2013,7,4,9,30,689,161,732,3.6,28.5,43.89,928,9.600000000000001 -2013,7,4,10,30,839,180,771,3.1,29,31.27,929,9.600000000000001 -2013,7,4,11,30,944,184,804,2.9000000000000004,28.400000000000002,19.14,929,9.9 -2013,7,4,12,30,952,387,574,2.8000000000000003,28,10.1,929,10.200000000000001 -2013,7,4,13,30,979,170,833,3,28.3,13.74,928,10.600000000000001 -2013,7,4,14,30,905,158,825,3.2,28.8,25.01,927,10.8 -2013,7,4,15,30,784,124,832,3.7,29.400000000000002,37.49,927,10.8 -2013,7,4,16,30,613,106,791,4,29.400000000000002,50.15,926,10.600000000000001 -2013,7,4,17,30,411,86,710,4.1000000000000005,29.3,62.7,926,10.4 -2013,7,4,18,30,204,61,551,3,26.8,74.95,926,10.4 -2013,7,4,19,30,31,20,194,2,24.3,86.61,926,11.3 -2013,7,4,20,30,0,0,0,1.9000000000000001,23.1,97.86,927,11.4 -2013,7,4,21,30,0,0,0,2,22.6,107.82000000000001,927,11.200000000000001 -2013,7,4,22,30,0,0,0,2.3000000000000003,22.3,116.13,927,11 -2013,7,4,23,30,0,0,0,3,22.200000000000003,122.05,927,10.700000000000001 -2013,7,5,0,30,0,0,0,3.5,21.8,124.79,927,10.600000000000001 -2013,7,5,1,30,0,0,0,3.6,21,123.89,927,10.600000000000001 -2013,7,5,2,30,0,0,0,3.4000000000000004,20.1,119.51,927,10.700000000000001 -2013,7,5,3,30,0,0,0,3.2,19.400000000000002,112.32000000000001,927,10.8 -2013,7,5,4,30,0,0,0,3.2,19,103.13,927,11.200000000000001 -2013,7,5,5,30,0,0,0,3.4000000000000004,19.3,92.57000000000001,927,11.700000000000001 -2013,7,5,6,30,104,47,362,4.3,21.200000000000003,81.02,928,12.4 -2013,7,5,7,30,303,83,614,5.2,24.400000000000002,69.01,928,13 -2013,7,5,8,30,514,104,746,5.6000000000000005,27.700000000000003,56.59,928,12.5 -2013,7,5,9,30,708,117,822,5.5,30.400000000000002,43.97,928,11.8 -2013,7,5,10,30,866,125,868,5.300000000000001,32.300000000000004,31.35,927,11.100000000000001 -2013,7,5,11,30,973,129,894,5.300000000000001,33.7,19.23,927,10.5 -2013,7,5,12,30,1023,132,905,5.2,34.7,10.200000000000001,926,9.9 -2013,7,5,13,30,1008,129,905,5.1000000000000005,35.300000000000004,13.780000000000001,925,9.3 -2013,7,5,14,30,931,125,889,5,35.5,25.02,924,8.9 -2013,7,5,15,30,797,121,851,4.9,35.2,37.49,924,8.4 -2013,7,5,16,30,621,111,795,4.800000000000001,34.4,50.15,923,8 -2013,7,5,17,30,415,93,702,4.7,33.800000000000004,62.7,923,7.7 -2013,7,5,18,30,169,82,333,3.5,30.5,74.96000000000001,923,8 -2013,7,5,19,30,31,21,174,3.2,28,86.63,924,9.3 -2013,7,5,20,30,0,0,0,4,27,97.9,924,9.5 -2013,7,5,21,30,0,0,0,4,26.1,107.87,925,9.8 -2013,7,5,22,30,0,0,0,3.6,25.1,116.19,926,10.4 -2013,7,5,23,30,0,0,0,3.4000000000000004,24.3,122.13,926,10.8 -2013,7,6,0,30,0,0,0,3.5,23.6,124.89,926,11.200000000000001 -2013,7,6,1,30,0,0,0,3.4000000000000004,22.900000000000002,123.99000000000001,925,11.4 -2013,7,6,2,30,0,0,0,3.3000000000000003,22.200000000000003,119.61,925,11.700000000000001 -2013,7,6,3,30,0,0,0,3.3000000000000003,21.700000000000003,112.42,926,12.200000000000001 -2013,7,6,4,30,0,0,0,3.4000000000000004,21.3,103.22,926,12.700000000000001 -2013,7,6,5,30,0,0,0,3.6,21.5,92.66,926,13.4 -2013,7,6,6,30,102,48,347,4.4,23,81.11,926,13.9 -2013,7,6,7,30,230,131,279,5.2,25.6,69.09,927,13.9 -2013,7,6,8,30,382,229,279,5.300000000000001,28.400000000000002,56.67,927,13.5 -2013,7,6,9,30,659,205,631,5.1000000000000005,30.700000000000003,44.04,927,13.4 -2013,7,6,10,30,613,418,229,5.1000000000000005,32.5,31.43,927,13.200000000000001 -2013,7,6,11,30,841,425,441,5.2,33.7,19.32,926,13 -2013,7,6,12,30,1003,145,872,5.300000000000001,34.5,10.31,925,12.700000000000001 -2013,7,6,13,30,938,377,577,5.5,34.9,13.83,924,12.5 -2013,7,6,14,30,911,135,856,5.6000000000000005,34.9,25.04,924,12.5 -2013,7,6,15,30,783,120,836,5.7,34.7,37.5,923,12.100000000000001 -2013,7,6,16,30,611,106,789,5.5,34.1,50.160000000000004,923,11.3 -2013,7,6,17,30,410,88,701,5.4,33.6,62.71,923,10.3 -2013,7,6,18,30,202,63,536,4,30.700000000000003,74.98,924,9.5 -2013,7,6,19,30,31,20,181,3.3000000000000003,28.400000000000002,86.65,924,9.700000000000001 -2013,7,6,20,30,0,0,0,3.2,26.900000000000002,97.93,925,9.8 -2013,7,6,21,30,0,0,0,3.1,25.700000000000003,107.92,926,10 -2013,7,6,22,30,0,0,0,3,24.700000000000003,116.26,926,10.4 -2013,7,6,23,30,0,0,0,2.7,23.8,122.21000000000001,926,10.9 -2013,7,7,0,30,0,0,0,2.4000000000000004,22.900000000000002,124.99000000000001,926,11.3 -2013,7,7,1,30,0,0,0,2.2,22.3,124.11,926,11.700000000000001 -2013,7,7,2,30,0,0,0,2.2,22,119.72,926,12 -2013,7,7,3,30,0,0,0,2.3000000000000003,21.900000000000002,112.53,926,12.3 -2013,7,7,4,30,0,0,0,2.4000000000000004,21.6,103.33,927,12.9 -2013,7,7,5,30,0,0,0,2.9000000000000004,22,92.76,927,13.700000000000001 -2013,7,7,6,30,99,47,341,4,23.8,81.19,928,14.9 -2013,7,7,7,30,295,80,605,4.7,26.400000000000002,69.18,928,17 -2013,7,7,8,30,503,98,739,4.7,28.900000000000002,56.75,928,17.6 -2013,7,7,9,30,696,111,815,4.5,31,44.12,928,17.2 -2013,7,7,10,30,852,122,856,4.4,32.6,31.51,928,16.6 -2013,7,7,11,30,957,126,882,4.3,33.9,19.41,928,15.9 -2013,7,7,12,30,1004,133,885,4.2,34.9,10.42,927,15.200000000000001 -2013,7,7,13,30,991,128,889,4.1000000000000005,35.5,13.88,926,14.600000000000001 -2013,7,7,14,30,918,120,880,4,35.7,25.060000000000002,926,14 -2013,7,7,15,30,780,132,816,4.1000000000000005,35.4,37.51,925,13.700000000000001 -2013,7,7,16,30,591,146,695,4.1000000000000005,34.7,50.17,925,13.4 -2013,7,7,17,30,289,188,219,4.1000000000000005,34.2,62.730000000000004,925,13.200000000000001 -2013,7,7,18,30,196,69,492,3.2,31.400000000000002,75,926,13.200000000000001 -2013,7,7,19,30,29,21,142,2.3000000000000003,29,86.68,927,13.9 -2013,7,7,20,30,0,0,0,2.3000000000000003,27.6,97.98,927,14.3 -2013,7,7,21,30,0,0,0,2.4000000000000004,26.900000000000002,107.98,928,14.4 -2013,7,7,22,30,0,0,0,2.8000000000000003,26.400000000000002,116.34,928,14.5 -2013,7,7,23,30,0,0,0,3.3000000000000003,26,122.31,928,14.700000000000001 -2013,7,8,0,30,0,0,0,3.6,25.6,125.10000000000001,928,15.4 -2013,7,8,1,30,0,0,0,3.7,25.200000000000003,124.22,928,16.5 -2013,7,8,2,30,0,0,0,3.5,24.8,119.84,929,17.5 -2013,7,8,3,30,0,0,0,3.1,24.200000000000003,112.64,929,18.3 -2013,7,8,4,30,0,0,0,2.7,23.5,103.43,929,18.8 -2013,7,8,5,30,0,0,0,3,23.6,92.85000000000001,930,19.200000000000003 -2013,7,8,6,30,97,46,338,3.6,25.1,81.28,931,19.6 -2013,7,8,7,30,291,81,591,3.6,27.3,69.26,931,19.6 -2013,7,8,8,30,499,104,722,3.3000000000000003,29.5,56.83,931,19.3 -2013,7,8,9,30,688,119,794,3.1,31.400000000000002,44.2,931,18.8 -2013,7,8,10,30,841,130,834,3.2,32.9,31.59,931,18.3 -2013,7,8,11,30,944,137,856,3.3000000000000003,34,19.5,930,17.8 -2013,7,8,12,30,992,137,869,3.5,34.800000000000004,10.540000000000001,929,17.400000000000002 -2013,7,8,13,30,907,425,496,3.7,35.2,13.94,928,17.2 -2013,7,8,14,30,900,133,847,3.9000000000000004,35.2,25.080000000000002,928,17 -2013,7,8,15,30,749,231,654,4,34.800000000000004,37.52,928,16.8 -2013,7,8,16,30,600,108,769,4.1000000000000005,34.1,50.18,927,16.6 -2013,7,8,17,30,401,89,681,4.2,33.6,62.75,927,16.400000000000002 -2013,7,8,18,30,196,63,516,3.9000000000000004,31.400000000000002,75.02,928,16.3 -2013,7,8,19,30,30,20,163,3.7,29.700000000000003,86.72,929,16.400000000000002 -2013,7,8,20,30,0,0,0,3.9000000000000004,28.400000000000002,98.02,930,16.5 -2013,7,8,21,30,0,0,0,4.2,27.3,108.04,931,16.5 -2013,7,8,22,30,0,0,0,4.4,26.200000000000003,116.42,931,16.400000000000002 -2013,7,8,23,30,0,0,0,4.4,25.3,122.41,931,16.3 -2013,7,9,0,30,0,0,0,4.3,24.5,125.21000000000001,931,16.1 -2013,7,9,1,30,0,0,0,4,23.8,124.35000000000001,931,16 -2013,7,9,2,30,0,0,0,3.6,23.3,119.96000000000001,931,16.1 -2013,7,9,3,30,0,0,0,3.2,22.8,112.76,931,16.2 -2013,7,9,4,30,0,0,0,2.9000000000000004,22.3,103.54,931,16.5 -2013,7,9,5,30,0,0,0,3.4000000000000004,22.6,92.95,932,17 -2013,7,9,6,30,98,42,374,4.6000000000000005,24.1,81.37,932,18 -2013,7,9,7,30,294,69,638,5.2,26.3,69.35000000000001,932,18.8 -2013,7,9,8,30,504,82,773,5,28.700000000000003,56.910000000000004,932,18.2 -2013,7,9,9,30,696,90,847,4.800000000000001,30.900000000000002,44.28,932,17.2 -2013,7,9,10,30,852,95,890,4.6000000000000005,32.7,31.67,932,16.2 -2013,7,9,11,30,960,97,915,4.6000000000000005,34.2,19.6,931,15.4 -2013,7,9,12,30,1009,98,928,4.7,35.300000000000004,10.67,930,14.700000000000001 -2013,7,9,13,30,994,96,925,4.800000000000001,36,14.01,929,14.3 -2013,7,9,14,30,920,94,912,4.800000000000001,36.300000000000004,25.11,929,14 -2013,7,9,15,30,790,89,884,4.800000000000001,36.1,37.54,928,13.8 -2013,7,9,16,30,617,81,837,4.800000000000001,35.5,50.2,928,13.700000000000001 -2013,7,9,17,30,414,69,754,4.7,35.1,62.77,928,13.600000000000001 -2013,7,9,18,30,205,51,597,3.6,32.4,75.05,928,13.700000000000001 -2013,7,9,19,30,31,19,221,2.7,30.1,86.76,929,14.3 -2013,7,9,20,30,0,0,0,2.9000000000000004,28.8,98.08,929,14.700000000000001 -2013,7,9,21,30,0,0,0,3.2,28,108.11,930,15 -2013,7,9,22,30,0,0,0,3.2,27.1,116.5,930,15.3 -2013,7,9,23,30,0,0,0,3,26.3,122.51,930,15.600000000000001 -2013,7,10,0,30,0,0,0,2.9000000000000004,25.6,125.34,930,15.8 -2013,7,10,1,30,0,0,0,2.9000000000000004,25,124.47,930,16 -2013,7,10,2,30,0,0,0,3,24.5,120.09,930,16.3 -2013,7,10,3,30,0,0,0,3.2,23.900000000000002,112.88,930,16.900000000000002 -2013,7,10,4,30,0,0,0,3.2,23.3,103.65,930,17.6 -2013,7,10,5,30,0,0,0,3.6,23.3,93.05,931,18.5 -2013,7,10,6,30,67,51,108,4.6000000000000005,24.8,81.47,931,19.200000000000003 -2013,7,10,7,30,209,135,211,4.800000000000001,27.3,69.43,932,19.3 -2013,7,10,8,30,380,225,285,4.3,30,57,932,18.8 -2013,7,10,9,30,604,250,494,3.6,32.300000000000004,44.36,931,18.2 -2013,7,10,10,30,682,378,357,3.1,34,31.76,931,17.7 -2013,7,10,11,30,904,350,588,3,35.300000000000004,19.7,930,17.2 -2013,7,10,12,30,839,448,398,3.1,36.300000000000004,10.8,929,16.8 -2013,7,10,13,30,985,117,895,3.1,37,14.09,928,16.5 -2013,7,10,14,30,910,113,880,3.1,37.2,25.14,927,16.2 -2013,7,10,15,30,645,326,403,3.1,37,37.57,927,16 -2013,7,10,16,30,607,94,802,3,36.300000000000004,50.230000000000004,926,15.600000000000001 -2013,7,10,17,30,406,79,715,3,35.9,62.800000000000004,926,15.4 -2013,7,10,18,30,199,57,552,2.2,33.300000000000004,75.09,927,15.3 -2013,7,10,19,30,20,19,14,1.6,31.1,86.8,927,16.2 -2013,7,10,20,30,0,0,0,1.8,29.900000000000002,98.14,927,16.2 -2013,7,10,21,30,0,0,0,2.2,29.400000000000002,108.19,928,15.9 -2013,7,10,22,30,0,0,0,2.7,28.8,116.60000000000001,928,15.600000000000001 -2013,7,10,23,30,0,0,0,3.1,28.1,122.63,928,15.4 -2013,7,11,0,30,0,0,0,3.3000000000000003,27.3,125.46000000000001,928,15.3 -2013,7,11,1,30,0,0,0,3.3000000000000003,26.6,124.61,928,15.200000000000001 -2013,7,11,2,30,0,0,0,3.2,25.900000000000002,120.22,928,15.3 -2013,7,11,3,30,0,0,0,3,25.200000000000003,113,928,15.5 -2013,7,11,4,30,0,0,0,2.9000000000000004,24.6,103.76,928,15.9 -2013,7,11,5,30,0,0,0,3.3000000000000003,24.6,93.16,928,16.3 -2013,7,11,6,30,67,51,109,4.2,26.200000000000003,81.56,929,16.900000000000002 -2013,7,11,7,30,216,132,240,4.4,28.8,69.52,929,17.2 -2013,7,11,8,30,399,213,341,3.4000000000000004,31.8,57.08,929,16.6 -2013,7,11,9,30,554,305,348,2.3000000000000003,34.300000000000004,44.45,928,15.3 -2013,7,11,10,30,699,355,405,1.7000000000000002,35.9,31.85,928,14.700000000000001 -2013,7,11,11,30,760,435,346,1.7000000000000002,37,19.8,928,14.700000000000001 -2013,7,11,12,30,781,483,304,2.1,37.5,10.94,927,14.8 -2013,7,11,13,30,698,497,208,2.6,37.5,14.17,926,14.700000000000001 -2013,7,11,14,30,801,389,455,3,37,25.18,926,14.8 -2013,7,11,15,30,502,385,148,3.4000000000000004,36.7,37.6,925,14.700000000000001 -2013,7,11,16,30,511,243,419,3.6,36.300000000000004,50.25,925,14.600000000000001 -2013,7,11,17,30,313,177,298,3.7,36,62.83,925,14.3 -2013,7,11,18,30,190,63,495,3.1,33.5,75.13,925,14.100000000000001 -2013,7,11,19,30,23,19,74,2.4000000000000004,31.200000000000003,86.85000000000001,925,14.600000000000001 -2013,7,11,20,30,0,0,0,2.5,29.8,98.2,926,14.9 -2013,7,11,21,30,0,0,0,2.9000000000000004,28.900000000000002,108.27,926,15 -2013,7,11,22,30,0,0,0,3,28,116.7,927,15.200000000000001 -2013,7,11,23,30,0,0,0,3,27.200000000000003,122.75,927,15.4 -2013,7,12,0,30,0,0,0,3,26.5,125.60000000000001,927,15.4 -2013,7,12,1,30,0,0,0,3.1,25.900000000000002,124.75,927,15.5 -2013,7,12,2,30,0,0,0,3,25.5,120.36,927,15.5 -2013,7,12,3,30,0,0,0,2.9000000000000004,25.1,113.13,927,15.600000000000001 -2013,7,12,4,30,0,0,0,2.9000000000000004,24.700000000000003,103.88,927,15.700000000000001 -2013,7,12,5,30,0,0,0,3.3000000000000003,24.8,93.27,927,15.8 -2013,7,12,6,30,68,50,130,4.1000000000000005,26.1,81.66,928,16.3 -2013,7,12,7,30,289,72,623,4.2,28.6,69.62,928,16.900000000000002 -2013,7,12,8,30,497,90,751,3.2,31.400000000000002,57.17,928,16.3 -2013,7,12,9,30,689,103,823,2.7,33.800000000000004,44.53,928,15.3 -2013,7,12,10,30,846,110,867,3.2,35.5,31.94,928,14.600000000000001 -2013,7,12,11,30,953,114,892,3.7,36.800000000000004,19.91,927,14.200000000000001 -2013,7,12,12,30,1000,120,897,4.1000000000000005,37.5,11.08,926,14 -2013,7,12,13,30,986,119,894,4.3,37.9,14.25,926,13.8 -2013,7,12,14,30,912,117,878,4.3,37.9,25.23,925,13.600000000000001 -2013,7,12,15,30,776,123,824,4.3,37.4,37.63,925,13.3 -2013,7,12,16,30,427,289,216,4.3,36.6,50.29,925,13.200000000000001 -2013,7,12,17,30,402,92,679,4.2,36.1,62.870000000000005,925,13.100000000000001 -2013,7,12,18,30,195,65,507,3.3000000000000003,33.6,75.17,925,13.100000000000001 -2013,7,12,19,30,28,20,139,2.4000000000000004,31.400000000000002,86.9,925,13.600000000000001 -2013,7,12,20,30,0,0,0,2.4000000000000004,30.1,98.27,926,13.9 -2013,7,12,21,30,0,0,0,2.8000000000000003,29.3,108.35000000000001,927,14 -2013,7,12,22,30,0,0,0,3.1,28.5,116.8,927,14 -2013,7,12,23,30,0,0,0,3.3000000000000003,27.700000000000003,122.87,927,14 -2013,7,13,0,30,0,0,0,3.2,26.8,125.74000000000001,927,13.700000000000001 -2013,7,13,1,30,0,0,0,3,25.900000000000002,124.9,927,13.200000000000001 -2013,7,13,2,30,0,0,0,2.7,25.1,120.5,927,12.700000000000001 -2013,7,13,3,30,0,0,0,2.3000000000000003,24.3,113.26,927,12.200000000000001 -2013,7,13,4,30,0,0,0,2.2,23.700000000000003,104,928,12 -2013,7,13,5,30,0,0,0,2.7,24.1,93.38,928,11.9 -2013,7,13,6,30,97,40,395,3.4000000000000004,26.200000000000003,81.76,929,12.200000000000001 -2013,7,13,7,30,297,69,659,3.5,29.200000000000003,69.71000000000001,929,13.200000000000001 -2013,7,13,8,30,511,85,789,2.9000000000000004,32.1,57.26,929,13.4 -2013,7,13,9,30,707,95,860,2.4000000000000004,34.300000000000004,44.62,929,13.100000000000001 -2013,7,13,10,30,866,102,901,2.3000000000000003,36,32.03,928,12.9 -2013,7,13,11,30,974,107,923,2.4000000000000004,37.2,20.02,928,12.600000000000001 -2013,7,13,12,30,1023,109,933,2.6,38.1,11.23,927,12.100000000000001 -2013,7,13,13,30,958,326,652,2.7,38.6,14.35,926,11.600000000000001 -2013,7,13,14,30,564,452,124,2.8000000000000003,38.7,25.28,926,11.200000000000001 -2013,7,13,15,30,755,218,678,2.8000000000000003,38.300000000000004,37.67,925,10.700000000000001 -2013,7,13,16,30,265,246,31,2.7,37.6,50.32,925,10.200000000000001 -2013,7,13,17,30,339,158,396,2.7,37.1,62.910000000000004,924,9.8 -2013,7,13,18,30,203,57,575,1.8,34,75.22,925,9.700000000000001 -2013,7,13,19,30,29,19,182,1.2000000000000002,31.5,86.96000000000001,925,12.100000000000001 -2013,7,13,20,30,0,0,0,1.4000000000000001,30.200000000000003,98.34,926,12.200000000000001 -2013,7,13,21,30,0,0,0,1.7000000000000002,29.6,108.45,926,12 -2013,7,13,22,30,0,0,0,2,29,116.92,926,12.100000000000001 -2013,7,13,23,30,0,0,0,2.2,28.400000000000002,123.01,926,12.3 -2013,7,14,0,30,0,0,0,2.4000000000000004,27.700000000000003,125.89,926,12.5 -2013,7,14,1,30,0,0,0,2.4000000000000004,26.900000000000002,125.05,926,12.600000000000001 -2013,7,14,2,30,0,0,0,2.3000000000000003,25.900000000000002,120.65,926,12.600000000000001 -2013,7,14,3,30,0,0,0,2.3000000000000003,25,113.4,925,12.4 -2013,7,14,4,30,0,0,0,2.6,24.400000000000002,104.12,925,12.100000000000001 -2013,7,14,5,30,0,0,0,3.2,24.5,93.49,926,11.9 -2013,7,14,6,30,94,41,378,3.6,26.1,81.86,926,11.9 -2013,7,14,7,30,292,71,641,3.9000000000000004,29.1,69.8,926,12 -2013,7,14,8,30,504,89,769,3.9000000000000004,32.4,57.34,925,11.9 -2013,7,14,9,30,452,336,163,3.3000000000000003,34.800000000000004,44.7,925,11.200000000000001 -2013,7,14,10,30,856,110,881,2.4000000000000004,36.4,32.12,925,10.600000000000001 -2013,7,14,11,30,962,117,900,1.6,37.300000000000004,20.13,924,10.4 -2013,7,14,12,30,954,373,593,1.1,37.4,11.38,924,10.4 -2013,7,14,13,30,985,136,877,1.5,37,14.450000000000001,923,10.700000000000001 -2013,7,14,14,30,795,390,448,2.5,36.1,25.34,923,11.3 -2013,7,14,15,30,686,298,491,3.8000000000000003,34.7,37.71,922,12 -2013,7,14,16,30,307,270,57,5.1000000000000005,33,50.36,922,13.100000000000001 -2013,7,14,17,30,253,192,135,5.800000000000001,31.900000000000002,62.95,923,14.4 -2013,7,14,18,30,90,87,13,6.5,27.3,75.28,924,16 -2013,7,14,19,30,9,9,0,6.300000000000001,24.400000000000002,87.02,925,17.5 -2013,7,14,20,30,0,0,0,5.7,22.3,98.42,926,18.5 -2013,7,14,21,30,0,0,0,5,21.1,108.54,926,18.900000000000002 -2013,7,14,22,30,0,0,0,4.6000000000000005,20.3,117.04,927,18.7 -2013,7,14,23,30,0,0,0,4.2,19.6,123.14,927,18.400000000000002 -2013,7,15,0,30,0,0,0,3.8000000000000003,19,126.04,928,18.3 -2013,7,15,1,30,0,0,0,3.6,18.6,125.21000000000001,927,18.1 -2013,7,15,2,30,0,0,0,3.4000000000000004,18.3,120.8,927,18 -2013,7,15,3,30,0,0,0,3.3000000000000003,18.1,113.54,927,17.900000000000002 -2013,7,15,4,30,0,0,0,3.3000000000000003,17.900000000000002,104.25,927,17.8 -2013,7,15,5,30,0,0,0,3.4000000000000004,17.8,93.60000000000001,927,17.7 -2013,7,15,6,30,16,16,0,3.6,17.900000000000002,81.96000000000001,928,17.5 -2013,7,15,7,30,5,5,0,3.7,18.3,69.89,928,17.3 -2013,7,15,8,30,71,71,0,3.8000000000000003,19.200000000000003,57.43,928,17.3 -2013,7,15,9,30,118,118,0,3.9000000000000004,20.200000000000003,44.79,929,17.2 -2013,7,15,10,30,91,91,0,3.8000000000000003,21.400000000000002,32.21,928,17.2 -2013,7,15,11,30,173,165,8,3.7,22.700000000000003,20.240000000000002,928,17.3 -2013,7,15,12,30,245,231,14,3.6,23.900000000000002,11.540000000000001,928,17.400000000000002 -2013,7,15,13,30,202,191,11,3.6,24.5,14.56,927,17.5 -2013,7,15,14,30,260,247,14,3.5,24.5,25.400000000000002,927,17.7 -2013,7,15,15,30,209,201,10,3.3000000000000003,24,37.76,927,17.900000000000002 -2013,7,15,16,30,264,245,31,3.1,23.1,50.410000000000004,927,18.3 -2013,7,15,17,30,61,61,0,3,22.6,63,927,18.7 -2013,7,15,18,30,72,72,0,2.3000000000000003,21.1,75.33,928,19.1 -2013,7,15,19,30,16,16,0,1.8,20.3,87.08,928,19.5 -2013,7,15,20,30,0,0,0,1.5,19.900000000000002,98.51,929,19.700000000000003 -2013,7,15,21,30,0,0,0,1.6,19.8,108.65,929,19.8 -2013,7,15,22,30,0,0,0,2.2,19.700000000000003,117.16,930,19.700000000000003 -2013,7,15,23,30,0,0,0,2.8000000000000003,19.6,123.29,929,19.6 -2013,7,16,0,30,0,0,0,3.3000000000000003,19.5,126.2,929,19.5 -2013,7,16,1,30,0,0,0,3.5,19.5,125.37,929,19.5 -2013,7,16,2,30,0,0,0,3.6,19.5,120.96000000000001,929,19.5 -2013,7,16,3,30,0,0,0,3.7,19.6,113.68,929,19.6 -2013,7,16,4,30,0,0,0,4,19.700000000000003,104.38,929,19.700000000000003 -2013,7,16,5,30,0,0,0,4.3,20,93.72,930,20 -2013,7,16,6,30,10,10,0,4.5,20.700000000000003,82.06,930,20.400000000000002 -2013,7,16,7,30,6,6,0,5,21.700000000000003,69.99,931,20.700000000000003 -2013,7,16,8,30,171,167,7,5.300000000000001,22.700000000000003,57.52,931,20.200000000000003 -2013,7,16,9,30,50,50,0,5.1000000000000005,23.5,44.88,932,19.5 -2013,7,16,10,30,370,342,33,4.800000000000001,24.400000000000002,32.3,932,19.200000000000003 -2013,7,16,11,30,441,404,40,4.5,24.900000000000002,20.36,932,19.200000000000003 -2013,7,16,12,30,332,314,18,4.1000000000000005,24.900000000000002,11.700000000000001,932,19 -2013,7,16,13,30,298,282,16,3.7,24.5,14.67,932,19.200000000000003 -2013,7,16,14,30,147,143,4,3.5,24,25.46,932,19.6 -2013,7,16,15,30,200,193,9,3.3000000000000003,23.400000000000002,37.81,932,20 -2013,7,16,16,30,301,267,53,3,22.8,50.46,932,20.400000000000002 -2013,7,16,17,30,41,41,0,2.8000000000000003,22.6,63.06,932,20.8 -2013,7,16,18,30,138,92,185,2.4000000000000004,21.6,75.4,933,21.1 -2013,7,16,19,30,15,15,0,2.5,21,87.16,933,21 -2013,7,16,20,30,0,0,0,2.7,20.8,98.60000000000001,933,20.8 -2013,7,16,21,30,0,0,0,2.8000000000000003,20.6,108.76,934,20.6 -2013,7,16,22,30,0,0,0,2.7,20.5,117.29,934,20.5 -2013,7,16,23,30,0,0,0,2.5,20.5,123.44,934,20.5 -2013,7,17,0,30,0,0,0,2.5,20.400000000000002,126.37,934,20.400000000000002 -2013,7,17,1,30,0,0,0,2.6,20.400000000000002,125.54,934,20.400000000000002 -2013,7,17,2,30,0,0,0,2.8000000000000003,20.3,121.12,933,20.3 -2013,7,17,3,30,0,0,0,2.9000000000000004,20.200000000000003,113.83,933,20.200000000000003 -2013,7,17,4,30,0,0,0,2.8000000000000003,20.1,104.51,933,20.1 -2013,7,17,5,30,0,0,0,2.8000000000000003,20.1,93.83,934,20.1 -2013,7,17,6,30,13,13,0,3.1,20.3,82.17,934,20.3 -2013,7,17,7,30,15,15,0,3.3000000000000003,20.700000000000003,70.09,935,20.700000000000003 -2013,7,17,8,30,122,122,0,3.4000000000000004,21.400000000000002,57.61,935,20.6 -2013,7,17,9,30,274,258,23,3.3000000000000003,22.3,44.97,935,20.5 -2013,7,17,10,30,544,417,150,3.3000000000000003,23.200000000000003,32.4,935,20.3 -2013,7,17,11,30,296,281,16,3.3000000000000003,23.900000000000002,20.48,935,20.3 -2013,7,17,12,30,642,503,142,3.4000000000000004,24.3,11.870000000000001,935,20.400000000000002 -2013,7,17,13,30,766,478,298,3.5,24.3,14.8,934,20.5 -2013,7,17,14,30,616,454,179,3.6,24.1,25.54,934,20.700000000000003 -2013,7,17,15,30,156,152,4,3.6,23.700000000000003,37.87,934,21 -2013,7,17,16,30,126,126,0,3.4000000000000004,23,50.52,934,21.400000000000002 -2013,7,17,17,30,192,174,41,3.2,22.700000000000003,63.120000000000005,934,21.700000000000003 -2013,7,17,18,30,127,93,135,2.6,21.700000000000003,75.46000000000001,934,21.700000000000003 -2013,7,17,19,30,14,14,0,2.4000000000000004,21.200000000000003,87.23,934,21.200000000000003 -2013,7,17,20,30,0,0,0,2.3000000000000003,20.900000000000002,98.7,934,20.900000000000002 -2013,7,17,21,30,0,0,0,2.3000000000000003,20.700000000000003,108.87,934,20.700000000000003 -2013,7,17,22,30,0,0,0,2.3000000000000003,20.5,117.43,934,20.5 -2013,7,17,23,30,0,0,0,2.3000000000000003,20.3,123.60000000000001,934,20.3 -2013,7,18,0,30,0,0,0,2.1,20.1,126.54,934,20.1 -2013,7,18,1,30,0,0,0,1.9000000000000001,20,125.71000000000001,934,20 -2013,7,18,2,30,0,0,0,1.8,19.8,121.28,934,19.8 -2013,7,18,3,30,0,0,0,1.7000000000000002,19.700000000000003,113.98,934,19.700000000000003 -2013,7,18,4,30,0,0,0,1.7000000000000002,19.6,104.64,934,19.6 -2013,7,18,5,30,0,0,0,2,19.8,93.95,934,19.8 -2013,7,18,6,30,27,27,0,2.7,20.400000000000002,82.27,934,20.400000000000002 -2013,7,18,7,30,74,74,0,3.3000000000000003,21.400000000000002,70.18,935,20.6 -2013,7,18,8,30,325,233,172,3.7,22.6,57.71,935,20.400000000000002 -2013,7,18,9,30,475,330,206,3.9000000000000004,23.900000000000002,45.06,934,20.1 -2013,7,18,10,30,620,407,254,4,25,32.5,934,20 -2013,7,18,11,30,601,474,136,3.9000000000000004,25.900000000000002,20.6,934,19.8 -2013,7,18,12,30,586,490,98,3.8000000000000003,26.5,12.05,933,19.700000000000003 -2013,7,18,13,30,980,101,910,3.6,26.8,14.93,932,19.700000000000003 -2013,7,18,14,30,410,377,37,3.4000000000000004,26.8,25.62,932,19.700000000000003 -2013,7,18,15,30,170,166,6,3.2,26.700000000000003,37.93,931,19.6 -2013,7,18,16,30,605,81,824,2.9000000000000004,26.400000000000002,50.58,931,19.700000000000003 -2013,7,18,17,30,403,69,739,2.8000000000000003,26.200000000000003,63.18,931,19.700000000000003 -2013,7,18,18,30,195,50,577,1.5,24.200000000000003,75.54,931,20.400000000000002 -2013,7,18,19,30,25,16,192,1,22.6,87.32000000000001,931,21.3 -2013,7,18,20,30,0,0,0,1,21.8,98.8,931,20.8 -2013,7,18,21,30,0,0,0,1,21.200000000000003,108.99000000000001,931,20.5 -2013,7,18,22,30,0,0,0,1,20.700000000000003,117.57000000000001,931,20.200000000000003 -2013,7,18,23,30,0,0,0,1.1,20.200000000000003,123.76,931,19.900000000000002 -2013,7,19,0,30,0,0,0,1.1,19.8,126.72,931,19.700000000000003 -2013,7,19,1,30,0,0,0,1.1,19.400000000000002,125.89,931,19.400000000000002 -2013,7,19,2,30,0,0,0,1.1,19,121.45,930,19 -2013,7,19,3,30,0,0,0,1.1,18.7,114.13,930,18.7 -2013,7,19,4,30,0,0,0,1.1,18.400000000000002,104.78,930,18.400000000000002 -2013,7,19,5,30,0,0,0,1.5,19.1,94.07000000000001,931,19.1 -2013,7,19,6,30,86,38,362,2.1,20.900000000000002,82.38,931,19.5 -2013,7,19,7,30,281,69,630,2.7,23.5,70.28,931,20 -2013,7,19,8,30,491,87,757,3,25.8,57.800000000000004,931,19.6 -2013,7,19,9,30,685,101,828,3.1,27.200000000000003,45.15,931,19.6 -2013,7,19,10,30,842,111,868,3.1,28.1,32.59,931,19.5 -2013,7,19,11,30,950,117,890,3.1,28.8,20.72,930,19.6 -2013,7,19,12,30,1000,116,905,3,29.3,12.22,929,19.6 -2013,7,19,13,30,987,113,905,2.9000000000000004,29.5,15.06,929,19.6 -2013,7,19,14,30,912,108,892,2.8000000000000003,29.5,25.7,928,19.5 -2013,7,19,15,30,783,101,864,2.7,29.200000000000003,38,927,19.400000000000002 -2013,7,19,16,30,607,90,815,2.7,28.6,50.64,927,19.3 -2013,7,19,17,30,404,76,729,2.6,28.200000000000003,63.25,927,19.200000000000003 -2013,7,19,18,30,194,55,561,1.6,25.6,75.62,927,20.3 -2013,7,19,19,30,24,17,170,1.3,23.900000000000002,87.4,928,21.1 -2013,7,19,20,30,0,0,0,1.3,23,98.9,928,20.400000000000002 -2013,7,19,21,30,0,0,0,1.5,22.400000000000002,109.12,929,20 -2013,7,19,22,30,0,0,0,1.8,21.900000000000002,117.72,929,19.700000000000003 -2013,7,19,23,30,0,0,0,2.2,21.400000000000002,123.93,928,19.3 -2013,7,20,0,30,0,0,0,2.4000000000000004,20.8,126.9,928,19.1 -2013,7,20,1,30,0,0,0,2.4000000000000004,20.200000000000003,126.08,928,18.900000000000002 -2013,7,20,2,30,0,0,0,2.2,19.6,121.63,928,18.900000000000002 -2013,7,20,3,30,0,0,0,1.9000000000000001,19.200000000000003,114.29,928,18.8 -2013,7,20,4,30,0,0,0,1.7000000000000002,18.900000000000002,104.92,928,18.8 -2013,7,20,5,30,0,0,0,2.3000000000000003,19.400000000000002,94.2,928,18.900000000000002 -2013,7,20,6,30,85,36,373,2.9000000000000004,21.3,82.49,928,19.3 -2013,7,20,7,30,281,65,643,3.4000000000000004,23.900000000000002,70.38,928,20 -2013,7,20,8,30,492,83,771,3.3000000000000003,26.400000000000002,57.89,928,20.1 -2013,7,20,9,30,686,95,839,2.7,27.900000000000002,45.25,928,20.1 -2013,7,20,10,30,843,105,876,2.5,29,32.7,928,20 -2013,7,20,11,30,950,113,895,2.6,29.700000000000003,20.85,927,19.900000000000002 -2013,7,20,12,30,1002,102,922,2.9000000000000004,30.1,12.41,927,19.700000000000003 -2013,7,20,13,30,986,105,912,3.1,30.3,15.200000000000001,926,19.5 -2013,7,20,14,30,909,105,893,3.3000000000000003,30.200000000000003,25.79,926,19.3 -2013,7,20,15,30,778,100,861,3.3000000000000003,29.900000000000002,38.07,925,19.1 -2013,7,20,16,30,602,91,808,3.2,29.3,50.71,925,19 -2013,7,20,17,30,399,77,717,3.1,28.900000000000002,63.33,925,19 -2013,7,20,18,30,155,80,304,1.9000000000000001,26.400000000000002,75.7,925,20.200000000000003 -2013,7,20,19,30,23,16,161,1.6,24.700000000000003,87.5,926,20.900000000000002 -2013,7,20,20,30,0,0,0,1.6,23.8,99.02,926,20.5 -2013,7,20,21,30,0,0,0,1.8,23.1,109.25,927,20.3 -2013,7,20,22,30,0,0,0,1.9000000000000001,22.5,117.87,927,20.1 -2013,7,20,23,30,0,0,0,2.1,22,124.11,927,20 -2013,7,21,0,30,0,0,0,2.2,21.400000000000002,127.09,926,19.900000000000002 -2013,7,21,1,30,0,0,0,2.2,20.900000000000002,126.27,926,19.8 -2013,7,21,2,30,0,0,0,2,20.5,121.81,926,19.6 -2013,7,21,3,30,0,0,0,1.9000000000000001,20.200000000000003,114.45,926,19.3 -2013,7,21,4,30,0,0,0,2,19.900000000000002,105.06,926,19.1 -2013,7,21,5,30,0,0,0,2.5,20.3,94.32000000000001,926,18.900000000000002 -2013,7,21,6,30,83,35,376,3.1,22,82.60000000000001,927,19.1 -2013,7,21,7,30,279,62,651,3.6,24.400000000000002,70.49,927,19.400000000000002 -2013,7,21,8,30,490,77,780,3.8000000000000003,26.700000000000003,57.99,927,19.200000000000003 -2013,7,21,9,30,685,87,850,3.6,28.5,45.34,927,19 -2013,7,21,10,30,844,93,893,3.5,29.8,32.8,927,18.900000000000002 -2013,7,21,11,30,953,96,917,3.7,30.8,20.98,926,18.900000000000002 -2013,7,21,12,30,1002,97,928,4,31.400000000000002,12.6,926,18.900000000000002 -2013,7,21,13,30,989,96,926,4.1000000000000005,31.700000000000003,15.35,925,18.900000000000002 -2013,7,21,14,30,914,92,914,4.1000000000000005,31.700000000000003,25.89,925,18.900000000000002 -2013,7,21,15,30,780,96,869,4.1000000000000005,31.400000000000002,38.15,924,18.8 -2013,7,21,16,30,603,88,815,4,30.700000000000003,50.79,924,18.8 -2013,7,21,17,30,398,76,721,3.9000000000000004,30.200000000000003,63.410000000000004,924,19 -2013,7,21,18,30,188,55,544,2.7,27.400000000000002,75.79,925,20 -2013,7,21,19,30,22,16,143,2.5,25.700000000000003,87.59,925,20.5 -2013,7,21,20,30,0,0,0,2.8000000000000003,25,99.13,926,20.3 -2013,7,21,21,30,0,0,0,2.9000000000000004,24.3,109.39,926,20.400000000000002 -2013,7,21,22,30,0,0,0,2.9000000000000004,23.6,118.03,927,20.400000000000002 -2013,7,21,23,30,0,0,0,2.9000000000000004,23,124.29,927,20.400000000000002 -2013,7,22,0,30,0,0,0,2.7,22.5,127.29,927,20.3 -2013,7,22,1,30,0,0,0,2.5,21.900000000000002,126.46000000000001,926,20.200000000000003 -2013,7,22,2,30,0,0,0,2.3000000000000003,21.400000000000002,121.99000000000001,926,20.1 -2013,7,22,3,30,0,0,0,2.2,21,114.61,927,20.1 -2013,7,22,4,30,0,0,0,2.2,20.700000000000003,105.2,927,20.1 -2013,7,22,5,30,0,0,0,2.6,21,94.45,927,20.1 -2013,7,22,6,30,76,41,281,3.4000000000000004,22.5,82.71000000000001,927,20.3 -2013,7,22,7,30,266,79,564,4.1000000000000005,24.8,70.59,927,20.6 -2013,7,22,8,30,473,102,701,4.3,26.8,58.08,927,20.8 -2013,7,22,9,30,663,120,775,4.2,28.5,45.43,927,21 -2013,7,22,10,30,816,137,809,4.1000000000000005,29.6,32.9,927,21 -2013,7,22,11,30,920,151,824,4.1000000000000005,30.200000000000003,21.11,927,21 -2013,7,22,12,30,970,149,841,4.3,30.5,12.790000000000001,926,20.900000000000002 -2013,7,22,13,30,895,427,486,4.5,30.5,15.51,926,21 -2013,7,22,14,30,878,148,813,4.800000000000001,30.3,25.990000000000002,925,21.1 -2013,7,22,15,30,752,132,790,4.9,30.1,38.24,925,21.1 -2013,7,22,16,30,582,113,743,4.7,29.6,50.870000000000005,925,21 -2013,7,22,17,30,383,91,653,4.6000000000000005,29.3,63.49,925,20.8 -2013,7,22,18,30,179,62,482,3.2,27.400000000000002,75.88,925,21.1 -2013,7,22,19,30,12,12,0,2.6,26.200000000000003,87.69,925,21.1 -2013,7,22,20,30,0,0,0,2.6,25.5,99.26,926,20.8 -2013,7,22,21,30,0,0,0,2.8000000000000003,25,109.53,926,20.700000000000003 -2013,7,22,22,30,0,0,0,2.8000000000000003,24.400000000000002,118.2,927,20.6 -2013,7,22,23,30,0,0,0,2.6,23.8,124.48,927,20.5 -2013,7,23,0,30,0,0,0,2.4000000000000004,23.200000000000003,127.49000000000001,927,20.400000000000002 -2013,7,23,1,30,0,0,0,2.5,22.700000000000003,126.66,927,20.3 -2013,7,23,2,30,0,0,0,2.8000000000000003,22.3,122.18,927,20.200000000000003 -2013,7,23,3,30,0,0,0,3.1,21.900000000000002,114.78,927,20.200000000000003 -2013,7,23,4,30,0,0,0,3.3000000000000003,21.6,105.35000000000001,927,20.3 -2013,7,23,5,30,0,0,0,3.6,21.8,94.58,927,20.400000000000002 -2013,7,23,6,30,76,39,300,4.6000000000000005,23.1,82.82000000000001,927,20.700000000000003 -2013,7,23,7,30,268,72,592,5.4,25.400000000000002,70.69,927,21.1 -2013,7,23,8,30,477,91,733,5.300000000000001,27.8,58.18,927,21.400000000000002 -2013,7,23,9,30,670,103,809,4.9,29.8,45.53,927,21.400000000000002 -2013,7,23,10,30,827,114,850,4.5,31.400000000000002,33,927,21.400000000000002 -2013,7,23,11,30,932,122,870,4.3,32.5,21.240000000000002,927,21.400000000000002 -2013,7,23,12,30,985,110,898,4.2,33.1,12.99,926,21.3 -2013,7,23,13,30,969,113,890,4.2,33.300000000000004,15.67,926,21.200000000000003 -2013,7,23,14,30,892,113,867,4.2,33.2,26.1,925,21.1 -2013,7,23,15,30,761,111,827,4.3,32.800000000000004,38.33,925,21 -2013,7,23,16,30,586,103,767,4.3,32,50.95,924,20.900000000000002 -2013,7,23,17,30,384,87,666,4.3,31.5,63.58,924,21 -2013,7,23,18,30,178,62,478,3.3000000000000003,28.900000000000002,75.98,924,21.5 -2013,7,23,19,30,19,15,84,3.2,27.6,87.8,925,21.6 -2013,7,23,20,30,0,0,0,3.2,26.8,99.38,925,21.5 -2013,7,23,21,30,0,0,0,2.9000000000000004,26.200000000000003,109.68,926,21.400000000000002 -2013,7,23,22,30,0,0,0,2.7,25.6,118.37,926,21.200000000000003 -2013,7,23,23,30,0,0,0,2.5,25.1,124.67,926,21 -2013,7,24,0,30,0,0,0,2.6,24.700000000000003,127.69,926,20.700000000000003 -2013,7,24,1,30,0,0,0,2.8000000000000003,24.3,126.87,926,20.3 -2013,7,24,2,30,0,0,0,3,23.8,122.37,926,19.6 -2013,7,24,3,30,0,0,0,3,23.200000000000003,114.95,926,18.900000000000002 -2013,7,24,4,30,0,0,0,3,22.5,105.5,926,18.5 -2013,7,24,5,30,0,0,0,3.3000000000000003,22.3,94.7,927,18.400000000000002 -2013,7,24,6,30,74,40,280,3.6,23,82.94,927,18.5 -2013,7,24,7,30,268,76,584,3.7,24.700000000000003,70.79,927,18.900000000000002 -2013,7,24,8,30,480,95,732,3.7,26.900000000000002,58.28,927,19.400000000000002 -2013,7,24,9,30,675,107,813,3.4000000000000004,29,45.63,927,19.700000000000003 -2013,7,24,10,30,834,115,858,2.9000000000000004,30.8,33.11,927,19.6 -2013,7,24,11,30,797,409,417,2.7,32.1,21.38,927,19.700000000000003 -2013,7,24,12,30,859,452,417,2.8000000000000003,32.800000000000004,13.19,927,20 -2013,7,24,13,30,794,435,373,3.1,32.6,15.85,927,20.200000000000003 -2013,7,24,14,30,740,390,390,3.1,32.1,26.21,927,20.400000000000002 -2013,7,24,15,30,689,287,514,3,31.5,38.42,927,20.5 -2013,7,24,16,30,591,102,778,2.5,30.700000000000003,51.04,927,20.6 -2013,7,24,17,30,387,87,677,2.2,30.3,63.67,927,21.200000000000003 -2013,7,24,18,30,179,62,486,1.2000000000000002,28,76.08,927,22.5 -2013,7,24,19,30,18,15,81,1.1,26.8,87.91,927,22.200000000000003 -2013,7,24,20,30,0,0,0,1.2000000000000002,26.200000000000003,99.52,928,21.700000000000003 -2013,7,24,21,30,0,0,0,1.4000000000000001,25.8,109.83,928,21.5 -2013,7,24,22,30,0,0,0,1.5,25.400000000000002,118.55,928,21.400000000000002 -2013,7,24,23,30,0,0,0,1.6,25,124.87,928,21.3 -2013,7,25,0,30,0,0,0,1.8,24.6,127.91,928,21.200000000000003 -2013,7,25,1,30,0,0,0,1.8,24.200000000000003,127.08,928,21.1 -2013,7,25,2,30,0,0,0,1.8,23.900000000000002,122.56,929,21 -2013,7,25,3,30,0,0,0,1.6,23.6,115.12,929,20.8 -2013,7,25,4,30,0,0,0,1.2000000000000002,23.200000000000003,105.65,929,20.6 -2013,7,25,5,30,0,0,0,1,23.200000000000003,94.84,929,20.400000000000002 -2013,7,25,6,30,72,40,265,1.2000000000000002,23.900000000000002,83.05,929,20.6 -2013,7,25,7,30,264,77,571,1.3,25.3,70.9,930,20.3 -2013,7,25,8,30,474,97,719,1.3,27,58.38,930,19.900000000000002 -2013,7,25,9,30,669,110,800,1.3,28.6,45.72,930,19.6 -2013,7,25,10,30,828,117,850,1.4000000000000001,29.8,33.22,930,19.900000000000002 -2013,7,25,11,30,801,408,423,1.7000000000000002,30.200000000000003,21.52,930,20.3 -2013,7,25,12,30,784,462,331,2.1,30.200000000000003,13.4,930,20.6 -2013,7,25,13,30,450,413,39,2.5,30.1,16.02,930,20.900000000000002 -2013,7,25,14,30,823,364,512,2.8000000000000003,29.8,26.330000000000002,929,21.200000000000003 -2013,7,25,15,30,756,127,805,3,29.400000000000002,38.52,929,21.400000000000002 -2013,7,25,16,30,581,112,747,3,28.8,51.14,929,21.5 -2013,7,25,17,30,169,159,22,3,28.5,63.77,929,21.900000000000002 -2013,7,25,18,30,98,87,46,2.5,26.8,76.19,929,22.400000000000002 -2013,7,25,19,30,9,9,0,2.6,25.900000000000002,88.02,929,22.3 -2013,7,25,20,30,0,0,0,2.9000000000000004,25.5,99.66,929,22.1 -2013,7,25,21,30,0,0,0,3.1,25.1,109.99000000000001,929,21.900000000000002 -2013,7,25,22,30,0,0,0,3.2,24.700000000000003,118.73,929,21.6 -2013,7,25,23,30,0,0,0,3.2,24.200000000000003,125.08,929,21.3 -2013,7,26,0,30,0,0,0,3,23.8,128.13,929,21 -2013,7,26,1,30,0,0,0,2.8000000000000003,23.400000000000002,127.3,928,20.700000000000003 -2013,7,26,2,30,0,0,0,2.7,23.1,122.76,928,20.5 -2013,7,26,3,30,0,0,0,2.6,22.700000000000003,115.29,928,20.200000000000003 -2013,7,26,4,30,0,0,0,2.6,22.200000000000003,105.8,928,19.900000000000002 -2013,7,26,5,30,0,0,0,2.8000000000000003,22.200000000000003,94.97,928,19.700000000000003 -2013,7,26,6,30,21,21,0,3.2,23.1,83.17,929,19.6 -2013,7,26,7,30,190,124,205,3.7,25.200000000000003,71,929,19.6 -2013,7,26,8,30,376,206,325,4.1000000000000005,27.900000000000002,58.47,929,19.3 -2013,7,26,9,30,663,118,783,4,30.3,45.82,929,18.8 -2013,7,26,10,30,795,261,639,3.7,32.300000000000004,33.33,929,18.3 -2013,7,26,11,30,927,133,855,3.5,33.7,21.67,928,18.2 -2013,7,26,12,30,975,137,862,3.8000000000000003,34.4,13.620000000000001,928,18.5 -2013,7,26,13,30,881,433,466,4.3,34.2,16.21,927,18.7 -2013,7,26,14,30,883,140,829,4.7,33.5,26.46,927,18.7 -2013,7,26,15,30,756,128,804,5,32.9,38.63,927,18.400000000000002 -2013,7,26,16,30,587,106,769,5,32,51.24,927,17.900000000000002 -2013,7,26,17,30,388,82,693,5,31.5,63.88,927,17.5 -2013,7,26,18,30,180,55,529,4,28.200000000000003,76.3,928,17.6 -2013,7,26,19,30,17,13,127,3.5,26.1,88.14,929,18 -2013,7,26,20,30,0,0,0,3.4000000000000004,24.8,99.8,930,18.2 -2013,7,26,21,30,0,0,0,3.1,23.8,110.16,930,18.400000000000002 -2013,7,26,22,30,0,0,0,2.8000000000000003,23,118.92,931,18.7 -2013,7,26,23,30,0,0,0,2.7,22.3,125.29,931,18.8 -2013,7,27,0,30,0,0,0,2.7,21.700000000000003,128.35,931,18.8 -2013,7,27,1,30,0,0,0,2.5,21,127.52,930,18.7 -2013,7,27,2,30,0,0,0,2.3000000000000003,20.1,122.96000000000001,930,18.6 -2013,7,27,3,30,0,0,0,2.2,19.400000000000002,115.47,930,18.5 -2013,7,27,4,30,0,0,0,2.1,18.900000000000002,105.95,930,18.5 -2013,7,27,5,30,0,0,0,2.6,19.1,95.10000000000001,930,18.400000000000002 -2013,7,27,6,30,76,35,357,3.4000000000000004,20.8,83.28,931,18.400000000000002 -2013,7,27,7,30,277,65,653,3.8000000000000003,23.1,71.11,931,18 -2013,7,27,8,30,430,150,538,3.8000000000000003,25.1,58.57,931,17.5 -2013,7,27,9,30,606,225,549,3.6,26.900000000000002,45.92,931,17.2 -2013,7,27,10,30,836,184,782,3.5,28.400000000000002,33.44,931,17 -2013,7,27,11,30,841,405,470,3.4000000000000004,29.700000000000003,21.81,930,16.7 -2013,7,27,12,30,968,313,675,3.4000000000000004,30.700000000000003,13.83,929,16.2 -2013,7,27,13,30,958,298,689,3.4000000000000004,31.200000000000003,16.4,929,15.8 -2013,7,27,14,30,931,93,938,3.4000000000000004,31.400000000000002,26.59,928,15.4 -2013,7,27,15,30,796,87,909,3.4000000000000004,31.1,38.74,928,15 -2013,7,27,16,30,616,79,859,3.3000000000000003,30.3,51.35,927,14.4 -2013,7,27,17,30,328,148,409,3.3000000000000003,29.8,63.980000000000004,927,13.8 -2013,7,27,18,30,155,71,358,1.9000000000000001,26.200000000000003,76.41,927,14.700000000000001 -2013,7,27,19,30,17,13,146,1.4000000000000001,23.900000000000002,88.26,927,15.8 -2013,7,27,20,30,0,0,0,1.5,23,99.95,928,15.3 -2013,7,27,21,30,0,0,0,1.7000000000000002,22.3,110.33,928,15 -2013,7,27,22,30,0,0,0,1.9000000000000001,21.700000000000003,119.12,928,14.8 -2013,7,27,23,30,0,0,0,2.1,21,125.51,928,14.600000000000001 -2013,7,28,0,30,0,0,0,2.2,20.3,128.58,928,14.700000000000001 -2013,7,28,1,30,0,0,0,2.1,19.700000000000003,127.74000000000001,928,14.8 -2013,7,28,2,30,0,0,0,2,19,123.16,928,15.100000000000001 -2013,7,28,3,30,0,0,0,1.8,18.3,115.65,928,15.4 -2013,7,28,4,30,0,0,0,1.8,17.7,106.11,928,15.600000000000001 -2013,7,28,5,30,0,0,0,2.2,18,95.24,928,15.8 -2013,7,28,6,30,78,32,407,3,19.900000000000002,83.4,928,16.1 -2013,7,28,7,30,282,59,692,3.5,22.700000000000003,71.22,928,16.3 -2013,7,28,8,30,501,75,820,3.4000000000000004,25.200000000000003,58.67,928,16.2 -2013,7,28,9,30,700,84,887,2.9000000000000004,27.200000000000003,46.02,928,15.600000000000001 -2013,7,28,10,30,862,91,925,2.6,28.900000000000002,33.55,927,14.9 -2013,7,28,11,30,971,95,945,2.6,30.3,21.96,927,14.3 -2013,7,28,12,30,1018,103,943,2.7,31.400000000000002,14.06,926,14 -2013,7,28,13,30,1001,103,938,2.9000000000000004,32.2,16.59,925,13.700000000000001 -2013,7,28,14,30,920,100,918,3.1,32.6,26.73,925,13.700000000000001 -2013,7,28,15,30,782,101,875,3.3000000000000003,32.6,38.85,924,13.700000000000001 -2013,7,28,16,30,600,93,814,3.4000000000000004,32.1,51.46,924,13.700000000000001 -2013,7,28,17,30,389,82,702,3.4000000000000004,31.700000000000003,64.1,924,14 -2013,7,28,18,30,126,84,182,2.3000000000000003,28.6,76.54,924,16 -2013,7,28,19,30,13,12,37,2.3000000000000003,26.900000000000002,88.39,925,16.5 -2013,7,28,20,30,0,0,0,3,26.5,100.10000000000001,925,16.2 -2013,7,28,21,30,0,0,0,3.6,26.200000000000003,110.5,925,16.7 -2013,7,28,22,30,0,0,0,3.9000000000000004,25.700000000000003,119.32000000000001,925,17.6 -2013,7,28,23,30,0,0,0,3.8000000000000003,25.3,125.73,925,18.5 -2013,7,29,0,30,0,0,0,3.6,24.900000000000002,128.81,925,19.200000000000003 -2013,7,29,1,30,0,0,0,3.4000000000000004,24.5,127.97,925,19.6 -2013,7,29,2,30,0,0,0,3.4000000000000004,24,123.37,925,19.900000000000002 -2013,7,29,3,30,0,0,0,3.5,23.6,115.83,925,19.900000000000002 -2013,7,29,4,30,0,0,0,3.6,23.200000000000003,106.26,926,19.900000000000002 -2013,7,29,5,30,0,0,0,3.9000000000000004,23.1,95.37,926,20.1 -2013,7,29,6,30,31,31,0,4.7,24,83.52,927,20.5 -2013,7,29,7,30,114,110,12,5.6000000000000005,25.5,71.32000000000001,927,21.1 -2013,7,29,8,30,441,145,570,5.800000000000001,27.400000000000002,58.78,927,21.1 -2013,7,29,9,30,635,159,687,5.800000000000001,29.200000000000003,46.12,927,20.700000000000003 -2013,7,29,10,30,547,412,163,5.7,30.6,33.67,927,20.400000000000002 -2013,7,29,11,30,810,408,433,5.4,31.6,22.12,927,20.1 -2013,7,29,12,30,523,461,64,5.2,32.1,14.280000000000001,927,20 -2013,7,29,13,30,845,438,425,4.9,32.1,16.8,926,19.8 -2013,7,29,14,30,677,436,270,4.4,31.8,26.88,926,19.700000000000003 -2013,7,29,15,30,743,132,785,3.8000000000000003,31.200000000000003,38.97,926,19.700000000000003 -2013,7,29,16,30,568,118,725,2.9000000000000004,30.5,51.57,926,19.900000000000002 -2013,7,29,17,30,325,146,411,2.3000000000000003,30.200000000000003,64.22,926,20.900000000000002 -2013,7,29,18,30,85,81,21,1.5,28.200000000000003,76.66,926,21.900000000000002 -2013,7,29,19,30,5,5,0,1.8,27.200000000000003,88.51,927,21 -2013,7,29,20,30,0,0,0,2.2,26.700000000000003,100.26,927,20.1 -2013,7,29,21,30,0,0,0,2.6,26.1,110.69,928,19.3 -2013,7,29,22,30,0,0,0,2.6,25.3,119.52,928,18.7 -2013,7,29,23,30,0,0,0,2.8000000000000003,24.5,125.96000000000001,928,18.400000000000002 -2013,7,30,0,30,0,0,0,3.2,23.900000000000002,129.05,928,18 -2013,7,30,1,30,0,0,0,3.6,23.3,128.2,928,17.6 -2013,7,30,2,30,0,0,0,3.8000000000000003,22.8,123.59,928,17.3 -2013,7,30,3,30,0,0,0,3.8000000000000003,22.5,116.02,928,17.400000000000002 -2013,7,30,4,30,0,0,0,3.8000000000000003,22.400000000000002,106.42,929,18 -2013,7,30,5,30,0,0,0,4,22.400000000000002,95.51,929,18.8 -2013,7,30,6,30,36,36,5,4.800000000000001,23.3,83.63,929,19.6 -2013,7,30,7,30,192,118,230,5.6000000000000005,25.1,71.43,930,20.400000000000002 -2013,7,30,8,30,338,219,232,5.7,27.5,58.88,930,20.5 -2013,7,30,9,30,388,318,101,5.1000000000000005,29.700000000000003,46.230000000000004,930,20 -2013,7,30,10,30,709,331,455,4.4,31.400000000000002,33.78,930,19.700000000000003 -2013,7,30,11,30,811,407,436,3.7,32.6,22.27,929,19.6 -2013,7,30,12,30,870,448,436,3.2,33.300000000000004,14.52,929,19.6 -2013,7,30,13,30,859,436,442,2.7,33.6,17.01,929,19.6 -2013,7,30,14,30,786,377,459,2.4000000000000004,33.7,27.03,928,19.700000000000003 -2013,7,30,15,30,649,299,450,2.3000000000000003,33.7,39.1,928,19.700000000000003 -2013,7,30,16,30,453,263,305,2.2,33.300000000000004,51.69,928,19.700000000000003 -2013,7,30,17,30,310,156,354,2.1,33,64.34,928,20.1 -2013,7,30,18,30,146,71,329,1.5,30.3,76.79,928,21.700000000000003 -2013,7,30,19,30,8,8,0,1.5,28.700000000000003,88.65,928,21.3 -2013,7,30,20,30,0,0,0,1.7000000000000002,27.900000000000002,100.42,928,20.8 -2013,7,30,21,30,0,0,0,1.8,27.3,110.87,929,20.6 -2013,7,30,22,30,0,0,0,1.9000000000000001,26.900000000000002,119.73,929,20.400000000000002 -2013,7,30,23,30,0,0,0,2.2,26.5,126.19,929,20.3 -2013,7,31,0,30,0,0,0,2.5,26.3,129.3,929,20 -2013,7,31,1,30,0,0,0,2.7,26,128.44,929,19.700000000000003 -2013,7,31,2,30,0,0,0,3,25.6,123.8,929,19.400000000000002 -2013,7,31,3,30,0,0,0,3.2,25,116.21000000000001,929,19.1 -2013,7,31,4,30,0,0,0,3.4000000000000004,24.5,106.58,930,19 -2013,7,31,5,30,0,0,0,3.7,24.3,95.65,931,19 -2013,7,31,6,30,42,36,50,3.9000000000000004,25.200000000000003,83.75,931,19.1 -2013,7,31,7,30,239,105,425,3.8000000000000003,27.200000000000003,71.54,932,19.3 -2013,7,31,8,30,449,137,605,3.1,29.6,58.980000000000004,932,19.3 -2013,7,31,9,30,643,158,702,2,31.8,46.33,931,19.3 -2013,7,31,10,30,800,172,757,1.3,33.4,33.9,931,19.5 -2013,7,31,11,30,878,354,568,1.6,34.4,22.43,931,19.8 -2013,7,31,12,30,964,161,830,2.3000000000000003,34.800000000000004,14.75,930,20 -2013,7,31,13,30,948,160,825,2.8000000000000003,34.6,17.22,929,20.1 -2013,7,31,14,30,871,155,804,3.1,34.1,27.19,929,20 -2013,7,31,15,30,413,355,74,3.1,33.5,39.230000000000004,929,19.900000000000002 -2013,7,31,16,30,490,240,404,2.8000000000000003,32.800000000000004,51.82,929,19.700000000000003 -2013,7,31,17,30,129,129,0,2.5,32.4,64.47,929,19.700000000000003 -2013,7,31,18,30,158,70,389,1.3,30.200000000000003,76.93,929,20.700000000000003 -2013,7,31,19,30,7,7,0,1,28.8,88.79,929,20.6 -2013,7,31,20,30,0,0,0,0.9,28,100.59,930,20.1 -2013,7,31,21,30,0,0,0,0.8,27.5,111.06,930,19.8 -2013,7,31,22,30,0,0,0,0.8,27,119.95,930,19.5 -2013,7,31,23,30,0,0,0,0.9,26.5,126.43,930,19.400000000000002 -2013,8,1,0,30,0,0,0,1.1,25.900000000000002,129.55,930,19.3 -2013,8,1,1,30,0,0,0,1.2000000000000002,25.400000000000002,128.68,930,19.400000000000002 -2013,8,1,2,30,0,0,0,1.2000000000000002,24.900000000000002,124.02,929,19.6 -2013,8,1,3,30,0,0,0,1.1,24.400000000000002,116.4,929,19.900000000000002 -2013,8,1,4,30,0,0,0,0.9,24,106.75,929,20.3 -2013,8,1,5,30,0,0,0,1.1,24.1,95.79,930,20.6 -2013,8,1,6,30,46,36,97,1.4000000000000001,25.3,83.87,930,21.1 -2013,8,1,7,30,163,123,127,1.5,27.400000000000002,71.65,930,21 -2013,8,1,8,30,405,175,447,1.5,29.700000000000003,59.08,930,20.8 -2013,8,1,9,30,593,227,531,1.9000000000000001,31.400000000000002,46.44,930,20.400000000000002 -2013,8,1,10,30,793,250,655,2.3000000000000003,32.5,34.02,930,20.400000000000002 -2013,8,1,11,30,926,126,867,2.5,33.1,22.59,930,20.200000000000003 -2013,8,1,12,30,979,119,891,2.5,33.300000000000004,15,929,19.900000000000002 -2013,8,1,13,30,966,116,891,2.2,33.300000000000004,17.45,929,19.5 -2013,8,1,14,30,890,111,878,1.9000000000000001,33.2,27.35,928,19.1 -2013,8,1,15,30,757,108,839,1.7000000000000002,32.9,39.37,927,18.7 -2013,8,1,16,30,379,281,160,1.6,32.6,51.95,927,18.2 -2013,8,1,17,30,289,165,289,1.6,32.300000000000004,64.6,927,18 -2013,8,1,18,30,143,69,328,1,29.700000000000003,77.07000000000001,927,19.5 -2013,8,1,19,30,5,5,0,1,27.8,88.93,927,19.8 -2013,8,1,20,30,0,0,0,1.2000000000000002,26.900000000000002,100.76,928,19.3 -2013,8,1,21,30,0,0,0,1.5,26.400000000000002,111.26,928,19.1 -2013,8,1,22,30,0,0,0,1.7000000000000002,26,120.17,928,19 -2013,8,1,23,30,0,0,0,2,25.700000000000003,126.68,927,19 -2013,8,2,0,30,0,0,0,2.1,25.400000000000002,129.81,927,19 -2013,8,2,1,30,0,0,0,2.2,25,128.93,927,19.1 -2013,8,2,2,30,0,0,0,2.2,24.700000000000003,124.24000000000001,926,19.1 -2013,8,2,3,30,0,0,0,2.3000000000000003,24.200000000000003,116.59,926,19.1 -2013,8,2,4,30,0,0,0,2.6,23.8,106.91,926,19 -2013,8,2,5,30,0,0,0,3.2,23.8,95.93,927,18.7 -2013,8,2,6,30,62,35,263,4.2,24.900000000000002,83.99,927,18.2 -2013,8,2,7,30,255,72,586,5.300000000000001,27.200000000000003,71.76,928,17.400000000000002 -2013,8,2,8,30,471,92,739,5.9,30,59.19,928,15.8 -2013,8,2,9,30,670,105,820,5.6000000000000005,32.7,46.54,928,14.8 -2013,8,2,10,30,832,115,866,5,34.7,34.14,928,15.100000000000001 -2013,8,2,11,30,941,120,890,4.6000000000000005,36.1,22.76,927,15.600000000000001 -2013,8,2,12,30,993,118,907,4.4,37,15.24,926,15.8 -2013,8,2,13,30,977,118,901,4.3,37.4,17.67,925,15.600000000000001 -2013,8,2,14,30,899,116,882,4.3,37.5,27.52,925,15.600000000000001 -2013,8,2,15,30,766,106,855,4.2,37.1,39.51,924,15.5 -2013,8,2,16,30,586,95,798,4.1000000000000005,36.300000000000004,52.08,924,15.4 -2013,8,2,17,30,377,80,697,4.1000000000000005,35.800000000000004,64.74,924,15.4 -2013,8,2,18,30,166,55,501,2.7,32.1,77.22,924,16.3 -2013,8,2,19,30,0,0,0,2.6,29.900000000000002,89.07000000000001,925,17.1 -2013,8,2,20,30,0,0,0,3.3000000000000003,29,100.94,925,16.6 -2013,8,2,21,30,0,0,0,4,28.200000000000003,111.46000000000001,926,16.3 -2013,8,2,22,30,0,0,0,4.3,27.3,120.4,926,15.9 -2013,8,2,23,30,0,0,0,4.4,26.400000000000002,126.93,926,15.4 -2013,8,3,0,30,0,0,0,4.4,25.5,130.07,927,15.100000000000001 -2013,8,3,1,30,0,0,0,4.4,24.900000000000002,129.18,927,14.9 -2013,8,3,2,30,0,0,0,4.2,24.3,124.47,927,14.9 -2013,8,3,3,30,0,0,0,4.1000000000000005,23.8,116.78,927,15.200000000000001 -2013,8,3,4,30,0,0,0,4.1000000000000005,23.200000000000003,107.07000000000001,927,15.9 -2013,8,3,5,30,0,0,0,4.1000000000000005,23,96.07000000000001,927,16.8 -2013,8,3,6,30,62,33,284,4.9,24.200000000000003,84.11,928,17.6 -2013,8,3,7,30,259,68,614,5.7,26.8,71.87,928,18.1 -2013,8,3,8,30,476,86,763,5.6000000000000005,29.8,59.29,928,17.7 -2013,8,3,9,30,676,98,843,5,32.4,46.65,928,17 -2013,8,3,10,30,839,105,888,4.2,34.5,34.27,928,16.3 -2013,8,3,11,30,949,110,911,3.8000000000000003,36,22.93,928,15.8 -2013,8,3,12,30,1002,105,930,3.6,37,15.49,927,15.4 -2013,8,3,13,30,986,104,927,3.6,37.6,17.91,926,15.200000000000001 -2013,8,3,14,30,906,100,910,3.8000000000000003,37.7,27.7,926,15.200000000000001 -2013,8,3,15,30,771,94,880,4,37.300000000000004,39.660000000000004,926,15.200000000000001 -2013,8,3,16,30,589,85,823,4.1000000000000005,36.4,52.22,926,15.4 -2013,8,3,17,30,380,71,727,4.1000000000000005,35.9,64.88,926,15.5 -2013,8,3,18,30,167,50,534,2.8000000000000003,32.4,77.36,926,16.1 -2013,8,3,19,30,0,0,0,2.7,30.3,89.22,927,17 -2013,8,3,20,30,0,0,0,3.4000000000000004,29.400000000000002,101.12,928,16.7 -2013,8,3,21,30,0,0,0,3.8000000000000003,28.5,111.66,928,16.3 -2013,8,3,22,30,0,0,0,3.8000000000000003,27.5,120.63,929,15.8 -2013,8,3,23,30,0,0,0,3.7,26.6,127.18,929,15.3 -2013,8,4,0,30,0,0,0,3.5,25.700000000000003,130.33,929,14.9 -2013,8,4,1,30,0,0,0,3.6,25.1,129.44,929,14.9 -2013,8,4,2,30,0,0,0,3.7,24.6,124.69,929,14.9 -2013,8,4,3,30,0,0,0,3.5,24,116.98,929,15.600000000000001 -2013,8,4,4,30,0,0,0,3.4000000000000004,23.5,107.24000000000001,930,16.900000000000002 -2013,8,4,5,30,0,0,0,3.5,23.400000000000002,96.21000000000001,930,18.2 -2013,8,4,6,30,60,31,289,4.4,24.6,84.23,931,19.400000000000002 -2013,8,4,7,30,254,65,610,5.1000000000000005,27,71.98,931,20.3 -2013,8,4,8,30,466,84,752,4.800000000000001,29.400000000000002,59.4,931,20.400000000000002 -2013,8,4,9,30,663,96,828,4.2,31.6,46.76,930,20 -2013,8,4,10,30,823,107,869,3.7,33.2,34.39,930,19.6 -2013,8,4,11,30,932,113,891,3.6,34.300000000000004,23.1,929,19.5 -2013,8,4,12,30,980,116,898,3.6,35,15.75,928,19.3 -2013,8,4,13,30,963,116,891,3.7,35.300000000000004,18.150000000000002,928,19.200000000000003 -2013,8,4,14,30,885,113,874,3.8000000000000003,35.2,27.88,927,19.1 -2013,8,4,15,30,721,225,645,3.8000000000000003,34.7,39.82,927,18.900000000000002 -2013,8,4,16,30,434,264,279,3.8000000000000003,34,52.370000000000005,927,18.7 -2013,8,4,17,30,366,83,670,3.7,33.6,65.02,926,18.400000000000002 -2013,8,4,18,30,157,56,471,2.3000000000000003,31.3,77.52,927,18.5 -2013,8,4,19,30,0,0,0,1.8,29.6,89.37,927,19 -2013,8,4,20,30,0,0,0,2.3000000000000003,28.900000000000002,101.31,928,18.6 -2013,8,4,21,30,0,0,0,3.1,28.5,111.87,928,18.3 -2013,8,4,22,30,0,0,0,3.7,28,120.87,928,18.1 -2013,8,4,23,30,0,0,0,3.9000000000000004,27.400000000000002,127.44,928,18 -2013,8,5,0,30,0,0,0,3.8000000000000003,26.700000000000003,130.6,928,17.8 -2013,8,5,1,30,0,0,0,3.5,26,129.7,928,17.6 -2013,8,5,2,30,0,0,0,3.5,25.3,124.93,928,17.400000000000002 -2013,8,5,3,30,0,0,0,3.6,24.6,117.17,928,17.2 -2013,8,5,4,30,0,0,0,3.6,23.8,107.41,928,17.1 -2013,8,5,5,30,0,0,0,3.6,23.5,96.35000000000001,929,17.1 -2013,8,5,6,30,60,30,308,4.2,24.6,84.36,929,17.1 -2013,8,5,7,30,256,61,634,4.9,27,72.09,929,16.900000000000002 -2013,8,5,8,30,472,79,776,4.800000000000001,29.700000000000003,59.5,929,16.5 -2013,8,5,9,30,672,90,851,4.2,32.2,46.87,929,16.2 -2013,8,5,10,30,833,97,893,3.8000000000000003,34.2,34.52,928,16 -2013,8,5,11,30,944,101,918,3.7,35.7,23.28,928,15.8 -2013,8,5,12,30,998,99,935,3.9000000000000004,36.7,16.01,927,15.600000000000001 -2013,8,5,13,30,984,96,936,4.1000000000000005,37.300000000000004,18.400000000000002,926,15.3 -2013,8,5,14,30,906,91,924,4.2,37.6,28.07,925,14.8 -2013,8,5,15,30,772,87,893,4.3,37.4,39.980000000000004,924,14.4 -2013,8,5,16,30,590,79,841,4.2,36.800000000000004,52.52,924,14 -2013,8,5,17,30,381,66,750,4.1000000000000005,36.300000000000004,65.18,924,13.600000000000001 -2013,8,5,18,30,165,46,558,2.6,32.6,77.68,924,14.100000000000001 -2013,8,5,19,30,0,0,0,2.4000000000000004,30.1,89.52,924,15 -2013,8,5,20,30,0,0,0,3.2,29.3,101.5,925,14.600000000000001 -2013,8,5,21,30,0,0,0,3.9000000000000004,28.700000000000003,112.09,925,14.5 -2013,8,5,22,30,0,0,0,4.2,27.8,121.11,925,14.8 -2013,8,5,23,30,0,0,0,4,26.8,127.71000000000001,925,15.100000000000001 -2013,8,6,0,30,0,0,0,3.8000000000000003,26,130.88,925,15.3 -2013,8,6,1,30,0,0,0,3.8000000000000003,25.400000000000002,129.96,925,15.200000000000001 -2013,8,6,2,30,0,0,0,3.8000000000000003,24.8,125.16,925,15.100000000000001 -2013,8,6,3,30,0,0,0,3.8000000000000003,24.200000000000003,117.37,925,15.100000000000001 -2013,8,6,4,30,0,0,0,3.8000000000000003,23.700000000000003,107.57000000000001,925,15.5 -2013,8,6,5,30,0,0,0,3.9000000000000004,23.5,96.49000000000001,925,15.9 -2013,8,6,6,30,59,30,306,4.7,24.700000000000003,84.48,926,16.5 -2013,8,6,7,30,256,61,638,5.6000000000000005,27.400000000000002,72.2,926,17.1 -2013,8,6,8,30,474,78,782,5.6000000000000005,30.5,59.61,926,17 -2013,8,6,9,30,675,89,858,5.1000000000000005,33.300000000000004,46.980000000000004,926,16.5 -2013,8,6,10,30,839,97,901,4.5,35.5,34.65,925,16.1 -2013,8,6,11,30,950,103,924,4.2,37,23.46,925,15.8 -2013,8,6,12,30,999,103,934,4.2,38.1,16.27,924,15.4 -2013,8,6,13,30,982,103,928,4.2,38.7,18.650000000000002,923,14.9 -2013,8,6,14,30,903,102,909,4.2,38.900000000000006,28.26,923,14.600000000000001 -2013,8,6,15,30,762,107,856,4.1000000000000005,38.6,40.14,922,14.200000000000001 -2013,8,6,16,30,578,101,787,4,37.9,52.67,922,13.600000000000001 -2013,8,6,17,30,365,89,662,3.9000000000000004,37.300000000000004,65.33,922,13.3 -2013,8,6,18,30,151,63,414,2.2,33.2,77.84,922,14.4 -2013,8,6,19,30,0,0,0,2,30.700000000000003,89.68,923,15.3 -2013,8,6,20,30,0,0,0,2.5,29.700000000000003,101.7,923,14.5 -2013,8,6,21,30,0,0,0,3.1,29,112.31,924,14.100000000000001 -2013,8,6,22,30,0,0,0,3.6,28.200000000000003,121.36,924,14.200000000000001 -2013,8,6,23,30,0,0,0,3.9000000000000004,27.3,127.98,924,14.4 -2013,8,7,0,30,0,0,0,3.9000000000000004,26.400000000000002,131.16,924,14.600000000000001 -2013,8,7,1,30,0,0,0,3.9000000000000004,25.6,130.23,924,14.8 -2013,8,7,2,30,0,0,0,3.6,24.900000000000002,125.39,924,14.9 -2013,8,7,3,30,0,0,0,3.3000000000000003,24.3,117.57000000000001,924,15.200000000000001 -2013,8,7,4,30,0,0,0,3.1,23.700000000000003,107.74000000000001,924,15.600000000000001 -2013,8,7,5,30,0,0,0,3.3000000000000003,23.700000000000003,96.64,924,16.1 -2013,8,7,6,30,49,36,137,4.2,25,84.60000000000001,925,16.6 -2013,8,7,7,30,234,89,478,5.2,27.6,72.32000000000001,925,17.400000000000002 -2013,8,7,8,30,445,118,649,5.4,30.700000000000003,59.72,925,17.6 -2013,8,7,9,30,642,136,742,5,33.7,47.09,925,17 -2013,8,7,10,30,803,148,798,4.2,36.300000000000004,34.78,924,16.2 -2013,8,7,11,30,912,155,827,3.5,38,23.64,924,15.8 -2013,8,7,12,30,981,106,913,3.2,38.800000000000004,16.54,923,15.700000000000001 -2013,8,7,13,30,964,109,904,3.2,38.900000000000006,18.91,923,15.9 -2013,8,7,14,30,883,109,880,3.4000000000000004,38.6,28.46,922,16.1 -2013,8,7,15,30,747,105,842,3.5,37.9,40.31,922,16.400000000000002 -2013,8,7,16,30,566,96,777,3.6,36.800000000000004,52.83,922,16.6 -2013,8,7,17,30,358,81,669,3.6,36.1,65.49,922,17.400000000000002 -2013,8,7,18,30,149,55,452,2.3000000000000003,32.1,78.01,922,20 -2013,8,7,19,30,0,0,0,2,30.200000000000003,89.84,923,21 -2013,8,7,20,30,0,0,0,2,29.3,101.9,923,20.8 -2013,8,7,21,30,0,0,0,2,28.6,112.54,924,20.8 -2013,8,7,22,30,0,0,0,2.1,27.700000000000003,121.61,924,20.6 -2013,8,7,23,30,0,0,0,2.3000000000000003,26.8,128.25,924,20.200000000000003 -2013,8,8,0,30,0,0,0,2.5,26,131.44,923,19.700000000000003 -2013,8,8,1,30,0,0,0,2.6,25.200000000000003,130.5,923,19.200000000000003 -2013,8,8,2,30,0,0,0,2.4000000000000004,24.5,125.63000000000001,924,18.8 -2013,8,8,3,30,0,0,0,2.1,23.8,117.77,924,18.6 -2013,8,8,4,30,0,0,0,2,23.3,107.91,924,18.5 -2013,8,8,5,30,0,0,0,2.5,23.200000000000003,96.78,924,18.400000000000002 -2013,8,8,6,30,23,23,0,3.5,24.5,84.72,924,18.3 -2013,8,8,7,30,164,116,157,4.3,27.1,72.43,924,18.400000000000002 -2013,8,8,8,30,445,107,673,4.5,30.1,59.82,924,18.400000000000002 -2013,8,8,9,30,460,315,212,4.4,32.7,47.2,924,18 -2013,8,8,10,30,588,400,230,4.2,34.5,34.910000000000004,924,17.400000000000002 -2013,8,8,11,30,914,141,845,4,35.800000000000004,23.82,924,17.3 -2013,8,8,12,30,969,129,877,4.1000000000000005,36.5,16.81,923,17.3 -2013,8,8,13,30,954,127,876,4.1000000000000005,36.800000000000004,19.17,923,17.2 -2013,8,8,14,30,876,124,856,4.1000000000000005,36.800000000000004,28.66,922,17.1 -2013,8,8,15,30,334,307,35,4,36.5,40.49,922,16.8 -2013,8,8,16,30,556,115,733,3.6,35.800000000000004,53,922,16.2 -2013,8,8,17,30,131,130,2,3.3000000000000003,35.300000000000004,65.66,922,16.3 -2013,8,8,18,30,70,69,7,1.9000000000000001,31.1,78.18,922,19.1 -2013,8,8,19,30,0,0,0,1.9000000000000001,29,90,923,18.900000000000002 -2013,8,8,20,30,0,0,0,2.3000000000000003,28.3,102.10000000000001,923,17.6 -2013,8,8,21,30,0,0,0,2.7,27.8,112.76,924,16.6 -2013,8,8,22,30,0,0,0,3.1,27.1,121.86,924,15.8 -2013,8,8,23,30,0,0,0,3.4000000000000004,26.400000000000002,128.53,924,15.3 -2013,8,9,0,30,0,0,0,3.4000000000000004,25.6,131.73,924,15 -2013,8,9,1,30,0,0,0,3.3000000000000003,25,130.77,924,14.9 -2013,8,9,2,30,0,0,0,3.1,24.3,125.87,925,14.8 -2013,8,9,3,30,0,0,0,3,23.6,117.98,925,14.9 -2013,8,9,4,30,0,0,0,3,22.900000000000002,108.08,925,15.3 -2013,8,9,5,30,0,0,0,3,22.700000000000003,96.92,926,16.2 -2013,8,9,6,30,46,36,108,3.7,23.900000000000002,84.85000000000001,926,17.2 -2013,8,9,7,30,230,93,456,4.2,26.200000000000003,72.54,927,18.6 -2013,8,9,8,30,443,123,638,4,29,59.93,927,19.3 -2013,8,9,9,30,641,142,735,3.3000000000000003,31.5,47.32,927,19.200000000000003 -2013,8,9,10,30,802,156,789,2.4000000000000004,33.5,35.050000000000004,927,18.7 -2013,8,9,11,30,911,163,819,1.4000000000000001,34.9,24.01,927,18.5 -2013,8,9,12,30,978,118,900,0.6000000000000001,35.800000000000004,17.080000000000002,927,18.2 -2013,8,9,13,30,964,119,896,0.6000000000000001,36.300000000000004,19.44,926,17.8 -2013,8,9,14,30,883,115,876,1.2000000000000002,36.4,28.88,926,17.400000000000002 -2013,8,9,15,30,744,114,832,1.8,36,40.67,926,17.1 -2013,8,9,16,30,476,229,413,2.3000000000000003,35.1,53.17,926,16.900000000000002 -2013,8,9,17,30,292,144,361,2.6,34.5,65.83,926,16.900000000000002 -2013,8,9,18,30,145,54,452,2.3000000000000003,31.400000000000002,78.36,927,17.400000000000002 -2013,8,9,19,30,0,0,0,2.5,29.400000000000002,90.16,928,18.400000000000002 -2013,8,9,20,30,0,0,0,3.1,28.200000000000003,102.31,929,18.5 -2013,8,9,21,30,0,0,0,3.3000000000000003,27.3,113,930,18.6 -2013,8,9,22,30,0,0,0,3.3000000000000003,26.3,122.12,930,18.7 -2013,8,9,23,30,0,0,0,3.3000000000000003,25.5,128.82,930,18.8 -2013,8,10,0,30,0,0,0,3.2,24.700000000000003,132.02,930,18.7 -2013,8,10,1,30,0,0,0,3.1,23.900000000000002,131.05,931,18.6 -2013,8,10,2,30,0,0,0,3,23.200000000000003,126.12,931,18.400000000000002 -2013,8,10,3,30,0,0,0,3,22.6,118.18,931,18.3 -2013,8,10,4,30,0,0,0,3.1,22,108.25,931,18.1 -2013,8,10,5,30,0,0,0,3.4000000000000004,21.700000000000003,97.07000000000001,932,18 -2013,8,10,6,30,48,31,197,4.2,22.6,84.97,932,18.1 -2013,8,10,7,30,236,74,542,4.800000000000001,24.6,72.65,933,18.1 -2013,8,10,8,30,172,167,11,4.800000000000001,26.8,60.04,933,17.3 -2013,8,10,9,30,268,251,25,4.6000000000000005,28.8,47.43,933,17 -2013,8,10,10,30,278,265,16,4.3,30.6,35.19,933,16.8 -2013,8,10,11,30,609,464,159,3.9000000000000004,32.1,24.2,932,16.7 -2013,8,10,12,30,973,123,890,3.7,33.300000000000004,17.36,931,16.7 -2013,8,10,13,30,959,118,893,3.5,34.1,19.72,930,16.7 -2013,8,10,14,30,881,111,881,3.4000000000000004,34.300000000000004,29.09,930,16.7 -2013,8,10,15,30,745,101,852,3.4000000000000004,34.2,40.85,929,16.6 -2013,8,10,16,30,566,89,800,3.4000000000000004,33.5,53.34,929,16.5 -2013,8,10,17,30,357,72,701,3.3000000000000003,33,66,929,16.5 -2013,8,10,18,30,146,48,493,2.2,30,78.54,929,16.7 -2013,8,10,19,30,0,0,0,1.7000000000000002,28,90.86,930,17.7 -2013,8,10,20,30,0,0,0,2,27.1,102.53,931,17.6 -2013,8,10,21,30,0,0,0,2.2,26.400000000000002,113.24000000000001,931,17.5 -2013,8,10,22,30,0,0,0,2.2,25.6,122.39,931,17.5 -2013,8,10,23,30,0,0,0,2,24.900000000000002,129.11,931,17.5 -2013,8,11,0,30,0,0,0,1.7000000000000002,24.200000000000003,132.32,931,17.5 -2013,8,11,1,30,0,0,0,1.5,23.5,131.33,931,17.6 -2013,8,11,2,30,0,0,0,1.3,22.900000000000002,126.36,931,17.7 -2013,8,11,3,30,0,0,0,1.2000000000000002,22.3,118.39,930,17.900000000000002 -2013,8,11,4,30,0,0,0,1.1,21.8,108.42,931,18.1 -2013,8,11,5,30,0,0,0,1.4000000000000001,21.900000000000002,97.21000000000001,931,18.3 -2013,8,11,6,30,48,30,209,1.8,23.6,85.09,931,18.5 -2013,8,11,7,30,236,72,553,1.8,26.6,72.77,932,18.900000000000002 -2013,8,11,8,30,450,96,710,1.6,29.700000000000003,60.15,932,18.900000000000002 -2013,8,11,9,30,648,112,794,1.4000000000000001,31.900000000000002,47.550000000000004,932,18.5 -2013,8,11,10,30,810,123,842,1.4000000000000001,33.6,35.33,931,18 -2013,8,11,11,30,921,131,867,1.7000000000000002,34.800000000000004,24.400000000000002,930,17.5 -2013,8,11,12,30,973,123,892,2.1,35.7,17.650000000000002,930,17 -2013,8,11,13,30,658,482,188,2.5,36.300000000000004,20,929,16.5 -2013,8,11,14,30,683,414,308,2.8000000000000003,36.300000000000004,29.32,928,16.2 -2013,8,11,15,30,478,364,152,3.2,36,41.050000000000004,928,15.9 -2013,8,11,16,30,544,132,693,3.5,35.1,53.52,928,15.600000000000001 -2013,8,11,17,30,304,129,433,3.5,34.6,66.18,928,15.5 -2013,8,11,18,30,111,66,232,2.7,31.700000000000003,78.72,928,16 -2013,8,11,19,30,0,0,0,2.4000000000000004,30.1,91.06,929,17.1 -2013,8,11,20,30,0,0,0,2.7,29.400000000000002,102.75,929,17.400000000000002 -2013,8,11,21,30,0,0,0,3,28.6,113.48,930,17.6 -2013,8,11,22,30,0,0,0,3.2,27.8,122.66,930,17.7 -2013,8,11,23,30,0,0,0,3.2,26.900000000000002,129.4,930,17.7 -2013,8,12,0,30,0,0,0,3.1,25.900000000000002,132.62,930,17.7 -2013,8,12,1,30,0,0,0,3.2,25.1,131.61,930,17.7 -2013,8,12,2,30,0,0,0,3,24.400000000000002,126.61,929,17.8 -2013,8,12,3,30,0,0,0,2.8000000000000003,23.700000000000003,118.60000000000001,929,17.900000000000002 -2013,8,12,4,30,0,0,0,2.6,23,108.60000000000001,930,18.2 -2013,8,12,5,30,0,0,0,2.8000000000000003,22.8,97.36,930,18.400000000000002 -2013,8,12,6,30,49,27,257,3.6,23.900000000000002,85.21000000000001,930,18.6 -2013,8,12,7,30,241,63,605,4.2,26.3,72.88,931,18.8 -2013,8,12,8,30,459,82,761,3.9000000000000004,29.1,60.26,931,18.400000000000002 -2013,8,12,9,30,661,93,843,3.4000000000000004,31.400000000000002,47.660000000000004,931,17.6 -2013,8,12,10,30,823,100,887,3.2,33.2,35.47,930,16.8 -2013,8,12,11,30,935,103,915,3,34.6,24.6,930,16.2 -2013,8,12,12,30,986,97,934,3,35.6,17.94,929,15.700000000000001 -2013,8,12,13,30,968,96,930,3.1,36.1,20.28,928,15.4 -2013,8,12,14,30,887,92,914,3.1,36.2,29.55,927,15.200000000000001 -2013,8,12,15,30,749,86,882,3.1,35.800000000000004,41.24,927,15.200000000000001 -2013,8,12,16,30,567,77,827,3.1,35,53.71,927,15.3 -2013,8,12,17,30,355,64,727,3.1,34.4,66.36,927,15.5 -2013,8,12,18,30,143,43,519,2.2,31.400000000000002,78.91,927,16 -2013,8,12,19,30,0,0,0,2,29.5,91.26,928,17.3 -2013,8,12,20,30,0,0,0,2.5,28.700000000000003,102.97,928,17.400000000000002 -2013,8,12,21,30,0,0,0,2.9000000000000004,28.1,113.73,929,17.5 -2013,8,12,22,30,0,0,0,3,27.400000000000002,122.93,929,17.6 -2013,8,12,23,30,0,0,0,3,26.8,129.7,929,17.5 -2013,8,13,0,30,0,0,0,3,26.1,132.93,928,17.3 -2013,8,13,1,30,0,0,0,3,25.5,131.9,928,17.1 -2013,8,13,2,30,0,0,0,2.8000000000000003,24.8,126.86,928,16.900000000000002 -2013,8,13,3,30,0,0,0,2.7,24.3,118.8,929,16.7 -2013,8,13,4,30,0,0,0,2.7,23.900000000000002,108.77,929,16.6 -2013,8,13,5,30,0,0,0,3,23.8,97.5,930,16.7 -2013,8,13,6,30,48,24,293,4.1000000000000005,24.900000000000002,85.34,930,17.1 -2013,8,13,7,30,240,55,634,5,27.1,73,930,17.8 -2013,8,13,8,30,455,71,776,4.7,29.5,60.370000000000005,930,17.8 -2013,8,13,9,30,654,83,850,3.8000000000000003,31.5,47.78,930,17.5 -2013,8,13,10,30,815,90,892,2.9000000000000004,33,35.61,930,17.400000000000002 -2013,8,13,11,30,926,94,916,2.1,34,24.8,929,17.400000000000002 -2013,8,13,12,30,973,106,913,1.4000000000000001,34.6,18.23,929,17.400000000000002 -2013,8,13,13,30,956,104,910,0.8,35,20.57,928,17.2 -2013,8,13,14,30,876,101,893,0.8,35,29.78,927,17.1 -2013,8,13,15,30,730,119,815,1.2000000000000002,34.800000000000004,41.45,927,16.900000000000002 -2013,8,13,16,30,548,106,749,1.7000000000000002,34.2,53.9,926,16.6 -2013,8,13,17,30,338,87,632,2,33.7,66.55,926,16.6 -2013,8,13,18,30,131,54,404,1.7000000000000002,30.6,79.11,927,18.400000000000002 -2013,8,13,19,30,0,0,0,2.1,28.900000000000002,91.47,927,19.3 -2013,8,13,20,30,0,0,0,2.8000000000000003,28.200000000000003,103.2,928,18.8 -2013,8,13,21,30,0,0,0,3.2,27.6,113.98,928,18.8 -2013,8,13,22,30,0,0,0,3.3000000000000003,26.900000000000002,123.21000000000001,928,19 -2013,8,13,23,30,0,0,0,3.1,26.3,130,929,19.3 -2013,8,14,0,30,0,0,0,2.9000000000000004,25.6,133.24,929,19.5 -2013,8,14,1,30,0,0,0,2.5,24.900000000000002,132.19,929,19.700000000000003 -2013,8,14,2,30,0,0,0,2.1,24.200000000000003,127.11,929,19.8 -2013,8,14,3,30,0,0,0,1.9000000000000001,23.400000000000002,119.01,929,19.900000000000002 -2013,8,14,4,30,0,0,0,1.8,22.8,108.94,929,20 -2013,8,14,5,30,0,0,0,2.1,22.6,97.65,929,20.200000000000003 -2013,8,14,6,30,24,24,0,2.5,23.400000000000002,85.46000000000001,929,20.400000000000002 -2013,8,14,7,30,22,22,0,2.4000000000000004,25.3,73.11,930,20.400000000000002 -2013,8,14,8,30,21,21,0,1.8,27.3,60.480000000000004,930,20 -2013,8,14,9,30,38,38,0,2.1,28.900000000000002,47.9,930,19.6 -2013,8,14,10,30,204,197,9,3.1,29.5,35.76,930,19.400000000000002 -2013,8,14,11,30,544,450,103,3.8000000000000003,29.400000000000002,25.01,930,19.5 -2013,8,14,12,30,528,458,73,4,29,18.52,930,19.8 -2013,8,14,13,30,347,328,21,3.8000000000000003,28.6,20.87,929,19.900000000000002 -2013,8,14,14,30,544,432,129,3.3000000000000003,28.3,30.02,929,19.900000000000002 -2013,8,14,15,30,688,231,612,2.9000000000000004,28.1,41.65,928,19.700000000000003 -2013,8,14,16,30,546,95,770,2.7,27.900000000000002,54.09,928,19.5 -2013,8,14,17,30,339,76,667,2.6,27.700000000000003,66.74,928,19.3 -2013,8,14,18,30,132,48,450,1.7000000000000002,25.900000000000002,79.3,929,19.6 -2013,8,14,19,30,0,0,0,1.2000000000000002,24.700000000000003,91.68,929,20.200000000000003 -2013,8,14,20,30,0,0,0,1.2000000000000002,24,103.43,930,20 -2013,8,14,21,30,0,0,0,1.3,23.400000000000002,114.23,930,19.8 -2013,8,14,22,30,0,0,0,1.5,22.900000000000002,123.5,930,19.6 -2013,8,14,23,30,0,0,0,1.5,22.5,130.31,930,19.700000000000003 -2013,8,15,0,30,0,0,0,1.5,22,133.55,929,19.8 -2013,8,15,1,30,0,0,0,1.3,21.6,132.48,929,20 -2013,8,15,2,30,0,0,0,1.1,21.1,127.36,929,20.200000000000003 -2013,8,15,3,30,0,0,0,0.8,20.700000000000003,119.22,929,20.3 -2013,8,15,4,30,0,0,0,0.6000000000000001,20.400000000000002,109.12,930,20.400000000000002 -2013,8,15,5,30,0,0,0,0.7000000000000001,20.6,97.8,930,20.6 -2013,8,15,6,30,25,25,7,0.9,21.8,85.58,930,20.700000000000003 -2013,8,15,7,30,68,68,0,0.6000000000000001,24,73.22,930,20.8 -2013,8,15,8,30,230,201,60,0.6000000000000001,26.6,60.6,930,19.900000000000002 -2013,8,15,9,30,647,99,818,1.1,28.6,48.02,930,18.900000000000002 -2013,8,15,10,30,701,315,476,1.4000000000000001,30,35.9,930,18.5 -2013,8,15,11,30,837,373,513,1.8,31.1,25.22,929,18.3 -2013,8,15,12,30,816,423,416,2.1,31.8,18.82,929,18.1 -2013,8,15,13,30,877,387,526,2.4000000000000004,32.1,21.17,928,17.900000000000002 -2013,8,15,14,30,875,111,885,2.6,32,30.27,928,17.6 -2013,8,15,15,30,732,115,828,2.9000000000000004,31.5,41.87,928,17.400000000000002 -2013,8,15,16,30,550,101,770,3,30.6,54.29,928,17.400000000000002 -2013,8,15,17,30,338,81,657,3.1,30.1,66.94,928,17.7 -2013,8,15,18,30,128,51,425,2.4000000000000004,27.200000000000003,79.5,928,18.7 -2013,8,15,19,30,0,0,0,2.3000000000000003,25.5,91.9,929,19.5 -2013,8,15,20,30,0,0,0,2.4000000000000004,24.6,103.66,929,19.6 -2013,8,15,21,30,0,0,0,2.4000000000000004,23.900000000000002,114.49000000000001,929,19.8 -2013,8,15,22,30,0,0,0,2.3000000000000003,23.3,123.78,929,19.8 -2013,8,15,23,30,0,0,0,2.2,22.700000000000003,130.62,929,19.8 -2013,8,16,0,30,0,0,0,2.2,22.1,133.87,929,19.900000000000002 -2013,8,16,1,30,0,0,0,2,21.5,132.78,929,20 -2013,8,16,2,30,0,0,0,1.8,21,127.62,929,20.3 -2013,8,16,3,30,0,0,0,1.6,20.6,119.43,929,20.5 -2013,8,16,4,30,0,0,0,1.5,20.3,109.29,929,20.3 -2013,8,16,5,30,0,0,0,1.7000000000000002,20.5,97.94,930,20.5 -2013,8,16,6,30,18,18,0,2.3000000000000003,21.8,85.71000000000001,930,20.900000000000002 -2013,8,16,7,30,149,110,135,2.6,24.200000000000003,73.34,930,21.1 -2013,8,16,8,30,21,21,0,2.3000000000000003,26.900000000000002,60.71,930,20.8 -2013,8,16,9,30,72,72,0,1.7000000000000002,29.1,48.14,930,19.5 -2013,8,16,10,30,562,396,205,1.8,30.6,36.050000000000004,930,18.5 -2013,8,16,11,30,922,115,894,2.5,31.5,25.43,929,17.900000000000002 -2013,8,16,12,30,976,111,915,3,32,19.13,929,17.6 -2013,8,16,13,30,961,108,917,3.4000000000000004,31.8,21.47,929,17.6 -2013,8,16,14,30,880,104,900,3.6,31.1,30.52,928,17.8 -2013,8,16,15,30,741,96,869,3.6,30.3,42.08,928,18.1 -2013,8,16,16,30,556,86,809,3.4000000000000004,29.3,54.49,928,18.2 -2013,8,16,17,30,343,71,700,3.3000000000000003,28.700000000000003,67.14,928,18.3 -2013,8,16,18,30,129,45,472,1.7000000000000002,25.6,79.71000000000001,929,19.5 -2013,8,16,19,30,0,0,0,1.3,23.900000000000002,92.12,930,20.3 -2013,8,16,20,30,0,0,0,1.3,23.1,103.9,930,19.700000000000003 -2013,8,16,21,30,0,0,0,1.4000000000000001,22.5,114.75,931,19.200000000000003 -2013,8,16,22,30,0,0,0,1.4000000000000001,21.900000000000002,124.07000000000001,931,18.6 -2013,8,16,23,30,0,0,0,1.4000000000000001,21.3,130.93,931,18.3 -2013,8,17,0,30,0,0,0,1.4000000000000001,20.700000000000003,134.19,931,18 -2013,8,17,1,30,0,0,0,1.4000000000000001,20.200000000000003,133.08,931,17.900000000000002 -2013,8,17,2,30,0,0,0,1.5,19.6,127.87,931,17.8 -2013,8,17,3,30,0,0,0,1.5,19,119.65,931,17.7 -2013,8,17,4,30,0,0,0,1.4000000000000001,18.400000000000002,109.46000000000001,931,17.6 -2013,8,17,5,30,0,0,0,1.7000000000000002,18.2,98.09,931,17.5 -2013,8,17,6,30,41,25,228,2.5,19.5,85.83,932,17.400000000000002 -2013,8,17,7,30,230,68,570,2.9000000000000004,22,73.45,932,17 -2013,8,17,8,30,444,94,718,2.7,24.900000000000002,60.82,932,16.7 -2013,8,17,9,30,643,112,798,2.5,27.8,48.27,932,16.400000000000002 -2013,8,17,10,30,805,125,844,2.5,29.900000000000002,36.21,931,15.4 -2013,8,17,11,30,914,133,867,2.6,31.3,25.64,931,14.9 -2013,8,17,12,30,964,130,884,2.7,32.2,19.43,930,14.700000000000001 -2013,8,17,13,30,944,133,873,2.8000000000000003,32.6,21.78,929,14.700000000000001 -2013,8,17,14,30,858,136,840,3,32.4,30.77,928,14.600000000000001 -2013,8,17,15,30,716,131,791,3.3000000000000003,31.5,42.300000000000004,928,14.600000000000001 -2013,8,17,16,30,531,118,715,3.7,30.200000000000003,54.7,928,14.8 -2013,8,17,17,30,323,93,596,3.9000000000000004,29.5,67.35,928,15.100000000000001 -2013,8,17,18,30,118,55,364,3.1,26.6,79.92,928,15.700000000000001 -2013,8,17,19,30,0,0,0,2.5,25,92.34,929,16.2 -2013,8,17,20,30,0,0,0,2.2,24,104.14,929,16.3 -2013,8,17,21,30,0,0,0,2.1,23.3,115.02,929,16.3 -2013,8,17,22,30,0,0,0,2.1,22.8,124.37,930,16.1 -2013,8,17,23,30,0,0,0,2.2,22.200000000000003,131.25,930,15.700000000000001 -2013,8,18,0,30,0,0,0,2.3000000000000003,21.6,134.51,930,15.4 -2013,8,18,1,30,0,0,0,2.2,21,133.38,930,14.9 -2013,8,18,2,30,0,0,0,2.1,20.3,128.13,930,14.600000000000001 -2013,8,18,3,30,0,0,0,2.2,19.900000000000002,119.86,930,14.4 -2013,8,18,4,30,0,0,0,2.2,19.6,109.64,930,14.3 -2013,8,18,5,30,0,0,0,2.3000000000000003,19.5,98.23,930,14.4 -2013,8,18,6,30,31,25,84,2.4000000000000004,20.200000000000003,85.95,931,14.5 -2013,8,18,7,30,207,109,346,2.8000000000000003,22.1,73.57000000000001,931,14.5 -2013,8,18,8,30,416,158,531,3.3000000000000003,24.700000000000003,60.94,932,13.700000000000001 -2013,8,18,9,30,616,180,657,3.4000000000000004,27.3,48.39,932,12.9 -2013,8,18,10,30,782,188,738,3.2,29.400000000000002,36.36,931,12.8 -2013,8,18,11,30,896,191,783,3.2,31,25.86,931,12.9 -2013,8,18,12,30,949,179,818,3.3000000000000003,32.2,19.740000000000002,930,13.100000000000001 -2013,8,18,13,30,831,411,453,3.6,33,22.1,929,13.3 -2013,8,18,14,30,852,163,805,3.9000000000000004,33.2,31.03,929,13.3 -2013,8,18,15,30,715,148,770,4.3,32.800000000000004,42.53,928,13.3 -2013,8,18,16,30,534,125,710,4.5,31.900000000000002,54.910000000000004,928,13.3 -2013,8,18,17,30,323,97,594,4.6000000000000005,31.200000000000003,67.56,928,13.3 -2013,8,18,18,30,116,54,364,3.9000000000000004,27.700000000000003,80.13,928,13.8 -2013,8,18,19,30,0,0,0,3.9000000000000004,25.8,92.57000000000001,928,14 -2013,8,18,20,30,0,0,0,4,24.6,104.39,929,14.100000000000001 -2013,8,18,21,30,0,0,0,3.8000000000000003,23.8,115.29,929,14.3 -2013,8,18,22,30,0,0,0,3.6,23,124.67,929,14.4 -2013,8,18,23,30,0,0,0,3.4000000000000004,22.400000000000002,131.58,929,14.5 -2013,8,19,0,30,0,0,0,3.1,21.8,134.84,929,14.5 -2013,8,19,1,30,0,0,0,2.7,21.3,133.68,929,14.600000000000001 -2013,8,19,2,30,0,0,0,2.7,20.900000000000002,128.39000000000001,929,14.700000000000001 -2013,8,19,3,30,0,0,0,3,20.8,120.07000000000001,929,14.8 -2013,8,19,4,30,0,0,0,3.2,20.700000000000003,109.81,929,14.8 -2013,8,19,5,30,0,0,0,3.3000000000000003,20.6,98.38,930,15 -2013,8,19,6,30,31,25,90,3.6,21.3,86.07000000000001,930,15.100000000000001 -2013,8,19,7,30,206,104,362,4.1000000000000005,23,73.68,930,15.200000000000001 -2013,8,19,8,30,413,156,531,4.800000000000001,25.3,61.050000000000004,931,14.8 -2013,8,19,9,30,610,186,640,5.300000000000001,27.5,48.52,931,14.200000000000001 -2013,8,19,10,30,774,202,711,5.4,29.5,36.52,931,13.700000000000001 -2013,8,19,11,30,886,206,757,5.2,31.1,26.09,930,13.600000000000001 -2013,8,19,12,30,925,239,730,4.9,32.4,20.06,929,13.700000000000001 -2013,8,19,13,30,912,221,747,4.6000000000000005,33.300000000000004,22.41,928,13.9 -2013,8,19,14,30,834,201,742,4.3,33.7,31.3,928,14.100000000000001 -2013,8,19,15,30,701,176,715,4,33.5,42.76,927,14.100000000000001 -2013,8,19,16,30,517,147,647,3.7,32.7,55.13,927,14.200000000000001 -2013,8,19,17,30,309,111,524,3.6,32.1,67.77,927,14.200000000000001 -2013,8,19,18,30,108,59,292,2.3000000000000003,28.400000000000002,80.35000000000001,927,15.4 -2013,8,19,19,30,0,0,0,2.4000000000000004,26.6,92.8,927,15.5 -2013,8,19,20,30,0,0,0,2.8000000000000003,25.900000000000002,104.64,928,15.3 -2013,8,19,21,30,0,0,0,3.1,25.200000000000003,115.57000000000001,928,15.4 -2013,8,19,22,30,0,0,0,3.4000000000000004,24.6,124.97,928,15.600000000000001 -2013,8,19,23,30,0,0,0,3.5,23.900000000000002,131.9,928,15.8 -2013,8,20,0,30,0,0,0,3.5,23.3,135.18,928,15.9 -2013,8,20,1,30,0,0,0,3.4000000000000004,22.8,133.99,928,16 -2013,8,20,2,30,0,0,0,3.3000000000000003,22.400000000000002,128.65,928,16 -2013,8,20,3,30,0,0,0,3.1,22.1,120.28,928,15.9 -2013,8,20,4,30,0,0,0,2.9000000000000004,21.900000000000002,109.99000000000001,929,15.8 -2013,8,20,5,30,0,0,0,2.8000000000000003,21.900000000000002,98.53,929,15.700000000000001 -2013,8,20,6,30,26,22,57,3,22.400000000000002,86.2,930,15.600000000000001 -2013,8,20,7,30,201,108,334,3.7,24,73.8,930,15.5 -2013,8,20,8,30,416,146,560,4.2,26.8,61.17,930,15.200000000000001 -2013,8,20,9,30,620,159,698,3.9000000000000004,29.700000000000003,48.64,930,14.600000000000001 -2013,8,20,10,30,789,162,781,3.3000000000000003,32,36.68,929,14.4 -2013,8,20,11,30,904,165,824,3,33.6,26.310000000000002,929,14.600000000000001 -2013,8,20,12,30,951,172,831,3,34.6,20.38,928,14.700000000000001 -2013,8,20,13,30,935,167,832,3.3000000000000003,35.2,22.740000000000002,927,14.600000000000001 -2013,8,20,14,30,811,292,609,3.6,35.2,31.57,927,14.4 -2013,8,20,15,30,707,164,742,4,34.6,43,926,14.200000000000001 -2013,8,20,16,30,523,139,674,4.1000000000000005,33.6,55.35,926,14 -2013,8,20,17,30,312,106,550,4.2,32.9,67.99,926,13.700000000000001 -2013,8,20,18,30,108,56,318,3.4000000000000004,29.3,80.57000000000001,927,13.9 -2013,8,20,19,30,0,0,0,3.6,27.400000000000002,93.03,928,13.8 -2013,8,20,20,30,0,0,0,3.9000000000000004,26.200000000000003,104.89,928,13.3 -2013,8,20,21,30,0,0,0,3.8000000000000003,25.1,115.84,929,13.100000000000001 -2013,8,20,22,30,0,0,0,3.5,24.1,125.28,929,13 -2013,8,20,23,30,0,0,0,3.3000000000000003,23.200000000000003,132.23,929,13 -2013,8,21,0,30,0,0,0,3.1,22.400000000000002,135.51,929,13.200000000000001 -2013,8,21,1,30,0,0,0,2.8000000000000003,21.700000000000003,134.3,929,13.700000000000001 -2013,8,21,2,30,0,0,0,2.7,21.1,128.91,930,14.4 -2013,8,21,3,30,0,0,0,2.5,20.400000000000002,120.5,930,15.200000000000001 -2013,8,21,4,30,0,0,0,2.2,19.8,110.16,930,15.8 -2013,8,21,5,30,0,0,0,2.2,19.6,98.67,930,16.2 -2013,8,21,6,30,35,23,186,2.6,21,86.32000000000001,931,16.5 -2013,8,21,7,30,224,71,554,2.7,24.1,73.92,931,17.1 -2013,8,21,8,30,445,96,726,2.3000000000000003,27.200000000000003,61.28,931,16.3 -2013,8,21,9,30,650,111,818,2.2,29.3,48.77,931,14.200000000000001 -2013,8,21,10,30,815,120,868,2.3000000000000003,30.700000000000003,36.84,931,13.5 -2013,8,21,11,30,926,123,897,2.7,31.8,26.54,931,13.200000000000001 -2013,8,21,12,30,933,293,684,2.9000000000000004,32.5,20.7,930,13.200000000000001 -2013,8,21,13,30,871,369,546,3.1,32.800000000000004,23.06,929,13.4 -2013,8,21,14,30,636,414,262,3.1,32.9,31.85,929,13.700000000000001 -2013,8,21,15,30,460,349,152,3.2,32.7,43.24,928,14 -2013,8,21,16,30,350,253,171,3.3000000000000003,32,55.57,928,14.200000000000001 -2013,8,21,17,30,233,144,241,3.3000000000000003,31.5,68.21000000000001,928,14.600000000000001 -2013,8,21,18,30,44,44,0,2.5,28.700000000000003,80.8,928,15.600000000000001 -2013,8,21,19,30,0,0,0,2.6,27.200000000000003,93.27,929,16.5 -2013,8,21,20,30,0,0,0,3.1,26.700000000000003,105.15,930,16.8 -2013,8,21,21,30,0,0,0,3.3000000000000003,26,116.13,930,17.2 -2013,8,21,22,30,0,0,0,3.4000000000000004,25.3,125.59,930,17.400000000000002 -2013,8,21,23,30,0,0,0,3.3000000000000003,24.700000000000003,132.57,930,17.5 -2013,8,22,0,30,0,0,0,3.3000000000000003,24.1,135.85,930,17.5 -2013,8,22,1,30,0,0,0,3.1,23.5,134.61,930,17.7 -2013,8,22,2,30,0,0,0,2.8000000000000003,23,129.18,930,18 -2013,8,22,3,30,0,0,0,2.6,22.400000000000002,120.71000000000001,930,18.400000000000002 -2013,8,22,4,30,0,0,0,2.3000000000000003,21.900000000000002,110.34,931,18.8 -2013,8,22,5,30,0,0,0,2.3000000000000003,21.700000000000003,98.82000000000001,931,19.1 -2013,8,22,6,30,33,22,188,2.8000000000000003,22.900000000000002,86.44,931,19.3 -2013,8,22,7,30,218,65,557,3.2,25.400000000000002,74.03,932,19.200000000000003 -2013,8,22,8,30,434,87,725,2.9000000000000004,27.700000000000003,61.4,932,18.8 -2013,8,22,9,30,633,100,811,2.7,29.400000000000002,48.9,932,18.2 -2013,8,22,10,30,796,108,862,2.9000000000000004,30.700000000000003,37,931,17.7 -2013,8,22,11,30,907,112,890,3.3000000000000003,31.6,26.77,930,17.3 -2013,8,22,12,30,951,125,884,3.5,32.300000000000004,21.02,930,16.900000000000002 -2013,8,22,13,30,932,124,881,3.5,32.6,23.39,929,16.6 -2013,8,22,14,30,850,118,864,3.5,32.6,32.13,928,16.400000000000002 -2013,8,22,15,30,714,102,843,3.4000000000000004,32.4,43.49,927,16.2 -2013,8,22,16,30,452,200,448,3.2,31.900000000000002,55.800000000000004,927,16 -2013,8,22,17,30,315,73,658,3.1,31.6,68.43,927,15.8 -2013,8,22,18,30,107,43,407,1.5,28.8,81.02,927,16.900000000000002 -2013,8,22,19,30,0,0,0,1.4000000000000001,27.3,93.51,928,17.2 -2013,8,22,20,30,0,0,0,1.8,26.700000000000003,105.41,928,16.7 -2013,8,22,21,30,0,0,0,2.4000000000000004,26.1,116.41,929,16.5 -2013,8,22,22,30,0,0,0,3,25.6,125.9,929,16.400000000000002 -2013,8,22,23,30,0,0,0,3.3000000000000003,25.1,132.91,929,16.400000000000002 -2013,8,23,0,30,0,0,0,3.3000000000000003,24.700000000000003,136.19,929,16.6 -2013,8,23,1,30,0,0,0,3.1,24.3,134.92000000000002,929,16.7 -2013,8,23,2,30,0,0,0,2.7,23.900000000000002,129.44,929,16.7 -2013,8,23,3,30,0,0,0,2.2,23.5,120.93,929,16.7 -2013,8,23,4,30,0,0,0,1.8,23,110.51,929,16.7 -2013,8,23,5,30,0,0,0,1.8,23,98.96000000000001,929,16.7 -2013,8,23,6,30,31,21,163,2.2,23.900000000000002,86.57000000000001,930,16.7 -2013,8,23,7,30,214,68,536,2.5,26.3,74.15,930,16.8 -2013,8,23,8,30,429,90,710,2,29.3,61.52,930,16.8 -2013,8,23,9,30,630,103,804,1.5,31.400000000000002,49.03,930,16.6 -2013,8,23,10,30,793,112,854,2,32.6,37.17,930,16.400000000000002 -2013,8,23,11,30,832,355,535,2.7,33.4,27.01,929,16.3 -2013,8,23,12,30,894,364,569,3.2,33.7,21.35,928,16.3 -2013,8,23,13,30,937,105,909,3.5,33.5,23.73,928,16.2 -2013,8,23,14,30,853,103,888,3.7,32.9,32.410000000000004,927,16.2 -2013,8,23,15,30,710,96,850,3.7,32.2,43.74,927,16.3 -2013,8,23,16,30,525,85,787,3.7,31.5,56.04,927,16.5 -2013,8,23,17,30,238,136,280,3.6,31.1,68.66,927,16.8 -2013,8,23,18,30,71,53,116,2.4000000000000004,28.400000000000002,81.25,927,17.8 -2013,8,23,19,30,0,0,0,2.3000000000000003,27,93.76,927,18.5 -2013,8,23,20,30,0,0,0,2.5,26.400000000000002,105.67,928,18.5 -2013,8,23,21,30,0,0,0,2.4000000000000004,25.700000000000003,116.7,928,18.7 -2013,8,23,22,30,0,0,0,2.3000000000000003,25.1,126.22,929,19 -2013,8,23,23,30,0,0,0,2,24.5,133.25,929,19.1 -2013,8,24,0,30,0,0,0,1.8,23.900000000000002,136.54,929,19.200000000000003 -2013,8,24,1,30,0,0,0,1.5,23.3,135.23,929,19.3 -2013,8,24,2,30,0,0,0,1.4000000000000001,22.8,129.7,929,19.3 -2013,8,24,3,30,0,0,0,1.3,22.3,121.14,929,19.400000000000002 -2013,8,24,4,30,0,0,0,1.2000000000000002,21.900000000000002,110.69,929,19.400000000000002 -2013,8,24,5,30,0,0,0,1.3,21.8,99.11,930,19.3 -2013,8,24,6,30,32,20,198,1.8,23.1,86.69,931,19.3 -2013,8,24,7,30,218,61,579,2.2,26.3,74.27,931,19.1 -2013,8,24,8,30,435,82,742,2,29.5,61.64,931,17.7 -2013,8,24,9,30,636,96,826,1.9000000000000001,31.5,49.17,931,17.2 -2013,8,24,10,30,798,106,870,2.3000000000000003,32.9,37.34,931,16.8 -2013,8,24,11,30,841,338,566,2.8000000000000003,33.9,27.25,930,16.400000000000002 -2013,8,24,12,30,317,300,18,3.3000000000000003,34.6,21.68,929,16.1 -2013,8,24,13,30,855,375,526,3.7,34.7,24.07,929,15.9 -2013,8,24,14,30,714,345,438,4,34.4,32.7,928,15.8 -2013,8,24,15,30,521,334,261,4.1000000000000005,33.7,43.99,928,15.8 -2013,8,24,16,30,505,122,689,4.1000000000000005,32.6,56.27,928,15.9 -2013,8,24,17,30,293,100,534,4.1000000000000005,32,68.89,928,16.2 -2013,8,24,18,30,91,52,263,2.6,29.5,81.49,929,16.8 -2013,8,24,19,30,0,0,0,1.9000000000000001,28,94,930,17.6 -2013,8,24,20,30,0,0,0,1.6,27.1,105.94,930,17.900000000000002 -2013,8,24,21,30,0,0,0,1.4000000000000001,26.400000000000002,116.99000000000001,931,18.1 -2013,8,24,22,30,0,0,0,1.3,25.8,126.54,931,18.1 -2013,8,24,23,30,0,0,0,1.3,25.200000000000003,133.59,931,18 -2013,8,25,0,30,0,0,0,1.3,24.700000000000003,136.88,931,17.900000000000002 -2013,8,25,1,30,0,0,0,1.3,24.200000000000003,135.55,931,17.8 -2013,8,25,2,30,0,0,0,1.3,23.700000000000003,129.97,931,17.8 -2013,8,25,3,30,0,0,0,1.3,23.1,121.35000000000001,932,17.900000000000002 -2013,8,25,4,30,0,0,0,1.2000000000000002,22.6,110.86,932,17.900000000000002 -2013,8,25,5,30,0,0,0,1.2000000000000002,22.400000000000002,99.25,932,18 -2013,8,25,6,30,26,20,104,1.6,23.700000000000003,86.81,933,18.2 -2013,8,25,7,30,203,84,440,2,26.8,74.39,933,18.2 -2013,8,25,8,30,415,120,622,2.2,29.900000000000002,61.75,933,17.5 -2013,8,25,9,30,614,141,725,2.7,31.700000000000003,49.300000000000004,933,17 -2013,8,25,10,30,777,153,786,3.4000000000000004,33,37.51,933,16.7 -2013,8,25,11,30,333,314,21,4,34,27.490000000000002,932,16.400000000000002 -2013,8,25,12,30,943,135,871,4.3,34.5,22.01,932,16.2 -2013,8,25,13,30,583,463,132,4.5,34.800000000000004,24.41,931,16 -2013,8,25,14,30,756,330,508,4.6000000000000005,34.7,33,930,15.9 -2013,8,25,15,30,234,225,13,4.6000000000000005,34.300000000000004,44.25,930,15.700000000000001 -2013,8,25,16,30,461,167,533,4.6000000000000005,33.4,56.51,930,15.4 -2013,8,25,17,30,308,66,680,4.5,32.800000000000004,69.13,930,15.3 -2013,8,25,18,30,99,38,425,3,29.6,81.72,930,15.4 -2013,8,25,19,30,0,0,0,2.4000000000000004,27.700000000000003,94.25,931,16 -2013,8,25,20,30,0,0,0,2.4000000000000004,26.8,106.2,932,16.1 -2013,8,25,21,30,0,0,0,2.3000000000000003,25.900000000000002,117.28,933,16.2 -2013,8,25,22,30,0,0,0,2.1,25.1,126.86,933,16.3 -2013,8,25,23,30,0,0,0,1.9000000000000001,24.400000000000002,133.94,933,16.400000000000002 -2013,8,26,0,30,0,0,0,1.8,23.8,137.23,933,16.5 -2013,8,26,1,30,0,0,0,1.6,23.200000000000003,135.87,933,16.7 -2013,8,26,2,30,0,0,0,1.4000000000000001,22.5,130.24,933,17.1 -2013,8,26,3,30,0,0,0,1.2000000000000002,22,121.57000000000001,933,17.5 -2013,8,26,4,30,0,0,0,1.2000000000000002,21.5,111.03,933,17.900000000000002 -2013,8,26,5,30,0,0,0,1.5,21.400000000000002,99.4,933,18.2 -2013,8,26,6,30,30,19,206,2.4000000000000004,22.6,86.93,934,18.6 -2013,8,26,7,30,217,56,602,3.2,25,74.5,934,19 -2013,8,26,8,30,437,74,770,3.6,27.3,61.88,934,18.7 -2013,8,26,9,30,640,86,853,4,29.200000000000003,49.44,934,18 -2013,8,26,10,30,805,92,901,4.3,30.8,37.69,934,17.2 -2013,8,26,11,30,916,94,929,4.6000000000000005,32.1,27.740000000000002,933,16.6 -2013,8,26,12,30,830,409,455,4.800000000000001,33,22.35,932,16 -2013,8,26,13,30,942,91,938,4.9,33.5,24.76,931,15.700000000000001 -2013,8,26,14,30,532,416,139,4.9,33.7,33.29,930,15.5 -2013,8,26,15,30,714,81,889,4.800000000000001,33.4,44.51,930,15.4 -2013,8,26,16,30,409,217,350,4.7,32.5,56.76,930,15.4 -2013,8,26,17,30,310,58,714,4.6000000000000005,32,69.36,930,15.4 -2013,8,26,18,30,98,34,457,3.1,29.1,81.96000000000001,930,15.5 -2013,8,26,19,30,0,0,0,2.6,27.5,94.51,930,16.1 -2013,8,26,20,30,0,0,0,2.7,26.6,106.48,931,16.400000000000002 -2013,8,26,21,30,0,0,0,2.7,25.8,117.58,931,16.6 -2013,8,26,22,30,0,0,0,2.6,24.900000000000002,127.19,931,16.900000000000002 -2013,8,26,23,30,0,0,0,2.4000000000000004,24,134.29,931,17.3 -2013,8,27,0,30,0,0,0,2.3000000000000003,23.200000000000003,137.59,931,17.8 -2013,8,27,1,30,0,0,0,1.9000000000000001,22.400000000000002,136.19,931,18.5 -2013,8,27,2,30,0,0,0,1.5,21.700000000000003,130.5,931,19.200000000000003 -2013,8,27,3,30,0,0,0,1.2000000000000002,21.3,121.78,931,19.700000000000003 -2013,8,27,4,30,0,0,0,1.1,21,111.21000000000001,931,20.1 -2013,8,27,5,30,0,0,0,1.3,21,99.55,931,20.3 -2013,8,27,6,30,28,18,177,1.9000000000000001,21.900000000000002,87.05,931,20.400000000000002 -2013,8,27,7,30,210,56,581,2.4000000000000004,23.8,74.62,932,20.3 -2013,8,27,8,30,426,72,753,2.8000000000000003,25.700000000000003,62,931,19.6 -2013,8,27,9,30,547,218,508,3.2,27.200000000000003,49.58,931,19.1 -2013,8,27,10,30,441,373,86,3.5,28.1,37.86,931,19 -2013,8,27,11,30,285,271,16,4,28.1,27.990000000000002,930,19.1 -2013,8,27,12,30,615,474,153,4.6000000000000005,27.700000000000003,22.69,930,19.400000000000002 -2013,8,27,13,30,662,458,225,5.2,27.200000000000003,25.1,929,19.6 -2013,8,27,14,30,712,338,449,5.4,26.700000000000003,33.6,929,19.6 -2013,8,27,15,30,549,311,336,5.4,26.5,44.78,929,19.5 -2013,8,27,16,30,455,163,537,4.9,26.6,57.01,929,19.200000000000003 -2013,8,27,17,30,185,140,129,4.7,26.6,69.61,929,18.900000000000002 -2013,8,27,18,30,54,47,52,3.2,25.700000000000003,82.21000000000001,929,18.6 -2013,8,27,19,30,0,0,0,2.8000000000000003,24.900000000000002,94.76,929,18.3 -2013,8,27,20,30,0,0,0,3.2,24.400000000000002,106.75,929,18 -2013,8,27,21,30,0,0,0,3.6,23.700000000000003,117.88,930,17.8 -2013,8,27,22,30,0,0,0,3.7,23.1,127.51,930,17.6 -2013,8,27,23,30,0,0,0,3.6,22.5,134.65,930,17.400000000000002 -2013,8,28,0,30,0,0,0,3.5,22,137.94,930,17.400000000000002 -2013,8,28,1,30,0,0,0,3.3000000000000003,21.6,136.51,930,17.5 -2013,8,28,2,30,0,0,0,3.1,21.200000000000003,130.77,930,17.6 -2013,8,28,3,30,0,0,0,2.9000000000000004,20.900000000000002,122,930,17.900000000000002 -2013,8,28,4,30,0,0,0,2.7,20.6,111.38,930,18.2 -2013,8,28,5,30,0,0,0,2.7,20.5,99.69,931,18.6 -2013,8,28,6,30,24,20,88,3.4000000000000004,21.400000000000002,87.17,931,19 -2013,8,28,7,30,200,70,496,4.5,23.8,74.74,932,19.5 -2013,8,28,8,30,417,92,694,4.800000000000001,26.5,62.120000000000005,932,19.3 -2013,8,28,9,30,618,106,792,4.5,29,49.72,932,18.6 -2013,8,28,10,30,781,114,847,4.1000000000000005,30.900000000000002,38.04,932,18.1 -2013,8,28,11,30,892,116,881,4.1000000000000005,32.300000000000004,28.25,931,17.6 -2013,8,28,12,30,943,104,911,4.3,33.4,23.03,931,17 -2013,8,28,13,30,923,102,909,4.5,34.1,25.46,930,16.3 -2013,8,28,14,30,839,97,894,4.5,34.300000000000004,33.9,929,15.600000000000001 -2013,8,28,15,30,697,89,861,4.4,33.9,45.050000000000004,929,15 -2013,8,28,16,30,511,77,801,4.2,33.1,57.26,928,14.4 -2013,8,28,17,30,297,61,686,4.1000000000000005,32.5,69.85000000000001,929,13.9 -2013,8,28,18,30,89,34,417,2.3000000000000003,28.700000000000003,82.45,929,14.3 -2013,8,28,19,30,0,0,0,2,26.6,95.02,930,15 -2013,8,28,20,30,0,0,0,2.1,25.700000000000003,107.03,930,14.700000000000001 -2013,8,28,21,30,0,0,0,2.1,24.900000000000002,118.18,931,14.700000000000001 -2013,8,28,22,30,0,0,0,1.9000000000000001,24.1,127.85000000000001,931,14.700000000000001 -2013,8,28,23,30,0,0,0,1.7000000000000002,23.400000000000002,135,931,14.9 -2013,8,29,0,30,0,0,0,1.6,22.8,138.3,931,15 -2013,8,29,1,30,0,0,0,1.6,22.400000000000002,136.84,931,15.200000000000001 -2013,8,29,2,30,0,0,0,1.7000000000000002,22,131.04,931,15.5 -2013,8,29,3,30,0,0,0,1.9000000000000001,21.700000000000003,122.21000000000001,931,15.8 -2013,8,29,4,30,0,0,0,2.1,21.3,111.56,931,16.1 -2013,8,29,5,30,0,0,0,2.4000000000000004,21.3,99.84,932,16.2 -2013,8,29,6,30,27,17,208,3,22.400000000000002,87.3,932,16.400000000000002 -2013,8,29,7,30,214,51,623,3.7,25.400000000000002,74.86,933,16.7 -2013,8,29,8,30,433,70,780,4.1000000000000005,28.8,62.24,933,16.6 -2013,8,29,9,30,635,81,859,3.7,31.200000000000003,49.86,933,16.2 -2013,8,29,10,30,798,90,901,3.3000000000000003,33,38.230000000000004,932,15.9 -2013,8,29,11,30,906,96,922,3.1,34.4,28.5,931,15.600000000000001 -2013,8,29,12,30,950,104,922,2.9000000000000004,35.5,23.38,930,15.3 -2013,8,29,13,30,929,103,918,2.8000000000000003,36.1,25.810000000000002,930,15 -2013,8,29,14,30,843,99,899,2.7,36.300000000000004,34.21,929,14.8 -2013,8,29,15,30,700,92,864,2.6,36,45.32,928,14.600000000000001 -2013,8,29,16,30,510,82,797,2.6,35.2,57.51,928,14.5 -2013,8,29,17,30,294,65,672,2.6,34.6,70.10000000000001,928,14.4 -2013,8,29,18,30,85,35,391,1.8,30.400000000000002,82.7,928,16 -2013,8,29,19,30,0,0,0,2.2,28.5,95.28,929,16.2 -2013,8,29,20,30,0,0,0,2.7,27.700000000000003,107.3,929,15.700000000000001 -2013,8,29,21,30,0,0,0,2.8000000000000003,26.900000000000002,118.48,929,15.700000000000001 -2013,8,29,22,30,0,0,0,2.7,26.1,128.18,929,15.8 -2013,8,29,23,30,0,0,0,2.6,25.400000000000002,135.36,929,15.8 -2013,8,30,0,30,0,0,0,2.5,24.700000000000003,138.66,929,15.9 -2013,8,30,1,30,0,0,0,2.4000000000000004,24.1,137.16,929,15.9 -2013,8,30,2,30,0,0,0,2.4000000000000004,23.6,131.31,929,16 -2013,8,30,3,30,0,0,0,2.3000000000000003,23,122.43,929,16.1 -2013,8,30,4,30,0,0,0,2.1,22.5,111.73,929,16.1 -2013,8,30,5,30,0,0,0,2.3000000000000003,22.200000000000003,99.98,930,16.2 -2013,8,30,6,30,25,17,179,2.8000000000000003,23.400000000000002,87.42,930,16.3 -2013,8,30,7,30,210,57,589,3.1,26.400000000000002,74.98,931,16.400000000000002 -2013,8,30,8,30,429,78,756,2.7,30.1,62.370000000000005,931,16.1 -2013,8,30,9,30,633,92,842,2.2,32.7,50,930,14.700000000000001 -2013,8,30,10,30,797,101,889,2.1,34.2,38.410000000000004,930,14.3 -2013,8,30,11,30,908,105,915,2.1,35.4,28.76,929,13.9 -2013,8,30,12,30,959,99,939,2.3000000000000003,36.2,23.73,929,13.5 -2013,8,30,13,30,938,98,936,2.4000000000000004,36.7,26.17,928,12.9 -2013,8,30,14,30,852,93,921,2.4000000000000004,36.800000000000004,34.53,927,12.4 -2013,8,30,15,30,704,93,874,2.4000000000000004,36.4,45.6,926,12 -2013,8,30,16,30,512,82,807,2.4000000000000004,35.5,57.77,926,11.700000000000001 -2013,8,30,17,30,294,65,681,2.4000000000000004,35,70.35000000000001,926,11.600000000000001 -2013,8,30,18,30,83,35,393,1.3,30.3,82.95,926,14.600000000000001 -2013,8,30,19,30,0,0,0,1.3,28.1,95.55,926,14.8 -2013,8,30,20,30,0,0,0,1.5,27.200000000000003,107.59,927,14.4 -2013,8,30,21,30,0,0,0,1.6,26.5,118.79,927,14.4 -2013,8,30,22,30,0,0,0,1.8,25.900000000000002,128.52,927,14.5 -2013,8,30,23,30,0,0,0,1.9000000000000001,25.400000000000002,135.72,927,14.600000000000001 -2013,8,31,0,30,0,0,0,2.1,24.900000000000002,139.03,927,14.8 -2013,8,31,1,30,0,0,0,2.2,24.5,137.49,926,15 -2013,8,31,2,30,0,0,0,2.3000000000000003,24.1,131.58,926,15.3 -2013,8,31,3,30,0,0,0,2.3000000000000003,23.5,122.64,926,15.600000000000001 -2013,8,31,4,30,0,0,0,2.2,23,111.9,926,15.8 -2013,8,31,5,30,0,0,0,2.3000000000000003,22.700000000000003,100.13,927,15.8 -2013,8,31,6,30,24,17,168,2.8000000000000003,23.700000000000003,87.54,927,15.9 -2013,8,31,7,30,207,59,579,3.1,26.700000000000003,75.11,927,16 -2013,8,31,8,30,428,80,753,2.6,30.700000000000003,62.5,927,15.9 -2013,8,31,9,30,632,94,840,2,33.800000000000004,50.15,927,14.700000000000001 -2013,8,31,10,30,797,103,888,1.8,35.4,38.6,927,14.3 -2013,8,31,11,30,907,108,914,2,36.5,29.03,926,14 -2013,8,31,12,30,948,124,903,2.1,37.300000000000004,24.080000000000002,925,13.700000000000001 -2013,8,31,13,30,926,123,898,2.1,37.7,26.53,924,13.5 -2013,8,31,14,30,838,118,877,2.1,37.7,34.84,924,13.4 -2013,8,31,15,30,688,118,819,2,37.300000000000004,45.88,923,13.200000000000001 -2013,8,31,16,30,495,103,741,2,36.4,58.03,923,13 -2013,8,31,17,30,279,80,599,2,35.800000000000004,70.60000000000001,923,12.9 -2013,8,31,18,30,75,39,303,1.1,31.3,83.21000000000001,923,16 -2013,8,31,19,30,0,0,0,1.3,29.200000000000003,95.81,924,16 -2013,8,31,20,30,0,0,0,1.6,28.400000000000002,107.87,924,15.600000000000001 -2013,8,31,21,30,0,0,0,1.9000000000000001,27.700000000000003,119.10000000000001,924,15.5 -2013,8,31,22,30,0,0,0,2.1,27.1,128.85,924,15.5 -2013,8,31,23,30,0,0,0,2.5,26.5,136.09,924,15.4 -2013,9,1,0,30,0,0,0,2.7,26,139.39000000000001,924,15.5 -2013,9,1,1,30,0,0,0,2.7,25.3,137.82,924,15.600000000000001 -2013,9,1,2,30,0,0,0,2.7,24.700000000000003,131.84,925,15.8 -2013,9,1,3,30,0,0,0,2.8000000000000003,24.1,122.86,925,16.1 -2013,9,1,4,30,0,0,0,2.9000000000000004,23.5,112.08,925,16.400000000000002 -2013,9,1,5,30,0,0,0,3.2,23.200000000000003,100.27,926,16.6 -2013,9,1,6,30,20,16,104,3.5,24,87.66,926,16.7 -2013,9,1,7,30,196,71,488,3.8000000000000003,26.8,75.23,926,16.900000000000002 -2013,9,1,8,30,409,102,668,3.4000000000000004,30.400000000000002,62.620000000000005,927,17 -2013,9,1,9,30,608,122,762,2.3000000000000003,33.4,50.300000000000004,927,16.3 -2013,9,1,10,30,770,136,813,1.1,35.4,38.79,926,15.5 -2013,9,1,11,30,876,147,836,0.9,36.7,29.3,926,15.100000000000001 -2013,9,1,12,30,855,377,526,1.1,37.5,24.43,925,14.9 -2013,9,1,13,30,910,116,891,1.3,37.7,26.900000000000002,924,14.700000000000001 -2013,9,1,14,30,172,166,7,1.4000000000000001,37.7,35.160000000000004,924,14.600000000000001 -2013,9,1,15,30,628,211,602,1.5,37.2,46.17,923,14.4 -2013,9,1,16,30,489,89,762,1.5,36.4,58.300000000000004,923,14.100000000000001 -2013,9,1,17,30,188,129,182,1.5,35.9,70.86,923,14.100000000000001 -2013,9,1,18,30,55,38,151,0.9,32.1,83.46000000000001,924,17 -2013,9,1,19,30,0,0,0,1.1,30.200000000000003,96.08,925,17.8 -2013,9,1,20,30,0,0,0,1.3,29.3,108.16,925,17.3 -2013,9,1,21,30,0,0,0,1.5,28.5,119.41,925,17.3 -2013,9,1,22,30,0,0,0,1.4000000000000001,27.8,129.2,926,17.5 -2013,9,1,23,30,0,0,0,1.1,26.900000000000002,136.46,926,17.8 -2013,9,2,0,30,0,0,0,1,26.200000000000003,139.76,926,18 -2013,9,2,1,30,0,0,0,0.9,25.6,138.15,926,18.2 -2013,9,2,2,30,0,0,0,0.9,25.200000000000003,132.11,926,18.3 -2013,9,2,3,30,0,0,0,0.9,24.8,123.07000000000001,927,18.5 -2013,9,2,4,30,0,0,0,0.9,24.3,112.25,927,18.7 -2013,9,2,5,30,0,0,0,1.1,23.900000000000002,100.42,927,18.7 -2013,9,2,6,30,19,15,93,1.8,24.1,87.78,928,18.7 -2013,9,2,7,30,193,68,495,2.5,25.700000000000003,75.35000000000001,929,18.400000000000002 -2013,9,2,8,30,409,94,689,2.9000000000000004,28.1,62.75,929,18.3 -2013,9,2,9,30,612,108,791,3.3000000000000003,30.400000000000002,50.45,929,18 -2013,9,2,10,30,775,115,849,3.7,32.300000000000004,38.980000000000004,929,17.900000000000002 -2013,9,2,11,30,884,119,880,4.1000000000000005,33.6,29.57,928,17.8 -2013,9,2,12,30,924,138,866,4.2,34.5,24.79,927,17.7 -2013,9,2,13,30,904,131,870,4.4,34.800000000000004,27.26,926,17.7 -2013,9,2,14,30,819,122,856,4.4,34.7,35.49,926,17.5 -2013,9,2,15,30,654,167,706,4.3,34.2,46.45,925,17 -2013,9,2,16,30,487,95,751,4.1000000000000005,33.2,58.56,925,16.5 -2013,9,2,17,30,218,112,330,3.9000000000000004,32.6,71.12,925,16.2 -2013,9,2,18,30,68,35,306,2.2,29.400000000000002,83.72,926,16.8 -2013,9,2,19,30,0,0,0,1.5,27.5,96.35000000000001,927,17.8 -2013,9,2,20,30,0,0,0,1.4000000000000001,26.5,108.44,928,18.2 -2013,9,2,21,30,0,0,0,1.2000000000000002,25.700000000000003,119.72,928,18.3 -2013,9,2,22,30,0,0,0,1,25.1,129.54,928,18.400000000000002 -2013,9,2,23,30,0,0,0,0.8,24.6,136.83,928,18.400000000000002 -2013,9,3,0,30,0,0,0,0.7000000000000001,24.3,140.13,928,18.400000000000002 -2013,9,3,1,30,0,0,0,0.5,24.3,138.48,929,18.400000000000002 -2013,9,3,2,30,0,0,0,0.30000000000000004,24.1,132.38,929,18.400000000000002 -2013,9,3,3,30,0,0,0,0.4,23.6,123.29,929,18.400000000000002 -2013,9,3,4,30,0,0,0,0.6000000000000001,22.8,112.42,929,18.400000000000002 -2013,9,3,5,30,0,0,0,0.8,22.200000000000003,100.56,929,18.5 -2013,9,3,6,30,20,15,136,1.5,23.1,87.9,930,18.5 -2013,9,3,7,30,201,59,566,2,25.900000000000002,75.47,930,18.3 -2013,9,3,8,30,421,80,748,2.2,28.8,62.88,930,17.7 -2013,9,3,9,30,627,92,842,2.5,31,50.6,930,17.5 -2013,9,3,10,30,793,98,897,2.9000000000000004,32.800000000000004,39.18,930,17.1 -2013,9,3,11,30,906,100,929,3.2,34.1,29.84,929,16.3 -2013,9,3,12,30,952,99,942,3.3000000000000003,35.1,25.150000000000002,928,15.200000000000001 -2013,9,3,13,30,932,96,943,3.4000000000000004,35.7,27.63,928,13.9 -2013,9,3,14,30,845,91,929,3.5,35.800000000000004,35.81,927,12.8 -2013,9,3,15,30,697,90,886,3.5,35.4,46.75,926,11.8 -2013,9,3,16,30,505,77,825,3.4000000000000004,34.4,58.83,926,10.8 -2013,9,3,17,30,284,60,703,3.3000000000000003,33.800000000000004,71.38,926,10 -2013,9,3,18,30,54,34,186,1.6,28.8,83.97,927,12 -2013,9,3,19,30,0,0,0,1.4000000000000001,26.400000000000002,96.62,928,12.600000000000001 -2013,9,3,20,30,0,0,0,1.5,25.3,108.73,928,12.3 -2013,9,3,21,30,0,0,0,1.5,24.400000000000002,120.03,929,12.200000000000001 -2013,9,3,22,30,0,0,0,1.4000000000000001,23.5,129.88,929,12.200000000000001 -2013,9,3,23,30,0,0,0,1.3,22.8,137.20000000000002,929,12.3 -2013,9,4,0,30,0,0,0,1.2000000000000002,22.200000000000003,140.5,929,12.3 -2013,9,4,1,30,0,0,0,1.1,21.700000000000003,138.81,929,12.4 -2013,9,4,2,30,0,0,0,1,21.200000000000003,132.65,929,12.4 -2013,9,4,3,30,0,0,0,0.9,20.900000000000002,123.5,929,12.4 -2013,9,4,4,30,0,0,0,0.9,20.6,112.59,930,12.4 -2013,9,4,5,30,0,0,0,0.9,20.400000000000002,100.7,930,12.4 -2013,9,4,6,30,21,14,211,1.4000000000000001,21.400000000000002,88.02,930,12.600000000000001 -2013,9,4,7,30,213,49,657,2.1,24.3,75.60000000000001,931,12.8 -2013,9,4,8,30,439,66,823,2.4000000000000004,28.3,63.01,931,13 -2013,9,4,9,30,648,75,906,2.8000000000000003,31.6,50.75,931,12.3 -2013,9,4,10,30,817,81,952,3.2,33.300000000000004,39.38,931,11.200000000000001 -2013,9,4,11,30,926,84,973,3.4000000000000004,34.5,30.12,931,10.3 -2013,9,4,12,30,972,85,983,3.5,35.4,25.51,930,9.5 -2013,9,4,13,30,948,83,980,3.5,35.800000000000004,28,929,8.8 -2013,9,4,14,30,857,79,964,3.4000000000000004,35.9,36.14,929,8.200000000000001 -2013,9,4,15,30,709,73,932,3.4000000000000004,35.4,47.04,928,7.6000000000000005 -2013,9,4,16,30,511,65,869,3.2,34.5,59.11,928,7.2 -2013,9,4,17,30,286,52,745,3.1,33.9,71.64,928,7.2 -2013,9,4,18,30,70,27,432,1.4000000000000001,28.5,84.23,929,10.700000000000001 -2013,9,4,19,30,0,0,0,1.3,26.3,96.9,930,11.4 -2013,9,4,20,30,0,0,0,1.3,25.400000000000002,109.02,930,11.600000000000001 -2013,9,4,21,30,0,0,0,1.3,24.8,120.35000000000001,930,12.100000000000001 -2013,9,4,22,30,0,0,0,1.2000000000000002,24.200000000000003,130.23,930,12.9 -2013,9,4,23,30,0,0,0,1.2000000000000002,23.700000000000003,137.57,930,13.700000000000001 -2013,9,5,0,30,0,0,0,1.1,23.200000000000003,140.88,930,14.5 -2013,9,5,1,30,0,0,0,1.1,22.8,139.14000000000001,930,15.4 -2013,9,5,2,30,0,0,0,1.1,22.400000000000002,132.92000000000002,930,16.1 -2013,9,5,3,30,0,0,0,1.2000000000000002,21.900000000000002,123.71000000000001,930,16.7 -2013,9,5,4,30,0,0,0,1.2000000000000002,21.5,112.76,931,17.1 -2013,9,5,5,30,0,0,0,1.2000000000000002,21.3,100.85000000000001,931,17.3 -2013,9,5,6,30,17,14,113,1.7000000000000002,22.6,88.14,932,17.5 -2013,9,5,7,30,194,64,530,1.9000000000000001,25.8,75.72,932,17.7 -2013,9,5,8,30,411,90,712,1,29.5,63.14,932,17.2 -2013,9,5,9,30,614,107,803,1,32.1,50.910000000000004,932,15.9 -2013,9,5,10,30,774,120,849,1.6,33.7,39.58,932,15.100000000000001 -2013,9,5,11,30,791,347,515,2,34.800000000000004,30.400000000000002,931,14.9 -2013,9,5,12,30,583,459,138,2.3000000000000003,35.4,25.87,931,14.8 -2013,9,5,13,30,833,337,564,2.6,35.7,28.38,930,14.8 -2013,9,5,14,30,542,399,178,2.9000000000000004,35.4,36.480000000000004,929,14.9 -2013,9,5,15,30,514,299,318,3.2,34.5,47.34,929,15.100000000000001 -2013,9,5,16,30,247,213,66,3.5,33.4,59.38,929,15.4 -2013,9,5,17,30,189,117,232,3.5,32.800000000000004,71.91,929,15.700000000000001 -2013,9,5,18,30,51,31,208,2.5,29.8,84.5,930,16.6 -2013,9,5,19,30,0,0,0,2.5,28.1,97.17,930,17.400000000000002 -2013,9,5,20,30,0,0,0,2.6,27.200000000000003,109.32000000000001,931,17.6 -2013,9,5,21,30,0,0,0,2.5,26.400000000000002,120.67,931,17.8 -2013,9,5,22,30,0,0,0,2.4000000000000004,25.700000000000003,130.58,931,17.8 -2013,9,5,23,30,0,0,0,2.2,25.1,137.95000000000002,931,17.7 -2013,9,6,0,30,0,0,0,2.1,24.6,141.25,931,17.6 -2013,9,6,1,30,0,0,0,2.1,24.1,139.47,931,17.6 -2013,9,6,2,30,0,0,0,2,23.6,133.19,931,17.5 -2013,9,6,3,30,0,0,0,1.9000000000000001,23,123.92,931,17.6 -2013,9,6,4,30,0,0,0,1.7000000000000002,22.5,112.93,931,17.6 -2013,9,6,5,30,0,0,0,1.6,22.200000000000003,100.99000000000001,931,17.7 -2013,9,6,6,30,15,13,83,2.1,23.1,88.26,932,17.900000000000002 -2013,9,6,7,30,187,70,479,2.2,26.200000000000003,75.84,932,17.900000000000002 -2013,9,6,8,30,401,102,665,1.5,29.5,63.28,932,17.3 -2013,9,6,9,30,601,123,761,1.5,31.700000000000003,51.06,932,16.7 -2013,9,6,10,30,762,139,810,2,33.2,39.79,932,16.2 -2013,9,6,11,30,801,333,544,2.5,34.2,30.68,931,15.700000000000001 -2013,9,6,12,30,928,107,915,2.7,34.9,26.240000000000002,930,15.4 -2013,9,6,13,30,904,105,912,2.9000000000000004,35.300000000000004,28.75,929,15.100000000000001 -2013,9,6,14,30,815,99,894,3,35.2,36.81,929,14.700000000000001 -2013,9,6,15,30,629,175,673,3.1,34.800000000000004,47.64,928,14.4 -2013,9,6,16,30,473,80,778,3,33.9,59.660000000000004,928,14.200000000000001 -2013,9,6,17,30,257,63,635,3,33.300000000000004,72.18,928,14.100000000000001 -2013,9,6,18,30,55,28,296,1.8,30,84.76,928,14.8 -2013,9,6,19,30,0,0,0,1.8,28.5,97.45,929,15.600000000000001 -2013,9,6,20,30,0,0,0,2.1,27.8,109.61,929,15.5 -2013,9,6,21,30,0,0,0,2.4000000000000004,27.1,120.99000000000001,929,15.5 -2013,9,6,22,30,0,0,0,2.7,26.3,130.93,929,15.600000000000001 -2013,9,6,23,30,0,0,0,2.9000000000000004,25.6,138.33,929,15.700000000000001 -2013,9,7,0,30,0,0,0,3,24.900000000000002,141.63,929,15.9 -2013,9,7,1,30,0,0,0,3,24.3,139.81,929,16.1 -2013,9,7,2,30,0,0,0,2.8000000000000003,23.700000000000003,133.46,929,16.3 -2013,9,7,3,30,0,0,0,2.5,23,124.13000000000001,929,16.5 -2013,9,7,4,30,0,0,0,2.1,22.400000000000002,113.10000000000001,929,16.7 -2013,9,7,5,30,0,0,0,1.9000000000000001,22.1,101.13,929,16.900000000000002 -2013,9,7,6,30,14,12,86,2.2,22.900000000000002,88.38,930,17 -2013,9,7,7,30,184,67,483,2.4000000000000004,25.8,75.97,930,17.1 -2013,9,7,8,30,396,99,665,1.8,29.400000000000002,63.410000000000004,930,16.6 -2013,9,7,9,30,470,268,321,1.6,31.8,51.22,930,15.3 -2013,9,7,10,30,676,282,514,2,33.300000000000004,39.99,930,14.9 -2013,9,7,11,30,812,316,578,2.6,34.2,30.96,929,14.9 -2013,9,7,12,30,536,446,101,2.9000000000000004,34.7,26.6,929,14.9 -2013,9,7,13,30,817,346,539,3.2,34.9,29.13,928,14.9 -2013,9,7,14,30,227,218,11,3.4000000000000004,34.7,37.15,927,14.700000000000001 -2013,9,7,15,30,628,169,685,3.5,34,47.94,927,14.5 -2013,9,7,16,30,441,140,601,3.5,33.1,59.94,927,14.3 -2013,9,7,17,30,233,98,450,3.5,32.5,72.45,927,14.100000000000001 -2013,9,7,18,30,46,32,160,2.2,29.3,85.03,927,14.600000000000001 -2013,9,7,19,30,0,0,0,2,27.8,97.73,928,15.100000000000001 -2013,9,7,20,30,0,0,0,2.3000000000000003,26.900000000000002,109.91,928,14.8 -2013,9,7,21,30,0,0,0,2.5,26.1,121.31,929,14.700000000000001 -2013,9,7,22,30,0,0,0,2.8000000000000003,25.200000000000003,131.28,928,14.700000000000001 -2013,9,7,23,30,0,0,0,2.9000000000000004,24.400000000000002,138.71,928,15 -2013,9,8,0,30,0,0,0,2.8000000000000003,23.6,142.01,928,15.600000000000001 -2013,9,8,1,30,0,0,0,2.5,22.900000000000002,140.14000000000001,928,16.400000000000002 -2013,9,8,2,30,0,0,0,2,22.1,133.73,928,17.2 -2013,9,8,3,30,0,0,0,1.5,21.400000000000002,124.35000000000001,928,17.900000000000002 -2013,9,8,4,30,0,0,0,1.1,20.700000000000003,113.27,928,18.400000000000002 -2013,9,8,5,30,0,0,0,1,20.400000000000002,101.28,928,18.7 -2013,9,8,6,30,14,12,108,1.4000000000000001,21.200000000000003,88.5,928,19 -2013,9,8,7,30,189,57,549,1.7000000000000002,24.3,76.10000000000001,929,19.200000000000003 -2013,9,8,8,30,407,78,738,1.9000000000000001,27.8,63.550000000000004,929,17.6 -2013,9,8,9,30,610,90,833,2.7,30,51.38,929,16.1 -2013,9,8,10,30,772,96,885,3.4000000000000004,31.5,40.2,928,15.600000000000001 -2013,9,8,11,30,880,100,913,3.9000000000000004,32.6,31.25,928,15.200000000000001 -2013,9,8,12,30,923,97,927,4.2,33.300000000000004,26.97,927,15 -2013,9,8,13,30,809,349,528,4.4,33.5,29.51,926,15 -2013,9,8,14,30,807,92,901,4.4,33.300000000000004,37.49,925,15 -2013,9,8,15,30,656,89,851,4.5,32.7,48.24,925,15.100000000000001 -2013,9,8,16,30,259,214,92,4.6000000000000005,31.700000000000003,60.22,925,15.200000000000001 -2013,9,8,17,30,247,61,625,4.5,31,72.72,925,15.3 -2013,9,8,18,30,30,27,33,3.5,28.6,85.29,925,15.600000000000001 -2013,9,8,19,30,0,0,0,3.2,27.400000000000002,98.01,926,16 -2013,9,8,20,30,0,0,0,3.2,26.6,110.2,926,16.3 -2013,9,8,21,30,0,0,0,3.2,25.700000000000003,121.63,927,16.7 -2013,9,8,22,30,0,0,0,3.1,24.900000000000002,131.63,927,17 -2013,9,8,23,30,0,0,0,3,24.200000000000003,139.09,927,17.5 -2013,9,9,0,30,0,0,0,3,23.6,142.39000000000001,927,18 -2013,9,9,1,30,0,0,0,3.1,23.1,140.48,928,18.5 -2013,9,9,2,30,0,0,0,2.9000000000000004,22.6,134,928,19 -2013,9,9,3,30,0,0,0,2.4000000000000004,22,124.56,927,19.400000000000002 -2013,9,9,4,30,0,0,0,2,21.5,113.44,927,19.5 -2013,9,9,5,30,0,0,0,1.9000000000000001,21.1,101.42,928,19.6 -2013,9,9,6,30,13,11,89,2.5,21.400000000000002,88.62,928,19.700000000000003 -2013,9,9,7,30,184,57,530,3.2,22.700000000000003,76.22,929,19.5 -2013,9,9,8,30,400,78,727,3.6,24.6,63.68,929,18.8 -2013,9,9,9,30,601,88,825,3.9000000000000004,26.400000000000002,51.550000000000004,929,17.900000000000002 -2013,9,9,10,30,763,96,876,4.2,27.900000000000002,40.42,929,17.1 -2013,9,9,11,30,869,100,903,4.4,28.900000000000002,31.54,928,16.5 -2013,9,9,12,30,858,322,604,4.6000000000000005,29.6,27.34,928,16.3 -2013,9,9,13,30,891,88,926,4.6000000000000005,30,29.89,927,16 -2013,9,9,14,30,800,86,905,4.6000000000000005,30,37.84,926,15.8 -2013,9,9,15,30,649,87,849,4.7,29.8,48.550000000000004,926,15.700000000000001 -2013,9,9,16,30,230,202,57,4.7,29.3,60.51,926,15.4 -2013,9,9,17,30,241,61,615,4.7,28.900000000000002,73,926,15.3 -2013,9,9,18,30,45,25,250,3.6,26.900000000000002,85.56,926,15.5 -2013,9,9,19,30,0,0,0,3.4000000000000004,25.8,98.29,927,15.9 -2013,9,9,20,30,0,0,0,3.7,25.1,110.5,928,16.3 -2013,9,9,21,30,0,0,0,3.9000000000000004,24.3,121.95,928,16.900000000000002 -2013,9,9,22,30,0,0,0,3.9000000000000004,23.5,131.99,928,17.5 -2013,9,9,23,30,0,0,0,3.8000000000000003,22.8,139.47,929,18.2 -2013,9,10,0,30,0,0,0,3.6,22.1,142.77,929,18.8 -2013,9,10,1,30,0,0,0,3.4000000000000004,21.5,140.81,928,19.200000000000003 -2013,9,10,2,30,0,0,0,3.3000000000000003,21,134.26,928,19.6 -2013,9,10,3,30,0,0,0,3.2,20.700000000000003,124.76,928,19.900000000000002 -2013,9,10,4,30,0,0,0,2.9000000000000004,20.400000000000002,113.61,929,20 -2013,9,10,5,30,0,0,0,2.7,20.3,101.56,929,20 -2013,9,10,6,30,13,11,93,3.4000000000000004,20.900000000000002,88.74,930,19.8 -2013,9,10,7,30,183,54,545,4.1000000000000005,22.700000000000003,76.35000000000001,931,19.400000000000002 -2013,9,10,8,30,113,113,0,4.5,25,63.82,931,18.6 -2013,9,10,9,30,259,241,30,4.7,27.1,51.71,931,18 -2013,9,10,10,30,187,182,7,5,28.700000000000003,40.63,931,17.6 -2013,9,10,11,30,488,413,89,5.2,29.900000000000002,31.84,930,17.3 -2013,9,10,12,30,685,437,280,5.4,30.5,27.72,929,17.2 -2013,9,10,13,30,489,418,83,5.4,30.5,30.28,929,17.2 -2013,9,10,14,30,786,99,874,5.4,30.200000000000003,38.18,928,17.3 -2013,9,10,15,30,502,286,328,5.4,29.700000000000003,48.86,928,17.5 -2013,9,10,16,30,251,208,87,5.300000000000001,28.8,60.800000000000004,928,17.7 -2013,9,10,17,30,229,67,562,5.2,28.3,73.27,928,17.900000000000002 -2013,9,10,18,30,39,26,185,4,26.700000000000003,85.83,929,18.2 -2013,9,10,19,30,0,0,0,3.4000000000000004,26,98.58,930,18.5 -2013,9,10,20,30,0,0,0,3.2,25.400000000000002,110.8,930,18.900000000000002 -2013,9,10,21,30,0,0,0,3.1,24.8,122.27,930,19.1 -2013,9,10,22,30,0,0,0,3,24.200000000000003,132.34,931,19.400000000000002 -2013,9,10,23,30,0,0,0,2.9000000000000004,23.6,139.86,931,19.700000000000003 -2013,9,11,0,30,0,0,0,2.9000000000000004,23,143.16,931,19.900000000000002 -2013,9,11,1,30,0,0,0,2.8000000000000003,22.400000000000002,141.15,931,20.200000000000003 -2013,9,11,2,30,0,0,0,2.7,21.900000000000002,134.53,931,20.400000000000002 -2013,9,11,3,30,0,0,0,2.6,21.6,124.97,931,20.6 -2013,9,11,4,30,0,0,0,2.5,21.3,113.78,931,20.6 -2013,9,11,5,30,0,0,0,2.5,21.200000000000003,101.71000000000001,931,20.5 -2013,9,11,6,30,11,10,61,2.7,21.6,88.86,932,20.400000000000002 -2013,9,11,7,30,100,87,58,3.1,23.1,76.48,932,19.900000000000002 -2013,9,11,8,30,239,186,120,3.4000000000000004,25.3,63.96,932,18.6 -2013,9,11,9,30,597,85,831,3.6,27.3,51.88,933,17.400000000000002 -2013,9,11,10,30,653,284,488,3.8000000000000003,29.1,40.85,932,16.8 -2013,9,11,11,30,759,343,491,3.9000000000000004,30.5,32.14,932,16.400000000000002 -2013,9,11,12,30,611,451,182,4.1000000000000005,31.6,28.09,931,16.1 -2013,9,11,13,30,622,433,219,4.2,32.2,30.66,930,15.9 -2013,9,11,14,30,787,97,882,4.2,32.300000000000004,38.53,929,15.700000000000001 -2013,9,11,15,30,348,295,80,4.1000000000000005,32.1,49.17,929,15.4 -2013,9,11,16,30,447,78,762,3.9000000000000004,31.3,61.08,929,15.100000000000001 -2013,9,11,17,30,151,110,144,3.8000000000000003,30.8,73.55,929,14.8 -2013,9,11,18,30,23,23,8,2.1,27.700000000000003,86.10000000000001,930,15.100000000000001 -2013,9,11,19,30,0,0,0,1.8,26.1,98.86,930,15.5 -2013,9,11,20,30,0,0,0,2.1,25.400000000000002,111.10000000000001,930,15.3 -2013,9,11,21,30,0,0,0,2.5,24.700000000000003,122.60000000000001,930,15.3 -2013,9,11,22,30,0,0,0,2.8000000000000003,24,132.7,931,15.600000000000001 -2013,9,11,23,30,0,0,0,2.7,23.200000000000003,140.24,930,15.9 -2013,9,12,0,30,0,0,0,2.4000000000000004,22.3,143.54,930,16.3 -2013,9,12,1,30,0,0,0,2,21.400000000000002,141.48,930,16.8 -2013,9,12,2,30,0,0,0,1.6,20.700000000000003,134.8,930,17.1 -2013,9,12,3,30,0,0,0,1.4000000000000001,20.1,125.18,930,17.400000000000002 -2013,9,12,4,30,0,0,0,1.4000000000000001,19.6,113.94,930,17.7 -2013,9,12,5,30,0,0,0,1.4000000000000001,19.3,101.85000000000001,931,18 -2013,9,12,6,30,11,10,61,1.9000000000000001,20.200000000000003,88.97,931,18.3 -2013,9,12,7,30,177,61,502,2.5,23,76.61,931,18.400000000000002 -2013,9,12,8,30,392,89,695,2.6,26.3,64.1,932,17.6 -2013,9,12,9,30,591,107,787,2.7,28.5,52.050000000000004,932,17.1 -2013,9,12,10,30,752,119,839,2.9000000000000004,30.1,41.07,932,17.1 -2013,9,12,11,30,832,247,694,3,31.200000000000003,32.43,931,16.900000000000002 -2013,9,12,12,30,690,429,297,3.2,32.1,28.47,930,16.6 -2013,9,12,13,30,509,423,100,3.3000000000000003,32.6,31.05,929,16.3 -2013,9,12,14,30,782,113,860,3.4000000000000004,32.6,38.88,928,16.1 -2013,9,12,15,30,628,115,790,3.4000000000000004,32.300000000000004,49.480000000000004,928,15.700000000000001 -2013,9,12,16,30,347,187,334,3.3000000000000003,31.5,61.370000000000005,927,15.4 -2013,9,12,17,30,222,71,541,3.3000000000000003,30.900000000000002,73.83,927,15.100000000000001 -2013,9,12,18,30,24,22,32,1.6,27.700000000000003,86.37,928,15.600000000000001 -2013,9,12,19,30,0,0,0,1.3,26.200000000000003,99.15,928,16.1 -2013,9,12,20,30,0,0,0,1.3,25.400000000000002,111.4,929,16.1 -2013,9,12,21,30,0,0,0,1.3,24.8,122.92,929,15.9 -2013,9,12,22,30,0,0,0,1.2000000000000002,24.1,133.06,929,15.8 -2013,9,12,23,30,0,0,0,1.2000000000000002,23.5,140.63,929,15.600000000000001 -2013,9,13,0,30,0,0,0,1.2000000000000002,23,143.93,929,15.5 -2013,9,13,1,30,0,0,0,1.1,22.400000000000002,141.82,928,15.4 -2013,9,13,2,30,0,0,0,1.1,21.900000000000002,135.06,928,15.4 -2013,9,13,3,30,0,0,0,1,21.5,125.39,928,15.4 -2013,9,13,4,30,0,0,0,1,21.200000000000003,114.11,928,15.5 -2013,9,13,5,30,0,0,0,0.9,21,101.99000000000001,928,15.5 -2013,9,13,6,30,0,0,0,1.5,21.8,89.09,929,15.600000000000001 -2013,9,13,7,30,166,75,396,1.6,24.1,76.74,929,15.8 -2013,9,13,8,30,376,115,602,1.1,27.1,64.25,929,15.600000000000001 -2013,9,13,9,30,577,136,720,1.2000000000000002,29.3,52.22,929,15.200000000000001 -2013,9,13,10,30,618,315,403,1.8,30.6,41.29,928,15.200000000000001 -2013,9,13,11,30,73,73,0,2.3000000000000003,31.8,32.74,928,15.200000000000001 -2013,9,13,12,30,815,356,525,2.7,32.800000000000004,28.85,927,14.9 -2013,9,13,13,30,564,433,154,2.8000000000000003,33.4,31.44,926,14.4 -2013,9,13,14,30,778,130,836,2.9000000000000004,33.5,39.230000000000004,925,14 -2013,9,13,15,30,626,123,779,3,33.2,49.800000000000004,924,13.5 -2013,9,13,16,30,429,110,672,3.1,32.300000000000004,61.67,924,13.200000000000001 -2013,9,13,17,30,214,82,484,3.1,31.700000000000003,74.11,924,13.100000000000001 -2013,9,13,18,30,29,22,115,2.3000000000000003,28.700000000000003,86.64,925,14.4 -2013,9,13,19,30,0,0,0,2.8000000000000003,27.5,99.43,925,15.4 -2013,9,13,20,30,0,0,0,3.3000000000000003,26.700000000000003,111.7,926,16.1 -2013,9,13,21,30,0,0,0,3.4000000000000004,25.700000000000003,123.25,926,17 -2013,9,13,22,30,0,0,0,3,24.8,133.42000000000002,926,17.900000000000002 -2013,9,13,23,30,0,0,0,2.5,24,141.02,926,18.5 -2013,9,14,0,30,0,0,0,1.9000000000000001,23.3,144.31,926,18.7 -2013,9,14,1,30,0,0,0,1.4000000000000001,22.5,142.15,926,18.7 -2013,9,14,2,30,0,0,0,1.1,21.900000000000002,135.33,926,18.5 -2013,9,14,3,30,0,0,0,0.8,21.3,125.59,925,18.2 -2013,9,14,4,30,0,0,0,0.6000000000000001,20.8,114.28,926,17.900000000000002 -2013,9,14,5,30,0,0,0,0.5,20.400000000000002,102.13,926,17.7 -2013,9,14,6,30,0,0,0,0.8,21.3,89.21000000000001,927,17.6 -2013,9,14,7,30,175,61,504,1.4000000000000001,24.1,76.87,927,17.3 -2013,9,14,8,30,391,88,702,1.9000000000000001,27.6,64.39,927,15.9 -2013,9,14,9,30,591,105,796,1.9000000000000001,30.200000000000003,52.39,928,14.9 -2013,9,14,10,30,752,115,851,2,32,41.52,927,14.5 -2013,9,14,11,30,592,422,204,2.2,33.1,33.04,927,14.3 -2013,9,14,12,30,743,374,423,2.5,33.7,29.23,926,14.100000000000001 -2013,9,14,13,30,861,148,838,2.8000000000000003,34,31.830000000000002,925,13.9 -2013,9,14,14,30,173,168,6,3,33.800000000000004,39.58,925,13.8 -2013,9,14,15,30,519,258,408,3.4000000000000004,33.2,50.120000000000005,924,13.700000000000001 -2013,9,14,16,30,411,137,584,3.6,32.300000000000004,61.96,924,13.8 -2013,9,14,17,30,163,98,241,3.7,31.700000000000003,74.39,924,14 -2013,9,14,18,30,19,19,1,2.9000000000000004,29,86.91,925,14.700000000000001 -2013,9,14,19,30,0,0,0,3.2,27.900000000000002,99.72,925,15.600000000000001 -2013,9,14,20,30,0,0,0,3.5,27.3,112,926,16.1 -2013,9,14,21,30,0,0,0,3.6,26.8,123.58,926,16.7 -2013,9,14,22,30,0,0,0,3.6,26.3,133.78,926,17.1 -2013,9,14,23,30,0,0,0,3.5,25.900000000000002,141.41,927,17.400000000000002 -2013,9,15,0,30,0,0,0,3.4000000000000004,25.400000000000002,144.70000000000002,927,17.5 -2013,9,15,1,30,0,0,0,3.2,24.8,142.49,927,17.3 -2013,9,15,2,30,0,0,0,2.9000000000000004,24.1,135.59,927,17 -2013,9,15,3,30,0,0,0,2.7,23.400000000000002,125.8,927,16.6 -2013,9,15,4,30,0,0,0,2.5,22.700000000000003,114.44,927,16.2 -2013,9,15,5,30,0,0,0,2.4000000000000004,22.200000000000003,102.27,928,15.8 -2013,9,15,6,30,0,0,0,2.7,22.400000000000002,89.33,928,15.600000000000001 -2013,9,15,7,30,79,77,6,3.3000000000000003,24.200000000000003,77,929,15.9 -2013,9,15,8,30,346,129,505,3.6,26.5,64.53,929,17.1 -2013,9,15,9,30,464,254,346,3.5,28.200000000000003,52.57,929,17.5 -2013,9,15,10,30,724,159,758,3.2,29.200000000000003,41.75,929,17.7 -2013,9,15,11,30,827,168,790,3.2,30.1,33.35,929,17.8 -2013,9,15,12,30,849,291,641,3.4000000000000004,30.700000000000003,29.61,929,17.7 -2013,9,15,13,30,585,428,185,3.7,30.8,32.22,928,17.5 -2013,9,15,14,30,584,360,292,3.9000000000000004,30.700000000000003,39.94,928,17.3 -2013,9,15,15,30,564,192,584,4.1000000000000005,30.400000000000002,50.44,928,17.1 -2013,9,15,16,30,320,189,282,4.1000000000000005,29.8,62.26,928,16.8 -2013,9,15,17,30,94,92,9,4,29.400000000000002,74.67,928,16.6 -2013,9,15,18,30,20,20,0,2.6,27.3,87.17,929,16.7 -2013,9,15,19,30,0,0,0,2,26.200000000000003,100,929,16.7 -2013,9,15,20,30,0,0,0,1.8,25.700000000000003,112.3,929,16.5 -2013,9,15,21,30,0,0,0,1.7000000000000002,25.3,123.9,930,16.5 -2013,9,15,22,30,0,0,0,1.7000000000000002,25,134.13,930,16.5 -2013,9,15,23,30,0,0,0,1.9000000000000001,24.700000000000003,141.8,930,16.5 -2013,9,16,0,30,0,0,0,2.1,24.3,145.09,930,16.5 -2013,9,16,1,30,0,0,0,2.1,23.900000000000002,142.82,930,16.5 -2013,9,16,2,30,0,0,0,2.1,23.400000000000002,135.85,930,16.6 -2013,9,16,3,30,0,0,0,2,22.900000000000002,126,930,16.8 -2013,9,16,4,30,0,0,0,1.8,22.400000000000002,114.61,930,17.1 -2013,9,16,5,30,0,0,0,1.7000000000000002,22,102.41,931,17.5 -2013,9,16,6,30,0,0,0,2,22.5,89.44,931,17.8 -2013,9,16,7,30,87,80,29,2.4000000000000004,24.5,77.13,931,18.1 -2013,9,16,8,30,268,177,213,2.5,26.8,64.68,932,18.3 -2013,9,16,9,30,481,239,401,2.5,28.400000000000002,52.75,932,18.3 -2013,9,16,10,30,44,44,0,2.9000000000000004,29.6,41.980000000000004,931,18.2 -2013,9,16,11,30,393,359,42,3.3000000000000003,30.400000000000002,33.660000000000004,931,18.1 -2013,9,16,12,30,696,413,327,3.7,30.8,29.990000000000002,930,17.900000000000002 -2013,9,16,13,30,652,409,289,3.9000000000000004,30.700000000000003,32.61,930,17.7 -2013,9,16,14,30,579,359,288,3.9000000000000004,30.200000000000003,40.29,929,17.400000000000002 -2013,9,16,15,30,17,17,0,3.7,29.3,50.76,929,17.2 -2013,9,16,16,30,117,117,0,3.1,28.3,62.550000000000004,929,17 -2013,9,16,17,30,178,80,375,2.7,27.8,74.96000000000001,929,17.2 -2013,9,16,18,30,12,12,0,1.1,25.200000000000003,87.44,930,19.1 -2013,9,16,19,30,0,0,0,0.9,24.200000000000003,100.29,930,19.3 -2013,9,16,20,30,0,0,0,1,23.700000000000003,112.61,931,18.900000000000002 -2013,9,16,21,30,0,0,0,1,23.1,124.23,931,18.5 -2013,9,16,22,30,0,0,0,1.1,22.6,134.49,931,18.3 -2013,9,16,23,30,0,0,0,1.1,22.1,142.19,931,18 -2013,9,17,0,30,0,0,0,1.1,21.700000000000003,145.48,931,17.900000000000002 -2013,9,17,1,30,0,0,0,1.1,21.400000000000002,143.16,931,18 -2013,9,17,2,30,0,0,0,1.1,21.3,136.11,931,18.2 -2013,9,17,3,30,0,0,0,1.1,21.1,126.2,931,18.5 -2013,9,17,4,30,0,0,0,1,20.900000000000002,114.77,931,18.900000000000002 -2013,9,17,5,30,0,0,0,1,20.8,102.55,931,19.3 -2013,9,17,6,30,0,0,0,1.3,21.200000000000003,89.55,931,19.6 -2013,9,17,7,30,58,58,0,1.8,22.400000000000002,77.26,932,19.900000000000002 -2013,9,17,8,30,182,165,39,2.2,23.900000000000002,64.83,932,19.900000000000002 -2013,9,17,9,30,207,200,12,2.5,25.1,52.93,932,19.3 -2013,9,17,10,30,353,318,46,2.8000000000000003,26,42.21,932,18.7 -2013,9,17,11,30,292,277,17,3.1,26.5,33.97,931,18.2 -2013,9,17,12,30,471,410,71,3.4000000000000004,26.900000000000002,30.37,931,17.8 -2013,9,17,13,30,562,424,165,3.5,27.200000000000003,33,930,17.5 -2013,9,17,14,30,480,372,142,3.4000000000000004,27.5,40.65,929,17.1 -2013,9,17,15,30,342,285,90,3.3000000000000003,27.700000000000003,51.08,929,16.7 -2013,9,17,16,30,217,188,63,3,27.6,62.85,928,16.2 -2013,9,17,17,30,67,67,0,2.8000000000000003,27.400000000000002,75.24,928,15.9 -2013,9,17,18,30,13,13,0,1.3,25,87.71000000000001,928,16.6 -2013,9,17,19,30,0,0,0,1.4000000000000001,24.1,100.58,929,16.6 -2013,9,17,20,30,0,0,0,1.7000000000000002,23.8,112.91,929,16.3 -2013,9,17,21,30,0,0,0,2.2,23.400000000000002,124.55,929,16.3 -2013,9,17,22,30,0,0,0,2.5,23,134.85,929,16.6 -2013,9,17,23,30,0,0,0,2.7,22.6,142.58,929,17.1 -2013,9,18,0,30,0,0,0,2.7,22.200000000000003,145.87,929,17.7 -2013,9,18,1,30,0,0,0,2.5,21.8,143.49,929,18.3 -2013,9,18,2,30,0,0,0,2.3000000000000003,21.400000000000002,136.37,929,18.8 -2013,9,18,3,30,0,0,0,2,20.900000000000002,126.4,928,19.200000000000003 -2013,9,18,4,30,0,0,0,1.9000000000000001,20.5,114.93,928,19.400000000000002 -2013,9,18,5,30,0,0,0,1.8,20.1,102.69,929,19.700000000000003 -2013,9,18,6,30,0,0,0,2.3000000000000003,20.700000000000003,89.67,929,19.900000000000002 -2013,9,18,7,30,6,6,0,3.4000000000000004,22.8,77.39,929,20.1 -2013,9,18,8,30,62,62,0,4.1000000000000005,25.200000000000003,64.98,929,19.8 -2013,9,18,9,30,281,251,49,4.4,27.400000000000002,53.11,929,18.5 -2013,9,18,10,30,492,360,179,4.7,29.1,42.45,929,17.3 -2013,9,18,11,30,560,417,174,4.9,30.5,34.28,928,16.6 -2013,9,18,12,30,826,310,601,5,31.400000000000002,30.75,927,16.3 -2013,9,18,13,30,802,285,619,5.1000000000000005,31.8,33.39,926,16.1 -2013,9,18,14,30,553,362,253,5.1000000000000005,31.8,41.01,925,16.1 -2013,9,18,15,30,613,74,864,5.1000000000000005,31.3,51.4,925,16 -2013,9,18,16,30,419,65,783,4.9,30.400000000000002,63.15,925,15.8 -2013,9,18,17,30,104,93,46,4.800000000000001,29.8,75.53,925,15.700000000000001 -2013,9,18,18,30,20,14,169,3.2,26.900000000000002,87.98,925,15.9 -2013,9,18,19,30,0,0,0,2.8000000000000003,25.6,100.87,926,16.2 -2013,9,18,20,30,0,0,0,2.9000000000000004,24.900000000000002,113.21000000000001,926,16.400000000000002 -2013,9,18,21,30,0,0,0,3.1,24.3,124.88000000000001,927,16.8 -2013,9,18,22,30,0,0,0,3.1,23.700000000000003,135.21,927,17.2 -2013,9,18,23,30,0,0,0,3,23.200000000000003,142.97,927,17.7 -2013,9,19,0,30,0,0,0,2.8000000000000003,22.700000000000003,146.26,927,18.1 -2013,9,19,1,30,0,0,0,2.8000000000000003,22.5,143.83,927,18.5 -2013,9,19,2,30,0,0,0,3,22.3,136.63,926,18.900000000000002 -2013,9,19,3,30,0,0,0,3,22.1,126.61,926,19.3 -2013,9,19,4,30,0,0,0,2.8000000000000003,21.8,115.09,926,19.700000000000003 -2013,9,19,5,30,0,0,0,2.8000000000000003,21.6,102.84,927,20.1 -2013,9,19,6,30,0,0,0,3.1,21.6,89.78,927,20.3 -2013,9,19,7,30,30,30,0,3.7,22.200000000000003,77.53,927,20.5 -2013,9,19,8,30,67,67,0,4.2,23,65.13,928,20 -2013,9,19,9,30,144,144,0,4.3,23.700000000000003,53.29,928,18.8 -2013,9,19,10,30,124,124,0,4.1000000000000005,24.3,42.68,928,18.1 -2013,9,19,11,30,139,137,2,3.9000000000000004,24.6,34.6,928,17.900000000000002 -2013,9,19,12,30,205,197,10,3.6,24.6,31.14,927,17.900000000000002 -2013,9,19,13,30,346,323,27,3.5,24.400000000000002,33.78,926,18.1 -2013,9,19,14,30,357,323,45,3.4000000000000004,24.1,41.37,926,18.400000000000002 -2013,9,19,15,30,172,169,4,3.2,23.6,51.730000000000004,926,18.8 -2013,9,19,16,30,105,105,0,2.8000000000000003,22.8,63.45,926,19.3 -2013,9,19,17,30,68,68,0,2.5,22.400000000000002,75.81,926,19.8 -2013,9,19,18,30,5,5,0,1.7000000000000002,21.1,88.23,926,20.5 -2013,9,19,19,30,0,0,0,1.7000000000000002,20.8,101.15,926,20.700000000000003 -2013,9,19,20,30,0,0,0,1.7000000000000002,20.6,113.51,926,20.6 -2013,9,19,21,30,0,0,0,1.5,20.6,125.21000000000001,926,20.6 -2013,9,19,22,30,0,0,0,1.2000000000000002,20.5,135.57,926,20.5 -2013,9,19,23,30,0,0,0,1,20.5,143.36,925,20.5 -2013,9,20,0,30,0,0,0,0.9,20.400000000000002,146.65,925,20.400000000000002 -2013,9,20,1,30,0,0,0,0.9,20.3,144.16,925,20.3 -2013,9,20,2,30,0,0,0,1.2000000000000002,20.200000000000003,136.89000000000001,925,20.200000000000003 -2013,9,20,3,30,0,0,0,1.6,20,126.8,925,20 -2013,9,20,4,30,0,0,0,2.3000000000000003,19.8,115.26,925,19.8 -2013,9,20,5,30,0,0,0,3,19.6,102.98,926,19.6 -2013,9,20,6,30,0,0,0,3.7,19.400000000000002,89.89,926,19.400000000000002 -2013,9,20,7,30,3,3,0,4.6000000000000005,19.5,77.66,927,19.5 -2013,9,20,8,30,48,48,0,5.5,19.700000000000003,65.28,927,19.5 -2013,9,20,9,30,154,154,1,5.9,20.200000000000003,53.480000000000004,927,19.3 -2013,9,20,10,30,184,179,7,5.800000000000001,20.6,42.92,927,19 -2013,9,20,11,30,185,179,8,5.5,21,34.910000000000004,927,18.6 -2013,9,20,12,30,241,230,13,5.300000000000001,21.3,31.52,927,18.400000000000002 -2013,9,20,13,30,161,157,5,5.1000000000000005,21.3,34.18,927,18.1 -2013,9,20,14,30,210,203,9,4.9,21.1,41.730000000000004,926,17.8 -2013,9,20,15,30,108,108,0,4.7,20.6,52.050000000000004,926,17.5 -2013,9,20,16,30,249,190,135,4.4,19.8,63.75,926,17.1 -2013,9,20,17,30,91,86,21,4.3,19.400000000000002,76.09,926,16.6 -2013,9,20,18,30,7,7,0,3.8000000000000003,17.8,88.49,927,16.2 -2013,9,20,19,30,0,0,0,3.7,16.900000000000002,101.44,927,15.8 -2013,9,20,20,30,0,0,0,3.5,16.2,113.81,928,15.3 -2013,9,20,21,30,0,0,0,3.5,15.700000000000001,125.53,928,15 -2013,9,20,22,30,0,0,0,3.5,15.3,135.93,929,14.600000000000001 -2013,9,20,23,30,0,0,0,3.5,14.8,143.75,929,14.100000000000001 -2013,9,21,0,30,0,0,0,3.5,14.200000000000001,147.04,929,13.5 -2013,9,21,1,30,0,0,0,3.4000000000000004,13.700000000000001,144.49,929,12.700000000000001 -2013,9,21,2,30,0,0,0,3.2,13.100000000000001,137.15,929,11.8 -2013,9,21,3,30,0,0,0,3,12.600000000000001,127,929,11 -2013,9,21,4,30,0,0,0,2.9000000000000004,12.100000000000001,115.42,929,10.200000000000001 -2013,9,21,5,30,0,0,0,2.7,11.600000000000001,103.12,929,9.600000000000001 -2013,9,21,6,30,0,0,0,2.9000000000000004,12,89.99,929,9.200000000000001 -2013,9,21,7,30,181,40,664,3.4000000000000004,14.4,77.8,930,9.200000000000001 -2013,9,21,8,30,409,56,851,3.8000000000000003,17.6,65.43,930,9 -2013,9,21,9,30,618,64,935,4,20.3,53.660000000000004,930,8.200000000000001 -2013,9,21,10,30,780,69,974,3.9000000000000004,22.3,43.17,930,7.7 -2013,9,21,11,30,887,73,997,3.6,23.700000000000003,35.230000000000004,929,7.6000000000000005 -2013,9,21,12,30,923,77,997,3.3000000000000003,24.8,31.91,929,7.7 -2013,9,21,13,30,892,76,992,3,25.400000000000002,34.57,928,7.9 -2013,9,21,14,30,794,73,972,2.8000000000000003,25.6,42.09,927,8.200000000000001 -2013,9,21,15,30,635,68,928,2.8000000000000003,25.3,52.38,926,8.5 -2013,9,21,16,30,432,58,853,2.5,24.400000000000002,64.05,926,8.5 -2013,9,21,17,30,206,43,692,2.2,23.700000000000003,76.38,926,9.5 -2013,9,21,18,30,16,11,213,1.2000000000000002,18.8,88.75,926,12.200000000000001 -2013,9,21,19,30,0,0,0,1.3,17.2,101.73,926,10.8 -2013,9,21,20,30,0,0,0,1.3,16.3,114.11,927,10.200000000000001 -2013,9,21,21,30,0,0,0,1.3,15.5,125.86,927,9.8 -2013,9,21,22,30,0,0,0,1.1,14.8,136.29,926,9.3 -2013,9,21,23,30,0,0,0,1.1,14.5,144.15,926,8.700000000000001 -2013,9,22,0,30,0,0,0,1,14.3,147.43,926,8.1 -2013,9,22,1,30,0,0,0,0.9,14.200000000000001,144.82,926,7.6000000000000005 -2013,9,22,2,30,0,0,0,0.9,13.9,137.4,926,7.1000000000000005 -2013,9,22,3,30,0,0,0,0.9,13.600000000000001,127.2,926,6.800000000000001 -2013,9,22,4,30,0,0,0,0.9,13.200000000000001,115.58,926,6.6000000000000005 -2013,9,22,5,30,0,0,0,0.9,12.9,103.26,926,6.5 -2013,9,22,6,30,0,0,0,0.8,13.700000000000001,90.11,926,6.5 -2013,9,22,7,30,181,39,679,1,15.8,77.94,927,8.6 -2013,9,22,8,30,409,55,857,1.6,19.1,65.59,927,8 -2013,9,22,9,30,618,64,938,2,22.1,53.85,927,7 -2013,9,22,10,30,783,70,982,1.8,23.900000000000002,43.410000000000004,927,6.7 -2013,9,22,11,30,890,73,1004,1.7000000000000002,25.200000000000003,35.550000000000004,926,7.2 -2013,9,22,12,30,929,76,1009,1.9000000000000001,26.1,32.3,925,7.5 -2013,9,22,13,30,897,74,1004,2.2,26.700000000000003,34.97,924,7.5 -2013,9,22,14,30,801,71,990,2.7,26.700000000000003,42.45,923,7.2 -2013,9,22,15,30,640,67,945,3.1,26.3,52.7,923,6.9 -2013,9,22,16,30,434,58,868,3.1,25,64.35,922,6.6000000000000005 -2013,9,22,17,30,205,42,704,2.8000000000000003,24.200000000000003,76.67,922,7.9 -2013,9,22,18,30,0,0,0,1.6,18.900000000000002,89.01,922,10.3 -2013,9,22,19,30,0,0,0,1.6,17.400000000000002,102.02,923,9.600000000000001 -2013,9,22,20,30,0,0,0,1.7000000000000002,16.5,114.41,923,9.4 -2013,9,22,21,30,0,0,0,1.7000000000000002,15.700000000000001,126.18,923,9.3 -2013,9,22,22,30,0,0,0,1.8,15.100000000000001,136.65,923,9.200000000000001 -2013,9,22,23,30,0,0,0,1.9000000000000001,14.600000000000001,144.54,923,9.200000000000001 -2013,9,23,0,30,0,0,0,2.1,14.100000000000001,147.82,923,9.200000000000001 -2013,9,23,1,30,0,0,0,2.3000000000000003,13.600000000000001,145.15,923,9.4 -2013,9,23,2,30,0,0,0,2.6,13.100000000000001,137.66,923,9.8 -2013,9,23,3,30,0,0,0,2.8000000000000003,12.700000000000001,127.4,923,10.100000000000001 -2013,9,23,4,30,0,0,0,3.1,12.3,115.74000000000001,922,10.3 -2013,9,23,5,30,0,0,0,3.2,11.9,103.4,922,10.3 -2013,9,23,6,30,0,0,0,3.6,12.4,90.22,922,10.4 -2013,9,23,7,30,169,44,604,3.9000000000000004,14.700000000000001,78.07000000000001,923,10.700000000000001 -2013,9,23,8,30,388,65,785,4.2,18.6,65.75,923,11.3 -2013,9,23,9,30,589,78,871,4.800000000000001,22.8,54.050000000000004,923,10.700000000000001 -2013,9,23,10,30,749,86,916,4.7,25.6,43.660000000000004,922,9.4 -2013,9,23,11,30,851,90,939,4.4,27.5,35.88,922,10 -2013,9,23,12,30,889,92,946,4.1000000000000005,28.900000000000002,32.68,921,10.9 -2013,9,23,13,30,859,92,941,4,29.900000000000002,35.36,920,11.700000000000001 -2013,9,23,14,30,762,88,919,3.7,30.400000000000002,42.81,919,12.3 -2013,9,23,15,30,605,83,868,3.4000000000000004,30.400000000000002,53.03,919,12.5 -2013,9,23,16,30,405,73,776,2.6,29.400000000000002,64.65,919,12.600000000000001 -2013,9,23,17,30,184,52,587,2,28.5,76.96000000000001,919,14.9 -2013,9,23,18,30,0,0,0,1.7000000000000002,23.6,89.27,920,15.3 -2013,9,23,19,30,0,0,0,1.8,22.1,102.3,921,13.600000000000001 -2013,9,23,20,30,0,0,0,1.7000000000000002,20.900000000000002,114.71000000000001,922,13.100000000000001 -2013,9,23,21,30,0,0,0,1.7000000000000002,19.900000000000002,126.5,922,12.600000000000001 -2013,9,23,22,30,0,0,0,1.7000000000000002,19,137.01,923,12.3 -2013,9,23,23,30,0,0,0,1.7000000000000002,18.1,144.93,923,12.100000000000001 -2013,9,24,0,30,0,0,0,1.5,17.2,148.21,923,11.8 -2013,9,24,1,30,0,0,0,1.1,16.3,145.48,924,11.5 -2013,9,24,2,30,0,0,0,1,15.4,137.91,924,11.100000000000001 -2013,9,24,3,30,0,0,0,1.2000000000000002,14.700000000000001,127.59,924,10.9 -2013,9,24,4,30,0,0,0,1.7000000000000002,14.3,115.9,925,11 -2013,9,24,5,30,0,0,0,2.3000000000000003,14.200000000000001,103.54,925,11.5 -2013,9,24,6,30,0,0,0,3.2,15.100000000000001,90.91,926,12 -2013,9,24,7,30,167,46,594,3.9000000000000004,17.7,78.21000000000001,927,12.600000000000001 -2013,9,24,8,30,388,66,789,4.3,21.3,65.91,928,13 -2013,9,24,9,30,593,78,882,5,25,54.24,928,12.9 -2013,9,24,10,30,756,85,932,5.2,27.5,43.910000000000004,928,11.600000000000001 -2013,9,24,11,30,860,88,957,4.9,28.900000000000002,36.2,928,11 -2013,9,24,12,30,902,86,974,4.4,29.6,33.07,927,10.8 -2013,9,24,13,30,870,83,969,3.9000000000000004,30,35.76,926,10.5 -2013,9,24,14,30,771,79,948,3.7,29.900000000000002,43.18,926,10.100000000000001 -2013,9,24,15,30,612,73,902,3.4000000000000004,29.3,53.36,926,9.700000000000001 -2013,9,24,16,30,411,62,824,2.8000000000000003,28,64.95,925,9.4 -2013,9,24,17,30,187,44,650,2.3000000000000003,27.1,77.24,926,11.5 -2013,9,24,18,30,0,0,0,1.4000000000000001,21.8,89.51,926,12.9 -2013,9,24,19,30,0,0,0,1.4000000000000001,20.3,102.59,926,11.5 -2013,9,24,20,30,0,0,0,1.4000000000000001,19.5,115.01,927,10.9 -2013,9,24,21,30,0,0,0,1.3,18.900000000000002,126.82000000000001,927,10.4 -2013,9,24,22,30,0,0,0,1.3,18.400000000000002,137.36,927,9.9 -2013,9,24,23,30,0,0,0,1.2000000000000002,18.1,145.32,927,9.4 -2013,9,25,0,30,0,0,0,1.1,17.900000000000002,148.6,927,9 -2013,9,25,1,30,0,0,0,1.1,17.7,145.81,927,8.6 -2013,9,25,2,30,0,0,0,1.1,17.3,138.16,926,8.3 -2013,9,25,3,30,0,0,0,1.2000000000000002,16.7,127.79,926,8.1 -2013,9,25,4,30,0,0,0,1.3,16,116.06,926,8 -2013,9,25,5,30,0,0,0,1.3,15.3,103.68,926,8.1 -2013,9,25,6,30,0,0,0,1.5,16.2,91.04,926,8.4 -2013,9,25,7,30,168,42,624,2.2,19.200000000000003,78.36,926,10.5 -2013,9,25,8,30,392,62,813,2.9000000000000004,22.900000000000002,66.07000000000001,926,10.4 -2013,9,25,9,30,595,75,895,3.3000000000000003,26.5,54.44,926,11.8 -2013,9,25,10,30,755,83,937,3.6,29,44.160000000000004,926,12 -2013,9,25,11,30,857,89,956,3.6,30.200000000000003,36.53,925,12.3 -2013,9,25,12,30,894,92,961,3.6,31.1,33.46,924,12.4 -2013,9,25,13,30,859,91,950,3.7,31.700000000000003,36.15,922,12.5 -2013,9,25,14,30,756,88,921,3.7,31.900000000000002,43.54,922,12.600000000000001 -2013,9,25,15,30,597,84,865,3.7,31.5,53.68,921,12.700000000000001 -2013,9,25,16,30,393,74,764,3.3000000000000003,30.3,65.26,921,13 -2013,9,25,17,30,173,53,556,2.8000000000000003,29.5,77.53,921,14.5 -2013,9,25,18,30,0,0,0,2.8000000000000003,25.1,89.76,921,15.700000000000001 -2013,9,25,19,30,0,0,0,3.8000000000000003,24.3,102.87,921,15.600000000000001 -2013,9,25,20,30,0,0,0,4.6000000000000005,23.700000000000003,115.31,922,15.9 -2013,9,25,21,30,0,0,0,4.9,22.900000000000002,127.14,922,15.9 -2013,9,25,22,30,0,0,0,5.1000000000000005,22.200000000000003,137.72,922,15.8 -2013,9,25,23,30,0,0,0,5.1000000000000005,21.5,145.71,922,15.5 -2013,9,26,0,30,0,0,0,4.9,20.8,148.99,922,15.100000000000001 -2013,9,26,1,30,0,0,0,4.7,20.1,146.14000000000001,922,14.9 -2013,9,26,2,30,0,0,0,4.3,19.3,138.41,922,14.700000000000001 -2013,9,26,3,30,0,0,0,3.9000000000000004,18.5,127.98,922,14.700000000000001 -2013,9,26,4,30,0,0,0,3.7,17.900000000000002,116.21000000000001,922,14.8 -2013,9,26,5,30,0,0,0,3.7,17.400000000000002,103.82000000000001,923,14.9 -2013,9,26,6,30,0,0,0,4,17.7,91.18,923,14.9 -2013,9,26,7,30,156,50,533,4.7,19.700000000000003,78.5,924,15 -2013,9,26,8,30,374,75,742,5.6000000000000005,23,66.23,924,15.4 -2013,9,26,9,30,576,89,840,6.2,26.1,54.63,924,15.8 -2013,9,26,10,30,734,99,889,6,28.400000000000002,44.42,924,15.5 -2013,9,26,11,30,837,105,915,5.7,30,36.86,924,15.200000000000001 -2013,9,26,12,30,882,88,957,5.4,31.1,33.85,923,15.100000000000001 -2013,9,26,13,30,849,87,948,5.2,31.6,36.54,923,14.9 -2013,9,26,14,30,751,83,927,5.1000000000000005,31.5,43.9,922,14.600000000000001 -2013,9,26,15,30,593,78,877,5.2,30.900000000000002,54.01,922,14.4 -2013,9,26,16,30,393,66,791,5,29.6,65.56,922,14.200000000000001 -2013,9,26,17,30,174,46,602,4.800000000000001,28.8,77.81,922,14.3 -2013,9,26,18,30,0,0,0,3.7,24.8,90,922,14.700000000000001 -2013,9,26,19,30,0,0,0,4,23.5,103.15,923,14.600000000000001 -2013,9,26,20,30,0,0,0,4.2,22.5,115.60000000000001,923,14.5 -2013,9,26,21,30,0,0,0,4.3,21.5,127.46000000000001,924,14.3 -2013,9,26,22,30,0,0,0,4.4,20.700000000000003,138.07,924,14.100000000000001 -2013,9,26,23,30,0,0,0,4.3,20,146.1,924,14 -2013,9,27,0,30,0,0,0,3.9000000000000004,19.3,149.38,924,13.9 -2013,9,27,1,30,0,0,0,3.5,18.7,146.47,924,14 -2013,9,27,2,30,0,0,0,3.4000000000000004,18.2,138.66,924,14.5 -2013,9,27,3,30,0,0,0,3.5,17.900000000000002,128.17000000000002,924,15.4 -2013,9,27,4,30,0,0,0,3.5,17.900000000000002,116.37,924,16.7 -2013,9,27,5,30,0,0,0,3.4000000000000004,18.1,103.96000000000001,924,17.8 -2013,9,27,6,30,0,0,0,3.7,18.8,91.31,924,18.7 -2013,9,27,7,30,148,54,480,4.6000000000000005,20.700000000000003,78.64,925,19.400000000000002 -2013,9,27,8,30,260,161,246,5.7,23.3,66.39,925,20.200000000000003 -2013,9,27,9,30,446,234,368,6.2,25.900000000000002,54.83,925,20.1 -2013,9,27,10,30,717,98,870,6.1000000000000005,28,44.67,924,19.700000000000003 -2013,9,27,11,30,820,99,905,6.1000000000000005,29.700000000000003,37.19,924,19.200000000000003 -2013,9,27,12,30,857,98,918,6,30.8,34.230000000000004,923,18.6 -2013,9,27,13,30,823,95,910,6.1000000000000005,31.5,36.94,922,18.3 -2013,9,27,14,30,725,89,887,6.2,31.5,44.26,921,18 -2013,9,27,15,30,569,81,836,6.2,31,54.34,921,18 -2013,9,27,16,30,372,69,741,6,29.8,65.86,921,18.3 -2013,9,27,17,30,159,48,540,5.800000000000001,29.1,78.10000000000001,921,18.8 -2013,9,27,18,30,0,0,0,4.5,26.1,90.25,922,19.5 -2013,9,27,19,30,0,0,0,4.2,24.8,103.44,922,19.900000000000002 -2013,9,27,20,30,0,0,0,4.2,24.1,115.9,923,20.3 -2013,9,27,21,30,0,0,0,4.6000000000000005,23.6,127.78,923,20.6 -2013,9,27,22,30,0,0,0,4.9,23.200000000000003,138.42000000000002,923,20.900000000000002 -2013,9,27,23,30,0,0,0,5,22.8,146.49,923,21.200000000000003 -2013,9,28,0,30,0,0,0,4.9,22.400000000000002,149.77,923,21.400000000000002 -2013,9,28,1,30,0,0,0,4.800000000000001,22.1,146.79,923,21.700000000000003 -2013,9,28,2,30,0,0,0,4.6000000000000005,21.900000000000002,138.91,924,21.8 -2013,9,28,3,30,0,0,0,4.1000000000000005,21.8,128.36,924,21.8 -2013,9,28,4,30,0,0,0,3.7,21.700000000000003,116.53,924,21.700000000000003 -2013,9,28,5,30,0,0,0,3.2,21.5,104.10000000000001,925,21.5 -2013,9,28,6,30,0,0,0,2.6,21.200000000000003,91.45,926,21.200000000000003 -2013,9,28,7,30,32,32,0,3,20.400000000000002,78.78,927,20.400000000000002 -2013,9,28,8,30,16,16,0,4.3,19.400000000000002,66.56,928,19.200000000000003 -2013,9,28,9,30,23,23,0,5.4,18.6,55.04,929,17 -2013,9,28,10,30,100,100,0,5.9,18.8,44.93,930,15.700000000000001 -2013,9,28,11,30,128,128,0,5.9,19.6,37.52,930,15.4 -2013,9,28,12,30,231,221,12,5.7,20.6,34.62,929,15.5 -2013,9,28,13,30,422,369,66,5.4,21.3,37.33,929,15.3 -2013,9,28,14,30,590,290,422,5.2,21.5,44.62,929,14.9 -2013,9,28,15,30,342,265,132,4.800000000000001,21.400000000000002,54.660000000000004,929,14.200000000000001 -2013,9,28,16,30,359,84,679,4.3,20.8,66.16,929,13.200000000000001 -2013,9,28,17,30,151,53,489,4,20.3,78.38,930,12.3 -2013,9,28,18,30,0,0,0,2.1,17.1,91.05,930,12.700000000000001 -2013,9,28,19,30,0,0,0,1.9000000000000001,15.9,103.72,931,12.3 -2013,9,28,20,30,0,0,0,1.7000000000000002,15,116.19,932,11.600000000000001 -2013,9,28,21,30,0,0,0,1.6,14.4,128.1,932,10.9 -2013,9,28,22,30,0,0,0,1.8,14,138.77,932,10.3 -2013,9,28,23,30,0,0,0,2,13.700000000000001,146.88,932,9.600000000000001 -2013,9,29,0,30,0,0,0,2.3000000000000003,13.4,150.16,932,9 -2013,9,29,1,30,0,0,0,2.3000000000000003,13,147.12,932,8.6 -2013,9,29,2,30,0,0,0,2.2,12.700000000000001,139.16,932,8.4 -2013,9,29,3,30,0,0,0,2,12.3,128.55,932,8.200000000000001 -2013,9,29,4,30,0,0,0,1.9000000000000001,11.8,116.69,932,8 -2013,9,29,5,30,0,0,0,1.8,11.3,104.24000000000001,932,7.800000000000001 -2013,9,29,6,30,0,0,0,2.3000000000000003,11.700000000000001,91.59,932,7.5 -2013,9,29,7,30,161,39,636,3,13.700000000000001,78.93,932,7.5 -2013,9,29,8,30,387,55,842,3.6,16.900000000000002,66.73,932,7.6000000000000005 -2013,9,29,9,30,596,63,935,4.1000000000000005,19.900000000000002,55.24,932,5.6000000000000005 -2013,9,29,10,30,760,69,979,4.1000000000000005,21.700000000000003,45.19,931,4.5 -2013,9,29,11,30,864,73,1002,3.6,23,37.85,931,4.6000000000000005 -2013,9,29,12,30,903,74,1012,3,24,35.01,930,4.800000000000001 -2013,9,29,13,30,869,73,1006,2.4000000000000004,24.5,37.72,929,4.9 -2013,9,29,14,30,766,70,984,1.9000000000000001,24.6,44.99,928,5 -2013,9,29,15,30,603,63,941,1.6,24.3,54.99,928,5 -2013,9,29,16,30,397,54,858,1.1,23.400000000000002,66.46000000000001,927,4.9 -2013,9,29,17,30,170,38,673,0.8,22.700000000000003,78.66,927,6.7 -2013,9,29,18,30,0,0,0,0.9,18.400000000000002,91.33,927,9.200000000000001 -2013,9,29,19,30,0,0,0,1.2000000000000002,16.5,104,927,7.9 -2013,9,29,20,30,0,0,0,1.3,15.200000000000001,116.48,928,7.7 -2013,9,29,21,30,0,0,0,1.4000000000000001,14.3,128.41,928,7.4 -2013,9,29,22,30,0,0,0,1.5,13.600000000000001,139.12,927,7.2 -2013,9,29,23,30,0,0,0,1.6,13,147.27,927,7 -2013,9,30,0,30,0,0,0,1.8,12.5,150.55,927,6.800000000000001 -2013,9,30,1,30,0,0,0,2,12.200000000000001,147.44,926,6.7 -2013,9,30,2,30,0,0,0,2.2,11.8,139.4,926,6.7 -2013,9,30,3,30,0,0,0,2.4000000000000004,11.5,128.74,925,6.7 -2013,9,30,4,30,0,0,0,2.4000000000000004,11.200000000000001,116.84,925,6.9 -2013,9,30,5,30,0,0,0,2.4000000000000004,10.9,104.38,925,7.1000000000000005 -2013,9,30,6,30,0,0,0,3,11.700000000000001,91.73,925,7.4 -2013,9,30,7,30,159,41,624,3.5,14.200000000000001,79.07000000000001,925,8.1 -2013,9,30,8,30,383,59,826,3.7,17.900000000000002,66.89,925,9.3 -2013,9,30,9,30,587,69,914,4.2,22,55.45,924,11 -2013,9,30,10,30,750,76,961,4.6000000000000005,25.6,45.46,924,11.9 -2013,9,30,11,30,853,80,984,4.5,28.200000000000003,38.18,924,11.3 -2013,9,30,12,30,886,82,987,4.3,29.8,35.4,923,10.4 -2013,9,30,13,30,851,81,979,4.1000000000000005,30.5,38.12,922,9.9 -2013,9,30,14,30,746,77,952,3.9000000000000004,30.700000000000003,45.35,922,9.600000000000001 -2013,9,30,15,30,585,72,903,3.5,30.200000000000003,55.32,921,9.4 -2013,9,30,16,30,381,61,811,2.8000000000000003,28.3,66.76,921,10.200000000000001 -2013,9,30,17,30,158,42,605,2.4000000000000004,26.900000000000002,78.94,921,14.100000000000001 -2013,9,30,18,30,0,0,0,3.1,22.3,91.60000000000001,922,13 -2013,9,30,19,30,0,0,0,3.9000000000000004,21.400000000000002,104.27,922,12.200000000000001 -2013,9,30,20,30,0,0,0,4.2,20.6,116.77,922,12.100000000000001 -2013,9,30,21,30,0,0,0,4.4,19.700000000000003,128.72,923,12.200000000000001 -2013,9,30,22,30,0,0,0,4.5,18.900000000000002,139.47,923,12.4 -2013,9,30,23,30,0,0,0,4.4,18.2,147.66,923,12.700000000000001 -2013,10,1,0,30,0,0,0,4.3,17.7,150.94,923,13.100000000000001 -2013,10,1,1,30,0,0,0,4.2,17.3,147.77,923,13.5 -2013,10,1,2,30,0,0,0,4.1000000000000005,17,139.64000000000001,923,13.700000000000001 -2013,10,1,3,30,0,0,0,4,16.7,128.93,923,13.9 -2013,10,1,4,30,0,0,0,3.7,16.3,117,923,14.100000000000001 -2013,10,1,5,30,0,0,0,3.5,15.9,104.52,923,14.3 -2013,10,1,6,30,0,0,0,3.8000000000000003,16.3,91.87,923,14.5 -2013,10,1,7,30,149,44,562,4,18.2,79.22,924,14.8 -2013,10,1,8,30,366,65,772,4.5,21.700000000000003,67.07000000000001,924,15.600000000000001 -2013,10,1,9,30,567,77,868,5.2,25.3,55.660000000000004,925,16.7 -2013,10,1,10,30,724,85,915,5.4,27.700000000000003,45.72,924,16.2 -2013,10,1,11,30,825,90,940,5.300000000000001,29.3,38.52,924,15.600000000000001 -2013,10,1,12,30,860,83,957,5.2,30.3,35.79,924,15.200000000000001 -2013,10,1,13,30,823,84,946,5.2,30.8,38.51,923,14.9 -2013,10,1,14,30,722,80,919,5.1000000000000005,30.8,45.71,922,14.8 -2013,10,1,15,30,563,74,866,4.9,30.3,55.64,922,14.8 -2013,10,1,16,30,362,63,769,4.3,29,67.06,922,15 -2013,10,1,17,30,147,43,557,3.8000000000000003,28.1,79.22,923,16 -2013,10,1,18,30,0,0,0,3.2,24.3,91.88,923,16.6 -2013,10,1,19,30,0,0,0,3.8000000000000003,23.3,104.55,924,16.6 -2013,10,1,20,30,0,0,0,4.1000000000000005,22.400000000000002,117.05,924,16.7 -2013,10,1,21,30,0,0,0,4.2,21.5,129.03,925,17 -2013,10,1,22,30,0,0,0,4.2,20.700000000000003,139.82,925,17.2 -2013,10,1,23,30,0,0,0,4.1000000000000005,19.900000000000002,148.04,925,17.400000000000002 -2013,10,2,0,30,0,0,0,3.9000000000000004,19.3,151.33,925,17.6 -2013,10,2,1,30,0,0,0,3.7,18.7,148.09,925,17.8 -2013,10,2,2,30,0,0,0,3.5,18.1,139.89000000000001,924,18 -2013,10,2,3,30,0,0,0,3.2,17.7,129.12,924,17.7 -2013,10,2,4,30,0,0,0,3,17.6,117.15,924,17.6 -2013,10,2,5,30,0,0,0,2.9000000000000004,17.6,104.66,925,17.6 -2013,10,2,6,30,0,0,0,3.2,18.1,92.01,925,18.1 -2013,10,2,7,30,139,52,473,4,20.1,79.37,926,18.7 -2013,10,2,8,30,352,79,707,4.9,23,67.24,926,19.5 -2013,10,2,9,30,553,92,821,5.300000000000001,25.8,55.870000000000005,926,19.900000000000002 -2013,10,2,10,30,712,98,884,5.4,28,45.99,926,19.5 -2013,10,2,11,30,814,100,917,5.300000000000001,29.6,38.85,925,18.900000000000002 -2013,10,2,12,30,852,92,941,5.300000000000001,30.700000000000003,36.17,924,18.2 -2013,10,2,13,30,814,92,928,5.2,31.400000000000002,38.9,923,17.5 -2013,10,2,14,30,712,90,897,5.2,31.5,46.07,922,16.900000000000002 -2013,10,2,15,30,556,79,852,5,31.1,55.97,922,16.400000000000002 -2013,10,2,16,30,355,68,745,4.4,29.900000000000002,67.35,922,15.9 -2013,10,2,17,30,140,46,515,3.9000000000000004,29.1,79.5,922,16.5 -2013,10,2,18,30,0,0,0,3.8000000000000003,25.5,92.15,923,17.1 -2013,10,2,19,30,0,0,0,4.3,24.6,104.82000000000001,923,17.2 -2013,10,2,20,30,0,0,0,4.6000000000000005,23.8,117.34,924,17.5 -2013,10,2,21,30,0,0,0,4.6000000000000005,22.900000000000002,129.34,924,17.8 -2013,10,2,22,30,0,0,0,4.4,22,140.16,924,18 -2013,10,2,23,30,0,0,0,4.4,21.200000000000003,148.43,924,18.1 -2013,10,3,0,30,0,0,0,4.3,20.6,151.72,924,18.2 -2013,10,3,1,30,0,0,0,4.2,20,148.4,924,18.3 -2013,10,3,2,30,0,0,0,4,19.400000000000002,140.13,924,18.3 -2013,10,3,3,30,0,0,0,3.7,18.8,129.3,924,18.3 -2013,10,3,4,30,0,0,0,3.6,18.3,117.31,924,18.3 -2013,10,3,5,30,0,0,0,3.7,18.1,104.8,924,18.1 -2013,10,3,6,30,0,0,0,4.2,18.5,92.15,924,18.2 -2013,10,3,7,30,139,48,500,5.1000000000000005,20.400000000000002,79.52,925,18.3 -2013,10,3,8,30,353,71,734,5.800000000000001,23.400000000000002,67.41,925,18.6 -2013,10,3,9,30,552,84,837,6.2,26.200000000000003,56.08,925,18.6 -2013,10,3,10,30,707,93,888,6.2,28.400000000000002,46.25,924,18.1 -2013,10,3,11,30,805,99,911,6,30.1,39.19,924,17.7 -2013,10,3,12,30,844,83,948,5.800000000000001,31.3,36.56,923,17.2 -2013,10,3,13,30,807,85,933,5.7,32,39.29,922,16.8 -2013,10,3,14,30,706,83,902,5.6000000000000005,32.1,46.42,921,16.400000000000002 -2013,10,3,15,30,548,75,852,5.5,31.6,56.29,921,16.1 -2013,10,3,16,30,350,63,754,5.1000000000000005,30.3,67.65,921,15.700000000000001 -2013,10,3,17,30,136,42,529,4.7,29.400000000000002,79.78,921,15.9 -2013,10,3,18,30,0,0,0,4,25.700000000000003,92.42,921,16 -2013,10,3,19,30,0,0,0,4.2,24.3,105.10000000000001,922,15.9 -2013,10,3,20,30,0,0,0,4.4,23.400000000000002,117.62,922,16 -2013,10,3,21,30,0,0,0,4.4,22.8,129.64000000000001,922,16.2 -2013,10,3,22,30,0,0,0,4.4,22.3,140.5,922,16.5 -2013,10,3,23,30,0,0,0,4.3,21.8,148.81,922,16.8 -2013,10,4,0,30,0,0,0,4.2,21.400000000000002,152.1,923,17.1 -2013,10,4,1,30,0,0,0,4.1000000000000005,21,148.72,923,17.400000000000002 -2013,10,4,2,30,0,0,0,4,20.6,140.36,923,17.7 -2013,10,4,3,30,0,0,0,3.9000000000000004,20.1,129.49,923,18.1 -2013,10,4,4,30,0,0,0,3.9000000000000004,19.8,117.46000000000001,923,18.5 -2013,10,4,5,30,0,0,0,3.8000000000000003,19.6,104.95,923,18.8 -2013,10,4,6,30,0,0,0,3.9000000000000004,19.700000000000003,92.29,923,19.1 -2013,10,4,7,30,67,63,22,4.7,20.700000000000003,79.67,924,19.400000000000002 -2013,10,4,8,30,257,147,288,5.800000000000001,22.400000000000002,67.59,924,19.6 -2013,10,4,9,30,534,98,786,6.2,24.400000000000002,56.29,924,19.400000000000002 -2013,10,4,10,30,690,105,850,6.1000000000000005,26.1,46.52,924,18.900000000000002 -2013,10,4,11,30,790,108,884,5.800000000000001,27.5,39.52,924,18.2 -2013,10,4,12,30,576,400,221,5.5,28.700000000000003,36.94,923,17.6 -2013,10,4,13,30,719,270,584,5.300000000000001,29.900000000000002,39.67,922,17.1 -2013,10,4,14,30,582,257,475,5.2,30.700000000000003,46.78,922,16.8 -2013,10,4,15,30,380,244,247,5.1000000000000005,30.900000000000002,56.61,921,16.5 -2013,10,4,16,30,338,68,720,4.5,30,67.95,921,16.3 -2013,10,4,17,30,128,44,487,4.1000000000000005,29.200000000000003,80.06,922,16.7 -2013,10,4,18,30,0,0,0,3.7,25.700000000000003,92.69,922,16.900000000000002 -2013,10,4,19,30,0,0,0,4,24.8,105.36,923,16.8 -2013,10,4,20,30,0,0,0,4.3,24.1,117.9,923,16.8 -2013,10,4,21,30,0,0,0,4.4,23.5,129.94,924,16.900000000000002 -2013,10,4,22,30,0,0,0,4.3,22.700000000000003,140.84,924,17.1 -2013,10,4,23,30,0,0,0,3.8000000000000003,21.8,149.19,924,17.3 -2013,10,5,0,30,0,0,0,3,21.200000000000003,152.49,924,17.400000000000002 -2013,10,5,1,30,0,0,0,2.1,20.5,149.04,925,17.2 -2013,10,5,2,30,0,0,0,2.4000000000000004,19.5,140.6,926,16.400000000000002 -2013,10,5,3,30,0,0,0,3.7,18.2,129.67000000000002,927,14.600000000000001 -2013,10,5,4,30,0,0,0,5,16.400000000000002,117.62,927,11.8 -2013,10,5,5,30,0,0,0,5.800000000000001,14.3,105.09,929,8.200000000000001 -2013,10,5,6,30,0,0,0,6.2,12.5,92.43,930,4.5 -2013,10,5,7,30,126,57,391,6.300000000000001,12,79.82000000000001,931,1.6 -2013,10,5,8,30,51,51,0,6.300000000000001,12.9,67.76,931,0.1 -2013,10,5,9,30,361,249,202,6.1000000000000005,14.4,56.51,932,0.30000000000000004 -2013,10,5,10,30,96,96,0,5.800000000000001,15.9,46.79,932,1.1 -2013,10,5,11,30,101,101,0,5.5,17.5,39.86,932,2 -2013,10,5,12,30,665,344,404,5.1000000000000005,18.8,37.33,931,2.8000000000000003 -2013,10,5,13,30,798,102,909,4.9,19.900000000000002,40.06,931,3.5 -2013,10,5,14,30,431,328,152,4.7,20.5,47.14,930,4 -2013,10,5,15,30,546,83,848,4.6000000000000005,20.400000000000002,56.93,930,4 -2013,10,5,16,30,348,65,765,4.1000000000000005,19.6,68.24,930,3.4000000000000004 -2013,10,5,17,30,134,40,560,3.8000000000000003,19,80.33,930,2.9000000000000004 -2013,10,5,18,30,0,0,0,1.4000000000000001,14.5,92.96000000000001,931,4.9 -2013,10,5,19,30,0,0,0,1.2000000000000002,13,105.63,932,5.1000000000000005 -2013,10,5,20,30,0,0,0,1.1,12.100000000000001,118.18,932,4.9 -2013,10,5,21,30,0,0,0,1,11.3,130.24,933,4.6000000000000005 -2013,10,5,22,30,0,0,0,1.1,10.700000000000001,141.17000000000002,933,4.2 -2013,10,5,23,30,0,0,0,1.1,10.100000000000001,149.57,933,3.6 -2013,10,6,0,30,0,0,0,1.2000000000000002,9.5,152.87,933,3 -2013,10,6,1,30,0,0,0,1.2000000000000002,8.8,149.35,933,2.3000000000000003 -2013,10,6,2,30,0,0,0,1.3,8.3,140.84,933,1.8 -2013,10,6,3,30,0,0,0,1.4000000000000001,7.800000000000001,129.85,933,1.2000000000000002 -2013,10,6,4,30,0,0,0,1.7000000000000002,7.4,117.77,933,0.7000000000000001 -2013,10,6,5,30,0,0,0,1.9000000000000001,7.2,105.23,933,0.2 -2013,10,6,6,30,0,0,0,2.5,8.1,92.57000000000001,933,-0.4 -2013,10,6,7,30,152,35,668,3.3000000000000003,10.600000000000001,79.98,934,-0.8 -2013,10,6,8,30,380,53,871,4,14.3,67.94,934,-1.1 -2013,10,6,9,30,588,64,957,4.4,17.6,56.72,935,-2.7 -2013,10,6,10,30,752,70,1002,4.3,19.700000000000003,47.07,934,-4 -2013,10,6,11,30,850,74,1017,3.9000000000000004,21.3,40.2,934,-3.9000000000000004 -2013,10,6,12,30,885,76,1023,3.6,22.5,37.71,933,-3.6 -2013,10,6,13,30,843,74,1010,3.5,23.400000000000002,40.45,933,-3.2 -2013,10,6,14,30,737,70,987,3.5,23.8,47.49,932,-2.9000000000000004 -2013,10,6,15,30,568,64,933,3.2,23.700000000000003,57.25,932,-2.9000000000000004 -2013,10,6,16,30,361,53,841,2.1,22.5,68.53,931,-2.9000000000000004 -2013,10,6,17,30,136,35,621,1.2000000000000002,21.5,80.60000000000001,931,4.3 -2013,10,6,18,30,0,0,0,0.7000000000000001,19,93.22,932,2.7 -2013,10,6,19,30,0,0,0,0.5,18.400000000000002,105.9,932,0.30000000000000004 -2013,10,6,20,30,0,0,0,0.6000000000000001,17.400000000000002,118.45,932,0 -2013,10,6,21,30,0,0,0,0.9,15.9,130.54,932,-0.1 -2013,10,6,22,30,0,0,0,1.2000000000000002,14.3,141.51,933,0.7000000000000001 -2013,10,6,23,30,0,0,0,1.3,12.8,149.95000000000002,933,1.1 -2013,10,7,0,30,0,0,0,1.4000000000000001,11.8,153.25,933,1.3 -2013,10,7,1,30,0,0,0,1.5,11.200000000000001,149.66,933,1.1 -2013,10,7,2,30,0,0,0,1.5,10.9,141.07,933,0.9 -2013,10,7,3,30,0,0,0,1.6,10.600000000000001,130.03,933,0.6000000000000001 -2013,10,7,4,30,0,0,0,1.6,10.200000000000001,117.93,933,0.4 -2013,10,7,5,30,0,0,0,1.6,9.8,105.37,933,0.4 -2013,10,7,6,30,0,0,0,1.7000000000000002,10.5,92.72,933,0.7000000000000001 -2013,10,7,7,30,143,33,640,2.2,13.3,80.13,934,1.8 -2013,10,7,8,30,363,48,845,2.3000000000000003,16.900000000000002,68.12,934,1.5 -2013,10,7,9,30,566,57,933,1.9000000000000001,20.900000000000002,56.94,934,2.6 -2013,10,7,10,30,725,62,979,1.8,23.900000000000002,47.34,934,2.8000000000000003 -2013,10,7,11,30,824,66,997,1.8,25.400000000000002,40.53,933,3.5 -2013,10,7,12,30,858,75,995,1.8,26.200000000000003,38.1,932,4 -2013,10,7,13,30,821,75,986,1.9000000000000001,26.700000000000003,40.83,931,4.2 -2013,10,7,14,30,714,71,958,1.9000000000000001,26.700000000000003,47.84,931,4.3 -2013,10,7,15,30,551,68,901,1.9000000000000001,26.200000000000003,57.57,931,4.3 -2013,10,7,16,30,346,56,801,1.6,24.8,68.82000000000001,931,4.3 -2013,10,7,17,30,127,36,572,1.2000000000000002,23.700000000000003,80.87,931,7.800000000000001 -2013,10,7,18,30,0,0,0,1.2000000000000002,18.3,93.49,931,8.5 -2013,10,7,19,30,0,0,0,1.4000000000000001,16.900000000000002,106.16,931,7.1000000000000005 -2013,10,7,20,30,0,0,0,1.4000000000000001,16,118.72,931,6.7 -2013,10,7,21,30,0,0,0,1.4000000000000001,15.100000000000001,130.83,931,6.300000000000001 -2013,10,7,22,30,0,0,0,1.4000000000000001,14.3,141.84,931,6.1000000000000005 -2013,10,7,23,30,0,0,0,1.5,13.600000000000001,150.32,931,5.800000000000001 -2013,10,8,0,30,0,0,0,1.5,12.9,153.63,931,5.6000000000000005 -2013,10,8,1,30,0,0,0,1.5,12.3,149.97,931,5.5 -2013,10,8,2,30,0,0,0,1.5,11.8,141.3,930,5.300000000000001 -2013,10,8,3,30,0,0,0,1.5,11.3,130.22,930,5.2 -2013,10,8,4,30,0,0,0,1.4000000000000001,10.9,118.08,930,5 -2013,10,8,5,30,0,0,0,1.3,10.5,105.52,930,4.9 -2013,10,8,6,30,0,0,0,1.4000000000000001,11.100000000000001,92.86,930,4.800000000000001 -2013,10,8,7,30,139,36,610,2,13.8,80.29,930,5.6000000000000005 -2013,10,8,8,30,360,55,824,2.3000000000000003,17.5,68.3,930,5.5 -2013,10,8,9,30,563,66,917,2.9000000000000004,21.900000000000002,57.160000000000004,930,5.9 -2013,10,8,10,30,723,73,964,3.7,25.5,47.62,930,3.4000000000000004 -2013,10,8,11,30,824,77,987,3.8000000000000003,27.1,40.87,929,3.5 -2013,10,8,12,30,751,256,633,3.9000000000000004,28,38.480000000000004,928,3.7 -2013,10,8,13,30,721,232,650,3.9000000000000004,28.6,41.21,927,3.8000000000000003 -2013,10,8,14,30,610,204,610,3.9000000000000004,28.5,48.2,926,3.8000000000000003 -2013,10,8,15,30,520,80,828,3.8000000000000003,27.700000000000003,57.89,926,3.9000000000000004 -2013,10,8,16,30,342,61,789,3.1,26,69.11,926,4.2 -2013,10,8,17,30,113,37,492,2.4000000000000004,24.700000000000003,81.14,926,7 -2013,10,8,18,30,0,0,0,2.2,19.5,93.75,926,7.300000000000001 -2013,10,8,19,30,0,0,0,2.6,18.5,106.42,926,6.800000000000001 -2013,10,8,20,30,0,0,0,3,17.7,118.99000000000001,927,6.7 -2013,10,8,21,30,0,0,0,3.3000000000000003,16.8,131.12,927,6.9 -2013,10,8,22,30,0,0,0,3.4000000000000004,15.8,142.16,926,7 -2013,10,8,23,30,0,0,0,3.4000000000000004,14.9,150.70000000000002,927,7.1000000000000005 -2013,10,9,0,30,0,0,0,3.4000000000000004,14.100000000000001,154.01,927,7.2 -2013,10,9,1,30,0,0,0,3.3000000000000003,13.4,150.28,927,7.2 -2013,10,9,2,30,0,0,0,3.1,12.8,141.53,927,7.2 -2013,10,9,3,30,0,0,0,2.9000000000000004,12.200000000000001,130.39000000000001,927,7.2 -2013,10,9,4,30,0,0,0,2.8000000000000003,11.8,118.23,927,7.1000000000000005 -2013,10,9,5,30,0,0,0,2.9000000000000004,11.5,105.66,927,7.2 -2013,10,9,6,30,0,0,0,3.3000000000000003,11.8,93.01,928,7.6000000000000005 -2013,10,9,7,30,97,55,252,3.9000000000000004,13.700000000000001,80.45,928,8.4 -2013,10,9,8,30,265,129,372,5,17.1,68.49,929,10 -2013,10,9,9,30,553,73,891,6,20.700000000000003,57.39,929,11.700000000000001 -2013,10,9,10,30,698,99,894,6,23.5,47.89,928,11.3 -2013,10,9,11,30,810,84,964,5.7,25.6,41.21,928,10.600000000000001 -2013,10,9,12,30,843,84,974,5.4,27,38.86,927,10.100000000000001 -2013,10,9,13,30,802,82,963,5.2,28,41.59,926,9.700000000000001 -2013,10,9,14,30,695,80,930,5,28.200000000000003,48.550000000000004,926,9.4 -2013,10,9,15,30,533,70,878,4.800000000000001,27.700000000000003,58.2,925,9.200000000000001 -2013,10,9,16,30,330,59,769,4,26.200000000000003,69.4,925,9.200000000000001 -2013,10,9,17,30,114,37,517,3.4000000000000004,25.200000000000003,81.41,925,10.100000000000001 -2013,10,9,18,30,0,0,0,3,21.1,94.01,926,10.5 -2013,10,9,19,30,0,0,0,3.6,20.3,106.68,926,10.3 -2013,10,9,20,30,0,0,0,4.1000000000000005,19.3,119.26,927,10.3 -2013,10,9,21,30,0,0,0,4.3,18.3,131.41,927,10.4 -2013,10,9,22,30,0,0,0,4.2,17.400000000000002,142.49,927,10.600000000000001 -2013,10,9,23,30,0,0,0,4.1000000000000005,16.6,151.07,927,10.700000000000001 -2013,10,10,0,30,0,0,0,3.8000000000000003,15.9,154.39000000000001,927,10.9 -2013,10,10,1,30,0,0,0,3.5,15.200000000000001,150.59,927,11.100000000000001 -2013,10,10,2,30,0,0,0,3.4000000000000004,14.700000000000001,141.76,927,11.4 -2013,10,10,3,30,0,0,0,3.4000000000000004,14.3,130.57,927,11.9 -2013,10,10,4,30,0,0,0,3.4000000000000004,14,118.39,927,12.600000000000001 -2013,10,10,5,30,0,0,0,3.4000000000000004,13.8,105.8,927,13.4 -2013,10,10,6,30,0,0,0,3.7,14.3,93.15,927,14.200000000000001 -2013,10,10,7,30,120,48,443,4.6000000000000005,16.1,80.61,928,14.700000000000001 -2013,10,10,8,30,330,77,695,5.800000000000001,19.1,68.67,928,15.5 -2013,10,10,9,30,528,90,819,6.300000000000001,22,57.61,928,15.9 -2013,10,10,10,30,687,93,890,6.2,24.5,48.17,927,15.600000000000001 -2013,10,10,11,30,785,93,925,6.2,26.6,41.550000000000004,926,15 -2013,10,10,12,30,821,81,956,6.2,28.200000000000003,39.24,925,14.200000000000001 -2013,10,10,13,30,783,81,943,6.2,29.1,41.97,924,13.5 -2013,10,10,14,30,677,79,909,6.300000000000001,29.400000000000002,48.89,923,12.9 -2013,10,10,15,30,516,71,853,6.4,29.1,58.52,922,12.4 -2013,10,10,16,30,316,60,739,6,27.900000000000002,69.68,922,12 -2013,10,10,17,30,106,37,480,5.7,27.1,81.67,922,12 -2013,10,10,18,30,0,0,0,4.3,23.3,94.26,922,12.4 -2013,10,10,19,30,0,0,0,4.6000000000000005,21.8,106.93,923,12.700000000000001 -2013,10,10,20,30,0,0,0,4.800000000000001,20.8,119.52,923,12.9 -2013,10,10,21,30,0,0,0,5,19.900000000000002,131.69,923,13.200000000000001 -2013,10,10,22,30,0,0,0,5,19.200000000000003,142.81,923,13.5 -2013,10,10,23,30,0,0,0,4.800000000000001,18.7,151.43,923,13.9 -2013,10,11,0,30,0,0,0,4.3,18.3,154.77,923,14.3 -2013,10,11,1,30,0,0,0,4.2,17.900000000000002,150.89000000000001,923,14.600000000000001 -2013,10,11,2,30,0,0,0,4.3,17.6,141.98,923,15.100000000000001 -2013,10,11,3,30,0,0,0,3.7,17.1,130.75,923,15.4 -2013,10,11,4,30,0,0,0,3,16.5,118.54,924,15.700000000000001 -2013,10,11,5,30,0,0,0,2.6,16.1,105.95,924,15.9 -2013,10,11,6,30,0,0,0,2.8000000000000003,16.3,93.3,924,16 -2013,10,11,7,30,119,44,472,3.7,18.1,80.77,925,16.1 -2013,10,11,8,30,332,67,734,4.4,21.1,68.86,925,15.9 -2013,10,11,9,30,533,76,858,4.2,23.900000000000002,57.83,925,14.5 -2013,10,11,10,30,694,80,925,3.7,26.5,48.45,925,12.4 -2013,10,11,11,30,796,81,960,3.7,28.6,41.88,924,10.100000000000001 -2013,10,11,12,30,827,84,963,3.8000000000000003,30,39.61,924,7.800000000000001 -2013,10,11,13,30,791,81,962,3.8000000000000003,30.700000000000003,42.34,923,6.1000000000000005 -2013,10,11,14,30,687,75,937,3.8000000000000003,30.8,49.24,922,5 -2013,10,11,15,30,526,69,884,3.6,30.3,58.83,922,4.5 -2013,10,11,16,30,325,57,782,2.6,28.400000000000002,69.96000000000001,922,4.4 -2013,10,11,17,30,109,35,530,1.7000000000000002,27,81.93,922,8.8 -2013,10,11,18,30,0,0,0,1.4000000000000001,21.6,94.51,923,8.8 -2013,10,11,19,30,0,0,0,1.4000000000000001,20.400000000000002,107.18,924,8.1 -2013,10,11,20,30,0,0,0,1.4000000000000001,19.5,119.78,924,7.800000000000001 -2013,10,11,21,30,0,0,0,1.4000000000000001,18.7,131.97,924,7.7 -2013,10,11,22,30,0,0,0,1.5,17.8,143.12,925,7.6000000000000005 -2013,10,11,23,30,0,0,0,1.5,17.1,151.8,925,7.6000000000000005 -2013,10,12,0,30,0,0,0,1.6,16.400000000000002,155.14000000000001,925,7.6000000000000005 -2013,10,12,1,30,0,0,0,1.7000000000000002,15.700000000000001,151.20000000000002,926,7.5 -2013,10,12,2,30,0,0,0,1.6,15,142.21,926,6.9 -2013,10,12,3,30,0,0,0,1.5,14.3,130.93,927,6 -2013,10,12,4,30,0,0,0,1.3,13.700000000000001,118.69,927,5 -2013,10,12,5,30,0,0,0,1.3,13.200000000000001,106.09,928,4 -2013,10,12,6,30,0,0,0,1.6,13.4,93.45,928,3.3000000000000003 -2013,10,12,7,30,120,42,492,2.3000000000000003,15.3,80.92,929,2.5 -2013,10,12,8,30,332,66,743,2.7,18.2,69.04,929,1.2000000000000002 -2013,10,12,9,30,529,80,850,2.7,21.6,58.06,929,2.2 -2013,10,12,10,30,686,87,908,2.1,24.8,48.730000000000004,929,4.4 -2013,10,12,11,30,784,90,938,1.6,27.200000000000003,42.22,929,7.2 -2013,10,12,12,30,816,88,950,1.6,28.6,39.99,929,8.4 -2013,10,12,13,30,778,85,943,1.8,29.3,42.72,928,8.9 -2013,10,12,14,30,674,81,915,2.2,29.400000000000002,49.58,928,9 -2013,10,12,15,30,512,72,857,2.7,28.8,59.13,928,8.9 -2013,10,12,16,30,311,59,746,2.7,27.200000000000003,70.24,928,8.700000000000001 -2013,10,12,17,30,101,35,484,2.4000000000000004,26.1,82.19,928,10.100000000000001 -2013,10,12,18,30,0,0,0,2.9000000000000004,21.900000000000002,94.77,929,9.700000000000001 -2013,10,12,19,30,0,0,0,3.6,21,107.43,930,8.700000000000001 -2013,10,12,20,30,0,0,0,3.9000000000000004,20.200000000000003,120.03,930,8.5 -2013,10,12,21,30,0,0,0,3.7,19.3,132.24,931,8.9 -2013,10,12,22,30,0,0,0,3.4000000000000004,18.400000000000002,143.44,931,9.700000000000001 -2013,10,12,23,30,0,0,0,3.1,17.6,152.16,931,10.600000000000001 -2013,10,13,0,30,0,0,0,3,17,155.51,932,11.5 -2013,10,13,1,30,0,0,0,3.1,16.5,151.5,932,12.200000000000001 -2013,10,13,2,30,0,0,0,3.1,16.2,142.43,932,13 -2013,10,13,3,30,0,0,0,2.9000000000000004,15.8,131.1,932,13.8 -2013,10,13,4,30,0,0,0,2.8000000000000003,15.600000000000001,118.84,932,14.4 -2013,10,13,5,30,0,0,0,2.8000000000000003,15.5,106.23,932,14.8 -2013,10,13,6,30,0,0,0,2.8000000000000003,15.5,93.59,932,15.100000000000001 -2013,10,13,7,30,39,39,0,3,15.9,81.09,933,15.3 -2013,10,13,8,30,137,130,20,3.2,16.8,69.23,933,15.8 -2013,10,13,9,30,246,219,51,3.3000000000000003,18,58.29,934,16.400000000000002 -2013,10,13,10,30,254,241,20,3.5,19.200000000000003,49,933,17.2 -2013,10,13,11,30,229,221,11,3.7,20.200000000000003,42.56,933,17.900000000000002 -2013,10,13,12,30,299,283,22,4,20.900000000000002,40.36,932,18.5 -2013,10,13,13,30,393,340,73,4.2,21.200000000000003,43.09,931,18.900000000000002 -2013,10,13,14,30,280,259,33,4.3,21.200000000000003,49.92,931,19.1 -2013,10,13,15,30,283,226,111,3.9000000000000004,20.8,59.44,931,19.1 -2013,10,13,16,30,146,130,48,3.2,20,70.52,931,19.1 -2013,10,13,17,30,33,33,0,2.7,19.5,82.44,931,19 -2013,10,13,18,30,0,0,0,2.5,18.2,95.01,932,18.2 -2013,10,13,19,30,0,0,0,2.5,17.900000000000002,107.68,932,17.900000000000002 -2013,10,13,20,30,0,0,0,1.7000000000000002,17.6,120.29,932,17.6 -2013,10,13,21,30,0,0,0,1,17.5,132.52,932,17.5 -2013,10,13,22,30,0,0,0,0.9,17.400000000000002,143.74,932,17.400000000000002 -2013,10,13,23,30,0,0,0,0.9,17.3,152.52,931,17.3 -2013,10,14,0,30,0,0,0,1,17.3,155.88,931,17.3 -2013,10,14,1,30,0,0,0,1.5,17.3,151.79,930,17.3 -2013,10,14,2,30,0,0,0,2,17.400000000000002,142.65,930,17.400000000000002 -2013,10,14,3,30,0,0,0,2.1,17.6,131.28,929,17.6 -2013,10,14,4,30,0,0,0,2.2,17.7,118.99000000000001,929,17.7 -2013,10,14,5,30,0,0,0,2.3000000000000003,17.900000000000002,106.38,929,17.900000000000002 -2013,10,14,6,30,0,0,0,2.6,18.2,93.74,929,18.2 -2013,10,14,7,30,38,38,0,3.2,18.900000000000002,81.25,929,18.900000000000002 -2013,10,14,8,30,56,56,0,4.2,19.900000000000002,69.42,929,19.5 -2013,10,14,9,30,137,137,0,5.300000000000001,21.3,58.52,928,19.900000000000002 -2013,10,14,10,30,99,99,0,5.9,22.700000000000003,49.29,928,19.6 -2013,10,14,11,30,282,267,21,5.7,23.6,42.89,927,19.3 -2013,10,14,12,30,388,344,57,5.4,24.1,40.74,926,19.3 -2013,10,14,13,30,415,347,93,5.300000000000001,24.3,43.46,926,19.3 -2013,10,14,14,30,133,133,0,5,24.1,50.26,925,19.200000000000003 -2013,10,14,15,30,216,199,34,4.3,23.8,59.74,925,19.1 -2013,10,14,16,30,170,134,110,3.5,23.1,70.8,925,19.1 -2013,10,14,17,30,28,28,0,3.1,22.700000000000003,82.7,925,19.3 -2013,10,14,18,30,0,0,0,3,21.200000000000003,95.26,926,19.200000000000003 -2013,10,14,19,30,0,0,0,3.2,20.900000000000002,107.92,926,19.200000000000003 -2013,10,14,20,30,0,0,0,3.3000000000000003,20.5,120.53,926,19.200000000000003 -2013,10,14,21,30,0,0,0,3.3000000000000003,20.1,132.78,926,19.200000000000003 -2013,10,14,22,30,0,0,0,3.3000000000000003,19.700000000000003,144.05,926,19.200000000000003 -2013,10,14,23,30,0,0,0,3.3000000000000003,19.3,152.88,926,19.200000000000003 -2013,10,15,0,30,0,0,0,3.3000000000000003,19.1,156.25,926,19.1 -2013,10,15,1,30,0,0,0,3.6,19,152.09,926,19 -2013,10,15,2,30,0,0,0,3.7,19,142.87,926,19 -2013,10,15,3,30,0,0,0,3.1,18.900000000000002,131.45,926,18.900000000000002 -2013,10,15,4,30,0,0,0,2.3000000000000003,18.6,119.14,927,18.6 -2013,10,15,5,30,0,0,0,2.5,17.900000000000002,106.52,927,17.900000000000002 -2013,10,15,6,30,0,0,0,3.7,16.7,93.89,928,16.7 -2013,10,15,7,30,11,11,0,4.9,15.200000000000001,81.41,929,15.200000000000001 -2013,10,15,8,30,64,64,0,5.7,14.100000000000001,69.61,929,12.100000000000001 -2013,10,15,9,30,80,80,0,5.9,13.600000000000001,58.74,930,9.3 -2013,10,15,10,30,159,158,2,5.800000000000001,13.600000000000001,49.57,930,7.800000000000001 -2013,10,15,11,30,108,108,0,5.6000000000000005,13.8,43.230000000000004,930,7.4 -2013,10,15,12,30,71,71,0,5.2,13.8,41.11,929,7.4 -2013,10,15,13,30,386,334,72,4.800000000000001,13.8,43.82,929,7.4 -2013,10,15,14,30,273,253,32,4.4,13.8,50.6,929,7.300000000000001 -2013,10,15,15,30,109,109,0,4.2,13.4,60.04,929,7.2 -2013,10,15,16,30,56,56,0,3.8000000000000003,12.700000000000001,71.07000000000001,929,7 -2013,10,15,17,30,30,30,0,3.6,12.200000000000001,82.94,929,7.2 -2013,10,15,18,30,0,0,0,2.5,10.600000000000001,95.5,930,7.800000000000001 -2013,10,15,19,30,0,0,0,2.2,10.100000000000001,108.15,931,8 -2013,10,15,20,30,0,0,0,2.2,9.700000000000001,120.78,931,8 -2013,10,15,21,30,0,0,0,2.2,9.5,133.05,931,8 -2013,10,15,22,30,0,0,0,2.3000000000000003,9.4,144.35,931,8 -2013,10,15,23,30,0,0,0,2.5,9.200000000000001,153.23,931,7.9 -2013,10,16,0,30,0,0,0,2.7,9,156.62,931,7.9 -2013,10,16,1,30,0,0,0,3,8.9,152.38,931,7.7 -2013,10,16,2,30,0,0,0,3.2,8.8,143.08,931,7.5 -2013,10,16,3,30,0,0,0,3.4000000000000004,8.9,131.62,931,7.1000000000000005 -2013,10,16,4,30,0,0,0,3.5,8.8,119.3,931,6.7 -2013,10,16,5,30,0,0,0,3.6,8.700000000000001,106.67,931,6.1000000000000005 -2013,10,16,6,30,0,0,0,3.7,8.6,94.04,932,5.4 -2013,10,16,7,30,26,26,0,4.1000000000000005,9,81.57000000000001,932,4.6000000000000005 -2013,10,16,8,30,96,96,0,4.3,10.100000000000001,69.8,933,3.7 -2013,10,16,9,30,520,61,891,4.1000000000000005,11.600000000000001,58.97,933,3.4000000000000004 -2013,10,16,10,30,383,305,120,3.7,13.3,49.85,932,3.6 -2013,10,16,11,30,774,71,970,3.3000000000000003,15,43.56,931,4 -2013,10,16,12,30,558,364,259,2.9000000000000004,16.3,41.47,931,4.5 -2013,10,16,13,30,471,353,165,2.8000000000000003,17.3,44.19,930,5 -2013,10,16,14,30,305,272,52,2.9000000000000004,17.6,50.93,929,5.4 -2013,10,16,15,30,211,195,34,3.1,17.400000000000002,60.34,929,5.6000000000000005 -2013,10,16,16,30,152,128,76,3,16.400000000000002,71.34,929,5.5 -2013,10,16,17,30,87,31,471,2.8000000000000003,15.700000000000001,83.19,930,5.6000000000000005 -2013,10,16,18,30,0,0,0,1.4000000000000001,11.8,95.74000000000001,930,6.800000000000001 -2013,10,16,19,30,0,0,0,1.4000000000000001,10.600000000000001,108.39,931,6.2 -2013,10,16,20,30,0,0,0,1.3,9.600000000000001,121.02,931,5.6000000000000005 -2013,10,16,21,30,0,0,0,1.3,8.700000000000001,133.31,932,5 -2013,10,16,22,30,0,0,0,1.1,7.800000000000001,144.64000000000001,931,4.5 -2013,10,16,23,30,0,0,0,1,7,153.58,931,4 -2013,10,17,0,30,0,0,0,0.8,6.5,156.98,931,3.6 -2013,10,17,1,30,0,0,0,0.7000000000000001,6.300000000000001,152.67000000000002,931,3.1 -2013,10,17,2,30,0,0,0,0.5,6.300000000000001,143.3,931,2.7 -2013,10,17,3,30,0,0,0,0.4,6.2,131.79,931,2.4000000000000004 -2013,10,17,4,30,0,0,0,0.6000000000000001,5.800000000000001,119.45,931,2.3000000000000003 -2013,10,17,5,30,0,0,0,0.8,5.300000000000001,106.81,931,2.3000000000000003 -2013,10,17,6,30,0,0,0,1,5.5,94.19,931,2.3000000000000003 -2013,10,17,7,30,116,34,573,1.7000000000000002,7.5,81.74,932,3.1 -2013,10,17,8,30,332,53,814,2,11,70,932,3.5 -2013,10,17,9,30,530,64,910,1.8,14.5,59.21,932,5.2 -2013,10,17,10,30,686,71,960,1.9000000000000001,16.900000000000002,50.13,931,6.6000000000000005 -2013,10,17,11,30,781,76,979,2.2,18.7,43.9,930,7.5 -2013,10,17,12,30,809,79,980,2.5,20.1,41.84,929,8 -2013,10,17,13,30,769,78,969,2.8000000000000003,21,44.550000000000004,928,8.3 -2013,10,17,14,30,660,75,935,3,21.3,51.26,928,8.4 -2013,10,17,15,30,495,68,871,3.1,21,60.64,927,8.6 -2013,10,17,16,30,291,56,745,2.7,19.700000000000003,71.61,927,8.8 -2013,10,17,17,30,83,32,450,2.3000000000000003,18.7,83.44,927,10.100000000000001 -2013,10,17,18,30,0,0,0,2.6,15,95.97,927,9.9 -2013,10,17,19,30,0,0,0,3.4000000000000004,14.200000000000001,108.62,927,9.4 -2013,10,17,20,30,0,0,0,3.7,13.5,121.25,928,9.3 -2013,10,17,21,30,0,0,0,3.7,12.9,133.56,927,9.4 -2013,10,17,22,30,0,0,0,3.6,12.4,144.94,927,9.600000000000001 -2013,10,17,23,30,0,0,0,3.5,12,153.92000000000002,927,9.8 -2013,10,18,0,30,0,0,0,3.3000000000000003,11.700000000000001,157.34,927,10.100000000000001 -2013,10,18,1,30,0,0,0,3.1,11.4,152.96,926,10.3 -2013,10,18,2,30,0,0,0,2.9000000000000004,11.200000000000001,143.51,926,10.600000000000001 -2013,10,18,3,30,0,0,0,2.7,11.100000000000001,131.96,926,10.9 -2013,10,18,4,30,0,0,0,2.4000000000000004,10.9,119.60000000000001,926,10.9 -2013,10,18,5,30,0,0,0,2.5,10.8,106.96000000000001,926,10.8 -2013,10,18,6,30,0,0,0,3,11.200000000000001,94.35000000000001,926,11.100000000000001 -2013,10,18,7,30,38,38,0,3.6,12.600000000000001,81.91,926,11.200000000000001 -2013,10,18,8,30,62,62,0,4.3,15.100000000000001,70.19,926,11.600000000000001 -2013,10,18,9,30,94,94,0,4.7,17.6,59.44,926,12.3 -2013,10,18,10,30,205,199,9,4.7,19.8,50.410000000000004,926,13.4 -2013,10,18,11,30,260,248,17,4.3,21.700000000000003,44.230000000000004,925,14.200000000000001 -2013,10,18,12,30,595,340,345,3.9000000000000004,23.200000000000003,42.2,924,14.600000000000001 -2013,10,18,13,30,740,101,902,3.4000000000000004,24.200000000000003,44.910000000000004,923,14.3 -2013,10,18,14,30,636,94,873,3.1,24.3,51.59,923,13.5 -2013,10,18,15,30,465,107,737,3.4000000000000004,23.5,60.93,923,12.4 -2013,10,18,16,30,27,27,0,5.4,20.5,71.87,925,11.4 -2013,10,18,17,30,17,17,0,6.9,18.400000000000002,83.68,926,10.600000000000001 -2013,10,18,18,30,0,0,0,8.6,9.4,96.2,930,7.2 -2013,10,18,19,30,0,0,0,7.800000000000001,6.5,108.85000000000001,932,3.9000000000000004 -2013,10,18,20,30,0,0,0,7.1000000000000005,5.5,121.49000000000001,933,2.3000000000000003 -2013,10,18,21,30,0,0,0,6.300000000000001,4.800000000000001,133.81,934,1.4000000000000001 -2013,10,18,22,30,0,0,0,5.300000000000001,4.1000000000000005,145.22,934,0.8 -2013,10,18,23,30,0,0,0,4.4,3.5,154.27,935,0.6000000000000001 -2013,10,19,0,30,0,0,0,3.6,2.9000000000000004,157.70000000000002,935,0.5 -2013,10,19,1,30,0,0,0,2.9000000000000004,2.3000000000000003,153.24,934,0.4 -2013,10,19,2,30,0,0,0,2.6,1.9000000000000001,143.72,934,0.30000000000000004 -2013,10,19,3,30,0,0,0,2.6,1.6,132.13,934,0.1 -2013,10,19,4,30,0,0,0,2.6,1.4000000000000001,119.75,934,0 -2013,10,19,5,30,0,0,0,2.6,1.3,107.10000000000001,934,-0.2 -2013,10,19,6,30,0,0,0,2.8000000000000003,1.6,94.5,935,-0.30000000000000004 -2013,10,19,7,30,114,33,590,3.1,3.5,82.07000000000001,935,-0.4 -2013,10,19,8,30,333,52,835,3.1,6.9,70.38,935,-0.5 -2013,10,19,9,30,536,63,937,2.7,10.3,59.67,935,-1 -2013,10,19,10,30,694,69,987,2.4000000000000004,12.9,50.69,935,-1.4000000000000001 -2013,10,19,11,30,789,72,1006,2,15,44.56,934,-1.6 -2013,10,19,12,30,819,73,1013,1.5,16.6,42.56,933,-1.4000000000000001 -2013,10,19,13,30,778,71,1004,0.9,17.5,45.26,932,-1.1 -2013,10,19,14,30,666,67,971,0.5,18,51.910000000000004,931,-0.7000000000000001 -2013,10,19,15,30,501,61,914,0.6000000000000001,17.8,61.22,930,-0.4 -2013,10,19,16,30,295,50,800,0.8,16.7,72.13,930,0 -2013,10,19,17,30,82,27,509,0.8,15.700000000000001,83.91,930,4.3 -2013,10,19,18,30,0,0,0,1.2000000000000002,10.9,96.43,930,3.7 -2013,10,19,19,30,0,0,0,1.6,9.700000000000001,109.07000000000001,930,2.9000000000000004 -2013,10,19,20,30,0,0,0,2.1,9.200000000000001,121.71000000000001,930,2.3000000000000003 -2013,10,19,21,30,0,0,0,2.6,8.9,134.05,930,2 -2013,10,19,22,30,0,0,0,3.1,8.5,145.5,930,2 -2013,10,19,23,30,0,0,0,3.2,7.9,154.6,930,2.2 -2013,10,20,0,30,0,0,0,3.2,7.4,158.06,930,2.4000000000000004 -2013,10,20,1,30,0,0,0,3.1,6.9,153.53,929,2.6 -2013,10,20,2,30,0,0,0,3,6.5,143.93,929,2.8000000000000003 -2013,10,20,3,30,0,0,0,3,6.2,132.3,928,3 -2013,10,20,4,30,0,0,0,2.9000000000000004,6,119.9,928,3.3000000000000003 -2013,10,20,5,30,0,0,0,3,5.800000000000001,107.25,927,3.6 -2013,10,20,6,30,0,0,0,3.2,6,94.65,927,4 -2013,10,20,7,30,105,36,511,3.7,7.7,82.24,927,4.4 -2013,10,20,8,30,318,60,774,4.2,11.200000000000001,70.58,927,5.1000000000000005 -2013,10,20,9,30,515,74,880,5.1000000000000005,15.3,59.910000000000004,927,5.9 -2013,10,20,10,30,671,81,935,5.9,18.8,50.97,926,7 -2013,10,20,11,30,767,86,962,6.1000000000000005,21.400000000000002,44.89,925,8.4 -2013,10,20,12,30,796,81,977,6,23.3,42.92,924,9.1 -2013,10,20,13,30,755,82,962,5.9,24.400000000000002,45.61,923,9.3 -2013,10,20,14,30,645,79,923,5.7,24.700000000000003,52.230000000000004,922,9.3 -2013,10,20,15,30,483,67,873,5.300000000000001,24.3,61.51,922,9.200000000000001 -2013,10,20,16,30,279,55,739,4.2,22.6,72.39,922,9.4 -2013,10,20,17,30,72,30,417,3.5,21.200000000000003,84.15,922,10.700000000000001 -2013,10,20,18,30,0,0,0,4.2,17.7,96.65,922,10.8 -2013,10,20,19,30,0,0,0,5,16.8,109.29,923,11.100000000000001 -2013,10,20,20,30,0,0,0,5.300000000000001,15.8,121.94,923,11.3 -2013,10,20,21,30,0,0,0,5.1000000000000005,14.700000000000001,134.29,924,11.4 -2013,10,20,22,30,0,0,0,4.800000000000001,13.700000000000001,145.78,924,11.5 -2013,10,20,23,30,0,0,0,4.5,13,154.94,924,11.5 -2013,10,21,0,30,0,0,0,4,12.200000000000001,158.41,924,11.5 -2013,10,21,1,30,0,0,0,3.3000000000000003,11.5,153.81,925,11.5 -2013,10,21,2,30,0,0,0,2.8000000000000003,10.8,144.14000000000001,925,10.8 -2013,10,21,3,30,0,0,0,2.4000000000000004,10.100000000000001,132.47,925,10.100000000000001 -2013,10,21,4,30,0,0,0,2.2,9.600000000000001,120.05,926,9.600000000000001 -2013,10,21,5,30,0,0,0,2.3000000000000003,9,107.4,926,8.700000000000001 -2013,10,21,6,30,0,0,0,2.8000000000000003,8.700000000000001,94.81,926,7 -2013,10,21,7,30,101,35,502,4,9.700000000000001,82.41,927,5.6000000000000005 -2013,10,21,8,30,124,119,15,5.1000000000000005,12,70.78,928,5 -2013,10,21,9,30,191,182,18,5.6000000000000005,14.3,60.14,928,6 -2013,10,21,10,30,369,295,118,5.9,16.3,51.25,929,7.2 -2013,10,21,11,30,506,341,235,6.2,17.8,45.22,929,8 -2013,10,21,12,30,568,340,314,6.4,18.7,43.28,929,8.3 -2013,10,21,13,30,524,327,284,6.4,19,45.96,929,8.200000000000001 -2013,10,21,14,30,629,93,880,6.300000000000001,18.900000000000002,52.550000000000004,929,7.6000000000000005 -2013,10,21,15,30,471,75,836,5.9,18.400000000000002,61.79,929,6.9 -2013,10,21,16,30,271,58,713,5.1000000000000005,17.1,72.64,929,6 -2013,10,21,17,30,69,29,405,4.5,16.3,84.37,930,5.6000000000000005 -2013,10,21,18,30,0,0,0,2.1,12.100000000000001,96.87,931,5.800000000000001 -2013,10,21,19,30,0,0,0,1.8,10.8,109.5,932,5.6000000000000005 -2013,10,21,20,30,0,0,0,1.6,9.8,122.15,932,5.4 -2013,10,21,21,30,0,0,0,1.4000000000000001,8.9,134.53,933,5.2 -2013,10,21,22,30,0,0,0,1.2000000000000002,8.1,146.05,933,4.9 -2013,10,21,23,30,0,0,0,1.1,7.6000000000000005,155.27,933,4.7 -2013,10,22,0,30,0,0,0,1,7.300000000000001,158.77,933,4.4 -2013,10,22,1,30,0,0,0,1,6.9,154.09,933,4.1000000000000005 -2013,10,22,2,30,0,0,0,1,6.6000000000000005,144.35,933,3.7 -2013,10,22,3,30,0,0,0,1,6.2,132.63,933,3.2 -2013,10,22,4,30,0,0,0,1.1,5.9,120.2,933,2.8000000000000003 -2013,10,22,5,30,0,0,0,1.2000000000000002,5.6000000000000005,107.55,933,2.4000000000000004 -2013,10,22,6,30,0,0,0,1.3,5.800000000000001,94.96000000000001,934,2.1 -2013,10,22,7,30,102,30,560,2.1,8.4,82.58,934,2.3000000000000003 -2013,10,22,8,30,312,49,809,2.6,12.3,70.98,934,2.7 -2013,10,22,9,30,510,59,912,2.3000000000000003,16.1,60.38,934,2.6 -2013,10,22,10,30,664,64,965,2.3000000000000003,19.200000000000003,51.54,934,1.2000000000000002 -2013,10,22,11,30,760,67,990,2.3000000000000003,20.900000000000002,45.550000000000004,933,1.6 -2013,10,22,12,30,790,69,996,2.2,22.1,43.63,932,2 -2013,10,22,13,30,746,67,984,2.1,22.8,46.300000000000004,931,2.4000000000000004 -2013,10,22,14,30,640,63,955,2.1,23,52.86,931,2.6 -2013,10,22,15,30,477,56,898,2,22.6,62.07,931,2.8000000000000003 -2013,10,22,16,30,275,46,781,1.3,21,72.89,930,3.3000000000000003 -2013,10,22,17,30,69,24,477,0.8,19.700000000000003,84.60000000000001,930,9 -2013,10,22,18,30,0,0,0,1.3,15.700000000000001,97.09,931,5.4 -2013,10,22,19,30,0,0,0,1.5,14.100000000000001,109.71000000000001,931,5.2 -2013,10,22,20,30,0,0,0,1.7000000000000002,13.100000000000001,122.37,931,4.800000000000001 -2013,10,22,21,30,0,0,0,2,12.600000000000001,134.76,932,4.3 -2013,10,22,22,30,0,0,0,2.3000000000000003,12.100000000000001,146.32,932,3.8000000000000003 -2013,10,22,23,30,0,0,0,2.4000000000000004,11.600000000000001,155.59,932,3.4000000000000004 -2013,10,23,0,30,0,0,0,2.4000000000000004,11.100000000000001,159.12,932,3.1 -2013,10,23,1,30,0,0,0,2.4000000000000004,10.4,154.36,932,3 -2013,10,23,2,30,0,0,0,2.4000000000000004,9.8,144.55,932,3 -2013,10,23,3,30,0,0,0,2.4000000000000004,9.3,132.8,932,3 -2013,10,23,4,30,0,0,0,2.5,8.8,120.35000000000001,932,3.1 -2013,10,23,5,30,0,0,0,2.5,8.3,107.69,932,3.2 -2013,10,23,6,30,0,0,0,2.7,8.4,95.12,933,3.3000000000000003 -2013,10,23,7,30,99,29,551,3.2,10.100000000000001,82.75,933,3.5 -2013,10,23,8,30,309,48,807,3.2,13.3,71.18,933,3.8000000000000003 -2013,10,23,9,30,506,58,913,3,17.7,60.61,933,5 -2013,10,23,10,30,660,64,965,3.5,21.900000000000002,51.82,933,4.3 -2013,10,23,11,30,755,66,991,3.8000000000000003,24.200000000000003,45.88,932,3.4000000000000004 -2013,10,23,12,30,782,71,987,3.9000000000000004,25.200000000000003,43.980000000000004,932,3.8000000000000003 -2013,10,23,13,30,741,70,978,4,25.6,46.65,931,4.1000000000000005 -2013,10,23,14,30,635,67,948,4,25.5,53.18,930,4.3 -2013,10,23,15,30,472,61,884,3.8000000000000003,24.700000000000003,62.35,930,4.3 -2013,10,23,16,30,270,50,758,2.8000000000000003,22.400000000000002,73.14,929,4.9 -2013,10,23,17,30,65,25,435,1.9000000000000001,20.6,84.82000000000001,929,8.200000000000001 -2013,10,23,18,30,0,0,0,2.2,16.2,97.3,930,6.9 -2013,10,23,19,30,0,0,0,2.6,15.4,109.92,930,6.1000000000000005 -2013,10,23,20,30,0,0,0,3,14.600000000000001,122.58,931,5.6000000000000005 -2013,10,23,21,30,0,0,0,3.3000000000000003,13.700000000000001,134.98,931,5 -2013,10,23,22,30,0,0,0,3.4000000000000004,12.8,146.58,931,4.7 -2013,10,23,23,30,0,0,0,3.4000000000000004,12,155.91,932,4.6000000000000005 -2013,10,24,0,30,0,0,0,3.2,11.200000000000001,159.46,932,4.5 -2013,10,24,1,30,0,0,0,2.9000000000000004,10.5,154.64000000000001,932,4.4 -2013,10,24,2,30,0,0,0,2.5,9.700000000000001,144.75,932,4.3 -2013,10,24,3,30,0,0,0,2.1,9,132.97,932,4.2 -2013,10,24,4,30,0,0,0,1.7000000000000002,8.3,120.5,932,4.1000000000000005 -2013,10,24,5,30,0,0,0,1.4000000000000001,8,107.84,933,4.1000000000000005 -2013,10,24,6,30,0,0,0,1.2000000000000002,8.4,95.28,933,4.2 -2013,10,24,7,30,58,43,123,1.6,10.100000000000001,82.92,934,4.6000000000000005 -2013,10,24,8,30,302,56,772,1.8,12.700000000000001,71.38,935,5 -2013,10,24,9,30,499,69,884,1.3,15.8,60.85,935,5.5 -2013,10,24,10,30,654,76,942,1.1,19.5,52.1,935,5.5 -2013,10,24,11,30,750,79,969,0.9,22.200000000000003,46.2,935,5 -2013,10,24,12,30,777,77,978,0.7000000000000001,23.6,44.33,934,5 -2013,10,24,13,30,736,75,969,1,24.3,46.980000000000004,933,5 -2013,10,24,14,30,630,71,939,1.6,24.400000000000002,53.480000000000004,933,5.1000000000000005 -2013,10,24,15,30,466,65,871,2,23.8,62.620000000000005,932,5.1000000000000005 -2013,10,24,16,30,264,52,743,1.7000000000000002,21.700000000000003,73.38,932,5.4 -2013,10,24,17,30,61,26,409,1.2000000000000002,20,85.04,932,9.4 -2013,10,24,18,30,0,0,0,1.5,15.600000000000001,97.51,933,7.800000000000001 -2013,10,24,19,30,0,0,0,1.7000000000000002,14.600000000000001,110.12,934,7.5 -2013,10,24,20,30,0,0,0,1.7000000000000002,13.700000000000001,122.78,935,7.5 -2013,10,24,21,30,0,0,0,1.6,12.600000000000001,135.2,935,7.5 -2013,10,24,22,30,0,0,0,1.5,11.600000000000001,146.83,936,7.5 -2013,10,24,23,30,0,0,0,1.3,10.700000000000001,156.23,936,7.6000000000000005 -2013,10,25,0,30,0,0,0,1.3,9.9,159.8,936,7.800000000000001 -2013,10,25,1,30,0,0,0,1.3,9.1,154.91,936,8 -2013,10,25,2,30,0,0,0,1.4000000000000001,8.4,144.95000000000002,936,8.1 -2013,10,25,3,30,0,0,0,1.4000000000000001,7.800000000000001,133.13,937,7.800000000000001 -2013,10,25,4,30,0,0,0,1.7000000000000002,7.5,120.65,937,7.5 -2013,10,25,5,30,0,0,0,2,7.4,107.99000000000001,938,7.4 -2013,10,25,6,30,0,0,0,2.4000000000000004,7.5,95.43,938,7.5 -2013,10,25,7,30,47,42,41,2.8000000000000003,8.700000000000001,83.09,938,7.7 -2013,10,25,8,30,289,64,712,3.1,11.3,71.58,938,7.7 -2013,10,25,9,30,482,77,838,3.2,14.4,61.09,938,8.3 -2013,10,25,10,30,632,85,897,3.5,17.3,52.38,938,9.1 -2013,10,25,11,30,576,283,426,3.8000000000000003,19.8,46.52,937,9.5 -2013,10,25,12,30,634,254,534,3.9000000000000004,21.400000000000002,44.68,936,9 -2013,10,25,13,30,716,85,931,3.7,22.1,47.32,935,8.5 -2013,10,25,14,30,610,81,896,3.7,22.200000000000003,53.79,935,8.1 -2013,10,25,15,30,449,70,830,3.9000000000000004,21.700000000000003,62.89,934,7.9 -2013,10,25,16,30,251,56,691,3.3000000000000003,20.200000000000003,73.62,934,7.9 -2013,10,25,17,30,54,26,339,2.6,19.1,85.25,933,8.9 -2013,10,25,18,30,0,0,0,2.1,15.700000000000001,97.71000000000001,934,9.4 -2013,10,25,19,30,0,0,0,3,15.5,110.31,934,9.700000000000001 -2013,10,25,20,30,0,0,0,3.7,15.3,122.98,934,10.200000000000001 -2013,10,25,21,30,0,0,0,4,15.100000000000001,135.42000000000002,934,10.9 -2013,10,25,22,30,0,0,0,4,14.9,147.08,934,11.600000000000001 -2013,10,25,23,30,0,0,0,3.8000000000000003,14.9,156.54,933,12.200000000000001 -2013,10,26,0,30,0,0,0,3.7,14.700000000000001,160.14000000000001,933,12.8 -2013,10,26,1,30,0,0,0,3.7,14.4,155.17000000000002,933,13.4 -2013,10,26,2,30,0,0,0,3.4000000000000004,14,145.15,932,13.9 -2013,10,26,3,30,0,0,0,3,13.600000000000001,133.3,932,13.600000000000001 -2013,10,26,4,30,0,0,0,2.8000000000000003,13.5,120.8,932,13.5 -2013,10,26,5,30,0,0,0,3,13.600000000000001,108.14,932,13.600000000000001 -2013,10,26,6,30,0,0,0,3.4000000000000004,13.9,95.59,932,13.9 -2013,10,26,7,30,74,44,258,3.9000000000000004,14.9,83.27,933,14.600000000000001 -2013,10,26,8,30,98,98,0,4.5,16.7,71.78,933,15 -2013,10,26,9,30,454,103,731,5.2,18.900000000000002,61.32,933,15.200000000000001 -2013,10,26,10,30,280,254,43,5.5,20.8,52.660000000000004,932,14.8 -2013,10,26,11,30,117,117,0,5.2,22.200000000000003,46.84,932,14.3 -2013,10,26,12,30,728,114,868,4.800000000000001,23.1,45.02,931,14 -2013,10,26,13,30,688,112,855,4.3,23.700000000000003,47.65,930,13.5 -2013,10,26,14,30,586,104,821,3.8000000000000003,23.900000000000002,54.08,930,13 -2013,10,26,15,30,431,89,757,3.2,23.8,63.15,929,12.4 -2013,10,26,16,30,100,98,7,1.9000000000000001,22.5,73.85000000000001,930,11.9 -2013,10,26,17,30,50,28,278,1,21.400000000000002,85.46000000000001,930,14.200000000000001 -2013,10,26,18,30,0,0,0,0.8,18.900000000000002,97.91,930,12.200000000000001 -2013,10,26,19,30,0,0,0,0.9,17.8,110.5,931,11.700000000000001 -2013,10,26,20,30,0,0,0,1.7000000000000002,16.6,123.17,931,11.600000000000001 -2013,10,26,21,30,0,0,0,2.7,15.3,135.62,932,11.4 -2013,10,26,22,30,0,0,0,3.5,13.9,147.32,932,11.200000000000001 -2013,10,26,23,30,0,0,0,3.9000000000000004,12.700000000000001,156.84,932,11.4 -2013,10,27,0,30,0,0,0,4,11.8,160.48,932,11.600000000000001 -2013,10,27,1,30,0,0,0,3.9000000000000004,11.3,155.44,932,11.3 -2013,10,27,2,30,0,0,0,3.7,10.8,145.35,932,10.8 -2013,10,27,3,30,0,0,0,3.3000000000000003,10.3,133.46,932,10.200000000000001 -2013,10,27,4,30,0,0,0,2.7,9.700000000000001,120.95,932,9.4 -2013,10,27,5,30,0,0,0,2.4000000000000004,8.9,108.29,932,8.4 -2013,10,27,6,30,0,0,0,2.4000000000000004,8.4,95.75,932,7.1000000000000005 -2013,10,27,7,30,83,32,444,2.7,9.1,83.44,932,5.7 -2013,10,27,8,30,88,88,0,2.8000000000000003,11.600000000000001,71.98,933,4.5 -2013,10,27,9,30,308,209,207,2.5,14.4,61.56,932,4.4 -2013,10,27,10,30,409,282,211,2.1,16.6,52.94,932,4.9 -2013,10,27,11,30,733,76,966,1.7000000000000002,18.3,47.160000000000004,931,4.9 -2013,10,27,12,30,497,343,219,1.3,19.6,45.35,930,5.1000000000000005 -2013,10,27,13,30,719,78,957,1.1,20.400000000000002,47.97,929,5.300000000000001 -2013,10,27,14,30,613,72,928,1.2000000000000002,20.8,54.38,928,5.4 -2013,10,27,15,30,452,65,865,1.2000000000000002,20.6,63.410000000000004,928,5.300000000000001 -2013,10,27,16,30,252,51,735,1.1,19.3,74.08,928,5.2 -2013,10,27,17,30,53,23,384,0.8,18.2,85.66,928,8.3 -2013,10,27,18,30,0,0,0,1.2000000000000002,14.100000000000001,98.10000000000001,928,7.1000000000000005 -2013,10,27,19,30,0,0,0,1.4000000000000001,13,110.69,928,7 -2013,10,27,20,30,0,0,0,1.8,12.700000000000001,123.36,928,7.300000000000001 -2013,10,27,21,30,0,0,0,2.4000000000000004,12.8,135.83,928,8.1 -2013,10,27,22,30,0,0,0,2.7,12.600000000000001,147.56,928,9 -2013,10,27,23,30,0,0,0,2.8000000000000003,12,157.14000000000001,928,10 -2013,10,28,0,30,0,0,0,2.9000000000000004,11.700000000000001,160.82,928,10.9 -2013,10,28,1,30,0,0,0,3,11.8,155.70000000000002,928,11.8 -2013,10,28,2,30,0,0,0,3.1,12.200000000000001,145.55,927,12.200000000000001 -2013,10,28,3,30,0,0,0,2.9000000000000004,12.5,133.62,927,12.5 -2013,10,28,4,30,0,0,0,2.9000000000000004,12.8,121.10000000000001,927,12.8 -2013,10,28,5,30,0,0,0,2.9000000000000004,13.100000000000001,108.44,927,13.100000000000001 -2013,10,28,6,30,0,0,0,3,13.5,95.91,928,13.5 -2013,10,28,7,30,28,28,0,3.4000000000000004,14.5,83.62,928,14.3 -2013,10,28,8,30,263,69,633,4.4,16.5,72.19,928,15 -2013,10,28,9,30,312,206,224,5.7,19.400000000000002,61.800000000000004,928,16.2 -2013,10,28,10,30,335,277,98,6.4,21.900000000000002,53.22,928,16.7 -2013,10,28,11,30,562,287,407,6.300000000000001,23.3,47.480000000000004,927,16.400000000000002 -2013,10,28,12,30,582,300,404,6.1000000000000005,24.3,45.69,926,15.9 -2013,10,28,13,30,504,308,296,6,24.900000000000002,48.300000000000004,926,15.5 -2013,10,28,14,30,388,269,206,5.800000000000001,24.900000000000002,54.67,925,15 -2013,10,28,15,30,238,193,101,5.5,24.400000000000002,63.67,925,14.600000000000001 -2013,10,28,16,30,149,106,156,5.2,23.3,74.31,926,14.4 -2013,10,28,17,30,29,25,59,4.9,22.6,85.86,926,14.3 -2013,10,28,18,30,0,0,0,4.6000000000000005,20.400000000000002,98.29,927,14.3 -2013,10,28,19,30,0,0,0,4.7,19.5,110.87,927,14.5 -2013,10,28,20,30,0,0,0,4.7,18.8,123.54,928,14.8 -2013,10,28,21,30,0,0,0,4.6000000000000005,18.3,136.02,928,15.200000000000001 -2013,10,28,22,30,0,0,0,4.5,17.900000000000002,147.79,928,15.700000000000001 -2013,10,28,23,30,0,0,0,4.5,17.5,157.44,928,16.1 -2013,10,29,0,30,0,0,0,4.6000000000000005,17.3,161.15,927,16.3 -2013,10,29,1,30,0,0,0,4.6000000000000005,17,155.96,928,16.5 -2013,10,29,2,30,0,0,0,4.4,16.900000000000002,145.74,928,16.6 -2013,10,29,3,30,0,0,0,4.1000000000000005,16.900000000000002,133.79,928,16.8 -2013,10,29,4,30,0,0,0,3.8000000000000003,16.900000000000002,121.25,928,16.900000000000002 -2013,10,29,5,30,0,0,0,3.4000000000000004,16.900000000000002,108.60000000000001,928,16.900000000000002 -2013,10,29,6,30,0,0,0,3.3000000000000003,17,96.07000000000001,928,17 -2013,10,29,7,30,37,36,7,3.5,17.7,83.8,928,17.5 -2013,10,29,8,30,118,112,21,4.2,19.200000000000003,72.39,929,17.900000000000002 -2013,10,29,9,30,268,208,129,5,21,62.04,929,18.400000000000002 -2013,10,29,10,30,433,269,275,5.4,22.6,53.5,928,18.900000000000002 -2013,10,29,11,30,529,302,338,5.2,23.8,47.79,928,19 -2013,10,29,12,30,583,290,422,4.9,24.8,46.02,927,18.8 -2013,10,29,13,30,543,280,396,4.5,25.400000000000002,48.620000000000005,926,18.6 -2013,10,29,14,30,463,229,408,4.1000000000000005,25.400000000000002,54.96,926,18.3 -2013,10,29,15,30,287,188,224,3.5,25,63.92,926,18.1 -2013,10,29,16,30,153,103,184,2.7,23.8,74.53,926,18.3 -2013,10,29,17,30,23,23,0,2.2,22.900000000000002,86.05,926,18.5 -2013,10,29,18,30,0,0,0,3.3000000000000003,21.400000000000002,98.48,927,18.400000000000002 -2013,10,29,19,30,0,0,0,4.2,21,111.05,927,18.400000000000002 -2013,10,29,20,30,0,0,0,4.5,20.5,123.72,927,18.400000000000002 -2013,10,29,21,30,0,0,0,4.4,19.8,136.21,927,18.3 -2013,10,29,22,30,0,0,0,4.1000000000000005,19,148.02,927,18.2 -2013,10,29,23,30,0,0,0,3.9000000000000004,18.5,157.72,926,18.2 -2013,10,30,0,30,0,0,0,3.9000000000000004,18.2,161.47,926,18.2 -2013,10,30,1,30,0,0,0,3.8000000000000003,18.1,156.22,926,18.1 -2013,10,30,2,30,0,0,0,3.9000000000000004,18.2,145.93,925,18.2 -2013,10,30,3,30,0,0,0,4.3,18.400000000000002,133.95,925,18.400000000000002 -2013,10,30,4,30,0,0,0,4.800000000000001,18.6,121.4,925,18.6 -2013,10,30,5,30,0,0,0,5,18.7,108.75,925,18.6 -2013,10,30,6,30,0,0,0,4.800000000000001,18.8,96.24000000000001,925,18.6 -2013,10,30,7,30,22,22,0,5,19.400000000000002,83.98,926,18.6 -2013,10,30,8,30,27,27,0,5.7,20.700000000000003,72.60000000000001,926,18.7 -2013,10,30,9,30,126,126,0,6.1000000000000005,22.3,62.28,926,18.7 -2013,10,30,10,30,173,171,4,5.9,23.900000000000002,53.77,925,18.5 -2013,10,30,11,30,95,95,0,5.4,25.400000000000002,48.1,925,18.1 -2013,10,30,12,30,119,119,0,5,26.1,46.35,924,17.5 -2013,10,30,13,30,137,137,0,4.5,26.3,48.93,923,16.7 -2013,10,30,14,30,114,114,0,4.3,26.3,55.24,922,16 -2013,10,30,15,30,85,85,0,4.1000000000000005,26,64.17,922,15.5 -2013,10,30,16,30,123,103,74,3.3000000000000003,24.700000000000003,74.75,922,15.100000000000001 -2013,10,30,17,30,12,12,0,2.7,23.700000000000003,86.24,922,15.9 -2013,10,30,18,30,0,0,0,2.9000000000000004,21.5,98.65,922,16 -2013,10,30,19,30,0,0,0,3.6,21.1,111.22,922,16.2 -2013,10,30,20,30,0,0,0,3.9000000000000004,20.5,123.89,922,16.5 -2013,10,30,21,30,0,0,0,4.1000000000000005,19.900000000000002,136.4,922,16.5 -2013,10,30,22,30,0,0,0,4.5,19.3,148.23,921,16.2 -2013,10,30,23,30,0,0,0,4.800000000000001,18.7,158.01,921,15.8 -2013,10,31,0,30,0,0,0,5.1000000000000005,18.3,161.8,921,15.5 -2013,10,31,1,30,0,0,0,5.2,18,156.47,921,15.200000000000001 -2013,10,31,2,30,0,0,0,4.800000000000001,17.400000000000002,146.13,921,14.9 -2013,10,31,3,30,0,0,0,4.5,16.3,134.11,922,13.9 -2013,10,31,4,30,0,0,0,4.2,14.700000000000001,121.55,922,11.5 -2013,10,31,5,30,0,0,0,4,12.9,108.9,923,8.200000000000001 -2013,10,31,6,30,0,0,0,4.1000000000000005,11.600000000000001,96.4,924,5.4 -2013,10,31,7,30,83,26,560,4.7,12,84.15,924,3.5 -2013,10,31,8,30,292,46,832,5.800000000000001,14,72.8,925,2.1 -2013,10,31,9,30,491,57,940,6.7,16.400000000000002,62.51,925,-0.30000000000000004 -2013,10,31,10,30,646,64,992,7,18.400000000000002,54.050000000000004,925,-1.3 -2013,10,31,11,30,738,68,1009,6.800000000000001,19.900000000000002,48.410000000000004,924,-1.8 -2013,10,31,12,30,766,69,1016,6.300000000000001,21,46.67,924,-2 -2013,10,31,13,30,724,67,1006,5.6000000000000005,21.6,49.24,923,-2.1 -2013,10,31,14,30,615,63,976,4.7,21.700000000000003,55.52,923,-2.3000000000000003 -2013,10,31,15,30,451,55,915,3.6,21.3,64.41,923,-2.5 -2013,10,31,16,30,247,44,784,2,19.400000000000002,74.96000000000001,923,-2.5 -2013,10,31,17,30,46,19,420,1,17.8,86.42,923,4.1000000000000005 -2013,10,31,18,30,0,0,0,0.7000000000000001,15.600000000000001,98.83,924,1.2000000000000002 -2013,10,31,19,30,0,0,0,0.9,14.4,111.39,924,0.30000000000000004 -2013,10,31,20,30,0,0,0,1.2000000000000002,12.700000000000001,124.06,924,0.5 -2013,10,31,21,30,0,0,0,1.4000000000000001,11.3,136.58,924,0.7000000000000001 -2013,10,31,22,30,0,0,0,1.6,10.4,148.44,923,0.4 -2013,10,31,23,30,0,0,0,1.9000000000000001,10,158.28,923,0 -2013,11,1,0,30,0,0,0,2.5,9.8,162.12,923,-0.4 -2013,11,1,1,30,0,0,0,3,9.5,156.73,923,-0.6000000000000001 -2013,11,1,2,30,0,0,0,3.4000000000000004,8.9,146.32,922,-0.6000000000000001 -2013,11,1,3,30,0,0,0,3.4000000000000004,8.3,134.27,922,-0.5 -2013,11,1,4,30,0,0,0,3.4000000000000004,7.9,121.71000000000001,922,-0.6000000000000001 -2013,11,1,5,30,0,0,0,3.4000000000000004,7.6000000000000005,109.05,923,-0.8 -2013,11,1,6,30,0,0,0,3.5,7.5,96.56,923,-0.9 -2013,11,1,7,30,77,25,527,4,8.8,84.32000000000001,924,-1 -2013,11,1,8,30,283,45,815,4.7,11.600000000000001,73,925,-0.9 -2013,11,1,9,30,479,56,925,4.9,14.9,62.75,925,-0.8 -2013,11,1,10,30,633,63,977,5.1000000000000005,17.7,54.32,925,-0.6000000000000001 -2013,11,1,11,30,729,68,1001,5.5,19.900000000000002,48.72,925,-0.4 -2013,11,1,12,30,753,71,999,6.1000000000000005,21.3,46.99,925,-0.4 -2013,11,1,13,30,711,71,987,6.6000000000000005,21.8,49.54,925,-0.30000000000000004 -2013,11,1,14,30,601,66,951,6.7,21.6,55.79,926,-0.5 -2013,11,1,15,30,438,59,886,6.300000000000001,20.900000000000002,64.65,927,-0.8 -2013,11,1,16,30,238,45,753,5.2,19.200000000000003,75.17,927,-0.9 -2013,11,1,17,30,42,19,382,4.4,18,86.60000000000001,928,-0.1 -2013,11,1,18,30,0,0,0,3.2,14,99,930,1 -2013,11,1,19,30,0,0,0,3.1,12.9,111.55,931,1.3 -2013,11,1,20,30,0,0,0,2.9000000000000004,11.8,124.22,932,1.7000000000000002 -2013,11,1,21,30,0,0,0,2.6,10.700000000000001,136.75,933,1.8 -2013,11,1,22,30,0,0,0,2.3000000000000003,9.600000000000001,148.65,934,1.6 -2013,11,1,23,30,0,0,0,2,8.700000000000001,158.55,934,1.2000000000000002 -2013,11,2,0,30,0,0,0,1.9000000000000001,7.9,162.43,935,0.8 -2013,11,2,1,30,0,0,0,1.9000000000000001,7.300000000000001,156.98,935,0.5 -2013,11,2,2,30,0,0,0,2,6.800000000000001,146.51,935,0.2 -2013,11,2,3,30,0,0,0,2,6.300000000000001,134.43,936,0.1 -2013,11,2,4,30,0,0,0,1.9000000000000001,5.7,121.86,936,0 -2013,11,2,5,30,0,0,0,1.8,5.2,109.21000000000001,936,-0.1 -2013,11,2,6,30,0,0,0,1.6,5,96.72,937,-0.30000000000000004 -2013,11,2,7,30,74,26,505,2.1,6.7,84.5,938,-0.30000000000000004 -2013,11,2,8,30,279,47,805,2.6,10.100000000000001,73.21000000000001,938,-0.30000000000000004 -2013,11,2,9,30,475,57,919,2.8000000000000003,13.700000000000001,62.99,938,-1.1 -2013,11,2,10,30,625,63,969,2.7,16.400000000000002,54.59,938,-3.3000000000000003 -2013,11,2,11,30,720,67,995,2.1,18,49.02,938,-3.5 -2013,11,2,12,30,748,69,1000,1.7000000000000002,19,47.300000000000004,937,-2.9000000000000004 -2013,11,2,13,30,706,67,991,1.4000000000000001,19.700000000000003,49.84,936,-2.3000000000000003 -2013,11,2,14,30,599,63,960,1.1,19.8,56.06,935,-1.9000000000000001 -2013,11,2,15,30,437,59,890,0.8,19.400000000000002,64.88,934,-1.7000000000000002 -2013,11,2,16,30,236,45,754,0.7000000000000001,17.6,75.37,934,-1.6 -2013,11,2,17,30,40,19,374,0.7000000000000001,16.3,86.77,934,3.8000000000000003 -2013,11,2,18,30,0,0,0,1.3,11.8,99.16,934,1.9000000000000001 -2013,11,2,19,30,0,0,0,1.6,10.700000000000001,111.7,934,1.2000000000000002 -2013,11,2,20,30,0,0,0,2,10.100000000000001,124.37,934,0.5 -2013,11,2,21,30,0,0,0,2.4000000000000004,9.600000000000001,136.91,934,0.2 -2013,11,2,22,30,0,0,0,2.8000000000000003,9.1,148.85,934,0.2 -2013,11,2,23,30,0,0,0,3,8.5,158.81,933,0.5 -2013,11,3,0,30,0,0,0,3,7.9,162.75,933,0.8 -2013,11,3,1,30,0,0,0,3.1,7.300000000000001,157.22,933,1.2000000000000002 -2013,11,3,2,30,0,0,0,3.3000000000000003,6.9,146.69,933,1.5 -2013,11,3,3,30,0,0,0,3.7,6.5,134.59,932,1.7000000000000002 -2013,11,3,4,30,0,0,0,3.9000000000000004,6.1000000000000005,122.01,931,1.8 -2013,11,3,5,30,0,0,0,3.6,5.5,109.36,932,1.8 -2013,11,3,6,30,0,0,0,3.7,5.5,96.89,933,1.8 -2013,11,3,7,30,70,25,478,4.3,6.5,84.68,932,1.7000000000000002 -2013,11,3,8,30,272,48,784,4.7,8,73.41,932,1.6 -2013,11,3,9,30,342,171,379,5.5,10,63.22,931,1.4000000000000001 -2013,11,3,10,30,451,241,365,6.4,12.200000000000001,54.86,931,0.30000000000000004 -2013,11,3,11,30,232,222,14,6.7,14.3,49.32,929,-0.30000000000000004 -2013,11,3,12,30,251,239,17,6.9,16.1,47.62,928,-0.2 -2013,11,3,13,30,208,202,10,6.9,17.5,50.14,926,0 -2013,11,3,14,30,75,75,0,6.800000000000001,18.3,56.32,926,0.30000000000000004 -2013,11,3,15,30,102,102,0,6.6000000000000005,18,65.11,925,0.7000000000000001 -2013,11,3,16,30,124,98,104,5.6000000000000005,16.5,75.57000000000001,926,1.3 -2013,11,3,17,30,15,15,0,4.800000000000001,15.5,86.94,926,2.3000000000000003 -2013,11,3,18,30,0,0,0,4.800000000000001,12.600000000000001,99.32000000000001,926,3.3000000000000003 -2013,11,3,19,30,0,0,0,5.300000000000001,11.4,111.85000000000001,926,4.2 -2013,11,3,20,30,0,0,0,5.4,10.3,124.52,927,5.5 -2013,11,3,21,30,0,0,0,5.1000000000000005,9.700000000000001,137.07,927,6.4 -2013,11,3,22,30,0,0,0,4.9,9.5,149.04,926,6.6000000000000005 -2013,11,3,23,30,0,0,0,4.800000000000001,9.600000000000001,159.07,926,6.1000000000000005 -2013,11,4,0,30,0,0,0,4.6000000000000005,9.8,163.06,926,5.2 -2013,11,4,1,30,0,0,0,4.2,9.8,157.47,925,4.3 -2013,11,4,2,30,0,0,0,4,9.8,146.88,925,3.9000000000000004 -2013,11,4,3,30,0,0,0,3.8000000000000003,9.8,134.75,925,3.9000000000000004 -2013,11,4,4,30,0,0,0,3.7,9.9,122.16,925,4.3 -2013,11,4,5,30,0,0,0,3.5,9.9,109.51,925,4.9 -2013,11,4,6,30,0,0,0,3.7,10.100000000000001,97.05,926,5.5 -2013,11,4,7,30,38,31,74,4.2,10.9,84.86,926,6.300000000000001 -2013,11,4,8,30,95,95,0,4.800000000000001,12.700000000000001,73.62,926,7.2 -2013,11,4,9,30,148,147,3,5.2,15.200000000000001,63.46,927,7.7 -2013,11,4,10,30,462,229,408,5.2,17.7,55.13,927,8.1 -2013,11,4,11,30,544,262,436,5,19.8,49.620000000000005,926,8.9 -2013,11,4,12,30,704,78,933,4.9,21.200000000000003,47.92,926,9.700000000000001 -2013,11,4,13,30,663,78,918,4.9,21.8,50.43,925,10.200000000000001 -2013,11,4,14,30,559,75,880,5.1000000000000005,21.5,56.58,924,10.4 -2013,11,4,15,30,403,65,810,5.4,20.400000000000002,65.33,924,10.5 -2013,11,4,16,30,151,90,247,5.5,18.400000000000002,75.76,925,10.700000000000001 -2013,11,4,17,30,12,12,0,5.4,17.2,87.11,925,10.9 -2013,11,4,18,30,0,0,0,4.3,14.200000000000001,99.48,926,11.4 -2013,11,4,19,30,0,0,0,4,13.3,112,927,11.700000000000001 -2013,11,4,20,30,0,0,0,3.7,12.8,124.66,927,12 -2013,11,4,21,30,0,0,0,3.1,12.4,137.23,928,12.200000000000001 -2013,11,4,22,30,0,0,0,2.6,12.200000000000001,149.22,927,12.200000000000001 -2013,11,4,23,30,0,0,0,2.5,12.200000000000001,159.32,927,12.200000000000001 -2013,11,5,0,30,0,0,0,2.5,12.4,163.36,927,12.4 -2013,11,5,1,30,0,0,0,2.7,12.5,157.71,926,12.5 -2013,11,5,2,30,0,0,0,2.7,12.600000000000001,147.06,926,12.600000000000001 -2013,11,5,3,30,0,0,0,2.7,12.600000000000001,134.91,926,12.600000000000001 -2013,11,5,4,30,0,0,0,2.7,12.700000000000001,122.31,926,12.700000000000001 -2013,11,5,5,30,0,0,0,3,12.9,109.67,926,12.9 -2013,11,5,6,30,0,0,0,3.4000000000000004,13.3,97.22,926,13.3 -2013,11,5,7,30,55,30,295,4,14.3,85.04,927,14.3 -2013,11,5,8,30,241,62,643,4.800000000000001,16.1,73.82000000000001,927,15 -2013,11,5,9,30,226,190,80,5.6000000000000005,18.2,63.690000000000005,927,15.600000000000001 -2013,11,5,10,30,418,252,293,6.300000000000001,20.1,55.4,927,15.600000000000001 -2013,11,5,11,30,350,298,80,6.5,21.6,49.92,926,15.600000000000001 -2013,11,5,12,30,208,202,9,6.300000000000001,22.400000000000002,48.22,925,15.5 -2013,11,5,13,30,294,267,42,6,22.900000000000002,50.71,924,15.4 -2013,11,5,14,30,157,156,1,5.5,23.1,56.83,923,15.200000000000001 -2013,11,5,15,30,81,81,0,4.800000000000001,22.8,65.55,923,15 -2013,11,5,16,30,130,95,144,3.6,21.700000000000003,75.95,924,14.700000000000001 -2013,11,5,17,30,26,20,121,2.7,20.8,87.27,924,14.8 -2013,11,5,18,30,0,0,0,2.4000000000000004,17.900000000000002,99.62,925,14.4 -2013,11,5,19,30,0,0,0,2.8000000000000003,17.1,112.14,926,14 -2013,11,5,20,30,0,0,0,3.1,16.5,124.8,926,13.700000000000001 -2013,11,5,21,30,0,0,0,3.2,15.8,137.37,927,13.5 -2013,11,5,22,30,0,0,0,2.7,15,149.4,928,13.3 -2013,11,5,23,30,0,0,0,2.9000000000000004,14,159.57,929,12.9 -2013,11,6,0,30,0,0,0,4.3,12.4,163.66,930,11.700000000000001 -2013,11,6,1,30,0,0,0,5.300000000000001,10.4,157.95000000000002,931,9.4 -2013,11,6,2,30,0,0,0,5.6000000000000005,8.3,147.25,932,6.5 -2013,11,6,3,30,0,0,0,5.5,7.1000000000000005,135.07,932,3.9000000000000004 -2013,11,6,4,30,0,0,0,5.4,6.6000000000000005,122.46000000000001,933,2.3000000000000003 -2013,11,6,5,30,0,0,0,5.300000000000001,6.300000000000001,109.82000000000001,934,1.3 -2013,11,6,6,30,0,0,0,5.1000000000000005,6,97.38,936,0.5 -2013,11,6,7,30,56,27,348,5.1000000000000005,6.1000000000000005,85.21000000000001,937,0.2 -2013,11,6,8,30,247,54,700,5.4,6.9,74.03,937,-0.30000000000000004 -2013,11,6,9,30,373,126,561,5.5,8.6,63.93,938,-1.3 -2013,11,6,10,30,595,69,931,5.5,10.8,55.67,937,-2.5 -2013,11,6,11,30,693,71,972,5.5,13,50.21,937,-3.8000000000000003 -2013,11,6,12,30,726,70,990,5.4,14.8,48.52,936,-4.7 -2013,11,6,13,30,692,67,992,5.300000000000001,15.9,50.99,936,-5 -2013,11,6,14,30,593,63,975,5.1000000000000005,16.1,57.08,936,-5.2 -2013,11,6,15,30,433,55,921,4.7,15.600000000000001,65.76,936,-5.4 -2013,11,6,16,30,230,42,784,3.4000000000000004,13.600000000000001,76.13,936,-5.6000000000000005 -2013,11,6,17,30,33,16,375,2.4000000000000004,12.100000000000001,87.41,937,-3.5 -2013,11,6,18,30,0,0,0,1.6,7.6000000000000005,99.77,937,-2.3000000000000003 -2013,11,6,19,30,0,0,0,1.5,6.6000000000000005,112.27,938,-2.5 -2013,11,6,20,30,0,0,0,1.5,5.7,124.93,939,-2.7 -2013,11,6,21,30,0,0,0,1.4000000000000001,4.9,137.51,939,-2.8000000000000003 -2013,11,6,22,30,0,0,0,1.3,4.2,149.57,939,-2.9000000000000004 -2013,11,6,23,30,0,0,0,1.2000000000000002,3.6,159.8,940,-3.1 -2013,11,7,0,30,0,0,0,1.1,3.1,163.96,940,-3.3000000000000003 -2013,11,7,1,30,0,0,0,1.1,2.7,158.18,940,-3.5 -2013,11,7,2,30,0,0,0,1,2.5,147.43,940,-3.7 -2013,11,7,3,30,0,0,0,0.9,2.4000000000000004,135.23,941,-4 -2013,11,7,4,30,0,0,0,0.9,2.2,122.62,941,-4.3 -2013,11,7,5,30,0,0,0,1,1.7000000000000002,109.98,942,-4.5 -2013,11,7,6,30,0,0,0,1.1,1.4000000000000001,97.55,943,-4.5 -2013,11,7,7,30,39,28,134,1.5,3.3000000000000003,85.39,943,-4.2 -2013,11,7,8,30,194,86,397,1.9000000000000001,6.800000000000001,74.23,943,-3.5 -2013,11,7,9,30,459,52,934,1.8,10.600000000000001,64.16,943,-3.8000000000000003 -2013,11,7,10,30,613,60,989,2.1,13.9,55.93,943,-5.9 -2013,11,7,11,30,621,142,754,2.4000000000000004,15.5,50.49,942,-5.9 -2013,11,7,12,30,598,212,586,2.4000000000000004,16.400000000000002,48.82,941,-5.5 -2013,11,7,13,30,520,252,430,2.3000000000000003,16.7,51.27,941,-5.2 -2013,11,7,14,30,483,147,624,2.3000000000000003,16.5,57.32,940,-4.9 -2013,11,7,15,30,262,171,224,2,15.600000000000001,65.97,940,-4.5 -2013,11,7,16,30,110,92,78,1.4000000000000001,13.4,76.31,940,-2 -2013,11,7,17,30,17,17,0,1.1,11.8,87.56,940,1.1 -2013,11,7,18,30,0,0,0,1.5,9.4,99.91,940,0.1 -2013,11,7,19,30,0,0,0,1.6,8.700000000000001,112.4,940,-0.2 -2013,11,7,20,30,0,0,0,1.7000000000000002,8.200000000000001,125.06,940,-0.30000000000000004 -2013,11,7,21,30,0,0,0,1.7000000000000002,7.800000000000001,137.65,940,-0.4 -2013,11,7,22,30,0,0,0,1.7000000000000002,7.300000000000001,149.73,940,-0.4 -2013,11,7,23,30,0,0,0,1.8,7,160.03,940,-0.5 -2013,11,8,0,30,0,0,0,1.9000000000000001,6.7,164.25,939,-0.6000000000000001 -2013,11,8,1,30,0,0,0,2,6.5,158.42000000000002,939,-0.6000000000000001 -2013,11,8,2,30,0,0,0,2.3000000000000003,6.4,147.61,939,-0.6000000000000001 -2013,11,8,3,30,0,0,0,2.4000000000000004,6.300000000000001,135.38,938,-0.5 -2013,11,8,4,30,0,0,0,2.5,6.2,122.77,938,-0.4 -2013,11,8,5,30,0,0,0,2.5,6.1000000000000005,110.13,937,-0.2 -2013,11,8,6,30,0,0,0,2.8000000000000003,6.300000000000001,97.72,937,0 -2013,11,8,7,30,55,23,421,3.3000000000000003,7.1000000000000005,85.57000000000001,937,0.2 -2013,11,8,8,30,247,47,744,3.7,8.6,74.44,937,0.5 -2013,11,8,9,30,300,177,284,4.5,10.5,64.39,937,0.8 -2013,11,8,10,30,246,226,36,5.5,12.100000000000001,56.19,937,-0.4 -2013,11,8,11,30,326,284,66,5.9,13.200000000000001,50.78,936,-1.9000000000000001 -2013,11,8,12,30,335,295,62,6.2,13.8,49.1,935,-2.8000000000000003 -2013,11,8,13,30,174,172,4,6.300000000000001,14,51.54,934,-3.1 -2013,11,8,14,30,293,242,94,6.300000000000001,13.8,57.56,933,-2.8000000000000003 -2013,11,8,15,30,91,91,0,5.800000000000001,12.9,66.17,932,-1.7000000000000002 -2013,11,8,16,30,50,50,0,5,11.600000000000001,76.48,932,-0.1 -2013,11,8,17,30,7,7,0,4.5,10.8,87.7,932,1.3 -2013,11,8,18,30,0,0,0,4.5,9,100.04,932,2.3000000000000003 -2013,11,8,19,30,0,0,0,4.6000000000000005,8.4,112.52,932,3 -2013,11,8,20,30,0,0,0,4.6000000000000005,8,125.18,931,3.3000000000000003 -2013,11,8,21,30,0,0,0,4.7,7.7,137.78,931,3.4000000000000004 -2013,11,8,22,30,0,0,0,4.6000000000000005,7.5,149.89000000000001,931,3.3000000000000003 -2013,11,8,23,30,0,0,0,4.4,7.300000000000001,160.25,931,3.2 -2013,11,9,0,30,0,0,0,4.2,6.9,164.54,930,3.1 -2013,11,9,1,30,0,0,0,3.9000000000000004,6.5,158.65,930,3 -2013,11,9,2,30,0,0,0,3.6,6,147.79,929,3 -2013,11,9,3,30,0,0,0,3.4000000000000004,5.6000000000000005,135.54,929,2.9000000000000004 -2013,11,9,4,30,0,0,0,3.3000000000000003,5.2,122.92,929,3 -2013,11,9,5,30,0,0,0,3.2,4.9,110.29,929,3.1 -2013,11,9,6,30,0,0,0,3.3000000000000003,4.800000000000001,97.88,930,3.3000000000000003 -2013,11,9,7,30,51,24,369,3.7,5.7,85.74,930,3.5 -2013,11,9,8,30,242,52,719,4.1000000000000005,8.200000000000001,74.64,930,4.2 -2013,11,9,9,30,434,65,861,4.1000000000000005,11.5,64.62,931,5.7 -2013,11,9,10,30,584,71,928,3.8000000000000003,14.700000000000001,56.45,930,6.800000000000001 -2013,11,9,11,30,677,74,959,3.6,17.6,51.06,930,7.7 -2013,11,9,12,30,703,72,969,3.5,19.900000000000002,49.39,929,8.200000000000001 -2013,11,9,13,30,663,71,958,3.4000000000000004,21.400000000000002,51.800000000000004,929,8.4 -2013,11,9,14,30,558,67,922,3.3000000000000003,22.200000000000003,57.79,928,8 -2013,11,9,15,30,400,60,849,2.9000000000000004,22.1,66.37,928,7.6000000000000005 -2013,11,9,16,30,206,46,694,2,19.8,76.65,929,8 -2013,11,9,17,30,25,15,262,1.3,17.8,87.84,929,9.3 -2013,11,9,18,30,0,0,0,2.2,14.600000000000001,100.17,930,8.200000000000001 -2013,11,9,19,30,0,0,0,2.8000000000000003,14,112.64,930,8.6 -2013,11,9,20,30,0,0,0,3.1,13,125.29,931,9 -2013,11,9,21,30,0,0,0,2.8000000000000003,11.700000000000001,137.9,931,9.1 -2013,11,9,22,30,0,0,0,2.5,10.4,150.04,932,9.1 -2013,11,9,23,30,0,0,0,2.3000000000000003,9.4,160.47,932,8.9 -2013,11,10,0,30,0,0,0,2,8.5,164.82,932,8.5 -2013,11,10,1,30,0,0,0,1.8,7.7,158.87,933,7.7 -2013,11,10,2,30,0,0,0,1.6,7.2,147.96,933,7.2 -2013,11,10,3,30,0,0,0,1.4000000000000001,6.800000000000001,135.7,934,6.800000000000001 -2013,11,10,4,30,0,0,0,1.2000000000000002,6.6000000000000005,123.07000000000001,934,6.6000000000000005 -2013,11,10,5,30,0,0,0,1,6.5,110.45,935,6.5 -2013,11,10,6,30,0,0,0,1,6.6000000000000005,98.05,935,6.6000000000000005 -2013,11,10,7,30,46,25,298,1.4000000000000001,7.800000000000001,85.92,936,7.800000000000001 -2013,11,10,8,30,231,59,660,2,10.200000000000001,74.84,937,8.1 -2013,11,10,9,30,417,76,802,2.5,13,64.85,937,8.8 -2013,11,10,10,30,565,88,868,3.2,15.9,56.71,937,10 -2013,11,10,11,30,657,93,903,3.6,18.3,51.34,936,10.9 -2013,11,10,12,30,352,300,80,3.8000000000000003,20,49.67,936,11.200000000000001 -2013,11,10,13,30,334,283,83,3.9000000000000004,21,52.06,935,11.200000000000001 -2013,11,10,14,30,398,223,330,3.8000000000000003,21.400000000000002,58.02,934,11 -2013,11,10,15,30,384,77,774,3.4000000000000004,21.1,66.56,934,10.8 -2013,11,10,16,30,194,57,602,2.3000000000000003,19.1,76.81,934,10.600000000000001 -2013,11,10,17,30,22,16,156,1.5,17.400000000000002,87.97,934,11.100000000000001 -2013,11,10,18,30,0,0,0,1.8,14,100.29,935,10.600000000000001 -2013,11,10,19,30,0,0,0,2.3000000000000003,13.4,112.75,935,10.8 -2013,11,10,20,30,0,0,0,2.7,12.700000000000001,125.4,935,10.9 -2013,11,10,21,30,0,0,0,2.9000000000000004,11.8,138.01,936,11 -2013,11,10,22,30,0,0,0,2.9000000000000004,11,150.18,936,11 -2013,11,10,23,30,0,0,0,2.9000000000000004,10.5,160.67000000000002,936,10.5 -2013,11,11,0,30,0,0,0,3,10.200000000000001,165.1,935,10.200000000000001 -2013,11,11,1,30,0,0,0,3,10.100000000000001,159.1,935,10.100000000000001 -2013,11,11,2,30,0,0,0,2.8000000000000003,9.9,148.14000000000001,935,9.9 -2013,11,11,3,30,0,0,0,2.4000000000000004,9.600000000000001,135.85,935,9.600000000000001 -2013,11,11,4,30,0,0,0,2.2,9.4,123.22,935,9.4 -2013,11,11,5,30,0,0,0,2.1,9.1,110.60000000000001,935,9.1 -2013,11,11,6,30,0,0,0,2.1,8.9,98.21000000000001,935,8.9 -2013,11,11,7,30,44,25,266,2.2,9.5,86.10000000000001,936,9.200000000000001 -2013,11,11,8,30,48,48,0,2.5,11.700000000000001,75.04,936,9.5 -2013,11,11,9,30,163,156,18,2.9000000000000004,15.100000000000001,65.08,936,10.3 -2013,11,11,10,30,263,233,54,3.3000000000000003,18.5,56.96,936,11.5 -2013,11,11,11,30,488,271,349,3.2,20.700000000000003,51.61,935,11.5 -2013,11,11,12,30,526,273,393,3,22,49.94,934,10.8 -2013,11,11,13,30,648,80,928,2.8000000000000003,22.8,52.32,933,10.100000000000001 -2013,11,11,14,30,545,74,895,2.5,22.900000000000002,58.24,933,9.5 -2013,11,11,15,30,388,63,823,2.2,22.3,66.75,932,9.1 -2013,11,11,16,30,197,47,667,1.5,20,76.97,932,9.200000000000001 -2013,11,11,17,30,22,14,224,0.9,18.2,88.09,933,10.9 -2013,11,11,18,30,0,0,0,1.2000000000000002,14.700000000000001,100.41,933,9.8 -2013,11,11,19,30,0,0,0,1.2000000000000002,13.600000000000001,112.85000000000001,934,10.3 -2013,11,11,20,30,0,0,0,1.2000000000000002,12.8,125.5,935,10.8 -2013,11,11,21,30,0,0,0,1.2000000000000002,12.100000000000001,138.12,935,11.200000000000001 -2013,11,11,22,30,0,0,0,0.9,12,150.31,936,11.3 -2013,11,11,23,30,0,0,0,0.7000000000000001,11.9,160.87,937,11.4 -2013,11,12,0,30,0,0,0,1.7000000000000002,11.4,165.37,938,11.3 -2013,11,12,1,30,0,0,0,4.2,10.8,159.32,939,10.8 -2013,11,12,2,30,0,0,0,6.4,9.9,148.31,941,9.5 -2013,11,12,3,30,0,0,0,7.300000000000001,7.9,136.01,942,6.5 -2013,11,12,4,30,0,0,0,7.4,6,123.37,944,2.6 -2013,11,12,5,30,0,0,0,7.300000000000001,4.6000000000000005,110.76,945,-0.2 -2013,11,12,6,30,0,0,0,7.300000000000001,3.8000000000000003,98.38,946,-1.7000000000000002 -2013,11,12,7,30,40,26,226,7.4,3.2,86.27,948,-2.7 -2013,11,12,8,30,65,65,0,7.300000000000001,3,75.24,948,-4.1000000000000005 -2013,11,12,9,30,119,119,0,7.2,3.6,65.3,949,-5.5 -2013,11,12,10,30,110,110,0,7.1000000000000005,5,57.21,949,-6.6000000000000005 -2013,11,12,11,30,412,293,192,6.9,6.6000000000000005,51.88,948,-7.300000000000001 -2013,11,12,12,30,691,81,953,6.7,8,50.21,947,-7.7 -2013,11,12,13,30,655,75,955,6.6000000000000005,8.9,52.56,947,-7.800000000000001 -2013,11,12,14,30,555,66,933,6.300000000000001,9.1,58.45,946,-8.200000000000001 -2013,11,12,15,30,398,57,870,5.9,8.6,66.93,946,-9 -2013,11,12,16,30,203,41,726,5,7.300000000000001,77.11,947,-10.100000000000001 -2013,11,12,17,30,22,13,295,4.3,6.5,88.2,947,-10.8 -2013,11,12,18,30,0,0,0,2.2,3.4000000000000004,100.52,948,-9.9 -2013,11,12,19,30,0,0,0,2,2.5,112.95,948,-9.700000000000001 -2013,11,12,20,30,0,0,0,1.9000000000000001,1.6,125.60000000000001,948,-9.9 -2013,11,12,21,30,0,0,0,1.8,0.9,138.22,948,-10.200000000000001 -2013,11,12,22,30,0,0,0,1.7000000000000002,0.1,150.44,948,-10.5 -2013,11,12,23,30,0,0,0,1.7000000000000002,-0.7000000000000001,161.06,948,-10.8 -2013,11,13,0,30,0,0,0,1.6,-1.5,165.64000000000001,948,-11 -2013,11,13,1,30,0,0,0,1.5,-2.3000000000000003,159.54,948,-11.200000000000001 -2013,11,13,2,30,0,0,0,1.3,-3.1,148.48,948,-11.200000000000001 -2013,11,13,3,30,0,0,0,1.1,-3.8000000000000003,136.16,948,-11 -2013,11,13,4,30,0,0,0,0.9,-4.3,123.52,947,-10.9 -2013,11,13,5,30,0,0,0,0.8,-4.5,110.91,947,-10.9 -2013,11,13,6,30,0,0,0,0.7000000000000001,-4.4,98.55,947,-11.200000000000001 -2013,11,13,7,30,47,18,469,0.8,-3.1,86.44,947,-11.200000000000001 -2013,11,13,8,30,246,38,828,1.2000000000000002,-0.2,75.44,947,-11.4 -2013,11,13,9,30,441,47,951,1.5,2.8000000000000003,65.53,946,-13.3 -2013,11,13,10,30,595,52,1009,1.7000000000000002,5.5,57.46,946,-13.600000000000001 -2013,11,13,11,30,684,55,1025,1.9000000000000001,7.9,52.14,944,-13.600000000000001 -2013,11,13,12,30,714,59,1030,2.1,9.9,50.47,943,-13.600000000000001 -2013,11,13,13,30,674,58,1020,2.3000000000000003,11.200000000000001,52.81,942,-13.5 -2013,11,13,14,30,568,55,988,2.5,11.9,58.660000000000004,941,-13.3 -2013,11,13,15,30,408,50,918,2.6,11.600000000000001,67.1,940,-13.200000000000001 -2013,11,13,16,30,209,39,771,1.9000000000000001,9.3,77.26,939,-12.700000000000001 -2013,11,13,17,30,23,13,327,1.3,7.300000000000001,88.31,939,-6.800000000000001 -2013,11,13,18,30,0,0,0,1.8,3.8000000000000003,100.62,939,-7.300000000000001 -2013,11,13,19,30,0,0,0,2.1,3.3000000000000003,113.05,939,-7.800000000000001 -2013,11,13,20,30,0,0,0,2.5,2.8000000000000003,125.69,938,-7.800000000000001 -2013,11,13,21,30,0,0,0,2.9000000000000004,2.4000000000000004,138.32,938,-7.4 -2013,11,13,22,30,0,0,0,3.2,2,150.56,938,-6.800000000000001 -2013,11,13,23,30,0,0,0,3.3000000000000003,1.5,161.25,937,-6.2 -2013,11,14,0,30,0,0,0,3.4000000000000004,1.2000000000000002,165.9,936,-5.5 -2013,11,14,1,30,0,0,0,3.5,1.1,159.75,936,-4.9 -2013,11,14,2,30,0,0,0,3.5,1.2000000000000002,148.66,935,-4.3 -2013,11,14,3,30,0,0,0,3.4000000000000004,1.3,136.32,934,-3.8000000000000003 -2013,11,14,4,30,0,0,0,3.3000000000000003,1.4000000000000001,123.67,934,-3.4000000000000004 -2013,11,14,5,30,0,0,0,3.2,1.5,111.07000000000001,933,-3.2 -2013,11,14,6,30,0,0,0,3.3000000000000003,1.6,98.71000000000001,933,-3 -2013,11,14,7,30,19,19,0,3.5,2.2,86.62,933,-2.9000000000000004 -2013,11,14,8,30,132,97,141,3.9000000000000004,3.7,75.64,933,-2.9000000000000004 -2013,11,14,9,30,177,162,35,4.5,5.9,65.75,932,-3.2 -2013,11,14,10,30,229,212,31,5,8.200000000000001,57.7,932,-2.6 -2013,11,14,11,30,293,263,49,5.4,11,52.4,930,-1 -2013,11,14,12,30,259,244,24,5.6000000000000005,13.4,50.730000000000004,929,0.5 -2013,11,14,13,30,441,276,275,5.6000000000000005,14.4,53.04,928,1.9000000000000001 -2013,11,14,14,30,521,86,840,5.4,14.4,58.86,927,2.8000000000000003 -2013,11,14,15,30,369,74,762,5.2,14,67.27,927,3.2 -2013,11,14,16,30,61,61,0,4.6000000000000005,12.9,77.4,927,3.4000000000000004 -2013,11,14,17,30,17,14,134,4.1000000000000005,12.100000000000001,88.43,927,3.7 -2013,11,14,18,30,0,0,0,4,9.600000000000001,100.72,927,3.7 -2013,11,14,19,30,0,0,0,4.3,9,113.14,927,3.9000000000000004 -2013,11,14,20,30,0,0,0,4.5,8.4,125.77,926,4.1000000000000005 -2013,11,14,21,30,0,0,0,4.6000000000000005,7.7,138.41,926,4.3 -2013,11,14,22,30,0,0,0,4.5,6.9,150.67000000000002,926,4.4 -2013,11,14,23,30,0,0,0,4.3,6.2,161.42000000000002,926,4.3 -2013,11,15,0,30,0,0,0,4.1000000000000005,5.6000000000000005,166.16,926,4.3 -2013,11,15,1,30,0,0,0,3.9000000000000004,5.1000000000000005,159.97,926,4.4 -2013,11,15,2,30,0,0,0,3.6,4.6000000000000005,148.83,926,4.3 -2013,11,15,3,30,0,0,0,3.2,4.2,136.47,925,4.2 -2013,11,15,4,30,0,0,0,3,3.9000000000000004,123.83,925,3.9000000000000004 -2013,11,15,5,30,0,0,0,2.8000000000000003,3.6,111.22,926,3.6 -2013,11,15,6,30,0,0,0,2.8000000000000003,3.6,98.88,926,3.6 -2013,11,15,7,30,39,19,345,3.2,4.9,86.79,926,4.1000000000000005 -2013,11,15,8,30,226,46,737,3.1,7.800000000000001,75.84,927,4.1000000000000005 -2013,11,15,9,30,416,57,882,2.4000000000000004,11.8,65.97,927,4.3 -2013,11,15,10,30,566,63,949,2,16,57.94,927,4.9 -2013,11,15,11,30,660,66,980,2.3000000000000003,19.700000000000003,52.660000000000004,925,5.1000000000000005 -2013,11,15,12,30,686,67,984,3.3000000000000003,22.700000000000003,50.99,924,4.4 -2013,11,15,13,30,574,141,725,4,24.3,53.27,923,3.5 -2013,11,15,14,30,537,65,919,4.4,24.6,59.06,922,3.5 -2013,11,15,15,30,378,59,833,4,23.8,67.44,921,3.9000000000000004 -2013,11,15,16,30,187,44,660,3.2,21.1,77.53,921,5.4 -2013,11,15,17,30,17,12,190,2.9000000000000004,19.1,88.54,921,6.5 -2013,11,15,18,30,0,0,0,4.5,17.8,100.81,922,6.6000000000000005 -2013,11,15,19,30,0,0,0,5.1000000000000005,17.3,113.22,922,7.4 -2013,11,15,20,30,0,0,0,5.2,16.7,125.85000000000001,922,8.3 -2013,11,15,21,30,0,0,0,5.2,15.9,138.49,922,8.700000000000001 -2013,11,15,22,30,0,0,0,5,14.700000000000001,150.77,922,8.9 -2013,11,15,23,30,0,0,0,4.9,13.8,161.59,922,8.9 -2013,11,16,0,30,0,0,0,4.800000000000001,13.100000000000001,166.42000000000002,921,8.9 -2013,11,16,1,30,0,0,0,4.7,12.8,160.18,921,9 -2013,11,16,2,30,0,0,0,4.6000000000000005,12.600000000000001,149,921,9.1 -2013,11,16,3,30,0,0,0,4.2,12.5,136.62,921,9.200000000000001 -2013,11,16,4,30,0,0,0,3.8000000000000003,12.3,123.98,921,9.4 -2013,11,16,5,30,0,0,0,3.6,12.200000000000001,111.38,921,9.600000000000001 -2013,11,16,6,30,0,0,0,3.6,11.9,99.04,921,9.8 -2013,11,16,7,30,33,19,274,4.3,12.4,86.97,921,9.9 -2013,11,16,8,30,209,46,677,5.300000000000001,14.5,76.04,922,10.200000000000001 -2013,11,16,9,30,390,58,824,6.1000000000000005,17.6,66.19,921,10.600000000000001 -2013,11,16,10,30,417,211,391,6.5,20.700000000000003,58.18,921,11.100000000000001 -2013,11,16,11,30,483,256,376,6.6000000000000005,23.400000000000002,52.910000000000004,921,11.600000000000001 -2013,11,16,12,30,655,71,932,6.7,25.3,51.230000000000004,919,11.700000000000001 -2013,11,16,13,30,527,193,563,6.7,26.200000000000003,53.5,918,11.4 -2013,11,16,14,30,471,121,684,6.6000000000000005,26.400000000000002,59.25,918,11.100000000000001 -2013,11,16,15,30,364,61,797,6,26,67.6,917,10.9 -2013,11,16,16,30,180,45,631,4.9,24.200000000000003,77.66,917,10.8 -2013,11,16,17,30,16,12,168,4.3,22.8,88.64,917,11.200000000000001 -2013,11,16,18,30,0,0,0,4.800000000000001,19.8,100.9,918,11.4 -2013,11,16,19,30,0,0,0,5.1000000000000005,18.7,113.29,918,11.9 -2013,11,16,20,30,0,0,0,5.300000000000001,17.7,125.92,918,12.5 -2013,11,16,21,30,0,0,0,5.7,17.1,138.56,919,13.100000000000001 -2013,11,16,22,30,0,0,0,5.800000000000001,16.6,150.87,919,13.5 -2013,11,16,23,30,0,0,0,5.4,16.1,161.75,919,13.8 -2013,11,17,0,30,0,0,0,4.800000000000001,15.5,166.67000000000002,920,13.9 -2013,11,17,1,30,0,0,0,4.5,14.9,160.39000000000001,920,13.9 -2013,11,17,2,30,0,0,0,4.7,14.600000000000001,149.16,921,13.700000000000001 -2013,11,17,3,30,0,0,0,4.7,14.3,136.78,921,13.100000000000001 -2013,11,17,4,30,0,0,0,4.3,13.8,124.13000000000001,921,12.3 -2013,11,17,5,30,0,0,0,3.9000000000000004,13.200000000000001,111.54,922,11.100000000000001 -2013,11,17,6,30,0,0,0,3.7,12.600000000000001,99.21000000000001,923,10 -2013,11,17,7,30,35,17,356,4,13.5,87.14,924,9.1 -2013,11,17,8,30,222,41,757,4.3,16.2,76.24,924,8.5 -2013,11,17,9,30,411,53,894,4.800000000000001,19.700000000000003,66.41,925,8.3 -2013,11,17,10,30,561,59,958,5.7,22.900000000000002,58.42,925,6 -2013,11,17,11,30,656,64,987,5.800000000000001,24.6,53.160000000000004,925,3.2 -2013,11,17,12,30,685,65,995,5.6000000000000005,25.6,51.47,924,1.5 -2013,11,17,13,30,646,64,983,5.300000000000001,26,53.72,923,0.30000000000000004 -2013,11,17,14,30,543,60,949,4.800000000000001,26,59.44,923,-0.5 -2013,11,17,15,30,385,53,878,3.5,24.8,67.75,923,-0.8 -2013,11,17,16,30,193,41,718,1.9000000000000001,21.6,77.78,924,2.7 -2013,11,17,17,30,17,12,235,1.3,19.200000000000003,88.73,924,5.4 -2013,11,17,18,30,0,0,0,1.2000000000000002,17.3,100.99000000000001,925,4.2 -2013,11,17,19,30,0,0,0,1.2000000000000002,16.8,113.36,926,4 -2013,11,17,20,30,0,0,0,1.2000000000000002,15.9,125.98,927,3.8000000000000003 -2013,11,17,21,30,0,0,0,1.4000000000000001,14.4,138.63,927,3.7 -2013,11,17,22,30,0,0,0,1.6,12.8,150.96,928,3.6 -2013,11,17,23,30,0,0,0,2,11.4,161.9,929,3.7 -2013,11,18,0,30,0,0,0,2.6,10.5,166.91,929,3.6 -2013,11,18,1,30,0,0,0,3.3000000000000003,9.8,160.59,930,3.6 -2013,11,18,2,30,0,0,0,3.5,9.200000000000001,149.33,930,3.5 -2013,11,18,3,30,0,0,0,3.3000000000000003,8.9,136.93,931,3.1 -2013,11,18,4,30,0,0,0,2.9000000000000004,8.700000000000001,124.28,931,2.3000000000000003 -2013,11,18,5,30,0,0,0,2.5,8.5,111.69,932,1.2000000000000002 -2013,11,18,6,30,0,0,0,2.5,8.3,99.37,933,0.4 -2013,11,18,7,30,18,18,0,2.8000000000000003,8.6,87.31,933,-0.2 -2013,11,18,8,30,103,90,55,3.1,9.700000000000001,76.43,934,-0.6000000000000001 -2013,11,18,9,30,272,160,281,3.3000000000000003,11.5,66.62,934,-1.1 -2013,11,18,10,30,339,238,195,3.3000000000000003,13.4,58.65,934,-1.9000000000000001 -2013,11,18,11,30,369,283,143,3,15,53.4,934,-2.1 -2013,11,18,12,30,492,269,359,2.5,16.2,51.71,933,-1.7000000000000002 -2013,11,18,13,30,623,70,940,2.3000000000000003,16.7,53.93,932,-1.1 -2013,11,18,14,30,521,65,902,2.2,16.8,59.620000000000005,931,-0.5 -2013,11,18,15,30,254,151,274,2.1,16.5,67.89,931,0.1 -2013,11,18,16,30,111,80,150,1.7000000000000002,14.9,77.9,932,1.8 -2013,11,18,17,30,5,5,0,1.5,13.700000000000001,88.81,932,3.2 -2013,11,18,18,30,0,0,0,1.9000000000000001,12.200000000000001,101.06,932,2.4000000000000004 -2013,11,18,19,30,0,0,0,2,11.8,113.43,932,2.2 -2013,11,18,20,30,0,0,0,2,11.4,126.04,932,2.5 -2013,11,18,21,30,0,0,0,2.2,11.100000000000001,138.70000000000002,932,3 -2013,11,18,22,30,0,0,0,2.4000000000000004,10.600000000000001,151.04,932,3.6 -2013,11,18,23,30,0,0,0,2.2,9.9,162.04,931,4.2 -2013,11,19,0,30,0,0,0,1.7000000000000002,9.200000000000001,167.14000000000001,931,4.7 -2013,11,19,1,30,0,0,0,1.4000000000000001,8.700000000000001,160.79,931,5.1000000000000005 -2013,11,19,2,30,0,0,0,1.2000000000000002,8.3,149.49,931,5.5 -2013,11,19,3,30,0,0,0,1.2000000000000002,7.800000000000001,137.08,931,5.800000000000001 -2013,11,19,4,30,0,0,0,1.4000000000000001,7.300000000000001,124.43,931,6.2 -2013,11,19,5,30,0,0,0,1.8,7.2,111.85000000000001,931,6.6000000000000005 -2013,11,19,6,30,0,0,0,2.3000000000000003,7.4,99.54,931,7 -2013,11,19,7,30,27,18,211,3.1,8.700000000000001,87.48,931,7.1000000000000005 -2013,11,19,8,30,197,55,617,4.2,11.3,76.62,931,7 -2013,11,19,9,30,283,151,335,5,14.200000000000001,66.83,931,5.9 -2013,11,19,10,30,411,202,404,5.2,16.8,58.88,931,5.4 -2013,11,19,11,30,616,88,890,5.1000000000000005,19.1,53.63,929,7 -2013,11,19,12,30,648,81,920,5,20.700000000000003,51.94,928,8.6 -2013,11,19,13,30,609,79,904,4.9,21.6,54.14,927,9.200000000000001 -2013,11,19,14,30,509,75,862,4.9,22,59.79,926,9.5 -2013,11,19,15,30,358,64,787,4.9,21.6,68.03,925,9.700000000000001 -2013,11,19,16,30,174,48,610,4.4,20.200000000000003,78.01,925,9.9 -2013,11,19,17,30,14,11,130,3.9000000000000004,19.1,88.89,925,10.200000000000001 -2013,11,19,18,30,0,0,0,4.7,16.900000000000002,101.13,925,10.200000000000001 -2013,11,19,19,30,0,0,0,5.300000000000001,16,113.49000000000001,925,10.4 -2013,11,19,20,30,0,0,0,5.4,15.100000000000001,126.10000000000001,925,10.8 -2013,11,19,21,30,0,0,0,5.1000000000000005,14.100000000000001,138.75,925,11.4 -2013,11,19,22,30,0,0,0,4.800000000000001,13.200000000000001,151.12,925,11.9 -2013,11,19,23,30,0,0,0,4.6000000000000005,12.600000000000001,162.18,925,12.200000000000001 -2013,11,20,0,30,0,0,0,4.5,12.200000000000001,167.38,925,12.200000000000001 -2013,11,20,1,30,0,0,0,4.4,11.9,160.99,925,11.9 -2013,11,20,2,30,0,0,0,4.3,11.8,149.66,925,11.8 -2013,11,20,3,30,0,0,0,4.2,11.8,137.23,924,11.8 -2013,11,20,4,30,0,0,0,4.1000000000000005,11.8,124.58,924,11.8 -2013,11,20,5,30,0,0,0,4.1000000000000005,11.8,112,924,11.8 -2013,11,20,6,30,0,0,0,4.2,11.9,99.7,925,11.9 -2013,11,20,7,30,8,8,0,4.5,12.600000000000001,87.65,925,12.5 -2013,11,20,8,30,95,86,38,5.5,14.4,76.82000000000001,925,12.8 -2013,11,20,9,30,249,164,218,6.4,17.1,67.04,925,13.4 -2013,11,20,10,30,368,225,279,6.5,20,59.1,925,13.8 -2013,11,20,11,30,501,222,472,6.300000000000001,22.3,53.870000000000005,924,13.9 -2013,11,20,12,30,640,78,916,6.2,24,52.160000000000004,923,13.700000000000001 -2013,11,20,13,30,599,79,893,6,24.700000000000003,54.34,922,13.3 -2013,11,20,14,30,498,77,841,5.5,24.400000000000002,59.96,922,13.100000000000001 -2013,11,20,15,30,269,139,347,4.7,23.3,68.16,921,13.100000000000001 -2013,11,20,16,30,140,65,368,3.6,21.6,78.12,922,13.3 -2013,11,20,17,30,4,4,0,3,20.5,88.97,922,13.600000000000001 -2013,11,20,18,30,0,0,0,3.3000000000000003,18.2,101.2,923,13.700000000000001 -2013,11,20,19,30,0,0,0,3.9000000000000004,17.5,113.54,924,13.9 -2013,11,20,20,30,0,0,0,4.1000000000000005,16.7,126.14,924,14.200000000000001 -2013,11,20,21,30,0,0,0,4.1000000000000005,15.8,138.8,924,14.5 -2013,11,20,22,30,0,0,0,3.9000000000000004,15,151.19,925,14.9 -2013,11,20,23,30,0,0,0,3.7,14.600000000000001,162.3,925,14.600000000000001 -2013,11,21,0,30,0,0,0,3.4000000000000004,14.5,167.6,925,14.5 -2013,11,21,1,30,0,0,0,3,14.4,161.19,925,14.4 -2013,11,21,2,30,0,0,0,2.7,14.200000000000001,149.82,925,14.200000000000001 -2013,11,21,3,30,0,0,0,2.4000000000000004,14.200000000000001,137.38,925,14.200000000000001 -2013,11,21,4,30,0,0,0,2.3000000000000003,14.3,124.73,925,14.3 -2013,11,21,5,30,0,0,0,2.3000000000000003,14.5,112.16,925,14.5 -2013,11,21,6,30,0,0,0,2,14.600000000000001,99.87,926,14.600000000000001 -2013,11,21,7,30,14,14,0,2.1,15.200000000000001,87.82000000000001,927,15.200000000000001 -2013,11,21,8,30,138,81,252,2.7,16.6,77.01,927,15.8 -2013,11,21,9,30,258,158,257,3.6,18.900000000000002,67.25,928,16.400000000000002 -2013,11,21,10,30,352,228,243,4.4,21.5,59.33,928,17 -2013,11,21,11,30,328,272,95,4.3,23.5,54.09,927,16.6 -2013,11,21,12,30,484,265,359,3.7,24.6,52.38,927,16 -2013,11,21,13,30,422,265,271,3,25.3,54.53,926,15.4 -2013,11,21,14,30,194,185,19,2.2,25.400000000000002,60.120000000000005,926,14.8 -2013,11,21,15,30,342,72,730,1.1,24.700000000000003,68.29,926,14.3 -2013,11,21,16,30,163,52,541,1,22.900000000000002,78.21000000000001,927,14.200000000000001 -2013,11,21,17,30,0,0,0,1.4000000000000001,21.5,89.04,927,15.100000000000001 -2013,11,21,18,30,0,0,0,4.9,17.900000000000002,101.26,929,13.700000000000001 -2013,11,21,19,30,0,0,0,7.300000000000001,14.3,113.59,932,12.200000000000001 -2013,11,21,20,30,0,0,0,8.1,9.600000000000001,126.19,934,8.700000000000001 -2013,11,21,21,30,0,0,0,7.7,5.6000000000000005,138.85,935,3.4000000000000004 -2013,11,21,22,30,0,0,0,7.2,3.6,151.25,936,-0.9 -2013,11,21,23,30,0,0,0,7,2.6,162.42000000000002,936,-2.8000000000000003 -2013,11,22,0,30,0,0,0,7,1.7000000000000002,167.82,937,-3.7 -2013,11,22,1,30,0,0,0,7.1000000000000005,0.7000000000000001,161.38,937,-4.7 -2013,11,22,2,30,0,0,0,7.2,-0.2,149.98,938,-5.6000000000000005 -2013,11,22,3,30,0,0,0,7.2,-1,137.53,939,-6.2 -2013,11,22,4,30,0,0,0,7.1000000000000005,-1.6,124.88000000000001,939,-6.4 -2013,11,22,5,30,0,0,0,7.2,-2.2,112.31,940,-6.800000000000001 -2013,11,22,6,30,0,0,0,7.300000000000001,-2.7,100.03,941,-7.2 -2013,11,22,7,30,6,6,0,7.300000000000001,-2.9000000000000004,87.96000000000001,942,-7.5 -2013,11,22,8,30,186,54,598,7.1000000000000005,-2.6,77.19,943,-7.6000000000000005 -2013,11,22,9,30,366,71,769,6.800000000000001,-1.8,67.45,943,-7.4 -2013,11,22,10,30,512,81,850,6.6000000000000005,-0.9,59.54,943,-6.9 -2013,11,22,11,30,26,26,0,6.4,0,54.31,943,-6.1000000000000005 -2013,11,22,12,30,120,120,0,6.4,0.7000000000000001,52.59,942,-5.4 -2013,11,22,13,30,195,190,9,6.4,1.2000000000000002,54.71,941,-4.9 -2013,11,22,14,30,186,179,15,6.300000000000001,1.4000000000000001,60.27,941,-4.4 -2013,11,22,15,30,52,52,0,6.1000000000000005,1.3,68.41,941,-4.2 -2013,11,22,16,30,29,29,0,5.7,0.5,78.3,941,-4 -2013,11,22,17,30,0,0,0,5.4,-0.1,89.07000000000001,941,-4.2 -2013,11,22,18,30,0,0,0,4.9,-1.4000000000000001,101.31,942,-4.4 -2013,11,22,19,30,0,0,0,4.9,-1.8,113.63,942,-4.6000000000000005 -2013,11,22,20,30,0,0,0,4.800000000000001,-2,126.22,942,-4.7 -2013,11,22,21,30,0,0,0,4.800000000000001,-2.1,138.88,942,-4.9 -2013,11,22,22,30,0,0,0,4.9,-2.1,151.3,942,-5 -2013,11,22,23,30,0,0,0,5,-2.1,162.53,942,-5.2 -2013,11,23,0,30,0,0,0,5.1000000000000005,-2.1,168.03,942,-5.4 -2013,11,23,1,30,0,0,0,5.2,-2,161.57,942,-5.6000000000000005 -2013,11,23,2,30,0,0,0,5.300000000000001,-2,150.14000000000001,942,-5.800000000000001 -2013,11,23,3,30,0,0,0,5.4,-2,137.68,942,-6.1000000000000005 -2013,11,23,4,30,0,0,0,5.5,-2,125.03,942,-6.4 -2013,11,23,5,30,0,0,0,5.6000000000000005,-1.9000000000000001,112.46000000000001,942,-6.7 -2013,11,23,6,30,0,0,0,5.5,-1.9000000000000001,100.19,943,-6.9 -2013,11,23,7,30,21,15,160,5.5,-1.5,88.12,944,-6.800000000000001 -2013,11,23,8,30,15,15,0,5.7,-0.9,77.38,944,-6.4 -2013,11,23,9,30,62,62,0,5.9,-0.1,67.65,944,-5.7 -2013,11,23,10,30,37,37,0,6,0.7000000000000001,59.75,944,-4.9 -2013,11,23,11,30,88,88,0,6,1.5,54.53,943,-4.5 -2013,11,23,12,30,204,198,9,5.9,2,52.800000000000004,943,-4.5 -2013,11,23,13,30,216,207,16,5.5,2.3000000000000003,54.89,942,-4.7 -2013,11,23,14,30,240,211,59,5.1000000000000005,2.1,60.410000000000004,942,-5 -2013,11,23,15,30,158,144,37,5,1.5,68.52,942,-4.9 -2013,11,23,16,30,84,75,43,4.6000000000000005,0.9,78.38,942,-4.7 -2013,11,23,17,30,0,0,0,4.3,0.6000000000000001,89.12,943,-4.7 -2013,11,23,18,30,0,0,0,3.9000000000000004,0.1,101.36,943,-4.7 -2013,11,23,19,30,0,0,0,4,-0.1,113.67,943,-4.9 -2013,11,23,20,30,0,0,0,4.1000000000000005,-0.2,126.25,943,-5 -2013,11,23,21,30,0,0,0,4.3,-0.4,138.91,944,-5.1000000000000005 -2013,11,23,22,30,0,0,0,4.6000000000000005,-0.7000000000000001,151.35,944,-5.4 -2013,11,23,23,30,0,0,0,4.800000000000001,-1.1,162.63,944,-6 -2013,11,24,0,30,0,0,0,4.800000000000001,-1.4000000000000001,168.24,943,-6.4 -2013,11,24,1,30,0,0,0,4.5,-1.7000000000000002,161.76,944,-6.5 -2013,11,24,2,30,0,0,0,4,-1.9000000000000001,150.3,944,-6.300000000000001 -2013,11,24,3,30,0,0,0,3.8000000000000003,-2,137.83,944,-6.2 -2013,11,24,4,30,0,0,0,3.8000000000000003,-2.1,125.17,944,-5.9 -2013,11,24,5,30,0,0,0,3.8000000000000003,-2.3000000000000003,112.62,944,-5.7 -2013,11,24,6,30,0,0,0,3.8000000000000003,-2.5,100.35000000000001,944,-5.6000000000000005 -2013,11,24,7,30,7,7,0,4,-2.6,88.28,944,-5.4 -2013,11,24,8,30,7,7,0,4.2,-2.4000000000000004,77.56,943,-5.4 -2013,11,24,9,30,132,131,4,4.2,-1.7000000000000002,67.85,943,-5.6000000000000005 -2013,11,24,10,30,146,146,0,3.8000000000000003,-0.7000000000000001,59.96,942,-5.4 -2013,11,24,11,30,264,240,40,3.2,0.2,54.74,942,-5 -2013,11,24,12,30,355,285,118,2.5,0.8,53,940,-4.5 -2013,11,24,13,30,319,264,97,2,1.2000000000000002,55.07,939,-4 -2013,11,24,14,30,279,222,116,1.7000000000000002,1.3,60.550000000000004,938,-3.7 -2013,11,24,15,30,361,74,789,1.6,1.1,68.63,938,-3.5 -2013,11,24,16,30,173,51,608,1.5,0.5,78.46000000000001,938,-3.4000000000000004 -2013,11,24,17,30,0,0,0,1.4000000000000001,0,89.18,938,-3.5 -2013,11,24,18,30,0,0,0,1.5,-1,101.4,938,-3.7 -2013,11,24,19,30,0,0,0,1.5,-1.3,113.7,938,-3.7 -2013,11,24,20,30,0,0,0,1.6,-1.7000000000000002,126.27,937,-3.7 -2013,11,24,21,30,0,0,0,1.6,-2,138.94,937,-3.7 -2013,11,24,22,30,0,0,0,1.6,-2.2,151.39000000000001,936,-3.7 -2013,11,24,23,30,0,0,0,1.6,-2.2,162.72,936,-3.7 -2013,11,25,0,30,0,0,0,1.5,-2.2,168.44,935,-3.7 -2013,11,25,1,30,0,0,0,1.5,-2.3000000000000003,161.95000000000002,934,-3.6 -2013,11,25,2,30,0,0,0,1.6,-2.5,150.46,934,-3.7 -2013,11,25,3,30,0,0,0,1.6,-2.6,137.98,933,-3.7 -2013,11,25,4,30,0,0,0,1.4000000000000001,-2.7,125.32000000000001,933,-3.7 -2013,11,25,5,30,0,0,0,1.3,-2.7,112.77,932,-3.7 -2013,11,25,6,30,0,0,0,1.4000000000000001,-2.8000000000000003,100.51,932,-3.7 -2013,11,25,7,30,4,4,0,1.9000000000000001,-2.3000000000000003,88.44,933,-3.9000000000000004 -2013,11,25,8,30,111,82,140,2.4000000000000004,-1.3,77.74,933,-3.6 -2013,11,25,9,30,122,122,0,2.4000000000000004,-0.30000000000000004,68.04,933,-3.3000000000000003 -2013,11,25,10,30,95,95,0,2.2,0.6000000000000001,60.17,933,-2.9000000000000004 -2013,11,25,11,30,102,102,0,2,1.7000000000000002,54.95,932,-2.4000000000000004 -2013,11,25,12,30,140,140,0,1.9000000000000001,2.9000000000000004,53.19,931,-2 -2013,11,25,13,30,126,126,0,1.9000000000000001,4.1000000000000005,55.230000000000004,930,-1.8 -2013,11,25,14,30,86,86,0,1.7000000000000002,4.800000000000001,60.69,930,-1.6 -2013,11,25,15,30,60,60,0,1.5,5,68.73,930,-1.4000000000000001 -2013,11,25,16,30,176,43,673,1.1,3.8000000000000003,78.54,930,-1.3 -2013,11,25,17,30,0,0,0,0.8,2.7,89.23,930,-0.7000000000000001 -2013,11,25,18,30,0,0,0,1.4000000000000001,-0.1,101.44,931,-2 -2013,11,25,19,30,0,0,0,2,-0.7000000000000001,113.72,932,-2.2 -2013,11,25,20,30,0,0,0,2.5,-1.2000000000000002,126.29,933,-2.1 -2013,11,25,21,30,0,0,0,2.8000000000000003,-1.6,138.96,933,-2.2 -2013,11,25,22,30,0,0,0,2.8000000000000003,-2,151.42000000000002,934,-2.3000000000000003 -2013,11,25,23,30,0,0,0,2.8000000000000003,-2.5,162.8,934,-2.6 -2013,11,26,0,30,0,0,0,2.9000000000000004,-3,168.64000000000001,934,-3 -2013,11,26,1,30,0,0,0,3.2,-3.3000000000000003,162.13,934,-3.4000000000000004 -2013,11,26,2,30,0,0,0,3.5,-3.3000000000000003,150.62,934,-3.6 -2013,11,26,3,30,0,0,0,3.6,-3.2,138.13,934,-3.5 -2013,11,26,4,30,0,0,0,3.3000000000000003,-3.2,125.47,934,-3.5 -2013,11,26,5,30,0,0,0,2.9000000000000004,-3.5,112.92,934,-3.7 -2013,11,26,6,30,0,0,0,2.7,-3.8000000000000003,100.67,935,-4.1000000000000005 -2013,11,26,7,30,3,3,0,3.4000000000000004,-3.1,88.59,936,-4.5 -2013,11,26,8,30,191,42,708,4.4,-0.8,77.92,937,-4 -2013,11,26,9,30,378,54,873,5.300000000000001,1.8,68.23,937,-3.3000000000000003 -2013,11,26,10,30,529,60,948,5.9,4,60.370000000000005,937,-3.2 -2013,11,26,11,30,624,62,983,6.300000000000001,5.800000000000001,55.15,937,-3.5 -2013,11,26,12,30,655,61,996,6.6000000000000005,7.2,53.38,936,-4.5 -2013,11,26,13,30,619,60,985,6.800000000000001,8.200000000000001,55.39,936,-5.4 -2013,11,26,14,30,520,56,951,6.7,8.4,60.81,936,-5.800000000000001 -2013,11,26,15,30,367,49,879,6.2,8,68.82000000000001,936,-5.800000000000001 -2013,11,26,16,30,178,36,718,4.7,6.2,78.61,937,-5.6000000000000005 -2013,11,26,17,30,0,0,0,3.5,4.7,89.27,937,-4.5 -2013,11,26,18,30,0,0,0,2.4000000000000004,1.6,101.47,938,-4.3 -2013,11,26,19,30,0,0,0,2.5,0.9,113.74000000000001,939,-4.5 -2013,11,26,20,30,0,0,0,2.8000000000000003,0.4,126.3,939,-4.800000000000001 -2013,11,26,21,30,0,0,0,3.1,0.1,138.97,940,-5.1000000000000005 -2013,11,26,22,30,0,0,0,3.2,-0.4,151.45000000000002,940,-5.300000000000001 -2013,11,26,23,30,0,0,0,3.2,-1.1,162.88,940,-5.6000000000000005 -2013,11,27,0,30,0,0,0,3,-1.9000000000000001,168.82,940,-5.800000000000001 -2013,11,27,1,30,0,0,0,2.8000000000000003,-2.7,162.31,940,-6.1000000000000005 -2013,11,27,2,30,0,0,0,2.4000000000000004,-3.5,150.77,940,-6.4 -2013,11,27,3,30,0,0,0,2.1,-4.4,138.28,940,-6.7 -2013,11,27,4,30,0,0,0,1.8,-5.300000000000001,125.62,941,-7 -2013,11,27,5,30,0,0,0,1.5,-6,113.07000000000001,941,-7.300000000000001 -2013,11,27,6,30,0,0,0,1.3,-6.4,100.83,941,-7.6000000000000005 -2013,11,27,7,30,18,12,312,1.6,-4.9,88.74,942,-7.800000000000001 -2013,11,27,8,30,197,37,777,2,-1.7000000000000002,78.10000000000001,942,-7.5 -2013,11,27,9,30,389,48,927,1.9000000000000001,1,68.42,941,-9.200000000000001 -2013,11,27,10,30,542,54,994,1.6,3.1,60.56,941,-9.700000000000001 -2013,11,27,11,30,640,57,1025,1,4.800000000000001,55.34,940,-9.5 -2013,11,27,12,30,666,59,1022,0.6000000000000001,6.4,53.56,939,-9 -2013,11,27,13,30,631,58,1012,0.7000000000000001,7.5,55.550000000000004,938,-8.1 -2013,11,27,14,30,531,56,977,0.9,8,60.93,937,-7.300000000000001 -2013,11,27,15,30,376,55,891,0.9,7.7,68.91,936,-6.800000000000001 -2013,11,27,16,30,183,41,724,0.9,5.9,78.67,936,-5.7 -2013,11,27,17,30,0,0,0,0.9,4.5,89.31,936,-3.4000000000000004 -2013,11,27,18,30,0,0,0,1.3,2.4000000000000004,101.49000000000001,937,-4.2 -2013,11,27,19,30,0,0,0,1.5,2,113.75,937,-4.5 -2013,11,27,20,30,0,0,0,1.8,1.8,126.31,937,-5 -2013,11,27,21,30,0,0,0,2.1,1.7000000000000002,138.97,936,-5.6000000000000005 -2013,11,27,22,30,0,0,0,2.5,1.6,151.46,936,-6.1000000000000005 -2013,11,27,23,30,0,0,0,2.7,1.4000000000000001,162.94,936,-6.4 -2013,11,28,0,30,0,0,0,2.8000000000000003,1.2000000000000002,169,936,-6.4 -2013,11,28,1,30,0,0,0,2.8000000000000003,0.9,162.49,936,-6.2 -2013,11,28,2,30,0,0,0,2.7,0.7000000000000001,150.92000000000002,936,-5.9 -2013,11,28,3,30,0,0,0,2.3000000000000003,0.30000000000000004,138.42000000000002,936,-5.6000000000000005 -2013,11,28,4,30,0,0,0,2,-0.30000000000000004,125.76,936,-5.2 -2013,11,28,5,30,0,0,0,1.8,-1.2000000000000002,113.22,936,-5.2 -2013,11,28,6,30,0,0,0,1.7000000000000002,-2,100.99000000000001,937,-5.300000000000001 -2013,11,28,7,30,16,11,227,2.4000000000000004,-1,88.89,937,-5.300000000000001 -2013,11,28,8,30,123,72,253,3,1.6,78.28,937,-4.6000000000000005 -2013,11,28,9,30,372,55,870,3.4000000000000004,4.800000000000001,68.61,937,-3.9000000000000004 -2013,11,28,10,30,523,62,943,3.8000000000000003,8.200000000000001,60.76,937,-3.9000000000000004 -2013,11,28,11,30,619,66,976,3.6,10.700000000000001,55.53,937,-3.6 -2013,11,28,12,30,646,59,992,3.4000000000000004,12.200000000000001,53.730000000000004,936,-3.2 -2013,11,28,13,30,612,60,979,3.2,13.100000000000001,55.69,936,-2.9000000000000004 -2013,11,28,14,30,514,58,943,2.8000000000000003,13.3,61.050000000000004,936,-2.6 -2013,11,28,15,30,362,49,872,2.2,12.700000000000001,68.99,935,-2.3000000000000003 -2013,11,28,16,30,175,37,709,1.5,9.8,78.72,936,-0.9 -2013,11,28,17,30,0,0,0,1.2000000000000002,7.6000000000000005,89.34,936,0.4 -2013,11,28,18,30,0,0,0,1.7000000000000002,4.800000000000001,101.51,937,-1.1 -2013,11,28,19,30,0,0,0,2,4.1000000000000005,113.76,938,-1.5 -2013,11,28,20,30,0,0,0,2.1,3.4000000000000004,126.31,938,-1.8 -2013,11,28,21,30,0,0,0,2.2,2.5,138.97,938,-2 -2013,11,28,22,30,0,0,0,2.2,1.7000000000000002,151.48,939,-2 -2013,11,28,23,30,0,0,0,2.1,1,163,939,-1.8 -2013,11,29,0,30,0,0,0,2,0.2,169.18,939,-1.6 -2013,11,29,1,30,0,0,0,1.8,-0.4,162.66,939,-1.4000000000000001 -2013,11,29,2,30,0,0,0,1.7000000000000002,-0.9,151.08,939,-1.3 -2013,11,29,3,30,0,0,0,1.6,-1.4000000000000001,138.57,939,-1.5 -2013,11,29,4,30,0,0,0,1.5,-1.8,125.91,939,-1.8 -2013,11,29,5,30,0,0,0,1.4000000000000001,-2.1,113.37,939,-2.2 -2013,11,29,6,30,0,0,0,1.3,-2.4000000000000004,101.15,940,-2.5 -2013,11,29,7,30,0,0,0,1.8,-0.9,89.04,940,-2.8000000000000003 -2013,11,29,8,30,138,61,385,2.4000000000000004,2,78.45,940,-2.7 -2013,11,29,9,30,368,56,863,3,5.6000000000000005,68.79,940,-2.2 -2013,11,29,10,30,519,64,937,3.8000000000000003,9.3,60.94,940,-2.1 -2013,11,29,11,30,462,222,427,4.3,11.700000000000001,55.72,940,-1.7000000000000002 -2013,11,29,12,30,516,198,539,4.4,13.200000000000001,53.9,938,-1 -2013,11,29,13,30,610,68,966,4.4,14.100000000000001,55.83,937,-0.4 -2013,11,29,14,30,512,63,930,4.2,14.5,61.15,937,0.1 -2013,11,29,15,30,256,132,347,3.7,14,69.07000000000001,936,0.6000000000000001 -2013,11,29,16,30,174,41,684,2.5,11.3,78.77,936,1.3 -2013,11,29,17,30,0,0,0,1.7000000000000002,9.1,89.37,936,2.3000000000000003 -2013,11,29,18,30,0,0,0,2.2,6.9,101.52,936,1.8 -2013,11,29,19,30,0,0,0,2.6,6.6000000000000005,113.76,936,1.9000000000000001 -2013,11,29,20,30,0,0,0,3.1,6.2,126.31,937,2.2 -2013,11,29,21,30,0,0,0,3.4000000000000004,5.7,138.97,937,2.4000000000000004 -2013,11,29,22,30,0,0,0,3.5,5,151.48,937,2.5 -2013,11,29,23,30,0,0,0,3.4000000000000004,4.4,163.05,937,2.4000000000000004 -2013,11,30,0,30,0,0,0,3.3000000000000003,3.7,169.34,937,2.4000000000000004 -2013,11,30,1,30,0,0,0,3.2,3.2,162.83,936,2.4000000000000004 -2013,11,30,2,30,0,0,0,3.1,2.8000000000000003,151.23,936,2.7 -2013,11,30,3,30,0,0,0,2.9000000000000004,2.7,138.71,936,2.7 -2013,11,30,4,30,0,0,0,2.9000000000000004,2.8000000000000003,126.06,936,2.8000000000000003 -2013,11,30,5,30,0,0,0,2.9000000000000004,3.1,113.52,936,3.1 -2013,11,30,6,30,0,0,0,3,3.4000000000000004,101.3,936,3.4000000000000004 -2013,11,30,7,30,0,0,0,3.3000000000000003,4,89.19,937,4 -2013,11,30,8,30,168,51,595,3.6,5.4,78.62,937,4.4 -2013,11,30,9,30,351,69,787,4.3,8.1,68.97,936,5 -2013,11,30,10,30,362,197,342,4.9,11.700000000000001,61.120000000000005,936,5.9 -2013,11,30,11,30,597,76,929,5,14.9,55.9,935,6.300000000000001 -2013,11,30,12,30,632,67,962,4.7,17.3,54.06,934,6.4 -2013,11,30,13,30,598,66,952,4.4,18.900000000000002,55.97,933,6.5 -2013,11,30,14,30,500,63,910,4.1000000000000005,19.400000000000002,61.25,932,6.5 -2013,11,30,15,30,314,76,669,3.2,18.6,69.14,931,6.5 -2013,11,30,16,30,168,41,656,2.1,15.600000000000001,78.82000000000001,931,7.6000000000000005 -2013,11,30,17,30,0,0,0,1.6,13.3,89.4,931,7.6000000000000005 -2013,11,30,18,30,0,0,0,2.3000000000000003,11.200000000000001,101.53,932,7.1000000000000005 -2013,11,30,19,30,0,0,0,3.1,11,113.76,932,7.5 -2013,11,30,20,30,0,0,0,3.5,10.4,126.3,932,7.800000000000001 -2013,11,30,21,30,0,0,0,3.7,9.600000000000001,138.96,932,8.1 -2013,11,30,22,30,0,0,0,3.7,8.9,151.48,932,8.5 -2013,11,30,23,30,0,0,0,3.6,8.3,163.09,932,8.3 -2013,12,1,0,30,0,0,0,3.6,8.1,169.5,932,8.1 -2013,12,1,1,30,0,0,0,3.6,8.200000000000001,163,932,8.200000000000001 -2013,12,1,2,30,0,0,0,3.4000000000000004,8,151.38,932,8 -2013,12,1,3,30,0,0,0,3.4000000000000004,7.9,138.86,932,7.9 -2013,12,1,4,30,0,0,0,3.4000000000000004,8,126.2,931,8 -2013,12,1,5,30,0,0,0,3.3000000000000003,8,113.67,931,8 -2013,12,1,6,30,0,0,0,3.3000000000000003,7.800000000000001,101.46000000000001,931,7.800000000000001 -2013,12,1,7,30,0,0,0,3.4000000000000004,8.1,89.34,931,7.9 -2013,12,1,8,30,80,73,40,3.5,9.3,78.79,931,7.7 -2013,12,1,9,30,110,110,0,3.5,11.600000000000001,69.14,931,7.800000000000001 -2013,12,1,10,30,99,99,0,3.5,14.100000000000001,61.300000000000004,931,7.7 -2013,12,1,11,30,85,85,0,3.4000000000000004,16.3,56.07,930,7.300000000000001 -2013,12,1,12,30,160,159,1,3.4000000000000004,18,54.22,929,6.6000000000000005 -2013,12,1,13,30,116,116,0,3.6,19.3,56.09,929,5.5 -2013,12,1,14,30,114,114,0,3.6,19.8,61.34,928,4.5 -2013,12,1,15,30,140,133,20,2.6,18.900000000000002,69.2,927,4.1000000000000005 -2013,12,1,16,30,110,71,205,1.6,16.2,78.85000000000001,927,6.5 -2013,12,1,17,30,0,0,0,1.5,14.4,89.41,927,6.2 -2013,12,1,18,30,0,0,0,1.9000000000000001,12.8,101.53,927,5.300000000000001 -2013,12,1,19,30,0,0,0,2.1,12.3,113.75,927,5 -2013,12,1,20,30,0,0,0,2.3000000000000003,11.5,126.28,927,4.5 -2013,12,1,21,30,0,0,0,2.4000000000000004,10.4,138.94,927,3.9000000000000004 -2013,12,1,22,30,0,0,0,2.4000000000000004,9.1,151.47,926,3.2 -2013,12,1,23,30,0,0,0,2.4000000000000004,7.800000000000001,163.12,926,2.5 -2013,12,2,0,30,0,0,0,2.5,6.9,169.65,926,1.8 -2013,12,2,1,30,0,0,0,2.6,6,163.17000000000002,925,1.1 -2013,12,2,2,30,0,0,0,2.6,5.1000000000000005,151.53,925,0.4 -2013,12,2,3,30,0,0,0,2.4000000000000004,4.4,139,924,-0.30000000000000004 -2013,12,2,4,30,0,0,0,2.4000000000000004,3.9000000000000004,126.34,924,-0.8 -2013,12,2,5,30,0,0,0,2.4000000000000004,3.5,113.82000000000001,923,-1.3 -2013,12,2,6,30,0,0,0,2.6,3.2,101.61,923,-1.6 -2013,12,2,7,30,0,0,0,3.4000000000000004,4.2,89.48,923,-1.9000000000000001 -2013,12,2,8,30,122,64,301,4,6.800000000000001,78.95,923,-1.8 -2013,12,2,9,30,279,112,474,4,10.200000000000001,69.31,923,-1.5 -2013,12,2,10,30,511,49,966,3.9000000000000004,13.700000000000001,61.47,922,-1.6 -2013,12,2,11,30,604,52,993,3.7,16.3,56.230000000000004,921,-1.4000000000000001 -2013,12,2,12,30,638,53,1003,3.7,18.3,54.36,920,-1 -2013,12,2,13,30,602,54,986,3.8000000000000003,19.5,56.21,919,-0.7000000000000001 -2013,12,2,14,30,506,50,952,3.6,20.1,61.43,919,-0.4 -2013,12,2,15,30,356,44,880,2.5,19.3,69.26,918,-0.1 -2013,12,2,16,30,172,33,719,1.4000000000000001,16.5,78.88,918,4.2 -2013,12,2,17,30,0,0,0,1.2000000000000002,14.5,89.43,918,3.4000000000000004 -2013,12,2,18,30,0,0,0,1.2000000000000002,13.100000000000001,101.52,919,1.5 -2013,12,2,19,30,0,0,0,1.3,11.9,113.73,919,1.2000000000000002 -2013,12,2,20,30,0,0,0,1.4000000000000001,10.4,126.26,919,1 -2013,12,2,21,30,0,0,0,1.7000000000000002,9.200000000000001,138.92000000000002,918,0.8 -2013,12,2,22,30,0,0,0,2.4000000000000004,8.8,151.46,918,0.5 -2013,12,2,23,30,0,0,0,3.1,8.8,163.15,918,-0.1 -2013,12,3,0,30,0,0,0,3.6,8.700000000000001,169.79,918,-0.9 -2013,12,3,1,30,0,0,0,4,8.5,163.33,917,-1.6 -2013,12,3,2,30,0,0,0,4.3,8.1,151.67000000000002,917,-1.8 -2013,12,3,3,30,0,0,0,4.5,7.6000000000000005,139.14000000000001,917,-1.7000000000000002 -2013,12,3,4,30,0,0,0,4.4,7.4,126.48,916,-1.6 -2013,12,3,5,30,0,0,0,4.3,7.300000000000001,113.96000000000001,916,-1.5 -2013,12,3,6,30,0,0,0,4.2,7.2,101.76,917,-1.4000000000000001 -2013,12,3,7,30,0,0,0,4.3,7.800000000000001,89.62,917,-1.3 -2013,12,3,8,30,172,35,721,4.6000000000000005,9.8,79.11,917,-1.1 -2013,12,3,9,30,299,88,601,4.4,13.200000000000001,69.48,917,-0.7000000000000001 -2013,12,3,10,30,418,133,600,4.3,17.400000000000002,61.64,917,0.2 -2013,12,3,11,30,470,205,478,4.5,21.400000000000002,56.39,917,-0.1 -2013,12,3,12,30,641,56,1007,4.7,23.900000000000002,54.5,916,-1.4000000000000001 -2013,12,3,13,30,605,55,991,4.7,24.900000000000002,56.32,915,-2.7 -2013,12,3,14,30,398,166,484,4.3,24.700000000000003,61.51,914,-2.4000000000000004 -2013,12,3,15,30,263,126,388,3.1,22.700000000000003,69.31,914,-0.5 -2013,12,3,16,30,130,61,362,2.1,18.6,78.91,914,4.2 -2013,12,3,17,30,0,0,0,1.9000000000000001,16.2,89.44,914,3.7 -2013,12,3,18,30,0,0,0,2.4000000000000004,13.9,101.52,915,2.5 -2013,12,3,19,30,0,0,0,3,13.4,113.71000000000001,915,1.7000000000000002 -2013,12,3,20,30,0,0,0,3.6,13,126.23,916,0.9 -2013,12,3,21,30,0,0,0,3.8000000000000003,12.4,138.89000000000001,916,0.30000000000000004 -2013,12,3,22,30,0,0,0,4,11.9,151.44,916,0.1 -2013,12,3,23,30,0,0,0,4,11.600000000000001,163.17000000000002,916,0.30000000000000004 -2013,12,4,0,30,0,0,0,4.1000000000000005,11.5,169.93,916,0.9 -2013,12,4,1,30,0,0,0,4.4,11.9,163.49,916,1.9000000000000001 -2013,12,4,2,30,0,0,0,4.3,12.3,151.82,916,3.2 -2013,12,4,3,30,0,0,0,3.9000000000000004,12.3,139.28,917,4.5 -2013,12,4,4,30,0,0,0,3.7,12.3,126.63000000000001,917,5.5 -2013,12,4,5,30,0,0,0,3.6,12.4,114.11,917,6.2 -2013,12,4,6,30,0,0,0,3.3000000000000003,12.3,101.91,918,6.6000000000000005 -2013,12,4,7,30,0,0,0,3.4000000000000004,12.700000000000001,89.76,918,6.7 -2013,12,4,8,30,112,66,247,3.5,14.4,79.27,919,7 -2013,12,4,9,30,342,52,832,3.5,17.2,69.64,919,7.4 -2013,12,4,10,30,491,58,916,4.3,20.700000000000003,61.800000000000004,919,7.800000000000001 -2013,12,4,11,30,587,61,954,5.300000000000001,23.200000000000003,56.550000000000004,919,6.9 -2013,12,4,12,30,619,63,961,5.300000000000001,24.400000000000002,54.64,918,5.9 -2013,12,4,13,30,464,211,457,5,24.900000000000002,56.42,917,5.300000000000001 -2013,12,4,14,30,367,189,373,4.2,24.8,61.58,917,5.2 -2013,12,4,15,30,310,78,657,2.6,23.400000000000002,69.35000000000001,917,5.6000000000000005 -2013,12,4,16,30,85,73,61,1,20.5,78.93,917,9.4 -2013,12,4,17,30,0,0,0,0.6000000000000001,18.7,89.44,917,8.6 -2013,12,4,18,30,0,0,0,1,16.400000000000002,101.5,919,7.300000000000001 -2013,12,4,19,30,0,0,0,1.7000000000000002,14.700000000000001,113.69,919,7.300000000000001 -2013,12,4,20,30,0,0,0,2.6,13.100000000000001,126.2,920,7 -2013,12,4,21,30,0,0,0,3.7,11.3,138.86,922,5.9 -2013,12,4,22,30,0,0,0,4.800000000000001,9.1,151.41,923,4 -2013,12,4,23,30,0,0,0,5.5,6.5,163.18,924,1.6 -2013,12,5,0,30,0,0,0,6,4.1000000000000005,170.06,925,-1.3 -2013,12,5,1,30,0,0,0,6.300000000000001,2.1,163.65,926,-4 -2013,12,5,2,30,0,0,0,6.6000000000000005,0.6000000000000001,151.96,927,-5.800000000000001 -2013,12,5,3,30,0,0,0,6.800000000000001,-0.7000000000000001,139.42000000000002,928,-7 -2013,12,5,4,30,0,0,0,6.800000000000001,-1.9000000000000001,126.77,929,-7.9 -2013,12,5,5,30,0,0,0,6.800000000000001,-3,114.25,930,-8.8 -2013,12,5,6,30,0,0,0,6.6000000000000005,-3.8000000000000003,102.05,931,-9.600000000000001 -2013,12,5,7,30,0,0,0,6.300000000000001,-4.3,89.85000000000001,931,-10 -2013,12,5,8,30,41,41,0,6,-4.4,79.42,932,-10.100000000000001 -2013,12,5,9,30,163,141,63,5.800000000000001,-4.3,69.8,932,-10 -2013,12,5,10,30,272,212,128,5.6000000000000005,-3.7,61.96,932,-9.8 -2013,12,5,11,30,146,146,0,5.5,-2.8000000000000003,56.69,932,-9.700000000000001 -2013,12,5,12,30,142,142,0,5.1000000000000005,-1.8,54.76,931,-9.600000000000001 -2013,12,5,13,30,111,111,0,4.7,-1,56.52,930,-9.5 -2013,12,5,14,30,63,63,0,4.2,-0.9,61.64,930,-9.200000000000001 -2013,12,5,15,30,151,138,35,3.9000000000000004,-1.4000000000000001,69.38,930,-9.200000000000001 -2013,12,5,16,30,36,36,0,3.6,-2.4000000000000004,78.93,930,-9.4 -2013,12,5,17,30,0,0,0,3.5,-3,89.39,930,-9.8 -2013,12,5,18,30,0,0,0,3.9000000000000004,-4.1000000000000005,101.48,931,-10.4 -2013,12,5,19,30,0,0,0,4.3,-4.6000000000000005,113.66,931,-10.9 -2013,12,5,20,30,0,0,0,4.5,-5.1000000000000005,126.16,931,-11.4 -2013,12,5,21,30,0,0,0,4.3,-5.4,138.82,932,-11.3 -2013,12,5,22,30,0,0,0,4.3,-5.7,151.38,933,-10.4 -2013,12,5,23,30,0,0,0,4.6000000000000005,-6,163.18,932,-9.8 -2013,12,6,0,30,0,0,0,4.6000000000000005,-6.2,170.17000000000002,932,-9.8 -2013,12,6,1,30,0,0,0,4.5,-6.4,163.8,932,-9.8 -2013,12,6,2,30,0,0,0,4.9,-6.5,152.1,932,-9.8 -2013,12,6,3,30,0,0,0,5.2,-6.7,139.56,933,-9.9 -2013,12,6,4,30,0,0,0,5.300000000000001,-6.800000000000001,126.9,933,-10 -2013,12,6,5,30,0,0,0,5.2,-6.9,114.39,934,-10.100000000000001 -2013,12,6,6,30,0,0,0,5,-7,102.2,935,-10.200000000000001 -2013,12,6,7,30,0,0,0,5,-6.9,89.97,936,-10.3 -2013,12,6,8,30,9,9,0,5.2,-6.2,79.57000000000001,937,-10.4 -2013,12,6,9,30,349,66,827,5.300000000000001,-5.2,69.95,938,-10.4 -2013,12,6,10,30,205,189,36,5.2,-4.1000000000000005,62.11,938,-10.200000000000001 -2013,12,6,11,30,298,249,89,5.2,-3.2,56.83,938,-10 -2013,12,6,12,30,377,272,182,5.1000000000000005,-2.4000000000000004,54.88,938,-9.5 -2013,12,6,13,30,347,258,162,5,-2,56.61,937,-9.1 -2013,12,6,14,30,312,211,213,4.9,-2,61.7,937,-8.700000000000001 -2013,12,6,15,30,184,148,103,4.800000000000001,-2.4000000000000004,69.41,937,-8.700000000000001 -2013,12,6,16,30,180,44,708,4.4,-3.6,78.94,938,-8.9 -2013,12,6,17,30,0,0,0,4,-4.3,89.38,938,-9.700000000000001 -2013,12,6,18,30,0,0,0,3,-6.6000000000000005,101.45,939,-10.600000000000001 -2013,12,6,19,30,0,0,0,2.7,-7.5,113.62,940,-11.200000000000001 -2013,12,6,20,30,0,0,0,2.6,-8.1,126.12,941,-11.600000000000001 -2013,12,6,21,30,0,0,0,2.7,-8.5,138.77,941,-11.9 -2013,12,6,22,30,0,0,0,2.9000000000000004,-8.700000000000001,151.35,942,-12.200000000000001 -2013,12,6,23,30,0,0,0,3.2,-8.700000000000001,163.17000000000002,942,-12.600000000000001 -2013,12,7,0,30,0,0,0,3.6,-8.8,170.28,942,-13.200000000000001 -2013,12,7,1,30,0,0,0,3.9000000000000004,-9,163.95000000000002,941,-13.8 -2013,12,7,2,30,0,0,0,4.1000000000000005,-9.1,152.24,942,-14.5 -2013,12,7,3,30,0,0,0,4.2,-9.3,139.70000000000002,942,-15 -2013,12,7,4,30,0,0,0,4.1000000000000005,-9.3,127.04,942,-15.4 -2013,12,7,5,30,0,0,0,4.1000000000000005,-9.3,114.53,942,-15.700000000000001 -2013,12,7,6,30,0,0,0,4,-9.3,102.34,942,-16 -2013,12,7,7,30,0,0,0,4,-8.9,90.08,942,-16.2 -2013,12,7,8,30,60,60,0,4,-8.200000000000001,79.72,942,-16.1 -2013,12,7,9,30,112,112,0,3.8000000000000003,-7.4,70.10000000000001,942,-15.9 -2013,12,7,10,30,234,201,70,3.5,-6.7,62.25,941,-15.600000000000001 -2013,12,7,11,30,231,215,28,3.2,-6,56.96,940,-15.100000000000001 -2013,12,7,12,30,177,175,4,2.9000000000000004,-5.4,54.99,939,-14.5 -2013,12,7,13,30,332,257,136,2.5,-4.800000000000001,56.69,937,-13.8 -2013,12,7,14,30,321,208,237,2.2,-4.5,61.75,936,-13.200000000000001 -2013,12,7,15,30,113,113,0,1.9000000000000001,-4.7,69.43,935,-12.600000000000001 -2013,12,7,16,30,85,73,65,1.7000000000000002,-5.1000000000000005,78.93,935,-12.3 -2013,12,7,17,30,0,0,0,1.6,-5.4,89.36,935,-12.100000000000001 -2013,12,7,18,30,0,0,0,1.1,-5.9,101.42,935,-12.100000000000001 -2013,12,7,19,30,0,0,0,0.8,-6,113.58,936,-12 -2013,12,7,20,30,0,0,0,0.9,-6.1000000000000005,126.07000000000001,936,-11.8 -2013,12,7,21,30,0,0,0,1.1,-6.300000000000001,138.73,935,-11.700000000000001 -2013,12,7,22,30,0,0,0,1.2000000000000002,-6.800000000000001,151.3,934,-11.700000000000001 -2013,12,7,23,30,0,0,0,1.2000000000000002,-7.300000000000001,163.16,933,-11.8 -2013,12,8,0,30,0,0,0,1.4000000000000001,-7.6000000000000005,170.39000000000001,933,-11.8 -2013,12,8,1,30,0,0,0,1.8,-7.800000000000001,164.09,932,-11.8 -2013,12,8,2,30,0,0,0,2,-7.800000000000001,152.38,931,-11.700000000000001 -2013,12,8,3,30,0,0,0,2.1,-7.7,139.83,931,-11.600000000000001 -2013,12,8,4,30,0,0,0,1.9000000000000001,-7.5,127.18,930,-11.4 -2013,12,8,5,30,0,0,0,1.8,-7.300000000000001,114.67,930,-11.100000000000001 -2013,12,8,6,30,0,0,0,1.7000000000000002,-7.1000000000000005,102.48,929,-10.9 -2013,12,8,7,30,0,0,0,2.1,-6.4,90.22,929,-10.8 -2013,12,8,8,30,73,65,43,2.8000000000000003,-4.4,79.86,929,-10 -2013,12,8,9,30,191,142,145,3.5,-1.7000000000000002,70.25,929,-8.700000000000001 -2013,12,8,10,30,506,67,949,3.8000000000000003,1,62.4,929,-7.1000000000000005 -2013,12,8,11,30,608,73,986,4,3.6,57.09,928,-5.1000000000000005 -2013,12,8,12,30,646,78,993,4,6,55.1,927,-3.5 -2013,12,8,13,30,615,75,986,3.9000000000000004,8.1,56.76,926,-2.1 -2013,12,8,14,30,519,69,952,3.6,9.3,61.79,926,-1 -2013,12,8,15,30,366,59,877,2.3000000000000003,8.3,69.45,926,0 -2013,12,8,16,30,178,42,711,1.5,5,78.93,926,1.5 -2013,12,8,17,30,0,0,0,1.5,3.1,89.36,926,-0.6000000000000001 -2013,12,8,18,30,0,0,0,1.5,2.6,101.39,927,-1.1 -2013,12,8,19,30,0,0,0,1.5,2.1,113.53,927,-1.1 -2013,12,8,20,30,0,0,0,1.5,0.8,126.02,927,-1.1 -2013,12,8,21,30,0,0,0,1.5,-0.4,138.67000000000002,928,-1 -2013,12,8,22,30,0,0,0,1.5,-0.9,151.26,928,-0.9 -2013,12,8,23,30,0,0,0,1.4000000000000001,-1,163.14000000000001,929,-1 -2013,12,9,0,30,0,0,0,1.1,-1,170.48,929,-1 -2013,12,9,1,30,0,0,0,1,-1.3,164.24,928,-1.3 -2013,12,9,2,30,0,0,0,1.4000000000000001,-2.1,152.52,928,-2.1 -2013,12,9,3,30,0,0,0,2.3000000000000003,-3,139.96,929,-3 -2013,12,9,4,30,0,0,0,3.2,-3.4000000000000004,127.31,929,-3.4000000000000004 -2013,12,9,5,30,0,0,0,4.1000000000000005,-3.6,114.8,930,-3.6 -2013,12,9,6,30,0,0,0,4.5,-3.9000000000000004,102.62,931,-3.9000000000000004 -2013,12,9,7,30,0,0,0,5,-3.9000000000000004,90.96000000000001,932,-4.1000000000000005 -2013,12,9,8,30,146,51,550,5.2,-3.4000000000000004,80,932,-4.5 -2013,12,9,9,30,330,78,750,4.9,-2.7,70.39,933,-4.6000000000000005 -2013,12,9,10,30,100,100,0,4.4,-1.9000000000000001,62.53,934,-4.800000000000001 -2013,12,9,11,30,133,133,0,3.9000000000000004,-1.1,57.21,934,-4.9 -2013,12,9,12,30,134,134,0,3.5,-0.6000000000000001,55.19,933,-4.9 -2013,12,9,13,30,593,104,894,3.3000000000000003,-0.30000000000000004,56.83,933,-5 -2013,12,9,14,30,501,93,864,3.5,-0.5,61.83,933,-5.1000000000000005 -2013,12,9,15,30,352,77,785,3.8000000000000003,-1.1,69.45,934,-5.5 -2013,12,9,16,30,168,52,603,3.9000000000000004,-2.2,78.92,935,-6.1000000000000005 -2013,12,9,17,30,0,0,0,3.7,-3,89.32000000000001,935,-7.1000000000000005 -2013,12,9,18,30,0,0,0,2.6,-5.1000000000000005,101.35000000000001,937,-8.200000000000001 -2013,12,9,19,30,0,0,0,1.9000000000000001,-6.300000000000001,113.48,938,-9.200000000000001 -2013,12,9,20,30,0,0,0,1.5,-7,125.97,939,-9.9 -2013,12,9,21,30,0,0,0,1.2000000000000002,-7.300000000000001,138.62,939,-10.4 -2013,12,9,22,30,0,0,0,1,-7.5,151.21,940,-10.700000000000001 -2013,12,9,23,30,0,0,0,1,-7.800000000000001,163.12,940,-10.9 -2013,12,10,0,30,0,0,0,1.1,-8.1,170.56,940,-11.100000000000001 -2013,12,10,1,30,0,0,0,1.1,-8.3,164.38,940,-11.200000000000001 -2013,12,10,2,30,0,0,0,1,-8.3,152.65,940,-11.200000000000001 -2013,12,10,3,30,0,0,0,1.1,-8.200000000000001,140.1,940,-11 -2013,12,10,4,30,0,0,0,1.3,-8,127.44,940,-10.600000000000001 -2013,12,10,5,30,0,0,0,1.5,-7.800000000000001,114.94,940,-10.200000000000001 -2013,12,10,6,30,0,0,0,1.5,-7.7,102.75,940,-9.8 -2013,12,10,7,30,0,0,0,1.8,-6.5,91.09,940,-9.5 -2013,12,10,8,30,162,34,744,1.9000000000000001,-4,80.14,940,-9.1 -2013,12,10,9,30,221,130,273,1.6,-0.8,70.52,940,-8.200000000000001 -2013,12,10,10,30,504,53,982,1.9000000000000001,2.2,62.660000000000004,941,-7.800000000000001 -2013,12,10,11,30,600,57,1006,2.5,4.3,57.33,940,-8.3 -2013,12,10,12,30,639,63,1011,3,5.7,55.28,939,-8.700000000000001 -2013,12,10,13,30,604,61,995,3.3000000000000003,6.5,56.89,937,-9 -2013,12,10,14,30,507,57,954,3.4000000000000004,6.7,61.86,936,-8.9 -2013,12,10,15,30,357,51,872,2.6,5.7,69.46000000000001,936,-8.6 -2013,12,10,16,30,174,38,708,1.7000000000000002,2.3000000000000003,78.9,935,-5.800000000000001 -2013,12,10,17,30,0,0,0,1.6,-0.2,89.29,935,-6.5 -2013,12,10,18,30,0,0,0,2,-1.7000000000000002,101.3,935,-7.4 -2013,12,10,19,30,0,0,0,2.3000000000000003,-1.7000000000000002,113.43,935,-7.300000000000001 -2013,12,10,20,30,0,0,0,2.7,-1.6,125.91,935,-7.2 -2013,12,10,21,30,0,0,0,3.1,-1.4000000000000001,138.55,935,-7.1000000000000005 -2013,12,10,22,30,0,0,0,3.3000000000000003,-1.4000000000000001,151.15,935,-6.9 -2013,12,10,23,30,0,0,0,3,-1.9000000000000001,163.08,935,-6.7 -2013,12,11,0,30,0,0,0,2.9000000000000004,-2.2,170.64000000000001,935,-6.6000000000000005 -2013,12,11,1,30,0,0,0,2.8000000000000003,-2.4000000000000004,164.51,934,-6.300000000000001 -2013,12,11,2,30,0,0,0,2.6,-3,152.78,934,-6.1000000000000005 -2013,12,11,3,30,0,0,0,2.5,-3.4000000000000004,140.23,935,-6.2 -2013,12,11,4,30,0,0,0,2.6,-3.5,127.57000000000001,935,-6.2 -2013,12,11,5,30,0,0,0,2.6,-3.4000000000000004,115.07000000000001,936,-6.300000000000001 -2013,12,11,6,30,0,0,0,2.6,-3.4000000000000004,102.89,936,-6.5 -2013,12,11,7,30,0,0,0,2.9000000000000004,-2.8000000000000003,91.23,937,-6.9 -2013,12,11,8,30,82,63,111,3.5,-1.2000000000000002,80.27,938,-7.2 -2013,12,11,9,30,261,100,486,4.1000000000000005,0.7000000000000001,70.65,939,-7.6000000000000005 -2013,12,11,10,30,379,155,489,4.6000000000000005,2.4000000000000004,62.78,940,-7.800000000000001 -2013,12,11,11,30,459,191,499,5,3.8000000000000003,57.43,940,-7.6000000000000005 -2013,12,11,12,30,501,184,557,5.2,4.9,55.370000000000005,940,-7.300000000000001 -2013,12,11,13,30,461,203,474,5.300000000000001,5.4,56.94,940,-7 -2013,12,11,14,30,388,165,472,5.300000000000001,5.1000000000000005,61.88,940,-6.7 -2013,12,11,15,30,218,145,207,4.800000000000001,4.2,69.45,941,-6.4 -2013,12,11,16,30,87,73,71,3.5,2.6,78.87,942,-6 -2013,12,11,17,30,0,0,0,2.6,1.6,89.26,942,-5.300000000000001 -2013,12,11,18,30,0,0,0,2,-0.4,101.25,943,-5.2 -2013,12,11,19,30,0,0,0,2.1,-1.2000000000000002,113.37,944,-5.300000000000001 -2013,12,11,20,30,0,0,0,2,-1.8,125.84,944,-5.300000000000001 -2013,12,11,21,30,0,0,0,1.8,-2.5,138.49,944,-5.4 -2013,12,11,22,30,0,0,0,1.7000000000000002,-2.9000000000000004,151.09,945,-5.4 -2013,12,11,23,30,0,0,0,1.8,-3,163.05,945,-5.300000000000001 -2013,12,12,0,30,0,0,0,1.7000000000000002,-3.3000000000000003,170.71,944,-5.300000000000001 -2013,12,12,1,30,0,0,0,1.3,-3.6,164.64000000000001,944,-5.2 -2013,12,12,2,30,0,0,0,1.1,-3.8000000000000003,152.91,944,-5.1000000000000005 -2013,12,12,3,30,0,0,0,0.9,-3.9000000000000004,140.35,944,-5.1000000000000005 -2013,12,12,4,30,0,0,0,0.7000000000000001,-4,127.7,944,-5 -2013,12,12,5,30,0,0,0,0.4,-3.9000000000000004,115.2,944,-4.9 -2013,12,12,6,30,0,0,0,0.30000000000000004,-3.8000000000000003,103.02,944,-4.800000000000001 -2013,12,12,7,30,0,0,0,0.7000000000000001,-3.4000000000000004,91.36,944,-4.800000000000001 -2013,12,12,8,30,142,39,620,1.3,-1.9000000000000001,80.4,944,-4.7 -2013,12,12,9,30,246,110,412,1.7000000000000002,0.30000000000000004,70.78,944,-4.4 -2013,12,12,10,30,473,65,896,1.9000000000000001,2.5,62.9,943,-4 -2013,12,12,11,30,568,70,928,2.1,4.3,57.54,943,-3.6 -2013,12,12,12,30,482,213,473,2.2,5.6000000000000005,55.44,941,-3.4000000000000004 -2013,12,12,13,30,401,242,292,2.3000000000000003,6.5,56.99,940,-3.2 -2013,12,12,14,30,39,39,0,2.5,7,61.89,938,-3.1 -2013,12,12,15,30,238,138,284,2.2,6.6000000000000005,69.44,938,-2.9000000000000004 -2013,12,12,16,30,79,72,35,1.7000000000000002,5.300000000000001,78.85000000000001,937,-1.9000000000000001 -2013,12,12,17,30,0,0,0,1.6,4.4,89.22,937,-1.3 -2013,12,12,18,30,0,0,0,2.1,3.9000000000000004,101.19,937,-1.4000000000000001 -2013,12,12,19,30,0,0,0,2.3000000000000003,3.7,113.31,937,-1.3 -2013,12,12,20,30,0,0,0,2.6,3.7,125.77,937,-1.2000000000000002 -2013,12,12,21,30,0,0,0,3.3000000000000003,3.7,138.42000000000002,936,-1.1 -2013,12,12,22,30,0,0,0,3.9000000000000004,3.7,151.02,935,-0.7000000000000001 -2013,12,12,23,30,0,0,0,4.3,3.6,163,934,-0.2 -2013,12,13,0,30,0,0,0,4.4,3.3000000000000003,170.76,933,0.6000000000000001 -2013,12,13,1,30,0,0,0,4,3,164.77,932,1.4000000000000001 -2013,12,13,2,30,0,0,0,3.5,2.7,153.04,931,1.9000000000000001 -2013,12,13,3,30,0,0,0,3.2,2.6,140.48,930,2 -2013,12,13,4,30,0,0,0,3,2.4000000000000004,127.83,930,2 -2013,12,13,5,30,0,0,0,2.8000000000000003,1.9000000000000001,115.32000000000001,929,1.9000000000000001 -2013,12,13,6,30,0,0,0,2.5,1.3,103.14,928,1.3 -2013,12,13,7,30,0,0,0,3.1,1.8,91.48,928,1.5 -2013,12,13,8,30,47,47,0,4.3,3.6,80.53,928,1.8 -2013,12,13,9,30,211,131,245,5.2,6.1000000000000005,70.9,927,2 -2013,12,13,10,30,306,198,237,5.9,8.700000000000001,63.01,926,2.5 -2013,12,13,11,30,392,238,288,6.1000000000000005,11.200000000000001,57.63,925,3.2 -2013,12,13,12,30,151,151,0,6.2,13.5,55.51,923,4 -2013,12,13,13,30,14,14,0,6.300000000000001,15.3,57.03,922,4.9 -2013,12,13,14,30,104,104,0,6.300000000000001,16.3,61.9,921,5.4 -2013,12,13,15,30,291,99,548,5.6000000000000005,16.1,69.43,920,5.4 -2013,12,13,16,30,169,44,644,4.2,13.9,78.81,920,5.2 -2013,12,13,17,30,0,0,0,3.5,12.100000000000001,89.2,921,4.7 -2013,12,13,18,30,0,0,0,4.2,10.3,101.13,921,3.7 -2013,12,13,19,30,0,0,0,4.4,9.5,113.24000000000001,922,2.9000000000000004 -2013,12,13,20,30,0,0,0,4.6000000000000005,8.6,125.7,922,2.2 -2013,12,13,21,30,0,0,0,4.6000000000000005,7.7,138.34,922,1.7000000000000002 -2013,12,13,22,30,0,0,0,4.5,6.800000000000001,150.95000000000002,923,1.2000000000000002 -2013,12,13,23,30,0,0,0,4.1000000000000005,5.6000000000000005,162.95000000000002,923,0.7000000000000001 -2013,12,14,0,30,0,0,0,3.8000000000000003,4.4,170.81,924,0.1 -2013,12,14,1,30,0,0,0,3.8000000000000003,3.3000000000000003,164.89000000000001,925,-0.8 -2013,12,14,2,30,0,0,0,4.1000000000000005,2.2,153.16,925,-1.9000000000000001 -2013,12,14,3,30,0,0,0,4.5,1.4000000000000001,140.6,926,-3 -2013,12,14,4,30,0,0,0,4.7,0.6000000000000001,127.95,927,-4.1000000000000005 -2013,12,14,5,30,0,0,0,4.800000000000001,-0.1,115.45,928,-4.7 -2013,12,14,6,30,0,0,0,4.7,-0.8,103.27,930,-5 -2013,12,14,7,30,0,0,0,5,-0.8,91.61,932,-5.1000000000000005 -2013,12,14,8,30,140,37,636,6.1000000000000005,0.30000000000000004,80.65,933,-5.1000000000000005 -2013,12,14,9,30,324,53,835,6.6000000000000005,2,71.02,935,-4.9 -2013,12,14,10,30,478,60,924,6.300000000000001,3.9000000000000004,63.11,935,-5.2 -2013,12,14,11,30,580,64,966,6,5.7,57.72,935,-5.7 -2013,12,14,12,30,619,63,983,5.9,7.2,55.57,935,-6 -2013,12,14,13,30,592,62,975,5.9,8.3,57.06,935,-5.9 -2013,12,14,14,30,502,58,942,5.800000000000001,8.9,61.9,935,-5.7 -2013,12,14,15,30,357,50,873,5.300000000000001,8.700000000000001,69.4,935,-5.4 -2013,12,14,16,30,176,36,716,3.6,6.6000000000000005,78.77,936,-4.9 -2013,12,14,17,30,0,0,0,2.3000000000000003,4.800000000000001,89.13,936,-3.8000000000000003 -2013,12,14,18,30,0,0,0,1.7000000000000002,1.9000000000000001,101.06,937,-3.8000000000000003 -2013,12,14,19,30,0,0,0,1.5,0.9,113.16,937,-4 -2013,12,14,20,30,0,0,0,1.4000000000000001,0.2,125.62,938,-4.3 -2013,12,14,21,30,0,0,0,1.3,-0.30000000000000004,138.26,938,-4.5 -2013,12,14,22,30,0,0,0,1.2000000000000002,-0.4,150.87,938,-4.6000000000000005 -2013,12,14,23,30,0,0,0,1.1,-0.1,162.89000000000001,938,-4.7 -2013,12,15,0,30,0,0,0,1,-0.1,170.85,938,-4.800000000000001 -2013,12,15,1,30,0,0,0,1.2000000000000002,-0.8,165.01,938,-4.800000000000001 -2013,12,15,2,30,0,0,0,1.3,-1.8,153.29,938,-4.800000000000001 -2013,12,15,3,30,0,0,0,1.4000000000000001,-2.4000000000000004,140.73,938,-4.9 -2013,12,15,4,30,0,0,0,1.5,-2.8000000000000003,128.07,937,-5 -2013,12,15,5,30,0,0,0,1.5,-3.1,115.57000000000001,937,-5.1000000000000005 -2013,12,15,6,30,0,0,0,1.7000000000000002,-3.2,103.39,938,-5.1000000000000005 -2013,12,15,7,30,0,0,0,2.3000000000000003,-1.7000000000000002,91.73,938,-5.2 -2013,12,15,8,30,141,29,698,3.2,1.5,80.76,938,-4.9 -2013,12,15,9,30,326,41,883,3.6,5.1000000000000005,71.13,938,-4.5 -2013,12,15,10,30,481,47,963,4,9,63.21,938,-4 -2013,12,15,11,30,584,50,1000,4.4,12,57.800000000000004,937,-4.5 -2013,12,15,12,30,621,57,1000,4.3,13.5,55.63,936,-4.5 -2013,12,15,13,30,596,57,990,4.2,14.200000000000001,57.08,935,-4.5 -2013,12,15,14,30,506,55,957,4.1000000000000005,14.3,61.9,935,-4.7 -2013,12,15,15,30,361,49,886,3.3000000000000003,13.4,69.37,934,-4.7 -2013,12,15,16,30,179,37,725,2.1,10,78.72,934,-2.7 -2013,12,15,17,30,0,0,0,1.7000000000000002,7.4,89.08,934,-1.9000000000000001 -2013,12,15,18,30,0,0,0,1.9000000000000001,5.2,100.99000000000001,934,-2.8000000000000003 -2013,12,15,19,30,0,0,0,2,4.6000000000000005,113.09,935,-3 -2013,12,15,20,30,0,0,0,2.2,4,125.54,935,-3.1 -2013,12,15,21,30,0,0,0,2.4000000000000004,3.6,138.18,935,-3.3000000000000003 -2013,12,15,22,30,0,0,0,2.8000000000000003,3.2,150.79,935,-3.3000000000000003 -2013,12,15,23,30,0,0,0,3,2.7,162.83,935,-3.3000000000000003 -2013,12,16,0,30,0,0,0,3,2,170.88,935,-3.3000000000000003 -2013,12,16,1,30,0,0,0,3,1.2000000000000002,165.12,934,-3.3000000000000003 -2013,12,16,2,30,0,0,0,2.9000000000000004,0.5,153.41,934,-3.2 -2013,12,16,3,30,0,0,0,3,0,140.85,934,-3.2 -2013,12,16,4,30,0,0,0,2.9000000000000004,-0.5,128.19,934,-3.2 -2013,12,16,5,30,0,0,0,2.8000000000000003,-1,115.69,934,-3.2 -2013,12,16,6,30,0,0,0,2.7,-1.4000000000000001,103.51,934,-3.3000000000000003 -2013,12,16,7,30,0,0,0,3,-0.4,91.84,934,-3.5 -2013,12,16,8,30,140,30,693,3.3000000000000003,2.2,80.88,934,-3.7 -2013,12,16,9,30,325,41,883,2.9000000000000004,5.7,71.23,934,-3.6 -2013,12,16,10,30,480,47,963,2.8000000000000003,9.9,63.31,934,-2.8000000000000003 -2013,12,16,11,30,582,50,1001,3.1,13.8,57.870000000000005,934,-2.6 -2013,12,16,12,30,622,50,1015,3.4000000000000004,16.7,55.67,933,-2.9000000000000004 -2013,12,16,13,30,596,49,1007,3.5,18.1,57.09,932,-3.7 -2013,12,16,14,30,506,46,976,3.1,18.400000000000002,61.88,932,-3.6 -2013,12,16,15,30,361,41,908,2,17,69.34,932,-3.1 -2013,12,16,16,30,180,32,754,1.2000000000000002,14,78.67,932,3.2 -2013,12,16,17,30,0,0,0,1.3,12.200000000000001,89.03,932,-0.30000000000000004 -2013,12,16,18,30,0,0,0,1.5,8.700000000000001,100.92,933,-1.4000000000000001 -2013,12,16,19,30,0,0,0,1.6,7.1000000000000005,113.01,933,-1.3 -2013,12,16,20,30,0,0,0,1.7000000000000002,6.1000000000000005,125.45,933,-1.4000000000000001 -2013,12,16,21,30,0,0,0,1.8,5.4,138.09,934,-1.4000000000000001 -2013,12,16,22,30,0,0,0,2,4.800000000000001,150.71,934,-1.5 -2013,12,16,23,30,0,0,0,2.2,4.2,162.76,934,-1.7000000000000002 -2013,12,17,0,30,0,0,0,2.4000000000000004,3.6,170.9,934,-2 -2013,12,17,1,30,0,0,0,2.4000000000000004,2.9000000000000004,165.23,934,-2.2 -2013,12,17,2,30,0,0,0,2.4000000000000004,2.3000000000000003,153.52,934,-2.4000000000000004 -2013,12,17,3,30,0,0,0,2.3000000000000003,1.8,140.96,934,-2.6 -2013,12,17,4,30,0,0,0,2.2,1.4000000000000001,128.31,934,-2.7 -2013,12,17,5,30,0,0,0,2,1,115.81,934,-2.7 -2013,12,17,6,30,0,0,0,1.8,0.8,103.62,935,-2.8000000000000003 -2013,12,17,7,30,0,0,0,1.6,2.1,91.96000000000001,935,-3 -2013,12,17,8,30,138,30,687,1.8,5.4,80.98,936,-2.3000000000000003 -2013,12,17,9,30,323,42,879,1.6,8.9,71.33,936,-2.5 -2013,12,17,10,30,479,48,961,0.9,12.5,63.39,936,-1.8 -2013,12,17,11,30,582,52,999,0.7000000000000001,16.2,57.93,936,-1 -2013,12,17,12,30,625,58,1007,0.9,18.5,55.71,935,-1.8 -2013,12,17,13,30,595,57,991,1.1,19.3,57.1,935,-2 -2013,12,17,14,30,506,54,959,1.4000000000000001,19.200000000000003,61.86,934,-2 -2013,12,17,15,30,362,47,891,1.2000000000000002,17.8,69.29,934,-1.7000000000000002 -2013,12,17,16,30,181,36,733,1.1,14.200000000000001,78.61,935,3.8000000000000003 -2013,12,17,17,30,15,10,271,1.3,11.9,88.96000000000001,935,1.6 -2013,12,17,18,30,0,0,0,1.5,8.9,100.84,935,0.2 -2013,12,17,19,30,0,0,0,1.5,7.9,112.92,936,-0.1 -2013,12,17,20,30,0,0,0,1.6,7,125.37,936,-0.30000000000000004 -2013,12,17,21,30,0,0,0,1.6,6.2,138,936,-0.4 -2013,12,17,22,30,0,0,0,1.6,5.4,150.62,936,-0.4 -2013,12,17,23,30,0,0,0,1.7000000000000002,4.800000000000001,162.69,935,-0.30000000000000004 -2013,12,18,0,30,0,0,0,1.8,4.2,170.92000000000002,935,-0.1 -2013,12,18,1,30,0,0,0,1.9000000000000001,3.8000000000000003,165.34,935,0.2 -2013,12,18,2,30,0,0,0,2,3.3000000000000003,153.64000000000001,934,0.4 -2013,12,18,3,30,0,0,0,2,2.9000000000000004,141.08,934,0.5 -2013,12,18,4,30,0,0,0,2.2,2.6,128.43,934,0.4 -2013,12,18,5,30,0,0,0,2.3000000000000003,2.2,115.92,934,0.1 -2013,12,18,6,30,0,0,0,2.4000000000000004,2,103.74000000000001,934,-0.30000000000000004 -2013,12,18,7,30,0,0,0,3,2.9000000000000004,92.07000000000001,934,-0.5 -2013,12,18,8,30,85,56,186,3.7,5.5,81.09,934,-0.2 -2013,12,18,9,30,315,56,813,3.7,8.700000000000001,71.42,934,0.6000000000000001 -2013,12,18,10,30,469,65,905,4.5,12.700000000000001,63.47,933,2.1 -2013,12,18,11,30,573,70,949,5.7,16.2,57.99,932,3.6 -2013,12,18,12,30,615,63,981,6.1000000000000005,18.3,55.74,930,3.5 -2013,12,18,13,30,587,64,964,6,19.200000000000003,57.1,929,3.1 -2013,12,18,14,30,499,63,925,5.800000000000001,19.400000000000002,61.84,928,2.9000000000000004 -2013,12,18,15,30,356,58,842,5.1000000000000005,18.400000000000002,69.25,927,2.8000000000000003 -2013,12,18,16,30,92,76,81,4,15.9,78.55,927,3.3000000000000003 -2013,12,18,17,30,7,7,0,3.6,14.100000000000001,88.9,927,3.8000000000000003 -2013,12,18,18,30,0,0,0,4.800000000000001,12.700000000000001,100.76,927,4 -2013,12,18,19,30,0,0,0,5.1000000000000005,11.8,112.83,927,4.5 -2013,12,18,20,30,0,0,0,5,10.700000000000001,125.27,926,5.1000000000000005 -2013,12,18,21,30,0,0,0,5.1000000000000005,9.8,137.91,926,5.7 -2013,12,18,22,30,0,0,0,5.300000000000001,9.200000000000001,150.53,925,6.300000000000001 -2013,12,18,23,30,0,0,0,5.4,8.9,162.61,925,6.7 -2013,12,19,0,30,0,0,0,5.4,8.8,170.92000000000002,924,6.9 -2013,12,19,1,30,0,0,0,5.7,8.8,165.44,924,7.1000000000000005 -2013,12,19,2,30,0,0,0,6,9,153.75,923,7.300000000000001 -2013,12,19,3,30,0,0,0,6,9.1,141.19,923,7.9 -2013,12,19,4,30,0,0,0,5.800000000000001,9.1,128.54,922,8.5 -2013,12,19,5,30,0,0,0,5.4,9,116.03,922,9 -2013,12,19,6,30,0,0,0,5.2,9,103.84,922,9 -2013,12,19,7,30,0,0,0,5.300000000000001,9.4,92.17,922,9.4 -2013,12,19,8,30,84,55,193,6.1000000000000005,10.700000000000001,81.19,922,9.9 -2013,12,19,9,30,182,132,157,7.2,12.9,71.51,922,10.3 -2013,12,19,10,30,355,163,433,7.5,15.700000000000001,63.550000000000004,922,10.100000000000001 -2013,12,19,11,30,459,176,535,7.4,18.2,58.050000000000004,921,9.3 -2013,12,19,12,30,421,253,300,7.1000000000000005,20,55.76,920,8.4 -2013,12,19,13,30,446,215,426,6.6000000000000005,20.8,57.09,919,7.6000000000000005 -2013,12,19,14,30,348,199,315,5.7,20.6,61.800000000000004,919,6.7 -2013,12,19,15,30,289,106,514,4.5,19.6,69.19,919,6.300000000000001 -2013,12,19,16,30,177,40,688,3.2,16.7,78.48,919,6.6000000000000005 -2013,12,19,17,30,16,11,235,2.7,14.600000000000001,88.83,919,6.7 -2013,12,19,18,30,0,0,0,3.6,12.8,100.67,919,6.4 -2013,12,19,19,30,0,0,0,4.2,12.100000000000001,112.74000000000001,920,6.7 -2013,12,19,20,30,0,0,0,4.4,11.200000000000001,125.18,920,7.2 -2013,12,19,21,30,0,0,0,4.7,10.8,137.81,920,7.800000000000001 -2013,12,19,22,30,0,0,0,4.800000000000001,10.5,150.43,920,8.3 -2013,12,19,23,30,0,0,0,4.6000000000000005,10.200000000000001,162.52,920,8.8 -2013,12,20,0,30,0,0,0,4.3,9.8,170.91,920,9 -2013,12,20,1,30,0,0,0,3.6,9.200000000000001,165.54,920,9.1 -2013,12,20,2,30,0,0,0,3,8.6,153.86,920,8.6 -2013,12,20,3,30,0,0,0,2.3000000000000003,8.200000000000001,141.3,920,8.200000000000001 -2013,12,20,4,30,0,0,0,1.8,7.7,128.65,920,7.7 -2013,12,20,5,30,0,0,0,1.5,7.1000000000000005,116.14,921,7.1000000000000005 -2013,12,20,6,30,0,0,0,2.2,6.7,103.95,922,6.7 -2013,12,20,7,30,0,0,0,3.4000000000000004,6.4,92.27,923,5.7 -2013,12,20,8,30,12,12,0,3.7,6,81.28,924,3.8000000000000003 -2013,12,20,9,30,25,25,0,3.7,5.6000000000000005,71.60000000000001,924,2 -2013,12,20,10,30,80,80,0,3.8000000000000003,5.800000000000001,63.61,923,0.8 -2013,12,20,11,30,46,46,0,3.6,6.5,58.09,923,0.7000000000000001 -2013,12,20,12,30,76,76,0,3.2,6.4,55.78,923,0.8 -2013,12,20,13,30,36,36,0,3.2,5.5,57.08,923,1 -2013,12,20,14,30,59,59,0,3.4000000000000004,4.800000000000001,61.76,921,1 -2013,12,20,15,30,69,69,0,3.1,4.4,69.13,920,0.8 -2013,12,20,16,30,79,74,23,2.6,3.7,78.4,921,0.7000000000000001 -2013,12,20,17,30,4,4,0,2.3000000000000003,3.3000000000000003,88.74,921,0.5 -2013,12,20,18,30,0,0,0,2.5,2,100.57000000000001,921,0.2 -2013,12,20,19,30,0,0,0,2.1,1.4000000000000001,112.64,921,-0.1 -2013,12,20,20,30,0,0,0,1.8,1.3,125.08,920,-0.1 -2013,12,20,21,30,0,0,0,2.1,1.3,137.71,919,0.2 -2013,12,20,22,30,0,0,0,2.1,1.3,150.33,919,0.5 -2013,12,20,23,30,0,0,0,1.7000000000000002,1.3,162.43,919,0.8 -2013,12,21,0,30,0,0,0,1.9000000000000001,1.5,170.9,919,1 -2013,12,21,1,30,0,0,0,2.4000000000000004,1.6,165.63,918,1.3 -2013,12,21,2,30,0,0,0,2.5,1.7000000000000002,153.96,918,1.5 -2013,12,21,3,30,0,0,0,2.4000000000000004,1.8,141.41,917,1.5 -2013,12,21,4,30,0,0,0,2,2.1,128.75,917,1.6 -2013,12,21,5,30,0,0,0,1.6,2.3000000000000003,116.24000000000001,916,1.8 -2013,12,21,6,30,0,0,0,1.3,2.3000000000000003,104.05,916,2.1 -2013,12,21,7,30,0,0,0,1.7000000000000002,3.1,92.37,916,2.3000000000000003 -2013,12,21,8,30,41,41,0,3.3000000000000003,5.2,81.37,916,3.4000000000000004 -2013,12,21,9,30,99,99,0,5.4,7.800000000000001,71.67,916,4.9 -2013,12,21,10,30,227,193,77,7.1000000000000005,9.8,63.67,916,4.2 -2013,12,21,11,30,570,59,968,7.9,10.9,58.13,915,0.8 -2013,12,21,12,30,610,60,977,8.1,11.4,55.79,914,-0.7000000000000001 -2013,12,21,13,30,587,64,962,8.1,11.700000000000001,57.06,913,-0.6000000000000001 -2013,12,21,14,30,194,183,24,7.5,11.8,61.71,913,-0.1 -2013,12,21,15,30,358,57,843,6.2,11.5,69.06,913,0.2 -2013,12,21,16,30,178,44,662,4.4,10,78.32000000000001,914,0.7000000000000001 -2013,12,21,17,30,16,12,163,3.4000000000000004,8.8,88.67,915,1.4000000000000001 -2013,12,21,18,30,0,0,0,4.2,7.9,100.48,916,1.5 -2013,12,21,19,30,0,0,0,4.800000000000001,7.7,112.54,917,1.7000000000000002 -2013,12,21,20,30,0,0,0,5,7.2,124.97,918,1.8 -2013,12,21,21,30,0,0,0,4.7,6.4,137.6,919,1.6 -2013,12,21,22,30,0,0,0,3.8000000000000003,4.9,150.23,920,1.2000000000000002 -2013,12,21,23,30,0,0,0,3.2,2.9000000000000004,162.34,922,0.9 -2013,12,22,0,30,0,0,0,3.5,1.2000000000000002,170.87,923,0.30000000000000004 -2013,12,22,1,30,0,0,0,3.8000000000000003,-0.30000000000000004,165.71,924,-0.7000000000000001 -2013,12,22,2,30,0,0,0,3.5,-1.6,154.06,925,-2.2 -2013,12,22,3,30,0,0,0,3,-2.6,141.51,926,-3.7 -2013,12,22,4,30,0,0,0,2.6,-3.4000000000000004,128.86,927,-4.800000000000001 -2013,12,22,5,30,0,0,0,2.7,-3.7,116.35000000000001,928,-5.4 -2013,12,22,6,30,0,0,0,2.9000000000000004,-3.9000000000000004,104.15,929,-5.7 -2013,12,22,7,30,0,0,0,3.5,-3.3000000000000003,92.46000000000001,930,-5.9 -2013,12,22,8,30,23,23,0,4.5,-1.5,81.45,932,-5.800000000000001 -2013,12,22,9,30,157,129,90,5.1000000000000005,0.7000000000000001,71.74,933,-6.1000000000000005 -2013,12,22,10,30,464,62,908,5.1000000000000005,2.7,63.730000000000004,934,-5.9 -2013,12,22,11,30,570,67,953,5,4.3,58.15,934,-5.800000000000001 -2013,12,22,12,30,613,67,973,4.9,5.6000000000000005,55.79,933,-5.7 -2013,12,22,13,30,591,66,965,4.7,6.300000000000001,57.03,933,-5.5 -2013,12,22,14,30,505,62,933,4.5,6.5,61.660000000000004,933,-5 -2013,12,22,15,30,363,55,860,4,5.9,68.99,934,-4.5 -2013,12,22,16,30,185,41,702,2.6,3.9000000000000004,78.23,934,-4 -2013,12,22,17,30,19,12,258,1.6,2.3000000000000003,88.56,935,-2.9000000000000004 -2013,12,22,18,30,0,0,0,1.2000000000000002,-0.1,100.38,936,-3.3000000000000003 -2013,12,22,19,30,0,0,0,1.2000000000000002,-1,112.44,937,-3.7 -2013,12,22,20,30,0,0,0,1.1,-1.7000000000000002,124.87,937,-4.1000000000000005 -2013,12,22,21,30,0,0,0,1,-2.4000000000000004,137.5,937,-4.6000000000000005 -2013,12,22,22,30,0,0,0,1,-2.9000000000000004,150.12,938,-5 -2013,12,22,23,30,0,0,0,1,-3.2,162.24,938,-5.4 -2013,12,23,0,30,0,0,0,1,-3.6,170.84,938,-5.7 -2013,12,23,1,30,0,0,0,1,-4.1000000000000005,165.79,938,-5.9 -2013,12,23,2,30,0,0,0,1,-4.5,154.16,938,-6 -2013,12,23,3,30,0,0,0,1.1,-4.7,141.61,939,-5.9 -2013,12,23,4,30,0,0,0,1.2000000000000002,-4.9,128.96,939,-5.800000000000001 -2013,12,23,5,30,0,0,0,1.3,-4.9,116.44,939,-5.5 -2013,12,23,6,30,0,0,0,1.4000000000000001,-4.9,104.24000000000001,940,-5.2 -2013,12,23,7,30,0,0,0,2.1,-3.7,92.55,940,-4.9 -2013,12,23,8,30,126,32,637,2.7,-1.1,81.52,941,-4.4 -2013,12,23,9,30,313,47,850,2.8000000000000003,2,71.81,942,-3.8000000000000003 -2013,12,23,10,30,470,55,938,3.2,5.300000000000001,63.77,942,-3.3000000000000003 -2013,12,23,11,30,576,60,979,3.3000000000000003,8.200000000000001,58.18,941,-2.5 -2013,12,23,12,30,620,61,994,3.2,10.200000000000001,55.78,940,-2 -2013,12,23,13,30,598,59,988,3,11.3,56.99,940,-1.7000000000000002 -2013,12,23,14,30,512,55,959,2.6,11.8,61.59,939,-1.6 -2013,12,23,15,30,373,49,900,1.7000000000000002,11.3,68.91,939,-1.7000000000000002 -2013,12,23,16,30,192,37,753,0.6000000000000001,9.600000000000001,78.14,939,1 -2013,12,23,17,30,21,12,318,0.2,8.6,88.48,940,-1.5 -2013,12,23,18,30,0,0,0,1.1,4.9,100.27,940,-2.2 -2013,12,23,19,30,0,0,0,1.2000000000000002,2.9000000000000004,112.33,941,-2.2 -2013,12,23,20,30,0,0,0,1.2000000000000002,1.5,124.76,941,-2.3000000000000003 -2013,12,23,21,30,0,0,0,1.2000000000000002,0.5,137.38,942,-2.4000000000000004 -2013,12,23,22,30,0,0,0,1.2000000000000002,-0.30000000000000004,150.01,942,-2.7 -2013,12,23,23,30,0,0,0,1.2000000000000002,-1,162.14000000000001,942,-3.1 -2013,12,24,0,30,0,0,0,1.3,-1.7000000000000002,170.8,941,-3.3000000000000003 -2013,12,24,1,30,0,0,0,1.3,-2.2,165.86,941,-3.4000000000000004 -2013,12,24,2,30,0,0,0,1.4000000000000001,-2.6,154.26,941,-3.3000000000000003 -2013,12,24,3,30,0,0,0,1.4000000000000001,-3.1,141.71,940,-3.1 -2013,12,24,4,30,0,0,0,1.5,-3.4000000000000004,129.06,940,-3.4000000000000004 -2013,12,24,5,30,0,0,0,1.5,-3.6,116.54,940,-3.6 -2013,12,24,6,30,0,0,0,1.7000000000000002,-3.7,104.33,940,-3.7 -2013,12,24,7,30,0,0,0,2.4000000000000004,-2.4000000000000004,92.63,940,-2.4000000000000004 -2013,12,24,8,30,128,32,654,3.3000000000000003,0.30000000000000004,81.60000000000001,939,-2 -2013,12,24,9,30,315,47,861,3.8000000000000003,3.7,71.87,939,-1.5 -2013,12,24,10,30,473,55,948,5,7.800000000000001,63.82,939,-0.8 -2013,12,24,11,30,581,60,988,6.1000000000000005,11.100000000000001,58.19,937,-0.6000000000000001 -2013,12,24,12,30,626,63,1000,6.6000000000000005,13.100000000000001,55.76,936,-0.8 -2013,12,24,13,30,604,63,992,6.7,14.100000000000001,56.95,934,-1.2000000000000002 -2013,12,24,14,30,518,60,959,6.5,14.3,61.53,933,-1.7000000000000002 -2013,12,24,15,30,375,52,894,5.9,13.4,68.82000000000001,933,-2 -2013,12,24,16,30,194,40,741,4.4,10.600000000000001,78.04,933,-1.8 -2013,12,24,17,30,21,13,291,3.6,8.5,88.39,932,-1 -2013,12,24,18,30,0,0,0,4.3,6.2,100.16,932,-1.2000000000000002 -2013,12,24,19,30,0,0,0,4.6000000000000005,5.2,112.22,932,-1.3 -2013,12,24,20,30,0,0,0,4.5,4.2,124.64,932,-1.3 -2013,12,24,21,30,0,0,0,4.3,3.3000000000000003,137.27,932,-1.5 -2013,12,24,22,30,0,0,0,4,2.6,149.9,932,-1.6 -2013,12,24,23,30,0,0,0,3.6,1.9000000000000001,162.03,932,-1.8 -2013,12,25,0,30,0,0,0,3.2,1.2000000000000002,170.75,932,-1.9000000000000001 -2013,12,25,1,30,0,0,0,2.5,0.4,165.93,932,-1.9000000000000001 -2013,12,25,2,30,0,0,0,1.9000000000000001,-0.4,154.35,933,-1.8 -2013,12,25,3,30,0,0,0,1.7000000000000002,-1,141.81,933,-1.6 -2013,12,25,4,30,0,0,0,1.6,-1.3,129.15,933,-1.4000000000000001 -2013,12,25,5,30,0,0,0,1.9000000000000001,-1.6,116.63,934,-1.6 -2013,12,25,6,30,0,0,0,2.6,-1.7000000000000002,104.42,935,-1.7000000000000002 -2013,12,25,7,30,0,0,0,3.9000000000000004,-1,92.71000000000001,935,-1.1 -2013,12,25,8,30,119,37,565,5.300000000000001,0.6000000000000001,81.67,936,-1.1 -2013,12,25,9,30,150,127,75,5.9,2.7,71.92,937,-0.9 -2013,12,25,10,30,185,173,28,6,4.800000000000001,63.85,938,-0.6000000000000001 -2013,12,25,11,30,359,241,224,5.9,6.6000000000000005,58.2,938,-0.4 -2013,12,25,12,30,608,75,947,5.7,7.9,55.74,937,-0.2 -2013,12,25,13,30,425,231,356,5.6000000000000005,8.6,56.89,937,-0.1 -2013,12,25,14,30,346,203,297,5.5,8.700000000000001,61.45,938,-0.2 -2013,12,25,15,30,365,60,840,5.300000000000001,8,68.73,938,-0.5 -2013,12,25,16,30,188,44,688,4,6.1000000000000005,77.94,938,-0.9 -2013,12,25,17,30,22,14,265,3,4.7,88.28,938,-1.1 -2013,12,25,18,30,0,0,0,2.2,1.9000000000000001,100.05,939,-1.5 -2013,12,25,19,30,0,0,0,2,0.8,112.10000000000001,940,-2.1 -2013,12,25,20,30,0,0,0,1.7000000000000002,-0.2,124.53,940,-2.8000000000000003 -2013,12,25,21,30,0,0,0,1.5,-1.1,137.15,941,-3.4000000000000004 -2013,12,25,22,30,0,0,0,1.4000000000000001,-1.9000000000000001,149.78,941,-3.8000000000000003 -2013,12,25,23,30,0,0,0,1.3,-2.6,161.92000000000002,940,-4.2 -2013,12,26,0,30,0,0,0,1.3,-3.2,170.69,940,-4.5 -2013,12,26,1,30,0,0,0,1.4000000000000001,-3.7,166,940,-4.800000000000001 -2013,12,26,2,30,0,0,0,1.5,-4.1000000000000005,154.43,940,-5 -2013,12,26,3,30,0,0,0,1.5,-4.4,141.9,940,-5.1000000000000005 -2013,12,26,4,30,0,0,0,1.4000000000000001,-4.5,129.24,939,-5.300000000000001 -2013,12,26,5,30,0,0,0,1.4000000000000001,-4.6000000000000005,116.72,939,-5.4 -2013,12,26,6,30,0,0,0,1.3,-4.5,104.5,940,-5.5 -2013,12,26,7,30,0,0,0,1.3,-2.9000000000000004,92.79,940,-5.7 -2013,12,26,8,30,128,29,692,1.7000000000000002,0.2,81.73,941,-5 -2013,12,26,9,30,318,42,893,1.5,3.8000000000000003,71.97,941,-4.9 -2013,12,26,10,30,473,48,966,0.7000000000000001,7.4,63.88,940,-6.1000000000000005 -2013,12,26,11,30,582,52,1007,0.7000000000000001,9.8,58.2,939,-8.4 -2013,12,26,12,30,630,56,1019,0.9,11,55.71,938,-8.700000000000001 -2013,12,26,13,30,609,55,1013,1.1,11.600000000000001,56.83,937,-8.6 -2013,12,26,14,30,523,52,984,1.1,11.600000000000001,61.370000000000005,936,-8.5 -2013,12,26,15,30,381,47,919,0.7000000000000001,10.9,68.63,936,-8.3 -2013,12,26,16,30,157,58,468,0.4,9.200000000000001,77.83,936,-5.4 -2013,12,26,17,30,24,13,358,0.5,8.1,88.18,936,-6.9 -2013,12,26,18,30,0,0,0,1.2000000000000002,4.9,99.93,937,-6.9 -2013,12,26,19,30,0,0,0,1.4000000000000001,3.1,111.98,937,-6.300000000000001 -2013,12,26,20,30,0,0,0,1.4000000000000001,1.7000000000000002,124.41,938,-6 -2013,12,26,21,30,0,0,0,1.5,0.6000000000000001,137.03,938,-5.7 -2013,12,26,22,30,0,0,0,1.5,-0.1,149.66,938,-5.300000000000001 -2013,12,26,23,30,0,0,0,1.4000000000000001,-0.30000000000000004,161.8,939,-4.9 -2013,12,27,0,30,0,0,0,1.4000000000000001,-0.5,170.62,939,-4.5 -2013,12,27,1,30,0,0,0,1.4000000000000001,-0.8,166.05,939,-4.4 -2013,12,27,2,30,0,0,0,1.4000000000000001,-1.3,154.52,938,-4.5 -2013,12,27,3,30,0,0,0,1.4000000000000001,-1.9000000000000001,141.99,938,-4.7 -2013,12,27,4,30,0,0,0,1.4000000000000001,-2.5,129.33,938,-5.1000000000000005 -2013,12,27,5,30,0,0,0,1.5,-3,116.8,939,-5.6000000000000005 -2013,12,27,6,30,0,0,0,1.5,-3.3000000000000003,104.58,939,-6.2 -2013,12,27,7,30,0,0,0,1.8,-2,92.86,940,-6.6000000000000005 -2013,12,27,8,30,122,30,647,2.3000000000000003,0.8,81.79,940,-5.9 -2013,12,27,9,30,308,45,854,2,3.9000000000000004,72.02,940,-5.7 -2013,12,27,10,30,464,52,935,1.1,7.7,63.9,940,-4.6000000000000005 -2013,12,27,11,30,569,57,970,1.3,10.8,58.2,940,-6 -2013,12,27,12,30,615,59,986,1.9000000000000001,12,55.67,939,-6.5 -2013,12,27,13,30,592,59,973,2.1,12.5,56.77,938,-6.2 -2013,12,27,14,30,507,56,938,2,12.5,61.28,937,-5.7 -2013,12,27,15,30,369,50,869,1.5,11.700000000000001,68.53,937,-5 -2013,12,27,16,30,74,74,0,1.1,9.5,77.72,937,-1.2000000000000002 -2013,12,27,17,30,9,9,0,1.1,7.800000000000001,88.07000000000001,937,-1.2000000000000002 -2013,12,27,18,30,0,0,0,1.4000000000000001,5.1000000000000005,99.81,938,-2.2 -2013,12,27,19,30,0,0,0,1.5,4.1000000000000005,111.86,938,-2.1 -2013,12,27,20,30,0,0,0,1.6,3.4000000000000004,124.29,937,-2 -2013,12,27,21,30,0,0,0,1.8,2.9000000000000004,136.91,937,-1.6 -2013,12,27,22,30,0,0,0,2.1,2.5,149.54,937,-1.1 -2013,12,27,23,30,0,0,0,2.2,2,161.68,937,-0.4 -2013,12,28,0,30,0,0,0,2.1,1.5,170.54,936,0.4 -2013,12,28,1,30,0,0,0,2,1,166.1,936,1 -2013,12,28,2,30,0,0,0,1.9000000000000001,0.7000000000000001,154.6,935,0.7000000000000001 -2013,12,28,3,30,0,0,0,2,0.8,142.07,935,0.8 -2013,12,28,4,30,0,0,0,2.2,1.2000000000000002,129.41,934,1.2000000000000002 -2013,12,28,5,30,0,0,0,2.4000000000000004,1.7000000000000002,116.88,934,1.7000000000000002 -2013,12,28,6,30,0,0,0,2.7,2.2,104.65,934,2.2 -2013,12,28,7,30,0,0,0,2.9000000000000004,2.6,92.92,933,2.6 -2013,12,28,8,30,26,26,0,3.1,3.4000000000000004,81.84,933,3.1 -2013,12,28,9,30,58,58,0,3.5,5.1000000000000005,72.05,933,3.6 -2013,12,28,10,30,116,116,0,4.2,8,63.910000000000004,932,4.6000000000000005 -2013,12,28,11,30,300,243,108,4.9,11,58.18,931,5.300000000000001 -2013,12,28,12,30,324,264,107,5.300000000000001,12.9,55.63,929,5.4 -2013,12,28,13,30,294,250,81,5.5,13.9,56.69,928,5.1000000000000005 -2013,12,28,14,30,300,220,167,5.300000000000001,14.200000000000001,61.18,927,4.2 -2013,12,28,15,30,372,61,845,4.5,13.600000000000001,68.42,926,3.1 -2013,12,28,16,30,196,46,699,2.8000000000000003,10.8,77.61,925,2.6 -2013,12,28,17,30,25,15,279,1.8,8.6,87.96000000000001,925,2.7 -2013,12,28,18,30,0,0,0,2,6.300000000000001,99.69,925,2.3000000000000003 -2013,12,28,19,30,0,0,0,2.5,5.800000000000001,111.74000000000001,925,2.9000000000000004 -2013,12,28,20,30,0,0,0,3.2,5.5,124.16,925,3.8000000000000003 -2013,12,28,21,30,0,0,0,3.9000000000000004,5,136.79,925,4.7 -2013,12,28,22,30,0,0,0,4.4,4.6000000000000005,149.41,925,4.6000000000000005 -2013,12,28,23,30,0,0,0,4.800000000000001,4.4,161.56,925,4.4 -2013,12,29,0,30,0,0,0,4.9,4.3,170.46,925,4.3 -2013,12,29,1,30,0,0,0,4.6000000000000005,4.2,166.14000000000001,924,4.2 -2013,12,29,2,30,0,0,0,4.1000000000000005,4.2,154.67000000000002,924,4.2 -2013,12,29,3,30,0,0,0,3.6,4.3,142.15,924,4.3 -2013,12,29,4,30,0,0,0,3,4.3,129.49,925,4.3 -2013,12,29,5,30,0,0,0,2.6,4.2,116.96000000000001,926,4.2 -2013,12,29,6,30,0,0,0,3.3000000000000003,3.5,104.72,927,3.5 -2013,12,29,7,30,0,0,0,4.9,2.3000000000000003,92.98,929,2.3000000000000003 -2013,12,29,8,30,46,46,0,6.5,1.2000000000000002,81.89,931,0.2 -2013,12,29,9,30,5,5,0,7.1000000000000005,0.5,72.08,932,-2.1 -2013,12,29,10,30,93,93,0,7,0.1,63.92,933,-4.2 -2013,12,29,11,30,56,56,0,6.6000000000000005,0.1,58.160000000000004,934,-5.800000000000001 -2013,12,29,12,30,165,164,2,6.1000000000000005,0.30000000000000004,55.58,933,-7.2 -2013,12,29,13,30,77,77,0,5.7,0.5,56.61,933,-8.200000000000001 -2013,12,29,14,30,61,61,0,5.4,0.5,61.08,933,-8.9 -2013,12,29,15,30,48,48,0,5.2,0,68.3,934,-9.3 -2013,12,29,16,30,59,59,0,5,-0.8,77.48,934,-9.8 -2013,12,29,17,30,8,8,0,4.800000000000001,-1.3,87.83,935,-10.200000000000001 -2013,12,29,18,30,0,0,0,4,-2.5,99.56,936,-10.4 -2013,12,29,19,30,0,0,0,3.1,-3.5,111.61,936,-10.600000000000001 -2013,12,29,20,30,0,0,0,2.1,-4.5,124.03,936,-10.5 -2013,12,29,21,30,0,0,0,1.6,-5.2,136.66,936,-10.3 -2013,12,29,22,30,0,0,0,1.6,-5.7,149.29,936,-10.3 -2013,12,29,23,30,0,0,0,1.7000000000000002,-6,161.43,936,-10.600000000000001 -2013,12,30,0,30,0,0,0,1.7000000000000002,-6.2,170.37,936,-10.700000000000001 -2013,12,30,1,30,0,0,0,1.7000000000000002,-6.300000000000001,166.18,936,-10.700000000000001 -2013,12,30,2,30,0,0,0,1.9000000000000001,-6.300000000000001,154.74,936,-10.8 -2013,12,30,3,30,0,0,0,1.7000000000000002,-6.4,142.23,935,-10.8 -2013,12,30,4,30,0,0,0,1.5,-6.4,129.57,935,-10.600000000000001 -2013,12,30,5,30,0,0,0,1.3,-6.4,117.03,935,-10.5 -2013,12,30,6,30,0,0,0,1.2000000000000002,-6.300000000000001,104.79,935,-10.4 -2013,12,30,7,30,0,0,0,1.6,-5.300000000000001,93.04,935,-10.200000000000001 -2013,12,30,8,30,122,31,643,2.1,-2.7,81.93,935,-10.100000000000001 -2013,12,30,9,30,310,47,857,2.1,0.30000000000000004,72.11,936,-10 -2013,12,30,10,30,472,56,945,2,3.1,63.92,936,-9.3 -2013,12,30,11,30,582,61,988,2,5.6000000000000005,58.13,935,-8.200000000000001 -2013,12,30,12,30,630,61,1005,2,7.7,55.52,934,-7 -2013,12,30,13,30,612,60,1001,1.6,9.200000000000001,56.52,933,-6 -2013,12,30,14,30,524,56,964,1,10.100000000000001,60.97,933,-5.2 -2013,12,30,15,30,384,49,903,0.5,9.9,68.18,934,-4.800000000000001 -2013,12,30,16,30,205,38,763,0.8,7.300000000000001,77.36,934,-2 -2013,12,30,17,30,29,15,364,1.2000000000000002,5.2,87.71000000000001,935,-3.1 -2013,12,30,18,30,0,0,0,1.4000000000000001,2.1,99.43,937,-4.1000000000000005 -2013,12,30,19,30,0,0,0,1.4000000000000001,1.2000000000000002,111.48,938,-4.5 -2013,12,30,20,30,0,0,0,1.3,0.7000000000000001,123.9,939,-5.1000000000000005 -2013,12,30,21,30,0,0,0,1.1,0.6000000000000001,136.53,939,-5.7 -2013,12,30,22,30,0,0,0,0.8,1,149.16,940,-6.2 -2013,12,30,23,30,0,0,0,0.4,1.3,161.3,939,-6.5 -2013,12,31,0,30,0,0,0,0.5,0.8,170.27,939,-6.6000000000000005 -2013,12,31,1,30,0,0,0,0.9,-0.2,166.21,939,-6.6000000000000005 -2013,12,31,2,30,0,0,0,1.2000000000000002,-1.1,154.81,939,-6.6000000000000005 -2013,12,31,3,30,0,0,0,1.2000000000000002,-1.6,142.3,939,-6.6000000000000005 -2013,12,31,4,30,0,0,0,1,-1.4000000000000001,129.64000000000001,939,-6.5 -2013,12,31,5,30,0,0,0,0.8,-1,117.10000000000001,939,-6.5 -2013,12,31,6,30,0,0,0,0.7000000000000001,-1,104.85000000000001,939,-6.4 -2013,12,31,7,30,0,0,0,0.9,-0.7000000000000001,93.09,939,-6.4 -2013,12,31,8,30,120,27,662,1.6,1.2000000000000002,81.96000000000001,940,-5.2 -2013,12,31,9,30,308,41,869,2.6,4.3,72.12,940,-5.2 -2013,12,31,10,30,466,49,947,3.5,7.6000000000000005,63.910000000000004,939,-4.9 -2013,12,31,11,30,576,53,989,4.2,10,58.1,938,-4.5 -2013,12,31,12,30,626,58,1001,4.6000000000000005,11.8,55.45,936,-3.9000000000000004 -2013,12,31,13,30,609,59,994,4.800000000000001,13,56.43,935,-3.4000000000000004 -2013,12,31,14,30,527,57,965,4.800000000000001,13.5,60.86,934,-3.1 -2013,12,31,15,30,385,52,890,4,12.8,68.05,933,-2.7 -2013,12,31,16,30,206,41,749,2.7,9.600000000000001,77.23,933,-1.4000000000000001 -2013,12,31,17,30,30,16,345,2.1,7.2,87.59,933,-0.7000000000000001 -2013,12,31,18,30,0,0,0,1.6,7.1000000000000005,99.26,927,-1.7000000000000002 -2013,12,31,19,30,0,0,0,1.5,6.2,111.31,927,-2 -2013,12,31,20,30,0,0,0,1.5,5.5,123.74000000000001,928,-2.2 -2013,12,31,21,30,0,0,0,1.4000000000000001,4.800000000000001,136.37,928,-2.4000000000000004 -2013,12,31,22,30,0,0,0,1.7000000000000002,3.9000000000000004,148.99,928,-2.3000000000000003 -2013,12,31,23,30,0,0,0,2.6,2.9000000000000004,161.13,929,-2.1 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m.srw b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m.srw new file mode 100644 index 000000000..a1a04d5ef --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m.srw @@ -0,0 +1,8765 @@ +1379078,city??,state??,country??,2013,29.2054595947,-94.593170166,Not Available,1,8760 +WIND Toolkit data from NREL downloaded on 2025-8-5 +Temperature,Pressure,Speed,Direction +C,atm,m/s,Degrees +100,100,100,100 +20.1,0.99,12.400,179.6 +20.3,0.99,13.320,183.3 +20.2,0.99,13.250,187.3 +20.2,0.99,13.070,188.0 +20.2,0.99,13.430,187.3 +20.1,0.99,12.300,192.0 +20.4,0.99,11.630,184.2 +19.7,0.99,9.180,182.4 +14.9,0.99,11.510,347.4 +13.5,0.99,12.420,355.4 +12.8,0.99,13.690,5.8 +12.6,0.99,13.340,4.3 +12.3,0.99,13.450,5.3 +12.0,0.99,12.340,7.2 +12.0,0.99,11.260,13.8 +11.8,0.99,11.140,3.8 +11.5,0.99,10.530,5.2 +11.2,0.99,10.440,8.8 +11.0,0.99,10.190,9.9 +10.9,0.99,10.460,6.5 +10.6,1.00,11.700,10.2 +10.9,1.00,12.160,16.9 +11.0,1.00,11.520,15.1 +10.3,1.00,11.260,12.3 +9.9,1.00,10.940,16.5 +9.5,1.00,10.710,18.8 +9.2,1.00,11.690,18.1 +8.9,1.00,12.000,16.6 +8.6,1.00,12.500,13.3 +8.3,1.00,11.590,12.0 +8.1,1.00,11.120,15.2 +7.7,1.00,10.700,13.0 +7.4,1.00,10.330,11.3 +7.1,1.00,9.890,8.3 +7.1,1.00,9.320,9.8 +7.2,1.00,8.860,7.1 +7.6,1.00,7.670,7.5 +8.1,1.00,7.640,3.9 +8.6,1.00,7.240,1.6 +8.8,1.00,7.160,2.8 +8.9,1.00,7.440,4.9 +8.7,1.00,7.970,4.2 +8.6,1.00,7.950,9.0 +8.3,1.00,8.100,11.8 +8.0,1.00,8.420,13.8 +7.8,1.00,8.170,16.7 +7.7,1.00,8.980,17.7 +7.5,1.00,9.050,19.6 +7.2,1.00,10.100,18.8 +7.0,1.00,9.970,20.4 +6.9,1.00,10.660,20.9 +6.7,1.00,11.040,20.9 +6.6,1.00,11.320,22.1 +6.5,1.00,11.490,22.6 +6.3,1.00,11.640,22.3 +6.0,1.00,11.570,22.7 +5.8,1.00,11.880,23.4 +5.8,1.00,11.460,26.0 +5.8,1.00,10.810,25.4 +5.9,1.00,9.800,24.5 +6.3,1.00,8.720,21.2 +7.7,1.00,8.580,20.2 +9.1,1.00,7.870,20.9 +10.0,1.00,7.710,17.1 +10.3,1.00,8.500,14.5 +10.4,1.00,8.650,12.5 +10.3,1.00,9.640,16.3 +9.9,1.00,9.420,18.3 +9.7,1.00,10.270,22.3 +9.6,1.00,10.230,27.6 +9.4,1.00,11.060,32.4 +9.3,1.00,11.230,38.2 +9.4,1.00,11.320,41.2 +9.5,1.00,10.200,46.3 +9.6,1.00,10.930,48.5 +9.5,1.00,10.780,45.1 +9.4,1.00,10.810,47.7 +9.3,1.00,10.810,47.8 +9.2,1.00,10.890,40.1 +8.4,1.00,10.210,27.3 +7.9,1.00,10.510,28.2 +7.8,1.00,10.750,32.9 +7.9,1.00,10.750,35.3 +7.9,1.00,10.900,32.8 +7.8,1.00,10.460,34.8 +8.4,1.00,10.080,43.0 +9.0,1.00,10.260,45.0 +9.0,1.00,9.510,38.7 +9.1,1.00,9.310,42.1 +9.6,1.00,9.560,43.9 +9.9,1.00,9.050,42.1 +9.9,1.00,8.330,41.3 +10.3,1.00,8.660,51.9 +10.0,1.00,7.520,42.1 +10.4,1.00,7.740,54.3 +10.5,1.00,7.920,63.5 +10.6,1.00,7.310,76.4 +10.3,1.00,7.190,63.9 +10.6,1.00,5.760,63.4 +10.3,1.00,5.550,67.3 +8.8,1.00,8.420,25.4 +8.9,1.00,8.650,33.3 +8.6,1.00,8.730,20.1 +8.4,1.00,8.630,21.1 +8.3,1.00,9.080,16.4 +8.2,1.00,9.400,23.7 +8.2,1.00,8.550,16.2 +8.1,1.00,9.200,16.5 +8.3,1.00,9.580,19.1 +8.8,1.00,9.100,23.7 +8.8,1.00,9.060,27.1 +9.0,1.00,8.780,17.7 +8.7,1.00,7.780,16.9 +8.4,1.00,9.270,24.5 +8.5,1.00,8.270,17.9 +8.4,1.00,6.050,359.2 +8.4,1.00,7.950,19.7 +8.6,1.00,7.500,18.7 +8.9,1.00,6.410,24.4 +8.8,1.00,8.120,26.0 +8.5,1.00,8.380,10.7 +8.2,1.00,8.370,5.6 +8.4,1.00,8.260,6.2 +8.1,1.00,9.280,8.7 +8.0,1.00,9.850,6.8 +7.8,1.00,9.970,11.4 +7.4,1.00,10.400,10.9 +7.1,1.00,10.760,14.4 +6.7,1.00,10.820,14.4 +5.1,1.00,10.370,9.3 +5.1,1.00,9.930,9.1 +5.2,1.00,9.360,5.7 +5.4,1.00,8.430,0.9 +7.5,1.00,9.860,5.5 +8.5,1.00,8.860,7.9 +9.2,1.00,8.670,8.8 +9.8,1.00,9.110,7.2 +10.2,1.00,9.020,9.3 +10.0,1.00,10.050,14.3 +9.6,1.00,10.260,14.3 +9.3,1.00,10.340,18.4 +9.0,1.00,10.320,25.0 +8.9,1.00,10.090,28.9 +9.0,1.00,10.050,35.0 +9.3,1.00,9.710,42.3 +9.5,1.00,9.030,49.4 +10.2,1.00,10.580,58.4 +10.3,1.00,10.480,63.6 +10.6,1.00,11.010,69.0 +10.5,1.00,10.960,70.7 +10.4,1.00,10.510,66.5 +10.2,1.00,10.470,65.2 +10.0,1.00,10.480,63.1 +9.6,1.00,10.570,58.3 +9.1,1.00,9.680,55.4 +9.3,1.00,8.630,54.8 +9.9,1.00,8.100,63.3 +10.2,1.00,8.100,63.4 +10.4,1.00,7.670,63.1 +10.7,1.00,7.490,64.7 +11.1,1.00,7.280,64.8 +11.4,1.00,7.700,68.3 +12.0,1.00,8.360,72.0 +12.3,1.00,8.500,78.3 +12.6,1.00,9.230,79.5 +12.9,1.00,10.100,80.4 +13.8,0.99,9.750,89.4 +13.9,0.99,8.800,92.7 +14.3,0.99,9.170,87.8 +14.6,0.99,9.270,93.0 +14.8,0.99,9.610,95.4 +14.9,0.99,10.320,91.4 +15.1,0.99,10.850,93.0 +15.3,0.99,12.180,93.5 +15.6,0.99,12.170,95.1 +16.0,0.99,13.600,101.2 +16.1,0.99,12.570,102.2 +16.6,0.99,14.850,109.3 +17.1,0.99,13.870,114.9 +18.4,0.99,14.280,143.8 +18.3,0.99,12.680,137.3 +19.1,0.99,13.120,131.4 +18.8,0.99,12.830,122.0 +18.9,0.99,12.560,127.9 +19.4,0.99,12.770,138.3 +19.8,0.99,12.990,145.0 +19.9,0.99,13.650,145.4 +20.0,0.99,11.300,146.6 +18.9,0.99,10.380,159.1 +19.2,0.99,10.740,180.4 +19.7,0.99,10.250,169.6 +19.6,0.99,9.350,174.8 +19.7,0.99,9.890,172.9 +20.3,0.99,12.640,179.8 +20.7,0.99,10.590,160.7 +20.5,0.99,11.900,148.7 +19.9,0.99,12.820,141.8 +18.6,0.99,16.940,152.3 +18.8,0.99,14.120,152.1 +18.3,0.99,12.400,148.5 +20.1,0.99,12.330,127.4 +19.3,0.99,14.270,114.7 +18.8,0.99,15.400,110.6 +18.7,0.99,11.950,109.0 +18.3,0.99,3.890,125.4 +18.7,0.99,9.440,99.9 +19.5,0.99,9.850,103.0 +18.3,0.99,3.250,221.6 +18.0,0.99,3.010,128.2 +17.8,0.99,7.710,113.6 +18.2,0.99,8.010,118.9 +18.3,0.99,7.500,127.8 +18.7,0.99,10.150,142.7 +17.2,0.99,9.620,136.8 +18.1,0.99,9.630,153.7 +17.8,0.99,7.540,174.8 +17.4,0.99,6.260,199.6 +16.9,0.99,5.370,216.3 +16.2,0.99,6.670,223.6 +15.8,0.99,3.100,232.1 +15.7,0.99,2.620,174.9 +15.2,0.99,2.780,160.0 +15.0,0.99,3.990,170.8 +14.8,0.99,3.240,195.5 +14.7,0.99,3.820,220.5 +14.2,0.99,4.650,205.4 +13.9,0.99,3.850,197.7 +15.8,0.99,5.430,218.5 +16.1,0.99,5.110,213.8 +16.2,0.99,4.910,220.4 +15.5,0.99,5.400,221.0 +15.0,0.99,5.930,215.8 +14.1,0.99,6.180,226.5 +15.1,0.99,5.590,225.5 +15.4,0.99,5.960,222.9 +15.6,0.99,6.870,229.9 +15.5,0.99,6.150,220.5 +15.5,0.99,6.070,223.8 +15.4,0.99,5.780,235.1 +15.0,0.99,4.570,238.0 +15.0,0.99,4.020,241.1 +15.0,0.99,3.490,240.6 +15.2,0.99,2.750,217.7 +15.4,0.99,2.910,231.4 +15.6,0.99,2.440,223.1 +16.1,0.99,1.730,225.6 +16.3,0.99,1.420,198.8 +16.7,0.99,1.320,229.5 +16.5,0.99,1.530,153.3 +16.6,0.99,2.800,121.1 +17.5,0.99,2.390,110.4 +16.3,0.99,4.570,122.1 +16.5,0.99,5.520,121.4 +16.8,0.99,6.180,123.3 +17.2,0.99,5.230,130.0 +17.5,0.99,5.890,126.6 +18.1,0.99,6.180,140.1 +19.2,0.99,9.210,147.2 +19.4,0.99,10.720,155.6 +20.0,0.99,9.760,165.8 +19.9,0.99,11.430,159.5 +20.4,0.99,12.470,151.7 +20.9,0.99,12.320,167.4 +20.9,0.99,12.650,168.1 +21.3,0.99,11.460,167.0 +21.5,0.99,14.760,168.0 +20.7,0.99,12.290,171.8 +20.2,0.99,11.210,162.5 +19.2,0.99,11.740,163.4 +21.0,0.99,15.430,170.7 +19.1,0.99,12.450,158.7 +19.4,0.99,12.120,154.8 +21.7,0.99,13.570,161.2 +19.9,0.99,12.270,152.3 +19.7,0.99,12.850,150.4 +19.9,0.99,13.790,151.3 +20.2,0.99,13.440,158.0 +19.8,0.99,12.220,152.7 +19.9,0.99,12.260,157.0 +20.0,0.99,14.050,155.2 +20.6,0.98,13.820,158.5 +21.0,0.98,13.020,162.6 +20.5,0.98,12.470,158.4 +20.8,0.98,12.410,160.8 +21.1,0.98,12.570,159.1 +20.8,0.98,11.650,157.6 +20.5,0.98,12.130,158.4 +21.1,0.98,17.520,157.0 +21.0,0.98,12.150,162.5 +20.1,0.98,5.360,197.9 +21.2,0.98,8.200,213.4 +21.3,0.98,5.920,225.5 +21.4,0.99,6.860,233.1 +21.9,0.99,9.050,210.5 +15.2,0.99,12.410,320.2 +12.7,0.99,11.920,330.8 +11.1,0.99,13.230,336.3 +10.4,0.99,12.770,342.6 +9.7,0.99,15.090,347.7 +9.4,0.99,14.280,346.6 +9.1,0.99,14.910,356.6 +9.0,0.99,12.430,352.8 +8.9,0.99,12.420,349.9 +8.8,0.99,11.580,355.9 +8.8,0.99,11.790,4.0 +8.7,0.99,12.860,4.4 +8.8,0.99,11.990,9.0 +8.7,0.99,12.570,9.3 +8.5,0.99,12.550,13.0 +8.2,0.99,13.060,15.9 +8.2,0.99,13.070,19.9 +8.1,0.99,12.610,21.8 +8.1,0.99,12.170,21.8 +8.0,0.99,12.550,27.5 +7.9,0.99,11.030,28.0 +7.8,0.99,10.750,28.3 +7.5,0.99,11.200,27.6 +7.0,0.99,11.340,19.5 +6.8,0.99,10.040,11.1 +6.3,0.99,10.070,9.4 +5.9,0.99,11.430,10.0 +5.4,0.99,12.700,14.5 +5.2,1.00,11.710,13.4 +5.0,1.00,11.560,13.1 +4.8,1.00,12.140,12.4 +4.8,1.00,10.830,17.1 +4.8,1.00,11.090,14.9 +4.8,0.99,11.630,20.6 +4.9,0.99,11.560,26.1 +5.0,1.00,10.040,24.1 +5.0,0.99,11.290,25.7 +5.1,0.99,10.610,27.8 +5.2,0.99,9.150,24.7 +5.2,0.99,10.110,29.7 +5.3,0.99,9.250,28.3 +5.5,0.99,8.990,29.5 +5.6,0.99,8.890,31.0 +5.7,0.99,8.610,30.6 +5.6,0.99,8.260,22.4 +5.5,0.99,7.880,21.5 +5.5,0.99,7.320,15.5 +5.4,0.99,7.850,9.3 +5.2,0.99,7.970,4.2 +4.9,0.99,8.580,357.2 +4.8,0.99,9.030,356.5 +4.7,0.99,8.990,355.2 +4.6,0.99,8.850,353.7 +4.4,0.99,9.950,354.4 +4.3,0.99,9.440,356.4 +4.1,0.99,10.110,353.4 +4.0,0.99,9.470,356.7 +3.8,0.99,9.780,352.2 +3.7,0.99,9.660,356.0 +3.6,0.99,9.870,352.8 +3.4,0.99,10.240,350.9 +3.3,0.99,9.700,350.3 +3.1,0.99,11.760,346.2 +2.9,0.99,12.690,345.6 +3.0,1.00,10.010,341.8 +2.8,0.99,11.740,345.8 +2.8,0.99,10.960,347.8 +2.5,1.00,11.710,344.5 +2.4,1.00,12.080,342.1 +2.4,1.00,12.590,340.4 +2.4,1.00,12.790,340.3 +2.4,1.00,11.240,336.2 +2.1,1.00,13.350,343.9 +2.1,1.00,13.260,346.2 +2.3,1.00,13.430,346.4 +2.3,1.00,10.980,340.3 +2.7,1.00,10.290,332.9 +3.0,1.00,10.540,326.1 +3.6,1.00,11.020,319.3 +4.9,1.00,10.380,317.3 +6.0,1.00,9.820,316.6 +6.7,1.00,10.190,318.0 +7.3,1.00,10.900,313.2 +7.7,1.00,10.890,308.8 +7.6,1.00,10.850,304.3 +7.3,1.00,10.010,308.4 +7.2,1.00,9.540,313.4 +7.1,1.00,8.400,314.9 +7.1,1.00,7.420,319.3 +7.7,1.00,8.720,320.7 +7.7,1.00,7.060,322.5 +7.2,1.00,6.130,316.4 +7.0,1.00,5.730,314.0 +6.8,1.00,5.180,317.2 +6.5,1.00,4.900,313.3 +6.4,1.00,4.500,310.4 +6.2,1.00,4.690,308.1 +5.8,1.00,4.380,310.0 +5.7,1.00,4.520,314.4 +5.9,1.00,4.870,321.8 +6.6,1.00,5.370,325.4 +7.3,1.00,5.640,325.1 +8.1,1.00,6.010,324.0 +9.9,1.00,6.620,321.9 +11.0,1.00,6.870,327.9 +11.6,1.00,7.340,329.7 +12.3,1.00,7.540,334.8 +12.7,1.00,7.900,340.7 +12.9,1.00,8.460,347.6 +12.3,1.00,8.080,358.0 +12.1,1.00,8.660,355.4 +11.9,1.01,8.200,1.9 +11.2,1.01,6.680,15.2 +10.7,1.01,6.160,19.2 +10.1,1.01,6.540,23.9 +9.5,1.01,5.850,33.1 +9.7,1.01,5.900,41.3 +9.8,1.01,5.590,48.2 +10.1,1.01,5.590,49.9 +9.9,1.01,6.490,46.8 +10.0,1.01,7.030,55.0 +10.4,1.01,7.260,63.7 +10.5,1.01,7.620,68.1 +10.5,1.01,7.620,68.8 +10.5,1.01,7.550,71.5 +10.5,1.01,6.900,72.1 +10.4,1.01,6.650,76.1 +10.6,1.01,6.000,74.0 +10.6,1.01,5.450,77.5 +10.6,1.00,4.960,77.3 +10.7,1.00,4.740,79.1 +10.9,1.00,4.690,90.8 +11.1,1.00,4.700,91.2 +11.0,1.00,4.540,91.0 +11.0,1.00,4.580,92.4 +11.1,1.00,4.590,92.9 +11.2,1.00,4.050,94.3 +11.2,1.00,3.470,97.3 +11.4,1.00,3.400,105.9 +11.4,1.00,2.770,112.8 +11.4,1.00,2.040,94.3 +11.5,1.00,1.850,100.0 +11.6,1.00,1.710,93.4 +11.5,1.00,1.920,75.0 +11.6,1.00,2.200,73.2 +11.7,1.00,2.180,76.4 +12.0,1.00,2.270,88.4 +12.3,1.00,2.380,99.1 +12.7,1.00,2.570,111.5 +13.0,1.00,2.560,117.0 +13.2,1.00,2.820,119.2 +13.6,1.00,2.490,137.0 +13.8,1.00,2.550,146.2 +13.9,1.00,2.890,149.0 +14.0,1.00,3.050,143.0 +14.1,1.00,2.340,147.7 +14.0,1.00,2.720,135.9 +13.8,1.00,3.330,118.1 +13.6,1.00,3.340,118.6 +13.7,1.00,3.340,133.9 +13.9,1.00,4.650,151.6 +14.2,1.00,3.760,157.4 +14.2,1.00,2.520,170.2 +14.0,1.00,2.610,166.3 +13.7,1.00,2.270,140.1 +14.3,1.00,1.720,180.7 +14.2,1.00,1.660,172.4 +14.5,1.00,1.500,168.7 +14.7,1.00,0.970,179.7 +15.0,1.00,0.700,167.2 +15.3,1.00,0.230,124.0 +14.6,1.00,1.260,88.9 +14.9,1.00,1.710,89.5 +15.2,1.00,1.210,70.4 +14.5,1.00,1.760,71.3 +12.9,1.00,2.660,78.1 +13.6,1.00,2.890,72.2 +12.7,1.00,3.300,93.1 +12.1,1.00,2.600,110.9 +12.2,1.00,2.330,98.3 +11.3,1.00,2.380,118.4 +12.2,1.00,2.390,120.2 +13.4,1.00,3.280,131.2 +13.8,1.00,3.230,139.9 +13.8,1.00,2.880,144.2 +13.7,1.00,2.150,153.0 +14.3,1.00,2.090,162.5 +14.4,1.00,1.510,202.5 +13.1,1.00,0.840,202.6 +13.5,1.00,0.520,260.6 +13.5,1.00,0.530,307.4 +13.5,1.00,1.060,335.4 +13.1,1.00,1.530,353.4 +13.2,1.00,2.450,359.7 +12.3,1.00,2.520,15.9 +13.3,1.00,2.960,17.0 +13.3,1.00,2.750,22.1 +13.8,1.00,3.100,14.0 +14.2,1.00,2.660,26.4 +13.8,1.00,2.710,12.3 +14.6,1.00,2.820,0.9 +15.5,1.00,2.980,356.7 +16.2,1.00,2.780,358.0 +16.2,1.00,2.740,354.6 +16.1,1.00,3.670,348.6 +15.8,1.00,6.070,6.3 +14.4,1.00,6.860,32.0 +13.5,1.00,6.340,38.7 +13.1,1.00,5.700,45.8 +12.9,1.00,5.140,56.9 +13.2,1.00,4.860,64.7 +13.1,1.00,4.880,63.4 +13.1,1.00,5.520,70.3 +12.8,1.00,5.300,69.5 +12.7,1.00,4.880,64.7 +12.6,1.00,4.890,55.2 +12.3,1.00,5.470,51.9 +12.2,1.00,5.770,55.3 +12.1,1.00,5.560,59.8 +12.2,1.00,5.730,63.0 +12.3,1.00,5.410,72.0 +12.5,1.00,5.210,78.7 +12.7,1.00,5.340,90.2 +13.1,1.00,4.220,90.8 +13.2,1.00,4.440,90.6 +13.3,1.00,4.720,95.7 +13.5,1.00,4.840,100.1 +13.7,1.00,5.020,105.0 +13.9,1.00,5.430,111.0 +13.8,1.00,5.910,112.7 +13.9,1.00,6.100,117.2 +14.0,1.00,6.190,122.7 +14.2,1.00,6.160,128.3 +14.4,1.00,5.970,130.3 +14.5,1.00,6.060,134.3 +14.7,1.00,6.130,136.7 +15.1,1.00,6.200,139.8 +15.4,1.00,6.110,142.5 +15.8,1.00,5.930,140.5 +16.2,1.00,5.990,143.3 +16.3,1.00,5.650,146.0 +16.5,1.00,5.370,146.0 +16.7,1.00,5.500,144.9 +16.9,1.00,5.920,147.8 +17.3,1.00,5.850,157.0 +17.3,1.00,6.090,161.9 +17.7,1.00,6.340,164.4 +17.8,1.00,6.190,169.4 +17.7,1.00,6.030,170.9 +17.5,1.00,5.960,170.5 +17.6,1.00,5.960,173.6 +17.9,1.00,6.460,177.8 +17.9,1.00,6.860,182.3 +18.2,1.00,7.700,184.3 +18.3,1.00,8.500,186.0 +18.2,1.00,8.690,188.2 +18.3,1.00,9.460,190.2 +18.2,1.00,9.500,190.5 +18.3,1.00,9.600,192.6 +18.3,1.00,9.710,195.9 +18.4,1.00,9.890,197.4 +18.4,1.00,9.470,202.4 +18.4,1.00,9.170,204.7 +18.6,1.00,9.260,207.9 +18.6,1.00,8.560,209.7 +18.6,1.00,8.780,210.1 +18.7,1.00,7.910,207.8 +18.9,1.00,7.490,208.9 +19.0,1.00,7.400,203.1 +19.2,1.00,7.900,204.1 +19.2,1.00,7.800,200.2 +19.0,1.00,7.450,194.0 +18.6,1.00,7.600,191.0 +18.6,1.00,8.230,188.3 +18.6,1.00,8.370,188.2 +18.7,1.00,8.880,188.2 +18.6,1.00,9.030,187.2 +18.7,1.00,9.770,188.5 +18.6,1.00,10.140,189.2 +18.6,1.00,10.010,188.4 +18.6,1.00,10.500,186.4 +18.5,1.00,10.520,186.4 +18.4,1.00,10.790,185.1 +18.6,1.00,11.500,186.4 +18.6,1.00,10.840,188.1 +18.5,1.00,10.480,189.5 +18.7,1.00,10.910,191.1 +19.1,1.00,10.390,197.5 +18.8,1.00,8.760,200.8 +19.1,1.00,8.770,203.8 +20.0,1.00,9.970,208.9 +19.6,1.00,9.400,195.7 +19.4,1.00,8.540,202.5 +19.4,1.00,8.040,203.7 +19.7,1.00,7.710,208.4 +19.4,1.00,7.230,202.3 +19.1,1.00,7.420,198.4 +19.2,1.00,7.080,195.6 +19.2,1.00,7.750,198.3 +19.2,1.00,7.620,201.7 +19.3,1.00,7.470,199.2 +19.3,1.00,7.360,199.9 +19.4,1.00,6.720,197.8 +19.1,1.00,6.480,189.7 +19.1,1.00,6.710,190.2 +19.0,1.00,7.020,191.2 +18.9,1.00,7.200,196.4 +19.1,1.00,6.940,196.0 +18.9,1.00,6.130,195.9 +19.1,1.00,6.080,195.4 +18.9,1.00,5.240,194.3 +18.9,1.00,4.930,193.6 +19.2,1.00,5.080,194.0 +19.2,1.00,4.460,187.8 +19.1,1.00,4.560,174.6 +19.3,1.00,4.630,180.9 +19.7,1.00,4.900,181.9 +20.0,1.00,5.270,170.7 +19.8,1.00,6.250,170.8 +19.8,1.00,5.940,173.1 +19.5,1.00,5.860,173.4 +19.6,1.00,6.010,170.7 +19.2,1.00,6.140,161.8 +19.4,1.00,6.320,161.1 +19.2,1.00,6.590,152.6 +19.3,1.00,7.040,148.6 +19.4,1.00,7.760,143.9 +19.6,1.00,8.120,141.3 +19.4,1.00,8.680,136.6 +19.1,1.00,9.550,136.3 +19.1,1.00,10.080,136.5 +19.0,1.00,10.730,136.1 +19.0,1.00,10.630,136.3 +19.0,1.00,10.450,139.8 +18.8,1.00,10.140,141.0 +19.2,1.00,9.680,153.4 +19.1,1.00,9.340,160.0 +19.5,1.00,10.240,163.3 +19.1,1.00,10.400,163.8 +19.6,1.00,10.400,161.8 +19.1,1.00,9.910,157.5 +19.2,1.00,9.920,155.2 +19.3,1.00,10.050,155.0 +19.3,1.00,9.280,155.8 +19.4,1.00,9.700,155.8 +19.4,1.00,9.810,150.9 +19.4,0.99,10.480,149.6 +19.4,0.99,11.200,149.9 +19.5,0.99,11.340,150.2 +19.6,0.99,12.460,150.6 +19.6,0.99,12.250,151.8 +19.4,0.99,11.990,151.2 +19.5,0.99,12.010,150.6 +19.4,0.99,11.980,152.7 +19.7,0.99,12.040,154.9 +19.7,0.99,11.990,154.7 +19.5,0.99,11.310,155.8 +19.7,0.99,11.650,159.4 +19.8,0.99,11.860,162.8 +19.7,0.99,11.490,162.4 +19.8,0.99,11.230,162.0 +19.4,0.99,10.740,158.4 +19.9,0.99,10.980,159.0 +19.9,0.99,11.360,157.4 +19.8,1.00,10.810,153.3 +20.2,0.99,10.790,152.7 +20.5,0.99,11.690,152.8 +20.2,0.99,10.350,151.9 +20.2,0.99,10.400,151.6 +20.1,0.99,10.490,149.8 +20.0,0.99,10.920,151.5 +19.4,0.99,10.510,144.1 +19.1,0.99,11.200,148.5 +19.1,0.99,12.100,147.3 +19.1,0.99,11.680,147.1 +19.0,0.99,12.270,147.0 +19.2,0.99,13.130,149.0 +19.1,0.99,12.390,152.7 +19.1,0.99,11.760,155.5 +19.1,0.99,12.290,154.0 +19.0,0.99,11.460,151.6 +19.1,0.99,11.080,156.3 +19.9,0.99,12.310,159.8 +19.5,0.99,12.030,157.2 +19.4,0.99,11.130,157.1 +19.2,0.99,12.220,158.4 +19.2,0.99,12.720,159.7 +20.1,0.99,13.100,161.4 +20.2,0.99,12.940,164.2 +20.3,0.99,13.690,165.3 +20.2,0.99,12.980,169.6 +20.3,0.99,12.550,171.8 +20.5,0.98,13.300,173.6 +20.6,0.98,13.150,173.6 +20.5,0.98,12.900,172.5 +20.3,0.98,12.660,175.9 +20.6,0.98,15.250,177.4 +20.7,0.98,16.850,181.0 +21.0,0.98,16.640,179.9 +20.6,0.98,13.730,183.9 +20.6,0.98,13.580,184.0 +20.4,0.98,14.150,196.2 +20.4,0.98,12.730,212.5 +15.7,0.98,13.450,324.3 +16.8,0.98,10.630,326.8 +16.9,0.98,15.820,317.7 +15.8,0.99,13.730,314.8 +15.3,0.99,9.100,303.1 +14.5,0.99,12.980,308.8 +13.1,0.99,11.190,298.5 +12.3,0.99,11.760,296.8 +11.9,0.99,12.540,296.4 +11.9,0.99,12.020,297.0 +12.1,0.99,14.000,298.2 +12.0,0.99,13.460,306.5 +12.2,0.99,15.620,314.0 +12.2,0.99,15.280,315.7 +12.3,0.99,15.440,315.3 +12.6,0.99,13.730,319.1 +12.4,0.99,13.950,327.8 +12.3,1.00,12.420,331.5 +11.7,1.00,10.840,337.9 +11.5,1.00,11.060,332.1 +11.3,1.00,9.500,334.7 +11.2,1.00,7.550,338.5 +11.1,1.00,6.510,345.3 +11.0,1.00,5.750,343.5 +10.8,1.00,4.810,342.6 +10.6,1.00,3.420,344.1 +10.4,1.00,1.650,347.3 +10.4,1.00,0.650,332.0 +10.7,1.00,0.450,218.0 +10.9,1.00,1.210,199.5 +11.1,1.00,1.620,201.0 +11.3,1.00,2.310,213.3 +11.5,1.00,2.750,221.7 +11.7,1.00,3.050,217.8 +12.0,1.00,3.440,218.7 +12.3,1.00,3.740,219.9 +13.0,1.00,4.180,216.2 +13.4,1.00,4.690,215.8 +13.7,1.00,5.010,215.3 +14.1,1.00,5.710,212.4 +14.3,1.00,5.930,213.8 +14.6,1.00,6.180,211.5 +14.6,1.00,5.530,213.6 +14.7,1.00,5.570,215.9 +14.8,1.00,4.910,218.4 +14.9,1.00,4.560,221.5 +14.8,1.00,4.190,210.6 +15.0,1.00,4.450,212.4 +15.0,1.00,3.730,209.3 +14.8,1.00,3.630,216.4 +14.8,1.00,3.010,212.2 +14.8,1.00,2.990,205.9 +14.6,1.00,2.200,193.5 +14.5,1.00,2.160,183.9 +14.7,1.00,1.980,188.0 +14.6,1.00,1.350,156.0 +14.9,1.00,1.590,138.0 +15.2,1.00,2.500,136.2 +14.9,1.00,2.400,117.9 +14.9,1.00,2.920,112.9 +15.2,1.00,4.510,119.2 +15.2,1.00,5.220,118.9 +15.2,1.00,5.770,124.5 +15.3,1.00,5.740,128.6 +15.3,1.00,6.350,130.2 +15.4,1.00,6.640,135.2 +15.3,1.00,6.510,133.1 +15.4,1.00,6.010,133.5 +15.7,1.00,6.350,138.7 +15.9,1.00,6.900,141.8 +16.2,1.00,7.580,147.5 +16.3,1.00,8.010,146.1 +16.5,1.00,7.580,148.8 +16.6,1.00,6.900,146.8 +16.7,1.00,6.900,147.9 +16.8,1.00,5.740,148.6 +16.7,1.00,6.310,142.2 +16.9,1.00,5.380,138.3 +17.0,1.00,5.320,142.3 +17.0,1.00,5.280,147.3 +17.2,1.00,3.990,150.6 +17.2,1.00,3.030,143.8 +17.5,1.00,2.230,138.8 +17.6,1.00,2.390,127.1 +17.5,1.00,0.450,106.1 +17.5,1.00,1.420,122.9 +17.6,1.00,2.310,127.5 +17.6,1.00,2.770,132.8 +17.6,1.00,2.350,142.1 +17.4,1.00,3.540,146.1 +18.1,1.00,2.790,145.2 +17.9,1.00,2.940,154.5 +17.9,1.00,2.710,172.2 +18.2,1.00,2.240,185.2 +18.0,1.00,2.340,217.7 +18.0,1.00,2.580,245.1 +16.1,1.00,4.930,342.4 +16.2,1.00,5.490,337.3 +14.4,1.00,7.160,17.3 +14.6,1.00,7.690,26.2 +14.6,1.00,8.280,33.3 +14.5,1.00,8.730,36.6 +13.7,1.00,7.940,39.0 +13.6,1.00,7.440,45.8 +13.4,1.00,6.970,52.8 +13.5,1.00,7.100,52.1 +13.6,1.00,6.190,58.2 +13.9,1.00,5.380,72.8 +14.9,1.00,5.190,83.4 +15.3,1.00,5.460,94.8 +15.6,1.00,5.740,113.4 +15.6,1.00,5.160,119.3 +15.7,1.00,5.260,125.2 +15.8,1.00,5.020,126.8 +15.5,1.00,5.450,135.0 +15.5,1.00,5.220,138.3 +15.6,1.00,5.650,142.4 +15.7,1.00,5.940,143.9 +15.7,0.99,6.210,148.3 +15.9,0.99,6.510,148.5 +16.2,0.99,6.870,149.7 +16.4,0.99,7.290,149.7 +16.6,0.99,7.480,148.2 +16.9,0.99,7.290,148.4 +17.1,0.99,7.190,148.3 +17.3,0.99,7.440,148.6 +17.3,0.99,7.810,142.2 +17.7,0.99,7.480,151.1 +18.0,0.99,7.200,154.8 +18.2,0.99,6.990,156.6 +18.3,0.99,7.350,154.9 +18.6,0.99,5.430,159.2 +18.7,0.99,5.470,155.3 +18.6,0.99,5.790,141.5 +18.8,0.99,6.390,141.0 +18.4,0.99,7.930,140.6 +17.9,0.99,7.830,134.2 +18.5,0.99,7.000,138.5 +19.0,0.99,7.000,142.0 +18.3,0.99,5.840,150.8 +18.6,0.99,4.550,160.3 +19.0,0.99,4.270,165.1 +19.4,0.99,4.570,175.5 +19.9,0.99,4.840,173.5 +18.9,0.99,4.590,185.5 +19.8,0.99,4.990,209.8 +18.1,0.99,5.210,226.3 +17.3,0.99,3.770,227.8 +16.7,0.99,2.860,255.0 +16.8,0.99,2.680,258.4 +16.9,0.99,1.720,272.5 +16.9,0.99,1.130,263.1 +16.9,0.99,0.980,82.9 +16.9,0.99,1.570,85.0 +17.2,0.99,3.060,87.0 +17.1,0.99,3.110,77.7 +17.2,0.99,3.470,100.1 +17.6,0.99,4.330,98.4 +17.0,0.99,5.000,102.9 +17.2,0.99,5.060,104.3 +17.3,0.99,5.610,110.2 +17.5,0.99,5.860,119.4 +17.5,0.99,5.650,113.7 +17.6,0.99,6.580,123.0 +18.0,0.99,6.870,121.5 +17.9,0.99,6.730,120.9 +18.0,0.99,6.030,110.0 +17.8,0.99,6.130,108.8 +18.1,0.99,5.780,118.2 +18.0,0.99,6.490,112.7 +17.1,0.99,7.420,109.7 +16.8,0.99,6.360,115.0 +16.8,0.99,7.350,100.1 +17.5,0.99,7.510,114.4 +17.6,0.99,7.160,107.1 +18.9,0.99,6.630,83.4 +17.4,0.99,8.370,94.4 +17.1,0.99,5.970,94.9 +17.2,0.99,8.340,88.6 +16.8,0.99,8.220,77.5 +16.9,0.99,7.740,76.4 +16.8,0.99,8.890,79.4 +16.9,0.99,8.050,88.2 +17.0,0.99,10.200,93.0 +16.9,0.99,11.260,96.4 +16.8,0.99,11.090,95.6 +16.7,0.99,12.320,93.8 +16.6,0.99,12.100,92.5 +16.7,0.99,12.590,94.3 +16.7,0.99,10.850,89.4 +16.8,0.99,9.680,84.2 +16.7,0.99,8.610,83.2 +16.6,0.99,8.150,89.7 +16.6,0.99,6.890,82.9 +16.5,0.99,6.110,73.7 +16.5,0.99,6.100,83.1 +16.4,0.99,4.860,100.2 +16.4,0.99,3.150,96.1 +16.3,0.99,2.340,86.4 +16.1,0.99,1.380,98.6 +16.2,0.99,1.100,111.3 +16.4,0.99,2.650,46.8 +16.3,0.99,1.650,12.4 +16.3,0.99,1.410,356.5 +16.5,0.99,2.450,49.5 +16.7,0.99,2.100,75.7 +16.8,0.99,1.620,66.2 +16.9,0.99,2.170,69.4 +16.8,0.99,3.080,94.3 +16.9,0.99,2.960,110.9 +16.9,0.99,2.650,131.7 +18.2,0.99,2.050,162.0 +17.2,0.99,3.230,156.9 +17.3,0.99,4.330,185.2 +16.6,0.99,4.320,203.8 +16.5,0.99,3.990,230.0 +16.8,0.99,4.860,276.7 +17.4,0.99,6.780,286.5 +17.2,0.99,6.780,297.5 +14.0,0.99,10.690,340.4 +13.5,0.99,8.780,343.0 +12.7,0.99,9.630,345.3 +12.9,0.99,9.370,342.9 +12.1,0.99,10.380,352.7 +12.8,1.00,9.250,359.8 +13.7,1.00,8.270,4.9 +14.3,1.00,8.060,5.1 +14.5,1.00,5.820,349.6 +16.0,1.00,6.840,0.1 +17.1,1.00,7.010,3.5 +17.5,1.00,5.890,27.5 +17.6,1.00,5.010,26.1 +16.6,1.00,3.940,73.6 +17.1,1.00,7.190,38.0 +16.1,1.00,7.810,34.5 +15.9,1.00,8.710,37.6 +15.2,1.00,8.820,44.6 +15.0,1.00,9.370,59.2 +15.1,1.00,10.150,73.4 +14.9,1.00,9.940,81.2 +14.8,1.00,9.710,80.8 +14.8,1.00,9.450,86.4 +14.8,0.99,9.110,93.0 +14.9,0.99,8.750,95.1 +15.2,0.99,8.520,100.2 +15.7,0.99,7.620,106.5 +15.8,0.99,8.640,103.7 +16.2,0.99,7.710,110.3 +16.4,0.99,8.680,105.3 +16.4,0.99,8.880,105.5 +16.7,0.99,8.490,104.0 +16.8,0.99,9.150,107.9 +17.4,0.99,8.980,115.0 +17.6,0.99,8.800,112.1 +17.9,0.99,9.090,108.3 +18.4,0.99,10.150,119.1 +18.5,0.99,11.530,125.7 +18.6,0.99,11.970,129.0 +18.6,0.99,12.250,132.0 +18.8,0.99,11.890,133.7 +19.0,0.99,11.960,141.3 +19.3,0.99,12.370,146.2 +19.6,0.99,13.160,151.2 +19.5,0.99,12.790,153.4 +19.7,0.99,12.540,156.6 +19.8,0.99,12.860,157.6 +20.1,0.99,12.650,160.7 +20.0,0.99,11.960,162.0 +19.8,0.99,12.580,165.2 +19.5,0.99,12.930,165.2 +20.2,0.99,12.580,170.4 +20.2,0.99,11.780,170.8 +20.3,0.99,13.120,175.6 +20.3,0.99,12.490,178.2 +20.2,0.99,12.010,186.9 +20.4,0.99,11.260,192.0 +20.1,0.99,8.830,191.1 +20.8,0.99,10.530,196.1 +21.1,0.99,10.060,196.2 +21.5,0.99,9.480,197.3 +21.8,0.99,10.530,198.5 +19.6,0.99,6.060,197.5 +18.4,0.99,3.950,346.8 +18.4,0.99,5.320,23.4 +17.8,0.99,5.970,27.5 +17.7,0.99,7.450,35.9 +17.5,0.99,6.570,35.7 +17.3,0.99,6.400,41.8 +17.2,0.99,7.230,44.3 +17.2,0.99,7.280,46.6 +16.7,0.99,7.340,44.1 +16.2,0.99,6.700,43.6 +16.2,0.99,8.170,38.0 +15.4,0.99,9.390,29.7 +14.7,0.99,10.630,34.3 +13.2,0.99,12.810,34.3 +13.4,0.99,13.330,43.3 +13.3,0.99,13.700,51.6 +13.8,0.99,14.260,53.8 +14.0,0.99,13.440,57.4 +14.1,0.99,13.760,57.5 +13.7,0.99,13.210,60.0 +14.0,0.99,12.790,60.4 +14.3,0.99,12.680,61.3 +14.2,0.99,12.690,59.7 +14.0,0.99,12.900,55.5 +13.9,0.99,13.370,57.0 +13.6,0.99,13.930,56.8 +13.7,0.99,13.020,56.0 +13.8,0.99,13.030,57.5 +14.0,0.99,12.880,60.5 +14.1,0.99,13.110,63.7 +14.3,0.99,12.940,66.0 +14.6,0.99,12.440,68.6 +14.9,0.99,11.490,71.0 +15.1,0.99,11.410,74.2 +15.4,0.99,10.810,74.7 +15.8,0.99,10.860,81.8 +16.2,0.99,10.080,84.9 +16.6,0.99,9.960,86.2 +18.4,0.99,8.440,125.0 +20.5,0.99,7.820,183.2 +18.7,0.99,5.050,270.9 +17.5,0.99,5.280,297.8 +15.9,0.99,8.120,311.4 +15.8,0.99,7.490,325.8 +16.3,0.99,7.300,328.2 +16.8,0.99,6.730,329.1 +16.8,0.99,6.150,339.9 +17.2,0.99,7.210,335.8 +16.8,0.99,7.110,344.6 +15.9,0.99,6.660,3.0 +14.8,0.99,6.560,15.1 +14.1,0.99,7.840,10.8 +13.6,0.99,8.920,0.4 +13.2,0.99,9.730,356.0 +12.8,0.99,8.980,351.1 +12.4,0.99,8.670,346.0 +11.9,0.99,9.240,341.1 +11.2,0.99,11.230,337.0 +10.5,0.99,9.690,341.4 +10.1,0.99,11.660,332.3 +9.6,0.99,10.220,337.0 +9.1,0.99,10.200,342.9 +9.1,0.99,11.090,350.9 +9.0,0.99,11.660,345.6 +9.4,0.99,10.050,345.2 +9.5,0.99,9.500,339.2 +10.2,0.99,8.540,340.4 +11.0,0.99,8.350,336.9 +11.7,0.99,8.190,334.4 +12.2,0.99,7.450,335.3 +12.5,0.99,7.120,334.8 +12.6,0.99,7.280,340.2 +12.5,0.99,7.340,347.7 +12.5,0.99,7.060,3.3 +12.1,0.99,6.620,6.1 +12.0,0.99,6.340,9.8 +11.8,0.99,5.820,16.2 +11.7,0.99,5.290,15.6 +11.4,0.99,5.390,18.1 +10.9,0.99,4.870,13.9 +10.9,0.99,4.430,8.5 +10.7,0.99,4.580,11.9 +10.7,0.99,4.660,14.5 +10.6,0.99,4.180,23.0 +10.5,1.00,4.400,26.1 +10.4,1.00,4.570,29.7 +10.5,1.00,4.270,35.1 +10.7,1.00,3.800,35.3 +10.9,1.00,3.580,31.4 +11.1,1.00,3.190,29.8 +11.9,1.00,2.370,42.6 +12.5,0.99,1.940,72.5 +13.0,0.99,1.930,102.6 +13.2,0.99,1.590,116.9 +13.5,0.99,1.630,125.0 +13.7,0.99,1.680,125.9 +13.7,0.99,2.060,129.9 +13.7,0.99,2.140,126.0 +13.8,0.99,2.340,120.9 +13.9,0.99,2.100,118.3 +14.1,0.99,1.880,121.4 +14.2,0.99,1.840,114.2 +14.2,0.99,1.750,98.9 +14.0,0.99,1.530,81.9 +13.9,0.99,1.400,48.4 +13.7,1.00,2.230,29.0 +13.5,1.00,2.380,25.5 +13.2,1.00,2.930,22.0 +12.7,1.00,4.320,19.0 +12.5,1.00,4.400,25.8 +12.1,1.00,5.560,21.9 +12.3,1.00,5.530,23.1 +13.1,1.00,4.550,12.5 +13.4,1.00,4.370,353.2 +14.3,1.00,4.680,337.6 +15.1,1.00,4.640,335.1 +15.7,1.00,4.700,330.1 +16.3,1.00,5.260,328.5 +16.8,1.00,7.020,333.7 +16.9,1.00,8.500,340.6 +15.3,1.00,11.260,12.3 +14.4,1.00,11.510,14.7 +12.2,1.00,16.120,13.1 +11.0,1.00,14.400,13.5 +10.4,1.00,15.040,10.2 +9.9,1.00,12.880,6.0 +9.8,1.00,11.940,6.1 +10.2,1.00,13.320,2.1 +9.5,1.00,14.040,9.6 +8.8,1.00,13.500,10.6 +8.2,1.00,12.600,11.3 +7.7,1.00,11.990,10.6 +7.1,1.00,11.020,13.3 +6.7,1.00,10.980,15.0 +6.8,1.00,9.530,8.8 +7.0,1.00,7.580,359.4 +7.5,1.00,6.700,350.7 +8.0,1.00,4.960,333.6 +9.3,1.00,6.910,333.1 +9.9,1.00,7.310,328.7 +10.6,1.00,6.470,327.5 +11.1,1.00,5.200,337.6 +12.1,1.00,6.400,329.8 +12.4,1.00,5.400,325.8 +12.6,1.00,3.690,323.1 +12.7,1.00,2.810,319.6 +12.6,1.00,1.090,291.2 +12.8,1.00,2.050,234.3 +13.0,1.00,2.620,222.3 +13.2,1.00,3.010,225.5 +13.4,1.00,4.170,218.3 +13.6,1.00,5.170,210.8 +13.8,1.00,6.090,211.8 +13.9,1.00,5.680,222.9 +13.8,1.00,5.630,224.9 +14.0,1.00,5.130,221.8 +14.1,1.00,4.830,223.5 +14.5,1.00,5.080,213.5 +15.0,1.00,6.670,209.4 +15.1,1.00,6.040,199.2 +15.2,1.00,7.780,188.5 +15.6,1.00,7.330,190.8 +15.8,1.00,7.190,188.6 +16.1,1.00,7.810,187.6 +16.0,1.00,8.990,177.6 +16.2,1.00,9.240,171.3 +16.2,1.00,10.190,167.4 +16.3,1.00,9.500,168.8 +16.4,1.00,10.840,167.1 +16.7,1.00,10.960,169.6 +16.8,0.99,12.380,163.0 +17.3,0.99,13.000,170.4 +17.2,0.99,11.970,164.9 +16.9,0.99,13.340,157.3 +17.4,0.99,14.810,167.4 +17.8,0.99,14.770,169.7 +17.5,0.99,13.870,163.0 +17.3,0.99,14.760,161.8 +17.7,0.99,15.240,167.0 +18.0,0.99,15.520,168.0 +18.3,0.99,14.040,169.5 +18.4,0.99,13.510,169.5 +18.5,0.99,14.680,165.2 +18.6,0.99,12.630,170.3 +18.5,0.99,11.960,173.8 +18.1,0.99,16.370,178.5 +19.1,0.99,17.130,176.8 +19.4,0.99,13.690,182.2 +19.4,0.99,13.330,188.5 +19.4,0.99,13.550,188.5 +19.5,0.99,13.490,188.3 +19.6,0.99,14.080,193.4 +19.4,0.99,13.660,196.2 +19.3,0.99,11.730,211.7 +19.3,0.99,11.320,213.4 +19.2,0.99,11.480,220.8 +19.5,0.99,9.850,237.1 +19.5,0.99,9.930,241.2 +14.5,0.99,12.850,342.8 +14.4,0.99,9.950,5.2 +14.3,0.99,12.030,19.0 +13.9,0.99,13.840,27.7 +13.3,1.00,14.200,30.9 +12.7,1.00,15.370,36.5 +11.9,1.00,14.870,39.0 +11.7,1.00,13.790,45.8 +11.6,1.00,12.820,44.6 +11.6,1.00,11.420,43.1 +12.0,1.00,9.870,42.8 +12.6,1.00,8.790,49.2 +13.6,1.00,9.000,53.2 +14.1,1.00,9.320,63.0 +14.3,1.00,8.570,68.3 +14.7,1.00,8.610,73.6 +15.0,1.00,8.660,73.4 +15.4,1.00,9.640,72.1 +15.5,1.00,11.230,75.3 +15.4,1.00,11.470,74.8 +15.1,1.00,12.510,75.1 +14.6,1.00,12.930,74.7 +14.3,1.00,13.480,79.3 +14.3,1.00,13.030,86.0 +14.4,1.00,13.480,90.9 +14.4,1.00,13.670,92.6 +14.5,1.00,13.830,94.0 +14.5,0.99,13.920,96.0 +14.7,0.99,14.010,101.8 +14.7,0.99,13.590,103.6 +14.8,0.99,13.710,106.8 +14.8,0.99,13.560,108.1 +15.0,0.99,12.830,106.8 +15.0,0.99,12.370,98.4 +14.8,0.99,13.280,93.9 +14.7,0.99,16.870,111.6 +15.0,0.99,16.450,104.2 +14.7,0.99,14.380,95.7 +14.9,0.99,14.620,94.0 +15.1,0.99,15.290,97.6 +15.5,0.99,15.680,100.6 +16.0,0.99,15.930,105.4 +16.1,0.99,15.080,104.3 +16.3,0.99,15.540,105.6 +16.6,0.99,15.980,105.0 +16.9,0.99,14.010,115.6 +17.3,0.99,14.700,117.0 +18.1,0.99,14.340,123.7 +18.4,0.99,14.550,125.0 +18.5,0.98,15.090,131.3 +18.6,0.98,14.740,133.1 +18.7,0.98,13.220,142.8 +18.8,0.98,14.950,152.4 +19.3,0.98,16.010,155.0 +19.2,0.98,14.280,143.4 +19.4,0.98,14.000,147.3 +19.6,0.98,14.490,151.1 +20.0,0.98,14.660,150.8 +19.7,0.98,12.790,157.8 +20.1,0.98,12.950,164.2 +20.5,0.98,13.160,169.6 +20.8,0.98,12.690,179.3 +21.3,0.98,11.640,188.9 +20.8,0.98,9.740,198.1 +21.3,0.98,10.170,208.7 +21.2,0.98,10.050,226.0 +20.0,0.98,8.200,237.9 +19.3,0.98,8.350,236.7 +20.0,0.98,7.500,268.0 +20.8,0.99,6.940,1.6 +21.6,0.99,8.990,13.5 +20.3,0.99,7.320,21.6 +19.6,0.99,9.060,20.7 +18.1,0.99,8.960,35.9 +17.4,0.99,9.940,32.1 +17.3,0.99,11.010,33.9 +16.6,0.99,10.730,43.6 +16.2,0.99,11.360,38.5 +16.1,0.99,10.050,54.4 +16.3,0.99,11.380,49.6 +15.8,0.99,11.800,47.0 +15.8,0.99,10.820,47.7 +15.7,0.99,10.010,46.7 +15.6,0.99,10.620,43.7 +16.0,0.99,10.920,40.4 +15.7,0.99,10.090,30.3 +15.6,0.99,10.150,29.7 +15.1,0.99,10.790,28.0 +15.0,0.99,11.140,32.4 +14.6,0.99,10.540,30.0 +13.9,0.99,10.700,30.9 +14.0,0.99,10.280,34.4 +13.8,0.99,9.950,31.3 +13.6,0.99,9.480,32.2 +13.4,0.99,10.250,31.6 +13.2,0.99,10.360,29.7 +12.8,0.99,10.140,30.9 +12.7,0.99,9.480,27.7 +12.4,0.99,9.930,26.7 +12.3,0.99,9.700,27.6 +12.1,0.99,9.320,23.0 +11.8,0.99,10.030,21.7 +11.4,0.99,9.700,18.9 +10.6,0.99,10.170,20.5 +10.4,0.99,8.370,18.9 +10.5,0.99,7.620,25.3 +10.9,0.99,6.010,19.0 +11.6,0.99,4.540,16.3 +13.1,0.99,4.730,10.6 +14.1,0.99,1.840,355.3 +15.3,0.99,2.930,342.6 +16.1,0.99,4.430,328.8 +16.8,0.99,4.400,331.1 +17.2,0.99,5.170,341.7 +17.4,0.99,5.420,5.6 +16.8,0.99,6.000,32.6 +16.3,0.99,6.180,34.9 +15.8,0.99,7.290,41.7 +15.4,0.99,6.950,45.8 +15.2,0.99,7.730,59.0 +14.8,0.99,7.410,66.2 +15.0,0.99,7.470,73.8 +14.8,0.99,8.180,79.7 +14.7,0.99,7.770,74.9 +14.6,0.99,8.100,76.4 +14.6,0.99,8.260,77.5 +14.6,0.99,7.970,76.3 +14.8,0.99,8.350,83.6 +14.9,0.99,8.260,86.9 +15.1,0.99,8.120,87.2 +15.2,0.99,7.960,88.6 +15.4,0.99,8.000,87.1 +15.9,0.99,8.290,87.2 +15.8,0.99,8.670,86.6 +16.0,0.99,9.210,89.3 +16.2,0.98,9.100,88.0 +16.3,0.98,8.470,89.2 +16.6,0.98,7.440,93.9 +16.5,0.98,8.730,92.3 +16.7,0.98,8.480,91.7 +16.9,0.98,9.280,91.5 +17.1,0.98,8.460,86.1 +17.7,0.98,8.740,99.5 +18.2,0.98,9.750,116.7 +19.3,0.98,9.780,146.1 +19.3,0.98,10.350,156.6 +19.2,0.98,9.480,165.5 +18.8,0.98,9.970,160.3 +18.6,0.98,8.490,159.4 +19.6,0.98,9.830,172.7 +20.2,0.98,10.310,176.1 +19.7,0.98,10.230,182.3 +19.8,0.98,8.950,181.3 +17.4,0.98,13.160,179.4 +18.4,0.98,8.380,199.5 +17.5,0.98,8.280,233.2 +17.8,0.98,8.710,305.3 +19.7,0.98,9.940,275.8 +20.2,0.98,11.390,267.9 +19.6,0.98,12.600,270.0 +18.8,0.98,14.030,279.4 +17.8,0.98,14.050,277.9 +16.3,0.98,18.610,279.4 +14.8,0.98,19.730,280.2 +13.4,0.98,17.840,282.4 +12.3,0.98,19.200,286.1 +11.2,0.98,16.860,287.8 +9.6,0.98,21.630,291.0 +8.2,0.98,22.020,296.0 +7.3,0.98,18.710,297.0 +6.9,0.99,14.490,296.9 +6.6,0.99,14.750,296.4 +6.4,0.99,13.140,295.2 +6.2,0.99,12.810,296.8 +6.0,0.99,13.040,298.6 +6.0,0.99,10.900,299.8 +6.4,0.99,9.430,298.5 +7.1,0.99,9.100,299.7 +8.3,0.99,8.750,294.7 +9.7,0.99,7.890,291.8 +11.3,0.99,7.450,293.4 +12.6,0.99,7.690,294.4 +13.5,0.99,7.240,295.3 +14.2,0.99,6.710,294.1 +14.6,0.99,6.160,293.8 +14.8,0.99,6.430,285.8 +14.6,0.99,5.880,288.7 +14.6,0.99,3.570,279.7 +14.7,0.99,3.060,280.2 +14.6,0.99,2.690,271.5 +14.4,0.99,1.520,319.4 +14.3,0.99,0.540,61.3 +14.5,0.99,1.330,164.8 +14.6,0.99,1.780,164.0 +14.8,0.99,2.510,167.4 +14.8,0.99,3.380,174.6 +15.1,0.99,3.620,179.1 +15.4,0.99,3.990,200.8 +15.3,0.99,3.790,208.6 +15.3,0.99,4.040,208.5 +15.6,0.99,4.540,202.1 +15.7,0.99,5.420,214.2 +16.0,0.99,6.430,215.4 +16.1,0.99,5.930,225.4 +16.8,0.99,6.520,224.6 +17.2,0.99,7.350,226.6 +17.7,0.99,7.600,231.1 +19.4,0.99,10.890,311.9 +18.2,0.99,12.540,325.0 +17.1,0.99,12.360,331.5 +15.7,0.99,12.500,340.5 +14.7,0.99,11.880,344.0 +13.7,0.99,12.800,343.2 +13.2,1.00,13.120,344.2 +12.6,1.00,13.260,349.1 +12.3,1.00,12.820,351.5 +11.1,1.00,12.170,354.5 +10.3,1.00,12.460,357.8 +9.3,1.00,13.880,357.7 +8.3,1.00,14.300,357.5 +7.5,1.00,13.100,358.4 +6.7,1.00,12.180,359.7 +6.0,1.00,11.450,358.9 +5.6,1.00,10.620,356.2 +5.7,1.00,8.460,354.6 +6.0,1.00,7.560,349.4 +6.7,1.00,7.250,340.6 +7.6,1.00,7.840,336.2 +9.2,1.00,8.760,336.7 +10.4,1.00,8.850,335.4 +11.4,1.00,9.850,335.0 +11.9,1.00,9.440,336.5 +12.3,1.00,9.240,340.0 +12.6,1.00,10.290,341.2 +12.3,1.00,10.100,345.3 +12.0,1.00,9.800,343.7 +11.7,1.00,8.660,344.1 +11.6,1.00,8.500,343.9 +11.4,1.00,8.520,346.4 +11.2,1.00,8.140,349.1 +10.5,1.00,6.610,352.2 +10.0,1.00,6.570,345.0 +9.6,1.00,6.480,340.5 +9.0,1.00,6.890,342.4 +8.5,1.00,6.430,336.6 +7.9,1.00,6.630,347.4 +7.6,1.00,6.610,351.4 +7.1,1.00,6.520,350.0 +7.2,1.00,6.040,343.6 +7.7,1.00,6.190,334.5 +8.3,1.00,5.920,330.4 +8.7,1.00,5.470,325.6 +11.2,1.00,6.650,325.4 +12.5,1.00,7.950,325.3 +13.3,1.00,8.000,328.5 +13.8,1.00,7.170,331.3 +14.4,1.00,7.850,329.1 +14.9,1.00,7.900,329.7 +14.6,1.00,8.570,346.1 +14.1,1.00,7.190,3.9 +13.2,1.00,7.150,19.5 +13.1,1.00,7.370,7.6 +12.8,1.00,8.060,12.7 +12.3,1.00,5.260,6.3 +11.2,1.00,7.950,14.3 +10.8,1.00,6.860,18.2 +10.0,1.00,6.630,360.0 +9.6,1.00,8.710,358.3 +8.8,1.00,9.260,349.3 +8.3,1.00,10.400,351.4 +7.4,1.00,10.170,353.3 +7.0,1.00,10.360,346.7 +6.7,1.00,10.720,340.9 +6.4,1.00,11.640,337.8 +6.2,1.00,11.740,333.8 +6.3,1.00,11.130,331.4 +7.1,1.00,9.820,327.1 +8.6,1.00,11.070,328.7 +9.3,1.00,11.620,330.1 +9.7,1.00,11.390,332.2 +9.9,1.00,11.330,335.9 +9.9,1.00,11.800,340.7 +9.6,1.00,12.080,343.9 +9.3,1.00,9.600,349.1 +9.1,1.00,9.830,351.0 +9.1,1.00,8.910,352.9 +8.9,1.00,7.190,1.1 +9.0,1.00,6.250,4.9 +8.6,1.00,5.420,8.9 +8.6,1.00,4.390,13.3 +8.4,1.00,3.610,14.7 +8.4,1.00,3.350,16.9 +8.4,1.00,2.680,17.8 +8.5,1.00,1.980,22.2 +8.5,1.00,1.520,9.3 +8.7,1.00,0.940,50.9 +9.0,1.00,0.540,92.2 +9.3,1.00,0.500,151.9 +9.6,1.00,1.130,202.8 +10.1,1.00,1.420,183.4 +11.3,1.00,2.960,185.7 +12.2,1.00,3.920,180.8 +12.8,1.00,5.000,182.3 +13.3,1.00,6.170,178.0 +13.8,1.00,7.080,181.8 +14.3,1.00,8.120,185.5 +14.5,0.99,8.680,184.3 +14.9,0.99,9.840,185.2 +15.3,0.99,11.430,185.7 +15.7,0.99,11.640,187.0 +16.0,0.99,12.570,185.6 +16.2,0.99,11.900,187.6 +16.4,0.99,12.140,184.8 +16.7,0.99,13.310,188.4 +16.8,0.99,13.880,188.7 +17.0,0.99,13.820,188.7 +17.2,0.99,14.720,188.8 +17.2,0.99,14.390,191.6 +17.6,0.99,15.210,188.4 +17.7,0.99,14.310,188.7 +17.9,0.99,14.730,194.6 +17.9,0.99,13.890,194.3 +18.1,0.99,13.500,197.3 +18.2,0.99,12.800,197.9 +18.7,0.99,13.470,200.3 +18.9,0.99,12.590,200.2 +18.9,0.99,12.150,200.6 +18.9,0.99,12.270,200.6 +18.9,0.99,12.390,194.5 +18.9,0.99,13.080,191.6 +18.7,0.99,13.770,187.7 +18.7,0.99,14.010,192.1 +18.7,0.99,14.490,188.9 +18.7,0.99,14.630,191.9 +18.7,0.99,12.950,195.0 +18.6,0.99,12.040,197.7 +18.6,0.99,12.280,198.3 +18.6,0.99,11.000,202.5 +18.6,0.99,11.600,206.2 +18.5,0.99,9.860,206.9 +18.9,0.99,10.310,208.0 +18.9,0.99,8.490,239.8 +18.3,0.99,9.280,264.2 +17.3,0.99,9.250,272.6 +16.4,0.99,8.670,298.3 +17.3,0.99,10.640,315.6 +15.7,0.99,12.550,341.6 +16.4,1.00,11.030,346.6 +17.6,1.00,10.850,352.6 +18.0,1.00,11.370,348.4 +18.2,1.00,12.230,348.9 +18.0,1.00,12.180,348.9 +17.8,1.00,11.350,353.0 +17.4,1.00,12.180,353.1 +16.3,1.00,11.370,359.4 +14.9,1.00,12.410,355.8 +13.8,1.00,11.610,0.2 +13.1,1.00,14.130,3.4 +12.3,1.00,15.100,8.8 +11.7,1.00,15.270,12.8 +10.9,1.00,14.490,14.7 +10.6,1.00,14.010,19.1 +10.1,1.00,13.570,22.1 +9.7,1.00,13.370,27.3 +9.3,1.00,13.040,30.7 +9.0,1.00,12.830,33.0 +8.4,1.00,11.930,35.7 +8.3,1.00,11.810,36.4 +8.3,1.00,9.900,40.9 +8.6,1.00,8.500,37.2 +9.0,1.00,5.620,38.8 +9.5,1.00,3.950,32.4 +10.5,1.00,1.970,12.3 +11.2,1.00,1.360,283.8 +11.6,1.00,1.860,254.6 +12.3,1.00,1.800,241.8 +12.7,1.00,2.000,217.9 +13.3,1.00,1.370,229.1 +13.2,1.00,1.740,180.6 +13.2,1.00,3.040,170.2 +13.2,1.00,2.720,167.8 +13.3,1.00,2.520,157.7 +13.4,1.00,1.870,148.3 +13.5,1.00,1.480,140.8 +13.4,1.00,2.240,129.9 +13.4,1.00,2.440,128.8 +13.4,1.00,2.920,123.8 +13.6,1.00,3.140,111.0 +13.6,1.00,4.010,105.0 +13.5,1.00,4.850,104.1 +13.7,1.00,4.990,106.0 +13.8,1.00,4.720,105.7 +14.0,1.00,6.860,111.2 +14.0,1.00,6.910,107.2 +13.9,1.00,6.830,106.6 +14.0,1.00,7.050,108.1 +14.2,1.00,7.210,111.1 +14.3,1.00,7.290,112.8 +14.4,1.00,7.290,114.4 +14.5,1.00,7.510,115.6 +14.6,1.00,7.320,116.3 +14.7,1.00,7.490,117.5 +14.6,1.00,8.090,119.4 +14.7,1.00,8.390,123.0 +14.8,1.00,8.640,124.3 +15.1,1.00,8.710,125.8 +15.2,1.00,8.830,126.8 +15.4,1.00,8.000,126.6 +15.6,1.00,8.200,128.7 +15.7,1.00,7.780,131.2 +15.8,1.00,7.340,130.8 +16.0,1.00,7.590,128.5 +16.1,1.00,7.410,123.5 +16.1,1.00,8.030,125.2 +16.3,1.00,8.390,125.7 +16.2,1.00,8.040,117.6 +16.3,1.00,8.430,118.1 +16.4,1.00,8.120,112.5 +16.4,1.00,8.120,106.2 +16.4,1.00,8.720,107.9 +16.6,1.00,8.810,110.6 +16.6,1.00,9.200,109.9 +16.4,1.00,9.930,109.5 +16.4,1.00,10.030,111.5 +16.3,1.00,10.110,112.2 +16.0,1.00,9.370,110.2 +16.2,1.00,9.080,114.7 +16.2,1.00,10.140,118.5 +16.4,1.00,10.960,123.2 +16.6,0.99,10.500,126.0 +16.7,0.99,10.070,128.9 +17.1,0.99,10.460,133.8 +17.4,0.99,9.420,145.3 +17.8,0.99,11.160,144.8 +17.9,0.99,10.080,151.7 +17.8,0.99,8.160,146.2 +18.6,0.99,10.220,159.3 +18.7,0.99,9.200,159.1 +18.3,0.99,10.070,154.3 +18.4,0.99,10.190,142.6 +18.8,0.99,9.890,142.5 +18.9,0.99,10.380,148.0 +18.8,0.99,10.940,141.9 +18.5,0.99,10.990,135.5 +18.8,0.99,9.750,147.3 +18.9,0.99,11.160,149.2 +19.2,0.99,10.270,147.1 +18.1,0.99,9.140,133.8 +19.1,0.99,11.720,158.3 +19.1,0.99,12.320,157.7 +19.0,0.99,12.850,147.8 +18.5,0.99,12.620,146.5 +18.4,0.99,11.640,143.1 +18.7,0.99,13.150,153.6 +18.6,0.98,13.060,152.4 +18.7,0.98,12.990,152.8 +18.7,0.98,12.030,153.5 +18.8,0.98,12.360,155.8 +18.8,0.98,12.010,155.5 +18.5,0.98,10.870,153.3 +18.7,0.98,11.050,155.3 +19.0,0.98,8.340,176.6 +19.1,0.99,7.230,188.8 +19.5,0.99,8.640,191.5 +19.7,0.99,8.400,189.6 +20.3,0.99,11.470,175.9 +16.5,0.99,6.140,288.3 +14.3,0.99,11.310,345.6 +13.9,0.99,12.240,348.8 +13.9,0.99,11.620,345.2 +13.9,0.99,11.060,346.8 +14.0,0.99,10.070,348.5 +14.4,0.99,8.590,348.8 +15.0,0.99,7.260,352.6 +14.9,0.99,5.960,356.6 +15.6,0.99,9.680,344.6 +15.2,0.99,13.880,341.2 +14.2,0.99,14.690,342.5 +13.3,0.99,13.900,351.4 +12.2,0.99,14.450,355.6 +11.3,0.99,13.270,0.1 +10.8,0.99,12.200,359.2 +10.0,0.99,12.300,1.4 +9.7,0.99,11.540,2.7 +9.5,0.99,11.090,2.0 +9.3,0.99,11.160,1.6 +8.9,0.99,10.320,0.2 +8.7,0.99,9.950,357.3 +8.7,0.99,8.180,350.6 +8.9,0.99,7.450,343.3 +9.1,0.99,8.630,333.4 +9.3,0.99,7.630,329.2 +11.2,0.99,10.270,323.6 +12.1,0.99,10.080,328.1 +13.1,0.99,9.990,328.5 +13.6,0.99,10.480,330.6 +13.9,0.99,9.870,332.2 +14.0,0.99,8.440,328.1 +13.7,0.99,8.730,346.4 +13.3,0.99,8.090,347.5 +13.0,0.99,7.150,348.8 +12.6,0.99,5.520,6.9 +12.4,0.99,4.660,8.2 +12.4,0.99,4.980,7.8 +11.9,0.99,4.760,12.1 +11.5,0.99,4.110,13.3 +11.2,0.99,4.110,11.8 +11.0,0.99,3.690,22.8 +11.2,0.99,3.820,38.8 +11.3,1.00,3.820,42.1 +11.3,1.00,3.660,43.6 +11.5,1.00,3.150,49.2 +11.7,1.00,3.250,42.2 +11.8,1.00,3.290,39.4 +12.1,1.00,2.860,43.6 +12.5,1.00,2.410,63.5 +13.3,1.00,1.840,99.3 +13.8,1.00,1.700,129.4 +14.2,1.00,1.870,133.4 +14.4,1.00,2.100,151.9 +14.7,1.00,2.410,150.9 +14.9,1.00,2.770,144.6 +14.8,1.00,3.270,142.7 +14.8,1.00,2.900,142.2 +14.9,1.00,2.410,140.1 +15.0,1.00,2.230,130.6 +15.0,1.00,2.250,121.1 +15.1,1.00,1.690,116.7 +15.1,1.00,2.040,98.3 +15.0,1.00,1.940,77.8 +14.7,1.00,2.230,48.2 +14.2,1.00,2.880,20.3 +13.8,1.00,3.220,11.5 +13.5,1.00,3.590,13.4 +12.2,1.00,5.450,8.2 +11.8,1.00,5.180,19.8 +11.6,1.00,6.850,31.9 +12.8,1.00,7.030,44.4 +13.0,1.00,6.100,52.1 +13.6,1.00,5.810,64.3 +14.9,1.00,5.570,85.3 +15.2,1.00,4.790,91.6 +15.3,1.00,3.850,100.8 +15.5,1.00,3.160,107.4 +15.6,1.00,2.560,113.4 +15.7,1.00,2.630,113.6 +15.6,1.00,2.920,112.3 +15.5,1.00,2.810,113.2 +15.5,1.00,2.730,110.8 +15.4,1.00,2.940,107.6 +15.4,1.00,3.660,107.8 +15.4,1.00,3.960,109.6 +15.4,1.00,4.360,99.5 +15.7,1.00,5.150,104.6 +15.6,1.00,5.570,110.3 +15.5,1.00,5.540,109.1 +15.5,1.00,5.810,113.9 +15.4,1.00,5.810,115.0 +15.4,1.00,6.030,118.0 +15.4,1.00,6.630,119.6 +15.3,1.00,6.780,123.8 +15.3,1.00,6.550,122.7 +15.3,1.00,6.050,125.2 +15.3,1.00,5.740,129.8 +15.6,1.00,5.520,134.7 +15.6,1.00,5.570,138.4 +15.6,1.00,5.450,144.2 +15.6,1.00,5.450,150.8 +15.7,1.00,5.490,154.5 +15.6,1.00,5.810,156.9 +15.5,1.00,6.040,158.4 +15.6,1.00,6.280,160.4 +15.6,1.00,6.460,162.3 +15.7,1.00,6.360,164.5 +15.8,1.00,6.540,169.5 +15.9,1.00,6.590,172.7 +16.0,1.00,6.910,176.6 +16.0,1.00,6.550,179.9 +16.2,1.00,6.630,181.3 +16.3,1.00,6.650,183.2 +16.4,1.00,6.250,184.8 +16.5,1.00,6.470,183.3 +16.7,1.00,6.780,189.3 +16.8,1.00,6.530,189.1 +16.9,1.00,6.700,187.9 +17.1,1.00,7.040,187.3 +17.2,1.00,6.540,187.8 +17.4,1.00,7.170,192.6 +17.8,1.00,7.200,194.8 +18.0,1.00,8.140,194.5 +18.0,1.00,8.090,195.3 +18.0,1.00,8.000,194.3 +18.0,1.00,7.780,192.8 +18.0,1.00,7.520,190.8 +17.8,1.00,7.690,188.9 +17.7,0.99,7.870,186.1 +17.6,0.99,7.530,184.2 +17.6,0.99,8.280,183.9 +17.8,0.99,9.050,185.8 +17.8,0.99,9.510,188.5 +17.9,0.99,10.560,190.7 +17.8,0.99,10.660,190.6 +18.0,0.99,11.140,195.4 +17.8,0.99,10.670,196.9 +18.0,0.99,11.010,194.3 +17.9,0.99,10.760,190.5 +17.9,0.99,9.660,189.1 +18.1,0.99,10.210,187.2 +18.2,0.99,10.080,190.0 +18.2,0.99,8.850,187.3 +18.3,0.99,8.690,185.5 +18.4,0.99,8.890,186.2 +18.6,0.99,7.690,180.4 +18.8,0.99,8.310,181.3 +18.8,0.99,8.950,175.5 +18.8,0.99,8.510,170.8 +18.9,0.99,9.110,173.2 +18.9,0.99,9.800,168.9 +18.6,0.99,9.890,167.0 +18.9,0.99,10.260,165.7 +18.7,0.99,10.650,165.0 +18.8,0.99,10.520,166.9 +18.7,0.99,10.480,165.8 +18.7,0.99,10.470,167.2 +18.8,0.99,10.520,171.1 +18.8,0.99,10.550,169.4 +18.9,0.99,10.720,171.6 +19.0,0.99,10.850,171.7 +19.0,0.99,10.710,175.4 +19.0,0.99,10.330,171.0 +19.2,0.99,10.710,169.9 +19.2,0.99,10.330,166.4 +19.4,0.99,10.580,161.9 +19.3,0.99,9.900,160.9 +19.2,0.99,9.640,163.4 +19.3,0.99,8.940,165.2 +19.6,0.99,9.590,170.4 +19.7,0.99,9.900,168.5 +19.6,0.98,10.550,168.6 +19.6,0.98,9.950,170.2 +19.7,0.98,10.140,173.9 +19.4,0.98,9.530,167.6 +19.1,0.98,9.490,163.2 +18.7,0.98,9.940,165.3 +18.5,0.98,9.650,170.4 +18.3,0.98,8.850,167.8 +18.6,0.98,7.570,165.5 +19.5,0.98,12.020,179.3 +19.3,0.98,11.120,183.7 +18.5,0.98,10.000,191.5 +19.0,0.98,8.560,185.5 +18.6,0.98,6.760,188.2 +19.0,0.98,7.960,196.2 +19.0,0.98,8.500,196.3 +18.6,0.98,10.040,195.9 +18.2,0.99,7.250,218.6 +18.3,0.99,4.490,230.2 +18.6,0.99,2.340,209.7 +18.8,0.99,3.500,188.4 +19.2,0.99,4.760,181.0 +19.4,0.99,5.820,188.9 +19.6,0.98,5.170,199.6 +19.6,0.98,5.250,192.5 +19.7,0.98,4.440,184.6 +19.5,0.98,4.750,181.1 +19.4,0.98,4.420,182.0 +19.2,0.99,4.650,179.1 +19.2,0.99,4.240,194.0 +19.3,0.99,4.070,201.9 +19.4,0.99,2.170,218.1 +19.4,0.99,3.390,348.1 +19.8,0.99,4.740,13.6 +20.3,0.99,9.170,29.4 +19.0,0.99,10.550,43.8 +19.2,0.99,11.340,45.7 +18.4,0.99,12.620,55.1 +18.2,0.99,12.730,65.6 +18.2,0.99,12.390,76.2 +17.8,0.99,13.160,78.4 +17.7,0.99,11.600,87.1 +17.7,0.99,10.450,92.1 +17.6,0.99,9.730,96.1 +17.4,0.99,9.020,97.3 +17.5,0.99,8.160,99.4 +17.9,0.99,7.950,103.4 +17.9,0.99,7.210,101.2 +17.9,0.99,6.630,93.4 +17.8,0.99,6.610,81.7 +17.8,0.99,6.690,81.0 +18.0,0.99,6.220,81.8 +17.9,0.99,7.450,79.4 +17.9,0.99,8.200,77.0 +18.0,0.99,7.370,74.6 +18.3,0.99,7.490,78.8 +18.1,0.99,7.250,62.9 +18.1,0.99,7.130,68.1 +18.1,0.99,7.850,62.8 +17.6,0.99,8.600,48.0 +18.4,0.99,10.030,41.4 +17.8,0.99,13.370,25.9 +16.2,0.99,16.410,26.1 +14.8,0.99,15.030,22.4 +13.6,0.99,14.770,50.8 +13.4,1.00,14.110,58.8 +14.0,1.00,12.240,65.3 +14.5,1.00,12.060,44.7 +14.9,1.00,8.360,40.4 +15.7,1.00,6.830,43.0 +16.5,1.00,6.860,63.1 +17.8,0.99,8.070,69.9 +18.5,0.99,7.740,77.2 +18.1,0.99,6.760,95.1 +18.1,0.99,6.140,96.4 +18.7,0.99,6.540,91.0 +19.2,0.99,8.400,81.5 +18.9,0.99,7.680,62.6 +18.2,0.99,7.010,55.5 +18.0,0.99,7.630,75.0 +17.8,0.99,8.670,86.2 +17.5,0.99,8.230,93.8 +17.2,0.99,7.810,98.4 +17.1,0.99,8.370,113.2 +17.1,0.99,7.920,109.7 +17.0,0.99,8.210,110.9 +16.9,0.99,8.950,115.0 +16.8,0.99,9.160,119.9 +16.9,0.99,9.440,128.3 +16.9,0.99,9.770,129.0 +17.0,0.99,9.780,132.6 +17.0,0.99,9.430,132.6 +17.1,0.99,9.790,137.3 +17.4,0.99,9.480,137.6 +17.8,0.99,10.640,143.2 +18.0,0.99,10.900,144.0 +18.0,0.99,11.450,146.2 +18.2,0.99,11.860,147.8 +18.3,0.98,11.810,149.1 +18.5,0.98,12.480,152.4 +18.6,0.98,11.220,154.4 +18.7,0.98,11.690,155.9 +18.9,0.98,11.500,158.3 +18.9,0.98,9.730,158.5 +19.0,0.98,9.870,162.2 +19.1,0.98,10.530,167.0 +19.2,0.98,10.300,168.2 +19.1,0.98,10.530,172.2 +19.4,0.98,10.450,179.5 +19.8,0.98,10.260,180.1 +19.5,0.98,8.600,176.7 +19.7,0.98,10.050,181.4 +20.0,0.98,10.300,183.7 +20.1,0.98,9.640,186.7 +20.0,0.98,10.040,181.3 +19.7,0.98,8.880,176.8 +19.6,0.98,8.200,173.1 +19.8,0.98,8.660,172.1 +20.3,0.98,9.070,176.1 +20.1,0.98,8.020,172.7 +20.5,0.98,7.880,183.3 +20.5,0.98,7.320,181.5 +20.2,0.98,7.050,174.1 +20.3,0.98,6.240,174.5 +20.1,0.98,6.630,169.4 +20.4,0.98,5.960,164.5 +19.4,0.98,6.090,152.6 +18.8,0.98,6.530,149.5 +18.9,0.98,5.760,146.0 +19.1,0.98,6.340,144.0 +19.1,0.98,6.750,141.6 +19.0,0.98,5.850,130.6 +19.6,0.98,6.100,140.0 +19.1,0.98,5.220,140.4 +19.4,0.98,5.420,131.8 +19.7,0.98,4.530,122.6 +19.4,0.98,3.340,110.6 +19.6,0.98,3.010,114.8 +19.4,0.98,3.500,101.0 +19.7,0.98,2.210,106.4 +19.7,0.98,1.140,68.8 +19.4,0.98,2.520,39.3 +19.7,0.98,2.860,31.7 +19.9,0.98,2.450,31.9 +19.9,0.98,2.870,31.0 +20.0,0.98,2.100,31.3 +20.1,0.98,1.080,36.0 +19.9,0.98,0.390,201.6 +19.7,0.98,0.810,256.8 +19.6,0.98,1.080,323.1 +19.8,0.98,0.920,334.8 +19.2,0.98,1.810,271.7 +19.1,0.98,3.010,246.5 +19.4,0.98,3.660,281.4 +19.5,0.98,2.230,271.9 +19.4,0.98,6.630,322.3 +19.6,0.98,6.490,319.2 +18.9,0.98,5.490,5.6 +17.9,0.98,7.040,357.1 +16.0,0.99,13.730,340.4 +15.0,0.99,13.980,341.6 +13.9,0.99,16.160,333.2 +12.4,0.99,15.270,336.2 +11.8,0.99,14.350,335.5 +11.7,0.99,14.360,334.5 +12.1,0.99,12.750,331.1 +13.2,0.99,13.570,330.2 +13.8,0.99,14.120,331.1 +14.2,0.99,13.880,334.0 +14.1,0.99,14.260,332.6 +13.9,0.99,13.280,341.8 +13.6,0.99,12.750,343.5 +12.9,0.99,13.610,351.2 +12.0,0.99,13.250,355.9 +11.6,0.99,12.970,359.7 +10.8,0.99,13.840,3.8 +10.3,0.99,13.610,10.8 +9.9,1.00,14.420,14.9 +9.2,1.00,14.550,16.3 +8.8,1.00,14.410,21.2 +8.4,1.00,14.810,25.1 +7.9,1.00,14.670,25.5 +7.5,1.00,14.100,25.6 +7.1,1.00,12.930,25.7 +6.4,1.00,12.030,24.2 +6.2,1.00,10.780,24.2 +6.3,1.00,8.970,19.8 +6.9,1.00,8.230,12.6 +7.9,1.00,8.100,6.8 +9.3,1.00,7.290,0.9 +10.8,1.00,6.880,355.7 +11.7,1.00,7.190,350.2 +12.3,1.00,7.650,343.6 +12.7,1.00,7.400,341.3 +13.0,1.00,7.650,342.3 +13.1,1.00,8.850,344.9 +12.8,1.00,9.000,1.4 +12.6,1.00,8.680,358.2 +12.2,1.00,9.730,1.9 +11.9,1.00,10.630,7.5 +11.5,1.00,11.600,6.8 +11.0,1.00,12.650,10.9 +10.0,1.00,12.100,20.7 +9.8,1.00,11.910,20.9 +9.4,1.00,11.670,19.8 +9.0,1.00,10.820,22.5 +8.7,1.00,10.560,22.0 +8.4,1.00,9.990,24.8 +8.0,1.01,9.020,27.0 +7.8,1.01,8.560,29.4 +7.7,1.01,7.860,28.0 +7.8,1.01,6.780,26.9 +8.1,1.01,5.300,17.4 +9.2,1.01,4.840,355.2 +10.1,1.01,4.430,330.6 +11.5,1.00,5.490,349.3 +12.3,1.00,6.740,344.7 +12.7,1.00,6.230,340.4 +13.2,1.00,6.590,349.6 +13.3,1.00,7.780,349.4 +13.2,1.00,6.810,4.5 +12.8,1.00,6.180,11.4 +12.6,1.00,5.320,24.6 +12.5,1.00,4.660,38.0 +12.6,1.00,3.840,54.9 +12.7,1.00,3.750,65.0 +12.6,1.00,3.830,76.2 +12.6,1.00,3.390,83.2 +12.5,1.00,3.590,101.3 +12.6,1.00,3.810,98.7 +12.8,1.00,3.410,108.7 +12.8,1.00,4.110,115.7 +12.8,1.00,3.050,112.6 +13.0,1.00,4.340,121.4 +13.1,1.00,5.550,127.7 +13.3,1.00,4.410,136.1 +13.4,1.00,5.370,115.6 +13.6,1.00,4.800,136.8 +13.9,1.00,4.900,130.1 +14.1,1.00,5.950,135.8 +14.0,1.00,6.640,128.3 +14.1,1.00,7.600,126.4 +14.2,1.00,7.400,131.9 +14.3,1.00,8.220,131.8 +14.3,1.00,8.270,135.0 +14.5,1.00,8.390,139.8 +14.7,1.00,8.170,140.8 +14.9,1.00,8.330,142.2 +15.1,1.00,8.070,151.7 +15.2,1.00,8.140,150.1 +15.5,1.00,8.060,153.4 +15.7,1.00,7.330,153.3 +15.9,1.00,7.280,163.3 +16.0,1.00,6.240,153.2 +16.2,1.00,5.960,156.4 +16.3,1.00,5.500,149.4 +16.4,1.00,5.610,146.2 +16.4,1.00,6.790,135.4 +16.6,1.00,7.320,130.6 +16.6,1.00,7.190,121.2 +16.7,1.00,8.100,122.4 +16.8,1.00,7.880,122.0 +16.9,1.00,8.260,125.7 +17.1,1.00,8.210,131.0 +17.2,1.00,8.130,133.6 +17.1,1.00,8.790,129.0 +17.2,1.00,8.630,133.1 +17.3,1.00,8.890,135.2 +17.0,1.00,7.720,126.1 +17.2,1.00,8.350,135.6 +17.3,1.00,8.400,134.3 +17.3,1.00,7.680,134.4 +17.4,1.00,8.270,141.6 +17.5,1.00,8.350,145.0 +17.5,1.00,8.130,146.1 +17.5,1.00,8.050,145.3 +17.4,1.00,8.320,144.6 +17.6,1.00,8.030,146.1 +17.7,1.00,8.000,143.7 +17.8,1.00,8.720,144.9 +17.8,1.00,8.580,141.1 +17.9,1.00,8.940,144.3 +17.8,1.00,8.220,138.8 +17.9,1.00,8.510,141.7 +18.0,1.00,8.390,142.6 +18.0,1.00,7.870,142.3 +18.4,1.00,8.100,147.3 +18.4,1.00,8.000,143.7 +18.4,1.00,8.240,144.6 +18.4,1.00,7.690,141.8 +18.4,1.00,7.880,145.7 +18.4,1.00,7.520,138.7 +18.2,1.00,7.730,136.1 +18.1,1.00,8.060,136.7 +18.1,1.00,8.470,140.3 +18.2,1.00,7.910,142.4 +18.3,1.00,8.330,147.1 +18.3,1.00,8.080,150.8 +18.3,1.00,8.530,152.4 +18.3,0.99,8.220,148.6 +18.3,0.99,7.270,147.8 +18.5,0.99,8.650,154.7 +18.5,0.99,8.060,157.4 +18.7,0.99,7.080,163.5 +18.8,0.99,6.880,162.4 +18.8,0.99,6.320,163.1 +18.8,0.99,6.680,172.8 +19.0,0.99,6.460,178.3 +19.2,0.99,6.160,172.2 +19.3,0.99,7.320,175.2 +19.3,0.99,7.580,177.9 +19.3,0.99,7.150,178.8 +19.2,0.99,7.630,180.7 +19.3,0.99,7.610,183.1 +19.4,0.99,6.390,187.3 +19.3,0.99,6.390,186.8 +18.9,0.99,6.440,184.1 +18.9,0.99,7.350,185.4 +19.0,0.99,8.330,189.1 +18.9,0.99,9.170,187.5 +18.9,0.99,9.880,188.3 +19.1,0.99,9.270,194.1 +18.7,0.99,8.560,186.2 +18.7,0.99,9.360,190.3 +18.7,0.99,7.930,189.2 +18.9,0.99,5.740,197.8 +19.2,0.99,7.340,203.1 +19.5,0.99,8.200,192.7 +19.2,0.99,8.900,184.8 +19.2,0.99,5.930,183.4 +19.3,0.99,6.320,182.1 +19.4,0.99,7.980,185.1 +19.6,0.99,8.240,180.4 +19.5,0.99,7.660,175.9 +19.9,0.99,6.860,188.9 +20.0,0.99,5.480,189.5 +20.0,0.99,5.880,183.1 +20.1,0.99,6.910,175.3 +20.1,0.99,7.650,169.1 +18.4,0.99,13.110,56.1 +17.7,0.99,13.950,30.0 +17.9,0.99,5.580,14.0 +21.7,0.99,14.030,130.4 +18.7,0.99,10.740,144.2 +18.7,0.99,10.270,171.4 +19.0,0.99,7.570,161.4 +18.9,0.99,6.830,169.5 +19.1,0.99,6.080,164.3 +18.8,0.99,3.130,170.8 +18.5,0.99,1.800,187.4 +18.4,0.99,0.680,285.5 +18.2,0.99,1.020,343.6 +18.1,0.99,1.720,25.7 +18.1,0.99,2.980,54.3 +18.2,0.99,3.090,74.0 +18.0,0.99,3.920,99.6 +18.0,0.99,3.270,96.5 +17.9,0.99,3.880,89.7 +18.3,0.99,4.500,113.3 +18.5,0.99,4.900,122.3 +18.5,0.99,5.090,120.8 +18.5,0.99,5.480,121.0 +18.6,0.99,5.460,127.0 +18.5,0.99,5.740,129.4 +18.2,0.99,6.100,141.8 +18.3,0.99,6.130,143.3 +18.3,0.99,6.540,145.1 +18.4,0.99,6.830,144.2 +18.3,0.99,6.890,154.0 +18.2,0.99,5.630,152.3 +17.3,0.99,7.150,166.3 +18.2,0.99,6.480,173.4 +18.3,0.99,4.600,133.3 +18.5,0.99,6.320,132.5 +18.7,0.99,5.430,132.7 +18.7,0.99,5.420,135.2 +18.7,0.99,5.410,109.5 +18.8,0.99,8.270,114.9 +18.8,0.99,6.860,126.2 +19.3,0.99,9.590,130.1 +19.3,0.99,9.410,126.5 +19.1,0.99,6.960,132.7 +19.5,0.99,6.490,136.7 +19.6,0.99,5.380,127.6 +19.5,0.99,4.690,107.8 +19.6,0.99,5.200,96.7 +19.6,0.99,7.150,81.9 +19.7,0.99,8.280,93.7 +19.3,0.99,9.050,94.7 +19.5,0.99,10.440,112.1 +19.5,0.99,9.000,102.1 +19.4,0.99,8.190,91.6 +19.4,0.99,8.890,112.2 +19.1,0.99,7.190,108.0 +19.3,0.99,6.810,100.1 +19.4,0.99,6.290,107.0 +17.3,0.99,10.660,170.4 +17.9,0.99,3.180,162.3 +17.7,0.99,5.130,256.4 +18.0,0.99,2.390,234.5 +18.0,0.99,5.250,299.6 +14.8,0.99,14.650,0.1 +16.2,0.99,8.440,77.3 +16.3,0.99,7.850,14.0 +16.4,0.99,10.720,15.2 +16.4,0.99,8.430,24.8 +16.5,0.99,7.930,36.6 +17.4,0.99,5.360,39.9 +18.8,0.99,8.690,4.2 +17.8,0.99,11.590,7.0 +16.1,0.99,11.800,10.4 +14.3,0.99,11.090,12.5 +13.1,0.99,9.630,31.7 +12.4,0.99,9.510,14.1 +12.3,0.99,8.290,8.2 +12.1,0.99,9.190,15.4 +11.7,0.99,10.360,18.1 +11.9,0.99,8.650,1.0 +11.4,0.99,8.980,355.9 +11.3,0.99,8.230,350.2 +11.3,0.99,7.010,345.3 +11.1,0.99,6.760,354.1 +11.1,0.99,6.740,330.4 +10.9,0.99,8.080,335.2 +10.8,0.99,8.170,329.1 +10.3,0.99,9.780,332.3 +10.1,0.99,9.460,333.8 +10.0,0.99,9.380,332.6 +10.1,0.99,9.570,326.7 +10.1,0.99,11.410,322.9 +10.6,0.99,9.960,334.9 +11.0,0.99,10.830,335.7 +11.3,0.99,10.690,336.8 +11.4,0.99,11.710,333.3 +11.0,0.99,10.700,339.7 +10.9,0.99,10.580,337.6 +10.4,0.99,9.820,337.9 +10.2,0.99,9.600,343.8 +10.1,1.00,9.160,347.6 +10.3,1.00,8.680,348.7 +10.5,1.00,9.510,347.7 +9.9,1.00,9.350,0.7 +9.5,1.00,9.130,355.9 +9.3,1.00,8.660,354.6 +9.5,1.00,7.330,356.0 +9.6,1.00,6.870,351.3 +9.5,1.00,7.620,353.9 +9.8,1.00,7.680,352.4 +9.5,1.00,7.140,354.2 +9.5,1.00,6.200,353.1 +9.8,1.00,4.810,343.3 +10.3,1.00,3.840,340.0 +10.9,1.00,3.020,329.5 +11.6,1.00,2.810,283.5 +13.5,1.00,2.770,266.5 +14.7,1.00,2.600,265.9 +15.6,1.00,2.520,261.0 +16.1,1.00,1.750,214.7 +16.4,1.00,2.950,199.6 +16.6,1.00,3.360,190.7 +16.3,0.99,4.100,190.5 +16.4,0.99,4.020,180.0 +16.5,0.99,4.080,175.1 +16.6,0.99,4.110,172.8 +16.7,0.99,3.670,171.2 +16.8,0.99,4.190,164.4 +16.6,0.99,5.010,153.7 +16.5,0.99,5.130,146.7 +16.6,0.99,5.850,142.3 +16.8,0.99,7.670,138.1 +16.8,0.99,8.510,141.2 +16.9,0.99,9.220,146.6 +17.0,0.99,9.300,149.5 +17.2,0.99,9.350,152.8 +17.3,0.99,9.570,152.8 +17.5,0.99,8.280,166.8 +17.8,0.99,7.550,156.6 +18.0,0.99,7.250,167.6 +18.6,0.99,7.320,173.4 +18.7,0.99,8.710,169.6 +18.9,0.99,8.580,168.8 +18.9,0.99,8.910,169.2 +18.8,0.99,8.130,165.1 +18.8,0.99,7.530,159.8 +18.6,0.99,6.780,151.0 +18.6,0.99,7.700,160.4 +18.8,0.99,8.490,161.1 +18.8,0.99,8.630,157.1 +18.7,0.99,7.500,155.3 +18.9,0.99,8.650,163.6 +18.9,0.99,8.230,162.4 +19.0,0.99,7.900,165.2 +19.0,0.99,8.260,165.4 +19.1,0.99,8.090,165.7 +19.1,0.99,7.700,164.4 +19.1,0.99,8.080,162.7 +19.4,0.99,8.670,168.3 +19.1,0.99,7.550,155.2 +19.3,0.99,7.800,156.5 +19.2,0.99,7.750,152.4 +19.3,0.99,7.640,156.0 +19.4,0.99,7.690,155.1 +19.6,0.99,8.420,154.8 +19.7,0.99,8.050,151.9 +19.8,0.99,8.590,155.7 +19.7,0.99,8.980,149.5 +19.7,0.99,8.550,150.8 +19.6,0.99,9.330,149.3 +19.5,0.99,9.810,148.5 +19.5,0.99,10.370,154.3 +19.4,0.99,10.490,154.5 +19.4,0.99,11.240,153.7 +19.6,0.99,11.370,163.3 +19.4,0.99,10.930,160.7 +19.4,0.99,10.520,160.4 +19.5,0.99,9.490,162.5 +19.8,0.99,10.120,169.8 +19.7,0.99,9.860,168.9 +19.6,0.99,8.880,161.7 +19.5,0.99,9.340,159.3 +19.9,0.99,10.880,159.6 +19.6,0.99,10.090,153.8 +19.6,0.99,10.080,147.2 +19.8,0.99,10.720,143.7 +19.9,0.99,9.800,149.0 +20.0,0.99,9.570,141.6 +20.2,0.99,8.940,150.0 +20.7,0.99,10.770,157.4 +20.3,0.99,7.900,124.2 +20.3,0.99,10.140,138.0 +20.1,0.99,8.780,127.4 +20.2,0.99,9.190,144.6 +20.0,0.99,11.150,136.7 +20.0,0.99,10.230,141.4 +19.9,0.99,10.620,132.8 +20.1,0.98,10.760,144.2 +19.9,0.98,10.400,140.6 +20.0,0.98,9.710,149.8 +19.9,0.98,9.910,148.1 +20.3,0.98,12.140,147.2 +20.1,0.98,11.790,142.0 +20.1,0.98,12.160,145.6 +20.1,0.98,11.520,144.8 +20.3,0.98,12.780,147.6 +20.2,0.98,12.780,143.5 +20.3,0.98,13.420,138.5 +20.1,0.98,12.390,135.6 +20.1,0.99,13.500,138.9 +20.3,0.99,12.440,137.7 +20.4,0.99,12.470,137.0 +20.9,0.99,12.620,140.7 +20.9,0.99,12.030,139.6 +20.9,0.98,12.570,135.2 +20.9,0.98,12.790,132.7 +20.9,0.98,13.760,133.0 +21.1,0.98,14.550,137.3 +21.2,0.98,15.980,140.8 +21.2,0.98,16.170,140.7 +20.9,0.98,16.060,140.7 +20.7,0.98,16.360,141.0 +21.0,0.98,16.040,143.3 +20.8,0.98,17.140,145.6 +20.7,0.98,15.580,142.8 +20.6,0.98,14.910,142.4 +20.7,0.98,14.540,146.9 +20.6,0.98,13.550,144.0 +20.8,0.98,16.040,150.9 +20.9,0.98,15.550,151.1 +20.8,0.98,14.710,149.1 +21.2,0.98,14.330,147.8 +21.1,0.98,13.060,142.9 +21.2,0.98,13.840,142.5 +21.4,0.98,12.400,145.4 +21.2,0.98,12.260,142.6 +21.8,0.98,11.990,149.4 +21.7,0.98,9.710,158.7 +21.8,0.98,7.870,166.5 +21.4,0.98,4.620,153.2 +21.5,0.98,5.420,151.2 +21.4,0.98,7.110,143.6 +22.0,0.98,8.490,148.1 +21.6,0.98,7.060,154.5 +21.6,0.98,5.020,170.4 +16.5,0.98,8.060,344.3 +15.4,0.98,9.900,339.7 +14.8,0.98,10.740,339.9 +12.9,0.98,11.660,345.9 +11.5,0.98,12.230,345.6 +11.1,0.98,12.910,345.7 +10.6,0.98,12.490,349.0 +10.4,0.98,12.360,352.6 +9.5,0.99,16.150,341.4 +9.2,0.98,14.540,0.6 +9.4,0.99,11.720,348.9 +9.9,0.99,8.640,1.5 +10.3,0.99,7.850,358.6 +9.4,0.99,9.040,341.4 +10.4,0.99,10.490,333.5 +12.8,0.99,7.830,344.3 +14.5,0.99,6.760,335.3 +15.8,0.99,7.000,329.9 +17.0,0.99,7.020,329.0 +17.9,0.99,6.790,330.8 +18.1,0.99,6.240,329.9 +18.2,0.99,6.260,336.5 +18.2,0.99,5.860,348.0 +17.9,0.99,4.800,7.2 +17.6,0.99,4.910,9.5 +17.4,0.99,4.770,10.9 +17.3,0.99,4.210,10.2 +16.6,0.99,3.850,29.5 +16.0,0.99,3.570,34.3 +15.5,0.99,3.560,26.2 +15.0,0.99,3.150,25.2 +15.0,0.99,3.430,27.5 +14.9,0.99,4.070,35.0 +15.3,0.99,4.480,45.8 +15.8,0.99,4.840,50.7 +16.4,0.99,4.790,64.8 +16.4,0.99,4.460,55.9 +16.4,0.99,4.170,59.7 +16.8,0.99,4.000,71.4 +17.5,0.99,4.100,94.4 +17.7,0.99,4.440,111.6 +17.9,0.99,4.210,113.5 +18.1,0.99,3.980,113.8 +18.4,0.99,3.370,111.6 +18.4,0.99,4.460,115.5 +18.3,0.99,3.750,119.0 +18.4,0.99,4.480,120.3 +18.6,0.99,5.000,119.7 +18.7,0.99,5.670,122.3 +18.7,0.99,6.420,125.0 +18.7,0.99,7.150,130.1 +18.5,0.99,5.930,124.8 +18.5,0.99,5.770,119.1 +18.5,0.99,5.430,118.0 +18.6,0.99,5.490,119.2 +18.5,0.99,5.740,106.9 +18.5,0.99,5.810,100.3 +18.6,0.99,6.500,99.9 +19.0,0.99,7.990,101.5 +19.0,0.99,8.240,101.3 +18.9,0.99,8.190,103.3 +18.9,0.99,8.080,97.8 +18.9,0.99,8.450,100.0 +19.3,0.99,9.430,96.8 +19.2,0.99,10.460,102.0 +19.2,0.99,9.680,102.5 +19.2,0.99,8.740,100.1 +19.2,0.99,9.550,102.9 +19.2,0.99,10.220,105.8 +19.1,0.99,6.850,97.8 +19.3,0.99,7.680,76.8 +19.4,0.99,9.600,89.1 +19.1,0.98,8.870,101.4 +18.8,0.98,8.990,110.0 +18.1,0.98,9.460,110.0 +18.0,0.98,9.450,100.9 +18.3,0.98,7.000,96.8 +18.5,0.98,8.110,95.4 +18.4,0.98,7.180,89.5 +18.5,0.98,6.710,94.5 +18.5,0.98,6.960,92.7 +18.4,0.98,5.500,95.9 +18.5,0.98,4.980,100.5 +18.7,0.98,3.370,123.6 +18.8,0.98,2.150,140.4 +18.8,0.98,1.630,138.5 +18.8,0.98,2.290,134.4 +19.5,0.98,3.130,135.9 +19.9,0.98,3.320,151.4 +20.1,0.98,4.510,155.6 +20.2,0.98,5.440,157.6 +20.2,0.98,6.020,159.4 +20.1,0.98,6.680,160.7 +19.9,0.98,7.820,160.1 +19.8,0.98,8.520,162.3 +19.9,0.98,9.230,170.1 +19.8,0.98,8.290,176.1 +19.8,0.98,7.910,174.8 +20.1,0.98,9.880,180.8 +20.2,0.98,8.310,177.1 +20.4,0.98,8.150,171.5 +20.4,0.98,7.200,184.2 +20.4,0.98,7.730,186.3 +20.8,0.98,9.430,189.4 +20.8,0.98,6.260,179.0 +21.3,0.99,8.540,171.8 +20.5,0.99,7.540,162.7 +20.3,0.99,6.750,171.3 +20.6,0.99,6.980,169.8 +21.1,0.99,6.790,161.8 +21.0,0.99,7.030,160.0 +20.9,0.99,5.710,148.1 +20.9,0.99,5.060,143.0 +21.2,0.99,6.650,139.2 +21.1,0.99,7.560,141.4 +21.0,0.99,7.320,137.4 +20.7,0.99,7.450,136.4 +21.1,0.99,7.570,124.4 +21.0,0.99,7.980,119.9 +21.1,0.99,8.410,123.4 +21.4,0.99,9.060,134.0 +21.6,0.99,9.830,143.8 +21.5,0.99,9.320,147.1 +21.7,0.99,8.230,145.3 +21.7,0.99,9.530,152.3 +22.4,0.99,9.820,172.8 +22.1,0.99,8.620,156.1 +21.8,0.99,7.990,140.6 +21.4,0.99,10.120,154.3 +21.7,0.99,9.300,150.3 +22.2,0.99,9.280,150.4 +21.7,0.99,8.160,140.4 +21.6,0.99,8.550,133.1 +21.7,0.99,7.160,120.3 +22.1,0.99,8.170,123.0 +22.2,0.99,9.580,140.8 +22.1,0.99,7.730,124.6 +22.2,0.99,8.500,123.6 +22.0,0.99,8.450,122.7 +21.9,0.99,10.510,128.2 +21.8,0.99,9.930,120.7 +21.1,0.99,12.040,120.7 +22.2,0.99,11.570,131.8 +21.9,0.99,11.740,132.7 +21.9,0.99,10.060,134.6 +21.9,0.99,12.210,135.8 +21.6,0.99,12.840,142.9 +21.7,0.99,10.640,144.6 +21.6,0.99,10.130,145.2 +21.6,0.99,10.900,134.8 +21.7,0.99,10.860,139.9 +21.7,0.99,9.410,140.0 +21.5,0.99,8.910,135.3 +21.9,0.99,8.350,145.2 +22.4,0.99,9.510,149.1 +21.7,0.99,9.050,138.1 +21.5,0.99,10.470,123.4 +21.7,0.99,10.350,131.1 +21.6,0.99,10.620,125.3 +21.9,0.99,11.140,132.7 +22.2,0.99,12.080,138.9 +22.4,0.99,12.440,136.0 +22.4,0.99,12.820,142.1 +22.4,0.99,13.450,145.9 +22.7,0.98,13.550,150.4 +22.1,0.98,14.190,141.2 +21.8,0.98,14.570,146.3 +21.8,0.98,14.370,146.2 +21.9,0.98,15.000,147.3 +22.0,0.98,15.090,151.6 +21.8,0.98,14.450,150.8 +21.6,0.98,13.980,151.9 +21.7,0.98,13.820,157.4 +21.5,0.98,11.780,162.5 +21.5,0.98,12.780,157.3 +21.6,0.98,12.970,158.2 +21.5,0.98,10.460,157.2 +21.7,0.98,11.880,161.0 +21.6,0.98,10.550,162.6 +21.7,0.98,9.380,156.6 +21.7,0.98,8.720,158.6 +21.7,0.98,5.810,166.3 +21.9,0.98,5.050,181.5 +22.2,0.98,3.810,199.2 +22.4,0.98,3.130,180.8 +22.5,0.98,4.910,160.8 +22.5,0.98,5.520,157.0 +17.2,0.99,15.930,337.7 +16.3,0.99,16.370,348.8 +14.1,0.99,15.080,350.1 +13.7,0.99,14.690,354.4 +13.8,0.99,14.160,0.2 +14.0,0.99,13.490,1.0 +14.8,0.99,15.160,359.9 +14.7,0.99,16.940,359.2 +13.9,0.99,17.430,359.2 +13.0,0.99,17.020,2.1 +12.3,0.99,17.580,5.1 +11.6,0.99,17.850,6.4 +11.1,1.00,17.190,7.0 +10.6,1.00,16.100,8.7 +10.1,1.00,15.000,8.3 +9.9,1.00,13.850,5.2 +10.0,1.00,12.100,2.9 +11.0,1.00,10.190,358.1 +11.7,1.00,9.810,349.7 +12.3,1.00,8.660,336.7 +13.6,1.00,9.570,338.0 +14.7,1.00,10.670,340.2 +15.3,1.00,10.900,339.0 +15.7,1.00,10.600,340.0 +16.0,1.00,10.430,344.3 +16.1,1.00,9.820,347.7 +15.8,1.00,9.640,346.9 +15.5,1.00,8.200,356.3 +15.1,1.00,8.370,5.1 +14.9,1.00,8.320,8.2 +14.8,1.00,7.550,13.4 +14.6,1.00,7.330,23.8 +14.3,1.00,6.940,27.6 +14.2,1.00,6.820,32.7 +14.0,1.00,6.170,34.3 +13.9,1.00,6.320,38.7 +14.1,1.00,6.240,47.0 +14.3,1.00,6.610,61.0 +14.4,1.00,6.650,69.6 +14.6,1.00,6.790,83.8 +14.8,1.00,6.930,86.8 +14.9,1.00,6.860,93.2 +15.1,1.00,6.830,95.8 +15.2,1.00,6.140,96.9 +15.5,1.00,7.440,115.5 +15.6,1.00,6.910,110.5 +15.7,1.00,7.250,114.9 +15.8,1.00,6.450,111.4 +15.8,1.00,7.560,105.5 +15.9,1.00,7.250,107.5 +15.9,1.00,7.800,113.4 +16.0,1.00,7.540,126.2 +16.1,1.00,7.860,127.6 +16.6,1.00,8.400,130.6 +16.7,0.99,7.860,122.6 +16.9,0.99,9.250,118.6 +17.3,0.99,7.460,114.8 +17.5,0.99,7.060,115.9 +17.6,0.99,8.400,120.0 +17.8,1.00,7.150,124.3 +17.8,1.00,7.810,120.1 +17.7,1.00,6.450,110.8 +17.8,1.00,7.140,110.6 +17.9,1.00,7.270,97.8 +18.0,1.00,7.430,95.9 +18.2,1.00,6.790,94.2 +18.3,1.00,6.530,80.8 +18.3,1.00,6.030,81.5 +18.2,1.00,7.760,84.4 +18.1,1.00,7.790,90.1 +18.2,0.99,8.460,92.7 +18.2,0.99,8.160,92.6 +18.3,0.99,7.470,98.6 +18.4,0.99,7.390,98.8 +18.3,0.99,6.820,98.2 +18.2,0.99,6.850,98.3 +18.3,0.99,6.770,100.9 +18.4,0.99,6.670,104.0 +18.6,0.99,6.390,110.5 +18.7,0.99,5.050,92.0 +18.9,0.99,7.370,100.5 +19.1,0.99,6.930,107.7 +18.9,0.99,6.550,110.1 +18.9,0.99,6.180,118.0 +18.9,0.99,5.810,123.4 +18.9,0.99,5.320,119.2 +18.9,0.99,5.090,120.7 +18.9,0.99,5.250,122.2 +18.9,0.99,5.170,113.4 +18.9,0.99,4.620,108.7 +19.0,0.99,4.200,106.8 +19.1,0.99,4.090,109.2 +19.2,0.99,3.690,116.1 +19.3,0.99,4.030,124.8 +19.3,0.99,4.270,125.1 +19.3,0.99,4.560,129.5 +19.3,0.99,5.420,133.7 +19.3,0.99,6.790,138.7 +19.2,0.99,7.000,139.6 +19.2,0.99,7.670,144.7 +19.1,0.99,7.620,142.1 +19.1,0.99,9.440,143.5 +19.4,0.99,7.910,151.9 +19.3,0.99,8.660,141.7 +19.4,0.99,8.130,146.4 +19.4,0.99,7.880,160.8 +19.7,0.99,8.340,163.4 +19.7,0.99,6.240,155.4 +19.7,0.99,7.630,166.4 +19.9,0.99,7.990,157.9 +20.0,0.99,9.240,155.6 +20.3,0.99,8.440,147.9 +20.4,0.99,8.580,155.4 +20.6,0.99,8.200,159.8 +20.6,0.99,6.980,154.0 +20.7,0.99,6.900,150.5 +21.1,0.99,6.530,157.4 +21.1,0.99,6.490,150.5 +21.1,0.99,5.720,146.1 +21.2,0.99,5.760,139.3 +21.4,0.99,6.720,148.5 +21.3,0.99,6.900,140.7 +21.0,0.99,6.150,135.0 +21.4,0.99,7.450,157.0 +20.9,0.99,5.600,152.1 +21.0,0.99,5.520,155.7 +20.8,0.99,4.330,174.2 +21.1,0.99,4.420,168.6 +21.3,0.99,5.340,179.6 +21.3,0.99,4.370,183.8 +21.4,0.99,2.420,256.2 +15.0,0.99,12.720,343.4 +13.9,0.99,12.440,350.9 +13.5,0.99,11.530,350.7 +12.0,0.99,12.730,351.1 +11.0,1.00,11.430,357.6 +10.9,1.00,11.830,357.2 +11.6,1.00,11.030,1.7 +12.2,1.00,10.850,5.6 +13.6,1.00,8.680,7.6 +15.8,1.00,8.150,9.1 +17.2,1.00,8.280,17.8 +18.2,1.00,6.410,24.1 +19.1,1.00,7.150,14.8 +19.4,1.00,7.440,30.4 +19.8,1.00,6.650,32.4 +19.7,1.00,6.810,28.6 +19.4,1.00,7.710,27.6 +18.7,1.00,9.360,31.2 +18.1,1.00,9.600,32.9 +17.7,1.00,9.830,34.5 +17.5,1.00,9.910,40.8 +17.3,1.00,9.840,42.1 +17.1,1.00,9.780,46.0 +16.9,1.00,10.460,50.1 +16.5,1.00,10.460,46.3 +16.2,1.00,11.020,46.1 +15.7,1.00,10.730,47.9 +15.4,1.00,12.170,55.9 +15.0,1.00,11.230,52.6 +14.8,1.00,10.920,52.7 +14.7,1.00,9.410,56.6 +14.9,1.00,8.520,60.5 +15.2,1.00,8.880,63.5 +15.8,1.00,9.790,68.5 +16.4,1.00,8.790,73.7 +16.8,1.00,8.610,71.9 +17.1,1.00,7.900,81.1 +17.6,1.00,7.440,84.0 +18.1,1.00,7.330,91.7 +18.4,1.00,7.840,99.8 +18.5,1.00,7.200,107.1 +18.9,1.00,6.840,113.6 +18.9,1.00,8.030,127.0 +19.4,1.00,7.740,136.6 +19.4,1.00,7.210,130.8 +19.5,1.00,6.170,141.4 +19.6,1.00,5.700,139.1 +19.8,1.00,5.920,135.6 +19.9,1.00,8.140,142.6 +19.9,1.00,7.460,139.1 +19.8,1.00,8.380,140.9 +20.1,1.00,7.590,138.4 +20.3,1.00,8.660,135.0 +20.3,1.00,8.500,134.8 +20.6,1.00,8.530,136.9 +20.5,1.00,7.940,129.6 +20.3,1.00,7.680,128.0 +20.6,1.00,7.820,130.7 +20.7,1.00,7.600,126.6 +20.7,1.00,8.130,127.7 +20.6,1.00,7.940,123.6 +20.6,1.00,8.420,121.7 +20.7,1.00,8.300,125.8 +20.6,0.99,8.800,137.0 +20.3,0.99,9.320,138.9 +20.4,0.99,8.770,133.3 +20.5,0.99,9.260,140.1 +20.4,0.99,9.100,144.3 +20.5,0.99,8.600,150.8 +20.2,0.99,8.870,152.7 +20.4,0.99,7.770,160.8 +20.3,0.99,7.500,161.4 +20.4,0.99,6.410,166.3 +20.4,0.99,6.350,161.9 +20.5,0.99,7.700,162.5 +20.7,0.99,7.290,168.1 +20.5,0.99,7.250,160.8 +20.6,0.99,7.550,159.0 +20.6,0.99,6.570,155.7 +20.7,1.00,3.390,165.7 +20.8,0.99,5.630,151.5 +21.2,0.99,6.070,161.7 +21.2,0.99,6.610,158.3 +21.1,0.99,7.740,157.5 +21.1,0.99,7.960,154.1 +21.0,0.99,8.020,158.9 +21.2,0.99,8.700,159.5 +21.0,0.99,1.710,284.2 +18.6,0.99,11.140,6.1 +19.4,0.99,5.790,30.2 +20.6,0.99,4.140,51.2 +21.2,0.99,5.700,132.3 +20.9,0.99,7.210,134.7 +20.5,0.99,5.070,158.1 +20.4,0.99,4.940,178.0 +20.2,0.99,7.420,158.7 +20.5,0.99,4.970,173.3 +20.5,0.99,1.150,282.1 +20.4,0.99,1.000,8.3 +20.5,0.99,5.370,93.1 +20.6,0.99,3.150,80.8 +20.7,0.99,5.220,91.3 +20.8,0.99,6.020,102.5 +20.9,0.99,5.490,122.2 +20.7,0.99,5.400,119.2 +21.2,0.99,5.090,148.8 +21.6,0.99,5.370,167.9 +21.4,0.99,5.420,174.9 +21.3,0.99,4.280,191.9 +21.3,0.99,2.720,160.6 +21.3,0.99,2.070,154.6 +21.2,0.99,3.310,111.8 +21.4,0.99,3.950,111.8 +21.6,0.99,3.350,114.4 +21.1,0.99,4.950,94.6 +21.3,0.99,4.510,107.4 +21.0,0.99,4.700,119.6 +19.6,0.99,5.670,114.1 +19.8,0.99,4.710,127.8 +20.4,0.99,3.810,121.0 +20.4,0.99,2.870,129.3 +19.9,0.99,2.650,119.8 +20.5,0.99,3.370,135.1 +20.0,0.99,4.160,123.0 +20.1,0.99,4.120,109.6 +20.4,0.99,4.970,117.7 +20.6,0.99,3.980,122.9 +20.8,0.99,5.000,107.9 +20.9,0.99,5.370,118.0 +21.3,0.99,5.110,126.5 +21.1,0.99,3.880,148.8 +21.2,0.99,4.870,148.0 +21.1,0.99,5.670,141.2 +21.1,0.99,5.230,172.7 +21.0,0.99,4.180,175.7 +20.4,0.99,4.360,155.6 +20.3,0.99,4.400,145.8 +20.0,0.99,5.420,153.0 +19.9,0.99,4.550,155.7 +19.9,0.99,3.990,141.0 +19.8,0.99,4.720,140.2 +19.9,0.99,5.280,150.8 +20.6,0.99,6.110,159.2 +21.0,0.99,6.090,161.8 +20.6,0.99,5.050,147.6 +20.5,0.99,5.060,139.7 +20.2,0.99,4.660,140.1 +20.3,0.99,5.470,191.8 +20.1,0.99,5.980,158.7 +20.6,0.99,5.250,154.0 +19.8,0.99,2.380,184.8 +20.2,0.99,2.420,132.3 +19.9,0.99,5.590,118.0 +20.4,0.99,6.100,99.5 +20.2,0.99,6.870,106.5 +20.3,0.98,7.080,129.2 +20.6,0.98,6.190,131.6 +20.8,0.98,5.320,142.5 +21.0,0.98,4.180,152.7 +20.8,0.98,4.950,157.8 +20.9,0.98,4.320,158.7 +20.8,0.99,3.720,151.6 +20.8,0.99,4.140,151.5 +21.4,0.98,5.280,156.9 +21.7,0.99,4.210,163.8 +20.8,0.98,2.620,131.6 +20.8,0.99,1.490,97.4 +20.7,0.99,3.210,105.3 +20.8,0.99,3.560,103.1 +20.6,0.99,3.450,89.8 +20.7,0.99,1.690,100.1 +20.5,0.99,2.320,96.8 +20.3,0.99,3.390,75.2 +20.4,0.99,4.060,80.5 +20.4,0.99,4.230,77.3 +20.6,0.99,4.360,96.9 +20.8,0.99,4.580,107.8 +21.4,0.99,3.720,120.9 +21.7,0.99,4.150,137.0 +21.8,0.99,4.420,148.5 +21.8,0.99,3.860,149.3 +21.9,0.99,3.590,152.8 +21.9,0.99,4.700,166.4 +21.8,0.99,5.990,164.0 +21.6,0.99,4.930,157.0 +21.6,0.99,4.800,144.3 +21.5,0.99,4.020,148.8 +21.7,0.99,3.210,156.6 +21.4,0.99,2.720,182.3 +21.4,0.99,2.860,195.6 +21.3,0.99,2.640,252.5 +21.2,0.99,2.890,290.4 +20.2,0.99,4.060,273.1 +20.0,0.99,5.790,286.7 +19.9,0.99,3.050,331.1 +20.3,0.99,4.730,317.1 +19.7,0.99,8.000,354.6 +19.8,0.99,10.340,8.8 +18.7,0.99,9.500,351.1 +18.9,0.99,8.110,332.8 +21.4,0.99,6.930,332.7 +23.4,0.99,9.160,339.9 +22.7,0.99,8.020,337.5 +21.9,0.99,14.650,323.2 +21.5,0.99,15.680,331.9 +20.8,0.99,15.480,334.3 +19.5,0.99,16.800,333.9 +17.6,0.99,17.220,335.9 +16.0,0.99,16.520,334.0 +14.9,0.99,18.440,341.7 +13.7,0.99,17.530,337.7 +12.9,0.99,18.030,334.8 +12.3,0.99,16.960,333.8 +10.5,0.99,17.240,331.8 +10.1,0.99,15.260,333.3 +9.7,0.99,15.100,330.7 +9.1,0.99,17.220,333.2 +9.1,1.00,14.790,333.1 +8.7,1.00,15.650,336.8 +8.2,1.00,16.210,333.0 +7.9,1.00,16.930,334.6 +8.2,1.00,16.210,331.9 +9.1,1.00,14.920,332.5 +10.3,1.00,15.140,330.6 +11.4,1.00,13.850,329.8 +13.5,1.00,13.660,333.5 +14.8,0.99,14.130,336.6 +15.4,0.99,13.900,337.4 +16.0,0.99,13.760,339.4 +16.3,0.99,14.080,338.6 +16.4,0.99,13.480,333.2 +16.2,0.99,12.640,347.3 +16.0,0.99,12.470,344.9 +16.0,0.99,10.920,350.3 +16.1,0.99,8.460,356.2 +16.1,0.99,7.680,1.4 +16.2,0.99,5.890,9.1 +16.1,0.99,4.530,7.1 +15.7,0.99,2.760,15.7 +15.8,0.99,1.010,2.4 +15.9,0.99,0.430,283.3 +16.0,0.99,1.580,230.9 +16.0,0.99,3.160,224.5 +15.9,0.99,4.150,229.9 +16.0,0.99,4.630,232.0 +15.8,0.99,4.690,237.2 +15.5,0.99,5.200,241.9 +16.0,0.99,5.480,235.5 +16.9,0.99,6.910,223.8 +18.3,0.99,8.420,218.8 +18.8,0.99,9.700,217.4 +19.1,0.99,10.190,219.3 +19.5,0.99,11.020,218.2 +19.9,0.99,12.010,219.6 +20.0,0.99,12.380,223.4 +19.9,0.99,12.710,223.7 +20.0,0.99,12.730,229.1 +20.0,0.99,12.170,231.7 +20.0,0.99,12.230,229.7 +20.1,0.99,11.500,235.5 +20.1,0.99,11.080,240.5 +18.9,0.99,7.290,292.5 +17.8,0.99,8.900,295.4 +17.4,0.99,7.760,309.3 +16.3,0.99,8.090,20.3 +15.4,0.99,8.300,16.9 +14.5,0.99,8.990,15.1 +13.7,0.99,7.610,11.8 +13.2,0.99,6.910,6.8 +13.4,0.99,6.410,353.3 +14.0,0.99,7.180,347.6 +14.2,0.99,7.910,333.6 +14.9,0.99,8.240,330.6 +16.1,0.99,8.740,335.9 +17.2,0.99,8.140,340.9 +17.8,0.99,8.420,346.1 +18.4,0.99,8.230,348.0 +18.8,0.99,7.740,348.8 +18.9,0.99,7.460,352.1 +18.8,0.99,7.620,354.6 +18.4,0.99,7.990,2.7 +18.1,0.99,6.850,11.6 +17.7,0.99,5.910,21.3 +17.6,0.99,4.970,29.5 +17.6,0.99,4.460,26.8 +17.4,0.99,3.570,34.9 +17.2,0.99,2.810,27.6 +17.1,0.99,2.540,20.9 +17.1,0.99,1.440,18.0 +16.8,0.99,1.040,342.6 +15.4,0.99,2.340,333.2 +15.3,0.99,3.330,341.6 +15.5,0.99,2.880,325.8 +15.6,0.99,2.690,324.4 +15.9,0.99,3.120,315.1 +16.6,0.99,2.980,311.4 +16.8,0.99,1.910,281.5 +18.1,0.99,2.260,273.7 +18.2,0.99,2.720,219.3 +18.9,0.99,3.780,220.3 +20.2,0.99,3.480,219.4 +19.7,0.99,5.360,217.1 +19.9,0.99,5.740,220.7 +19.9,0.99,5.470,223.8 +19.9,0.99,6.150,227.4 +19.9,0.99,2.180,221.5 +20.2,0.99,4.950,239.2 +20.1,0.99,3.880,238.6 +19.9,0.99,4.800,225.9 +19.9,0.99,4.430,246.5 +19.9,0.99,4.980,252.1 +19.7,0.99,5.440,269.2 +19.4,0.99,4.840,272.8 +19.5,0.99,5.390,280.0 +19.2,0.99,5.410,280.0 +18.5,0.99,4.670,275.8 +18.1,0.99,5.010,274.2 +18.3,0.99,4.310,265.0 +18.9,0.99,3.880,250.5 +19.9,0.99,3.520,241.1 +20.2,0.99,3.620,226.2 +20.5,0.99,3.900,206.2 +20.7,0.99,5.350,187.7 +20.8,0.99,5.560,183.1 +20.8,0.99,6.600,186.8 +20.8,0.99,6.830,188.1 +20.7,0.99,7.280,187.7 +20.4,0.99,7.380,186.8 +20.4,0.99,7.580,188.0 +20.4,0.99,8.030,182.6 +20.4,0.99,7.680,182.8 +20.4,0.99,7.430,187.5 +20.2,0.99,6.900,199.1 +20.1,0.99,6.800,198.5 +19.9,0.99,6.680,191.3 +19.9,0.99,6.350,185.0 +19.9,0.99,6.240,178.8 +19.8,0.99,5.620,173.6 +19.9,0.99,6.170,183.5 +20.0,0.99,4.030,185.8 +20.3,0.99,8.060,152.6 +20.3,0.99,6.280,158.7 +20.4,0.99,4.870,176.0 +20.4,0.99,3.950,162.0 +20.5,0.99,5.270,153.0 +21.0,0.99,6.180,153.8 +21.0,0.99,7.120,152.6 +21.1,0.99,7.310,156.8 +21.1,0.99,7.390,147.6 +21.1,0.99,7.980,148.5 +21.1,0.99,8.590,141.5 +20.8,0.99,8.410,139.6 +20.9,0.99,8.360,141.9 +20.8,0.99,8.700,149.0 +20.9,0.99,9.540,156.0 +21.0,0.99,9.010,169.8 +20.9,0.99,8.390,166.7 +21.0,0.99,8.980,172.9 +21.9,0.99,10.240,176.2 +21.3,0.99,8.170,160.0 +21.4,0.99,7.250,152.8 +21.3,0.99,8.850,160.1 +21.4,0.99,8.570,156.2 +21.5,0.99,8.560,157.3 +21.5,0.99,8.720,151.6 +21.6,0.99,8.680,151.1 +21.6,0.99,7.940,145.0 +21.7,0.99,9.360,149.4 +21.8,0.99,9.150,152.8 +22.0,0.99,9.460,147.1 +22.0,0.99,9.930,145.1 +21.9,0.99,9.870,145.5 +21.9,0.99,10.760,143.1 +21.9,0.99,10.390,143.1 +21.8,0.99,9.600,143.5 +21.8,0.99,10.050,150.5 +21.9,0.99,8.960,144.3 +22.1,0.99,10.450,147.4 +21.9,0.99,8.500,155.3 +22.0,0.99,8.950,156.3 +22.1,0.99,10.100,162.3 +21.8,0.99,8.370,154.2 +21.7,0.99,7.450,160.1 +21.9,0.99,4.920,153.2 +21.4,0.99,4.780,91.1 +21.3,0.99,6.970,113.1 +21.3,0.99,6.680,111.5 +21.6,0.99,7.020,132.8 +21.7,0.99,7.640,138.4 +21.8,0.99,7.660,140.1 +21.9,0.99,7.870,146.9 +22.0,0.99,6.590,143.1 +21.9,0.99,6.850,133.8 +22.1,0.99,6.940,132.7 +22.2,0.99,6.550,138.2 +22.0,0.99,7.690,134.5 +22.1,0.99,8.680,143.3 +22.0,0.99,6.400,151.5 +22.2,0.99,4.850,276.9 +21.9,0.99,5.970,342.8 +20.4,0.99,6.470,25.5 +20.9,0.99,6.060,28.1 +22.5,0.99,2.830,66.3 +20.3,0.99,5.600,30.8 +20.8,0.99,3.880,38.4 +21.6,0.99,3.210,54.4 +22.1,0.99,2.900,55.3 +20.6,0.99,3.670,22.3 +20.6,0.99,2.560,47.4 +19.5,0.99,4.520,357.6 +19.3,0.99,6.060,337.1 +19.9,0.99,5.430,9.3 +19.9,0.99,4.240,14.0 +19.6,0.99,4.000,2.6 +20.4,0.99,3.210,21.0 +20.8,0.99,3.040,5.9 +21.2,0.99,3.210,340.9 +22.4,0.99,2.130,329.7 +23.2,0.99,1.970,295.8 +24.2,0.99,1.040,295.4 +24.2,0.99,1.390,193.3 +23.8,0.99,2.330,177.5 +25.1,0.99,2.620,309.1 +24.2,0.99,5.140,26.1 +25.5,0.99,9.130,12.8 +24.8,0.99,7.440,30.3 +24.0,0.99,7.570,29.4 +23.6,0.99,10.410,33.9 +23.0,0.99,10.970,38.3 +22.1,0.99,9.750,44.9 +21.6,0.99,8.110,40.1 +21.0,0.99,9.660,46.4 +21.0,0.99,7.520,53.8 +20.7,0.99,9.550,49.8 +20.7,0.99,8.910,55.1 +20.4,0.99,8.420,49.5 +20.2,1.00,9.220,44.7 +20.3,1.00,8.880,49.0 +20.5,1.00,7.270,58.4 +21.2,1.00,7.920,67.1 +21.4,1.00,7.320,83.8 +22.0,1.00,6.070,89.7 +22.3,1.00,5.700,101.8 +22.3,1.00,4.140,106.0 +22.4,1.00,2.720,129.2 +22.4,0.99,1.880,144.7 +22.3,0.99,1.510,167.7 +22.2,0.99,1.150,129.8 +22.2,1.00,1.770,44.4 +22.1,1.00,2.680,16.6 +22.2,1.00,7.370,18.4 +21.8,1.00,9.230,48.4 +21.7,1.00,9.370,62.8 +21.3,1.00,8.140,67.9 +21.2,1.00,8.290,69.2 +20.9,1.00,7.840,69.8 +20.7,1.00,7.660,74.6 +20.6,1.00,7.620,71.1 +20.5,1.00,7.310,77.3 +20.3,1.00,7.220,74.9 +20.2,1.00,7.070,77.0 +20.0,1.00,6.840,74.4 +20.0,1.00,6.920,78.6 +19.9,1.00,6.180,80.7 +19.9,1.00,5.990,90.5 +20.2,1.00,5.750,103.7 +20.3,1.00,5.370,106.9 +20.4,1.00,5.770,116.9 +20.3,1.00,5.620,120.5 +20.4,1.00,5.460,121.1 +20.4,1.00,5.120,127.2 +20.3,1.00,5.070,131.2 +20.3,1.00,4.980,139.3 +20.3,1.00,5.250,138.7 +20.3,1.00,5.250,149.2 +20.3,1.00,5.270,152.5 +20.3,1.00,5.440,160.3 +20.1,1.00,5.410,168.8 +20.1,1.00,5.090,167.8 +20.2,1.00,5.480,175.4 +20.1,1.00,4.810,180.0 +20.1,1.00,5.080,179.3 +20.1,1.00,5.460,163.6 +20.1,1.00,5.400,158.2 +20.0,1.00,4.710,152.7 +20.1,1.00,5.400,145.1 +20.3,1.00,5.730,140.3 +20.4,1.00,5.360,140.4 +20.8,1.00,4.850,146.6 +21.5,1.00,5.870,149.3 +21.9,1.00,6.950,155.3 +21.9,1.00,7.540,151.8 +22.0,1.00,7.230,155.2 +21.8,1.00,8.180,151.0 +21.5,1.00,8.460,149.0 +21.6,1.00,8.900,153.6 +21.6,1.00,9.870,152.9 +21.7,1.00,10.080,157.9 +21.5,1.00,10.740,157.4 +21.5,1.00,10.420,160.1 +21.6,1.00,9.680,162.5 +21.5,1.00,10.200,167.1 +21.7,1.00,8.850,168.8 +21.5,1.00,8.630,163.3 +21.5,0.99,9.030,165.9 +21.7,0.99,8.930,167.0 +21.8,0.99,8.470,170.3 +22.0,0.99,7.980,166.8 +21.9,0.99,8.910,168.0 +21.9,0.99,8.720,169.3 +21.8,0.99,8.570,161.1 +22.0,0.99,8.800,159.3 +21.9,0.99,8.810,155.5 +22.2,0.99,10.100,158.5 +22.3,0.99,9.680,162.9 +22.2,0.99,9.230,160.4 +22.2,0.99,10.020,162.1 +22.1,0.99,9.440,157.5 +21.9,0.99,9.620,160.5 +22.2,0.99,8.850,164.8 +21.8,0.99,10.580,161.5 +21.8,0.99,9.650,168.2 +21.8,0.99,10.300,165.4 +21.8,0.99,9.280,164.0 +21.8,0.99,11.790,166.5 +21.8,0.99,7.920,168.5 +21.7,0.99,9.950,174.5 +21.7,0.99,6.510,179.6 +21.5,0.99,4.540,185.8 +21.6,0.99,4.910,167.3 +21.5,0.99,5.890,163.9 +22.2,0.99,7.250,177.7 +21.6,0.99,7.860,161.8 +21.6,0.99,8.580,163.2 +21.7,0.99,7.970,166.3 +21.7,0.99,9.180,159.6 +21.9,0.99,8.680,162.8 +22.3,0.99,10.960,170.6 +22.3,0.99,10.920,167.8 +22.4,0.99,10.670,171.7 +22.4,0.99,10.900,165.3 +22.4,0.99,11.020,164.1 +22.3,0.99,11.240,163.2 +22.1,0.99,9.980,160.8 +22.2,0.99,9.530,162.7 +22.1,0.99,8.900,163.3 +22.3,0.99,8.960,167.4 +22.3,0.99,9.160,168.5 +22.3,0.99,8.820,169.4 +22.3,0.99,7.860,177.0 +22.2,0.99,10.550,174.5 +22.4,0.99,11.520,175.7 +22.5,0.99,7.160,183.3 +22.3,0.99,4.120,172.2 +22.3,0.99,5.190,153.6 +22.4,0.99,7.110,161.6 +22.2,0.99,4.600,141.0 +22.5,0.99,6.930,159.7 +22.6,0.99,8.960,166.3 +22.6,0.99,7.640,164.2 +22.8,0.99,6.860,166.1 +23.2,0.99,7.100,163.3 +23.1,0.99,9.100,164.8 +23.0,0.99,9.320,171.1 +23.0,0.99,8.850,163.3 +22.9,0.99,8.600,163.6 +22.8,0.99,9.010,160.2 +22.6,0.99,9.520,160.1 +22.5,0.99,9.130,159.7 +22.7,0.99,10.010,165.3 +22.7,0.99,9.690,164.3 +22.2,0.99,11.020,168.4 +22.4,0.99,11.830,174.5 +22.4,0.99,12.940,176.7 +22.4,0.99,9.650,163.3 +22.3,0.99,9.230,177.5 +22.5,0.99,8.890,175.3 +22.8,0.99,12.170,176.1 +22.6,0.99,10.300,176.9 +22.6,0.99,8.520,167.5 +22.6,0.99,7.860,164.9 +22.6,0.99,8.780,160.7 +22.6,0.99,8.700,164.0 +22.6,0.99,9.320,163.8 +22.8,0.99,8.190,159.9 +23.4,0.99,7.800,162.4 +23.4,0.99,8.850,151.9 +23.5,0.99,9.210,156.6 +23.4,0.99,8.410,154.8 +23.6,0.99,8.570,153.5 +23.4,0.99,9.230,147.2 +23.3,0.99,8.950,143.2 +23.5,0.99,10.030,147.3 +22.9,0.99,11.280,142.8 +22.6,0.99,9.990,150.6 +22.7,0.99,10.460,156.3 +22.9,0.99,11.200,160.2 +22.9,0.99,10.160,161.4 +22.8,0.99,9.590,163.8 +22.9,0.99,8.890,168.7 +22.9,0.99,9.990,161.6 +23.1,0.99,9.920,154.4 +23.1,0.99,9.470,154.8 +23.1,0.99,6.490,131.9 +23.1,0.99,5.140,169.4 +23.3,0.99,7.340,169.2 +23.3,0.99,9.770,168.4 +23.4,0.99,8.050,164.3 +23.4,0.99,9.090,153.4 +23.8,0.99,9.710,165.0 +24.0,0.99,9.730,163.3 +23.8,0.99,9.130,154.2 +23.9,0.99,9.630,150.5 +23.8,0.99,10.480,151.1 +23.6,0.99,10.260,145.2 +23.5,0.99,10.950,146.9 +23.7,0.99,11.430,150.7 +23.6,0.99,11.130,150.9 +23.6,0.99,11.380,156.3 +23.6,0.99,11.670,160.8 +23.7,0.99,11.710,160.0 +24.0,0.99,11.160,163.1 +24.0,0.99,10.010,161.8 +23.9,0.99,10.270,160.8 +23.9,0.99,10.080,164.0 +23.8,0.99,9.600,161.3 +24.0,0.99,9.680,159.0 +23.9,0.99,8.690,159.8 +23.9,0.99,8.710,151.8 +23.9,0.99,9.500,147.4 +23.9,0.99,9.610,147.0 +23.9,0.99,9.190,148.9 +23.8,0.99,9.900,145.5 +24.3,0.99,10.260,144.1 +24.1,0.99,11.050,147.9 +23.8,0.99,10.030,143.2 +23.8,0.99,10.550,144.4 +23.8,0.99,9.830,140.6 +23.8,0.99,10.290,142.0 +23.6,0.99,9.870,145.2 +23.5,0.99,11.170,143.4 +23.6,0.99,11.370,147.8 +23.6,0.99,11.310,151.2 +23.6,0.99,11.300,153.5 +23.7,0.99,10.710,160.8 +23.6,0.99,10.680,159.7 +23.6,0.99,9.930,164.1 +23.7,0.99,9.210,162.6 +23.8,0.99,9.460,158.7 +23.7,0.99,8.970,155.1 +23.7,0.99,8.920,154.8 +24.0,0.99,8.990,156.7 +24.1,0.99,8.870,157.3 +23.9,0.99,9.310,151.1 +23.9,0.99,7.600,152.3 +23.9,0.99,7.580,147.6 +24.0,0.99,8.500,152.5 +24.2,0.99,9.860,155.7 +24.2,0.99,9.250,153.4 +24.3,0.99,8.940,157.1 +24.4,0.99,9.100,151.9 +24.3,0.98,9.430,149.0 +24.2,0.98,9.460,150.6 +24.0,0.98,9.360,153.2 +23.9,0.98,10.880,162.2 +23.9,0.98,9.410,168.6 +23.9,0.99,4.310,176.6 +23.9,0.99,1.560,73.3 +24.2,0.99,1.090,137.5 +21.6,0.99,11.500,14.8 +22.7,0.99,6.810,40.3 +24.3,0.99,5.060,202.5 +24.1,0.98,15.100,176.2 +23.8,0.99,8.990,192.6 +24.1,0.99,1.950,208.3 +23.7,0.99,0.930,139.9 +23.7,0.99,0.850,99.5 +23.8,0.99,2.050,109.2 +23.9,0.99,2.130,128.8 +23.9,0.99,2.340,127.2 +24.1,0.99,2.490,132.3 +24.4,0.99,3.380,148.3 +24.4,0.99,3.260,151.7 +24.6,0.99,3.430,165.3 +24.6,0.99,4.190,155.0 +24.6,0.99,4.520,150.4 +24.5,0.99,5.030,147.9 +24.4,0.99,5.750,152.3 +24.0,0.99,4.850,151.7 +24.1,0.99,5.290,145.1 +23.9,0.99,5.120,151.6 +23.8,0.99,5.540,143.7 +23.7,0.99,4.830,158.7 +23.5,0.99,5.400,160.1 +24.0,0.99,4.510,163.6 +24.3,0.99,3.970,168.7 +23.6,0.99,4.560,150.9 +24.4,0.99,5.410,151.6 +23.6,0.99,4.800,139.1 +23.9,0.99,5.040,145.6 +24.1,0.99,5.500,151.4 +24.0,0.99,5.920,149.4 +23.8,0.99,4.960,146.9 +24.1,0.99,5.330,151.8 +24.3,0.99,5.390,151.7 +24.6,0.99,5.270,149.9 +24.6,0.99,4.490,140.7 +25.1,0.99,5.020,139.2 +25.4,0.99,5.920,145.1 +25.4,0.99,5.820,140.9 +25.2,0.99,6.350,135.4 +24.8,0.99,5.980,124.5 +24.8,0.99,7.650,131.8 +25.0,0.99,6.510,121.8 +24.9,0.99,6.340,128.9 +24.4,0.99,5.690,132.1 +24.7,0.99,6.030,140.3 +24.2,0.99,4.830,139.0 +24.2,0.99,5.330,151.4 +23.9,0.99,4.440,149.8 +24.1,0.99,3.870,147.9 +24.4,0.99,4.180,130.7 +24.3,0.99,4.090,140.6 +24.0,0.99,4.110,113.8 +23.9,0.99,5.100,109.9 +23.8,1.00,5.270,114.7 +24.0,1.00,4.520,114.6 +24.0,1.00,3.890,100.5 +24.1,1.00,4.760,111.8 +24.6,1.00,5.150,107.9 +24.7,1.00,5.720,110.2 +24.8,1.00,6.020,114.2 +24.7,0.99,5.560,117.5 +24.7,0.99,5.900,119.0 +24.6,0.99,5.810,121.6 +24.4,0.99,5.820,130.7 +24.3,0.99,7.130,115.7 +24.2,0.99,8.390,110.1 +24.3,0.99,7.300,129.0 +24.6,0.99,6.810,129.6 +24.4,0.99,5.910,134.5 +24.0,0.99,6.840,124.8 +23.9,0.99,8.630,121.0 +24.0,1.00,7.410,129.2 +24.3,1.00,6.210,127.5 +24.2,1.00,6.460,136.8 +24.1,1.00,6.810,138.8 +24.0,1.00,5.610,133.7 +24.0,1.00,6.210,129.9 +24.1,1.00,5.020,131.8 +24.0,1.00,5.740,133.1 +24.1,1.00,5.930,130.7 +24.3,1.00,6.120,128.7 +24.5,1.00,7.610,125.0 +25.0,1.00,6.210,127.5 +24.9,1.00,8.050,130.1 +24.6,1.00,8.330,137.4 +24.8,1.00,6.680,136.6 +25.1,0.99,7.030,137.8 +24.9,0.99,7.280,137.4 +24.8,0.99,7.870,130.4 +24.5,0.99,8.440,130.0 +24.8,0.99,8.220,137.7 +24.9,0.99,8.270,134.9 +24.5,0.99,8.890,146.0 +24.4,0.99,8.720,150.2 +24.4,0.99,8.090,155.2 +24.5,0.99,8.120,160.3 +24.5,0.99,6.290,159.7 +24.6,0.99,6.320,158.1 +24.5,0.99,5.910,171.0 +24.7,0.99,6.540,150.8 +24.6,0.99,6.640,152.3 +24.5,1.00,5.830,156.7 +24.5,1.00,6.100,149.1 +24.6,0.99,7.000,143.7 +24.9,0.99,6.550,152.8 +24.7,0.99,6.100,149.7 +25.0,0.99,6.980,147.7 +25.3,0.99,6.380,162.8 +25.2,0.99,8.500,156.3 +25.0,0.99,7.180,163.2 +25.0,0.99,6.270,161.3 +25.0,0.99,8.120,161.1 +24.6,0.99,7.700,152.3 +24.5,0.99,8.290,155.7 +24.6,0.99,9.270,153.0 +24.5,0.99,8.610,161.6 +24.5,0.99,9.470,154.9 +24.4,0.99,8.980,166.1 +24.3,0.99,8.140,173.6 +24.2,0.99,8.380,169.4 +24.3,0.99,7.610,170.8 +24.5,0.99,8.200,164.6 +24.8,0.99,8.230,171.7 +24.6,0.99,7.260,161.1 +25.3,0.99,7.870,172.3 +25.1,0.99,6.370,167.6 +25.1,0.99,7.680,168.6 +24.9,0.99,7.870,164.5 +25.0,0.99,7.660,167.1 +25.4,0.99,8.700,171.8 +25.2,0.99,9.030,170.8 +25.1,0.99,8.820,165.9 +24.9,0.99,8.380,159.3 +24.7,0.99,9.100,159.3 +24.8,0.99,8.880,163.6 +24.5,0.99,10.090,159.2 +24.5,0.99,10.060,160.5 +24.7,0.99,11.290,152.2 +24.8,0.99,10.850,154.8 +24.7,0.99,10.790,154.3 +24.7,0.99,11.310,160.3 +24.4,0.99,11.740,163.3 +24.4,0.99,10.700,160.0 +24.5,0.99,11.700,160.8 +24.6,0.99,11.090,162.5 +24.5,0.99,11.620,162.9 +24.7,0.99,12.000,164.0 +24.9,0.99,11.050,164.8 +25.1,0.99,10.200,160.6 +25.0,0.99,9.720,158.8 +25.0,0.99,10.000,158.9 +25.1,0.99,9.220,160.6 +25.1,0.99,9.760,161.6 +25.3,0.99,8.740,158.7 +25.4,0.99,8.660,160.0 +25.3,0.99,8.700,156.0 +25.3,0.99,9.290,151.9 +25.2,0.99,9.640,147.9 +25.0,0.99,8.850,151.8 +25.0,0.99,9.450,150.5 +24.8,0.99,9.660,146.3 +24.9,0.99,10.830,148.2 +24.7,0.99,10.580,154.4 +24.8,0.99,10.560,156.0 +24.8,0.99,11.820,157.4 +25.0,0.99,10.280,153.8 +24.8,0.99,10.700,157.9 +25.0,0.99,11.210,161.9 +25.0,0.99,9.310,164.9 +25.1,0.99,9.970,162.8 +25.1,0.99,9.490,167.9 +25.5,0.99,9.550,167.1 +25.1,0.99,10.520,157.5 +25.2,0.99,10.310,160.5 +25.4,0.99,10.490,157.5 +25.4,0.99,9.610,153.2 +25.3,0.99,10.230,147.1 +25.5,0.99,10.340,148.1 +25.5,0.99,10.970,149.4 +25.8,0.99,10.910,150.1 +26.3,0.99,11.510,160.1 +26.1,0.99,11.140,154.9 +25.4,0.99,10.920,149.5 +25.1,0.99,10.360,150.4 +25.1,0.99,10.030,152.1 +25.2,0.99,9.660,142.6 +25.3,0.99,9.440,147.6 +25.2,0.99,9.390,146.1 +25.5,0.99,10.850,153.4 +25.5,0.99,10.270,159.1 +25.1,0.99,11.150,155.5 +25.1,0.99,11.160,151.0 +25.4,0.99,10.940,159.2 +25.2,0.99,10.500,156.3 +25.2,0.99,11.860,155.9 +25.2,0.99,10.690,152.1 +25.5,0.99,9.540,150.0 +25.4,0.99,9.910,150.3 +25.5,0.99,10.300,147.2 +25.4,0.99,9.250,148.9 +25.5,0.99,9.070,144.0 +25.7,0.99,9.250,146.3 +25.7,0.99,9.470,146.0 +25.7,0.99,9.950,145.5 +25.7,0.99,10.850,145.4 +25.6,0.99,9.530,141.7 +25.6,0.99,10.090,149.4 +25.6,0.99,9.420,154.6 +25.3,0.99,10.840,150.6 +25.3,0.99,10.960,149.2 +25.2,0.99,11.020,148.1 +25.4,0.99,11.110,152.5 +25.3,0.99,9.750,154.2 +25.2,0.99,10.800,160.4 +25.3,0.99,9.590,164.5 +25.4,0.99,9.280,163.3 +25.7,0.99,9.940,166.3 +25.9,0.99,9.970,169.0 +25.6,0.99,9.410,174.1 +25.7,0.99,8.710,169.2 +25.8,0.99,9.090,173.1 +25.5,0.99,8.080,171.0 +25.4,0.99,8.160,165.0 +25.5,0.99,7.840,165.2 +25.8,0.99,7.650,169.2 +26.2,0.99,9.520,163.0 +26.0,0.99,9.220,161.1 +26.0,0.99,9.560,163.0 +26.0,0.99,9.880,165.0 +26.0,0.99,10.370,163.8 +25.9,0.99,10.950,161.2 +25.6,0.99,10.000,158.9 +25.6,0.99,10.710,156.8 +25.8,0.99,10.800,161.6 +25.4,0.99,11.140,159.3 +25.5,0.99,11.440,161.5 +26.0,0.99,12.610,168.3 +25.8,0.99,11.980,167.7 +25.4,0.99,11.630,166.0 +25.6,0.99,12.230,169.6 +25.4,0.99,10.460,165.1 +25.4,0.99,10.800,169.9 +25.6,0.99,12.210,172.7 +25.4,0.99,10.760,174.8 +25.6,0.99,11.150,175.5 +25.7,0.99,9.170,178.1 +25.6,0.99,8.670,174.0 +25.9,0.99,8.980,175.9 +25.8,0.99,7.340,174.8 +26.4,0.99,8.270,178.5 +26.2,0.99,6.530,169.5 +26.2,0.99,7.940,169.3 +26.2,0.99,8.190,169.2 +26.0,0.99,7.340,161.9 +25.8,0.99,7.950,164.5 +25.8,0.99,8.040,165.3 +25.6,0.99,7.480,160.4 +25.6,0.99,6.680,157.7 +25.5,0.99,5.710,161.8 +25.4,0.99,5.100,159.4 +25.6,0.99,4.780,168.1 +25.4,0.99,3.300,175.9 +25.1,0.99,2.710,185.4 +25.1,0.99,1.590,160.1 +25.0,0.99,2.200,206.5 +24.8,0.99,2.150,265.0 +24.5,0.99,2.230,346.8 +24.3,0.99,4.380,353.1 +24.2,0.99,3.990,346.2 +24.4,0.99,3.120,354.8 +24.6,0.99,1.540,12.0 +24.6,0.99,1.320,309.7 +24.8,0.99,1.060,3.9 +25.4,0.99,0.530,69.8 +25.8,0.99,1.730,118.0 +26.0,0.99,3.510,145.1 +26.1,0.99,5.370,142.1 +26.1,0.99,5.200,144.0 +26.1,0.99,3.560,146.9 +25.9,0.99,3.020,162.7 +25.8,0.99,3.430,167.0 +25.7,0.99,1.940,132.1 +25.7,0.99,1.170,93.5 +25.8,0.99,1.930,65.6 +25.7,0.99,2.170,55.2 +25.5,0.99,1.980,38.6 +25.0,0.99,5.360,25.5 +23.9,0.99,5.210,16.0 +24.1,0.99,5.370,22.5 +24.4,0.99,6.320,10.3 +23.5,0.99,5.640,14.9 +23.0,0.99,6.160,6.2 +22.8,0.99,5.450,11.1 +22.9,0.99,4.280,9.1 +23.5,0.99,3.180,5.1 +24.1,0.99,1.800,2.8 +24.3,0.99,0.790,345.4 +24.9,0.99,0.570,105.0 +25.2,0.99,1.880,116.0 +25.3,0.99,3.700,128.0 +25.6,0.99,4.040,133.3 +25.8,0.99,4.230,135.3 +25.8,0.99,4.670,131.9 +25.5,0.99,4.220,130.3 +25.3,0.99,4.990,134.5 +25.4,0.99,4.110,144.3 +25.2,0.99,4.510,156.8 +25.3,0.99,4.580,157.2 +25.2,0.99,4.710,156.9 +25.1,0.99,3.720,158.3 +24.9,0.99,3.060,166.8 +24.9,0.99,1.950,163.1 +24.9,0.99,1.910,159.8 +24.9,0.99,1.410,91.0 +25.0,0.99,2.710,149.6 +24.9,0.99,2.620,132.6 +24.9,0.99,2.360,109.7 +25.0,0.99,2.140,104.8 +25.1,0.99,2.450,98.6 +25.2,0.99,2.080,89.7 +25.4,0.99,3.200,86.5 +25.8,0.99,2.630,111.6 +26.3,0.99,3.610,116.2 +26.2,0.99,3.540,121.5 +26.4,0.99,5.050,121.6 +26.5,0.99,5.460,125.4 +26.4,0.99,5.710,139.7 +26.1,0.99,6.160,138.3 +26.1,0.99,6.750,145.4 +26.1,0.99,7.060,150.8 +26.1,0.99,6.190,145.7 +26.0,0.99,6.230,147.8 +25.9,0.99,6.190,151.5 +25.8,0.99,6.070,158.4 +25.5,0.99,4.840,171.0 +25.7,0.99,3.430,158.2 +25.6,0.99,4.120,157.3 +25.7,0.99,1.920,136.2 +25.5,0.99,1.680,160.1 +25.6,0.99,0.880,104.0 +25.5,0.99,1.000,21.2 +25.5,0.99,1.810,54.2 +25.3,0.99,2.030,50.5 +25.3,0.99,3.450,39.2 +25.7,0.99,2.900,77.0 +26.7,0.99,4.770,93.7 +27.0,0.99,5.660,110.6 +26.9,0.99,6.740,121.6 +27.0,0.98,6.260,137.2 +26.6,0.98,6.090,151.1 +26.6,0.98,6.530,146.8 +26.6,0.98,6.240,144.8 +26.5,0.98,6.610,150.0 +26.4,0.98,7.060,153.7 +26.4,0.98,6.450,134.8 +26.3,0.99,3.810,89.0 +21.9,0.99,19.930,26.6 +23.1,0.99,14.480,87.3 +23.4,0.98,8.630,89.8 +24.6,0.98,8.480,120.1 +26.1,0.98,6.030,147.1 +26.0,0.98,6.500,141.9 +23.8,0.99,9.020,33.4 +23.4,0.99,10.330,6.2 +23.3,0.99,11.220,348.1 +24.6,0.99,9.130,358.5 +25.9,0.99,6.720,358.4 +27.2,0.99,5.210,2.5 +26.9,0.99,4.070,106.5 +27.6,0.99,2.550,108.7 +27.6,0.99,2.810,183.9 +23.2,0.99,20.780,294.7 +24.7,0.99,5.990,265.3 +26.5,0.98,9.830,206.9 +27.4,0.98,6.460,227.0 +27.2,0.99,8.130,249.0 +27.6,0.98,8.670,258.3 +27.1,0.99,6.330,299.8 +27.1,0.98,6.340,336.3 +25.7,0.99,6.710,355.0 +24.9,0.99,6.900,19.2 +24.4,0.99,5.710,31.8 +24.3,0.99,5.690,25.5 +23.8,0.99,6.100,21.5 +23.2,0.99,5.530,9.7 +22.6,0.99,4.870,346.8 +22.1,0.99,5.210,351.1 +21.5,0.99,5.330,337.5 +21.3,0.99,6.540,331.8 +21.9,0.99,6.420,341.2 +22.6,0.99,6.500,343.5 +23.5,0.99,4.710,343.8 +24.2,0.99,2.990,283.9 +25.2,0.99,2.850,263.1 +25.7,0.99,3.320,202.5 +25.7,0.99,4.150,182.9 +25.7,0.99,4.340,188.2 +26.1,0.99,4.590,188.8 +25.9,0.99,4.410,184.8 +25.9,0.99,4.040,187.6 +26.1,0.99,2.830,209.5 +26.2,0.99,2.310,237.0 +26.4,0.99,3.590,254.3 +26.4,0.99,2.020,261.5 +25.0,0.99,3.060,290.9 +25.4,0.99,2.100,231.8 +25.7,0.99,1.540,163.3 +25.2,0.99,4.190,70.1 +25.2,0.99,3.870,95.7 +25.3,0.99,2.000,124.7 +25.2,0.99,2.240,133.5 +25.2,0.99,1.960,158.7 +25.4,0.99,3.210,204.5 +25.3,0.99,2.080,196.7 +25.5,0.99,2.870,200.1 +24.8,0.99,7.080,207.5 +23.6,0.99,15.350,203.2 +23.1,0.99,10.070,182.3 +24.7,0.99,3.860,146.7 +24.9,0.99,4.550,154.4 +25.6,0.99,5.410,179.1 +25.6,0.99,5.950,156.9 +26.0,0.99,5.740,163.0 +25.9,0.99,6.850,152.5 +26.1,0.99,7.260,137.8 +25.9,0.99,8.380,137.1 +26.0,0.99,7.880,140.9 +26.1,0.99,8.330,146.6 +26.3,0.99,7.510,149.8 +26.3,0.99,7.980,157.2 +26.2,0.99,9.980,167.2 +25.4,0.99,9.660,203.7 +24.7,0.99,7.250,214.2 +24.9,0.99,7.130,189.2 +25.1,0.99,5.350,196.3 +25.4,0.99,4.210,198.2 +25.8,0.99,3.250,167.1 +26.0,0.99,3.700,143.1 +25.9,0.99,5.170,120.2 +25.8,0.99,5.050,138.9 +26.2,0.99,3.480,163.1 +25.9,0.99,2.460,160.9 +26.6,0.99,9.280,177.4 +24.9,0.99,9.290,171.6 +26.2,0.99,3.690,212.7 +26.1,0.99,6.910,212.0 +25.5,0.99,4.670,193.9 +25.6,0.99,5.940,163.8 +25.7,0.99,5.380,157.3 +26.2,0.99,7.140,148.7 +26.3,0.99,7.250,152.8 +26.5,0.99,8.140,163.5 +26.4,0.99,7.420,182.2 +26.3,0.99,7.290,184.0 +26.2,0.99,6.390,191.6 +26.2,0.99,5.750,199.1 +26.2,0.99,4.780,199.1 +26.1,0.99,4.200,205.5 +26.0,0.99,3.000,203.8 +26.0,0.99,2.170,192.0 +26.2,0.99,2.730,177.3 +26.2,0.99,2.890,178.0 +26.2,0.99,2.810,165.1 +26.5,0.99,3.310,158.0 +26.5,0.99,3.280,161.3 +27.1,0.99,3.930,163.7 +27.1,0.99,4.850,148.6 +27.2,0.99,5.370,156.1 +27.0,0.99,6.110,156.8 +27.2,0.99,6.540,147.3 +27.2,0.99,6.490,151.7 +26.9,0.99,5.800,147.0 +26.8,0.99,6.340,149.8 +26.4,0.99,6.680,147.3 +26.2,0.99,6.610,160.4 +26.2,0.99,5.530,157.1 +26.1,0.99,6.970,148.3 +26.0,0.99,7.190,164.2 +26.1,0.99,7.160,172.5 +26.5,0.99,7.980,174.9 +26.2,0.99,8.660,178.3 +26.2,0.99,7.480,185.3 +26.3,0.99,7.080,188.3 +26.2,0.99,6.230,188.0 +26.4,0.99,5.320,181.0 +26.4,0.99,4.630,180.9 +26.6,0.99,4.350,171.9 +26.5,0.99,4.330,164.7 +26.6,0.99,4.950,162.6 +26.8,0.99,4.590,166.2 +27.0,0.99,4.760,165.6 +27.0,0.99,4.740,164.4 +27.1,0.99,4.970,172.7 +27.0,0.99,4.670,166.0 +27.3,0.99,5.220,160.1 +26.9,0.99,5.680,163.0 +26.8,0.99,5.080,143.8 +26.9,0.99,5.660,154.4 +26.7,0.99,5.410,153.1 +26.8,0.99,5.380,158.4 +26.5,0.99,5.770,161.8 +26.5,0.99,5.570,172.9 +26.4,0.99,6.200,185.5 +27.0,0.99,4.980,185.7 +26.6,0.99,4.630,186.3 +26.5,0.99,4.360,190.7 +26.4,0.99,3.980,183.7 +26.4,0.99,3.460,209.3 +26.4,0.99,2.620,214.6 +26.4,0.99,3.020,211.2 +26.5,0.99,3.000,180.9 +26.9,0.99,4.270,189.2 +26.9,0.99,5.200,171.8 +27.1,0.99,4.970,215.2 +27.3,0.99,4.630,216.4 +27.2,0.99,5.340,162.7 +26.7,0.99,7.070,165.0 +26.5,0.99,6.140,165.4 +26.9,0.99,7.080,174.5 +26.7,0.99,7.710,177.2 +26.6,0.99,7.400,180.6 +26.7,0.99,6.760,188.9 +26.8,0.99,7.350,196.7 +26.7,0.99,6.870,206.8 +26.6,0.99,6.810,204.3 +26.5,0.99,7.300,207.1 +26.4,0.99,6.860,205.1 +26.4,0.99,6.420,212.5 +26.7,0.99,6.320,220.7 +26.6,0.99,5.390,224.5 +26.5,0.99,5.170,236.9 +26.7,0.99,4.020,247.5 +26.3,0.99,3.010,264.5 +26.1,0.99,2.430,274.0 +26.2,0.99,2.280,278.8 +26.5,0.99,1.980,237.2 +26.9,0.99,1.630,213.9 +27.7,0.99,2.030,179.7 +28.1,0.99,2.420,174.0 +28.3,0.99,3.980,180.2 +28.2,0.99,5.180,188.6 +28.2,0.99,6.570,197.2 +27.8,0.99,7.260,207.0 +27.8,0.99,7.450,208.4 +27.7,0.99,7.740,217.1 +27.4,0.99,7.510,222.8 +27.5,0.99,6.710,228.7 +27.5,0.99,6.320,236.8 +27.7,0.99,5.510,246.2 +27.6,0.99,4.880,247.2 +27.2,0.99,4.700,252.8 +26.3,0.99,3.990,266.9 +26.2,0.99,4.070,268.0 +26.2,0.99,3.660,272.9 +25.9,0.99,3.520,265.9 +25.6,0.99,4.400,268.9 +25.4,0.99,4.110,286.0 +25.6,0.99,3.040,306.3 +26.1,0.99,2.690,268.1 +26.2,0.99,2.530,236.8 +26.7,0.99,3.190,227.4 +27.9,0.99,3.720,210.2 +28.2,0.99,5.050,203.8 +28.1,0.99,5.530,205.7 +28.2,0.99,5.730,202.0 +28.1,0.99,5.820,207.8 +28.2,0.99,5.950,211.0 +27.9,0.99,6.570,212.5 +28.0,0.99,6.900,213.1 +27.8,0.99,6.040,217.7 +27.9,0.99,5.750,218.0 +27.7,0.99,5.420,221.1 +27.8,0.99,5.040,229.5 +27.5,0.99,4.850,232.8 +27.5,0.99,4.620,240.1 +27.1,0.99,4.160,245.9 +27.2,0.99,3.720,249.8 +26.4,0.99,2.290,268.1 +26.5,0.99,2.460,294.5 +26.3,0.99,2.210,278.1 +26.3,0.99,2.380,286.9 +26.2,0.99,2.150,286.4 +26.2,0.99,2.520,258.2 +26.4,0.99,2.740,250.6 +26.6,0.99,2.880,222.8 +27.1,0.99,3.830,195.9 +27.3,0.99,4.060,197.7 +27.6,0.99,4.100,185.4 +27.7,0.99,5.160,184.4 +27.6,0.99,5.920,180.6 +28.3,0.99,5.810,180.7 +27.6,0.99,6.390,183.0 +27.6,0.99,6.490,182.1 +27.7,0.99,7.170,180.5 +28.0,0.99,7.130,183.9 +27.4,0.99,7.580,190.6 +27.3,0.99,7.940,184.4 +27.1,0.99,7.580,189.1 +27.0,0.99,7.490,189.6 +26.9,0.99,7.330,192.2 +26.9,0.99,6.250,197.9 +26.8,0.99,5.940,192.5 +26.9,0.99,4.450,192.4 +26.9,0.99,3.100,176.1 +26.9,0.99,4.120,178.0 +26.6,0.99,6.750,220.3 +26.0,0.99,4.370,215.5 +26.2,0.99,4.570,231.0 +27.0,0.99,4.120,215.8 +27.7,0.99,5.650,211.8 +28.0,0.99,6.710,205.3 +28.2,0.99,7.440,196.7 +28.4,0.99,7.550,201.6 +28.4,0.99,8.450,206.2 +28.7,0.99,7.990,203.0 +28.4,0.99,8.060,206.0 +28.5,0.99,8.450,200.7 +28.2,0.99,8.750,203.1 +28.4,0.99,8.700,200.6 +28.2,0.99,8.510,203.8 +28.2,0.99,8.250,198.2 +28.5,0.99,7.850,213.3 +28.2,0.99,7.990,215.2 +28.5,0.99,6.800,221.2 +28.4,0.99,6.580,218.4 +28.2,0.99,6.050,223.3 +28.1,0.99,6.270,233.6 +27.8,0.99,6.270,235.0 +26.5,0.99,3.770,277.0 +26.7,0.99,3.820,284.8 +27.0,0.99,3.570,263.2 +27.4,0.99,3.070,248.9 +27.3,0.99,3.920,203.8 +27.9,0.99,4.380,192.5 +28.3,0.99,5.000,181.6 +28.2,0.99,5.900,177.3 +28.6,0.99,5.860,176.8 +28.3,0.99,7.170,186.8 +28.1,0.99,6.950,184.8 +28.1,0.99,7.910,182.1 +28.2,0.99,7.790,184.3 +27.9,0.99,8.790,187.6 +28.2,0.99,7.600,195.7 +27.6,0.99,8.920,193.3 +27.7,0.99,7.510,207.2 +27.8,0.99,7.220,202.4 +27.9,0.99,8.090,218.7 +27.5,0.99,7.800,224.2 +27.5,0.99,7.280,227.1 +27.0,0.99,7.570,229.6 +27.3,0.99,6.520,244.4 +26.4,0.99,5.930,271.9 +26.0,0.99,4.510,267.0 +26.2,0.99,4.270,265.4 +26.3,0.99,5.340,267.0 +26.5,0.99,4.160,222.2 +26.9,0.99,4.250,214.1 +27.6,0.99,3.870,198.1 +27.7,0.99,3.610,182.3 +27.8,0.99,4.340,177.8 +27.9,0.99,5.160,176.7 +27.9,0.99,5.650,181.4 +27.9,0.99,6.310,180.1 +27.8,0.99,6.510,183.0 +27.6,0.99,7.170,187.5 +27.4,0.99,7.180,183.5 +27.4,0.99,7.680,186.4 +27.3,0.99,7.660,190.7 +27.4,0.99,7.680,194.3 +27.2,0.99,6.930,195.3 +27.2,0.99,6.890,198.0 +27.3,0.99,6.980,204.3 +27.4,0.99,6.330,215.0 +27.2,0.99,6.360,218.2 +27.0,0.99,5.990,214.0 +27.0,0.99,3.930,237.8 +27.0,0.99,2.490,239.4 +26.9,0.99,2.350,273.2 +26.6,0.99,1.030,296.1 +26.8,0.99,0.550,251.3 +27.0,0.99,1.680,127.5 +27.4,0.99,3.720,151.7 +27.8,0.99,4.220,168.0 +27.8,0.99,5.160,167.8 +28.0,0.99,5.490,184.8 +28.0,0.99,6.680,174.2 +28.0,0.99,7.820,175.5 +27.7,0.99,6.410,174.5 +27.6,0.99,7.590,177.2 +27.4,0.99,7.800,182.5 +27.4,0.99,8.220,183.4 +27.6,0.99,8.460,181.9 +27.5,0.99,8.590,182.1 +27.6,0.99,8.890,181.2 +27.3,0.99,9.160,184.5 +27.8,0.99,7.530,192.5 +27.8,0.99,7.100,194.0 +27.7,0.99,6.430,192.3 +27.7,0.99,6.040,194.7 +27.8,0.99,5.950,187.1 +27.6,0.99,5.060,181.5 +27.7,0.99,5.340,166.7 +27.7,0.99,4.530,164.5 +27.6,0.99,4.330,157.0 +27.8,0.99,4.000,165.6 +27.8,0.99,4.160,168.4 +27.9,0.99,4.550,163.6 +27.9,0.99,5.000,166.0 +28.0,0.99,4.660,158.6 +27.9,0.99,5.880,151.5 +28.0,0.99,5.650,152.3 +28.1,0.99,6.760,145.8 +27.7,0.99,7.610,150.1 +27.7,0.99,6.930,149.5 +27.8,0.99,7.620,149.6 +27.6,0.99,7.000,156.3 +27.4,0.99,7.200,152.2 +27.5,0.99,7.010,159.7 +27.3,0.99,6.500,167.0 +27.3,0.99,6.100,164.9 +27.4,0.99,6.040,170.5 +27.3,0.99,5.440,160.7 +27.4,0.99,6.110,151.2 +27.4,0.99,5.650,152.4 +27.4,0.99,5.170,144.1 +27.4,0.99,5.430,144.8 +27.4,0.99,6.260,179.0 +27.4,0.99,5.320,167.8 +27.3,0.99,5.560,161.3 +27.4,0.99,5.740,149.8 +27.6,0.99,5.680,163.4 +27.8,0.99,5.230,161.1 +27.9,0.99,5.600,161.4 +27.9,0.99,4.970,164.1 +27.8,0.99,5.220,169.2 +27.6,0.99,5.610,163.3 +27.3,0.99,6.050,158.1 +27.3,0.99,6.670,164.2 +27.2,0.99,6.050,162.3 +27.0,0.99,6.140,168.4 +27.2,0.99,6.390,180.4 +26.9,0.99,6.200,172.8 +26.9,0.99,5.740,178.8 +26.8,0.99,5.270,182.2 +26.9,0.99,5.350,184.0 +27.1,0.99,5.320,188.0 +27.0,0.99,5.420,184.2 +26.8,0.99,4.460,182.7 +27.1,0.99,3.280,170.0 +27.2,0.99,3.840,162.1 +27.3,0.99,3.420,162.4 +27.3,0.99,2.890,158.2 +27.5,0.99,3.910,141.2 +27.6,0.99,3.330,147.5 +27.8,0.99,4.570,146.0 +27.9,0.99,5.900,152.7 +27.8,0.99,6.190,147.8 +27.8,0.99,6.020,155.8 +27.8,0.99,6.280,148.6 +27.7,0.99,6.140,151.9 +27.6,0.99,6.220,149.6 +27.6,0.99,6.780,156.7 +27.4,0.99,6.840,157.1 +27.3,0.99,6.740,165.6 +27.4,0.99,6.710,166.9 +27.3,0.99,7.750,169.0 +27.4,0.99,6.830,163.9 +27.2,0.99,6.250,171.3 +27.4,0.99,6.210,162.0 +27.3,0.99,6.360,161.6 +27.3,0.99,5.630,171.3 +27.3,0.99,7.220,153.6 +27.4,0.99,5.810,154.9 +27.4,0.99,5.350,155.0 +27.5,0.99,5.780,162.0 +27.5,0.99,4.740,175.7 +27.6,0.99,5.010,182.2 +27.8,0.99,5.350,174.9 +27.9,0.99,5.990,171.7 +28.0,0.99,6.140,183.6 +27.9,0.99,6.640,181.2 +27.8,0.99,8.050,176.6 +27.8,0.99,6.880,181.0 +27.5,0.99,8.520,176.1 +27.4,0.99,8.240,174.6 +27.5,0.99,7.380,166.5 +27.5,0.99,9.280,159.6 +27.6,0.99,8.200,160.6 +27.8,0.99,8.310,163.0 +27.5,0.99,9.540,159.9 +27.8,0.99,8.050,167.9 +28.2,0.99,8.310,172.6 +28.0,0.99,9.510,169.4 +28.0,0.99,8.560,173.6 +27.9,0.99,7.430,169.0 +28.0,0.99,7.910,177.3 +27.9,0.99,6.860,181.5 +28.0,0.99,5.770,184.2 +27.9,0.99,6.050,179.5 +27.9,0.99,5.680,172.9 +28.0,0.99,5.580,174.2 +28.4,0.99,5.990,177.8 +28.2,0.99,5.430,180.9 +28.1,0.99,6.520,170.6 +28.2,0.99,6.000,172.4 +28.2,0.99,6.260,169.0 +28.1,0.99,6.740,159.8 +27.9,0.99,6.720,162.3 +27.8,0.99,6.770,159.4 +27.7,0.99,7.730,158.8 +28.0,0.99,8.270,161.0 +27.5,0.99,9.080,160.2 +27.9,0.99,8.240,168.1 +27.5,0.99,7.840,173.6 +27.3,0.99,8.280,173.3 +27.3,0.99,9.250,178.2 +27.6,0.99,8.250,189.8 +27.7,0.99,8.670,184.6 +27.5,0.99,7.960,188.5 +27.7,0.99,6.900,194.1 +27.7,0.99,7.390,197.3 +27.7,0.99,7.250,191.2 +27.9,0.99,6.680,188.4 +27.7,0.99,6.650,195.7 +28.3,0.99,5.940,200.2 +27.9,0.99,6.630,182.1 +28.2,0.99,6.730,191.9 +28.1,0.99,5.800,179.8 +28.1,0.99,6.640,170.9 +28.2,0.99,6.850,185.5 +28.2,0.99,5.930,183.5 +27.7,0.99,8.320,166.6 +27.4,0.99,8.210,170.5 +27.9,0.99,8.300,171.2 +27.6,0.99,8.370,172.8 +27.8,0.99,9.170,168.7 +27.7,0.99,10.470,172.5 +27.6,0.99,10.980,171.5 +27.9,0.99,10.330,182.5 +27.2,0.99,9.780,183.4 +27.0,0.99,9.560,191.1 +27.4,0.99,9.470,191.5 +27.0,0.99,9.230,204.0 +27.3,0.99,8.230,208.8 +27.3,0.99,7.160,218.7 +27.7,0.99,6.110,215.5 +27.7,0.99,6.340,223.1 +27.9,0.99,5.820,235.3 +28.1,0.99,4.490,194.5 +28.1,0.99,5.360,163.3 +28.1,0.99,6.210,149.5 +28.3,0.99,5.560,184.3 +28.3,0.99,7.080,202.5 +28.4,0.99,6.790,154.9 +28.3,0.99,6.560,165.1 +28.0,0.99,7.410,169.6 +27.4,0.99,7.380,172.9 +27.4,0.99,7.530,173.1 +27.3,0.99,6.930,176.5 +27.5,0.99,7.170,183.3 +27.9,0.99,7.680,192.8 +27.7,0.99,7.980,193.4 +27.5,0.99,7.290,197.1 +27.6,0.99,5.130,194.8 +27.4,0.99,6.350,202.2 +27.4,0.99,5.600,202.2 +27.3,0.99,3.750,212.2 +27.1,0.99,3.360,233.2 +27.0,0.99,2.840,279.4 +26.7,0.99,2.290,291.8 +26.9,0.99,1.430,296.3 +27.0,0.99,2.970,255.7 +25.8,0.99,13.530,207.6 +26.1,0.99,2.230,245.5 +27.4,0.99,2.200,8.8 +27.8,0.99,4.010,152.1 +26.8,0.99,7.350,183.3 +27.3,0.99,8.850,186.9 +27.3,0.99,8.420,194.2 +27.0,0.99,7.240,187.8 +27.0,0.99,7.070,191.4 +27.2,0.99,6.870,189.0 +27.4,0.99,6.050,181.6 +27.2,0.99,6.900,197.0 +27.4,0.99,7.000,210.8 +27.2,0.99,7.490,217.2 +27.3,0.99,7.960,223.8 +27.1,0.99,7.140,235.5 +27.3,0.99,6.980,233.0 +27.3,0.99,7.040,244.8 +26.9,0.99,7.540,245.3 +26.2,0.99,6.720,271.1 +26.1,0.99,7.370,262.2 +26.3,0.99,6.830,281.4 +26.7,0.99,5.280,255.1 +26.8,0.99,5.340,229.2 +27.2,0.99,5.350,218.9 +28.1,0.99,4.720,218.5 +28.4,0.99,6.300,199.9 +28.4,0.99,6.770,208.5 +28.6,0.99,8.070,204.7 +28.7,0.99,9.550,206.9 +28.9,0.99,9.830,209.2 +28.6,0.99,9.430,212.7 +28.6,0.99,9.970,214.6 +28.9,0.99,9.180,215.2 +28.9,0.99,9.690,220.1 +28.6,0.98,9.540,218.9 +29.1,0.99,9.910,222.0 +28.2,0.99,10.500,224.5 +27.9,0.99,11.370,227.0 +28.3,0.99,10.890,235.9 +27.9,0.99,10.430,239.6 +28.3,0.99,9.780,249.0 +27.9,0.99,8.670,253.7 +27.0,0.99,8.170,262.0 +26.8,0.99,7.900,259.1 +26.9,0.99,8.180,254.0 +27.4,0.99,6.310,240.6 +27.6,0.99,7.730,224.2 +27.7,0.99,7.860,228.7 +29.0,0.98,7.700,222.4 +29.4,0.98,9.010,219.7 +29.7,0.98,10.720,219.5 +29.7,0.98,11.810,218.5 +29.8,0.98,11.930,221.0 +29.9,0.98,11.550,223.1 +29.5,0.98,10.540,221.6 +29.6,0.98,9.430,226.0 +30.4,0.98,8.530,229.0 +29.8,0.98,8.430,231.2 +29.8,0.98,7.670,231.0 +30.2,0.98,7.850,240.7 +30.0,0.98,8.130,242.6 +29.4,0.98,7.320,258.5 +28.6,0.98,6.300,296.7 +28.6,0.98,7.340,304.0 +28.6,0.98,4.170,330.6 +27.8,0.99,3.270,353.9 +27.4,0.99,3.750,5.3 +27.4,0.99,3.200,9.0 +28.5,0.99,2.930,21.5 +29.1,0.99,1.240,1.0 +29.4,0.99,1.840,244.1 +29.4,0.99,3.120,252.7 +29.9,0.99,3.610,227.6 +32.8,0.98,8.050,325.9 +33.2,0.98,6.540,328.2 +31.4,0.98,5.770,247.6 +30.5,0.98,7.000,240.0 +30.9,0.98,6.940,252.0 +30.8,0.98,5.970,246.8 +30.3,0.98,4.260,264.9 +30.9,0.98,8.180,29.6 +30.0,0.98,7.820,41.6 +29.8,0.99,6.150,55.7 +29.1,0.99,8.210,66.2 +28.4,0.99,7.310,65.6 +28.1,0.99,7.700,56.9 +27.7,0.99,7.670,54.1 +27.3,0.99,7.010,51.3 +27.1,0.99,7.000,51.8 +26.8,0.99,6.320,52.3 +25.7,0.99,5.830,38.0 +25.2,0.99,5.930,33.2 +25.2,0.99,5.310,37.8 +25.7,0.99,5.020,42.0 +26.3,0.99,3.530,96.5 +26.6,0.99,1.650,94.0 +27.4,0.99,0.820,164.2 +27.7,0.99,2.300,156.8 +27.7,0.99,4.520,146.9 +27.7,0.99,6.720,145.4 +27.7,0.99,7.390,142.7 +27.7,0.99,5.770,148.8 +27.8,0.99,4.540,146.0 +28.0,0.99,2.750,119.0 +27.8,0.99,0.970,115.3 +28.3,0.99,4.480,11.6 +28.1,0.99,4.610,14.7 +27.9,0.99,3.800,31.6 +27.7,0.99,4.000,47.9 +27.3,0.99,3.340,59.9 +25.9,0.99,3.230,25.2 +26.3,0.99,4.140,47.8 +26.1,0.99,4.480,39.6 +25.1,0.99,5.210,24.9 +24.9,0.99,5.780,28.8 +25.0,0.99,4.360,37.5 +25.4,0.99,4.200,48.9 +25.8,0.99,4.580,65.9 +26.3,0.99,3.690,95.3 +26.7,0.99,3.550,131.6 +27.6,0.99,2.160,132.4 +27.6,0.99,3.830,128.6 +27.7,0.99,5.300,125.8 +27.8,0.99,5.830,130.0 +27.9,0.99,6.720,119.4 +28.1,0.99,6.320,115.6 +27.8,0.99,4.600,120.9 +27.7,0.99,3.800,138.1 +27.8,0.99,2.290,125.6 +27.7,0.99,1.750,113.3 +27.6,0.99,1.000,166.9 +27.6,0.99,0.800,194.3 +27.4,0.99,1.310,270.7 +27.3,0.99,0.600,357.1 +26.0,0.99,2.850,2.3 +25.1,0.99,4.640,13.7 +25.3,0.99,3.900,4.7 +25.0,0.99,4.570,21.9 +25.4,0.99,4.310,39.6 +25.6,0.99,4.190,42.8 +25.8,0.99,5.230,55.3 +26.1,0.99,4.860,67.8 +26.5,0.99,4.520,74.1 +26.9,0.99,4.820,97.5 +27.5,0.99,4.950,111.9 +27.7,0.99,5.060,120.9 +27.7,0.99,4.870,130.8 +27.8,0.99,4.680,137.7 +28.2,0.99,3.410,144.4 +28.1,0.99,4.870,132.7 +27.8,0.99,4.660,132.4 +27.6,0.99,4.600,132.4 +27.3,0.99,3.090,121.6 +27.2,0.99,3.390,129.0 +27.1,0.99,2.620,109.4 +27.0,0.99,2.590,115.8 +26.9,0.99,2.310,100.4 +26.8,0.99,2.670,86.1 +26.7,0.99,1.910,60.2 +26.6,0.99,1.900,27.6 +26.4,0.99,2.850,10.5 +25.7,0.99,4.570,18.1 +25.3,0.99,4.860,19.5 +25.1,0.99,4.360,13.7 +25.4,0.99,4.980,25.4 +25.4,0.99,3.670,50.0 +26.0,0.99,2.700,81.2 +26.4,0.99,3.550,99.6 +27.2,0.99,3.650,113.5 +27.5,0.99,3.470,122.4 +27.5,0.99,4.010,138.4 +27.8,0.99,4.370,150.9 +27.7,0.99,5.170,148.8 +27.8,0.99,5.870,143.4 +27.6,0.99,5.570,133.1 +27.4,0.99,5.310,134.5 +27.4,0.99,5.880,129.0 +27.3,0.99,5.340,126.3 +27.2,0.99,4.150,130.4 +27.3,0.99,3.480,136.9 +27.3,0.99,4.210,130.1 +27.1,0.99,3.390,127.3 +27.2,0.99,3.360,121.7 +27.1,0.99,2.530,108.7 +27.2,0.99,2.370,90.3 +27.0,0.99,2.440,76.2 +26.8,0.99,2.340,62.0 +26.5,0.99,3.480,43.1 +25.9,0.99,4.660,38.5 +26.6,0.99,5.180,45.4 +26.9,0.99,6.660,75.0 +26.9,0.99,7.570,102.9 +27.2,0.99,5.350,110.0 +27.2,0.99,7.030,125.1 +26.8,0.99,6.000,139.7 +26.9,0.99,3.760,118.3 +26.8,0.99,4.850,93.0 +27.0,0.99,6.500,119.8 +26.7,0.99,5.980,118.6 +26.8,0.99,7.680,120.0 +26.9,0.99,7.150,121.8 +26.8,0.99,6.830,126.3 +26.8,0.99,5.710,141.2 +27.1,0.99,5.330,138.5 +27.3,0.99,6.660,156.6 +27.2,0.99,4.290,152.1 +27.2,0.99,3.140,141.1 +27.1,0.99,1.980,142.2 +27.0,0.99,0.860,198.2 +27.0,0.99,2.190,109.0 +26.7,0.99,2.050,55.0 +26.3,0.99,6.130,41.1 +26.8,0.99,5.120,111.3 +25.8,0.99,4.480,83.9 +26.3,0.99,4.450,112.9 +26.6,0.99,4.360,111.9 +27.2,0.99,5.140,158.9 +27.3,0.99,5.700,129.8 +27.3,0.99,5.880,132.4 +27.2,0.99,6.230,126.1 +27.3,0.99,5.760,137.5 +27.3,0.99,6.380,140.8 +26.8,0.99,8.580,123.4 +26.4,0.99,6.850,142.8 +26.9,0.99,6.590,149.4 +27.0,0.99,7.000,161.4 +26.9,0.99,6.570,149.9 +27.0,0.99,7.510,157.8 +27.0,0.99,6.080,151.8 +27.0,0.99,6.410,165.4 +27.0,0.99,6.920,165.0 +27.1,0.99,6.790,169.9 +27.3,0.99,6.140,179.3 +27.0,0.99,9.330,170.8 +25.6,0.99,9.230,169.1 +25.9,0.99,8.250,163.9 +26.2,0.99,7.720,167.4 +26.5,0.99,10.800,173.9 +25.8,0.99,9.000,180.2 +25.5,0.99,7.640,198.5 +25.9,0.99,7.000,186.2 +26.4,0.99,6.340,182.0 +26.2,0.99,7.860,189.5 +23.8,0.99,9.300,196.1 +25.5,0.99,5.310,184.7 +26.4,0.99,5.160,157.4 +26.1,0.99,4.880,143.9 +26.9,0.99,7.090,139.7 +27.0,0.99,7.550,138.0 +27.2,0.99,8.160,140.2 +27.4,0.99,10.050,147.6 +27.2,0.99,8.630,156.8 +27.4,0.99,8.630,165.5 +27.5,0.99,8.420,168.0 +27.5,0.99,8.260,169.0 +27.5,0.99,8.350,170.9 +27.6,0.99,9.430,168.3 +27.8,0.99,9.650,174.3 +27.2,0.99,7.770,178.9 +27.7,0.99,7.200,171.3 +27.7,0.99,6.690,159.8 +24.4,0.99,3.140,312.0 +24.0,1.00,6.170,1.9 +24.6,1.00,4.870,296.7 +25.4,1.00,2.700,314.9 +26.0,1.00,1.840,53.5 +26.3,0.99,3.370,92.5 +26.3,0.99,3.490,97.4 +26.6,0.99,4.760,113.5 +26.8,0.99,5.810,120.5 +27.0,0.99,4.410,119.6 +27.8,0.99,7.180,141.1 +27.7,0.99,6.920,152.6 +27.9,0.99,6.640,153.6 +27.4,0.99,8.420,148.4 +27.4,0.99,7.100,157.8 +27.1,0.99,7.170,160.1 +27.4,0.99,6.180,168.0 +27.1,1.00,6.090,169.8 +27.1,1.00,5.170,176.7 +27.2,1.00,3.910,166.4 +27.1,1.00,4.140,165.0 +27.0,1.00,3.570,169.2 +27.0,1.00,3.330,154.5 +27.0,1.00,3.060,147.3 +27.1,1.00,2.810,151.2 +27.1,1.00,3.380,144.6 +27.1,1.00,3.320,130.2 +27.5,1.00,4.080,148.7 +27.5,1.00,6.030,146.4 +27.6,0.99,5.710,147.9 +27.6,0.99,5.960,147.9 +27.6,0.99,7.580,145.4 +27.7,0.99,6.630,159.0 +27.3,0.99,6.560,156.9 +27.0,0.99,6.420,165.9 +27.0,0.99,5.410,176.2 +26.9,0.99,5.970,174.9 +26.9,0.99,6.970,177.5 +26.9,0.99,6.400,178.8 +27.0,0.99,6.730,183.7 +26.8,0.99,5.780,180.7 +26.9,0.99,5.380,186.1 +27.1,0.99,5.270,193.1 +27.1,0.99,5.120,192.0 +27.0,0.99,4.380,201.3 +26.9,0.99,3.680,211.6 +26.9,0.99,2.890,228.0 +26.9,0.99,2.350,192.1 +26.9,0.99,2.360,199.7 +26.9,0.99,1.360,192.8 +27.0,0.99,2.850,168.6 +27.3,0.99,3.430,182.0 +27.4,0.99,5.380,176.0 +27.5,0.99,4.510,172.6 +27.6,0.99,4.570,171.4 +27.7,0.99,5.240,175.8 +27.6,0.99,5.450,178.1 +27.4,0.99,5.740,184.2 +27.4,0.99,6.570,182.0 +27.4,0.99,7.400,187.9 +27.6,0.99,7.290,190.1 +27.2,0.99,8.150,196.3 +27.3,0.99,7.840,197.9 +27.1,0.99,8.920,201.7 +27.2,0.99,7.610,209.1 +27.4,0.99,8.610,214.8 +27.2,0.99,8.600,221.1 +27.2,0.99,8.990,221.2 +27.3,0.99,7.530,227.2 +27.0,0.99,6.840,234.1 +27.0,0.99,7.400,237.4 +26.8,0.99,6.650,246.9 +27.0,0.99,6.130,240.7 +26.9,0.99,6.120,234.8 +27.0,0.99,6.280,216.9 +27.8,0.99,6.610,211.3 +27.9,0.99,6.920,203.3 +27.9,0.99,7.500,202.9 +27.8,0.99,8.110,199.6 +27.9,0.99,8.850,203.8 +28.0,0.99,8.760,201.5 +27.8,0.99,7.970,208.6 +28.0,0.99,3.390,226.9 +27.4,0.99,8.660,213.1 +26.7,0.99,6.750,234.9 +27.5,0.99,6.920,222.7 +27.9,0.99,7.950,228.0 +27.3,0.99,8.480,228.9 +27.4,0.99,8.470,233.8 +27.4,0.99,7.500,236.1 +27.1,0.99,7.410,245.2 +27.0,0.99,7.150,249.7 +26.6,0.99,6.540,267.8 +26.3,0.99,6.530,277.2 +26.1,0.99,5.780,276.5 +26.1,0.99,6.190,277.7 +26.3,0.99,4.590,276.8 +26.6,0.99,3.660,272.9 +26.9,0.99,2.880,250.6 +27.8,0.99,3.370,222.2 +28.2,0.99,4.140,208.2 +28.5,0.99,5.940,189.8 +28.2,0.99,7.080,189.9 +28.3,0.99,8.790,192.4 +27.6,0.99,9.020,204.9 +27.3,0.99,8.290,216.6 +27.2,0.99,7.590,217.0 +27.6,0.99,6.560,229.0 +27.7,0.99,5.840,235.5 +27.9,0.99,5.120,242.1 +28.0,0.99,4.210,247.6 +28.0,0.99,3.660,239.5 +27.7,0.99,3.190,246.6 +27.5,0.99,3.720,253.6 +26.8,0.99,4.320,285.2 +26.3,0.99,4.160,306.0 +26.1,0.99,4.060,304.6 +25.8,0.99,4.000,314.8 +25.8,0.99,3.930,312.5 +26.3,0.99,4.170,309.4 +26.8,0.99,3.210,314.3 +27.4,0.99,2.200,318.6 +27.4,0.99,1.580,261.3 +28.4,0.99,1.850,242.1 +29.0,0.99,2.050,172.0 +28.7,0.99,2.870,154.1 +28.8,0.99,5.750,178.9 +28.6,0.99,7.040,188.0 +28.4,0.99,6.510,181.9 +28.2,0.99,6.590,194.2 +28.0,0.99,6.610,201.6 +27.9,0.99,6.690,206.1 +27.9,0.99,6.430,215.5 +27.7,0.99,5.780,213.9 +27.8,0.99,4.910,215.8 +27.5,0.99,6.020,216.8 +27.3,0.99,5.270,225.2 +27.2,0.99,4.080,220.6 +27.3,0.99,4.450,228.4 +27.1,0.99,3.660,236.9 +27.1,0.99,3.660,253.7 +26.9,0.99,4.040,268.9 +26.4,0.99,3.790,285.1 +26.2,0.99,3.390,300.9 +26.5,0.99,1.880,279.4 +26.7,0.99,1.500,228.4 +26.8,0.99,1.680,196.8 +27.2,0.99,2.770,173.8 +27.6,0.99,4.090,150.3 +28.7,0.99,2.870,144.1 +29.0,0.99,4.600,156.3 +28.7,0.99,5.620,151.8 +28.3,0.99,6.220,154.5 +27.9,0.99,7.820,146.5 +27.9,0.99,7.350,152.9 +27.6,0.99,8.840,162.9 +27.2,0.99,8.230,167.7 +27.3,0.99,7.970,163.8 +27.7,0.99,7.250,153.7 +27.6,0.99,7.620,152.1 +27.4,0.99,8.260,154.9 +27.0,0.99,13.020,162.9 +27.6,0.99,9.420,164.3 +27.9,0.99,8.450,150.0 +28.2,0.99,7.220,156.3 +27.8,0.99,6.900,150.1 +27.7,0.99,7.460,148.4 +27.4,0.99,6.560,97.5 +24.1,0.99,7.110,11.1 +23.2,0.99,12.960,310.8 +22.4,0.99,5.370,290.9 +22.2,0.99,3.400,190.2 +23.2,0.99,3.840,66.4 +24.1,0.99,3.350,70.4 +25.5,0.99,6.280,84.2 +26.5,0.99,8.230,112.1 +26.6,0.99,7.370,108.5 +26.9,0.99,8.070,115.9 +26.9,0.99,7.330,119.5 +27.0,0.99,7.660,102.5 +27.0,0.99,7.410,106.6 +27.0,0.99,8.350,102.8 +24.6,0.99,6.750,102.1 +25.7,0.99,10.220,104.5 +23.7,0.99,6.780,183.5 +24.7,0.99,6.640,170.3 +24.1,0.99,1.980,144.2 +23.5,0.99,5.800,151.2 +25.3,0.99,5.070,99.1 +25.6,0.99,5.760,92.3 +26.0,0.99,4.680,82.4 +26.2,0.99,7.370,69.4 +26.0,0.99,9.590,81.4 +26.3,0.99,8.060,83.0 +26.5,0.99,7.240,78.3 +26.9,0.99,8.880,91.4 +27.0,0.99,7.130,101.0 +27.0,0.99,8.200,110.8 +26.7,0.99,7.800,108.1 +27.2,0.99,7.390,106.5 +25.8,0.99,8.850,85.0 +25.4,0.99,7.930,130.2 +24.7,0.99,1.420,84.7 +25.4,0.99,1.950,30.9 +26.3,0.99,5.640,102.3 +24.8,0.99,5.010,95.7 +25.7,0.99,5.920,111.6 +26.1,0.99,4.320,106.1 +26.6,0.99,5.160,91.0 +25.7,0.99,12.240,97.5 +24.9,1.00,8.760,113.7 +25.0,1.00,7.520,125.7 +25.2,1.00,4.580,124.4 +25.5,1.00,3.490,114.0 +25.9,1.00,3.180,99.0 +26.0,1.00,3.810,61.9 +26.2,1.00,4.840,55.7 +26.1,1.00,5.340,50.9 +26.4,1.00,6.050,61.9 +26.8,1.00,7.570,66.9 +26.8,1.00,7.120,99.8 +26.9,1.00,8.230,99.6 +27.0,1.00,5.560,114.7 +27.2,0.99,5.700,89.4 +27.6,0.99,6.150,104.2 +27.4,0.99,6.720,98.4 +27.5,0.99,6.170,94.7 +27.6,0.99,6.590,90.4 +27.7,0.99,5.860,91.2 +27.6,0.99,7.150,88.8 +27.4,0.99,6.010,90.6 +27.6,0.99,8.000,83.5 +27.6,0.99,6.250,96.5 +27.6,0.99,5.700,94.8 +27.0,0.99,5.820,81.2 +27.3,0.99,7.080,86.6 +27.4,0.99,5.260,82.4 +27.8,0.99,6.470,83.8 +27.1,1.00,7.200,70.3 +26.4,1.00,7.210,69.0 +26.4,1.00,6.400,69.5 +26.8,1.00,5.320,80.9 +26.9,0.99,4.530,86.5 +27.1,0.99,4.390,99.2 +27.1,0.99,3.600,101.1 +27.2,0.99,3.630,114.4 +27.3,0.99,3.340,128.0 +27.3,0.99,3.330,131.1 +27.2,0.99,2.800,111.6 +27.1,0.99,2.950,130.6 +26.9,0.99,1.280,86.7 +26.9,0.99,2.480,89.4 +27.2,0.99,5.040,98.5 +27.1,0.99,4.430,100.8 +27.0,0.99,4.000,110.4 +27.2,0.99,4.100,137.3 +27.1,0.99,3.840,113.6 +26.9,0.99,2.160,123.0 +26.2,0.99,3.720,213.7 +26.2,0.99,5.440,156.7 +23.5,0.99,5.610,229.1 +24.2,0.99,2.570,231.7 +24.6,0.99,2.300,285.4 +25.4,0.99,1.200,16.7 +25.1,0.99,2.780,6.0 +25.5,0.99,3.340,10.2 +25.9,0.99,2.460,30.8 +26.5,0.99,3.140,29.8 +26.2,0.99,5.640,41.0 +26.3,0.99,5.770,40.1 +26.5,0.99,4.270,80.8 +26.6,0.99,4.230,88.8 +26.7,0.99,3.700,91.6 +26.6,0.99,3.960,107.1 +26.6,0.99,4.050,112.3 +26.6,0.99,3.970,116.0 +26.8,0.99,3.710,134.3 +26.8,0.99,3.910,139.8 +26.9,0.99,3.790,152.2 +26.8,0.99,4.500,167.5 +26.7,0.99,3.650,175.8 +26.7,0.99,2.790,195.2 +26.6,0.99,3.190,186.8 +26.5,0.99,2.220,197.3 +26.6,0.99,2.090,181.9 +26.5,0.99,1.550,198.9 +26.4,0.99,0.870,255.1 +25.8,0.99,3.540,35.3 +25.7,0.99,5.700,84.2 +26.1,0.99,6.230,120.2 +26.0,0.99,7.830,141.6 +25.9,0.99,6.810,153.4 +27.2,0.99,5.910,159.5 +26.4,0.99,6.850,144.4 +26.9,0.99,6.320,134.6 +27.1,0.99,5.990,130.9 +27.3,0.99,5.380,133.4 +26.9,0.99,3.800,142.8 +27.0,0.99,6.350,178.7 +26.9,0.99,6.310,168.7 +26.9,0.99,7.400,181.7 +26.9,0.99,8.260,178.3 +27.2,0.99,8.300,187.3 +27.0,0.99,7.620,194.2 +27.0,0.99,5.030,192.2 +24.9,0.99,15.380,211.3 +24.3,0.99,4.970,200.9 +25.3,0.99,7.780,174.4 +27.7,0.99,7.490,215.1 +27.6,0.99,6.850,226.8 +27.5,0.99,7.100,235.1 +27.4,0.99,5.890,246.7 +27.6,0.99,4.690,244.8 +27.6,0.99,5.330,231.4 +27.9,0.99,5.750,220.9 +27.9,0.99,5.860,204.1 +28.4,0.99,5.410,181.8 +28.4,0.99,8.520,195.8 +28.1,0.99,7.950,189.3 +28.1,0.99,8.420,187.8 +28.1,0.99,8.600,178.3 +28.3,0.99,10.220,181.6 +28.3,0.99,10.000,178.1 +28.5,0.99,11.260,182.9 +28.5,0.99,11.520,184.1 +29.1,0.99,10.390,185.4 +28.7,0.99,11.140,193.3 +28.6,0.99,11.000,197.4 +29.0,0.99,9.170,189.1 +28.7,0.99,11.270,200.8 +28.3,0.99,9.570,198.1 +28.4,0.99,8.810,199.5 +28.0,0.99,9.040,200.8 +27.7,0.99,7.750,196.6 +27.4,0.99,7.140,197.3 +27.6,0.99,7.090,200.4 +27.7,0.99,4.710,201.8 +27.7,0.99,6.130,186.8 +27.9,0.99,8.000,194.8 +28.1,0.99,7.730,193.6 +28.2,0.99,8.320,191.4 +28.5,0.99,8.030,190.6 +28.2,0.99,8.850,194.4 +28.5,0.99,8.930,189.9 +28.4,0.99,8.370,191.9 +28.5,0.99,9.670,188.9 +28.1,0.99,9.680,191.3 +28.0,0.99,9.450,186.2 +27.6,0.99,9.600,180.9 +27.3,0.99,11.040,188.9 +27.6,0.99,10.320,193.2 +27.6,0.99,9.180,200.2 +27.3,0.99,9.980,193.8 +27.3,0.99,9.930,197.9 +27.3,0.99,9.220,197.3 +27.4,0.99,10.020,201.6 +27.7,0.99,8.560,201.5 +28.0,0.99,8.770,206.5 +27.6,0.99,8.990,205.3 +27.6,0.99,7.010,200.7 +27.5,0.99,6.130,210.9 +27.5,0.99,4.370,211.5 +27.6,0.99,4.510,223.5 +28.0,0.99,5.580,211.1 +28.1,0.99,6.070,207.4 +28.2,0.99,5.530,211.8 +28.2,0.99,5.860,195.8 +28.1,0.99,6.980,200.2 +28.0,0.99,7.330,193.6 +27.8,0.99,7.450,193.5 +27.9,0.99,7.530,197.6 +27.7,0.99,8.040,201.0 +27.5,0.99,8.060,185.7 +27.6,0.99,9.610,196.2 +27.4,0.99,8.140,207.1 +27.0,0.99,8.560,202.2 +27.2,0.99,8.600,205.8 +27.6,0.99,8.410,209.8 +27.7,0.99,8.460,212.7 +27.4,0.99,7.660,226.4 +27.3,0.99,7.410,221.7 +27.2,0.99,7.660,224.8 +27.3,0.99,6.340,239.5 +27.2,0.99,5.470,243.2 +27.2,0.99,5.110,241.7 +27.2,0.99,3.980,241.0 +27.1,0.99,4.590,221.1 +27.7,0.99,4.760,209.0 +27.9,0.99,4.680,196.1 +28.0,0.99,5.010,197.9 +27.7,0.99,6.460,196.3 +27.9,0.99,6.740,190.8 +27.8,0.99,7.220,196.2 +27.6,0.99,7.740,196.0 +27.3,0.99,7.140,196.0 +27.4,0.99,7.430,200.6 +27.3,0.99,7.800,208.0 +27.6,0.99,7.490,213.9 +27.2,0.99,7.370,219.4 +27.0,0.99,7.950,224.9 +26.9,0.99,8.810,233.0 +27.0,0.99,7.680,236.8 +27.1,0.99,7.940,244.6 +26.9,0.99,8.570,245.9 +26.4,0.99,7.870,261.1 +26.1,0.99,6.860,260.4 +25.8,0.99,6.240,267.9 +25.8,0.99,4.910,266.5 +26.1,0.99,4.600,250.2 +26.3,0.99,4.300,226.5 +26.9,0.99,3.200,225.2 +27.6,0.99,3.160,205.8 +27.9,0.99,4.180,200.7 +28.0,0.99,4.350,203.0 +28.0,0.99,5.640,200.8 +28.1,0.99,5.740,201.5 +28.2,0.99,5.390,198.5 +27.9,0.99,6.610,201.2 +27.7,0.99,6.770,202.6 +27.8,0.99,6.970,207.6 +27.7,0.99,7.410,207.0 +27.7,0.99,6.930,212.5 +27.6,0.99,7.370,215.4 +27.7,0.99,8.190,219.8 +27.4,0.99,7.330,219.5 +27.6,0.99,7.190,225.5 +27.5,0.99,6.960,233.7 +27.6,0.99,6.200,236.3 +27.4,0.99,6.030,239.3 +26.9,0.99,5.650,235.7 +27.1,0.99,5.120,236.8 +26.8,0.99,3.660,249.5 +26.6,0.99,2.550,235.8 +26.7,0.99,2.490,231.2 +27.0,0.99,3.850,201.0 +27.4,0.99,5.320,195.2 +27.7,0.99,6.220,187.2 +27.8,0.99,7.410,191.2 +27.8,0.99,7.910,192.8 +27.6,0.99,8.620,189.6 +27.9,0.99,8.820,194.7 +27.6,0.99,9.240,194.0 +27.3,0.99,10.010,199.8 +27.3,0.99,10.190,199.8 +27.2,0.99,10.860,201.3 +27.4,0.99,10.280,203.5 +27.6,0.99,10.520,203.4 +27.7,0.99,10.650,207.9 +28.4,0.99,9.630,206.9 +28.4,0.99,10.820,214.1 +28.5,0.99,8.870,214.2 +27.7,0.99,10.510,213.8 +28.2,0.99,8.140,220.3 +28.3,0.99,9.320,233.2 +27.8,0.99,8.440,237.6 +27.8,0.99,7.870,240.8 +27.8,0.99,7.450,234.8 +27.9,0.99,8.380,221.0 +28.3,0.99,8.020,214.5 +28.5,0.99,9.280,217.3 +28.9,0.99,9.930,216.9 +28.7,0.99,9.240,206.4 +29.3,0.99,8.350,223.2 +28.8,0.99,8.360,208.0 +28.7,0.99,9.460,205.0 +28.7,0.99,8.960,211.9 +28.7,0.99,7.720,205.8 +28.3,0.99,7.950,212.4 +28.2,0.99,7.570,213.9 +28.2,0.99,8.150,214.1 +27.8,0.99,7.770,213.4 +27.7,0.99,7.110,221.9 +27.6,0.99,6.210,217.2 +27.6,0.99,6.550,219.6 +27.6,0.99,6.420,224.9 +27.4,0.99,6.600,227.8 +27.6,0.99,5.830,231.8 +27.4,0.99,5.770,227.5 +27.4,0.99,4.540,232.9 +27.5,0.99,4.730,225.1 +27.6,0.99,4.660,221.4 +27.6,0.99,5.110,217.3 +27.6,0.99,5.970,207.5 +27.9,0.99,6.570,204.4 +28.2,0.99,5.600,197.7 +28.0,0.99,6.700,193.2 +27.9,0.99,6.900,191.0 +27.9,0.99,5.760,189.4 +27.8,0.99,5.860,183.7 +27.8,0.99,5.230,172.8 +27.7,0.99,6.970,177.2 +27.5,0.99,7.400,173.0 +27.6,0.99,7.190,173.7 +27.5,0.99,7.890,167.7 +27.7,0.99,7.160,166.2 +27.6,0.99,8.980,167.5 +27.7,0.99,8.070,171.9 +27.8,0.99,8.200,187.8 +27.8,0.99,8.830,194.5 +27.8,0.99,7.980,194.1 +27.9,0.99,8.540,192.9 +27.8,0.99,7.400,191.0 +27.8,0.99,7.020,180.8 +27.8,0.99,6.660,188.4 +27.7,0.99,6.550,175.1 +27.9,0.99,6.060,180.6 +27.8,0.99,7.660,173.4 +27.9,0.99,7.470,180.3 +27.9,0.99,7.520,181.9 +28.0,0.99,7.870,181.1 +28.0,0.99,7.170,176.9 +28.1,0.99,7.380,175.2 +27.9,0.99,7.630,170.1 +27.9,0.99,7.620,166.9 +27.9,0.99,8.300,165.3 +28.0,0.99,9.430,166.2 +28.2,0.99,9.010,168.3 +28.2,0.99,8.770,170.3 +28.0,0.99,8.760,172.0 +27.9,0.99,9.790,174.3 +27.7,0.99,9.120,176.9 +27.9,0.99,8.140,187.3 +27.7,0.99,8.440,179.1 +27.7,0.99,6.970,184.4 +27.8,0.99,6.810,188.2 +27.5,0.99,7.950,203.4 +27.4,0.99,4.730,190.5 +27.5,1.00,4.980,208.4 +27.5,0.99,3.800,207.3 +27.4,1.00,4.630,226.5 +27.5,0.99,3.840,214.4 +27.8,0.99,4.250,203.5 +28.1,0.99,4.040,188.1 +28.2,0.99,5.540,186.2 +28.3,0.99,5.290,185.6 +28.2,0.99,6.260,173.9 +28.2,0.99,6.460,173.4 +27.9,0.99,7.250,173.5 +27.9,0.99,7.190,173.0 +27.9,0.99,6.900,172.4 +27.8,0.99,8.070,178.5 +27.9,0.99,7.500,181.5 +27.7,0.99,7.810,181.4 +27.6,0.99,7.990,185.9 +27.5,0.99,8.650,190.3 +27.6,0.99,7.410,190.6 +27.5,0.99,7.030,195.1 +27.5,0.99,6.820,197.2 +27.6,0.99,6.890,206.0 +27.4,0.99,5.370,220.0 +27.0,0.99,6.340,244.8 +26.6,0.99,3.790,259.5 +26.7,0.99,3.500,252.4 +26.7,0.99,3.280,248.7 +26.8,0.99,3.440,230.9 +27.6,0.99,3.760,200.9 +27.9,0.99,4.560,193.3 +27.9,0.99,4.590,190.0 +27.8,0.99,5.650,184.4 +27.8,0.99,6.320,180.9 +27.7,0.99,6.410,183.6 +27.6,0.99,6.320,176.7 +27.4,0.99,6.610,183.2 +27.4,0.99,6.500,179.3 +27.5,0.99,6.720,181.5 +27.4,0.99,6.850,185.7 +27.4,0.99,7.430,190.3 +27.3,0.99,6.640,198.5 +27.2,0.99,6.030,206.4 +27.3,0.99,6.720,211.8 +27.3,0.99,7.050,219.8 +27.1,0.99,6.390,224.7 +26.9,0.99,6.280,219.6 +26.9,0.99,6.360,251.7 +26.4,0.99,5.080,263.6 +26.3,0.99,4.790,260.1 +26.3,0.99,4.080,252.8 +26.6,0.99,2.540,216.7 +26.9,0.99,1.740,191.2 +27.6,0.99,2.810,169.5 +27.8,0.99,2.720,179.0 +28.1,0.99,4.190,183.8 +28.2,0.99,4.640,189.8 +28.1,0.99,5.990,184.3 +28.1,0.99,5.450,190.5 +27.9,0.99,5.490,192.9 +27.8,0.99,5.580,199.4 +27.8,0.99,7.110,196.6 +27.7,0.99,6.140,194.3 +27.7,0.99,5.720,198.1 +27.6,0.99,6.830,202.6 +27.4,0.99,6.600,212.1 +27.3,0.99,6.020,213.6 +27.2,0.99,5.570,231.5 +27.1,0.99,5.630,225.7 +27.1,0.99,5.030,235.3 +26.9,0.99,4.840,228.2 +26.9,0.99,4.900,240.5 +26.3,0.99,3.700,272.9 +26.4,0.99,2.560,272.4 +26.5,0.99,2.050,249.5 +26.5,0.99,2.660,236.6 +26.9,0.99,3.640,211.4 +27.6,0.99,3.480,201.8 +28.0,0.99,3.380,189.4 +28.0,0.99,4.490,173.3 +28.1,0.99,5.350,175.0 +28.1,0.99,5.960,169.4 +28.1,0.99,6.860,170.8 +27.9,0.99,6.260,169.7 +27.9,0.99,5.960,163.0 +27.9,0.99,7.400,166.7 +27.9,0.99,7.260,167.4 +27.8,0.99,6.730,170.5 +27.9,0.99,6.720,176.8 +27.9,0.99,6.350,188.7 +27.7,0.99,6.310,191.5 +27.7,0.99,5.600,191.8 +27.6,0.99,7.170,194.9 +27.7,0.99,6.270,200.1 +27.6,0.99,5.840,202.8 +27.4,0.99,4.530,204.8 +27.4,0.99,3.580,208.8 +27.7,0.99,3.500,204.9 +27.9,0.99,5.330,203.7 +27.9,0.99,4.830,204.8 +28.0,0.99,4.900,196.6 +28.2,0.99,5.690,184.7 +28.4,0.99,5.390,181.7 +28.6,0.99,5.250,184.5 +28.5,0.99,6.640,186.9 +29.0,0.99,5.780,186.5 +28.3,0.99,5.740,177.8 +28.3,0.99,7.290,172.3 +28.2,0.99,7.370,169.6 +28.1,0.99,7.070,177.7 +28.1,0.99,7.200,179.3 +28.1,0.99,7.240,182.7 +28.1,0.99,7.060,179.6 +27.9,0.99,6.950,182.8 +27.7,0.99,6.480,194.6 +27.7,0.99,5.360,197.1 +27.5,0.99,6.030,199.8 +27.4,0.99,4.610,202.6 +27.4,0.99,4.020,191.2 +27.4,0.99,1.870,197.3 +27.3,0.99,1.550,177.8 +27.5,0.99,2.490,197.8 +27.5,0.99,1.520,195.0 +27.5,0.99,2.390,189.5 +27.6,0.99,2.680,158.9 +27.9,0.99,3.140,166.1 +28.1,0.99,3.040,171.6 +28.3,0.99,3.770,181.4 +28.5,0.99,5.430,191.4 +28.3,0.99,4.750,192.4 +28.3,0.99,5.760,190.0 +28.1,0.99,6.050,186.7 +28.1,0.99,6.650,194.8 +27.9,0.99,6.090,194.8 +27.8,0.99,6.170,196.8 +27.7,0.99,6.130,202.4 +27.9,0.99,7.310,203.5 +27.8,0.99,6.130,210.3 +27.6,0.99,6.320,216.6 +27.6,0.99,6.380,211.8 +27.7,0.99,6.250,218.8 +27.9,0.99,6.100,224.3 +27.9,0.99,5.790,229.2 +28.1,0.99,3.980,235.1 +27.8,0.99,4.090,237.7 +27.5,0.99,3.360,255.0 +27.3,0.99,2.210,237.2 +27.6,0.99,3.260,213.0 +27.5,0.99,3.360,197.9 +27.9,0.99,4.990,183.2 +28.2,0.99,5.810,184.0 +28.4,0.99,6.720,200.8 +28.9,0.99,6.400,206.3 +28.4,0.99,7.540,194.1 +28.3,0.99,8.410,194.3 +28.3,0.99,8.320,193.8 +27.9,0.99,8.780,192.6 +27.9,0.99,8.490,196.8 +28.0,0.99,8.790,197.8 +27.8,0.99,9.770,195.9 +28.1,0.99,9.120,210.5 +27.9,0.99,8.670,211.3 +27.6,0.99,8.870,209.8 +27.6,0.99,8.850,214.7 +27.5,0.99,9.330,223.7 +27.5,0.99,7.060,218.8 +27.6,0.99,7.160,224.0 +28.2,0.99,6.370,223.4 +28.1,0.99,6.680,228.7 +27.9,0.99,6.300,219.7 +28.0,0.99,6.420,218.1 +27.8,0.99,6.070,228.8 +28.1,0.99,7.130,230.0 +28.9,0.99,7.810,217.8 +29.0,0.99,8.380,209.4 +29.3,0.99,9.060,209.8 +29.4,0.99,8.970,210.5 +29.7,0.99,8.950,206.3 +29.1,0.99,9.910,202.5 +29.1,0.99,8.740,200.5 +28.5,0.99,8.560,197.5 +28.4,0.99,8.800,196.3 +28.5,0.99,8.840,189.1 +28.7,0.99,8.980,193.7 +28.4,0.99,8.370,193.8 +28.3,0.99,8.770,199.9 +28.3,0.99,9.370,203.6 +28.6,0.99,8.440,205.8 +27.9,0.99,9.940,212.8 +27.7,0.99,9.650,213.1 +28.1,0.99,7.200,220.0 +28.0,0.99,8.570,218.9 +27.9,0.99,5.780,219.4 +28.0,0.99,4.940,217.6 +28.0,0.99,6.320,219.2 +28.0,0.99,5.850,209.7 +28.2,0.99,4.380,209.8 +28.4,0.99,4.670,187.6 +28.5,0.99,5.890,194.2 +28.8,0.99,5.700,185.2 +28.9,0.99,7.170,184.4 +28.6,0.99,8.220,187.1 +28.7,0.99,7.910,178.2 +28.4,0.99,7.440,175.7 +28.1,0.99,8.610,180.2 +27.7,0.99,8.620,178.8 +27.5,0.99,8.400,189.6 +28.4,0.99,6.380,194.5 +28.6,0.99,7.410,202.1 +27.7,0.99,7.760,203.3 +27.9,0.99,6.700,209.5 +27.2,0.99,7.300,209.7 +27.0,0.99,6.280,215.5 +27.1,0.99,6.250,213.1 +27.2,0.99,5.990,212.9 +27.1,0.99,3.970,235.0 +26.7,0.99,2.380,273.6 +26.6,0.99,0.720,269.2 +26.6,0.99,0.490,304.6 +26.6,0.99,0.400,47.9 +26.8,0.99,0.830,116.2 +27.6,0.99,2.910,147.8 +28.1,0.99,3.920,158.3 +28.2,0.99,4.460,152.5 +28.1,0.99,4.620,148.8 +28.2,0.99,5.270,154.7 +28.3,0.99,5.790,153.7 +28.0,0.99,6.300,156.0 +27.8,0.99,6.430,151.4 +27.8,0.99,6.290,155.6 +27.9,0.99,6.970,153.0 +27.7,0.99,6.060,168.4 +27.5,0.99,5.860,159.8 +27.4,0.99,5.520,166.9 +27.4,0.99,5.030,169.2 +27.2,0.99,4.820,174.6 +27.4,0.99,4.360,172.5 +27.3,0.99,1.790,195.2 +27.3,0.99,1.510,195.5 +27.2,0.99,0.500,159.3 +27.0,0.99,0.840,334.8 +26.7,0.99,1.650,24.9 +26.7,0.99,2.220,32.1 +26.9,0.99,2.850,54.0 +27.2,0.99,2.050,53.8 +27.9,0.99,3.640,94.0 +28.4,0.99,5.680,110.9 +28.6,0.99,6.250,129.6 +28.5,0.99,5.590,127.0 +28.6,0.99,6.510,128.6 +28.4,0.99,6.630,126.2 +28.4,0.99,6.030,114.0 +28.2,0.99,7.720,116.7 +28.2,0.99,7.030,121.0 +27.8,0.99,6.840,131.7 +27.7,0.99,7.350,124.0 +28.2,0.99,6.180,129.3 +27.8,0.99,5.990,127.2 +27.9,0.99,4.320,126.1 +28.0,0.99,4.240,122.2 +28.0,0.99,6.900,130.4 +27.9,0.99,5.120,143.3 +28.1,0.99,5.120,148.3 +26.9,0.99,7.480,172.0 +25.9,0.99,3.160,142.8 +26.0,0.99,2.830,54.9 +25.7,0.99,4.040,45.8 +26.5,0.99,5.080,68.8 +26.2,0.99,4.120,102.4 +27.2,0.99,3.210,129.1 +27.3,0.99,2.260,138.3 +27.6,0.99,2.310,102.4 +27.4,0.99,2.180,128.0 +27.5,0.99,3.380,103.9 +27.6,0.99,4.350,98.2 +27.4,0.99,5.420,104.7 +28.0,0.99,5.170,107.0 +27.6,0.99,5.410,121.8 +27.9,0.99,5.480,110.0 +27.7,0.99,7.330,112.1 +27.6,0.99,8.350,124.1 +27.0,0.99,8.450,140.0 +27.2,0.99,5.750,146.1 +26.9,0.99,4.940,145.4 +27.4,0.99,4.560,127.8 +27.3,0.99,4.970,105.5 +27.3,0.99,4.410,187.0 +27.6,0.99,1.480,156.1 +27.5,0.99,2.000,129.7 +27.7,0.99,3.450,109.5 +27.9,0.99,5.110,107.3 +28.0,0.99,5.390,121.8 +28.0,0.99,7.280,126.8 +27.6,0.99,6.760,142.8 +27.6,0.99,6.700,149.1 +28.1,0.99,6.360,152.4 +27.9,0.99,6.500,154.1 +28.0,0.99,6.430,154.2 +28.0,0.99,5.510,168.3 +27.8,0.99,5.160,167.8 +27.7,0.99,4.840,152.3 +27.7,0.99,5.760,162.4 +27.8,0.99,5.660,157.3 +27.8,0.99,5.750,162.1 +27.8,0.99,6.640,165.1 +27.8,0.99,5.910,167.3 +27.8,0.99,6.040,170.8 +27.9,0.99,5.110,184.1 +27.9,0.99,5.100,178.9 +27.9,0.99,5.590,182.8 +27.8,0.99,4.250,207.4 +27.6,0.99,4.490,224.5 +27.4,0.99,4.580,230.1 +26.9,0.99,3.320,280.3 +26.9,0.99,1.830,286.4 +27.1,0.99,0.590,227.8 +27.3,0.99,1.450,148.3 +27.7,0.99,2.570,167.8 +28.0,0.99,4.020,165.1 +28.3,0.99,5.200,178.0 +28.5,0.99,5.330,178.5 +28.4,0.99,6.240,170.0 +28.3,0.99,6.110,175.5 +28.5,0.99,6.070,175.0 +28.4,0.99,7.280,170.5 +28.7,0.99,7.270,177.3 +28.8,0.99,6.700,174.7 +29.0,0.99,7.410,178.5 +29.0,0.99,7.050,186.7 +29.0,0.99,6.830,192.6 +29.3,0.99,6.730,196.1 +29.0,0.99,5.990,203.6 +28.7,0.99,5.980,200.8 +28.6,0.99,5.560,212.8 +28.1,0.99,4.480,225.0 +27.8,0.99,4.400,231.9 +27.6,0.99,2.890,261.1 +27.4,0.99,2.700,271.9 +27.3,0.99,1.820,306.9 +27.4,0.99,0.630,242.5 +27.6,0.99,2.000,154.1 +28.2,0.99,4.220,150.8 +28.4,0.99,5.270,145.2 +27.9,0.99,2.880,158.8 +28.1,0.99,3.100,177.4 +28.1,0.99,4.660,180.3 +28.0,0.99,6.300,176.4 +28.0,0.99,6.360,180.1 +28.1,0.99,7.630,185.6 +28.1,0.99,7.110,185.6 +28.3,0.99,7.110,186.5 +28.1,0.99,7.510,181.1 +28.2,0.99,7.210,185.4 +28.1,0.99,8.170,190.5 +28.1,0.99,7.930,194.1 +27.9,0.99,7.070,199.4 +28.1,0.99,6.360,213.7 +27.9,0.99,7.230,220.0 +28.0,0.99,5.870,225.9 +27.6,0.99,6.430,244.1 +27.4,0.99,4.920,257.6 +27.3,0.99,3.830,282.3 +27.5,0.99,5.240,266.2 +27.6,0.99,3.200,238.9 +27.7,0.99,1.750,258.6 +28.6,0.99,1.050,176.4 +28.9,0.99,3.880,171.4 +28.8,0.99,7.400,181.6 +28.8,0.99,6.860,188.2 +28.8,0.99,6.790,192.4 +25.4,0.99,11.490,38.9 +24.0,0.99,6.960,32.5 +25.0,0.99,2.490,84.7 +26.0,0.99,3.570,151.8 +27.4,0.99,2.930,134.6 +27.6,0.99,0.380,278.1 +27.6,0.99,1.800,55.1 +27.6,0.99,1.820,66.3 +27.4,0.99,1.630,52.8 +27.1,0.99,1.360,13.5 +26.8,0.99,3.260,356.6 +26.1,0.99,4.270,15.9 +26.2,0.99,3.710,19.0 +25.9,0.99,3.780,26.2 +25.9,0.99,5.860,12.0 +25.7,0.99,4.260,32.5 +25.6,0.99,4.810,20.9 +25.7,0.99,3.810,43.7 +26.2,0.99,2.470,36.1 +26.8,0.99,1.400,64.5 +27.3,0.99,1.660,118.2 +27.6,0.99,2.120,204.1 +26.7,0.99,7.100,261.0 +26.0,0.99,5.750,344.9 +25.4,0.99,4.500,44.9 +26.3,0.99,1.050,59.3 +26.9,0.99,1.520,19.1 +27.1,0.99,1.110,3.9 +27.4,0.99,1.640,29.3 +27.6,0.99,2.970,53.3 +27.7,0.99,3.360,68.4 +27.6,0.99,3.390,59.5 +27.0,0.99,3.450,44.9 +26.7,0.99,4.150,40.8 +26.4,0.99,5.010,24.7 +26.2,0.99,4.440,36.2 +25.9,0.99,3.970,18.1 +25.6,0.99,3.460,29.4 +25.7,0.99,4.150,15.8 +25.8,0.99,3.630,22.6 +26.1,0.99,5.800,34.4 +26.6,0.99,6.110,52.8 +26.9,0.99,5.190,71.4 +27.3,0.99,4.000,91.6 +27.5,0.99,4.680,102.7 +27.7,0.99,4.980,113.5 +27.9,0.99,5.480,117.3 +28.1,0.99,5.210,119.8 +28.2,0.99,4.900,119.1 +28.2,0.99,5.630,127.6 +28.3,0.99,5.240,124.9 +28.3,0.99,5.170,131.8 +28.2,0.99,5.010,132.7 +28.3,0.99,4.490,116.8 +28.2,0.99,4.220,120.6 +27.9,0.99,3.360,99.8 +27.8,0.99,3.750,81.7 +27.7,0.99,3.590,66.9 +26.5,0.99,5.270,21.4 +25.7,0.99,7.110,19.0 +25.7,0.99,6.100,23.0 +26.6,0.99,8.130,44.2 +25.9,0.99,8.100,44.6 +25.5,0.99,7.310,48.0 +25.4,0.99,6.930,38.0 +25.8,0.99,5.340,52.4 +26.3,0.99,3.980,69.6 +27.0,0.99,2.160,60.7 +27.4,0.99,1.710,98.8 +27.5,0.99,1.640,130.7 +27.6,0.99,2.700,150.7 +27.8,0.99,2.730,150.3 +28.1,0.99,2.200,136.8 +27.8,0.99,3.130,141.7 +27.9,0.99,2.500,141.7 +27.9,0.99,1.600,123.3 +27.9,0.99,1.100,71.5 +27.9,0.99,1.880,20.7 +27.8,0.99,3.570,10.3 +27.4,0.99,3.170,29.5 +27.6,0.99,6.810,46.0 +27.1,0.99,5.730,50.4 +26.1,0.99,5.680,34.3 +25.7,0.99,6.100,35.9 +25.4,0.99,5.960,32.5 +25.0,0.99,7.170,32.0 +25.1,0.99,7.400,42.2 +25.1,0.99,7.390,43.2 +25.2,0.99,6.830,46.0 +25.7,0.99,5.290,52.0 +26.2,0.99,4.470,83.0 +26.9,0.99,3.040,86.3 +27.1,0.99,3.230,104.8 +27.2,0.99,3.610,115.5 +27.3,0.99,2.390,134.9 +27.4,0.99,2.420,135.4 +27.5,0.99,3.270,143.9 +27.5,0.99,2.950,159.3 +27.4,0.99,2.630,154.0 +27.4,0.99,1.950,140.3 +27.4,0.99,1.910,134.4 +27.4,0.99,1.940,122.6 +27.4,0.99,1.910,87.9 +27.2,0.99,2.680,90.8 +27.1,0.99,2.840,75.3 +27.1,0.99,2.950,70.4 +27.1,0.99,3.660,60.5 +26.8,0.99,4.220,31.8 +26.0,0.99,5.940,23.9 +25.7,0.99,7.210,34.6 +25.6,0.99,7.710,44.6 +26.9,0.99,8.890,61.8 +26.7,0.99,7.350,60.2 +26.9,0.99,7.900,70.6 +27.0,0.99,6.490,81.1 +27.5,0.99,7.040,99.2 +27.6,0.99,7.360,111.7 +26.7,0.99,5.010,135.8 +26.9,0.99,3.940,139.0 +27.2,0.99,3.920,122.8 +27.3,0.99,4.870,133.5 +27.1,0.99,4.620,137.1 +27.1,0.99,3.920,146.0 +26.8,0.99,2.540,156.2 +26.7,0.99,3.380,155.4 +26.7,0.99,3.650,153.2 +26.7,0.99,4.360,172.6 +26.7,0.99,3.760,182.5 +26.7,0.99,3.410,189.8 +26.8,0.99,3.890,180.0 +26.8,0.99,2.550,177.5 +25.8,0.99,5.430,185.1 +26.1,0.99,2.600,197.8 +25.8,0.99,4.960,214.2 +25.7,0.99,2.810,196.3 +26.1,0.99,0.350,137.6 +26.1,0.99,1.330,43.6 +25.4,0.99,1.770,35.1 +25.9,0.99,1.550,31.4 +26.8,0.99,2.550,136.8 +26.8,0.99,2.550,98.9 +27.0,0.99,2.790,103.0 +27.2,0.99,2.130,114.3 +27.6,0.99,2.580,156.6 +27.8,0.99,3.510,147.1 +27.5,0.99,3.600,131.5 +27.6,0.99,2.570,129.3 +27.4,0.99,3.260,118.1 +27.6,0.99,3.540,118.7 +27.3,0.99,4.850,127.3 +27.3,0.99,3.200,132.3 +27.1,0.99,3.400,132.5 +27.1,0.99,3.560,129.1 +27.2,0.99,2.990,146.7 +27.2,0.99,1.930,130.4 +26.8,0.99,5.320,102.0 +26.2,0.99,5.790,92.1 +26.7,0.99,4.020,102.1 +27.2,0.99,3.180,90.8 +26.6,0.99,5.640,68.8 +25.5,0.99,6.050,82.0 +25.3,0.99,7.320,71.3 +25.2,0.99,8.050,94.0 +26.8,0.99,6.320,92.2 +27.2,0.99,5.580,101.5 +27.2,0.99,6.060,111.7 +27.3,0.99,6.190,111.0 +27.5,0.99,6.270,125.5 +27.4,0.99,4.310,101.7 +27.3,0.99,5.750,100.5 +27.2,0.99,4.860,97.9 +27.4,0.99,4.920,107.9 +27.1,0.99,5.110,122.2 +27.4,0.99,4.870,127.3 +27.5,0.99,5.140,130.8 +27.4,0.99,4.910,126.0 +27.6,0.99,4.800,120.0 +27.6,0.99,4.800,126.6 +27.5,0.99,5.690,133.7 +27.5,0.99,3.090,158.5 +26.4,0.99,2.720,204.2 +25.9,0.99,0.530,186.0 +25.1,0.99,3.620,16.9 +25.1,0.99,3.110,255.5 +25.8,0.99,0.930,272.9 +26.1,0.99,1.500,18.7 +26.0,0.99,8.180,96.9 +26.4,0.99,8.330,114.4 +27.1,0.99,5.650,106.2 +27.4,0.99,5.110,125.5 +27.8,0.99,5.020,113.2 +27.5,0.99,5.140,91.9 +27.5,0.99,4.150,91.2 +27.8,0.99,4.550,103.1 +27.7,0.99,5.830,121.0 +27.8,0.99,5.730,111.1 +27.9,0.99,6.440,129.2 +28.1,0.99,5.220,121.7 +27.8,0.99,5.510,126.8 +27.7,0.99,4.270,98.3 +27.9,0.99,4.550,85.3 +27.9,0.99,4.370,103.1 +27.9,0.99,3.830,94.2 +27.8,0.99,3.500,87.0 +27.7,0.99,4.110,71.0 +27.6,0.99,4.520,45.2 +26.6,0.99,5.890,29.6 +26.4,0.99,6.030,31.9 +26.6,0.99,5.430,29.0 +27.1,0.99,4.330,28.7 +27.7,0.99,3.890,59.1 +29.1,0.99,3.590,61.3 +29.4,0.99,3.960,89.1 +29.4,0.99,3.260,105.8 +29.0,0.99,4.020,116.5 +29.0,0.99,3.340,121.9 +28.9,0.99,3.390,139.5 +28.8,0.99,3.250,149.8 +28.7,0.99,3.370,144.7 +28.5,0.99,3.830,122.5 +28.3,0.99,3.980,111.2 +28.1,0.99,2.740,105.2 +28.2,0.99,3.030,97.6 +28.2,0.99,2.530,105.5 +27.8,0.99,3.540,70.2 +27.4,0.99,2.960,82.2 +27.3,0.99,2.130,53.2 +26.6,0.99,4.650,11.4 +26.4,0.99,6.760,28.0 +26.1,0.99,7.430,29.5 +26.2,0.99,7.130,42.9 +26.7,0.99,8.260,46.3 +26.9,0.99,8.420,49.7 +27.1,0.99,8.320,60.5 +27.1,0.99,7.350,67.3 +27.8,0.99,7.370,73.7 +28.0,0.99,6.880,94.4 +28.0,0.99,7.040,99.1 +28.1,0.99,6.780,104.2 +28.1,0.99,6.550,101.9 +28.1,0.99,7.620,105.4 +27.8,0.99,7.800,94.9 +27.8,0.99,7.820,90.6 +27.7,0.99,7.750,87.4 +27.7,0.99,8.490,81.1 +27.9,0.99,8.130,81.9 +27.1,0.99,6.480,95.5 +25.7,0.99,8.740,97.9 +26.1,0.99,6.480,138.7 +25.6,0.99,9.670,137.5 +25.1,0.99,3.540,189.7 +25.4,0.99,0.760,85.7 +25.1,0.99,5.440,126.5 +25.3,0.99,4.120,141.2 +24.7,0.99,6.210,164.8 +24.6,0.99,2.190,147.0 +25.1,0.99,1.750,315.8 +24.5,0.99,2.480,140.1 +24.7,0.99,4.410,158.1 +25.8,0.99,4.490,152.3 +25.6,0.99,1.300,137.1 +24.8,0.99,5.670,125.7 +25.2,0.99,7.650,106.9 +25.7,0.99,6.880,119.0 +25.5,0.99,6.520,149.5 +24.5,0.99,6.780,145.4 +25.4,0.99,6.860,142.0 +26.0,0.99,7.460,133.1 +25.1,0.99,4.810,143.0 +24.5,0.99,3.060,149.1 +26.3,0.99,6.410,158.9 +25.8,0.99,6.320,168.8 +25.6,0.99,7.280,148.0 +25.7,0.99,3.710,115.5 +26.1,0.99,5.310,154.0 +26.1,0.99,8.170,136.0 +26.1,0.99,6.100,147.5 +25.1,0.99,9.490,145.8 +24.9,0.99,5.390,142.1 +25.3,0.99,5.490,154.5 +25.7,0.99,5.970,147.2 +24.9,0.99,5.630,129.6 +24.8,0.99,5.290,116.0 +24.3,0.99,4.540,245.6 +23.8,1.00,5.680,195.4 +23.4,0.99,7.210,190.3 +24.9,0.99,5.100,165.3 +25.6,0.99,4.520,151.3 +25.5,0.99,3.830,131.8 +26.0,0.99,4.520,87.7 +26.2,0.99,4.540,96.7 +26.4,0.99,4.380,100.2 +26.8,0.99,3.990,108.3 +27.0,0.99,4.730,106.4 +27.0,0.99,5.240,103.2 +26.8,0.99,5.670,101.3 +26.9,0.99,6.570,101.6 +27.0,0.99,7.270,108.9 +24.6,0.99,16.910,155.5 +25.1,1.00,4.810,155.6 +24.9,0.99,2.000,351.4 +25.5,0.99,4.080,315.9 +24.6,0.99,7.990,359.3 +25.0,0.99,7.410,9.3 +26.4,0.99,3.810,11.7 +26.8,0.99,3.580,43.8 +26.7,0.99,2.180,69.5 +27.2,0.99,3.460,75.3 +27.8,0.99,4.120,112.1 +27.4,0.99,3.700,117.6 +27.5,0.99,4.340,126.2 +27.5,0.99,2.630,128.8 +27.8,0.99,2.550,122.7 +27.5,0.99,2.240,118.7 +27.6,0.99,3.130,126.2 +27.4,0.99,3.060,128.0 +27.5,0.99,3.160,117.4 +27.6,0.99,2.710,122.6 +27.6,0.99,2.950,118.8 +27.4,0.99,2.660,124.9 +27.3,0.99,2.920,113.7 +27.3,0.99,2.660,126.3 +27.3,0.99,2.080,115.1 +27.2,0.99,1.520,114.5 +27.2,0.99,1.230,79.3 +27.1,0.99,1.850,79.0 +26.4,0.99,2.910,44.0 +26.4,0.99,3.030,40.3 +26.6,0.99,3.530,41.9 +26.8,0.99,3.190,46.2 +27.0,0.99,2.140,61.9 +27.7,0.99,2.120,112.2 +27.9,0.99,2.700,160.5 +28.1,0.99,2.920,175.7 +28.3,0.99,3.770,176.7 +28.0,0.99,5.940,178.4 +28.0,0.99,4.460,190.4 +27.9,0.99,4.630,187.4 +27.9,0.99,4.610,192.9 +28.1,0.99,4.940,189.1 +28.1,0.99,3.890,192.9 +28.0,0.99,4.450,197.7 +27.9,0.99,3.750,196.8 +27.7,0.99,3.820,197.4 +27.6,0.99,3.720,206.8 +27.5,0.99,3.910,204.2 +27.4,0.99,3.590,224.4 +27.2,0.99,3.230,249.5 +26.6,0.99,4.050,273.5 +26.3,0.99,3.930,284.8 +26.3,0.99,4.120,279.5 +26.4,0.99,4.230,282.5 +26.7,0.99,3.440,288.0 +26.9,0.99,2.230,288.4 +27.1,0.99,0.790,269.3 +27.7,0.99,1.190,147.0 +28.0,0.99,3.270,178.5 +28.3,0.99,5.510,189.0 +28.3,0.99,6.410,187.0 +28.3,0.99,6.000,184.9 +28.2,0.99,6.680,191.9 +28.1,0.99,6.180,186.2 +28.0,0.99,5.860,188.2 +27.4,0.99,5.560,185.2 +27.4,0.99,5.620,186.4 +27.3,0.99,5.720,184.2 +27.4,0.99,5.170,185.2 +27.5,0.99,4.220,180.6 +27.3,0.99,4.190,195.3 +27.3,0.99,4.290,200.6 +27.2,0.99,3.420,221.3 +27.3,0.99,3.610,229.9 +27.2,0.99,2.860,251.1 +26.8,0.99,2.940,273.4 +26.4,0.99,2.740,284.1 +26.4,0.99,3.140,288.5 +26.5,0.99,2.400,283.9 +26.7,0.99,1.940,239.3 +27.1,0.99,1.310,218.5 +27.7,0.99,1.660,160.7 +27.9,0.99,2.520,162.3 +28.0,0.99,3.950,158.0 +28.0,0.99,5.130,153.4 +27.7,0.99,6.360,155.8 +28.0,0.99,5.720,158.7 +27.8,0.99,6.030,160.0 +27.8,0.99,6.480,172.2 +27.6,0.99,6.430,175.5 +27.6,0.99,5.550,174.8 +27.6,0.99,5.930,181.9 +27.6,0.99,5.440,180.9 +27.4,0.99,5.660,183.3 +27.3,0.99,4.790,192.7 +27.4,0.99,5.010,193.8 +27.4,0.99,3.790,201.1 +27.4,0.99,3.790,220.8 +27.3,0.99,4.470,233.4 +27.3,0.99,2.970,236.5 +26.9,0.99,2.340,272.6 +26.5,0.99,1.650,302.5 +26.5,0.99,1.970,295.6 +26.7,0.99,1.570,275.4 +26.8,0.99,1.850,224.7 +27.4,0.99,2.130,190.7 +27.6,0.99,2.450,177.2 +27.7,0.99,3.070,161.3 +27.8,0.99,4.120,149.9 +28.1,0.99,4.730,167.5 +27.9,0.99,4.740,168.6 +27.8,0.99,4.270,170.5 +27.8,0.99,4.720,178.5 +27.7,0.99,5.570,172.7 +27.7,0.99,4.670,173.0 +27.6,0.99,5.470,174.5 +27.6,0.99,5.380,164.2 +27.6,0.99,5.970,184.5 +27.6,0.99,5.420,196.0 +27.5,0.99,4.810,206.9 +27.4,0.99,3.780,206.5 +27.2,0.99,2.990,204.6 +27.0,0.99,4.800,260.1 +26.9,0.99,4.060,266.7 +26.9,0.99,3.780,276.8 +26.8,0.99,2.750,297.8 +26.9,0.99,1.630,310.7 +27.0,0.99,1.550,157.4 +27.4,0.99,1.660,204.8 +28.1,0.99,2.700,195.4 +28.2,0.99,5.050,180.7 +28.3,0.99,7.070,171.1 +28.2,0.99,9.380,193.9 +28.0,0.99,8.490,197.3 +28.2,0.99,6.800,194.3 +28.0,0.99,7.500,199.7 +27.9,0.99,7.630,203.1 +27.9,0.99,8.460,201.0 +27.8,0.99,7.880,208.9 +27.9,0.99,7.470,200.1 +28.0,0.99,6.880,207.9 +27.9,0.99,7.540,202.6 +27.7,0.99,7.400,197.6 +28.1,0.99,8.340,204.7 +27.6,0.99,7.480,201.0 +27.7,0.99,6.420,219.1 +27.8,0.99,5.670,223.0 +27.8,0.99,5.730,234.3 +27.5,0.99,4.380,253.2 +27.1,0.99,4.120,277.4 +27.2,0.99,3.430,282.5 +27.5,0.99,2.490,240.1 +27.7,0.99,0.980,228.3 +28.1,0.99,2.520,187.8 +28.4,0.99,3.590,211.6 +28.4,0.99,4.710,211.0 +28.5,0.99,5.650,201.6 +28.4,0.99,7.300,200.3 +28.5,0.99,7.270,203.1 +28.1,0.99,8.050,199.3 +27.5,0.99,8.250,205.5 +27.6,0.99,7.400,211.1 +27.5,0.99,6.430,213.1 +27.5,0.99,6.900,217.0 +27.6,0.99,6.610,225.3 +27.7,0.99,5.710,234.5 +27.6,0.99,5.930,236.3 +27.4,0.99,4.620,250.9 +27.6,0.99,5.020,269.0 +26.7,0.99,4.990,278.6 +26.4,0.99,4.730,284.3 +26.1,0.99,4.670,282.9 +26.0,0.99,4.510,294.3 +26.1,0.99,4.080,304.2 +26.4,0.99,2.070,312.3 +26.7,0.99,1.180,338.4 +27.1,0.99,0.570,170.1 +27.8,0.99,1.750,199.2 +28.2,0.99,3.260,187.8 +28.7,0.99,4.870,207.8 +28.8,0.99,6.110,207.0 +28.7,0.99,5.380,205.9 +28.4,0.99,5.860,196.3 +28.1,0.99,6.880,203.7 +28.1,0.99,4.970,204.3 +27.9,0.99,4.870,194.6 +27.8,0.99,4.500,204.2 +27.8,0.99,4.440,186.9 +27.7,0.99,4.020,172.1 +27.5,0.99,4.160,181.8 +27.4,0.99,2.820,192.7 +27.4,0.99,1.790,189.8 +27.4,0.99,1.240,181.6 +27.3,0.99,1.480,201.5 +27.2,0.99,0.340,222.2 +27.1,0.99,1.210,318.8 +26.9,0.99,2.050,9.6 +26.9,0.99,1.750,30.4 +26.9,0.99,1.550,331.6 +27.0,0.99,1.050,275.6 +24.7,0.99,7.900,215.7 +25.4,0.99,3.750,358.7 +26.2,0.99,4.000,76.7 +26.8,0.99,3.730,108.1 +27.2,0.99,3.820,101.6 +27.7,0.99,3.480,100.7 +27.4,0.99,3.940,133.2 +27.1,0.99,3.240,144.8 +27.3,0.99,3.160,92.5 +27.5,0.99,3.590,95.0 +27.5,0.99,4.020,105.0 +27.4,0.99,4.260,126.3 +27.3,0.99,4.220,133.8 +27.3,0.99,3.950,121.1 +27.5,0.99,2.910,131.5 +27.5,0.99,2.710,131.3 +27.4,0.99,2.410,125.3 +27.5,0.99,3.440,109.5 +27.6,0.99,2.380,119.9 +27.4,0.99,1.690,122.0 +25.9,0.99,4.240,85.2 +24.7,0.99,2.170,128.5 +25.4,0.99,0.770,155.6 +25.8,0.99,1.260,98.4 +26.3,0.99,2.470,68.2 +27.0,0.99,3.310,96.0 +27.6,0.99,4.440,101.5 +27.7,0.99,3.390,124.8 +28.3,0.99,4.280,130.7 +28.2,0.99,4.370,138.6 +28.0,0.99,3.550,122.5 +27.8,0.99,2.820,128.5 +27.8,0.99,3.430,120.9 +27.8,0.99,3.350,96.5 +27.8,0.99,3.230,113.8 +27.8,0.99,2.090,101.3 +27.9,0.99,2.520,125.4 +27.8,0.99,1.490,125.6 +27.8,0.99,2.100,105.3 +27.7,0.99,1.870,93.6 +27.6,0.99,2.350,87.4 +27.6,0.99,1.790,86.3 +27.7,0.99,2.420,68.2 +27.1,0.99,3.490,16.2 +26.4,0.99,5.570,16.3 +26.6,0.99,7.190,44.0 +27.3,0.99,7.000,46.6 +27.1,0.99,5.720,48.9 +27.8,0.99,4.020,85.2 +28.0,0.99,4.340,106.9 +28.0,0.99,4.500,103.1 +28.0,0.99,4.740,108.8 +28.1,0.99,5.200,125.5 +28.1,0.99,5.240,118.8 +28.2,0.99,4.790,125.9 +28.1,0.99,4.070,123.8 +28.0,0.99,4.330,123.8 +27.9,0.99,4.670,123.1 +28.0,0.99,5.130,117.4 +28.0,0.99,5.310,112.1 +28.0,0.99,4.410,118.2 +27.9,0.99,3.750,136.6 +27.9,0.99,4.380,125.3 +27.9,0.99,4.850,128.9 +28.0,0.99,3.420,129.6 +28.0,0.99,3.500,136.4 +27.9,0.99,2.860,106.5 +27.8,0.99,3.680,135.7 +28.0,0.99,2.270,87.1 +26.1,0.99,0.880,82.2 +25.5,0.99,0.990,197.5 +25.8,0.99,4.590,44.8 +25.8,0.99,2.420,172.8 +25.8,0.99,6.790,122.0 +26.1,0.99,7.220,125.1 +26.3,0.99,9.450,138.7 +26.3,0.99,7.270,193.9 +26.2,0.99,5.760,206.7 +26.6,0.99,4.520,213.9 +26.7,0.99,0.280,246.7 +26.7,0.99,2.470,58.3 +25.0,0.99,12.390,82.3 +25.6,0.99,4.490,135.0 +26.2,0.99,5.280,119.2 +26.7,0.99,5.040,115.8 +27.0,0.99,5.890,116.7 +27.2,0.99,6.030,148.4 +27.4,0.99,5.090,139.2 +27.3,0.99,4.180,140.3 +27.3,0.99,2.340,132.7 +26.7,0.99,2.690,59.9 +24.7,0.99,5.210,194.6 +25.7,0.99,3.000,188.1 +25.7,0.99,2.760,234.6 +24.3,0.99,12.950,158.9 +23.3,0.99,4.750,153.3 +23.9,0.99,3.160,35.3 +24.7,0.99,3.360,24.8 +25.3,0.99,4.250,90.2 +25.8,0.99,4.660,156.2 +25.9,0.99,3.870,134.7 +26.4,0.99,4.300,139.1 +26.6,0.99,5.420,142.2 +26.6,0.99,5.150,129.0 +27.1,0.99,7.480,123.9 +27.1,0.99,5.510,124.3 +26.9,0.99,5.030,119.3 +26.9,0.99,6.090,124.9 +27.2,0.99,6.870,125.9 +27.0,0.99,5.380,123.1 +27.2,0.99,5.470,125.4 +27.3,0.99,6.320,118.6 +27.4,0.99,6.560,119.5 +27.3,0.99,6.640,114.4 +27.3,0.99,6.440,107.7 +27.3,0.99,5.710,98.7 +27.6,0.99,7.500,98.3 +25.2,0.99,9.320,125.3 +24.8,0.99,1.960,223.8 +23.9,0.99,8.110,149.2 +23.5,0.99,4.580,111.7 +24.9,0.99,9.920,90.3 +25.5,0.99,7.870,108.9 +26.7,0.99,8.530,117.2 +24.9,0.99,10.110,156.3 +25.4,0.99,8.710,149.6 +27.3,0.99,7.150,120.1 +26.3,0.99,9.780,129.1 +25.8,0.99,12.220,124.9 +26.1,0.99,9.500,126.4 +26.3,0.99,9.210,128.3 +26.8,0.99,7.620,130.6 +26.7,0.99,6.590,134.1 +26.7,0.99,6.760,126.1 +24.7,0.99,11.130,125.3 +25.6,0.99,7.730,110.9 +25.4,0.99,6.650,98.0 +25.3,0.99,9.860,103.5 +24.6,0.99,10.050,116.5 +24.7,0.99,6.430,85.1 +25.1,0.99,5.770,92.7 +25.6,0.99,5.250,82.3 +26.2,0.99,4.940,92.2 +26.4,0.99,5.320,91.2 +25.2,0.99,12.910,137.2 +25.7,0.99,9.770,133.9 +26.9,0.99,7.640,103.0 +26.6,0.99,9.100,103.4 +27.8,0.99,8.620,113.5 +26.5,0.99,9.120,138.0 +27.2,0.99,4.410,111.9 +27.9,0.99,6.820,113.4 +28.2,0.99,6.790,104.5 +28.4,0.99,7.580,109.6 +28.2,0.99,7.660,107.7 +28.2,0.99,7.820,109.4 +28.3,0.99,7.790,110.4 +28.1,0.99,7.950,109.1 +28.2,0.99,7.470,114.6 +28.0,0.99,7.580,106.7 +28.1,0.99,6.940,107.7 +28.0,0.99,6.080,102.0 +27.7,0.99,5.790,100.6 +27.7,0.99,5.920,90.7 +27.5,0.99,7.900,77.4 +26.7,0.99,9.070,97.6 +25.2,0.99,8.030,107.2 +25.3,0.99,5.310,97.1 +23.8,0.99,12.500,101.8 +25.7,0.99,6.180,63.7 +25.0,0.99,8.680,43.2 +26.2,0.99,5.600,63.0 +28.2,0.99,7.010,120.2 +28.0,0.99,7.880,123.2 +28.7,0.99,7.120,117.6 +28.6,0.99,7.050,114.9 +28.7,0.99,7.250,108.3 +29.0,0.99,7.150,102.8 +28.5,0.99,6.430,113.5 +28.3,0.99,5.520,111.0 +28.2,0.99,5.080,114.4 +28.1,0.99,5.430,97.7 +28.0,0.99,5.060,97.4 +27.8,0.99,4.710,77.4 +27.8,0.99,5.610,87.0 +27.5,0.99,7.470,58.8 +27.1,0.99,7.400,58.8 +26.8,0.99,7.430,44.6 +26.4,0.99,6.250,24.3 +26.6,0.99,7.790,49.6 +26.5,0.99,7.540,53.6 +27.0,0.99,8.620,56.6 +27.2,0.99,7.360,60.5 +27.4,0.99,7.080,75.9 +27.5,0.99,6.600,79.8 +27.8,0.99,6.550,93.4 +27.9,0.99,6.310,110.3 +27.8,0.99,6.350,109.8 +27.8,0.99,6.380,111.8 +27.6,0.99,6.260,111.5 +27.7,0.99,5.520,113.8 +27.7,0.99,5.060,114.5 +27.7,0.99,5.080,102.3 +27.7,0.99,5.440,85.6 +27.7,0.99,5.790,88.8 +27.5,0.99,4.220,85.4 +27.4,0.99,4.340,68.7 +27.5,0.99,4.140,80.8 +27.4,0.99,4.510,67.5 +26.5,0.99,4.110,50.1 +26.1,0.99,5.090,39.8 +26.0,0.99,5.870,36.4 +25.9,0.99,5.700,38.1 +25.8,0.99,6.460,32.7 +26.0,0.99,6.150,38.6 +26.5,0.99,5.810,46.8 +26.8,0.99,5.910,63.9 +27.4,0.99,4.960,81.6 +27.6,0.99,5.040,92.3 +27.6,0.99,3.900,109.4 +27.6,0.99,3.900,121.4 +28.1,0.99,3.870,118.1 +27.8,0.99,4.510,118.5 +28.0,0.99,4.090,117.0 +28.2,0.99,5.130,120.4 +28.0,0.99,5.340,139.2 +28.2,0.99,6.630,133.6 +28.2,0.99,5.640,126.7 +28.2,0.99,4.790,110.4 +28.0,0.99,5.090,96.6 +28.0,0.99,4.580,89.6 +27.9,0.99,5.050,86.2 +27.8,0.99,5.600,88.4 +27.5,0.99,5.180,84.2 +27.5,0.99,5.860,90.9 +27.4,0.99,6.070,86.0 +27.5,0.99,6.600,87.5 +25.7,0.99,10.530,47.6 +26.3,0.99,9.540,65.7 +26.5,0.99,8.300,82.7 +26.3,0.99,5.830,63.6 +27.5,0.99,7.260,86.2 +27.5,0.99,6.930,92.6 +27.8,0.99,7.550,101.4 +28.0,0.99,8.240,115.2 +28.3,0.99,7.340,114.7 +28.6,0.99,8.180,107.2 +28.5,0.99,7.840,108.1 +28.4,0.99,7.600,105.3 +28.4,0.99,8.740,109.2 +28.1,0.99,8.960,110.9 +28.1,0.99,8.560,106.9 +28.1,0.99,8.790,104.6 +27.9,0.99,7.900,112.9 +27.9,0.99,7.690,107.9 +27.7,0.99,7.370,106.7 +27.7,0.99,7.840,108.4 +27.0,0.99,10.500,114.3 +26.7,0.99,11.130,113.0 +26.9,0.99,6.320,121.2 +27.6,0.99,6.330,117.1 +26.5,0.99,6.790,139.9 +28.0,0.99,7.280,120.2 +28.1,0.99,6.620,122.5 +28.4,0.99,7.370,117.8 +28.1,0.99,7.010,123.5 +28.0,0.99,6.540,117.2 +27.9,0.99,5.690,115.4 +27.8,0.99,6.500,102.0 +27.9,0.99,7.060,84.5 +27.9,0.99,7.280,92.8 +27.8,0.99,8.700,99.6 +27.9,0.99,8.130,97.1 +27.9,0.99,8.820,103.8 +28.2,0.99,8.820,102.9 +27.9,0.99,9.000,103.3 +27.9,0.99,9.570,111.4 +27.9,0.99,8.710,117.0 +27.9,0.99,8.110,110.2 +27.9,0.99,9.700,110.0 +28.0,0.99,7.730,120.3 +27.8,0.99,7.570,113.4 +27.9,0.99,6.650,103.5 +27.9,0.99,6.760,92.7 +27.6,0.99,6.030,97.4 +27.9,0.99,6.860,88.4 +27.8,0.99,6.410,92.4 +27.8,0.99,6.610,98.9 +27.7,0.99,6.470,87.2 +27.9,0.99,7.070,93.5 +27.8,0.99,6.370,101.1 +27.8,0.99,6.540,116.0 +28.1,0.99,6.890,117.3 +27.9,0.99,6.870,114.8 +28.2,0.99,8.280,114.7 +28.1,0.99,4.650,104.6 +27.9,0.99,5.060,94.5 +28.0,0.99,6.570,88.8 +26.6,0.99,8.450,86.8 +27.7,0.99,7.530,109.0 +27.8,0.99,7.630,121.3 +27.7,0.99,7.590,126.5 +27.6,0.99,6.840,113.9 +27.4,0.99,6.700,112.0 +27.6,0.99,6.560,113.1 +27.5,0.99,6.950,108.8 +27.5,0.99,7.020,110.4 +27.6,0.99,6.530,116.1 +27.5,0.99,4.970,104.9 +27.6,0.99,6.410,106.0 +27.8,0.99,5.250,94.2 +27.0,0.99,8.730,90.2 +25.9,0.99,6.360,66.6 +26.0,0.99,13.010,79.9 +26.4,0.99,5.830,90.2 +27.4,0.99,3.980,117.1 +27.6,0.99,5.950,105.3 +27.9,0.99,7.300,128.3 +27.9,0.99,7.080,123.7 +27.9,0.99,5.940,122.7 +27.9,0.99,6.600,107.8 +27.7,0.99,6.800,104.7 +27.8,0.99,6.780,95.2 +27.7,0.99,6.050,96.9 +27.7,0.99,6.570,104.6 +27.7,0.99,6.100,104.8 +27.5,0.99,6.300,97.5 +27.6,0.99,5.610,105.2 +27.6,0.99,5.280,93.3 +27.3,0.99,3.880,91.0 +27.4,0.99,5.400,80.6 +26.4,0.99,10.170,92.2 +27.1,0.99,9.910,92.7 +27.2,0.99,9.940,92.8 +27.0,0.99,9.560,97.6 +26.8,0.99,8.050,91.1 +27.3,0.99,6.410,85.6 +27.9,0.99,8.120,103.4 +27.8,0.99,8.850,108.6 +27.7,0.99,7.540,112.1 +28.2,0.99,8.690,110.9 +27.9,0.99,8.570,105.9 +27.7,0.99,8.750,106.8 +27.8,0.99,8.220,105.3 +27.9,0.99,8.460,108.8 +27.9,0.99,7.910,115.4 +27.6,0.99,8.370,112.3 +27.8,0.99,8.360,113.0 +27.7,0.99,9.740,118.9 +27.8,0.99,8.990,121.9 +27.7,0.99,8.020,125.6 +27.5,0.99,6.980,119.6 +27.6,0.99,7.340,119.8 +27.5,0.99,8.340,119.5 +27.6,0.99,7.470,125.9 +27.5,0.99,8.120,128.1 +27.8,0.99,6.250,125.8 +27.6,0.99,6.920,127.6 +27.8,0.99,6.840,125.8 +27.7,0.99,7.420,123.5 +27.7,0.99,7.220,117.3 +27.8,0.99,8.200,127.9 +27.9,0.99,7.650,134.4 +27.8,0.99,9.500,136.2 +27.4,0.99,8.360,142.7 +27.8,0.99,10.100,149.3 +27.9,0.99,10.170,138.5 +28.4,0.99,10.140,156.6 +28.2,0.99,10.860,152.3 +27.9,0.99,10.620,157.4 +27.7,0.99,10.200,148.1 +27.8,0.99,8.930,157.7 +27.9,0.99,10.040,156.4 +27.5,0.99,9.880,162.5 +27.5,0.99,8.940,165.4 +27.7,0.99,8.060,169.4 +28.1,0.99,8.860,166.8 +28.0,0.99,8.370,170.1 +27.8,0.99,8.700,167.3 +28.2,0.99,8.720,162.4 +28.0,0.99,8.570,164.0 +28.0,0.99,9.140,159.4 +27.8,0.99,9.830,158.0 +27.8,0.99,7.770,162.6 +28.0,0.99,7.870,163.9 +28.0,0.99,8.390,164.5 +27.9,0.99,8.670,159.2 +27.8,0.99,7.960,159.7 +27.9,0.99,7.890,161.8 +27.8,0.98,8.870,163.3 +28.4,0.98,9.560,161.6 +28.2,0.98,8.180,164.0 +28.6,0.98,9.190,164.4 +27.8,0.98,8.460,160.1 +28.2,0.98,6.770,161.3 +28.2,0.98,7.040,168.5 +28.0,0.98,6.770,169.2 +27.7,0.98,6.610,179.3 +27.9,0.98,6.540,180.1 +27.7,0.98,5.990,181.0 +27.7,0.98,5.880,182.4 +27.5,0.98,5.550,188.3 +27.0,0.98,3.680,223.0 +24.3,0.98,10.010,9.2 +24.4,0.98,8.520,3.6 +24.1,0.98,9.180,11.7 +24.0,0.98,8.120,21.5 +23.8,0.98,8.860,18.9 +22.8,0.98,11.750,22.8 +22.8,0.98,12.370,23.8 +22.7,0.98,12.550,22.1 +22.7,0.98,11.440,25.2 +22.4,0.98,11.340,10.7 +22.1,0.98,12.420,33.9 +22.0,0.98,13.560,25.1 +21.9,0.98,12.750,28.1 +22.0,0.98,13.250,31.2 +22.3,0.98,14.130,36.4 +22.7,0.98,14.190,35.2 +22.5,0.98,13.850,36.0 +23.1,0.98,13.740,43.7 +23.0,0.98,13.530,43.5 +22.9,0.98,13.170,41.6 +22.8,0.98,12.860,41.2 +23.0,0.98,13.720,45.6 +22.8,0.98,13.170,43.5 +22.4,0.98,12.520,40.2 +22.1,0.98,12.350,41.5 +21.9,0.98,11.810,38.5 +21.6,0.98,11.520,39.3 +21.6,0.98,11.190,36.0 +21.7,0.98,10.610,35.1 +22.5,0.98,10.600,35.0 +23.5,0.98,10.600,40.7 +24.4,0.98,10.150,39.5 +25.2,0.98,9.530,47.0 +25.7,0.98,9.780,52.3 +26.0,0.98,9.430,48.8 +26.3,0.98,9.600,46.0 +26.3,0.98,10.380,45.9 +26.4,0.98,10.940,55.6 +26.0,0.98,12.060,68.0 +25.2,0.98,11.370,69.9 +25.2,0.98,11.360,66.8 +25.5,0.98,11.340,72.0 +25.2,0.98,10.960,65.3 +25.0,0.98,10.690,61.6 +25.1,0.98,10.980,69.8 +24.9,0.98,12.670,76.3 +25.2,0.98,7.910,78.0 +25.1,0.98,8.620,82.7 +25.9,0.98,8.730,77.4 +25.4,0.98,10.250,67.0 +26.3,0.98,9.490,89.5 +24.4,0.98,9.010,44.3 +26.4,0.98,8.730,82.1 +26.3,0.98,8.270,77.6 +26.5,0.98,9.280,71.8 +26.3,0.98,9.480,71.9 +26.3,0.98,8.930,70.7 +26.0,0.98,9.450,82.9 +26.5,0.98,7.200,74.0 +27.1,0.98,7.870,86.0 +26.8,0.98,8.510,86.2 +26.9,0.98,6.720,83.8 +27.1,0.98,6.750,87.0 +27.2,0.98,5.910,90.5 +27.3,0.98,6.700,81.2 +27.5,0.98,6.510,83.0 +27.4,0.98,5.960,74.9 +27.1,0.98,6.360,61.8 +26.6,0.98,6.740,88.3 +26.7,0.98,4.120,74.3 +26.7,0.98,5.230,46.7 +26.5,0.98,6.560,32.1 +25.6,0.98,8.320,22.2 +25.9,0.98,7.540,21.9 +25.4,0.99,7.400,21.1 +26.1,0.99,6.840,13.0 +27.1,0.99,6.750,17.6 +27.6,0.99,3.290,36.6 +27.9,0.99,2.960,345.7 +27.9,0.99,1.780,48.6 +28.3,0.98,2.360,63.1 +28.8,0.98,3.580,80.2 +28.8,0.98,3.240,69.8 +28.5,0.98,3.090,67.0 +28.3,0.98,2.680,80.3 +27.9,0.99,3.390,56.1 +27.6,0.99,2.880,34.8 +27.6,0.99,3.670,27.4 +27.3,0.99,3.980,34.9 +27.4,0.99,4.020,41.3 +26.9,0.99,3.730,43.1 +27.3,0.99,3.180,38.0 +27.3,0.99,3.720,26.7 +27.0,0.99,4.390,15.7 +26.7,0.99,4.090,7.0 +26.0,0.99,3.550,7.5 +25.6,0.99,4.040,359.7 +25.3,0.99,3.540,2.0 +25.2,0.99,2.980,356.3 +24.5,0.99,3.300,358.1 +24.9,0.99,2.270,0.2 +26.2,0.99,2.810,343.0 +26.9,0.99,1.590,339.0 +28.0,0.99,0.930,288.4 +28.6,0.99,1.160,198.8 +28.4,0.99,3.880,167.1 +28.5,0.98,4.440,161.4 +27.8,0.99,6.670,163.6 +27.4,0.98,5.670,171.5 +27.1,0.99,5.680,165.4 +27.1,0.99,5.220,176.0 +27.0,0.99,4.280,185.9 +27.0,0.99,5.090,208.0 +26.9,0.99,3.740,216.2 +26.7,0.99,3.700,218.4 +26.4,0.99,3.740,214.3 +26.4,0.99,3.120,222.8 +26.5,0.99,3.550,217.3 +26.4,0.99,2.580,199.3 +26.4,0.99,2.540,200.2 +26.0,0.99,1.490,203.0 +25.8,0.99,1.140,208.3 +26.0,0.99,0.840,147.8 +25.9,0.99,1.200,100.3 +25.8,0.99,2.050,99.2 +25.7,0.99,2.470,74.2 +27.0,0.99,3.370,111.7 +27.3,0.99,4.370,114.9 +27.4,0.99,4.920,118.0 +27.4,0.99,6.090,127.5 +27.4,0.99,6.500,128.8 +27.4,0.99,6.860,135.3 +27.2,0.99,6.940,142.9 +27.2,0.99,6.730,144.4 +27.4,0.99,7.240,144.6 +27.1,0.99,7.430,149.5 +27.2,0.99,7.460,152.3 +27.3,0.99,7.910,155.4 +27.2,0.99,7.730,163.5 +27.1,0.99,7.800,163.7 +27.3,0.99,7.700,163.3 +27.2,0.99,6.920,165.2 +27.0,0.99,6.350,159.7 +26.9,0.99,6.370,156.7 +26.8,0.99,5.630,145.9 +26.8,0.99,5.930,142.4 +27.0,0.99,5.910,135.3 +26.9,0.99,6.070,135.3 +27.0,0.99,6.460,127.2 +27.1,0.99,6.670,129.8 +27.2,0.99,6.700,125.6 +27.3,0.99,6.810,126.4 +27.3,0.99,7.030,125.7 +27.3,0.99,7.500,119.3 +27.1,0.99,8.400,117.7 +27.3,0.99,8.580,118.0 +26.9,0.99,8.930,123.0 +26.9,0.99,9.300,126.8 +26.9,0.99,9.120,124.6 +27.0,0.99,9.630,129.5 +26.7,0.99,10.020,135.7 +26.8,0.99,9.240,134.8 +26.7,0.99,9.900,143.0 +26.7,0.99,9.740,142.5 +26.7,0.99,10.170,143.5 +26.8,0.99,9.780,148.2 +26.7,0.99,9.280,144.7 +26.7,0.99,9.310,145.5 +26.9,0.99,8.950,136.7 +26.9,0.99,8.790,141.4 +27.0,0.99,9.490,134.7 +27.0,0.99,8.890,139.1 +27.1,0.99,9.010,139.1 +27.2,0.99,8.630,139.1 +27.4,0.99,9.220,135.4 +26.6,0.99,10.680,142.0 +26.6,0.99,10.500,151.8 +26.8,0.99,8.320,148.3 +26.6,0.99,7.930,148.6 +27.2,0.99,7.730,151.0 +26.8,0.99,7.720,151.5 +26.9,0.99,7.550,148.3 +26.9,0.99,7.680,151.7 +26.7,0.99,7.620,151.1 +26.6,0.99,7.330,155.8 +26.9,0.99,7.420,158.8 +26.8,0.99,8.570,160.9 +26.8,0.99,7.610,160.6 +26.8,0.99,6.890,166.2 +26.8,0.99,7.210,173.9 +26.8,0.99,7.240,185.1 +26.6,0.99,6.700,174.9 +26.6,0.99,6.030,184.0 +26.7,0.99,6.530,194.6 +26.5,0.99,5.320,181.0 +26.6,0.99,6.890,200.5 +24.6,0.99,8.290,184.7 +24.5,0.99,4.770,209.8 +25.6,0.99,5.510,195.1 +25.9,0.99,4.820,184.3 +26.4,0.99,5.130,178.7 +26.1,0.99,6.390,169.6 +26.1,0.99,5.800,159.5 +26.2,0.99,6.620,165.5 +26.1,0.99,4.640,166.3 +26.2,0.99,6.050,168.9 +26.2,0.99,5.160,177.4 +26.5,0.99,6.090,181.6 +26.6,0.99,7.130,164.1 +26.6,0.99,9.070,170.7 +26.7,0.99,8.530,181.3 +26.7,0.99,8.520,171.0 +26.7,0.99,8.130,188.9 +24.1,0.99,7.250,149.5 +24.0,0.99,11.160,167.4 +24.6,0.99,10.150,170.0 +24.5,0.99,10.150,166.0 +24.1,0.99,7.200,211.8 +24.4,0.99,6.500,209.9 +24.4,0.99,7.360,237.5 +24.3,0.99,5.470,179.0 +23.8,0.99,5.250,141.4 +25.2,0.99,5.160,210.6 +25.9,0.99,6.090,218.4 +25.9,0.99,5.170,195.2 +26.1,0.99,5.530,183.5 +26.4,0.99,5.170,186.4 +26.4,0.99,4.450,160.6 +26.4,0.99,4.380,163.8 +26.2,0.99,6.320,153.5 +26.3,0.99,7.710,156.5 +26.4,0.99,8.460,165.9 +26.4,0.99,8.750,173.4 +26.8,0.99,8.320,182.3 +26.6,0.99,8.730,188.8 +26.8,0.99,8.260,185.2 +26.8,0.99,8.890,178.2 +26.8,0.99,8.810,168.4 +26.8,0.99,8.210,189.7 +26.2,0.99,8.930,205.5 +26.8,0.99,5.350,169.2 +26.9,0.99,4.660,184.9 +26.4,0.99,8.110,166.3 +26.3,0.99,4.250,173.0 +26.3,0.99,2.280,193.8 +26.6,0.99,2.810,196.0 +26.3,0.99,9.030,159.5 +25.5,0.99,10.670,162.4 +25.5,0.99,6.580,164.7 +26.0,0.99,6.430,159.0 +26.3,0.99,7.390,153.9 +26.7,0.99,5.650,149.4 +26.3,0.99,5.110,141.0 +26.7,0.99,7.380,134.6 +26.2,0.99,7.220,124.6 +26.6,0.99,8.510,140.1 +26.7,0.99,8.350,142.6 +26.6,0.99,9.700,134.6 +26.7,0.99,8.270,145.5 +26.6,0.99,8.780,146.4 +26.8,0.99,7.980,154.9 +26.8,0.99,7.800,160.0 +26.5,0.99,7.630,160.0 +27.0,0.99,6.270,172.0 +26.9,0.99,5.430,172.1 +27.0,0.99,4.890,170.3 +26.9,0.99,3.480,144.1 +26.6,0.99,3.230,129.2 +25.8,0.99,3.010,102.3 +26.3,0.99,5.580,106.8 +26.2,0.99,6.970,105.8 +25.7,0.99,5.610,121.4 +26.0,0.99,3.900,144.2 +26.1,0.99,3.990,137.1 +26.4,0.99,5.210,122.6 +26.2,0.99,6.290,117.6 +26.2,0.99,7.460,116.1 +26.3,0.99,6.840,126.8 +26.5,0.99,7.870,130.3 +26.6,0.99,7.700,144.5 +26.5,0.99,7.770,145.7 +26.6,0.99,7.530,148.2 +26.7,0.99,6.430,154.2 +27.2,0.99,6.970,163.2 +26.9,0.99,7.060,166.0 +26.8,0.99,6.870,172.4 +26.6,0.99,5.970,171.2 +26.7,0.99,5.840,168.4 +26.5,0.99,6.050,162.7 +26.4,0.99,4.780,165.2 +26.2,0.99,5.160,161.5 +26.3,0.99,3.800,159.4 +26.3,0.99,3.680,153.8 +26.5,0.99,4.010,142.1 +26.8,0.99,3.900,143.8 +26.9,0.99,5.320,136.3 +27.0,0.99,5.110,145.3 +26.9,0.99,5.670,146.6 +26.5,0.99,5.790,140.3 +26.5,0.99,5.710,141.6 +26.3,0.99,5.810,140.7 +26.3,0.99,5.480,143.5 +26.2,0.99,5.910,144.2 +26.2,0.99,3.630,161.3 +26.1,0.99,4.790,135.8 +26.2,0.99,5.390,140.0 +26.3,0.99,5.020,143.2 +26.3,0.99,5.160,147.0 +26.2,0.99,4.670,161.0 +26.2,0.99,3.430,164.4 +26.6,0.99,5.600,154.5 +26.5,0.99,4.740,157.1 +26.4,0.99,4.000,158.7 +26.4,0.99,3.390,158.4 +26.3,0.99,3.170,149.8 +26.2,0.99,2.840,151.5 +26.6,0.99,2.410,148.9 +26.6,0.99,2.300,158.8 +26.6,0.99,7.040,133.9 +27.2,0.99,8.390,132.8 +27.2,0.99,8.660,137.5 +27.4,0.99,8.930,132.4 +27.2,0.99,8.780,130.1 +27.1,0.99,8.630,127.0 +27.0,0.99,8.630,122.5 +26.9,0.99,8.990,128.6 +26.8,0.99,9.100,128.3 +26.9,0.99,9.000,129.0 +26.9,0.99,9.100,121.0 +26.8,0.99,8.230,123.8 +27.0,0.99,7.480,124.1 +26.9,0.99,6.760,125.0 +26.7,0.99,5.830,122.2 +26.6,0.99,5.260,123.1 +26.8,0.99,4.450,128.1 +26.6,0.99,3.840,115.1 +26.4,0.99,3.410,102.3 +26.4,0.99,3.630,88.8 +26.4,0.99,3.930,82.5 +26.4,0.99,2.890,72.2 +26.2,0.99,3.220,57.3 +26.4,0.99,4.510,109.0 +26.8,0.99,4.240,103.2 +26.9,0.99,4.390,101.7 +26.8,0.99,3.730,100.6 +26.8,0.99,3.770,105.9 +26.8,0.99,1.830,111.4 +27.0,0.99,0.650,87.0 +27.5,0.99,1.600,10.2 +26.2,0.99,2.560,354.6 +26.1,0.99,5.370,345.5 +25.8,0.99,7.080,6.7 +25.3,0.99,7.100,11.4 +24.5,0.99,10.570,355.1 +22.2,0.99,11.520,346.5 +20.8,0.99,11.230,349.4 +20.3,0.99,11.770,350.3 +19.9,0.99,13.100,350.8 +19.3,0.99,13.820,348.4 +19.2,0.99,14.060,354.0 +18.7,0.99,12.390,2.6 +18.4,0.99,13.410,354.9 +18.5,0.99,12.670,352.3 +19.0,0.99,9.850,359.7 +20.3,0.99,9.390,352.7 +20.1,0.99,9.820,341.0 +21.4,0.99,10.310,354.1 +22.4,0.99,8.810,344.1 +22.6,0.99,10.090,340.0 +23.2,0.99,11.780,338.7 +23.4,0.99,10.580,340.7 +23.6,0.99,10.520,340.0 +23.1,0.99,10.190,343.2 +22.9,0.99,9.450,343.0 +22.3,0.99,10.840,348.4 +22.0,0.99,11.430,348.8 +21.4,0.99,10.400,352.5 +21.0,0.99,10.220,350.7 +20.8,0.99,8.540,356.0 +20.3,0.99,8.720,351.7 +19.4,0.99,9.280,359.1 +19.2,0.99,8.710,6.2 +19.0,0.99,8.440,3.4 +19.0,0.99,8.570,9.1 +18.7,0.99,8.310,8.1 +18.4,0.99,7.060,12.2 +18.6,0.99,6.770,7.9 +19.0,0.99,5.920,5.6 +19.5,0.99,5.140,356.5 +20.2,0.99,4.300,346.5 +21.3,0.99,4.850,334.0 +22.6,0.99,5.020,336.5 +23.6,0.99,5.550,348.0 +23.8,0.99,6.680,337.3 +24.0,0.99,6.730,336.3 +24.2,0.99,6.760,347.8 +23.9,0.99,7.060,9.5 +23.6,0.99,6.660,18.9 +23.4,0.99,5.820,21.9 +23.4,0.99,5.090,21.7 +23.2,0.99,4.820,30.5 +23.1,0.99,4.810,28.8 +22.8,0.99,5.210,26.2 +21.3,0.99,4.340,22.6 +20.8,0.99,4.440,20.7 +20.5,0.99,5.120,26.5 +20.5,0.99,4.970,32.4 +21.3,0.99,4.550,42.2 +21.9,0.99,4.350,38.1 +22.2,0.99,4.350,60.8 +22.0,0.99,4.570,57.3 +21.8,0.99,4.740,59.3 +21.6,0.99,4.650,59.5 +21.5,0.99,4.130,59.2 +21.9,0.99,2.920,61.0 +22.4,0.99,0.960,52.8 +22.7,0.99,0.310,114.6 +22.8,0.99,0.910,135.3 +22.9,0.99,1.000,132.4 +23.0,0.99,1.000,126.5 +23.0,0.99,1.300,114.2 +22.8,0.99,1.780,115.6 +22.8,0.99,2.360,101.1 +22.8,0.99,2.920,92.8 +22.8,0.99,2.820,89.0 +22.9,0.99,3.380,84.1 +22.8,0.99,3.540,98.9 +22.7,0.99,3.070,116.5 +22.7,0.99,2.220,107.2 +22.7,0.99,2.110,113.4 +22.8,0.99,1.470,90.5 +21.4,0.99,3.620,21.3 +21.8,0.99,2.210,12.5 +21.5,0.99,1.920,8.7 +21.9,0.99,1.900,9.1 +22.2,0.99,1.600,349.7 +21.9,0.99,3.170,2.6 +22.4,0.99,2.850,1.8 +22.8,0.99,2.540,39.2 +23.1,0.99,1.630,51.2 +23.3,0.99,1.510,87.5 +23.7,0.99,2.420,105.3 +23.6,0.99,3.730,100.8 +23.7,0.99,5.950,111.3 +23.6,0.99,5.250,115.0 +23.5,0.99,6.180,110.9 +23.5,0.99,6.050,117.5 +23.8,0.99,6.900,109.4 +23.9,0.99,5.710,135.3 +23.8,0.99,6.150,134.6 +23.8,0.99,5.300,133.9 +23.8,0.99,5.810,141.6 +24.1,0.99,5.460,148.6 +24.1,0.99,4.350,172.3 +23.8,0.99,3.290,128.1 +24.3,0.99,3.530,187.0 +24.1,0.99,1.620,198.8 +24.1,0.99,2.890,189.1 +24.3,0.99,2.580,169.0 +24.2,0.99,1.550,163.9 +24.2,0.99,1.540,128.5 +24.3,0.99,2.010,107.8 +24.6,0.99,3.030,111.3 +24.6,0.99,3.080,117.9 +24.8,0.99,3.930,128.9 +24.6,0.99,4.780,123.2 +24.8,0.99,5.310,131.8 +24.7,0.99,6.460,136.3 +24.7,0.99,6.720,137.8 +24.8,0.99,6.000,145.4 +24.8,0.99,6.050,148.7 +25.0,0.99,5.110,156.1 +24.8,0.99,5.680,157.3 +24.6,0.99,5.770,161.7 +24.5,0.99,5.350,161.8 +24.6,0.99,5.170,165.6 +24.8,0.99,5.540,185.1 +25.0,0.99,6.260,175.0 +25.1,0.99,6.880,179.2 +25.1,0.99,6.320,175.8 +25.1,0.99,5.630,167.3 +25.0,0.99,5.020,160.2 +25.3,0.99,5.450,160.8 +25.8,0.99,6.000,174.8 +25.7,0.99,6.760,169.8 +25.6,0.99,7.100,154.9 +25.8,0.99,7.990,160.9 +25.5,0.99,6.650,155.5 +25.6,0.99,6.650,148.6 +25.6,0.99,7.410,140.0 +25.6,0.99,7.480,144.5 +25.5,0.99,7.820,142.1 +25.4,0.99,9.440,149.2 +25.4,0.99,8.970,152.1 +25.4,0.99,8.640,149.1 +25.5,0.99,9.940,151.8 +25.6,0.99,9.690,150.5 +25.7,0.99,9.100,164.1 +25.4,0.99,8.460,164.9 +25.5,0.99,8.780,163.3 +25.6,0.99,8.170,167.0 +25.7,0.99,7.780,169.1 +25.9,0.99,6.930,175.1 +26.0,0.99,5.690,157.6 +26.0,0.99,6.940,160.1 +25.0,0.99,8.250,195.6 +24.3,0.99,5.820,155.7 +25.4,0.99,6.580,187.7 +24.3,0.99,9.900,174.0 +24.8,0.99,3.930,192.7 +25.7,0.99,3.810,148.1 +25.0,0.99,7.370,155.7 +25.1,0.99,6.610,178.0 +25.5,0.99,6.210,179.1 +25.5,0.99,7.020,171.8 +25.7,0.99,6.100,167.6 +25.5,0.99,5.480,174.6 +25.3,0.99,5.690,154.3 +25.3,0.99,6.430,137.5 +25.4,0.99,6.590,126.1 +25.2,0.99,5.930,124.9 +25.4,0.99,5.890,133.3 +25.4,0.99,5.670,156.4 +25.3,0.99,5.220,170.7 +25.4,0.99,4.200,168.3 +25.4,0.99,3.510,178.7 +25.4,0.99,2.890,176.4 +25.5,0.99,2.100,173.7 +25.4,0.99,2.090,126.1 +25.4,0.99,2.410,109.9 +25.2,1.00,2.190,86.8 +25.2,1.00,2.330,81.1 +24.7,1.00,3.360,51.3 +25.5,0.99,3.250,97.9 +25.9,0.99,4.610,122.1 +25.9,0.99,5.600,120.5 +25.8,0.99,5.680,115.0 +25.7,0.99,5.760,119.7 +25.7,0.99,6.040,125.0 +25.7,0.99,6.170,120.0 +25.5,0.99,5.910,120.9 +25.5,0.99,5.280,123.5 +25.8,0.99,5.780,126.4 +25.6,0.99,5.480,131.0 +25.6,0.99,5.110,130.8 +25.6,0.99,3.600,133.6 +25.4,0.99,4.680,120.0 +25.6,0.99,4.310,142.8 +25.4,0.99,4.190,118.6 +25.4,0.99,5.440,137.0 +25.4,0.99,5.810,136.4 +25.5,0.99,5.520,145.2 +25.7,0.99,5.450,137.4 +25.4,0.99,5.510,136.5 +25.4,0.99,4.960,134.9 +25.4,0.99,4.840,138.1 +25.3,0.99,4.570,130.3 +25.4,0.99,4.790,133.0 +25.0,0.99,3.530,137.5 +25.4,0.99,5.070,138.0 +25.4,0.99,4.420,131.3 +25.5,0.99,5.810,147.5 +25.4,0.99,5.920,139.2 +25.3,0.99,6.720,138.2 +25.5,0.99,6.270,138.2 +25.4,0.99,7.190,141.0 +25.4,0.99,8.030,146.0 +25.3,0.99,8.120,143.2 +25.4,0.99,7.280,151.7 +25.4,0.99,7.750,146.7 +25.4,0.99,7.230,153.1 +25.4,0.99,7.800,163.3 +25.4,0.99,7.020,164.5 +25.3,0.99,7.120,165.3 +25.4,0.99,7.570,165.7 +25.3,0.99,7.210,171.1 +25.2,0.99,6.880,169.0 +25.3,0.99,5.690,176.9 +25.3,0.99,5.390,175.6 +25.3,0.99,5.340,173.5 +25.3,0.99,4.640,161.8 +25.2,0.99,5.130,170.6 +25.4,0.99,5.860,166.8 +25.4,0.99,5.850,163.6 +25.5,0.99,6.350,170.3 +25.5,0.99,6.750,164.1 +25.4,0.99,6.350,168.8 +25.4,0.99,6.790,164.1 +25.2,0.99,6.930,163.5 +25.2,0.99,7.010,158.0 +25.1,0.99,6.520,167.1 +25.3,0.99,6.600,164.8 +25.2,0.99,6.670,179.2 +25.2,0.99,5.470,179.4 +25.0,0.99,5.020,180.6 +25.0,0.99,5.160,197.1 +25.0,0.99,4.650,188.0 +25.2,0.99,5.080,190.6 +25.1,0.99,4.340,208.8 +24.8,0.99,2.630,237.6 +24.6,0.99,3.220,257.5 +24.4,0.99,3.630,269.4 +24.4,0.99,3.690,273.9 +24.2,0.99,3.300,267.4 +24.5,0.99,2.570,260.1 +24.5,0.99,1.980,242.5 +24.7,0.99,2.350,206.8 +25.0,0.99,3.360,205.4 +25.3,0.99,3.190,206.5 +25.7,0.99,4.020,213.5 +24.9,0.99,5.270,284.8 +23.3,0.99,9.500,338.5 +22.1,0.99,9.090,342.1 +20.8,0.99,8.930,343.7 +20.1,0.99,8.960,343.3 +19.6,0.99,9.130,340.9 +19.4,0.99,8.630,344.0 +19.2,0.99,8.820,341.3 +18.6,0.99,9.040,342.3 +18.2,0.99,9.330,342.1 +17.8,0.99,9.380,343.9 +17.8,0.99,10.000,348.0 +17.8,0.99,9.090,353.5 +17.6,0.99,8.520,357.9 +17.1,0.99,7.950,3.2 +16.8,0.99,8.670,2.3 +17.1,0.99,7.230,5.0 +17.2,0.99,7.860,10.0 +17.8,0.99,6.620,4.3 +18.6,0.99,5.770,2.6 +20.1,0.99,4.970,10.4 +21.4,0.99,4.540,13.7 +22.2,0.99,3.790,352.5 +22.6,0.99,3.260,340.2 +23.0,0.99,4.240,349.4 +23.5,0.99,3.720,2.8 +23.4,0.99,5.250,15.7 +22.6,0.99,6.710,27.0 +22.1,0.99,7.240,31.3 +21.8,0.99,7.300,39.5 +21.7,0.99,6.870,44.1 +21.9,0.99,6.280,51.7 +21.9,0.99,6.550,56.8 +21.9,0.99,6.250,60.8 +21.8,0.99,6.700,64.7 +21.9,0.99,6.870,70.9 +22.0,0.99,7.190,76.9 +21.9,0.99,8.150,81.7 +22.0,0.99,7.940,84.9 +22.0,0.99,8.470,89.2 +22.0,0.99,8.160,73.5 +21.8,0.99,9.350,70.8 +21.7,0.99,9.810,74.8 +21.7,0.99,10.350,82.1 +22.0,0.99,9.540,90.2 +22.2,0.99,9.840,96.4 +22.5,0.99,8.260,99.4 +22.3,0.99,8.660,97.8 +21.9,0.99,9.280,92.3 +21.8,0.99,8.850,94.9 +22.2,0.99,9.920,90.8 +22.5,0.99,8.020,99.5 +22.8,0.99,7.090,101.6 +23.0,0.99,6.760,94.6 +23.5,0.99,5.390,116.7 +23.4,0.99,5.700,87.8 +23.0,0.99,7.480,53.5 +21.4,0.99,8.800,23.4 +18.1,0.99,13.350,1.4 +17.5,0.99,14.030,6.9 +17.6,0.99,10.900,4.8 +17.1,0.99,11.670,2.9 +17.1,0.99,10.350,8.2 +17.0,0.99,11.570,1.0 +16.6,0.99,11.240,2.3 +16.8,0.99,10.310,356.5 +17.2,0.99,9.880,354.2 +17.8,0.99,9.640,350.3 +18.6,0.99,9.420,347.2 +19.5,0.99,9.120,349.6 +20.1,0.99,9.310,349.7 +20.3,0.99,9.290,349.6 +20.3,0.99,8.780,355.3 +20.0,0.99,8.540,2.2 +19.0,0.99,9.920,3.1 +18.6,0.99,9.580,11.6 +18.3,0.99,8.890,20.2 +18.1,0.99,8.640,21.3 +17.7,0.99,8.800,28.4 +17.6,0.99,8.210,32.4 +17.3,0.99,7.930,33.1 +17.1,0.99,7.330,36.1 +17.2,0.99,7.150,36.1 +17.4,0.99,6.860,37.8 +17.7,0.99,6.430,51.0 +18.0,0.99,5.820,50.3 +18.1,0.99,5.750,47.0 +18.3,0.99,5.600,49.4 +18.4,0.99,5.420,54.1 +18.8,0.99,5.050,80.3 +19.2,0.99,4.690,78.4 +19.4,0.99,4.110,83.5 +19.8,0.99,4.130,82.1 +20.0,0.99,4.500,73.4 +20.4,0.99,4.020,103.2 +20.6,0.99,4.220,89.9 +20.7,0.99,4.250,97.7 +21.0,0.99,4.770,104.9 +21.1,0.99,5.760,104.6 +21.3,0.99,5.630,101.6 +21.6,0.99,5.670,111.6 +21.8,0.99,5.720,118.9 +22.1,0.99,6.420,126.1 +22.2,0.99,6.150,134.5 +22.5,0.99,6.750,139.7 +22.8,0.99,6.820,150.5 +22.8,0.99,6.900,142.5 +23.1,0.99,6.780,142.8 +23.4,0.99,5.420,147.3 +23.4,0.99,5.540,148.3 +23.6,0.99,5.710,137.6 +23.7,0.99,4.930,130.1 +23.7,0.99,6.250,137.5 +22.1,0.99,8.350,169.6 +21.5,0.99,3.910,107.0 +20.7,0.99,3.660,115.3 +22.3,0.99,7.420,148.2 +20.9,0.99,2.380,194.8 +19.2,0.99,11.360,2.9 +20.3,0.99,10.050,52.3 +20.9,0.99,10.720,70.4 +21.3,0.99,10.640,91.6 +21.4,0.99,8.350,81.5 +21.7,0.99,6.550,91.5 +22.0,0.99,6.410,87.3 +22.4,0.99,5.110,97.1 +22.4,0.99,4.000,92.0 +22.5,0.99,2.060,100.5 +22.6,0.99,2.070,47.0 +21.2,0.99,6.380,9.5 +20.4,0.99,8.010,8.0 +19.9,0.99,8.320,9.5 +20.1,0.99,7.910,14.7 +19.9,0.99,7.670,4.6 +18.6,0.99,7.900,357.3 +17.6,0.99,8.830,355.0 +17.6,0.99,8.010,356.7 +17.7,0.99,8.280,351.5 +18.0,0.99,7.770,351.8 +19.2,0.99,7.120,347.5 +20.3,0.99,7.310,344.9 +21.2,0.99,7.490,345.9 +21.9,0.99,8.760,342.4 +22.4,0.99,7.870,346.8 +22.6,0.99,8.650,355.6 +22.4,0.99,9.070,6.3 +21.7,0.99,9.440,10.6 +21.3,0.99,8.950,10.7 +21.2,0.99,8.460,14.8 +21.1,0.99,7.370,19.0 +21.2,0.99,6.630,18.2 +21.0,0.99,5.620,13.6 +20.0,0.99,4.040,4.7 +19.1,0.99,4.010,348.0 +18.0,0.99,4.140,338.9 +18.0,0.99,4.030,343.7 +18.2,0.99,4.150,348.2 +18.1,0.99,3.960,352.8 +17.9,1.00,3.830,357.5 +17.7,1.00,4.010,0.1 +17.7,1.00,4.000,2.4 +17.9,1.00,3.720,4.3 +18.4,1.00,3.500,3.5 +18.9,1.00,3.340,3.9 +20.7,1.00,2.940,25.7 +21.4,0.99,2.760,40.8 +22.0,0.99,1.950,71.2 +22.3,0.99,1.370,94.9 +22.5,0.99,0.970,105.7 +22.7,0.99,0.830,121.4 +22.6,1.00,1.050,125.1 +22.5,1.00,0.920,134.2 +22.4,1.00,1.770,139.9 +22.4,1.00,1.580,136.8 +22.4,1.00,1.590,141.4 +22.4,1.00,0.820,155.0 +22.3,1.00,0.450,179.5 +22.1,1.00,0.540,268.1 +21.8,1.00,0.570,281.4 +21.9,1.00,0.690,292.2 +21.9,1.00,0.940,321.6 +21.8,1.00,1.290,327.3 +21.9,1.00,1.600,335.8 +21.7,1.00,1.900,350.0 +21.2,1.00,2.700,0.3 +21.3,1.00,2.880,2.7 +21.4,1.00,2.560,15.8 +21.6,1.00,2.740,12.3 +22.1,1.00,2.260,29.3 +22.4,1.00,1.650,52.1 +22.6,1.00,1.140,91.2 +22.7,1.00,1.300,99.8 +22.8,1.00,1.850,118.0 +22.9,1.00,2.280,121.7 +22.8,1.00,2.840,128.4 +22.6,1.00,3.030,126.4 +22.5,1.00,2.610,127.5 +22.7,1.00,2.620,124.9 +22.6,1.00,2.460,121.2 +22.6,1.00,2.130,120.5 +22.6,1.00,1.940,119.5 +22.5,1.00,1.620,95.5 +22.3,1.00,1.340,43.7 +19.4,1.00,6.400,16.4 +19.5,1.00,7.020,30.2 +20.0,1.00,8.680,50.3 +20.0,1.00,10.360,58.2 +19.7,1.00,10.750,63.8 +19.6,1.00,11.200,68.7 +19.5,1.00,11.170,73.6 +19.4,1.00,11.030,73.5 +19.4,1.00,10.400,74.1 +19.6,1.00,9.930,74.6 +19.7,1.00,9.280,75.6 +20.0,1.00,8.850,76.2 +20.3,1.00,8.600,76.9 +20.7,1.00,8.770,81.3 +21.0,1.00,8.650,82.5 +21.1,1.00,8.570,83.7 +21.4,1.00,8.720,90.0 +21.6,1.00,8.690,87.3 +21.8,1.00,8.050,103.9 +21.7,1.00,9.040,96.0 +21.4,1.00,8.870,99.7 +21.5,1.00,8.020,110.7 +21.4,1.00,8.140,104.8 +21.5,1.00,7.410,113.9 +21.5,1.00,7.350,112.6 +21.5,1.00,6.990,117.0 +21.6,1.00,6.450,119.5 +21.6,1.00,6.620,117.2 +21.8,1.00,6.600,120.4 +21.9,1.00,6.330,122.0 +22.0,1.00,5.980,124.8 +22.2,1.00,5.720,133.8 +22.4,1.00,5.600,133.1 +22.6,1.00,5.790,131.8 +22.6,1.00,5.800,136.7 +22.7,1.00,5.110,138.6 +22.8,1.00,5.680,137.5 +22.7,1.00,5.820,134.0 +22.8,1.00,6.340,138.6 +22.8,1.00,6.690,139.0 +22.8,1.00,6.660,137.8 +22.9,1.00,6.650,140.5 +22.8,1.00,4.960,133.5 +22.9,0.99,4.780,131.0 +23.0,0.99,6.140,152.0 +23.0,0.99,7.670,153.7 +23.0,0.99,7.080,151.9 +23.1,0.99,6.850,154.0 +23.3,0.99,4.370,150.5 +23.4,0.99,5.290,141.3 +23.2,0.99,4.970,128.4 +23.5,0.99,6.860,153.3 +21.3,0.99,5.120,57.0 +18.6,0.99,13.520,21.4 +19.2,0.99,10.360,51.6 +19.6,0.99,7.810,66.9 +19.7,0.99,6.960,92.3 +20.7,0.99,5.790,114.4 +21.0,0.99,3.590,146.3 +21.6,0.99,3.520,156.7 +21.9,0.99,1.450,232.6 +22.1,0.99,1.510,237.2 +22.2,0.99,1.440,239.4 +22.2,0.99,0.320,226.9 +22.1,0.99,1.040,120.0 +22.0,0.99,1.170,112.4 +22.1,0.99,1.870,141.5 +22.1,0.99,1.760,113.8 +22.1,0.99,0.890,86.4 +22.1,0.99,1.560,116.0 +22.1,0.99,1.840,128.4 +22.2,0.99,1.970,119.7 +22.4,0.99,1.940,116.4 +22.5,0.99,3.130,115.6 +22.8,0.99,2.830,121.2 +22.8,0.99,3.630,107.6 +23.0,0.99,4.120,104.1 +23.0,0.99,4.230,102.3 +23.1,0.99,4.800,96.6 +23.2,0.99,5.050,102.9 +23.3,0.99,6.020,104.0 +23.6,0.99,6.080,109.0 +23.7,0.99,6.620,114.3 +23.8,0.99,7.030,119.3 +24.1,0.99,7.750,127.0 +24.3,0.99,7.550,134.9 +24.2,0.99,8.210,139.0 +23.9,0.99,7.840,132.7 +24.1,0.99,8.890,136.1 +24.3,0.99,8.750,139.4 +24.3,0.99,9.540,147.4 +24.3,0.99,10.020,147.8 +24.4,0.99,10.400,153.9 +24.3,0.99,10.770,150.0 +24.4,0.99,9.480,157.5 +24.4,0.99,10.020,160.3 +24.2,0.99,9.530,158.3 +24.5,0.99,9.100,155.8 +24.3,0.99,8.630,158.5 +24.4,0.99,8.260,162.8 +24.4,1.00,8.350,153.1 +24.2,1.00,7.880,148.6 +24.4,1.00,7.080,146.8 +24.6,1.00,8.160,151.7 +24.4,0.99,6.870,146.2 +24.8,0.99,7.940,150.1 +24.8,0.99,7.450,151.7 +24.7,0.99,8.470,144.7 +24.6,0.99,9.060,140.7 +24.7,0.99,9.180,143.3 +24.6,0.99,9.240,140.0 +24.4,0.99,9.640,137.8 +24.5,0.99,9.480,138.2 +24.5,0.99,10.050,137.6 +24.6,0.99,10.460,140.8 +24.4,0.99,11.290,143.3 +24.5,0.99,10.990,142.1 +24.4,0.99,10.840,142.3 +24.4,0.99,11.420,147.0 +24.3,0.99,11.370,142.2 +24.3,0.99,11.420,144.4 +24.5,0.99,10.500,142.9 +24.6,0.99,11.230,144.5 +24.7,0.99,11.400,148.3 +24.8,0.99,11.650,143.3 +24.7,0.99,11.420,144.3 +24.8,0.99,10.700,143.6 +24.8,0.99,10.990,147.2 +24.9,0.99,11.520,149.2 +25.0,0.99,11.330,148.1 +25.0,0.99,11.420,148.5 +24.9,0.99,11.280,155.0 +24.9,0.99,12.990,149.4 +25.1,0.99,14.200,150.4 +24.5,0.99,12.840,158.5 +24.7,0.99,15.900,162.7 +24.6,0.99,13.990,161.6 +24.5,0.99,12.470,156.1 +25.0,0.99,13.480,162.1 +24.8,0.99,13.410,170.6 +25.2,0.99,10.700,178.8 +25.2,0.99,11.220,179.8 +25.4,0.99,13.180,183.6 +25.4,0.99,14.120,184.0 +25.3,0.99,14.090,182.5 +25.2,0.99,15.880,188.5 +25.1,0.99,16.470,191.8 +25.5,0.99,13.610,206.6 +25.6,0.99,13.360,213.7 +25.6,0.99,12.260,213.4 +25.4,0.99,10.210,231.0 +25.4,0.99,9.050,236.0 +25.9,0.99,10.750,245.3 +25.9,0.99,10.480,253.7 +25.2,0.99,8.830,242.3 +24.8,0.99,7.980,237.8 +25.1,0.99,8.340,227.8 +25.1,0.99,7.910,224.6 +24.6,0.99,6.700,202.5 +24.9,0.99,6.910,212.5 +24.2,0.99,5.800,242.6 +24.1,0.99,4.860,242.7 +23.8,0.99,3.750,233.9 +23.5,0.99,3.520,249.4 +22.9,0.99,3.500,260.7 +22.3,0.99,3.860,298.9 +21.9,0.99,5.020,317.3 +20.4,0.99,5.970,350.5 +20.2,0.99,5.210,14.8 +20.2,0.99,5.220,33.5 +20.4,0.99,5.510,38.2 +20.4,0.99,5.160,49.7 +20.3,0.99,4.840,52.7 +20.5,0.99,4.760,57.1 +20.6,0.99,4.320,60.7 +20.6,0.99,4.340,76.7 +20.9,0.99,3.540,82.1 +21.6,0.99,2.780,84.2 +21.9,0.99,2.760,97.5 +22.2,0.99,3.280,113.8 +22.3,0.99,3.480,129.2 +22.5,0.99,3.800,138.3 +22.4,0.99,2.790,146.1 +22.3,0.99,2.800,147.5 +22.2,0.99,3.200,158.6 +22.2,0.99,2.700,185.0 +22.2,0.99,2.640,198.4 +22.3,0.99,2.780,215.3 +22.2,0.99,4.090,285.8 +20.8,0.99,8.640,315.7 +20.8,0.99,9.280,308.7 +19.7,0.99,10.570,327.4 +17.9,0.99,11.610,348.7 +18.5,0.99,13.440,356.6 +17.7,0.99,13.030,6.3 +17.2,0.99,14.710,9.4 +16.7,1.00,13.830,13.3 +16.6,1.00,13.000,12.3 +16.6,1.00,11.940,6.6 +17.3,1.00,10.850,1.2 +18.6,1.00,10.710,2.4 +19.3,1.00,11.590,3.3 +19.4,1.00,10.350,0.4 +19.7,1.00,10.400,356.3 +19.6,1.00,10.130,351.6 +19.6,1.00,9.970,351.4 +19.2,1.00,10.070,0.6 +18.6,1.00,9.840,4.8 +18.6,1.00,9.920,11.3 +18.1,1.00,10.630,19.7 +17.5,1.00,10.050,21.8 +17.4,1.00,9.260,27.8 +17.1,1.00,9.460,31.1 +16.7,1.00,9.230,36.6 +16.9,1.00,8.660,39.9 +16.8,1.00,8.440,43.2 +16.8,1.00,8.230,52.1 +16.9,1.00,7.860,54.4 +17.0,1.00,7.510,66.8 +17.1,1.00,7.230,74.6 +16.9,1.00,8.080,72.8 +17.1,1.00,7.220,77.5 +17.2,1.00,7.070,83.9 +17.3,1.00,7.120,85.5 +17.4,1.00,7.270,90.6 +17.7,1.00,6.640,93.1 +17.8,1.00,6.080,102.1 +17.9,1.00,7.280,89.0 +18.0,1.00,7.220,109.6 +18.1,0.99,6.570,105.0 +18.4,0.99,6.420,127.4 +18.4,0.99,6.490,123.0 +18.6,0.99,6.680,118.5 +18.9,0.99,7.660,125.5 +19.1,0.99,6.860,125.1 +19.3,0.99,7.130,124.7 +19.7,0.99,6.670,118.4 +20.3,0.99,7.370,127.4 +20.4,0.99,8.460,121.7 +21.1,0.99,7.880,128.4 +21.4,0.99,8.120,134.4 +21.5,0.99,8.510,126.2 +21.6,0.99,8.870,136.3 +21.7,0.99,8.660,118.9 +21.4,0.99,8.710,115.0 +22.1,0.99,9.060,125.5 +22.3,0.99,8.960,123.6 +21.6,0.99,10.360,101.5 +21.6,0.99,10.790,109.4 +21.8,0.99,11.200,102.9 +22.4,0.99,12.370,115.7 +22.6,0.99,12.820,114.9 +22.8,0.99,14.100,121.2 +22.8,0.99,14.540,115.7 +22.8,0.99,15.560,118.4 +22.9,0.99,15.470,120.8 +22.9,0.99,15.860,121.7 +23.1,0.99,15.280,126.9 +23.3,0.99,15.280,125.1 +23.4,0.99,15.120,129.1 +23.4,0.99,15.040,131.3 +23.4,0.99,13.240,134.2 +23.3,0.99,12.980,132.3 +23.5,0.99,12.870,137.2 +23.6,0.99,11.870,138.8 +23.7,0.99,12.390,141.8 +23.6,0.99,11.730,141.2 +23.6,0.99,11.140,139.4 +23.7,0.99,11.760,138.9 +23.7,0.99,11.690,137.3 +23.8,0.99,10.890,139.9 +23.8,0.99,10.680,140.1 +24.2,0.99,9.900,144.1 +24.3,0.99,9.320,144.3 +23.9,0.99,10.120,135.9 +23.6,0.99,9.010,133.2 +23.6,0.99,9.340,133.9 +23.9,0.99,8.540,138.8 +23.6,0.99,7.280,139.4 +23.8,0.99,8.210,143.1 +23.6,0.99,8.650,137.7 +23.6,0.99,9.070,137.1 +23.5,0.99,8.350,133.6 +23.3,0.99,8.210,143.5 +23.4,0.99,7.390,142.8 +23.5,0.99,7.870,141.8 +23.4,0.99,5.880,133.8 +23.5,0.99,6.510,147.3 +23.5,0.99,6.870,148.2 +23.5,0.99,6.220,150.3 +23.7,0.99,6.310,159.8 +23.6,0.99,5.630,150.2 +23.7,0.99,5.160,166.1 +23.7,0.99,4.840,171.4 +23.6,0.99,2.250,183.0 +23.8,0.99,1.570,227.9 +23.9,0.99,1.250,299.0 +23.9,0.99,1.700,312.9 +24.2,0.99,2.530,6.8 +25.3,0.99,6.050,344.8 +25.1,0.99,6.670,351.4 +24.1,0.99,12.300,348.8 +23.1,0.99,12.430,349.1 +19.7,1.00,12.640,348.7 +18.2,1.00,11.490,355.5 +17.8,1.00,12.060,356.1 +17.1,1.00,12.710,357.2 +16.3,1.00,12.130,356.2 +15.8,1.00,12.900,5.1 +15.3,1.00,13.050,8.2 +14.8,1.00,13.690,11.8 +14.6,1.00,14.110,11.6 +14.1,1.00,14.530,13.7 +13.3,1.00,15.250,16.5 +12.8,1.00,15.270,20.3 +12.1,1.00,14.830,23.4 +11.5,1.00,15.430,23.6 +11.5,1.00,13.330,25.3 +11.8,1.00,12.320,20.9 +12.4,1.00,11.570,17.3 +13.5,1.00,11.370,16.0 +15.0,1.00,11.330,16.1 +15.9,1.00,11.520,14.4 +16.5,1.00,11.460,15.0 +16.9,1.00,11.840,18.0 +16.9,1.00,11.830,17.6 +16.4,1.00,12.510,20.9 +15.5,1.00,13.050,23.6 +15.0,1.00,13.650,30.2 +14.8,1.00,13.730,32.5 +14.6,1.00,13.270,35.1 +14.5,1.00,13.020,37.3 +14.6,1.00,13.060,39.5 +14.5,1.00,12.540,41.2 +14.5,1.00,12.100,43.4 +14.4,1.00,11.580,43.6 +14.5,1.00,12.230,47.8 +14.8,1.00,13.520,51.9 +14.9,1.00,13.290,55.2 +15.0,1.00,12.670,58.1 +15.2,1.00,12.610,61.0 +15.6,1.00,12.510,65.1 +15.6,1.00,11.960,63.8 +15.7,1.00,11.140,64.3 +15.8,1.00,10.320,63.4 +16.1,1.00,9.430,62.9 +16.3,1.00,8.220,63.0 +16.5,1.00,7.220,61.0 +16.8,1.00,6.390,59.9 +17.2,1.00,5.850,66.6 +17.5,1.00,5.780,68.3 +17.7,1.00,5.370,63.8 +17.9,1.00,4.860,66.1 +18.0,1.00,4.820,58.5 +18.2,1.00,4.950,65.5 +18.4,1.00,4.550,94.1 +18.5,1.00,3.870,93.6 +18.6,1.00,4.470,105.7 +18.8,1.00,4.030,120.6 +18.6,1.00,4.280,83.6 +18.7,1.00,3.660,110.4 +19.2,1.00,2.740,109.4 +17.5,1.00,6.530,29.9 +17.4,1.00,8.120,31.8 +17.5,1.00,9.040,37.5 +17.9,1.00,9.160,37.5 +18.2,1.00,8.260,43.3 +19.4,1.00,4.420,73.9 +19.3,1.00,5.170,79.4 +19.2,1.00,7.570,83.9 +18.9,1.00,7.410,83.1 +18.9,1.00,6.920,88.6 +19.0,1.00,6.260,86.3 +19.2,1.00,5.440,88.8 +19.4,1.00,4.800,85.7 +19.4,1.00,4.670,78.9 +19.9,1.00,5.410,83.5 +20.4,1.00,5.850,77.4 +20.3,1.00,5.860,65.4 +19.8,1.00,7.100,55.0 +19.7,1.00,6.570,55.4 +19.3,1.00,6.570,54.8 +19.0,1.00,7.040,48.0 +18.2,1.00,7.730,42.8 +18.2,1.00,7.300,40.2 +18.1,1.00,7.300,40.2 +17.8,1.00,7.300,41.6 +17.2,1.00,7.420,41.0 +17.5,1.00,7.790,44.8 +16.5,1.00,7.410,34.2 +16.5,1.00,7.250,40.6 +16.8,1.00,6.830,40.4 +17.3,1.00,6.270,40.4 +18.4,1.00,6.280,44.3 +19.4,1.00,4.950,44.6 +19.9,1.00,4.310,50.6 +20.3,1.00,3.840,43.2 +20.6,1.00,3.730,47.9 +20.8,1.00,3.930,48.9 +20.8,1.00,4.380,49.4 +20.0,1.00,5.990,16.4 +19.5,1.00,6.640,29.2 +19.4,1.00,7.420,36.2 +19.1,1.00,7.350,41.1 +19.6,1.00,7.260,55.9 +19.6,1.00,7.060,55.2 +19.7,1.00,6.550,58.2 +19.5,1.00,6.470,57.5 +19.2,1.00,6.430,48.3 +19.1,1.00,6.030,53.7 +18.7,1.00,5.970,44.7 +18.5,1.00,6.240,49.5 +18.4,1.00,5.860,45.0 +17.9,1.00,5.720,36.9 +17.8,1.00,5.560,40.7 +17.8,1.00,4.540,31.8 +17.8,1.00,4.050,37.9 +19.1,1.00,3.410,51.9 +19.6,1.00,1.910,38.6 +19.9,1.00,0.930,41.1 +20.1,1.00,0.440,58.2 +20.4,1.00,0.280,84.0 +20.5,1.00,0.360,109.8 +20.4,1.00,1.520,119.2 +20.3,1.00,1.910,87.0 +20.1,1.00,2.450,49.0 +20.1,1.00,3.500,23.3 +19.4,1.00,4.480,9.9 +19.2,1.00,6.640,23.8 +18.8,1.00,6.860,28.6 +18.6,1.00,6.320,31.3 +18.1,1.00,6.690,26.4 +17.6,1.00,6.670,22.9 +17.4,1.00,7.200,20.6 +16.6,1.00,8.800,18.7 +16.2,1.00,9.550,17.0 +15.8,1.00,10.120,20.1 +15.7,1.00,10.570,20.7 +16.3,1.00,10.380,18.2 +17.4,1.00,9.530,15.4 +18.8,1.00,11.880,20.3 +19.5,1.00,12.830,20.9 +19.3,1.00,13.860,16.4 +18.5,1.00,14.250,16.3 +17.8,1.00,14.460,15.0 +16.9,1.00,15.380,20.6 +15.8,1.00,15.290,16.1 +14.6,1.01,15.630,21.4 +13.3,1.01,17.760,27.2 +12.1,1.01,18.120,28.6 +10.6,1.01,19.020,30.0 +9.5,1.01,19.350,30.9 +8.4,1.01,17.170,32.1 +7.4,1.01,17.130,34.7 +6.9,1.01,16.190,34.4 +6.7,1.01,15.860,36.3 +6.4,1.01,15.380,35.4 +6.3,1.01,15.190,36.8 +6.2,1.01,14.960,36.8 +5.9,1.01,14.540,34.8 +5.7,1.01,13.860,35.5 +5.9,1.01,13.670,35.3 +6.0,1.01,12.340,33.4 +6.4,1.01,11.640,30.1 +7.3,1.01,10.330,27.2 +8.7,1.01,9.470,27.4 +9.8,1.01,8.800,26.6 +10.7,1.01,8.130,25.9 +11.3,1.01,7.760,24.8 +11.7,1.01,7.520,24.1 +11.7,1.01,8.200,22.7 +11.0,1.01,9.040,24.2 +10.8,1.01,9.200,30.0 +10.9,1.00,8.930,33.5 +11.7,1.00,8.670,41.7 +11.9,1.00,7.690,51.7 +12.4,1.00,7.610,55.8 +12.9,1.00,6.610,70.2 +13.4,1.00,6.370,66.3 +12.9,1.00,6.060,51.1 +13.8,1.00,5.670,70.2 +14.1,1.00,6.150,72.1 +14.2,1.00,5.320,79.2 +14.5,1.00,5.760,70.1 +14.5,1.00,5.700,60.9 +14.8,1.00,5.830,76.3 +15.1,1.00,6.230,74.5 +15.2,1.00,6.530,73.5 +15.3,1.00,6.660,74.2 +15.5,1.00,7.190,73.3 +15.9,1.00,6.680,83.6 +16.2,1.00,6.460,83.4 +16.5,1.00,6.980,91.7 +16.9,1.00,6.720,103.2 +16.9,1.00,6.980,99.6 +17.3,1.00,6.740,93.6 +17.7,0.99,7.240,100.8 +17.7,0.99,6.430,103.4 +18.8,0.99,7.500,116.7 +18.9,0.99,6.990,116.6 +19.2,0.99,6.280,114.7 +19.2,0.99,6.060,92.9 +19.1,0.99,5.530,74.2 +19.2,0.99,4.180,60.4 +18.2,0.99,6.510,55.9 +17.9,0.99,6.450,53.5 +18.0,0.99,6.570,52.1 +18.6,0.99,6.180,61.9 +18.9,0.99,5.850,68.8 +19.4,0.99,5.780,73.9 +19.3,0.99,6.260,78.6 +19.6,0.99,6.300,86.2 +19.7,0.99,6.340,89.7 +20.1,0.99,6.260,99.6 +20.3,0.99,6.220,109.0 +20.4,0.99,6.530,113.5 +20.5,0.99,7.050,117.7 +20.4,0.99,7.160,130.7 +20.6,0.99,8.690,125.8 +20.7,0.99,8.120,131.2 +20.8,0.99,8.800,130.0 +21.0,0.99,8.880,134.2 +20.9,0.99,8.630,137.6 +21.0,0.99,8.700,141.0 +21.4,0.99,7.650,147.3 +21.5,0.99,8.240,151.0 +21.8,0.99,7.790,148.8 +22.0,0.99,8.060,145.2 +22.0,0.99,8.610,154.8 +22.1,0.99,10.030,155.8 +22.2,0.99,10.070,157.2 +22.1,0.99,9.660,151.5 +22.2,0.99,10.350,150.0 +22.3,0.99,9.230,147.6 +22.3,0.99,9.750,145.3 +22.2,0.99,9.490,142.8 +22.3,0.99,9.600,144.7 +22.5,0.99,10.020,146.7 +22.6,0.99,9.880,149.7 +22.6,0.99,9.170,149.0 +22.6,0.99,9.210,150.4 +22.7,0.99,9.240,152.1 +22.8,0.99,10.110,151.4 +23.0,0.99,11.380,152.9 +22.9,0.99,11.610,153.6 +23.1,0.99,11.770,160.2 +23.2,0.99,11.280,164.6 +23.3,0.99,11.230,171.0 +23.3,0.99,11.130,169.8 +23.3,0.99,10.490,171.3 +23.4,0.99,11.010,176.0 +23.6,0.99,10.670,182.8 +23.6,0.99,11.050,180.6 +23.5,0.99,10.400,184.8 +23.7,0.99,11.130,186.1 +23.5,0.99,9.860,187.4 +23.4,0.99,8.460,191.3 +23.3,0.99,8.180,189.1 +23.4,0.99,7.360,196.0 +23.3,0.99,6.280,199.0 +23.4,0.99,6.280,200.1 +23.8,0.99,8.340,202.9 +23.7,0.99,7.740,201.2 +23.6,0.99,6.880,203.2 +23.6,0.99,6.910,206.2 +23.9,0.99,6.650,216.6 +23.6,0.99,4.400,205.5 +23.8,0.99,4.690,211.5 +23.3,0.99,4.120,211.0 +23.6,0.99,4.180,216.0 +23.3,0.99,3.380,209.3 +23.2,0.99,4.710,186.5 +23.4,0.99,3.180,202.0 +23.1,0.99,3.260,194.9 +23.1,0.99,2.670,210.1 +22.9,0.99,1.710,260.8 +23.5,0.99,3.640,278.7 +22.8,0.99,3.030,301.8 +22.4,0.99,3.070,334.9 +22.3,0.99,4.140,359.7 +22.1,0.99,5.350,5.6 +21.9,0.99,5.910,358.0 +20.5,0.99,10.290,34.8 +19.9,0.99,10.680,46.0 +19.7,0.99,10.260,51.6 +20.3,0.99,10.270,59.2 +20.9,0.99,10.500,61.9 +21.4,0.99,11.450,62.8 +20.9,0.99,10.190,47.9 +20.8,0.99,10.870,49.5 +20.6,0.99,11.850,52.6 +20.6,0.99,12.080,54.6 +21.0,0.99,12.530,57.6 +20.9,0.99,12.410,56.1 +20.5,0.99,12.970,61.4 +19.9,0.99,12.910,62.2 +19.5,0.99,12.850,64.7 +19.2,0.99,13.420,64.6 +18.9,0.99,13.190,67.5 +18.7,0.99,13.450,72.9 +18.6,0.99,13.140,72.5 +18.4,0.99,14.800,72.9 +18.2,0.99,13.940,73.8 +17.7,0.99,13.270,69.4 +17.5,0.99,13.420,70.3 +17.6,0.99,12.900,75.5 +17.1,0.99,12.650,76.1 +17.1,0.99,11.920,82.0 +17.2,0.99,10.550,78.8 +17.1,0.99,11.080,77.0 +17.1,0.99,9.650,73.7 +17.0,0.99,10.260,70.2 +17.4,0.99,9.140,72.5 +17.6,0.99,9.130,73.0 +17.9,0.99,9.700,70.4 +18.1,0.99,9.900,76.0 +18.3,0.99,10.220,80.2 +18.3,0.99,10.130,85.2 +18.2,0.99,10.240,86.2 +18.1,0.99,10.410,87.7 +18.2,0.99,10.370,90.1 +18.4,0.99,9.620,92.8 +18.5,0.99,9.140,99.3 +18.7,0.99,9.100,105.0 +18.7,0.99,8.950,105.9 +18.8,0.99,8.680,104.8 +18.9,0.99,8.490,106.8 +19.0,0.99,8.470,107.5 +19.2,0.99,8.290,112.5 +19.4,0.99,8.610,113.1 +19.5,0.99,8.830,113.0 +19.7,0.99,9.040,109.3 +19.9,0.99,9.060,111.8 +20.1,0.99,8.850,110.4 +20.3,0.99,8.930,109.7 +20.4,0.99,9.670,107.5 +20.6,0.99,10.220,110.4 +20.7,0.99,10.580,111.2 +20.8,0.99,10.810,114.2 +20.9,0.99,10.520,118.5 +21.2,0.99,11.450,113.8 +21.3,0.99,11.130,118.6 +21.5,0.99,11.460,122.1 +21.6,0.99,10.990,127.7 +21.7,0.99,11.130,129.7 +21.8,0.99,11.080,128.6 +21.9,0.99,11.340,131.2 +22.0,0.99,10.980,132.5 +22.1,0.99,10.780,138.3 +22.1,0.99,10.150,135.7 +22.1,0.99,10.350,127.1 +22.2,0.99,11.150,143.4 +22.2,0.99,10.390,135.6 +22.2,0.99,10.590,139.0 +22.2,0.99,10.370,138.7 +22.3,0.99,9.940,135.4 +22.3,0.99,9.900,138.7 +22.3,0.99,8.920,135.3 +22.3,0.99,8.710,136.2 +22.4,0.99,8.160,137.0 +22.2,0.99,7.120,125.0 +22.1,0.99,7.590,115.6 +22.3,0.99,8.560,120.8 +22.2,0.99,8.200,127.9 +22.1,0.99,8.280,129.3 +22.2,0.99,8.220,123.7 +22.4,0.99,7.610,126.4 +22.4,0.99,8.220,125.1 +22.4,0.99,7.560,130.1 +22.4,0.99,8.310,128.7 +22.4,0.99,7.130,118.3 +22.1,0.99,9.000,122.2 +22.1,0.99,8.320,135.8 +22.3,1.00,7.230,114.9 +22.1,1.00,6.850,114.9 +21.8,1.00,7.070,109.2 +21.8,1.00,7.480,119.2 +22.0,1.00,5.470,112.3 +21.6,1.00,5.890,70.5 +21.4,1.00,7.000,51.6 +20.5,1.00,9.200,39.4 +20.5,1.00,8.820,45.1 +20.4,1.00,7.310,8.3 +17.8,1.00,9.360,341.8 +16.4,1.00,11.010,337.1 +15.6,1.00,11.530,342.1 +14.8,1.00,11.280,345.3 +13.6,1.00,12.500,349.4 +13.0,1.00,12.640,352.9 +12.7,1.00,12.360,349.3 +12.3,1.00,12.030,349.2 +11.8,1.00,12.320,349.7 +11.6,1.00,12.570,351.5 +10.9,1.00,12.560,351.5 +10.5,1.00,11.540,350.5 +10.3,1.00,12.740,350.3 +10.3,1.00,12.800,353.0 +10.3,1.00,12.350,358.2 +10.3,1.00,12.560,356.7 +10.2,1.00,13.260,357.4 +10.4,1.00,11.970,4.8 +10.4,1.00,11.840,2.0 +10.1,1.00,12.090,5.0 +10.0,1.00,13.530,4.9 +10.0,1.00,12.610,8.2 +9.8,1.00,13.570,7.2 +9.8,1.00,13.830,8.4 +9.7,1.00,13.970,14.3 +9.4,1.00,14.380,15.9 +9.3,1.00,15.000,19.1 +9.3,1.00,13.910,19.2 +9.1,1.00,14.310,21.8 +8.9,1.00,14.790,26.2 +9.0,1.00,14.640,29.0 +9.0,1.00,14.550,29.4 +8.9,1.00,13.520,30.0 +9.1,1.00,15.290,35.8 +9.1,1.00,14.760,36.8 +9.2,1.00,14.850,38.9 +9.4,1.00,15.050,40.7 +9.2,1.00,14.790,40.5 +9.0,1.00,14.920,40.9 +9.1,1.00,15.490,42.9 +8.9,1.00,16.070,45.5 +8.4,1.00,15.880,46.0 +7.9,1.00,15.920,44.6 +7.1,1.00,13.620,37.5 +6.6,1.00,12.520,34.6 +6.2,1.00,11.790,29.2 +6.4,1.00,10.890,26.8 +6.5,1.00,9.780,23.0 +6.7,1.00,9.750,17.7 +7.3,1.00,9.340,18.1 +8.2,1.00,9.460,20.5 +8.1,1.00,9.860,22.7 +8.2,1.00,10.280,22.1 +8.4,1.00,10.620,29.3 +8.7,1.00,11.020,35.3 +9.0,1.00,11.080,42.3 +9.5,1.00,10.450,53.3 +9.5,1.00,10.190,52.8 +9.4,1.00,10.480,51.5 +9.5,1.00,10.070,45.2 +9.1,1.00,10.720,47.0 +9.1,1.00,10.150,46.5 +8.7,1.00,11.140,45.3 +7.8,1.00,10.930,36.9 +7.8,1.00,10.330,37.1 +6.9,1.00,10.140,18.6 +6.1,1.00,12.280,20.9 +6.5,1.00,10.940,14.7 +6.1,0.99,11.910,17.9 +5.7,0.99,12.670,11.1 +6.5,0.99,12.300,18.6 +5.9,0.99,12.900,7.9 +5.9,0.99,13.020,356.9 +5.6,0.99,12.930,354.5 +6.4,0.99,12.180,0.9 +6.2,0.99,13.350,358.5 +6.5,0.99,12.700,342.4 +6.6,0.99,12.640,355.9 +6.4,0.99,12.660,1.0 +6.3,0.99,13.150,359.9 +6.3,0.99,13.150,356.8 +6.2,0.99,13.280,354.6 +6.0,0.99,13.750,350.2 +5.8,0.99,11.780,337.7 +5.8,0.99,14.490,342.1 +5.8,0.99,15.140,341.8 +5.6,0.99,13.440,342.3 +5.5,0.99,12.740,340.1 +5.1,0.99,14.290,339.6 +4.9,0.99,13.460,337.2 +4.8,0.99,13.300,335.5 +4.8,0.99,13.600,331.5 +4.9,0.99,13.470,331.5 +4.9,0.99,13.790,325.9 +5.0,0.99,14.260,325.8 +5.0,0.99,14.580,322.5 +5.1,0.99,14.490,324.4 +5.0,1.00,14.340,324.5 +5.2,1.00,15.080,325.6 +5.2,1.00,15.160,326.5 +5.2,1.00,15.720,332.6 +5.4,1.00,16.280,336.6 +6.1,1.00,15.630,342.3 +6.4,1.00,15.510,341.8 +6.6,1.00,16.330,349.3 +6.5,1.00,17.390,355.9 +6.1,1.00,16.870,359.2 +5.6,1.00,15.790,1.9 +5.2,1.00,14.300,6.3 +4.9,1.00,13.970,9.0 +4.5,1.00,13.930,12.4 +4.2,1.00,13.910,13.1 +3.6,1.00,13.470,13.4 +3.3,1.00,12.890,15.7 +3.1,1.00,11.930,14.1 +3.4,1.00,10.290,10.0 +3.8,1.00,10.230,2.3 +4.1,1.00,8.430,352.0 +5.2,1.00,8.290,348.7 +5.8,1.00,8.270,344.5 +6.6,1.00,7.820,343.1 +7.0,1.00,8.040,344.9 +7.4,1.00,8.470,346.5 +7.7,1.00,7.690,358.2 +7.1,1.00,7.450,4.3 +6.8,1.00,7.390,8.1 +6.8,1.00,7.820,9.4 +6.9,1.00,7.770,18.7 +7.1,1.00,7.000,22.7 +7.5,1.00,6.770,30.0 +7.7,1.00,6.590,32.1 +8.0,1.00,6.780,33.1 +8.6,1.00,6.190,46.9 +9.1,1.00,5.540,49.4 +9.5,1.00,5.500,55.1 +10.0,1.00,5.180,68.6 +10.4,1.00,5.080,67.3 +10.6,1.00,5.060,71.7 +10.8,1.00,5.250,67.5 +11.0,1.00,5.270,62.5 +11.3,1.00,5.320,66.0 +11.4,1.00,5.580,67.4 +11.6,1.00,5.650,68.0 +11.5,1.00,6.340,65.6 +11.5,1.00,6.930,68.7 +11.5,1.00,6.690,59.7 +11.6,1.00,5.880,53.6 +11.8,1.00,5.130,48.8 +11.7,1.00,5.530,52.8 +11.7,1.00,6.640,53.5 +11.5,1.01,6.810,45.6 +11.3,1.01,6.870,43.7 +11.4,1.01,6.800,45.8 +11.6,1.01,6.570,44.4 +11.7,1.01,6.520,48.1 +11.8,1.01,6.470,47.1 +11.8,1.01,6.320,48.6 +11.9,1.01,6.600,49.1 +11.8,1.01,6.910,54.6 +12.0,1.01,6.710,53.8 +11.9,1.01,7.230,54.3 +11.8,1.01,7.440,53.2 +11.7,1.01,7.120,49.0 +11.7,1.01,7.430,48.7 +11.5,1.01,7.470,49.4 +11.5,1.01,7.330,48.6 +12.0,1.01,6.720,52.7 +12.2,1.01,6.520,49.5 +12.7,1.01,6.420,51.7 +12.9,1.00,6.600,61.9 +13.2,1.00,6.690,61.6 +13.6,1.00,6.410,63.8 +13.5,1.00,6.790,73.0 +13.8,1.00,6.090,74.1 +14.0,1.00,6.070,80.4 +14.3,1.00,5.340,87.4 +14.6,1.00,4.870,93.5 +14.8,1.00,4.680,94.5 +15.0,1.00,5.350,110.5 +15.2,1.00,5.350,106.7 +15.3,1.00,4.840,106.7 +15.6,1.00,4.390,110.4 +15.8,1.00,3.680,113.7 +15.8,1.00,4.010,101.2 +15.9,1.00,4.040,88.4 +16.0,1.00,3.500,84.9 +16.0,1.00,3.350,78.9 +16.0,1.00,4.250,76.9 +16.2,1.00,4.310,82.1 +16.1,1.00,4.820,85.2 +16.4,1.00,4.900,92.5 +16.5,1.00,4.910,90.5 +16.6,1.00,5.530,98.6 +16.6,1.00,5.390,104.1 +16.6,1.00,5.840,107.7 +16.8,1.00,5.430,114.3 +16.9,1.00,5.490,124.3 +16.7,1.00,5.930,129.7 +16.8,1.00,6.080,135.9 +16.9,1.00,6.150,139.5 +17.1,1.00,5.560,142.3 +17.2,1.00,5.380,147.3 +17.3,1.00,5.380,148.8 +17.4,1.00,4.740,153.8 +17.4,1.00,4.520,147.0 +17.5,1.00,4.180,147.7 +17.5,1.00,4.040,130.8 +17.5,1.00,4.540,121.5 +17.5,1.00,4.830,119.7 +17.4,1.00,5.220,114.1 +17.5,1.00,5.820,113.0 +17.8,1.00,5.390,119.3 +17.7,1.00,6.110,116.0 +17.8,1.00,6.480,118.6 +18.0,1.00,5.690,133.8 +18.1,1.00,6.050,135.9 +18.2,0.99,5.820,146.5 +18.3,0.99,6.500,147.4 +18.4,0.99,6.820,151.1 +18.4,0.99,7.090,161.2 +18.4,0.99,7.520,162.9 +18.7,0.99,8.530,167.9 +19.0,0.99,8.980,172.8 +19.3,0.99,8.670,178.4 +19.6,0.99,9.430,187.3 +19.6,0.99,9.040,194.2 +19.8,0.99,8.270,203.1 +19.9,0.99,7.540,216.9 +19.9,0.99,8.530,223.5 +20.1,0.99,8.380,227.3 +20.1,0.99,9.110,223.6 +19.6,0.99,8.350,231.5 +19.1,0.99,6.720,237.4 +18.8,0.99,6.430,249.9 +18.2,0.99,6.430,253.0 +17.7,0.99,8.730,247.3 +18.1,0.99,7.710,258.6 +18.1,0.99,6.010,251.2 +18.7,0.99,4.660,239.5 +19.9,0.98,6.790,241.6 +20.4,0.98,9.670,235.5 +20.2,0.98,9.220,230.9 +19.9,0.98,8.450,227.0 +19.9,0.98,8.430,222.6 +19.7,0.98,8.370,225.3 +19.6,0.98,7.810,224.3 +19.5,0.98,8.440,225.2 +19.5,0.98,7.620,215.8 +19.4,0.98,7.760,218.8 +19.5,0.98,8.370,220.3 +19.4,0.98,8.660,223.1 +19.6,0.98,9.070,217.2 +20.3,0.98,12.350,229.0 +20.4,0.98,10.830,218.3 +20.2,0.98,9.490,211.4 +20.5,0.98,10.050,220.4 +20.2,0.98,9.950,214.9 +20.1,0.98,9.170,216.5 +20.2,0.98,8.480,215.7 +20.4,0.98,9.110,215.0 +20.9,0.98,10.710,211.7 +20.9,0.98,9.840,213.1 +21.2,0.98,9.130,211.0 +21.3,0.98,9.490,212.3 +21.3,0.98,9.170,208.3 +21.4,0.98,9.460,207.8 +21.4,0.98,9.190,210.8 +21.3,0.98,9.640,208.2 +21.2,0.98,9.620,203.4 +21.2,0.98,10.540,203.4 +21.5,0.98,10.630,198.0 +21.3,0.98,9.920,196.5 +21.5,0.98,10.570,195.0 +21.7,0.98,11.230,199.1 +21.6,0.98,10.320,191.6 +21.8,0.98,10.650,194.3 +21.7,0.98,10.120,192.5 +21.8,0.98,10.250,189.8 +21.9,0.98,10.360,188.2 +22.0,0.98,10.360,187.7 +22.0,0.98,9.520,187.0 +21.9,0.98,9.250,187.1 +22.1,0.98,9.310,189.5 +22.4,0.98,10.250,188.5 +22.7,0.98,10.400,183.8 +22.4,0.98,9.610,176.5 +21.9,0.98,9.330,167.0 +21.8,0.98,9.020,163.5 +22.2,0.98,9.960,169.3 +21.5,0.98,9.360,159.9 +21.8,0.98,10.630,163.0 +21.8,0.98,10.550,164.9 +21.8,0.98,11.080,166.5 +21.6,0.99,9.400,164.8 +21.1,0.99,10.040,172.5 +20.8,0.99,10.050,166.7 +21.0,0.99,10.870,170.3 +21.1,0.99,10.650,167.8 +21.2,0.99,10.940,168.6 +21.3,0.99,10.500,166.4 +21.6,0.99,11.100,172.3 +22.6,0.99,11.360,176.3 +22.9,0.99,11.230,176.3 +22.7,0.99,11.090,177.1 +22.4,0.99,9.930,172.8 +22.1,0.99,9.370,173.6 +21.9,0.99,8.150,163.9 +21.7,0.99,8.270,163.3 +21.4,0.99,7.530,156.5 +21.9,0.99,7.960,160.5 +22.2,0.99,8.450,160.2 +23.0,0.99,9.190,165.6 +22.3,0.99,8.230,163.0 +22.9,0.99,7.860,174.8 +21.8,0.99,7.490,166.7 +22.7,0.99,9.510,164.5 +15.9,0.99,8.570,343.2 +14.5,0.99,9.680,346.4 +13.7,0.99,10.100,357.8 +13.0,0.99,9.620,359.7 +12.7,0.99,9.660,4.8 +12.2,0.99,9.820,1.3 +11.0,0.99,8.750,353.3 +10.3,0.99,8.990,0.1 +10.0,0.99,9.570,353.5 +9.4,0.99,9.680,358.7 +8.7,0.99,10.130,0.9 +8.4,0.99,10.940,350.7 +7.9,0.99,11.160,352.2 +7.7,0.99,10.540,341.1 +7.3,0.99,12.070,342.0 +7.1,0.99,12.750,342.1 +6.9,0.99,12.630,345.9 +6.6,0.99,13.140,342.9 +6.5,1.00,12.750,346.4 +6.5,1.00,12.690,348.6 +6.4,1.00,12.540,349.1 +6.2,1.00,13.340,354.7 +6.0,1.00,13.370,359.5 +5.8,1.00,13.280,357.8 +5.3,1.00,13.340,358.3 +5.1,1.00,14.450,1.0 +4.9,1.00,16.340,2.0 +4.8,1.00,15.150,2.2 +4.8,1.00,12.920,3.2 +4.2,1.00,13.710,6.7 +3.6,1.00,14.360,9.5 +3.1,1.00,15.290,7.6 +2.9,1.00,15.340,10.9 +2.8,1.00,14.120,12.1 +2.6,1.00,15.500,12.7 +2.4,1.00,12.860,19.0 +2.4,1.00,11.300,21.7 +2.2,1.00,11.540,14.5 +1.9,1.00,12.090,14.0 +2.0,1.00,11.610,13.5 +2.1,1.00,10.550,7.8 +2.3,1.00,10.510,8.1 +3.1,1.00,9.680,8.5 +3.6,1.00,9.150,7.3 +3.7,1.00,9.190,7.7 +3.9,1.00,8.850,4.0 +4.1,1.00,8.530,6.5 +4.2,1.00,8.570,9.3 +4.1,1.00,8.490,10.9 +4.3,1.00,7.910,11.7 +4.4,1.00,7.640,9.5 +4.6,1.00,7.510,7.7 +4.7,1.00,7.620,4.8 +4.8,1.00,7.440,7.3 +4.7,1.00,7.400,5.8 +4.6,1.00,7.370,5.4 +4.6,1.00,7.780,3.3 +4.8,1.00,7.410,4.4 +5.2,1.00,6.970,7.2 +5.4,1.00,6.950,11.7 +5.7,1.00,7.150,6.8 +5.7,1.00,6.960,5.9 +5.7,1.00,7.370,5.8 +6.1,1.00,7.210,355.1 +5.9,1.00,6.400,1.1 +6.4,0.99,6.100,3.6 +7.1,0.99,7.040,0.0 +7.4,0.99,6.800,355.8 +7.5,0.99,6.780,0.4 +7.8,0.99,6.420,359.6 +8.0,0.99,6.270,4.5 +8.1,0.99,6.050,10.1 +8.1,0.99,6.430,13.0 +8.5,0.99,6.390,10.8 +8.7,0.99,6.720,15.7 +9.3,0.99,6.220,13.5 +9.1,0.99,6.370,14.0 +9.6,0.99,6.380,20.3 +9.3,0.99,6.990,20.9 +9.7,0.99,7.340,27.0 +10.3,0.99,7.390,29.6 +10.3,0.99,6.590,34.6 +10.2,0.99,6.970,34.5 +10.0,0.99,6.810,30.1 +10.2,0.99,7.120,31.1 +10.0,0.99,7.600,35.2 +9.5,0.99,9.390,28.9 +9.6,0.99,8.620,38.7 +9.8,0.99,8.000,29.3 +9.7,0.99,8.300,30.0 +9.5,0.99,8.220,27.8 +9.5,0.99,9.030,30.6 +9.1,0.99,8.940,18.4 +8.7,0.99,9.050,20.4 +8.4,0.99,9.710,15.2 +7.8,0.99,9.930,6.7 +7.0,0.99,11.570,1.7 +6.9,1.00,10.920,0.5 +6.6,1.00,11.760,358.7 +6.4,1.00,12.440,355.1 +6.0,1.00,13.040,354.2 +5.7,1.00,13.890,353.5 +5.2,1.00,14.240,356.5 +5.1,1.00,13.770,354.8 +5.0,1.00,14.390,354.3 +4.9,1.00,14.890,354.6 +4.1,1.00,14.850,359.1 +3.6,1.00,13.900,4.3 +3.0,1.00,13.050,9.8 +2.6,1.00,13.280,14.7 +2.5,1.00,12.630,17.7 +2.8,1.00,10.950,15.2 +3.3,1.00,9.640,11.3 +4.0,1.00,9.490,7.7 +5.3,1.00,9.030,9.2 +6.4,1.00,8.510,8.4 +7.1,1.00,8.560,8.3 +7.7,1.00,7.990,14.4 +8.0,1.00,7.720,14.3 +8.0,1.00,7.890,17.8 +7.5,1.00,8.060,23.1 +7.4,1.00,8.200,28.0 +7.3,1.00,7.950,28.6 +7.6,1.00,7.460,33.0 +7.9,1.00,7.040,30.1 +8.1,1.00,7.320,31.6 +7.4,1.00,7.800,25.1 +7.4,1.00,7.990,24.6 +7.5,1.00,8.310,23.7 +7.4,1.00,8.020,25.9 +7.5,1.00,7.840,27.2 +7.7,1.00,7.390,32.6 +8.2,1.00,6.990,38.8 +8.7,1.00,6.340,34.0 +8.4,1.00,6.900,29.4 +8.4,1.00,5.960,25.2 +8.5,1.00,5.640,25.3 +8.5,1.00,6.150,21.7 +9.1,1.00,4.800,8.3 +9.7,1.00,5.190,4.4 +10.2,1.00,6.150,6.6 +10.2,1.00,6.830,11.1 +10.3,1.00,7.790,13.5 +10.5,1.00,8.220,16.9 +10.8,1.00,8.320,21.3 +10.7,1.01,9.390,20.4 +10.1,1.01,10.610,21.8 +9.7,1.01,11.290,25.5 +9.3,1.01,11.150,30.4 +9.2,1.01,11.140,33.0 +8.6,1.01,11.160,31.1 +8.3,1.01,11.130,35.6 +8.1,1.01,11.400,34.6 +7.8,1.01,10.970,35.2 +7.2,1.01,12.120,35.2 +7.1,1.01,11.120,35.6 +6.9,1.01,10.840,38.6 +7.0,1.01,10.330,39.3 +6.4,1.01,10.220,38.4 +7.3,1.01,9.830,41.1 +6.7,1.01,8.770,30.9 +7.3,1.01,7.940,26.2 +8.7,1.01,7.200,27.3 +9.9,1.01,6.570,25.8 +10.7,1.00,6.260,28.8 +11.3,1.00,5.660,33.7 +11.7,1.00,6.180,32.5 +11.9,1.00,6.390,35.3 +11.3,1.00,7.420,31.4 +10.8,1.00,7.530,33.5 +11.2,1.00,6.870,44.9 +11.8,1.00,6.830,68.5 +12.2,1.00,6.760,80.5 +12.4,1.00,6.710,89.4 +12.7,1.00,6.010,90.8 +13.1,1.00,5.740,102.7 +13.8,1.00,6.190,116.1 +13.9,1.00,5.620,106.3 +14.5,1.00,6.150,124.0 +14.7,1.00,5.950,115.6 +15.1,1.00,5.990,122.2 +15.4,1.00,6.810,119.2 +15.8,1.00,6.810,119.1 +16.0,1.00,7.190,111.9 +16.5,0.99,7.740,114.4 +17.2,0.99,8.120,126.4 +17.8,0.99,9.330,130.3 +18.0,0.99,9.590,131.3 +18.5,0.99,10.330,140.3 +18.8,0.99,12.400,145.6 +19.0,0.99,11.100,147.7 +19.7,0.99,10.980,155.5 +19.7,0.99,12.650,174.4 +19.8,0.99,12.370,178.7 +20.2,0.99,11.680,187.7 +20.6,0.99,11.440,203.1 +19.0,0.99,9.790,249.4 +17.5,0.99,8.560,263.6 +16.5,0.99,8.320,273.6 +16.2,0.99,7.400,273.3 +15.8,0.99,6.800,295.5 +15.0,0.99,5.340,302.6 +15.0,0.99,5.120,293.3 +15.3,0.99,6.040,285.3 +14.6,0.99,5.370,280.6 +13.9,0.99,6.390,287.5 +13.0,0.99,6.450,307.9 +13.1,0.99,7.570,319.1 +13.3,0.99,8.300,317.7 +13.3,0.99,7.670,319.4 +14.0,0.99,10.480,320.2 +13.7,0.99,12.850,326.9 +11.1,0.99,15.870,330.9 +10.2,0.99,15.480,339.4 +10.6,0.99,15.200,340.0 +10.4,0.99,15.100,344.9 +9.1,1.00,14.740,339.8 +7.9,1.00,15.880,345.8 +6.5,1.00,17.850,352.4 +6.3,1.00,14.060,356.3 +5.8,1.00,13.470,356.4 +5.2,1.00,15.170,1.4 +4.5,1.00,13.650,4.8 +4.2,1.00,13.350,6.8 +4.0,1.00,13.080,6.7 +3.9,1.00,12.410,6.0 +3.8,1.00,11.750,6.6 +3.8,1.00,11.270,7.5 +3.7,1.00,10.570,7.9 +3.7,1.00,9.850,8.6 +3.9,1.00,8.820,7.8 +4.3,1.00,7.140,5.7 +4.7,1.00,6.440,352.4 +5.4,1.00,5.990,346.9 +6.8,1.00,5.580,344.3 +8.1,1.00,6.150,343.0 +9.0,1.00,6.550,339.6 +9.7,1.00,6.510,339.4 +10.2,1.00,6.140,342.4 +10.5,1.00,6.070,344.7 +10.4,1.00,5.340,347.7 +10.3,1.00,5.050,350.3 +10.1,1.00,4.070,356.0 +10.2,1.00,3.880,358.5 +10.2,1.00,3.570,359.1 +10.2,1.00,3.230,0.3 +9.6,1.00,2.850,354.0 +9.2,1.00,2.480,354.3 +9.0,1.00,2.340,343.0 +9.0,1.00,2.200,346.5 +9.1,1.00,1.920,349.4 +9.1,1.00,1.930,348.2 +9.1,1.00,2.000,352.3 +9.1,1.00,1.570,11.1 +9.2,1.00,1.430,14.7 +9.5,1.00,0.910,11.5 +9.8,1.00,1.120,1.5 +10.3,1.00,0.620,19.7 +11.3,1.00,0.270,339.6 +11.8,1.00,0.620,232.1 +12.3,1.00,0.850,190.4 +12.6,1.00,1.050,195.5 +12.9,1.00,1.660,186.3 +13.1,1.00,2.200,183.4 +13.1,1.00,2.360,185.9 +13.1,1.00,2.540,185.3 +13.1,1.00,2.390,194.4 +13.2,1.00,2.350,191.4 +13.2,1.00,2.370,193.8 +13.3,1.00,2.420,192.0 +13.4,1.00,2.450,179.4 +13.0,1.00,1.230,233.7 +12.7,1.00,1.780,257.7 +12.7,1.00,2.770,269.1 +12.3,1.00,3.710,274.3 +11.8,1.00,4.070,276.2 +12.0,1.00,3.670,283.8 +12.2,1.00,2.930,296.1 +12.3,1.00,2.680,304.5 +12.9,1.00,2.890,305.6 +13.3,1.00,2.870,311.6 +13.5,1.00,1.820,296.9 +13.5,1.00,1.370,316.3 +14.2,1.00,1.160,298.6 +14.6,1.00,0.820,5.2 +15.0,1.00,0.250,321.4 +15.3,1.00,0.160,240.4 +15.4,1.00,0.330,332.4 +15.3,1.00,0.360,81.2 +15.4,1.00,0.300,259.4 +15.1,1.00,0.550,154.1 +15.0,1.00,1.010,163.4 +14.7,1.00,1.500,189.7 +14.7,1.00,1.530,204.6 +14.6,1.00,1.350,201.0 +14.5,1.00,1.810,197.2 +14.5,1.00,1.620,205.3 +14.4,1.00,1.430,207.0 +14.1,1.00,0.890,186.3 +13.8,1.00,0.500,149.0 +13.7,1.00,0.030,318.2 +13.8,1.00,0.800,90.1 +14.0,1.00,1.360,95.9 +14.3,1.00,2.170,97.4 +14.6,1.00,2.770,91.1 +14.9,1.00,3.290,91.2 +15.2,1.00,3.520,96.7 +15.8,1.00,4.220,122.0 +16.0,1.00,4.850,125.5 +16.2,1.00,5.590,127.0 +16.3,1.00,6.530,134.2 +16.5,1.00,7.910,140.5 +16.5,1.00,8.040,141.8 +16.7,1.00,8.430,145.7 +16.9,1.00,8.990,144.3 +17.2,1.00,9.520,149.6 +17.5,1.00,10.750,151.0 +17.7,1.00,10.760,157.3 +17.8,1.00,10.090,160.8 +18.0,1.00,9.470,160.1 +18.3,0.99,10.290,160.8 +18.4,0.99,9.880,161.1 +18.8,0.99,10.240,162.6 +19.2,0.99,10.400,166.8 +19.3,0.99,10.020,162.7 +19.2,0.99,11.130,160.8 +19.7,0.99,10.950,163.1 +19.7,0.99,10.610,162.2 +19.9,0.99,10.820,160.2 +19.9,0.99,11.090,159.2 +20.2,0.99,11.000,162.0 +20.3,0.99,11.190,161.7 +19.9,0.99,10.950,160.3 +20.0,0.99,11.520,161.3 +20.3,0.99,12.240,163.3 +20.3,0.99,14.030,165.8 +20.3,0.99,14.010,166.3 +20.2,0.99,13.110,164.1 +20.2,0.99,13.070,164.4 +20.1,0.99,13.380,164.7 +20.1,0.99,13.040,165.9 +20.2,0.99,13.620,164.3 +20.1,0.99,12.640,162.3 +20.2,0.99,12.300,164.6 +19.9,0.99,10.620,163.5 +19.8,0.99,9.060,167.6 +20.1,0.99,8.790,169.9 +20.2,0.99,9.910,166.5 +20.4,0.99,10.780,170.8 +20.4,0.99,11.400,169.0 +20.5,0.99,11.380,169.1 +20.9,0.99,12.410,161.4 +21.1,0.99,11.900,158.1 +21.2,0.99,11.060,154.9 +21.1,0.99,11.120,154.2 +21.3,0.99,10.200,153.4 +21.3,0.99,12.380,143.5 +20.4,0.99,12.490,140.3 +20.5,0.99,13.110,144.2 +20.8,0.99,13.070,145.9 +20.5,0.99,12.470,150.4 +20.4,0.99,11.910,151.1 +20.9,0.99,11.610,151.8 +21.0,0.98,13.170,149.4 +20.8,0.98,12.480,151.9 +20.7,0.98,13.900,154.2 +20.2,0.98,12.350,154.0 +20.2,0.98,12.920,156.0 +20.5,0.98,13.490,158.7 +21.2,0.98,14.470,161.5 +21.1,0.98,14.610,162.3 +21.1,0.98,14.210,166.7 +21.1,0.98,13.070,176.8 +21.0,0.98,11.550,175.7 +21.0,0.98,12.020,172.7 +21.0,0.98,11.630,183.0 +21.6,0.98,12.900,185.8 +21.5,0.98,13.150,188.7 +21.6,0.98,13.290,195.1 +21.6,0.98,13.090,197.5 +21.5,0.98,11.940,205.5 +21.8,0.98,13.300,209.1 +21.6,0.98,13.350,220.1 +21.5,0.98,13.070,218.5 +20.5,0.98,8.330,252.9 +19.0,0.98,6.660,335.1 +18.3,0.98,5.880,340.2 +17.8,0.98,5.950,349.5 +18.0,0.98,6.430,355.9 +18.1,0.98,4.740,10.3 +17.5,0.99,4.130,19.6 +17.7,0.99,3.740,15.1 +17.4,0.99,3.610,27.6 +17.1,0.99,4.020,16.4 +16.6,0.99,3.820,27.6 +16.6,0.99,3.670,28.9 +16.0,0.99,5.070,12.9 +15.9,0.99,5.310,8.3 +15.6,0.99,3.820,6.6 +14.9,0.99,7.090,347.8 +14.9,0.99,7.480,345.2 +13.6,0.99,8.870,336.3 +13.7,0.99,9.730,341.9 +13.0,0.99,11.240,338.4 +12.3,0.99,11.640,338.6 +11.9,0.99,11.620,342.4 +12.4,0.99,9.960,348.9 +12.7,1.00,11.410,349.2 +11.7,1.00,11.460,353.4 +10.0,1.00,12.920,351.4 +9.0,1.00,13.090,350.9 +7.9,1.00,13.740,353.9 +7.0,1.00,13.700,358.1 +6.3,1.00,14.180,1.7 +5.3,1.00,14.050,3.0 +4.8,1.00,13.500,7.1 +4.5,1.00,13.650,8.7 +4.2,1.00,13.510,11.1 +3.9,1.00,13.360,15.2 +3.6,1.00,13.070,18.5 +3.4,1.00,12.850,17.6 +3.3,1.00,12.500,18.9 +3.3,1.00,11.630,18.7 +3.6,1.00,10.020,17.6 +4.3,1.00,9.110,11.5 +5.0,1.01,9.000,2.9 +6.5,1.01,8.720,359.9 +7.9,1.01,8.430,0.7 +8.8,1.01,9.060,1.3 +9.4,1.01,9.440,2.9 +9.3,1.01,9.600,2.6 +9.1,1.01,10.660,7.5 +8.3,1.01,10.180,10.2 +8.0,1.01,10.140,16.1 +7.8,1.01,10.500,23.4 +7.7,1.01,10.320,25.9 +7.5,1.01,10.430,28.7 +7.4,1.01,9.890,33.6 +7.2,1.01,9.490,34.7 +7.1,1.01,9.370,33.8 +6.9,1.01,9.300,35.9 +6.9,1.01,8.980,37.9 +7.1,1.01,8.460,42.5 +7.2,1.01,8.970,44.6 +7.2,1.01,8.890,45.7 +7.4,1.01,9.000,47.5 +7.5,1.01,8.940,48.1 +7.7,1.01,8.790,47.8 +7.8,1.01,8.560,48.1 +7.9,1.01,8.320,50.1 +8.7,1.01,7.290,49.6 +9.3,1.01,6.630,55.5 +9.7,1.01,6.030,61.8 +10.2,1.00,5.920,64.2 +10.7,1.00,6.040,67.5 +11.1,1.00,6.340,74.2 +11.2,1.00,6.720,80.4 +11.5,1.00,6.900,87.2 +11.8,1.00,6.940,92.2 +12.0,1.00,7.120,97.9 +12.2,1.00,7.210,99.8 +12.3,1.00,7.060,100.9 +12.4,1.00,7.120,103.0 +12.6,1.00,6.690,102.7 +12.8,1.00,6.160,101.6 +12.8,1.00,6.100,97.9 +12.9,1.00,6.020,92.4 +13.0,1.00,6.170,90.6 +13.0,1.00,6.550,83.2 +13.0,1.00,6.920,81.3 +12.9,1.00,7.100,82.7 +12.9,1.00,6.950,82.8 +12.9,1.00,6.270,87.2 +12.9,1.00,7.210,72.4 +12.8,1.00,7.180,73.6 +12.7,1.00,6.620,73.8 +12.7,1.00,6.960,74.0 +12.8,1.00,7.100,78.9 +13.2,1.00,6.470,77.7 +13.5,1.00,7.150,74.5 +13.4,1.00,6.880,66.8 +13.5,1.00,6.830,59.5 +13.6,1.00,6.270,50.5 +13.3,1.00,6.890,45.9 +13.0,1.00,6.780,42.4 +12.8,1.00,6.810,45.7 +12.5,1.00,6.240,35.7 +11.8,1.00,7.780,34.7 +11.3,1.00,7.330,40.5 +11.3,1.00,7.210,46.6 +11.7,1.00,7.440,52.7 +11.9,1.00,7.780,51.1 +11.5,1.00,8.110,44.8 +11.3,1.00,7.540,45.1 +10.5,1.00,7.990,38.5 +10.5,1.00,7.790,45.6 +10.5,1.00,7.400,45.4 +10.7,1.00,6.890,44.4 +11.7,1.00,6.410,48.1 +12.3,1.00,6.520,54.3 +12.6,1.00,6.070,65.1 +12.9,1.00,5.230,77.0 +13.3,1.00,4.260,66.0 +13.5,1.00,4.080,55.4 +13.5,1.00,4.360,44.9 +13.4,1.00,5.150,34.0 +13.0,1.00,6.310,31.7 +12.9,1.00,6.860,37.1 +12.9,1.00,7.010,45.9 +13.0,1.00,6.400,48.5 +12.9,1.00,6.760,49.7 +12.7,1.00,6.900,47.4 +12.4,1.00,7.050,47.1 +12.3,1.00,7.460,51.7 +12.1,1.00,8.260,48.3 +11.9,1.00,8.730,49.0 +11.7,1.00,8.560,48.0 +11.6,1.00,8.630,49.3 +11.4,1.00,9.120,47.6 +11.3,1.00,7.870,51.3 +11.2,1.00,7.580,42.8 +11.0,1.00,7.390,39.8 +11.5,1.00,6.650,42.2 +11.9,1.00,6.510,42.5 +12.4,1.00,6.580,43.7 +12.9,1.00,6.550,40.9 +13.2,1.00,6.760,41.9 +13.8,1.00,6.910,42.2 +13.6,1.00,7.480,33.6 +13.3,1.00,8.250,34.9 +12.7,1.00,8.210,29.2 +12.5,1.00,8.430,40.9 +12.4,1.00,8.230,43.7 +12.2,1.00,8.200,46.3 +12.0,1.00,8.670,49.8 +11.8,1.00,8.490,44.8 +11.6,1.00,7.950,42.5 +11.4,1.00,7.650,41.1 +11.5,1.00,7.110,49.0 +11.8,1.00,6.410,55.0 +11.8,1.00,5.660,50.2 +11.8,1.00,5.660,44.2 +10.6,1.00,5.660,25.3 +10.4,1.00,5.210,26.7 +10.6,1.00,5.290,22.2 +10.6,1.00,4.830,17.2 +11.1,1.00,3.680,9.3 +11.8,1.00,2.720,12.3 +12.2,0.99,1.690,11.5 +12.5,0.99,1.280,325.3 +12.7,0.99,1.610,290.2 +12.9,0.99,1.620,302.8 +13.1,0.99,1.900,288.0 +13.2,0.99,1.890,293.4 +13.1,0.99,2.120,296.7 +12.9,0.99,2.210,301.4 +12.7,0.99,1.910,295.4 +12.7,0.99,2.160,290.6 +12.4,0.99,2.430,283.9 +12.2,0.99,3.160,278.6 +12.2,0.99,3.100,295.2 +12.3,0.99,3.050,277.1 +11.8,0.99,2.230,287.8 +12.0,0.99,1.810,285.2 +12.2,0.99,1.590,281.2 +12.0,0.99,0.830,283.7 +11.9,0.99,0.390,328.9 +12.3,0.99,0.570,344.7 +12.4,0.99,0.460,53.1 +12.5,0.99,1.150,36.0 +13.1,0.99,1.360,61.8 +13.6,0.99,1.480,66.4 +13.9,0.99,1.960,86.3 +14.3,0.99,2.040,107.6 +14.7,0.99,1.690,117.1 +14.8,0.99,1.610,96.9 +14.7,0.99,2.110,116.9 +14.6,0.99,2.250,80.2 +14.5,0.99,3.460,58.1 +14.5,1.00,2.660,55.2 +14.5,1.00,2.450,49.0 +15.1,1.00,2.550,62.6 +11.1,1.00,9.760,352.9 +10.2,1.00,9.800,352.1 +9.3,1.00,10.310,349.7 +8.6,1.00,9.870,350.4 +8.3,1.00,9.980,353.3 +8.0,1.00,9.750,355.3 +7.6,1.00,9.440,355.5 +7.2,1.00,9.410,351.5 +7.0,1.00,8.980,351.6 +6.8,1.00,8.010,343.1 +6.8,1.00,8.450,346.7 +6.9,1.00,8.350,344.6 +7.3,1.00,7.990,347.3 +7.8,1.00,7.980,346.8 +8.3,1.00,7.860,346.5 +8.7,1.00,7.420,349.0 +8.9,1.00,7.270,348.7 +8.9,1.00,7.110,357.2 +8.5,1.00,7.940,2.6 +8.2,1.00,8.340,7.6 +7.9,1.00,8.030,6.9 +7.7,1.00,8.300,8.6 +7.4,1.00,8.350,10.5 +7.1,1.00,8.670,11.1 +6.8,1.00,9.270,14.4 +6.7,1.00,8.900,18.5 +6.7,1.00,8.920,20.9 +6.7,1.00,9.000,23.3 +6.6,1.00,8.630,24.4 +6.6,1.00,8.370,28.2 +6.8,1.00,8.240,30.1 +6.7,1.00,8.170,31.5 +6.8,1.00,7.850,31.3 +6.8,1.00,7.050,30.7 +6.9,1.00,6.080,30.6 +7.1,1.00,5.430,26.3 +7.7,1.00,4.940,25.2 +8.3,1.00,4.470,23.2 +8.8,1.00,4.090,22.7 +9.3,1.00,3.810,24.5 +9.8,1.00,3.450,35.2 +19.8,0.99,10.300,165.8 +20.2,0.99,12.230,165.8 +20.2,0.99,12.520,168.2 +20.2,0.99,13.070,168.6 +20.1,0.99,12.700,172.2 +20.2,0.99,13.250,176.8 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m_120m.srw b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m_120m.srw new file mode 100644 index 000000000..95a937763 --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m_120m.srw @@ -0,0 +1,8765 @@ +1379078,city??,state??,country??,2013,29.2054595947,-94.593170166,Not Available,1,8760 +WIND Toolkit data from NREL downloaded on 2025-8-5 +Temperature,Pressure,Speed,Direction,Temperature,Pressure,Speed,Direction +C,atm,m/s,Degrees,C,atm,m/s,Degrees +100,100,100,100,120,120,120,120 +20.1,0.99,12.400,179.6,20.1,0.99,13.230,180.2 +20.3,0.99,13.320,183.3,20.3,0.99,14.120,183.7 +20.2,0.99,13.250,187.3,20.3,0.99,14.080,187.5 +20.2,0.99,13.070,188.0,20.3,0.99,13.980,188.3 +20.2,0.99,13.430,187.3,20.3,0.99,14.280,187.8 +20.1,0.99,12.300,192.0,20.2,0.99,13.200,192.4 +20.4,0.99,11.630,184.2,20.4,0.99,12.410,184.8 +19.7,0.99,9.180,182.4,19.7,0.99,10.380,182.5 +14.9,0.99,11.510,347.4,14.9,0.99,11.920,346.3 +13.5,0.99,12.420,355.4,13.3,0.99,12.420,355.3 +12.8,0.99,13.690,5.8,12.6,0.99,13.740,5.9 +12.6,0.99,13.340,4.3,12.4,0.99,13.410,4.4 +12.3,0.99,13.450,5.3,12.1,0.99,13.520,5.4 +12.0,0.99,12.340,7.2,11.8,0.99,12.400,7.3 +12.0,0.99,11.260,13.8,11.8,0.99,11.310,14.0 +11.8,0.99,11.140,3.8,11.6,0.99,11.190,4.0 +11.5,0.99,10.530,5.2,11.3,0.99,10.570,5.4 +11.2,0.99,10.440,8.8,11.0,0.99,10.470,9.0 +11.0,0.99,10.190,9.9,10.8,0.99,10.220,10.0 +10.9,0.99,10.460,6.5,10.7,0.99,10.490,6.6 +10.6,1.00,11.700,10.2,10.4,1.00,11.750,10.3 +10.9,1.00,12.160,16.9,10.7,1.00,12.240,17.0 +11.0,1.00,11.520,15.1,10.8,1.00,11.600,15.1 +10.3,1.00,11.260,12.3,10.1,1.00,11.310,12.4 +9.9,1.00,10.940,16.5,9.7,1.00,10.980,16.6 +9.5,1.00,10.710,18.8,9.3,1.00,10.750,19.0 +9.2,1.00,11.690,18.1,9.0,1.00,11.730,18.3 +8.9,1.00,12.000,16.6,8.8,1.00,12.040,16.8 +8.6,1.00,12.500,13.3,8.4,1.00,12.540,13.5 +8.3,1.00,11.590,12.0,8.1,1.00,11.630,12.1 +8.1,1.00,11.120,15.2,7.9,1.00,11.150,15.4 +7.7,1.00,10.700,13.0,7.5,1.00,10.730,13.1 +7.4,1.00,10.330,11.3,7.2,1.00,10.350,11.4 +7.1,1.00,9.890,8.3,7.0,1.00,9.900,8.5 +7.1,1.00,9.320,9.8,6.9,1.00,9.330,10.0 +7.2,1.00,8.860,7.1,7.0,1.00,8.870,7.3 +7.6,1.00,7.670,7.5,7.4,1.00,7.690,7.5 +8.1,1.00,7.640,3.9,7.9,1.00,7.660,4.0 +8.6,1.00,7.240,1.6,8.4,1.00,7.260,1.8 +8.8,1.00,7.160,2.8,8.7,1.00,7.160,3.0 +8.9,1.00,7.440,4.9,8.7,1.00,7.460,4.8 +8.7,1.00,7.970,4.2,8.5,1.00,7.990,4.2 +8.6,1.00,7.950,9.0,8.4,1.00,7.970,9.1 +8.3,1.00,8.100,11.8,8.1,1.00,8.120,11.8 +8.0,1.00,8.420,13.8,7.8,1.00,8.430,14.0 +7.8,1.00,8.170,16.7,7.6,1.00,8.180,16.8 +7.7,1.00,8.980,17.7,7.5,1.00,8.990,17.8 +7.5,1.00,9.050,19.6,7.3,1.00,9.070,19.6 +7.2,1.00,10.100,18.8,7.0,1.00,10.120,19.0 +7.0,1.00,9.970,20.4,6.8,1.00,10.000,20.6 +6.9,1.00,10.660,20.9,6.7,1.00,10.680,21.1 +6.7,1.00,11.040,20.9,6.5,1.00,11.060,21.0 +6.6,1.00,11.320,22.1,6.4,1.00,11.350,22.3 +6.5,1.00,11.490,22.6,6.3,1.00,11.520,22.8 +6.3,1.00,11.640,22.3,6.1,1.00,11.670,22.5 +6.0,1.00,11.570,22.7,5.8,1.00,11.600,22.9 +5.8,1.00,11.880,23.4,5.6,1.00,11.900,23.6 +5.8,1.00,11.460,26.0,5.6,1.00,11.490,26.2 +5.8,1.00,10.810,25.4,5.6,1.00,10.830,25.6 +5.9,1.00,9.800,24.5,5.7,1.00,9.820,24.8 +6.3,1.00,8.720,21.2,6.1,1.00,8.760,21.4 +7.7,1.00,8.580,20.2,7.5,1.00,8.620,20.3 +9.1,1.00,7.870,20.9,8.9,1.00,7.900,20.9 +10.0,1.00,7.710,17.1,9.8,1.00,7.750,17.3 +10.3,1.00,8.500,14.5,10.2,1.00,8.520,14.7 +10.4,1.00,8.650,12.5,10.2,1.00,8.680,12.7 +10.3,1.00,9.640,16.3,10.1,1.00,9.670,16.4 +9.9,1.00,9.420,18.3,9.7,1.00,9.450,18.6 +9.7,1.00,10.270,22.3,9.5,1.00,10.300,22.5 +9.6,1.00,10.230,27.6,9.4,1.00,10.260,27.8 +9.4,1.00,11.060,32.4,9.2,1.00,11.100,32.5 +9.3,1.00,11.230,38.2,9.2,1.00,11.270,38.4 +9.4,1.00,11.320,41.2,9.2,1.00,11.360,41.5 +9.5,1.00,10.200,46.3,9.3,1.00,10.230,46.6 +9.6,1.00,10.930,48.5,9.4,1.00,10.970,48.6 +9.5,1.00,10.780,45.1,9.3,1.00,10.820,45.2 +9.4,1.00,10.810,47.7,9.2,1.00,10.850,47.8 +9.3,1.00,10.810,47.8,9.1,1.00,10.840,48.0 +9.2,1.00,10.890,40.1,9.0,1.00,10.920,40.2 +8.4,1.00,10.210,27.3,8.2,1.00,10.210,27.8 +7.9,1.00,10.510,28.2,7.7,1.00,10.520,28.4 +7.8,1.00,10.750,32.9,7.6,1.00,10.770,33.1 +7.9,1.00,10.750,35.3,7.7,1.00,10.780,35.6 +7.9,1.00,10.900,32.8,7.7,1.00,10.930,33.1 +7.8,1.00,10.460,34.8,7.6,1.00,10.480,35.0 +8.4,1.00,10.080,43.0,8.3,1.00,10.110,43.1 +9.0,1.00,10.260,45.0,8.8,1.00,10.290,45.2 +9.0,1.00,9.510,38.7,8.8,1.00,9.530,39.1 +9.1,1.00,9.310,42.1,8.9,1.00,9.330,42.3 +9.6,1.00,9.560,43.9,9.4,1.00,9.580,44.1 +9.9,1.00,9.050,42.1,9.7,1.00,9.070,42.4 +9.9,1.00,8.330,41.3,9.7,1.00,8.340,41.6 +10.3,1.00,8.660,51.9,10.2,1.00,8.690,51.9 +10.0,1.00,7.520,42.1,9.8,1.00,7.540,43.0 +10.4,1.00,7.740,54.3,10.2,1.00,7.770,54.9 +10.5,1.00,7.920,63.5,10.3,1.00,7.950,64.0 +10.6,1.00,7.310,76.4,10.4,1.00,7.290,76.2 +10.3,1.00,7.190,63.9,10.2,1.00,7.210,63.9 +10.6,1.00,5.760,63.4,10.4,1.00,5.780,63.9 +10.3,1.00,5.550,67.3,10.1,1.00,5.540,67.0 +8.8,1.00,8.420,25.4,8.7,1.00,8.320,26.6 +8.9,1.00,8.650,33.3,8.7,1.00,8.630,33.6 +8.6,1.00,8.730,20.1,8.4,1.00,8.700,20.6 +8.4,1.00,8.630,21.1,8.2,1.00,8.600,21.5 +8.3,1.00,9.080,16.4,8.1,1.00,9.040,16.7 +8.2,1.00,9.400,23.7,8.0,1.00,9.370,23.9 +8.2,1.00,8.550,16.2,8.1,1.00,8.540,16.4 +8.1,1.00,9.200,16.5,7.9,1.00,9.200,16.7 +8.3,1.00,9.580,19.1,8.1,1.00,9.580,19.3 +8.8,1.00,9.100,23.7,8.6,1.00,9.090,23.8 +8.8,1.00,9.060,27.1,8.6,1.00,9.050,27.3 +9.0,1.00,8.780,17.7,8.8,1.00,8.770,17.9 +8.7,1.00,7.780,16.9,8.5,1.00,7.750,17.3 +8.4,1.00,9.270,24.5,8.3,1.00,9.250,24.9 +8.5,1.00,8.270,17.9,8.3,1.00,8.260,18.1 +8.4,1.00,6.050,359.2,8.3,1.00,6.030,359.4 +8.4,1.00,7.950,19.7,8.2,1.00,7.920,19.9 +8.6,1.00,7.500,18.7,8.4,1.00,7.490,18.9 +8.9,1.00,6.410,24.4,8.7,1.00,6.390,24.8 +8.8,1.00,8.120,26.0,8.6,1.00,8.080,26.4 +8.5,1.00,8.380,10.7,8.3,1.00,8.340,10.9 +8.2,1.00,8.370,5.6,8.0,1.00,8.350,5.9 +8.4,1.00,8.260,6.2,8.2,1.00,8.250,6.5 +8.1,1.00,9.280,8.7,7.9,1.00,9.280,8.9 +8.0,1.00,9.850,6.8,7.8,1.00,9.850,7.0 +7.8,1.00,9.970,11.4,7.6,1.00,9.980,11.7 +7.4,1.00,10.400,10.9,7.3,1.00,10.410,11.1 +7.1,1.00,10.760,14.4,6.9,1.00,10.780,14.5 +6.7,1.00,10.820,14.4,6.5,1.00,10.830,14.7 +5.1,1.00,10.370,9.3,4.9,1.00,10.370,9.5 +5.1,1.00,9.930,9.1,5.0,1.00,9.930,9.4 +5.2,1.00,9.360,5.7,5.0,1.00,9.370,5.4 +5.4,1.00,8.430,0.9,5.3,1.00,8.400,1.3 +7.5,1.00,9.860,5.5,7.3,1.00,9.890,5.3 +8.5,1.00,8.860,7.9,8.3,1.00,8.880,7.9 +9.2,1.00,8.670,8.8,9.0,1.00,8.690,8.8 +9.8,1.00,9.110,7.2,9.6,1.00,9.130,7.3 +10.2,1.00,9.020,9.3,10.1,1.00,9.050,9.5 +10.0,1.00,10.050,14.3,9.8,1.00,10.080,14.4 +9.6,1.00,10.260,14.3,9.4,1.00,10.290,14.4 +9.3,1.00,10.340,18.4,9.1,1.00,10.360,18.6 +9.0,1.00,10.320,25.0,8.8,1.00,10.330,25.1 +8.9,1.00,10.090,28.9,8.7,1.00,10.110,29.2 +9.0,1.00,10.050,35.0,8.8,1.00,10.080,35.3 +9.3,1.00,9.710,42.3,9.2,1.00,9.730,42.6 +9.5,1.00,9.030,49.4,9.3,1.00,9.070,49.9 +10.2,1.00,10.580,58.4,10.0,1.00,10.630,58.5 +10.3,1.00,10.480,63.6,10.1,1.00,10.530,63.8 +10.6,1.00,11.010,69.0,10.4,1.00,11.060,69.2 +10.5,1.00,10.960,70.7,10.3,1.00,11.010,70.9 +10.4,1.00,10.510,66.5,10.2,1.00,10.530,66.7 +10.2,1.00,10.470,65.2,10.0,1.00,10.490,65.4 +10.0,1.00,10.480,63.1,9.8,1.00,10.500,63.3 +9.6,1.00,10.570,58.3,9.4,1.00,10.600,58.9 +9.1,1.00,9.680,55.4,9.0,1.00,9.690,55.9 +9.3,1.00,8.630,54.8,9.1,1.00,8.650,55.4 +9.9,1.00,8.100,63.3,9.7,1.00,8.110,63.5 +10.2,1.00,8.100,63.4,10.0,1.00,8.110,63.6 +10.4,1.00,7.670,63.1,10.2,1.00,7.680,63.3 +10.7,1.00,7.490,64.7,10.5,1.00,7.500,64.9 +11.1,1.00,7.280,64.8,10.9,1.00,7.290,64.8 +11.4,1.00,7.700,68.3,11.2,1.00,7.720,68.4 +12.0,1.00,8.360,72.0,11.8,1.00,8.390,72.1 +12.3,1.00,8.500,78.3,12.1,1.00,8.530,78.4 +12.6,1.00,9.230,79.5,12.4,1.00,9.270,79.7 +12.9,1.00,10.100,80.4,12.8,1.00,10.130,80.7 +13.8,0.99,9.750,89.4,13.6,0.99,9.850,89.7 +13.9,0.99,8.800,92.7,13.8,0.99,8.890,92.9 +14.3,0.99,9.170,87.8,14.1,0.99,9.330,88.1 +14.6,0.99,9.270,93.0,14.4,0.99,9.470,93.6 +14.8,0.99,9.610,95.4,14.6,0.99,9.830,96.2 +14.9,0.99,10.320,91.4,14.8,0.99,10.580,92.4 +15.1,0.99,10.850,93.0,15.0,0.99,11.210,93.7 +15.3,0.99,12.180,93.5,15.2,0.99,12.560,94.4 +15.6,0.99,12.170,95.1,15.5,0.99,12.620,96.1 +16.0,0.99,13.600,101.2,15.8,0.99,14.080,101.8 +16.1,0.99,12.570,102.2,16.0,0.99,13.090,103.0 +16.6,0.99,14.850,109.3,16.6,0.99,15.440,110.1 +17.1,0.99,13.870,114.9,17.1,0.99,14.660,115.1 +18.4,0.99,14.280,143.8,18.8,0.99,14.990,145.9 +18.3,0.99,12.680,137.3,18.4,0.99,13.500,139.3 +19.1,0.99,13.120,131.4,19.3,0.99,13.940,132.5 +18.8,0.99,12.830,122.0,18.9,0.99,13.920,124.2 +18.9,0.99,12.560,127.9,19.2,0.99,13.740,131.2 +19.4,0.99,12.770,138.3,19.7,0.99,13.690,140.6 +19.8,0.99,12.990,145.0,20.1,0.99,14.110,149.8 +19.9,0.99,13.650,145.4,20.1,0.99,14.570,147.8 +20.0,0.99,11.300,146.6,20.1,0.99,12.140,151.7 +18.9,0.99,10.380,159.1,18.6,0.99,11.300,163.4 +19.2,0.99,10.740,180.4,19.2,0.99,11.650,178.2 +19.7,0.99,10.250,169.6,19.7,0.99,10.600,169.3 +19.6,0.99,9.350,174.8,19.6,0.99,9.720,173.9 +19.7,0.99,9.890,172.9,19.7,0.99,10.290,170.5 +20.3,0.99,12.640,179.8,20.9,0.99,14.390,174.4 +20.7,0.99,10.590,160.7,20.8,0.99,10.960,159.6 +20.5,0.99,11.900,148.7,20.4,0.99,12.930,148.2 +19.9,0.99,12.820,141.8,20.3,0.99,13.940,143.8 +18.6,0.99,16.940,152.3,18.6,0.99,17.960,153.3 +18.8,0.99,14.120,152.1,18.9,0.99,14.900,152.6 +18.3,0.99,12.400,148.5,18.4,0.99,13.110,149.9 +20.1,0.99,12.330,127.4,20.6,0.99,12.610,129.9 +19.3,0.99,14.270,114.7,19.9,0.99,15.080,115.8 +18.8,0.99,15.400,110.6,19.4,0.99,16.150,114.2 +18.7,0.99,11.950,109.0,19.2,0.99,12.990,113.4 +18.3,0.99,3.890,125.4,18.4,0.99,4.470,128.7 +18.7,0.99,9.440,99.9,19.1,0.99,10.500,107.7 +19.5,0.99,9.850,103.0,19.7,0.99,10.070,106.7 +18.3,0.99,3.250,221.6,18.3,0.99,3.960,220.0 +18.0,0.99,3.010,128.2,18.1,0.99,3.140,139.5 +17.8,0.99,7.710,113.6,17.9,0.99,7.590,117.8 +18.2,0.99,8.010,118.9,18.3,0.99,8.090,123.2 +18.3,0.99,7.500,127.8,18.3,0.99,7.500,131.6 +18.7,0.99,10.150,142.7,18.7,0.99,10.170,146.5 +17.2,0.99,9.620,136.8,17.8,0.99,9.760,153.1 +18.1,0.99,9.630,153.7,18.2,0.99,9.230,164.2 +17.8,0.99,7.540,174.8,17.8,0.99,7.600,177.7 +17.4,0.99,6.260,199.6,17.2,0.99,6.290,200.4 +16.9,0.99,5.370,216.3,16.8,0.99,5.430,217.4 +16.2,0.99,6.670,223.6,16.1,0.99,6.640,224.5 +15.8,0.99,3.100,232.1,16.0,0.99,2.940,233.9 +15.7,0.99,2.620,174.9,15.8,0.99,2.590,182.3 +15.2,0.99,2.780,160.0,15.9,0.99,2.610,171.2 +15.0,0.99,3.990,170.8,14.8,0.99,3.980,172.5 +14.8,0.99,3.240,195.5,15.0,0.99,3.370,201.5 +14.7,0.99,3.820,220.5,15.0,0.99,4.190,223.6 +14.2,0.99,4.650,205.4,14.2,0.99,4.790,207.9 +13.9,0.99,3.850,197.7,14.3,0.99,4.070,202.7 +15.8,0.99,5.430,218.5,15.8,0.99,5.690,218.4 +16.1,0.99,5.110,213.8,16.0,0.99,5.340,214.4 +16.2,0.99,4.910,220.4,16.2,0.99,5.300,218.0 +15.5,0.99,5.400,221.0,15.8,0.99,5.760,218.3 +15.0,0.99,5.930,215.8,15.5,0.99,6.280,213.5 +14.1,0.99,6.180,226.5,15.3,0.99,6.960,224.8 +15.1,0.99,5.590,225.5,14.9,0.99,5.700,225.7 +15.4,0.99,5.960,222.9,15.3,0.99,6.250,222.8 +15.6,0.99,6.870,229.9,15.7,0.99,7.220,229.3 +15.5,0.99,6.150,220.5,15.5,0.99,6.640,222.8 +15.5,0.99,6.070,223.8,15.6,0.99,6.630,226.2 +15.4,0.99,5.780,235.1,15.5,0.99,6.620,236.9 +15.0,0.99,4.570,238.0,15.2,0.99,5.720,240.7 +15.0,0.99,4.020,241.1,15.2,0.99,5.270,244.2 +15.0,0.99,3.490,240.6,15.1,0.99,3.890,242.0 +15.2,0.99,2.750,217.7,15.1,0.99,3.000,221.1 +15.4,0.99,2.910,231.4,15.4,0.99,3.180,232.2 +15.6,0.99,2.440,223.1,15.7,0.99,2.730,224.1 +16.1,0.99,1.730,225.6,16.3,0.99,2.020,225.2 +16.3,0.99,1.420,198.8,16.4,0.99,1.660,201.6 +16.7,0.99,1.320,229.5,16.9,0.99,1.630,226.5 +16.5,0.99,1.530,153.3,16.6,0.99,1.620,163.3 +16.6,0.99,2.800,121.1,16.7,0.99,2.690,126.2 +17.5,0.99,2.390,110.4,17.6,0.99,2.280,117.0 +16.3,0.99,4.570,122.1,16.9,0.99,4.350,127.0 +16.5,0.99,5.520,121.4,16.6,0.99,5.350,124.4 +16.8,0.99,6.180,123.3,16.9,0.99,6.290,126.8 +17.2,0.99,5.230,130.0,17.3,0.99,5.350,133.8 +17.5,0.99,5.890,126.6,17.5,0.99,5.990,130.7 +18.1,0.99,6.180,140.1,18.3,0.99,6.430,144.7 +19.2,0.99,9.210,147.2,19.7,0.99,9.940,152.9 +19.4,0.99,10.720,155.6,19.8,0.99,11.300,162.5 +20.0,0.99,9.760,165.8,20.1,0.99,10.440,169.4 +19.9,0.99,11.430,159.5,19.9,0.99,11.410,157.4 +20.4,0.99,12.470,151.7,20.3,0.99,13.310,153.8 +20.9,0.99,12.320,167.4,21.0,0.99,13.800,171.8 +20.9,0.99,12.650,168.1,20.9,0.99,13.140,168.8 +21.3,0.99,11.460,167.0,21.3,0.99,12.770,169.6 +21.5,0.99,14.760,168.0,21.9,0.99,15.440,169.7 +20.7,0.99,12.290,171.8,20.7,0.99,13.420,174.9 +20.2,0.99,11.210,162.5,20.1,0.99,12.140,167.1 +19.2,0.99,11.740,163.4,19.3,0.99,12.860,167.9 +21.0,0.99,15.430,170.7,21.8,0.99,16.470,172.0 +19.1,0.99,12.450,158.7,20.0,0.99,13.590,162.1 +19.4,0.99,12.120,154.8,20.4,0.99,13.710,160.0 +21.7,0.99,13.570,161.2,22.6,0.99,15.690,166.7 +19.9,0.99,12.270,152.3,21.0,0.99,14.040,158.9 +19.7,0.99,12.850,150.4,20.3,0.99,14.090,156.0 +19.9,0.99,13.790,151.3,19.9,0.99,14.730,153.4 +20.2,0.99,13.440,158.0,21.0,0.99,14.850,161.6 +19.8,0.99,12.220,152.7,20.1,0.99,13.200,155.0 +19.9,0.99,12.260,157.0,20.2,0.99,13.200,159.0 +20.0,0.99,14.050,155.2,20.8,0.99,15.350,158.6 +20.6,0.98,13.820,158.5,21.1,0.98,14.830,160.8 +21.0,0.98,13.020,162.6,21.3,0.98,13.980,164.1 +20.5,0.98,12.470,158.4,20.7,0.98,13.570,159.4 +20.8,0.98,12.410,160.8,21.1,0.98,13.330,163.5 +21.1,0.98,12.570,159.1,21.7,0.98,14.360,162.3 +20.8,0.98,11.650,157.6,21.3,0.98,13.150,161.4 +20.5,0.98,12.130,158.4,20.8,0.98,13.220,160.4 +21.1,0.98,17.520,157.0,21.4,0.98,18.500,159.1 +21.0,0.98,12.150,162.5,21.2,0.98,13.170,163.6 +20.1,0.98,5.360,197.9,19.9,0.98,6.450,192.1 +21.2,0.98,8.200,213.4,20.9,0.98,8.240,211.6 +21.3,0.98,5.920,225.5,21.2,0.98,6.190,224.2 +21.4,0.99,6.860,233.1,21.3,0.99,7.180,232.3 +21.9,0.99,9.050,210.5,21.7,0.99,9.250,210.4 +15.2,0.99,12.410,320.2,15.5,0.99,12.130,319.5 +12.7,0.99,11.920,330.8,12.6,0.99,11.910,330.8 +11.1,0.99,13.230,336.3,10.9,0.99,13.230,336.4 +10.4,0.99,12.770,342.6,10.2,0.99,12.790,342.7 +9.7,0.99,15.090,347.7,9.5,0.99,15.130,347.7 +9.4,0.99,14.280,346.6,9.2,0.99,14.330,346.6 +9.1,0.99,14.910,356.6,8.9,0.99,14.960,356.7 +9.0,0.99,12.430,352.8,8.8,0.99,12.470,353.0 +8.9,0.99,12.420,349.9,8.7,0.99,12.460,350.1 +8.8,0.99,11.580,355.9,8.6,0.99,11.610,356.2 +8.8,0.99,11.790,4.0,8.6,0.99,11.830,4.2 +8.7,0.99,12.860,4.4,8.5,0.99,12.900,4.4 +8.8,0.99,11.990,9.0,8.6,0.99,12.030,9.1 +8.7,0.99,12.570,9.3,8.5,0.99,12.620,9.4 +8.5,0.99,12.550,13.0,8.3,0.99,12.590,13.1 +8.2,0.99,13.060,15.9,8.0,0.99,13.090,16.0 +8.2,0.99,13.070,19.9,8.0,0.99,13.110,20.1 +8.1,0.99,12.610,21.8,7.9,0.99,12.640,21.9 +8.1,0.99,12.170,21.8,7.9,0.99,12.200,22.0 +8.0,0.99,12.550,27.5,7.8,0.99,12.570,27.7 +7.9,0.99,11.030,28.0,7.7,0.99,11.050,28.2 +7.8,0.99,10.750,28.3,7.6,0.99,10.770,28.5 +7.5,0.99,11.200,27.6,7.3,0.99,11.210,27.8 +7.0,0.99,11.340,19.5,6.8,0.99,11.340,19.7 +6.8,0.99,10.040,11.1,6.6,0.99,10.050,11.3 +6.3,0.99,10.070,9.4,6.1,0.99,10.080,9.6 +5.9,0.99,11.430,10.0,5.7,0.99,11.430,10.2 +5.4,0.99,12.700,14.5,5.2,0.99,12.700,14.6 +5.2,1.00,11.710,13.4,5.0,1.00,11.710,13.6 +5.0,1.00,11.560,13.1,4.8,1.00,11.570,13.2 +4.8,1.00,12.140,12.4,4.6,1.00,12.140,12.5 +4.8,1.00,10.830,17.1,4.6,1.00,10.840,17.2 +4.8,1.00,11.090,14.9,4.6,1.00,11.110,15.1 +4.8,0.99,11.630,20.6,4.6,0.99,11.640,20.8 +4.9,0.99,11.560,26.1,4.7,0.99,11.560,26.3 +5.0,1.00,10.040,24.1,4.8,1.00,10.050,24.4 +5.0,0.99,11.290,25.7,4.8,0.99,11.300,26.0 +5.1,0.99,10.610,27.8,4.9,0.99,10.620,28.1 +5.2,0.99,9.150,24.7,5.0,0.99,9.150,25.0 +5.2,0.99,10.110,29.7,5.0,0.99,10.100,30.0 +5.3,0.99,9.250,28.3,5.1,0.99,9.250,28.6 +5.5,0.99,8.990,29.5,5.3,0.99,8.980,29.8 +5.6,0.99,8.890,31.0,5.4,0.99,8.880,31.4 +5.7,0.99,8.610,30.6,5.5,0.99,8.590,31.0 +5.6,0.99,8.260,22.4,5.4,0.99,8.230,22.8 +5.5,0.99,7.880,21.5,5.4,0.99,7.850,21.7 +5.5,0.99,7.320,15.5,5.4,0.99,7.280,15.7 +5.4,0.99,7.850,9.3,5.2,0.99,7.810,9.6 +5.2,0.99,7.970,4.2,5.0,0.99,7.930,4.4 +4.9,0.99,8.580,357.2,4.8,0.99,8.540,357.4 +4.8,0.99,9.030,356.5,4.6,0.99,9.000,356.6 +4.7,0.99,8.990,355.2,4.5,0.99,8.980,355.2 +4.6,0.99,8.850,353.7,4.4,0.99,8.830,353.7 +4.4,0.99,9.950,354.4,4.2,0.99,9.930,354.4 +4.3,0.99,9.440,356.4,4.1,0.99,9.430,356.4 +4.1,0.99,10.110,353.4,3.9,0.99,10.090,353.4 +4.0,0.99,9.470,356.7,3.8,0.99,9.460,356.7 +3.8,0.99,9.780,352.2,3.6,0.99,9.780,352.2 +3.7,0.99,9.660,356.0,3.5,0.99,9.670,356.0 +3.6,0.99,9.870,352.8,3.4,0.99,9.870,352.8 +3.4,0.99,10.240,350.9,3.2,0.99,10.250,350.9 +3.3,0.99,9.700,350.3,3.1,0.99,9.710,350.3 +3.1,0.99,11.760,346.2,2.9,0.99,11.760,346.4 +2.9,0.99,12.690,345.6,2.7,0.99,12.710,345.6 +3.0,1.00,10.010,341.8,2.8,1.00,10.040,341.9 +2.8,0.99,11.740,345.8,2.6,0.99,11.760,346.0 +2.8,0.99,10.960,347.8,2.6,0.99,10.990,347.9 +2.5,1.00,11.710,344.5,2.3,1.00,11.730,344.6 +2.4,1.00,12.080,342.1,2.2,1.00,12.110,342.3 +2.4,1.00,12.590,340.4,2.2,1.00,12.620,340.5 +2.4,1.00,12.790,340.3,2.2,1.00,12.820,340.4 +2.4,1.00,11.240,336.2,2.2,1.00,11.250,336.3 +2.1,1.00,13.350,343.9,1.9,1.00,13.380,344.0 +2.1,1.00,13.260,346.2,1.9,1.00,13.310,346.3 +2.3,1.00,13.430,346.4,2.1,1.00,13.480,346.5 +2.3,1.00,10.980,340.3,2.1,1.00,11.020,340.4 +2.7,1.00,10.290,332.9,2.5,1.00,10.330,333.0 +3.0,1.00,10.540,326.1,2.8,1.00,10.570,326.3 +3.6,1.00,11.020,319.3,3.4,1.00,11.050,319.4 +4.9,1.00,10.380,317.3,4.8,1.00,10.420,317.4 +6.0,1.00,9.820,316.6,5.8,1.00,9.850,316.6 +6.7,1.00,10.190,318.0,6.5,1.00,10.230,317.9 +7.3,1.00,10.900,313.2,7.1,1.00,10.940,313.1 +7.7,1.00,10.890,308.8,7.5,1.00,10.940,308.8 +7.6,1.00,10.850,304.3,7.4,1.00,10.890,304.4 +7.3,1.00,10.010,308.4,7.1,1.00,10.060,308.5 +7.2,1.00,9.540,313.4,7.0,1.00,9.600,313.5 +7.1,1.00,8.400,314.9,7.0,1.00,8.440,315.0 +7.1,1.00,7.420,319.3,7.0,1.00,7.480,319.6 +7.7,1.00,8.720,320.7,7.5,1.00,8.800,320.8 +7.7,1.00,7.060,322.5,7.5,1.00,7.130,322.8 +7.2,1.00,6.130,316.4,7.0,1.00,6.160,316.7 +7.0,1.00,5.730,314.0,6.8,1.00,5.780,314.2 +6.8,1.00,5.180,317.2,6.7,1.00,5.220,317.6 +6.5,1.00,4.900,313.3,6.4,1.00,4.920,313.6 +6.4,1.00,4.500,310.4,6.3,1.00,4.510,310.8 +6.2,1.00,4.690,308.1,6.0,1.00,4.710,308.6 +5.8,1.00,4.380,310.0,5.7,1.00,4.470,311.0 +5.7,1.00,4.520,314.4,5.6,1.00,4.650,315.3 +5.9,1.00,4.870,321.8,6.0,1.00,5.090,322.5 +6.6,1.00,5.370,325.4,6.9,1.00,6.050,327.0 +7.3,1.00,5.640,325.1,7.9,1.00,6.500,326.0 +8.1,1.00,6.010,324.0,8.6,1.00,6.760,324.5 +9.9,1.00,6.620,321.9,9.8,1.00,6.670,322.1 +11.0,1.00,6.870,327.9,10.8,1.00,6.910,327.9 +11.6,1.00,7.340,329.7,11.4,1.00,7.390,329.6 +12.3,1.00,7.540,334.8,12.1,1.00,7.590,334.8 +12.7,1.00,7.900,340.7,12.5,1.00,7.940,340.7 +12.9,1.00,8.460,347.6,12.7,1.00,8.500,347.7 +12.3,1.00,8.080,358.0,12.1,1.00,8.290,357.6 +12.1,1.00,8.660,355.4,12.1,1.00,9.060,354.9 +11.9,1.01,8.200,1.9,12.1,1.01,8.560,3.5 +11.2,1.01,6.680,15.2,11.2,1.01,7.110,17.9 +10.7,1.01,6.160,19.2,10.6,1.01,6.230,20.4 +10.1,1.01,6.540,23.9,10.0,1.01,6.540,24.9 +9.5,1.01,5.850,33.1,9.4,1.01,5.920,35.1 +9.7,1.01,5.900,41.3,9.8,1.01,6.340,46.9 +9.8,1.01,5.590,48.2,9.8,1.01,5.990,54.5 +10.1,1.01,5.590,49.9,9.9,1.01,5.670,51.7 +9.9,1.01,6.490,46.8,9.7,1.01,6.470,47.7 +10.0,1.01,7.030,55.0,9.8,1.01,7.050,55.6 +10.4,1.01,7.260,63.7,10.2,1.01,7.290,64.3 +10.5,1.01,7.620,68.1,10.4,1.01,7.650,68.3 +10.5,1.01,7.620,68.8,10.3,1.01,7.650,69.0 +10.5,1.01,7.550,71.5,10.3,1.01,7.580,71.8 +10.5,1.01,6.900,72.1,10.3,1.01,6.930,72.3 +10.4,1.01,6.650,76.1,10.2,1.01,6.670,76.3 +10.6,1.01,6.000,74.0,10.4,1.01,6.000,74.1 +10.6,1.01,5.450,77.5,10.4,1.01,5.450,77.6 +10.6,1.00,4.960,77.3,10.4,1.00,4.950,77.4 +10.7,1.00,4.740,79.1,10.5,1.00,4.730,79.1 +10.9,1.00,4.690,90.8,10.8,1.00,4.690,90.7 +11.1,1.00,4.700,91.2,10.9,1.00,4.690,91.0 +11.0,1.00,4.540,91.0,10.8,1.00,4.540,90.9 +11.0,1.00,4.580,92.4,10.9,1.00,4.590,92.5 +11.1,1.00,4.590,92.9,10.9,1.00,4.610,93.0 +11.2,1.00,4.050,94.3,11.0,1.00,4.060,94.4 +11.2,1.00,3.470,97.3,11.0,1.00,3.490,97.7 +11.4,1.00,3.400,105.9,11.2,1.00,3.430,106.2 +11.4,1.00,2.770,112.8,11.3,1.00,2.790,113.1 +11.4,1.00,2.040,94.3,11.2,1.00,2.110,97.5 +11.5,1.00,1.850,100.0,11.4,1.00,1.980,105.0 +11.6,1.00,1.710,93.4,11.5,1.00,1.840,100.9 +11.5,1.00,1.920,75.0,11.5,1.00,2.020,81.9 +11.6,1.00,2.200,73.2,11.5,1.00,2.250,81.9 +11.7,1.00,2.180,76.4,11.7,1.00,2.230,86.2 +12.0,1.00,2.270,88.4,12.0,1.00,2.400,96.5 +12.3,1.00,2.380,99.1,12.3,1.00,2.530,105.2 +12.7,1.00,2.570,111.5,12.6,1.00,2.710,115.8 +13.0,1.00,2.560,117.0,12.8,1.00,2.690,120.5 +13.2,1.00,2.820,119.2,13.0,1.00,2.910,122.6 +13.6,1.00,2.490,137.0,13.4,1.00,2.510,137.5 +13.8,1.00,2.550,146.2,13.6,1.00,2.560,146.9 +13.9,1.00,2.890,149.0,13.8,1.00,2.890,149.4 +14.0,1.00,3.050,143.0,13.8,1.00,3.060,143.5 +14.1,1.00,2.340,147.7,13.9,1.00,2.340,148.3 +14.0,1.00,2.720,135.9,13.8,1.00,2.710,136.5 +13.8,1.00,3.330,118.1,13.6,1.00,3.290,119.4 +13.6,1.00,3.340,118.6,13.4,1.00,3.280,121.1 +13.7,1.00,3.340,133.9,13.7,1.00,3.130,139.6 +13.9,1.00,4.650,151.6,13.9,1.00,4.510,156.5 +14.2,1.00,3.760,157.4,14.3,1.00,3.720,163.0 +14.2,1.00,2.520,170.2,14.3,1.00,2.510,175.9 +14.0,1.00,2.610,166.3,14.0,1.00,2.590,174.4 +13.7,1.00,2.270,140.1,13.7,1.00,2.140,146.1 +14.3,1.00,1.720,180.7,14.4,1.00,1.730,187.8 +14.2,1.00,1.660,172.4,14.4,1.00,1.600,180.8 +14.5,1.00,1.500,168.7,14.6,1.00,1.450,175.9 +14.7,1.00,0.970,179.7,14.8,1.00,0.880,188.3 +15.0,1.00,0.700,167.2,15.1,1.00,0.610,169.9 +15.3,1.00,0.230,124.0,15.3,1.00,0.240,106.2 +14.6,1.00,1.260,88.9,14.8,1.00,0.970,91.3 +14.9,1.00,1.710,89.5,14.8,1.00,1.550,89.1 +15.2,1.00,1.210,70.4,15.2,1.00,1.170,76.9 +14.5,1.00,1.760,71.3,14.8,1.00,1.510,79.4 +12.9,1.00,2.660,78.1,13.5,1.00,2.650,93.7 +13.6,1.00,2.890,72.2,13.4,1.00,2.840,73.5 +12.7,1.00,3.300,93.1,12.5,1.00,3.170,93.3 +12.1,1.00,2.600,110.9,11.8,1.00,2.560,115.5 +12.2,1.00,2.330,98.3,11.9,1.00,2.340,95.1 +11.3,1.00,2.380,118.4,10.9,1.00,2.380,121.1 +12.2,1.00,2.390,120.2,13.9,1.00,2.890,123.7 +13.4,1.00,3.280,131.2,14.2,1.00,3.570,133.5 +13.8,1.00,3.230,139.9,14.5,1.00,3.370,140.3 +13.8,1.00,2.880,144.2,14.4,1.00,2.920,144.4 +13.7,1.00,2.150,153.0,14.5,1.00,2.150,151.9 +14.3,1.00,2.090,162.5,14.6,1.00,2.220,160.7 +14.4,1.00,1.510,202.5,15.1,1.00,1.540,195.4 +13.1,1.00,0.840,202.6,14.3,1.00,1.290,184.9 +13.5,1.00,0.520,260.6,14.5,1.00,0.590,219.6 +13.5,1.00,0.530,307.4,14.6,1.00,0.390,288.3 +13.5,1.00,1.060,335.4,14.8,1.00,0.900,332.1 +13.1,1.00,1.530,353.4,14.5,1.00,1.330,353.5 +13.2,1.00,2.450,359.7,14.8,1.00,2.200,2.1 +12.3,1.00,2.520,15.9,14.2,1.00,2.410,17.0 +13.3,1.00,2.960,17.0,14.8,1.00,2.830,24.0 +13.3,1.00,2.750,22.1,15.1,1.00,2.710,29.8 +13.8,1.00,3.100,14.0,15.4,1.00,3.040,22.1 +14.2,1.00,2.660,26.4,15.6,1.00,2.810,34.2 +13.8,1.00,2.710,12.3,15.0,1.00,2.810,24.0 +14.6,1.00,2.820,0.9,15.1,1.00,2.680,13.6 +15.5,1.00,2.980,356.7,16.0,1.00,2.850,10.9 +16.2,1.00,2.780,358.0,16.5,1.00,2.540,15.6 +16.2,1.00,2.740,354.6,16.2,1.00,2.100,8.7 +16.1,1.00,3.670,348.6,16.2,1.00,3.240,351.6 +15.8,1.00,6.070,6.3,15.8,1.00,6.020,9.4 +14.4,1.00,6.860,32.0,14.9,1.00,6.590,34.6 +13.5,1.00,6.340,38.7,14.1,1.00,6.180,42.3 +13.1,1.00,5.700,45.8,13.6,1.00,5.730,50.8 +12.9,1.00,5.140,56.9,13.1,1.00,5.420,64.3 +13.2,1.00,4.860,64.7,13.3,1.00,5.050,69.0 +13.1,1.00,4.880,63.4,13.6,1.00,4.520,78.0 +13.1,1.00,5.520,70.3,13.2,1.00,5.310,78.3 +12.8,1.00,5.300,69.5,12.7,1.00,5.310,74.3 +12.7,1.00,4.880,64.7,12.9,1.00,4.340,72.6 +12.6,1.00,4.890,55.2,12.8,1.00,4.200,61.4 +12.3,1.00,5.470,51.9,12.2,1.00,5.470,55.4 +12.2,1.00,5.770,55.3,12.0,1.00,6.090,57.8 +12.1,1.00,5.560,59.8,12.0,1.00,5.710,62.3 +12.2,1.00,5.730,63.0,12.1,1.00,5.960,65.7 +12.3,1.00,5.410,72.0,12.2,1.00,5.500,74.2 +12.5,1.00,5.210,78.7,12.3,1.00,5.280,81.1 +12.7,1.00,5.340,90.2,12.6,1.00,5.320,93.5 +13.1,1.00,4.220,90.8,12.9,1.00,4.160,91.1 +13.2,1.00,4.440,90.6,13.1,1.00,4.400,90.9 +13.3,1.00,4.720,95.7,13.1,1.00,4.690,96.0 +13.5,1.00,4.840,100.1,13.3,1.00,4.810,100.5 +13.7,1.00,5.020,105.0,13.6,1.00,4.980,105.4 +13.9,1.00,5.430,111.0,13.7,1.00,5.410,111.3 +13.8,1.00,5.910,112.7,13.7,1.00,6.040,113.4 +13.9,1.00,6.100,117.2,13.8,1.00,6.290,117.8 +14.0,1.00,6.190,122.7,13.9,1.00,6.410,123.3 +14.2,1.00,6.160,128.3,14.1,1.00,6.400,129.0 +14.4,1.00,5.970,130.3,14.3,1.00,6.240,131.4 +14.5,1.00,6.060,134.3,14.4,1.00,6.370,135.5 +14.7,1.00,6.130,136.7,14.6,1.00,6.540,139.1 +15.1,1.00,6.200,139.8,15.1,1.00,6.440,141.1 +15.4,1.00,6.110,142.5,15.4,1.00,6.310,144.0 +15.8,1.00,5.930,140.5,15.8,1.00,6.160,142.5 +16.2,1.00,5.990,143.3,16.2,1.00,6.160,145.1 +16.3,1.00,5.650,146.0,16.4,1.00,5.830,148.2 +16.5,1.00,5.370,146.0,16.6,1.00,5.590,148.3 +16.7,1.00,5.500,144.9,16.7,1.00,5.720,146.8 +16.9,1.00,5.920,147.8,16.9,1.00,6.130,149.8 +17.3,1.00,5.850,157.0,17.3,1.00,6.050,158.8 +17.3,1.00,6.090,161.9,17.4,1.00,6.270,164.8 +17.7,1.00,6.340,164.4,17.7,1.00,6.450,166.6 +17.8,1.00,6.190,169.4,17.8,1.00,6.430,171.4 +17.7,1.00,6.030,170.9,17.6,1.00,6.280,172.3 +17.5,1.00,5.960,170.5,17.5,1.00,6.190,172.5 +17.6,1.00,5.960,173.6,17.6,1.00,6.440,176.6 +17.9,1.00,6.460,177.8,17.9,1.00,7.000,180.1 +17.9,1.00,6.860,182.3,17.9,1.00,7.470,185.3 +18.2,1.00,7.700,184.3,18.2,1.00,7.780,185.6 +18.3,1.00,8.500,186.0,18.3,1.00,8.580,186.8 +18.2,1.00,8.690,188.2,18.3,1.00,8.840,190.2 +18.3,1.00,9.460,190.2,18.3,1.00,9.870,191.2 +18.2,1.00,9.500,190.5,18.3,1.00,10.090,191.3 +18.3,1.00,9.600,192.6,18.4,1.00,10.080,193.9 +18.3,1.00,9.710,195.9,18.3,1.00,10.220,197.4 +18.4,1.00,9.890,197.4,18.3,1.00,10.390,198.0 +18.4,1.00,9.470,202.4,18.4,1.00,9.910,203.3 +18.4,1.00,9.170,204.7,18.4,1.00,9.370,205.5 +18.6,1.00,9.260,207.9,18.5,1.00,9.420,208.9 +18.6,1.00,8.560,209.7,18.6,1.00,8.810,210.9 +18.6,1.00,8.780,210.1,18.6,1.00,8.970,211.2 +18.7,1.00,7.910,207.8,18.7,1.00,8.100,209.3 +18.9,1.00,7.490,208.9,18.9,1.00,7.740,210.8 +19.0,1.00,7.400,203.1,19.0,1.00,7.630,205.4 +19.2,1.00,7.900,204.1,19.3,1.00,8.000,206.5 +19.2,1.00,7.800,200.2,19.2,1.00,7.810,202.3 +19.0,1.00,7.450,194.0,19.0,1.00,7.720,196.5 +18.6,1.00,7.600,191.0,18.5,1.00,8.070,192.5 +18.6,1.00,8.230,188.3,18.6,1.00,8.700,190.0 +18.6,1.00,8.370,188.2,18.6,1.00,8.860,190.0 +18.7,1.00,8.880,188.2,18.7,1.00,9.450,189.8 +18.6,1.00,9.030,187.2,18.7,1.00,9.650,188.6 +18.7,1.00,9.770,188.5,18.8,1.00,10.400,189.9 +18.6,1.00,10.140,189.2,18.7,1.00,10.840,190.1 +18.6,1.00,10.010,188.4,18.7,1.00,10.690,189.3 +18.6,1.00,10.500,186.4,18.7,1.00,11.210,187.3 +18.5,1.00,10.520,186.4,18.5,1.00,11.180,187.4 +18.4,1.00,10.790,185.1,18.5,1.00,11.490,186.2 +18.6,1.00,11.500,186.4,18.7,1.00,12.180,187.6 +18.6,1.00,10.840,188.1,18.6,1.00,11.410,188.8 +18.5,1.00,10.480,189.5,18.6,1.00,11.200,190.0 +18.7,1.00,10.910,191.1,18.7,1.00,11.690,192.2 +19.1,1.00,10.390,197.5,19.1,1.00,11.050,198.6 +18.8,1.00,8.760,200.8,18.8,1.00,9.220,201.6 +19.1,1.00,8.770,203.8,19.1,1.00,9.140,204.4 +20.0,1.00,9.970,208.9,19.8,1.00,10.130,209.4 +19.6,1.00,9.400,195.7,19.6,1.00,9.690,197.4 +19.4,1.00,8.540,202.5,19.4,1.00,8.840,203.2 +19.4,1.00,8.040,203.7,19.4,1.00,8.390,204.2 +19.7,1.00,7.710,208.4,19.7,1.00,8.000,209.4 +19.4,1.00,7.230,202.3,19.4,1.00,7.790,204.7 +19.1,1.00,7.420,198.4,19.1,1.00,8.010,200.9 +19.2,1.00,7.080,195.6,19.2,1.00,7.670,198.7 +19.2,1.00,7.750,198.3,19.2,1.00,8.360,200.7 +19.2,1.00,7.620,201.7,19.2,1.00,8.200,204.9 +19.3,1.00,7.470,199.2,19.3,1.00,8.220,202.2 +19.3,1.00,7.360,199.9,19.3,1.00,7.510,201.3 +19.4,1.00,6.720,197.8,19.3,1.00,6.970,198.9 +19.1,1.00,6.480,189.7,19.2,1.00,6.800,191.5 +19.1,1.00,6.710,190.2,19.2,1.00,6.970,191.8 +19.0,1.00,7.020,191.2,19.1,1.00,7.220,192.8 +18.9,1.00,7.200,196.4,19.0,1.00,7.450,197.4 +19.1,1.00,6.940,196.0,19.2,1.00,7.260,197.2 +18.9,1.00,6.130,195.9,19.0,1.00,6.560,197.6 +19.1,1.00,6.080,195.4,19.2,1.00,6.500,197.0 +18.9,1.00,5.240,194.3,18.9,1.00,5.580,196.7 +18.9,1.00,4.930,193.6,18.9,1.00,5.240,196.2 +19.2,1.00,5.080,194.0,19.3,1.00,5.470,195.9 +19.2,1.00,4.460,187.8,19.3,1.00,4.810,190.5 +19.1,1.00,4.560,174.6,19.2,1.00,4.680,178.6 +19.3,1.00,4.630,180.9,19.4,1.00,4.840,184.3 +19.7,1.00,4.900,181.9,19.7,1.00,5.080,184.7 +20.0,1.00,5.270,170.7,20.0,1.00,5.440,174.1 +19.8,1.00,6.250,170.8,19.9,1.00,6.270,172.9 +19.8,1.00,5.940,173.1,19.8,1.00,6.150,175.5 +19.5,1.00,5.860,173.4,19.6,1.00,6.040,176.2 +19.6,1.00,6.010,170.7,19.7,1.00,6.260,173.7 +19.2,1.00,6.140,161.8,19.4,1.00,6.430,164.8 +19.4,1.00,6.320,161.1,19.5,1.00,6.530,163.3 +19.2,1.00,6.590,152.6,19.3,1.00,6.890,154.7 +19.3,1.00,7.040,148.6,19.4,1.00,7.190,150.4 +19.4,1.00,7.760,143.9,19.4,1.00,7.890,145.5 +19.6,1.00,8.120,141.3,19.6,1.00,8.250,142.5 +19.4,1.00,8.680,136.6,19.4,1.00,8.690,138.2 +19.1,1.00,9.550,136.3,19.3,1.00,9.620,140.9 +19.1,1.00,10.080,136.5,19.3,1.00,10.400,141.5 +19.0,1.00,10.730,136.1,19.3,1.00,11.260,140.9 +19.0,1.00,10.630,136.3,19.4,1.00,11.050,143.0 +19.0,1.00,10.450,139.8,19.4,1.00,10.670,146.9 +18.8,1.00,10.140,141.0,19.3,1.00,10.190,149.9 +19.2,1.00,9.680,153.4,19.4,1.00,9.890,155.9 +19.1,1.00,9.340,160.0,19.5,1.00,9.660,162.6 +19.5,1.00,10.240,163.3,19.6,1.00,10.520,164.3 +19.1,1.00,10.400,163.8,19.5,1.00,10.880,165.1 +19.6,1.00,10.400,161.8,19.7,1.00,10.920,163.0 +19.1,1.00,9.910,157.5,19.5,1.00,10.980,161.5 +19.2,1.00,9.920,155.2,19.4,1.00,10.900,157.6 +19.3,1.00,10.050,155.0,19.4,1.00,10.820,157.4 +19.3,1.00,9.280,155.8,19.4,1.00,10.010,156.9 +19.4,1.00,9.700,155.8,19.4,1.00,10.440,156.8 +19.4,1.00,9.810,150.9,19.5,1.00,10.590,152.8 +19.4,0.99,10.480,149.6,19.4,0.99,11.220,150.9 +19.4,0.99,11.200,149.9,19.5,0.99,11.960,151.5 +19.5,0.99,11.340,150.2,19.6,0.99,12.140,152.0 +19.6,0.99,12.460,150.6,19.8,0.99,13.410,152.1 +19.6,0.99,12.250,151.8,19.8,0.99,13.060,152.9 +19.4,0.99,11.990,151.2,19.5,0.99,12.880,152.2 +19.5,0.99,12.010,150.6,19.6,0.99,12.810,151.7 +19.4,0.99,11.980,152.7,19.5,0.99,12.790,153.6 +19.7,0.99,12.040,154.9,19.8,0.99,12.900,156.0 +19.7,0.99,11.990,154.7,19.8,0.99,12.780,156.1 +19.5,0.99,11.310,155.8,19.6,0.99,12.220,157.2 +19.7,0.99,11.650,159.4,19.9,0.99,12.550,160.9 +19.8,0.99,11.860,162.8,20.0,0.99,12.840,164.3 +19.7,0.99,11.490,162.4,19.9,0.99,12.440,163.9 +19.8,0.99,11.230,162.0,20.0,0.99,12.300,163.9 +19.4,0.99,10.740,158.4,19.6,0.99,11.560,160.2 +19.9,0.99,10.980,159.0,20.2,0.99,12.150,161.7 +19.9,0.99,11.360,157.4,20.3,0.99,12.630,160.7 +19.8,1.00,10.810,153.3,20.0,1.00,11.760,155.7 +20.2,0.99,10.790,152.7,20.5,0.99,12.200,156.8 +20.5,0.99,11.690,152.8,20.7,0.99,12.450,156.3 +20.2,0.99,10.350,151.9,20.4,0.99,11.180,155.3 +20.2,0.99,10.400,151.6,20.5,0.99,11.400,156.7 +20.1,0.99,10.490,149.8,20.4,0.99,11.410,154.0 +20.0,0.99,10.920,151.5,20.2,0.99,11.850,154.6 +19.4,0.99,10.510,144.1,19.5,0.99,11.320,146.1 +19.1,0.99,11.200,148.5,19.1,0.99,12.080,151.0 +19.1,0.99,12.100,147.3,19.2,0.99,13.020,149.0 +19.1,0.99,11.680,147.1,19.1,0.99,12.780,150.1 +19.0,0.99,12.270,147.0,18.8,0.99,13.290,149.7 +19.2,0.99,13.130,149.0,19.1,0.99,14.100,150.9 +19.1,0.99,12.390,152.7,19.0,0.99,13.370,154.1 +19.1,0.99,11.760,155.5,18.9,0.99,12.760,157.2 +19.1,0.99,12.290,154.0,19.0,0.99,13.350,155.4 +19.0,0.99,11.460,151.6,19.1,0.99,12.510,153.6 +19.1,0.99,11.080,156.3,19.1,0.99,12.160,157.7 +19.9,0.99,12.310,159.8,19.9,0.99,13.080,161.1 +19.5,0.99,12.030,157.2,19.4,0.99,12.970,158.8 +19.4,0.99,11.130,157.1,19.3,0.99,11.960,158.4 +19.2,0.99,12.220,158.4,19.1,0.99,13.360,161.0 +19.2,0.99,12.720,159.7,19.6,0.99,13.620,160.7 +20.1,0.99,13.100,161.4,20.2,0.99,14.080,162.7 +20.2,0.99,12.940,164.2,20.3,0.99,13.850,165.2 +20.3,0.99,13.690,165.3,20.5,0.99,14.690,166.1 +20.2,0.99,12.980,169.6,20.3,0.99,13.900,170.3 +20.3,0.99,12.550,171.8,20.3,0.99,13.300,172.6 +20.5,0.98,13.300,173.6,20.5,0.98,14.050,174.9 +20.6,0.98,13.150,173.6,20.6,0.98,14.080,175.1 +20.5,0.98,12.900,172.5,20.4,0.98,13.750,173.2 +20.3,0.98,12.660,175.9,20.3,0.98,13.510,176.8 +20.6,0.98,15.250,177.4,20.6,0.98,16.040,178.1 +20.7,0.98,16.850,181.0,20.7,0.98,17.670,181.4 +21.0,0.98,16.640,179.9,21.0,0.98,17.460,180.6 +20.6,0.98,13.730,183.9,20.6,0.98,14.540,184.3 +20.6,0.98,13.580,184.0,20.6,0.98,14.430,185.0 +20.4,0.98,14.150,196.2,20.5,0.98,15.010,196.6 +20.4,0.98,12.730,212.5,20.4,0.98,13.450,212.8 +15.7,0.98,13.450,324.3,15.5,0.98,13.820,324.5 +16.8,0.98,10.630,326.8,16.7,0.98,11.080,326.4 +16.9,0.98,15.820,317.7,16.7,0.98,15.940,317.8 +15.8,0.99,13.730,314.8,15.6,0.99,13.810,314.8 +15.3,0.99,9.100,303.1,15.1,0.99,9.140,303.5 +14.5,0.99,12.980,308.8,14.3,0.99,13.090,309.1 +13.1,0.99,11.190,298.5,13.0,0.99,11.370,299.2 +12.3,0.99,11.760,296.8,12.2,0.99,11.900,297.3 +11.9,0.99,12.540,296.4,11.7,0.99,12.660,296.6 +11.9,0.99,12.020,297.0,11.7,0.99,12.130,297.2 +12.1,0.99,14.000,298.2,11.9,0.99,14.120,298.3 +12.0,0.99,13.460,306.5,11.8,0.99,13.580,306.5 +12.2,0.99,15.620,314.0,12.0,0.99,15.720,313.8 +12.2,0.99,15.280,315.7,12.0,0.99,15.390,315.7 +12.3,0.99,15.440,315.3,12.1,0.99,15.550,315.3 +12.6,0.99,13.730,319.1,12.4,0.99,13.840,319.1 +12.4,0.99,13.950,327.8,12.2,0.99,14.030,327.6 +12.3,1.00,12.420,331.5,12.1,1.00,12.500,331.3 +11.7,1.00,10.840,337.9,11.5,1.00,10.900,337.5 +11.5,1.00,11.060,332.1,11.3,1.00,11.140,332.1 +11.3,1.00,9.500,334.7,11.1,1.00,9.570,334.6 +11.2,1.00,7.550,338.5,11.0,1.00,7.590,338.4 +11.1,1.00,6.510,345.3,10.9,1.00,6.560,345.1 +11.0,1.00,5.750,343.5,10.8,1.00,5.790,343.4 +10.8,1.00,4.810,342.6,10.6,1.00,4.840,342.8 +10.6,1.00,3.420,344.1,10.4,1.00,3.440,344.4 +10.4,1.00,1.650,347.3,10.2,1.00,1.640,348.3 +10.4,1.00,0.650,332.0,10.3,1.00,0.620,334.2 +10.7,1.00,0.450,218.0,10.5,1.00,0.430,215.4 +10.9,1.00,1.210,199.5,10.7,1.00,1.210,198.7 +11.1,1.00,1.620,201.0,10.9,1.00,1.630,200.2 +11.3,1.00,2.310,213.3,11.1,1.00,2.320,212.6 +11.5,1.00,2.750,221.7,11.3,1.00,2.760,221.1 +11.7,1.00,3.050,217.8,11.5,1.00,3.070,217.3 +12.0,1.00,3.440,218.7,11.8,1.00,3.460,218.2 +12.3,1.00,3.740,219.9,12.1,1.00,3.780,219.3 +13.0,1.00,4.180,216.2,12.8,1.00,4.210,216.0 +13.4,1.00,4.690,215.8,13.2,1.00,4.720,215.6 +13.7,1.00,5.010,215.3,13.6,1.00,5.040,215.1 +14.1,1.00,5.710,212.4,13.9,1.00,5.730,212.4 +14.3,1.00,5.930,213.8,14.2,1.00,5.960,213.7 +14.6,1.00,6.180,211.5,14.4,1.00,6.190,211.4 +14.6,1.00,5.530,213.6,14.4,1.00,5.570,213.7 +14.7,1.00,5.570,215.9,14.6,1.00,5.610,215.9 +14.8,1.00,4.910,218.4,14.6,1.00,4.950,218.3 +14.9,1.00,4.560,221.5,14.7,1.00,4.590,221.2 +14.8,1.00,4.190,210.6,14.7,1.00,4.260,210.2 +15.0,1.00,4.450,212.4,14.8,1.00,4.510,212.0 +15.0,1.00,3.730,209.3,14.8,1.00,3.810,209.8 +14.8,1.00,3.630,216.4,14.7,1.00,3.680,215.2 +14.8,1.00,3.010,212.2,14.7,1.00,3.150,212.2 +14.8,1.00,2.990,205.9,14.7,1.00,3.180,206.1 +14.6,1.00,2.200,193.5,14.5,1.00,2.380,192.8 +14.5,1.00,2.160,183.9,14.5,1.00,2.360,184.1 +14.7,1.00,1.980,188.0,14.7,1.00,2.230,188.5 +14.6,1.00,1.350,156.0,14.5,1.00,1.570,158.6 +14.9,1.00,1.590,138.0,14.8,1.00,1.770,142.6 +15.2,1.00,2.500,136.2,15.1,1.00,2.670,139.9 +14.9,1.00,2.400,117.9,14.9,1.00,2.530,122.3 +14.9,1.00,2.920,112.9,14.8,1.00,3.060,114.6 +15.2,1.00,4.510,119.2,15.0,1.00,4.510,119.3 +15.2,1.00,5.220,118.9,15.0,1.00,5.230,119.0 +15.2,1.00,5.770,124.5,15.1,1.00,5.780,124.8 +15.3,1.00,5.740,128.6,15.1,1.00,5.750,128.7 +15.3,1.00,6.350,130.2,15.1,1.00,6.380,130.3 +15.4,1.00,6.640,135.2,15.2,1.00,6.660,135.3 +15.3,1.00,6.510,133.1,15.2,1.00,6.600,133.4 +15.4,1.00,6.010,133.5,15.3,1.00,6.130,134.0 +15.7,1.00,6.350,138.7,15.5,1.00,6.540,139.4 +15.9,1.00,6.900,141.8,15.8,1.00,7.110,142.0 +16.2,1.00,7.580,147.5,16.1,1.00,7.780,147.7 +16.3,1.00,8.010,146.1,16.2,1.00,8.310,146.2 +16.5,1.00,7.580,148.8,16.4,1.00,7.780,150.0 +16.6,1.00,6.900,146.8,16.5,1.00,7.240,147.8 +16.7,1.00,6.900,147.9,16.7,1.00,7.290,150.5 +16.8,1.00,5.740,148.6,16.7,1.00,5.730,150.7 +16.7,1.00,6.310,142.2,16.6,1.00,6.320,144.0 +16.9,1.00,5.380,138.3,16.9,1.00,5.300,140.6 +17.0,1.00,5.320,142.3,17.0,1.00,5.270,145.1 +17.0,1.00,5.280,147.3,17.0,1.00,5.210,150.9 +17.2,1.00,3.990,150.6,17.3,1.00,4.050,154.3 +17.2,1.00,3.030,143.8,17.2,1.00,3.010,148.1 +17.5,1.00,2.230,138.8,17.6,1.00,2.080,143.8 +17.6,1.00,2.390,127.1,17.6,1.00,2.220,130.9 +17.5,1.00,0.450,106.1,17.7,1.00,0.670,115.9 +17.5,1.00,1.420,122.9,17.4,1.00,1.470,123.3 +17.6,1.00,2.310,127.5,17.4,1.00,2.250,127.6 +17.6,1.00,2.770,132.8,17.5,1.00,2.680,131.8 +17.6,1.00,2.350,142.1,17.6,1.00,2.170,139.9 +17.4,1.00,3.540,146.1,17.5,1.00,3.390,142.8 +18.1,1.00,2.790,145.2,18.4,1.00,2.550,142.5 +17.9,1.00,2.940,154.5,18.2,1.00,2.620,152.6 +17.9,1.00,2.710,172.2,18.1,1.00,2.370,171.9 +18.2,1.00,2.240,185.2,18.4,1.00,1.950,187.3 +18.0,1.00,2.340,217.7,18.3,1.00,2.090,221.7 +18.0,1.00,2.580,245.1,18.2,1.00,2.450,250.5 +16.1,1.00,4.930,342.4,16.3,1.00,4.650,340.1 +16.2,1.00,5.490,337.3,16.9,1.00,5.630,335.2 +14.4,1.00,7.160,17.3,16.1,1.00,7.840,20.2 +14.6,1.00,7.690,26.2,14.8,1.00,8.200,28.3 +14.6,1.00,8.280,33.3,14.9,1.00,8.670,35.9 +14.5,1.00,8.730,36.6,14.7,1.00,9.150,38.1 +13.7,1.00,7.940,39.0,13.7,1.00,8.460,41.3 +13.6,1.00,7.440,45.8,13.4,1.00,7.620,47.0 +13.4,1.00,6.970,52.8,13.3,1.00,7.010,53.3 +13.5,1.00,7.100,52.1,13.3,1.00,7.150,52.6 +13.6,1.00,6.190,58.2,13.5,1.00,6.250,58.6 +13.9,1.00,5.380,72.8,13.7,1.00,5.490,72.8 +14.9,1.00,5.190,83.4,14.7,1.00,5.220,83.0 +15.3,1.00,5.460,94.8,15.2,1.00,5.490,94.0 +15.6,1.00,5.740,113.4,15.4,1.00,5.710,113.0 +15.6,1.00,5.160,119.3,15.5,1.00,5.130,119.1 +15.7,1.00,5.260,125.2,15.6,1.00,5.230,125.1 +15.8,1.00,5.020,126.8,15.6,1.00,5.000,126.8 +15.5,1.00,5.450,135.0,15.3,1.00,5.460,135.1 +15.5,1.00,5.220,138.3,15.4,1.00,5.270,138.3 +15.6,1.00,5.650,142.4,15.5,1.00,5.730,142.5 +15.7,1.00,5.940,143.9,15.5,1.00,6.040,144.0 +15.7,0.99,6.210,148.3,15.6,0.99,6.340,148.5 +15.9,0.99,6.510,148.5,15.8,0.99,6.690,148.9 +16.2,0.99,6.870,149.7,16.1,0.99,7.110,150.3 +16.4,0.99,7.290,149.7,16.2,0.99,7.580,150.4 +16.6,0.99,7.480,148.2,16.5,0.99,7.780,149.4 +16.9,0.99,7.290,148.4,16.8,0.99,7.680,150.5 +17.1,0.99,7.190,148.3,17.1,0.99,7.580,151.4 +17.3,0.99,7.440,148.6,17.3,0.99,7.860,151.9 +17.3,0.99,7.810,142.2,17.4,0.99,8.140,146.2 +17.7,0.99,7.480,151.1,17.7,0.99,7.500,153.7 +18.0,0.99,7.200,154.8,18.1,0.99,7.110,157.4 +18.2,0.99,6.990,156.6,18.2,0.99,6.940,159.0 +18.3,0.99,7.350,154.9,18.3,0.99,7.270,157.3 +18.6,0.99,5.430,159.2,18.6,0.99,5.390,162.3 +18.7,0.99,5.470,155.3,18.7,0.99,5.570,159.1 +18.6,0.99,5.790,141.5,18.7,0.99,5.960,145.4 +18.8,0.99,6.390,141.0,18.9,0.99,6.570,144.9 +18.4,0.99,7.930,140.6,18.4,0.99,8.170,144.2 +17.9,0.99,7.830,134.2,17.9,0.99,8.100,137.0 +18.5,0.99,7.000,138.5,18.9,0.99,6.790,142.1 +19.0,0.99,7.000,142.0,19.3,0.99,6.680,144.6 +18.3,0.99,5.840,150.8,18.7,0.99,5.800,155.7 +18.6,0.99,4.550,160.3,18.9,0.99,4.490,165.9 +19.0,0.99,4.270,165.1,19.2,0.99,4.240,170.3 +19.4,0.99,4.570,175.5,19.7,0.99,4.730,180.0 +19.9,0.99,4.840,173.5,20.0,0.99,4.840,177.2 +18.9,0.99,4.590,185.5,19.3,0.99,4.800,190.3 +19.8,0.99,4.990,209.8,19.9,0.99,5.160,213.1 +18.1,0.99,5.210,226.3,18.4,0.99,5.160,226.2 +17.3,0.99,3.770,227.8,17.3,0.99,3.900,224.1 +16.7,0.99,2.860,255.0,16.6,0.99,2.890,254.5 +16.8,0.99,2.680,258.4,16.7,0.99,2.700,258.4 +16.9,0.99,1.720,272.5,16.8,0.99,1.930,272.8 +16.9,0.99,1.130,263.1,16.9,0.99,1.390,262.6 +16.9,0.99,0.980,82.9,16.9,0.99,0.780,78.7 +16.9,0.99,1.570,85.0,16.9,0.99,1.440,83.1 +17.2,0.99,3.060,87.0,17.1,0.99,2.870,88.0 +17.1,0.99,3.110,77.7,17.1,0.99,2.880,79.2 +17.2,0.99,3.470,100.1,17.1,0.99,3.310,100.7 +17.6,0.99,4.330,98.4,17.6,0.99,4.120,101.0 +17.0,0.99,5.000,102.9,17.1,0.99,4.910,105.5 +17.2,0.99,5.060,104.3,17.1,0.99,5.050,104.8 +17.3,0.99,5.610,110.2,17.3,0.99,5.570,113.8 +17.5,0.99,5.860,119.4,17.4,0.99,5.850,120.9 +17.5,0.99,5.650,113.7,17.6,0.99,5.200,121.5 +17.6,0.99,6.580,123.0,17.7,0.99,6.140,127.5 +18.0,0.99,6.870,121.5,18.1,0.99,6.680,123.4 +17.9,0.99,6.730,120.9,18.0,0.99,6.490,122.1 +18.0,0.99,6.030,110.0,18.1,0.99,5.730,112.6 +17.8,0.99,6.130,108.8,18.0,0.99,5.720,114.0 +18.1,0.99,5.780,118.2,18.1,0.99,5.550,121.1 +18.0,0.99,6.490,112.7,18.1,0.99,6.170,115.0 +17.1,0.99,7.420,109.7,17.2,0.99,7.600,114.8 +16.8,0.99,6.360,115.0,16.7,0.99,6.690,116.3 +16.8,0.99,7.350,100.1,16.7,0.99,7.610,102.8 +17.5,0.99,7.510,114.4,17.7,0.99,7.240,121.7 +17.6,0.99,7.160,107.1,17.8,0.99,7.150,113.4 +18.9,0.99,6.630,83.4,18.9,0.99,6.510,84.0 +17.4,0.99,8.370,94.4,17.4,0.99,8.630,97.9 +17.1,0.99,5.970,94.9,17.3,0.99,5.900,103.0 +17.2,0.99,8.340,88.6,17.1,0.99,8.830,91.0 +16.8,0.99,8.220,77.5,16.8,0.99,8.520,80.6 +16.9,0.99,7.740,76.4,16.8,0.99,8.010,79.0 +16.8,0.99,8.890,79.4,16.7,0.99,9.310,81.5 +16.9,0.99,8.050,88.2,16.8,0.99,8.410,90.4 +17.0,0.99,10.200,93.0,16.9,0.99,10.550,94.5 +16.9,0.99,11.260,96.4,16.7,0.99,11.540,97.2 +16.8,0.99,11.090,95.6,16.6,0.99,11.370,95.8 +16.7,0.99,12.320,93.8,16.5,0.99,12.640,94.1 +16.6,0.99,12.100,92.5,16.5,0.99,12.370,92.8 +16.7,0.99,12.590,94.3,16.6,0.99,12.890,94.4 +16.7,0.99,10.850,89.4,16.6,0.99,11.170,89.7 +16.8,0.99,9.680,84.2,16.6,0.99,10.070,84.6 +16.7,0.99,8.610,83.2,16.6,0.99,8.960,83.7 +16.6,0.99,8.150,89.7,16.5,0.99,8.620,89.8 +16.6,0.99,6.890,82.9,16.5,0.99,7.360,84.1 +16.5,0.99,6.110,73.7,16.3,0.99,6.460,75.2 +16.5,0.99,6.100,83.1,16.4,0.99,6.390,84.1 +16.4,0.99,4.860,100.2,16.3,0.99,5.160,101.6 +16.4,0.99,3.150,96.1,16.3,0.99,3.180,95.9 +16.3,0.99,2.340,86.4,16.2,0.99,2.240,89.0 +16.1,0.99,1.380,98.6,16.1,0.99,1.280,104.9 +16.2,0.99,1.100,111.3,16.2,0.99,1.240,119.2 +16.4,0.99,2.650,46.8,16.2,0.99,2.490,50.1 +16.3,0.99,1.650,12.4,16.2,0.99,1.450,14.9 +16.3,0.99,1.410,356.5,16.2,0.99,1.250,350.5 +16.5,0.99,2.450,49.5,16.4,0.99,2.210,50.1 +16.7,0.99,2.100,75.7,16.5,0.99,1.890,75.8 +16.8,0.99,1.620,66.2,16.6,0.99,1.510,66.0 +16.9,0.99,2.170,69.4,16.8,0.99,1.830,67.1 +16.8,0.99,3.080,94.3,16.7,0.99,2.810,92.4 +16.9,0.99,2.960,110.9,16.8,0.99,2.500,108.3 +16.9,0.99,2.650,131.7,17.1,0.99,2.340,131.3 +18.2,0.99,2.050,162.0,18.3,0.99,1.730,166.8 +17.2,0.99,3.230,156.9,17.3,0.99,2.990,160.5 +17.3,0.99,4.330,185.2,17.3,0.99,4.150,188.1 +16.6,0.99,4.320,203.8,16.5,0.99,4.240,202.3 +16.5,0.99,3.990,230.0,16.4,0.99,4.010,230.0 +16.8,0.99,4.860,276.7,16.6,0.99,5.210,279.3 +17.4,0.99,6.780,286.5,17.2,0.99,6.960,286.0 +17.2,0.99,6.780,297.5,17.2,0.99,7.120,298.4 +14.0,0.99,10.690,340.4,13.8,0.99,11.320,341.3 +13.5,0.99,8.780,343.0,13.9,0.99,10.280,345.1 +12.7,0.99,9.630,345.3,13.1,0.99,10.660,346.6 +12.9,0.99,9.370,342.9,12.7,0.99,9.390,343.2 +12.1,0.99,10.380,352.7,11.9,0.99,10.410,352.8 +12.8,1.00,9.250,359.8,12.6,1.00,9.330,360.0 +13.7,1.00,8.270,4.9,13.6,1.00,8.370,5.5 +14.3,1.00,8.060,5.1,14.1,1.00,8.110,5.1 +14.5,1.00,5.820,349.6,14.4,1.00,5.810,350.4 +16.0,1.00,6.840,0.1,15.8,1.00,6.900,0.4 +17.1,1.00,7.010,3.5,16.9,1.00,7.070,3.7 +17.5,1.00,5.890,27.5,17.3,1.00,5.950,27.8 +17.6,1.00,5.010,26.1,17.4,1.00,5.060,26.0 +16.6,1.00,3.940,73.6,16.5,1.00,3.920,69.9 +17.1,1.00,7.190,38.0,16.9,1.00,7.230,38.0 +16.1,1.00,7.810,34.5,16.0,1.00,8.060,35.0 +15.9,1.00,8.710,37.6,15.8,1.00,8.950,38.7 +15.2,1.00,8.820,44.6,15.0,1.00,8.850,44.8 +15.0,1.00,9.370,59.2,14.8,1.00,9.410,59.4 +15.1,1.00,10.150,73.4,14.9,1.00,10.200,73.6 +14.9,1.00,9.940,81.2,14.7,1.00,9.990,81.3 +14.8,1.00,9.710,80.8,14.6,1.00,9.760,81.0 +14.8,1.00,9.450,86.4,14.6,1.00,9.510,86.5 +14.8,0.99,9.110,93.0,14.6,0.99,9.170,93.2 +14.9,0.99,8.750,95.1,14.8,0.99,8.810,95.3 +15.2,0.99,8.520,100.2,15.0,0.99,8.610,100.5 +15.7,0.99,7.620,106.5,15.5,0.99,7.820,107.1 +15.8,0.99,8.640,103.7,15.7,0.99,8.800,104.2 +16.2,0.99,7.710,110.3,16.0,0.99,8.030,110.7 +16.4,0.99,8.680,105.3,16.2,0.99,8.850,106.2 +16.4,0.99,8.880,105.5,16.2,0.99,9.120,106.3 +16.7,0.99,8.490,104.0,16.6,0.99,8.780,105.2 +16.8,0.99,9.150,107.9,16.6,0.99,9.480,108.9 +17.4,0.99,8.980,115.0,17.2,0.99,9.070,115.6 +17.6,0.99,8.800,112.1,17.4,0.99,9.120,113.4 +17.9,0.99,9.090,108.3,17.8,0.99,9.420,111.0 +18.4,0.99,10.150,119.1,18.3,0.99,10.500,119.8 +18.5,0.99,11.530,125.7,18.4,0.99,11.900,126.4 +18.6,0.99,11.970,129.0,18.5,0.99,12.430,129.7 +18.6,0.99,12.250,132.0,18.6,0.99,12.860,132.8 +18.8,0.99,11.890,133.7,18.7,0.99,12.530,135.1 +19.0,0.99,11.960,141.3,19.0,0.99,12.670,142.4 +19.3,0.99,12.370,146.2,19.4,0.99,13.150,147.8 +19.6,0.99,13.160,151.2,19.7,0.99,13.940,152.3 +19.5,0.99,12.790,153.4,19.5,0.99,13.660,154.4 +19.7,0.99,12.540,156.6,19.8,0.99,13.260,157.8 +19.8,0.99,12.860,157.6,19.8,0.99,13.630,158.6 +20.1,0.99,12.650,160.7,20.1,0.99,13.360,161.7 +20.0,0.99,11.960,162.0,20.1,0.99,12.900,164.2 +19.8,0.99,12.580,165.2,19.7,0.99,13.280,166.8 +19.5,0.99,12.930,165.2,19.7,0.99,13.830,166.5 +20.2,0.99,12.580,170.4,20.3,0.99,13.490,171.6 +20.2,0.99,11.780,170.8,20.3,0.99,12.720,172.3 +20.3,0.99,13.120,175.6,20.5,0.99,14.060,176.5 +20.3,0.99,12.490,178.2,20.4,0.99,13.400,178.8 +20.2,0.99,12.010,186.9,20.4,0.99,12.920,187.4 +20.4,0.99,11.260,192.0,20.5,0.99,12.160,193.4 +20.1,0.99,8.830,191.1,20.4,0.99,9.900,194.0 +20.8,0.99,10.530,196.1,21.2,0.99,11.740,202.0 +21.1,0.99,10.060,196.2,21.4,0.99,11.120,202.8 +21.5,0.99,9.480,197.3,21.6,0.99,9.610,199.7 +21.8,0.99,10.530,198.5,21.9,0.99,10.550,200.5 +19.6,0.99,6.060,197.5,19.7,0.99,6.790,200.5 +18.4,0.99,3.950,346.8,18.4,0.99,3.950,348.7 +18.4,0.99,5.320,23.4,18.7,0.99,4.730,23.6 +17.8,0.99,5.970,27.5,18.0,0.99,5.390,30.1 +17.7,0.99,7.450,35.9,18.0,0.99,6.420,40.7 +17.5,0.99,6.570,35.7,18.0,0.99,5.690,39.1 +17.3,0.99,6.400,41.8,17.7,0.99,5.660,47.2 +17.2,0.99,7.230,44.3,17.4,0.99,6.680,47.7 +17.2,0.99,7.280,46.6,17.4,0.99,6.930,50.7 +16.7,0.99,7.340,44.1,16.8,0.99,7.370,49.4 +16.2,0.99,6.700,43.6,16.1,0.99,6.930,46.4 +16.2,0.99,8.170,38.0,16.1,0.99,8.160,40.5 +15.4,0.99,9.390,29.7,15.3,0.99,9.460,30.9 +14.7,0.99,10.630,34.3,14.5,0.99,10.660,34.6 +13.2,0.99,12.810,34.3,13.1,0.99,12.790,34.6 +13.4,0.99,13.330,43.3,13.2,0.99,13.360,43.5 +13.3,0.99,13.700,51.6,13.2,0.99,13.730,51.8 +13.8,0.99,14.260,53.8,13.6,0.99,14.310,53.8 +14.0,0.99,13.440,57.4,13.8,0.99,13.490,57.5 +14.1,0.99,13.760,57.5,13.9,0.99,13.800,57.6 +13.7,0.99,13.210,60.0,13.6,0.99,13.250,60.2 +14.0,0.99,12.790,60.4,13.8,0.99,12.830,60.5 +14.3,0.99,12.680,61.3,14.1,0.99,12.740,61.5 +14.2,0.99,12.690,59.7,14.0,0.99,12.750,59.9 +14.0,0.99,12.900,55.5,13.8,0.99,12.960,55.7 +13.9,0.99,13.370,57.0,13.7,0.99,13.440,57.1 +13.6,0.99,13.930,56.8,13.5,0.99,13.990,57.1 +13.7,0.99,13.020,56.0,13.5,0.99,13.070,56.3 +13.8,0.99,13.030,57.5,13.6,0.99,13.080,57.8 +14.0,0.99,12.880,60.5,13.9,0.99,12.930,60.7 +14.1,0.99,13.110,63.7,14.0,0.99,13.150,63.8 +14.3,0.99,12.940,66.0,14.1,0.99,12.980,66.1 +14.6,0.99,12.440,68.6,14.4,0.99,12.480,68.8 +14.9,0.99,11.490,71.0,14.7,0.99,11.530,71.2 +15.1,0.99,11.410,74.2,14.9,0.99,11.460,74.4 +15.4,0.99,10.810,74.7,15.2,0.99,10.910,75.1 +15.8,0.99,10.860,81.8,15.6,0.99,11.020,82.3 +16.2,0.99,10.080,84.9,16.1,0.99,10.300,85.9 +16.6,0.99,9.960,86.2,16.5,0.99,10.300,88.4 +18.4,0.99,8.440,125.0,18.9,0.99,8.110,141.3 +20.5,0.99,7.820,183.2,20.5,0.99,8.630,185.9 +18.7,0.99,5.050,270.9,18.8,0.99,5.160,265.1 +17.5,0.99,5.280,297.8,17.8,0.99,5.270,290.6 +15.9,0.99,8.120,311.4,16.0,0.99,8.000,305.9 +15.8,0.99,7.490,325.8,15.6,0.99,7.450,325.0 +16.3,0.99,7.300,328.2,16.1,0.99,7.280,327.7 +16.8,0.99,6.730,329.1,16.7,0.99,6.890,326.7 +16.8,0.99,6.150,339.9,16.7,0.99,6.220,338.3 +17.2,0.99,7.210,335.8,17.0,0.99,7.220,335.4 +16.8,0.99,7.110,344.6,16.6,0.99,7.280,344.4 +15.9,0.99,6.660,3.0,15.7,0.99,6.730,2.8 +14.8,0.99,6.560,15.1,14.7,0.99,6.560,14.8 +14.1,0.99,7.840,10.8,14.0,0.99,7.830,10.7 +13.6,0.99,8.920,0.4,13.5,0.99,8.970,0.4 +13.2,0.99,9.730,356.0,13.1,0.99,9.790,356.0 +12.8,0.99,8.980,351.1,12.7,0.99,9.010,351.1 +12.4,0.99,8.670,346.0,12.2,0.99,8.700,346.0 +11.9,0.99,9.240,341.1,11.7,0.99,9.280,341.0 +11.2,0.99,11.230,337.0,11.0,0.99,11.270,337.1 +10.5,0.99,9.690,341.4,10.3,0.99,9.730,341.4 +10.1,0.99,11.660,332.3,9.9,0.99,11.670,332.2 +9.6,0.99,10.220,337.0,9.4,0.99,10.230,337.1 +9.1,0.99,10.200,342.9,8.9,0.99,10.210,343.0 +9.1,0.99,11.090,350.9,8.9,0.99,11.110,351.0 +9.0,0.99,11.660,345.6,8.8,0.99,11.680,345.7 +9.4,0.99,10.050,345.2,9.2,0.99,10.080,345.2 +9.5,0.99,9.500,339.2,9.3,0.99,9.510,339.5 +10.2,0.99,8.540,340.4,10.0,0.99,8.550,340.7 +11.0,0.99,8.350,336.9,10.8,0.99,8.370,337.2 +11.7,0.99,8.190,334.4,11.5,0.99,8.210,334.7 +12.2,0.99,7.450,335.3,12.0,0.99,7.460,335.6 +12.5,0.99,7.120,334.8,12.3,0.99,7.130,335.1 +12.6,0.99,7.280,340.2,12.5,0.99,7.280,340.5 +12.5,0.99,7.340,347.7,12.3,0.99,7.350,347.9 +12.5,0.99,7.060,3.3,12.3,0.99,7.070,3.3 +12.1,0.99,6.620,6.1,11.9,0.99,6.610,6.1 +12.0,0.99,6.340,9.8,11.8,0.99,6.330,9.9 +11.8,0.99,5.820,16.2,11.6,0.99,5.820,16.2 +11.7,0.99,5.290,15.6,11.5,0.99,5.290,15.7 +11.4,0.99,5.390,18.1,11.2,0.99,5.370,18.3 +10.9,0.99,4.870,13.9,10.8,0.99,4.840,14.4 +10.9,0.99,4.430,8.5,10.7,0.99,4.410,9.1 +10.7,0.99,4.580,11.9,10.6,0.99,4.570,12.6 +10.7,0.99,4.660,14.5,10.5,0.99,4.640,15.0 +10.6,0.99,4.180,23.0,10.4,0.99,4.160,23.5 +10.5,1.00,4.400,26.1,10.3,1.00,4.380,26.7 +10.4,1.00,4.570,29.7,10.2,1.00,4.540,30.3 +10.5,1.00,4.270,35.1,10.3,1.00,4.250,35.8 +10.7,1.00,3.800,35.3,10.5,1.00,3.790,36.1 +10.9,1.00,3.580,31.4,10.7,1.00,3.570,32.3 +11.1,1.00,3.190,29.8,10.9,1.00,3.180,31.0 +11.9,1.00,2.370,42.6,11.7,1.00,2.370,43.2 +12.5,0.99,1.940,72.5,12.3,0.99,1.940,72.9 +13.0,0.99,1.930,102.6,12.8,0.99,1.930,102.5 +13.2,0.99,1.590,116.9,13.1,0.99,1.580,116.6 +13.5,0.99,1.630,125.0,13.3,0.99,1.620,124.8 +13.7,0.99,1.680,125.9,13.5,0.99,1.670,126.0 +13.7,0.99,2.060,129.9,13.5,0.99,2.060,129.7 +13.7,0.99,2.140,126.0,13.5,0.99,2.140,126.0 +13.8,0.99,2.340,120.9,13.6,0.99,2.350,120.7 +13.9,0.99,2.100,118.3,13.8,0.99,2.120,118.4 +14.1,0.99,1.880,121.4,13.9,0.99,1.900,121.4 +14.2,0.99,1.840,114.2,14.0,0.99,1.860,114.3 +14.2,0.99,1.750,98.9,14.0,0.99,1.810,99.8 +14.0,0.99,1.530,81.9,13.9,0.99,1.600,86.3 +13.9,0.99,1.400,48.4,13.8,0.99,1.420,58.5 +13.7,1.00,2.230,29.0,13.6,1.00,2.100,35.9 +13.5,1.00,2.380,25.5,13.5,1.00,2.240,32.3 +13.2,1.00,2.930,22.0,13.3,1.00,2.750,26.9 +12.7,1.00,4.320,19.0,12.9,1.00,4.060,21.6 +12.5,1.00,4.400,25.8,12.7,1.00,4.170,27.3 +12.1,1.00,5.560,21.9,12.5,1.00,5.340,22.5 +12.3,1.00,5.530,23.1,12.7,1.00,5.460,23.3 +13.1,1.00,4.550,12.5,13.2,1.00,4.390,13.2 +13.4,1.00,4.370,353.2,13.3,1.00,4.400,354.9 +14.3,1.00,4.680,337.6,14.1,1.00,4.690,337.8 +15.1,1.00,4.640,335.1,14.9,1.00,4.650,335.4 +15.7,1.00,4.700,330.1,15.5,1.00,4.720,330.5 +16.3,1.00,5.260,328.5,16.1,1.00,5.290,328.8 +16.8,1.00,7.020,333.7,16.6,1.00,7.060,333.8 +16.9,1.00,8.500,340.6,16.7,1.00,8.540,341.0 +15.3,1.00,11.260,12.3,15.1,1.00,11.330,12.4 +14.4,1.00,11.510,14.7,14.3,1.00,11.590,14.8 +12.2,1.00,16.120,13.1,12.0,1.00,16.180,13.3 +11.0,1.00,14.400,13.5,10.8,1.00,14.490,13.6 +10.4,1.00,15.040,10.2,10.2,1.00,15.130,10.3 +9.9,1.00,12.880,6.0,9.7,1.00,12.950,6.1 +9.8,1.00,11.940,6.1,9.6,1.00,12.020,6.2 +10.2,1.00,13.320,2.1,10.0,1.00,13.390,2.2 +9.5,1.00,14.040,9.6,9.3,1.00,14.110,9.8 +8.8,1.00,13.500,10.6,8.6,1.00,13.560,10.6 +8.2,1.00,12.600,11.3,8.0,1.00,12.640,11.4 +7.7,1.00,11.990,10.6,7.5,1.00,12.010,10.7 +7.1,1.00,11.020,13.3,6.9,1.00,11.050,13.3 +6.7,1.00,10.980,15.0,6.5,1.00,11.010,15.0 +6.8,1.00,9.530,8.8,6.6,1.00,9.550,8.8 +7.0,1.00,7.580,359.4,6.8,1.00,7.600,359.4 +7.5,1.00,6.700,350.7,7.3,1.00,6.720,350.9 +8.0,1.00,4.960,333.6,7.9,1.00,4.970,334.1 +9.3,1.00,6.910,333.1,9.1,1.00,6.930,333.4 +9.9,1.00,7.310,328.7,9.7,1.00,7.340,328.9 +10.6,1.00,6.470,327.5,10.4,1.00,6.510,327.6 +11.1,1.00,5.200,337.6,10.9,1.00,5.250,337.1 +12.1,1.00,6.400,329.8,11.9,1.00,6.450,329.6 +12.4,1.00,5.400,325.8,12.2,1.00,5.430,325.8 +12.6,1.00,3.690,323.1,12.4,1.00,3.720,323.0 +12.7,1.00,2.810,319.6,12.5,1.00,2.800,318.6 +12.6,1.00,1.090,291.2,12.4,1.00,1.100,288.7 +12.8,1.00,2.050,234.3,12.7,1.00,2.070,234.1 +13.0,1.00,2.620,222.3,12.8,1.00,2.640,222.4 +13.2,1.00,3.010,225.5,13.0,1.00,3.040,225.6 +13.4,1.00,4.170,218.3,13.2,1.00,4.190,218.2 +13.6,1.00,5.170,210.8,13.4,1.00,5.230,210.7 +13.8,1.00,6.090,211.8,13.6,1.00,6.180,211.8 +13.9,1.00,5.680,222.9,13.8,1.00,5.780,222.5 +13.8,1.00,5.630,224.9,13.7,1.00,5.780,224.4 +14.0,1.00,5.130,221.8,13.8,1.00,5.290,221.0 +14.1,1.00,4.830,223.5,14.0,1.00,5.060,222.2 +14.5,1.00,5.080,213.5,14.5,1.00,5.400,212.9 +15.0,1.00,6.670,209.4,14.8,1.00,6.710,209.6 +15.1,1.00,6.040,199.2,14.9,1.00,6.160,198.0 +15.2,1.00,7.780,188.5,15.1,1.00,7.950,188.6 +15.6,1.00,7.330,190.8,15.4,1.00,7.340,190.6 +15.8,1.00,7.190,188.6,15.6,1.00,7.230,188.7 +16.1,1.00,7.810,187.6,15.9,1.00,7.850,187.3 +16.0,1.00,8.990,177.6,15.8,1.00,9.030,177.6 +16.2,1.00,9.240,171.3,16.0,1.00,9.310,171.4 +16.2,1.00,10.190,167.4,16.0,1.00,10.260,167.6 +16.3,1.00,9.500,168.8,16.1,1.00,9.580,168.8 +16.4,1.00,10.840,167.1,16.3,1.00,10.960,167.0 +16.7,1.00,10.960,169.6,16.6,1.00,11.120,169.4 +16.8,0.99,12.380,163.0,16.6,0.99,12.560,163.2 +17.3,0.99,13.000,170.4,17.1,0.99,13.250,170.3 +17.2,0.99,11.970,164.9,17.0,0.99,12.230,165.0 +16.9,0.99,13.340,157.3,16.8,0.99,13.580,157.7 +17.4,0.99,14.810,167.4,17.3,0.99,15.180,167.5 +17.8,0.99,14.770,169.7,17.7,0.99,15.140,169.8 +17.5,0.99,13.870,163.0,17.4,0.99,14.290,163.3 +17.3,0.99,14.760,161.8,17.2,0.99,15.100,162.1 +17.7,0.99,15.240,167.0,17.6,0.99,15.590,167.3 +18.0,0.99,15.520,168.0,17.9,0.99,15.930,168.2 +18.3,0.99,14.040,169.5,18.2,0.99,14.480,169.6 +18.4,0.99,13.510,169.5,18.3,0.99,14.100,169.5 +18.5,0.99,14.680,165.2,18.4,0.99,15.250,165.7 +18.6,0.99,12.630,170.3,18.6,0.99,13.190,170.7 +18.5,0.99,11.960,173.8,18.4,0.99,12.640,174.0 +18.1,0.99,16.370,178.5,18.0,0.99,16.900,178.7 +19.1,0.99,17.130,176.8,19.0,0.99,17.510,177.2 +19.4,0.99,13.690,182.2,19.3,0.99,14.150,182.5 +19.4,0.99,13.330,188.5,19.3,0.99,13.760,188.8 +19.4,0.99,13.550,188.5,19.3,0.99,14.020,188.8 +19.5,0.99,13.490,188.3,19.4,0.99,13.980,188.7 +19.6,0.99,14.080,193.4,19.5,0.99,14.630,193.8 +19.4,0.99,13.660,196.2,19.4,0.99,14.340,196.6 +19.3,0.99,11.730,211.7,19.3,0.99,12.390,211.3 +19.3,0.99,11.320,213.4,19.3,0.99,12.030,212.7 +19.2,0.99,11.480,220.8,19.2,0.99,12.180,220.7 +19.5,0.99,9.850,237.1,19.4,0.99,10.420,236.8 +19.5,0.99,9.930,241.2,19.5,0.99,10.700,240.2 +14.5,0.99,12.850,342.8,14.5,0.99,13.060,341.6 +14.4,0.99,9.950,5.2,14.3,0.99,10.010,5.2 +14.3,0.99,12.030,19.0,14.1,0.99,12.140,19.0 +13.9,0.99,13.840,27.7,13.7,0.99,13.950,27.7 +13.3,1.00,14.200,30.9,13.1,1.00,14.290,31.0 +12.7,1.00,15.370,36.5,12.6,1.00,15.460,36.6 +11.9,1.00,14.870,39.0,11.8,1.00,14.950,39.1 +11.7,1.00,13.790,45.8,11.5,1.00,13.860,45.9 +11.6,1.00,12.820,44.6,11.4,1.00,12.870,44.8 +11.6,1.00,11.420,43.1,11.4,1.00,11.470,43.2 +12.0,1.00,9.870,42.8,11.8,1.00,9.910,42.9 +12.6,1.00,8.790,49.2,12.4,1.00,8.830,49.2 +13.6,1.00,9.000,53.2,13.4,1.00,9.040,53.1 +14.1,1.00,9.320,63.0,14.0,1.00,9.360,62.6 +14.3,1.00,8.570,68.3,14.2,1.00,8.600,68.0 +14.7,1.00,8.610,73.6,14.6,1.00,8.630,73.5 +15.0,1.00,8.660,73.4,14.8,1.00,8.690,73.2 +15.4,1.00,9.640,72.1,15.2,1.00,9.690,72.0 +15.5,1.00,11.230,75.3,15.3,1.00,11.300,75.3 +15.4,1.00,11.470,74.8,15.2,1.00,11.560,74.9 +15.1,1.00,12.510,75.1,14.9,1.00,12.580,75.2 +14.6,1.00,12.930,74.7,14.4,1.00,13.000,74.7 +14.3,1.00,13.480,79.3,14.1,1.00,13.550,79.4 +14.3,1.00,13.030,86.0,14.1,1.00,13.110,86.1 +14.4,1.00,13.480,90.9,14.2,1.00,13.570,90.9 +14.4,1.00,13.670,92.6,14.2,1.00,13.770,92.7 +14.5,1.00,13.830,94.0,14.3,1.00,13.930,94.2 +14.5,0.99,13.920,96.0,14.3,0.99,14.030,96.1 +14.7,0.99,14.010,101.8,14.5,0.99,14.120,101.9 +14.7,0.99,13.590,103.6,14.5,0.99,13.690,103.7 +14.8,0.99,13.710,106.8,14.6,0.99,13.820,106.9 +14.8,0.99,13.560,108.1,14.6,0.99,13.660,108.2 +15.0,0.99,12.830,106.8,14.8,0.99,12.930,106.9 +15.0,0.99,12.370,98.4,14.8,0.99,12.460,98.6 +14.8,0.99,13.280,93.9,14.6,0.99,13.370,94.1 +14.7,0.99,16.870,111.6,14.5,0.99,16.970,111.7 +15.0,0.99,16.450,104.2,14.8,0.99,16.590,104.5 +14.7,0.99,14.380,95.7,14.5,0.99,14.450,95.8 +14.9,0.99,14.620,94.0,14.7,0.99,14.700,94.2 +15.1,0.99,15.290,97.6,14.9,0.99,15.380,97.8 +15.5,0.99,15.680,100.6,15.3,0.99,15.780,100.7 +16.0,0.99,15.930,105.4,15.8,0.99,16.060,105.6 +16.1,0.99,15.080,104.3,15.9,0.99,15.380,104.6 +16.3,0.99,15.540,105.6,16.1,0.99,15.840,105.9 +16.6,0.99,15.980,105.0,16.5,0.99,16.320,105.4 +16.9,0.99,14.010,115.6,16.7,0.99,14.380,115.7 +17.3,0.99,14.700,117.0,17.2,0.99,15.070,117.4 +18.1,0.99,14.340,123.7,18.1,0.99,14.860,124.5 +18.4,0.99,14.550,125.0,18.4,0.99,15.200,126.0 +18.5,0.98,15.090,131.3,18.4,0.98,15.690,131.9 +18.6,0.98,14.740,133.1,18.6,0.98,15.440,133.4 +18.7,0.98,13.220,142.8,18.7,0.98,13.930,143.5 +18.8,0.98,14.950,152.4,18.8,0.98,15.680,152.6 +19.3,0.98,16.010,155.0,19.3,0.98,16.780,155.1 +19.2,0.98,14.280,143.4,19.2,0.98,14.960,144.2 +19.4,0.98,14.000,147.3,19.4,0.98,14.770,148.2 +19.6,0.98,14.490,151.1,19.7,0.98,15.270,151.9 +20.0,0.98,14.660,150.8,20.1,0.98,15.490,152.5 +19.7,0.98,12.790,157.8,19.7,0.98,13.570,158.9 +20.1,0.98,12.950,164.2,20.2,0.98,13.840,165.8 +20.5,0.98,13.160,169.6,20.7,0.98,14.210,171.5 +20.8,0.98,12.690,179.3,20.9,0.98,13.600,180.9 +21.3,0.98,11.640,188.9,21.2,0.98,12.710,188.8 +20.8,0.98,9.740,198.1,20.8,0.98,10.430,200.9 +21.3,0.98,10.170,208.7,21.5,0.98,11.030,212.1 +21.2,0.98,10.050,226.0,21.1,0.98,10.350,227.8 +20.0,0.98,8.200,237.9,19.9,0.98,9.210,238.8 +19.3,0.98,8.350,236.7,19.2,0.98,8.220,238.5 +20.0,0.98,7.500,268.0,19.9,0.98,7.980,270.9 +20.8,0.99,6.940,1.6,21.0,0.99,7.410,1.3 +21.6,0.99,8.990,13.5,21.5,0.99,9.030,14.2 +20.3,0.99,7.320,21.6,20.4,0.99,7.540,21.5 +19.6,0.99,9.060,20.7,19.6,0.99,9.300,20.5 +18.1,0.99,8.960,35.9,18.1,0.99,10.000,35.3 +17.4,0.99,9.940,32.1,17.5,0.99,10.550,33.2 +17.3,0.99,11.010,33.9,17.2,0.99,11.350,34.3 +16.6,0.99,10.730,43.6,16.4,0.99,11.360,43.9 +16.2,0.99,11.360,38.5,16.1,0.99,11.650,39.0 +16.1,0.99,10.050,54.4,16.0,0.99,10.390,54.5 +16.3,0.99,11.380,49.6,16.2,0.99,11.680,49.9 +15.8,0.99,11.800,47.0,15.7,0.99,12.330,48.0 +15.8,0.99,10.820,47.7,15.6,0.99,11.070,48.3 +15.7,0.99,10.010,46.7,15.5,0.99,10.100,46.9 +15.6,0.99,10.620,43.7,15.4,0.99,10.720,43.8 +16.0,0.99,10.920,40.4,15.8,0.99,10.980,40.4 +15.7,0.99,10.090,30.3,15.6,0.99,10.160,30.2 +15.6,0.99,10.150,29.7,15.4,0.99,10.190,29.8 +15.1,0.99,10.790,28.0,14.9,0.99,10.850,28.3 +15.0,0.99,11.140,32.4,14.8,0.99,11.170,32.4 +14.6,0.99,10.540,30.0,14.4,0.99,10.560,30.2 +13.9,0.99,10.700,30.9,13.8,0.99,10.720,31.0 +14.0,0.99,10.280,34.4,13.8,0.99,10.310,34.5 +13.8,0.99,9.950,31.3,13.6,0.99,9.970,31.5 +13.6,0.99,9.480,32.2,13.4,0.99,9.500,32.4 +13.4,0.99,10.250,31.6,13.2,0.99,10.270,31.8 +13.2,0.99,10.360,29.7,13.0,0.99,10.370,29.9 +12.8,0.99,10.140,30.9,12.7,0.99,10.160,31.0 +12.7,0.99,9.480,27.7,12.5,0.99,9.500,27.8 +12.4,0.99,9.930,26.7,12.2,0.99,9.950,26.9 +12.3,0.99,9.700,27.6,12.1,0.99,9.730,27.7 +12.1,0.99,9.320,23.0,11.9,0.99,9.330,23.2 +11.8,0.99,10.030,21.7,11.6,0.99,10.040,21.9 +11.4,0.99,9.700,18.9,11.2,0.99,9.710,19.1 +10.6,0.99,10.170,20.5,10.5,0.99,10.150,20.6 +10.4,0.99,8.370,18.9,10.3,0.99,8.370,19.2 +10.5,0.99,7.620,25.3,10.3,0.99,7.620,25.5 +10.9,0.99,6.010,19.0,10.7,0.99,6.010,19.4 +11.6,0.99,4.540,16.3,11.4,0.99,4.550,16.6 +13.1,0.99,4.730,10.6,12.9,0.99,4.770,10.5 +14.1,0.99,1.840,355.3,13.9,0.99,1.890,355.4 +15.3,0.99,2.930,342.6,15.1,0.99,3.030,342.5 +16.1,0.99,4.430,328.8,15.9,0.99,4.410,329.3 +16.8,0.99,4.400,331.1,16.6,0.99,4.430,331.4 +17.2,0.99,5.170,341.7,17.1,0.99,5.160,341.8 +17.4,0.99,5.420,5.6,17.3,0.99,5.260,12.1 +16.8,0.99,6.000,32.6,16.7,0.99,6.190,33.3 +16.3,0.99,6.180,34.9,16.2,0.99,6.390,35.6 +15.8,0.99,7.290,41.7,15.6,0.99,7.300,41.9 +15.4,0.99,6.950,45.8,15.2,0.99,6.960,46.2 +15.2,0.99,7.730,59.0,15.0,0.99,7.720,59.2 +14.8,0.99,7.410,66.2,14.7,0.99,7.460,66.6 +15.0,0.99,7.470,73.8,14.8,0.99,7.550,74.1 +14.8,0.99,8.180,79.7,14.6,0.99,8.230,79.9 +14.7,0.99,7.770,74.9,14.6,0.99,7.800,75.1 +14.6,0.99,8.100,76.4,14.5,0.99,8.130,76.6 +14.6,0.99,8.260,77.5,14.4,0.99,8.290,77.6 +14.6,0.99,7.970,76.3,14.4,0.99,8.000,76.5 +14.8,0.99,8.350,83.6,14.6,0.99,8.400,83.8 +14.9,0.99,8.260,86.9,14.7,0.99,8.320,87.1 +15.1,0.99,8.120,87.2,14.9,0.99,8.210,87.5 +15.2,0.99,7.960,88.6,15.0,0.99,8.050,88.9 +15.4,0.99,8.000,87.1,15.2,0.99,8.110,87.6 +15.9,0.99,8.290,87.2,15.7,0.99,8.310,87.5 +15.8,0.99,8.670,86.6,15.7,0.99,8.700,86.8 +16.0,0.99,9.210,89.3,15.8,0.99,9.240,89.5 +16.2,0.98,9.100,88.0,16.0,0.98,9.120,88.2 +16.3,0.98,8.470,89.2,16.1,0.98,8.480,89.4 +16.6,0.98,7.440,93.9,16.4,0.98,7.470,94.1 +16.5,0.98,8.730,92.3,16.3,0.98,8.840,93.1 +16.7,0.98,8.480,91.7,16.5,0.98,8.680,92.5 +16.9,0.98,9.280,91.5,16.8,0.98,9.570,92.1 +17.1,0.98,8.460,86.1,17.0,0.98,8.780,87.3 +17.7,0.98,8.740,99.5,17.6,0.98,9.480,100.5 +18.2,0.98,9.750,116.7,18.6,0.98,9.970,132.3 +19.3,0.98,9.780,146.1,19.8,0.98,10.210,160.3 +19.3,0.98,10.350,156.6,19.7,0.98,10.380,164.7 +19.2,0.98,9.480,165.5,19.5,0.98,9.950,172.0 +18.8,0.98,9.970,160.3,19.0,0.98,10.760,167.5 +18.6,0.98,8.490,159.4,18.8,0.98,9.680,165.0 +19.6,0.98,9.830,172.7,20.1,0.98,10.820,180.9 +20.2,0.98,10.310,176.1,20.3,0.98,10.830,182.0 +19.7,0.98,10.230,182.3,20.0,0.98,11.440,190.8 +19.8,0.98,8.950,181.3,20.1,0.98,9.430,191.3 +17.4,0.98,13.160,179.4,18.0,0.98,12.950,182.6 +18.4,0.98,8.380,199.5,18.5,0.98,8.710,204.0 +17.5,0.98,8.280,233.2,17.3,0.98,8.730,233.8 +17.8,0.98,8.710,305.3,17.7,0.98,8.810,305.1 +19.7,0.98,9.940,275.8,19.6,0.98,10.160,275.9 +20.2,0.98,11.390,267.9,20.1,0.98,11.610,268.3 +19.6,0.98,12.600,270.0,19.4,0.98,12.780,270.1 +18.8,0.98,14.030,279.4,18.6,0.98,14.190,279.4 +17.8,0.98,14.050,277.9,17.6,0.98,14.200,277.8 +16.3,0.98,18.610,279.4,16.1,0.98,18.850,279.6 +14.8,0.98,19.730,280.2,14.6,0.98,19.970,280.2 +13.4,0.98,17.840,282.4,13.2,0.98,18.060,282.4 +12.3,0.98,19.200,286.1,12.1,0.98,19.440,286.1 +11.2,0.98,16.860,287.8,11.0,0.98,17.010,287.7 +9.6,0.98,21.630,291.0,9.3,0.98,21.830,291.2 +8.2,0.98,22.020,296.0,8.0,0.98,22.240,296.0 +7.3,0.98,18.710,297.0,7.1,0.98,18.870,297.1 +6.9,0.99,14.490,296.9,6.7,0.99,14.630,297.0 +6.6,0.99,14.750,296.4,6.4,0.99,14.860,296.5 +6.4,0.99,13.140,295.2,6.2,0.99,13.230,295.3 +6.2,0.99,12.810,296.8,6.0,0.99,12.900,296.9 +6.0,0.99,13.040,298.6,5.8,0.99,13.130,298.7 +6.0,0.99,10.900,299.8,5.8,0.99,10.990,300.0 +6.4,0.99,9.430,298.5,6.2,0.99,9.490,298.8 +7.1,0.99,9.100,299.7,6.9,0.99,9.150,299.9 +8.3,0.99,8.750,294.7,8.2,0.99,8.790,294.9 +9.7,0.99,7.890,291.8,9.5,0.99,7.950,291.9 +11.3,0.99,7.450,293.4,11.1,0.99,7.510,293.4 +12.6,0.99,7.690,294.4,12.4,0.99,7.740,294.5 +13.5,0.99,7.240,295.3,13.3,0.99,7.300,295.3 +14.2,0.99,6.710,294.1,14.0,0.99,6.760,294.1 +14.6,0.99,6.160,293.8,14.4,0.99,6.200,293.8 +14.8,0.99,6.430,285.8,14.6,0.99,6.440,286.1 +14.6,0.99,5.880,288.7,14.4,0.99,5.890,288.6 +14.6,0.99,3.570,279.7,14.4,0.99,3.590,279.9 +14.7,0.99,3.060,280.2,14.5,0.99,3.100,280.4 +14.6,0.99,2.690,271.5,14.4,0.99,2.710,272.1 +14.4,0.99,1.520,319.4,14.2,0.99,1.480,316.4 +14.3,0.99,0.540,61.3,14.1,0.99,0.470,63.1 +14.5,0.99,1.330,164.8,14.3,0.99,1.430,175.9 +14.6,0.99,1.780,164.0,14.5,0.99,1.890,170.7 +14.8,0.99,2.510,167.4,14.7,0.99,2.520,170.5 +14.8,0.99,3.380,174.6,14.6,0.99,3.460,175.5 +15.1,0.99,3.620,179.1,14.9,0.99,3.700,180.4 +15.4,0.99,3.990,200.8,15.3,0.99,4.110,202.5 +15.3,0.99,3.790,208.6,15.2,0.99,3.970,208.1 +15.3,0.99,4.040,208.5,15.2,0.99,4.300,207.6 +15.6,0.99,4.540,202.1,15.5,0.99,4.650,203.1 +15.7,0.99,5.420,214.2,15.6,0.99,5.580,214.7 +16.0,0.99,6.430,215.4,15.9,0.99,6.540,216.9 +16.1,0.99,5.930,225.4,16.1,0.99,6.040,227.5 +16.8,0.99,6.520,224.6,16.6,0.99,6.550,224.8 +17.2,0.99,7.350,226.6,17.0,0.99,7.360,226.8 +17.7,0.99,7.600,231.1,17.5,0.99,7.610,231.5 +19.4,0.99,10.890,311.9,19.3,0.99,10.970,311.7 +18.2,0.99,12.540,325.0,18.0,0.99,12.610,324.8 +17.1,0.99,12.360,331.5,16.9,0.99,12.430,331.5 +15.7,0.99,12.500,340.5,15.6,0.99,12.640,340.6 +14.7,0.99,11.880,344.0,14.5,0.99,11.990,344.1 +13.7,0.99,12.800,343.2,13.5,0.99,12.890,343.3 +13.2,1.00,13.120,344.2,13.0,1.00,13.210,344.3 +12.6,1.00,13.260,349.1,12.4,1.00,13.340,349.1 +12.3,1.00,12.820,351.5,12.1,1.00,12.900,351.4 +11.1,1.00,12.170,354.5,10.9,1.00,12.230,354.5 +10.3,1.00,12.460,357.8,10.1,1.00,12.540,357.8 +9.3,1.00,13.880,357.7,9.2,1.00,13.950,357.8 +8.3,1.00,14.300,357.5,8.1,1.00,14.350,357.5 +7.5,1.00,13.100,358.4,7.3,1.00,13.140,358.4 +6.7,1.00,12.180,359.7,6.5,1.00,12.220,359.6 +6.0,1.00,11.450,358.9,5.8,1.00,11.470,358.9 +5.6,1.00,10.620,356.2,5.4,1.00,10.640,356.2 +5.7,1.00,8.460,354.6,5.5,1.00,8.480,354.7 +6.0,1.00,7.560,349.4,5.9,1.00,7.580,349.5 +6.7,1.00,7.250,340.6,6.5,1.00,7.270,340.9 +7.6,1.00,7.840,336.2,7.4,1.00,7.850,336.4 +9.2,1.00,8.760,336.7,9.0,1.00,8.790,336.9 +10.4,1.00,8.850,335.4,10.2,1.00,8.900,335.5 +11.4,1.00,9.850,335.0,11.2,1.00,9.900,335.1 +11.9,1.00,9.440,336.5,11.7,1.00,9.490,336.5 +12.3,1.00,9.240,340.0,12.2,1.00,9.300,340.0 +12.6,1.00,10.290,341.2,12.4,1.00,10.330,341.1 +12.3,1.00,10.100,345.3,12.1,1.00,10.150,345.1 +12.0,1.00,9.800,343.7,11.8,1.00,9.860,343.6 +11.7,1.00,8.660,344.1,11.5,1.00,8.720,344.1 +11.6,1.00,8.500,343.9,11.4,1.00,8.570,344.0 +11.4,1.00,8.520,346.4,11.2,1.00,8.580,346.5 +11.2,1.00,8.140,349.1,11.0,1.00,8.160,349.3 +10.5,1.00,6.610,352.2,10.3,1.00,6.620,352.4 +10.0,1.00,6.570,345.0,9.8,1.00,6.640,345.5 +9.6,1.00,6.480,340.5,9.5,1.00,6.630,342.4 +9.0,1.00,6.890,342.4,8.9,1.00,6.920,343.3 +8.5,1.00,6.430,336.6,8.3,1.00,6.460,337.4 +7.9,1.00,6.630,347.4,7.7,1.00,6.620,347.9 +7.6,1.00,6.610,351.4,7.4,1.00,6.600,351.8 +7.1,1.00,6.520,350.0,7.0,1.00,6.510,350.4 +7.2,1.00,6.040,343.6,7.0,1.00,6.070,344.1 +7.7,1.00,6.190,334.5,7.7,1.00,6.440,336.6 +8.3,1.00,5.920,330.4,8.2,1.00,6.080,332.1 +8.7,1.00,5.470,325.6,8.6,1.00,5.690,327.0 +11.2,1.00,6.650,325.4,11.0,1.00,6.730,325.2 +12.5,1.00,7.950,325.3,12.3,1.00,8.000,325.2 +13.3,1.00,8.000,328.5,13.1,1.00,8.050,328.3 +13.8,1.00,7.170,331.3,13.7,1.00,7.220,331.1 +14.4,1.00,7.850,329.1,14.2,1.00,7.910,329.0 +14.9,1.00,7.900,329.7,14.7,1.00,7.940,329.4 +14.6,1.00,8.570,346.1,14.5,1.00,8.620,345.9 +14.1,1.00,7.190,3.9,13.9,1.00,7.230,3.3 +13.2,1.00,7.150,19.5,13.0,1.00,7.150,19.2 +13.1,1.00,7.370,7.6,12.9,1.00,7.370,7.3 +12.8,1.00,8.060,12.7,12.6,1.00,8.060,12.6 +12.3,1.00,5.260,6.3,12.1,1.00,5.290,6.0 +11.2,1.00,7.950,14.3,11.0,1.00,7.890,14.3 +10.8,1.00,6.860,18.2,10.6,1.00,6.890,18.2 +10.0,1.00,6.630,360.0,9.8,1.00,6.650,0.2 +9.6,1.00,8.710,358.3,9.4,1.00,8.740,358.3 +8.8,1.00,9.260,349.3,8.7,1.00,9.340,349.4 +8.3,1.00,10.400,351.4,8.1,1.00,10.470,351.4 +7.4,1.00,10.170,353.3,7.2,1.00,10.210,353.3 +7.0,1.00,10.360,346.7,6.8,1.00,10.420,346.8 +6.7,1.00,10.720,340.9,6.5,1.00,10.760,341.0 +6.4,1.00,11.640,337.8,6.2,1.00,11.690,337.9 +6.2,1.00,11.740,333.8,6.0,1.00,11.800,333.9 +6.3,1.00,11.130,331.4,6.1,1.00,11.190,331.4 +7.1,1.00,9.820,327.1,6.9,1.00,9.880,327.1 +8.6,1.00,11.070,328.7,8.4,1.00,11.140,328.8 +9.3,1.00,11.620,330.1,9.1,1.00,11.700,330.1 +9.7,1.00,11.390,332.2,9.5,1.00,11.470,332.2 +9.9,1.00,11.330,335.9,9.7,1.00,11.390,335.7 +9.9,1.00,11.800,340.7,9.7,1.00,11.860,340.6 +9.6,1.00,12.080,343.9,9.4,1.00,12.140,343.8 +9.3,1.00,9.600,349.1,9.1,1.00,9.640,348.9 +9.1,1.00,9.830,351.0,8.9,1.00,9.860,351.0 +9.1,1.00,8.910,352.9,8.9,1.00,8.950,352.8 +8.9,1.00,7.190,1.1,8.7,1.00,7.210,1.1 +9.0,1.00,6.250,4.9,8.8,1.00,6.280,4.8 +8.6,1.00,5.420,8.9,8.4,1.00,5.420,9.0 +8.6,1.00,4.390,13.3,8.4,1.00,4.400,13.3 +8.4,1.00,3.610,14.7,8.3,1.00,3.600,14.7 +8.4,1.00,3.350,16.9,8.2,1.00,3.330,17.1 +8.4,1.00,2.680,17.8,8.2,1.00,2.660,18.1 +8.5,1.00,1.980,22.2,8.3,1.00,1.960,22.9 +8.5,1.00,1.520,9.3,8.3,1.00,1.490,10.4 +8.7,1.00,0.940,50.9,8.5,1.00,0.940,54.3 +9.0,1.00,0.540,92.2,8.8,1.00,0.580,96.9 +9.3,1.00,0.500,151.9,9.1,1.00,0.570,150.4 +9.6,1.00,1.130,202.8,9.5,1.00,1.170,199.6 +10.1,1.00,1.420,183.4,9.9,1.00,1.490,181.7 +11.3,1.00,2.960,185.7,11.1,1.00,2.990,185.5 +12.2,1.00,3.920,180.8,12.0,1.00,3.940,181.0 +12.8,1.00,5.000,182.3,12.7,1.00,5.020,182.5 +13.3,1.00,6.170,178.0,13.2,1.00,6.180,178.4 +13.8,1.00,7.080,181.8,13.6,1.00,7.110,182.0 +14.3,1.00,8.120,185.5,14.1,1.00,8.160,185.5 +14.5,0.99,8.680,184.3,14.4,0.99,8.740,184.2 +14.9,0.99,9.840,185.2,14.7,0.99,9.930,185.2 +15.3,0.99,11.430,185.7,15.2,0.99,11.510,185.7 +15.7,0.99,11.640,187.0,15.6,0.99,11.790,187.0 +16.0,0.99,12.570,185.6,15.9,0.99,12.790,185.5 +16.2,0.99,11.900,187.6,16.1,0.99,12.190,187.7 +16.4,0.99,12.140,184.8,16.2,0.99,12.460,184.7 +16.7,0.99,13.310,188.4,16.6,0.99,13.720,188.5 +16.8,0.99,13.880,188.7,16.7,0.99,14.240,188.8 +17.0,0.99,13.820,188.7,16.9,0.99,14.330,188.7 +17.2,0.99,14.720,188.8,17.1,0.99,15.220,188.8 +17.2,0.99,14.390,191.6,17.2,0.99,14.920,191.9 +17.6,0.99,15.210,188.4,17.5,0.99,15.780,188.5 +17.7,0.99,14.310,188.7,17.7,0.99,14.860,188.8 +17.9,0.99,14.730,194.6,17.9,0.99,15.340,194.7 +17.9,0.99,13.890,194.3,17.9,0.99,14.510,194.8 +18.1,0.99,13.500,197.3,18.0,0.99,14.190,197.7 +18.2,0.99,12.800,197.9,18.2,0.99,13.470,198.3 +18.7,0.99,13.470,200.3,18.6,0.99,13.760,200.6 +18.9,0.99,12.590,200.2,18.8,0.99,12.930,200.4 +18.9,0.99,12.150,200.6,18.8,0.99,12.520,200.9 +18.9,0.99,12.270,200.6,18.8,0.99,12.670,201.1 +18.9,0.99,12.390,194.5,18.8,0.99,12.820,194.8 +18.9,0.99,13.080,191.6,18.8,0.99,13.510,192.2 +18.7,0.99,13.770,187.7,18.7,0.99,14.430,188.7 +18.7,0.99,14.010,192.1,18.7,0.99,14.650,192.7 +18.7,0.99,14.490,188.9,18.7,0.99,15.200,189.6 +18.7,0.99,14.630,191.9,18.7,0.99,15.320,192.5 +18.7,0.99,12.950,195.0,18.6,0.99,13.580,195.4 +18.6,0.99,12.040,197.7,18.6,0.99,12.710,198.1 +18.6,0.99,12.280,198.3,18.7,0.99,13.070,198.8 +18.6,0.99,11.000,202.5,18.6,0.99,11.760,203.1 +18.6,0.99,11.600,206.2,18.6,0.99,12.350,206.6 +18.5,0.99,9.860,206.9,18.6,0.99,10.710,207.5 +18.9,0.99,10.310,208.0,19.0,0.99,11.310,209.3 +18.9,0.99,8.490,239.8,18.9,0.99,9.010,239.6 +18.3,0.99,9.280,264.2,18.4,0.99,9.980,261.9 +17.3,0.99,9.250,272.6,17.8,0.99,10.280,269.3 +16.4,0.99,8.670,298.3,16.3,0.99,9.310,297.9 +17.3,0.99,10.640,315.6,17.1,0.99,11.020,318.4 +15.7,0.99,12.550,341.6,15.6,0.99,12.870,342.4 +16.4,1.00,11.030,346.6,16.2,1.00,11.290,347.1 +17.6,1.00,10.850,352.6,17.4,1.00,10.920,353.0 +18.0,1.00,11.370,348.4,17.8,1.00,11.420,348.6 +18.2,1.00,12.230,348.9,18.0,1.00,12.290,349.0 +18.0,1.00,12.180,348.9,17.8,1.00,12.250,349.2 +17.8,1.00,11.350,353.0,17.6,1.00,11.450,353.1 +17.4,1.00,12.180,353.1,17.2,1.00,12.250,353.3 +16.3,1.00,11.370,359.4,16.1,1.00,11.580,359.5 +14.9,1.00,12.410,355.8,14.7,1.00,12.500,355.8 +13.8,1.00,11.610,0.2,13.6,1.00,11.670,0.2 +13.1,1.00,14.130,3.4,12.9,1.00,14.220,3.5 +12.3,1.00,15.100,8.8,12.2,1.00,15.170,8.9 +11.7,1.00,15.270,12.8,11.5,1.00,15.330,12.8 +10.9,1.00,14.490,14.7,10.8,1.00,14.570,14.8 +10.6,1.00,14.010,19.1,10.4,1.00,14.100,19.1 +10.1,1.00,13.570,22.1,9.9,1.00,13.650,22.1 +9.7,1.00,13.370,27.3,9.5,1.00,13.450,27.3 +9.3,1.00,13.040,30.7,9.2,1.00,13.110,30.8 +9.0,1.00,12.830,33.0,8.8,1.00,12.880,33.1 +8.4,1.00,11.930,35.7,8.3,1.00,11.980,35.9 +8.3,1.00,11.810,36.4,8.1,1.00,11.850,36.6 +8.3,1.00,9.900,40.9,8.1,1.00,9.930,41.1 +8.6,1.00,8.500,37.2,8.4,1.00,8.510,37.5 +9.0,1.00,5.620,38.8,8.8,1.00,5.640,39.2 +9.5,1.00,3.950,32.4,9.3,1.00,3.970,32.4 +10.5,1.00,1.970,12.3,10.3,1.00,1.990,12.4 +11.2,1.00,1.360,283.8,11.0,1.00,1.360,284.6 +11.6,1.00,1.860,254.6,11.4,1.00,1.840,255.3 +12.3,1.00,1.800,241.8,12.1,1.00,1.810,244.0 +12.7,1.00,2.000,217.9,12.6,1.00,1.970,219.6 +13.3,1.00,1.370,229.1,13.1,1.00,1.350,232.4 +13.2,1.00,1.740,180.6,13.0,1.00,1.690,181.0 +13.2,1.00,3.040,170.2,13.0,1.00,2.980,170.4 +13.2,1.00,2.720,167.8,13.0,1.00,2.690,168.0 +13.3,1.00,2.520,157.7,13.1,1.00,2.490,157.7 +13.4,1.00,1.870,148.3,13.2,1.00,1.860,148.2 +13.5,1.00,1.480,140.8,13.3,1.00,1.480,140.6 +13.4,1.00,2.240,129.9,13.2,1.00,2.250,129.9 +13.4,1.00,2.440,128.8,13.2,1.00,2.460,129.0 +13.4,1.00,2.920,123.8,13.3,1.00,2.960,123.9 +13.6,1.00,3.140,111.0,13.4,1.00,3.210,111.8 +13.6,1.00,4.010,105.0,13.4,1.00,4.070,105.5 +13.5,1.00,4.850,104.1,13.4,1.00,4.890,104.7 +13.7,1.00,4.990,106.0,13.5,1.00,5.060,106.6 +13.8,1.00,4.720,105.7,13.7,1.00,4.800,106.3 +14.0,1.00,6.860,111.2,13.9,1.00,6.940,111.5 +14.0,1.00,6.910,107.2,13.8,1.00,7.000,107.5 +13.9,1.00,6.830,106.6,13.8,1.00,6.930,107.0 +14.0,1.00,7.050,108.1,13.8,1.00,7.150,108.4 +14.2,1.00,7.210,111.1,14.0,1.00,7.230,111.3 +14.3,1.00,7.290,112.8,14.1,1.00,7.300,113.0 +14.4,1.00,7.290,114.4,14.2,1.00,7.310,114.5 +14.5,1.00,7.510,115.6,14.3,1.00,7.530,115.8 +14.6,1.00,7.320,116.3,14.4,1.00,7.340,116.4 +14.7,1.00,7.490,117.5,14.5,1.00,7.510,117.7 +14.6,1.00,8.090,119.4,14.5,1.00,8.130,119.6 +14.7,1.00,8.390,123.0,14.5,1.00,8.430,123.2 +14.8,1.00,8.640,124.3,14.7,1.00,8.690,124.5 +15.1,1.00,8.710,125.8,14.9,1.00,8.760,126.0 +15.2,1.00,8.830,126.8,15.0,1.00,8.880,127.0 +15.4,1.00,8.000,126.6,15.2,1.00,8.070,127.1 +15.6,1.00,8.200,128.7,15.5,1.00,8.400,128.8 +15.7,1.00,7.780,131.2,15.6,1.00,8.030,132.1 +15.8,1.00,7.340,130.8,15.7,1.00,7.660,132.1 +16.0,1.00,7.590,128.5,15.9,1.00,7.850,129.4 +16.1,1.00,7.410,123.5,16.0,1.00,7.740,124.5 +16.1,1.00,8.030,125.2,16.0,1.00,8.220,126.5 +16.3,1.00,8.390,125.7,16.2,1.00,8.710,127.3 +16.2,1.00,8.040,117.6,16.1,1.00,8.300,119.1 +16.3,1.00,8.430,118.1,16.3,1.00,8.770,119.7 +16.4,1.00,8.120,112.5,16.3,1.00,8.380,114.0 +16.4,1.00,8.120,106.2,16.3,1.00,8.320,107.8 +16.4,1.00,8.720,107.9,16.3,1.00,9.010,109.1 +16.6,1.00,8.810,110.6,16.4,1.00,8.850,111.0 +16.6,1.00,9.200,109.9,16.4,1.00,9.270,110.1 +16.4,1.00,9.930,109.5,16.3,1.00,9.980,109.8 +16.4,1.00,10.030,111.5,16.3,1.00,10.110,111.8 +16.3,1.00,10.110,112.2,16.1,1.00,10.190,112.5 +16.0,1.00,9.370,110.2,15.8,1.00,9.400,110.7 +16.2,1.00,9.080,114.7,16.0,1.00,9.350,115.2 +16.2,1.00,10.140,118.5,16.1,1.00,10.400,118.9 +16.4,1.00,10.960,123.2,16.3,1.00,11.260,123.7 +16.6,0.99,10.500,126.0,16.4,0.99,10.820,126.6 +16.7,0.99,10.070,128.9,16.6,0.99,10.410,129.6 +17.1,0.99,10.460,133.8,17.0,0.99,10.890,134.6 +17.4,0.99,9.420,145.3,17.4,0.99,10.040,146.3 +17.8,0.99,11.160,144.8,17.7,0.99,11.590,145.9 +17.9,0.99,10.080,151.7,17.9,0.99,10.740,152.9 +17.8,0.99,8.160,146.2,17.8,0.99,8.780,148.5 +18.6,0.99,10.220,159.3,18.7,0.99,10.910,161.6 +18.7,0.99,9.200,159.1,18.6,0.99,9.430,160.4 +18.3,0.99,10.070,154.3,18.4,0.99,10.540,157.2 +18.4,0.99,10.190,142.6,18.4,0.99,10.620,145.5 +18.8,0.99,9.890,142.5,19.0,0.99,10.620,151.1 +18.9,0.99,10.380,148.0,19.1,0.99,11.170,155.6 +18.8,0.99,10.940,141.9,19.1,0.99,11.730,150.9 +18.5,0.99,10.990,135.5,18.7,0.99,11.470,141.4 +18.8,0.99,9.750,147.3,18.7,0.99,10.200,149.3 +18.9,0.99,11.160,149.2,18.9,0.99,11.580,151.1 +19.2,0.99,10.270,147.1,19.1,0.99,10.680,149.4 +18.1,0.99,9.140,133.8,18.0,0.99,9.500,136.6 +19.1,0.99,11.720,158.3,19.0,0.99,12.250,158.9 +19.1,0.99,12.320,157.7,19.0,0.99,12.810,158.3 +19.0,0.99,12.850,147.8,19.1,0.99,13.340,149.5 +18.5,0.99,12.620,146.5,18.6,0.99,13.290,148.4 +18.4,0.99,11.640,143.1,18.4,0.99,12.310,144.6 +18.7,0.99,13.150,153.6,18.7,0.99,13.910,154.5 +18.6,0.98,13.060,152.4,18.5,0.98,13.720,153.4 +18.7,0.98,12.990,152.8,18.7,0.98,13.730,153.9 +18.7,0.98,12.030,153.5,18.6,0.98,12.680,154.5 +18.8,0.98,12.360,155.8,18.8,0.98,13.000,156.8 +18.8,0.98,12.010,155.5,18.8,0.98,12.670,156.6 +18.5,0.98,10.870,153.3,18.6,0.98,11.540,155.1 +18.7,0.98,11.050,155.3,18.7,0.98,11.790,156.9 +19.0,0.98,8.340,176.6,19.1,0.98,9.720,177.1 +19.1,0.99,7.230,188.8,19.1,0.99,7.720,188.4 +19.5,0.99,8.640,191.5,19.5,0.99,9.050,191.4 +19.7,0.99,8.400,189.6,19.7,0.99,8.810,189.9 +20.3,0.99,11.470,175.9,20.3,0.99,11.900,177.3 +16.5,0.99,6.140,288.3,16.6,0.99,5.830,283.2 +14.3,0.99,11.310,345.6,14.1,0.99,11.310,345.6 +13.9,0.99,12.240,348.8,13.7,0.99,12.270,348.8 +13.9,0.99,11.620,345.2,13.7,0.99,11.660,345.2 +13.9,0.99,11.060,346.8,13.7,0.99,11.100,346.6 +14.0,0.99,10.070,348.5,13.8,0.99,10.110,348.4 +14.4,0.99,8.590,348.8,14.3,0.99,8.630,348.5 +15.0,0.99,7.260,352.6,14.8,0.99,7.280,352.4 +14.9,0.99,5.960,356.6,14.8,0.99,6.380,354.5 +15.6,0.99,9.680,344.6,15.6,0.99,10.130,343.8 +15.2,0.99,13.880,341.2,15.0,0.99,14.040,341.2 +14.2,0.99,14.690,342.5,14.0,0.99,14.840,342.6 +13.3,0.99,13.900,351.4,13.1,0.99,14.000,351.5 +12.2,0.99,14.450,355.6,12.0,0.99,14.550,355.6 +11.3,0.99,13.270,0.1,11.1,0.99,13.390,359.9 +10.8,0.99,12.200,359.2,10.6,0.99,12.320,359.2 +10.0,0.99,12.300,1.4,9.8,0.99,12.370,1.3 +9.7,0.99,11.540,2.7,9.5,0.99,11.630,2.5 +9.5,0.99,11.090,2.0,9.3,0.99,11.160,1.9 +9.3,0.99,11.160,1.6,9.1,0.99,11.210,1.5 +8.9,0.99,10.320,0.2,8.7,0.99,10.360,0.1 +8.7,0.99,9.950,357.3,8.6,0.99,9.980,357.1 +8.7,0.99,8.180,350.6,8.5,0.99,8.220,350.5 +8.9,0.99,7.450,343.3,8.7,0.99,7.480,343.2 +9.1,0.99,8.630,333.4,8.9,0.99,8.670,333.5 +9.3,0.99,7.630,329.2,9.2,0.99,7.690,329.1 +11.2,0.99,10.270,323.6,11.0,0.99,10.350,323.7 +12.1,0.99,10.080,328.1,11.9,0.99,10.150,328.0 +13.1,0.99,9.990,328.5,12.9,0.99,10.060,328.4 +13.6,0.99,10.480,330.6,13.4,0.99,10.540,330.4 +13.9,0.99,9.870,332.2,13.7,0.99,9.930,332.0 +14.0,0.99,8.440,328.1,13.8,0.99,8.490,328.2 +13.7,0.99,8.730,346.4,13.5,0.99,8.760,346.3 +13.3,0.99,8.090,347.5,13.1,0.99,8.120,347.4 +13.0,0.99,7.150,348.8,12.8,0.99,7.180,348.8 +12.6,0.99,5.520,6.9,12.4,0.99,5.490,6.2 +12.4,0.99,4.660,8.2,12.2,0.99,4.680,8.1 +12.4,0.99,4.980,7.8,12.2,0.99,4.980,7.9 +11.9,0.99,4.760,12.1,11.7,0.99,4.730,12.3 +11.5,0.99,4.110,13.3,11.3,0.99,4.140,14.2 +11.2,0.99,4.110,11.8,11.2,0.99,4.370,13.9 +11.0,0.99,3.690,22.8,10.8,0.99,3.690,24.0 +11.2,0.99,3.820,38.8,11.0,0.99,3.810,39.7 +11.3,1.00,3.820,42.1,11.2,1.00,3.810,42.9 +11.3,1.00,3.660,43.6,11.2,1.00,3.650,44.7 +11.5,1.00,3.150,49.2,11.3,1.00,3.160,50.8 +11.7,1.00,3.250,42.2,11.5,1.00,3.250,44.5 +11.8,1.00,3.290,39.4,11.6,1.00,3.280,43.1 +12.1,1.00,2.860,43.6,11.9,1.00,2.870,47.1 +12.5,1.00,2.410,63.5,12.3,1.00,2.430,65.1 +13.3,1.00,1.840,99.3,13.1,1.00,1.830,99.6 +13.8,1.00,1.700,129.4,13.6,1.00,1.690,129.5 +14.2,1.00,1.870,133.4,14.0,1.00,1.850,133.4 +14.4,1.00,2.100,151.9,14.3,1.00,2.080,151.9 +14.7,1.00,2.410,150.9,14.5,1.00,2.370,151.0 +14.9,1.00,2.770,144.6,14.7,1.00,2.740,144.6 +14.8,1.00,3.270,142.7,14.6,1.00,3.230,142.6 +14.8,1.00,2.900,142.2,14.6,1.00,2.860,141.8 +14.9,1.00,2.410,140.1,14.7,1.00,2.380,139.1 +15.0,1.00,2.230,130.6,14.8,1.00,2.210,129.6 +15.0,1.00,2.250,121.1,14.8,1.00,2.240,120.2 +15.1,1.00,1.690,116.7,14.9,1.00,1.700,115.1 +15.1,1.00,2.040,98.3,14.9,1.00,2.180,95.7 +15.0,1.00,1.940,77.8,14.9,1.00,2.110,77.4 +14.7,1.00,2.230,48.2,14.6,1.00,2.380,50.9 +14.2,1.00,2.880,20.3,14.2,1.00,2.850,25.2 +13.8,1.00,3.220,11.5,13.9,1.00,3.070,15.5 +13.5,1.00,3.590,13.4,13.6,1.00,3.350,14.1 +12.2,1.00,5.450,8.2,12.6,1.00,5.240,10.5 +11.8,1.00,5.180,19.8,12.6,1.00,5.150,22.8 +11.6,1.00,6.850,31.9,11.7,1.00,7.470,35.9 +12.8,1.00,7.030,44.4,13.2,1.00,7.450,47.3 +13.0,1.00,6.100,52.1,13.0,1.00,6.550,55.5 +13.6,1.00,5.810,64.3,13.6,1.00,6.260,65.1 +14.9,1.00,5.570,85.3,14.8,1.00,5.610,84.6 +15.2,1.00,4.790,91.6,15.0,1.00,4.780,91.3 +15.3,1.00,3.850,100.8,15.2,1.00,3.830,100.5 +15.5,1.00,3.160,107.4,15.3,1.00,3.140,107.0 +15.6,1.00,2.560,113.4,15.4,1.00,2.550,113.0 +15.7,1.00,2.630,113.6,15.5,1.00,2.630,113.2 +15.6,1.00,2.920,112.3,15.4,1.00,2.920,112.0 +15.5,1.00,2.810,113.2,15.3,1.00,2.840,112.6 +15.5,1.00,2.730,110.8,15.4,1.00,2.920,108.4 +15.4,1.00,2.940,107.6,15.2,1.00,2.960,107.9 +15.4,1.00,3.660,107.8,15.2,1.00,3.700,107.6 +15.4,1.00,3.960,109.6,15.2,1.00,3.970,109.7 +15.4,1.00,4.360,99.5,15.2,1.00,4.380,100.0 +15.7,1.00,5.150,104.6,15.5,1.00,5.350,105.4 +15.6,1.00,5.570,110.3,15.5,1.00,5.710,110.7 +15.5,1.00,5.540,109.1,15.3,1.00,5.660,109.4 +15.5,1.00,5.810,113.9,15.3,1.00,5.950,114.1 +15.4,1.00,5.810,115.0,15.3,1.00,5.920,115.3 +15.4,1.00,6.030,118.0,15.3,1.00,6.160,118.2 +15.4,1.00,6.630,119.6,15.2,1.00,6.770,119.8 +15.3,1.00,6.780,123.8,15.2,1.00,6.910,123.9 +15.3,1.00,6.550,122.7,15.1,1.00,6.680,122.9 +15.3,1.00,6.050,125.2,15.1,1.00,6.140,125.4 +15.3,1.00,5.740,129.8,15.1,1.00,5.830,130.0 +15.6,1.00,5.520,134.7,15.4,1.00,5.530,134.8 +15.6,1.00,5.570,138.4,15.4,1.00,5.570,138.6 +15.6,1.00,5.450,144.2,15.4,1.00,5.460,144.3 +15.6,1.00,5.450,150.8,15.5,1.00,5.450,150.9 +15.7,1.00,5.490,154.5,15.5,1.00,5.500,154.7 +15.6,1.00,5.810,156.9,15.5,1.00,5.820,157.0 +15.5,1.00,6.040,158.4,15.4,1.00,6.060,158.6 +15.6,1.00,6.280,160.4,15.4,1.00,6.300,160.6 +15.6,1.00,6.460,162.3,15.4,1.00,6.470,162.5 +15.7,1.00,6.360,164.5,15.5,1.00,6.380,164.7 +15.8,1.00,6.540,169.5,15.6,1.00,6.560,169.7 +15.9,1.00,6.590,172.7,15.7,1.00,6.620,172.9 +16.0,1.00,6.910,176.6,15.8,1.00,7.060,177.0 +16.0,1.00,6.550,179.9,15.9,1.00,6.780,180.6 +16.2,1.00,6.630,181.3,16.1,1.00,6.880,182.0 +16.3,1.00,6.650,183.2,16.2,1.00,6.920,183.7 +16.4,1.00,6.250,184.8,16.4,1.00,6.630,186.1 +16.5,1.00,6.470,183.3,16.4,1.00,6.620,184.3 +16.7,1.00,6.780,189.3,16.6,1.00,6.950,189.3 +16.8,1.00,6.530,189.1,16.7,1.00,6.690,189.8 +16.9,1.00,6.700,187.9,16.9,1.00,6.880,188.9 +17.1,1.00,7.040,187.3,17.0,1.00,7.180,188.0 +17.2,1.00,6.540,187.8,17.1,1.00,6.610,188.9 +17.4,1.00,7.170,192.6,17.3,1.00,7.380,194.1 +17.8,1.00,7.200,194.8,17.6,1.00,7.260,194.9 +18.0,1.00,8.140,194.5,17.8,1.00,8.180,194.6 +18.0,1.00,8.090,195.3,17.8,1.00,8.130,195.5 +18.0,1.00,8.000,194.3,17.8,1.00,8.070,194.5 +18.0,1.00,7.780,192.8,17.9,1.00,7.860,193.0 +18.0,1.00,7.520,190.8,17.9,1.00,7.640,191.2 +17.8,1.00,7.690,188.9,17.7,1.00,8.020,189.7 +17.7,0.99,7.870,186.1,17.7,0.99,8.360,187.3 +17.6,0.99,7.530,184.2,17.6,0.99,8.060,185.6 +17.6,0.99,8.280,183.9,17.6,0.99,8.680,184.8 +17.8,0.99,9.050,185.8,17.7,0.99,9.530,186.2 +17.8,0.99,9.510,188.5,17.8,0.99,9.990,189.2 +17.9,0.99,10.560,190.7,17.9,0.99,11.130,191.3 +17.8,0.99,10.660,190.6,17.8,0.99,11.270,191.1 +18.0,0.99,11.140,195.4,17.9,0.99,11.730,195.8 +17.8,0.99,10.670,196.9,17.7,0.99,11.180,197.2 +18.0,0.99,11.010,194.3,17.9,0.99,11.510,194.7 +17.9,0.99,10.760,190.5,17.9,0.99,11.320,191.1 +17.9,0.99,9.660,189.1,17.9,0.99,10.240,189.3 +18.1,0.99,10.210,187.2,18.1,0.99,10.760,187.4 +18.2,0.99,10.080,190.0,18.2,0.99,10.710,190.1 +18.2,0.99,8.850,187.3,18.2,0.99,9.420,188.5 +18.3,0.99,8.690,185.5,18.2,0.99,9.190,186.7 +18.4,0.99,8.890,186.2,18.4,0.99,9.400,187.7 +18.6,0.99,7.690,180.4,18.4,0.99,8.000,181.6 +18.8,0.99,8.310,181.3,18.6,0.99,8.580,181.8 +18.8,0.99,8.950,175.5,18.7,0.99,9.350,176.1 +18.8,0.99,8.510,170.8,18.7,0.99,9.030,172.4 +18.9,0.99,9.110,173.2,18.8,0.99,9.580,174.1 +18.9,0.99,9.800,168.9,18.8,0.99,10.230,169.8 +18.6,0.99,9.890,167.0,18.6,0.99,10.440,168.1 +18.9,0.99,10.260,165.7,18.9,0.99,10.930,167.0 +18.7,0.99,10.650,165.0,18.7,0.99,11.280,166.5 +18.8,0.99,10.520,166.9,18.7,0.99,11.040,167.6 +18.7,0.99,10.480,165.8,18.7,0.99,11.120,166.3 +18.7,0.99,10.470,167.2,18.7,0.99,11.120,168.1 +18.8,0.99,10.520,171.1,18.8,0.99,11.240,172.3 +18.8,0.99,10.550,169.4,18.9,0.99,11.340,171.3 +18.9,0.99,10.720,171.6,18.9,0.99,11.510,172.8 +19.0,0.99,10.850,171.7,19.1,0.99,11.580,173.2 +19.0,0.99,10.710,175.4,19.1,0.99,11.460,177.4 +19.0,0.99,10.330,171.0,19.1,0.99,11.070,172.7 +19.2,0.99,10.710,169.9,19.3,0.99,11.570,172.0 +19.2,0.99,10.330,166.4,19.2,0.99,11.080,168.4 +19.4,0.99,10.580,161.9,19.6,0.99,11.420,164.8 +19.3,0.99,9.900,160.9,19.4,0.99,10.760,162.9 +19.2,0.99,9.640,163.4,19.3,0.99,10.430,165.8 +19.3,0.99,8.940,165.2,19.4,0.99,9.770,168.2 +19.6,0.99,9.590,170.4,19.6,0.99,10.090,171.5 +19.7,0.99,9.900,168.5,19.6,0.99,10.420,169.4 +19.6,0.98,10.550,168.6,19.6,0.98,11.060,169.3 +19.6,0.98,9.950,170.2,19.6,0.98,10.490,171.1 +19.7,0.98,10.140,173.9,19.7,0.98,10.710,174.8 +19.4,0.98,9.530,167.6,19.4,0.98,10.060,169.1 +19.1,0.98,9.490,163.2,19.1,0.98,10.350,165.3 +18.7,0.98,9.940,165.3,18.8,0.98,10.760,167.1 +18.5,0.98,9.650,170.4,18.4,0.98,10.610,172.0 +18.3,0.98,8.850,167.8,18.1,0.98,9.710,170.2 +18.6,0.98,7.570,165.5,18.6,0.98,8.610,168.5 +19.5,0.98,12.020,179.3,19.7,0.98,12.370,181.5 +19.3,0.98,11.120,183.7,19.8,0.98,11.670,185.5 +18.5,0.98,10.000,191.5,18.6,0.98,10.730,193.6 +19.0,0.98,8.560,185.5,19.0,0.98,8.830,186.7 +18.6,0.98,6.760,188.2,18.7,0.98,7.270,192.0 +19.0,0.98,7.960,196.2,19.6,0.98,8.220,195.8 +19.0,0.98,8.500,196.3,19.0,0.98,8.800,196.0 +18.6,0.98,10.040,195.9,19.3,0.98,10.290,196.8 +18.2,0.99,7.250,218.6,17.9,0.99,7.730,219.4 +18.3,0.99,4.490,230.2,18.3,0.99,4.780,228.2 +18.6,0.99,2.340,209.7,18.6,0.99,2.560,212.3 +18.8,0.99,3.500,188.4,18.7,0.99,3.740,190.2 +19.2,0.99,4.760,181.0,19.1,0.99,4.930,183.2 +19.4,0.99,5.820,188.9,19.3,0.99,6.300,191.5 +19.6,0.98,5.170,199.6,19.4,0.98,5.610,201.2 +19.6,0.98,5.250,192.5,19.4,0.98,5.290,193.4 +19.7,0.98,4.440,184.6,19.6,0.98,4.460,185.9 +19.5,0.98,4.750,181.1,19.4,0.98,4.760,182.5 +19.4,0.98,4.420,182.0,19.2,0.98,4.450,182.6 +19.2,0.99,4.650,179.1,19.1,0.99,4.680,179.6 +19.2,0.99,4.240,194.0,19.2,0.99,4.230,195.9 +19.3,0.99,4.070,201.9,19.2,0.99,4.100,202.3 +19.4,0.99,2.170,218.1,19.3,0.99,2.180,217.9 +19.4,0.99,3.390,348.1,19.3,0.99,3.540,346.7 +19.8,0.99,4.740,13.6,19.7,0.99,5.090,14.3 +20.3,0.99,9.170,29.4,20.1,0.99,9.360,29.8 +19.0,0.99,10.550,43.8,19.1,0.99,11.530,43.5 +19.2,0.99,11.340,45.7,19.1,0.99,12.330,46.5 +18.4,0.99,12.620,55.1,18.3,0.99,13.110,55.6 +18.2,0.99,12.730,65.6,18.1,0.99,13.140,66.1 +18.2,0.99,12.390,76.2,18.0,0.99,12.780,76.3 +17.8,0.99,13.160,78.4,17.7,0.99,13.510,78.7 +17.7,0.99,11.600,87.1,17.6,0.99,11.930,87.4 +17.7,0.99,10.450,92.1,17.6,0.99,10.750,92.5 +17.6,0.99,9.730,96.1,17.4,0.99,10.040,96.1 +17.4,0.99,9.020,97.3,17.3,0.99,9.260,97.7 +17.5,0.99,8.160,99.4,17.4,0.99,8.380,99.8 +17.9,0.99,7.950,103.4,17.7,0.99,7.970,103.5 +17.9,0.99,7.210,101.2,17.7,0.99,7.220,101.3 +17.9,0.99,6.630,93.4,17.7,0.99,6.640,93.7 +17.8,0.99,6.610,81.7,17.6,0.99,6.600,81.9 +17.8,0.99,6.690,81.0,17.6,0.99,6.670,81.2 +18.0,0.99,6.220,81.8,17.9,0.99,6.210,82.1 +17.9,0.99,7.450,79.4,17.7,0.99,7.440,80.1 +17.9,0.99,8.200,77.0,17.8,0.99,8.260,77.8 +18.0,0.99,7.370,74.6,17.9,0.99,7.390,76.5 +18.3,0.99,7.490,78.8,18.3,0.99,7.740,81.5 +18.1,0.99,7.250,62.9,17.9,0.99,7.300,63.8 +18.1,0.99,7.130,68.1,18.0,0.99,7.300,69.0 +18.1,0.99,7.850,62.8,18.0,0.99,7.980,63.4 +17.6,0.99,8.600,48.0,17.4,0.99,8.650,48.0 +18.4,0.99,10.030,41.4,18.2,0.99,10.160,41.6 +17.8,0.99,13.370,25.9,17.7,0.99,13.470,26.1 +16.2,0.99,16.410,26.1,16.0,0.99,16.480,26.2 +14.8,0.99,15.030,22.4,14.6,0.99,15.100,22.7 +13.6,0.99,14.770,50.8,13.4,0.99,14.820,51.0 +13.4,1.00,14.110,58.8,13.2,1.00,14.190,58.8 +14.0,1.00,12.240,65.3,13.8,1.00,12.300,65.2 +14.5,1.00,12.060,44.7,14.3,1.00,12.100,44.9 +14.9,1.00,8.360,40.4,14.8,1.00,8.410,40.2 +15.7,1.00,6.830,43.0,15.5,1.00,6.860,42.7 +16.5,1.00,6.860,63.1,16.3,1.00,6.920,63.0 +17.8,0.99,8.070,69.9,17.6,0.99,8.080,69.6 +18.5,0.99,7.740,77.2,18.3,0.99,7.790,76.8 +18.1,0.99,6.760,95.1,17.9,0.99,6.780,94.3 +18.1,0.99,6.140,96.4,17.9,0.99,6.220,95.5 +18.7,0.99,6.540,91.0,18.5,0.99,6.620,90.6 +19.2,0.99,8.400,81.5,19.0,0.99,8.570,81.2 +18.9,0.99,7.680,62.6,18.7,0.99,7.760,62.4 +18.2,0.99,7.010,55.5,18.0,0.99,7.150,56.0 +18.0,0.99,7.630,75.0,17.8,0.99,7.670,75.1 +17.8,0.99,8.670,86.2,17.6,0.99,8.700,86.2 +17.5,0.99,8.230,93.8,17.4,0.99,8.260,93.9 +17.2,0.99,7.810,98.4,17.1,0.99,7.930,98.4 +17.1,0.99,8.370,113.2,16.9,0.99,8.470,113.1 +17.1,0.99,7.920,109.7,16.9,0.99,8.010,109.8 +17.0,0.99,8.210,110.9,16.8,0.99,8.320,111.0 +16.9,0.99,8.950,115.0,16.7,0.99,9.050,115.1 +16.8,0.99,9.160,119.9,16.6,0.99,9.260,120.0 +16.9,0.99,9.440,128.3,16.7,0.99,9.540,128.3 +16.9,0.99,9.770,129.0,16.7,0.99,9.870,129.1 +17.0,0.99,9.780,132.6,16.8,0.99,9.900,132.8 +17.0,0.99,9.430,132.6,16.9,0.99,9.540,132.7 +17.1,0.99,9.790,137.3,16.9,0.99,9.920,137.5 +17.4,0.99,9.480,137.6,17.2,0.99,9.640,137.9 +17.8,0.99,10.640,143.2,17.6,0.99,10.710,143.3 +18.0,0.99,10.900,144.0,17.8,0.99,10.970,144.2 +18.0,0.99,11.450,146.2,17.8,0.99,11.530,146.4 +18.2,0.99,11.860,147.8,18.0,0.99,11.960,148.0 +18.3,0.98,11.810,149.1,18.1,0.98,11.900,149.2 +18.5,0.98,12.480,152.4,18.3,0.98,12.610,152.6 +18.6,0.98,11.220,154.4,18.4,0.98,11.450,154.6 +18.7,0.98,11.690,155.9,18.6,0.98,11.960,156.1 +18.9,0.98,11.500,158.3,18.8,0.98,11.770,158.7 +18.9,0.98,9.730,158.5,18.8,0.98,10.080,158.9 +19.0,0.98,9.870,162.2,18.9,0.98,10.310,162.7 +19.1,0.98,10.530,167.0,19.0,0.98,11.000,167.5 +19.2,0.98,10.300,168.2,19.1,0.98,10.880,168.2 +19.1,0.98,10.530,172.2,19.0,0.98,11.160,172.5 +19.4,0.98,10.450,179.5,19.4,0.98,11.010,181.2 +19.8,0.98,10.260,180.1,19.9,0.98,11.040,182.7 +19.5,0.98,8.600,176.7,19.5,0.98,9.460,178.2 +19.7,0.98,10.050,181.4,19.9,0.98,10.950,184.2 +20.0,0.98,10.300,183.7,20.1,0.98,11.130,186.7 +20.1,0.98,9.640,186.7,20.3,0.98,10.380,189.8 +20.0,0.98,10.040,181.3,20.1,0.98,10.890,184.0 +19.7,0.98,8.880,176.8,19.8,0.98,9.710,179.4 +19.6,0.98,8.200,173.1,19.7,0.98,8.980,176.3 +19.8,0.98,8.660,172.1,19.8,0.98,9.340,173.7 +20.3,0.98,9.070,176.1,20.3,0.98,9.470,177.3 +20.1,0.98,8.020,172.7,20.0,0.98,8.490,175.2 +20.5,0.98,7.880,183.3,20.5,0.98,8.290,184.8 +20.5,0.98,7.320,181.5,20.5,0.98,7.690,182.8 +20.2,0.98,7.050,174.1,20.1,0.98,7.370,175.7 +20.3,0.98,6.240,174.5,20.3,0.98,6.600,176.2 +20.1,0.98,6.630,169.4,20.2,0.98,6.750,172.3 +20.4,0.98,5.960,164.5,20.6,0.98,6.200,167.5 +19.4,0.98,6.090,152.6,20.0,0.98,6.220,156.4 +18.8,0.98,6.530,149.5,18.7,0.98,6.570,149.7 +18.9,0.98,5.760,146.0,18.8,0.98,5.780,146.8 +19.1,0.98,6.340,144.0,19.0,0.98,6.450,145.8 +19.1,0.98,6.750,141.6,19.0,0.98,6.770,146.6 +19.0,0.98,5.850,130.6,18.9,0.98,6.220,139.3 +19.6,0.98,6.100,140.0,19.5,0.98,6.120,142.3 +19.1,0.98,5.220,140.4,19.4,0.98,5.380,143.6 +19.4,0.98,5.420,131.8,19.5,0.98,5.340,135.3 +19.7,0.98,4.530,122.6,19.8,0.98,4.570,127.6 +19.4,0.98,3.340,110.6,19.4,0.98,3.490,117.7 +19.6,0.98,3.010,114.8,19.7,0.98,3.110,124.1 +19.4,0.98,3.500,101.0,19.4,0.98,3.430,105.8 +19.7,0.98,2.210,106.4,19.8,0.98,2.250,116.6 +19.7,0.98,1.140,68.8,19.8,0.98,0.930,84.9 +19.4,0.98,2.520,39.3,19.5,0.98,2.190,42.9 +19.7,0.98,2.860,31.7,19.8,0.98,2.520,32.6 +19.9,0.98,2.450,31.9,19.9,0.98,2.210,30.3 +19.9,0.98,2.870,31.0,19.9,0.98,2.740,26.3 +20.0,0.98,2.100,31.3,20.0,0.98,1.950,26.2 +20.1,0.98,1.080,36.0,19.9,0.98,1.080,33.8 +19.9,0.98,0.390,201.6,19.8,0.98,0.360,210.6 +19.7,0.98,0.810,256.8,19.7,0.98,0.850,268.0 +19.6,0.98,1.080,323.1,20.1,0.98,1.470,337.2 +19.8,0.98,0.920,334.8,20.7,0.98,1.520,337.1 +19.2,0.98,1.810,271.7,20.3,0.98,1.750,295.3 +19.1,0.98,3.010,246.5,20.1,0.98,2.540,253.7 +19.4,0.98,3.660,281.4,19.3,0.98,3.700,281.9 +19.5,0.98,2.230,271.9,19.4,0.98,2.290,275.3 +19.4,0.98,6.630,322.3,19.3,0.98,6.790,324.4 +19.6,0.98,6.490,319.2,19.5,0.98,6.550,319.5 +18.9,0.98,5.490,5.6,18.9,0.98,5.600,7.6 +17.9,0.98,7.040,357.1,17.8,0.98,7.180,358.3 +16.0,0.99,13.730,340.4,15.8,0.99,13.860,340.6 +15.0,0.99,13.980,341.6,14.8,0.99,14.110,341.7 +13.9,0.99,16.160,333.2,13.7,0.99,16.230,333.4 +12.4,0.99,15.270,336.2,12.2,0.99,15.340,336.2 +11.8,0.99,14.350,335.5,11.6,0.99,14.430,335.5 +11.7,0.99,14.360,334.5,11.5,0.99,14.430,334.5 +12.1,0.99,12.750,331.1,11.9,0.99,12.850,331.1 +13.2,0.99,13.570,330.2,13.0,0.99,13.670,330.3 +13.8,0.99,14.120,331.1,13.6,0.99,14.210,331.1 +14.2,0.99,13.880,334.0,14.0,0.99,13.980,334.0 +14.1,0.99,14.260,332.6,13.9,0.99,14.350,332.8 +13.9,0.99,13.280,341.8,13.7,0.99,13.360,341.7 +13.6,0.99,12.750,343.5,13.4,0.99,12.820,343.5 +12.9,0.99,13.610,351.2,12.7,0.99,13.660,351.0 +12.0,0.99,13.250,355.9,11.8,0.99,13.320,355.8 +11.6,0.99,12.970,359.7,11.4,0.99,13.040,359.7 +10.8,0.99,13.840,3.8,10.6,0.99,13.890,3.8 +10.3,0.99,13.610,10.8,10.2,0.99,13.670,10.8 +9.9,1.00,14.420,14.9,9.7,1.00,14.490,14.9 +9.2,1.00,14.550,16.3,9.0,1.00,14.630,16.4 +8.8,1.00,14.410,21.2,8.6,1.00,14.490,21.2 +8.4,1.00,14.810,25.1,8.2,1.00,14.880,25.2 +7.9,1.00,14.670,25.5,7.7,1.00,14.740,25.6 +7.5,1.00,14.100,25.6,7.3,1.00,14.150,25.7 +7.1,1.00,12.930,25.7,6.9,1.00,12.980,25.9 +6.4,1.00,12.030,24.2,6.2,1.00,12.060,24.3 +6.2,1.00,10.780,24.2,6.0,1.00,10.800,24.4 +6.3,1.00,8.970,19.8,6.1,1.00,8.990,20.0 +6.9,1.00,8.230,12.6,6.7,1.00,8.250,12.8 +7.9,1.00,8.100,6.8,7.7,1.00,8.140,6.8 +9.3,1.00,7.290,0.9,9.1,1.00,7.320,1.0 +10.8,1.00,6.880,355.7,10.6,1.00,6.930,356.1 +11.7,1.00,7.190,350.2,11.5,1.00,7.220,350.5 +12.3,1.00,7.650,343.6,12.1,1.00,7.670,344.0 +12.7,1.00,7.400,341.3,12.5,1.00,7.430,341.6 +13.0,1.00,7.650,342.3,12.8,1.00,7.670,342.4 +13.1,1.00,8.850,344.9,12.9,1.00,8.880,345.1 +12.8,1.00,9.000,1.4,12.7,1.00,9.020,1.3 +12.6,1.00,8.680,358.2,12.4,1.00,8.700,358.2 +12.2,1.00,9.730,1.9,12.0,1.00,9.750,1.8 +11.9,1.00,10.630,7.5,11.7,1.00,10.650,7.5 +11.5,1.00,11.600,6.8,11.3,1.00,11.630,6.9 +11.0,1.00,12.650,10.9,10.8,1.00,12.700,10.9 +10.0,1.00,12.100,20.7,9.8,1.00,12.140,20.6 +9.8,1.00,11.910,20.9,9.6,1.00,11.950,20.8 +9.4,1.00,11.670,19.8,9.2,1.00,11.700,19.8 +9.0,1.00,10.820,22.5,8.8,1.00,10.860,22.4 +8.7,1.00,10.560,22.0,8.6,1.00,10.590,22.0 +8.4,1.00,9.990,24.8,8.2,1.00,10.010,24.8 +8.0,1.01,9.020,27.0,7.8,1.01,9.040,27.0 +7.8,1.01,8.560,29.4,7.6,1.01,8.570,29.5 +7.7,1.01,7.860,28.0,7.5,1.01,7.870,28.1 +7.8,1.01,6.780,26.9,7.6,1.01,6.790,26.9 +8.1,1.01,5.300,17.4,7.9,1.01,5.340,17.5 +9.2,1.01,4.840,355.2,9.0,1.01,4.870,355.8 +10.1,1.01,4.430,330.6,9.9,1.01,4.420,331.9 +11.5,1.00,5.490,349.3,11.3,1.00,5.520,349.4 +12.3,1.00,6.740,344.7,12.1,1.00,6.770,344.8 +12.7,1.00,6.230,340.4,12.6,1.00,6.250,340.8 +13.2,1.00,6.590,349.6,13.0,1.00,6.610,349.6 +13.3,1.00,7.780,349.4,13.1,1.00,7.790,349.5 +13.2,1.00,6.810,4.5,13.0,1.00,6.810,4.6 +12.8,1.00,6.180,11.4,12.6,1.00,6.190,11.7 +12.6,1.00,5.320,24.6,12.4,1.00,5.320,24.9 +12.5,1.00,4.660,38.0,12.3,1.00,4.650,38.0 +12.6,1.00,3.840,54.9,12.4,1.00,3.840,55.0 +12.7,1.00,3.750,65.0,12.5,1.00,3.740,65.1 +12.6,1.00,3.830,76.2,12.4,1.00,3.830,76.5 +12.6,1.00,3.390,83.2,12.4,1.00,3.390,83.5 +12.5,1.00,3.590,101.3,12.3,1.00,3.590,101.4 +12.6,1.00,3.810,98.7,12.4,1.00,3.790,99.3 +12.8,1.00,3.410,108.7,12.6,1.00,3.430,108.8 +12.8,1.00,4.110,115.7,12.7,1.00,4.120,115.8 +12.8,1.00,3.050,112.6,12.6,1.00,3.090,112.7 +13.0,1.00,4.340,121.4,12.8,1.00,4.380,121.6 +13.1,1.00,5.550,127.7,12.9,1.00,5.540,127.6 +13.3,1.00,4.410,136.1,13.1,1.00,4.440,135.6 +13.4,1.00,5.370,115.6,13.2,1.00,5.410,115.9 +13.6,1.00,4.800,136.8,13.4,1.00,4.810,136.6 +13.9,1.00,4.900,130.1,13.7,1.00,4.920,129.9 +14.1,1.00,5.950,135.8,13.9,1.00,5.950,135.6 +14.0,1.00,6.640,128.3,13.8,1.00,6.650,128.5 +14.1,1.00,7.600,126.4,13.9,1.00,7.620,126.6 +14.2,1.00,7.400,131.9,14.0,1.00,7.420,132.1 +14.3,1.00,8.220,131.8,14.1,1.00,8.230,131.9 +14.3,1.00,8.270,135.0,14.1,1.00,8.310,135.2 +14.5,1.00,8.390,139.8,14.3,1.00,8.430,139.9 +14.7,1.00,8.170,140.8,14.5,1.00,8.220,140.8 +14.9,1.00,8.330,142.2,14.7,1.00,8.390,142.4 +15.1,1.00,8.070,151.7,14.9,1.00,8.110,151.8 +15.2,1.00,8.140,150.1,15.1,1.00,8.170,150.2 +15.5,1.00,8.060,153.4,15.3,1.00,8.090,153.5 +15.7,1.00,7.330,153.3,15.5,1.00,7.390,153.4 +15.9,1.00,7.280,163.3,15.7,1.00,7.330,163.3 +16.0,1.00,6.240,153.2,15.8,1.00,6.360,153.6 +16.2,1.00,5.960,156.4,16.1,1.00,6.010,156.2 +16.3,1.00,5.500,149.4,16.1,1.00,5.550,150.0 +16.4,1.00,5.610,146.2,16.3,1.00,5.700,147.2 +16.4,1.00,6.790,135.4,16.3,1.00,6.910,135.5 +16.6,1.00,7.320,130.6,16.5,1.00,7.400,130.9 +16.6,1.00,7.190,121.2,16.4,1.00,7.300,121.6 +16.7,1.00,8.100,122.4,16.5,1.00,8.220,122.6 +16.8,1.00,7.880,122.0,16.6,1.00,8.020,122.4 +16.9,1.00,8.260,125.7,16.7,1.00,8.280,125.9 +17.1,1.00,8.210,131.0,16.9,1.00,8.240,131.2 +17.2,1.00,8.130,133.6,17.0,1.00,8.160,133.7 +17.1,1.00,8.790,129.0,16.9,1.00,8.820,129.2 +17.2,1.00,8.630,133.1,17.0,1.00,8.660,133.1 +17.3,1.00,8.890,135.2,17.1,1.00,8.920,135.4 +17.0,1.00,7.720,126.1,16.8,1.00,7.730,126.6 +17.2,1.00,8.350,135.6,17.1,1.00,8.380,135.7 +17.3,1.00,8.400,134.3,17.1,1.00,8.450,134.5 +17.3,1.00,7.680,134.4,17.1,1.00,7.830,134.8 +17.4,1.00,8.270,141.6,17.3,1.00,8.500,142.5 +17.5,1.00,8.350,145.0,17.3,1.00,8.490,145.5 +17.5,1.00,8.130,146.1,17.4,1.00,8.410,146.4 +17.5,1.00,8.050,145.3,17.3,1.00,8.320,146.2 +17.4,1.00,8.320,144.6,17.3,1.00,8.630,145.0 +17.6,1.00,8.030,146.1,17.5,1.00,8.370,146.9 +17.7,1.00,8.000,143.7,17.5,1.00,8.310,144.2 +17.8,1.00,8.720,144.9,17.7,1.00,9.080,145.4 +17.8,1.00,8.580,141.1,17.7,1.00,8.890,142.3 +17.9,1.00,8.940,144.3,17.8,1.00,9.310,145.0 +17.8,1.00,8.220,138.8,17.7,1.00,8.480,140.2 +17.9,1.00,8.510,141.7,17.8,1.00,8.850,142.2 +18.0,1.00,8.390,142.6,17.9,1.00,8.690,143.5 +18.0,1.00,7.870,142.3,17.9,1.00,8.180,142.8 +18.4,1.00,8.100,147.3,18.2,1.00,8.160,147.6 +18.4,1.00,8.000,143.7,18.2,1.00,8.040,144.0 +18.4,1.00,8.240,144.6,18.2,1.00,8.290,144.8 +18.4,1.00,7.690,141.8,18.2,1.00,7.740,142.1 +18.4,1.00,7.880,145.7,18.3,1.00,7.950,146.0 +18.4,1.00,7.520,138.7,18.2,1.00,7.580,139.1 +18.2,1.00,7.730,136.1,18.0,1.00,7.940,136.8 +18.1,1.00,8.060,136.7,17.9,1.00,8.290,137.5 +18.1,1.00,8.470,140.3,18.0,1.00,8.730,140.9 +18.2,1.00,7.910,142.4,18.0,1.00,8.140,143.1 +18.3,1.00,8.330,147.1,18.1,1.00,8.620,147.6 +18.3,1.00,8.080,150.8,18.2,1.00,8.400,151.1 +18.3,1.00,8.530,152.4,18.2,1.00,8.990,153.0 +18.3,0.99,8.220,148.6,18.2,0.99,8.680,149.5 +18.3,0.99,7.270,147.8,18.3,0.99,7.780,149.6 +18.5,0.99,8.650,154.7,18.4,0.99,9.180,155.9 +18.5,0.99,8.060,157.4,18.5,0.99,8.530,158.6 +18.7,0.99,7.080,163.5,18.7,0.99,7.840,167.2 +18.8,0.99,6.880,162.4,18.7,0.99,7.260,164.8 +18.8,0.99,6.320,163.1,18.7,0.99,6.570,165.0 +18.8,0.99,6.680,172.8,18.8,0.99,6.890,174.4 +19.0,0.99,6.460,178.3,18.9,0.99,6.760,179.8 +19.2,0.99,6.160,172.2,19.1,0.99,6.350,174.0 +19.3,0.99,7.320,175.2,19.2,0.99,7.490,176.1 +19.3,0.99,7.580,177.9,19.2,0.99,7.930,179.4 +19.3,0.99,7.150,178.8,19.1,0.99,7.230,179.8 +19.2,0.99,7.630,180.7,19.1,0.99,7.840,182.7 +19.3,0.99,7.610,183.1,19.1,0.99,7.760,184.2 +19.4,0.99,6.390,187.3,19.2,0.99,6.550,188.2 +19.3,0.99,6.390,186.8,19.2,0.99,6.570,187.7 +18.9,0.99,6.440,184.1,18.8,0.99,6.800,186.4 +18.9,0.99,7.350,185.4,18.9,0.99,7.890,188.5 +19.0,0.99,8.330,189.1,19.0,0.99,8.920,190.6 +18.9,0.99,9.170,187.5,18.9,0.99,9.660,188.3 +18.9,0.99,9.880,188.3,18.8,0.99,10.290,188.6 +19.1,0.99,9.270,194.1,19.0,0.99,9.780,194.5 +18.7,0.99,8.560,186.2,18.6,0.99,9.110,186.9 +18.7,0.99,9.360,190.3,18.6,0.99,9.970,191.4 +18.7,0.99,7.930,189.2,18.7,0.99,8.600,190.4 +18.9,0.99,5.740,197.8,18.9,0.99,6.430,199.0 +19.2,0.99,7.340,203.1,19.1,0.99,7.640,203.8 +19.5,0.99,8.200,192.7,19.4,0.99,8.400,193.7 +19.2,0.99,8.900,184.8,19.2,0.99,9.430,187.7 +19.2,0.99,5.930,183.4,19.2,0.99,6.170,185.3 +19.3,0.99,6.320,182.1,19.3,0.99,6.460,184.4 +19.4,0.99,7.980,185.1,19.4,0.99,8.550,190.4 +19.6,0.99,8.240,180.4,19.6,0.99,8.710,186.0 +19.5,0.99,7.660,175.9,19.5,0.99,8.210,182.4 +19.9,0.99,6.860,188.9,19.7,0.99,6.920,189.7 +20.0,0.99,5.480,189.5,19.9,0.99,5.520,190.1 +20.0,0.99,5.880,183.1,19.9,0.99,5.920,183.7 +20.1,0.99,6.910,175.3,19.9,0.99,6.980,176.4 +20.1,0.99,7.650,169.1,20.0,0.99,8.040,172.2 +18.4,0.99,13.110,56.1,18.3,0.99,13.210,56.4 +17.7,0.99,13.950,30.0,17.5,0.99,14.230,29.6 +17.9,0.99,5.580,14.0,17.9,0.99,5.490,11.8 +21.7,0.99,14.030,130.4,22.5,0.99,13.620,131.3 +18.7,0.99,10.740,144.2,19.1,0.99,11.340,143.5 +18.7,0.99,10.270,171.4,18.9,0.99,10.860,170.3 +19.0,0.99,7.570,161.4,18.9,0.99,7.950,161.4 +18.9,0.99,6.830,169.5,18.9,0.99,7.510,169.9 +19.1,0.99,6.080,164.3,19.1,0.99,6.250,164.3 +18.8,0.99,3.130,170.8,18.7,0.99,3.350,174.4 +18.5,0.99,1.800,187.4,18.4,0.99,1.950,191.1 +18.4,0.99,0.680,285.5,18.3,0.99,0.870,273.0 +18.2,0.99,1.020,343.6,18.0,0.99,0.830,335.5 +18.1,0.99,1.720,25.7,18.0,0.99,1.600,21.2 +18.1,0.99,2.980,54.3,18.0,0.99,2.760,51.6 +18.2,0.99,3.090,74.0,18.1,0.99,2.890,72.3 +18.0,0.99,3.920,99.6,17.9,0.99,3.730,97.5 +18.0,0.99,3.270,96.5,17.8,0.99,3.150,94.6 +17.9,0.99,3.880,89.7,17.7,0.99,3.790,87.4 +18.3,0.99,4.500,113.3,18.1,0.99,4.460,113.1 +18.5,0.99,4.900,122.3,18.3,0.99,4.840,122.0 +18.5,0.99,5.090,120.8,18.3,0.99,5.060,120.6 +18.5,0.99,5.480,121.0,18.3,0.99,5.450,120.9 +18.6,0.99,5.460,127.0,18.4,0.99,5.430,126.8 +18.5,0.99,5.740,129.4,18.3,0.99,5.730,129.3 +18.2,0.99,6.100,141.8,18.0,0.99,6.120,141.7 +18.3,0.99,6.130,143.3,18.2,0.99,6.250,143.1 +18.3,0.99,6.540,145.1,18.1,0.99,6.620,144.8 +18.4,0.99,6.830,144.2,18.2,0.99,7.190,143.5 +18.3,0.99,6.890,154.0,18.2,0.99,7.020,153.7 +18.2,0.99,5.630,152.3,18.0,0.99,5.670,152.0 +17.3,0.99,7.150,166.3,17.1,0.99,7.300,166.9 +18.2,0.99,6.480,173.4,17.9,0.99,6.620,171.5 +18.3,0.99,4.600,133.3,18.2,0.99,5.020,137.7 +18.5,0.99,6.320,132.5,18.4,0.99,6.560,136.5 +18.7,0.99,5.430,132.7,18.6,0.99,5.960,135.8 +18.7,0.99,5.420,135.2,18.6,0.99,5.990,135.9 +18.7,0.99,5.410,109.5,18.7,0.99,5.920,117.9 +18.8,0.99,8.270,114.9,18.8,0.99,8.560,118.9 +18.8,0.99,6.860,126.2,18.7,0.99,7.390,128.9 +19.3,0.99,9.590,130.1,19.3,0.99,9.830,132.3 +19.3,0.99,9.410,126.5,19.2,0.99,9.710,129.6 +19.1,0.99,6.960,132.7,19.0,0.99,7.430,133.9 +19.5,0.99,6.490,136.7,19.4,0.99,6.790,138.4 +19.6,0.99,5.380,127.6,19.5,0.99,5.450,128.3 +19.5,0.99,4.690,107.8,19.4,0.99,5.050,112.8 +19.6,0.99,5.200,96.7,19.4,0.99,5.480,100.8 +19.6,0.99,7.150,81.9,19.5,0.99,7.610,87.0 +19.7,0.99,8.280,93.7,19.6,0.99,8.760,98.4 +19.3,0.99,9.050,94.7,19.2,0.99,9.560,99.2 +19.5,0.99,10.440,112.1,19.4,0.99,10.820,114.2 +19.5,0.99,9.000,102.1,19.5,0.99,9.380,105.7 +19.4,0.99,8.190,91.6,19.3,0.99,8.530,93.7 +19.4,0.99,8.890,112.2,19.4,0.99,9.220,114.8 +19.1,0.99,7.190,108.0,19.1,0.99,7.550,110.6 +19.3,0.99,6.810,100.1,19.3,0.99,6.650,102.1 +19.4,0.99,6.290,107.0,19.4,0.99,6.460,109.3 +17.3,0.99,10.660,170.4,17.2,0.99,10.580,171.3 +17.9,0.99,3.180,162.3,17.8,0.99,3.510,158.8 +17.7,0.99,5.130,256.4,17.6,0.99,4.990,252.2 +18.0,0.99,2.390,234.5,18.0,0.99,2.380,223.2 +18.0,0.99,5.250,299.6,17.9,0.99,5.200,297.0 +14.8,0.99,14.650,0.1,14.7,0.99,14.690,0.1 +16.2,0.99,8.440,77.3,16.4,0.99,7.600,82.0 +16.3,0.99,7.850,14.0,16.1,0.99,7.820,13.8 +16.4,0.99,10.720,15.2,16.2,0.99,10.700,15.2 +16.4,0.99,8.430,24.8,16.3,0.99,8.480,24.6 +16.5,0.99,7.930,36.6,16.4,0.99,7.940,36.2 +17.4,0.99,5.360,39.9,17.3,0.99,5.410,39.4 +18.8,0.99,8.690,4.2,18.6,0.99,8.770,4.2 +17.8,0.99,11.590,7.0,17.6,0.99,11.590,7.0 +16.1,0.99,11.800,10.4,15.9,0.99,11.800,10.5 +14.3,0.99,11.090,12.5,14.1,0.99,11.100,12.6 +13.1,0.99,9.630,31.7,12.9,0.99,9.650,31.1 +12.4,0.99,9.510,14.1,12.2,0.99,9.480,14.4 +12.3,0.99,8.290,8.2,12.1,0.99,8.260,8.3 +12.1,0.99,9.190,15.4,11.9,0.99,9.180,15.6 +11.7,0.99,10.360,18.1,11.6,0.99,10.360,18.2 +11.9,0.99,8.650,1.0,11.7,0.99,8.670,0.9 +11.4,0.99,8.980,355.9,11.2,0.99,8.990,356.0 +11.3,0.99,8.230,350.2,11.1,0.99,8.230,350.2 +11.3,0.99,7.010,345.3,11.1,0.99,7.000,345.4 +11.1,0.99,6.760,354.1,11.0,0.99,6.750,354.1 +11.1,0.99,6.740,330.4,10.9,0.99,6.740,330.4 +10.9,0.99,8.080,335.2,10.7,0.99,8.080,335.2 +10.8,0.99,8.170,329.1,10.6,0.99,8.180,329.1 +10.3,0.99,9.780,332.3,10.2,0.99,9.810,332.2 +10.1,0.99,9.460,333.8,9.9,0.99,9.490,333.7 +10.0,0.99,9.380,332.6,9.8,0.99,9.400,332.5 +10.1,0.99,9.570,326.7,9.9,0.99,9.600,326.8 +10.1,0.99,11.410,322.9,9.9,0.99,11.450,322.9 +10.6,0.99,9.960,334.9,10.4,0.99,10.010,334.9 +11.0,0.99,10.830,335.7,10.8,0.99,10.870,335.6 +11.3,0.99,10.690,336.8,11.1,0.99,10.730,336.8 +11.4,0.99,11.710,333.3,11.2,0.99,11.760,333.2 +11.0,0.99,10.700,339.7,10.8,0.99,10.740,339.6 +10.9,0.99,10.580,337.6,10.7,0.99,10.610,337.6 +10.4,0.99,9.820,337.9,10.2,0.99,9.830,338.0 +10.2,0.99,9.600,343.8,10.0,0.99,9.620,344.0 +10.1,1.00,9.160,347.6,9.9,1.00,9.180,347.6 +10.3,1.00,8.680,348.7,10.1,1.00,8.720,348.8 +10.5,1.00,9.510,347.7,10.3,1.00,9.540,347.8 +9.9,1.00,9.350,0.7,9.7,1.00,9.360,0.6 +9.5,1.00,9.130,355.9,9.3,1.00,9.150,355.9 +9.3,1.00,8.660,354.6,9.1,1.00,8.670,354.7 +9.5,1.00,7.330,356.0,9.3,1.00,7.340,356.2 +9.6,1.00,6.870,351.3,9.4,1.00,6.890,351.7 +9.5,1.00,7.620,353.9,9.3,1.00,7.650,354.1 +9.8,1.00,7.680,352.4,9.6,1.00,7.690,352.7 +9.5,1.00,7.140,354.2,9.3,1.00,7.140,354.6 +9.5,1.00,6.200,353.1,9.3,1.00,6.190,353.6 +9.8,1.00,4.810,343.3,9.6,1.00,4.790,344.2 +10.3,1.00,3.840,340.0,10.1,1.00,3.820,341.1 +10.9,1.00,3.020,329.5,10.7,1.00,2.990,330.5 +11.6,1.00,2.810,283.5,11.4,1.00,2.760,284.2 +13.5,1.00,2.770,266.5,13.3,1.00,2.770,267.1 +14.7,1.00,2.600,265.9,14.5,1.00,2.600,267.1 +15.6,1.00,2.520,261.0,15.4,1.00,2.540,262.0 +16.1,1.00,1.750,214.7,15.9,1.00,1.710,216.1 +16.4,1.00,2.950,199.6,16.2,1.00,2.920,200.3 +16.6,1.00,3.360,190.7,16.4,1.00,3.310,191.1 +16.3,0.99,4.100,190.5,16.2,0.99,4.060,190.7 +16.4,0.99,4.020,180.0,16.2,0.99,3.960,180.1 +16.5,0.99,4.080,175.1,16.4,0.99,4.030,175.0 +16.6,0.99,4.110,172.8,16.4,0.99,4.050,172.6 +16.7,0.99,3.670,171.2,16.5,0.99,3.610,170.9 +16.8,0.99,4.190,164.4,16.6,0.99,4.150,163.9 +16.6,0.99,5.010,153.7,16.5,0.99,5.020,151.6 +16.5,0.99,5.130,146.7,16.4,0.99,5.220,145.9 +16.6,0.99,5.850,142.3,16.5,0.99,5.930,142.2 +16.8,0.99,7.670,138.1,16.6,0.99,7.780,138.1 +16.8,0.99,8.510,141.2,16.6,0.99,8.640,141.2 +16.9,0.99,9.220,146.6,16.7,0.99,9.380,146.6 +17.0,0.99,9.300,149.5,16.8,0.99,9.430,149.6 +17.2,0.99,9.350,152.8,17.0,0.99,9.520,152.8 +17.3,0.99,9.570,152.8,17.2,0.99,9.730,152.9 +17.5,0.99,8.280,166.8,17.4,0.99,8.480,167.1 +17.8,0.99,7.550,156.6,17.6,0.99,7.780,157.1 +18.0,0.99,7.250,167.6,17.9,0.99,7.450,167.5 +18.6,0.99,7.320,173.4,18.4,0.99,7.380,173.3 +18.7,0.99,8.710,169.6,18.6,0.99,8.780,169.9 +18.9,0.99,8.580,168.8,18.7,0.99,8.650,169.0 +18.9,0.99,8.910,169.2,18.7,0.99,8.950,169.3 +18.8,0.99,8.130,165.1,18.6,0.99,8.200,165.7 +18.8,0.99,7.530,159.8,18.6,0.99,7.610,160.1 +18.6,0.99,6.780,151.0,18.4,0.99,6.930,151.3 +18.6,0.99,7.700,160.4,18.4,0.99,7.890,161.0 +18.8,0.99,8.490,161.1,18.6,0.99,8.630,161.2 +18.8,0.99,8.630,157.1,18.7,0.99,8.860,157.4 +18.7,0.99,7.500,155.3,18.6,0.99,7.650,156.1 +18.9,0.99,8.650,163.6,18.8,0.99,8.950,164.3 +18.9,0.99,8.230,162.4,18.8,0.99,8.620,163.7 +19.0,0.99,7.900,165.2,18.9,0.99,8.260,167.0 +19.0,0.99,8.260,165.4,18.9,0.99,8.630,166.6 +19.1,0.99,8.090,165.7,19.0,0.99,8.450,166.5 +19.1,0.99,7.700,164.4,19.0,0.99,8.150,166.9 +19.1,0.99,8.080,162.7,19.0,0.99,8.380,164.2 +19.4,0.99,8.670,168.3,19.4,0.99,9.190,171.3 +19.1,0.99,7.550,155.2,19.1,0.99,8.130,157.0 +19.3,0.99,7.800,156.5,19.2,0.99,8.030,159.1 +19.2,0.99,7.750,152.4,19.1,0.99,8.290,154.4 +19.3,0.99,7.640,156.0,19.2,0.99,8.060,157.3 +19.4,0.99,7.690,155.1,19.3,0.99,8.190,156.2 +19.6,0.99,8.420,154.8,19.5,0.99,8.510,155.2 +19.7,0.99,8.050,151.9,19.5,0.99,8.120,152.3 +19.8,0.99,8.590,155.7,19.6,0.99,8.700,156.2 +19.7,0.99,8.980,149.5,19.6,0.99,9.130,149.8 +19.7,0.99,8.550,150.8,19.5,0.99,8.720,151.1 +19.6,0.99,9.330,149.3,19.4,0.99,9.480,149.6 +19.5,0.99,9.810,148.5,19.3,0.99,10.160,149.2 +19.5,0.99,10.370,154.3,19.3,0.99,10.690,154.5 +19.4,0.99,10.490,154.5,19.3,0.99,10.840,154.9 +19.4,0.99,11.240,153.7,19.3,0.99,11.610,154.1 +19.6,0.99,11.370,163.3,19.4,0.99,11.780,163.6 +19.4,0.99,10.930,160.7,19.3,0.99,11.280,161.2 +19.4,0.99,10.520,160.4,19.3,0.99,10.920,161.1 +19.5,0.99,9.490,162.5,19.3,0.99,9.890,163.1 +19.8,0.99,10.120,169.8,19.7,0.99,10.620,170.4 +19.7,0.99,9.860,168.9,19.7,0.99,10.360,169.5 +19.6,0.99,8.880,161.7,19.5,0.99,9.350,162.8 +19.5,0.99,9.340,159.3,19.4,0.99,9.820,160.4 +19.9,0.99,10.880,159.6,19.8,0.99,11.360,160.7 +19.6,0.99,10.090,153.8,19.5,0.99,10.520,154.7 +19.6,0.99,10.080,147.2,19.5,0.99,10.530,148.1 +19.8,0.99,10.720,143.7,19.7,0.99,11.210,144.6 +19.9,0.99,9.800,149.0,19.8,0.99,10.300,149.9 +20.0,0.99,9.570,141.6,19.9,0.99,10.010,142.7 +20.2,0.99,8.940,150.0,20.0,0.99,9.060,150.2 +20.7,0.99,10.770,157.4,20.6,0.99,11.620,158.5 +20.3,0.99,7.900,124.2,20.1,0.99,8.100,126.0 +20.3,0.99,10.140,138.0,20.2,0.99,10.550,138.8 +20.1,0.99,8.780,127.4,19.9,0.99,9.190,128.8 +20.2,0.99,9.190,144.6,20.1,0.99,9.940,147.9 +20.0,0.99,11.150,136.7,19.9,0.99,11.560,138.7 +20.0,0.99,10.230,141.4,19.9,0.99,10.610,143.4 +19.9,0.99,10.620,132.8,19.7,0.99,11.030,133.4 +20.1,0.98,10.760,144.2,20.0,0.98,11.490,146.2 +19.9,0.98,10.400,140.6,19.8,0.98,10.900,142.2 +20.0,0.98,9.710,149.8,19.9,0.98,10.230,151.2 +19.9,0.98,9.910,148.1,19.8,0.98,10.540,149.5 +20.3,0.98,12.140,147.2,20.2,0.98,12.640,148.2 +20.1,0.98,11.790,142.0,20.1,0.98,12.280,143.3 +20.1,0.98,12.160,145.6,20.0,0.98,12.750,146.9 +20.1,0.98,11.520,144.8,20.0,0.98,12.060,145.9 +20.3,0.98,12.780,147.6,20.2,0.98,13.290,148.3 +20.2,0.98,12.780,143.5,20.1,0.98,13.440,144.7 +20.3,0.98,13.420,138.5,20.3,0.98,14.100,139.2 +20.1,0.98,12.390,135.6,20.0,0.98,12.970,136.4 +20.1,0.99,13.500,138.9,20.0,0.99,14.210,140.0 +20.3,0.99,12.440,137.7,20.3,0.99,13.080,138.2 +20.4,0.99,12.470,137.0,20.4,0.99,13.060,137.9 +20.9,0.99,12.620,140.7,20.8,0.99,13.100,141.2 +20.9,0.99,12.030,139.6,20.8,0.99,12.540,140.4 +20.9,0.98,12.570,135.2,20.8,0.98,13.050,136.0 +20.9,0.98,12.790,132.7,20.7,0.98,13.260,133.2 +20.9,0.98,13.760,133.0,20.8,0.98,14.240,133.5 +21.1,0.98,14.550,137.3,21.1,0.98,15.210,138.1 +21.2,0.98,15.980,140.8,21.1,0.98,16.620,141.2 +21.2,0.98,16.170,140.7,21.1,0.98,16.850,141.0 +20.9,0.98,16.060,140.7,20.8,0.98,16.670,141.1 +20.7,0.98,16.360,141.0,20.6,0.98,16.940,141.2 +21.0,0.98,16.040,143.3,20.9,0.98,16.610,143.7 +20.8,0.98,17.140,145.6,20.7,0.98,17.700,146.0 +20.7,0.98,15.580,142.8,20.6,0.98,16.250,143.4 +20.6,0.98,14.910,142.4,20.6,0.98,15.470,142.9 +20.7,0.98,14.540,146.9,20.6,0.98,15.150,147.5 +20.6,0.98,13.550,144.0,20.5,0.98,14.140,144.7 +20.8,0.98,16.040,150.9,20.8,0.98,16.710,151.4 +20.9,0.98,15.550,151.1,20.9,0.98,16.310,151.7 +20.8,0.98,14.710,149.1,20.7,0.98,15.360,149.6 +21.2,0.98,14.330,147.8,21.2,0.98,15.090,148.9 +21.1,0.98,13.060,142.9,21.1,0.98,13.760,144.1 +21.2,0.98,13.840,142.5,21.1,0.98,14.430,143.2 +21.4,0.98,12.400,145.4,21.5,0.98,13.040,147.0 +21.2,0.98,12.260,142.6,21.2,0.98,12.840,143.3 +21.8,0.98,11.990,149.4,21.8,0.98,12.710,150.8 +21.7,0.98,9.710,158.7,21.7,0.98,10.550,159.9 +21.8,0.98,7.870,166.5,21.7,0.98,8.520,167.6 +21.4,0.98,4.620,153.2,21.2,0.98,5.180,157.3 +21.5,0.98,5.420,151.2,21.4,0.98,5.850,155.0 +21.4,0.98,7.110,143.6,21.4,0.98,7.360,146.5 +22.0,0.98,8.490,148.1,22.1,0.98,8.610,150.8 +21.6,0.98,7.060,154.5,21.8,0.98,7.340,159.6 +21.6,0.98,5.020,170.4,21.7,0.98,5.430,173.0 +16.5,0.98,8.060,344.3,16.4,0.98,7.730,345.4 +15.4,0.98,9.900,339.7,15.2,0.98,9.800,339.8 +14.8,0.98,10.740,339.9,14.6,0.98,10.680,339.9 +12.9,0.98,11.660,345.9,12.7,0.98,11.620,345.8 +11.5,0.98,12.230,345.6,11.3,0.98,12.210,345.8 +11.1,0.98,12.910,345.7,10.9,0.98,12.930,345.9 +10.6,0.98,12.490,349.0,10.5,0.98,12.480,349.2 +10.4,0.98,12.360,352.6,10.2,0.98,12.380,352.8 +9.5,0.99,16.150,341.4,9.3,0.99,16.210,341.6 +9.2,0.98,14.540,0.6,9.1,0.98,14.660,0.9 +9.4,0.99,11.720,348.9,9.2,0.99,11.760,349.1 +9.9,0.99,8.640,1.5,9.7,0.99,8.660,1.8 +10.3,0.99,7.850,358.6,10.1,0.99,7.850,358.9 +9.4,0.99,9.040,341.4,9.2,0.99,9.010,341.7 +10.4,0.99,10.490,333.5,10.2,0.99,10.500,333.6 +12.8,0.99,7.830,344.3,12.6,0.99,7.870,344.6 +14.5,0.99,6.760,335.3,14.3,0.99,6.780,335.5 +15.8,0.99,7.000,329.9,15.6,0.99,7.020,330.2 +17.0,0.99,7.020,329.0,16.8,0.99,7.070,329.1 +17.9,0.99,6.790,330.8,17.7,0.99,6.830,331.1 +18.1,0.99,6.240,329.9,17.9,0.99,6.270,330.4 +18.2,0.99,6.260,336.5,18.0,0.99,6.280,336.6 +18.2,0.99,5.860,348.0,18.0,0.99,5.850,348.0 +17.9,0.99,4.800,7.2,17.7,0.99,4.770,6.9 +17.6,0.99,4.910,9.5,17.4,0.99,4.880,9.3 +17.4,0.99,4.770,10.9,17.2,0.99,4.750,11.1 +17.3,0.99,4.210,10.2,17.2,0.99,4.190,10.4 +16.6,0.99,3.850,29.5,16.5,0.99,3.790,30.5 +16.0,0.99,3.570,34.3,16.1,0.99,3.700,38.0 +15.5,0.99,3.560,26.2,15.6,0.99,3.700,31.4 +15.0,0.99,3.150,25.2,15.0,0.99,3.160,29.9 +15.0,0.99,3.430,27.5,15.0,0.99,3.460,36.6 +14.9,0.99,4.070,35.0,14.9,0.99,3.970,44.0 +15.3,0.99,4.480,45.8,15.4,0.99,4.580,52.5 +15.8,0.99,4.840,50.7,15.9,0.99,4.890,55.2 +16.4,0.99,4.790,64.8,16.3,0.99,4.800,65.7 +16.4,0.99,4.460,55.9,16.2,0.99,4.460,57.6 +16.4,0.99,4.170,59.7,16.3,0.99,4.190,60.8 +16.8,0.99,4.000,71.4,16.7,0.99,4.030,72.1 +17.5,0.99,4.100,94.4,17.3,0.99,4.080,94.3 +17.7,0.99,4.440,111.6,17.5,0.99,4.410,111.5 +17.9,0.99,4.210,113.5,17.7,0.99,4.190,113.4 +18.1,0.99,3.980,113.8,17.9,0.99,3.960,113.6 +18.4,0.99,3.370,111.6,18.2,0.99,3.370,111.2 +18.4,0.99,4.460,115.5,18.3,0.99,4.460,115.3 +18.3,0.99,3.750,119.0,18.1,0.99,3.750,118.6 +18.4,0.99,4.480,120.3,18.2,0.99,4.530,119.8 +18.6,0.99,5.000,119.7,18.4,0.99,5.020,119.7 +18.7,0.99,5.670,122.3,18.5,0.99,5.740,121.8 +18.7,0.99,6.420,125.0,18.5,0.99,6.450,124.9 +18.7,0.99,7.150,130.1,18.5,0.99,7.170,130.0 +18.5,0.99,5.930,124.8,18.4,0.99,6.110,124.3 +18.5,0.99,5.770,119.1,18.4,0.99,6.020,119.2 +18.5,0.99,5.430,118.0,18.3,0.99,5.620,118.1 +18.6,0.99,5.490,119.2,18.5,0.99,5.820,119.5 +18.5,0.99,5.740,106.9,18.3,0.99,5.910,107.5 +18.5,0.99,5.810,100.3,18.3,0.99,5.990,101.0 +18.6,0.99,6.500,99.9,18.4,0.99,6.710,100.8 +19.0,0.99,7.990,101.5,18.9,0.99,8.260,102.1 +19.0,0.99,8.240,101.3,18.8,0.99,8.500,101.9 +18.9,0.99,8.190,103.3,18.8,0.99,8.450,103.7 +18.9,0.99,8.080,97.8,18.8,0.99,8.290,98.2 +18.9,0.99,8.450,100.0,18.8,0.99,8.710,100.5 +19.3,0.99,9.430,96.8,19.2,0.99,9.480,96.9 +19.2,0.99,10.460,102.0,19.0,0.99,10.510,102.1 +19.2,0.99,9.680,102.5,19.0,0.99,9.730,102.6 +19.2,0.99,8.740,100.1,19.0,0.99,8.800,100.6 +19.2,0.99,9.550,102.9,19.0,0.99,9.610,103.0 +19.2,0.99,10.220,105.8,19.0,0.99,10.320,106.1 +19.1,0.99,6.850,97.8,18.9,0.99,7.090,98.9 +19.3,0.99,7.680,76.8,19.2,0.99,7.840,78.2 +19.4,0.99,9.600,89.1,19.3,0.99,9.900,90.4 +19.1,0.98,8.870,101.4,18.9,0.98,9.190,102.1 +18.8,0.98,8.990,110.0,18.7,0.98,9.060,110.1 +18.1,0.98,9.460,110.0,17.9,0.98,9.520,110.2 +18.0,0.98,9.450,100.9,17.9,0.98,9.590,101.3 +18.3,0.98,7.000,96.8,18.1,0.98,7.250,96.8 +18.5,0.98,8.110,95.4,18.3,0.98,8.300,94.9 +18.4,0.98,7.180,89.5,18.3,0.98,7.420,89.8 +18.5,0.98,6.710,94.5,18.3,0.98,6.910,95.0 +18.5,0.98,6.960,92.7,18.3,0.98,7.140,93.5 +18.4,0.98,5.500,95.9,18.2,0.98,5.670,96.5 +18.5,0.98,4.980,100.5,18.5,0.98,4.330,104.9 +18.7,0.98,3.370,123.6,18.6,0.98,3.160,129.1 +18.8,0.98,2.150,140.4,18.7,0.98,1.950,148.1 +18.8,0.98,1.630,138.5,18.7,0.98,1.480,144.8 +18.8,0.98,2.290,134.4,18.6,0.98,2.120,139.6 +19.5,0.98,3.130,135.9,19.3,0.98,3.080,136.6 +19.9,0.98,3.320,151.4,19.7,0.98,3.290,152.1 +20.1,0.98,4.510,155.6,19.9,0.98,4.490,156.0 +20.2,0.98,5.440,157.6,20.0,0.98,5.430,157.8 +20.2,0.98,6.020,159.4,20.0,0.98,6.010,159.6 +20.1,0.98,6.680,160.7,19.9,0.98,6.680,160.8 +19.9,0.98,7.820,160.1,19.7,0.98,7.970,160.1 +19.8,0.98,8.520,162.3,19.7,0.98,8.790,162.3 +19.9,0.98,9.230,170.1,19.7,0.98,9.410,170.1 +19.8,0.98,8.290,176.1,19.6,0.98,8.500,176.1 +19.8,0.98,7.910,174.8,19.7,0.98,8.200,175.2 +20.1,0.98,9.880,180.8,20.0,0.98,10.130,180.7 +20.2,0.98,8.310,177.1,20.0,0.98,8.540,176.1 +20.4,0.98,8.150,171.5,20.5,0.98,9.070,174.3 +20.4,0.98,7.200,184.2,20.4,0.98,8.070,186.2 +20.4,0.98,7.730,186.3,20.2,0.98,8.020,187.0 +20.8,0.98,9.430,189.4,20.7,0.98,9.580,189.6 +20.8,0.98,6.260,179.0,20.8,0.98,6.550,181.7 +21.3,0.99,8.540,171.8,21.1,0.99,8.630,175.4 +20.5,0.99,7.540,162.7,20.3,0.99,7.610,166.9 +20.3,0.99,6.750,171.3,20.3,0.99,7.110,183.1 +20.6,0.99,6.980,169.8,20.5,0.99,7.590,173.9 +21.1,0.99,6.790,161.8,21.0,0.99,6.940,167.0 +21.0,0.99,7.030,160.0,20.9,0.99,7.180,166.1 +20.9,0.99,5.710,148.1,20.7,0.99,5.690,148.5 +20.9,0.99,5.060,143.0,20.8,0.99,5.050,143.3 +21.2,0.99,6.650,139.2,21.0,0.99,6.620,139.4 +21.1,0.99,7.560,141.4,20.9,0.99,7.560,142.1 +21.0,0.99,7.320,137.4,20.8,0.99,7.350,138.4 +20.7,0.99,7.450,136.4,20.5,0.99,7.670,136.4 +21.1,0.99,7.570,124.4,21.1,0.99,8.050,126.6 +21.0,0.99,7.980,119.9,20.9,0.99,8.450,122.3 +21.1,0.99,8.410,123.4,21.1,0.99,8.910,125.4 +21.4,0.99,9.060,134.0,21.4,0.99,9.620,136.4 +21.6,0.99,9.830,143.8,21.6,0.99,10.470,145.2 +21.5,0.99,9.320,147.1,21.4,0.99,9.860,148.2 +21.7,0.99,8.230,145.3,21.6,0.99,8.680,147.6 +21.7,0.99,9.530,152.3,21.7,0.99,10.320,153.1 +22.4,0.99,9.820,172.8,22.6,0.99,10.740,175.2 +22.1,0.99,8.620,156.1,22.2,0.99,9.430,157.4 +21.8,0.99,7.990,140.6,21.8,0.99,8.670,144.7 +21.4,0.99,10.120,154.3,21.4,0.99,10.870,156.1 +21.7,0.99,9.300,150.3,21.7,0.99,9.680,151.1 +22.2,0.99,9.280,150.4,22.3,0.99,10.280,153.7 +21.7,0.99,8.160,140.4,21.7,0.99,8.810,144.7 +21.6,0.99,8.550,133.1,21.6,0.99,8.920,135.7 +21.7,0.99,7.160,120.3,21.7,0.99,7.730,132.3 +22.1,0.99,8.170,123.0,22.0,0.99,9.180,129.6 +22.2,0.99,9.580,140.8,22.1,0.99,9.840,143.3 +22.1,0.99,7.730,124.6,22.0,0.99,8.170,128.5 +22.2,0.99,8.500,123.6,22.1,0.99,8.740,125.9 +22.0,0.99,8.450,122.7,21.9,0.99,8.640,124.4 +21.9,0.99,10.510,128.2,21.8,0.99,10.900,129.7 +21.8,0.99,9.930,120.7,21.7,0.99,10.210,123.9 +21.1,0.99,12.040,120.7,21.0,0.99,12.430,122.3 +22.2,0.99,11.570,131.8,22.3,0.99,12.460,134.5 +21.9,0.99,11.740,132.7,21.9,0.99,12.340,134.2 +21.9,0.99,10.060,134.6,21.9,0.99,10.790,136.4 +21.9,0.99,12.210,135.8,21.9,0.99,12.820,137.1 +21.6,0.99,12.840,142.9,21.5,0.99,13.380,143.5 +21.7,0.99,10.640,144.6,21.6,0.99,11.200,145.3 +21.6,0.99,10.130,145.2,21.5,0.99,10.680,145.9 +21.6,0.99,10.900,134.8,21.6,0.99,11.410,136.1 +21.7,0.99,10.860,139.9,21.6,0.99,11.350,140.7 +21.7,0.99,9.410,140.0,21.6,0.99,10.000,141.0 +21.5,0.99,8.910,135.3,21.5,0.99,9.520,137.6 +21.9,0.99,8.350,145.2,22.2,0.99,9.350,149.8 +22.4,0.99,9.510,149.1,22.7,0.99,11.260,153.4 +21.7,0.99,9.050,138.1,21.8,0.99,9.720,142.0 +21.5,0.99,10.470,123.4,21.4,0.99,10.970,124.7 +21.7,0.99,10.350,131.1,21.7,0.99,10.950,133.2 +21.6,0.99,10.620,125.3,21.5,0.99,11.160,126.6 +21.9,0.99,11.140,132.7,21.8,0.99,11.630,134.4 +22.2,0.99,12.080,138.9,22.1,0.99,12.730,140.6 +22.4,0.99,12.440,136.0,22.3,0.99,13.030,137.5 +22.4,0.99,12.820,142.1,22.2,0.99,13.380,142.7 +22.4,0.99,13.450,145.9,22.3,0.99,14.030,146.1 +22.7,0.98,13.550,150.4,22.8,0.98,14.270,151.3 +22.1,0.98,14.190,141.2,21.9,0.98,14.670,141.5 +21.8,0.98,14.570,146.3,21.7,0.98,15.020,146.6 +21.8,0.98,14.370,146.2,21.7,0.98,14.880,146.6 +21.9,0.98,15.000,147.3,21.8,0.98,15.500,147.6 +22.0,0.98,15.090,151.6,21.9,0.98,15.600,151.8 +21.8,0.98,14.450,150.8,21.7,0.98,14.920,150.9 +21.6,0.98,13.980,151.9,21.5,0.98,14.580,152.1 +21.7,0.98,13.820,157.4,21.6,0.98,14.450,157.8 +21.5,0.98,11.780,162.5,21.4,0.98,12.230,162.7 +21.5,0.98,12.780,157.3,21.4,0.98,13.410,157.8 +21.6,0.98,12.970,158.2,21.5,0.98,13.580,158.5 +21.5,0.98,10.460,157.2,21.4,0.98,11.070,157.8 +21.7,0.98,11.880,161.0,21.6,0.98,12.440,161.2 +21.6,0.98,10.550,162.6,21.6,0.98,11.110,163.0 +21.7,0.98,9.380,156.6,21.6,0.98,9.950,157.4 +21.7,0.98,8.720,158.6,21.6,0.98,9.270,159.2 +21.7,0.98,5.810,166.3,21.6,0.98,6.360,167.2 +21.9,0.98,5.050,181.5,21.8,0.98,5.510,182.2 +22.2,0.98,3.810,199.2,22.1,0.98,4.840,198.9 +22.4,0.98,3.130,180.8,22.2,0.98,3.390,183.7 +22.5,0.98,4.910,160.8,22.3,0.98,4.960,162.3 +22.5,0.98,5.520,157.0,22.4,0.98,5.560,158.1 +17.2,0.99,15.930,337.7,17.0,0.99,15.880,337.7 +16.3,0.99,16.370,348.8,16.1,0.99,16.430,348.7 +14.1,0.99,15.080,350.1,13.9,0.99,15.170,350.1 +13.7,0.99,14.690,354.4,13.5,0.99,14.790,354.5 +13.8,0.99,14.160,0.2,13.7,0.99,14.250,0.2 +14.0,0.99,13.490,1.0,13.8,0.99,13.610,1.0 +14.8,0.99,15.160,359.9,14.6,0.99,15.320,359.9 +14.7,0.99,16.940,359.2,14.5,0.99,17.110,359.3 +13.9,0.99,17.430,359.2,13.7,0.99,17.580,359.3 +13.0,0.99,17.020,2.1,12.8,0.99,17.130,2.3 +12.3,0.99,17.580,5.1,12.1,0.99,17.710,5.1 +11.6,0.99,17.850,6.4,11.4,0.99,17.990,6.4 +11.1,1.00,17.190,7.0,10.9,1.00,17.320,7.0 +10.6,1.00,16.100,8.7,10.4,1.00,16.220,8.7 +10.1,1.00,15.000,8.3,9.9,1.00,15.090,8.4 +9.9,1.00,13.850,5.2,9.7,1.00,13.940,5.2 +10.0,1.00,12.100,2.9,9.8,1.00,12.170,3.0 +11.0,1.00,10.190,358.1,10.8,1.00,10.260,358.2 +11.7,1.00,9.810,349.7,11.5,1.00,9.860,349.8 +12.3,1.00,8.660,336.7,12.1,1.00,8.690,337.1 +13.6,1.00,9.570,338.0,13.4,1.00,9.610,338.3 +14.7,1.00,10.670,340.2,14.5,1.00,10.710,340.4 +15.3,1.00,10.900,339.0,15.1,1.00,10.970,339.2 +15.7,1.00,10.600,340.0,15.5,1.00,10.660,340.2 +16.0,1.00,10.430,344.3,15.8,1.00,10.490,344.4 +16.1,1.00,9.820,347.7,15.9,1.00,9.860,347.7 +15.8,1.00,9.640,346.9,15.7,1.00,9.670,347.2 +15.5,1.00,8.200,356.3,15.3,1.00,8.220,356.4 +15.1,1.00,8.370,5.1,14.9,1.00,8.380,5.0 +14.9,1.00,8.320,8.2,14.8,1.00,8.330,8.2 +14.8,1.00,7.550,13.4,14.6,1.00,7.570,13.5 +14.6,1.00,7.330,23.8,14.4,1.00,7.350,23.8 +14.3,1.00,6.940,27.6,14.1,1.00,6.950,27.7 +14.2,1.00,6.820,32.7,14.0,1.00,6.830,32.9 +14.0,1.00,6.170,34.3,13.8,1.00,6.180,34.6 +13.9,1.00,6.320,38.7,13.8,1.00,6.320,39.1 +14.1,1.00,6.240,47.0,13.9,1.00,6.260,47.5 +14.3,1.00,6.610,61.0,14.1,1.00,6.630,61.4 +14.4,1.00,6.650,69.6,14.2,1.00,6.690,70.0 +14.6,1.00,6.790,83.8,14.5,1.00,6.820,84.0 +14.8,1.00,6.930,86.8,14.7,1.00,6.960,87.1 +14.9,1.00,6.860,93.2,14.7,1.00,6.890,93.4 +15.1,1.00,6.830,95.8,14.9,1.00,6.850,96.1 +15.2,1.00,6.140,96.9,15.0,1.00,6.180,96.8 +15.5,1.00,7.440,115.5,15.3,1.00,7.400,115.5 +15.6,1.00,6.910,110.5,15.4,1.00,6.900,110.6 +15.7,1.00,7.250,114.9,15.6,1.00,7.280,114.8 +15.8,1.00,6.450,111.4,15.7,1.00,6.500,111.4 +15.8,1.00,7.560,105.5,15.6,1.00,7.580,105.8 +15.9,1.00,7.250,107.5,15.7,1.00,7.300,107.7 +15.9,1.00,7.800,113.4,15.7,1.00,7.840,113.8 +16.0,1.00,7.540,126.2,15.8,1.00,7.570,126.2 +16.1,1.00,7.860,127.6,16.0,1.00,7.910,127.5 +16.6,1.00,8.400,130.6,16.4,1.00,8.510,131.0 +16.7,0.99,7.860,122.6,16.6,0.99,7.900,123.1 +16.9,0.99,9.250,118.6,16.7,0.99,9.230,118.9 +17.3,0.99,7.460,114.8,17.1,0.99,7.570,114.9 +17.5,0.99,7.060,115.9,17.3,0.99,7.130,115.9 +17.6,0.99,8.400,120.0,17.4,0.99,8.400,120.2 +17.8,1.00,7.150,124.3,17.6,1.00,7.220,124.0 +17.8,1.00,7.810,120.1,17.7,1.00,7.890,120.0 +17.7,1.00,6.450,110.8,17.5,1.00,6.490,110.8 +17.8,1.00,7.140,110.6,17.7,1.00,7.190,111.3 +17.9,1.00,7.270,97.8,17.7,1.00,7.360,98.3 +18.0,1.00,7.430,95.9,17.8,1.00,7.500,96.2 +18.2,1.00,6.790,94.2,18.0,1.00,6.850,94.4 +18.3,1.00,6.530,80.8,18.1,1.00,6.570,81.0 +18.3,1.00,6.030,81.5,18.1,1.00,6.140,81.8 +18.2,1.00,7.760,84.4,18.0,1.00,7.740,84.4 +18.1,1.00,7.790,90.1,17.9,1.00,7.800,90.1 +18.2,0.99,8.460,92.7,18.0,0.99,8.470,92.6 +18.2,0.99,8.160,92.6,18.0,0.99,8.160,92.6 +18.3,0.99,7.470,98.6,18.1,0.99,7.480,98.6 +18.4,0.99,7.390,98.8,18.2,0.99,7.400,98.7 +18.3,0.99,6.820,98.2,18.1,0.99,6.850,98.2 +18.2,0.99,6.850,98.3,18.1,0.99,6.870,98.4 +18.3,0.99,6.770,100.9,18.1,0.99,6.800,100.9 +18.4,0.99,6.670,104.0,18.2,0.99,6.680,104.2 +18.6,0.99,6.390,110.5,18.4,0.99,6.410,110.7 +18.7,0.99,5.050,92.0,18.5,0.99,5.050,92.4 +18.9,0.99,7.370,100.5,18.7,0.99,7.520,101.2 +19.1,0.99,6.930,107.7,18.9,0.99,7.090,107.7 +18.9,0.99,6.550,110.1,18.8,0.99,6.710,110.6 +18.9,0.99,6.180,118.0,18.7,0.99,6.290,118.2 +18.9,0.99,5.810,123.4,18.8,0.99,5.930,123.5 +18.9,0.99,5.320,119.2,18.7,0.99,5.410,119.4 +18.9,0.99,5.090,120.7,18.7,0.99,5.180,120.7 +18.9,0.99,5.250,122.2,18.7,0.99,5.310,122.0 +18.9,0.99,5.170,113.4,18.8,0.99,5.260,113.7 +18.9,0.99,4.620,108.7,18.8,0.99,4.680,108.8 +19.0,0.99,4.200,106.8,18.8,0.99,4.220,107.0 +19.1,0.99,4.090,109.2,18.9,0.99,4.100,109.3 +19.2,0.99,3.690,116.1,19.0,0.99,3.680,116.3 +19.3,0.99,4.030,124.8,19.1,0.99,4.030,125.0 +19.3,0.99,4.270,125.1,19.1,0.99,4.260,125.2 +19.3,0.99,4.560,129.5,19.1,0.99,4.550,129.7 +19.3,0.99,5.420,133.7,19.1,0.99,5.420,133.8 +19.3,0.99,6.790,138.7,19.1,0.99,6.790,138.8 +19.2,0.99,7.000,139.6,19.0,0.99,7.010,139.6 +19.2,0.99,7.670,144.7,19.0,0.99,7.680,144.9 +19.1,0.99,7.620,142.1,18.9,0.99,7.650,142.1 +19.1,0.99,9.440,143.5,18.9,0.99,9.470,143.6 +19.4,0.99,7.910,151.9,19.3,0.99,7.980,152.0 +19.3,0.99,8.660,141.7,19.1,0.99,8.710,141.8 +19.4,0.99,8.130,146.4,19.3,0.99,8.350,146.6 +19.4,0.99,7.880,160.8,19.2,0.99,8.090,161.0 +19.7,0.99,8.340,163.4,19.5,0.99,8.610,163.5 +19.7,0.99,6.240,155.4,19.6,0.99,6.430,156.2 +19.7,0.99,7.630,166.4,19.5,0.99,8.010,167.8 +19.9,0.99,7.990,157.9,19.8,0.99,8.270,158.8 +20.0,0.99,9.240,155.6,19.9,0.99,9.620,155.9 +20.3,0.99,8.440,147.9,20.2,0.99,8.860,148.8 +20.4,0.99,8.580,155.4,20.3,0.99,9.110,156.0 +20.6,0.99,8.200,159.8,20.5,0.99,8.740,160.7 +20.6,0.99,6.980,154.0,20.5,0.99,7.330,155.1 +20.7,0.99,6.900,150.5,20.6,0.99,7.250,151.5 +21.1,0.99,6.530,157.4,20.9,0.99,6.570,157.8 +21.1,0.99,6.490,150.5,20.9,0.99,6.510,150.7 +21.1,0.99,5.720,146.1,20.9,0.99,5.770,146.5 +21.2,0.99,5.760,139.3,21.0,0.99,5.790,139.6 +21.4,0.99,6.720,148.5,21.3,0.99,6.790,149.1 +21.3,0.99,6.900,140.7,21.1,0.99,6.960,141.3 +21.0,0.99,6.150,135.0,20.9,0.99,6.390,136.0 +21.4,0.99,7.450,157.0,21.3,0.99,7.800,158.1 +20.9,0.99,5.600,152.1,20.8,0.99,5.960,154.1 +21.0,0.99,5.520,155.7,20.9,0.99,6.000,157.7 +20.8,0.99,4.330,174.2,20.7,0.99,4.670,175.9 +21.1,0.99,4.420,168.6,21.1,0.99,4.740,170.0 +21.3,0.99,5.340,179.6,21.3,0.99,5.450,181.5 +21.3,0.99,4.370,183.8,21.3,0.99,4.660,185.3 +21.4,0.99,2.420,256.2,21.4,0.99,2.570,250.4 +15.0,0.99,12.720,343.4,14.9,0.99,12.690,343.4 +13.9,0.99,12.440,350.9,13.7,0.99,12.430,350.7 +13.5,0.99,11.530,350.7,13.3,0.99,11.540,350.6 +12.0,0.99,12.730,351.1,11.8,0.99,12.720,351.3 +11.0,1.00,11.430,357.6,10.8,1.00,11.440,357.9 +10.9,1.00,11.830,357.2,10.7,1.00,11.860,357.2 +11.6,1.00,11.030,1.7,11.4,1.00,11.050,1.9 +12.2,1.00,10.850,5.6,12.1,1.00,10.870,5.6 +13.6,1.00,8.680,7.6,13.5,1.00,8.710,7.9 +15.8,1.00,8.150,9.1,15.7,1.00,8.190,9.3 +17.2,1.00,8.280,17.8,17.0,1.00,8.310,18.1 +18.2,1.00,6.410,24.1,18.0,1.00,6.460,23.6 +19.1,1.00,7.150,14.8,18.9,1.00,7.180,15.6 +19.4,1.00,7.440,30.4,19.3,1.00,7.430,30.2 +19.8,1.00,6.650,32.4,19.6,1.00,6.720,32.6 +19.7,1.00,6.810,28.6,19.6,1.00,6.860,28.7 +19.4,1.00,7.710,27.6,19.3,1.00,7.730,28.3 +18.7,1.00,9.360,31.2,18.5,1.00,9.370,31.3 +18.1,1.00,9.600,32.9,17.9,1.00,9.620,33.1 +17.7,1.00,9.830,34.5,17.5,1.00,9.850,34.7 +17.5,1.00,9.910,40.8,17.3,1.00,9.940,41.1 +17.3,1.00,9.840,42.1,17.1,1.00,9.870,42.5 +17.1,1.00,9.780,46.0,16.9,1.00,9.820,46.4 +16.9,1.00,10.460,50.1,16.7,1.00,10.480,50.2 +16.5,1.00,10.460,46.3,16.3,1.00,10.500,46.5 +16.2,1.00,11.020,46.1,16.0,1.00,11.040,46.3 +15.7,1.00,10.730,47.9,15.5,1.00,10.750,48.0 +15.4,1.00,12.170,55.9,15.3,1.00,12.210,56.1 +15.0,1.00,11.230,52.6,14.8,1.00,11.260,52.6 +14.8,1.00,10.920,52.7,14.6,1.00,10.950,53.0 +14.7,1.00,9.410,56.6,14.5,1.00,9.430,56.9 +14.9,1.00,8.520,60.5,14.7,1.00,8.540,60.8 +15.2,1.00,8.880,63.5,15.0,1.00,8.900,63.6 +15.8,1.00,9.790,68.5,15.7,1.00,9.820,68.6 +16.4,1.00,8.790,73.7,16.2,1.00,8.810,73.7 +16.8,1.00,8.610,71.9,16.6,1.00,8.630,72.1 +17.1,1.00,7.900,81.1,16.9,1.00,7.920,81.2 +17.6,1.00,7.440,84.0,17.4,1.00,7.470,84.2 +18.1,1.00,7.330,91.7,17.9,1.00,7.350,91.8 +18.4,1.00,7.840,99.8,18.2,1.00,7.870,99.9 +18.5,1.00,7.200,107.1,18.4,1.00,7.220,107.2 +18.9,1.00,6.840,113.6,18.7,1.00,6.900,113.5 +18.9,1.00,8.030,127.0,18.7,1.00,7.980,127.1 +19.4,1.00,7.740,136.6,19.3,1.00,7.770,136.8 +19.4,1.00,7.210,130.8,19.2,1.00,7.210,131.0 +19.5,1.00,6.170,141.4,19.3,1.00,6.330,141.9 +19.6,1.00,5.700,139.1,19.4,1.00,5.870,139.4 +19.8,1.00,5.920,135.6,19.6,1.00,6.110,136.3 +19.9,1.00,8.140,142.6,19.8,1.00,8.370,142.9 +19.9,1.00,7.460,139.1,19.7,1.00,7.690,139.8 +19.8,1.00,8.380,140.9,19.7,1.00,8.590,141.3 +20.1,1.00,7.590,138.4,19.9,1.00,7.790,138.8 +20.3,1.00,8.660,135.0,20.1,1.00,8.880,135.7 +20.3,1.00,8.500,134.8,20.1,1.00,8.710,135.4 +20.6,1.00,8.530,136.9,20.4,1.00,8.750,137.8 +20.5,1.00,7.940,129.6,20.3,1.00,8.110,130.7 +20.3,1.00,7.680,128.0,20.2,1.00,7.820,129.1 +20.6,1.00,7.820,130.7,20.4,1.00,7.850,131.1 +20.7,1.00,7.600,126.6,20.5,1.00,7.630,127.1 +20.7,1.00,8.130,127.7,20.5,1.00,8.160,128.0 +20.6,1.00,7.940,123.6,20.5,1.00,7.960,124.1 +20.6,1.00,8.420,121.7,20.5,1.00,8.480,122.3 +20.7,1.00,8.300,125.8,20.5,1.00,8.350,126.5 +20.6,0.99,8.800,137.0,20.5,0.99,9.160,138.2 +20.3,0.99,9.320,138.9,20.1,0.99,9.580,139.6 +20.4,0.99,8.770,133.3,20.2,0.99,8.990,133.6 +20.5,0.99,9.260,140.1,20.3,0.99,9.550,140.7 +20.4,0.99,9.100,144.3,20.3,0.99,9.330,144.7 +20.5,0.99,8.600,150.8,20.4,0.99,8.950,152.0 +20.2,0.99,8.870,152.7,20.1,0.99,9.240,152.9 +20.4,0.99,7.770,160.8,20.2,0.99,8.220,162.0 +20.3,0.99,7.500,161.4,20.2,0.99,7.940,162.2 +20.4,0.99,6.410,166.3,20.3,0.99,6.860,167.3 +20.4,0.99,6.350,161.9,20.3,0.99,6.770,163.4 +20.5,0.99,7.700,162.5,20.5,0.99,8.290,165.1 +20.7,0.99,7.290,168.1,20.7,0.99,7.910,171.1 +20.5,0.99,7.250,160.8,20.4,0.99,7.710,163.0 +20.6,0.99,7.550,159.0,20.4,0.99,7.890,160.3 +20.6,0.99,6.570,155.7,20.5,0.99,6.990,157.2 +20.7,1.00,3.390,165.7,20.5,1.00,3.870,166.5 +20.8,0.99,5.630,151.5,20.6,0.99,5.830,152.9 +21.2,0.99,6.070,161.7,21.0,0.99,6.110,162.0 +21.2,0.99,6.610,158.3,21.0,0.99,6.650,158.6 +21.1,0.99,7.740,157.5,20.9,0.99,7.770,157.7 +21.1,0.99,7.960,154.1,20.9,0.99,8.000,154.2 +21.0,0.99,8.020,158.9,20.9,0.99,8.050,159.0 +21.2,0.99,8.700,159.5,21.0,0.99,8.750,159.7 +21.0,0.99,1.710,284.2,20.9,0.99,1.600,276.9 +18.6,0.99,11.140,6.1,18.4,0.99,11.180,5.9 +19.4,0.99,5.790,30.2,19.5,0.99,5.520,27.9 +20.6,0.99,4.140,51.2,20.8,0.99,4.000,55.7 +21.2,0.99,5.700,132.3,21.3,0.99,5.730,135.3 +20.9,0.99,7.210,134.7,20.8,0.99,7.300,136.6 +20.5,0.99,5.070,158.1,20.5,0.99,5.410,161.3 +20.4,0.99,4.940,178.0,20.3,0.99,5.100,179.2 +20.2,0.99,7.420,158.7,20.1,0.99,7.700,159.8 +20.5,0.99,4.970,173.3,20.4,0.99,5.560,171.7 +20.5,0.99,1.150,282.1,20.3,0.99,1.150,266.2 +20.4,0.99,1.000,8.3,20.2,0.99,0.800,2.7 +20.5,0.99,5.370,93.1,20.3,0.99,5.260,95.8 +20.6,0.99,3.150,80.8,20.5,0.99,3.050,84.0 +20.7,0.99,5.220,91.3,20.6,0.99,5.090,94.2 +20.8,0.99,6.020,102.5,20.7,0.99,5.890,105.5 +20.9,0.99,5.490,122.2,20.9,0.99,5.440,129.0 +20.7,0.99,5.400,119.2,20.7,0.99,5.600,121.7 +21.2,0.99,5.090,148.8,21.0,0.99,5.140,149.5 +21.6,0.99,5.370,167.9,21.4,0.99,5.390,168.2 +21.4,0.99,5.420,174.9,21.2,0.99,5.420,174.9 +21.3,0.99,4.280,191.9,21.2,0.99,4.290,192.0 +21.3,0.99,2.720,160.6,21.1,0.99,2.730,160.8 +21.3,0.99,2.070,154.6,21.1,0.99,2.090,155.3 +21.2,0.99,3.310,111.8,21.1,0.99,3.270,115.7 +21.4,0.99,3.950,111.8,21.3,0.99,3.900,115.0 +21.6,0.99,3.350,114.4,21.7,0.99,3.280,119.3 +21.1,0.99,4.950,94.6,21.1,0.99,4.740,96.9 +21.3,0.99,4.510,107.4,21.3,0.99,4.360,109.5 +21.0,0.99,4.700,119.6,21.1,0.99,4.630,122.2 +19.6,0.99,5.670,114.1,19.1,0.99,5.270,116.1 +19.8,0.99,4.710,127.8,19.7,0.99,4.660,129.9 +20.4,0.99,3.810,121.0,20.5,0.99,4.080,122.0 +20.4,0.99,2.870,129.3,20.6,0.99,2.980,134.6 +19.9,0.99,2.650,119.8,21.0,0.99,3.210,126.0 +20.5,0.99,3.370,135.1,20.8,0.99,3.630,135.3 +20.0,0.99,4.160,123.0,20.4,0.99,4.530,124.5 +20.1,0.99,4.120,109.6,20.2,0.99,4.470,113.2 +20.4,0.99,4.970,117.7,20.2,0.99,5.340,120.3 +20.6,0.99,3.980,122.9,20.7,0.99,4.300,125.3 +20.8,0.99,5.000,107.9,20.7,0.99,5.280,110.8 +20.9,0.99,5.370,118.0,20.7,0.99,5.580,119.9 +21.3,0.99,5.110,126.5,21.1,0.99,5.110,126.5 +21.1,0.99,3.880,148.8,20.9,0.99,3.900,148.8 +21.2,0.99,4.870,148.0,21.1,0.99,4.900,148.1 +21.1,0.99,5.670,141.2,20.9,0.99,5.650,141.3 +21.1,0.99,5.230,172.7,20.9,0.99,5.220,172.7 +21.0,0.99,4.180,175.7,20.8,0.99,4.180,175.7 +20.4,0.99,4.360,155.6,20.2,0.99,4.340,155.7 +20.3,0.99,4.400,145.8,20.2,0.99,4.580,142.2 +20.0,0.99,5.420,153.0,19.8,0.99,5.420,152.9 +19.9,0.99,4.550,155.7,19.8,0.99,4.550,155.6 +19.9,0.99,3.990,141.0,19.7,0.99,3.990,141.1 +19.8,0.99,4.720,140.2,19.7,0.99,4.720,140.3 +19.9,0.99,5.280,150.8,19.9,0.99,5.580,152.5 +20.6,0.99,6.110,159.2,20.9,0.99,6.530,161.9 +21.0,0.99,6.090,161.8,21.3,0.99,6.850,159.5 +20.6,0.99,5.050,147.6,20.7,0.99,5.770,148.4 +20.5,0.99,5.060,139.7,20.4,0.99,5.440,141.8 +20.2,0.99,4.660,140.1,20.0,0.99,4.870,140.6 +20.3,0.99,5.470,191.8,20.1,0.99,5.620,189.6 +20.1,0.99,5.980,158.7,20.0,0.99,6.170,159.7 +20.6,0.99,5.250,154.0,20.6,0.99,5.150,154.7 +19.8,0.99,2.380,184.8,19.8,0.99,2.560,187.7 +20.2,0.99,2.420,132.3,20.3,0.99,2.320,138.2 +19.9,0.99,5.590,118.0,19.8,0.99,5.600,121.6 +20.4,0.99,6.100,99.5,20.2,0.99,6.100,99.8 +20.2,0.99,6.870,106.5,20.0,0.99,6.850,106.7 +20.3,0.98,7.080,129.2,20.2,0.98,7.080,129.4 +20.6,0.98,6.190,131.6,20.4,0.98,6.180,131.8 +20.8,0.98,5.320,142.5,20.6,0.98,5.320,142.8 +21.0,0.98,4.180,152.7,20.8,0.98,4.180,153.2 +20.8,0.98,4.950,157.8,20.7,0.98,4.990,160.5 +20.9,0.98,4.320,158.7,20.9,0.98,4.450,161.7 +20.8,0.99,3.720,151.6,20.7,0.99,3.920,153.9 +20.8,0.99,4.140,151.5,20.6,0.99,4.370,153.5 +21.4,0.98,5.280,156.9,21.5,0.98,5.350,161.9 +21.7,0.99,4.210,163.8,21.8,0.99,4.370,166.1 +20.8,0.98,2.620,131.6,20.7,0.98,2.690,135.7 +20.8,0.99,1.490,97.4,20.7,0.99,1.410,106.7 +20.7,0.99,3.210,105.3,20.5,0.99,3.010,108.5 +20.8,0.99,3.560,103.1,20.6,0.99,3.360,107.7 +20.6,0.99,3.450,89.8,20.6,0.99,3.370,95.7 +20.7,0.99,1.690,100.1,20.6,0.99,1.600,107.0 +20.5,0.99,2.320,96.8,20.4,0.99,2.320,103.2 +20.3,0.99,3.390,75.2,20.4,0.99,3.150,81.3 +20.4,0.99,4.060,80.5,20.3,0.99,4.020,83.3 +20.4,0.99,4.230,77.3,20.1,0.99,4.200,81.2 +20.6,0.99,4.360,96.9,20.5,0.99,4.370,96.5 +20.8,0.99,4.580,107.8,20.6,0.99,4.710,108.3 +21.4,0.99,3.720,120.9,21.3,0.99,3.720,121.2 +21.7,0.99,4.150,137.0,21.5,0.99,4.140,137.2 +21.8,0.99,4.420,148.5,21.6,0.99,4.420,148.7 +21.8,0.99,3.860,149.3,21.7,0.99,3.860,149.6 +21.9,0.99,3.590,152.8,21.8,0.99,3.580,153.1 +21.9,0.99,4.700,166.4,21.7,0.99,4.690,166.4 +21.8,0.99,5.990,164.0,21.7,0.99,6.040,163.9 +21.6,0.99,4.930,157.0,21.5,0.99,5.030,157.3 +21.6,0.99,4.800,144.3,21.5,0.99,4.960,144.9 +21.5,0.99,4.020,148.8,21.5,0.99,4.170,149.0 +21.7,0.99,3.210,156.6,21.7,0.99,3.370,155.0 +21.4,0.99,2.720,182.3,21.4,0.99,2.830,179.9 +21.4,0.99,2.860,195.6,21.4,0.99,2.890,193.0 +21.3,0.99,2.640,252.5,21.3,0.99,2.590,252.2 +21.2,0.99,2.890,290.4,21.2,0.99,2.810,290.9 +20.2,0.99,4.060,273.1,20.5,0.99,4.000,274.9 +20.0,0.99,5.790,286.7,19.9,0.99,5.700,286.5 +19.9,0.99,3.050,331.1,19.8,0.99,3.240,325.6 +20.3,0.99,4.730,317.1,20.3,0.99,5.050,316.5 +19.7,0.99,8.000,354.6,19.7,0.99,8.410,354.6 +19.8,0.99,10.340,8.8,19.7,0.99,10.520,9.4 +18.7,0.99,9.500,351.1,18.5,0.99,9.510,351.2 +18.9,0.99,8.110,332.8,18.8,0.99,8.360,335.0 +21.4,0.99,6.930,332.7,21.4,0.99,7.150,336.7 +23.4,0.99,9.160,339.9,23.3,0.99,9.300,339.9 +22.7,0.99,8.020,337.5,22.6,0.99,8.130,337.5 +21.9,0.99,14.650,323.2,21.7,0.99,14.700,323.3 +21.5,0.99,15.680,331.9,21.3,0.99,15.770,332.0 +20.8,0.99,15.480,334.3,20.6,0.99,15.540,334.3 +19.5,0.99,16.800,333.9,19.3,0.99,16.890,333.9 +17.6,0.99,17.220,335.9,17.3,0.99,17.320,335.9 +16.0,0.99,16.520,334.0,15.8,0.99,16.590,334.1 +14.9,0.99,18.440,341.7,14.7,0.99,18.530,341.6 +13.7,0.99,17.530,337.7,13.5,0.99,17.610,337.8 +12.9,0.99,18.030,334.8,12.7,0.99,18.110,334.9 +12.3,0.99,16.960,333.8,12.0,0.99,17.040,333.9 +10.5,0.99,17.240,331.8,10.3,0.99,17.310,331.9 +10.1,0.99,15.260,333.3,9.8,0.99,15.340,333.3 +9.7,0.99,15.100,330.7,9.5,0.99,15.170,330.7 +9.1,0.99,17.220,333.2,8.9,0.99,17.310,333.2 +9.1,1.00,14.790,333.1,8.8,1.00,14.850,333.2 +8.7,1.00,15.650,336.8,8.5,1.00,15.740,336.8 +8.2,1.00,16.210,333.0,8.0,1.00,16.280,333.1 +7.9,1.00,16.930,334.6,7.7,1.00,17.010,334.8 +8.2,1.00,16.210,331.9,8.0,1.00,16.290,332.0 +9.1,1.00,14.920,332.5,8.9,1.00,15.000,332.6 +10.3,1.00,15.140,330.6,10.1,1.00,15.250,330.7 +11.4,1.00,13.850,329.8,11.2,1.00,13.960,330.0 +13.5,1.00,13.660,333.5,13.3,1.00,13.770,333.5 +14.8,0.99,14.130,336.6,14.6,0.99,14.220,336.5 +15.4,0.99,13.900,337.4,15.2,0.99,14.000,337.4 +16.0,0.99,13.760,339.4,15.7,0.99,13.840,339.3 +16.3,0.99,14.080,338.6,16.1,0.99,14.140,338.5 +16.4,0.99,13.480,333.2,16.2,0.99,13.530,333.4 +16.2,0.99,12.640,347.3,16.0,0.99,12.690,347.1 +16.0,0.99,12.470,344.9,15.8,0.99,12.550,344.9 +16.0,0.99,10.920,350.3,15.8,0.99,10.990,350.3 +16.1,0.99,8.460,356.2,15.9,0.99,8.510,356.1 +16.1,0.99,7.680,1.4,15.9,0.99,7.720,1.3 +16.2,0.99,5.890,9.1,16.0,0.99,5.930,8.9 +16.1,0.99,4.530,7.1,15.9,0.99,4.540,7.4 +15.7,0.99,2.760,15.7,15.6,0.99,2.740,16.0 +15.8,0.99,1.010,2.4,15.7,0.99,1.010,3.6 +15.9,0.99,0.430,283.3,15.7,0.99,0.410,283.7 +16.0,0.99,1.580,230.9,15.8,0.99,1.570,230.3 +16.0,0.99,3.160,224.5,15.8,0.99,3.160,224.0 +15.9,0.99,4.150,229.9,15.8,0.99,4.150,229.0 +16.0,0.99,4.630,232.0,15.8,0.99,4.650,230.9 +15.8,0.99,4.690,237.2,15.7,0.99,4.820,234.9 +15.5,0.99,5.200,241.9,15.4,0.99,5.320,240.4 +16.0,0.99,5.480,235.5,15.9,0.99,5.640,234.4 +16.9,0.99,6.910,223.8,16.8,0.99,6.950,223.6 +18.3,0.99,8.420,218.8,18.1,0.99,8.440,218.9 +18.8,0.99,9.700,217.4,18.6,0.99,9.730,217.5 +19.1,0.99,10.190,219.3,18.9,0.99,10.230,219.4 +19.5,0.99,11.020,218.2,19.3,0.99,11.080,218.4 +19.9,0.99,12.010,219.6,19.7,0.99,12.070,219.8 +20.0,0.99,12.380,223.4,19.8,0.99,12.440,223.5 +19.9,0.99,12.710,223.7,19.7,0.99,12.780,223.8 +20.0,0.99,12.730,229.1,19.8,0.99,12.790,229.2 +20.0,0.99,12.170,231.7,19.8,0.99,12.220,231.8 +20.0,0.99,12.230,229.7,19.8,0.99,12.280,229.8 +20.1,0.99,11.500,235.5,19.9,0.99,11.560,235.6 +20.1,0.99,11.080,240.5,19.9,0.99,11.130,240.5 +18.9,0.99,7.290,292.5,18.8,0.99,7.390,290.7 +17.8,0.99,8.900,295.4,17.7,0.99,9.600,293.2 +17.4,0.99,7.760,309.3,17.3,0.99,7.780,309.9 +16.3,0.99,8.090,20.3,16.2,0.99,8.050,20.6 +15.4,0.99,8.300,16.9,15.3,0.99,8.250,16.9 +14.5,0.99,8.990,15.1,14.3,0.99,8.960,15.1 +13.7,0.99,7.610,11.8,13.5,0.99,7.620,11.8 +13.2,0.99,6.910,6.8,13.0,0.99,6.930,6.8 +13.4,0.99,6.410,353.3,13.2,0.99,6.410,353.6 +14.0,0.99,7.180,347.6,13.8,0.99,7.190,347.6 +14.2,0.99,7.910,333.6,14.0,0.99,7.910,333.9 +14.9,0.99,8.240,330.6,14.7,0.99,8.290,330.9 +16.1,0.99,8.740,335.9,15.9,0.99,8.780,336.0 +17.2,0.99,8.140,340.9,17.0,0.99,8.200,340.9 +17.8,0.99,8.420,346.1,17.6,0.99,8.460,345.9 +18.4,0.99,8.230,348.0,18.2,0.99,8.270,347.8 +18.8,0.99,7.740,348.8,18.6,0.99,7.780,348.6 +18.9,0.99,7.460,352.1,18.7,0.99,7.480,351.9 +18.8,0.99,7.620,354.6,18.6,0.99,7.630,354.5 +18.4,0.99,7.990,2.7,18.2,0.99,8.000,2.6 +18.1,0.99,6.850,11.6,17.9,0.99,6.850,11.4 +17.7,0.99,5.910,21.3,17.5,0.99,5.900,21.1 +17.6,0.99,4.970,29.5,17.4,0.99,4.960,29.3 +17.6,0.99,4.460,26.8,17.4,0.99,4.470,26.6 +17.4,0.99,3.570,34.9,17.3,0.99,3.560,34.9 +17.2,0.99,2.810,27.6,17.0,0.99,2.800,27.5 +17.1,0.99,2.540,20.9,16.9,0.99,2.540,21.0 +17.1,0.99,1.440,18.0,16.9,0.99,1.450,18.4 +16.8,0.99,1.040,342.6,16.6,0.99,0.990,344.5 +15.4,0.99,2.340,333.2,15.5,0.99,1.740,330.4 +15.3,0.99,3.330,341.6,15.8,0.99,2.960,337.5 +15.5,0.99,2.880,325.8,15.9,0.99,2.810,320.2 +15.6,0.99,2.690,324.4,16.0,0.99,2.670,318.6 +15.9,0.99,3.120,315.1,16.1,0.99,3.160,311.2 +16.6,0.99,2.980,311.4,16.6,0.99,2.940,309.0 +16.8,0.99,1.910,281.5,16.7,0.99,2.070,283.1 +18.1,0.99,2.260,273.7,17.9,0.99,2.280,274.9 +18.2,0.99,2.720,219.3,18.0,0.99,2.650,220.9 +18.9,0.99,3.780,220.3,18.7,0.99,3.770,220.6 +20.2,0.99,3.480,219.4,20.0,0.99,3.310,221.0 +19.7,0.99,5.360,217.1,19.5,0.99,5.270,217.4 +19.9,0.99,5.740,220.7,19.7,0.99,5.670,221.0 +19.9,0.99,5.470,223.8,19.8,0.99,5.300,225.6 +19.9,0.99,6.150,227.4,19.7,0.99,6.070,227.9 +19.9,0.99,2.180,221.5,19.7,0.99,2.120,222.6 +20.2,0.99,4.950,239.2,20.0,0.99,4.910,239.7 +20.1,0.99,3.880,238.6,19.9,0.99,3.860,238.9 +19.9,0.99,4.800,225.9,19.7,0.99,4.770,226.1 +19.9,0.99,4.430,246.5,19.7,0.99,4.380,247.5 +19.9,0.99,4.980,252.1,19.8,0.99,4.800,255.4 +19.7,0.99,5.440,269.2,19.7,0.99,5.520,271.6 +19.4,0.99,4.840,272.8,19.5,0.99,5.120,274.7 +19.5,0.99,5.390,280.0,19.7,0.99,5.600,282.2 +19.2,0.99,5.410,280.0,19.5,0.99,5.600,282.3 +18.5,0.99,4.670,275.8,18.8,0.99,4.930,278.5 +18.1,0.99,5.010,274.2,18.4,0.99,5.250,277.5 +18.3,0.99,4.310,265.0,18.6,0.99,4.330,269.3 +18.9,0.99,3.880,250.5,19.1,0.99,3.720,254.4 +19.9,0.99,3.520,241.1,19.9,0.99,3.330,243.8 +20.2,0.99,3.620,226.2,20.2,0.99,3.400,228.0 +20.5,0.99,3.900,206.2,20.3,0.99,3.860,206.6 +20.7,0.99,5.350,187.7,20.5,0.99,5.320,187.8 +20.8,0.99,5.560,183.1,20.7,0.99,5.530,183.3 +20.8,0.99,6.600,186.8,20.6,0.99,6.590,186.9 +20.8,0.99,6.830,188.1,20.7,0.99,6.820,188.2 +20.7,0.99,7.280,187.7,20.5,0.99,7.270,187.8 +20.4,0.99,7.380,186.8,20.2,0.99,7.380,186.9 +20.4,0.99,7.580,188.0,20.3,0.99,7.580,188.1 +20.4,0.99,8.030,182.6,20.2,0.99,8.050,182.6 +20.4,0.99,7.680,182.8,20.2,0.99,7.700,182.9 +20.4,0.99,7.430,187.5,20.2,0.99,7.440,187.5 +20.2,0.99,6.900,199.1,20.1,0.99,6.920,199.1 +20.1,0.99,6.800,198.5,19.9,0.99,6.980,198.5 +19.9,0.99,6.680,191.3,19.7,0.99,6.840,191.5 +19.9,0.99,6.350,185.0,19.7,0.99,6.490,185.0 +19.9,0.99,6.240,178.8,19.7,0.99,6.390,179.0 +19.8,0.99,5.620,173.6,19.7,0.99,5.780,173.7 +19.9,0.99,6.170,183.5,19.7,0.99,6.280,183.7 +20.0,0.99,4.030,185.8,19.9,0.99,4.260,186.8 +20.3,0.99,8.060,152.6,20.1,0.99,8.140,154.0 +20.3,0.99,6.280,158.7,20.1,0.99,6.530,159.0 +20.4,0.99,4.870,176.0,20.2,0.99,5.150,175.6 +20.4,0.99,3.950,162.0,20.3,0.99,4.190,162.8 +20.5,0.99,5.270,153.0,20.3,0.99,5.310,153.6 +21.0,0.99,6.180,153.8,20.8,0.99,6.220,153.9 +21.0,0.99,7.120,152.6,20.8,0.99,7.140,153.0 +21.1,0.99,7.310,156.8,20.9,0.99,7.340,156.8 +21.1,0.99,7.390,147.6,20.9,0.99,7.410,147.8 +21.1,0.99,7.980,148.5,20.9,0.99,8.020,148.6 +21.1,0.99,8.590,141.5,20.9,0.99,8.620,141.7 +20.8,0.99,8.410,139.6,20.6,0.99,8.470,139.8 +20.9,0.99,8.360,141.9,20.7,0.99,8.410,142.1 +20.8,0.99,8.700,149.0,20.6,0.99,8.750,148.9 +20.9,0.99,9.540,156.0,20.7,0.99,9.630,156.1 +21.0,0.99,9.010,169.8,20.8,0.99,9.170,169.7 +20.9,0.99,8.390,166.7,20.7,0.99,8.490,166.9 +21.0,0.99,8.980,172.9,20.9,0.99,9.300,172.9 +21.9,0.99,10.240,176.2,21.8,0.99,10.610,177.8 +21.3,0.99,8.170,160.0,21.2,0.99,8.700,162.0 +21.4,0.99,7.250,152.8,21.3,0.99,7.480,155.3 +21.3,0.99,8.850,160.1,21.2,0.99,9.260,161.0 +21.4,0.99,8.570,156.2,21.4,0.99,9.050,157.6 +21.5,0.99,8.560,157.3,21.4,0.99,8.920,158.2 +21.5,0.99,8.720,151.6,21.4,0.99,9.100,152.2 +21.6,0.99,8.680,151.1,21.5,0.99,9.130,152.3 +21.6,0.99,7.940,145.0,21.4,0.99,8.260,146.2 +21.7,0.99,9.360,149.4,21.5,0.99,9.730,150.3 +21.8,0.99,9.150,152.8,21.7,0.99,9.510,153.5 +22.0,0.99,9.460,147.1,21.8,0.99,9.600,147.6 +22.0,0.99,9.930,145.1,21.8,0.99,10.050,145.5 +21.9,0.99,9.870,145.5,21.7,0.99,10.000,145.9 +21.9,0.99,10.760,143.1,21.7,0.99,10.950,143.5 +21.9,0.99,10.390,143.1,21.7,0.99,10.580,143.6 +21.8,0.99,9.600,143.5,21.7,0.99,9.800,143.9 +21.8,0.99,10.050,150.5,21.7,0.99,10.440,150.8 +21.9,0.99,8.960,144.3,21.7,0.99,9.300,144.9 +22.1,0.99,10.450,147.4,21.9,0.99,10.870,148.4 +21.9,0.99,8.500,155.3,21.8,0.99,8.760,156.3 +22.0,0.99,8.950,156.3,21.9,0.99,9.260,156.8 +22.1,0.99,10.100,162.3,21.9,0.99,10.390,162.8 +21.8,0.99,8.370,154.2,21.7,0.99,8.860,155.8 +21.7,0.99,7.450,160.1,21.7,0.99,7.980,161.6 +21.9,0.99,4.920,153.2,21.9,0.99,5.650,158.3 +21.4,0.99,4.780,91.1,21.4,0.99,4.980,104.4 +21.3,0.99,6.970,113.1,21.2,0.99,7.180,117.7 +21.3,0.99,6.680,111.5,21.2,0.99,6.850,114.8 +21.6,0.99,7.020,132.8,21.5,0.99,7.530,135.1 +21.7,0.99,7.640,138.4,21.6,0.99,8.100,140.0 +21.8,0.99,7.660,140.1,21.7,0.99,8.140,141.9 +21.9,0.99,7.870,146.9,21.8,0.99,8.320,147.8 +22.0,0.99,6.590,143.1,21.8,0.99,6.970,144.3 +21.9,0.99,6.850,133.8,21.7,0.99,7.070,134.4 +22.1,0.99,6.940,132.7,21.9,0.99,6.960,133.0 +22.2,0.99,6.550,138.2,22.0,0.99,6.570,138.3 +22.0,0.99,7.690,134.5,21.8,0.99,7.710,134.7 +22.1,0.99,8.680,143.3,21.9,0.99,8.700,143.3 +22.0,0.99,6.400,151.5,21.8,0.99,6.470,151.6 +22.2,0.99,4.850,276.9,22.0,0.99,4.810,276.4 +21.9,0.99,5.970,342.8,21.7,0.99,5.730,342.0 +20.4,0.99,6.470,25.5,20.4,0.99,6.530,26.4 +20.9,0.99,6.060,28.1,21.2,0.99,5.820,28.3 +22.5,0.99,2.830,66.3,22.6,0.99,2.500,66.1 +20.3,0.99,5.600,30.8,20.2,0.99,5.490,32.9 +20.8,0.99,3.880,38.4,20.8,0.99,3.870,40.9 +21.6,0.99,3.210,54.4,21.7,0.99,2.990,52.7 +22.1,0.99,2.900,55.3,22.2,0.99,2.690,51.1 +20.6,0.99,3.670,22.3,20.7,0.99,3.590,25.9 +20.6,0.99,2.560,47.4,20.8,0.99,2.480,53.1 +19.5,0.99,4.520,357.6,19.7,0.99,4.270,2.3 +19.3,0.99,6.060,337.1,19.3,0.99,6.050,340.1 +19.9,0.99,5.430,9.3,20.1,0.99,5.510,11.7 +19.9,0.99,4.240,14.0,20.0,0.99,4.540,16.0 +19.6,0.99,4.000,2.6,19.6,0.99,4.280,7.2 +20.4,0.99,3.210,21.0,20.5,0.99,3.390,25.1 +20.8,0.99,3.040,5.9,20.8,0.99,3.190,9.1 +21.2,0.99,3.210,340.9,21.2,0.99,3.300,345.3 +22.4,0.99,2.130,329.7,22.3,0.99,2.190,331.5 +23.2,0.99,1.970,295.8,23.1,0.99,2.070,297.4 +24.2,0.99,1.040,295.4,24.1,0.99,1.150,297.6 +24.2,0.99,1.390,193.3,24.6,0.99,1.080,236.0 +23.8,0.99,2.330,177.5,24.1,0.99,1.690,210.0 +25.1,0.99,2.620,309.1,25.2,0.99,2.850,320.9 +24.2,0.99,5.140,26.1,24.3,0.99,5.460,24.4 +25.5,0.99,9.130,12.8,25.5,0.99,10.030,14.5 +24.8,0.99,7.440,30.3,24.7,0.99,7.700,29.6 +24.0,0.99,7.570,29.4,23.9,0.99,8.410,29.3 +23.6,0.99,10.410,33.9,23.5,0.99,10.840,34.6 +23.0,0.99,10.970,38.3,22.8,0.99,11.230,38.7 +22.1,0.99,9.750,44.9,22.1,0.99,10.110,46.1 +21.6,0.99,8.110,40.1,21.5,0.99,8.340,41.5 +21.0,0.99,9.660,46.4,20.9,0.99,10.070,47.5 +21.0,0.99,7.520,53.8,20.9,0.99,7.760,54.4 +20.7,0.99,9.550,49.8,20.5,0.99,9.590,50.1 +20.7,0.99,8.910,55.1,20.5,0.99,8.960,55.5 +20.4,0.99,8.420,49.5,20.3,0.99,8.550,50.2 +20.2,1.00,9.220,44.7,20.1,1.00,9.270,45.0 +20.3,1.00,8.880,49.0,20.1,1.00,8.920,49.3 +20.5,1.00,7.270,58.4,20.3,1.00,7.360,58.5 +21.2,1.00,7.920,67.1,21.3,1.00,8.530,64.2 +21.4,1.00,7.320,83.8,21.4,1.00,7.690,81.5 +22.0,1.00,6.070,89.7,21.8,1.00,6.110,89.4 +22.3,1.00,5.700,101.8,22.1,1.00,5.730,101.6 +22.3,1.00,4.140,106.0,22.1,1.00,4.150,105.6 +22.4,1.00,2.720,129.2,22.2,1.00,2.730,128.6 +22.4,0.99,1.880,144.7,22.2,0.99,1.880,143.6 +22.3,0.99,1.510,167.7,22.1,0.99,1.480,166.8 +22.2,0.99,1.150,129.8,22.1,0.99,1.230,120.0 +22.2,1.00,1.770,44.4,22.0,1.00,2.020,47.9 +22.1,1.00,2.680,16.6,22.0,1.00,2.720,17.3 +22.2,1.00,7.370,18.4,22.1,1.00,7.540,19.1 +21.8,1.00,9.230,48.4,21.6,1.00,9.300,48.9 +21.7,1.00,9.370,62.8,21.6,1.00,9.410,63.0 +21.3,1.00,8.140,67.9,21.2,1.00,8.330,68.5 +21.2,1.00,8.290,69.2,21.0,1.00,8.440,69.4 +20.9,1.00,7.840,69.8,20.7,1.00,7.960,70.0 +20.7,1.00,7.660,74.6,20.5,1.00,7.740,74.8 +20.6,1.00,7.620,71.1,20.4,1.00,7.690,71.4 +20.5,1.00,7.310,77.3,20.3,1.00,7.370,77.6 +20.3,1.00,7.220,74.9,20.1,1.00,7.300,75.2 +20.2,1.00,7.070,77.0,20.0,1.00,7.140,77.3 +20.0,1.00,6.840,74.4,19.8,1.00,6.880,74.6 +20.0,1.00,6.920,78.6,19.8,1.00,6.960,78.8 +19.9,1.00,6.180,80.7,19.7,1.00,6.200,80.9 +19.9,1.00,5.990,90.5,19.7,1.00,6.010,90.7 +20.2,1.00,5.750,103.7,20.0,1.00,5.750,103.8 +20.3,1.00,5.370,106.9,20.1,1.00,5.370,107.0 +20.4,1.00,5.770,116.9,20.2,1.00,5.770,117.0 +20.3,1.00,5.620,120.5,20.2,1.00,5.610,120.5 +20.4,1.00,5.460,121.1,20.2,1.00,5.450,121.1 +20.4,1.00,5.120,127.2,20.2,1.00,5.120,127.3 +20.3,1.00,5.070,131.2,20.1,1.00,5.070,131.2 +20.3,1.00,4.980,139.3,20.1,1.00,4.980,139.3 +20.3,1.00,5.250,138.7,20.1,1.00,5.260,138.8 +20.3,1.00,5.250,149.2,20.1,1.00,5.260,149.3 +20.3,1.00,5.270,152.5,20.1,1.00,5.290,152.6 +20.3,1.00,5.440,160.3,20.1,1.00,5.450,160.3 +20.1,1.00,5.410,168.8,20.0,1.00,5.480,168.8 +20.1,1.00,5.090,167.8,19.9,1.00,5.150,167.8 +20.2,1.00,5.480,175.4,20.0,1.00,5.480,174.6 +20.1,1.00,4.810,180.0,19.9,1.00,4.920,179.3 +20.1,1.00,5.080,179.3,19.9,1.00,5.130,179.4 +20.1,1.00,5.460,163.6,19.9,1.00,5.530,163.3 +20.1,1.00,5.400,158.2,19.9,1.00,5.510,157.9 +20.0,1.00,4.710,152.7,19.9,1.00,4.750,154.7 +20.1,1.00,5.400,145.1,19.9,1.00,5.560,145.2 +20.3,1.00,5.730,140.3,20.1,1.00,5.800,140.7 +20.4,1.00,5.360,140.4,20.2,1.00,5.420,140.7 +20.8,1.00,4.850,146.6,20.6,1.00,4.950,146.6 +21.5,1.00,5.870,149.3,21.3,1.00,5.920,149.5 +21.9,1.00,6.950,155.3,21.7,1.00,6.990,155.4 +21.9,1.00,7.540,151.8,21.7,1.00,7.550,152.0 +22.0,1.00,7.230,155.2,21.8,1.00,7.260,155.3 +21.8,1.00,8.180,151.0,21.6,1.00,8.200,151.1 +21.5,1.00,8.460,149.0,21.3,1.00,8.490,149.1 +21.6,1.00,8.900,153.6,21.4,1.00,8.950,153.7 +21.6,1.00,9.870,152.9,21.4,1.00,9.920,153.0 +21.7,1.00,10.080,157.9,21.5,1.00,10.170,157.9 +21.5,1.00,10.740,157.4,21.3,1.00,10.790,157.4 +21.5,1.00,10.420,160.1,21.3,1.00,10.470,160.1 +21.6,1.00,9.680,162.5,21.4,1.00,9.750,162.5 +21.5,1.00,10.200,167.1,21.4,1.00,10.400,167.4 +21.7,1.00,8.850,168.8,21.6,1.00,9.170,168.9 +21.5,1.00,8.630,163.3,21.3,1.00,8.860,163.7 +21.5,0.99,9.030,165.9,21.4,0.99,9.270,166.3 +21.7,0.99,8.930,167.0,21.6,0.99,9.080,167.4 +21.8,0.99,8.470,170.3,21.6,0.99,8.670,170.5 +22.0,0.99,7.980,166.8,21.8,0.99,8.220,167.4 +21.9,0.99,8.910,168.0,21.8,0.99,9.180,168.5 +21.9,0.99,8.720,169.3,21.8,0.99,8.970,169.5 +21.8,0.99,8.570,161.1,21.7,0.99,8.750,161.2 +22.0,0.99,8.800,159.3,21.8,0.99,9.030,159.4 +21.9,0.99,8.810,155.5,21.7,0.99,8.960,155.9 +22.2,0.99,10.100,158.5,22.1,0.99,10.160,158.5 +22.3,0.99,9.680,162.9,22.1,0.99,9.730,162.9 +22.2,0.99,9.230,160.4,22.0,0.99,9.290,160.5 +22.2,0.99,10.020,162.1,22.0,0.99,10.100,162.0 +22.1,0.99,9.440,157.5,21.9,0.99,9.510,157.5 +21.9,0.99,9.620,160.5,21.7,0.99,9.660,160.6 +22.2,0.99,8.850,164.8,22.0,0.99,8.990,165.0 +21.8,0.99,10.580,161.5,21.6,0.99,10.660,161.8 +21.8,0.99,9.650,168.2,21.7,0.99,9.750,168.2 +21.8,0.99,10.300,165.4,21.6,0.99,10.330,165.5 +21.8,0.99,9.280,164.0,21.6,0.99,9.360,164.3 +21.8,0.99,11.790,166.5,21.6,0.99,11.820,166.6 +21.8,0.99,7.920,168.5,21.7,0.99,8.170,169.1 +21.7,0.99,9.950,174.5,21.5,0.99,10.150,174.7 +21.7,0.99,6.510,179.6,21.5,0.99,6.730,179.7 +21.5,0.99,4.540,185.8,21.4,0.99,4.780,186.0 +21.6,0.99,4.910,167.3,21.4,0.99,5.110,168.7 +21.5,0.99,5.890,163.9,21.4,0.99,6.070,164.5 +22.2,0.99,7.250,177.7,22.1,0.99,7.640,179.3 +21.6,0.99,7.860,161.8,21.5,0.99,8.070,162.5 +21.6,0.99,8.580,163.2,21.5,0.99,8.780,163.3 +21.7,0.99,7.970,166.3,21.6,0.99,8.170,166.6 +21.7,0.99,9.180,159.6,21.5,0.99,9.360,160.0 +21.9,0.99,8.680,162.8,21.7,0.99,8.880,163.2 +22.3,0.99,10.960,170.6,22.1,0.99,11.000,170.8 +22.3,0.99,10.920,167.8,22.1,0.99,10.960,168.0 +22.4,0.99,10.670,171.7,22.2,0.99,10.730,171.8 +22.4,0.99,10.900,165.3,22.2,0.99,10.950,165.5 +22.4,0.99,11.020,164.1,22.2,0.99,11.090,164.2 +22.3,0.99,11.240,163.2,22.1,0.99,11.310,163.4 +22.1,0.99,9.980,160.8,21.9,0.99,10.050,161.0 +22.2,0.99,9.530,162.7,22.0,0.99,9.640,162.9 +22.1,0.99,8.900,163.3,21.9,0.99,9.030,163.4 +22.3,0.99,8.960,167.4,22.1,0.99,9.260,167.7 +22.3,0.99,9.160,168.5,22.2,0.99,9.370,168.8 +22.3,0.99,8.820,169.4,22.1,0.99,9.000,169.6 +22.3,0.99,7.860,177.0,22.1,0.99,8.090,177.1 +22.2,0.99,10.550,174.5,22.0,0.99,10.800,174.8 +22.4,0.99,11.520,175.7,22.3,0.99,11.820,176.2 +22.5,0.99,7.160,183.3,22.3,0.99,7.480,183.4 +22.3,0.99,4.120,172.2,22.2,0.99,4.370,173.1 +22.3,0.99,5.190,153.6,22.2,0.99,5.550,157.6 +22.4,0.99,7.110,161.6,22.3,0.99,7.580,165.0 +22.2,0.99,4.600,141.0,22.1,0.99,4.760,148.9 +22.5,0.99,6.930,159.7,22.4,0.99,7.240,163.5 +22.6,0.99,8.960,166.3,22.4,0.99,9.170,167.3 +22.6,0.99,7.640,164.2,22.4,0.99,7.870,165.2 +22.8,0.99,6.860,166.1,22.6,0.99,7.100,167.3 +23.2,0.99,7.100,163.3,23.0,0.99,7.140,163.8 +23.1,0.99,9.100,164.8,23.0,0.99,9.120,165.2 +23.0,0.99,9.320,171.1,22.8,0.99,9.350,171.4 +23.0,0.99,8.850,163.3,22.8,0.99,8.890,163.8 +22.9,0.99,8.600,163.6,22.8,0.99,8.640,164.0 +22.8,0.99,9.010,160.2,22.6,0.99,9.060,160.5 +22.6,0.99,9.520,160.1,22.4,0.99,9.660,160.5 +22.5,0.99,9.130,159.7,22.3,0.99,9.270,160.2 +22.7,0.99,10.010,165.3,22.6,0.99,10.430,165.7 +22.7,0.99,9.690,164.3,22.5,0.99,9.990,164.6 +22.2,0.99,11.020,168.4,22.0,0.99,11.160,168.6 +22.4,0.99,11.830,174.5,22.2,0.99,11.940,174.8 +22.4,0.99,12.940,176.7,22.2,0.99,13.190,177.2 +22.4,0.99,9.650,163.3,22.3,0.99,10.000,163.8 +22.3,0.99,9.230,177.5,22.2,0.99,9.590,177.6 +22.5,0.99,8.890,175.3,22.4,0.99,9.480,176.6 +22.8,0.99,12.170,176.1,22.6,0.99,12.530,176.5 +22.6,0.99,10.300,176.9,22.4,0.99,10.900,177.3 +22.6,0.99,8.520,167.5,22.4,0.99,8.840,167.8 +22.6,0.99,7.860,164.9,22.5,0.99,8.230,166.1 +22.6,0.99,8.780,160.7,22.4,0.99,9.140,161.6 +22.6,0.99,8.700,164.0,22.5,0.99,9.030,164.4 +22.6,0.99,9.320,163.8,22.4,0.99,9.590,164.0 +22.8,0.99,8.190,159.9,22.7,0.99,8.520,160.4 +23.4,0.99,7.800,162.4,23.2,0.99,7.860,162.8 +23.4,0.99,8.850,151.9,23.2,0.99,8.880,152.2 +23.5,0.99,9.210,156.6,23.3,0.99,9.230,156.9 +23.4,0.99,8.410,154.8,23.2,0.99,8.450,155.0 +23.6,0.99,8.570,153.5,23.4,0.99,8.650,153.6 +23.4,0.99,9.230,147.2,23.2,0.99,9.300,147.1 +23.3,0.99,8.950,143.2,23.2,0.99,9.520,144.2 +23.5,0.99,10.030,147.3,23.5,0.99,10.420,148.0 +22.9,0.99,11.280,142.8,22.7,0.99,11.380,143.1 +22.6,0.99,9.990,150.6,22.4,0.99,10.090,150.8 +22.7,0.99,10.460,156.3,22.5,0.99,10.660,156.5 +22.9,0.99,11.200,160.2,22.7,0.99,11.350,160.3 +22.9,0.99,10.160,161.4,22.7,0.99,10.480,161.5 +22.8,0.99,9.590,163.8,22.7,0.99,9.930,163.9 +22.9,0.99,8.890,168.7,22.7,0.99,9.280,169.0 +22.9,0.99,9.990,161.6,22.8,0.99,10.370,162.3 +23.1,0.99,9.920,154.4,22.9,0.99,10.190,155.4 +23.1,0.99,9.470,154.8,23.0,0.99,9.820,155.8 +23.1,0.99,6.490,131.9,23.0,0.99,6.530,135.8 +23.1,0.99,5.140,169.4,22.9,0.99,5.660,171.4 +23.3,0.99,7.340,169.2,23.2,0.99,7.770,169.9 +23.3,0.99,9.770,168.4,23.2,0.99,10.120,168.7 +23.4,0.99,8.050,164.3,23.3,0.99,8.380,164.8 +23.4,0.99,9.090,153.4,23.2,0.99,9.390,154.3 +23.8,0.99,9.710,165.0,23.6,0.99,9.880,165.5 +24.0,0.99,9.730,163.3,23.8,0.99,9.840,163.3 +23.8,0.99,9.130,154.2,23.6,0.99,9.200,154.6 +23.9,0.99,9.630,150.5,23.7,0.99,9.740,150.9 +23.8,0.99,10.480,151.1,23.6,0.99,10.550,151.3 +23.6,0.99,10.260,145.2,23.4,0.99,10.350,145.5 +23.5,0.99,10.950,146.9,23.4,0.99,11.260,147.6 +23.7,0.99,11.430,150.7,23.5,0.99,11.670,151.0 +23.6,0.99,11.130,150.9,23.4,0.99,11.470,151.3 +23.6,0.99,11.380,156.3,23.4,0.99,11.690,156.7 +23.6,0.99,11.670,160.8,23.5,0.99,12.100,161.0 +23.7,0.99,11.710,160.0,23.5,0.99,12.020,160.3 +24.0,0.99,11.160,163.1,23.9,0.99,11.630,163.6 +24.0,0.99,10.010,161.8,23.9,0.99,10.460,162.5 +23.9,0.99,10.270,160.8,23.7,0.99,10.620,161.2 +23.9,0.99,10.080,164.0,23.8,0.99,10.520,164.3 +23.8,0.99,9.600,161.3,23.7,0.99,9.910,161.9 +24.0,0.99,9.680,159.0,23.9,0.99,10.180,159.2 +23.9,0.99,8.690,159.8,23.9,0.99,9.250,161.0 +23.9,0.99,8.710,151.8,23.8,0.99,9.090,152.5 +23.9,0.99,9.500,147.4,23.8,0.99,9.780,148.1 +23.9,0.99,9.610,147.0,23.8,0.99,9.950,147.8 +23.9,0.99,9.190,148.9,23.8,0.99,9.550,149.6 +23.8,0.99,9.900,145.5,23.7,0.99,10.130,145.8 +24.3,0.99,10.260,144.1,24.1,0.99,10.350,144.5 +24.1,0.99,11.050,147.9,23.9,0.99,11.080,148.1 +23.8,0.99,10.030,143.2,23.7,0.99,10.060,143.5 +23.8,0.99,10.550,144.4,23.6,0.99,10.640,144.5 +23.8,0.99,9.830,140.6,23.7,0.99,9.930,140.8 +23.8,0.99,10.290,142.0,23.7,0.99,10.390,142.3 +23.6,0.99,9.870,145.2,23.5,0.99,10.100,145.5 +23.5,0.99,11.170,143.4,23.4,0.99,11.400,143.7 +23.6,0.99,11.370,147.8,23.4,0.99,11.610,148.0 +23.6,0.99,11.310,151.2,23.4,0.99,11.600,151.5 +23.6,0.99,11.300,153.5,23.5,0.99,11.560,153.7 +23.7,0.99,10.710,160.8,23.5,0.99,10.950,160.9 +23.6,0.99,10.680,159.7,23.4,0.99,11.010,159.9 +23.6,0.99,9.930,164.1,23.5,0.99,10.280,164.2 +23.7,0.99,9.210,162.6,23.6,0.99,9.590,162.9 +23.8,0.99,9.460,158.7,23.7,0.99,9.860,158.9 +23.7,0.99,8.970,155.1,23.6,0.99,9.310,155.6 +23.7,0.99,8.920,154.8,23.6,0.99,9.250,154.9 +24.0,0.99,8.990,156.7,23.9,0.99,9.370,157.3 +24.1,0.99,8.870,157.3,24.0,0.99,9.200,158.0 +23.9,0.99,9.310,151.1,23.7,0.99,9.570,151.7 +23.9,0.99,7.600,152.3,23.7,0.99,7.830,152.8 +23.9,0.99,7.580,147.6,23.7,0.99,7.820,147.9 +24.0,0.99,8.500,152.5,23.9,0.99,8.740,152.9 +24.2,0.99,9.860,155.7,24.0,0.99,9.930,155.8 +24.2,0.99,9.250,153.4,24.0,0.99,9.340,153.6 +24.3,0.99,8.940,157.1,24.1,0.99,9.040,157.5 +24.4,0.99,9.100,151.9,24.2,0.99,9.210,152.3 +24.3,0.98,9.430,149.0,24.1,0.98,9.510,149.3 +24.2,0.98,9.460,150.6,24.0,0.98,9.550,150.9 +24.0,0.98,9.360,153.2,23.9,0.98,9.550,153.5 +23.9,0.98,10.880,162.2,23.7,0.98,11.110,162.3 +23.9,0.98,9.410,168.6,23.7,0.98,9.660,168.9 +23.9,0.99,4.310,176.6,23.8,0.99,4.430,176.8 +23.9,0.99,1.560,73.3,23.9,0.99,1.520,106.9 +24.2,0.99,1.090,137.5,24.1,0.99,1.370,148.6 +21.6,0.99,11.500,14.8,21.4,0.99,11.490,15.0 +22.7,0.99,6.810,40.3,23.1,0.99,6.180,40.7 +24.3,0.99,5.060,202.5,24.3,0.99,5.330,207.2 +24.1,0.98,15.100,176.2,24.4,0.98,15.040,176.2 +23.8,0.99,8.990,192.6,23.9,0.99,9.530,191.8 +24.1,0.99,1.950,208.3,23.9,0.99,2.550,200.9 +23.7,0.99,0.930,139.9,23.7,0.99,1.310,163.3 +23.7,0.99,0.850,99.5,23.6,0.99,0.800,131.0 +23.8,0.99,2.050,109.2,23.7,0.99,2.040,121.5 +23.9,0.99,2.130,128.8,23.8,0.99,2.170,136.3 +23.9,0.99,2.340,127.2,23.8,0.99,2.360,132.3 +24.1,0.99,2.490,132.3,23.9,0.99,2.500,133.3 +24.4,0.99,3.380,148.3,24.3,0.99,3.390,148.5 +24.4,0.99,3.260,151.7,24.3,0.99,3.250,152.0 +24.6,0.99,3.430,165.3,24.4,0.99,3.430,165.5 +24.6,0.99,4.190,155.0,24.4,0.99,4.170,155.2 +24.6,0.99,4.520,150.4,24.4,0.99,4.530,150.5 +24.5,0.99,5.030,147.9,24.3,0.99,5.020,147.9 +24.4,0.99,5.750,152.3,24.3,0.99,5.880,152.5 +24.0,0.99,4.850,151.7,23.9,0.99,4.980,152.0 +24.1,0.99,5.290,145.1,23.9,0.99,5.510,145.3 +23.9,0.99,5.120,151.6,23.8,0.99,5.360,151.6 +23.8,0.99,5.540,143.7,23.6,0.99,5.780,144.1 +23.7,0.99,4.830,158.7,23.5,0.99,5.050,158.7 +23.5,0.99,5.400,160.1,23.4,0.99,5.850,161.4 +24.0,0.99,4.510,163.6,24.1,0.99,5.240,164.4 +24.3,0.99,3.970,168.7,24.2,0.99,4.330,165.5 +23.6,0.99,4.560,150.9,23.5,0.99,4.700,152.4 +24.4,0.99,5.410,151.6,24.2,0.99,5.580,151.7 +23.6,0.99,4.800,139.1,23.5,0.99,4.980,140.2 +23.9,0.99,5.040,145.6,23.9,0.99,5.400,146.7 +24.1,0.99,5.500,151.4,24.1,0.99,5.810,152.6 +24.0,0.99,5.920,149.4,23.8,0.99,6.030,150.0 +23.8,0.99,4.960,146.9,23.7,0.99,4.980,147.2 +24.1,0.99,5.330,151.8,23.9,0.99,5.330,152.0 +24.3,0.99,5.390,151.7,24.2,0.99,5.420,151.9 +24.6,0.99,5.270,149.9,24.4,0.99,5.250,150.2 +24.6,0.99,4.490,140.7,24.5,0.99,4.490,141.2 +25.1,0.99,5.020,139.2,24.9,0.99,5.020,139.3 +25.4,0.99,5.920,145.1,25.2,0.99,5.920,145.2 +25.4,0.99,5.820,140.9,25.2,0.99,5.830,141.2 +25.2,0.99,6.350,135.4,25.0,0.99,6.360,135.3 +24.8,0.99,5.980,124.5,24.6,0.99,5.970,124.5 +24.8,0.99,7.650,131.8,24.7,0.99,7.750,132.0 +25.0,0.99,6.510,121.8,25.0,0.99,6.940,123.5 +24.9,0.99,6.340,128.9,24.8,0.99,6.590,129.9 +24.4,0.99,5.690,132.1,24.2,0.99,5.780,132.5 +24.7,0.99,6.030,140.3,24.7,0.99,6.340,141.2 +24.2,0.99,4.830,139.0,24.0,0.99,5.010,139.7 +24.2,0.99,5.330,151.4,24.2,0.99,5.680,151.8 +23.9,0.99,4.440,149.8,23.8,0.99,4.620,150.3 +24.1,0.99,3.870,147.9,24.1,0.99,4.170,148.2 +24.4,0.99,4.180,130.7,24.4,0.99,4.660,133.6 +24.3,0.99,4.090,140.6,24.2,0.99,4.400,140.7 +24.0,0.99,4.110,113.8,23.8,0.99,4.270,115.3 +23.9,0.99,5.100,109.9,23.8,0.99,5.210,110.5 +23.8,1.00,5.270,114.7,23.6,1.00,5.300,114.8 +24.0,1.00,4.520,114.6,23.9,1.00,4.520,114.6 +24.0,1.00,3.890,100.5,23.8,1.00,3.930,100.7 +24.1,1.00,4.760,111.8,23.9,1.00,4.780,111.8 +24.6,1.00,5.150,107.9,24.4,1.00,5.150,108.0 +24.7,1.00,5.720,110.2,24.5,1.00,5.730,110.4 +24.8,1.00,6.020,114.2,24.6,1.00,6.030,114.4 +24.7,0.99,5.560,117.5,24.5,0.99,5.570,117.6 +24.7,0.99,5.900,119.0,24.6,0.99,5.920,119.0 +24.6,0.99,5.810,121.6,24.4,0.99,5.820,121.6 +24.4,0.99,5.820,130.7,24.2,0.99,5.830,130.6 +24.3,0.99,7.130,115.7,24.1,0.99,7.150,115.7 +24.2,0.99,8.390,110.1,24.0,0.99,8.420,110.1 +24.3,0.99,7.300,129.0,24.1,0.99,7.330,129.3 +24.6,0.99,6.810,129.6,24.4,0.99,6.820,129.8 +24.4,0.99,5.910,134.5,24.2,0.99,5.960,134.5 +24.0,0.99,6.840,124.8,23.8,0.99,6.950,125.2 +23.9,0.99,8.630,121.0,23.8,0.99,8.730,121.5 +24.0,1.00,7.410,129.2,23.8,1.00,7.520,129.9 +24.3,1.00,6.210,127.5,24.2,1.00,6.370,128.3 +24.2,1.00,6.460,136.8,24.0,1.00,6.640,136.9 +24.1,1.00,6.810,138.8,23.9,1.00,6.880,139.0 +24.0,1.00,5.610,133.7,23.9,1.00,5.660,133.9 +24.0,1.00,6.210,129.9,23.9,1.00,6.240,130.0 +24.1,1.00,5.020,131.8,23.9,1.00,5.030,132.1 +24.0,1.00,5.740,133.1,23.8,1.00,5.770,133.2 +24.1,1.00,5.930,130.7,23.9,1.00,5.940,130.8 +24.3,1.00,6.120,128.7,24.1,1.00,6.170,128.9 +24.5,1.00,7.610,125.0,24.3,1.00,7.620,125.1 +25.0,1.00,6.210,127.5,24.9,1.00,6.250,127.7 +24.9,1.00,8.050,130.1,24.7,1.00,8.040,130.0 +24.6,1.00,8.330,137.4,24.4,1.00,8.280,137.3 +24.8,1.00,6.680,136.6,24.6,1.00,6.750,136.7 +25.1,0.99,7.030,137.8,24.9,0.99,7.060,137.9 +24.9,0.99,7.280,137.4,24.7,0.99,7.320,137.6 +24.8,0.99,7.870,130.4,24.6,0.99,7.930,130.5 +24.5,0.99,8.440,130.0,24.4,0.99,8.450,130.1 +24.8,0.99,8.220,137.7,24.7,0.99,8.300,137.9 +24.9,0.99,8.270,134.9,24.7,0.99,8.300,135.0 +24.5,0.99,8.890,146.0,24.3,0.99,8.930,146.0 +24.4,0.99,8.720,150.2,24.3,0.99,8.780,150.2 +24.4,0.99,8.090,155.2,24.2,0.99,8.090,155.2 +24.5,0.99,8.120,160.3,24.3,0.99,8.170,160.3 +24.5,0.99,6.290,159.7,24.3,0.99,6.350,159.6 +24.6,0.99,6.320,158.1,24.4,0.99,6.380,158.5 +24.5,0.99,5.910,171.0,24.4,0.99,5.950,170.7 +24.7,0.99,6.540,150.8,24.5,0.99,6.710,150.9 +24.6,0.99,6.640,152.3,24.4,0.99,6.690,152.6 +24.5,1.00,5.830,156.7,24.3,1.00,5.860,156.8 +24.5,1.00,6.100,149.1,24.3,1.00,6.100,149.2 +24.6,0.99,7.000,143.7,24.4,0.99,7.050,144.0 +24.9,0.99,6.550,152.8,24.7,0.99,6.570,153.0 +24.7,0.99,6.100,149.7,24.5,0.99,6.130,149.7 +25.0,0.99,6.980,147.7,24.8,0.99,7.010,147.7 +25.3,0.99,6.380,162.8,25.1,0.99,6.430,162.7 +25.2,0.99,8.500,156.3,25.0,0.99,8.510,156.4 +25.0,0.99,7.180,163.2,24.9,0.99,7.190,163.0 +25.0,0.99,6.270,161.3,24.9,0.99,6.290,161.3 +25.0,0.99,8.120,161.1,24.8,0.99,8.200,161.2 +24.6,0.99,7.700,152.3,24.4,0.99,7.730,152.2 +24.5,0.99,8.290,155.7,24.3,0.99,8.320,155.7 +24.6,0.99,9.270,153.0,24.4,0.99,9.330,153.1 +24.5,0.99,8.610,161.6,24.3,0.99,8.670,161.6 +24.5,0.99,9.470,154.9,24.3,0.99,9.490,155.1 +24.4,0.99,8.980,166.1,24.2,0.99,9.040,166.0 +24.3,0.99,8.140,173.6,24.1,0.99,8.200,173.5 +24.2,0.99,8.380,169.4,24.0,0.99,8.430,169.4 +24.3,0.99,7.610,170.8,24.1,0.99,7.670,170.8 +24.5,0.99,8.200,164.6,24.4,0.99,8.310,165.6 +24.8,0.99,8.230,171.7,24.7,0.99,8.290,171.8 +24.6,0.99,7.260,161.1,24.4,0.99,7.270,161.6 +25.3,0.99,7.870,172.3,25.1,0.99,7.980,172.2 +25.1,0.99,6.370,167.6,24.9,0.99,6.460,168.1 +25.1,0.99,7.680,168.6,24.9,0.99,7.730,168.6 +24.9,0.99,7.870,164.5,24.8,0.99,7.910,164.7 +25.0,0.99,7.660,167.1,24.9,0.99,7.700,167.2 +25.4,0.99,8.700,171.8,25.2,0.99,8.770,171.8 +25.2,0.99,9.030,170.8,25.0,0.99,9.070,170.9 +25.1,0.99,8.820,165.9,24.9,0.99,8.850,166.0 +24.9,0.99,8.380,159.3,24.7,0.99,8.420,159.3 +24.7,0.99,9.100,159.3,24.5,0.99,9.140,159.3 +24.8,0.99,8.880,163.6,24.6,0.99,8.930,163.7 +24.5,0.99,10.090,159.2,24.3,0.99,10.130,159.1 +24.5,0.99,10.060,160.5,24.3,0.99,10.140,160.4 +24.7,0.99,11.290,152.2,24.5,0.99,11.390,152.4 +24.8,0.99,10.850,154.8,24.6,0.99,10.920,155.1 +24.7,0.99,10.790,154.3,24.5,0.99,10.880,154.6 +24.7,0.99,11.310,160.3,24.5,0.99,11.390,160.4 +24.4,0.99,11.740,163.3,24.2,0.99,11.820,163.2 +24.4,0.99,10.700,160.0,24.2,0.99,10.790,160.0 +24.5,0.99,11.700,160.8,24.3,0.99,11.770,160.8 +24.6,0.99,11.090,162.5,24.4,0.99,11.210,162.3 +24.5,0.99,11.620,162.9,24.3,0.99,11.740,163.1 +24.7,0.99,12.000,164.0,24.5,0.99,12.070,163.9 +24.9,0.99,11.050,164.8,24.8,0.99,11.200,164.7 +25.1,0.99,10.200,160.6,24.9,0.99,10.380,160.6 +25.0,0.99,9.720,158.8,24.8,0.99,9.850,158.8 +25.0,0.99,10.000,158.9,24.8,0.99,10.070,158.8 +25.1,0.99,9.220,160.6,24.9,0.99,9.300,160.8 +25.1,0.99,9.760,161.6,24.9,0.99,9.830,161.6 +25.3,0.99,8.740,158.7,25.1,0.99,8.770,158.8 +25.4,0.99,8.660,160.0,25.2,0.99,8.710,160.1 +25.3,0.99,8.700,156.0,25.1,0.99,8.750,156.0 +25.3,0.99,9.290,151.9,25.1,0.99,9.340,152.1 +25.2,0.99,9.640,147.9,25.0,0.99,9.650,147.9 +25.0,0.99,8.850,151.8,24.8,0.99,8.900,152.2 +25.0,0.99,9.450,150.5,24.8,0.99,9.500,150.6 +24.8,0.99,9.660,146.3,24.6,0.99,9.720,146.4 +24.9,0.99,10.830,148.2,24.7,0.99,10.920,148.4 +24.7,0.99,10.580,154.4,24.5,0.99,10.640,154.5 +24.8,0.99,10.560,156.0,24.6,0.99,10.630,156.0 +24.8,0.99,11.820,157.4,24.7,0.99,11.890,157.4 +25.0,0.99,10.280,153.8,24.9,0.99,10.490,153.8 +24.8,0.99,10.700,157.9,24.6,0.99,10.810,157.9 +25.0,0.99,11.210,161.9,24.8,0.99,11.320,162.1 +25.0,0.99,9.310,164.9,24.9,0.99,9.520,165.2 +25.1,0.99,9.970,162.8,24.9,0.99,10.050,163.0 +25.1,0.99,9.490,167.9,25.0,0.99,9.730,168.1 +25.5,0.99,9.550,167.1,25.3,0.99,9.760,166.9 +25.1,0.99,10.520,157.5,24.9,0.99,10.670,157.6 +25.2,0.99,10.310,160.5,25.0,0.99,10.440,160.4 +25.4,0.99,10.490,157.5,25.2,0.99,10.650,157.5 +25.4,0.99,9.610,153.2,25.2,0.99,9.770,153.2 +25.3,0.99,10.230,147.1,25.1,0.99,10.330,147.3 +25.5,0.99,10.340,148.1,25.4,0.99,10.390,148.1 +25.5,0.99,10.970,149.4,25.3,0.99,11.000,149.4 +25.8,0.99,10.910,150.1,25.6,0.99,10.980,150.2 +26.3,0.99,11.510,160.1,26.1,0.99,11.610,160.1 +26.1,0.99,11.140,154.9,25.9,0.99,11.220,154.9 +25.4,0.99,10.920,149.5,25.2,0.99,10.980,149.6 +25.1,0.99,10.360,150.4,24.9,0.99,10.430,150.5 +25.1,0.99,10.030,152.1,24.9,0.99,10.110,152.3 +25.2,0.99,9.660,142.6,25.0,0.99,9.680,142.7 +25.3,0.99,9.440,147.6,25.1,0.99,9.520,147.7 +25.2,0.99,9.390,146.1,25.0,0.99,9.510,146.3 +25.5,0.99,10.850,153.4,25.3,0.99,11.090,153.6 +25.5,0.99,10.270,159.1,25.4,0.99,10.610,159.6 +25.1,0.99,11.150,155.5,24.9,0.99,11.340,155.7 +25.1,0.99,11.160,151.0,24.9,0.99,11.310,151.1 +25.4,0.99,10.940,159.2,25.2,0.99,11.230,159.4 +25.2,0.99,10.500,156.3,25.0,0.99,10.690,156.1 +25.2,0.99,11.860,155.9,25.0,0.99,12.000,156.0 +25.2,0.99,10.690,152.1,25.0,0.99,10.890,152.1 +25.5,0.99,9.540,150.0,25.4,0.99,9.710,150.2 +25.4,0.99,9.910,150.3,25.3,0.99,10.080,150.7 +25.5,0.99,10.300,147.2,25.4,0.99,10.500,147.7 +25.4,0.99,9.250,148.9,25.3,0.99,9.470,149.2 +25.5,0.99,9.070,144.0,25.3,0.99,9.200,144.2 +25.7,0.99,9.250,146.3,25.5,0.99,9.310,146.5 +25.7,0.99,9.470,146.0,25.5,0.99,9.550,146.0 +25.7,0.99,9.950,145.5,25.5,0.99,9.980,145.6 +25.7,0.99,10.850,145.4,25.5,0.99,10.950,145.6 +25.6,0.99,9.530,141.7,25.4,0.99,9.580,141.9 +25.6,0.99,10.090,149.4,25.4,0.99,10.170,149.5 +25.6,0.99,9.420,154.6,25.5,0.99,9.650,154.7 +25.3,0.99,10.840,150.6,25.1,0.99,10.930,150.6 +25.3,0.99,10.960,149.2,25.1,0.99,11.050,149.3 +25.2,0.99,11.020,148.1,25.0,0.99,11.110,148.2 +25.4,0.99,11.110,152.5,25.2,0.99,11.200,152.8 +25.3,0.99,9.750,154.2,25.1,0.99,9.860,154.3 +25.2,0.99,10.800,160.4,25.1,0.99,11.100,160.3 +25.3,0.99,9.590,164.5,25.2,0.99,9.880,164.6 +25.4,0.99,9.280,163.3,25.3,0.99,9.530,163.5 +25.7,0.99,9.940,166.3,25.6,0.99,10.150,166.8 +25.9,0.99,9.970,169.0,25.7,0.99,10.190,169.2 +25.6,0.99,9.410,174.1,25.5,0.99,9.800,174.5 +25.7,0.99,8.710,169.2,25.5,0.99,8.940,169.6 +25.8,0.99,9.090,173.1,25.6,0.99,9.300,173.2 +25.5,0.99,8.080,171.0,25.4,0.99,8.360,171.8 +25.4,0.99,8.160,165.0,25.3,0.99,8.230,165.3 +25.5,0.99,7.840,165.2,25.3,0.99,8.010,165.9 +25.8,0.99,7.650,169.2,25.6,0.99,7.770,169.2 +26.2,0.99,9.520,163.0,26.0,0.99,9.560,163.3 +26.0,0.99,9.220,161.1,25.8,0.99,9.230,161.3 +26.0,0.99,9.560,163.0,25.9,0.99,9.630,163.1 +26.0,0.99,9.880,165.0,25.8,0.99,9.920,165.1 +26.0,0.99,10.370,163.8,25.8,0.99,10.420,163.8 +25.9,0.99,10.950,161.2,25.7,0.99,11.030,161.3 +25.6,0.99,10.000,158.9,25.4,0.99,10.050,159.0 +25.6,0.99,10.710,156.8,25.4,0.99,10.770,157.0 +25.8,0.99,10.800,161.6,25.6,0.99,11.010,161.8 +25.4,0.99,11.140,159.3,25.3,0.99,11.180,159.5 +25.5,0.99,11.440,161.5,25.3,0.99,11.480,161.6 +26.0,0.99,12.610,168.3,25.8,0.99,12.790,168.1 +25.8,0.99,11.980,167.7,25.7,0.99,12.320,167.7 +25.4,0.99,11.630,166.0,25.2,0.99,11.740,166.0 +25.6,0.99,12.230,169.6,25.5,0.99,12.640,169.8 +25.4,0.99,10.460,165.1,25.2,0.99,10.550,165.4 +25.4,0.99,10.800,169.9,25.2,0.99,10.990,170.0 +25.6,0.99,12.210,172.7,25.4,0.99,12.490,172.6 +25.4,0.99,10.760,174.8,25.2,0.99,10.980,175.0 +25.6,0.99,11.150,175.5,25.4,0.99,11.490,176.0 +25.7,0.99,9.170,178.1,25.5,0.99,9.440,178.2 +25.6,0.99,8.670,174.0,25.4,0.99,8.810,174.0 +25.9,0.99,8.980,175.9,25.7,0.99,9.070,175.6 +25.8,0.99,7.340,174.8,25.6,0.99,7.400,175.0 +26.4,0.99,8.270,178.5,26.3,0.99,8.320,178.5 +26.2,0.99,6.530,169.5,26.0,0.99,6.560,169.7 +26.2,0.99,7.940,169.3,26.0,0.99,7.960,169.4 +26.2,0.99,8.190,169.2,26.0,0.99,8.210,169.2 +26.0,0.99,7.340,161.9,25.8,0.99,7.350,162.0 +25.8,0.99,7.950,164.5,25.7,0.99,7.970,164.5 +25.8,0.99,8.040,165.3,25.6,0.99,8.060,165.3 +25.6,0.99,7.480,160.4,25.4,0.99,7.510,160.4 +25.6,0.99,6.680,157.7,25.4,0.99,6.690,157.8 +25.5,0.99,5.710,161.8,25.3,0.99,5.710,161.9 +25.4,0.99,5.100,159.4,25.2,0.99,5.130,159.2 +25.6,0.99,4.780,168.1,25.4,0.99,4.810,167.9 +25.4,0.99,3.300,175.9,25.3,0.99,3.380,175.7 +25.1,0.99,2.710,185.4,24.9,0.99,2.740,185.1 +25.1,0.99,1.590,160.1,24.9,0.99,1.650,159.8 +25.0,0.99,2.200,206.5,24.9,0.99,2.270,205.0 +24.8,0.99,2.150,265.0,24.7,0.99,2.140,261.8 +24.5,0.99,2.230,346.8,24.3,0.99,2.140,345.8 +24.3,0.99,4.380,353.1,24.1,0.99,4.340,353.0 +24.2,0.99,3.990,346.2,24.0,0.99,3.960,346.0 +24.4,0.99,3.120,354.8,24.2,0.99,3.120,354.5 +24.6,0.99,1.540,12.0,24.4,0.99,1.560,10.9 +24.6,0.99,1.320,309.7,24.4,0.99,1.320,311.1 +24.8,0.99,1.060,3.9,24.7,0.99,1.110,4.2 +25.4,0.99,0.530,69.8,25.2,0.99,0.520,66.0 +25.8,0.99,1.730,118.0,25.6,0.99,1.700,117.0 +26.0,0.99,3.510,145.1,25.9,0.99,3.440,144.7 +26.1,0.99,5.370,142.1,25.9,0.99,5.310,141.9 +26.1,0.99,5.200,144.0,25.9,0.99,5.160,143.8 +26.1,0.99,3.560,146.9,25.9,0.99,3.540,146.5 +25.9,0.99,3.020,162.7,25.7,0.99,2.960,162.1 +25.8,0.99,3.430,167.0,25.6,0.99,3.360,166.5 +25.7,0.99,1.940,132.1,25.5,0.99,1.940,130.7 +25.7,0.99,1.170,93.5,25.5,0.99,1.210,89.7 +25.8,0.99,1.930,65.6,25.6,0.99,1.990,64.8 +25.7,0.99,2.170,55.2,25.5,0.99,2.220,54.6 +25.5,0.99,1.980,38.6,25.3,0.99,2.020,37.8 +25.0,0.99,5.360,25.5,24.9,0.99,5.430,26.8 +23.9,0.99,5.210,16.0,23.9,0.99,5.240,19.7 +24.1,0.99,5.370,22.5,24.2,0.99,5.300,26.0 +24.4,0.99,6.320,10.3,24.7,0.99,6.440,12.9 +23.5,0.99,5.640,14.9,23.8,0.99,5.970,17.3 +23.0,0.99,6.160,6.2,23.2,0.99,6.460,9.8 +22.8,0.99,5.450,11.1,23.0,0.99,6.090,14.0 +22.9,0.99,4.280,9.1,22.8,0.99,4.510,11.3 +23.5,0.99,3.180,5.1,23.6,0.99,3.760,8.9 +24.1,0.99,1.800,2.8,24.1,0.99,2.020,4.4 +24.3,0.99,0.790,345.4,24.1,0.99,0.810,351.0 +24.9,0.99,0.570,105.0,24.7,0.99,0.570,102.5 +25.2,0.99,1.880,116.0,25.0,0.99,1.870,115.1 +25.3,0.99,3.700,128.0,25.1,0.99,3.680,127.3 +25.6,0.99,4.040,133.3,25.4,0.99,4.010,132.5 +25.8,0.99,4.230,135.3,25.6,0.99,4.200,134.7 +25.8,0.99,4.670,131.9,25.6,0.99,4.630,131.5 +25.5,0.99,4.220,130.3,25.4,0.99,4.220,129.6 +25.3,0.99,4.990,134.5,25.1,0.99,4.980,134.3 +25.4,0.99,4.110,144.3,25.2,0.99,4.120,144.1 +25.2,0.99,4.510,156.8,25.0,0.99,4.510,156.7 +25.3,0.99,4.580,157.2,25.1,0.99,4.580,157.2 +25.2,0.99,4.710,156.9,25.0,0.99,4.720,156.8 +25.1,0.99,3.720,158.3,24.9,0.99,3.730,158.2 +24.9,0.99,3.060,166.8,24.8,0.99,3.080,166.6 +24.9,0.99,1.950,163.1,24.7,0.99,1.980,162.8 +24.9,0.99,1.910,159.8,24.7,0.99,1.960,159.0 +24.9,0.99,1.410,91.0,24.8,0.99,1.460,94.4 +25.0,0.99,2.710,149.6,24.8,0.99,2.730,149.6 +24.9,0.99,2.620,132.6,24.7,0.99,2.630,132.9 +24.9,0.99,2.360,109.7,24.7,0.99,2.390,110.3 +25.0,0.99,2.140,104.8,24.8,0.99,2.180,105.0 +25.1,0.99,2.450,98.6,24.9,0.99,2.480,99.1 +25.2,0.99,2.080,89.7,25.0,0.99,2.110,90.1 +25.4,0.99,3.200,86.5,25.2,0.99,3.200,87.5 +25.8,0.99,2.630,111.6,25.6,0.99,2.650,111.4 +26.3,0.99,3.610,116.2,26.1,0.99,3.620,115.9 +26.2,0.99,3.540,121.5,26.0,0.99,3.570,121.8 +26.4,0.99,5.050,121.6,26.2,0.99,5.020,121.7 +26.5,0.99,5.460,125.4,26.3,0.99,5.480,125.3 +26.4,0.99,5.710,139.7,26.2,0.99,5.720,139.6 +26.1,0.99,6.160,138.3,25.9,0.99,6.170,138.3 +26.1,0.99,6.750,145.4,25.9,0.99,6.770,145.5 +26.1,0.99,7.060,150.8,25.9,0.99,7.090,150.9 +26.1,0.99,6.190,145.7,25.9,0.99,6.210,145.8 +26.0,0.99,6.230,147.8,25.8,0.99,6.260,147.7 +25.9,0.99,6.190,151.5,25.8,0.99,6.200,151.5 +25.8,0.99,6.070,158.4,25.7,0.99,6.140,158.5 +25.5,0.99,4.840,171.0,25.4,0.99,4.940,170.7 +25.7,0.99,3.430,158.2,25.5,0.99,3.560,156.8 +25.6,0.99,4.120,157.3,25.4,0.99,4.090,157.2 +25.7,0.99,1.920,136.2,25.5,0.99,1.910,137.0 +25.5,0.99,1.680,160.1,25.3,0.99,1.680,159.3 +25.6,0.99,0.880,104.0,25.4,0.99,0.820,103.9 +25.5,0.99,1.000,21.2,25.3,0.99,0.960,21.5 +25.5,0.99,1.810,54.2,25.4,0.99,1.910,56.6 +25.3,0.99,2.030,50.5,25.2,0.99,2.160,56.6 +25.3,0.99,3.450,39.2,25.2,0.99,3.450,40.5 +25.7,0.99,2.900,77.0,25.5,0.99,2.990,77.0 +26.7,0.99,4.770,93.7,26.5,0.99,4.770,94.0 +27.0,0.99,5.660,110.6,26.8,0.99,5.660,110.7 +26.9,0.99,6.740,121.6,26.7,0.99,6.750,121.7 +27.0,0.98,6.260,137.2,26.8,0.98,6.270,137.2 +26.6,0.98,6.090,151.1,26.5,0.98,6.100,150.8 +26.6,0.98,6.530,146.8,26.4,0.98,6.540,146.8 +26.6,0.98,6.240,144.8,26.4,0.98,6.230,144.8 +26.5,0.98,6.610,150.0,26.3,0.98,6.610,150.1 +26.4,0.98,7.060,153.7,26.2,0.98,7.070,153.8 +26.4,0.98,6.450,134.8,26.2,0.98,6.450,134.8 +26.3,0.99,3.810,89.0,26.1,0.99,3.820,89.2 +21.9,0.99,19.930,26.6,21.7,0.99,19.960,26.5 +23.1,0.99,14.480,87.3,23.0,0.99,14.570,86.8 +23.4,0.98,8.630,89.8,23.2,0.98,8.700,89.1 +24.6,0.98,8.480,120.1,24.4,0.98,8.520,119.8 +26.1,0.98,6.030,147.1,26.0,0.98,6.160,147.1 +26.0,0.98,6.500,141.9,25.8,0.98,6.530,141.7 +23.8,0.99,9.020,33.4,23.6,0.99,8.950,33.9 +23.4,0.99,10.330,6.2,23.2,0.99,10.300,6.6 +23.3,0.99,11.220,348.1,23.2,0.99,11.240,348.3 +24.6,0.99,9.130,358.5,24.5,0.99,9.240,358.6 +25.9,0.99,6.720,358.4,26.1,0.99,7.150,358.6 +27.2,0.99,5.210,2.5,27.1,0.99,5.260,2.8 +26.9,0.99,4.070,106.5,26.9,0.99,4.080,105.3 +27.6,0.99,2.550,108.7,27.4,0.99,2.550,108.9 +27.6,0.99,2.810,183.9,27.4,0.99,2.780,184.1 +23.2,0.99,20.780,294.7,23.2,0.99,20.690,294.6 +24.7,0.99,5.990,265.3,24.7,0.99,6.350,265.7 +26.5,0.98,9.830,206.9,26.9,0.98,10.080,207.0 +27.4,0.98,6.460,227.0,27.2,0.98,6.470,227.0 +27.2,0.99,8.130,249.0,27.0,0.99,8.180,249.2 +27.6,0.98,8.670,258.3,27.5,0.98,8.630,258.7 +27.1,0.99,6.330,299.8,26.9,0.99,6.340,299.8 +27.1,0.98,6.340,336.3,26.9,0.98,6.320,335.9 +25.7,0.99,6.710,355.0,25.5,0.99,6.690,354.6 +24.9,0.99,6.900,19.2,24.8,0.99,6.870,19.2 +24.4,0.99,5.710,31.8,24.3,0.99,5.710,32.0 +24.3,0.99,5.690,25.5,24.1,0.99,5.660,26.1 +23.8,0.99,6.100,21.5,23.6,0.99,6.090,21.7 +23.2,0.99,5.530,9.7,23.1,0.99,5.490,10.0 +22.6,0.99,4.870,346.8,22.4,0.99,4.820,346.8 +22.1,0.99,5.210,351.1,21.9,0.99,5.170,350.9 +21.5,0.99,5.330,337.5,21.3,0.99,5.310,337.3 +21.3,0.99,6.540,331.8,21.1,0.99,6.530,332.1 +21.9,0.99,6.420,341.2,21.7,0.99,6.420,341.6 +22.6,0.99,6.500,343.5,22.4,0.99,6.500,343.9 +23.5,0.99,4.710,343.8,23.3,0.99,4.740,344.2 +24.2,0.99,2.990,283.9,24.0,0.99,2.980,284.9 +25.2,0.99,2.850,263.1,25.0,0.99,2.850,264.1 +25.7,0.99,3.320,202.5,25.5,0.99,3.250,204.0 +25.7,0.99,4.150,182.9,25.5,0.99,4.090,183.3 +25.7,0.99,4.340,188.2,25.5,0.99,4.280,188.8 +26.1,0.99,4.590,188.8,25.9,0.99,4.530,189.4 +25.9,0.99,4.410,184.8,25.7,0.99,4.370,185.0 +25.9,0.99,4.040,187.6,25.7,0.99,3.950,187.9 +26.1,0.99,2.830,209.5,25.9,0.99,2.760,210.4 +26.2,0.99,2.310,237.0,26.0,0.99,2.300,237.5 +26.4,0.99,3.590,254.3,26.2,0.99,3.590,254.6 +26.4,0.99,2.020,261.5,26.2,0.99,2.030,262.2 +25.0,0.99,3.060,290.9,25.1,0.99,2.930,292.7 +25.4,0.99,2.100,231.8,25.4,0.99,2.090,227.0 +25.7,0.99,1.540,163.3,25.6,0.99,1.580,163.2 +25.2,0.99,4.190,70.1,25.0,0.99,3.700,70.2 +25.2,0.99,3.870,95.7,25.0,0.99,3.570,94.8 +25.3,0.99,2.000,124.7,25.1,0.99,1.910,123.1 +25.2,0.99,2.240,133.5,25.0,0.99,2.260,135.0 +25.2,0.99,1.960,158.7,25.0,0.99,2.030,165.0 +25.4,0.99,3.210,204.5,25.2,0.99,3.180,204.1 +25.3,0.99,2.080,196.7,25.2,0.99,2.130,196.3 +25.5,0.99,2.870,200.1,25.3,0.99,2.880,199.8 +24.8,0.99,7.080,207.5,24.6,0.99,6.890,206.8 +23.6,0.99,15.350,203.2,23.4,0.99,15.340,203.3 +23.1,0.99,10.070,182.3,22.9,0.99,10.110,182.0 +24.7,0.99,3.860,146.7,24.5,0.99,3.850,146.6 +24.9,0.99,4.550,154.4,24.7,0.99,4.540,154.9 +25.6,0.99,5.410,179.1,25.4,0.99,5.400,179.3 +25.6,0.99,5.950,156.9,25.4,0.99,5.940,157.4 +26.0,0.99,5.740,163.0,25.8,0.99,5.760,163.4 +25.9,0.99,6.850,152.5,25.7,0.99,6.880,152.6 +26.1,0.99,7.260,137.8,25.9,0.99,7.280,137.9 +25.9,0.99,8.380,137.1,25.7,0.99,8.400,137.2 +26.0,0.99,7.880,140.9,25.8,0.99,7.910,141.0 +26.1,0.99,8.330,146.6,26.0,0.99,8.350,146.7 +26.3,0.99,7.510,149.8,26.1,0.99,7.550,149.8 +26.3,0.99,7.980,157.2,26.1,0.99,8.040,157.2 +26.2,0.99,9.980,167.2,26.0,0.99,10.010,167.1 +25.4,0.99,9.660,203.7,25.3,0.99,9.820,202.9 +24.7,0.99,7.250,214.2,24.6,0.99,7.250,214.3 +24.9,0.99,7.130,189.2,24.7,0.99,7.150,189.3 +25.1,0.99,5.350,196.3,24.9,0.99,5.380,196.2 +25.4,0.99,4.210,198.2,25.2,0.99,4.240,198.0 +25.8,0.99,3.250,167.1,25.6,0.99,3.280,166.8 +26.0,0.99,3.700,143.1,25.8,0.99,3.730,142.7 +25.9,0.99,5.170,120.2,25.7,0.99,5.190,120.2 +25.8,0.99,5.050,138.9,25.6,0.99,5.070,138.8 +26.2,0.99,3.480,163.1,26.0,0.99,3.510,163.3 +25.9,0.99,2.460,160.9,25.7,0.99,2.440,161.1 +26.6,0.99,9.280,177.4,26.4,0.99,9.300,177.4 +24.9,0.99,9.290,171.6,24.8,0.99,9.360,171.7 +26.2,0.99,3.690,212.7,26.2,0.99,3.740,214.7 +26.1,0.99,6.910,212.0,25.9,0.99,6.940,212.2 +25.5,0.99,4.670,193.9,25.3,0.99,4.700,192.9 +25.6,0.99,5.940,163.8,25.4,0.99,5.940,163.9 +25.7,0.99,5.380,157.3,25.5,0.99,5.370,157.5 +26.2,0.99,7.140,148.7,26.0,0.99,7.150,148.8 +26.3,0.99,7.250,152.8,26.1,0.99,7.260,152.7 +26.5,0.99,8.140,163.5,26.3,0.99,8.160,163.5 +26.4,0.99,7.420,182.2,26.3,0.99,7.460,182.0 +26.3,0.99,7.290,184.0,26.1,0.99,7.330,184.2 +26.2,0.99,6.390,191.6,26.1,0.99,6.480,191.7 +26.2,0.99,5.750,199.1,26.0,0.99,5.790,199.3 +26.2,0.99,4.780,199.1,26.0,0.99,4.820,198.8 +26.1,0.99,4.200,205.5,25.9,0.99,4.220,205.4 +26.0,0.99,3.000,203.8,25.9,0.99,3.010,203.2 +26.0,0.99,2.170,192.0,25.9,0.99,2.280,190.7 +26.2,0.99,2.730,177.3,26.0,0.99,2.770,176.9 +26.2,0.99,2.890,178.0,26.1,0.99,2.900,178.0 +26.2,0.99,2.810,165.1,26.0,0.99,2.820,165.2 +26.5,0.99,3.310,158.0,26.3,0.99,3.340,158.1 +26.5,0.99,3.280,161.3,26.3,0.99,3.310,161.1 +27.1,0.99,3.930,163.7,26.9,0.99,3.950,163.8 +27.1,0.99,4.850,148.6,26.9,0.99,4.870,149.0 +27.2,0.99,5.370,156.1,27.0,0.99,5.370,156.4 +27.0,0.99,6.110,156.8,26.8,0.99,6.110,156.7 +27.2,0.99,6.540,147.3,27.0,0.99,6.540,147.4 +27.2,0.99,6.490,151.7,27.0,0.99,6.520,151.6 +26.9,0.99,5.800,147.0,26.7,0.99,5.830,147.0 +26.8,0.99,6.340,149.8,26.6,0.99,6.340,149.9 +26.4,0.99,6.680,147.3,26.2,0.99,6.680,147.3 +26.2,0.99,6.610,160.4,26.0,0.99,6.620,160.5 +26.2,0.99,5.530,157.1,26.0,0.99,5.550,157.2 +26.1,0.99,6.970,148.3,25.9,0.99,6.970,148.4 +26.0,0.99,7.190,164.2,25.8,0.99,7.220,164.2 +26.1,0.99,7.160,172.5,26.0,0.99,7.220,172.7 +26.5,0.99,7.980,174.9,26.3,0.99,8.050,175.0 +26.2,0.99,8.660,178.3,26.0,0.99,8.700,178.3 +26.2,0.99,7.480,185.3,26.0,0.99,7.510,185.3 +26.3,0.99,7.080,188.3,26.1,0.99,7.120,188.2 +26.2,0.99,6.230,188.0,26.1,0.99,6.220,188.1 +26.4,0.99,5.320,181.0,26.2,0.99,5.340,181.1 +26.4,0.99,4.630,180.9,26.3,0.99,4.660,180.9 +26.6,0.99,4.350,171.9,26.4,0.99,4.350,172.0 +26.5,0.99,4.330,164.7,26.3,0.99,4.340,164.8 +26.6,0.99,4.950,162.6,26.4,0.99,4.930,162.7 +26.8,0.99,4.590,166.2,26.6,0.99,4.600,166.3 +27.0,0.99,4.760,165.6,26.8,0.99,4.760,165.7 +27.0,0.99,4.740,164.4,26.8,0.99,4.740,164.5 +27.1,0.99,4.970,172.7,26.9,0.99,4.990,172.5 +27.0,0.99,4.670,166.0,26.8,0.99,4.660,166.2 +27.3,0.99,5.220,160.1,27.1,0.99,5.220,160.4 +26.9,0.99,5.680,163.0,26.7,0.99,5.680,163.2 +26.8,0.99,5.080,143.8,26.6,0.99,5.060,143.8 +26.9,0.99,5.660,154.4,26.7,0.99,5.670,154.5 +26.7,0.99,5.410,153.1,26.5,0.99,5.430,153.3 +26.8,0.99,5.380,158.4,26.6,0.99,5.390,158.3 +26.5,0.99,5.770,161.8,26.4,0.99,5.760,162.0 +26.5,0.99,5.570,172.9,26.3,0.99,5.600,172.7 +26.4,0.99,6.200,185.5,26.2,0.99,6.160,185.2 +27.0,0.99,4.980,185.7,26.9,0.99,5.200,183.6 +26.6,0.99,4.630,186.3,26.4,0.99,4.660,186.1 +26.5,0.99,4.360,190.7,26.3,0.99,4.380,190.6 +26.4,0.99,3.980,183.7,26.3,0.99,4.000,183.5 +26.4,0.99,3.460,209.3,26.2,0.99,3.470,209.1 +26.4,0.99,2.620,214.6,26.2,0.99,2.640,214.3 +26.4,0.99,3.020,211.2,26.2,0.99,3.040,210.6 +26.5,0.99,3.000,180.9,26.3,0.99,3.000,181.2 +26.9,0.99,4.270,189.2,26.7,0.99,4.330,189.6 +26.9,0.99,5.200,171.8,26.8,0.99,5.220,171.9 +27.1,0.99,4.970,215.2,26.9,0.99,4.980,215.2 +27.3,0.99,4.630,216.4,27.1,0.99,4.650,216.5 +27.2,0.99,5.340,162.7,27.0,0.99,5.340,162.8 +26.7,0.99,7.070,165.0,26.5,0.99,7.010,165.1 +26.5,0.99,6.140,165.4,26.4,0.99,6.140,165.9 +26.9,0.99,7.080,174.5,26.7,0.99,7.070,174.6 +26.7,0.99,7.710,177.2,26.5,0.99,7.720,177.3 +26.6,0.99,7.400,180.6,26.4,0.99,7.430,180.6 +26.7,0.99,6.760,188.9,26.5,0.99,6.780,189.0 +26.8,0.99,7.350,196.7,26.7,0.99,7.390,196.7 +26.7,0.99,6.870,206.8,26.4,0.99,6.890,206.7 +26.6,0.99,6.810,204.3,26.4,0.99,6.830,204.3 +26.5,0.99,7.300,207.1,26.3,0.99,7.310,207.0 +26.4,0.99,6.860,205.1,26.2,0.99,6.880,205.0 +26.4,0.99,6.420,212.5,26.3,0.99,6.440,212.4 +26.7,0.99,6.320,220.7,26.5,0.99,6.360,220.6 +26.6,0.99,5.390,224.5,26.4,0.99,5.410,224.4 +26.5,0.99,5.170,236.9,26.3,0.99,5.180,236.8 +26.7,0.99,4.020,247.5,26.5,0.99,4.060,246.8 +26.3,0.99,3.010,264.5,26.2,0.99,3.020,262.4 +26.1,0.99,2.430,274.0,25.9,0.99,2.450,273.0 +26.2,0.99,2.280,278.8,26.0,0.99,2.270,277.1 +26.5,0.99,1.980,237.2,26.4,0.99,2.050,236.8 +26.9,0.99,1.630,213.9,26.7,0.99,1.640,214.4 +27.7,0.99,2.030,179.7,27.6,0.99,2.010,179.6 +28.1,0.99,2.420,174.0,27.9,0.99,2.400,174.0 +28.3,0.99,3.980,180.2,28.1,0.99,3.950,180.3 +28.2,0.99,5.180,188.6,28.1,0.99,5.170,188.7 +28.2,0.99,6.570,197.2,28.0,0.99,6.560,197.3 +27.8,0.99,7.260,207.0,27.6,0.99,7.240,206.8 +27.8,0.99,7.450,208.4,27.7,0.99,7.440,208.5 +27.7,0.99,7.740,217.1,27.5,0.99,7.730,217.0 +27.4,0.99,7.510,222.8,27.2,0.99,7.500,222.7 +27.5,0.99,6.710,228.7,27.3,0.99,6.720,228.8 +27.5,0.99,6.320,236.8,27.3,0.99,6.310,237.0 +27.7,0.99,5.510,246.2,27.5,0.99,5.510,246.1 +27.6,0.99,4.880,247.2,27.4,0.99,4.870,247.2 +27.2,0.99,4.700,252.8,27.0,0.99,4.700,252.6 +26.3,0.99,3.990,266.9,26.2,0.99,4.100,264.0 +26.2,0.99,4.070,268.0,26.1,0.99,4.180,265.9 +26.2,0.99,3.660,272.9,26.1,0.99,3.820,270.1 +25.9,0.99,3.520,265.9,25.8,0.99,3.590,264.3 +25.6,0.99,4.400,268.9,25.5,0.99,4.440,267.7 +25.4,0.99,4.110,286.0,25.3,0.99,4.180,283.7 +25.6,0.99,3.040,306.3,25.5,0.99,3.040,304.9 +26.1,0.99,2.690,268.1,25.9,0.99,2.690,268.2 +26.2,0.99,2.530,236.8,26.0,0.99,2.480,237.1 +26.7,0.99,3.190,227.4,26.6,0.99,3.140,227.3 +27.9,0.99,3.720,210.2,27.7,0.99,3.680,210.3 +28.2,0.99,5.050,203.8,28.0,0.99,5.010,203.9 +28.1,0.99,5.530,205.7,27.9,0.99,5.510,205.7 +28.2,0.99,5.730,202.0,28.0,0.99,5.700,201.9 +28.1,0.99,5.820,207.8,27.9,0.99,5.790,207.8 +28.2,0.99,5.950,211.0,28.0,0.99,5.930,211.0 +27.9,0.99,6.570,212.5,27.7,0.99,6.540,212.5 +28.0,0.99,6.900,213.1,27.8,0.99,6.880,213.0 +27.8,0.99,6.040,217.7,27.6,0.99,6.020,217.7 +27.9,0.99,5.750,218.0,27.7,0.99,5.730,218.0 +27.7,0.99,5.420,221.1,27.5,0.99,5.400,221.1 +27.8,0.99,5.040,229.5,27.6,0.99,5.030,229.7 +27.5,0.99,4.850,232.8,27.3,0.99,4.840,233.0 +27.5,0.99,4.620,240.1,27.3,0.99,4.620,240.0 +27.1,0.99,4.160,245.9,26.9,0.99,4.150,246.0 +27.2,0.99,3.720,249.8,27.0,0.99,3.720,249.9 +26.4,0.99,2.290,268.1,26.2,0.99,2.270,266.1 +26.5,0.99,2.460,294.5,26.3,0.99,2.410,292.1 +26.3,0.99,2.210,278.1,26.1,0.99,2.170,276.1 +26.3,0.99,2.380,286.9,26.1,0.99,2.350,285.7 +26.2,0.99,2.150,286.4,26.0,0.99,2.120,284.8 +26.2,0.99,2.520,258.2,26.0,0.99,2.510,257.2 +26.4,0.99,2.740,250.6,26.2,0.99,2.740,249.5 +26.6,0.99,2.880,222.8,26.4,0.99,2.920,222.2 +27.1,0.99,3.830,195.9,26.9,0.99,3.860,196.0 +27.3,0.99,4.060,197.7,27.1,0.99,4.070,197.9 +27.6,0.99,4.100,185.4,27.4,0.99,4.110,185.6 +27.7,0.99,5.160,184.4,27.5,0.99,5.150,184.4 +27.6,0.99,5.920,180.6,27.4,0.99,5.890,180.5 +28.3,0.99,5.810,180.7,28.1,0.99,5.800,181.2 +27.6,0.99,6.390,183.0,27.4,0.99,6.380,182.8 +27.6,0.99,6.490,182.1,27.4,0.99,6.500,182.1 +27.7,0.99,7.170,180.5,27.5,0.99,7.170,180.4 +28.0,0.99,7.130,183.9,27.8,0.99,7.150,183.9 +27.4,0.99,7.580,190.6,27.2,0.99,7.590,190.7 +27.3,0.99,7.940,184.4,27.1,0.99,7.950,184.5 +27.1,0.99,7.580,189.1,26.9,0.99,7.620,189.2 +27.0,0.99,7.490,189.6,26.8,0.99,7.530,189.6 +26.9,0.99,7.330,192.2,26.8,0.99,7.350,192.4 +26.9,0.99,6.250,197.9,26.7,0.99,6.280,197.8 +26.8,0.99,5.940,192.5,26.6,0.99,5.960,192.6 +26.9,0.99,4.450,192.4,26.7,0.99,4.470,192.6 +26.9,0.99,3.100,176.1,26.7,0.99,3.100,176.4 +26.9,0.99,4.120,178.0,26.8,0.99,4.140,178.3 +26.6,0.99,6.750,220.3,26.4,0.99,6.650,219.5 +26.0,0.99,4.370,215.5,25.8,0.99,4.410,215.3 +26.2,0.99,4.570,231.0,26.2,0.99,4.880,231.8 +27.0,0.99,4.120,215.8,26.9,0.99,4.110,215.4 +27.7,0.99,5.650,211.8,27.5,0.99,5.670,211.8 +28.0,0.99,6.710,205.3,27.8,0.99,6.710,205.3 +28.2,0.99,7.440,196.7,28.1,0.99,7.450,196.8 +28.4,0.99,7.550,201.6,28.2,0.99,7.550,201.5 +28.4,0.99,8.450,206.2,28.2,0.99,8.450,206.1 +28.7,0.99,7.990,203.0,28.5,0.99,8.020,203.2 +28.4,0.99,8.060,206.0,28.2,0.99,8.080,205.9 +28.5,0.99,8.450,200.7,28.4,0.99,8.470,200.7 +28.2,0.99,8.750,203.1,28.1,0.99,8.760,202.9 +28.4,0.99,8.700,200.6,28.2,0.99,8.730,200.4 +28.2,0.99,8.510,203.8,28.1,0.99,8.520,203.6 +28.2,0.99,8.250,198.2,28.1,0.99,8.280,198.5 +28.5,0.99,7.850,213.3,28.3,0.99,7.890,213.4 +28.2,0.99,7.990,215.2,28.0,0.99,8.010,215.3 +28.5,0.99,6.800,221.2,28.3,0.99,6.850,221.0 +28.4,0.99,6.580,218.4,28.2,0.99,6.610,218.4 +28.2,0.99,6.050,223.3,28.0,0.99,6.090,223.4 +28.1,0.99,6.270,233.6,27.9,0.99,6.300,233.4 +27.8,0.99,6.270,235.0,27.7,0.99,6.250,235.0 +26.5,0.99,3.770,277.0,26.4,0.99,3.740,273.6 +26.7,0.99,3.820,284.8,26.5,0.99,3.770,282.3 +27.0,0.99,3.570,263.2,26.9,0.99,3.610,261.7 +27.4,0.99,3.070,248.9,27.2,0.99,3.150,247.3 +27.3,0.99,3.920,203.8,27.1,0.99,3.940,204.0 +27.9,0.99,4.380,192.5,27.7,0.99,4.410,192.6 +28.3,0.99,5.000,181.6,28.1,0.99,5.000,181.8 +28.2,0.99,5.900,177.3,28.0,0.99,5.900,177.6 +28.6,0.99,5.860,176.8,28.4,0.99,5.890,177.3 +28.3,0.99,7.170,186.8,28.1,0.99,7.180,186.7 +28.1,0.99,6.950,184.8,27.9,0.99,6.960,184.7 +28.1,0.99,7.910,182.1,27.9,0.99,7.930,182.0 +28.2,0.99,7.790,184.3,28.1,0.99,7.830,184.4 +27.9,0.99,8.790,187.6,27.7,0.99,8.770,187.2 +28.2,0.99,7.600,195.7,28.0,0.99,7.590,195.8 +27.6,0.99,8.920,193.3,27.4,0.99,8.940,193.5 +27.7,0.99,7.510,207.2,27.5,0.99,7.530,207.4 +27.8,0.99,7.220,202.4,27.6,0.99,7.260,202.3 +27.9,0.99,8.090,218.7,27.7,0.99,8.130,218.3 +27.5,0.99,7.800,224.2,27.3,0.99,7.830,224.1 +27.5,0.99,7.280,227.1,27.3,0.99,7.340,226.9 +27.0,0.99,7.570,229.6,26.8,0.99,7.560,229.6 +27.3,0.99,6.520,244.4,27.1,0.99,6.570,243.9 +26.4,0.99,5.930,271.9,26.3,0.99,5.920,270.9 +26.0,0.99,4.510,267.0,25.8,0.99,4.540,265.6 +26.2,0.99,4.270,265.4,26.0,0.99,4.280,264.6 +26.3,0.99,5.340,267.0,26.1,0.99,5.350,266.4 +26.5,0.99,4.160,222.2,26.4,0.99,4.250,222.4 +26.9,0.99,4.250,214.1,26.7,0.99,4.260,214.4 +27.6,0.99,3.870,198.1,27.4,0.99,3.850,198.4 +27.7,0.99,3.610,182.3,27.5,0.99,3.600,182.5 +27.8,0.99,4.340,177.8,27.6,0.99,4.350,178.0 +27.9,0.99,5.160,176.7,27.7,0.99,5.150,177.1 +27.9,0.99,5.650,181.4,27.7,0.99,5.640,181.2 +27.9,0.99,6.310,180.1,27.7,0.99,6.330,180.0 +27.8,0.99,6.510,183.0,27.6,0.99,6.500,183.2 +27.6,0.99,7.170,187.5,27.4,0.99,7.180,187.3 +27.4,0.99,7.180,183.5,27.2,0.99,7.210,183.5 +27.4,0.99,7.680,186.4,27.2,0.99,7.710,186.5 +27.3,0.99,7.660,190.7,27.1,0.99,7.680,190.6 +27.4,0.99,7.680,194.3,27.2,0.99,7.700,194.3 +27.2,0.99,6.930,195.3,27.0,0.99,6.970,195.4 +27.2,0.99,6.890,198.0,27.0,0.99,6.930,197.9 +27.3,0.99,6.980,204.3,27.1,0.99,7.010,204.5 +27.4,0.99,6.330,215.0,27.2,0.99,6.380,214.8 +27.2,0.99,6.360,218.2,27.0,0.99,6.400,218.3 +27.0,0.99,5.990,214.0,26.8,0.99,6.000,214.0 +27.0,0.99,3.930,237.8,26.8,0.99,3.950,237.0 +27.0,0.99,2.490,239.4,26.8,0.99,2.520,237.8 +26.9,0.99,2.350,273.2,26.7,0.99,2.340,272.3 +26.6,0.99,1.030,296.1,26.4,0.99,1.010,292.9 +26.8,0.99,0.550,251.3,26.6,0.99,0.590,249.1 +27.0,0.99,1.680,127.5,26.8,0.99,1.660,128.6 +27.4,0.99,3.720,151.7,27.2,0.99,3.700,152.2 +27.8,0.99,4.220,168.0,27.6,0.99,4.220,168.2 +27.8,0.99,5.160,167.8,27.6,0.99,5.170,168.0 +28.0,0.99,5.490,184.8,27.8,0.99,5.520,185.0 +28.0,0.99,6.680,174.2,27.8,0.99,6.680,174.4 +28.0,0.99,7.820,175.5,27.8,0.99,7.840,175.5 +27.7,0.99,6.410,174.5,27.5,0.99,6.430,174.6 +27.6,0.99,7.590,177.2,27.4,0.99,7.600,177.3 +27.4,0.99,7.800,182.5,27.3,0.99,7.840,182.6 +27.4,0.99,8.220,183.4,27.3,0.99,8.250,183.5 +27.6,0.99,8.460,181.9,27.4,0.99,8.490,181.9 +27.5,0.99,8.590,182.1,27.3,0.99,8.610,182.3 +27.6,0.99,8.890,181.2,27.4,0.99,8.930,181.1 +27.3,0.99,9.160,184.5,27.1,0.99,9.180,184.6 +27.8,0.99,7.530,192.5,27.6,0.99,7.560,192.2 +27.8,0.99,7.100,194.0,27.6,0.99,7.170,194.2 +27.7,0.99,6.430,192.3,27.5,0.99,6.470,192.3 +27.7,0.99,6.040,194.7,27.6,0.99,6.060,194.3 +27.8,0.99,5.950,187.1,27.6,0.99,5.970,187.0 +27.6,0.99,5.060,181.5,27.4,0.99,5.050,181.4 +27.7,0.99,5.340,166.7,27.5,0.99,5.350,166.9 +27.7,0.99,4.530,164.5,27.5,0.99,4.550,164.5 +27.6,0.99,4.330,157.0,27.4,0.99,4.330,157.4 +27.8,0.99,4.000,165.6,27.6,0.99,4.020,165.5 +27.8,0.99,4.160,168.4,27.6,0.99,4.190,168.4 +27.9,0.99,4.550,163.6,27.8,0.99,4.550,163.6 +27.9,0.99,5.000,166.0,27.7,0.99,5.010,166.2 +28.0,0.99,4.660,158.6,27.8,0.99,4.680,158.7 +27.9,0.99,5.880,151.5,27.7,0.99,5.870,151.5 +28.0,0.99,5.650,152.3,27.8,0.99,5.670,152.5 +28.1,0.99,6.760,145.8,27.9,0.99,6.810,145.8 +27.7,0.99,7.610,150.1,27.5,0.99,7.610,150.1 +27.7,0.99,6.930,149.5,27.6,0.99,6.940,149.5 +27.8,0.99,7.620,149.6,27.6,0.99,7.670,149.8 +27.6,0.99,7.000,156.3,27.4,0.99,7.060,156.3 +27.4,0.99,7.200,152.2,27.2,0.99,7.210,152.6 +27.5,0.99,7.010,159.7,27.3,0.99,7.040,159.8 +27.3,0.99,6.500,167.0,27.1,0.99,6.530,166.9 +27.3,0.99,6.100,164.9,27.1,0.99,6.120,164.9 +27.4,0.99,6.040,170.5,27.2,0.99,6.060,170.3 +27.3,0.99,5.440,160.7,27.1,0.99,5.490,160.7 +27.4,0.99,6.110,151.2,27.2,0.99,6.130,151.6 +27.4,0.99,5.650,152.4,27.2,0.99,5.650,152.4 +27.4,0.99,5.170,144.1,27.2,0.99,5.170,144.3 +27.4,0.99,5.430,144.8,27.2,0.99,5.450,145.1 +27.4,0.99,6.260,179.0,27.2,0.99,6.300,178.7 +27.4,0.99,5.320,167.8,27.4,0.99,5.620,167.6 +27.3,0.99,5.560,161.3,27.1,0.99,5.700,161.4 +27.4,0.99,5.740,149.8,27.2,0.99,5.750,149.8 +27.6,0.99,5.680,163.4,27.4,0.99,5.670,163.8 +27.8,0.99,5.230,161.1,27.6,0.99,5.240,161.6 +27.9,0.99,5.600,161.4,27.7,0.99,5.600,161.6 +27.9,0.99,4.970,164.1,27.7,0.99,4.990,164.0 +27.8,0.99,5.220,169.2,27.6,0.99,5.210,169.3 +27.6,0.99,5.610,163.3,27.4,0.99,5.620,163.2 +27.3,0.99,6.050,158.1,27.2,0.99,6.050,158.0 +27.3,0.99,6.670,164.2,27.1,0.99,6.670,163.9 +27.2,0.99,6.050,162.3,27.0,0.99,6.060,162.1 +27.0,0.99,6.140,168.4,26.8,0.99,6.150,168.4 +27.2,0.99,6.390,180.4,27.0,0.99,6.360,180.0 +26.9,0.99,6.200,172.8,26.7,0.99,6.190,172.6 +26.9,0.99,5.740,178.8,26.7,0.99,5.770,178.8 +26.8,0.99,5.270,182.2,26.6,0.99,5.310,182.2 +26.9,0.99,5.350,184.0,26.7,0.99,5.350,184.1 +27.1,0.99,5.320,188.0,26.9,0.99,5.350,187.6 +27.0,0.99,5.420,184.2,26.8,0.99,5.440,184.2 +26.8,0.99,4.460,182.7,26.7,0.99,4.450,183.3 +27.1,0.99,3.280,170.0,26.9,0.99,3.320,169.7 +27.2,0.99,3.840,162.1,27.0,0.99,3.860,162.0 +27.3,0.99,3.420,162.4,27.2,0.99,3.440,162.3 +27.3,0.99,2.890,158.2,27.1,0.99,2.920,158.2 +27.5,0.99,3.910,141.2,27.4,0.99,3.930,141.4 +27.6,0.99,3.330,147.5,27.4,0.99,3.340,147.5 +27.8,0.99,4.570,146.0,27.6,0.99,4.560,146.1 +27.9,0.99,5.900,152.7,27.7,0.99,5.890,152.6 +27.8,0.99,6.190,147.8,27.6,0.99,6.190,148.0 +27.8,0.99,6.020,155.8,27.6,0.99,6.030,155.9 +27.8,0.99,6.280,148.6,27.6,0.99,6.290,148.7 +27.7,0.99,6.140,151.9,27.5,0.99,6.140,151.8 +27.6,0.99,6.220,149.6,27.4,0.99,6.220,149.8 +27.6,0.99,6.780,156.7,27.4,0.99,6.800,156.6 +27.4,0.99,6.840,157.1,27.2,0.99,6.860,157.3 +27.3,0.99,6.740,165.6,27.1,0.99,6.760,165.6 +27.4,0.99,6.710,166.9,27.2,0.99,6.730,166.7 +27.3,0.99,7.750,169.0,27.1,0.99,7.810,169.2 +27.4,0.99,6.830,163.9,27.2,0.99,6.890,164.4 +27.2,0.99,6.250,171.3,27.0,0.99,6.270,171.4 +27.4,0.99,6.210,162.0,27.2,0.99,6.210,162.6 +27.3,0.99,6.360,161.6,27.2,0.99,6.380,162.1 +27.3,0.99,5.630,171.3,27.1,0.99,5.670,171.3 +27.3,0.99,7.220,153.6,27.2,0.99,7.260,153.8 +27.4,0.99,5.810,154.9,27.2,0.99,5.820,154.9 +27.4,0.99,5.350,155.0,27.2,0.99,5.380,154.9 +27.5,0.99,5.780,162.0,27.4,0.99,5.810,162.1 +27.5,0.99,4.740,175.7,27.3,0.99,4.740,175.2 +27.6,0.99,5.010,182.2,27.4,0.99,5.030,181.9 +27.8,0.99,5.350,174.9,27.6,0.99,5.360,174.9 +27.9,0.99,5.990,171.7,27.7,0.99,6.000,171.9 +28.0,0.99,6.140,183.6,27.8,0.99,6.160,183.6 +27.9,0.99,6.640,181.2,27.7,0.99,6.670,181.1 +27.8,0.99,8.050,176.6,27.6,0.99,8.070,177.0 +27.8,0.99,6.880,181.0,27.6,0.99,6.900,180.7 +27.5,0.99,8.520,176.1,27.3,0.99,8.550,176.2 +27.4,0.99,8.240,174.6,27.2,0.99,8.300,174.5 +27.5,0.99,7.380,166.5,27.3,0.99,7.410,166.5 +27.5,0.99,9.280,159.6,27.3,0.99,9.280,159.8 +27.6,0.99,8.200,160.6,27.4,0.99,8.230,160.8 +27.8,0.99,8.310,163.0,27.6,0.99,8.350,163.0 +27.5,0.99,9.540,159.9,27.3,0.99,9.590,159.9 +27.8,0.99,8.050,167.9,27.6,0.99,8.130,168.0 +28.2,0.99,8.310,172.6,28.1,0.99,8.390,172.5 +28.0,0.99,9.510,169.4,27.8,0.99,9.580,169.5 +28.0,0.99,8.560,173.6,27.8,0.99,8.630,173.4 +27.9,0.99,7.430,169.0,27.8,0.99,7.440,168.9 +28.0,0.99,7.910,177.3,27.8,0.99,7.930,177.3 +27.9,0.99,6.860,181.5,27.8,0.99,6.900,181.2 +28.0,0.99,5.770,184.2,27.8,0.99,5.770,184.1 +27.9,0.99,6.050,179.5,27.8,0.99,6.080,179.5 +27.9,0.99,5.680,172.9,27.7,0.99,5.710,172.7 +28.0,0.99,5.580,174.2,27.8,0.99,5.620,174.3 +28.4,0.99,5.990,177.8,28.2,0.99,6.040,177.8 +28.2,0.99,5.430,180.9,28.0,0.99,5.450,180.7 +28.1,0.99,6.520,170.6,27.9,0.99,6.540,170.8 +28.2,0.99,6.000,172.4,28.0,0.99,6.020,172.6 +28.2,0.99,6.260,169.0,28.0,0.99,6.290,169.0 +28.1,0.99,6.740,159.8,27.9,0.99,6.770,160.2 +27.9,0.99,6.720,162.3,27.8,0.99,6.770,162.1 +27.8,0.99,6.770,159.4,27.6,0.99,6.820,159.4 +27.7,0.99,7.730,158.8,27.5,0.99,7.750,158.9 +28.0,0.99,8.270,161.0,27.9,0.99,8.300,160.8 +27.5,0.99,9.080,160.2,27.4,0.99,9.100,160.1 +27.9,0.99,8.240,168.1,27.7,0.99,8.300,168.1 +27.5,0.99,7.840,173.6,27.3,0.99,7.900,173.5 +27.3,0.99,8.280,173.3,27.1,0.99,8.330,173.3 +27.3,0.99,9.250,178.2,27.1,0.99,9.320,178.2 +27.6,0.99,8.250,189.8,27.4,0.99,8.310,189.6 +27.7,0.99,8.670,184.6,27.5,0.99,8.690,184.5 +27.5,0.99,7.960,188.5,27.4,0.99,7.980,188.7 +27.7,0.99,6.900,194.1,27.5,0.99,6.960,193.7 +27.7,0.99,7.390,197.3,27.5,0.99,7.460,197.0 +27.7,0.99,7.250,191.2,27.5,0.99,7.300,190.8 +27.9,0.99,6.680,188.4,27.7,0.99,6.730,188.1 +27.7,0.99,6.650,195.7,27.5,0.99,6.680,195.5 +28.3,0.99,5.940,200.2,28.2,0.99,5.950,200.0 +27.9,0.99,6.630,182.1,27.7,0.99,6.630,182.2 +28.2,0.99,6.730,191.9,28.0,0.99,6.750,191.7 +28.1,0.99,5.800,179.8,27.9,0.99,5.820,180.1 +28.1,0.99,6.640,170.9,27.9,0.99,6.650,171.3 +28.2,0.99,6.850,185.5,28.1,0.99,6.840,185.5 +28.2,0.99,5.930,183.5,28.0,0.99,5.970,183.7 +27.7,0.99,8.320,166.6,27.6,0.99,8.320,166.7 +27.4,0.99,8.210,170.5,27.2,0.99,8.220,170.5 +27.9,0.99,8.300,171.2,27.7,0.99,8.350,171.4 +27.6,0.99,8.370,172.8,27.4,0.99,8.410,172.8 +27.8,0.99,9.170,168.7,27.6,0.99,9.250,168.7 +27.7,0.99,10.470,172.5,27.5,0.99,10.550,172.5 +27.6,0.99,10.980,171.5,27.4,0.99,11.030,171.8 +27.9,0.99,10.330,182.5,27.7,0.99,10.400,182.5 +27.2,0.99,9.780,183.4,27.0,0.99,9.900,183.4 +27.0,0.99,9.560,191.1,26.8,0.99,9.590,191.3 +27.4,0.99,9.470,191.5,27.2,0.99,9.550,191.5 +27.0,0.99,9.230,204.0,26.8,0.99,9.280,203.8 +27.3,0.99,8.230,208.8,27.1,0.99,8.270,208.7 +27.3,0.99,7.160,218.7,27.2,0.99,7.200,218.5 +27.7,0.99,6.110,215.5,27.5,0.99,6.160,215.4 +27.7,0.99,6.340,223.1,27.5,0.99,6.380,223.2 +27.9,0.99,5.820,235.3,27.8,0.99,5.850,235.1 +28.1,0.99,4.490,194.5,27.9,0.99,4.520,194.7 +28.1,0.99,5.360,163.3,27.9,0.99,5.350,163.3 +28.1,0.99,6.210,149.5,27.9,0.99,6.200,149.9 +28.3,0.99,5.560,184.3,28.1,0.99,5.550,183.9 +28.3,0.99,7.080,202.5,28.1,0.99,7.080,202.4 +28.4,0.99,6.790,154.9,28.2,0.99,6.800,155.1 +28.3,0.99,6.560,165.1,28.1,0.99,6.590,165.0 +28.0,0.99,7.410,169.6,27.8,0.99,7.440,169.5 +27.4,0.99,7.380,172.9,27.3,0.99,7.380,172.8 +27.4,0.99,7.530,173.1,27.2,0.99,7.550,173.3 +27.3,0.99,6.930,176.5,27.1,0.99,6.950,176.6 +27.5,0.99,7.170,183.3,27.3,0.99,7.210,183.3 +27.9,0.99,7.680,192.8,27.8,0.99,7.680,192.6 +27.7,0.99,7.980,193.4,27.6,0.99,8.020,193.3 +27.5,0.99,7.290,197.1,27.3,0.99,7.360,197.1 +27.6,0.99,5.130,194.8,27.4,0.99,5.210,195.1 +27.4,0.99,6.350,202.2,27.3,0.99,6.370,201.8 +27.4,0.99,5.600,202.2,27.2,0.99,5.630,202.3 +27.3,0.99,3.750,212.2,27.1,0.99,3.760,211.8 +27.1,0.99,3.360,233.2,26.9,0.99,3.370,233.2 +27.0,0.99,2.840,279.4,26.9,0.99,2.970,270.0 +26.7,0.99,2.290,291.8,26.5,0.99,2.320,288.4 +26.9,0.99,1.430,296.3,26.8,0.99,1.440,294.5 +27.0,0.99,2.970,255.7,26.9,0.99,2.980,255.6 +25.8,0.99,13.530,207.6,25.6,0.99,13.500,208.5 +26.1,0.99,2.230,245.5,25.9,0.99,2.280,249.6 +27.4,0.99,2.200,8.8,27.2,0.99,2.200,6.2 +27.8,0.99,4.010,152.1,27.6,0.99,4.020,153.4 +26.8,0.99,7.350,183.3,26.6,0.99,7.320,183.4 +27.3,0.99,8.850,186.9,27.1,0.99,8.830,186.9 +27.3,0.99,8.420,194.2,27.1,0.99,8.410,194.1 +27.0,0.99,7.240,187.8,26.8,0.99,7.240,187.7 +27.0,0.99,7.070,191.4,26.9,0.99,7.070,191.3 +27.2,0.99,6.870,189.0,27.0,0.99,6.860,189.0 +27.4,0.99,6.050,181.6,27.2,0.99,6.030,181.9 +27.2,0.99,6.900,197.0,27.0,0.99,6.900,197.1 +27.4,0.99,7.000,210.8,27.2,0.99,7.010,210.9 +27.2,0.99,7.490,217.2,27.0,0.99,7.540,217.1 +27.3,0.99,7.960,223.8,27.1,0.99,7.990,223.7 +27.1,0.99,7.140,235.5,26.9,0.99,7.160,235.5 +27.3,0.99,6.980,233.0,27.1,0.99,7.020,232.9 +27.3,0.99,7.040,244.8,27.1,0.99,7.060,244.7 +26.9,0.99,7.540,245.3,26.7,0.99,7.560,245.2 +26.2,0.99,6.720,271.1,26.0,0.99,6.690,270.6 +26.1,0.99,7.370,262.2,25.9,0.99,7.420,261.9 +26.3,0.99,6.830,281.4,26.1,0.99,6.890,281.1 +26.7,0.99,5.280,255.1,26.5,0.99,5.290,255.4 +26.8,0.99,5.340,229.2,26.6,0.99,5.330,229.7 +27.2,0.99,5.350,218.9,27.0,0.99,5.330,219.0 +28.1,0.99,4.720,218.5,27.9,0.99,4.690,218.7 +28.4,0.99,6.300,199.9,28.2,0.99,6.280,200.0 +28.4,0.99,6.770,208.5,28.2,0.99,6.750,208.6 +28.6,0.99,8.070,204.7,28.4,0.99,8.040,204.8 +28.7,0.99,9.550,206.9,28.5,0.99,9.530,207.0 +28.9,0.99,9.830,209.2,28.7,0.99,9.820,209.4 +28.6,0.99,9.430,212.7,28.4,0.99,9.420,212.8 +28.6,0.99,9.970,214.6,28.4,0.99,9.980,214.6 +28.9,0.99,9.180,215.2,28.7,0.99,9.180,215.3 +28.9,0.99,9.690,220.1,28.8,0.99,9.710,220.1 +28.6,0.98,9.540,218.9,28.4,0.98,9.530,218.8 +29.1,0.99,9.910,222.0,28.9,0.99,9.970,222.3 +28.2,0.99,10.500,224.5,28.0,0.99,10.530,224.7 +27.9,0.99,11.370,227.0,27.8,0.99,11.400,227.0 +28.3,0.99,10.890,235.9,28.1,0.99,10.960,235.9 +27.9,0.99,10.430,239.6,27.7,0.99,10.460,239.6 +28.3,0.99,9.780,249.0,28.1,0.99,9.880,248.8 +27.9,0.99,8.670,253.7,27.8,0.99,8.800,252.9 +27.0,0.99,8.170,262.0,26.9,0.99,8.180,261.4 +26.8,0.99,7.900,259.1,26.6,0.99,7.980,259.1 +26.9,0.99,8.180,254.0,26.8,0.99,8.280,254.1 +27.4,0.99,6.310,240.6,27.4,0.99,6.680,244.0 +27.6,0.99,7.730,224.2,27.4,0.99,7.700,224.7 +27.7,0.99,7.860,228.7,27.5,0.99,7.840,228.9 +29.0,0.98,7.700,222.4,28.8,0.98,7.680,222.7 +29.4,0.98,9.010,219.7,29.3,0.98,8.970,219.9 +29.7,0.98,10.720,219.5,29.5,0.98,10.680,219.7 +29.7,0.98,11.810,218.5,29.5,0.98,11.750,218.7 +29.8,0.98,11.930,221.0,29.6,0.98,11.870,221.1 +29.9,0.98,11.550,223.1,29.7,0.98,11.520,223.3 +29.5,0.98,10.540,221.6,29.3,0.98,10.510,221.8 +29.6,0.98,9.430,226.0,29.4,0.98,9.400,226.2 +30.4,0.98,8.530,229.0,30.3,0.98,8.530,229.3 +29.8,0.98,8.430,231.2,29.6,0.98,8.410,231.5 +29.8,0.98,7.670,231.0,29.7,0.98,7.640,231.2 +30.2,0.98,7.850,240.7,30.0,0.98,7.850,240.9 +30.0,0.98,8.130,242.6,29.9,0.98,8.340,243.5 +29.4,0.98,7.320,258.5,29.4,0.98,7.230,262.4 +28.6,0.98,6.300,296.7,28.6,0.98,6.860,295.3 +28.6,0.98,7.340,304.0,28.7,0.98,7.640,305.3 +28.6,0.98,4.170,330.6,28.6,0.98,3.950,334.6 +27.8,0.99,3.270,353.9,27.9,0.99,3.580,4.3 +27.4,0.99,3.750,5.3,27.4,0.99,4.000,10.9 +27.4,0.99,3.200,9.0,27.8,0.99,3.670,16.6 +28.5,0.99,2.930,21.5,28.8,0.99,3.120,27.1 +29.1,0.99,1.240,1.0,29.1,0.99,1.300,12.6 +29.4,0.99,1.840,244.1,29.4,0.99,1.840,253.8 +29.4,0.99,3.120,252.7,29.4,0.99,3.220,259.6 +29.9,0.99,3.610,227.6,29.8,0.99,3.580,229.3 +32.8,0.98,8.050,325.9,32.6,0.98,8.120,326.2 +33.2,0.98,6.540,328.2,33.0,0.98,6.590,328.7 +31.4,0.98,5.770,247.6,31.3,0.98,5.610,249.5 +30.5,0.98,7.000,240.0,30.3,0.98,6.980,240.6 +30.9,0.98,6.940,252.0,30.8,0.98,6.930,252.5 +30.8,0.98,5.970,246.8,30.6,0.98,5.970,247.7 +30.3,0.98,4.260,264.9,30.2,0.98,4.230,265.4 +30.9,0.98,8.180,29.6,30.7,0.98,8.320,29.5 +30.0,0.98,7.820,41.6,29.8,0.98,7.890,41.5 +29.8,0.99,6.150,55.7,29.6,0.99,6.250,55.2 +29.1,0.99,8.210,66.2,28.9,0.99,8.250,66.2 +28.4,0.99,7.310,65.6,28.3,0.99,7.360,65.9 +28.1,0.99,7.700,56.9,28.0,0.99,7.730,57.0 +27.7,0.99,7.670,54.1,27.6,0.99,7.690,54.2 +27.3,0.99,7.010,51.3,27.1,0.99,7.030,51.5 +27.1,0.99,7.000,51.8,26.9,0.99,7.000,52.1 +26.8,0.99,6.320,52.3,26.6,0.99,6.340,52.6 +25.7,0.99,5.830,38.0,25.5,0.99,5.800,38.9 +25.2,0.99,5.930,33.2,25.0,0.99,5.910,33.8 +25.2,0.99,5.310,37.8,25.1,0.99,5.310,38.5 +25.7,0.99,5.020,42.0,25.5,0.99,5.050,42.4 +26.3,0.99,3.530,96.5,26.1,0.99,3.530,95.9 +26.6,0.99,1.650,94.0,26.4,0.99,1.640,93.6 +27.4,0.99,0.820,164.2,27.2,0.99,0.790,164.8 +27.7,0.99,2.300,156.8,27.5,0.99,2.250,157.3 +27.7,0.99,4.520,146.9,27.5,0.99,4.490,146.9 +27.7,0.99,6.720,145.4,27.5,0.99,6.690,145.3 +27.7,0.99,7.390,142.7,27.5,0.99,7.360,142.7 +27.7,0.99,5.770,148.8,27.5,0.99,5.740,148.8 +27.8,0.99,4.540,146.0,27.6,0.99,4.510,145.9 +28.0,0.99,2.750,119.0,27.8,0.99,2.680,116.5 +27.8,0.99,0.970,115.3,27.7,0.99,0.960,112.5 +28.3,0.99,4.480,11.6,28.1,0.99,4.560,12.3 +28.1,0.99,4.610,14.7,27.9,0.99,4.640,15.3 +27.9,0.99,3.800,31.6,27.7,0.99,3.830,32.0 +27.7,0.99,4.000,47.9,27.6,0.99,4.000,48.4 +27.3,0.99,3.340,59.9,27.2,0.99,3.470,61.1 +25.9,0.99,3.230,25.2,26.0,0.99,3.150,30.2 +26.3,0.99,4.140,47.8,26.4,0.99,4.570,48.8 +26.1,0.99,4.480,39.6,25.9,0.99,4.440,40.5 +25.1,0.99,5.210,24.9,24.9,0.99,5.130,26.1 +24.9,0.99,5.780,28.8,25.1,0.99,6.020,31.3 +25.0,0.99,4.360,37.5,25.1,0.99,4.710,40.9 +25.4,0.99,4.200,48.9,25.2,0.99,4.220,49.6 +25.8,0.99,4.580,65.9,25.6,0.99,4.600,66.5 +26.3,0.99,3.690,95.3,26.1,0.99,3.680,95.6 +26.7,0.99,3.550,131.6,26.5,0.99,3.550,131.5 +27.6,0.99,2.160,132.4,27.4,0.99,2.110,132.2 +27.6,0.99,3.830,128.6,27.4,0.99,3.790,128.6 +27.7,0.99,5.300,125.8,27.5,0.99,5.280,125.6 +27.8,0.99,5.830,130.0,27.6,0.99,5.800,129.8 +27.9,0.99,6.720,119.4,27.7,0.99,6.710,119.2 +28.1,0.99,6.320,115.6,27.9,0.99,6.300,115.2 +27.8,0.99,4.600,120.9,27.6,0.99,4.590,120.6 +27.7,0.99,3.800,138.1,27.5,0.99,3.810,137.8 +27.8,0.99,2.290,125.6,27.6,0.99,2.300,125.3 +27.7,0.99,1.750,113.3,27.5,0.99,1.750,112.8 +27.6,0.99,1.000,166.9,27.4,0.99,0.980,167.0 +27.6,0.99,0.800,194.3,27.4,0.99,0.790,195.6 +27.4,0.99,1.310,270.7,27.3,0.99,1.330,270.5 +27.3,0.99,0.600,357.1,27.1,0.99,0.560,352.0 +26.0,0.99,2.850,2.3,25.9,0.99,2.720,2.6 +25.1,0.99,4.640,13.7,24.9,0.99,4.500,14.1 +25.3,0.99,3.900,4.7,25.2,0.99,3.900,4.6 +25.0,0.99,4.570,21.9,24.8,0.99,4.520,22.0 +25.4,0.99,4.310,39.6,25.2,0.99,4.330,40.1 +25.6,0.99,4.190,42.8,25.4,0.99,4.180,43.2 +25.8,0.99,5.230,55.3,25.6,0.99,5.210,55.6 +26.1,0.99,4.860,67.8,25.9,0.99,4.880,68.2 +26.5,0.99,4.520,74.1,26.3,0.99,4.540,74.4 +26.9,0.99,4.820,97.5,26.7,0.99,4.840,97.6 +27.5,0.99,4.950,111.9,27.3,0.99,4.950,111.8 +27.7,0.99,5.060,120.9,27.5,0.99,5.050,120.8 +27.7,0.99,4.870,130.8,27.5,0.99,4.860,130.7 +27.8,0.99,4.680,137.7,27.7,0.99,4.680,137.5 +28.2,0.99,3.410,144.4,28.0,0.99,3.410,143.9 +28.1,0.99,4.870,132.7,27.9,0.99,4.870,132.5 +27.8,0.99,4.660,132.4,27.7,0.99,4.670,132.2 +27.6,0.99,4.600,132.4,27.4,0.99,4.610,132.3 +27.3,0.99,3.090,121.6,27.1,0.99,3.100,121.5 +27.2,0.99,3.390,129.0,27.0,0.99,3.390,128.9 +27.1,0.99,2.620,109.4,26.9,0.99,2.630,109.2 +27.0,0.99,2.590,115.8,26.8,0.99,2.590,115.6 +26.9,0.99,2.310,100.4,26.7,0.99,2.320,100.7 +26.8,0.99,2.670,86.1,26.6,0.99,2.700,86.0 +26.7,0.99,1.910,60.2,26.5,0.99,1.930,60.6 +26.6,0.99,1.900,27.6,26.4,0.99,1.900,28.4 +26.4,0.99,2.850,10.5,26.3,0.99,2.840,10.9 +25.7,0.99,4.570,18.1,25.5,0.99,4.540,18.2 +25.3,0.99,4.860,19.5,25.1,0.99,4.840,19.8 +25.1,0.99,4.360,13.7,24.9,0.99,4.360,13.5 +25.4,0.99,4.980,25.4,25.2,0.99,4.990,25.4 +25.4,0.99,3.670,50.0,25.2,0.99,3.680,50.1 +26.0,0.99,2.700,81.2,25.8,0.99,2.720,80.5 +26.4,0.99,3.550,99.6,26.2,0.99,3.560,99.4 +27.2,0.99,3.650,113.5,27.0,0.99,3.650,113.3 +27.5,0.99,3.470,122.4,27.3,0.99,3.470,122.1 +27.5,0.99,4.010,138.4,27.3,0.99,3.990,138.2 +27.8,0.99,4.370,150.9,27.6,0.99,4.350,150.7 +27.7,0.99,5.170,148.8,27.6,0.99,5.170,148.6 +27.8,0.99,5.870,143.4,27.6,0.99,5.890,143.1 +27.6,0.99,5.570,133.1,27.4,0.99,5.630,132.8 +27.4,0.99,5.310,134.5,27.2,0.99,5.320,134.5 +27.4,0.99,5.880,129.0,27.2,0.99,5.920,128.8 +27.3,0.99,5.340,126.3,27.1,0.99,5.370,126.2 +27.2,0.99,4.150,130.4,27.0,0.99,4.160,130.3 +27.3,0.99,3.480,136.9,27.1,0.99,3.500,136.9 +27.3,0.99,4.210,130.1,27.1,0.99,4.240,130.3 +27.1,0.99,3.390,127.3,26.9,0.99,3.410,127.2 +27.2,0.99,3.360,121.7,27.0,0.99,3.380,121.7 +27.1,0.99,2.530,108.7,26.9,0.99,2.540,108.6 +27.2,0.99,2.370,90.3,27.0,0.99,2.400,91.2 +27.0,0.99,2.440,76.2,26.8,0.99,2.460,76.7 +26.8,0.99,2.340,62.0,26.6,0.99,2.380,63.2 +26.5,0.99,3.480,43.1,26.4,0.99,3.510,46.2 +25.9,0.99,4.660,38.5,25.9,0.99,4.680,43.1 +26.6,0.99,5.180,45.4,26.4,0.99,5.190,46.8 +26.9,0.99,6.660,75.0,26.8,0.99,6.690,75.4 +26.9,0.99,7.570,102.9,26.8,0.99,7.420,103.2 +27.2,0.99,5.350,110.0,27.0,0.99,5.340,110.3 +27.2,0.99,7.030,125.1,27.0,0.99,7.050,125.0 +26.8,0.99,6.000,139.7,26.6,0.99,5.980,139.5 +26.9,0.99,3.760,118.3,26.7,0.99,3.760,118.1 +26.8,0.99,4.850,93.0,26.6,0.99,4.860,92.8 +27.0,0.99,6.500,119.8,26.8,0.99,6.510,119.7 +26.7,0.99,5.980,118.6,26.5,0.99,6.030,118.4 +26.8,0.99,7.680,120.0,26.6,0.99,7.680,120.0 +26.9,0.99,7.150,121.8,26.7,0.99,7.190,121.9 +26.8,0.99,6.830,126.3,26.6,0.99,6.850,126.2 +26.8,0.99,5.710,141.2,26.6,0.99,5.730,141.3 +27.1,0.99,5.330,138.5,26.9,0.99,5.340,138.9 +27.3,0.99,6.660,156.6,27.1,0.99,6.670,156.4 +27.2,0.99,4.290,152.1,27.0,0.99,4.330,151.9 +27.2,0.99,3.140,141.1,27.0,0.99,3.180,140.7 +27.1,0.99,1.980,142.2,27.0,0.99,2.040,142.0 +27.0,0.99,0.860,198.2,26.8,0.99,0.720,189.6 +27.0,0.99,2.190,109.0,26.9,0.99,2.330,114.0 +26.7,0.99,2.050,55.0,26.6,0.99,2.090,55.2 +26.3,0.99,6.130,41.1,26.1,0.99,6.100,40.7 +26.8,0.99,5.120,111.3,26.8,0.99,5.140,106.5 +25.8,0.99,4.480,83.9,25.7,0.99,4.480,83.0 +26.3,0.99,4.450,112.9,26.1,0.99,4.450,112.8 +26.6,0.99,4.360,111.9,26.4,0.99,4.410,112.4 +27.2,0.99,5.140,158.9,27.0,0.99,5.130,158.6 +27.3,0.99,5.700,129.8,27.1,0.99,5.680,129.9 +27.3,0.99,5.880,132.4,27.1,0.99,5.890,132.3 +27.2,0.99,6.230,126.1,27.0,0.99,6.240,126.1 +27.3,0.99,5.760,137.5,27.1,0.99,5.770,137.8 +27.3,0.99,6.380,140.8,27.1,0.99,6.360,140.7 +26.8,0.99,8.580,123.4,26.6,0.99,8.520,123.7 +26.4,0.99,6.850,142.8,26.2,0.99,6.850,143.5 +26.9,0.99,6.590,149.4,26.7,0.99,6.620,149.5 +27.0,0.99,7.000,161.4,26.8,0.99,7.010,161.4 +26.9,0.99,6.570,149.9,26.8,0.99,6.590,149.9 +27.0,0.99,7.510,157.8,26.8,0.99,7.540,157.9 +27.0,0.99,6.080,151.8,26.8,0.99,6.110,152.0 +27.0,0.99,6.410,165.4,26.8,0.99,6.430,165.4 +27.0,0.99,6.920,165.0,26.8,0.99,6.930,165.0 +27.1,0.99,6.790,169.9,26.9,0.99,6.830,169.9 +27.3,0.99,6.140,179.3,27.1,0.99,6.180,179.2 +27.0,0.99,9.330,170.8,26.8,0.99,9.250,171.4 +25.6,0.99,9.230,169.1,25.4,0.99,9.230,169.3 +25.9,0.99,8.250,163.9,25.7,0.99,8.300,164.1 +26.2,0.99,7.720,167.4,26.0,0.99,7.740,167.4 +26.5,0.99,10.800,173.9,26.3,0.99,10.860,174.0 +25.8,0.99,9.000,180.2,25.6,0.99,9.030,180.3 +25.5,0.99,7.640,198.5,25.3,0.99,7.670,198.5 +25.9,0.99,7.000,186.2,25.7,0.99,7.020,186.0 +26.4,0.99,6.340,182.0,26.2,0.99,6.540,180.9 +26.2,0.99,7.860,189.5,26.0,0.99,7.870,189.5 +23.8,0.99,9.300,196.1,23.7,0.99,9.360,196.7 +25.5,0.99,5.310,184.7,25.3,0.99,5.330,184.6 +26.4,0.99,5.160,157.4,26.2,0.99,5.210,157.3 +26.1,0.99,4.880,143.9,25.9,0.99,4.920,144.3 +26.9,0.99,7.090,139.7,26.7,0.99,7.210,140.0 +27.0,0.99,7.550,138.0,26.8,0.99,7.570,138.2 +27.2,0.99,8.160,140.2,27.0,0.99,8.220,140.3 +27.4,0.99,10.050,147.6,27.2,0.99,10.100,147.6 +27.2,0.99,8.630,156.8,27.0,0.99,8.680,156.8 +27.4,0.99,8.630,165.5,27.2,0.99,8.700,165.5 +27.5,0.99,8.420,168.0,27.3,0.99,8.460,168.0 +27.5,0.99,8.260,169.0,27.3,0.99,8.320,169.0 +27.5,0.99,8.350,170.9,27.3,0.99,8.410,170.9 +27.6,0.99,9.430,168.3,27.4,0.99,9.520,168.2 +27.8,0.99,9.650,174.3,27.6,0.99,9.720,174.2 +27.2,0.99,7.770,178.9,27.1,0.99,7.890,178.8 +27.7,0.99,7.200,171.3,27.5,0.99,7.260,171.2 +27.7,0.99,6.690,159.8,27.6,0.99,6.710,159.8 +24.4,0.99,3.140,312.0,24.3,0.99,3.170,313.4 +24.0,1.00,6.170,1.9,23.8,1.00,6.140,2.1 +24.6,1.00,4.870,296.7,24.5,1.00,4.730,296.9 +25.4,1.00,2.700,314.9,25.3,1.00,2.620,316.3 +26.0,1.00,1.840,53.5,25.8,1.00,1.850,54.3 +26.3,0.99,3.370,92.5,26.1,0.99,3.340,92.5 +26.3,0.99,3.490,97.4,26.1,0.99,3.480,97.7 +26.6,0.99,4.760,113.5,26.4,0.99,4.770,113.8 +26.8,0.99,5.810,120.5,26.7,0.99,5.820,120.8 +27.0,0.99,4.410,119.6,26.8,0.99,4.440,120.3 +27.8,0.99,7.180,141.1,27.6,0.99,7.210,141.1 +27.7,0.99,6.920,152.6,27.5,0.99,6.950,152.5 +27.9,0.99,6.640,153.6,27.7,0.99,6.660,153.6 +27.4,0.99,8.420,148.4,27.2,0.99,8.430,148.5 +27.4,0.99,7.100,157.8,27.3,0.99,7.140,157.9 +27.1,0.99,7.170,160.1,26.9,0.99,7.200,160.0 +27.4,0.99,6.180,168.0,27.2,0.99,6.230,168.1 +27.1,1.00,6.090,169.8,26.9,1.00,6.110,169.8 +27.1,1.00,5.170,176.7,26.9,1.00,5.190,176.7 +27.2,1.00,3.910,166.4,27.1,1.00,3.950,166.4 +27.1,1.00,4.140,165.0,26.9,1.00,4.160,165.0 +27.0,1.00,3.570,169.2,26.8,1.00,3.590,169.3 +27.0,1.00,3.330,154.5,26.8,1.00,3.330,154.5 +27.0,1.00,3.060,147.3,26.8,1.00,3.070,147.3 +27.1,1.00,2.810,151.2,26.9,1.00,2.830,150.9 +27.1,1.00,3.380,144.6,26.9,1.00,3.390,144.5 +27.1,1.00,3.320,130.2,26.9,1.00,3.340,130.2 +27.5,1.00,4.080,148.7,27.3,1.00,4.070,148.7 +27.5,1.00,6.030,146.4,27.3,1.00,6.030,146.5 +27.6,0.99,5.710,147.9,27.4,0.99,5.720,148.0 +27.6,0.99,5.960,147.9,27.4,0.99,5.980,147.8 +27.6,0.99,7.580,145.4,27.4,0.99,7.590,145.5 +27.7,0.99,6.630,159.0,27.6,0.99,6.620,158.9 +27.3,0.99,6.560,156.9,27.1,0.99,6.580,156.8 +27.0,0.99,6.420,165.9,26.9,0.99,6.410,166.0 +27.0,0.99,5.410,176.2,26.8,0.99,5.430,176.1 +26.9,0.99,5.970,174.9,26.8,0.99,5.990,175.0 +26.9,0.99,6.970,177.5,26.7,0.99,6.980,177.7 +26.9,0.99,6.400,178.8,26.8,0.99,6.420,178.8 +27.0,0.99,6.730,183.7,26.9,0.99,6.750,183.8 +26.8,0.99,5.780,180.7,26.6,0.99,5.800,180.7 +26.9,0.99,5.380,186.1,26.7,0.99,5.400,186.1 +27.1,0.99,5.270,193.1,26.9,0.99,5.270,193.0 +27.1,0.99,5.120,192.0,26.9,0.99,5.130,191.8 +27.0,0.99,4.380,201.3,26.9,0.99,4.370,201.4 +26.9,0.99,3.680,211.6,26.7,0.99,3.690,211.7 +26.9,0.99,2.890,228.0,26.8,0.99,2.870,227.6 +26.9,0.99,2.350,192.1,26.7,0.99,2.340,192.4 +26.9,0.99,2.360,199.7,26.7,0.99,2.370,199.7 +26.9,0.99,1.360,192.8,26.7,0.99,1.370,192.3 +27.0,0.99,2.850,168.6,26.8,0.99,2.870,168.3 +27.3,0.99,3.430,182.0,27.1,0.99,3.440,182.0 +27.4,0.99,5.380,176.0,27.3,0.99,5.380,176.3 +27.5,0.99,4.510,172.6,27.3,0.99,4.500,172.3 +27.6,0.99,4.570,171.4,27.4,0.99,4.570,171.5 +27.7,0.99,5.240,175.8,27.5,0.99,5.250,175.7 +27.6,0.99,5.450,178.1,27.4,0.99,5.460,178.1 +27.4,0.99,5.740,184.2,27.2,0.99,5.750,184.3 +27.4,0.99,6.570,182.0,27.2,0.99,6.590,182.1 +27.4,0.99,7.400,187.9,27.2,0.99,7.410,187.8 +27.6,0.99,7.290,190.1,27.4,0.99,7.290,189.9 +27.2,0.99,8.150,196.3,27.0,0.99,8.160,196.3 +27.3,0.99,7.840,197.9,27.1,0.99,7.870,198.0 +27.1,0.99,8.920,201.7,26.9,0.99,8.960,201.8 +27.2,0.99,7.610,209.1,27.0,0.99,7.670,209.1 +27.4,0.99,8.610,214.8,27.3,0.99,8.650,214.8 +27.2,0.99,8.600,221.1,27.0,0.99,8.620,221.0 +27.2,0.99,8.990,221.2,27.0,0.99,9.040,221.1 +27.3,0.99,7.530,227.2,27.1,0.99,7.560,227.5 +27.0,0.99,6.840,234.1,26.9,0.99,6.870,233.8 +27.0,0.99,7.400,237.4,26.9,0.99,7.450,237.4 +26.8,0.99,6.650,246.9,26.6,0.99,6.650,246.5 +27.0,0.99,6.130,240.7,26.8,0.99,6.190,240.4 +26.9,0.99,6.120,234.8,26.7,0.99,6.140,234.7 +27.0,0.99,6.280,216.9,26.9,0.99,6.290,216.9 +27.8,0.99,6.610,211.3,27.6,0.99,6.600,211.4 +27.9,0.99,6.920,203.3,27.7,0.99,6.920,203.5 +27.9,0.99,7.500,202.9,27.7,0.99,7.500,203.0 +27.8,0.99,8.110,199.6,27.6,0.99,8.110,199.7 +27.9,0.99,8.850,203.8,27.7,0.99,8.880,203.9 +28.0,0.99,8.760,201.5,27.8,0.99,8.780,201.6 +27.8,0.99,7.970,208.6,27.6,0.99,7.980,208.6 +28.0,0.99,3.390,226.9,27.8,0.99,3.440,228.4 +27.4,0.99,8.660,213.1,27.2,0.99,8.700,213.2 +26.7,0.99,6.750,234.9,26.5,0.99,6.800,235.1 +27.5,0.99,6.920,222.7,27.4,0.99,6.930,222.8 +27.9,0.99,7.950,228.0,27.7,0.99,7.990,228.0 +27.3,0.99,8.480,228.9,27.1,0.99,8.500,228.9 +27.4,0.99,8.470,233.8,27.2,0.99,8.520,233.9 +27.4,0.99,7.500,236.1,27.2,0.99,7.530,236.0 +27.1,0.99,7.410,245.2,26.9,0.99,7.430,245.2 +27.0,0.99,7.150,249.7,26.8,0.99,7.180,249.6 +26.6,0.99,6.540,267.8,26.4,0.99,6.540,267.5 +26.3,0.99,6.530,277.2,26.1,0.99,6.560,276.9 +26.1,0.99,5.780,276.5,26.0,0.99,5.810,276.3 +26.1,0.99,6.190,277.7,25.9,0.99,6.210,278.1 +26.3,0.99,4.590,276.8,26.2,0.99,4.570,277.6 +26.6,0.99,3.660,272.9,26.4,0.99,3.590,274.0 +26.9,0.99,2.880,250.6,26.7,0.99,2.780,251.1 +27.8,0.99,3.370,222.2,27.6,0.99,3.330,222.7 +28.2,0.99,4.140,208.2,28.0,0.99,4.090,208.6 +28.5,0.99,5.940,189.8,28.3,0.99,5.890,189.9 +28.2,0.99,7.080,189.9,28.0,0.99,7.040,189.9 +28.3,0.99,8.790,192.4,28.1,0.99,8.750,192.3 +27.6,0.99,9.020,204.9,27.4,0.99,8.960,205.0 +27.3,0.99,8.290,216.6,27.1,0.99,8.250,216.6 +27.2,0.99,7.590,217.0,27.0,0.99,7.570,217.1 +27.6,0.99,6.560,229.0,27.4,0.99,6.550,229.1 +27.7,0.99,5.840,235.5,27.5,0.99,5.830,235.6 +27.9,0.99,5.120,242.1,27.7,0.99,5.110,242.3 +28.0,0.99,4.210,247.6,27.8,0.99,4.190,247.9 +28.0,0.99,3.660,239.5,27.9,0.99,3.660,240.1 +27.7,0.99,3.190,246.6,27.6,0.99,3.230,247.3 +27.5,0.99,3.720,253.6,27.4,0.99,3.900,254.0 +26.8,0.99,4.320,285.2,26.8,0.99,4.380,280.1 +26.3,0.99,4.160,306.0,26.2,0.99,4.250,302.9 +26.1,0.99,4.060,304.6,25.9,0.99,4.080,303.6 +25.8,0.99,4.000,314.8,25.6,0.99,4.010,313.5 +25.8,0.99,3.930,312.5,25.7,0.99,4.010,311.8 +26.3,0.99,4.170,309.4,26.2,0.99,4.220,308.4 +26.8,0.99,3.210,314.3,26.7,0.99,3.280,314.5 +27.4,0.99,2.200,318.6,27.5,0.99,2.360,320.1 +27.4,0.99,1.580,261.3,27.3,0.99,1.540,272.1 +28.4,0.99,1.850,242.1,28.2,0.99,1.820,243.7 +29.0,0.99,2.050,172.0,28.8,0.99,1.990,171.9 +28.7,0.99,2.870,154.1,28.5,0.99,2.880,155.7 +28.8,0.99,5.750,178.9,28.6,0.99,5.720,178.9 +28.6,0.99,7.040,188.0,28.4,0.99,7.020,188.0 +28.4,0.99,6.510,181.9,28.3,0.99,6.500,182.0 +28.2,0.99,6.590,194.2,28.0,0.99,6.590,194.1 +28.0,0.99,6.610,201.6,27.8,0.99,6.620,201.5 +27.9,0.99,6.690,206.1,27.8,0.99,6.700,206.2 +27.9,0.99,6.430,215.5,27.7,0.99,6.440,215.7 +27.7,0.99,5.780,213.9,27.5,0.99,5.780,214.0 +27.8,0.99,4.910,215.8,27.6,0.99,4.910,216.0 +27.5,0.99,6.020,216.8,27.3,0.99,6.030,216.9 +27.3,0.99,5.270,225.2,27.1,0.99,5.270,225.2 +27.2,0.99,4.080,220.6,27.0,0.99,4.090,220.7 +27.3,0.99,4.450,228.4,27.1,0.99,4.460,228.5 +27.1,0.99,3.660,236.9,26.9,0.99,3.660,236.7 +27.1,0.99,3.660,253.7,26.9,0.99,3.640,253.5 +26.9,0.99,4.040,268.9,26.7,0.99,4.040,267.8 +26.4,0.99,3.790,285.1,26.2,0.99,3.760,283.8 +26.2,0.99,3.390,300.9,26.1,0.99,3.340,300.1 +26.5,0.99,1.880,279.4,26.4,0.99,1.890,278.4 +26.7,0.99,1.500,228.4,26.5,0.99,1.500,228.1 +26.8,0.99,1.680,196.8,26.6,0.99,1.700,196.4 +27.2,0.99,2.770,173.8,27.0,0.99,2.800,174.2 +27.6,0.99,4.090,150.3,27.4,0.99,4.100,150.4 +28.7,0.99,2.870,144.1,28.5,0.99,2.870,144.5 +29.0,0.99,4.600,156.3,28.8,0.99,4.590,156.6 +28.7,0.99,5.620,151.8,28.5,0.99,5.600,152.1 +28.3,0.99,6.220,154.5,28.1,0.99,6.230,154.7 +27.9,0.99,7.820,146.5,27.7,0.99,7.810,146.7 +27.9,0.99,7.350,152.9,27.7,0.99,7.380,153.1 +27.6,0.99,8.840,162.9,27.4,0.99,8.850,162.8 +27.2,0.99,8.230,167.7,27.0,0.99,8.250,167.6 +27.3,0.99,7.970,163.8,27.1,0.99,8.000,163.8 +27.7,0.99,7.250,153.7,27.5,0.99,7.280,153.7 +27.6,0.99,7.620,152.1,27.4,0.99,7.650,152.2 +27.4,0.99,8.260,154.9,27.3,0.99,8.310,155.0 +27.0,0.99,13.020,162.9,26.8,0.99,12.910,162.2 +27.6,0.99,9.420,164.3,27.5,0.99,9.710,162.9 +27.9,0.99,8.450,150.0,27.8,0.99,8.490,150.2 +28.2,0.99,7.220,156.3,28.1,0.99,7.310,156.0 +27.8,0.99,6.900,150.1,27.7,0.99,7.020,149.6 +27.7,0.99,7.460,148.4,27.5,0.99,7.550,148.3 +27.4,0.99,6.560,97.5,27.3,0.99,6.580,99.7 +24.1,0.99,7.110,11.1,23.9,0.99,7.000,11.3 +23.2,0.99,12.960,310.8,23.0,0.99,12.950,310.7 +22.4,0.99,5.370,290.9,22.3,0.99,5.360,287.5 +22.2,0.99,3.400,190.2,22.1,0.99,3.460,187.6 +23.2,0.99,3.840,66.4,23.1,0.99,3.800,67.1 +24.1,0.99,3.350,70.4,23.9,0.99,3.360,70.7 +25.5,0.99,6.280,84.2,25.3,0.99,6.290,84.1 +26.5,0.99,8.230,112.1,26.3,0.99,8.280,112.2 +26.6,0.99,7.370,108.5,26.4,0.99,7.380,108.5 +26.9,0.99,8.070,115.9,26.7,0.99,8.100,116.1 +26.9,0.99,7.330,119.5,26.7,0.99,7.350,119.5 +27.0,0.99,7.660,102.5,26.8,0.99,7.690,102.7 +27.0,0.99,7.410,106.6,26.8,0.99,7.440,106.7 +27.0,0.99,8.350,102.8,26.9,0.99,8.380,102.9 +24.6,0.99,6.750,102.1,24.4,0.99,6.790,103.2 +25.7,0.99,10.220,104.5,25.5,0.99,10.210,104.7 +23.7,0.99,6.780,183.5,23.6,0.99,6.680,183.1 +24.7,0.99,6.640,170.3,24.7,0.99,6.650,171.1 +24.1,0.99,1.980,144.2,24.2,0.99,2.230,136.3 +23.5,0.99,5.800,151.2,23.6,0.99,6.440,147.3 +25.3,0.99,5.070,99.1,25.1,0.99,5.050,98.9 +25.6,0.99,5.760,92.3,25.4,0.99,5.730,92.4 +26.0,0.99,4.680,82.4,25.8,0.99,4.690,82.7 +26.2,0.99,7.370,69.4,26.0,0.99,7.400,69.6 +26.0,0.99,9.590,81.4,25.8,0.99,9.590,81.5 +26.3,0.99,8.060,83.0,26.1,0.99,8.110,83.1 +26.5,0.99,7.240,78.3,26.3,0.99,7.280,78.5 +26.9,0.99,8.880,91.4,26.7,0.99,8.910,91.3 +27.0,0.99,7.130,101.0,26.8,0.99,7.150,101.0 +27.0,0.99,8.200,110.8,26.9,0.99,8.210,110.9 +26.7,0.99,7.800,108.1,26.5,0.99,7.820,108.0 +27.2,0.99,7.390,106.5,27.0,0.99,7.480,105.3 +25.8,0.99,8.850,85.0,25.7,0.99,8.870,85.3 +25.4,0.99,7.930,130.2,25.2,0.99,7.940,129.3 +24.7,0.99,1.420,84.7,24.7,0.99,1.520,112.9 +25.4,0.99,1.950,30.9,25.4,0.99,1.810,47.4 +26.3,0.99,5.640,102.3,26.1,0.99,5.620,103.4 +24.8,0.99,5.010,95.7,24.6,0.99,5.120,96.6 +25.7,0.99,5.920,111.6,25.5,0.99,5.950,110.9 +26.1,0.99,4.320,106.1,25.9,0.99,4.320,106.5 +26.6,0.99,5.160,91.0,26.4,0.99,5.160,91.1 +25.7,0.99,12.240,97.5,25.5,0.99,12.150,97.6 +24.9,1.00,8.760,113.7,24.7,1.00,8.780,113.7 +25.0,1.00,7.520,125.7,24.9,1.00,7.550,126.0 +25.2,1.00,4.580,124.4,25.0,1.00,4.550,125.0 +25.5,1.00,3.490,114.0,25.3,1.00,3.530,114.6 +25.9,1.00,3.180,99.0,25.7,1.00,3.180,98.8 +26.0,1.00,3.810,61.9,25.8,1.00,3.830,62.1 +26.2,1.00,4.840,55.7,26.0,1.00,4.840,56.0 +26.1,1.00,5.340,50.9,25.9,1.00,5.340,51.3 +26.4,1.00,6.050,61.9,26.2,1.00,6.070,62.1 +26.8,1.00,7.570,66.9,26.7,1.00,7.580,67.1 +26.8,1.00,7.120,99.8,26.6,1.00,7.150,100.2 +26.9,1.00,8.230,99.6,26.7,1.00,8.280,99.6 +27.0,1.00,5.560,114.7,26.9,1.00,5.870,112.6 +27.2,0.99,5.700,89.4,27.1,0.99,5.770,89.6 +27.6,0.99,6.150,104.2,27.4,0.99,6.180,104.4 +27.4,0.99,6.720,98.4,27.2,0.99,6.740,98.5 +27.5,0.99,6.170,94.7,27.3,0.99,6.200,94.8 +27.6,0.99,6.590,90.4,27.4,0.99,6.630,90.7 +27.7,0.99,5.860,91.2,27.5,0.99,5.930,91.2 +27.6,0.99,7.150,88.8,27.4,0.99,7.180,88.8 +27.4,0.99,6.010,90.6,27.2,0.99,6.060,90.6 +27.6,0.99,8.000,83.5,27.4,0.99,8.030,83.6 +27.6,0.99,6.250,96.5,27.4,0.99,6.310,96.6 +27.6,0.99,5.700,94.8,27.5,0.99,5.860,94.5 +27.0,0.99,5.820,81.2,26.8,0.99,5.780,81.6 +27.3,0.99,7.080,86.6,27.1,0.99,7.120,86.8 +27.4,0.99,5.260,82.4,27.2,0.99,5.290,82.7 +27.8,0.99,6.470,83.8,27.6,0.99,6.470,83.7 +27.1,1.00,7.200,70.3,26.9,1.00,7.220,70.7 +26.4,1.00,7.210,69.0,26.3,1.00,7.240,69.3 +26.4,1.00,6.400,69.5,26.3,1.00,6.420,69.7 +26.8,1.00,5.320,80.9,26.6,1.00,5.330,81.1 +26.9,0.99,4.530,86.5,26.7,0.99,4.550,86.2 +27.1,0.99,4.390,99.2,26.9,0.99,4.390,99.4 +27.1,0.99,3.600,101.1,26.9,0.99,3.600,101.4 +27.2,0.99,3.630,114.4,27.0,0.99,3.630,114.1 +27.3,0.99,3.340,128.0,27.1,0.99,3.340,127.9 +27.3,0.99,3.330,131.1,27.1,0.99,3.330,131.0 +27.2,0.99,2.800,111.6,27.0,0.99,2.800,111.5 +27.1,0.99,2.950,130.6,26.9,0.99,2.950,130.5 +26.9,0.99,1.280,86.7,26.7,0.99,1.280,86.8 +26.9,0.99,2.480,89.4,26.7,0.99,2.490,89.5 +27.2,0.99,5.040,98.5,27.0,0.99,5.050,98.4 +27.1,0.99,4.430,100.8,26.9,0.99,4.440,100.3 +27.0,0.99,4.000,110.4,26.9,0.99,4.020,110.8 +27.2,0.99,4.100,137.3,27.0,0.99,4.110,137.1 +27.1,0.99,3.840,113.6,26.9,0.99,3.840,113.7 +26.9,0.99,2.160,123.0,26.7,0.99,2.180,122.5 +26.2,0.99,3.720,213.7,26.1,0.99,3.590,208.7 +26.2,0.99,5.440,156.7,26.2,0.99,5.690,151.3 +23.5,0.99,5.610,229.1,23.3,0.99,5.570,228.5 +24.2,0.99,2.570,231.7,24.1,0.99,2.490,231.2 +24.6,0.99,2.300,285.4,24.4,0.99,2.240,285.4 +25.4,0.99,1.200,16.7,25.4,0.99,1.260,22.9 +25.1,0.99,2.780,6.0,24.9,0.99,2.710,7.0 +25.5,0.99,3.340,10.2,25.3,0.99,3.280,11.0 +25.9,0.99,2.460,30.8,25.7,0.99,2.460,31.8 +26.5,0.99,3.140,29.8,26.3,0.99,3.140,29.9 +26.2,0.99,5.640,41.0,26.0,0.99,5.600,41.2 +26.3,0.99,5.770,40.1,26.1,0.99,5.760,40.4 +26.5,0.99,4.270,80.8,26.3,0.99,4.250,81.1 +26.6,0.99,4.230,88.8,26.4,0.99,4.220,89.0 +26.7,0.99,3.700,91.6,26.5,0.99,3.680,91.9 +26.6,0.99,3.960,107.1,26.4,0.99,3.960,107.2 +26.6,0.99,4.050,112.3,26.4,0.99,4.050,112.4 +26.6,0.99,3.970,116.0,26.4,0.99,3.970,116.0 +26.8,0.99,3.710,134.3,26.6,0.99,3.730,134.4 +26.8,0.99,3.910,139.8,26.6,0.99,3.920,139.9 +26.9,0.99,3.790,152.2,26.7,0.99,3.790,152.3 +26.8,0.99,4.500,167.5,26.6,0.99,4.520,167.5 +26.7,0.99,3.650,175.8,26.5,0.99,3.670,176.0 +26.7,0.99,2.790,195.2,26.5,0.99,2.770,195.0 +26.6,0.99,3.190,186.8,26.4,0.99,3.200,186.2 +26.5,0.99,2.220,197.3,26.3,0.99,2.250,196.8 +26.6,0.99,2.090,181.9,26.4,0.99,2.110,181.7 +26.5,0.99,1.550,198.9,26.3,0.99,1.570,198.2 +26.4,0.99,0.870,255.1,26.3,0.99,0.850,246.5 +25.8,0.99,3.540,35.3,25.7,0.99,3.430,35.7 +25.7,0.99,5.700,84.2,25.6,0.99,5.510,82.9 +26.1,0.99,6.230,120.2,26.0,0.99,6.180,121.3 +26.0,0.99,7.830,141.6,25.9,0.99,7.880,141.6 +25.9,0.99,6.810,153.4,25.8,0.99,6.840,153.7 +27.2,0.99,5.910,159.5,27.0,0.99,5.960,159.8 +26.4,0.99,6.850,144.4,26.2,0.99,6.860,144.7 +26.9,0.99,6.320,134.6,26.7,0.99,6.330,134.8 +27.1,0.99,5.990,130.9,26.9,0.99,6.000,131.2 +27.3,0.99,5.380,133.4,27.1,0.99,5.380,133.6 +26.9,0.99,3.800,142.8,26.7,0.99,3.780,144.8 +27.0,0.99,6.350,178.7,26.8,0.99,6.340,178.7 +26.9,0.99,6.310,168.7,26.7,0.99,6.330,168.8 +26.9,0.99,7.400,181.7,26.7,0.99,7.430,181.6 +26.9,0.99,8.260,178.3,26.7,0.99,8.310,178.3 +27.2,0.99,8.300,187.3,27.0,0.99,8.350,187.6 +27.0,0.99,7.620,194.2,26.8,0.99,7.650,194.1 +27.0,0.99,5.030,192.2,26.8,0.99,5.040,192.2 +24.9,0.99,15.380,211.3,24.7,0.99,15.410,211.1 +24.3,0.99,4.970,200.9,24.2,0.99,5.260,198.5 +25.3,0.99,7.780,174.4,25.1,0.99,7.930,174.3 +27.7,0.99,7.490,215.1,27.5,0.99,7.560,215.2 +27.6,0.99,6.850,226.8,27.4,0.99,6.930,226.7 +27.5,0.99,7.100,235.1,27.3,0.99,7.170,234.4 +27.4,0.99,5.890,246.7,27.2,0.99,5.910,245.9 +27.6,0.99,4.690,244.8,27.5,0.99,4.750,241.5 +27.6,0.99,5.330,231.4,27.4,0.99,5.360,230.7 +27.9,0.99,5.750,220.9,27.7,0.99,5.850,220.8 +27.9,0.99,5.860,204.1,27.7,0.99,5.920,204.1 +28.4,0.99,5.410,181.8,28.2,0.99,5.490,181.7 +28.4,0.99,8.520,195.8,28.3,0.99,8.540,195.8 +28.1,0.99,7.950,189.3,27.9,0.99,7.990,189.5 +28.1,0.99,8.420,187.8,27.9,0.99,8.490,187.7 +28.1,0.99,8.600,178.3,27.9,0.99,8.660,178.2 +28.3,0.99,10.220,181.6,28.1,0.99,10.290,181.8 +28.3,0.99,10.000,178.1,28.1,0.99,10.040,178.3 +28.5,0.99,11.260,182.9,28.3,0.99,11.340,182.7 +28.5,0.99,11.520,184.1,28.3,0.99,11.560,184.2 +29.1,0.99,10.390,185.4,28.9,0.99,10.500,185.7 +28.7,0.99,11.140,193.3,28.5,0.99,11.210,193.2 +28.6,0.99,11.000,197.4,28.4,0.99,11.090,197.3 +29.0,0.99,9.170,189.1,28.9,0.99,9.260,189.4 +28.7,0.99,11.270,200.8,28.5,0.99,11.330,200.9 +28.3,0.99,9.570,198.1,28.2,0.99,9.620,198.3 +28.4,0.99,8.810,199.5,28.3,0.99,8.880,199.6 +28.0,0.99,9.040,200.8,27.8,0.99,9.090,200.7 +27.7,0.99,7.750,196.6,27.5,0.99,7.800,196.6 +27.4,0.99,7.140,197.3,27.2,0.99,7.190,197.3 +27.6,0.99,7.090,200.4,27.4,0.99,7.100,200.2 +27.7,0.99,4.710,201.8,27.5,0.99,4.770,201.6 +27.7,0.99,6.130,186.8,27.5,0.99,6.140,186.9 +27.9,0.99,8.000,194.8,27.7,0.99,8.050,194.6 +28.1,0.99,7.730,193.6,27.9,0.99,7.750,193.6 +28.2,0.99,8.320,191.4,28.0,0.99,8.330,191.6 +28.5,0.99,8.030,190.6,28.3,0.99,8.050,190.8 +28.2,0.99,8.850,194.4,28.0,0.99,8.850,194.2 +28.5,0.99,8.930,189.9,28.3,0.99,8.980,189.9 +28.4,0.99,8.370,191.9,28.3,0.99,8.390,191.8 +28.5,0.99,9.670,188.9,28.3,0.99,9.720,188.7 +28.1,0.99,9.680,191.3,27.9,0.99,9.690,191.1 +28.0,0.99,9.450,186.2,27.8,0.99,9.500,186.2 +27.6,0.99,9.600,180.9,27.4,0.99,9.610,181.1 +27.3,0.99,11.040,188.9,27.1,0.99,11.070,188.9 +27.6,0.99,10.320,193.2,27.4,0.99,10.330,193.1 +27.6,0.99,9.180,200.2,27.4,0.99,9.260,200.0 +27.3,0.99,9.980,193.8,27.1,0.99,10.050,193.8 +27.3,0.99,9.930,197.9,27.1,0.99,9.980,197.9 +27.3,0.99,9.220,197.3,27.1,0.99,9.280,197.5 +27.4,0.99,10.020,201.6,27.2,0.99,10.060,201.6 +27.7,0.99,8.560,201.5,27.5,0.99,8.630,201.4 +28.0,0.99,8.770,206.5,27.9,0.99,8.860,206.5 +27.6,0.99,8.990,205.3,27.4,0.99,9.030,205.3 +27.6,0.99,7.010,200.7,27.4,0.99,7.070,200.6 +27.5,0.99,6.130,210.9,27.4,0.99,6.160,211.0 +27.5,0.99,4.370,211.5,27.3,0.99,4.420,211.7 +27.6,0.99,4.510,223.5,27.4,0.99,4.550,223.6 +28.0,0.99,5.580,211.1,27.8,0.99,5.600,211.6 +28.1,0.99,6.070,207.4,27.9,0.99,6.100,207.7 +28.2,0.99,5.530,211.8,28.0,0.99,5.550,211.5 +28.2,0.99,5.860,195.8,28.0,0.99,5.890,196.1 +28.1,0.99,6.980,200.2,27.9,0.99,7.000,200.3 +28.0,0.99,7.330,193.6,27.8,0.99,7.330,193.7 +27.8,0.99,7.450,193.5,27.6,0.99,7.470,193.5 +27.9,0.99,7.530,197.6,27.7,0.99,7.540,197.8 +27.7,0.99,8.040,201.0,27.6,0.99,8.040,201.2 +27.5,0.99,8.060,185.7,27.3,0.99,8.070,186.0 +27.6,0.99,9.610,196.2,27.4,0.99,9.610,196.3 +27.4,0.99,8.140,207.1,27.2,0.99,8.180,207.1 +27.0,0.99,8.560,202.2,26.9,0.99,8.610,202.2 +27.2,0.99,8.600,205.8,27.0,0.99,8.640,205.8 +27.6,0.99,8.410,209.8,27.4,0.99,8.510,209.9 +27.7,0.99,8.460,212.7,27.5,0.99,8.540,213.0 +27.4,0.99,7.660,226.4,27.2,0.99,7.700,226.3 +27.3,0.99,7.410,221.7,27.1,0.99,7.470,221.9 +27.2,0.99,7.660,224.8,27.0,0.99,7.690,224.8 +27.3,0.99,6.340,239.5,27.1,0.99,6.380,239.3 +27.2,0.99,5.470,243.2,27.0,0.99,5.490,242.4 +27.2,0.99,5.110,241.7,27.0,0.99,5.130,241.8 +27.2,0.99,3.980,241.0,27.0,0.99,4.040,240.8 +27.1,0.99,4.590,221.1,26.9,0.99,4.630,221.0 +27.7,0.99,4.760,209.0,27.6,0.99,4.770,209.2 +27.9,0.99,4.680,196.1,27.7,0.99,4.690,196.4 +28.0,0.99,5.010,197.9,27.8,0.99,5.000,197.9 +27.7,0.99,6.460,196.3,27.5,0.99,6.450,196.2 +27.9,0.99,6.740,190.8,27.7,0.99,6.740,190.9 +27.8,0.99,7.220,196.2,27.6,0.99,7.210,196.3 +27.6,0.99,7.740,196.0,27.4,0.99,7.750,196.1 +27.3,0.99,7.140,196.0,27.1,0.99,7.150,196.1 +27.4,0.99,7.430,200.6,27.2,0.99,7.450,200.7 +27.3,0.99,7.800,208.0,27.2,0.99,7.810,208.1 +27.6,0.99,7.490,213.9,27.4,0.99,7.520,214.0 +27.2,0.99,7.370,219.4,27.0,0.99,7.390,219.5 +27.0,0.99,7.950,224.9,26.8,0.99,7.960,224.9 +26.9,0.99,8.810,233.0,26.7,0.99,8.830,232.9 +27.0,0.99,7.680,236.8,26.8,0.99,7.710,236.8 +27.1,0.99,7.940,244.6,26.9,0.99,7.980,244.6 +26.9,0.99,8.570,245.9,26.7,0.99,8.590,246.0 +26.4,0.99,7.870,261.1,26.2,0.99,7.880,261.0 +26.1,0.99,6.860,260.4,26.0,0.99,6.890,260.2 +25.8,0.99,6.240,267.9,25.6,0.99,6.260,267.6 +25.8,0.99,4.910,266.5,25.6,0.99,4.940,266.1 +26.1,0.99,4.600,250.2,26.0,0.99,4.660,250.5 +26.3,0.99,4.300,226.5,26.2,0.99,4.290,227.0 +26.9,0.99,3.200,225.2,26.7,0.99,3.180,225.4 +27.6,0.99,3.160,205.8,27.4,0.99,3.130,206.0 +27.9,0.99,4.180,200.7,27.7,0.99,4.150,200.8 +28.0,0.99,4.350,203.0,27.8,0.99,4.330,203.1 +28.0,0.99,5.640,200.8,27.8,0.99,5.620,200.8 +28.1,0.99,5.740,201.5,27.9,0.99,5.720,201.5 +28.2,0.99,5.390,198.5,28.0,0.99,5.380,198.5 +27.9,0.99,6.610,201.2,27.7,0.99,6.590,201.1 +27.7,0.99,6.770,202.6,27.5,0.99,6.770,202.6 +27.8,0.99,6.970,207.6,27.6,0.99,6.970,207.6 +27.7,0.99,7.410,207.0,27.5,0.99,7.430,207.1 +27.7,0.99,6.930,212.5,27.5,0.99,6.940,212.5 +27.6,0.99,7.370,215.4,27.4,0.99,7.380,215.4 +27.7,0.99,8.190,219.8,27.5,0.99,8.210,219.8 +27.4,0.99,7.330,219.5,27.2,0.99,7.360,219.5 +27.6,0.99,7.190,225.5,27.4,0.99,7.250,225.6 +27.5,0.99,6.960,233.7,27.3,0.99,7.010,233.6 +27.6,0.99,6.200,236.3,27.4,0.99,6.240,236.0 +27.4,0.99,6.030,239.3,27.2,0.99,6.070,239.1 +26.9,0.99,5.650,235.7,26.8,0.99,5.680,235.3 +27.1,0.99,5.120,236.8,26.9,0.99,5.110,236.5 +26.8,0.99,3.660,249.5,26.7,0.99,3.680,247.0 +26.6,0.99,2.550,235.8,26.4,0.99,2.680,234.3 +26.7,0.99,2.490,231.2,26.5,0.99,2.550,229.8 +27.0,0.99,3.850,201.0,26.8,0.99,3.890,200.9 +27.4,0.99,5.320,195.2,27.2,0.99,5.340,195.4 +27.7,0.99,6.220,187.2,27.5,0.99,6.240,187.4 +27.8,0.99,7.410,191.2,27.6,0.99,7.400,191.2 +27.8,0.99,7.910,192.8,27.6,0.99,7.930,192.7 +27.6,0.99,8.620,189.6,27.4,0.99,8.650,189.7 +27.9,0.99,8.820,194.7,27.7,0.99,8.870,194.9 +27.6,0.99,9.240,194.0,27.4,0.99,9.280,194.1 +27.3,0.99,10.010,199.8,27.1,0.99,10.020,199.7 +27.3,0.99,10.190,199.8,27.1,0.99,10.240,199.9 +27.2,0.99,10.860,201.3,27.0,0.99,10.910,201.3 +27.4,0.99,10.280,203.5,27.2,0.99,10.340,203.6 +27.6,0.99,10.520,203.4,27.4,0.99,10.550,203.5 +27.7,0.99,10.650,207.9,27.5,0.99,10.740,208.1 +28.4,0.99,9.630,206.9,28.2,0.99,9.680,207.1 +28.4,0.99,10.820,214.1,28.2,0.99,10.950,214.3 +28.5,0.99,8.870,214.2,28.3,0.99,9.000,214.3 +27.7,0.99,10.510,213.8,27.5,0.99,10.550,213.8 +28.2,0.99,8.140,220.3,28.0,0.99,8.240,220.6 +28.3,0.99,9.320,233.2,28.2,0.99,9.450,233.1 +27.8,0.99,8.440,237.6,27.6,0.99,8.450,237.4 +27.8,0.99,7.870,240.8,27.6,0.99,7.960,240.7 +27.8,0.99,7.450,234.8,27.7,0.99,7.530,234.5 +27.9,0.99,8.380,221.0,27.7,0.99,8.520,221.6 +28.3,0.99,8.020,214.5,28.2,0.99,8.390,216.0 +28.5,0.99,9.280,217.3,28.3,0.99,9.290,217.3 +28.9,0.99,9.930,216.9,28.7,0.99,9.980,217.0 +28.7,0.99,9.240,206.4,28.6,0.99,9.240,206.3 +29.3,0.99,8.350,223.2,29.1,0.99,8.380,223.4 +28.8,0.99,8.360,208.0,28.6,0.99,8.390,207.9 +28.7,0.99,9.460,205.0,28.5,0.99,9.490,205.1 +28.7,0.99,8.960,211.9,28.6,0.99,8.970,211.8 +28.7,0.99,7.720,205.8,28.6,0.99,7.780,206.1 +28.3,0.99,7.950,212.4,28.1,0.99,7.990,212.5 +28.2,0.99,7.570,213.9,28.1,0.99,7.620,214.0 +28.2,0.99,8.150,214.1,28.0,0.99,8.150,214.2 +27.8,0.99,7.770,213.4,27.6,0.99,7.800,213.5 +27.7,0.99,7.110,221.9,27.5,0.99,7.130,221.6 +27.6,0.99,6.210,217.2,27.4,0.99,6.270,217.3 +27.6,0.99,6.550,219.6,27.4,0.99,6.620,219.6 +27.6,0.99,6.420,224.9,27.4,0.99,6.440,224.7 +27.4,0.99,6.600,227.8,27.3,0.99,6.630,227.6 +27.6,0.99,5.830,231.8,27.4,0.99,5.860,231.7 +27.4,0.99,5.770,227.5,27.2,0.99,5.810,227.2 +27.4,0.99,4.540,232.9,27.2,0.99,4.630,232.0 +27.5,0.99,4.730,225.1,27.3,0.99,4.750,225.1 +27.6,0.99,4.660,221.4,27.4,0.99,4.710,221.2 +27.6,0.99,5.110,217.3,27.4,0.99,5.140,217.1 +27.6,0.99,5.970,207.5,27.4,0.99,5.980,207.5 +27.9,0.99,6.570,204.4,27.7,0.99,6.580,204.3 +28.2,0.99,5.600,197.7,28.0,0.99,5.650,198.0 +28.0,0.99,6.700,193.2,27.8,0.99,6.740,193.5 +27.9,0.99,6.900,191.0,27.7,0.99,6.910,190.9 +27.9,0.99,5.760,189.4,27.7,0.99,5.730,188.9 +27.8,0.99,5.860,183.7,27.6,0.99,5.900,183.9 +27.8,0.99,5.230,172.8,27.6,0.99,5.250,173.5 +27.7,0.99,6.970,177.2,27.5,0.99,6.990,177.2 +27.5,0.99,7.400,173.0,27.3,0.99,7.420,173.0 +27.6,0.99,7.190,173.7,27.4,0.99,7.230,174.2 +27.5,0.99,7.890,167.7,27.3,0.99,7.900,167.8 +27.7,0.99,7.160,166.2,27.5,0.99,7.200,166.4 +27.6,0.99,8.980,167.5,27.4,0.99,9.010,167.8 +27.7,0.99,8.070,171.9,27.6,0.99,8.120,172.0 +27.8,0.99,8.200,187.8,27.6,0.99,8.270,187.8 +27.8,0.99,8.830,194.5,27.6,0.99,8.880,194.4 +27.8,0.99,7.980,194.1,27.6,0.99,8.020,193.9 +27.9,0.99,8.540,192.9,27.7,0.99,8.550,192.8 +27.8,0.99,7.400,191.0,27.6,0.99,7.420,191.0 +27.8,0.99,7.020,180.8,27.6,0.99,7.040,181.1 +27.8,0.99,6.660,188.4,27.6,0.99,6.680,188.5 +27.7,0.99,6.550,175.1,27.5,0.99,6.560,175.4 +27.9,0.99,6.060,180.6,27.7,0.99,6.100,180.9 +27.8,0.99,7.660,173.4,27.7,0.99,7.680,173.6 +27.9,0.99,7.470,180.3,27.8,0.99,7.500,180.5 +27.9,0.99,7.520,181.9,27.7,0.99,7.520,181.9 +28.0,0.99,7.870,181.1,27.8,0.99,7.880,181.2 +28.0,0.99,7.170,176.9,27.9,0.99,7.210,176.8 +28.1,0.99,7.380,175.2,27.9,0.99,7.410,175.2 +27.9,0.99,7.630,170.1,27.7,0.99,7.650,170.2 +27.9,0.99,7.620,166.9,27.7,0.99,7.650,166.9 +27.9,0.99,8.300,165.3,27.8,0.99,8.350,165.4 +28.0,0.99,9.430,166.2,27.8,0.99,9.480,166.3 +28.2,0.99,9.010,168.3,28.0,0.99,9.080,168.4 +28.2,0.99,8.770,170.3,27.9,0.99,8.800,170.3 +28.0,0.99,8.760,172.0,27.8,0.99,8.810,172.1 +27.9,0.99,9.790,174.3,27.7,0.99,9.890,174.3 +27.7,0.99,9.120,176.9,27.5,0.99,9.200,177.1 +27.9,0.99,8.140,187.3,27.8,0.99,8.250,186.5 +27.7,0.99,8.440,179.1,27.5,0.99,8.550,179.2 +27.7,0.99,6.970,184.4,27.6,0.99,7.150,185.0 +27.8,0.99,6.810,188.2,27.6,0.99,6.900,188.7 +27.5,0.99,7.950,203.4,27.3,0.99,8.030,203.2 +27.4,0.99,4.730,190.5,27.2,0.99,4.900,190.5 +27.5,1.00,4.980,208.4,27.4,1.00,5.110,207.6 +27.5,0.99,3.800,207.3,27.3,0.99,3.830,207.4 +27.4,1.00,4.630,226.5,27.2,1.00,4.630,225.8 +27.5,0.99,3.840,214.4,27.3,0.99,3.860,213.8 +27.8,0.99,4.250,203.5,27.6,0.99,4.290,203.1 +28.1,0.99,4.040,188.1,27.9,0.99,4.060,188.2 +28.2,0.99,5.540,186.2,28.0,0.99,5.540,186.3 +28.3,0.99,5.290,185.6,28.1,0.99,5.290,185.5 +28.2,0.99,6.260,173.9,28.0,0.99,6.260,174.1 +28.2,0.99,6.460,173.4,28.0,0.99,6.490,173.4 +27.9,0.99,7.250,173.5,27.8,0.99,7.260,173.6 +27.9,0.99,7.190,173.0,27.7,0.99,7.220,173.0 +27.9,0.99,6.900,172.4,27.8,0.99,6.920,172.8 +27.8,0.99,8.070,178.5,27.6,0.99,8.120,178.4 +27.9,0.99,7.500,181.5,27.7,0.99,7.550,181.4 +27.7,0.99,7.810,181.4,27.5,0.99,7.850,181.4 +27.6,0.99,7.990,185.9,27.4,0.99,8.060,186.1 +27.5,0.99,8.650,190.3,27.3,0.99,8.700,190.0 +27.6,0.99,7.410,190.6,27.4,0.99,7.470,190.5 +27.5,0.99,7.030,195.1,27.3,0.99,7.080,195.2 +27.5,0.99,6.820,197.2,27.4,0.99,6.910,197.3 +27.6,0.99,6.890,206.0,27.4,0.99,6.980,205.8 +27.4,0.99,5.370,220.0,27.3,0.99,5.540,219.6 +27.0,0.99,6.340,244.8,26.9,0.99,6.390,244.9 +26.6,0.99,3.790,259.5,26.4,0.99,3.860,258.4 +26.7,0.99,3.500,252.4,26.6,0.99,3.650,251.3 +26.7,0.99,3.280,248.7,26.6,0.99,3.330,247.9 +26.8,0.99,3.440,230.9,26.6,0.99,3.460,231.0 +27.6,0.99,3.760,200.9,27.4,0.99,3.770,201.0 +27.9,0.99,4.560,193.3,27.7,0.99,4.550,193.5 +27.9,0.99,4.590,190.0,27.7,0.99,4.590,190.0 +27.8,0.99,5.650,184.4,27.6,0.99,5.640,184.3 +27.8,0.99,6.320,180.9,27.6,0.99,6.310,180.9 +27.7,0.99,6.410,183.6,27.5,0.99,6.410,183.5 +27.6,0.99,6.320,176.7,27.4,0.99,6.330,176.7 +27.4,0.99,6.610,183.2,27.2,0.99,6.630,183.2 +27.4,0.99,6.500,179.3,27.3,0.99,6.510,179.2 +27.5,0.99,6.720,181.5,27.3,0.99,6.730,181.5 +27.4,0.99,6.850,185.7,27.2,0.99,6.860,185.7 +27.4,0.99,7.430,190.3,27.2,0.99,7.440,190.3 +27.3,0.99,6.640,198.5,27.1,0.99,6.660,198.5 +27.2,0.99,6.030,206.4,27.0,0.99,6.070,206.3 +27.3,0.99,6.720,211.8,27.1,0.99,6.750,211.9 +27.3,0.99,7.050,219.8,27.1,0.99,7.060,219.9 +27.1,0.99,6.390,224.7,26.9,0.99,6.420,224.8 +26.9,0.99,6.280,219.6,26.8,0.99,6.290,219.7 +26.9,0.99,6.360,251.7,26.7,0.99,6.370,251.4 +26.4,0.99,5.080,263.6,26.2,0.99,5.090,263.1 +26.3,0.99,4.790,260.1,26.1,0.99,4.800,259.9 +26.3,0.99,4.080,252.8,26.2,0.99,4.110,252.7 +26.6,0.99,2.540,216.7,26.4,0.99,2.520,217.6 +26.9,0.99,1.740,191.2,26.8,0.99,1.710,191.7 +27.6,0.99,2.810,169.5,27.4,0.99,2.780,169.4 +27.8,0.99,2.720,179.0,27.6,0.99,2.680,179.1 +28.1,0.99,4.190,183.8,27.9,0.99,4.150,183.8 +28.2,0.99,4.640,189.8,28.0,0.99,4.610,189.8 +28.1,0.99,5.990,184.3,27.9,0.99,5.960,184.2 +28.1,0.99,5.450,190.5,28.0,0.99,5.420,190.4 +27.9,0.99,5.490,192.9,27.7,0.99,5.460,192.5 +27.8,0.99,5.580,199.4,27.6,0.99,5.550,199.2 +27.8,0.99,7.110,196.6,27.6,0.99,7.110,196.5 +27.7,0.99,6.140,194.3,27.5,0.99,6.140,194.2 +27.7,0.99,5.720,198.1,27.5,0.99,5.740,198.3 +27.6,0.99,6.830,202.6,27.4,0.99,6.830,202.6 +27.4,0.99,6.600,212.1,27.2,0.99,6.610,212.0 +27.3,0.99,6.020,213.6,27.1,0.99,6.030,213.7 +27.2,0.99,5.570,231.5,27.0,0.99,5.600,231.4 +27.1,0.99,5.630,225.7,26.9,0.99,5.650,225.7 +27.1,0.99,5.030,235.3,26.9,0.99,5.060,235.3 +26.9,0.99,4.840,228.2,26.8,0.99,4.870,228.5 +26.9,0.99,4.900,240.5,26.7,0.99,4.910,239.8 +26.3,0.99,3.700,272.9,26.2,0.99,3.700,270.8 +26.4,0.99,2.560,272.4,26.2,0.99,2.660,269.3 +26.5,0.99,2.050,249.5,26.3,0.99,2.090,248.9 +26.5,0.99,2.660,236.6,26.4,0.99,2.690,236.5 +26.9,0.99,3.640,211.4,26.7,0.99,3.680,211.8 +27.6,0.99,3.480,201.8,27.4,0.99,3.480,202.2 +28.0,0.99,3.380,189.4,27.8,0.99,3.360,189.8 +28.0,0.99,4.490,173.3,27.8,0.99,4.480,173.5 +28.1,0.99,5.350,175.0,27.9,0.99,5.330,175.1 +28.1,0.99,5.960,169.4,27.9,0.99,5.960,169.5 +28.1,0.99,6.860,170.8,27.9,0.99,6.860,170.9 +27.9,0.99,6.260,169.7,27.7,0.99,6.280,169.7 +27.9,0.99,5.960,163.0,27.7,0.99,5.980,163.0 +27.9,0.99,7.400,166.7,27.7,0.99,7.420,166.7 +27.9,0.99,7.260,167.4,27.7,0.99,7.290,167.5 +27.8,0.99,6.730,170.5,27.7,0.99,6.750,170.5 +27.9,0.99,6.720,176.8,27.7,0.99,6.740,176.9 +27.9,0.99,6.350,188.7,27.7,0.99,6.380,188.7 +27.7,0.99,6.310,191.5,27.5,0.99,6.320,191.5 +27.7,0.99,5.600,191.8,27.5,0.99,5.640,191.5 +27.6,0.99,7.170,194.9,27.4,0.99,7.200,194.9 +27.7,0.99,6.270,200.1,27.5,0.99,6.290,200.2 +27.6,0.99,5.840,202.8,27.4,0.99,5.860,202.8 +27.4,0.99,4.530,204.8,27.2,0.99,4.560,204.8 +27.4,0.99,3.580,208.8,27.3,0.99,3.660,208.7 +27.7,0.99,3.500,204.9,27.5,0.99,3.530,205.0 +27.9,0.99,5.330,203.7,27.8,0.99,5.370,203.8 +27.9,0.99,4.830,204.8,27.7,0.99,4.850,205.0 +28.0,0.99,4.900,196.6,27.9,0.99,4.910,196.3 +28.2,0.99,5.690,184.7,28.0,0.99,5.700,184.9 +28.4,0.99,5.390,181.7,28.2,0.99,5.380,181.9 +28.6,0.99,5.250,184.5,28.4,0.99,5.260,184.2 +28.5,0.99,6.640,186.9,28.3,0.99,6.630,186.5 +29.0,0.99,5.780,186.5,28.8,0.99,5.810,186.1 +28.3,0.99,5.740,177.8,28.1,0.99,5.770,178.0 +28.3,0.99,7.290,172.3,28.1,0.99,7.300,172.5 +28.2,0.99,7.370,169.6,28.0,0.99,7.350,169.9 +28.1,0.99,7.070,177.7,27.9,0.99,7.080,177.8 +28.1,0.99,7.200,179.3,27.9,0.99,7.200,179.5 +28.1,0.99,7.240,182.7,27.9,0.99,7.220,182.8 +28.1,0.99,7.060,179.6,27.9,0.99,7.070,179.8 +27.9,0.99,6.950,182.8,27.7,0.99,6.970,182.7 +27.7,0.99,6.480,194.6,27.5,0.99,6.510,194.5 +27.7,0.99,5.360,197.1,27.6,0.99,5.400,197.2 +27.5,0.99,6.030,199.8,27.3,0.99,6.040,199.7 +27.4,0.99,4.610,202.6,27.2,0.99,4.630,202.6 +27.4,0.99,4.020,191.2,27.2,0.99,4.040,191.3 +27.4,0.99,1.870,197.3,27.2,0.99,1.900,197.2 +27.3,0.99,1.550,177.8,27.1,0.99,1.570,178.0 +27.5,0.99,2.490,197.8,27.3,0.99,2.500,197.9 +27.5,0.99,1.520,195.0,27.3,0.99,1.530,196.1 +27.5,0.99,2.390,189.5,27.4,0.99,2.390,188.9 +27.6,0.99,2.680,158.9,27.4,0.99,2.680,159.3 +27.9,0.99,3.140,166.1,27.7,0.99,3.140,166.2 +28.1,0.99,3.040,171.6,27.9,0.99,3.040,171.6 +28.3,0.99,3.770,181.4,28.1,0.99,3.780,181.2 +28.5,0.99,5.430,191.4,28.3,0.99,5.410,191.2 +28.3,0.99,4.750,192.4,28.2,0.99,4.760,192.4 +28.3,0.99,5.760,190.0,28.1,0.99,5.750,189.8 +28.1,0.99,6.050,186.7,27.9,0.99,6.070,186.8 +28.1,0.99,6.650,194.8,27.9,0.99,6.680,194.8 +27.9,0.99,6.090,194.8,27.8,0.99,6.110,194.8 +27.8,0.99,6.170,196.8,27.7,0.99,6.200,196.7 +27.7,0.99,6.130,202.4,27.5,0.99,6.160,202.5 +27.9,0.99,7.310,203.5,27.7,0.99,7.330,203.6 +27.8,0.99,6.130,210.3,27.6,0.99,6.150,210.2 +27.6,0.99,6.320,216.6,27.4,0.99,6.350,216.5 +27.6,0.99,6.380,211.8,27.4,0.99,6.430,211.9 +27.7,0.99,6.250,218.8,27.5,0.99,6.270,218.6 +27.9,0.99,6.100,224.3,27.7,0.99,6.140,224.2 +27.9,0.99,5.790,229.2,27.7,0.99,5.840,229.0 +28.1,0.99,3.980,235.1,28.0,0.99,4.000,234.5 +27.8,0.99,4.090,237.7,27.6,0.99,4.120,237.5 +27.5,0.99,3.360,255.0,27.3,0.99,3.350,253.9 +27.3,0.99,2.210,237.2,27.1,0.99,2.270,235.9 +27.6,0.99,3.260,213.0,27.4,0.99,3.270,212.9 +27.5,0.99,3.360,197.9,27.4,0.99,3.390,197.9 +27.9,0.99,4.990,183.2,27.7,0.99,5.000,183.4 +28.2,0.99,5.810,184.0,28.0,0.99,5.830,184.3 +28.4,0.99,6.720,200.8,28.2,0.99,6.760,201.0 +28.9,0.99,6.400,206.3,28.7,0.99,6.450,206.6 +28.4,0.99,7.540,194.1,28.2,0.99,7.580,194.3 +28.3,0.99,8.410,194.3,28.1,0.99,8.430,194.4 +28.3,0.99,8.320,193.8,28.1,0.99,8.350,193.9 +27.9,0.99,8.780,192.6,27.8,0.99,8.810,192.6 +27.9,0.99,8.490,196.8,27.8,0.99,8.520,196.8 +28.0,0.99,8.790,197.8,27.8,0.99,8.820,197.8 +27.8,0.99,9.770,195.9,27.6,0.99,9.810,195.8 +28.1,0.99,9.120,210.5,27.9,0.99,9.140,210.5 +27.9,0.99,8.670,211.3,27.7,0.99,8.720,211.4 +27.6,0.99,8.870,209.8,27.4,0.99,8.910,209.9 +27.6,0.99,8.850,214.7,27.4,0.99,8.900,214.6 +27.5,0.99,9.330,223.7,27.3,0.99,9.380,223.5 +27.5,0.99,7.060,218.8,27.3,0.99,7.090,218.9 +27.6,0.99,7.160,224.0,27.4,0.99,7.260,223.6 +28.2,0.99,6.370,223.4,28.0,0.99,6.530,223.3 +28.1,0.99,6.680,228.7,27.9,0.99,6.770,228.3 +27.9,0.99,6.300,219.7,27.7,0.99,6.370,219.5 +28.0,0.99,6.420,218.1,27.9,0.99,6.460,218.1 +27.8,0.99,6.070,228.8,27.6,0.99,6.100,228.5 +28.1,0.99,7.130,230.0,27.9,0.99,7.170,229.8 +28.9,0.99,7.810,217.8,28.7,0.99,7.850,217.8 +29.0,0.99,8.380,209.4,28.9,0.99,8.440,209.6 +29.3,0.99,9.060,209.8,29.1,0.99,9.100,210.0 +29.4,0.99,8.970,210.5,29.2,0.99,9.000,210.5 +29.7,0.99,8.950,206.3,29.5,0.99,8.970,206.4 +29.1,0.99,9.910,202.5,28.9,0.99,9.940,202.6 +29.1,0.99,8.740,200.5,28.9,0.99,8.780,200.7 +28.5,0.99,8.560,197.5,28.3,0.99,8.570,197.3 +28.4,0.99,8.800,196.3,28.2,0.99,8.800,196.0 +28.5,0.99,8.840,189.1,28.3,0.99,8.850,189.1 +28.7,0.99,8.980,193.7,28.6,0.99,9.020,194.0 +28.4,0.99,8.370,193.8,28.3,0.99,8.420,193.9 +28.3,0.99,8.770,199.9,28.1,0.99,8.810,199.9 +28.3,0.99,9.370,203.6,28.1,0.99,9.440,203.9 +28.6,0.99,8.440,205.8,28.4,0.99,8.530,206.1 +27.9,0.99,9.940,212.8,27.7,0.99,9.960,212.8 +27.7,0.99,9.650,213.1,27.5,0.99,9.640,213.0 +28.1,0.99,7.200,220.0,28.0,0.99,7.230,220.0 +28.0,0.99,8.570,218.9,27.8,0.99,8.630,219.0 +27.9,0.99,5.780,219.4,27.8,0.99,5.790,219.3 +28.0,0.99,4.940,217.6,27.8,0.99,4.950,217.6 +28.0,0.99,6.320,219.2,27.8,0.99,6.370,219.4 +28.0,0.99,5.850,209.7,27.8,0.99,5.870,209.9 +28.2,0.99,4.380,209.8,28.0,0.99,4.390,209.8 +28.4,0.99,4.670,187.6,28.2,0.99,4.670,187.8 +28.5,0.99,5.890,194.2,28.3,0.99,5.920,194.4 +28.8,0.99,5.700,185.2,28.6,0.99,5.730,186.0 +28.9,0.99,7.170,184.4,28.7,0.99,7.170,184.8 +28.6,0.99,8.220,187.1,28.4,0.99,8.240,187.0 +28.7,0.99,7.910,178.2,28.5,0.99,7.920,178.1 +28.4,0.99,7.440,175.7,28.2,0.99,7.470,176.1 +28.1,0.99,8.610,180.2,27.9,0.99,8.630,180.4 +27.7,0.99,8.620,178.8,27.5,0.99,8.600,178.7 +27.5,0.99,8.400,189.6,27.3,0.99,8.400,189.4 +28.4,0.99,6.380,194.5,28.2,0.99,6.400,194.3 +28.6,0.99,7.410,202.1,28.4,0.99,7.460,202.0 +27.7,0.99,7.760,203.3,27.5,0.99,7.710,203.2 +27.9,0.99,6.700,209.5,27.7,0.99,6.740,209.5 +27.2,0.99,7.300,209.7,27.0,0.99,7.300,209.7 +27.0,0.99,6.280,215.5,26.9,0.99,6.320,215.4 +27.1,0.99,6.250,213.1,26.9,0.99,6.240,212.9 +27.2,0.99,5.990,212.9,27.0,0.99,5.950,212.6 +27.1,0.99,3.970,235.0,26.9,0.99,3.970,233.7 +26.7,0.99,2.380,273.6,26.5,0.99,2.340,272.4 +26.6,0.99,0.720,269.2,26.4,0.99,0.740,253.4 +26.6,0.99,0.490,304.6,26.4,0.99,0.430,293.6 +26.6,0.99,0.400,47.9,26.4,0.99,0.390,55.1 +26.8,0.99,0.830,116.2,26.6,0.99,0.860,119.1 +27.6,0.99,2.910,147.8,27.4,0.99,2.940,148.5 +28.1,0.99,3.920,158.3,27.9,0.99,3.930,158.5 +28.2,0.99,4.460,152.5,28.0,0.99,4.460,152.8 +28.1,0.99,4.620,148.8,27.9,0.99,4.620,149.0 +28.2,0.99,5.270,154.7,28.0,0.99,5.280,154.6 +28.3,0.99,5.790,153.7,28.1,0.99,5.800,153.7 +28.0,0.99,6.300,156.0,27.8,0.99,6.310,156.0 +27.8,0.99,6.430,151.4,27.6,0.99,6.430,151.5 +27.8,0.99,6.290,155.6,27.6,0.99,6.310,155.7 +27.9,0.99,6.970,153.0,27.7,0.99,6.960,153.4 +27.7,0.99,6.060,168.4,27.5,0.99,6.070,168.5 +27.5,0.99,5.860,159.8,27.3,0.99,5.880,160.0 +27.4,0.99,5.520,166.9,27.2,0.99,5.510,167.1 +27.4,0.99,5.030,169.2,27.2,0.99,5.060,169.1 +27.2,0.99,4.820,174.6,27.0,0.99,4.840,174.6 +27.4,0.99,4.360,172.5,27.2,0.99,4.360,172.6 +27.3,0.99,1.790,195.2,27.1,0.99,1.830,194.6 +27.3,0.99,1.510,195.5,27.1,0.99,1.530,194.5 +27.2,0.99,0.500,159.3,27.0,0.99,0.560,163.2 +27.0,0.99,0.840,334.8,26.9,0.99,0.650,333.0 +26.7,0.99,1.650,24.9,26.6,0.99,1.430,29.6 +26.7,0.99,2.220,32.1,26.7,0.99,2.060,37.4 +26.9,0.99,2.850,54.0,26.7,0.99,2.820,55.0 +27.2,0.99,2.050,53.8,27.1,0.99,2.070,55.8 +27.9,0.99,3.640,94.0,27.8,0.99,3.650,94.2 +28.4,0.99,5.680,110.9,28.2,0.99,5.670,111.1 +28.6,0.99,6.250,129.6,28.4,0.99,6.260,129.7 +28.5,0.99,5.590,127.0,28.3,0.99,5.570,127.2 +28.6,0.99,6.510,128.6,28.4,0.99,6.530,128.6 +28.4,0.99,6.630,126.2,28.2,0.99,6.640,126.1 +28.4,0.99,6.030,114.0,28.2,0.99,6.050,114.1 +28.2,0.99,7.720,116.7,28.0,0.99,7.740,116.7 +28.2,0.99,7.030,121.0,28.0,0.99,7.060,120.9 +27.8,0.99,6.840,131.7,27.6,0.99,6.840,131.6 +27.7,0.99,7.350,124.0,27.5,0.99,7.370,124.1 +28.2,0.99,6.180,129.3,28.0,0.99,6.250,129.0 +27.8,0.99,5.990,127.2,27.6,0.99,5.990,127.2 +27.9,0.99,4.320,126.1,27.7,0.99,4.370,125.9 +28.0,0.99,4.240,122.2,27.8,0.99,4.260,122.2 +28.0,0.99,6.900,130.4,27.8,0.99,6.930,130.5 +27.9,0.99,5.120,143.3,27.7,0.99,5.140,143.2 +28.1,0.99,5.120,148.3,27.9,0.99,5.130,147.7 +26.9,0.99,7.480,172.0,26.7,0.99,7.440,171.4 +25.9,0.99,3.160,142.8,26.1,0.99,2.880,143.1 +26.0,0.99,2.830,54.9,26.0,0.99,2.830,59.8 +25.7,0.99,4.040,45.8,25.5,0.99,3.930,46.3 +26.5,0.99,5.080,68.8,26.4,0.99,5.030,69.0 +26.2,0.99,4.120,102.4,26.0,0.99,4.140,102.8 +27.2,0.99,3.210,129.1,27.0,0.99,3.220,128.8 +27.3,0.99,2.260,138.3,27.1,0.99,2.260,138.1 +27.6,0.99,2.310,102.4,27.4,0.99,2.320,102.4 +27.4,0.99,2.180,128.0,27.2,0.99,2.150,127.0 +27.5,0.99,3.380,103.9,27.3,0.99,3.380,103.7 +27.6,0.99,4.350,98.2,27.4,0.99,4.370,98.2 +27.4,0.99,5.420,104.7,27.3,0.99,5.520,103.9 +28.0,0.99,5.170,107.0,27.8,0.99,5.210,106.7 +27.6,0.99,5.410,121.8,27.4,0.99,5.410,121.8 +27.9,0.99,5.480,110.0,27.7,0.99,5.520,110.2 +27.7,0.99,7.330,112.1,27.5,0.99,7.330,112.3 +27.6,0.99,8.350,124.1,27.4,0.99,8.400,124.3 +27.0,0.99,8.450,140.0,26.8,0.99,8.440,140.3 +27.2,0.99,5.750,146.1,27.0,0.99,5.760,146.0 +26.9,0.99,4.940,145.4,26.8,0.99,5.110,144.3 +27.4,0.99,4.560,127.8,27.3,0.99,4.580,128.3 +27.3,0.99,4.970,105.5,27.2,0.99,5.000,107.3 +27.3,0.99,4.410,187.0,27.2,0.99,4.190,180.0 +27.6,0.99,1.480,156.1,27.4,0.99,1.800,148.6 +27.5,0.99,2.000,129.7,27.4,0.99,2.280,131.5 +27.7,0.99,3.450,109.5,27.5,0.99,3.500,110.6 +27.9,0.99,5.110,107.3,27.7,0.99,5.100,107.3 +28.0,0.99,5.390,121.8,27.8,0.99,5.420,122.0 +28.0,0.99,7.280,126.8,27.8,0.99,7.230,127.0 +27.6,0.99,6.760,142.8,27.4,0.99,6.770,142.8 +27.6,0.99,6.700,149.1,27.4,0.99,6.710,149.3 +28.1,0.99,6.360,152.4,27.9,0.99,6.390,152.5 +27.9,0.99,6.500,154.1,27.8,0.99,6.510,154.1 +28.0,0.99,6.430,154.2,27.8,0.99,6.450,154.3 +28.0,0.99,5.510,168.3,27.8,0.99,5.520,168.5 +27.8,0.99,5.160,167.8,27.6,0.99,5.180,167.8 +27.7,0.99,4.840,152.3,27.5,0.99,4.870,152.3 +27.7,0.99,5.760,162.4,27.5,0.99,5.790,162.3 +27.8,0.99,5.660,157.3,27.7,0.99,5.670,157.2 +27.8,0.99,5.750,162.1,27.6,0.99,5.780,162.0 +27.8,0.99,6.640,165.1,27.6,0.99,6.670,165.1 +27.8,0.99,5.910,167.3,27.6,0.99,5.950,167.2 +27.8,0.99,6.040,170.8,27.6,0.99,6.080,170.5 +27.9,0.99,5.110,184.1,27.7,0.99,5.130,183.6 +27.9,0.99,5.100,178.9,27.7,0.99,5.140,178.6 +27.9,0.99,5.590,182.8,27.7,0.99,5.570,182.8 +27.8,0.99,4.250,207.4,27.6,0.99,4.250,207.1 +27.6,0.99,4.490,224.5,27.4,0.99,4.510,224.1 +27.4,0.99,4.580,230.1,27.3,0.99,4.590,229.9 +26.9,0.99,3.320,280.3,26.9,0.99,3.380,272.6 +26.9,0.99,1.830,286.4,26.7,0.99,1.790,283.1 +27.1,0.99,0.590,227.8,26.9,0.99,0.630,223.7 +27.3,0.99,1.450,148.3,27.1,0.99,1.480,149.3 +27.7,0.99,2.570,167.8,27.5,0.99,2.580,167.9 +28.0,0.99,4.020,165.1,27.8,0.99,4.040,165.2 +28.3,0.99,5.200,178.0,28.1,0.99,5.240,177.8 +28.5,0.99,5.330,178.5,28.3,0.99,5.340,178.3 +28.4,0.99,6.240,170.0,28.3,0.99,6.230,170.2 +28.3,0.99,6.110,175.5,28.1,0.99,6.120,175.4 +28.5,0.99,6.070,175.0,28.3,0.99,6.090,174.7 +28.4,0.99,7.280,170.5,28.2,0.99,7.280,170.6 +28.7,0.99,7.270,177.3,28.6,0.99,7.300,177.3 +28.8,0.99,6.700,174.7,28.6,0.99,6.680,175.0 +29.0,0.99,7.410,178.5,28.8,0.99,7.440,178.5 +29.0,0.99,7.050,186.7,28.8,0.99,7.050,186.8 +29.0,0.99,6.830,192.6,28.8,0.99,6.840,192.7 +29.3,0.99,6.730,196.1,29.1,0.99,6.830,195.6 +29.0,0.99,5.990,203.6,28.8,0.99,6.020,203.1 +28.7,0.99,5.980,200.8,28.5,0.99,6.020,200.9 +28.6,0.99,5.560,212.8,28.4,0.99,5.630,212.7 +28.1,0.99,4.480,225.0,27.9,0.99,4.480,225.2 +27.8,0.99,4.400,231.9,27.6,0.99,4.410,231.8 +27.6,0.99,2.890,261.1,27.4,0.99,2.890,260.5 +27.4,0.99,2.700,271.9,27.2,0.99,2.680,270.1 +27.3,0.99,1.820,306.9,27.1,0.99,1.810,304.4 +27.4,0.99,0.630,242.5,27.3,0.99,0.670,242.0 +27.6,0.99,2.000,154.1,27.4,0.99,2.000,156.4 +28.2,0.99,4.220,150.8,28.1,0.99,4.200,151.6 +28.4,0.99,5.270,145.2,28.2,0.99,5.270,145.5 +27.9,0.99,2.880,158.8,27.7,0.99,2.830,159.8 +28.1,0.99,3.100,177.4,27.9,0.99,3.070,178.7 +28.1,0.99,4.660,180.3,27.9,0.99,4.660,180.6 +28.0,0.99,6.300,176.4,27.8,0.99,6.300,176.8 +28.0,0.99,6.360,180.1,27.8,0.99,6.360,180.3 +28.1,0.99,7.630,185.6,27.9,0.99,7.630,185.5 +28.1,0.99,7.110,185.6,27.9,0.99,7.120,185.7 +28.3,0.99,7.110,186.5,28.1,0.99,7.140,186.4 +28.1,0.99,7.510,181.1,27.9,0.99,7.520,181.1 +28.2,0.99,7.210,185.4,28.0,0.99,7.230,185.4 +28.1,0.99,8.170,190.5,27.9,0.99,8.220,190.3 +28.1,0.99,7.930,194.1,27.9,0.99,7.980,193.9 +27.9,0.99,7.070,199.4,27.7,0.99,7.110,199.6 +28.1,0.99,6.360,213.7,27.9,0.99,6.410,213.4 +27.9,0.99,7.230,220.0,27.8,0.99,7.270,219.9 +28.0,0.99,5.870,225.9,27.8,0.99,5.940,225.8 +27.6,0.99,6.430,244.1,27.4,0.99,6.440,243.7 +27.4,0.99,4.920,257.6,27.3,0.99,5.130,255.0 +27.3,0.99,3.830,282.3,27.4,0.99,4.160,276.0 +27.5,0.99,5.240,266.2,27.5,0.99,5.530,266.9 +27.6,0.99,3.200,238.9,27.4,0.99,3.320,239.4 +27.7,0.99,1.750,258.6,27.5,0.99,1.760,259.1 +28.6,0.99,1.050,176.4,28.4,0.99,1.020,177.0 +28.9,0.99,3.880,171.4,28.7,0.99,3.860,171.6 +28.8,0.99,7.400,181.6,28.6,0.99,7.380,181.6 +28.8,0.99,6.860,188.2,28.6,0.99,6.850,188.2 +28.8,0.99,6.790,192.4,28.6,0.99,6.790,192.4 +25.4,0.99,11.490,38.9,25.2,0.99,11.610,38.6 +24.0,0.99,6.960,32.5,23.8,0.99,7.040,31.5 +25.0,0.99,2.490,84.7,25.0,0.99,1.970,78.3 +26.0,0.99,3.570,151.8,25.8,0.99,3.480,151.7 +27.4,0.99,2.930,134.6,27.3,0.99,2.890,134.2 +27.6,0.99,0.380,278.1,27.4,0.99,0.360,281.0 +27.6,0.99,1.800,55.1,27.4,0.99,1.780,53.9 +27.6,0.99,1.820,66.3,27.4,0.99,1.810,66.4 +27.4,0.99,1.630,52.8,27.2,0.99,1.620,52.5 +27.1,0.99,1.360,13.5,26.9,0.99,1.300,15.4 +26.8,0.99,3.260,356.6,26.6,0.99,3.230,356.7 +26.1,0.99,4.270,15.9,25.9,0.99,4.200,15.6 +26.2,0.99,3.710,19.0,26.0,0.99,3.670,19.1 +25.9,0.99,3.780,26.2,25.8,0.99,3.700,25.9 +25.9,0.99,5.860,12.0,25.7,0.99,5.810,11.9 +25.7,0.99,4.260,32.5,25.5,0.99,4.220,32.3 +25.6,0.99,4.810,20.9,25.4,0.99,4.790,20.6 +25.7,0.99,3.810,43.7,25.6,0.99,3.790,43.3 +26.2,0.99,2.470,36.1,26.0,0.99,2.470,34.7 +26.8,0.99,1.400,64.5,26.6,0.99,1.400,62.6 +27.3,0.99,1.660,118.2,27.1,0.99,1.600,116.2 +27.6,0.99,2.120,204.1,27.4,0.99,2.090,205.3 +26.7,0.99,7.100,261.0,26.6,0.99,7.010,260.5 +26.0,0.99,5.750,344.9,25.8,0.99,5.740,345.0 +25.4,0.99,4.500,44.9,25.2,0.99,4.420,44.1 +26.3,0.99,1.050,59.3,26.1,0.99,1.080,62.3 +26.9,0.99,1.520,19.1,26.7,0.99,1.490,20.0 +27.1,0.99,1.110,3.9,26.9,0.99,1.120,6.1 +27.4,0.99,1.640,29.3,27.2,0.99,1.650,30.1 +27.6,0.99,2.970,53.3,27.4,0.99,2.990,53.7 +27.7,0.99,3.360,68.4,27.5,0.99,3.360,68.6 +27.6,0.99,3.390,59.5,27.4,0.99,3.390,59.9 +27.0,0.99,3.450,44.9,26.8,0.99,3.440,45.6 +26.7,0.99,4.150,40.8,26.5,0.99,4.110,41.8 +26.4,0.99,5.010,24.7,26.3,0.99,4.980,25.0 +26.2,0.99,4.440,36.2,26.1,0.99,4.430,36.7 +25.9,0.99,3.970,18.1,25.7,0.99,3.940,18.6 +25.6,0.99,3.460,29.4,25.4,0.99,3.440,30.2 +25.7,0.99,4.150,15.8,25.5,0.99,4.130,16.6 +25.8,0.99,3.630,22.6,25.6,0.99,3.600,23.6 +26.1,0.99,5.800,34.4,25.9,0.99,5.810,34.9 +26.6,0.99,6.110,52.8,26.4,0.99,6.110,53.1 +26.9,0.99,5.190,71.4,26.7,0.99,5.180,71.4 +27.3,0.99,4.000,91.6,27.1,0.99,3.980,91.3 +27.5,0.99,4.680,102.7,27.3,0.99,4.660,102.3 +27.7,0.99,4.980,113.5,27.5,0.99,4.980,113.3 +27.9,0.99,5.480,117.3,27.7,0.99,5.470,117.1 +28.1,0.99,5.210,119.8,27.9,0.99,5.220,119.6 +28.2,0.99,4.900,119.1,28.0,0.99,4.920,118.8 +28.2,0.99,5.630,127.6,28.0,0.99,5.630,127.4 +28.3,0.99,5.240,124.9,28.1,0.99,5.260,124.8 +28.3,0.99,5.170,131.8,28.1,0.99,5.190,131.6 +28.2,0.99,5.010,132.7,28.0,0.99,5.020,132.5 +28.3,0.99,4.490,116.8,28.1,0.99,4.510,116.6 +28.2,0.99,4.220,120.6,28.0,0.99,4.230,120.4 +27.9,0.99,3.360,99.8,27.8,0.99,3.390,99.9 +27.8,0.99,3.750,81.7,27.6,0.99,3.790,82.0 +27.7,0.99,3.590,66.9,27.5,0.99,3.620,67.0 +26.5,0.99,5.270,21.4,26.4,0.99,5.240,24.2 +25.7,0.99,7.110,19.0,25.6,0.99,7.090,19.2 +25.7,0.99,6.100,23.0,25.6,0.99,6.130,24.0 +26.6,0.99,8.130,44.2,26.4,0.99,8.100,44.6 +25.9,0.99,8.100,44.6,25.7,0.99,8.090,44.8 +25.5,0.99,7.310,48.0,25.3,0.99,7.320,48.4 +25.4,0.99,6.930,38.0,25.2,0.99,6.920,38.4 +25.8,0.99,5.340,52.4,25.6,0.99,5.360,52.6 +26.3,0.99,3.980,69.6,26.1,0.99,3.990,69.5 +27.0,0.99,2.160,60.7,26.9,0.99,2.160,60.0 +27.4,0.99,1.710,98.8,27.2,0.99,1.690,98.0 +27.5,0.99,1.640,130.7,27.3,0.99,1.610,130.3 +27.6,0.99,2.700,150.7,27.4,0.99,2.670,150.7 +27.8,0.99,2.730,150.3,27.6,0.99,2.690,149.8 +28.1,0.99,2.200,136.8,27.9,0.99,2.190,136.4 +27.8,0.99,3.130,141.7,27.6,0.99,3.120,141.4 +27.9,0.99,2.500,141.7,27.7,0.99,2.490,141.1 +27.9,0.99,1.600,123.3,27.7,0.99,1.600,122.5 +27.9,0.99,1.100,71.5,27.8,0.99,1.110,71.2 +27.9,0.99,1.880,20.7,27.7,0.99,1.930,20.4 +27.8,0.99,3.570,10.3,27.6,0.99,3.570,10.6 +27.4,0.99,3.170,29.5,27.3,0.99,3.280,31.7 +27.6,0.99,6.810,46.0,27.4,0.99,6.860,46.6 +27.1,0.99,5.730,50.4,27.0,0.99,5.750,51.3 +26.1,0.99,5.680,34.3,25.9,0.99,5.690,36.1 +25.7,0.99,6.100,35.9,25.5,0.99,6.090,37.2 +25.4,0.99,5.960,32.5,25.2,0.99,5.950,33.3 +25.0,0.99,7.170,32.0,24.8,0.99,7.160,32.5 +25.1,0.99,7.400,42.2,24.9,0.99,7.400,42.6 +25.1,0.99,7.390,43.2,24.9,0.99,7.390,43.4 +25.2,0.99,6.830,46.0,25.0,0.99,6.840,46.3 +25.7,0.99,5.290,52.0,25.5,0.99,5.320,52.0 +26.2,0.99,4.470,83.0,26.0,0.99,4.480,82.9 +26.9,0.99,3.040,86.3,26.7,0.99,3.030,85.7 +27.1,0.99,3.230,104.8,26.9,0.99,3.220,104.4 +27.2,0.99,3.610,115.5,27.0,0.99,3.590,115.3 +27.3,0.99,2.390,134.9,27.1,0.99,2.380,134.6 +27.4,0.99,2.420,135.4,27.3,0.99,2.420,135.0 +27.5,0.99,3.270,143.9,27.3,0.99,3.260,143.7 +27.5,0.99,2.950,159.3,27.3,0.99,2.940,159.0 +27.4,0.99,2.630,154.0,27.3,0.99,2.630,153.7 +27.4,0.99,1.950,140.3,27.2,0.99,1.950,139.8 +27.4,0.99,1.910,134.4,27.2,0.99,1.920,134.0 +27.4,0.99,1.940,122.6,27.2,0.99,1.950,122.3 +27.4,0.99,1.910,87.9,27.2,0.99,1.920,87.8 +27.2,0.99,2.680,90.8,27.1,0.99,2.690,90.7 +27.1,0.99,2.840,75.3,26.9,0.99,2.850,75.4 +27.1,0.99,2.950,70.4,26.9,0.99,2.970,70.7 +27.1,0.99,3.660,60.5,26.9,0.99,3.690,60.9 +26.8,0.99,4.220,31.8,26.6,0.99,4.190,33.4 +26.0,0.99,5.940,23.9,25.9,0.99,5.920,24.8 +25.7,0.99,7.210,34.6,25.5,0.99,7.170,35.0 +25.6,0.99,7.710,44.6,25.4,0.99,7.740,45.3 +26.9,0.99,8.890,61.8,26.8,0.99,8.930,62.0 +26.7,0.99,7.350,60.2,26.5,0.99,7.380,60.4 +26.9,0.99,7.900,70.6,26.7,0.99,7.940,70.8 +27.0,0.99,6.490,81.1,26.8,0.99,6.530,81.2 +27.5,0.99,7.040,99.2,27.3,0.99,7.050,99.1 +27.6,0.99,7.360,111.7,27.4,0.99,7.360,111.5 +26.7,0.99,5.010,135.8,26.5,0.99,4.990,135.4 +26.9,0.99,3.940,139.0,26.7,0.99,3.960,138.4 +27.2,0.99,3.920,122.8,27.0,0.99,3.930,122.5 +27.3,0.99,4.870,133.5,27.1,0.99,4.880,133.3 +27.1,0.99,4.620,137.1,26.9,0.99,4.610,137.1 +27.1,0.99,3.920,146.0,26.9,0.99,3.920,145.8 +26.8,0.99,2.540,156.2,26.6,0.99,2.530,156.0 +26.7,0.99,3.380,155.4,26.5,0.99,3.370,155.1 +26.7,0.99,3.650,153.2,26.5,0.99,3.660,152.9 +26.7,0.99,4.360,172.6,26.5,0.99,4.370,172.4 +26.7,0.99,3.760,182.5,26.5,0.99,3.760,182.3 +26.7,0.99,3.410,189.8,26.5,0.99,3.440,189.9 +26.8,0.99,3.890,180.0,26.6,0.99,3.900,180.3 +26.8,0.99,2.550,177.5,26.6,0.99,2.570,177.0 +25.8,0.99,5.430,185.1,25.8,0.99,4.950,184.2 +26.1,0.99,2.600,197.8,26.1,0.99,2.500,188.6 +25.8,0.99,4.960,214.2,25.7,0.99,4.700,210.1 +25.7,0.99,2.810,196.3,25.6,0.99,2.950,191.3 +26.1,0.99,0.350,137.6,26.1,0.99,0.810,161.4 +26.1,0.99,1.330,43.6,26.0,0.99,1.370,49.4 +25.4,0.99,1.770,35.1,25.3,0.99,1.720,36.0 +25.9,0.99,1.550,31.4,25.7,0.99,1.540,32.6 +26.8,0.99,2.550,136.8,26.6,0.99,2.540,136.8 +26.8,0.99,2.550,98.9,26.7,0.99,2.560,99.3 +27.0,0.99,2.790,103.0,26.8,0.99,2.790,103.4 +27.2,0.99,2.130,114.3,27.0,0.99,2.150,114.5 +27.6,0.99,2.580,156.6,27.4,0.99,2.610,156.5 +27.8,0.99,3.510,147.1,27.6,0.99,3.520,147.1 +27.5,0.99,3.600,131.5,27.3,0.99,3.610,131.5 +27.6,0.99,2.570,129.3,27.4,0.99,2.570,129.4 +27.4,0.99,3.260,118.1,27.3,0.99,3.270,117.9 +27.6,0.99,3.540,118.7,27.4,0.99,3.560,118.7 +27.3,0.99,4.850,127.3,27.1,0.99,4.860,127.4 +27.3,0.99,3.200,132.3,27.1,0.99,3.210,132.3 +27.1,0.99,3.400,132.5,26.9,0.99,3.410,132.5 +27.1,0.99,3.560,129.1,26.9,0.99,3.600,129.0 +27.2,0.99,2.990,146.7,27.0,0.99,3.020,146.3 +27.2,0.99,1.930,130.4,27.0,0.99,1.950,130.0 +26.8,0.99,5.320,102.0,26.6,0.99,5.280,101.6 +26.2,0.99,5.790,92.1,26.1,0.99,5.740,92.6 +26.7,0.99,4.020,102.1,26.5,0.99,4.060,102.5 +27.2,0.99,3.180,90.8,27.0,0.99,3.230,91.0 +26.6,0.99,5.640,68.8,26.5,0.99,5.490,69.4 +25.5,0.99,6.050,82.0,25.5,0.99,6.110,84.6 +25.3,0.99,7.320,71.3,25.1,0.99,7.280,71.7 +25.2,0.99,8.050,94.0,25.0,0.99,8.050,94.3 +26.8,0.99,6.320,92.2,26.6,0.99,6.340,92.3 +27.2,0.99,5.580,101.5,27.0,0.99,5.600,101.7 +27.2,0.99,6.060,111.7,27.0,0.99,6.070,111.9 +27.3,0.99,6.190,111.0,27.1,0.99,6.180,111.1 +27.5,0.99,6.270,125.5,27.3,0.99,6.270,125.6 +27.4,0.99,4.310,101.7,27.3,0.99,4.310,101.7 +27.3,0.99,5.750,100.5,27.1,0.99,5.730,100.5 +27.2,0.99,4.860,97.9,27.0,0.99,4.870,97.9 +27.4,0.99,4.920,107.9,27.2,0.99,4.950,108.1 +27.1,0.99,5.110,122.2,26.9,0.99,5.100,122.3 +27.4,0.99,4.870,127.3,27.2,0.99,4.950,127.2 +27.5,0.99,5.140,130.8,27.3,0.99,5.160,130.8 +27.4,0.99,4.910,126.0,27.3,0.99,4.940,125.8 +27.6,0.99,4.800,120.0,27.5,0.99,4.810,120.1 +27.6,0.99,4.800,126.6,27.4,0.99,4.830,126.8 +27.5,0.99,5.690,133.7,27.3,0.99,5.710,133.8 +27.5,0.99,3.090,158.5,27.3,0.99,3.090,158.5 +26.4,0.99,2.720,204.2,26.2,0.99,2.930,201.2 +25.9,0.99,0.530,186.0,25.7,0.99,0.720,172.9 +25.1,0.99,3.620,16.9,24.9,0.99,3.600,18.3 +25.1,0.99,3.110,255.5,24.9,0.99,2.890,256.6 +25.8,0.99,0.930,272.9,25.6,0.99,0.760,279.2 +26.1,0.99,1.500,18.7,25.9,0.99,1.550,25.7 +26.0,0.99,8.180,96.9,25.8,0.99,8.130,96.9 +26.4,0.99,8.330,114.4,26.2,0.99,8.290,114.4 +27.1,0.99,5.650,106.2,26.9,0.99,5.660,106.3 +27.4,0.99,5.110,125.5,27.2,0.99,5.120,125.5 +27.8,0.99,5.020,113.2,27.6,0.99,5.020,113.1 +27.5,0.99,5.140,91.9,27.3,0.99,5.140,92.0 +27.5,0.99,4.150,91.2,27.3,0.99,4.190,91.3 +27.8,0.99,4.550,103.1,27.6,0.99,4.580,103.0 +27.7,0.99,5.830,121.0,27.5,0.99,5.840,120.3 +27.8,0.99,5.730,111.1,27.6,0.99,5.730,111.2 +27.9,0.99,6.440,129.2,27.7,0.99,6.440,129.2 +28.1,0.99,5.220,121.7,27.9,0.99,5.210,122.1 +27.8,0.99,5.510,126.8,27.6,0.99,5.510,126.7 +27.7,0.99,4.270,98.3,27.5,0.99,4.310,98.3 +27.9,0.99,4.550,85.3,27.7,0.99,4.570,85.8 +27.9,0.99,4.370,103.1,27.8,0.99,4.370,103.3 +27.9,0.99,3.830,94.2,27.7,0.99,3.850,93.9 +27.8,0.99,3.500,87.0,27.6,0.99,3.500,86.4 +27.7,0.99,4.110,71.0,27.5,0.99,4.080,71.6 +27.6,0.99,4.520,45.2,27.4,0.99,4.570,45.9 +26.6,0.99,5.890,29.6,26.5,0.99,5.870,32.1 +26.4,0.99,6.030,31.9,26.2,0.99,5.980,32.2 +26.6,0.99,5.430,29.0,26.4,0.99,5.420,29.1 +27.1,0.99,4.330,28.7,26.9,0.99,4.390,29.0 +27.7,0.99,3.890,59.1,27.5,0.99,3.940,59.1 +29.1,0.99,3.590,61.3,28.9,0.99,3.600,61.0 +29.4,0.99,3.960,89.1,29.2,0.99,3.940,88.7 +29.4,0.99,3.260,105.8,29.2,0.99,3.260,105.4 +29.0,0.99,4.020,116.5,28.9,0.99,4.010,116.2 +29.0,0.99,3.340,121.9,28.8,0.99,3.340,121.6 +28.9,0.99,3.390,139.5,28.7,0.99,3.390,139.2 +28.8,0.99,3.250,149.8,28.6,0.99,3.250,149.5 +28.7,0.99,3.370,144.7,28.5,0.99,3.380,144.5 +28.5,0.99,3.830,122.5,28.3,0.99,3.840,122.4 +28.3,0.99,3.980,111.2,28.1,0.99,4.000,111.2 +28.1,0.99,2.740,105.2,27.9,0.99,2.750,105.3 +28.2,0.99,3.030,97.6,28.0,0.99,3.040,97.6 +28.2,0.99,2.530,105.5,28.0,0.99,2.570,105.3 +27.8,0.99,3.540,70.2,27.6,0.99,3.530,69.2 +27.4,0.99,2.960,82.2,27.3,0.99,3.180,80.1 +27.3,0.99,2.130,53.2,27.2,0.99,2.360,55.9 +26.6,0.99,4.650,11.4,26.5,0.99,4.720,15.8 +26.4,0.99,6.760,28.0,26.3,0.99,6.740,28.7 +26.1,0.99,7.430,29.5,25.9,0.99,7.410,30.1 +26.2,0.99,7.130,42.9,26.1,0.99,7.130,43.4 +26.7,0.99,8.260,46.3,26.5,0.99,8.280,46.5 +26.9,0.99,8.420,49.7,26.8,0.99,8.440,49.9 +27.1,0.99,8.320,60.5,26.9,0.99,8.350,60.5 +27.1,0.99,7.350,67.3,26.9,0.99,7.370,67.4 +27.8,0.99,7.370,73.7,27.6,0.99,7.390,73.6 +28.0,0.99,6.880,94.4,27.8,0.99,6.910,94.2 +28.0,0.99,7.040,99.1,27.8,0.99,7.060,98.9 +28.1,0.99,6.780,104.2,27.9,0.99,6.800,103.9 +28.1,0.99,6.550,101.9,27.9,0.99,6.580,101.8 +28.1,0.99,7.620,105.4,27.9,0.99,7.640,105.3 +27.8,0.99,7.800,94.9,27.6,0.99,7.840,94.8 +27.8,0.99,7.820,90.6,27.6,0.99,7.860,90.5 +27.7,0.99,7.750,87.4,27.5,0.99,7.780,87.3 +27.7,0.99,8.490,81.1,27.5,0.99,8.520,81.3 +27.9,0.99,8.130,81.9,27.7,0.99,8.160,81.9 +27.1,0.99,6.480,95.5,27.1,0.99,6.380,96.5 +25.7,0.99,8.740,97.9,25.5,0.99,8.730,98.1 +26.1,0.99,6.480,138.7,25.9,0.99,6.710,137.3 +25.6,0.99,9.670,137.5,25.5,0.99,9.770,137.1 +25.1,0.99,3.540,189.7,24.9,0.99,3.580,189.1 +25.4,0.99,0.760,85.7,25.3,0.99,0.770,89.9 +25.1,0.99,5.440,126.5,24.9,0.99,5.420,126.6 +25.3,0.99,4.120,141.2,25.1,0.99,4.120,140.9 +24.7,0.99,6.210,164.8,24.5,0.99,6.220,164.6 +24.6,0.99,2.190,147.0,24.6,0.99,2.660,137.7 +25.1,0.99,1.750,315.8,25.0,0.99,1.660,317.5 +24.5,0.99,2.480,140.1,24.4,0.99,2.420,138.6 +24.7,0.99,4.410,158.1,24.5,0.99,4.440,156.7 +25.8,0.99,4.490,152.3,25.6,0.99,4.530,149.9 +25.6,0.99,1.300,137.1,25.4,0.99,1.320,136.1 +24.8,0.99,5.670,125.7,24.7,0.99,5.640,125.2 +25.2,0.99,7.650,106.9,25.0,0.99,7.690,106.9 +25.7,0.99,6.880,119.0,25.5,0.99,6.880,119.1 +25.5,0.99,6.520,149.5,25.3,0.99,6.500,149.1 +24.5,0.99,6.780,145.4,24.3,0.99,6.770,146.0 +25.4,0.99,6.860,142.0,25.3,0.99,6.800,142.3 +26.0,0.99,7.460,133.1,25.8,0.99,7.490,133.2 +25.1,0.99,4.810,143.0,24.9,0.99,4.890,141.9 +24.5,0.99,3.060,149.1,24.3,0.99,3.160,147.8 +26.3,0.99,6.410,158.9,26.1,0.99,6.450,158.1 +25.8,0.99,6.320,168.8,25.7,0.99,6.350,168.8 +25.6,0.99,7.280,148.0,25.4,0.99,7.430,147.4 +25.7,0.99,3.710,115.5,25.6,0.99,3.850,116.7 +26.1,0.99,5.310,154.0,25.9,0.99,5.420,153.6 +26.1,0.99,8.170,136.0,25.9,0.99,8.180,135.9 +26.1,0.99,6.100,147.5,25.9,0.99,6.160,147.6 +25.1,0.99,9.490,145.8,24.9,0.99,9.440,146.3 +24.9,0.99,5.390,142.1,24.7,0.99,5.400,142.0 +25.3,0.99,5.490,154.5,25.1,0.99,5.490,154.7 +25.7,0.99,5.970,147.2,25.5,0.99,5.990,147.5 +24.9,0.99,5.630,129.6,24.7,0.99,5.650,129.4 +24.8,0.99,5.290,116.0,24.6,0.99,5.260,116.9 +24.3,0.99,4.540,245.6,24.1,0.99,4.480,244.9 +23.8,1.00,5.680,195.4,23.6,1.00,5.820,194.3 +23.4,0.99,7.210,190.3,23.2,0.99,7.300,189.9 +24.9,0.99,5.100,165.3,24.7,0.99,5.170,164.8 +25.6,0.99,4.520,151.3,25.4,0.99,4.530,151.2 +25.5,0.99,3.830,131.8,25.4,0.99,3.860,131.4 +26.0,0.99,4.520,87.7,25.8,0.99,4.490,88.5 +26.2,0.99,4.540,96.7,26.0,0.99,4.540,96.8 +26.4,0.99,4.380,100.2,26.2,0.99,4.380,99.9 +26.8,0.99,3.990,108.3,26.6,0.99,4.000,108.4 +27.0,0.99,4.730,106.4,26.8,0.99,4.730,106.5 +27.0,0.99,5.240,103.2,26.8,0.99,5.260,103.3 +26.8,0.99,5.670,101.3,26.6,0.99,5.680,101.4 +26.9,0.99,6.570,101.6,26.7,0.99,6.590,101.8 +27.0,0.99,7.270,108.9,26.8,0.99,7.310,108.6 +24.6,0.99,16.910,155.5,24.4,0.99,16.970,155.3 +25.1,1.00,4.810,155.6,24.9,1.00,5.250,153.8 +24.9,0.99,2.000,351.4,24.9,0.99,1.820,357.2 +25.5,0.99,4.080,315.9,25.3,0.99,3.930,313.5 +24.6,0.99,7.990,359.3,24.7,0.99,7.710,3.3 +25.0,0.99,7.410,9.3,25.1,0.99,6.830,13.1 +26.4,0.99,3.810,11.7,26.6,0.99,3.610,19.0 +26.8,0.99,3.580,43.8,26.6,0.99,3.550,44.6 +26.7,0.99,2.180,69.5,26.5,0.99,2.190,71.4 +27.2,0.99,3.460,75.3,27.0,0.99,3.480,75.7 +27.8,0.99,4.120,112.1,27.6,0.99,4.110,112.4 +27.4,0.99,3.700,117.6,27.2,0.99,3.690,117.4 +27.5,0.99,4.340,126.2,27.3,0.99,4.330,125.9 +27.5,0.99,2.630,128.8,27.3,0.99,2.650,128.4 +27.8,0.99,2.550,122.7,27.6,0.99,2.560,122.8 +27.5,0.99,2.240,118.7,27.4,0.99,2.210,118.5 +27.6,0.99,3.130,126.2,27.4,0.99,3.130,126.1 +27.4,0.99,3.060,128.0,27.2,0.99,3.070,127.7 +27.5,0.99,3.160,117.4,27.3,0.99,3.170,117.4 +27.6,0.99,2.710,122.6,27.4,0.99,2.710,122.5 +27.6,0.99,2.950,118.8,27.4,0.99,2.960,118.7 +27.4,0.99,2.660,124.9,27.3,0.99,2.670,124.9 +27.3,0.99,2.920,113.7,27.1,0.99,2.930,113.5 +27.3,0.99,2.660,126.3,27.1,0.99,2.660,126.1 +27.3,0.99,2.080,115.1,27.1,0.99,2.090,115.2 +27.2,0.99,1.520,114.5,27.0,0.99,1.540,114.7 +27.2,0.99,1.230,79.3,27.0,0.99,1.250,80.5 +27.1,0.99,1.850,79.0,27.0,0.99,1.890,81.5 +26.4,0.99,2.910,44.0,26.3,0.99,2.760,50.7 +26.4,0.99,3.030,40.3,26.2,0.99,2.970,42.6 +26.6,0.99,3.530,41.9,26.4,0.99,3.500,43.2 +26.8,0.99,3.190,46.2,26.6,0.99,3.190,46.8 +27.0,0.99,2.140,61.9,26.8,0.99,2.140,62.4 +27.7,0.99,2.120,112.2,27.5,0.99,2.130,112.0 +27.9,0.99,2.700,160.5,27.8,0.99,2.690,160.4 +28.1,0.99,2.920,175.7,27.9,0.99,2.920,175.5 +28.3,0.99,3.770,176.7,28.1,0.99,3.770,176.5 +28.0,0.99,5.940,178.4,27.9,0.99,5.920,178.3 +28.0,0.99,4.460,190.4,27.8,0.99,4.440,190.5 +27.9,0.99,4.630,187.4,27.8,0.99,4.630,187.2 +27.9,0.99,4.610,192.9,27.7,0.99,4.590,192.9 +28.1,0.99,4.940,189.1,27.9,0.99,4.950,188.9 +28.1,0.99,3.890,192.9,28.0,0.99,3.900,192.7 +28.0,0.99,4.450,197.7,27.8,0.99,4.450,197.6 +27.9,0.99,3.750,196.8,27.7,0.99,3.750,196.8 +27.7,0.99,3.820,197.4,27.5,0.99,3.830,197.3 +27.6,0.99,3.720,206.8,27.4,0.99,3.730,206.6 +27.5,0.99,3.910,204.2,27.3,0.99,3.920,204.0 +27.4,0.99,3.590,224.4,27.2,0.99,3.610,224.1 +27.2,0.99,3.230,249.5,27.0,0.99,3.240,248.7 +26.6,0.99,4.050,273.5,26.4,0.99,4.040,271.9 +26.3,0.99,3.930,284.8,26.2,0.99,4.140,281.7 +26.3,0.99,4.120,279.5,26.3,0.99,4.400,276.3 +26.4,0.99,4.230,282.5,26.4,0.99,4.580,280.2 +26.7,0.99,3.440,288.0,26.6,0.99,3.500,288.1 +26.9,0.99,2.230,288.4,26.7,0.99,2.240,289.9 +27.1,0.99,0.790,269.3,26.9,0.99,0.800,270.1 +27.7,0.99,1.190,147.0,27.6,0.99,1.140,146.2 +28.0,0.99,3.270,178.5,27.9,0.99,3.190,178.9 +28.3,0.99,5.510,189.0,28.1,0.99,5.460,189.2 +28.3,0.99,6.410,187.0,28.1,0.99,6.390,187.0 +28.3,0.99,6.000,184.9,28.1,0.99,5.990,185.0 +28.2,0.99,6.680,191.9,28.0,0.99,6.680,192.0 +28.1,0.99,6.180,186.2,27.9,0.99,6.180,186.2 +28.0,0.99,5.860,188.2,27.9,0.99,5.860,188.4 +27.4,0.99,5.560,185.2,27.2,0.99,5.560,185.0 +27.4,0.99,5.620,186.4,27.2,0.99,5.620,186.2 +27.3,0.99,5.720,184.2,27.1,0.99,5.740,184.0 +27.4,0.99,5.170,185.2,27.3,0.99,5.180,184.8 +27.5,0.99,4.220,180.6,27.4,0.99,4.220,181.3 +27.3,0.99,4.190,195.3,27.1,0.99,4.200,195.0 +27.3,0.99,4.290,200.6,27.1,0.99,4.290,200.8 +27.2,0.99,3.420,221.3,27.0,0.99,3.450,221.3 +27.3,0.99,3.610,229.9,27.1,0.99,3.620,229.8 +27.2,0.99,2.860,251.1,27.0,0.99,2.870,250.9 +26.8,0.99,2.940,273.4,26.7,0.99,2.900,272.2 +26.4,0.99,2.740,284.1,26.3,0.99,2.790,278.9 +26.4,0.99,3.140,288.5,26.3,0.99,3.170,286.4 +26.5,0.99,2.400,283.9,26.3,0.99,2.420,282.7 +26.7,0.99,1.940,239.3,26.5,0.99,1.930,239.3 +27.1,0.99,1.310,218.5,26.9,0.99,1.280,219.5 +27.7,0.99,1.660,160.7,27.5,0.99,1.620,160.8 +27.9,0.99,2.520,162.3,27.7,0.99,2.510,162.1 +28.0,0.99,3.950,158.0,27.9,0.99,3.940,157.9 +28.0,0.99,5.130,153.4,27.9,0.99,5.110,153.3 +27.7,0.99,6.360,155.8,27.5,0.99,6.340,156.0 +28.0,0.99,5.720,158.7,27.8,0.99,5.700,158.6 +27.8,0.99,6.030,160.0,27.6,0.99,6.030,159.9 +27.8,0.99,6.480,172.2,27.6,0.99,6.490,172.2 +27.6,0.99,6.430,175.5,27.4,0.99,6.430,175.5 +27.6,0.99,5.550,174.8,27.4,0.99,5.550,175.1 +27.6,0.99,5.930,181.9,27.4,0.99,5.930,182.0 +27.6,0.99,5.440,180.9,27.4,0.99,5.450,180.8 +27.4,0.99,5.660,183.3,27.2,0.99,5.660,183.6 +27.3,0.99,4.790,192.7,27.1,0.99,4.810,192.7 +27.4,0.99,5.010,193.8,27.2,0.99,5.040,193.7 +27.4,0.99,3.790,201.1,27.2,0.99,3.810,200.8 +27.4,0.99,3.790,220.8,27.2,0.99,3.790,220.9 +27.3,0.99,4.470,233.4,27.2,0.99,4.480,233.1 +27.3,0.99,2.970,236.5,27.1,0.99,2.990,237.1 +26.9,0.99,2.340,272.6,26.7,0.99,2.320,269.5 +26.5,0.99,1.650,302.5,26.4,0.99,1.600,294.6 +26.5,0.99,1.970,295.6,26.3,0.99,1.970,293.8 +26.7,0.99,1.570,275.4,26.5,0.99,1.580,274.2 +26.8,0.99,1.850,224.7,26.6,0.99,1.870,224.0 +27.4,0.99,2.130,190.7,27.2,0.99,2.140,190.9 +27.6,0.99,2.450,177.2,27.4,0.99,2.440,177.4 +27.7,0.99,3.070,161.3,27.5,0.99,3.070,161.5 +27.8,0.99,4.120,149.9,27.6,0.99,4.130,150.1 +28.1,0.99,4.730,167.5,27.9,0.99,4.720,167.5 +27.9,0.99,4.740,168.6,27.7,0.99,4.740,168.7 +27.8,0.99,4.270,170.5,27.6,0.99,4.280,170.4 +27.8,0.99,4.720,178.5,27.6,0.99,4.730,178.6 +27.7,0.99,5.570,172.7,27.5,0.99,5.590,172.6 +27.7,0.99,4.670,173.0,27.5,0.99,4.670,173.0 +27.6,0.99,5.470,174.5,27.4,0.99,5.490,174.5 +27.6,0.99,5.380,164.2,27.4,0.99,5.420,164.5 +27.6,0.99,5.970,184.5,27.4,0.99,6.000,184.7 +27.6,0.99,5.420,196.0,27.5,0.99,5.450,196.0 +27.5,0.99,4.810,206.9,27.3,0.99,4.830,206.4 +27.4,0.99,3.780,206.5,27.3,0.99,3.820,206.2 +27.2,0.99,2.990,204.6,27.1,0.99,3.180,207.6 +27.0,0.99,4.800,260.1,26.8,0.99,4.800,259.6 +26.9,0.99,4.060,266.7,26.8,0.99,4.400,264.8 +26.9,0.99,3.780,276.8,26.8,0.99,3.960,275.7 +26.8,0.99,2.750,297.8,26.8,0.99,2.930,295.4 +26.9,0.99,1.630,310.7,26.8,0.99,1.900,300.7 +27.0,0.99,1.550,157.4,26.8,0.99,1.530,161.3 +27.4,0.99,1.660,204.8,27.3,0.99,1.750,210.5 +28.1,0.99,2.700,195.4,27.9,0.99,2.700,196.0 +28.2,0.99,5.050,180.7,28.0,0.99,5.050,181.0 +28.3,0.99,7.070,171.1,28.1,0.99,7.080,171.3 +28.2,0.99,9.380,193.9,28.0,0.99,9.400,194.0 +28.0,0.99,8.490,197.3,27.8,0.99,8.520,197.7 +28.2,0.99,6.800,194.3,28.1,0.99,6.810,194.5 +28.0,0.99,7.500,199.7,27.8,0.99,7.520,199.8 +27.9,0.99,7.630,203.1,27.7,0.99,7.660,203.1 +27.9,0.99,8.460,201.0,27.7,0.99,8.480,201.0 +27.8,0.99,7.880,208.9,27.6,0.99,7.910,208.8 +27.9,0.99,7.470,200.1,27.7,0.99,7.500,200.1 +28.0,0.99,6.880,207.9,27.8,0.99,6.920,207.7 +27.9,0.99,7.540,202.6,27.7,0.99,7.580,202.5 +27.7,0.99,7.400,197.6,27.5,0.99,7.440,197.5 +28.1,0.99,8.340,204.7,27.9,0.99,8.380,204.7 +27.6,0.99,7.480,201.0,27.4,0.99,7.510,201.3 +27.7,0.99,6.420,219.1,27.5,0.99,6.450,219.1 +27.8,0.99,5.670,223.0,27.6,0.99,5.720,222.9 +27.8,0.99,5.730,234.3,27.6,0.99,5.870,234.4 +27.5,0.99,4.380,253.2,27.3,0.99,4.510,252.5 +27.1,0.99,4.120,277.4,26.9,0.99,4.300,274.6 +27.2,0.99,3.430,282.5,27.0,0.99,3.600,280.9 +27.5,0.99,2.490,240.1,27.4,0.99,2.890,243.4 +27.7,0.99,0.980,228.3,27.5,0.99,1.000,229.3 +28.1,0.99,2.520,187.8,27.9,0.99,2.520,188.2 +28.4,0.99,3.590,211.6,28.2,0.99,3.590,211.8 +28.4,0.99,4.710,211.0,28.2,0.99,4.710,211.2 +28.5,0.99,5.650,201.6,28.3,0.99,5.650,201.7 +28.4,0.99,7.300,200.3,28.2,0.99,7.310,200.3 +28.5,0.99,7.270,203.1,28.3,0.99,7.280,203.2 +28.1,0.99,8.050,199.3,27.9,0.99,8.070,199.4 +27.5,0.99,8.250,205.5,27.3,0.99,8.270,205.6 +27.6,0.99,7.400,211.1,27.4,0.99,7.440,211.1 +27.5,0.99,6.430,213.1,27.3,0.99,6.460,213.2 +27.5,0.99,6.900,217.0,27.3,0.99,6.900,216.9 +27.6,0.99,6.610,225.3,27.4,0.99,6.620,225.3 +27.7,0.99,5.710,234.5,27.5,0.99,5.770,234.4 +27.6,0.99,5.930,236.3,27.4,0.99,5.970,236.1 +27.4,0.99,4.620,250.9,27.2,0.99,4.670,250.7 +27.6,0.99,5.020,269.0,27.4,0.99,5.070,268.2 +26.7,0.99,4.990,278.6,26.6,0.99,5.010,277.9 +26.4,0.99,4.730,284.3,26.3,0.99,4.760,284.0 +26.1,0.99,4.670,282.9,25.9,0.99,4.680,282.8 +26.0,0.99,4.510,294.3,25.8,0.99,4.570,293.9 +26.1,0.99,4.080,304.2,26.0,0.99,4.130,304.4 +26.4,0.99,2.070,312.3,26.3,0.99,2.090,310.8 +26.7,0.99,1.180,338.4,26.5,0.99,1.190,336.9 +27.1,0.99,0.570,170.1,26.9,0.99,0.520,170.2 +27.8,0.99,1.750,199.2,27.6,0.99,1.730,200.1 +28.2,0.99,3.260,187.8,28.0,0.99,3.230,188.4 +28.7,0.99,4.870,207.8,28.5,0.99,4.860,208.1 +28.8,0.99,6.110,207.0,28.6,0.99,6.100,207.2 +28.7,0.99,5.380,205.9,28.5,0.99,5.370,206.0 +28.4,0.99,5.860,196.3,28.2,0.99,5.850,196.3 +28.1,0.99,6.880,203.7,27.9,0.99,6.870,203.7 +28.1,0.99,4.970,204.3,27.9,0.99,4.960,204.4 +27.9,0.99,4.870,194.6,27.7,0.99,4.870,194.5 +27.8,0.99,4.500,204.2,27.6,0.99,4.500,204.1 +27.8,0.99,4.440,186.9,27.6,0.99,4.440,187.1 +27.7,0.99,4.020,172.1,27.5,0.99,4.020,172.5 +27.5,0.99,4.160,181.8,27.3,0.99,4.180,182.1 +27.4,0.99,2.820,192.7,27.3,0.99,2.830,192.5 +27.4,0.99,1.790,189.8,27.2,0.99,1.790,189.8 +27.4,0.99,1.240,181.6,27.2,0.99,1.260,180.8 +27.3,0.99,1.480,201.5,27.1,0.99,1.490,201.5 +27.2,0.99,0.340,222.2,27.0,0.99,0.350,220.9 +27.1,0.99,1.210,318.8,26.9,0.99,1.170,319.2 +26.9,0.99,2.050,9.6,26.8,0.99,2.020,9.6 +26.9,0.99,1.750,30.4,26.7,0.99,1.730,31.0 +26.9,0.99,1.550,331.6,26.7,0.99,1.540,331.3 +27.0,0.99,1.050,275.6,26.8,0.99,1.070,274.9 +24.7,0.99,7.900,215.7,24.6,0.99,7.910,214.3 +25.4,0.99,3.750,358.7,25.2,0.99,3.650,359.0 +26.2,0.99,4.000,76.7,26.0,0.99,4.060,77.7 +26.8,0.99,3.730,108.1,26.6,0.99,3.740,108.2 +27.2,0.99,3.820,101.6,27.0,0.99,3.850,102.2 +27.7,0.99,3.480,100.7,27.6,0.99,3.470,100.2 +27.4,0.99,3.940,133.2,27.2,0.99,3.900,132.7 +27.1,0.99,3.240,144.8,26.9,0.99,3.220,144.3 +27.3,0.99,3.160,92.5,27.2,0.99,3.150,92.7 +27.5,0.99,3.590,95.0,27.3,0.99,3.600,95.1 +27.5,0.99,4.020,105.0,27.3,0.99,4.020,105.0 +27.4,0.99,4.260,126.3,27.2,0.99,4.260,126.1 +27.3,0.99,4.220,133.8,27.2,0.99,4.210,133.7 +27.3,0.99,3.950,121.1,27.1,0.99,3.950,121.2 +27.5,0.99,2.910,131.5,27.3,0.99,2.940,131.5 +27.5,0.99,2.710,131.3,27.3,0.99,2.700,131.6 +27.4,0.99,2.410,125.3,27.2,0.99,2.450,125.1 +27.5,0.99,3.440,109.5,27.3,0.99,3.440,109.2 +27.6,0.99,2.380,119.9,27.4,0.99,2.400,119.7 +27.4,0.99,1.690,122.0,27.3,0.99,1.640,122.1 +25.9,0.99,4.240,85.2,25.8,0.99,4.330,83.2 +24.7,0.99,2.170,128.5,24.6,0.99,2.390,131.8 +25.4,0.99,0.770,155.6,25.2,0.99,0.830,152.9 +25.8,0.99,1.260,98.4,25.6,0.99,1.280,96.8 +26.3,0.99,2.470,68.2,26.1,0.99,2.520,68.8 +27.0,0.99,3.310,96.0,26.8,0.99,3.360,96.1 +27.6,0.99,4.440,101.5,27.4,0.99,4.500,101.6 +27.7,0.99,3.390,124.8,27.5,0.99,3.370,124.8 +28.3,0.99,4.280,130.7,28.1,0.99,4.280,130.8 +28.2,0.99,4.370,138.6,28.0,0.99,4.360,138.6 +28.0,0.99,3.550,122.5,27.9,0.99,3.540,122.6 +27.8,0.99,2.820,128.5,27.6,0.99,2.840,128.3 +27.8,0.99,3.430,120.9,27.6,0.99,3.430,121.0 +27.8,0.99,3.350,96.5,27.6,0.99,3.370,96.8 +27.8,0.99,3.230,113.8,27.6,0.99,3.240,114.3 +27.8,0.99,2.090,101.3,27.6,0.99,2.090,101.3 +27.9,0.99,2.520,125.4,27.7,0.99,2.530,125.4 +27.8,0.99,1.490,125.6,27.6,0.99,1.520,125.5 +27.8,0.99,2.100,105.3,27.6,0.99,2.100,105.8 +27.7,0.99,1.870,93.6,27.5,0.99,1.890,94.2 +27.6,0.99,2.350,87.4,27.4,0.99,2.360,88.1 +27.6,0.99,1.790,86.3,27.4,0.99,1.800,85.5 +27.7,0.99,2.420,68.2,27.5,0.99,2.430,69.3 +27.1,0.99,3.490,16.2,26.9,0.99,3.400,17.7 +26.4,0.99,5.570,16.3,26.2,0.99,5.510,16.9 +26.6,0.99,7.190,44.0,26.4,0.99,7.180,44.1 +27.3,0.99,7.000,46.6,27.2,0.99,7.000,48.8 +27.1,0.99,5.720,48.9,27.0,0.99,5.700,52.6 +27.8,0.99,4.020,85.2,27.6,0.99,4.050,85.0 +28.0,0.99,4.340,106.9,27.8,0.99,4.310,106.6 +28.0,0.99,4.500,103.1,27.8,0.99,4.540,103.3 +28.0,0.99,4.740,108.8,27.9,0.99,4.730,109.0 +28.1,0.99,5.200,125.5,27.9,0.99,5.210,125.4 +28.1,0.99,5.240,118.8,27.9,0.99,5.260,118.9 +28.2,0.99,4.790,125.9,28.0,0.99,4.800,126.1 +28.1,0.99,4.070,123.8,27.9,0.99,4.080,123.6 +28.0,0.99,4.330,123.8,27.9,0.99,4.350,123.7 +27.9,0.99,4.670,123.1,27.7,0.99,4.680,122.7 +28.0,0.99,5.130,117.4,27.8,0.99,5.160,117.5 +28.0,0.99,5.310,112.1,27.8,0.99,5.310,112.0 +28.0,0.99,4.410,118.2,27.8,0.99,4.420,118.3 +27.9,0.99,3.750,136.6,27.8,0.99,3.780,136.6 +27.9,0.99,4.380,125.3,27.7,0.99,4.400,125.3 +27.9,0.99,4.850,128.9,27.7,0.99,4.860,129.0 +28.0,0.99,3.420,129.6,27.8,0.99,3.470,129.7 +28.0,0.99,3.500,136.4,27.9,0.99,3.480,136.3 +27.9,0.99,2.860,106.5,27.7,0.99,2.870,107.0 +27.8,0.99,3.680,135.7,27.6,0.99,3.750,135.9 +28.0,0.99,2.270,87.1,27.8,0.99,2.300,87.4 +26.1,0.99,0.880,82.2,25.9,0.99,0.920,73.2 +25.5,0.99,0.990,197.5,25.6,0.99,1.250,176.3 +25.8,0.99,4.590,44.8,25.6,0.99,4.660,45.5 +25.8,0.99,2.420,172.8,25.8,0.99,2.370,167.1 +25.8,0.99,6.790,122.0,25.7,0.99,6.790,121.9 +26.1,0.99,7.220,125.1,25.9,0.99,7.180,125.2 +26.3,0.99,9.450,138.7,26.1,0.99,9.480,138.8 +26.3,0.99,7.270,193.9,26.1,0.99,7.300,193.9 +26.2,0.99,5.760,206.7,26.0,0.99,5.760,206.4 +26.6,0.99,4.520,213.9,26.4,0.99,4.520,213.8 +26.7,0.99,0.280,246.7,26.5,0.99,0.270,248.6 +26.7,0.99,2.470,58.3,26.5,0.99,2.470,58.4 +25.0,0.99,12.390,82.3,24.9,0.99,12.410,82.3 +25.6,0.99,4.490,135.0,25.5,0.99,4.510,133.6 +26.2,0.99,5.280,119.2,26.0,0.99,5.220,119.0 +26.7,0.99,5.040,115.8,26.5,0.99,5.050,115.9 +27.0,0.99,5.890,116.7,26.8,0.99,5.910,116.7 +27.2,0.99,6.030,148.4,27.0,0.99,6.050,148.5 +27.4,0.99,5.090,139.2,27.2,0.99,5.120,139.0 +27.3,0.99,4.180,140.3,27.1,0.99,4.220,140.2 +27.3,0.99,2.340,132.7,27.1,0.99,2.390,132.3 +26.7,0.99,2.690,59.9,26.6,0.99,2.290,67.2 +24.7,0.99,5.210,194.6,24.5,0.99,5.030,194.3 +25.7,0.99,3.000,188.1,25.7,0.99,3.070,185.1 +25.7,0.99,2.760,234.6,25.6,0.99,2.740,233.2 +24.3,0.99,12.950,158.9,24.1,0.99,12.910,158.7 +23.3,0.99,4.750,153.3,23.1,0.99,4.730,152.9 +23.9,0.99,3.160,35.3,23.7,0.99,3.200,35.9 +24.7,0.99,3.360,24.8,24.5,0.99,3.310,24.8 +25.3,0.99,4.250,90.2,25.1,0.99,4.260,90.7 +25.8,0.99,4.660,156.2,25.6,0.99,4.600,155.9 +25.9,0.99,3.870,134.7,25.7,0.99,3.900,134.8 +26.4,0.99,4.300,139.1,26.2,0.99,4.330,139.2 +26.6,0.99,5.420,142.2,26.4,0.99,5.450,142.1 +26.6,0.99,5.150,129.0,26.4,0.99,5.180,129.0 +27.1,0.99,7.480,123.9,26.9,0.99,7.510,124.0 +27.1,0.99,5.510,124.3,26.9,0.99,5.520,124.2 +26.9,0.99,5.030,119.3,26.7,0.99,5.050,119.3 +26.9,0.99,6.090,124.9,26.7,0.99,6.140,124.5 +27.2,0.99,6.870,125.9,27.0,0.99,6.890,125.9 +27.0,0.99,5.380,123.1,26.8,0.99,5.410,123.1 +27.2,0.99,5.470,125.4,27.0,0.99,5.510,125.4 +27.3,0.99,6.320,118.6,27.1,0.99,6.350,118.7 +27.4,0.99,6.560,119.5,27.2,0.99,6.590,119.6 +27.3,0.99,6.640,114.4,27.1,0.99,6.670,114.5 +27.3,0.99,6.440,107.7,27.1,0.99,6.470,107.8 +27.3,0.99,5.710,98.7,27.1,0.99,5.740,98.9 +27.6,0.99,7.500,98.3,27.4,0.99,7.560,98.5 +25.2,0.99,9.320,125.3,25.2,0.99,9.480,126.8 +24.8,0.99,1.960,223.8,24.6,0.99,2.040,221.0 +23.9,0.99,8.110,149.2,23.8,0.99,8.190,148.7 +23.5,0.99,4.580,111.7,23.3,0.99,4.690,112.7 +24.9,0.99,9.920,90.3,24.7,0.99,9.900,90.4 +25.5,0.99,7.870,108.9,25.3,0.99,7.890,109.2 +26.7,0.99,8.530,117.2,26.6,0.99,8.700,117.9 +24.9,0.99,10.110,156.3,24.8,0.99,10.140,155.8 +25.4,0.99,8.710,149.6,25.2,0.99,8.710,149.5 +27.3,0.99,7.150,120.1,27.1,0.99,7.170,120.0 +26.3,0.99,9.780,129.1,26.1,0.99,9.790,129.0 +25.8,0.99,12.220,124.9,25.6,0.99,12.200,124.7 +26.1,0.99,9.500,126.4,25.9,0.99,9.540,126.3 +26.3,0.99,9.210,128.3,26.1,0.99,9.250,128.3 +26.8,0.99,7.620,130.6,26.6,0.99,7.650,130.4 +26.7,0.99,6.590,134.1,26.5,0.99,6.610,133.9 +26.7,0.99,6.760,126.1,26.5,0.99,6.790,126.1 +24.7,0.99,11.130,125.3,24.7,0.99,10.850,125.0 +25.6,0.99,7.730,110.9,25.4,0.99,7.740,111.1 +25.4,0.99,6.650,98.0,25.2,0.99,6.660,98.3 +25.3,0.99,9.860,103.5,25.1,0.99,9.840,103.8 +24.6,0.99,10.050,116.5,24.4,0.99,10.050,116.7 +24.7,0.99,6.430,85.1,24.5,0.99,6.410,84.7 +25.1,0.99,5.770,92.7,24.9,0.99,5.770,92.9 +25.6,0.99,5.250,82.3,25.4,0.99,5.250,82.7 +26.2,0.99,4.940,92.2,26.0,0.99,4.950,92.5 +26.4,0.99,5.320,91.2,26.2,0.99,5.340,91.3 +25.2,0.99,12.910,137.2,25.1,0.99,13.230,136.3 +25.7,0.99,9.770,133.9,25.6,0.99,9.830,133.2 +26.9,0.99,7.640,103.0,26.7,0.99,7.660,103.0 +26.6,0.99,9.100,103.4,26.4,0.99,9.130,103.6 +27.8,0.99,8.620,113.5,27.6,0.99,8.700,113.2 +26.5,0.99,9.120,138.0,26.3,0.99,9.130,137.6 +27.2,0.99,4.410,111.9,27.1,0.99,4.470,111.5 +27.9,0.99,6.820,113.4,27.7,0.99,6.840,113.1 +28.2,0.99,6.790,104.5,28.0,0.99,6.840,104.7 +28.4,0.99,7.580,109.6,28.2,0.99,7.630,109.4 +28.2,0.99,7.660,107.7,28.0,0.99,7.660,107.8 +28.2,0.99,7.820,109.4,28.0,0.99,7.860,109.4 +28.3,0.99,7.790,110.4,28.1,0.99,7.850,110.5 +28.1,0.99,7.950,109.1,27.9,0.99,8.020,109.4 +28.2,0.99,7.470,114.6,28.0,0.99,7.520,114.6 +28.0,0.99,7.580,106.7,27.8,0.99,7.630,106.7 +28.1,0.99,6.940,107.7,27.9,0.99,7.010,108.0 +28.0,0.99,6.080,102.0,27.8,0.99,6.110,102.2 +27.7,0.99,5.790,100.6,27.6,0.99,5.850,100.6 +27.7,0.99,5.920,90.7,27.6,0.99,6.080,89.8 +27.5,0.99,7.900,77.4,27.3,0.99,7.910,77.7 +26.7,0.99,9.070,97.6,26.5,0.99,9.070,97.3 +25.2,0.99,8.030,107.2,25.1,0.99,8.190,107.8 +25.3,0.99,5.310,97.1,25.2,0.99,5.500,97.8 +23.8,0.99,12.500,101.8,23.6,0.99,12.590,101.6 +25.7,0.99,6.180,63.7,25.5,0.99,6.290,64.2 +25.0,0.99,8.680,43.2,25.1,0.99,8.990,46.8 +26.2,0.99,5.600,63.0,26.1,0.99,5.700,63.4 +28.2,0.99,7.010,120.2,28.0,0.99,7.050,120.0 +28.0,0.99,7.880,123.2,27.8,0.99,7.900,123.1 +28.7,0.99,7.120,117.6,28.5,0.99,7.160,117.6 +28.6,0.99,7.050,114.9,28.4,0.99,7.100,115.0 +28.7,0.99,7.250,108.3,28.6,0.99,7.270,108.5 +29.0,0.99,7.150,102.8,28.8,0.99,7.210,102.9 +28.5,0.99,6.430,113.5,28.3,0.99,6.520,113.5 +28.3,0.99,5.520,111.0,28.2,0.99,5.570,111.0 +28.2,0.99,5.080,114.4,28.0,0.99,5.110,114.4 +28.1,0.99,5.430,97.7,27.9,0.99,5.460,97.8 +28.0,0.99,5.060,97.4,27.8,0.99,5.090,97.1 +27.8,0.99,4.710,77.4,27.6,0.99,4.760,77.8 +27.8,0.99,5.610,87.0,27.6,0.99,5.620,86.9 +27.5,0.99,7.470,58.8,27.4,0.99,7.480,59.0 +27.1,0.99,7.400,58.8,27.0,0.99,7.420,58.9 +26.8,0.99,7.430,44.6,26.6,0.99,7.450,45.8 +26.4,0.99,6.250,24.3,26.2,0.99,6.300,25.5 +26.6,0.99,7.790,49.6,26.4,0.99,7.830,50.0 +26.5,0.99,7.540,53.6,26.4,0.99,7.570,53.8 +27.0,0.99,8.620,56.6,26.9,0.99,8.650,56.7 +27.2,0.99,7.360,60.5,27.0,0.99,7.380,60.7 +27.4,0.99,7.080,75.9,27.2,0.99,7.100,76.0 +27.5,0.99,6.600,79.8,27.3,0.99,6.610,79.8 +27.8,0.99,6.550,93.4,27.7,0.99,6.590,93.3 +27.9,0.99,6.310,110.3,27.7,0.99,6.330,110.2 +27.8,0.99,6.350,109.8,27.7,0.99,6.370,109.6 +27.8,0.99,6.380,111.8,27.6,0.99,6.410,111.7 +27.6,0.99,6.260,111.5,27.4,0.99,6.280,111.4 +27.7,0.99,5.520,113.8,27.5,0.99,5.530,113.8 +27.7,0.99,5.060,114.5,27.5,0.99,5.080,114.4 +27.7,0.99,5.080,102.3,27.5,0.99,5.100,102.4 +27.7,0.99,5.440,85.6,27.5,0.99,5.470,85.7 +27.7,0.99,5.790,88.8,27.5,0.99,5.810,88.8 +27.5,0.99,4.220,85.4,27.3,0.99,4.280,85.7 +27.4,0.99,4.340,68.7,27.3,0.99,4.390,69.1 +27.5,0.99,4.140,80.8,27.3,0.99,4.200,81.1 +27.4,0.99,4.510,67.5,27.2,0.99,4.570,68.0 +26.5,0.99,4.110,50.1,26.5,0.99,4.160,55.8 +26.1,0.99,5.090,39.8,26.1,0.99,5.090,45.7 +26.0,0.99,5.870,36.4,26.0,0.99,5.960,41.7 +25.9,0.99,5.700,38.1,25.8,0.99,5.830,43.0 +25.8,0.99,6.460,32.7,25.7,0.99,6.510,34.6 +26.0,0.99,6.150,38.6,25.9,0.99,6.190,39.6 +26.5,0.99,5.810,46.8,26.3,0.99,5.810,47.5 +26.8,0.99,5.910,63.9,26.6,0.99,5.910,64.0 +27.4,0.99,4.960,81.6,27.2,0.99,4.950,81.7 +27.6,0.99,5.040,92.3,27.4,0.99,5.040,92.2 +27.6,0.99,3.900,109.4,27.4,0.99,3.900,109.3 +27.6,0.99,3.900,121.4,27.5,0.99,3.930,121.7 +28.1,0.99,3.870,118.1,27.9,0.99,3.870,117.9 +27.8,0.99,4.510,118.5,27.6,0.99,4.510,118.5 +28.0,0.99,4.090,117.0,27.8,0.99,4.250,117.2 +28.2,0.99,5.130,120.4,28.0,0.99,5.240,120.8 +28.0,0.99,5.340,139.2,27.8,0.99,5.410,139.2 +28.2,0.99,6.630,133.6,28.0,0.99,6.640,133.6 +28.2,0.99,5.640,126.7,28.0,0.99,5.650,126.7 +28.2,0.99,4.790,110.4,28.1,0.99,4.830,110.6 +28.0,0.99,5.090,96.6,27.8,0.99,5.100,96.5 +28.0,0.99,4.580,89.6,27.8,0.99,4.620,90.1 +27.9,0.99,5.050,86.2,27.7,0.99,5.080,86.5 +27.8,0.99,5.600,88.4,27.6,0.99,5.600,88.6 +27.5,0.99,5.180,84.2,27.3,0.99,5.220,84.6 +27.5,0.99,5.860,90.9,27.3,0.99,5.890,90.8 +27.4,0.99,6.070,86.0,27.3,0.99,6.120,85.9 +27.5,0.99,6.600,87.5,27.3,0.99,6.630,87.7 +25.7,0.99,10.530,47.6,25.5,0.99,10.770,48.5 +26.3,0.99,9.540,65.7,26.4,0.99,9.680,67.5 +26.5,0.99,8.300,82.7,26.5,0.99,8.600,83.0 +26.3,0.99,5.830,63.6,26.2,0.99,6.150,66.0 +27.5,0.99,7.260,86.2,27.3,0.99,7.280,86.1 +27.5,0.99,6.930,92.6,27.3,0.99,6.960,92.8 +27.8,0.99,7.550,101.4,27.6,0.99,7.560,101.4 +28.0,0.99,8.240,115.2,27.8,0.99,8.260,115.2 +28.3,0.99,7.340,114.7,28.1,0.99,7.370,114.6 +28.6,0.99,8.180,107.2,28.5,0.99,8.220,107.2 +28.5,0.99,7.840,108.1,28.3,0.99,7.890,108.2 +28.4,0.99,7.600,105.3,28.2,0.99,7.630,105.4 +28.4,0.99,8.740,109.2,28.2,0.99,8.780,109.2 +28.1,0.99,8.960,110.9,27.9,0.99,8.980,110.8 +28.1,0.99,8.560,106.9,27.9,0.99,8.610,107.0 +28.1,0.99,8.790,104.6,27.9,0.99,8.850,104.7 +27.9,0.99,7.900,112.9,27.8,0.99,7.960,113.0 +27.9,0.99,7.690,107.9,27.8,0.99,7.750,108.1 +27.7,0.99,7.370,106.7,27.5,0.99,7.430,106.9 +27.7,0.99,7.840,108.4,27.6,0.99,7.880,108.4 +27.0,0.99,10.500,114.3,26.8,0.99,10.450,114.2 +26.7,0.99,11.130,113.0,26.5,0.99,11.160,113.1 +26.9,0.99,6.320,121.2,26.7,0.99,6.370,121.0 +27.6,0.99,6.330,117.1,27.4,0.99,6.420,117.0 +26.5,0.99,6.790,139.9,26.4,0.99,7.160,139.0 +28.0,0.99,7.280,120.2,27.8,0.99,7.310,120.2 +28.1,0.99,6.620,122.5,28.0,0.99,6.660,122.6 +28.4,0.99,7.370,117.8,28.2,0.99,7.420,117.8 +28.1,0.99,7.010,123.5,27.9,0.99,7.020,123.3 +28.0,0.99,6.540,117.2,27.9,0.99,6.560,117.3 +27.9,0.99,5.690,115.4,27.8,0.99,5.710,115.2 +27.8,0.99,6.500,102.0,27.6,0.99,6.520,102.1 +27.9,0.99,7.060,84.5,27.7,0.99,7.060,85.5 +27.9,0.99,7.280,92.8,27.7,0.99,7.300,92.8 +27.8,0.99,8.700,99.6,27.6,0.99,8.760,99.7 +27.9,0.99,8.130,97.1,27.7,0.99,8.180,97.3 +27.9,0.99,8.820,103.8,27.8,0.99,8.880,103.7 +28.2,0.99,8.820,102.9,28.0,0.99,8.880,103.0 +27.9,0.99,9.000,103.3,27.7,0.99,9.040,103.4 +27.9,0.99,9.570,111.4,27.7,0.99,9.630,111.5 +27.9,0.99,8.710,117.0,27.7,0.99,8.760,117.0 +27.9,0.99,8.110,110.2,27.8,0.99,8.160,110.4 +27.9,0.99,9.700,110.0,27.7,0.99,9.740,110.1 +28.0,0.99,7.730,120.3,27.8,0.99,7.820,120.3 +27.8,0.99,7.570,113.4,27.6,0.99,7.610,113.4 +27.9,0.99,6.650,103.5,27.7,0.99,6.690,103.6 +27.9,0.99,6.760,92.7,27.8,0.99,6.750,93.0 +27.6,0.99,6.030,97.4,27.4,0.99,6.040,97.5 +27.9,0.99,6.860,88.4,27.7,0.99,6.880,88.7 +27.8,0.99,6.410,92.4,27.6,0.99,6.440,92.2 +27.8,0.99,6.610,98.9,27.6,0.99,6.640,98.9 +27.7,0.99,6.470,87.2,27.5,0.99,6.500,87.7 +27.9,0.99,7.070,93.5,27.7,0.99,7.070,93.6 +27.8,0.99,6.370,101.1,27.6,0.99,6.370,101.1 +27.8,0.99,6.540,116.0,27.7,0.99,6.550,116.0 +28.1,0.99,6.890,117.3,27.9,0.99,6.910,117.2 +27.9,0.99,6.870,114.8,27.7,0.99,6.900,114.8 +28.2,0.99,8.280,114.7,28.0,0.99,8.310,114.5 +28.1,0.99,4.650,104.6,27.9,0.99,4.760,105.0 +27.9,0.99,5.060,94.5,27.8,0.99,5.120,93.7 +28.0,0.99,6.570,88.8,27.9,0.99,6.630,89.0 +26.6,0.99,8.450,86.8,26.6,0.99,8.380,87.9 +27.7,0.99,7.530,109.0,27.5,0.99,7.520,109.2 +27.8,0.99,7.630,121.3,27.6,0.99,7.710,121.5 +27.7,0.99,7.590,126.5,27.5,0.99,7.630,126.5 +27.6,0.99,6.840,113.9,27.4,0.99,6.890,114.1 +27.4,0.99,6.700,112.0,27.3,0.99,6.740,112.1 +27.6,0.99,6.560,113.1,27.4,0.99,6.580,113.1 +27.5,0.99,6.950,108.8,27.3,0.99,7.010,108.9 +27.5,0.99,7.020,110.4,27.4,0.99,7.060,110.6 +27.6,0.99,6.530,116.1,27.4,0.99,6.580,116.1 +27.5,0.99,4.970,104.9,27.3,0.99,5.020,105.0 +27.6,0.99,6.410,106.0,27.4,0.99,6.440,106.0 +27.8,0.99,5.250,94.2,27.6,0.99,5.290,93.9 +27.0,0.99,8.730,90.2,27.1,0.99,8.990,94.1 +25.9,0.99,6.360,66.6,25.7,0.99,6.210,67.7 +26.0,0.99,13.010,79.9,25.8,0.99,13.010,80.5 +26.4,0.99,5.830,90.2,26.2,0.99,5.820,90.7 +27.4,0.99,3.980,117.1,27.3,0.99,4.020,116.8 +27.6,0.99,5.950,105.3,27.4,0.99,5.970,105.3 +27.9,0.99,7.300,128.3,27.7,0.99,7.370,128.3 +27.9,0.99,7.080,123.7,27.7,0.99,7.100,123.7 +27.9,0.99,5.940,122.7,27.7,0.99,5.980,122.7 +27.9,0.99,6.600,107.8,27.7,0.99,6.650,107.7 +27.7,0.99,6.800,104.7,27.5,0.99,6.810,104.7 +27.8,0.99,6.780,95.2,27.6,0.99,6.800,95.1 +27.7,0.99,6.050,96.9,27.5,0.99,6.090,97.0 +27.7,0.99,6.570,104.6,27.5,0.99,6.610,104.6 +27.7,0.99,6.100,104.8,27.5,0.99,6.140,105.0 +27.5,0.99,6.300,97.5,27.3,0.99,6.340,97.6 +27.6,0.99,5.610,105.2,27.4,0.99,5.660,105.0 +27.6,0.99,5.280,93.3,27.4,0.99,5.450,93.0 +27.3,0.99,3.880,91.0,27.2,0.99,3.900,91.7 +27.4,0.99,5.400,80.6,27.2,0.99,5.410,80.9 +26.4,0.99,10.170,92.2,26.3,0.99,10.200,92.2 +27.1,0.99,9.910,92.7,26.9,0.99,9.920,92.7 +27.2,0.99,9.940,92.8,27.1,0.99,10.000,92.8 +27.0,0.99,9.560,97.6,26.8,0.99,9.630,96.7 +26.8,0.99,8.050,91.1,26.6,0.99,8.060,91.1 +27.3,0.99,6.410,85.6,27.2,0.99,6.560,87.3 +27.9,0.99,8.120,103.4,27.7,0.99,8.160,103.3 +27.8,0.99,8.850,108.6,27.6,0.99,8.880,108.6 +27.7,0.99,7.540,112.1,27.5,0.99,7.600,112.2 +28.2,0.99,8.690,110.9,28.1,0.99,8.750,111.2 +27.9,0.99,8.570,105.9,27.7,0.99,8.590,105.8 +27.7,0.99,8.750,106.8,27.5,0.99,8.810,106.8 +27.8,0.99,8.220,105.3,27.6,0.99,8.270,105.5 +27.9,0.99,8.460,108.8,27.7,0.99,8.530,108.9 +27.9,0.99,7.910,115.4,27.7,0.99,7.940,115.5 +27.6,0.99,8.370,112.3,27.4,0.99,8.430,112.4 +27.8,0.99,8.360,113.0,27.6,0.99,8.410,113.1 +27.7,0.99,9.740,118.9,27.5,0.99,9.780,118.9 +27.8,0.99,8.990,121.9,27.6,0.99,8.990,122.0 +27.7,0.99,8.020,125.6,27.5,0.99,8.060,125.5 +27.5,0.99,6.980,119.6,27.3,0.99,7.020,119.8 +27.6,0.99,7.340,119.8,27.4,0.99,7.410,120.1 +27.5,0.99,8.340,119.5,27.4,0.99,8.420,119.7 +27.6,0.99,7.470,125.9,27.4,0.99,7.530,126.0 +27.5,0.99,8.120,128.1,27.3,0.99,8.160,128.0 +27.8,0.99,6.250,125.8,27.6,0.99,6.320,126.1 +27.6,0.99,6.920,127.6,27.4,0.99,6.950,127.7 +27.8,0.99,6.840,125.8,27.6,0.99,6.870,125.9 +27.7,0.99,7.420,123.5,27.5,0.99,7.440,123.5 +27.7,0.99,7.220,117.3,27.5,0.99,7.240,117.5 +27.8,0.99,8.200,127.9,27.7,0.99,8.230,128.0 +27.9,0.99,7.650,134.4,27.7,0.99,7.690,134.5 +27.8,0.99,9.500,136.2,27.6,0.99,9.570,136.3 +27.4,0.99,8.360,142.7,27.2,0.99,8.510,143.3 +27.8,0.99,10.100,149.3,27.6,0.99,10.160,149.4 +27.9,0.99,10.170,138.5,27.7,0.99,10.170,139.0 +28.4,0.99,10.140,156.6,28.2,0.99,10.250,156.4 +28.2,0.99,10.860,152.3,28.1,0.99,10.970,152.3 +27.9,0.99,10.620,157.4,27.7,0.99,10.700,157.3 +27.7,0.99,10.200,148.1,27.5,0.99,10.250,148.1 +27.8,0.99,8.930,157.7,27.6,0.99,8.990,157.8 +27.9,0.99,10.040,156.4,27.7,0.99,10.140,156.4 +27.5,0.99,9.880,162.5,27.3,0.99,9.930,162.7 +27.5,0.99,8.940,165.4,27.3,0.99,8.970,165.4 +27.7,0.99,8.060,169.4,27.5,0.99,8.090,169.9 +28.1,0.99,8.860,166.8,27.9,0.99,9.010,166.6 +28.0,0.99,8.370,170.1,27.8,0.99,8.470,169.9 +27.8,0.99,8.700,167.3,27.6,0.99,8.800,167.2 +28.2,0.99,8.720,162.4,28.1,0.99,8.980,162.7 +28.0,0.99,8.570,164.0,27.9,0.99,8.660,164.5 +28.0,0.99,9.140,159.4,27.8,0.99,9.230,159.4 +27.8,0.99,9.830,158.0,27.7,0.99,9.900,158.2 +27.8,0.99,7.770,162.6,27.6,0.99,7.850,162.6 +28.0,0.99,7.870,163.9,27.8,0.99,7.960,163.8 +28.0,0.99,8.390,164.5,27.9,0.99,8.430,164.6 +27.9,0.99,8.670,159.2,27.7,0.99,8.700,159.2 +27.8,0.99,7.960,159.7,27.7,0.99,7.990,159.8 +27.9,0.99,7.890,161.8,27.7,0.99,7.940,162.0 +27.8,0.98,8.870,163.3,27.6,0.98,8.900,163.3 +28.4,0.98,9.560,161.6,28.3,0.98,9.660,161.9 +28.2,0.98,8.180,164.0,28.1,0.98,8.270,165.1 +28.6,0.98,9.190,164.4,28.5,0.98,9.350,164.6 +27.8,0.98,8.460,160.1,27.6,0.98,8.490,160.3 +28.2,0.98,6.770,161.3,28.0,0.98,6.830,161.2 +28.2,0.98,7.040,168.5,28.0,0.98,7.090,168.3 +28.0,0.98,6.770,169.2,27.8,0.98,6.820,169.3 +27.7,0.98,6.610,179.3,27.5,0.98,6.660,179.3 +27.9,0.98,6.540,180.1,27.8,0.98,6.570,180.2 +27.7,0.98,5.990,181.0,27.5,0.98,6.080,181.0 +27.7,0.98,5.880,182.4,27.5,0.98,5.940,182.3 +27.5,0.98,5.550,188.3,27.3,0.98,5.570,188.2 +27.0,0.98,3.680,223.0,26.9,0.98,3.880,217.4 +24.3,0.98,10.010,9.2,24.1,0.98,9.940,9.2 +24.4,0.98,8.520,3.6,24.3,0.98,8.450,3.9 +24.1,0.98,9.180,11.7,23.9,0.98,9.170,11.8 +24.0,0.98,8.120,21.5,23.8,0.98,8.140,21.6 +23.8,0.98,8.860,18.9,23.6,0.98,8.830,18.9 +22.8,0.98,11.750,22.8,22.6,0.98,11.770,22.9 +22.8,0.98,12.370,23.8,22.6,0.98,12.390,24.0 +22.7,0.98,12.550,22.1,22.5,0.98,12.590,22.3 +22.7,0.98,11.440,25.2,22.5,0.98,11.490,25.4 +22.4,0.98,11.340,10.7,22.2,0.98,11.350,10.8 +22.1,0.98,12.420,33.9,21.9,0.98,12.450,34.1 +22.0,0.98,13.560,25.1,21.8,0.98,13.620,25.4 +21.9,0.98,12.750,28.1,21.7,0.98,12.820,28.2 +22.0,0.98,13.250,31.2,21.8,0.98,13.310,31.3 +22.3,0.98,14.130,36.4,22.1,0.98,14.190,36.6 +22.7,0.98,14.190,35.2,22.5,0.98,14.260,35.4 +22.5,0.98,13.850,36.0,22.3,0.98,13.890,36.3 +23.1,0.98,13.740,43.7,22.9,0.98,13.840,43.9 +23.0,0.98,13.530,43.5,22.8,0.98,13.630,43.7 +22.9,0.98,13.170,41.6,22.7,0.98,13.250,41.9 +22.8,0.98,12.860,41.2,22.6,0.98,12.940,41.6 +23.0,0.98,13.720,45.6,22.8,0.98,13.800,45.7 +22.8,0.98,13.170,43.5,22.6,0.98,13.230,43.8 +22.4,0.98,12.520,40.2,22.2,0.98,12.570,40.6 +22.1,0.98,12.350,41.5,21.9,0.98,12.410,41.9 +21.9,0.98,11.810,38.5,21.7,0.98,11.850,39.0 +21.6,0.98,11.520,39.3,21.4,0.98,11.550,39.7 +21.6,0.98,11.190,36.0,21.4,0.98,11.210,36.3 +21.7,0.98,10.610,35.1,21.5,0.98,10.630,35.5 +22.5,0.98,10.600,35.0,22.3,0.98,10.640,35.2 +23.5,0.98,10.600,40.7,23.3,0.98,10.630,40.6 +24.4,0.98,10.150,39.5,24.2,0.98,10.210,39.5 +25.2,0.98,9.530,47.0,25.0,0.98,9.580,46.8 +25.7,0.98,9.780,52.3,25.5,0.98,9.830,52.1 +26.0,0.98,9.430,48.8,25.8,0.98,9.480,48.8 +26.3,0.98,9.600,46.0,26.1,0.98,9.640,46.2 +26.3,0.98,10.380,45.9,26.1,0.98,10.430,46.4 +26.4,0.98,10.940,55.6,26.2,0.98,10.990,55.6 +26.0,0.98,12.060,68.0,25.9,0.98,12.130,67.9 +25.2,0.98,11.370,69.9,25.0,0.98,11.420,69.7 +25.2,0.98,11.360,66.8,25.0,0.98,11.390,66.7 +25.5,0.98,11.340,72.0,25.3,0.98,11.410,72.0 +25.2,0.98,10.960,65.3,25.0,0.98,10.990,65.7 +25.0,0.98,10.690,61.6,24.8,0.98,10.730,62.0 +25.1,0.98,10.980,69.8,24.9,0.98,11.020,70.2 +24.9,0.98,12.670,76.3,24.7,0.98,12.690,76.3 +25.2,0.98,7.910,78.0,25.0,0.98,7.910,78.3 +25.1,0.98,8.620,82.7,24.9,0.98,8.660,83.0 +25.9,0.98,8.730,77.4,25.7,0.98,8.740,77.5 +25.4,0.98,10.250,67.0,25.3,0.98,10.260,67.5 +26.3,0.98,9.490,89.5,26.1,0.98,9.520,89.5 +24.4,0.98,9.010,44.3,24.3,0.98,8.910,46.1 +26.4,0.98,8.730,82.1,26.3,0.98,8.790,82.5 +26.3,0.98,8.270,77.6,26.1,0.98,8.290,78.0 +26.5,0.98,9.280,71.8,26.3,0.98,9.310,71.9 +26.3,0.98,9.480,71.9,26.2,0.98,9.490,72.0 +26.3,0.98,8.930,70.7,26.1,0.98,8.960,70.8 +26.0,0.98,9.450,82.9,25.8,0.98,9.430,81.9 +26.5,0.98,7.200,74.0,26.3,0.98,7.260,73.6 +27.1,0.98,7.870,86.0,26.9,0.98,7.910,86.2 +26.8,0.98,8.510,86.2,26.6,0.98,8.580,86.3 +26.9,0.98,6.720,83.8,26.8,0.98,6.740,84.1 +27.1,0.98,6.750,87.0,26.9,0.98,6.800,87.4 +27.2,0.98,5.910,90.5,27.1,0.98,6.040,90.7 +27.3,0.98,6.700,81.2,27.1,0.98,6.750,81.5 +27.5,0.98,6.510,83.0,27.3,0.98,6.520,83.2 +27.4,0.98,5.960,74.9,27.2,0.98,6.070,76.2 +27.1,0.98,6.360,61.8,26.9,0.98,6.490,62.6 +26.6,0.98,6.740,88.3,26.4,0.98,6.700,88.2 +26.7,0.98,4.120,74.3,26.5,0.98,4.140,75.6 +26.7,0.98,5.230,46.7,26.5,0.98,5.190,47.4 +26.5,0.98,6.560,32.1,26.3,0.98,6.500,33.1 +25.6,0.98,8.320,22.2,25.4,0.98,8.260,22.8 +25.9,0.98,7.540,21.9,25.8,0.98,7.790,23.5 +25.4,0.99,7.400,21.1,25.3,0.99,7.420,22.0 +26.1,0.99,6.840,13.0,25.9,0.99,6.870,13.2 +27.1,0.99,6.750,17.6,27.0,0.99,7.030,17.4 +27.6,0.99,3.290,36.6,27.6,0.99,3.520,34.0 +27.9,0.99,2.960,345.7,27.8,0.99,3.000,346.8 +27.9,0.99,1.780,48.6,27.7,0.99,1.740,45.1 +28.3,0.98,2.360,63.1,28.1,0.98,2.230,56.5 +28.8,0.98,3.580,80.2,28.7,0.98,3.570,79.4 +28.8,0.98,3.240,69.8,28.6,0.98,3.270,69.1 +28.5,0.98,3.090,67.0,28.3,0.98,3.140,67.8 +28.3,0.98,2.680,80.3,28.1,0.98,2.830,77.4 +27.9,0.99,3.390,56.1,27.9,0.99,3.810,54.0 +27.6,0.99,2.880,34.8,27.6,0.99,2.990,37.2 +27.6,0.99,3.670,27.4,27.6,0.99,3.930,27.9 +27.3,0.99,3.980,34.9,27.3,0.99,4.200,36.5 +27.4,0.99,4.020,41.3,27.4,0.99,4.150,44.6 +26.9,0.99,3.730,43.1,26.9,0.99,3.650,48.4 +27.3,0.99,3.180,38.0,27.4,0.99,3.200,41.6 +27.3,0.99,3.720,26.7,27.5,0.99,3.830,29.1 +27.0,0.99,4.390,15.7,27.4,0.99,4.510,18.4 +26.7,0.99,4.090,7.0,27.0,0.99,4.220,8.5 +26.0,0.99,3.550,7.5,26.5,0.99,3.700,9.8 +25.6,0.99,4.040,359.7,26.1,0.99,4.070,1.7 +25.3,0.99,3.540,2.0,25.7,0.99,3.510,1.9 +25.2,0.99,2.980,356.3,25.8,0.99,3.050,355.3 +24.5,0.99,3.300,358.1,24.9,0.99,3.570,355.4 +24.9,0.99,2.270,0.2,25.4,0.99,2.750,356.6 +26.2,0.99,2.810,343.0,26.5,0.99,3.100,344.7 +26.9,0.99,1.590,339.0,26.9,0.99,1.790,339.8 +28.0,0.99,0.930,288.4,27.8,0.99,1.040,294.3 +28.6,0.99,1.160,198.8,28.5,0.99,0.980,207.7 +28.4,0.99,3.880,167.1,28.6,0.99,3.390,170.2 +28.5,0.98,4.440,161.4,28.8,0.98,3.800,162.5 +27.8,0.99,6.670,163.6,27.6,0.99,6.590,163.7 +27.4,0.98,5.670,171.5,27.4,0.98,5.590,171.8 +27.1,0.99,5.680,165.4,26.9,0.99,5.650,165.4 +27.1,0.99,5.220,176.0,26.9,0.99,5.210,176.1 +27.0,0.99,4.280,185.9,26.8,0.99,4.250,186.2 +27.0,0.99,5.090,208.0,26.8,0.99,5.090,207.7 +26.9,0.99,3.740,216.2,26.7,0.99,3.750,216.0 +26.7,0.99,3.700,218.4,26.5,0.99,3.770,217.9 +26.4,0.99,3.740,214.3,26.4,0.99,3.870,213.4 +26.4,0.99,3.120,222.8,26.3,0.99,3.180,220.8 +26.5,0.99,3.550,217.3,26.4,0.99,3.780,216.0 +26.4,0.99,2.580,199.3,26.3,0.99,2.890,197.9 +26.4,0.99,2.540,200.2,26.4,0.99,2.880,197.9 +26.0,0.99,1.490,203.0,25.9,0.99,1.730,197.2 +25.8,0.99,1.140,208.3,25.8,0.99,1.320,200.2 +26.0,0.99,0.840,147.8,26.0,0.99,1.140,153.1 +25.9,0.99,1.200,100.3,25.9,0.99,1.370,113.2 +25.8,0.99,2.050,99.2,25.8,0.99,2.210,107.8 +25.7,0.99,2.470,74.2,25.6,0.99,2.480,76.7 +27.0,0.99,3.370,111.7,26.8,0.99,3.400,111.9 +27.3,0.99,4.370,114.9,27.1,0.99,4.380,114.8 +27.4,0.99,4.920,118.0,27.2,0.99,4.920,118.0 +27.4,0.99,6.090,127.5,27.2,0.99,6.100,127.5 +27.4,0.99,6.500,128.8,27.2,0.99,6.530,128.9 +27.4,0.99,6.860,135.3,27.2,0.99,6.850,135.3 +27.2,0.99,6.940,142.9,27.0,0.99,6.970,142.9 +27.2,0.99,6.730,144.4,27.0,0.99,6.770,144.5 +27.4,0.99,7.240,144.6,27.2,0.99,7.290,144.7 +27.1,0.99,7.430,149.5,26.9,0.99,7.470,149.4 +27.2,0.99,7.460,152.3,27.1,0.99,7.510,152.3 +27.3,0.99,7.910,155.4,27.1,0.99,7.950,155.7 +27.2,0.99,7.730,163.5,27.1,0.99,7.800,163.5 +27.1,0.99,7.800,163.7,26.9,0.99,7.840,163.8 +27.3,0.99,7.700,163.3,27.1,0.99,7.760,163.3 +27.2,0.99,6.920,165.2,27.0,0.99,6.970,165.2 +27.0,0.99,6.350,159.7,26.8,0.99,6.410,159.7 +26.9,0.99,6.370,156.7,26.7,0.99,6.400,156.8 +26.8,0.99,5.630,145.9,26.6,0.99,5.670,146.0 +26.8,0.99,5.930,142.4,26.6,0.99,5.990,142.5 +27.0,0.99,5.910,135.3,26.8,0.99,5.920,135.4 +26.9,0.99,6.070,135.3,26.8,0.99,6.100,135.4 +27.0,0.99,6.460,127.2,26.8,0.99,6.490,127.4 +27.1,0.99,6.670,129.8,26.9,0.99,6.690,129.9 +27.2,0.99,6.700,125.6,27.0,0.99,6.720,125.8 +27.3,0.99,6.810,126.4,27.1,0.99,6.820,126.4 +27.3,0.99,7.030,125.7,27.1,0.99,7.040,125.8 +27.3,0.99,7.500,119.3,27.1,0.99,7.510,119.3 +27.1,0.99,8.400,117.7,26.9,0.99,8.400,117.7 +27.3,0.99,8.580,118.0,27.1,0.99,8.600,118.1 +26.9,0.99,8.930,123.0,26.7,0.99,8.950,122.9 +26.9,0.99,9.300,126.8,26.7,0.99,9.360,127.0 +26.9,0.99,9.120,124.6,26.7,0.99,9.180,124.7 +27.0,0.99,9.630,129.5,26.8,0.99,9.690,129.6 +26.7,0.99,10.020,135.7,26.6,0.99,10.080,135.7 +26.8,0.99,9.240,134.8,26.7,0.99,9.310,134.9 +26.7,0.99,9.900,143.0,26.5,0.99,9.960,143.0 +26.7,0.99,9.740,142.5,26.6,0.99,9.800,142.5 +26.7,0.99,10.170,143.5,26.5,0.99,10.200,143.6 +26.8,0.99,9.780,148.2,26.6,0.99,9.830,148.1 +26.7,0.99,9.280,144.7,26.5,0.99,9.360,144.7 +26.7,0.99,9.310,145.5,26.5,0.99,9.350,145.7 +26.9,0.99,8.950,136.7,26.7,0.99,8.980,136.7 +26.9,0.99,8.790,141.4,26.7,0.99,8.850,141.4 +27.0,0.99,9.490,134.7,26.9,0.99,9.540,134.8 +27.0,0.99,8.890,139.1,26.9,0.99,8.950,139.1 +27.1,0.99,9.010,139.1,26.9,0.99,9.070,139.0 +27.2,0.99,8.630,139.1,27.0,0.99,8.700,139.0 +27.4,0.99,9.220,135.4,27.2,0.99,9.250,135.3 +26.6,0.99,10.680,142.0,26.4,0.99,10.730,142.1 +26.6,0.99,10.500,151.8,26.4,0.99,10.510,151.9 +26.8,0.99,8.320,148.3,26.6,0.99,8.360,148.3 +26.6,0.99,7.930,148.6,26.4,0.99,7.940,148.9 +27.2,0.99,7.730,151.0,26.9,0.99,7.770,151.0 +26.8,0.99,7.720,151.5,26.6,0.99,7.750,151.4 +26.9,0.99,7.550,148.3,26.7,0.99,7.600,148.2 +26.9,0.99,7.680,151.7,26.7,0.99,7.720,151.7 +26.7,0.99,7.620,151.1,26.5,0.99,7.660,151.1 +26.6,0.99,7.330,155.8,26.4,0.99,7.370,155.7 +26.9,0.99,7.420,158.8,26.7,0.99,7.460,158.9 +26.8,0.99,8.570,160.9,26.6,0.99,8.610,161.3 +26.8,0.99,7.610,160.6,26.6,0.99,7.650,160.7 +26.8,0.99,6.890,166.2,26.6,0.99,6.940,166.7 +26.8,0.99,7.210,173.9,26.6,0.99,7.250,173.8 +26.8,0.99,7.240,185.1,26.6,0.99,7.250,185.0 +26.6,0.99,6.700,174.9,26.4,0.99,6.750,175.2 +26.6,0.99,6.030,184.0,26.4,0.99,6.070,184.1 +26.7,0.99,6.530,194.6,26.5,0.99,6.540,194.5 +26.5,0.99,5.320,181.0,26.4,0.99,5.330,181.3 +26.6,0.99,6.890,200.5,26.4,0.99,6.870,200.6 +24.6,0.99,8.290,184.7,24.5,0.99,8.210,186.2 +24.5,0.99,4.770,209.8,24.5,0.99,5.100,215.5 +25.6,0.99,5.510,195.1,25.4,0.99,5.520,196.3 +25.9,0.99,4.820,184.3,25.7,0.99,4.830,184.4 +26.4,0.99,5.130,178.7,26.3,0.99,5.140,179.1 +26.1,0.99,6.390,169.6,25.9,0.99,6.370,169.3 +26.1,0.99,5.800,159.5,25.9,0.99,5.780,159.8 +26.2,0.99,6.620,165.5,26.0,0.99,6.630,165.6 +26.1,0.99,4.640,166.3,25.9,0.99,4.640,167.0 +26.2,0.99,6.050,168.9,26.0,0.99,6.070,168.9 +26.2,0.99,5.160,177.4,26.1,0.99,5.200,177.2 +26.5,0.99,6.090,181.6,26.3,0.99,6.120,181.3 +26.6,0.99,7.130,164.1,26.4,0.99,7.170,164.4 +26.6,0.99,9.070,170.7,26.4,0.99,9.120,170.9 +26.7,0.99,8.530,181.3,26.5,0.99,8.570,181.2 +26.7,0.99,8.520,171.0,26.5,0.99,8.570,171.3 +26.7,0.99,8.130,188.9,26.5,0.99,8.160,188.9 +24.1,0.99,7.250,149.5,23.9,0.99,7.340,150.2 +24.0,0.99,11.160,167.4,23.8,0.99,11.170,167.5 +24.6,0.99,10.150,170.0,24.5,0.99,10.270,170.1 +24.5,0.99,10.150,166.0,24.4,0.99,10.100,166.0 +24.1,0.99,7.200,211.8,24.0,0.99,7.520,213.1 +24.4,0.99,6.500,209.9,24.4,0.99,6.720,210.5 +24.4,0.99,7.360,237.5,24.2,0.99,7.580,237.2 +24.3,0.99,5.470,179.0,24.1,0.99,5.500,179.2 +23.8,0.99,5.250,141.4,23.6,0.99,5.150,142.7 +25.2,0.99,5.160,210.6,25.0,0.99,5.210,210.8 +25.9,0.99,6.090,218.4,25.7,0.99,6.120,218.3 +25.9,0.99,5.170,195.2,25.7,0.99,5.180,195.5 +26.1,0.99,5.530,183.5,25.9,0.99,5.530,183.7 +26.4,0.99,5.170,186.4,26.2,0.99,5.180,186.3 +26.4,0.99,4.450,160.6,26.3,0.99,4.460,160.7 +26.4,0.99,4.380,163.8,26.2,0.99,4.410,164.2 +26.2,0.99,6.320,153.5,26.1,0.99,6.320,153.5 +26.3,0.99,7.710,156.5,26.1,0.99,7.740,156.4 +26.4,0.99,8.460,165.9,26.2,0.99,8.490,165.8 +26.4,0.99,8.750,173.4,26.3,0.99,8.810,173.3 +26.8,0.99,8.320,182.3,26.7,0.99,8.550,182.1 +26.6,0.99,8.730,188.8,26.4,0.99,8.800,188.6 +26.8,0.99,8.260,185.2,26.6,0.99,8.390,185.2 +26.8,0.99,8.890,178.2,26.7,0.99,9.020,178.0 +26.8,0.99,8.810,168.4,26.6,0.99,8.920,168.6 +26.8,0.99,8.210,189.7,26.6,0.99,8.310,189.5 +26.2,0.99,8.930,205.5,26.1,0.99,9.120,203.2 +26.8,0.99,5.350,169.2,26.7,0.99,5.450,170.0 +26.9,0.99,4.660,184.9,26.7,0.99,4.720,185.4 +26.4,0.99,8.110,166.3,26.3,0.99,7.780,168.6 +26.3,0.99,4.250,173.0,26.2,0.99,4.480,177.8 +26.3,0.99,2.280,193.8,26.1,0.99,2.370,197.9 +26.6,0.99,2.810,196.0,26.4,0.99,3.010,193.3 +26.3,0.99,9.030,159.5,26.1,0.99,9.050,159.8 +25.5,0.99,10.670,162.4,25.5,0.99,10.730,163.5 +25.5,0.99,6.580,164.7,25.5,0.99,6.890,166.6 +26.0,0.99,6.430,159.0,25.8,0.99,6.470,159.1 +26.3,0.99,7.390,153.9,26.1,0.99,7.410,154.2 +26.7,0.99,5.650,149.4,26.5,0.99,5.710,149.1 +26.3,0.99,5.110,141.0,26.1,0.99,5.190,140.3 +26.7,0.99,7.380,134.6,26.5,0.99,7.410,134.7 +26.2,0.99,7.220,124.6,26.0,0.99,7.210,125.3 +26.6,0.99,8.510,140.1,26.4,0.99,8.570,140.1 +26.7,0.99,8.350,142.6,26.5,0.99,8.440,142.5 +26.6,0.99,9.700,134.6,26.4,0.99,9.750,134.8 +26.7,0.99,8.270,145.5,26.6,0.99,8.340,145.6 +26.6,0.99,8.780,146.4,26.5,0.99,8.820,146.5 +26.8,0.99,7.980,154.9,26.6,0.99,8.020,155.0 +26.8,0.99,7.800,160.0,26.7,0.99,7.880,160.1 +26.5,0.99,7.630,160.0,26.4,0.99,7.640,159.8 +27.0,0.99,6.270,172.0,26.8,0.99,6.360,171.8 +26.9,0.99,5.430,172.1,26.7,0.99,5.480,171.8 +27.0,0.99,4.890,170.3,26.8,0.99,4.980,169.7 +26.9,0.99,3.480,144.1,26.7,0.99,3.550,144.6 +26.6,0.99,3.230,129.2,26.4,0.99,3.140,129.6 +25.8,0.99,3.010,102.3,25.7,0.99,2.800,101.9 +26.3,0.99,5.580,106.8,26.1,0.99,5.520,106.4 +26.2,0.99,6.970,105.8,26.0,0.99,6.940,106.1 +25.7,0.99,5.610,121.4,25.6,0.99,5.610,121.6 +26.0,0.99,3.900,144.2,25.9,0.99,3.890,144.2 +26.1,0.99,3.990,137.1,25.9,0.99,3.980,137.4 +26.4,0.99,5.210,122.6,26.2,0.99,5.220,123.0 +26.2,0.99,6.290,117.6,26.0,0.99,6.330,117.8 +26.2,0.99,7.460,116.1,26.0,0.99,7.490,116.3 +26.3,0.99,6.840,126.8,26.1,0.99,6.880,126.9 +26.5,0.99,7.870,130.3,26.3,0.99,7.890,130.4 +26.6,0.99,7.700,144.5,26.4,0.99,7.750,144.4 +26.5,0.99,7.770,145.7,26.4,0.99,7.820,145.7 +26.6,0.99,7.530,148.2,26.4,0.99,7.570,148.1 +26.7,0.99,6.430,154.2,26.5,0.99,6.450,154.4 +27.2,0.99,6.970,163.2,27.1,0.99,7.190,162.4 +26.9,0.99,7.060,166.0,26.7,0.99,7.130,166.1 +26.8,0.99,6.870,172.4,26.6,0.99,6.920,172.2 +26.6,0.99,5.970,171.2,26.4,0.99,6.000,171.3 +26.7,0.99,5.840,168.4,26.5,0.99,5.870,168.4 +26.5,0.99,6.050,162.7,26.3,0.99,6.080,163.1 +26.4,0.99,4.780,165.2,26.3,0.99,4.800,165.4 +26.2,0.99,5.160,161.5,26.0,0.99,5.130,161.8 +26.3,0.99,3.800,159.4,26.1,0.99,3.820,159.5 +26.3,0.99,3.680,153.8,26.1,0.99,3.710,153.5 +26.5,0.99,4.010,142.1,26.3,0.99,4.000,142.1 +26.8,0.99,3.900,143.8,26.6,0.99,3.920,143.8 +26.9,0.99,5.320,136.3,26.7,0.99,5.320,136.4 +27.0,0.99,5.110,145.3,26.8,0.99,5.140,145.3 +26.9,0.99,5.670,146.6,26.7,0.99,5.680,146.5 +26.5,0.99,5.790,140.3,26.3,0.99,5.830,140.3 +26.5,0.99,5.710,141.6,26.3,0.99,5.730,141.6 +26.3,0.99,5.810,140.7,26.1,0.99,5.820,140.9 +26.3,0.99,5.480,143.5,26.1,0.99,5.490,143.6 +26.2,0.99,5.910,144.2,26.0,0.99,5.930,144.2 +26.2,0.99,3.630,161.3,26.1,0.99,3.720,161.3 +26.1,0.99,4.790,135.8,25.9,0.99,4.830,135.9 +26.2,0.99,5.390,140.0,26.0,0.99,5.460,139.8 +26.3,0.99,5.020,143.2,26.1,0.99,5.130,143.0 +26.3,0.99,5.160,147.0,26.1,0.99,5.210,147.0 +26.2,0.99,4.670,161.0,26.1,0.99,4.720,160.9 +26.2,0.99,3.430,164.4,26.1,0.99,3.560,163.4 +26.6,0.99,5.600,154.5,26.4,0.99,5.650,154.7 +26.5,0.99,4.740,157.1,26.3,0.99,4.810,157.3 +26.4,0.99,4.000,158.7,26.3,0.99,4.090,158.8 +26.4,0.99,3.390,158.4,26.2,0.99,3.460,158.6 +26.3,0.99,3.170,149.8,26.2,0.99,3.240,150.2 +26.2,0.99,2.840,151.5,26.1,0.99,2.850,152.0 +26.6,0.99,2.410,148.9,26.5,0.99,2.330,148.8 +26.6,0.99,2.300,158.8,26.5,0.99,2.550,160.3 +26.6,0.99,7.040,133.9,26.4,0.99,6.930,135.0 +27.2,0.99,8.390,132.8,27.0,0.99,8.440,132.8 +27.2,0.99,8.660,137.5,27.0,0.99,8.710,137.5 +27.4,0.99,8.930,132.4,27.2,0.99,8.970,132.6 +27.2,0.99,8.780,130.1,27.0,0.99,8.820,130.2 +27.1,0.99,8.630,127.0,26.9,0.99,8.680,127.0 +27.0,0.99,8.630,122.5,26.8,0.99,8.690,122.5 +26.9,0.99,8.990,128.6,26.7,0.99,9.070,128.7 +26.8,0.99,9.100,128.3,26.6,0.99,9.190,128.3 +26.9,0.99,9.000,129.0,26.8,0.99,9.070,129.0 +26.9,0.99,9.100,121.0,26.7,0.99,9.120,121.0 +26.8,0.99,8.230,123.8,26.7,0.99,8.310,123.8 +27.0,0.99,7.480,124.1,26.8,0.99,7.530,124.7 +26.9,0.99,6.760,125.0,26.7,0.99,6.840,125.0 +26.7,0.99,5.830,122.2,26.6,0.99,5.940,122.2 +26.6,0.99,5.260,123.1,26.4,0.99,5.330,122.9 +26.8,0.99,4.450,128.1,26.6,0.99,4.510,128.8 +26.6,0.99,3.840,115.1,26.4,0.99,3.870,115.2 +26.4,0.99,3.410,102.3,26.3,0.99,3.510,102.0 +26.4,0.99,3.630,88.8,26.2,0.99,3.690,89.1 +26.4,0.99,3.930,82.5,26.2,0.99,3.990,82.6 +26.4,0.99,2.890,72.2,26.2,0.99,2.910,71.7 +26.2,0.99,3.220,57.3,26.0,0.99,3.170,58.1 +26.4,0.99,4.510,109.0,26.2,0.99,4.510,109.1 +26.8,0.99,4.240,103.2,26.6,0.99,4.250,103.0 +26.9,0.99,4.390,101.7,26.7,0.99,4.370,101.8 +26.8,0.99,3.730,100.6,26.6,0.99,3.730,100.8 +26.8,0.99,3.770,105.9,26.7,0.99,3.750,105.9 +26.8,0.99,1.830,111.4,26.6,0.99,1.850,110.5 +27.0,0.99,0.650,87.0,26.8,0.99,0.650,86.3 +27.5,0.99,1.600,10.2,27.4,0.99,1.820,4.2 +26.2,0.99,2.560,354.6,26.1,0.99,2.720,357.5 +26.1,0.99,5.370,345.5,26.0,0.99,5.400,345.9 +25.8,0.99,7.080,6.7,25.6,0.99,7.040,6.9 +25.3,0.99,7.100,11.4,25.1,0.99,7.110,11.5 +24.5,0.99,10.570,355.1,24.3,0.99,10.600,355.2 +22.2,0.99,11.520,346.5,22.0,0.99,11.500,346.9 +20.8,0.99,11.230,349.4,20.6,0.99,11.220,349.6 +20.3,0.99,11.770,350.3,20.1,0.99,11.790,350.4 +19.9,0.99,13.100,350.8,19.7,0.99,13.130,350.9 +19.3,0.99,13.820,348.4,19.1,0.99,13.850,348.5 +19.2,0.99,14.060,354.0,19.0,0.99,14.110,354.1 +18.7,0.99,12.390,2.6,18.5,0.99,12.440,2.7 +18.4,0.99,13.410,354.9,18.3,0.99,13.470,355.0 +18.5,0.99,12.670,352.3,18.3,0.99,12.710,352.4 +19.0,0.99,9.850,359.7,18.8,0.99,9.900,360.0 +20.3,0.99,9.390,352.7,20.1,0.99,9.430,353.1 +20.1,0.99,9.820,341.0,19.9,0.99,9.840,341.5 +21.4,0.99,10.310,354.1,21.3,0.99,10.370,354.5 +22.4,0.99,8.810,344.1,22.2,0.99,8.850,344.2 +22.6,0.99,10.090,340.0,22.4,0.99,10.120,340.4 +23.2,0.99,11.780,338.7,23.0,0.99,11.810,339.0 +23.4,0.99,10.580,340.7,23.2,0.99,10.630,340.8 +23.6,0.99,10.520,340.0,23.4,0.99,10.580,340.0 +23.1,0.99,10.190,343.2,22.9,0.99,10.240,343.1 +22.9,0.99,9.450,343.0,22.7,0.99,9.540,342.8 +22.3,0.99,10.840,348.4,22.2,0.99,10.910,348.4 +22.0,0.99,11.430,348.8,21.8,0.99,11.520,348.9 +21.4,0.99,10.400,352.5,21.2,0.99,10.460,352.5 +21.0,0.99,10.220,350.7,20.8,0.99,10.280,350.7 +20.8,0.99,8.540,356.0,20.6,0.99,8.630,356.1 +20.3,0.99,8.720,351.7,20.1,0.99,8.790,351.9 +19.4,0.99,9.280,359.1,19.3,0.99,9.320,359.3 +19.2,0.99,8.710,6.2,19.0,0.99,8.740,6.5 +19.0,0.99,8.440,3.4,18.9,0.99,8.460,3.8 +19.0,0.99,8.570,9.1,18.8,0.99,8.600,9.4 +18.7,0.99,8.310,8.1,18.6,0.99,8.330,8.4 +18.4,0.99,7.060,12.2,18.2,0.99,7.070,12.6 +18.6,0.99,6.770,7.9,18.4,0.99,6.790,8.4 +19.0,0.99,5.920,5.6,18.8,0.99,5.950,6.3 +19.5,0.99,5.140,356.5,19.3,0.99,5.160,357.1 +20.2,0.99,4.300,346.5,20.0,0.99,4.330,347.0 +21.3,0.99,4.850,334.0,21.1,0.99,4.870,334.4 +22.6,0.99,5.020,336.5,22.4,0.99,5.010,337.5 +23.6,0.99,5.550,348.0,23.4,0.99,5.600,348.4 +23.8,0.99,6.680,337.3,23.6,0.99,6.700,337.9 +24.0,0.99,6.730,336.3,23.8,0.99,6.740,336.7 +24.2,0.99,6.760,347.8,24.0,0.99,6.780,348.1 +23.9,0.99,7.060,9.5,23.7,0.99,7.060,9.3 +23.6,0.99,6.660,18.9,23.4,0.99,6.660,18.6 +23.4,0.99,5.820,21.9,23.3,0.99,5.830,21.6 +23.4,0.99,5.090,21.7,23.2,0.99,5.110,21.6 +23.2,0.99,4.820,30.5,23.0,0.99,4.830,30.7 +23.1,0.99,4.810,28.8,22.9,0.99,4.820,29.0 +22.8,0.99,5.210,26.2,22.6,0.99,5.190,26.7 +21.3,0.99,4.340,22.6,21.2,0.99,4.320,24.0 +20.8,0.99,4.440,20.7,20.7,0.99,4.410,22.1 +20.5,0.99,5.120,26.5,20.4,0.99,5.070,27.5 +20.5,0.99,4.970,32.4,20.3,0.99,4.950,33.5 +21.3,0.99,4.550,42.2,21.1,0.99,4.570,43.4 +21.9,0.99,4.350,38.1,21.7,0.99,4.360,39.4 +22.2,0.99,4.350,60.8,22.0,0.99,4.360,61.1 +22.0,0.99,4.570,57.3,21.8,0.99,4.560,57.7 +21.8,0.99,4.740,59.3,21.6,0.99,4.730,59.7 +21.6,0.99,4.650,59.5,21.4,0.99,4.640,59.8 +21.5,0.99,4.130,59.2,21.3,0.99,4.120,59.6 +21.9,0.99,2.920,61.0,21.7,0.99,2.900,61.1 +22.4,0.99,0.960,52.8,22.2,0.99,0.950,52.0 +22.7,0.99,0.310,114.6,22.5,0.99,0.300,115.2 +22.8,0.99,0.910,135.3,22.7,0.99,0.890,135.8 +22.9,0.99,1.000,132.4,22.7,0.99,0.980,132.4 +23.0,0.99,1.000,126.5,22.8,0.99,0.970,126.1 +23.0,0.99,1.300,114.2,22.8,0.99,1.290,114.0 +22.8,0.99,1.780,115.6,22.7,0.99,1.780,115.5 +22.8,0.99,2.360,101.1,22.6,0.99,2.360,101.3 +22.8,0.99,2.920,92.8,22.6,0.99,2.930,92.8 +22.8,0.99,2.820,89.0,22.6,0.99,2.840,89.1 +22.9,0.99,3.380,84.1,22.7,0.99,3.400,84.2 +22.8,0.99,3.540,98.9,22.6,0.99,3.550,98.9 +22.7,0.99,3.070,116.5,22.6,0.99,3.070,116.3 +22.7,0.99,2.220,107.2,22.5,0.99,2.260,107.2 +22.7,0.99,2.110,113.4,22.5,0.99,2.160,112.4 +22.8,0.99,1.470,90.5,22.6,0.99,1.480,94.1 +21.4,0.99,3.620,21.3,21.5,0.99,3.240,24.6 +21.8,0.99,2.210,12.5,21.8,0.99,1.870,17.3 +21.5,0.99,1.920,8.7,21.5,0.99,1.650,15.4 +21.9,0.99,1.900,9.1,21.9,0.99,1.600,13.7 +22.2,0.99,1.600,349.7,22.1,0.99,1.300,345.2 +21.9,0.99,3.170,2.6,21.9,0.99,2.730,358.8 +22.4,0.99,2.850,1.8,22.2,0.99,2.720,0.4 +22.8,0.99,2.540,39.2,22.6,0.99,2.490,39.8 +23.1,0.99,1.630,51.2,22.9,0.99,1.630,52.2 +23.3,0.99,1.510,87.5,23.1,0.99,1.530,88.0 +23.7,0.99,2.420,105.3,23.4,0.99,2.440,105.1 +23.6,0.99,3.730,100.8,23.4,0.99,3.720,101.5 +23.7,0.99,5.950,111.3,23.5,0.99,5.910,111.9 +23.6,0.99,5.250,115.0,23.4,0.99,5.260,115.0 +23.5,0.99,6.180,110.9,23.3,0.99,6.180,111.2 +23.5,0.99,6.050,117.5,23.4,0.99,6.100,117.8 +23.8,0.99,6.900,109.4,23.6,0.99,6.950,109.7 +23.9,0.99,5.710,135.3,23.7,0.99,5.710,135.0 +23.8,0.99,6.150,134.6,23.6,0.99,6.160,134.8 +23.8,0.99,5.300,133.9,23.6,0.99,5.310,134.7 +23.8,0.99,5.810,141.6,23.6,0.99,5.810,141.5 +24.1,0.99,5.460,148.6,23.9,0.99,5.510,149.5 +24.1,0.99,4.350,172.3,23.9,0.99,4.380,172.5 +23.8,0.99,3.290,128.1,23.6,0.99,3.360,129.8 +24.3,0.99,3.530,187.0,24.1,0.99,3.550,187.2 +24.1,0.99,1.620,198.8,23.9,0.99,1.720,198.3 +24.1,0.99,2.890,189.1,23.9,0.99,2.920,187.7 +24.3,0.99,2.580,169.0,24.1,0.99,2.630,168.7 +24.2,0.99,1.550,163.9,24.0,0.99,1.590,164.5 +24.2,0.99,1.540,128.5,24.0,0.99,1.550,129.3 +24.3,0.99,2.010,107.8,24.1,0.99,2.030,108.3 +24.6,0.99,3.030,111.3,24.4,0.99,3.040,111.8 +24.6,0.99,3.080,117.9,24.4,0.99,3.110,118.2 +24.8,0.99,3.930,128.9,24.6,0.99,3.940,129.0 +24.6,0.99,4.780,123.2,24.4,0.99,4.760,123.6 +24.8,0.99,5.310,131.8,24.6,0.99,5.320,131.8 +24.7,0.99,6.460,136.3,24.5,0.99,6.460,136.3 +24.7,0.99,6.720,137.8,24.5,0.99,6.750,137.9 +24.8,0.99,6.000,145.4,24.6,0.99,6.050,145.4 +24.8,0.99,6.050,148.7,24.6,0.99,6.070,148.5 +25.0,0.99,5.110,156.1,24.8,0.99,5.170,156.1 +24.8,0.99,5.680,157.3,24.6,0.99,5.710,157.2 +24.6,0.99,5.770,161.7,24.5,0.99,5.810,161.9 +24.5,0.99,5.350,161.8,24.3,0.99,5.390,161.9 +24.6,0.99,5.170,165.6,24.4,0.99,5.210,165.8 +24.8,0.99,5.540,185.1,24.6,0.99,5.550,184.6 +25.0,0.99,6.260,175.0,24.8,0.99,6.290,175.1 +25.1,0.99,6.880,179.2,24.9,0.99,6.930,179.3 +25.1,0.99,6.320,175.8,24.9,0.99,6.370,175.8 +25.1,0.99,5.630,167.3,24.9,0.99,5.710,167.7 +25.0,0.99,5.020,160.2,24.8,0.99,5.080,160.7 +25.3,0.99,5.450,160.8,25.1,0.99,5.630,161.8 +25.8,0.99,6.000,174.8,25.6,0.99,6.160,174.7 +25.7,0.99,6.760,169.8,25.5,0.99,6.840,170.0 +25.6,0.99,7.100,154.9,25.4,0.99,7.200,155.1 +25.8,0.99,7.990,160.9,25.6,0.99,8.020,161.1 +25.5,0.99,6.650,155.5,25.3,0.99,6.650,155.6 +25.6,0.99,6.650,148.6,25.4,0.99,6.660,148.8 +25.6,0.99,7.410,140.0,25.4,0.99,7.440,140.1 +25.6,0.99,7.480,144.5,25.4,0.99,7.500,144.6 +25.5,0.99,7.820,142.1,25.3,0.99,7.850,142.1 +25.4,0.99,9.440,149.2,25.2,0.99,9.510,149.3 +25.4,0.99,8.970,152.1,25.2,0.99,9.030,152.2 +25.4,0.99,8.640,149.1,25.2,0.99,8.690,149.2 +25.5,0.99,9.940,151.8,25.3,0.99,10.010,151.9 +25.6,0.99,9.690,150.5,25.4,0.99,9.800,150.7 +25.7,0.99,9.100,164.1,25.5,0.99,9.210,164.3 +25.4,0.99,8.460,164.9,25.3,0.99,8.540,164.8 +25.5,0.99,8.780,163.3,25.3,0.99,8.900,163.4 +25.6,0.99,8.170,167.0,25.4,0.99,8.310,167.1 +25.7,0.99,7.780,169.1,25.6,0.99,7.900,169.0 +25.9,0.99,6.930,175.1,25.8,0.99,7.150,175.2 +26.0,0.99,5.690,157.6,25.9,0.99,5.890,157.5 +26.0,0.99,6.940,160.1,25.8,0.99,7.140,161.3 +25.0,0.99,8.250,195.6,24.8,0.99,8.270,194.7 +24.3,0.99,5.820,155.7,24.2,0.99,5.870,154.8 +25.4,0.99,6.580,187.7,25.4,0.99,6.570,189.4 +24.3,0.99,9.900,174.0,24.1,0.99,9.960,175.0 +24.8,0.99,3.930,192.7,24.7,0.99,4.120,194.0 +25.7,0.99,3.810,148.1,25.7,0.99,3.780,145.7 +25.0,0.99,7.370,155.7,24.8,0.99,7.320,156.1 +25.1,0.99,6.610,178.0,24.9,0.99,6.550,178.2 +25.5,0.99,6.210,179.1,25.3,0.99,6.150,179.4 +25.5,0.99,7.020,171.8,25.4,0.99,6.990,172.0 +25.7,0.99,6.100,167.6,25.5,0.99,6.080,167.8 +25.5,0.99,5.480,174.6,25.3,0.99,5.480,174.8 +25.3,0.99,5.690,154.3,25.1,0.99,5.670,154.3 +25.3,0.99,6.430,137.5,25.1,0.99,6.420,137.7 +25.4,0.99,6.590,126.1,25.2,0.99,6.590,126.2 +25.2,0.99,5.930,124.9,25.1,0.99,5.940,125.0 +25.4,0.99,5.890,133.3,25.2,0.99,5.910,133.5 +25.4,0.99,5.670,156.4,25.2,0.99,5.740,156.6 +25.3,0.99,5.220,170.7,25.2,0.99,5.300,170.6 +25.4,0.99,4.200,168.3,25.2,0.99,4.300,168.7 +25.4,0.99,3.510,178.7,25.3,0.99,3.610,178.9 +25.4,0.99,2.890,176.4,25.3,0.99,3.010,176.6 +25.5,0.99,2.100,173.7,25.3,0.99,2.170,174.7 +25.4,0.99,2.090,126.1,25.2,0.99,2.110,128.9 +25.4,0.99,2.410,109.9,25.2,0.99,2.400,112.5 +25.2,1.00,2.190,86.8,25.0,1.00,2.190,88.1 +25.2,1.00,2.330,81.1,25.0,1.00,2.340,84.7 +24.7,1.00,3.360,51.3,24.6,1.00,3.280,53.3 +25.5,0.99,3.250,97.9,25.3,0.99,3.310,99.7 +25.9,0.99,4.610,122.1,25.8,0.99,4.630,122.1 +25.9,0.99,5.600,120.5,25.7,0.99,5.610,120.6 +25.8,0.99,5.680,115.0,25.6,0.99,5.690,115.2 +25.7,0.99,5.760,119.7,25.5,0.99,5.780,119.8 +25.7,0.99,6.040,125.0,25.5,0.99,6.050,124.8 +25.7,0.99,6.170,120.0,25.5,0.99,6.180,120.1 +25.5,0.99,5.910,120.9,25.3,0.99,5.940,121.1 +25.5,0.99,5.280,123.5,25.3,0.99,5.310,123.8 +25.8,0.99,5.780,126.4,25.6,0.99,5.810,126.4 +25.6,0.99,5.480,131.0,25.4,0.99,5.490,131.1 +25.6,0.99,5.110,130.8,25.4,0.99,5.130,130.7 +25.6,0.99,3.600,133.6,25.4,0.99,3.610,133.4 +25.4,0.99,4.680,120.0,25.2,0.99,4.700,120.3 +25.6,0.99,4.310,142.8,25.4,0.99,4.290,142.5 +25.4,0.99,4.190,118.6,25.2,0.99,4.200,118.7 +25.4,0.99,5.440,137.0,25.3,0.99,5.460,137.0 +25.4,0.99,5.810,136.4,25.2,0.99,5.820,136.8 +25.5,0.99,5.520,145.2,25.3,0.99,5.550,145.3 +25.7,0.99,5.450,137.4,25.5,0.99,5.530,137.9 +25.4,0.99,5.510,136.5,25.2,0.99,5.540,136.4 +25.4,0.99,4.960,134.9,25.2,0.99,5.010,135.2 +25.4,0.99,4.840,138.1,25.3,0.99,4.870,138.1 +25.3,0.99,4.570,130.3,25.1,0.99,4.570,130.6 +25.4,0.99,4.790,133.0,25.2,0.99,4.790,133.0 +25.0,0.99,3.530,137.5,24.9,0.99,3.610,136.1 +25.4,0.99,5.070,138.0,25.2,0.99,5.100,138.0 +25.4,0.99,4.420,131.3,25.2,0.99,4.440,131.4 +25.5,0.99,5.810,147.5,25.3,0.99,5.820,147.1 +25.4,0.99,5.920,139.2,25.2,0.99,5.920,139.5 +25.3,0.99,6.720,138.2,25.1,0.99,6.720,138.2 +25.5,0.99,6.270,138.2,25.3,0.99,6.310,138.2 +25.4,0.99,7.190,141.0,25.2,0.99,7.230,141.0 +25.4,0.99,8.030,146.0,25.2,0.99,8.040,145.8 +25.3,0.99,8.120,143.2,25.2,0.99,8.180,143.3 +25.4,0.99,7.280,151.7,25.2,0.99,7.330,151.6 +25.4,0.99,7.750,146.7,25.2,0.99,7.800,146.8 +25.4,0.99,7.230,153.1,25.2,0.99,7.300,153.2 +25.4,0.99,7.800,163.3,25.2,0.99,7.850,163.3 +25.4,0.99,7.020,164.5,25.2,0.99,7.090,164.8 +25.3,0.99,7.120,165.3,25.1,0.99,7.170,165.4 +25.4,0.99,7.570,165.7,25.2,0.99,7.580,165.6 +25.3,0.99,7.210,171.1,25.1,0.99,7.240,170.9 +25.2,0.99,6.880,169.0,25.1,0.99,6.920,168.8 +25.3,0.99,5.690,176.9,25.1,0.99,5.750,176.9 +25.3,0.99,5.390,175.6,25.1,0.99,5.440,175.4 +25.3,0.99,5.340,173.5,25.1,0.99,5.370,173.3 +25.3,0.99,4.640,161.8,25.1,0.99,4.680,162.1 +25.2,0.99,5.130,170.6,25.0,0.99,5.160,170.5 +25.4,0.99,5.860,166.8,25.2,0.99,5.860,166.9 +25.4,0.99,5.850,163.6,25.2,0.99,5.870,163.7 +25.5,0.99,6.350,170.3,25.3,0.99,6.360,170.1 +25.5,0.99,6.750,164.1,25.3,0.99,6.770,164.3 +25.4,0.99,6.350,168.8,25.2,0.99,6.370,168.9 +25.4,0.99,6.790,164.1,25.2,0.99,6.810,164.4 +25.2,0.99,6.930,163.5,25.0,0.99,6.960,163.6 +25.2,0.99,7.010,158.0,25.0,0.99,7.070,158.0 +25.1,0.99,6.520,167.1,24.9,0.99,6.550,167.0 +25.3,0.99,6.600,164.8,25.1,0.99,6.640,164.7 +25.2,0.99,6.670,179.2,25.0,0.99,6.670,179.2 +25.2,0.99,5.470,179.4,25.0,0.99,5.490,179.3 +25.0,0.99,5.020,180.6,24.8,0.99,5.060,180.7 +25.0,0.99,5.160,197.1,24.8,0.99,5.180,196.9 +25.0,0.99,4.650,188.0,24.9,0.99,4.690,188.2 +25.2,0.99,5.080,190.6,25.0,0.99,5.110,191.1 +25.1,0.99,4.340,208.8,24.9,0.99,4.390,209.0 +24.8,0.99,2.630,237.6,24.6,0.99,2.730,241.2 +24.6,0.99,3.220,257.5,24.5,0.99,3.430,257.5 +24.4,0.99,3.630,269.4,24.4,0.99,3.820,266.5 +24.4,0.99,3.690,273.9,24.4,0.99,3.840,269.6 +24.2,0.99,3.300,267.4,24.2,0.99,3.520,266.0 +24.5,0.99,2.570,260.1,24.4,0.99,2.800,261.8 +24.5,0.99,1.980,242.5,24.4,0.99,2.050,247.8 +24.7,0.99,2.350,206.8,24.5,0.99,2.380,207.1 +25.0,0.99,3.360,205.4,24.8,0.99,3.390,205.5 +25.3,0.99,3.190,206.5,25.1,0.99,3.240,206.5 +25.7,0.99,4.020,213.5,25.5,0.99,4.040,213.8 +24.9,0.99,5.270,284.8,24.7,0.99,5.130,282.6 +23.3,0.99,9.500,338.5,23.1,0.99,9.410,338.4 +22.1,0.99,9.090,342.1,21.9,0.99,9.050,342.2 +20.8,0.99,8.930,343.7,20.6,0.99,8.890,344.0 +20.1,0.99,8.960,343.3,19.9,0.99,8.920,343.5 +19.6,0.99,9.130,340.9,19.4,0.99,9.100,341.1 +19.4,0.99,8.630,344.0,19.2,0.99,8.610,344.1 +19.2,0.99,8.820,341.3,19.0,0.99,8.810,341.3 +18.6,0.99,9.040,342.3,18.4,0.99,9.020,342.4 +18.2,0.99,9.330,342.1,18.0,0.99,9.310,342.3 +17.8,0.99,9.380,343.9,17.7,0.99,9.370,344.1 +17.8,0.99,10.000,348.0,17.6,0.99,9.980,348.2 +17.8,0.99,9.090,353.5,17.6,0.99,9.080,353.7 +17.6,0.99,8.520,357.9,17.4,0.99,8.510,358.1 +17.1,0.99,7.950,3.2,16.9,0.99,7.950,3.4 +16.8,0.99,8.670,2.3,16.6,0.99,8.660,2.4 +17.1,0.99,7.230,5.0,16.9,0.99,7.230,5.4 +17.2,0.99,7.860,10.0,17.0,0.99,7.850,10.4 +17.8,0.99,6.620,4.3,17.6,0.99,6.620,4.8 +18.6,0.99,5.770,2.6,18.4,0.99,5.790,2.9 +20.1,0.99,4.970,10.4,19.9,0.99,5.030,10.4 +21.4,0.99,4.540,13.7,21.2,0.99,4.550,13.2 +22.2,0.99,3.790,352.5,22.0,0.99,3.800,353.1 +22.6,0.99,3.260,340.2,22.4,0.99,3.290,341.2 +23.0,0.99,4.240,349.4,22.8,0.99,4.220,350.2 +23.5,0.99,3.720,2.8,23.4,0.99,3.720,3.9 +23.4,0.99,5.250,15.7,23.2,0.99,5.230,15.9 +22.6,0.99,6.710,27.0,22.4,0.99,6.680,27.1 +22.1,0.99,7.240,31.3,21.9,0.99,7.220,31.6 +21.8,0.99,7.300,39.5,21.6,0.99,7.290,39.7 +21.7,0.99,6.870,44.1,21.5,0.99,6.860,44.5 +21.9,0.99,6.280,51.7,21.7,0.99,6.300,52.1 +21.9,0.99,6.550,56.8,21.7,0.99,6.560,57.1 +21.9,0.99,6.250,60.8,21.7,0.99,6.260,61.1 +21.8,0.99,6.700,64.7,21.6,0.99,6.710,65.1 +21.9,0.99,6.870,70.9,21.7,0.99,6.890,71.2 +22.0,0.99,7.190,76.9,21.8,0.99,7.220,77.2 +21.9,0.99,8.150,81.7,21.7,0.99,8.180,81.9 +22.0,0.99,7.940,84.9,21.8,0.99,7.970,85.1 +22.0,0.99,8.470,89.2,21.8,0.99,8.510,89.3 +22.0,0.99,8.160,73.5,21.8,0.99,8.190,73.7 +21.8,0.99,9.350,70.8,21.6,0.99,9.370,71.0 +21.7,0.99,9.810,74.8,21.5,0.99,9.840,75.0 +21.7,0.99,10.350,82.1,21.5,0.99,10.390,82.2 +22.0,0.99,9.540,90.2,21.8,0.99,9.580,90.3 +22.2,0.99,9.840,96.4,22.0,0.99,9.860,96.5 +22.5,0.99,8.260,99.4,22.3,0.99,8.300,99.6 +22.3,0.99,8.660,97.8,22.1,0.99,8.690,97.9 +21.9,0.99,9.280,92.3,21.7,0.99,9.300,92.3 +21.8,0.99,8.850,94.9,21.6,0.99,8.850,95.0 +22.2,0.99,9.920,90.8,22.0,0.99,9.940,91.1 +22.5,0.99,8.020,99.5,22.3,0.99,8.060,100.2 +22.8,0.99,7.090,101.6,22.6,0.99,7.060,101.6 +23.0,0.99,6.760,94.6,22.8,0.99,6.780,95.3 +23.5,0.99,5.390,116.7,23.3,0.99,5.420,116.9 +23.4,0.99,5.700,87.8,23.2,0.99,5.720,88.3 +23.0,0.99,7.480,53.5,22.8,0.99,7.470,53.9 +21.4,0.99,8.800,23.4,21.2,0.99,8.760,23.9 +18.1,0.99,13.350,1.4,17.9,0.99,13.340,1.5 +17.5,0.99,14.030,6.9,17.4,0.99,14.090,7.0 +17.6,0.99,10.900,4.8,17.4,0.99,10.910,5.0 +17.1,0.99,11.670,2.9,16.9,0.99,11.730,3.0 +17.1,0.99,10.350,8.2,16.9,0.99,10.400,8.3 +17.0,0.99,11.570,1.0,16.8,0.99,11.610,1.2 +16.6,0.99,11.240,2.3,16.4,0.99,11.270,2.4 +16.8,0.99,10.310,356.5,16.6,0.99,10.330,356.7 +17.2,0.99,9.880,354.2,17.0,0.99,9.910,354.5 +17.8,0.99,9.640,350.3,17.6,0.99,9.650,350.8 +18.6,0.99,9.420,347.2,18.4,0.99,9.440,347.7 +19.5,0.99,9.120,349.6,19.3,0.99,9.130,349.8 +20.1,0.99,9.310,349.7,19.9,0.99,9.330,350.1 +20.3,0.99,9.290,349.6,20.1,0.99,9.320,350.0 +20.3,0.99,8.780,355.3,20.1,0.99,8.780,355.3 +20.0,0.99,8.540,2.2,19.8,0.99,8.530,2.5 +19.0,0.99,9.920,3.1,18.8,0.99,9.940,3.4 +18.6,0.99,9.580,11.6,18.4,0.99,9.600,11.7 +18.3,0.99,8.890,20.2,18.1,0.99,8.910,20.3 +18.1,0.99,8.640,21.3,17.9,0.99,8.650,21.4 +17.7,0.99,8.800,28.4,17.5,0.99,8.800,28.5 +17.6,0.99,8.210,32.4,17.4,0.99,8.210,32.6 +17.3,0.99,7.930,33.1,17.1,0.99,7.920,33.5 +17.1,0.99,7.330,36.1,16.9,0.99,7.320,36.6 +17.2,0.99,7.150,36.1,17.0,0.99,7.140,36.8 +17.4,0.99,6.860,37.8,17.2,0.99,6.850,38.7 +17.7,0.99,6.430,51.0,17.6,0.99,6.440,51.6 +18.0,0.99,5.820,50.3,17.8,0.99,5.810,51.1 +18.1,0.99,5.750,47.0,17.9,0.99,5.740,47.7 +18.3,0.99,5.600,49.4,18.1,0.99,5.590,50.9 +18.4,0.99,5.420,54.1,18.3,0.99,5.410,56.4 +18.8,0.99,5.050,80.3,18.6,0.99,5.030,80.4 +19.2,0.99,4.690,78.4,19.0,0.99,4.710,78.7 +19.4,0.99,4.110,83.5,19.2,0.99,4.110,83.8 +19.8,0.99,4.130,82.1,19.6,0.99,4.110,82.5 +20.0,0.99,4.500,73.4,19.8,0.99,4.490,74.3 +20.4,0.99,4.020,103.2,20.2,0.99,4.010,102.9 +20.6,0.99,4.220,89.9,20.4,0.99,4.220,90.6 +20.7,0.99,4.250,97.7,20.5,0.99,4.240,97.9 +21.0,0.99,4.770,104.9,20.8,0.99,4.770,104.9 +21.1,0.99,5.760,104.6,20.9,0.99,5.780,104.6 +21.3,0.99,5.630,101.6,21.1,0.99,5.650,101.9 +21.6,0.99,5.670,111.6,21.4,0.99,5.700,111.8 +21.8,0.99,5.720,118.9,21.6,0.99,5.740,119.0 +22.1,0.99,6.420,126.1,21.9,0.99,6.450,126.3 +22.2,0.99,6.150,134.5,22.0,0.99,6.180,134.7 +22.5,0.99,6.750,139.7,22.3,0.99,6.790,139.7 +22.8,0.99,6.820,150.5,22.6,0.99,6.850,150.4 +22.8,0.99,6.900,142.5,22.7,0.99,6.930,142.7 +23.1,0.99,6.780,142.8,23.0,0.99,6.830,142.9 +23.4,0.99,5.420,147.3,23.2,0.99,5.470,147.3 +23.4,0.99,5.540,148.3,23.3,0.99,5.590,148.4 +23.6,0.99,5.710,137.6,23.4,0.99,5.740,137.8 +23.7,0.99,4.930,130.1,23.6,0.99,5.010,130.6 +23.7,0.99,6.250,137.5,23.5,0.99,6.410,138.4 +22.1,0.99,8.350,169.6,21.9,0.99,8.580,166.6 +21.5,0.99,3.910,107.0,21.4,0.99,4.260,110.7 +20.7,0.99,3.660,115.3,20.8,0.99,4.250,122.1 +22.3,0.99,7.420,148.2,22.1,0.99,7.470,148.2 +20.9,0.99,2.380,194.8,20.7,0.99,2.400,191.9 +19.2,0.99,11.360,2.9,19.1,0.99,11.240,2.9 +20.3,0.99,10.050,52.3,20.1,0.99,10.020,52.4 +20.9,0.99,10.720,70.4,20.7,0.99,10.720,70.5 +21.3,0.99,10.640,91.6,21.1,0.99,10.620,91.6 +21.4,0.99,8.350,81.5,21.2,0.99,8.370,81.7 +21.7,0.99,6.550,91.5,21.5,0.99,6.560,91.6 +22.0,0.99,6.410,87.3,21.8,0.99,6.430,87.6 +22.4,0.99,5.110,97.1,22.2,0.99,5.150,97.6 +22.4,0.99,4.000,92.0,22.2,0.99,4.010,92.2 +22.5,0.99,2.060,100.5,22.3,0.99,2.060,101.2 +22.6,0.99,2.070,47.0,22.4,0.99,2.100,48.1 +21.2,0.99,6.380,9.5,21.1,0.99,6.180,10.9 +20.4,0.99,8.010,8.0,20.3,0.99,7.950,9.0 +19.9,0.99,8.320,9.5,19.8,0.99,8.400,9.8 +20.1,0.99,7.910,14.7,20.0,0.99,7.910,15.2 +19.9,0.99,7.670,4.6,19.8,0.99,7.730,5.2 +18.6,0.99,7.900,357.3,18.4,0.99,7.840,358.2 +17.6,0.99,8.830,355.0,17.4,0.99,8.810,355.3 +17.6,0.99,8.010,356.7,17.5,0.99,7.990,356.8 +17.7,0.99,8.280,351.5,17.6,0.99,8.270,351.7 +18.0,0.99,7.770,351.8,17.9,0.99,7.760,352.2 +19.2,0.99,7.120,347.5,19.1,0.99,7.140,348.0 +20.3,0.99,7.310,344.9,20.2,0.99,7.310,345.7 +21.2,0.99,7.490,345.9,21.0,0.99,7.520,346.7 +21.9,0.99,8.760,342.4,21.7,0.99,8.780,342.9 +22.4,0.99,7.870,346.8,22.2,0.99,7.890,347.3 +22.6,0.99,8.650,355.6,22.4,0.99,8.670,356.2 +22.4,0.99,9.070,6.3,22.2,0.99,9.100,6.0 +21.7,0.99,9.440,10.6,21.5,0.99,9.480,10.7 +21.3,0.99,8.950,10.7,21.1,0.99,8.980,10.7 +21.2,0.99,8.460,14.8,21.0,0.99,8.500,14.8 +21.1,0.99,7.370,19.0,20.9,0.99,7.410,19.0 +21.2,0.99,6.630,18.2,21.0,0.99,6.650,18.3 +21.0,0.99,5.620,13.6,20.8,0.99,5.640,13.7 +20.0,0.99,4.040,4.7,19.9,0.99,4.000,5.9 +19.1,0.99,4.010,348.0,19.0,0.99,3.870,349.7 +18.0,0.99,4.140,338.9,17.9,0.99,4.010,340.1 +18.0,0.99,4.030,343.7,18.1,0.99,3.970,345.6 +18.2,0.99,4.150,348.2,18.3,0.99,4.150,351.7 +18.1,0.99,3.960,352.8,18.2,0.99,3.950,357.2 +17.9,1.00,3.830,357.5,18.0,1.00,3.850,2.8 +17.7,1.00,4.010,0.1,17.7,1.00,3.950,3.9 +17.7,1.00,4.000,2.4,17.8,1.00,3.920,7.5 +17.9,1.00,3.720,4.3,18.1,1.00,3.630,10.2 +18.4,1.00,3.500,3.5,18.6,1.00,3.470,10.9 +18.9,1.00,3.340,3.9,18.9,1.00,3.360,10.4 +20.7,1.00,2.940,25.7,20.5,1.00,2.950,26.3 +21.4,0.99,2.760,40.8,21.3,0.99,2.780,40.9 +22.0,0.99,1.950,71.2,21.8,0.99,1.960,70.9 +22.3,0.99,1.370,94.9,22.1,0.99,1.370,94.2 +22.5,0.99,0.970,105.7,22.3,0.99,0.960,104.7 +22.7,0.99,0.830,121.4,22.5,0.99,0.810,120.6 +22.6,1.00,1.050,125.1,22.4,1.00,1.040,124.7 +22.5,1.00,0.920,134.2,22.3,1.00,0.920,133.8 +22.4,1.00,1.770,139.9,22.2,1.00,1.770,139.7 +22.4,1.00,1.580,136.8,22.2,1.00,1.580,136.4 +22.4,1.00,1.590,141.4,22.2,1.00,1.590,140.9 +22.4,1.00,0.820,155.0,22.2,1.00,0.830,153.9 +22.3,1.00,0.450,179.5,22.2,1.00,0.500,168.7 +22.1,1.00,0.540,268.1,22.0,1.00,0.360,258.7 +21.8,1.00,0.570,281.4,21.9,1.00,0.320,275.2 +21.9,1.00,0.690,292.2,21.9,1.00,0.440,286.4 +21.9,1.00,0.940,321.6,22.0,1.00,0.670,322.8 +21.8,1.00,1.290,327.3,21.9,1.00,0.980,329.1 +21.9,1.00,1.600,335.8,21.9,1.00,1.330,339.0 +21.7,1.00,1.900,350.0,21.8,1.00,1.600,354.1 +21.2,1.00,2.700,0.3,21.6,1.00,2.340,1.7 +21.3,1.00,2.880,2.7,21.7,1.00,2.560,5.4 +21.4,1.00,2.560,15.8,21.7,1.00,2.330,20.4 +21.6,1.00,2.740,12.3,21.8,1.00,2.550,16.7 +22.1,1.00,2.260,29.3,21.9,1.00,2.250,29.9 +22.4,1.00,1.650,52.1,22.2,1.00,1.630,51.6 +22.6,1.00,1.140,91.2,22.4,1.00,1.120,90.4 +22.7,1.00,1.300,99.8,22.5,1.00,1.300,99.1 +22.8,1.00,1.850,118.0,22.6,1.00,1.840,117.7 +22.9,1.00,2.280,121.7,22.7,1.00,2.260,121.5 +22.8,1.00,2.840,128.4,22.6,1.00,2.840,128.3 +22.6,1.00,3.030,126.4,22.4,1.00,3.030,126.2 +22.5,1.00,2.610,127.5,22.4,1.00,2.630,127.3 +22.7,1.00,2.620,124.9,22.5,1.00,2.650,125.0 +22.6,1.00,2.460,121.2,22.4,1.00,2.490,121.4 +22.6,1.00,2.130,120.5,22.4,1.00,2.160,120.3 +22.6,1.00,1.940,119.5,22.4,1.00,1.930,119.5 +22.5,1.00,1.620,95.5,22.3,1.00,1.690,98.6 +22.3,1.00,1.340,43.7,22.2,1.00,1.290,51.1 +19.4,1.00,6.400,16.4,19.7,1.00,6.040,16.0 +19.5,1.00,7.020,30.2,19.4,1.00,7.030,30.9 +20.0,1.00,8.680,50.3,19.8,1.00,8.670,50.7 +20.0,1.00,10.360,58.2,19.9,1.00,10.370,58.4 +19.7,1.00,10.750,63.8,19.6,1.00,10.770,64.1 +19.6,1.00,11.200,68.7,19.4,1.00,11.240,68.9 +19.5,1.00,11.170,73.6,19.3,1.00,11.210,73.8 +19.4,1.00,11.030,73.5,19.2,1.00,11.070,73.7 +19.4,1.00,10.400,74.1,19.2,1.00,10.440,74.4 +19.6,1.00,9.930,74.6,19.4,1.00,9.950,74.8 +19.7,1.00,9.280,75.6,19.6,1.00,9.310,75.8 +20.0,1.00,8.850,76.2,19.8,1.00,8.880,76.4 +20.3,1.00,8.600,76.9,20.1,1.00,8.630,77.1 +20.7,1.00,8.770,81.3,20.5,1.00,8.800,81.3 +21.0,1.00,8.650,82.5,20.8,1.00,8.680,82.6 +21.1,1.00,8.570,83.7,20.9,1.00,8.620,83.9 +21.4,1.00,8.720,90.0,21.2,1.00,8.760,89.9 +21.6,1.00,8.690,87.3,21.4,1.00,8.740,87.7 +21.8,1.00,8.050,103.9,21.6,1.00,8.090,103.6 +21.7,1.00,9.040,96.0,21.5,1.00,9.050,96.4 +21.4,1.00,8.870,99.7,21.3,1.00,8.920,99.9 +21.5,1.00,8.020,110.7,21.4,1.00,8.050,110.6 +21.4,1.00,8.140,104.8,21.2,1.00,8.190,105.1 +21.5,1.00,7.410,113.9,21.3,1.00,7.450,113.8 +21.5,1.00,7.350,112.6,21.3,1.00,7.380,112.8 +21.5,1.00,6.990,117.0,21.3,1.00,7.030,117.2 +21.6,1.00,6.450,119.5,21.4,1.00,6.490,119.7 +21.6,1.00,6.620,117.2,21.4,1.00,6.660,117.5 +21.8,1.00,6.600,120.4,21.6,1.00,6.670,120.5 +21.9,1.00,6.330,122.0,21.7,1.00,6.370,122.3 +22.0,1.00,5.980,124.8,21.8,1.00,6.040,125.0 +22.2,1.00,5.720,133.8,22.0,1.00,5.760,133.4 +22.4,1.00,5.600,133.1,22.2,1.00,5.630,133.3 +22.6,1.00,5.790,131.8,22.4,1.00,5.810,132.0 +22.6,1.00,5.800,136.7,22.4,1.00,5.820,136.6 +22.7,1.00,5.110,138.6,22.5,1.00,5.160,138.9 +22.8,1.00,5.680,137.5,22.6,1.00,5.710,137.7 +22.7,1.00,5.820,134.0,22.5,1.00,5.850,134.1 +22.8,1.00,6.340,138.6,22.6,1.00,6.350,138.6 +22.8,1.00,6.690,139.0,22.6,1.00,6.720,139.1 +22.8,1.00,6.660,137.8,22.6,1.00,6.690,138.1 +22.9,1.00,6.650,140.5,22.7,1.00,6.680,140.7 +22.8,1.00,4.960,133.5,22.6,1.00,4.990,133.6 +22.9,0.99,4.780,131.0,22.7,0.99,4.780,131.4 +23.0,0.99,6.140,152.0,22.8,0.99,6.180,151.8 +23.0,0.99,7.670,153.7,22.9,0.99,7.740,154.2 +23.0,0.99,7.080,151.9,22.9,0.99,7.130,151.9 +23.1,0.99,6.850,154.0,23.0,0.99,6.910,154.1 +23.3,0.99,4.370,150.5,23.1,0.99,4.440,150.6 +23.4,0.99,5.290,141.3,23.2,0.99,5.440,142.1 +23.2,0.99,4.970,128.4,23.0,0.99,5.010,129.4 +23.5,0.99,6.860,153.3,23.3,0.99,7.010,153.5 +21.3,0.99,5.120,57.0,21.2,0.99,4.640,63.6 +18.6,0.99,13.520,21.4,18.4,0.99,13.550,21.7 +19.2,0.99,10.360,51.6,19.0,0.99,10.320,51.6 +19.6,0.99,7.810,66.9,19.4,0.99,7.730,67.4 +19.7,0.99,6.960,92.3,19.5,0.99,6.860,92.8 +20.7,0.99,5.790,114.4,20.5,0.99,5.750,114.9 +21.0,0.99,3.590,146.3,20.8,0.99,3.570,147.2 +21.6,0.99,3.520,156.7,21.4,0.99,3.490,157.1 +21.9,0.99,1.450,232.6,21.7,0.99,1.450,233.5 +22.1,0.99,1.510,237.2,21.9,0.99,1.490,237.0 +22.2,0.99,1.440,239.4,22.0,0.99,1.420,239.5 +22.2,0.99,0.320,226.9,22.0,0.99,0.330,225.4 +22.1,0.99,1.040,120.0,21.9,0.99,1.020,121.7 +22.0,0.99,1.170,112.4,21.8,0.99,1.180,113.8 +22.1,0.99,1.870,141.5,21.9,0.99,1.910,142.2 +22.1,0.99,1.760,113.8,21.9,0.99,1.750,114.9 +22.1,0.99,0.890,86.4,21.9,0.99,0.880,89.2 +22.1,0.99,1.560,116.0,21.9,0.99,1.660,120.6 +22.1,0.99,1.840,128.4,22.0,0.99,1.950,134.1 +22.2,0.99,1.970,119.7,22.1,0.99,2.050,124.8 +22.4,0.99,1.940,116.4,22.4,0.99,1.960,125.2 +22.5,0.99,3.130,115.6,22.4,0.99,3.140,123.4 +22.8,0.99,2.830,121.2,22.7,0.99,2.820,127.3 +22.8,0.99,3.630,107.6,22.7,0.99,3.510,114.4 +23.0,0.99,4.120,104.1,22.9,0.99,3.740,113.5 +23.0,0.99,4.230,102.3,23.0,0.99,3.650,114.1 +23.1,0.99,4.800,96.6,23.0,0.99,4.590,100.2 +23.2,0.99,5.050,102.9,23.1,0.99,5.090,104.5 +23.3,0.99,6.020,104.0,23.2,0.99,6.090,104.3 +23.6,0.99,6.080,109.0,23.4,0.99,6.070,109.2 +23.7,0.99,6.620,114.3,23.5,0.99,6.630,114.5 +23.8,0.99,7.030,119.3,23.6,0.99,7.040,119.6 +24.1,0.99,7.750,127.0,23.9,0.99,7.770,127.2 +24.3,0.99,7.550,134.9,24.1,0.99,7.580,135.2 +24.2,0.99,8.210,139.0,24.0,0.99,8.230,139.0 +23.9,0.99,7.840,132.7,23.8,0.99,7.920,133.0 +24.1,0.99,8.890,136.1,23.9,0.99,9.010,136.3 +24.3,0.99,8.750,139.4,24.1,0.99,8.860,139.5 +24.3,0.99,9.540,147.4,24.1,0.99,9.730,147.6 +24.3,0.99,10.020,147.8,24.1,0.99,10.220,148.1 +24.4,0.99,10.400,153.9,24.2,0.99,10.610,153.9 +24.3,0.99,10.770,150.0,24.2,0.99,10.970,150.1 +24.4,0.99,9.480,157.5,24.3,0.99,9.680,157.6 +24.4,0.99,10.020,160.3,24.3,0.99,10.210,160.4 +24.2,0.99,9.530,158.3,24.1,0.99,9.710,158.7 +24.5,0.99,9.100,155.8,24.3,0.99,9.300,155.9 +24.3,0.99,8.630,158.5,24.2,0.99,8.810,158.7 +24.4,0.99,8.260,162.8,24.3,0.99,8.430,162.8 +24.4,1.00,8.350,153.1,24.2,1.00,8.520,153.6 +24.2,1.00,7.880,148.6,24.1,1.00,8.000,149.0 +24.4,1.00,7.080,146.8,24.2,1.00,7.250,146.9 +24.6,1.00,8.160,151.7,24.4,1.00,8.270,151.9 +24.4,0.99,6.870,146.2,24.2,0.99,7.000,146.6 +24.8,0.99,7.940,150.1,24.6,0.99,7.970,150.3 +24.8,0.99,7.450,151.7,24.6,0.99,7.500,151.7 +24.7,0.99,8.470,144.7,24.5,0.99,8.510,144.8 +24.6,0.99,9.060,140.7,24.4,0.99,9.080,140.8 +24.7,0.99,9.180,143.3,24.5,0.99,9.230,143.4 +24.6,0.99,9.240,140.0,24.4,0.99,9.290,140.0 +24.4,0.99,9.640,137.8,24.3,0.99,9.750,137.9 +24.5,0.99,9.480,138.2,24.3,0.99,9.640,138.4 +24.5,0.99,10.050,137.6,24.4,0.99,10.240,137.6 +24.6,0.99,10.460,140.8,24.4,0.99,10.660,140.7 +24.4,0.99,11.290,143.3,24.2,0.99,11.520,143.2 +24.5,0.99,10.990,142.1,24.3,0.99,11.190,142.3 +24.4,0.99,10.840,142.3,24.2,0.99,11.040,142.5 +24.4,0.99,11.420,147.0,24.2,0.99,11.600,147.2 +24.3,0.99,11.370,142.2,24.2,0.99,11.520,142.3 +24.3,0.99,11.420,144.4,24.1,0.99,11.600,144.6 +24.5,0.99,10.500,142.9,24.3,0.99,10.700,143.0 +24.6,0.99,11.230,144.5,24.4,0.99,11.460,144.7 +24.7,0.99,11.400,148.3,24.5,0.99,11.660,148.4 +24.8,0.99,11.650,143.3,24.6,0.99,11.870,143.6 +24.7,0.99,11.420,144.3,24.6,0.99,11.670,144.7 +24.8,0.99,10.700,143.6,24.6,0.99,10.980,144.0 +24.8,0.99,10.990,147.2,24.7,0.99,11.270,147.4 +24.9,0.99,11.520,149.2,24.7,0.99,11.820,149.4 +25.0,0.99,11.330,148.1,24.8,0.99,11.530,148.4 +25.0,0.99,11.420,148.5,24.8,0.99,11.610,148.8 +24.9,0.99,11.280,155.0,24.8,0.99,11.790,155.1 +24.9,0.99,12.990,149.4,24.8,0.99,13.240,149.5 +25.1,0.99,14.200,150.4,24.9,0.99,14.500,150.6 +24.5,0.99,12.840,158.5,24.4,0.99,13.090,158.3 +24.7,0.99,15.900,162.7,24.5,0.99,16.160,162.8 +24.6,0.99,13.990,161.6,24.4,0.99,14.230,161.7 +24.5,0.99,12.470,156.1,24.4,0.99,12.720,155.8 +25.0,0.99,13.480,162.1,24.9,0.99,13.840,162.1 +24.8,0.99,13.410,170.6,24.7,0.99,13.730,170.7 +25.2,0.99,10.700,178.8,25.1,0.99,10.980,179.7 +25.2,0.99,11.220,179.8,25.1,0.99,11.630,180.4 +25.4,0.99,13.180,183.6,25.2,0.99,13.680,183.8 +25.4,0.99,14.120,184.0,25.3,0.99,14.600,184.0 +25.3,0.99,14.090,182.5,25.1,0.99,14.480,182.7 +25.2,0.99,15.880,188.5,25.0,0.99,16.230,188.7 +25.1,0.99,16.470,191.8,24.9,0.99,16.800,191.8 +25.5,0.99,13.610,206.6,25.4,0.99,14.080,206.6 +25.6,0.99,13.360,213.7,25.4,0.99,13.800,213.8 +25.6,0.99,12.260,213.4,25.4,0.99,12.710,213.5 +25.4,0.99,10.210,231.0,25.4,0.99,10.680,231.1 +25.4,0.99,9.050,236.0,25.3,0.99,9.390,235.6 +25.9,0.99,10.750,245.3,25.9,0.99,11.520,245.8 +25.9,0.99,10.480,253.7,26.0,0.99,10.830,255.9 +25.2,0.99,8.830,242.3,25.2,0.99,9.040,241.1 +24.8,0.99,7.980,237.8,24.8,0.99,8.440,238.0 +25.1,0.99,8.340,227.8,25.1,0.99,8.850,229.7 +25.1,0.99,7.910,224.6,25.1,0.99,8.460,227.2 +24.6,0.99,6.700,202.5,24.6,0.99,6.800,204.0 +24.9,0.99,6.910,212.5,24.8,0.99,7.150,213.6 +24.2,0.99,5.800,242.6,24.3,0.99,6.140,240.6 +24.1,0.99,4.860,242.7,23.8,0.99,4.570,238.8 +23.8,0.99,3.750,233.9,23.7,0.99,3.550,233.3 +23.5,0.99,3.520,249.4,23.4,0.99,3.300,250.7 +22.9,0.99,3.500,260.7,22.9,0.99,3.240,262.3 +22.3,0.99,3.860,298.9,22.3,0.99,3.720,301.4 +21.9,0.99,5.020,317.3,21.8,0.99,5.220,318.3 +20.4,0.99,5.970,350.5,20.7,0.99,6.010,353.0 +20.2,0.99,5.210,14.8,20.0,0.99,5.140,16.2 +20.2,0.99,5.220,33.5,20.1,0.99,5.200,34.4 +20.4,0.99,5.510,38.2,20.3,0.99,5.480,38.5 +20.4,0.99,5.160,49.7,20.2,0.99,5.140,50.1 +20.3,0.99,4.840,52.7,20.2,0.99,4.820,53.4 +20.5,0.99,4.760,57.1,20.4,0.99,4.750,57.7 +20.6,0.99,4.320,60.7,20.4,0.99,4.310,61.4 +20.6,0.99,4.340,76.7,20.4,0.99,4.330,77.1 +20.9,0.99,3.540,82.1,20.8,0.99,3.540,82.8 +21.6,0.99,2.780,84.2,21.4,0.99,2.760,84.6 +21.9,0.99,2.760,97.5,21.7,0.99,2.740,98.0 +22.2,0.99,3.280,113.8,22.0,0.99,3.270,114.1 +22.3,0.99,3.480,129.2,22.1,0.99,3.460,129.6 +22.5,0.99,3.800,138.3,22.3,0.99,3.790,138.7 +22.4,0.99,2.790,146.1,22.2,0.99,2.790,146.6 +22.3,0.99,2.800,147.5,22.1,0.99,2.790,147.8 +22.2,0.99,3.200,158.6,22.1,0.99,3.200,158.8 +22.2,0.99,2.700,185.0,22.0,0.99,2.710,185.0 +22.2,0.99,2.640,198.4,22.0,0.99,2.660,198.6 +22.3,0.99,2.780,215.3,22.1,0.99,2.790,215.8 +22.2,0.99,4.090,285.8,22.1,0.99,4.410,286.4 +20.8,0.99,8.640,315.7,20.9,0.99,9.300,316.0 +20.8,0.99,9.280,308.7,20.6,0.99,9.370,309.3 +19.7,0.99,10.570,327.4,19.5,0.99,10.580,327.7 +17.9,0.99,11.610,348.7,17.7,0.99,11.620,348.9 +18.5,0.99,13.440,356.6,18.3,0.99,13.550,356.7 +17.7,0.99,13.030,6.3,17.5,0.99,13.120,6.4 +17.2,0.99,14.710,9.4,17.0,0.99,14.800,9.6 +16.7,1.00,13.830,13.3,16.5,1.00,13.900,13.5 +16.6,1.00,13.000,12.3,16.4,1.00,13.080,12.4 +16.6,1.00,11.940,6.6,16.5,1.00,12.010,6.7 +17.3,1.00,10.850,1.2,17.1,1.00,10.930,1.3 +18.6,1.00,10.710,2.4,18.4,1.00,10.800,2.5 +19.3,1.00,11.590,3.3,19.1,1.00,11.650,3.2 +19.4,1.00,10.350,0.4,19.2,1.00,10.390,0.1 +19.7,1.00,10.400,356.3,19.5,1.00,10.440,356.5 +19.6,1.00,10.130,351.6,19.4,1.00,10.150,351.7 +19.6,1.00,9.970,351.4,19.4,1.00,10.000,351.6 +19.2,1.00,10.070,0.6,19.1,1.00,10.110,0.7 +18.6,1.00,9.840,4.8,18.4,1.00,9.880,4.9 +18.6,1.00,9.920,11.3,18.4,1.00,9.950,11.3 +18.1,1.00,10.630,19.7,17.9,1.00,10.660,19.5 +17.5,1.00,10.050,21.8,17.4,1.00,10.080,22.0 +17.4,1.00,9.260,27.8,17.3,1.00,9.270,28.0 +17.1,1.00,9.460,31.1,16.9,1.00,9.470,31.3 +16.7,1.00,9.230,36.6,16.5,1.00,9.240,36.9 +16.9,1.00,8.660,39.9,16.7,1.00,8.670,40.3 +16.8,1.00,8.440,43.2,16.6,1.00,8.450,43.6 +16.8,1.00,8.230,52.1,16.6,1.00,8.230,52.4 +16.9,1.00,7.860,54.4,16.7,1.00,7.880,54.9 +17.0,1.00,7.510,66.8,16.8,1.00,7.530,67.0 +17.1,1.00,7.230,74.6,16.9,1.00,7.250,74.8 +16.9,1.00,8.080,72.8,16.8,1.00,8.100,73.1 +17.1,1.00,7.220,77.5,16.9,1.00,7.230,77.7 +17.2,1.00,7.070,83.9,17.1,1.00,7.090,84.2 +17.3,1.00,7.120,85.5,17.1,1.00,7.140,85.7 +17.4,1.00,7.270,90.6,17.2,1.00,7.290,90.8 +17.7,1.00,6.640,93.1,17.5,1.00,6.640,93.2 +17.8,1.00,6.080,102.1,17.7,1.00,6.070,101.8 +17.9,1.00,7.280,89.0,17.7,1.00,7.290,89.8 +18.0,1.00,7.220,109.6,17.8,1.00,7.170,109.5 +18.1,0.99,6.570,105.0,17.9,0.99,6.590,105.1 +18.4,0.99,6.420,127.4,18.2,0.99,6.450,127.3 +18.4,0.99,6.490,123.0,18.2,0.99,6.510,122.9 +18.6,0.99,6.680,118.5,18.4,0.99,6.720,119.0 +18.9,0.99,7.660,125.5,18.7,0.99,7.660,125.9 +19.1,0.99,6.860,125.1,18.9,0.99,6.870,125.7 +19.3,0.99,7.130,124.7,19.1,0.99,7.150,124.9 +19.7,0.99,6.670,118.4,19.5,0.99,6.720,118.8 +20.3,0.99,7.370,127.4,20.1,0.99,7.440,127.5 +20.4,0.99,8.460,121.7,20.3,0.99,8.500,121.9 +21.1,0.99,7.880,128.4,20.9,0.99,7.910,128.4 +21.4,0.99,8.120,134.4,21.2,0.99,8.170,134.6 +21.5,0.99,8.510,126.2,21.3,0.99,8.580,126.5 +21.6,0.99,8.870,136.3,21.4,0.99,8.990,136.6 +21.7,0.99,8.660,118.9,21.5,0.99,8.710,119.7 +21.4,0.99,8.710,115.0,21.3,0.99,8.710,115.2 +22.1,0.99,9.060,125.5,21.9,0.99,9.070,125.7 +22.3,0.99,8.960,123.6,22.1,0.99,9.040,123.9 +21.6,0.99,10.360,101.5,21.5,0.99,10.400,101.7 +21.6,0.99,10.790,109.4,21.4,0.99,10.840,109.5 +21.8,0.99,11.200,102.9,21.6,0.99,11.230,103.2 +22.4,0.99,12.370,115.7,22.3,0.99,12.380,115.8 +22.6,0.99,12.820,114.9,22.4,0.99,12.900,115.0 +22.8,0.99,14.100,121.2,22.6,0.99,14.190,121.1 +22.8,0.99,14.540,115.7,22.6,0.99,14.650,115.8 +22.8,0.99,15.560,118.4,22.6,0.99,15.680,118.5 +22.9,0.99,15.470,120.8,22.7,0.99,15.630,121.0 +22.9,0.99,15.860,121.7,22.7,0.99,16.020,121.8 +23.1,0.99,15.280,126.9,22.9,0.99,15.460,126.9 +23.3,0.99,15.280,125.1,23.1,0.99,15.440,125.1 +23.4,0.99,15.120,129.1,23.2,0.99,15.270,129.2 +23.4,0.99,15.040,131.3,23.2,0.99,15.190,131.3 +23.4,0.99,13.240,134.2,23.2,0.99,13.440,134.3 +23.3,0.99,12.980,132.3,23.2,0.99,13.150,132.5 +23.5,0.99,12.870,137.2,23.3,0.99,13.020,137.4 +23.6,0.99,11.870,138.8,23.4,0.99,12.050,139.0 +23.7,0.99,12.390,141.8,23.6,0.99,12.610,141.8 +23.6,0.99,11.730,141.2,23.4,0.99,11.930,141.3 +23.6,0.99,11.140,139.4,23.5,0.99,11.310,139.8 +23.7,0.99,11.760,138.9,23.5,0.99,11.930,138.9 +23.7,0.99,11.690,137.3,23.5,0.99,11.870,137.4 +23.8,0.99,10.890,139.9,23.6,0.99,11.110,140.1 +23.8,0.99,10.680,140.1,23.7,0.99,10.880,140.2 +24.2,0.99,9.900,144.1,24.0,0.99,10.150,144.3 +24.3,0.99,9.320,144.3,24.1,0.99,9.400,144.4 +23.9,0.99,10.120,135.9,23.7,0.99,10.150,136.1 +23.6,0.99,9.010,133.2,23.4,0.99,9.050,133.3 +23.6,0.99,9.340,133.9,23.4,0.99,9.400,134.0 +23.9,0.99,8.540,138.8,23.8,0.99,8.670,138.9 +23.6,0.99,7.280,139.4,23.5,0.99,7.340,139.5 +23.8,0.99,8.210,143.1,23.6,0.99,8.470,143.4 +23.6,0.99,8.650,137.7,23.5,0.99,8.810,138.0 +23.6,0.99,9.070,137.1,23.4,0.99,9.200,137.3 +23.5,0.99,8.350,133.6,23.3,0.99,8.450,134.1 +23.3,0.99,8.210,143.5,23.2,0.99,8.420,143.9 +23.4,0.99,7.390,142.8,23.3,0.99,7.610,143.3 +23.5,0.99,7.870,141.8,23.3,0.99,8.050,141.8 +23.4,0.99,5.880,133.8,23.2,0.99,6.000,135.1 +23.5,0.99,6.510,147.3,23.4,0.99,6.840,148.8 +23.5,0.99,6.870,148.2,23.4,0.99,7.140,148.8 +23.5,0.99,6.220,150.3,23.4,0.99,6.460,151.1 +23.7,0.99,6.310,159.8,23.6,0.99,6.640,161.0 +23.6,0.99,5.630,150.2,23.5,0.99,5.890,152.3 +23.7,0.99,5.160,166.1,23.6,0.99,5.160,167.3 +23.7,0.99,4.840,171.4,23.6,0.99,5.030,171.7 +23.6,0.99,2.250,183.0,23.6,0.99,2.460,184.2 +23.8,0.99,1.570,227.9,23.7,0.99,1.570,234.6 +23.9,0.99,1.250,299.0,23.8,0.99,1.290,303.1 +23.9,0.99,1.700,312.9,23.8,0.99,1.720,312.1 +24.2,0.99,2.530,6.8,24.0,0.99,2.560,6.7 +25.3,0.99,6.050,344.8,25.1,0.99,6.070,344.9 +25.1,0.99,6.670,351.4,24.9,0.99,6.730,351.3 +24.1,0.99,12.300,348.8,23.9,0.99,12.340,348.7 +23.1,0.99,12.430,349.1,22.9,0.99,12.480,349.1 +19.7,1.00,12.640,348.7,19.5,1.00,12.670,348.9 +18.2,1.00,11.490,355.5,18.0,1.00,11.520,355.6 +17.8,1.00,12.060,356.1,17.7,1.00,12.090,356.1 +17.1,1.00,12.710,357.2,16.9,1.00,12.740,357.1 +16.3,1.00,12.130,356.2,16.1,1.00,12.150,356.3 +15.8,1.00,12.900,5.1,15.6,1.00,12.940,5.3 +15.3,1.00,13.050,8.2,15.1,1.00,13.100,8.4 +14.8,1.00,13.690,11.8,14.6,1.00,13.750,11.9 +14.6,1.00,14.110,11.6,14.4,1.00,14.180,11.7 +14.1,1.00,14.530,13.7,13.9,1.00,14.590,13.8 +13.3,1.00,15.250,16.5,13.1,1.00,15.310,16.7 +12.8,1.00,15.270,20.3,12.6,1.00,15.340,20.4 +12.1,1.00,14.830,23.4,11.9,1.00,14.900,23.6 +11.5,1.00,15.430,23.6,11.3,1.00,15.490,23.8 +11.5,1.00,13.330,25.3,11.3,1.00,13.380,25.5 +11.8,1.00,12.320,20.9,11.6,1.00,12.360,21.1 +12.4,1.00,11.570,17.3,12.2,1.00,11.620,17.5 +13.5,1.00,11.370,16.0,13.3,1.00,11.420,16.2 +15.0,1.00,11.330,16.1,14.8,1.00,11.380,16.2 +15.9,1.00,11.520,14.4,15.7,1.00,11.570,14.5 +16.5,1.00,11.460,15.0,16.3,1.00,11.520,15.1 +16.9,1.00,11.840,18.0,16.7,1.00,11.890,18.1 +16.9,1.00,11.830,17.6,16.7,1.00,11.890,17.7 +16.4,1.00,12.510,20.9,16.2,1.00,12.580,21.0 +15.5,1.00,13.050,23.6,15.3,1.00,13.120,23.8 +15.0,1.00,13.650,30.2,14.8,1.00,13.720,30.4 +14.8,1.00,13.730,32.5,14.6,1.00,13.790,32.8 +14.6,1.00,13.270,35.1,14.4,1.00,13.330,35.3 +14.5,1.00,13.020,37.3,14.3,1.00,13.080,37.6 +14.6,1.00,13.060,39.5,14.4,1.00,13.110,39.8 +14.5,1.00,12.540,41.2,14.3,1.00,12.590,41.6 +14.5,1.00,12.100,43.4,14.3,1.00,12.150,43.7 +14.4,1.00,11.580,43.6,14.2,1.00,11.630,44.0 +14.5,1.00,12.230,47.8,14.3,1.00,12.300,48.2 +14.8,1.00,13.520,51.9,14.6,1.00,13.590,52.0 +14.9,1.00,13.290,55.2,14.7,1.00,13.350,55.4 +15.0,1.00,12.670,58.1,14.8,1.00,12.730,58.4 +15.2,1.00,12.610,61.0,15.0,1.00,12.680,61.2 +15.6,1.00,12.510,65.1,15.3,1.00,12.570,65.2 +15.6,1.00,11.960,63.8,15.4,1.00,12.020,64.0 +15.7,1.00,11.140,64.3,15.5,1.00,11.190,64.5 +15.8,1.00,10.320,63.4,15.6,1.00,10.360,63.6 +16.1,1.00,9.430,62.9,15.9,1.00,9.460,63.0 +16.3,1.00,8.220,63.0,16.1,1.00,8.240,63.2 +16.5,1.00,7.220,61.0,16.3,1.00,7.230,61.2 +16.8,1.00,6.390,59.9,16.6,1.00,6.410,60.0 +17.2,1.00,5.850,66.6,17.0,1.00,5.860,66.6 +17.5,1.00,5.780,68.3,17.3,1.00,5.780,68.4 +17.7,1.00,5.370,63.8,17.5,1.00,5.390,64.0 +17.9,1.00,4.860,66.1,17.8,1.00,4.870,66.3 +18.0,1.00,4.820,58.5,17.9,1.00,4.830,59.3 +18.2,1.00,4.950,65.5,18.0,1.00,4.980,66.7 +18.4,1.00,4.550,94.1,18.3,1.00,4.530,93.8 +18.5,1.00,3.870,93.6,18.3,1.00,3.890,93.4 +18.6,1.00,4.470,105.7,18.5,1.00,4.470,105.2 +18.8,1.00,4.030,120.6,18.6,1.00,4.060,121.3 +18.6,1.00,4.280,83.6,18.4,1.00,4.310,85.7 +18.7,1.00,3.660,110.4,18.6,1.00,3.660,110.9 +19.2,1.00,2.740,109.4,19.0,1.00,2.870,109.8 +17.5,1.00,6.530,29.9,17.4,1.00,6.260,32.3 +17.4,1.00,8.120,31.8,17.3,1.00,7.840,33.1 +17.5,1.00,9.040,37.5,17.4,1.00,8.740,38.9 +17.9,1.00,9.160,37.5,17.8,1.00,9.080,38.1 +18.2,1.00,8.260,43.3,18.1,1.00,8.000,45.0 +19.4,1.00,4.420,73.9,19.2,1.00,4.440,75.2 +19.3,1.00,5.170,79.4,19.1,1.00,5.180,79.8 +19.2,1.00,7.570,83.9,19.0,1.00,7.550,84.2 +18.9,1.00,7.410,83.1,18.8,1.00,7.400,83.5 +18.9,1.00,6.920,88.6,18.7,1.00,6.910,88.7 +19.0,1.00,6.260,86.3,18.8,1.00,6.260,86.4 +19.2,1.00,5.440,88.8,19.0,1.00,5.420,88.9 +19.4,1.00,4.800,85.7,19.2,1.00,4.800,85.6 +19.4,1.00,4.670,78.9,19.2,1.00,4.680,78.9 +19.9,1.00,5.410,83.5,19.7,1.00,5.430,83.5 +20.4,1.00,5.850,77.4,20.2,1.00,5.890,77.4 +20.3,1.00,5.860,65.4,20.1,1.00,5.880,65.8 +19.8,1.00,7.100,55.0,19.6,1.00,7.110,55.0 +19.7,1.00,6.570,55.4,19.5,1.00,6.580,55.9 +19.3,1.00,6.570,54.8,19.1,1.00,6.570,55.0 +19.0,1.00,7.040,48.0,18.8,1.00,7.050,48.4 +18.2,1.00,7.730,42.8,18.0,1.00,7.720,43.3 +18.2,1.00,7.300,40.2,18.0,1.00,7.280,41.1 +18.1,1.00,7.300,40.2,17.9,1.00,7.290,40.6 +17.8,1.00,7.300,41.6,17.6,1.00,7.290,42.0 +17.2,1.00,7.420,41.0,17.0,1.00,7.400,41.6 +17.5,1.00,7.790,44.8,17.3,1.00,7.800,45.2 +16.5,1.00,7.410,34.2,16.4,1.00,7.350,34.9 +16.5,1.00,7.250,40.6,16.4,1.00,7.240,41.1 +16.8,1.00,6.830,40.4,16.6,1.00,6.830,40.8 +17.3,1.00,6.270,40.4,17.1,1.00,6.280,40.8 +18.4,1.00,6.280,44.3,18.3,1.00,6.310,44.3 +19.4,1.00,4.950,44.6,19.2,1.00,4.970,44.4 +19.9,1.00,4.310,50.6,19.7,1.00,4.330,50.6 +20.3,1.00,3.840,43.2,20.1,1.00,3.860,43.5 +20.6,1.00,3.730,47.9,20.4,1.00,3.750,48.0 +20.8,1.00,3.930,48.9,20.6,1.00,3.960,49.0 +20.8,1.00,4.380,49.4,20.6,1.00,4.430,49.6 +20.0,1.00,5.990,16.4,19.8,1.00,6.080,17.9 +19.5,1.00,6.640,29.2,19.3,1.00,6.690,30.0 +19.4,1.00,7.420,36.2,19.3,1.00,7.440,36.6 +19.1,1.00,7.350,41.1,19.0,1.00,7.360,41.8 +19.6,1.00,7.260,55.9,19.4,1.00,7.270,56.2 +19.6,1.00,7.060,55.2,19.4,1.00,7.090,55.8 +19.7,1.00,6.550,58.2,19.5,1.00,6.570,58.6 +19.5,1.00,6.470,57.5,19.3,1.00,6.470,58.0 +19.2,1.00,6.430,48.3,19.0,1.00,6.420,48.9 +19.1,1.00,6.030,53.7,18.9,1.00,6.030,54.4 +18.7,1.00,5.970,44.7,18.6,1.00,5.940,45.4 +18.5,1.00,6.240,49.5,18.3,1.00,6.230,50.2 +18.4,1.00,5.860,45.0,18.3,1.00,5.850,45.8 +17.9,1.00,5.720,36.9,17.8,1.00,5.680,38.5 +17.8,1.00,5.560,40.7,17.6,1.00,5.540,41.7 +17.8,1.00,4.540,31.8,17.6,1.00,4.480,33.0 +17.8,1.00,4.050,37.9,17.6,1.00,4.040,39.1 +19.1,1.00,3.410,51.9,18.9,1.00,3.420,52.0 +19.6,1.00,1.910,38.6,19.4,1.00,1.910,38.2 +19.9,1.00,0.930,41.1,19.7,1.00,0.940,39.8 +20.1,1.00,0.440,58.2,19.9,1.00,0.440,55.0 +20.4,1.00,0.280,84.0,20.2,1.00,0.260,76.6 +20.5,1.00,0.360,109.8,20.3,1.00,0.320,107.4 +20.4,1.00,1.520,119.2,20.2,1.00,1.510,119.4 +20.3,1.00,1.910,87.0,20.1,1.00,1.880,87.0 +20.1,1.00,2.450,49.0,20.0,1.00,2.450,47.6 +20.1,1.00,3.500,23.3,20.0,1.00,3.610,23.7 +19.4,1.00,4.480,9.9,19.4,1.00,4.460,12.5 +19.2,1.00,6.640,23.8,19.1,1.00,6.610,24.2 +18.8,1.00,6.860,28.6,18.8,1.00,7.080,31.1 +18.6,1.00,6.320,31.3,18.8,1.00,6.610,36.8 +18.1,1.00,6.690,26.4,18.1,1.00,6.810,29.1 +17.6,1.00,6.670,22.9,17.5,1.00,6.720,24.4 +17.4,1.00,7.200,20.6,17.5,1.00,7.490,23.5 +16.6,1.00,8.800,18.7,16.5,1.00,8.810,19.2 +16.2,1.00,9.550,17.0,16.1,1.00,9.600,17.5 +15.8,1.00,10.120,20.1,15.6,1.00,10.180,20.6 +15.7,1.00,10.570,20.7,15.6,1.00,10.620,21.2 +16.3,1.00,10.380,18.2,16.2,1.00,10.450,18.7 +17.4,1.00,9.530,15.4,17.3,1.00,9.640,15.8 +18.8,1.00,11.880,20.3,18.6,1.00,12.000,20.4 +19.5,1.00,12.830,20.9,19.3,1.00,12.930,20.9 +19.3,1.00,13.860,16.4,19.1,1.00,13.940,16.6 +18.5,1.00,14.250,16.3,18.3,1.00,14.320,16.4 +17.8,1.00,14.460,15.0,17.6,1.00,14.520,15.2 +16.9,1.00,15.380,20.6,16.7,1.00,15.440,20.5 +15.8,1.00,15.290,16.1,15.7,1.00,15.360,16.4 +14.6,1.01,15.630,21.4,14.3,1.01,15.730,21.5 +13.3,1.01,17.760,27.2,13.1,1.01,17.860,27.3 +12.1,1.01,18.120,28.6,11.8,1.01,18.220,28.7 +10.6,1.01,19.020,30.0,10.4,1.01,19.110,30.1 +9.5,1.01,19.350,30.9,9.3,1.01,19.450,30.9 +8.4,1.01,17.170,32.1,8.2,1.01,17.240,32.3 +7.4,1.01,17.130,34.7,7.2,1.01,17.210,34.9 +6.9,1.01,16.190,34.4,6.6,1.01,16.250,34.7 +6.7,1.01,15.860,36.3,6.4,1.01,15.920,36.6 +6.4,1.01,15.380,35.4,6.2,1.01,15.430,35.8 +6.3,1.01,15.190,36.8,6.1,1.01,15.240,37.1 +6.2,1.01,14.960,36.8,6.0,1.01,15.010,37.2 +5.9,1.01,14.540,34.8,5.7,1.01,14.590,35.3 +5.7,1.01,13.860,35.5,5.5,1.01,13.900,35.9 +5.9,1.01,13.670,35.3,5.7,1.01,13.710,35.8 +6.0,1.01,12.340,33.4,5.8,1.01,12.360,33.8 +6.4,1.01,11.640,30.1,6.2,1.01,11.670,30.4 +7.3,1.01,10.330,27.2,7.1,1.01,10.360,27.5 +8.7,1.01,9.470,27.4,8.4,1.01,9.500,27.6 +9.8,1.01,8.800,26.6,9.6,1.01,8.820,26.8 +10.7,1.01,8.130,25.9,10.5,1.01,8.160,26.1 +11.3,1.01,7.760,24.8,11.1,1.01,7.770,25.0 +11.7,1.01,7.520,24.1,11.5,1.01,7.530,24.4 +11.7,1.01,8.200,22.7,11.5,1.01,8.190,23.0 +11.0,1.01,9.040,24.2,10.8,1.01,9.040,24.6 +10.8,1.01,9.200,30.0,10.6,1.01,9.210,30.3 +10.9,1.00,8.930,33.5,10.7,1.00,8.940,34.0 +11.7,1.00,8.670,41.7,11.5,1.00,8.690,42.6 +11.9,1.00,7.690,51.7,11.7,1.00,7.710,52.2 +12.4,1.00,7.610,55.8,12.2,1.00,7.620,56.2 +12.9,1.00,6.610,70.2,12.7,1.00,6.610,70.2 +13.4,1.00,6.370,66.3,13.2,1.00,6.430,67.5 +12.9,1.00,6.060,51.1,12.8,1.00,6.030,53.8 +13.8,1.00,5.670,70.2,13.6,1.00,5.700,71.8 +14.1,1.00,6.150,72.1,13.9,1.00,6.190,73.1 +14.2,1.00,5.320,79.2,14.0,1.00,5.340,78.9 +14.5,1.00,5.760,70.1,14.3,1.00,5.780,71.0 +14.5,1.00,5.700,60.9,14.3,1.00,5.680,63.0 +14.8,1.00,5.830,76.3,14.7,1.00,5.860,76.6 +15.1,1.00,6.230,74.5,14.9,1.00,6.250,74.9 +15.2,1.00,6.530,73.5,15.0,1.00,6.540,73.8 +15.3,1.00,6.660,74.2,15.1,1.00,6.670,74.8 +15.5,1.00,7.190,73.3,15.3,1.00,7.170,73.5 +15.9,1.00,6.680,83.6,15.7,1.00,6.690,84.0 +16.2,1.00,6.460,83.4,16.0,1.00,6.490,83.9 +16.5,1.00,6.980,91.7,16.3,1.00,7.000,92.0 +16.9,1.00,6.720,103.2,16.7,1.00,6.720,103.4 +16.9,1.00,6.980,99.6,16.8,1.00,6.980,100.0 +17.3,1.00,6.740,93.6,17.2,1.00,6.760,94.3 +17.7,0.99,7.240,100.8,17.5,0.99,7.260,101.1 +17.7,0.99,6.430,103.4,17.6,0.99,6.290,104.6 +18.8,0.99,7.500,116.7,18.6,0.99,7.540,116.9 +18.9,0.99,6.990,116.6,18.7,0.99,7.060,116.9 +19.2,0.99,6.280,114.7,19.0,0.99,6.340,115.0 +19.2,0.99,6.060,92.9,19.0,0.99,6.110,93.2 +19.1,0.99,5.530,74.2,18.9,0.99,5.600,75.3 +19.2,0.99,4.180,60.4,19.1,0.99,4.170,64.0 +18.2,0.99,6.510,55.9,18.0,0.99,6.290,59.2 +17.9,0.99,6.450,53.5,18.0,0.99,5.980,58.9 +18.0,0.99,6.570,52.1,17.9,0.99,6.220,55.8 +18.6,0.99,6.180,61.9,18.6,0.99,5.770,64.4 +18.9,0.99,5.850,68.8,19.0,0.99,5.220,72.0 +19.4,0.99,5.780,73.9,19.4,0.99,5.410,74.8 +19.3,0.99,6.260,78.6,19.2,0.99,6.210,79.5 +19.6,0.99,6.300,86.2,19.5,0.99,6.320,86.9 +19.7,0.99,6.340,89.7,19.6,0.99,6.390,90.0 +20.1,0.99,6.260,99.6,19.9,0.99,6.250,99.8 +20.3,0.99,6.220,109.0,20.1,0.99,6.200,109.2 +20.4,0.99,6.530,113.5,20.3,0.99,6.520,113.8 +20.5,0.99,7.050,117.7,20.3,0.99,7.050,117.9 +20.4,0.99,7.160,130.7,20.2,0.99,7.150,130.8 +20.6,0.99,8.690,125.8,20.4,0.99,8.650,125.9 +20.7,0.99,8.120,131.2,20.5,0.99,8.320,131.2 +20.8,0.99,8.800,130.0,20.6,0.99,8.990,130.1 +21.0,0.99,8.880,134.2,20.8,0.99,9.110,134.5 +20.9,0.99,8.630,137.6,20.8,0.99,8.870,137.9 +21.0,0.99,8.700,141.0,20.9,0.99,8.910,141.3 +21.4,0.99,7.650,147.3,21.3,0.99,7.950,148.7 +21.5,0.99,8.240,151.0,21.4,0.99,8.560,150.7 +21.8,0.99,7.790,148.8,21.7,0.99,8.200,149.5 +22.0,0.99,8.060,145.2,22.0,0.99,8.580,146.9 +22.0,0.99,8.610,154.8,21.9,0.99,9.060,156.2 +22.1,0.99,10.030,155.8,22.1,0.99,10.460,156.9 +22.2,0.99,10.070,157.2,22.1,0.99,10.620,157.7 +22.1,0.99,9.660,151.5,22.0,0.99,10.100,151.9 +22.2,0.99,10.350,150.0,22.2,0.99,10.820,150.8 +22.3,0.99,9.230,147.6,22.3,0.99,9.720,148.8 +22.3,0.99,9.750,145.3,22.3,0.99,10.260,146.5 +22.2,0.99,9.490,142.8,22.1,0.99,10.050,143.5 +22.3,0.99,9.600,144.7,22.3,0.99,10.080,145.6 +22.5,0.99,10.020,146.7,22.4,0.99,10.330,147.0 +22.6,0.99,9.880,149.7,22.5,0.99,10.150,150.1 +22.6,0.99,9.170,149.0,22.5,0.99,9.450,149.6 +22.6,0.99,9.210,150.4,22.5,0.99,9.520,151.0 +22.7,0.99,9.240,152.1,22.5,0.99,9.630,152.7 +22.8,0.99,10.110,151.4,22.7,0.99,10.500,152.0 +23.0,0.99,11.380,152.9,22.9,0.99,11.910,153.0 +22.9,0.99,11.610,153.6,22.8,0.99,12.140,154.1 +23.1,0.99,11.770,160.2,23.1,0.99,12.240,161.1 +23.2,0.99,11.280,164.6,23.1,0.99,11.830,165.4 +23.3,0.99,11.230,171.0,23.3,0.99,11.860,171.8 +23.3,0.99,11.130,169.8,23.3,0.99,11.680,170.4 +23.3,0.99,10.490,171.3,23.3,0.99,11.060,172.2 +23.4,0.99,11.010,176.0,23.4,0.99,11.620,176.9 +23.6,0.99,10.670,182.8,23.6,0.99,11.360,183.6 +23.6,0.99,11.050,180.6,23.6,0.99,11.700,181.8 +23.5,0.99,10.400,184.8,23.6,0.99,11.000,185.9 +23.7,0.99,11.130,186.1,23.7,0.99,11.840,187.5 +23.5,0.99,9.860,187.4,23.4,0.99,10.460,187.9 +23.4,0.99,8.460,191.3,23.4,0.99,9.000,192.0 +23.3,0.99,8.180,189.1,23.3,0.99,8.820,190.5 +23.4,0.99,7.360,196.0,23.3,0.99,8.110,196.6 +23.3,0.99,6.280,199.0,23.5,0.99,7.690,205.3 +23.4,0.99,6.280,200.1,23.6,0.99,7.340,206.1 +23.8,0.99,8.340,202.9,23.7,0.99,8.710,204.6 +23.7,0.99,7.740,201.2,23.6,0.99,8.020,202.2 +23.6,0.99,6.880,203.2,23.4,0.99,7.230,204.5 +23.6,0.99,6.910,206.2,23.5,0.99,7.360,207.7 +23.9,0.99,6.650,216.6,24.0,0.99,7.410,219.7 +23.6,0.99,4.400,205.5,23.6,0.99,4.710,209.2 +23.8,0.99,4.690,211.5,23.9,0.99,4.850,215.0 +23.3,0.99,4.120,211.0,23.9,0.99,4.250,217.3 +23.6,0.99,4.180,216.0,24.4,0.99,4.290,219.3 +23.3,0.99,3.380,209.3,23.8,0.99,3.580,216.2 +23.2,0.99,4.710,186.5,23.2,0.99,4.670,188.6 +23.4,0.99,3.180,202.0,23.3,0.99,3.210,202.2 +23.1,0.99,3.260,194.9,23.0,0.99,3.210,195.4 +23.1,0.99,2.670,210.1,23.0,0.99,2.560,210.3 +22.9,0.99,1.710,260.8,22.9,0.99,1.940,258.6 +23.5,0.99,3.640,278.7,23.6,0.99,3.910,273.6 +22.8,0.99,3.030,301.8,22.7,0.99,3.040,299.6 +22.4,0.99,3.070,334.9,22.3,0.99,3.070,334.8 +22.3,0.99,4.140,359.7,22.3,0.99,4.120,358.3 +22.1,0.99,5.350,5.6,22.1,0.99,5.660,1.8 +21.9,0.99,5.910,358.0,21.8,0.99,6.640,358.0 +20.5,0.99,10.290,34.8,20.4,0.99,10.600,35.5 +19.9,0.99,10.680,46.0,19.7,0.99,10.720,46.0 +19.7,0.99,10.260,51.6,19.5,0.99,10.280,51.8 +20.3,0.99,10.270,59.2,20.1,0.99,10.310,59.3 +20.9,0.99,10.500,61.9,20.7,0.99,10.560,61.9 +21.4,0.99,11.450,62.8,21.2,0.99,11.510,62.6 +20.9,0.99,10.190,47.9,20.8,0.99,10.220,48.2 +20.8,0.99,10.870,49.5,20.6,0.99,10.910,49.7 +20.6,0.99,11.850,52.6,20.4,0.99,11.900,52.8 +20.6,0.99,12.080,54.6,20.4,0.99,12.160,54.7 +21.0,0.99,12.530,57.6,20.8,0.99,12.620,57.7 +20.9,0.99,12.410,56.1,20.7,0.99,12.500,56.2 +20.5,0.99,12.970,61.4,20.3,0.99,13.050,61.5 +19.9,0.99,12.910,62.2,19.7,0.99,12.990,62.3 +19.5,0.99,12.850,64.7,19.3,0.99,12.930,64.9 +19.2,0.99,13.420,64.6,19.0,0.99,13.510,64.8 +18.9,0.99,13.190,67.5,18.7,0.99,13.270,67.6 +18.7,0.99,13.450,72.9,18.5,0.99,13.540,73.0 +18.6,0.99,13.140,72.5,18.4,0.99,13.230,72.7 +18.4,0.99,14.800,72.9,18.2,0.99,14.870,73.0 +18.2,0.99,13.940,73.8,18.0,0.99,14.030,73.9 +17.7,0.99,13.270,69.4,17.5,0.99,13.330,69.6 +17.5,0.99,13.420,70.3,17.3,0.99,13.480,70.5 +17.6,0.99,12.900,75.5,17.4,0.99,12.950,75.6 +17.1,0.99,12.650,76.1,16.9,0.99,12.700,76.4 +17.1,0.99,11.920,82.0,16.9,0.99,11.970,82.1 +17.2,0.99,10.550,78.8,17.0,0.99,10.620,78.9 +17.1,0.99,11.080,77.0,16.9,0.99,11.100,77.0 +17.1,0.99,9.650,73.7,16.9,0.99,9.680,73.9 +17.0,0.99,10.260,70.2,16.9,0.99,10.270,70.5 +17.4,0.99,9.140,72.5,17.2,0.99,9.170,72.6 +17.6,0.99,9.130,73.0,17.4,0.99,9.160,73.0 +17.9,0.99,9.700,70.4,17.7,0.99,9.730,70.4 +18.1,0.99,9.900,76.0,17.9,0.99,9.950,76.0 +18.3,0.99,10.220,80.2,18.1,0.99,10.280,80.2 +18.3,0.99,10.130,85.2,18.1,0.99,10.180,85.2 +18.2,0.99,10.240,86.2,18.0,0.99,10.270,86.2 +18.1,0.99,10.410,87.7,17.9,0.99,10.460,87.7 +18.2,0.99,10.370,90.1,18.0,0.99,10.420,90.3 +18.4,0.99,9.620,92.8,18.2,0.99,9.670,92.9 +18.5,0.99,9.140,99.3,18.3,0.99,9.190,99.4 +18.7,0.99,9.100,105.0,18.5,0.99,9.160,105.1 +18.7,0.99,8.950,105.9,18.6,0.99,8.990,106.1 +18.8,0.99,8.680,104.8,18.6,0.99,8.720,105.0 +18.9,0.99,8.490,106.8,18.7,0.99,8.530,106.9 +19.0,0.99,8.470,107.5,18.8,0.99,8.510,107.7 +19.2,0.99,8.290,112.5,19.0,0.99,8.330,112.6 +19.4,0.99,8.610,113.1,19.2,0.99,8.660,113.3 +19.5,0.99,8.830,113.0,19.4,0.99,8.890,113.2 +19.7,0.99,9.040,109.3,19.5,0.99,9.100,109.5 +19.9,0.99,9.060,111.8,19.7,0.99,9.130,112.0 +20.1,0.99,8.850,110.4,19.9,0.99,8.890,110.6 +20.3,0.99,8.930,109.7,20.1,0.99,8.970,109.9 +20.4,0.99,9.670,107.5,20.3,0.99,9.710,107.7 +20.6,0.99,10.220,110.4,20.4,0.99,10.280,110.7 +20.7,0.99,10.580,111.2,20.5,0.99,10.620,111.4 +20.8,0.99,10.810,114.2,20.6,0.99,10.880,114.4 +20.9,0.99,10.520,118.5,20.8,0.99,10.740,118.9 +21.2,0.99,11.450,113.8,21.1,0.99,11.730,114.4 +21.3,0.99,11.130,118.6,21.2,0.99,11.480,118.9 +21.5,0.99,11.460,122.1,21.3,0.99,11.790,122.6 +21.6,0.99,10.990,127.7,21.4,0.99,11.380,128.1 +21.7,0.99,11.130,129.7,21.5,0.99,11.520,130.0 +21.8,0.99,11.080,128.6,21.7,0.99,11.470,129.3 +21.9,0.99,11.340,131.2,21.7,0.99,11.740,131.7 +22.0,0.99,10.980,132.5,21.9,0.99,11.440,133.3 +22.1,0.99,10.780,138.3,21.9,0.99,11.230,138.9 +22.1,0.99,10.150,135.7,21.9,0.99,10.570,136.6 +22.1,0.99,10.350,127.1,22.0,0.99,10.830,128.2 +22.2,0.99,11.150,143.4,22.2,0.99,11.620,143.8 +22.2,0.99,10.390,135.6,22.2,0.99,10.910,136.6 +22.2,0.99,10.590,139.0,22.2,0.99,11.140,139.6 +22.2,0.99,10.370,138.7,22.1,0.99,10.900,139.4 +22.3,0.99,9.940,135.4,22.2,0.99,10.400,136.4 +22.3,0.99,9.900,138.7,22.2,0.99,10.430,139.5 +22.3,0.99,8.920,135.3,22.2,0.99,9.300,136.0 +22.3,0.99,8.710,136.2,22.2,0.99,9.100,137.1 +22.4,0.99,8.160,137.0,22.3,0.99,8.610,138.5 +22.2,0.99,7.120,125.0,22.2,0.99,7.550,127.1 +22.1,0.99,7.590,115.6,22.1,0.99,8.030,118.5 +22.3,0.99,8.560,120.8,22.3,0.99,8.980,122.9 +22.2,0.99,8.200,127.9,22.2,0.99,8.500,133.4 +22.1,0.99,8.280,129.3,21.9,0.99,8.480,134.1 +22.2,0.99,8.220,123.7,22.1,0.99,8.800,128.0 +22.4,0.99,7.610,126.4,22.4,0.99,8.230,127.9 +22.4,0.99,8.220,125.1,22.4,0.99,8.380,129.0 +22.4,0.99,7.560,130.1,22.4,0.99,8.350,135.3 +22.4,0.99,8.310,128.7,22.3,0.99,8.290,132.3 +22.4,0.99,7.130,118.3,22.4,0.99,7.780,118.9 +22.1,0.99,9.000,122.2,22.0,0.99,9.150,125.9 +22.1,0.99,8.320,135.8,21.9,0.99,8.380,141.2 +22.3,1.00,7.230,114.9,22.2,1.00,7.620,119.5 +22.1,1.00,6.850,114.9,22.0,1.00,7.300,115.3 +21.8,1.00,7.070,109.2,21.8,1.00,7.300,115.6 +21.8,1.00,7.480,119.2,21.6,1.00,7.510,121.6 +22.0,1.00,5.470,112.3,21.9,1.00,5.650,114.6 +21.6,1.00,5.890,70.5,21.6,1.00,5.510,84.4 +21.4,1.00,7.000,51.6,21.4,1.00,6.710,55.7 +20.5,1.00,9.200,39.4,20.5,1.00,9.490,41.3 +20.5,1.00,8.820,45.1,20.7,1.00,9.230,44.2 +20.4,1.00,7.310,8.3,20.2,1.00,7.430,9.6 +17.8,1.00,9.360,341.8,17.6,1.00,9.250,343.1 +16.4,1.00,11.010,337.1,16.3,1.00,10.940,337.4 +15.6,1.00,11.530,342.1,15.4,1.00,11.480,342.4 +14.8,1.00,11.280,345.3,14.6,1.00,11.270,345.6 +13.6,1.00,12.500,349.4,13.5,1.00,12.480,349.6 +13.0,1.00,12.640,352.9,12.9,1.00,12.620,353.1 +12.7,1.00,12.360,349.3,12.5,1.00,12.350,349.6 +12.3,1.00,12.030,349.2,12.1,1.00,12.030,349.4 +11.8,1.00,12.320,349.7,11.7,1.00,12.310,349.9 +11.6,1.00,12.570,351.5,11.4,1.00,12.570,351.6 +10.9,1.00,12.560,351.5,10.7,1.00,12.550,351.7 +10.5,1.00,11.540,350.5,10.3,1.00,11.540,350.8 +10.3,1.00,12.740,350.3,10.2,1.00,12.730,350.5 +10.3,1.00,12.800,353.0,10.1,1.00,12.810,353.3 +10.3,1.00,12.350,358.2,10.2,1.00,12.360,358.3 +10.3,1.00,12.560,356.7,10.1,1.00,12.580,356.9 +10.2,1.00,13.260,357.4,10.1,1.00,13.270,357.5 +10.4,1.00,11.970,4.8,10.2,1.00,12.000,4.9 +10.4,1.00,11.840,2.0,10.2,1.00,11.870,2.3 +10.1,1.00,12.090,5.0,9.9,1.00,12.120,5.2 +10.0,1.00,13.530,4.9,9.8,1.00,13.570,5.0 +10.0,1.00,12.610,8.2,9.8,1.00,12.650,8.3 +9.8,1.00,13.570,7.2,9.6,1.00,13.600,7.3 +9.8,1.00,13.830,8.4,9.6,1.00,13.870,8.6 +9.7,1.00,13.970,14.3,9.5,1.00,14.010,14.5 +9.4,1.00,14.380,15.9,9.2,1.00,14.420,16.1 +9.3,1.00,15.000,19.1,9.1,1.00,15.050,19.2 +9.3,1.00,13.910,19.2,9.0,1.00,13.950,19.4 +9.1,1.00,14.310,21.8,8.9,1.00,14.380,22.0 +8.9,1.00,14.790,26.2,8.7,1.00,14.850,26.4 +9.0,1.00,14.640,29.0,8.8,1.00,14.710,29.1 +9.0,1.00,14.550,29.4,8.8,1.00,14.600,29.6 +8.9,1.00,13.520,30.0,8.7,1.00,13.580,30.3 +9.1,1.00,15.290,35.8,8.9,1.00,15.370,36.0 +9.1,1.00,14.760,36.8,8.9,1.00,14.820,37.1 +9.2,1.00,14.850,38.9,9.0,1.00,14.920,39.1 +9.4,1.00,15.050,40.7,9.2,1.00,15.120,41.0 +9.2,1.00,14.790,40.5,9.0,1.00,14.850,40.9 +9.0,1.00,14.920,40.9,8.8,1.00,14.990,41.3 +9.1,1.00,15.490,42.9,8.8,1.00,15.570,43.3 +8.9,1.00,16.070,45.5,8.7,1.00,16.150,45.8 +8.4,1.00,15.880,46.0,8.2,1.00,15.960,46.2 +7.9,1.00,15.920,44.6,7.7,1.00,15.990,44.8 +7.1,1.00,13.620,37.5,6.9,1.00,13.660,37.9 +6.6,1.00,12.520,34.6,6.4,1.00,12.540,35.0 +6.2,1.00,11.790,29.2,5.9,1.00,11.800,29.6 +6.4,1.00,10.890,26.8,6.2,1.00,10.900,27.1 +6.5,1.00,9.780,23.0,6.3,1.00,9.780,23.3 +6.7,1.00,9.750,17.7,6.5,1.00,9.750,18.1 +7.3,1.00,9.340,18.1,7.1,1.00,9.350,18.4 +8.2,1.00,9.460,20.5,8.0,1.00,9.480,20.7 +8.1,1.00,9.860,22.7,7.9,1.00,9.880,22.8 +8.2,1.00,10.280,22.1,8.0,1.00,10.300,22.5 +8.4,1.00,10.620,29.3,8.2,1.00,10.640,29.7 +8.7,1.00,11.020,35.3,8.5,1.00,11.040,35.8 +9.0,1.00,11.080,42.3,8.8,1.00,11.110,42.8 +9.5,1.00,10.450,53.3,9.3,1.00,10.470,53.5 +9.5,1.00,10.190,52.8,9.3,1.00,10.210,53.2 +9.4,1.00,10.480,51.5,9.2,1.00,10.500,51.8 +9.5,1.00,10.070,45.2,9.3,1.00,10.080,46.4 +9.1,1.00,10.720,47.0,8.9,1.00,10.720,47.5 +9.1,1.00,10.150,46.5,8.9,1.00,10.170,46.8 +8.7,1.00,11.140,45.3,8.6,1.00,11.160,46.0 +7.8,1.00,10.930,36.9,7.6,1.00,10.930,37.6 +7.8,1.00,10.330,37.1,7.6,1.00,10.330,37.5 +6.9,1.00,10.140,18.6,6.7,1.00,10.110,19.1 +6.1,1.00,12.280,20.9,5.9,1.00,12.240,21.2 +6.5,1.00,10.940,14.7,6.3,1.00,10.920,14.9 +6.1,0.99,11.910,17.9,5.9,0.99,11.900,18.1 +5.7,0.99,12.670,11.1,5.5,0.99,12.660,11.3 +6.5,0.99,12.300,18.6,6.3,0.99,12.300,18.8 +5.9,0.99,12.900,7.9,5.7,0.99,12.900,8.1 +5.9,0.99,13.020,356.9,5.7,0.99,13.030,357.1 +5.6,0.99,12.930,354.5,5.4,0.99,12.940,354.7 +6.4,0.99,12.180,0.9,6.2,0.99,12.160,1.2 +6.2,0.99,13.350,358.5,6.0,0.99,13.360,358.6 +6.5,0.99,12.700,342.4,6.3,0.99,12.710,342.6 +6.6,0.99,12.640,355.9,6.4,0.99,12.670,356.0 +6.4,0.99,12.660,1.0,6.2,0.99,12.680,1.1 +6.3,0.99,13.150,359.9,6.1,0.99,13.170,0.1 +6.3,0.99,13.150,356.8,6.0,0.99,13.180,356.9 +6.2,0.99,13.280,354.6,6.0,0.99,13.300,354.7 +6.0,0.99,13.750,350.2,5.8,0.99,13.780,350.3 +5.8,0.99,11.780,337.7,5.6,0.99,11.800,337.9 +5.8,0.99,14.490,342.1,5.6,0.99,14.540,342.3 +5.8,0.99,15.140,341.8,5.6,0.99,15.190,341.9 +5.6,0.99,13.440,342.3,5.4,0.99,13.480,342.5 +5.5,0.99,12.740,340.1,5.3,0.99,12.760,340.3 +5.1,0.99,14.290,339.6,4.9,0.99,14.330,339.7 +4.9,0.99,13.460,337.2,4.7,0.99,13.510,337.3 +4.8,0.99,13.300,335.5,4.6,0.99,13.330,335.6 +4.8,0.99,13.600,331.5,4.6,0.99,13.640,331.6 +4.9,0.99,13.470,331.5,4.7,0.99,13.520,331.6 +4.9,0.99,13.790,325.9,4.7,0.99,13.830,326.0 +5.0,0.99,14.260,325.8,4.8,0.99,14.310,325.9 +5.0,0.99,14.580,322.5,4.8,0.99,14.630,322.6 +5.1,0.99,14.490,324.4,4.9,0.99,14.540,324.5 +5.0,1.00,14.340,324.5,4.8,1.00,14.400,324.6 +5.2,1.00,15.080,325.6,4.9,1.00,15.150,325.7 +5.2,1.00,15.160,326.5,5.0,1.00,15.230,326.6 +5.2,1.00,15.720,332.6,5.0,1.00,15.800,332.7 +5.4,1.00,16.280,336.6,5.2,1.00,16.380,336.7 +6.1,1.00,15.630,342.3,5.9,1.00,15.760,342.6 +6.4,1.00,15.510,341.8,6.2,1.00,15.640,342.0 +6.6,1.00,16.330,349.3,6.4,1.00,16.460,349.6 +6.5,1.00,17.390,355.9,6.3,1.00,17.520,356.1 +6.1,1.00,16.870,359.2,5.9,1.00,16.960,359.3 +5.6,1.00,15.790,1.9,5.4,1.00,15.850,2.1 +5.2,1.00,14.300,6.3,5.0,1.00,14.350,6.5 +4.9,1.00,13.970,9.0,4.6,1.00,14.020,9.2 +4.5,1.00,13.930,12.4,4.3,1.00,13.970,12.5 +4.2,1.00,13.910,13.1,4.0,1.00,13.940,13.2 +3.6,1.00,13.470,13.4,3.4,1.00,13.500,13.5 +3.3,1.00,12.890,15.7,3.1,1.00,12.910,15.9 +3.1,1.00,11.930,14.1,2.9,1.00,11.950,14.2 +3.4,1.00,10.290,10.0,3.2,1.00,10.300,10.1 +3.8,1.00,10.230,2.3,3.6,1.00,10.250,2.4 +4.1,1.00,8.430,352.0,3.9,1.00,8.440,352.2 +5.2,1.00,8.290,348.7,5.0,1.00,8.290,348.8 +5.8,1.00,8.270,344.5,5.6,1.00,8.270,344.7 +6.6,1.00,7.820,343.1,6.4,1.00,7.830,343.3 +7.0,1.00,8.040,344.9,6.8,1.00,8.050,345.1 +7.4,1.00,8.470,346.5,7.2,1.00,8.480,346.8 +7.7,1.00,7.690,358.2,7.4,1.00,7.690,358.1 +7.1,1.00,7.450,4.3,6.9,1.00,7.430,4.3 +6.8,1.00,7.390,8.1,6.6,1.00,7.370,8.2 +6.8,1.00,7.820,9.4,6.6,1.00,7.820,9.6 +6.9,1.00,7.770,18.7,6.7,1.00,7.770,18.9 +7.1,1.00,7.000,22.7,6.9,1.00,7.000,23.0 +7.5,1.00,6.770,30.0,7.3,1.00,6.770,30.3 +7.7,1.00,6.590,32.1,7.5,1.00,6.580,32.7 +8.0,1.00,6.780,33.1,7.8,1.00,6.770,33.8 +8.6,1.00,6.190,46.9,8.4,1.00,6.190,47.5 +9.1,1.00,5.540,49.4,8.9,1.00,5.540,50.3 +9.5,1.00,5.500,55.1,9.3,1.00,5.500,55.9 +10.0,1.00,5.180,68.6,9.8,1.00,5.180,69.0 +10.4,1.00,5.080,67.3,10.2,1.00,5.080,67.9 +10.6,1.00,5.060,71.7,10.4,1.00,5.050,72.3 +10.8,1.00,5.250,67.5,10.6,1.00,5.240,67.9 +11.0,1.00,5.270,62.5,10.9,1.00,5.270,63.5 +11.3,1.00,5.320,66.0,11.1,1.00,5.320,66.8 +11.4,1.00,5.580,67.4,11.2,1.00,5.560,67.6 +11.6,1.00,5.650,68.0,11.4,1.00,5.630,68.3 +11.5,1.00,6.340,65.6,11.3,1.00,6.320,65.9 +11.5,1.00,6.930,68.7,11.3,1.00,6.920,68.9 +11.5,1.00,6.690,59.7,11.3,1.00,6.680,60.0 +11.6,1.00,5.880,53.6,11.4,1.00,5.880,53.7 +11.8,1.00,5.130,48.8,11.6,1.00,5.120,48.8 +11.7,1.00,5.530,52.8,11.5,1.00,5.530,52.9 +11.7,1.00,6.640,53.5,11.5,1.00,6.630,53.8 +11.5,1.01,6.810,45.6,11.3,1.01,6.790,46.0 +11.3,1.01,6.870,43.7,11.1,1.01,6.860,44.1 +11.4,1.01,6.800,45.8,11.2,1.01,6.800,46.1 +11.6,1.01,6.570,44.4,11.4,1.01,6.570,44.7 +11.7,1.01,6.520,48.1,11.6,1.01,6.520,48.5 +11.8,1.01,6.470,47.1,11.6,1.01,6.470,47.4 +11.8,1.01,6.320,48.6,11.7,1.01,6.320,49.0 +11.9,1.01,6.600,49.1,11.7,1.01,6.590,49.5 +11.8,1.01,6.910,54.6,11.7,1.01,6.910,55.0 +12.0,1.01,6.710,53.8,11.8,1.01,6.700,54.1 +11.9,1.01,7.230,54.3,11.7,1.01,7.230,54.7 +11.8,1.01,7.440,53.2,11.6,1.01,7.440,53.6 +11.7,1.01,7.120,49.0,11.6,1.01,7.110,49.4 +11.7,1.01,7.430,48.7,11.5,1.01,7.420,49.1 +11.5,1.01,7.470,49.4,11.3,1.01,7.450,49.8 +11.5,1.01,7.330,48.6,11.3,1.01,7.320,49.0 +12.0,1.01,6.720,52.7,11.8,1.01,6.710,53.0 +12.2,1.01,6.520,49.5,12.0,1.01,6.500,49.6 +12.7,1.01,6.420,51.7,12.5,1.01,6.420,51.7 +12.9,1.00,6.600,61.9,12.7,1.00,6.600,61.8 +13.2,1.00,6.690,61.6,13.0,1.00,6.690,61.6 +13.6,1.00,6.410,63.8,13.4,1.00,6.420,63.9 +13.5,1.00,6.790,73.0,13.3,1.00,6.800,72.9 +13.8,1.00,6.090,74.1,13.6,1.00,6.110,74.3 +14.0,1.00,6.070,80.4,13.8,1.00,6.090,80.6 +14.3,1.00,5.340,87.4,14.2,1.00,5.360,87.6 +14.6,1.00,4.870,93.5,14.4,1.00,4.910,93.9 +14.8,1.00,4.680,94.5,14.6,1.00,4.700,94.9 +15.0,1.00,5.350,110.5,14.9,1.00,5.380,110.8 +15.2,1.00,5.350,106.7,15.1,1.00,5.420,107.4 +15.3,1.00,4.840,106.7,15.2,1.00,4.870,106.9 +15.6,1.00,4.390,110.4,15.5,1.00,4.440,110.9 +15.8,1.00,3.680,113.7,15.7,1.00,3.730,114.0 +15.8,1.00,4.010,101.2,15.6,1.00,4.010,102.0 +15.9,1.00,4.040,88.4,15.7,1.00,4.090,90.6 +16.0,1.00,3.500,84.9,15.8,1.00,3.560,86.0 +16.0,1.00,3.350,78.9,15.8,1.00,3.410,81.6 +16.0,1.00,4.250,76.9,15.9,1.00,4.410,79.9 +16.2,1.00,4.310,82.1,16.0,1.00,4.380,83.1 +16.1,1.00,4.820,85.2,15.9,1.00,4.870,86.3 +16.4,1.00,4.900,92.5,16.2,1.00,4.910,92.6 +16.5,1.00,4.910,90.5,16.3,1.00,4.910,90.6 +16.6,1.00,5.530,98.6,16.4,1.00,5.540,98.7 +16.6,1.00,5.390,104.1,16.4,1.00,5.390,104.1 +16.6,1.00,5.840,107.7,16.4,1.00,5.850,107.9 +16.8,1.00,5.430,114.3,16.6,1.00,5.450,114.4 +16.9,1.00,5.490,124.3,16.8,1.00,5.540,124.4 +16.7,1.00,5.930,129.7,16.6,1.00,5.980,130.0 +16.8,1.00,6.080,135.9,16.6,1.00,6.120,136.1 +16.9,1.00,6.150,139.5,16.8,1.00,6.230,139.6 +17.1,1.00,5.560,142.3,16.9,1.00,5.620,142.6 +17.2,1.00,5.380,147.3,17.0,1.00,5.430,147.6 +17.3,1.00,5.380,148.8,17.1,1.00,5.450,149.2 +17.4,1.00,4.740,153.8,17.2,1.00,4.800,154.5 +17.4,1.00,4.520,147.0,17.3,1.00,4.550,147.9 +17.5,1.00,4.180,147.7,17.4,1.00,4.300,149.0 +17.5,1.00,4.040,130.8,17.4,1.00,4.190,137.7 +17.5,1.00,4.540,121.5,17.3,1.00,4.550,123.9 +17.5,1.00,4.830,119.7,17.4,1.00,4.700,121.8 +17.4,1.00,5.220,114.1,17.3,1.00,5.170,116.8 +17.5,1.00,5.820,113.0,17.3,1.00,5.860,115.1 +17.8,1.00,5.390,119.3,17.7,1.00,5.510,119.8 +17.7,1.00,6.110,116.0,17.5,1.00,6.120,116.7 +17.8,1.00,6.480,118.6,17.6,1.00,6.610,119.2 +18.0,1.00,5.690,133.8,17.8,1.00,5.700,134.0 +18.1,1.00,6.050,135.9,17.9,1.00,6.060,136.1 +18.2,0.99,5.820,146.5,18.0,0.99,5.830,146.7 +18.3,0.99,6.500,147.4,18.1,0.99,6.500,147.7 +18.4,0.99,6.820,151.1,18.2,0.99,6.830,151.4 +18.4,0.99,7.090,161.2,18.2,0.99,7.100,161.4 +18.4,0.99,7.520,162.9,18.3,0.99,7.720,163.4 +18.7,0.99,8.530,167.9,18.5,0.99,8.760,168.4 +19.0,0.99,8.980,172.8,18.9,0.99,9.270,173.6 +19.3,0.99,8.670,178.4,19.2,0.99,8.920,179.5 +19.6,0.99,9.430,187.3,19.5,0.99,9.800,187.9 +19.6,0.99,9.040,194.2,19.5,0.99,9.440,195.3 +19.8,0.99,8.270,203.1,19.7,0.99,8.680,204.1 +19.9,0.99,7.540,216.9,19.8,0.99,8.110,217.8 +19.9,0.99,8.530,223.5,19.8,0.99,9.050,224.1 +20.1,0.99,8.380,227.3,20.0,0.99,8.930,228.7 +20.1,0.99,9.110,223.6,20.0,0.99,9.400,225.0 +19.6,0.99,8.350,231.5,19.5,0.99,8.850,233.3 +19.1,0.99,6.720,237.4,19.2,0.99,7.980,241.8 +18.8,0.99,6.430,249.9,18.7,0.99,7.010,249.9 +18.2,0.99,6.430,253.0,18.1,0.99,7.370,251.1 +17.7,0.99,8.730,247.3,17.6,0.99,9.190,248.7 +18.1,0.99,7.710,258.6,18.0,0.99,8.320,257.1 +18.1,0.99,6.010,251.2,18.0,0.99,6.570,253.9 +18.7,0.99,4.660,239.5,18.6,0.99,5.040,239.6 +19.9,0.98,6.790,241.6,19.9,0.98,7.420,241.1 +20.4,0.98,9.670,235.5,20.3,0.98,9.930,236.6 +20.2,0.98,9.220,230.9,20.1,0.98,9.570,231.7 +19.9,0.98,8.450,227.0,19.7,0.98,8.680,228.1 +19.9,0.98,8.430,222.6,19.7,0.98,8.600,223.0 +19.7,0.98,8.370,225.3,19.6,0.98,8.700,225.9 +19.6,0.98,7.810,224.3,19.5,0.98,8.160,225.6 +19.5,0.98,8.440,225.2,19.4,0.98,8.890,226.5 +19.5,0.98,7.620,215.8,19.4,0.98,8.200,217.8 +19.4,0.98,7.760,218.8,19.4,0.98,8.280,219.5 +19.5,0.98,8.370,220.3,19.4,0.98,8.910,220.9 +19.4,0.98,8.660,223.1,19.4,0.98,9.210,223.7 +19.6,0.98,9.070,217.2,19.6,0.98,9.690,217.1 +20.3,0.98,12.350,229.0,20.3,0.98,12.970,229.7 +20.4,0.98,10.830,218.3,20.4,0.98,11.460,218.7 +20.2,0.98,9.490,211.4,20.2,0.98,9.950,211.8 +20.5,0.98,10.050,220.4,20.5,0.98,10.470,221.0 +20.2,0.98,9.950,214.9,20.1,0.98,10.540,215.2 +20.1,0.98,9.170,216.5,20.1,0.98,9.820,216.6 +20.2,0.98,8.480,215.7,20.3,0.98,9.450,215.7 +20.4,0.98,9.110,215.0,20.4,0.98,9.910,215.3 +20.9,0.98,10.710,211.7,20.9,0.98,11.250,212.3 +20.9,0.98,9.840,213.1,20.9,0.98,10.480,213.9 +21.2,0.98,9.130,211.0,21.0,0.98,9.480,211.5 +21.3,0.98,9.490,212.3,21.2,0.98,9.890,212.8 +21.3,0.98,9.170,208.3,21.2,0.98,9.610,208.9 +21.4,0.98,9.460,207.8,21.2,0.98,9.900,208.7 +21.4,0.98,9.190,210.8,21.4,0.98,9.760,211.7 +21.3,0.98,9.640,208.2,21.2,0.98,10.140,209.0 +21.2,0.98,9.620,203.4,21.2,0.98,10.080,205.0 +21.2,0.98,10.540,203.4,21.3,0.98,11.260,205.0 +21.5,0.98,10.630,198.0,21.6,0.98,11.440,200.8 +21.3,0.98,9.920,196.5,21.4,0.98,10.630,198.8 +21.5,0.98,10.570,195.0,21.6,0.98,11.380,197.4 +21.7,0.98,11.230,199.1,21.9,0.98,12.240,201.8 +21.6,0.98,10.320,191.6,21.8,0.98,11.400,194.1 +21.8,0.98,10.650,194.3,21.9,0.98,11.220,195.8 +21.7,0.98,10.120,192.5,21.8,0.98,10.920,194.3 +21.8,0.98,10.250,189.8,22.0,0.98,11.370,192.1 +21.9,0.98,10.360,188.2,22.1,0.98,11.290,191.1 +22.0,0.98,10.360,187.7,22.2,0.98,11.260,191.5 +22.0,0.98,9.520,187.0,22.0,0.98,10.200,189.7 +21.9,0.98,9.250,187.1,21.9,0.98,9.780,190.1 +22.1,0.98,9.310,189.5,22.2,0.98,9.630,190.8 +22.4,0.98,10.250,188.5,22.5,0.98,10.590,191.2 +22.7,0.98,10.400,183.8,22.6,0.98,10.550,185.3 +22.4,0.98,9.610,176.5,22.4,0.98,9.960,182.0 +21.9,0.98,9.330,167.0,22.3,0.98,10.030,173.9 +21.8,0.98,9.020,163.5,22.1,0.98,9.930,170.1 +22.2,0.98,9.960,169.3,22.5,0.98,10.530,175.4 +21.5,0.98,9.360,159.9,21.7,0.98,10.480,163.3 +21.8,0.98,10.630,163.0,22.1,0.98,11.450,168.7 +21.8,0.98,10.550,164.9,22.2,0.98,11.360,170.9 +21.8,0.98,11.080,166.5,21.9,0.98,11.550,172.8 +21.6,0.99,9.400,164.8,21.4,0.99,10.190,168.9 +21.1,0.99,10.040,172.5,21.0,0.99,10.690,176.0 +20.8,0.99,10.050,166.7,21.2,0.99,10.910,170.8 +21.0,0.99,10.870,170.3,22.1,0.99,11.980,174.4 +21.1,0.99,10.650,167.8,22.2,0.99,11.830,173.5 +21.2,0.99,10.940,168.6,22.1,0.99,11.860,173.5 +21.3,0.99,10.500,166.4,22.1,0.99,11.480,173.3 +21.6,0.99,11.100,172.3,22.7,0.99,11.830,177.0 +22.6,0.99,11.360,176.3,22.9,0.99,11.580,178.7 +22.9,0.99,11.230,176.3,23.0,0.99,11.400,178.1 +22.7,0.99,11.090,177.1,22.9,0.99,11.310,179.0 +22.4,0.99,9.930,172.8,22.7,0.99,10.160,174.9 +22.1,0.99,9.370,173.6,22.5,0.99,9.660,175.8 +21.9,0.99,8.150,163.9,22.4,0.99,8.320,166.8 +21.7,0.99,8.270,163.3,22.1,0.99,8.340,166.6 +21.4,0.99,7.530,156.5,21.5,0.99,7.670,159.3 +21.9,0.99,7.960,160.5,21.9,0.99,8.090,163.2 +22.2,0.99,8.450,160.2,22.3,0.99,8.870,165.9 +23.0,0.99,9.190,165.6,23.4,0.99,9.180,170.0 +22.3,0.99,8.230,163.0,22.4,0.99,8.630,166.7 +22.9,0.99,7.860,174.8,23.2,0.99,8.100,178.6 +21.8,0.99,7.490,166.7,22.1,0.99,7.660,172.4 +22.7,0.99,9.510,164.5,22.7,0.99,9.490,170.9 +15.9,0.99,8.570,343.2,16.1,0.99,7.720,342.0 +14.5,0.99,9.680,346.4,14.3,0.99,9.620,346.6 +13.7,0.99,10.100,357.8,13.5,0.99,10.020,357.9 +13.0,0.99,9.620,359.7,12.8,0.99,9.570,359.7 +12.7,0.99,9.660,4.8,12.5,0.99,9.610,4.8 +12.2,0.99,9.820,1.3,12.0,0.99,9.780,1.5 +11.0,0.99,8.750,353.3,10.8,0.99,8.720,353.5 +10.3,0.99,8.990,0.1,10.1,0.99,8.950,0.2 +10.0,0.99,9.570,353.5,9.8,0.99,9.540,353.7 +9.4,0.99,9.680,358.7,9.2,0.99,9.630,359.0 +8.7,0.99,10.130,0.9,8.5,0.99,10.080,1.1 +8.4,0.99,10.940,350.7,8.2,0.99,10.910,350.8 +7.9,0.99,11.160,352.2,7.7,0.99,11.130,352.4 +7.7,0.99,10.540,341.1,7.5,0.99,10.530,341.2 +7.3,0.99,12.070,342.0,7.1,0.99,12.050,342.1 +7.1,0.99,12.750,342.1,6.9,0.99,12.750,342.2 +6.9,0.99,12.630,345.9,6.7,0.99,12.640,346.0 +6.6,0.99,13.140,342.9,6.4,0.99,13.170,342.9 +6.5,1.00,12.750,346.4,6.3,1.00,12.790,346.4 +6.5,1.00,12.690,348.6,6.3,1.00,12.730,348.7 +6.4,1.00,12.540,349.1,6.2,1.00,12.540,349.3 +6.2,1.00,13.340,354.7,6.0,1.00,13.380,354.7 +6.0,1.00,13.370,359.5,5.8,1.00,13.410,359.5 +5.8,1.00,13.280,357.8,5.6,1.00,13.270,358.0 +5.3,1.00,13.340,358.3,5.1,1.00,13.370,358.4 +5.1,1.00,14.450,1.0,4.9,1.00,14.470,1.1 +4.9,1.00,16.340,2.0,4.7,1.00,16.410,2.1 +4.8,1.00,15.150,2.2,4.6,1.00,15.220,2.3 +4.8,1.00,12.920,3.2,4.5,1.00,12.960,3.4 +4.2,1.00,13.710,6.7,4.0,1.00,13.730,6.9 +3.6,1.00,14.360,9.5,3.4,1.00,14.410,9.6 +3.1,1.00,15.290,7.6,2.9,1.00,15.320,7.8 +2.9,1.00,15.340,10.9,2.7,1.00,15.390,11.0 +2.8,1.00,14.120,12.1,2.5,1.00,14.160,12.2 +2.6,1.00,15.500,12.7,2.4,1.00,15.540,12.8 +2.4,1.00,12.860,19.0,2.2,1.00,12.890,19.1 +2.4,1.00,11.300,21.7,2.1,1.00,11.340,21.8 +2.2,1.00,11.540,14.5,2.0,1.00,11.560,14.7 +1.9,1.00,12.090,14.0,1.7,1.00,12.100,14.2 +2.0,1.00,11.610,13.5,1.8,1.00,11.610,13.7 +2.1,1.00,10.550,7.8,1.9,1.00,10.550,8.0 +2.3,1.00,10.510,8.1,2.1,1.00,10.500,8.3 +3.1,1.00,9.680,8.5,2.8,1.00,9.660,8.6 +3.6,1.00,9.150,7.3,3.4,1.00,9.160,7.6 +3.7,1.00,9.190,7.7,3.5,1.00,9.170,7.9 +3.9,1.00,8.850,4.0,3.6,1.00,8.830,4.1 +4.1,1.00,8.530,6.5,3.9,1.00,8.530,6.8 +4.2,1.00,8.570,9.3,4.0,1.00,8.560,9.6 +4.1,1.00,8.490,10.9,3.9,1.00,8.470,11.2 +4.3,1.00,7.910,11.7,4.1,1.00,7.880,12.0 +4.4,1.00,7.640,9.5,4.2,1.00,7.610,9.8 +4.6,1.00,7.510,7.7,4.5,1.00,7.480,7.9 +4.7,1.00,7.620,4.8,4.5,1.00,7.580,5.2 +4.8,1.00,7.440,7.3,4.6,1.00,7.410,7.5 +4.7,1.00,7.400,5.8,4.5,1.00,7.360,6.1 +4.6,1.00,7.370,5.4,4.4,1.00,7.340,5.7 +4.6,1.00,7.780,3.3,4.4,1.00,7.740,3.6 +4.8,1.00,7.410,4.4,4.6,1.00,7.370,4.7 +5.2,1.00,6.970,7.2,5.0,1.00,6.930,7.5 +5.4,1.00,6.950,11.7,5.2,1.00,6.900,12.0 +5.7,1.00,7.150,6.8,5.5,1.00,7.110,7.1 +5.7,1.00,6.960,5.9,5.5,1.00,6.920,6.1 +5.7,1.00,7.370,5.8,5.5,1.00,7.330,6.0 +6.1,1.00,7.210,355.1,5.9,1.00,7.160,355.4 +5.9,1.00,6.400,1.1,5.7,1.00,6.360,1.3 +6.4,0.99,6.100,3.6,6.3,0.99,6.060,3.9 +7.1,0.99,7.040,0.0,6.9,0.99,7.010,0.2 +7.4,0.99,6.800,355.8,7.2,0.99,6.770,355.9 +7.5,0.99,6.780,0.4,7.4,0.99,6.740,0.6 +7.8,0.99,6.420,359.6,7.6,0.99,6.380,359.7 +8.0,0.99,6.270,4.5,7.8,0.99,6.220,4.7 +8.1,0.99,6.050,10.1,7.9,0.99,6.020,10.4 +8.1,0.99,6.430,13.0,7.9,0.99,6.380,13.2 +8.5,0.99,6.390,10.8,8.3,0.99,6.350,11.0 +8.7,0.99,6.720,15.7,8.6,0.99,6.670,16.0 +9.3,0.99,6.220,13.5,9.1,0.99,6.180,13.8 +9.1,0.99,6.370,14.0,9.0,0.99,6.330,14.2 +9.6,0.99,6.380,20.3,9.4,0.99,6.350,20.6 +9.3,0.99,6.990,20.9,9.1,0.99,6.940,21.2 +9.7,0.99,7.340,27.0,9.5,0.99,7.310,27.1 +10.3,0.99,7.390,29.6,10.1,0.99,7.360,29.8 +10.3,0.99,6.590,34.6,10.2,0.99,6.570,35.0 +10.2,0.99,6.970,34.5,10.0,0.99,6.950,35.0 +10.0,0.99,6.810,30.1,9.8,0.99,6.780,30.6 +10.2,0.99,7.120,31.1,10.0,0.99,7.090,31.6 +10.0,0.99,7.600,35.2,9.8,0.99,7.570,35.8 +9.5,0.99,9.390,28.9,9.3,0.99,9.360,29.3 +9.6,0.99,8.620,38.7,9.4,0.99,8.600,39.1 +9.8,0.99,8.000,29.3,9.6,0.99,7.970,29.7 +9.7,0.99,8.300,30.0,9.5,0.99,8.270,30.5 +9.5,0.99,8.220,27.8,9.3,0.99,8.200,28.2 +9.5,0.99,9.030,30.6,9.3,0.99,9.000,30.9 +9.1,0.99,8.940,18.4,8.9,0.99,8.910,18.7 +8.7,0.99,9.050,20.4,8.6,0.99,9.020,20.6 +8.4,0.99,9.710,15.2,8.2,0.99,9.680,15.4 +7.8,0.99,9.930,6.7,7.6,0.99,9.900,6.9 +7.0,0.99,11.570,1.7,6.9,0.99,11.540,1.8 +6.9,1.00,10.920,0.5,6.7,1.00,10.910,0.6 +6.6,1.00,11.760,358.7,6.4,1.00,11.760,358.7 +6.4,1.00,12.440,355.1,6.2,1.00,12.460,355.1 +6.0,1.00,13.040,354.2,5.8,1.00,13.060,354.2 +5.7,1.00,13.890,353.5,5.5,1.00,13.920,353.5 +5.2,1.00,14.240,356.5,5.0,1.00,14.280,356.5 +5.1,1.00,13.770,354.8,4.9,1.00,13.830,354.8 +5.0,1.00,14.390,354.3,4.8,1.00,14.450,354.4 +4.9,1.00,14.890,354.6,4.7,1.00,14.940,354.7 +4.1,1.00,14.850,359.1,3.9,1.00,14.900,359.1 +3.6,1.00,13.900,4.3,3.4,1.00,13.940,4.5 +3.0,1.00,13.050,9.8,2.8,1.00,13.100,10.0 +2.6,1.00,13.280,14.7,2.4,1.00,13.320,14.9 +2.5,1.00,12.630,17.7,2.3,1.00,12.670,17.9 +2.8,1.00,10.950,15.2,2.6,1.00,10.970,15.4 +3.3,1.00,9.640,11.3,3.1,1.00,9.650,11.6 +4.0,1.00,9.490,7.7,3.8,1.00,9.500,7.9 +5.3,1.00,9.030,9.2,5.1,1.00,9.050,9.2 +6.4,1.00,8.510,8.4,6.2,1.00,8.520,8.5 +7.1,1.00,8.560,8.3,6.9,1.00,8.570,8.3 +7.7,1.00,7.990,14.4,7.5,1.00,7.990,14.5 +8.0,1.00,7.720,14.3,7.8,1.00,7.720,14.5 +8.0,1.00,7.890,17.8,7.8,1.00,7.890,18.0 +7.5,1.00,8.060,23.1,7.3,1.00,8.050,23.4 +7.4,1.00,8.200,28.0,7.2,1.00,8.200,28.3 +7.3,1.00,7.950,28.6,7.1,1.00,7.940,29.1 +7.6,1.00,7.460,33.0,7.5,1.00,7.460,33.7 +7.9,1.00,7.040,30.1,7.7,1.00,7.020,31.1 +8.1,1.00,7.320,31.6,8.0,1.00,7.300,32.6 +7.4,1.00,7.800,25.1,7.3,1.00,7.770,25.7 +7.4,1.00,7.990,24.6,7.3,1.00,7.970,24.9 +7.5,1.00,8.310,23.7,7.3,1.00,8.290,24.3 +7.4,1.00,8.020,25.9,7.2,1.00,7.990,26.4 +7.5,1.00,7.840,27.2,7.3,1.00,7.800,27.7 +7.7,1.00,7.390,32.6,7.6,1.00,7.360,33.1 +8.2,1.00,6.990,38.8,8.1,1.00,6.970,39.4 +8.7,1.00,6.340,34.0,8.5,1.00,6.310,34.7 +8.4,1.00,6.900,29.4,8.2,1.00,6.860,30.1 +8.4,1.00,5.960,25.2,8.2,1.00,5.910,25.8 +8.5,1.00,5.640,25.3,8.4,1.00,5.590,25.7 +8.5,1.00,6.150,21.7,8.3,1.00,6.110,22.0 +9.1,1.00,4.800,8.3,8.9,1.00,4.770,8.3 +9.7,1.00,5.190,4.4,9.6,1.00,5.160,4.4 +10.2,1.00,6.150,6.6,10.0,1.00,6.140,6.8 +10.2,1.00,6.830,11.1,10.1,1.00,6.820,11.2 +10.3,1.00,7.790,13.5,10.1,1.00,7.800,13.6 +10.5,1.00,8.220,16.9,10.3,1.00,8.240,16.9 +10.8,1.00,8.320,21.3,10.6,1.00,8.350,21.3 +10.7,1.01,9.390,20.4,10.5,1.01,9.420,20.4 +10.1,1.01,10.610,21.8,9.9,1.01,10.620,21.9 +9.7,1.01,11.290,25.5,9.5,1.01,11.300,25.6 +9.3,1.01,11.150,30.4,9.2,1.01,11.170,30.5 +9.2,1.01,11.140,33.0,9.0,1.01,11.150,33.2 +8.6,1.01,11.160,31.1,8.4,1.01,11.180,31.3 +8.3,1.01,11.130,35.6,8.2,1.01,11.150,35.8 +8.1,1.01,11.400,34.6,7.9,1.01,11.420,34.8 +7.8,1.01,10.970,35.2,7.6,1.01,10.980,35.5 +7.2,1.01,12.120,35.2,7.0,1.01,12.140,35.5 +7.1,1.01,11.120,35.6,6.9,1.01,11.130,35.9 +6.9,1.01,10.840,38.6,6.8,1.01,10.860,38.9 +7.0,1.01,10.330,39.3,6.9,1.01,10.350,39.7 +6.4,1.01,10.220,38.4,6.3,1.01,10.240,38.8 +7.3,1.01,9.830,41.1,7.1,1.01,9.860,41.5 +6.7,1.01,8.770,30.9,6.5,1.01,8.760,31.4 +7.3,1.01,7.940,26.2,7.1,1.01,7.940,26.6 +8.7,1.01,7.200,27.3,8.5,1.01,7.210,27.5 +9.9,1.01,6.570,25.8,9.7,1.01,6.590,25.9 +10.7,1.00,6.260,28.8,10.5,1.00,6.280,29.0 +11.3,1.00,5.660,33.7,11.1,1.00,5.680,33.8 +11.7,1.00,6.180,32.5,11.6,1.00,6.190,32.7 +11.9,1.00,6.390,35.3,11.7,1.00,6.400,35.6 +11.3,1.00,7.420,31.4,11.2,1.00,7.410,31.9 +10.8,1.00,7.530,33.5,10.6,1.00,7.530,34.1 +11.2,1.00,6.870,44.9,11.1,1.00,6.900,46.2 +11.8,1.00,6.830,68.5,11.6,1.00,6.840,68.8 +12.2,1.00,6.760,80.5,12.0,1.00,6.790,80.8 +12.4,1.00,6.710,89.4,12.2,1.00,6.740,89.7 +12.7,1.00,6.010,90.8,12.5,1.00,6.060,91.3 +13.1,1.00,5.740,102.7,13.0,1.00,5.790,103.0 +13.8,1.00,6.190,116.1,13.6,1.00,6.240,116.5 +13.9,1.00,5.620,106.3,13.7,1.00,5.650,106.5 +14.5,1.00,6.150,124.0,14.3,1.00,6.180,124.2 +14.7,1.00,5.950,115.6,14.5,1.00,6.030,116.1 +15.1,1.00,5.990,122.2,15.0,1.00,6.130,123.1 +15.4,1.00,6.810,119.2,15.2,1.00,6.860,119.5 +15.8,1.00,6.810,119.1,15.7,1.00,7.050,120.3 +16.0,1.00,7.190,111.9,15.9,1.00,7.390,113.4 +16.5,0.99,7.740,114.4,16.4,0.99,8.000,115.6 +17.2,0.99,8.120,126.4,17.1,0.99,8.560,127.8 +17.8,0.99,9.330,130.3,17.6,0.99,9.570,130.6 +18.0,0.99,9.590,131.3,17.9,0.99,9.950,131.9 +18.5,0.99,10.330,140.3,18.4,0.99,10.770,141.1 +18.8,0.99,12.400,145.6,18.7,0.99,12.830,146.4 +19.0,0.99,11.100,147.7,19.0,0.99,11.560,149.5 +19.7,0.99,10.980,155.5,19.8,0.99,11.370,158.5 +19.7,0.99,12.650,174.4,19.7,0.99,13.200,175.0 +19.8,0.99,12.370,178.7,19.8,0.99,13.010,179.3 +20.2,0.99,11.680,187.7,20.3,0.99,12.420,189.1 +20.6,0.99,11.440,203.1,20.8,0.99,12.280,206.7 +19.0,0.99,9.790,249.4,19.1,0.99,10.100,246.4 +17.5,0.99,8.560,263.6,17.9,0.99,9.350,257.9 +16.5,0.99,8.320,273.6,16.7,0.99,8.730,270.4 +16.2,0.99,7.400,273.3,16.1,0.99,7.930,272.1 +15.8,0.99,6.800,295.5,15.9,0.99,7.550,290.3 +15.0,0.99,5.340,302.6,14.9,0.99,5.910,298.7 +15.0,0.99,5.120,293.3,14.9,0.99,5.730,292.3 +15.3,0.99,6.040,285.3,15.5,0.99,7.280,285.4 +14.6,0.99,5.370,280.6,14.6,0.99,6.150,283.2 +13.9,0.99,6.390,287.5,13.7,0.99,6.550,287.8 +13.0,0.99,6.450,307.9,12.8,0.99,6.460,307.8 +13.1,0.99,7.570,319.1,12.9,0.99,7.650,318.8 +13.3,0.99,8.300,317.7,13.2,0.99,8.350,317.9 +13.3,0.99,7.670,319.4,13.2,0.99,7.720,319.4 +14.0,0.99,10.480,320.2,13.8,0.99,10.550,320.1 +13.7,0.99,12.850,326.9,13.5,0.99,12.900,327.0 +11.1,0.99,15.870,330.9,10.9,0.99,15.910,331.0 +10.2,0.99,15.480,339.4,10.0,0.99,15.560,339.4 +10.6,0.99,15.200,340.0,10.4,0.99,15.300,340.0 +10.4,0.99,15.100,344.9,10.2,0.99,15.170,345.0 +9.1,1.00,14.740,339.8,8.9,1.00,14.810,340.0 +7.9,1.00,15.880,345.8,7.7,1.00,15.940,345.9 +6.5,1.00,17.850,352.4,6.3,1.00,17.930,352.5 +6.3,1.00,14.060,356.3,6.1,1.00,14.120,356.2 +5.8,1.00,13.470,356.4,5.6,1.00,13.530,356.6 +5.2,1.00,15.170,1.4,5.0,1.00,15.220,1.5 +4.5,1.00,13.650,4.8,4.3,1.00,13.710,5.0 +4.2,1.00,13.350,6.8,4.0,1.00,13.400,7.0 +4.0,1.00,13.080,6.7,3.9,1.00,13.120,6.9 +3.9,1.00,12.410,6.0,3.7,1.00,12.440,6.2 +3.8,1.00,11.750,6.6,3.6,1.00,11.770,6.7 +3.8,1.00,11.270,7.5,3.6,1.00,11.290,7.7 +3.7,1.00,10.570,7.9,3.5,1.00,10.590,8.1 +3.7,1.00,9.850,8.6,3.5,1.00,9.860,8.7 +3.9,1.00,8.820,7.8,3.7,1.00,8.830,7.9 +4.3,1.00,7.140,5.7,4.1,1.00,7.150,6.0 +4.7,1.00,6.440,352.4,4.5,1.00,6.440,352.7 +5.4,1.00,5.990,346.9,5.2,1.00,6.000,347.2 +6.8,1.00,5.580,344.3,6.6,1.00,5.600,344.6 +8.1,1.00,6.150,343.0,7.9,1.00,6.160,343.1 +9.0,1.00,6.550,339.6,8.8,1.00,6.570,339.7 +9.7,1.00,6.510,339.4,9.5,1.00,6.520,339.7 +10.2,1.00,6.140,342.4,10.0,1.00,6.150,342.6 +10.5,1.00,6.070,344.7,10.3,1.00,6.070,344.8 +10.4,1.00,5.340,347.7,10.2,1.00,5.350,348.1 +10.3,1.00,5.050,350.3,10.1,1.00,5.050,350.3 +10.1,1.00,4.070,356.0,9.9,1.00,4.060,356.1 +10.2,1.00,3.880,358.5,10.0,1.00,3.870,358.5 +10.2,1.00,3.570,359.1,10.0,1.00,3.550,359.4 +10.2,1.00,3.230,0.3,10.0,1.00,3.210,0.8 +9.6,1.00,2.850,354.0,9.4,1.00,2.780,355.4 +9.2,1.00,2.480,354.3,9.0,1.00,2.350,356.9 +9.0,1.00,2.340,343.0,8.9,1.00,2.130,345.7 +9.0,1.00,2.200,346.5,9.0,1.00,1.920,349.9 +9.1,1.00,1.920,349.4,9.2,1.00,1.560,354.2 +9.1,1.00,1.930,348.2,9.3,1.00,1.570,352.9 +9.1,1.00,2.000,352.3,9.5,1.00,1.630,357.9 +9.1,1.00,1.570,11.1,9.6,1.00,1.240,22.2 +9.2,1.00,1.430,14.7,9.7,1.00,1.100,27.7 +9.5,1.00,0.910,11.5,10.0,1.00,0.580,25.8 +9.8,1.00,1.120,1.5,10.4,1.00,0.800,6.1 +10.3,1.00,0.620,19.7,10.7,1.00,0.380,28.7 +11.3,1.00,0.270,339.6,11.1,1.00,0.250,337.5 +11.8,1.00,0.620,232.1,11.7,1.00,0.620,231.5 +12.3,1.00,0.850,190.4,12.1,1.00,0.850,190.4 +12.6,1.00,1.050,195.5,12.4,1.00,1.050,195.7 +12.9,1.00,1.660,186.3,12.7,1.00,1.670,186.6 +13.1,1.00,2.200,183.4,13.0,1.00,2.210,183.5 +13.1,1.00,2.360,185.9,13.0,1.00,2.400,186.1 +13.1,1.00,2.540,185.3,12.9,1.00,2.580,185.4 +13.1,1.00,2.390,194.4,13.0,1.00,2.450,194.7 +13.2,1.00,2.350,191.4,13.0,1.00,2.420,191.7 +13.2,1.00,2.370,193.8,13.1,1.00,2.440,194.0 +13.3,1.00,2.420,192.0,13.1,1.00,2.580,191.7 +13.4,1.00,2.450,179.4,13.3,1.00,2.680,179.9 +13.0,1.00,1.230,233.7,13.0,1.00,1.270,217.8 +12.7,1.00,1.780,257.7,12.9,1.00,1.800,249.2 +12.7,1.00,2.770,269.1,12.8,1.00,2.840,264.1 +12.3,1.00,3.710,274.3,12.6,1.00,3.920,269.2 +11.8,1.00,4.070,276.2,12.3,1.00,4.490,271.3 +12.0,1.00,3.670,283.8,12.6,1.00,4.000,278.7 +12.2,1.00,2.930,296.1,12.7,1.00,3.280,291.8 +12.3,1.00,2.680,304.5,12.8,1.00,2.990,297.9 +12.9,1.00,2.890,305.6,13.3,1.00,3.110,298.9 +13.3,1.00,2.870,311.6,13.5,1.00,3.030,304.8 +13.5,1.00,1.820,296.9,13.8,1.00,2.070,287.6 +13.5,1.00,1.370,316.3,13.6,1.00,1.710,295.5 +14.2,1.00,1.160,298.6,14.0,1.00,1.220,297.0 +14.6,1.00,0.820,5.2,14.4,1.00,0.820,2.8 +15.0,1.00,0.250,321.4,14.8,1.00,0.330,321.4 +15.3,1.00,0.160,240.4,15.1,1.00,0.220,293.8 +15.4,1.00,0.330,332.4,15.3,1.00,0.470,339.2 +15.3,1.00,0.360,81.2,15.3,1.00,0.370,37.0 +15.4,1.00,0.300,259.4,15.4,1.00,0.430,324.9 +15.1,1.00,0.550,154.1,15.1,1.00,0.320,147.0 +15.0,1.00,1.010,163.4,15.0,1.00,0.790,159.2 +14.7,1.00,1.500,189.7,14.8,1.00,1.290,190.6 +14.7,1.00,1.530,204.6,14.8,1.00,1.450,205.5 +14.6,1.00,1.350,201.0,14.7,1.00,1.470,202.4 +14.5,1.00,1.810,197.2,14.7,1.00,2.040,198.8 +14.5,1.00,1.620,205.3,14.6,1.00,1.870,206.2 +14.4,1.00,1.430,207.0,14.6,1.00,1.710,208.4 +14.1,1.00,0.890,186.3,14.2,1.00,1.210,189.2 +13.8,1.00,0.500,149.0,14.0,1.00,0.860,167.9 +13.7,1.00,0.030,318.2,14.0,1.00,0.660,180.2 +13.8,1.00,0.800,90.1,14.0,1.00,0.830,117.0 +14.0,1.00,1.360,95.9,14.3,1.00,1.480,111.4 +14.3,1.00,2.170,97.4,14.5,1.00,2.320,107.2 +14.6,1.00,2.770,91.1,14.8,1.00,2.850,98.9 +14.9,1.00,3.290,91.2,15.0,1.00,3.320,97.2 +15.2,1.00,3.520,96.7,15.1,1.00,3.550,99.2 +15.8,1.00,4.220,122.0,15.7,1.00,4.220,122.2 +16.0,1.00,4.850,125.5,15.9,1.00,4.860,125.8 +16.2,1.00,5.590,127.0,16.0,1.00,5.600,127.2 +16.3,1.00,6.530,134.2,16.1,1.00,6.560,134.3 +16.5,1.00,7.910,140.5,16.4,1.00,7.950,140.6 +16.5,1.00,8.040,141.8,16.4,1.00,8.250,142.2 +16.7,1.00,8.430,145.7,16.6,1.00,8.670,146.0 +16.9,1.00,8.990,144.3,16.7,1.00,9.330,145.3 +17.2,1.00,9.520,149.6,17.1,1.00,9.860,151.1 +17.5,1.00,10.750,151.0,17.4,1.00,10.980,151.2 +17.7,1.00,10.760,157.3,17.6,1.00,11.090,157.7 +17.8,1.00,10.090,160.8,17.7,1.00,10.560,161.6 +18.0,1.00,9.470,160.1,17.9,1.00,9.870,161.6 +18.3,0.99,10.290,160.8,18.2,0.99,10.620,161.4 +18.4,0.99,9.880,161.1,18.4,0.99,10.320,162.4 +18.8,0.99,10.240,162.6,18.8,0.99,10.710,164.2 +19.2,0.99,10.400,166.8,19.2,0.99,11.110,168.3 +19.3,0.99,10.020,162.7,19.3,0.99,10.680,163.9 +19.2,0.99,11.130,160.8,19.3,0.99,11.740,162.0 +19.7,0.99,10.950,163.1,19.8,0.99,11.700,165.4 +19.7,0.99,10.610,162.2,19.8,0.99,11.320,164.7 +19.9,0.99,10.820,160.2,20.0,0.99,11.490,162.4 +19.9,0.99,11.090,159.2,20.0,0.99,11.750,162.1 +20.2,0.99,11.000,162.0,20.3,0.99,11.700,163.4 +20.3,0.99,11.190,161.7,20.4,0.99,11.890,163.1 +19.9,0.99,10.950,160.3,19.9,0.99,11.670,161.9 +20.0,0.99,11.520,161.3,20.1,0.99,12.230,162.8 +20.3,0.99,12.240,163.3,20.3,0.99,12.980,164.6 +20.3,0.99,14.030,165.8,20.3,0.99,14.750,166.3 +20.3,0.99,14.010,166.3,20.4,0.99,14.800,167.1 +20.2,0.99,13.110,164.1,20.3,0.99,13.840,165.0 +20.2,0.99,13.070,164.4,20.3,0.99,13.860,165.3 +20.1,0.99,13.380,164.7,20.2,0.99,14.250,165.8 +20.1,0.99,13.040,165.9,20.2,0.99,13.760,167.1 +20.2,0.99,13.620,164.3,20.2,0.99,14.400,164.8 +20.1,0.99,12.640,162.3,20.1,0.99,13.440,163.3 +20.2,0.99,12.300,164.6,20.3,0.99,13.070,165.9 +19.9,0.99,10.620,163.5,20.0,0.99,11.380,165.4 +19.8,0.99,9.060,167.6,19.9,0.99,9.870,171.0 +20.1,0.99,8.790,169.9,20.5,0.99,10.500,175.6 +20.2,0.99,9.910,166.5,20.8,0.99,11.630,174.2 +20.4,0.99,10.780,170.8,21.0,0.99,12.220,174.4 +20.4,0.99,11.400,169.0,20.8,0.99,12.490,170.9 +20.5,0.99,11.380,169.1,20.8,0.99,12.270,171.4 +20.9,0.99,12.410,161.4,21.1,0.99,13.270,164.9 +21.1,0.99,11.900,158.1,21.3,0.99,12.650,160.9 +21.2,0.99,11.060,154.9,21.3,0.99,11.590,160.5 +21.1,0.99,11.120,154.2,21.3,0.99,11.910,161.3 +21.3,0.99,10.200,153.4,21.8,0.99,11.300,163.0 +21.3,0.99,12.380,143.5,21.7,0.99,12.880,149.4 +20.4,0.99,12.490,140.3,20.6,0.99,13.420,144.5 +20.5,0.99,13.110,144.2,21.0,0.99,14.110,147.5 +20.8,0.99,13.070,145.9,21.0,0.99,14.020,148.2 +20.5,0.99,12.470,150.4,20.6,0.99,13.380,151.4 +20.4,0.99,11.910,151.1,20.5,0.99,13.040,153.5 +20.9,0.99,11.610,151.8,21.0,0.99,12.320,153.0 +21.0,0.98,13.170,149.4,21.1,0.98,14.120,150.8 +20.8,0.98,12.480,151.9,20.7,0.98,13.230,152.9 +20.7,0.98,13.900,154.2,20.6,0.98,14.850,155.5 +20.2,0.98,12.350,154.0,20.2,0.98,13.320,155.9 +20.2,0.98,12.920,156.0,20.4,0.98,13.830,157.0 +20.5,0.98,13.490,158.7,20.8,0.98,14.460,160.0 +21.2,0.98,14.470,161.5,21.4,0.98,15.480,163.0 +21.1,0.98,14.610,162.3,21.2,0.98,15.460,163.3 +21.1,0.98,14.210,166.7,21.1,0.98,15.100,167.6 +21.1,0.98,13.070,176.8,21.2,0.98,13.960,177.5 +21.0,0.98,11.550,175.7,21.1,0.98,12.710,176.8 +21.0,0.98,12.020,172.7,21.2,0.98,13.120,174.3 +21.0,0.98,11.630,183.0,21.2,0.98,12.630,183.7 +21.6,0.98,12.900,185.8,21.8,0.98,14.050,187.1 +21.5,0.98,13.150,188.7,21.6,0.98,14.100,189.5 +21.6,0.98,13.290,195.1,21.7,0.98,14.200,196.0 +21.6,0.98,13.090,197.5,21.7,0.98,13.970,198.7 +21.5,0.98,11.940,205.5,21.5,0.98,12.860,206.8 +21.8,0.98,13.300,209.1,21.8,0.98,13.980,209.4 +21.6,0.98,13.350,220.1,21.9,0.98,14.450,220.2 +21.5,0.98,13.070,218.5,21.9,0.98,14.070,218.6 +20.5,0.98,8.330,252.9,20.5,0.98,8.810,250.1 +19.0,0.98,6.660,335.1,19.1,0.98,6.500,332.0 +18.3,0.98,5.880,340.2,18.4,0.98,6.180,338.5 +17.8,0.98,5.950,349.5,17.9,0.98,6.280,348.4 +18.0,0.98,6.430,355.9,18.3,0.98,6.470,353.9 +18.1,0.98,4.740,10.3,18.2,0.98,4.670,6.8 +17.5,0.99,4.130,19.6,17.6,0.99,4.180,13.9 +17.7,0.99,3.740,15.1,18.1,0.99,3.870,7.8 +17.4,0.99,3.610,27.6,17.7,0.99,3.610,21.7 +17.1,0.99,4.020,16.4,17.4,0.99,4.100,12.1 +16.6,0.99,3.820,27.6,16.8,0.99,3.810,22.4 +16.6,0.99,3.670,28.9,16.8,0.99,3.690,24.2 +16.0,0.99,5.070,12.9,16.0,0.99,5.070,12.4 +15.9,0.99,5.310,8.3,15.9,0.99,5.450,7.9 +15.6,0.99,3.820,6.6,15.6,0.99,4.040,6.1 +14.9,0.99,7.090,347.8,15.0,0.99,7.360,348.7 +14.9,0.99,7.480,345.2,15.2,0.99,7.930,344.6 +13.6,0.99,8.870,336.3,13.4,0.99,9.100,336.7 +13.7,0.99,9.730,341.9,13.5,0.99,9.720,342.1 +13.0,0.99,11.240,338.4,12.8,0.99,11.240,338.4 +12.3,0.99,11.640,338.6,12.1,0.99,11.650,338.6 +11.9,0.99,11.620,342.4,11.7,0.99,11.660,342.5 +12.4,0.99,9.960,348.9,12.2,0.99,10.020,348.8 +12.7,1.00,11.410,349.2,12.6,1.00,11.440,349.2 +11.7,1.00,11.460,353.4,11.5,1.00,11.500,353.3 +10.0,1.00,12.920,351.4,9.8,1.00,12.960,351.5 +9.0,1.00,13.090,350.9,8.8,1.00,13.140,351.0 +7.9,1.00,13.740,353.9,7.7,1.00,13.790,353.9 +7.0,1.00,13.700,358.1,6.8,1.00,13.750,358.1 +6.3,1.00,14.180,1.7,6.1,1.00,14.220,1.7 +5.3,1.00,14.050,3.0,5.1,1.00,14.090,3.1 +4.8,1.00,13.500,7.1,4.6,1.00,13.550,7.3 +4.5,1.00,13.650,8.7,4.3,1.00,13.690,8.9 +4.2,1.00,13.510,11.1,4.0,1.00,13.550,11.2 +3.9,1.00,13.360,15.2,3.7,1.00,13.400,15.3 +3.6,1.00,13.070,18.5,3.4,1.00,13.100,18.6 +3.4,1.00,12.850,17.6,3.2,1.00,12.870,17.8 +3.3,1.00,12.500,18.9,3.1,1.00,12.530,19.1 +3.3,1.00,11.630,18.7,3.1,1.00,11.650,18.9 +3.6,1.00,10.020,17.6,3.4,1.00,10.030,17.8 +4.3,1.00,9.110,11.5,4.1,1.00,9.120,11.8 +5.0,1.01,9.000,2.9,4.9,1.01,9.020,3.2 +6.5,1.01,8.720,359.9,6.3,1.01,8.750,360.0 +7.9,1.01,8.430,0.7,7.8,1.01,8.460,0.9 +8.8,1.01,9.060,1.3,8.7,1.01,9.070,1.3 +9.4,1.01,9.440,2.9,9.2,1.01,9.460,2.7 +9.3,1.01,9.600,2.6,9.2,1.01,9.600,2.7 +9.1,1.01,10.660,7.5,8.9,1.01,10.670,7.5 +8.3,1.01,10.180,10.2,8.1,1.01,10.200,10.3 +8.0,1.01,10.140,16.1,7.8,1.01,10.170,16.1 +7.8,1.01,10.500,23.4,7.6,1.01,10.530,23.5 +7.7,1.01,10.320,25.9,7.5,1.01,10.340,26.0 +7.5,1.01,10.430,28.7,7.3,1.01,10.460,28.8 +7.4,1.01,9.890,33.6,7.2,1.01,9.910,33.8 +7.2,1.01,9.490,34.7,7.0,1.01,9.500,35.0 +7.1,1.01,9.370,33.8,6.9,1.01,9.380,34.1 +6.9,1.01,9.300,35.9,6.8,1.01,9.300,36.3 +6.9,1.01,8.980,37.9,6.7,1.01,8.990,38.3 +7.1,1.01,8.460,42.5,6.9,1.01,8.470,42.8 +7.2,1.01,8.970,44.6,7.0,1.01,8.980,44.9 +7.2,1.01,8.890,45.7,7.0,1.01,8.900,46.0 +7.4,1.01,9.000,47.5,7.2,1.01,9.010,47.8 +7.5,1.01,8.940,48.1,7.3,1.01,8.940,48.4 +7.7,1.01,8.790,47.8,7.5,1.01,8.790,48.2 +7.8,1.01,8.560,48.1,7.7,1.01,8.570,48.5 +7.9,1.01,8.320,50.1,7.7,1.01,8.330,50.5 +8.7,1.01,7.290,49.6,8.6,1.01,7.290,49.8 +9.3,1.01,6.630,55.5,9.1,1.01,6.630,55.7 +9.7,1.01,6.030,61.8,9.5,1.01,6.030,61.9 +10.2,1.00,5.920,64.2,10.0,1.00,5.930,64.3 +10.7,1.00,6.040,67.5,10.5,1.00,6.040,67.6 +11.1,1.00,6.340,74.2,10.9,1.00,6.350,74.3 +11.2,1.00,6.720,80.4,11.0,1.00,6.740,80.6 +11.5,1.00,6.900,87.2,11.3,1.00,6.920,87.3 +11.8,1.00,6.940,92.2,11.6,1.00,6.970,92.3 +12.0,1.00,7.120,97.9,11.9,1.00,7.150,98.0 +12.2,1.00,7.210,99.8,12.0,1.00,7.240,100.0 +12.3,1.00,7.060,100.9,12.1,1.00,7.090,101.1 +12.4,1.00,7.120,103.0,12.3,1.00,7.150,103.3 +12.6,1.00,6.690,102.7,12.4,1.00,6.720,103.0 +12.8,1.00,6.160,101.6,12.6,1.00,6.190,101.9 +12.8,1.00,6.100,97.9,12.7,1.00,6.120,98.3 +12.9,1.00,6.020,92.4,12.7,1.00,6.060,92.8 +13.0,1.00,6.170,90.6,12.8,1.00,6.210,91.0 +13.0,1.00,6.550,83.2,12.8,1.00,6.540,83.4 +13.0,1.00,6.920,81.3,12.8,1.00,6.920,81.5 +12.9,1.00,7.100,82.7,12.7,1.00,7.110,83.0 +12.9,1.00,6.950,82.8,12.7,1.00,6.970,82.9 +12.9,1.00,6.270,87.2,12.7,1.00,6.290,87.3 +12.9,1.00,7.210,72.4,12.7,1.00,7.220,72.6 +12.8,1.00,7.180,73.6,12.6,1.00,7.180,73.8 +12.7,1.00,6.620,73.8,12.6,1.00,6.610,73.9 +12.7,1.00,6.960,74.0,12.5,1.00,6.950,74.2 +12.8,1.00,7.100,78.9,12.6,1.00,7.080,78.9 +13.2,1.00,6.470,77.7,13.0,1.00,6.460,77.6 +13.5,1.00,7.150,74.5,13.3,1.00,7.140,74.4 +13.4,1.00,6.880,66.8,13.3,1.00,6.880,66.9 +13.5,1.00,6.830,59.5,13.3,1.00,6.840,59.5 +13.6,1.00,6.270,50.5,13.4,1.00,6.290,50.7 +13.3,1.00,6.890,45.9,13.1,1.00,6.890,46.1 +13.0,1.00,6.780,42.4,12.8,1.00,6.770,42.8 +12.8,1.00,6.810,45.7,12.6,1.00,6.800,46.1 +12.5,1.00,6.240,35.7,12.3,1.00,6.240,36.2 +11.8,1.00,7.780,34.7,11.6,1.00,7.780,35.2 +11.3,1.00,7.330,40.5,11.1,1.00,7.320,41.0 +11.3,1.00,7.210,46.6,11.1,1.00,7.220,47.0 +11.7,1.00,7.440,52.7,11.5,1.00,7.450,53.0 +11.9,1.00,7.780,51.1,11.7,1.00,7.790,51.4 +11.5,1.00,8.110,44.8,11.3,1.00,8.110,45.2 +11.3,1.00,7.540,45.1,11.1,1.00,7.530,45.6 +10.5,1.00,7.990,38.5,10.3,1.00,7.960,39.2 +10.5,1.00,7.790,45.6,10.3,1.00,7.800,46.1 +10.5,1.00,7.400,45.4,10.3,1.00,7.410,46.0 +10.7,1.00,6.890,44.4,10.5,1.00,6.890,45.1 +11.7,1.00,6.410,48.1,11.5,1.00,6.420,48.5 +12.3,1.00,6.520,54.3,12.1,1.00,6.530,54.4 +12.6,1.00,6.070,65.1,12.4,1.00,6.080,65.0 +12.9,1.00,5.230,77.0,12.7,1.00,5.240,76.8 +13.3,1.00,4.260,66.0,13.1,1.00,4.270,65.8 +13.5,1.00,4.080,55.4,13.3,1.00,4.090,55.2 +13.5,1.00,4.360,44.9,13.3,1.00,4.380,44.9 +13.4,1.00,5.150,34.0,13.2,1.00,5.180,34.1 +13.0,1.00,6.310,31.7,12.8,1.00,6.310,31.9 +12.9,1.00,6.860,37.1,12.7,1.00,6.860,37.2 +12.9,1.00,7.010,45.9,12.7,1.00,7.020,46.0 +13.0,1.00,6.400,48.5,12.8,1.00,6.400,48.5 +12.9,1.00,6.760,49.7,12.7,1.00,6.770,49.8 +12.7,1.00,6.900,47.4,12.5,1.00,6.900,47.6 +12.4,1.00,7.050,47.1,12.2,1.00,7.050,47.4 +12.3,1.00,7.460,51.7,12.1,1.00,7.460,51.9 +12.1,1.00,8.260,48.3,11.9,1.00,8.260,48.5 +11.9,1.00,8.730,49.0,11.7,1.00,8.740,49.2 +11.7,1.00,8.560,48.0,11.5,1.00,8.560,48.2 +11.6,1.00,8.630,49.3,11.4,1.00,8.640,49.5 +11.4,1.00,9.120,47.6,11.2,1.00,9.130,47.9 +11.3,1.00,7.870,51.3,11.1,1.00,7.880,51.6 +11.2,1.00,7.580,42.8,11.0,1.00,7.580,43.1 +11.0,1.00,7.390,39.8,10.8,1.00,7.400,40.2 +11.5,1.00,6.650,42.2,11.3,1.00,6.660,42.4 +11.9,1.00,6.510,42.5,11.8,1.00,6.520,42.4 +12.4,1.00,6.580,43.7,12.3,1.00,6.610,43.6 +12.9,1.00,6.550,40.9,12.7,1.00,6.560,40.8 +13.2,1.00,6.760,41.9,13.0,1.00,6.800,41.9 +13.8,1.00,6.910,42.2,13.6,1.00,6.940,42.0 +13.6,1.00,7.480,33.6,13.4,1.00,7.480,33.8 +13.3,1.00,8.250,34.9,13.1,1.00,8.290,35.1 +12.7,1.00,8.210,29.2,12.5,1.00,8.230,29.4 +12.5,1.00,8.430,40.9,12.3,1.00,8.450,41.1 +12.4,1.00,8.230,43.7,12.2,1.00,8.250,43.9 +12.2,1.00,8.200,46.3,12.0,1.00,8.220,46.4 +12.0,1.00,8.670,49.8,11.8,1.00,8.690,49.9 +11.8,1.00,8.490,44.8,11.6,1.00,8.510,45.1 +11.6,1.00,7.950,42.5,11.4,1.00,7.960,42.9 +11.4,1.00,7.650,41.1,11.2,1.00,7.660,41.5 +11.5,1.00,7.110,49.0,11.3,1.00,7.130,49.5 +11.8,1.00,6.410,55.0,11.6,1.00,6.420,55.4 +11.8,1.00,5.660,50.2,11.7,1.00,5.660,50.6 +11.8,1.00,5.660,44.2,11.6,1.00,5.650,44.6 +10.6,1.00,5.660,25.3,10.5,1.00,5.610,26.9 +10.4,1.00,5.210,26.7,10.3,1.00,5.180,27.4 +10.6,1.00,5.290,22.2,10.4,1.00,5.250,22.9 +10.6,1.00,4.830,17.2,10.4,1.00,4.790,17.7 +11.1,1.00,3.680,9.3,11.0,1.00,3.650,9.7 +11.8,1.00,2.720,12.3,11.6,1.00,2.720,12.3 +12.2,0.99,1.690,11.5,12.0,0.99,1.690,11.4 +12.5,0.99,1.280,325.3,12.3,0.99,1.280,325.8 +12.7,0.99,1.610,290.2,12.5,0.99,1.610,290.9 +12.9,0.99,1.620,302.8,12.7,0.99,1.610,303.1 +13.1,0.99,1.900,288.0,13.0,0.99,1.930,287.9 +13.2,0.99,1.890,293.4,13.0,0.99,1.880,294.3 +13.1,0.99,2.120,296.7,12.9,0.99,2.140,298.9 +12.9,0.99,2.210,301.4,12.7,0.99,2.210,302.9 +12.7,0.99,1.910,295.4,12.6,0.99,1.910,297.1 +12.7,0.99,2.160,290.6,12.5,0.99,2.130,290.9 +12.4,0.99,2.430,283.9,12.4,0.99,2.380,282.7 +12.2,0.99,3.160,278.6,12.3,0.99,3.260,277.3 +12.2,0.99,3.100,295.2,12.3,0.99,3.290,292.3 +12.3,0.99,3.050,277.1,12.5,0.99,3.230,274.4 +11.8,0.99,2.230,287.8,12.1,0.99,2.430,279.8 +12.0,0.99,1.810,285.2,12.2,0.99,2.040,278.7 +12.2,0.99,1.590,281.2,12.4,0.99,1.800,275.0 +12.0,0.99,0.830,283.7,12.2,0.99,1.060,267.1 +11.9,0.99,0.390,328.9,12.1,0.99,0.290,275.1 +12.3,0.99,0.570,344.7,12.4,0.99,0.500,318.3 +12.4,0.99,0.460,53.1,12.5,0.99,0.280,45.7 +12.5,0.99,1.150,36.0,12.6,0.99,0.980,32.4 +13.1,0.99,1.360,61.8,12.9,0.99,1.340,61.9 +13.6,0.99,1.480,66.4,13.4,0.99,1.470,66.7 +13.9,0.99,1.960,86.3,13.8,0.99,1.960,86.6 +14.3,0.99,2.040,107.6,14.1,0.99,2.030,107.7 +14.7,0.99,1.690,117.1,14.5,0.99,1.670,116.9 +14.8,0.99,1.610,96.9,14.6,0.99,1.590,96.5 +14.7,0.99,2.110,116.9,14.5,0.99,2.040,116.2 +14.6,0.99,2.250,80.2,14.5,0.99,2.270,76.9 +14.5,0.99,3.460,58.1,14.4,0.99,3.580,57.9 +14.5,1.00,2.660,55.2,14.3,1.00,2.750,58.1 +14.5,1.00,2.450,49.0,14.5,1.00,2.500,53.1 +15.1,1.00,2.550,62.6,15.2,1.00,2.680,61.8 +11.1,1.00,9.760,352.9,10.9,1.00,9.710,353.1 +10.2,1.00,9.800,352.1,10.0,1.00,9.780,352.3 +9.3,1.00,10.310,349.7,9.1,1.00,10.290,349.8 +8.6,1.00,9.870,350.4,8.4,1.00,9.850,350.6 +8.3,1.00,9.980,353.3,8.1,1.00,9.960,353.5 +8.0,1.00,9.750,355.3,7.9,1.00,9.740,355.5 +7.6,1.00,9.440,355.5,7.5,1.00,9.420,355.7 +7.2,1.00,9.410,351.5,7.0,1.00,9.390,351.6 +7.0,1.00,8.980,351.6,6.9,1.00,8.960,351.7 +6.8,1.00,8.010,343.1,6.7,1.00,7.990,343.2 +6.8,1.00,8.450,346.7,6.6,1.00,8.430,346.9 +6.9,1.00,8.350,344.6,6.7,1.00,8.340,344.8 +7.3,1.00,7.990,347.3,7.1,1.00,7.980,347.5 +7.8,1.00,7.980,346.8,7.6,1.00,7.970,347.1 +8.3,1.00,7.860,346.5,8.2,1.00,7.860,346.8 +8.7,1.00,7.420,349.0,8.5,1.00,7.420,349.3 +8.9,1.00,7.270,348.7,8.7,1.00,7.270,348.9 +8.9,1.00,7.110,357.2,8.7,1.00,7.100,357.4 +8.5,1.00,7.940,2.6,8.3,1.00,7.930,2.7 +8.2,1.00,8.340,7.6,8.0,1.00,8.340,7.7 +7.9,1.00,8.030,6.9,7.7,1.00,8.020,7.1 +7.7,1.00,8.300,8.6,7.5,1.00,8.290,8.8 +7.4,1.00,8.350,10.5,7.2,1.00,8.340,10.6 +7.1,1.00,8.670,11.1,7.0,1.00,8.650,11.3 +6.8,1.00,9.270,14.4,6.6,1.00,9.260,14.6 +6.7,1.00,8.900,18.5,6.5,1.00,8.890,18.7 +6.7,1.00,8.920,20.9,6.5,1.00,8.910,21.2 +6.7,1.00,9.000,23.3,6.5,1.00,8.990,23.6 +6.6,1.00,8.630,24.4,6.4,1.00,8.610,24.7 +6.6,1.00,8.370,28.2,6.4,1.00,8.360,28.5 +6.8,1.00,8.240,30.1,6.6,1.00,8.240,30.5 +6.7,1.00,8.170,31.5,6.5,1.00,8.160,32.0 +6.8,1.00,7.850,31.3,6.6,1.00,7.840,31.8 +6.8,1.00,7.050,30.7,6.6,1.00,7.030,31.2 +6.9,1.00,6.080,30.6,6.7,1.00,6.060,31.2 +7.1,1.00,5.430,26.3,6.9,1.00,5.420,26.9 +7.7,1.00,4.940,25.2,7.5,1.00,4.930,25.7 +8.3,1.00,4.470,23.2,8.1,1.00,4.460,23.6 +8.8,1.00,4.090,22.7,8.6,1.00,4.090,23.0 +9.3,1.00,3.810,24.5,9.1,1.00,3.810,24.9 +9.8,1.00,3.450,35.2,9.6,1.00,3.450,35.6 +19.8,0.99,10.300,165.8,19.9,0.99,11.030,167.5 +20.2,0.99,12.230,165.8,20.3,0.99,12.970,167.3 +20.2,0.99,12.520,168.2,20.3,0.99,13.370,169.2 +20.2,0.99,13.070,168.6,20.3,0.99,13.860,169.5 +20.1,0.99,12.700,172.2,20.2,0.99,13.540,172.9 +20.2,0.99,13.250,176.8,20.3,0.99,13.990,177.4 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_120m.srw b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_120m.srw new file mode 100644 index 000000000..fd1ccfd37 --- /dev/null +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_120m.srw @@ -0,0 +1,8765 @@ +1379078,city??,state??,country??,2013,29.2054595947,-94.593170166,Not Available,1,8760 +WIND Toolkit data from NREL downloaded on 2025-8-5 +Temperature,Pressure,Speed,Direction +C,atm,m/s,Degrees +120,120,120,120 +20.1,0.99,13.230,180.2 +20.3,0.99,14.120,183.7 +20.3,0.99,14.080,187.5 +20.3,0.99,13.980,188.3 +20.3,0.99,14.280,187.8 +20.2,0.99,13.200,192.4 +20.4,0.99,12.410,184.8 +19.7,0.99,10.380,182.5 +14.9,0.99,11.920,346.3 +13.3,0.99,12.420,355.3 +12.6,0.99,13.740,5.9 +12.4,0.99,13.410,4.4 +12.1,0.99,13.520,5.4 +11.8,0.99,12.400,7.3 +11.8,0.99,11.310,14.0 +11.6,0.99,11.190,4.0 +11.3,0.99,10.570,5.4 +11.0,0.99,10.470,9.0 +10.8,0.99,10.220,10.0 +10.7,0.99,10.490,6.6 +10.4,1.00,11.750,10.3 +10.7,1.00,12.240,17.0 +10.8,1.00,11.600,15.1 +10.1,1.00,11.310,12.4 +9.7,1.00,10.980,16.6 +9.3,1.00,10.750,19.0 +9.0,1.00,11.730,18.3 +8.8,1.00,12.040,16.8 +8.4,1.00,12.540,13.5 +8.1,1.00,11.630,12.1 +7.9,1.00,11.150,15.4 +7.5,1.00,10.730,13.1 +7.2,1.00,10.350,11.4 +7.0,1.00,9.900,8.5 +6.9,1.00,9.330,10.0 +7.0,1.00,8.870,7.3 +7.4,1.00,7.690,7.5 +7.9,1.00,7.660,4.0 +8.4,1.00,7.260,1.8 +8.7,1.00,7.160,3.0 +8.7,1.00,7.460,4.8 +8.5,1.00,7.990,4.2 +8.4,1.00,7.970,9.1 +8.1,1.00,8.120,11.8 +7.8,1.00,8.430,14.0 +7.6,1.00,8.180,16.8 +7.5,1.00,8.990,17.8 +7.3,1.00,9.070,19.6 +7.0,1.00,10.120,19.0 +6.8,1.00,10.000,20.6 +6.7,1.00,10.680,21.1 +6.5,1.00,11.060,21.0 +6.4,1.00,11.350,22.3 +6.3,1.00,11.520,22.8 +6.1,1.00,11.670,22.5 +5.8,1.00,11.600,22.9 +5.6,1.00,11.900,23.6 +5.6,1.00,11.490,26.2 +5.6,1.00,10.830,25.6 +5.7,1.00,9.820,24.8 +6.1,1.00,8.760,21.4 +7.5,1.00,8.620,20.3 +8.9,1.00,7.900,20.9 +9.8,1.00,7.750,17.3 +10.2,1.00,8.520,14.7 +10.2,1.00,8.680,12.7 +10.1,1.00,9.670,16.4 +9.7,1.00,9.450,18.6 +9.5,1.00,10.300,22.5 +9.4,1.00,10.260,27.8 +9.2,1.00,11.100,32.5 +9.2,1.00,11.270,38.4 +9.2,1.00,11.360,41.5 +9.3,1.00,10.230,46.6 +9.4,1.00,10.970,48.6 +9.3,1.00,10.820,45.2 +9.2,1.00,10.850,47.8 +9.1,1.00,10.840,48.0 +9.0,1.00,10.920,40.2 +8.2,1.00,10.210,27.8 +7.7,1.00,10.520,28.4 +7.6,1.00,10.770,33.1 +7.7,1.00,10.780,35.6 +7.7,1.00,10.930,33.1 +7.6,1.00,10.480,35.0 +8.3,1.00,10.110,43.1 +8.8,1.00,10.290,45.2 +8.8,1.00,9.530,39.1 +8.9,1.00,9.330,42.3 +9.4,1.00,9.580,44.1 +9.7,1.00,9.070,42.4 +9.7,1.00,8.340,41.6 +10.2,1.00,8.690,51.9 +9.8,1.00,7.540,43.0 +10.2,1.00,7.770,54.9 +10.3,1.00,7.950,64.0 +10.4,1.00,7.290,76.2 +10.2,1.00,7.210,63.9 +10.4,1.00,5.780,63.9 +10.1,1.00,5.540,67.0 +8.7,1.00,8.320,26.6 +8.7,1.00,8.630,33.6 +8.4,1.00,8.700,20.6 +8.2,1.00,8.600,21.5 +8.1,1.00,9.040,16.7 +8.0,1.00,9.370,23.9 +8.1,1.00,8.540,16.4 +7.9,1.00,9.200,16.7 +8.1,1.00,9.580,19.3 +8.6,1.00,9.090,23.8 +8.6,1.00,9.050,27.3 +8.8,1.00,8.770,17.9 +8.5,1.00,7.750,17.3 +8.3,1.00,9.250,24.9 +8.3,1.00,8.260,18.1 +8.3,1.00,6.030,359.4 +8.2,1.00,7.920,19.9 +8.4,1.00,7.490,18.9 +8.7,1.00,6.390,24.8 +8.6,1.00,8.080,26.4 +8.3,1.00,8.340,10.9 +8.0,1.00,8.350,5.9 +8.2,1.00,8.250,6.5 +7.9,1.00,9.280,8.9 +7.8,1.00,9.850,7.0 +7.6,1.00,9.980,11.7 +7.3,1.00,10.410,11.1 +6.9,1.00,10.780,14.5 +6.5,1.00,10.830,14.7 +4.9,1.00,10.370,9.5 +5.0,1.00,9.930,9.4 +5.0,1.00,9.370,5.4 +5.3,1.00,8.400,1.3 +7.3,1.00,9.890,5.3 +8.3,1.00,8.880,7.9 +9.0,1.00,8.690,8.8 +9.6,1.00,9.130,7.3 +10.1,1.00,9.050,9.5 +9.8,1.00,10.080,14.4 +9.4,1.00,10.290,14.4 +9.1,1.00,10.360,18.6 +8.8,1.00,10.330,25.1 +8.7,1.00,10.110,29.2 +8.8,1.00,10.080,35.3 +9.2,1.00,9.730,42.6 +9.3,1.00,9.070,49.9 +10.0,1.00,10.630,58.5 +10.1,1.00,10.530,63.8 +10.4,1.00,11.060,69.2 +10.3,1.00,11.010,70.9 +10.2,1.00,10.530,66.7 +10.0,1.00,10.490,65.4 +9.8,1.00,10.500,63.3 +9.4,1.00,10.600,58.9 +9.0,1.00,9.690,55.9 +9.1,1.00,8.650,55.4 +9.7,1.00,8.110,63.5 +10.0,1.00,8.110,63.6 +10.2,1.00,7.680,63.3 +10.5,1.00,7.500,64.9 +10.9,1.00,7.290,64.8 +11.2,1.00,7.720,68.4 +11.8,1.00,8.390,72.1 +12.1,1.00,8.530,78.4 +12.4,1.00,9.270,79.7 +12.8,1.00,10.130,80.7 +13.6,0.99,9.850,89.7 +13.8,0.99,8.890,92.9 +14.1,0.99,9.330,88.1 +14.4,0.99,9.470,93.6 +14.6,0.99,9.830,96.2 +14.8,0.99,10.580,92.4 +15.0,0.99,11.210,93.7 +15.2,0.99,12.560,94.4 +15.5,0.99,12.620,96.1 +15.8,0.99,14.080,101.8 +16.0,0.99,13.090,103.0 +16.6,0.99,15.440,110.1 +17.1,0.99,14.660,115.1 +18.8,0.99,14.990,145.9 +18.4,0.99,13.500,139.3 +19.3,0.99,13.940,132.5 +18.9,0.99,13.920,124.2 +19.2,0.99,13.740,131.2 +19.7,0.99,13.690,140.6 +20.1,0.99,14.110,149.8 +20.1,0.99,14.570,147.8 +20.1,0.99,12.140,151.7 +18.6,0.99,11.300,163.4 +19.2,0.99,11.650,178.2 +19.7,0.99,10.600,169.3 +19.6,0.99,9.720,173.9 +19.7,0.99,10.290,170.5 +20.9,0.99,14.390,174.4 +20.8,0.99,10.960,159.6 +20.4,0.99,12.930,148.2 +20.3,0.99,13.940,143.8 +18.6,0.99,17.960,153.3 +18.9,0.99,14.900,152.6 +18.4,0.99,13.110,149.9 +20.6,0.99,12.610,129.9 +19.9,0.99,15.080,115.8 +19.4,0.99,16.150,114.2 +19.2,0.99,12.990,113.4 +18.4,0.99,4.470,128.7 +19.1,0.99,10.500,107.7 +19.7,0.99,10.070,106.7 +18.3,0.99,3.960,220.0 +18.1,0.99,3.140,139.5 +17.9,0.99,7.590,117.8 +18.3,0.99,8.090,123.2 +18.3,0.99,7.500,131.6 +18.7,0.99,10.170,146.5 +17.8,0.99,9.760,153.1 +18.2,0.99,9.230,164.2 +17.8,0.99,7.600,177.7 +17.2,0.99,6.290,200.4 +16.8,0.99,5.430,217.4 +16.1,0.99,6.640,224.5 +16.0,0.99,2.940,233.9 +15.8,0.99,2.590,182.3 +15.9,0.99,2.610,171.2 +14.8,0.99,3.980,172.5 +15.0,0.99,3.370,201.5 +15.0,0.99,4.190,223.6 +14.2,0.99,4.790,207.9 +14.3,0.99,4.070,202.7 +15.8,0.99,5.690,218.4 +16.0,0.99,5.340,214.4 +16.2,0.99,5.300,218.0 +15.8,0.99,5.760,218.3 +15.5,0.99,6.280,213.5 +15.3,0.99,6.960,224.8 +14.9,0.99,5.700,225.7 +15.3,0.99,6.250,222.8 +15.7,0.99,7.220,229.3 +15.5,0.99,6.640,222.8 +15.6,0.99,6.630,226.2 +15.5,0.99,6.620,236.9 +15.2,0.99,5.720,240.7 +15.2,0.99,5.270,244.2 +15.1,0.99,3.890,242.0 +15.1,0.99,3.000,221.1 +15.4,0.99,3.180,232.2 +15.7,0.99,2.730,224.1 +16.3,0.99,2.020,225.2 +16.4,0.99,1.660,201.6 +16.9,0.99,1.630,226.5 +16.6,0.99,1.620,163.3 +16.7,0.99,2.690,126.2 +17.6,0.99,2.280,117.0 +16.9,0.99,4.350,127.0 +16.6,0.99,5.350,124.4 +16.9,0.99,6.290,126.8 +17.3,0.99,5.350,133.8 +17.5,0.99,5.990,130.7 +18.3,0.99,6.430,144.7 +19.7,0.99,9.940,152.9 +19.8,0.99,11.300,162.5 +20.1,0.99,10.440,169.4 +19.9,0.99,11.410,157.4 +20.3,0.99,13.310,153.8 +21.0,0.99,13.800,171.8 +20.9,0.99,13.140,168.8 +21.3,0.99,12.770,169.6 +21.9,0.99,15.440,169.7 +20.7,0.99,13.420,174.9 +20.1,0.99,12.140,167.1 +19.3,0.99,12.860,167.9 +21.8,0.99,16.470,172.0 +20.0,0.99,13.590,162.1 +20.4,0.99,13.710,160.0 +22.6,0.99,15.690,166.7 +21.0,0.99,14.040,158.9 +20.3,0.99,14.090,156.0 +19.9,0.99,14.730,153.4 +21.0,0.99,14.850,161.6 +20.1,0.99,13.200,155.0 +20.2,0.99,13.200,159.0 +20.8,0.99,15.350,158.6 +21.1,0.98,14.830,160.8 +21.3,0.98,13.980,164.1 +20.7,0.98,13.570,159.4 +21.1,0.98,13.330,163.5 +21.7,0.98,14.360,162.3 +21.3,0.98,13.150,161.4 +20.8,0.98,13.220,160.4 +21.4,0.98,18.500,159.1 +21.2,0.98,13.170,163.6 +19.9,0.98,6.450,192.1 +20.9,0.98,8.240,211.6 +21.2,0.98,6.190,224.2 +21.3,0.99,7.180,232.3 +21.7,0.99,9.250,210.4 +15.5,0.99,12.130,319.5 +12.6,0.99,11.910,330.8 +10.9,0.99,13.230,336.4 +10.2,0.99,12.790,342.7 +9.5,0.99,15.130,347.7 +9.2,0.99,14.330,346.6 +8.9,0.99,14.960,356.7 +8.8,0.99,12.470,353.0 +8.7,0.99,12.460,350.1 +8.6,0.99,11.610,356.2 +8.6,0.99,11.830,4.2 +8.5,0.99,12.900,4.4 +8.6,0.99,12.030,9.1 +8.5,0.99,12.620,9.4 +8.3,0.99,12.590,13.1 +8.0,0.99,13.090,16.0 +8.0,0.99,13.110,20.1 +7.9,0.99,12.640,21.9 +7.9,0.99,12.200,22.0 +7.8,0.99,12.570,27.7 +7.7,0.99,11.050,28.2 +7.6,0.99,10.770,28.5 +7.3,0.99,11.210,27.8 +6.8,0.99,11.340,19.7 +6.6,0.99,10.050,11.3 +6.1,0.99,10.080,9.6 +5.7,0.99,11.430,10.2 +5.2,0.99,12.700,14.6 +5.0,1.00,11.710,13.6 +4.8,1.00,11.570,13.2 +4.6,1.00,12.140,12.5 +4.6,1.00,10.840,17.2 +4.6,1.00,11.110,15.1 +4.6,0.99,11.640,20.8 +4.7,0.99,11.560,26.3 +4.8,1.00,10.050,24.4 +4.8,0.99,11.300,26.0 +4.9,0.99,10.620,28.1 +5.0,0.99,9.150,25.0 +5.0,0.99,10.100,30.0 +5.1,0.99,9.250,28.6 +5.3,0.99,8.980,29.8 +5.4,0.99,8.880,31.4 +5.5,0.99,8.590,31.0 +5.4,0.99,8.230,22.8 +5.4,0.99,7.850,21.7 +5.4,0.99,7.280,15.7 +5.2,0.99,7.810,9.6 +5.0,0.99,7.930,4.4 +4.8,0.99,8.540,357.4 +4.6,0.99,9.000,356.6 +4.5,0.99,8.980,355.2 +4.4,0.99,8.830,353.7 +4.2,0.99,9.930,354.4 +4.1,0.99,9.430,356.4 +3.9,0.99,10.090,353.4 +3.8,0.99,9.460,356.7 +3.6,0.99,9.780,352.2 +3.5,0.99,9.670,356.0 +3.4,0.99,9.870,352.8 +3.2,0.99,10.250,350.9 +3.1,0.99,9.710,350.3 +2.9,0.99,11.760,346.4 +2.7,0.99,12.710,345.6 +2.8,1.00,10.040,341.9 +2.6,0.99,11.760,346.0 +2.6,0.99,10.990,347.9 +2.3,1.00,11.730,344.6 +2.2,1.00,12.110,342.3 +2.2,1.00,12.620,340.5 +2.2,1.00,12.820,340.4 +2.2,1.00,11.250,336.3 +1.9,1.00,13.380,344.0 +1.9,1.00,13.310,346.3 +2.1,1.00,13.480,346.5 +2.1,1.00,11.020,340.4 +2.5,1.00,10.330,333.0 +2.8,1.00,10.570,326.3 +3.4,1.00,11.050,319.4 +4.8,1.00,10.420,317.4 +5.8,1.00,9.850,316.6 +6.5,1.00,10.230,317.9 +7.1,1.00,10.940,313.1 +7.5,1.00,10.940,308.8 +7.4,1.00,10.890,304.4 +7.1,1.00,10.060,308.5 +7.0,1.00,9.600,313.5 +7.0,1.00,8.440,315.0 +7.0,1.00,7.480,319.6 +7.5,1.00,8.800,320.8 +7.5,1.00,7.130,322.8 +7.0,1.00,6.160,316.7 +6.8,1.00,5.780,314.2 +6.7,1.00,5.220,317.6 +6.4,1.00,4.920,313.6 +6.3,1.00,4.510,310.8 +6.0,1.00,4.710,308.6 +5.7,1.00,4.470,311.0 +5.6,1.00,4.650,315.3 +6.0,1.00,5.090,322.5 +6.9,1.00,6.050,327.0 +7.9,1.00,6.500,326.0 +8.6,1.00,6.760,324.5 +9.8,1.00,6.670,322.1 +10.8,1.00,6.910,327.9 +11.4,1.00,7.390,329.6 +12.1,1.00,7.590,334.8 +12.5,1.00,7.940,340.7 +12.7,1.00,8.500,347.7 +12.1,1.00,8.290,357.6 +12.1,1.00,9.060,354.9 +12.1,1.01,8.560,3.5 +11.2,1.01,7.110,17.9 +10.6,1.01,6.230,20.4 +10.0,1.01,6.540,24.9 +9.4,1.01,5.920,35.1 +9.8,1.01,6.340,46.9 +9.8,1.01,5.990,54.5 +9.9,1.01,5.670,51.7 +9.7,1.01,6.470,47.7 +9.8,1.01,7.050,55.6 +10.2,1.01,7.290,64.3 +10.4,1.01,7.650,68.3 +10.3,1.01,7.650,69.0 +10.3,1.01,7.580,71.8 +10.3,1.01,6.930,72.3 +10.2,1.01,6.670,76.3 +10.4,1.01,6.000,74.1 +10.4,1.01,5.450,77.6 +10.4,1.00,4.950,77.4 +10.5,1.00,4.730,79.1 +10.8,1.00,4.690,90.7 +10.9,1.00,4.690,91.0 +10.8,1.00,4.540,90.9 +10.9,1.00,4.590,92.5 +10.9,1.00,4.610,93.0 +11.0,1.00,4.060,94.4 +11.0,1.00,3.490,97.7 +11.2,1.00,3.430,106.2 +11.3,1.00,2.790,113.1 +11.2,1.00,2.110,97.5 +11.4,1.00,1.980,105.0 +11.5,1.00,1.840,100.9 +11.5,1.00,2.020,81.9 +11.5,1.00,2.250,81.9 +11.7,1.00,2.230,86.2 +12.0,1.00,2.400,96.5 +12.3,1.00,2.530,105.2 +12.6,1.00,2.710,115.8 +12.8,1.00,2.690,120.5 +13.0,1.00,2.910,122.6 +13.4,1.00,2.510,137.5 +13.6,1.00,2.560,146.9 +13.8,1.00,2.890,149.4 +13.8,1.00,3.060,143.5 +13.9,1.00,2.340,148.3 +13.8,1.00,2.710,136.5 +13.6,1.00,3.290,119.4 +13.4,1.00,3.280,121.1 +13.7,1.00,3.130,139.6 +13.9,1.00,4.510,156.5 +14.3,1.00,3.720,163.0 +14.3,1.00,2.510,175.9 +14.0,1.00,2.590,174.4 +13.7,1.00,2.140,146.1 +14.4,1.00,1.730,187.8 +14.4,1.00,1.600,180.8 +14.6,1.00,1.450,175.9 +14.8,1.00,0.880,188.3 +15.1,1.00,0.610,169.9 +15.3,1.00,0.240,106.2 +14.8,1.00,0.970,91.3 +14.8,1.00,1.550,89.1 +15.2,1.00,1.170,76.9 +14.8,1.00,1.510,79.4 +13.5,1.00,2.650,93.7 +13.4,1.00,2.840,73.5 +12.5,1.00,3.170,93.3 +11.8,1.00,2.560,115.5 +11.9,1.00,2.340,95.1 +10.9,1.00,2.380,121.1 +13.9,1.00,2.890,123.7 +14.2,1.00,3.570,133.5 +14.5,1.00,3.370,140.3 +14.4,1.00,2.920,144.4 +14.5,1.00,2.150,151.9 +14.6,1.00,2.220,160.7 +15.1,1.00,1.540,195.4 +14.3,1.00,1.290,184.9 +14.5,1.00,0.590,219.6 +14.6,1.00,0.390,288.3 +14.8,1.00,0.900,332.1 +14.5,1.00,1.330,353.5 +14.8,1.00,2.200,2.1 +14.2,1.00,2.410,17.0 +14.8,1.00,2.830,24.0 +15.1,1.00,2.710,29.8 +15.4,1.00,3.040,22.1 +15.6,1.00,2.810,34.2 +15.0,1.00,2.810,24.0 +15.1,1.00,2.680,13.6 +16.0,1.00,2.850,10.9 +16.5,1.00,2.540,15.6 +16.2,1.00,2.100,8.7 +16.2,1.00,3.240,351.6 +15.8,1.00,6.020,9.4 +14.9,1.00,6.590,34.6 +14.1,1.00,6.180,42.3 +13.6,1.00,5.730,50.8 +13.1,1.00,5.420,64.3 +13.3,1.00,5.050,69.0 +13.6,1.00,4.520,78.0 +13.2,1.00,5.310,78.3 +12.7,1.00,5.310,74.3 +12.9,1.00,4.340,72.6 +12.8,1.00,4.200,61.4 +12.2,1.00,5.470,55.4 +12.0,1.00,6.090,57.8 +12.0,1.00,5.710,62.3 +12.1,1.00,5.960,65.7 +12.2,1.00,5.500,74.2 +12.3,1.00,5.280,81.1 +12.6,1.00,5.320,93.5 +12.9,1.00,4.160,91.1 +13.1,1.00,4.400,90.9 +13.1,1.00,4.690,96.0 +13.3,1.00,4.810,100.5 +13.6,1.00,4.980,105.4 +13.7,1.00,5.410,111.3 +13.7,1.00,6.040,113.4 +13.8,1.00,6.290,117.8 +13.9,1.00,6.410,123.3 +14.1,1.00,6.400,129.0 +14.3,1.00,6.240,131.4 +14.4,1.00,6.370,135.5 +14.6,1.00,6.540,139.1 +15.1,1.00,6.440,141.1 +15.4,1.00,6.310,144.0 +15.8,1.00,6.160,142.5 +16.2,1.00,6.160,145.1 +16.4,1.00,5.830,148.2 +16.6,1.00,5.590,148.3 +16.7,1.00,5.720,146.8 +16.9,1.00,6.130,149.8 +17.3,1.00,6.050,158.8 +17.4,1.00,6.270,164.8 +17.7,1.00,6.450,166.6 +17.8,1.00,6.430,171.4 +17.6,1.00,6.280,172.3 +17.5,1.00,6.190,172.5 +17.6,1.00,6.440,176.6 +17.9,1.00,7.000,180.1 +17.9,1.00,7.470,185.3 +18.2,1.00,7.780,185.6 +18.3,1.00,8.580,186.8 +18.3,1.00,8.840,190.2 +18.3,1.00,9.870,191.2 +18.3,1.00,10.090,191.3 +18.4,1.00,10.080,193.9 +18.3,1.00,10.220,197.4 +18.3,1.00,10.390,198.0 +18.4,1.00,9.910,203.3 +18.4,1.00,9.370,205.5 +18.5,1.00,9.420,208.9 +18.6,1.00,8.810,210.9 +18.6,1.00,8.970,211.2 +18.7,1.00,8.100,209.3 +18.9,1.00,7.740,210.8 +19.0,1.00,7.630,205.4 +19.3,1.00,8.000,206.5 +19.2,1.00,7.810,202.3 +19.0,1.00,7.720,196.5 +18.5,1.00,8.070,192.5 +18.6,1.00,8.700,190.0 +18.6,1.00,8.860,190.0 +18.7,1.00,9.450,189.8 +18.7,1.00,9.650,188.6 +18.8,1.00,10.400,189.9 +18.7,1.00,10.840,190.1 +18.7,1.00,10.690,189.3 +18.7,1.00,11.210,187.3 +18.5,1.00,11.180,187.4 +18.5,1.00,11.490,186.2 +18.7,1.00,12.180,187.6 +18.6,1.00,11.410,188.8 +18.6,1.00,11.200,190.0 +18.7,1.00,11.690,192.2 +19.1,1.00,11.050,198.6 +18.8,1.00,9.220,201.6 +19.1,1.00,9.140,204.4 +19.8,1.00,10.130,209.4 +19.6,1.00,9.690,197.4 +19.4,1.00,8.840,203.2 +19.4,1.00,8.390,204.2 +19.7,1.00,8.000,209.4 +19.4,1.00,7.790,204.7 +19.1,1.00,8.010,200.9 +19.2,1.00,7.670,198.7 +19.2,1.00,8.360,200.7 +19.2,1.00,8.200,204.9 +19.3,1.00,8.220,202.2 +19.3,1.00,7.510,201.3 +19.3,1.00,6.970,198.9 +19.2,1.00,6.800,191.5 +19.2,1.00,6.970,191.8 +19.1,1.00,7.220,192.8 +19.0,1.00,7.450,197.4 +19.2,1.00,7.260,197.2 +19.0,1.00,6.560,197.6 +19.2,1.00,6.500,197.0 +18.9,1.00,5.580,196.7 +18.9,1.00,5.240,196.2 +19.3,1.00,5.470,195.9 +19.3,1.00,4.810,190.5 +19.2,1.00,4.680,178.6 +19.4,1.00,4.840,184.3 +19.7,1.00,5.080,184.7 +20.0,1.00,5.440,174.1 +19.9,1.00,6.270,172.9 +19.8,1.00,6.150,175.5 +19.6,1.00,6.040,176.2 +19.7,1.00,6.260,173.7 +19.4,1.00,6.430,164.8 +19.5,1.00,6.530,163.3 +19.3,1.00,6.890,154.7 +19.4,1.00,7.190,150.4 +19.4,1.00,7.890,145.5 +19.6,1.00,8.250,142.5 +19.4,1.00,8.690,138.2 +19.3,1.00,9.620,140.9 +19.3,1.00,10.400,141.5 +19.3,1.00,11.260,140.9 +19.4,1.00,11.050,143.0 +19.4,1.00,10.670,146.9 +19.3,1.00,10.190,149.9 +19.4,1.00,9.890,155.9 +19.5,1.00,9.660,162.6 +19.6,1.00,10.520,164.3 +19.5,1.00,10.880,165.1 +19.7,1.00,10.920,163.0 +19.5,1.00,10.980,161.5 +19.4,1.00,10.900,157.6 +19.4,1.00,10.820,157.4 +19.4,1.00,10.010,156.9 +19.4,1.00,10.440,156.8 +19.5,1.00,10.590,152.8 +19.4,0.99,11.220,150.9 +19.5,0.99,11.960,151.5 +19.6,0.99,12.140,152.0 +19.8,0.99,13.410,152.1 +19.8,0.99,13.060,152.9 +19.5,0.99,12.880,152.2 +19.6,0.99,12.810,151.7 +19.5,0.99,12.790,153.6 +19.8,0.99,12.900,156.0 +19.8,0.99,12.780,156.1 +19.6,0.99,12.220,157.2 +19.9,0.99,12.550,160.9 +20.0,0.99,12.840,164.3 +19.9,0.99,12.440,163.9 +20.0,0.99,12.300,163.9 +19.6,0.99,11.560,160.2 +20.2,0.99,12.150,161.7 +20.3,0.99,12.630,160.7 +20.0,1.00,11.760,155.7 +20.5,0.99,12.200,156.8 +20.7,0.99,12.450,156.3 +20.4,0.99,11.180,155.3 +20.5,0.99,11.400,156.7 +20.4,0.99,11.410,154.0 +20.2,0.99,11.850,154.6 +19.5,0.99,11.320,146.1 +19.1,0.99,12.080,151.0 +19.2,0.99,13.020,149.0 +19.1,0.99,12.780,150.1 +18.8,0.99,13.290,149.7 +19.1,0.99,14.100,150.9 +19.0,0.99,13.370,154.1 +18.9,0.99,12.760,157.2 +19.0,0.99,13.350,155.4 +19.1,0.99,12.510,153.6 +19.1,0.99,12.160,157.7 +19.9,0.99,13.080,161.1 +19.4,0.99,12.970,158.8 +19.3,0.99,11.960,158.4 +19.1,0.99,13.360,161.0 +19.6,0.99,13.620,160.7 +20.2,0.99,14.080,162.7 +20.3,0.99,13.850,165.2 +20.5,0.99,14.690,166.1 +20.3,0.99,13.900,170.3 +20.3,0.99,13.300,172.6 +20.5,0.98,14.050,174.9 +20.6,0.98,14.080,175.1 +20.4,0.98,13.750,173.2 +20.3,0.98,13.510,176.8 +20.6,0.98,16.040,178.1 +20.7,0.98,17.670,181.4 +21.0,0.98,17.460,180.6 +20.6,0.98,14.540,184.3 +20.6,0.98,14.430,185.0 +20.5,0.98,15.010,196.6 +20.4,0.98,13.450,212.8 +15.5,0.98,13.820,324.5 +16.7,0.98,11.080,326.4 +16.7,0.98,15.940,317.8 +15.6,0.99,13.810,314.8 +15.1,0.99,9.140,303.5 +14.3,0.99,13.090,309.1 +13.0,0.99,11.370,299.2 +12.2,0.99,11.900,297.3 +11.7,0.99,12.660,296.6 +11.7,0.99,12.130,297.2 +11.9,0.99,14.120,298.3 +11.8,0.99,13.580,306.5 +12.0,0.99,15.720,313.8 +12.0,0.99,15.390,315.7 +12.1,0.99,15.550,315.3 +12.4,0.99,13.840,319.1 +12.2,0.99,14.030,327.6 +12.1,1.00,12.500,331.3 +11.5,1.00,10.900,337.5 +11.3,1.00,11.140,332.1 +11.1,1.00,9.570,334.6 +11.0,1.00,7.590,338.4 +10.9,1.00,6.560,345.1 +10.8,1.00,5.790,343.4 +10.6,1.00,4.840,342.8 +10.4,1.00,3.440,344.4 +10.2,1.00,1.640,348.3 +10.3,1.00,0.620,334.2 +10.5,1.00,0.430,215.4 +10.7,1.00,1.210,198.7 +10.9,1.00,1.630,200.2 +11.1,1.00,2.320,212.6 +11.3,1.00,2.760,221.1 +11.5,1.00,3.070,217.3 +11.8,1.00,3.460,218.2 +12.1,1.00,3.780,219.3 +12.8,1.00,4.210,216.0 +13.2,1.00,4.720,215.6 +13.6,1.00,5.040,215.1 +13.9,1.00,5.730,212.4 +14.2,1.00,5.960,213.7 +14.4,1.00,6.190,211.4 +14.4,1.00,5.570,213.7 +14.6,1.00,5.610,215.9 +14.6,1.00,4.950,218.3 +14.7,1.00,4.590,221.2 +14.7,1.00,4.260,210.2 +14.8,1.00,4.510,212.0 +14.8,1.00,3.810,209.8 +14.7,1.00,3.680,215.2 +14.7,1.00,3.150,212.2 +14.7,1.00,3.180,206.1 +14.5,1.00,2.380,192.8 +14.5,1.00,2.360,184.1 +14.7,1.00,2.230,188.5 +14.5,1.00,1.570,158.6 +14.8,1.00,1.770,142.6 +15.1,1.00,2.670,139.9 +14.9,1.00,2.530,122.3 +14.8,1.00,3.060,114.6 +15.0,1.00,4.510,119.3 +15.0,1.00,5.230,119.0 +15.1,1.00,5.780,124.8 +15.1,1.00,5.750,128.7 +15.1,1.00,6.380,130.3 +15.2,1.00,6.660,135.3 +15.2,1.00,6.600,133.4 +15.3,1.00,6.130,134.0 +15.5,1.00,6.540,139.4 +15.8,1.00,7.110,142.0 +16.1,1.00,7.780,147.7 +16.2,1.00,8.310,146.2 +16.4,1.00,7.780,150.0 +16.5,1.00,7.240,147.8 +16.7,1.00,7.290,150.5 +16.7,1.00,5.730,150.7 +16.6,1.00,6.320,144.0 +16.9,1.00,5.300,140.6 +17.0,1.00,5.270,145.1 +17.0,1.00,5.210,150.9 +17.3,1.00,4.050,154.3 +17.2,1.00,3.010,148.1 +17.6,1.00,2.080,143.8 +17.6,1.00,2.220,130.9 +17.7,1.00,0.670,115.9 +17.4,1.00,1.470,123.3 +17.4,1.00,2.250,127.6 +17.5,1.00,2.680,131.8 +17.6,1.00,2.170,139.9 +17.5,1.00,3.390,142.8 +18.4,1.00,2.550,142.5 +18.2,1.00,2.620,152.6 +18.1,1.00,2.370,171.9 +18.4,1.00,1.950,187.3 +18.3,1.00,2.090,221.7 +18.2,1.00,2.450,250.5 +16.3,1.00,4.650,340.1 +16.9,1.00,5.630,335.2 +16.1,1.00,7.840,20.2 +14.8,1.00,8.200,28.3 +14.9,1.00,8.670,35.9 +14.7,1.00,9.150,38.1 +13.7,1.00,8.460,41.3 +13.4,1.00,7.620,47.0 +13.3,1.00,7.010,53.3 +13.3,1.00,7.150,52.6 +13.5,1.00,6.250,58.6 +13.7,1.00,5.490,72.8 +14.7,1.00,5.220,83.0 +15.2,1.00,5.490,94.0 +15.4,1.00,5.710,113.0 +15.5,1.00,5.130,119.1 +15.6,1.00,5.230,125.1 +15.6,1.00,5.000,126.8 +15.3,1.00,5.460,135.1 +15.4,1.00,5.270,138.3 +15.5,1.00,5.730,142.5 +15.5,1.00,6.040,144.0 +15.6,0.99,6.340,148.5 +15.8,0.99,6.690,148.9 +16.1,0.99,7.110,150.3 +16.2,0.99,7.580,150.4 +16.5,0.99,7.780,149.4 +16.8,0.99,7.680,150.5 +17.1,0.99,7.580,151.4 +17.3,0.99,7.860,151.9 +17.4,0.99,8.140,146.2 +17.7,0.99,7.500,153.7 +18.1,0.99,7.110,157.4 +18.2,0.99,6.940,159.0 +18.3,0.99,7.270,157.3 +18.6,0.99,5.390,162.3 +18.7,0.99,5.570,159.1 +18.7,0.99,5.960,145.4 +18.9,0.99,6.570,144.9 +18.4,0.99,8.170,144.2 +17.9,0.99,8.100,137.0 +18.9,0.99,6.790,142.1 +19.3,0.99,6.680,144.6 +18.7,0.99,5.800,155.7 +18.9,0.99,4.490,165.9 +19.2,0.99,4.240,170.3 +19.7,0.99,4.730,180.0 +20.0,0.99,4.840,177.2 +19.3,0.99,4.800,190.3 +19.9,0.99,5.160,213.1 +18.4,0.99,5.160,226.2 +17.3,0.99,3.900,224.1 +16.6,0.99,2.890,254.5 +16.7,0.99,2.700,258.4 +16.8,0.99,1.930,272.8 +16.9,0.99,1.390,262.6 +16.9,0.99,0.780,78.7 +16.9,0.99,1.440,83.1 +17.1,0.99,2.870,88.0 +17.1,0.99,2.880,79.2 +17.1,0.99,3.310,100.7 +17.6,0.99,4.120,101.0 +17.1,0.99,4.910,105.5 +17.1,0.99,5.050,104.8 +17.3,0.99,5.570,113.8 +17.4,0.99,5.850,120.9 +17.6,0.99,5.200,121.5 +17.7,0.99,6.140,127.5 +18.1,0.99,6.680,123.4 +18.0,0.99,6.490,122.1 +18.1,0.99,5.730,112.6 +18.0,0.99,5.720,114.0 +18.1,0.99,5.550,121.1 +18.1,0.99,6.170,115.0 +17.2,0.99,7.600,114.8 +16.7,0.99,6.690,116.3 +16.7,0.99,7.610,102.8 +17.7,0.99,7.240,121.7 +17.8,0.99,7.150,113.4 +18.9,0.99,6.510,84.0 +17.4,0.99,8.630,97.9 +17.3,0.99,5.900,103.0 +17.1,0.99,8.830,91.0 +16.8,0.99,8.520,80.6 +16.8,0.99,8.010,79.0 +16.7,0.99,9.310,81.5 +16.8,0.99,8.410,90.4 +16.9,0.99,10.550,94.5 +16.7,0.99,11.540,97.2 +16.6,0.99,11.370,95.8 +16.5,0.99,12.640,94.1 +16.5,0.99,12.370,92.8 +16.6,0.99,12.890,94.4 +16.6,0.99,11.170,89.7 +16.6,0.99,10.070,84.6 +16.6,0.99,8.960,83.7 +16.5,0.99,8.620,89.8 +16.5,0.99,7.360,84.1 +16.3,0.99,6.460,75.2 +16.4,0.99,6.390,84.1 +16.3,0.99,5.160,101.6 +16.3,0.99,3.180,95.9 +16.2,0.99,2.240,89.0 +16.1,0.99,1.280,104.9 +16.2,0.99,1.240,119.2 +16.2,0.99,2.490,50.1 +16.2,0.99,1.450,14.9 +16.2,0.99,1.250,350.5 +16.4,0.99,2.210,50.1 +16.5,0.99,1.890,75.8 +16.6,0.99,1.510,66.0 +16.8,0.99,1.830,67.1 +16.7,0.99,2.810,92.4 +16.8,0.99,2.500,108.3 +17.1,0.99,2.340,131.3 +18.3,0.99,1.730,166.8 +17.3,0.99,2.990,160.5 +17.3,0.99,4.150,188.1 +16.5,0.99,4.240,202.3 +16.4,0.99,4.010,230.0 +16.6,0.99,5.210,279.3 +17.2,0.99,6.960,286.0 +17.2,0.99,7.120,298.4 +13.8,0.99,11.320,341.3 +13.9,0.99,10.280,345.1 +13.1,0.99,10.660,346.6 +12.7,0.99,9.390,343.2 +11.9,0.99,10.410,352.8 +12.6,1.00,9.330,360.0 +13.6,1.00,8.370,5.5 +14.1,1.00,8.110,5.1 +14.4,1.00,5.810,350.4 +15.8,1.00,6.900,0.4 +16.9,1.00,7.070,3.7 +17.3,1.00,5.950,27.8 +17.4,1.00,5.060,26.0 +16.5,1.00,3.920,69.9 +16.9,1.00,7.230,38.0 +16.0,1.00,8.060,35.0 +15.8,1.00,8.950,38.7 +15.0,1.00,8.850,44.8 +14.8,1.00,9.410,59.4 +14.9,1.00,10.200,73.6 +14.7,1.00,9.990,81.3 +14.6,1.00,9.760,81.0 +14.6,1.00,9.510,86.5 +14.6,0.99,9.170,93.2 +14.8,0.99,8.810,95.3 +15.0,0.99,8.610,100.5 +15.5,0.99,7.820,107.1 +15.7,0.99,8.800,104.2 +16.0,0.99,8.030,110.7 +16.2,0.99,8.850,106.2 +16.2,0.99,9.120,106.3 +16.6,0.99,8.780,105.2 +16.6,0.99,9.480,108.9 +17.2,0.99,9.070,115.6 +17.4,0.99,9.120,113.4 +17.8,0.99,9.420,111.0 +18.3,0.99,10.500,119.8 +18.4,0.99,11.900,126.4 +18.5,0.99,12.430,129.7 +18.6,0.99,12.860,132.8 +18.7,0.99,12.530,135.1 +19.0,0.99,12.670,142.4 +19.4,0.99,13.150,147.8 +19.7,0.99,13.940,152.3 +19.5,0.99,13.660,154.4 +19.8,0.99,13.260,157.8 +19.8,0.99,13.630,158.6 +20.1,0.99,13.360,161.7 +20.1,0.99,12.900,164.2 +19.7,0.99,13.280,166.8 +19.7,0.99,13.830,166.5 +20.3,0.99,13.490,171.6 +20.3,0.99,12.720,172.3 +20.5,0.99,14.060,176.5 +20.4,0.99,13.400,178.8 +20.4,0.99,12.920,187.4 +20.5,0.99,12.160,193.4 +20.4,0.99,9.900,194.0 +21.2,0.99,11.740,202.0 +21.4,0.99,11.120,202.8 +21.6,0.99,9.610,199.7 +21.9,0.99,10.550,200.5 +19.7,0.99,6.790,200.5 +18.4,0.99,3.950,348.7 +18.7,0.99,4.730,23.6 +18.0,0.99,5.390,30.1 +18.0,0.99,6.420,40.7 +18.0,0.99,5.690,39.1 +17.7,0.99,5.660,47.2 +17.4,0.99,6.680,47.7 +17.4,0.99,6.930,50.7 +16.8,0.99,7.370,49.4 +16.1,0.99,6.930,46.4 +16.1,0.99,8.160,40.5 +15.3,0.99,9.460,30.9 +14.5,0.99,10.660,34.6 +13.1,0.99,12.790,34.6 +13.2,0.99,13.360,43.5 +13.2,0.99,13.730,51.8 +13.6,0.99,14.310,53.8 +13.8,0.99,13.490,57.5 +13.9,0.99,13.800,57.6 +13.6,0.99,13.250,60.2 +13.8,0.99,12.830,60.5 +14.1,0.99,12.740,61.5 +14.0,0.99,12.750,59.9 +13.8,0.99,12.960,55.7 +13.7,0.99,13.440,57.1 +13.5,0.99,13.990,57.1 +13.5,0.99,13.070,56.3 +13.6,0.99,13.080,57.8 +13.9,0.99,12.930,60.7 +14.0,0.99,13.150,63.8 +14.1,0.99,12.980,66.1 +14.4,0.99,12.480,68.8 +14.7,0.99,11.530,71.2 +14.9,0.99,11.460,74.4 +15.2,0.99,10.910,75.1 +15.6,0.99,11.020,82.3 +16.1,0.99,10.300,85.9 +16.5,0.99,10.300,88.4 +18.9,0.99,8.110,141.3 +20.5,0.99,8.630,185.9 +18.8,0.99,5.160,265.1 +17.8,0.99,5.270,290.6 +16.0,0.99,8.000,305.9 +15.6,0.99,7.450,325.0 +16.1,0.99,7.280,327.7 +16.7,0.99,6.890,326.7 +16.7,0.99,6.220,338.3 +17.0,0.99,7.220,335.4 +16.6,0.99,7.280,344.4 +15.7,0.99,6.730,2.8 +14.7,0.99,6.560,14.8 +14.0,0.99,7.830,10.7 +13.5,0.99,8.970,0.4 +13.1,0.99,9.790,356.0 +12.7,0.99,9.010,351.1 +12.2,0.99,8.700,346.0 +11.7,0.99,9.280,341.0 +11.0,0.99,11.270,337.1 +10.3,0.99,9.730,341.4 +9.9,0.99,11.670,332.2 +9.4,0.99,10.230,337.1 +8.9,0.99,10.210,343.0 +8.9,0.99,11.110,351.0 +8.8,0.99,11.680,345.7 +9.2,0.99,10.080,345.2 +9.3,0.99,9.510,339.5 +10.0,0.99,8.550,340.7 +10.8,0.99,8.370,337.2 +11.5,0.99,8.210,334.7 +12.0,0.99,7.460,335.6 +12.3,0.99,7.130,335.1 +12.5,0.99,7.280,340.5 +12.3,0.99,7.350,347.9 +12.3,0.99,7.070,3.3 +11.9,0.99,6.610,6.1 +11.8,0.99,6.330,9.9 +11.6,0.99,5.820,16.2 +11.5,0.99,5.290,15.7 +11.2,0.99,5.370,18.3 +10.8,0.99,4.840,14.4 +10.7,0.99,4.410,9.1 +10.6,0.99,4.570,12.6 +10.5,0.99,4.640,15.0 +10.4,0.99,4.160,23.5 +10.3,1.00,4.380,26.7 +10.2,1.00,4.540,30.3 +10.3,1.00,4.250,35.8 +10.5,1.00,3.790,36.1 +10.7,1.00,3.570,32.3 +10.9,1.00,3.180,31.0 +11.7,1.00,2.370,43.2 +12.3,0.99,1.940,72.9 +12.8,0.99,1.930,102.5 +13.1,0.99,1.580,116.6 +13.3,0.99,1.620,124.8 +13.5,0.99,1.670,126.0 +13.5,0.99,2.060,129.7 +13.5,0.99,2.140,126.0 +13.6,0.99,2.350,120.7 +13.8,0.99,2.120,118.4 +13.9,0.99,1.900,121.4 +14.0,0.99,1.860,114.3 +14.0,0.99,1.810,99.8 +13.9,0.99,1.600,86.3 +13.8,0.99,1.420,58.5 +13.6,1.00,2.100,35.9 +13.5,1.00,2.240,32.3 +13.3,1.00,2.750,26.9 +12.9,1.00,4.060,21.6 +12.7,1.00,4.170,27.3 +12.5,1.00,5.340,22.5 +12.7,1.00,5.460,23.3 +13.2,1.00,4.390,13.2 +13.3,1.00,4.400,354.9 +14.1,1.00,4.690,337.8 +14.9,1.00,4.650,335.4 +15.5,1.00,4.720,330.5 +16.1,1.00,5.290,328.8 +16.6,1.00,7.060,333.8 +16.7,1.00,8.540,341.0 +15.1,1.00,11.330,12.4 +14.3,1.00,11.590,14.8 +12.0,1.00,16.180,13.3 +10.8,1.00,14.490,13.6 +10.2,1.00,15.130,10.3 +9.7,1.00,12.950,6.1 +9.6,1.00,12.020,6.2 +10.0,1.00,13.390,2.2 +9.3,1.00,14.110,9.8 +8.6,1.00,13.560,10.6 +8.0,1.00,12.640,11.4 +7.5,1.00,12.010,10.7 +6.9,1.00,11.050,13.3 +6.5,1.00,11.010,15.0 +6.6,1.00,9.550,8.8 +6.8,1.00,7.600,359.4 +7.3,1.00,6.720,350.9 +7.9,1.00,4.970,334.1 +9.1,1.00,6.930,333.4 +9.7,1.00,7.340,328.9 +10.4,1.00,6.510,327.6 +10.9,1.00,5.250,337.1 +11.9,1.00,6.450,329.6 +12.2,1.00,5.430,325.8 +12.4,1.00,3.720,323.0 +12.5,1.00,2.800,318.6 +12.4,1.00,1.100,288.7 +12.7,1.00,2.070,234.1 +12.8,1.00,2.640,222.4 +13.0,1.00,3.040,225.6 +13.2,1.00,4.190,218.2 +13.4,1.00,5.230,210.7 +13.6,1.00,6.180,211.8 +13.8,1.00,5.780,222.5 +13.7,1.00,5.780,224.4 +13.8,1.00,5.290,221.0 +14.0,1.00,5.060,222.2 +14.5,1.00,5.400,212.9 +14.8,1.00,6.710,209.6 +14.9,1.00,6.160,198.0 +15.1,1.00,7.950,188.6 +15.4,1.00,7.340,190.6 +15.6,1.00,7.230,188.7 +15.9,1.00,7.850,187.3 +15.8,1.00,9.030,177.6 +16.0,1.00,9.310,171.4 +16.0,1.00,10.260,167.6 +16.1,1.00,9.580,168.8 +16.3,1.00,10.960,167.0 +16.6,1.00,11.120,169.4 +16.6,0.99,12.560,163.2 +17.1,0.99,13.250,170.3 +17.0,0.99,12.230,165.0 +16.8,0.99,13.580,157.7 +17.3,0.99,15.180,167.5 +17.7,0.99,15.140,169.8 +17.4,0.99,14.290,163.3 +17.2,0.99,15.100,162.1 +17.6,0.99,15.590,167.3 +17.9,0.99,15.930,168.2 +18.2,0.99,14.480,169.6 +18.3,0.99,14.100,169.5 +18.4,0.99,15.250,165.7 +18.6,0.99,13.190,170.7 +18.4,0.99,12.640,174.0 +18.0,0.99,16.900,178.7 +19.0,0.99,17.510,177.2 +19.3,0.99,14.150,182.5 +19.3,0.99,13.760,188.8 +19.3,0.99,14.020,188.8 +19.4,0.99,13.980,188.7 +19.5,0.99,14.630,193.8 +19.4,0.99,14.340,196.6 +19.3,0.99,12.390,211.3 +19.3,0.99,12.030,212.7 +19.2,0.99,12.180,220.7 +19.4,0.99,10.420,236.8 +19.5,0.99,10.700,240.2 +14.5,0.99,13.060,341.6 +14.3,0.99,10.010,5.2 +14.1,0.99,12.140,19.0 +13.7,0.99,13.950,27.7 +13.1,1.00,14.290,31.0 +12.6,1.00,15.460,36.6 +11.8,1.00,14.950,39.1 +11.5,1.00,13.860,45.9 +11.4,1.00,12.870,44.8 +11.4,1.00,11.470,43.2 +11.8,1.00,9.910,42.9 +12.4,1.00,8.830,49.2 +13.4,1.00,9.040,53.1 +14.0,1.00,9.360,62.6 +14.2,1.00,8.600,68.0 +14.6,1.00,8.630,73.5 +14.8,1.00,8.690,73.2 +15.2,1.00,9.690,72.0 +15.3,1.00,11.300,75.3 +15.2,1.00,11.560,74.9 +14.9,1.00,12.580,75.2 +14.4,1.00,13.000,74.7 +14.1,1.00,13.550,79.4 +14.1,1.00,13.110,86.1 +14.2,1.00,13.570,90.9 +14.2,1.00,13.770,92.7 +14.3,1.00,13.930,94.2 +14.3,0.99,14.030,96.1 +14.5,0.99,14.120,101.9 +14.5,0.99,13.690,103.7 +14.6,0.99,13.820,106.9 +14.6,0.99,13.660,108.2 +14.8,0.99,12.930,106.9 +14.8,0.99,12.460,98.6 +14.6,0.99,13.370,94.1 +14.5,0.99,16.970,111.7 +14.8,0.99,16.590,104.5 +14.5,0.99,14.450,95.8 +14.7,0.99,14.700,94.2 +14.9,0.99,15.380,97.8 +15.3,0.99,15.780,100.7 +15.8,0.99,16.060,105.6 +15.9,0.99,15.380,104.6 +16.1,0.99,15.840,105.9 +16.5,0.99,16.320,105.4 +16.7,0.99,14.380,115.7 +17.2,0.99,15.070,117.4 +18.1,0.99,14.860,124.5 +18.4,0.99,15.200,126.0 +18.4,0.98,15.690,131.9 +18.6,0.98,15.440,133.4 +18.7,0.98,13.930,143.5 +18.8,0.98,15.680,152.6 +19.3,0.98,16.780,155.1 +19.2,0.98,14.960,144.2 +19.4,0.98,14.770,148.2 +19.7,0.98,15.270,151.9 +20.1,0.98,15.490,152.5 +19.7,0.98,13.570,158.9 +20.2,0.98,13.840,165.8 +20.7,0.98,14.210,171.5 +20.9,0.98,13.600,180.9 +21.2,0.98,12.710,188.8 +20.8,0.98,10.430,200.9 +21.5,0.98,11.030,212.1 +21.1,0.98,10.350,227.8 +19.9,0.98,9.210,238.8 +19.2,0.98,8.220,238.5 +19.9,0.98,7.980,270.9 +21.0,0.99,7.410,1.3 +21.5,0.99,9.030,14.2 +20.4,0.99,7.540,21.5 +19.6,0.99,9.300,20.5 +18.1,0.99,10.000,35.3 +17.5,0.99,10.550,33.2 +17.2,0.99,11.350,34.3 +16.4,0.99,11.360,43.9 +16.1,0.99,11.650,39.0 +16.0,0.99,10.390,54.5 +16.2,0.99,11.680,49.9 +15.7,0.99,12.330,48.0 +15.6,0.99,11.070,48.3 +15.5,0.99,10.100,46.9 +15.4,0.99,10.720,43.8 +15.8,0.99,10.980,40.4 +15.6,0.99,10.160,30.2 +15.4,0.99,10.190,29.8 +14.9,0.99,10.850,28.3 +14.8,0.99,11.170,32.4 +14.4,0.99,10.560,30.2 +13.8,0.99,10.720,31.0 +13.8,0.99,10.310,34.5 +13.6,0.99,9.970,31.5 +13.4,0.99,9.500,32.4 +13.2,0.99,10.270,31.8 +13.0,0.99,10.370,29.9 +12.7,0.99,10.160,31.0 +12.5,0.99,9.500,27.8 +12.2,0.99,9.950,26.9 +12.1,0.99,9.730,27.7 +11.9,0.99,9.330,23.2 +11.6,0.99,10.040,21.9 +11.2,0.99,9.710,19.1 +10.5,0.99,10.150,20.6 +10.3,0.99,8.370,19.2 +10.3,0.99,7.620,25.5 +10.7,0.99,6.010,19.4 +11.4,0.99,4.550,16.6 +12.9,0.99,4.770,10.5 +13.9,0.99,1.890,355.4 +15.1,0.99,3.030,342.5 +15.9,0.99,4.410,329.3 +16.6,0.99,4.430,331.4 +17.1,0.99,5.160,341.8 +17.3,0.99,5.260,12.1 +16.7,0.99,6.190,33.3 +16.2,0.99,6.390,35.6 +15.6,0.99,7.300,41.9 +15.2,0.99,6.960,46.2 +15.0,0.99,7.720,59.2 +14.7,0.99,7.460,66.6 +14.8,0.99,7.550,74.1 +14.6,0.99,8.230,79.9 +14.6,0.99,7.800,75.1 +14.5,0.99,8.130,76.6 +14.4,0.99,8.290,77.6 +14.4,0.99,8.000,76.5 +14.6,0.99,8.400,83.8 +14.7,0.99,8.320,87.1 +14.9,0.99,8.210,87.5 +15.0,0.99,8.050,88.9 +15.2,0.99,8.110,87.6 +15.7,0.99,8.310,87.5 +15.7,0.99,8.700,86.8 +15.8,0.99,9.240,89.5 +16.0,0.98,9.120,88.2 +16.1,0.98,8.480,89.4 +16.4,0.98,7.470,94.1 +16.3,0.98,8.840,93.1 +16.5,0.98,8.680,92.5 +16.8,0.98,9.570,92.1 +17.0,0.98,8.780,87.3 +17.6,0.98,9.480,100.5 +18.6,0.98,9.970,132.3 +19.8,0.98,10.210,160.3 +19.7,0.98,10.380,164.7 +19.5,0.98,9.950,172.0 +19.0,0.98,10.760,167.5 +18.8,0.98,9.680,165.0 +20.1,0.98,10.820,180.9 +20.3,0.98,10.830,182.0 +20.0,0.98,11.440,190.8 +20.1,0.98,9.430,191.3 +18.0,0.98,12.950,182.6 +18.5,0.98,8.710,204.0 +17.3,0.98,8.730,233.8 +17.7,0.98,8.810,305.1 +19.6,0.98,10.160,275.9 +20.1,0.98,11.610,268.3 +19.4,0.98,12.780,270.1 +18.6,0.98,14.190,279.4 +17.6,0.98,14.200,277.8 +16.1,0.98,18.850,279.6 +14.6,0.98,19.970,280.2 +13.2,0.98,18.060,282.4 +12.1,0.98,19.440,286.1 +11.0,0.98,17.010,287.7 +9.3,0.98,21.830,291.2 +8.0,0.98,22.240,296.0 +7.1,0.98,18.870,297.1 +6.7,0.99,14.630,297.0 +6.4,0.99,14.860,296.5 +6.2,0.99,13.230,295.3 +6.0,0.99,12.900,296.9 +5.8,0.99,13.130,298.7 +5.8,0.99,10.990,300.0 +6.2,0.99,9.490,298.8 +6.9,0.99,9.150,299.9 +8.2,0.99,8.790,294.9 +9.5,0.99,7.950,291.9 +11.1,0.99,7.510,293.4 +12.4,0.99,7.740,294.5 +13.3,0.99,7.300,295.3 +14.0,0.99,6.760,294.1 +14.4,0.99,6.200,293.8 +14.6,0.99,6.440,286.1 +14.4,0.99,5.890,288.6 +14.4,0.99,3.590,279.9 +14.5,0.99,3.100,280.4 +14.4,0.99,2.710,272.1 +14.2,0.99,1.480,316.4 +14.1,0.99,0.470,63.1 +14.3,0.99,1.430,175.9 +14.5,0.99,1.890,170.7 +14.7,0.99,2.520,170.5 +14.6,0.99,3.460,175.5 +14.9,0.99,3.700,180.4 +15.3,0.99,4.110,202.5 +15.2,0.99,3.970,208.1 +15.2,0.99,4.300,207.6 +15.5,0.99,4.650,203.1 +15.6,0.99,5.580,214.7 +15.9,0.99,6.540,216.9 +16.1,0.99,6.040,227.5 +16.6,0.99,6.550,224.8 +17.0,0.99,7.360,226.8 +17.5,0.99,7.610,231.5 +19.3,0.99,10.970,311.7 +18.0,0.99,12.610,324.8 +16.9,0.99,12.430,331.5 +15.6,0.99,12.640,340.6 +14.5,0.99,11.990,344.1 +13.5,0.99,12.890,343.3 +13.0,1.00,13.210,344.3 +12.4,1.00,13.340,349.1 +12.1,1.00,12.900,351.4 +10.9,1.00,12.230,354.5 +10.1,1.00,12.540,357.8 +9.2,1.00,13.950,357.8 +8.1,1.00,14.350,357.5 +7.3,1.00,13.140,358.4 +6.5,1.00,12.220,359.6 +5.8,1.00,11.470,358.9 +5.4,1.00,10.640,356.2 +5.5,1.00,8.480,354.7 +5.9,1.00,7.580,349.5 +6.5,1.00,7.270,340.9 +7.4,1.00,7.850,336.4 +9.0,1.00,8.790,336.9 +10.2,1.00,8.900,335.5 +11.2,1.00,9.900,335.1 +11.7,1.00,9.490,336.5 +12.2,1.00,9.300,340.0 +12.4,1.00,10.330,341.1 +12.1,1.00,10.150,345.1 +11.8,1.00,9.860,343.6 +11.5,1.00,8.720,344.1 +11.4,1.00,8.570,344.0 +11.2,1.00,8.580,346.5 +11.0,1.00,8.160,349.3 +10.3,1.00,6.620,352.4 +9.8,1.00,6.640,345.5 +9.5,1.00,6.630,342.4 +8.9,1.00,6.920,343.3 +8.3,1.00,6.460,337.4 +7.7,1.00,6.620,347.9 +7.4,1.00,6.600,351.8 +7.0,1.00,6.510,350.4 +7.0,1.00,6.070,344.1 +7.7,1.00,6.440,336.6 +8.2,1.00,6.080,332.1 +8.6,1.00,5.690,327.0 +11.0,1.00,6.730,325.2 +12.3,1.00,8.000,325.2 +13.1,1.00,8.050,328.3 +13.7,1.00,7.220,331.1 +14.2,1.00,7.910,329.0 +14.7,1.00,7.940,329.4 +14.5,1.00,8.620,345.9 +13.9,1.00,7.230,3.3 +13.0,1.00,7.150,19.2 +12.9,1.00,7.370,7.3 +12.6,1.00,8.060,12.6 +12.1,1.00,5.290,6.0 +11.0,1.00,7.890,14.3 +10.6,1.00,6.890,18.2 +9.8,1.00,6.650,0.2 +9.4,1.00,8.740,358.3 +8.7,1.00,9.340,349.4 +8.1,1.00,10.470,351.4 +7.2,1.00,10.210,353.3 +6.8,1.00,10.420,346.8 +6.5,1.00,10.760,341.0 +6.2,1.00,11.690,337.9 +6.0,1.00,11.800,333.9 +6.1,1.00,11.190,331.4 +6.9,1.00,9.880,327.1 +8.4,1.00,11.140,328.8 +9.1,1.00,11.700,330.1 +9.5,1.00,11.470,332.2 +9.7,1.00,11.390,335.7 +9.7,1.00,11.860,340.6 +9.4,1.00,12.140,343.8 +9.1,1.00,9.640,348.9 +8.9,1.00,9.860,351.0 +8.9,1.00,8.950,352.8 +8.7,1.00,7.210,1.1 +8.8,1.00,6.280,4.8 +8.4,1.00,5.420,9.0 +8.4,1.00,4.400,13.3 +8.3,1.00,3.600,14.7 +8.2,1.00,3.330,17.1 +8.2,1.00,2.660,18.1 +8.3,1.00,1.960,22.9 +8.3,1.00,1.490,10.4 +8.5,1.00,0.940,54.3 +8.8,1.00,0.580,96.9 +9.1,1.00,0.570,150.4 +9.5,1.00,1.170,199.6 +9.9,1.00,1.490,181.7 +11.1,1.00,2.990,185.5 +12.0,1.00,3.940,181.0 +12.7,1.00,5.020,182.5 +13.2,1.00,6.180,178.4 +13.6,1.00,7.110,182.0 +14.1,1.00,8.160,185.5 +14.4,0.99,8.740,184.2 +14.7,0.99,9.930,185.2 +15.2,0.99,11.510,185.7 +15.6,0.99,11.790,187.0 +15.9,0.99,12.790,185.5 +16.1,0.99,12.190,187.7 +16.2,0.99,12.460,184.7 +16.6,0.99,13.720,188.5 +16.7,0.99,14.240,188.8 +16.9,0.99,14.330,188.7 +17.1,0.99,15.220,188.8 +17.2,0.99,14.920,191.9 +17.5,0.99,15.780,188.5 +17.7,0.99,14.860,188.8 +17.9,0.99,15.340,194.7 +17.9,0.99,14.510,194.8 +18.0,0.99,14.190,197.7 +18.2,0.99,13.470,198.3 +18.6,0.99,13.760,200.6 +18.8,0.99,12.930,200.4 +18.8,0.99,12.520,200.9 +18.8,0.99,12.670,201.1 +18.8,0.99,12.820,194.8 +18.8,0.99,13.510,192.2 +18.7,0.99,14.430,188.7 +18.7,0.99,14.650,192.7 +18.7,0.99,15.200,189.6 +18.7,0.99,15.320,192.5 +18.6,0.99,13.580,195.4 +18.6,0.99,12.710,198.1 +18.7,0.99,13.070,198.8 +18.6,0.99,11.760,203.1 +18.6,0.99,12.350,206.6 +18.6,0.99,10.710,207.5 +19.0,0.99,11.310,209.3 +18.9,0.99,9.010,239.6 +18.4,0.99,9.980,261.9 +17.8,0.99,10.280,269.3 +16.3,0.99,9.310,297.9 +17.1,0.99,11.020,318.4 +15.6,0.99,12.870,342.4 +16.2,1.00,11.290,347.1 +17.4,1.00,10.920,353.0 +17.8,1.00,11.420,348.6 +18.0,1.00,12.290,349.0 +17.8,1.00,12.250,349.2 +17.6,1.00,11.450,353.1 +17.2,1.00,12.250,353.3 +16.1,1.00,11.580,359.5 +14.7,1.00,12.500,355.8 +13.6,1.00,11.670,0.2 +12.9,1.00,14.220,3.5 +12.2,1.00,15.170,8.9 +11.5,1.00,15.330,12.8 +10.8,1.00,14.570,14.8 +10.4,1.00,14.100,19.1 +9.9,1.00,13.650,22.1 +9.5,1.00,13.450,27.3 +9.2,1.00,13.110,30.8 +8.8,1.00,12.880,33.1 +8.3,1.00,11.980,35.9 +8.1,1.00,11.850,36.6 +8.1,1.00,9.930,41.1 +8.4,1.00,8.510,37.5 +8.8,1.00,5.640,39.2 +9.3,1.00,3.970,32.4 +10.3,1.00,1.990,12.4 +11.0,1.00,1.360,284.6 +11.4,1.00,1.840,255.3 +12.1,1.00,1.810,244.0 +12.6,1.00,1.970,219.6 +13.1,1.00,1.350,232.4 +13.0,1.00,1.690,181.0 +13.0,1.00,2.980,170.4 +13.0,1.00,2.690,168.0 +13.1,1.00,2.490,157.7 +13.2,1.00,1.860,148.2 +13.3,1.00,1.480,140.6 +13.2,1.00,2.250,129.9 +13.2,1.00,2.460,129.0 +13.3,1.00,2.960,123.9 +13.4,1.00,3.210,111.8 +13.4,1.00,4.070,105.5 +13.4,1.00,4.890,104.7 +13.5,1.00,5.060,106.6 +13.7,1.00,4.800,106.3 +13.9,1.00,6.940,111.5 +13.8,1.00,7.000,107.5 +13.8,1.00,6.930,107.0 +13.8,1.00,7.150,108.4 +14.0,1.00,7.230,111.3 +14.1,1.00,7.300,113.0 +14.2,1.00,7.310,114.5 +14.3,1.00,7.530,115.8 +14.4,1.00,7.340,116.4 +14.5,1.00,7.510,117.7 +14.5,1.00,8.130,119.6 +14.5,1.00,8.430,123.2 +14.7,1.00,8.690,124.5 +14.9,1.00,8.760,126.0 +15.0,1.00,8.880,127.0 +15.2,1.00,8.070,127.1 +15.5,1.00,8.400,128.8 +15.6,1.00,8.030,132.1 +15.7,1.00,7.660,132.1 +15.9,1.00,7.850,129.4 +16.0,1.00,7.740,124.5 +16.0,1.00,8.220,126.5 +16.2,1.00,8.710,127.3 +16.1,1.00,8.300,119.1 +16.3,1.00,8.770,119.7 +16.3,1.00,8.380,114.0 +16.3,1.00,8.320,107.8 +16.3,1.00,9.010,109.1 +16.4,1.00,8.850,111.0 +16.4,1.00,9.270,110.1 +16.3,1.00,9.980,109.8 +16.3,1.00,10.110,111.8 +16.1,1.00,10.190,112.5 +15.8,1.00,9.400,110.7 +16.0,1.00,9.350,115.2 +16.1,1.00,10.400,118.9 +16.3,1.00,11.260,123.7 +16.4,0.99,10.820,126.6 +16.6,0.99,10.410,129.6 +17.0,0.99,10.890,134.6 +17.4,0.99,10.040,146.3 +17.7,0.99,11.590,145.9 +17.9,0.99,10.740,152.9 +17.8,0.99,8.780,148.5 +18.7,0.99,10.910,161.6 +18.6,0.99,9.430,160.4 +18.4,0.99,10.540,157.2 +18.4,0.99,10.620,145.5 +19.0,0.99,10.620,151.1 +19.1,0.99,11.170,155.6 +19.1,0.99,11.730,150.9 +18.7,0.99,11.470,141.4 +18.7,0.99,10.200,149.3 +18.9,0.99,11.580,151.1 +19.1,0.99,10.680,149.4 +18.0,0.99,9.500,136.6 +19.0,0.99,12.250,158.9 +19.0,0.99,12.810,158.3 +19.1,0.99,13.340,149.5 +18.6,0.99,13.290,148.4 +18.4,0.99,12.310,144.6 +18.7,0.99,13.910,154.5 +18.5,0.98,13.720,153.4 +18.7,0.98,13.730,153.9 +18.6,0.98,12.680,154.5 +18.8,0.98,13.000,156.8 +18.8,0.98,12.670,156.6 +18.6,0.98,11.540,155.1 +18.7,0.98,11.790,156.9 +19.1,0.98,9.720,177.1 +19.1,0.99,7.720,188.4 +19.5,0.99,9.050,191.4 +19.7,0.99,8.810,189.9 +20.3,0.99,11.900,177.3 +16.6,0.99,5.830,283.2 +14.1,0.99,11.310,345.6 +13.7,0.99,12.270,348.8 +13.7,0.99,11.660,345.2 +13.7,0.99,11.100,346.6 +13.8,0.99,10.110,348.4 +14.3,0.99,8.630,348.5 +14.8,0.99,7.280,352.4 +14.8,0.99,6.380,354.5 +15.6,0.99,10.130,343.8 +15.0,0.99,14.040,341.2 +14.0,0.99,14.840,342.6 +13.1,0.99,14.000,351.5 +12.0,0.99,14.550,355.6 +11.1,0.99,13.390,359.9 +10.6,0.99,12.320,359.2 +9.8,0.99,12.370,1.3 +9.5,0.99,11.630,2.5 +9.3,0.99,11.160,1.9 +9.1,0.99,11.210,1.5 +8.7,0.99,10.360,0.1 +8.6,0.99,9.980,357.1 +8.5,0.99,8.220,350.5 +8.7,0.99,7.480,343.2 +8.9,0.99,8.670,333.5 +9.2,0.99,7.690,329.1 +11.0,0.99,10.350,323.7 +11.9,0.99,10.150,328.0 +12.9,0.99,10.060,328.4 +13.4,0.99,10.540,330.4 +13.7,0.99,9.930,332.0 +13.8,0.99,8.490,328.2 +13.5,0.99,8.760,346.3 +13.1,0.99,8.120,347.4 +12.8,0.99,7.180,348.8 +12.4,0.99,5.490,6.2 +12.2,0.99,4.680,8.1 +12.2,0.99,4.980,7.9 +11.7,0.99,4.730,12.3 +11.3,0.99,4.140,14.2 +11.2,0.99,4.370,13.9 +10.8,0.99,3.690,24.0 +11.0,0.99,3.810,39.7 +11.2,1.00,3.810,42.9 +11.2,1.00,3.650,44.7 +11.3,1.00,3.160,50.8 +11.5,1.00,3.250,44.5 +11.6,1.00,3.280,43.1 +11.9,1.00,2.870,47.1 +12.3,1.00,2.430,65.1 +13.1,1.00,1.830,99.6 +13.6,1.00,1.690,129.5 +14.0,1.00,1.850,133.4 +14.3,1.00,2.080,151.9 +14.5,1.00,2.370,151.0 +14.7,1.00,2.740,144.6 +14.6,1.00,3.230,142.6 +14.6,1.00,2.860,141.8 +14.7,1.00,2.380,139.1 +14.8,1.00,2.210,129.6 +14.8,1.00,2.240,120.2 +14.9,1.00,1.700,115.1 +14.9,1.00,2.180,95.7 +14.9,1.00,2.110,77.4 +14.6,1.00,2.380,50.9 +14.2,1.00,2.850,25.2 +13.9,1.00,3.070,15.5 +13.6,1.00,3.350,14.1 +12.6,1.00,5.240,10.5 +12.6,1.00,5.150,22.8 +11.7,1.00,7.470,35.9 +13.2,1.00,7.450,47.3 +13.0,1.00,6.550,55.5 +13.6,1.00,6.260,65.1 +14.8,1.00,5.610,84.6 +15.0,1.00,4.780,91.3 +15.2,1.00,3.830,100.5 +15.3,1.00,3.140,107.0 +15.4,1.00,2.550,113.0 +15.5,1.00,2.630,113.2 +15.4,1.00,2.920,112.0 +15.3,1.00,2.840,112.6 +15.4,1.00,2.920,108.4 +15.2,1.00,2.960,107.9 +15.2,1.00,3.700,107.6 +15.2,1.00,3.970,109.7 +15.2,1.00,4.380,100.0 +15.5,1.00,5.350,105.4 +15.5,1.00,5.710,110.7 +15.3,1.00,5.660,109.4 +15.3,1.00,5.950,114.1 +15.3,1.00,5.920,115.3 +15.3,1.00,6.160,118.2 +15.2,1.00,6.770,119.8 +15.2,1.00,6.910,123.9 +15.1,1.00,6.680,122.9 +15.1,1.00,6.140,125.4 +15.1,1.00,5.830,130.0 +15.4,1.00,5.530,134.8 +15.4,1.00,5.570,138.6 +15.4,1.00,5.460,144.3 +15.5,1.00,5.450,150.9 +15.5,1.00,5.500,154.7 +15.5,1.00,5.820,157.0 +15.4,1.00,6.060,158.6 +15.4,1.00,6.300,160.6 +15.4,1.00,6.470,162.5 +15.5,1.00,6.380,164.7 +15.6,1.00,6.560,169.7 +15.7,1.00,6.620,172.9 +15.8,1.00,7.060,177.0 +15.9,1.00,6.780,180.6 +16.1,1.00,6.880,182.0 +16.2,1.00,6.920,183.7 +16.4,1.00,6.630,186.1 +16.4,1.00,6.620,184.3 +16.6,1.00,6.950,189.3 +16.7,1.00,6.690,189.8 +16.9,1.00,6.880,188.9 +17.0,1.00,7.180,188.0 +17.1,1.00,6.610,188.9 +17.3,1.00,7.380,194.1 +17.6,1.00,7.260,194.9 +17.8,1.00,8.180,194.6 +17.8,1.00,8.130,195.5 +17.8,1.00,8.070,194.5 +17.9,1.00,7.860,193.0 +17.9,1.00,7.640,191.2 +17.7,1.00,8.020,189.7 +17.7,0.99,8.360,187.3 +17.6,0.99,8.060,185.6 +17.6,0.99,8.680,184.8 +17.7,0.99,9.530,186.2 +17.8,0.99,9.990,189.2 +17.9,0.99,11.130,191.3 +17.8,0.99,11.270,191.1 +17.9,0.99,11.730,195.8 +17.7,0.99,11.180,197.2 +17.9,0.99,11.510,194.7 +17.9,0.99,11.320,191.1 +17.9,0.99,10.240,189.3 +18.1,0.99,10.760,187.4 +18.2,0.99,10.710,190.1 +18.2,0.99,9.420,188.5 +18.2,0.99,9.190,186.7 +18.4,0.99,9.400,187.7 +18.4,0.99,8.000,181.6 +18.6,0.99,8.580,181.8 +18.7,0.99,9.350,176.1 +18.7,0.99,9.030,172.4 +18.8,0.99,9.580,174.1 +18.8,0.99,10.230,169.8 +18.6,0.99,10.440,168.1 +18.9,0.99,10.930,167.0 +18.7,0.99,11.280,166.5 +18.7,0.99,11.040,167.6 +18.7,0.99,11.120,166.3 +18.7,0.99,11.120,168.1 +18.8,0.99,11.240,172.3 +18.9,0.99,11.340,171.3 +18.9,0.99,11.510,172.8 +19.1,0.99,11.580,173.2 +19.1,0.99,11.460,177.4 +19.1,0.99,11.070,172.7 +19.3,0.99,11.570,172.0 +19.2,0.99,11.080,168.4 +19.6,0.99,11.420,164.8 +19.4,0.99,10.760,162.9 +19.3,0.99,10.430,165.8 +19.4,0.99,9.770,168.2 +19.6,0.99,10.090,171.5 +19.6,0.99,10.420,169.4 +19.6,0.98,11.060,169.3 +19.6,0.98,10.490,171.1 +19.7,0.98,10.710,174.8 +19.4,0.98,10.060,169.1 +19.1,0.98,10.350,165.3 +18.8,0.98,10.760,167.1 +18.4,0.98,10.610,172.0 +18.1,0.98,9.710,170.2 +18.6,0.98,8.610,168.5 +19.7,0.98,12.370,181.5 +19.8,0.98,11.670,185.5 +18.6,0.98,10.730,193.6 +19.0,0.98,8.830,186.7 +18.7,0.98,7.270,192.0 +19.6,0.98,8.220,195.8 +19.0,0.98,8.800,196.0 +19.3,0.98,10.290,196.8 +17.9,0.99,7.730,219.4 +18.3,0.99,4.780,228.2 +18.6,0.99,2.560,212.3 +18.7,0.99,3.740,190.2 +19.1,0.99,4.930,183.2 +19.3,0.99,6.300,191.5 +19.4,0.98,5.610,201.2 +19.4,0.98,5.290,193.4 +19.6,0.98,4.460,185.9 +19.4,0.98,4.760,182.5 +19.2,0.98,4.450,182.6 +19.1,0.99,4.680,179.6 +19.2,0.99,4.230,195.9 +19.2,0.99,4.100,202.3 +19.3,0.99,2.180,217.9 +19.3,0.99,3.540,346.7 +19.7,0.99,5.090,14.3 +20.1,0.99,9.360,29.8 +19.1,0.99,11.530,43.5 +19.1,0.99,12.330,46.5 +18.3,0.99,13.110,55.6 +18.1,0.99,13.140,66.1 +18.0,0.99,12.780,76.3 +17.7,0.99,13.510,78.7 +17.6,0.99,11.930,87.4 +17.6,0.99,10.750,92.5 +17.4,0.99,10.040,96.1 +17.3,0.99,9.260,97.7 +17.4,0.99,8.380,99.8 +17.7,0.99,7.970,103.5 +17.7,0.99,7.220,101.3 +17.7,0.99,6.640,93.7 +17.6,0.99,6.600,81.9 +17.6,0.99,6.670,81.2 +17.9,0.99,6.210,82.1 +17.7,0.99,7.440,80.1 +17.8,0.99,8.260,77.8 +17.9,0.99,7.390,76.5 +18.3,0.99,7.740,81.5 +17.9,0.99,7.300,63.8 +18.0,0.99,7.300,69.0 +18.0,0.99,7.980,63.4 +17.4,0.99,8.650,48.0 +18.2,0.99,10.160,41.6 +17.7,0.99,13.470,26.1 +16.0,0.99,16.480,26.2 +14.6,0.99,15.100,22.7 +13.4,0.99,14.820,51.0 +13.2,1.00,14.190,58.8 +13.8,1.00,12.300,65.2 +14.3,1.00,12.100,44.9 +14.8,1.00,8.410,40.2 +15.5,1.00,6.860,42.7 +16.3,1.00,6.920,63.0 +17.6,0.99,8.080,69.6 +18.3,0.99,7.790,76.8 +17.9,0.99,6.780,94.3 +17.9,0.99,6.220,95.5 +18.5,0.99,6.620,90.6 +19.0,0.99,8.570,81.2 +18.7,0.99,7.760,62.4 +18.0,0.99,7.150,56.0 +17.8,0.99,7.670,75.1 +17.6,0.99,8.700,86.2 +17.4,0.99,8.260,93.9 +17.1,0.99,7.930,98.4 +16.9,0.99,8.470,113.1 +16.9,0.99,8.010,109.8 +16.8,0.99,8.320,111.0 +16.7,0.99,9.050,115.1 +16.6,0.99,9.260,120.0 +16.7,0.99,9.540,128.3 +16.7,0.99,9.870,129.1 +16.8,0.99,9.900,132.8 +16.9,0.99,9.540,132.7 +16.9,0.99,9.920,137.5 +17.2,0.99,9.640,137.9 +17.6,0.99,10.710,143.3 +17.8,0.99,10.970,144.2 +17.8,0.99,11.530,146.4 +18.0,0.99,11.960,148.0 +18.1,0.98,11.900,149.2 +18.3,0.98,12.610,152.6 +18.4,0.98,11.450,154.6 +18.6,0.98,11.960,156.1 +18.8,0.98,11.770,158.7 +18.8,0.98,10.080,158.9 +18.9,0.98,10.310,162.7 +19.0,0.98,11.000,167.5 +19.1,0.98,10.880,168.2 +19.0,0.98,11.160,172.5 +19.4,0.98,11.010,181.2 +19.9,0.98,11.040,182.7 +19.5,0.98,9.460,178.2 +19.9,0.98,10.950,184.2 +20.1,0.98,11.130,186.7 +20.3,0.98,10.380,189.8 +20.1,0.98,10.890,184.0 +19.8,0.98,9.710,179.4 +19.7,0.98,8.980,176.3 +19.8,0.98,9.340,173.7 +20.3,0.98,9.470,177.3 +20.0,0.98,8.490,175.2 +20.5,0.98,8.290,184.8 +20.5,0.98,7.690,182.8 +20.1,0.98,7.370,175.7 +20.3,0.98,6.600,176.2 +20.2,0.98,6.750,172.3 +20.6,0.98,6.200,167.5 +20.0,0.98,6.220,156.4 +18.7,0.98,6.570,149.7 +18.8,0.98,5.780,146.8 +19.0,0.98,6.450,145.8 +19.0,0.98,6.770,146.6 +18.9,0.98,6.220,139.3 +19.5,0.98,6.120,142.3 +19.4,0.98,5.380,143.6 +19.5,0.98,5.340,135.3 +19.8,0.98,4.570,127.6 +19.4,0.98,3.490,117.7 +19.7,0.98,3.110,124.1 +19.4,0.98,3.430,105.8 +19.8,0.98,2.250,116.6 +19.8,0.98,0.930,84.9 +19.5,0.98,2.190,42.9 +19.8,0.98,2.520,32.6 +19.9,0.98,2.210,30.3 +19.9,0.98,2.740,26.3 +20.0,0.98,1.950,26.2 +19.9,0.98,1.080,33.8 +19.8,0.98,0.360,210.6 +19.7,0.98,0.850,268.0 +20.1,0.98,1.470,337.2 +20.7,0.98,1.520,337.1 +20.3,0.98,1.750,295.3 +20.1,0.98,2.540,253.7 +19.3,0.98,3.700,281.9 +19.4,0.98,2.290,275.3 +19.3,0.98,6.790,324.4 +19.5,0.98,6.550,319.5 +18.9,0.98,5.600,7.6 +17.8,0.98,7.180,358.3 +15.8,0.99,13.860,340.6 +14.8,0.99,14.110,341.7 +13.7,0.99,16.230,333.4 +12.2,0.99,15.340,336.2 +11.6,0.99,14.430,335.5 +11.5,0.99,14.430,334.5 +11.9,0.99,12.850,331.1 +13.0,0.99,13.670,330.3 +13.6,0.99,14.210,331.1 +14.0,0.99,13.980,334.0 +13.9,0.99,14.350,332.8 +13.7,0.99,13.360,341.7 +13.4,0.99,12.820,343.5 +12.7,0.99,13.660,351.0 +11.8,0.99,13.320,355.8 +11.4,0.99,13.040,359.7 +10.6,0.99,13.890,3.8 +10.2,0.99,13.670,10.8 +9.7,1.00,14.490,14.9 +9.0,1.00,14.630,16.4 +8.6,1.00,14.490,21.2 +8.2,1.00,14.880,25.2 +7.7,1.00,14.740,25.6 +7.3,1.00,14.150,25.7 +6.9,1.00,12.980,25.9 +6.2,1.00,12.060,24.3 +6.0,1.00,10.800,24.4 +6.1,1.00,8.990,20.0 +6.7,1.00,8.250,12.8 +7.7,1.00,8.140,6.8 +9.1,1.00,7.320,1.0 +10.6,1.00,6.930,356.1 +11.5,1.00,7.220,350.5 +12.1,1.00,7.670,344.0 +12.5,1.00,7.430,341.6 +12.8,1.00,7.670,342.4 +12.9,1.00,8.880,345.1 +12.7,1.00,9.020,1.3 +12.4,1.00,8.700,358.2 +12.0,1.00,9.750,1.8 +11.7,1.00,10.650,7.5 +11.3,1.00,11.630,6.9 +10.8,1.00,12.700,10.9 +9.8,1.00,12.140,20.6 +9.6,1.00,11.950,20.8 +9.2,1.00,11.700,19.8 +8.8,1.00,10.860,22.4 +8.6,1.00,10.590,22.0 +8.2,1.00,10.010,24.8 +7.8,1.01,9.040,27.0 +7.6,1.01,8.570,29.5 +7.5,1.01,7.870,28.1 +7.6,1.01,6.790,26.9 +7.9,1.01,5.340,17.5 +9.0,1.01,4.870,355.8 +9.9,1.01,4.420,331.9 +11.3,1.00,5.520,349.4 +12.1,1.00,6.770,344.8 +12.6,1.00,6.250,340.8 +13.0,1.00,6.610,349.6 +13.1,1.00,7.790,349.5 +13.0,1.00,6.810,4.6 +12.6,1.00,6.190,11.7 +12.4,1.00,5.320,24.9 +12.3,1.00,4.650,38.0 +12.4,1.00,3.840,55.0 +12.5,1.00,3.740,65.1 +12.4,1.00,3.830,76.5 +12.4,1.00,3.390,83.5 +12.3,1.00,3.590,101.4 +12.4,1.00,3.790,99.3 +12.6,1.00,3.430,108.8 +12.7,1.00,4.120,115.8 +12.6,1.00,3.090,112.7 +12.8,1.00,4.380,121.6 +12.9,1.00,5.540,127.6 +13.1,1.00,4.440,135.6 +13.2,1.00,5.410,115.9 +13.4,1.00,4.810,136.6 +13.7,1.00,4.920,129.9 +13.9,1.00,5.950,135.6 +13.8,1.00,6.650,128.5 +13.9,1.00,7.620,126.6 +14.0,1.00,7.420,132.1 +14.1,1.00,8.230,131.9 +14.1,1.00,8.310,135.2 +14.3,1.00,8.430,139.9 +14.5,1.00,8.220,140.8 +14.7,1.00,8.390,142.4 +14.9,1.00,8.110,151.8 +15.1,1.00,8.170,150.2 +15.3,1.00,8.090,153.5 +15.5,1.00,7.390,153.4 +15.7,1.00,7.330,163.3 +15.8,1.00,6.360,153.6 +16.1,1.00,6.010,156.2 +16.1,1.00,5.550,150.0 +16.3,1.00,5.700,147.2 +16.3,1.00,6.910,135.5 +16.5,1.00,7.400,130.9 +16.4,1.00,7.300,121.6 +16.5,1.00,8.220,122.6 +16.6,1.00,8.020,122.4 +16.7,1.00,8.280,125.9 +16.9,1.00,8.240,131.2 +17.0,1.00,8.160,133.7 +16.9,1.00,8.820,129.2 +17.0,1.00,8.660,133.1 +17.1,1.00,8.920,135.4 +16.8,1.00,7.730,126.6 +17.1,1.00,8.380,135.7 +17.1,1.00,8.450,134.5 +17.1,1.00,7.830,134.8 +17.3,1.00,8.500,142.5 +17.3,1.00,8.490,145.5 +17.4,1.00,8.410,146.4 +17.3,1.00,8.320,146.2 +17.3,1.00,8.630,145.0 +17.5,1.00,8.370,146.9 +17.5,1.00,8.310,144.2 +17.7,1.00,9.080,145.4 +17.7,1.00,8.890,142.3 +17.8,1.00,9.310,145.0 +17.7,1.00,8.480,140.2 +17.8,1.00,8.850,142.2 +17.9,1.00,8.690,143.5 +17.9,1.00,8.180,142.8 +18.2,1.00,8.160,147.6 +18.2,1.00,8.040,144.0 +18.2,1.00,8.290,144.8 +18.2,1.00,7.740,142.1 +18.3,1.00,7.950,146.0 +18.2,1.00,7.580,139.1 +18.0,1.00,7.940,136.8 +17.9,1.00,8.290,137.5 +18.0,1.00,8.730,140.9 +18.0,1.00,8.140,143.1 +18.1,1.00,8.620,147.6 +18.2,1.00,8.400,151.1 +18.2,1.00,8.990,153.0 +18.2,0.99,8.680,149.5 +18.3,0.99,7.780,149.6 +18.4,0.99,9.180,155.9 +18.5,0.99,8.530,158.6 +18.7,0.99,7.840,167.2 +18.7,0.99,7.260,164.8 +18.7,0.99,6.570,165.0 +18.8,0.99,6.890,174.4 +18.9,0.99,6.760,179.8 +19.1,0.99,6.350,174.0 +19.2,0.99,7.490,176.1 +19.2,0.99,7.930,179.4 +19.1,0.99,7.230,179.8 +19.1,0.99,7.840,182.7 +19.1,0.99,7.760,184.2 +19.2,0.99,6.550,188.2 +19.2,0.99,6.570,187.7 +18.8,0.99,6.800,186.4 +18.9,0.99,7.890,188.5 +19.0,0.99,8.920,190.6 +18.9,0.99,9.660,188.3 +18.8,0.99,10.290,188.6 +19.0,0.99,9.780,194.5 +18.6,0.99,9.110,186.9 +18.6,0.99,9.970,191.4 +18.7,0.99,8.600,190.4 +18.9,0.99,6.430,199.0 +19.1,0.99,7.640,203.8 +19.4,0.99,8.400,193.7 +19.2,0.99,9.430,187.7 +19.2,0.99,6.170,185.3 +19.3,0.99,6.460,184.4 +19.4,0.99,8.550,190.4 +19.6,0.99,8.710,186.0 +19.5,0.99,8.210,182.4 +19.7,0.99,6.920,189.7 +19.9,0.99,5.520,190.1 +19.9,0.99,5.920,183.7 +19.9,0.99,6.980,176.4 +20.0,0.99,8.040,172.2 +18.3,0.99,13.210,56.4 +17.5,0.99,14.230,29.6 +17.9,0.99,5.490,11.8 +22.5,0.99,13.620,131.3 +19.1,0.99,11.340,143.5 +18.9,0.99,10.860,170.3 +18.9,0.99,7.950,161.4 +18.9,0.99,7.510,169.9 +19.1,0.99,6.250,164.3 +18.7,0.99,3.350,174.4 +18.4,0.99,1.950,191.1 +18.3,0.99,0.870,273.0 +18.0,0.99,0.830,335.5 +18.0,0.99,1.600,21.2 +18.0,0.99,2.760,51.6 +18.1,0.99,2.890,72.3 +17.9,0.99,3.730,97.5 +17.8,0.99,3.150,94.6 +17.7,0.99,3.790,87.4 +18.1,0.99,4.460,113.1 +18.3,0.99,4.840,122.0 +18.3,0.99,5.060,120.6 +18.3,0.99,5.450,120.9 +18.4,0.99,5.430,126.8 +18.3,0.99,5.730,129.3 +18.0,0.99,6.120,141.7 +18.2,0.99,6.250,143.1 +18.1,0.99,6.620,144.8 +18.2,0.99,7.190,143.5 +18.2,0.99,7.020,153.7 +18.0,0.99,5.670,152.0 +17.1,0.99,7.300,166.9 +17.9,0.99,6.620,171.5 +18.2,0.99,5.020,137.7 +18.4,0.99,6.560,136.5 +18.6,0.99,5.960,135.8 +18.6,0.99,5.990,135.9 +18.7,0.99,5.920,117.9 +18.8,0.99,8.560,118.9 +18.7,0.99,7.390,128.9 +19.3,0.99,9.830,132.3 +19.2,0.99,9.710,129.6 +19.0,0.99,7.430,133.9 +19.4,0.99,6.790,138.4 +19.5,0.99,5.450,128.3 +19.4,0.99,5.050,112.8 +19.4,0.99,5.480,100.8 +19.5,0.99,7.610,87.0 +19.6,0.99,8.760,98.4 +19.2,0.99,9.560,99.2 +19.4,0.99,10.820,114.2 +19.5,0.99,9.380,105.7 +19.3,0.99,8.530,93.7 +19.4,0.99,9.220,114.8 +19.1,0.99,7.550,110.6 +19.3,0.99,6.650,102.1 +19.4,0.99,6.460,109.3 +17.2,0.99,10.580,171.3 +17.8,0.99,3.510,158.8 +17.6,0.99,4.990,252.2 +18.0,0.99,2.380,223.2 +17.9,0.99,5.200,297.0 +14.7,0.99,14.690,0.1 +16.4,0.99,7.600,82.0 +16.1,0.99,7.820,13.8 +16.2,0.99,10.700,15.2 +16.3,0.99,8.480,24.6 +16.4,0.99,7.940,36.2 +17.3,0.99,5.410,39.4 +18.6,0.99,8.770,4.2 +17.6,0.99,11.590,7.0 +15.9,0.99,11.800,10.5 +14.1,0.99,11.100,12.6 +12.9,0.99,9.650,31.1 +12.2,0.99,9.480,14.4 +12.1,0.99,8.260,8.3 +11.9,0.99,9.180,15.6 +11.6,0.99,10.360,18.2 +11.7,0.99,8.670,0.9 +11.2,0.99,8.990,356.0 +11.1,0.99,8.230,350.2 +11.1,0.99,7.000,345.4 +11.0,0.99,6.750,354.1 +10.9,0.99,6.740,330.4 +10.7,0.99,8.080,335.2 +10.6,0.99,8.180,329.1 +10.2,0.99,9.810,332.2 +9.9,0.99,9.490,333.7 +9.8,0.99,9.400,332.5 +9.9,0.99,9.600,326.8 +9.9,0.99,11.450,322.9 +10.4,0.99,10.010,334.9 +10.8,0.99,10.870,335.6 +11.1,0.99,10.730,336.8 +11.2,0.99,11.760,333.2 +10.8,0.99,10.740,339.6 +10.7,0.99,10.610,337.6 +10.2,0.99,9.830,338.0 +10.0,0.99,9.620,344.0 +9.9,1.00,9.180,347.6 +10.1,1.00,8.720,348.8 +10.3,1.00,9.540,347.8 +9.7,1.00,9.360,0.6 +9.3,1.00,9.150,355.9 +9.1,1.00,8.670,354.7 +9.3,1.00,7.340,356.2 +9.4,1.00,6.890,351.7 +9.3,1.00,7.650,354.1 +9.6,1.00,7.690,352.7 +9.3,1.00,7.140,354.6 +9.3,1.00,6.190,353.6 +9.6,1.00,4.790,344.2 +10.1,1.00,3.820,341.1 +10.7,1.00,2.990,330.5 +11.4,1.00,2.760,284.2 +13.3,1.00,2.770,267.1 +14.5,1.00,2.600,267.1 +15.4,1.00,2.540,262.0 +15.9,1.00,1.710,216.1 +16.2,1.00,2.920,200.3 +16.4,1.00,3.310,191.1 +16.2,0.99,4.060,190.7 +16.2,0.99,3.960,180.1 +16.4,0.99,4.030,175.0 +16.4,0.99,4.050,172.6 +16.5,0.99,3.610,170.9 +16.6,0.99,4.150,163.9 +16.5,0.99,5.020,151.6 +16.4,0.99,5.220,145.9 +16.5,0.99,5.930,142.2 +16.6,0.99,7.780,138.1 +16.6,0.99,8.640,141.2 +16.7,0.99,9.380,146.6 +16.8,0.99,9.430,149.6 +17.0,0.99,9.520,152.8 +17.2,0.99,9.730,152.9 +17.4,0.99,8.480,167.1 +17.6,0.99,7.780,157.1 +17.9,0.99,7.450,167.5 +18.4,0.99,7.380,173.3 +18.6,0.99,8.780,169.9 +18.7,0.99,8.650,169.0 +18.7,0.99,8.950,169.3 +18.6,0.99,8.200,165.7 +18.6,0.99,7.610,160.1 +18.4,0.99,6.930,151.3 +18.4,0.99,7.890,161.0 +18.6,0.99,8.630,161.2 +18.7,0.99,8.860,157.4 +18.6,0.99,7.650,156.1 +18.8,0.99,8.950,164.3 +18.8,0.99,8.620,163.7 +18.9,0.99,8.260,167.0 +18.9,0.99,8.630,166.6 +19.0,0.99,8.450,166.5 +19.0,0.99,8.150,166.9 +19.0,0.99,8.380,164.2 +19.4,0.99,9.190,171.3 +19.1,0.99,8.130,157.0 +19.2,0.99,8.030,159.1 +19.1,0.99,8.290,154.4 +19.2,0.99,8.060,157.3 +19.3,0.99,8.190,156.2 +19.5,0.99,8.510,155.2 +19.5,0.99,8.120,152.3 +19.6,0.99,8.700,156.2 +19.6,0.99,9.130,149.8 +19.5,0.99,8.720,151.1 +19.4,0.99,9.480,149.6 +19.3,0.99,10.160,149.2 +19.3,0.99,10.690,154.5 +19.3,0.99,10.840,154.9 +19.3,0.99,11.610,154.1 +19.4,0.99,11.780,163.6 +19.3,0.99,11.280,161.2 +19.3,0.99,10.920,161.1 +19.3,0.99,9.890,163.1 +19.7,0.99,10.620,170.4 +19.7,0.99,10.360,169.5 +19.5,0.99,9.350,162.8 +19.4,0.99,9.820,160.4 +19.8,0.99,11.360,160.7 +19.5,0.99,10.520,154.7 +19.5,0.99,10.530,148.1 +19.7,0.99,11.210,144.6 +19.8,0.99,10.300,149.9 +19.9,0.99,10.010,142.7 +20.0,0.99,9.060,150.2 +20.6,0.99,11.620,158.5 +20.1,0.99,8.100,126.0 +20.2,0.99,10.550,138.8 +19.9,0.99,9.190,128.8 +20.1,0.99,9.940,147.9 +19.9,0.99,11.560,138.7 +19.9,0.99,10.610,143.4 +19.7,0.99,11.030,133.4 +20.0,0.98,11.490,146.2 +19.8,0.98,10.900,142.2 +19.9,0.98,10.230,151.2 +19.8,0.98,10.540,149.5 +20.2,0.98,12.640,148.2 +20.1,0.98,12.280,143.3 +20.0,0.98,12.750,146.9 +20.0,0.98,12.060,145.9 +20.2,0.98,13.290,148.3 +20.1,0.98,13.440,144.7 +20.3,0.98,14.100,139.2 +20.0,0.98,12.970,136.4 +20.0,0.99,14.210,140.0 +20.3,0.99,13.080,138.2 +20.4,0.99,13.060,137.9 +20.8,0.99,13.100,141.2 +20.8,0.99,12.540,140.4 +20.8,0.98,13.050,136.0 +20.7,0.98,13.260,133.2 +20.8,0.98,14.240,133.5 +21.1,0.98,15.210,138.1 +21.1,0.98,16.620,141.2 +21.1,0.98,16.850,141.0 +20.8,0.98,16.670,141.1 +20.6,0.98,16.940,141.2 +20.9,0.98,16.610,143.7 +20.7,0.98,17.700,146.0 +20.6,0.98,16.250,143.4 +20.6,0.98,15.470,142.9 +20.6,0.98,15.150,147.5 +20.5,0.98,14.140,144.7 +20.8,0.98,16.710,151.4 +20.9,0.98,16.310,151.7 +20.7,0.98,15.360,149.6 +21.2,0.98,15.090,148.9 +21.1,0.98,13.760,144.1 +21.1,0.98,14.430,143.2 +21.5,0.98,13.040,147.0 +21.2,0.98,12.840,143.3 +21.8,0.98,12.710,150.8 +21.7,0.98,10.550,159.9 +21.7,0.98,8.520,167.6 +21.2,0.98,5.180,157.3 +21.4,0.98,5.850,155.0 +21.4,0.98,7.360,146.5 +22.1,0.98,8.610,150.8 +21.8,0.98,7.340,159.6 +21.7,0.98,5.430,173.0 +16.4,0.98,7.730,345.4 +15.2,0.98,9.800,339.8 +14.6,0.98,10.680,339.9 +12.7,0.98,11.620,345.8 +11.3,0.98,12.210,345.8 +10.9,0.98,12.930,345.9 +10.5,0.98,12.480,349.2 +10.2,0.98,12.380,352.8 +9.3,0.99,16.210,341.6 +9.1,0.98,14.660,0.9 +9.2,0.99,11.760,349.1 +9.7,0.99,8.660,1.8 +10.1,0.99,7.850,358.9 +9.2,0.99,9.010,341.7 +10.2,0.99,10.500,333.6 +12.6,0.99,7.870,344.6 +14.3,0.99,6.780,335.5 +15.6,0.99,7.020,330.2 +16.8,0.99,7.070,329.1 +17.7,0.99,6.830,331.1 +17.9,0.99,6.270,330.4 +18.0,0.99,6.280,336.6 +18.0,0.99,5.850,348.0 +17.7,0.99,4.770,6.9 +17.4,0.99,4.880,9.3 +17.2,0.99,4.750,11.1 +17.2,0.99,4.190,10.4 +16.5,0.99,3.790,30.5 +16.1,0.99,3.700,38.0 +15.6,0.99,3.700,31.4 +15.0,0.99,3.160,29.9 +15.0,0.99,3.460,36.6 +14.9,0.99,3.970,44.0 +15.4,0.99,4.580,52.5 +15.9,0.99,4.890,55.2 +16.3,0.99,4.800,65.7 +16.2,0.99,4.460,57.6 +16.3,0.99,4.190,60.8 +16.7,0.99,4.030,72.1 +17.3,0.99,4.080,94.3 +17.5,0.99,4.410,111.5 +17.7,0.99,4.190,113.4 +17.9,0.99,3.960,113.6 +18.2,0.99,3.370,111.2 +18.3,0.99,4.460,115.3 +18.1,0.99,3.750,118.6 +18.2,0.99,4.530,119.8 +18.4,0.99,5.020,119.7 +18.5,0.99,5.740,121.8 +18.5,0.99,6.450,124.9 +18.5,0.99,7.170,130.0 +18.4,0.99,6.110,124.3 +18.4,0.99,6.020,119.2 +18.3,0.99,5.620,118.1 +18.5,0.99,5.820,119.5 +18.3,0.99,5.910,107.5 +18.3,0.99,5.990,101.0 +18.4,0.99,6.710,100.8 +18.9,0.99,8.260,102.1 +18.8,0.99,8.500,101.9 +18.8,0.99,8.450,103.7 +18.8,0.99,8.290,98.2 +18.8,0.99,8.710,100.5 +19.2,0.99,9.480,96.9 +19.0,0.99,10.510,102.1 +19.0,0.99,9.730,102.6 +19.0,0.99,8.800,100.6 +19.0,0.99,9.610,103.0 +19.0,0.99,10.320,106.1 +18.9,0.99,7.090,98.9 +19.2,0.99,7.840,78.2 +19.3,0.99,9.900,90.4 +18.9,0.98,9.190,102.1 +18.7,0.98,9.060,110.1 +17.9,0.98,9.520,110.2 +17.9,0.98,9.590,101.3 +18.1,0.98,7.250,96.8 +18.3,0.98,8.300,94.9 +18.3,0.98,7.420,89.8 +18.3,0.98,6.910,95.0 +18.3,0.98,7.140,93.5 +18.2,0.98,5.670,96.5 +18.5,0.98,4.330,104.9 +18.6,0.98,3.160,129.1 +18.7,0.98,1.950,148.1 +18.7,0.98,1.480,144.8 +18.6,0.98,2.120,139.6 +19.3,0.98,3.080,136.6 +19.7,0.98,3.290,152.1 +19.9,0.98,4.490,156.0 +20.0,0.98,5.430,157.8 +20.0,0.98,6.010,159.6 +19.9,0.98,6.680,160.8 +19.7,0.98,7.970,160.1 +19.7,0.98,8.790,162.3 +19.7,0.98,9.410,170.1 +19.6,0.98,8.500,176.1 +19.7,0.98,8.200,175.2 +20.0,0.98,10.130,180.7 +20.0,0.98,8.540,176.1 +20.5,0.98,9.070,174.3 +20.4,0.98,8.070,186.2 +20.2,0.98,8.020,187.0 +20.7,0.98,9.580,189.6 +20.8,0.98,6.550,181.7 +21.1,0.99,8.630,175.4 +20.3,0.99,7.610,166.9 +20.3,0.99,7.110,183.1 +20.5,0.99,7.590,173.9 +21.0,0.99,6.940,167.0 +20.9,0.99,7.180,166.1 +20.7,0.99,5.690,148.5 +20.8,0.99,5.050,143.3 +21.0,0.99,6.620,139.4 +20.9,0.99,7.560,142.1 +20.8,0.99,7.350,138.4 +20.5,0.99,7.670,136.4 +21.1,0.99,8.050,126.6 +20.9,0.99,8.450,122.3 +21.1,0.99,8.910,125.4 +21.4,0.99,9.620,136.4 +21.6,0.99,10.470,145.2 +21.4,0.99,9.860,148.2 +21.6,0.99,8.680,147.6 +21.7,0.99,10.320,153.1 +22.6,0.99,10.740,175.2 +22.2,0.99,9.430,157.4 +21.8,0.99,8.670,144.7 +21.4,0.99,10.870,156.1 +21.7,0.99,9.680,151.1 +22.3,0.99,10.280,153.7 +21.7,0.99,8.810,144.7 +21.6,0.99,8.920,135.7 +21.7,0.99,7.730,132.3 +22.0,0.99,9.180,129.6 +22.1,0.99,9.840,143.3 +22.0,0.99,8.170,128.5 +22.1,0.99,8.740,125.9 +21.9,0.99,8.640,124.4 +21.8,0.99,10.900,129.7 +21.7,0.99,10.210,123.9 +21.0,0.99,12.430,122.3 +22.3,0.99,12.460,134.5 +21.9,0.99,12.340,134.2 +21.9,0.99,10.790,136.4 +21.9,0.99,12.820,137.1 +21.5,0.99,13.380,143.5 +21.6,0.99,11.200,145.3 +21.5,0.99,10.680,145.9 +21.6,0.99,11.410,136.1 +21.6,0.99,11.350,140.7 +21.6,0.99,10.000,141.0 +21.5,0.99,9.520,137.6 +22.2,0.99,9.350,149.8 +22.7,0.99,11.260,153.4 +21.8,0.99,9.720,142.0 +21.4,0.99,10.970,124.7 +21.7,0.99,10.950,133.2 +21.5,0.99,11.160,126.6 +21.8,0.99,11.630,134.4 +22.1,0.99,12.730,140.6 +22.3,0.99,13.030,137.5 +22.2,0.99,13.380,142.7 +22.3,0.99,14.030,146.1 +22.8,0.98,14.270,151.3 +21.9,0.98,14.670,141.5 +21.7,0.98,15.020,146.6 +21.7,0.98,14.880,146.6 +21.8,0.98,15.500,147.6 +21.9,0.98,15.600,151.8 +21.7,0.98,14.920,150.9 +21.5,0.98,14.580,152.1 +21.6,0.98,14.450,157.8 +21.4,0.98,12.230,162.7 +21.4,0.98,13.410,157.8 +21.5,0.98,13.580,158.5 +21.4,0.98,11.070,157.8 +21.6,0.98,12.440,161.2 +21.6,0.98,11.110,163.0 +21.6,0.98,9.950,157.4 +21.6,0.98,9.270,159.2 +21.6,0.98,6.360,167.2 +21.8,0.98,5.510,182.2 +22.1,0.98,4.840,198.9 +22.2,0.98,3.390,183.7 +22.3,0.98,4.960,162.3 +22.4,0.98,5.560,158.1 +17.0,0.99,15.880,337.7 +16.1,0.99,16.430,348.7 +13.9,0.99,15.170,350.1 +13.5,0.99,14.790,354.5 +13.7,0.99,14.250,0.2 +13.8,0.99,13.610,1.0 +14.6,0.99,15.320,359.9 +14.5,0.99,17.110,359.3 +13.7,0.99,17.580,359.3 +12.8,0.99,17.130,2.3 +12.1,0.99,17.710,5.1 +11.4,0.99,17.990,6.4 +10.9,1.00,17.320,7.0 +10.4,1.00,16.220,8.7 +9.9,1.00,15.090,8.4 +9.7,1.00,13.940,5.2 +9.8,1.00,12.170,3.0 +10.8,1.00,10.260,358.2 +11.5,1.00,9.860,349.8 +12.1,1.00,8.690,337.1 +13.4,1.00,9.610,338.3 +14.5,1.00,10.710,340.4 +15.1,1.00,10.970,339.2 +15.5,1.00,10.660,340.2 +15.8,1.00,10.490,344.4 +15.9,1.00,9.860,347.7 +15.7,1.00,9.670,347.2 +15.3,1.00,8.220,356.4 +14.9,1.00,8.380,5.0 +14.8,1.00,8.330,8.2 +14.6,1.00,7.570,13.5 +14.4,1.00,7.350,23.8 +14.1,1.00,6.950,27.7 +14.0,1.00,6.830,32.9 +13.8,1.00,6.180,34.6 +13.8,1.00,6.320,39.1 +13.9,1.00,6.260,47.5 +14.1,1.00,6.630,61.4 +14.2,1.00,6.690,70.0 +14.5,1.00,6.820,84.0 +14.7,1.00,6.960,87.1 +14.7,1.00,6.890,93.4 +14.9,1.00,6.850,96.1 +15.0,1.00,6.180,96.8 +15.3,1.00,7.400,115.5 +15.4,1.00,6.900,110.6 +15.6,1.00,7.280,114.8 +15.7,1.00,6.500,111.4 +15.6,1.00,7.580,105.8 +15.7,1.00,7.300,107.7 +15.7,1.00,7.840,113.8 +15.8,1.00,7.570,126.2 +16.0,1.00,7.910,127.5 +16.4,1.00,8.510,131.0 +16.6,0.99,7.900,123.1 +16.7,0.99,9.230,118.9 +17.1,0.99,7.570,114.9 +17.3,0.99,7.130,115.9 +17.4,0.99,8.400,120.2 +17.6,1.00,7.220,124.0 +17.7,1.00,7.890,120.0 +17.5,1.00,6.490,110.8 +17.7,1.00,7.190,111.3 +17.7,1.00,7.360,98.3 +17.8,1.00,7.500,96.2 +18.0,1.00,6.850,94.4 +18.1,1.00,6.570,81.0 +18.1,1.00,6.140,81.8 +18.0,1.00,7.740,84.4 +17.9,1.00,7.800,90.1 +18.0,0.99,8.470,92.6 +18.0,0.99,8.160,92.6 +18.1,0.99,7.480,98.6 +18.2,0.99,7.400,98.7 +18.1,0.99,6.850,98.2 +18.1,0.99,6.870,98.4 +18.1,0.99,6.800,100.9 +18.2,0.99,6.680,104.2 +18.4,0.99,6.410,110.7 +18.5,0.99,5.050,92.4 +18.7,0.99,7.520,101.2 +18.9,0.99,7.090,107.7 +18.8,0.99,6.710,110.6 +18.7,0.99,6.290,118.2 +18.8,0.99,5.930,123.5 +18.7,0.99,5.410,119.4 +18.7,0.99,5.180,120.7 +18.7,0.99,5.310,122.0 +18.8,0.99,5.260,113.7 +18.8,0.99,4.680,108.8 +18.8,0.99,4.220,107.0 +18.9,0.99,4.100,109.3 +19.0,0.99,3.680,116.3 +19.1,0.99,4.030,125.0 +19.1,0.99,4.260,125.2 +19.1,0.99,4.550,129.7 +19.1,0.99,5.420,133.8 +19.1,0.99,6.790,138.8 +19.0,0.99,7.010,139.6 +19.0,0.99,7.680,144.9 +18.9,0.99,7.650,142.1 +18.9,0.99,9.470,143.6 +19.3,0.99,7.980,152.0 +19.1,0.99,8.710,141.8 +19.3,0.99,8.350,146.6 +19.2,0.99,8.090,161.0 +19.5,0.99,8.610,163.5 +19.6,0.99,6.430,156.2 +19.5,0.99,8.010,167.8 +19.8,0.99,8.270,158.8 +19.9,0.99,9.620,155.9 +20.2,0.99,8.860,148.8 +20.3,0.99,9.110,156.0 +20.5,0.99,8.740,160.7 +20.5,0.99,7.330,155.1 +20.6,0.99,7.250,151.5 +20.9,0.99,6.570,157.8 +20.9,0.99,6.510,150.7 +20.9,0.99,5.770,146.5 +21.0,0.99,5.790,139.6 +21.3,0.99,6.790,149.1 +21.1,0.99,6.960,141.3 +20.9,0.99,6.390,136.0 +21.3,0.99,7.800,158.1 +20.8,0.99,5.960,154.1 +20.9,0.99,6.000,157.7 +20.7,0.99,4.670,175.9 +21.1,0.99,4.740,170.0 +21.3,0.99,5.450,181.5 +21.3,0.99,4.660,185.3 +21.4,0.99,2.570,250.4 +14.9,0.99,12.690,343.4 +13.7,0.99,12.430,350.7 +13.3,0.99,11.540,350.6 +11.8,0.99,12.720,351.3 +10.8,1.00,11.440,357.9 +10.7,1.00,11.860,357.2 +11.4,1.00,11.050,1.9 +12.1,1.00,10.870,5.6 +13.5,1.00,8.710,7.9 +15.7,1.00,8.190,9.3 +17.0,1.00,8.310,18.1 +18.0,1.00,6.460,23.6 +18.9,1.00,7.180,15.6 +19.3,1.00,7.430,30.2 +19.6,1.00,6.720,32.6 +19.6,1.00,6.860,28.7 +19.3,1.00,7.730,28.3 +18.5,1.00,9.370,31.3 +17.9,1.00,9.620,33.1 +17.5,1.00,9.850,34.7 +17.3,1.00,9.940,41.1 +17.1,1.00,9.870,42.5 +16.9,1.00,9.820,46.4 +16.7,1.00,10.480,50.2 +16.3,1.00,10.500,46.5 +16.0,1.00,11.040,46.3 +15.5,1.00,10.750,48.0 +15.3,1.00,12.210,56.1 +14.8,1.00,11.260,52.6 +14.6,1.00,10.950,53.0 +14.5,1.00,9.430,56.9 +14.7,1.00,8.540,60.8 +15.0,1.00,8.900,63.6 +15.7,1.00,9.820,68.6 +16.2,1.00,8.810,73.7 +16.6,1.00,8.630,72.1 +16.9,1.00,7.920,81.2 +17.4,1.00,7.470,84.2 +17.9,1.00,7.350,91.8 +18.2,1.00,7.870,99.9 +18.4,1.00,7.220,107.2 +18.7,1.00,6.900,113.5 +18.7,1.00,7.980,127.1 +19.3,1.00,7.770,136.8 +19.2,1.00,7.210,131.0 +19.3,1.00,6.330,141.9 +19.4,1.00,5.870,139.4 +19.6,1.00,6.110,136.3 +19.8,1.00,8.370,142.9 +19.7,1.00,7.690,139.8 +19.7,1.00,8.590,141.3 +19.9,1.00,7.790,138.8 +20.1,1.00,8.880,135.7 +20.1,1.00,8.710,135.4 +20.4,1.00,8.750,137.8 +20.3,1.00,8.110,130.7 +20.2,1.00,7.820,129.1 +20.4,1.00,7.850,131.1 +20.5,1.00,7.630,127.1 +20.5,1.00,8.160,128.0 +20.5,1.00,7.960,124.1 +20.5,1.00,8.480,122.3 +20.5,1.00,8.350,126.5 +20.5,0.99,9.160,138.2 +20.1,0.99,9.580,139.6 +20.2,0.99,8.990,133.6 +20.3,0.99,9.550,140.7 +20.3,0.99,9.330,144.7 +20.4,0.99,8.950,152.0 +20.1,0.99,9.240,152.9 +20.2,0.99,8.220,162.0 +20.2,0.99,7.940,162.2 +20.3,0.99,6.860,167.3 +20.3,0.99,6.770,163.4 +20.5,0.99,8.290,165.1 +20.7,0.99,7.910,171.1 +20.4,0.99,7.710,163.0 +20.4,0.99,7.890,160.3 +20.5,0.99,6.990,157.2 +20.5,1.00,3.870,166.5 +20.6,0.99,5.830,152.9 +21.0,0.99,6.110,162.0 +21.0,0.99,6.650,158.6 +20.9,0.99,7.770,157.7 +20.9,0.99,8.000,154.2 +20.9,0.99,8.050,159.0 +21.0,0.99,8.750,159.7 +20.9,0.99,1.600,276.9 +18.4,0.99,11.180,5.9 +19.5,0.99,5.520,27.9 +20.8,0.99,4.000,55.7 +21.3,0.99,5.730,135.3 +20.8,0.99,7.300,136.6 +20.5,0.99,5.410,161.3 +20.3,0.99,5.100,179.2 +20.1,0.99,7.700,159.8 +20.4,0.99,5.560,171.7 +20.3,0.99,1.150,266.2 +20.2,0.99,0.800,2.7 +20.3,0.99,5.260,95.8 +20.5,0.99,3.050,84.0 +20.6,0.99,5.090,94.2 +20.7,0.99,5.890,105.5 +20.9,0.99,5.440,129.0 +20.7,0.99,5.600,121.7 +21.0,0.99,5.140,149.5 +21.4,0.99,5.390,168.2 +21.2,0.99,5.420,174.9 +21.2,0.99,4.290,192.0 +21.1,0.99,2.730,160.8 +21.1,0.99,2.090,155.3 +21.1,0.99,3.270,115.7 +21.3,0.99,3.900,115.0 +21.7,0.99,3.280,119.3 +21.1,0.99,4.740,96.9 +21.3,0.99,4.360,109.5 +21.1,0.99,4.630,122.2 +19.1,0.99,5.270,116.1 +19.7,0.99,4.660,129.9 +20.5,0.99,4.080,122.0 +20.6,0.99,2.980,134.6 +21.0,0.99,3.210,126.0 +20.8,0.99,3.630,135.3 +20.4,0.99,4.530,124.5 +20.2,0.99,4.470,113.2 +20.2,0.99,5.340,120.3 +20.7,0.99,4.300,125.3 +20.7,0.99,5.280,110.8 +20.7,0.99,5.580,119.9 +21.1,0.99,5.110,126.5 +20.9,0.99,3.900,148.8 +21.1,0.99,4.900,148.1 +20.9,0.99,5.650,141.3 +20.9,0.99,5.220,172.7 +20.8,0.99,4.180,175.7 +20.2,0.99,4.340,155.7 +20.2,0.99,4.580,142.2 +19.8,0.99,5.420,152.9 +19.8,0.99,4.550,155.6 +19.7,0.99,3.990,141.1 +19.7,0.99,4.720,140.3 +19.9,0.99,5.580,152.5 +20.9,0.99,6.530,161.9 +21.3,0.99,6.850,159.5 +20.7,0.99,5.770,148.4 +20.4,0.99,5.440,141.8 +20.0,0.99,4.870,140.6 +20.1,0.99,5.620,189.6 +20.0,0.99,6.170,159.7 +20.6,0.99,5.150,154.7 +19.8,0.99,2.560,187.7 +20.3,0.99,2.320,138.2 +19.8,0.99,5.600,121.6 +20.2,0.99,6.100,99.8 +20.0,0.99,6.850,106.7 +20.2,0.98,7.080,129.4 +20.4,0.98,6.180,131.8 +20.6,0.98,5.320,142.8 +20.8,0.98,4.180,153.2 +20.7,0.98,4.990,160.5 +20.9,0.98,4.450,161.7 +20.7,0.99,3.920,153.9 +20.6,0.99,4.370,153.5 +21.5,0.98,5.350,161.9 +21.8,0.99,4.370,166.1 +20.7,0.98,2.690,135.7 +20.7,0.99,1.410,106.7 +20.5,0.99,3.010,108.5 +20.6,0.99,3.360,107.7 +20.6,0.99,3.370,95.7 +20.6,0.99,1.600,107.0 +20.4,0.99,2.320,103.2 +20.4,0.99,3.150,81.3 +20.3,0.99,4.020,83.3 +20.1,0.99,4.200,81.2 +20.5,0.99,4.370,96.5 +20.6,0.99,4.710,108.3 +21.3,0.99,3.720,121.2 +21.5,0.99,4.140,137.2 +21.6,0.99,4.420,148.7 +21.7,0.99,3.860,149.6 +21.8,0.99,3.580,153.1 +21.7,0.99,4.690,166.4 +21.7,0.99,6.040,163.9 +21.5,0.99,5.030,157.3 +21.5,0.99,4.960,144.9 +21.5,0.99,4.170,149.0 +21.7,0.99,3.370,155.0 +21.4,0.99,2.830,179.9 +21.4,0.99,2.890,193.0 +21.3,0.99,2.590,252.2 +21.2,0.99,2.810,290.9 +20.5,0.99,4.000,274.9 +19.9,0.99,5.700,286.5 +19.8,0.99,3.240,325.6 +20.3,0.99,5.050,316.5 +19.7,0.99,8.410,354.6 +19.7,0.99,10.520,9.4 +18.5,0.99,9.510,351.2 +18.8,0.99,8.360,335.0 +21.4,0.99,7.150,336.7 +23.3,0.99,9.300,339.9 +22.6,0.99,8.130,337.5 +21.7,0.99,14.700,323.3 +21.3,0.99,15.770,332.0 +20.6,0.99,15.540,334.3 +19.3,0.99,16.890,333.9 +17.3,0.99,17.320,335.9 +15.8,0.99,16.590,334.1 +14.7,0.99,18.530,341.6 +13.5,0.99,17.610,337.8 +12.7,0.99,18.110,334.9 +12.0,0.99,17.040,333.9 +10.3,0.99,17.310,331.9 +9.8,0.99,15.340,333.3 +9.5,0.99,15.170,330.7 +8.9,0.99,17.310,333.2 +8.8,1.00,14.850,333.2 +8.5,1.00,15.740,336.8 +8.0,1.00,16.280,333.1 +7.7,1.00,17.010,334.8 +8.0,1.00,16.290,332.0 +8.9,1.00,15.000,332.6 +10.1,1.00,15.250,330.7 +11.2,1.00,13.960,330.0 +13.3,1.00,13.770,333.5 +14.6,0.99,14.220,336.5 +15.2,0.99,14.000,337.4 +15.7,0.99,13.840,339.3 +16.1,0.99,14.140,338.5 +16.2,0.99,13.530,333.4 +16.0,0.99,12.690,347.1 +15.8,0.99,12.550,344.9 +15.8,0.99,10.990,350.3 +15.9,0.99,8.510,356.1 +15.9,0.99,7.720,1.3 +16.0,0.99,5.930,8.9 +15.9,0.99,4.540,7.4 +15.6,0.99,2.740,16.0 +15.7,0.99,1.010,3.6 +15.7,0.99,0.410,283.7 +15.8,0.99,1.570,230.3 +15.8,0.99,3.160,224.0 +15.8,0.99,4.150,229.0 +15.8,0.99,4.650,230.9 +15.7,0.99,4.820,234.9 +15.4,0.99,5.320,240.4 +15.9,0.99,5.640,234.4 +16.8,0.99,6.950,223.6 +18.1,0.99,8.440,218.9 +18.6,0.99,9.730,217.5 +18.9,0.99,10.230,219.4 +19.3,0.99,11.080,218.4 +19.7,0.99,12.070,219.8 +19.8,0.99,12.440,223.5 +19.7,0.99,12.780,223.8 +19.8,0.99,12.790,229.2 +19.8,0.99,12.220,231.8 +19.8,0.99,12.280,229.8 +19.9,0.99,11.560,235.6 +19.9,0.99,11.130,240.5 +18.8,0.99,7.390,290.7 +17.7,0.99,9.600,293.2 +17.3,0.99,7.780,309.9 +16.2,0.99,8.050,20.6 +15.3,0.99,8.250,16.9 +14.3,0.99,8.960,15.1 +13.5,0.99,7.620,11.8 +13.0,0.99,6.930,6.8 +13.2,0.99,6.410,353.6 +13.8,0.99,7.190,347.6 +14.0,0.99,7.910,333.9 +14.7,0.99,8.290,330.9 +15.9,0.99,8.780,336.0 +17.0,0.99,8.200,340.9 +17.6,0.99,8.460,345.9 +18.2,0.99,8.270,347.8 +18.6,0.99,7.780,348.6 +18.7,0.99,7.480,351.9 +18.6,0.99,7.630,354.5 +18.2,0.99,8.000,2.6 +17.9,0.99,6.850,11.4 +17.5,0.99,5.900,21.1 +17.4,0.99,4.960,29.3 +17.4,0.99,4.470,26.6 +17.3,0.99,3.560,34.9 +17.0,0.99,2.800,27.5 +16.9,0.99,2.540,21.0 +16.9,0.99,1.450,18.4 +16.6,0.99,0.990,344.5 +15.5,0.99,1.740,330.4 +15.8,0.99,2.960,337.5 +15.9,0.99,2.810,320.2 +16.0,0.99,2.670,318.6 +16.1,0.99,3.160,311.2 +16.6,0.99,2.940,309.0 +16.7,0.99,2.070,283.1 +17.9,0.99,2.280,274.9 +18.0,0.99,2.650,220.9 +18.7,0.99,3.770,220.6 +20.0,0.99,3.310,221.0 +19.5,0.99,5.270,217.4 +19.7,0.99,5.670,221.0 +19.8,0.99,5.300,225.6 +19.7,0.99,6.070,227.9 +19.7,0.99,2.120,222.6 +20.0,0.99,4.910,239.7 +19.9,0.99,3.860,238.9 +19.7,0.99,4.770,226.1 +19.7,0.99,4.380,247.5 +19.8,0.99,4.800,255.4 +19.7,0.99,5.520,271.6 +19.5,0.99,5.120,274.7 +19.7,0.99,5.600,282.2 +19.5,0.99,5.600,282.3 +18.8,0.99,4.930,278.5 +18.4,0.99,5.250,277.5 +18.6,0.99,4.330,269.3 +19.1,0.99,3.720,254.4 +19.9,0.99,3.330,243.8 +20.2,0.99,3.400,228.0 +20.3,0.99,3.860,206.6 +20.5,0.99,5.320,187.8 +20.7,0.99,5.530,183.3 +20.6,0.99,6.590,186.9 +20.7,0.99,6.820,188.2 +20.5,0.99,7.270,187.8 +20.2,0.99,7.380,186.9 +20.3,0.99,7.580,188.1 +20.2,0.99,8.050,182.6 +20.2,0.99,7.700,182.9 +20.2,0.99,7.440,187.5 +20.1,0.99,6.920,199.1 +19.9,0.99,6.980,198.5 +19.7,0.99,6.840,191.5 +19.7,0.99,6.490,185.0 +19.7,0.99,6.390,179.0 +19.7,0.99,5.780,173.7 +19.7,0.99,6.280,183.7 +19.9,0.99,4.260,186.8 +20.1,0.99,8.140,154.0 +20.1,0.99,6.530,159.0 +20.2,0.99,5.150,175.6 +20.3,0.99,4.190,162.8 +20.3,0.99,5.310,153.6 +20.8,0.99,6.220,153.9 +20.8,0.99,7.140,153.0 +20.9,0.99,7.340,156.8 +20.9,0.99,7.410,147.8 +20.9,0.99,8.020,148.6 +20.9,0.99,8.620,141.7 +20.6,0.99,8.470,139.8 +20.7,0.99,8.410,142.1 +20.6,0.99,8.750,148.9 +20.7,0.99,9.630,156.1 +20.8,0.99,9.170,169.7 +20.7,0.99,8.490,166.9 +20.9,0.99,9.300,172.9 +21.8,0.99,10.610,177.8 +21.2,0.99,8.700,162.0 +21.3,0.99,7.480,155.3 +21.2,0.99,9.260,161.0 +21.4,0.99,9.050,157.6 +21.4,0.99,8.920,158.2 +21.4,0.99,9.100,152.2 +21.5,0.99,9.130,152.3 +21.4,0.99,8.260,146.2 +21.5,0.99,9.730,150.3 +21.7,0.99,9.510,153.5 +21.8,0.99,9.600,147.6 +21.8,0.99,10.050,145.5 +21.7,0.99,10.000,145.9 +21.7,0.99,10.950,143.5 +21.7,0.99,10.580,143.6 +21.7,0.99,9.800,143.9 +21.7,0.99,10.440,150.8 +21.7,0.99,9.300,144.9 +21.9,0.99,10.870,148.4 +21.8,0.99,8.760,156.3 +21.9,0.99,9.260,156.8 +21.9,0.99,10.390,162.8 +21.7,0.99,8.860,155.8 +21.7,0.99,7.980,161.6 +21.9,0.99,5.650,158.3 +21.4,0.99,4.980,104.4 +21.2,0.99,7.180,117.7 +21.2,0.99,6.850,114.8 +21.5,0.99,7.530,135.1 +21.6,0.99,8.100,140.0 +21.7,0.99,8.140,141.9 +21.8,0.99,8.320,147.8 +21.8,0.99,6.970,144.3 +21.7,0.99,7.070,134.4 +21.9,0.99,6.960,133.0 +22.0,0.99,6.570,138.3 +21.8,0.99,7.710,134.7 +21.9,0.99,8.700,143.3 +21.8,0.99,6.470,151.6 +22.0,0.99,4.810,276.4 +21.7,0.99,5.730,342.0 +20.4,0.99,6.530,26.4 +21.2,0.99,5.820,28.3 +22.6,0.99,2.500,66.1 +20.2,0.99,5.490,32.9 +20.8,0.99,3.870,40.9 +21.7,0.99,2.990,52.7 +22.2,0.99,2.690,51.1 +20.7,0.99,3.590,25.9 +20.8,0.99,2.480,53.1 +19.7,0.99,4.270,2.3 +19.3,0.99,6.050,340.1 +20.1,0.99,5.510,11.7 +20.0,0.99,4.540,16.0 +19.6,0.99,4.280,7.2 +20.5,0.99,3.390,25.1 +20.8,0.99,3.190,9.1 +21.2,0.99,3.300,345.3 +22.3,0.99,2.190,331.5 +23.1,0.99,2.070,297.4 +24.1,0.99,1.150,297.6 +24.6,0.99,1.080,236.0 +24.1,0.99,1.690,210.0 +25.2,0.99,2.850,320.9 +24.3,0.99,5.460,24.4 +25.5,0.99,10.030,14.5 +24.7,0.99,7.700,29.6 +23.9,0.99,8.410,29.3 +23.5,0.99,10.840,34.6 +22.8,0.99,11.230,38.7 +22.1,0.99,10.110,46.1 +21.5,0.99,8.340,41.5 +20.9,0.99,10.070,47.5 +20.9,0.99,7.760,54.4 +20.5,0.99,9.590,50.1 +20.5,0.99,8.960,55.5 +20.3,0.99,8.550,50.2 +20.1,1.00,9.270,45.0 +20.1,1.00,8.920,49.3 +20.3,1.00,7.360,58.5 +21.3,1.00,8.530,64.2 +21.4,1.00,7.690,81.5 +21.8,1.00,6.110,89.4 +22.1,1.00,5.730,101.6 +22.1,1.00,4.150,105.6 +22.2,1.00,2.730,128.6 +22.2,0.99,1.880,143.6 +22.1,0.99,1.480,166.8 +22.1,0.99,1.230,120.0 +22.0,1.00,2.020,47.9 +22.0,1.00,2.720,17.3 +22.1,1.00,7.540,19.1 +21.6,1.00,9.300,48.9 +21.6,1.00,9.410,63.0 +21.2,1.00,8.330,68.5 +21.0,1.00,8.440,69.4 +20.7,1.00,7.960,70.0 +20.5,1.00,7.740,74.8 +20.4,1.00,7.690,71.4 +20.3,1.00,7.370,77.6 +20.1,1.00,7.300,75.2 +20.0,1.00,7.140,77.3 +19.8,1.00,6.880,74.6 +19.8,1.00,6.960,78.8 +19.7,1.00,6.200,80.9 +19.7,1.00,6.010,90.7 +20.0,1.00,5.750,103.8 +20.1,1.00,5.370,107.0 +20.2,1.00,5.770,117.0 +20.2,1.00,5.610,120.5 +20.2,1.00,5.450,121.1 +20.2,1.00,5.120,127.3 +20.1,1.00,5.070,131.2 +20.1,1.00,4.980,139.3 +20.1,1.00,5.260,138.8 +20.1,1.00,5.260,149.3 +20.1,1.00,5.290,152.6 +20.1,1.00,5.450,160.3 +20.0,1.00,5.480,168.8 +19.9,1.00,5.150,167.8 +20.0,1.00,5.480,174.6 +19.9,1.00,4.920,179.3 +19.9,1.00,5.130,179.4 +19.9,1.00,5.530,163.3 +19.9,1.00,5.510,157.9 +19.9,1.00,4.750,154.7 +19.9,1.00,5.560,145.2 +20.1,1.00,5.800,140.7 +20.2,1.00,5.420,140.7 +20.6,1.00,4.950,146.6 +21.3,1.00,5.920,149.5 +21.7,1.00,6.990,155.4 +21.7,1.00,7.550,152.0 +21.8,1.00,7.260,155.3 +21.6,1.00,8.200,151.1 +21.3,1.00,8.490,149.1 +21.4,1.00,8.950,153.7 +21.4,1.00,9.920,153.0 +21.5,1.00,10.170,157.9 +21.3,1.00,10.790,157.4 +21.3,1.00,10.470,160.1 +21.4,1.00,9.750,162.5 +21.4,1.00,10.400,167.4 +21.6,1.00,9.170,168.9 +21.3,1.00,8.860,163.7 +21.4,0.99,9.270,166.3 +21.6,0.99,9.080,167.4 +21.6,0.99,8.670,170.5 +21.8,0.99,8.220,167.4 +21.8,0.99,9.180,168.5 +21.8,0.99,8.970,169.5 +21.7,0.99,8.750,161.2 +21.8,0.99,9.030,159.4 +21.7,0.99,8.960,155.9 +22.1,0.99,10.160,158.5 +22.1,0.99,9.730,162.9 +22.0,0.99,9.290,160.5 +22.0,0.99,10.100,162.0 +21.9,0.99,9.510,157.5 +21.7,0.99,9.660,160.6 +22.0,0.99,8.990,165.0 +21.6,0.99,10.660,161.8 +21.7,0.99,9.750,168.2 +21.6,0.99,10.330,165.5 +21.6,0.99,9.360,164.3 +21.6,0.99,11.820,166.6 +21.7,0.99,8.170,169.1 +21.5,0.99,10.150,174.7 +21.5,0.99,6.730,179.7 +21.4,0.99,4.780,186.0 +21.4,0.99,5.110,168.7 +21.4,0.99,6.070,164.5 +22.1,0.99,7.640,179.3 +21.5,0.99,8.070,162.5 +21.5,0.99,8.780,163.3 +21.6,0.99,8.170,166.6 +21.5,0.99,9.360,160.0 +21.7,0.99,8.880,163.2 +22.1,0.99,11.000,170.8 +22.1,0.99,10.960,168.0 +22.2,0.99,10.730,171.8 +22.2,0.99,10.950,165.5 +22.2,0.99,11.090,164.2 +22.1,0.99,11.310,163.4 +21.9,0.99,10.050,161.0 +22.0,0.99,9.640,162.9 +21.9,0.99,9.030,163.4 +22.1,0.99,9.260,167.7 +22.2,0.99,9.370,168.8 +22.1,0.99,9.000,169.6 +22.1,0.99,8.090,177.1 +22.0,0.99,10.800,174.8 +22.3,0.99,11.820,176.2 +22.3,0.99,7.480,183.4 +22.2,0.99,4.370,173.1 +22.2,0.99,5.550,157.6 +22.3,0.99,7.580,165.0 +22.1,0.99,4.760,148.9 +22.4,0.99,7.240,163.5 +22.4,0.99,9.170,167.3 +22.4,0.99,7.870,165.2 +22.6,0.99,7.100,167.3 +23.0,0.99,7.140,163.8 +23.0,0.99,9.120,165.2 +22.8,0.99,9.350,171.4 +22.8,0.99,8.890,163.8 +22.8,0.99,8.640,164.0 +22.6,0.99,9.060,160.5 +22.4,0.99,9.660,160.5 +22.3,0.99,9.270,160.2 +22.6,0.99,10.430,165.7 +22.5,0.99,9.990,164.6 +22.0,0.99,11.160,168.6 +22.2,0.99,11.940,174.8 +22.2,0.99,13.190,177.2 +22.3,0.99,10.000,163.8 +22.2,0.99,9.590,177.6 +22.4,0.99,9.480,176.6 +22.6,0.99,12.530,176.5 +22.4,0.99,10.900,177.3 +22.4,0.99,8.840,167.8 +22.5,0.99,8.230,166.1 +22.4,0.99,9.140,161.6 +22.5,0.99,9.030,164.4 +22.4,0.99,9.590,164.0 +22.7,0.99,8.520,160.4 +23.2,0.99,7.860,162.8 +23.2,0.99,8.880,152.2 +23.3,0.99,9.230,156.9 +23.2,0.99,8.450,155.0 +23.4,0.99,8.650,153.6 +23.2,0.99,9.300,147.1 +23.2,0.99,9.520,144.2 +23.5,0.99,10.420,148.0 +22.7,0.99,11.380,143.1 +22.4,0.99,10.090,150.8 +22.5,0.99,10.660,156.5 +22.7,0.99,11.350,160.3 +22.7,0.99,10.480,161.5 +22.7,0.99,9.930,163.9 +22.7,0.99,9.280,169.0 +22.8,0.99,10.370,162.3 +22.9,0.99,10.190,155.4 +23.0,0.99,9.820,155.8 +23.0,0.99,6.530,135.8 +22.9,0.99,5.660,171.4 +23.2,0.99,7.770,169.9 +23.2,0.99,10.120,168.7 +23.3,0.99,8.380,164.8 +23.2,0.99,9.390,154.3 +23.6,0.99,9.880,165.5 +23.8,0.99,9.840,163.3 +23.6,0.99,9.200,154.6 +23.7,0.99,9.740,150.9 +23.6,0.99,10.550,151.3 +23.4,0.99,10.350,145.5 +23.4,0.99,11.260,147.6 +23.5,0.99,11.670,151.0 +23.4,0.99,11.470,151.3 +23.4,0.99,11.690,156.7 +23.5,0.99,12.100,161.0 +23.5,0.99,12.020,160.3 +23.9,0.99,11.630,163.6 +23.9,0.99,10.460,162.5 +23.7,0.99,10.620,161.2 +23.8,0.99,10.520,164.3 +23.7,0.99,9.910,161.9 +23.9,0.99,10.180,159.2 +23.9,0.99,9.250,161.0 +23.8,0.99,9.090,152.5 +23.8,0.99,9.780,148.1 +23.8,0.99,9.950,147.8 +23.8,0.99,9.550,149.6 +23.7,0.99,10.130,145.8 +24.1,0.99,10.350,144.5 +23.9,0.99,11.080,148.1 +23.7,0.99,10.060,143.5 +23.6,0.99,10.640,144.5 +23.7,0.99,9.930,140.8 +23.7,0.99,10.390,142.3 +23.5,0.99,10.100,145.5 +23.4,0.99,11.400,143.7 +23.4,0.99,11.610,148.0 +23.4,0.99,11.600,151.5 +23.5,0.99,11.560,153.7 +23.5,0.99,10.950,160.9 +23.4,0.99,11.010,159.9 +23.5,0.99,10.280,164.2 +23.6,0.99,9.590,162.9 +23.7,0.99,9.860,158.9 +23.6,0.99,9.310,155.6 +23.6,0.99,9.250,154.9 +23.9,0.99,9.370,157.3 +24.0,0.99,9.200,158.0 +23.7,0.99,9.570,151.7 +23.7,0.99,7.830,152.8 +23.7,0.99,7.820,147.9 +23.9,0.99,8.740,152.9 +24.0,0.99,9.930,155.8 +24.0,0.99,9.340,153.6 +24.1,0.99,9.040,157.5 +24.2,0.99,9.210,152.3 +24.1,0.98,9.510,149.3 +24.0,0.98,9.550,150.9 +23.9,0.98,9.550,153.5 +23.7,0.98,11.110,162.3 +23.7,0.98,9.660,168.9 +23.8,0.99,4.430,176.8 +23.9,0.99,1.520,106.9 +24.1,0.99,1.370,148.6 +21.4,0.99,11.490,15.0 +23.1,0.99,6.180,40.7 +24.3,0.99,5.330,207.2 +24.4,0.98,15.040,176.2 +23.9,0.99,9.530,191.8 +23.9,0.99,2.550,200.9 +23.7,0.99,1.310,163.3 +23.6,0.99,0.800,131.0 +23.7,0.99,2.040,121.5 +23.8,0.99,2.170,136.3 +23.8,0.99,2.360,132.3 +23.9,0.99,2.500,133.3 +24.3,0.99,3.390,148.5 +24.3,0.99,3.250,152.0 +24.4,0.99,3.430,165.5 +24.4,0.99,4.170,155.2 +24.4,0.99,4.530,150.5 +24.3,0.99,5.020,147.9 +24.3,0.99,5.880,152.5 +23.9,0.99,4.980,152.0 +23.9,0.99,5.510,145.3 +23.8,0.99,5.360,151.6 +23.6,0.99,5.780,144.1 +23.5,0.99,5.050,158.7 +23.4,0.99,5.850,161.4 +24.1,0.99,5.240,164.4 +24.2,0.99,4.330,165.5 +23.5,0.99,4.700,152.4 +24.2,0.99,5.580,151.7 +23.5,0.99,4.980,140.2 +23.9,0.99,5.400,146.7 +24.1,0.99,5.810,152.6 +23.8,0.99,6.030,150.0 +23.7,0.99,4.980,147.2 +23.9,0.99,5.330,152.0 +24.2,0.99,5.420,151.9 +24.4,0.99,5.250,150.2 +24.5,0.99,4.490,141.2 +24.9,0.99,5.020,139.3 +25.2,0.99,5.920,145.2 +25.2,0.99,5.830,141.2 +25.0,0.99,6.360,135.3 +24.6,0.99,5.970,124.5 +24.7,0.99,7.750,132.0 +25.0,0.99,6.940,123.5 +24.8,0.99,6.590,129.9 +24.2,0.99,5.780,132.5 +24.7,0.99,6.340,141.2 +24.0,0.99,5.010,139.7 +24.2,0.99,5.680,151.8 +23.8,0.99,4.620,150.3 +24.1,0.99,4.170,148.2 +24.4,0.99,4.660,133.6 +24.2,0.99,4.400,140.7 +23.8,0.99,4.270,115.3 +23.8,0.99,5.210,110.5 +23.6,1.00,5.300,114.8 +23.9,1.00,4.520,114.6 +23.8,1.00,3.930,100.7 +23.9,1.00,4.780,111.8 +24.4,1.00,5.150,108.0 +24.5,1.00,5.730,110.4 +24.6,1.00,6.030,114.4 +24.5,0.99,5.570,117.6 +24.6,0.99,5.920,119.0 +24.4,0.99,5.820,121.6 +24.2,0.99,5.830,130.6 +24.1,0.99,7.150,115.7 +24.0,0.99,8.420,110.1 +24.1,0.99,7.330,129.3 +24.4,0.99,6.820,129.8 +24.2,0.99,5.960,134.5 +23.8,0.99,6.950,125.2 +23.8,0.99,8.730,121.5 +23.8,1.00,7.520,129.9 +24.2,1.00,6.370,128.3 +24.0,1.00,6.640,136.9 +23.9,1.00,6.880,139.0 +23.9,1.00,5.660,133.9 +23.9,1.00,6.240,130.0 +23.9,1.00,5.030,132.1 +23.8,1.00,5.770,133.2 +23.9,1.00,5.940,130.8 +24.1,1.00,6.170,128.9 +24.3,1.00,7.620,125.1 +24.9,1.00,6.250,127.7 +24.7,1.00,8.040,130.0 +24.4,1.00,8.280,137.3 +24.6,1.00,6.750,136.7 +24.9,0.99,7.060,137.9 +24.7,0.99,7.320,137.6 +24.6,0.99,7.930,130.5 +24.4,0.99,8.450,130.1 +24.7,0.99,8.300,137.9 +24.7,0.99,8.300,135.0 +24.3,0.99,8.930,146.0 +24.3,0.99,8.780,150.2 +24.2,0.99,8.090,155.2 +24.3,0.99,8.170,160.3 +24.3,0.99,6.350,159.6 +24.4,0.99,6.380,158.5 +24.4,0.99,5.950,170.7 +24.5,0.99,6.710,150.9 +24.4,0.99,6.690,152.6 +24.3,1.00,5.860,156.8 +24.3,1.00,6.100,149.2 +24.4,0.99,7.050,144.0 +24.7,0.99,6.570,153.0 +24.5,0.99,6.130,149.7 +24.8,0.99,7.010,147.7 +25.1,0.99,6.430,162.7 +25.0,0.99,8.510,156.4 +24.9,0.99,7.190,163.0 +24.9,0.99,6.290,161.3 +24.8,0.99,8.200,161.2 +24.4,0.99,7.730,152.2 +24.3,0.99,8.320,155.7 +24.4,0.99,9.330,153.1 +24.3,0.99,8.670,161.6 +24.3,0.99,9.490,155.1 +24.2,0.99,9.040,166.0 +24.1,0.99,8.200,173.5 +24.0,0.99,8.430,169.4 +24.1,0.99,7.670,170.8 +24.4,0.99,8.310,165.6 +24.7,0.99,8.290,171.8 +24.4,0.99,7.270,161.6 +25.1,0.99,7.980,172.2 +24.9,0.99,6.460,168.1 +24.9,0.99,7.730,168.6 +24.8,0.99,7.910,164.7 +24.9,0.99,7.700,167.2 +25.2,0.99,8.770,171.8 +25.0,0.99,9.070,170.9 +24.9,0.99,8.850,166.0 +24.7,0.99,8.420,159.3 +24.5,0.99,9.140,159.3 +24.6,0.99,8.930,163.7 +24.3,0.99,10.130,159.1 +24.3,0.99,10.140,160.4 +24.5,0.99,11.390,152.4 +24.6,0.99,10.920,155.1 +24.5,0.99,10.880,154.6 +24.5,0.99,11.390,160.4 +24.2,0.99,11.820,163.2 +24.2,0.99,10.790,160.0 +24.3,0.99,11.770,160.8 +24.4,0.99,11.210,162.3 +24.3,0.99,11.740,163.1 +24.5,0.99,12.070,163.9 +24.8,0.99,11.200,164.7 +24.9,0.99,10.380,160.6 +24.8,0.99,9.850,158.8 +24.8,0.99,10.070,158.8 +24.9,0.99,9.300,160.8 +24.9,0.99,9.830,161.6 +25.1,0.99,8.770,158.8 +25.2,0.99,8.710,160.1 +25.1,0.99,8.750,156.0 +25.1,0.99,9.340,152.1 +25.0,0.99,9.650,147.9 +24.8,0.99,8.900,152.2 +24.8,0.99,9.500,150.6 +24.6,0.99,9.720,146.4 +24.7,0.99,10.920,148.4 +24.5,0.99,10.640,154.5 +24.6,0.99,10.630,156.0 +24.7,0.99,11.890,157.4 +24.9,0.99,10.490,153.8 +24.6,0.99,10.810,157.9 +24.8,0.99,11.320,162.1 +24.9,0.99,9.520,165.2 +24.9,0.99,10.050,163.0 +25.0,0.99,9.730,168.1 +25.3,0.99,9.760,166.9 +24.9,0.99,10.670,157.6 +25.0,0.99,10.440,160.4 +25.2,0.99,10.650,157.5 +25.2,0.99,9.770,153.2 +25.1,0.99,10.330,147.3 +25.4,0.99,10.390,148.1 +25.3,0.99,11.000,149.4 +25.6,0.99,10.980,150.2 +26.1,0.99,11.610,160.1 +25.9,0.99,11.220,154.9 +25.2,0.99,10.980,149.6 +24.9,0.99,10.430,150.5 +24.9,0.99,10.110,152.3 +25.0,0.99,9.680,142.7 +25.1,0.99,9.520,147.7 +25.0,0.99,9.510,146.3 +25.3,0.99,11.090,153.6 +25.4,0.99,10.610,159.6 +24.9,0.99,11.340,155.7 +24.9,0.99,11.310,151.1 +25.2,0.99,11.230,159.4 +25.0,0.99,10.690,156.1 +25.0,0.99,12.000,156.0 +25.0,0.99,10.890,152.1 +25.4,0.99,9.710,150.2 +25.3,0.99,10.080,150.7 +25.4,0.99,10.500,147.7 +25.3,0.99,9.470,149.2 +25.3,0.99,9.200,144.2 +25.5,0.99,9.310,146.5 +25.5,0.99,9.550,146.0 +25.5,0.99,9.980,145.6 +25.5,0.99,10.950,145.6 +25.4,0.99,9.580,141.9 +25.4,0.99,10.170,149.5 +25.5,0.99,9.650,154.7 +25.1,0.99,10.930,150.6 +25.1,0.99,11.050,149.3 +25.0,0.99,11.110,148.2 +25.2,0.99,11.200,152.8 +25.1,0.99,9.860,154.3 +25.1,0.99,11.100,160.3 +25.2,0.99,9.880,164.6 +25.3,0.99,9.530,163.5 +25.6,0.99,10.150,166.8 +25.7,0.99,10.190,169.2 +25.5,0.99,9.800,174.5 +25.5,0.99,8.940,169.6 +25.6,0.99,9.300,173.2 +25.4,0.99,8.360,171.8 +25.3,0.99,8.230,165.3 +25.3,0.99,8.010,165.9 +25.6,0.99,7.770,169.2 +26.0,0.99,9.560,163.3 +25.8,0.99,9.230,161.3 +25.9,0.99,9.630,163.1 +25.8,0.99,9.920,165.1 +25.8,0.99,10.420,163.8 +25.7,0.99,11.030,161.3 +25.4,0.99,10.050,159.0 +25.4,0.99,10.770,157.0 +25.6,0.99,11.010,161.8 +25.3,0.99,11.180,159.5 +25.3,0.99,11.480,161.6 +25.8,0.99,12.790,168.1 +25.7,0.99,12.320,167.7 +25.2,0.99,11.740,166.0 +25.5,0.99,12.640,169.8 +25.2,0.99,10.550,165.4 +25.2,0.99,10.990,170.0 +25.4,0.99,12.490,172.6 +25.2,0.99,10.980,175.0 +25.4,0.99,11.490,176.0 +25.5,0.99,9.440,178.2 +25.4,0.99,8.810,174.0 +25.7,0.99,9.070,175.6 +25.6,0.99,7.400,175.0 +26.3,0.99,8.320,178.5 +26.0,0.99,6.560,169.7 +26.0,0.99,7.960,169.4 +26.0,0.99,8.210,169.2 +25.8,0.99,7.350,162.0 +25.7,0.99,7.970,164.5 +25.6,0.99,8.060,165.3 +25.4,0.99,7.510,160.4 +25.4,0.99,6.690,157.8 +25.3,0.99,5.710,161.9 +25.2,0.99,5.130,159.2 +25.4,0.99,4.810,167.9 +25.3,0.99,3.380,175.7 +24.9,0.99,2.740,185.1 +24.9,0.99,1.650,159.8 +24.9,0.99,2.270,205.0 +24.7,0.99,2.140,261.8 +24.3,0.99,2.140,345.8 +24.1,0.99,4.340,353.0 +24.0,0.99,3.960,346.0 +24.2,0.99,3.120,354.5 +24.4,0.99,1.560,10.9 +24.4,0.99,1.320,311.1 +24.7,0.99,1.110,4.2 +25.2,0.99,0.520,66.0 +25.6,0.99,1.700,117.0 +25.9,0.99,3.440,144.7 +25.9,0.99,5.310,141.9 +25.9,0.99,5.160,143.8 +25.9,0.99,3.540,146.5 +25.7,0.99,2.960,162.1 +25.6,0.99,3.360,166.5 +25.5,0.99,1.940,130.7 +25.5,0.99,1.210,89.7 +25.6,0.99,1.990,64.8 +25.5,0.99,2.220,54.6 +25.3,0.99,2.020,37.8 +24.9,0.99,5.430,26.8 +23.9,0.99,5.240,19.7 +24.2,0.99,5.300,26.0 +24.7,0.99,6.440,12.9 +23.8,0.99,5.970,17.3 +23.2,0.99,6.460,9.8 +23.0,0.99,6.090,14.0 +22.8,0.99,4.510,11.3 +23.6,0.99,3.760,8.9 +24.1,0.99,2.020,4.4 +24.1,0.99,0.810,351.0 +24.7,0.99,0.570,102.5 +25.0,0.99,1.870,115.1 +25.1,0.99,3.680,127.3 +25.4,0.99,4.010,132.5 +25.6,0.99,4.200,134.7 +25.6,0.99,4.630,131.5 +25.4,0.99,4.220,129.6 +25.1,0.99,4.980,134.3 +25.2,0.99,4.120,144.1 +25.0,0.99,4.510,156.7 +25.1,0.99,4.580,157.2 +25.0,0.99,4.720,156.8 +24.9,0.99,3.730,158.2 +24.8,0.99,3.080,166.6 +24.7,0.99,1.980,162.8 +24.7,0.99,1.960,159.0 +24.8,0.99,1.460,94.4 +24.8,0.99,2.730,149.6 +24.7,0.99,2.630,132.9 +24.7,0.99,2.390,110.3 +24.8,0.99,2.180,105.0 +24.9,0.99,2.480,99.1 +25.0,0.99,2.110,90.1 +25.2,0.99,3.200,87.5 +25.6,0.99,2.650,111.4 +26.1,0.99,3.620,115.9 +26.0,0.99,3.570,121.8 +26.2,0.99,5.020,121.7 +26.3,0.99,5.480,125.3 +26.2,0.99,5.720,139.6 +25.9,0.99,6.170,138.3 +25.9,0.99,6.770,145.5 +25.9,0.99,7.090,150.9 +25.9,0.99,6.210,145.8 +25.8,0.99,6.260,147.7 +25.8,0.99,6.200,151.5 +25.7,0.99,6.140,158.5 +25.4,0.99,4.940,170.7 +25.5,0.99,3.560,156.8 +25.4,0.99,4.090,157.2 +25.5,0.99,1.910,137.0 +25.3,0.99,1.680,159.3 +25.4,0.99,0.820,103.9 +25.3,0.99,0.960,21.5 +25.4,0.99,1.910,56.6 +25.2,0.99,2.160,56.6 +25.2,0.99,3.450,40.5 +25.5,0.99,2.990,77.0 +26.5,0.99,4.770,94.0 +26.8,0.99,5.660,110.7 +26.7,0.99,6.750,121.7 +26.8,0.98,6.270,137.2 +26.5,0.98,6.100,150.8 +26.4,0.98,6.540,146.8 +26.4,0.98,6.230,144.8 +26.3,0.98,6.610,150.1 +26.2,0.98,7.070,153.8 +26.2,0.98,6.450,134.8 +26.1,0.99,3.820,89.2 +21.7,0.99,19.960,26.5 +23.0,0.99,14.570,86.8 +23.2,0.98,8.700,89.1 +24.4,0.98,8.520,119.8 +26.0,0.98,6.160,147.1 +25.8,0.98,6.530,141.7 +23.6,0.99,8.950,33.9 +23.2,0.99,10.300,6.6 +23.2,0.99,11.240,348.3 +24.5,0.99,9.240,358.6 +26.1,0.99,7.150,358.6 +27.1,0.99,5.260,2.8 +26.9,0.99,4.080,105.3 +27.4,0.99,2.550,108.9 +27.4,0.99,2.780,184.1 +23.2,0.99,20.690,294.6 +24.7,0.99,6.350,265.7 +26.9,0.98,10.080,207.0 +27.2,0.98,6.470,227.0 +27.0,0.99,8.180,249.2 +27.5,0.98,8.630,258.7 +26.9,0.99,6.340,299.8 +26.9,0.98,6.320,335.9 +25.5,0.99,6.690,354.6 +24.8,0.99,6.870,19.2 +24.3,0.99,5.710,32.0 +24.1,0.99,5.660,26.1 +23.6,0.99,6.090,21.7 +23.1,0.99,5.490,10.0 +22.4,0.99,4.820,346.8 +21.9,0.99,5.170,350.9 +21.3,0.99,5.310,337.3 +21.1,0.99,6.530,332.1 +21.7,0.99,6.420,341.6 +22.4,0.99,6.500,343.9 +23.3,0.99,4.740,344.2 +24.0,0.99,2.980,284.9 +25.0,0.99,2.850,264.1 +25.5,0.99,3.250,204.0 +25.5,0.99,4.090,183.3 +25.5,0.99,4.280,188.8 +25.9,0.99,4.530,189.4 +25.7,0.99,4.370,185.0 +25.7,0.99,3.950,187.9 +25.9,0.99,2.760,210.4 +26.0,0.99,2.300,237.5 +26.2,0.99,3.590,254.6 +26.2,0.99,2.030,262.2 +25.1,0.99,2.930,292.7 +25.4,0.99,2.090,227.0 +25.6,0.99,1.580,163.2 +25.0,0.99,3.700,70.2 +25.0,0.99,3.570,94.8 +25.1,0.99,1.910,123.1 +25.0,0.99,2.260,135.0 +25.0,0.99,2.030,165.0 +25.2,0.99,3.180,204.1 +25.2,0.99,2.130,196.3 +25.3,0.99,2.880,199.8 +24.6,0.99,6.890,206.8 +23.4,0.99,15.340,203.3 +22.9,0.99,10.110,182.0 +24.5,0.99,3.850,146.6 +24.7,0.99,4.540,154.9 +25.4,0.99,5.400,179.3 +25.4,0.99,5.940,157.4 +25.8,0.99,5.760,163.4 +25.7,0.99,6.880,152.6 +25.9,0.99,7.280,137.9 +25.7,0.99,8.400,137.2 +25.8,0.99,7.910,141.0 +26.0,0.99,8.350,146.7 +26.1,0.99,7.550,149.8 +26.1,0.99,8.040,157.2 +26.0,0.99,10.010,167.1 +25.3,0.99,9.820,202.9 +24.6,0.99,7.250,214.3 +24.7,0.99,7.150,189.3 +24.9,0.99,5.380,196.2 +25.2,0.99,4.240,198.0 +25.6,0.99,3.280,166.8 +25.8,0.99,3.730,142.7 +25.7,0.99,5.190,120.2 +25.6,0.99,5.070,138.8 +26.0,0.99,3.510,163.3 +25.7,0.99,2.440,161.1 +26.4,0.99,9.300,177.4 +24.8,0.99,9.360,171.7 +26.2,0.99,3.740,214.7 +25.9,0.99,6.940,212.2 +25.3,0.99,4.700,192.9 +25.4,0.99,5.940,163.9 +25.5,0.99,5.370,157.5 +26.0,0.99,7.150,148.8 +26.1,0.99,7.260,152.7 +26.3,0.99,8.160,163.5 +26.3,0.99,7.460,182.0 +26.1,0.99,7.330,184.2 +26.1,0.99,6.480,191.7 +26.0,0.99,5.790,199.3 +26.0,0.99,4.820,198.8 +25.9,0.99,4.220,205.4 +25.9,0.99,3.010,203.2 +25.9,0.99,2.280,190.7 +26.0,0.99,2.770,176.9 +26.1,0.99,2.900,178.0 +26.0,0.99,2.820,165.2 +26.3,0.99,3.340,158.1 +26.3,0.99,3.310,161.1 +26.9,0.99,3.950,163.8 +26.9,0.99,4.870,149.0 +27.0,0.99,5.370,156.4 +26.8,0.99,6.110,156.7 +27.0,0.99,6.540,147.4 +27.0,0.99,6.520,151.6 +26.7,0.99,5.830,147.0 +26.6,0.99,6.340,149.9 +26.2,0.99,6.680,147.3 +26.0,0.99,6.620,160.5 +26.0,0.99,5.550,157.2 +25.9,0.99,6.970,148.4 +25.8,0.99,7.220,164.2 +26.0,0.99,7.220,172.7 +26.3,0.99,8.050,175.0 +26.0,0.99,8.700,178.3 +26.0,0.99,7.510,185.3 +26.1,0.99,7.120,188.2 +26.1,0.99,6.220,188.1 +26.2,0.99,5.340,181.1 +26.3,0.99,4.660,180.9 +26.4,0.99,4.350,172.0 +26.3,0.99,4.340,164.8 +26.4,0.99,4.930,162.7 +26.6,0.99,4.600,166.3 +26.8,0.99,4.760,165.7 +26.8,0.99,4.740,164.5 +26.9,0.99,4.990,172.5 +26.8,0.99,4.660,166.2 +27.1,0.99,5.220,160.4 +26.7,0.99,5.680,163.2 +26.6,0.99,5.060,143.8 +26.7,0.99,5.670,154.5 +26.5,0.99,5.430,153.3 +26.6,0.99,5.390,158.3 +26.4,0.99,5.760,162.0 +26.3,0.99,5.600,172.7 +26.2,0.99,6.160,185.2 +26.9,0.99,5.200,183.6 +26.4,0.99,4.660,186.1 +26.3,0.99,4.380,190.6 +26.3,0.99,4.000,183.5 +26.2,0.99,3.470,209.1 +26.2,0.99,2.640,214.3 +26.2,0.99,3.040,210.6 +26.3,0.99,3.000,181.2 +26.7,0.99,4.330,189.6 +26.8,0.99,5.220,171.9 +26.9,0.99,4.980,215.2 +27.1,0.99,4.650,216.5 +27.0,0.99,5.340,162.8 +26.5,0.99,7.010,165.1 +26.4,0.99,6.140,165.9 +26.7,0.99,7.070,174.6 +26.5,0.99,7.720,177.3 +26.4,0.99,7.430,180.6 +26.5,0.99,6.780,189.0 +26.7,0.99,7.390,196.7 +26.4,0.99,6.890,206.7 +26.4,0.99,6.830,204.3 +26.3,0.99,7.310,207.0 +26.2,0.99,6.880,205.0 +26.3,0.99,6.440,212.4 +26.5,0.99,6.360,220.6 +26.4,0.99,5.410,224.4 +26.3,0.99,5.180,236.8 +26.5,0.99,4.060,246.8 +26.2,0.99,3.020,262.4 +25.9,0.99,2.450,273.0 +26.0,0.99,2.270,277.1 +26.4,0.99,2.050,236.8 +26.7,0.99,1.640,214.4 +27.6,0.99,2.010,179.6 +27.9,0.99,2.400,174.0 +28.1,0.99,3.950,180.3 +28.1,0.99,5.170,188.7 +28.0,0.99,6.560,197.3 +27.6,0.99,7.240,206.8 +27.7,0.99,7.440,208.5 +27.5,0.99,7.730,217.0 +27.2,0.99,7.500,222.7 +27.3,0.99,6.720,228.8 +27.3,0.99,6.310,237.0 +27.5,0.99,5.510,246.1 +27.4,0.99,4.870,247.2 +27.0,0.99,4.700,252.6 +26.2,0.99,4.100,264.0 +26.1,0.99,4.180,265.9 +26.1,0.99,3.820,270.1 +25.8,0.99,3.590,264.3 +25.5,0.99,4.440,267.7 +25.3,0.99,4.180,283.7 +25.5,0.99,3.040,304.9 +25.9,0.99,2.690,268.2 +26.0,0.99,2.480,237.1 +26.6,0.99,3.140,227.3 +27.7,0.99,3.680,210.3 +28.0,0.99,5.010,203.9 +27.9,0.99,5.510,205.7 +28.0,0.99,5.700,201.9 +27.9,0.99,5.790,207.8 +28.0,0.99,5.930,211.0 +27.7,0.99,6.540,212.5 +27.8,0.99,6.880,213.0 +27.6,0.99,6.020,217.7 +27.7,0.99,5.730,218.0 +27.5,0.99,5.400,221.1 +27.6,0.99,5.030,229.7 +27.3,0.99,4.840,233.0 +27.3,0.99,4.620,240.0 +26.9,0.99,4.150,246.0 +27.0,0.99,3.720,249.9 +26.2,0.99,2.270,266.1 +26.3,0.99,2.410,292.1 +26.1,0.99,2.170,276.1 +26.1,0.99,2.350,285.7 +26.0,0.99,2.120,284.8 +26.0,0.99,2.510,257.2 +26.2,0.99,2.740,249.5 +26.4,0.99,2.920,222.2 +26.9,0.99,3.860,196.0 +27.1,0.99,4.070,197.9 +27.4,0.99,4.110,185.6 +27.5,0.99,5.150,184.4 +27.4,0.99,5.890,180.5 +28.1,0.99,5.800,181.2 +27.4,0.99,6.380,182.8 +27.4,0.99,6.500,182.1 +27.5,0.99,7.170,180.4 +27.8,0.99,7.150,183.9 +27.2,0.99,7.590,190.7 +27.1,0.99,7.950,184.5 +26.9,0.99,7.620,189.2 +26.8,0.99,7.530,189.6 +26.8,0.99,7.350,192.4 +26.7,0.99,6.280,197.8 +26.6,0.99,5.960,192.6 +26.7,0.99,4.470,192.6 +26.7,0.99,3.100,176.4 +26.8,0.99,4.140,178.3 +26.4,0.99,6.650,219.5 +25.8,0.99,4.410,215.3 +26.2,0.99,4.880,231.8 +26.9,0.99,4.110,215.4 +27.5,0.99,5.670,211.8 +27.8,0.99,6.710,205.3 +28.1,0.99,7.450,196.8 +28.2,0.99,7.550,201.5 +28.2,0.99,8.450,206.1 +28.5,0.99,8.020,203.2 +28.2,0.99,8.080,205.9 +28.4,0.99,8.470,200.7 +28.1,0.99,8.760,202.9 +28.2,0.99,8.730,200.4 +28.1,0.99,8.520,203.6 +28.1,0.99,8.280,198.5 +28.3,0.99,7.890,213.4 +28.0,0.99,8.010,215.3 +28.3,0.99,6.850,221.0 +28.2,0.99,6.610,218.4 +28.0,0.99,6.090,223.4 +27.9,0.99,6.300,233.4 +27.7,0.99,6.250,235.0 +26.4,0.99,3.740,273.6 +26.5,0.99,3.770,282.3 +26.9,0.99,3.610,261.7 +27.2,0.99,3.150,247.3 +27.1,0.99,3.940,204.0 +27.7,0.99,4.410,192.6 +28.1,0.99,5.000,181.8 +28.0,0.99,5.900,177.6 +28.4,0.99,5.890,177.3 +28.1,0.99,7.180,186.7 +27.9,0.99,6.960,184.7 +27.9,0.99,7.930,182.0 +28.1,0.99,7.830,184.4 +27.7,0.99,8.770,187.2 +28.0,0.99,7.590,195.8 +27.4,0.99,8.940,193.5 +27.5,0.99,7.530,207.4 +27.6,0.99,7.260,202.3 +27.7,0.99,8.130,218.3 +27.3,0.99,7.830,224.1 +27.3,0.99,7.340,226.9 +26.8,0.99,7.560,229.6 +27.1,0.99,6.570,243.9 +26.3,0.99,5.920,270.9 +25.8,0.99,4.540,265.6 +26.0,0.99,4.280,264.6 +26.1,0.99,5.350,266.4 +26.4,0.99,4.250,222.4 +26.7,0.99,4.260,214.4 +27.4,0.99,3.850,198.4 +27.5,0.99,3.600,182.5 +27.6,0.99,4.350,178.0 +27.7,0.99,5.150,177.1 +27.7,0.99,5.640,181.2 +27.7,0.99,6.330,180.0 +27.6,0.99,6.500,183.2 +27.4,0.99,7.180,187.3 +27.2,0.99,7.210,183.5 +27.2,0.99,7.710,186.5 +27.1,0.99,7.680,190.6 +27.2,0.99,7.700,194.3 +27.0,0.99,6.970,195.4 +27.0,0.99,6.930,197.9 +27.1,0.99,7.010,204.5 +27.2,0.99,6.380,214.8 +27.0,0.99,6.400,218.3 +26.8,0.99,6.000,214.0 +26.8,0.99,3.950,237.0 +26.8,0.99,2.520,237.8 +26.7,0.99,2.340,272.3 +26.4,0.99,1.010,292.9 +26.6,0.99,0.590,249.1 +26.8,0.99,1.660,128.6 +27.2,0.99,3.700,152.2 +27.6,0.99,4.220,168.2 +27.6,0.99,5.170,168.0 +27.8,0.99,5.520,185.0 +27.8,0.99,6.680,174.4 +27.8,0.99,7.840,175.5 +27.5,0.99,6.430,174.6 +27.4,0.99,7.600,177.3 +27.3,0.99,7.840,182.6 +27.3,0.99,8.250,183.5 +27.4,0.99,8.490,181.9 +27.3,0.99,8.610,182.3 +27.4,0.99,8.930,181.1 +27.1,0.99,9.180,184.6 +27.6,0.99,7.560,192.2 +27.6,0.99,7.170,194.2 +27.5,0.99,6.470,192.3 +27.6,0.99,6.060,194.3 +27.6,0.99,5.970,187.0 +27.4,0.99,5.050,181.4 +27.5,0.99,5.350,166.9 +27.5,0.99,4.550,164.5 +27.4,0.99,4.330,157.4 +27.6,0.99,4.020,165.5 +27.6,0.99,4.190,168.4 +27.8,0.99,4.550,163.6 +27.7,0.99,5.010,166.2 +27.8,0.99,4.680,158.7 +27.7,0.99,5.870,151.5 +27.8,0.99,5.670,152.5 +27.9,0.99,6.810,145.8 +27.5,0.99,7.610,150.1 +27.6,0.99,6.940,149.5 +27.6,0.99,7.670,149.8 +27.4,0.99,7.060,156.3 +27.2,0.99,7.210,152.6 +27.3,0.99,7.040,159.8 +27.1,0.99,6.530,166.9 +27.1,0.99,6.120,164.9 +27.2,0.99,6.060,170.3 +27.1,0.99,5.490,160.7 +27.2,0.99,6.130,151.6 +27.2,0.99,5.650,152.4 +27.2,0.99,5.170,144.3 +27.2,0.99,5.450,145.1 +27.2,0.99,6.300,178.7 +27.4,0.99,5.620,167.6 +27.1,0.99,5.700,161.4 +27.2,0.99,5.750,149.8 +27.4,0.99,5.670,163.8 +27.6,0.99,5.240,161.6 +27.7,0.99,5.600,161.6 +27.7,0.99,4.990,164.0 +27.6,0.99,5.210,169.3 +27.4,0.99,5.620,163.2 +27.2,0.99,6.050,158.0 +27.1,0.99,6.670,163.9 +27.0,0.99,6.060,162.1 +26.8,0.99,6.150,168.4 +27.0,0.99,6.360,180.0 +26.7,0.99,6.190,172.6 +26.7,0.99,5.770,178.8 +26.6,0.99,5.310,182.2 +26.7,0.99,5.350,184.1 +26.9,0.99,5.350,187.6 +26.8,0.99,5.440,184.2 +26.7,0.99,4.450,183.3 +26.9,0.99,3.320,169.7 +27.0,0.99,3.860,162.0 +27.2,0.99,3.440,162.3 +27.1,0.99,2.920,158.2 +27.4,0.99,3.930,141.4 +27.4,0.99,3.340,147.5 +27.6,0.99,4.560,146.1 +27.7,0.99,5.890,152.6 +27.6,0.99,6.190,148.0 +27.6,0.99,6.030,155.9 +27.6,0.99,6.290,148.7 +27.5,0.99,6.140,151.8 +27.4,0.99,6.220,149.8 +27.4,0.99,6.800,156.6 +27.2,0.99,6.860,157.3 +27.1,0.99,6.760,165.6 +27.2,0.99,6.730,166.7 +27.1,0.99,7.810,169.2 +27.2,0.99,6.890,164.4 +27.0,0.99,6.270,171.4 +27.2,0.99,6.210,162.6 +27.2,0.99,6.380,162.1 +27.1,0.99,5.670,171.3 +27.2,0.99,7.260,153.8 +27.2,0.99,5.820,154.9 +27.2,0.99,5.380,154.9 +27.4,0.99,5.810,162.1 +27.3,0.99,4.740,175.2 +27.4,0.99,5.030,181.9 +27.6,0.99,5.360,174.9 +27.7,0.99,6.000,171.9 +27.8,0.99,6.160,183.6 +27.7,0.99,6.670,181.1 +27.6,0.99,8.070,177.0 +27.6,0.99,6.900,180.7 +27.3,0.99,8.550,176.2 +27.2,0.99,8.300,174.5 +27.3,0.99,7.410,166.5 +27.3,0.99,9.280,159.8 +27.4,0.99,8.230,160.8 +27.6,0.99,8.350,163.0 +27.3,0.99,9.590,159.9 +27.6,0.99,8.130,168.0 +28.1,0.99,8.390,172.5 +27.8,0.99,9.580,169.5 +27.8,0.99,8.630,173.4 +27.8,0.99,7.440,168.9 +27.8,0.99,7.930,177.3 +27.8,0.99,6.900,181.2 +27.8,0.99,5.770,184.1 +27.8,0.99,6.080,179.5 +27.7,0.99,5.710,172.7 +27.8,0.99,5.620,174.3 +28.2,0.99,6.040,177.8 +28.0,0.99,5.450,180.7 +27.9,0.99,6.540,170.8 +28.0,0.99,6.020,172.6 +28.0,0.99,6.290,169.0 +27.9,0.99,6.770,160.2 +27.8,0.99,6.770,162.1 +27.6,0.99,6.820,159.4 +27.5,0.99,7.750,158.9 +27.9,0.99,8.300,160.8 +27.4,0.99,9.100,160.1 +27.7,0.99,8.300,168.1 +27.3,0.99,7.900,173.5 +27.1,0.99,8.330,173.3 +27.1,0.99,9.320,178.2 +27.4,0.99,8.310,189.6 +27.5,0.99,8.690,184.5 +27.4,0.99,7.980,188.7 +27.5,0.99,6.960,193.7 +27.5,0.99,7.460,197.0 +27.5,0.99,7.300,190.8 +27.7,0.99,6.730,188.1 +27.5,0.99,6.680,195.5 +28.2,0.99,5.950,200.0 +27.7,0.99,6.630,182.2 +28.0,0.99,6.750,191.7 +27.9,0.99,5.820,180.1 +27.9,0.99,6.650,171.3 +28.1,0.99,6.840,185.5 +28.0,0.99,5.970,183.7 +27.6,0.99,8.320,166.7 +27.2,0.99,8.220,170.5 +27.7,0.99,8.350,171.4 +27.4,0.99,8.410,172.8 +27.6,0.99,9.250,168.7 +27.5,0.99,10.550,172.5 +27.4,0.99,11.030,171.8 +27.7,0.99,10.400,182.5 +27.0,0.99,9.900,183.4 +26.8,0.99,9.590,191.3 +27.2,0.99,9.550,191.5 +26.8,0.99,9.280,203.8 +27.1,0.99,8.270,208.7 +27.2,0.99,7.200,218.5 +27.5,0.99,6.160,215.4 +27.5,0.99,6.380,223.2 +27.8,0.99,5.850,235.1 +27.9,0.99,4.520,194.7 +27.9,0.99,5.350,163.3 +27.9,0.99,6.200,149.9 +28.1,0.99,5.550,183.9 +28.1,0.99,7.080,202.4 +28.2,0.99,6.800,155.1 +28.1,0.99,6.590,165.0 +27.8,0.99,7.440,169.5 +27.3,0.99,7.380,172.8 +27.2,0.99,7.550,173.3 +27.1,0.99,6.950,176.6 +27.3,0.99,7.210,183.3 +27.8,0.99,7.680,192.6 +27.6,0.99,8.020,193.3 +27.3,0.99,7.360,197.1 +27.4,0.99,5.210,195.1 +27.3,0.99,6.370,201.8 +27.2,0.99,5.630,202.3 +27.1,0.99,3.760,211.8 +26.9,0.99,3.370,233.2 +26.9,0.99,2.970,270.0 +26.5,0.99,2.320,288.4 +26.8,0.99,1.440,294.5 +26.9,0.99,2.980,255.6 +25.6,0.99,13.500,208.5 +25.9,0.99,2.280,249.6 +27.2,0.99,2.200,6.2 +27.6,0.99,4.020,153.4 +26.6,0.99,7.320,183.4 +27.1,0.99,8.830,186.9 +27.1,0.99,8.410,194.1 +26.8,0.99,7.240,187.7 +26.9,0.99,7.070,191.3 +27.0,0.99,6.860,189.0 +27.2,0.99,6.030,181.9 +27.0,0.99,6.900,197.1 +27.2,0.99,7.010,210.9 +27.0,0.99,7.540,217.1 +27.1,0.99,7.990,223.7 +26.9,0.99,7.160,235.5 +27.1,0.99,7.020,232.9 +27.1,0.99,7.060,244.7 +26.7,0.99,7.560,245.2 +26.0,0.99,6.690,270.6 +25.9,0.99,7.420,261.9 +26.1,0.99,6.890,281.1 +26.5,0.99,5.290,255.4 +26.6,0.99,5.330,229.7 +27.0,0.99,5.330,219.0 +27.9,0.99,4.690,218.7 +28.2,0.99,6.280,200.0 +28.2,0.99,6.750,208.6 +28.4,0.99,8.040,204.8 +28.5,0.99,9.530,207.0 +28.7,0.99,9.820,209.4 +28.4,0.99,9.420,212.8 +28.4,0.99,9.980,214.6 +28.7,0.99,9.180,215.3 +28.8,0.99,9.710,220.1 +28.4,0.98,9.530,218.8 +28.9,0.99,9.970,222.3 +28.0,0.99,10.530,224.7 +27.8,0.99,11.400,227.0 +28.1,0.99,10.960,235.9 +27.7,0.99,10.460,239.6 +28.1,0.99,9.880,248.8 +27.8,0.99,8.800,252.9 +26.9,0.99,8.180,261.4 +26.6,0.99,7.980,259.1 +26.8,0.99,8.280,254.1 +27.4,0.99,6.680,244.0 +27.4,0.99,7.700,224.7 +27.5,0.99,7.840,228.9 +28.8,0.98,7.680,222.7 +29.3,0.98,8.970,219.9 +29.5,0.98,10.680,219.7 +29.5,0.98,11.750,218.7 +29.6,0.98,11.870,221.1 +29.7,0.98,11.520,223.3 +29.3,0.98,10.510,221.8 +29.4,0.98,9.400,226.2 +30.3,0.98,8.530,229.3 +29.6,0.98,8.410,231.5 +29.7,0.98,7.640,231.2 +30.0,0.98,7.850,240.9 +29.9,0.98,8.340,243.5 +29.4,0.98,7.230,262.4 +28.6,0.98,6.860,295.3 +28.7,0.98,7.640,305.3 +28.6,0.98,3.950,334.6 +27.9,0.99,3.580,4.3 +27.4,0.99,4.000,10.9 +27.8,0.99,3.670,16.6 +28.8,0.99,3.120,27.1 +29.1,0.99,1.300,12.6 +29.4,0.99,1.840,253.8 +29.4,0.99,3.220,259.6 +29.8,0.99,3.580,229.3 +32.6,0.98,8.120,326.2 +33.0,0.98,6.590,328.7 +31.3,0.98,5.610,249.5 +30.3,0.98,6.980,240.6 +30.8,0.98,6.930,252.5 +30.6,0.98,5.970,247.7 +30.2,0.98,4.230,265.4 +30.7,0.98,8.320,29.5 +29.8,0.98,7.890,41.5 +29.6,0.99,6.250,55.2 +28.9,0.99,8.250,66.2 +28.3,0.99,7.360,65.9 +28.0,0.99,7.730,57.0 +27.6,0.99,7.690,54.2 +27.1,0.99,7.030,51.5 +26.9,0.99,7.000,52.1 +26.6,0.99,6.340,52.6 +25.5,0.99,5.800,38.9 +25.0,0.99,5.910,33.8 +25.1,0.99,5.310,38.5 +25.5,0.99,5.050,42.4 +26.1,0.99,3.530,95.9 +26.4,0.99,1.640,93.6 +27.2,0.99,0.790,164.8 +27.5,0.99,2.250,157.3 +27.5,0.99,4.490,146.9 +27.5,0.99,6.690,145.3 +27.5,0.99,7.360,142.7 +27.5,0.99,5.740,148.8 +27.6,0.99,4.510,145.9 +27.8,0.99,2.680,116.5 +27.7,0.99,0.960,112.5 +28.1,0.99,4.560,12.3 +27.9,0.99,4.640,15.3 +27.7,0.99,3.830,32.0 +27.6,0.99,4.000,48.4 +27.2,0.99,3.470,61.1 +26.0,0.99,3.150,30.2 +26.4,0.99,4.570,48.8 +25.9,0.99,4.440,40.5 +24.9,0.99,5.130,26.1 +25.1,0.99,6.020,31.3 +25.1,0.99,4.710,40.9 +25.2,0.99,4.220,49.6 +25.6,0.99,4.600,66.5 +26.1,0.99,3.680,95.6 +26.5,0.99,3.550,131.5 +27.4,0.99,2.110,132.2 +27.4,0.99,3.790,128.6 +27.5,0.99,5.280,125.6 +27.6,0.99,5.800,129.8 +27.7,0.99,6.710,119.2 +27.9,0.99,6.300,115.2 +27.6,0.99,4.590,120.6 +27.5,0.99,3.810,137.8 +27.6,0.99,2.300,125.3 +27.5,0.99,1.750,112.8 +27.4,0.99,0.980,167.0 +27.4,0.99,0.790,195.6 +27.3,0.99,1.330,270.5 +27.1,0.99,0.560,352.0 +25.9,0.99,2.720,2.6 +24.9,0.99,4.500,14.1 +25.2,0.99,3.900,4.6 +24.8,0.99,4.520,22.0 +25.2,0.99,4.330,40.1 +25.4,0.99,4.180,43.2 +25.6,0.99,5.210,55.6 +25.9,0.99,4.880,68.2 +26.3,0.99,4.540,74.4 +26.7,0.99,4.840,97.6 +27.3,0.99,4.950,111.8 +27.5,0.99,5.050,120.8 +27.5,0.99,4.860,130.7 +27.7,0.99,4.680,137.5 +28.0,0.99,3.410,143.9 +27.9,0.99,4.870,132.5 +27.7,0.99,4.670,132.2 +27.4,0.99,4.610,132.3 +27.1,0.99,3.100,121.5 +27.0,0.99,3.390,128.9 +26.9,0.99,2.630,109.2 +26.8,0.99,2.590,115.6 +26.7,0.99,2.320,100.7 +26.6,0.99,2.700,86.0 +26.5,0.99,1.930,60.6 +26.4,0.99,1.900,28.4 +26.3,0.99,2.840,10.9 +25.5,0.99,4.540,18.2 +25.1,0.99,4.840,19.8 +24.9,0.99,4.360,13.5 +25.2,0.99,4.990,25.4 +25.2,0.99,3.680,50.1 +25.8,0.99,2.720,80.5 +26.2,0.99,3.560,99.4 +27.0,0.99,3.650,113.3 +27.3,0.99,3.470,122.1 +27.3,0.99,3.990,138.2 +27.6,0.99,4.350,150.7 +27.6,0.99,5.170,148.6 +27.6,0.99,5.890,143.1 +27.4,0.99,5.630,132.8 +27.2,0.99,5.320,134.5 +27.2,0.99,5.920,128.8 +27.1,0.99,5.370,126.2 +27.0,0.99,4.160,130.3 +27.1,0.99,3.500,136.9 +27.1,0.99,4.240,130.3 +26.9,0.99,3.410,127.2 +27.0,0.99,3.380,121.7 +26.9,0.99,2.540,108.6 +27.0,0.99,2.400,91.2 +26.8,0.99,2.460,76.7 +26.6,0.99,2.380,63.2 +26.4,0.99,3.510,46.2 +25.9,0.99,4.680,43.1 +26.4,0.99,5.190,46.8 +26.8,0.99,6.690,75.4 +26.8,0.99,7.420,103.2 +27.0,0.99,5.340,110.3 +27.0,0.99,7.050,125.0 +26.6,0.99,5.980,139.5 +26.7,0.99,3.760,118.1 +26.6,0.99,4.860,92.8 +26.8,0.99,6.510,119.7 +26.5,0.99,6.030,118.4 +26.6,0.99,7.680,120.0 +26.7,0.99,7.190,121.9 +26.6,0.99,6.850,126.2 +26.6,0.99,5.730,141.3 +26.9,0.99,5.340,138.9 +27.1,0.99,6.670,156.4 +27.0,0.99,4.330,151.9 +27.0,0.99,3.180,140.7 +27.0,0.99,2.040,142.0 +26.8,0.99,0.720,189.6 +26.9,0.99,2.330,114.0 +26.6,0.99,2.090,55.2 +26.1,0.99,6.100,40.7 +26.8,0.99,5.140,106.5 +25.7,0.99,4.480,83.0 +26.1,0.99,4.450,112.8 +26.4,0.99,4.410,112.4 +27.0,0.99,5.130,158.6 +27.1,0.99,5.680,129.9 +27.1,0.99,5.890,132.3 +27.0,0.99,6.240,126.1 +27.1,0.99,5.770,137.8 +27.1,0.99,6.360,140.7 +26.6,0.99,8.520,123.7 +26.2,0.99,6.850,143.5 +26.7,0.99,6.620,149.5 +26.8,0.99,7.010,161.4 +26.8,0.99,6.590,149.9 +26.8,0.99,7.540,157.9 +26.8,0.99,6.110,152.0 +26.8,0.99,6.430,165.4 +26.8,0.99,6.930,165.0 +26.9,0.99,6.830,169.9 +27.1,0.99,6.180,179.2 +26.8,0.99,9.250,171.4 +25.4,0.99,9.230,169.3 +25.7,0.99,8.300,164.1 +26.0,0.99,7.740,167.4 +26.3,0.99,10.860,174.0 +25.6,0.99,9.030,180.3 +25.3,0.99,7.670,198.5 +25.7,0.99,7.020,186.0 +26.2,0.99,6.540,180.9 +26.0,0.99,7.870,189.5 +23.7,0.99,9.360,196.7 +25.3,0.99,5.330,184.6 +26.2,0.99,5.210,157.3 +25.9,0.99,4.920,144.3 +26.7,0.99,7.210,140.0 +26.8,0.99,7.570,138.2 +27.0,0.99,8.220,140.3 +27.2,0.99,10.100,147.6 +27.0,0.99,8.680,156.8 +27.2,0.99,8.700,165.5 +27.3,0.99,8.460,168.0 +27.3,0.99,8.320,169.0 +27.3,0.99,8.410,170.9 +27.4,0.99,9.520,168.2 +27.6,0.99,9.720,174.2 +27.1,0.99,7.890,178.8 +27.5,0.99,7.260,171.2 +27.6,0.99,6.710,159.8 +24.3,0.99,3.170,313.4 +23.8,1.00,6.140,2.1 +24.5,1.00,4.730,296.9 +25.3,1.00,2.620,316.3 +25.8,1.00,1.850,54.3 +26.1,0.99,3.340,92.5 +26.1,0.99,3.480,97.7 +26.4,0.99,4.770,113.8 +26.7,0.99,5.820,120.8 +26.8,0.99,4.440,120.3 +27.6,0.99,7.210,141.1 +27.5,0.99,6.950,152.5 +27.7,0.99,6.660,153.6 +27.2,0.99,8.430,148.5 +27.3,0.99,7.140,157.9 +26.9,0.99,7.200,160.0 +27.2,0.99,6.230,168.1 +26.9,1.00,6.110,169.8 +26.9,1.00,5.190,176.7 +27.1,1.00,3.950,166.4 +26.9,1.00,4.160,165.0 +26.8,1.00,3.590,169.3 +26.8,1.00,3.330,154.5 +26.8,1.00,3.070,147.3 +26.9,1.00,2.830,150.9 +26.9,1.00,3.390,144.5 +26.9,1.00,3.340,130.2 +27.3,1.00,4.070,148.7 +27.3,1.00,6.030,146.5 +27.4,0.99,5.720,148.0 +27.4,0.99,5.980,147.8 +27.4,0.99,7.590,145.5 +27.6,0.99,6.620,158.9 +27.1,0.99,6.580,156.8 +26.9,0.99,6.410,166.0 +26.8,0.99,5.430,176.1 +26.8,0.99,5.990,175.0 +26.7,0.99,6.980,177.7 +26.8,0.99,6.420,178.8 +26.9,0.99,6.750,183.8 +26.6,0.99,5.800,180.7 +26.7,0.99,5.400,186.1 +26.9,0.99,5.270,193.0 +26.9,0.99,5.130,191.8 +26.9,0.99,4.370,201.4 +26.7,0.99,3.690,211.7 +26.8,0.99,2.870,227.6 +26.7,0.99,2.340,192.4 +26.7,0.99,2.370,199.7 +26.7,0.99,1.370,192.3 +26.8,0.99,2.870,168.3 +27.1,0.99,3.440,182.0 +27.3,0.99,5.380,176.3 +27.3,0.99,4.500,172.3 +27.4,0.99,4.570,171.5 +27.5,0.99,5.250,175.7 +27.4,0.99,5.460,178.1 +27.2,0.99,5.750,184.3 +27.2,0.99,6.590,182.1 +27.2,0.99,7.410,187.8 +27.4,0.99,7.290,189.9 +27.0,0.99,8.160,196.3 +27.1,0.99,7.870,198.0 +26.9,0.99,8.960,201.8 +27.0,0.99,7.670,209.1 +27.3,0.99,8.650,214.8 +27.0,0.99,8.620,221.0 +27.0,0.99,9.040,221.1 +27.1,0.99,7.560,227.5 +26.9,0.99,6.870,233.8 +26.9,0.99,7.450,237.4 +26.6,0.99,6.650,246.5 +26.8,0.99,6.190,240.4 +26.7,0.99,6.140,234.7 +26.9,0.99,6.290,216.9 +27.6,0.99,6.600,211.4 +27.7,0.99,6.920,203.5 +27.7,0.99,7.500,203.0 +27.6,0.99,8.110,199.7 +27.7,0.99,8.880,203.9 +27.8,0.99,8.780,201.6 +27.6,0.99,7.980,208.6 +27.8,0.99,3.440,228.4 +27.2,0.99,8.700,213.2 +26.5,0.99,6.800,235.1 +27.4,0.99,6.930,222.8 +27.7,0.99,7.990,228.0 +27.1,0.99,8.500,228.9 +27.2,0.99,8.520,233.9 +27.2,0.99,7.530,236.0 +26.9,0.99,7.430,245.2 +26.8,0.99,7.180,249.6 +26.4,0.99,6.540,267.5 +26.1,0.99,6.560,276.9 +26.0,0.99,5.810,276.3 +25.9,0.99,6.210,278.1 +26.2,0.99,4.570,277.6 +26.4,0.99,3.590,274.0 +26.7,0.99,2.780,251.1 +27.6,0.99,3.330,222.7 +28.0,0.99,4.090,208.6 +28.3,0.99,5.890,189.9 +28.0,0.99,7.040,189.9 +28.1,0.99,8.750,192.3 +27.4,0.99,8.960,205.0 +27.1,0.99,8.250,216.6 +27.0,0.99,7.570,217.1 +27.4,0.99,6.550,229.1 +27.5,0.99,5.830,235.6 +27.7,0.99,5.110,242.3 +27.8,0.99,4.190,247.9 +27.9,0.99,3.660,240.1 +27.6,0.99,3.230,247.3 +27.4,0.99,3.900,254.0 +26.8,0.99,4.380,280.1 +26.2,0.99,4.250,302.9 +25.9,0.99,4.080,303.6 +25.6,0.99,4.010,313.5 +25.7,0.99,4.010,311.8 +26.2,0.99,4.220,308.4 +26.7,0.99,3.280,314.5 +27.5,0.99,2.360,320.1 +27.3,0.99,1.540,272.1 +28.2,0.99,1.820,243.7 +28.8,0.99,1.990,171.9 +28.5,0.99,2.880,155.7 +28.6,0.99,5.720,178.9 +28.4,0.99,7.020,188.0 +28.3,0.99,6.500,182.0 +28.0,0.99,6.590,194.1 +27.8,0.99,6.620,201.5 +27.8,0.99,6.700,206.2 +27.7,0.99,6.440,215.7 +27.5,0.99,5.780,214.0 +27.6,0.99,4.910,216.0 +27.3,0.99,6.030,216.9 +27.1,0.99,5.270,225.2 +27.0,0.99,4.090,220.7 +27.1,0.99,4.460,228.5 +26.9,0.99,3.660,236.7 +26.9,0.99,3.640,253.5 +26.7,0.99,4.040,267.8 +26.2,0.99,3.760,283.8 +26.1,0.99,3.340,300.1 +26.4,0.99,1.890,278.4 +26.5,0.99,1.500,228.1 +26.6,0.99,1.700,196.4 +27.0,0.99,2.800,174.2 +27.4,0.99,4.100,150.4 +28.5,0.99,2.870,144.5 +28.8,0.99,4.590,156.6 +28.5,0.99,5.600,152.1 +28.1,0.99,6.230,154.7 +27.7,0.99,7.810,146.7 +27.7,0.99,7.380,153.1 +27.4,0.99,8.850,162.8 +27.0,0.99,8.250,167.6 +27.1,0.99,8.000,163.8 +27.5,0.99,7.280,153.7 +27.4,0.99,7.650,152.2 +27.3,0.99,8.310,155.0 +26.8,0.99,12.910,162.2 +27.5,0.99,9.710,162.9 +27.8,0.99,8.490,150.2 +28.1,0.99,7.310,156.0 +27.7,0.99,7.020,149.6 +27.5,0.99,7.550,148.3 +27.3,0.99,6.580,99.7 +23.9,0.99,7.000,11.3 +23.0,0.99,12.950,310.7 +22.3,0.99,5.360,287.5 +22.1,0.99,3.460,187.6 +23.1,0.99,3.800,67.1 +23.9,0.99,3.360,70.7 +25.3,0.99,6.290,84.1 +26.3,0.99,8.280,112.2 +26.4,0.99,7.380,108.5 +26.7,0.99,8.100,116.1 +26.7,0.99,7.350,119.5 +26.8,0.99,7.690,102.7 +26.8,0.99,7.440,106.7 +26.9,0.99,8.380,102.9 +24.4,0.99,6.790,103.2 +25.5,0.99,10.210,104.7 +23.6,0.99,6.680,183.1 +24.7,0.99,6.650,171.1 +24.2,0.99,2.230,136.3 +23.6,0.99,6.440,147.3 +25.1,0.99,5.050,98.9 +25.4,0.99,5.730,92.4 +25.8,0.99,4.690,82.7 +26.0,0.99,7.400,69.6 +25.8,0.99,9.590,81.5 +26.1,0.99,8.110,83.1 +26.3,0.99,7.280,78.5 +26.7,0.99,8.910,91.3 +26.8,0.99,7.150,101.0 +26.9,0.99,8.210,110.9 +26.5,0.99,7.820,108.0 +27.0,0.99,7.480,105.3 +25.7,0.99,8.870,85.3 +25.2,0.99,7.940,129.3 +24.7,0.99,1.520,112.9 +25.4,0.99,1.810,47.4 +26.1,0.99,5.620,103.4 +24.6,0.99,5.120,96.6 +25.5,0.99,5.950,110.9 +25.9,0.99,4.320,106.5 +26.4,0.99,5.160,91.1 +25.5,0.99,12.150,97.6 +24.7,1.00,8.780,113.7 +24.9,1.00,7.550,126.0 +25.0,1.00,4.550,125.0 +25.3,1.00,3.530,114.6 +25.7,1.00,3.180,98.8 +25.8,1.00,3.830,62.1 +26.0,1.00,4.840,56.0 +25.9,1.00,5.340,51.3 +26.2,1.00,6.070,62.1 +26.7,1.00,7.580,67.1 +26.6,1.00,7.150,100.2 +26.7,1.00,8.280,99.6 +26.9,1.00,5.870,112.6 +27.1,0.99,5.770,89.6 +27.4,0.99,6.180,104.4 +27.2,0.99,6.740,98.5 +27.3,0.99,6.200,94.8 +27.4,0.99,6.630,90.7 +27.5,0.99,5.930,91.2 +27.4,0.99,7.180,88.8 +27.2,0.99,6.060,90.6 +27.4,0.99,8.030,83.6 +27.4,0.99,6.310,96.6 +27.5,0.99,5.860,94.5 +26.8,0.99,5.780,81.6 +27.1,0.99,7.120,86.8 +27.2,0.99,5.290,82.7 +27.6,0.99,6.470,83.7 +26.9,1.00,7.220,70.7 +26.3,1.00,7.240,69.3 +26.3,1.00,6.420,69.7 +26.6,1.00,5.330,81.1 +26.7,0.99,4.550,86.2 +26.9,0.99,4.390,99.4 +26.9,0.99,3.600,101.4 +27.0,0.99,3.630,114.1 +27.1,0.99,3.340,127.9 +27.1,0.99,3.330,131.0 +27.0,0.99,2.800,111.5 +26.9,0.99,2.950,130.5 +26.7,0.99,1.280,86.8 +26.7,0.99,2.490,89.5 +27.0,0.99,5.050,98.4 +26.9,0.99,4.440,100.3 +26.9,0.99,4.020,110.8 +27.0,0.99,4.110,137.1 +26.9,0.99,3.840,113.7 +26.7,0.99,2.180,122.5 +26.1,0.99,3.590,208.7 +26.2,0.99,5.690,151.3 +23.3,0.99,5.570,228.5 +24.1,0.99,2.490,231.2 +24.4,0.99,2.240,285.4 +25.4,0.99,1.260,22.9 +24.9,0.99,2.710,7.0 +25.3,0.99,3.280,11.0 +25.7,0.99,2.460,31.8 +26.3,0.99,3.140,29.9 +26.0,0.99,5.600,41.2 +26.1,0.99,5.760,40.4 +26.3,0.99,4.250,81.1 +26.4,0.99,4.220,89.0 +26.5,0.99,3.680,91.9 +26.4,0.99,3.960,107.2 +26.4,0.99,4.050,112.4 +26.4,0.99,3.970,116.0 +26.6,0.99,3.730,134.4 +26.6,0.99,3.920,139.9 +26.7,0.99,3.790,152.3 +26.6,0.99,4.520,167.5 +26.5,0.99,3.670,176.0 +26.5,0.99,2.770,195.0 +26.4,0.99,3.200,186.2 +26.3,0.99,2.250,196.8 +26.4,0.99,2.110,181.7 +26.3,0.99,1.570,198.2 +26.3,0.99,0.850,246.5 +25.7,0.99,3.430,35.7 +25.6,0.99,5.510,82.9 +26.0,0.99,6.180,121.3 +25.9,0.99,7.880,141.6 +25.8,0.99,6.840,153.7 +27.0,0.99,5.960,159.8 +26.2,0.99,6.860,144.7 +26.7,0.99,6.330,134.8 +26.9,0.99,6.000,131.2 +27.1,0.99,5.380,133.6 +26.7,0.99,3.780,144.8 +26.8,0.99,6.340,178.7 +26.7,0.99,6.330,168.8 +26.7,0.99,7.430,181.6 +26.7,0.99,8.310,178.3 +27.0,0.99,8.350,187.6 +26.8,0.99,7.650,194.1 +26.8,0.99,5.040,192.2 +24.7,0.99,15.410,211.1 +24.2,0.99,5.260,198.5 +25.1,0.99,7.930,174.3 +27.5,0.99,7.560,215.2 +27.4,0.99,6.930,226.7 +27.3,0.99,7.170,234.4 +27.2,0.99,5.910,245.9 +27.5,0.99,4.750,241.5 +27.4,0.99,5.360,230.7 +27.7,0.99,5.850,220.8 +27.7,0.99,5.920,204.1 +28.2,0.99,5.490,181.7 +28.3,0.99,8.540,195.8 +27.9,0.99,7.990,189.5 +27.9,0.99,8.490,187.7 +27.9,0.99,8.660,178.2 +28.1,0.99,10.290,181.8 +28.1,0.99,10.040,178.3 +28.3,0.99,11.340,182.7 +28.3,0.99,11.560,184.2 +28.9,0.99,10.500,185.7 +28.5,0.99,11.210,193.2 +28.4,0.99,11.090,197.3 +28.9,0.99,9.260,189.4 +28.5,0.99,11.330,200.9 +28.2,0.99,9.620,198.3 +28.3,0.99,8.880,199.6 +27.8,0.99,9.090,200.7 +27.5,0.99,7.800,196.6 +27.2,0.99,7.190,197.3 +27.4,0.99,7.100,200.2 +27.5,0.99,4.770,201.6 +27.5,0.99,6.140,186.9 +27.7,0.99,8.050,194.6 +27.9,0.99,7.750,193.6 +28.0,0.99,8.330,191.6 +28.3,0.99,8.050,190.8 +28.0,0.99,8.850,194.2 +28.3,0.99,8.980,189.9 +28.3,0.99,8.390,191.8 +28.3,0.99,9.720,188.7 +27.9,0.99,9.690,191.1 +27.8,0.99,9.500,186.2 +27.4,0.99,9.610,181.1 +27.1,0.99,11.070,188.9 +27.4,0.99,10.330,193.1 +27.4,0.99,9.260,200.0 +27.1,0.99,10.050,193.8 +27.1,0.99,9.980,197.9 +27.1,0.99,9.280,197.5 +27.2,0.99,10.060,201.6 +27.5,0.99,8.630,201.4 +27.9,0.99,8.860,206.5 +27.4,0.99,9.030,205.3 +27.4,0.99,7.070,200.6 +27.4,0.99,6.160,211.0 +27.3,0.99,4.420,211.7 +27.4,0.99,4.550,223.6 +27.8,0.99,5.600,211.6 +27.9,0.99,6.100,207.7 +28.0,0.99,5.550,211.5 +28.0,0.99,5.890,196.1 +27.9,0.99,7.000,200.3 +27.8,0.99,7.330,193.7 +27.6,0.99,7.470,193.5 +27.7,0.99,7.540,197.8 +27.6,0.99,8.040,201.2 +27.3,0.99,8.070,186.0 +27.4,0.99,9.610,196.3 +27.2,0.99,8.180,207.1 +26.9,0.99,8.610,202.2 +27.0,0.99,8.640,205.8 +27.4,0.99,8.510,209.9 +27.5,0.99,8.540,213.0 +27.2,0.99,7.700,226.3 +27.1,0.99,7.470,221.9 +27.0,0.99,7.690,224.8 +27.1,0.99,6.380,239.3 +27.0,0.99,5.490,242.4 +27.0,0.99,5.130,241.8 +27.0,0.99,4.040,240.8 +26.9,0.99,4.630,221.0 +27.6,0.99,4.770,209.2 +27.7,0.99,4.690,196.4 +27.8,0.99,5.000,197.9 +27.5,0.99,6.450,196.2 +27.7,0.99,6.740,190.9 +27.6,0.99,7.210,196.3 +27.4,0.99,7.750,196.1 +27.1,0.99,7.150,196.1 +27.2,0.99,7.450,200.7 +27.2,0.99,7.810,208.1 +27.4,0.99,7.520,214.0 +27.0,0.99,7.390,219.5 +26.8,0.99,7.960,224.9 +26.7,0.99,8.830,232.9 +26.8,0.99,7.710,236.8 +26.9,0.99,7.980,244.6 +26.7,0.99,8.590,246.0 +26.2,0.99,7.880,261.0 +26.0,0.99,6.890,260.2 +25.6,0.99,6.260,267.6 +25.6,0.99,4.940,266.1 +26.0,0.99,4.660,250.5 +26.2,0.99,4.290,227.0 +26.7,0.99,3.180,225.4 +27.4,0.99,3.130,206.0 +27.7,0.99,4.150,200.8 +27.8,0.99,4.330,203.1 +27.8,0.99,5.620,200.8 +27.9,0.99,5.720,201.5 +28.0,0.99,5.380,198.5 +27.7,0.99,6.590,201.1 +27.5,0.99,6.770,202.6 +27.6,0.99,6.970,207.6 +27.5,0.99,7.430,207.1 +27.5,0.99,6.940,212.5 +27.4,0.99,7.380,215.4 +27.5,0.99,8.210,219.8 +27.2,0.99,7.360,219.5 +27.4,0.99,7.250,225.6 +27.3,0.99,7.010,233.6 +27.4,0.99,6.240,236.0 +27.2,0.99,6.070,239.1 +26.8,0.99,5.680,235.3 +26.9,0.99,5.110,236.5 +26.7,0.99,3.680,247.0 +26.4,0.99,2.680,234.3 +26.5,0.99,2.550,229.8 +26.8,0.99,3.890,200.9 +27.2,0.99,5.340,195.4 +27.5,0.99,6.240,187.4 +27.6,0.99,7.400,191.2 +27.6,0.99,7.930,192.7 +27.4,0.99,8.650,189.7 +27.7,0.99,8.870,194.9 +27.4,0.99,9.280,194.1 +27.1,0.99,10.020,199.7 +27.1,0.99,10.240,199.9 +27.0,0.99,10.910,201.3 +27.2,0.99,10.340,203.6 +27.4,0.99,10.550,203.5 +27.5,0.99,10.740,208.1 +28.2,0.99,9.680,207.1 +28.2,0.99,10.950,214.3 +28.3,0.99,9.000,214.3 +27.5,0.99,10.550,213.8 +28.0,0.99,8.240,220.6 +28.2,0.99,9.450,233.1 +27.6,0.99,8.450,237.4 +27.6,0.99,7.960,240.7 +27.7,0.99,7.530,234.5 +27.7,0.99,8.520,221.6 +28.2,0.99,8.390,216.0 +28.3,0.99,9.290,217.3 +28.7,0.99,9.980,217.0 +28.6,0.99,9.240,206.3 +29.1,0.99,8.380,223.4 +28.6,0.99,8.390,207.9 +28.5,0.99,9.490,205.1 +28.6,0.99,8.970,211.8 +28.6,0.99,7.780,206.1 +28.1,0.99,7.990,212.5 +28.1,0.99,7.620,214.0 +28.0,0.99,8.150,214.2 +27.6,0.99,7.800,213.5 +27.5,0.99,7.130,221.6 +27.4,0.99,6.270,217.3 +27.4,0.99,6.620,219.6 +27.4,0.99,6.440,224.7 +27.3,0.99,6.630,227.6 +27.4,0.99,5.860,231.7 +27.2,0.99,5.810,227.2 +27.2,0.99,4.630,232.0 +27.3,0.99,4.750,225.1 +27.4,0.99,4.710,221.2 +27.4,0.99,5.140,217.1 +27.4,0.99,5.980,207.5 +27.7,0.99,6.580,204.3 +28.0,0.99,5.650,198.0 +27.8,0.99,6.740,193.5 +27.7,0.99,6.910,190.9 +27.7,0.99,5.730,188.9 +27.6,0.99,5.900,183.9 +27.6,0.99,5.250,173.5 +27.5,0.99,6.990,177.2 +27.3,0.99,7.420,173.0 +27.4,0.99,7.230,174.2 +27.3,0.99,7.900,167.8 +27.5,0.99,7.200,166.4 +27.4,0.99,9.010,167.8 +27.6,0.99,8.120,172.0 +27.6,0.99,8.270,187.8 +27.6,0.99,8.880,194.4 +27.6,0.99,8.020,193.9 +27.7,0.99,8.550,192.8 +27.6,0.99,7.420,191.0 +27.6,0.99,7.040,181.1 +27.6,0.99,6.680,188.5 +27.5,0.99,6.560,175.4 +27.7,0.99,6.100,180.9 +27.7,0.99,7.680,173.6 +27.8,0.99,7.500,180.5 +27.7,0.99,7.520,181.9 +27.8,0.99,7.880,181.2 +27.9,0.99,7.210,176.8 +27.9,0.99,7.410,175.2 +27.7,0.99,7.650,170.2 +27.7,0.99,7.650,166.9 +27.8,0.99,8.350,165.4 +27.8,0.99,9.480,166.3 +28.0,0.99,9.080,168.4 +27.9,0.99,8.800,170.3 +27.8,0.99,8.810,172.1 +27.7,0.99,9.890,174.3 +27.5,0.99,9.200,177.1 +27.8,0.99,8.250,186.5 +27.5,0.99,8.550,179.2 +27.6,0.99,7.150,185.0 +27.6,0.99,6.900,188.7 +27.3,0.99,8.030,203.2 +27.2,0.99,4.900,190.5 +27.4,1.00,5.110,207.6 +27.3,0.99,3.830,207.4 +27.2,1.00,4.630,225.8 +27.3,0.99,3.860,213.8 +27.6,0.99,4.290,203.1 +27.9,0.99,4.060,188.2 +28.0,0.99,5.540,186.3 +28.1,0.99,5.290,185.5 +28.0,0.99,6.260,174.1 +28.0,0.99,6.490,173.4 +27.8,0.99,7.260,173.6 +27.7,0.99,7.220,173.0 +27.8,0.99,6.920,172.8 +27.6,0.99,8.120,178.4 +27.7,0.99,7.550,181.4 +27.5,0.99,7.850,181.4 +27.4,0.99,8.060,186.1 +27.3,0.99,8.700,190.0 +27.4,0.99,7.470,190.5 +27.3,0.99,7.080,195.2 +27.4,0.99,6.910,197.3 +27.4,0.99,6.980,205.8 +27.3,0.99,5.540,219.6 +26.9,0.99,6.390,244.9 +26.4,0.99,3.860,258.4 +26.6,0.99,3.650,251.3 +26.6,0.99,3.330,247.9 +26.6,0.99,3.460,231.0 +27.4,0.99,3.770,201.0 +27.7,0.99,4.550,193.5 +27.7,0.99,4.590,190.0 +27.6,0.99,5.640,184.3 +27.6,0.99,6.310,180.9 +27.5,0.99,6.410,183.5 +27.4,0.99,6.330,176.7 +27.2,0.99,6.630,183.2 +27.3,0.99,6.510,179.2 +27.3,0.99,6.730,181.5 +27.2,0.99,6.860,185.7 +27.2,0.99,7.440,190.3 +27.1,0.99,6.660,198.5 +27.0,0.99,6.070,206.3 +27.1,0.99,6.750,211.9 +27.1,0.99,7.060,219.9 +26.9,0.99,6.420,224.8 +26.8,0.99,6.290,219.7 +26.7,0.99,6.370,251.4 +26.2,0.99,5.090,263.1 +26.1,0.99,4.800,259.9 +26.2,0.99,4.110,252.7 +26.4,0.99,2.520,217.6 +26.8,0.99,1.710,191.7 +27.4,0.99,2.780,169.4 +27.6,0.99,2.680,179.1 +27.9,0.99,4.150,183.8 +28.0,0.99,4.610,189.8 +27.9,0.99,5.960,184.2 +28.0,0.99,5.420,190.4 +27.7,0.99,5.460,192.5 +27.6,0.99,5.550,199.2 +27.6,0.99,7.110,196.5 +27.5,0.99,6.140,194.2 +27.5,0.99,5.740,198.3 +27.4,0.99,6.830,202.6 +27.2,0.99,6.610,212.0 +27.1,0.99,6.030,213.7 +27.0,0.99,5.600,231.4 +26.9,0.99,5.650,225.7 +26.9,0.99,5.060,235.3 +26.8,0.99,4.870,228.5 +26.7,0.99,4.910,239.8 +26.2,0.99,3.700,270.8 +26.2,0.99,2.660,269.3 +26.3,0.99,2.090,248.9 +26.4,0.99,2.690,236.5 +26.7,0.99,3.680,211.8 +27.4,0.99,3.480,202.2 +27.8,0.99,3.360,189.8 +27.8,0.99,4.480,173.5 +27.9,0.99,5.330,175.1 +27.9,0.99,5.960,169.5 +27.9,0.99,6.860,170.9 +27.7,0.99,6.280,169.7 +27.7,0.99,5.980,163.0 +27.7,0.99,7.420,166.7 +27.7,0.99,7.290,167.5 +27.7,0.99,6.750,170.5 +27.7,0.99,6.740,176.9 +27.7,0.99,6.380,188.7 +27.5,0.99,6.320,191.5 +27.5,0.99,5.640,191.5 +27.4,0.99,7.200,194.9 +27.5,0.99,6.290,200.2 +27.4,0.99,5.860,202.8 +27.2,0.99,4.560,204.8 +27.3,0.99,3.660,208.7 +27.5,0.99,3.530,205.0 +27.8,0.99,5.370,203.8 +27.7,0.99,4.850,205.0 +27.9,0.99,4.910,196.3 +28.0,0.99,5.700,184.9 +28.2,0.99,5.380,181.9 +28.4,0.99,5.260,184.2 +28.3,0.99,6.630,186.5 +28.8,0.99,5.810,186.1 +28.1,0.99,5.770,178.0 +28.1,0.99,7.300,172.5 +28.0,0.99,7.350,169.9 +27.9,0.99,7.080,177.8 +27.9,0.99,7.200,179.5 +27.9,0.99,7.220,182.8 +27.9,0.99,7.070,179.8 +27.7,0.99,6.970,182.7 +27.5,0.99,6.510,194.5 +27.6,0.99,5.400,197.2 +27.3,0.99,6.040,199.7 +27.2,0.99,4.630,202.6 +27.2,0.99,4.040,191.3 +27.2,0.99,1.900,197.2 +27.1,0.99,1.570,178.0 +27.3,0.99,2.500,197.9 +27.3,0.99,1.530,196.1 +27.4,0.99,2.390,188.9 +27.4,0.99,2.680,159.3 +27.7,0.99,3.140,166.2 +27.9,0.99,3.040,171.6 +28.1,0.99,3.780,181.2 +28.3,0.99,5.410,191.2 +28.2,0.99,4.760,192.4 +28.1,0.99,5.750,189.8 +27.9,0.99,6.070,186.8 +27.9,0.99,6.680,194.8 +27.8,0.99,6.110,194.8 +27.7,0.99,6.200,196.7 +27.5,0.99,6.160,202.5 +27.7,0.99,7.330,203.6 +27.6,0.99,6.150,210.2 +27.4,0.99,6.350,216.5 +27.4,0.99,6.430,211.9 +27.5,0.99,6.270,218.6 +27.7,0.99,6.140,224.2 +27.7,0.99,5.840,229.0 +28.0,0.99,4.000,234.5 +27.6,0.99,4.120,237.5 +27.3,0.99,3.350,253.9 +27.1,0.99,2.270,235.9 +27.4,0.99,3.270,212.9 +27.4,0.99,3.390,197.9 +27.7,0.99,5.000,183.4 +28.0,0.99,5.830,184.3 +28.2,0.99,6.760,201.0 +28.7,0.99,6.450,206.6 +28.2,0.99,7.580,194.3 +28.1,0.99,8.430,194.4 +28.1,0.99,8.350,193.9 +27.8,0.99,8.810,192.6 +27.8,0.99,8.520,196.8 +27.8,0.99,8.820,197.8 +27.6,0.99,9.810,195.8 +27.9,0.99,9.140,210.5 +27.7,0.99,8.720,211.4 +27.4,0.99,8.910,209.9 +27.4,0.99,8.900,214.6 +27.3,0.99,9.380,223.5 +27.3,0.99,7.090,218.9 +27.4,0.99,7.260,223.6 +28.0,0.99,6.530,223.3 +27.9,0.99,6.770,228.3 +27.7,0.99,6.370,219.5 +27.9,0.99,6.460,218.1 +27.6,0.99,6.100,228.5 +27.9,0.99,7.170,229.8 +28.7,0.99,7.850,217.8 +28.9,0.99,8.440,209.6 +29.1,0.99,9.100,210.0 +29.2,0.99,9.000,210.5 +29.5,0.99,8.970,206.4 +28.9,0.99,9.940,202.6 +28.9,0.99,8.780,200.7 +28.3,0.99,8.570,197.3 +28.2,0.99,8.800,196.0 +28.3,0.99,8.850,189.1 +28.6,0.99,9.020,194.0 +28.3,0.99,8.420,193.9 +28.1,0.99,8.810,199.9 +28.1,0.99,9.440,203.9 +28.4,0.99,8.530,206.1 +27.7,0.99,9.960,212.8 +27.5,0.99,9.640,213.0 +28.0,0.99,7.230,220.0 +27.8,0.99,8.630,219.0 +27.8,0.99,5.790,219.3 +27.8,0.99,4.950,217.6 +27.8,0.99,6.370,219.4 +27.8,0.99,5.870,209.9 +28.0,0.99,4.390,209.8 +28.2,0.99,4.670,187.8 +28.3,0.99,5.920,194.4 +28.6,0.99,5.730,186.0 +28.7,0.99,7.170,184.8 +28.4,0.99,8.240,187.0 +28.5,0.99,7.920,178.1 +28.2,0.99,7.470,176.1 +27.9,0.99,8.630,180.4 +27.5,0.99,8.600,178.7 +27.3,0.99,8.400,189.4 +28.2,0.99,6.400,194.3 +28.4,0.99,7.460,202.0 +27.5,0.99,7.710,203.2 +27.7,0.99,6.740,209.5 +27.0,0.99,7.300,209.7 +26.9,0.99,6.320,215.4 +26.9,0.99,6.240,212.9 +27.0,0.99,5.950,212.6 +26.9,0.99,3.970,233.7 +26.5,0.99,2.340,272.4 +26.4,0.99,0.740,253.4 +26.4,0.99,0.430,293.6 +26.4,0.99,0.390,55.1 +26.6,0.99,0.860,119.1 +27.4,0.99,2.940,148.5 +27.9,0.99,3.930,158.5 +28.0,0.99,4.460,152.8 +27.9,0.99,4.620,149.0 +28.0,0.99,5.280,154.6 +28.1,0.99,5.800,153.7 +27.8,0.99,6.310,156.0 +27.6,0.99,6.430,151.5 +27.6,0.99,6.310,155.7 +27.7,0.99,6.960,153.4 +27.5,0.99,6.070,168.5 +27.3,0.99,5.880,160.0 +27.2,0.99,5.510,167.1 +27.2,0.99,5.060,169.1 +27.0,0.99,4.840,174.6 +27.2,0.99,4.360,172.6 +27.1,0.99,1.830,194.6 +27.1,0.99,1.530,194.5 +27.0,0.99,0.560,163.2 +26.9,0.99,0.650,333.0 +26.6,0.99,1.430,29.6 +26.7,0.99,2.060,37.4 +26.7,0.99,2.820,55.0 +27.1,0.99,2.070,55.8 +27.8,0.99,3.650,94.2 +28.2,0.99,5.670,111.1 +28.4,0.99,6.260,129.7 +28.3,0.99,5.570,127.2 +28.4,0.99,6.530,128.6 +28.2,0.99,6.640,126.1 +28.2,0.99,6.050,114.1 +28.0,0.99,7.740,116.7 +28.0,0.99,7.060,120.9 +27.6,0.99,6.840,131.6 +27.5,0.99,7.370,124.1 +28.0,0.99,6.250,129.0 +27.6,0.99,5.990,127.2 +27.7,0.99,4.370,125.9 +27.8,0.99,4.260,122.2 +27.8,0.99,6.930,130.5 +27.7,0.99,5.140,143.2 +27.9,0.99,5.130,147.7 +26.7,0.99,7.440,171.4 +26.1,0.99,2.880,143.1 +26.0,0.99,2.830,59.8 +25.5,0.99,3.930,46.3 +26.4,0.99,5.030,69.0 +26.0,0.99,4.140,102.8 +27.0,0.99,3.220,128.8 +27.1,0.99,2.260,138.1 +27.4,0.99,2.320,102.4 +27.2,0.99,2.150,127.0 +27.3,0.99,3.380,103.7 +27.4,0.99,4.370,98.2 +27.3,0.99,5.520,103.9 +27.8,0.99,5.210,106.7 +27.4,0.99,5.410,121.8 +27.7,0.99,5.520,110.2 +27.5,0.99,7.330,112.3 +27.4,0.99,8.400,124.3 +26.8,0.99,8.440,140.3 +27.0,0.99,5.760,146.0 +26.8,0.99,5.110,144.3 +27.3,0.99,4.580,128.3 +27.2,0.99,5.000,107.3 +27.2,0.99,4.190,180.0 +27.4,0.99,1.800,148.6 +27.4,0.99,2.280,131.5 +27.5,0.99,3.500,110.6 +27.7,0.99,5.100,107.3 +27.8,0.99,5.420,122.0 +27.8,0.99,7.230,127.0 +27.4,0.99,6.770,142.8 +27.4,0.99,6.710,149.3 +27.9,0.99,6.390,152.5 +27.8,0.99,6.510,154.1 +27.8,0.99,6.450,154.3 +27.8,0.99,5.520,168.5 +27.6,0.99,5.180,167.8 +27.5,0.99,4.870,152.3 +27.5,0.99,5.790,162.3 +27.7,0.99,5.670,157.2 +27.6,0.99,5.780,162.0 +27.6,0.99,6.670,165.1 +27.6,0.99,5.950,167.2 +27.6,0.99,6.080,170.5 +27.7,0.99,5.130,183.6 +27.7,0.99,5.140,178.6 +27.7,0.99,5.570,182.8 +27.6,0.99,4.250,207.1 +27.4,0.99,4.510,224.1 +27.3,0.99,4.590,229.9 +26.9,0.99,3.380,272.6 +26.7,0.99,1.790,283.1 +26.9,0.99,0.630,223.7 +27.1,0.99,1.480,149.3 +27.5,0.99,2.580,167.9 +27.8,0.99,4.040,165.2 +28.1,0.99,5.240,177.8 +28.3,0.99,5.340,178.3 +28.3,0.99,6.230,170.2 +28.1,0.99,6.120,175.4 +28.3,0.99,6.090,174.7 +28.2,0.99,7.280,170.6 +28.6,0.99,7.300,177.3 +28.6,0.99,6.680,175.0 +28.8,0.99,7.440,178.5 +28.8,0.99,7.050,186.8 +28.8,0.99,6.840,192.7 +29.1,0.99,6.830,195.6 +28.8,0.99,6.020,203.1 +28.5,0.99,6.020,200.9 +28.4,0.99,5.630,212.7 +27.9,0.99,4.480,225.2 +27.6,0.99,4.410,231.8 +27.4,0.99,2.890,260.5 +27.2,0.99,2.680,270.1 +27.1,0.99,1.810,304.4 +27.3,0.99,0.670,242.0 +27.4,0.99,2.000,156.4 +28.1,0.99,4.200,151.6 +28.2,0.99,5.270,145.5 +27.7,0.99,2.830,159.8 +27.9,0.99,3.070,178.7 +27.9,0.99,4.660,180.6 +27.8,0.99,6.300,176.8 +27.8,0.99,6.360,180.3 +27.9,0.99,7.630,185.5 +27.9,0.99,7.120,185.7 +28.1,0.99,7.140,186.4 +27.9,0.99,7.520,181.1 +28.0,0.99,7.230,185.4 +27.9,0.99,8.220,190.3 +27.9,0.99,7.980,193.9 +27.7,0.99,7.110,199.6 +27.9,0.99,6.410,213.4 +27.8,0.99,7.270,219.9 +27.8,0.99,5.940,225.8 +27.4,0.99,6.440,243.7 +27.3,0.99,5.130,255.0 +27.4,0.99,4.160,276.0 +27.5,0.99,5.530,266.9 +27.4,0.99,3.320,239.4 +27.5,0.99,1.760,259.1 +28.4,0.99,1.020,177.0 +28.7,0.99,3.860,171.6 +28.6,0.99,7.380,181.6 +28.6,0.99,6.850,188.2 +28.6,0.99,6.790,192.4 +25.2,0.99,11.610,38.6 +23.8,0.99,7.040,31.5 +25.0,0.99,1.970,78.3 +25.8,0.99,3.480,151.7 +27.3,0.99,2.890,134.2 +27.4,0.99,0.360,281.0 +27.4,0.99,1.780,53.9 +27.4,0.99,1.810,66.4 +27.2,0.99,1.620,52.5 +26.9,0.99,1.300,15.4 +26.6,0.99,3.230,356.7 +25.9,0.99,4.200,15.6 +26.0,0.99,3.670,19.1 +25.8,0.99,3.700,25.9 +25.7,0.99,5.810,11.9 +25.5,0.99,4.220,32.3 +25.4,0.99,4.790,20.6 +25.6,0.99,3.790,43.3 +26.0,0.99,2.470,34.7 +26.6,0.99,1.400,62.6 +27.1,0.99,1.600,116.2 +27.4,0.99,2.090,205.3 +26.6,0.99,7.010,260.5 +25.8,0.99,5.740,345.0 +25.2,0.99,4.420,44.1 +26.1,0.99,1.080,62.3 +26.7,0.99,1.490,20.0 +26.9,0.99,1.120,6.1 +27.2,0.99,1.650,30.1 +27.4,0.99,2.990,53.7 +27.5,0.99,3.360,68.6 +27.4,0.99,3.390,59.9 +26.8,0.99,3.440,45.6 +26.5,0.99,4.110,41.8 +26.3,0.99,4.980,25.0 +26.1,0.99,4.430,36.7 +25.7,0.99,3.940,18.6 +25.4,0.99,3.440,30.2 +25.5,0.99,4.130,16.6 +25.6,0.99,3.600,23.6 +25.9,0.99,5.810,34.9 +26.4,0.99,6.110,53.1 +26.7,0.99,5.180,71.4 +27.1,0.99,3.980,91.3 +27.3,0.99,4.660,102.3 +27.5,0.99,4.980,113.3 +27.7,0.99,5.470,117.1 +27.9,0.99,5.220,119.6 +28.0,0.99,4.920,118.8 +28.0,0.99,5.630,127.4 +28.1,0.99,5.260,124.8 +28.1,0.99,5.190,131.6 +28.0,0.99,5.020,132.5 +28.1,0.99,4.510,116.6 +28.0,0.99,4.230,120.4 +27.8,0.99,3.390,99.9 +27.6,0.99,3.790,82.0 +27.5,0.99,3.620,67.0 +26.4,0.99,5.240,24.2 +25.6,0.99,7.090,19.2 +25.6,0.99,6.130,24.0 +26.4,0.99,8.100,44.6 +25.7,0.99,8.090,44.8 +25.3,0.99,7.320,48.4 +25.2,0.99,6.920,38.4 +25.6,0.99,5.360,52.6 +26.1,0.99,3.990,69.5 +26.9,0.99,2.160,60.0 +27.2,0.99,1.690,98.0 +27.3,0.99,1.610,130.3 +27.4,0.99,2.670,150.7 +27.6,0.99,2.690,149.8 +27.9,0.99,2.190,136.4 +27.6,0.99,3.120,141.4 +27.7,0.99,2.490,141.1 +27.7,0.99,1.600,122.5 +27.8,0.99,1.110,71.2 +27.7,0.99,1.930,20.4 +27.6,0.99,3.570,10.6 +27.3,0.99,3.280,31.7 +27.4,0.99,6.860,46.6 +27.0,0.99,5.750,51.3 +25.9,0.99,5.690,36.1 +25.5,0.99,6.090,37.2 +25.2,0.99,5.950,33.3 +24.8,0.99,7.160,32.5 +24.9,0.99,7.400,42.6 +24.9,0.99,7.390,43.4 +25.0,0.99,6.840,46.3 +25.5,0.99,5.320,52.0 +26.0,0.99,4.480,82.9 +26.7,0.99,3.030,85.7 +26.9,0.99,3.220,104.4 +27.0,0.99,3.590,115.3 +27.1,0.99,2.380,134.6 +27.3,0.99,2.420,135.0 +27.3,0.99,3.260,143.7 +27.3,0.99,2.940,159.0 +27.3,0.99,2.630,153.7 +27.2,0.99,1.950,139.8 +27.2,0.99,1.920,134.0 +27.2,0.99,1.950,122.3 +27.2,0.99,1.920,87.8 +27.1,0.99,2.690,90.7 +26.9,0.99,2.850,75.4 +26.9,0.99,2.970,70.7 +26.9,0.99,3.690,60.9 +26.6,0.99,4.190,33.4 +25.9,0.99,5.920,24.8 +25.5,0.99,7.170,35.0 +25.4,0.99,7.740,45.3 +26.8,0.99,8.930,62.0 +26.5,0.99,7.380,60.4 +26.7,0.99,7.940,70.8 +26.8,0.99,6.530,81.2 +27.3,0.99,7.050,99.1 +27.4,0.99,7.360,111.5 +26.5,0.99,4.990,135.4 +26.7,0.99,3.960,138.4 +27.0,0.99,3.930,122.5 +27.1,0.99,4.880,133.3 +26.9,0.99,4.610,137.1 +26.9,0.99,3.920,145.8 +26.6,0.99,2.530,156.0 +26.5,0.99,3.370,155.1 +26.5,0.99,3.660,152.9 +26.5,0.99,4.370,172.4 +26.5,0.99,3.760,182.3 +26.5,0.99,3.440,189.9 +26.6,0.99,3.900,180.3 +26.6,0.99,2.570,177.0 +25.8,0.99,4.950,184.2 +26.1,0.99,2.500,188.6 +25.7,0.99,4.700,210.1 +25.6,0.99,2.950,191.3 +26.1,0.99,0.810,161.4 +26.0,0.99,1.370,49.4 +25.3,0.99,1.720,36.0 +25.7,0.99,1.540,32.6 +26.6,0.99,2.540,136.8 +26.7,0.99,2.560,99.3 +26.8,0.99,2.790,103.4 +27.0,0.99,2.150,114.5 +27.4,0.99,2.610,156.5 +27.6,0.99,3.520,147.1 +27.3,0.99,3.610,131.5 +27.4,0.99,2.570,129.4 +27.3,0.99,3.270,117.9 +27.4,0.99,3.560,118.7 +27.1,0.99,4.860,127.4 +27.1,0.99,3.210,132.3 +26.9,0.99,3.410,132.5 +26.9,0.99,3.600,129.0 +27.0,0.99,3.020,146.3 +27.0,0.99,1.950,130.0 +26.6,0.99,5.280,101.6 +26.1,0.99,5.740,92.6 +26.5,0.99,4.060,102.5 +27.0,0.99,3.230,91.0 +26.5,0.99,5.490,69.4 +25.5,0.99,6.110,84.6 +25.1,0.99,7.280,71.7 +25.0,0.99,8.050,94.3 +26.6,0.99,6.340,92.3 +27.0,0.99,5.600,101.7 +27.0,0.99,6.070,111.9 +27.1,0.99,6.180,111.1 +27.3,0.99,6.270,125.6 +27.3,0.99,4.310,101.7 +27.1,0.99,5.730,100.5 +27.0,0.99,4.870,97.9 +27.2,0.99,4.950,108.1 +26.9,0.99,5.100,122.3 +27.2,0.99,4.950,127.2 +27.3,0.99,5.160,130.8 +27.3,0.99,4.940,125.8 +27.5,0.99,4.810,120.1 +27.4,0.99,4.830,126.8 +27.3,0.99,5.710,133.8 +27.3,0.99,3.090,158.5 +26.2,0.99,2.930,201.2 +25.7,0.99,0.720,172.9 +24.9,0.99,3.600,18.3 +24.9,0.99,2.890,256.6 +25.6,0.99,0.760,279.2 +25.9,0.99,1.550,25.7 +25.8,0.99,8.130,96.9 +26.2,0.99,8.290,114.4 +26.9,0.99,5.660,106.3 +27.2,0.99,5.120,125.5 +27.6,0.99,5.020,113.1 +27.3,0.99,5.140,92.0 +27.3,0.99,4.190,91.3 +27.6,0.99,4.580,103.0 +27.5,0.99,5.840,120.3 +27.6,0.99,5.730,111.2 +27.7,0.99,6.440,129.2 +27.9,0.99,5.210,122.1 +27.6,0.99,5.510,126.7 +27.5,0.99,4.310,98.3 +27.7,0.99,4.570,85.8 +27.8,0.99,4.370,103.3 +27.7,0.99,3.850,93.9 +27.6,0.99,3.500,86.4 +27.5,0.99,4.080,71.6 +27.4,0.99,4.570,45.9 +26.5,0.99,5.870,32.1 +26.2,0.99,5.980,32.2 +26.4,0.99,5.420,29.1 +26.9,0.99,4.390,29.0 +27.5,0.99,3.940,59.1 +28.9,0.99,3.600,61.0 +29.2,0.99,3.940,88.7 +29.2,0.99,3.260,105.4 +28.9,0.99,4.010,116.2 +28.8,0.99,3.340,121.6 +28.7,0.99,3.390,139.2 +28.6,0.99,3.250,149.5 +28.5,0.99,3.380,144.5 +28.3,0.99,3.840,122.4 +28.1,0.99,4.000,111.2 +27.9,0.99,2.750,105.3 +28.0,0.99,3.040,97.6 +28.0,0.99,2.570,105.3 +27.6,0.99,3.530,69.2 +27.3,0.99,3.180,80.1 +27.2,0.99,2.360,55.9 +26.5,0.99,4.720,15.8 +26.3,0.99,6.740,28.7 +25.9,0.99,7.410,30.1 +26.1,0.99,7.130,43.4 +26.5,0.99,8.280,46.5 +26.8,0.99,8.440,49.9 +26.9,0.99,8.350,60.5 +26.9,0.99,7.370,67.4 +27.6,0.99,7.390,73.6 +27.8,0.99,6.910,94.2 +27.8,0.99,7.060,98.9 +27.9,0.99,6.800,103.9 +27.9,0.99,6.580,101.8 +27.9,0.99,7.640,105.3 +27.6,0.99,7.840,94.8 +27.6,0.99,7.860,90.5 +27.5,0.99,7.780,87.3 +27.5,0.99,8.520,81.3 +27.7,0.99,8.160,81.9 +27.1,0.99,6.380,96.5 +25.5,0.99,8.730,98.1 +25.9,0.99,6.710,137.3 +25.5,0.99,9.770,137.1 +24.9,0.99,3.580,189.1 +25.3,0.99,0.770,89.9 +24.9,0.99,5.420,126.6 +25.1,0.99,4.120,140.9 +24.5,0.99,6.220,164.6 +24.6,0.99,2.660,137.7 +25.0,0.99,1.660,317.5 +24.4,0.99,2.420,138.6 +24.5,0.99,4.440,156.7 +25.6,0.99,4.530,149.9 +25.4,0.99,1.320,136.1 +24.7,0.99,5.640,125.2 +25.0,0.99,7.690,106.9 +25.5,0.99,6.880,119.1 +25.3,0.99,6.500,149.1 +24.3,0.99,6.770,146.0 +25.3,0.99,6.800,142.3 +25.8,0.99,7.490,133.2 +24.9,0.99,4.890,141.9 +24.3,0.99,3.160,147.8 +26.1,0.99,6.450,158.1 +25.7,0.99,6.350,168.8 +25.4,0.99,7.430,147.4 +25.6,0.99,3.850,116.7 +25.9,0.99,5.420,153.6 +25.9,0.99,8.180,135.9 +25.9,0.99,6.160,147.6 +24.9,0.99,9.440,146.3 +24.7,0.99,5.400,142.0 +25.1,0.99,5.490,154.7 +25.5,0.99,5.990,147.5 +24.7,0.99,5.650,129.4 +24.6,0.99,5.260,116.9 +24.1,0.99,4.480,244.9 +23.6,1.00,5.820,194.3 +23.2,0.99,7.300,189.9 +24.7,0.99,5.170,164.8 +25.4,0.99,4.530,151.2 +25.4,0.99,3.860,131.4 +25.8,0.99,4.490,88.5 +26.0,0.99,4.540,96.8 +26.2,0.99,4.380,99.9 +26.6,0.99,4.000,108.4 +26.8,0.99,4.730,106.5 +26.8,0.99,5.260,103.3 +26.6,0.99,5.680,101.4 +26.7,0.99,6.590,101.8 +26.8,0.99,7.310,108.6 +24.4,0.99,16.970,155.3 +24.9,1.00,5.250,153.8 +24.9,0.99,1.820,357.2 +25.3,0.99,3.930,313.5 +24.7,0.99,7.710,3.3 +25.1,0.99,6.830,13.1 +26.6,0.99,3.610,19.0 +26.6,0.99,3.550,44.6 +26.5,0.99,2.190,71.4 +27.0,0.99,3.480,75.7 +27.6,0.99,4.110,112.4 +27.2,0.99,3.690,117.4 +27.3,0.99,4.330,125.9 +27.3,0.99,2.650,128.4 +27.6,0.99,2.560,122.8 +27.4,0.99,2.210,118.5 +27.4,0.99,3.130,126.1 +27.2,0.99,3.070,127.7 +27.3,0.99,3.170,117.4 +27.4,0.99,2.710,122.5 +27.4,0.99,2.960,118.7 +27.3,0.99,2.670,124.9 +27.1,0.99,2.930,113.5 +27.1,0.99,2.660,126.1 +27.1,0.99,2.090,115.2 +27.0,0.99,1.540,114.7 +27.0,0.99,1.250,80.5 +27.0,0.99,1.890,81.5 +26.3,0.99,2.760,50.7 +26.2,0.99,2.970,42.6 +26.4,0.99,3.500,43.2 +26.6,0.99,3.190,46.8 +26.8,0.99,2.140,62.4 +27.5,0.99,2.130,112.0 +27.8,0.99,2.690,160.4 +27.9,0.99,2.920,175.5 +28.1,0.99,3.770,176.5 +27.9,0.99,5.920,178.3 +27.8,0.99,4.440,190.5 +27.8,0.99,4.630,187.2 +27.7,0.99,4.590,192.9 +27.9,0.99,4.950,188.9 +28.0,0.99,3.900,192.7 +27.8,0.99,4.450,197.6 +27.7,0.99,3.750,196.8 +27.5,0.99,3.830,197.3 +27.4,0.99,3.730,206.6 +27.3,0.99,3.920,204.0 +27.2,0.99,3.610,224.1 +27.0,0.99,3.240,248.7 +26.4,0.99,4.040,271.9 +26.2,0.99,4.140,281.7 +26.3,0.99,4.400,276.3 +26.4,0.99,4.580,280.2 +26.6,0.99,3.500,288.1 +26.7,0.99,2.240,289.9 +26.9,0.99,0.800,270.1 +27.6,0.99,1.140,146.2 +27.9,0.99,3.190,178.9 +28.1,0.99,5.460,189.2 +28.1,0.99,6.390,187.0 +28.1,0.99,5.990,185.0 +28.0,0.99,6.680,192.0 +27.9,0.99,6.180,186.2 +27.9,0.99,5.860,188.4 +27.2,0.99,5.560,185.0 +27.2,0.99,5.620,186.2 +27.1,0.99,5.740,184.0 +27.3,0.99,5.180,184.8 +27.4,0.99,4.220,181.3 +27.1,0.99,4.200,195.0 +27.1,0.99,4.290,200.8 +27.0,0.99,3.450,221.3 +27.1,0.99,3.620,229.8 +27.0,0.99,2.870,250.9 +26.7,0.99,2.900,272.2 +26.3,0.99,2.790,278.9 +26.3,0.99,3.170,286.4 +26.3,0.99,2.420,282.7 +26.5,0.99,1.930,239.3 +26.9,0.99,1.280,219.5 +27.5,0.99,1.620,160.8 +27.7,0.99,2.510,162.1 +27.9,0.99,3.940,157.9 +27.9,0.99,5.110,153.3 +27.5,0.99,6.340,156.0 +27.8,0.99,5.700,158.6 +27.6,0.99,6.030,159.9 +27.6,0.99,6.490,172.2 +27.4,0.99,6.430,175.5 +27.4,0.99,5.550,175.1 +27.4,0.99,5.930,182.0 +27.4,0.99,5.450,180.8 +27.2,0.99,5.660,183.6 +27.1,0.99,4.810,192.7 +27.2,0.99,5.040,193.7 +27.2,0.99,3.810,200.8 +27.2,0.99,3.790,220.9 +27.2,0.99,4.480,233.1 +27.1,0.99,2.990,237.1 +26.7,0.99,2.320,269.5 +26.4,0.99,1.600,294.6 +26.3,0.99,1.970,293.8 +26.5,0.99,1.580,274.2 +26.6,0.99,1.870,224.0 +27.2,0.99,2.140,190.9 +27.4,0.99,2.440,177.4 +27.5,0.99,3.070,161.5 +27.6,0.99,4.130,150.1 +27.9,0.99,4.720,167.5 +27.7,0.99,4.740,168.7 +27.6,0.99,4.280,170.4 +27.6,0.99,4.730,178.6 +27.5,0.99,5.590,172.6 +27.5,0.99,4.670,173.0 +27.4,0.99,5.490,174.5 +27.4,0.99,5.420,164.5 +27.4,0.99,6.000,184.7 +27.5,0.99,5.450,196.0 +27.3,0.99,4.830,206.4 +27.3,0.99,3.820,206.2 +27.1,0.99,3.180,207.6 +26.8,0.99,4.800,259.6 +26.8,0.99,4.400,264.8 +26.8,0.99,3.960,275.7 +26.8,0.99,2.930,295.4 +26.8,0.99,1.900,300.7 +26.8,0.99,1.530,161.3 +27.3,0.99,1.750,210.5 +27.9,0.99,2.700,196.0 +28.0,0.99,5.050,181.0 +28.1,0.99,7.080,171.3 +28.0,0.99,9.400,194.0 +27.8,0.99,8.520,197.7 +28.1,0.99,6.810,194.5 +27.8,0.99,7.520,199.8 +27.7,0.99,7.660,203.1 +27.7,0.99,8.480,201.0 +27.6,0.99,7.910,208.8 +27.7,0.99,7.500,200.1 +27.8,0.99,6.920,207.7 +27.7,0.99,7.580,202.5 +27.5,0.99,7.440,197.5 +27.9,0.99,8.380,204.7 +27.4,0.99,7.510,201.3 +27.5,0.99,6.450,219.1 +27.6,0.99,5.720,222.9 +27.6,0.99,5.870,234.4 +27.3,0.99,4.510,252.5 +26.9,0.99,4.300,274.6 +27.0,0.99,3.600,280.9 +27.4,0.99,2.890,243.4 +27.5,0.99,1.000,229.3 +27.9,0.99,2.520,188.2 +28.2,0.99,3.590,211.8 +28.2,0.99,4.710,211.2 +28.3,0.99,5.650,201.7 +28.2,0.99,7.310,200.3 +28.3,0.99,7.280,203.2 +27.9,0.99,8.070,199.4 +27.3,0.99,8.270,205.6 +27.4,0.99,7.440,211.1 +27.3,0.99,6.460,213.2 +27.3,0.99,6.900,216.9 +27.4,0.99,6.620,225.3 +27.5,0.99,5.770,234.4 +27.4,0.99,5.970,236.1 +27.2,0.99,4.670,250.7 +27.4,0.99,5.070,268.2 +26.6,0.99,5.010,277.9 +26.3,0.99,4.760,284.0 +25.9,0.99,4.680,282.8 +25.8,0.99,4.570,293.9 +26.0,0.99,4.130,304.4 +26.3,0.99,2.090,310.8 +26.5,0.99,1.190,336.9 +26.9,0.99,0.520,170.2 +27.6,0.99,1.730,200.1 +28.0,0.99,3.230,188.4 +28.5,0.99,4.860,208.1 +28.6,0.99,6.100,207.2 +28.5,0.99,5.370,206.0 +28.2,0.99,5.850,196.3 +27.9,0.99,6.870,203.7 +27.9,0.99,4.960,204.4 +27.7,0.99,4.870,194.5 +27.6,0.99,4.500,204.1 +27.6,0.99,4.440,187.1 +27.5,0.99,4.020,172.5 +27.3,0.99,4.180,182.1 +27.3,0.99,2.830,192.5 +27.2,0.99,1.790,189.8 +27.2,0.99,1.260,180.8 +27.1,0.99,1.490,201.5 +27.0,0.99,0.350,220.9 +26.9,0.99,1.170,319.2 +26.8,0.99,2.020,9.6 +26.7,0.99,1.730,31.0 +26.7,0.99,1.540,331.3 +26.8,0.99,1.070,274.9 +24.6,0.99,7.910,214.3 +25.2,0.99,3.650,359.0 +26.0,0.99,4.060,77.7 +26.6,0.99,3.740,108.2 +27.0,0.99,3.850,102.2 +27.6,0.99,3.470,100.2 +27.2,0.99,3.900,132.7 +26.9,0.99,3.220,144.3 +27.2,0.99,3.150,92.7 +27.3,0.99,3.600,95.1 +27.3,0.99,4.020,105.0 +27.2,0.99,4.260,126.1 +27.2,0.99,4.210,133.7 +27.1,0.99,3.950,121.2 +27.3,0.99,2.940,131.5 +27.3,0.99,2.700,131.6 +27.2,0.99,2.450,125.1 +27.3,0.99,3.440,109.2 +27.4,0.99,2.400,119.7 +27.3,0.99,1.640,122.1 +25.8,0.99,4.330,83.2 +24.6,0.99,2.390,131.8 +25.2,0.99,0.830,152.9 +25.6,0.99,1.280,96.8 +26.1,0.99,2.520,68.8 +26.8,0.99,3.360,96.1 +27.4,0.99,4.500,101.6 +27.5,0.99,3.370,124.8 +28.1,0.99,4.280,130.8 +28.0,0.99,4.360,138.6 +27.9,0.99,3.540,122.6 +27.6,0.99,2.840,128.3 +27.6,0.99,3.430,121.0 +27.6,0.99,3.370,96.8 +27.6,0.99,3.240,114.3 +27.6,0.99,2.090,101.3 +27.7,0.99,2.530,125.4 +27.6,0.99,1.520,125.5 +27.6,0.99,2.100,105.8 +27.5,0.99,1.890,94.2 +27.4,0.99,2.360,88.1 +27.4,0.99,1.800,85.5 +27.5,0.99,2.430,69.3 +26.9,0.99,3.400,17.7 +26.2,0.99,5.510,16.9 +26.4,0.99,7.180,44.1 +27.2,0.99,7.000,48.8 +27.0,0.99,5.700,52.6 +27.6,0.99,4.050,85.0 +27.8,0.99,4.310,106.6 +27.8,0.99,4.540,103.3 +27.9,0.99,4.730,109.0 +27.9,0.99,5.210,125.4 +27.9,0.99,5.260,118.9 +28.0,0.99,4.800,126.1 +27.9,0.99,4.080,123.6 +27.9,0.99,4.350,123.7 +27.7,0.99,4.680,122.7 +27.8,0.99,5.160,117.5 +27.8,0.99,5.310,112.0 +27.8,0.99,4.420,118.3 +27.8,0.99,3.780,136.6 +27.7,0.99,4.400,125.3 +27.7,0.99,4.860,129.0 +27.8,0.99,3.470,129.7 +27.9,0.99,3.480,136.3 +27.7,0.99,2.870,107.0 +27.6,0.99,3.750,135.9 +27.8,0.99,2.300,87.4 +25.9,0.99,0.920,73.2 +25.6,0.99,1.250,176.3 +25.6,0.99,4.660,45.5 +25.8,0.99,2.370,167.1 +25.7,0.99,6.790,121.9 +25.9,0.99,7.180,125.2 +26.1,0.99,9.480,138.8 +26.1,0.99,7.300,193.9 +26.0,0.99,5.760,206.4 +26.4,0.99,4.520,213.8 +26.5,0.99,0.270,248.6 +26.5,0.99,2.470,58.4 +24.9,0.99,12.410,82.3 +25.5,0.99,4.510,133.6 +26.0,0.99,5.220,119.0 +26.5,0.99,5.050,115.9 +26.8,0.99,5.910,116.7 +27.0,0.99,6.050,148.5 +27.2,0.99,5.120,139.0 +27.1,0.99,4.220,140.2 +27.1,0.99,2.390,132.3 +26.6,0.99,2.290,67.2 +24.5,0.99,5.030,194.3 +25.7,0.99,3.070,185.1 +25.6,0.99,2.740,233.2 +24.1,0.99,12.910,158.7 +23.1,0.99,4.730,152.9 +23.7,0.99,3.200,35.9 +24.5,0.99,3.310,24.8 +25.1,0.99,4.260,90.7 +25.6,0.99,4.600,155.9 +25.7,0.99,3.900,134.8 +26.2,0.99,4.330,139.2 +26.4,0.99,5.450,142.1 +26.4,0.99,5.180,129.0 +26.9,0.99,7.510,124.0 +26.9,0.99,5.520,124.2 +26.7,0.99,5.050,119.3 +26.7,0.99,6.140,124.5 +27.0,0.99,6.890,125.9 +26.8,0.99,5.410,123.1 +27.0,0.99,5.510,125.4 +27.1,0.99,6.350,118.7 +27.2,0.99,6.590,119.6 +27.1,0.99,6.670,114.5 +27.1,0.99,6.470,107.8 +27.1,0.99,5.740,98.9 +27.4,0.99,7.560,98.5 +25.2,0.99,9.480,126.8 +24.6,0.99,2.040,221.0 +23.8,0.99,8.190,148.7 +23.3,0.99,4.690,112.7 +24.7,0.99,9.900,90.4 +25.3,0.99,7.890,109.2 +26.6,0.99,8.700,117.9 +24.8,0.99,10.140,155.8 +25.2,0.99,8.710,149.5 +27.1,0.99,7.170,120.0 +26.1,0.99,9.790,129.0 +25.6,0.99,12.200,124.7 +25.9,0.99,9.540,126.3 +26.1,0.99,9.250,128.3 +26.6,0.99,7.650,130.4 +26.5,0.99,6.610,133.9 +26.5,0.99,6.790,126.1 +24.7,0.99,10.850,125.0 +25.4,0.99,7.740,111.1 +25.2,0.99,6.660,98.3 +25.1,0.99,9.840,103.8 +24.4,0.99,10.050,116.7 +24.5,0.99,6.410,84.7 +24.9,0.99,5.770,92.9 +25.4,0.99,5.250,82.7 +26.0,0.99,4.950,92.5 +26.2,0.99,5.340,91.3 +25.1,0.99,13.230,136.3 +25.6,0.99,9.830,133.2 +26.7,0.99,7.660,103.0 +26.4,0.99,9.130,103.6 +27.6,0.99,8.700,113.2 +26.3,0.99,9.130,137.6 +27.1,0.99,4.470,111.5 +27.7,0.99,6.840,113.1 +28.0,0.99,6.840,104.7 +28.2,0.99,7.630,109.4 +28.0,0.99,7.660,107.8 +28.0,0.99,7.860,109.4 +28.1,0.99,7.850,110.5 +27.9,0.99,8.020,109.4 +28.0,0.99,7.520,114.6 +27.8,0.99,7.630,106.7 +27.9,0.99,7.010,108.0 +27.8,0.99,6.110,102.2 +27.6,0.99,5.850,100.6 +27.6,0.99,6.080,89.8 +27.3,0.99,7.910,77.7 +26.5,0.99,9.070,97.3 +25.1,0.99,8.190,107.8 +25.2,0.99,5.500,97.8 +23.6,0.99,12.590,101.6 +25.5,0.99,6.290,64.2 +25.1,0.99,8.990,46.8 +26.1,0.99,5.700,63.4 +28.0,0.99,7.050,120.0 +27.8,0.99,7.900,123.1 +28.5,0.99,7.160,117.6 +28.4,0.99,7.100,115.0 +28.6,0.99,7.270,108.5 +28.8,0.99,7.210,102.9 +28.3,0.99,6.520,113.5 +28.2,0.99,5.570,111.0 +28.0,0.99,5.110,114.4 +27.9,0.99,5.460,97.8 +27.8,0.99,5.090,97.1 +27.6,0.99,4.760,77.8 +27.6,0.99,5.620,86.9 +27.4,0.99,7.480,59.0 +27.0,0.99,7.420,58.9 +26.6,0.99,7.450,45.8 +26.2,0.99,6.300,25.5 +26.4,0.99,7.830,50.0 +26.4,0.99,7.570,53.8 +26.9,0.99,8.650,56.7 +27.0,0.99,7.380,60.7 +27.2,0.99,7.100,76.0 +27.3,0.99,6.610,79.8 +27.7,0.99,6.590,93.3 +27.7,0.99,6.330,110.2 +27.7,0.99,6.370,109.6 +27.6,0.99,6.410,111.7 +27.4,0.99,6.280,111.4 +27.5,0.99,5.530,113.8 +27.5,0.99,5.080,114.4 +27.5,0.99,5.100,102.4 +27.5,0.99,5.470,85.7 +27.5,0.99,5.810,88.8 +27.3,0.99,4.280,85.7 +27.3,0.99,4.390,69.1 +27.3,0.99,4.200,81.1 +27.2,0.99,4.570,68.0 +26.5,0.99,4.160,55.8 +26.1,0.99,5.090,45.7 +26.0,0.99,5.960,41.7 +25.8,0.99,5.830,43.0 +25.7,0.99,6.510,34.6 +25.9,0.99,6.190,39.6 +26.3,0.99,5.810,47.5 +26.6,0.99,5.910,64.0 +27.2,0.99,4.950,81.7 +27.4,0.99,5.040,92.2 +27.4,0.99,3.900,109.3 +27.5,0.99,3.930,121.7 +27.9,0.99,3.870,117.9 +27.6,0.99,4.510,118.5 +27.8,0.99,4.250,117.2 +28.0,0.99,5.240,120.8 +27.8,0.99,5.410,139.2 +28.0,0.99,6.640,133.6 +28.0,0.99,5.650,126.7 +28.1,0.99,4.830,110.6 +27.8,0.99,5.100,96.5 +27.8,0.99,4.620,90.1 +27.7,0.99,5.080,86.5 +27.6,0.99,5.600,88.6 +27.3,0.99,5.220,84.6 +27.3,0.99,5.890,90.8 +27.3,0.99,6.120,85.9 +27.3,0.99,6.630,87.7 +25.5,0.99,10.770,48.5 +26.4,0.99,9.680,67.5 +26.5,0.99,8.600,83.0 +26.2,0.99,6.150,66.0 +27.3,0.99,7.280,86.1 +27.3,0.99,6.960,92.8 +27.6,0.99,7.560,101.4 +27.8,0.99,8.260,115.2 +28.1,0.99,7.370,114.6 +28.5,0.99,8.220,107.2 +28.3,0.99,7.890,108.2 +28.2,0.99,7.630,105.4 +28.2,0.99,8.780,109.2 +27.9,0.99,8.980,110.8 +27.9,0.99,8.610,107.0 +27.9,0.99,8.850,104.7 +27.8,0.99,7.960,113.0 +27.8,0.99,7.750,108.1 +27.5,0.99,7.430,106.9 +27.6,0.99,7.880,108.4 +26.8,0.99,10.450,114.2 +26.5,0.99,11.160,113.1 +26.7,0.99,6.370,121.0 +27.4,0.99,6.420,117.0 +26.4,0.99,7.160,139.0 +27.8,0.99,7.310,120.2 +28.0,0.99,6.660,122.6 +28.2,0.99,7.420,117.8 +27.9,0.99,7.020,123.3 +27.9,0.99,6.560,117.3 +27.8,0.99,5.710,115.2 +27.6,0.99,6.520,102.1 +27.7,0.99,7.060,85.5 +27.7,0.99,7.300,92.8 +27.6,0.99,8.760,99.7 +27.7,0.99,8.180,97.3 +27.8,0.99,8.880,103.7 +28.0,0.99,8.880,103.0 +27.7,0.99,9.040,103.4 +27.7,0.99,9.630,111.5 +27.7,0.99,8.760,117.0 +27.8,0.99,8.160,110.4 +27.7,0.99,9.740,110.1 +27.8,0.99,7.820,120.3 +27.6,0.99,7.610,113.4 +27.7,0.99,6.690,103.6 +27.8,0.99,6.750,93.0 +27.4,0.99,6.040,97.5 +27.7,0.99,6.880,88.7 +27.6,0.99,6.440,92.2 +27.6,0.99,6.640,98.9 +27.5,0.99,6.500,87.7 +27.7,0.99,7.070,93.6 +27.6,0.99,6.370,101.1 +27.7,0.99,6.550,116.0 +27.9,0.99,6.910,117.2 +27.7,0.99,6.900,114.8 +28.0,0.99,8.310,114.5 +27.9,0.99,4.760,105.0 +27.8,0.99,5.120,93.7 +27.9,0.99,6.630,89.0 +26.6,0.99,8.380,87.9 +27.5,0.99,7.520,109.2 +27.6,0.99,7.710,121.5 +27.5,0.99,7.630,126.5 +27.4,0.99,6.890,114.1 +27.3,0.99,6.740,112.1 +27.4,0.99,6.580,113.1 +27.3,0.99,7.010,108.9 +27.4,0.99,7.060,110.6 +27.4,0.99,6.580,116.1 +27.3,0.99,5.020,105.0 +27.4,0.99,6.440,106.0 +27.6,0.99,5.290,93.9 +27.1,0.99,8.990,94.1 +25.7,0.99,6.210,67.7 +25.8,0.99,13.010,80.5 +26.2,0.99,5.820,90.7 +27.3,0.99,4.020,116.8 +27.4,0.99,5.970,105.3 +27.7,0.99,7.370,128.3 +27.7,0.99,7.100,123.7 +27.7,0.99,5.980,122.7 +27.7,0.99,6.650,107.7 +27.5,0.99,6.810,104.7 +27.6,0.99,6.800,95.1 +27.5,0.99,6.090,97.0 +27.5,0.99,6.610,104.6 +27.5,0.99,6.140,105.0 +27.3,0.99,6.340,97.6 +27.4,0.99,5.660,105.0 +27.4,0.99,5.450,93.0 +27.2,0.99,3.900,91.7 +27.2,0.99,5.410,80.9 +26.3,0.99,10.200,92.2 +26.9,0.99,9.920,92.7 +27.1,0.99,10.000,92.8 +26.8,0.99,9.630,96.7 +26.6,0.99,8.060,91.1 +27.2,0.99,6.560,87.3 +27.7,0.99,8.160,103.3 +27.6,0.99,8.880,108.6 +27.5,0.99,7.600,112.2 +28.1,0.99,8.750,111.2 +27.7,0.99,8.590,105.8 +27.5,0.99,8.810,106.8 +27.6,0.99,8.270,105.5 +27.7,0.99,8.530,108.9 +27.7,0.99,7.940,115.5 +27.4,0.99,8.430,112.4 +27.6,0.99,8.410,113.1 +27.5,0.99,9.780,118.9 +27.6,0.99,8.990,122.0 +27.5,0.99,8.060,125.5 +27.3,0.99,7.020,119.8 +27.4,0.99,7.410,120.1 +27.4,0.99,8.420,119.7 +27.4,0.99,7.530,126.0 +27.3,0.99,8.160,128.0 +27.6,0.99,6.320,126.1 +27.4,0.99,6.950,127.7 +27.6,0.99,6.870,125.9 +27.5,0.99,7.440,123.5 +27.5,0.99,7.240,117.5 +27.7,0.99,8.230,128.0 +27.7,0.99,7.690,134.5 +27.6,0.99,9.570,136.3 +27.2,0.99,8.510,143.3 +27.6,0.99,10.160,149.4 +27.7,0.99,10.170,139.0 +28.2,0.99,10.250,156.4 +28.1,0.99,10.970,152.3 +27.7,0.99,10.700,157.3 +27.5,0.99,10.250,148.1 +27.6,0.99,8.990,157.8 +27.7,0.99,10.140,156.4 +27.3,0.99,9.930,162.7 +27.3,0.99,8.970,165.4 +27.5,0.99,8.090,169.9 +27.9,0.99,9.010,166.6 +27.8,0.99,8.470,169.9 +27.6,0.99,8.800,167.2 +28.1,0.99,8.980,162.7 +27.9,0.99,8.660,164.5 +27.8,0.99,9.230,159.4 +27.7,0.99,9.900,158.2 +27.6,0.99,7.850,162.6 +27.8,0.99,7.960,163.8 +27.9,0.99,8.430,164.6 +27.7,0.99,8.700,159.2 +27.7,0.99,7.990,159.8 +27.7,0.99,7.940,162.0 +27.6,0.98,8.900,163.3 +28.3,0.98,9.660,161.9 +28.1,0.98,8.270,165.1 +28.5,0.98,9.350,164.6 +27.6,0.98,8.490,160.3 +28.0,0.98,6.830,161.2 +28.0,0.98,7.090,168.3 +27.8,0.98,6.820,169.3 +27.5,0.98,6.660,179.3 +27.8,0.98,6.570,180.2 +27.5,0.98,6.080,181.0 +27.5,0.98,5.940,182.3 +27.3,0.98,5.570,188.2 +26.9,0.98,3.880,217.4 +24.1,0.98,9.940,9.2 +24.3,0.98,8.450,3.9 +23.9,0.98,9.170,11.8 +23.8,0.98,8.140,21.6 +23.6,0.98,8.830,18.9 +22.6,0.98,11.770,22.9 +22.6,0.98,12.390,24.0 +22.5,0.98,12.590,22.3 +22.5,0.98,11.490,25.4 +22.2,0.98,11.350,10.8 +21.9,0.98,12.450,34.1 +21.8,0.98,13.620,25.4 +21.7,0.98,12.820,28.2 +21.8,0.98,13.310,31.3 +22.1,0.98,14.190,36.6 +22.5,0.98,14.260,35.4 +22.3,0.98,13.890,36.3 +22.9,0.98,13.840,43.9 +22.8,0.98,13.630,43.7 +22.7,0.98,13.250,41.9 +22.6,0.98,12.940,41.6 +22.8,0.98,13.800,45.7 +22.6,0.98,13.230,43.8 +22.2,0.98,12.570,40.6 +21.9,0.98,12.410,41.9 +21.7,0.98,11.850,39.0 +21.4,0.98,11.550,39.7 +21.4,0.98,11.210,36.3 +21.5,0.98,10.630,35.5 +22.3,0.98,10.640,35.2 +23.3,0.98,10.630,40.6 +24.2,0.98,10.210,39.5 +25.0,0.98,9.580,46.8 +25.5,0.98,9.830,52.1 +25.8,0.98,9.480,48.8 +26.1,0.98,9.640,46.2 +26.1,0.98,10.430,46.4 +26.2,0.98,10.990,55.6 +25.9,0.98,12.130,67.9 +25.0,0.98,11.420,69.7 +25.0,0.98,11.390,66.7 +25.3,0.98,11.410,72.0 +25.0,0.98,10.990,65.7 +24.8,0.98,10.730,62.0 +24.9,0.98,11.020,70.2 +24.7,0.98,12.690,76.3 +25.0,0.98,7.910,78.3 +24.9,0.98,8.660,83.0 +25.7,0.98,8.740,77.5 +25.3,0.98,10.260,67.5 +26.1,0.98,9.520,89.5 +24.3,0.98,8.910,46.1 +26.3,0.98,8.790,82.5 +26.1,0.98,8.290,78.0 +26.3,0.98,9.310,71.9 +26.2,0.98,9.490,72.0 +26.1,0.98,8.960,70.8 +25.8,0.98,9.430,81.9 +26.3,0.98,7.260,73.6 +26.9,0.98,7.910,86.2 +26.6,0.98,8.580,86.3 +26.8,0.98,6.740,84.1 +26.9,0.98,6.800,87.4 +27.1,0.98,6.040,90.7 +27.1,0.98,6.750,81.5 +27.3,0.98,6.520,83.2 +27.2,0.98,6.070,76.2 +26.9,0.98,6.490,62.6 +26.4,0.98,6.700,88.2 +26.5,0.98,4.140,75.6 +26.5,0.98,5.190,47.4 +26.3,0.98,6.500,33.1 +25.4,0.98,8.260,22.8 +25.8,0.98,7.790,23.5 +25.3,0.99,7.420,22.0 +25.9,0.99,6.870,13.2 +27.0,0.99,7.030,17.4 +27.6,0.99,3.520,34.0 +27.8,0.99,3.000,346.8 +27.7,0.99,1.740,45.1 +28.1,0.98,2.230,56.5 +28.7,0.98,3.570,79.4 +28.6,0.98,3.270,69.1 +28.3,0.98,3.140,67.8 +28.1,0.98,2.830,77.4 +27.9,0.99,3.810,54.0 +27.6,0.99,2.990,37.2 +27.6,0.99,3.930,27.9 +27.3,0.99,4.200,36.5 +27.4,0.99,4.150,44.6 +26.9,0.99,3.650,48.4 +27.4,0.99,3.200,41.6 +27.5,0.99,3.830,29.1 +27.4,0.99,4.510,18.4 +27.0,0.99,4.220,8.5 +26.5,0.99,3.700,9.8 +26.1,0.99,4.070,1.7 +25.7,0.99,3.510,1.9 +25.8,0.99,3.050,355.3 +24.9,0.99,3.570,355.4 +25.4,0.99,2.750,356.6 +26.5,0.99,3.100,344.7 +26.9,0.99,1.790,339.8 +27.8,0.99,1.040,294.3 +28.5,0.99,0.980,207.7 +28.6,0.99,3.390,170.2 +28.8,0.98,3.800,162.5 +27.6,0.99,6.590,163.7 +27.4,0.98,5.590,171.8 +26.9,0.99,5.650,165.4 +26.9,0.99,5.210,176.1 +26.8,0.99,4.250,186.2 +26.8,0.99,5.090,207.7 +26.7,0.99,3.750,216.0 +26.5,0.99,3.770,217.9 +26.4,0.99,3.870,213.4 +26.3,0.99,3.180,220.8 +26.4,0.99,3.780,216.0 +26.3,0.99,2.890,197.9 +26.4,0.99,2.880,197.9 +25.9,0.99,1.730,197.2 +25.8,0.99,1.320,200.2 +26.0,0.99,1.140,153.1 +25.9,0.99,1.370,113.2 +25.8,0.99,2.210,107.8 +25.6,0.99,2.480,76.7 +26.8,0.99,3.400,111.9 +27.1,0.99,4.380,114.8 +27.2,0.99,4.920,118.0 +27.2,0.99,6.100,127.5 +27.2,0.99,6.530,128.9 +27.2,0.99,6.850,135.3 +27.0,0.99,6.970,142.9 +27.0,0.99,6.770,144.5 +27.2,0.99,7.290,144.7 +26.9,0.99,7.470,149.4 +27.1,0.99,7.510,152.3 +27.1,0.99,7.950,155.7 +27.1,0.99,7.800,163.5 +26.9,0.99,7.840,163.8 +27.1,0.99,7.760,163.3 +27.0,0.99,6.970,165.2 +26.8,0.99,6.410,159.7 +26.7,0.99,6.400,156.8 +26.6,0.99,5.670,146.0 +26.6,0.99,5.990,142.5 +26.8,0.99,5.920,135.4 +26.8,0.99,6.100,135.4 +26.8,0.99,6.490,127.4 +26.9,0.99,6.690,129.9 +27.0,0.99,6.720,125.8 +27.1,0.99,6.820,126.4 +27.1,0.99,7.040,125.8 +27.1,0.99,7.510,119.3 +26.9,0.99,8.400,117.7 +27.1,0.99,8.600,118.1 +26.7,0.99,8.950,122.9 +26.7,0.99,9.360,127.0 +26.7,0.99,9.180,124.7 +26.8,0.99,9.690,129.6 +26.6,0.99,10.080,135.7 +26.7,0.99,9.310,134.9 +26.5,0.99,9.960,143.0 +26.6,0.99,9.800,142.5 +26.5,0.99,10.200,143.6 +26.6,0.99,9.830,148.1 +26.5,0.99,9.360,144.7 +26.5,0.99,9.350,145.7 +26.7,0.99,8.980,136.7 +26.7,0.99,8.850,141.4 +26.9,0.99,9.540,134.8 +26.9,0.99,8.950,139.1 +26.9,0.99,9.070,139.0 +27.0,0.99,8.700,139.0 +27.2,0.99,9.250,135.3 +26.4,0.99,10.730,142.1 +26.4,0.99,10.510,151.9 +26.6,0.99,8.360,148.3 +26.4,0.99,7.940,148.9 +26.9,0.99,7.770,151.0 +26.6,0.99,7.750,151.4 +26.7,0.99,7.600,148.2 +26.7,0.99,7.720,151.7 +26.5,0.99,7.660,151.1 +26.4,0.99,7.370,155.7 +26.7,0.99,7.460,158.9 +26.6,0.99,8.610,161.3 +26.6,0.99,7.650,160.7 +26.6,0.99,6.940,166.7 +26.6,0.99,7.250,173.8 +26.6,0.99,7.250,185.0 +26.4,0.99,6.750,175.2 +26.4,0.99,6.070,184.1 +26.5,0.99,6.540,194.5 +26.4,0.99,5.330,181.3 +26.4,0.99,6.870,200.6 +24.5,0.99,8.210,186.2 +24.5,0.99,5.100,215.5 +25.4,0.99,5.520,196.3 +25.7,0.99,4.830,184.4 +26.3,0.99,5.140,179.1 +25.9,0.99,6.370,169.3 +25.9,0.99,5.780,159.8 +26.0,0.99,6.630,165.6 +25.9,0.99,4.640,167.0 +26.0,0.99,6.070,168.9 +26.1,0.99,5.200,177.2 +26.3,0.99,6.120,181.3 +26.4,0.99,7.170,164.4 +26.4,0.99,9.120,170.9 +26.5,0.99,8.570,181.2 +26.5,0.99,8.570,171.3 +26.5,0.99,8.160,188.9 +23.9,0.99,7.340,150.2 +23.8,0.99,11.170,167.5 +24.5,0.99,10.270,170.1 +24.4,0.99,10.100,166.0 +24.0,0.99,7.520,213.1 +24.4,0.99,6.720,210.5 +24.2,0.99,7.580,237.2 +24.1,0.99,5.500,179.2 +23.6,0.99,5.150,142.7 +25.0,0.99,5.210,210.8 +25.7,0.99,6.120,218.3 +25.7,0.99,5.180,195.5 +25.9,0.99,5.530,183.7 +26.2,0.99,5.180,186.3 +26.3,0.99,4.460,160.7 +26.2,0.99,4.410,164.2 +26.1,0.99,6.320,153.5 +26.1,0.99,7.740,156.4 +26.2,0.99,8.490,165.8 +26.3,0.99,8.810,173.3 +26.7,0.99,8.550,182.1 +26.4,0.99,8.800,188.6 +26.6,0.99,8.390,185.2 +26.7,0.99,9.020,178.0 +26.6,0.99,8.920,168.6 +26.6,0.99,8.310,189.5 +26.1,0.99,9.120,203.2 +26.7,0.99,5.450,170.0 +26.7,0.99,4.720,185.4 +26.3,0.99,7.780,168.6 +26.2,0.99,4.480,177.8 +26.1,0.99,2.370,197.9 +26.4,0.99,3.010,193.3 +26.1,0.99,9.050,159.8 +25.5,0.99,10.730,163.5 +25.5,0.99,6.890,166.6 +25.8,0.99,6.470,159.1 +26.1,0.99,7.410,154.2 +26.5,0.99,5.710,149.1 +26.1,0.99,5.190,140.3 +26.5,0.99,7.410,134.7 +26.0,0.99,7.210,125.3 +26.4,0.99,8.570,140.1 +26.5,0.99,8.440,142.5 +26.4,0.99,9.750,134.8 +26.6,0.99,8.340,145.6 +26.5,0.99,8.820,146.5 +26.6,0.99,8.020,155.0 +26.7,0.99,7.880,160.1 +26.4,0.99,7.640,159.8 +26.8,0.99,6.360,171.8 +26.7,0.99,5.480,171.8 +26.8,0.99,4.980,169.7 +26.7,0.99,3.550,144.6 +26.4,0.99,3.140,129.6 +25.7,0.99,2.800,101.9 +26.1,0.99,5.520,106.4 +26.0,0.99,6.940,106.1 +25.6,0.99,5.610,121.6 +25.9,0.99,3.890,144.2 +25.9,0.99,3.980,137.4 +26.2,0.99,5.220,123.0 +26.0,0.99,6.330,117.8 +26.0,0.99,7.490,116.3 +26.1,0.99,6.880,126.9 +26.3,0.99,7.890,130.4 +26.4,0.99,7.750,144.4 +26.4,0.99,7.820,145.7 +26.4,0.99,7.570,148.1 +26.5,0.99,6.450,154.4 +27.1,0.99,7.190,162.4 +26.7,0.99,7.130,166.1 +26.6,0.99,6.920,172.2 +26.4,0.99,6.000,171.3 +26.5,0.99,5.870,168.4 +26.3,0.99,6.080,163.1 +26.3,0.99,4.800,165.4 +26.0,0.99,5.130,161.8 +26.1,0.99,3.820,159.5 +26.1,0.99,3.710,153.5 +26.3,0.99,4.000,142.1 +26.6,0.99,3.920,143.8 +26.7,0.99,5.320,136.4 +26.8,0.99,5.140,145.3 +26.7,0.99,5.680,146.5 +26.3,0.99,5.830,140.3 +26.3,0.99,5.730,141.6 +26.1,0.99,5.820,140.9 +26.1,0.99,5.490,143.6 +26.0,0.99,5.930,144.2 +26.1,0.99,3.720,161.3 +25.9,0.99,4.830,135.9 +26.0,0.99,5.460,139.8 +26.1,0.99,5.130,143.0 +26.1,0.99,5.210,147.0 +26.1,0.99,4.720,160.9 +26.1,0.99,3.560,163.4 +26.4,0.99,5.650,154.7 +26.3,0.99,4.810,157.3 +26.3,0.99,4.090,158.8 +26.2,0.99,3.460,158.6 +26.2,0.99,3.240,150.2 +26.1,0.99,2.850,152.0 +26.5,0.99,2.330,148.8 +26.5,0.99,2.550,160.3 +26.4,0.99,6.930,135.0 +27.0,0.99,8.440,132.8 +27.0,0.99,8.710,137.5 +27.2,0.99,8.970,132.6 +27.0,0.99,8.820,130.2 +26.9,0.99,8.680,127.0 +26.8,0.99,8.690,122.5 +26.7,0.99,9.070,128.7 +26.6,0.99,9.190,128.3 +26.8,0.99,9.070,129.0 +26.7,0.99,9.120,121.0 +26.7,0.99,8.310,123.8 +26.8,0.99,7.530,124.7 +26.7,0.99,6.840,125.0 +26.6,0.99,5.940,122.2 +26.4,0.99,5.330,122.9 +26.6,0.99,4.510,128.8 +26.4,0.99,3.870,115.2 +26.3,0.99,3.510,102.0 +26.2,0.99,3.690,89.1 +26.2,0.99,3.990,82.6 +26.2,0.99,2.910,71.7 +26.0,0.99,3.170,58.1 +26.2,0.99,4.510,109.1 +26.6,0.99,4.250,103.0 +26.7,0.99,4.370,101.8 +26.6,0.99,3.730,100.8 +26.7,0.99,3.750,105.9 +26.6,0.99,1.850,110.5 +26.8,0.99,0.650,86.3 +27.4,0.99,1.820,4.2 +26.1,0.99,2.720,357.5 +26.0,0.99,5.400,345.9 +25.6,0.99,7.040,6.9 +25.1,0.99,7.110,11.5 +24.3,0.99,10.600,355.2 +22.0,0.99,11.500,346.9 +20.6,0.99,11.220,349.6 +20.1,0.99,11.790,350.4 +19.7,0.99,13.130,350.9 +19.1,0.99,13.850,348.5 +19.0,0.99,14.110,354.1 +18.5,0.99,12.440,2.7 +18.3,0.99,13.470,355.0 +18.3,0.99,12.710,352.4 +18.8,0.99,9.900,360.0 +20.1,0.99,9.430,353.1 +19.9,0.99,9.840,341.5 +21.3,0.99,10.370,354.5 +22.2,0.99,8.850,344.2 +22.4,0.99,10.120,340.4 +23.0,0.99,11.810,339.0 +23.2,0.99,10.630,340.8 +23.4,0.99,10.580,340.0 +22.9,0.99,10.240,343.1 +22.7,0.99,9.540,342.8 +22.2,0.99,10.910,348.4 +21.8,0.99,11.520,348.9 +21.2,0.99,10.460,352.5 +20.8,0.99,10.280,350.7 +20.6,0.99,8.630,356.1 +20.1,0.99,8.790,351.9 +19.3,0.99,9.320,359.3 +19.0,0.99,8.740,6.5 +18.9,0.99,8.460,3.8 +18.8,0.99,8.600,9.4 +18.6,0.99,8.330,8.4 +18.2,0.99,7.070,12.6 +18.4,0.99,6.790,8.4 +18.8,0.99,5.950,6.3 +19.3,0.99,5.160,357.1 +20.0,0.99,4.330,347.0 +21.1,0.99,4.870,334.4 +22.4,0.99,5.010,337.5 +23.4,0.99,5.600,348.4 +23.6,0.99,6.700,337.9 +23.8,0.99,6.740,336.7 +24.0,0.99,6.780,348.1 +23.7,0.99,7.060,9.3 +23.4,0.99,6.660,18.6 +23.3,0.99,5.830,21.6 +23.2,0.99,5.110,21.6 +23.0,0.99,4.830,30.7 +22.9,0.99,4.820,29.0 +22.6,0.99,5.190,26.7 +21.2,0.99,4.320,24.0 +20.7,0.99,4.410,22.1 +20.4,0.99,5.070,27.5 +20.3,0.99,4.950,33.5 +21.1,0.99,4.570,43.4 +21.7,0.99,4.360,39.4 +22.0,0.99,4.360,61.1 +21.8,0.99,4.560,57.7 +21.6,0.99,4.730,59.7 +21.4,0.99,4.640,59.8 +21.3,0.99,4.120,59.6 +21.7,0.99,2.900,61.1 +22.2,0.99,0.950,52.0 +22.5,0.99,0.300,115.2 +22.7,0.99,0.890,135.8 +22.7,0.99,0.980,132.4 +22.8,0.99,0.970,126.1 +22.8,0.99,1.290,114.0 +22.7,0.99,1.780,115.5 +22.6,0.99,2.360,101.3 +22.6,0.99,2.930,92.8 +22.6,0.99,2.840,89.1 +22.7,0.99,3.400,84.2 +22.6,0.99,3.550,98.9 +22.6,0.99,3.070,116.3 +22.5,0.99,2.260,107.2 +22.5,0.99,2.160,112.4 +22.6,0.99,1.480,94.1 +21.5,0.99,3.240,24.6 +21.8,0.99,1.870,17.3 +21.5,0.99,1.650,15.4 +21.9,0.99,1.600,13.7 +22.1,0.99,1.300,345.2 +21.9,0.99,2.730,358.8 +22.2,0.99,2.720,0.4 +22.6,0.99,2.490,39.8 +22.9,0.99,1.630,52.2 +23.1,0.99,1.530,88.0 +23.4,0.99,2.440,105.1 +23.4,0.99,3.720,101.5 +23.5,0.99,5.910,111.9 +23.4,0.99,5.260,115.0 +23.3,0.99,6.180,111.2 +23.4,0.99,6.100,117.8 +23.6,0.99,6.950,109.7 +23.7,0.99,5.710,135.0 +23.6,0.99,6.160,134.8 +23.6,0.99,5.310,134.7 +23.6,0.99,5.810,141.5 +23.9,0.99,5.510,149.5 +23.9,0.99,4.380,172.5 +23.6,0.99,3.360,129.8 +24.1,0.99,3.550,187.2 +23.9,0.99,1.720,198.3 +23.9,0.99,2.920,187.7 +24.1,0.99,2.630,168.7 +24.0,0.99,1.590,164.5 +24.0,0.99,1.550,129.3 +24.1,0.99,2.030,108.3 +24.4,0.99,3.040,111.8 +24.4,0.99,3.110,118.2 +24.6,0.99,3.940,129.0 +24.4,0.99,4.760,123.6 +24.6,0.99,5.320,131.8 +24.5,0.99,6.460,136.3 +24.5,0.99,6.750,137.9 +24.6,0.99,6.050,145.4 +24.6,0.99,6.070,148.5 +24.8,0.99,5.170,156.1 +24.6,0.99,5.710,157.2 +24.5,0.99,5.810,161.9 +24.3,0.99,5.390,161.9 +24.4,0.99,5.210,165.8 +24.6,0.99,5.550,184.6 +24.8,0.99,6.290,175.1 +24.9,0.99,6.930,179.3 +24.9,0.99,6.370,175.8 +24.9,0.99,5.710,167.7 +24.8,0.99,5.080,160.7 +25.1,0.99,5.630,161.8 +25.6,0.99,6.160,174.7 +25.5,0.99,6.840,170.0 +25.4,0.99,7.200,155.1 +25.6,0.99,8.020,161.1 +25.3,0.99,6.650,155.6 +25.4,0.99,6.660,148.8 +25.4,0.99,7.440,140.1 +25.4,0.99,7.500,144.6 +25.3,0.99,7.850,142.1 +25.2,0.99,9.510,149.3 +25.2,0.99,9.030,152.2 +25.2,0.99,8.690,149.2 +25.3,0.99,10.010,151.9 +25.4,0.99,9.800,150.7 +25.5,0.99,9.210,164.3 +25.3,0.99,8.540,164.8 +25.3,0.99,8.900,163.4 +25.4,0.99,8.310,167.1 +25.6,0.99,7.900,169.0 +25.8,0.99,7.150,175.2 +25.9,0.99,5.890,157.5 +25.8,0.99,7.140,161.3 +24.8,0.99,8.270,194.7 +24.2,0.99,5.870,154.8 +25.4,0.99,6.570,189.4 +24.1,0.99,9.960,175.0 +24.7,0.99,4.120,194.0 +25.7,0.99,3.780,145.7 +24.8,0.99,7.320,156.1 +24.9,0.99,6.550,178.2 +25.3,0.99,6.150,179.4 +25.4,0.99,6.990,172.0 +25.5,0.99,6.080,167.8 +25.3,0.99,5.480,174.8 +25.1,0.99,5.670,154.3 +25.1,0.99,6.420,137.7 +25.2,0.99,6.590,126.2 +25.1,0.99,5.940,125.0 +25.2,0.99,5.910,133.5 +25.2,0.99,5.740,156.6 +25.2,0.99,5.300,170.6 +25.2,0.99,4.300,168.7 +25.3,0.99,3.610,178.9 +25.3,0.99,3.010,176.6 +25.3,0.99,2.170,174.7 +25.2,0.99,2.110,128.9 +25.2,0.99,2.400,112.5 +25.0,1.00,2.190,88.1 +25.0,1.00,2.340,84.7 +24.6,1.00,3.280,53.3 +25.3,0.99,3.310,99.7 +25.8,0.99,4.630,122.1 +25.7,0.99,5.610,120.6 +25.6,0.99,5.690,115.2 +25.5,0.99,5.780,119.8 +25.5,0.99,6.050,124.8 +25.5,0.99,6.180,120.1 +25.3,0.99,5.940,121.1 +25.3,0.99,5.310,123.8 +25.6,0.99,5.810,126.4 +25.4,0.99,5.490,131.1 +25.4,0.99,5.130,130.7 +25.4,0.99,3.610,133.4 +25.2,0.99,4.700,120.3 +25.4,0.99,4.290,142.5 +25.2,0.99,4.200,118.7 +25.3,0.99,5.460,137.0 +25.2,0.99,5.820,136.8 +25.3,0.99,5.550,145.3 +25.5,0.99,5.530,137.9 +25.2,0.99,5.540,136.4 +25.2,0.99,5.010,135.2 +25.3,0.99,4.870,138.1 +25.1,0.99,4.570,130.6 +25.2,0.99,4.790,133.0 +24.9,0.99,3.610,136.1 +25.2,0.99,5.100,138.0 +25.2,0.99,4.440,131.4 +25.3,0.99,5.820,147.1 +25.2,0.99,5.920,139.5 +25.1,0.99,6.720,138.2 +25.3,0.99,6.310,138.2 +25.2,0.99,7.230,141.0 +25.2,0.99,8.040,145.8 +25.2,0.99,8.180,143.3 +25.2,0.99,7.330,151.6 +25.2,0.99,7.800,146.8 +25.2,0.99,7.300,153.2 +25.2,0.99,7.850,163.3 +25.2,0.99,7.090,164.8 +25.1,0.99,7.170,165.4 +25.2,0.99,7.580,165.6 +25.1,0.99,7.240,170.9 +25.1,0.99,6.920,168.8 +25.1,0.99,5.750,176.9 +25.1,0.99,5.440,175.4 +25.1,0.99,5.370,173.3 +25.1,0.99,4.680,162.1 +25.0,0.99,5.160,170.5 +25.2,0.99,5.860,166.9 +25.2,0.99,5.870,163.7 +25.3,0.99,6.360,170.1 +25.3,0.99,6.770,164.3 +25.2,0.99,6.370,168.9 +25.2,0.99,6.810,164.4 +25.0,0.99,6.960,163.6 +25.0,0.99,7.070,158.0 +24.9,0.99,6.550,167.0 +25.1,0.99,6.640,164.7 +25.0,0.99,6.670,179.2 +25.0,0.99,5.490,179.3 +24.8,0.99,5.060,180.7 +24.8,0.99,5.180,196.9 +24.9,0.99,4.690,188.2 +25.0,0.99,5.110,191.1 +24.9,0.99,4.390,209.0 +24.6,0.99,2.730,241.2 +24.5,0.99,3.430,257.5 +24.4,0.99,3.820,266.5 +24.4,0.99,3.840,269.6 +24.2,0.99,3.520,266.0 +24.4,0.99,2.800,261.8 +24.4,0.99,2.050,247.8 +24.5,0.99,2.380,207.1 +24.8,0.99,3.390,205.5 +25.1,0.99,3.240,206.5 +25.5,0.99,4.040,213.8 +24.7,0.99,5.130,282.6 +23.1,0.99,9.410,338.4 +21.9,0.99,9.050,342.2 +20.6,0.99,8.890,344.0 +19.9,0.99,8.920,343.5 +19.4,0.99,9.100,341.1 +19.2,0.99,8.610,344.1 +19.0,0.99,8.810,341.3 +18.4,0.99,9.020,342.4 +18.0,0.99,9.310,342.3 +17.7,0.99,9.370,344.1 +17.6,0.99,9.980,348.2 +17.6,0.99,9.080,353.7 +17.4,0.99,8.510,358.1 +16.9,0.99,7.950,3.4 +16.6,0.99,8.660,2.4 +16.9,0.99,7.230,5.4 +17.0,0.99,7.850,10.4 +17.6,0.99,6.620,4.8 +18.4,0.99,5.790,2.9 +19.9,0.99,5.030,10.4 +21.2,0.99,4.550,13.2 +22.0,0.99,3.800,353.1 +22.4,0.99,3.290,341.2 +22.8,0.99,4.220,350.2 +23.4,0.99,3.720,3.9 +23.2,0.99,5.230,15.9 +22.4,0.99,6.680,27.1 +21.9,0.99,7.220,31.6 +21.6,0.99,7.290,39.7 +21.5,0.99,6.860,44.5 +21.7,0.99,6.300,52.1 +21.7,0.99,6.560,57.1 +21.7,0.99,6.260,61.1 +21.6,0.99,6.710,65.1 +21.7,0.99,6.890,71.2 +21.8,0.99,7.220,77.2 +21.7,0.99,8.180,81.9 +21.8,0.99,7.970,85.1 +21.8,0.99,8.510,89.3 +21.8,0.99,8.190,73.7 +21.6,0.99,9.370,71.0 +21.5,0.99,9.840,75.0 +21.5,0.99,10.390,82.2 +21.8,0.99,9.580,90.3 +22.0,0.99,9.860,96.5 +22.3,0.99,8.300,99.6 +22.1,0.99,8.690,97.9 +21.7,0.99,9.300,92.3 +21.6,0.99,8.850,95.0 +22.0,0.99,9.940,91.1 +22.3,0.99,8.060,100.2 +22.6,0.99,7.060,101.6 +22.8,0.99,6.780,95.3 +23.3,0.99,5.420,116.9 +23.2,0.99,5.720,88.3 +22.8,0.99,7.470,53.9 +21.2,0.99,8.760,23.9 +17.9,0.99,13.340,1.5 +17.4,0.99,14.090,7.0 +17.4,0.99,10.910,5.0 +16.9,0.99,11.730,3.0 +16.9,0.99,10.400,8.3 +16.8,0.99,11.610,1.2 +16.4,0.99,11.270,2.4 +16.6,0.99,10.330,356.7 +17.0,0.99,9.910,354.5 +17.6,0.99,9.650,350.8 +18.4,0.99,9.440,347.7 +19.3,0.99,9.130,349.8 +19.9,0.99,9.330,350.1 +20.1,0.99,9.320,350.0 +20.1,0.99,8.780,355.3 +19.8,0.99,8.530,2.5 +18.8,0.99,9.940,3.4 +18.4,0.99,9.600,11.7 +18.1,0.99,8.910,20.3 +17.9,0.99,8.650,21.4 +17.5,0.99,8.800,28.5 +17.4,0.99,8.210,32.6 +17.1,0.99,7.920,33.5 +16.9,0.99,7.320,36.6 +17.0,0.99,7.140,36.8 +17.2,0.99,6.850,38.7 +17.6,0.99,6.440,51.6 +17.8,0.99,5.810,51.1 +17.9,0.99,5.740,47.7 +18.1,0.99,5.590,50.9 +18.3,0.99,5.410,56.4 +18.6,0.99,5.030,80.4 +19.0,0.99,4.710,78.7 +19.2,0.99,4.110,83.8 +19.6,0.99,4.110,82.5 +19.8,0.99,4.490,74.3 +20.2,0.99,4.010,102.9 +20.4,0.99,4.220,90.6 +20.5,0.99,4.240,97.9 +20.8,0.99,4.770,104.9 +20.9,0.99,5.780,104.6 +21.1,0.99,5.650,101.9 +21.4,0.99,5.700,111.8 +21.6,0.99,5.740,119.0 +21.9,0.99,6.450,126.3 +22.0,0.99,6.180,134.7 +22.3,0.99,6.790,139.7 +22.6,0.99,6.850,150.4 +22.7,0.99,6.930,142.7 +23.0,0.99,6.830,142.9 +23.2,0.99,5.470,147.3 +23.3,0.99,5.590,148.4 +23.4,0.99,5.740,137.8 +23.6,0.99,5.010,130.6 +23.5,0.99,6.410,138.4 +21.9,0.99,8.580,166.6 +21.4,0.99,4.260,110.7 +20.8,0.99,4.250,122.1 +22.1,0.99,7.470,148.2 +20.7,0.99,2.400,191.9 +19.1,0.99,11.240,2.9 +20.1,0.99,10.020,52.4 +20.7,0.99,10.720,70.5 +21.1,0.99,10.620,91.6 +21.2,0.99,8.370,81.7 +21.5,0.99,6.560,91.6 +21.8,0.99,6.430,87.6 +22.2,0.99,5.150,97.6 +22.2,0.99,4.010,92.2 +22.3,0.99,2.060,101.2 +22.4,0.99,2.100,48.1 +21.1,0.99,6.180,10.9 +20.3,0.99,7.950,9.0 +19.8,0.99,8.400,9.8 +20.0,0.99,7.910,15.2 +19.8,0.99,7.730,5.2 +18.4,0.99,7.840,358.2 +17.4,0.99,8.810,355.3 +17.5,0.99,7.990,356.8 +17.6,0.99,8.270,351.7 +17.9,0.99,7.760,352.2 +19.1,0.99,7.140,348.0 +20.2,0.99,7.310,345.7 +21.0,0.99,7.520,346.7 +21.7,0.99,8.780,342.9 +22.2,0.99,7.890,347.3 +22.4,0.99,8.670,356.2 +22.2,0.99,9.100,6.0 +21.5,0.99,9.480,10.7 +21.1,0.99,8.980,10.7 +21.0,0.99,8.500,14.8 +20.9,0.99,7.410,19.0 +21.0,0.99,6.650,18.3 +20.8,0.99,5.640,13.7 +19.9,0.99,4.000,5.9 +19.0,0.99,3.870,349.7 +17.9,0.99,4.010,340.1 +18.1,0.99,3.970,345.6 +18.3,0.99,4.150,351.7 +18.2,0.99,3.950,357.2 +18.0,1.00,3.850,2.8 +17.7,1.00,3.950,3.9 +17.8,1.00,3.920,7.5 +18.1,1.00,3.630,10.2 +18.6,1.00,3.470,10.9 +18.9,1.00,3.360,10.4 +20.5,1.00,2.950,26.3 +21.3,0.99,2.780,40.9 +21.8,0.99,1.960,70.9 +22.1,0.99,1.370,94.2 +22.3,0.99,0.960,104.7 +22.5,0.99,0.810,120.6 +22.4,1.00,1.040,124.7 +22.3,1.00,0.920,133.8 +22.2,1.00,1.770,139.7 +22.2,1.00,1.580,136.4 +22.2,1.00,1.590,140.9 +22.2,1.00,0.830,153.9 +22.2,1.00,0.500,168.7 +22.0,1.00,0.360,258.7 +21.9,1.00,0.320,275.2 +21.9,1.00,0.440,286.4 +22.0,1.00,0.670,322.8 +21.9,1.00,0.980,329.1 +21.9,1.00,1.330,339.0 +21.8,1.00,1.600,354.1 +21.6,1.00,2.340,1.7 +21.7,1.00,2.560,5.4 +21.7,1.00,2.330,20.4 +21.8,1.00,2.550,16.7 +21.9,1.00,2.250,29.9 +22.2,1.00,1.630,51.6 +22.4,1.00,1.120,90.4 +22.5,1.00,1.300,99.1 +22.6,1.00,1.840,117.7 +22.7,1.00,2.260,121.5 +22.6,1.00,2.840,128.3 +22.4,1.00,3.030,126.2 +22.4,1.00,2.630,127.3 +22.5,1.00,2.650,125.0 +22.4,1.00,2.490,121.4 +22.4,1.00,2.160,120.3 +22.4,1.00,1.930,119.5 +22.3,1.00,1.690,98.6 +22.2,1.00,1.290,51.1 +19.7,1.00,6.040,16.0 +19.4,1.00,7.030,30.9 +19.8,1.00,8.670,50.7 +19.9,1.00,10.370,58.4 +19.6,1.00,10.770,64.1 +19.4,1.00,11.240,68.9 +19.3,1.00,11.210,73.8 +19.2,1.00,11.070,73.7 +19.2,1.00,10.440,74.4 +19.4,1.00,9.950,74.8 +19.6,1.00,9.310,75.8 +19.8,1.00,8.880,76.4 +20.1,1.00,8.630,77.1 +20.5,1.00,8.800,81.3 +20.8,1.00,8.680,82.6 +20.9,1.00,8.620,83.9 +21.2,1.00,8.760,89.9 +21.4,1.00,8.740,87.7 +21.6,1.00,8.090,103.6 +21.5,1.00,9.050,96.4 +21.3,1.00,8.920,99.9 +21.4,1.00,8.050,110.6 +21.2,1.00,8.190,105.1 +21.3,1.00,7.450,113.8 +21.3,1.00,7.380,112.8 +21.3,1.00,7.030,117.2 +21.4,1.00,6.490,119.7 +21.4,1.00,6.660,117.5 +21.6,1.00,6.670,120.5 +21.7,1.00,6.370,122.3 +21.8,1.00,6.040,125.0 +22.0,1.00,5.760,133.4 +22.2,1.00,5.630,133.3 +22.4,1.00,5.810,132.0 +22.4,1.00,5.820,136.6 +22.5,1.00,5.160,138.9 +22.6,1.00,5.710,137.7 +22.5,1.00,5.850,134.1 +22.6,1.00,6.350,138.6 +22.6,1.00,6.720,139.1 +22.6,1.00,6.690,138.1 +22.7,1.00,6.680,140.7 +22.6,1.00,4.990,133.6 +22.7,0.99,4.780,131.4 +22.8,0.99,6.180,151.8 +22.9,0.99,7.740,154.2 +22.9,0.99,7.130,151.9 +23.0,0.99,6.910,154.1 +23.1,0.99,4.440,150.6 +23.2,0.99,5.440,142.1 +23.0,0.99,5.010,129.4 +23.3,0.99,7.010,153.5 +21.2,0.99,4.640,63.6 +18.4,0.99,13.550,21.7 +19.0,0.99,10.320,51.6 +19.4,0.99,7.730,67.4 +19.5,0.99,6.860,92.8 +20.5,0.99,5.750,114.9 +20.8,0.99,3.570,147.2 +21.4,0.99,3.490,157.1 +21.7,0.99,1.450,233.5 +21.9,0.99,1.490,237.0 +22.0,0.99,1.420,239.5 +22.0,0.99,0.330,225.4 +21.9,0.99,1.020,121.7 +21.8,0.99,1.180,113.8 +21.9,0.99,1.910,142.2 +21.9,0.99,1.750,114.9 +21.9,0.99,0.880,89.2 +21.9,0.99,1.660,120.6 +22.0,0.99,1.950,134.1 +22.1,0.99,2.050,124.8 +22.4,0.99,1.960,125.2 +22.4,0.99,3.140,123.4 +22.7,0.99,2.820,127.3 +22.7,0.99,3.510,114.4 +22.9,0.99,3.740,113.5 +23.0,0.99,3.650,114.1 +23.0,0.99,4.590,100.2 +23.1,0.99,5.090,104.5 +23.2,0.99,6.090,104.3 +23.4,0.99,6.070,109.2 +23.5,0.99,6.630,114.5 +23.6,0.99,7.040,119.6 +23.9,0.99,7.770,127.2 +24.1,0.99,7.580,135.2 +24.0,0.99,8.230,139.0 +23.8,0.99,7.920,133.0 +23.9,0.99,9.010,136.3 +24.1,0.99,8.860,139.5 +24.1,0.99,9.730,147.6 +24.1,0.99,10.220,148.1 +24.2,0.99,10.610,153.9 +24.2,0.99,10.970,150.1 +24.3,0.99,9.680,157.6 +24.3,0.99,10.210,160.4 +24.1,0.99,9.710,158.7 +24.3,0.99,9.300,155.9 +24.2,0.99,8.810,158.7 +24.3,0.99,8.430,162.8 +24.2,1.00,8.520,153.6 +24.1,1.00,8.000,149.0 +24.2,1.00,7.250,146.9 +24.4,1.00,8.270,151.9 +24.2,0.99,7.000,146.6 +24.6,0.99,7.970,150.3 +24.6,0.99,7.500,151.7 +24.5,0.99,8.510,144.8 +24.4,0.99,9.080,140.8 +24.5,0.99,9.230,143.4 +24.4,0.99,9.290,140.0 +24.3,0.99,9.750,137.9 +24.3,0.99,9.640,138.4 +24.4,0.99,10.240,137.6 +24.4,0.99,10.660,140.7 +24.2,0.99,11.520,143.2 +24.3,0.99,11.190,142.3 +24.2,0.99,11.040,142.5 +24.2,0.99,11.600,147.2 +24.2,0.99,11.520,142.3 +24.1,0.99,11.600,144.6 +24.3,0.99,10.700,143.0 +24.4,0.99,11.460,144.7 +24.5,0.99,11.660,148.4 +24.6,0.99,11.870,143.6 +24.6,0.99,11.670,144.7 +24.6,0.99,10.980,144.0 +24.7,0.99,11.270,147.4 +24.7,0.99,11.820,149.4 +24.8,0.99,11.530,148.4 +24.8,0.99,11.610,148.8 +24.8,0.99,11.790,155.1 +24.8,0.99,13.240,149.5 +24.9,0.99,14.500,150.6 +24.4,0.99,13.090,158.3 +24.5,0.99,16.160,162.8 +24.4,0.99,14.230,161.7 +24.4,0.99,12.720,155.8 +24.9,0.99,13.840,162.1 +24.7,0.99,13.730,170.7 +25.1,0.99,10.980,179.7 +25.1,0.99,11.630,180.4 +25.2,0.99,13.680,183.8 +25.3,0.99,14.600,184.0 +25.1,0.99,14.480,182.7 +25.0,0.99,16.230,188.7 +24.9,0.99,16.800,191.8 +25.4,0.99,14.080,206.6 +25.4,0.99,13.800,213.8 +25.4,0.99,12.710,213.5 +25.4,0.99,10.680,231.1 +25.3,0.99,9.390,235.6 +25.9,0.99,11.520,245.8 +26.0,0.99,10.830,255.9 +25.2,0.99,9.040,241.1 +24.8,0.99,8.440,238.0 +25.1,0.99,8.850,229.7 +25.1,0.99,8.460,227.2 +24.6,0.99,6.800,204.0 +24.8,0.99,7.150,213.6 +24.3,0.99,6.140,240.6 +23.8,0.99,4.570,238.8 +23.7,0.99,3.550,233.3 +23.4,0.99,3.300,250.7 +22.9,0.99,3.240,262.3 +22.3,0.99,3.720,301.4 +21.8,0.99,5.220,318.3 +20.7,0.99,6.010,353.0 +20.0,0.99,5.140,16.2 +20.1,0.99,5.200,34.4 +20.3,0.99,5.480,38.5 +20.2,0.99,5.140,50.1 +20.2,0.99,4.820,53.4 +20.4,0.99,4.750,57.7 +20.4,0.99,4.310,61.4 +20.4,0.99,4.330,77.1 +20.8,0.99,3.540,82.8 +21.4,0.99,2.760,84.6 +21.7,0.99,2.740,98.0 +22.0,0.99,3.270,114.1 +22.1,0.99,3.460,129.6 +22.3,0.99,3.790,138.7 +22.2,0.99,2.790,146.6 +22.1,0.99,2.790,147.8 +22.1,0.99,3.200,158.8 +22.0,0.99,2.710,185.0 +22.0,0.99,2.660,198.6 +22.1,0.99,2.790,215.8 +22.1,0.99,4.410,286.4 +20.9,0.99,9.300,316.0 +20.6,0.99,9.370,309.3 +19.5,0.99,10.580,327.7 +17.7,0.99,11.620,348.9 +18.3,0.99,13.550,356.7 +17.5,0.99,13.120,6.4 +17.0,0.99,14.800,9.6 +16.5,1.00,13.900,13.5 +16.4,1.00,13.080,12.4 +16.5,1.00,12.010,6.7 +17.1,1.00,10.930,1.3 +18.4,1.00,10.800,2.5 +19.1,1.00,11.650,3.2 +19.2,1.00,10.390,0.1 +19.5,1.00,10.440,356.5 +19.4,1.00,10.150,351.7 +19.4,1.00,10.000,351.6 +19.1,1.00,10.110,0.7 +18.4,1.00,9.880,4.9 +18.4,1.00,9.950,11.3 +17.9,1.00,10.660,19.5 +17.4,1.00,10.080,22.0 +17.3,1.00,9.270,28.0 +16.9,1.00,9.470,31.3 +16.5,1.00,9.240,36.9 +16.7,1.00,8.670,40.3 +16.6,1.00,8.450,43.6 +16.6,1.00,8.230,52.4 +16.7,1.00,7.880,54.9 +16.8,1.00,7.530,67.0 +16.9,1.00,7.250,74.8 +16.8,1.00,8.100,73.1 +16.9,1.00,7.230,77.7 +17.1,1.00,7.090,84.2 +17.1,1.00,7.140,85.7 +17.2,1.00,7.290,90.8 +17.5,1.00,6.640,93.2 +17.7,1.00,6.070,101.8 +17.7,1.00,7.290,89.8 +17.8,1.00,7.170,109.5 +17.9,0.99,6.590,105.1 +18.2,0.99,6.450,127.3 +18.2,0.99,6.510,122.9 +18.4,0.99,6.720,119.0 +18.7,0.99,7.660,125.9 +18.9,0.99,6.870,125.7 +19.1,0.99,7.150,124.9 +19.5,0.99,6.720,118.8 +20.1,0.99,7.440,127.5 +20.3,0.99,8.500,121.9 +20.9,0.99,7.910,128.4 +21.2,0.99,8.170,134.6 +21.3,0.99,8.580,126.5 +21.4,0.99,8.990,136.6 +21.5,0.99,8.710,119.7 +21.3,0.99,8.710,115.2 +21.9,0.99,9.070,125.7 +22.1,0.99,9.040,123.9 +21.5,0.99,10.400,101.7 +21.4,0.99,10.840,109.5 +21.6,0.99,11.230,103.2 +22.3,0.99,12.380,115.8 +22.4,0.99,12.900,115.0 +22.6,0.99,14.190,121.1 +22.6,0.99,14.650,115.8 +22.6,0.99,15.680,118.5 +22.7,0.99,15.630,121.0 +22.7,0.99,16.020,121.8 +22.9,0.99,15.460,126.9 +23.1,0.99,15.440,125.1 +23.2,0.99,15.270,129.2 +23.2,0.99,15.190,131.3 +23.2,0.99,13.440,134.3 +23.2,0.99,13.150,132.5 +23.3,0.99,13.020,137.4 +23.4,0.99,12.050,139.0 +23.6,0.99,12.610,141.8 +23.4,0.99,11.930,141.3 +23.5,0.99,11.310,139.8 +23.5,0.99,11.930,138.9 +23.5,0.99,11.870,137.4 +23.6,0.99,11.110,140.1 +23.7,0.99,10.880,140.2 +24.0,0.99,10.150,144.3 +24.1,0.99,9.400,144.4 +23.7,0.99,10.150,136.1 +23.4,0.99,9.050,133.3 +23.4,0.99,9.400,134.0 +23.8,0.99,8.670,138.9 +23.5,0.99,7.340,139.5 +23.6,0.99,8.470,143.4 +23.5,0.99,8.810,138.0 +23.4,0.99,9.200,137.3 +23.3,0.99,8.450,134.1 +23.2,0.99,8.420,143.9 +23.3,0.99,7.610,143.3 +23.3,0.99,8.050,141.8 +23.2,0.99,6.000,135.1 +23.4,0.99,6.840,148.8 +23.4,0.99,7.140,148.8 +23.4,0.99,6.460,151.1 +23.6,0.99,6.640,161.0 +23.5,0.99,5.890,152.3 +23.6,0.99,5.160,167.3 +23.6,0.99,5.030,171.7 +23.6,0.99,2.460,184.2 +23.7,0.99,1.570,234.6 +23.8,0.99,1.290,303.1 +23.8,0.99,1.720,312.1 +24.0,0.99,2.560,6.7 +25.1,0.99,6.070,344.9 +24.9,0.99,6.730,351.3 +23.9,0.99,12.340,348.7 +22.9,0.99,12.480,349.1 +19.5,1.00,12.670,348.9 +18.0,1.00,11.520,355.6 +17.7,1.00,12.090,356.1 +16.9,1.00,12.740,357.1 +16.1,1.00,12.150,356.3 +15.6,1.00,12.940,5.3 +15.1,1.00,13.100,8.4 +14.6,1.00,13.750,11.9 +14.4,1.00,14.180,11.7 +13.9,1.00,14.590,13.8 +13.1,1.00,15.310,16.7 +12.6,1.00,15.340,20.4 +11.9,1.00,14.900,23.6 +11.3,1.00,15.490,23.8 +11.3,1.00,13.380,25.5 +11.6,1.00,12.360,21.1 +12.2,1.00,11.620,17.5 +13.3,1.00,11.420,16.2 +14.8,1.00,11.380,16.2 +15.7,1.00,11.570,14.5 +16.3,1.00,11.520,15.1 +16.7,1.00,11.890,18.1 +16.7,1.00,11.890,17.7 +16.2,1.00,12.580,21.0 +15.3,1.00,13.120,23.8 +14.8,1.00,13.720,30.4 +14.6,1.00,13.790,32.8 +14.4,1.00,13.330,35.3 +14.3,1.00,13.080,37.6 +14.4,1.00,13.110,39.8 +14.3,1.00,12.590,41.6 +14.3,1.00,12.150,43.7 +14.2,1.00,11.630,44.0 +14.3,1.00,12.300,48.2 +14.6,1.00,13.590,52.0 +14.7,1.00,13.350,55.4 +14.8,1.00,12.730,58.4 +15.0,1.00,12.680,61.2 +15.3,1.00,12.570,65.2 +15.4,1.00,12.020,64.0 +15.5,1.00,11.190,64.5 +15.6,1.00,10.360,63.6 +15.9,1.00,9.460,63.0 +16.1,1.00,8.240,63.2 +16.3,1.00,7.230,61.2 +16.6,1.00,6.410,60.0 +17.0,1.00,5.860,66.6 +17.3,1.00,5.780,68.4 +17.5,1.00,5.390,64.0 +17.8,1.00,4.870,66.3 +17.9,1.00,4.830,59.3 +18.0,1.00,4.980,66.7 +18.3,1.00,4.530,93.8 +18.3,1.00,3.890,93.4 +18.5,1.00,4.470,105.2 +18.6,1.00,4.060,121.3 +18.4,1.00,4.310,85.7 +18.6,1.00,3.660,110.9 +19.0,1.00,2.870,109.8 +17.4,1.00,6.260,32.3 +17.3,1.00,7.840,33.1 +17.4,1.00,8.740,38.9 +17.8,1.00,9.080,38.1 +18.1,1.00,8.000,45.0 +19.2,1.00,4.440,75.2 +19.1,1.00,5.180,79.8 +19.0,1.00,7.550,84.2 +18.8,1.00,7.400,83.5 +18.7,1.00,6.910,88.7 +18.8,1.00,6.260,86.4 +19.0,1.00,5.420,88.9 +19.2,1.00,4.800,85.6 +19.2,1.00,4.680,78.9 +19.7,1.00,5.430,83.5 +20.2,1.00,5.890,77.4 +20.1,1.00,5.880,65.8 +19.6,1.00,7.110,55.0 +19.5,1.00,6.580,55.9 +19.1,1.00,6.570,55.0 +18.8,1.00,7.050,48.4 +18.0,1.00,7.720,43.3 +18.0,1.00,7.280,41.1 +17.9,1.00,7.290,40.6 +17.6,1.00,7.290,42.0 +17.0,1.00,7.400,41.6 +17.3,1.00,7.800,45.2 +16.4,1.00,7.350,34.9 +16.4,1.00,7.240,41.1 +16.6,1.00,6.830,40.8 +17.1,1.00,6.280,40.8 +18.3,1.00,6.310,44.3 +19.2,1.00,4.970,44.4 +19.7,1.00,4.330,50.6 +20.1,1.00,3.860,43.5 +20.4,1.00,3.750,48.0 +20.6,1.00,3.960,49.0 +20.6,1.00,4.430,49.6 +19.8,1.00,6.080,17.9 +19.3,1.00,6.690,30.0 +19.3,1.00,7.440,36.6 +19.0,1.00,7.360,41.8 +19.4,1.00,7.270,56.2 +19.4,1.00,7.090,55.8 +19.5,1.00,6.570,58.6 +19.3,1.00,6.470,58.0 +19.0,1.00,6.420,48.9 +18.9,1.00,6.030,54.4 +18.6,1.00,5.940,45.4 +18.3,1.00,6.230,50.2 +18.3,1.00,5.850,45.8 +17.8,1.00,5.680,38.5 +17.6,1.00,5.540,41.7 +17.6,1.00,4.480,33.0 +17.6,1.00,4.040,39.1 +18.9,1.00,3.420,52.0 +19.4,1.00,1.910,38.2 +19.7,1.00,0.940,39.8 +19.9,1.00,0.440,55.0 +20.2,1.00,0.260,76.6 +20.3,1.00,0.320,107.4 +20.2,1.00,1.510,119.4 +20.1,1.00,1.880,87.0 +20.0,1.00,2.450,47.6 +20.0,1.00,3.610,23.7 +19.4,1.00,4.460,12.5 +19.1,1.00,6.610,24.2 +18.8,1.00,7.080,31.1 +18.8,1.00,6.610,36.8 +18.1,1.00,6.810,29.1 +17.5,1.00,6.720,24.4 +17.5,1.00,7.490,23.5 +16.5,1.00,8.810,19.2 +16.1,1.00,9.600,17.5 +15.6,1.00,10.180,20.6 +15.6,1.00,10.620,21.2 +16.2,1.00,10.450,18.7 +17.3,1.00,9.640,15.8 +18.6,1.00,12.000,20.4 +19.3,1.00,12.930,20.9 +19.1,1.00,13.940,16.6 +18.3,1.00,14.320,16.4 +17.6,1.00,14.520,15.2 +16.7,1.00,15.440,20.5 +15.7,1.00,15.360,16.4 +14.3,1.01,15.730,21.5 +13.1,1.01,17.860,27.3 +11.8,1.01,18.220,28.7 +10.4,1.01,19.110,30.1 +9.3,1.01,19.450,30.9 +8.2,1.01,17.240,32.3 +7.2,1.01,17.210,34.9 +6.6,1.01,16.250,34.7 +6.4,1.01,15.920,36.6 +6.2,1.01,15.430,35.8 +6.1,1.01,15.240,37.1 +6.0,1.01,15.010,37.2 +5.7,1.01,14.590,35.3 +5.5,1.01,13.900,35.9 +5.7,1.01,13.710,35.8 +5.8,1.01,12.360,33.8 +6.2,1.01,11.670,30.4 +7.1,1.01,10.360,27.5 +8.4,1.01,9.500,27.6 +9.6,1.01,8.820,26.8 +10.5,1.01,8.160,26.1 +11.1,1.01,7.770,25.0 +11.5,1.01,7.530,24.4 +11.5,1.01,8.190,23.0 +10.8,1.01,9.040,24.6 +10.6,1.01,9.210,30.3 +10.7,1.00,8.940,34.0 +11.5,1.00,8.690,42.6 +11.7,1.00,7.710,52.2 +12.2,1.00,7.620,56.2 +12.7,1.00,6.610,70.2 +13.2,1.00,6.430,67.5 +12.8,1.00,6.030,53.8 +13.6,1.00,5.700,71.8 +13.9,1.00,6.190,73.1 +14.0,1.00,5.340,78.9 +14.3,1.00,5.780,71.0 +14.3,1.00,5.680,63.0 +14.7,1.00,5.860,76.6 +14.9,1.00,6.250,74.9 +15.0,1.00,6.540,73.8 +15.1,1.00,6.670,74.8 +15.3,1.00,7.170,73.5 +15.7,1.00,6.690,84.0 +16.0,1.00,6.490,83.9 +16.3,1.00,7.000,92.0 +16.7,1.00,6.720,103.4 +16.8,1.00,6.980,100.0 +17.2,1.00,6.760,94.3 +17.5,0.99,7.260,101.1 +17.6,0.99,6.290,104.6 +18.6,0.99,7.540,116.9 +18.7,0.99,7.060,116.9 +19.0,0.99,6.340,115.0 +19.0,0.99,6.110,93.2 +18.9,0.99,5.600,75.3 +19.1,0.99,4.170,64.0 +18.0,0.99,6.290,59.2 +18.0,0.99,5.980,58.9 +17.9,0.99,6.220,55.8 +18.6,0.99,5.770,64.4 +19.0,0.99,5.220,72.0 +19.4,0.99,5.410,74.8 +19.2,0.99,6.210,79.5 +19.5,0.99,6.320,86.9 +19.6,0.99,6.390,90.0 +19.9,0.99,6.250,99.8 +20.1,0.99,6.200,109.2 +20.3,0.99,6.520,113.8 +20.3,0.99,7.050,117.9 +20.2,0.99,7.150,130.8 +20.4,0.99,8.650,125.9 +20.5,0.99,8.320,131.2 +20.6,0.99,8.990,130.1 +20.8,0.99,9.110,134.5 +20.8,0.99,8.870,137.9 +20.9,0.99,8.910,141.3 +21.3,0.99,7.950,148.7 +21.4,0.99,8.560,150.7 +21.7,0.99,8.200,149.5 +22.0,0.99,8.580,146.9 +21.9,0.99,9.060,156.2 +22.1,0.99,10.460,156.9 +22.1,0.99,10.620,157.7 +22.0,0.99,10.100,151.9 +22.2,0.99,10.820,150.8 +22.3,0.99,9.720,148.8 +22.3,0.99,10.260,146.5 +22.1,0.99,10.050,143.5 +22.3,0.99,10.080,145.6 +22.4,0.99,10.330,147.0 +22.5,0.99,10.150,150.1 +22.5,0.99,9.450,149.6 +22.5,0.99,9.520,151.0 +22.5,0.99,9.630,152.7 +22.7,0.99,10.500,152.0 +22.9,0.99,11.910,153.0 +22.8,0.99,12.140,154.1 +23.1,0.99,12.240,161.1 +23.1,0.99,11.830,165.4 +23.3,0.99,11.860,171.8 +23.3,0.99,11.680,170.4 +23.3,0.99,11.060,172.2 +23.4,0.99,11.620,176.9 +23.6,0.99,11.360,183.6 +23.6,0.99,11.700,181.8 +23.6,0.99,11.000,185.9 +23.7,0.99,11.840,187.5 +23.4,0.99,10.460,187.9 +23.4,0.99,9.000,192.0 +23.3,0.99,8.820,190.5 +23.3,0.99,8.110,196.6 +23.5,0.99,7.690,205.3 +23.6,0.99,7.340,206.1 +23.7,0.99,8.710,204.6 +23.6,0.99,8.020,202.2 +23.4,0.99,7.230,204.5 +23.5,0.99,7.360,207.7 +24.0,0.99,7.410,219.7 +23.6,0.99,4.710,209.2 +23.9,0.99,4.850,215.0 +23.9,0.99,4.250,217.3 +24.4,0.99,4.290,219.3 +23.8,0.99,3.580,216.2 +23.2,0.99,4.670,188.6 +23.3,0.99,3.210,202.2 +23.0,0.99,3.210,195.4 +23.0,0.99,2.560,210.3 +22.9,0.99,1.940,258.6 +23.6,0.99,3.910,273.6 +22.7,0.99,3.040,299.6 +22.3,0.99,3.070,334.8 +22.3,0.99,4.120,358.3 +22.1,0.99,5.660,1.8 +21.8,0.99,6.640,358.0 +20.4,0.99,10.600,35.5 +19.7,0.99,10.720,46.0 +19.5,0.99,10.280,51.8 +20.1,0.99,10.310,59.3 +20.7,0.99,10.560,61.9 +21.2,0.99,11.510,62.6 +20.8,0.99,10.220,48.2 +20.6,0.99,10.910,49.7 +20.4,0.99,11.900,52.8 +20.4,0.99,12.160,54.7 +20.8,0.99,12.620,57.7 +20.7,0.99,12.500,56.2 +20.3,0.99,13.050,61.5 +19.7,0.99,12.990,62.3 +19.3,0.99,12.930,64.9 +19.0,0.99,13.510,64.8 +18.7,0.99,13.270,67.6 +18.5,0.99,13.540,73.0 +18.4,0.99,13.230,72.7 +18.2,0.99,14.870,73.0 +18.0,0.99,14.030,73.9 +17.5,0.99,13.330,69.6 +17.3,0.99,13.480,70.5 +17.4,0.99,12.950,75.6 +16.9,0.99,12.700,76.4 +16.9,0.99,11.970,82.1 +17.0,0.99,10.620,78.9 +16.9,0.99,11.100,77.0 +16.9,0.99,9.680,73.9 +16.9,0.99,10.270,70.5 +17.2,0.99,9.170,72.6 +17.4,0.99,9.160,73.0 +17.7,0.99,9.730,70.4 +17.9,0.99,9.950,76.0 +18.1,0.99,10.280,80.2 +18.1,0.99,10.180,85.2 +18.0,0.99,10.270,86.2 +17.9,0.99,10.460,87.7 +18.0,0.99,10.420,90.3 +18.2,0.99,9.670,92.9 +18.3,0.99,9.190,99.4 +18.5,0.99,9.160,105.1 +18.6,0.99,8.990,106.1 +18.6,0.99,8.720,105.0 +18.7,0.99,8.530,106.9 +18.8,0.99,8.510,107.7 +19.0,0.99,8.330,112.6 +19.2,0.99,8.660,113.3 +19.4,0.99,8.890,113.2 +19.5,0.99,9.100,109.5 +19.7,0.99,9.130,112.0 +19.9,0.99,8.890,110.6 +20.1,0.99,8.970,109.9 +20.3,0.99,9.710,107.7 +20.4,0.99,10.280,110.7 +20.5,0.99,10.620,111.4 +20.6,0.99,10.880,114.4 +20.8,0.99,10.740,118.9 +21.1,0.99,11.730,114.4 +21.2,0.99,11.480,118.9 +21.3,0.99,11.790,122.6 +21.4,0.99,11.380,128.1 +21.5,0.99,11.520,130.0 +21.7,0.99,11.470,129.3 +21.7,0.99,11.740,131.7 +21.9,0.99,11.440,133.3 +21.9,0.99,11.230,138.9 +21.9,0.99,10.570,136.6 +22.0,0.99,10.830,128.2 +22.2,0.99,11.620,143.8 +22.2,0.99,10.910,136.6 +22.2,0.99,11.140,139.6 +22.1,0.99,10.900,139.4 +22.2,0.99,10.400,136.4 +22.2,0.99,10.430,139.5 +22.2,0.99,9.300,136.0 +22.2,0.99,9.100,137.1 +22.3,0.99,8.610,138.5 +22.2,0.99,7.550,127.1 +22.1,0.99,8.030,118.5 +22.3,0.99,8.980,122.9 +22.2,0.99,8.500,133.4 +21.9,0.99,8.480,134.1 +22.1,0.99,8.800,128.0 +22.4,0.99,8.230,127.9 +22.4,0.99,8.380,129.0 +22.4,0.99,8.350,135.3 +22.3,0.99,8.290,132.3 +22.4,0.99,7.780,118.9 +22.0,0.99,9.150,125.9 +21.9,0.99,8.380,141.2 +22.2,1.00,7.620,119.5 +22.0,1.00,7.300,115.3 +21.8,1.00,7.300,115.6 +21.6,1.00,7.510,121.6 +21.9,1.00,5.650,114.6 +21.6,1.00,5.510,84.4 +21.4,1.00,6.710,55.7 +20.5,1.00,9.490,41.3 +20.7,1.00,9.230,44.2 +20.2,1.00,7.430,9.6 +17.6,1.00,9.250,343.1 +16.3,1.00,10.940,337.4 +15.4,1.00,11.480,342.4 +14.6,1.00,11.270,345.6 +13.5,1.00,12.480,349.6 +12.9,1.00,12.620,353.1 +12.5,1.00,12.350,349.6 +12.1,1.00,12.030,349.4 +11.7,1.00,12.310,349.9 +11.4,1.00,12.570,351.6 +10.7,1.00,12.550,351.7 +10.3,1.00,11.540,350.8 +10.2,1.00,12.730,350.5 +10.1,1.00,12.810,353.3 +10.2,1.00,12.360,358.3 +10.1,1.00,12.580,356.9 +10.1,1.00,13.270,357.5 +10.2,1.00,12.000,4.9 +10.2,1.00,11.870,2.3 +9.9,1.00,12.120,5.2 +9.8,1.00,13.570,5.0 +9.8,1.00,12.650,8.3 +9.6,1.00,13.600,7.3 +9.6,1.00,13.870,8.6 +9.5,1.00,14.010,14.5 +9.2,1.00,14.420,16.1 +9.1,1.00,15.050,19.2 +9.0,1.00,13.950,19.4 +8.9,1.00,14.380,22.0 +8.7,1.00,14.850,26.4 +8.8,1.00,14.710,29.1 +8.8,1.00,14.600,29.6 +8.7,1.00,13.580,30.3 +8.9,1.00,15.370,36.0 +8.9,1.00,14.820,37.1 +9.0,1.00,14.920,39.1 +9.2,1.00,15.120,41.0 +9.0,1.00,14.850,40.9 +8.8,1.00,14.990,41.3 +8.8,1.00,15.570,43.3 +8.7,1.00,16.150,45.8 +8.2,1.00,15.960,46.2 +7.7,1.00,15.990,44.8 +6.9,1.00,13.660,37.9 +6.4,1.00,12.540,35.0 +5.9,1.00,11.800,29.6 +6.2,1.00,10.900,27.1 +6.3,1.00,9.780,23.3 +6.5,1.00,9.750,18.1 +7.1,1.00,9.350,18.4 +8.0,1.00,9.480,20.7 +7.9,1.00,9.880,22.8 +8.0,1.00,10.300,22.5 +8.2,1.00,10.640,29.7 +8.5,1.00,11.040,35.8 +8.8,1.00,11.110,42.8 +9.3,1.00,10.470,53.5 +9.3,1.00,10.210,53.2 +9.2,1.00,10.500,51.8 +9.3,1.00,10.080,46.4 +8.9,1.00,10.720,47.5 +8.9,1.00,10.170,46.8 +8.6,1.00,11.160,46.0 +7.6,1.00,10.930,37.6 +7.6,1.00,10.330,37.5 +6.7,1.00,10.110,19.1 +5.9,1.00,12.240,21.2 +6.3,1.00,10.920,14.9 +5.9,0.99,11.900,18.1 +5.5,0.99,12.660,11.3 +6.3,0.99,12.300,18.8 +5.7,0.99,12.900,8.1 +5.7,0.99,13.030,357.1 +5.4,0.99,12.940,354.7 +6.2,0.99,12.160,1.2 +6.0,0.99,13.360,358.6 +6.3,0.99,12.710,342.6 +6.4,0.99,12.670,356.0 +6.2,0.99,12.680,1.1 +6.1,0.99,13.170,0.1 +6.0,0.99,13.180,356.9 +6.0,0.99,13.300,354.7 +5.8,0.99,13.780,350.3 +5.6,0.99,11.800,337.9 +5.6,0.99,14.540,342.3 +5.6,0.99,15.190,341.9 +5.4,0.99,13.480,342.5 +5.3,0.99,12.760,340.3 +4.9,0.99,14.330,339.7 +4.7,0.99,13.510,337.3 +4.6,0.99,13.330,335.6 +4.6,0.99,13.640,331.6 +4.7,0.99,13.520,331.6 +4.7,0.99,13.830,326.0 +4.8,0.99,14.310,325.9 +4.8,0.99,14.630,322.6 +4.9,0.99,14.540,324.5 +4.8,1.00,14.400,324.6 +4.9,1.00,15.150,325.7 +5.0,1.00,15.230,326.6 +5.0,1.00,15.800,332.7 +5.2,1.00,16.380,336.7 +5.9,1.00,15.760,342.6 +6.2,1.00,15.640,342.0 +6.4,1.00,16.460,349.6 +6.3,1.00,17.520,356.1 +5.9,1.00,16.960,359.3 +5.4,1.00,15.850,2.1 +5.0,1.00,14.350,6.5 +4.6,1.00,14.020,9.2 +4.3,1.00,13.970,12.5 +4.0,1.00,13.940,13.2 +3.4,1.00,13.500,13.5 +3.1,1.00,12.910,15.9 +2.9,1.00,11.950,14.2 +3.2,1.00,10.300,10.1 +3.6,1.00,10.250,2.4 +3.9,1.00,8.440,352.2 +5.0,1.00,8.290,348.8 +5.6,1.00,8.270,344.7 +6.4,1.00,7.830,343.3 +6.8,1.00,8.050,345.1 +7.2,1.00,8.480,346.8 +7.4,1.00,7.690,358.1 +6.9,1.00,7.430,4.3 +6.6,1.00,7.370,8.2 +6.6,1.00,7.820,9.6 +6.7,1.00,7.770,18.9 +6.9,1.00,7.000,23.0 +7.3,1.00,6.770,30.3 +7.5,1.00,6.580,32.7 +7.8,1.00,6.770,33.8 +8.4,1.00,6.190,47.5 +8.9,1.00,5.540,50.3 +9.3,1.00,5.500,55.9 +9.8,1.00,5.180,69.0 +10.2,1.00,5.080,67.9 +10.4,1.00,5.050,72.3 +10.6,1.00,5.240,67.9 +10.9,1.00,5.270,63.5 +11.1,1.00,5.320,66.8 +11.2,1.00,5.560,67.6 +11.4,1.00,5.630,68.3 +11.3,1.00,6.320,65.9 +11.3,1.00,6.920,68.9 +11.3,1.00,6.680,60.0 +11.4,1.00,5.880,53.7 +11.6,1.00,5.120,48.8 +11.5,1.00,5.530,52.9 +11.5,1.00,6.630,53.8 +11.3,1.01,6.790,46.0 +11.1,1.01,6.860,44.1 +11.2,1.01,6.800,46.1 +11.4,1.01,6.570,44.7 +11.6,1.01,6.520,48.5 +11.6,1.01,6.470,47.4 +11.7,1.01,6.320,49.0 +11.7,1.01,6.590,49.5 +11.7,1.01,6.910,55.0 +11.8,1.01,6.700,54.1 +11.7,1.01,7.230,54.7 +11.6,1.01,7.440,53.6 +11.6,1.01,7.110,49.4 +11.5,1.01,7.420,49.1 +11.3,1.01,7.450,49.8 +11.3,1.01,7.320,49.0 +11.8,1.01,6.710,53.0 +12.0,1.01,6.500,49.6 +12.5,1.01,6.420,51.7 +12.7,1.00,6.600,61.8 +13.0,1.00,6.690,61.6 +13.4,1.00,6.420,63.9 +13.3,1.00,6.800,72.9 +13.6,1.00,6.110,74.3 +13.8,1.00,6.090,80.6 +14.2,1.00,5.360,87.6 +14.4,1.00,4.910,93.9 +14.6,1.00,4.700,94.9 +14.9,1.00,5.380,110.8 +15.1,1.00,5.420,107.4 +15.2,1.00,4.870,106.9 +15.5,1.00,4.440,110.9 +15.7,1.00,3.730,114.0 +15.6,1.00,4.010,102.0 +15.7,1.00,4.090,90.6 +15.8,1.00,3.560,86.0 +15.8,1.00,3.410,81.6 +15.9,1.00,4.410,79.9 +16.0,1.00,4.380,83.1 +15.9,1.00,4.870,86.3 +16.2,1.00,4.910,92.6 +16.3,1.00,4.910,90.6 +16.4,1.00,5.540,98.7 +16.4,1.00,5.390,104.1 +16.4,1.00,5.850,107.9 +16.6,1.00,5.450,114.4 +16.8,1.00,5.540,124.4 +16.6,1.00,5.980,130.0 +16.6,1.00,6.120,136.1 +16.8,1.00,6.230,139.6 +16.9,1.00,5.620,142.6 +17.0,1.00,5.430,147.6 +17.1,1.00,5.450,149.2 +17.2,1.00,4.800,154.5 +17.3,1.00,4.550,147.9 +17.4,1.00,4.300,149.0 +17.4,1.00,4.190,137.7 +17.3,1.00,4.550,123.9 +17.4,1.00,4.700,121.8 +17.3,1.00,5.170,116.8 +17.3,1.00,5.860,115.1 +17.7,1.00,5.510,119.8 +17.5,1.00,6.120,116.7 +17.6,1.00,6.610,119.2 +17.8,1.00,5.700,134.0 +17.9,1.00,6.060,136.1 +18.0,0.99,5.830,146.7 +18.1,0.99,6.500,147.7 +18.2,0.99,6.830,151.4 +18.2,0.99,7.100,161.4 +18.3,0.99,7.720,163.4 +18.5,0.99,8.760,168.4 +18.9,0.99,9.270,173.6 +19.2,0.99,8.920,179.5 +19.5,0.99,9.800,187.9 +19.5,0.99,9.440,195.3 +19.7,0.99,8.680,204.1 +19.8,0.99,8.110,217.8 +19.8,0.99,9.050,224.1 +20.0,0.99,8.930,228.7 +20.0,0.99,9.400,225.0 +19.5,0.99,8.850,233.3 +19.2,0.99,7.980,241.8 +18.7,0.99,7.010,249.9 +18.1,0.99,7.370,251.1 +17.6,0.99,9.190,248.7 +18.0,0.99,8.320,257.1 +18.0,0.99,6.570,253.9 +18.6,0.99,5.040,239.6 +19.9,0.98,7.420,241.1 +20.3,0.98,9.930,236.6 +20.1,0.98,9.570,231.7 +19.7,0.98,8.680,228.1 +19.7,0.98,8.600,223.0 +19.6,0.98,8.700,225.9 +19.5,0.98,8.160,225.6 +19.4,0.98,8.890,226.5 +19.4,0.98,8.200,217.8 +19.4,0.98,8.280,219.5 +19.4,0.98,8.910,220.9 +19.4,0.98,9.210,223.7 +19.6,0.98,9.690,217.1 +20.3,0.98,12.970,229.7 +20.4,0.98,11.460,218.7 +20.2,0.98,9.950,211.8 +20.5,0.98,10.470,221.0 +20.1,0.98,10.540,215.2 +20.1,0.98,9.820,216.6 +20.3,0.98,9.450,215.7 +20.4,0.98,9.910,215.3 +20.9,0.98,11.250,212.3 +20.9,0.98,10.480,213.9 +21.0,0.98,9.480,211.5 +21.2,0.98,9.890,212.8 +21.2,0.98,9.610,208.9 +21.2,0.98,9.900,208.7 +21.4,0.98,9.760,211.7 +21.2,0.98,10.140,209.0 +21.2,0.98,10.080,205.0 +21.3,0.98,11.260,205.0 +21.6,0.98,11.440,200.8 +21.4,0.98,10.630,198.8 +21.6,0.98,11.380,197.4 +21.9,0.98,12.240,201.8 +21.8,0.98,11.400,194.1 +21.9,0.98,11.220,195.8 +21.8,0.98,10.920,194.3 +22.0,0.98,11.370,192.1 +22.1,0.98,11.290,191.1 +22.2,0.98,11.260,191.5 +22.0,0.98,10.200,189.7 +21.9,0.98,9.780,190.1 +22.2,0.98,9.630,190.8 +22.5,0.98,10.590,191.2 +22.6,0.98,10.550,185.3 +22.4,0.98,9.960,182.0 +22.3,0.98,10.030,173.9 +22.1,0.98,9.930,170.1 +22.5,0.98,10.530,175.4 +21.7,0.98,10.480,163.3 +22.1,0.98,11.450,168.7 +22.2,0.98,11.360,170.9 +21.9,0.98,11.550,172.8 +21.4,0.99,10.190,168.9 +21.0,0.99,10.690,176.0 +21.2,0.99,10.910,170.8 +22.1,0.99,11.980,174.4 +22.2,0.99,11.830,173.5 +22.1,0.99,11.860,173.5 +22.1,0.99,11.480,173.3 +22.7,0.99,11.830,177.0 +22.9,0.99,11.580,178.7 +23.0,0.99,11.400,178.1 +22.9,0.99,11.310,179.0 +22.7,0.99,10.160,174.9 +22.5,0.99,9.660,175.8 +22.4,0.99,8.320,166.8 +22.1,0.99,8.340,166.6 +21.5,0.99,7.670,159.3 +21.9,0.99,8.090,163.2 +22.3,0.99,8.870,165.9 +23.4,0.99,9.180,170.0 +22.4,0.99,8.630,166.7 +23.2,0.99,8.100,178.6 +22.1,0.99,7.660,172.4 +22.7,0.99,9.490,170.9 +16.1,0.99,7.720,342.0 +14.3,0.99,9.620,346.6 +13.5,0.99,10.020,357.9 +12.8,0.99,9.570,359.7 +12.5,0.99,9.610,4.8 +12.0,0.99,9.780,1.5 +10.8,0.99,8.720,353.5 +10.1,0.99,8.950,0.2 +9.8,0.99,9.540,353.7 +9.2,0.99,9.630,359.0 +8.5,0.99,10.080,1.1 +8.2,0.99,10.910,350.8 +7.7,0.99,11.130,352.4 +7.5,0.99,10.530,341.2 +7.1,0.99,12.050,342.1 +6.9,0.99,12.750,342.2 +6.7,0.99,12.640,346.0 +6.4,0.99,13.170,342.9 +6.3,1.00,12.790,346.4 +6.3,1.00,12.730,348.7 +6.2,1.00,12.540,349.3 +6.0,1.00,13.380,354.7 +5.8,1.00,13.410,359.5 +5.6,1.00,13.270,358.0 +5.1,1.00,13.370,358.4 +4.9,1.00,14.470,1.1 +4.7,1.00,16.410,2.1 +4.6,1.00,15.220,2.3 +4.5,1.00,12.960,3.4 +4.0,1.00,13.730,6.9 +3.4,1.00,14.410,9.6 +2.9,1.00,15.320,7.8 +2.7,1.00,15.390,11.0 +2.5,1.00,14.160,12.2 +2.4,1.00,15.540,12.8 +2.2,1.00,12.890,19.1 +2.1,1.00,11.340,21.8 +2.0,1.00,11.560,14.7 +1.7,1.00,12.100,14.2 +1.8,1.00,11.610,13.7 +1.9,1.00,10.550,8.0 +2.1,1.00,10.500,8.3 +2.8,1.00,9.660,8.6 +3.4,1.00,9.160,7.6 +3.5,1.00,9.170,7.9 +3.6,1.00,8.830,4.1 +3.9,1.00,8.530,6.8 +4.0,1.00,8.560,9.6 +3.9,1.00,8.470,11.2 +4.1,1.00,7.880,12.0 +4.2,1.00,7.610,9.8 +4.5,1.00,7.480,7.9 +4.5,1.00,7.580,5.2 +4.6,1.00,7.410,7.5 +4.5,1.00,7.360,6.1 +4.4,1.00,7.340,5.7 +4.4,1.00,7.740,3.6 +4.6,1.00,7.370,4.7 +5.0,1.00,6.930,7.5 +5.2,1.00,6.900,12.0 +5.5,1.00,7.110,7.1 +5.5,1.00,6.920,6.1 +5.5,1.00,7.330,6.0 +5.9,1.00,7.160,355.4 +5.7,1.00,6.360,1.3 +6.3,0.99,6.060,3.9 +6.9,0.99,7.010,0.2 +7.2,0.99,6.770,355.9 +7.4,0.99,6.740,0.6 +7.6,0.99,6.380,359.7 +7.8,0.99,6.220,4.7 +7.9,0.99,6.020,10.4 +7.9,0.99,6.380,13.2 +8.3,0.99,6.350,11.0 +8.6,0.99,6.670,16.0 +9.1,0.99,6.180,13.8 +9.0,0.99,6.330,14.2 +9.4,0.99,6.350,20.6 +9.1,0.99,6.940,21.2 +9.5,0.99,7.310,27.1 +10.1,0.99,7.360,29.8 +10.2,0.99,6.570,35.0 +10.0,0.99,6.950,35.0 +9.8,0.99,6.780,30.6 +10.0,0.99,7.090,31.6 +9.8,0.99,7.570,35.8 +9.3,0.99,9.360,29.3 +9.4,0.99,8.600,39.1 +9.6,0.99,7.970,29.7 +9.5,0.99,8.270,30.5 +9.3,0.99,8.200,28.2 +9.3,0.99,9.000,30.9 +8.9,0.99,8.910,18.7 +8.6,0.99,9.020,20.6 +8.2,0.99,9.680,15.4 +7.6,0.99,9.900,6.9 +6.9,0.99,11.540,1.8 +6.7,1.00,10.910,0.6 +6.4,1.00,11.760,358.7 +6.2,1.00,12.460,355.1 +5.8,1.00,13.060,354.2 +5.5,1.00,13.920,353.5 +5.0,1.00,14.280,356.5 +4.9,1.00,13.830,354.8 +4.8,1.00,14.450,354.4 +4.7,1.00,14.940,354.7 +3.9,1.00,14.900,359.1 +3.4,1.00,13.940,4.5 +2.8,1.00,13.100,10.0 +2.4,1.00,13.320,14.9 +2.3,1.00,12.670,17.9 +2.6,1.00,10.970,15.4 +3.1,1.00,9.650,11.6 +3.8,1.00,9.500,7.9 +5.1,1.00,9.050,9.2 +6.2,1.00,8.520,8.5 +6.9,1.00,8.570,8.3 +7.5,1.00,7.990,14.5 +7.8,1.00,7.720,14.5 +7.8,1.00,7.890,18.0 +7.3,1.00,8.050,23.4 +7.2,1.00,8.200,28.3 +7.1,1.00,7.940,29.1 +7.5,1.00,7.460,33.7 +7.7,1.00,7.020,31.1 +8.0,1.00,7.300,32.6 +7.3,1.00,7.770,25.7 +7.3,1.00,7.970,24.9 +7.3,1.00,8.290,24.3 +7.2,1.00,7.990,26.4 +7.3,1.00,7.800,27.7 +7.6,1.00,7.360,33.1 +8.1,1.00,6.970,39.4 +8.5,1.00,6.310,34.7 +8.2,1.00,6.860,30.1 +8.2,1.00,5.910,25.8 +8.4,1.00,5.590,25.7 +8.3,1.00,6.110,22.0 +8.9,1.00,4.770,8.3 +9.6,1.00,5.160,4.4 +10.0,1.00,6.140,6.8 +10.1,1.00,6.820,11.2 +10.1,1.00,7.800,13.6 +10.3,1.00,8.240,16.9 +10.6,1.00,8.350,21.3 +10.5,1.01,9.420,20.4 +9.9,1.01,10.620,21.9 +9.5,1.01,11.300,25.6 +9.2,1.01,11.170,30.5 +9.0,1.01,11.150,33.2 +8.4,1.01,11.180,31.3 +8.2,1.01,11.150,35.8 +7.9,1.01,11.420,34.8 +7.6,1.01,10.980,35.5 +7.0,1.01,12.140,35.5 +6.9,1.01,11.130,35.9 +6.8,1.01,10.860,38.9 +6.9,1.01,10.350,39.7 +6.3,1.01,10.240,38.8 +7.1,1.01,9.860,41.5 +6.5,1.01,8.760,31.4 +7.1,1.01,7.940,26.6 +8.5,1.01,7.210,27.5 +9.7,1.01,6.590,25.9 +10.5,1.00,6.280,29.0 +11.1,1.00,5.680,33.8 +11.6,1.00,6.190,32.7 +11.7,1.00,6.400,35.6 +11.2,1.00,7.410,31.9 +10.6,1.00,7.530,34.1 +11.1,1.00,6.900,46.2 +11.6,1.00,6.840,68.8 +12.0,1.00,6.790,80.8 +12.2,1.00,6.740,89.7 +12.5,1.00,6.060,91.3 +13.0,1.00,5.790,103.0 +13.6,1.00,6.240,116.5 +13.7,1.00,5.650,106.5 +14.3,1.00,6.180,124.2 +14.5,1.00,6.030,116.1 +15.0,1.00,6.130,123.1 +15.2,1.00,6.860,119.5 +15.7,1.00,7.050,120.3 +15.9,1.00,7.390,113.4 +16.4,0.99,8.000,115.6 +17.1,0.99,8.560,127.8 +17.6,0.99,9.570,130.6 +17.9,0.99,9.950,131.9 +18.4,0.99,10.770,141.1 +18.7,0.99,12.830,146.4 +19.0,0.99,11.560,149.5 +19.8,0.99,11.370,158.5 +19.7,0.99,13.200,175.0 +19.8,0.99,13.010,179.3 +20.3,0.99,12.420,189.1 +20.8,0.99,12.280,206.7 +19.1,0.99,10.100,246.4 +17.9,0.99,9.350,257.9 +16.7,0.99,8.730,270.4 +16.1,0.99,7.930,272.1 +15.9,0.99,7.550,290.3 +14.9,0.99,5.910,298.7 +14.9,0.99,5.730,292.3 +15.5,0.99,7.280,285.4 +14.6,0.99,6.150,283.2 +13.7,0.99,6.550,287.8 +12.8,0.99,6.460,307.8 +12.9,0.99,7.650,318.8 +13.2,0.99,8.350,317.9 +13.2,0.99,7.720,319.4 +13.8,0.99,10.550,320.1 +13.5,0.99,12.900,327.0 +10.9,0.99,15.910,331.0 +10.0,0.99,15.560,339.4 +10.4,0.99,15.300,340.0 +10.2,0.99,15.170,345.0 +8.9,1.00,14.810,340.0 +7.7,1.00,15.940,345.9 +6.3,1.00,17.930,352.5 +6.1,1.00,14.120,356.2 +5.6,1.00,13.530,356.6 +5.0,1.00,15.220,1.5 +4.3,1.00,13.710,5.0 +4.0,1.00,13.400,7.0 +3.9,1.00,13.120,6.9 +3.7,1.00,12.440,6.2 +3.6,1.00,11.770,6.7 +3.6,1.00,11.290,7.7 +3.5,1.00,10.590,8.1 +3.5,1.00,9.860,8.7 +3.7,1.00,8.830,7.9 +4.1,1.00,7.150,6.0 +4.5,1.00,6.440,352.7 +5.2,1.00,6.000,347.2 +6.6,1.00,5.600,344.6 +7.9,1.00,6.160,343.1 +8.8,1.00,6.570,339.7 +9.5,1.00,6.520,339.7 +10.0,1.00,6.150,342.6 +10.3,1.00,6.070,344.8 +10.2,1.00,5.350,348.1 +10.1,1.00,5.050,350.3 +9.9,1.00,4.060,356.1 +10.0,1.00,3.870,358.5 +10.0,1.00,3.550,359.4 +10.0,1.00,3.210,0.8 +9.4,1.00,2.780,355.4 +9.0,1.00,2.350,356.9 +8.9,1.00,2.130,345.7 +9.0,1.00,1.920,349.9 +9.2,1.00,1.560,354.2 +9.3,1.00,1.570,352.9 +9.5,1.00,1.630,357.9 +9.6,1.00,1.240,22.2 +9.7,1.00,1.100,27.7 +10.0,1.00,0.580,25.8 +10.4,1.00,0.800,6.1 +10.7,1.00,0.380,28.7 +11.1,1.00,0.250,337.5 +11.7,1.00,0.620,231.5 +12.1,1.00,0.850,190.4 +12.4,1.00,1.050,195.7 +12.7,1.00,1.670,186.6 +13.0,1.00,2.210,183.5 +13.0,1.00,2.400,186.1 +12.9,1.00,2.580,185.4 +13.0,1.00,2.450,194.7 +13.0,1.00,2.420,191.7 +13.1,1.00,2.440,194.0 +13.1,1.00,2.580,191.7 +13.3,1.00,2.680,179.9 +13.0,1.00,1.270,217.8 +12.9,1.00,1.800,249.2 +12.8,1.00,2.840,264.1 +12.6,1.00,3.920,269.2 +12.3,1.00,4.490,271.3 +12.6,1.00,4.000,278.7 +12.7,1.00,3.280,291.8 +12.8,1.00,2.990,297.9 +13.3,1.00,3.110,298.9 +13.5,1.00,3.030,304.8 +13.8,1.00,2.070,287.6 +13.6,1.00,1.710,295.5 +14.0,1.00,1.220,297.0 +14.4,1.00,0.820,2.8 +14.8,1.00,0.330,321.4 +15.1,1.00,0.220,293.8 +15.3,1.00,0.470,339.2 +15.3,1.00,0.370,37.0 +15.4,1.00,0.430,324.9 +15.1,1.00,0.320,147.0 +15.0,1.00,0.790,159.2 +14.8,1.00,1.290,190.6 +14.8,1.00,1.450,205.5 +14.7,1.00,1.470,202.4 +14.7,1.00,2.040,198.8 +14.6,1.00,1.870,206.2 +14.6,1.00,1.710,208.4 +14.2,1.00,1.210,189.2 +14.0,1.00,0.860,167.9 +14.0,1.00,0.660,180.2 +14.0,1.00,0.830,117.0 +14.3,1.00,1.480,111.4 +14.5,1.00,2.320,107.2 +14.8,1.00,2.850,98.9 +15.0,1.00,3.320,97.2 +15.1,1.00,3.550,99.2 +15.7,1.00,4.220,122.2 +15.9,1.00,4.860,125.8 +16.0,1.00,5.600,127.2 +16.1,1.00,6.560,134.3 +16.4,1.00,7.950,140.6 +16.4,1.00,8.250,142.2 +16.6,1.00,8.670,146.0 +16.7,1.00,9.330,145.3 +17.1,1.00,9.860,151.1 +17.4,1.00,10.980,151.2 +17.6,1.00,11.090,157.7 +17.7,1.00,10.560,161.6 +17.9,1.00,9.870,161.6 +18.2,0.99,10.620,161.4 +18.4,0.99,10.320,162.4 +18.8,0.99,10.710,164.2 +19.2,0.99,11.110,168.3 +19.3,0.99,10.680,163.9 +19.3,0.99,11.740,162.0 +19.8,0.99,11.700,165.4 +19.8,0.99,11.320,164.7 +20.0,0.99,11.490,162.4 +20.0,0.99,11.750,162.1 +20.3,0.99,11.700,163.4 +20.4,0.99,11.890,163.1 +19.9,0.99,11.670,161.9 +20.1,0.99,12.230,162.8 +20.3,0.99,12.980,164.6 +20.3,0.99,14.750,166.3 +20.4,0.99,14.800,167.1 +20.3,0.99,13.840,165.0 +20.3,0.99,13.860,165.3 +20.2,0.99,14.250,165.8 +20.2,0.99,13.760,167.1 +20.2,0.99,14.400,164.8 +20.1,0.99,13.440,163.3 +20.3,0.99,13.070,165.9 +20.0,0.99,11.380,165.4 +19.9,0.99,9.870,171.0 +20.5,0.99,10.500,175.6 +20.8,0.99,11.630,174.2 +21.0,0.99,12.220,174.4 +20.8,0.99,12.490,170.9 +20.8,0.99,12.270,171.4 +21.1,0.99,13.270,164.9 +21.3,0.99,12.650,160.9 +21.3,0.99,11.590,160.5 +21.3,0.99,11.910,161.3 +21.8,0.99,11.300,163.0 +21.7,0.99,12.880,149.4 +20.6,0.99,13.420,144.5 +21.0,0.99,14.110,147.5 +21.0,0.99,14.020,148.2 +20.6,0.99,13.380,151.4 +20.5,0.99,13.040,153.5 +21.0,0.99,12.320,153.0 +21.1,0.98,14.120,150.8 +20.7,0.98,13.230,152.9 +20.6,0.98,14.850,155.5 +20.2,0.98,13.320,155.9 +20.4,0.98,13.830,157.0 +20.8,0.98,14.460,160.0 +21.4,0.98,15.480,163.0 +21.2,0.98,15.460,163.3 +21.1,0.98,15.100,167.6 +21.2,0.98,13.960,177.5 +21.1,0.98,12.710,176.8 +21.2,0.98,13.120,174.3 +21.2,0.98,12.630,183.7 +21.8,0.98,14.050,187.1 +21.6,0.98,14.100,189.5 +21.7,0.98,14.200,196.0 +21.7,0.98,13.970,198.7 +21.5,0.98,12.860,206.8 +21.8,0.98,13.980,209.4 +21.9,0.98,14.450,220.2 +21.9,0.98,14.070,218.6 +20.5,0.98,8.810,250.1 +19.1,0.98,6.500,332.0 +18.4,0.98,6.180,338.5 +17.9,0.98,6.280,348.4 +18.3,0.98,6.470,353.9 +18.2,0.98,4.670,6.8 +17.6,0.99,4.180,13.9 +18.1,0.99,3.870,7.8 +17.7,0.99,3.610,21.7 +17.4,0.99,4.100,12.1 +16.8,0.99,3.810,22.4 +16.8,0.99,3.690,24.2 +16.0,0.99,5.070,12.4 +15.9,0.99,5.450,7.9 +15.6,0.99,4.040,6.1 +15.0,0.99,7.360,348.7 +15.2,0.99,7.930,344.6 +13.4,0.99,9.100,336.7 +13.5,0.99,9.720,342.1 +12.8,0.99,11.240,338.4 +12.1,0.99,11.650,338.6 +11.7,0.99,11.660,342.5 +12.2,0.99,10.020,348.8 +12.6,1.00,11.440,349.2 +11.5,1.00,11.500,353.3 +9.8,1.00,12.960,351.5 +8.8,1.00,13.140,351.0 +7.7,1.00,13.790,353.9 +6.8,1.00,13.750,358.1 +6.1,1.00,14.220,1.7 +5.1,1.00,14.090,3.1 +4.6,1.00,13.550,7.3 +4.3,1.00,13.690,8.9 +4.0,1.00,13.550,11.2 +3.7,1.00,13.400,15.3 +3.4,1.00,13.100,18.6 +3.2,1.00,12.870,17.8 +3.1,1.00,12.530,19.1 +3.1,1.00,11.650,18.9 +3.4,1.00,10.030,17.8 +4.1,1.00,9.120,11.8 +4.9,1.01,9.020,3.2 +6.3,1.01,8.750,360.0 +7.8,1.01,8.460,0.9 +8.7,1.01,9.070,1.3 +9.2,1.01,9.460,2.7 +9.2,1.01,9.600,2.7 +8.9,1.01,10.670,7.5 +8.1,1.01,10.200,10.3 +7.8,1.01,10.170,16.1 +7.6,1.01,10.530,23.5 +7.5,1.01,10.340,26.0 +7.3,1.01,10.460,28.8 +7.2,1.01,9.910,33.8 +7.0,1.01,9.500,35.0 +6.9,1.01,9.380,34.1 +6.8,1.01,9.300,36.3 +6.7,1.01,8.990,38.3 +6.9,1.01,8.470,42.8 +7.0,1.01,8.980,44.9 +7.0,1.01,8.900,46.0 +7.2,1.01,9.010,47.8 +7.3,1.01,8.940,48.4 +7.5,1.01,8.790,48.2 +7.7,1.01,8.570,48.5 +7.7,1.01,8.330,50.5 +8.6,1.01,7.290,49.8 +9.1,1.01,6.630,55.7 +9.5,1.01,6.030,61.9 +10.0,1.00,5.930,64.3 +10.5,1.00,6.040,67.6 +10.9,1.00,6.350,74.3 +11.0,1.00,6.740,80.6 +11.3,1.00,6.920,87.3 +11.6,1.00,6.970,92.3 +11.9,1.00,7.150,98.0 +12.0,1.00,7.240,100.0 +12.1,1.00,7.090,101.1 +12.3,1.00,7.150,103.3 +12.4,1.00,6.720,103.0 +12.6,1.00,6.190,101.9 +12.7,1.00,6.120,98.3 +12.7,1.00,6.060,92.8 +12.8,1.00,6.210,91.0 +12.8,1.00,6.540,83.4 +12.8,1.00,6.920,81.5 +12.7,1.00,7.110,83.0 +12.7,1.00,6.970,82.9 +12.7,1.00,6.290,87.3 +12.7,1.00,7.220,72.6 +12.6,1.00,7.180,73.8 +12.6,1.00,6.610,73.9 +12.5,1.00,6.950,74.2 +12.6,1.00,7.080,78.9 +13.0,1.00,6.460,77.6 +13.3,1.00,7.140,74.4 +13.3,1.00,6.880,66.9 +13.3,1.00,6.840,59.5 +13.4,1.00,6.290,50.7 +13.1,1.00,6.890,46.1 +12.8,1.00,6.770,42.8 +12.6,1.00,6.800,46.1 +12.3,1.00,6.240,36.2 +11.6,1.00,7.780,35.2 +11.1,1.00,7.320,41.0 +11.1,1.00,7.220,47.0 +11.5,1.00,7.450,53.0 +11.7,1.00,7.790,51.4 +11.3,1.00,8.110,45.2 +11.1,1.00,7.530,45.6 +10.3,1.00,7.960,39.2 +10.3,1.00,7.800,46.1 +10.3,1.00,7.410,46.0 +10.5,1.00,6.890,45.1 +11.5,1.00,6.420,48.5 +12.1,1.00,6.530,54.4 +12.4,1.00,6.080,65.0 +12.7,1.00,5.240,76.8 +13.1,1.00,4.270,65.8 +13.3,1.00,4.090,55.2 +13.3,1.00,4.380,44.9 +13.2,1.00,5.180,34.1 +12.8,1.00,6.310,31.9 +12.7,1.00,6.860,37.2 +12.7,1.00,7.020,46.0 +12.8,1.00,6.400,48.5 +12.7,1.00,6.770,49.8 +12.5,1.00,6.900,47.6 +12.2,1.00,7.050,47.4 +12.1,1.00,7.460,51.9 +11.9,1.00,8.260,48.5 +11.7,1.00,8.740,49.2 +11.5,1.00,8.560,48.2 +11.4,1.00,8.640,49.5 +11.2,1.00,9.130,47.9 +11.1,1.00,7.880,51.6 +11.0,1.00,7.580,43.1 +10.8,1.00,7.400,40.2 +11.3,1.00,6.660,42.4 +11.8,1.00,6.520,42.4 +12.3,1.00,6.610,43.6 +12.7,1.00,6.560,40.8 +13.0,1.00,6.800,41.9 +13.6,1.00,6.940,42.0 +13.4,1.00,7.480,33.8 +13.1,1.00,8.290,35.1 +12.5,1.00,8.230,29.4 +12.3,1.00,8.450,41.1 +12.2,1.00,8.250,43.9 +12.0,1.00,8.220,46.4 +11.8,1.00,8.690,49.9 +11.6,1.00,8.510,45.1 +11.4,1.00,7.960,42.9 +11.2,1.00,7.660,41.5 +11.3,1.00,7.130,49.5 +11.6,1.00,6.420,55.4 +11.7,1.00,5.660,50.6 +11.6,1.00,5.650,44.6 +10.5,1.00,5.610,26.9 +10.3,1.00,5.180,27.4 +10.4,1.00,5.250,22.9 +10.4,1.00,4.790,17.7 +11.0,1.00,3.650,9.7 +11.6,1.00,2.720,12.3 +12.0,0.99,1.690,11.4 +12.3,0.99,1.280,325.8 +12.5,0.99,1.610,290.9 +12.7,0.99,1.610,303.1 +13.0,0.99,1.930,287.9 +13.0,0.99,1.880,294.3 +12.9,0.99,2.140,298.9 +12.7,0.99,2.210,302.9 +12.6,0.99,1.910,297.1 +12.5,0.99,2.130,290.9 +12.4,0.99,2.380,282.7 +12.3,0.99,3.260,277.3 +12.3,0.99,3.290,292.3 +12.5,0.99,3.230,274.4 +12.1,0.99,2.430,279.8 +12.2,0.99,2.040,278.7 +12.4,0.99,1.800,275.0 +12.2,0.99,1.060,267.1 +12.1,0.99,0.290,275.1 +12.4,0.99,0.500,318.3 +12.5,0.99,0.280,45.7 +12.6,0.99,0.980,32.4 +12.9,0.99,1.340,61.9 +13.4,0.99,1.470,66.7 +13.8,0.99,1.960,86.6 +14.1,0.99,2.030,107.7 +14.5,0.99,1.670,116.9 +14.6,0.99,1.590,96.5 +14.5,0.99,2.040,116.2 +14.5,0.99,2.270,76.9 +14.4,0.99,3.580,57.9 +14.3,1.00,2.750,58.1 +14.5,1.00,2.500,53.1 +15.2,1.00,2.680,61.8 +10.9,1.00,9.710,353.1 +10.0,1.00,9.780,352.3 +9.1,1.00,10.290,349.8 +8.4,1.00,9.850,350.6 +8.1,1.00,9.960,353.5 +7.9,1.00,9.740,355.5 +7.5,1.00,9.420,355.7 +7.0,1.00,9.390,351.6 +6.9,1.00,8.960,351.7 +6.7,1.00,7.990,343.2 +6.6,1.00,8.430,346.9 +6.7,1.00,8.340,344.8 +7.1,1.00,7.980,347.5 +7.6,1.00,7.970,347.1 +8.2,1.00,7.860,346.8 +8.5,1.00,7.420,349.3 +8.7,1.00,7.270,348.9 +8.7,1.00,7.100,357.4 +8.3,1.00,7.930,2.7 +8.0,1.00,8.340,7.7 +7.7,1.00,8.020,7.1 +7.5,1.00,8.290,8.8 +7.2,1.00,8.340,10.6 +7.0,1.00,8.650,11.3 +6.6,1.00,9.260,14.6 +6.5,1.00,8.890,18.7 +6.5,1.00,8.910,21.2 +6.5,1.00,8.990,23.6 +6.4,1.00,8.610,24.7 +6.4,1.00,8.360,28.5 +6.6,1.00,8.240,30.5 +6.5,1.00,8.160,32.0 +6.6,1.00,7.840,31.8 +6.6,1.00,7.030,31.2 +6.7,1.00,6.060,31.2 +6.9,1.00,5.420,26.9 +7.5,1.00,4.930,25.7 +8.1,1.00,4.460,23.6 +8.6,1.00,4.090,23.0 +9.1,1.00,3.810,24.9 +9.6,1.00,3.450,35.6 +19.9,0.99,11.030,167.5 +20.3,0.99,12.970,167.3 +20.3,0.99,13.370,169.2 +20.3,0.99,13.860,169.5 +20.2,0.99,13.540,172.9 +20.3,0.99,13.990,177.4 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw deleted file mode 100644 index cda6d99dd..000000000 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw +++ /dev/null @@ -1,8765 +0,0 @@ -1052613,city??,TX,country??,2013,32.3187141418,-100.181152344,Not Available,1,8760 -WIND Toolkit data from NREL downloaded on 2024-10-21 -Temperature,Pressure,Speed,Direction,Temperature,Pressure,Speed,Direction -C,atm,m/s,Degrees,C,atm,m/s,Degrees -100,100,100,100,120,120,120,120 -10.1,0.91,9.780,300.7,10.2,0.91,10.210,301.8 -3.4,0.91,6.670,11.6,3.8,0.91,6.760,12.0 -2.9,0.91,5.490,18.0,2.8,0.91,5.720,18.7 -3.4,0.91,4.840,19.7,3.3,0.91,4.960,20.5 -3.0,0.91,6.270,22.7,2.9,0.91,6.360,23.3 -2.0,0.91,6.980,7.1,1.8,0.91,7.170,7.5 -0.7,0.91,7.500,4.0,0.6,0.91,7.550,4.1 --0.8,0.91,8.190,3.8,-1.0,0.91,8.400,4.1 --2.5,0.91,8.300,15.3,-2.7,0.91,8.700,15.6 --3.0,0.91,7.710,11.7,-3.2,0.91,7.760,12.1 --2.4,0.91,7.400,11.7,-2.6,0.91,7.430,11.6 --1.3,0.91,6.610,4.2,-1.5,0.91,6.640,4.0 --0.3,0.91,6.930,359.1,-0.5,0.91,6.940,358.8 -0.8,0.91,5.970,354.5,0.6,0.91,6.010,354.1 -1.8,0.91,6.030,354.5,1.6,0.91,6.070,354.0 -2.4,0.91,5.790,356.3,2.2,0.91,5.830,355.9 -2.5,0.91,5.570,358.2,2.3,0.91,5.620,357.9 -2.2,0.91,5.240,3.8,2.0,0.91,5.300,3.4 -1.6,0.91,5.240,0.3,1.5,0.91,5.350,0.9 -1.2,0.91,7.040,4.0,1.1,0.91,7.260,3.6 -0.8,0.91,7.720,2.0,0.7,0.91,7.750,2.7 -0.3,0.91,7.580,5.0,0.2,0.91,7.760,6.2 --0.2,0.91,7.200,16.4,-0.4,0.91,7.430,17.1 --0.8,0.91,7.960,19.0,-1.0,0.91,8.100,20.3 --1.6,0.91,7.340,29.8,-1.7,0.91,7.530,32.1 --2.0,0.91,6.620,33.7,-2.2,0.91,6.790,32.8 --2.5,0.91,6.210,26.3,-2.6,0.91,6.320,24.5 --2.9,0.91,5.090,32.4,-3.0,0.91,5.250,29.8 --3.1,0.91,4.510,29.3,-3.1,0.91,4.750,25.6 --3.1,0.91,4.150,21.4,-3.1,0.91,4.440,19.4 --3.4,0.91,3.050,37.3,-3.4,0.91,3.360,33.6 --3.4,0.91,2.520,25.6,-3.4,0.91,2.840,24.3 --3.3,0.91,2.520,13.8,-3.3,0.91,2.810,15.0 --3.0,0.91,1.780,354.6,-3.0,0.91,2.180,358.3 --1.5,0.91,1.810,342.4,-1.7,0.91,1.830,340.8 --0.0,0.91,2.230,338.5,-0.2,0.91,2.240,337.4 -1.5,0.91,2.550,334.9,1.3,0.91,2.560,334.7 -2.6,0.91,3.020,328.8,2.4,0.91,3.030,329.5 -3.7,0.91,2.980,342.7,3.5,0.91,3.010,342.5 -4.3,0.91,3.410,357.6,4.1,0.91,3.420,356.6 -4.5,0.91,3.800,7.0,4.3,0.91,3.790,6.0 -4.4,0.91,3.570,5.2,4.2,0.91,3.570,5.3 -3.9,0.91,3.690,40.3,3.8,0.91,3.710,39.1 -3.4,0.91,3.360,45.7,3.3,0.91,3.650,45.0 -2.9,0.91,3.150,52.3,2.9,0.91,3.510,51.0 -2.7,0.91,2.890,39.3,2.7,0.91,3.240,39.6 -2.3,0.91,3.270,41.9,2.4,0.91,3.610,42.8 -1.9,0.91,3.260,49.6,2.0,0.91,3.630,49.2 -2.2,0.91,3.320,41.0,2.2,0.91,3.680,40.0 -2.2,0.92,3.590,35.1,2.3,0.92,4.010,35.6 -1.9,0.92,3.720,32.2,2.0,0.92,4.170,33.4 -1.2,0.92,4.270,33.6,1.3,0.92,4.730,34.4 --0.1,0.92,4.800,17.5,-0.0,0.92,5.050,19.6 --0.5,0.92,5.770,24.5,-0.3,0.92,6.090,26.4 --1.2,0.92,6.420,29.1,-1.1,0.92,6.870,30.8 --2.0,0.92,6.810,34.0,-1.9,0.92,7.110,37.4 --2.5,0.92,6.930,38.6,-2.3,0.92,7.290,41.5 --2.5,0.92,6.220,34.5,-2.4,0.92,6.870,36.0 --1.4,0.92,5.530,32.5,-1.6,0.92,5.660,32.6 --0.1,0.92,6.140,35.4,-0.3,0.92,6.210,35.3 -1.1,0.92,6.120,36.7,0.9,0.92,6.170,36.5 -1.9,0.92,5.350,32.5,1.7,0.92,5.390,32.4 -2.4,0.92,5.260,36.1,2.2,0.92,5.300,36.1 -2.6,0.92,4.510,32.1,2.5,0.92,4.540,32.3 -2.7,0.92,4.160,30.2,2.5,0.92,4.180,30.4 -2.7,0.92,4.030,41.0,2.5,0.92,4.070,41.2 -2.5,0.92,3.990,61.4,2.3,0.92,4.010,60.6 -2.3,0.92,3.840,61.6,2.2,0.92,3.780,60.9 -2.1,0.92,2.540,55.8,2.0,0.92,2.750,55.9 -1.8,0.92,2.340,70.1,1.7,0.92,2.580,71.0 -1.6,0.92,1.710,60.6,1.5,0.92,1.960,64.3 -1.3,0.92,1.660,71.5,1.2,0.92,1.890,73.8 -1.1,0.92,1.190,92.3,1.1,0.92,1.450,91.6 -1.0,0.92,0.700,94.3,0.9,0.92,0.940,90.8 -1.0,0.92,1.330,174.2,0.8,0.92,1.390,164.5 -0.8,0.92,2.190,171.5,0.7,0.92,2.280,166.2 -0.6,0.92,3.480,173.5,0.5,0.92,3.590,170.4 -0.3,0.92,5.550,170.9,0.2,0.92,5.700,170.7 --0.5,0.92,4.400,165.4,-0.6,0.92,4.470,161.6 --0.8,0.92,3.690,174.8,-1.0,0.92,3.960,171.5 --0.8,0.92,3.520,159.5,-0.9,0.92,3.150,158.5 --0.5,0.92,2.520,223.1,-0.7,0.92,2.530,220.3 -0.5,0.92,3.320,182.6,0.3,0.92,3.390,181.8 -1.1,0.92,4.310,172.1,0.9,0.92,4.350,171.9 -1.8,0.92,4.640,178.3,1.6,0.92,4.680,177.9 -2.5,0.92,4.660,183.7,2.3,0.92,4.710,183.5 -3.1,0.92,4.480,187.9,2.9,0.92,4.530,187.9 -3.6,0.92,4.510,191.0,3.4,0.92,4.550,190.7 -3.7,0.92,4.450,196.7,3.5,0.92,4.470,196.4 -3.7,0.92,4.710,193.2,3.5,0.92,4.740,193.3 -3.6,0.92,4.930,198.8,3.4,0.92,4.970,199.6 -3.4,0.92,4.820,192.0,3.2,0.92,4.810,192.4 -3.0,0.92,6.390,197.6,2.8,0.92,6.540,198.1 -2.8,0.92,6.760,201.0,2.6,0.92,7.200,200.9 -2.7,0.92,7.030,205.4,2.6,0.92,7.260,206.2 -2.2,0.91,7.500,208.0,2.1,0.91,7.780,208.3 -1.7,0.91,9.270,220.4,1.6,0.91,9.600,220.2 -1.3,0.91,9.320,217.8,1.2,0.91,9.690,218.3 -0.9,0.91,10.630,225.0,0.9,0.91,10.990,226.2 -0.5,0.91,10.750,228.3,0.5,0.91,11.160,229.1 -0.2,0.91,11.340,228.6,0.2,0.91,11.720,229.2 --0.0,0.91,10.680,232.6,0.0,0.91,11.260,234.2 --0.3,0.91,10.880,229.5,-0.1,0.91,11.540,232.3 --0.5,0.91,10.870,228.8,-0.3,0.91,11.600,231.9 --0.3,0.91,11.520,231.6,0.0,0.91,12.170,234.7 --0.2,0.91,10.280,234.7,-0.1,0.91,10.850,236.6 -1.6,0.91,8.330,240.3,1.4,0.91,8.420,240.9 -3.6,0.91,7.760,239.7,3.4,0.91,7.800,240.1 -5.4,0.91,6.430,237.8,5.2,0.91,6.480,238.1 -6.8,0.91,5.830,240.0,6.6,0.91,5.860,240.4 -8.1,0.91,6.760,241.4,7.9,0.91,6.790,241.8 -9.0,0.91,5.750,255.5,8.8,0.91,5.810,255.9 -9.5,0.91,6.340,258.9,9.3,0.91,6.400,259.1 -9.3,0.91,5.510,278.6,9.1,0.91,5.640,278.6 -9.0,0.91,6.540,277.3,8.8,0.91,6.620,277.1 -9.2,0.91,5.800,278.1,9.1,0.91,5.850,282.1 -9.6,0.91,6.310,297.4,9.5,0.91,6.280,299.9 -9.2,0.91,6.230,348.9,9.1,0.91,6.160,351.1 -8.5,0.91,6.160,8.2,8.4,0.91,6.310,9.2 -7.3,0.91,8.160,1.9,7.3,0.91,8.290,5.8 -6.6,0.92,8.850,358.1,6.6,0.92,9.010,359.0 -4.2,0.92,11.970,13.8,4.0,0.92,12.660,16.4 -2.9,0.92,11.900,14.0,2.9,0.92,12.480,17.3 -2.1,0.92,11.640,13.2,2.1,0.92,12.100,17.4 -1.7,0.92,11.020,14.6,1.7,0.92,11.290,18.7 -1.4,0.92,10.820,14.5,1.5,0.92,11.190,18.4 -1.3,0.92,10.730,17.1,1.4,0.92,11.070,20.8 -1.1,0.92,10.350,17.6,1.1,0.92,10.660,21.1 -1.0,0.92,10.090,18.8,1.1,0.92,10.210,21.9 -0.6,0.92,8.010,17.1,0.7,0.92,8.540,19.4 -1.3,0.92,6.020,16.6,1.2,0.92,6.170,17.3 -2.8,0.92,5.490,21.7,2.6,0.92,5.510,21.8 -4.2,0.92,4.910,24.0,4.0,0.92,4.930,23.9 -5.3,0.92,4.140,26.7,5.1,0.92,4.150,26.8 -6.4,0.92,3.790,29.3,6.2,0.92,3.810,29.5 -7.1,0.92,2.990,35.1,6.9,0.92,3.000,35.1 -7.3,0.92,3.060,50.5,7.1,0.92,3.050,50.1 -7.0,0.92,2.890,58.4,6.8,0.92,2.810,58.9 -6.6,0.92,3.110,72.4,6.5,0.92,3.100,71.8 -6.4,0.92,2.700,88.4,6.3,0.92,2.640,89.9 -6.1,0.92,3.180,95.2,6.0,0.92,3.230,95.8 -6.2,0.92,3.740,117.7,6.1,0.92,3.900,119.8 -5.8,0.92,4.470,134.7,5.7,0.92,4.440,135.0 -5.6,0.91,5.980,146.7,5.5,0.91,6.070,148.5 -5.5,0.91,7.570,160.3,5.5,0.91,7.650,160.8 -5.2,0.91,9.000,166.4,5.2,0.91,9.210,167.1 -4.6,0.91,9.720,168.4,4.8,0.91,9.970,168.6 -4.4,0.91,10.230,170.4,4.7,0.91,10.540,170.3 -4.2,0.91,10.210,171.1,4.5,0.91,10.560,171.0 -3.9,0.91,10.070,174.8,4.3,0.91,10.430,173.9 -3.4,0.91,10.240,174.2,3.8,0.91,10.670,173.2 -3.2,0.91,10.110,172.9,3.7,0.91,10.620,172.2 -3.1,0.91,9.620,171.4,3.5,0.91,10.060,170.6 -2.4,0.91,8.960,173.0,2.9,0.91,9.700,172.5 -3.0,0.91,7.170,172.1,3.0,0.91,7.900,171.1 -4.2,0.91,6.440,168.2,4.0,0.91,6.530,168.0 -5.1,0.91,6.170,168.8,4.9,0.91,6.230,168.8 -6.3,0.91,6.490,167.9,6.1,0.91,6.550,167.8 -7.3,0.91,6.150,165.3,7.1,0.91,6.210,165.2 -7.8,0.91,5.990,157.8,7.6,0.91,6.060,157.8 -7.8,0.91,6.450,155.7,7.6,0.91,6.520,155.8 -7.4,0.91,6.360,151.1,7.2,0.91,6.560,151.2 -6.9,0.91,5.600,147.4,6.7,0.91,6.090,148.6 -6.3,0.91,7.530,146.1,6.2,0.91,7.990,146.7 -6.1,0.91,9.330,145.9,6.0,0.91,9.920,146.3 -5.9,0.91,10.050,152.1,5.8,0.91,10.720,152.4 -5.7,0.91,10.070,154.8,5.6,0.91,10.770,154.9 -5.2,0.91,9.370,153.9,5.2,0.91,10.260,154.4 -4.9,0.91,9.880,158.5,4.9,0.91,10.810,159.4 -4.7,0.91,10.480,164.9,4.7,0.91,11.340,166.1 -4.2,0.91,9.550,168.0,4.3,0.91,10.460,169.6 -3.7,0.91,8.920,167.6,3.8,0.91,9.750,169.6 -3.9,0.91,9.240,176.3,4.0,0.91,9.730,178.2 -5.0,0.91,7.800,186.9,5.3,0.91,8.380,187.4 -4.5,0.91,6.230,173.8,4.7,0.91,6.780,174.2 -5.0,0.91,5.390,165.0,5.3,0.91,5.820,165.3 -5.0,0.91,3.720,152.5,5.2,0.91,4.030,154.3 -4.3,0.91,3.070,132.1,4.4,0.91,3.530,137.3 -4.7,0.91,3.020,116.5,5.0,0.91,3.430,120.5 -4.7,0.91,3.150,98.0,4.8,0.91,3.560,103.7 -3.9,0.91,3.110,83.0,4.1,0.91,3.410,88.7 -4.1,0.91,4.050,78.4,4.3,0.91,4.610,82.8 -4.2,0.91,3.710,73.2,4.4,0.91,4.350,80.0 -4.0,0.91,4.220,61.5,4.0,0.91,4.590,67.3 -3.7,0.91,3.970,46.2,3.6,0.91,4.210,50.3 -3.6,0.91,4.570,46.4,3.6,0.91,4.900,49.2 -3.7,0.91,4.640,37.4,3.7,0.91,4.920,40.4 -3.7,0.91,5.400,41.0,3.6,0.91,5.600,42.6 -3.7,0.91,7.110,37.4,3.6,0.91,7.330,38.6 -3.6,0.91,7.980,36.2,3.5,0.91,8.120,37.4 -3.5,0.91,7.990,37.4,3.3,0.91,8.180,37.9 -3.5,0.91,8.880,32.4,3.4,0.91,9.270,33.4 -3.5,0.91,9.180,29.1,3.5,0.91,9.640,30.2 -3.7,0.91,9.380,30.2,3.7,0.91,9.860,31.4 -3.9,0.91,8.990,34.7,3.8,0.91,9.390,35.5 -4.0,0.91,9.220,21.4,4.0,0.91,9.590,23.4 -4.1,0.91,10.750,24.9,4.1,0.91,11.250,26.5 -4.2,0.91,8.770,29.6,4.1,0.91,9.140,29.9 -4.0,0.91,8.760,21.3,4.0,0.91,9.140,22.0 -3.9,0.91,9.460,23.4,3.8,0.91,9.920,23.6 -4.1,0.91,8.990,18.9,4.0,0.91,9.450,19.4 -3.7,0.91,10.210,23.1,3.5,0.91,10.630,23.8 -3.6,0.91,10.400,17.2,3.4,0.91,10.760,18.3 -3.3,0.91,7.680,18.1,3.1,0.91,7.930,18.8 -2.6,0.91,8.510,6.7,2.4,0.91,8.760,8.1 -2.3,0.91,10.140,8.3,2.2,0.91,10.530,9.7 -2.5,0.91,10.130,11.7,2.4,0.91,10.590,12.6 -2.7,0.91,10.120,16.3,2.6,0.91,10.610,17.6 -2.9,0.91,11.070,14.4,2.8,0.91,11.660,15.6 -3.1,0.91,9.630,21.2,3.0,0.91,10.100,22.2 -3.5,0.91,9.830,31.8,3.4,0.91,10.230,32.4 -3.7,0.91,8.160,23.8,3.6,0.91,8.530,24.5 -3.9,0.91,7.070,22.8,3.8,0.91,7.360,23.4 -4.0,0.91,6.400,7.4,3.9,0.91,6.660,8.6 -4.0,0.91,5.600,12.5,3.9,0.91,5.900,13.3 -4.1,0.91,4.580,4.0,4.1,0.91,4.770,7.8 -4.2,0.91,3.250,340.7,4.2,0.91,3.250,348.0 -4.7,0.91,3.380,357.9,5.0,0.91,3.130,2.2 -3.9,0.91,4.280,354.3,4.0,0.91,4.000,357.2 -4.4,0.91,2.810,322.9,4.6,0.91,2.680,325.3 -4.8,0.91,1.810,336.7,5.0,0.91,1.600,331.3 -6.0,0.91,1.970,241.9,6.1,0.91,2.140,232.6 -5.9,0.91,2.750,242.4,6.0,0.91,2.840,236.4 -5.4,0.91,5.050,249.3,5.5,0.91,5.340,247.9 -4.9,0.91,5.640,263.3,5.0,0.91,6.010,265.5 -5.1,0.91,4.970,288.9,5.0,0.91,5.500,289.0 -5.6,0.91,4.270,263.7,5.5,0.91,4.790,266.0 -6.7,0.91,6.000,259.2,6.5,0.91,6.050,259.7 -7.5,0.91,5.310,276.4,7.3,0.91,5.380,276.4 -9.3,0.91,5.940,276.7,9.1,0.91,6.060,276.5 -9.9,0.91,6.920,268.9,9.7,0.91,7.000,268.9 -10.2,0.91,5.790,264.2,10.0,0.91,5.880,264.3 -10.7,0.91,5.520,246.8,10.5,0.91,5.610,246.9 -10.8,0.90,6.650,238.0,10.6,0.90,6.850,238.3 -10.8,0.90,6.580,232.9,10.7,0.90,6.730,232.8 -11.2,0.90,9.280,226.2,11.1,0.90,9.520,226.4 -11.8,0.90,11.150,216.2,11.9,0.90,11.390,216.8 -10.5,0.90,12.670,216.0,10.7,0.90,13.220,219.3 -11.4,0.90,13.400,222.1,11.7,0.90,13.790,223.1 -11.6,0.90,13.840,215.6,12.2,0.90,14.530,215.7 -11.0,0.90,14.590,212.5,11.4,0.90,15.760,215.2 -9.6,0.90,16.710,215.8,10.0,0.90,17.930,217.7 -10.9,0.90,19.540,215.3,11.2,0.90,20.540,215.4 -11.3,0.90,19.370,210.4,11.5,0.90,20.420,210.2 -9.7,0.90,19.010,201.8,10.0,0.90,20.160,202.7 -9.7,0.90,18.720,202.3,10.1,0.90,20.050,203.1 -9.1,0.90,18.640,201.0,9.3,0.90,19.970,202.1 -8.5,0.90,17.890,201.0,8.8,0.90,19.260,202.2 -8.3,0.90,17.210,200.2,8.5,0.90,18.340,201.0 -9.3,0.90,17.990,202.3,9.4,0.90,18.730,202.9 -10.1,0.90,16.470,202.8,10.0,0.90,17.270,203.4 -11.6,0.90,12.870,202.4,11.5,0.90,13.080,202.9 -13.3,0.90,11.630,201.7,13.1,0.90,11.740,202.0 -14.9,0.90,10.200,203.2,14.7,0.90,10.320,203.5 -16.1,0.90,11.080,204.9,16.0,0.90,11.170,205.1 -17.5,0.90,9.630,205.9,17.3,0.90,9.760,206.2 -17.4,0.90,8.610,199.8,17.2,0.90,8.780,200.2 -16.9,0.90,9.880,198.9,16.8,0.90,10.520,200.8 -16.7,0.90,12.630,201.6,16.6,0.90,13.330,202.2 -16.0,0.90,11.680,197.1,16.0,0.90,12.250,198.7 -15.3,0.90,11.130,196.3,15.3,0.90,11.860,198.0 -14.8,0.90,10.670,201.7,14.8,0.90,11.340,203.6 -14.3,0.90,9.410,205.8,14.4,0.90,10.010,207.7 -14.1,0.90,7.940,215.5,14.2,0.90,8.260,219.2 -14.7,0.90,5.490,255.0,14.9,0.90,5.820,267.9 -13.1,0.90,6.930,328.9,13.2,0.90,7.190,326.1 -12.8,0.90,8.050,348.3,12.7,0.90,8.340,350.7 -10.1,0.90,10.410,10.1,9.9,0.90,10.640,10.5 -8.4,0.90,7.790,18.1,8.3,0.90,8.020,18.8 -7.4,0.90,7.340,29.2,7.2,0.90,7.540,29.4 -6.4,0.90,8.530,29.4,6.3,0.90,8.990,29.3 -6.0,0.90,9.190,22.0,5.8,0.90,9.630,23.0 -5.8,0.90,9.450,28.5,5.6,0.90,9.880,29.2 -5.4,0.90,10.320,32.8,5.2,0.90,10.640,33.1 -5.0,0.90,9.560,23.7,4.9,0.90,9.650,23.9 -5.1,0.90,9.570,32.9,5.0,0.90,9.630,33.0 -5.7,0.90,8.610,22.0,5.5,0.90,8.670,22.1 -6.1,0.90,8.470,14.8,5.9,0.90,8.510,14.9 -6.3,0.90,7.680,11.0,6.1,0.90,7.720,10.8 -6.7,0.90,7.920,12.3,6.5,0.90,7.960,12.2 -6.6,0.90,8.120,16.8,6.4,0.90,8.180,16.6 -6.1,0.90,8.090,19.4,5.9,0.90,8.150,19.4 -5.0,0.90,8.960,23.6,4.9,0.90,9.290,23.4 -3.6,0.90,9.880,19.1,3.4,0.90,10.390,19.4 -2.4,0.90,9.680,18.0,2.3,0.90,10.140,18.4 -1.3,0.90,9.250,30.0,1.1,0.90,9.820,29.5 --0.5,0.90,11.410,30.0,-0.7,0.90,11.670,29.0 --1.6,0.90,10.850,29.9,-1.8,0.90,11.460,29.9 --2.5,0.91,10.580,27.9,-2.6,0.91,11.200,28.5 --3.2,0.91,11.090,26.0,-3.4,0.91,11.670,27.0 --3.9,0.91,11.090,28.0,-4.1,0.91,11.630,28.6 --4.3,0.91,10.350,26.4,-4.5,0.91,10.770,26.6 --4.4,0.91,8.390,17.1,-4.6,0.91,8.680,16.7 --4.8,0.91,8.640,9.2,-5.0,0.91,8.750,9.3 --5.2,0.91,9.160,5.2,-5.4,0.91,9.270,5.3 --5.4,0.91,9.230,13.7,-5.6,0.91,9.360,13.8 --5.5,0.91,8.850,13.7,-5.7,0.91,8.990,13.9 --5.2,0.91,7.750,13.5,-5.4,0.91,7.800,13.5 --4.4,0.91,8.340,15.3,-4.5,0.91,8.390,15.2 --3.5,0.91,8.490,18.1,-3.7,0.91,8.530,17.9 --2.5,0.91,7.890,19.6,-2.7,0.91,7.940,19.6 --1.6,0.91,7.230,21.4,-1.8,0.91,7.270,21.4 --0.8,0.91,6.930,21.2,-1.1,0.91,6.970,21.2 --0.5,0.91,6.620,26.5,-0.7,0.91,6.660,26.4 --0.4,0.91,6.890,32.3,-0.6,0.91,6.940,32.2 --0.8,0.91,6.790,35.4,-1.0,0.91,6.870,35.4 --1.2,0.91,7.820,30.7,-1.4,0.91,7.780,31.3 --1.8,0.91,8.080,46.0,-1.9,0.91,8.490,47.1 --2.4,0.91,9.730,50.9,-2.4,0.91,10.080,51.7 --3.2,0.91,8.620,50.9,-3.3,0.91,9.130,51.8 --3.6,0.91,8.980,48.9,-3.7,0.91,9.590,49.6 --4.0,0.91,9.330,50.9,-4.2,0.91,9.820,52.1 --4.6,0.91,9.590,53.9,-4.8,0.91,10.080,55.1 --5.1,0.91,9.440,54.8,-5.3,0.91,9.870,55.8 --5.6,0.91,8.890,54.2,-5.8,0.91,9.170,55.0 --6.0,0.91,8.520,53.7,-6.2,0.91,8.830,54.5 --6.3,0.91,7.670,47.1,-6.4,0.91,7.950,47.9 --6.6,0.91,6.960,39.2,-6.8,0.91,7.100,40.3 --7.0,0.91,7.080,40.0,-7.2,0.91,7.220,40.9 --7.3,0.91,6.930,35.5,-7.5,0.91,7.180,36.8 --7.7,0.91,7.250,33.2,-7.9,0.91,7.470,34.5 --7.5,0.91,6.930,36.5,-7.7,0.91,6.950,37.0 --6.7,0.91,6.910,39.7,-6.9,0.91,6.930,39.9 --5.5,0.91,6.960,41.4,-5.7,0.91,6.990,41.6 --4.3,0.91,6.700,44.0,-4.5,0.91,6.720,44.2 --3.1,0.91,6.500,46.9,-3.3,0.91,6.520,47.2 --2.4,0.91,6.360,48.2,-2.6,0.91,6.380,48.6 --1.9,0.91,6.100,48.5,-2.1,0.91,6.130,48.9 --1.8,0.91,6.350,47.9,-1.9,0.91,6.390,48.4 --1.9,0.91,6.430,53.0,-2.0,0.91,6.570,53.5 --2.4,0.91,7.960,55.4,-2.5,0.91,7.880,55.2 --2.8,0.91,8.160,57.4,-2.9,0.91,8.460,58.8 --3.5,0.91,8.060,58.6,-3.5,0.91,8.510,58.7 --3.5,0.91,7.990,55.4,-3.5,0.91,8.150,55.7 --3.6,0.91,7.690,54.9,-3.6,0.91,8.070,54.5 --4.0,0.91,6.940,54.1,-3.8,0.91,7.460,54.3 --4.2,0.91,6.060,54.4,-4.0,0.91,6.620,55.0 --4.7,0.91,5.380,46.4,-4.5,0.91,5.780,48.6 --4.7,0.91,5.070,45.5,-4.5,0.91,5.470,48.3 --5.5,0.91,5.120,35.8,-5.5,0.91,5.330,41.4 --5.9,0.91,5.300,23.7,-5.8,0.91,5.440,30.0 --6.3,0.91,4.990,25.1,-6.1,0.91,5.270,31.3 --6.3,0.91,5.530,13.8,-6.2,0.91,5.890,18.7 --6.7,0.91,6.270,4.9,-6.8,0.91,6.560,7.0 --7.0,0.91,6.250,8.0,-7.0,0.91,6.610,10.5 --6.6,0.91,6.330,10.4,-6.8,0.91,6.410,10.7 --5.5,0.91,5.710,10.1,-5.7,0.91,5.740,10.3 --4.0,0.91,6.870,7.0,-4.2,0.91,6.910,7.1 --2.7,0.91,7.640,4.0,-2.9,0.91,7.700,4.2 --1.8,0.91,7.310,2.7,-2.0,0.91,7.360,2.9 --1.0,0.91,7.540,0.8,-1.2,0.91,7.620,0.7 --0.6,0.91,7.550,358.7,-0.8,0.91,7.640,358.4 --0.5,0.91,8.300,355.4,-0.7,0.91,8.350,355.4 --0.8,0.91,7.700,349.9,-0.9,0.91,7.900,350.1 --0.9,0.91,8.530,351.4,-1.1,0.91,8.500,351.6 --1.1,0.91,7.620,352.9,-1.2,0.91,7.810,353.2 --1.2,0.91,7.530,357.5,-1.3,0.91,7.730,356.9 --1.2,0.91,6.960,358.1,-1.4,0.91,7.170,358.3 --1.3,0.91,6.590,353.4,-1.5,0.91,6.770,352.9 --1.4,0.91,6.690,343.1,-1.5,0.91,6.990,344.0 --1.2,0.91,6.790,341.2,-1.3,0.91,6.960,342.6 --1.0,0.91,6.500,335.8,-1.1,0.91,6.590,337.6 --0.9,0.91,6.210,326.0,-0.9,0.91,6.460,328.9 --1.4,0.91,5.360,311.1,-1.2,0.91,5.650,315.2 --1.2,0.91,5.790,298.9,-1.2,0.91,5.790,301.1 --1.7,0.91,7.740,298.7,-1.6,0.91,7.740,301.4 --1.9,0.91,9.030,302.7,-1.7,0.91,8.910,306.2 --1.3,0.91,8.740,306.4,-1.1,0.91,8.640,309.2 --1.3,0.91,9.420,295.4,-1.1,0.91,9.080,298.9 --1.0,0.91,8.270,289.5,-0.7,0.91,8.830,291.8 -0.4,0.91,6.210,281.9,0.2,0.91,6.490,282.6 -1.4,0.91,7.410,291.3,1.2,0.91,7.500,291.5 -2.9,0.91,7.620,299.8,2.8,0.91,7.720,300.0 -4.3,0.91,8.490,304.8,4.1,0.91,8.610,304.9 -5.3,0.91,8.810,310.6,5.1,0.91,8.960,310.6 -6.4,0.91,9.160,306.1,6.2,0.91,9.320,306.3 -6.8,0.91,9.820,326.3,6.6,0.91,10.030,326.2 -7.3,0.91,8.900,322.6,7.1,0.91,9.240,322.4 -7.8,0.91,11.690,322.1,7.7,0.91,12.290,322.6 -7.7,0.91,10.740,329.5,7.7,0.91,11.260,332.0 -8.2,0.91,11.650,334.1,8.2,0.91,11.830,335.6 -8.2,0.91,11.510,335.7,8.1,0.91,11.500,337.0 -8.8,0.91,13.760,339.0,8.8,0.91,13.980,340.7 -8.2,0.91,13.390,343.2,8.4,0.91,13.620,347.4 -7.4,0.91,12.570,340.0,7.9,0.91,12.890,345.7 -6.9,0.92,12.070,341.2,7.4,0.92,12.570,347.1 -7.9,0.92,11.420,348.5,8.2,0.92,11.620,353.4 -7.6,0.92,10.750,345.3,7.9,0.92,10.750,349.3 -7.4,0.92,11.330,345.5,7.7,0.92,11.410,348.9 -6.2,0.92,11.260,347.4,6.5,0.92,11.680,351.7 -6.0,0.92,12.460,355.2,6.2,0.92,12.750,359.2 -5.1,0.92,11.870,3.6,5.3,0.92,12.260,7.8 -4.3,0.92,10.420,0.4,4.4,0.92,10.720,5.1 -3.9,0.92,8.230,357.2,3.9,0.92,8.660,359.8 -4.1,0.92,7.720,356.9,4.0,0.92,8.100,358.3 -5.1,0.92,6.710,8.8,5.0,0.92,6.760,8.9 -6.5,0.92,6.060,9.5,6.3,0.92,6.090,9.7 -7.5,0.92,5.690,9.0,7.3,0.92,5.710,9.2 -8.3,0.92,5.200,11.7,8.1,0.92,5.230,11.6 -8.8,0.92,4.780,17.2,8.6,0.92,4.790,16.8 -9.0,0.92,3.970,23.9,8.8,0.92,3.970,23.9 -8.9,0.92,4.230,26.5,8.7,0.92,4.250,26.8 -8.2,0.92,4.460,48.1,8.0,0.92,4.460,47.2 -8.0,0.92,4.060,42.3,8.0,0.92,4.280,43.0 -7.6,0.92,2.660,48.0,7.6,0.92,3.020,47.3 -7.6,0.92,3.040,58.5,7.6,0.92,3.330,57.8 -7.8,0.92,2.310,70.6,7.8,0.92,2.570,68.8 -7.9,0.92,2.450,88.4,7.9,0.92,2.610,84.5 -7.8,0.92,2.710,104.1,7.8,0.92,2.710,103.5 -8.1,0.92,3.290,133.5,8.0,0.92,3.330,136.8 -8.1,0.92,3.380,149.2,8.1,0.92,3.310,151.9 -7.9,0.92,4.730,159.0,8.0,0.92,4.620,161.4 -7.8,0.92,6.390,165.2,8.0,0.92,6.220,166.2 -7.7,0.92,7.500,173.8,8.0,0.92,7.280,174.0 -7.9,0.92,7.840,179.9,8.1,0.92,7.650,180.0 -7.5,0.92,9.280,180.1,7.8,0.92,9.320,180.1 -7.3,0.92,10.240,183.8,7.8,0.92,10.410,183.7 -7.2,0.92,11.100,185.2,7.7,0.92,11.550,184.5 -7.0,0.92,10.520,187.5,7.4,0.92,11.320,186.7 -7.5,0.92,9.030,188.9,7.4,0.92,9.320,188.8 -8.7,0.92,8.920,191.3,8.5,0.92,9.030,191.3 -10.0,0.92,8.620,197.3,9.8,0.92,8.700,197.6 -11.0,0.92,8.700,200.2,10.8,0.92,8.780,200.3 -11.6,0.92,9.080,200.7,11.4,0.92,9.200,201.0 -12.5,0.92,9.040,200.7,12.3,0.92,9.190,201.0 -12.7,0.91,8.500,202.0,12.6,0.91,8.830,202.4 -12.5,0.91,10.560,201.8,12.3,0.91,10.760,202.4 -12.3,0.91,12.120,204.3,12.2,0.91,12.140,204.7 -11.6,0.91,12.940,209.8,11.6,0.91,13.430,210.0 -10.8,0.91,13.710,209.1,11.0,0.91,14.180,209.4 -10.1,0.91,14.910,209.7,10.2,0.91,15.540,209.7 -9.2,0.91,15.100,209.4,9.3,0.91,15.840,209.5 -8.4,0.91,15.100,207.0,8.6,0.91,15.900,207.7 -8.0,0.91,15.190,206.4,8.2,0.91,16.070,207.3 -7.8,0.91,15.300,207.6,8.0,0.91,16.240,208.5 -7.6,0.91,15.050,206.9,7.8,0.91,15.930,208.0 -7.0,0.91,14.290,204.5,7.1,0.91,14.930,206.2 -6.6,0.91,13.630,205.6,6.8,0.91,14.330,207.7 -6.4,0.91,13.960,210.0,6.7,0.91,14.860,211.7 -6.5,0.91,14.700,212.3,6.7,0.91,15.710,213.9 -6.5,0.91,15.680,215.6,6.8,0.91,16.560,217.1 -6.8,0.91,13.430,217.2,7.0,0.91,13.960,218.9 -7.6,0.91,10.970,218.4,7.6,0.91,11.700,220.3 -9.4,0.91,8.400,224.8,9.3,0.91,8.460,225.6 -11.6,0.91,7.400,231.7,11.5,0.91,7.440,232.4 -13.8,0.91,6.510,236.6,13.6,0.91,6.560,237.2 -15.1,0.91,6.030,240.7,14.9,0.91,6.090,241.4 -15.6,0.91,5.020,259.4,15.4,0.91,5.080,259.4 -15.5,0.91,5.090,266.8,15.3,0.91,5.170,266.7 -15.2,0.91,5.810,265.7,15.0,0.91,5.930,265.0 -15.0,0.91,5.140,289.9,14.8,0.91,5.180,289.1 -14.6,0.91,5.130,294.2,14.6,0.91,5.380,294.0 -12.6,0.91,6.290,348.9,12.6,0.91,5.920,347.9 -12.5,0.91,4.340,356.6,12.5,0.91,4.230,353.8 -12.1,0.91,4.590,1.1,12.0,0.91,4.620,2.6 -11.7,0.91,5.720,10.8,11.7,0.91,5.830,12.4 -11.5,0.91,5.370,13.3,11.5,0.91,5.450,14.8 -12.2,0.91,5.310,11.9,12.2,0.91,5.400,13.7 -11.2,0.91,5.400,24.3,11.2,0.91,5.430,25.3 -10.4,0.91,4.620,16.8,10.4,0.91,4.720,19.6 -10.4,0.91,5.160,11.6,10.5,0.91,5.130,15.4 -9.8,0.91,5.350,17.0,9.9,0.91,5.450,19.7 -8.2,0.91,5.110,17.0,8.5,0.91,5.230,17.9 -7.3,0.91,4.850,19.7,7.6,0.91,5.000,21.0 -7.4,0.91,4.320,17.1,7.8,0.91,4.370,18.3 -7.8,0.91,2.850,14.6,8.1,0.91,2.960,20.1 -8.6,0.91,2.380,14.5,9.1,0.91,2.650,24.2 -9.7,0.91,1.220,349.7,9.6,0.91,1.190,351.9 -11.7,0.91,0.850,352.1,11.5,0.91,0.790,349.3 -13.3,0.91,0.690,202.9,13.1,0.91,0.720,206.8 -14.7,0.91,1.260,222.3,14.6,0.91,1.320,222.3 -15.6,0.91,2.270,225.5,15.4,0.91,2.290,225.6 -15.5,0.91,2.930,224.3,15.4,0.91,2.920,224.9 -15.3,0.91,3.610,212.3,15.1,0.91,3.580,212.4 -14.7,0.91,4.400,205.4,14.6,0.91,4.120,208.6 -14.6,0.91,3.630,226.1,14.5,0.91,3.610,229.8 -15.0,0.91,3.500,227.2,14.9,0.91,3.410,230.9 -14.8,0.91,3.470,217.8,14.7,0.91,3.420,221.4 -14.7,0.91,4.220,207.2,14.8,0.91,4.130,211.6 -14.8,0.91,4.610,199.6,14.8,0.91,4.480,203.0 -15.3,0.91,4.460,206.3,15.4,0.91,4.370,209.4 -15.0,0.91,3.720,198.8,15.2,0.91,3.470,202.8 -15.0,0.91,3.570,207.6,15.2,0.91,3.240,212.2 -14.7,0.91,3.430,208.4,15.0,0.91,2.970,211.7 -4.6,0.91,8.030,22.8,5.0,0.91,8.240,23.1 -1.3,0.91,9.790,28.4,1.2,0.91,10.170,31.7 --0.1,0.91,10.360,25.4,-0.2,0.91,10.840,27.8 --1.2,0.91,11.100,25.5,-1.4,0.91,11.530,27.4 --2.1,0.91,11.010,25.0,-2.3,0.91,11.450,27.1 --2.3,0.91,9.640,30.6,-2.4,0.91,9.750,31.0 --1.2,0.91,8.310,28.1,-1.4,0.91,8.310,28.3 --0.1,0.91,8.160,29.7,-0.2,0.91,8.160,29.8 -1.4,0.91,7.410,27.0,1.2,0.91,7.410,27.0 -2.7,0.91,6.390,26.2,2.5,0.91,6.400,26.2 -3.8,0.91,5.710,26.4,3.6,0.91,5.720,26.5 -4.5,0.91,5.060,28.5,4.4,0.91,5.060,28.4 -4.9,0.91,4.370,30.3,4.7,0.91,4.370,30.1 -4.9,0.91,3.980,34.0,4.7,0.91,3.970,33.7 -4.5,0.91,3.610,39.6,4.3,0.91,3.540,39.5 -4.5,0.91,2.550,38.1,4.5,0.91,2.480,40.4 -4.4,0.91,2.310,54.0,4.4,0.91,2.550,55.3 -4.5,0.91,2.450,54.7,4.6,0.91,2.530,56.7 -4.8,0.91,1.780,71.8,5.0,0.91,1.590,80.0 -5.1,0.91,1.370,91.8,5.3,0.91,1.110,105.3 -6.0,0.91,0.600,200.8,6.3,0.91,1.010,227.0 -6.2,0.91,1.120,209.8,6.4,0.91,1.480,221.2 -6.7,0.91,2.030,223.7,7.0,0.91,2.410,225.9 -7.1,0.91,1.510,226.7,7.2,0.91,1.900,224.3 -7.4,0.91,1.950,204.4,7.4,0.91,2.280,204.5 -7.7,0.91,3.240,191.6,7.8,0.91,3.370,193.9 -8.1,0.91,4.140,189.8,8.4,0.91,4.190,192.4 -8.7,0.91,5.590,192.2,8.9,0.91,5.670,194.4 -8.5,0.91,6.340,192.9,8.8,0.91,6.450,195.5 -7.9,0.91,8.020,193.9,8.2,0.91,8.010,196.9 -7.5,0.91,8.030,199.2,7.6,0.91,8.790,200.9 -8.4,0.91,7.560,207.7,8.3,0.91,7.730,208.7 -10.6,0.91,7.630,220.0,10.4,0.91,7.690,220.1 -12.1,0.91,8.800,217.5,11.9,0.91,8.870,217.7 -13.1,0.91,8.200,218.1,13.0,0.91,8.290,218.4 -14.0,0.91,8.130,217.6,13.8,0.91,8.200,217.8 -14.3,0.91,7.980,215.1,14.1,0.91,8.090,215.4 -14.6,0.91,8.650,208.2,14.4,0.91,8.950,208.5 -14.2,0.91,11.070,212.3,14.1,0.91,11.440,212.5 -13.6,0.91,11.910,212.5,13.6,0.91,12.190,213.1 -13.1,0.91,10.910,215.0,13.1,0.91,11.140,215.8 -12.6,0.91,13.070,216.3,12.6,0.91,13.680,216.5 -12.2,0.91,13.420,214.4,12.2,0.91,13.960,214.2 -11.7,0.91,13.570,215.7,11.8,0.91,14.190,215.6 -11.4,0.91,13.620,213.6,11.5,0.91,14.350,214.4 -11.1,0.91,13.960,219.6,11.2,0.91,14.910,220.9 -11.0,0.91,14.800,219.8,11.2,0.91,15.770,220.5 -10.8,0.91,14.570,220.0,11.1,0.91,15.610,220.8 -10.9,0.91,15.010,220.8,11.2,0.91,16.100,221.4 -11.0,0.91,14.780,222.9,11.3,0.91,15.750,223.3 -11.1,0.91,14.430,225.2,11.5,0.91,15.250,225.6 -10.6,0.91,13.610,222.5,10.9,0.91,14.340,223.6 -10.1,0.91,11.730,228.2,10.9,0.91,12.420,227.8 -8.4,0.91,11.270,227.0,8.5,0.91,11.690,227.1 -8.8,0.91,10.960,224.9,8.7,0.91,11.210,225.2 -9.4,0.91,9.030,226.4,9.2,0.91,9.150,226.8 -11.3,0.91,8.070,228.8,11.2,0.91,8.050,229.9 -14.2,0.91,8.020,226.6,14.1,0.91,8.050,227.1 -15.7,0.91,8.060,229.7,15.6,0.91,8.070,230.2 -17.0,0.91,7.730,226.6,16.8,0.91,7.740,227.1 -17.5,0.91,7.800,221.5,17.3,0.91,7.840,221.9 -17.6,0.91,8.280,212.2,17.4,0.91,8.510,213.5 -17.9,0.91,10.690,208.0,17.8,0.91,11.000,209.9 -19.0,0.91,12.090,213.7,18.9,0.91,12.320,214.7 -19.1,0.91,13.190,220.8,19.3,0.91,13.580,221.7 -18.4,0.91,13.550,224.8,18.7,0.91,13.730,225.8 -17.5,0.91,14.310,227.8,17.9,0.91,14.630,229.2 -17.3,0.91,14.480,232.1,17.9,0.91,14.830,233.1 -16.6,0.91,15.400,228.5,17.3,0.91,16.140,229.3 -15.7,0.91,15.030,228.6,16.5,0.91,15.930,230.4 -15.7,0.91,16.330,231.4,16.5,0.91,17.280,232.5 -15.4,0.91,16.310,230.0,16.0,0.91,17.160,231.2 -14.5,0.91,15.900,231.0,15.1,0.91,16.850,232.0 -14.8,0.91,14.290,233.8,15.4,0.91,15.010,234.8 -14.0,0.91,12.970,234.7,14.5,0.91,13.690,235.5 -14.3,0.91,14.020,238.3,14.8,0.91,14.630,238.3 -14.4,0.91,13.000,243.2,15.1,0.91,13.520,243.6 -13.0,0.91,9.680,256.5,13.6,0.91,10.370,257.8 -13.6,0.91,6.620,265.0,13.7,0.91,7.710,267.2 -15.2,0.91,5.460,257.0,15.2,0.91,5.590,259.8 -17.3,0.91,4.330,266.4,17.2,0.91,4.370,266.9 -18.6,0.91,3.590,252.5,18.4,0.91,3.620,252.8 -19.6,0.91,3.830,233.8,19.4,0.91,3.860,234.3 -20.1,0.91,3.750,227.8,19.9,0.91,3.770,228.6 -20.4,0.91,3.970,214.1,20.2,0.91,3.970,214.6 -20.0,0.91,3.580,212.1,19.8,0.91,3.610,212.4 -19.4,0.91,2.160,170.6,19.4,0.91,2.560,182.2 -21.0,0.91,5.130,195.5,21.2,0.91,5.810,199.6 -20.9,0.91,10.950,201.5,21.0,0.91,11.870,207.1 -19.6,0.91,14.220,217.9,19.7,0.91,15.070,219.3 -18.9,0.91,14.450,225.6,19.1,0.91,15.420,226.2 -18.4,0.91,14.420,225.8,18.6,0.91,15.570,226.7 -17.0,0.91,14.720,221.8,17.2,0.91,15.860,222.7 -16.6,0.91,14.810,223.4,16.8,0.91,15.860,224.3 -16.5,0.91,15.520,225.8,16.6,0.91,16.550,226.4 -16.0,0.91,14.980,228.8,16.1,0.91,15.940,229.3 -15.9,0.91,14.510,230.6,16.0,0.91,15.440,231.3 -15.6,0.91,12.350,238.7,15.8,0.91,13.320,239.9 -15.4,0.91,12.740,247.3,15.6,0.91,13.380,249.3 -15.7,0.91,10.130,261.0,16.5,0.91,9.810,266.3 -16.2,0.91,7.290,277.2,17.1,0.91,6.780,287.6 -9.6,0.91,5.670,19.9,10.0,0.91,5.400,18.1 -6.8,0.91,5.480,7.7,6.7,0.91,5.420,7.2 -6.8,0.91,6.130,16.5,6.6,0.91,6.100,16.1 -8.0,0.91,6.230,18.4,7.8,0.91,6.220,18.1 -8.8,0.91,6.220,21.3,8.6,0.91,6.210,21.4 -9.3,0.91,6.200,22.5,9.1,0.91,6.190,22.4 -9.5,0.91,5.810,19.7,9.3,0.91,5.800,19.7 -9.4,0.91,5.330,21.6,9.2,0.91,5.320,21.6 -9.1,0.91,4.920,25.3,8.9,0.91,4.930,25.2 -8.7,0.91,5.170,28.6,8.5,0.91,5.170,28.2 -8.3,0.91,4.470,28.2,8.2,0.91,4.470,27.9 -8.2,0.91,4.220,30.7,8.0,0.91,4.230,30.7 -7.9,0.91,4.580,30.7,7.8,0.91,4.610,30.8 -7.5,0.91,4.270,43.1,7.4,0.91,4.360,43.8 -7.3,0.91,4.020,49.1,7.2,0.91,4.180,50.1 -6.9,0.91,4.880,50.1,6.7,0.91,4.840,51.3 -6.5,0.91,3.900,53.8,6.3,0.91,3.440,48.0 -6.0,0.91,3.040,41.7,5.8,0.91,2.900,38.4 -5.4,0.91,2.960,36.2,5.4,0.91,2.950,31.7 -5.1,0.91,2.400,27.1,5.2,0.91,2.460,21.2 -5.0,0.91,2.730,22.3,5.3,0.91,2.850,15.9 -4.7,0.91,2.810,25.1,5.1,0.91,2.910,18.2 -4.7,0.91,2.750,18.8,5.2,0.91,2.900,13.7 -4.9,0.91,2.270,29.8,5.5,0.91,2.260,24.7 -5.9,0.91,0.780,63.3,6.8,0.91,0.600,83.1 -6.6,0.91,1.290,116.3,6.9,0.91,1.450,140.6 -9.6,0.91,1.980,139.6,9.4,0.91,2.070,143.3 -12.3,0.91,1.840,146.7,12.1,0.91,1.940,149.4 -13.7,0.91,3.930,165.4,13.5,0.91,3.920,165.2 -14.5,0.91,4.960,162.3,14.3,0.91,4.990,162.6 -15.1,0.91,5.790,160.6,14.9,0.91,5.840,160.8 -15.6,0.91,6.090,154.6,15.4,0.91,6.170,154.7 -14.2,0.91,6.930,168.6,14.0,0.91,7.010,168.8 -13.4,0.91,7.080,179.4,13.2,0.91,7.400,178.0 -13.4,0.91,7.330,166.7,13.2,0.91,7.720,165.7 -13.0,0.91,7.810,149.8,13.0,0.91,8.380,150.6 -13.2,0.91,9.590,149.8,13.1,0.91,10.130,150.7 -13.2,0.91,13.100,161.6,13.1,0.91,13.690,161.9 -13.4,0.91,15.840,175.2,13.4,0.91,16.380,175.6 -13.7,0.91,17.070,178.3,13.7,0.91,17.640,178.5 -13.6,0.91,17.850,177.3,13.5,0.91,18.410,177.4 -13.7,0.91,19.620,179.3,13.7,0.91,20.200,179.5 -13.6,0.91,18.480,186.6,13.5,0.91,19.040,186.7 -13.5,0.91,18.220,186.7,13.4,0.91,18.770,187.0 -13.6,0.91,18.680,187.5,13.5,0.91,19.240,187.9 -13.5,0.91,17.340,187.6,13.5,0.91,17.900,188.2 -13.3,0.91,17.610,186.3,13.2,0.91,18.200,186.7 -13.0,0.91,16.370,192.7,12.9,0.91,16.950,193.2 -13.3,0.91,16.410,194.6,13.2,0.91,16.910,194.9 -13.7,0.91,15.350,194.5,13.5,0.91,15.520,194.7 -14.5,0.91,13.380,194.9,14.3,0.91,13.500,195.0 -15.7,0.91,12.310,197.3,15.5,0.91,12.430,197.5 -17.6,0.91,12.430,199.8,17.4,0.91,12.580,200.0 -19.0,0.91,12.190,202.9,18.8,0.91,12.330,203.1 -20.0,0.91,10.750,204.3,19.8,0.91,10.870,204.5 -20.7,0.91,9.710,204.7,20.5,0.91,9.850,205.0 -20.9,0.90,9.170,200.4,20.8,0.90,9.420,200.8 -20.6,0.91,9.380,197.7,20.6,0.91,9.740,200.3 -19.9,0.91,11.700,196.6,20.1,0.91,12.570,197.9 -19.4,0.91,11.750,199.7,19.6,0.91,12.570,200.7 -18.8,0.91,11.710,204.2,19.0,0.91,12.730,205.6 -18.0,0.91,12.620,199.3,18.2,0.91,13.610,201.0 -17.1,0.91,14.380,201.2,17.2,0.91,15.540,202.8 -16.3,0.91,13.150,197.0,16.3,0.91,14.080,198.6 -15.4,0.91,12.150,196.2,15.3,0.91,12.730,197.9 -14.2,0.91,13.360,194.1,14.1,0.91,14.120,195.0 -13.7,0.91,12.710,189.7,13.6,0.91,13.140,189.9 -14.6,0.91,12.680,189.0,14.5,0.91,13.180,189.1 -14.6,0.91,12.560,188.0,14.6,0.91,13.230,188.9 -15.2,0.91,15.270,188.6,15.1,0.91,15.750,188.9 -15.0,0.91,13.840,182.4,14.8,0.91,14.360,182.7 -14.7,0.91,12.680,175.6,14.7,0.91,13.110,175.6 -15.2,0.91,14.770,182.6,15.0,0.91,15.190,182.8 -15.3,0.91,14.750,186.3,15.2,0.91,15.030,186.7 -15.9,0.91,13.170,186.0,15.7,0.91,13.330,186.2 -17.7,0.90,12.820,189.7,17.5,0.90,12.980,189.8 -19.0,0.90,12.280,194.8,18.8,0.90,12.420,194.8 -21.0,0.90,13.510,204.8,20.8,0.90,13.710,204.8 -21.8,0.90,12.710,209.8,21.6,0.90,12.910,209.8 -21.9,0.90,12.600,210.2,21.7,0.90,12.790,210.2 -21.5,0.90,10.220,205.2,21.3,0.90,10.520,205.4 -20.8,0.90,11.620,209.3,20.8,0.90,12.610,209.7 -20.3,0.90,12.540,200.3,20.3,0.90,13.210,200.1 -19.4,0.90,15.370,195.9,19.5,0.90,16.380,196.0 -17.9,0.90,14.670,185.8,17.8,0.90,15.480,186.2 -16.9,0.90,16.800,188.5,16.9,0.90,17.590,188.5 -16.7,0.90,16.090,187.4,16.7,0.90,17.100,187.5 -16.1,0.90,16.130,185.9,16.1,0.90,17.270,186.3 -15.9,0.90,14.850,182.1,15.9,0.90,15.790,182.5 -15.0,0.90,15.320,179.7,15.0,0.90,16.250,180.1 -14.8,0.90,15.750,182.8,14.9,0.90,16.770,183.7 -14.5,0.90,15.730,191.7,14.5,0.90,16.650,192.9 -13.8,0.90,13.400,189.7,13.8,0.90,14.230,190.6 -13.8,0.90,12.030,217.1,13.7,0.90,12.580,218.1 -14.3,0.90,11.060,227.7,14.3,0.90,11.290,230.1 -13.6,0.90,9.390,250.4,13.6,0.90,9.440,254.6 -13.5,0.90,8.580,255.0,13.4,0.90,9.750,256.1 -13.8,0.90,7.420,274.2,13.6,0.90,7.520,274.2 -13.3,0.90,8.230,295.9,13.1,0.90,8.350,295.8 -13.2,0.90,10.440,272.5,13.0,0.90,10.640,272.4 -13.0,0.90,14.920,270.2,12.8,0.90,15.180,270.2 -12.9,0.90,15.850,254.1,12.7,0.90,16.160,254.0 -12.7,0.90,15.630,252.8,12.5,0.90,15.930,252.7 -12.3,0.90,16.040,261.4,12.1,0.90,16.460,261.4 -10.9,0.90,19.510,259.9,10.7,0.90,19.930,260.0 -9.8,0.90,18.350,256.6,9.7,0.90,18.930,256.6 -8.7,0.90,14.270,249.3,8.6,0.90,15.050,249.8 -8.2,0.90,15.680,253.0,8.0,0.90,16.400,253.2 -7.4,0.90,13.130,248.0,7.3,0.90,13.970,248.9 -6.8,0.90,13.430,255.0,6.7,0.90,14.320,256.0 -6.2,0.90,12.940,259.5,6.1,0.90,14.010,261.0 -5.4,0.90,12.290,263.6,5.3,0.90,13.080,263.6 -4.7,0.90,14.880,270.6,4.6,0.90,15.940,271.5 -3.8,0.90,13.670,280.0,3.7,0.90,14.610,281.0 -1.0,0.90,14.080,309.9,0.8,0.90,14.590,310.3 -1.6,0.90,11.750,308.9,1.4,0.90,12.420,309.7 -1.1,0.90,11.810,302.3,1.0,0.90,12.440,302.9 -0.7,0.90,13.660,312.0,0.6,0.90,14.290,312.5 -0.6,0.91,13.700,311.0,0.5,0.91,14.370,312.0 -0.4,0.91,13.360,311.4,0.3,0.91,14.030,312.5 -0.8,0.91,12.240,318.8,0.6,0.91,12.500,319.1 -1.6,0.91,11.630,323.3,1.4,0.91,11.820,323.5 -2.4,0.91,10.180,326.2,2.2,0.91,10.340,326.2 -3.3,0.91,9.920,320.1,3.1,0.91,10.080,320.1 -4.1,0.91,9.790,315.6,3.9,0.91,9.940,315.5 -5.1,0.91,8.440,308.0,4.9,0.91,8.600,307.8 -6.0,0.91,9.570,302.1,5.8,0.91,9.750,302.0 -6.4,0.91,9.220,299.5,6.2,0.91,9.390,299.4 -6.7,0.91,9.390,287.5,6.5,0.91,9.590,287.8 -6.7,0.91,8.120,286.4,6.6,0.91,8.410,286.4 -6.8,0.91,7.280,273.0,6.7,0.91,7.680,274.6 -6.9,0.91,8.310,263.1,6.9,0.91,8.770,265.1 -7.3,0.91,10.350,276.2,7.3,0.91,10.530,280.3 -7.7,0.91,9.170,284.4,7.7,0.91,9.150,287.9 -8.0,0.91,9.300,274.6,8.1,0.91,9.190,277.3 -8.2,0.91,9.790,267.2,8.4,0.91,9.670,268.7 -8.0,0.91,12.320,268.8,8.4,0.91,12.670,270.8 -7.8,0.91,11.640,260.4,8.4,0.91,12.130,263.7 -7.9,0.91,13.730,256.1,8.4,0.91,14.190,258.2 -5.7,0.91,11.620,253.1,6.0,0.91,12.550,258.9 -5.9,0.91,12.360,262.4,6.3,0.91,13.200,267.2 -6.5,0.91,15.130,271.1,6.9,0.91,16.330,274.6 -6.4,0.91,14.860,279.1,6.7,0.91,15.890,280.3 -5.9,0.91,13.140,261.0,6.2,0.91,13.890,264.3 -5.7,0.91,10.090,263.4,5.6,0.91,10.290,263.7 -6.8,0.91,8.270,267.1,6.6,0.91,8.410,267.4 -8.2,0.91,6.740,264.8,8.0,0.91,6.830,265.1 -9.8,0.91,6.910,257.3,9.6,0.91,6.990,257.6 -11.0,0.91,6.950,252.3,10.8,0.91,7.020,252.6 -12.1,0.91,6.490,255.8,11.9,0.91,6.570,256.1 -13.0,0.91,5.530,274.6,12.8,0.91,5.610,274.5 -13.4,0.91,5.560,278.4,13.2,0.91,5.640,278.3 -13.4,0.91,5.250,275.7,13.3,0.91,5.370,275.8 -13.3,0.91,5.030,274.8,13.2,0.91,5.180,275.4 -13.4,0.91,4.580,272.6,13.3,0.91,4.690,274.6 -13.4,0.91,3.390,270.4,13.3,0.91,3.490,274.2 -13.6,0.91,3.550,279.8,13.5,0.91,3.660,283.2 -13.4,0.91,2.830,268.2,13.3,0.91,2.830,273.8 -13.5,0.91,1.980,313.7,13.3,0.91,1.980,322.8 -6.7,0.91,8.090,58.2,6.8,0.91,8.600,62.9 -4.9,0.91,9.720,71.6,4.8,0.91,10.720,75.0 -3.6,0.92,8.340,71.7,3.5,0.92,9.860,76.8 -2.7,0.92,7.470,73.0,2.6,0.92,8.700,78.4 -2.3,0.91,7.270,80.9,2.4,0.91,8.400,87.2 -1.4,0.91,6.780,82.4,1.5,0.91,7.460,89.4 -1.2,0.92,6.170,104.6,1.3,0.92,7.150,109.7 -1.2,0.92,8.960,116.3,1.5,0.92,10.190,117.7 -0.5,0.92,9.530,120.3,0.8,0.92,10.970,121.7 -1.3,0.92,5.270,130.9,1.2,0.92,5.850,133.2 -3.9,0.92,5.410,155.7,3.7,0.92,5.500,155.8 -6.1,0.91,5.520,165.5,6.0,0.91,5.560,165.6 -8.4,0.91,6.210,179.7,8.3,0.91,6.250,179.7 -10.2,0.91,7.400,187.1,10.0,0.91,7.450,187.3 -11.4,0.91,8.250,188.9,11.2,0.91,8.320,189.1 -12.3,0.91,9.740,190.3,12.1,0.91,9.840,190.4 -12.9,0.91,9.200,191.7,12.7,0.91,9.310,191.8 -13.1,0.91,7.980,180.0,13.0,0.91,8.230,180.6 -13.7,0.91,9.360,173.0,13.6,0.91,9.500,175.4 -14.6,0.91,11.620,195.9,14.7,0.91,12.410,200.2 -14.3,0.91,14.340,203.4,14.3,0.91,14.920,204.3 -13.2,0.91,15.490,208.7,13.3,0.91,16.280,209.1 -12.3,0.91,15.360,208.8,12.4,0.91,16.260,209.6 -11.8,0.91,15.330,210.4,11.9,0.91,16.190,211.2 -11.2,0.91,14.280,213.3,11.3,0.91,15.210,214.3 -10.9,0.91,14.510,215.6,11.1,0.91,15.630,217.0 -10.9,0.91,14.620,219.5,11.1,0.91,15.900,220.9 -10.9,0.91,14.480,224.2,11.1,0.91,15.650,225.4 -10.3,0.91,12.840,234.7,10.5,0.91,13.450,235.8 -10.6,0.91,9.700,260.4,10.8,0.91,9.970,260.1 -10.3,0.91,9.600,268.6,10.5,0.91,9.700,270.4 -9.4,0.91,8.940,301.4,9.7,0.91,9.310,305.1 -6.3,0.91,8.680,354.6,6.3,0.91,8.520,358.3 -5.5,0.91,6.570,12.3,5.7,0.91,7.320,14.4 -6.6,0.91,6.200,14.7,6.5,0.91,6.380,15.2 -8.7,0.92,6.890,24.5,8.6,0.92,6.920,24.7 -10.1,0.92,7.790,34.4,10.0,0.92,7.840,34.5 -11.0,0.92,8.000,35.8,10.8,0.92,8.070,35.8 -12.0,0.92,7.410,39.3,11.8,0.92,7.480,39.3 -12.7,0.92,6.980,39.4,12.5,0.92,7.040,39.4 -13.3,0.92,6.030,42.6,13.1,0.92,6.110,42.4 -13.4,0.92,5.820,44.1,13.2,0.92,5.890,43.9 -13.2,0.92,6.420,50.9,13.0,0.92,6.500,50.2 -12.7,0.92,7.650,49.8,12.7,0.92,7.570,50.0 -11.7,0.92,5.310,52.8,11.8,0.92,5.910,52.1 -11.0,0.92,4.890,59.3,11.1,0.92,5.400,59.4 -10.8,0.92,4.270,69.0,11.0,0.92,4.810,69.6 -10.8,0.92,4.280,72.1,11.0,0.92,4.810,72.0 -10.8,0.92,4.280,85.2,11.0,0.92,4.710,84.2 -10.9,0.92,4.510,95.5,11.0,0.92,4.840,94.4 -10.9,0.92,4.530,96.0,10.9,0.92,4.700,95.4 -11.1,0.92,4.460,107.3,11.0,0.92,4.590,105.3 -11.1,0.92,5.590,129.4,11.2,0.92,5.550,127.4 -11.4,0.92,6.060,133.3,11.4,0.92,5.930,132.8 -11.4,0.92,6.500,136.6,11.4,0.92,6.380,136.3 -11.2,0.92,7.830,147.3,11.1,0.92,7.900,146.9 -10.8,0.92,8.450,157.8,11.0,0.92,8.580,156.1 -10.3,0.92,8.960,165.8,10.7,0.92,9.290,163.3 -10.2,0.92,7.440,170.9,10.3,0.92,8.220,168.6 -11.5,0.91,7.480,167.5,11.3,0.91,7.570,167.3 -12.4,0.91,7.900,169.0,12.2,0.91,7.980,168.9 -13.2,0.91,9.540,172.4,13.0,0.91,9.650,172.4 -13.9,0.91,9.300,174.7,13.7,0.91,9.410,174.7 -14.1,0.91,9.200,180.9,13.9,0.91,9.300,181.0 -14.6,0.91,9.660,178.9,14.4,0.91,9.800,179.1 -14.9,0.91,7.940,173.7,14.7,0.91,8.150,173.7 -15.1,0.91,9.360,171.8,15.0,0.91,9.880,172.0 -14.4,0.91,11.580,166.8,14.3,0.91,12.280,166.5 -13.6,0.91,12.890,167.6,13.6,0.91,13.550,167.9 -13.5,0.91,12.920,196.0,13.4,0.91,13.540,196.6 -13.2,0.91,15.050,198.5,13.1,0.91,15.620,198.7 -12.8,0.91,14.950,194.1,12.7,0.91,15.510,194.2 -12.4,0.91,14.530,194.1,12.3,0.91,15.090,194.5 -12.4,0.90,14.850,197.3,12.3,0.90,15.360,197.6 -12.4,0.90,13.460,193.4,12.3,0.90,13.890,193.8 -12.2,0.90,12.260,194.1,12.1,0.90,12.660,194.8 -12.5,0.90,12.600,199.3,12.3,0.90,13.050,200.0 -12.3,0.90,11.770,200.2,12.2,0.90,12.240,201.0 -12.1,0.90,11.680,201.3,12.0,0.90,12.220,202.8 -11.7,0.90,12.370,207.6,11.6,0.90,13.060,209.1 -11.3,0.90,12.740,208.9,11.1,0.90,13.190,210.1 -11.2,0.90,9.110,233.4,11.0,0.90,9.250,233.8 -12.1,0.90,8.930,242.6,11.9,0.90,8.990,243.0 -14.7,0.90,7.670,259.7,14.5,0.90,7.710,260.1 -16.3,0.90,6.720,288.1,16.1,0.90,6.780,287.9 -17.2,0.90,5.850,293.1,17.0,0.90,5.930,292.8 -18.2,0.90,5.580,290.8,18.0,0.90,5.650,290.4 -18.7,0.90,5.200,297.7,18.4,0.90,5.250,297.2 -18.7,0.90,5.000,302.3,18.5,0.90,5.050,301.8 -17.3,0.90,6.680,342.2,17.1,0.90,6.750,342.2 -16.1,0.90,7.680,357.3,16.0,0.90,7.800,357.5 -15.9,0.90,6.370,353.8,15.8,0.90,6.350,355.7 -15.8,0.90,7.270,11.8,15.7,0.90,7.310,16.7 -14.1,0.90,9.680,21.9,14.0,0.90,10.530,25.0 -12.7,0.90,9.130,22.7,12.6,0.90,10.090,26.3 -11.9,0.90,9.650,29.5,12.0,0.90,10.510,32.6 -11.3,0.90,8.550,34.3,11.3,0.90,9.200,38.5 -10.8,0.91,8.080,42.1,10.8,0.91,8.550,46.1 -10.6,0.91,6.230,36.4,10.6,0.91,6.410,39.3 -10.3,0.91,5.050,26.5,10.4,0.91,5.120,28.6 -9.9,0.91,4.150,21.3,10.1,0.91,4.390,23.6 -10.0,0.91,4.330,18.1,10.2,0.91,4.560,20.1 -10.1,0.91,3.790,21.2,10.3,0.91,4.040,23.1 -10.1,0.91,3.780,24.5,10.4,0.91,4.030,25.2 -10.6,0.91,3.070,30.9,10.9,0.91,3.340,32.1 -11.3,0.91,3.150,24.7,11.6,0.91,3.330,26.8 -11.2,0.91,1.930,27.4,11.1,0.91,2.010,26.0 -12.3,0.91,2.450,41.9,12.1,0.91,2.390,41.7 -13.8,0.91,2.050,57.2,13.6,0.91,1.990,58.3 -15.1,0.91,1.940,43.2,15.0,0.91,1.870,43.4 -16.1,0.91,2.070,36.8,16.0,0.91,2.010,37.1 -16.8,0.91,2.170,46.1,16.6,0.91,2.120,46.8 -16.9,0.91,3.110,57.5,16.7,0.91,3.090,58.3 -16.7,0.91,3.680,77.3,16.5,0.91,3.680,77.5 -16.1,0.91,4.770,73.2,15.9,0.91,4.780,75.6 -14.0,0.91,6.180,110.9,14.1,0.91,5.890,111.5 -12.3,0.91,8.080,131.8,12.6,0.91,7.940,131.7 -13.5,0.91,7.240,135.6,14.2,0.91,6.910,137.5 -13.9,0.91,6.940,137.7,14.6,0.91,6.780,141.0 -14.8,0.91,6.720,137.8,15.0,0.91,6.680,140.2 -15.2,0.91,6.800,153.9,15.1,0.91,6.790,155.5 -12.5,0.91,8.450,151.5,13.2,0.91,8.530,154.0 -11.2,0.91,8.500,151.7,12.7,0.91,9.210,151.4 -9.5,0.91,8.190,164.2,10.7,0.91,9.150,162.8 -9.4,0.91,8.500,160.6,10.3,0.91,9.400,159.8 -8.7,0.91,8.520,159.9,9.1,0.91,9.280,159.4 -8.5,0.91,9.020,165.1,8.4,0.91,9.480,165.1 -8.8,0.91,10.250,172.2,8.7,0.91,10.550,172.3 -9.2,0.91,8.420,181.5,9.1,0.91,8.780,181.5 -9.4,0.91,7.900,192.5,9.2,0.91,8.420,192.5 -11.0,0.91,9.150,202.0,11.1,0.91,9.640,202.1 -13.1,0.90,9.470,190.7,13.0,0.90,9.640,191.0 -14.7,0.90,10.950,189.3,14.5,0.90,11.080,189.3 -15.2,0.90,11.980,185.5,15.0,0.90,12.070,185.6 -16.4,0.90,10.710,188.5,16.2,0.90,10.810,188.6 -17.1,0.90,9.830,185.5,16.9,0.90,9.920,185.5 -17.9,0.90,9.130,185.6,17.7,0.90,9.240,185.7 -18.5,0.90,9.050,183.8,18.3,0.90,9.180,183.8 -18.3,0.90,8.010,174.7,18.2,0.90,8.270,174.1 -18.3,0.90,10.670,169.2,18.3,0.90,11.250,170.2 -18.1,0.90,11.840,175.8,18.2,0.90,12.330,176.2 -16.9,0.90,12.970,179.2,17.0,0.90,13.740,180.6 -16.4,0.90,13.280,186.4,16.4,0.90,13.810,187.4 -15.7,0.90,12.890,195.8,15.7,0.90,13.640,197.8 -14.9,0.90,11.120,196.4,15.0,0.90,11.850,199.1 -14.3,0.90,12.080,197.1,14.4,0.90,12.890,199.4 -13.7,0.90,12.220,204.2,13.8,0.90,12.890,205.8 -13.7,0.90,10.520,205.2,13.7,0.90,11.020,206.9 -13.5,0.90,10.890,217.2,13.4,0.90,11.340,218.3 -13.5,0.90,12.460,228.6,13.4,0.90,12.920,229.0 -13.1,0.90,11.520,235.6,12.9,0.90,11.940,236.6 -13.0,0.90,11.190,238.6,12.9,0.90,11.900,240.4 -12.3,0.90,9.710,252.2,12.4,0.90,10.470,255.1 -12.2,0.90,6.790,278.1,12.1,0.90,6.960,278.5 -12.2,0.91,7.590,300.5,12.1,0.91,7.640,300.5 -12.4,0.91,7.910,320.8,12.2,0.91,7.970,320.8 -12.3,0.91,9.100,322.4,12.1,0.91,9.190,322.5 -13.0,0.91,9.100,323.5,12.7,0.91,9.210,323.6 -13.9,0.91,10.230,333.7,13.7,0.91,10.370,333.6 -14.3,0.91,10.580,335.0,14.1,0.91,10.710,335.0 -14.3,0.91,9.880,347.0,14.1,0.91,10.000,346.9 -14.0,0.91,9.980,358.6,13.8,0.91,10.120,358.6 -12.8,0.91,9.080,18.6,12.6,0.91,9.440,18.3 -12.5,0.91,8.120,19.0,12.3,0.91,8.370,19.5 -11.2,0.91,9.560,22.1,11.0,0.91,10.150,22.2 -10.7,0.91,9.590,21.8,10.6,0.91,9.920,24.5 -10.3,0.91,9.170,19.0,10.2,0.91,9.390,20.6 -9.2,0.91,11.300,21.4,9.0,0.91,12.220,25.0 -8.3,0.91,11.600,29.5,8.1,0.91,12.540,31.5 -7.7,0.91,11.780,35.9,7.7,0.91,12.890,38.1 -7.4,0.91,12.980,39.5,7.4,0.91,13.810,40.2 -6.6,0.91,13.040,40.8,6.5,0.91,13.840,42.9 -5.8,0.91,12.400,44.8,5.7,0.91,13.210,47.4 -5.1,0.91,11.120,48.8,4.9,0.91,11.600,52.2 -4.3,0.91,9.490,52.6,4.1,0.91,9.620,55.5 -3.5,0.91,8.120,54.0,3.4,0.91,8.570,57.5 -2.9,0.91,7.480,56.1,2.9,0.91,8.050,59.1 -3.1,0.91,6.160,65.2,2.9,0.91,6.570,65.8 -4.5,0.91,5.170,62.0,4.3,0.91,5.220,62.9 -6.5,0.91,5.100,66.9,6.3,0.91,5.150,67.6 -8.4,0.91,4.990,71.7,8.2,0.91,5.030,72.2 -10.0,0.91,5.160,79.9,9.8,0.91,5.200,80.3 -11.1,0.91,5.050,90.5,10.9,0.91,5.080,90.9 -11.9,0.91,5.000,109.1,11.7,0.91,5.060,109.2 -12.0,0.91,5.620,117.9,11.8,0.91,5.670,118.0 -12.0,0.91,6.230,120.8,11.8,0.91,6.320,120.9 -11.6,0.91,7.700,120.9,11.5,0.91,7.930,121.6 -11.0,0.91,8.130,127.8,11.0,0.91,8.670,128.0 -10.4,0.91,8.790,128.7,10.3,0.91,9.440,129.2 -10.1,0.91,9.740,134.3,10.0,0.91,10.390,134.8 -9.6,0.91,10.600,139.4,9.5,0.91,11.340,139.6 -9.3,0.91,10.660,142.9,9.2,0.91,11.320,142.9 -9.0,0.91,10.680,146.2,8.8,0.91,11.310,146.2 -9.0,0.91,12.200,152.1,8.9,0.91,12.820,152.0 -8.6,0.91,12.460,155.6,8.5,0.91,13.090,155.6 -8.7,0.91,14.020,159.0,8.5,0.91,14.730,159.0 -8.8,0.91,16.320,161.8,8.7,0.91,16.900,161.8 -8.9,0.91,18.350,172.1,8.8,0.91,18.860,172.0 -8.5,0.90,20.570,168.7,8.4,0.90,21.060,168.8 -8.3,0.90,17.680,167.0,8.3,0.90,18.200,167.1 -8.0,0.90,18.900,170.1,7.9,0.90,19.590,169.9 -9.0,0.90,18.430,175.1,8.9,0.90,19.180,175.1 -9.9,0.90,17.110,177.7,9.8,0.90,17.570,178.0 -11.3,0.90,18.230,176.8,11.1,0.90,18.460,177.0 -12.0,0.90,18.680,172.8,11.8,0.90,18.900,172.9 -13.2,0.90,18.260,174.3,13.0,0.90,18.470,174.4 -13.8,0.90,18.160,173.8,13.7,0.90,18.370,173.9 -14.6,0.90,16.580,176.4,14.4,0.90,16.770,176.4 -15.3,0.90,17.040,180.9,15.1,0.90,17.290,181.0 -14.8,0.90,16.520,182.1,14.7,0.90,16.800,182.2 -14.0,0.90,15.560,177.3,13.9,0.90,16.060,177.6 -14.3,0.90,15.660,172.7,14.2,0.90,16.290,173.2 -14.8,0.90,17.050,177.5,14.7,0.90,17.560,177.8 -14.7,0.90,15.500,182.1,14.5,0.90,15.960,182.4 -14.6,0.90,15.030,192.3,14.4,0.90,15.460,192.6 -14.5,0.90,12.360,215.4,14.3,0.90,12.810,215.6 -14.5,0.90,9.430,275.3,14.4,0.90,9.830,273.9 -13.6,0.90,16.520,286.2,13.4,0.90,17.220,286.5 -12.3,0.90,14.000,279.6,12.2,0.90,14.770,279.7 -10.9,0.90,14.790,285.1,10.8,0.90,15.760,285.7 -10.0,0.90,17.570,285.5,9.8,0.90,18.300,286.0 -9.1,0.90,14.810,282.7,9.0,0.90,15.670,283.4 -8.2,0.90,13.900,282.5,8.1,0.90,14.860,283.8 -7.4,0.90,11.560,284.3,7.3,0.90,12.780,285.6 -7.3,0.90,12.630,286.2,7.1,0.90,13.430,286.8 -7.5,0.90,11.600,288.4,7.3,0.90,11.890,288.5 -8.2,0.90,11.370,289.8,8.0,0.90,11.590,289.8 -9.2,0.90,10.610,289.7,9.0,0.90,10.800,289.6 -10.4,0.90,9.370,289.4,10.2,0.90,9.540,289.3 -11.4,0.90,8.090,283.7,11.2,0.90,8.240,283.6 -12.3,0.90,8.130,274.9,12.1,0.90,8.270,274.8 -12.9,0.90,8.660,275.1,12.7,0.90,8.810,275.0 -13.2,0.90,8.090,274.5,13.0,0.90,8.230,274.4 -13.2,0.90,8.020,276.2,13.0,0.90,8.180,276.1 -13.0,0.90,7.860,275.6,12.8,0.90,8.220,275.7 -12.8,0.90,8.440,280.5,12.6,0.90,8.610,280.7 -12.6,0.91,7.210,281.7,12.5,0.91,7.270,281.7 -12.7,0.91,5.560,289.9,12.6,0.91,5.270,291.0 -12.8,0.91,3.270,301.5,12.7,0.91,3.120,303.8 -13.1,0.91,2.020,344.9,13.1,0.91,2.160,351.5 -12.2,0.91,1.650,55.0,12.3,0.91,1.770,51.7 -12.6,0.91,2.110,64.0,12.7,0.91,2.420,61.4 -12.5,0.91,2.760,77.5,12.6,0.91,3.040,75.3 -11.3,0.91,3.950,53.7,11.5,0.91,4.330,55.5 -11.0,0.91,4.380,88.7,11.3,0.91,4.890,90.2 -10.2,0.91,4.840,96.6,10.5,0.91,5.280,99.2 -8.7,0.91,5.010,82.8,9.0,0.91,5.390,87.0 -6.3,0.91,5.060,66.8,6.8,0.91,5.310,71.0 -4.6,0.91,6.040,54.2,4.9,0.91,6.370,57.5 -3.9,0.91,6.020,63.3,3.9,0.91,6.860,65.9 -5.1,0.91,5.220,63.4,5.0,0.91,5.250,64.5 -7.2,0.91,5.710,67.5,7.0,0.91,5.740,68.1 -9.3,0.91,5.960,77.2,9.1,0.91,6.000,77.8 -10.9,0.91,5.790,91.9,10.7,0.91,5.850,92.4 -12.1,0.91,5.670,102.2,11.9,0.91,5.730,102.3 -12.5,0.91,6.560,110.5,12.3,0.91,6.610,110.2 -12.6,0.91,7.270,109.6,12.4,0.91,7.330,109.5 -12.6,0.91,7.740,106.1,12.4,0.91,7.870,106.5 -11.9,0.91,7.540,101.8,11.7,0.91,7.970,102.2 -11.2,0.91,10.850,100.2,11.1,0.91,11.310,100.5 -9.9,0.91,10.560,93.0,9.9,0.91,11.490,94.3 -9.0,0.91,10.210,95.7,9.0,0.91,11.240,97.7 -8.2,0.91,9.290,99.6,8.2,0.91,10.480,101.6 -7.6,0.91,10.480,109.8,7.5,0.91,11.540,110.8 -6.8,0.90,8.430,115.3,6.5,0.90,9.190,116.2 -7.5,0.90,11.170,128.2,7.3,0.90,11.760,128.2 -7.7,0.90,8.190,127.2,7.5,0.90,8.700,128.0 -7.5,0.90,8.660,136.8,7.3,0.90,9.030,137.4 -7.8,0.90,8.040,154.9,7.6,0.90,8.470,154.6 -7.6,0.90,10.240,161.9,7.5,0.90,10.620,161.9 -7.5,0.90,8.910,166.9,7.3,0.90,9.340,167.0 -7.6,0.90,6.460,176.3,7.4,0.90,6.950,176.6 -7.8,0.90,6.210,177.7,7.6,0.90,6.620,179.0 -8.3,0.90,4.550,183.4,8.2,0.90,5.010,188.3 -7.9,0.90,3.040,324.1,7.8,0.90,2.930,321.0 -3.8,0.90,5.940,344.1,3.6,0.90,5.920,343.7 -3.5,0.90,7.640,335.8,3.3,0.90,7.700,335.7 -3.1,0.90,7.250,343.4,2.9,0.90,7.280,343.4 -2.9,0.91,5.990,337.1,2.7,0.91,6.020,336.7 -2.5,0.91,6.120,325.0,2.3,0.91,6.160,324.9 -3.0,0.91,7.260,327.2,2.8,0.91,7.380,327.1 -3.4,0.91,8.610,331.1,3.2,0.91,8.740,330.9 -3.3,0.91,7.780,331.4,3.2,0.91,8.300,330.7 -2.3,0.91,10.440,338.2,2.1,0.91,10.960,338.1 -1.4,0.91,10.540,339.6,1.3,0.91,11.020,339.4 -1.0,0.91,11.840,331.1,0.8,0.91,12.420,331.4 -0.3,0.91,9.600,327.9,0.1,0.91,10.110,329.0 --0.0,0.91,9.610,335.9,-0.2,0.91,10.280,337.1 --0.3,0.91,9.650,331.5,-0.4,0.91,10.300,333.3 --0.4,0.91,8.510,327.7,-0.4,0.91,9.110,329.8 -0.2,0.91,9.210,318.2,0.4,0.91,9.730,320.7 -0.9,0.91,9.010,319.1,1.1,0.91,9.380,323.5 -1.4,0.91,9.720,316.5,1.7,0.91,9.790,320.6 -1.9,0.91,8.070,318.0,2.4,0.91,8.020,323.2 -2.8,0.91,8.500,314.3,3.3,0.91,8.560,318.8 -3.0,0.91,8.340,306.2,3.5,0.91,8.490,310.0 -3.2,0.91,8.460,302.1,3.7,0.91,8.670,305.4 -3.6,0.91,7.140,296.6,3.6,0.91,7.990,298.6 -5.0,0.91,5.790,295.3,4.8,0.91,5.870,295.4 -6.4,0.91,5.780,298.2,6.2,0.91,5.820,298.1 -7.9,0.91,4.560,301.6,7.7,0.91,4.610,301.4 -9.3,0.91,4.400,301.7,9.1,0.91,4.460,301.5 -10.3,0.91,4.520,302.6,10.1,0.91,4.580,302.3 -10.8,0.91,4.790,294.0,10.6,0.91,4.850,293.8 -11.3,0.91,4.150,282.6,11.1,0.91,4.220,282.3 -11.4,0.91,4.630,269.2,11.2,0.91,4.690,269.1 -11.4,0.91,3.560,270.3,11.3,0.91,3.720,270.6 -11.3,0.91,2.770,251.3,11.2,0.91,2.910,254.6 -11.4,0.91,2.820,236.3,11.3,0.91,2.990,238.3 -11.3,0.91,3.990,219.0,11.3,0.91,4.090,221.9 -11.0,0.91,5.590,197.6,11.0,0.91,5.480,200.8 -10.6,0.91,7.150,198.3,10.6,0.91,7.310,197.7 -10.1,0.91,7.770,192.3,10.4,0.91,7.660,195.1 -10.7,0.91,6.300,197.9,10.8,0.91,5.980,201.7 -10.9,0.91,5.390,207.2,11.0,0.91,5.310,211.1 -10.5,0.91,7.000,209.2,10.8,0.91,6.940,212.2 -10.2,0.91,8.310,214.8,10.4,0.91,8.430,216.3 -10.2,0.91,9.300,219.4,10.4,0.91,9.530,220.5 -9.5,0.91,9.640,214.5,9.8,0.91,9.880,215.9 -9.2,0.91,10.550,210.4,9.5,0.91,10.860,211.8 -8.1,0.91,11.020,207.3,8.3,0.91,11.280,208.3 -7.9,0.91,9.460,210.0,8.5,0.91,9.820,213.1 -8.9,0.91,8.040,213.8,8.9,0.91,8.290,215.1 -10.8,0.91,8.310,214.2,10.7,0.91,8.360,214.6 -12.0,0.91,7.430,213.9,11.8,0.91,7.510,214.2 -13.4,0.91,7.480,208.6,13.2,0.91,7.560,208.7 -13.9,0.91,6.790,204.1,13.7,0.91,6.830,204.3 -14.8,0.91,5.480,210.7,14.7,0.91,5.550,210.8 -15.5,0.91,5.220,218.5,15.3,0.91,5.280,218.7 -15.6,0.91,4.920,234.6,15.4,0.91,4.970,234.6 -15.5,0.91,3.300,250.3,15.3,0.91,3.440,250.1 -15.4,0.91,1.780,293.4,15.3,0.91,1.830,290.6 -12.3,0.91,5.800,20.4,12.6,0.91,5.680,18.4 -11.0,0.91,7.080,39.6,11.3,0.91,7.650,39.3 -10.0,0.91,10.760,45.7,10.1,0.91,11.490,47.4 -7.7,0.91,11.980,8.6,7.7,0.91,12.670,11.3 -5.8,0.91,12.620,16.2,5.7,0.91,13.480,17.9 -4.8,0.91,13.830,20.7,4.7,0.91,14.650,21.9 -3.8,0.91,13.870,20.6,3.7,0.91,14.550,21.1 -2.7,0.91,14.360,25.8,2.6,0.91,15.070,26.2 -2.3,0.91,14.160,28.0,2.1,0.91,14.870,28.3 -1.5,0.91,13.730,29.4,1.4,0.91,14.410,29.9 -1.1,0.91,12.850,30.1,1.0,0.91,13.520,30.9 -1.0,0.91,12.980,30.5,0.9,0.91,13.700,31.5 -0.7,0.92,11.560,25.6,0.6,0.92,12.230,26.0 -0.9,0.92,11.560,31.0,0.7,0.92,11.710,31.3 -1.5,0.92,12.060,40.1,1.3,0.92,12.180,40.3 -2.3,0.92,10.880,38.4,2.1,0.92,10.980,38.4 -3.3,0.92,9.320,36.6,3.1,0.92,9.400,36.6 -4.3,0.92,8.370,31.3,4.1,0.92,8.440,31.4 -5.1,0.92,7.870,26.4,4.9,0.92,7.930,26.5 -5.5,0.92,7.480,28.1,5.3,0.92,7.530,28.0 -5.8,0.92,7.070,29.4,5.5,0.92,7.130,29.2 -5.7,0.92,7.070,23.7,5.5,0.92,7.150,23.6 -5.0,0.92,7.040,20.9,4.9,0.92,7.170,21.0 -4.6,0.92,5.980,22.6,4.5,0.92,6.210,22.8 -4.3,0.92,5.620,23.7,4.1,0.92,5.690,23.9 -4.3,0.92,4.110,15.8,4.2,0.92,4.100,14.7 -4.2,0.92,2.800,10.7,4.1,0.92,3.000,8.3 -4.3,0.92,2.470,332.2,4.3,0.92,2.710,334.7 -4.6,0.92,2.940,306.2,4.5,0.92,3.010,311.3 -4.7,0.92,3.390,297.4,4.7,0.92,3.460,302.5 -4.8,0.92,4.110,278.8,4.8,0.92,4.220,283.3 -4.7,0.92,5.120,271.6,4.8,0.92,5.130,274.9 -5.1,0.92,6.680,271.9,5.2,0.92,6.630,274.9 -5.4,0.92,7.570,270.6,5.4,0.92,7.510,273.9 -5.8,0.92,8.210,276.8,5.9,0.92,8.040,281.3 -5.7,0.92,9.110,282.5,6.0,0.92,8.880,286.4 -1.3,0.92,8.450,303.0,1.9,0.92,8.810,301.3 -2.8,0.92,8.840,290.8,3.1,0.92,9.480,291.9 -5.1,0.92,6.320,286.5,5.0,0.92,6.500,287.1 -7.3,0.92,6.240,282.7,7.1,0.92,6.320,282.5 -8.7,0.92,6.230,280.2,8.5,0.92,6.310,279.9 -10.2,0.92,6.750,270.5,10.0,0.92,6.830,270.4 -11.5,0.92,6.890,258.1,11.3,0.92,6.970,258.1 -12.6,0.91,6.760,256.8,12.4,0.91,6.860,256.8 -13.4,0.91,6.790,251.5,13.2,0.91,6.900,251.5 -13.8,0.91,6.070,240.7,13.6,0.91,6.180,241.0 -14.2,0.91,5.880,237.4,14.0,0.91,6.100,237.4 -14.3,0.91,7.650,228.4,14.2,0.91,7.900,231.0 -14.1,0.91,9.360,227.6,14.1,0.91,9.460,228.3 -14.0,0.91,10.870,233.0,14.0,0.91,10.760,234.3 -12.6,0.91,13.790,225.6,12.7,0.91,14.530,226.7 -11.2,0.91,14.780,221.7,11.3,0.91,15.710,222.9 -10.7,0.91,14.730,219.5,11.0,0.91,15.810,221.0 -9.6,0.91,14.660,214.8,9.8,0.91,15.630,216.5 -8.8,0.91,16.000,215.7,9.0,0.91,17.210,217.1 -8.4,0.91,16.600,215.7,8.6,0.91,17.760,216.7 -8.2,0.91,16.370,216.0,8.5,0.91,17.450,217.2 -8.1,0.91,16.170,214.9,8.5,0.91,17.220,216.2 -7.8,0.91,15.820,212.6,8.1,0.91,16.880,214.1 -7.4,0.91,15.820,214.2,7.7,0.91,16.830,215.3 -6.9,0.91,15.270,214.2,7.1,0.91,16.160,215.0 -7.4,0.91,14.630,213.1,7.4,0.91,15.650,213.6 -8.6,0.91,12.390,208.3,8.5,0.91,12.580,208.8 -10.6,0.91,11.240,204.6,10.4,0.91,11.310,205.0 -12.3,0.91,12.540,205.7,12.1,0.91,12.620,206.0 -14.0,0.91,12.400,204.8,13.8,0.91,12.510,204.9 -15.5,0.91,12.810,202.6,15.3,0.91,12.960,202.8 -16.3,0.90,13.220,201.2,16.1,0.90,13.390,201.3 -16.7,0.90,13.790,201.0,16.5,0.90,13.970,201.0 -16.4,0.90,14.040,197.8,16.3,0.90,14.300,197.9 -15.3,0.90,15.870,192.9,15.2,0.90,16.590,193.0 -14.1,0.90,17.570,192.8,14.1,0.90,18.360,192.8 -13.1,0.90,19.020,191.8,13.0,0.90,19.680,191.8 -12.1,0.90,19.960,191.7,12.0,0.90,20.630,191.7 -11.6,0.90,20.010,191.2,11.5,0.90,20.730,191.5 -11.0,0.90,19.170,191.3,11.0,0.90,20.010,192.0 -10.5,0.90,18.800,186.8,10.5,0.90,19.550,187.7 -9.8,0.90,17.520,186.8,9.8,0.90,18.320,188.3 -9.7,0.90,18.210,193.4,9.6,0.90,18.860,193.9 -9.6,0.90,15.900,194.3,9.4,0.90,16.450,194.8 -10.3,0.90,17.230,202.0,10.2,0.90,17.840,202.4 -10.4,0.90,15.810,204.0,10.2,0.90,16.360,204.6 -10.2,0.90,14.980,207.6,10.1,0.90,15.520,208.0 -9.9,0.90,14.720,213.4,9.7,0.90,15.350,214.3 -9.9,0.90,14.160,231.8,9.8,0.90,14.670,232.9 -11.3,0.90,9.040,255.8,11.2,0.90,9.330,257.0 -13.3,0.90,9.930,269.6,13.1,0.90,10.120,270.2 -14.7,0.90,11.570,284.2,14.5,0.90,11.780,284.2 -14.7,0.90,10.370,306.3,14.5,0.90,10.540,306.2 -14.5,0.90,10.180,315.6,14.3,0.90,10.290,315.3 -14.2,0.90,9.070,325.8,14.0,0.90,9.190,325.5 -14.0,0.91,9.200,327.1,13.8,0.91,9.310,327.0 -13.6,0.91,8.680,338.7,13.4,0.91,8.810,338.4 -13.2,0.91,9.110,344.5,13.0,0.91,9.240,344.2 -12.3,0.91,8.810,2.4,12.1,0.91,9.130,2.1 -11.4,0.91,9.340,15.1,11.3,0.91,10.110,14.2 -10.5,0.91,11.190,13.0,10.4,0.91,11.740,13.6 -9.9,0.91,10.500,25.8,9.8,0.91,11.050,26.2 -9.8,0.91,10.140,31.5,9.8,0.91,10.490,30.9 -9.3,0.91,9.840,36.8,9.4,0.91,10.130,36.3 -9.1,0.91,10.390,44.4,9.0,0.91,10.330,44.5 -8.3,0.91,10.160,53.4,8.3,0.91,10.520,52.5 -7.7,0.91,9.950,58.2,7.7,0.91,10.380,57.3 -6.8,0.91,8.750,71.0,6.9,0.91,9.280,70.5 -6.5,0.91,8.810,86.8,6.5,0.91,9.230,86.0 -6.5,0.91,8.710,89.3,6.6,0.91,9.280,87.8 -6.2,0.91,8.670,94.7,6.2,0.91,9.290,93.3 -5.3,0.91,9.070,106.8,5.4,0.91,9.900,106.0 -4.9,0.91,8.370,123.4,4.8,0.91,8.930,122.9 -5.2,0.91,7.320,123.2,5.1,0.91,7.530,123.0 -6.5,0.91,8.300,126.3,6.3,0.91,8.400,126.3 -8.1,0.91,7.690,123.5,7.9,0.91,7.780,123.5 -9.4,0.91,8.450,123.8,9.2,0.91,8.550,123.8 -10.3,0.91,8.960,126.6,10.1,0.91,9.070,126.7 -11.1,0.91,9.120,131.9,10.9,0.91,9.230,132.1 -11.5,0.91,9.850,135.6,11.3,0.91,9.980,135.7 -11.6,0.91,9.960,141.3,11.4,0.91,10.130,141.3 -11.3,0.91,10.870,144.6,11.1,0.91,11.080,144.5 -11.1,0.91,10.790,147.6,10.9,0.91,11.100,147.6 -9.5,0.91,11.340,149.1,9.3,0.91,11.620,149.2 -8.3,0.91,10.110,146.8,8.1,0.91,10.320,146.8 -6.4,0.91,7.910,130.2,6.2,0.91,8.080,130.6 -8.3,0.91,9.970,138.8,8.1,0.91,10.440,139.2 -8.1,0.91,10.860,139.6,8.0,0.91,11.240,140.2 -7.3,0.91,12.840,148.6,7.1,0.91,13.280,148.8 -5.9,0.91,12.690,148.7,5.8,0.91,13.490,148.8 -5.0,0.91,11.090,140.5,4.9,0.91,11.610,140.9 -4.5,0.91,11.600,135.5,4.4,0.91,12.270,136.0 -4.4,0.91,8.000,137.0,4.3,0.91,8.900,139.9 -3.9,0.91,7.870,128.0,3.7,0.91,8.200,128.7 -3.8,0.91,4.500,95.0,3.6,0.91,4.710,98.0 -3.9,0.91,9.100,128.9,3.7,0.91,9.810,131.7 -3.9,0.90,11.920,139.4,3.8,0.90,12.640,139.8 -3.9,0.90,12.700,145.2,3.7,0.90,13.210,145.3 -3.9,0.91,7.830,125.9,3.7,0.91,8.030,126.6 -3.7,0.90,8.600,120.0,3.5,0.90,8.760,120.5 -3.6,0.90,8.680,124.3,3.4,0.90,8.830,124.6 -3.7,0.90,8.140,121.4,3.6,0.90,8.280,121.9 -3.9,0.90,7.900,124.3,3.7,0.90,8.010,124.7 -4.2,0.90,7.430,120.2,4.1,0.90,7.580,120.9 -4.4,0.90,6.730,111.6,4.3,0.90,6.850,112.4 -4.3,0.90,6.460,111.6,4.2,0.90,6.850,113.3 -4.9,0.90,8.310,115.9,4.9,0.90,9.630,119.4 -5.2,0.90,10.470,119.1,5.1,0.90,11.100,120.1 -5.7,0.90,13.260,128.7,5.7,0.90,14.130,129.2 -5.5,0.90,12.920,129.4,5.5,0.90,13.640,130.0 -5.8,0.90,13.150,135.8,5.7,0.90,13.800,136.2 -6.3,0.90,15.090,138.1,6.2,0.90,15.590,138.4 -6.0,0.90,14.960,143.1,5.9,0.90,15.660,143.0 -13.3,0.89,16.220,208.7,13.6,0.89,17.700,212.6 -8.0,0.89,12.960,151.3,8.1,0.89,13.550,151.5 -8.7,0.89,10.710,157.4,8.7,0.89,11.160,157.7 -5.9,0.90,4.310,293.7,6.4,0.90,4.530,285.2 -5.3,0.90,5.970,299.1,5.5,0.90,6.510,297.6 -5.4,0.90,7.040,287.7,5.8,0.90,7.800,284.4 -6.8,0.90,10.450,265.9,6.9,0.90,11.210,267.6 -5.8,0.90,9.370,257.1,5.8,0.90,10.390,259.1 -7.1,0.90,14.370,254.7,7.0,0.90,14.940,255.4 -7.5,0.90,16.140,260.5,7.4,0.90,16.450,260.7 -8.7,0.90,14.400,255.7,8.5,0.90,14.610,255.9 -9.3,0.90,13.790,258.1,9.1,0.90,14.050,258.2 -10.3,0.90,12.390,255.9,10.0,0.90,12.640,256.0 -11.0,0.90,12.660,255.2,10.8,0.90,12.880,255.3 -11.9,0.90,11.080,255.6,11.7,0.90,11.310,255.8 -12.4,0.90,9.990,256.9,12.2,0.90,10.170,257.3 -12.6,0.90,8.440,268.2,12.4,0.90,8.590,268.2 -12.4,0.90,7.050,261.5,12.3,0.90,7.480,262.0 -12.9,0.90,8.500,258.7,12.8,0.90,8.980,259.6 -13.1,0.90,9.790,253.1,13.0,0.90,10.170,254.3 -13.0,0.90,11.450,257.7,12.9,0.90,11.490,258.5 -6.6,0.90,8.720,20.7,6.6,0.90,8.760,20.9 -2.6,0.90,10.460,26.8,2.4,0.90,10.880,26.4 -1.5,0.90,8.990,26.8,1.3,0.90,9.580,26.8 -0.4,0.90,9.430,25.9,0.2,0.90,9.510,27.1 --0.5,0.91,8.700,40.4,-0.7,0.91,8.880,41.2 --1.6,0.91,8.670,34.0,-1.8,0.91,8.870,34.1 --2.7,0.91,8.480,36.9,-2.9,0.91,8.740,37.3 --3.8,0.91,9.660,42.6,-4.0,0.91,9.900,42.3 --4.2,0.91,8.850,41.2,-4.3,0.91,8.960,41.6 --4.5,0.91,5.990,36.5,-4.7,0.91,6.040,36.4 --4.8,0.91,6.020,37.7,-5.0,0.91,6.020,37.3 --3.9,0.91,5.760,37.0,-4.1,0.91,5.750,36.8 --2.5,0.91,5.600,41.6,-2.7,0.91,5.600,41.5 --0.9,0.91,5.040,41.3,-1.1,0.91,5.020,41.2 -0.6,0.91,4.480,43.8,0.5,0.91,4.450,43.8 -2.0,0.91,3.950,40.1,1.8,0.91,3.910,40.1 -3.4,0.91,2.970,35.6,3.3,0.91,2.930,35.4 -4.4,0.91,3.200,40.6,4.2,0.91,3.150,40.6 -4.9,0.91,3.150,45.8,4.7,0.91,3.120,45.9 -5.0,0.91,3.870,39.0,4.8,0.91,3.840,39.2 -4.5,0.91,4.850,46.1,4.4,0.91,4.830,46.1 -4.1,0.91,6.000,48.2,4.0,0.91,5.930,48.7 -3.4,0.91,6.930,54.3,3.3,0.91,7.250,54.8 -2.6,0.91,8.790,64.2,2.5,0.91,9.010,63.6 -1.8,0.91,8.460,75.2,1.7,0.91,8.830,76.1 -1.3,0.91,8.440,78.7,1.4,0.91,8.340,76.3 -0.8,0.91,8.660,79.8,0.9,0.91,8.970,79.0 -0.1,0.91,7.840,85.2,0.3,0.91,8.160,85.8 --0.1,0.91,7.000,86.4,0.1,0.91,7.040,87.9 -0.4,0.91,5.920,97.7,0.7,0.91,5.710,96.4 --0.2,0.91,6.440,105.5,0.1,0.91,6.310,105.8 -0.2,0.91,4.050,105.3,0.5,0.91,4.010,106.6 -0.8,0.91,3.100,141.7,0.9,0.91,3.200,142.2 -1.9,0.91,6.260,173.2,2.2,0.91,6.210,175.1 -2.4,0.91,9.670,184.2,2.8,0.91,9.950,186.4 -1.7,0.91,1.840,181.8,1.5,0.91,1.950,182.7 -3.2,0.91,3.070,191.0,3.0,0.91,3.100,191.3 -5.2,0.91,4.610,226.5,5.0,0.91,4.630,227.0 -7.4,0.91,3.360,250.5,7.2,0.91,3.400,251.2 -9.5,0.91,4.780,260.6,9.2,0.91,4.850,260.5 -10.4,0.91,6.320,262.3,10.2,0.91,6.340,262.3 -11.1,0.90,4.820,255.4,10.9,0.90,4.900,255.5 -12.3,0.90,5.570,255.5,12.1,0.90,5.670,255.3 -12.8,0.90,5.680,248.5,12.6,0.90,5.790,248.5 -12.7,0.90,4.190,244.7,12.6,0.90,4.380,245.5 -12.7,0.90,4.250,240.0,12.6,0.90,4.380,241.0 -12.9,0.90,4.060,209.3,12.8,0.90,4.230,211.5 -12.9,0.90,6.380,190.4,12.9,0.90,6.530,191.9 -12.3,0.90,8.660,183.6,12.7,0.90,9.070,186.4 -11.2,0.90,11.960,175.3,11.6,0.90,11.560,177.9 -10.1,0.90,14.250,168.8,10.7,0.90,14.440,171.3 -10.5,0.90,15.540,173.1,11.3,0.90,15.970,174.6 -9.6,0.90,15.280,176.4,10.5,0.90,15.520,178.4 -8.7,0.90,15.040,176.6,9.3,0.90,15.190,178.0 -8.9,0.90,15.580,177.9,9.7,0.90,15.920,179.2 -7.9,0.90,16.050,180.5,8.5,0.90,16.580,181.9 -8.1,0.90,16.470,183.0,8.7,0.90,16.820,184.3 -8.1,0.90,16.140,179.8,8.5,0.90,16.530,180.7 -7.7,0.90,15.860,179.1,7.7,0.90,16.260,179.6 -7.7,0.90,15.530,180.5,7.7,0.90,16.050,180.8 -8.9,0.90,13.810,180.9,8.8,0.90,14.160,181.1 -10.8,0.90,13.460,180.7,10.6,0.90,13.610,180.9 -12.2,0.90,13.430,184.9,12.0,0.90,13.570,185.1 -14.3,0.90,11.330,188.5,14.1,0.90,11.480,188.6 -16.3,0.90,10.420,187.2,16.1,0.90,10.580,187.5 -17.4,0.90,10.440,188.9,17.2,0.90,10.600,189.1 -18.1,0.90,9.640,182.7,17.9,0.90,9.800,182.8 -18.4,0.90,9.820,183.7,18.3,0.90,10.020,183.8 -18.1,0.90,9.580,176.4,18.0,0.90,9.950,176.6 -16.8,0.90,12.740,160.8,16.9,0.90,13.710,162.1 -15.7,0.90,14.400,161.2,15.8,0.90,15.390,162.9 -14.2,0.89,14.160,160.2,14.2,0.89,15.150,161.1 -13.2,0.89,12.360,168.8,13.2,0.89,13.120,169.4 -7.7,0.89,6.580,319.3,7.6,0.89,6.710,319.2 -12.1,0.89,10.360,240.9,12.1,0.89,10.940,240.9 -11.4,0.90,12.230,257.0,11.3,0.90,12.860,258.4 -10.0,0.90,16.180,282.9,10.0,0.90,17.220,283.4 -9.9,0.90,11.990,287.1,9.8,0.90,12.590,288.0 -6.8,0.89,8.670,286.4,6.8,0.89,8.950,285.9 -6.6,0.89,6.110,275.4,6.5,0.89,6.230,271.6 -4.4,0.89,11.040,278.4,4.3,0.89,11.630,280.9 -2.6,0.89,10.730,304.4,2.4,0.89,10.950,304.3 -0.7,0.89,10.010,307.1,0.5,0.89,10.220,307.0 --0.2,0.89,11.500,295.4,-0.4,0.89,11.670,295.6 -0.7,0.89,12.210,293.6,0.5,0.89,12.380,293.6 -0.3,0.90,13.770,300.4,0.1,0.90,14.000,300.4 -0.8,0.90,15.250,307.4,0.6,0.90,15.500,307.4 -1.3,0.90,17.160,313.1,1.1,0.90,17.480,313.1 -1.0,0.90,18.780,317.5,0.8,0.90,19.140,317.5 -1.2,0.90,18.590,323.9,1.0,0.90,18.960,323.9 -0.8,0.90,18.210,321.2,0.6,0.90,18.550,321.1 -0.1,0.90,17.180,324.6,-0.0,0.90,17.550,324.5 --0.4,0.90,14.600,324.9,-0.5,0.90,15.070,324.6 -0.3,0.90,18.710,326.5,0.1,0.90,19.470,326.5 -1.2,0.90,16.050,322.3,1.0,0.90,16.670,322.4 -0.9,0.90,16.540,319.2,0.8,0.90,17.290,319.5 -0.8,0.90,14.720,317.9,0.6,0.90,15.440,318.1 -0.6,0.90,16.170,319.7,0.4,0.90,16.940,319.9 -0.4,0.90,15.650,320.9,0.3,0.90,16.420,321.3 -0.2,0.90,16.130,320.0,0.1,0.90,16.900,320.9 --0.2,0.90,14.120,318.7,-0.3,0.90,14.990,319.9 --0.5,0.90,12.900,321.9,-0.5,0.90,13.880,323.6 --1.0,0.90,11.750,318.4,-1.0,0.90,12.680,320.6 --1.3,0.90,10.140,316.8,-1.3,0.90,10.910,318.7 --1.4,0.90,10.810,315.4,-1.4,0.90,11.530,318.0 --1.6,0.90,9.410,312.5,-1.6,0.90,10.140,315.4 --1.2,0.90,8.060,320.8,-1.2,0.90,8.650,323.2 --0.1,0.90,6.150,324.7,-0.3,0.90,6.250,325.4 -1.5,0.90,5.090,324.9,1.4,0.90,5.130,325.3 -3.1,0.90,4.840,318.2,2.9,0.90,4.870,318.5 -4.5,0.90,4.510,313.5,4.3,0.90,4.550,313.8 -5.9,0.90,3.760,307.9,5.7,0.90,3.790,307.8 -7.4,0.90,2.720,298.2,7.2,0.90,2.760,296.8 -9.2,0.90,3.100,289.6,9.0,0.90,3.150,288.4 -10.3,0.90,1.600,281.9,10.1,0.90,1.660,279.1 -10.9,0.90,2.050,240.5,10.7,0.90,2.090,240.4 -10.9,0.90,1.120,94.7,10.8,0.90,0.880,106.1 -9.3,0.90,3.870,86.5,9.5,0.90,3.140,89.7 -9.2,0.90,4.000,92.5,9.3,0.90,3.720,96.4 -8.9,0.90,4.840,82.7,9.1,0.90,4.590,84.2 -7.7,0.90,4.410,82.5,8.2,0.90,4.350,89.3 -7.8,0.90,4.750,73.3,8.2,0.90,4.660,76.2 -6.5,0.90,5.280,53.1,6.9,0.90,5.540,54.6 -2.6,0.90,10.180,344.2,2.8,0.90,10.290,347.6 -1.2,0.90,9.470,353.1,1.4,0.90,9.970,357.2 -0.2,0.90,8.630,358.7,0.2,0.90,8.980,2.9 --1.0,0.91,9.840,358.3,-1.2,0.91,10.460,0.2 --1.3,0.91,10.190,354.9,-1.3,0.91,10.970,356.2 -1.5,0.91,10.040,357.4,2.1,0.91,10.840,2.0 --0.5,0.91,11.250,341.0,-0.3,0.91,12.070,343.6 -0.2,0.91,9.970,335.6,0.4,0.91,10.740,338.3 -1.2,0.91,6.820,329.3,1.1,0.91,7.100,330.4 -3.3,0.91,9.550,335.0,3.1,0.91,9.710,335.1 -4.2,0.91,10.970,345.4,4.0,0.91,11.140,345.4 -4.9,0.91,11.270,348.4,4.7,0.91,11.410,348.2 -5.7,0.91,11.420,350.6,5.4,0.91,11.560,350.4 -6.2,0.91,11.150,352.2,6.0,0.91,11.290,352.0 -6.4,0.91,11.480,352.7,6.2,0.91,11.620,352.4 -6.3,0.91,11.300,354.3,6.1,0.91,11.450,354.1 -5.9,0.91,11.220,352.7,5.7,0.91,11.380,352.6 -5.2,0.91,10.550,0.4,5.0,0.91,10.870,0.1 -4.4,0.91,9.020,1.5,4.3,0.91,9.730,1.6 -3.6,0.91,10.830,0.2,3.5,0.91,11.310,0.8 -2.9,0.91,9.830,3.6,2.8,0.91,10.380,3.8 -2.7,0.91,8.370,12.0,2.5,0.91,8.610,12.9 -2.4,0.91,9.680,16.7,2.2,0.91,10.010,17.7 -2.2,0.91,8.790,25.7,2.1,0.91,9.540,25.1 -2.2,0.91,9.830,19.8,2.2,0.91,9.960,22.1 -1.4,0.91,8.280,33.4,1.3,0.91,8.080,30.4 -1.7,0.91,5.730,14.6,1.7,0.91,6.040,16.2 -1.5,0.91,5.090,35.5,1.5,0.91,5.560,34.2 -1.9,0.91,6.680,11.4,1.9,0.91,7.110,12.7 -1.7,0.91,6.390,18.7,1.7,0.91,6.760,19.5 -1.7,0.91,5.050,12.4,1.7,0.91,5.490,12.5 -1.6,0.92,3.930,350.3,1.6,0.92,4.300,351.9 -2.1,0.92,3.560,326.2,1.9,0.92,3.560,328.6 -3.4,0.92,3.950,359.9,3.2,0.92,3.990,359.8 -4.4,0.92,4.870,358.8,4.2,0.92,4.900,358.2 -5.6,0.92,4.440,354.3,5.4,0.92,4.480,353.6 -6.7,0.92,4.990,350.4,6.4,0.92,5.030,349.7 -7.5,0.91,4.990,347.7,7.3,0.91,5.040,347.1 -8.3,0.91,5.020,344.7,8.1,0.91,5.070,344.2 -8.6,0.91,5.400,340.7,8.4,0.91,5.470,340.3 -8.7,0.91,5.500,345.7,8.5,0.91,5.560,345.2 -8.6,0.91,5.270,352.0,8.4,0.91,5.390,351.3 -8.4,0.91,6.070,349.2,8.2,0.91,6.070,349.6 -8.0,0.91,5.430,16.2,7.9,0.91,5.480,16.2 -7.2,0.91,4.850,32.8,7.1,0.91,5.260,32.1 -6.3,0.91,3.980,46.2,6.2,0.91,4.290,43.9 -6.5,0.91,3.850,35.7,6.6,0.91,4.190,34.1 -6.9,0.91,3.310,30.1,7.1,0.91,3.750,28.9 -6.7,0.91,3.230,29.4,6.9,0.91,3.680,30.2 -6.0,0.91,2.360,43.2,6.2,0.91,2.670,43.9 -5.9,0.91,2.040,48.7,6.1,0.91,2.400,47.6 -5.7,0.91,1.380,91.8,5.9,0.91,1.520,85.6 -5.8,0.91,2.280,119.7,6.0,0.91,2.230,123.9 -5.7,0.91,2.450,155.7,5.7,0.91,2.480,158.5 -6.2,0.91,1.880,181.3,6.3,0.91,1.880,179.0 -5.9,0.91,0.490,129.0,6.2,0.91,0.680,163.2 -5.1,0.91,1.110,14.5,5.4,0.91,0.940,23.6 -6.6,0.91,1.300,335.2,6.5,0.91,1.270,330.0 -8.1,0.91,2.780,337.8,7.9,0.91,2.810,336.9 -9.0,0.91,4.790,310.7,8.8,0.91,4.820,311.1 -10.1,0.91,6.740,331.4,9.9,0.91,6.850,331.4 -10.2,0.91,8.740,348.4,10.0,0.91,8.840,348.2 -10.5,0.91,10.080,346.0,10.3,0.91,10.230,345.8 -10.6,0.91,11.850,341.2,10.4,0.91,12.060,341.0 -10.4,0.91,12.130,345.6,10.2,0.91,12.360,345.4 -10.9,0.91,12.790,343.4,10.7,0.91,13.260,343.6 -10.0,0.91,11.620,355.4,9.9,0.91,12.540,355.8 -9.2,0.91,11.520,9.0,9.1,0.91,12.610,9.2 -8.3,0.91,10.530,20.1,8.1,0.91,11.560,21.0 -7.4,0.92,10.430,26.6,7.3,0.92,11.570,28.3 -5.6,0.92,7.700,45.2,5.4,0.92,9.010,50.6 -4.8,0.92,8.000,57.2,4.6,0.92,9.100,54.1 -4.1,0.92,7.250,43.3,4.0,0.92,7.710,40.2 -3.6,0.92,6.060,26.4,3.5,0.92,6.490,26.4 -3.2,0.92,6.990,23.1,3.1,0.92,7.380,23.7 -2.8,0.92,6.680,17.6,2.7,0.92,7.030,18.7 -2.4,0.92,7.010,16.2,2.3,0.92,7.190,17.5 -1.9,0.92,7.120,17.3,1.8,0.92,7.300,18.1 -1.4,0.92,6.220,9.9,1.3,0.92,6.440,10.9 -1.4,0.92,5.340,355.7,1.4,0.92,5.630,359.0 -2.3,0.92,3.630,343.2,2.1,0.92,3.740,344.9 -4.2,0.92,2.880,331.0,4.0,0.92,2.910,331.5 -5.9,0.92,4.230,313.4,5.7,0.92,4.250,313.8 -7.8,0.92,4.540,303.8,7.6,0.92,4.590,303.7 -9.7,0.92,4.840,304.9,9.5,0.92,4.900,304.9 -11.1,0.92,5.250,305.9,10.9,0.92,5.310,305.9 -12.3,0.92,5.220,303.2,12.1,0.92,5.280,303.4 -13.2,0.91,5.050,301.5,13.0,0.91,5.130,301.5 -13.9,0.91,4.690,300.8,13.7,0.91,4.780,300.7 -14.1,0.91,4.060,285.9,13.9,0.91,4.160,286.4 -14.2,0.91,5.120,252.6,14.1,0.91,5.180,253.6 -14.3,0.91,6.780,233.7,14.2,0.91,6.790,235.3 -14.6,0.91,7.580,239.0,14.6,0.91,7.850,242.5 -14.9,0.91,9.660,245.8,15.0,0.91,9.860,249.7 -14.9,0.91,8.990,238.7,15.0,0.91,8.970,242.1 -15.2,0.91,9.240,236.1,15.3,0.91,9.320,237.5 -15.3,0.91,8.780,234.2,15.5,0.91,8.960,237.2 -14.9,0.91,9.580,230.1,15.2,0.91,9.680,232.0 -14.9,0.91,10.240,225.9,15.1,0.91,10.290,226.9 -13.9,0.91,11.090,218.1,14.4,0.91,11.350,218.4 -14.2,0.91,11.610,222.2,14.6,0.91,12.010,222.9 -12.5,0.91,12.470,221.5,12.9,0.91,13.060,222.7 -11.8,0.91,14.920,220.5,12.3,0.91,15.690,220.7 -11.1,0.91,14.670,216.3,11.4,0.91,15.610,216.8 -11.1,0.91,12.690,211.0,11.0,0.91,13.480,211.8 -13.0,0.91,11.790,207.2,12.9,0.91,11.920,207.6 -14.8,0.91,11.520,203.5,14.7,0.91,11.630,203.9 -16.8,0.91,12.470,202.1,16.6,0.91,12.600,202.4 -18.7,0.91,12.670,205.0,18.5,0.91,12.810,205.2 -20.4,0.91,13.260,208.7,20.2,0.91,13.410,208.8 -21.4,0.90,13.460,212.4,21.2,0.90,13.630,212.6 -22.1,0.90,14.050,215.8,21.9,0.90,14.250,216.0 -22.3,0.90,14.130,212.7,22.1,0.90,14.370,212.8 -21.6,0.90,14.140,203.9,21.5,0.90,14.780,204.6 -20.2,0.90,16.180,200.4,20.2,0.90,17.060,201.6 -18.5,0.90,18.260,204.3,18.5,0.90,19.390,205.4 -17.2,0.90,18.210,205.8,17.2,0.90,19.420,206.8 -16.2,0.90,18.830,207.5,16.3,0.90,20.060,208.2 -15.8,0.90,19.030,210.2,15.8,0.90,20.280,211.0 -15.5,0.90,19.390,212.2,15.7,0.90,20.780,213.3 -15.2,0.90,19.600,214.5,15.3,0.90,21.010,215.2 -14.5,0.90,19.020,214.5,14.6,0.90,20.310,215.3 -14.1,0.90,15.680,225.2,14.4,0.90,16.900,227.1 -14.6,0.90,14.160,239.5,15.0,0.90,15.470,242.8 -17.4,0.90,15.600,264.5,17.8,0.90,16.720,267.7 -18.2,0.90,15.590,273.8,18.5,0.90,16.810,277.5 -18.1,0.90,15.540,276.8,18.4,0.90,16.810,279.4 -17.9,0.90,13.010,289.2,18.0,0.90,14.050,292.9 -17.7,0.90,10.760,292.3,17.5,0.90,11.370,293.5 -18.5,0.90,8.980,283.0,18.4,0.90,9.090,283.1 -20.7,0.90,7.650,273.6,20.5,0.90,7.770,273.8 -21.7,0.90,8.160,284.2,21.5,0.90,8.290,284.1 -22.5,0.90,6.920,289.5,22.3,0.90,7.020,289.5 -23.2,0.90,6.720,268.8,23.0,0.90,6.820,268.6 -23.9,0.90,6.860,264.7,23.7,0.90,6.940,264.5 -24.6,0.90,7.430,266.2,24.4,0.90,7.550,265.8 -25.5,0.90,7.620,270.3,25.3,0.90,7.810,270.1 -25.2,0.90,7.650,266.4,25.1,0.90,7.990,267.9 -24.6,0.90,10.960,284.3,24.6,0.90,11.400,285.9 -24.5,0.90,10.900,266.8,24.4,0.90,11.320,267.3 -22.8,0.90,14.050,268.3,22.9,0.90,15.140,269.3 -22.8,0.90,14.800,277.4,22.7,0.90,15.580,277.9 -19.0,0.90,12.670,302.0,19.1,0.90,13.890,303.0 -14.0,0.90,12.340,24.3,13.9,0.90,13.150,26.4 -11.8,0.91,13.450,17.4,11.7,0.91,14.660,18.5 -10.0,0.91,19.080,22.1,9.8,0.91,20.300,22.8 -7.4,0.91,16.580,11.3,7.2,0.91,17.090,11.0 -4.8,0.91,16.690,21.4,4.6,0.91,17.000,21.2 -3.9,0.91,16.300,15.4,3.7,0.91,16.750,15.4 -3.6,0.91,12.930,5.4,3.4,0.91,13.380,5.4 -3.0,0.91,14.020,8.1,2.9,0.91,14.720,8.9 -3.2,0.92,14.240,13.6,3.0,0.92,14.800,14.0 -3.8,0.92,14.710,16.5,3.6,0.92,14.900,16.6 -4.2,0.92,13.980,16.4,4.0,0.92,14.140,16.5 -5.0,0.92,12.330,13.5,4.8,0.92,12.450,13.5 -5.9,0.92,11.540,14.3,5.6,0.92,11.650,14.3 -6.8,0.92,11.260,14.7,6.5,0.92,11.360,14.7 -7.8,0.92,8.170,16.0,7.6,0.92,8.240,15.8 -8.8,0.92,7.010,14.6,8.6,0.92,7.080,14.2 -9.1,0.92,6.460,14.6,8.9,0.92,6.520,14.3 -9.2,0.92,5.690,17.8,9.0,0.92,5.720,17.6 -8.9,0.92,5.100,23.7,8.7,0.92,5.140,23.1 -8.6,0.92,4.720,28.1,8.4,0.92,4.840,27.9 -7.8,0.92,4.610,35.8,7.8,0.92,4.870,36.1 -7.1,0.92,4.130,39.6,7.1,0.92,4.510,39.5 -6.6,0.92,3.180,43.3,6.7,0.92,3.640,42.9 -6.4,0.92,3.160,42.2,6.5,0.92,3.620,43.1 -6.0,0.92,2.740,66.8,6.1,0.92,3.130,63.6 -6.1,0.92,3.120,56.3,6.2,0.92,3.530,54.7 -5.9,0.92,3.390,67.6,6.1,0.92,3.780,65.2 -5.6,0.92,4.200,78.3,5.8,0.92,4.510,75.7 -5.4,0.92,4.900,91.2,5.5,0.92,5.150,88.5 -5.0,0.92,5.420,86.9,4.9,0.92,5.510,87.9 -5.5,0.92,6.270,91.9,5.3,0.92,6.200,91.7 -5.3,0.92,6.640,117.0,5.3,0.92,6.490,114.5 -4.3,0.92,8.030,136.3,4.5,0.92,8.300,134.8 -4.7,0.92,6.060,146.1,4.6,0.92,6.220,145.2 -5.9,0.92,6.390,153.4,5.7,0.92,6.440,153.3 -7.1,0.92,5.820,157.7,6.9,0.92,5.870,157.7 -8.5,0.92,6.070,159.4,8.3,0.92,6.120,159.5 -9.9,0.92,6.460,166.0,9.7,0.92,6.520,165.9 -11.1,0.91,7.040,164.0,10.9,0.91,7.110,164.0 -11.9,0.91,7.550,169.9,11.7,0.91,7.630,169.8 -12.1,0.91,7.730,169.4,11.9,0.91,7.820,169.4 -12.5,0.91,8.880,166.0,12.3,0.91,9.000,166.1 -12.3,0.91,8.530,159.9,12.1,0.91,8.870,160.2 -11.8,0.91,10.480,152.4,11.7,0.91,11.170,152.9 -11.4,0.91,11.800,155.1,11.4,0.91,12.650,155.3 -10.5,0.91,13.260,162.2,10.5,0.91,14.080,162.1 -10.0,0.91,14.620,167.1,10.0,0.91,15.460,167.1 -9.6,0.91,15.810,174.9,9.7,0.91,16.610,175.7 -9.8,0.91,16.730,193.2,9.8,0.91,17.370,193.6 -9.3,0.91,17.820,197.2,9.3,0.91,18.540,197.5 -9.2,0.91,18.650,196.8,9.3,0.91,19.360,197.0 -8.8,0.91,17.860,196.6,8.9,0.91,18.620,197.0 -8.4,0.91,16.370,196.7,8.5,0.91,17.080,197.1 -8.2,0.91,16.800,197.0,8.3,0.91,17.540,197.6 -8.1,0.91,17.000,196.2,8.2,0.91,17.650,196.8 -7.9,0.91,16.690,195.3,8.0,0.91,17.280,195.8 -7.8,0.91,15.940,194.3,7.9,0.91,16.730,195.0 -9.0,0.91,14.800,195.2,8.9,0.91,15.230,195.4 -10.3,0.91,13.280,190.8,10.1,0.91,13.410,191.0 -11.8,0.91,12.300,190.2,11.6,0.91,12.400,190.3 -13.7,0.91,11.230,188.1,13.5,0.91,11.350,188.1 -15.2,0.91,11.510,185.2,15.0,0.91,11.650,185.2 -16.7,0.91,10.910,177.8,16.5,0.91,11.040,177.7 -17.4,0.91,10.280,171.1,17.2,0.91,10.390,171.2 -18.1,0.91,10.580,167.5,17.9,0.91,10.730,167.6 -18.0,0.91,12.110,169.1,17.8,0.91,12.300,169.3 -17.9,0.91,11.630,175.4,17.8,0.91,12.080,175.2 -17.0,0.91,12.650,168.8,16.9,0.91,13.520,168.9 -16.0,0.91,13.810,169.1,15.9,0.91,14.570,169.3 -15.4,0.91,14.310,177.0,15.3,0.91,15.090,177.0 -14.3,0.91,17.440,180.8,14.2,0.91,18.140,180.7 -13.3,0.91,18.680,183.1,13.2,0.91,19.330,183.1 -13.1,0.91,18.990,184.7,13.0,0.91,19.550,184.7 -13.0,0.91,18.480,187.5,12.9,0.91,19.010,187.5 -13.2,0.91,19.090,191.3,13.0,0.91,19.600,191.3 -13.4,0.91,19.460,192.2,13.2,0.91,19.970,192.2 -13.7,0.91,20.100,194.1,13.5,0.91,20.600,194.3 -13.8,0.91,18.520,191.6,13.7,0.91,18.940,191.7 -13.7,0.91,17.970,187.3,13.5,0.91,18.390,187.5 -13.6,0.91,17.570,189.4,13.5,0.91,17.990,189.6 -13.9,0.91,17.860,188.7,13.8,0.91,18.280,189.0 -13.7,0.91,16.520,185.6,13.5,0.91,17.090,185.6 -14.4,0.91,16.590,187.3,14.2,0.91,16.870,187.4 -14.8,0.91,16.330,183.5,14.7,0.91,16.550,183.8 -15.9,0.91,14.890,186.9,15.7,0.91,15.040,187.1 -17.5,0.91,13.320,173.3,17.3,0.91,13.440,173.4 -18.8,0.91,13.390,174.6,18.6,0.91,13.550,174.6 -19.4,0.91,13.530,168.3,19.2,0.91,13.720,168.5 -20.7,0.91,13.140,171.1,20.5,0.91,13.360,171.3 -20.0,0.90,14.970,165.5,19.8,0.90,15.220,165.5 -19.7,0.90,15.090,162.1,19.5,0.90,15.480,162.3 -18.6,0.90,14.590,160.6,18.5,0.90,15.120,160.7 -18.1,0.90,15.970,168.1,17.9,0.90,16.560,168.2 -17.0,0.90,15.650,167.5,16.8,0.90,16.220,167.6 -15.8,0.90,15.470,165.1,15.6,0.90,16.240,165.3 -15.6,0.90,14.560,169.7,15.4,0.90,15.040,169.7 -15.1,0.90,15.680,170.8,15.0,0.90,16.330,170.9 -14.7,0.90,16.450,169.3,14.5,0.90,17.050,169.4 -14.3,0.90,16.890,171.0,14.1,0.90,17.630,171.1 -14.1,0.90,16.780,174.6,13.9,0.90,17.380,174.6 -14.0,0.90,17.010,176.7,13.8,0.90,17.340,176.8 -14.4,0.90,15.820,183.4,14.3,0.90,16.230,183.7 -14.6,0.90,14.350,188.2,14.4,0.90,14.790,188.4 -14.7,0.90,14.060,191.4,14.5,0.90,14.520,191.7 -14.5,0.90,13.000,198.1,14.3,0.90,13.400,198.3 -14.7,0.90,9.270,210.1,14.5,0.90,9.800,210.1 -14.8,0.90,12.190,218.2,14.6,0.90,12.720,218.2 -15.9,0.90,10.440,217.5,15.7,0.90,10.570,217.8 -17.4,0.90,7.630,270.5,17.2,0.90,7.710,270.2 -18.0,0.90,7.880,272.6,17.8,0.90,7.990,272.4 -18.6,0.90,7.980,259.1,18.4,0.90,8.060,259.6 -19.3,0.90,8.490,267.9,19.0,0.90,8.630,267.1 -19.0,0.90,8.330,265.4,18.8,0.90,8.470,265.4 -18.7,0.90,8.740,276.7,18.5,0.90,8.860,276.0 -18.2,0.90,8.560,282.8,18.0,0.90,8.940,282.8 -17.2,0.90,11.440,280.2,17.1,0.90,12.100,279.7 -15.2,0.90,14.580,293.3,15.1,0.90,15.180,292.9 -15.4,0.90,12.500,297.1,15.3,0.90,12.970,297.1 -15.6,0.90,8.500,279.0,15.5,0.90,9.200,280.6 -15.0,0.90,7.250,279.6,14.8,0.90,8.080,283.8 -14.2,0.90,6.940,282.1,14.1,0.90,8.150,284.3 -13.6,0.90,10.440,307.7,13.5,0.90,10.940,308.0 -13.0,0.90,9.320,306.9,12.9,0.90,10.180,309.2 -12.5,0.90,10.510,301.4,12.3,0.90,11.230,302.6 -10.4,0.90,14.850,314.3,10.2,0.90,15.350,315.7 -6.5,0.90,14.280,335.5,6.3,0.90,14.900,335.4 -5.1,0.90,10.570,335.8,4.9,0.90,11.570,335.7 -3.7,0.90,14.190,341.1,3.6,0.90,14.800,340.5 -3.1,0.91,13.260,326.1,2.9,0.91,13.560,326.2 -3.1,0.91,14.950,339.8,2.9,0.91,15.240,339.7 -3.8,0.91,13.290,337.1,3.6,0.91,13.510,337.0 -4.8,0.91,13.360,333.4,4.5,0.91,13.590,333.3 -5.5,0.91,13.400,337.1,5.3,0.91,13.620,337.0 -6.3,0.91,12.050,341.1,6.0,0.91,12.240,340.9 -7.1,0.91,12.030,337.0,6.9,0.91,12.220,336.8 -8.0,0.91,10.950,332.1,7.7,0.91,11.140,331.9 -8.4,0.91,11.500,322.8,8.2,0.91,11.710,322.9 -8.6,0.91,11.450,324.7,8.4,0.91,11.680,324.7 -8.2,0.91,11.520,333.2,8.0,0.91,11.820,333.3 -7.6,0.91,9.220,338.4,7.5,0.91,9.760,338.3 -7.2,0.91,11.470,343.4,7.1,0.91,12.250,343.9 -6.6,0.91,8.370,357.0,6.5,0.91,8.520,359.5 -6.2,0.91,10.010,349.9,6.0,0.91,11.110,351.5 -5.7,0.91,9.600,351.0,5.6,0.91,9.660,352.1 -5.1,0.91,11.630,342.0,5.0,0.91,12.210,344.8 -4.4,0.91,10.150,335.7,4.4,0.91,10.550,338.6 -3.9,0.91,12.400,343.3,3.8,0.91,13.200,345.4 -3.0,0.91,12.400,342.7,2.9,0.91,12.890,343.3 -2.6,0.91,12.100,333.4,2.5,0.91,12.760,336.4 -2.1,0.91,11.230,334.7,2.0,0.91,11.570,338.6 -1.9,0.91,9.880,334.3,1.9,0.91,9.930,337.5 -1.7,0.91,8.850,324.9,1.9,0.91,8.990,327.6 -1.5,0.91,7.070,321.5,1.8,0.91,7.640,324.7 -3.0,0.91,4.970,310.3,2.9,0.91,5.140,310.9 -5.2,0.91,4.390,306.4,5.0,0.91,4.440,306.7 -7.6,0.91,4.480,305.1,7.4,0.91,4.530,305.2 -10.0,0.91,4.350,300.4,9.8,0.91,4.400,300.2 -12.3,0.91,5.000,290.4,12.1,0.91,5.100,289.9 -13.9,0.91,6.180,281.1,13.7,0.91,6.270,280.9 -15.1,0.91,5.280,272.8,14.8,0.91,5.360,272.8 -15.9,0.91,6.230,269.5,15.7,0.91,6.300,269.6 -16.6,0.91,5.300,276.7,16.4,0.91,5.400,276.9 -16.8,0.91,5.130,248.6,16.6,0.91,5.350,250.1 -16.8,0.91,4.510,238.9,16.7,0.91,4.750,239.3 -17.1,0.91,6.170,226.2,17.0,0.91,6.310,228.5 -17.1,0.91,7.370,217.5,17.0,0.91,7.460,219.7 -16.3,0.91,7.940,210.5,16.4,0.91,7.880,217.3 -15.9,0.91,8.040,214.3,16.0,0.91,8.140,218.3 -15.4,0.91,9.330,208.9,15.6,0.91,9.620,211.8 -15.0,0.91,10.670,204.6,15.2,0.91,11.050,206.7 -13.7,0.91,11.900,203.4,14.0,0.91,12.240,206.0 -14.6,0.91,12.500,214.6,15.0,0.91,13.200,216.7 -14.7,0.91,13.280,224.8,15.2,0.91,13.890,227.3 -14.0,0.91,15.190,232.5,14.4,0.91,16.080,235.1 -13.6,0.91,13.430,231.8,14.0,0.91,13.720,235.7 -11.3,0.91,12.100,242.1,11.8,0.91,12.720,247.9 -11.7,0.91,10.210,266.7,12.0,0.91,10.760,270.0 -12.3,0.91,6.560,286.2,12.2,0.91,6.670,286.6 -10.5,0.91,5.970,320.1,10.3,0.91,5.980,319.9 -10.5,0.91,6.340,337.9,10.3,0.91,6.360,337.6 -10.9,0.91,7.630,354.5,10.7,0.91,7.640,354.2 -11.6,0.91,7.980,4.7,11.4,0.91,8.040,4.4 -12.2,0.91,8.560,13.0,12.0,0.91,8.620,12.9 -13.0,0.91,8.820,15.1,12.8,0.91,8.900,15.2 -13.6,0.91,9.310,23.2,13.4,0.91,9.410,23.2 -13.8,0.91,9.430,27.2,13.6,0.91,9.540,27.4 -13.4,0.91,9.720,32.2,13.2,0.91,9.910,32.4 -12.6,0.91,10.500,39.2,12.5,0.91,11.160,40.0 -11.7,0.91,11.280,41.7,11.7,0.91,12.030,43.0 -10.6,0.91,10.600,45.1,10.7,0.91,11.530,47.1 -10.1,0.92,11.690,53.5,10.2,0.92,12.700,55.1 -9.4,0.92,10.110,58.7,9.7,0.92,11.460,60.2 -9.2,0.92,9.260,67.3,9.4,0.92,10.220,67.5 -9.0,0.92,8.050,69.5,9.1,0.92,8.550,69.0 -8.5,0.92,6.630,71.3,8.6,0.92,7.210,71.2 -7.7,0.92,5.980,52.0,7.9,0.92,6.430,54.6 -7.2,0.92,5.850,65.0,7.4,0.92,6.370,66.9 -7.2,0.92,6.230,72.8,7.6,0.92,6.730,74.5 -7.9,0.92,5.860,94.7,8.2,0.92,6.280,96.2 -8.0,0.92,5.820,99.5,8.2,0.92,6.180,101.3 -8.8,0.92,5.610,111.8,9.0,0.92,6.050,113.1 -9.7,0.92,5.390,129.5,9.6,0.92,5.540,129.3 -11.1,0.92,5.990,143.7,10.9,0.92,6.070,143.9 -12.2,0.92,5.840,152.0,12.0,0.92,5.900,152.1 -13.4,0.92,5.180,156.9,13.2,0.92,5.240,157.0 -14.6,0.92,5.300,161.9,14.4,0.92,5.350,162.0 -15.6,0.92,5.450,168.9,15.4,0.92,5.510,168.8 -16.3,0.92,5.710,177.2,16.1,0.92,5.750,177.0 -16.7,0.92,5.350,183.0,16.5,0.92,5.410,183.3 -17.1,0.92,5.450,182.8,16.9,0.92,5.520,183.1 -17.1,0.92,4.730,164.2,16.9,0.92,4.820,164.5 -17.0,0.92,5.600,146.3,16.9,0.92,5.650,147.2 -16.9,0.92,7.580,139.4,16.8,0.92,7.670,140.3 -16.0,0.92,11.770,147.0,16.1,0.92,12.120,148.4 -15.1,0.92,13.340,150.8,15.3,0.92,14.020,151.1 -14.4,0.91,14.430,162.2,14.5,0.91,15.140,164.9 -14.6,0.91,12.950,195.5,15.0,0.91,13.350,199.6 -13.8,0.91,13.760,203.6,14.0,0.91,14.760,205.3 -13.4,0.91,14.420,202.9,13.7,0.91,15.380,203.8 -12.9,0.91,15.490,201.1,13.0,0.91,16.410,201.2 -12.2,0.91,15.920,203.9,12.4,0.91,16.910,204.4 -12.1,0.91,15.750,206.7,12.2,0.91,16.640,207.5 -11.3,0.91,15.820,204.8,11.3,0.91,16.580,206.0 -10.7,0.91,15.380,205.2,10.8,0.91,15.960,206.3 -10.6,0.91,14.690,204.2,10.6,0.91,15.460,205.2 -11.7,0.92,12.670,203.6,11.6,0.92,12.960,204.1 -13.5,0.92,11.660,203.0,13.3,0.92,11.720,203.4 -15.3,0.92,11.830,202.8,15.1,0.92,11.890,203.0 -17.1,0.91,11.770,201.2,16.9,0.91,11.850,201.3 -18.4,0.91,11.020,200.4,18.2,0.91,11.100,200.5 -19.6,0.91,10.090,198.6,19.3,0.91,10.170,198.7 -20.5,0.91,9.750,196.4,20.3,0.91,9.840,196.6 -21.1,0.91,9.020,193.7,20.9,0.91,9.120,193.9 -21.3,0.91,9.320,192.6,21.1,0.91,9.440,192.8 -21.0,0.91,9.540,186.5,20.9,0.91,9.900,186.7 -20.8,0.91,12.220,191.0,20.8,0.91,12.520,190.9 -20.1,0.91,13.600,195.8,20.1,0.91,14.170,196.5 -18.7,0.91,14.550,201.7,18.9,0.91,15.370,202.8 -17.7,0.91,16.190,205.1,17.7,0.91,17.030,205.4 -16.3,0.91,16.430,201.6,16.4,0.91,17.350,202.1 -15.8,0.91,16.870,202.1,15.9,0.91,17.800,202.5 -15.1,0.91,16.390,199.7,15.3,0.91,17.310,200.6 -15.0,0.91,17.320,204.5,15.1,0.91,18.300,205.3 -14.5,0.91,17.800,205.5,14.7,0.91,18.810,206.1 -13.8,0.91,17.300,206.2,14.0,0.91,18.300,207.3 -13.9,0.91,16.390,213.9,14.1,0.91,17.510,214.7 -12.7,0.91,16.710,206.3,12.8,0.91,17.490,207.6 -11.9,0.91,16.700,210.2,12.1,0.91,17.560,211.3 -12.4,0.91,13.950,210.6,12.4,0.91,14.750,211.2 -13.7,0.91,12.270,208.0,13.6,0.91,12.600,208.7 -15.8,0.91,11.550,209.2,15.6,0.91,11.640,209.5 -17.3,0.91,12.300,203.3,17.1,0.91,12.360,203.5 -19.4,0.91,12.030,204.1,19.2,0.91,12.110,204.2 -21.3,0.91,11.070,206.0,21.0,0.91,11.160,206.2 -22.9,0.91,10.580,204.8,22.7,0.91,10.680,205.0 -23.9,0.91,10.410,202.0,23.7,0.91,10.520,202.3 -24.3,0.91,10.500,201.7,24.1,0.91,10.620,201.9 -24.1,0.91,11.000,199.9,23.9,0.91,11.130,200.1 -23.6,0.91,11.490,195.2,23.4,0.91,11.860,195.4 -22.6,0.91,13.870,196.5,22.6,0.91,14.550,197.0 -21.1,0.90,14.660,193.5,21.2,0.90,15.410,194.5 -19.7,0.90,16.860,196.3,19.7,0.90,17.720,196.9 -18.6,0.90,17.320,197.1,18.6,0.90,18.200,197.8 -17.5,0.90,17.850,196.8,17.5,0.90,18.760,197.6 -16.8,0.90,18.510,198.4,16.9,0.90,19.500,199.3 -16.4,0.90,18.900,201.8,16.5,0.90,20.040,202.8 -16.1,0.90,19.850,203.1,16.2,0.90,20.960,204.0 -15.6,0.90,19.070,205.0,15.7,0.90,20.140,205.9 -15.3,0.90,18.380,206.3,15.4,0.90,19.390,207.3 -14.6,0.90,18.610,204.8,14.7,0.90,19.440,205.8 -14.0,0.90,17.740,206.1,14.2,0.90,18.390,207.2 -13.5,0.90,17.140,206.4,13.6,0.90,17.750,207.7 -13.8,0.90,15.300,206.6,13.9,0.90,16.070,207.7 -14.8,0.90,13.520,205.7,14.7,0.90,13.950,206.5 -16.9,0.90,12.600,208.8,16.8,0.90,12.700,209.3 -19.6,0.90,12.440,208.3,19.4,0.90,12.500,208.7 -22.1,0.90,11.430,211.3,21.9,0.90,11.520,211.5 -24.2,0.90,9.840,212.9,24.0,0.90,9.930,213.0 -26.0,0.90,8.350,215.4,25.8,0.90,8.440,215.6 -27.4,0.90,7.710,210.8,27.2,0.90,7.800,211.1 -28.5,0.90,7.480,216.2,28.3,0.90,7.590,216.3 -28.7,0.90,7.670,207.2,28.5,0.90,7.780,207.6 -28.4,0.90,9.870,189.8,28.2,0.90,10.140,190.4 -26.6,0.90,13.290,180.0,26.7,0.90,14.200,181.4 -21.6,0.90,11.000,28.9,21.8,0.90,11.340,30.6 -20.1,0.90,7.880,59.1,19.8,0.90,8.900,57.1 -18.4,0.90,8.290,39.9,18.1,0.90,8.700,41.0 -16.8,0.90,4.750,18.7,16.7,0.90,4.930,20.2 -14.5,0.90,6.020,10.7,14.3,0.90,5.740,13.6 -13.5,0.90,5.450,33.4,13.4,0.90,4.490,38.2 -12.6,0.90,4.730,26.4,12.6,0.90,4.390,30.5 -10.9,0.90,8.160,20.8,10.5,0.90,8.290,24.5 -9.9,0.90,9.090,11.0,9.8,0.90,9.460,15.1 -8.6,0.90,10.480,14.1,8.4,0.90,11.230,16.4 -7.7,0.90,9.400,19.0,7.5,0.90,10.270,21.1 -6.8,0.90,9.790,12.2,6.6,0.90,10.510,14.2 -6.4,0.90,7.950,15.3,6.2,0.90,7.990,15.6 -7.0,0.90,7.150,21.4,6.9,0.90,7.170,21.4 -8.7,0.90,6.180,17.0,8.5,0.90,6.190,17.0 -10.6,0.90,5.120,16.2,10.4,0.90,5.130,16.0 -12.4,0.90,3.930,17.4,12.2,0.90,3.920,16.9 -14.0,0.90,3.440,16.1,13.8,0.90,3.430,15.1 -15.4,0.90,2.490,30.8,15.2,0.90,2.450,28.8 -17.0,0.90,1.010,41.7,16.8,0.90,0.940,37.5 -18.4,0.90,0.520,80.1,18.3,0.90,0.410,84.4 -19.9,0.90,2.970,202.9,19.7,0.90,3.000,202.9 -20.1,0.90,4.240,176.3,19.9,0.90,4.360,177.1 -19.5,0.90,8.070,166.0,19.4,0.90,8.190,166.9 -19.5,0.90,11.160,173.3,19.5,0.90,11.230,175.9 -13.5,0.90,15.800,335.0,13.3,0.90,16.760,334.9 -13.1,0.90,7.020,85.8,14.0,0.90,6.080,79.9 -20.5,0.90,9.610,182.9,20.7,0.90,9.680,185.9 -19.9,0.90,10.380,213.1,20.1,0.90,10.920,219.5 -19.0,0.90,10.860,191.5,20.2,0.90,11.230,196.2 -17.8,0.90,12.160,208.7,18.9,0.90,12.660,210.1 -18.6,0.90,11.670,222.2,19.7,0.90,12.160,224.8 -19.0,0.90,11.810,269.2,19.4,0.90,12.250,276.4 -16.6,0.90,10.360,307.2,16.8,0.90,10.940,313.4 -15.4,0.90,12.190,326.6,15.3,0.90,14.780,333.0 -13.3,0.90,13.770,334.0,13.4,0.90,16.460,338.7 -11.1,0.90,9.640,1.0,10.9,0.90,10.030,0.5 -10.2,0.90,10.300,5.3,10.0,0.90,10.350,5.3 -9.1,0.90,10.600,13.2,8.8,0.90,10.650,13.0 -9.8,0.91,9.920,14.6,9.6,0.91,9.980,14.5 -11.5,0.91,9.520,12.1,11.3,0.91,9.580,11.9 -12.8,0.91,8.560,11.1,12.6,0.91,8.620,10.8 -14.1,0.91,7.040,12.0,13.9,0.91,7.090,11.8 -15.0,0.91,5.960,16.1,14.8,0.91,5.990,15.7 -15.5,0.91,5.090,25.6,15.3,0.91,5.110,25.3 -15.9,0.91,4.580,20.8,15.7,0.91,4.600,20.8 -15.4,0.91,4.410,43.0,15.2,0.91,4.420,42.6 -14.9,0.91,4.310,62.6,14.7,0.91,4.260,64.8 -14.5,0.91,5.320,91.1,14.4,0.91,5.280,92.3 -14.3,0.91,6.790,82.2,14.2,0.91,6.760,82.6 -13.4,0.91,9.400,106.2,13.6,0.91,9.120,104.7 -13.5,0.91,10.040,120.3,13.9,0.91,9.620,120.2 -12.8,0.90,11.410,129.0,13.2,0.90,11.850,129.7 -13.0,0.90,12.210,144.4,13.7,0.90,12.590,145.9 -10.2,0.90,10.220,144.1,10.3,0.90,11.340,143.5 -9.8,0.90,10.290,158.2,9.9,0.90,11.600,157.9 -10.1,0.90,15.330,166.8,10.3,0.90,16.140,166.3 -9.6,0.90,16.340,168.2,9.8,0.90,17.150,167.8 -7.8,0.91,6.440,171.3,7.8,0.91,8.250,168.0 -7.8,0.91,11.110,151.1,7.9,0.91,12.530,151.2 -8.4,0.91,9.460,161.8,8.3,0.91,10.120,162.0 -10.2,0.91,7.010,166.5,10.0,0.91,7.140,166.7 -12.5,0.91,5.840,173.1,12.3,0.91,5.880,173.3 -14.9,0.91,5.280,177.4,14.8,0.91,5.310,177.6 -17.6,0.91,4.630,197.7,17.4,0.91,4.670,198.2 -19.2,0.91,4.460,204.5,19.0,0.91,4.500,205.1 -20.5,0.91,2.820,202.7,20.3,0.91,2.830,203.7 -21.4,0.90,0.900,143.6,21.3,0.90,0.840,144.2 -22.0,0.90,4.020,43.5,21.8,0.90,4.040,43.7 -19.3,0.91,13.690,44.3,19.1,0.91,13.830,44.6 -17.4,0.91,12.240,58.1,17.2,0.91,12.450,58.3 -15.2,0.91,14.380,59.5,15.1,0.91,14.880,59.5 -14.3,0.91,12.230,50.3,14.1,0.91,12.510,50.5 -13.8,0.91,11.820,52.5,13.6,0.91,12.030,52.9 -12.7,0.91,9.880,52.9,12.5,0.91,10.300,53.4 -12.5,0.91,10.750,50.8,12.3,0.91,11.090,51.0 -11.7,0.91,9.680,62.3,11.6,0.91,9.980,62.8 -11.1,0.91,8.020,61.9,11.0,0.91,8.440,62.6 -10.7,0.91,8.080,60.3,10.5,0.91,8.510,62.0 -10.1,0.91,8.600,57.7,10.0,0.91,8.930,61.0 -9.5,0.91,8.740,49.9,9.5,0.91,9.050,53.8 -9.1,0.91,8.200,63.9,9.2,0.91,8.930,68.0 -8.8,0.91,8.190,64.1,8.9,0.91,8.920,66.4 -8.0,0.91,7.550,53.4,8.0,0.91,7.980,55.1 -7.6,0.91,5.820,56.6,7.8,0.91,6.690,59.3 -8.7,0.92,5.050,64.4,8.6,0.92,5.200,65.3 -10.6,0.92,5.780,67.4,10.4,0.92,5.870,67.7 -11.9,0.91,6.490,77.5,11.7,0.91,6.560,77.7 -13.1,0.91,5.990,83.8,12.9,0.91,6.030,83.9 -14.0,0.91,5.110,87.5,13.8,0.91,5.140,87.9 -15.1,0.91,4.700,128.3,14.8,0.91,4.710,128.0 -15.5,0.91,4.770,120.9,15.3,0.91,4.780,121.2 -16.1,0.91,5.020,133.2,15.9,0.91,5.090,133.8 -16.1,0.91,5.060,139.8,16.0,0.91,5.130,140.2 -16.0,0.91,6.300,143.2,15.8,0.91,6.410,143.7 -15.4,0.91,8.660,146.0,15.3,0.91,9.090,145.5 -14.7,0.91,9.160,155.5,14.6,0.91,9.720,155.6 -14.0,0.91,10.520,159.8,13.9,0.91,11.150,159.9 -13.3,0.91,12.480,162.5,13.2,0.91,13.230,162.4 -12.8,0.91,13.610,165.6,12.7,0.91,14.330,165.6 -12.1,0.91,14.880,169.0,12.1,0.91,15.730,168.8 -11.6,0.90,15.220,174.7,11.6,0.90,15.930,174.7 -11.8,0.90,16.040,182.4,11.8,0.90,16.820,182.4 -11.3,0.90,16.690,184.9,11.3,0.90,17.430,185.2 -10.9,0.90,17.320,182.7,10.9,0.90,17.980,183.2 -11.0,0.90,17.350,183.1,10.9,0.90,17.950,183.5 -10.5,0.90,16.390,182.9,10.5,0.90,16.940,183.6 -9.9,0.90,16.430,184.3,9.9,0.90,17.080,185.3 -10.3,0.90,16.970,188.8,10.2,0.90,17.320,189.0 -11.6,0.90,16.150,190.0,11.5,0.90,16.370,190.3 -12.8,0.90,16.500,195.4,12.6,0.90,16.690,195.7 -14.9,0.90,15.950,194.8,14.7,0.90,16.080,195.0 -17.9,0.90,13.830,197.5,17.7,0.90,13.980,197.7 -20.6,0.90,12.490,204.4,20.4,0.90,12.630,204.7 -22.9,0.90,11.090,225.2,22.7,0.90,11.230,225.6 -24.3,0.90,10.610,244.7,24.1,0.90,10.800,245.0 -25.3,0.89,12.000,262.4,25.1,0.89,12.210,262.2 -25.8,0.89,10.860,260.5,25.6,0.89,11.050,261.0 -25.6,0.89,10.920,274.8,25.5,0.89,11.570,274.8 -25.6,0.89,12.520,260.9,25.5,0.89,13.000,261.4 -25.3,0.89,12.210,274.1,25.3,0.89,13.380,276.5 -25.0,0.89,11.130,273.1,24.9,0.89,11.740,276.9 -23.1,0.89,11.370,219.7,23.0,0.89,12.300,220.1 -21.4,0.89,11.830,226.8,21.4,0.89,12.750,229.6 -20.6,0.89,12.370,229.4,21.1,0.89,12.830,235.2 -21.4,0.90,9.980,261.6,22.1,0.90,10.330,271.5 -22.2,0.90,11.350,300.6,22.1,0.90,12.010,306.2 -20.6,0.90,10.920,315.2,20.5,0.90,11.470,321.7 -15.5,0.90,10.480,352.7,15.4,0.90,10.550,352.6 -11.0,0.90,8.100,358.5,10.8,0.90,8.210,358.8 -9.2,0.90,9.320,8.8,9.0,0.90,9.420,8.1 -8.5,0.90,7.560,12.0,8.3,0.90,7.690,12.4 -8.3,0.90,9.180,16.7,8.2,0.90,9.270,16.8 -7.7,0.90,8.640,10.4,7.5,0.90,8.690,10.4 -7.0,0.90,8.750,10.8,6.8,0.90,8.780,10.8 -6.5,0.90,8.370,18.7,6.3,0.90,8.380,18.7 -6.4,0.90,7.950,13.2,6.2,0.90,7.970,13.1 -6.4,0.90,7.790,11.6,6.3,0.90,7.810,11.5 -6.4,0.90,7.120,17.7,6.3,0.90,7.140,17.6 -6.3,0.90,6.560,20.1,6.1,0.90,6.560,20.0 -6.3,0.90,5.230,25.6,6.1,0.90,5.230,25.6 -6.5,0.90,4.770,23.4,6.3,0.90,4.750,23.4 -6.1,0.90,6.490,15.0,5.9,0.90,6.500,14.8 -5.8,0.90,5.520,36.5,5.6,0.90,5.520,36.6 -5.6,0.90,5.240,64.7,5.6,0.90,5.530,64.3 -6.2,0.90,5.160,86.5,6.5,0.90,5.610,85.5 -5.6,0.90,5.890,43.9,5.5,0.90,6.090,46.1 -5.7,0.90,5.480,54.0,5.7,0.90,5.760,55.9 -5.4,0.90,5.800,57.5,5.2,0.90,6.030,57.8 -4.8,0.90,5.480,76.9,4.8,0.90,5.870,77.3 -5.0,0.90,5.000,78.7,5.0,0.90,5.880,80.1 -5.1,0.90,5.150,14.6,4.9,0.90,5.100,19.1 -6.2,0.90,3.780,74.6,6.3,0.90,4.310,74.1 -5.3,0.90,1.790,63.0,5.2,0.90,2.070,75.2 -6.9,0.90,2.710,142.3,7.0,0.90,3.030,141.6 -7.2,0.90,1.280,190.3,7.1,0.90,1.810,177.9 -7.4,0.90,3.080,60.7,7.5,0.90,3.210,59.4 -9.0,0.90,2.740,142.5,8.8,0.90,2.780,143.8 -11.5,0.90,6.860,179.0,11.3,0.90,6.900,179.2 -14.2,0.90,8.350,197.0,14.0,0.90,8.400,197.3 -17.0,0.90,5.670,224.8,16.8,0.90,5.710,225.5 -18.5,0.90,5.020,230.3,18.3,0.90,5.060,230.7 -21.5,0.90,7.090,267.2,21.3,0.90,7.270,267.5 -21.8,0.90,4.430,274.8,21.5,0.90,4.540,275.2 -23.2,0.90,11.130,284.2,23.0,0.90,11.310,284.1 -23.4,0.90,14.800,274.5,23.2,0.90,15.060,274.6 -23.1,0.90,11.470,277.6,22.9,0.90,11.990,277.5 -22.3,0.90,11.550,289.5,22.2,0.90,12.340,291.6 -15.7,0.90,6.730,19.1,15.6,0.90,6.800,22.6 -16.0,0.90,6.150,8.6,16.4,0.90,7.080,354.8 -7.5,0.90,12.280,356.6,7.3,0.90,12.470,356.6 -8.4,0.90,11.840,350.7,8.3,0.90,12.490,351.0 -6.0,0.90,15.390,354.6,5.8,0.90,15.660,354.9 -3.8,0.91,13.010,356.0,3.6,0.91,13.350,355.9 -2.1,0.91,14.830,3.8,1.9,0.91,15.210,3.6 -1.7,0.91,14.040,357.6,1.5,0.91,14.520,357.8 -1.1,0.91,17.980,349.8,0.9,0.91,18.510,350.1 -0.1,0.91,16.750,352.4,-0.0,0.91,17.290,352.7 --0.4,0.91,13.360,343.2,-0.6,0.91,14.110,343.1 --0.8,0.91,11.500,343.4,-0.9,0.91,12.000,343.2 --1.0,0.91,12.340,349.4,-1.2,0.91,12.570,349.5 --0.5,0.91,11.560,349.4,-0.7,0.91,11.720,349.4 -0.4,0.91,10.450,349.6,0.2,0.91,10.590,349.6 -1.7,0.91,10.020,349.5,1.4,0.91,10.150,349.4 -3.1,0.91,8.870,346.1,2.8,0.91,8.980,345.9 -4.3,0.91,8.170,345.5,4.0,0.91,8.270,345.3 -5.2,0.91,8.440,350.4,5.0,0.91,8.540,350.2 -5.8,0.91,8.080,353.2,5.6,0.91,8.170,353.2 -6.4,0.91,7.530,356.2,6.2,0.91,7.620,356.2 -6.6,0.91,7.290,4.6,6.4,0.91,7.370,4.1 -6.5,0.91,6.900,12.3,6.3,0.91,7.000,12.1 -6.1,0.91,7.560,22.6,5.9,0.91,7.700,22.9 -5.5,0.91,8.150,33.5,5.4,0.91,8.540,35.4 -5.0,0.91,8.960,48.1,4.9,0.91,9.400,48.3 -3.9,0.91,8.450,58.1,3.9,0.91,9.620,57.6 -2.9,0.91,8.340,64.6,2.9,0.91,9.430,63.0 -2.2,0.91,8.420,66.7,2.2,0.91,9.610,65.6 -1.6,0.91,8.810,66.7,1.5,0.91,9.850,66.8 -0.5,0.91,8.700,73.0,0.5,0.91,9.570,73.0 --0.1,0.91,8.090,73.1,-0.1,0.91,8.980,73.0 --0.6,0.91,7.910,71.6,-0.6,0.91,8.690,71.9 --1.1,0.91,7.180,61.4,-1.1,0.91,7.750,62.0 --1.5,0.91,6.510,50.9,-1.4,0.91,7.080,51.3 --1.8,0.92,6.110,46.0,-1.7,0.92,6.700,46.6 --1.9,0.92,5.300,43.2,-2.0,0.92,6.050,43.4 --0.4,0.92,5.600,44.6,-0.6,0.92,5.660,44.7 -0.9,0.92,5.650,41.3,0.7,0.92,5.710,41.4 -2.1,0.92,5.490,42.8,1.9,0.92,5.520,42.8 -3.2,0.92,4.710,43.2,3.0,0.92,4.730,43.1 -4.3,0.92,3.710,45.9,4.1,0.92,3.720,45.6 -5.3,0.92,3.480,34.3,5.1,0.92,3.490,34.1 -6.0,0.92,3.370,24.6,5.8,0.92,3.370,24.7 -6.4,0.91,3.150,28.3,6.2,0.91,3.140,28.3 -6.7,0.91,3.400,48.2,6.5,0.91,3.420,47.5 -6.7,0.92,3.720,22.6,6.5,0.92,3.720,22.5 -6.3,0.92,5.030,60.1,6.1,0.92,5.030,58.3 -5.7,0.92,5.240,61.9,5.6,0.92,5.280,61.0 -5.8,0.92,5.170,53.2,5.6,0.92,5.060,53.6 -4.7,0.92,4.570,72.0,4.8,0.92,5.050,70.7 -4.5,0.92,5.070,76.4,4.6,0.92,5.310,76.8 -4.8,0.92,4.290,90.3,4.6,0.92,4.210,88.7 -4.7,0.92,4.250,108.9,4.7,0.92,4.040,106.5 -5.0,0.92,4.000,135.9,5.0,0.92,3.730,133.6 -4.3,0.92,6.120,146.7,4.4,0.92,5.680,147.7 -3.9,0.92,7.690,157.9,4.0,0.92,7.450,158.1 -4.6,0.92,8.020,163.9,4.7,0.92,8.010,164.4 -3.5,0.92,8.440,179.1,3.8,0.92,8.440,177.2 -3.6,0.92,8.880,185.4,3.9,0.92,9.050,183.8 -4.0,0.92,8.430,186.0,4.4,0.92,8.960,184.9 -4.6,0.92,7.170,185.2,4.5,0.92,7.320,184.9 -6.1,0.92,7.960,185.5,5.9,0.92,8.020,185.5 -7.5,0.92,7.560,187.5,7.3,0.92,7.630,187.5 -8.9,0.92,7.290,188.4,8.7,0.92,7.360,188.4 -10.1,0.92,6.930,187.9,9.9,0.92,7.020,188.0 -11.3,0.92,6.760,187.4,11.1,0.92,6.830,187.1 -12.3,0.91,7.540,180.0,12.1,0.91,7.620,180.1 -13.2,0.91,7.590,183.9,13.0,0.91,7.680,183.9 -13.6,0.91,8.910,189.4,13.3,0.91,9.020,189.0 -13.6,0.91,9.060,182.6,13.5,0.91,9.260,182.8 -13.4,0.91,11.620,169.7,13.3,0.91,12.280,170.4 -12.5,0.91,12.450,166.6,12.5,0.91,13.170,166.7 -11.0,0.91,13.160,169.3,11.1,0.91,13.860,169.9 -9.8,0.91,13.730,174.7,9.9,0.91,14.500,175.5 -8.8,0.91,13.690,184.1,8.9,0.91,14.520,185.7 -8.5,0.91,16.160,190.8,8.6,0.91,17.200,191.3 -8.2,0.91,18.140,191.3,8.3,0.91,18.980,191.5 -7.6,0.91,17.900,194.0,7.6,0.91,18.660,194.4 -7.7,0.91,18.800,196.3,7.7,0.91,19.570,196.5 -7.0,0.91,18.340,193.5,7.1,0.91,19.080,193.9 -6.3,0.91,18.050,191.5,6.3,0.91,18.790,192.0 -5.8,0.91,17.920,191.0,5.8,0.91,18.680,191.4 -5.7,0.91,18.120,195.3,5.7,0.91,18.900,195.7 -6.0,0.91,17.690,195.9,5.9,0.91,18.730,195.8 -7.3,0.91,17.350,194.7,7.1,0.91,17.620,194.8 -8.8,0.91,17.030,194.9,8.6,0.91,17.200,195.0 -10.8,0.91,16.190,194.4,10.6,0.91,16.360,194.4 -12.8,0.91,15.830,194.1,12.6,0.91,16.010,194.2 -14.4,0.91,14.030,192.8,14.2,0.91,14.200,192.8 -15.6,0.91,12.830,191.4,15.4,0.91,12.980,191.5 -16.6,0.91,12.500,190.2,16.4,0.91,12.650,190.3 -17.4,0.91,12.260,189.2,17.2,0.91,12.410,189.3 -17.6,0.91,12.960,188.0,17.4,0.91,13.120,188.1 -17.0,0.91,13.370,188.8,16.8,0.91,13.580,188.6 -16.0,0.91,14.870,185.2,16.0,0.91,15.640,185.4 -14.6,0.91,15.920,185.5,14.5,0.91,16.540,185.7 -12.8,0.91,17.090,188.3,12.7,0.91,17.710,188.5 -11.0,0.91,18.690,192.4,10.8,0.91,19.340,192.8 -9.8,0.91,18.090,192.2,9.7,0.91,18.730,192.6 -9.2,0.91,17.360,193.6,9.1,0.91,18.140,194.3 -8.8,0.91,16.890,191.4,8.8,0.91,17.650,192.4 -8.7,0.91,16.490,193.2,8.7,0.91,17.250,194.4 -8.8,0.91,17.880,196.9,8.8,0.91,18.630,197.4 -8.9,0.91,18.240,200.1,8.8,0.91,18.820,200.4 -8.8,0.91,18.540,199.6,8.7,0.91,19.220,200.1 -9.5,0.91,16.530,197.0,9.3,0.91,16.960,197.2 -9.9,0.91,14.700,194.4,9.8,0.91,15.100,194.5 -10.6,0.91,15.520,193.5,10.5,0.91,15.970,193.7 -11.5,0.91,14.270,195.3,11.3,0.91,14.650,195.6 -12.6,0.91,13.080,194.8,12.4,0.91,13.270,195.0 -13.9,0.91,13.450,193.5,13.7,0.91,13.570,193.5 -16.0,0.91,10.950,194.4,15.8,0.91,11.070,194.5 -17.8,0.91,9.620,187.7,17.6,0.91,9.730,188.1 -19.5,0.91,9.700,190.6,19.3,0.91,9.810,190.8 -20.7,0.91,8.850,187.7,20.5,0.91,8.970,187.8 -21.4,0.91,9.050,184.2,21.2,0.91,9.170,184.4 -21.7,0.91,9.220,188.2,21.5,0.91,9.340,187.9 -21.2,0.91,10.440,178.6,21.0,0.91,10.620,178.5 -20.8,0.91,11.590,180.6,20.8,0.91,12.250,181.4 -18.4,0.91,15.550,181.6,18.3,0.91,16.220,181.8 -17.2,0.91,16.560,188.5,17.2,0.91,17.260,189.2 -16.3,0.91,17.220,190.4,16.2,0.91,17.860,190.5 -15.6,0.91,16.840,197.0,15.5,0.91,17.460,197.1 -14.8,0.91,17.120,193.2,14.8,0.91,17.810,193.6 -14.3,0.91,17.690,194.7,14.1,0.91,18.150,194.8 -14.1,0.91,17.450,197.5,13.9,0.91,17.990,197.6 -14.1,0.91,18.570,201.3,13.9,0.91,19.040,201.1 -14.2,0.91,15.570,198.7,14.0,0.91,16.000,198.8 -14.3,0.91,16.780,202.5,14.1,0.91,17.180,202.7 -14.0,0.91,14.800,197.6,13.8,0.91,15.150,197.9 -14.0,0.91,15.230,207.1,13.9,0.91,15.610,207.1 -14.2,0.91,13.690,202.9,14.0,0.91,14.080,203.2 -15.1,0.91,15.740,206.0,14.9,0.91,15.910,206.0 -16.5,0.91,7.120,206.9,16.3,0.91,7.250,206.9 -17.5,0.91,6.830,198.2,17.3,0.91,6.900,198.1 -19.0,0.91,7.560,191.8,18.8,0.91,7.630,191.8 -20.4,0.91,8.270,188.3,20.1,0.91,8.360,188.4 -21.4,0.91,8.570,191.7,21.1,0.91,8.640,191.4 -22.3,0.91,9.170,186.8,22.1,0.91,9.280,186.9 -22.9,0.91,9.300,185.2,22.7,0.91,9.460,185.3 -22.8,0.91,9.950,179.3,22.6,0.91,10.120,179.1 -22.1,0.91,8.670,166.8,21.9,0.91,9.030,167.1 -13.4,0.91,20.320,289.4,13.3,0.91,20.560,289.6 -14.0,0.91,5.920,112.8,13.8,0.91,5.930,112.6 -15.3,0.91,8.980,168.2,15.7,0.91,9.420,172.2 -15.1,0.91,4.840,342.1,15.2,0.91,4.900,339.5 -15.7,0.91,8.540,168.8,15.7,0.91,8.950,171.8 -15.2,0.91,7.420,159.1,15.3,0.91,8.340,161.4 -14.4,0.91,6.580,137.4,14.4,0.91,6.980,140.7 -14.8,0.91,10.780,169.5,14.8,0.91,11.360,169.4 -13.9,0.91,11.290,168.1,13.9,0.91,12.180,168.1 -14.2,0.91,14.470,180.1,14.2,0.91,14.960,180.5 -14.0,0.91,14.220,187.3,14.0,0.91,14.640,188.0 -13.7,0.91,13.720,198.0,13.7,0.91,14.130,198.8 -13.9,0.91,14.330,200.9,13.9,0.91,14.790,201.3 -13.6,0.91,14.570,202.3,13.5,0.91,14.920,202.5 -14.4,0.91,13.560,212.4,14.3,0.91,13.900,212.8 -15.8,0.91,12.960,214.4,15.7,0.91,13.040,214.5 -17.8,0.91,11.570,210.9,17.6,0.91,11.630,211.1 -19.8,0.91,8.270,219.6,19.6,0.91,8.340,219.6 -21.6,0.91,5.670,219.2,21.3,0.91,5.720,219.6 -23.3,0.91,5.190,222.4,23.1,0.91,5.240,222.9 -24.9,0.91,4.410,225.0,24.7,0.91,4.450,225.6 -26.0,0.90,3.620,217.8,25.8,0.90,3.660,219.0 -27.0,0.90,4.370,279.4,26.8,0.90,4.460,279.2 -26.8,0.90,5.150,275.5,26.7,0.90,5.140,275.9 -21.6,0.90,5.630,59.4,21.8,0.90,5.800,56.4 -22.8,0.90,8.400,74.0,22.6,0.90,8.430,73.4 -23.4,0.90,3.410,110.4,23.6,0.90,3.000,111.8 -22.9,0.90,3.850,129.2,22.9,0.90,3.710,132.3 -18.9,0.90,9.470,140.0,19.1,0.90,9.840,140.7 -19.8,0.90,8.420,181.5,20.4,0.90,7.860,190.2 -19.2,0.90,9.850,183.3,19.5,0.90,9.930,188.5 -18.6,0.90,12.050,190.5,18.8,0.90,12.540,192.7 -18.9,0.90,12.440,193.2,19.1,0.90,12.840,195.2 -18.7,0.90,12.260,201.4,18.8,0.90,12.700,203.1 -18.9,0.90,10.790,211.8,19.1,0.90,11.270,214.1 -18.7,0.90,3.630,276.9,18.6,0.90,4.160,270.5 -14.5,0.91,9.150,12.8,14.3,0.91,9.760,15.6 -14.1,0.91,10.770,21.9,13.9,0.91,10.930,22.1 -13.8,0.91,10.440,29.6,13.7,0.91,10.540,29.8 -14.2,0.91,11.270,38.0,14.0,0.91,11.390,38.1 -14.9,0.91,10.800,36.5,14.7,0.91,10.910,36.6 -16.4,0.91,9.450,39.8,16.2,0.91,9.560,39.9 -17.7,0.91,8.920,43.4,17.4,0.91,9.000,43.4 -18.6,0.91,7.800,42.1,18.4,0.91,7.890,42.3 -19.1,0.91,7.490,53.3,18.9,0.91,7.550,53.0 -19.6,0.91,6.830,41.4,19.4,0.91,6.910,41.4 -19.6,0.91,5.920,51.3,19.4,0.91,5.990,51.5 -19.3,0.91,5.480,58.1,19.1,0.91,5.500,58.1 -19.0,0.91,4.780,45.8,18.8,0.91,4.790,46.1 -18.7,0.91,5.920,52.7,18.6,0.91,5.920,52.9 -17.9,0.91,6.020,69.4,17.9,0.91,6.570,68.7 -17.1,0.91,4.660,69.6,17.1,0.91,5.190,72.2 -16.9,0.91,4.760,84.2,16.9,0.91,4.950,85.0 -16.5,0.91,5.070,88.1,16.5,0.91,5.050,90.5 -16.7,0.91,5.990,110.8,16.6,0.91,5.580,110.8 -16.6,0.91,7.760,136.7,16.5,0.91,7.500,137.8 -16.8,0.91,6.600,139.2,16.9,0.91,6.350,141.0 -16.3,0.91,8.230,143.8,16.4,0.91,7.840,146.4 -15.9,0.91,8.200,154.6,15.9,0.91,7.940,156.7 -15.6,0.91,9.060,157.9,15.7,0.91,8.870,159.3 -15.2,0.91,9.610,162.2,15.4,0.91,9.630,163.3 -14.6,0.91,8.600,167.9,15.0,0.91,9.360,167.1 -16.3,0.91,7.150,171.9,16.1,0.91,7.260,171.6 -17.8,0.91,7.630,165.7,17.7,0.91,7.690,165.8 -18.5,0.91,7.240,162.4,18.3,0.91,7.290,162.5 -19.6,0.91,7.220,166.3,19.4,0.91,7.270,166.3 -21.3,0.91,6.810,165.6,21.1,0.91,6.880,165.6 -22.6,0.91,6.800,162.9,22.4,0.91,6.880,162.9 -23.5,0.91,7.000,163.6,23.3,0.91,7.080,163.6 -23.9,0.91,8.290,163.9,23.7,0.91,8.390,164.0 -23.8,0.90,10.440,156.5,23.6,0.90,10.600,156.6 -24.1,0.90,9.880,161.3,23.9,0.90,10.060,161.4 -23.1,0.90,11.810,150.4,22.9,0.90,12.400,150.4 -22.0,0.90,11.550,158.7,21.9,0.90,12.190,158.6 -14.8,0.91,11.670,14.5,14.8,0.91,12.310,14.3 -14.6,0.91,6.170,43.6,14.5,0.91,6.820,41.9 -14.3,0.91,9.250,82.9,14.2,0.91,9.650,82.4 -14.4,0.91,7.880,107.0,14.3,0.91,8.460,107.1 -14.9,0.91,7.980,134.5,14.9,0.91,8.550,135.9 -15.8,0.90,10.240,148.7,15.8,0.90,10.990,149.2 -15.3,0.91,9.120,142.6,15.3,0.91,9.660,143.3 -15.3,0.90,8.100,151.0,15.3,0.90,8.730,151.9 -15.6,0.91,7.020,150.7,15.5,0.91,7.440,152.0 -15.7,0.91,6.060,156.9,15.5,0.91,6.420,158.0 -15.9,0.91,4.830,172.5,15.7,0.91,5.090,172.9 -16.4,0.91,3.650,195.0,16.3,0.91,4.130,197.3 -12.2,0.91,4.960,45.6,12.4,0.91,4.730,46.2 -12.0,0.91,4.770,54.6,11.9,0.91,4.840,54.9 -12.3,0.91,5.070,70.2,12.2,0.91,5.220,71.1 -13.3,0.91,6.300,53.8,13.1,0.91,6.360,54.2 -8.9,0.91,7.320,34.4,8.7,0.91,7.330,34.6 -8.0,0.91,8.310,28.3,7.8,0.91,8.310,28.5 -7.9,0.91,8.500,28.7,7.7,0.91,8.520,28.8 -7.6,0.91,9.520,33.5,7.4,0.91,9.560,33.6 -7.2,0.91,10.570,39.6,7.0,0.91,10.650,39.7 -6.3,0.91,8.430,1.3,6.1,0.91,8.480,1.4 -5.6,0.91,5.990,28.2,5.4,0.91,6.020,28.3 -5.2,0.91,9.990,74.0,5.0,0.91,10.310,74.0 -5.1,0.91,10.870,18.1,4.9,0.91,11.020,18.3 -4.2,0.91,10.920,19.5,4.0,0.91,11.050,19.8 -3.9,0.91,10.710,26.2,3.7,0.91,10.860,26.3 -3.4,0.91,9.800,32.9,3.2,0.91,9.950,32.8 -3.0,0.91,9.120,28.2,2.8,0.91,9.220,28.3 -2.9,0.91,8.860,21.9,2.7,0.91,8.960,22.2 -2.7,0.91,9.460,7.6,2.5,0.91,9.600,7.6 -2.3,0.91,8.940,8.3,2.1,0.91,9.040,8.3 -2.0,0.91,9.920,4.0,1.8,0.91,10.010,4.3 -1.8,0.91,8.710,20.8,1.6,0.91,8.810,20.8 -1.8,0.91,7.120,40.4,1.6,0.91,7.220,40.5 -1.9,0.91,7.800,12.9,1.7,0.91,7.880,13.0 -2.0,0.91,6.540,16.0,1.9,0.91,6.630,15.9 -2.3,0.91,6.410,358.0,2.1,0.91,6.470,358.2 -1.9,0.91,8.160,352.2,1.7,0.91,8.260,352.1 -2.3,0.91,7.170,351.0,2.1,0.91,7.250,351.0 -2.5,0.91,6.330,354.6,2.4,0.91,6.380,354.0 -2.4,0.91,8.060,351.7,2.2,0.91,8.160,351.5 -2.8,0.91,7.900,341.7,2.6,0.91,7.970,341.8 -3.0,0.91,7.620,342.3,2.8,0.91,7.720,342.1 -2.7,0.91,7.890,350.9,2.5,0.91,7.960,351.0 -2.5,0.91,5.850,356.0,2.3,0.91,5.880,355.6 -2.4,0.91,5.960,353.6,2.2,0.91,6.000,353.4 -2.3,0.91,6.570,348.3,2.1,0.91,6.660,348.4 -2.2,0.91,5.300,358.1,2.0,0.91,5.350,358.1 -2.1,0.91,6.320,358.1,1.9,0.91,6.430,358.0 -1.8,0.91,6.500,357.7,1.6,0.91,6.570,357.5 -1.8,0.91,5.050,352.0,1.6,0.91,5.090,351.9 -1.6,0.91,5.660,354.9,1.4,0.91,5.780,354.4 -0.8,0.91,7.800,351.0,0.7,0.91,8.110,351.6 -0.1,0.91,7.290,341.4,0.0,0.91,7.490,341.5 --0.4,0.91,8.400,349.9,-0.5,0.91,8.830,350.7 --0.7,0.91,8.120,343.3,-0.8,0.91,8.640,345.3 --0.7,0.91,7.760,355.8,-0.8,0.91,8.140,357.8 --0.7,0.91,8.190,346.1,-0.8,0.91,8.630,347.4 --0.3,0.91,6.680,353.5,-0.5,0.91,6.770,353.5 -1.2,0.91,6.040,343.9,1.0,0.91,6.120,343.6 -3.4,0.91,5.990,343.4,3.2,0.91,6.050,343.0 -5.4,0.91,5.840,339.3,5.2,0.91,5.900,338.9 -7.5,0.91,5.850,339.9,7.2,0.91,5.920,339.4 -9.4,0.91,6.120,340.1,9.2,0.91,6.190,339.7 -11.0,0.91,6.490,337.9,10.8,0.91,6.570,337.6 -12.2,0.91,6.190,346.1,12.0,0.91,6.250,345.6 -13.1,0.91,6.150,344.3,12.8,0.91,6.220,344.0 -13.6,0.91,5.690,351.3,13.4,0.91,5.740,350.9 -13.5,0.91,5.210,9.3,13.3,0.91,5.250,8.7 -12.9,0.91,5.500,28.0,12.7,0.91,5.560,26.4 -12.2,0.91,5.810,35.0,12.1,0.91,5.630,32.3 -11.3,0.91,5.520,50.1,11.2,0.91,5.480,45.9 -10.4,0.91,4.950,61.9,10.2,0.91,4.690,58.9 -9.4,0.91,4.370,64.7,9.4,0.91,4.150,62.1 -9.0,0.91,2.780,75.9,9.1,0.91,2.710,73.1 -9.0,0.91,2.020,88.5,9.2,0.91,2.110,79.4 -9.3,0.91,2.630,182.4,9.5,0.91,2.290,180.1 -10.9,0.91,0.930,236.6,11.0,0.91,0.720,246.8 -10.7,0.91,1.090,148.4,10.8,0.91,1.050,154.3 -10.7,0.91,2.740,166.1,11.0,0.91,2.320,161.2 -9.0,0.91,5.850,174.7,9.6,0.91,5.160,171.8 -8.5,0.91,6.500,189.5,9.6,0.91,5.630,188.0 -8.2,0.91,8.230,195.1,9.3,0.91,8.380,195.6 -10.0,0.91,6.540,190.9,10.4,0.91,7.000,191.7 -11.8,0.91,6.900,186.5,11.6,0.91,6.880,186.6 -13.7,0.91,6.460,189.2,13.6,0.91,6.470,189.4 -15.4,0.91,6.990,186.5,15.2,0.91,7.030,186.6 -17.1,0.91,7.120,182.6,16.9,0.91,7.170,182.7 -18.4,0.91,7.680,181.4,18.2,0.91,7.740,181.5 -19.3,0.91,8.190,180.7,19.1,0.91,8.250,180.9 -20.0,0.91,8.720,172.6,19.8,0.91,8.830,172.8 -20.1,0.91,9.230,167.3,19.9,0.91,9.360,167.6 -20.0,0.91,9.830,159.3,19.8,0.91,10.060,159.5 -19.2,0.91,11.740,153.8,19.1,0.91,12.460,153.9 -18.3,0.91,13.420,154.9,18.2,0.91,14.180,155.0 -17.0,0.91,14.960,162.6,16.9,0.91,15.690,162.6 -15.9,0.91,15.950,165.1,15.8,0.91,16.650,165.1 -15.6,0.90,15.960,176.9,15.6,0.90,16.540,177.5 -15.5,0.90,17.670,185.4,15.4,0.90,18.320,185.7 -14.8,0.90,18.720,188.1,14.8,0.90,19.310,188.3 -14.2,0.90,19.250,188.2,14.1,0.90,19.850,188.4 -13.8,0.90,19.870,189.1,13.7,0.90,20.480,189.3 -13.3,0.90,19.380,189.7,13.2,0.90,19.980,190.0 -12.9,0.90,19.730,193.2,12.8,0.90,20.410,193.5 -12.8,0.90,18.910,195.5,12.8,0.90,19.700,196.2 -12.5,0.90,19.190,198.3,12.4,0.90,19.890,198.8 -12.6,0.90,17.160,201.8,12.4,0.90,17.580,202.0 -13.3,0.90,16.280,200.2,13.2,0.90,16.440,200.4 -15.2,0.90,14.370,202.9,15.0,0.90,14.490,203.1 -17.5,0.90,13.450,206.3,17.3,0.90,13.560,206.6 -19.8,0.90,12.580,209.5,19.6,0.90,12.700,209.7 -22.1,0.90,10.840,214.8,21.9,0.90,10.950,215.0 -24.2,0.90,9.700,221.0,24.0,0.90,9.800,221.3 -25.7,0.90,8.420,228.7,25.4,0.90,8.520,229.0 -26.6,0.90,6.640,224.2,26.4,0.90,6.730,224.6 -27.2,0.90,6.060,211.3,27.0,0.90,6.140,211.8 -27.2,0.90,6.600,184.3,27.0,0.90,6.820,185.3 -26.7,0.90,9.210,189.2,26.6,0.90,9.360,192.1 -24.5,0.90,10.710,180.7,24.6,0.90,11.320,184.3 -22.4,0.90,13.440,194.1,22.5,0.90,14.570,196.6 -21.0,0.90,11.170,182.7,21.0,0.90,11.490,186.7 -19.8,0.90,11.890,181.7,19.8,0.90,12.260,185.0 -18.7,0.90,11.810,189.4,18.6,0.90,12.180,193.0 -17.9,0.90,12.750,190.0,17.9,0.90,13.400,192.6 -17.4,0.90,12.790,191.0,17.5,0.90,13.390,193.6 -17.1,0.90,13.290,196.6,17.2,0.90,13.930,198.8 -16.5,0.90,13.540,193.5,16.6,0.90,14.050,195.5 -15.9,0.90,14.050,190.9,16.0,0.90,14.560,192.5 -15.5,0.90,14.600,193.5,15.5,0.90,15.200,194.9 -14.8,0.90,14.560,195.1,14.9,0.90,15.240,196.5 -14.9,0.90,13.850,200.5,14.8,0.90,14.740,201.3 -16.5,0.90,12.230,202.2,16.4,0.90,12.340,202.7 -18.6,0.90,11.540,200.0,18.4,0.90,11.610,200.3 -20.7,0.90,12.110,199.8,20.4,0.90,12.190,200.1 -22.7,0.90,11.920,198.0,22.5,0.90,12.030,198.2 -24.7,0.90,11.270,201.5,24.5,0.90,11.390,201.7 -26.1,0.90,10.880,203.2,25.9,0.90,11.020,203.5 -27.6,0.90,10.190,203.8,27.4,0.90,10.340,204.1 -28.6,0.90,10.540,215.7,28.4,0.90,10.700,216.0 -28.9,0.90,11.130,221.2,28.7,0.90,11.320,221.3 -28.6,0.90,10.270,209.7,28.5,0.90,10.660,210.0 -28.3,0.90,13.330,205.7,28.3,0.90,13.700,205.8 -27.5,0.90,14.620,202.9,27.6,0.90,15.160,203.8 -24.9,0.90,15.970,198.1,25.0,0.90,16.980,198.7 -22.4,0.90,14.230,188.1,22.5,0.90,15.090,189.7 -20.8,0.90,14.780,190.2,20.8,0.90,15.620,191.5 -19.7,0.90,14.650,187.9,19.7,0.90,15.440,189.8 -18.9,0.90,15.850,186.1,18.9,0.90,16.580,187.5 -17.9,0.90,15.690,189.3,17.9,0.90,16.490,190.5 -17.2,0.90,15.670,189.2,17.2,0.90,16.360,190.7 -16.7,0.90,15.710,191.0,16.7,0.90,16.400,192.2 -16.2,0.90,15.280,190.9,16.2,0.90,15.860,192.1 -15.8,0.90,15.920,189.9,15.8,0.90,16.260,190.2 -16.1,0.90,15.670,191.8,16.0,0.90,15.950,192.1 -16.3,0.90,14.900,195.9,16.1,0.90,15.640,196.5 -17.1,0.90,14.940,197.7,16.9,0.90,15.210,198.0 -18.0,0.90,15.030,198.6,17.8,0.90,15.180,198.6 -19.1,0.90,15.710,193.8,18.9,0.90,15.840,194.0 -20.2,0.90,14.570,192.1,20.0,0.90,14.690,192.3 -21.7,0.90,14.150,195.0,21.5,0.90,14.280,194.9 -23.0,0.90,13.080,191.3,22.7,0.90,13.200,191.5 -24.5,0.90,11.580,189.2,24.3,0.90,11.720,189.4 -25.4,0.90,11.280,182.9,25.2,0.90,11.450,183.1 -26.2,0.90,11.690,180.0,26.0,0.90,11.880,180.2 -26.3,0.89,12.320,176.7,26.1,0.89,12.650,176.7 -22.9,0.89,13.540,153.5,22.8,0.89,14.310,153.8 -21.2,0.89,16.090,158.0,21.0,0.89,16.820,158.3 -20.2,0.90,15.290,161.5,20.1,0.90,15.990,161.7 -20.1,0.89,15.790,168.6,20.0,0.89,16.620,168.7 -18.5,0.89,17.400,166.3,18.4,0.89,18.110,166.5 -17.9,0.89,15.580,168.6,17.7,0.89,16.430,168.6 -17.6,0.89,17.020,170.0,17.4,0.89,17.820,170.1 -17.5,0.90,16.300,171.8,17.4,0.90,17.090,171.9 -17.4,0.89,17.220,175.3,17.2,0.89,18.000,175.6 -17.4,0.89,16.510,177.7,17.2,0.89,17.240,177.7 -17.3,0.89,14.750,180.3,17.1,0.89,15.290,180.4 -17.3,0.90,14.600,185.4,17.1,0.90,15.170,185.6 -17.0,0.90,15.510,190.3,16.9,0.90,16.030,190.3 -16.8,0.90,14.310,190.4,16.6,0.90,14.930,190.7 -17.7,0.90,14.670,196.4,17.5,0.90,14.920,196.6 -19.4,0.90,11.570,198.0,19.2,0.90,11.730,198.3 -21.9,0.90,10.050,213.7,21.7,0.90,10.240,213.9 -23.5,0.90,10.720,217.4,23.3,0.90,10.870,217.5 -25.2,0.90,9.400,221.1,25.0,0.90,9.520,221.2 -26.1,0.90,8.300,219.1,25.9,0.90,8.410,219.1 -26.9,0.90,7.270,204.3,26.7,0.90,7.390,204.5 -28.1,0.89,7.720,199.8,27.9,0.89,7.830,200.2 -28.7,0.89,8.870,199.3,28.5,0.89,8.990,199.4 -28.7,0.89,9.000,205.5,28.6,0.89,9.280,205.7 -28.6,0.89,9.630,196.4,28.4,0.89,9.680,196.5 -26.2,0.90,6.690,9.0,26.1,0.90,6.750,9.1 -23.6,0.90,3.070,144.9,23.7,0.90,2.770,140.6 -14.1,0.90,15.980,353.7,14.0,0.90,16.430,353.7 -11.3,0.90,11.910,13.9,11.1,0.90,12.110,13.6 -7.8,0.90,12.330,9.1,7.6,0.90,12.500,8.8 -4.6,0.90,12.060,3.5,4.4,0.90,12.220,2.8 -3.4,0.90,12.130,7.9,3.2,0.90,12.390,7.4 -2.6,0.90,12.690,3.4,2.4,0.90,12.890,3.4 -2.0,0.90,12.070,10.4,1.9,0.90,12.350,10.5 -1.7,0.90,11.290,6.9,1.5,0.90,11.430,7.0 -1.5,0.90,10.070,8.0,1.4,0.90,10.170,8.1 -1.0,0.90,10.380,29.5,0.8,0.90,10.460,29.2 -1.0,0.90,9.760,16.1,0.8,0.90,9.840,15.7 -0.5,0.91,12.870,0.3,0.3,0.91,12.970,0.4 -1.1,0.91,10.840,355.0,0.9,0.91,10.930,354.9 -2.0,0.91,9.720,354.5,1.8,0.91,9.800,354.2 -3.8,0.91,9.180,357.4,3.5,0.91,9.250,357.1 -5.9,0.91,8.380,355.3,5.7,0.91,8.470,355.2 -7.3,0.91,8.310,353.1,7.1,0.91,8.390,353.2 -8.2,0.90,7.610,358.9,8.0,0.90,7.670,358.6 -8.9,0.90,7.630,359.6,8.7,0.90,7.700,359.3 -9.0,0.90,6.940,359.8,8.8,0.90,7.010,359.7 -8.9,0.90,6.720,355.1,8.7,0.90,6.780,355.7 -8.3,0.90,7.670,353.7,8.1,0.90,7.800,354.4 -7.6,0.90,7.200,22.7,7.5,0.90,7.460,22.0 -7.4,0.90,8.300,18.6,7.2,0.90,8.620,19.0 -6.8,0.91,8.460,33.9,6.7,0.91,8.800,33.8 -6.4,0.90,9.800,30.1,6.2,0.90,9.800,29.3 -5.8,0.91,9.870,36.2,5.6,0.91,10.030,36.7 -5.2,0.91,10.460,42.0,5.0,0.91,10.720,42.3 -4.6,0.91,10.200,45.6,4.5,0.91,10.390,44.6 -4.0,0.91,9.030,55.6,3.8,0.91,9.280,53.9 -3.4,0.90,8.130,51.0,3.2,0.90,8.220,49.7 -2.9,0.90,7.600,42.8,2.7,0.90,7.760,42.3 -2.5,0.90,7.560,39.0,2.3,0.90,7.550,39.9 -1.8,0.90,5.660,44.8,1.7,0.90,5.920,43.7 -2.0,0.90,3.660,45.9,1.8,0.90,3.760,45.6 -3.4,0.90,2.810,47.5,3.2,0.90,2.810,47.6 -5.4,0.90,2.180,50.7,5.2,0.90,2.150,51.4 -7.7,0.90,0.610,113.6,7.5,0.90,0.620,119.8 -10.1,0.90,1.510,187.8,9.9,0.90,1.560,188.0 -12.0,0.90,3.430,207.8,11.8,0.90,3.460,208.3 -13.2,0.90,4.230,226.5,12.9,0.90,4.250,227.0 -14.4,0.90,5.240,234.9,14.2,0.90,5.300,235.4 -15.5,0.90,5.240,244.7,15.3,0.90,5.310,245.1 -16.1,0.90,4.100,231.5,15.9,0.90,4.170,232.3 -16.7,0.90,2.890,249.0,16.5,0.90,2.990,249.8 -15.6,0.90,4.540,146.6,15.5,0.90,4.390,146.4 -15.2,0.90,5.210,144.3,15.1,0.90,4.800,144.6 -15.5,0.90,5.660,160.3,15.4,0.90,5.580,161.0 -15.1,0.90,6.100,174.6,15.1,0.90,5.770,175.4 -14.8,0.90,7.950,175.5,14.9,0.90,7.700,177.3 -14.3,0.90,10.290,173.6,14.4,0.90,10.340,174.1 -13.1,0.90,12.810,170.7,13.3,0.90,13.010,170.2 -13.1,0.90,13.320,169.7,13.3,0.90,13.640,169.1 -12.3,0.90,14.620,166.6,12.5,0.90,15.070,166.6 -11.8,0.90,12.980,175.4,12.1,0.90,13.170,175.8 -11.0,0.90,11.810,179.5,11.4,0.90,11.690,178.8 -12.4,0.90,10.200,193.7,13.2,0.90,10.110,197.2 -12.3,0.90,10.030,189.9,12.8,0.90,10.270,191.3 -12.6,0.90,9.510,192.6,13.2,0.90,10.120,193.5 -13.7,0.90,7.660,191.4,13.6,0.90,7.840,191.6 -15.5,0.91,6.810,184.5,15.3,0.91,6.840,184.5 -17.0,0.91,5.580,171.7,16.8,0.91,5.630,171.8 -18.2,0.90,5.640,165.0,18.0,0.90,5.700,165.1 -19.2,0.90,6.860,167.5,19.0,0.90,6.940,167.5 -19.9,0.90,7.740,168.3,19.7,0.90,7.820,168.4 -20.7,0.90,7.780,164.8,20.5,0.90,7.900,165.0 -21.7,0.90,8.460,166.9,21.5,0.90,8.600,167.0 -22.1,0.90,9.010,166.1,21.9,0.90,9.170,166.3 -22.1,0.90,9.500,165.2,21.9,0.90,9.710,165.4 -21.2,0.90,10.400,144.6,21.1,0.90,10.980,145.3 -20.0,0.90,12.790,144.2,20.0,0.90,13.730,144.6 -18.8,0.90,14.300,149.1,18.9,0.90,15.240,149.5 -17.7,0.90,14.610,159.4,17.7,0.90,15.530,159.9 -16.8,0.90,15.410,171.0,16.9,0.90,16.240,171.9 -16.1,0.90,16.290,176.4,16.1,0.90,17.180,176.6 -15.4,0.90,17.260,178.5,15.5,0.90,18.220,178.6 -14.8,0.90,17.590,175.6,14.8,0.90,18.480,175.6 -14.0,0.90,17.530,178.8,14.0,0.90,18.310,179.2 -13.4,0.90,16.370,181.9,13.4,0.90,17.130,182.3 -13.4,0.90,16.430,181.1,13.4,0.90,17.170,181.3 -13.0,0.90,16.830,183.2,13.0,0.90,17.520,183.5 -12.6,0.90,15.440,187.9,12.6,0.90,16.000,188.3 -12.4,0.90,14.090,184.0,12.3,0.90,14.700,184.3 -13.7,0.90,9.030,180.2,13.5,0.90,9.200,180.5 -15.3,0.90,8.520,183.4,15.1,0.90,8.640,183.5 -16.9,0.90,9.070,180.4,16.7,0.90,9.200,180.4 -18.1,0.90,9.660,179.7,17.9,0.90,9.780,179.8 -19.6,0.90,8.790,176.9,19.3,0.90,8.910,176.9 -20.6,0.90,8.950,172.8,20.4,0.90,9.070,172.9 -21.3,0.90,9.710,172.8,21.1,0.90,9.830,172.8 -21.7,0.90,9.950,171.1,21.5,0.90,10.110,171.2 -21.9,0.90,9.160,172.3,21.7,0.90,9.330,172.4 -21.9,0.90,9.660,169.5,21.7,0.90,9.870,169.5 -21.1,0.90,10.840,160.0,21.1,0.90,11.450,160.0 -19.7,0.90,12.820,164.5,19.7,0.90,13.690,164.5 -18.0,0.90,10.150,185.8,17.9,0.90,10.910,187.1 -17.5,0.90,10.330,193.9,17.6,0.90,11.200,193.9 -17.0,0.90,10.130,193.2,17.1,0.90,11.130,193.4 -17.0,0.90,13.150,193.9,17.0,0.90,13.880,193.9 -16.7,0.90,13.410,187.2,16.6,0.90,14.060,187.1 -15.7,0.90,15.850,187.1,15.6,0.90,16.510,187.1 -14.5,0.90,15.570,190.0,14.4,0.90,16.280,190.5 -13.7,0.90,15.560,194.6,13.6,0.90,16.330,195.3 -13.1,0.90,16.400,199.2,13.1,0.90,17.130,199.8 -13.1,0.90,17.120,200.2,13.1,0.90,17.940,200.9 -12.9,0.90,15.700,201.2,12.8,0.90,16.280,202.2 -13.6,0.90,13.610,201.8,13.5,0.90,14.170,203.3 -15.9,0.90,11.940,207.7,15.7,0.90,12.040,208.3 -18.8,0.90,10.580,213.7,18.6,0.90,10.660,214.2 -22.1,0.90,10.780,232.6,21.9,0.90,10.910,233.0 -24.5,0.90,10.590,251.2,24.3,0.90,10.770,251.3 -26.2,0.90,10.320,256.4,25.9,0.90,10.500,256.4 -27.0,0.90,10.160,252.8,26.8,0.90,10.320,252.6 -27.6,0.90,9.740,252.4,27.4,0.90,9.920,252.4 -28.0,0.90,10.650,245.8,27.8,0.90,10.780,246.1 -28.2,0.90,9.570,254.3,28.0,0.90,9.790,254.4 -27.9,0.90,8.270,241.8,27.8,0.90,8.600,242.0 -27.4,0.90,10.710,238.8,27.3,0.90,11.190,239.4 -27.2,0.90,13.420,242.2,27.4,0.90,14.190,244.2 -26.5,0.90,12.500,237.4,26.7,0.90,13.220,239.4 -26.7,0.90,15.110,245.4,26.9,0.90,16.060,247.1 -26.5,0.90,15.230,246.3,26.8,0.90,15.870,247.9 -26.0,0.90,15.380,247.5,26.4,0.90,16.170,249.8 -25.7,0.90,15.710,257.7,26.1,0.90,16.390,259.2 -21.4,0.90,10.140,220.2,22.1,0.90,10.650,232.4 -21.8,0.90,12.980,216.4,22.0,0.90,12.800,218.8 -23.3,0.90,15.780,229.9,23.6,0.90,16.320,228.9 -23.1,0.90,14.930,228.5,23.4,0.90,15.460,229.3 -21.5,0.90,17.750,222.9,21.6,0.90,18.860,223.1 -20.7,0.90,15.210,226.7,21.0,0.90,16.040,227.4 -21.7,0.90,10.520,232.2,22.5,0.90,11.550,234.2 -21.7,0.90,8.350,218.0,21.5,0.90,8.360,218.8 -23.8,0.90,8.230,223.7,23.6,0.90,8.310,223.9 -25.1,0.90,6.310,225.6,24.9,0.90,6.380,225.8 -26.6,0.90,6.390,222.9,26.4,0.90,6.450,223.1 -27.8,0.90,7.660,226.4,27.6,0.90,7.760,226.6 -28.5,0.90,7.330,221.5,28.3,0.90,7.440,221.6 -29.0,0.90,8.770,215.2,28.8,0.90,8.870,215.3 -29.2,0.90,9.300,211.3,29.0,0.90,9.430,211.5 -29.7,0.90,10.050,222.7,29.5,0.90,10.220,222.9 -29.2,0.90,9.970,226.5,29.0,0.90,10.230,226.5 -28.8,0.90,9.620,225.2,28.6,0.90,9.810,227.7 -28.5,0.90,10.690,226.2,28.4,0.90,11.190,226.4 -28.6,0.90,10.470,231.1,28.5,0.90,10.760,231.9 -28.4,0.90,11.650,237.9,28.4,0.90,11.800,238.4 -27.9,0.90,11.020,227.5,27.9,0.90,11.260,228.3 -27.3,0.90,10.310,214.1,27.3,0.90,10.420,213.2 -25.0,0.90,11.450,193.7,25.3,0.90,11.700,197.1 -23.5,0.90,13.290,191.5,23.4,0.90,13.960,193.1 -22.2,0.90,14.060,198.4,22.1,0.90,14.860,199.6 -21.1,0.90,13.380,199.2,21.1,0.90,14.120,200.8 -20.3,0.90,13.000,194.7,20.4,0.90,13.450,195.8 -19.3,0.90,13.730,189.9,19.3,0.90,14.220,190.8 -18.9,0.90,12.250,195.2,18.9,0.90,12.740,195.6 -19.3,0.90,10.370,199.2,19.2,0.90,10.650,199.3 -20.4,0.90,9.900,202.1,20.3,0.90,9.990,202.2 -22.1,0.90,6.600,202.5,21.9,0.90,6.670,202.5 -23.9,0.90,5.430,190.3,23.7,0.90,5.490,190.5 -25.3,0.90,4.380,169.2,25.1,0.90,4.440,169.2 -26.3,0.90,4.850,153.4,26.0,0.90,4.890,153.3 -26.8,0.90,5.640,138.2,26.6,0.90,5.690,138.5 -27.8,0.90,7.310,142.2,27.5,0.90,7.400,142.2 -28.5,0.90,8.030,141.2,28.3,0.90,8.180,141.3 -28.9,0.90,9.730,146.7,28.7,0.90,9.900,146.7 -28.0,0.90,13.210,143.3,27.8,0.90,13.460,143.5 -27.1,0.90,12.480,138.0,26.9,0.90,13.160,138.1 -25.7,0.90,14.890,145.1,25.6,0.90,15.630,145.3 -24.2,0.90,16.340,154.8,24.0,0.90,17.000,154.8 -23.1,0.90,14.850,161.4,22.9,0.90,15.470,161.5 -21.9,0.90,14.970,167.5,21.7,0.90,15.470,167.6 -21.0,0.90,16.480,174.0,20.8,0.90,17.040,173.9 -20.5,0.90,18.570,176.7,20.4,0.90,19.260,176.7 -20.5,0.90,17.660,182.7,20.3,0.90,18.300,182.6 -20.4,0.90,18.290,181.8,20.2,0.90,18.680,181.7 -19.9,0.90,17.420,184.2,19.7,0.90,17.690,184.2 -19.8,0.90,17.820,183.2,19.7,0.90,18.350,183.0 -20.1,0.90,17.130,186.1,19.9,0.90,17.620,186.1 -20.1,0.90,15.320,184.9,19.9,0.90,15.680,184.9 -20.2,0.90,16.500,187.5,20.0,0.90,16.790,187.6 -20.3,0.90,14.990,186.7,20.1,0.90,15.190,186.8 -21.1,0.90,14.720,188.0,20.9,0.90,14.910,188.1 -22.6,0.90,15.120,194.9,22.4,0.90,15.330,194.6 -23.6,0.90,14.920,188.8,23.4,0.90,15.100,189.0 -25.3,0.90,13.230,195.1,25.0,0.90,13.420,195.3 -26.8,0.90,11.920,193.4,26.5,0.90,12.090,193.6 -27.7,0.90,10.570,187.9,27.4,0.90,10.700,188.3 -28.8,0.90,11.280,197.0,28.5,0.90,11.420,196.9 -29.4,0.90,11.130,193.9,29.2,0.90,11.370,193.9 -27.6,0.89,3.060,226.6,27.6,0.89,3.680,219.3 -29.1,0.89,14.180,191.7,29.0,0.89,14.840,191.6 -26.0,0.89,12.780,174.1,25.9,0.89,13.770,174.8 -25.4,0.89,13.260,185.2,25.4,0.89,14.160,185.8 -24.7,0.90,13.060,189.1,24.6,0.90,13.960,190.2 -24.3,0.90,13.030,206.9,24.2,0.90,13.950,206.9 -20.2,0.90,9.180,295.9,20.2,0.90,9.970,294.9 -22.2,0.90,11.080,280.7,22.2,0.90,13.320,284.6 -19.8,0.90,16.190,305.9,19.8,0.90,17.190,306.4 -13.9,0.90,13.670,5.3,13.5,0.90,14.030,5.2 -9.1,0.90,10.710,350.8,8.8,0.90,11.290,350.2 -7.6,0.90,10.290,350.6,7.4,0.90,10.730,349.9 -5.9,0.90,13.450,350.8,5.7,0.90,13.940,350.6 -4.2,0.90,11.760,349.8,4.0,0.90,11.960,349.3 -3.3,0.91,12.900,347.1,3.1,0.91,13.060,347.1 -3.4,0.91,12.880,347.5,3.2,0.91,13.050,347.3 -4.6,0.91,11.670,343.5,4.4,0.91,11.810,343.5 -5.8,0.91,11.590,346.8,5.6,0.91,11.720,346.6 -7.2,0.91,10.470,346.8,7.0,0.91,10.610,346.6 -8.4,0.91,10.750,343.0,8.2,0.91,10.900,342.9 -9.4,0.91,10.970,340.6,9.2,0.91,11.130,340.6 -10.1,0.91,10.090,344.9,9.8,0.91,10.230,344.7 -10.5,0.91,9.960,343.3,10.3,0.91,10.110,343.1 -10.5,0.91,9.300,349.4,10.3,0.91,9.440,349.1 -10.5,0.91,9.970,351.9,10.3,0.91,10.120,351.8 -9.8,0.91,9.060,12.3,9.6,0.91,9.430,11.8 -9.2,0.91,10.650,11.0,9.1,0.91,11.350,11.3 -8.6,0.91,9.120,16.4,8.5,0.91,9.930,16.5 -8.3,0.91,9.860,23.6,8.2,0.91,10.290,24.6 -7.8,0.91,10.550,29.0,7.7,0.91,10.830,29.0 -7.1,0.91,13.700,19.8,7.0,0.91,14.490,20.7 -5.9,0.91,11.550,24.4,5.8,0.91,12.270,25.2 -5.3,0.91,10.540,26.1,5.2,0.91,11.110,26.7 -4.5,0.91,8.900,21.7,4.3,0.91,9.880,23.4 -3.7,0.91,9.740,30.9,3.7,0.91,10.680,30.9 -3.3,0.91,9.170,29.6,3.3,0.91,10.000,29.7 -3.3,0.91,8.230,25.2,3.2,0.91,8.580,24.6 -3.1,0.91,7.100,23.5,3.0,0.91,7.450,24.1 -3.6,0.91,4.920,14.0,3.4,0.91,5.070,13.7 -5.0,0.91,4.980,4.7,4.8,0.91,5.030,4.5 -6.7,0.92,4.040,357.3,6.5,0.92,4.080,357.0 -8.5,0.91,3.250,342.5,8.3,0.91,3.280,341.7 -9.9,0.91,3.800,305.4,9.7,0.91,3.830,305.6 -11.4,0.91,3.500,299.4,11.2,0.91,3.560,299.0 -12.8,0.91,3.710,295.8,12.6,0.91,3.760,295.3 -13.7,0.91,3.540,294.7,13.5,0.91,3.590,294.0 -14.4,0.91,3.570,272.3,14.2,0.91,3.610,271.8 -14.8,0.91,3.370,278.0,14.6,0.91,3.400,276.6 -14.9,0.91,4.070,240.2,14.7,0.91,4.090,240.6 -14.7,0.91,5.130,205.2,14.5,0.91,5.130,205.7 -14.4,0.91,6.050,187.2,14.3,0.91,6.100,189.1 -14.1,0.91,8.470,177.3,13.9,0.91,8.460,177.6 -13.2,0.91,10.710,169.4,13.2,0.91,10.800,170.1 -12.5,0.91,12.020,170.2,12.6,0.91,12.320,171.3 -11.7,0.91,13.790,172.7,12.0,0.91,14.480,173.5 -11.2,0.91,15.080,171.9,11.4,0.91,15.870,172.0 -10.3,0.91,15.790,174.1,10.5,0.91,16.600,174.5 -9.6,0.91,16.720,177.6,9.9,0.91,17.660,178.1 -9.2,0.91,17.350,179.0,9.4,0.91,18.230,179.5 -8.8,0.91,17.610,180.2,9.0,0.91,18.480,180.8 -7.9,0.91,18.310,181.0,8.1,0.91,19.190,181.5 -7.8,0.91,17.810,183.8,7.9,0.91,18.470,184.0 -7.9,0.91,15.740,182.5,7.8,0.91,16.500,182.6 -10.0,0.91,15.460,186.4,9.8,0.91,15.720,186.4 -12.0,0.91,16.010,184.3,11.8,0.91,16.210,184.4 -13.6,0.91,15.910,181.9,13.4,0.91,16.120,182.0 -15.4,0.91,15.240,181.9,15.2,0.91,15.480,182.0 -16.9,0.91,15.190,183.1,16.7,0.91,15.410,183.1 -17.8,0.91,15.210,177.8,17.5,0.91,15.460,178.1 -18.3,0.91,15.680,177.9,18.0,0.91,15.870,178.0 -18.6,0.91,15.150,179.0,18.4,0.91,15.250,179.1 -18.8,0.90,15.010,173.3,18.6,0.90,15.210,173.3 -18.6,0.90,13.300,171.8,18.4,0.90,13.580,171.8 -17.9,0.90,12.920,166.3,17.8,0.90,13.660,166.5 -16.5,0.91,13.580,157.4,16.4,0.91,14.370,157.5 -15.2,0.90,15.560,159.1,15.1,0.90,16.390,159.3 -14.2,0.91,17.620,165.2,14.1,0.91,18.450,165.2 -13.4,0.90,19.680,170.5,13.3,0.90,20.450,170.5 -12.4,0.91,19.630,170.4,12.3,0.91,20.420,170.3 -11.5,0.91,19.670,169.9,11.4,0.91,20.520,169.8 -10.6,0.91,20.220,172.0,10.5,0.91,21.010,172.1 -9.8,0.91,20.530,175.5,9.8,0.91,21.280,175.6 -9.4,0.91,20.940,177.0,9.3,0.91,21.660,177.0 -8.9,0.91,19.760,178.9,8.8,0.91,20.450,179.0 -8.5,0.91,18.490,182.1,8.5,0.91,19.100,182.3 -7.8,0.91,17.000,179.3,7.7,0.91,17.710,179.7 -8.2,0.91,13.730,175.6,8.1,0.91,14.480,175.7 -9.3,0.91,11.390,180.3,9.2,0.91,11.780,180.3 -10.5,0.91,7.410,172.0,10.3,0.91,7.560,172.3 -11.7,0.91,7.470,171.5,11.5,0.91,7.570,171.8 -13.1,0.91,9.200,179.3,12.9,0.91,9.320,179.7 -14.2,0.91,8.850,184.9,14.0,0.91,8.960,185.0 -15.7,0.91,8.210,180.5,15.5,0.91,8.280,180.7 -17.3,0.91,7.360,178.7,17.1,0.91,7.440,179.0 -17.9,0.91,6.860,174.0,17.7,0.91,6.930,174.4 -18.7,0.91,6.480,166.4,18.5,0.91,6.540,166.8 -18.4,0.91,7.480,148.7,18.2,0.91,7.540,149.1 -17.7,0.91,8.070,141.4,17.6,0.91,8.320,142.1 -17.2,0.91,10.780,140.0,17.2,0.91,11.360,140.5 -17.0,0.91,13.530,142.1,16.9,0.91,14.270,142.2 -16.6,0.91,14.420,147.4,16.6,0.91,15.210,147.4 -16.5,0.91,16.710,156.8,16.4,0.91,17.480,156.6 -15.8,0.91,17.380,165.3,15.8,0.91,18.100,165.6 -15.1,0.91,17.700,171.7,15.1,0.91,18.420,171.9 -14.1,0.91,17.640,170.1,14.1,0.91,18.350,170.4 -13.5,0.91,18.170,175.1,13.5,0.91,18.930,175.3 -12.9,0.91,18.320,179.1,12.9,0.91,19.100,179.4 -12.2,0.91,18.240,182.9,12.2,0.91,18.940,183.2 -12.2,0.91,18.220,187.6,12.1,0.91,18.510,187.7 -13.4,0.91,18.180,185.7,13.2,0.91,18.800,185.8 -14.0,0.91,17.650,190.2,13.8,0.91,18.440,190.5 -14.7,0.91,18.270,196.0,14.5,0.91,18.660,196.1 -15.6,0.91,18.020,194.2,15.4,0.91,18.220,194.3 -17.4,0.91,16.650,199.1,17.1,0.91,16.810,199.1 -20.2,0.91,15.070,200.4,19.9,0.91,15.250,200.5 -22.1,0.90,13.990,199.2,21.9,0.90,14.150,199.3 -23.9,0.90,13.340,198.6,23.7,0.90,13.500,198.8 -25.2,0.90,12.700,203.7,25.0,0.90,12.860,203.8 -26.2,0.90,11.720,203.3,25.9,0.90,11.880,203.3 -26.7,0.90,11.030,201.1,26.5,0.90,11.210,201.3 -26.9,0.90,10.560,199.5,26.8,0.90,10.770,199.6 -25.9,0.90,12.050,184.5,25.9,0.90,12.580,185.2 -24.5,0.90,15.370,183.5,24.5,0.90,16.080,184.2 -22.5,0.90,15.650,184.1,22.4,0.90,16.480,184.7 -21.4,0.90,16.530,188.7,21.3,0.90,17.290,189.3 -20.1,0.90,16.690,184.6,20.0,0.90,17.480,185.7 -18.9,0.90,16.570,185.2,18.9,0.90,17.280,186.4 -18.4,0.90,18.170,194.7,18.4,0.90,19.110,195.5 -18.2,0.90,16.590,193.9,18.3,0.90,17.580,195.2 -18.1,0.90,16.720,196.2,18.1,0.90,17.620,197.6 -17.3,0.90,16.510,194.9,17.3,0.90,17.150,196.0 -17.1,0.90,6.420,359.2,16.9,0.90,6.590,358.7 -11.7,0.90,7.590,11.0,11.5,0.90,7.670,10.4 -9.4,0.91,8.690,15.5,9.3,0.91,8.740,14.9 -7.9,0.91,10.640,19.0,7.7,0.91,10.700,18.9 -6.3,0.91,12.030,14.8,6.1,0.91,12.100,14.9 -5.2,0.91,11.970,21.3,5.0,0.91,12.070,21.2 -4.6,0.91,11.740,15.2,4.4,0.91,11.820,15.3 -3.9,0.91,11.750,18.8,3.7,0.91,11.850,18.7 -3.8,0.91,10.860,12.8,3.6,0.91,10.940,12.9 -3.5,0.91,10.450,16.8,3.3,0.91,10.530,16.7 -3.5,0.91,10.010,13.8,3.3,0.91,10.090,13.9 -3.1,0.91,9.740,17.3,2.9,0.91,9.830,17.2 -2.8,0.91,9.620,16.6,2.6,0.91,9.700,16.6 -2.6,0.91,9.710,19.7,2.4,0.91,9.810,19.6 -2.2,0.91,10.030,20.1,2.0,0.91,10.130,20.2 -1.8,0.91,10.180,22.6,1.6,0.91,10.290,22.4 -1.6,0.91,10.680,21.3,1.4,0.91,10.800,21.3 -1.4,0.91,11.350,19.0,1.2,0.91,11.490,18.9 -1.2,0.91,12.190,16.8,1.0,0.91,12.350,16.7 -1.4,0.91,12.250,14.7,1.3,0.91,12.430,14.5 -1.3,0.91,12.670,17.4,1.1,0.91,12.860,17.4 -0.4,0.91,12.850,23.5,0.3,0.91,13.450,23.8 --0.0,0.91,12.440,24.0,-0.2,0.91,13.080,24.7 --0.4,0.91,11.790,24.8,-0.6,0.91,12.410,25.4 --0.6,0.91,11.450,26.4,-0.8,0.91,12.120,27.3 --0.8,0.91,10.710,30.9,-0.8,0.91,11.310,31.3 --0.7,0.91,9.950,26.6,-0.8,0.91,10.510,26.6 --0.1,0.92,9.530,22.4,-0.2,0.92,9.620,22.4 -1.3,0.92,8.340,19.4,1.1,0.92,8.410,19.4 -2.9,0.92,7.260,23.4,2.7,0.92,7.320,23.4 -4.8,0.91,7.040,25.9,4.5,0.91,7.080,25.8 -6.5,0.91,5.620,36.2,6.3,0.91,5.650,36.1 -8.3,0.91,4.880,35.6,8.1,0.91,4.910,35.6 -9.8,0.91,4.500,46.3,9.5,0.91,4.510,46.1 -11.0,0.91,4.050,48.7,10.8,0.91,4.050,49.0 -11.9,0.91,3.690,53.3,11.7,0.91,3.710,53.9 -12.0,0.91,3.210,80.4,11.8,0.91,3.210,80.4 -12.0,0.91,3.450,77.5,11.8,0.91,3.470,78.0 -11.9,0.91,4.820,85.1,11.8,0.91,4.900,85.6 -11.2,0.91,5.650,109.7,11.0,0.91,5.710,109.8 -10.9,0.91,5.070,108.7,10.7,0.91,5.210,109.0 -11.0,0.91,5.200,110.2,10.8,0.91,5.280,110.2 -10.8,0.91,4.800,106.3,10.7,0.91,4.890,106.7 -10.5,0.91,4.820,100.8,10.4,0.91,4.870,101.4 -10.3,0.91,5.150,111.7,10.1,0.91,5.270,112.6 -9.6,0.92,6.050,117.7,9.4,0.92,6.300,117.9 -9.1,0.92,6.950,115.7,8.9,0.92,7.020,115.2 -8.6,0.92,7.240,124.4,8.4,0.92,7.510,124.9 -8.2,0.92,6.070,126.5,8.1,0.92,6.470,126.5 -8.2,0.92,5.710,131.5,8.0,0.92,5.930,131.7 -8.0,0.92,6.050,144.6,7.9,0.92,6.340,144.1 -7.9,0.92,5.420,142.4,7.8,0.92,5.580,142.3 -8.5,0.92,5.390,142.0,8.3,0.92,5.490,142.1 -8.8,0.92,6.010,147.9,8.6,0.92,6.070,148.0 -10.6,0.92,5.310,147.4,10.4,0.92,5.380,147.8 -12.5,0.91,5.860,150.6,12.3,0.91,5.930,150.4 -12.7,0.91,6.320,154.1,12.5,0.91,6.390,154.2 -14.7,0.91,7.370,155.2,14.5,0.91,7.420,155.1 -15.1,0.91,7.360,167.3,14.9,0.91,7.480,167.0 -15.5,0.91,8.420,164.1,15.3,0.91,8.520,163.9 -14.6,0.91,8.700,158.7,14.4,0.91,8.770,158.6 -14.4,0.91,9.630,158.6,14.2,0.91,9.750,158.4 -13.9,0.91,8.990,158.5,13.7,0.91,9.360,158.4 -14.0,0.91,10.020,161.7,13.9,0.91,10.710,161.8 -13.9,0.91,9.460,165.2,13.7,0.91,9.950,165.2 -13.7,0.91,9.190,163.4,13.6,0.91,9.630,163.7 -13.7,0.91,11.260,166.7,13.5,0.91,11.800,166.9 -13.8,0.91,11.560,179.6,13.6,0.91,12.140,179.5 -13.4,0.91,12.830,174.2,13.2,0.91,13.420,174.4 -13.2,0.91,14.610,181.9,13.0,0.91,15.360,182.0 -12.8,0.91,15.190,190.8,12.6,0.91,16.550,189.9 -13.0,0.91,18.370,176.9,12.9,0.91,19.000,177.0 -13.0,0.91,15.990,190.9,12.9,0.91,16.570,190.9 -12.5,0.91,11.070,188.0,12.3,0.91,11.560,188.0 -12.9,0.91,14.260,196.0,12.8,0.91,14.870,196.8 -13.7,0.91,13.390,195.1,13.6,0.91,14.240,195.4 -14.3,0.91,13.050,199.5,14.1,0.91,13.340,199.5 -15.0,0.91,12.740,202.5,14.8,0.91,13.010,202.5 -15.8,0.91,14.210,196.7,15.6,0.91,14.430,196.8 -17.9,0.91,13.590,199.3,17.7,0.91,13.740,199.4 -20.3,0.91,11.300,201.0,20.1,0.91,11.420,201.2 -22.1,0.91,10.010,199.4,21.9,0.91,10.110,199.7 -24.1,0.91,8.580,205.5,23.8,0.91,8.670,205.7 -24.9,0.91,8.610,202.6,24.7,0.91,8.720,203.0 -25.5,0.91,7.290,189.8,25.3,0.91,7.360,190.3 -25.3,0.91,9.580,176.6,25.1,0.91,9.690,176.8 -24.7,0.91,11.840,169.7,24.5,0.91,12.290,169.9 -24.6,0.91,12.570,181.3,24.5,0.91,12.750,181.4 -23.6,0.91,13.370,186.2,23.6,0.91,13.870,187.0 -22.2,0.91,12.720,191.1,22.3,0.91,13.350,192.5 -22.0,0.91,12.550,205.6,21.9,0.91,13.220,207.2 -20.9,0.91,10.680,210.4,20.8,0.91,11.450,212.4 -18.4,0.91,11.340,357.1,18.4,0.91,11.520,358.8 -16.6,0.91,7.190,348.4,16.5,0.91,8.270,352.7 -15.0,0.91,8.260,4.0,14.9,0.91,8.690,6.2 -13.5,0.91,8.660,13.5,13.3,0.91,9.610,14.6 -12.6,0.91,9.470,17.4,12.5,0.91,10.430,17.0 -11.7,0.91,9.390,24.1,11.6,0.91,9.840,22.6 -11.3,0.91,7.760,14.4,11.2,0.91,7.870,14.9 -11.0,0.91,7.580,17.3,10.8,0.91,7.640,17.4 -11.3,0.91,7.210,24.8,11.1,0.91,7.230,24.1 -13.0,0.91,7.420,27.1,12.8,0.91,7.460,26.8 -14.9,0.91,5.170,32.3,14.7,0.91,5.200,31.7 -17.5,0.91,5.890,30.3,17.3,0.91,5.950,30.1 -19.2,0.91,6.180,30.9,19.0,0.91,6.230,30.8 -20.6,0.91,5.850,38.7,20.4,0.91,5.900,38.6 -21.6,0.91,5.630,46.0,21.3,0.91,5.670,45.9 -22.1,0.91,5.870,51.1,21.9,0.91,5.920,51.0 -22.2,0.91,6.480,52.1,22.0,0.91,6.540,52.2 -22.0,0.91,7.140,48.9,21.8,0.91,7.210,48.8 -21.5,0.91,7.920,53.6,21.3,0.91,7.980,53.6 -20.8,0.91,8.820,66.1,20.6,0.91,8.810,66.6 -19.1,0.91,9.850,115.0,19.1,0.91,10.250,114.2 -18.7,0.91,9.930,116.4,18.6,0.91,9.980,116.4 -18.7,0.91,7.800,119.0,18.7,0.91,7.450,121.1 -18.1,0.91,8.870,121.6,18.0,0.91,8.600,123.5 -17.7,0.91,9.320,133.6,17.7,0.91,9.070,135.9 -17.2,0.91,9.660,151.7,17.2,0.91,9.600,153.3 -16.3,0.91,10.860,158.7,16.4,0.91,10.830,160.1 -16.6,0.91,12.100,168.4,16.8,0.91,12.350,169.1 -16.1,0.91,12.430,178.1,16.3,0.91,12.730,178.4 -16.8,0.91,11.860,196.1,17.1,0.91,12.240,196.8 -16.6,0.91,11.480,199.5,17.0,0.91,12.030,199.2 -16.3,0.91,10.420,201.5,16.3,0.91,11.170,201.7 -18.3,0.91,8.920,206.7,18.1,0.91,9.010,206.7 -20.5,0.91,7.640,210.9,20.3,0.91,7.700,211.0 -22.6,0.91,6.170,208.7,22.3,0.91,6.230,208.8 -24.0,0.91,4.560,193.7,23.8,0.91,4.590,194.0 -25.0,0.91,4.030,181.9,24.8,0.91,4.050,182.2 -25.7,0.91,4.100,173.3,25.5,0.91,4.110,173.5 -26.2,0.91,4.260,171.6,26.0,0.91,4.300,172.2 -26.3,0.90,4.460,161.6,26.1,0.90,4.500,161.9 -26.3,0.90,6.190,155.6,26.1,0.90,6.220,155.9 -26.1,0.90,5.380,161.7,25.9,0.90,5.440,161.8 -25.6,0.90,7.720,151.1,25.4,0.90,7.770,151.2 -24.8,0.90,11.240,157.7,24.8,0.90,11.610,158.3 -24.0,0.90,13.070,160.1,24.1,0.90,13.710,160.4 -21.7,0.90,14.440,160.4,21.7,0.90,15.270,160.5 -20.9,0.90,14.630,181.9,21.0,0.90,15.440,182.9 -20.6,0.90,14.580,191.6,20.7,0.90,15.410,192.0 -20.1,0.90,13.870,190.8,20.2,0.90,14.500,191.8 -19.4,0.90,14.660,199.6,19.5,0.90,15.340,200.6 -18.6,0.90,14.030,204.7,18.7,0.90,14.710,206.4 -18.1,0.90,14.040,206.3,18.2,0.90,14.760,207.2 -17.5,0.90,13.750,207.5,17.6,0.90,14.440,208.3 -17.2,0.90,12.890,213.8,17.3,0.90,13.570,213.9 -16.4,0.90,11.770,207.9,16.4,0.90,12.240,208.2 -17.4,0.90,9.610,212.6,17.2,0.90,9.780,212.8 -18.8,0.90,8.900,209.8,18.6,0.90,8.980,209.9 -21.0,0.90,7.650,203.8,20.8,0.90,7.730,203.8 -22.2,0.90,7.180,193.3,22.0,0.90,7.250,193.4 -23.5,0.90,6.570,187.5,23.3,0.90,6.630,187.6 -24.7,0.90,6.680,182.2,24.4,0.90,6.750,181.9 -25.5,0.90,5.740,170.9,25.3,0.90,5.790,171.8 -26.1,0.90,5.630,188.6,25.9,0.90,5.690,187.3 -26.4,0.90,5.470,182.8,26.2,0.90,5.520,181.2 -26.4,0.90,5.230,181.4,26.2,0.90,5.290,180.6 -26.3,0.90,5.940,161.5,26.1,0.90,6.030,161.7 -25.7,0.90,8.270,151.6,25.5,0.90,8.670,152.3 -21.9,0.90,13.540,158.9,21.8,0.90,14.250,159.2 -20.0,0.90,14.650,166.2,19.8,0.90,15.350,166.3 -18.8,0.90,15.200,172.1,18.8,0.90,15.950,172.2 -18.4,0.90,15.360,169.5,18.4,0.90,15.970,170.0 -18.0,0.90,15.470,176.7,18.1,0.90,16.120,177.5 -16.8,0.90,15.330,177.3,16.9,0.90,15.950,178.1 -16.3,0.90,16.120,186.2,16.4,0.90,16.840,186.9 -15.7,0.90,16.410,186.1,15.7,0.90,17.070,186.8 -15.5,0.90,15.480,191.2,15.6,0.90,16.120,192.3 -15.4,0.90,15.780,198.1,15.5,0.90,16.580,199.2 -14.3,0.90,15.600,190.2,14.3,0.90,16.200,191.2 -14.9,0.90,14.650,194.8,14.8,0.90,15.340,195.8 -15.8,0.90,13.160,196.5,15.6,0.90,13.350,196.8 -17.1,0.90,12.360,196.1,17.0,0.90,12.450,196.3 -19.2,0.90,12.360,187.5,19.1,0.90,12.450,187.6 -21.1,0.90,10.430,185.6,20.9,0.90,10.540,185.7 -22.7,0.90,9.830,188.7,22.5,0.90,9.930,188.8 -24.2,0.90,9.960,185.3,24.0,0.90,10.060,185.4 -25.8,0.90,11.110,172.5,25.6,0.90,11.240,172.8 -27.2,0.90,9.540,176.7,27.0,0.90,9.680,176.7 -27.9,0.90,10.620,176.8,27.7,0.90,10.760,177.0 -28.2,0.90,11.100,175.4,28.0,0.90,11.310,175.7 -28.0,0.90,11.960,168.3,27.8,0.90,12.160,168.5 -27.3,0.90,10.530,156.9,27.2,0.90,11.120,157.3 -25.6,0.90,13.920,153.9,25.6,0.90,14.760,154.2 -23.9,0.90,15.250,156.2,23.8,0.90,16.040,156.3 -19.1,0.90,9.430,289.4,18.9,0.90,9.860,290.7 -20.5,0.90,10.040,234.1,20.8,0.90,9.670,235.4 -27.2,0.90,12.200,196.1,27.2,0.90,11.990,198.0 -22.2,0.90,10.240,154.1,22.5,0.90,10.060,159.5 -20.7,0.90,14.840,172.6,20.9,0.90,15.690,170.8 -18.7,0.90,16.690,183.1,18.7,0.90,17.460,182.8 -19.0,0.90,16.270,178.9,19.1,0.90,16.880,179.7 -18.8,0.90,16.280,181.1,18.9,0.90,16.970,182.4 -18.7,0.90,15.690,185.8,18.8,0.90,16.280,186.9 -18.5,0.90,14.780,194.9,18.5,0.90,15.260,195.7 -18.8,0.90,16.130,199.4,18.6,0.90,16.470,199.6 -19.6,0.90,14.790,208.0,19.4,0.90,14.920,208.0 -21.4,0.90,12.320,201.6,21.2,0.90,12.450,201.7 -23.2,0.90,8.190,196.3,23.0,0.90,8.270,196.6 -25.2,0.90,5.140,196.4,24.9,0.90,5.180,197.1 -26.4,0.90,4.910,175.5,26.1,0.90,4.940,176.2 -27.5,0.90,3.420,164.2,27.3,0.90,3.420,165.1 -28.2,0.90,2.960,132.8,28.0,0.90,2.940,133.2 -28.8,0.90,2.200,113.3,28.6,0.90,2.190,113.0 -29.2,0.90,0.760,121.6,29.0,0.90,0.750,118.9 -28.9,0.90,4.000,62.8,28.7,0.90,4.040,63.0 -21.0,0.90,4.920,91.5,20.8,0.90,5.250,94.2 -18.3,0.90,8.600,39.4,18.1,0.90,8.650,39.9 -17.9,0.91,9.370,35.1,17.8,0.91,9.610,36.0 -16.9,0.91,9.720,52.2,16.7,0.91,10.010,52.6 -13.7,0.91,10.850,31.1,13.5,0.91,10.980,31.1 -10.9,0.91,11.290,35.1,10.7,0.91,11.380,34.7 -9.5,0.91,11.040,19.1,9.3,0.91,11.160,18.9 -8.8,0.91,11.810,4.3,8.6,0.91,11.970,4.3 -7.4,0.91,12.430,5.7,7.2,0.91,12.600,5.7 -6.3,0.91,12.480,9.8,6.1,0.91,12.630,9.6 -5.3,0.91,13.340,1.6,5.1,0.91,13.540,1.5 -4.5,0.92,15.840,4.9,4.3,0.92,16.090,4.8 -4.0,0.92,14.550,5.1,3.8,0.92,14.770,5.0 -3.9,0.92,15.430,1.2,3.7,0.92,15.710,1.2 -3.5,0.92,14.410,2.9,3.3,0.92,14.610,2.7 -2.8,0.92,15.650,359.2,2.6,0.92,15.910,359.2 -2.7,0.92,15.590,1.7,2.5,0.92,15.830,1.7 -2.4,0.92,16.340,359.6,2.2,0.92,16.570,359.6 -2.4,0.92,15.130,0.3,2.2,0.92,15.350,0.3 -2.7,0.92,14.750,0.3,2.5,0.92,14.970,0.3 -3.2,0.92,14.220,0.9,3.0,0.92,14.430,0.9 -3.7,0.92,12.890,4.6,3.5,0.92,13.070,4.5 -4.2,0.92,10.290,9.2,4.0,0.92,10.440,9.0 -6.8,0.92,10.600,12.1,6.6,0.92,10.790,12.1 -8.1,0.92,12.470,17.3,8.0,0.92,12.970,17.0 -7.3,0.92,13.820,17.5,7.2,0.92,14.670,17.6 -6.4,0.92,12.660,22.6,6.4,0.92,13.370,23.8 -5.9,0.92,11.700,19.5,5.9,0.92,12.330,20.2 -5.8,0.92,11.610,9.8,5.7,0.92,12.520,11.5 -5.4,0.92,13.730,10.3,5.4,0.92,14.870,12.3 -5.6,0.92,13.740,7.0,5.6,0.92,14.680,9.5 -5.4,0.92,12.140,357.6,5.5,0.92,12.870,1.3 -5.2,0.92,11.870,351.4,5.3,0.92,12.490,355.8 -5.0,0.92,12.300,348.3,5.2,0.92,12.860,353.5 -5.1,0.92,11.720,347.1,5.4,0.92,12.220,354.1 -4.8,0.92,11.330,341.7,5.2,0.92,11.690,349.4 -4.4,0.92,9.790,333.0,4.7,0.92,10.270,337.3 -5.1,0.92,6.930,325.3,5.0,0.92,7.360,327.8 -7.0,0.92,7.070,330.2,6.8,0.92,7.180,330.7 -8.4,0.92,6.510,334.9,8.2,0.92,6.610,334.9 -9.6,0.92,6.690,327.4,9.4,0.92,6.780,327.4 -10.7,0.92,6.460,320.6,10.5,0.92,6.550,320.7 -11.9,0.91,6.040,313.4,11.6,0.91,6.120,313.6 -13.0,0.91,6.140,317.3,12.7,0.91,6.220,317.2 -13.9,0.91,5.310,315.0,13.7,0.91,5.390,314.8 -14.8,0.91,5.090,301.3,14.6,0.91,5.170,301.3 -15.3,0.91,5.480,302.2,15.1,0.91,5.560,302.2 -15.8,0.91,3.590,301.7,15.6,0.91,3.690,301.2 -15.8,0.91,3.460,274.7,15.6,0.91,3.590,275.3 -15.8,0.91,6.260,250.2,15.7,0.91,6.490,253.2 -15.9,0.91,7.790,240.9,15.8,0.91,7.850,242.0 -16.3,0.91,8.940,245.6,16.2,0.91,9.030,247.3 -16.1,0.91,10.540,236.3,16.2,0.91,10.690,238.6 -15.9,0.91,10.910,238.0,16.2,0.91,11.210,241.1 -15.4,0.91,13.280,247.1,15.9,0.91,13.750,248.4 -15.6,0.91,13.330,254.6,16.1,0.91,13.770,256.8 -15.7,0.91,13.160,266.1,16.1,0.91,13.670,267.8 -11.9,0.91,10.910,293.5,12.2,0.91,11.370,290.7 -14.3,0.91,12.010,290.3,14.5,0.91,12.220,293.1 -12.3,0.91,10.310,298.2,12.3,0.91,10.180,300.5 -11.3,0.91,7.420,314.4,12.3,0.91,7.460,319.0 -11.1,0.91,3.490,322.8,11.2,0.91,3.810,333.0 -12.9,0.91,3.100,346.8,12.7,0.91,3.100,347.8 -14.7,0.91,3.360,22.6,14.6,0.91,3.360,22.7 -16.1,0.91,4.100,26.2,15.8,0.91,4.100,25.9 -17.1,0.91,4.000,25.0,16.9,0.91,4.000,24.6 -18.1,0.91,3.910,18.8,17.9,0.91,3.920,18.3 -19.1,0.91,3.600,9.5,18.9,0.91,3.620,8.9 -19.7,0.91,4.150,358.7,19.5,0.91,4.160,358.4 -20.1,0.91,3.780,0.8,19.9,0.91,3.780,0.6 -20.6,0.91,4.870,350.1,20.4,0.91,4.890,350.2 -20.3,0.91,4.220,12.6,20.1,0.91,4.250,12.6 -19.8,0.91,6.490,24.2,19.6,0.91,6.570,23.5 -19.2,0.91,8.400,31.8,19.1,0.91,8.490,31.8 -17.5,0.91,8.000,50.7,17.6,0.91,8.900,51.3 -15.9,0.91,9.310,56.7,15.9,0.91,10.370,56.9 -14.1,0.91,9.790,58.9,14.1,0.91,11.130,58.0 -13.0,0.91,10.710,57.1,12.9,0.91,11.570,57.2 -12.1,0.91,10.020,58.4,12.1,0.91,10.820,58.9 -10.3,0.91,10.580,56.8,10.0,0.91,11.600,59.8 -8.6,0.91,11.520,57.6,8.6,0.91,12.400,57.2 -8.0,0.91,10.010,51.0,8.0,0.91,10.910,52.0 -7.1,0.91,9.720,48.5,7.1,0.91,10.100,49.1 -6.7,0.91,9.440,46.3,6.6,0.91,9.750,47.0 -5.9,0.91,7.240,38.8,5.8,0.91,7.760,38.6 -6.8,0.91,6.460,23.2,6.6,0.91,6.540,23.0 -8.2,0.91,6.670,17.1,8.0,0.91,6.720,16.9 -9.8,0.91,5.800,10.9,9.6,0.91,5.850,10.6 -11.6,0.91,6.120,4.4,11.3,0.91,6.180,4.2 -13.0,0.91,5.600,4.7,12.8,0.91,5.650,4.5 -14.7,0.91,5.390,10.4,14.5,0.91,5.410,10.2 -16.0,0.91,4.990,7.9,15.8,0.91,4.990,7.8 -17.4,0.91,4.590,359.4,17.2,0.91,4.630,359.9 -18.2,0.91,4.420,10.6,18.0,0.91,4.480,11.3 -18.4,0.91,4.720,20.4,18.2,0.91,4.730,19.9 -18.4,0.91,4.470,29.0,18.2,0.91,4.510,28.6 -17.8,0.91,5.100,56.4,17.6,0.91,5.120,55.8 -16.8,0.91,6.050,79.2,16.6,0.91,5.940,78.7 -16.1,0.91,6.320,86.7,15.9,0.91,6.230,85.7 -15.4,0.91,6.300,89.3,15.4,0.91,6.040,87.0 -14.7,0.91,5.950,96.7,14.8,0.91,6.110,92.9 -15.0,0.91,5.740,103.9,15.0,0.91,5.380,98.5 -15.0,0.91,5.000,111.9,15.0,0.91,4.810,109.0 -14.3,0.91,7.180,144.3,14.6,0.91,6.420,144.4 -13.9,0.91,8.720,148.4,14.3,0.91,8.420,149.7 -13.1,0.91,7.620,137.2,13.4,0.91,7.780,138.6 -13.6,0.91,7.680,141.1,13.7,0.91,7.520,141.6 -13.8,0.91,8.660,160.9,13.9,0.91,8.590,159.9 -12.9,0.91,8.850,168.4,13.6,0.91,9.010,166.0 -13.6,0.91,7.490,172.6,13.7,0.91,8.120,171.6 -16.2,0.91,5.830,169.7,16.0,0.91,5.840,170.0 -17.9,0.91,5.050,168.4,17.7,0.91,5.070,168.5 -18.8,0.91,6.480,191.8,18.6,0.91,6.520,191.9 -19.2,0.91,6.600,192.7,19.0,0.91,6.640,192.7 -15.5,0.91,3.670,221.6,15.4,0.91,3.760,220.6 -15.5,0.91,1.730,220.1,15.3,0.91,1.700,217.8 -15.8,0.91,1.310,66.5,15.6,0.91,1.310,69.0 -16.3,0.91,4.830,59.9,16.1,0.91,4.850,60.3 -17.9,0.91,5.050,65.6,17.7,0.91,5.060,66.1 -18.4,0.91,5.840,81.2,18.3,0.91,5.890,81.3 -18.3,0.91,6.280,90.9,18.1,0.91,6.360,91.7 -18.0,0.91,7.260,109.2,17.9,0.91,7.340,109.8 -17.8,0.91,8.770,129.8,17.9,0.91,8.960,130.4 -17.4,0.91,9.520,146.6,17.7,0.91,9.690,150.0 -17.5,0.91,8.060,166.7,17.5,0.91,7.700,172.6 -17.2,0.91,8.900,166.2,17.3,0.91,8.880,167.5 -17.0,0.91,11.000,164.0,17.1,0.91,11.170,164.9 -16.7,0.91,11.820,164.2,16.9,0.91,12.290,164.8 -16.4,0.91,12.330,168.6,16.7,0.91,12.800,169.8 -16.0,0.91,12.030,176.0,16.2,0.91,12.430,178.0 -15.7,0.91,11.800,181.8,15.9,0.91,12.370,183.1 -15.1,0.91,9.600,185.0,15.3,0.91,10.050,186.3 -14.6,0.91,8.630,182.4,14.9,0.91,9.220,183.1 -14.8,0.91,7.790,181.3,14.7,0.91,8.020,181.4 -16.8,0.91,8.390,180.6,16.6,0.91,8.490,180.5 -18.6,0.91,9.080,176.7,18.4,0.91,9.200,176.7 -20.3,0.91,8.750,173.5,20.0,0.91,8.860,173.6 -21.7,0.91,8.430,173.3,21.4,0.91,8.540,173.4 -22.9,0.91,8.160,168.3,22.7,0.91,8.270,168.4 -23.8,0.91,8.630,166.9,23.6,0.91,8.740,167.1 -24.7,0.91,8.460,171.2,24.5,0.91,8.590,171.3 -25.2,0.91,8.840,165.0,25.0,0.91,8.960,165.3 -25.5,0.90,9.420,156.0,25.3,0.90,9.560,156.3 -25.3,0.90,11.610,156.8,25.1,0.90,11.820,157.0 -24.5,0.90,10.690,151.5,24.3,0.90,11.210,151.6 -23.4,0.90,9.870,141.2,23.3,0.90,10.550,141.7 -14.7,0.91,12.970,205.1,14.8,0.91,13.930,205.1 -15.1,0.91,12.250,158.8,15.2,0.91,12.590,159.8 -17.3,0.91,1.490,130.9,17.5,0.91,0.950,133.9 -18.6,0.91,6.390,141.6,18.9,0.91,6.350,145.3 -19.1,0.91,11.380,156.5,19.2,0.91,12.050,156.4 -17.4,0.91,12.780,156.1,17.5,0.91,13.580,156.2 -16.7,0.91,9.450,152.0,16.7,0.91,10.220,154.0 -16.7,0.91,11.010,163.7,16.8,0.91,11.770,165.7 -16.4,0.91,13.050,170.1,16.4,0.91,13.670,170.9 -15.8,0.91,13.910,174.3,15.7,0.91,14.520,175.0 -15.0,0.91,14.140,182.9,14.9,0.91,14.530,183.3 -15.4,0.91,11.420,188.7,15.3,0.91,11.620,188.9 -16.5,0.91,11.930,197.3,16.3,0.91,12.140,197.5 -17.9,0.91,13.090,196.5,17.7,0.91,13.270,196.7 -18.8,0.91,12.460,190.3,18.6,0.91,12.630,190.6 -20.0,0.91,12.620,193.2,19.8,0.91,12.800,193.3 -20.8,0.91,11.430,195.3,20.5,0.91,11.570,195.4 -21.2,0.91,10.720,193.2,21.0,0.91,10.850,193.2 -22.5,0.90,9.400,194.8,22.3,0.90,9.510,194.7 -23.0,0.90,8.960,183.3,22.7,0.90,9.080,183.2 -22.8,0.90,10.190,171.1,22.6,0.90,10.330,171.7 -22.7,0.90,10.760,169.5,22.5,0.90,10.930,169.6 -21.8,0.90,12.290,170.8,21.6,0.90,12.700,170.7 -20.3,0.90,13.760,169.3,20.1,0.90,14.340,169.4 -19.8,0.90,14.770,177.1,19.7,0.90,15.380,177.3 -19.5,0.90,14.550,178.5,19.4,0.90,15.170,179.0 -19.4,0.90,14.920,181.6,19.3,0.90,15.560,182.5 -19.1,0.90,13.860,186.1,19.1,0.90,14.390,187.1 -18.8,0.90,12.370,187.9,18.8,0.90,12.870,189.6 -18.6,0.90,11.590,193.7,18.6,0.90,12.010,195.3 -18.1,0.90,11.750,195.8,18.1,0.90,12.270,196.8 -17.6,0.90,12.090,197.1,17.5,0.90,12.540,198.3 -17.3,0.90,12.860,195.2,17.2,0.90,13.230,196.1 -17.6,0.90,11.060,206.2,17.5,0.90,11.570,207.7 -18.2,0.90,10.900,207.0,18.2,0.90,11.440,208.4 -19.1,0.90,11.560,203.1,19.1,0.90,12.350,204.2 -20.6,0.90,10.280,213.7,20.4,0.90,10.370,214.0 -19.4,0.91,11.580,190.0,19.2,0.91,11.680,190.2 -20.5,0.90,10.210,181.2,20.3,0.90,10.270,181.3 -23.5,0.90,10.160,195.9,23.3,0.90,10.240,196.3 -23.8,0.90,11.800,177.4,23.6,0.90,11.930,177.6 -19.9,0.91,13.390,244.8,19.7,0.91,13.250,245.1 -16.9,0.90,10.540,162.5,16.9,0.90,10.790,164.4 -18.4,0.90,8.160,25.3,18.1,0.90,8.130,25.5 -19.0,0.90,5.840,43.6,18.8,0.90,5.810,43.7 -20.9,0.90,5.850,123.4,20.8,0.90,5.850,123.2 -19.9,0.90,7.150,154.0,19.7,0.90,7.410,154.7 -19.4,0.90,7.030,163.0,19.5,0.90,7.200,168.7 -19.5,0.90,9.200,174.0,19.7,0.90,9.290,175.8 -15.8,0.91,9.140,55.6,15.7,0.91,9.790,54.7 -16.7,0.90,8.160,74.0,16.9,0.90,8.400,71.3 -16.3,0.91,5.560,76.4,16.4,0.91,5.620,73.9 -16.5,0.91,4.670,61.4,16.8,0.91,4.960,62.2 -15.9,0.91,3.870,69.4,16.5,0.91,4.170,64.8 -13.5,0.91,7.310,29.2,13.6,0.91,7.400,32.5 -13.6,0.91,6.360,38.1,13.7,0.91,6.330,40.6 -13.6,0.91,6.880,29.1,13.8,0.91,7.060,31.7 -14.6,0.91,5.950,45.1,14.8,0.91,6.410,45.0 -13.2,0.91,5.990,25.4,13.4,0.91,6.500,26.0 -14.4,0.91,7.180,65.2,14.7,0.91,7.780,62.8 -14.3,0.91,8.080,30.1,14.1,0.91,8.090,30.1 -16.5,0.91,10.550,20.1,16.3,0.91,10.680,20.1 -17.7,0.91,9.960,18.6,17.5,0.91,10.070,18.6 -17.5,0.91,9.520,357.1,17.3,0.91,9.600,357.3 -16.2,0.91,8.940,351.9,16.0,0.91,9.020,352.1 -15.8,0.91,9.720,340.0,15.6,0.91,9.830,340.3 -16.0,0.91,6.730,31.0,15.8,0.91,6.770,30.9 -17.8,0.91,5.180,26.7,17.6,0.91,5.200,26.9 -18.2,0.91,4.270,20.6,18.0,0.91,4.270,20.9 -18.8,0.91,3.670,48.6,18.6,0.91,3.720,48.6 -19.0,0.91,3.630,51.3,18.8,0.91,3.690,50.7 -19.0,0.91,3.860,9.5,18.8,0.91,3.930,11.2 -14.0,0.91,11.700,349.0,13.8,0.91,12.010,349.6 -13.5,0.91,6.650,31.5,13.3,0.91,7.120,31.5 -13.3,0.91,6.630,54.2,13.1,0.91,7.310,52.6 -14.5,0.91,5.630,53.9,14.8,0.91,6.380,52.8 -14.5,0.91,5.560,49.6,14.6,0.91,6.120,47.7 -14.6,0.91,7.680,55.3,14.7,0.91,8.300,54.6 -14.6,0.91,5.350,30.3,14.7,0.91,5.820,30.8 -14.2,0.91,6.240,29.3,14.3,0.91,6.650,29.7 -14.0,0.91,4.700,23.2,14.1,0.91,5.060,26.7 -14.1,0.91,5.860,20.2,14.1,0.91,5.990,23.4 -13.6,0.91,5.520,12.5,13.6,0.91,5.850,16.4 -14.2,0.91,4.570,21.3,14.0,0.91,4.640,21.9 -15.8,0.91,6.150,22.6,15.6,0.91,6.250,22.7 -17.0,0.91,7.360,26.8,16.8,0.91,7.450,26.9 -18.1,0.91,7.890,28.9,17.9,0.91,7.980,28.9 -18.9,0.91,7.830,29.5,18.6,0.91,7.920,29.5 -19.5,0.91,7.300,33.5,19.3,0.91,7.370,33.5 -20.1,0.91,6.860,44.4,19.9,0.91,6.930,44.3 -20.7,0.91,7.290,40.3,20.4,0.91,7.370,40.3 -21.0,0.91,7.370,41.7,20.8,0.91,7.440,41.8 -21.2,0.91,7.480,53.7,21.0,0.91,7.580,53.6 -21.0,0.91,7.640,55.1,20.8,0.91,7.740,55.1 -20.7,0.91,6.880,65.9,20.6,0.91,7.110,65.5 -20.5,0.91,6.840,59.1,20.4,0.91,7.040,58.4 -19.6,0.91,4.760,85.2,19.4,0.91,5.090,86.7 -19.5,0.91,7.340,95.7,19.4,0.91,7.370,94.3 -18.3,0.91,5.860,89.7,18.3,0.91,6.890,91.9 -19.4,0.91,6.700,103.1,19.5,0.91,6.810,97.8 -16.8,0.91,4.200,54.0,16.9,0.91,4.480,56.5 -16.8,0.91,3.980,72.2,17.0,0.91,4.570,74.5 -14.9,0.91,4.680,60.4,15.0,0.91,5.020,63.1 -14.9,0.91,5.050,54.3,15.3,0.91,5.470,57.0 -14.4,0.91,4.910,68.0,14.6,0.91,5.370,70.1 -14.4,0.91,5.350,76.0,14.6,0.91,5.820,78.3 -14.0,0.91,5.050,79.0,14.2,0.91,5.620,81.3 -14.5,0.92,3.570,84.9,14.4,0.92,3.700,88.0 -16.4,0.92,4.090,115.5,16.2,0.92,4.170,116.5 -17.8,0.92,4.250,140.1,17.6,0.92,4.300,140.6 -18.9,0.92,3.500,160.5,18.7,0.92,3.520,160.6 -20.1,0.91,2.640,156.9,19.9,0.91,2.660,156.9 -21.0,0.91,2.520,156.8,20.8,0.91,2.520,156.8 -21.7,0.91,2.960,156.1,21.5,0.91,2.960,156.0 -22.2,0.91,3.470,164.5,22.0,0.91,3.480,164.5 -22.2,0.91,5.140,179.8,22.0,0.91,5.130,179.4 -22.5,0.91,2.960,172.1,22.3,0.91,3.150,170.1 -22.3,0.91,3.790,152.7,22.1,0.91,3.810,152.7 -21.9,0.91,6.210,176.1,21.7,0.91,6.370,176.0 -21.6,0.91,7.830,164.1,21.5,0.91,7.740,164.4 -20.6,0.91,10.550,169.7,20.6,0.91,11.040,169.0 -20.1,0.91,11.290,169.2,20.1,0.91,11.710,169.3 -19.7,0.91,11.530,171.5,19.8,0.91,11.760,172.2 -19.2,0.91,12.570,178.3,19.4,0.91,12.900,178.4 -18.5,0.91,12.900,187.9,18.7,0.91,13.500,187.7 -18.1,0.91,13.340,193.6,18.3,0.91,13.870,193.5 -18.1,0.91,12.520,202.8,18.4,0.91,13.030,202.4 -17.7,0.91,13.090,209.5,18.0,0.91,13.620,209.1 -17.8,0.91,13.200,212.6,18.1,0.91,13.660,212.0 -17.1,0.91,13.680,219.3,17.4,0.91,14.200,219.1 -16.8,0.91,12.110,222.9,16.9,0.91,12.540,222.8 -17.3,0.91,9.670,227.2,17.3,0.91,10.390,227.7 -19.3,0.91,9.540,225.4,19.1,0.91,9.640,225.4 -20.8,0.91,8.520,220.7,20.6,0.91,8.620,220.7 -21.9,0.91,7.750,217.6,21.7,0.91,7.830,217.5 -23.1,0.91,6.850,211.1,22.9,0.91,6.910,211.1 -24.0,0.91,6.680,195.7,23.8,0.91,6.750,195.9 -24.5,0.91,6.770,189.3,24.3,0.91,6.840,189.3 -25.0,0.91,6.320,186.8,24.8,0.91,6.400,186.6 -25.2,0.91,6.520,185.6,25.0,0.91,6.610,185.7 -25.4,0.91,6.710,184.0,25.2,0.91,6.760,183.0 -25.3,0.91,7.320,165.2,25.1,0.91,7.430,165.5 -25.1,0.91,6.950,175.9,24.9,0.91,6.970,174.6 -24.2,0.91,10.220,158.1,24.2,0.91,10.620,159.1 -23.2,0.91,12.510,158.2,23.3,0.91,12.860,158.8 -22.3,0.91,14.150,162.3,22.5,0.91,15.000,162.6 -21.2,0.91,14.410,171.8,21.4,0.91,15.240,173.0 -20.2,0.91,13.440,186.2,20.4,0.91,14.110,188.1 -19.5,0.91,13.290,194.2,19.7,0.91,14.090,195.6 -18.9,0.91,13.620,198.5,19.1,0.91,14.630,199.1 -18.4,0.91,13.660,199.3,18.6,0.91,14.640,199.7 -18.1,0.91,13.470,200.6,18.3,0.91,14.440,201.0 -17.7,0.91,13.300,202.7,17.9,0.91,14.270,202.6 -17.1,0.91,12.850,201.5,17.2,0.91,13.630,202.0 -16.6,0.91,12.410,208.8,16.5,0.91,13.190,209.4 -17.1,0.91,9.430,207.8,16.9,0.91,9.580,208.1 -18.6,0.91,9.370,209.1,18.4,0.91,9.490,209.3 -19.9,0.91,9.860,203.4,19.7,0.91,9.990,203.6 -21.4,0.91,10.190,201.8,21.2,0.91,10.320,201.9 -22.7,0.91,9.840,199.9,22.5,0.91,9.970,200.0 -23.6,0.91,10.190,194.6,23.4,0.91,10.330,194.6 -24.4,0.91,10.500,197.9,24.2,0.91,10.630,197.8 -25.3,0.91,10.270,190.4,25.1,0.91,10.430,190.5 -25.9,0.91,10.620,188.9,25.7,0.91,10.800,188.8 -26.1,0.91,11.420,184.5,25.9,0.91,11.620,184.5 -25.9,0.91,12.750,187.3,25.8,0.91,12.990,187.2 -25.2,0.91,11.230,203.4,25.0,0.91,11.600,203.4 -16.4,0.91,11.240,281.1,16.6,0.91,11.950,279.3 -19.5,0.91,6.380,227.0,19.8,0.91,7.200,225.3 -19.4,0.91,11.850,192.5,19.7,0.91,12.820,193.9 -19.1,0.91,11.890,187.3,19.2,0.91,12.520,188.1 -18.7,0.91,11.170,187.8,18.7,0.91,11.750,188.1 -19.2,0.91,13.260,188.3,19.4,0.91,14.040,188.6 -18.4,0.91,12.820,191.0,18.4,0.91,13.250,191.7 -17.7,0.91,13.190,199.9,17.7,0.91,13.800,200.6 -17.8,0.91,15.610,193.3,17.9,0.91,16.330,192.7 -17.0,0.91,14.860,191.6,17.0,0.91,15.630,192.0 -16.6,0.91,14.160,190.6,16.5,0.91,14.700,191.2 -16.3,0.91,13.920,194.1,16.1,0.91,14.560,194.9 -17.1,0.91,13.250,195.8,17.0,0.91,13.940,196.6 -18.6,0.91,12.610,200.9,18.4,0.91,12.790,201.1 -20.5,0.91,13.340,196.7,20.3,0.91,13.500,196.8 -22.4,0.90,12.590,200.8,22.2,0.90,12.760,201.0 -24.2,0.90,11.720,189.8,24.0,0.90,11.860,190.0 -26.0,0.90,11.840,211.0,25.8,0.90,11.960,211.1 -26.3,0.90,9.840,199.2,26.0,0.90,10.000,199.5 -27.6,0.90,11.040,213.9,27.4,0.90,11.210,214.2 -28.8,0.90,10.890,221.6,28.6,0.90,11.060,221.9 -29.7,0.90,9.880,229.7,29.4,0.90,10.080,229.9 -28.4,0.90,12.610,223.6,28.2,0.90,12.770,223.8 -28.5,0.90,11.460,208.5,28.4,0.90,12.080,209.9 -27.0,0.90,14.340,223.1,26.9,0.90,15.030,223.5 -26.8,0.90,12.520,231.2,27.0,0.90,13.170,233.6 -25.6,0.90,12.680,216.3,25.6,0.90,13.830,220.4 -24.5,0.90,10.380,206.0,24.5,0.90,10.570,209.4 -23.2,0.90,8.770,182.1,23.1,0.90,9.570,181.3 -21.1,0.90,13.480,161.3,21.1,0.90,14.250,161.2 -20.0,0.90,15.420,175.2,20.2,0.90,15.930,175.7 -20.8,0.90,15.100,186.8,21.1,0.90,15.670,188.0 -20.4,0.90,17.000,188.7,20.5,0.90,17.780,189.7 -19.5,0.90,15.610,189.7,19.5,0.90,16.420,191.2 -19.2,0.90,13.850,189.7,19.2,0.90,14.490,191.9 -18.9,0.90,12.100,190.0,18.8,0.90,12.770,191.4 -19.9,0.90,10.620,200.8,19.8,0.90,10.750,201.2 -21.8,0.90,7.980,199.2,21.6,0.90,7.960,199.7 -24.1,0.90,5.240,211.8,23.9,0.90,5.250,212.1 -26.3,0.90,0.950,215.6,26.1,0.90,0.950,217.3 -27.9,0.90,0.960,129.4,27.7,0.90,0.930,130.4 -29.5,0.90,1.950,41.1,29.3,0.90,1.940,41.6 -30.5,0.90,2.270,32.8,30.3,0.90,2.230,32.4 -31.1,0.90,1.680,29.3,30.9,0.90,1.650,28.5 -31.7,0.90,1.490,36.9,31.5,0.90,1.470,37.0 -32.1,0.90,2.910,99.2,31.9,0.90,2.920,99.5 -31.9,0.90,3.190,121.2,31.8,0.90,3.160,122.0 -23.8,0.90,15.270,76.2,23.7,0.90,15.110,77.7 -21.6,0.90,6.420,35.5,22.0,0.90,6.330,35.4 -23.0,0.90,14.420,116.9,22.9,0.90,15.280,116.9 -21.9,0.90,11.460,119.2,22.2,0.90,12.220,117.9 -24.5,0.90,8.570,102.3,25.3,0.90,8.280,93.9 -25.6,0.90,8.260,130.3,25.7,0.90,8.040,133.2 -23.9,0.90,11.780,157.1,24.5,0.90,12.200,158.3 -22.3,0.90,14.130,169.0,22.6,0.90,14.840,169.4 -22.3,0.90,16.740,181.9,22.6,0.90,17.580,182.2 -20.9,0.90,16.460,171.7,21.0,0.90,16.970,172.6 -20.7,0.90,16.070,174.5,20.7,0.90,16.520,175.5 -20.3,0.90,14.650,185.1,20.6,0.90,15.050,187.5 -20.5,0.90,14.940,196.2,21.1,0.90,15.640,198.8 -21.4,0.90,13.340,198.3,21.4,0.90,14.180,200.0 -23.6,0.90,11.530,199.4,23.5,0.90,11.650,200.2 -26.3,0.90,10.300,203.0,26.2,0.90,10.340,203.5 -29.4,0.90,8.850,204.3,29.2,0.90,8.930,204.8 -32.7,0.90,7.830,213.8,32.5,0.90,7.930,214.1 -34.0,0.90,7.350,222.5,33.8,0.90,7.430,222.6 -34.6,0.90,6.830,207.1,34.4,0.90,6.880,207.5 -35.3,0.90,5.570,224.2,35.0,0.90,5.640,224.3 -35.4,0.90,6.330,243.2,35.2,0.90,6.370,242.6 -35.6,0.90,3.710,217.2,35.4,0.90,3.830,218.2 -35.1,0.90,6.490,191.9,34.9,0.90,6.840,193.7 -30.3,0.90,4.900,17.7,31.0,0.90,4.160,14.2 -27.7,0.90,11.700,170.0,27.8,0.90,11.750,171.0 -24.3,0.90,20.590,198.3,24.1,0.90,21.210,199.1 -23.4,0.90,20.700,152.4,23.6,0.90,21.580,152.1 -23.1,0.90,14.620,144.3,23.0,0.90,15.310,145.7 -26.9,0.90,14.460,148.4,26.9,0.90,15.070,148.9 -27.3,0.90,15.360,157.9,27.2,0.90,15.820,159.0 -25.9,0.90,12.240,166.8,25.9,0.90,12.870,167.4 -24.3,0.90,13.870,171.1,24.1,0.90,14.340,170.8 -22.6,0.90,13.870,180.3,22.5,0.90,14.520,181.3 -22.4,0.90,2.560,81.8,22.1,0.90,2.530,107.3 -21.8,0.90,6.350,159.4,21.7,0.90,6.470,162.4 -21.2,0.90,4.580,133.4,20.9,0.90,4.690,135.9 -21.6,0.90,10.890,179.4,21.4,0.90,11.420,180.2 -22.9,0.90,12.680,187.0,22.7,0.90,12.880,187.3 -24.9,0.90,13.420,182.1,24.7,0.90,13.580,182.3 -25.8,0.90,14.040,179.4,25.6,0.90,14.190,179.5 -27.7,0.90,13.920,181.3,27.4,0.90,14.110,181.4 -29.3,0.90,13.960,175.9,29.1,0.90,14.150,176.4 -30.5,0.90,13.100,186.3,30.2,0.90,13.280,186.1 -30.1,0.90,14.680,179.6,29.9,0.90,14.870,179.7 -31.5,0.90,13.880,177.9,31.3,0.90,14.000,177.9 -32.4,0.90,12.250,179.9,32.1,0.90,12.480,180.1 -31.8,0.90,15.080,172.8,31.6,0.90,15.370,173.1 -29.7,0.90,16.020,169.5,29.6,0.90,16.490,169.7 -28.3,0.90,18.570,174.8,28.2,0.90,19.210,174.8 -27.6,0.90,15.060,183.6,27.5,0.90,15.670,184.2 -25.8,0.90,14.330,185.3,25.6,0.90,15.260,185.1 -26.8,0.90,14.640,180.2,26.7,0.90,15.230,181.0 -25.8,0.90,14.090,179.9,25.7,0.90,14.700,180.4 -25.0,0.90,13.730,182.8,24.9,0.90,14.140,184.8 -24.2,0.90,13.220,189.4,24.2,0.90,14.010,192.0 -23.1,0.90,13.840,183.6,23.1,0.90,14.430,185.6 -22.7,0.90,14.600,187.6,22.7,0.90,15.410,189.4 -22.1,0.90,15.170,190.1,22.1,0.90,15.900,191.9 -21.3,0.90,13.810,195.8,21.4,0.90,14.530,197.6 -20.9,0.90,12.500,202.4,20.9,0.90,13.350,203.7 -22.2,0.90,12.180,206.7,22.0,0.90,12.380,207.1 -23.6,0.90,11.530,211.0,23.4,0.90,11.620,211.3 -25.5,0.90,9.720,209.9,25.3,0.90,9.780,210.3 -28.0,0.90,7.340,225.4,27.8,0.90,7.430,225.9 -30.4,0.90,7.130,244.8,30.2,0.90,7.240,245.0 -31.2,0.90,8.310,244.7,31.0,0.90,8.440,244.8 -31.9,0.90,8.890,244.3,31.7,0.90,9.030,244.1 -32.3,0.90,9.680,238.1,32.1,0.90,9.840,238.1 -32.5,0.90,9.930,241.5,32.3,0.90,10.100,241.4 -32.9,0.90,9.950,237.4,32.6,0.90,10.130,237.2 -32.5,0.90,11.650,231.1,32.3,0.90,11.850,231.2 -31.9,0.90,11.830,227.6,31.8,0.90,12.370,227.7 -31.4,0.90,9.730,232.6,31.4,0.90,10.300,233.8 -31.4,0.90,9.940,234.2,31.2,0.90,10.110,235.8 -30.8,0.90,10.490,245.2,30.8,0.90,10.850,248.2 -31.5,0.90,10.460,243.3,31.4,0.90,10.450,242.6 -27.8,0.90,17.440,200.5,27.7,0.90,18.580,202.3 -25.9,0.90,13.360,200.7,26.0,0.90,14.150,202.1 -24.4,0.90,14.090,189.9,24.3,0.90,15.090,191.1 -22.5,0.90,13.920,183.3,22.5,0.90,14.630,185.7 -21.2,0.90,14.810,190.3,21.2,0.90,15.650,191.7 -20.7,0.90,15.250,195.2,20.7,0.90,16.100,196.6 -20.4,0.90,14.330,194.4,20.4,0.90,15.100,196.2 -20.0,0.90,13.090,197.6,20.0,0.90,13.900,198.4 -21.2,0.90,12.120,205.2,21.0,0.90,12.300,205.5 -22.6,0.90,11.330,203.2,22.4,0.90,11.430,203.6 -24.3,0.90,12.190,202.4,24.1,0.90,12.310,202.7 -26.6,0.90,11.530,202.0,26.4,0.90,11.670,202.2 -28.3,0.90,9.810,204.1,28.1,0.90,9.930,204.4 -30.2,0.90,9.040,212.4,30.0,0.90,9.160,212.6 -31.7,0.90,8.720,210.9,31.4,0.90,8.850,211.3 -32.6,0.90,9.390,220.3,32.4,0.90,9.540,220.4 -33.2,0.90,10.130,222.3,33.0,0.90,10.300,222.7 -33.4,0.90,10.110,221.4,33.2,0.90,10.280,221.5 -33.6,0.90,9.960,230.3,33.4,0.90,10.170,230.4 -32.7,0.90,7.930,236.3,32.6,0.90,8.350,237.5 -31.4,0.90,9.260,253.2,31.7,0.90,9.750,255.0 -32.2,0.90,12.320,255.5,32.0,0.90,12.060,255.5 -31.8,0.90,11.340,263.9,31.8,0.90,11.390,263.8 -28.3,0.90,14.210,207.0,28.5,0.90,15.230,208.1 -26.7,0.90,12.240,196.6,26.6,0.90,13.090,198.2 -25.1,0.90,12.230,185.0,25.2,0.90,12.970,187.4 -23.4,0.90,13.660,179.9,23.3,0.90,14.150,181.8 -22.1,0.90,13.500,186.6,22.1,0.90,14.030,188.5 -21.5,0.90,14.620,191.5,21.5,0.90,15.300,192.9 -20.9,0.90,13.540,200.0,20.8,0.90,14.400,201.7 -20.3,0.90,13.210,193.6,20.3,0.90,13.830,195.3 -20.4,0.90,12.600,197.7,20.2,0.90,13.250,198.3 -21.4,0.90,11.070,209.2,21.2,0.90,11.200,209.4 -22.8,0.90,9.560,218.2,22.6,0.90,9.680,218.3 -24.4,0.90,8.600,235.2,24.2,0.90,8.700,235.4 -22.7,0.90,7.620,308.4,22.6,0.90,7.670,307.7 -22.7,0.90,9.320,325.9,22.5,0.90,9.360,325.7 -20.8,0.90,10.140,342.2,20.5,0.90,10.220,341.9 -18.1,0.90,11.320,2.2,17.9,0.90,11.380,2.0 -16.6,0.90,11.240,12.7,16.4,0.90,11.340,12.5 -18.1,0.90,8.800,17.1,17.9,0.90,8.880,17.0 -19.4,0.90,8.530,22.9,19.1,0.90,8.620,22.8 -19.9,0.90,6.890,27.0,19.7,0.90,6.950,26.9 -20.1,0.90,5.520,20.3,19.9,0.90,5.600,20.4 -19.7,0.90,5.030,35.2,19.6,0.90,4.980,34.9 -19.4,0.90,3.790,40.4,19.2,0.90,3.870,40.6 -19.1,0.90,2.840,54.6,19.0,0.90,3.060,54.4 -18.9,0.90,3.080,79.0,18.9,0.90,3.300,77.1 -18.7,0.90,5.010,107.0,18.4,0.90,4.870,106.5 -19.7,0.90,5.710,122.2,19.8,0.90,5.560,118.9 -17.4,0.90,9.100,150.4,18.0,0.90,8.630,147.1 -18.5,0.90,8.530,154.5,19.2,0.90,8.300,149.1 -16.4,0.90,10.970,165.7,16.8,0.90,11.110,163.9 -18.3,0.90,9.090,164.6,18.8,0.90,9.160,161.2 -18.4,0.90,10.070,157.3,18.8,0.90,10.240,155.2 -19.0,0.90,9.720,159.6,19.5,0.90,10.240,157.4 -19.1,0.91,6.980,161.2,19.1,0.91,7.860,158.3 -20.4,0.91,7.340,165.1,20.2,0.91,7.420,164.7 -21.8,0.91,7.070,168.2,21.6,0.91,7.140,168.0 -23.7,0.91,8.060,155.0,23.5,0.91,8.160,155.0 -25.0,0.91,8.330,160.1,24.8,0.91,8.440,160.2 -26.4,0.91,7.950,163.1,26.2,0.91,8.050,163.2 -27.2,0.90,8.300,169.8,27.0,0.90,8.400,169.9 -28.0,0.90,8.280,169.2,27.8,0.90,8.390,169.4 -28.8,0.90,8.190,161.8,28.5,0.90,8.310,162.1 -29.3,0.90,8.380,163.9,29.0,0.90,8.520,164.2 -29.3,0.90,9.090,155.0,29.1,0.90,9.240,155.3 -28.5,0.90,9.720,144.4,28.3,0.90,10.170,144.9 -27.4,0.90,11.410,142.6,27.4,0.90,12.240,143.0 -26.5,0.90,13.520,149.8,26.4,0.90,14.350,149.9 -25.3,0.90,14.480,152.8,25.3,0.90,15.320,152.8 -24.8,0.90,15.220,161.0,24.7,0.90,15.960,161.1 -24.1,0.90,15.970,164.8,24.1,0.90,16.680,165.0 -23.8,0.90,16.160,173.9,23.8,0.90,16.870,174.2 -23.0,0.90,16.540,172.8,22.9,0.90,17.220,173.1 -22.4,0.90,17.770,174.4,22.3,0.90,18.520,174.5 -21.5,0.90,16.550,178.9,21.5,0.90,17.250,179.3 -21.4,0.90,16.890,183.0,21.4,0.90,17.630,183.2 -21.0,0.90,16.230,186.4,21.0,0.90,16.970,186.7 -20.7,0.91,15.340,187.1,20.6,0.91,16.240,186.9 -21.7,0.91,13.590,189.7,21.5,0.91,13.790,189.7 -23.0,0.91,13.300,191.3,22.8,0.91,13.430,191.4 -24.7,0.91,11.820,192.1,24.5,0.91,11.960,192.1 -26.3,0.91,8.600,187.8,26.0,0.91,8.730,187.9 -27.6,0.91,7.320,174.7,27.3,0.91,7.390,174.9 -28.7,0.91,6.220,148.3,28.4,0.91,6.290,148.6 -29.6,0.91,7.210,155.1,29.4,0.91,7.300,155.2 -30.1,0.90,9.850,155.7,29.9,0.90,10.000,155.7 -30.3,0.90,11.080,143.5,30.0,0.90,11.250,143.8 -30.4,0.90,11.860,150.8,30.2,0.90,12.070,150.9 -17.2,0.91,18.420,350.5,17.9,0.91,19.520,350.1 -17.2,0.91,7.340,10.1,17.0,0.91,7.610,8.9 -17.9,0.91,7.120,18.7,17.8,0.91,7.170,17.9 -18.7,0.91,7.320,305.4,18.5,0.91,7.400,305.5 -18.7,0.91,9.660,323.0,19.2,0.91,10.800,319.3 -22.4,0.91,7.400,74.4,22.7,0.91,7.670,72.7 -20.3,0.91,5.600,73.4,20.6,0.91,5.790,73.8 -21.8,0.91,6.390,109.3,21.7,0.91,6.760,110.5 -21.1,0.91,7.430,130.9,21.1,0.91,8.090,130.8 -21.0,0.91,7.660,130.8,21.0,0.91,8.390,134.2 -20.4,0.91,9.590,155.8,20.4,0.91,10.280,157.5 -20.2,0.91,9.410,162.9,20.1,0.91,10.080,165.6 -19.7,0.91,9.250,167.7,19.8,0.91,9.870,170.0 -19.4,0.91,9.570,176.6,19.4,0.91,10.320,177.3 -20.3,0.91,8.180,173.0,20.1,0.91,8.340,173.2 -21.6,0.91,8.700,166.1,21.4,0.91,8.810,166.2 -22.6,0.91,8.020,164.0,22.4,0.91,8.130,164.1 -24.0,0.91,7.010,145.5,23.8,0.91,7.100,145.6 -25.2,0.91,7.690,136.0,25.0,0.91,7.800,136.1 -26.6,0.91,8.650,140.3,26.3,0.91,8.780,140.5 -26.8,0.91,9.510,135.2,26.6,0.91,9.610,135.4 -25.7,0.91,7.340,107.1,25.5,0.91,7.490,109.6 -27.7,0.91,9.380,135.6,27.4,0.91,9.500,135.7 -27.5,0.91,10.980,127.6,27.3,0.91,11.130,128.1 -23.7,0.91,6.020,245.8,23.5,0.91,6.170,246.5 -24.1,0.91,1.900,292.0,23.9,0.91,1.680,281.1 -24.4,0.91,3.660,139.1,24.3,0.91,4.210,139.8 -24.9,0.91,12.790,138.9,24.9,0.91,14.030,139.9 -21.5,0.91,12.720,168.3,21.3,0.91,13.270,167.5 -20.8,0.91,11.950,165.7,20.7,0.91,12.750,165.1 -20.4,0.91,11.480,159.6,20.3,0.91,12.230,159.3 -19.8,0.91,11.100,164.2,19.7,0.91,11.840,164.1 -19.4,0.91,11.330,167.9,19.4,0.91,12.060,168.0 -19.2,0.91,11.920,167.8,19.2,0.91,12.460,168.6 -18.9,0.91,12.000,170.0,18.9,0.91,12.610,170.3 -18.7,0.91,12.320,171.9,18.6,0.91,12.940,172.5 -18.2,0.91,12.520,166.8,18.1,0.91,13.100,167.2 -18.2,0.91,11.950,177.0,18.1,0.91,12.290,177.1 -18.5,0.91,10.560,171.9,18.3,0.91,10.720,172.0 -19.9,0.91,9.450,173.6,19.7,0.91,9.580,173.7 -21.1,0.91,9.570,168.7,20.9,0.91,9.730,168.9 -20.3,0.91,11.020,172.6,20.1,0.91,11.160,172.5 -21.2,0.91,9.970,175.5,20.9,0.91,10.100,175.4 -22.3,0.91,9.790,172.7,22.1,0.91,9.910,172.7 -23.9,0.91,9.100,173.0,23.7,0.91,9.220,173.1 -24.9,0.91,8.060,166.5,24.6,0.91,8.170,166.7 -24.9,0.91,10.930,160.0,24.7,0.91,11.030,160.2 -25.3,0.91,9.850,158.6,25.1,0.91,10.030,158.5 -25.0,0.91,9.770,163.0,24.8,0.91,9.910,163.1 -25.3,0.91,9.450,164.2,25.1,0.91,9.690,164.4 -24.4,0.91,10.970,159.4,24.2,0.91,11.550,159.0 -23.0,0.91,12.990,157.2,22.9,0.91,13.650,157.4 -22.2,0.91,12.450,165.0,22.1,0.91,13.040,165.0 -21.5,0.91,13.640,180.4,21.4,0.91,14.150,180.6 -20.7,0.91,13.170,180.8,20.5,0.91,13.720,181.1 -19.8,0.91,13.430,190.1,19.7,0.91,13.980,190.5 -19.4,0.91,11.760,202.4,19.3,0.91,12.240,202.6 -19.2,0.91,12.780,202.8,19.0,0.91,13.200,203.4 -18.9,0.91,13.370,182.3,18.8,0.91,13.780,182.8 -18.6,0.91,13.460,177.0,18.5,0.91,13.940,177.0 -18.9,0.91,13.300,190.5,18.9,0.91,13.920,190.7 -18.5,0.91,11.880,193.6,18.3,0.91,12.280,194.0 -20.1,0.91,12.130,198.4,19.9,0.91,12.280,198.5 -21.1,0.91,12.200,191.5,20.9,0.91,12.310,191.6 -22.4,0.91,12.130,190.2,22.2,0.91,12.260,190.4 -24.4,0.91,11.530,191.6,24.2,0.91,11.680,191.8 -26.0,0.91,10.850,189.2,25.8,0.91,10.990,189.3 -27.3,0.91,10.950,190.3,27.1,0.91,11.070,190.3 -28.3,0.91,9.890,184.5,28.0,0.91,10.000,184.3 -29.2,0.91,9.320,184.3,28.9,0.91,9.430,184.1 -29.7,0.91,8.650,181.8,29.5,0.91,8.750,181.3 -29.9,0.91,10.010,169.8,29.6,0.91,10.180,170.2 -29.7,0.91,10.650,168.9,29.5,0.91,10.760,169.1 -29.3,0.91,10.090,172.7,29.1,0.91,10.340,173.1 -28.1,0.91,11.590,173.9,28.0,0.91,12.310,174.2 -27.1,0.91,13.650,177.3,27.0,0.91,14.290,177.5 -25.9,0.91,15.370,181.8,25.7,0.91,16.010,181.9 -25.0,0.91,16.230,188.6,24.9,0.91,16.940,188.7 -23.5,0.91,15.870,183.2,23.4,0.91,16.380,182.9 -22.0,0.91,16.260,189.1,21.9,0.91,16.930,189.2 -21.0,0.90,17.440,188.6,20.9,0.90,18.060,189.0 -20.5,0.91,17.020,190.8,20.4,0.91,17.700,191.3 -19.9,0.90,18.000,194.1,19.9,0.90,18.700,194.6 -19.3,0.90,17.860,192.9,19.2,0.90,18.570,193.4 -18.8,0.90,18.050,193.0,18.7,0.90,18.780,193.6 -18.8,0.90,16.740,195.7,18.7,0.90,17.240,196.0 -19.8,0.90,16.220,201.3,19.6,0.90,16.420,201.4 -21.4,0.90,15.050,199.8,21.2,0.90,15.210,199.9 -23.2,0.90,13.890,198.0,23.0,0.90,14.050,198.1 -25.2,0.90,12.930,193.9,25.0,0.90,13.100,194.0 -26.9,0.90,11.670,190.0,26.7,0.90,11.830,190.1 -28.3,0.90,11.860,190.0,28.1,0.90,12.020,190.2 -29.4,0.90,12.140,191.7,29.2,0.90,12.290,191.7 -30.4,0.90,11.960,183.8,30.1,0.90,12.150,184.1 -30.8,0.90,12.540,193.1,30.6,0.90,12.680,192.9 -30.8,0.90,12.820,184.9,30.5,0.90,13.060,185.0 -30.2,0.90,15.630,185.4,30.0,0.90,15.790,185.5 -29.3,0.90,13.890,182.3,29.2,0.90,14.270,182.3 -28.0,0.90,15.360,190.8,27.9,0.90,15.850,190.8 -26.9,0.90,16.280,193.9,26.8,0.90,16.970,193.8 -25.7,0.90,16.830,188.4,25.6,0.90,17.480,188.5 -24.9,0.90,18.380,186.1,24.8,0.90,19.090,186.2 -24.3,0.90,19.220,188.0,24.2,0.90,20.010,188.0 -23.7,0.90,18.850,183.9,23.7,0.90,19.720,184.1 -23.2,0.90,19.570,187.8,23.1,0.90,20.360,188.0 -22.5,0.90,17.330,186.2,22.4,0.90,17.980,186.4 -21.3,0.90,19.290,189.7,21.3,0.90,20.050,190.2 -20.8,0.90,18.840,195.7,20.7,0.90,19.560,196.0 -20.0,0.90,18.580,192.9,19.9,0.90,19.330,193.3 -19.8,0.90,18.170,189.8,19.7,0.90,19.160,189.9 -19.9,0.90,17.690,191.8,19.8,0.90,18.040,191.9 -21.3,0.90,17.000,192.8,21.1,0.90,17.200,192.9 -22.6,0.90,16.080,190.1,22.4,0.90,16.270,190.2 -23.8,0.90,15.680,187.3,23.6,0.90,15.880,187.4 -25.6,0.90,15.140,185.0,25.4,0.90,15.350,185.1 -26.6,0.90,8.630,180.1,26.4,0.90,8.890,179.8 -28.0,0.90,15.040,180.2,27.8,0.90,15.210,180.1 -29.4,0.90,14.020,172.2,29.1,0.90,14.270,172.1 -29.7,0.90,14.750,171.4,29.5,0.90,14.980,171.6 -29.6,0.90,14.820,198.3,29.4,0.90,15.160,198.4 -25.3,0.90,12.050,161.2,25.1,0.90,12.570,161.0 -25.9,0.90,14.810,165.1,25.9,0.90,15.590,164.9 -25.9,0.90,16.670,161.4,25.8,0.90,17.700,161.1 -25.6,0.90,19.170,168.2,25.5,0.90,20.030,168.0 -24.7,0.90,18.900,169.4,24.6,0.90,19.680,169.2 -23.4,0.90,19.960,171.5,23.3,0.90,20.720,171.4 -22.2,0.90,19.940,171.6,22.1,0.90,20.600,171.6 -21.1,0.90,20.740,175.8,20.9,0.90,21.400,175.8 -20.5,0.90,20.980,179.5,20.4,0.90,21.610,179.5 -20.1,0.90,20.900,183.0,20.0,0.90,21.580,182.9 -19.7,0.90,21.860,186.6,19.5,0.90,22.540,186.5 -19.3,0.90,20.080,190.3,19.2,0.90,20.700,190.4 -19.2,0.90,19.560,188.0,19.1,0.90,20.230,188.0 -19.3,0.90,20.220,191.7,19.1,0.90,20.810,191.7 -19.9,0.90,17.400,189.2,19.7,0.90,17.660,189.1 -21.1,0.90,19.310,189.5,20.9,0.90,19.590,189.5 -23.1,0.90,18.800,191.1,22.9,0.90,19.070,191.2 -24.5,0.90,16.870,192.1,24.3,0.90,17.120,192.1 -25.8,0.90,16.940,193.8,25.6,0.90,17.190,193.8 -27.0,0.90,15.730,189.3,26.8,0.90,15.970,189.4 -28.5,0.90,14.780,192.8,28.3,0.90,15.030,192.9 -29.2,0.90,13.660,187.2,29.0,0.90,13.900,187.5 -30.0,0.90,13.460,193.6,29.7,0.90,13.680,193.6 -30.5,0.90,12.670,193.8,30.3,0.90,12.860,194.1 -30.5,0.90,12.050,195.6,30.3,0.90,12.290,195.6 -26.3,0.90,21.490,187.2,26.1,0.90,21.780,187.0 -26.1,0.90,12.140,154.8,26.1,0.90,12.250,155.9 -26.5,0.90,13.630,155.3,26.5,0.90,14.320,156.6 -25.5,0.90,15.470,174.0,25.5,0.90,16.370,174.5 -24.8,0.90,15.450,173.9,24.7,0.90,16.260,174.5 -23.0,0.90,16.480,171.1,22.9,0.90,17.110,171.3 -21.9,0.90,15.500,170.9,21.8,0.90,16.060,171.2 -21.4,0.90,16.500,176.5,21.2,0.90,17.060,176.8 -20.8,0.90,16.290,180.0,20.7,0.90,16.870,180.4 -20.6,0.90,16.230,186.3,20.4,0.90,16.810,186.7 -20.3,0.90,15.120,187.9,20.1,0.90,15.680,188.3 -20.1,0.90,15.460,187.1,19.9,0.90,15.840,187.4 -20.2,0.90,16.220,189.8,20.0,0.90,16.880,190.1 -20.8,0.90,15.940,191.9,20.6,0.90,16.190,192.1 -22.1,0.90,15.570,196.3,21.9,0.90,15.750,196.4 -24.2,0.90,13.770,201.1,24.0,0.90,13.940,201.2 -26.5,0.90,11.490,209.8,26.3,0.90,11.660,210.0 -28.1,0.90,10.080,218.9,27.9,0.90,10.210,219.0 -29.6,0.90,8.900,225.8,29.4,0.90,9.020,225.9 -30.9,0.90,8.320,229.2,30.7,0.90,8.410,229.2 -32.0,0.90,7.750,244.0,31.8,0.90,7.820,243.8 -32.4,0.90,7.030,247.0,32.2,0.90,7.120,246.7 -33.0,0.90,8.220,216.8,32.7,0.90,8.340,217.2 -32.8,0.90,8.640,247.8,32.6,0.90,8.690,247.3 -32.9,0.90,7.840,212.9,32.8,0.90,7.750,213.8 -32.6,0.90,8.690,223.3,32.5,0.90,8.750,222.0 -32.6,0.90,10.370,230.6,32.5,0.90,10.510,231.1 -31.6,0.90,10.030,226.0,31.7,0.90,10.520,226.4 -27.6,0.90,14.220,201.8,27.5,0.90,15.200,202.3 -26.3,0.90,14.050,200.3,26.3,0.90,14.940,201.0 -25.3,0.90,14.790,198.0,25.3,0.90,15.700,199.2 -24.2,0.90,15.020,188.7,24.2,0.90,15.680,189.7 -23.2,0.90,16.040,189.3,23.2,0.90,16.690,190.3 -22.2,0.90,16.250,191.3,22.2,0.90,16.950,192.3 -21.7,0.90,16.830,194.3,21.7,0.90,17.560,195.3 -21.0,0.90,16.950,195.1,20.9,0.90,17.640,195.8 -20.7,0.90,16.780,194.3,20.6,0.90,17.560,194.9 -21.8,0.90,15.350,196.8,21.6,0.90,15.530,197.0 -23.5,0.90,14.880,196.4,23.4,0.90,15.010,196.5 -25.7,0.90,14.240,197.9,25.5,0.90,14.380,198.1 -27.8,0.90,13.440,199.7,27.6,0.90,13.580,199.8 -30.0,0.90,11.600,198.3,29.8,0.90,11.740,198.5 -31.8,0.90,10.460,201.5,31.6,0.90,10.590,201.8 -33.3,0.90,9.640,209.0,33.0,0.90,9.780,209.2 -34.3,0.90,10.190,227.7,34.1,0.90,10.320,227.7 -34.7,0.90,9.980,219.7,34.4,0.90,10.130,219.9 -34.9,0.90,10.130,213.8,34.7,0.90,10.280,214.1 -35.0,0.90,10.860,214.7,34.8,0.90,11.050,215.0 -34.5,0.90,11.170,202.9,34.3,0.90,11.630,203.2 -33.8,0.90,13.240,203.6,33.8,0.90,14.140,204.5 -32.1,0.90,14.640,203.7,32.0,0.90,15.570,204.0 -30.5,0.90,15.030,195.4,30.5,0.90,16.060,195.9 -29.3,0.90,15.440,196.1,29.2,0.90,16.260,196.4 -28.0,0.90,13.930,189.2,28.0,0.90,14.740,190.1 -27.1,0.90,14.230,188.7,27.1,0.90,15.050,190.6 -26.6,0.90,15.650,193.8,26.5,0.90,16.480,195.4 -25.4,0.90,16.820,191.8,25.4,0.90,17.600,193.2 -24.7,0.90,16.510,195.3,24.7,0.90,17.400,196.6 -23.9,0.90,11.640,207.1,23.9,0.90,12.430,208.6 -22.5,0.90,3.490,252.9,22.7,0.90,4.080,249.7 -24.1,0.90,4.400,273.4,24.2,0.90,5.010,280.1 -22.7,0.90,4.730,355.7,22.6,0.90,4.680,355.0 -22.8,0.90,6.330,4.7,22.6,0.90,6.350,4.6 -24.2,0.90,6.790,12.4,24.0,0.90,6.820,12.2 -24.8,0.91,8.070,25.0,24.6,0.91,8.130,25.0 -25.3,0.91,8.810,30.1,25.0,0.91,8.890,30.1 -26.4,0.91,8.670,29.6,26.1,0.91,8.750,29.8 -26.5,0.91,9.470,42.9,26.3,0.91,9.560,42.7 -27.1,0.91,7.550,35.2,26.9,0.91,7.660,35.4 -27.5,0.91,8.750,40.1,27.3,0.91,8.850,40.1 -27.3,0.91,9.840,34.5,27.1,0.91,9.930,34.6 -27.1,0.91,9.640,35.3,26.9,0.91,9.750,35.4 -26.7,0.91,9.470,35.7,26.5,0.91,9.700,35.8 -25.5,0.91,11.370,40.9,25.4,0.91,11.990,41.3 -24.4,0.91,10.480,58.2,24.3,0.91,11.450,58.9 -23.1,0.91,11.830,66.8,23.1,0.91,13.070,67.5 -22.1,0.91,10.860,77.6,22.2,0.91,12.090,77.2 -21.8,0.91,11.260,82.7,21.9,0.91,12.140,81.9 -21.1,0.91,11.000,91.5,21.2,0.91,12.150,91.4 -21.0,0.91,11.320,95.7,21.1,0.91,12.600,94.1 -20.4,0.91,11.380,101.7,20.5,0.91,12.570,100.1 -19.7,0.91,11.790,104.5,19.8,0.91,12.710,101.1 -18.7,0.91,10.680,111.9,18.8,0.91,11.170,110.4 -18.1,0.91,8.150,109.0,18.2,0.91,8.780,107.2 -17.6,0.91,5.700,95.6,17.5,0.91,6.400,96.3 -18.8,0.91,5.990,75.7,18.7,0.91,6.060,76.7 -20.1,0.91,6.900,78.5,19.9,0.91,6.970,79.0 -21.3,0.91,6.440,77.5,21.1,0.91,6.490,77.9 -22.8,0.91,5.560,79.6,22.6,0.91,5.610,80.2 -24.1,0.91,4.890,81.0,23.8,0.91,4.930,82.4 -25.1,0.91,3.930,110.2,24.9,0.91,3.990,110.9 -26.1,0.91,3.690,133.4,25.8,0.91,3.680,133.0 -26.9,0.91,4.030,114.0,26.6,0.91,4.080,114.4 -27.5,0.91,4.470,135.0,27.3,0.91,4.500,135.2 -27.7,0.91,5.050,131.4,27.5,0.91,5.120,131.8 -27.6,0.91,5.470,140.5,27.4,0.91,5.500,140.5 -27.1,0.91,7.220,128.9,27.0,0.91,7.310,128.9 -26.6,0.91,8.800,133.6,26.4,0.91,9.070,133.6 -24.8,0.91,9.620,124.0,24.8,0.91,10.340,124.0 -23.5,0.91,10.680,124.9,23.6,0.91,11.540,124.8 -23.1,0.91,10.890,134.0,23.1,0.91,11.640,133.9 -22.4,0.91,10.840,139.8,22.5,0.91,11.630,139.7 -21.8,0.91,10.500,145.7,21.8,0.91,11.220,145.6 -20.9,0.91,11.610,151.4,20.9,0.91,12.400,151.0 -20.1,0.91,10.980,157.4,20.1,0.91,11.760,157.0 -19.8,0.91,11.680,167.2,19.8,0.91,12.290,166.9 -19.7,0.91,11.470,168.5,19.6,0.91,12.080,168.3 -19.5,0.91,12.460,172.0,19.5,0.91,12.970,172.1 -19.6,0.91,11.830,175.6,19.5,0.91,12.720,175.1 -20.9,0.91,11.730,178.1,20.7,0.91,11.910,178.2 -22.4,0.91,11.600,178.7,22.2,0.91,11.740,178.8 -23.9,0.91,12.460,183.3,23.7,0.91,12.600,183.3 -25.5,0.91,9.660,191.3,25.2,0.91,9.800,191.4 -26.9,0.91,8.990,191.9,26.7,0.91,9.120,192.0 -28.3,0.91,8.380,194.4,28.0,0.91,8.500,194.5 -29.4,0.90,7.620,194.4,29.1,0.90,7.710,194.5 -29.9,0.90,8.050,187.9,29.7,0.90,8.090,188.2 -30.4,0.90,9.000,182.6,30.2,0.90,9.010,182.9 -30.9,0.90,8.640,172.3,30.7,0.90,8.740,173.0 -31.1,0.90,9.560,188.8,30.9,0.90,9.650,188.5 -30.8,0.90,9.890,176.2,30.6,0.90,10.120,176.3 -29.9,0.90,10.410,172.8,29.8,0.90,10.910,173.1 -29.2,0.90,11.210,181.2,29.2,0.90,11.890,182.4 -28.2,0.90,11.970,186.7,28.1,0.90,12.660,187.4 -27.4,0.90,14.970,191.5,27.3,0.90,15.640,191.6 -26.5,0.90,15.810,188.7,26.4,0.90,16.510,189.1 -25.7,0.90,15.400,184.0,25.7,0.90,16.090,184.2 -24.3,0.90,4.960,153.8,24.2,0.90,5.790,160.3 -23.8,0.90,11.120,171.1,23.8,0.90,11.840,173.3 -19.9,0.90,8.130,114.3,20.0,0.90,8.980,116.3 -21.5,0.90,8.250,146.7,21.5,0.90,9.040,149.4 -20.0,0.90,5.430,88.6,19.9,0.90,5.530,96.4 -20.5,0.90,4.880,134.4,20.6,0.90,6.030,147.2 -22.3,0.90,6.380,166.6,22.2,0.90,6.470,167.5 -24.2,0.90,9.630,185.9,24.0,0.90,9.750,186.1 -25.7,0.90,11.070,184.8,25.5,0.90,11.180,185.0 -27.9,0.90,11.700,189.4,27.6,0.90,11.830,189.6 -29.7,0.90,11.830,183.2,29.5,0.90,11.970,183.4 -31.2,0.90,12.070,182.1,30.9,0.90,12.170,182.3 -32.7,0.90,10.190,187.4,32.5,0.90,10.350,187.9 -33.5,0.90,9.910,190.8,33.3,0.90,10.020,191.0 -34.4,0.90,8.730,193.8,34.1,0.90,8.860,194.0 -34.6,0.90,8.850,186.2,34.3,0.90,8.990,186.3 -34.2,0.90,12.610,179.0,34.0,0.90,12.690,179.2 -33.7,0.90,15.970,184.7,33.5,0.90,16.330,184.9 -33.1,0.90,11.720,189.2,32.9,0.90,11.990,188.4 -31.1,0.90,15.770,186.4,31.0,0.90,16.360,186.4 -29.3,0.90,15.730,189.7,29.2,0.90,16.510,189.9 -28.1,0.90,16.880,188.2,28.0,0.90,17.610,188.5 -26.7,0.90,8.180,166.7,26.7,0.90,8.850,170.0 -25.7,0.90,10.500,170.4,25.7,0.90,11.300,172.1 -24.6,0.90,13.730,172.6,24.5,0.90,14.260,173.8 -24.0,0.90,14.640,184.3,24.0,0.90,15.210,185.3 -23.3,0.90,14.600,187.0,23.4,0.90,15.250,188.3 -22.9,0.90,15.440,183.9,22.9,0.90,16.060,185.1 -22.2,0.90,16.000,190.0,22.2,0.90,16.660,191.0 -21.9,0.90,9.950,196.3,21.7,0.90,10.870,196.4 -23.0,0.90,8.340,198.1,22.8,0.90,8.460,198.4 -24.3,0.90,5.370,180.6,24.1,0.90,5.490,180.9 -25.6,0.90,5.100,175.6,25.4,0.90,5.150,175.9 -27.2,0.90,5.780,173.8,27.0,0.90,5.860,174.3 -28.5,0.90,6.280,167.4,28.3,0.90,6.360,167.6 -29.5,0.90,3.970,138.1,29.3,0.90,3.980,138.7 -30.5,0.90,4.740,137.7,30.2,0.90,4.780,138.3 -31.3,0.90,4.570,127.0,31.1,0.90,4.620,127.4 -32.0,0.90,5.700,93.5,31.7,0.90,5.740,94.1 -32.0,0.90,8.530,118.0,31.8,0.90,8.670,118.5 -20.9,0.90,20.150,232.1,20.8,0.90,20.680,231.8 -20.9,0.90,11.150,191.1,20.9,0.90,10.250,191.1 -22.4,0.90,14.660,132.2,22.5,0.90,15.310,132.0 -25.6,0.90,6.280,101.1,25.8,0.90,6.520,99.2 -19.3,0.91,11.120,345.6,19.1,0.91,11.430,345.4 -18.3,0.91,6.790,27.4,18.2,0.91,7.000,26.4 -17.7,0.90,4.390,67.0,17.9,0.90,4.700,62.7 -20.9,0.90,3.630,57.4,21.6,0.90,3.730,49.2 -17.9,0.91,4.810,332.0,17.9,0.91,4.660,335.7 -18.7,0.91,6.370,302.5,18.6,0.91,6.670,306.3 -18.5,0.91,6.790,22.5,18.3,0.91,7.120,21.8 -17.7,0.91,5.710,32.6,17.5,0.91,5.820,32.5 -17.4,0.91,7.570,2.1,17.3,0.91,8.130,2.8 -16.8,0.91,5.340,35.1,16.7,0.91,5.390,35.3 -17.1,0.91,6.610,26.0,16.9,0.91,6.630,26.2 -17.5,0.91,6.930,22.6,17.3,0.91,6.990,22.7 -18.2,0.91,5.390,23.5,18.0,0.91,5.430,24.1 -20.4,0.91,6.110,30.6,20.2,0.91,6.160,30.6 -21.7,0.91,6.610,18.2,21.5,0.91,6.660,18.3 -22.7,0.91,6.310,23.6,22.4,0.91,6.350,23.8 -22.9,0.91,7.970,359.8,22.7,0.91,8.020,0.3 -23.7,0.91,5.250,11.5,23.4,0.91,5.280,11.4 -23.9,0.91,8.530,23.3,23.7,0.91,8.590,23.4 -23.8,0.91,7.020,20.3,23.6,0.91,7.080,20.2 -23.5,0.91,8.190,47.9,23.3,0.91,8.280,48.0 -23.1,0.91,8.350,39.1,22.9,0.91,8.500,39.5 -22.3,0.91,7.680,45.1,22.1,0.91,8.020,45.7 -21.5,0.91,7.740,44.4,21.3,0.91,8.130,45.2 -20.8,0.91,8.340,61.4,20.6,0.91,8.810,61.7 -20.0,0.91,7.540,66.8,19.8,0.91,8.130,67.5 -19.2,0.91,7.430,75.9,19.1,0.91,8.070,77.2 -18.8,0.91,7.550,85.4,18.6,0.91,8.000,85.8 -18.2,0.91,8.930,77.5,18.2,0.91,9.450,77.7 -17.7,0.91,8.950,78.0,17.7,0.91,9.540,78.5 -17.7,0.91,7.850,79.0,17.7,0.91,8.160,78.6 -17.7,0.91,7.140,100.4,17.8,0.91,7.230,98.1 -16.9,0.91,5.180,85.8,16.9,0.91,5.670,85.8 -17.1,0.91,3.900,136.1,17.0,0.91,4.150,134.1 -18.4,0.91,4.160,150.6,18.2,0.91,4.190,150.3 -19.7,0.91,3.420,135.7,19.5,0.91,3.460,135.5 -21.0,0.91,3.920,135.9,20.8,0.91,3.950,135.8 -22.1,0.91,4.010,132.6,21.9,0.91,4.040,132.7 -23.4,0.91,3.550,125.7,23.2,0.91,3.570,125.9 -24.6,0.91,3.920,120.9,24.4,0.91,3.970,120.7 -25.5,0.91,3.720,119.0,25.3,0.91,3.750,119.1 -26.1,0.91,4.110,118.3,25.9,0.91,4.130,118.3 -26.5,0.91,4.790,122.3,26.3,0.91,4.830,122.6 -26.7,0.91,6.370,137.9,26.5,0.91,6.440,137.9 -26.6,0.91,6.970,137.6,26.4,0.91,7.040,137.6 -25.9,0.91,8.090,134.9,25.7,0.91,8.350,134.7 -24.7,0.90,9.320,131.8,24.6,0.90,9.790,132.2 -23.6,0.91,10.580,133.3,23.5,0.91,11.270,132.9 -22.5,0.91,11.060,136.8,22.5,0.91,11.840,136.5 -21.9,0.91,11.770,142.6,21.9,0.91,12.530,142.7 -21.3,0.91,12.580,157.0,21.4,0.91,13.490,156.3 -21.0,0.91,13.350,162.4,21.1,0.91,14.070,162.2 -20.8,0.91,14.210,169.2,20.8,0.91,14.880,169.4 -20.4,0.91,11.970,175.7,20.4,0.91,12.440,176.3 -19.8,0.91,12.140,178.2,19.8,0.91,12.590,178.6 -19.6,0.91,12.160,178.5,19.6,0.91,12.610,178.9 -18.8,0.90,13.230,179.5,18.9,0.90,13.690,179.9 -18.4,0.90,11.510,183.4,18.3,0.90,12.030,183.5 -19.4,0.91,11.020,184.2,19.3,0.91,11.150,184.2 -20.7,0.91,9.460,182.0,20.5,0.91,9.570,182.0 -22.4,0.91,8.620,187.8,22.2,0.91,8.720,187.9 -23.7,0.90,8.600,190.4,23.5,0.90,8.720,190.5 -25.1,0.90,8.600,187.0,24.9,0.90,8.720,187.1 -26.1,0.90,8.540,183.7,25.8,0.90,8.630,183.8 -26.9,0.90,8.510,186.6,26.7,0.90,8.600,186.1 -28.1,0.90,8.130,183.1,27.8,0.90,8.230,183.1 -28.5,0.90,9.380,171.5,28.3,0.90,9.490,171.9 -28.8,0.90,8.950,170.5,28.6,0.90,9.070,170.9 -29.0,0.90,9.570,179.4,28.8,0.90,9.650,179.4 -28.7,0.90,10.350,162.5,28.6,0.90,10.590,162.8 -27.6,0.90,12.060,160.7,27.4,0.90,12.580,161.1 -26.7,0.90,12.780,160.7,26.6,0.90,13.340,161.0 -26.0,0.90,11.650,174.3,25.9,0.90,12.100,174.5 -25.2,0.90,11.770,177.8,25.1,0.90,12.420,177.9 -24.1,0.90,6.290,144.5,23.9,0.90,6.830,147.6 -15.6,0.90,6.150,337.5,15.6,0.90,6.840,334.4 -17.1,0.91,4.360,239.8,16.9,0.91,4.380,240.4 -17.7,0.90,4.520,204.3,18.0,0.90,4.610,208.8 -19.8,0.91,5.290,304.7,20.2,0.91,5.780,309.0 -18.2,0.91,4.160,96.9,18.3,0.91,3.220,87.6 -18.3,0.91,5.810,195.8,18.7,0.91,5.340,200.0 -20.2,0.91,4.620,202.6,20.3,0.91,4.610,203.5 -20.1,0.91,2.280,223.5,20.0,0.91,2.260,224.0 -22.0,0.91,1.440,107.3,21.8,0.91,1.450,108.1 -23.7,0.91,2.690,116.1,23.5,0.91,2.700,116.0 -25.0,0.91,2.910,108.6,24.8,0.91,2.930,108.1 -26.2,0.91,3.380,66.8,26.0,0.91,3.380,67.2 -27.0,0.91,4.180,76.0,26.8,0.91,4.180,76.1 -27.8,0.91,4.560,88.8,27.6,0.91,4.600,88.8 -28.4,0.91,4.470,79.0,28.2,0.91,4.500,79.5 -28.8,0.91,4.510,78.2,28.6,0.91,4.540,79.7 -28.9,0.91,5.010,66.2,28.8,0.91,5.020,67.4 -29.0,0.91,4.580,102.1,28.8,0.91,4.580,102.0 -28.5,0.91,5.040,103.2,28.3,0.91,5.000,103.4 -27.9,0.91,6.050,97.1,27.8,0.91,5.950,97.8 -27.3,0.91,8.860,128.2,27.2,0.91,9.030,127.6 -26.7,0.91,8.180,136.4,26.5,0.91,7.840,137.1 -25.8,0.91,8.450,152.6,25.7,0.91,8.270,154.3 -25.5,0.91,10.130,161.8,25.4,0.91,10.200,163.0 -24.6,0.91,10.520,161.1,24.6,0.91,10.760,161.5 -23.2,0.91,10.760,194.8,23.1,0.91,11.300,195.8 -22.9,0.91,12.240,190.3,23.0,0.91,12.790,189.8 -22.2,0.91,12.860,195.2,22.3,0.91,13.500,194.9 -21.1,0.91,12.990,202.4,21.2,0.91,13.730,202.9 -20.9,0.91,12.370,206.4,21.1,0.91,12.940,205.8 -20.6,0.91,9.880,214.9,20.5,0.91,10.950,214.2 -21.9,0.91,8.830,210.0,21.7,0.91,8.960,209.8 -23.2,0.91,9.390,207.3,23.0,0.91,9.500,207.3 -25.0,0.91,8.140,209.7,24.8,0.91,8.230,209.7 -26.7,0.91,7.310,202.9,26.4,0.91,7.400,202.9 -27.9,0.91,7.970,194.2,27.7,0.91,8.060,194.2 -29.0,0.91,7.950,188.8,28.8,0.91,8.040,188.9 -30.0,0.91,6.930,185.7,29.8,0.91,7.010,185.3 -30.7,0.91,6.530,175.7,30.5,0.91,6.590,175.9 -31.1,0.91,6.630,177.3,30.9,0.91,6.730,176.1 -31.1,0.91,6.280,175.6,30.9,0.91,6.370,175.1 -31.2,0.91,7.380,159.9,30.9,0.91,7.470,159.9 -30.6,0.91,8.310,148.3,30.5,0.91,8.660,148.9 -30.1,0.91,10.240,153.7,30.0,0.91,10.590,152.8 -29.2,0.91,11.880,150.3,29.2,0.91,12.420,151.1 -28.1,0.91,12.660,157.0,28.1,0.91,13.430,157.5 -27.3,0.91,13.300,166.4,27.2,0.91,14.330,167.2 -26.5,0.91,12.720,174.8,26.5,0.91,13.450,176.5 -25.8,0.91,12.360,183.8,25.9,0.91,13.110,185.9 -25.3,0.91,11.280,192.7,25.3,0.91,11.910,195.0 -24.6,0.91,11.090,196.1,24.6,0.91,11.900,197.8 -23.9,0.91,11.040,194.6,23.8,0.91,11.750,196.2 -23.1,0.91,11.020,199.0,23.0,0.91,11.740,201.9 -22.3,0.91,11.560,196.3,22.3,0.91,12.270,198.6 -21.9,0.91,8.150,204.3,21.7,0.91,8.530,205.0 -22.5,0.91,8.790,196.6,22.3,0.91,8.870,196.8 -23.6,0.91,8.320,200.1,23.4,0.91,8.420,200.2 -25.0,0.91,7.250,197.2,24.8,0.91,7.330,197.3 -26.1,0.91,8.470,189.8,25.9,0.91,8.570,189.9 -27.3,0.91,7.730,186.3,27.1,0.91,7.820,186.3 -28.3,0.91,6.930,185.8,28.1,0.91,7.010,185.6 -29.1,0.91,8.490,189.9,28.9,0.91,8.550,188.8 -29.7,0.91,7.130,183.2,29.5,0.91,7.170,183.5 -30.2,0.91,8.310,172.0,30.0,0.91,8.360,172.2 -30.4,0.91,8.250,170.0,30.3,0.91,8.310,170.1 -30.6,0.91,8.810,177.6,30.4,0.91,8.850,177.7 -30.3,0.91,8.800,171.5,30.1,0.91,9.010,171.6 -29.7,0.91,10.720,170.9,29.6,0.91,11.160,171.2 -28.7,0.91,11.540,177.0,28.7,0.91,12.400,178.0 -27.5,0.91,12.030,182.5,27.4,0.91,12.870,183.0 -26.4,0.91,11.840,186.4,26.4,0.91,12.640,186.5 -25.6,0.91,12.380,189.0,25.5,0.91,13.210,189.2 -24.9,0.91,13.170,192.7,24.8,0.91,14.040,192.9 -24.1,0.91,13.440,192.4,24.0,0.91,14.270,192.6 -23.4,0.91,13.680,194.0,23.4,0.91,14.590,194.3 -22.4,0.91,12.430,195.5,22.4,0.91,13.280,195.9 -21.5,0.91,12.540,195.9,21.4,0.91,13.380,196.5 -20.7,0.91,12.460,197.0,20.6,0.91,13.250,197.6 -20.6,0.91,11.670,199.1,20.5,0.91,11.930,199.4 -21.3,0.91,10.310,200.8,21.1,0.91,10.430,201.0 -22.6,0.91,9.980,197.8,22.4,0.91,10.080,197.9 -24.1,0.91,8.930,195.6,23.9,0.91,9.030,195.7 -25.6,0.91,7.850,191.9,25.4,0.91,7.940,192.0 -26.9,0.91,7.840,185.3,26.7,0.91,7.920,185.3 -28.2,0.91,7.320,184.6,28.0,0.91,7.390,184.2 -29.2,0.91,7.530,172.5,28.9,0.91,7.620,172.6 -29.9,0.91,7.030,176.2,29.6,0.91,7.120,175.5 -30.3,0.91,8.650,169.1,30.0,0.91,8.730,169.3 -30.5,0.91,9.240,167.7,30.3,0.91,9.310,167.6 -30.6,0.91,7.890,173.2,30.4,0.91,8.030,172.9 -30.2,0.91,9.540,168.6,30.0,0.91,9.710,168.7 -29.4,0.91,10.280,163.8,29.4,0.91,10.760,164.7 -28.4,0.91,12.480,162.7,28.4,0.91,13.140,163.3 -27.0,0.91,12.320,169.4,27.1,0.91,13.180,170.1 -26.2,0.91,13.450,179.6,26.2,0.91,14.280,180.2 -25.5,0.91,12.680,184.8,25.6,0.91,13.520,185.4 -24.9,0.91,13.310,188.1,25.0,0.91,14.260,188.8 -24.5,0.91,12.200,189.3,24.5,0.91,12.890,189.7 -23.8,0.91,12.390,188.5,23.8,0.91,12.990,189.2 -22.7,0.91,12.660,193.4,22.5,0.91,13.580,194.6 -21.8,0.91,11.600,198.3,21.7,0.91,12.380,199.5 -21.2,0.91,10.620,199.4,21.2,0.91,11.260,200.3 -21.0,0.91,8.660,198.7,20.9,0.91,9.350,199.0 -21.9,0.91,8.100,196.6,21.7,0.91,8.180,196.8 -23.2,0.91,7.310,199.8,23.0,0.91,7.370,200.0 -24.9,0.91,5.110,185.1,24.7,0.91,5.160,185.2 -26.2,0.91,5.710,180.6,26.0,0.91,5.760,180.5 -27.3,0.91,5.890,163.4,27.1,0.91,5.920,163.6 -28.5,0.91,5.710,163.4,28.2,0.91,5.780,163.3 -29.4,0.91,6.390,164.3,29.2,0.91,6.480,164.1 -30.0,0.91,6.080,153.2,29.8,0.91,6.170,153.2 -30.5,0.91,7.420,151.3,30.3,0.91,7.520,151.3 -30.5,0.91,7.490,153.4,30.3,0.91,7.580,153.4 -30.5,0.91,7.640,154.9,30.3,0.91,7.770,154.8 -30.1,0.91,8.700,151.1,29.9,0.91,8.990,151.4 -29.7,0.91,8.880,150.6,29.5,0.91,9.250,151.7 -28.7,0.91,11.340,157.5,28.7,0.91,12.000,157.7 -27.6,0.91,12.010,157.1,27.6,0.91,12.900,157.3 -27.2,0.91,12.350,172.2,27.1,0.91,12.720,173.4 -26.2,0.91,12.640,179.6,26.2,0.91,13.170,180.8 -25.4,0.91,10.950,184.5,25.4,0.91,11.530,185.2 -24.8,0.91,11.190,187.1,24.8,0.91,11.610,188.1 -24.2,0.91,11.890,186.8,24.1,0.91,12.290,187.1 -23.3,0.91,10.480,178.8,23.2,0.91,11.030,179.4 -22.5,0.91,10.850,183.8,22.4,0.91,11.330,185.4 -21.9,0.91,10.490,187.3,21.9,0.91,10.900,188.6 -21.3,0.91,7.730,189.5,21.1,0.91,7.980,189.6 -22.1,0.91,8.000,183.7,21.9,0.91,8.080,183.6 -23.1,0.91,7.550,183.1,22.9,0.91,7.620,183.0 -24.2,0.91,6.710,177.8,24.0,0.91,6.800,177.9 -25.4,0.91,7.610,174.4,25.2,0.91,7.690,174.5 -26.5,0.91,7.560,167.5,26.3,0.91,7.670,167.5 -27.8,0.91,8.180,163.8,27.6,0.91,8.300,163.9 -28.7,0.91,9.350,168.5,28.4,0.91,9.470,168.4 -28.9,0.91,11.170,173.8,28.7,0.91,11.270,173.7 -25.9,0.91,7.960,245.3,25.7,0.91,8.030,244.7 -25.7,0.91,7.270,266.1,25.6,0.91,7.190,265.9 -25.1,0.91,1.560,311.2,25.2,0.91,1.190,300.9 -24.7,0.91,3.790,55.4,24.5,0.91,3.720,55.6 -24.1,0.91,1.160,97.9,24.3,0.91,1.210,116.1 -26.5,0.91,6.290,145.4,26.7,0.91,7.110,151.9 -26.1,0.91,5.640,143.2,26.3,0.91,6.280,158.2 -26.6,0.91,8.290,162.3,26.4,0.91,8.430,160.5 -26.3,0.91,11.870,165.7,26.2,0.91,12.030,166.2 -25.3,0.91,10.360,174.8,25.3,0.91,11.100,175.8 -24.8,0.91,11.890,175.9,24.8,0.91,12.360,176.2 -24.2,0.91,11.170,179.7,24.1,0.91,11.610,179.6 -23.5,0.91,11.130,181.7,23.5,0.91,11.820,183.3 -23.1,0.91,10.530,193.5,23.1,0.91,11.050,194.3 -22.7,0.91,8.120,201.4,22.6,0.91,8.280,202.5 -22.1,0.91,7.220,192.0,22.2,0.91,7.680,192.3 -22.7,0.91,6.720,189.0,22.5,0.91,6.780,189.2 -23.3,0.91,7.150,198.8,23.1,0.91,7.220,198.8 -24.1,0.91,7.410,190.0,23.9,0.91,7.500,190.0 -23.7,0.91,7.820,189.4,23.5,0.91,7.900,189.3 -23.8,0.91,7.640,189.7,23.6,0.91,7.700,189.9 -24.9,0.91,8.310,182.3,24.7,0.91,8.410,182.6 -26.0,0.91,7.220,176.4,25.7,0.91,7.330,176.6 -27.0,0.91,7.420,185.5,26.8,0.91,7.510,185.2 -28.1,0.91,7.280,167.0,27.9,0.91,7.370,167.7 -28.7,0.91,7.420,183.8,28.4,0.91,7.520,183.5 -28.5,0.91,8.400,187.6,28.3,0.91,8.510,187.2 -28.2,0.91,9.450,181.7,28.0,0.91,9.520,181.7 -27.5,0.91,9.130,191.3,27.4,0.91,9.570,191.2 -27.1,0.91,8.390,185.8,27.0,0.91,8.860,185.5 -26.8,0.91,8.790,182.2,26.7,0.91,9.220,182.7 -26.5,0.91,8.360,171.2,26.5,0.91,8.710,172.8 -26.1,0.91,8.810,184.3,25.9,0.91,8.980,185.4 -25.3,0.91,8.640,174.0,25.3,0.91,8.920,176.4 -25.3,0.91,10.190,190.5,25.2,0.91,10.450,191.2 -24.4,0.91,10.020,195.3,24.3,0.91,10.550,196.4 -23.9,0.91,10.810,199.3,23.8,0.91,11.500,200.3 -22.8,0.91,11.200,196.4,22.7,0.91,11.930,197.8 -22.2,0.91,11.350,199.7,22.2,0.91,12.120,200.3 -22.1,0.91,9.250,200.3,22.0,0.91,9.600,200.6 -23.0,0.91,9.020,198.2,22.8,0.91,9.110,198.4 -24.2,0.91,9.010,201.7,24.0,0.91,9.090,201.8 -25.8,0.91,7.990,200.1,25.6,0.91,8.060,200.2 -27.3,0.91,5.480,193.9,27.1,0.91,5.530,194.0 -28.4,0.91,4.660,184.3,28.2,0.91,4.690,184.4 -29.3,0.91,4.900,189.7,29.0,0.91,4.920,189.5 -30.1,0.91,6.070,165.5,29.9,0.91,6.130,166.2 -30.8,0.91,5.520,182.2,30.6,0.91,5.550,182.0 -31.5,0.91,6.930,172.5,31.2,0.91,7.010,172.9 -31.8,0.91,6.720,172.0,31.6,0.91,6.840,171.6 -31.6,0.90,8.610,184.3,31.4,0.90,8.700,184.3 -31.7,0.90,7.710,183.8,31.5,0.90,7.830,183.7 -31.3,0.91,9.080,185.5,31.1,0.91,9.400,186.0 -20.8,0.91,18.330,302.1,20.6,0.91,18.760,302.4 -21.0,0.91,15.140,283.8,20.9,0.91,15.810,284.0 -25.3,0.91,8.030,306.4,25.9,0.91,8.280,305.7 -28.0,0.91,9.630,201.0,27.9,0.91,9.950,201.3 -26.3,0.91,3.370,220.8,26.1,0.91,3.660,222.3 -24.6,0.91,7.630,217.8,24.6,0.91,7.840,218.4 -23.4,0.91,8.110,200.1,23.5,0.91,8.530,202.0 -23.0,0.91,9.940,198.7,23.2,0.91,10.400,199.3 -21.9,0.91,11.900,192.1,22.0,0.91,12.340,192.3 -22.0,0.91,11.320,195.3,22.0,0.91,11.760,196.1 -22.2,0.91,6.010,197.7,22.1,0.91,6.970,199.1 -23.6,0.91,7.220,207.7,23.4,0.91,7.300,207.9 -24.9,0.91,7.310,202.1,24.7,0.91,7.370,202.4 -26.2,0.91,7.070,196.3,25.9,0.91,7.130,196.5 -27.7,0.91,5.550,198.6,27.5,0.91,5.600,198.7 -29.0,0.91,5.090,184.3,28.8,0.91,5.130,184.4 -30.1,0.91,4.520,173.9,29.9,0.91,4.530,174.2 -31.2,0.91,4.260,183.2,31.0,0.91,4.300,183.0 -31.5,0.91,5.560,171.9,31.3,0.91,5.560,172.2 -32.2,0.90,4.830,190.4,32.0,0.90,4.830,189.2 -32.5,0.90,6.600,163.4,32.2,0.90,6.670,163.8 -32.4,0.90,8.360,157.6,32.2,0.90,8.480,157.7 -32.3,0.90,8.980,161.2,32.1,0.90,9.260,161.3 -25.0,0.90,12.130,28.6,24.9,0.90,12.430,29.9 -18.6,0.91,8.780,333.3,18.4,0.91,9.010,333.4 -18.3,0.91,6.760,51.1,18.3,0.91,7.410,49.1 -19.0,0.91,9.050,132.0,18.8,0.91,9.310,132.0 -19.2,0.91,5.560,101.8,19.0,0.91,6.040,103.2 -20.8,0.91,3.510,132.5,21.1,0.91,3.780,129.5 -20.1,0.91,3.490,41.7,19.9,0.91,3.540,43.0 -19.7,0.91,2.240,22.9,19.6,0.91,2.350,24.8 -19.6,0.91,0.850,359.4,19.4,0.91,1.020,10.1 -19.7,0.91,2.120,42.0,19.5,0.91,2.150,45.3 -19.8,0.91,3.610,50.3,19.8,0.91,3.930,50.0 -19.4,0.91,3.920,75.6,19.2,0.91,4.010,75.7 -20.0,0.91,2.470,69.4,19.8,0.91,2.490,71.0 -21.6,0.91,1.430,80.3,21.4,0.91,1.440,81.7 -23.2,0.91,2.420,54.9,23.0,0.91,2.400,55.8 -24.2,0.91,2.110,47.4,24.0,0.91,2.090,48.4 -25.3,0.91,2.520,47.6,25.1,0.91,2.500,47.6 -26.3,0.91,2.530,49.1,26.1,0.91,2.500,49.4 -27.1,0.91,2.850,53.6,26.8,0.91,2.830,54.1 -27.7,0.91,2.470,52.2,27.5,0.91,2.450,52.5 -28.3,0.91,2.150,56.5,28.1,0.91,2.110,56.9 -28.5,0.91,3.000,55.8,28.3,0.91,2.970,56.7 -28.6,0.91,3.140,76.8,28.4,0.91,3.140,76.8 -28.3,0.91,4.090,79.1,28.1,0.91,4.140,79.7 -28.0,0.91,5.260,100.1,27.9,0.91,5.170,101.3 -27.0,0.91,8.530,94.7,26.9,0.91,9.040,94.4 -26.2,0.91,8.850,104.1,26.1,0.91,9.530,104.8 -25.1,0.91,8.890,122.5,24.9,0.91,9.500,123.8 -24.8,0.91,9.450,141.8,24.8,0.91,10.140,142.0 -23.9,0.91,10.860,157.2,23.8,0.91,11.600,157.0 -23.3,0.91,8.870,155.5,23.3,0.91,9.620,156.3 -22.6,0.91,7.240,26.1,22.7,0.91,7.110,23.7 -19.4,0.91,8.100,69.5,19.2,0.91,8.590,70.4 -19.8,0.91,8.450,113.4,19.7,0.91,8.940,113.2 -20.5,0.91,11.530,126.8,20.4,0.91,12.000,127.0 -21.5,0.91,10.220,149.0,21.4,0.91,10.550,149.0 -22.1,0.91,9.880,173.0,21.9,0.91,9.980,173.2 -23.6,0.91,9.650,185.5,23.4,0.91,9.730,185.5 -25.3,0.91,7.540,188.9,25.1,0.91,7.610,189.0 -26.8,0.91,2.380,228.9,26.6,0.91,2.410,229.0 -18.8,0.91,11.900,13.7,18.6,0.91,12.090,13.9 -20.6,0.91,9.790,64.3,20.4,0.91,9.820,64.3 -23.8,0.91,7.360,84.5,23.6,0.91,7.370,84.7 -26.3,0.91,7.250,105.5,26.1,0.91,7.330,105.9 -27.8,0.91,7.740,125.6,27.6,0.91,7.840,126.0 -29.2,0.91,8.640,145.9,29.0,0.91,8.770,146.1 -29.7,0.90,9.550,148.3,29.5,0.90,9.710,148.5 -29.2,0.90,10.180,148.1,29.1,0.90,10.610,148.2 -29.0,0.90,11.120,147.7,29.0,0.90,11.980,147.1 -28.0,0.91,11.790,142.7,28.0,0.91,12.590,143.3 -27.8,0.91,14.800,167.0,27.7,0.91,15.640,167.0 -27.0,0.91,14.520,173.9,27.0,0.91,15.350,174.2 -26.6,0.91,15.660,181.1,26.5,0.91,16.460,181.3 -25.9,0.91,5.000,307.1,25.9,0.91,4.410,290.9 -22.7,0.91,2.230,289.9,23.1,0.91,1.860,223.0 -24.6,0.91,7.830,178.5,24.6,0.91,8.480,179.1 -24.1,0.91,12.760,189.5,24.0,0.91,13.280,190.9 -23.1,0.91,15.150,192.1,23.1,0.91,15.860,192.8 -22.3,0.91,15.810,193.3,22.2,0.91,16.520,193.7 -21.9,0.91,15.110,193.4,21.7,0.91,15.590,193.7 -22.5,0.91,12.870,194.4,22.3,0.91,13.050,194.5 -23.6,0.91,12.230,190.1,23.4,0.91,12.380,190.2 -25.2,0.91,11.860,189.2,25.0,0.91,12.010,189.3 -26.8,0.91,10.800,183.7,26.6,0.91,10.940,183.8 -28.3,0.91,10.740,181.9,28.1,0.91,10.900,182.0 -29.6,0.91,10.300,176.9,29.4,0.91,10.440,177.1 -30.5,0.91,9.970,172.3,30.3,0.91,10.120,172.6 -31.3,0.91,10.260,172.0,31.0,0.91,10.400,172.3 -31.4,0.91,12.300,168.6,31.2,0.91,12.450,168.8 -31.6,0.91,11.850,170.0,31.4,0.91,12.020,170.1 -31.4,0.91,11.920,173.6,31.2,0.91,12.150,173.5 -30.8,0.91,12.670,175.7,30.6,0.91,13.070,175.6 -29.6,0.91,12.980,169.3,29.4,0.91,13.760,169.7 -28.4,0.91,12.640,175.9,28.3,0.91,13.400,176.0 -27.8,0.91,12.000,177.6,27.7,0.91,12.720,177.7 -26.8,0.91,12.430,177.6,26.8,0.91,13.280,177.6 -26.2,0.91,13.780,181.0,26.2,0.91,14.600,181.2 -25.2,0.91,12.340,184.7,25.2,0.91,13.410,184.4 -24.3,0.91,14.900,190.2,24.2,0.91,15.630,190.5 -23.5,0.91,13.410,192.0,23.4,0.91,14.130,192.4 -22.8,0.91,12.900,191.1,22.7,0.91,13.570,191.6 -22.1,0.91,13.490,191.5,21.9,0.91,14.140,191.9 -21.4,0.91,14.060,191.5,21.3,0.91,14.730,192.0 -21.3,0.91,12.520,190.5,21.2,0.91,12.810,190.7 -21.9,0.91,11.830,187.0,21.7,0.91,11.970,187.1 -22.9,0.91,11.940,189.5,22.7,0.91,12.090,189.5 -24.4,0.91,10.630,191.6,24.2,0.91,10.760,191.6 -25.9,0.91,10.760,189.8,25.6,0.91,10.910,189.8 -27.0,0.91,10.500,185.9,26.8,0.91,10.650,186.0 -28.3,0.91,11.130,185.4,28.0,0.91,11.240,185.4 -29.5,0.91,9.740,189.2,29.3,0.91,9.870,188.8 -29.9,0.91,12.340,180.5,29.7,0.91,12.400,180.6 -30.6,0.91,11.740,188.3,30.4,0.91,11.860,187.6 -30.8,0.91,11.670,174.2,30.5,0.91,11.820,174.5 -30.7,0.91,12.350,179.7,30.5,0.91,12.410,179.7 -30.3,0.91,10.820,165.2,30.1,0.91,11.160,165.4 -29.4,0.91,11.700,166.2,29.3,0.91,12.470,166.7 -28.5,0.91,12.390,170.2,28.4,0.91,13.320,170.3 -27.4,0.91,13.610,176.2,27.4,0.91,14.410,176.0 -26.4,0.91,13.630,174.5,26.3,0.91,14.440,174.8 -25.8,0.91,14.930,177.8,25.8,0.91,15.790,178.0 -25.3,0.91,13.600,178.8,25.3,0.91,14.720,178.9 -24.2,0.91,14.950,183.1,24.1,0.91,15.770,183.5 -23.2,0.91,16.240,183.6,23.1,0.91,17.020,183.9 -22.3,0.91,15.320,185.7,22.2,0.91,16.040,186.0 -21.4,0.91,15.790,184.8,21.3,0.91,16.470,185.2 -21.0,0.91,15.130,187.6,20.9,0.91,15.730,188.0 -20.8,0.91,14.200,193.1,20.7,0.91,14.500,193.2 -21.6,0.91,13.510,189.2,21.4,0.91,13.710,189.2 -22.8,0.91,12.120,187.4,22.6,0.91,12.290,187.5 -24.5,0.91,12.130,189.2,24.3,0.91,12.300,189.2 -26.1,0.91,11.940,184.0,25.9,0.91,12.100,184.1 -27.4,0.91,11.850,184.0,27.2,0.91,12.020,184.0 -28.8,0.91,10.860,182.7,28.5,0.91,11.030,182.6 -29.8,0.91,11.170,179.2,29.6,0.91,11.340,179.4 -30.4,0.91,11.720,177.5,30.2,0.91,11.810,177.5 -31.0,0.91,11.580,172.3,30.8,0.91,11.740,172.5 -31.2,0.90,13.150,172.2,30.9,0.90,13.290,172.2 -31.1,0.90,13.510,176.6,30.9,0.90,13.590,176.6 -30.7,0.90,11.890,176.5,30.5,0.90,12.450,176.9 -29.4,0.90,13.240,176.7,29.3,0.90,14.090,176.4 -28.5,0.90,14.520,180.0,28.4,0.90,15.270,180.0 -27.7,0.91,14.500,178.9,27.6,0.91,15.320,179.0 -26.7,0.91,15.060,178.8,26.6,0.91,15.810,179.0 -26.1,0.91,12.840,175.5,26.1,0.91,13.690,175.9 -24.9,0.91,17.130,177.6,24.8,0.91,17.850,177.9 -23.7,0.91,18.130,181.3,23.6,0.91,18.860,181.5 -22.9,0.91,16.060,185.5,22.8,0.91,16.710,185.5 -22.4,0.91,16.900,187.6,22.3,0.91,17.520,187.8 -21.9,0.91,16.720,189.0,21.8,0.91,17.300,189.4 -21.3,0.91,17.050,191.4,21.2,0.91,17.610,191.7 -21.4,0.91,15.500,195.0,21.3,0.91,15.850,195.1 -22.0,0.91,15.470,190.5,21.8,0.91,15.650,190.6 -23.3,0.91,15.390,191.0,23.1,0.91,15.550,191.1 -24.8,0.91,15.030,187.3,24.6,0.91,15.210,187.3 -26.4,0.91,11.410,185.2,26.1,0.91,11.590,185.2 -28.1,0.91,10.400,175.1,27.8,0.91,10.540,175.3 -29.5,0.91,10.330,174.9,29.3,0.91,10.470,175.1 -30.4,0.91,11.560,172.0,30.2,0.91,11.750,172.2 -31.2,0.90,10.850,175.0,30.9,0.90,11.020,174.8 -31.3,0.90,12.900,175.8,31.1,0.90,12.990,175.8 -31.4,0.90,12.720,171.7,31.2,0.90,12.930,172.0 -31.4,0.90,11.280,171.4,31.3,0.90,11.450,171.4 -30.8,0.90,10.480,160.2,30.6,0.90,10.890,160.4 -29.7,0.91,11.590,158.2,29.6,0.91,12.680,159.1 -28.6,0.91,13.340,165.0,28.6,0.91,14.210,165.4 -27.4,0.91,14.200,166.6,27.3,0.91,14.970,166.9 -26.4,0.91,14.740,172.5,26.3,0.91,15.490,172.6 -25.8,0.91,14.360,177.4,25.7,0.91,15.030,177.4 -24.6,0.91,16.420,179.7,24.4,0.91,17.100,179.8 -23.6,0.91,14.380,181.3,23.5,0.91,15.060,181.4 -22.7,0.91,14.760,183.6,22.6,0.91,15.430,183.8 -22.1,0.91,14.540,184.2,21.9,0.91,15.180,184.3 -21.3,0.91,12.390,183.1,21.2,0.91,13.040,183.4 -20.6,0.91,14.000,187.2,20.5,0.91,14.630,187.5 -20.6,0.91,12.110,190.0,20.4,0.91,12.380,190.1 -21.3,0.91,10.990,192.7,21.1,0.91,11.140,192.8 -22.5,0.91,10.390,188.0,22.3,0.91,10.520,188.1 -23.9,0.91,11.300,182.8,23.7,0.91,11.440,182.8 -25.5,0.91,11.520,181.8,25.2,0.91,11.680,181.9 -27.1,0.91,11.650,180.4,26.9,0.91,11.800,180.2 -28.6,0.91,10.830,177.3,28.3,0.91,11.010,177.4 -29.3,0.91,11.230,178.8,29.1,0.91,11.270,178.9 -30.1,0.91,10.800,177.4,29.9,0.91,10.830,177.5 -30.6,0.91,11.040,174.2,30.4,0.91,11.090,174.3 -30.8,0.91,11.710,172.5,30.6,0.91,11.790,172.5 -30.9,0.91,10.470,174.1,30.7,0.91,10.640,174.6 -30.5,0.91,11.120,174.9,30.3,0.91,11.390,174.6 -29.6,0.90,11.570,171.6,29.6,0.90,12.230,171.8 -28.9,0.91,12.640,176.6,28.9,0.91,13.410,176.9 -28.2,0.91,12.560,180.2,28.1,0.91,13.340,180.4 -27.3,0.91,13.690,180.4,27.2,0.91,14.520,180.7 -25.8,0.91,13.180,172.2,25.7,0.91,13.790,172.3 -24.8,0.91,17.160,176.0,24.7,0.91,17.850,176.2 -23.8,0.91,16.090,181.8,23.7,0.91,16.690,181.8 -22.9,0.91,16.630,185.9,22.8,0.91,17.290,186.1 -22.2,0.91,16.120,188.7,22.0,0.91,16.730,188.9 -21.5,0.91,17.210,191.3,21.4,0.91,17.820,191.5 -21.0,0.91,17.480,193.6,20.8,0.91,18.110,193.8 -20.9,0.91,16.630,198.6,20.8,0.91,17.000,198.7 -21.6,0.91,16.280,197.4,21.4,0.91,16.460,197.5 -23.1,0.91,16.040,196.7,22.9,0.91,16.210,196.7 -24.8,0.91,14.840,197.4,24.6,0.91,14.990,197.5 -26.8,0.91,13.270,197.7,26.6,0.91,13.430,197.7 -28.7,0.91,11.740,197.0,28.5,0.91,11.880,197.0 -30.2,0.91,10.650,194.5,29.9,0.91,10.780,194.6 -31.4,0.91,10.370,187.5,31.2,0.91,10.490,187.6 -32.4,0.91,9.610,185.8,32.2,0.91,9.720,186.0 -33.0,0.90,9.200,180.6,32.8,0.90,9.320,181.1 -33.4,0.90,9.170,184.2,33.2,0.90,9.310,184.2 -33.4,0.90,9.390,184.1,33.2,0.90,9.540,183.9 -33.1,0.90,10.460,185.1,32.9,0.90,10.680,184.7 -32.0,0.90,12.030,177.5,31.9,0.90,12.680,177.7 -30.9,0.90,13.990,183.0,30.9,0.90,14.740,183.5 -29.9,0.90,14.310,189.4,29.8,0.90,14.990,189.8 -29.0,0.90,16.150,191.4,29.0,0.90,16.930,191.7 -28.2,0.90,16.790,192.5,28.2,0.90,17.540,192.7 -27.6,0.90,16.550,195.8,27.5,0.90,17.310,196.1 -26.6,0.90,16.590,195.6,26.5,0.90,17.340,196.1 -25.5,0.90,16.390,192.5,25.4,0.90,17.080,192.8 -24.3,0.90,16.680,194.0,24.1,0.90,17.350,194.5 -23.5,0.90,16.190,202.6,23.4,0.90,16.890,203.1 -22.9,0.90,16.610,204.2,22.8,0.90,17.320,204.9 -23.1,0.90,15.080,203.7,23.0,0.90,15.590,204.0 -23.7,0.90,14.350,197.7,23.6,0.90,14.480,197.9 -25.4,0.91,13.100,203.3,25.2,0.91,13.190,203.4 -27.4,0.91,12.550,196.1,27.2,0.91,12.630,196.3 -29.1,0.91,11.620,192.5,28.9,0.91,11.720,192.7 -30.7,0.91,10.110,191.3,30.4,0.91,10.200,191.5 -32.2,0.91,8.450,187.1,32.0,0.91,8.530,187.3 -33.4,0.91,7.690,180.5,33.2,0.91,7.760,180.7 -34.3,0.91,6.880,168.7,34.1,0.91,6.940,169.6 -34.8,0.91,7.390,170.6,34.6,0.91,7.430,170.6 -35.3,0.90,7.590,169.1,35.1,0.90,7.690,169.1 -35.3,0.90,8.890,170.6,35.1,0.90,9.020,170.7 -34.7,0.90,9.190,166.6,34.5,0.90,9.570,166.7 -33.8,0.90,11.100,160.1,33.7,0.90,11.550,160.3 -32.8,0.90,12.060,167.2,32.7,0.90,12.750,167.8 -31.6,0.91,13.980,175.6,31.5,0.91,14.740,176.1 -30.3,0.91,13.970,183.9,30.2,0.91,14.700,184.4 -29.3,0.91,14.640,186.9,29.3,0.91,15.390,187.5 -28.4,0.91,14.940,189.6,28.4,0.91,15.680,190.2 -27.6,0.91,15.270,191.6,27.6,0.91,16.060,192.1 -26.6,0.91,15.340,189.2,26.5,0.91,16.040,189.8 -25.1,0.91,15.900,193.9,25.1,0.91,16.570,194.6 -24.1,0.91,15.320,198.2,24.0,0.91,16.050,198.9 -23.2,0.91,13.400,198.0,23.2,0.91,14.120,198.9 -23.2,0.91,10.840,205.3,23.0,0.91,11.160,205.6 -24.1,0.91,9.860,202.7,23.9,0.91,9.960,203.0 -25.7,0.91,8.760,199.2,25.5,0.91,8.840,199.5 -27.7,0.91,6.920,198.2,27.4,0.91,6.980,198.3 -29.2,0.91,6.320,186.7,29.0,0.91,6.370,186.9 -31.0,0.91,5.110,183.2,30.8,0.91,5.140,183.3 -32.6,0.91,4.220,171.3,32.4,0.91,4.260,171.2 -33.7,0.91,4.610,166.0,33.5,0.91,4.650,165.7 -34.4,0.91,5.120,161.6,34.2,0.91,5.170,161.5 -34.9,0.91,5.420,161.6,34.6,0.91,5.480,161.5 -34.9,0.91,6.100,145.7,34.7,0.91,6.130,146.0 -35.0,0.91,5.360,152.6,34.7,0.91,5.450,152.7 -34.6,0.91,6.150,154.0,34.4,0.91,6.380,154.1 -34.0,0.91,7.990,160.7,33.9,0.91,8.060,160.8 -32.9,0.91,10.140,159.1,32.8,0.91,10.700,159.2 -32.1,0.91,11.130,164.8,32.0,0.91,11.470,165.6 -31.4,0.91,12.940,169.7,31.4,0.91,13.500,170.2 -30.5,0.91,12.500,181.6,30.6,0.91,12.980,183.8 -29.5,0.91,11.920,202.9,29.6,0.91,12.330,206.3 -28.8,0.91,12.310,209.8,28.8,0.91,12.880,210.7 -28.0,0.91,12.540,210.6,28.0,0.91,13.330,211.2 -27.3,0.91,11.660,219.1,27.4,0.91,12.230,219.3 -26.9,0.91,11.890,229.2,27.0,0.91,12.380,229.6 -26.4,0.91,10.590,236.8,26.4,0.91,11.080,237.1 -25.6,0.91,9.430,245.5,25.5,0.91,9.740,245.7 -26.9,0.91,6.270,247.3,26.7,0.91,6.340,247.9 -28.5,0.91,5.960,258.1,28.3,0.91,6.000,258.4 -30.0,0.91,5.250,294.6,29.8,0.91,5.290,294.5 -30.9,0.91,5.470,312.0,30.7,0.91,5.520,312.0 -32.3,0.91,3.850,329.2,32.1,0.91,3.890,329.4 -33.5,0.91,3.840,9.1,33.3,0.91,3.870,8.6 -34.5,0.91,3.450,4.5,34.3,0.91,3.500,4.8 -35.4,0.91,5.790,26.8,35.2,0.91,5.820,26.4 -35.9,0.91,5.750,23.1,35.7,0.91,5.820,23.3 -35.8,0.91,7.490,39.4,35.6,0.91,7.560,39.3 -35.4,0.91,7.910,51.6,35.2,0.91,7.980,51.6 -34.9,0.91,7.330,50.4,34.7,0.91,7.550,50.6 -34.1,0.91,7.560,51.7,34.0,0.91,7.780,52.7 -32.1,0.91,8.640,76.5,31.9,0.91,9.590,77.5 -30.8,0.91,9.300,81.8,30.8,0.91,10.310,81.3 -30.4,0.91,9.440,83.2,30.5,0.91,10.050,82.8 -30.2,0.91,9.590,81.9,30.2,0.91,9.830,82.0 -29.5,0.91,9.970,82.5,29.6,0.91,10.630,82.5 -29.1,0.91,9.830,93.9,29.1,0.91,10.140,94.1 -28.3,0.91,10.330,104.4,28.3,0.91,10.810,103.7 -28.4,0.91,9.540,113.8,28.3,0.91,9.160,114.3 -28.0,0.91,11.010,120.1,28.0,0.91,10.970,120.6 -27.8,0.91,9.040,128.5,27.8,0.91,8.450,129.6 -26.8,0.91,7.490,138.9,27.0,0.91,8.020,137.4 -27.0,0.91,3.550,59.1,26.9,0.91,3.540,60.9 -27.6,0.91,8.710,13.0,27.4,0.91,8.730,13.2 -27.8,0.91,6.150,34.3,27.6,0.91,6.200,34.2 -28.9,0.91,4.870,31.3,28.7,0.91,4.900,31.1 -29.8,0.91,3.250,41.9,29.6,0.91,3.260,41.3 -31.0,0.91,1.710,42.0,30.8,0.91,1.710,41.4 -32.0,0.91,1.500,66.0,31.8,0.91,1.480,64.0 -33.2,0.91,1.360,62.9,33.0,0.91,1.370,60.5 -33.6,0.90,1.630,67.8,33.4,0.90,1.600,65.9 -34.1,0.90,1.800,59.9,33.9,0.90,1.820,59.0 -34.0,0.90,2.500,63.1,33.8,0.90,2.480,62.8 -33.8,0.90,3.420,65.3,33.6,0.90,3.400,65.7 -33.5,0.90,4.360,61.0,33.3,0.90,4.180,60.1 -32.5,0.90,7.580,71.7,32.5,0.90,7.860,71.7 -30.0,0.90,10.490,118.9,29.9,0.90,11.020,118.6 -29.2,0.90,9.150,117.2,29.2,0.90,9.900,117.2 -28.4,0.90,8.880,117.0,28.4,0.90,9.660,116.4 -25.9,0.91,15.190,297.2,26.0,0.91,14.780,298.9 -21.3,0.91,7.540,333.2,21.2,0.91,8.020,332.6 -22.0,0.91,3.730,125.9,22.0,0.91,3.390,123.5 -20.7,0.91,9.110,94.3,20.8,0.91,9.420,92.9 -20.8,0.91,5.550,137.6,20.8,0.91,6.090,136.4 -20.8,0.91,1.880,193.6,20.8,0.91,1.970,177.4 -22.0,0.91,0.980,121.5,22.2,0.91,1.480,128.3 -23.6,0.91,1.230,131.7,23.4,0.91,1.240,133.1 -24.7,0.91,3.020,72.9,24.5,0.91,3.020,73.3 -25.5,0.91,3.360,48.3,25.3,0.91,3.360,48.6 -26.4,0.91,3.360,45.4,26.2,0.91,3.360,45.4 -27.5,0.91,3.230,39.7,27.3,0.91,3.240,39.0 -28.6,0.91,3.690,8.9,28.4,0.91,3.690,9.2 -29.6,0.91,4.690,41.6,29.4,0.91,4.730,41.3 -30.1,0.91,5.590,40.1,29.9,0.91,5.620,39.9 -30.4,0.91,6.500,48.1,30.2,0.91,6.550,47.9 -30.4,0.91,5.980,54.8,30.2,0.91,6.020,54.7 -30.3,0.91,6.380,57.7,30.1,0.91,6.430,57.8 -29.9,0.91,6.950,64.5,29.7,0.91,7.080,64.5 -29.1,0.91,8.430,63.0,29.0,0.91,8.700,64.0 -27.8,0.91,8.460,76.3,27.7,0.91,9.090,76.0 -26.4,0.91,7.800,92.3,26.3,0.91,8.570,91.4 -25.8,0.91,10.030,88.5,25.7,0.91,10.460,87.5 -24.6,0.91,7.410,94.4,24.4,0.91,8.380,93.9 -24.1,0.91,8.410,83.1,23.8,0.91,9.340,83.8 -23.1,0.91,6.620,86.1,23.0,0.91,7.640,89.4 -22.6,0.91,6.960,88.9,22.6,0.91,7.770,90.3 -21.9,0.91,5.930,83.8,21.8,0.91,6.690,85.8 -21.2,0.91,5.610,78.1,21.1,0.91,6.280,82.9 -21.1,0.91,6.140,78.2,21.1,0.91,6.540,81.7 -20.5,0.91,4.380,64.3,20.4,0.91,4.910,67.8 -21.1,0.91,4.330,50.7,20.9,0.91,4.380,51.2 -21.9,0.91,4.550,49.3,21.7,0.91,4.590,49.3 -22.7,0.91,5.390,36.1,22.5,0.91,5.450,35.9 -23.7,0.91,6.320,27.3,23.5,0.91,6.390,27.2 -24.4,0.91,6.590,26.4,24.1,0.91,6.650,26.2 -25.0,0.91,7.400,26.0,24.8,0.91,7.480,25.8 -25.4,0.91,8.290,27.8,25.2,0.91,8.340,27.6 -25.9,0.91,7.980,24.3,25.7,0.91,8.090,24.1 -25.9,0.91,8.690,32.5,25.7,0.91,8.770,32.4 -26.0,0.91,8.850,31.8,25.8,0.91,8.950,31.9 -25.9,0.91,7.710,47.2,25.7,0.91,7.800,47.1 -25.4,0.91,7.580,50.8,25.2,0.91,7.710,50.7 -24.8,0.91,8.430,57.5,24.6,0.91,8.880,57.5 -23.8,0.91,7.350,74.8,23.7,0.91,7.990,74.7 -23.0,0.91,6.600,86.0,22.9,0.91,7.300,85.9 -22.2,0.91,5.800,90.7,22.1,0.91,6.700,90.1 -21.9,0.91,6.810,94.6,21.9,0.91,7.730,93.8 -21.4,0.91,6.240,87.9,21.4,0.91,6.860,86.9 -21.1,0.91,5.980,89.0,20.9,0.91,6.110,86.8 -20.4,0.91,4.290,81.9,20.4,0.91,4.660,82.1 -20.0,0.91,4.020,77.4,20.1,0.91,4.430,78.1 -19.7,0.91,3.690,64.2,19.8,0.91,4.120,66.1 -19.4,0.91,3.240,52.4,19.5,0.91,3.620,55.1 -19.2,0.91,3.000,60.1,19.3,0.91,3.380,62.0 -19.9,0.91,2.590,49.3,19.7,0.91,2.620,51.0 -21.3,0.91,3.650,46.1,21.1,0.91,3.690,46.3 -22.2,0.91,4.360,43.4,22.0,0.91,4.390,43.2 -23.1,0.91,4.810,37.4,22.8,0.91,4.850,37.1 -23.9,0.91,5.350,31.3,23.6,0.91,5.390,31.1 -24.5,0.91,5.820,33.7,24.3,0.91,5.870,33.5 -25.4,0.91,5.240,29.2,25.1,0.91,5.280,29.4 -26.0,0.91,5.300,42.2,25.7,0.91,5.360,41.9 -26.0,0.91,4.250,47.9,25.8,0.91,4.280,47.7 -26.1,0.91,4.780,52.0,25.9,0.91,4.770,51.8 -26.1,0.91,4.870,65.8,25.9,0.91,4.880,65.8 -25.9,0.91,4.690,71.5,25.8,0.91,4.760,71.4 -25.4,0.91,5.120,72.2,25.3,0.91,5.320,72.5 -24.6,0.91,8.810,101.7,24.5,0.91,9.050,102.5 -24.0,0.91,9.820,108.5,23.9,0.91,10.140,107.6 -22.8,0.91,10.320,119.9,22.7,0.91,11.100,120.1 -22.8,0.91,10.870,123.9,22.9,0.91,11.110,123.6 -22.4,0.91,10.860,133.1,22.5,0.91,10.970,133.0 -22.7,0.91,10.170,135.2,22.8,0.91,10.020,135.7 -22.4,0.91,10.090,140.3,22.5,0.91,9.950,140.9 -22.3,0.91,9.710,141.1,22.5,0.91,9.510,142.1 -22.3,0.91,9.700,146.0,22.4,0.91,9.580,146.4 -22.2,0.91,9.220,149.2,22.3,0.91,9.160,148.7 -20.2,0.91,8.670,165.2,20.4,0.91,9.410,163.5 -21.6,0.91,6.660,171.0,21.4,0.91,6.870,170.5 -23.4,0.91,6.480,162.8,23.2,0.91,6.540,162.6 -24.6,0.91,5.150,158.2,24.4,0.91,5.180,158.1 -25.4,0.91,3.560,140.5,25.2,0.91,3.580,140.4 -26.0,0.91,2.610,125.9,25.8,0.91,2.620,125.0 -26.5,0.91,2.860,64.5,26.3,0.91,2.840,64.1 -27.3,0.91,4.500,51.7,27.1,0.91,4.480,52.6 -27.6,0.91,5.160,137.6,27.4,0.91,5.120,137.0 -27.8,0.91,3.680,65.7,27.6,0.91,3.670,66.4 -27.9,0.91,3.670,102.8,27.7,0.91,3.680,103.2 -27.9,0.91,4.490,109.3,27.7,0.91,4.530,110.3 -27.6,0.91,4.700,113.9,27.4,0.91,4.810,114.9 -26.7,0.91,7.720,120.1,26.6,0.91,7.990,120.5 -25.6,0.91,10.420,123.6,25.5,0.91,11.020,123.4 -25.2,0.91,11.000,124.9,25.2,0.91,11.570,124.8 -24.6,0.91,11.360,132.8,24.7,0.91,12.040,132.3 -24.3,0.91,12.240,134.0,24.4,0.91,12.950,133.7 -23.9,0.91,11.960,143.0,24.0,0.91,12.590,143.2 -23.6,0.91,11.720,146.8,23.7,0.91,12.340,147.3 -22.8,0.91,12.570,159.1,22.9,0.91,13.150,160.3 -22.3,0.91,9.770,166.5,22.6,0.91,10.000,167.6 -22.2,0.91,8.780,171.3,22.6,0.91,8.810,174.5 -21.6,0.91,10.520,168.2,22.0,0.91,10.640,167.3 -20.9,0.91,9.360,180.0,21.3,0.91,10.010,181.7 -21.2,0.91,5.170,204.3,21.0,0.91,5.420,202.8 -22.8,0.91,6.030,186.9,22.7,0.91,6.100,187.3 -24.9,0.91,5.860,195.4,24.7,0.91,5.940,195.5 -26.1,0.91,5.620,199.8,25.9,0.91,5.670,200.0 -26.9,0.91,4.360,212.3,26.7,0.91,4.400,212.1 -27.6,0.91,5.370,200.8,27.4,0.91,5.410,200.5 -25.1,0.91,12.570,210.4,24.9,0.91,12.590,210.6 -25.9,0.91,10.790,200.8,25.7,0.91,10.890,200.7 -26.3,0.91,8.580,196.8,26.1,0.91,8.700,196.8 -27.4,0.91,6.200,202.5,27.2,0.91,6.280,202.1 -27.7,0.91,4.800,189.8,27.5,0.91,4.860,189.7 -27.2,0.91,6.420,186.4,27.0,0.91,6.500,186.3 -22.9,0.91,8.890,143.0,22.8,0.91,9.350,142.8 -22.5,0.91,10.290,147.6,22.4,0.91,10.850,147.2 -22.2,0.91,12.060,158.4,22.2,0.91,12.780,157.9 -21.1,0.91,12.520,163.3,21.0,0.91,13.330,162.7 -21.6,0.91,12.670,167.5,21.7,0.91,13.350,167.6 -21.7,0.91,13.640,166.3,21.8,0.91,14.260,166.4 -22.0,0.91,14.410,174.0,22.2,0.91,15.130,174.0 -21.8,0.91,15.080,178.2,22.0,0.91,15.900,178.5 -21.4,0.91,14.560,180.4,21.5,0.91,15.280,181.3 -20.9,0.91,13.320,183.7,20.9,0.91,13.900,185.3 -20.8,0.91,12.900,194.3,20.9,0.91,13.500,195.4 -20.5,0.91,12.720,195.5,20.3,0.91,12.980,195.6 -21.7,0.91,11.550,192.5,21.5,0.91,11.670,192.7 -23.1,0.91,11.270,193.9,22.9,0.91,11.370,194.1 -24.9,0.91,10.980,193.1,24.7,0.91,11.100,193.2 -26.5,0.91,10.230,190.9,26.3,0.91,10.350,190.9 -27.9,0.91,8.730,190.1,27.6,0.91,8.830,190.0 -29.1,0.91,7.530,182.4,28.9,0.91,7.620,182.5 -29.9,0.91,7.590,191.2,29.7,0.91,7.650,190.2 -30.7,0.91,6.560,183.6,30.4,0.91,6.650,183.1 -30.8,0.91,7.400,162.8,30.6,0.91,7.500,163.1 -30.8,0.90,8.520,162.3,30.5,0.90,8.590,162.6 -30.5,0.90,10.200,153.3,30.3,0.90,10.340,153.6 -30.1,0.90,8.530,157.6,30.0,0.90,8.840,157.6 -29.2,0.90,11.020,149.6,29.2,0.90,11.740,149.7 -28.2,0.91,13.240,155.4,28.2,0.91,13.970,155.3 -27.3,0.91,13.630,158.7,27.3,0.91,14.620,158.8 -26.5,0.91,13.730,163.1,26.5,0.91,14.610,163.2 -25.7,0.91,14.790,172.3,25.7,0.91,15.710,172.7 -25.2,0.91,14.310,182.4,25.3,0.91,15.220,183.0 -24.7,0.91,14.370,186.6,24.7,0.91,15.280,186.9 -24.2,0.91,14.200,186.9,24.3,0.91,15.000,187.5 -23.6,0.91,14.770,180.8,23.6,0.91,15.580,181.2 -22.1,0.91,14.740,188.3,22.1,0.91,15.470,189.3 -21.5,0.91,13.430,195.0,21.5,0.91,14.100,195.6 -21.2,0.91,12.330,185.6,21.0,0.91,12.920,185.8 -22.1,0.91,11.310,194.1,21.9,0.91,11.430,194.1 -23.7,0.91,10.980,183.1,23.5,0.91,11.120,183.2 -25.7,0.91,10.030,183.7,25.5,0.91,10.150,183.6 -26.9,0.91,9.170,180.3,26.7,0.91,9.260,180.4 -28.3,0.91,8.310,173.5,28.0,0.91,8.420,173.7 -29.0,0.91,8.830,165.9,28.8,0.91,8.870,165.8 -29.9,0.91,8.280,159.3,29.7,0.91,8.360,159.4 -30.3,0.91,8.060,158.6,30.1,0.91,8.160,158.6 -30.5,0.91,9.470,157.2,30.3,0.91,9.590,157.2 -30.5,0.90,8.450,154.6,30.3,0.90,8.560,154.6 -30.4,0.90,9.550,148.8,30.2,0.90,9.640,148.9 -30.0,0.90,9.410,151.1,29.8,0.90,9.700,151.4 -29.0,0.90,10.810,147.6,28.9,0.90,11.470,147.7 -28.7,0.91,11.670,152.1,28.7,0.91,12.280,152.5 -27.8,0.91,12.550,151.6,27.8,0.91,13.220,152.3 -27.2,0.91,13.080,154.5,27.3,0.91,13.880,154.9 -26.6,0.91,12.180,159.1,26.6,0.91,12.860,159.5 -25.6,0.91,12.180,159.8,25.6,0.91,12.840,160.5 -24.9,0.91,12.670,161.6,25.0,0.91,13.380,162.2 -24.2,0.91,12.270,165.2,24.2,0.91,13.020,166.5 -23.8,0.91,11.800,176.6,23.9,0.91,12.420,178.7 -23.1,0.91,11.540,186.8,23.2,0.91,12.070,189.5 -22.4,0.91,10.340,187.4,22.4,0.91,10.740,190.0 -21.9,0.91,8.290,187.8,21.8,0.91,8.950,188.1 -23.0,0.91,7.690,190.7,22.8,0.91,7.770,190.7 -24.4,0.91,7.350,184.5,24.2,0.91,7.420,184.5 -25.6,0.91,6.370,179.3,25.4,0.91,6.420,179.1 -27.0,0.91,5.270,161.3,26.8,0.91,5.310,161.2 -28.1,0.91,4.820,155.4,27.9,0.91,4.870,155.3 -29.0,0.91,5.840,143.6,28.8,0.91,5.890,143.7 -29.9,0.91,5.430,149.8,29.7,0.91,5.490,149.7 -30.1,0.91,5.510,139.4,29.8,0.91,5.560,139.4 -30.0,0.91,6.210,152.1,29.8,0.91,6.270,152.1 -30.0,0.91,7.400,120.6,29.8,0.91,7.470,121.0 -30.3,0.91,7.250,133.2,30.1,0.91,7.410,133.5 -30.1,0.91,7.950,136.2,29.9,0.91,8.090,136.4 -29.6,0.91,6.860,122.8,29.4,0.91,7.150,122.9 -28.4,0.91,7.380,125.2,28.3,0.91,7.850,126.4 -27.6,0.91,7.710,140.3,27.5,0.91,8.200,139.9 -27.3,0.91,8.910,160.4,27.2,0.91,9.530,161.7 -26.2,0.91,10.550,162.4,26.0,0.91,11.270,163.0 -25.4,0.91,10.570,169.3,25.3,0.91,11.060,170.0 -24.8,0.91,10.910,176.8,24.7,0.91,11.420,177.6 -24.2,0.91,10.080,179.3,24.1,0.91,10.570,180.4 -23.8,0.91,10.270,187.0,23.7,0.91,10.700,188.3 -23.1,0.91,10.600,185.5,23.0,0.91,11.040,186.7 -22.6,0.91,9.780,189.6,22.5,0.91,10.260,191.3 -22.5,0.91,8.610,196.7,22.3,0.91,8.720,197.0 -23.4,0.91,7.340,199.4,23.2,0.91,7.400,199.6 -24.7,0.91,6.690,194.8,24.5,0.91,6.750,194.9 -26.0,0.91,5.400,194.0,25.8,0.91,5.440,194.1 -27.2,0.91,4.810,187.7,26.9,0.91,4.840,187.7 -28.2,0.91,5.040,182.1,28.0,0.91,5.070,181.9 -29.3,0.91,4.330,169.1,29.1,0.91,4.360,169.6 -29.9,0.91,4.700,158.5,29.6,0.91,4.720,158.6 -30.6,0.91,5.950,154.7,30.4,0.91,5.980,154.8 -31.1,0.91,5.210,158.2,30.9,0.91,5.300,158.0 -31.0,0.91,6.060,149.1,30.8,0.91,6.090,149.1 -30.9,0.91,6.870,151.4,30.7,0.91,6.930,151.4 -30.6,0.91,7.640,157.3,30.4,0.91,7.790,157.3 -29.9,0.91,9.120,160.8,29.8,0.91,9.360,160.7 -29.3,0.91,9.650,158.9,29.2,0.91,10.160,158.7 -28.3,0.91,12.010,163.1,28.1,0.91,12.700,163.6 -27.0,0.91,11.370,181.7,26.8,0.91,11.900,181.9 -26.2,0.91,12.410,187.7,26.1,0.91,13.170,187.9 -25.4,0.91,10.670,196.3,25.2,0.91,11.270,196.5 -24.6,0.91,10.430,198.5,24.4,0.91,10.920,198.8 -23.8,0.91,11.370,193.5,23.7,0.91,11.750,193.7 -23.1,0.91,12.760,195.6,23.0,0.91,13.260,196.1 -22.6,0.91,12.250,200.8,22.4,0.91,12.770,201.2 -22.1,0.91,11.280,198.5,22.0,0.91,11.810,199.0 -22.2,0.91,11.300,204.0,22.0,0.91,11.480,204.2 -23.0,0.91,10.640,204.8,22.8,0.91,10.760,204.9 -24.3,0.91,9.370,207.1,24.0,0.91,9.480,207.2 -25.5,0.91,9.320,204.3,25.3,0.91,9.420,204.4 -26.8,0.91,7.400,197.0,26.6,0.91,7.480,197.1 -28.0,0.91,7.390,189.0,27.8,0.91,7.460,189.1 -29.1,0.91,7.430,190.1,28.9,0.91,7.510,190.1 -30.1,0.91,7.340,186.2,29.9,0.91,7.430,186.3 -30.6,0.91,7.060,188.5,30.4,0.91,7.130,188.8 -31.4,0.91,7.070,190.2,31.2,0.91,7.180,190.0 -31.5,0.91,9.080,179.8,31.3,0.91,9.090,180.0 -31.7,0.91,7.660,180.3,31.4,0.91,7.760,179.6 -31.4,0.91,8.960,177.3,31.2,0.91,9.120,178.0 -30.7,0.91,9.170,170.5,30.6,0.91,9.470,172.2 -30.0,0.91,9.930,174.3,29.9,0.91,10.510,174.4 -29.1,0.91,10.040,178.3,29.1,0.91,10.670,179.2 -28.2,0.91,10.710,187.5,28.1,0.91,11.920,188.2 -27.4,0.91,11.310,189.1,27.4,0.91,12.270,189.5 -26.8,0.91,12.010,194.2,26.7,0.91,12.990,194.9 -26.2,0.91,10.480,196.2,26.2,0.91,11.240,196.8 -25.6,0.91,11.390,199.5,25.5,0.91,12.270,199.9 -25.0,0.91,9.420,198.3,24.9,0.91,10.000,199.1 -24.3,0.91,9.160,201.3,24.2,0.91,9.760,202.5 -23.5,0.91,10.240,198.9,23.4,0.91,10.710,200.4 -23.2,0.91,9.390,201.6,23.0,0.91,9.560,202.0 -24.0,0.91,8.380,210.3,23.8,0.91,8.460,210.4 -25.2,0.91,7.800,208.4,25.0,0.91,7.870,208.5 -26.7,0.91,6.510,205.8,26.5,0.91,6.570,205.9 -28.1,0.91,5.690,200.4,27.8,0.91,5.740,200.6 -29.2,0.91,5.610,194.6,28.9,0.91,5.660,194.8 -30.2,0.91,4.920,186.2,29.9,0.91,4.960,186.2 -30.8,0.91,5.520,199.3,30.6,0.91,5.540,198.6 -31.7,0.91,4.350,190.6,31.4,0.91,4.400,188.6 -32.0,0.91,5.440,184.4,31.8,0.91,5.460,184.2 -32.2,0.91,5.580,182.1,32.0,0.91,5.580,181.8 -32.5,0.91,5.740,171.1,32.3,0.91,5.820,171.1 -32.2,0.91,6.080,161.3,32.0,0.91,6.170,161.5 -31.8,0.91,8.010,155.9,31.7,0.91,8.300,155.7 -31.5,0.91,8.490,156.3,31.4,0.91,8.690,156.0 -30.5,0.91,10.640,161.9,30.5,0.91,11.190,162.6 -29.8,0.91,12.060,167.7,29.8,0.91,12.860,168.0 -29.0,0.91,12.490,174.2,29.0,0.91,13.150,175.4 -28.5,0.91,11.440,195.8,28.5,0.91,11.870,197.9 -27.8,0.91,11.540,201.4,27.8,0.91,12.030,202.8 -27.2,0.91,11.660,208.4,27.2,0.91,12.430,209.4 -26.4,0.91,12.440,208.2,26.4,0.91,13.190,209.0 -25.8,0.91,12.300,208.8,25.8,0.91,13.060,210.0 -25.2,0.91,11.960,215.1,25.1,0.91,12.640,216.4 -24.9,0.91,9.900,217.4,24.8,0.91,10.390,218.1 -25.9,0.91,8.320,218.3,25.7,0.91,8.380,218.4 -27.4,0.91,5.940,223.9,27.2,0.91,5.980,224.0 -29.0,0.91,4.400,208.1,28.8,0.91,4.430,208.0 -30.1,0.91,2.940,174.6,29.9,0.91,2.950,174.5 -31.2,0.91,3.230,142.5,30.9,0.91,3.260,142.4 -31.8,0.91,4.080,144.7,31.6,0.91,4.120,144.6 -32.5,0.91,4.430,139.1,32.3,0.91,4.480,139.0 -33.0,0.91,5.040,129.6,32.7,0.91,5.050,129.7 -33.3,0.91,4.630,149.3,33.1,0.91,4.670,148.9 -33.5,0.91,5.050,132.0,33.3,0.91,5.110,132.5 -33.4,0.91,5.740,125.5,33.2,0.91,5.830,125.8 -32.9,0.91,7.380,126.5,32.7,0.91,7.550,126.5 -31.8,0.91,7.440,114.7,31.7,0.91,7.770,115.7 -30.7,0.91,9.720,143.7,30.5,0.91,10.610,144.5 -29.4,0.91,10.290,137.6,29.3,0.91,11.020,137.2 -28.9,0.91,11.420,145.8,28.8,0.91,12.390,145.5 -28.4,0.91,11.590,157.4,28.4,0.91,12.220,158.9 -28.0,0.91,11.090,165.8,28.1,0.91,11.350,168.0 -27.2,0.91,11.120,177.8,27.2,0.91,11.490,180.3 -26.9,0.91,10.300,190.2,27.0,0.91,10.810,194.9 -26.5,0.91,9.810,201.2,26.5,0.91,10.580,204.7 -26.0,0.91,9.960,207.8,25.9,0.91,10.480,210.4 -25.4,0.91,9.730,206.8,25.3,0.91,10.230,208.2 -24.9,0.91,7.490,214.9,24.8,0.91,8.140,216.0 -25.8,0.91,7.270,214.9,25.6,0.91,7.310,215.0 -27.4,0.91,4.950,210.9,27.2,0.91,4.980,210.8 -28.7,0.91,4.360,187.9,28.5,0.91,4.380,187.8 -29.8,0.91,4.220,168.2,29.6,0.91,4.250,167.8 -30.6,0.91,4.850,151.0,30.4,0.91,4.870,151.0 -31.5,0.91,5.440,145.7,31.2,0.91,5.490,145.8 -32.1,0.91,5.980,149.5,31.8,0.91,6.040,149.4 -30.1,0.91,10.570,92.5,30.3,0.91,10.140,95.8 -31.7,0.91,5.860,70.0,31.5,0.91,5.810,70.9 -31.0,0.91,1.380,15.6,30.9,0.91,1.230,28.3 -30.7,0.91,5.600,149.0,30.5,0.91,5.830,149.2 -30.2,0.91,9.670,140.0,30.0,0.91,9.870,139.8 -29.6,0.91,8.280,133.5,29.5,0.91,8.750,134.2 -29.0,0.91,10.740,146.0,28.8,0.91,11.310,146.1 -28.3,0.91,10.340,156.7,28.3,0.91,10.920,156.8 -28.2,0.91,10.550,166.0,28.1,0.91,11.100,166.2 -27.4,0.91,10.850,168.6,27.3,0.91,11.450,168.6 -27.0,0.91,10.700,179.1,27.0,0.91,11.250,180.6 -27.2,0.91,10.680,197.5,27.3,0.91,11.140,200.8 -27.8,0.91,10.120,210.7,27.8,0.91,10.550,212.2 -27.4,0.91,9.130,221.5,27.4,0.91,9.550,221.7 -27.0,0.91,9.780,215.6,27.0,0.91,10.270,216.6 -26.7,0.91,9.420,218.7,26.7,0.91,9.850,219.4 -26.2,0.91,7.320,213.9,26.3,0.91,7.780,215.0 -27.0,0.91,6.290,217.1,26.9,0.91,6.330,217.3 -28.6,0.91,4.750,212.2,28.4,0.91,4.770,212.1 -29.7,0.91,4.240,197.5,29.4,0.91,4.270,197.2 -30.6,0.91,3.920,178.7,30.4,0.91,3.940,178.5 -31.4,0.91,4.610,165.6,31.2,0.91,4.630,165.4 -32.0,0.91,3.830,152.1,31.8,0.91,3.850,151.8 -32.8,0.91,5.000,138.5,32.5,0.91,5.000,138.8 -33.3,0.91,3.640,143.9,33.1,0.91,3.690,143.8 -33.5,0.91,3.740,123.6,33.2,0.91,3.790,124.6 -33.7,0.91,4.580,154.6,33.5,0.91,4.640,154.7 -33.5,0.91,3.140,128.3,33.3,0.91,3.180,128.8 -33.3,0.91,4.870,143.3,33.1,0.91,4.930,143.5 -32.9,0.91,5.270,177.7,32.8,0.91,5.210,176.8 -32.4,0.91,4.980,182.5,32.3,0.91,5.100,179.8 -29.1,0.91,11.000,145.1,29.0,0.91,11.730,144.3 -28.8,0.91,12.110,152.7,28.8,0.91,12.800,152.3 -28.3,0.91,12.180,149.7,28.2,0.91,12.860,149.1 -27.6,0.91,12.510,149.7,27.6,0.91,13.150,150.0 -27.2,0.91,11.340,156.3,27.2,0.91,12.160,156.1 -26.6,0.91,11.210,166.1,26.6,0.91,11.890,166.0 -26.5,0.91,8.460,198.4,26.7,0.91,8.090,203.0 -26.6,0.91,7.910,219.3,26.7,0.91,7.980,222.4 -26.5,0.91,6.720,226.6,26.4,0.91,6.910,228.8 -25.7,0.91,6.450,217.0,25.8,0.91,6.950,219.3 -26.7,0.91,5.570,218.8,26.5,0.91,5.620,219.3 -28.1,0.91,4.160,235.2,27.9,0.91,4.200,235.7 -29.5,0.91,2.780,244.3,29.3,0.91,2.800,244.8 -30.8,0.91,2.310,248.6,30.6,0.91,2.340,249.2 -31.8,0.91,1.760,5.3,31.5,0.91,1.730,4.8 -32.2,0.91,3.010,46.2,31.9,0.91,3.000,45.5 -30.7,0.90,12.460,63.3,30.4,0.90,12.490,63.6 -29.5,0.90,12.450,89.0,29.3,0.90,12.570,89.5 -27.0,0.91,13.950,84.5,26.8,0.91,14.080,84.8 -25.8,0.90,12.950,93.7,25.6,0.90,13.160,94.0 -25.1,0.91,11.810,101.4,24.9,0.91,12.000,101.7 -24.0,0.91,13.020,69.0,23.8,0.91,13.230,69.3 -19.1,0.91,14.490,66.3,18.9,0.91,14.720,66.6 -17.9,0.91,10.210,75.9,17.7,0.91,10.460,76.3 -17.4,0.91,6.500,77.2,17.2,0.91,6.760,77.9 -17.4,0.91,7.460,50.5,17.3,0.91,7.590,51.3 -17.2,0.91,8.060,73.5,17.0,0.91,8.250,73.7 -16.1,0.91,10.000,24.7,16.0,0.91,10.470,28.4 -16.5,0.91,9.160,64.5,16.4,0.91,9.740,65.7 -15.6,0.91,7.340,60.8,15.5,0.91,7.660,61.6 -16.1,0.91,6.920,64.4,16.0,0.91,7.070,64.7 -15.9,0.91,7.360,70.2,15.8,0.91,7.560,70.3 -16.0,0.91,6.010,66.0,15.8,0.91,6.220,67.0 -16.0,0.91,5.930,45.7,15.9,0.91,6.040,46.7 -15.8,0.91,5.880,71.3,15.7,0.91,6.170,71.4 -15.8,0.91,6.470,43.4,15.6,0.91,6.640,43.5 -15.2,0.91,6.490,38.6,15.1,0.91,6.640,38.8 -15.1,0.91,5.800,32.1,15.0,0.91,5.840,33.0 -15.8,0.91,6.390,46.1,15.7,0.91,6.390,46.7 -16.0,0.91,5.890,33.3,15.8,0.91,5.920,33.4 -16.2,0.91,6.060,45.0,16.1,0.91,6.130,44.9 -16.2,0.91,3.580,53.5,16.1,0.91,3.610,53.4 -16.2,0.91,4.520,60.2,16.1,0.91,4.590,62.3 -16.5,0.91,3.610,61.4,16.3,0.91,3.650,62.1 -16.6,0.91,2.520,75.9,16.5,0.91,2.810,79.0 -16.5,0.91,3.230,125.7,16.4,0.91,3.450,128.4 -16.6,0.91,3.320,130.2,16.5,0.91,3.360,131.2 -16.6,0.91,5.680,147.2,16.5,0.91,6.110,145.5 -16.8,0.91,5.330,135.0,16.6,0.91,5.570,134.9 -16.5,0.91,5.050,139.2,16.4,0.91,5.950,139.7 -16.9,0.91,5.100,135.9,16.8,0.91,5.810,138.0 -17.2,0.91,4.990,139.8,17.0,0.91,5.190,140.6 -17.3,0.91,3.110,144.6,17.1,0.91,3.690,146.1 -17.4,0.91,2.780,136.2,17.3,0.91,3.060,140.7 -17.4,0.91,2.850,127.3,17.3,0.91,3.120,124.1 -17.5,0.91,2.710,88.2,17.4,0.91,2.780,94.8 -17.6,0.91,3.800,135.0,17.5,0.91,4.150,139.2 -17.8,0.91,4.760,147.1,17.7,0.91,5.150,148.0 -17.9,0.91,4.330,161.1,17.8,0.91,4.800,163.7 -17.9,0.91,7.190,147.8,17.8,0.91,7.440,146.8 -18.2,0.91,3.230,140.0,18.0,0.91,3.380,139.6 -18.5,0.91,1.800,211.1,18.3,0.91,1.880,209.3 -18.8,0.91,1.310,202.6,18.6,0.91,1.430,198.8 -20.1,0.91,1.230,158.4,19.9,0.91,1.320,159.5 -19.3,0.91,4.490,70.6,19.2,0.91,4.460,70.1 -20.3,0.91,6.570,73.5,20.1,0.91,6.640,74.4 -19.8,0.91,4.940,99.4,19.6,0.91,4.950,100.2 -21.3,0.91,4.780,105.3,21.1,0.91,4.800,105.3 -21.4,0.91,6.220,133.2,21.2,0.91,6.320,133.4 -19.4,0.91,4.280,88.2,19.2,0.91,4.490,89.9 -19.1,0.91,5.360,76.8,19.0,0.91,5.700,79.8 -19.2,0.91,5.780,83.2,19.1,0.91,6.230,84.5 -19.1,0.91,4.220,79.3,19.0,0.91,4.670,83.7 -19.0,0.91,6.170,90.2,18.9,0.91,6.820,91.8 -19.1,0.91,6.200,96.5,19.0,0.91,6.660,97.2 -18.7,0.91,6.360,118.7,18.5,0.91,6.750,119.4 -19.3,0.91,8.480,124.0,19.3,0.91,8.990,123.0 -19.2,0.91,5.050,104.5,19.3,0.91,5.500,108.4 -18.9,0.91,5.950,87.8,18.8,0.91,6.090,88.8 -19.0,0.91,5.220,92.2,18.9,0.91,5.480,95.5 -18.8,0.91,5.520,78.3,18.7,0.91,5.650,78.7 -18.9,0.91,4.930,85.1,18.8,0.91,5.080,85.1 -18.8,0.91,5.340,80.0,18.7,0.91,5.610,82.7 -19.5,0.92,4.870,103.8,19.3,0.92,4.980,104.7 -20.3,0.92,5.100,89.3,20.2,0.92,5.170,89.9 -21.7,0.92,6.050,101.4,21.5,0.92,6.130,101.5 -21.6,0.91,5.820,73.6,21.4,0.91,5.910,73.7 -20.3,0.91,4.240,53.4,20.2,0.91,4.710,55.1 -21.0,0.91,5.490,108.7,20.9,0.91,6.150,109.5 -19.9,0.91,11.030,106.9,19.9,0.91,12.030,109.9 -20.9,0.91,5.380,120.9,20.7,0.91,5.460,121.4 -20.9,0.91,4.890,117.4,20.7,0.91,4.980,117.4 -21.9,0.91,4.980,87.0,21.7,0.91,5.080,88.0 -21.3,0.91,6.540,120.1,21.2,0.91,6.730,119.9 -20.7,0.91,6.770,109.1,20.6,0.91,7.150,108.5 -20.7,0.91,5.610,121.5,20.6,0.91,6.110,122.9 -20.7,0.91,6.390,144.6,20.7,0.91,6.860,144.9 -20.2,0.91,6.690,140.4,20.1,0.91,7.680,142.1 -20.3,0.91,5.750,149.2,20.3,0.91,6.270,148.3 -19.8,0.91,5.800,150.8,19.8,0.91,6.340,155.8 -19.5,0.91,6.710,147.3,19.4,0.91,7.080,149.0 -19.3,0.91,6.040,147.9,19.3,0.91,6.520,149.8 -19.8,0.91,6.590,175.4,19.9,0.91,7.020,176.6 -19.2,0.91,5.580,165.0,19.2,0.91,5.960,165.5 -19.3,0.91,6.220,163.3,19.4,0.91,6.590,162.9 -19.0,0.91,5.700,154.8,19.1,0.91,6.140,155.3 -18.6,0.91,4.070,151.8,18.6,0.91,5.120,152.3 -19.0,0.91,2.950,163.2,18.9,0.91,3.030,162.9 -21.7,0.91,4.640,154.5,21.5,0.91,4.700,154.3 -23.0,0.91,5.620,154.5,22.8,0.91,5.670,154.6 -23.7,0.91,4.870,141.9,23.5,0.91,4.920,142.0 -24.8,0.91,5.400,141.2,24.6,0.91,5.460,141.4 -25.6,0.91,6.130,141.8,25.4,0.91,6.200,142.0 -26.2,0.91,5.440,141.2,26.0,0.91,5.510,141.5 -26.7,0.91,5.380,147.3,26.5,0.91,5.450,147.4 -27.0,0.91,5.520,154.2,26.8,0.91,5.570,154.2 -26.9,0.91,5.450,166.7,26.7,0.91,5.550,166.7 -26.8,0.91,4.330,156.9,26.6,0.91,4.490,157.5 -24.4,0.91,6.140,228.5,24.3,0.91,6.250,226.3 -24.4,0.91,5.120,221.4,24.4,0.91,5.210,215.0 -24.2,0.91,5.240,213.6,24.1,0.91,5.340,209.1 -24.1,0.91,5.160,203.7,24.0,0.91,5.370,201.8 -24.0,0.91,5.820,193.3,23.9,0.91,6.090,192.4 -23.6,0.91,6.330,196.6,23.5,0.91,6.580,195.6 -22.9,0.91,7.040,191.6,22.8,0.91,7.280,192.0 -22.6,0.91,7.990,198.0,22.5,0.91,8.170,197.5 -22.4,0.91,7.580,203.9,22.4,0.91,7.930,204.3 -22.4,0.91,6.770,207.0,22.4,0.91,7.010,205.6 -21.9,0.91,7.240,206.0,22.0,0.91,7.480,206.4 -21.5,0.91,6.360,209.2,21.7,0.91,6.860,210.5 -21.9,0.91,4.620,215.9,21.8,0.91,4.660,216.5 -23.2,0.91,4.650,209.8,23.0,0.91,4.690,210.0 -24.2,0.91,4.190,228.6,23.9,0.91,4.210,228.6 -25.2,0.91,3.210,199.7,25.0,0.91,3.240,199.7 -26.1,0.91,4.210,182.9,25.9,0.91,4.230,183.0 -26.8,0.91,4.240,184.5,26.6,0.91,4.260,184.6 -27.7,0.91,3.710,187.8,27.4,0.91,3.740,187.8 -28.1,0.91,4.700,179.9,27.9,0.91,4.700,179.6 -28.4,0.91,3.800,177.1,28.2,0.91,3.860,176.0 -28.7,0.91,4.460,169.9,28.5,0.91,4.500,169.6 -28.6,0.91,5.730,154.8,28.4,0.91,5.800,155.2 -28.4,0.91,5.180,159.2,28.2,0.91,5.230,158.4 -28.3,0.91,5.710,161.5,28.1,0.91,5.730,162.6 -27.8,0.91,5.410,170.8,27.6,0.91,5.610,171.3 -27.7,0.91,6.970,143.0,27.6,0.91,7.530,144.5 -27.3,0.91,8.860,164.5,27.2,0.91,9.050,164.9 -26.4,0.91,9.560,170.3,26.4,0.91,9.900,171.7 -26.7,0.91,11.830,165.4,26.6,0.91,12.110,166.7 -24.9,0.91,10.560,167.4,24.9,0.91,10.830,168.2 -24.8,0.91,10.480,191.2,24.9,0.91,10.730,196.6 -24.3,0.91,9.260,208.3,24.3,0.91,9.580,211.4 -23.7,0.91,9.260,208.3,23.7,0.91,9.610,208.6 -23.2,0.91,9.080,204.8,23.2,0.91,9.460,204.8 -22.4,0.91,8.520,210.3,22.4,0.91,8.960,211.2 -22.5,0.91,7.770,211.7,22.4,0.91,7.860,212.0 -23.6,0.91,6.460,218.2,23.4,0.91,6.520,218.3 -24.8,0.91,5.340,219.8,24.6,0.91,5.390,219.8 -25.9,0.91,4.730,206.9,25.7,0.91,4.770,207.0 -27.0,0.91,4.880,183.8,26.8,0.91,4.930,184.0 -27.8,0.91,5.010,183.0,27.6,0.91,5.030,183.1 -28.4,0.91,5.080,180.5,28.2,0.91,5.120,180.2 -28.8,0.91,5.820,175.5,28.6,0.91,5.850,175.6 -29.3,0.91,5.650,160.4,29.1,0.91,5.720,160.5 -29.3,0.90,6.150,168.8,29.1,0.90,6.200,168.9 -29.3,0.90,6.130,167.5,29.1,0.90,6.230,167.3 -29.2,0.90,6.080,158.3,29.0,0.90,6.360,158.6 -29.1,0.90,8.400,152.7,29.0,0.90,8.320,152.6 -28.6,0.91,9.200,160.2,28.6,0.91,9.530,161.1 -28.4,0.91,9.470,157.7,28.3,0.91,9.800,158.1 -27.8,0.91,11.370,167.3,27.8,0.91,11.840,167.3 -26.3,0.91,6.220,213.5,26.2,0.91,6.510,220.8 -25.5,0.91,6.680,208.2,25.5,0.91,7.190,213.8 -24.8,0.91,7.760,198.5,24.9,0.91,7.950,203.2 -23.8,0.91,7.920,202.7,23.9,0.91,7.700,213.8 -23.5,0.91,6.840,227.8,23.5,0.91,7.180,229.5 -23.2,0.91,9.800,229.7,23.2,0.91,10.340,229.4 -22.1,0.91,10.250,230.5,22.0,0.91,10.910,231.2 -21.7,0.91,9.110,225.6,21.6,0.91,9.780,225.0 -22.5,0.91,8.780,213.0,22.4,0.91,8.860,212.9 -23.7,0.91,7.270,209.8,23.5,0.91,7.340,209.8 -24.8,0.91,6.300,207.2,24.6,0.91,6.360,207.2 -25.8,0.91,5.950,205.3,25.6,0.91,6.010,205.4 -26.8,0.91,6.820,202.8,26.6,0.91,6.890,203.0 -27.6,0.91,6.390,199.2,27.4,0.91,6.450,199.3 -28.4,0.91,4.770,186.2,28.1,0.91,4.820,186.2 -29.0,0.91,4.920,171.4,28.8,0.91,4.970,172.3 -29.5,0.91,5.550,162.4,29.3,0.91,5.550,163.1 -26.6,0.91,9.530,209.9,26.4,0.91,9.640,209.7 -27.3,0.90,8.000,192.6,27.1,0.90,8.110,192.8 -27.3,0.90,7.020,199.0,27.1,0.90,7.150,198.8 -27.0,0.91,6.010,207.1,26.9,0.91,6.140,206.8 -27.1,0.91,7.780,185.8,27.1,0.91,8.090,187.2 -26.9,0.91,8.240,184.9,26.8,0.91,8.490,187.1 -26.4,0.91,8.830,190.7,26.4,0.91,9.080,192.1 -25.9,0.91,10.290,189.6,25.9,0.91,10.730,190.5 -25.7,0.91,11.600,191.1,25.9,0.91,12.420,192.8 -25.7,0.91,12.000,198.0,25.9,0.91,12.820,198.8 -25.6,0.91,13.270,200.0,25.8,0.91,14.140,200.6 -25.2,0.91,13.070,202.1,25.4,0.91,14.060,202.7 -23.3,0.91,13.040,200.6,23.3,0.91,14.050,201.4 -22.3,0.91,13.460,200.7,22.3,0.91,14.560,202.1 -21.9,0.91,12.390,205.2,21.8,0.91,13.000,205.8 -22.3,0.91,11.010,204.8,22.1,0.91,11.180,205.0 -23.6,0.91,9.830,205.9,23.4,0.91,9.940,206.1 -24.8,0.91,9.480,202.5,24.6,0.91,9.580,202.6 -26.0,0.91,8.640,199.0,25.8,0.91,8.730,199.1 -27.2,0.91,7.670,191.8,27.0,0.91,7.750,191.9 -28.2,0.91,7.940,186.7,28.0,0.91,8.030,186.9 -29.0,0.91,8.210,180.7,28.8,0.91,8.300,181.0 -29.7,0.91,8.160,176.2,29.5,0.91,8.270,176.5 -30.3,0.91,7.450,174.1,30.1,0.91,7.550,174.6 -30.4,0.91,8.510,168.7,30.2,0.91,8.620,169.1 -30.5,0.91,8.630,171.1,30.3,0.91,8.810,171.3 -30.3,0.90,9.600,168.5,30.1,0.90,10.200,168.6 -29.9,0.91,11.120,165.2,29.9,0.91,11.670,165.3 -29.1,0.91,11.440,174.3,29.1,0.91,12.350,174.7 -28.8,0.91,12.540,186.0,28.9,0.91,13.480,187.0 -28.0,0.91,11.720,195.6,28.1,0.91,12.620,196.6 -28.2,0.91,12.910,202.8,28.2,0.91,13.830,202.7 -27.5,0.91,11.550,196.0,27.7,0.91,12.460,196.8 -25.4,0.91,15.740,189.1,25.3,0.91,16.680,189.0 -24.6,0.91,13.650,190.2,24.5,0.91,14.520,191.2 -23.8,0.91,13.170,195.2,23.7,0.91,13.950,196.2 -23.1,0.91,12.430,195.2,23.0,0.91,13.150,196.2 -22.6,0.91,12.870,193.9,22.5,0.91,13.630,195.3 -22.4,0.91,12.030,198.3,22.3,0.91,12.330,198.7 -23.1,0.91,11.010,201.3,22.9,0.91,11.150,201.5 -24.2,0.91,10.480,204.5,24.0,0.91,10.590,204.6 -25.8,0.91,9.790,197.3,25.6,0.91,9.890,197.4 -27.2,0.91,9.070,197.0,27.0,0.91,9.170,197.2 -28.4,0.91,8.160,191.3,28.2,0.91,8.250,191.4 -29.5,0.91,7.930,186.9,29.3,0.91,8.030,187.1 -30.4,0.91,7.650,188.8,30.2,0.91,7.750,188.9 -31.1,0.91,8.730,187.2,30.8,0.91,8.810,187.2 -31.6,0.91,8.340,171.7,31.4,0.91,8.410,172.2 -32.0,0.91,8.230,196.4,31.8,0.91,8.290,195.9 -32.1,0.90,8.760,181.2,31.9,0.90,8.880,181.5 -31.8,0.90,8.150,174.3,31.6,0.90,8.490,176.3 -31.2,0.90,10.230,179.4,31.2,0.90,11.260,179.8 -30.7,0.90,11.990,181.1,30.6,0.90,12.370,181.2 -29.2,0.91,11.580,186.6,29.2,0.91,12.710,186.4 -29.0,0.91,12.850,194.1,29.0,0.91,13.720,193.9 -28.6,0.91,12.740,203.7,28.6,0.91,13.120,203.9 -28.7,0.91,13.470,199.7,28.8,0.91,14.230,200.4 -27.9,0.91,13.690,201.7,28.0,0.91,14.380,202.4 -27.5,0.91,11.590,205.6,27.7,0.91,12.190,206.8 -26.7,0.91,11.780,207.6,26.8,0.91,12.370,207.9 -25.3,0.91,12.890,207.8,25.2,0.91,13.790,208.9 -24.4,0.91,11.460,206.8,24.4,0.91,12.250,208.9 -23.7,0.91,10.320,211.4,23.7,0.91,10.840,212.5 -24.3,0.91,6.520,211.3,24.1,0.91,6.570,211.8 -25.6,0.91,6.070,216.6,25.4,0.91,6.110,217.0 -27.1,0.91,3.730,205.1,26.9,0.91,3.750,205.4 -28.2,0.91,3.140,187.5,28.0,0.91,3.140,187.8 -29.2,0.91,3.280,169.8,29.0,0.91,3.280,169.8 -30.0,0.91,3.710,170.1,29.8,0.91,3.710,170.0 -30.7,0.91,4.050,161.9,30.5,0.91,4.080,162.2 -31.2,0.91,3.550,163.5,31.0,0.91,3.560,163.2 -31.8,0.91,4.620,153.7,31.6,0.91,4.660,154.1 -31.9,0.91,5.020,152.9,31.7,0.91,5.040,152.9 -31.9,0.91,4.400,151.2,31.7,0.91,4.440,151.3 -31.9,0.91,4.880,154.8,31.7,0.91,4.930,154.5 -31.6,0.91,6.480,145.2,31.5,0.91,6.480,144.9 -31.5,0.91,5.480,149.0,31.3,0.91,5.590,149.1 -31.0,0.91,7.690,146.0,30.9,0.91,7.530,146.0 -30.3,0.91,9.500,150.5,30.3,0.91,9.570,151.7 -29.8,0.91,9.750,164.8,29.8,0.91,10.040,166.0 -29.2,0.91,10.180,166.8,29.2,0.91,10.430,167.1 -28.5,0.91,8.950,180.1,28.5,0.91,8.880,182.4 -27.8,0.91,8.120,214.9,27.8,0.91,7.870,216.8 -27.7,0.91,7.730,216.7,27.8,0.91,7.840,218.2 -27.4,0.91,6.210,218.9,27.4,0.91,6.220,219.9 -27.1,0.91,5.210,213.6,27.3,0.91,5.340,214.3 -26.7,0.91,5.260,211.7,26.8,0.91,5.310,212.7 -26.4,0.91,4.120,214.1,26.4,0.91,4.420,214.8 -26.9,0.91,4.670,204.5,26.7,0.91,4.690,205.1 -28.2,0.91,3.460,215.7,28.0,0.91,3.470,216.0 -29.3,0.91,2.360,204.5,29.1,0.91,2.370,204.3 -30.0,0.91,3.310,161.6,29.8,0.91,3.310,161.6 -30.5,0.91,3.870,173.5,30.3,0.91,3.890,173.3 -30.8,0.91,4.370,175.6,30.6,0.91,4.370,175.6 -31.3,0.91,4.920,175.0,31.1,0.91,4.930,175.1 -31.6,0.91,5.660,175.9,31.4,0.91,5.670,175.8 -32.0,0.91,5.390,178.2,31.8,0.91,5.480,177.8 -31.9,0.91,5.750,163.7,31.8,0.91,5.830,164.2 -31.6,0.91,6.930,160.0,31.4,0.91,7.340,161.0 -31.5,0.91,7.580,154.5,31.4,0.91,7.770,154.2 -31.2,0.91,10.470,163.4,31.1,0.91,10.920,165.1 -30.3,0.91,12.100,164.8,30.3,0.91,12.450,165.5 -29.6,0.91,12.640,167.4,29.6,0.91,13.100,168.1 -28.7,0.91,12.790,165.1,28.8,0.91,13.600,165.3 -27.8,0.91,12.280,182.8,27.9,0.91,12.720,186.0 -27.3,0.91,12.050,197.7,27.3,0.91,12.530,200.6 -26.6,0.91,12.700,208.5,26.6,0.91,13.600,209.7 -25.9,0.91,12.390,209.0,26.0,0.91,13.260,209.7 -25.4,0.91,12.130,209.2,25.4,0.91,12.940,209.6 -24.7,0.91,12.180,214.1,24.8,0.91,13.070,215.3 -24.2,0.91,10.690,215.2,24.2,0.91,11.250,216.3 -24.6,0.91,8.660,214.5,24.5,0.91,8.780,215.1 -25.8,0.91,7.960,217.1,25.6,0.91,7.990,217.4 -27.6,0.91,6.120,227.8,27.4,0.91,6.150,228.2 -29.3,0.91,4.650,248.1,29.1,0.91,4.690,248.6 -30.6,0.91,3.360,272.1,30.4,0.91,3.410,272.5 -31.4,0.91,3.780,307.4,31.2,0.91,3.800,306.8 -32.1,0.91,3.970,305.6,31.9,0.91,4.010,305.4 -32.5,0.91,3.570,299.4,32.3,0.91,3.620,299.6 -33.0,0.91,2.970,307.1,32.8,0.91,3.010,307.5 -33.1,0.91,2.380,324.3,32.9,0.91,2.400,324.3 -33.4,0.91,4.090,350.1,33.2,0.91,4.180,350.4 -32.8,0.91,6.550,30.6,32.6,0.91,6.530,30.7 -31.6,0.91,8.090,30.7,31.5,0.91,8.730,30.2 -30.2,0.91,9.570,35.6,30.1,0.91,10.340,35.1 -28.8,0.91,10.210,36.7,28.7,0.91,11.150,36.8 -28.1,0.91,8.790,34.2,28.0,0.91,9.340,33.3 -26.7,0.91,11.050,44.3,26.5,0.91,12.000,46.6 -24.8,0.91,12.010,39.5,24.7,0.91,12.570,39.9 -23.8,0.91,9.230,43.9,23.6,0.91,9.850,44.7 -23.1,0.91,8.080,41.3,23.0,0.91,8.580,42.3 -22.5,0.91,8.440,35.7,22.4,0.91,8.950,36.9 -21.8,0.91,7.200,35.0,21.6,0.91,7.650,38.0 -20.9,0.91,7.420,41.8,20.8,0.91,7.890,45.0 -20.3,0.91,6.090,43.6,20.1,0.91,6.170,44.4 -20.7,0.91,5.460,43.3,20.5,0.91,5.500,43.4 -21.6,0.91,5.550,42.9,21.4,0.91,5.590,42.8 -22.7,0.91,4.880,44.9,22.5,0.91,4.920,44.9 -24.0,0.91,4.790,46.4,23.8,0.91,4.810,46.6 -25.4,0.91,4.800,46.7,25.2,0.91,4.830,47.0 -26.7,0.91,5.140,47.3,26.4,0.91,5.180,47.6 -27.8,0.91,4.870,63.5,27.6,0.91,4.910,63.9 -28.6,0.91,5.140,78.4,28.4,0.91,5.200,78.6 -28.9,0.91,5.880,86.1,28.7,0.91,5.920,86.4 -29.0,0.91,5.460,76.5,28.8,0.91,5.490,76.3 -28.9,0.91,5.600,98.6,28.7,0.91,5.670,98.9 -28.5,0.91,6.020,110.2,28.3,0.91,6.240,111.1 -27.9,0.91,8.260,117.4,27.8,0.91,8.450,117.9 -27.3,0.91,8.900,120.1,27.1,0.91,8.630,120.2 -26.1,0.91,8.280,119.4,25.9,0.91,8.650,118.6 -25.8,0.91,8.560,129.3,25.6,0.91,8.890,128.1 -25.2,0.91,8.810,132.8,25.1,0.91,8.970,132.8 -24.6,0.91,9.960,130.3,24.6,0.91,10.100,130.9 -23.7,0.91,10.330,134.9,23.7,0.91,10.730,135.2 -23.0,0.91,10.430,139.1,23.0,0.91,10.770,139.6 -22.4,0.91,10.240,145.3,22.5,0.91,10.540,146.2 -22.0,0.91,10.810,153.3,22.0,0.91,11.320,153.6 -21.7,0.91,10.400,149.1,21.7,0.91,10.820,150.2 -21.3,0.91,8.790,158.9,21.2,0.91,9.280,159.0 -22.2,0.91,7.640,163.6,22.0,0.91,7.760,163.8 -23.3,0.91,7.490,168.2,23.1,0.91,7.580,168.3 -24.7,0.91,6.640,166.4,24.5,0.91,6.720,166.5 -26.0,0.91,5.420,170.9,25.8,0.91,5.470,170.9 -27.2,0.91,4.410,171.1,26.9,0.91,4.440,171.1 -28.2,0.91,4.080,178.7,27.9,0.91,4.100,178.9 -29.0,0.91,4.270,178.5,28.8,0.91,4.270,178.8 -29.9,0.91,5.010,178.5,29.7,0.91,5.010,178.7 -30.5,0.91,5.550,157.3,30.3,0.91,5.590,157.9 -30.8,0.90,6.010,165.9,30.6,0.90,6.080,166.1 -30.9,0.90,6.940,170.5,30.7,0.90,7.080,170.7 -29.4,0.90,5.330,214.6,29.3,0.90,5.460,213.7 -29.3,0.90,7.570,157.5,29.1,0.90,7.980,157.9 -29.3,0.90,8.770,160.6,29.3,0.90,9.280,160.9 -28.9,0.91,9.810,153.8,28.9,0.91,10.470,153.5 -28.9,0.91,10.400,155.0,28.9,0.91,11.060,156.1 -29.0,0.91,11.690,160.8,29.1,0.91,12.440,163.6 -28.0,0.91,11.920,184.1,28.1,0.91,12.590,185.9 -27.6,0.91,13.640,193.5,27.6,0.91,14.560,193.4 -26.3,0.91,13.790,188.5,26.2,0.91,14.890,188.2 -25.2,0.91,14.380,189.4,25.1,0.91,15.410,190.1 -24.2,0.91,14.050,186.7,24.1,0.91,14.870,187.3 -23.5,0.91,13.820,190.0,23.4,0.91,14.520,190.7 -23.3,0.91,13.370,190.3,23.1,0.91,13.600,190.4 -24.1,0.91,11.770,195.3,23.9,0.91,11.920,195.6 -25.3,0.91,10.950,197.0,25.1,0.91,11.080,197.2 -26.8,0.91,10.640,193.4,26.6,0.91,10.760,193.6 -28.3,0.91,10.260,192.9,28.0,0.91,10.390,193.0 -29.6,0.91,9.480,195.2,29.4,0.91,9.600,195.3 -30.8,0.91,9.670,192.3,30.5,0.91,9.790,192.4 -31.7,0.91,8.930,192.1,31.5,0.91,9.060,192.2 -32.4,0.91,9.300,182.4,32.1,0.91,9.400,182.9 -32.8,0.91,9.680,194.6,32.6,0.91,9.740,194.4 -33.2,0.91,8.640,197.3,33.0,0.91,8.750,197.0 -33.3,0.91,8.290,193.5,33.1,0.91,8.450,193.7 -33.0,0.91,9.210,189.1,32.8,0.91,9.580,189.3 -31.9,0.91,10.760,179.0,31.9,0.91,11.410,179.7 -31.0,0.91,12.890,179.8,31.0,0.91,13.680,180.2 -30.2,0.91,13.630,188.5,30.2,0.91,14.470,189.1 -29.7,0.91,15.100,194.6,29.8,0.91,15.970,194.7 -29.2,0.91,15.670,195.9,29.2,0.91,16.520,195.9 -28.3,0.91,15.330,195.0,28.3,0.91,16.210,195.3 -27.0,0.91,15.290,192.3,26.9,0.91,16.090,193.0 -25.6,0.91,15.690,195.0,25.5,0.91,16.480,195.6 -24.5,0.91,16.330,197.6,24.5,0.91,17.150,198.2 -23.8,0.91,16.230,197.7,23.8,0.91,17.060,198.4 -23.4,0.91,16.070,200.6,23.3,0.91,16.930,201.4 -23.3,0.91,15.420,199.7,23.3,0.91,16.110,200.4 -24.1,0.91,13.080,202.1,23.9,0.91,13.290,202.4 -25.3,0.91,12.190,208.0,25.1,0.91,12.290,208.2 -26.9,0.91,11.280,206.8,26.7,0.91,11.370,207.0 -28.6,0.91,10.090,208.4,28.4,0.91,10.180,208.6 -30.1,0.91,8.640,205.3,29.9,0.91,8.710,205.5 -31.3,0.91,7.180,199.7,31.1,0.91,7.240,200.0 -32.2,0.91,5.920,193.3,32.0,0.91,5.960,193.6 -33.0,0.91,5.300,193.8,32.8,0.91,5.340,193.9 -33.4,0.91,6.000,172.6,33.1,0.91,6.030,173.1 -33.8,0.91,4.640,190.6,33.6,0.91,4.660,190.4 -33.7,0.91,5.780,173.8,33.5,0.91,5.850,174.1 -33.7,0.91,6.600,172.0,33.5,0.91,6.540,172.1 -33.1,0.91,5.600,171.9,33.0,0.91,6.120,169.5 -33.0,0.91,7.500,167.8,32.8,0.91,7.480,168.2 -31.9,0.91,11.290,178.5,31.8,0.91,11.760,179.9 -30.8,0.91,12.220,188.8,30.8,0.91,12.740,191.3 -30.1,0.91,11.980,200.6,30.1,0.91,12.680,202.6 -29.1,0.91,11.120,204.7,29.1,0.91,12.100,206.1 -28.6,0.91,12.550,207.6,28.6,0.91,13.560,208.3 -28.2,0.91,13.120,210.2,28.2,0.91,14.090,210.5 -27.3,0.91,12.780,205.3,27.1,0.91,13.610,206.0 -26.1,0.91,12.720,210.4,26.0,0.91,13.270,212.4 -25.5,0.91,11.100,213.9,25.5,0.91,11.740,215.5 -24.9,0.91,11.070,217.4,24.9,0.91,11.700,218.2 -25.5,0.91,8.370,221.2,25.4,0.91,8.480,221.5 -26.9,0.91,6.900,222.1,26.8,0.91,6.920,222.5 -28.6,0.91,4.470,238.1,28.3,0.91,4.490,238.6 -30.1,0.91,1.650,282.6,29.9,0.91,1.670,283.1 -31.2,0.91,1.080,329.1,30.9,0.91,1.110,328.8 -32.1,0.91,2.490,20.9,31.9,0.91,2.490,20.5 -32.9,0.91,1.540,46.5,32.7,0.91,1.580,47.2 -33.3,0.91,3.250,60.7,33.1,0.91,3.250,60.3 -33.6,0.91,3.900,61.6,33.4,0.91,3.890,61.1 -33.9,0.91,3.140,73.3,33.7,0.91,3.140,72.9 -33.9,0.91,3.080,60.8,33.7,0.91,3.110,61.4 -33.6,0.91,5.190,91.7,33.5,0.91,5.330,90.3 -32.1,0.91,6.450,159.7,32.0,0.91,6.480,158.5 -32.1,0.91,4.620,147.6,31.9,0.91,4.660,143.9 -31.5,0.91,3.930,150.6,31.3,0.91,3.940,148.2 -30.7,0.91,2.290,112.6,30.6,0.91,2.480,111.7 -29.6,0.91,2.620,58.2,29.6,0.91,2.820,61.9 -29.0,0.91,2.810,58.6,29.1,0.91,2.960,65.1 -28.2,0.91,3.860,87.8,28.2,0.91,4.190,88.8 -28.2,0.91,5.110,85.2,28.2,0.91,5.380,87.3 -28.4,0.91,6.320,101.7,28.3,0.91,6.480,101.4 -27.7,0.91,6.570,124.9,27.7,0.91,6.910,126.1 -27.1,0.91,5.320,116.0,27.1,0.91,5.430,117.4 -26.4,0.91,4.260,114.2,26.4,0.91,4.360,117.0 -26.5,0.91,1.770,133.5,26.4,0.91,1.770,136.3 -28.5,0.91,3.700,240.9,28.3,0.91,3.750,241.3 -29.8,0.91,3.320,260.4,29.6,0.91,3.390,260.5 -30.8,0.91,2.230,325.0,30.6,0.91,2.240,324.5 -31.5,0.91,2.350,22.2,31.2,0.91,2.320,21.4 -32.0,0.91,2.580,34.6,31.8,0.91,2.550,34.6 -32.6,0.91,2.980,47.9,32.4,0.91,2.950,48.9 -33.2,0.91,3.730,92.7,32.9,0.91,3.740,92.5 -33.4,0.91,3.470,67.5,33.2,0.91,3.470,67.9 -33.8,0.91,2.590,95.9,33.6,0.91,2.610,97.7 -34.3,0.91,3.990,167.7,34.1,0.91,4.020,167.3 -34.0,0.91,4.330,157.7,33.8,0.91,4.420,156.7 -33.3,0.91,4.640,145.6,33.2,0.91,4.680,146.7 -31.9,0.91,8.310,131.8,31.7,0.91,8.580,130.1 -31.0,0.91,9.830,126.3,30.9,0.91,10.660,125.3 -30.5,0.91,11.160,127.1,30.5,0.91,11.710,127.5 -29.9,0.91,11.410,138.3,30.0,0.91,11.930,138.6 -29.3,0.91,12.420,148.0,29.3,0.91,13.100,147.6 -28.6,0.91,12.090,183.8,28.7,0.91,12.530,187.1 -28.6,0.91,12.350,214.1,28.6,0.91,13.040,215.3 -27.8,0.91,11.730,216.1,27.8,0.91,12.560,217.1 -27.0,0.91,11.780,206.0,27.0,0.91,12.460,207.6 -26.7,0.91,12.270,209.0,26.8,0.91,12.910,210.5 -26.2,0.91,12.660,208.5,26.2,0.91,13.260,209.3 -26.7,0.91,11.330,210.7,26.5,0.91,11.490,211.0 -28.1,0.91,11.420,211.1,27.9,0.91,11.540,211.2 -29.5,0.91,9.860,211.5,29.3,0.91,9.950,211.5 -30.6,0.91,9.190,207.3,30.4,0.91,9.280,207.4 -31.7,0.91,8.480,198.8,31.5,0.91,8.560,198.9 -32.5,0.91,7.060,197.2,32.3,0.91,7.130,197.3 -33.2,0.91,6.450,193.7,33.0,0.91,6.500,193.8 -33.7,0.91,5.470,203.2,33.5,0.91,5.520,202.8 -34.1,0.91,5.590,195.5,33.9,0.91,5.600,194.7 -34.3,0.91,5.250,183.7,34.1,0.91,5.330,183.6 -34.2,0.91,5.350,177.2,34.0,0.91,5.450,176.8 -33.8,0.91,7.950,161.9,33.6,0.91,8.090,161.7 -33.4,0.91,8.690,161.9,33.2,0.91,9.240,161.7 -32.6,0.91,10.580,152.4,32.5,0.91,11.010,153.1 -31.6,0.91,12.240,157.0,31.6,0.91,13.000,157.5 -30.7,0.91,13.050,161.0,30.7,0.91,13.820,161.8 -29.3,0.91,13.260,178.5,29.3,0.91,13.980,180.2 -28.9,0.91,12.940,191.7,28.9,0.91,13.670,192.8 -28.1,0.91,13.200,192.7,28.1,0.91,13.920,194.0 -27.4,0.91,13.790,195.3,27.4,0.91,14.550,196.3 -26.9,0.91,14.400,199.8,26.9,0.91,15.260,200.8 -26.2,0.91,14.250,199.9,26.2,0.91,15.100,201.3 -25.3,0.91,14.030,199.1,25.3,0.91,14.770,200.6 -24.6,0.91,13.390,202.1,24.5,0.91,14.020,202.8 -24.9,0.91,12.180,204.4,24.8,0.91,12.310,204.6 -26.4,0.91,10.850,204.6,26.2,0.91,10.920,204.8 -28.1,0.91,9.860,204.7,27.9,0.91,9.940,204.9 -29.7,0.91,8.170,199.1,29.5,0.91,8.240,199.2 -30.9,0.91,6.640,190.8,30.6,0.91,6.680,190.9 -31.8,0.91,4.860,176.6,31.6,0.91,4.870,176.6 -32.6,0.91,4.850,154.7,32.4,0.91,4.880,155.1 -33.2,0.91,4.920,156.9,33.0,0.91,4.970,156.9 -33.4,0.91,5.650,152.3,33.2,0.91,5.670,152.6 -33.6,0.91,7.460,151.8,33.4,0.91,7.550,152.1 -33.5,0.91,6.070,170.6,33.3,0.91,6.140,170.5 -33.1,0.91,7.960,162.8,33.0,0.91,8.160,162.7 -32.3,0.91,9.980,149.5,32.2,0.91,10.510,149.5 -31.4,0.91,11.920,152.9,31.4,0.91,12.570,153.3 -30.7,0.91,12.030,158.7,30.7,0.91,12.830,159.6 -29.8,0.91,12.610,169.5,29.8,0.91,13.310,170.9 -28.9,0.91,12.310,181.9,28.8,0.91,13.010,182.9 -28.3,0.91,12.070,189.7,28.3,0.91,12.680,191.2 -27.7,0.91,12.280,191.3,27.6,0.91,12.960,192.1 -27.1,0.91,12.390,191.4,27.0,0.91,13.080,191.9 -25.8,0.91,12.200,186.0,25.7,0.91,12.690,186.6 -24.7,0.91,12.810,191.5,24.7,0.91,13.620,193.0 -24.0,0.91,12.230,194.4,24.0,0.91,12.990,195.5 -23.6,0.91,10.770,197.5,23.5,0.91,11.350,198.0 -24.3,0.91,9.420,196.0,24.1,0.91,9.510,196.2 -25.5,0.91,7.940,200.1,25.3,0.91,8.010,200.2 -26.9,0.91,7.160,198.1,26.7,0.91,7.220,198.2 -28.1,0.91,6.540,187.1,27.9,0.91,6.600,187.2 -29.2,0.91,5.760,180.2,29.0,0.91,5.800,180.3 -30.4,0.91,4.540,168.7,30.2,0.91,4.580,169.4 -30.9,0.91,5.370,170.7,30.7,0.91,5.380,170.6 -31.8,0.91,5.230,192.5,31.6,0.91,5.260,190.9 -32.3,0.91,5.600,165.3,32.1,0.91,5.680,165.3 -32.2,0.91,7.080,160.4,32.0,0.91,7.130,160.2 -32.3,0.91,6.720,147.2,32.1,0.91,6.810,147.4 -32.1,0.91,7.100,150.8,31.9,0.91,7.360,150.8 -31.9,0.91,9.140,161.1,31.8,0.91,9.540,161.4 -31.1,0.91,10.130,156.2,31.0,0.91,10.720,156.6 -30.1,0.91,10.310,160.3,30.1,0.91,11.080,162.2 -29.1,0.91,11.880,173.3,29.1,0.91,12.710,174.6 -28.3,0.91,12.100,183.7,28.3,0.91,12.890,184.9 -27.7,0.91,12.070,191.7,27.7,0.91,12.820,192.7 -27.1,0.91,13.030,194.6,27.0,0.91,13.910,195.1 -26.2,0.91,13.480,193.5,26.1,0.91,14.360,193.8 -25.0,0.91,13.170,195.3,24.9,0.91,14.020,196.4 -24.1,0.91,12.630,202.5,24.1,0.91,13.460,203.1 -23.7,0.91,12.910,202.8,23.7,0.91,13.830,203.8 -23.6,0.91,12.370,207.9,23.4,0.91,12.650,208.2 -24.3,0.91,10.820,207.8,24.1,0.91,10.950,208.1 -25.7,0.91,9.120,207.1,25.5,0.91,9.210,207.2 -27.3,0.91,7.990,211.0,27.0,0.91,8.070,211.1 -28.6,0.91,6.900,200.6,28.4,0.91,6.960,200.8 -29.8,0.91,6.460,194.8,29.6,0.91,6.520,195.0 -30.8,0.91,6.080,191.1,30.6,0.91,6.140,191.3 -31.8,0.91,6.010,187.1,31.5,0.91,6.050,187.5 -32.4,0.91,6.220,200.7,32.2,0.91,6.260,200.2 -33.2,0.91,5.090,190.6,33.0,0.91,5.150,190.6 -33.3,0.91,5.860,173.6,33.1,0.91,5.930,173.7 -33.2,0.91,6.410,176.2,33.0,0.91,6.460,176.1 -33.1,0.91,5.930,175.8,32.9,0.91,6.040,175.1 -32.7,0.91,8.730,164.0,32.5,0.91,9.050,163.5 -31.5,0.91,10.690,165.1,31.5,0.91,11.240,166.4 -30.6,0.91,13.750,180.5,30.6,0.91,14.550,182.0 -29.5,0.91,12.840,195.5,29.6,0.91,13.830,196.3 -28.5,0.91,13.570,194.9,28.5,0.91,14.590,196.2 -27.8,0.91,14.400,198.5,27.8,0.91,15.430,199.0 -27.4,0.91,15.200,196.8,27.5,0.91,16.250,197.3 -26.8,0.91,16.030,199.1,26.8,0.91,17.080,199.4 -25.9,0.91,15.480,200.4,25.9,0.91,16.460,201.0 -24.9,0.91,15.520,201.0,24.9,0.91,16.510,201.8 -24.2,0.91,15.460,202.6,24.3,0.91,16.440,203.9 -23.7,0.91,14.870,204.3,23.7,0.91,15.610,204.9 -24.2,0.91,12.720,206.8,24.1,0.91,12.970,207.1 -25.8,0.91,12.200,205.1,25.6,0.91,12.290,205.3 -27.7,0.91,10.560,205.3,27.5,0.91,10.630,205.5 -29.6,0.91,9.290,205.8,29.4,0.91,9.360,205.9 -31.2,0.91,7.820,206.2,30.9,0.91,7.880,206.4 -32.5,0.91,6.540,195.8,32.3,0.91,6.580,196.1 -33.6,0.91,6.050,190.9,33.3,0.91,6.100,191.2 -34.3,0.90,6.030,194.4,34.1,0.90,6.070,194.7 -34.8,0.90,5.610,195.3,34.5,0.90,5.660,195.5 -34.9,0.90,6.750,173.7,34.6,0.90,6.780,174.4 -35.0,0.90,5.840,181.6,34.8,0.90,5.900,181.8 -34.7,0.90,8.170,172.7,34.5,0.90,8.200,172.2 -34.5,0.90,9.280,163.0,34.4,0.90,9.330,163.3 -33.7,0.90,11.000,164.2,33.7,0.90,11.310,164.7 -32.1,0.90,14.040,171.4,32.1,0.90,14.830,172.7 -30.7,0.90,13.560,184.3,30.7,0.90,14.110,186.3 -29.7,0.90,13.710,190.1,29.7,0.90,14.430,192.2 -28.9,0.90,13.200,198.5,28.8,0.90,13.990,200.8 -28.3,0.90,14.300,200.7,28.4,0.90,15.290,202.0 -27.9,0.90,14.810,199.2,27.9,0.90,15.860,200.5 -27.3,0.90,14.460,203.9,27.3,0.90,15.360,204.9 -26.4,0.90,15.350,205.8,26.4,0.90,16.260,206.9 -25.5,0.90,14.110,205.7,25.6,0.90,14.890,207.5 -24.9,0.91,13.080,211.3,24.9,0.91,13.820,212.6 -25.9,0.91,11.740,211.0,25.7,0.91,11.950,211.6 -27.8,0.91,10.590,212.1,27.6,0.91,10.670,212.5 -29.9,0.91,10.310,215.6,29.7,0.91,10.400,215.9 -31.9,0.91,9.460,212.8,31.7,0.91,9.550,213.0 -33.4,0.91,7.150,210.9,33.2,0.91,7.220,211.0 -34.4,0.91,7.330,198.4,34.1,0.91,7.400,198.6 -35.1,0.90,7.000,192.3,34.8,0.90,7.070,192.4 -35.4,0.90,6.650,187.7,35.2,0.90,6.710,187.9 -35.7,0.90,5.990,197.3,35.5,0.90,6.030,196.9 -35.9,0.90,6.800,177.5,35.7,0.90,6.880,177.2 -35.7,0.90,7.470,181.0,35.5,0.90,7.510,181.0 -35.3,0.90,8.730,156.7,35.2,0.90,9.170,156.4 -34.6,0.90,11.470,156.7,34.6,0.90,11.960,157.5 -33.6,0.90,13.310,158.6,33.6,0.90,14.190,159.6 -32.1,0.90,7.530,260.3,31.8,0.90,7.440,260.6 -32.4,0.90,5.410,265.3,32.3,0.90,5.360,261.2 -30.6,0.90,4.570,184.9,30.5,0.90,4.400,179.9 -30.3,0.90,4.120,238.3,30.2,0.90,4.300,240.5 -29.6,0.90,9.100,207.7,29.6,0.90,8.960,207.8 -28.9,0.90,12.490,209.4,29.0,0.90,13.260,210.2 -28.4,0.90,11.740,201.8,28.3,0.90,12.380,203.0 -27.4,0.90,11.820,204.0,27.3,0.90,12.550,205.0 -25.9,0.91,10.990,203.7,25.8,0.91,11.910,207.1 -25.3,0.91,11.100,215.7,25.3,0.91,11.760,216.7 -25.9,0.91,7.890,208.3,25.7,0.91,7.960,208.9 -27.5,0.91,7.360,203.6,27.3,0.91,7.410,204.1 -29.2,0.91,7.050,201.3,29.0,0.91,7.110,201.6 -30.4,0.91,7.120,190.5,30.2,0.91,7.180,190.6 -31.6,0.91,7.070,185.4,31.4,0.91,7.140,185.5 -32.7,0.91,6.780,183.4,32.4,0.91,6.860,183.2 -33.7,0.90,7.370,180.2,33.5,0.90,7.440,180.7 -34.2,0.90,8.490,179.1,34.0,0.90,8.550,179.0 -34.6,0.90,8.130,181.6,34.4,0.90,8.140,181.7 -35.0,0.90,7.740,187.3,34.8,0.90,7.810,186.6 -34.9,0.90,8.940,186.3,34.7,0.90,8.990,186.3 -34.7,0.90,8.770,182.0,34.5,0.90,8.890,182.5 -33.6,0.90,10.460,169.3,33.6,0.90,11.420,169.6 -31.0,0.90,4.980,188.0,31.0,0.90,5.860,181.2 -30.1,0.90,6.270,205.0,30.3,0.90,7.320,223.5 -30.9,0.90,10.110,168.1,31.0,0.90,10.520,168.4 -29.7,0.90,13.810,184.1,29.8,0.90,14.300,184.6 -29.2,0.90,14.590,191.8,29.3,0.90,15.390,192.8 -28.8,0.91,13.220,196.1,28.8,0.91,13.990,197.4 -28.2,0.91,12.820,199.0,28.3,0.91,13.800,200.9 -26.8,0.91,12.360,187.8,26.9,0.91,12.850,189.8 -25.6,0.91,7.430,193.8,25.8,0.91,8.630,195.0 -25.4,0.91,6.820,200.1,25.4,0.91,7.610,204.6 -25.1,0.91,6.350,208.9,25.0,0.91,6.750,210.5 -25.3,0.91,5.940,214.2,25.1,0.91,6.030,214.7 -26.5,0.91,5.270,219.3,26.3,0.91,5.320,219.5 -28.1,0.91,4.200,227.1,27.9,0.91,4.220,227.3 -29.6,0.91,2.610,214.2,29.4,0.91,2.610,214.7 -30.9,0.91,1.140,203.4,30.7,0.91,1.150,203.3 -32.0,0.91,0.860,126.6,31.8,0.91,0.870,128.4 -32.9,0.91,2.010,131.5,32.6,0.91,2.040,131.8 -33.3,0.91,1.070,128.8,33.1,0.91,1.070,128.7 -33.8,0.91,1.820,105.7,33.5,0.91,1.790,106.4 -33.9,0.91,2.630,98.2,33.7,0.91,2.620,98.8 -34.0,0.91,2.900,119.7,33.8,0.91,2.920,119.6 -33.5,0.91,5.150,29.6,33.4,0.91,5.080,32.3 -31.8,0.91,5.190,139.2,31.6,0.91,5.560,141.6 -30.9,0.91,9.400,142.5,30.8,0.91,10.080,142.2 -30.2,0.91,6.780,154.5,30.1,0.91,7.190,152.5 -29.4,0.91,5.480,125.7,29.6,0.91,6.940,124.4 -29.7,0.91,7.270,108.9,29.5,0.91,6.570,108.4 -28.0,0.91,6.000,66.4,27.9,0.91,6.320,68.0 -27.4,0.91,6.890,72.0,27.2,0.91,7.080,68.7 -26.8,0.91,6.950,64.8,26.5,0.91,7.050,64.9 -25.7,0.91,5.420,53.6,25.5,0.91,5.540,53.1 -24.6,0.91,6.310,45.4,24.4,0.91,6.460,44.5 -24.2,0.91,7.240,34.3,24.0,0.91,7.510,35.3 -23.1,0.91,6.280,39.1,22.9,0.91,6.500,40.0 -23.4,0.91,6.320,52.1,23.2,0.91,6.350,52.2 -24.7,0.91,6.100,40.0,24.5,0.91,6.130,40.1 -25.9,0.91,5.770,42.7,25.7,0.91,5.790,42.8 -27.1,0.91,5.650,42.7,26.9,0.91,5.680,42.6 -28.1,0.91,5.070,42.1,27.9,0.91,5.090,42.2 -29.1,0.91,4.980,46.6,28.9,0.91,5.000,46.8 -30.0,0.91,4.540,40.5,29.8,0.91,4.550,40.8 -30.8,0.91,4.560,44.2,30.5,0.91,4.580,44.4 -31.2,0.91,5.060,52.9,30.9,0.91,5.090,53.1 -31.6,0.91,4.990,59.4,31.4,0.91,5.040,59.8 -31.4,0.91,5.870,57.6,31.2,0.91,5.940,58.0 -30.9,0.91,5.630,90.4,30.7,0.91,5.760,90.4 -30.2,0.91,3.350,106.8,30.0,0.91,3.720,105.0 -27.3,0.91,6.230,202.0,27.3,0.91,6.620,200.1 -28.4,0.91,4.420,207.3,28.4,0.91,4.290,200.8 -27.0,0.91,3.960,269.2,27.3,0.91,3.410,260.1 -28.1,0.91,0.640,113.2,28.0,0.91,1.120,109.6 -27.2,0.91,3.020,38.6,27.1,0.91,3.260,42.6 -26.1,0.91,3.830,33.2,26.0,0.91,4.040,34.4 -25.1,0.91,3.400,35.8,25.1,0.91,3.690,39.1 -24.6,0.91,3.510,32.8,24.5,0.91,3.510,39.9 -24.3,0.91,2.210,40.7,24.3,0.91,2.370,46.1 -24.1,0.91,0.860,30.6,24.2,0.91,0.690,50.6 -24.3,0.91,0.960,242.9,24.3,0.91,1.220,225.9 -25.4,0.91,2.220,217.3,25.2,0.91,2.270,217.6 -27.0,0.91,3.370,241.8,26.8,0.91,3.400,241.8 -28.3,0.91,2.310,249.1,28.0,0.91,2.330,249.3 -29.2,0.91,2.370,204.4,29.0,0.91,2.370,204.8 -30.2,0.91,1.820,204.4,29.9,0.91,1.830,203.6 -30.9,0.91,1.620,170.2,30.7,0.91,1.610,169.7 -31.7,0.91,3.040,154.3,31.4,0.91,3.020,154.2 -30.9,0.91,5.810,91.2,30.7,0.91,5.680,93.1 -28.7,0.91,5.310,49.4,28.5,0.91,5.280,50.2 -28.4,0.91,6.400,47.2,28.2,0.91,6.370,47.2 -30.1,0.91,2.570,41.0,29.9,0.91,2.540,41.2 -26.6,0.91,12.510,140.1,26.4,0.91,12.910,139.3 -28.0,0.91,8.310,128.5,28.1,0.91,8.380,129.8 -27.5,0.91,12.050,142.9,27.4,0.91,12.660,142.7 -26.9,0.91,11.310,154.3,26.8,0.91,11.850,154.7 -25.9,0.91,10.600,162.9,25.8,0.91,11.130,162.8 -25.3,0.91,8.280,161.9,25.2,0.91,8.840,162.1 -24.7,0.91,4.760,174.0,24.6,0.91,5.700,173.7 -24.4,0.91,7.920,178.8,24.4,0.91,8.610,180.1 -24.3,0.91,9.850,201.0,24.3,0.91,10.390,202.8 -23.8,0.91,9.540,198.1,23.8,0.91,9.910,199.3 -23.4,0.91,9.970,213.3,23.3,0.91,10.480,214.7 -23.0,0.91,8.970,218.7,22.9,0.91,9.570,219.8 -22.8,0.91,8.060,221.7,22.6,0.91,8.360,221.8 -23.5,0.91,7.190,221.3,23.3,0.91,7.250,221.2 -24.9,0.91,5.590,223.3,24.7,0.91,5.630,223.2 -26.3,0.91,5.110,206.0,26.1,0.91,5.150,205.9 -27.8,0.91,4.600,193.6,27.6,0.91,4.630,193.7 -28.9,0.91,4.280,183.6,28.6,0.91,4.290,183.7 -29.7,0.91,3.860,175.2,29.5,0.91,3.870,175.2 -30.7,0.91,3.890,182.7,30.5,0.91,3.920,180.9 -31.3,0.91,4.010,166.4,31.1,0.91,4.040,166.3 -31.3,0.91,6.180,160.7,31.1,0.91,6.180,160.8 -31.5,0.91,5.100,165.0,31.3,0.91,5.130,164.9 -31.5,0.91,4.920,170.1,31.3,0.91,4.960,170.1 -31.2,0.91,4.940,159.3,31.0,0.91,5.050,159.7 -30.7,0.91,6.830,168.7,30.6,0.91,7.150,169.2 -29.8,0.91,8.760,162.7,29.7,0.91,9.140,163.0 -29.6,0.91,10.340,177.1,29.5,0.91,11.040,178.0 -28.7,0.91,11.100,192.5,28.7,0.91,11.820,193.9 -28.0,0.91,11.410,206.2,28.0,0.91,12.280,207.6 -27.2,0.91,11.570,205.6,27.1,0.91,12.420,206.6 -26.5,0.91,12.520,208.5,26.4,0.91,13.420,209.0 -26.0,0.91,12.470,209.2,26.0,0.91,13.260,209.6 -25.6,0.91,13.000,208.7,25.6,0.91,13.840,209.1 -25.2,0.91,12.650,212.3,25.2,0.91,13.470,213.0 -24.6,0.91,13.290,212.4,24.5,0.91,14.160,213.1 -23.9,0.91,11.960,217.6,23.8,0.91,12.460,217.6 -24.4,0.91,10.010,219.6,24.3,0.91,10.140,219.7 -25.9,0.91,8.470,221.2,25.7,0.91,8.550,221.3 -27.3,0.91,6.860,226.6,27.1,0.91,6.930,226.7 -28.6,0.91,4.850,226.1,28.4,0.91,4.890,226.3 -29.8,0.91,3.240,212.0,29.6,0.91,3.250,212.2 -30.7,0.91,3.810,194.7,30.5,0.91,3.830,194.8 -31.4,0.91,2.900,181.0,31.2,0.91,2.910,181.3 -32.1,0.91,3.190,180.2,31.9,0.91,3.190,180.1 -32.4,0.91,3.010,160.9,32.2,0.91,3.020,161.4 -32.6,0.91,4.150,202.3,32.4,0.91,4.090,201.7 -32.7,0.91,3.140,177.4,32.5,0.91,3.160,178.5 -32.7,0.91,3.630,165.7,32.5,0.91,3.570,167.5 -32.2,0.91,3.730,178.9,32.0,0.91,3.730,179.9 -31.8,0.91,2.250,84.6,31.7,0.91,2.250,85.3 -26.1,0.91,8.310,56.6,25.9,0.91,8.900,58.0 -25.0,0.91,8.080,65.3,24.8,0.91,8.640,66.2 -24.2,0.91,7.490,50.7,23.9,0.91,7.860,52.9 -22.9,0.91,7.830,41.1,22.7,0.91,8.050,42.6 -22.2,0.91,8.920,57.8,22.1,0.91,9.280,58.3 -21.6,0.91,8.340,56.4,21.4,0.91,8.690,57.4 -21.2,0.91,7.810,63.4,21.1,0.91,8.200,65.2 -21.1,0.91,6.430,80.8,21.0,0.91,7.140,82.9 -20.9,0.91,7.200,41.5,20.8,0.91,7.350,44.3 -20.8,0.91,6.500,45.2,20.7,0.91,6.870,45.4 -21.1,0.91,6.630,48.6,20.9,0.91,6.650,48.8 -21.9,0.91,5.670,50.7,21.7,0.91,5.670,51.0 -24.3,0.91,4.870,56.1,24.1,0.91,4.910,56.3 -25.9,0.91,4.810,58.9,25.7,0.91,4.850,59.0 -26.9,0.91,5.090,35.6,26.7,0.91,5.100,35.9 -28.1,0.91,4.320,38.0,27.9,0.91,4.320,38.1 -28.7,0.91,4.710,45.3,28.4,0.91,4.720,45.4 -29.3,0.91,4.340,44.2,29.1,0.91,4.330,44.4 -30.0,0.91,3.210,50.5,29.8,0.91,3.210,50.6 -30.4,0.91,3.890,59.5,30.1,0.91,3.900,59.1 -30.3,0.91,4.380,53.4,30.1,0.91,4.420,53.6 -27.5,0.91,7.900,53.4,27.3,0.91,8.160,53.3 -27.0,0.91,7.080,106.0,26.9,0.91,7.360,104.6 -26.5,0.91,6.680,84.2,26.3,0.91,6.960,85.3 -25.9,0.91,6.540,83.5,25.7,0.91,6.900,84.8 -24.9,0.91,5.760,93.0,24.8,0.91,6.110,93.8 -23.6,0.91,4.610,80.7,23.4,0.91,4.860,84.0 -22.7,0.91,8.020,123.1,22.6,0.91,8.420,123.7 -22.9,0.91,4.940,133.2,22.8,0.91,5.360,134.4 -20.8,0.91,5.410,355.1,20.7,0.91,5.770,353.0 -20.9,0.91,7.090,136.4,20.7,0.91,7.420,138.5 -20.8,0.91,5.130,160.7,20.6,0.91,5.430,159.9 -20.9,0.91,4.820,181.9,20.8,0.91,5.240,182.8 -20.8,0.91,3.180,175.1,20.7,0.91,3.350,176.3 -21.8,0.91,2.450,149.6,21.6,0.91,2.490,150.2 -23.6,0.91,2.780,201.7,23.4,0.91,2.780,201.8 -25.1,0.91,1.530,303.4,24.9,0.91,1.550,303.8 -26.3,0.91,1.820,3.2,26.0,0.91,1.810,1.2 -27.1,0.91,2.950,23.2,26.9,0.91,2.930,22.3 -28.4,0.91,3.540,12.1,28.2,0.91,3.530,11.7 -29.1,0.91,3.160,37.0,28.9,0.91,3.120,35.5 -29.9,0.91,3.220,53.0,29.7,0.91,3.200,52.4 -30.3,0.91,3.870,44.6,30.1,0.91,3.820,45.0 -29.8,0.91,4.740,75.1,29.6,0.91,4.740,74.8 -29.2,0.91,2.380,78.9,29.1,0.91,2.420,78.7 -24.7,0.91,1.550,278.1,24.6,0.91,1.170,293.7 -24.3,0.91,4.590,110.9,24.1,0.91,4.560,114.3 -25.5,0.91,8.070,131.4,25.4,0.91,8.540,131.6 -25.2,0.91,9.260,156.2,25.1,0.91,9.710,156.4 -25.0,0.91,7.830,167.8,25.0,0.91,8.610,164.9 -23.3,0.91,8.820,194.1,23.2,0.91,9.180,192.4 -23.3,0.91,10.220,188.9,23.2,0.91,10.780,187.8 -23.0,0.91,9.600,209.4,22.9,0.91,9.970,208.2 -23.4,0.91,8.770,198.4,23.4,0.91,9.060,195.8 -22.9,0.91,5.800,190.4,22.9,0.91,6.060,186.8 -16.9,0.91,15.700,54.7,16.7,0.91,16.270,53.6 -16.8,0.91,10.230,93.6,16.6,0.91,10.740,93.6 -16.9,0.91,6.720,88.4,16.7,0.91,6.920,89.3 -19.1,0.91,4.480,98.9,18.9,0.91,4.570,99.5 -18.6,0.91,8.330,87.7,18.5,0.91,8.460,87.6 -22.4,0.91,5.670,131.1,22.2,0.91,5.750,130.3 -25.2,0.91,5.260,121.4,24.9,0.91,5.310,121.4 -25.5,0.91,4.460,119.9,25.3,0.91,4.480,120.2 -27.0,0.91,1.950,120.3,26.8,0.91,1.950,120.3 -28.2,0.91,2.340,67.9,27.9,0.91,2.310,69.4 -29.1,0.91,3.260,49.0,28.9,0.91,3.220,49.7 -29.5,0.91,2.720,30.6,29.2,0.91,2.700,32.0 -29.7,0.91,3.280,73.5,29.5,0.91,3.290,73.0 -29.0,0.91,7.370,85.9,28.8,0.91,7.440,85.7 -28.2,0.91,7.570,82.1,28.0,0.91,7.880,82.4 -26.9,0.91,8.360,81.0,26.8,0.91,8.830,81.3 -26.1,0.91,8.220,89.7,26.0,0.91,8.780,89.6 -25.8,0.91,7.810,88.6,25.7,0.91,8.110,88.5 -25.4,0.91,8.650,96.1,25.3,0.91,8.990,96.3 -24.7,0.91,8.930,114.3,24.7,0.91,9.590,113.9 -24.1,0.91,9.790,118.1,24.1,0.91,10.180,118.3 -23.8,0.91,9.350,119.9,23.8,0.91,9.770,119.5 -23.3,0.91,10.160,129.4,23.3,0.91,10.570,129.8 -23.0,0.91,8.850,138.5,23.0,0.91,8.920,138.7 -22.6,0.91,6.860,138.3,22.6,0.91,6.380,139.2 -22.2,0.91,6.360,140.8,22.1,0.91,5.840,140.4 -21.7,0.91,5.630,141.8,22.0,0.91,5.410,141.9 -21.5,0.91,4.580,145.1,21.4,0.91,4.610,145.2 -23.1,0.91,3.890,129.8,22.9,0.91,3.890,130.0 -24.5,0.91,4.020,131.2,24.3,0.91,4.030,131.4 -25.6,0.91,4.090,130.6,25.4,0.91,4.100,130.9 -26.9,0.91,4.360,136.8,26.7,0.91,4.390,137.3 -28.0,0.91,4.220,118.1,27.8,0.91,4.220,118.3 -28.8,0.91,4.740,129.7,28.5,0.91,4.770,129.8 -29.3,0.91,5.430,123.7,29.1,0.91,5.480,124.0 -29.7,0.91,5.520,123.9,29.4,0.91,5.560,124.3 -29.8,0.91,5.290,128.3,29.5,0.91,5.340,128.5 -29.5,0.91,6.810,123.0,29.3,0.91,6.880,123.5 -28.9,0.91,7.810,126.2,28.7,0.91,8.060,126.4 -27.7,0.91,8.970,124.2,27.5,0.91,9.520,124.5 -26.6,0.91,9.690,128.3,26.4,0.91,10.280,128.2 -25.7,0.91,10.220,129.5,25.6,0.91,10.930,129.3 -25.1,0.91,11.040,132.6,25.0,0.91,11.760,132.4 -24.7,0.91,10.550,142.8,24.6,0.91,11.300,142.3 -24.2,0.91,11.620,143.0,24.1,0.91,12.410,143.1 -23.8,0.91,11.390,149.2,23.8,0.91,12.130,149.4 -22.9,0.91,12.330,155.2,22.9,0.91,13.090,155.2 -22.3,0.91,6.530,195.0,22.2,0.91,7.250,191.7 -21.5,0.91,10.570,142.3,21.4,0.91,10.840,143.1 -21.8,0.91,10.500,175.4,22.0,0.91,10.750,175.4 -22.5,0.91,10.420,179.8,22.8,0.91,11.020,179.3 -22.5,0.91,7.320,179.5,22.4,0.91,7.420,179.6 -24.0,0.91,5.570,172.1,23.9,0.91,5.630,172.3 -25.3,0.91,5.970,175.9,25.1,0.91,6.020,176.1 -26.5,0.91,5.320,163.4,26.3,0.91,5.350,163.6 -27.8,0.91,4.750,159.1,27.5,0.91,4.780,159.3 -29.0,0.91,4.900,157.6,28.8,0.91,4.940,157.7 -29.8,0.91,5.690,151.2,29.6,0.91,5.740,151.4 -30.4,0.91,5.900,146.3,30.1,0.91,5.960,146.5 -30.7,0.91,6.970,145.7,30.4,0.91,7.050,146.0 -30.6,0.91,7.510,136.9,30.4,0.91,7.590,137.4 -30.3,0.91,7.990,137.8,30.1,0.91,8.100,138.0 -29.7,0.91,8.520,144.7,29.5,0.91,8.860,144.9 -28.6,0.91,10.520,144.3,28.4,0.91,11.100,144.2 -27.8,0.91,11.090,142.8,27.7,0.91,11.740,142.9 -27.1,0.91,11.740,153.6,26.9,0.91,12.420,153.3 -26.4,0.91,12.660,155.6,26.3,0.91,13.360,155.7 -25.9,0.91,12.630,161.7,25.8,0.91,13.260,161.6 -25.5,0.91,12.740,166.3,25.5,0.91,13.390,166.3 -25.2,0.91,13.380,168.3,25.2,0.91,14.030,168.7 -24.7,0.91,12.980,178.5,24.8,0.91,13.630,179.5 -24.2,0.91,11.970,177.6,24.2,0.91,12.650,178.6 -23.9,0.91,11.700,176.7,23.9,0.91,12.270,178.0 -23.3,0.91,10.790,171.0,23.3,0.91,11.350,172.5 -23.3,0.91,11.210,170.5,23.4,0.91,11.670,171.5 -23.8,0.91,8.590,171.4,23.7,0.91,8.750,171.5 -25.4,0.91,8.380,174.4,25.2,0.91,8.490,174.5 -26.6,0.91,7.700,179.2,26.4,0.91,7.790,179.3 -27.6,0.91,7.490,178.8,27.4,0.91,7.560,178.8 -28.5,0.91,6.950,175.8,28.3,0.91,6.970,175.8 -29.4,0.91,6.620,172.8,29.2,0.91,6.630,172.7 -30.4,0.91,6.390,158.2,30.2,0.91,6.440,158.6 -30.9,0.91,6.010,150.0,30.7,0.91,6.050,150.3 -31.2,0.91,7.130,141.7,30.9,0.91,7.190,142.0 -31.3,0.91,6.640,151.1,31.0,0.91,6.710,151.2 -31.1,0.91,7.000,142.7,30.9,0.91,7.100,143.1 -30.4,0.91,8.810,137.4,30.2,0.91,9.110,137.9 -29.7,0.91,9.680,142.8,29.6,0.91,10.150,142.8 -28.9,0.91,10.120,143.8,28.8,0.91,10.550,143.9 -28.1,0.91,10.870,148.5,27.9,0.91,11.560,148.5 -27.5,0.91,12.600,160.1,27.4,0.91,13.110,159.9 -26.9,0.91,5.190,224.1,26.7,0.91,5.280,217.9 -25.1,0.91,7.130,243.5,25.2,0.91,7.200,238.8 -22.8,0.91,5.590,167.4,22.6,0.91,5.980,168.4 -23.1,0.91,3.380,117.1,23.1,0.91,3.450,127.3 -23.7,0.91,9.720,179.8,23.9,0.91,9.800,180.2 -23.9,0.91,9.710,179.8,24.0,0.91,10.080,180.9 -24.0,0.91,10.390,185.5,24.1,0.91,10.710,186.1 -23.6,0.91,10.960,182.4,23.6,0.91,11.330,182.5 -23.9,0.91,9.980,183.4,23.7,0.91,10.100,183.5 -25.4,0.91,9.410,191.7,25.2,0.91,9.490,191.8 -26.6,0.91,8.330,192.1,26.4,0.91,8.390,192.2 -27.5,0.91,7.780,184.1,27.3,0.91,7.840,184.1 -28.6,0.91,5.790,181.8,28.3,0.91,5.850,181.5 -29.0,0.91,5.080,165.4,28.8,0.91,5.100,165.5 -29.9,0.91,5.090,154.3,29.7,0.91,5.140,154.3 -30.3,0.91,5.270,136.8,30.1,0.91,5.320,137.0 -30.6,0.91,5.390,130.4,30.4,0.91,5.420,130.6 -30.5,0.91,5.720,127.8,30.3,0.91,5.760,128.0 -30.2,0.91,6.770,131.4,30.0,0.91,6.830,131.5 -29.5,0.91,8.410,137.3,29.3,0.91,8.700,137.5 -28.5,0.91,10.400,144.6,28.4,0.91,10.960,144.6 -27.9,0.91,11.320,145.1,27.8,0.91,11.950,145.1 -27.2,0.91,12.530,151.3,27.2,0.91,13.260,151.0 -26.9,0.91,12.980,153.6,26.9,0.91,13.590,153.6 -26.9,0.91,12.420,153.8,26.9,0.91,12.760,154.2 -25.3,0.91,12.440,162.2,25.5,0.91,12.770,162.2 -23.3,0.91,12.180,181.2,23.3,0.91,12.690,182.1 -22.7,0.91,11.240,186.1,22.7,0.91,11.630,187.2 -22.6,0.91,10.780,187.3,22.6,0.91,11.170,187.3 -22.6,0.91,9.620,186.3,22.7,0.91,9.940,186.5 -21.8,0.91,9.750,189.4,21.9,0.91,10.020,190.9 -21.7,0.91,9.790,188.8,21.8,0.91,9.960,190.9 -21.9,0.91,7.370,191.2,21.8,0.91,7.590,192.1 -23.6,0.91,6.140,193.4,23.4,0.91,6.180,193.4 -25.8,0.91,4.550,164.7,25.6,0.91,4.580,164.3 -26.8,0.91,3.360,131.9,26.6,0.91,3.370,131.8 -27.7,0.91,3.340,120.2,27.4,0.91,3.360,120.2 -28.4,0.91,3.560,120.5,28.2,0.91,3.610,120.4 -29.1,0.91,2.100,88.5,28.9,0.91,2.090,89.8 -29.7,0.91,5.070,136.6,29.4,0.91,5.070,136.8 -29.6,0.91,3.970,107.7,29.4,0.91,3.990,108.6 -29.9,0.91,2.850,152.4,29.7,0.91,2.900,152.1 -29.9,0.91,5.530,132.9,29.6,0.91,5.600,133.2 -27.7,0.91,10.200,162.1,27.5,0.91,10.350,162.1 -26.5,0.91,8.670,155.4,26.4,0.91,8.920,155.6 -26.1,0.91,9.890,160.1,25.9,0.91,10.240,160.1 -25.8,0.91,8.900,164.1,25.7,0.91,9.250,164.5 -24.8,0.91,10.320,168.8,24.6,0.91,10.730,168.8 -24.2,0.91,9.750,180.0,24.0,0.91,10.140,181.0 -24.1,0.91,10.480,189.5,24.0,0.91,10.890,190.9 -23.5,0.91,10.870,186.9,23.4,0.91,11.210,188.1 -23.0,0.91,10.180,203.2,22.9,0.91,10.610,204.6 -22.8,0.91,10.600,208.8,22.7,0.91,11.070,209.4 -22.4,0.91,9.630,203.5,22.3,0.91,10.150,204.3 -22.1,0.91,9.040,191.8,22.0,0.91,9.480,192.8 -21.5,0.91,7.210,185.7,21.4,0.91,7.640,186.1 -22.5,0.91,6.500,196.2,22.3,0.91,6.540,196.4 -23.9,0.91,6.140,186.2,23.7,0.91,6.190,186.3 -25.5,0.91,5.570,188.7,25.3,0.91,5.630,188.7 -26.8,0.91,5.550,183.0,26.6,0.91,5.600,182.7 -28.1,0.91,5.400,173.4,27.9,0.91,5.450,174.1 -28.9,0.91,5.850,168.6,28.7,0.91,5.890,168.8 -29.6,0.91,6.070,172.7,29.4,0.91,6.110,172.5 -30.3,0.91,5.030,182.2,30.1,0.91,5.070,180.8 -30.7,0.91,5.120,191.8,30.5,0.91,5.130,190.0 -30.8,0.91,4.610,157.6,30.6,0.91,4.670,157.7 -30.7,0.91,5.620,154.7,30.5,0.91,5.680,155.1 -30.4,0.91,6.760,144.9,30.2,0.91,6.920,145.4 -29.7,0.91,7.520,149.0,29.6,0.91,7.930,148.5 -27.2,0.91,11.600,171.5,27.0,0.91,12.050,171.5 -25.6,0.91,10.490,181.5,25.4,0.91,10.880,181.5 -25.2,0.91,9.270,184.9,25.1,0.91,9.660,185.3 -24.9,0.91,10.140,188.2,24.8,0.91,10.590,189.0 -24.3,0.91,10.230,197.4,24.2,0.91,10.680,198.3 -24.6,0.91,9.750,199.1,24.6,0.91,10.320,199.0 -23.9,0.91,7.950,194.5,24.0,0.91,8.470,196.6 -24.0,0.91,7.130,194.3,24.1,0.91,7.380,194.0 -24.0,0.91,7.410,197.9,24.1,0.91,7.530,197.7 -24.0,0.91,6.970,191.5,24.1,0.91,6.990,191.9 -23.8,0.91,6.280,184.1,24.0,0.91,6.480,184.7 -24.2,0.91,4.870,201.4,24.1,0.91,4.940,201.8 -25.7,0.91,4.280,209.7,25.5,0.91,4.310,210.0 -27.0,0.91,3.680,187.7,26.8,0.91,3.710,187.6 -28.0,0.91,3.740,188.9,27.8,0.91,3.750,188.6 -28.9,0.91,3.860,173.5,28.7,0.91,3.880,173.1 -29.8,0.91,4.060,147.6,29.5,0.91,4.080,147.8 -30.4,0.91,4.690,146.3,30.2,0.91,4.730,146.3 -31.0,0.91,5.960,131.3,30.8,0.91,6.000,131.6 -31.0,0.91,7.460,115.3,30.8,0.91,7.470,115.7 -31.0,0.91,8.010,134.2,30.8,0.91,8.020,134.2 -30.5,0.91,3.160,177.1,30.3,0.91,3.190,171.3 -29.3,0.91,5.690,99.5,29.2,0.91,5.970,102.1 -28.5,0.91,5.560,216.2,28.3,0.91,5.670,215.5 -27.8,0.91,4.500,215.2,27.7,0.91,4.640,218.1 -26.4,0.91,7.350,193.2,26.4,0.91,7.460,194.6 -26.3,0.91,4.690,220.3,26.3,0.91,4.400,218.7 -26.0,0.91,3.580,205.7,25.9,0.91,3.600,201.1 -25.7,0.91,3.350,200.7,25.7,0.91,3.490,196.1 -25.7,0.91,3.750,181.7,25.7,0.91,4.000,181.0 -25.6,0.91,4.410,199.1,25.6,0.91,4.550,199.8 -25.1,0.91,5.420,199.5,25.1,0.91,5.590,199.3 -24.4,0.91,5.600,209.1,24.4,0.91,5.710,210.7 -24.9,0.91,4.900,208.3,25.0,0.91,5.040,206.5 -24.9,0.91,5.070,207.6,25.0,0.91,5.200,206.5 -25.2,0.91,3.940,205.7,25.1,0.91,4.080,205.8 -26.4,0.91,4.110,198.0,26.2,0.91,4.130,197.9 -27.4,0.91,3.670,183.0,27.2,0.91,3.680,182.8 -28.2,0.91,4.040,169.9,28.0,0.91,4.080,169.5 -29.2,0.91,4.390,148.4,29.0,0.91,4.410,148.5 -30.0,0.91,4.930,144.7,29.8,0.91,4.980,144.7 -30.7,0.91,5.260,150.7,30.4,0.91,5.330,150.5 -28.7,0.91,13.870,102.6,28.6,0.91,13.610,103.4 -31.1,0.91,7.760,120.6,30.8,0.91,7.830,120.7 -28.4,0.91,6.120,65.9,28.2,0.91,6.180,66.5 -30.7,0.91,8.020,103.5,30.5,0.91,8.090,103.7 -29.3,0.91,6.950,77.0,29.1,0.91,7.120,78.1 -30.1,0.91,7.310,87.3,29.9,0.91,7.730,87.2 -29.7,0.91,7.370,120.4,29.5,0.91,8.390,117.9 -28.8,0.91,11.000,120.0,28.8,0.91,11.950,120.4 -28.7,0.91,10.450,120.9,28.8,0.91,11.150,121.2 -27.7,0.91,11.180,148.3,27.7,0.91,12.130,150.9 -27.5,0.91,10.990,166.4,27.4,0.91,11.700,167.3 -26.6,0.91,10.580,158.7,26.5,0.91,11.170,159.5 -26.1,0.91,10.290,160.4,26.0,0.91,10.800,161.6 -25.5,0.91,10.260,163.1,25.5,0.91,10.520,164.5 -24.9,0.91,10.600,161.9,25.0,0.91,10.980,162.9 -24.5,0.91,10.370,164.5,24.6,0.91,10.690,165.8 -24.1,0.91,7.800,169.0,24.1,0.91,8.060,169.9 -24.8,0.91,5.710,170.1,24.6,0.91,5.780,170.2 -26.4,0.91,3.590,167.3,26.2,0.91,3.610,167.2 -27.5,0.91,3.310,144.2,27.3,0.91,3.340,144.0 -28.4,0.91,4.370,120.6,28.2,0.91,4.400,120.5 -29.2,0.91,5.160,106.2,29.0,0.91,5.200,106.2 -29.8,0.91,5.310,111.6,29.6,0.91,5.350,111.5 -30.2,0.91,5.760,88.9,30.0,0.91,5.800,89.5 -30.7,0.91,6.440,104.5,30.4,0.91,6.540,105.1 -31.1,0.91,6.910,113.3,30.8,0.91,7.000,113.1 -30.9,0.91,7.790,104.8,30.7,0.91,7.910,104.9 -30.3,0.91,9.050,108.6,30.1,0.91,9.190,108.6 -29.6,0.91,9.230,113.6,29.4,0.91,9.650,114.1 -28.7,0.91,9.000,113.0,28.6,0.91,9.520,113.8 -28.1,0.91,9.480,118.1,28.0,0.91,10.130,118.1 -27.4,0.91,9.760,123.2,27.4,0.91,10.530,123.3 -26.8,0.91,9.540,127.9,26.7,0.91,10.310,128.4 -26.0,0.91,10.300,133.5,25.9,0.91,11.180,133.9 -25.3,0.91,10.360,138.3,25.2,0.91,11.160,138.5 -24.7,0.91,10.150,141.8,24.6,0.91,10.850,142.1 -24.2,0.91,10.350,147.2,24.1,0.91,11.030,148.3 -23.3,0.91,10.270,161.0,23.2,0.91,10.780,162.2 -22.9,0.91,9.260,159.9,22.7,0.91,9.640,159.8 -22.6,0.91,8.140,153.3,22.6,0.91,8.210,153.8 -22.2,0.91,7.830,152.7,22.3,0.91,8.270,153.2 -22.7,0.91,6.240,149.1,22.5,0.91,6.310,149.2 -23.6,0.91,5.710,142.7,23.4,0.91,5.770,142.6 -24.7,0.91,5.230,132.7,24.5,0.91,5.280,132.8 -25.8,0.91,5.380,116.4,25.6,0.91,5.450,116.2 -26.7,0.91,6.230,112.4,26.5,0.91,6.300,112.4 -27.4,0.91,6.130,113.2,27.2,0.91,6.210,113.0 -27.8,0.91,6.870,130.0,27.6,0.91,6.910,129.4 -28.7,0.91,5.250,104.9,28.4,0.91,5.310,105.3 -27.7,0.91,5.390,129.2,27.6,0.91,5.600,128.4 -28.8,0.91,6.840,110.3,28.6,0.91,6.960,110.4 -28.6,0.91,8.710,106.9,28.4,0.91,8.850,107.0 -28.1,0.91,7.460,117.5,27.9,0.91,7.810,117.6 -27.2,0.91,8.890,112.9,27.1,0.91,9.470,113.1 -26.5,0.91,8.400,117.4,26.4,0.91,8.940,117.9 -25.9,0.91,9.030,123.1,25.9,0.91,9.600,123.6 -25.5,0.91,9.170,133.6,25.5,0.91,9.920,134.4 -23.9,0.91,9.830,151.1,23.7,0.91,10.390,152.9 -23.2,0.91,8.280,171.0,23.0,0.91,8.900,171.4 -22.7,0.91,9.600,170.4,22.6,0.91,9.830,170.8 -22.4,0.91,8.120,167.3,22.3,0.91,8.190,168.5 -21.7,0.91,7.710,167.7,21.7,0.91,7.670,168.7 -21.2,0.91,7.390,174.9,21.1,0.91,7.450,176.7 -20.7,0.91,7.150,178.4,20.7,0.91,7.390,180.1 -20.5,0.91,5.540,179.0,20.4,0.91,5.830,179.9 -21.3,0.91,4.580,179.5,21.1,0.91,4.600,179.6 -22.6,0.91,3.140,182.6,22.4,0.91,3.150,182.7 -23.7,0.91,3.120,172.2,23.5,0.91,3.130,172.2 -24.0,0.91,3.960,161.8,23.9,0.91,3.910,164.7 -25.5,0.91,4.100,171.9,25.3,0.91,4.100,171.6 -24.6,0.91,6.130,170.1,24.4,0.91,6.170,169.7 -26.1,0.91,5.270,153.1,25.9,0.91,5.290,154.2 -23.6,0.91,10.670,181.3,23.4,0.91,10.690,181.2 -24.8,0.91,9.180,175.4,24.6,0.91,9.250,175.6 -25.1,0.91,7.950,180.2,24.9,0.91,8.020,180.6 -24.9,0.91,8.520,182.0,24.7,0.91,8.560,182.0 -24.3,0.91,7.740,177.8,24.1,0.91,7.860,178.0 -24.3,0.91,8.740,181.2,24.1,0.91,9.040,181.8 -24.3,0.91,8.000,194.1,24.2,0.91,8.400,194.0 -24.1,0.91,8.340,186.3,24.0,0.91,8.790,186.5 -22.5,0.91,10.000,164.7,22.4,0.91,10.670,165.0 -22.3,0.91,10.140,173.5,22.2,0.91,10.620,174.3 -22.4,0.91,10.220,188.6,22.2,0.91,10.590,189.0 -21.7,0.91,10.920,198.2,21.6,0.91,11.510,199.1 -21.3,0.91,10.570,195.9,21.2,0.91,11.100,196.8 -20.9,0.91,11.800,200.9,20.8,0.91,12.480,201.6 -20.8,0.91,12.180,205.0,20.8,0.91,12.920,205.2 -20.6,0.91,11.330,206.2,20.5,0.91,12.030,206.4 -20.3,0.91,10.820,209.8,20.3,0.91,11.450,210.1 -21.2,0.91,8.870,207.0,21.0,0.91,8.990,207.2 -22.7,0.91,8.740,208.4,22.5,0.91,8.840,208.5 -24.2,0.91,7.660,205.7,24.0,0.91,7.740,205.8 -25.7,0.91,7.400,203.4,25.4,0.91,7.480,203.5 -27.1,0.91,7.090,199.3,26.8,0.91,7.170,199.4 -28.3,0.91,6.850,194.3,28.0,0.91,6.920,194.5 -29.2,0.91,7.550,191.3,29.0,0.91,7.630,191.4 -29.8,0.91,6.870,190.4,29.6,0.91,6.950,190.5 -30.0,0.91,7.030,186.3,29.8,0.91,7.100,186.5 -30.2,0.91,6.810,196.9,30.0,0.91,6.880,196.5 -30.2,0.91,5.390,194.1,30.0,0.91,5.480,193.9 -30.1,0.91,5.600,169.1,29.9,0.91,5.700,172.9 -29.8,0.91,8.160,160.0,29.7,0.91,8.070,161.1 -29.5,0.91,9.430,163.7,29.3,0.91,9.550,164.9 -29.1,0.91,9.400,173.6,29.0,0.91,9.580,174.6 -28.5,0.91,8.590,184.6,28.4,0.91,8.620,185.2 -27.4,0.91,7.960,180.8,27.4,0.91,8.040,182.5 -27.0,0.91,6.100,192.9,27.0,0.91,6.080,194.8 -26.3,0.91,6.790,213.2,26.2,0.91,6.980,213.1 -25.6,0.91,7.280,213.5,25.5,0.91,7.570,214.6 -25.1,0.91,7.730,213.4,25.0,0.91,8.070,213.5 -24.5,0.91,8.050,214.0,24.5,0.91,8.390,215.0 -23.8,0.91,8.820,206.1,23.8,0.91,9.250,207.1 -23.2,0.91,8.960,207.1,23.1,0.91,9.440,208.3 -23.7,0.91,7.610,211.9,23.5,0.91,7.730,212.3 -25.1,0.91,6.950,209.3,24.9,0.91,7.010,209.4 -26.5,0.91,6.050,204.8,26.3,0.91,6.110,204.7 -27.6,0.91,6.020,194.9,27.4,0.91,6.080,195.1 -28.6,0.91,5.480,191.4,28.4,0.91,5.520,191.5 -29.5,0.91,5.690,191.3,29.2,0.91,5.710,191.3 -30.4,0.91,5.380,182.8,30.1,0.91,5.420,183.0 -30.9,0.91,4.760,195.5,30.7,0.91,4.790,195.3 -31.2,0.91,4.330,186.5,31.0,0.91,4.360,186.3 -31.5,0.91,4.910,192.5,31.3,0.91,4.950,192.3 -31.4,0.91,3.710,179.6,31.2,0.91,3.740,179.3 -31.0,0.91,4.340,180.6,30.8,0.91,4.460,182.3 -30.9,0.91,5.570,179.2,30.7,0.91,5.610,178.5 -30.4,0.91,8.470,167.6,30.3,0.91,8.670,167.8 -30.0,0.91,9.380,173.2,29.9,0.91,9.650,174.3 -29.0,0.91,8.350,180.9,29.0,0.91,8.610,184.0 -28.8,0.91,10.150,185.9,28.7,0.91,10.350,186.0 -28.1,0.91,9.080,199.2,28.1,0.91,9.400,201.6 -27.6,0.91,8.840,213.6,27.6,0.91,9.170,215.5 -27.0,0.91,10.320,224.6,27.1,0.91,10.970,225.9 -26.7,0.91,9.780,230.0,26.8,0.91,10.260,229.7 -26.2,0.91,11.090,229.5,26.3,0.91,11.470,229.3 -26.0,0.91,11.100,235.2,26.2,0.91,11.200,234.4 -25.6,0.91,10.380,236.4,25.9,0.91,10.700,236.0 -25.6,0.91,6.610,242.0,25.6,0.91,7.540,241.7 -27.4,0.91,5.320,241.6,27.2,0.91,5.380,241.2 -28.6,0.91,4.910,219.5,28.4,0.91,4.950,219.5 -29.7,0.91,3.990,209.2,29.4,0.91,4.020,209.2 -30.5,0.91,4.140,204.5,30.2,0.91,4.150,204.5 -31.2,0.91,4.140,191.4,31.0,0.91,4.160,191.7 -31.9,0.91,3.550,183.9,31.6,0.91,3.560,184.3 -32.2,0.91,4.220,171.0,32.0,0.91,4.220,171.3 -32.8,0.91,3.750,194.7,32.5,0.91,3.780,194.5 -32.6,0.91,4.370,193.5,32.5,0.91,4.330,193.4 -32.6,0.91,4.540,163.1,32.4,0.91,4.540,163.9 -32.3,0.91,3.950,191.5,32.1,0.91,4.010,191.6 -32.0,0.91,5.760,188.0,31.8,0.91,5.960,188.2 -31.8,0.91,5.400,186.8,31.6,0.91,5.240,187.6 -31.1,0.91,6.680,168.8,31.1,0.91,7.140,167.8 -30.4,0.91,6.950,172.8,30.5,0.91,7.420,173.2 -29.9,0.91,6.280,205.5,29.9,0.91,6.310,208.4 -29.4,0.91,6.660,231.2,29.3,0.91,6.940,233.0 -28.9,0.91,7.130,235.1,28.8,0.91,7.550,236.4 -27.9,0.91,8.280,231.5,27.9,0.91,8.820,233.5 -27.8,0.91,6.470,232.3,27.8,0.91,6.980,234.8 -27.1,0.91,10.520,238.3,27.3,0.91,11.040,239.6 -26.4,0.91,9.690,238.9,26.6,0.91,10.270,240.6 -26.4,0.91,9.270,245.4,26.7,0.91,9.730,246.3 -26.4,0.91,7.010,243.1,26.4,0.91,7.610,244.4 -28.6,0.91,5.760,245.2,28.4,0.91,5.800,245.4 -30.0,0.91,4.910,242.0,29.8,0.91,4.940,242.0 -30.7,0.91,3.740,213.2,30.5,0.91,3.750,213.2 -31.5,0.91,3.270,195.4,31.3,0.91,3.290,195.3 -32.1,0.91,3.790,178.5,31.9,0.91,3.790,178.6 -32.6,0.91,3.680,188.0,32.4,0.91,3.700,187.8 -33.0,0.91,4.040,188.2,32.8,0.91,4.020,188.3 -33.1,0.90,4.430,178.2,32.9,0.90,4.430,178.3 -33.5,0.90,4.040,188.5,33.2,0.90,4.070,187.0 -33.4,0.90,3.410,201.6,33.1,0.90,3.430,201.1 -33.0,0.90,4.280,180.9,32.8,0.90,4.300,181.6 -32.6,0.90,6.470,169.9,32.5,0.90,6.530,170.2 -32.0,0.90,8.530,173.4,31.9,0.90,8.650,173.2 -31.8,0.90,9.390,173.0,31.7,0.90,9.450,173.4 -31.5,0.90,8.740,178.1,31.4,0.90,8.740,178.1 -30.4,0.90,8.810,210.9,30.4,0.90,8.780,212.3 -29.4,0.90,10.510,230.4,29.4,0.90,11.270,231.3 -28.6,0.90,11.810,228.8,28.6,0.90,12.560,229.2 -27.6,0.91,11.730,228.7,27.6,0.91,12.520,229.1 -26.8,0.91,11.960,230.0,26.8,0.91,12.790,230.4 -26.3,0.91,12.070,230.0,26.4,0.91,12.870,230.8 -25.8,0.91,11.860,233.3,25.9,0.91,12.600,234.5 -25.3,0.91,9.950,232.1,25.3,0.91,10.430,233.6 -25.8,0.91,6.950,248.1,25.7,0.91,7.400,248.2 -27.3,0.91,6.180,245.5,27.2,0.91,6.230,245.8 -29.4,0.91,4.300,267.0,29.2,0.91,4.350,267.3 -30.9,0.91,3.100,310.7,30.7,0.91,3.110,310.4 -31.9,0.91,2.270,337.9,31.6,0.91,2.270,338.0 -32.8,0.91,2.450,39.0,32.5,0.91,2.430,38.6 -33.3,0.91,1.600,37.5,33.1,0.91,1.640,38.1 -33.5,0.90,2.690,46.5,33.3,0.90,2.650,46.2 -32.8,0.90,5.860,206.6,32.6,0.90,5.860,205.7 -33.5,0.90,4.990,173.3,33.3,0.90,5.030,173.3 -32.9,0.90,1.610,144.6,32.7,0.90,1.640,143.7 -32.8,0.90,2.690,196.8,32.6,0.90,2.760,195.5 -31.3,0.90,10.680,173.2,31.2,0.90,10.960,174.6 -30.9,0.91,9.370,191.4,30.8,0.91,9.830,192.0 -29.5,0.91,8.500,180.7,29.4,0.91,8.600,182.1 -29.2,0.91,9.840,184.8,29.2,0.91,10.200,186.1 -29.4,0.91,9.270,196.9,29.3,0.91,9.310,197.6 -28.6,0.91,7.810,195.0,28.8,0.91,7.820,199.3 -28.4,0.91,6.580,207.8,28.4,0.91,6.350,209.5 -27.1,0.91,4.510,239.1,27.2,0.91,4.620,235.7 -27.7,0.91,3.690,242.2,27.7,0.91,3.730,246.4 -27.9,0.91,4.410,257.3,27.9,0.91,4.410,261.3 -25.3,0.91,4.190,304.3,25.4,0.91,4.010,305.3 -24.7,0.91,5.220,8.1,24.9,0.91,4.800,12.4 -24.6,0.91,3.390,350.3,24.4,0.91,3.420,351.8 -25.9,0.91,3.290,6.0,25.7,0.91,3.270,5.7 -27.2,0.91,3.230,28.9,27.0,0.91,3.220,29.3 -28.0,0.91,3.210,30.2,27.8,0.91,3.220,31.1 -27.2,0.91,6.680,17.2,27.1,0.91,6.660,17.7 -30.0,0.91,4.480,64.0,29.8,0.91,4.510,63.9 -30.1,0.91,7.530,56.1,29.9,0.91,7.570,56.1 -30.7,0.91,6.370,58.8,30.4,0.91,6.430,58.7 -29.2,0.91,4.750,20.0,29.1,0.91,4.790,24.2 -27.4,0.91,3.170,144.8,27.2,0.91,3.250,145.3 -28.0,0.91,4.460,120.7,28.0,0.91,4.820,122.5 -27.9,0.91,5.170,130.3,27.8,0.91,5.500,129.8 -25.8,0.91,6.390,175.8,25.8,0.91,6.630,173.0 -26.8,0.91,6.370,159.2,26.9,0.91,6.670,156.6 -26.9,0.91,5.420,159.7,27.1,0.91,5.760,154.6 -27.3,0.91,4.770,143.1,27.3,0.91,4.950,141.0 -27.1,0.91,5.080,146.8,27.3,0.91,5.400,144.0 -26.8,0.91,4.390,144.7,26.9,0.91,4.660,140.6 -26.0,0.91,6.430,155.5,26.1,0.91,6.450,156.8 -26.0,0.91,5.830,169.4,26.1,0.91,5.810,168.8 -26.3,0.91,5.630,172.9,26.3,0.91,5.490,171.5 -26.7,0.91,4.690,173.6,26.6,0.91,4.630,172.1 -26.7,0.91,3.320,169.6,26.7,0.91,3.180,166.2 -22.9,0.91,2.620,52.4,23.5,0.91,2.280,57.7 -22.7,0.91,2.470,25.7,23.0,0.91,2.890,27.2 -24.4,0.91,2.770,21.0,24.2,0.91,2.780,19.8 -27.0,0.91,2.120,67.9,26.8,0.91,2.110,69.5 -28.1,0.91,2.660,43.0,27.9,0.91,2.650,44.0 -29.1,0.91,3.260,35.3,28.9,0.91,3.250,36.4 -30.0,0.91,3.930,39.0,29.8,0.91,3.950,39.7 -30.9,0.91,4.400,59.8,30.7,0.91,4.430,60.1 -31.2,0.91,4.440,47.8,31.0,0.91,4.450,48.4 -31.5,0.91,5.560,67.7,31.3,0.91,5.530,67.5 -31.6,0.91,6.480,61.9,31.4,0.91,6.570,61.9 -31.2,0.91,5.420,61.3,31.0,0.91,5.480,61.3 -30.5,0.91,5.830,55.3,30.4,0.91,5.900,55.9 -30.5,0.91,5.390,63.9,30.4,0.91,5.720,67.0 -29.8,0.91,9.350,87.5,29.7,0.91,9.610,87.2 -29.0,0.91,7.410,104.0,29.0,0.91,7.980,105.7 -28.8,0.91,5.860,122.0,28.7,0.91,6.200,123.8 -28.2,0.91,5.800,112.1,28.0,0.91,5.510,112.8 -27.2,0.91,7.410,98.3,27.0,0.91,8.200,100.0 -26.7,0.91,8.000,97.1,26.8,0.91,8.870,99.6 -26.0,0.91,7.010,92.3,25.9,0.91,7.660,93.5 -25.2,0.91,6.620,90.6,25.2,0.91,7.330,93.2 -24.6,0.91,4.550,99.2,24.7,0.91,4.610,102.0 -24.9,0.91,3.140,74.9,25.4,0.91,3.320,81.0 -23.9,0.91,3.200,69.8,24.4,0.91,3.200,76.0 -23.5,0.91,2.910,63.3,24.0,0.91,3.240,68.6 -24.6,0.91,2.920,47.1,24.5,0.91,2.860,48.5 -26.9,0.91,2.400,45.7,26.7,0.91,2.360,46.3 -28.6,0.91,3.430,46.4,28.4,0.91,3.420,46.7 -29.6,0.91,4.280,42.4,29.3,0.91,4.300,42.6 -30.5,0.91,4.790,45.3,30.3,0.91,4.810,45.6 -31.2,0.91,5.650,45.7,31.0,0.91,5.680,46.0 -31.6,0.91,5.890,48.6,31.3,0.91,5.920,48.8 -31.8,0.91,5.760,66.4,31.6,0.91,5.820,66.2 -31.9,0.91,6.070,48.5,31.7,0.91,6.140,49.1 -31.9,0.91,4.820,72.3,31.7,0.91,4.910,73.4 -31.5,0.91,5.980,69.2,31.4,0.91,6.140,71.1 -30.5,0.91,6.660,73.0,30.5,0.91,7.320,73.4 -29.8,0.91,7.380,85.2,29.7,0.91,8.060,84.8 -29.2,0.91,7.000,88.9,29.3,0.91,7.570,89.9 -28.9,0.91,5.870,106.3,29.0,0.91,6.170,110.1 -28.6,0.91,9.100,124.0,28.6,0.91,9.180,125.7 -27.3,0.91,9.930,134.5,27.5,0.91,10.310,136.8 -27.5,0.91,8.850,159.1,27.5,0.91,8.750,163.2 -27.4,0.91,7.720,205.0,27.6,0.91,7.710,208.9 -26.6,0.91,7.360,209.5,26.8,0.91,7.420,211.2 -26.1,0.91,7.410,211.2,26.1,0.91,7.600,210.5 -25.8,0.91,7.520,218.8,25.9,0.91,7.620,221.0 -25.9,0.91,7.020,225.7,25.8,0.91,7.190,226.6 -25.3,0.91,5.480,218.3,25.2,0.91,6.120,220.2 -26.5,0.91,4.770,225.3,26.3,0.91,4.790,225.5 -27.8,0.91,2.750,223.0,27.6,0.91,2.760,222.7 -28.7,0.91,2.560,190.8,28.5,0.91,2.560,190.6 -29.5,0.91,2.680,164.2,29.2,0.91,2.680,163.9 -30.1,0.91,3.250,148.7,29.9,0.91,3.250,148.8 -30.2,0.91,3.120,90.2,30.0,0.91,3.110,91.7 -30.9,0.91,3.370,121.7,30.7,0.91,3.380,122.0 -30.4,0.91,7.000,40.2,30.2,0.91,6.900,41.8 -28.4,0.91,11.960,151.1,28.2,0.91,12.040,151.1 -28.7,0.91,9.270,147.1,28.5,0.91,9.390,147.2 -28.5,0.91,7.250,153.8,28.4,0.91,7.500,153.6 -28.7,0.91,7.600,165.7,28.6,0.91,7.990,165.2 -28.5,0.91,6.150,154.8,28.5,0.91,6.520,150.6 -27.2,0.91,5.400,206.6,27.3,0.91,5.250,187.5 -27.7,0.91,5.650,175.6,27.6,0.91,6.040,176.8 -26.7,0.91,7.340,197.2,26.5,0.91,7.460,198.3 -25.8,0.91,8.910,209.1,25.8,0.91,9.180,208.0 -25.6,0.91,8.710,220.5,25.6,0.91,8.930,218.8 -25.5,0.91,8.180,208.7,25.5,0.91,8.390,204.8 -24.4,0.91,7.520,203.5,24.4,0.91,7.750,200.6 -24.2,0.91,6.900,202.8,24.2,0.91,7.150,203.2 -24.3,0.91,6.100,206.6,24.4,0.91,6.210,208.4 -24.1,0.91,5.510,211.4,24.2,0.91,5.530,213.4 -24.3,0.91,3.840,213.7,24.4,0.91,4.330,216.8 -25.8,0.91,3.400,221.1,25.6,0.91,3.410,221.3 -27.2,0.91,2.630,198.3,26.9,0.91,2.640,197.8 -28.1,0.91,2.940,169.4,27.9,0.91,2.950,169.2 -29.0,0.91,3.460,149.9,28.8,0.91,3.470,149.9 -29.6,0.91,4.000,158.9,29.4,0.91,4.020,158.6 -30.4,0.91,4.160,156.1,30.1,0.91,4.190,156.1 -30.8,0.91,4.410,139.0,30.6,0.91,4.410,139.3 -30.8,0.91,3.360,152.6,30.6,0.91,3.360,152.6 -30.7,0.91,6.430,144.0,30.5,0.91,6.420,144.7 -30.8,0.91,4.790,179.4,30.6,0.91,4.830,179.0 -30.6,0.91,5.230,172.0,30.4,0.91,5.310,170.8 -30.0,0.91,6.990,153.5,29.9,0.91,7.210,153.5 -29.6,0.91,9.740,150.0,29.5,0.91,9.920,150.3 -29.3,0.91,10.190,151.4,29.2,0.91,10.340,151.8 -27.0,0.91,10.630,186.0,26.9,0.91,10.700,191.5 -26.6,0.91,8.470,210.2,26.6,0.91,8.860,208.6 -26.7,0.91,7.370,203.8,26.7,0.91,7.570,201.5 -26.5,0.91,7.320,195.1,26.5,0.91,7.550,195.3 -25.7,0.91,8.310,186.1,25.8,0.91,8.400,187.0 -25.1,0.91,8.120,197.4,25.3,0.91,7.980,200.7 -24.4,0.91,9.440,195.6,24.6,0.91,9.560,198.0 -24.3,0.91,8.600,209.4,24.3,0.91,8.730,212.2 -24.2,0.91,8.200,215.8,24.4,0.91,8.510,218.0 -24.4,0.91,5.870,218.8,24.4,0.91,6.620,220.1 -26.1,0.91,5.270,214.9,25.9,0.91,5.310,215.1 -27.5,0.91,4.070,199.6,27.3,0.91,4.100,199.4 -28.5,0.91,3.790,169.9,28.3,0.91,3.800,169.7 -29.2,0.91,3.670,146.2,28.9,0.91,3.690,146.1 -29.9,0.91,3.930,139.7,29.7,0.91,3.970,139.6 -30.3,0.91,4.840,139.7,30.1,0.91,4.870,139.7 -30.6,0.91,3.070,154.0,30.3,0.91,3.090,153.1 -30.7,0.91,4.660,117.1,30.5,0.91,4.690,117.2 -30.9,0.91,5.180,152.8,30.7,0.91,5.210,152.2 -30.7,0.91,5.890,123.0,30.5,0.91,5.960,123.3 -30.3,0.91,7.680,129.8,30.1,0.91,7.710,128.9 -29.6,0.91,8.810,127.7,29.5,0.91,9.140,127.6 -28.5,0.91,10.240,122.1,28.5,0.91,11.050,122.0 -28.1,0.91,9.810,129.8,28.1,0.91,10.370,131.2 -26.5,0.91,8.920,184.7,26.4,0.91,9.310,186.5 -25.6,0.91,9.560,179.1,25.5,0.91,9.820,179.6 -24.9,0.91,9.000,184.8,24.9,0.91,9.120,186.1 -24.3,0.91,9.470,178.2,24.4,0.91,9.670,180.0 -23.4,0.91,9.320,178.2,23.5,0.91,9.490,180.0 -22.9,0.91,9.160,182.2,23.0,0.91,9.270,183.4 -22.4,0.91,7.920,196.6,22.6,0.91,7.800,200.5 -22.6,0.91,5.890,196.8,22.8,0.91,5.700,199.4 -22.3,0.91,5.420,197.0,22.4,0.91,5.260,198.4 -22.1,0.91,5.310,191.6,22.1,0.91,5.510,192.2 -23.9,0.91,3.540,195.0,23.7,0.91,3.520,195.0 -25.4,0.91,2.810,171.8,25.2,0.91,2.800,171.3 -26.6,0.91,2.930,134.4,26.4,0.91,2.960,134.1 -27.6,0.91,3.470,129.6,27.4,0.91,3.490,129.8 -28.4,0.91,4.940,130.4,28.1,0.91,4.970,130.5 -28.9,0.91,4.970,131.3,28.7,0.91,5.020,131.5 -29.4,0.91,5.230,134.8,29.1,0.91,5.290,134.9 -29.4,0.91,5.890,138.2,29.2,0.91,5.930,138.3 -29.5,0.91,6.520,139.7,29.3,0.91,6.580,139.6 -28.5,0.91,9.300,162.6,28.3,0.91,9.350,162.5 -25.6,0.91,6.280,154.7,25.5,0.91,6.660,150.4 -26.4,0.91,7.800,167.9,26.5,0.91,8.130,165.9 -22.9,0.91,9.670,194.4,22.7,0.91,10.030,194.6 -23.3,0.91,9.010,183.8,23.4,0.91,9.520,183.1 -22.7,0.91,10.350,187.8,22.6,0.91,10.790,187.6 -22.3,0.91,10.390,190.6,22.2,0.91,10.880,190.7 -21.9,0.91,8.740,192.4,21.9,0.91,9.220,192.8 -21.9,0.91,9.050,186.3,21.8,0.91,9.560,186.3 -21.6,0.91,8.680,181.0,21.6,0.91,9.120,181.4 -21.3,0.91,8.900,182.8,21.3,0.91,9.340,183.4 -20.9,0.91,8.620,182.7,20.8,0.91,8.900,184.3 -20.3,0.91,8.190,187.2,20.3,0.91,8.340,189.4 -19.7,0.91,8.100,188.1,19.7,0.91,8.320,189.2 -20.3,0.91,6.900,190.7,20.1,0.91,6.970,190.9 -21.4,0.91,6.100,185.6,21.2,0.91,6.150,185.7 -22.5,0.91,6.080,180.9,22.3,0.91,6.140,180.9 -23.8,0.91,5.990,174.8,23.6,0.91,6.040,174.9 -25.0,0.91,6.350,171.1,24.8,0.91,6.400,171.1 -26.1,0.91,6.490,173.4,25.8,0.91,6.560,173.3 -27.0,0.91,6.760,163.9,26.7,0.91,6.840,164.0 -27.6,0.91,7.430,160.8,27.4,0.91,7.500,160.8 -28.1,0.91,7.480,164.2,27.9,0.91,7.550,163.8 -27.5,0.91,5.270,119.8,27.4,0.91,5.400,122.0 -27.7,0.91,9.100,148.7,27.5,0.91,9.240,148.8 -22.2,0.91,13.290,146.0,22.0,0.91,13.780,146.2 -23.2,0.91,11.600,152.3,23.3,0.91,12.320,152.7 -22.8,0.91,11.760,161.5,22.6,0.91,12.150,161.6 -22.4,0.91,12.130,172.1,22.2,0.91,12.570,171.9 -21.9,0.91,11.430,171.8,21.7,0.91,11.890,171.7 -21.3,0.91,11.570,171.7,21.1,0.91,12.110,171.4 -20.8,0.91,10.250,171.4,20.7,0.91,10.770,171.0 -20.4,0.91,10.350,162.9,20.3,0.91,11.060,162.6 -20.0,0.91,9.860,176.2,19.9,0.91,10.380,176.4 -19.4,0.91,9.700,177.0,19.3,0.91,10.200,177.2 -19.2,0.91,9.680,174.0,19.1,0.91,10.100,174.5 -19.2,0.91,9.090,173.7,19.1,0.91,9.520,174.2 -19.2,0.91,8.410,171.2,19.1,0.91,8.990,172.0 -19.6,0.91,7.030,169.7,19.5,0.91,7.170,170.2 -21.1,0.91,7.320,172.1,20.9,0.91,7.430,172.2 -22.3,0.91,6.650,163.5,22.1,0.91,6.730,163.5 -23.3,0.91,7.330,161.2,23.1,0.91,7.400,161.0 -23.8,0.91,7.770,151.6,23.6,0.91,7.830,151.8 -25.2,0.91,7.660,152.7,24.9,0.91,7.750,152.6 -26.6,0.91,8.330,154.6,26.3,0.91,8.440,154.7 -26.8,0.91,8.400,143.0,26.6,0.91,8.480,143.3 -27.5,0.91,8.490,157.3,27.3,0.91,8.600,157.1 -27.6,0.91,8.850,146.1,27.4,0.91,9.010,146.3 -27.2,0.91,9.630,141.7,27.0,0.91,9.780,141.8 -23.8,0.91,10.620,136.3,23.7,0.91,11.420,136.7 -24.1,0.91,11.780,152.0,23.9,0.91,12.130,151.9 -23.9,0.91,10.180,153.9,23.8,0.91,10.620,153.9 -23.5,0.91,10.330,163.3,23.3,0.91,10.740,163.2 -22.5,0.91,10.430,163.3,22.3,0.91,10.940,163.2 -21.8,0.91,9.410,165.3,21.7,0.91,9.890,165.1 -21.3,0.91,8.640,172.1,21.2,0.91,9.110,172.2 -20.7,0.91,8.660,170.0,20.5,0.91,9.100,169.8 -20.4,0.91,8.130,170.1,20.2,0.91,8.380,170.2 -20.1,0.91,8.310,173.2,19.9,0.91,8.780,173.5 -19.9,0.91,8.140,166.8,19.7,0.91,8.600,167.3 -19.7,0.91,7.400,167.5,19.5,0.91,7.850,167.5 -19.5,0.91,7.390,166.7,19.4,0.91,7.740,167.0 -20.2,0.91,6.310,161.3,20.0,0.91,6.380,161.5 -20.3,0.91,5.620,167.1,20.2,0.91,5.690,167.2 -22.5,0.91,5.670,161.9,22.3,0.91,5.750,162.3 -24.1,0.91,5.550,156.7,23.9,0.91,5.620,156.6 -25.1,0.91,5.940,151.8,24.9,0.91,6.020,151.8 -25.8,0.91,6.370,142.5,25.6,0.91,6.440,143.0 -26.1,0.91,7.840,158.6,25.9,0.91,7.830,158.5 -26.5,0.91,4.280,129.5,26.3,0.91,4.560,130.7 -27.1,0.91,7.300,123.5,26.9,0.91,7.370,123.8 -27.2,0.91,6.380,146.0,27.0,0.91,6.460,146.0 -27.3,0.91,7.010,140.8,27.1,0.91,7.140,141.0 -27.0,0.91,7.320,148.0,26.9,0.91,7.620,149.2 -25.5,0.91,8.380,160.0,25.4,0.91,8.900,160.1 -25.2,0.91,7.940,173.0,25.1,0.91,8.490,173.1 -24.6,0.91,7.050,183.6,24.4,0.91,7.430,184.7 -23.9,0.91,7.680,180.0,23.7,0.91,8.120,181.6 -23.3,0.91,7.630,187.5,23.1,0.91,8.410,188.0 -22.7,0.91,9.710,180.2,22.5,0.91,10.390,181.1 -22.3,0.91,7.740,185.9,22.2,0.91,8.340,189.7 -22.0,0.91,7.890,189.9,22.0,0.91,8.260,191.8 -21.7,0.91,8.110,188.7,21.7,0.91,8.260,190.8 -21.7,0.91,7.190,197.8,21.7,0.91,7.290,198.8 -21.4,0.91,6.430,189.6,21.4,0.91,6.420,190.5 -21.5,0.91,5.210,191.9,21.6,0.91,5.440,191.8 -21.4,0.91,4.550,184.0,21.4,0.91,5.050,184.3 -22.9,0.91,3.420,182.6,22.7,0.91,3.440,182.2 -24.2,0.91,3.600,151.2,24.0,0.91,3.650,150.9 -25.4,0.91,4.000,138.0,25.2,0.91,4.050,137.9 -26.5,0.91,5.320,127.0,26.3,0.91,5.370,127.1 -27.1,0.91,4.610,126.4,26.9,0.91,4.660,126.2 -28.1,0.91,5.820,118.7,27.9,0.91,5.880,118.9 -28.6,0.91,5.720,110.9,28.4,0.91,5.770,111.3 -29.0,0.91,5.780,122.8,28.8,0.91,5.850,122.9 -29.0,0.91,6.180,131.3,28.8,0.91,6.270,131.3 -28.8,0.91,5.730,131.8,28.6,0.91,5.810,131.8 -28.4,0.91,6.070,134.9,28.3,0.91,6.210,135.5 -28.1,0.91,7.620,145.9,28.0,0.91,7.810,146.5 -26.3,0.91,8.670,127.9,26.1,0.91,8.780,127.8 -26.1,0.91,8.420,127.2,26.1,0.91,8.510,128.0 -25.9,0.91,8.740,137.9,26.1,0.91,8.640,138.3 -26.4,0.91,8.170,150.1,26.5,0.91,7.900,152.1 -26.4,0.91,6.350,162.4,26.4,0.91,6.100,162.1 -25.6,0.91,5.840,170.8,25.5,0.91,5.930,171.9 -25.2,0.91,5.830,180.7,25.2,0.91,5.920,182.4 -24.9,0.91,6.560,195.0,25.0,0.91,6.740,196.1 -25.0,0.91,6.650,206.0,25.1,0.91,6.720,205.9 -25.1,0.91,6.250,211.1,25.1,0.91,6.320,210.0 -24.9,0.91,5.380,210.9,25.0,0.91,5.320,209.0 -23.6,0.91,2.410,209.8,23.8,0.91,3.020,209.0 -25.3,0.91,1.750,204.9,25.1,0.91,1.800,204.9 -26.4,0.91,2.000,178.8,26.2,0.91,2.000,178.6 -27.2,0.91,2.670,140.8,27.0,0.91,2.700,140.5 -27.8,0.91,3.270,127.2,27.6,0.91,3.300,127.0 -28.5,0.91,4.170,131.3,28.3,0.91,4.210,130.7 -29.0,0.91,4.920,119.5,28.8,0.91,4.980,119.6 -29.1,0.91,5.430,147.9,28.9,0.91,5.500,146.8 -29.8,0.91,5.880,130.7,29.6,0.91,5.970,130.8 -29.7,0.91,5.390,126.1,29.5,0.91,5.470,126.6 -29.4,0.91,6.060,130.0,29.2,0.91,6.100,130.2 -29.2,0.91,5.710,145.9,29.0,0.91,5.700,145.3 -28.7,0.91,6.200,133.9,28.6,0.91,6.410,135.5 -28.7,0.91,7.110,143.5,28.6,0.91,7.070,143.6 -27.7,0.91,7.180,126.6,27.6,0.91,7.480,129.3 -26.1,0.91,12.210,121.7,26.3,0.91,12.300,122.7 -25.6,0.91,11.790,118.3,25.8,0.91,12.890,120.2 -23.1,0.91,6.050,71.6,23.0,0.91,6.470,77.7 -22.8,0.91,5.090,85.6,22.8,0.91,5.820,91.6 -23.7,0.91,7.190,131.8,23.9,0.91,7.550,137.4 -23.4,0.91,5.400,128.3,23.5,0.91,5.490,136.4 -23.4,0.91,4.580,145.3,23.6,0.91,4.780,150.3 -23.6,0.91,5.670,168.6,23.8,0.91,5.500,174.1 -24.0,0.91,5.520,186.8,24.3,0.91,5.240,190.6 -23.6,0.91,4.970,185.1,24.1,0.91,5.010,190.7 -25.3,0.91,2.660,204.9,25.1,0.91,2.670,206.4 -26.4,0.91,2.750,195.2,26.2,0.91,2.760,195.2 -27.3,0.91,3.230,165.4,27.1,0.91,3.260,165.2 -27.9,0.91,4.210,160.2,27.7,0.91,4.230,160.1 -28.4,0.91,4.730,159.4,28.2,0.91,4.740,159.2 -29.0,0.91,3.640,154.0,28.8,0.91,3.720,154.0 -29.8,0.91,5.630,156.8,29.6,0.91,5.680,156.9 -27.1,0.91,10.650,181.0,26.9,0.91,10.730,180.8 -28.8,0.91,8.080,176.3,28.6,0.91,8.170,175.8 -28.2,0.91,8.000,193.1,28.0,0.91,8.040,193.0 -26.1,0.91,8.860,140.9,26.0,0.91,9.340,140.7 -25.4,0.91,7.940,126.1,25.4,0.91,8.450,125.8 -26.0,0.91,8.820,125.1,26.1,0.91,9.000,126.4 -24.8,0.91,10.790,134.0,24.7,0.91,11.170,134.5 -24.3,0.91,10.980,143.3,24.3,0.91,11.710,143.1 -24.2,0.91,10.650,154.3,24.2,0.91,11.450,154.3 -24.0,0.91,11.880,161.3,23.9,0.91,12.700,161.6 -23.8,0.91,12.070,172.5,23.7,0.91,12.650,172.8 -23.3,0.91,11.580,176.6,23.3,0.91,12.180,177.2 -22.8,0.91,11.160,179.1,22.7,0.91,11.720,179.8 -22.3,0.91,10.090,184.8,22.3,0.91,10.610,186.0 -21.9,0.91,9.190,189.3,21.9,0.91,9.720,190.7 -21.6,0.91,8.420,194.6,21.5,0.91,8.900,196.4 -21.8,0.91,6.820,195.3,21.6,0.91,6.970,195.8 -22.8,0.91,7.330,191.9,22.6,0.91,7.390,192.0 -24.1,0.91,6.660,185.5,23.9,0.91,6.730,185.5 -25.3,0.91,5.790,179.0,25.1,0.91,5.850,179.1 -26.5,0.91,6.200,173.3,26.3,0.91,6.230,173.2 -27.7,0.91,5.500,163.6,27.4,0.91,5.560,163.4 -28.5,0.91,5.860,152.5,28.3,0.91,5.940,152.4 -29.0,0.91,6.360,154.4,28.8,0.91,6.430,154.3 -29.4,0.91,7.080,158.2,29.1,0.91,7.170,157.9 -29.6,0.91,7.930,136.9,29.4,0.91,8.070,137.2 -29.3,0.91,8.490,142.1,29.1,0.91,8.640,142.1 -28.9,0.91,7.590,134.1,28.7,0.91,8.170,134.2 -28.4,0.91,9.410,145.8,28.3,0.91,9.750,146.0 -27.8,0.91,9.990,141.9,27.7,0.91,10.260,141.8 -27.3,0.91,10.060,145.8,27.2,0.91,10.140,146.5 -25.7,0.91,11.230,159.2,25.5,0.91,11.920,160.8 -24.2,0.91,10.450,172.5,24.1,0.91,11.030,173.2 -23.8,0.91,9.830,181.6,23.7,0.91,10.250,182.7 -23.8,0.91,8.750,186.8,23.7,0.91,9.050,188.5 -23.6,0.91,7.330,175.4,23.5,0.91,7.610,176.3 -23.1,0.91,7.340,171.8,23.0,0.91,7.420,172.6 -22.7,0.91,8.230,170.9,22.7,0.91,8.360,172.3 -22.4,0.91,7.330,171.7,22.4,0.91,7.330,174.9 -22.0,0.91,7.400,187.7,22.0,0.91,7.460,188.7 -22.0,0.91,5.360,188.7,21.9,0.91,5.520,188.1 -23.4,0.91,3.950,180.9,23.2,0.91,3.970,180.9 -24.8,0.91,3.110,173.3,24.5,0.91,3.140,173.2 -26.0,0.91,2.740,142.9,25.8,0.91,2.780,142.7 -27.0,0.91,4.340,120.3,26.8,0.91,4.370,120.4 -27.7,0.91,4.910,121.6,27.4,0.91,4.960,121.4 -28.3,0.91,6.430,123.2,28.1,0.91,6.490,123.3 -28.0,0.91,7.630,155.2,27.8,0.91,7.570,154.8 -28.6,0.91,6.560,154.8,28.4,0.91,6.660,154.8 -28.2,0.91,8.280,139.8,27.9,0.91,8.370,140.0 -28.0,0.91,6.420,133.7,27.8,0.91,6.530,134.0 -25.1,0.91,9.400,147.8,24.9,0.91,9.750,147.4 -23.3,0.91,3.350,340.0,23.2,0.91,2.930,341.3 -20.7,0.91,3.230,20.0,20.5,0.91,3.310,19.9 -20.5,0.91,2.970,14.3,20.5,0.91,2.820,19.6 -20.4,0.91,3.330,16.5,20.2,0.91,3.500,16.6 -19.5,0.91,3.970,42.6,19.5,0.91,4.160,43.5 -19.8,0.91,3.570,32.6,19.6,0.91,3.720,34.0 -19.6,0.91,2.630,38.1,19.4,0.91,2.630,38.8 -20.7,0.91,0.950,167.1,21.1,0.91,1.590,166.6 -20.6,0.91,1.680,123.3,21.0,0.91,2.120,140.6 -21.4,0.91,3.420,158.5,21.6,0.91,3.810,161.2 -21.3,0.91,3.210,177.8,21.6,0.91,3.650,181.9 -21.9,0.91,3.650,175.0,21.9,0.91,3.910,179.1 -22.1,0.91,2.670,209.6,21.9,0.91,2.880,210.6 -23.5,0.91,2.460,196.8,23.3,0.91,2.510,196.6 -24.6,0.91,4.060,177.8,24.4,0.91,4.110,177.9 -25.6,0.91,4.040,181.0,25.4,0.91,4.070,180.6 -26.5,0.91,4.350,161.7,26.3,0.91,4.390,162.0 -27.0,0.91,4.810,168.4,26.8,0.91,4.830,168.5 -27.9,0.91,5.300,165.8,27.7,0.91,5.350,166.0 -28.3,0.91,5.030,178.1,28.1,0.91,5.080,177.7 -28.7,0.91,5.230,167.7,28.5,0.91,5.290,167.6 -28.7,0.91,5.520,164.0,28.5,0.91,5.600,163.9 -28.7,0.91,6.830,152.7,28.5,0.91,6.910,152.8 -23.6,0.91,6.680,178.0,23.4,0.91,6.930,179.2 -23.3,0.91,7.630,162.2,23.1,0.91,7.890,161.8 -23.2,0.91,7.700,161.6,23.0,0.91,8.060,161.8 -23.1,0.91,8.190,160.6,22.9,0.91,8.600,160.5 -23.1,0.91,8.830,177.6,22.9,0.91,9.230,177.6 -22.2,0.91,11.120,172.7,22.0,0.91,11.390,172.8 -21.9,0.91,8.550,167.2,21.7,0.91,8.850,167.4 -21.2,0.91,7.450,181.9,21.0,0.91,7.630,181.9 -21.2,0.91,8.600,184.8,21.1,0.91,9.020,184.7 -21.1,0.91,8.610,180.0,21.1,0.91,9.120,179.9 -20.9,0.91,8.280,176.4,20.8,0.91,8.750,176.7 -20.8,0.91,8.370,176.4,20.9,0.91,8.950,177.4 -21.1,0.91,8.290,179.8,21.0,0.91,8.710,180.6 -21.0,0.91,7.750,175.6,20.8,0.91,7.960,176.1 -21.9,0.91,7.190,179.8,21.7,0.91,7.270,179.8 -23.6,0.91,7.520,182.9,23.4,0.91,7.630,182.8 -24.9,0.91,8.000,181.2,24.6,0.91,8.110,181.0 -26.0,0.91,7.070,179.0,25.8,0.91,7.150,179.1 -27.0,0.91,7.840,191.4,26.8,0.91,7.930,191.0 -28.0,0.91,7.520,190.9,27.7,0.91,7.580,190.4 -28.4,0.91,6.700,194.8,28.2,0.91,6.800,195.1 -28.7,0.91,7.160,186.4,28.5,0.91,7.250,186.6 -28.8,0.91,5.520,168.2,28.6,0.91,5.580,169.1 -24.3,0.91,9.710,121.0,24.1,0.91,9.910,120.9 -25.1,0.91,11.210,149.2,24.9,0.91,11.670,149.2 -24.2,0.91,11.720,159.0,24.1,0.91,12.210,159.2 -24.0,0.91,10.150,158.9,23.9,0.91,10.610,159.2 -23.9,0.91,10.270,166.5,23.7,0.91,10.830,166.1 -23.4,0.91,11.550,169.1,23.3,0.91,12.140,169.6 -22.6,0.91,11.340,172.7,22.5,0.91,11.830,173.0 -22.3,0.91,10.670,180.1,22.2,0.91,11.230,180.8 -22.0,0.91,11.330,185.4,21.9,0.91,11.950,186.0 -21.7,0.91,10.580,188.7,21.6,0.91,11.180,189.2 -21.2,0.91,9.130,183.3,21.1,0.91,9.680,184.0 -20.9,0.91,8.450,185.5,20.8,0.91,8.960,186.3 -20.7,0.91,8.180,187.0,20.6,0.91,8.640,187.7 -20.6,0.91,7.010,190.1,20.5,0.91,7.400,191.0 -20.6,0.91,5.840,184.3,20.5,0.91,6.090,184.6 -21.3,0.91,5.900,185.0,21.1,0.91,5.980,185.4 -21.8,0.91,5.690,191.7,21.6,0.91,5.750,191.8 -22.7,0.91,6.050,196.2,22.4,0.91,6.120,196.3 -23.5,0.91,6.020,191.3,23.3,0.91,6.080,191.3 -24.4,0.91,6.320,190.6,24.2,0.91,6.370,190.7 -25.2,0.91,5.730,181.3,25.0,0.91,5.790,181.3 -26.1,0.91,6.010,173.7,25.9,0.91,6.080,173.8 -25.8,0.90,8.300,169.0,25.6,0.90,8.380,168.9 -23.1,0.90,9.950,157.6,22.9,0.90,10.050,157.6 -22.0,0.91,8.250,156.9,21.8,0.91,8.320,156.9 -21.9,0.91,4.390,151.2,21.7,0.91,4.420,151.4 -21.6,0.91,4.380,143.0,21.4,0.91,4.480,143.5 -21.4,0.91,4.900,149.3,21.3,0.91,5.280,149.6 -21.2,0.91,4.400,153.4,21.0,0.91,4.500,153.7 -21.1,0.91,5.380,151.0,21.1,0.91,5.660,148.7 -20.3,0.91,5.130,151.1,20.1,0.91,5.260,150.7 -19.9,0.91,4.700,157.0,19.7,0.91,4.900,156.8 -20.2,0.91,5.320,158.9,20.1,0.91,5.790,157.2 -19.7,0.91,2.320,119.8,19.6,0.91,3.730,135.2 -19.5,0.91,1.780,37.6,19.3,0.91,1.680,40.1 -19.4,0.91,3.270,30.2,19.2,0.91,3.290,30.6 -18.9,0.91,3.680,47.1,18.8,0.91,3.740,46.5 -19.3,0.91,5.620,34.8,19.2,0.91,5.900,35.4 -18.6,0.91,7.560,34.1,18.5,0.91,8.000,34.6 -18.5,0.91,7.090,19.6,18.4,0.91,7.260,19.5 -18.5,0.91,8.650,36.0,18.4,0.91,8.890,36.7 -18.4,0.91,7.650,45.1,18.3,0.91,7.760,45.3 -18.9,0.91,7.130,49.7,18.7,0.91,7.180,49.8 -19.0,0.91,9.610,28.9,18.8,0.91,9.750,28.9 -19.7,0.91,6.920,40.8,19.5,0.91,7.000,40.8 -19.6,0.91,7.640,34.0,19.4,0.91,7.700,34.1 -19.8,0.91,8.240,32.1,19.6,0.91,8.320,32.1 -18.8,0.91,5.250,65.6,18.6,0.91,5.380,65.4 -18.3,0.91,6.220,64.0,18.1,0.91,6.420,63.9 -18.5,0.91,6.240,36.7,18.3,0.91,6.400,36.6 -17.8,0.91,5.700,25.4,17.7,0.91,6.050,25.8 -17.3,0.91,7.280,15.7,17.1,0.91,7.380,16.1 -17.0,0.91,7.770,12.6,16.9,0.91,7.920,12.7 -16.8,0.91,7.370,16.3,16.6,0.91,7.480,16.4 -16.2,0.91,6.310,17.3,16.1,0.91,6.390,17.6 -16.1,0.91,5.810,14.5,15.9,0.91,5.880,14.7 -16.0,0.91,6.630,18.2,15.8,0.91,6.700,18.0 -15.8,0.91,6.770,19.9,15.6,0.91,6.840,20.0 -15.7,0.91,7.210,25.4,15.5,0.91,7.290,25.6 -15.3,0.91,7.080,24.4,15.2,0.91,7.340,26.2 -15.5,0.91,7.370,29.3,15.3,0.91,7.770,30.5 -15.4,0.91,7.460,29.5,15.3,0.91,7.810,30.1 -15.1,0.91,6.610,37.4,14.9,0.91,6.660,38.0 -15.8,0.91,5.910,39.2,15.6,0.91,5.950,39.4 -16.9,0.91,5.090,35.8,16.7,0.91,5.120,35.8 -18.1,0.91,4.740,38.2,17.9,0.91,4.770,38.3 -19.4,0.91,4.500,37.8,19.2,0.91,4.530,37.8 -20.7,0.91,4.220,41.2,20.4,0.91,4.230,41.2 -21.6,0.91,4.010,41.1,21.4,0.91,4.020,41.3 -22.3,0.91,4.050,44.1,22.1,0.91,4.060,44.1 -22.7,0.91,4.070,46.8,22.5,0.91,4.080,46.8 -22.8,0.91,3.870,52.5,22.6,0.91,3.890,52.5 -22.6,0.91,3.950,60.6,22.4,0.91,3.990,60.7 -22.2,0.91,4.970,68.6,22.0,0.91,4.870,69.1 -21.6,0.91,4.760,79.5,21.4,0.91,4.510,78.4 -21.1,0.91,4.700,100.2,20.9,0.91,4.310,97.7 -20.6,0.91,3.680,113.7,20.5,0.91,3.580,110.5 -20.4,0.91,2.720,113.7,20.4,0.91,2.900,108.3 -20.2,0.91,3.640,121.3,20.2,0.91,3.520,118.8 -19.9,0.91,4.730,144.2,19.8,0.91,4.610,143.0 -19.4,0.91,5.140,147.1,19.4,0.91,5.020,149.0 -19.2,0.91,6.300,158.3,19.2,0.91,6.160,157.2 -19.1,0.91,6.280,158.8,19.0,0.91,6.110,158.5 -18.8,0.91,6.390,162.1,18.8,0.91,6.220,162.2 -18.4,0.91,6.650,165.7,18.5,0.91,6.510,165.2 -18.2,0.91,6.430,170.0,18.3,0.91,6.370,168.8 -18.0,0.91,6.770,170.0,18.1,0.91,6.750,169.2 -18.0,0.91,5.630,174.8,17.9,0.91,5.720,174.2 -19.2,0.91,5.420,172.0,19.0,0.91,5.420,171.9 -20.3,0.91,4.340,170.5,20.1,0.91,4.350,170.3 -21.4,0.91,3.880,167.1,21.2,0.91,3.900,167.0 -22.3,0.91,4.000,161.6,22.1,0.91,4.010,161.6 -23.0,0.90,4.060,160.6,22.8,0.90,4.090,160.6 -23.6,0.90,4.590,163.1,23.4,0.90,4.630,163.1 -23.8,0.90,5.280,165.7,23.6,0.90,5.330,165.6 -23.7,0.90,5.500,166.9,23.5,0.90,5.570,166.8 -23.1,0.90,6.360,162.3,23.0,0.90,6.490,162.7 -22.6,0.90,8.380,162.3,22.4,0.90,8.290,162.3 -22.0,0.90,8.950,160.2,21.9,0.90,8.880,160.2 -21.2,0.90,10.550,155.0,21.2,0.90,10.610,156.0 -20.9,0.90,10.680,156.2,20.9,0.90,10.740,157.2 -20.7,0.90,11.460,158.6,20.7,0.90,11.570,160.0 -19.7,0.90,12.320,158.4,19.9,0.90,12.820,158.9 -19.2,0.90,12.970,159.4,19.4,0.90,13.510,160.0 -18.3,0.90,13.230,162.2,18.6,0.90,14.010,162.2 -17.5,0.90,13.220,163.5,17.8,0.90,14.020,163.3 -17.2,0.90,13.340,169.6,17.5,0.90,14.090,169.8 -16.6,0.90,12.740,173.4,16.9,0.90,13.160,174.8 -17.0,0.90,12.210,182.0,17.4,0.90,12.650,183.0 -16.4,0.90,11.620,185.8,16.9,0.90,11.970,187.5 -16.7,0.90,11.400,188.9,17.4,0.90,12.100,190.4 -17.6,0.90,10.480,190.2,17.6,0.90,11.460,190.9 -19.5,0.90,10.620,188.7,19.4,0.90,10.730,189.0 -21.5,0.90,10.510,190.5,21.3,0.90,10.620,190.7 -22.9,0.90,10.400,193.6,22.7,0.90,10.510,193.7 -24.3,0.90,10.380,193.8,24.1,0.90,10.490,193.9 -25.5,0.90,9.150,199.0,25.3,0.90,9.260,199.2 -26.5,0.90,7.830,207.7,26.2,0.90,7.930,207.9 -27.2,0.90,7.180,210.4,26.9,0.90,7.270,210.6 -27.3,0.90,6.920,207.0,27.1,0.90,7.020,207.3 -27.2,0.90,6.680,187.5,27.0,0.90,6.860,188.2 -26.8,0.90,9.210,179.4,26.6,0.90,9.370,180.0 -26.2,0.90,9.720,179.8,26.2,0.90,10.000,180.8 -25.8,0.90,9.060,185.5,25.8,0.90,9.420,187.5 -25.1,0.90,9.610,194.1,25.1,0.90,9.930,196.3 -23.9,0.90,8.920,190.6,24.1,0.90,8.920,198.6 -23.7,0.90,6.280,205.0,23.9,0.90,5.580,212.9 -23.8,0.90,3.890,229.8,24.2,0.90,3.470,233.9 -23.0,0.90,4.030,255.2,23.3,0.90,3.950,263.9 -25.0,0.90,5.190,316.7,25.2,0.90,4.820,320.9 -24.3,0.90,6.070,329.0,24.4,0.90,5.880,332.0 -23.0,0.91,6.830,328.0,23.3,0.91,6.580,331.9 -18.1,0.91,9.640,341.5,18.1,0.91,10.070,344.4 -17.1,0.91,8.420,349.4,17.5,0.91,8.500,354.6 -16.5,0.91,7.320,347.5,16.9,0.91,7.640,351.9 -17.7,0.91,5.900,355.3,17.6,0.91,5.970,355.9 -19.9,0.91,6.080,5.5,19.7,0.91,6.090,6.0 -21.5,0.91,6.600,17.4,21.4,0.91,6.610,17.4 -23.3,0.91,6.880,23.5,23.0,0.91,6.930,23.7 -24.5,0.91,6.720,36.6,24.3,0.91,6.770,36.6 -25.7,0.91,6.870,45.7,25.5,0.91,6.930,45.8 -26.4,0.91,5.860,48.6,26.2,0.91,5.900,48.7 -26.8,0.91,5.440,48.0,26.6,0.91,5.470,48.1 -26.8,0.91,5.700,48.3,26.6,0.91,5.760,48.6 -26.5,0.91,5.730,63.4,26.3,0.91,5.860,63.5 -25.9,0.91,6.090,71.9,25.8,0.91,6.330,71.8 -25.3,0.91,7.030,71.5,25.3,0.91,7.400,71.6 -24.7,0.91,6.830,78.1,24.7,0.91,7.430,78.6 -25.0,0.91,7.490,92.5,25.1,0.91,7.560,91.4 -24.8,0.91,7.770,98.4,24.9,0.91,7.960,97.6 -24.6,0.91,7.110,104.9,24.8,0.91,7.320,104.4 -25.0,0.91,8.530,119.7,24.9,0.91,8.430,120.7 -25.2,0.91,7.990,124.2,25.1,0.91,7.470,127.3 -24.4,0.91,8.300,135.5,24.3,0.91,8.070,136.8 -23.4,0.91,8.870,146.1,23.5,0.91,8.920,147.0 -23.7,0.91,9.190,151.4,23.8,0.91,9.410,151.0 -23.1,0.91,9.900,155.0,23.3,0.91,10.190,154.7 -22.7,0.91,9.580,155.9,22.9,0.91,9.850,155.5 -21.6,0.91,9.370,165.1,22.2,0.91,9.920,164.8 -22.1,0.91,6.740,176.1,22.1,0.91,7.150,176.1 -23.5,0.91,7.660,181.9,23.4,0.91,7.740,182.0 -24.7,0.91,7.520,188.0,24.5,0.91,7.590,188.2 -26.0,0.90,7.190,194.0,25.8,0.90,7.260,194.2 -27.1,0.90,7.170,205.9,26.9,0.90,7.250,206.1 -27.8,0.90,7.580,197.9,27.6,0.90,7.670,198.2 -28.5,0.90,7.680,199.3,28.3,0.90,7.770,199.5 -28.8,0.90,6.590,195.8,28.6,0.90,6.700,195.7 -29.0,0.90,9.080,186.1,28.8,0.90,9.220,186.3 -28.7,0.90,7.440,202.6,28.6,0.90,7.710,202.6 -28.1,0.90,10.520,183.6,28.0,0.90,10.970,183.4 -27.6,0.90,11.970,184.3,27.6,0.90,12.480,185.0 -27.0,0.90,11.620,190.0,27.1,0.90,12.250,190.9 -26.9,0.90,12.520,196.9,27.0,0.90,13.140,197.2 -26.1,0.90,12.780,198.9,26.3,0.90,13.780,199.4 -25.1,0.90,14.770,198.5,25.2,0.90,16.000,198.6 -24.4,0.90,15.570,196.7,24.6,0.90,16.870,197.2 -23.6,0.90,16.510,195.6,23.7,0.90,17.700,195.8 -22.9,0.90,16.960,197.3,23.1,0.90,18.110,197.6 -22.3,0.90,16.880,198.7,22.5,0.90,18.030,198.9 -21.7,0.90,16.220,196.9,21.9,0.90,17.390,197.4 -21.1,0.90,16.490,196.1,21.3,0.90,17.530,196.7 -20.6,0.90,16.640,197.7,20.8,0.90,17.620,198.3 -20.1,0.90,14.690,196.6,19.9,0.90,14.780,196.7 -21.0,0.90,12.670,195.9,20.8,0.90,12.940,196.0 -22.6,0.90,12.500,191.7,22.4,0.90,12.630,191.9 -24.3,0.90,12.850,188.6,24.1,0.90,12.980,188.7 -25.9,0.90,11.700,186.9,25.7,0.90,11.830,186.9 -27.3,0.90,10.380,184.3,27.1,0.90,10.520,184.3 -28.0,0.90,10.600,174.8,27.8,0.90,10.690,175.2 -28.7,0.90,9.030,172.1,28.5,0.90,9.140,172.8 -28.8,0.90,8.920,176.5,28.6,0.90,9.060,176.0 -28.6,0.90,10.440,164.3,28.4,0.90,10.580,164.5 -28.1,0.90,10.180,163.8,27.9,0.90,10.580,164.2 -27.0,0.90,11.630,155.7,27.0,0.90,12.410,156.2 -26.0,0.90,12.840,153.3,26.0,0.90,13.800,153.3 -25.2,0.90,13.100,156.5,25.2,0.90,14.020,156.6 -24.2,0.90,12.640,161.1,24.2,0.90,13.610,161.7 -23.4,0.90,12.920,167.3,23.4,0.90,13.900,168.3 -22.5,0.90,12.560,176.6,22.6,0.90,13.610,177.3 -21.9,0.90,12.870,181.7,22.0,0.90,14.010,182.1 -21.4,0.90,13.230,182.4,21.5,0.90,14.350,182.7 -20.7,0.90,13.100,176.0,20.7,0.90,14.050,176.3 -19.7,0.90,13.480,178.0,19.7,0.90,14.370,178.5 -19.3,0.90,13.980,181.8,19.3,0.90,14.940,182.3 -18.7,0.90,14.370,181.3,18.7,0.90,15.180,181.8 -18.6,0.90,14.510,180.6,18.6,0.90,15.340,181.2 -19.1,0.90,14.090,180.2,19.0,0.90,15.030,180.4 -20.4,0.90,13.580,182.2,20.3,0.90,13.780,182.3 -21.9,0.90,13.250,182.2,21.8,0.90,13.440,182.3 -23.6,0.90,13.150,180.7,23.4,0.90,13.330,180.7 -25.0,0.90,12.760,181.0,24.8,0.90,12.960,181.0 -26.1,0.90,12.310,181.5,25.8,0.90,12.510,181.5 -26.8,0.90,14.000,180.7,26.6,0.90,14.060,180.8 -27.5,0.90,13.980,180.6,27.3,0.90,14.000,180.7 -28.1,0.90,14.530,180.8,27.9,0.90,14.590,180.9 -28.2,0.90,15.080,177.9,28.0,0.90,15.210,178.0 -27.9,0.90,14.000,176.2,27.7,0.90,14.330,176.1 -27.0,0.90,12.880,173.9,26.9,0.90,13.620,173.8 -26.2,0.90,13.190,174.3,26.1,0.90,13.830,174.7 -25.5,0.90,15.150,173.2,25.4,0.90,15.820,173.3 -24.9,0.90,16.670,175.7,24.8,0.90,17.340,175.6 -24.5,0.90,16.700,179.2,24.3,0.90,17.360,179.2 -23.9,0.90,16.610,178.6,23.8,0.90,17.290,178.5 -23.1,0.90,16.740,178.0,22.9,0.90,17.450,178.0 -22.4,0.90,15.860,179.7,22.2,0.90,16.550,179.8 -21.8,0.90,15.000,181.2,21.7,0.90,15.660,181.5 -21.7,0.90,13.810,185.8,21.6,0.90,14.510,186.0 -21.6,0.90,10.730,198.6,21.4,0.90,11.160,198.2 -21.7,0.91,10.440,187.1,21.6,0.91,10.870,187.7 -21.3,0.91,10.490,193.8,21.3,0.91,10.940,194.8 -21.3,0.91,8.070,204.6,21.1,0.91,8.480,204.6 -16.8,0.91,6.610,334.7,16.6,0.91,7.080,335.7 -17.4,0.91,6.490,349.9,17.2,0.91,6.550,349.6 -17.2,0.91,6.410,344.1,17.0,0.91,6.460,343.9 -17.9,0.91,7.840,356.0,17.7,0.91,7.880,355.9 -18.3,0.91,8.370,5.2,18.1,0.91,8.450,4.9 -17.7,0.91,8.600,6.1,17.5,0.91,8.630,6.5 -17.1,0.91,8.470,16.9,16.9,0.91,8.490,17.0 -16.7,0.91,6.690,32.5,16.5,0.91,6.710,32.1 -17.7,0.91,7.150,29.8,17.5,0.91,7.190,29.7 -18.0,0.91,7.390,32.8,17.8,0.91,7.450,32.7 -17.8,0.91,7.340,28.8,17.6,0.91,7.480,29.4 -17.3,0.91,6.620,40.3,17.2,0.91,6.720,40.5 -17.2,0.91,7.770,33.6,17.0,0.91,7.880,33.9 -16.8,0.91,5.960,49.6,16.6,0.91,6.070,49.7 -16.5,0.91,6.770,39.6,16.3,0.91,6.910,39.8 -16.1,0.91,4.800,47.5,15.9,0.91,4.900,47.1 -14.9,0.91,4.840,49.9,15.0,0.91,5.250,46.2 -14.3,0.91,3.030,58.2,14.3,0.91,3.450,51.8 -14.1,0.91,2.880,60.4,14.2,0.91,3.790,52.7 -14.1,0.91,2.850,42.1,14.2,0.91,3.670,42.2 -14.2,0.91,4.150,30.5,14.3,0.91,4.580,31.6 -14.3,0.91,4.550,27.1,14.2,0.91,5.020,28.9 -14.2,0.91,5.130,19.2,14.2,0.91,5.510,21.1 -14.2,0.91,4.380,8.7,14.2,0.91,5.130,11.4 -15.3,0.91,4.390,17.4,15.1,0.91,4.420,17.5 -16.5,0.91,4.600,17.7,16.3,0.91,4.620,17.5 -17.8,0.91,4.280,17.4,17.6,0.91,4.300,17.0 -19.1,0.91,3.510,12.6,18.9,0.91,3.530,11.7 -20.3,0.91,3.330,356.1,20.1,0.91,3.350,355.3 -21.1,0.91,2.910,349.6,20.9,0.91,2.910,348.8 -21.9,0.91,3.210,327.1,21.7,0.91,3.250,326.6 -22.2,0.91,3.060,320.4,22.0,0.91,3.070,320.4 -22.4,0.91,2.100,332.0,22.2,0.91,2.110,331.6 -22.2,0.91,2.060,337.8,22.0,0.91,2.010,336.9 -21.7,0.91,2.390,52.3,21.5,0.91,2.290,49.9 -21.2,0.91,2.570,78.1,21.1,0.91,2.500,77.5 -20.9,0.91,1.870,104.0,20.9,0.91,1.650,108.7 -20.9,0.91,4.800,157.1,20.9,0.91,4.840,159.3 -20.9,0.91,6.400,178.5,20.9,0.91,6.410,180.6 -20.6,0.91,7.740,187.7,20.6,0.91,7.890,189.0 -19.8,0.91,8.760,188.5,20.1,0.91,8.740,191.4 -19.7,0.91,9.640,195.3,20.0,0.91,9.680,197.6 -20.1,0.91,9.170,201.9,20.3,0.91,9.260,203.8 -20.6,0.91,9.390,206.8,20.9,0.91,9.510,208.8 -20.4,0.91,9.790,215.5,20.8,0.91,10.090,217.5 -20.3,0.90,10.470,210.7,20.7,0.90,10.750,212.6 -19.9,0.90,10.660,211.3,20.4,0.90,10.900,213.7 -20.4,0.90,9.940,220.6,20.9,0.90,10.390,222.6 -19.9,0.90,9.110,211.1,20.2,0.90,9.960,213.3 -20.8,0.90,8.150,199.7,20.7,0.90,8.160,200.6 -22.9,0.90,7.730,200.9,22.7,0.90,7.740,201.6 -24.7,0.90,7.130,207.2,24.5,0.90,7.170,207.7 -25.9,0.90,6.360,206.0,25.7,0.90,6.400,206.4 -27.2,0.90,5.890,202.0,27.0,0.90,5.950,202.4 -27.9,0.90,5.880,198.0,27.7,0.90,5.930,198.4 -28.0,0.90,6.590,189.5,27.8,0.90,6.650,189.9 -28.0,0.90,7.020,182.8,27.8,0.90,7.120,183.2 -27.7,0.90,7.010,175.1,27.5,0.90,7.350,174.9 -27.3,0.90,9.760,169.5,27.2,0.90,9.920,170.4 -26.4,0.90,11.140,158.2,26.5,0.90,11.180,160.5 -25.1,0.90,13.560,155.2,25.4,0.90,14.090,156.6 -24.0,0.90,14.450,157.1,24.3,0.90,15.050,158.8 -23.6,0.90,14.390,163.3,23.8,0.90,14.930,164.7 -22.8,0.90,15.260,170.5,22.9,0.90,15.970,171.4 -22.2,0.90,14.480,172.1,22.4,0.90,15.020,173.2 -22.4,0.90,12.910,188.7,22.7,0.90,13.260,191.2 -21.9,0.90,13.740,197.8,22.2,0.90,14.540,199.4 -21.6,0.90,14.430,198.7,21.8,0.90,15.250,199.9 -21.2,0.90,14.300,196.5,21.4,0.90,14.960,197.4 -20.6,0.90,14.290,198.6,20.7,0.90,14.950,199.6 -20.0,0.90,14.310,195.6,20.2,0.90,14.920,196.6 -19.7,0.90,13.000,193.1,20.0,0.90,13.750,194.4 -20.3,0.90,11.630,191.4,20.2,0.90,11.970,191.8 -21.9,0.90,10.980,193.8,21.7,0.90,11.080,194.0 -23.6,0.90,10.190,185.2,23.4,0.90,10.260,185.4 -24.8,0.90,10.110,183.4,24.6,0.90,10.230,183.4 -26.4,0.90,8.650,181.0,26.2,0.90,8.770,181.1 -27.5,0.90,8.290,176.7,27.3,0.90,8.380,176.9 -28.0,0.90,8.710,171.5,27.8,0.90,8.780,171.7 -28.5,0.90,7.880,170.1,28.3,0.90,7.990,170.3 -28.8,0.90,7.400,173.9,28.6,0.90,7.540,173.8 -28.0,0.90,8.460,150.5,27.9,0.90,8.830,151.0 -27.0,0.90,10.740,142.0,27.0,0.90,11.320,142.7 -25.8,0.90,12.810,140.6,25.8,0.90,13.640,141.0 -25.3,0.90,13.970,144.9,25.3,0.90,14.780,145.1 -24.1,0.90,15.120,150.7,24.1,0.90,15.890,151.2 -23.6,0.90,15.680,164.9,23.6,0.90,16.400,165.7 -22.9,0.90,14.820,172.5,22.9,0.90,15.470,173.4 -22.2,0.90,14.700,176.1,22.2,0.90,15.430,177.0 -21.7,0.90,14.820,179.6,21.7,0.90,15.570,180.4 -21.4,0.90,15.120,183.4,21.5,0.90,15.930,183.9 -20.9,0.90,15.000,179.5,20.9,0.90,15.730,180.2 -20.3,0.91,14.590,183.2,20.4,0.91,15.320,184.4 -19.6,0.91,13.910,182.4,19.6,0.91,14.500,183.5 -19.1,0.91,14.020,183.8,19.0,0.91,14.620,184.5 -19.4,0.91,13.820,187.3,19.3,0.91,14.490,187.6 -20.5,0.91,11.760,183.0,20.3,0.91,11.920,183.4 -22.0,0.91,11.870,188.0,21.8,0.91,11.960,188.2 -23.4,0.91,11.930,185.3,23.2,0.91,12.050,185.4 -24.8,0.91,11.650,182.8,24.5,0.91,11.770,182.9 -26.3,0.91,10.770,184.6,26.1,0.91,10.910,184.8 -27.7,0.90,9.990,187.5,27.5,0.90,10.120,187.7 -28.5,0.90,9.460,186.0,28.3,0.90,9.570,185.8 -29.0,0.90,8.460,184.7,28.8,0.90,8.600,185.4 -29.1,0.90,8.150,182.9,28.9,0.90,8.270,183.5 -28.8,0.90,9.000,172.0,28.7,0.90,9.240,172.2 -28.1,0.90,9.540,164.6,28.1,0.90,10.140,165.4 -27.1,0.90,11.670,159.3,27.0,0.90,12.310,160.0 -25.7,0.90,13.780,161.4,25.7,0.90,14.650,162.1 -25.0,0.90,13.840,171.4,24.9,0.90,14.600,172.1 -24.2,0.90,14.940,183.0,24.2,0.90,15.780,183.5 -23.7,0.90,15.200,192.6,23.7,0.90,16.220,193.2 -22.8,0.90,14.580,189.3,22.8,0.90,15.410,190.3 -21.9,0.90,15.100,183.7,22.0,0.90,15.800,184.7 -21.8,0.90,15.700,185.7,21.9,0.90,16.440,186.7 -21.1,0.90,15.530,185.6,21.1,0.90,16.160,186.5 -20.9,0.90,16.180,189.0,20.9,0.90,16.770,189.7 -20.5,0.90,16.110,190.3,20.5,0.90,16.690,191.2 -20.1,0.90,16.790,192.5,20.1,0.90,17.380,193.1 -19.4,0.90,15.700,192.8,19.4,0.90,16.370,193.1 -20.2,0.90,14.600,192.4,20.1,0.90,14.830,192.7 -21.6,0.90,15.060,190.2,21.4,0.90,15.210,190.3 -23.4,0.90,14.450,192.8,23.2,0.90,14.590,192.8 -25.1,0.90,14.330,192.7,24.8,0.90,14.470,192.7 -26.5,0.90,14.150,190.3,26.3,0.90,14.300,190.3 -27.6,0.90,13.580,188.2,27.4,0.90,13.720,188.4 -28.5,0.90,13.290,185.9,28.3,0.90,13.430,186.1 -29.1,0.90,12.790,188.4,28.9,0.90,12.940,188.4 -29.2,0.90,12.350,183.4,28.9,0.90,12.550,183.4 -28.6,0.90,12.340,176.3,28.4,0.90,12.870,176.1 -27.9,0.90,13.960,171.5,27.9,0.90,14.640,171.4 -26.7,0.90,14.940,175.6,26.6,0.90,15.680,175.9 -25.6,0.90,16.160,179.4,25.6,0.90,16.980,179.8 -24.2,0.90,16.250,182.4,24.2,0.90,17.030,182.7 -23.4,0.90,17.370,184.3,23.3,0.90,18.140,184.7 -22.7,0.90,18.000,185.5,22.7,0.90,18.800,185.9 -22.3,0.90,18.120,187.2,22.3,0.90,18.890,187.6 -21.9,0.90,18.070,188.2,21.9,0.90,18.910,188.7 -21.4,0.90,17.290,190.1,21.4,0.90,18.130,190.8 -21.0,0.90,17.770,191.6,21.0,0.90,18.550,192.2 -20.4,0.90,17.500,192.0,20.3,0.90,18.210,192.6 -19.6,0.90,16.760,193.2,19.6,0.90,17.470,194.0 -19.1,0.90,16.910,197.4,19.1,0.90,17.660,197.9 -19.0,0.90,16.840,195.2,18.8,0.90,17.510,195.2 -19.8,0.90,14.710,195.4,19.7,0.90,14.900,195.6 -21.0,0.90,14.600,195.5,20.8,0.90,14.710,195.6 -22.7,0.90,14.750,197.1,22.5,0.90,14.860,197.3 -24.3,0.90,13.740,196.3,24.1,0.90,13.860,196.3 -25.7,0.90,12.960,196.2,25.5,0.90,13.100,196.3 -27.0,0.90,12.030,199.4,26.8,0.90,12.160,199.5 -27.5,0.90,11.680,192.4,27.3,0.90,11.830,192.6 -28.5,0.90,11.170,195.1,28.3,0.90,11.320,195.2 -28.7,0.90,10.670,192.1,28.5,0.90,10.840,192.3 -28.5,0.90,9.530,186.9,28.4,0.90,9.950,186.7 -28.2,0.90,12.890,188.0,28.2,0.90,13.420,187.9 -27.5,0.90,12.950,189.3,27.5,0.90,13.580,189.3 -26.5,0.90,12.940,191.6,26.5,0.90,13.690,192.2 -25.6,0.90,15.110,191.6,25.6,0.90,15.970,191.8 -24.3,0.90,14.380,191.3,24.3,0.90,15.150,192.2 -23.7,0.90,14.550,192.3,23.7,0.90,15.300,192.7 -23.4,0.90,15.380,190.4,23.4,0.90,16.070,190.7 -23.1,0.90,14.250,199.0,23.1,0.90,14.990,199.0 -22.3,0.91,7.660,222.6,22.4,0.91,8.430,220.5 -16.9,0.91,8.390,346.8,16.6,0.91,9.440,347.2 -15.1,0.91,8.880,7.4,14.9,0.91,8.930,7.9 -13.8,0.91,9.790,4.9,13.7,0.91,9.880,5.1 -12.5,0.91,13.200,17.0,12.3,0.91,13.400,17.1 -12.1,0.91,12.400,19.7,11.9,0.91,12.570,19.6 -11.6,0.91,11.630,15.5,11.4,0.91,11.760,15.3 -11.2,0.91,11.250,14.6,11.0,0.91,11.350,14.4 -10.9,0.91,11.090,12.2,10.7,0.91,11.200,12.2 -11.2,0.91,10.950,13.1,11.0,0.91,11.040,13.0 -11.6,0.91,10.590,14.4,11.4,0.91,10.710,14.4 -12.4,0.91,9.390,15.7,12.2,0.91,9.490,15.7 -13.2,0.91,9.470,18.8,13.0,0.91,9.540,18.9 -14.1,0.91,8.030,23.6,13.9,0.91,8.120,23.5 -14.9,0.91,6.880,24.3,14.7,0.91,6.960,23.8 -15.2,0.91,5.530,34.3,15.0,0.91,5.640,33.8 -15.0,0.91,4.400,41.8,14.9,0.91,4.540,39.4 -15.8,0.91,8.920,26.8,15.8,0.91,9.310,26.8 -15.4,0.91,7.650,34.1,15.4,0.91,7.840,34.0 -15.0,0.91,7.170,35.7,14.9,0.91,7.330,35.8 -14.7,0.91,6.830,30.2,14.6,0.91,6.940,31.6 -14.1,0.91,5.500,28.6,14.1,0.91,5.630,29.0 -14.3,0.91,4.880,16.2,14.3,0.91,5.260,16.5 -14.5,0.91,4.080,13.3,14.6,0.91,4.470,15.1 -14.9,0.91,4.110,357.4,14.9,0.91,4.430,0.6 -15.3,0.91,5.490,341.6,15.3,0.91,5.610,345.6 -15.2,0.91,6.000,327.8,15.3,0.91,6.020,331.8 -15.7,0.91,7.040,320.7,16.0,0.91,7.050,325.6 -15.3,0.91,8.200,321.7,15.7,0.91,8.420,326.5 -11.3,0.91,9.920,335.4,11.4,0.91,10.460,337.6 -11.7,0.91,6.610,355.3,11.5,0.91,6.780,356.5 -13.6,0.91,5.890,8.3,13.5,0.91,5.960,8.5 -15.3,0.91,5.590,6.2,15.1,0.91,5.640,6.2 -16.6,0.91,4.950,357.8,16.4,0.91,4.990,357.6 -18.1,0.91,4.700,346.8,17.9,0.91,4.760,346.4 -19.3,0.91,4.620,332.9,19.1,0.91,4.690,332.9 -20.1,0.91,4.400,325.3,19.8,0.91,4.470,325.4 -20.7,0.91,4.970,324.6,20.5,0.91,5.040,324.5 -21.0,0.91,4.060,335.9,20.8,0.91,4.140,335.5 -21.0,0.91,3.900,349.7,20.8,0.91,3.980,349.3 -20.7,0.91,3.000,18.7,20.6,0.91,3.250,16.7 -20.4,0.91,1.960,34.6,20.4,0.91,2.310,34.6 -20.3,0.91,1.170,65.4,20.3,0.91,1.500,57.2 -20.2,0.91,1.210,163.5,20.1,0.91,0.990,158.2 -20.3,0.91,1.990,211.4,20.2,0.91,1.890,212.8 -20.6,0.91,2.700,215.6,20.5,0.91,2.450,218.9 -20.7,0.91,2.810,234.9,20.7,0.91,2.510,239.9 -20.9,0.91,3.010,240.5,20.8,0.91,2.770,243.9 -20.7,0.91,2.740,238.8,20.7,0.91,2.380,242.7 -20.2,0.91,2.310,249.0,20.4,0.91,1.920,254.4 -20.2,0.91,1.530,314.5,20.3,0.91,1.330,331.1 -18.1,0.91,2.460,16.1,18.0,0.91,2.500,19.4 -17.9,0.91,2.160,25.9,18.3,0.91,2.380,35.4 -18.3,0.91,2.310,11.5,18.7,0.91,2.540,14.3 -18.1,0.91,2.670,7.0,18.6,0.91,3.020,14.0 -19.0,0.91,2.360,13.8,18.9,0.91,2.360,13.2 -20.4,0.91,2.290,43.4,20.2,0.91,2.260,42.8 -21.4,0.91,2.070,38.4,21.2,0.91,2.050,37.4 -22.2,0.91,2.340,44.5,22.0,0.91,2.320,44.0 -22.9,0.91,1.920,50.9,22.7,0.91,1.890,50.4 -23.3,0.91,1.750,48.8,23.1,0.91,1.720,48.3 -23.6,0.91,1.800,40.5,23.4,0.91,1.770,39.8 -23.7,0.91,1.730,51.3,23.5,0.91,1.690,51.4 -23.3,0.91,4.010,75.2,23.1,0.91,4.000,74.9 -22.8,0.91,4.910,87.6,22.6,0.91,4.840,87.7 -22.3,0.91,4.820,114.9,22.3,0.91,4.760,114.9 -22.4,0.91,5.430,128.3,22.2,0.91,5.370,128.5 -21.7,0.91,7.420,145.4,21.7,0.91,7.130,147.6 -21.3,0.91,8.610,156.8,21.2,0.91,8.420,159.1 -20.9,0.91,8.660,162.0,21.0,0.91,8.580,163.6 -20.4,0.91,9.910,169.8,20.7,0.91,10.110,169.7 -19.6,0.91,10.620,166.0,20.0,0.91,10.830,166.2 -19.4,0.91,10.300,171.8,19.8,0.91,10.680,171.3 -19.6,0.91,10.760,172.3,20.1,0.91,11.180,172.5 -19.4,0.91,10.600,172.0,19.9,0.91,10.910,172.0 -19.5,0.91,10.030,171.3,20.2,0.91,10.230,171.8 -18.5,0.91,9.720,177.4,19.4,0.91,9.700,177.4 -18.4,0.91,8.810,195.0,19.3,0.91,8.760,198.9 -18.7,0.91,8.740,205.3,19.6,0.91,9.290,208.0 -19.3,0.91,7.360,199.5,19.2,0.91,7.450,200.3 -20.6,0.91,8.050,197.9,20.4,0.91,8.110,198.3 -22.0,0.91,8.300,198.6,21.8,0.91,8.400,198.8 -22.8,0.91,8.390,192.5,22.5,0.91,8.490,192.5 -23.4,0.91,7.600,186.6,23.2,0.91,7.700,186.7 -24.1,0.91,7.180,186.0,23.9,0.91,7.290,186.0 -24.9,0.91,7.920,181.3,24.7,0.91,8.030,181.2 -24.9,0.91,7.320,182.3,24.7,0.91,7.430,181.9 -24.7,0.91,9.680,178.6,24.6,0.91,9.770,178.5 -24.0,0.91,9.910,169.7,24.0,0.91,10.430,169.8 -23.3,0.91,11.400,168.1,23.5,0.91,12.190,169.4 -21.4,0.91,11.280,162.2,21.5,0.91,11.790,164.5 -20.1,0.91,11.320,177.0,20.3,0.91,11.840,180.3 -19.2,0.91,12.640,187.9,19.4,0.91,13.580,190.0 -18.7,0.91,14.880,192.3,18.9,0.91,16.010,193.4 -18.6,0.91,16.370,194.0,18.9,0.91,17.440,193.7 -18.1,0.91,15.980,191.9,18.3,0.91,16.940,191.9 -17.2,0.91,15.320,186.4,17.5,0.91,16.150,186.9 -16.2,0.91,16.010,183.8,16.4,0.91,16.980,184.7 -16.3,0.91,16.050,186.8,16.5,0.91,16.870,187.5 -15.5,0.91,15.170,184.6,15.8,0.91,15.840,186.0 -15.1,0.91,14.830,183.3,15.4,0.91,15.430,184.3 -15.3,0.91,14.520,186.3,15.7,0.91,15.170,186.8 -15.8,0.91,12.510,187.1,15.8,0.91,13.370,187.2 -17.2,0.91,11.480,188.8,17.0,0.91,11.630,188.9 -18.7,0.91,10.460,181.8,18.5,0.91,10.590,182.0 -20.0,0.91,9.910,179.8,19.8,0.91,10.030,180.0 -21.6,0.91,9.920,176.6,21.3,0.91,10.030,176.6 -22.8,0.91,9.130,171.3,22.6,0.91,9.250,171.5 -23.6,0.91,9.130,167.0,23.4,0.91,9.270,167.2 -24.0,0.91,9.350,165.4,23.8,0.91,9.500,165.6 -24.1,0.91,9.790,166.3,23.9,0.91,9.960,166.5 -23.8,0.91,9.760,162.6,23.6,0.91,10.230,162.6 -22.4,0.91,10.780,153.6,22.3,0.91,11.600,154.0 -21.7,0.91,12.860,157.8,21.7,0.91,13.680,158.0 -21.1,0.91,14.550,163.1,21.0,0.91,15.350,163.3 -20.2,0.91,14.710,172.7,20.1,0.91,15.450,173.0 -19.3,0.91,14.580,179.6,19.3,0.91,15.270,179.9 -18.8,0.91,15.630,182.0,18.7,0.91,16.320,182.2 -18.6,0.91,16.180,181.5,18.5,0.91,16.800,181.6 -18.3,0.91,16.750,183.4,18.2,0.91,17.360,183.6 -17.7,0.91,16.940,183.0,17.7,0.91,17.590,183.3 -17.3,0.91,17.410,184.2,17.2,0.91,18.030,184.5 -16.9,0.91,17.040,184.6,16.8,0.91,17.610,185.0 -16.6,0.91,15.930,183.1,16.5,0.91,16.430,183.4 -16.3,0.91,14.320,184.3,16.2,0.91,14.740,184.5 -16.4,0.91,12.070,183.2,16.2,0.91,12.960,183.2 -16.4,0.91,10.390,185.2,16.3,0.91,10.780,185.3 -18.5,0.91,11.630,188.3,18.3,0.91,11.820,188.4 -19.1,0.91,11.630,180.2,18.9,0.91,11.760,180.3 -20.7,0.91,11.560,182.6,20.5,0.91,11.700,182.5 -22.3,0.91,11.430,177.7,22.1,0.91,11.570,177.9 -23.7,0.91,11.980,173.3,23.4,0.91,12.140,173.5 -24.4,0.90,11.650,173.4,24.2,0.90,11.850,173.5 -25.0,0.90,12.830,173.2,24.8,0.90,13.070,173.2 -25.0,0.90,13.760,174.0,24.8,0.90,14.010,173.8 -24.4,0.90,14.470,168.8,24.3,0.90,14.980,168.8 -23.6,0.90,15.910,170.5,23.5,0.90,16.610,170.7 -22.9,0.90,17.030,173.5,22.8,0.90,17.700,173.7 -22.0,0.90,17.510,176.3,21.9,0.90,18.250,176.4 -21.0,0.90,17.570,175.2,20.9,0.90,18.200,175.3 -20.4,0.90,17.000,174.7,20.3,0.90,17.640,175.0 -20.0,0.90,17.390,176.6,19.9,0.90,18.040,176.8 -19.7,0.90,18.350,178.5,19.6,0.90,19.000,178.8 -19.2,0.90,15.000,195.6,19.1,0.90,15.580,195.7 -19.3,0.90,14.060,191.8,19.3,0.90,14.550,192.8 -19.3,0.90,13.350,196.3,19.2,0.90,13.890,196.9 -19.6,0.90,14.000,206.6,19.5,0.90,14.480,206.9 -19.7,0.90,12.030,209.0,19.5,0.90,12.440,209.5 -19.2,0.90,10.950,206.4,19.2,0.90,11.560,207.7 -19.4,0.90,8.500,209.9,19.3,0.90,9.050,210.7 -20.4,0.90,9.040,225.6,20.3,0.90,9.200,225.7 -21.4,0.90,6.730,224.0,21.2,0.90,6.800,224.3 -22.5,0.90,5.840,244.6,22.3,0.90,5.920,244.3 -24.1,0.90,5.600,239.4,23.8,0.90,5.670,239.3 -25.5,0.90,5.680,243.7,25.3,0.90,5.760,243.8 -26.6,0.90,5.140,251.4,26.4,0.90,5.230,251.1 -27.0,0.90,5.250,255.3,26.8,0.90,5.320,255.0 -27.4,0.90,5.270,242.6,27.2,0.90,5.330,242.5 -27.6,0.90,6.420,250.2,27.4,0.90,6.490,250.0 -27.1,0.90,6.800,276.9,26.9,0.90,6.800,276.6 -26.8,0.90,5.690,274.5,26.7,0.90,5.600,273.8 -26.8,0.90,4.720,267.8,26.7,0.90,4.660,264.9 -26.4,0.90,6.940,273.2,26.3,0.90,6.970,272.0 -26.3,0.90,7.080,266.8,26.2,0.90,7.070,266.1 -25.4,0.90,7.310,282.8,25.6,0.90,7.610,278.9 -23.2,0.91,4.200,252.8,23.8,0.91,4.810,261.2 -24.5,0.91,6.010,185.7,24.4,0.91,5.950,187.8 -24.9,0.91,5.820,180.6,24.9,0.91,5.990,179.9 -24.3,0.91,6.490,202.7,24.2,0.91,6.650,203.4 -22.5,0.91,6.830,228.8,22.5,0.91,7.160,228.9 -22.4,0.91,5.780,260.1,22.2,0.91,5.870,256.9 -22.4,0.91,4.460,287.4,22.5,0.91,4.630,286.8 -22.9,0.91,2.960,325.7,23.0,0.91,2.750,330.2 -18.7,0.91,3.070,350.7,19.0,0.91,3.590,352.5 -18.7,0.91,4.160,2.6,18.6,0.91,4.570,3.1 -20.7,0.91,3.330,18.1,20.5,0.91,3.340,18.2 -22.5,0.91,3.760,32.6,22.3,0.91,3.740,32.3 -23.3,0.91,4.520,30.1,23.1,0.91,4.500,29.9 -24.4,0.91,2.710,30.7,24.2,0.91,2.690,30.6 -25.2,0.91,3.120,44.3,25.0,0.91,3.110,44.5 -25.8,0.91,4.540,41.7,25.6,0.91,4.550,41.8 -26.0,0.91,6.140,48.8,25.8,0.91,6.170,49.1 -25.6,0.91,7.600,52.1,25.4,0.91,7.660,52.3 -25.0,0.91,8.550,49.1,24.9,0.91,8.830,49.5 -23.6,0.91,6.620,102.8,23.5,0.91,6.770,100.6 -20.6,0.91,6.070,154.0,20.4,0.91,6.160,153.7 -20.4,0.91,5.850,170.2,20.3,0.91,6.280,169.5 -19.9,0.91,2.610,177.5,19.7,0.91,2.900,178.0 -19.9,0.91,2.780,79.1,19.7,0.91,2.630,90.7 -19.5,0.91,1.990,136.7,19.3,0.91,2.020,136.9 -19.3,0.91,2.840,100.0,19.3,0.91,2.850,115.4 -20.0,0.91,4.000,108.3,20.2,0.91,4.360,104.6 -18.7,0.91,2.010,60.5,18.8,0.91,2.030,67.3 -19.5,0.91,1.020,52.1,19.6,0.91,0.990,71.6 -18.3,0.91,3.320,293.7,18.8,0.91,2.600,293.2 -16.7,0.91,3.440,278.9,17.6,0.91,3.010,272.6 -18.4,0.91,4.630,301.6,18.5,0.91,4.240,300.0 -17.1,0.91,0.480,290.5,17.6,0.91,0.750,311.9 -18.4,0.91,1.080,96.5,18.3,0.91,0.930,105.9 -19.2,0.91,3.560,81.3,19.2,0.91,3.920,82.8 -18.5,0.91,2.960,92.7,18.5,0.91,3.310,97.0 -19.1,0.91,2.590,100.9,18.9,0.91,2.630,102.5 -19.9,0.91,2.120,78.8,19.8,0.91,2.170,83.7 -19.9,0.91,3.830,152.8,19.7,0.91,3.860,151.8 -19.9,0.91,2.490,84.5,19.7,0.91,2.540,85.2 -19.5,0.91,3.290,73.4,19.3,0.91,3.280,74.2 -20.0,0.91,4.340,99.6,19.8,0.91,4.370,99.7 -18.9,0.91,5.690,76.5,18.8,0.91,5.870,78.8 -19.0,0.91,5.930,106.8,18.8,0.91,6.400,107.3 -18.5,0.91,5.190,94.4,18.4,0.91,5.660,96.3 -18.6,0.91,5.160,105.8,18.5,0.91,5.620,106.9 -18.6,0.91,5.490,124.8,18.5,0.91,5.880,125.4 -18.4,0.91,7.060,140.3,18.2,0.91,7.260,140.6 -18.5,0.91,7.310,143.3,18.4,0.91,7.780,143.3 -18.6,0.91,8.740,148.7,18.4,0.91,9.180,148.9 -18.6,0.91,10.060,156.8,18.5,0.91,10.440,156.5 -18.7,0.91,11.380,167.3,18.6,0.91,11.880,167.8 -18.9,0.91,10.150,173.6,18.7,0.91,10.520,173.5 -18.8,0.91,10.240,181.2,18.7,0.91,10.640,181.0 -18.6,0.91,10.470,179.0,18.5,0.91,10.840,179.1 -19.0,0.91,13.440,183.6,18.8,0.91,13.810,183.7 -18.8,0.91,14.660,180.3,18.6,0.91,15.030,180.5 -18.4,0.91,11.780,184.2,18.2,0.91,12.190,184.3 -18.6,0.91,10.390,196.5,18.4,0.91,10.580,196.9 -19.4,0.91,9.140,191.1,19.3,0.91,9.250,191.1 -20.6,0.91,9.430,191.9,20.4,0.91,9.510,192.0 -21.8,0.91,9.890,196.2,21.6,0.91,9.990,196.3 -22.7,0.91,10.320,193.2,22.5,0.91,10.420,193.5 -21.1,0.91,6.020,204.9,21.2,0.91,6.460,201.1 -22.4,0.91,10.420,178.1,22.2,0.91,10.490,178.2 -20.7,0.91,7.510,193.1,20.5,0.91,7.630,196.4 -21.0,0.91,5.920,215.5,20.9,0.91,6.250,212.8 -20.2,0.91,6.460,170.2,20.2,0.91,6.690,176.7 -20.5,0.91,9.610,182.2,20.4,0.91,9.960,183.7 -21.1,0.91,12.100,192.8,21.0,0.91,12.580,193.5 -20.8,0.91,12.200,191.1,20.7,0.91,12.770,191.6 -20.2,0.91,12.480,200.5,20.1,0.91,12.950,201.5 -19.7,0.91,12.940,200.4,19.6,0.91,13.490,201.0 -19.8,0.91,12.940,202.3,19.8,0.91,13.550,203.4 -19.7,0.91,12.900,201.9,19.7,0.91,13.420,203.6 -19.7,0.91,13.080,203.4,19.6,0.91,13.700,204.7 -19.6,0.91,13.200,206.0,19.5,0.91,13.790,206.7 -19.7,0.91,12.120,213.3,19.6,0.91,12.660,214.1 -19.3,0.91,3.820,11.6,19.1,0.91,3.260,10.9 -19.7,0.91,1.290,317.9,19.5,0.91,1.470,301.8 -13.9,0.91,10.500,356.0,13.8,0.91,10.550,356.4 -10.7,0.91,10.550,14.6,10.5,0.91,10.860,14.8 -9.5,0.91,11.380,24.1,9.3,0.91,11.570,24.0 -9.2,0.91,8.690,3.3,9.0,0.91,8.720,3.6 -8.2,0.91,11.770,30.0,8.0,0.91,11.880,29.9 -8.0,0.91,9.360,19.9,7.9,0.91,9.450,19.6 -8.0,0.91,10.060,15.8,7.8,0.91,10.150,16.0 -8.5,0.91,9.410,21.0,8.4,0.91,9.500,20.9 -8.7,0.91,8.420,26.8,8.5,0.91,8.490,26.6 -8.6,0.91,7.410,23.6,8.5,0.91,7.480,23.5 -8.2,0.91,7.950,23.3,8.1,0.91,8.120,23.5 -8.2,0.91,7.770,26.0,8.0,0.91,7.970,25.8 -7.9,0.91,8.320,11.0,7.7,0.91,8.420,11.3 -7.8,0.91,8.170,25.2,7.6,0.91,8.310,25.6 -7.9,0.91,7.800,31.9,7.8,0.91,7.980,32.2 -7.9,0.91,8.490,26.8,7.7,0.91,8.630,27.1 -7.9,0.91,8.170,32.2,7.7,0.91,8.360,32.6 -8.0,0.91,7.520,33.9,7.8,0.91,7.740,34.3 -8.1,0.91,7.450,34.1,7.9,0.91,7.660,34.3 -8.1,0.91,7.260,30.9,7.9,0.91,7.430,31.4 -8.3,0.91,5.970,25.8,8.1,0.91,6.250,26.4 -8.4,0.91,9.300,27.3,8.3,0.91,9.820,28.3 -8.5,0.91,8.390,28.6,8.3,0.91,8.810,29.3 -8.2,0.91,9.970,36.2,8.0,0.91,10.300,36.7 -7.9,0.91,8.470,31.4,7.8,0.91,8.830,32.3 -7.7,0.91,8.230,31.6,7.5,0.91,8.340,31.9 -7.7,0.91,7.920,33.7,7.5,0.91,7.980,33.8 -8.1,0.91,6.910,34.6,7.9,0.91,6.960,34.6 -8.3,0.91,6.180,27.0,8.1,0.91,6.210,27.0 -8.4,0.91,6.080,15.2,8.2,0.91,6.130,15.2 -8.5,0.91,5.490,4.0,8.3,0.91,5.530,4.7 -9.3,0.91,4.460,5.7,9.1,0.91,4.510,5.9 -10.5,0.91,4.950,8.5,10.4,0.91,5.000,8.4 -11.1,0.91,4.710,13.7,10.9,0.91,4.770,13.4 -10.6,0.91,6.110,344.4,10.4,0.91,6.250,344.8 -9.7,0.91,4.870,352.9,9.5,0.91,5.040,353.1 -9.6,0.91,3.750,346.2,9.5,0.91,3.930,347.4 -9.6,0.91,3.360,357.4,9.5,0.91,3.380,0.8 -9.7,0.91,3.340,2.5,9.6,0.91,3.300,5.1 -9.5,0.91,2.560,8.5,9.5,0.91,2.840,10.1 -9.3,0.91,2.170,10.6,9.3,0.91,2.410,11.3 -9.3,0.91,1.470,4.4,9.4,0.91,1.690,359.4 -9.7,0.91,1.230,359.1,9.9,0.91,1.550,358.9 -10.5,0.91,0.740,288.4,10.6,0.91,0.720,311.5 -11.0,0.91,1.520,235.3,11.0,0.91,1.270,240.7 -10.9,0.91,2.420,225.8,10.8,0.91,2.120,229.5 -10.6,0.91,3.630,215.8,10.7,0.91,3.250,217.8 -10.8,0.91,4.010,216.2,11.0,0.91,3.630,218.3 -11.3,0.91,5.180,218.2,11.4,0.91,4.800,219.0 -11.4,0.91,5.360,216.7,11.6,0.91,5.560,215.7 -12.5,0.91,4.330,217.7,12.3,0.91,4.320,217.6 -13.9,0.91,3.660,215.3,13.8,0.91,3.650,215.2 -15.3,0.91,3.240,206.3,15.1,0.91,3.250,206.3 -16.4,0.91,4.190,186.9,16.1,0.91,4.200,187.2 -17.1,0.91,4.580,185.1,16.9,0.91,4.600,185.3 -17.8,0.91,4.680,183.4,17.6,0.91,4.700,183.6 -18.1,0.91,5.120,178.5,17.9,0.91,5.170,178.7 -18.1,0.91,6.210,175.5,17.9,0.91,6.230,175.5 -17.7,0.91,6.920,167.8,17.6,0.91,7.180,168.4 -16.9,0.91,9.240,156.7,16.8,0.91,9.570,157.0 -16.4,0.91,10.550,160.1,16.4,0.91,10.950,160.3 -15.7,0.91,11.170,159.0,15.8,0.91,11.880,159.5 -15.5,0.91,11.810,163.9,15.6,0.91,12.600,164.4 -15.2,0.91,12.710,167.2,15.2,0.91,13.340,167.7 -14.9,0.91,14.190,173.4,15.0,0.91,14.810,173.6 -15.0,0.91,15.610,174.2,15.0,0.91,16.290,174.2 -14.3,0.91,15.340,182.3,14.4,0.91,15.990,182.9 -14.3,0.91,14.440,180.6,14.5,0.91,14.990,181.6 -13.5,0.91,13.380,185.6,13.6,0.91,13.990,186.2 -13.8,0.91,13.920,187.3,13.9,0.91,14.480,187.9 -13.4,0.91,13.730,186.9,13.5,0.91,14.190,187.7 -13.0,0.90,14.010,190.9,13.1,0.90,14.500,191.5 -13.0,0.90,14.670,187.9,13.3,0.90,15.470,188.6 -13.6,0.90,12.900,188.6,13.5,0.90,13.330,189.0 -14.3,0.90,12.720,192.8,14.2,0.90,12.940,193.2 -15.2,0.90,12.460,193.8,15.0,0.90,12.580,194.2 -16.3,0.90,10.450,200.5,16.1,0.90,10.580,200.8 -17.4,0.90,8.580,210.4,17.2,0.90,8.660,210.6 -18.4,0.91,5.690,216.2,18.2,0.91,5.750,216.7 -19.3,0.91,5.180,222.1,19.1,0.91,5.220,222.3 -19.5,0.91,3.660,196.1,19.3,0.91,3.650,197.6 -16.0,0.91,11.780,7.5,15.8,0.91,12.060,7.6 -10.4,0.91,12.810,7.0,10.2,0.91,12.980,7.1 -8.5,0.91,13.460,5.2,8.3,0.91,13.630,5.3 -6.8,0.91,14.140,12.3,6.6,0.91,14.360,12.0 -5.6,0.91,13.430,8.1,5.4,0.91,13.750,8.2 -5.1,0.91,11.750,13.3,5.0,0.91,12.160,13.3 -4.5,0.91,12.050,11.0,4.3,0.91,12.420,11.1 -4.1,0.91,11.090,10.7,4.0,0.91,11.470,10.6 -3.8,0.91,11.670,10.2,3.7,0.91,12.130,10.7 -3.4,0.91,10.240,12.5,3.3,0.91,10.780,13.1 -3.3,0.91,10.290,14.1,3.2,0.91,10.900,15.2 -3.2,0.91,10.080,13.1,3.2,0.91,10.670,14.5 -3.2,0.91,9.610,5.2,3.1,0.91,9.980,7.0 -3.1,0.91,8.880,356.9,3.1,0.91,9.070,358.6 -3.2,0.91,7.860,348.4,3.2,0.91,7.900,351.3 -3.4,0.91,5.840,339.7,3.6,0.91,6.010,344.5 -4.3,0.91,3.840,327.1,4.2,0.91,3.900,329.6 -6.1,0.91,3.430,326.0,6.0,0.91,3.410,326.9 -8.1,0.91,2.960,325.5,7.9,0.91,2.950,326.1 -10.1,0.91,1.770,327.4,9.9,0.91,1.760,327.9 -11.8,0.91,0.680,343.0,11.6,0.91,0.670,342.2 -13.2,0.91,0.310,168.6,13.0,0.91,0.290,172.1 -14.4,0.91,1.600,179.9,14.2,0.91,1.600,181.0 -15.0,0.91,2.550,172.9,14.8,0.91,2.570,173.7 -15.0,0.91,3.890,189.3,14.8,0.91,3.910,189.3 -14.5,0.91,5.340,185.2,14.3,0.91,5.270,185.4 -13.8,0.91,6.800,188.0,13.6,0.91,6.760,187.7 -12.9,0.91,9.140,183.3,12.8,0.91,9.200,183.4 -12.4,0.91,10.340,183.2,12.4,0.91,10.480,183.1 -12.2,0.91,11.370,186.1,12.3,0.91,11.630,187.1 -12.0,0.91,12.350,190.0,12.1,0.91,12.630,190.7 -11.7,0.91,12.850,190.8,11.9,0.91,13.220,191.6 -11.5,0.91,13.630,192.8,11.7,0.91,14.040,193.3 -12.2,0.91,13.480,198.3,12.6,0.91,13.880,199.2 -11.9,0.91,13.530,201.1,12.3,0.91,14.010,201.8 -12.2,0.91,13.410,202.4,12.6,0.91,13.870,202.7 -11.9,0.91,13.530,207.8,12.4,0.91,14.120,209.5 -11.8,0.91,13.990,213.5,12.2,0.91,14.700,214.5 -11.3,0.91,14.650,209.3,11.7,0.91,15.270,210.3 -11.2,0.91,14.340,206.8,11.3,0.91,14.910,207.4 -11.5,0.91,13.330,204.1,11.5,0.91,13.990,204.9 -12.9,0.91,12.310,201.1,12.8,0.91,12.460,201.6 -14.3,0.90,11.360,200.5,14.2,0.90,11.410,200.9 -15.8,0.90,11.050,199.6,15.7,0.90,11.100,199.8 -17.8,0.90,11.100,198.4,17.6,0.90,11.170,198.6 -19.4,0.90,11.260,196.1,19.2,0.90,11.360,196.3 -20.4,0.90,11.180,195.9,20.2,0.90,11.310,196.1 -20.9,0.90,11.190,194.9,20.7,0.90,11.330,195.0 -20.8,0.90,11.240,194.9,20.6,0.90,11.420,195.1 -20.2,0.90,12.970,192.1,20.1,0.90,13.400,192.3 -19.0,0.90,13.160,187.3,19.0,0.90,13.510,188.4 -18.3,0.90,14.740,192.3,18.3,0.90,15.510,193.8 -17.6,0.90,14.930,199.6,17.6,0.90,15.960,201.4 -16.5,0.90,14.510,197.4,16.5,0.90,15.590,199.8 -15.8,0.90,14.750,199.6,15.9,0.90,15.800,201.7 -15.4,0.90,15.000,203.7,15.6,0.90,16.140,205.7 -15.4,0.90,14.000,201.8,15.5,0.90,14.760,203.8 -15.2,0.90,14.530,202.6,15.3,0.90,15.370,204.5 -15.0,0.90,14.150,202.7,15.1,0.90,14.790,204.5 -14.5,0.90,10.620,215.2,14.7,0.90,11.280,215.8 -13.9,0.91,6.780,253.1,14.0,0.91,7.540,246.8 -13.8,0.91,5.700,293.0,13.8,0.91,5.990,291.5 -11.0,0.91,7.770,332.5,10.9,0.91,8.460,338.5 -9.9,0.91,8.890,349.3,9.8,0.91,9.300,350.2 -10.0,0.91,7.830,359.0,9.8,0.91,7.890,359.1 -11.0,0.91,7.960,5.8,10.8,0.91,8.020,5.9 -12.5,0.91,8.940,9.0,12.3,0.91,9.020,9.0 -13.5,0.91,9.790,10.3,13.3,0.91,9.890,10.2 -14.1,0.91,10.160,14.1,13.9,0.91,10.280,14.2 -14.9,0.91,10.370,17.1,14.7,0.91,10.490,17.1 -13.9,0.91,10.150,16.7,13.7,0.91,10.270,16.9 -14.2,0.91,11.110,28.0,14.0,0.91,11.240,28.0 -14.8,0.91,8.260,27.9,14.6,0.91,8.370,27.9 -14.9,0.91,7.440,31.9,14.7,0.91,7.690,31.8 -14.5,0.91,7.480,29.0,14.4,0.91,7.850,29.3 -13.9,0.91,9.450,30.6,13.8,0.91,9.970,33.1 -13.4,0.91,9.550,33.0,13.3,0.91,9.950,35.4 -12.6,0.91,8.730,45.7,12.5,0.91,8.780,49.1 -11.9,0.91,6.660,51.1,11.8,0.91,6.970,52.6 -11.3,0.91,5.880,48.1,11.2,0.91,6.100,47.8 -10.5,0.91,4.610,48.6,10.6,0.91,5.030,47.2 -10.4,0.91,4.030,38.6,10.5,0.91,4.440,40.0 -10.3,0.91,3.150,32.3,10.4,0.91,3.520,35.2 -10.7,0.91,2.900,10.7,10.8,0.91,3.190,16.1 -11.2,0.91,2.550,354.0,11.3,0.91,2.710,1.9 -11.8,0.91,2.270,347.1,11.9,0.91,2.350,356.4 -12.3,0.91,1.800,322.1,12.3,0.91,1.690,332.3 -13.3,0.91,2.530,303.8,13.4,0.91,2.280,309.4 -13.5,0.91,3.610,285.7,13.8,0.91,3.230,287.6 -14.1,0.91,3.160,275.4,13.9,0.91,3.140,275.2 -15.7,0.91,3.240,282.0,15.6,0.91,3.250,281.6 -17.1,0.91,3.680,287.2,16.9,0.91,3.700,287.0 -18.0,0.91,3.960,287.1,17.8,0.91,3.990,286.8 -18.7,0.91,3.960,286.3,18.5,0.91,3.990,286.1 -19.3,0.91,3.880,288.6,19.1,0.91,3.920,288.5 -19.7,0.91,3.460,285.4,19.5,0.91,3.500,285.3 -19.8,0.91,3.470,277.7,19.6,0.91,3.530,277.9 -19.7,0.91,3.500,256.5,19.5,0.91,3.560,257.1 -19.5,0.91,4.920,252.4,19.4,0.91,4.830,253.9 -19.4,0.91,5.640,241.5,19.3,0.91,5.640,241.9 -19.4,0.91,6.700,241.7,19.3,0.91,6.680,243.1 -18.8,0.91,7.300,228.2,18.7,0.91,7.190,230.5 -18.6,0.91,7.900,238.5,18.6,0.91,7.960,239.4 -18.4,0.91,9.180,239.9,18.4,0.91,9.120,241.0 -18.1,0.91,10.090,237.1,18.2,0.91,10.070,237.8 -18.0,0.91,10.880,238.0,18.1,0.91,10.910,238.3 -17.6,0.91,11.440,239.4,17.9,0.91,11.520,239.7 -17.7,0.91,11.460,240.3,18.0,0.91,11.270,240.1 -18.0,0.91,10.650,243.5,18.1,0.91,10.350,243.1 -18.1,0.91,9.630,241.5,18.2,0.91,9.350,240.5 -18.1,0.91,9.160,240.9,18.2,0.91,8.850,239.5 -18.4,0.91,8.690,239.7,18.5,0.91,8.430,237.6 -18.1,0.91,8.320,237.6,18.7,0.91,8.740,236.4 -18.3,0.91,6.500,232.7,18.2,0.91,6.690,232.9 -19.8,0.91,6.540,229.6,19.6,0.91,6.600,229.6 -20.6,0.91,7.020,222.1,20.4,0.91,7.090,222.2 -21.3,0.91,7.660,216.6,21.1,0.91,7.750,216.5 -21.6,0.91,8.260,214.0,21.4,0.91,8.360,214.0 -22.0,0.91,8.250,211.2,21.8,0.91,8.350,211.2 -22.0,0.91,8.170,212.2,21.8,0.91,8.280,212.2 -21.9,0.91,8.000,209.0,21.7,0.91,8.160,209.0 -21.3,0.91,10.210,201.3,21.2,0.91,10.450,201.7 -20.9,0.91,11.370,205.6,20.8,0.91,11.570,205.7 -20.3,0.91,11.990,209.4,20.4,0.91,12.280,209.2 -19.9,0.91,12.470,214.1,19.9,0.91,12.770,214.1 -19.4,0.91,12.310,214.1,19.5,0.91,12.570,213.6 -18.9,0.91,12.500,215.6,19.0,0.91,12.860,215.0 -18.5,0.91,13.150,215.8,18.7,0.91,13.600,215.1 -17.9,0.91,13.070,215.3,18.1,0.91,13.580,214.6 -17.4,0.91,13.160,216.3,17.6,0.91,13.760,215.7 -17.0,0.91,12.610,217.6,17.4,0.91,13.140,217.5 -16.7,0.91,12.210,217.9,17.0,0.91,12.700,217.7 -16.7,0.91,11.310,218.2,17.0,0.91,11.710,218.1 -16.7,0.91,10.580,215.6,17.0,0.91,10.920,215.7 -16.6,0.91,9.730,217.1,17.0,0.91,10.030,217.4 -16.4,0.91,8.650,213.2,16.8,0.91,8.930,213.7 -16.8,0.91,7.810,211.3,17.2,0.91,8.210,211.7 -17.1,0.91,2.230,201.5,17.0,0.91,2.300,202.4 -18.3,0.91,1.450,207.2,18.1,0.91,1.460,208.5 -19.3,0.91,1.910,192.2,19.1,0.91,1.920,192.7 -20.1,0.91,2.380,188.6,19.9,0.91,2.370,188.7 -20.6,0.91,2.650,166.3,20.4,0.91,2.650,165.9 -21.0,0.91,2.710,147.6,20.8,0.91,2.720,147.7 -21.2,0.91,3.680,128.1,21.0,0.91,3.670,128.7 -21.1,0.91,3.300,159.6,20.9,0.91,3.370,159.0 -20.7,0.91,5.410,145.8,20.5,0.91,5.480,145.9 -20.4,0.91,5.020,136.0,20.3,0.91,5.070,137.2 -20.7,0.91,5.900,134.2,20.6,0.91,5.730,137.0 -17.6,0.91,4.350,86.2,17.6,0.91,4.310,94.8 -14.8,0.91,6.440,69.7,15.2,0.91,6.310,79.5 -13.4,0.91,6.450,73.3,13.6,0.91,7.610,84.7 -12.1,0.91,6.860,80.4,12.2,0.91,7.950,88.5 -11.5,0.92,7.200,89.9,11.6,0.92,8.060,97.1 -11.1,0.92,7.960,106.3,11.3,0.92,9.910,110.0 -10.6,0.92,8.050,107.8,11.0,0.92,9.320,111.7 -11.3,0.92,8.050,116.6,12.2,0.92,8.310,125.4 -11.6,0.92,7.240,122.0,13.0,0.92,7.370,133.0 -10.5,0.92,6.510,119.5,11.8,0.92,7.160,131.6 -10.9,0.92,6.140,125.1,12.4,0.92,6.370,137.6 -9.5,0.92,4.930,127.2,10.4,0.92,5.600,132.8 -11.0,0.92,4.430,141.0,11.4,0.92,5.270,144.6 -11.5,0.92,2.730,115.9,11.5,0.92,3.070,127.0 -14.6,0.92,2.920,120.9,14.5,0.92,3.040,124.5 -16.5,0.92,5.140,162.1,16.3,0.92,5.200,162.3 -17.5,0.92,6.040,173.0,17.3,0.92,6.110,173.1 -18.0,0.92,5.780,174.0,17.8,0.92,5.850,174.0 -18.6,0.91,6.170,170.2,18.4,0.91,6.250,170.4 -18.8,0.91,6.540,174.0,18.6,0.91,6.640,174.1 -18.4,0.91,7.210,174.6,18.2,0.91,7.310,174.6 -17.8,0.91,7.620,149.6,17.7,0.91,7.960,149.6 -17.2,0.91,8.370,136.4,17.0,0.91,8.910,136.4 -16.6,0.91,9.370,141.1,16.5,0.91,9.910,141.2 -16.0,0.91,9.540,149.8,16.0,0.91,10.540,149.3 -15.5,0.91,10.110,148.7,15.4,0.91,10.930,148.6 -14.7,0.91,11.010,151.0,14.6,0.91,12.100,151.2 -14.5,0.91,11.720,164.4,14.5,0.91,12.640,163.9 -14.7,0.91,11.280,171.2,14.6,0.91,11.830,171.5 -14.3,0.91,11.600,175.4,14.2,0.91,12.170,175.5 -14.8,0.91,12.140,182.9,14.6,0.91,12.550,183.1 -15.2,0.91,12.000,197.1,15.1,0.91,12.420,197.3 -15.5,0.91,10.190,187.3,15.3,0.91,10.600,187.7 -15.4,0.91,10.220,193.8,15.3,0.91,10.600,194.0 -15.3,0.91,10.950,188.5,15.2,0.91,11.410,189.4 -15.4,0.91,11.610,196.3,15.3,0.91,12.070,197.2 -15.3,0.91,8.990,195.3,15.2,0.91,9.290,196.1 -16.3,0.91,9.480,202.4,16.1,0.91,9.620,202.8 -17.4,0.91,9.120,209.1,17.2,0.91,9.240,209.5 -16.4,0.91,6.610,223.8,16.3,0.91,6.670,222.0 -19.4,0.91,8.010,227.8,19.2,0.91,8.100,228.0 -19.8,0.91,8.420,230.5,19.6,0.91,8.500,230.9 -20.4,0.91,7.410,225.3,20.3,0.91,7.480,226.2 -20.9,0.91,6.180,232.8,20.7,0.91,6.220,233.3 -21.4,0.91,6.240,251.5,21.3,0.91,6.310,251.6 -21.6,0.91,4.550,304.8,21.4,0.91,4.780,305.0 -20.4,0.91,2.530,5.7,20.3,0.91,3.150,3.7 -20.4,0.91,6.400,356.9,20.3,0.91,6.430,356.9 -19.7,0.91,6.820,7.8,19.6,0.91,7.010,8.7 -17.8,0.91,4.950,31.9,17.6,0.91,5.120,31.2 -16.4,0.91,5.420,55.6,16.3,0.91,5.620,51.8 -15.4,0.91,6.610,34.7,15.3,0.91,6.850,36.4 -14.3,0.91,5.990,28.4,14.2,0.91,6.520,29.8 -13.8,0.91,6.990,20.7,13.7,0.91,7.440,21.3 -13.8,0.91,6.100,23.0,13.7,0.91,6.420,22.8 -13.1,0.91,7.580,20.4,12.9,0.91,7.850,20.6 -12.5,0.91,6.300,4.2,12.3,0.91,6.340,4.6 -11.9,0.91,5.440,358.3,11.7,0.91,5.450,358.4 -11.2,0.91,4.930,360.0,11.0,0.91,4.980,359.7 -11.0,0.91,4.290,10.6,10.8,0.91,4.290,10.8 -11.1,0.91,4.100,5.5,10.9,0.91,4.110,5.4 -12.1,0.91,3.470,5.1,12.0,0.91,3.480,4.7 -13.5,0.91,2.650,20.1,13.3,0.91,2.650,19.2 -14.7,0.91,1.530,27.0,14.5,0.91,1.500,25.0 -16.3,0.91,1.260,338.4,16.1,0.91,1.280,335.2 -17.6,0.91,1.110,263.5,17.4,0.91,1.130,262.2 -18.5,0.91,0.850,241.0,18.3,0.91,0.900,240.1 -19.2,0.91,2.700,197.4,19.0,0.91,2.690,198.0 -18.8,0.91,4.760,182.9,18.6,0.91,4.770,183.6 -18.0,0.91,6.430,182.0,17.8,0.91,6.550,182.4 -17.4,0.91,6.990,175.6,17.3,0.91,6.940,176.9 -16.7,0.91,8.710,173.1,16.7,0.91,8.990,173.7 -15.6,0.91,9.280,168.2,15.7,0.91,9.640,169.6 -15.8,0.91,10.470,178.3,15.8,0.91,10.840,178.6 -15.5,0.91,11.750,175.8,15.5,0.91,12.180,176.1 -15.2,0.91,12.590,174.8,15.2,0.91,13.080,175.2 -15.8,0.91,12.760,182.1,15.8,0.91,13.250,182.4 -16.0,0.91,13.460,184.9,16.1,0.91,13.990,185.1 -15.8,0.91,13.300,181.0,15.8,0.91,13.810,181.5 -15.4,0.91,13.440,182.6,15.4,0.91,14.040,183.2 -15.3,0.91,13.470,182.0,15.3,0.91,14.280,182.5 -16.1,0.91,13.520,185.5,16.0,0.91,13.910,185.7 -16.6,0.91,13.840,186.4,16.5,0.91,14.270,186.7 -16.9,0.91,14.420,185.8,16.7,0.91,14.830,186.1 -16.6,0.91,14.560,181.7,16.5,0.91,14.980,181.8 -17.7,0.91,14.300,184.8,17.6,0.91,14.570,185.0 -18.4,0.91,14.340,185.8,18.2,0.91,14.530,185.9 -19.2,0.91,13.770,186.1,19.0,0.91,13.930,186.3 -20.6,0.91,12.390,179.7,20.4,0.91,12.550,180.0 -22.3,0.91,12.460,184.1,22.1,0.91,12.630,184.1 -22.9,0.91,11.860,178.8,22.6,0.91,12.050,179.1 -23.5,0.91,13.050,179.3,23.3,0.91,13.270,179.5 -23.6,0.91,15.080,179.8,23.4,0.91,15.270,179.8 -22.9,0.91,12.100,175.3,22.7,0.91,12.690,175.2 -22.4,0.91,14.110,174.7,22.3,0.91,14.780,174.6 -21.6,0.91,17.190,174.4,21.5,0.91,17.810,174.6 -20.6,0.91,18.530,178.2,20.6,0.91,19.290,178.4 -20.8,0.91,21.190,183.5,20.7,0.91,21.940,183.6 -20.2,0.91,19.920,184.0,20.2,0.91,20.680,184.0 -19.5,0.91,17.500,183.0,19.4,0.91,18.280,183.0 -18.9,0.91,17.050,183.7,18.8,0.91,17.840,183.9 -18.3,0.91,17.280,186.0,18.3,0.91,18.090,186.3 -18.3,0.91,17.390,186.5,18.2,0.91,18.140,186.7 -18.0,0.91,16.500,188.1,17.9,0.91,17.180,188.5 -17.9,0.91,17.160,190.4,17.8,0.91,17.800,190.8 -17.6,0.91,16.760,192.2,17.6,0.91,17.420,192.5 -17.6,0.91,16.480,193.4,17.5,0.91,17.120,193.6 -17.6,0.91,15.930,193.8,17.5,0.91,16.530,194.1 -17.9,0.91,14.720,193.6,17.8,0.91,15.350,193.7 -18.8,0.91,14.300,193.6,18.6,0.91,14.490,193.7 -19.8,0.91,12.550,193.7,19.6,0.91,12.690,193.8 -20.8,0.91,11.400,195.3,20.6,0.91,11.520,195.4 -21.9,0.91,9.670,195.1,21.7,0.91,9.790,195.1 -23.0,0.91,9.800,192.7,22.8,0.91,9.930,192.7 -23.7,0.91,9.540,189.8,23.5,0.91,9.680,189.8 -23.9,0.91,8.590,183.2,23.7,0.91,8.730,183.3 -24.0,0.91,9.830,176.5,23.9,0.91,10.080,176.6 -23.7,0.91,8.460,175.5,23.6,0.91,9.180,175.7 -23.4,0.91,10.720,180.5,23.3,0.91,11.440,180.5 -22.9,0.91,11.770,183.9,22.8,0.91,12.380,184.0 -22.4,0.91,12.990,183.5,22.3,0.91,13.690,183.5 -21.6,0.91,10.850,178.2,21.4,0.91,11.540,177.7 -20.6,0.91,11.820,174.6,20.6,0.91,12.820,174.5 -20.2,0.91,13.060,172.8,20.1,0.91,13.630,173.1 -20.0,0.91,14.180,170.9,19.9,0.91,14.660,171.3 -19.7,0.91,15.210,178.9,19.6,0.91,15.720,179.1 -19.6,0.91,16.620,189.6,19.4,0.91,17.060,189.9 -19.3,0.91,15.230,187.3,19.1,0.91,15.570,187.6 -19.2,0.91,15.630,192.0,19.0,0.91,16.180,192.4 -19.1,0.91,17.090,175.8,18.9,0.91,17.580,176.5 -18.9,0.91,17.250,187.1,18.7,0.91,17.730,187.3 -18.6,0.90,15.240,187.6,18.5,0.90,15.720,187.5 -19.4,0.91,14.240,187.9,19.3,0.91,14.530,188.0 -19.7,0.91,14.220,182.2,19.5,0.91,14.430,182.4 -20.2,0.91,13.220,192.4,20.0,0.91,13.380,192.6 -20.4,0.90,12.490,186.7,20.2,0.90,12.620,186.9 -22.0,0.90,10.140,200.1,21.8,0.90,10.260,200.3 -22.4,0.90,8.930,195.1,22.2,0.90,9.040,195.8 -23.5,0.90,8.950,215.3,23.3,0.90,9.110,215.6 -20.7,0.90,9.910,217.6,21.0,0.90,10.610,218.5 -22.2,0.90,9.840,214.4,22.1,0.90,10.270,214.4 -19.2,0.90,12.550,182.0,19.1,0.90,12.930,182.4 -18.4,0.90,12.180,188.6,18.3,0.90,12.600,188.8 -18.4,0.90,11.710,192.7,18.4,0.90,12.230,193.4 -19.4,0.90,12.100,209.4,19.4,0.90,12.770,210.2 -19.2,0.90,12.410,196.6,19.2,0.90,13.100,196.9 -18.8,0.90,11.520,196.1,18.7,0.90,12.120,196.8 -18.8,0.90,11.260,213.5,18.8,0.90,11.870,214.1 -19.0,0.90,12.370,228.3,18.9,0.90,13.150,228.8 -18.6,0.90,11.660,237.2,18.5,0.90,12.200,238.2 -18.5,0.90,11.820,239.1,18.5,0.90,12.530,240.3 -18.8,0.90,11.930,250.7,18.8,0.90,12.680,251.5 -17.1,0.90,14.370,283.4,17.0,0.90,15.480,285.0 -16.2,0.90,15.610,299.5,16.1,0.90,16.410,299.3 -14.7,0.90,14.340,286.7,14.6,0.90,15.610,288.8 -13.2,0.90,13.150,285.8,13.2,0.90,14.290,287.3 -13.1,0.90,13.950,293.8,12.9,0.90,14.400,293.9 -13.4,0.90,12.840,299.1,13.2,0.90,13.010,299.3 -14.6,0.90,10.420,300.7,14.4,0.90,10.570,300.9 -15.8,0.90,9.020,297.4,15.6,0.90,9.160,297.5 -16.7,0.90,9.200,299.6,16.5,0.90,9.330,299.5 -17.2,0.90,8.230,297.7,17.0,0.90,8.370,297.7 -17.7,0.90,6.900,295.4,17.5,0.90,7.030,295.3 -18.0,0.90,6.750,288.8,17.8,0.90,6.860,288.8 -18.1,0.90,5.660,292.3,17.9,0.90,5.770,291.8 -17.9,0.90,6.710,289.8,17.7,0.90,6.720,290.2 -17.9,0.90,6.050,277.4,17.8,0.90,6.010,278.1 -17.9,0.90,7.260,260.9,17.8,0.90,7.260,262.1 -18.0,0.90,8.330,267.9,18.0,0.90,8.390,268.1 -18.0,0.90,8.150,249.1,17.9,0.90,8.100,249.6 -18.2,0.90,10.420,263.0,18.2,0.90,10.360,264.6 -19.0,0.90,9.640,257.4,19.1,0.90,9.610,257.6 -19.4,0.90,9.380,244.2,19.4,0.90,9.410,245.2 -16.8,0.90,11.380,222.6,17.2,0.90,11.710,223.7 -14.9,0.90,9.600,267.6,15.0,0.90,9.850,273.0 -15.9,0.90,14.680,281.2,16.0,0.90,15.910,284.7 -14.6,0.90,14.700,278.2,14.6,0.90,15.860,281.6 -13.1,0.90,15.680,276.0,13.3,0.90,17.020,279.3 -12.6,0.90,16.030,279.1,12.7,0.90,17.220,282.4 -11.8,0.90,15.410,286.6,12.0,0.90,16.510,289.6 -11.5,0.90,10.820,285.0,11.4,0.90,11.530,286.2 -12.2,0.90,9.390,299.1,12.0,0.90,9.470,299.5 -13.7,0.90,8.740,308.9,13.5,0.90,8.780,309.3 -15.3,0.91,8.290,317.3,15.1,0.91,8.350,317.5 -16.7,0.91,7.450,338.1,16.5,0.91,7.560,338.1 -17.5,0.91,9.560,354.0,17.3,0.91,9.680,353.9 -17.6,0.91,9.860,1.1,17.4,0.91,10.020,1.0 -17.3,0.91,10.550,8.4,17.1,0.91,10.700,8.2 -17.1,0.91,10.770,10.3,16.9,0.91,10.960,10.2 -17.3,0.91,9.990,20.1,17.2,0.91,10.500,20.0 -17.2,0.91,10.520,17.4,17.2,0.91,10.900,18.1 -16.6,0.91,10.710,14.3,16.6,0.91,11.370,16.1 -15.5,0.91,12.400,25.8,15.5,0.91,13.100,27.3 -14.8,0.91,11.390,31.9,14.8,0.91,11.990,32.5 -14.5,0.91,10.470,34.2,14.5,0.91,11.200,34.3 -13.4,0.91,8.990,35.2,13.7,0.91,10.600,35.7 -12.9,0.91,7.810,42.8,13.1,0.91,8.910,42.7 -12.1,0.91,5.770,39.7,12.1,0.91,6.430,38.8 -11.3,0.91,5.210,33.7,11.4,0.91,5.710,34.0 -11.1,0.91,5.440,29.7,11.2,0.91,5.940,30.9 -10.8,0.92,5.380,26.6,10.9,0.92,5.800,28.1 -10.6,0.92,5.830,17.8,10.7,0.92,6.190,19.7 -10.3,0.92,6.000,15.9,10.3,0.92,6.180,18.3 -10.1,0.92,5.550,21.0,10.2,0.92,5.640,22.7 -9.9,0.92,4.450,15.3,9.9,0.92,5.130,17.7 -11.0,0.92,4.080,25.6,10.8,0.92,4.120,25.6 -12.2,0.92,3.800,35.1,12.0,0.92,3.800,35.0 -13.3,0.92,2.490,45.8,13.1,0.92,2.490,45.6 -14.3,0.92,1.760,34.9,14.1,0.92,1.730,34.5 -15.3,0.92,1.060,46.3,15.1,0.92,1.020,46.3 -16.0,0.91,0.600,18.6,15.8,0.91,0.550,17.6 -16.5,0.91,0.170,353.8,16.3,0.91,0.110,345.7 -16.6,0.91,1.890,118.5,16.4,0.91,1.880,120.3 -16.2,0.91,2.900,179.3,16.1,0.91,3.040,181.3 -16.1,0.91,5.330,169.3,15.9,0.91,5.340,169.9 -15.3,0.91,7.800,170.1,15.3,0.91,7.850,171.3 -15.4,0.91,8.440,175.8,15.3,0.91,8.470,176.5 -14.4,0.91,10.280,170.4,14.4,0.91,10.140,171.7 -13.6,0.91,12.010,167.1,13.8,0.91,12.260,168.4 -12.8,0.91,13.160,168.2,13.1,0.91,13.610,169.1 -12.4,0.91,13.340,172.5,12.8,0.91,13.910,173.1 -12.3,0.91,13.760,172.0,12.7,0.91,14.420,172.7 -11.0,0.91,14.120,178.0,11.3,0.91,14.770,178.4 -10.5,0.91,13.900,181.4,10.8,0.91,14.630,181.7 -10.2,0.91,13.770,181.6,10.6,0.91,14.510,182.2 -9.7,0.91,13.790,179.6,10.1,0.91,14.500,180.2 -9.1,0.91,13.790,179.6,9.4,0.91,14.520,180.4 -8.7,0.91,13.210,178.4,8.9,0.91,13.950,178.8 -8.3,0.91,12.450,181.8,8.3,0.91,13.810,182.1 -10.2,0.91,11.610,183.7,10.1,0.91,11.820,183.7 -11.6,0.91,11.340,183.7,11.5,0.91,11.490,183.8 -13.8,0.91,12.700,186.4,13.6,0.91,12.910,186.5 -14.7,0.91,12.300,184.2,14.5,0.91,12.500,184.3 -15.8,0.91,14.130,185.2,15.6,0.91,14.350,185.2 -16.3,0.91,14.800,193.8,16.1,0.91,15.070,193.7 -16.2,0.91,14.450,189.0,16.0,0.91,14.730,189.0 -16.0,0.91,13.230,190.4,15.8,0.91,13.590,190.4 -13.7,0.91,13.740,195.7,13.5,0.91,14.110,195.6 -14.0,0.91,14.690,195.6,13.8,0.91,15.140,195.3 -14.0,0.91,16.300,187.6,13.8,0.91,16.870,187.7 -13.4,0.91,16.270,191.0,13.2,0.91,16.910,191.0 -13.3,0.90,16.770,192.3,13.2,0.90,17.290,192.5 -13.4,0.90,17.870,192.1,13.3,0.90,18.460,192.1 -13.3,0.90,18.090,192.7,13.2,0.90,18.680,192.9 -13.1,0.90,19.240,194.7,13.0,0.90,19.840,195.0 -12.8,0.90,18.570,192.6,12.6,0.90,19.150,192.7 -12.4,0.90,18.200,192.1,12.2,0.90,18.790,192.5 -12.2,0.90,17.400,194.6,12.0,0.90,17.920,195.0 -12.0,0.90,18.070,197.1,11.9,0.90,18.610,197.3 -11.9,0.90,17.240,196.9,11.8,0.90,17.740,197.2 -11.8,0.90,16.210,199.6,11.7,0.90,16.730,199.9 -11.8,0.91,15.360,200.5,11.7,0.91,15.840,200.7 -12.2,0.91,14.000,197.2,12.1,0.91,14.550,197.4 -13.3,0.91,14.370,198.3,13.1,0.91,14.520,198.5 -13.5,0.91,11.960,197.8,13.3,0.91,12.100,198.1 -13.6,0.91,10.890,199.0,13.4,0.91,10.980,199.1 -13.2,0.91,10.640,195.0,13.0,0.91,10.780,195.5 -13.8,0.91,8.090,190.6,14.0,0.91,8.790,189.5 -17.7,0.91,9.230,181.8,17.5,0.91,9.390,181.9 -17.9,0.91,10.040,182.6,17.7,0.91,10.220,182.5 -15.1,0.91,11.920,168.3,14.9,0.91,12.070,168.5 -13.5,0.91,11.590,174.4,13.3,0.91,12.000,174.7 -13.2,0.91,12.240,181.2,13.1,0.91,12.690,181.3 -12.9,0.91,11.180,169.4,12.8,0.91,11.740,169.2 -13.0,0.91,11.450,159.6,12.9,0.91,11.970,159.6 -13.8,0.91,11.520,158.5,13.7,0.91,11.970,158.8 -14.2,0.91,11.840,165.9,14.1,0.91,12.380,166.2 -14.8,0.91,10.730,168.5,14.7,0.91,11.160,168.4 -15.2,0.91,11.590,172.3,15.0,0.91,12.040,172.6 -15.4,0.91,12.950,176.2,15.2,0.91,13.380,176.2 -15.5,0.91,14.020,179.2,15.3,0.91,14.520,179.3 -15.4,0.91,13.820,178.8,15.3,0.91,14.310,178.8 -15.5,0.91,14.960,181.4,15.3,0.91,15.380,181.5 -15.3,0.91,14.310,181.4,15.1,0.91,14.810,181.5 -15.0,0.91,15.030,183.5,14.8,0.91,15.530,183.7 -15.2,0.91,14.380,185.1,15.0,0.91,14.810,185.3 -15.1,0.91,14.130,187.2,15.0,0.91,14.820,187.5 -16.0,0.91,13.500,187.1,15.9,0.91,13.780,187.4 -17.1,0.91,13.470,188.3,16.9,0.91,13.690,188.6 -17.8,0.91,13.490,190.7,17.6,0.91,13.660,190.9 -18.2,0.91,12.640,188.1,18.0,0.91,12.790,188.5 -18.9,0.91,10.600,188.0,18.7,0.91,10.730,188.1 -19.6,0.90,11.110,189.3,19.4,0.90,11.190,189.2 -20.3,0.90,10.180,179.7,20.1,0.90,10.330,179.7 -21.0,0.90,10.410,190.1,20.8,0.90,10.590,190.0 -20.9,0.90,11.420,181.8,20.8,0.90,11.990,181.8 -20.3,0.90,11.120,166.1,20.2,0.90,11.530,167.7 -19.6,0.91,11.640,186.8,19.7,0.91,12.450,188.0 -16.1,0.91,6.730,233.6,16.2,0.91,6.790,237.0 -17.9,0.91,8.410,228.2,18.3,0.91,8.780,230.9 -18.4,0.91,6.790,237.3,18.9,0.91,6.790,242.3 -19.2,0.91,6.690,231.6,19.1,0.91,6.780,232.7 -18.1,0.91,5.260,308.2,18.1,0.91,5.280,307.8 -10.9,0.91,10.600,358.3,10.7,0.91,11.330,358.3 -9.6,0.91,12.210,358.5,9.5,0.91,12.730,358.5 -8.3,0.91,14.490,357.1,8.1,0.91,14.920,357.1 -7.2,0.91,12.780,4.3,7.0,0.91,13.230,4.5 -6.5,0.91,10.750,1.2,6.3,0.91,11.390,1.6 -5.5,0.91,12.230,0.3,5.4,0.91,12.710,0.8 -5.0,0.91,13.900,8.9,4.8,0.91,14.320,9.1 -4.9,0.91,12.830,8.1,4.7,0.91,12.980,8.2 -5.7,0.91,10.110,7.9,5.5,0.91,10.210,7.9 -6.8,0.92,9.970,4.6,6.6,0.92,10.060,4.6 -8.2,0.92,9.140,5.8,8.0,0.92,9.220,5.7 -9.7,0.92,8.390,7.6,9.5,0.92,8.470,7.5 -10.8,0.92,8.370,4.2,10.6,0.92,8.450,4.2 -11.5,0.92,7.600,6.5,11.3,0.92,7.690,6.2 -11.9,0.92,7.260,7.9,11.7,0.92,7.350,7.8 -11.8,0.92,6.930,14.0,11.6,0.92,7.010,13.8 -11.3,0.92,6.610,31.7,11.1,0.92,6.760,31.2 -10.7,0.92,7.880,36.3,10.6,0.92,8.010,36.5 -9.9,0.92,7.630,51.5,9.8,0.92,7.870,51.6 -9.2,0.92,6.840,55.0,9.2,0.92,7.320,54.1 -8.3,0.92,7.130,63.1,8.4,0.92,7.570,61.2 -8.1,0.92,6.630,59.8,8.2,0.92,7.160,58.4 -7.7,0.92,5.720,62.9,7.9,0.92,6.240,61.6 -7.5,0.92,4.870,63.1,7.6,0.92,5.320,61.9 -7.6,0.92,4.200,62.3,7.8,0.92,4.720,61.1 -7.6,0.92,3.470,70.3,7.8,0.92,3.930,67.4 -7.6,0.92,3.250,73.8,7.8,0.92,3.660,70.6 -8.0,0.92,3.600,68.4,8.3,0.92,4.010,67.1 -8.2,0.92,3.340,68.9,8.4,0.92,3.770,67.7 -8.3,0.92,3.170,67.8,8.6,0.92,3.600,67.0 -8.5,0.92,3.220,79.4,8.7,0.92,3.570,78.4 -9.0,0.92,3.270,90.3,9.1,0.92,3.610,90.0 -9.5,0.92,1.960,90.1,9.3,0.92,2.030,91.9 -10.8,0.92,1.850,87.2,10.6,0.92,1.860,89.5 -12.1,0.92,1.910,102.0,11.9,0.92,1.930,103.1 -13.0,0.92,3.300,129.3,12.8,0.92,3.300,128.7 -13.6,0.92,3.360,127.7,13.4,0.92,3.370,127.3 -14.0,0.92,3.280,130.5,13.8,0.92,3.310,130.9 -14.2,0.92,3.550,133.9,14.0,0.92,3.590,134.2 -14.0,0.92,4.150,147.3,13.8,0.92,4.230,147.3 -13.6,0.92,5.260,157.9,13.4,0.92,5.290,157.6 -13.1,0.92,6.080,159.5,13.0,0.92,5.930,160.4 -12.7,0.92,7.000,156.1,12.6,0.92,6.980,156.8 -12.1,0.92,7.810,172.5,12.0,0.92,8.110,172.8 -11.8,0.92,8.790,172.0,11.8,0.92,9.160,171.9 -11.3,0.92,9.730,177.4,11.3,0.92,10.190,177.3 -11.1,0.92,10.950,178.3,11.1,0.92,11.450,178.4 -10.8,0.92,11.350,179.2,10.8,0.92,11.850,179.5 -10.4,0.92,11.450,180.0,10.4,0.92,11.970,180.3 -10.0,0.92,11.080,184.2,10.0,0.92,11.670,184.1 -9.8,0.92,11.850,184.8,9.7,0.92,12.400,184.9 -9.5,0.92,11.610,183.6,9.5,0.92,12.110,183.6 -9.2,0.92,11.310,184.1,9.2,0.92,11.850,184.3 -9.1,0.92,11.640,184.8,9.1,0.92,12.180,185.0 -9.2,0.92,11.300,187.1,9.1,0.92,11.740,187.1 -8.8,0.92,10.810,186.6,8.7,0.92,11.400,186.4 -9.4,0.92,9.510,188.6,9.3,0.92,9.690,188.7 -10.5,0.92,10.370,191.6,10.3,0.92,10.520,191.8 -11.3,0.91,10.830,191.8,11.1,0.91,10.960,191.8 -12.2,0.91,11.810,193.3,12.0,0.91,11.960,193.4 -12.7,0.91,11.870,198.6,12.5,0.91,12.040,198.6 -11.4,0.91,11.160,202.5,11.2,0.91,11.310,202.5 -9.0,0.91,11.300,199.7,8.8,0.91,11.410,199.7 -8.1,0.91,11.600,195.3,7.9,0.91,11.820,195.2 -8.1,0.91,12.930,194.9,7.9,0.91,13.300,195.0 -8.3,0.91,14.000,200.4,8.1,0.91,14.690,200.6 -9.0,0.91,14.630,200.1,9.0,0.91,15.170,199.9 -9.9,0.91,13.920,197.9,9.8,0.91,14.440,198.0 -10.3,0.91,14.650,198.4,10.2,0.91,15.210,198.6 -10.3,0.91,15.390,198.8,10.2,0.91,15.980,199.3 -10.3,0.91,14.980,202.8,10.3,0.91,15.670,203.3 -10.2,0.91,14.580,202.4,10.2,0.91,15.300,203.1 -9.9,0.91,15.300,205.1,9.9,0.91,16.030,205.8 -9.6,0.91,16.110,206.4,9.6,0.91,16.910,207.1 -9.5,0.91,16.440,207.6,9.5,0.91,17.280,208.2 -9.2,0.91,15.740,205.4,9.3,0.91,16.510,206.4 -8.9,0.91,14.600,204.2,8.9,0.91,15.250,205.9 -8.7,0.91,14.270,208.1,8.8,0.91,14.920,209.7 -8.7,0.91,14.140,209.8,8.8,0.91,14.760,211.5 -9.2,0.91,11.930,211.3,9.1,0.91,12.640,212.7 -10.7,0.91,10.110,208.9,10.6,0.91,10.270,209.9 -12.7,0.91,8.460,209.0,12.5,0.91,8.470,209.7 -14.5,0.91,8.110,207.3,14.3,0.91,8.130,207.8 -16.0,0.91,7.050,201.2,15.8,0.91,7.080,201.6 -17.4,0.91,6.500,196.2,17.2,0.91,6.540,196.5 -18.4,0.91,6.100,195.3,18.2,0.91,6.150,195.5 -19.0,0.91,6.150,183.3,18.8,0.91,6.210,183.5 -18.9,0.91,6.670,177.9,18.8,0.91,6.830,178.1 -18.6,0.91,8.640,165.5,18.5,0.91,8.760,166.7 -18.5,0.91,10.600,169.4,18.5,0.91,10.770,170.0 -17.9,0.91,11.540,169.4,18.1,0.91,11.600,170.9 -17.1,0.91,11.960,183.8,17.3,0.91,12.390,186.6 -16.3,0.91,12.710,190.8,16.6,0.91,13.200,192.3 -15.8,0.91,12.240,193.1,16.0,0.91,12.540,193.5 -14.9,0.91,11.370,192.6,15.2,0.91,11.670,193.6 -14.7,0.91,11.570,194.0,15.1,0.91,11.930,194.3 -14.6,0.91,11.630,194.5,15.0,0.91,11.970,194.4 -14.1,0.91,11.360,195.2,14.6,0.91,11.640,195.9 -13.7,0.91,11.060,191.1,14.1,0.91,11.250,192.4 -12.8,0.91,8.300,189.9,13.3,0.91,8.710,191.1 -12.9,0.91,6.650,191.1,13.1,0.91,6.850,192.4 -12.5,0.91,4.770,192.1,12.7,0.91,4.980,193.9 -12.0,0.91,3.760,178.5,12.2,0.91,3.990,181.3 -12.6,0.92,3.500,183.0,12.7,0.92,3.860,185.5 -13.1,0.92,2.860,164.8,12.9,0.92,2.850,165.6 -14.3,0.92,3.130,177.3,14.1,0.92,3.150,177.4 -15.4,0.92,3.950,179.5,15.2,0.92,3.970,179.3 -16.3,0.92,4.290,181.6,16.1,0.92,4.310,181.6 -17.1,0.91,4.720,177.5,16.9,0.91,4.750,177.5 -17.6,0.91,5.070,181.0,17.4,0.91,5.100,181.0 -17.7,0.91,5.630,176.6,17.5,0.91,5.650,176.7 -17.2,0.91,6.270,168.4,17.0,0.91,6.320,168.4 -16.1,0.91,7.630,155.8,15.9,0.91,7.910,156.3 -14.9,0.91,9.330,154.3,14.8,0.91,9.680,154.3 -14.4,0.91,9.770,158.5,14.4,0.91,10.180,158.9 -14.4,0.91,10.050,162.3,14.5,0.91,10.520,163.1 -13.8,0.91,11.130,161.8,13.9,0.91,11.660,162.6 -13.2,0.91,11.990,172.4,13.3,0.91,12.580,172.3 -12.5,0.91,12.480,178.7,12.6,0.91,13.060,178.3 -12.3,0.91,12.800,183.8,12.5,0.91,13.440,183.7 -12.0,0.91,11.840,186.4,12.0,0.91,12.480,186.8 -12.3,0.91,10.650,192.0,12.5,0.91,11.210,193.9 -12.1,0.91,9.580,192.9,12.2,0.91,10.130,193.6 -12.1,0.91,9.540,204.4,12.1,0.91,10.030,204.5 -12.0,0.91,9.390,211.3,11.9,0.91,9.730,211.7 -12.2,0.91,9.050,215.9,12.1,0.91,9.290,215.9 -12.4,0.91,8.450,218.5,12.3,0.91,8.730,219.1 -12.2,0.91,6.050,221.4,12.0,0.91,6.160,222.3 -12.8,0.91,5.920,225.8,12.6,0.91,5.980,225.9 -12.8,0.91,6.350,224.9,12.6,0.91,6.380,224.8 -13.8,0.91,5.540,224.4,13.6,0.91,5.580,224.2 -14.8,0.91,5.040,221.7,14.6,0.91,5.050,221.8 -16.1,0.91,4.440,215.5,15.9,0.91,4.450,215.7 -17.2,0.91,3.900,209.6,17.0,0.91,3.930,209.6 -17.7,0.91,3.720,198.1,17.5,0.91,3.720,198.7 -17.6,0.91,3.420,189.4,17.4,0.91,3.430,190.0 -17.1,0.91,4.380,176.3,16.9,0.91,4.340,177.1 -17.0,0.91,4.320,173.8,16.9,0.91,4.300,174.2 -16.7,0.91,4.530,167.2,16.6,0.91,4.150,169.5 -16.8,0.91,3.840,166.1,16.8,0.91,3.680,168.1 -16.9,0.91,2.880,164.5,16.9,0.91,2.650,168.1 -17.1,0.92,1.200,114.0,17.0,0.92,0.960,106.3 -16.7,0.92,1.530,68.9,16.9,0.92,1.370,63.0 -16.5,0.92,3.020,45.4,16.6,0.92,3.310,45.4 -10.6,0.92,8.530,32.5,10.5,0.92,8.890,32.5 -10.4,0.92,7.820,34.5,10.3,0.92,8.450,35.1 -8.3,0.92,10.010,24.9,8.1,0.92,10.140,25.0 -5.6,0.92,12.670,28.9,5.5,0.92,12.850,29.0 -4.4,0.92,13.240,26.2,4.2,0.92,13.410,26.2 -3.8,0.92,13.070,22.8,3.6,0.92,13.230,22.8 -2.5,0.92,14.490,21.8,2.3,0.92,14.660,22.1 -1.4,0.93,14.100,19.5,1.2,0.93,14.270,19.5 --0.1,0.93,14.790,20.0,-0.3,0.93,14.950,20.0 --0.3,0.93,13.320,21.2,-0.6,0.93,13.430,21.1 --0.4,0.93,12.210,19.2,-0.6,0.93,12.290,19.2 -0.1,0.93,11.640,16.0,-0.1,0.93,11.710,16.1 -1.8,0.93,10.550,19.8,1.6,0.93,10.650,19.8 -3.7,0.93,10.530,21.8,3.5,0.93,10.630,21.8 -4.0,0.93,10.580,26.3,3.8,0.93,10.680,26.1 -3.8,0.93,9.800,27.2,3.6,0.93,9.900,27.1 -3.5,0.93,9.720,22.5,3.3,0.93,10.020,22.8 -3.1,0.93,9.660,29.1,2.9,0.93,10.160,29.5 -2.6,0.93,9.410,29.9,2.5,0.93,9.740,30.9 -2.2,0.93,9.960,32.2,2.1,0.93,10.390,32.8 -1.7,0.93,9.200,38.6,1.6,0.93,9.520,40.7 -0.8,0.93,9.140,49.8,0.6,0.93,9.510,51.6 -0.2,0.93,8.290,52.8,-0.0,0.93,8.630,54.4 --0.6,0.93,7.720,55.9,-0.8,0.93,8.050,57.9 --1.2,0.93,6.600,67.0,-1.4,0.93,6.910,69.2 --1.3,0.93,4.820,75.3,-1.3,0.93,5.070,72.6 --1.7,0.93,4.010,87.3,-1.7,0.93,3.750,82.7 --1.7,0.93,2.760,99.0,-1.6,0.93,2.660,92.4 --1.3,0.92,1.710,104.1,-1.2,0.92,1.710,94.4 --0.9,0.92,1.590,133.7,-0.8,0.92,1.570,122.4 --0.3,0.92,1.830,167.6,-0.2,0.92,1.600,157.9 -0.3,0.92,2.140,191.4,0.5,0.92,1.950,185.2 -1.7,0.92,2.590,196.2,1.5,0.92,2.540,195.8 -3.4,0.92,2.390,203.2,3.2,0.92,2.380,203.5 -4.7,0.92,2.740,203.6,4.5,0.92,2.740,204.0 -6.0,0.92,3.220,200.8,5.8,0.92,3.210,201.2 -7.0,0.92,3.670,197.8,6.8,0.92,3.670,198.3 -7.8,0.92,3.900,197.3,7.6,0.92,3.900,197.9 -8.1,0.92,4.340,190.5,7.9,0.92,4.350,190.9 -7.8,0.92,5.150,188.5,7.6,0.92,5.160,188.8 -7.4,0.92,6.400,183.8,7.2,0.92,6.440,183.7 -6.7,0.92,8.720,179.1,6.6,0.92,8.710,180.1 -6.3,0.92,9.940,178.2,6.4,0.92,9.990,179.7 -6.2,0.92,10.580,182.0,6.4,0.92,10.820,184.2 -5.3,0.92,12.090,177.6,5.5,0.92,12.560,178.3 -4.9,0.92,13.100,183.4,5.1,0.92,13.660,183.9 -4.9,0.91,13.500,187.2,5.2,0.91,14.130,187.7 -4.8,0.91,13.730,190.8,5.2,0.91,14.320,191.5 -4.7,0.91,14.730,195.4,5.0,0.91,15.280,195.6 -4.2,0.91,12.930,198.7,4.6,0.91,13.540,200.1 -4.8,0.91,13.920,202.9,5.1,0.91,14.600,203.6 -4.7,0.91,13.870,203.5,4.9,0.91,14.580,204.1 -4.2,0.91,14.040,200.9,4.4,0.91,14.660,201.4 -4.0,0.91,14.260,199.3,4.1,0.91,14.810,199.7 -4.1,0.91,14.400,200.8,4.1,0.91,14.980,201.2 -4.0,0.91,14.070,196.8,3.9,0.91,14.510,197.1 -4.9,0.91,12.550,197.0,4.7,0.91,12.870,197.3 -6.4,0.91,11.160,197.8,6.2,0.91,11.280,198.0 -8.2,0.91,11.890,198.9,8.0,0.91,11.990,199.1 -9.8,0.91,11.610,195.2,9.7,0.91,11.720,195.4 -11.4,0.91,12.080,197.0,11.2,0.91,12.200,197.1 -12.4,0.91,12.060,194.5,12.2,0.91,12.200,194.6 -12.9,0.91,12.250,196.7,12.7,0.91,12.400,196.9 -12.9,0.91,12.560,194.0,12.8,0.91,12.890,194.1 -12.5,0.91,14.160,191.2,12.4,0.91,14.690,191.4 -12.0,0.91,14.530,194.3,12.0,0.91,15.060,194.6 -11.2,0.91,14.680,198.2,11.2,0.91,15.200,198.7 -10.2,0.91,14.820,200.5,10.1,0.91,15.430,201.3 -9.3,0.91,15.990,202.8,9.3,0.91,16.670,203.8 -8.9,0.90,15.140,202.6,8.9,0.90,15.800,204.4 -8.8,0.90,15.070,207.5,8.9,0.90,15.980,209.5 -8.6,0.90,14.440,205.8,8.8,0.90,15.350,208.1 -9.1,0.91,15.010,210.3,9.3,0.91,16.020,212.6 -9.3,0.90,15.320,216.0,9.6,0.90,16.410,218.2 -9.3,0.90,14.160,220.3,9.6,0.90,15.000,222.5 -10.2,0.90,12.730,231.7,10.8,0.90,13.100,234.3 -11.6,0.90,12.640,240.7,12.3,0.90,13.270,241.8 -12.1,0.90,12.450,242.5,13.1,0.90,12.640,244.7 -12.6,0.90,10.950,246.3,13.6,0.90,11.110,249.2 -12.4,0.90,9.190,238.0,13.6,0.90,9.730,240.7 -13.0,0.90,8.130,227.3,13.5,0.90,8.970,230.8 -15.2,0.90,6.890,221.1,15.1,0.90,6.970,222.1 -16.9,0.90,7.070,211.4,16.8,0.90,7.080,211.9 -18.6,0.90,7.490,207.0,18.4,0.90,7.510,207.5 -19.1,0.90,7.880,194.7,18.9,0.90,7.890,195.2 -19.6,0.90,8.920,193.8,19.4,0.90,8.990,194.0 -20.1,0.90,9.870,186.2,19.9,0.90,9.950,186.4 -20.0,0.90,10.580,175.7,19.8,0.90,10.970,175.9 -20.6,0.90,12.840,179.7,20.6,0.90,13.280,180.2 -19.9,0.90,14.910,185.1,19.9,0.90,15.620,185.6 -19.1,0.90,14.470,187.8,19.1,0.90,15.100,188.5 -18.1,0.90,14.270,186.4,18.1,0.90,15.000,187.7 -17.0,0.90,14.130,189.1,17.0,0.90,14.880,190.3 -16.2,0.90,14.680,190.5,16.2,0.90,15.470,191.6 -15.4,0.90,13.920,192.4,15.4,0.90,14.630,193.7 -15.2,0.90,14.750,193.0,15.2,0.90,15.580,194.2 -14.4,0.90,15.220,193.9,14.4,0.90,15.930,195.1 -14.0,0.90,13.920,194.5,14.0,0.90,14.850,196.1 -14.1,0.90,14.720,200.1,14.1,0.90,15.530,200.8 -14.5,0.90,14.540,212.2,14.5,0.90,15.310,212.2 -14.6,0.90,15.740,213.1,14.6,0.90,16.680,212.7 -14.0,0.90,15.540,208.3,14.0,0.90,16.510,208.8 -14.1,0.90,16.830,206.3,14.1,0.90,17.710,206.8 -14.2,0.90,15.210,210.8,14.1,0.90,16.400,211.4 -15.4,0.90,12.890,207.8,15.2,0.90,13.100,208.2 -17.2,0.90,13.040,207.0,17.1,0.90,13.220,207.4 -18.8,0.90,12.670,202.6,18.6,0.90,12.790,202.9 -20.3,0.90,13.120,208.2,20.1,0.90,13.260,208.5 -21.3,0.90,12.980,206.2,21.1,0.90,13.120,206.3 -22.7,0.90,12.560,206.7,22.5,0.90,12.720,206.9 -23.4,0.90,12.510,205.7,23.2,0.90,12.710,205.8 -23.3,0.90,12.030,193.9,23.1,0.90,12.390,194.2 -22.6,0.90,12.860,189.2,22.5,0.90,13.390,190.5 -21.7,0.90,14.050,198.9,21.7,0.90,14.890,199.3 -21.1,0.90,15.920,204.1,21.1,0.90,16.950,204.5 -20.0,0.90,15.560,211.0,19.9,0.90,16.550,211.2 -18.8,0.90,15.550,211.6,18.8,0.90,16.640,212.0 -18.3,0.90,15.800,214.1,18.3,0.90,16.720,214.5 -18.1,0.90,14.450,216.7,18.2,0.90,15.370,217.3 -17.9,0.90,15.530,220.6,18.1,0.90,16.710,221.4 -17.9,0.90,14.370,223.9,18.0,0.90,15.540,224.7 -17.8,0.90,13.020,228.2,18.1,0.90,14.230,230.4 -17.6,0.90,11.520,228.7,17.9,0.90,12.420,233.0 -17.4,0.90,11.540,231.2,17.7,0.90,12.160,238.1 -18.8,0.90,16.140,264.1,19.1,0.90,17.780,267.4 -17.9,0.90,16.450,273.8,18.2,0.90,18.170,276.4 -16.8,0.90,13.840,270.6,17.0,0.90,15.440,273.5 -17.4,0.90,11.440,279.5,17.3,0.90,12.120,279.9 -17.5,0.90,8.830,282.0,17.4,0.90,9.020,282.2 -18.6,0.90,7.070,300.8,18.4,0.90,7.160,300.7 -20.0,0.90,7.010,295.1,19.8,0.90,7.110,295.2 -20.6,0.91,7.130,299.0,20.4,0.91,7.220,298.9 -21.5,0.91,7.810,285.3,21.3,0.91,7.900,285.3 -22.1,0.91,6.990,290.6,21.9,0.91,7.090,290.6 -22.4,0.91,5.820,282.9,22.3,0.91,5.970,283.2 -22.3,0.91,7.290,299.4,22.1,0.91,7.450,299.1 -22.1,0.91,6.890,292.8,21.9,0.91,6.900,292.1 -22.0,0.91,5.980,298.6,21.8,0.91,5.720,298.1 -21.9,0.91,4.700,304.0,21.9,0.91,4.880,303.5 -21.8,0.91,4.890,306.6,21.9,0.91,5.030,308.3 -20.9,0.91,4.510,331.4,21.0,0.91,4.770,334.0 -17.7,0.91,5.250,32.4,17.7,0.91,5.330,34.4 -17.2,0.91,8.130,86.1,17.2,0.91,8.900,87.2 -14.7,0.91,8.280,75.6,14.7,0.91,9.290,78.0 -13.4,0.91,9.070,69.3,13.4,0.91,10.400,74.7 -12.1,0.91,9.040,65.2,12.0,0.91,9.970,71.3 -11.3,0.91,8.250,62.4,11.3,0.91,8.800,67.2 -10.7,0.91,8.250,59.9,10.7,0.91,8.640,63.6 -10.3,0.91,8.140,57.0,10.3,0.91,8.520,60.8 -9.7,0.91,7.980,56.7,9.7,0.91,8.350,60.2 -9.2,0.91,7.740,54.4,9.2,0.91,8.110,58.3 -9.0,0.91,6.420,59.5,8.9,0.91,7.040,62.1 -9.9,0.91,6.150,60.2,9.7,0.91,6.180,60.9 -11.1,0.91,6.010,62.3,10.9,0.91,6.030,62.9 -12.5,0.91,5.940,61.8,12.3,0.91,5.980,62.3 -13.5,0.91,5.890,61.9,13.3,0.91,5.920,62.2 -14.3,0.91,5.740,60.8,14.2,0.91,5.780,61.1 -15.0,0.91,5.550,65.9,14.8,0.91,5.600,66.1 -15.1,0.91,5.510,66.8,14.9,0.91,5.550,67.1 -15.0,0.91,5.580,67.2,14.8,0.91,5.710,67.8 -14.7,0.91,5.960,77.7,14.5,0.91,6.330,79.4 -14.3,0.91,6.940,77.5,14.2,0.91,7.480,79.0 -13.8,0.91,6.750,93.1,13.6,0.91,7.200,94.4 -13.3,0.91,7.950,112.3,13.2,0.91,8.590,112.2 -13.0,0.91,7.610,117.7,12.9,0.91,8.600,117.8 -12.7,0.91,8.560,119.2,12.7,0.91,9.630,119.9 -12.4,0.91,7.110,122.7,12.3,0.91,8.460,124.3 -12.3,0.91,9.910,128.3,12.2,0.91,10.790,129.4 -12.3,0.91,11.130,133.1,12.3,0.91,11.830,135.4 -12.2,0.91,11.380,146.8,12.3,0.91,11.940,148.3 -12.0,0.91,11.540,153.2,12.1,0.91,12.100,154.3 -11.7,0.91,11.340,162.2,11.8,0.91,11.620,163.6 -11.3,0.91,11.330,162.4,11.5,0.91,11.700,163.5 -11.1,0.91,12.070,164.9,11.3,0.91,12.530,165.6 -10.5,0.91,12.270,165.4,10.7,0.91,12.710,166.2 -10.5,0.91,11.990,171.7,10.4,0.91,12.180,171.7 -11.7,0.91,10.340,174.6,11.5,0.91,10.550,174.6 -12.7,0.91,9.710,173.5,12.5,0.91,9.800,173.7 -13.7,0.91,8.770,174.3,13.5,0.91,8.840,174.5 -15.2,0.91,8.700,171.8,15.0,0.91,8.780,172.0 -15.8,0.91,8.920,169.0,15.6,0.91,9.000,169.2 -16.3,0.91,9.490,174.1,16.1,0.91,9.590,174.2 -16.3,0.91,10.970,171.9,16.1,0.91,11.090,172.1 -16.4,0.91,11.170,173.4,16.2,0.91,11.390,173.4 -16.0,0.91,13.090,166.8,15.9,0.91,13.570,166.8 -15.8,0.91,14.340,166.7,15.7,0.91,14.990,166.8 -15.2,0.90,15.460,165.5,15.1,0.90,16.120,165.6 -14.3,0.90,17.180,166.6,14.2,0.90,17.920,166.5 -13.7,0.90,18.040,170.5,13.7,0.90,18.760,170.7 -13.4,0.90,18.060,175.8,13.4,0.90,18.730,176.2 -13.4,0.90,16.980,180.2,13.3,0.90,17.540,180.3 -13.2,0.90,16.530,181.2,13.1,0.90,17.040,181.4 -12.6,0.90,16.670,180.7,12.6,0.90,17.240,181.2 -12.3,0.90,16.730,182.9,12.3,0.90,17.250,183.6 -12.3,0.90,16.540,186.2,12.3,0.90,17.050,186.8 -12.3,0.90,16.430,187.8,12.3,0.90,16.970,188.6 -12.2,0.90,15.670,191.9,12.0,0.90,16.040,192.3 -12.9,0.90,15.830,194.2,12.8,0.90,16.260,194.5 -13.4,0.90,15.200,195.5,13.2,0.90,15.630,195.8 -13.7,0.90,15.030,196.0,13.6,0.90,15.710,196.8 -14.0,0.90,14.740,197.8,13.9,0.90,15.350,198.3 -14.8,0.90,15.200,198.3,14.6,0.90,15.500,198.9 -15.6,0.90,14.170,202.7,15.4,0.90,14.340,203.0 -16.9,0.90,13.660,196.2,16.6,0.90,13.770,196.6 -18.1,0.90,12.990,194.5,17.9,0.90,13.130,194.8 -19.4,0.90,13.120,200.0,19.2,0.90,13.290,200.0 -19.2,0.90,13.930,195.3,19.0,0.90,14.080,195.4 -18.5,0.90,13.370,189.7,18.3,0.90,13.590,189.8 -17.8,0.90,14.420,190.2,17.6,0.90,15.010,190.3 -17.3,0.90,15.710,192.2,17.1,0.90,16.220,192.3 -17.2,0.90,15.850,192.6,17.0,0.90,16.290,192.8 -17.0,0.90,15.950,192.1,16.9,0.90,16.370,192.2 -16.9,0.90,13.990,185.9,16.7,0.90,14.420,186.0 -16.5,0.90,15.170,190.5,16.4,0.90,15.640,190.8 -15.9,0.90,14.330,187.8,15.8,0.90,14.750,188.0 -16.1,0.90,13.900,191.2,16.0,0.90,14.270,191.3 -16.6,0.90,15.630,191.8,16.4,0.90,16.130,192.1 -16.5,0.90,13.630,188.9,16.3,0.90,14.050,189.1 -16.9,0.90,14.520,191.6,16.7,0.90,14.960,191.8 -16.6,0.90,14.250,192.6,16.5,0.90,14.660,193.1 -16.6,0.90,13.050,190.0,16.4,0.90,13.380,190.4 -16.7,0.91,13.050,191.6,16.5,0.91,13.410,192.0 -16.9,0.91,12.030,193.2,16.8,0.91,12.430,193.8 -17.2,0.91,11.890,198.3,17.1,0.91,12.320,199.1 -17.7,0.91,10.010,200.6,17.6,0.91,10.150,201.3 -18.1,0.91,9.410,203.5,17.9,0.91,9.570,204.3 -19.8,0.91,8.300,212.9,19.6,0.91,8.420,213.3 -20.2,0.91,6.710,200.7,20.0,0.91,6.830,201.1 -21.5,0.91,6.550,218.5,21.3,0.91,6.660,218.3 -21.7,0.91,5.690,196.2,21.5,0.91,5.720,196.3 -22.3,0.91,4.100,236.8,22.1,0.91,4.150,236.0 -22.2,0.91,2.780,254.7,22.0,0.91,2.810,253.1 -21.8,0.91,4.560,11.9,21.6,0.91,4.580,11.7 -18.5,0.91,8.050,27.8,18.4,0.91,8.440,27.4 -11.6,0.91,14.930,22.3,11.4,0.91,15.050,22.6 -8.0,0.91,12.880,31.0,7.8,0.91,13.010,30.7 -6.7,0.91,12.790,29.6,6.5,0.91,12.910,29.4 -4.8,0.91,12.950,32.9,4.7,0.91,13.050,32.5 -3.8,0.91,14.220,26.5,3.6,0.91,14.370,26.4 -2.4,0.92,14.310,23.4,2.2,0.92,14.440,23.5 -1.2,0.92,13.990,20.7,1.0,0.92,14.120,20.7 -0.3,0.92,15.230,20.9,0.1,0.92,15.410,21.0 --0.2,0.92,14.550,19.1,-0.4,0.92,14.710,19.2 --0.8,0.92,14.680,21.2,-1.0,0.92,14.840,21.1 --1.8,0.92,14.090,15.4,-2.0,0.92,14.250,15.6 --2.8,0.92,14.650,10.8,-3.0,0.92,14.820,11.0 --3.1,0.92,13.680,18.2,-3.3,0.92,13.820,18.2 --3.6,0.92,14.030,19.3,-3.8,0.92,14.220,19.2 --4.1,0.92,13.620,18.0,-4.3,0.92,13.790,17.9 --4.3,0.92,13.580,15.7,-4.5,0.92,13.750,15.6 --4.6,0.92,14.790,13.8,-4.8,0.92,14.940,13.9 --4.3,0.92,11.920,12.6,-4.5,0.92,12.040,12.6 --4.4,0.92,11.770,14.8,-4.6,0.92,11.880,14.7 --4.4,0.92,12.300,14.1,-4.6,0.92,12.440,14.2 --4.4,0.92,11.360,9.3,-4.6,0.92,11.480,9.4 --4.5,0.92,11.210,15.2,-4.7,0.92,11.330,15.1 --4.4,0.92,10.400,10.6,-4.6,0.92,10.530,10.5 --4.6,0.92,9.490,13.8,-4.8,0.92,9.610,13.7 --4.6,0.92,10.570,15.0,-4.8,0.92,10.700,14.8 --4.6,0.92,11.020,8.8,-4.8,0.92,11.120,9.0 --4.5,0.92,10.060,10.1,-4.7,0.92,10.210,10.1 --4.4,0.92,9.040,5.7,-4.6,0.92,9.130,5.7 --4.3,0.92,10.140,11.3,-4.5,0.92,10.290,11.3 --4.2,0.92,10.170,16.0,-4.4,0.92,10.370,16.1 --3.8,0.92,9.580,12.0,-4.0,0.92,9.770,11.8 --3.6,0.92,10.240,10.1,-3.8,0.92,10.410,10.3 --3.6,0.92,10.530,5.8,-3.8,0.92,10.720,6.0 --3.7,0.92,11.450,15.8,-3.9,0.92,11.740,15.8 --4.0,0.92,12.600,22.8,-4.2,0.92,12.850,22.7 --4.1,0.92,11.200,11.2,-4.3,0.92,11.400,11.7 --4.0,0.92,11.490,16.9,-4.2,0.92,11.760,16.9 --3.7,0.92,10.380,18.3,-3.9,0.92,10.580,18.3 --3.5,0.92,11.300,23.1,-3.6,0.92,11.630,22.9 --3.6,0.92,12.600,22.9,-3.8,0.92,12.790,23.0 --3.5,0.92,11.280,15.7,-3.7,0.92,11.420,15.6 --3.9,0.92,11.990,19.6,-4.0,0.92,12.120,19.7 --4.0,0.92,12.020,22.6,-4.2,0.92,12.160,22.7 --4.3,0.92,11.570,18.3,-4.5,0.92,11.690,18.4 --4.6,0.92,11.230,15.9,-4.8,0.92,11.350,16.1 --4.7,0.92,10.790,22.0,-4.8,0.92,10.960,22.2 --4.4,0.92,11.440,26.1,-4.6,0.92,11.640,26.3 --4.3,0.92,10.670,17.6,-4.5,0.92,10.880,17.9 --4.2,0.92,10.390,23.5,-4.4,0.92,10.600,23.8 --4.0,0.92,10.760,33.2,-4.1,0.92,11.150,33.5 --3.5,0.92,11.000,39.5,-3.7,0.92,11.190,39.7 --3.4,0.92,10.620,38.1,-3.6,0.92,10.780,38.4 --3.3,0.92,9.570,40.4,-3.5,0.92,9.740,40.7 --3.4,0.92,8.810,40.2,-3.5,0.92,9.020,40.6 --3.1,0.92,8.620,46.3,-3.3,0.92,8.770,46.6 --2.9,0.92,8.540,46.8,-3.0,0.92,8.680,47.1 --2.9,0.92,7.190,39.5,-3.1,0.92,7.330,40.1 --3.0,0.92,7.620,38.1,-3.2,0.92,7.830,38.9 --3.4,0.92,8.670,40.6,-3.5,0.92,8.930,41.4 --3.4,0.92,7.500,52.9,-3.6,0.92,7.650,52.8 --3.9,0.92,8.240,46.0,-4.0,0.92,8.310,46.5 --4.2,0.92,7.290,43.6,-4.3,0.92,7.550,45.0 --4.2,0.92,7.470,49.7,-4.3,0.92,7.650,50.7 --4.1,0.92,5.290,47.8,-4.3,0.92,5.420,48.1 --4.8,0.92,5.960,38.7,-5.0,0.92,6.200,39.6 --5.4,0.92,5.650,58.2,-5.6,0.92,5.970,58.2 --4.9,0.92,4.730,48.9,-5.0,0.92,4.750,48.9 --5.0,0.92,3.890,27.1,-5.2,0.92,3.850,28.3 --5.2,0.92,3.870,33.9,-5.4,0.92,3.850,34.2 --5.2,0.92,4.000,40.0,-5.4,0.92,3.980,40.2 --5.2,0.92,3.050,44.2,-5.4,0.92,3.050,45.9 --5.3,0.92,2.660,40.0,-5.4,0.92,2.670,42.4 --5.2,0.92,1.880,53.9,-5.3,0.92,1.960,58.2 --5.0,0.92,1.420,76.3,-4.9,0.92,1.600,86.3 --4.7,0.91,1.080,111.3,-4.6,0.91,1.520,131.9 --4.5,0.91,1.530,140.0,-4.5,0.91,2.230,153.9 --4.1,0.91,1.700,175.9,-4.3,0.91,2.040,177.3 --3.9,0.91,2.340,179.1,-4.1,0.91,2.530,180.4 --3.8,0.91,2.660,185.9,-4.0,0.91,2.810,186.7 --3.7,0.91,3.220,205.9,-3.8,0.91,3.320,206.2 --3.5,0.91,2.920,209.4,-3.6,0.91,2.970,209.9 --3.3,0.91,3.630,212.0,-3.5,0.91,3.680,212.9 --3.2,0.91,3.010,213.3,-3.4,0.91,3.040,214.5 --3.1,0.91,4.270,211.7,-3.2,0.91,4.530,216.3 --2.9,0.91,4.340,221.3,-3.0,0.91,4.540,225.6 --2.7,0.91,4.280,232.6,-2.7,0.91,4.740,238.2 --2.3,0.91,2.420,246.5,-2.5,0.91,2.610,251.7 --1.9,0.91,2.650,228.7,-2.0,0.91,2.630,234.5 --1.3,0.91,2.010,235.7,-1.4,0.91,2.010,238.8 --0.8,0.91,1.980,232.6,-1.0,0.91,1.980,234.9 --0.2,0.91,1.160,276.9,-0.3,0.91,1.260,282.1 -0.6,0.91,1.890,325.4,0.4,0.91,1.970,324.1 -0.8,0.91,3.090,332.8,0.6,0.91,3.340,331.8 -0.3,0.91,2.890,28.0,0.2,0.91,2.900,23.6 --0.3,0.91,3.750,45.6,-0.3,0.91,3.930,42.5 --0.6,0.91,5.120,46.7,-0.7,0.91,5.470,45.8 --0.8,0.91,6.050,42.3,-0.8,0.91,6.470,42.3 --1.9,0.91,8.010,44.1,-1.9,0.91,8.410,43.5 --2.5,0.91,9.610,27.4,-2.5,0.91,10.070,29.2 --3.1,0.91,9.700,18.1,-3.1,0.91,10.120,19.4 --3.1,0.91,9.660,8.8,-3.1,0.91,10.110,10.5 --3.1,0.91,10.000,352.4,-3.1,0.91,10.410,354.3 --3.4,0.91,10.490,345.4,-3.4,0.91,10.970,347.2 --4.1,0.91,10.830,338.3,-4.0,0.91,11.410,341.1 --4.2,0.91,11.940,337.9,-3.9,0.91,12.480,341.9 --4.4,0.91,11.810,333.8,-4.1,0.91,12.410,338.6 --3.9,0.91,12.170,337.2,-3.6,0.91,12.880,341.4 --3.3,0.91,13.120,339.7,-3.0,0.91,13.800,343.4 --2.8,0.91,14.070,348.2,-2.6,0.91,14.910,351.9 --2.4,0.91,13.160,347.6,-2.3,0.91,13.710,349.4 --1.8,0.91,12.050,345.0,-1.8,0.91,12.700,345.9 --0.8,0.91,10.830,344.9,-1.0,0.91,11.400,345.6 --0.1,0.92,9.140,340.1,-0.3,0.92,9.380,340.7 -0.7,0.92,9.500,338.0,0.6,0.92,9.730,338.3 -1.7,0.92,10.010,339.2,1.5,0.92,10.310,339.4 -2.1,0.92,10.070,341.2,1.9,0.92,10.430,341.4 -2.0,0.92,10.110,335.0,1.9,0.92,10.650,335.6 -2.0,0.92,10.790,331.1,1.9,0.92,11.510,332.3 -1.5,0.92,12.560,328.4,1.6,0.92,13.640,330.6 -1.5,0.92,13.620,334.3,1.5,0.92,14.880,336.8 -1.3,0.92,13.790,337.1,1.4,0.92,15.050,340.2 -1.0,0.92,14.740,349.5,1.0,0.92,15.740,351.7 -0.6,0.92,15.100,356.8,0.6,0.92,15.960,359.2 -0.1,0.92,14.720,6.0,0.1,0.92,15.480,8.9 --0.2,0.92,12.850,13.3,-0.2,0.92,13.480,16.4 --0.5,0.92,10.450,18.2,-0.5,0.92,10.930,21.7 --1.0,0.92,9.930,25.0,-1.0,0.92,10.250,28.5 --1.4,0.92,9.240,28.6,-1.5,0.92,9.360,30.8 --1.9,0.92,8.020,29.1,-1.9,0.92,8.110,30.9 --2.2,0.92,6.100,35.8,-2.2,0.92,6.140,39.1 --2.4,0.92,6.030,31.7,-2.3,0.92,6.320,32.0 --2.2,0.92,4.260,28.0,-2.2,0.92,4.490,29.1 --1.9,0.92,4.800,13.3,-1.9,0.92,5.020,15.0 --1.9,0.92,3.320,25.6,-1.9,0.92,3.510,26.2 --1.3,0.92,1.070,10.5,-1.2,0.92,1.480,21.3 --0.7,0.92,0.970,359.9,-0.9,0.92,1.060,2.6 --0.1,0.92,1.110,217.9,-0.2,0.92,1.000,219.7 -0.7,0.92,2.980,213.5,0.5,0.92,2.980,215.3 -1.4,0.92,3.710,220.3,1.3,0.92,3.720,219.8 -1.9,0.92,3.680,217.4,1.7,0.92,3.690,218.0 -2.2,0.92,4.120,222.8,2.1,0.92,4.160,222.2 -2.4,0.92,5.500,211.6,2.3,0.92,5.450,212.0 -2.8,0.92,6.610,208.7,3.0,0.92,6.620,211.3 -3.5,0.92,7.490,207.4,3.6,0.92,7.390,208.7 -3.9,0.92,7.790,207.0,3.9,0.92,7.830,208.9 -3.9,0.92,8.570,202.7,3.9,0.92,8.620,204.5 -4.0,0.92,8.950,202.3,4.0,0.92,9.000,204.0 -4.2,0.91,9.530,200.7,4.2,0.91,9.600,202.2 -4.3,0.91,9.530,200.3,4.4,0.91,9.650,201.8 -4.5,0.91,9.480,201.5,4.6,0.91,9.610,203.3 -4.2,0.91,10.060,198.4,4.4,0.91,10.180,200.4 -4.6,0.91,9.740,201.7,4.8,0.91,9.820,203.8 -4.4,0.91,9.550,202.5,4.6,0.91,9.680,204.6 -4.2,0.91,9.890,205.4,4.5,0.91,10.150,206.7 -4.4,0.91,10.490,210.2,4.8,0.91,10.810,211.1 -4.4,0.92,10.400,209.2,4.8,0.92,10.610,210.7 -4.1,0.92,9.940,209.5,4.6,0.92,10.160,211.5 -4.1,0.92,9.950,211.8,4.5,0.92,10.310,213.4 -3.7,0.92,9.310,207.6,4.0,0.92,9.820,208.9 -4.1,0.92,8.330,206.9,4.3,0.92,8.810,207.9 -4.5,0.92,8.000,202.7,4.6,0.92,8.460,204.2 -5.0,0.92,7.500,200.2,5.0,0.92,7.920,201.5 -5.5,0.92,6.930,199.1,5.4,0.92,7.230,200.0 -6.1,0.92,7.150,191.5,5.9,0.92,7.330,191.7 -6.7,0.92,6.910,189.3,6.5,0.92,7.040,189.4 -7.1,0.92,7.000,182.7,7.0,0.92,7.100,183.6 -7.7,0.92,8.310,186.4,7.6,0.92,8.280,187.8 -7.5,0.92,8.120,175.6,7.6,0.92,8.120,180.1 -8.0,0.92,8.300,172.1,8.0,0.92,8.120,175.4 -7.8,0.92,10.730,173.5,7.8,0.92,10.560,174.0 -6.9,0.92,11.920,176.7,7.0,0.92,11.930,178.3 -6.3,0.92,12.070,180.4,6.6,0.92,12.160,181.4 -6.5,0.92,12.090,186.7,6.8,0.92,12.270,187.8 -6.5,0.92,10.650,200.7,6.9,0.92,10.790,202.8 -5.8,0.92,10.270,201.3,6.1,0.92,10.480,201.8 -5.5,0.92,10.660,201.4,5.9,0.92,10.920,201.5 -5.5,0.92,10.960,202.3,5.9,0.92,11.250,202.2 -5.7,0.92,11.070,206.1,6.1,0.92,11.310,205.8 -5.3,0.92,11.070,208.3,5.7,0.92,11.290,208.9 -4.6,0.92,10.940,206.8,5.1,0.92,11.220,207.8 -5.0,0.92,11.160,208.5,5.4,0.92,11.450,208.8 -4.8,0.92,10.900,206.2,5.3,0.92,11.360,206.7 -5.0,0.92,10.290,203.0,5.1,0.92,10.760,203.5 -5.5,0.92,10.020,205.2,5.9,0.92,10.800,206.0 -5.9,0.92,9.910,202.3,5.9,0.92,10.400,202.6 -6.3,0.92,8.300,197.1,6.2,0.92,8.580,197.7 -7.0,0.92,8.150,192.7,6.8,0.92,8.280,192.8 -7.3,0.92,8.540,193.3,7.1,0.92,8.780,193.5 -7.7,0.92,9.330,191.9,7.6,0.92,9.700,192.4 -8.5,0.92,9.880,186.6,8.5,0.92,10.230,188.2 -9.7,0.92,12.090,194.2,9.6,0.92,12.400,194.1 -10.0,0.92,12.710,194.8,10.1,0.92,13.010,194.8 -10.2,0.92,13.460,196.2,10.3,0.92,13.890,196.5 -9.9,0.91,14.000,198.2,10.2,0.91,14.550,199.0 -9.1,0.91,14.760,203.2,9.4,0.91,15.350,203.6 -8.4,0.91,16.240,208.8,8.7,0.91,16.980,208.6 -7.8,0.91,16.190,210.5,8.1,0.91,17.000,210.5 -7.4,0.91,16.280,210.4,7.6,0.91,17.230,210.9 -7.0,0.92,16.210,211.8,7.2,0.92,17.150,212.7 -6.8,0.91,15.820,213.4,7.0,0.91,16.800,214.5 -6.4,0.91,15.680,212.1,6.6,0.91,16.590,213.1 -6.3,0.91,15.720,213.1,6.5,0.91,16.610,213.8 -6.3,0.91,15.030,212.0,6.6,0.91,15.840,212.9 -6.4,0.91,14.990,210.7,6.6,0.91,15.720,211.6 -5.6,0.91,14.270,210.5,5.9,0.91,14.910,211.4 -4.5,0.91,13.740,211.2,4.6,0.91,14.400,212.1 -4.6,0.91,12.760,207.5,4.7,0.91,13.080,208.0 -5.0,0.91,11.930,204.4,4.9,0.91,12.630,205.5 -7.7,0.91,10.030,206.8,7.7,0.91,10.690,208.5 -9.6,0.91,9.770,206.3,9.4,0.91,9.850,206.9 -10.8,0.91,9.770,204.8,10.6,0.91,9.820,205.2 -12.1,0.91,9.360,202.8,11.9,0.91,9.460,203.1 -13.1,0.91,9.090,203.2,13.0,0.91,9.240,203.3 -13.6,0.91,10.570,203.2,13.5,0.91,10.840,203.7 -14.0,0.91,11.660,205.0,13.9,0.91,11.900,205.3 -14.3,0.91,13.110,210.3,14.3,0.91,13.410,210.3 -14.2,0.91,13.980,212.3,14.2,0.91,14.230,212.3 -13.4,0.91,14.560,216.1,13.6,0.91,14.880,216.5 -12.9,0.91,14.770,218.3,13.1,0.91,15.220,218.4 -12.2,0.91,15.150,221.3,12.4,0.91,15.820,221.6 -11.4,0.91,14.970,221.5,11.6,0.91,15.930,222.2 -11.4,0.91,14.600,226.2,11.6,0.91,15.550,227.0 -10.9,0.91,13.620,226.2,11.2,0.91,14.640,227.3 -11.0,0.91,13.470,226.6,11.3,0.91,14.340,227.2 -10.4,0.91,12.630,225.4,10.7,0.91,13.370,226.4 -8.8,0.91,10.760,220.7,8.8,0.91,11.270,221.4 -8.3,0.91,9.290,221.9,8.2,0.91,9.790,224.4 -8.1,0.91,9.550,227.8,8.2,0.91,10.170,229.9 -8.3,0.91,10.400,233.8,8.4,0.91,10.980,235.1 -9.6,0.91,9.190,237.2,10.4,0.91,9.650,240.8 -9.1,0.91,8.180,231.0,9.5,0.91,9.120,236.9 -10.7,0.91,6.840,230.0,10.6,0.91,7.530,234.8 -12.8,0.91,6.340,237.6,12.7,0.91,6.540,239.7 -14.3,0.91,6.580,240.7,14.1,0.91,6.610,241.6 -15.2,0.91,6.310,243.7,15.1,0.91,6.330,244.3 -15.5,0.91,6.660,243.1,15.3,0.91,6.720,243.9 -15.3,0.91,7.460,242.9,15.2,0.91,7.840,244.5 -15.3,0.91,8.780,241.7,15.2,0.91,9.280,243.8 -17.4,0.91,10.000,234.3,17.5,0.91,10.520,236.7 -17.5,0.91,11.990,246.1,17.7,0.91,12.540,248.5 -17.7,0.91,13.210,264.4,18.0,0.91,13.930,267.6 -17.8,0.91,13.220,278.8,18.2,0.91,14.180,282.7 -17.8,0.91,13.770,288.6,18.1,0.91,14.540,291.0 -15.6,0.91,11.550,291.7,15.9,0.91,12.300,294.4 -15.6,0.91,12.150,294.8,15.9,0.91,12.750,298.1 -15.5,0.91,10.690,299.6,15.7,0.91,10.840,302.3 -15.1,0.91,12.260,295.8,15.3,0.91,12.770,298.7 -14.3,0.90,11.860,293.8,14.6,0.90,12.240,297.4 -13.7,0.90,11.940,294.0,13.9,0.90,12.120,296.9 -13.0,0.90,12.660,292.0,13.3,0.90,13.140,295.9 -12.8,0.90,12.430,290.0,13.0,0.90,13.030,293.8 -11.9,0.90,13.360,286.6,12.3,0.90,14.140,290.3 -11.4,0.90,13.860,284.7,11.7,0.90,14.600,288.1 -10.8,0.90,11.930,279.5,10.9,0.90,12.560,281.2 -11.2,0.90,8.770,279.9,11.0,0.90,8.980,280.5 -12.3,0.90,8.030,282.0,12.2,0.90,8.100,282.2 -13.8,0.90,5.740,283.8,13.6,0.90,5.800,283.7 -15.4,0.90,6.370,278.4,15.2,0.90,6.400,278.4 -16.8,0.90,6.760,279.4,16.6,0.90,6.820,279.4 -17.7,0.90,6.310,279.1,17.5,0.90,6.370,279.0 -18.0,0.90,5.970,269.4,17.8,0.90,6.040,269.4 -18.0,0.90,7.370,261.4,17.8,0.90,7.490,261.7 -17.7,0.90,7.980,257.3,17.6,0.90,7.950,258.9 -18.1,0.90,10.330,260.8,18.0,0.90,9.730,261.7 -18.8,0.90,9.790,263.2,18.8,0.90,9.480,263.5 -18.8,0.90,10.470,264.6,18.9,0.90,10.420,264.0 -18.9,0.90,10.000,257.2,18.9,0.90,10.140,259.2 -19.2,0.90,13.100,262.6,19.6,0.90,13.400,264.6 -18.5,0.90,15.580,260.5,19.0,0.90,16.530,262.3 -18.6,0.90,16.380,265.2,19.1,0.90,17.030,266.0 -18.0,0.90,16.430,272.3,18.5,0.90,17.210,274.5 -17.1,0.90,16.560,273.6,17.5,0.90,17.480,275.1 -16.8,0.90,15.470,271.5,17.2,0.90,16.460,273.2 -16.1,0.90,14.270,269.6,16.4,0.90,15.130,271.7 -14.9,0.90,14.090,273.9,15.3,0.90,15.030,277.2 -15.4,0.90,14.360,274.3,16.0,0.90,15.000,277.1 -15.7,0.90,15.240,280.3,16.0,0.90,16.000,282.5 -15.6,0.90,13.350,280.6,15.9,0.90,14.370,282.4 -16.8,0.90,10.880,285.2,16.8,0.90,11.740,285.2 -18.4,0.90,9.870,281.5,18.3,0.90,10.260,281.8 -19.6,0.90,8.370,278.5,19.4,0.90,8.550,278.8 -22.3,0.90,7.840,276.2,22.1,0.90,8.010,276.3 -22.7,0.90,6.610,260.6,22.5,0.90,6.680,260.8 -22.3,0.90,7.540,236.3,22.1,0.90,7.600,236.6 -22.2,0.90,8.300,239.1,21.9,0.90,8.370,239.3 -21.9,0.90,6.990,231.8,21.7,0.90,7.350,232.8 -21.4,0.90,7.470,227.0,21.3,0.90,8.060,233.7 -21.7,0.90,11.860,228.6,21.8,0.90,12.320,229.7 -21.3,0.90,14.410,231.2,21.4,0.90,15.070,233.7 -20.0,0.90,13.440,227.8,20.2,0.90,14.460,232.0 -19.6,0.90,15.670,234.0,20.0,0.90,16.910,236.7 -19.7,0.90,15.850,235.1,20.0,0.90,16.880,238.0 -19.7,0.90,16.940,245.9,20.0,0.90,18.070,248.0 -18.5,0.90,15.550,244.3,19.1,0.90,17.160,247.1 -18.6,0.90,15.540,245.7,19.2,0.90,16.980,248.4 -18.6,0.90,15.890,245.0,19.0,0.90,17.200,246.6 -18.1,0.90,15.720,244.8,18.6,0.90,16.840,246.1 -18.0,0.90,16.980,252.1,18.6,0.90,18.540,254.9 -17.7,0.90,16.400,251.5,18.1,0.90,17.850,254.2 -16.9,0.90,14.310,253.1,17.3,0.90,15.710,256.2 -16.2,0.90,15.610,258.1,16.7,0.90,17.060,260.8 -16.5,0.90,12.030,262.4,16.7,0.90,12.900,264.7 -17.8,0.90,8.310,259.1,17.7,0.90,8.540,260.1 -18.9,0.90,6.710,249.9,18.8,0.90,6.790,250.5 -20.3,0.90,11.180,263.9,20.1,0.90,11.390,264.0 -21.5,0.90,11.530,266.5,21.3,0.90,11.760,266.5 -22.1,0.90,7.740,252.1,21.9,0.90,7.900,252.0 -22.4,0.90,7.500,251.6,22.2,0.90,7.630,251.6 -22.7,0.90,7.050,254.1,22.5,0.90,7.210,253.8 -22.5,0.90,6.030,245.3,22.3,0.90,6.500,245.4 -22.5,0.90,7.640,230.1,22.4,0.90,7.950,232.3 -22.3,0.90,8.710,257.9,22.1,0.90,8.800,258.0 -22.3,0.90,6.540,245.9,22.2,0.90,6.480,244.3 -21.6,0.90,4.770,236.5,21.4,0.90,4.980,235.5 -20.1,0.90,4.220,202.1,20.1,0.90,4.630,206.8 -17.2,0.90,3.000,64.5,17.6,0.90,2.620,68.3 -11.0,0.90,7.840,46.8,10.8,0.90,8.260,49.3 -8.6,0.90,9.610,45.5,8.4,0.90,9.750,45.9 -6.2,0.90,10.800,38.3,6.0,0.90,10.870,38.4 -4.3,0.91,11.470,40.2,4.1,0.91,11.550,40.3 -2.5,0.91,11.810,33.3,2.3,0.91,11.890,33.4 -1.1,0.91,12.380,31.5,0.9,0.91,12.470,31.7 --0.8,0.91,12.130,35.2,-1.0,0.91,12.200,35.4 --1.7,0.91,11.620,33.0,-1.9,0.91,11.730,32.8 --1.9,0.91,11.330,35.8,-2.1,0.91,11.430,35.7 --2.7,0.91,11.200,29.2,-2.9,0.91,11.280,29.1 --3.5,0.91,11.490,31.8,-3.7,0.91,11.580,31.9 --3.4,0.91,10.340,34.7,-3.6,0.91,10.410,34.6 --3.6,0.91,10.040,30.4,-3.8,0.91,10.110,30.5 --3.9,0.91,9.350,39.4,-4.1,0.91,9.410,39.5 --4.2,0.91,8.660,30.5,-4.4,0.91,8.700,30.6 --4.3,0.91,8.240,35.7,-4.4,0.91,8.280,35.8 --4.2,0.91,7.770,37.8,-4.4,0.91,7.810,37.9 --4.2,0.91,8.080,40.5,-4.4,0.91,8.120,40.3 --4.4,0.91,8.250,40.8,-4.5,0.91,8.280,40.9 --4.5,0.91,8.040,33.2,-4.6,0.91,8.080,33.4 --4.5,0.91,9.530,63.9,-4.7,0.91,9.550,63.7 --4.6,0.91,7.950,50.6,-4.8,0.91,7.990,50.5 --4.0,0.91,5.690,49.0,-4.2,0.91,5.750,48.6 --4.5,0.91,10.470,38.5,-4.7,0.91,10.510,38.1 --4.6,0.91,7.940,33.3,-4.8,0.91,7.940,33.6 --5.4,0.91,10.600,16.5,-5.6,0.91,10.660,17.1 --5.6,0.91,8.980,19.0,-5.8,0.91,8.980,19.4 --6.0,0.91,10.920,13.6,-6.2,0.91,11.000,13.8 --6.7,0.91,9.930,12.5,-6.9,0.91,10.020,12.6 --6.7,0.91,9.490,21.0,-6.9,0.91,9.580,20.7 --6.7,0.91,10.910,16.1,-6.9,0.91,11.020,16.0 --6.6,0.91,10.490,15.1,-6.8,0.91,10.550,15.0 --8.5,0.91,9.570,5.7,-8.7,0.91,9.630,5.8 --9.4,0.91,11.320,12.2,-9.6,0.91,11.430,12.0 --9.4,0.91,9.650,6.6,-9.6,0.91,9.740,6.5 --9.1,0.91,10.210,13.5,-9.3,0.91,10.290,13.5 --8.4,0.91,9.900,13.1,-8.6,0.91,9.970,13.0 --7.9,0.91,9.620,14.4,-8.1,0.91,9.680,14.3 --7.4,0.92,8.930,14.4,-7.6,0.92,8.980,14.3 --7.3,0.92,8.980,15.6,-7.5,0.92,9.040,15.5 --7.1,0.92,8.890,17.9,-7.3,0.92,8.960,17.9 --7.3,0.92,8.100,21.4,-7.5,0.92,8.300,21.4 --7.6,0.92,9.050,27.3,-7.8,0.92,9.300,27.0 --7.9,0.92,9.920,30.1,-8.0,0.92,10.220,30.3 --8.4,0.92,11.010,34.5,-8.5,0.92,11.450,34.7 --8.8,0.92,11.170,37.2,-8.9,0.92,11.660,37.5 --9.2,0.92,11.290,37.4,-9.3,0.92,11.850,37.8 --9.8,0.92,10.910,38.1,-10.0,0.92,11.450,38.9 --10.5,0.92,10.510,40.4,-10.6,0.92,11.060,41.1 --11.1,0.92,10.410,38.0,-11.3,0.92,10.980,39.2 --11.7,0.92,10.170,36.2,-11.8,0.92,10.740,37.8 --12.2,0.92,9.520,36.3,-12.3,0.92,10.040,38.2 --12.6,0.92,9.040,35.7,-12.7,0.92,9.430,37.1 --12.8,0.92,8.210,34.7,-13.0,0.92,8.520,35.9 --13.1,0.92,7.770,33.2,-13.2,0.92,8.070,34.0 --13.1,0.92,8.060,28.2,-13.3,0.92,8.350,29.0 --13.3,0.92,7.510,28.1,-13.5,0.92,7.720,28.8 --13.5,0.92,6.970,29.6,-13.6,0.92,7.070,30.0 --13.4,0.92,6.960,28.5,-13.6,0.92,6.990,28.9 --13.2,0.92,6.540,26.4,-13.4,0.92,6.560,26.7 --13.1,0.92,6.030,29.7,-13.2,0.92,6.040,29.8 --13.0,0.92,5.450,23.8,-13.2,0.92,5.450,24.1 --12.8,0.92,5.020,21.1,-13.0,0.92,5.020,21.5 --12.6,0.92,4.480,24.1,-12.8,0.92,4.480,24.8 --12.4,0.91,3.860,23.4,-12.6,0.91,3.860,23.8 --12.1,0.91,3.520,25.4,-12.3,0.91,3.520,25.6 --11.9,0.91,2.980,24.6,-12.1,0.91,2.980,24.6 --11.6,0.91,2.500,31.9,-11.8,0.91,2.500,31.9 --11.3,0.91,1.990,32.2,-11.5,0.91,1.980,32.1 --11.1,0.91,1.610,73.6,-11.3,0.91,1.560,74.9 --10.7,0.91,1.160,44.0,-10.9,0.91,1.080,46.6 --10.3,0.91,1.360,99.4,-10.5,0.91,1.340,104.9 --9.8,0.91,1.390,171.0,-10.0,0.91,1.460,172.9 --9.1,0.91,3.030,192.2,-9.3,0.91,3.060,193.2 --9.2,0.91,3.050,216.7,-9.3,0.91,3.280,216.9 --9.6,0.91,6.550,195.6,-9.6,0.91,6.660,197.5 --9.7,0.91,7.150,198.7,-9.5,0.91,7.680,200.0 --9.1,0.91,7.870,208.1,-8.4,0.91,8.510,209.3 --8.3,0.91,8.960,203.5,-7.6,0.91,9.610,205.3 --5.8,0.91,10.690,216.5,-4.7,0.91,11.210,217.3 --3.7,0.91,12.040,224.1,-2.7,0.91,12.320,224.8 --3.9,0.91,12.990,215.3,-2.7,0.91,13.600,217.0 --3.5,0.91,13.080,217.0,-2.6,0.91,13.990,218.9 --2.0,0.91,11.650,223.0,-1.5,0.91,12.540,225.1 -0.0,0.91,10.530,224.1,0.4,0.91,11.310,227.4 -1.7,0.91,8.790,227.0,1.8,0.91,9.420,229.7 -3.0,0.91,8.450,229.1,3.1,0.91,9.230,232.5 -4.9,0.91,10.300,237.8,5.3,0.91,11.270,241.4 -5.8,0.91,9.050,240.6,5.9,0.91,9.730,243.3 -6.2,0.91,9.580,242.1,6.8,0.91,10.550,247.9 -7.9,0.91,11.180,248.6,8.7,0.91,12.360,253.3 -9.2,0.91,11.230,257.0,9.8,0.91,11.970,260.1 -9.6,0.91,10.020,266.6,10.0,0.91,10.330,269.4 -10.0,0.91,8.550,272.5,10.3,0.91,8.730,274.8 -10.5,0.91,6.830,277.6,10.5,0.91,6.830,280.2 -10.4,0.91,5.280,284.1,10.5,0.91,5.270,287.5 -8.7,0.91,4.170,358.9,8.7,0.91,4.420,1.9 -4.6,0.91,3.710,14.8,5.1,0.91,3.800,7.6 -5.9,0.91,4.280,16.6,6.2,0.91,4.700,20.8 -2.7,0.91,6.720,24.4,2.9,0.91,6.930,25.6 --1.6,0.91,7.940,16.5,-1.5,0.91,8.050,20.1 --3.5,0.91,8.700,30.0,-3.3,0.91,8.950,34.3 --5.5,0.91,8.820,30.3,-5.3,0.91,9.030,35.4 --6.7,0.91,8.910,27.3,-6.7,0.91,9.220,30.8 --7.6,0.91,9.280,28.8,-7.6,0.91,9.690,31.1 --8.1,0.91,8.980,32.7,-8.2,0.91,9.400,33.9 --8.3,0.91,8.470,31.8,-8.4,0.91,8.840,32.5 --8.3,0.91,7.640,28.0,-8.5,0.91,7.700,28.4 --8.0,0.91,7.330,27.1,-8.2,0.91,7.350,27.3 --7.5,0.91,7.220,24.3,-7.7,0.91,7.250,24.4 --6.8,0.91,6.830,21.8,-7.0,0.91,6.860,21.7 --6.3,0.91,6.290,19.8,-6.4,0.91,6.320,19.7 --6.0,0.91,6.620,17.1,-6.2,0.91,6.660,17.0 --5.9,0.91,6.800,12.3,-6.0,0.91,6.930,12.2 --5.7,0.91,7.180,13.7,-5.8,0.91,7.370,13.5 --5.7,0.91,8.440,14.3,-5.9,0.91,8.620,15.0 --5.8,0.92,8.510,15.3,-6.0,0.92,8.630,15.3 --6.1,0.92,7.810,18.6,-6.3,0.92,7.960,18.6 --6.4,0.92,7.950,13.7,-6.6,0.92,8.090,13.9 --6.7,0.92,7.800,10.2,-6.7,0.92,8.160,9.0 --6.6,0.92,7.010,8.4,-6.5,0.92,7.330,8.2 --6.9,0.92,6.460,8.9,-6.8,0.92,6.860,8.2 --6.4,0.92,6.870,0.5,-6.2,0.92,7.270,1.0 --5.5,0.92,6.070,353.1,-5.3,0.92,6.340,355.0 --5.0,0.92,5.400,354.0,-4.8,0.92,5.640,356.2 --3.9,0.92,5.520,349.4,-3.7,0.92,5.700,352.4 --3.5,0.92,5.070,350.0,-3.4,0.92,5.160,354.2 --3.1,0.92,4.290,343.6,-3.0,0.92,4.300,349.3 --2.6,0.92,2.850,332.9,-2.5,0.92,2.800,342.5 --1.9,0.92,2.070,320.8,-1.9,0.92,1.870,331.5 --1.5,0.92,1.960,280.5,-1.2,0.92,1.590,286.9 --0.9,0.92,2.380,213.1,-1.0,0.92,2.360,213.5 -0.2,0.92,3.570,214.3,0.0,0.92,3.560,214.2 -0.9,0.92,4.200,216.2,0.7,0.92,4.190,215.9 -1.6,0.92,5.020,208.0,1.4,0.92,5.020,207.9 -1.7,0.92,6.110,203.5,1.5,0.92,6.120,204.0 -1.4,0.92,6.810,200.9,1.3,0.92,6.960,201.7 -0.8,0.91,9.740,201.0,0.8,0.91,10.040,202.7 -1.4,0.91,11.290,198.8,1.5,0.91,11.580,201.4 -1.6,0.91,11.580,195.2,1.7,0.91,11.820,197.9 -1.8,0.91,12.000,198.5,2.2,0.91,12.270,201.5 -2.4,0.91,12.500,197.2,2.7,0.91,12.820,199.2 -2.6,0.91,13.140,199.3,3.1,0.91,13.510,201.7 -2.7,0.91,12.870,202.8,3.4,0.91,13.400,204.8 -3.6,0.91,12.760,207.5,4.3,0.91,13.320,209.0 -4.0,0.91,13.390,211.0,4.8,0.91,13.990,212.4 -4.6,0.91,12.870,214.5,5.3,0.91,13.420,215.5 -4.7,0.91,12.280,219.3,5.4,0.91,12.800,220.6 -4.7,0.91,11.380,225.1,5.3,0.91,11.640,226.9 -4.8,0.91,11.880,231.2,5.4,0.91,11.990,233.1 -4.9,0.91,11.660,247.7,5.4,0.91,11.860,249.8 -4.2,0.91,10.240,269.5,4.6,0.91,10.300,271.3 -2.6,0.92,10.390,300.6,3.1,0.92,10.740,304.2 --0.7,0.92,8.570,339.5,-0.8,0.92,9.100,341.5 --1.3,0.92,7.250,345.0,-1.5,0.92,7.460,345.3 --1.2,0.92,8.130,356.4,-1.4,0.92,8.210,356.6 --0.7,0.92,9.240,3.0,-0.9,0.92,9.280,3.2 --0.1,0.92,9.630,10.1,-0.3,0.92,9.690,10.1 --0.0,0.92,9.630,12.3,-0.2,0.92,9.690,12.2 --0.1,0.92,9.610,14.8,-0.3,0.92,9.680,14.7 --0.3,0.92,9.100,13.5,-0.5,0.92,9.170,13.6 --0.6,0.92,8.510,12.3,-0.8,0.92,8.800,12.8 --1.0,0.92,9.880,20.7,-1.2,0.92,10.530,20.8 --1.4,0.92,10.830,19.7,-1.5,0.92,11.260,20.0 --1.9,0.92,10.240,21.9,-2.0,0.92,10.590,22.8 --2.6,0.92,10.300,25.1,-2.6,0.92,10.740,26.4 --3.0,0.92,9.530,28.0,-3.0,0.92,9.860,29.9 --3.3,0.92,8.240,33.4,-3.3,0.92,8.600,35.9 --3.9,0.92,7.230,40.7,-3.9,0.92,7.620,44.3 --4.2,0.92,6.130,44.3,-4.1,0.92,6.340,47.6 --4.6,0.92,5.060,39.5,-4.5,0.92,5.130,43.3 --5.0,0.92,3.750,45.9,-4.9,0.92,3.810,48.4 --3.7,0.92,2.900,34.8,-3.5,0.92,3.290,37.3 --4.0,0.92,2.820,24.3,-3.8,0.92,3.040,28.7 --1.6,0.92,0.890,49.7,-1.3,0.92,1.270,53.7 --2.6,0.92,1.660,14.9,-2.2,0.92,1.730,26.6 --1.6,0.92,0.750,40.0,-1.3,0.92,0.880,66.1 --0.8,0.92,1.260,170.1,-0.7,0.92,1.500,165.2 --0.6,0.92,2.280,201.2,-0.7,0.92,2.320,201.2 -0.7,0.92,1.820,201.5,0.5,0.92,1.810,201.6 -2.0,0.92,2.830,201.6,1.9,0.92,2.840,201.6 -3.0,0.92,3.970,209.3,2.8,0.92,3.980,209.8 -3.4,0.92,3.860,206.4,3.3,0.92,3.870,206.5 -3.9,0.92,3.810,203.6,3.7,0.92,3.830,203.9 -3.9,0.92,3.960,200.6,3.7,0.92,3.950,201.6 -3.1,0.92,5.800,192.4,3.0,0.92,5.760,194.4 -3.0,0.92,8.680,190.1,3.1,0.92,8.930,192.0 -3.2,0.92,9.910,185.8,3.3,0.92,10.190,187.0 -3.3,0.91,11.270,189.6,3.5,0.91,11.620,191.3 -3.8,0.91,12.210,194.4,4.0,0.91,12.710,195.1 -3.8,0.91,11.810,189.6,4.0,0.91,12.330,190.1 -3.6,0.91,11.510,187.4,3.7,0.91,12.120,187.9 -4.2,0.91,12.950,189.9,4.3,0.91,13.630,190.2 -3.9,0.91,13.550,199.1,3.9,0.91,14.230,199.2 -4.6,0.91,15.240,198.3,4.7,0.91,15.960,199.1 -5.2,0.91,16.800,202.3,5.3,0.91,17.440,202.9 -5.1,0.91,16.900,203.3,5.2,0.91,17.630,203.9 -4.9,0.91,16.080,207.7,4.9,0.91,16.810,208.2 -4.7,0.91,16.550,207.2,4.7,0.91,17.280,207.7 -4.5,0.91,16.690,207.2,4.6,0.91,17.460,208.0 -4.4,0.91,16.360,207.7,4.4,0.91,17.090,208.9 -4.4,0.91,16.610,205.1,4.4,0.91,17.210,205.6 -4.7,0.91,15.920,204.1,4.6,0.91,16.620,204.8 -5.4,0.90,13.550,205.7,5.2,0.90,13.790,206.4 -6.8,0.90,12.460,205.7,6.7,0.90,12.620,206.4 -8.4,0.90,11.430,204.4,8.2,0.90,11.500,205.1 -10.0,0.90,10.850,203.6,9.8,0.90,10.910,204.0 -11.4,0.90,9.410,204.2,11.2,0.90,9.500,204.8 -12.7,0.90,8.380,213.2,12.5,0.90,8.780,215.0 -13.0,0.90,10.270,208.5,13.0,0.90,10.720,211.1 -13.6,0.90,10.720,217.4,13.5,0.90,11.130,223.7 -14.1,0.90,12.740,231.5,14.2,0.90,13.220,234.0 -13.2,0.90,14.460,246.8,13.6,0.90,16.000,250.6 -13.3,0.90,15.240,253.4,13.7,0.90,16.840,256.8 -12.3,0.90,14.880,264.0,12.7,0.90,16.170,268.2 -12.0,0.90,16.460,273.7,12.3,0.90,17.560,276.7 -9.7,0.90,14.640,284.8,9.8,0.90,15.690,287.0 -7.5,0.90,12.680,310.3,7.3,0.90,13.250,315.3 -5.2,0.90,10.090,351.6,5.2,0.90,10.880,351.7 -3.6,0.91,13.290,338.9,3.5,0.91,14.590,341.0 -2.3,0.91,14.330,345.7,2.2,0.91,15.600,347.2 -1.2,0.91,15.140,348.1,1.0,0.91,16.250,349.3 --0.1,0.91,15.880,353.4,-0.2,0.91,16.810,354.4 --0.7,0.91,15.100,356.1,-0.8,0.91,16.020,356.8 --1.2,0.91,15.680,357.7,-1.3,0.91,16.560,358.5 --1.3,0.91,13.520,358.6,-1.5,0.91,14.230,359.0 --0.8,0.91,13.370,1.4,-1.0,0.91,13.530,1.4 --0.1,0.91,12.250,359.7,-0.3,0.91,12.370,359.6 -1.1,0.91,11.050,352.5,0.9,0.91,11.160,352.5 -2.1,0.91,11.150,349.4,1.9,0.91,11.270,349.3 -3.1,0.91,10.200,351.3,3.0,0.91,10.320,351.1 -4.0,0.91,9.570,351.4,3.8,0.91,9.690,351.2 -4.6,0.91,9.330,348.8,4.4,0.91,9.460,348.6 -4.7,0.91,7.690,351.8,4.5,0.91,7.990,351.4 -5.1,0.92,8.680,353.2,4.9,0.92,8.890,353.2 -5.1,0.92,8.440,355.8,4.9,0.92,8.960,356.1 -5.0,0.92,7.990,4.6,4.8,0.92,8.310,5.1 -4.8,0.92,6.550,8.7,4.7,0.92,6.860,9.2 -5.1,0.92,6.030,2.5,5.1,0.92,6.360,3.1 -5.3,0.92,5.310,348.6,5.4,0.92,5.560,350.9 -5.9,0.92,5.110,336.8,6.0,0.92,5.360,339.8 -6.5,0.92,4.970,327.2,6.5,0.92,5.160,331.1 -6.9,0.92,4.420,316.5,6.9,0.92,4.440,321.1 -7.2,0.92,4.840,306.6,7.2,0.92,4.880,310.6 -7.1,0.92,4.110,287.2,7.3,0.92,4.080,291.9 -7.1,0.92,3.960,268.7,7.2,0.92,3.850,270.9 -7.3,0.92,4.710,257.2,7.3,0.92,4.510,258.8 -8.3,0.92,5.560,253.2,8.3,0.92,5.520,255.9 -8.8,0.92,6.040,252.3,8.8,0.92,6.020,254.3 -8.8,0.92,7.220,242.7,9.0,0.92,6.960,244.1 -8.2,0.92,7.780,231.7,8.8,0.92,8.110,234.4 -8.0,0.92,6.050,222.6,7.9,0.92,6.140,224.1 -9.0,0.92,5.930,227.4,8.8,0.92,5.950,228.1 -10.0,0.92,6.250,219.6,9.8,0.92,6.260,220.3 -10.9,0.91,6.790,225.5,10.7,0.91,6.850,226.0 -11.5,0.91,7.060,225.8,11.3,0.91,7.130,226.2 -11.6,0.91,7.200,229.9,11.5,0.91,7.320,230.0 -11.8,0.91,7.730,228.9,11.7,0.91,7.960,229.6 -11.9,0.91,8.240,225.3,11.7,0.91,8.380,227.2 -11.5,0.91,10.780,224.5,11.5,0.91,10.940,225.5 -11.9,0.91,10.500,225.2,11.8,0.91,10.550,225.3 -11.8,0.91,10.240,224.1,11.9,0.91,10.370,224.8 -11.8,0.91,9.270,221.8,11.8,0.91,9.430,223.2 -11.1,0.91,11.220,222.2,11.3,0.91,11.380,222.6 -10.4,0.91,12.100,229.2,10.8,0.91,12.450,230.4 -10.6,0.91,13.150,231.0,11.1,0.91,13.570,231.8 -10.3,0.91,13.140,231.6,11.0,0.91,13.400,233.1 -9.4,0.91,12.440,237.2,10.1,0.91,12.860,238.2 -9.6,0.91,12.650,239.5,10.3,0.91,12.900,240.5 -9.1,0.91,12.310,237.1,9.7,0.91,12.490,238.2 -9.0,0.91,12.180,240.7,9.6,0.91,12.280,241.4 -9.3,0.91,11.620,237.9,9.9,0.91,11.500,239.0 -10.0,0.91,10.630,238.8,10.8,0.91,10.370,239.5 -10.8,0.91,9.640,240.0,12.0,0.91,9.550,241.4 -11.4,0.91,8.960,238.8,12.6,0.91,9.490,240.4 -11.2,0.91,6.820,238.3,11.6,0.91,7.950,241.3 -12.3,0.91,5.340,242.4,12.2,0.91,5.380,243.4 -13.6,0.91,4.980,240.6,13.4,0.91,4.980,241.2 -14.7,0.91,4.820,239.1,14.5,0.91,4.830,239.6 -15.1,0.91,4.750,232.8,14.9,0.91,4.760,233.2 -14.8,0.91,4.730,222.2,14.6,0.91,4.740,222.7 -14.1,0.91,6.260,210.8,14.0,0.91,6.330,211.2 -14.4,0.91,6.660,213.7,14.5,0.91,6.780,216.6 -15.0,0.91,7.450,206.3,15.0,0.91,7.500,209.3 -15.1,0.91,7.370,206.9,15.1,0.91,7.320,209.2 -15.3,0.91,7.090,212.2,15.4,0.91,7.100,214.3 -15.2,0.91,6.980,212.2,15.4,0.91,6.990,215.3 -15.1,0.91,6.480,222.0,15.3,0.91,6.520,224.7 -15.0,0.91,6.380,225.7,15.2,0.91,6.560,227.1 -15.2,0.91,5.330,238.3,15.5,0.91,5.310,240.1 -15.4,0.91,5.250,248.3,15.6,0.91,5.240,251.7 -15.6,0.91,5.640,261.7,15.8,0.91,5.600,265.1 -14.6,0.91,5.140,240.0,14.9,0.91,4.860,243.2 -14.6,0.91,4.970,247.7,14.9,0.91,4.680,250.0 -14.4,0.91,3.670,257.6,14.5,0.91,3.540,258.9 -14.8,0.91,2.780,260.6,15.0,0.91,2.440,261.6 -14.9,0.91,0.430,345.3,14.9,0.91,0.460,19.1 -14.2,0.91,0.840,127.3,14.3,0.91,0.890,135.0 -13.7,0.91,0.910,103.5,13.7,0.91,1.050,90.7 -14.0,0.91,1.090,177.9,14.2,0.91,1.120,155.4 -15.1,0.91,0.910,114.0,14.9,0.91,0.940,115.7 -14.2,0.92,3.610,52.1,14.0,0.92,3.520,52.5 -14.5,0.92,2.800,57.6,14.3,0.92,2.740,59.5 -15.0,0.92,3.130,62.3,14.8,0.92,3.090,63.8 -15.1,0.91,2.890,68.0,14.9,0.91,2.860,69.0 -14.5,0.91,3.450,74.4,14.4,0.91,3.550,77.2 -14.3,0.92,4.150,86.4,14.3,0.92,4.240,89.6 -14.2,0.92,4.390,97.9,14.3,0.92,4.470,101.1 -13.9,0.92,5.020,103.5,13.9,0.92,5.030,107.4 -14.3,0.91,5.310,144.8,14.4,0.91,5.280,145.5 -14.0,0.91,6.570,159.6,14.0,0.91,6.640,159.1 -14.1,0.91,6.820,164.8,14.1,0.91,6.830,165.1 -13.8,0.91,7.800,176.8,13.9,0.91,7.880,177.2 -13.7,0.91,8.860,186.0,13.9,0.91,9.020,186.2 -12.3,0.91,9.830,190.7,12.7,0.91,10.000,190.2 -12.8,0.91,10.600,190.5,13.2,0.91,10.940,190.8 -12.0,0.91,10.820,195.3,12.4,0.91,11.090,196.5 -11.7,0.91,10.930,209.2,12.2,0.91,11.230,210.6 -10.9,0.91,11.670,211.7,11.4,0.91,12.060,212.1 -10.1,0.91,12.240,213.4,10.6,0.91,12.690,213.8 -9.6,0.91,12.770,213.4,10.1,0.91,13.340,213.7 -9.2,0.91,12.010,211.7,9.6,0.91,12.680,211.9 -9.3,0.91,10.690,207.3,9.6,0.91,11.530,208.0 -10.6,0.91,8.690,201.8,10.5,0.91,9.030,202.7 -11.6,0.91,9.170,198.4,11.4,0.91,9.250,198.9 -12.9,0.91,9.830,199.3,12.8,0.91,9.900,199.6 -13.7,0.91,10.010,193.4,13.5,0.91,10.100,193.6 -14.8,0.91,10.780,192.9,14.6,0.91,10.910,193.0 -15.5,0.91,11.030,192.7,15.3,0.91,11.210,192.8 -15.3,0.91,12.390,188.9,15.2,0.91,12.930,189.2 -15.0,0.91,14.460,190.1,15.0,0.91,15.090,190.5 -14.3,0.91,15.100,193.3,14.3,0.91,15.950,193.9 -13.4,0.91,15.770,196.5,13.4,0.91,16.540,196.9 -12.1,0.91,16.370,194.4,12.0,0.91,17.100,194.8 -10.8,0.91,16.180,194.9,10.7,0.91,16.970,195.6 -10.2,0.90,15.700,195.0,10.1,0.90,16.450,195.8 -10.1,0.90,16.570,196.5,10.1,0.90,17.350,197.1 -9.8,0.90,16.760,196.2,9.8,0.90,17.610,197.0 -9.8,0.90,16.460,195.2,9.8,0.90,17.240,195.8 -10.3,0.90,16.750,196.7,10.2,0.90,17.420,197.1 -10.5,0.90,16.910,201.1,10.4,0.90,17.560,201.4 -10.4,0.90,16.810,199.2,10.3,0.90,17.380,199.4 -10.7,0.90,17.000,198.2,10.6,0.90,17.550,198.5 -11.0,0.90,16.880,197.0,10.9,0.90,17.400,197.3 -11.2,0.90,18.120,197.4,11.1,0.90,18.620,197.7 -11.2,0.90,16.920,197.2,11.1,0.90,17.480,197.3 -11.2,0.90,16.230,198.0,11.1,0.90,16.770,198.3 -11.7,0.90,15.420,199.7,11.5,0.90,15.580,199.9 -13.1,0.90,13.760,199.0,12.9,0.90,13.870,199.3 -14.7,0.90,13.990,198.9,14.5,0.90,14.090,199.2 -15.9,0.90,13.910,196.6,15.7,0.90,14.000,196.8 -16.7,0.90,12.910,193.6,16.6,0.90,13.010,193.9 -16.8,0.90,12.530,188.0,16.6,0.90,12.650,188.3 -16.8,0.90,11.960,188.7,16.7,0.90,12.340,188.9 -16.2,0.90,13.120,190.2,16.2,0.90,13.680,192.2 -16.2,0.90,13.100,188.7,16.3,0.90,13.320,191.6 -15.8,0.90,13.190,194.1,16.0,0.90,13.620,197.2 -14.8,0.90,13.770,193.8,15.0,0.90,14.570,196.5 -14.1,0.90,13.520,194.4,14.3,0.90,14.120,196.6 -13.6,0.90,14.630,200.7,13.9,0.90,15.510,202.7 -13.6,0.90,14.430,197.8,13.8,0.90,15.210,199.3 -13.7,0.90,14.890,199.9,14.0,0.90,15.690,201.1 -13.8,0.90,14.540,201.8,14.1,0.90,15.270,202.5 -13.7,0.90,13.450,206.2,13.9,0.90,14.160,206.9 -13.3,0.90,11.880,206.0,13.5,0.90,12.390,207.2 -12.9,0.90,11.920,217.1,13.1,0.90,12.630,217.9 -13.0,0.90,11.380,217.6,13.1,0.90,11.850,219.5 -12.0,0.90,5.040,238.3,12.3,0.90,5.850,238.8 -12.9,0.90,6.770,282.6,13.2,0.90,7.050,289.5 -9.8,0.90,4.710,331.9,9.8,0.90,4.900,334.0 -9.6,0.90,6.350,8.7,9.5,0.90,6.470,8.8 -6.7,0.90,6.940,31.1,6.5,0.90,6.960,30.3 -5.8,0.90,6.560,33.4,5.6,0.90,6.530,33.3 -5.5,0.90,6.600,43.0,5.4,0.90,6.560,42.9 -5.4,0.90,5.270,52.2,5.3,0.90,5.240,52.5 -5.8,0.90,4.740,48.8,5.6,0.90,4.690,49.0 -5.3,0.90,6.080,49.8,5.1,0.90,6.050,49.8 -4.9,0.90,6.230,52.2,4.7,0.90,6.220,52.2 -4.5,0.90,6.260,49.5,4.3,0.90,6.400,50.3 -4.3,0.90,6.560,46.4,4.1,0.90,6.650,46.7 -4.1,0.90,5.900,31.6,3.9,0.90,5.880,31.9 -3.6,0.90,5.520,25.2,3.4,0.90,5.500,25.8 -3.2,0.90,4.110,39.8,3.0,0.90,4.070,40.0 -3.1,0.90,4.810,70.7,3.7,0.90,4.950,76.9 -2.0,0.90,4.420,45.3,2.2,0.90,4.440,49.4 -2.7,0.90,1.730,249.6,2.9,0.90,2.200,241.4 -4.1,0.90,1.150,137.3,4.9,0.90,1.890,155.5 -8.0,0.90,3.880,165.6,9.4,0.90,4.470,178.3 -7.9,0.90,6.980,165.3,8.9,0.90,7.820,171.2 -10.0,0.89,9.160,191.1,10.7,0.89,9.810,194.0 -7.3,0.89,2.000,183.1,7.4,0.89,2.680,189.0 -7.1,0.89,5.160,202.5,7.3,0.89,5.770,202.3 -7.2,0.89,7.450,211.8,7.4,0.89,8.380,215.0 -8.8,0.89,7.060,212.8,8.9,0.89,7.770,215.8 -9.7,0.89,6.760,242.3,9.6,0.89,6.930,243.5 -10.5,0.89,9.460,267.4,10.3,0.89,9.630,267.5 -10.7,0.89,9.460,238.7,10.5,0.89,9.620,238.8 -11.0,0.89,10.040,241.0,10.8,0.89,10.220,241.0 -11.5,0.89,10.530,235.6,11.2,0.89,10.750,235.7 -11.5,0.89,12.950,238.1,11.3,0.89,13.230,238.2 -11.4,0.89,13.900,240.3,11.2,0.89,14.200,240.4 -11.2,0.89,10.760,238.1,11.0,0.89,11.370,238.5 -10.8,0.89,12.300,231.4,10.8,0.89,13.180,232.7 -10.9,0.90,13.440,232.6,10.9,0.90,14.340,234.0 -10.3,0.90,13.230,232.2,10.5,0.90,14.470,235.3 -9.8,0.90,14.690,244.8,9.9,0.90,16.010,246.9 -9.3,0.90,14.520,253.2,9.4,0.90,15.910,255.7 -8.9,0.90,12.440,260.1,9.0,0.90,13.950,261.5 -0.7,0.90,7.190,9.0,0.6,0.90,7.280,7.6 --0.5,0.90,7.340,12.6,-0.7,0.90,7.370,12.0 --1.6,0.90,7.540,0.8,-1.8,0.90,7.870,0.7 --2.4,0.90,9.630,1.7,-2.6,0.90,9.960,1.9 --2.6,0.90,8.730,3.0,-2.7,0.90,9.100,2.8 --2.5,0.90,8.970,353.1,-2.7,0.90,9.390,353.3 --2.9,0.91,9.930,353.2,-3.1,0.91,10.290,353.2 --3.3,0.91,9.760,351.1,-3.5,0.91,10.050,351.2 --3.5,0.91,9.470,357.4,-3.7,0.91,9.760,357.3 --3.4,0.91,9.960,354.3,-3.6,0.91,10.080,354.4 --2.5,0.91,9.220,355.2,-2.7,0.91,9.310,355.2 --1.4,0.91,8.870,357.3,-1.6,0.91,8.950,357.2 --0.2,0.91,7.690,348.3,-0.4,0.91,7.770,348.2 -1.0,0.91,7.660,353.1,0.7,0.91,7.730,352.7 -1.9,0.91,6.810,344.9,1.7,0.91,6.880,344.7 -2.5,0.91,6.460,342.5,2.3,0.91,6.540,342.3 -2.9,0.91,6.580,343.0,2.7,0.91,6.670,342.7 -2.8,0.91,6.080,350.8,2.6,0.91,6.250,350.1 -2.5,0.91,6.480,1.0,2.3,0.91,6.560,0.5 -2.2,0.91,7.030,12.5,2.0,0.91,7.020,12.1 -1.7,0.91,7.310,24.0,1.6,0.91,7.270,23.2 -1.3,0.92,6.590,32.9,1.2,0.92,6.570,29.6 -0.8,0.92,5.690,33.5,0.8,0.92,5.640,30.8 -0.3,0.92,4.620,46.8,0.3,0.92,4.810,44.2 -0.3,0.92,3.580,42.7,0.4,0.92,3.850,38.4 -0.6,0.92,2.830,38.3,0.9,0.92,3.140,31.5 -1.2,0.92,2.070,49.5,1.5,0.92,2.240,39.9 -1.7,0.92,0.640,81.4,1.9,0.92,0.710,49.6 -2.0,0.92,1.190,180.2,2.1,0.92,0.810,178.2 -2.7,0.92,2.720,198.9,2.8,0.92,2.380,201.3 -3.1,0.92,4.440,211.9,3.5,0.92,4.010,215.7 -2.8,0.92,6.210,206.3,3.3,0.92,5.710,210.3 -2.6,0.92,7.660,207.8,3.2,0.92,7.280,211.1 -3.1,0.92,8.020,207.6,3.6,0.92,7.990,210.6 -2.7,0.92,7.240,203.1,2.9,0.92,7.960,207.0 -4.1,0.92,6.660,210.1,4.0,0.92,6.690,211.2 -5.8,0.92,6.000,208.0,5.6,0.92,6.010,208.6 -6.7,0.92,5.240,221.4,6.5,0.92,5.250,221.8 -7.5,0.92,4.720,224.1,7.3,0.92,4.730,224.8 -7.8,0.92,4.530,206.3,7.6,0.92,4.540,207.0 -7.8,0.92,4.690,199.8,7.7,0.92,4.710,200.4 -8.2,0.92,4.690,209.5,8.1,0.92,4.640,214.4 -8.1,0.92,2.600,234.6,8.1,0.92,2.630,243.3 -8.1,0.92,1.920,316.6,7.9,0.92,2.000,322.4 -6.8,0.92,3.910,359.5,6.6,0.92,4.150,1.7 -4.8,0.92,5.400,44.9,4.9,0.92,5.510,43.9 -4.7,0.92,4.900,33.9,4.9,0.92,5.210,33.9 -3.1,0.92,4.050,41.5,3.4,0.92,4.320,42.6 -3.4,0.92,3.450,40.0,4.2,0.92,3.340,44.8 -4.1,0.92,2.370,54.5,5.0,0.92,2.150,68.8 -5.0,0.92,1.790,108.8,5.7,0.92,2.100,129.1 -5.4,0.92,3.160,155.4,5.7,0.92,3.630,159.9 -5.2,0.92,5.170,176.2,5.5,0.92,5.340,180.9 -6.2,0.92,7.760,196.7,6.6,0.92,7.880,200.1 -6.3,0.92,9.390,205.0,6.6,0.92,9.620,207.0 -6.0,0.92,10.160,206.6,6.4,0.92,10.470,208.0 -5.5,0.92,10.970,201.8,6.0,0.92,11.350,203.0 -4.6,0.92,11.760,201.8,4.9,0.92,12.300,202.3 -4.0,0.92,11.570,197.9,4.1,0.92,12.480,198.9 -5.4,0.92,11.040,199.5,5.3,0.92,11.370,200.0 -6.9,0.92,11.640,199.2,6.8,0.92,11.780,199.6 -7.8,0.92,11.960,194.9,7.6,0.92,12.070,195.1 -9.3,0.91,12.360,194.7,9.1,0.91,12.500,194.9 -10.4,0.91,13.000,198.8,10.2,0.91,13.180,198.9 -10.5,0.91,13.120,198.3,10.4,0.91,13.390,198.4 -10.1,0.91,13.950,197.4,10.0,0.91,14.580,197.6 -9.2,0.91,14.610,199.2,9.2,0.91,15.320,199.8 -8.3,0.91,15.210,199.8,8.4,0.91,15.940,200.5 -7.5,0.91,17.410,202.1,7.6,0.91,18.370,202.7 -6.6,0.91,15.720,199.9,6.7,0.91,16.710,201.0 -5.8,0.91,15.020,198.8,5.8,0.91,16.030,200.6 -5.4,0.91,16.860,202.8,5.4,0.91,17.880,204.2 -5.2,0.91,16.510,205.9,5.4,0.91,17.470,207.3 -5.4,0.91,16.780,206.6,5.6,0.91,17.480,207.6 -5.4,0.91,16.540,205.2,5.6,0.91,17.270,206.2 -5.4,0.91,13.990,208.3,5.6,0.91,14.450,209.3 -5.5,0.91,12.610,214.3,5.7,0.91,13.250,215.5 -3.3,0.91,7.120,302.1,3.4,0.91,6.900,294.0 -1.4,0.91,9.060,337.2,1.8,0.91,8.520,332.8 --0.6,0.91,10.590,347.5,-0.9,0.91,11.700,350.6 --1.1,0.91,11.150,354.1,-1.2,0.91,11.990,356.7 --1.0,0.92,9.650,2.6,-1.2,0.92,9.950,2.9 --0.1,0.92,9.760,6.4,-0.3,0.92,9.840,6.5 -1.1,0.92,9.850,8.3,0.9,0.92,9.930,8.3 -2.4,0.92,10.130,9.3,2.2,0.92,10.220,9.2 -3.3,0.92,9.740,11.4,3.1,0.92,9.830,11.2 -4.0,0.92,9.800,10.0,3.8,0.92,9.890,9.8 -4.6,0.92,9.370,12.7,4.4,0.92,9.450,12.5 -4.8,0.92,9.210,13.4,4.6,0.92,9.280,13.1 -4.6,0.92,8.490,15.9,4.4,0.92,8.670,15.7 -4.1,0.92,9.240,18.2,4.0,0.92,9.610,18.0 -3.8,0.92,9.090,21.3,3.7,0.92,9.470,21.4 -3.4,0.92,10.390,25.4,3.4,0.92,10.840,25.8 -2.8,0.92,9.490,30.9,2.7,0.92,9.840,30.6 -2.4,0.92,9.440,30.8,2.3,0.92,9.740,30.1 -1.9,0.92,9.080,27.5,1.8,0.92,9.320,27.1 -1.7,0.92,8.790,22.0,1.5,0.92,8.940,21.2 -1.3,0.92,8.420,17.9,1.2,0.92,8.600,18.3 -1.0,0.92,7.150,18.9,1.0,0.92,7.320,19.7 -0.8,0.92,6.380,17.9,0.9,0.92,6.550,20.0 -0.9,0.92,5.970,21.9,1.0,0.92,6.160,24.7 -1.0,0.92,5.100,24.3,1.1,0.92,5.340,26.4 -1.0,0.92,4.350,21.3,1.1,0.92,4.600,23.9 -1.2,0.92,3.620,14.8,1.3,0.92,3.890,18.2 -1.6,0.92,3.230,7.6,1.6,0.92,3.420,12.5 -2.3,0.92,2.950,355.5,2.3,0.92,3.030,1.9 -2.8,0.92,1.710,351.8,2.7,0.92,1.860,359.4 -4.2,0.92,1.480,340.7,4.0,0.92,1.440,341.4 -5.5,0.92,1.190,358.6,5.3,0.92,1.150,357.1 -6.4,0.92,1.100,15.0,6.3,0.92,1.050,12.5 -7.0,0.92,0.910,48.7,6.9,0.92,0.860,47.3 -7.6,0.92,0.790,80.9,7.4,0.92,0.750,83.4 -7.9,0.92,0.580,75.6,7.7,0.92,0.540,80.2 -7.6,0.92,1.590,75.8,7.4,0.92,1.550,81.7 -7.2,0.92,2.220,141.6,7.1,0.92,2.230,146.1 -6.9,0.92,4.550,182.8,6.8,0.92,4.450,183.4 -6.8,0.92,4.780,179.6,6.7,0.92,4.830,180.1 -6.7,0.92,5.270,185.6,6.6,0.92,5.300,185.5 -6.6,0.92,4.960,193.8,6.6,0.92,4.960,192.8 -6.6,0.92,5.160,195.7,6.6,0.92,5.150,195.0 -6.6,0.92,5.060,199.8,6.6,0.92,4.920,200.7 -6.5,0.92,5.150,201.5,6.6,0.92,4.940,202.3 -6.6,0.92,4.790,210.1,6.7,0.92,4.500,211.7 -6.8,0.92,4.160,216.1,7.0,0.92,3.850,218.7 -7.0,0.92,3.630,224.3,7.1,0.92,3.240,228.1 -7.2,0.92,2.830,240.8,7.3,0.92,2.540,246.4 -7.4,0.92,2.270,278.1,7.3,0.92,2.100,285.2 -7.2,0.92,1.980,268.0,7.2,0.92,1.550,271.5 -7.3,0.92,0.670,12.2,7.2,0.92,0.770,34.9 -6.5,0.92,0.710,66.8,6.8,0.92,0.520,76.3 -6.9,0.92,0.880,102.0,7.1,0.92,1.120,98.9 -7.6,0.92,0.990,137.8,7.4,0.92,1.030,139.9 -8.5,0.92,0.910,121.6,8.3,0.92,0.930,122.1 -9.2,0.92,1.250,157.6,9.0,0.92,1.290,157.4 -9.6,0.92,2.340,189.7,9.4,0.92,2.340,189.1 -9.9,0.92,2.270,190.3,9.7,0.92,2.270,189.9 -9.8,0.92,2.840,188.5,9.6,0.92,2.810,188.3 -9.4,0.92,4.180,191.4,9.2,0.92,4.150,191.5 -9.1,0.92,4.590,200.2,8.9,0.92,4.550,199.3 -9.0,0.92,5.490,199.0,8.9,0.92,5.460,198.6 -9.0,0.92,5.710,189.8,8.8,0.92,5.570,190.9 -8.0,0.92,7.770,183.2,8.1,0.92,7.370,184.2 -6.2,0.92,9.460,182.6,6.5,0.92,9.290,186.4 -6.5,0.92,8.530,192.0,6.8,0.92,8.340,194.7 -7.0,0.91,7.340,213.1,7.1,0.91,7.230,214.7 -6.8,0.91,8.120,218.4,6.9,0.91,8.300,217.1 -6.1,0.91,8.850,210.5,6.2,0.91,9.190,209.9 -6.5,0.91,9.560,212.5,6.7,0.91,9.860,212.4 -6.7,0.91,9.570,212.4,6.8,0.91,9.690,212.2 -7.0,0.91,8.350,219.3,7.1,0.91,8.420,221.5 -6.7,0.91,7.550,227.3,6.8,0.91,7.660,228.8 -5.7,0.91,7.990,213.5,5.8,0.91,8.190,215.5 -5.5,0.91,8.090,215.5,5.6,0.91,8.140,218.4 -5.2,0.91,7.760,208.7,5.4,0.91,8.080,211.6 -6.1,0.91,7.720,209.5,6.1,0.91,8.030,211.4 -6.7,0.91,8.940,214.4,6.5,0.91,9.100,214.9 -7.3,0.91,8.810,212.8,7.1,0.91,8.920,213.1 -9.0,0.91,9.290,210.6,8.8,0.91,9.410,210.8 -10.0,0.91,9.470,209.0,9.8,0.91,9.580,209.3 -10.5,0.91,9.170,203.2,10.3,0.91,9.270,203.7 -11.1,0.91,8.860,203.7,10.9,0.91,8.970,204.0 -10.8,0.91,8.830,197.5,10.7,0.91,9.110,197.9 -10.5,0.91,11.000,195.1,10.4,0.91,11.310,195.7 -10.1,0.90,12.440,196.2,10.1,0.90,13.010,196.9 -9.5,0.90,13.460,199.7,9.6,0.90,14.170,201.4 -8.7,0.90,14.290,205.5,8.8,0.90,15.130,207.3 -7.8,0.90,13.620,207.6,7.9,0.90,14.430,209.3 -7.3,0.90,13.890,211.9,7.4,0.90,14.800,213.4 -6.8,0.90,13.420,212.9,6.9,0.90,14.190,214.5 -6.1,0.90,12.390,210.7,6.0,0.90,12.800,211.3 -5.9,0.90,12.260,214.3,5.8,0.90,12.590,214.8 -6.0,0.90,11.130,215.5,5.9,0.90,11.420,216.1 -5.8,0.90,10.480,222.5,5.7,0.90,10.710,222.7 -5.7,0.90,7.830,225.8,5.6,0.90,7.940,227.5 -5.1,0.91,7.080,243.9,4.9,0.91,7.230,244.0 -4.7,0.91,6.890,314.7,4.5,0.91,7.250,315.3 -0.9,0.91,8.300,341.2,0.7,0.91,8.420,341.1 --0.3,0.91,12.410,6.1,-0.5,0.91,12.640,6.6 --1.3,0.91,12.930,11.4,-1.5,0.91,13.140,11.7 --2.9,0.91,12.430,6.5,-3.1,0.91,12.500,6.7 --3.7,0.91,11.650,17.5,-3.9,0.91,11.770,17.4 --3.4,0.91,12.100,15.0,-3.6,0.91,12.230,14.9 --2.8,0.91,10.510,9.9,-3.0,0.91,10.610,9.9 --2.5,0.91,10.210,13.8,-2.7,0.91,10.310,13.6 --2.2,0.91,10.020,14.9,-2.4,0.91,10.130,14.7 --1.8,0.91,9.810,11.9,-2.0,0.91,9.980,11.8 --1.9,0.91,9.340,17.9,-2.1,0.91,9.610,17.8 --2.1,0.91,8.190,21.4,-2.3,0.91,8.560,21.5 --2.3,0.91,8.780,19.7,-2.5,0.91,9.280,20.8 --2.6,0.91,9.220,16.9,-2.7,0.91,9.520,16.3 --3.1,0.91,9.030,12.7,-3.3,0.91,9.370,13.5 --3.6,0.91,8.780,8.8,-3.7,0.91,9.000,8.6 --4.0,0.91,7.430,11.3,-4.2,0.91,7.830,11.9 --4.2,0.91,6.670,9.3,-4.3,0.91,7.030,9.0 --4.4,0.91,5.820,358.8,-4.6,0.91,6.160,358.4 --4.7,0.91,5.900,351.4,-4.8,0.91,6.140,352.2 --4.8,0.91,5.330,341.5,-4.9,0.91,5.610,341.3 --4.9,0.91,4.890,335.3,-5.0,0.91,5.270,333.7 --4.8,0.91,4.870,317.0,-4.8,0.91,5.230,316.3 --4.3,0.91,5.480,304.7,-4.2,0.91,6.000,305.8 --3.4,0.91,5.600,300.3,-3.3,0.91,5.920,302.5 --2.3,0.91,5.480,295.3,-2.1,0.91,5.970,297.6 --0.8,0.91,3.570,289.1,-1.0,0.91,3.750,289.7 -1.4,0.91,3.110,285.4,1.3,0.91,3.170,285.2 -3.5,0.91,2.760,277.2,3.3,0.91,2.800,276.9 -5.2,0.91,2.530,285.6,5.0,0.91,2.560,284.9 -6.4,0.91,1.800,288.1,6.3,0.91,1.810,286.6 -6.9,0.91,2.070,313.3,6.8,0.91,2.040,311.6 -6.8,0.91,2.520,330.9,6.7,0.91,2.490,330.1 -6.5,0.91,2.590,13.9,6.3,0.91,2.600,12.9 -5.9,0.91,2.980,39.7,5.8,0.91,3.140,34.5 -5.4,0.92,3.390,47.2,5.5,0.92,3.620,43.6 -4.9,0.92,4.010,46.5,5.0,0.92,4.320,45.9 -4.3,0.92,3.810,57.4,4.4,0.92,4.180,57.4 -4.3,0.92,3.770,58.0,4.4,0.92,4.120,58.3 -4.1,0.92,3.360,61.5,4.3,0.92,3.680,60.6 -4.2,0.92,2.830,59.6,4.3,0.92,3.190,58.5 -4.0,0.92,2.550,47.5,4.1,0.92,2.920,48.1 -4.0,0.92,2.480,41.2,4.2,0.92,2.820,43.1 -4.2,0.92,2.140,53.2,4.4,0.92,2.430,53.7 -4.2,0.92,1.800,64.1,4.4,0.92,2.090,64.2 -4.6,0.92,1.320,84.9,4.8,0.92,1.510,85.8 -4.7,0.92,1.580,129.3,4.9,0.92,1.720,128.7 -4.8,0.92,2.990,167.6,4.9,0.92,2.880,168.7 -4.6,0.92,5.450,183.6,4.8,0.92,5.150,184.4 -4.9,0.92,6.790,192.2,5.1,0.92,6.720,193.9 -4.5,0.92,6.920,199.5,4.8,0.92,7.540,200.8 -5.5,0.92,6.370,202.7,5.4,0.92,6.430,203.3 -6.5,0.92,7.320,204.1,6.3,0.92,7.350,204.4 -7.3,0.91,7.820,204.3,7.2,0.91,7.860,204.7 -7.7,0.91,8.090,203.5,7.6,0.91,8.130,203.9 -8.3,0.91,8.510,199.4,8.1,0.91,8.580,199.6 -9.0,0.91,9.530,198.1,8.8,0.91,9.650,198.5 -9.0,0.91,10.160,192.9,8.9,0.91,10.540,193.5 -13.3,0.91,7.920,275.8,13.2,0.91,8.330,276.2 -12.4,0.91,12.130,278.5,12.4,0.91,12.930,278.3 -11.8,0.91,12.380,279.4,11.9,0.91,12.840,279.4 -11.0,0.91,10.520,287.1,11.1,0.91,11.650,286.5 -10.0,0.91,7.290,290.2,10.1,0.91,8.380,288.7 -10.4,0.91,9.400,289.7,10.6,0.91,10.430,290.0 diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index c2e55db7c..0a11d0efe 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -245,6 +245,23 @@ def test_co2h_methanol_example(subtests): assert pytest.approx(model.prob.get_val("methanol.LCOM"), rel=1e-6) == 1.38341179 +def test_doc_methanol_example(subtests): + # Change the current working directory to the CO2 Hydrogenation example's directory + os.chdir(EXAMPLE_DIR / "03_methanol" / "co2_hydrogenation_doc") + + # Create a H2Integrate model + model = H2IntegrateModel(Path.cwd() / "03_co2h_methanol.yaml") + + # Run the model + model.run() + + model.post_process() + + # Check levelized cost of methanol (LCOM) + with subtests.test("Check CO2 Hydrogenation LCOM"): + assert pytest.approx(model.prob.get_val("financials_group_1.LCOM"), rel=1e-6) == 6.79771486 + + def test_wind_h2_opt_example(subtests): # Change the current working directory to the example's directory os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") From cd09412482555662516dd8b6228d99a352563436 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Fri, 5 Sep 2025 13:57:23 -0600 Subject: [PATCH 14/79] Fix test --- .../co2_hydrogenation/tech_inputs/hopp_config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml index 3f74a5cc0..7aed60354 100644 --- a/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml +++ b/examples/03_methanol/co2_hydrogenation/tech_inputs/hopp_config.yaml @@ -16,8 +16,8 @@ site: #!include flatirons_site.yaml - [0.0, 25000] - [25000, 25000] - [25000, 0.0] - solar_resource_file: "" - wind_resource_file: "" + solar_resource_file: "tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv" + wind_resource_file: "tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw" wave_resource_file: "" grid_resource_file: "" hub_height: 115.0 From a020f4d3e8838a884029d579671eda421cdf0e37 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Fri, 12 Sep 2025 09:14:47 -0600 Subject: [PATCH 15/79] Adding line to skip mcm test if not installed --- tests/h2integrate/test_all_examples.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index 0a11d0efe..95ba299ce 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -245,6 +245,7 @@ def test_co2h_methanol_example(subtests): assert pytest.approx(model.prob.get_val("methanol.LCOM"), rel=1e-6) == 1.38341179 +@unittest.skipUnless(importlib.util.find_spec("mcm") is not None, "mcm is not installed") def test_doc_methanol_example(subtests): # Change the current working directory to the CO2 Hydrogenation example's directory os.chdir(EXAMPLE_DIR / "03_methanol" / "co2_hydrogenation_doc") From 917d3de1346b33ef419140e6339be2fd3eb70b4a Mon Sep 17 00:00:00 2001 From: kbrunik Date: Tue, 23 Sep 2025 07:12:29 -0500 Subject: [PATCH 16/79] update comments --- .../co2_hydrogenation_doc/03_co2h_methanol.yaml | 2 +- .../co2_hydrogenation_doc/driver_config.yaml | 2 +- .../co2_hydrogenation_doc/plant_config_co2h.yaml | 10 ++++++---- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml b/examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml index 0420632e8..434e0f4c7 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/03_co2h_methanol.yaml @@ -1,6 +1,6 @@ name: "H2Integrate_config" -system_summary: "This reference hybrid plant contains a simple SMR methanol plant" +system_summary: "This reference hybrid plant contains a methanol plant that uses CO2 from DOC and H2 from electrolysis" driver_config: "driver_config.yaml" technology_config: "tech_config_co2h.yaml" diff --git a/examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml index 0533f88a4..d96670aa2 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/driver_config.yaml @@ -1,5 +1,5 @@ name: "driver_config" -description: "This analysis runs a hybrid plant to match the first example in H2I" +description: "This analysis runs a hybrid plant to produce methanol from CO2 hydrogenation using H2 from electrolysis and CO2 from direct ocean capture." general: folder_output: outputs diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index 52eecd50b..e477783ce 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -1,9 +1,9 @@ name: "plant_config" -description: "This plant is located west of the Wolf Hollow II NGCC power plant in Texas" +description: "This plant is located of the coast of Galveston in Texas" site: - latitude: 28.95 - longitude: -95.12 + latitude: 29.2 + longitude: -94.6 # array of polygons defining boundaries with x/y coords boundaries: [ @@ -18,7 +18,9 @@ site: ] resources: - wind_resource: + # probably want to pre-load wind and solar data for this site + # but also want to figure out why the API call isn't working + wind_resource: # API call isn't working right now (ask Elenya) resource_model: "wind_toolkit_v2_api" resource_parameters: resource_year: 2012 From a0a67ab58dba6f0592eeceb4489b9a648049ff21 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Wed, 24 Sep 2025 13:25:23 -0600 Subject: [PATCH 17/79] Splitting electricity --- .../plant_config_co2h.yaml | 13 ++-- .../plot_co2h_methanol.py | 14 ++-- .../tech_config_co2h.yaml | 78 ++++++++++--------- .../tech_inputs/hopp_config.yaml | 6 +- 4 files changed, 58 insertions(+), 53 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index e477783ce..173badf86 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -30,16 +30,19 @@ site: # with the reverse definition. # this will naturally grow as we mature the interconnected tech technology_interconnections: [ - ["hopp", "electrolyzer", "electricity", "cable"], + ["hopp", "electricity_splitter", "electricity", "cable"], + ["electricity_splitter", "electrolyzer", "electricity", "cable"], + ["electricity_splitter", "doc", "electricity", "cable"], + # ["hopp", "electrolyzer", "electricity", "cable"], ["electrolyzer", "h2_storage", "hydrogen", "pipe"], ["h2_storage", "methanol", "hydrogen", "pipe"], - ["wind","doc","electricity","cable"], + # ["wind","doc","electricity","cable"], ["doc","methanol","co2","pipe"], ] -resource_to_tech_connections: [ - ["wind_resource", "wind", "wind_resource_data"] -] +# resource_to_tech_connections: [ +# ["wind_resource", "wind", "wind_resource_data"] +# ] plant: plant_life: 30 diff --git a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py index ce6cf7082..f5f18824f 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py @@ -29,13 +29,13 @@ def plot_methanol(model): plt.yscale("log") plt.legend() - # Wind Electricity for DOC - plt.subplot(3, 2, 2) - plt.title("Wind for DOC") - wind_elec_out = model.plant.wind.wind_plant_performance.get_val("electricity_out") - plt.plot(times, wind_elec_out, label="electricity_out [kW]") - plt.yscale("log") - plt.legend() + # # Wind Electricity for DOC + # plt.subplot(3, 2, 2) + # plt.title("Wind for DOC") + # wind_elec_out = model.plant.wind.wind_plant_performance.get_val("electricity_out") + # plt.plot(times, wind_elec_out, label="electricity_out [kW]") + # plt.yscale("log") + # plt.legend() # Electricity to CO2 using DOC plt.subplot(3, 2, 4) diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index a41b19e26..363e189df 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -10,10 +10,16 @@ technologies: model: "hopp" financial_model: group: "1" - electrolyzer_rating: 156. # MW + electrolyzer_rating: 300. # MW model_inputs: cost_parameters: cost_year: 2019 + electricity_splitter: + performance_model: + model: "splitter_performance" + config: + split_mode: "fraction" + fraction_to_priority_tech: 0.9 electrolyzer: performance_model: model: "eco_pem_electrolyzer_performance" @@ -31,7 +37,7 @@ technologies: size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) hydrogen_dmd: n_clusters: 8 - cluster_rating_MW: 39 + cluster_rating_MW: 37.5 pem_control_type: 'basic' eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol uptime_hours_until_eol: 80000 #number of 'on' hours until electrolyzer reaches eol @@ -52,7 +58,7 @@ technologies: group: default model_inputs: performance_parameters: - rating: 312. + rating: 300. size_capacity_from_demand: flag: True # If True, then storage is sized to provide steady-state storage capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. @@ -70,39 +76,39 @@ technologies: charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal demand_profile: 2226.0274 # Example: 10 time steps with 5000 kg/time step demand. Scalar indicates constant demand, array-like indicates dynamic demand - wind: - performance_model: - model: "wind_plant_performance" - cost_model: - model: "wind_plant_cost" - financial_model: - group: "1" - model_inputs: - shared_parameters: - num_turbines: 66 - turbine_rating_kw: 15000 - performance_parameters: - rotor_diameter: 196. - hub_height: 130. - layout_mode: "basicgrid" - model_name: "pysam" - model_input_file: null - layout_params: - row_D_spacing: 10. - turbine_D_spacing: 10. - rating_range_kw: [1000, 5000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: "default" - name: "UtilityScaleWindPlant" - turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use - turbine_group: "onshore" - override_wind_resource_height: True - adjust_air_density_for_elevation: True - cost_parameters: - cost_per_kw: 1500.0 - cost_year: 2019 + # wind: + # performance_model: + # model: "wind_plant_performance" + # cost_model: + # model: "wind_plant_cost" + # financial_model: + # group: "1" + # model_inputs: + # shared_parameters: + # num_turbines: 66 + # turbine_rating_kw: 15000 + # performance_parameters: + # rotor_diameter: 196. + # hub_height: 130. + # layout_mode: "basicgrid" + # model_name: "pysam" + # model_input_file: null + # layout_params: + # row_D_spacing: 10. + # turbine_D_spacing: 10. + # rating_range_kw: [1000, 5000] + # floris_config: null + # operational_losses: 10.0 + # timestep: [1, 60] + # fin_model: "default" + # name: "UtilityScaleWindPlant" + # turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use + # turbine_group: "onshore" + # override_wind_resource_height: True + # adjust_air_density_for_elevation: True + # cost_parameters: + # cost_per_kw: 1500.0 + # cost_year: 2019 doc: performance_model: model: "direct_ocean_capture_performance" diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml index 086d7283a..c1f17e89e 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml @@ -35,12 +35,8 @@ technologies: timestep: [0, 8760] # floris_config: !include floris_input_lbw_6MW.yaml fin_model: !include default_fin_config.yaml - pv: - system_capacity_kw: 24000 - dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - fin_model: !include default_fin_config.yaml grid: - interconnect_kw: 312000 # Set higher than rated generation capacity + interconnect_kw: 300000 # Set higher than rated generation capacity fin_model: !include default_fin_config.yaml config: From e156ace94a4386ff20302b9477fa11cbe5c9e28d Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Wed, 24 Sep 2025 18:00:45 -0600 Subject: [PATCH 18/79] CO2 storage working, need to check timeseries --- .../plant_config_co2h.yaml | 3 +- .../plot_co2h_methanol.py | 68 +- .../tech_config_co2h.yaml | 91 +- h2integrate/storage/co2/tank_baseclass.py | 74 + h2integrate/transporters/pipe.py | 2 + .../29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv | 8762 +++++++++++++++++ 6 files changed, 8956 insertions(+), 44 deletions(-) create mode 100644 h2integrate/storage/co2/tank_baseclass.py create mode 100644 resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index 173badf86..242b6a537 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -37,7 +37,8 @@ technology_interconnections: [ ["electrolyzer", "h2_storage", "hydrogen", "pipe"], ["h2_storage", "methanol", "hydrogen", "pipe"], # ["wind","doc","electricity","cable"], - ["doc","methanol","co2","pipe"], + ["doc", "co2_storage", "co2", "pipe"], + ["co2_storage","methanol","co2","pipe"], ] # resource_to_tech_connections: [ diff --git a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py index f5f18824f..19b9f95fc 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py @@ -7,26 +7,28 @@ def plot_methanol(model): times = pd.date_range("2013", periods=8760, freq="1h") - # HOPP Electricity for Electrolyzer - plt.subplot(3, 2, 1) - plt.title("HOPP for Electrolyzer") - hopp_elec_out = model.plant.hopp.hopp.get_val("electricity_out") - plt.plot(times, hopp_elec_out, label="electricity_out [kW]") - plt.yscale("log") - plt.legend() + # # HOPP Electricity for Electrolyzer + # plt.subplot(3, 2, 1) + # plt.title("HOPP for Electrolyzer") + # hopp_elec_out = model.plant.hopp.hopp.get_val("electricity_out") + # plt.plot(times, hopp_elec_out, label="electricity_out [kW]") + # # plt.yscale("log") + # plt.legend() # Electricity to H2 using Electrolyzer - plt.subplot(3, 2, 3) + plt.subplot(3, 2, 1) plt.title("Electrolyzer") - elyzer_elec_in = model.plant.electrolyzer.eco_pem_electrolyzer_performance.get_val( - "electricity_in" + elyzer_elec_in = ( + model.plant.electrolyzer.eco_pem_electrolyzer_performance.get_val("electricity_in") / 1000 ) - elyzer_h2_out = model.plant.electrolyzer.eco_pem_electrolyzer_performance.get_val( - "hydrogen_out" + elyzer_h2_out = ( + model.plant.electrolyzer.eco_pem_electrolyzer_performance.get_val("hydrogen_out") + / 1000 + * 24 ) - plt.plot(times, elyzer_elec_in, label="electricity_in [kW]") - plt.plot(times, elyzer_h2_out, label="hydrogen_out [kg/hr]", color=[1, 0.5, 0]) - plt.yscale("log") + plt.plot(times, elyzer_elec_in, label="electricity_in [MW]") + plt.plot(times, elyzer_h2_out, label="hydrogen_out [t/d]", color=[1, 0.5, 0]) + # plt.yscale("log") plt.legend() # # Wind Electricity for DOC @@ -38,35 +40,55 @@ def plot_methanol(model): # plt.legend() # Electricity to CO2 using DOC - plt.subplot(3, 2, 4) + plt.subplot(3, 2, 2) plt.title("DOC") doc_elec_in = model.plant.doc.direct_ocean_capture_performance.get_val("electricity_in") / 1000 doc_co2_out = model.plant.doc.direct_ocean_capture_performance.get_val("co2_out") plt.plot(times, doc_elec_in, label="electricity_in [kW]") plt.plot(times, doc_co2_out, label="co2_out [kg/hr]", color=[0.5, 0.25, 0]) - plt.yscale("log") + # plt.yscale("log") plt.legend() # H2 and Storage - plt.subplot(3, 2, 5) + plt.subplot(3, 2, 3) plt.title("H2 Storage") - h2_storage_in = model.plant.h2_storage.h2_storage.get_val("hydrogen_in") + h2_storage_in = model.plant.electrolyzer_to_h2_storage_pipe.get_val("hydrogen_in") * 3600 h2_storage_out = model.plant.h2_storage_to_methanol_pipe.get_val("hydrogen_out") * 3600 plt.plot(times, h2_storage_in, label="hydrogen_in [kg/hr]", color=[1, 0.5, 0]) plt.plot(times, h2_storage_out, label="hydrogen_out [kg/hr]", color=[0, 0.5, 0]) - plt.yscale("log") + # plt.yscale("log") + plt.legend() + + # H2 and Storage + plt.subplot(3, 2, 4) + plt.title("CO2 Storage") + model.plant.doc_to_co2_storage_pipe.get_val("co2_in") * 3600 + model.plant.co2_storage_to_methanol_pipe.get_val("co2_out") * 3600 + plt.plot(times, h2_storage_in, label="co2_in [kg/hr]", color=[0.5, 0.25, 0]) + plt.plot(times, h2_storage_out, label="co2_out [kg/hr]", color=[0, 0.25, 0.5]) + # plt.yscale("log") plt.legend() # H2 and CO2 to Methanol - plt.subplot(3, 2, 6) + plt.subplot(3, 2, 5) plt.title("Methanol") meoh_h2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("hydrogen_in") meoh_co2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("co2_in") meoh_meoh_out = model.plant.methanol.co2h_methanol_plant_performance.get_val("methanol_out") plt.plot(times, meoh_h2_in, label="hydrogen_in [kg/hr]", color=[0, 0.5, 0]) - plt.plot(times, meoh_co2_in, label="co2_in [kg/hr]", color=[0.5, 0.25, 0]) + plt.plot(times, meoh_co2_in, label="co2_in [kg/hr]", color=[0, 0.25, 0.5]) plt.plot(times, meoh_meoh_out, label="methanol_out [kg/hr]", color=[1, 0, 0.5]) - plt.yscale("log") + # plt.yscale("log") + plt.legend() + + # H2 and CO2 storage SOC + plt.subplot(3, 2, 6) + plt.title("Storage SOC") + h2_soc = model.plant.h2_storage.get_val("hydrogen_soc") * 100 + co2_soc = model.plant.co2_storage.get_val("co2_soc") * 100 + plt.plot(times, h2_soc, label="hydrogen_soc [%]", color=[1, 0.5, 0]) + plt.plot(times, co2_soc, label="co2_soc [%]", color=[0.5, 0.25, 0]) + # plt.yscale("log") plt.legend() fig = plt.gcf() diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 363e189df..7e2c2e94d 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -19,7 +19,7 @@ technologies: model: "splitter_performance" config: split_mode: "fraction" - fraction_to_priority_tech: 0.9 + fraction_to_priority_tech: 0.8 electrolyzer: performance_model: model: "eco_pem_electrolyzer_performance" @@ -49,33 +49,58 @@ technologies: replacement_cost_percent: 0.15 # percent of capex - H2A default case h2_storage: performance_model: - model: "h2_storage" + model: "simple_generic_storage" + cost_model: + model: "atb_battery_cost" control_strategy: model: "demand_open_loop_controller" - cost_model: - model: "h2_storage" - financial_model: - group: default model_inputs: - performance_parameters: - rating: 300. - size_capacity_from_demand: - flag: True # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 0 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - control_parameters: + shared_parameters: resource_name: "hydrogen" resource_rate_units: "kg/h" - max_capacity: 300000.0 # kg + max_charge_rate: 5000.0 # kg/time step + max_capacity: 19500.0 # kg + control_parameters: max_charge_percent: 1.0 # percent as decimal min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal - max_charge_rate: 10000.0 # kg/time step - max_discharge_rate: 10000.0 # kg/time step + max_discharge_rate: 5000.0 # kg/time step charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal - demand_profile: 2226.0274 # Example: 10 time steps with 5000 kg/time step demand. Scalar indicates constant demand, array-like indicates dynamic demand + demand_profile: 195 + cost_parameters: + cost_year: 2022 + energy_capex: .000001 # $/kg + power_capex: .000001 # $/kg/h + opex_fraction: .000001 # percent of capex + # performance_model: + # model: "h2_storage" + # control_strategy: + # model: "demand_open_loop_controller" + # cost_model: + # model: "h2_storage" + # financial_model: + # group: default + # model_inputs: + # performance_parameters: + # rating: 300. + # size_capacity_from_demand: + # flag: True # If True, then storage is sized to provide steady-state storage + # capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. + # type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] + # days: 0 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) + # control_parameters: + # resource_name: "hydrogen" + # resource_rate_units: "kg/h" + # max_capacity: 1000000.0 # kg + # max_charge_percent: 1.0 # percent as decimal + # min_charge_percent: 0.1 # percent as decimal + # init_charge_percent: 0.25 # percent as decimal + # max_charge_rate: 10000.0 # kg/time step + # max_discharge_rate: 10000.0 # kg/time step + # charge_efficiency: 1.0 # percent as decimal + # discharge_efficiency: 1.0 # percent as decimal + # demand_profile: 195 # Example: 10 time steps with 5000 kg/time step demand. Scalar indicates constant demand, array-like indicates dynamic demand # wind: # performance_model: # model: "wind_plant_performance" @@ -137,6 +162,32 @@ technologies: pH_i: 8.1 # initial pH cost_parameters: infrastructure_type: "desal" + co2_storage: + performance_model: + model: "simple_generic_storage" + cost_model: + model: "atb_battery_cost" + control_strategy: + model: "demand_open_loop_controller" + model_inputs: + shared_parameters: + resource_name: "co2" + resource_rate_units: "kg/h" + max_charge_rate: 5000.0 # kg/time step + max_capacity: 142300.0 # kg + control_parameters: + max_charge_percent: 1.0 # percent as decimal + min_charge_percent: 0.1 # percent as decimal + init_charge_percent: 0.25 # percent as decimal + max_discharge_rate: 5000.0 # kg/time step + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal + demand_profile: 1423 + cost_parameters: + cost_year: 2022 + energy_capex: .000001 # $/kg + power_capex: .000001 # $/kg/h + opex_fraction: .000001 # percent of capex methanol: performance_model: model: "co2h_methanol_plant_performance" @@ -146,10 +197,10 @@ technologies: group: "1" model_inputs: shared_parameters: - plant_capacity_kgpy: 100000000 + plant_capacity_kgpy: 8760000 plant_capacity_flow: "methanol" performance_parameters: - capacity_factor: 0.9 + capacity_factor: 1 co2e_emit_ratio: 0.020296 h2o_consume_ratio: 0.988 h2_consume_ratio: 0.195 diff --git a/h2integrate/storage/co2/tank_baseclass.py b/h2integrate/storage/co2/tank_baseclass.py new file mode 100644 index 000000000..b081ac062 --- /dev/null +++ b/h2integrate/storage/co2/tank_baseclass.py @@ -0,0 +1,74 @@ +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import CostModelBaseConfig +from h2integrate.core.model_baseclasses import CostModelBaseClass + + +class CO2TankPerformanceModel(om.ExplicitComponent): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + config_details = self.options["tech_config"]["details"] + self.add_input( + "co2_in", + val=0.0, + shape_by_conn=True, + copy_shape="co2_out", + units="kg/h", + desc="CO2 input over a year", + ) + self.add_input("initial_co2", val=0.0, units="kg", desc="Initial amount of co2 in the tank") + self.add_input( + "total_capacity", + val=float(config_details["total_capacity"]), + units="kg", + desc="Total storage capacity", + ) + self.add_input( + "co2_out", + val=0.0, + shape_by_conn=True, + copy_shape="co2_in", + units="kg/h", + desc="CO2 output over a year", + ) + self.add_output( + "stored_co2", + val=0.0, + shape_by_conn=True, + copy_shape="co2_in", + units="kg", + desc="Amount of co2 stored", + ) + + def compute(self, inputs, outputs): + initial_co2 = inputs["initial_co2"] + co2_in = inputs["co2_in"] + co2_out = inputs["co2_out"] + + outputs["stored_co2"] = initial_co2 + co2_in - co2_out + + +@define +class TankCostModelConfig(CostModelBaseConfig): + total_capacity: float = field() + + +class CO2TankCostModel(CostModelBaseClass): + def setup(self): + self.config = TankCostModelConfig.from_dict(self.options["tech_config"]["details"]) + super().setup() + self.add_input( + "total_capacity", + val=self.config.total_capacity, + units="kg", + desc="Total storage capacity", + ) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + outputs["CapEx"] = inputs["total_capacity"] * 0.1 + outputs["OpEx"] = inputs["total_capacity"] * 0.01 diff --git a/h2integrate/transporters/pipe.py b/h2integrate/transporters/pipe.py index 73e61b527..f0aeb5165 100644 --- a/h2integrate/transporters/pipe.py +++ b/h2integrate/transporters/pipe.py @@ -19,6 +19,8 @@ def setup(self): if transport_item == "natural_gas": units = "MMBtu" + elif transport_item == "co2": + units = "kg/h" else: units = "kg/s" diff --git a/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv b/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv new file mode 100644 index 000000000..d4a3ab279 --- /dev/null +++ b/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv @@ -0,0 +1,8762 @@ +SiteID,1379078,Site Timezone,-6,Data Timezone,0,Longitude,-94.593170166,Latitude,29.2054595947 +Year,Month,Day,Hour,Minute,surface air pressure (Pa),air pressure at 100m (Pa),air pressure at 200m (Pa),relative humidity at 2m (%),surface precipitation rate (mm/h),wind speed at 10m (m/s),wind speed at 40m (m/s),wind speed at 60m (m/s),wind speed at 80m (m/s),wind speed at 100m (m/s),wind speed at 120m (m/s),wind speed at 140m (m/s),wind speed at 160m (m/s),wind speed at 200m (m/s),wind direction at 10m (deg),wind direction at 40m (deg),wind direction at 60m (deg),wind direction at 80m (deg),wind direction at 100m (deg),wind direction at 120m (deg),wind direction at 140m (deg),wind direction at 160m (deg),wind direction at 200m (deg),air temperature at 10m (C),air temperature at 40m (C),air temperature at 60m (C),air temperature at 80m (C),air temperature at 100m (C),air temperature at 120m (C),air temperature at 140m (C),air temperature at 160m (C),air temperature at 200m (C),density - DEPRECATED,power - DEPRECATED +2012,1,1,0,30,101850,100660,99520,89.26,0,5.3100000000000005,7.38,8.3,9.21,10.06,10.870000000000001,11.53,12.1,12.77,188.64000000000001,188.75,189.61,191.37,193.81,196.68,200.71,204.78,212.06,19.45,19.82,19.91,19.98,19.98,19.95,19.88,19.81,20.27,N/A,N/A +2012,1,1,1,30,101870,100680,99540,89.31,0,5.8,7.99,9,9.99,10.86,11.63,12.17,12.61,13.01,184.22,185.72,186.99,188.65,190.47,192.37,194.85,197.33,202.28,19.36,19.7,19.77,19.78,19.76,19.71,19.72,19.740000000000002,19.89,N/A,N/A +2012,1,1,2,30,101910,100720,99570,90.13,0,5.19,7.41,8.45,9.5,10.39,11.15,11.82,12.41,12.9,186.20000000000002,187.37,188.1,188.73,189.94,191.51,193.34,195.12,199.28,19.23,19.580000000000002,19.650000000000002,19.650000000000002,19.62,19.580000000000002,19.44,19.29,19.88,N/A,N/A +2012,1,1,3,30,101920,100730,99590,89.62,0,5.6000000000000005,7.97,9.06,10.14,11.040000000000001,11.8,12.16,12.38,12.34,180.64000000000001,183.39000000000001,185.51,188.14000000000001,190.98,193.93,196.37,198.49,201.35,19.330000000000002,19.69,19.73,19.66,19.51,19.330000000000002,19.61,19.97,20.94,N/A,N/A +2012,1,1,4,30,101950,100760,99620,90.15,0.4,5.59,7.930000000000001,9.05,10.25,11.28,12.17,12.63,12.94,12.97,189.75,191.63,193.12,195.13,196.9,198.5,200.21,201.81,203.76,19.19,19.44,19.46,19.400000000000002,19.35,19.3,19.77,20.31,20.87,N/A,N/A +2012,1,1,5,30,101990,100800,99650,91.59,0.4,5.7,7.55,8.45,9.49,10.53,11.57,12.16,12.59,12.790000000000001,180.34,183.72,186.59,190.48,193.39000000000001,195.69,198.11,200.34,202.75,18.79,18.95,18.92,18.8,19.1,19.62,20.2,20.72,20.84,N/A,N/A +2012,1,1,6,30,102040,100850,99700,92.71000000000001,0.7000000000000001,4.64,6.62,7.68,8.99,10.25,11.5,12.040000000000001,12.370000000000001,12.44,189.88,191.34,192.58,194.31,196.61,199.33,202.24,204.92000000000002,207.91,18.92,19.13,19.03,18.67,19.080000000000002,19.95,20.53,20.98,21.05,N/A,N/A +2012,1,1,7,30,102110,100920,99770,92.46000000000001,0,4.32,6.22,7.15,8.21,9.3,10.42,10.97,11.32,11.57,194.88,195.43,196.03,197.04,198.74,200.95000000000002,204.18,207.4,211.05,19.01,19.25,19.23,19.06,19.27,19.7,20.240000000000002,20.740000000000002,21.03,N/A,N/A +2012,1,1,8,30,102170,100980,99830,93.10000000000001,0.4,3.34,5.18,5.94,6.71,7.57,8.53,9.5,10.450000000000001,11,211.8,209.43,208.4,208.71,209.26,209.96,212.24,214.86,218.57,19.080000000000002,19.41,19.45,19.41,19.3,19.16,19.23,19.35,20,N/A,N/A +2012,1,1,9,30,102240,101050,99900,93.13,0.4,2.59,4.45,5.41,6.46,7.32,8.02,8.26,8.34,8.45,233.77,232.8,231.59,229.9,229.86,231.21,231.70000000000002,231.88,233.37,19.19,19.73,19.84,19.8,19.75,19.71,19.63,19.56,19.41,N/A,N/A +2012,1,1,10,30,102310,101120,99970,90.32000000000001,12.8,4.63,6.49,7.0200000000000005,7.11,7.24,7.4,7.5600000000000005,7.72,8.03,255.67000000000002,256.07,256.03000000000003,255.6,255.86,256.56,256.77,256.85,256.76,19.62,20.06,20.14,20.14,20.16,20.19,20.14,20.080000000000002,19.91,N/A,N/A +2012,1,1,11,30,102380,101190,100040,92.89,0,4.42,6.23,6.96,7.390000000000001,7.61,7.69,7.79,7.9,8.06,275.26,272.61,272.82,277.35,280.37,282.41,283.61,284.52,284.63,18.900000000000002,19.34,19.55,19.73,19.8,19.8,19.830000000000002,19.86,19.77,N/A,N/A +2012,1,1,12,30,102450,101260,100100,90.89,0,4.45,6.74,7.71,8.41,9.07,9.71,10.18,10.59,10.97,290.21,291.44,292.46,293.83,294.79,295.5,296.09000000000003,296.59000000000003,296.59000000000003,19.48,19.740000000000002,19.71,19.55,19.53,19.580000000000002,19.61,19.62,19.44,N/A,N/A +2012,1,1,13,30,102560,101350,100170,86.29,0,10.73,11.86,12.19,12.450000000000001,12.72,12.98,13.42,13.89,14.82,350.6,351.06,351.35,351.69,352.11,352.53000000000003,353.19,353.84000000000003,354.42,16.89,16.580000000000002,16.41,16.22,16.04,15.88,15.73,15.620000000000001,15.71,N/A,N/A +2012,1,1,14,30,102700,101480,100300,79.41,0,10.540000000000001,11.64,11.96,12.19,12.38,12.540000000000001,12.73,12.92,13.46,3.3000000000000003,4,4.37,4.75,5.15,5.5200000000000005,6,6.48,7.73,15.77,15.370000000000001,15.18,15,14.81,14.63,14.450000000000001,14.280000000000001,13.950000000000001,N/A,N/A +2012,1,1,15,30,102760,101540,100350,69.58,0,10.8,11.82,12.06,12.200000000000001,12.3,12.36,12.41,12.46,12.56,5.6000000000000005,5.76,5.87,5.97,6.07,6.17,6.29,6.41,6.71,15.290000000000001,14.85,14.65,14.450000000000001,14.25,14.07,13.870000000000001,13.68,13.31,N/A,N/A +2012,1,1,16,30,102780,101560,100370,67.46000000000001,0,10.4,11.36,11.61,11.74,11.84,11.9,11.950000000000001,11.99,12.05,6.11,6.16,6.2,6.24,6.28,6.32,6.38,6.43,6.58,15.15,14.71,14.5,14.3,14.09,13.91,13.71,13.52,13.13,N/A,N/A +2012,1,1,17,30,102760,101540,100350,65.26,0,10.78,11.790000000000001,12.040000000000001,12.19,12.280000000000001,12.35,12.39,12.43,12.49,1.1500000000000001,1.22,1.25,1.29,1.32,1.36,1.41,1.46,1.57,15.44,15.01,14.82,14.61,14.41,14.23,14.02,13.84,13.450000000000001,N/A,N/A +2012,1,1,18,30,102810,101580,100400,60.13,0,10.18,11.17,11.43,11.58,11.69,11.77,11.83,11.870000000000001,11.94,0.41000000000000003,0.65,0.8200000000000001,0.98,1.1300000000000001,1.27,1.41,1.55,1.82,16,15.620000000000001,15.43,15.24,15.040000000000001,14.85,14.65,14.46,14.08,N/A,N/A +2012,1,1,19,30,102840,101620,100440,55.57,0,10.11,11.16,11.44,11.620000000000001,11.73,11.83,11.89,11.950000000000001,12.030000000000001,3.13,3.2600000000000002,3.35,3.46,3.5500000000000003,3.65,3.7600000000000002,3.86,4.07,16.54,16.21,16.03,15.84,15.64,15.46,15.26,15.07,14.69,N/A,N/A +2012,1,1,20,30,102840,101620,100440,53.34,0,10.71,11.89,12.200000000000001,12.4,12.540000000000001,12.65,12.72,12.790000000000001,12.88,0.5,0.64,0.74,0.8300000000000001,0.92,1.01,1.09,1.17,1.33,16.96,16.67,16.51,16.32,16.13,15.950000000000001,15.75,15.57,15.18,N/A,N/A +2012,1,1,21,30,102870,101650,100470,54.04,0,9.93,10.99,11.26,11.44,11.56,11.65,11.71,11.77,11.84,1.75,1.77,1.77,1.76,1.76,1.75,1.75,1.76,1.79,17.1,16.830000000000002,16.66,16.48,16.29,16.11,15.92,15.73,15.35,N/A,N/A +2012,1,1,22,30,102920,101700,100510,52.56,0,10.48,11.56,11.84,12,12.120000000000001,12.200000000000001,12.24,12.280000000000001,12.33,2.87,3.0500000000000003,3.15,3.25,3.35,3.44,3.54,3.63,3.8200000000000003,16.91,16.61,16.44,16.25,16.06,15.88,15.68,15.49,15.1,N/A,N/A +2012,1,1,23,30,103000,101770,100590,50.65,0,11.64,12.8,13.06,13.200000000000001,13.27,13.32,13.33,13.34,13.32,1.81,2.09,2.24,2.37,2.49,2.59,2.7,2.8000000000000003,3.02,16.23,15.870000000000001,15.68,15.49,15.290000000000001,15.1,14.9,14.71,14.32,N/A,N/A +2012,1,2,0,30,103110,101880,100680,53.27,0,11.88,13.07,13.370000000000001,13.55,13.66,13.75,13.8,13.85,13.91,4.83,4.94,5.0200000000000005,5.09,5.15,5.2,5.26,5.3100000000000005,5.42,15.44,15.01,14.81,14.61,14.4,14.22,14.01,13.82,13.42,N/A,N/A +2012,1,2,1,30,103160,101930,100730,54.76,0,12.32,13.57,13.9,14.09,14.22,14.32,14.4,14.450000000000001,14.540000000000001,7.83,7.9,7.96,8.01,8.06,8.1,8.15,8.19,8.28,14.8,14.32,14.11,13.9,13.700000000000001,13.51,13.3,13.11,12.72,N/A,N/A +2012,1,2,2,30,103210,101970,100770,57.27,0,12.51,13.77,14.1,14.3,14.43,14.530000000000001,14.6,14.66,14.75,9.06,9.290000000000001,9.4,9.52,9.63,9.73,9.84,9.94,10.16,14.18,13.66,13.44,13.23,13.02,12.83,12.620000000000001,12.43,12.040000000000001,N/A,N/A +2012,1,2,3,30,103260,102020,100810,59.64,0,12.780000000000001,14.05,14.38,14.58,14.72,14.83,14.91,14.98,15.09,10.790000000000001,11,11.13,11.26,11.39,11.51,11.64,11.77,12.040000000000001,13.52,12.950000000000001,12.72,12.5,12.290000000000001,12.1,11.9,11.71,11.33,N/A,N/A +2012,1,2,4,30,103270,102030,100820,61.47,0,12.700000000000001,13.950000000000001,14.27,14.47,14.61,14.71,14.790000000000001,14.86,14.98,14.41,14.59,14.71,14.82,14.94,15.05,15.18,15.3,15.56,13,12.4,12.16,11.950000000000001,11.73,11.540000000000001,11.34,11.15,10.77,N/A,N/A +2012,1,2,5,30,103290,102050,100840,61.690000000000005,0,12.8,14.030000000000001,14.35,14.540000000000001,14.66,14.76,14.84,14.91,15.040000000000001,15.6,15.790000000000001,15.92,16.05,16.18,16.3,16.45,16.580000000000002,16.89,12.61,11.98,11.74,11.52,11.31,11.13,10.92,10.74,10.370000000000001,N/A,N/A +2012,1,2,6,30,103340,102090,100880,63.25,0,13.030000000000001,14.26,14.58,14.76,14.88,14.98,15.05,15.120000000000001,15.25,18.400000000000002,18.580000000000002,18.69,18.8,18.92,19.02,19.150000000000002,19.28,19.55,12.24,11.56,11.32,11.1,10.88,10.700000000000001,10.5,10.31,9.94,N/A,N/A +2012,1,2,7,30,103400,102150,100940,64.03,0,13.25,14.5,14.81,14.99,15.120000000000001,15.21,15.290000000000001,15.36,15.5,20.35,20.51,20.63,20.740000000000002,20.85,20.96,21.09,21.22,21.52,11.92,11.22,10.97,10.75,10.540000000000001,10.35,10.15,9.97,9.61,N/A,N/A +2012,1,2,8,30,103430,102180,100970,63.31,0,13.67,14.97,15.3,15.49,15.610000000000001,15.700000000000001,15.780000000000001,15.85,15.99,23.13,23.32,23.43,23.55,23.67,23.78,23.91,24.04,24.36,11.65,10.93,10.68,10.46,10.24,10.06,9.86,9.68,9.32,N/A,N/A +2012,1,2,9,30,103470,102210,101000,64.3,0,13.46,14.700000000000001,15.02,15.19,15.31,15.4,15.47,15.540000000000001,15.68,24.5,24.67,24.78,24.88,24.990000000000002,25.080000000000002,25.2,25.310000000000002,25.57,11.27,10.53,10.27,10.040000000000001,9.83,9.65,9.450000000000001,9.27,8.92,N/A,N/A +2012,1,2,10,30,103500,102250,101030,63.71,0,13.21,14.41,14.71,14.870000000000001,14.99,15.07,15.14,15.200000000000001,15.33,26.93,27.1,27.21,27.3,27.400000000000002,27.490000000000002,27.59,27.69,27.91,10.950000000000001,10.200000000000001,9.94,9.72,9.5,9.31,9.120000000000001,8.94,8.58,N/A,N/A +2012,1,2,11,30,103560,102300,101080,63.25,0,12.83,13.97,14.26,14.42,14.52,14.6,14.66,14.71,14.81,29.580000000000002,29.740000000000002,29.830000000000002,29.91,29.990000000000002,30.07,30.150000000000002,30.23,30.400000000000002,10.73,9.97,9.71,9.48,9.27,9.08,8.88,8.700000000000001,8.33,N/A,N/A +2012,1,2,12,30,103620,102360,101140,63.5,0,12.620000000000001,13.73,14,14.16,14.26,14.33,14.39,14.44,14.530000000000001,30.69,30.82,30.92,31,31.09,31.16,31.25,31.32,31.48,10.540000000000001,9.790000000000001,9.52,9.290000000000001,9.08,8.89,8.69,8.51,8.14,N/A,N/A +2012,1,2,13,30,103670,102410,101190,63.4,0,12.44,13.530000000000001,13.790000000000001,13.93,14.030000000000001,14.1,14.15,14.200000000000001,14.290000000000001,30.8,30.94,31.03,31.1,31.18,31.25,31.32,31.39,31.53,10.38,9.620000000000001,9.36,9.13,8.92,8.73,8.53,8.35,7.98,N/A,N/A +2012,1,2,14,30,103730,102470,101250,64.26,0,11.44,12.36,12.57,12.69,12.76,12.81,12.84,12.870000000000001,12.92,31.080000000000002,31.240000000000002,31.330000000000002,31.41,31.490000000000002,31.55,31.62,31.68,31.8,10.13,9.38,9.120000000000001,8.9,8.68,8.49,8.3,8.11,7.75,N/A,N/A +2012,1,2,15,30,103750,102490,101260,62.65,0,10.24,11.03,11.22,11.33,11.4,11.46,11.51,11.55,11.63,30.68,30.82,30.91,30.990000000000002,31.060000000000002,31.13,31.2,31.27,31.39,10.13,9.42,9.16,8.94,8.73,8.540000000000001,8.34,8.15,7.79,N/A,N/A +2012,1,2,16,30,103730,102470,101240,59.47,0,9.22,9.91,10.09,10.19,10.26,10.32,10.370000000000001,10.42,10.51,24.69,24.78,24.85,24.91,24.97,25.03,25.09,25.150000000000002,25.27,10.38,9.700000000000001,9.46,9.24,9.02,8.83,8.63,8.44,8.06,N/A,N/A +2012,1,2,17,30,103700,102450,101230,55.49,0,7.62,8.15,8.28,8.36,8.42,8.46,8.5,8.53,8.59,14.72,14.790000000000001,14.84,14.88,14.93,14.96,15.01,15.05,15.15,10.83,10.22,9.98,9.76,9.55,9.36,9.15,8.96,8.57,N/A,N/A +2012,1,2,18,30,103680,102430,101210,49.9,0,7.36,7.88,8.01,8.09,8.15,8.2,8.24,8.27,8.33,7.2,7.21,7.22,7.22,7.23,7.23,7.23,7.24,7.26,11.68,11.1,10.88,10.66,10.44,10.25,10.040000000000001,9.85,9.450000000000001,N/A,N/A +2012,1,2,19,30,103660,102410,101200,48.18,0,6.94,7.390000000000001,7.51,7.58,7.62,7.66,7.69,7.71,7.74,357.68,357.79,357.88,357.96,358.05,358.13,358.2,358.28000000000003,358.42,12.51,11.98,11.76,11.55,11.33,11.14,10.93,10.73,10.33,N/A,N/A +2012,1,2,20,30,103610,102360,101150,46.36,0,7.01,7.48,7.58,7.65,7.69,7.72,7.74,7.76,7.78,345.68,346.11,346.40000000000003,346.66,346.92,347.15000000000003,347.39,347.62,348.06,13.02,12.51,12.290000000000001,12.08,11.870000000000001,11.68,11.47,11.27,10.88,N/A,N/A +2012,1,2,21,30,103570,102320,101110,46.29,0,7.8,8.34,8.46,8.53,8.56,8.59,8.6,8.61,8.620000000000001,343.08,343.58,343.89,344.17,344.44,344.68,344.92,345.14,345.59000000000003,13.24,12.73,12.51,12.3,12.09,11.89,11.69,11.49,11.1,N/A,N/A +2012,1,2,22,30,103530,102290,101080,45.93,0,7.74,8.27,8.38,8.44,8.47,8.5,8.51,8.52,8.52,340.56,341,341.28000000000003,341.53000000000003,341.76,341.97,342.19,342.39,342.79,13.31,12.8,12.58,12.370000000000001,12.16,11.97,11.76,11.57,11.17,N/A,N/A +2012,1,2,23,30,103530,102280,101080,49.15,0,7.46,7.97,8.09,8.15,8.19,8.22,8.24,8.26,8.27,342.72,342.90000000000003,343.01,343.1,343.2,343.28000000000003,343.37,343.45,343.61,13.31,12.8,12.58,12.370000000000001,12.16,11.96,11.75,11.56,11.16,N/A,N/A +2012,1,3,0,30,103550,102310,101100,51.47,0,8.35,8.93,9.05,9.11,9.13,9.16,9.16,9.16,9.15,342.81,343.28000000000003,343.56,343.81,344.05,344.27,344.49,344.69,345.09000000000003,13,12.46,12.24,12.030000000000001,11.81,11.620000000000001,11.41,11.21,10.81,N/A,N/A +2012,1,3,1,30,103580,102330,101120,50.76,0,8.44,9.02,9.14,9.200000000000001,9.22,9.23,9.23,9.23,9.21,350.6,350.65000000000003,350.67,350.69,350.71,350.73,350.74,350.76,350.79,12.57,12.01,11.78,11.57,11.35,11.16,10.950000000000001,10.75,10.36,N/A,N/A +2012,1,3,2,30,103600,102350,101140,49.25,0,8.51,9.1,9.23,9.3,9.33,9.35,9.36,9.36,9.35,353.62,353.59000000000003,353.57,353.55,353.52,353.5,353.48,353.46,353.41,12.370000000000001,11.8,11.57,11.35,11.14,10.950000000000001,10.74,10.540000000000001,10.15,N/A,N/A +2012,1,3,3,30,103600,102350,101130,49.28,0,8.91,9.53,9.65,9.71,9.73,9.75,9.75,9.74,9.72,357.1,356.82,356.65000000000003,356.5,356.35,356.23,356.11,355.99,355.77,12.01,11.42,11.19,10.97,10.76,10.57,10.36,10.17,9.78,N/A,N/A +2012,1,3,4,30,103600,102350,101140,49.14,0,8.41,8.97,9.08,9.13,9.15,9.16,9.15,9.15,9.13,1.6,1.46,1.36,1.26,1.16,1.07,0.96,0.85,0.62,11.67,11.07,10.84,10.63,10.41,10.23,10.02,9.83,9.450000000000001,N/A,N/A +2012,1,3,5,30,103620,102370,101150,53.28,0,8.45,8.99,9.09,9.14,9.15,9.16,9.15,9.14,9.11,4.74,4.8100000000000005,4.83,4.8500000000000005,4.86,4.8500000000000005,4.8500000000000005,4.83,4.7700000000000005,10.97,10.34,10.11,9.89,9.68,9.49,9.290000000000001,9.11,8.73,N/A,N/A +2012,1,3,6,30,103650,102390,101170,55.4,0,8.61,9.17,9.27,9.31,9.33,9.33,9.32,9.31,9.27,11.93,11.97,11.99,12,12,12.01,12.01,12.01,11.99,10.61,9.99,9.75,9.540000000000001,9.32,9.13,8.93,8.74,8.36,N/A,N/A +2012,1,3,7,30,103670,102410,101190,56,0,8.69,9.26,9.36,9.41,9.41,9.42,9.4,9.39,9.34,15.120000000000001,15.16,15.16,15.15,15.14,15.120000000000001,15.11,15.08,15,10.32,9.68,9.44,9.22,9.01,8.82,8.620000000000001,8.43,8.05,N/A,N/A +2012,1,3,8,30,103650,102390,101170,57.53,0,8.870000000000001,9.44,9.540000000000001,9.57,9.58,9.58,9.56,9.540000000000001,9.49,23.42,23.45,23.44,23.42,23.39,23.36,23.32,23.29,23.18,9.97,9.31,9.07,8.85,8.64,8.45,8.25,8.06,7.69,N/A,N/A +2012,1,3,9,30,103630,102370,101140,56.800000000000004,0,9.47,10.11,10.22,10.27,10.28,10.28,10.26,10.23,10.17,26.19,26.26,26.29,26.3,26.32,26.34,26.35,26.35,26.35,9.74,9.06,8.81,8.59,8.38,8.19,7.98,7.8,7.42,N/A,N/A +2012,1,3,10,30,103610,102350,101120,55.99,0,8.73,9.3,9.4,9.44,9.450000000000001,9.450000000000001,9.44,9.42,9.38,32.18,32.37,32.49,32.59,32.69,32.77,32.87,32.95,33.13,9.61,8.94,8.700000000000001,8.48,8.27,8.08,7.88,7.68,7.3,N/A,N/A +2012,1,3,11,30,103610,102350,101120,57.550000000000004,0,8.44,8.97,9.07,9.11,9.13,9.13,9.120000000000001,9.11,9.07,42.11,42.51,42.730000000000004,42.94,43.14,43.32,43.52,43.7,44.08,9.700000000000001,9.05,8.81,8.59,8.370000000000001,8.18,7.97,7.78,7.4,N/A,N/A +2012,1,3,12,30,103610,102350,101120,58.370000000000005,0,8.22,8.73,8.83,8.870000000000001,8.89,8.9,8.89,8.88,8.85,43.33,43.77,44.03,44.25,44.480000000000004,44.69,44.9,45.11,45.54,9.57,8.92,8.67,8.45,8.24,8.040000000000001,7.84,7.640000000000001,7.26,N/A,N/A +2012,1,3,13,30,103600,102340,101120,63.56,0,7.5,7.930000000000001,8.01,8.040000000000001,8.05,8.05,8.040000000000001,8.03,7.99,51.300000000000004,51.63,51.84,52.02,52.21,52.38,52.550000000000004,52.72,53.08,9.81,9.18,8.94,8.72,8.51,8.31,8.1,7.91,7.5200000000000005,N/A,N/A +2012,1,3,14,30,103600,102340,101120,57.94,0,7.72,8.18,8.26,8.290000000000001,8.31,8.31,8.3,8.290000000000001,8.25,55.730000000000004,56.03,56.21,56.370000000000005,56.53,56.68,56.83,56.980000000000004,57.28,9.99,9.36,9.120000000000001,8.9,8.69,8.49,8.28,8.09,7.7,N/A,N/A +2012,1,3,15,30,103580,102320,101100,59.93,0,7.01,7.41,7.48,7.51,7.5200000000000005,7.5200000000000005,7.5200000000000005,7.51,7.48,58.39,58.86,59.13,59.370000000000005,59.61,59.82,60.050000000000004,60.26,60.7,10.17,9.57,9.33,9.11,8.9,8.71,8.5,8.3,7.91,N/A,N/A +2012,1,3,16,30,103540,102280,101060,60.17,0,6.3100000000000005,6.66,6.73,6.76,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.75,66.15,66.57000000000001,66.8,67.02,67.24,67.43,67.63,67.82000000000001,68.22,10.47,9.9,9.66,9.450000000000001,9.24,9.040000000000001,8.83,8.64,8.24,N/A,N/A +2012,1,3,17,30,103490,102240,101020,60.4,0,5.8100000000000005,6.11,6.16,6.17,6.18,6.17,6.17,6.16,6.13,74.28,74.61,74.81,74.99,75.18,75.34,75.51,75.67,76.01,10.73,10.18,9.950000000000001,9.74,9.53,9.33,9.13,8.93,8.540000000000001,N/A,N/A +2012,1,3,18,30,103450,102200,100980,61.92,0,5.16,5.41,5.45,5.46,5.47,5.47,5.46,5.45,5.42,81.14,81.54,81.77,81.98,82.17,82.36,82.55,82.73,83.10000000000001,11.02,10.49,10.27,10.06,9.85,9.65,9.450000000000001,9.25,8.86,N/A,N/A +2012,1,3,19,30,103390,102140,100930,63.230000000000004,0,4.44,4.64,4.67,4.68,4.68,4.68,4.68,4.67,4.66,90.37,90.88,91.16,91.43,91.68,91.92,92.18,92.41,92.9,11.35,10.85,10.63,10.42,10.21,10.02,9.81,9.620000000000001,9.22,N/A,N/A +2012,1,3,20,30,103320,102070,100860,65.71000000000001,0,4.41,4.6000000000000005,4.63,4.64,4.64,4.63,4.62,4.61,4.59,104.02,104.47,104.7,104.93,105.15,105.36,105.57000000000001,105.77,106.19,11.59,11.09,10.88,10.67,10.46,10.27,10.06,9.86,9.47,N/A,N/A +2012,1,3,21,30,103250,102000,100790,62.93,0,3.91,4.09,4.13,4.15,4.16,4.16,4.17,4.17,4.17,119.45,120.08,120.44,120.77,121.09,121.38,121.68,121.96000000000001,122.56,11.950000000000001,11.47,11.26,11.06,10.85,10.66,10.450000000000001,10.26,9.86,N/A,N/A +2012,1,3,22,30,103170,101930,100720,65.42,0,4.05,4.25,4.28,4.3,4.3100000000000005,4.32,4.33,4.33,4.33,127.76,128.43,128.81,129.16,129.5,129.81,130.14000000000001,130.44,131.09,12.280000000000001,11.81,11.6,11.4,11.19,11,10.790000000000001,10.6,10.21,N/A,N/A +2012,1,3,23,30,103120,101880,100680,66.89,0,4.34,4.57,4.62,4.65,4.67,4.69,4.7,4.71,4.73,140.01,140.54,140.87,141.18,141.49,141.76,142.06,142.33,142.91,12.66,12.19,11.98,11.78,11.57,11.38,11.18,10.98,10.59,N/A,N/A +2012,1,4,0,30,103090,101850,100650,65.61,0,4.83,5.12,5.19,5.23,5.26,5.28,5.3,5.32,5.3500000000000005,152.18,152.69,152.98,153.25,153.52,153.75,154,154.24,154.73,13.15,12.69,12.48,12.280000000000001,12.07,11.89,11.68,11.49,11.09,N/A,N/A +2012,1,4,1,30,103030,101800,100600,67.44,0,5.44,5.78,5.86,5.91,5.95,5.97,5.99,6.01,6.04,159.29,159.76,160.03,160.28,160.53,160.75,160.98,161.21,161.66,13.61,13.16,12.96,12.76,12.55,12.36,12.15,11.96,11.57,N/A,N/A +2012,1,4,2,30,102970,101740,100550,71.66,0,6.34,6.79,6.9,6.97,7.01,7.05,7.07,7.1000000000000005,7.13,167.1,167.54,167.79,168.01,168.23,168.41,168.62,168.8,169.18,14.17,13.73,13.530000000000001,13.33,13.120000000000001,12.93,12.72,12.530000000000001,12.14,N/A,N/A +2012,1,4,3,30,102920,101690,100500,74.09,0,6.93,7.49,7.640000000000001,7.73,7.79,7.8500000000000005,7.890000000000001,7.930000000000001,7.99,172.3,172.8,173.08,173.33,173.57,173.78,174,174.19,174.6,14.67,14.24,14.040000000000001,13.84,13.63,13.450000000000001,13.24,13.05,12.66,N/A,N/A +2012,1,4,4,30,102840,101620,100430,74.82000000000001,0,7.13,7.76,7.930000000000001,8.040000000000001,8.120000000000001,8.19,8.24,8.28,8.36,179.02,179.51,179.76,179.99,180.20000000000002,180.38,180.59,180.77,181.13,15.290000000000001,14.89,14.700000000000001,14.5,14.290000000000001,14.11,13.9,13.71,13.32,N/A,N/A +2012,1,4,5,30,102800,101580,100390,75.15,0,7.48,8.08,8.24,8.34,8.4,8.45,8.49,8.53,8.58,194.38,193.78,193.46,193.16,192.88,192.63,192.39000000000001,192.17000000000002,191.74,15.83,15.450000000000001,15.26,15.06,14.86,14.67,14.47,14.27,13.88,N/A,N/A +2012,1,4,6,30,102760,101540,100360,73.16,0,8.66,9.52,9.74,9.86,9.94,9.99,10.03,10.06,10.09,191.12,191.66,192.06,192.44,192.81,193.14000000000001,193.48000000000002,193.79,194.43,16.57,16.26,16.080000000000002,15.88,15.68,15.5,15.3,15.11,14.72,N/A,N/A +2012,1,4,7,30,102740,101520,100340,75.86,0,8.08,8.9,9.14,9.3,9.42,9.52,9.6,9.67,9.790000000000001,194.12,195.02,195.42000000000002,195.78,196.11,196.4,196.66,196.9,197.35,16.81,16.52,16.36,16.16,15.97,15.790000000000001,15.59,15.4,15.01,N/A,N/A +2012,1,4,8,30,102680,101470,100290,76.06,0,7.140000000000001,7.94,8.18,8.36,8.5,8.620000000000001,8.72,8.81,8.98,196.08,196.23000000000002,196.39000000000001,196.55,196.70000000000002,196.85,197,197.13,197.38,17.12,16.88,16.72,16.55,16.36,16.18,15.99,15.8,15.42,N/A,N/A +2012,1,4,9,30,102670,101460,100280,77.18,0,7.88,8.78,9.06,9.25,9.4,9.52,9.61,9.700000000000001,9.83,196.23000000000002,196.59,196.83,197.07,197.31,197.54,197.78,198.01,198.49,17.43,17.240000000000002,17.09,16.92,16.740000000000002,16.57,16.38,16.2,15.82,N/A,N/A +2012,1,4,10,30,102630,101420,100250,80.32000000000001,0,6.08,7.01,7.34,7.62,7.8500000000000005,8.040000000000001,8.2,8.33,8.51,194.56,195.98000000000002,196.71,197.41,198,198.51,198.94,199.3,199.87,17.62,17.46,17.330000000000002,17.18,17.02,16.86,16.68,16.51,16.15,N/A,N/A +2012,1,4,11,30,102630,101420,100250,80.18,0,6.67,7.67,7.99,8.22,8.39,8.52,8.59,8.66,8.72,201.12,201.33,201.47,201.57,201.64000000000001,201.71,201.79,201.86,202.11,17.81,17.7,17.580000000000002,17.44,17.27,17.12,16.93,16.76,16.39,N/A,N/A +2012,1,4,12,30,102620,101420,100240,82.39,0,5.45,6.37,6.7,6.98,7.23,7.44,7.640000000000001,7.82,8.09,201.4,201.99,202.59,203.43,204.56,205.77,207.35,208.84,211.6,17.64,17.5,17.39,17.25,17.11,16.98,16.85,16.73,16.54,N/A,N/A +2012,1,4,13,30,102630,101420,100250,87.25,0,3.85,4.83,5.24,5.61,5.9,6.140000000000001,6.34,6.54,6.96,185.82,186.1,186.55,187.33,188.54,189.94,191.94,193.98000000000002,198.77,17.59,17.54,17.47,17.37,17.25,17.13,16.990000000000002,16.86,16.580000000000002,N/A,N/A +2012,1,4,14,30,102660,101450,100280,86.5,0,3.0100000000000002,3.92,4.2700000000000005,4.57,4.84,5.08,5.48,5.86,6.25,194.19,193.71,193.27,192.43,191.95000000000002,191.67000000000002,193.89000000000001,196.44,201.96,17.76,17.740000000000002,17.66,17.53,17.39,17.25,17.14,17.05,16.87,N/A,N/A +2012,1,4,15,30,102670,101470,100300,89.13,0,3.98,4.96,5.29,5.47,5.59,5.68,5.8100000000000005,5.93,6.16,177.04,180.06,182.84,186.78,191.43,196.32,199.15,201.32,203.46,17.740000000000002,17.76,17.740000000000002,17.67,17.580000000000002,17.48,17.37,17.26,17.03,N/A,N/A +2012,1,4,16,30,102640,101430,100260,90.55,0,2.6,3.56,4.01,4.48,4.84,5.11,5.29,5.41,5.37,173.52,176.18,178.70000000000002,182.21,185.8,189.31,192.4,195.22,201.26,17.72,17.77,17.77,17.73,17.67,17.59,17.52,17.45,17.31,N/A,N/A +2012,1,4,17,30,102600,101400,100230,89.10000000000001,0,3.71,4.46,4.76,5.04,5.37,5.7,5.92,6.11,6.36,178.14000000000001,179.75,181.57,184.45000000000002,187.93,191.6,193.94,195.86,198.68,17.85,17.75,17.7,17.650000000000002,17.6,17.54,17.48,17.42,17.23,N/A,N/A +2012,1,4,18,30,102600,101390,100230,90.87,0,2.87,3.4,3.69,4.09,4.45,4.79,4.88,4.91,4.93,165.25,168.43,172.01,177.83,184.43,191.39000000000001,195.82,199.4,205.89000000000001,17.900000000000002,17.75,17.69,17.66,17.69,17.740000000000002,17.75,17.740000000000002,17.59,N/A,N/A +2012,1,4,19,30,102590,101390,100220,89.68,0,3.02,3.62,3.9,4.23,4.42,4.53,4.39,4.24,3.98,162.8,164.53,165.74,167.35,170.18,173.48,179.55,185.04,192.77,18.04,17.84,17.72,17.59,17.5,17.43,17.400000000000002,17.36,17.240000000000002,N/A,N/A +2012,1,4,20,30,102560,101360,100190,90.32000000000001,0,3.69,4.32,4.54,4.66,4.71,4.71,4.7,4.7,4.58,177.43,181.4,185,189.86,193.27,195.75,198.01,199.99,203.25,18.19,18.19,18.22,18.28,18.28,18.25,18.16,18.080000000000002,17.830000000000002,N/A,N/A +2012,1,4,21,30,102530,101330,100170,91.69,0,3.21,3.9,4.09,4.1,4.05,3.95,3.87,3.8000000000000003,3.71,159.89000000000001,166.15,171.3,177.94,182.57,185.9,189.33,192.4,197.97,18.07,18.14,18.2,18.28,18.29,18.28,18.22,18.18,18,N/A,N/A +2012,1,4,22,30,102510,101310,100140,92.37,0,3.3200000000000003,4.21,4.51,4.69,4.79,4.83,4.92,5.01,5.26,165.42000000000002,171.97,177.98,185.74,190.84,194.28,197.91,201.25,206.07,18.04,18.18,18.25,18.29,18.32,18.330000000000002,18.36,18.38,18.3,N/A,N/A +2012,1,4,23,30,102500,101300,100140,93.82000000000001,0,4.4,5.5,5.92,6.2700000000000005,6.48,6.6000000000000005,6.71,6.8,6.92,172.87,176.14000000000001,179.8,185.72,189.24,191.29,192.41,193.28,195.38,17.97,18.03,18.13,18.32,18.41,18.44,18.39,18.330000000000002,18.13,N/A,N/A +2012,1,5,0,30,102530,101330,100170,95.24,0,3.86,5.11,5.66,6.2,6.51,6.67,6.78,6.87,6.91,173.47,180.98,186.24,191.56,194.49,195.97,197.26,198.41,200.89000000000001,17.84,18.16,18.35,18.57,18.69,18.76,18.75,18.73,18.57,N/A,N/A +2012,1,5,1,30,102540,101330,100170,95.24,0,3.81,5.32,5.97,6.44,6.7,6.8100000000000005,6.93,7.03,7.22,171.95000000000002,179.15,183.64000000000001,187.08,189.37,190.9,192.63,194.25,197.28,17.740000000000002,18.16,18.39,18.580000000000002,18.68,18.72,18.72,18.7,18.52,N/A,N/A +2012,1,5,2,30,102560,101360,100200,94.42,0,3.77,5.36,6.09,6.76,7.15,7.34,7.57,7.78,7.95,184.05,189.09,193.49,199.23000000000002,201.71,202.15,202.56,202.96,205.1,17.94,18.400000000000002,18.580000000000002,18.650000000000002,18.67,18.67,18.68,18.69,18.59,N/A,N/A +2012,1,5,3,30,102560,101360,100200,94.81,0,3.63,5.26,5.98,6.55,6.8,6.86,6.8500000000000005,6.84,6.74,192.54,195.6,197.8,200.05,202.35,204.56,206.9,209.03,213.31,17.85,18.18,18.35,18.53,18.66,18.76,18.830000000000002,18.87,18.78,N/A,N/A +2012,1,5,4,30,102550,101340,100180,94.5,0,4.51,5.99,6.5600000000000005,6.890000000000001,6.98,6.92,6.92,6.93,6.8500000000000005,198.23000000000002,199.11,200.84,204.29,207.51,210.42000000000002,213.07,215.43,220,17.900000000000002,18.16,18.32,18.53,18.6,18.59,18.66,18.73,18.71,N/A,N/A +2012,1,5,5,30,102550,101350,100190,94.7,0,4.01,5.54,6.16,6.57,6.76,6.82,6.83,6.82,6.67,210.15,211.70000000000002,214.1,218.62,221.78,224.05,226.47,228.69,232.92000000000002,17.86,18.21,18.41,18.63,18.77,18.86,18.96,19.04,19.02,N/A,N/A +2012,1,5,6,30,102580,101370,100210,96.59,0,2.17,3.44,4.0600000000000005,4.82,5.39,5.83,6.16,6.45,6.76,252.89000000000001,243.67000000000002,238.91,237.91,238.20000000000002,239.21,240.6,241.96,244.88,17.63,17.85,17.97,18.12,18.25,18.36,18.48,18.580000000000002,18.72,N/A,N/A +2012,1,5,7,30,102620,101410,100240,99.23,0,2.77,2.7800000000000002,2.8000000000000003,2.9,3.08,3.29,3.5500000000000003,3.8000000000000003,4.36,335.01,314.33,301.81,289.49,280.5,273.21,268.05,263.62,258.07,15.99,16.5,16.8,17,17.11,17.17,17.18,17.18,17.150000000000002,N/A,N/A +2012,1,5,8,30,102610,101400,100230,99.19,0,2.23,2.39,2.49,2.65,2.7800000000000002,2.91,3.09,3.31,4.18,320.53000000000003,307.54,298.78000000000003,289.18,283.03000000000003,278.8,272.17,265.44,251.83,16.71,16.59,16.55,16.53,16.47,16.38,16.36,16.43,17.31,N/A,N/A +2012,1,5,9,30,102610,101400,100230,99.31,0,2.37,2.59,2.66,2.72,2.7600000000000002,2.8000000000000003,2.82,2.84,2.97,292.03000000000003,288.99,287.25,285.77,284.31,282.93,281.96,281.2,278.46,16.96,16.77,16.68,16.580000000000002,16.47,16.37,16.26,16.15,16.01,N/A,N/A +2012,1,5,10,30,102620,101410,100240,99.3,0,3.54,3.71,3.73,3.72,3.68,3.63,3.5500000000000003,3.48,3.38,309.38,306.93,305.37,303.65000000000003,301.96,300.40000000000003,298.01,295.82,292.14,16.73,16.52,16.43,16.330000000000002,16.23,16.13,16.04,15.950000000000001,15.75,N/A,N/A +2012,1,5,11,30,102610,101400,100220,99.16,0,2.3000000000000003,2.57,2.69,2.8000000000000003,2.91,3,3.09,3.17,3.29,311.17,303.82,299.34000000000003,295.39,291.08,286.8,283.68,281.05,277.61,16.59,16.38,16.3,16.22,16.13,16.04,15.950000000000001,15.860000000000001,15.68,N/A,N/A +2012,1,5,12,30,102600,101390,100210,99.19,0,2.06,1.85,1.7,1.55,1.58,1.69,1.75,1.8,2.0100000000000002,341.03000000000003,332.25,320.17,301.43,286.26,272.38,267.07,263.64,266.9,15.91,15.72,15.67,15.65,15.64,15.620000000000001,15.540000000000001,15.450000000000001,15.33,N/A,N/A +2012,1,5,13,30,102600,101390,100210,99.26,0,1.25,1.11,0.97,0.81,0.8,0.85,1.1400000000000001,1.52,2.48,353.42,348.44,340.72,328.94,318.40000000000003,308.07,307.18,306.79,305.02,15.5,15.24,15.11,14.97,14.81,14.64,14.57,14.73,16.26,N/A,N/A +2012,1,5,14,30,102610,101390,100210,99.2,0,1.76,1.74,1.69,1.6300000000000001,1.57,1.52,1.9000000000000001,2.2600000000000002,2.34,18.53,21.900000000000002,24.62,27.96,32.93,37.96,25.09,9.84,344.16,14.84,14.530000000000001,14.36,14.18,13.9,13.61,15.030000000000001,16.240000000000002,17.03,N/A,N/A +2012,1,5,15,30,102600,101380,100200,99.17,0,0.88,0.84,0.81,0.77,0.74,0.72,1.24,1.84,2.04,52.18,53.79,54.39,54.800000000000004,50.57,45.09,17.82,345.11,326.39,14.72,14.41,14.25,14.07,13.8,13.52,15.610000000000001,17.150000000000002,17.42,N/A,N/A +2012,1,5,16,30,102570,101350,100180,99.2,0,1.8800000000000001,1.92,1.9100000000000001,1.8900000000000001,1.74,1.58,1.21,0.98,0.99,96.27,99.92,103.01,106.9,108.72,109.62,66.63,35.31,345.53000000000003,14.85,14.540000000000001,14.39,14.24,14.09,13.950000000000001,15.67,17.02,17.56,N/A,N/A +2012,1,5,17,30,102520,101300,100130,99.18,0,1.84,1.95,2,2.04,2.11,2.19,1.6400000000000001,1.21,0.61,99.62,102.71000000000001,105.3,108.51,114.31,120.91,112.28,101.74000000000001,48.71,15.46,15.19,15.05,14.89,14.64,14.38,15.41,16.34,17.17,N/A,N/A +2012,1,5,18,30,102480,101260,100090,98.41,0,1.12,1.17,1.19,1.23,1.52,2,1.86,1.6400000000000001,0.8,142.31,142.3,142.23,142.06,150.13,163.79,162.63,159.58,149.58,15.96,15.65,15.48,15.280000000000001,15.42,15.67,16.06,16.42,17.09,N/A,N/A +2012,1,5,19,30,102450,101240,100070,98.09,0,1.3900000000000001,1.52,1.58,1.6400000000000001,1.8,1.99,1.9000000000000001,1.8,1.42,154.83,154.24,153.52,152.45000000000002,152.24,152.38,158.07,162.92000000000002,169.11,16.42,16.11,15.97,15.84,15.57,15.280000000000001,15.860000000000001,16.43,17.34,N/A,N/A +2012,1,5,20,30,102400,101190,100030,97.85000000000001,0,0.6,0.78,1.02,1.54,2.05,2.57,3.02,3.38,3.2800000000000002,201.27,204.85,206.39000000000001,207.64000000000001,206.70000000000002,204.54,202.08,199.72,196.82,16.5,16.18,16.05,15.950000000000001,16.11,16.35,16.78,17.13,17.28,N/A,N/A +2012,1,5,21,30,102370,101160,99990,98.43,0,0.68,0.73,0.9500000000000001,1.61,2.16,2.61,3.02,3.41,3.85,176.29,174.70000000000002,175.34,178.4,181.16,183.55,186.26,188.81,192.27,16.7,16.42,16.31,16.23,16.37,16.580000000000002,16.88,17.12,17.32,N/A,N/A +2012,1,5,22,30,102320,101120,99950,97.3,0,1.97,2.32,2.62,3.06,3.43,3.73,3.89,4,4.08,133.98,141.08,146.78,154.34,158.54,160.92000000000002,163.78,166.71,175.18,17.1,16.88,16.94,17.2,17.34,17.43,17.47,17.51,17.57,N/A,N/A +2012,1,5,23,30,102290,101080,99920,97.41,0,3.94,4.59,4.75,4.86,4.89,4.89,4.91,4.93,5.03,151.42000000000002,151.56,151.78,152.20000000000002,154.29,156.93,160.62,164.05,170.61,17.73,17.53,17.46,17.45,17.59,17.77,17.85,17.91,17.87,N/A,N/A +2012,1,6,0,30,102270,101070,99910,97.04,0,4.86,5.69,5.93,6.09,6.04,5.91,5.87,5.84,5.96,158.93,159.41,160.34,162,164.38,166.81,169.52,172.01,177.23,17.66,17.52,17.5,17.55,17.69,17.85,17.95,18.03,18.12,N/A,N/A +2012,1,6,1,30,102250,101040,99890,99.26,0,5.19,5.5600000000000005,5.69,5.86,6.24,6.71,6.84,6.91,6.88,169.13,170.07,170.89000000000001,172.02,175.3,179.43,181.22,182.57,184.88,16.75,16.52,16.41,16.32,17.44,18.97,19.06,18.98,18.68,N/A,N/A +2012,1,6,2,30,102240,101030,99870,99.23,0,5.01,5.33,5.53,5.8500000000000005,6.25,6.68,6.98,7.22,7.38,161.57,162.98,165.24,169.02,174.14000000000001,179.65,183.1,185.92000000000002,189.15,16.65,16.39,16.27,16.16,17.11,18.400000000000002,18.79,19.01,18.8,N/A,N/A +2012,1,6,3,30,102210,101010,99850,99.24000000000001,0,4.79,5.29,5.58,6.0200000000000005,6.49,6.96,7.28,7.53,7.79,165.74,168.26,171.23,176.13,180.65,184.86,187.93,190.53,194.03,16.84,16.66,16.73,16.990000000000002,17.59,18.26,18.54,18.72,18.64,N/A,N/A +2012,1,6,4,30,102170,100970,99810,98.47,0,4.29,5.32,6.11,7.3100000000000005,7.8500000000000005,8.02,8.22,8.42,8.700000000000001,175.8,179.36,183.41,189.93,192.85,193.82,194.82,195.73000000000002,197.31,17.28,17.32,17.72,18.48,18.740000000000002,18.77,18.77,18.76,18.580000000000002,N/A,N/A +2012,1,6,5,30,102130,100940,99780,94.8,0,4.55,6.01,6.7,7.44,8.05,8.57,8.82,9.02,9.26,180.28,183.55,186.73,191.31,194.6,197.13,197.28,197.05,195.97,18,18.150000000000002,18.26,18.41,18.5,18.56,18.51,18.44,18.25,N/A,N/A +2012,1,6,6,30,102120,100920,99760,94.4,0,3.75,5.23,5.92,6.66,7.42,8.17,8.47,8.66,8.91,182.76,186.28,188.95000000000002,191.99,194.88,197.66,199.21,200.44,202.12,18.05,18.26,18.31,18.32,18.36,18.42,18.41,18.39,18.21,N/A,N/A +2012,1,6,7,30,102100,100910,99750,94.39,0,4.6000000000000005,6.11,6.76,7.3500000000000005,7.930000000000001,8.49,8.97,9.36,9.41,181.91,183.96,185.6,187.65,189.36,190.85,192.78,194.57,196.96,18.02,18.18,18.22,18.240000000000002,18.23,18.21,18.17,18.12,17.95,N/A,N/A +2012,1,6,8,30,102060,100860,99700,94.62,0,4.58,6.09,6.8,7.5600000000000005,8.21,8.790000000000001,9.3,9.73,10.08,178.93,181.92000000000002,184,186.31,188.89000000000001,191.52,195.03,198.13,199.63,17.97,18.1,18.150000000000002,18.19,18.26,18.330000000000002,18.400000000000002,18.44,18.28,N/A,N/A +2012,1,6,9,30,102020,100830,99670,93.27,0,5.45,7.1000000000000005,7.82,8.540000000000001,9.18,9.76,10.17,10.5,10.84,187.74,188.67000000000002,189.6,190.89000000000001,192.71,194.71,196.08,197.12,196.92000000000002,18.25,18.42,18.490000000000002,18.55,18.6,18.64,18.580000000000002,18.51,18.27,N/A,N/A +2012,1,6,10,30,102000,100810,99650,93.43,0,5.48,7.2,8,8.8,9.49,10.1,10.540000000000001,10.92,11.46,182.42000000000002,184.4,185.89000000000001,187.59,189.06,190.38,191.51,192.53,194.31,18.22,18.43,18.51,18.580000000000002,18.61,18.63,18.59,18.54,18.32,N/A,N/A +2012,1,6,11,30,101990,100790,99640,91.66,0,6.55,8.27,9,9.69,10.26,10.75,11.1,11.4,11.8,188.52,189.70000000000002,190.54,191.51,192.41,193.24,193.95000000000002,194.57,195.4,18.43,18.59,18.63,18.650000000000002,18.650000000000002,18.63,18.57,18.490000000000002,18.240000000000002,N/A,N/A +2012,1,6,12,30,101970,100770,99620,92.57000000000001,0,6.1000000000000005,7.71,8.41,9.11,9.74,10.31,10.77,11.19,11.84,192.59,193.64000000000001,194.46,195.41,196.01,196.41,196.52,196.59,197.01,18.41,18.57,18.63,18.68,18.71,18.73,18.67,18.6,18.34,N/A,N/A +2012,1,6,13,30,101950,100760,99600,91.37,0,6.63,8.24,8.870000000000001,9.44,9.91,10.32,10.620000000000001,10.870000000000001,11.19,197.18,197.98000000000002,198.62,199.35,199.97,200.51,200.72,200.83,200.12,18.5,18.61,18.6,18.54,18.47,18.37,18.240000000000002,18.12,17.85,N/A,N/A +2012,1,6,14,30,101980,100790,99630,90.29,0,6.93,8.57,9.24,9.85,10.290000000000001,10.63,10.75,10.83,11,196.31,197.45000000000002,198.29,199.24,199.84,200.22,199.98000000000002,199.65,198.8,18.48,18.61,18.64,18.66,18.69,18.72,18.72,18.7,18.48,N/A,N/A +2012,1,6,15,30,102000,100810,99650,91.88,0,6.74,8.3,8.98,9.65,10.28,10.88,11.4,11.85,12.32,198.4,199.46,200.33,201.48000000000002,202.86,204.3,205.6,206.70000000000002,207.22,18.330000000000002,18.39,18.37,18.34,18.29,18.25,18.19,18.13,17.97,N/A,N/A +2012,1,6,16,30,102000,100800,99640,80.48,0,11.53,13.68,14.58,15.39,16.09,16.7,17.22,17.68,18.27,225.3,224.45000000000002,223.93,223.4,222.85,222.31,221.73000000000002,221.19,220.33,18.18,18.19,18.16,18.13,18.1,18.09,18.080000000000002,18.07,17.98,N/A,N/A +2012,1,6,17,30,101920,100730,99570,86.8,0,4.74,5.93,6.47,7.01,7.55,8.07,8.51,8.88,9.36,220.72,218.14000000000001,216.64000000000001,215.26,214.42000000000002,213.85,213.34,212.87,211.97,17.96,17.98,17.98,18,18.06,18.14,18.2,18.240000000000002,18.16,N/A,N/A +2012,1,6,18,30,101890,100700,99540,89.29,0,4.21,5.49,6.11,6.74,7.19,7.53,7.7700000000000005,7.99,8.48,199.47,200.36,201.29,202.44,203.57,204.61,205.14000000000001,205.54,205.75,18.07,18.21,18.330000000000002,18.48,18.55,18.580000000000002,18.54,18.5,18.35,N/A,N/A +2012,1,6,19,30,101860,100660,99510,91.84,0,3.23,4.23,4.72,5.28,5.74,6.13,6.43,6.68,7.140000000000001,177.55,178.13,179.58,182.44,185.97,189.68,191.29,192.43,193.35,18.1,18.07,18.07,18.12,18.2,18.29,18.36,18.41,18.39,N/A,N/A +2012,1,6,20,30,101820,100630,99470,93.72,0,4.7700000000000005,5.87,6.41,7.0200000000000005,7.48,7.8500000000000005,8.040000000000001,8.19,8.540000000000001,160.58,163.01,165.62,169.75,174.53,179.39000000000001,181.69,183.41,185.86,18.21,18.21,18.27,18.41,18.53,18.650000000000002,18.650000000000002,18.64,18.46,N/A,N/A +2012,1,6,21,30,101770,100580,99430,94.61,0,4.7,6.04,6.640000000000001,7.2700000000000005,7.88,8.48,8.89,9.21,9.38,162.72,166.32,169.47,173.79,177.58,181.03,183.81,186.17000000000002,188.54,18.330000000000002,18.490000000000002,18.56,18.650000000000002,18.69,18.72,18.68,18.64,18.42,N/A,N/A +2012,1,6,22,30,101720,100530,99380,93.01,0,4.87,6.37,7.01,7.640000000000001,8.18,8.65,8.76,8.8,8.92,157.87,160.95000000000002,163.82,167.89000000000001,172.97,178.49,181.12,183.13,187.28,18.32,18.56,18.66,18.78,18.89,18.990000000000002,18.95,18.89,18.740000000000002,N/A,N/A +2012,1,6,23,30,101710,100510,99360,93.2,0,6.08,7.68,8.44,9.25,9.950000000000001,10.57,10.97,11.26,11.18,153.42000000000002,155.76,157.8,160.66,163.86,167.1,169.62,171.71,173.47,18.05,18.19,18.28,18.41,18.52,18.62,18.580000000000002,18.51,18.240000000000002,N/A,N/A +2012,1,7,0,30,101700,100510,99360,92.82000000000001,0,6.93,8.4,8.99,9.56,10.13,10.69,11.17,11.58,11.94,183.66,184.87,185.86,187.03,187.97,188.76,189.39000000000001,189.95000000000002,191.07,18.330000000000002,18.42,18.43,18.42,18.39,18.37,18.31,18.25,18.01,N/A,N/A +2012,1,7,1,30,101670,100480,99330,91.82000000000001,0,5.25,6.8100000000000005,7.5200000000000005,8.22,8.82,9.34,9.78,10.15,10.55,182.08,183.33,184.21,185.15,186.19,187.22,188.67000000000002,190.08,192.73000000000002,18.11,18.23,18.25,18.25,18.2,18.14,18.02,17.89,17.580000000000002,N/A,N/A +2012,1,7,2,30,101680,100480,99330,93.43,0,6.09,7.62,8.26,8.88,9.42,9.9,10.31,10.66,11.13,180.29,180.73,181.08,181.42000000000002,181.78,182.13,182.55,182.96,183.82,18.11,18.16,18.13,18.080000000000002,18.01,17.93,17.82,17.72,17.47,N/A,N/A +2012,1,7,3,30,101660,100470,99310,92.10000000000001,0,5.5200000000000005,6.88,7.46,8.03,8.53,8.98,9.27,9.5,9.700000000000001,179.9,180.93,181.79,182.86,184.02,185.17000000000002,186.5,187.81,191.52,17.96,17.96,17.93,17.87,17.79,17.71,17.61,17.51,17.28,N/A,N/A +2012,1,7,4,30,101660,100460,99310,91.62,0,5.92,7.36,7.97,8.55,9.06,9.53,9.96,10.35,11.03,187.08,187.34,187.5,187.65,187.75,187.83,187.91,188,188.81,18.11,18.16,18.14,18.09,18.01,17.93,17.830000000000002,17.73,17.5,N/A,N/A +2012,1,7,5,30,101620,100430,99280,92.02,0,6.18,7.76,8.45,9.11,9.69,10.22,10.69,11.11,11.66,188.58,189.62,190.31,190.98,191.44,191.78,191.79,191.73000000000002,191.24,18.23,18.330000000000002,18.34,18.32,18.29,18.240000000000002,18.17,18.09,17.830000000000002,N/A,N/A +2012,1,7,6,30,101630,100440,99290,92.5,0,5.32,6.69,7.25,7.7700000000000005,8.19,8.55,8.89,9.200000000000001,9.82,174.76,175.82,176.62,177.54,178.61,179.72,181.25,182.75,185.52,18.07,18.150000000000002,18.150000000000002,18.13,18.09,18.04,17.97,17.91,17.78,N/A,N/A +2012,1,7,7,30,101650,100460,99300,94.28,0,4.8500000000000005,6.2700000000000005,6.93,7.6000000000000005,8.2,8.76,9.290000000000001,9.77,10.34,176.20000000000002,178.1,179.61,181.43,183.18,184.86,186.6,188.28,192.01,18.02,18.14,18.17,18.19,18.18,18.16,18.11,18.07,17.94,N/A,N/A +2012,1,7,8,30,101630,100440,99290,94.68,0,4.16,5.5200000000000005,6.15,6.8100000000000005,7.58,8.42,8.790000000000001,9.05,9.52,173.78,177.95000000000002,181.36,185.65,190.05,194.55,196.42000000000002,197.68,199.69,17.94,18.1,18.17,18.240000000000002,18.31,18.39,18.35,18.3,18.17,N/A,N/A +2012,1,7,9,30,101630,100440,99290,94.64,0,4.23,5.67,6.3100000000000005,6.9,7.53,8.19,8.45,8.64,9.07,168.52,172.24,175.63,180.20000000000002,185.21,190.44,192.48000000000002,193.84,196.4,17.95,18.16,18.26,18.34,18.39,18.43,18.400000000000002,18.36,18.2,N/A,N/A +2012,1,7,10,30,101640,100450,99300,94.58,0,4.2,5.72,6.46,7.2700000000000005,7.97,8.6,8.89,9.09,9.44,173.47,176.93,180.24,185.42000000000002,189.6,193.12,194.63,195.58,197.31,17.97,18.2,18.330000000000002,18.5,18.61,18.7,18.71,18.7,18.57,N/A,N/A +2012,1,7,11,30,101660,100470,99320,95.33,0,4.69,6.08,6.7700000000000005,7.5200000000000005,7.92,8.1,8.2,8.290000000000001,8.55,157.68,159.32,161.1,164.01,171.14000000000001,180.46,184.02,186.19,189.79,17.79,17.87,17.94,18.07,18.23,18.400000000000002,18.43,18.43,18.34,N/A,N/A +2012,1,7,12,30,101670,100480,99330,96.76,0,4.5200000000000005,5.98,6.84,7.84,8.48,8.86,9.06,9.200000000000001,9.34,170.41,173.46,176.76,182.17000000000002,185.63,187.74,189.20000000000002,190.39000000000001,191.77,17.61,18.06,18.38,18.75,18.96,19.080000000000002,19.080000000000002,19.06,18.76,N/A,N/A +2012,1,7,13,30,101690,100500,99350,96.02,0,4.17,5.46,6.12,6.88,7.54,8.14,8.43,8.620000000000001,8.84,158.99,162.02,164.83,168.88,174.29,180.48,183.62,185.86,189.37,17.78,17.95,18.07,18.2,18.41,18.650000000000002,18.71,18.73,18.63,N/A,N/A +2012,1,7,14,30,101720,100530,99380,97.83,0.4,4.54,6.12,7.17,8.55,9.15,9.24,9.200000000000001,9.14,8.88,160.53,166.20000000000002,171.95000000000002,181.06,185.49,186.86,188.71,190.44,193.42000000000002,17.400000000000002,16.92,17.27,18.580000000000002,19.03,19.03,19.01,18.990000000000002,18.79,N/A,N/A +2012,1,7,15,30,101750,100560,99410,95.9,0,4.67,6.23,7.09,8.08,8.52,8.6,8.61,8.61,8.59,158.42000000000002,160.97,163.9,169.22,173.16,176.01,178.13,179.9,183.21,17.82,17.6,17.77,18.47,18.86,19.05,19.06,19.04,18.84,N/A,N/A +2012,1,7,16,30,101730,100540,99390,97.14,0,4.09,5.58,6.48,7.55,8.040000000000001,8.13,8.13,8.120000000000001,8.07,159.98,162.79,167.78,178.09,183.76,186.12,188.17000000000002,189.94,192.94,17.6,18,18.43,19.16,19.5,19.61,19.54,19.44,19.13,N/A,N/A +2012,1,7,17,30,101720,100530,99380,97.06,0,4.59,6.07,6.78,7.390000000000001,7.61,7.59,7.5600000000000005,7.54,7.47,159.36,162.49,167.57,177.36,182.71,185.13,187.48,189.57,193.99,17.7,18.14,18.59,19.32,19.61,19.650000000000002,19.59,19.51,19.28,N/A,N/A +2012,1,7,18,30,101730,100540,99400,95.92,0,4.66,6.34,7.05,7.29,7.33,7.26,7.18,7.12,7.0200000000000005,157.22,160.36,165.77,176.59,182.41,185.02,187.8,190.34,195.70000000000002,18,18.46,18.79,19.19,19.35,19.36,19.32,19.27,19.1,N/A,N/A +2012,1,7,19,30,101720,100530,99380,95.02,0,4.93,6.32,6.78,6.94,6.99,6.97,6.99,7.01,7.11,155.3,161,170.53,189.21,197.8,200.47,203.36,206.05,211.98000000000002,18.240000000000002,18.31,18.54,19.11,19.29,19.26,19.19,19.12,19.01,N/A,N/A +2012,1,7,20,30,101690,100510,99360,93.89,0,4.57,6.11,6.62,6.7700000000000005,6.84,6.86,6.890000000000001,6.92,7.12,181.6,185.77,191.9,203.11,209.08,211.88,215.09,218.07,223.18,18.51,18.86,19.07,19.330000000000002,19.43,19.44,19.46,19.490000000000002,19.43,N/A,N/A +2012,1,7,21,30,101690,100500,99360,93.19,0,4.92,6.44,6.92,6.98,7.04,7.1000000000000005,7.19,7.28,7.51,174,178.06,184.95000000000002,199.17000000000002,206.35,209.03,211.64000000000001,214.03,217.66,18.59,18.85,19.05,19.42,19.580000000000002,19.62,19.66,19.69,19.59,N/A,N/A +2012,1,7,22,30,101670,100480,99330,94.46000000000001,0,5.08,6.42,6.84,6.92,6.96,6.96,6.99,7.0200000000000005,7.12,168.63,175.13,181.44,190.83,195.67000000000002,197.5,199.5,201.35,204.4,18.14,18.2,18.5,19.330000000000002,19.68,19.69,19.66,19.62,19.43,N/A,N/A +2012,1,7,23,30,101680,100490,99340,94.56,0,5.07,6.82,7.53,7.82,7.930000000000001,7.91,7.91,7.92,7.890000000000001,167.09,172.44,176.89000000000001,182.15,185.07,186.37,187.93,189.4,192.29,18.080000000000002,18.22,18.61,19.53,19.84,19.73,19.66,19.59,19.36,N/A,N/A +2012,1,8,0,30,101690,100500,99350,95.55,0,5.51,7.15,7.82,8.21,8.34,8.32,8.33,8.35,8.34,164.44,168.73,172.6,177.89000000000001,180.71,182,183.63,185.17000000000002,188.25,17.85,18.09,18.56,19.55,19.86,19.77,19.7,19.63,19.41,N/A,N/A +2012,1,8,1,30,101690,100500,99360,96.16,0.4,5.05,6.7,7.48,8.13,8.38,8.4,8.39,8.370000000000001,8.32,164.82,168.38,172.14000000000001,178.26,181.71,183.43,184.78,185.94,188.14000000000001,17.740000000000002,17.37,17.76,19.16,19.78,19.96,19.900000000000002,19.8,19.51,N/A,N/A +2012,1,8,2,30,101700,100510,99370,96.83,0,4.7,6.28,7.04,7.61,7.9,8.02,8.09,8.15,8.23,166.88,172.22,177.05,183.6,187.29,189.17000000000002,190.6,191.81,194.01,17.6,17.2,17.66,19.3,19.98,20.1,20.02,19.91,19.61,N/A,N/A +2012,1,8,3,30,101720,100530,99380,97.35000000000001,0,4.8100000000000005,6.05,6.75,7.63,8.1,8.290000000000001,8.370000000000001,8.43,8.45,167.93,169.52,171.22,174.13,176.48,178.37,180.12,181.69,184.71,17.490000000000002,17.71,18.14,19.07,19.55,19.77,19.77,19.72,19.47,N/A,N/A +2012,1,8,4,30,101700,100510,99360,95.2,0,4.22,6.11,7.04,7.8100000000000005,8.19,8.31,8.33,8.34,8.22,150.6,158.41,164.68,171.99,175.95000000000002,177.6,178.83,179.84,181.47,17.98,18.5,18.96,19.67,19.97,20.04,19.98,19.89,19.62,N/A,N/A +2012,1,8,5,30,101710,100520,99380,95.51,0,4.44,6.17,7.29,8.85,9.65,9.88,10.05,10.200000000000001,10.27,162.3,166.24,171.58,181.85,187.47,189.49,191.3,192.9,195.46,17.900000000000002,17.900000000000002,18.25,19.18,19.64,19.830000000000002,19.87,19.87,19.66,N/A,N/A +2012,1,8,6,30,101720,100530,99390,95.62,0,4.64,6.38,7.46,8.88,9.77,10.28,10.44,10.5,10.46,160.47,164.9,168.74,174.54,179.68,184.13,186.16,187.49,189.85,18.01,17.88,18.1,18.86,19.36,19.71,19.73,19.69,19.5,N/A,N/A +2012,1,8,7,30,101750,100560,99410,93.78,0,5.08,6.8,7.84,9.36,10.55,11.44,11.71,11.78,11.69,170.11,172.20000000000002,174.08,177.1,180.34,183.77,185.53,186.66,188.23,18.41,18.43,18.55,19.01,19.5,20.03,20.13,20.11,19.81,N/A,N/A +2012,1,8,8,30,101720,100540,99390,92.67,0,5.12,7.13,8.16,9.3,10.27,11.13,11.41,11.55,11.61,161.61,164.70000000000002,167.33,171.13,175.11,179.18,181.4,182.99,185.77,18.68,18.85,19.05,19.56,19.89,20.12,20.13,20.1,19.92,N/A,N/A +2012,1,8,9,30,101690,100500,99360,92.42,0,5.93,8.08,9.13,10.13,11.02,11.84,12.67,13.46,13.81,158.49,161.83,164.4,167.29,170.76,174.61,177.89000000000001,180.87,183.38,18.69,18.85,18.97,19.23,19.45,19.63,19.81,19.97,19.92,N/A,N/A +2012,1,8,10,30,101700,100510,99360,92.16,0,7.33,9.13,9.99,10.93,11.89,12.89,13.55,14.08,14.13,168.52,170.45000000000002,172.22,174.52,176.59,178.55,180.43,182.16,185.70000000000002,18.72,18.88,19.01,19.240000000000002,19.53,19.84,19.96,20.03,19.87,N/A,N/A +2012,1,8,11,30,101720,100530,99390,92.19,0,5.95,7.71,8.51,9.34,10.14,10.89,11.63,12.31,13.31,176.66,177.24,177.58,177.94,178.36,178.81,179.53,180.31,183.62,18.740000000000002,18.94,19.01,19.09,19.17,19.240000000000002,19.3,19.35,19.39,N/A,N/A +2012,1,8,12,30,101740,100550,99400,91.92,7,5.86,7.68,8.53,9.39,10.19,10.97,11.67,12.33,13.450000000000001,191.11,189.29,188.36,187.75,187.47,187.41,187.72,188.11,189.35,18.82,18.95,18.97,19.01,19.080000000000002,19.17,19.22,19.27,19.23,N/A,N/A +2012,1,8,13,30,101750,100560,99410,91.99,0.4,5.9,7.7,8.53,9.44,10.32,11.17,11.98,12.72,13.97,187.6,186.41,185.77,185.39000000000001,185.27,185.32,185.8,186.35,187.93,18.81,18.94,18.97,19,19.080000000000002,19.2,19.3,19.39,19.47,N/A,N/A +2012,1,8,14,30,101780,100600,99450,92.23,0,6.54,8.4,9.25,10.15,11.01,11.85,12.67,13.450000000000001,13.88,185.22,185.36,185.5,185.78,186.31,187,188.78,190.75,194.44,18.73,19.09,19.25,19.38,19.51,19.63,19.8,19.96,20.04,N/A,N/A +2012,1,8,15,30,101780,100600,99450,90.58,0,7.2700000000000005,9.36,10.31,11.22,11.77,12.1,12.11,12.05,12.120000000000001,182.05,183.17000000000002,184.28,185.96,187.61,189.20000000000002,190.5,191.61,192.94,19.11,19.56,19.8,20.09,20.3,20.46,20.51,20.53,20.3,N/A,N/A +2012,1,8,16,30,101790,100610,99460,92.65,0,5.8,7.67,8.66,9.85,10.73,11.370000000000001,11.6,11.71,11.74,174.85,177.58,179.76,182.48,184.52,186.04,187.01,187.76,189.32,18.78,19.14,19.39,19.77,20.05,20.26,20.34,20.39,20.17,N/A,N/A +2012,1,8,17,30,101790,100600,99450,93.21000000000001,0,5.0600000000000005,6.94,7.94,9.09,9.870000000000001,10.39,10.59,10.71,10.93,170.29,172.9,175.25,178.41,180.65,182.22,183.04,183.61,185.06,18.79,19.18,19.44,19.8,20.02,20.150000000000002,20.2,20.23,20.07,N/A,N/A +2012,1,8,18,30,101790,100610,99460,94.13,0,4.68,6.41,7.36,8.56,9.47,10.15,10.39,10.51,10.67,163.44,166.54,169.19,172.87,175.81,178.18,179.23,179.86,181.16,18.740000000000002,19.06,19.29,19.64,19.89,20.09,20.16,20.2,20.03,N/A,N/A +2012,1,8,19,30,101800,100610,99460,95.43,0,4.5,6.19,7.17,8.43,9.27,9.78,10.08,10.3,10.55,156.67000000000002,160.96,164.22,168.21,170.9,172.62,173.75,174.66,176.28,18.46,18.93,19.25,19.650000000000002,19.88,20.01,20.07,20.12,19.97,N/A,N/A +2012,1,8,20,30,101780,100590,99440,94.02,0,4.72,6.49,7.41,8.47,9.3,9.94,10.19,10.32,10.56,150.74,153.49,156.03,159.77,163.02,165.88,167.32,168.29,170.19,18.72,19.06,19.27,19.54,19.740000000000002,19.900000000000002,19.96,20,19.91,N/A,N/A +2012,1,8,21,30,101750,100570,99420,94.88,0,4.53,6.18,7.09,8.13,8.92,9.53,9.8,9.96,10.23,144.05,147.73,150.82,154.70000000000002,158.81,162.98,165.15,166.68,169.5,18.41,18.82,19.080000000000002,19.37,19.61,19.81,19.93,20,20.05,N/A,N/A +2012,1,8,22,30,101730,100540,99400,95.75,0,4.41,6.29,7.390000000000001,8.6,9.21,9.4,9.620000000000001,9.82,9.99,141.05,145.75,150.37,157.29,161.31,163.27,165.27,167.11,169.88,18.05,18.79,19.26,19.75,19.990000000000002,20.09,20.17,20.25,20.16,N/A,N/A +2012,1,8,23,30,101740,100550,99400,95.4,0,5.15,6.83,7.8500000000000005,9.27,10.17,10.68,10.82,10.870000000000001,10.97,142.31,144.9,147.51,151.96,156.31,160.37,162.17000000000002,163.34,165.69,18.06,18.01,18.29,19.1,19.6,19.92,20.01,20.04,19.98,N/A,N/A +2012,1,9,0,30,101740,100550,99410,95.61,0.4,5.34,7.07,8.11,9.46,10.16,10.43,10.6,10.73,10.75,134.14000000000001,136.69,140.36,147.63,151.95000000000002,154.24,156.21,157.94,160.64000000000001,18,17.54,17.78,18.86,19.48,19.85,19.990000000000002,20.07,19.94,N/A,N/A +2012,1,9,1,30,101740,100540,99400,97.46000000000001,0.4,5.0600000000000005,6.63,7.72,9.35,10.19,10.47,10.61,10.69,10.73,125.52,128.07,132.47,142.48,148.01,150.36,152.29,153.96,156.83,17.62,17.14,17.400000000000002,18.61,19.36,19.86,20.02,20.1,20.01,N/A,N/A +2012,1,9,2,30,101740,100540,99400,98.64,0.7000000000000001,5.21,6.65,7.65,9.1,9.83,10.07,10.15,10.19,10.22,124.53,127.28,132.23,143.11,149.23,152.02,154.21,156.08,158.99,17.39,16.81,17.07,18.32,19.2,19.85,20.080000000000002,20.2,20.13,N/A,N/A +2012,1,9,3,30,101720,100530,99380,99.14,0.4,6.74,7.930000000000001,8.68,9.8,10.47,10.82,10.89,10.9,10.86,129.26,130.96,133.22,137.57,142.23,146.94,149.12,150.62,153.13,17.3,17.240000000000002,17.400000000000002,17.8,18.57,19.55,19.78,19.86,19.73,N/A,N/A +2012,1,9,4,30,101700,100510,99370,95.07000000000001,0,6,7.63,8.51,9.540000000000001,10.06,10.22,10.24,10.24,10.32,130.86,133.09,135.99,141.16,146.25,151.04,152.14000000000001,152.42000000000002,154.66,18.1,18.14,18.150000000000002,18.16,18.97,20.26,20.32,20.14,19.92,N/A,N/A +2012,1,9,5,30,101680,100480,99340,98.8,0.4,6.05,7.3,8.17,9.540000000000001,10.23,10.48,10.43,10.33,10.13,125.24000000000001,126.88000000000001,129.41,134.54,139.27,143.42000000000002,145.16,146.25,148.3,17.36,17.21,17.44,18.13,18.990000000000002,19.91,20.080000000000002,20.080000000000002,19.91,N/A,N/A +2012,1,9,6,30,101660,100470,99320,96.72,0,6.69,8.09,8.84,9.81,10.82,11.870000000000001,11.76,11.44,11.16,124.5,125.9,127.3,129.6,133.24,137.70000000000002,143.08,147.8,149.9,18.14,18.080000000000002,18.05,18.01,18.13,18.31,19.2,20.11,20.17,N/A,N/A +2012,1,9,7,30,101650,100460,99310,95.65,0,6.46,7.930000000000001,8.67,9.49,10.44,11.47,12.200000000000001,12.77,12.35,123.81,124.75,125.71000000000001,127.2,129.62,132.69,137.32,141.81,146.3,18.35,18.32,18.29,18.26,18.16,18.03,18.41,18.84,19.56,N/A,N/A +2012,1,9,8,30,101630,100440,99290,95.38,0,4.22,5.95,6.890000000000001,7.88,8.84,9.8,10.76,11.69,13.14,126.97,127,127.21000000000001,127.68,128.7,130.14000000000001,132.42000000000002,134.9,141.71,18.47,18.54,18.55,18.56,18.53,18.490000000000002,18.46,18.44,18.68,N/A,N/A +2012,1,9,9,30,101630,100450,99300,93.86,0,5.38,6.91,7.7,8.620000000000001,9.49,10.35,11.15,11.88,12.870000000000001,130.14000000000001,130.6,131.39000000000001,133.37,135.44,137.71,140.23,142.72,147.11,18.75,18.87,18.91,18.94,18.96,18.98,19.01,19.04,19.22,N/A,N/A +2012,1,9,10,30,101540,100350,99200,93.62,53.1,6.5600000000000005,8.38,9.200000000000001,10.040000000000001,10.94,11.82,12.700000000000001,13.48,14.27,97.86,101.14,104.21000000000001,108.09,113.04,118.16,123.11,127.5,132.61,18.79,18.85,18.900000000000002,18.96,19.04,19.12,19.2,19.27,19.37,N/A,N/A +2012,1,9,11,30,101540,100360,99210,92.58,169.60000000000002,6.51,8.4,9.38,10.24,11.03,11.78,12.56,13.32,14.84,75.94,80.66,84.68,89.35000000000001,93.87,98.48,103.27,107.95,116.58,18.990000000000002,19.150000000000002,19.17,19.11,19.04,18.97,18.92,18.89,18.85,N/A,N/A +2012,1,9,12,30,101580,100390,99250,91.57000000000001,2.6,6.29,8.34,9.24,10.07,10.790000000000001,11.44,11.99,12.49,13.23,164.70000000000002,163.54,162.5,160.92000000000002,159.72,158.77,158.35,158.08,158.11,19.27,19.41,19.43,19.43,19.42,19.41,19.39,19.36,19.26,N/A,N/A +2012,1,9,13,30,101570,100380,99240,91.95,0,7.26,9.13,9.97,10.81,11.57,12.280000000000001,12.98,13.64,14.950000000000001,150.76,151.32,151.88,152.75,153.65,154.59,155.54,156.46,158.11,19.150000000000002,19.26,19.27,19.28,19.28,19.27,19.32,19.37,19.400000000000002,N/A,N/A +2012,1,9,14,30,101590,100400,99260,92.76,0,7.140000000000001,8.97,9.81,10.700000000000001,11.55,12.370000000000001,13.22,14.040000000000001,15.530000000000001,150.99,152.13,152.93,153.86,154.71,155.52,156.36,157.16,158.56,18.98,19.04,19.07,19.13,19.21,19.3,19.39,19.47,19.5,N/A,N/A +2012,1,9,15,30,101550,100370,99230,92.28,0,7.41,9.3,10.21,11.15,12.030000000000001,12.9,13.76,14.58,15.85,149.02,150.24,151.15,152.14000000000001,153.07,153.96,154.76,155.51,156.75,19.07,19.23,19.29,19.34,19.39,19.44,19.48,19.51,19.47,N/A,N/A +2012,1,9,16,30,101520,100340,99200,92.84,0,7.34,9.15,10.05,11.05,12,12.93,13.85,14.72,16.54,144.3,145.77,146.9,148.26,149.56,150.84,152.34,153.84,156.87,18.96,19.03,19.080000000000002,19.27,19.400000000000002,19.5,19.6,19.7,19.89,N/A,N/A +2012,1,9,17,30,101500,100320,99170,93.31,0,6.84,8.56,9.39,10.27,11.1,11.89,12.67,13.4,14.59,137.36,139.20000000000002,140.6,142.28,143.85,145.36,146.79,148.13,150.26,18.900000000000002,19.06,19.12,19.14,19.18,19.22,19.240000000000002,19.26,19.240000000000002,N/A,N/A +2012,1,9,18,30,101440,100260,99110,93.07000000000001,0.4,7.51,9.24,10.1,11,11.85,12.700000000000001,13.48,14.200000000000001,15.32,129.34,131.2,132.74,134.75,136.69,138.67000000000002,140.66,142.56,147.23,18.95,19.02,19.05,19.13,19.2,19.26,19.35,19.42,19.63,N/A,N/A +2012,1,9,19,30,101450,100260,99120,92.63,0,6.62,8.47,9.36,10.290000000000001,11.14,11.93,12.63,13.27,14.290000000000001,123,126.04,128.32,130.92000000000002,133.5,136.09,139.18,142.19,148.25,19.07,19.16,19.2,19.28,19.39,19.52,19.66,19.79,20.01,N/A,N/A +2012,1,9,20,30,101430,100250,99100,93.09,0,6.6000000000000005,8.290000000000001,9.1,10,10.86,11.73,12.43,13.06,13.39,114.83,117.83,120.4,123.97,127.49000000000001,131.14000000000001,134.31,137.17000000000002,143.94,18.94,19.01,19.04,19.150000000000002,19.3,19.5,19.64,19.77,19.88,N/A,N/A +2012,1,9,21,30,101300,100120,98980,92.61,0,8.870000000000001,10.73,11.52,12.31,13.02,13.66,14.18,14.620000000000001,14.93,113.42,114.96000000000001,116.56,119.11,122.5,126.39,130.88,135.15,140.65,18.990000000000002,19.06,19.080000000000002,19.11,19.26,19.48,19.73,19.95,19.91,N/A,N/A +2012,1,9,22,30,101320,100140,98990,93.42,0,7.82,9.52,10.290000000000001,11.02,11.67,12.26,12.82,13.32,13.86,97.29,99.17,100.76,102.77,105.17,107.87,111.45,115.06,124.56,18.8,18.88,18.900000000000002,18.91,18.93,18.95,18.92,18.89,19.12,N/A,N/A +2012,1,9,23,30,101310,100130,98980,93.83,0,7.8500000000000005,9.52,10.27,11,11.71,12.4,13.08,13.72,14.780000000000001,109.77,110.63,111.39,112.61,114.16,115.9,118.56,121.29,133.54,18.71,18.76,18.77,18.78,18.79,18.81,18.82,18.830000000000002,18.98,N/A,N/A +2012,1,10,0,30,101300,100120,98980,93.15,6.6000000000000005,7.3,9.1,9.950000000000001,10.83,11.66,12.450000000000001,13.1,13.68,13.86,122.03,122.13,122.4,122.93,123.81,124.93,127.41,130.05,142.21,18.88,18.96,18.96,18.97,18.97,18.97,18.94,18.91,19.55,N/A,N/A +2012,1,10,1,30,101280,100100,98960,92.73,16.1,7.4,9.21,10.05,10.96,11.74,12.44,12.97,13.42,14.040000000000001,112.57000000000001,114.95,116.31,117.95,119.89,121.99000000000001,125.37,128.83,138.26,18.96,19.02,19.02,19.01,19,19.01,19.02,19.04,19.26,N/A,N/A +2012,1,10,2,30,101290,100110,98970,91.94,56,8.69,10.63,11.4,11.98,12.34,12.55,12.6,12.6,12.64,110.45,112.39,114.44,117.29,120.33,123.4,127.18,130.8,140.54,19.11,19.2,19.21,19.2,19.240000000000002,19.3,19.28,19.240000000000002,19.11,N/A,N/A +2012,1,10,3,30,101370,100190,99040,93.34,132.6,4.14,5.78,6.28,6.2700000000000005,6.2,6.0600000000000005,5.99,5.94,5.91,135.49,130.3,130.06,137.16,142.96,147.92000000000002,150.42000000000002,151.99,152.9,18.97,19.16,19.16,19.02,18.92,18.830000000000002,18.68,18.54,18.21,N/A,N/A +2012,1,10,4,30,101260,100080,98940,94.2,22.700000000000003,3.97,5.24,5.87,6.65,7.36,8.01,8.49,8.870000000000001,9.06,34.11,48.78,60.74,72.46000000000001,82.16,90.3,97.14,103.13,108.52,18.76,18.830000000000002,18.82,18.8,18.8,18.830000000000002,18.81,18.77,18.41,N/A,N/A +2012,1,10,5,30,101230,100050,98900,93.99,18.7,1.9100000000000001,2.88,3.27,3.8200000000000003,4.32,4.79,5.33,5.86,6.5200000000000005,84.97,105.67,116.42,124.34,130.37,135.11,140.21,145.24,151.22,19.09,19.11,18.990000000000002,18.830000000000002,18.72,18.63,18.54,18.45,18.28,N/A,N/A +2012,1,10,6,30,101230,100050,98910,91.39,0.4,4.99,6.0600000000000005,6.3100000000000005,6.48,6.57,6.61,6.62,6.61,6.59,222.1,228.45000000000002,232.65,236.94,240.47,243.48000000000002,246.57,249.41,255.68,19.47,19.89,19.98,19.91,19.85,19.78,19.72,19.67,19.55,N/A,N/A +2012,1,10,7,30,101300,100120,98970,94.92,0,7.25,8.6,9.15,9.64,10.01,10.28,10.32,10.290000000000001,9.58,280.89,281.76,282.46,283.29,283.99,284.61,285.28000000000003,285.90000000000003,287.51,18.63,18.6,18.53,18.43,18.28,18.12,17.92,17.73,17.47,N/A,N/A +2012,1,10,8,30,101340,100150,98990,93.44,0,9.450000000000001,10.34,10.58,10.71,10.8,10.870000000000001,10.950000000000001,11.03,11.36,289.21,289.65000000000003,289.95,290.33,290.75,291.19,291.81,292.44,294.65000000000003,17.36,17.06,16.89,16.7,16.51,16.330000000000002,16.15,15.97,15.63,N/A,N/A +2012,1,10,9,30,101350,100150,98990,91.67,0,10.25,11.09,11.28,11.36,11.39,11.41,11.42,11.44,11.64,291.24,291.44,291.6,291.76,291.94,292.12,292.37,292.62,293.64,16.35,15.96,15.77,15.57,15.38,15.200000000000001,15.01,14.84,14.5,N/A,N/A +2012,1,10,10,30,101370,100170,99000,91.26,0,9.540000000000001,10.28,10.46,10.53,10.56,10.58,10.59,10.59,10.61,293.01,293.21,293.32,293.43,293.55,293.66,293.79,293.92,294.28000000000003,15.200000000000001,14.74,14.530000000000001,14.33,14.13,13.94,13.74,13.55,13.17,N/A,N/A +2012,1,10,11,30,101400,100190,99010,90.54,0,10.14,10.93,11.11,11.18,11.22,11.23,11.23,11.23,11.23,289.73,289.83,289.91,289.98,290.05,290.12,290.21,290.3,290.55,14.19,13.66,13.44,13.23,13.030000000000001,12.84,12.64,12.46,12.08,N/A,N/A +2012,1,10,12,30,101440,100230,99040,90.62,0,10.51,11.34,11.540000000000001,11.64,11.69,11.73,11.74,11.76,11.8,287.08,287.19,287.27,287.35,287.44,287.52,287.63,287.75,288.06,13.14,12.55,12.32,12.1,11.89,11.71,11.5,11.32,10.94,N/A,N/A +2012,1,10,13,30,101460,100240,99060,87.91,0,8.870000000000001,9.51,9.67,9.76,9.81,9.86,9.89,9.91,9.96,287.58,287.76,287.91,288.04,288.19,288.31,288.47,288.61,288.94,12.8,12.24,12.01,11.790000000000001,11.58,11.39,11.19,11,10.620000000000001,N/A,N/A +2012,1,10,14,30,101490,100270,99080,87.88,0,9.83,10.55,10.72,10.8,10.85,10.870000000000001,10.89,10.9,10.9,288.72,288.95,289.09000000000003,289.23,289.36,289.49,289.63,289.76,290.08,12.05,11.42,11.18,10.950000000000001,10.74,10.55,10.34,10.15,9.77,N/A,N/A +2012,1,10,15,30,101480,100260,99070,86.71000000000001,0,8.85,9.48,9.65,9.74,9.8,9.84,9.870000000000001,9.9,9.94,292.05,292.25,292.36,292.46,292.57,292.66,292.78000000000003,292.89,293.13,11.86,11.25,11.01,10.790000000000001,10.57,10.38,10.17,9.98,9.6,N/A,N/A +2012,1,10,16,30,101460,100240,99050,84.57000000000001,0,7.8500000000000005,8.39,8.53,8.6,8.65,8.69,8.72,8.74,8.77,290.45,290.42,290.39,290.36,290.32,290.29,290.26,290.22,290.16,12.18,11.6,11.370000000000001,11.15,10.94,10.75,10.540000000000001,10.35,9.96,N/A,N/A +2012,1,10,17,30,101420,100200,99020,83.29,0,8.53,9.13,9.28,9.35,9.39,9.42,9.43,9.44,9.43,288.98,289.05,289.11,289.17,289.23,289.27,289.33,289.38,289.47,12.65,12.07,11.84,11.620000000000001,11.4,11.200000000000001,10.99,10.8,10.4,N/A,N/A +2012,1,10,18,30,101410,100200,99010,79.49,0,7.98,8.53,8.67,8.74,8.790000000000001,8.83,8.85,8.870000000000001,8.89,292.53000000000003,292.40000000000003,292.34000000000003,292.27,292.2,292.14,292.07,292.01,291.88,12.57,12.01,11.78,11.56,11.35,11.15,10.94,10.75,10.35,N/A,N/A +2012,1,10,19,30,101380,100160,98980,76.32000000000001,0,8.32,8.92,9.08,9.17,9.23,9.27,9.3,9.33,9.370000000000001,289.25,289.15000000000003,289.08,289.02,288.96,288.91,288.84000000000003,288.78000000000003,288.66,12.81,12.25,12.030000000000001,11.81,11.6,11.4,11.19,11,10.6,N/A,N/A +2012,1,10,20,30,101350,100140,98960,74.65,0,8.22,8.83,8.99,9.08,9.14,9.19,9.22,9.24,9.28,288.40000000000003,288.53000000000003,288.54,288.54,288.53000000000003,288.53000000000003,288.5,288.48,288.44,13.39,12.870000000000001,12.65,12.42,12.21,12.02,11.81,11.61,11.21,N/A,N/A +2012,1,10,21,30,101320,100110,98930,71.58,0,8.45,9.1,9.290000000000001,9.39,9.47,9.52,9.57,9.6,9.66,284.46,284.92,285.22,285.49,285.74,285.96,286.19,286.40000000000003,286.8,13.69,13.17,12.96,12.74,12.530000000000001,12.33,12.120000000000001,11.93,11.53,N/A,N/A +2012,1,10,22,30,101290,100080,98900,69.73,0,9.05,9.74,9.92,10.01,10.07,10.11,10.14,10.16,10.19,293.09000000000003,292.88,292.78000000000003,292.68,292.58,292.49,292.38,292.29,292.09000000000003,13.71,13.19,12.97,12.75,12.540000000000001,12.35,12.14,11.94,11.540000000000001,N/A,N/A +2012,1,10,23,30,101310,100100,98920,72.53,0,9.94,10.71,10.9,11,11.06,11.1,11.120000000000001,11.14,11.14,295.71,295.62,295.54,295.45,295.38,295.3,295.22,295.15000000000003,295,13.3,12.73,12.5,12.27,12.06,11.86,11.65,11.450000000000001,11.05,N/A,N/A +2012,1,11,0,30,101350,100130,98950,72.68,0,10.28,11.16,11.41,11.55,11.65,11.73,11.790000000000001,11.84,11.92,292.11,291.97,291.89,291.81,291.73,291.67,291.6,291.54,291.41,12.790000000000001,12.200000000000001,11.96,11.73,11.51,11.31,11.1,10.91,10.51,N/A,N/A +2012,1,11,1,30,101340,100120,98940,73.26,0,8.96,9.66,9.85,9.96,10.040000000000001,10.1,10.15,10.200000000000001,10.27,287.48,287.08,286.83,286.6,286.37,286.18,285.96,285.76,285.36,12.780000000000001,12.21,11.99,11.77,11.55,11.36,11.15,10.96,10.56,N/A,N/A +2012,1,11,2,30,101340,100120,98940,73.75,0,7.140000000000001,7.640000000000001,7.79,7.88,7.95,8.01,8.06,8.11,8.22,280.69,280.23,279.95,279.67,279.41,279.16,278.91,278.67,278.18,12.77,12.24,12.02,11.81,11.6,11.41,11.200000000000001,11.02,10.63,N/A,N/A +2012,1,11,3,30,101300,100090,98910,74.38,0,7.75,8.36,8.540000000000001,8.66,8.75,8.83,8.91,8.98,9.14,276.87,276.84000000000003,276.79,276.75,276.7,276.67,276.63,276.6,276.56,13.17,12.65,12.43,12.21,12.01,11.82,11.620000000000001,11.44,11.06,N/A,N/A +2012,1,11,4,30,101260,100040,98870,71.83,0,8.290000000000001,8.97,9.16,9.28,9.38,9.450000000000001,9.53,9.6,9.76,275.91,275.74,275.64,275.54,275.45,275.38,275.3,275.24,275.16,13.91,13.41,13.19,12.99,12.790000000000001,12.61,12.41,12.23,11.86,N/A,N/A +2012,1,11,5,30,101240,100030,98850,71.93,0,8.8,9.52,9.73,9.85,9.94,10.01,10.07,10.120000000000001,10.22,275.26,275.16,275.09000000000003,275.04,275,274.96,274.93,274.90000000000003,274.87,14.49,14.01,13.8,13.59,13.38,13.19,12.99,12.8,12.41,N/A,N/A +2012,1,11,6,30,101220,100010,98840,70.65,0,9.53,10.35,10.58,10.72,10.81,10.870000000000001,10.92,10.96,11.03,274.03000000000003,273.99,273.97,273.97,273.99,274,274.02,274.05,274.12,14.9,14.450000000000001,14.24,14.030000000000001,13.83,13.64,13.44,13.25,12.86,N/A,N/A +2012,1,11,7,30,101230,100020,98850,71.97,0,9.16,9.83,9.99,10.05,10.08,10.09,10.09,10.09,10.07,287.6,286.78000000000003,286.22,285.67,285.13,284.62,284.05,283.52,282.3,14.11,13.63,13.42,13.22,13.02,12.84,12.65,12.47,12.11,N/A,N/A +2012,1,11,8,30,101220,100010,98830,76.05,0,7.69,8.2,8.31,8.36,8.39,8.41,8.43,8.45,8.540000000000001,285.36,285.19,285.06,284.93,284.8,284.68,284.52,284.36,283.95,13.370000000000001,12.870000000000001,12.67,12.47,12.27,12.09,11.9,11.73,11.38,N/A,N/A +2012,1,11,9,30,101220,100010,98830,74.72,0,6.83,7.26,7.36,7.41,7.44,7.47,7.5,7.54,7.65,280.41,280.5,280.57,280.63,280.71,280.79,280.91,281.04,281.45,13.450000000000001,12.98,12.77,12.57,12.38,12.200000000000001,12.01,11.83,11.48,N/A,N/A +2012,1,11,10,30,101210,100000,98820,74.61,0,6.34,6.72,6.8100000000000005,6.86,6.890000000000001,6.92,6.95,6.98,7.1000000000000005,277.12,277.14,277.17,277.2,277.25,277.31,277.40000000000003,277.51,277.94,13.49,13.02,12.82,12.620000000000001,12.43,12.25,12.05,11.88,11.52,N/A,N/A +2012,1,11,11,30,101210,100000,98820,72.69,0,5.82,6.16,6.23,6.2700000000000005,6.29,6.3,6.3100000000000005,6.33,6.38,274.34000000000003,273.88,273.55,273.21,272.85,272.52,272.15,271.8,271.09000000000003,13.870000000000001,13.43,13.23,13.030000000000001,12.84,12.66,12.47,12.290000000000001,11.92,N/A,N/A +2012,1,11,12,30,101220,100010,98840,74.04,0,5.62,5.95,6.03,6.07,6.09,6.11,6.13,6.15,6.2,270.22,269.78000000000003,269.48,269.17,268.86,268.57,268.25,267.95,267.31,14.22,13.8,13.6,13.4,13.200000000000001,13.02,12.83,12.64,12.27,N/A,N/A +2012,1,11,13,30,101200,99990,98820,72.61,0,5.97,6.3500000000000005,6.44,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,6.63,269.57,269.21,268.95,268.7,268.44,268.18,267.89,267.62,266.96,14.59,14.17,13.98,13.780000000000001,13.58,13.4,13.200000000000001,13.02,12.65,N/A,N/A +2012,1,11,14,30,101220,100010,98840,70.85000000000001,0,6.22,6.61,6.69,6.73,6.75,6.76,6.7700000000000005,6.78,6.8100000000000005,268.96,268.57,268.31,268.05,267.78000000000003,267.53000000000003,267.23,266.94,266.25,14.71,14.290000000000001,14.1,13.9,13.71,13.52,13.33,13.15,12.780000000000001,N/A,N/A +2012,1,11,15,30,101200,100000,98820,66.62,0,6.01,6.36,6.42,6.45,6.46,6.46,6.46,6.46,6.5200000000000005,262.1,262.05,262.02,261.98,261.93,261.87,261.78000000000003,261.69,261.46,14.85,14.450000000000001,14.26,14.06,13.870000000000001,13.69,13.5,13.32,12.98,N/A,N/A +2012,1,11,16,30,101160,99960,98790,64.94,0,5.74,6.09,6.15,6.18,6.2,6.21,6.23,6.26,6.46,257.08,256.84000000000003,256.7,256.56,256.41,256.27,256.09000000000003,255.92000000000002,255.52,15.02,14.63,14.450000000000001,14.26,14.07,13.89,13.71,13.540000000000001,13.23,N/A,N/A +2012,1,11,17,30,101100,99900,98730,63.89,0,6.03,6.41,6.49,6.53,6.5600000000000005,6.57,6.6000000000000005,6.63,6.83,249.29,249.17000000000002,249.13,249.11,249.09,249.07,249.08,249.12,249.55,15.46,15.09,14.9,14.71,14.530000000000001,14.35,14.16,13.99,13.68,N/A,N/A +2012,1,11,18,30,101070,99870,98710,60.86,0,6.3100000000000005,6.7700000000000005,6.88,6.94,6.98,7,7.03,7.05,7.11,236.20000000000002,236.07,236,235.93,235.87,235.81,235.75,235.71,235.69,16.17,15.83,15.65,15.46,15.27,15.09,14.89,14.71,14.35,N/A,N/A +2012,1,11,19,30,101020,99830,98670,61.78,0,6.3,6.8100000000000005,6.92,6.97,7,7.0200000000000005,7.04,7.0600000000000005,7.140000000000001,233.98000000000002,233.97,233.99,234.02,234.05,234.08,234.16,234.26,234.74,16.9,16.6,16.43,16.240000000000002,16.05,15.870000000000001,15.68,15.5,15.15,N/A,N/A +2012,1,11,20,30,100960,99760,98610,69.98,0,7.43,8.120000000000001,8.28,8.36,8.4,8.43,8.44,8.45,8.47,226.9,227.06,227.21,227.37,227.54,227.72,227.93,228.14000000000001,228.72,17.43,17.17,17.01,16.830000000000002,16.64,16.47,16.27,16.1,15.73,N/A,N/A +2012,1,11,21,30,100900,99720,98560,74.60000000000001,0,8.8,9.69,9.93,10.08,10.17,10.25,10.290000000000001,10.33,10.370000000000001,220.73000000000002,220.88,220.99,221.11,221.23000000000002,221.35,221.5,221.63,222.01,17.6,17.37,17.22,17.04,16.85,16.68,16.48,16.31,15.94,N/A,N/A +2012,1,11,22,30,100850,99660,98510,75.53,0,8.83,9.870000000000001,10.200000000000001,10.46,10.68,10.88,11.09,11.290000000000001,11.76,219.43,219.79,220.06,220.39000000000001,220.79,221.22,221.86,222.5,224.41,17.82,17.62,17.490000000000002,17.330000000000002,17.16,17.01,16.86,16.72,16.47,N/A,N/A +2012,1,11,23,30,100840,99650,98500,79.19,0,8.73,9.85,10.23,10.53,10.76,10.96,11.13,11.28,11.55,222.76,223,223.16,223.32,223.49,223.64000000000001,223.84,224.05,224.63,18,17.82,17.69,17.53,17.36,17.2,17.02,16.85,16.51,N/A,N/A +2012,1,12,0,30,100830,99650,98500,82.28,0,8.26,9.38,9.8,10.13,10.41,10.64,10.870000000000001,11.07,11.53,221.94,222.14000000000001,222.3,222.5,222.72,222.97,223.3,223.64000000000001,224.57,18.14,18.01,17.900000000000002,17.76,17.62,17.48,17.330000000000002,17.2,16.94,N/A,N/A +2012,1,12,1,30,100820,99640,98490,82.11,0,7.87,9.1,9.58,9.98,10.34,10.67,11,11.33,12.11,219.03,219.33,219.58,219.9,220.23000000000002,220.58,220.98000000000002,221.37,222.33,18.32,18.25,18.16,18.04,17.92,17.8,17.67,17.55,17.31,N/A,N/A +2012,1,12,2,30,100840,99650,98510,80.24,0,8.24,9.63,10.18,10.68,11.11,11.51,11.870000000000001,12.21,12.81,220.70000000000002,221.03,221.28,221.58,221.89000000000001,222.19,222.53,222.85,223.6,18.54,18.51,18.44,18.330000000000002,18.22,18.1,17.98,17.86,17.6,N/A,N/A +2012,1,12,3,30,100850,99670,98520,80.4,0,8.57,10.02,10.6,11.120000000000001,11.56,11.96,12.33,12.66,13.280000000000001,224.70000000000002,225.08,225.37,225.73000000000002,226.11,226.5,226.96,227.39000000000001,228.5,18.64,18.62,18.56,18.46,18.35,18.23,18.11,18,17.76,N/A,N/A +2012,1,12,4,30,100880,99700,98560,80.86,0,8.620000000000001,10.1,10.71,11.25,11.71,12.13,12.52,12.88,13.55,233.21,233.55,233.8,234.11,234.44,234.8,235.24,235.66,236.82,18.69,18.69,18.64,18.55,18.46,18.36,18.25,18.150000000000002,17.96,N/A,N/A +2012,1,12,5,30,100920,99740,98590,79.96000000000001,0,8.59,10.08,10.700000000000001,11.26,11.73,12.16,12.56,12.92,13.57,240.98000000000002,241.15,241.28,241.45000000000002,241.65,241.85,242.15,242.45000000000002,243.48000000000002,18.76,18.8,18.77,18.7,18.62,18.54,18.47,18.39,18.29,N/A,N/A +2012,1,12,6,30,100990,99810,98660,83.37,0,7.66,9.28,9.96,10.6,11.14,11.61,12,12.34,12.89,247.53,247.89000000000001,248.14000000000001,248.52,248.93,249.36,249.81,250.24,251.19,18.45,18.6,18.62,18.580000000000002,18.53,18.46,18.35,18.25,18,N/A,N/A +2012,1,12,7,30,101110,99910,98740,73.63,0,10.040000000000001,10.93,11.17,11.3,11.42,11.52,11.69,11.88,12.86,295.16,295.7,296.04,296.46,296.96,297.47,298.26,299.11,302.27,15.64,15.290000000000001,15.11,14.92,14.73,14.56,14.38,14.22,13.96,N/A,N/A +2012,1,12,8,30,101210,100000,98830,74.25,0,13.32,14.59,14.91,15.06,15.15,15.21,15.23,15.25,15.27,318.85,318.92,318.97,319.01,319.07,319.12,319.19,319.26,319.46,14.4,13.91,13.700000000000001,13.49,13.290000000000001,13.1,12.9,12.71,12.34,N/A,N/A +2012,1,12,9,30,101370,100150,98960,79.08,0,13.97,15.290000000000001,15.63,15.81,15.92,15.99,16.03,16.06,16.080000000000002,337.54,337.73,337.84000000000003,337.94,338.05,338.15000000000003,338.26,338.37,338.61,12.48,11.85,11.6,11.370000000000001,11.15,10.950000000000001,10.74,10.55,10.16,N/A,N/A +2012,1,12,10,30,101500,100280,99080,79.96000000000001,0,13.780000000000001,15.040000000000001,15.370000000000001,15.52,15.610000000000001,15.67,15.700000000000001,15.71,15.71,339.83,340.09000000000003,340.24,340.37,340.5,340.62,340.76,340.89,341.16,11.13,10.42,10.15,9.91,9.69,9.49,9.28,9.09,8.700000000000001,N/A,N/A +2012,1,12,11,30,101660,100420,99220,80.43,0,14.51,15.88,16.26,16.47,16.6,16.7,16.76,16.8,16.86,348.87,348.79,348.72,348.65000000000003,348.58,348.52,348.45,348.39,348.26,9.93,9.120000000000001,8.83,8.58,8.35,8.14,7.92,7.72,7.32,N/A,N/A +2012,1,12,12,30,101770,100530,99320,78.75,0,16.14,17.7,18.12,18.34,18.48,18.59,18.650000000000002,18.7,18.77,349.93,349.93,349.91,349.89,349.86,349.84000000000003,349.81,349.79,349.74,8.96,8.05,7.74,7.48,7.24,7.03,6.8100000000000005,6.61,6.21,N/A,N/A +2012,1,12,13,30,101900,100660,99440,78.15,0,16.26,17.86,18.3,18.54,18.69,18.8,18.87,18.92,18.98,352.18,352.09000000000003,352.02,351.96,351.90000000000003,351.85,351.79,351.74,351.63,8.17,7.21,6.890000000000001,6.62,6.37,6.16,5.93,5.73,5.32,N/A,N/A +2012,1,12,14,30,102020,100760,99550,77.15,0,15.97,17.47,17.88,18.09,18.23,18.330000000000002,18.39,18.44,18.51,352.75,352.75,352.75,352.74,352.73,352.72,352.71,352.69,352.68,7.53,6.54,6.22,5.95,5.71,5.49,5.2700000000000005,5.07,4.67,N/A,N/A +2012,1,12,15,30,102090,100840,99620,74.92,0,14.6,15.89,16.240000000000002,16.42,16.54,16.62,16.68,16.72,16.78,349.77,349.81,349.84000000000003,349.86,349.88,349.89,349.91,349.93,349.96,7.38,6.43,6.11,5.8500000000000005,5.61,5.4,5.18,4.98,4.59,N/A,N/A +2012,1,12,16,30,102110,100860,99640,69.34,0,13.71,14.88,15.200000000000001,15.38,15.48,15.56,15.620000000000001,15.66,15.71,348.35,348.37,348.37,348.37,348.37,348.37,348.37,348.37,348.37,7.55,6.65,6.34,6.09,5.8500000000000005,5.64,5.42,5.22,4.83,N/A,N/A +2012,1,12,17,30,102150,100890,99680,63.480000000000004,0,12.41,13.44,13.73,13.88,13.98,14.06,14.11,14.15,14.21,346.73,346.72,346.71,346.7,346.7,346.69,346.68,346.68,346.67,8.06,7.22,6.93,6.68,6.44,6.23,6.01,5.8100000000000005,5.41,N/A,N/A +2012,1,12,18,30,102180,100930,99720,61.13,0,11.48,12.39,12.63,12.77,12.86,12.92,12.97,13,13.05,342.64,342.68,342.72,342.77,342.8,342.83,342.87,342.90000000000003,342.98,8.59,7.8100000000000005,7.53,7.28,7.05,6.84,6.62,6.42,6.0200000000000005,N/A,N/A +2012,1,12,19,30,102200,100950,99740,56.36,0,12.200000000000001,13.22,13.5,13.65,13.75,13.83,13.870000000000001,13.91,13.96,339.06,339.19,339.28000000000003,339.36,339.43,339.5,339.57,339.64,339.76,9.040000000000001,8.26,7.98,7.73,7.5,7.3,7.08,6.87,6.47,N/A,N/A +2012,1,12,20,30,102220,100970,99760,53.95,0,11.26,12.15,12.4,12.530000000000001,12.620000000000001,12.68,12.72,12.76,12.8,338.94,338.92,338.91,338.89,338.88,338.86,338.85,338.83,338.8,9.32,8.57,8.3,8.06,7.83,7.62,7.4,7.2,6.79,N/A,N/A +2012,1,12,21,30,102220,100970,99760,51.77,0,10.93,11.77,12,12.120000000000001,12.200000000000001,12.26,12.290000000000001,12.32,12.36,339.72,339.58,339.48,339.39,339.3,339.22,339.15000000000003,339.08,338.93,9.44,8.72,8.45,8.21,7.98,7.78,7.5600000000000005,7.36,6.95,N/A,N/A +2012,1,12,22,30,102210,100960,99750,51.44,0,10.540000000000001,11.34,11.55,11.66,11.73,11.78,11.81,11.83,11.84,334.63,334.79,334.90000000000003,335.01,335.1,335.19,335.28000000000003,335.36,335.53000000000003,9.49,8.78,8.51,8.27,8.040000000000001,7.84,7.62,7.41,7.01,N/A,N/A +2012,1,12,23,30,102280,101030,99820,50.47,0,9.92,10.63,10.82,10.92,10.98,11.03,11.05,11.07,11.09,340.22,339.93,339.75,339.58,339.41,339.26,339.11,338.98,338.71,9.450000000000001,8.76,8.5,8.26,8.03,7.83,7.61,7.41,7.01,N/A,N/A +2012,1,13,0,30,102350,101100,99880,46.25,0,10.56,11.33,11.53,11.620000000000001,11.68,11.72,11.74,11.76,11.77,339.74,339.69,339.61,339.54,339.47,339.40000000000003,339.33,339.26,339.13,9.18,8.46,8.19,7.95,7.73,7.5200000000000005,7.3100000000000005,7.11,6.71,N/A,N/A +2012,1,13,1,30,102390,101130,99920,50,0,9.89,10.58,10.75,10.83,10.88,10.91,10.93,10.94,10.94,340.40000000000003,340.3,340.21,340.13,340.04,339.97,339.88,339.8,339.65000000000003,8.89,8.18,7.91,7.68,7.45,7.25,7.03,6.83,6.43,N/A,N/A +2012,1,13,2,30,102440,101190,99970,51.85,0,9.49,10.13,10.290000000000001,10.370000000000001,10.42,10.450000000000001,10.47,10.48,10.49,342.01,341.71,341.51,341.34000000000003,341.19,341.04,340.89,340.76,340.49,8.61,7.9,7.63,7.390000000000001,7.16,6.96,6.74,6.54,6.140000000000001,N/A,N/A +2012,1,13,3,30,102480,101230,100010,50.27,0,9.6,10.25,10.41,10.48,10.53,10.56,10.57,10.58,10.59,344.85,344.65000000000003,344.54,344.43,344.33,344.25,344.16,344.08,343.92,8.290000000000001,7.5600000000000005,7.29,7.0600000000000005,6.83,6.62,6.4,6.2,5.8,N/A,N/A +2012,1,13,4,30,102510,101250,100030,52.86,0,8.5,9.03,9.16,9.22,9.25,9.28,9.290000000000001,9.3,9.3,345.12,345.24,345.31,345.35,345.40000000000003,345.45,345.49,345.53000000000003,345.6,8.11,7.41,7.140000000000001,6.9,6.68,6.47,6.26,6.05,5.65,N/A,N/A +2012,1,13,5,30,102540,101280,100060,54.75,0,8.08,8.55,8.66,8.71,8.73,8.74,8.74,8.74,8.73,352.81,352.64,352.53000000000003,352.44,352.35,352.27,352.19,352.12,351.97,7.96,7.2700000000000005,7.01,6.7700000000000005,6.54,6.34,6.12,5.92,5.5200000000000005,N/A,N/A +2012,1,13,6,30,102560,101300,100080,51.96,0,7.8,8.26,8.35,8.4,8.42,8.43,8.44,8.44,8.42,358.8,358.38,358.1,357.85,357.62,357.42,357.2,357.01,356.63,7.86,7.17,6.91,6.68,6.45,6.25,6.03,5.83,5.43,N/A,N/A +2012,1,13,7,30,102600,101340,100120,47.52,0,7.91,8.35,8.44,8.47,8.48,8.49,8.48,8.47,8.44,5.08,4.6000000000000005,4.2700000000000005,3.97,3.66,3.39,3.11,2.84,2.29,7.73,7.03,6.7700000000000005,6.54,6.32,6.12,5.91,5.71,5.3100000000000005,N/A,N/A +2012,1,13,8,30,102610,101350,100130,46.300000000000004,0,7.8,8.24,8.34,8.38,8.39,8.4,8.4,8.4,8.39,4.42,4.3100000000000005,4.24,4.16,4.08,4.01,3.93,3.84,3.66,7.61,6.92,6.66,6.43,6.21,6.01,5.8,5.6000000000000005,5.21,N/A,N/A +2012,1,13,9,30,102630,101370,100150,46.63,0,7.46,7.87,7.95,7.99,8,8.01,8,8,7.98,7.55,7.58,7.6000000000000005,7.61,7.62,7.62,7.62,7.62,7.6000000000000005,7.61,6.93,6.67,6.44,6.22,6.0200000000000005,5.8100000000000005,5.62,5.22,N/A,N/A +2012,1,13,10,30,102650,101390,100170,48.5,0,7.18,7.57,7.65,7.69,7.71,7.72,7.72,7.72,7.7,11.35,11.370000000000001,11.38,11.39,11.39,11.4,11.4,11.4,11.4,7.65,6.97,6.72,6.49,6.26,6.07,5.8500000000000005,5.66,5.26,N/A,N/A +2012,1,13,11,30,102670,101410,100190,47.69,0,7.15,7.53,7.61,7.640000000000001,7.65,7.66,7.65,7.65,7.63,13.01,12.950000000000001,12.9,12.870000000000001,12.83,12.790000000000001,12.74,12.700000000000001,12.61,7.7700000000000005,7.1000000000000005,6.84,6.61,6.390000000000001,6.2,5.99,5.79,5.4,N/A,N/A +2012,1,13,12,30,102700,101440,100220,47.37,0,6.62,6.96,7.0200000000000005,7.05,7.0600000000000005,7.0600000000000005,7.0600000000000005,7.05,7.03,14.24,14.19,14.16,14.120000000000001,14.09,14.06,14.02,13.99,13.92,7.91,7.26,7.01,6.79,6.57,6.37,6.16,5.97,5.58,N/A,N/A +2012,1,13,13,30,102710,101460,100230,47.42,0,6.25,6.55,6.6000000000000005,6.61,6.62,6.61,6.6000000000000005,6.59,6.5600000000000005,17.05,16.98,16.92,16.87,16.82,16.77,16.71,16.66,16.54,7.99,7.36,7.12,6.890000000000001,6.67,6.48,6.2700000000000005,6.07,5.68,N/A,N/A +2012,1,13,14,30,102770,101510,100290,46.410000000000004,0,5.69,5.95,5.98,5.99,5.99,5.98,5.97,5.95,5.92,24.79,24.77,24.75,24.740000000000002,24.72,24.71,24.68,24.66,24.62,8.120000000000001,7.51,7.26,7.04,6.83,6.63,6.42,6.23,5.84,N/A,N/A +2012,1,13,15,30,102780,101520,100300,44.71,0,5.25,5.47,5.5,5.51,5.51,5.5,5.48,5.47,5.44,25.76,25.84,25.900000000000002,25.94,25.98,26.02,26.060000000000002,26.1,26.16,8.3,7.7,7.46,7.24,7.03,6.84,6.63,6.43,6.04,N/A,N/A +2012,1,13,16,30,102770,101520,100290,43.95,0,5.03,5.24,5.26,5.2700000000000005,5.26,5.26,5.24,5.23,5.2,23.82,23.91,23.97,24.02,24.060000000000002,24.1,24.14,24.17,24.240000000000002,8.540000000000001,7.95,7.72,7.5,7.28,7.09,6.88,6.69,6.3,N/A,N/A +2012,1,13,17,30,102760,101510,100290,42.730000000000004,0,4.2700000000000005,4.43,4.45,4.46,4.45,4.44,4.43,4.43,4.4,22.56,22.5,22.47,22.43,22.39,22.35,22.3,22.27,22.18,8.81,8.25,8.02,7.8,7.59,7.4,7.19,6.99,6.6000000000000005,N/A,N/A +2012,1,13,18,30,102750,101500,100280,42.11,0,3.6,3.73,3.74,3.74,3.73,3.73,3.72,3.71,3.69,19.84,19.77,19.73,19.68,19.64,19.61,19.57,19.52,19.42,9.15,8.620000000000001,8.39,8.18,7.97,7.78,7.57,7.37,6.98,N/A,N/A +2012,1,13,19,30,102740,101490,100270,41.81,0,3.0700000000000003,3.16,3.16,3.15,3.14,3.13,3.12,3.1,3.08,8.24,8.22,8.23,8.25,8.25,8.24,8.22,8.21,8.15,9.49,8.97,8.75,8.540000000000001,8.33,8.14,7.930000000000001,7.74,7.3500000000000005,N/A,N/A +2012,1,13,20,30,102720,101470,100260,44.74,0,2.2800000000000002,2.38,2.4,2.41,2.43,2.44,2.45,2.46,2.48,4.8,3.17,2.15,1.21,0.34,359.54,358.75,358.02,356.63,9.88,9.39,9.17,8.96,8.75,8.56,8.35,8.16,7.76,N/A,N/A +2012,1,13,21,30,102710,101470,100250,39.92,0,2.89,3.0100000000000002,3.0300000000000002,3.04,3.0500000000000003,3.0500000000000003,3.06,3.06,3.0700000000000003,354.25,353.98,353.8,353.63,353.48,353.34000000000003,353.19,353.04,352.73,10.41,9.92,9.71,9.5,9.290000000000001,9.1,8.89,8.700000000000001,8.31,N/A,N/A +2012,1,13,22,30,102680,101440,100230,46.65,0,1.62,1.71,1.75,1.78,1.81,1.83,1.86,1.8800000000000001,1.93,333.59000000000003,333.1,332.77,332.45,332.14,331.87,331.59000000000003,331.33,330.82,10.71,10.25,10.040000000000001,9.83,9.63,9.44,9.23,9.040000000000001,8.65,N/A,N/A +2012,1,13,23,30,102710,101460,100250,46.18,0,2.89,2.98,2.98,2.97,2.97,2.96,2.95,2.94,2.91,339.51,339.71,339.82,339.91,340,340.08,340.17,340.26,340.44,11.120000000000001,10.65,10.44,10.23,10.02,9.83,9.620000000000001,9.43,9.03,N/A,N/A +2012,1,14,0,30,102730,101490,100280,45.89,0,2.82,2.9,2.89,2.88,2.87,2.86,2.84,2.83,2.79,338.11,338.24,338.26,338.29,338.33,338.36,338.38,338.41,338.5,11.33,10.88,10.67,10.46,10.25,10.06,9.86,9.66,9.27,N/A,N/A +2012,1,14,1,30,102770,101520,100320,44.57,0,2.41,2.48,2.47,2.46,2.45,2.44,2.43,2.42,2.39,349.40000000000003,349.12,348.92,348.72,348.53000000000003,348.36,348.18,348.02,347.69,11.57,11.13,10.92,10.71,10.51,10.32,10.11,9.92,9.53,N/A,N/A +2012,1,14,2,30,102780,101540,100340,41.97,0,1.94,2.0100000000000002,2.02,2.02,2.02,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,352.34000000000003,351.85,351.54,351.25,350.99,350.76,350.51,350.29,349.88,11.83,11.4,11.200000000000001,10.99,10.78,10.6,10.39,10.200000000000001,9.8,N/A,N/A +2012,1,14,3,30,102790,101550,100350,40.9,0,2.17,2.22,2.22,2.2,2.19,2.18,2.17,2.15,2.13,352.81,352.69,352.67,352.65000000000003,352.63,352.62,352.6,352.58,352.53000000000003,12,11.57,11.370000000000001,11.16,10.950000000000001,10.77,10.56,10.370000000000001,9.97,N/A,N/A +2012,1,14,4,30,102790,101550,100350,41.300000000000004,0,1.75,1.79,1.78,1.77,1.76,1.75,1.74,1.73,1.71,350.16,349.33,348.76,348.21,347.69,347.24,346.74,346.28000000000003,345.31,12.13,11.71,11.5,11.3,11.09,10.91,10.700000000000001,10.51,10.120000000000001,N/A,N/A +2012,1,14,5,30,102790,101550,100350,47.25,0,1.4000000000000001,1.43,1.43,1.42,1.42,1.42,1.41,1.41,1.41,338.79,336.65000000000003,335.3,334.01,332.79,331.67,330.51,329.44,327.22,12.21,11.790000000000001,11.59,11.38,11.18,10.99,10.790000000000001,10.59,10.200000000000001,N/A,N/A +2012,1,14,6,30,102810,101570,100370,45.76,0,2.99,3.02,2.97,2.92,2.87,2.82,2.7600000000000002,2.72,2.62,300.86,300.38,300.09000000000003,299.81,299.54,299.29,299.04,298.79,298.26,12.39,11.97,11.78,11.57,11.36,11.18,10.97,10.78,10.39,N/A,N/A +2012,1,14,7,30,102840,101600,100400,45.83,0,3.4,3.48,3.45,3.42,3.38,3.35,3.31,3.27,3.18,302.17,301.46,300.97,300.51,300.06,299.64,299.16,298.71,297.73,12.14,11.71,11.5,11.3,11.1,10.91,10.71,10.52,10.13,N/A,N/A +2012,1,14,8,30,102850,101610,100400,45.4,0,3.77,3.86,3.85,3.81,3.77,3.73,3.69,3.64,3.5500000000000003,291.56,290.94,290.54,290.14,289.74,289.38,288.97,288.58,287.7,12.1,11.66,11.46,11.26,11.06,10.870000000000001,10.66,10.48,10.09,N/A,N/A +2012,1,14,9,30,102870,101620,100420,42.27,0,3.54,3.66,3.66,3.64,3.63,3.61,3.59,3.56,3.52,297.59000000000003,296.87,296.41,295.97,295.53000000000003,295.13,294.66,294.22,293.26,12.040000000000001,11.6,11.39,11.19,10.99,10.8,10.6,10.41,10.03,N/A,N/A +2012,1,14,10,30,102880,101640,100430,44.24,0,3.38,3.48,3.47,3.45,3.43,3.41,3.38,3.35,3.3000000000000003,285.64,284.87,284.35,283.85,283.35,282.90000000000003,282.36,281.86,280.75,12,11.56,11.36,11.16,10.96,10.77,10.57,10.38,9.99,N/A,N/A +2012,1,14,11,30,102910,101660,100460,44.62,0,3.43,3.52,3.52,3.5,3.47,3.45,3.42,3.4,3.34,290.61,289.55,288.85,288.16,287.48,286.85,286.12,285.44,283.93,11.97,11.53,11.33,11.13,10.93,10.74,10.540000000000001,10.35,9.97,N/A,N/A +2012,1,14,12,30,102940,101690,100490,44.22,0,3.2800000000000002,3.37,3.36,3.34,3.3200000000000003,3.3000000000000003,3.27,3.25,3.2,289.28000000000003,288.32,287.69,287.08,286.47,285.91,285.24,284.62,283.23,12,11.56,11.36,11.16,10.96,10.78,10.57,10.38,10,N/A,N/A +2012,1,14,13,30,102960,101710,100510,44.35,0,3.34,3.44,3.43,3.42,3.4,3.38,3.35,3.33,3.2800000000000002,291.44,290.56,289.97,289.39,288.81,288.28000000000003,287.66,287.08,285.8,12.11,11.67,11.47,11.27,11.07,10.88,10.68,10.49,10.11,N/A,N/A +2012,1,14,14,30,102990,101750,100540,44.47,0,3.61,3.73,3.73,3.72,3.7,3.68,3.66,3.63,3.58,287.18,286.3,285.73,285.16,284.59000000000003,284.06,283.46,282.89,281.61,12.22,11.78,11.58,11.38,11.18,11,10.790000000000001,10.61,10.22,N/A,N/A +2012,1,14,15,30,103010,101770,100560,43.67,0,3.41,3.52,3.52,3.5,3.48,3.46,3.44,3.42,3.37,282.26,281.26,280.6,279.98,279.34000000000003,278.76,278.11,277.49,276.12,12.35,11.92,11.72,11.52,11.32,11.13,10.93,10.74,10.36,N/A,N/A +2012,1,14,16,30,103000,101760,100560,43.46,0,3.0300000000000002,3.13,3.14,3.13,3.13,3.12,3.1,3.09,3.06,284.51,283.56,282.93,282.32,281.73,281.18,280.54,279.95,278.68,12.5,12.08,11.88,11.68,11.48,11.3,11.09,10.91,10.52,N/A,N/A +2012,1,14,17,30,102980,101740,100540,43.92,0,2.86,2.96,2.98,2.98,2.98,2.97,2.97,2.96,2.95,276.41,275.59000000000003,275.04,274.5,273.95,273.45,272.87,272.32,271.07,12.72,12.31,12.11,11.91,11.71,11.53,11.32,11.13,10.75,N/A,N/A +2012,1,14,18,30,102980,101740,100540,43.33,0,2.57,2.68,2.69,2.7,2.71,2.71,2.71,2.72,2.72,271.37,270.72,270.32,269.91,269.49,269.1,268.64,268.21,267.26,13.01,12.61,12.41,12.21,12.01,11.83,11.620000000000001,11.43,11.05,N/A,N/A +2012,1,14,19,30,102960,101730,100530,43.410000000000004,0,2.19,2.2800000000000002,2.3000000000000003,2.31,2.32,2.33,2.33,2.34,2.35,256.86,257.17,257.4,257.6,257.77,257.92,258.03000000000003,258.12,258.2,13.31,12.92,12.73,12.530000000000001,12.33,12.15,11.94,11.75,11.36,N/A,N/A +2012,1,14,20,30,102920,101680,100480,44.35,0,2.5500000000000003,2.67,2.69,2.71,2.72,2.73,2.74,2.75,2.7600000000000002,244.9,245.06,245.23000000000002,245.39000000000001,245.55,245.69,245.88,246.05,246.44,13.59,13.21,13.02,12.82,12.620000000000001,12.44,12.24,12.05,11.66,N/A,N/A +2012,1,14,21,30,102880,101650,100450,41.980000000000004,0,3.0700000000000003,3.2,3.22,3.23,3.23,3.23,3.23,3.23,3.23,226.89000000000001,227.43,227.75,228.06,228.37,228.67000000000002,229.02,229.37,230.23000000000002,13.91,13.540000000000001,13.35,13.15,12.96,12.780000000000001,12.57,12.39,12,N/A,N/A +2012,1,14,22,30,102860,101630,100430,44.39,0,3.02,3.14,3.15,3.16,3.15,3.15,3.14,3.13,3.1,207.98000000000002,208.48000000000002,208.83,209.16,209.52,209.85,210.24,210.61,211.53,14.15,13.790000000000001,13.6,13.41,13.21,13.030000000000001,12.83,12.64,12.26,N/A,N/A +2012,1,14,23,30,102840,101610,100420,43.85,0,3.2600000000000002,3.4,3.41,3.41,3.41,3.4,3.38,3.37,3.33,204.8,205.24,205.6,205.94,206.3,206.64000000000001,207.03,207.42000000000002,208.37,14.41,14.05,13.870000000000001,13.67,13.48,13.290000000000001,13.09,12.9,12.52,N/A,N/A +2012,1,15,0,30,102860,101630,100440,45.15,0,3.17,3.31,3.3200000000000003,3.33,3.33,3.3200000000000003,3.31,3.31,3.2800000000000002,206.29,206.83,207.18,207.52,207.85,208.16,208.51,208.85,209.66,14.6,14.25,14.07,13.88,13.68,13.5,13.290000000000001,13.11,12.72,N/A,N/A +2012,1,15,1,30,102870,101640,100440,45.83,0,3.31,3.48,3.52,3.5300000000000002,3.5500000000000003,3.56,3.56,3.56,3.5700000000000003,210.05,210.45000000000002,210.71,210.94,211.19,211.41,211.65,211.88,212.41,14.83,14.48,14.3,14.11,13.91,13.73,13.52,13.33,12.950000000000001,N/A,N/A +2012,1,15,2,30,102870,101640,100450,45.88,0,3.18,3.36,3.4,3.43,3.45,3.46,3.47,3.48,3.5,214.99,215.45000000000002,215.69,215.92000000000002,216.13,216.32,216.54,216.73000000000002,217.18,15.040000000000001,14.71,14.530000000000001,14.34,14.14,13.950000000000001,13.75,13.56,13.17,N/A,N/A +2012,1,15,3,30,102870,101650,100460,48.68,0,3.3200000000000003,3.49,3.5300000000000002,3.5500000000000003,3.56,3.58,3.58,3.59,3.59,212.98000000000002,213.28,213.45000000000002,213.6,213.75,213.87,214.01,214.14000000000001,214.42000000000002,15.18,14.85,14.67,14.48,14.280000000000001,14.09,13.89,13.700000000000001,13.31,N/A,N/A +2012,1,15,4,30,102870,101650,100460,52.56,0,3.6,3.8000000000000003,3.84,3.87,3.88,3.89,3.9,3.9,3.91,212.73000000000002,212.97,213.13,213.28,213.42000000000002,213.55,213.67000000000002,213.79,214.03,15.21,14.88,14.700000000000001,14.5,14.31,14.120000000000001,13.92,13.73,13.34,N/A,N/A +2012,1,15,5,30,102870,101640,100450,58.64,0,3.86,4.08,4.13,4.16,4.17,4.18,4.19,4.19,4.19,211.11,211.43,211.64000000000001,211.83,212.02,212.19,212.36,212.53,212.87,15.15,14.82,14.63,14.44,14.24,14.06,13.85,13.66,13.27,N/A,N/A +2012,1,15,6,30,102880,101660,100470,63.86,0,4,4.24,4.29,4.32,4.33,4.34,4.34,4.34,4.34,208.88,209.28,209.5,209.70000000000002,209.88,210.06,210.25,210.42000000000002,210.76,15.11,14.780000000000001,14.6,14.41,14.21,14.02,13.82,13.63,13.24,N/A,N/A +2012,1,15,7,30,102900,101670,100480,64.88,0,4.0200000000000005,4.25,4.3,4.33,4.34,4.3500000000000005,4.3500000000000005,4.36,4.36,206.69,207.09,207.3,207.49,207.67000000000002,207.83,208.02,208.18,208.53,15.1,14.76,14.58,14.39,14.19,14.01,13.8,13.620000000000001,13.22,N/A,N/A +2012,1,15,8,30,102880,101650,100460,66.73,0,3.8200000000000003,4.05,4.09,4.11,4.13,4.13,4.14,4.14,4.14,201.89000000000001,202.55,202.95000000000002,203.32,203.67000000000002,203.98000000000002,204.32,204.64000000000001,205.31,15.11,14.780000000000001,14.6,14.41,14.21,14.02,13.82,13.63,13.24,N/A,N/A +2012,1,15,9,30,102880,101650,100460,69.24,0,3.65,3.87,3.92,3.95,3.96,3.98,3.99,3.99,4,196.24,196.67000000000002,196.96,197.22,197.47,197.71,197.96,198.20000000000002,198.68,15.14,14.81,14.63,14.44,14.24,14.05,13.85,13.66,13.27,N/A,N/A +2012,1,15,10,30,102870,101650,100460,71.13,0,3.7800000000000002,4,4.04,4.07,4.07,4.08,4.08,4.08,4.08,185.92000000000002,186.62,187.03,187.41,187.78,188.11,188.47,188.79,189.48,15.14,14.82,14.63,14.44,14.24,14.06,13.85,13.66,13.27,N/A,N/A +2012,1,15,11,30,102870,101650,100460,70.95,0,3.89,4.13,4.18,4.2,4.21,4.22,4.23,4.23,4.23,177.37,177.9,178.22,178.5,178.76,179,179.24,179.46,179.89000000000001,15.19,14.86,14.68,14.49,14.290000000000001,14.11,13.9,13.71,13.32,N/A,N/A +2012,1,15,12,30,102880,101660,100470,71.2,0,3.86,4.12,4.18,4.22,4.25,4.28,4.3,4.32,4.3500000000000005,170.26,170.53,170.74,170.93,171.11,171.27,171.44,171.6,171.94,15.290000000000001,14.96,14.790000000000001,14.59,14.39,14.21,14.01,13.82,13.43,N/A,N/A +2012,1,15,13,30,102890,101660,100470,73.53,0,4.25,4.55,4.63,4.67,4.7,4.73,4.75,4.76,4.79,156.1,156.55,156.86,157.14000000000001,157.41,157.65,157.92000000000002,158.16,158.66,15.35,15.030000000000001,14.85,14.65,14.450000000000001,14.27,14.07,13.88,13.49,N/A,N/A +2012,1,15,14,30,102910,101680,100500,75.61,0,4.7700000000000005,5.15,5.25,5.3100000000000005,5.3500000000000005,5.39,5.41,5.44,5.48,154.26,154.77,155.1,155.41,155.71,155.97,156.25,156.5,157.03,15.55,15.24,15.06,14.86,14.67,14.49,14.280000000000001,14.09,13.71,N/A,N/A +2012,1,15,15,30,102900,101680,100490,78.63,0,5.09,5.54,5.66,5.74,5.8,5.8500000000000005,5.88,5.92,5.98,146.27,146.95000000000002,147.38,147.77,148.14000000000001,148.48,148.85,149.18,149.89000000000001,15.780000000000001,15.48,15.3,15.11,14.92,14.74,14.540000000000001,14.35,13.96,N/A,N/A +2012,1,15,16,30,102880,101660,100470,80.11,0,5.48,6.0200000000000005,6.18,6.28,6.3500000000000005,6.41,6.47,6.51,6.59,146.05,146.55,146.85,147.13,147.4,147.63,147.88,148.1,148.56,16.1,15.82,15.65,15.46,15.27,15.09,14.89,14.700000000000001,14.31,N/A,N/A +2012,1,15,17,30,102850,101630,100450,79.93,0,5.82,6.390000000000001,6.54,6.63,6.7,6.74,6.78,6.8,6.83,147.73,148.20000000000002,148.51,148.8,149.09,149.34,149.61,149.86,150.41,16.39,16.13,15.97,15.790000000000001,15.6,15.42,15.22,15.040000000000001,14.66,N/A,N/A +2012,1,15,18,30,102820,101610,100430,79.83,0,5.55,6.16,6.34,6.48,6.59,6.7,6.8100000000000005,6.91,7.09,146.14000000000001,146.37,146.57,146.79,147.01,147.22,147.59,147.97,149.05,16.59,16.37,16.22,16.03,15.860000000000001,15.700000000000001,15.51,15.34,14.97,N/A,N/A +2012,1,15,19,30,102790,101580,100400,79.56,0,5.54,6.25,6.5200000000000005,6.74,6.93,7.1000000000000005,7.25,7.390000000000001,7.61,142.57,142.74,143.02,143.46,144,144.56,145.27,145.96,147.57,16.77,16.56,16.43,16.26,16.1,15.94,15.76,15.59,15.23,N/A,N/A +2012,1,15,20,30,102740,101520,100350,81.72,0,5.92,6.67,6.93,7.140000000000001,7.3100000000000005,7.45,7.57,7.68,7.88,138.94,139.63,140.17000000000002,140.8,141.46,142.11,142.85,143.54,145,16.830000000000002,16.64,16.51,16.35,16.19,16.03,15.860000000000001,15.700000000000001,15.36,N/A,N/A +2012,1,15,21,30,102670,101460,100290,83.44,0,5.93,6.84,7.17,7.46,7.71,7.930000000000001,8.13,8.32,8.68,136.73,137.62,138.31,139.14000000000001,140.04,140.94,141.96,142.92000000000002,144.94,16.89,16.740000000000002,16.63,16.5,16.36,16.22,16.080000000000002,15.94,15.64,N/A,N/A +2012,1,15,22,30,102610,101390,100220,85.08,0,6.390000000000001,7.44,7.86,8.26,8.61,8.94,9.23,9.5,9.92,135.75,136.53,137.14000000000001,137.92000000000002,138.78,139.67000000000002,140.65,141.57,143.47,16.92,16.8,16.7,16.59,16.48,16.37,16.240000000000002,16.12,15.860000000000001,N/A,N/A +2012,1,15,23,30,102570,101360,100190,87.21000000000001,0,6.3,7.42,7.9,8.34,8.76,9.15,9.540000000000001,9.89,10.52,139.51,140.46,141.21,142.13,143.14000000000001,144.16,145.31,146.4,148.48,17.06,16.98,16.91,16.81,16.72,16.63,16.53,16.44,16.23,N/A,N/A +2012,1,16,0,30,102560,101350,100180,87.23,0,6.8500000000000005,8.15,8.68,9.18,9.63,10.03,10.43,10.8,11.53,144.91,145.37,145.8,146.41,147.17000000000002,147.98,149.12,150.25,152.92000000000002,17.31,17.29,17.240000000000002,17.16,17.09,17.01,16.93,16.85,16.67,N/A,N/A +2012,1,16,1,30,102510,101300,100130,87.76,0,7.08,8.59,9.26,9.91,10.49,11.02,11.48,11.89,12.56,151.89000000000001,152.71,153.33,154.03,154.78,155.53,156.28,156.95000000000002,157.91,17.48,17.52,17.51,17.490000000000002,17.46,17.43,17.37,17.31,17.11,N/A,N/A +2012,1,16,2,30,102500,101300,100130,89.29,0,6.49,8.040000000000001,8.74,9.44,10.08,10.69,11.24,11.73,12.41,153.66,154.54,155.22,156.07,156.88,157.68,158.36,158.98,159.82,17.57,17.650000000000002,17.650000000000002,17.650000000000002,17.63,17.61,17.57,17.53,17.34,N/A,N/A +2012,1,16,3,30,102470,101270,100100,89.9,0,6.41,8,8.73,9.47,10.13,10.75,11.31,11.82,12.74,152.6,154.02,155.02,156.15,157.13,158,158.66,159.23,159.99,17.62,17.73,17.75,17.76,17.75,17.740000000000002,17.69,17.64,17.490000000000002,N/A,N/A +2012,1,16,4,30,102450,101250,100090,90.86,0,6.73,8.44,9.24,10.03,10.75,11.41,12,12.530000000000001,13.4,160.56,161.11,161.55,162.12,162.71,163.31,163.87,164.37,165.37,17.69,17.830000000000002,17.87,17.900000000000002,17.92,17.92,17.89,17.86,17.7,N/A,N/A +2012,1,16,5,30,102440,101230,100070,90.89,0,7.15,8.94,9.77,10.61,11.370000000000001,12.08,12.75,13.38,14.36,161.52,162.56,163.31,164.18,164.99,165.76,166.4,166.95000000000002,167.52,17.84,18.01,18.06,18.1,18.13,18.14,18.14,18.14,18.04,N/A,N/A +2012,1,16,6,30,102430,101230,100070,91.64,0,6.6000000000000005,8.42,9.28,10.16,10.950000000000001,11.69,12.290000000000001,12.81,13.56,164.94,165.59,166.1,166.65,167.21,167.77,168.3,168.79,169.86,17.79,17.990000000000002,18.07,18.14,18.2,18.25,18.27,18.27,18.13,N/A,N/A +2012,1,16,7,30,102430,101230,100070,92.11,0,6.33,8.15,9.05,9.97,10.8,11.57,12.27,12.92,14.08,162.03,163.36,164.41,165.73,166.94,168.07,169.01,169.86,171.07,17.69,17.96,18.080000000000002,18.2,18.29,18.36,18.37,18.37,18.3,N/A,N/A +2012,1,16,8,30,102400,101190,100040,92.28,0,6.13,7.9,8.77,9.700000000000001,10.540000000000001,11.33,12.08,12.780000000000001,13.73,161.34,162.56,163.64000000000001,165.11,166.76,168.52,170.03,171.36,172.56,17.66,17.92,18.05,18.19,18.34,18.48,18.55,18.6,18.490000000000002,N/A,N/A +2012,1,16,9,30,102370,101170,100010,92.41,0,5.96,7.83,8.77,9.78,10.69,11.540000000000001,12.290000000000001,12.97,14.11,160.62,162.48,164,165.97,167.88,169.75,171.47,173.05,175.34,17.63,17.95,18.11,18.3,18.45,18.580000000000002,18.64,18.67,18.68,N/A,N/A +2012,1,16,10,30,102340,101140,99980,92.46000000000001,0,6.04,7.890000000000001,8.84,9.9,10.97,12.040000000000001,12.97,13.790000000000001,14.23,159.48,161.08,162.47,164.33,166.33,168.41,171.08,173.65,175.72,17.63,17.92,18.07,18.26,18.48,18.7,18.88,19.02,18.94,N/A,N/A +2012,1,16,11,30,102310,101110,99960,92.03,0,6.36,8.26,9.16,10.11,11.07,12.030000000000001,12.98,13.870000000000001,15.08,157.37,159.28,160.71,162.3,163.88,165.44,167.1,168.71,172.08,17.72,18.03,18.18,18.32,18.48,18.650000000000002,18.79,18.900000000000002,18.88,N/A,N/A +2012,1,16,12,30,102310,101110,99950,91.18,0,7.13,9.19,10.200000000000001,11.24,12.21,13.120000000000001,13.93,14.65,15.530000000000001,160.76,162.04,162.98,164.08,165.29,166.57,168.11,169.61,172.92000000000002,17.91,18.22,18.36,18.5,18.62,18.73,18.82,18.900000000000002,18.89,N/A,N/A +2012,1,16,13,30,102290,101090,99940,90.98,0,7.54,9.56,10.5,11.450000000000001,12.31,13.11,13.85,14.52,15.44,161.09,162.18,163.12,164.47,165.97,167.55,169.18,170.71,173.68,17.95,18.26,18.41,18.57,18.71,18.84,18.94,19.01,18.97,N/A,N/A +2012,1,16,14,30,102300,101100,99940,91.9,0,6.84,8.790000000000001,9.72,10.73,11.69,12.620000000000001,13.48,14.26,15.35,158.75,160.68,162.21,164.20000000000002,165.95000000000002,167.56,168.99,170.32,173.46,17.79,18.06,18.21,18.39,18.56,18.71,18.830000000000002,18.92,18.93,N/A,N/A +2012,1,16,15,30,102290,101090,99930,91.22,0,7.22,9.17,10.07,10.97,11.82,12.620000000000001,13.370000000000001,14.06,15.32,162.32,163.49,164.43,165.56,166.81,168.11,169.5,170.83,173.5,17.97,18.240000000000002,18.34,18.44,18.54,18.64,18.73,18.8,18.85,N/A,N/A +2012,1,16,16,30,102270,101070,99920,91.28,0,7.3100000000000005,9.3,10.24,11.200000000000001,12.08,12.92,13.700000000000001,14.42,15.73,165.07,166.22,167.16,168.43,169.73,171.07,172.31,173.46,175.70000000000002,18.01,18.31,18.45,18.6,18.73,18.85,18.91,18.96,18.97,N/A,N/A +2012,1,16,17,30,102230,101030,99880,92.17,0,6.76,8.5,9.290000000000001,10.120000000000001,10.950000000000001,11.78,12.67,13.530000000000001,15.06,162.26,164.18,165.71,167.67000000000002,169.49,171.23,172.70000000000002,174.03,176.09,17.89,18.09,18.16,18.22,18.3,18.38,18.48,18.57,18.66,N/A,N/A +2012,1,16,18,30,102190,101000,99840,91.24,0,7.1000000000000005,9.02,9.92,10.82,11.66,12.48,13.280000000000001,14.040000000000001,15.36,168.36,169.36,170.22,171.34,172.45000000000002,173.56,174.57,175.5,177.12,18.12,18.400000000000002,18.52,18.62,18.72,18.8,18.87,18.92,18.92,N/A,N/A +2012,1,16,19,30,102150,100960,99810,90.46000000000001,0,7.38,9.450000000000001,10.43,11.44,12.41,13.35,14.3,15.19,16.48,170.85,171.8,172.47,173.27,174.06,174.84,175.58,176.28,177.82,18.25,18.54,18.67,18.79,18.92,19.04,19.16,19.26,19.32,N/A,N/A +2012,1,16,20,30,102110,100910,99760,90.72,0,6.97,8.98,9.93,10.870000000000001,11.700000000000001,12.450000000000001,13.07,13.63,14.73,166.89000000000001,167.56,168.24,169.20000000000002,170.25,171.36,172.58,173.74,176.51,18.16,18.490000000000002,18.62,18.73,18.830000000000002,18.900000000000002,18.91,18.91,18.84,N/A,N/A +2012,1,16,21,30,102050,100860,99700,90.87,0,6.7700000000000005,8.77,9.75,10.76,11.700000000000001,12.61,13.43,14.18,15.42,170.39000000000001,171.62,172.61,173.76,174.89000000000001,175.99,177.18,178.31,180.64000000000001,18.080000000000002,18.36,18.5,18.650000000000002,18.79,18.92,19.01,19.09,19.11,N/A,N/A +2012,1,16,22,30,102010,100820,99660,90.71000000000001,0,7.2700000000000005,9.31,10.24,11.17,12.01,12.790000000000001,13.540000000000001,14.24,15.56,167.44,168.52,169.41,170.58,171.86,173.19,174.58,175.9,178.65,18.07,18.400000000000002,18.55,18.71,18.81,18.89,18.94,18.990000000000002,19.02,N/A,N/A +2012,1,16,23,30,101970,100770,99620,91.44,0,7.78,9.84,10.81,11.870000000000001,12.82,13.71,14.49,15.19,16.240000000000002,167.78,169.06,170.06,171.38,172.72,174.08,175.46,176.76,179.34,17.89,18.1,18.27,18.63,18.87,19.03,19.12,19.19,19.150000000000002,N/A,N/A +2012,1,17,0,30,101950,100750,99600,91.66,0,7.57,9.53,10.49,11.48,12.46,13.47,14.48,15.44,16.96,165.65,167.01,168.08,169.49,170.95000000000002,172.49,174.02,175.47,178.39000000000001,17.82,17.89,17.94,18.1,18.31,18.57,18.79,18.98,19.2,N/A,N/A +2012,1,17,1,30,101910,100720,99570,91.10000000000001,0,8.620000000000001,10.65,11.620000000000001,12.620000000000001,13.540000000000001,14.4,15.200000000000001,15.91,17.06,169.07,170.05,170.8,171.81,172.88,173.97,175.13,176.23,178.22,17.92,18,18.05,18.21,18.400000000000002,18.62,18.75,18.85,18.81,N/A,N/A +2012,1,17,2,30,101910,100720,99560,91.11,0,8.32,10.35,11.33,12.39,13.33,14.200000000000001,14.94,15.6,16.64,167.79,168.52,169.19,170.23,171.29,172.4,173.62,174.78,179.14000000000001,17.94,18.07,18.16,18.41,18.61,18.8,18.91,18.990000000000002,19.2,N/A,N/A +2012,1,17,3,30,101890,100700,99540,91.25,0,7.28,9.32,10.290000000000001,11.33,12.32,13.27,14.16,14.97,16.12,161.97,164.12,165.78,167.83,169.74,171.57,173.22,174.73,177.23,17.93,18.03,18.04,18.04,18.16,18.35,18.54,18.72,18.81,N/A,N/A +2012,1,17,4,30,101880,100680,99530,91.14,0,7.5200000000000005,9.5,10.46,11.47,12.41,13.290000000000001,14.21,15.09,16.48,168.98,170.34,171.33,172.53,173.72,174.89000000000001,176.14000000000001,177.35,179.27,17.93,18.03,18.01,17.96,18.03,18.14,18.36,18.580000000000002,18.71,N/A,N/A +2012,1,17,5,30,101850,100660,99510,90.33,0,8.69,10.82,11.82,12.82,13.75,14.63,15.46,16.23,17.490000000000002,172.89000000000001,173.77,174.5,175.42000000000002,176.34,177.29,178.28,179.21,181.02,18.12,18.3,18.39,18.56,18.71,18.830000000000002,18.900000000000002,18.94,18.990000000000002,N/A,N/A +2012,1,17,6,30,101840,100650,99490,92.08,0,8.8,10.72,11.6,12.52,13.38,14.21,15.040000000000001,15.84,17.19,176.36,176.91,177.37,177.95000000000002,178.51,179.06,179.62,180.14000000000001,181.20000000000002,18.29,18.36,18.35,18.34,18.39,18.490000000000002,18.650000000000002,18.82,18.89,N/A,N/A +2012,1,17,7,30,101840,100650,99500,91.11,0,8.56,10.57,11.46,12.34,13.16,13.93,14.67,15.370000000000001,16.62,181.3,181.57,181.8,182.09,182.42000000000002,182.77,183.20000000000002,183.63,184.59,18.52,18.740000000000002,18.8,18.84,18.86,18.87,18.87,18.86,18.79,N/A,N/A +2012,1,17,8,30,101820,100630,99490,90.33,0,7.82,9.93,10.93,11.870000000000001,12.68,13.41,14.06,14.63,15.610000000000001,181.73,182.89000000000001,183.74,184.57,185.3,185.95000000000002,186.53,187.05,187.88,18.69,18.98,19.080000000000002,19.14,19.17,19.18,19.150000000000002,19.11,18.94,N/A,N/A +2012,1,17,9,30,101820,100630,99480,90.38,0,6.2,8.28,9.290000000000001,10.28,11.19,12.030000000000001,12.81,13.540000000000001,14.85,178.53,179.87,180.84,181.76,182.61,183.4,184.15,184.85,186.22,18.740000000000002,18.96,19.01,19.04,19.06,19.07,19.06,19.04,18.97,N/A,N/A +2012,1,17,10,30,101830,100640,99490,91.02,0,6,7.99,8.98,9.950000000000001,10.82,11.63,12.38,13.07,14.36,181.36,182.59,183.51,184.43,185.27,186.06,186.83,187.56,189.20000000000002,18.59,18.79,18.84,18.85,18.900000000000002,18.96,19.01,19.06,19.03,N/A,N/A +2012,1,17,11,30,101830,100650,99500,90.3,0,6.71,8.84,9.81,10.76,11.6,12.36,13.09,13.77,15.44,183.94,185.42000000000002,186.47,187.69,188.81,189.84,190.79,191.66,194.15,18.76,19.03,19.12,19.21,19.27,19.31,19.330000000000002,19.35,19.330000000000002,N/A,N/A +2012,1,17,12,30,101860,100670,99530,90.10000000000001,0,6.01,8.21,9.290000000000001,10.32,11.22,12.05,12.84,13.59,15,185.45000000000002,187,188.26,190,191.89000000000001,193.95000000000002,196.25,198.52,202.78,18.830000000000002,19.2,19.330000000000002,19.42,19.51,19.59,19.64,19.66,19.61,N/A,N/A +2012,1,17,13,30,101830,100640,99500,89.47,0,6.8,9.05,10.16,11.31,12.36,13.370000000000001,14.36,15.31,16.65,179.96,182.89000000000001,185.17000000000002,187.85,190.13,192.16,193.92000000000002,195.52,197.95000000000002,18.95,19.31,19.47,19.71,19.93,20.16,20.26,20.31,20.28,N/A,N/A +2012,1,17,14,30,101890,100700,99550,90.15,0,5.8100000000000005,7.8100000000000005,8.77,9.71,10.61,11.49,12.41,13.3,14.91,178.02,181.15,183.59,186.37,188.9,191.34,193.4,195.27,198.33,18.830000000000002,19.1,19.17,19.26,19.36,19.45,19.57,19.69,19.77,N/A,N/A +2012,1,17,15,30,101970,100780,99640,93.55,0,2.5,4.62,5.98,7.8500000000000005,9.19,9.99,10.64,11.22,12.21,165.84,176.79,185.22,192.9,197.84,200.09,201.8,203.25,205.83,18.45,18.97,19.21,19.52,19.79,20.02,20.18,20.3,20.31,N/A,N/A +2012,1,17,16,30,101950,100770,99620,91.42,0,4.96,7.4,8.84,10.43,11.450000000000001,11.97,12.31,12.57,13.06,174.73,186.02,194.03,200.06,203.64000000000001,205.02,205.88,206.52,207.96,18.650000000000002,19.23,19.580000000000002,20.05,20.34,20.490000000000002,20.51,20.48,20.330000000000002,N/A,N/A +2012,1,17,17,30,101960,100770,99620,92.11,0,3.96,6.25,7.5,8.81,9.9,10.81,11.34,11.72,12.280000000000001,179.6,190.37,197.86,203.03,206.46,208.47,209.63,210.43,211.79,18.650000000000002,19.07,19.26,19.51,19.77,20.04,20.16,20.23,20.16,N/A,N/A +2012,1,17,18,30,101950,100760,99620,92.61,4.800000000000001,3.86,5.78,6.76,7.79,8.45,8.76,9.05,9.32,9.8,184.36,197.06,206.15,213.21,217.25,218.37,219.12,219.71,220.35,18.59,19.13,19.400000000000002,19.71,19.88,19.94,19.96,19.97,19.900000000000002,N/A,N/A +2012,1,17,19,30,101910,100720,99580,92.4,0,4.29,5.88,6.62,7.5200000000000005,8.11,8.44,8.8,9.15,9.82,187.53,199.44,208.38,217.17000000000002,222.28,224.43,226.36,228.11,230.78,18.61,19.240000000000002,19.56,19.86,20.05,20.16,20.240000000000002,20.31,20.36,N/A,N/A +2012,1,17,20,30,101870,100690,99550,91.7,2.6,4.38,6.78,7.890000000000001,8.48,8.81,8.950000000000001,9.13,9.31,9.66,206.85,216.24,222.43,226.22,228.65,230.03,230.86,231.45000000000002,231.34,18.8,19.44,19.84,20.47,20.79,20.89,20.91,20.900000000000002,20.77,N/A,N/A +2012,1,17,21,30,101860,100670,99530,90.68,0,5.05,6.890000000000001,7.62,8.1,8.42,8.61,8.790000000000001,8.96,9.23,200.23000000000002,209.19,215.66,221.31,224.87,226.89000000000001,228.21,229.24,230.66,18.900000000000002,19.13,19.400000000000002,20.19,20.63,20.830000000000002,20.86,20.84,20.64,N/A,N/A +2012,1,17,22,30,101870,100680,99540,90.99,0,5.29,7.140000000000001,7.82,8.06,8.21,8.3,8.45,8.61,8.92,207.94,215.72,221.12,226.17000000000002,229.42000000000002,231.39000000000001,232.71,233.73000000000002,234.49,18.72,18.82,19.11,20.22,20.78,20.96,20.97,20.92,20.73,N/A,N/A +2012,1,17,23,30,101880,100690,99550,91.51,0.4,5.33,7.1000000000000005,7.82,8.27,8.48,8.52,8.540000000000001,8.55,8.8,202.62,211.42000000000002,217.87,224.39000000000001,228.16,229.85,230.21,230.13,229.06,18.54,18.580000000000002,18.830000000000002,19.900000000000002,20.72,21.37,21.39,21.2,20.900000000000002,N/A,N/A +2012,1,18,0,30,101980,100780,99630,92.59,0.4,3.2800000000000002,4.68,5.08,5.61,6.1000000000000005,6.5600000000000005,6.94,7.2700000000000005,7.72,287.94,279.25,273.84000000000003,271.65,271.17,271.96,272.86,273.76,273.85,18.68,18.62,18.45,18.330000000000002,18.28,18.27,18.29,18.330000000000002,18.42,N/A,N/A +2012,1,18,1,30,102010,100820,99660,92.23,4.4,6.3,7.8,8.09,7.88,7.79,7.76,7.68,7.61,7.44,335.8,338.24,339.83,341.62,342.97,344.05,345.03000000000003,345.90000000000003,348.51,18.330000000000002,18.7,18.8,18.78,18.71,18.61,18.490000000000002,18.37,18.150000000000002,N/A,N/A +2012,1,18,2,30,102090,100900,99730,92.78,3.7,5.87,7.65,8.48,9.15,9.620000000000001,9.950000000000001,10.120000000000001,10.24,10.38,12.17,17.490000000000002,20.900000000000002,23.41,24.6,24.810000000000002,24.2,23.46,21.35,18.18,18.47,18.5,18.330000000000002,18.17,18.01,17.88,17.75,17.54,N/A,N/A +2012,1,18,3,30,102150,100950,99780,88.95,14.3,8.52,10.05,10.72,11.31,11.790000000000001,12.19,12.4,12.51,11.91,0.47000000000000003,0.1,359.92,359.91,0.05,0.3,1.12,2.0300000000000002,5.25,17.31,17.12,16.97,16.78,16.59,16.38,16.18,16,15.74,N/A,N/A +2012,1,18,4,30,102220,101000,99820,67.98,0,13.59,14.94,15.280000000000001,15.450000000000001,15.540000000000001,15.6,15.620000000000001,15.63,15.65,15.8,15.97,16.11,16.27,16.45,16.62,16.85,17.09,17.72,15.530000000000001,15.14,14.950000000000001,14.75,14.56,14.38,14.18,14,13.620000000000001,N/A,N/A +2012,1,18,5,30,102280,101050,99870,69.41,0,12.38,13.57,13.88,14.05,14.16,14.24,14.280000000000001,14.32,14.370000000000001,20.81,21.11,21.3,21.490000000000002,21.68,21.85,22.04,22.22,22.62,14.57,14.11,13.9,13.69,13.48,13.290000000000001,13.08,12.9,12.51,N/A,N/A +2012,1,18,6,30,102330,101100,99910,68.65,0,13.32,14.61,14.94,15.120000000000001,15.24,15.32,15.370000000000001,15.41,15.450000000000001,26.75,27.02,27.19,27.36,27.52,27.68,27.86,28.03,28.43,13.48,12.91,12.68,12.47,12.25,12.06,11.85,11.66,11.28,N/A,N/A +2012,1,18,7,30,102390,101160,99960,70.46000000000001,0,12.780000000000001,13.94,14.24,14.4,14.49,14.55,14.58,14.61,14.620000000000001,29.7,30.04,30.26,30.47,30.66,30.85,31.05,31.25,31.67,12.700000000000001,12.1,11.85,11.63,11.42,11.22,11.02,10.83,10.44,N/A,N/A +2012,1,18,8,30,102410,101180,99980,71.5,0,12.75,13.88,14.16,14.31,14.39,14.44,14.47,14.48,14.47,31.86,32.17,32.37,32.56,32.75,32.92,33.12,33.3,33.7,12.05,11.4,11.16,10.93,10.71,10.52,10.31,10.120000000000001,9.74,N/A,N/A +2012,1,18,9,30,102440,101210,100000,72.12,0,12.41,13.47,13.73,13.86,13.93,13.97,13.99,14,13.98,34.72,35.04,35.25,35.44,35.64,35.81,36,36.18,36.59,11.52,10.84,10.59,10.370000000000001,10.15,9.96,9.75,9.56,9.17,N/A,N/A +2012,1,18,10,30,102450,101220,100010,73.07000000000001,0,11.91,12.9,13.14,13.25,13.32,13.35,13.370000000000001,13.370000000000001,13.35,38.07,38.410000000000004,38.63,38.83,39.04,39.230000000000004,39.44,39.63,40.06,11.15,10.47,10.22,9.99,9.77,9.58,9.370000000000001,9.18,8.8,N/A,N/A +2012,1,18,11,30,102490,101250,100050,74.56,0,11.450000000000001,12.36,12.58,12.68,12.74,12.77,12.780000000000001,12.780000000000001,12.76,41.08,41.5,41.78,42.03,42.29,42.52,42.78,43.03,43.56,10.97,10.290000000000001,10.040000000000001,9.82,9.6,9.41,9.200000000000001,9.01,8.63,N/A,N/A +2012,1,18,12,30,102520,101280,100070,75.31,0,11.06,11.94,12.16,12.280000000000001,12.34,12.39,12.41,12.42,12.42,45.03,45.46,45.730000000000004,45.980000000000004,46.230000000000004,46.44,46.68,46.9,47.35,11.120000000000001,10.46,10.21,9.99,9.77,9.58,9.370000000000001,9.18,8.8,N/A,N/A +2012,1,18,13,30,102530,101290,100090,72.55,0,11.01,11.86,12.07,12.16,12.21,12.24,12.24,12.24,12.21,50.7,50.86,50.95,51.03,51.120000000000005,51.19,51.28,51.36,51.53,11.03,10.36,10.11,9.88,9.67,9.47,9.26,9.07,8.69,N/A,N/A +2012,1,18,14,30,102550,101310,100100,74.41,0,9.85,10.540000000000001,10.700000000000001,10.77,10.8,10.82,10.81,10.8,10.76,54.04,54.31,54.480000000000004,54.65,54.81,54.96,55.13,55.28,55.65,10.91,10.26,10.01,9.790000000000001,9.58,9.39,9.18,8.99,8.6,N/A,N/A +2012,1,18,15,30,102540,101300,100100,76.31,0,8.99,9.6,9.74,9.81,9.84,9.86,9.86,9.85,9.83,55.92,56.27,56.5,56.72,56.93,57.120000000000005,57.34,57.54,57.99,11.1,10.49,10.26,10.040000000000001,9.83,9.63,9.43,9.24,8.85,N/A,N/A +2012,1,18,16,30,102520,101280,100080,75.35000000000001,0,8.22,8.74,8.870000000000001,8.92,8.94,8.96,8.950000000000001,8.950000000000001,8.92,59.160000000000004,59.5,59.730000000000004,59.95,60.17,60.36,60.57,60.77,61.21,11.5,10.92,10.69,10.47,10.26,10.07,9.870000000000001,9.68,9.290000000000001,N/A,N/A +2012,1,18,17,30,102480,101240,100040,75.33,0,7.19,7.6000000000000005,7.68,7.71,7.72,7.72,7.7,7.69,7.640000000000001,52.96,53.36,53.65,53.93,54.2,54.45,54.730000000000004,54.99,55.58,11.620000000000001,11.08,10.86,10.64,10.44,10.25,10.040000000000001,9.85,9.47,N/A,N/A +2012,1,18,18,30,102450,101210,100010,72.43,0,5.73,6.01,6.05,6.0600000000000005,6.0600000000000005,6.05,6.03,6.0200000000000005,5.97,53,53.46,53.78,54.09,54.39,54.68,55,55.31,56,11.81,11.3,11.09,10.88,10.68,10.49,10.290000000000001,10.1,9.72,N/A,N/A +2012,1,18,19,30,102420,101190,99990,69.98,0,4.55,4.74,4.7700000000000005,4.78,4.7700000000000005,4.7700000000000005,4.75,4.74,4.71,44.28,44.79,45.17,45.52,45.87,46.19,46.56,46.910000000000004,47.71,12.030000000000001,11.56,11.35,11.14,10.94,10.76,10.55,10.370000000000001,9.98,N/A,N/A +2012,1,18,20,30,102360,101120,99930,67.7,0,3.12,3.23,3.23,3.23,3.21,3.2,3.19,3.17,3.14,41.58,42.08,42.49,42.89,43.29,43.67,44.13,44.57,45.68,12.32,11.89,11.68,11.48,11.28,11.1,10.9,10.71,10.33,N/A,N/A +2012,1,18,21,30,102320,101100,99900,59.82,0,3.67,3.84,3.87,3.89,3.9,3.9,3.91,3.91,3.91,39.6,39.45,39.32,39.2,39.09,39,38.89,38.79,38.59,12.94,12.51,12.31,12.11,11.91,11.72,11.52,11.34,10.950000000000001,N/A,N/A +2012,1,18,22,30,102260,101030,99840,61.01,0,2.17,2.25,2.25,2.25,2.25,2.24,2.24,2.24,2.23,32.67,33,33.34,33.67,34,34.300000000000004,34.64,34.97,35.730000000000004,13.19,12.790000000000001,12.6,12.4,12.200000000000001,12.02,11.82,11.63,11.25,N/A,N/A +2012,1,18,23,30,102230,101000,99810,61.54,0,0.12,0.13,0.14,0.15,0.15,0.16,0.16,0.16,0.17,104.14,119.48,119.69,119.89,119.9,119.83,119.85000000000001,119.69,117.73,13.42,13.040000000000001,12.85,12.65,12.46,12.27,12.07,11.89,11.5,N/A,N/A +2012,1,19,0,30,102250,101030,99840,63.870000000000005,0,2.91,3.0100000000000002,3.02,3.0100000000000002,3.0100000000000002,3,2.99,2.98,2.96,31.36,31.43,31.48,31.52,31.55,31.580000000000002,31.62,31.66,31.75,13.69,13.3,13.11,12.9,12.71,12.52,12.32,12.13,11.74,N/A,N/A +2012,1,19,1,30,102200,100980,99790,64.14,0,1.67,1.74,1.75,1.75,1.75,1.75,1.76,1.76,1.76,79.91,79.44,79.85000000000001,80.2,80.53,80.82000000000001,81.14,81.44,82.14,13.88,13.5,13.32,13.120000000000001,12.92,12.74,12.540000000000001,12.35,11.96,N/A,N/A +2012,1,19,2,30,102160,100940,99750,64.45,0,1.79,1.85,1.86,1.86,1.86,1.86,1.86,1.85,1.85,91.82000000000001,92.78,93.29,93.8,94.3,94.77,95.35000000000001,95.9,97.3,14.05,13.68,13.5,13.3,13.1,12.92,12.72,12.530000000000001,12.15,N/A,N/A +2012,1,19,3,30,102120,100900,99710,63.33,0,2.58,2.69,2.71,2.72,2.73,2.73,2.74,2.75,2.7600000000000002,127.43,127.85000000000001,128.07,128.3,128.54,128.76,129.04,129.3,129.97,14.35,13.98,13.8,13.6,13.41,13.22,13.02,12.83,12.450000000000001,N/A,N/A +2012,1,19,4,30,102090,100870,99690,62.47,0,2.88,3,3.02,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.02,117.73,118.21000000000001,118.54,118.86,119.18,119.48,119.8,120.12,120.88,14.67,14.3,14.120000000000001,13.92,13.72,13.540000000000001,13.33,13.15,12.76,N/A,N/A +2012,1,19,5,30,102040,100820,99640,68.93,0,3,3.13,3.15,3.16,3.16,3.16,3.16,3.16,3.16,144.71,145.28,145.63,145.98,146.35,146.70000000000002,147.16,147.61,148.89000000000001,14.77,14.41,14.22,14.030000000000001,13.83,13.65,13.450000000000001,13.26,12.88,N/A,N/A +2012,1,19,6,30,102020,100810,99630,73.52,0,3.39,3.56,3.59,3.6,3.6,3.61,3.61,3.61,3.62,155.68,156.18,156.49,156.8,157.13,157.44,157.81,158.17000000000002,159.08,14.950000000000001,14.59,14.4,14.200000000000001,14.01,13.82,13.620000000000001,13.44,13.05,N/A,N/A +2012,1,19,7,30,101980,100770,99590,77.21000000000001,0,3.65,3.85,3.9,3.92,3.94,3.96,3.97,3.98,4.01,165.96,166.3,166.5,166.72,166.94,167.16,167.44,167.71,168.46,15.19,14.84,14.65,14.46,14.26,14.08,13.88,13.69,13.3,N/A,N/A +2012,1,19,8,30,101950,100740,99560,80.67,0,4.1,4.34,4.39,4.43,4.44,4.46,4.47,4.48,4.5,170.54,170.72,170.8,170.9,171.01,171.1,171.22,171.34,171.62,15.5,15.15,14.97,14.77,14.57,14.39,14.19,14,13.61,N/A,N/A +2012,1,19,9,30,101900,100690,99520,83.86,0,4.25,4.53,4.6000000000000005,4.64,4.67,4.69,4.71,4.73,4.78,177.78,177.91,177.99,178.08,178.18,178.28,178.41,178.54,178.95000000000002,15.790000000000001,15.450000000000001,15.27,15.07,14.88,14.69,14.49,14.31,13.92,N/A,N/A +2012,1,19,10,30,101880,100670,99500,86.57000000000001,0,4.7700000000000005,5.09,5.17,5.21,5.23,5.25,5.26,5.28,5.33,176.53,176.79,176.98,177.18,177.41,177.63,177.92000000000002,178.23,179.24,16.11,15.780000000000001,15.610000000000001,15.41,15.22,15.030000000000001,14.83,14.65,14.27,N/A,N/A +2012,1,19,11,30,101860,100650,99480,88.78,0,5.25,5.67,5.78,5.84,5.89,5.92,5.95,5.98,6.04,183.08,183.32,183.46,183.59,183.72,183.85,184,184.14000000000001,184.48,16.490000000000002,16.18,16.01,15.81,15.620000000000001,15.43,15.24,15.05,14.67,N/A,N/A +2012,1,19,12,30,101850,100640,99480,88.7,0,7.57,7.96,7.95,7.8500000000000005,7.74,7.640000000000001,7.54,7.46,7.3500000000000005,218.48000000000002,217.77,217.17000000000002,216.46,215.65,214.83,213.77,212.77,210.56,16.76,16.46,16.28,16.09,15.9,15.72,15.540000000000001,15.36,14.99,N/A,N/A +2012,1,19,13,30,101810,100620,99450,90.24,0,5.08,5.9,6.2,6.44,6.63,6.78,6.92,7.03,7.21,221.04,222.73000000000002,223.67000000000002,224.46,224.92000000000002,225.18,224.97,224.68,223.23000000000002,17.43,17.240000000000002,17.11,16.96,16.81,16.67,16.52,16.37,16.05,N/A,N/A +2012,1,19,14,30,101810,100610,99450,90.53,0,4.28,5.01,5.3100000000000005,5.58,5.84,6.07,6.32,6.5600000000000005,7.08,200.46,199.97,199.66,199.21,198.84,198.52,198.55,198.69,200.17000000000002,17.42,17.240000000000002,17.12,16.98,16.84,16.71,16.580000000000002,16.47,16.23,N/A,N/A +2012,1,19,15,30,101800,100600,99440,92.33,0,3.0100000000000002,3.81,4.21,4.69,5.25,5.87,6.43,6.96,7.82,194.16,197.53,200.11,203.27,205.65,207.6,208.25,208.63,209.67000000000002,17.41,17.32,17.27,17.2,17.11,17.03,16.91,16.8,16.68,N/A,N/A +2012,1,19,16,30,101750,100560,99400,90.45,0,3.8000000000000003,4.6000000000000005,4.99,5.4,5.86,6.33,6.83,7.28,7.78,202.53,203.92000000000002,205.03,206.48000000000002,207.70000000000002,208.8,208.58,208.11,206.96,17.64,17.5,17.42,17.34,17.29,17.25,17.240000000000002,17.240000000000002,17.16,N/A,N/A +2012,1,19,17,30,101700,100510,99350,92.49,0,4.41,5.11,5.41,5.73,6.05,6.37,6.890000000000001,7.45,8.790000000000001,187.41,188.54,189.46,190.61,191.83,193.09,194.95000000000002,196.95000000000002,202.23000000000002,17.75,17.55,17.43,17.3,17.18,17.07,17.04,17.03,17.19,N/A,N/A +2012,1,19,18,30,101680,100480,99330,93.38,0,5.11,6.03,6.43,6.84,7.21,7.58,7.97,8.34,9.32,190.87,191.59,192.11,192.73000000000002,193.39000000000001,194.05,195.02,196.1,201.15,18.03,17.87,17.76,17.64,17.53,17.42,17.330000000000002,17.25,17.25,N/A,N/A +2012,1,19,19,30,101650,100450,99300,94.73,0,4.61,5.61,6.05,6.5,6.890000000000001,7.25,7.62,7.98,8.94,188.5,189.21,189.76,190.35,190.92000000000002,191.46,192.68,194.06,203,18.080000000000002,17.98,17.900000000000002,17.8,17.7,17.61,17.53,17.46,17.46,N/A,N/A +2012,1,19,20,30,101580,100390,99240,96.03,0,4.79,5.91,6.41,6.94,7.53,8.18,8.8,9.38,9.71,192.82,193.77,194.99,197.19,200.32,204.01,207.41,210.47,212.64000000000001,18.23,18.2,18.18,18.16,18.17,18.2,18.240000000000002,18.26,18.18,N/A,N/A +2012,1,19,21,30,101540,100350,99200,95.91,0,3.91,5.0600000000000005,5.57,6.09,6.68,7.3500000000000005,8.25,9.19,9.78,188.31,190.78,192.75,195.16,197.67000000000002,200.34,204.18,208.21,210.20000000000002,18.18,18.17,18.14,18.09,18.07,18.07,18.14,18.23,18.18,N/A,N/A +2012,1,19,22,30,101510,100320,99170,95.79,0,3.61,4.76,5.2700000000000005,5.84,6.68,7.8100000000000005,8.45,8.92,9.75,186.12,190.65,193.6,196.26,200.34,205.84,208.31,209.85,212.83,18.14,18.16,18.14,18.1,18.18,18.34,18.35,18.32,18.400000000000002,N/A,N/A +2012,1,19,23,30,101480,100290,99150,94.72,0,3.5500000000000003,5.09,5.84,6.640000000000001,7.41,8.17,8.59,8.9,9.38,191.07,193.03,194.43,195.89000000000001,197.26,198.58,199.54,200.32,201.94,18.09,18.34,18.45,18.55,18.61,18.64,18.650000000000002,18.650000000000002,18.6,N/A,N/A +2012,1,20,0,30,101460,100280,99140,93.9,0,3.93,5.84,6.93,8.18,9.01,9.48,9.81,10.08,10.540000000000001,190.36,194.8,197.70000000000002,199.8,201.17000000000002,201.93,202.58,203.15,204.31,18.25,18.7,18.94,19.16,19.32,19.43,19.5,19.55,19.57,N/A,N/A +2012,1,20,1,30,101460,100280,99130,95.26,0,4.2,6.22,7.4,8.51,9.18,9.51,9.85,10.18,10.700000000000001,187.98,193.21,196.44,197.88,198.89000000000001,199.56,200.22,200.84,202.46,17.91,18.6,18.95,19.12,19.23,19.31,19.38,19.44,19.53,N/A,N/A +2012,1,20,2,30,101450,100270,99120,95.06,0,3.41,5.01,6.08,7.87,8.98,9.5,10.03,10.52,11.21,180.62,185.95000000000002,189.71,194.08,196.58,197.52,198.43,199.3,202,18.05,18.25,18.46,18.88,19.04,19.04,19.1,19.16,19.29,N/A,N/A +2012,1,20,3,30,101450,100260,99120,93.92,0.4,3.47,5.34,6.3100000000000005,7.4,8.51,9.69,10.53,11.23,11.99,178.4,190.18,197.31,200.92000000000002,202.85,203.53,204.56,205.63,206.77,18.36,18.73,18.900000000000002,19.07,19.150000000000002,19.19,19.17,19.14,18.98,N/A,N/A +2012,1,20,4,30,101440,100250,99110,91.10000000000001,0,4.67,7.390000000000001,8.85,10.21,11.22,11.96,12.09,12.05,12.88,202.47,205.07,207.16,209.58,211.15,212.07,210.52,208.53,205.21,18.97,19.28,19.330000000000002,19.29,19.26,19.22,19.23,19.26,19.27,N/A,N/A +2012,1,20,5,30,101430,100240,99100,91.96000000000001,0,4.0600000000000005,6.01,6.95,7.99,8.94,9.84,10.39,10.82,12,214.05,213.95000000000002,213.76,213.27,211.97,210.04,207.25,204.47,202.91,18.82,19.17,19.23,19.22,19.14,19.02,18.95,18.89,18.61,N/A,N/A +2012,1,20,6,30,101430,100250,99100,92.13,0,4.18,6.2,7.17,8.13,9.07,10.01,10.82,11.56,12.540000000000001,198.47,199.77,200.9,202.46,203.71,204.76,205.97,207.16,208.72,18.650000000000002,18.95,19.01,19.01,18.98,18.94,18.990000000000002,19.07,19.740000000000002,N/A,N/A +2012,1,20,7,30,101440,100250,99110,92.93,0,4.05,6.24,7.51,8.93,10.02,10.8,11.13,11.290000000000001,11.540000000000001,181.31,185.81,189.26,192.38,195.48000000000002,198.55,200.35,201.63,204.44,18.43,18.59,18.62,18.66,19.150000000000002,20.03,20.28,20.32,20.27,N/A,N/A +2012,1,20,8,30,101410,100220,99080,93.66,0,3.98,5.95,7.11,8.68,10.05,11.24,11.790000000000001,12.13,12.56,176.07,180.99,184.55,188.46,191.74,194.54,196.13,197.31,199.73000000000002,18.26,18.43,18.56,18.84,19.3,19.84,20.01,20.080000000000002,20,N/A,N/A +2012,1,20,9,30,101390,100210,99070,93.5,2.2,5.69,7.66,8.8,10.15,11.48,12.81,13.82,14.68,15.21,171.91,176.94,180.68,184.20000000000002,187.36,190.28,192.8,195.05,196.68,18.150000000000002,18.400000000000002,18.62,18.98,19.34,19.7,19.91,20.05,19.97,N/A,N/A +2012,1,20,10,30,101390,100210,99070,91.55,0.4,5.87,7.95,9.03,10.21,11.33,12.41,13.5,14.540000000000001,15.59,179.57,181.24,182.65,184.39000000000001,185.95000000000002,187.41,189.44,191.55,197.06,18.6,18.79,18.900000000000002,19.12,19.330000000000002,19.55,19.66,19.740000000000002,19.77,N/A,N/A +2012,1,20,11,30,101390,100210,99070,92.02,0,7.18,9.16,10.16,11.31,12.44,13.56,14.26,14.82,15.06,180.79,182.58,184.21,186.65,189.24,191.98000000000002,194.19,196.12,197.52,18.46,18.68,18.88,19.22,19.55,19.84,19.95,20,19.830000000000002,N/A,N/A +2012,1,20,12,30,101400,100220,99080,92.27,1.1,5.43,7.41,8.48,9.64,10.66,11.56,12.48,13.370000000000001,15.64,175.15,177.83,179.93,182.22,183.95000000000002,185.24,186.36,187.38,192.71,18.44,18.68,18.79,18.93,19.03,19.1,19.17,19.23,19.61,N/A,N/A +2012,1,20,13,30,101400,100220,99080,91.44,0,6.66,8.76,9.8,10.97,12.06,13.120000000000001,14.08,14.96,16.15,178.24,179.43,180.29,181.32,182.43,183.61,185.16,186.72,191.21,18.61,18.82,18.92,19.06,19.21,19.35,19.51,19.650000000000002,19.87,N/A,N/A +2012,1,20,14,30,101420,100240,99090,91.02,0,7.1000000000000005,9.16,10.14,11.17,12.1,12.950000000000001,13.68,14.33,14.88,183.29,184.03,184.72,185.77,187.08,188.54,190.77,193.04,197.27,18.67,19.03,19.21,19.43,19.61,19.77,19.89,20,20.05,N/A,N/A +2012,1,20,15,30,101430,100250,99100,92.33,0,6.19,8.040000000000001,8.98,9.99,10.99,12,13,13.96,14.42,177.8,179.21,180.46,182.09,184.20000000000002,186.72,189.81,192.93,195.64000000000001,18.44,18.740000000000002,18.92,19.16,19.38,19.59,19.79,19.98,20.07,N/A,N/A +2012,1,20,16,30,101410,100220,99080,92.02,0,5.98,7.98,9.02,10.15,11.24,12.31,13.15,13.89,14.39,175.92000000000002,178.02,179.73,181.81,184.31,187.15,190.04,192.77,195.45000000000002,18.54,18.740000000000002,18.900000000000002,19.19,19.47,19.75,19.94,20.09,20.17,N/A,N/A +2012,1,20,17,30,101390,100210,99060,92.11,0,6.94,8.77,9.65,10.67,11.700000000000001,12.77,13.620000000000001,14.36,14.8,177.26,178.09,179.04,180.86,183.43,186.6,189.67000000000002,192.54,195.38,18.53,18.64,18.72,18.91,19.26,19.72,19.990000000000002,20.18,20.26,N/A,N/A +2012,1,20,18,30,101380,100190,99050,91.89,0,6.96,8.91,9.86,10.92,11.93,12.93,13.700000000000001,14.35,14.64,175.44,176.41,177.75,180.54,183.6,186.88,189.52,191.83,193.62,18.56,18.68,18.87,19.37,19.73,20,20.150000000000002,20.25,20.22,N/A,N/A +2012,1,20,19,30,101370,100180,99040,92.4,0,5.84,7.66,8.58,9.620000000000001,10.700000000000001,11.85,12.94,13.98,14.4,169.07,171.5,173.62,176.65,179.64000000000001,182.68,185.86,188.96,191.20000000000002,18.5,18.580000000000002,18.7,19.07,19.36,19.59,19.77,19.94,19.93,N/A,N/A +2012,1,20,20,30,101350,100160,99020,92.5,0,5.39,7.33,8.33,9.46,10.5,11.5,12.67,13.870000000000001,14.69,171.71,174.9,177.07,179.21,181.1,182.83,185.97,189.46,192.72,18.53,18.66,18.77,19.04,19.26,19.47,19.740000000000002,20.02,20.11,N/A,N/A +2012,1,20,21,30,101310,100130,98990,92.61,0,5.71,7.58,8.55,9.56,10.61,11.74,13,14.280000000000001,14.98,174.57,176.89000000000001,178.69,180.70000000000002,182.37,183.82,186.97,190.55,193.16,18.42,18.77,18.95,19.12,19.32,19.54,19.87,20.2,20.23,N/A,N/A +2012,1,20,22,30,101280,100090,98950,92.63,0,5.9,7.7700000000000005,8.73,9.78,10.72,11.620000000000001,12.77,13.98,14.57,170.1,172.64000000000001,174.58,176.78,178.84,180.84,184.82,189.31,191.99,18.36,18.67,18.87,19.16,19.38,19.55,19.84,20.13,20.16,N/A,N/A +2012,1,20,23,30,101250,100070,98930,93.28,0,5.29,7.11,8.11,9.32,10.48,11.64,12.92,14.22,14.84,167.32,171.17000000000002,174.03,177.04,179.62,181.92000000000002,185.95000000000002,190.38,192.89000000000001,18.22,18.27,18.41,18.830000000000002,19.2,19.54,19.93,20.3,20.39,N/A,N/A +2012,1,21,0,30,101260,100080,98930,92.57000000000001,0,6.01,7.87,8.84,9.89,10.86,11.8,13.01,14.290000000000001,15.05,165.97,169.21,171.54,173.88,175.97,177.91,181.88,186.41,189.83,18.35,18.57,18.73,19,19.21,19.38,19.69,20.01,20.1,N/A,N/A +2012,1,21,1,30,101240,100060,98920,92.31,0,6.7,8.61,9.56,10.620000000000001,11.65,12.65,13.68,14.66,16.6,172.11,173.99,175.36,177,178.6,180.21,181.94,183.64000000000001,190.06,18.400000000000002,18.490000000000002,18.57,18.8,19.06,19.32,19.55,19.75,20.18,N/A,N/A +2012,1,21,2,30,101270,100080,98940,92.11,0,6.890000000000001,8.89,9.93,11.040000000000001,12.09,13.11,14.1,15.02,16.580000000000002,176.69,178.08,179.24,180.71,182.15,183.57,185.14000000000001,186.67000000000002,191.96,18.43,18.740000000000002,18.94,19.23,19.45,19.63,19.76,19.87,20.06,N/A,N/A +2012,1,21,3,30,101300,100120,98980,90.24,0,6.29,8.39,9.41,10.46,11.450000000000001,12.43,13.43,14.38,15.9,176.93,178.86,180.39000000000001,182.27,183.89000000000001,185.35,186.52,187.53,189.45000000000002,18.900000000000002,19.22,19.34,19.45,19.55,19.650000000000002,19.64,19.61,19.2,N/A,N/A +2012,1,21,4,30,101300,100120,98970,89.22,0,6.88,9.14,10.27,11.38,12.34,13.22,14.040000000000001,14.81,16.18,180.86,182.08,183.09,184.39000000000001,185.76,187.23,188.88,190.51,194.51,19.1,19.43,19.53,19.6,19.62,19.62,19.52,19.400000000000002,18.92,N/A,N/A +2012,1,21,5,30,101290,100110,98970,89.04,0,7.37,9.6,10.64,11.700000000000001,12.65,13.530000000000001,14.34,15.09,16.44,184.31,185.16,185.91,187.04,188.31,189.76,191.45000000000002,193.15,196.72,19.150000000000002,19.400000000000002,19.44,19.45,19.39,19.29,19.09,18.89,18.990000000000002,N/A,N/A +2012,1,21,6,30,101330,100150,99010,90.43,0,6.21,8.290000000000001,9.31,10.38,11.43,12.49,13.57,14.620000000000001,15.88,185.94,186.76,187.48,188.62,189.92000000000002,191.39000000000001,193.21,195.08,198.72,18.96,19.18,19.2,19.17,19.07,18.92,18.86,18.830000000000002,20.03,N/A,N/A +2012,1,21,7,30,101340,100160,99020,90.92,0,7.140000000000001,9.120000000000001,10.1,11.22,12.32,13.46,14.540000000000001,15.55,16.35,189.57,190.41,191.13,192.15,193.33,194.69,196.57,198.53,202.64000000000001,18.78,18.92,18.92,18.87,18.78,18.66,19.26,20,20.5,N/A,N/A +2012,1,21,8,30,101340,100160,99010,91.29,0,6.7700000000000005,8.75,9.72,10.790000000000001,11.85,12.92,14.01,15.05,15.71,187.85,188.73,189.51,190.68,192.29,194.28,197.67000000000002,201.33,206.67000000000002,18.73,18.86,18.85,18.79,18.73,18.68,19.38,20.240000000000002,20.71,N/A,N/A +2012,1,21,9,30,101360,100180,99030,91.61,0,5.44,7.4,8.39,9.5,10.66,11.9,12.94,13.88,14.34,186.8,188.62,190.14000000000001,192.16,194.61,197.52,201.15,204.83,208.22,18.72,18.88,18.87,18.8,18.740000000000002,18.68,19.240000000000002,19.91,20.55,N/A,N/A +2012,1,21,10,30,101360,100180,99040,92.23,0.4,5.15,6.91,7.82,8.84,9.98,11.25,12.31,13.280000000000001,13.73,180.46,183.25,185.58,188.44,191.86,195.87,200.52,205.18,208.42000000000002,18.57,18.69,18.580000000000002,18.18,18.240000000000002,18.59,19.32,20.1,20.54,N/A,N/A +2012,1,21,11,30,101420,100230,99090,93.43,0,3.73,5.61,6.62,7.82,8.870000000000001,9.790000000000001,10.47,11.02,11.540000000000001,177.06,180.71,184.32,190.16,195.33,199.97,203.4,206.26,209.37,18.43,18.6,18.55,18.36,18.36,18.52,19.02,19.57,20.13,N/A,N/A +2012,1,21,12,30,101440,100250,99110,95.28,0.4,1.97,3.94,5.3,6.95,8.11,8.78,9.31,9.76,10.31,194.70000000000002,192.36,193.1,200.75,205.66,208.06,209.49,210.58,212.04,18.18,18.07,17.93,17.85,17.98,18.240000000000002,18.73,19.240000000000002,19.78,N/A,N/A +2012,1,21,13,30,101450,100260,99110,95.95,0,1.73,3.18,4.17,5.63,6.6000000000000005,7.1000000000000005,7.75,8.43,9.09,227.57,221.43,218.51,220.89000000000001,222.05,222.13,221.24,220.13,217.9,18.02,18.09,18.05,17.990000000000002,17.95,17.91,18,18.1,18.26,N/A,N/A +2012,1,21,14,30,101490,100300,99150,95.97,0.4,1.21,2.5,3.54,5.22,6.44,7.12,7.47,7.71,7.82,238.52,229.13,223.91,225.94,227.42000000000002,228.23000000000002,228.01,227.57,227.18,18.03,18.17,18.19,18.23,18.28,18.32,18.28,18.22,18.04,N/A,N/A +2012,1,21,15,30,101510,100320,99170,95.4,0,2.0300000000000002,3.2,3.67,4.15,4.58,4.97,5.34,5.68,6.24,227.43,230.86,233.07,234.66,235.72,236.43,236.64000000000001,236.71,235.87,18.240000000000002,18.48,18.53,18.57,18.580000000000002,18.57,18.55,18.53,18.44,N/A,N/A +2012,1,21,16,30,101510,100330,99180,94.96000000000001,0,2.5300000000000002,3.85,4.3,4.72,5.0600000000000005,5.3500000000000005,5.62,5.86,6.3500000000000005,211.04,216.5,219.87,221.8,223.15,224.09,225,225.84,227.29,18.400000000000002,18.75,18.830000000000002,18.85,18.84,18.82,18.79,18.76,18.71,N/A,N/A +2012,1,21,17,30,101500,100320,99170,95.2,1.8,2.66,3.85,4.26,4.7,5.04,5.3100000000000005,5.5600000000000005,5.78,6.22,214.37,220.43,223.84,225.77,226.85,227.35,227.58,227.72,227.45000000000002,18.38,18.66,18.73,18.78,18.8,18.81,18.79,18.77,18.69,N/A,N/A +2012,1,21,18,30,101500,100310,99170,95.12,6.2,2.2,3.44,3.91,4.33,4.68,4.98,5.22,5.42,5.8,213.58,219.16,222.49,224.56,226.06,227.12,227.98000000000002,228.74,230.41,18.52,18.93,19.05,19.1,19.1,19.080000000000002,19.03,18.990000000000002,18.88,N/A,N/A +2012,1,21,19,30,101500,100320,99170,94.67,0.4,2.52,3.72,4.07,4.33,4.54,4.73,4.92,5.11,5.55,203.78,209.74,213.45000000000002,215.98000000000002,218.15,220.08,222.3,224.46,228.17000000000002,18.75,19.11,19.19,19.17,19.150000000000002,19.14,19.18,19.22,19.23,N/A,N/A +2012,1,21,20,30,101470,100290,99140,94.5,0,3.18,4.25,4.57,4.89,5.15,5.38,5.63,5.87,6.34,187.54,194.86,200.03,205.36,209.42000000000002,212.61,215.62,218.4,223.45000000000002,18.77,19.02,19.11,19.21,19.32,19.42,19.51,19.580000000000002,19.62,N/A,N/A +2012,1,21,21,30,101440,100260,99120,94.08,0,3.62,4.64,4.91,5.21,5.44,5.61,5.79,5.96,6.2700000000000005,179.82,188,195.01,206.64000000000001,214.03,218.41,222.06,225.26,230.12,18.81,18.96,19.12,19.6,19.93,20.14,20.25,20.31,20.240000000000002,N/A,N/A +2012,1,21,22,30,101420,100230,99090,93.10000000000001,0,4.8500000000000005,6.16,6.48,6.48,6.43,6.37,6.3100000000000005,6.26,6.22,175.93,182.53,188,194.76,199.35,202.54,205.65,208.47,213.55,18.63,18.5,18.6,19.09,19.43,19.66,19.8,19.900000000000002,19.88,N/A,N/A +2012,1,21,23,30,101400,100220,99080,92.77,0,4.39,5.75,6.1000000000000005,6.09,6.1000000000000005,6.13,6.17,6.21,6.21,170.94,180.83,187.61,193.48000000000002,198.01,201.71,204.73000000000002,207.33,211.84,18.57,18.61,18.86,19.66,20.14,20.42,20.5,20.51,20.36,N/A,N/A +2012,1,22,0,30,101410,100230,99080,93.79,0,3.81,5.1000000000000005,5.45,5.55,5.59,5.61,5.63,5.64,5.65,176.88,183.86,189.87,198.29,204.67000000000002,209.69,213.1,215.81,218.97,18.32,18.46,18.55,18.78,19.03,19.29,19.57,19.830000000000002,19.990000000000002,N/A,N/A +2012,1,22,1,30,101420,100230,99090,95.78,0,2.04,3.27,3.74,4.07,4.2700000000000005,4.38,4.49,4.58,4.79,190.18,195.08,200.07,207.68,213.05,216.85,220.02,222.75,224.63,18.07,18.14,18.13,18.16,18.240000000000002,18.330000000000002,18.400000000000002,18.47,18.7,N/A,N/A +2012,1,22,2,30,101430,100240,99090,96.23,0,2.08,3.27,3.65,3.8200000000000003,3.93,3.99,4.1,4.2,4.67,180.44,191.52,200.19,208.77,214.32,217.83,220.69,223.19,224.25,17.96,18.06,18.11,18.26,18.38,18.47,18.55,18.63,18.78,N/A,N/A +2012,1,22,3,30,101400,100210,99060,96.7,0,1.9100000000000001,3,3.35,3.5500000000000003,3.68,3.7800000000000002,4,4.25,4.99,161.84,180.03,192.07,202.12,208.79,213.34,215.3,216.51,212.69,17.85,17.97,18.02,18.11,18.150000000000002,18.18,18.29,18.42,18.79,N/A,N/A +2012,1,22,4,30,101380,100200,99050,96.66,0,2.07,3.66,4.34,4.7,5.08,5.48,5.8500000000000005,6.21,6.86,177.41,193.06,201.63,203.06,203.28,202.73000000000002,202.06,201.39000000000001,199.98000000000002,17.87,17.84,17.81,17.88,17.98,18.11,18.400000000000002,18.69,19.18,N/A,N/A +2012,1,22,5,30,101390,100200,99050,96.37,0,2.48,3.71,4.41,5.54,6.05,6.1000000000000005,6.3100000000000005,6.5600000000000005,7.34,155.93,169.11,177.87,185.75,189.17000000000002,189.38,189.28,189.1,188.73,17.87,18.11,18.21,18.26,18.22,18.12,18.080000000000002,18.06,18.56,N/A,N/A +2012,1,22,6,30,101370,100180,99040,96.13,0,2.6,4.03,4.92,6.3500000000000005,7.25,7.68,8.040000000000001,8.370000000000001,9.05,188.29,186.8,186.36,187.11,187.78,188.34,188.95000000000002,189.53,191.05,18.150000000000002,18.34,18.47,18.72,18.87,18.96,18.97,18.96,19,N/A,N/A +2012,1,22,7,30,101370,100180,99040,95.8,0,2.69,4.82,6.21,7.99,8.88,9.08,9.15,9.18,9.21,166.36,174.29,180.95000000000002,188.83,192.92000000000002,194,194.44,194.71,195.05,18.240000000000002,18.86,19.18,19.44,19.51,19.45,19.36,19.28,19.09,N/A,N/A +2012,1,22,8,30,101340,100150,99010,92.44,0,4.96,6.86,7.79,8.790000000000001,9.6,10.27,10.96,11.620000000000001,11.870000000000001,183.62,184.54,185.43,186.81,186.71,185.53,188.02,191.38,193.3,18.81,19.04,19.11,19.2,19.26,19.3,19.3,19.29,19.13,N/A,N/A +2012,1,22,9,30,101300,100120,98980,91.34,0,6.47,8.51,9.48,10.38,10.950000000000001,11.27,11.28,11.21,11.53,183.5,186.89000000000001,189.26,191.72,192.81,192.93,191.4,189.65,190.39000000000001,18.96,19.080000000000002,19.05,18.97,18.85,18.69,18.71,18.78,19.16,N/A,N/A +2012,1,22,10,30,101280,100100,98960,92.78,0,6.5200000000000005,8.08,8.67,9.14,9.620000000000001,10.11,10.540000000000001,10.93,10.86,171.17000000000002,173.57,175.47,178.09,181.03,184.25,187.3,190.11,196.34,18.64,18.7,18.7,18.7,18.69,18.66,18.650000000000002,18.64,18.68,N/A,N/A +2012,1,22,11,30,101270,100080,98940,93.36,0,6.0600000000000005,7.3,7.73,8.040000000000001,8.34,8.65,9.75,11.1,13.25,174.74,172.87,171.27,168.87,167.34,166.42000000000002,170.25,175.53,182.78,18.5,18.580000000000002,18.59,18.6,18.55,18.47,18.46,18.48,19.64,N/A,N/A +2012,1,22,12,30,101250,100070,98930,93.29,0,5.79,7.65,8.63,9.790000000000001,10.93,12.08,12.81,13.370000000000001,13.790000000000001,162.94,167.35,171.06,176.39000000000001,179.68,181.41,181.87,181.96,183.16,18.54,18.44,18.26,17.93,18.3,19.16,19.72,20.16,20.31,N/A,N/A +2012,1,22,13,30,101250,100060,98920,97.22,0.4,5.16,6.69,8.1,10.89,12.530000000000001,13.18,13.8,14.38,15.05,159.22,161.65,165.11,172.65,176.87,178.22,179.47,180.62,182.52,17.7,17.37,17.61,18.580000000000002,19.34,19.98,20.29,20.5,20.56,N/A,N/A +2012,1,22,14,30,101250,100060,98920,91.04,0,6.92,8.870000000000001,9.81,10.78,11.69,12.56,13.4,14.19,15.69,170.66,171.37,172.01,173,174.16,175.48,176.86,178.17000000000002,180.03,19.01,19.34,19.5,19.68,19.82,19.95,20.06,20.14,20.2,N/A,N/A +2012,1,22,15,30,101240,100060,98920,91.16,0,6.8100000000000005,8.700000000000001,9.620000000000001,10.61,11.56,12.5,13.370000000000001,14.19,15.63,166.32,167.71,168.88,170.49,172.01,173.51,174.72,175.8,178.52,19.02,19.35,19.51,19.7,19.86,20.02,20.12,20.2,20.35,N/A,N/A +2012,1,22,16,30,101220,100040,98900,91.37,0,6.67,8.5,9.41,10.43,11.4,12.36,13.27,14.13,15.42,164.85,166.44,167.67000000000002,169.24,170.56,171.72,172.71,173.61,175.62,19.02,19.330000000000002,19.48,19.64,19.79,19.93,20.06,20.17,20.22,N/A,N/A +2012,1,22,17,30,101220,100040,98900,91.86,0,5.12,6.92,7.8500000000000005,8.86,9.83,10.81,11.74,12.63,14.6,163.37,164.96,166.31,167.92000000000002,169.32,170.59,171.79,172.92000000000002,177.02,19.07,19.35,19.43,19.47,19.52,19.59,19.69,19.8,20.05,N/A,N/A +2012,1,22,18,30,101190,100010,98870,89.95,0,8.15,10.11,11.02,11.96,12.85,13.72,14.56,15.35,16.54,171.66,172.25,172.8,173.79,174.97,176.34,177.89000000000001,179.41,182.51,19.38,19.66,19.78,19.92,20.07,20.23,20.37,20.48,20.55,N/A,N/A +2012,1,22,19,30,101160,99980,98840,90.51,0,8.700000000000001,10.67,11.59,12.58,13.51,14.44,15.36,16.23,17.81,169.52,171.11,172.22,173.68,175.06,176.42000000000002,177.70000000000002,178.88,181.76,19.13,19.42,19.56,19.740000000000002,19.91,20.1,20.26,20.41,20.63,N/A,N/A +2012,1,22,20,30,101160,99990,98850,89.16,0,8.19,10.34,11.36,12.4,13.35,14.25,15.05,15.77,16.71,175.49,175.85,176.17000000000002,176.67000000000002,177.3,178.04,179.15,180.31,184.15,19.48,19.92,20.13,20.36,20.55,20.72,20.84,20.94,21,N/A,N/A +2012,1,22,21,30,101130,99950,98820,90.48,0,7.07,9.17,10.24,11.39,12.43,13.43,14.25,14.97,15.83,168.96,170.13,171.03,172.01,173.03,174.14000000000001,176.09,178.22,184.31,19.2,19.650000000000002,19.88,20.14,20.37,20.59,20.740000000000002,20.86,20.93,N/A,N/A +2012,1,22,22,30,101100,99920,98790,89.98,0,6.86,9.02,10.07,11.16,12.13,13.01,13.790000000000001,14.48,15.23,167.77,168.67000000000002,169.58,171.06,173,175.32,178.56,181.92000000000002,187.70000000000002,19.3,19.69,19.89,20.150000000000002,20.36,20.55,20.68,20.79,20.84,N/A,N/A +2012,1,22,23,30,101080,99900,98770,89.4,0,8.01,10.22,11.27,12.36,13.33,14.25,15.08,15.85,16.740000000000002,167.54,168.89000000000001,170.11,171.96,174.19,176.73,180.26,183.91,190.17000000000002,19.37,19.68,19.84,20.05,20.3,20.580000000000002,20.77,20.92,21.01,N/A,N/A +2012,1,23,0,30,101120,99950,98820,88.62,0,7.8500000000000005,10.08,11.22,12.41,13.47,14.46,15.21,15.83,16.31,174.43,175.42000000000002,176.41,178.19,180.46,183.36,186.91,190.49,195.91,19.54,19.87,19.990000000000002,20.150000000000002,20.38,20.68,20.97,21.23,21.35,N/A,N/A +2012,1,23,1,30,101130,99960,98820,88.07000000000001,0.4,7.61,10,11.22,12.5,13.620000000000001,14.64,15.4,16.02,16.69,178.51,179.21,179.82,180.87,182.21,183.88,186.66,189.71,198.45000000000002,19.69,20.04,20.16,20.27,20.31,20.31,20.580000000000002,20.93,21.240000000000002,N/A,N/A +2012,1,23,2,30,101170,100000,98870,87.46000000000001,0.4,8.02,10.44,11.620000000000001,12.790000000000001,13.73,14.51,14.950000000000001,15.24,15.26,185.19,185.94,186.73,188.21,190.42000000000002,193.32,197.8,202.55,210.32,19.830000000000002,20.14,20.22,20.29,20.53,20.900000000000002,21.19,21.44,21.54,N/A,N/A +2012,1,23,3,30,101240,100070,98930,88.37,0,6.6000000000000005,8.97,10.17,11.55,12.64,13.49,13.82,13.950000000000001,13.91,192.83,192.77,193.21,194.93,197.76,201.83,209.12,216.98000000000002,220.71,19.7,20.080000000000002,20.18,20.240000000000002,20.43,20.740000000000002,20.93,21.07,21.150000000000002,N/A,N/A +2012,1,23,4,30,101270,100090,98960,89.33,0,5.61,8.08,9.27,10.47,11.33,11.950000000000001,12.15,12.23,12.44,203.71,203.79,204.33,205.8,209.38,214.18,222.17000000000002,230.25,233.42000000000002,19.55,20,20.16,20.32,20.44,20.52,20.41,20.27,20.32,N/A,N/A +2012,1,23,5,30,101360,100180,99040,91.38,0.4,3.83,5.71,6.55,7.53,8.36,9.08,9.46,9.71,9.89,245.47,241.95000000000002,239,235.28,236.38,241.65,244.12,245.52,247.3,19.330000000000002,19.85,20.02,20.18,20.23,20.21,20.150000000000002,20.09,19.91,N/A,N/A +2012,1,23,6,30,101410,100230,99090,92.13,0,3.41,5.24,6.09,7.2700000000000005,8,8.31,8.63,8.93,9.65,236.05,239.26,242.78,249.34,252.54,252.66,252.73000000000002,252.79,252.29,19.3,19.91,20.09,20.17,20.19,20.17,20.14,20.11,20.05,N/A,N/A +2012,1,23,7,30,101480,100300,99160,92.94,0.4,3.12,5.54,6.72,7.61,8.120000000000001,8.32,8.370000000000001,8.370000000000001,8.370000000000001,247.48000000000002,249.70000000000002,252.56,257.98,260.88,261.64,261.77,261.69,261.55,19.150000000000002,19.8,20,20.03,19.990000000000002,19.88,19.78,19.69,19.51,N/A,N/A +2012,1,23,8,30,101520,100330,99190,91.72,0,4.57,6.46,7.2700000000000005,7.930000000000001,8.47,8.9,8.94,8.870000000000001,8.85,279.76,282.21,284.19,286.75,287.57,287.16,285.76,284.23,283.92,19.1,19.580000000000002,19.7,19.64,19.55,19.43,19.3,19.19,19.01,N/A,N/A +2012,1,23,9,30,101550,100360,99220,93.68,0.4,3.84,5.37,5.89,6.13,6.23,6.24,6.22,6.19,6.15,302.13,304,304.29,302.57,300.78000000000003,298.94,297.44,296.17,294.22,18.68,19.25,19.51,19.69,19.77,19.78,19.73,19.650000000000002,19.43,N/A,N/A +2012,1,23,10,30,101570,100380,99230,96.11,0,4.42,5.78,6.36,6.78,6.98,7.04,7,6.95,6.84,333.95,331.01,329.24,328.03000000000003,327.07,326.3,325.96,325.75,325.83,18.02,18.240000000000002,18.36,18.490000000000002,18.61,18.740000000000002,18.77,18.78,18.650000000000002,N/A,N/A +2012,1,23,11,30,101600,100410,99260,99.33,0,5.88,6.37,6.6000000000000005,6.91,7.01,6.95,6.98,7.04,6.82,352.92,355.31,357.61,0.96,2.2,1.83,1.3800000000000001,0.9400000000000001,0.6,16.68,16.01,16.7,18.72,19.490000000000002,19.34,19.26,19.19,18.94,N/A,N/A +2012,1,23,12,30,101660,100460,99290,69.17,0,9.42,10.27,10.47,10.61,10.83,11.08,11.55,11.870000000000001,11.200000000000001,359.15000000000003,359.07,359.04,359.02,359.03000000000003,359.06,359.45,359.87,0.59,16.88,16.59,16.44,16.27,16.13,16.01,16.1,16.3,17.25,N/A,N/A +2012,1,23,13,30,101710,100500,99330,69.98,0,8.15,8.74,8.870000000000001,8.950000000000001,9.14,9.370000000000001,10.200000000000001,10.92,10.55,12.09,12.370000000000001,12.56,12.790000000000001,13.23,13.75,15.22,16.56,16.8,16.11,15.780000000000001,15.620000000000001,15.44,15.3,15.17,15.39,15.68,16.75,N/A,N/A +2012,1,23,14,30,101740,100530,99360,72.82000000000001,0,8.66,9.18,9.290000000000001,9.39,9.89,10.59,10.81,10.9,10.32,12.25,12.77,13.06,13.5,14.57,15.94,16.91,17.56,16.88,15.75,15.42,15.27,15.13,15.19,15.35,16.17,16.85,17.18,N/A,N/A +2012,1,23,15,30,101780,100570,99400,74.69,0,7.5600000000000005,8.040000000000001,8.11,8.13,8.17,8.21,8.59,8.99,9.65,28.88,29.080000000000002,29.21,29.36,29.560000000000002,29.77,30.38,30.830000000000002,30.54,15.5,15.14,14.96,14.780000000000001,14.620000000000001,14.47,14.42,14.51,15.73,N/A,N/A +2012,1,23,16,30,101780,100570,99390,75.24,0,6.23,6.59,6.65,6.66,6.67,6.67,6.72,6.8500000000000005,7.79,26.900000000000002,27.01,27.080000000000002,27.150000000000002,27.240000000000002,27.32,27.490000000000002,27.64,27.84,15.56,15.19,15.01,14.82,14.64,14.47,14.290000000000001,14.19,14.82,N/A,N/A +2012,1,23,17,30,101790,100580,99410,72.96000000000001,0,5.19,5.5200000000000005,5.58,5.62,5.63,5.65,5.66,5.67,5.73,39.6,39.32,39.13,38.93,38.71,38.49,38.2,37.9,36.95,15.860000000000001,15.51,15.33,15.14,14.94,14.76,14.56,14.38,14.01,N/A,N/A +2012,1,23,18,30,101790,100580,99410,68.93,0,4.17,4.39,4.44,4.45,4.46,4.47,4.5,4.55,5.01,41.58,41.04,40.59,40.07,39.46,38.83,37.79,36.53,30.59,16.42,16.1,15.93,15.74,15.56,15.38,15.200000000000001,15.040000000000001,14.86,N/A,N/A +2012,1,23,19,30,101800,100590,99430,69.5,0,2.98,3.08,3.09,3.11,3.37,3.7800000000000002,4.0200000000000005,4.23,4.7,63.56,62.74,61.78,60.14,54.6,46.74,43.13,40.45,36.65,16.63,16.330000000000002,16.17,16.01,15.96,15.98,16.04,16.080000000000002,16.06,N/A,N/A +2012,1,23,20,30,101760,100560,99390,70.72,0,2.83,2.95,3.02,3.18,3.5300000000000002,4.01,4.28,4.48,4.83,63.57,62.9,62.050000000000004,60.46,56.89,52.03,48.64,45.71,40.35,16.85,16.56,16.43,16.32,16.4,16.57,16.71,16.82,16.84,N/A,N/A +2012,1,23,21,30,101730,100530,99370,73.91,0,2.45,2.5500000000000003,2.74,3.23,3.62,3.93,4.19,4.42,4.76,63.52,62.940000000000005,61.85,59.36,56.4,53.300000000000004,49.78,46.4,40.35,17.02,16.740000000000002,16.66,16.66,16.8,17.01,17.2,17.38,17.51,N/A,N/A +2012,1,23,22,30,101710,100510,99340,76.93,0,2.23,2.35,2.47,2.73,3.09,3.52,3.8000000000000003,4.04,4.46,79.16,77.7,76.14,73.26,69.54,65.23,62.31,59.64,53.160000000000004,17.080000000000002,16.81,16.68,16.580000000000002,16.6,16.69,16.830000000000002,16.96,17.25,N/A,N/A +2012,1,23,23,30,101710,100510,99350,79.32000000000001,0,2.27,2.3000000000000003,2.47,3.02,3.43,3.74,4.04,4.34,4.82,94.27,94.39,92.32000000000001,86.45,82.62,80.15,77.31,74.52,68.52,17.04,16.76,16.67,16.68,16.77,16.91,17.13,17.330000000000002,17.6,N/A,N/A +2012,1,24,0,30,101710,100510,99350,78.9,0,2.42,2.97,3.3200000000000003,3.7600000000000002,4.18,4.6000000000000005,4.97,5.32,5.88,89.61,88.48,87.21000000000001,85.10000000000001,82.67,80.04,77.55,75.21000000000001,70.84,17.16,17.06,17.13,17.330000000000002,17.6,17.87,18.07,18.240000000000002,18.36,N/A,N/A +2012,1,24,1,30,101710,100510,99360,75.05,0,2.62,3.46,3.99,4.53,5.04,5.53,5.9,6.21,6.65,65.41,66.97,67.64,67.61,67.22,66.63,65.59,64.53,62.14,17.54,17.740000000000002,17.92,18.19,18.45,18.71,18.86,18.97,18.96,N/A,N/A +2012,1,24,2,30,101710,100520,99360,72.33,0,3.27,4.19,4.79,5.48,5.92,6.21,6.47,6.7,7.07,63.27,65.97,67.26,67.57000000000001,67.18,66.45,65.65,64.89,63.42,17.71,17.82,18.04,18.490000000000002,18.740000000000002,18.88,18.92,18.93,18.79,N/A,N/A +2012,1,24,3,30,101710,100520,99360,77.31,0,3.69,4.23,4.61,5.21,5.5200000000000005,5.66,5.76,5.84,5.97,67.7,68.24,68.95,70.17,70.57000000000001,70.53,70.98,71.62,74.99,17.54,17.41,17.6,18.150000000000002,18.43,18.56,18.59,18.6,18.54,N/A,N/A +2012,1,24,4,30,101710,100510,99360,73.43,0,3.42,4.48,5.36,6.79,8.120000000000001,9.38,9.66,9.73,9.14,53.59,56.76,59.33,62.67,66.5,70.58,75.31,79.32000000000001,81.04,17.73,17.87,18,18.19,18.150000000000002,18.02,18.1,18.21,18.55,N/A,N/A +2012,1,24,5,30,101700,100500,99340,79.51,0,6.43,7.34,7.72,8.120000000000001,8.56,9.01,9.59,10.15,10.97,78.02,78.94,79.67,80.63,81.87,83.22,85.09,87,91.33,17.650000000000002,17.51,17.43,17.35,17.29,17.26,17.31,17.38,17.8,N/A,N/A +2012,1,24,6,30,101700,100500,99340,80.2,0,7.48,8.44,8.82,9.17,9.56,9.96,10.5,11.01,11.540000000000001,81.09,81.85000000000001,82.43,83.16,84.15,85.2,87.03,89.17,96.29,17.650000000000002,17.47,17.37,17.26,17.17,17.11,17.16,17.28,18.13,N/A,N/A +2012,1,24,7,30,101700,100510,99350,80.24,0,7.98,8.950000000000001,9.31,9.63,9.950000000000001,10.26,10.67,11.09,11.94,85.16,85.62,85.99,86.43,86.97,87.55,88.57000000000001,89.82000000000001,95.69,17.62,17.42,17.31,17.17,17.06,16.96,16.91,16.92,17.52,N/A,N/A +2012,1,24,8,30,101700,100500,99340,81.5,0,7.17,8.11,8.47,8.790000000000001,9.09,9.370000000000001,9.700000000000001,10.03,10.83,89.19,89.4,89.57000000000001,89.82000000000001,90.17,90.57000000000001,91.5,92.60000000000001,97.22,17.57,17.36,17.240000000000002,17.09,16.96,16.84,16.77,16.73,17.13,N/A,N/A +2012,1,24,9,30,101690,100490,99330,82.34,0,7.44,8.48,8.89,9.26,9.6,9.92,10.28,10.63,11.33,86.48,87.14,87.67,88.31,89.09,89.9,91.18,92.52,96.68,17.57,17.38,17.26,17.14,17.03,16.93,16.9,16.9,17.29,N/A,N/A +2012,1,24,10,30,101680,100480,99320,82.06,0,7.28,8.18,8.51,8.8,9.09,9.370000000000001,9.71,10.05,10.99,88.2,88.75,89.19,89.72,90.34,91,91.97,93.05,98.23,17.62,17.42,17.29,17.14,17.01,16.88,16.77,16.68,16.86,N/A,N/A +2012,1,24,11,30,101680,100490,99330,83.37,0,7.44,8.36,8.700000000000001,9,9.290000000000001,9.56,9.91,10.26,11.200000000000001,90.60000000000001,91.13,91.53,91.99,92.55,93.14,93.94,94.78,100.31,17.59,17.38,17.240000000000002,17.09,16.94,16.81,16.68,16.57,16.73,N/A,N/A +2012,1,24,12,30,101670,100480,99320,85.43,0,7.5200000000000005,8.47,8.84,9.18,9.540000000000001,9.91,10.43,10.86,10.75,90.17,90.66,91.08,91.61,92.39,93.27,95.49,98.69,112.61,17.64,17.43,17.31,17.16,17.05,16.95,17.01,17.18,18.330000000000002,N/A,N/A +2012,1,24,13,30,101690,100490,99330,88.46000000000001,0,7.32,8.290000000000001,8.66,9.03,9.44,9.85,10.23,10.53,10.43,87.73,88.38,88.98,89.8,91.26,92.94,101.75,109.73,114.44,17.63,17.43,17.32,17.2,17.13,17.09,17.66,18.16,18.2,N/A,N/A +2012,1,24,14,30,101710,100520,99360,90.17,0,7.17,8.16,8.55,8.94,9.38,9.81,10.28,10.66,10.63,92.79,93.3,93.84,94.68,96.34,98.4,107.28,116.39,128.26,17.73,17.56,17.45,17.35,17.29,17.26,17.42,17.59,17.89,N/A,N/A +2012,1,24,15,30,101720,100520,99370,94.56,0.7000000000000001,7.38,8.38,8.790000000000001,9.21,9.67,10.14,10.57,10.94,11.24,92.95,94.03,95.03,96.5,100.21000000000001,105.02,117.12,128.36,133.78,17.56,17.36,17.26,17.16,17.2,17.3,17.78,18.22,18.36,N/A,N/A +2012,1,24,16,30,101680,100490,99330,96.66,1.1,7.63,8.620000000000001,9,9.36,9.68,9.96,10.15,10.32,10.73,93.27,93.47,93.72,94.14,95.54,97.35000000000001,104.32000000000001,111.60000000000001,127.31,17.53,17.31,17.19,17.07,17.02,17.01,17.25,17.5,17.96,N/A,N/A +2012,1,24,17,30,101650,100460,99310,97.29,0,5.62,6.67,7.12,7.58,8.27,9.120000000000001,9.4,9.56,9.6,94.9,96.8,99.35000000000001,103.88,111.13,120.08,122.97,124.58,127.34,17.89,17.8,17.77,17.76,18.150000000000002,18.740000000000002,18.900000000000002,18.96,18.84,N/A,N/A +2012,1,24,18,30,101650,100460,99310,89.2,0,6.140000000000001,7.48,8.08,8.66,9,9.21,9.26,9.290000000000001,9.47,97,98.94,101.01,104.37,107.74000000000001,110.95,113.12,114.88,117.62,18.5,18.62,18.75,18.96,19.080000000000002,19.16,19.05,18.92,18.64,N/A,N/A +2012,1,24,19,30,101600,100410,99260,94.04,0,7.7700000000000005,9.15,9.78,10.46,11.11,11.72,11.96,12.08,11.620000000000001,92.06,92.61,93.21000000000001,94.21000000000001,96.10000000000001,98.45,104.85000000000001,111.37,121.53,18.14,18.06,18.01,17.97,17.97,17.990000000000002,18.2,18.42,18.51,N/A,N/A +2012,1,24,20,30,101550,100350,99200,94.7,0,8.040000000000001,9.41,10,10.61,11.22,11.83,12.280000000000001,12.620000000000001,12.39,88.38,89.45,90.32000000000001,91.42,92.83,94.34,99.24000000000001,105.12,125.19,17.97,17.84,17.76,17.68,17.63,17.6,17.82,18.06,18.67,N/A,N/A +2012,1,24,21,30,101520,100320,99170,94.07000000000001,0,8.790000000000001,10.06,10.55,11.02,11.51,11.99,12.26,12.46,12.59,91.35000000000001,91.55,91.82000000000001,92.23,93.29,94.64,107.56,119.83,128.02,17.79,17.6,17.48,17.36,17.28,17.23,17.82,18.38,18.62,N/A,N/A +2012,1,24,22,30,101480,100280,99140,92.87,0,8.28,9.63,10.25,10.93,11.56,12.13,12.52,12.84,13.09,92.8,93.33,93.77,94.35000000000001,96.34,99.06,117,134.37,137.57,17.85,17.68,17.57,17.46,17.52,17.66,18.56,19.400000000000002,19.22,N/A,N/A +2012,1,24,23,30,101430,100240,99100,96.27,0,9.13,10.53,11.120000000000001,11.73,12.41,13.120000000000001,13.39,13.57,13.86,96.67,97.04,97.36,97.84,98.85000000000001,100.12,115.4,130.34,135,17.77,17.59,17.48,17.36,17.3,17.27,18.39,19.490000000000002,19.78,N/A,N/A +2012,1,25,0,30,101440,100250,99100,96.82000000000001,0,9.49,10.98,11.57,12.16,12.75,13.34,13.84,14.3,15.370000000000001,101.34,102.06,102.75,103.82000000000001,105.88,108.39,117.65,126.95,139.14000000000001,17.91,17.77,17.71,17.7,17.77,17.89,18.39,18.89,19.580000000000002,N/A,N/A +2012,1,25,1,30,101430,100240,99090,94.81,0,9.32,11,11.72,12.43,13.14,13.83,14.56,15.25,16.15,105.89,106.35000000000001,106.75,107.3,108.14,109.10000000000001,111.58,114.58,133.51,18.31,18.29,18.26,18.23,18.21,18.21,18.29,18.42,19.26,N/A,N/A +2012,1,25,2,30,101430,100240,99100,91.81,0,9.59,11.65,12.55,13.46,14.23,14.91,15.370000000000001,15.74,16.28,107.5,109.5,111.17,113.47,116.2,119.14,122.85000000000001,126.42,135.16,18.94,19.12,19.22,19.34,19.48,19.63,19.740000000000002,19.82,19.71,N/A,N/A +2012,1,25,3,30,101420,100240,99100,91.06,0,7.930000000000001,9.98,10.870000000000001,11.76,12.5,13.15,13.68,14.14,15.33,110.05,112.21000000000001,113.95,116.21000000000001,118.67,121.2,124.03,126.73,132.58,19.13,19.35,19.45,19.56,19.67,19.77,19.78,19.77,19.37,N/A,N/A +2012,1,25,4,30,101350,100170,99030,90.15,0,9.200000000000001,11.22,12.08,12.96,13.780000000000001,14.55,15.44,16.31,17.82,114.24000000000001,115.13,115.84,117.03,118.53,120.18,122.48,124.85000000000001,129.49,19.32,19.46,19.490000000000002,19.52,19.54,19.55,19.56,19.57,19.5,N/A,N/A +2012,1,25,5,30,101320,100140,99000,90.31,0,8.93,11.11,12.09,13.08,13.99,14.85,15.67,16.43,17.69,118.57000000000001,119.46000000000001,120.18,121.10000000000001,122.08,123.08,124.19,125.26,128.12,19.27,19.400000000000002,19.42,19.43,19.43,19.42,19.39,19.36,19.25,N/A,N/A +2012,1,25,6,30,101350,100160,99020,92.07000000000001,0,7.58,9.48,10.370000000000001,11.27,12.120000000000001,12.93,13.77,14.57,16.07,111.16,112.92,114.43,116.43,118.60000000000001,120.9,123.52,126.10000000000001,131.88,19.11,19.21,19.22,19.23,19.22,19.22,19.19,19.17,19.2,N/A,N/A +2012,1,25,7,30,101330,100150,99010,93.13,0,7.3,9.040000000000001,9.84,10.66,11.46,12.23,12.96,13.64,14.96,107.38,109.54,111.22,113.34,115.38,117.35000000000001,119.60000000000001,121.78,126.61,18.89,18.96,18.96,18.94,18.900000000000002,18.86,18.8,18.75,18.95,N/A,N/A +2012,1,25,8,30,101300,100120,98980,93.64,0,6.99,8.73,9.55,10.42,11.22,11.98,12.700000000000001,13.370000000000001,14.93,111.23,113.22,114.82000000000001,116.87,119,121.16,123.55,125.87,133.09,18.79,18.88,18.91,18.93,18.93,18.93,18.95,18.98,19.46,N/A,N/A +2012,1,25,9,30,101210,100030,98890,91.95,6.2,11.26,13.290000000000001,14.08,14.85,15.59,16.31,17,17.650000000000002,18.47,110,111.99000000000001,113.94,116.88,120.08,123.36,126.47,129.3,132.56,19.13,19.29,19.35,19.42,19.64,19.93,20.11,20.25,20.23,N/A,N/A +2012,1,25,10,30,101180,100000,98860,92.46000000000001,3.7,10.25,12.07,12.74,13.33,13.97,14.620000000000001,15.530000000000001,16.45,18.39,107.38,109.12,110.87,113.62,116.91,120.5,124.33,127.99000000000001,133.89000000000001,19.01,19.080000000000002,19.11,19.14,19.22,19.31,19.41,19.51,19.73,N/A,N/A +2012,1,25,11,30,101100,99930,98790,90.44,2.2,11.8,14.120000000000001,15.040000000000001,15.91,16.71,17.47,18.18,18.84,20.06,118.79,120.36,121.49000000000001,122.87,124.41,126.03,127.82000000000001,129.51,133.39000000000001,19.45,19.57,19.59,19.6,19.61,19.62,19.6,19.59,19.75,N/A,N/A +2012,1,25,12,30,101200,100020,98880,90.8,0,7.22,9.23,10.13,10.99,11.77,12.52,13.24,13.91,15.31,128.54,128.7,129.07,129.78,130.86,132.18,133.85,135.49,139.18,19.41,19.54,19.54,19.51,19.490000000000002,19.47,19.47,19.47,19.46,N/A,N/A +2012,1,25,13,30,101190,100010,98870,90.92,0,8.03,10.08,11.02,11.97,12.85,13.69,14.52,15.31,16.67,135.99,137.02,137.82,138.76,139.68,140.59,141.48,142.31,143.78,19.37,19.47,19.48,19.48,19.48,19.48,19.490000000000002,19.5,19.47,N/A,N/A +2012,1,25,14,30,101190,100010,98870,90.98,0,6.99,9.1,10.08,11.07,11.98,12.82,13.63,14.370000000000001,15.700000000000001,144.88,145.28,145.66,146.13,146.69,147.31,148.09,148.85,150.57,19.39,19.490000000000002,19.490000000000002,19.48,19.51,19.56,19.63,19.69,19.740000000000002,N/A,N/A +2012,1,25,15,30,101210,100030,98890,91.95,0.4,6.8500000000000005,8.73,9.65,10.69,11.73,12.790000000000001,13.73,14.6,15.99,136.2,139.15,141.28,143.66,145.51,147.03,148.33,149.5,152.38,19.19,19.42,19.53,19.67,19.82,19.96,20.07,20.16,20.19,N/A,N/A +2012,1,25,16,30,101210,100030,98890,91.36,0.7000000000000001,6.8,8.790000000000001,9.73,10.72,11.66,12.59,13.530000000000001,14.43,16.17,137.15,140.17000000000002,142.39000000000001,144.94,147.39000000000001,149.8,152.09,154.25,157.69,19.330000000000002,19.56,19.650000000000002,19.740000000000002,19.830000000000002,19.900000000000002,19.97,20.02,20.07,N/A,N/A +2012,1,25,17,30,101160,99980,98850,91.05,0,8.290000000000001,10.31,11.22,12.16,13.06,13.93,14.8,15.620000000000001,17.04,135.32,137.75,139.62,142,144.4,146.81,149.15,151.33,155.21,19.37,19.580000000000002,19.650000000000002,19.72,19.79,19.86,19.91,19.97,19.95,N/A,N/A +2012,1,25,18,30,101090,99910,98780,90.92,0.7000000000000001,8.57,10.72,11.700000000000001,12.72,13.63,14.47,15.18,15.82,16.67,141.58,143.33,144.68,146.34,148.12,149.95000000000002,151.91,153.76,157.4,19.41,19.73,19.89,20.06,20.22,20.38,20.490000000000002,20.57,20.56,N/A,N/A +2012,1,25,19,30,100980,99800,98670,89.62,0,9.35,11.540000000000001,12.450000000000001,13.280000000000001,13.950000000000001,14.530000000000001,14.97,15.34,15.85,135.19,137.12,138.91,141.45000000000002,144.52,147.88,151.26,154.4,158.78,19.69,20.05,20.21,20.38,20.55,20.69,20.77,20.82,20.68,N/A,N/A +2012,1,25,20,30,100900,99720,98590,91.11,0,8.1,10.13,11.01,11.870000000000001,12.57,13.17,13.75,14.27,14.55,120.67,122.72,124.54,127.04,130.12,133.47,137.56,141.65,153.41,19.35,19.55,19.63,19.73,19.830000000000002,19.91,19.95,19.98,20.26,N/A,N/A +2012,1,25,21,30,101070,99890,98750,96.55,306.2,2.07,2.95,3.1,3.1,3.18,3.3000000000000003,3.43,3.5700000000000003,4.08,246.41,240.95000000000002,238.27,235.82,231.23000000000002,225.53,220.57,216.09,207.4,18.44,19.51,19.77,19.54,19.330000000000002,19.16,19,18.85,18.55,N/A,N/A +2012,1,25,22,30,100940,99760,98620,95.2,4,5.33,6.8,7.43,7.99,8.51,9,9.58,10.14,11.24,163.07,165.93,168.52,171.81,174.92000000000002,177.85,181.07,184.25,192.61,18.48,18.400000000000002,18.330000000000002,18.22,18.14,18.080000000000002,18.03,17.98,18.02,N/A,N/A +2012,1,25,23,30,100960,99780,98630,95.43,0,6.63,7.87,8.38,8.870000000000001,9.35,9.82,10.17,10.44,10.17,165.44,166.62,167.88,169.8,172.49,175.54,179.18,182.8,191.54,18.38,18.28,18.21,18.14,18.12,18.13,18.14,18.14,18.01,N/A,N/A +2012,1,26,0,30,101010,99830,98690,96.44,0,5.24,6.24,6.640000000000001,7.03,7.59,8.28,8.26,8.120000000000001,8.290000000000001,172.09,171.84,171.81,172.14000000000001,171.16,169.32,185.53,202.73000000000002,209.32,18.21,18.14,18.09,18.03,17.97,17.92,18,18.1,18,N/A,N/A +2012,1,26,1,30,101030,99850,98710,95.55,0,3.95,5.13,5.39,5.05,4.98,5.12,5.22,5.28,5.36,177.83,180.82,192.59,223.46,239.54,246.11,251.21,255.48000000000002,260.66,18.44,18.490000000000002,18.52,18.580000000000002,18.580000000000002,18.53,18.45,18.36,18.14,N/A,N/A +2012,1,26,2,30,101110,99930,98780,94.64,0,4.25,5,4.99,4.78,4.51,4.24,3.91,3.63,4.07,189.19,201.35,210.6,220.47,226.02,229.1,236.48000000000002,243.75,277.48,18.64,18.64,18.5,18.23,18.01,17.82,17.6,17.42,17.28,N/A,N/A +2012,1,26,3,30,101180,99990,98840,96.28,0,2.9,3.95,4.28,4.49,4.67,4.83,4.74,4.63,4.62,197.1,209.93,219.83,231.04,237.61,241.52,252.61,263.21,270.57,18.35,18.2,18.05,17.85,17.72,17.62,17.53,17.44,17.27,N/A,N/A +2012,1,26,4,30,101200,100000,98840,91.13,0,7.68,8.23,8.33,8.36,8.45,8.55,8.700000000000001,8.77,8.11,285.41,285.86,286.26,286.83,287.93,289.21,292.07,294.83,298.94,17.13,16.82,16.65,16.47,16.3,16.14,16.07,16.05,16.4,N/A,N/A +2012,1,26,5,30,101270,100070,98910,90.32000000000001,0,5.28,5.58,5.62,5.62,5.63,5.65,5.76,5.8500000000000005,5.68,292.37,292.65000000000003,292.81,292.96,293.22,293.5,294.35,295.11,294.63,16.85,16.53,16.36,16.17,15.98,15.81,15.700000000000001,15.620000000000001,15.72,N/A,N/A +2012,1,26,6,30,101310,100110,98950,90.92,0,6.9,7.32,7.37,7.34,7.29,7.23,7.140000000000001,7.04,6.5600000000000005,279.09000000000003,279.34000000000003,279.48,279.61,279.74,279.87,280.06,280.25,281.1,16.21,15.85,15.67,15.48,15.290000000000001,15.11,14.92,14.74,14.44,N/A,N/A +2012,1,26,7,30,101320,100120,98950,89.52,0,5.73,6.01,6.03,6,5.95,5.89,5.79,5.66,5.08,276.34000000000003,276.22,276.15000000000003,276.05,275.88,275.68,275.09000000000003,274.18,269.07,15.950000000000001,15.6,15.42,15.23,15.040000000000001,14.870000000000001,14.700000000000001,14.56,14.540000000000001,N/A,N/A +2012,1,26,8,30,101320,100120,98950,91.32000000000001,0,6.67,7.09,7.15,7.16,7.140000000000001,7.11,7.07,7.0200000000000005,6.890000000000001,266.04,265.88,265.74,265.59000000000003,265.41,265.23,265,264.77,264.05,15.780000000000001,15.4,15.21,15.01,14.82,14.63,14.43,14.25,13.870000000000001,N/A,N/A +2012,1,26,9,30,101340,100130,98960,86.67,0,6.95,7.37,7.44,7.46,7.45,7.43,7.41,7.390000000000001,7.3500000000000005,270.54,270.33,270.17,270,269.81,269.62,269.38,269.13,268.4,14.69,14.26,14.07,13.88,13.68,13.51,13.31,13.14,12.8,N/A,N/A +2012,1,26,10,30,101370,100160,98990,88.81,0,8.48,9.08,9.21,9.26,9.27,9.28,9.27,9.25,9.200000000000001,275.41,274.94,274.59000000000003,274.24,273.90000000000003,273.58,273.22,272.88,272.12,14.530000000000001,14.06,13.85,13.65,13.44,13.26,13.06,12.870000000000001,12.49,N/A,N/A +2012,1,26,11,30,101420,100200,99020,92.36,0,9.58,10.24,10.39,10.44,10.450000000000001,10.46,10.44,10.42,10.36,280.45,280.36,280.3,280.24,280.15000000000003,280.07,279.96,279.84000000000003,279.52,12.86,12.280000000000001,12.040000000000001,11.82,11.61,11.42,11.200000000000001,11.01,10.61,N/A,N/A +2012,1,26,12,30,101440,100220,99040,92,0,7.68,8.15,8.25,8.28,8.290000000000001,8.290000000000001,8.28,8.27,8.25,278.5,278.13,277.86,277.59000000000003,277.33,277.08,276.78000000000003,276.49,275.82,12.620000000000001,12.07,11.84,11.63,11.41,11.22,11,10.8,10.39,N/A,N/A +2012,1,26,13,30,101480,100260,99070,88.53,0,9.200000000000001,9.85,10,10.06,10.1,10.11,10.11,10.11,10.09,279.43,279.74,279.96,280.17,280.37,280.54,280.73,280.91,281.26,12.61,12.040000000000001,11.81,11.59,11.38,11.19,10.98,10.8,10.41,N/A,N/A +2012,1,26,14,30,101520,100300,99120,86.18,0,8.51,9.15,9.31,9.4,9.46,9.51,9.53,9.56,9.6,279.06,279.40000000000003,279.63,279.82,280.02,280.19,280.36,280.52,280.86,12.92,12.370000000000001,12.14,11.92,11.700000000000001,11.5,11.290000000000001,11.1,10.700000000000001,N/A,N/A +2012,1,26,15,30,101510,100290,99110,85.63,0,8.01,8.56,8.700000000000001,8.77,8.82,8.86,8.88,8.9,8.92,294.49,294.59000000000003,294.61,294.63,294.65000000000003,294.66,294.67,294.67,294.69,12.530000000000001,11.98,11.75,11.53,11.32,11.13,10.92,10.73,10.34,N/A,N/A +2012,1,26,16,30,101510,100290,99110,81.64,0,6.12,6.55,6.67,6.74,6.8100000000000005,6.86,6.91,6.95,7.04,286.85,286.88,286.89,286.91,286.93,286.96,286.99,287.02,287.09000000000003,13.21,12.73,12.52,12.31,12.1,11.92,11.71,11.53,11.14,N/A,N/A +2012,1,26,17,30,101520,100310,99130,76.95,0,7.0600000000000005,7.57,7.71,7.79,7.86,7.9,7.94,7.97,8.02,291.71,292.02,292.21,292.39,292.55,292.7,292.85,292.98,293.26,14.040000000000001,13.58,13.370000000000001,13.16,12.950000000000001,12.76,12.55,12.36,11.97,N/A,N/A +2012,1,26,18,30,101510,100300,99120,73.91,0,7.05,7.58,7.72,7.8,7.86,7.91,7.94,7.97,8.02,292.5,292.61,292.67,292.73,292.78000000000003,292.82,292.86,292.90000000000003,292.98,14.63,14.19,13.99,13.780000000000001,13.57,13.38,13.18,12.98,12.59,N/A,N/A +2012,1,26,19,30,101530,100320,99140,73.08,0,8.52,9.14,9.27,9.33,9.35,9.36,9.35,9.34,9.31,303.75,303.27,303.01,302.78000000000003,302.55,302.35,302.13,301.94,301.53000000000003,14.82,14.38,14.17,13.96,13.76,13.57,13.370000000000001,13.17,12.780000000000001,N/A,N/A +2012,1,26,20,30,101520,100310,99130,74.06,0,7.65,8.24,8.39,8.48,8.540000000000001,8.58,8.620000000000001,8.64,8.68,289.08,289.23,289.31,289.37,289.43,289.49,289.54,289.59000000000003,289.69,14.48,14.02,13.81,13.61,13.4,13.21,13,12.8,12.41,N/A,N/A +2012,1,26,21,30,101540,100330,99150,71.81,0,6.75,7.29,7.46,7.5600000000000005,7.640000000000001,7.71,7.7700000000000005,7.82,7.9,300.62,301.28000000000003,301.61,301.89,302.14,302.36,302.58,302.76,303.12,14.94,14.52,14.32,14.120000000000001,13.91,13.73,13.52,13.33,12.93,N/A,N/A +2012,1,26,22,30,101560,100350,99170,72.62,0,10.56,11.61,11.9,12.07,12.19,12.280000000000001,12.34,12.4,12.48,314.74,314.81,314.84000000000003,314.87,314.91,314.93,314.96,314.99,315.05,15.280000000000001,14.84,14.63,14.42,14.22,14.02,13.82,13.620000000000001,13.23,N/A,N/A +2012,1,26,23,30,101630,100420,99240,72.01,0,10.3,11.22,11.450000000000001,11.58,11.66,11.72,11.76,11.790000000000001,11.83,329.34000000000003,329.21,329.12,329.02,328.92,328.83,328.7,328.59000000000003,328.34000000000003,14.93,14.47,14.26,14.06,13.85,13.66,13.46,13.280000000000001,12.9,N/A,N/A +2012,1,27,0,30,101680,100470,99290,74,0,6.83,7.3100000000000005,7.43,7.49,7.53,7.5600000000000005,7.58,7.6000000000000005,7.65,322.21,321.82,321.57,321.32,321.04,320.78000000000003,320.45,320.13,319.32,14.94,14.52,14.32,14.13,13.93,13.75,13.55,13.370000000000001,12.99,N/A,N/A +2012,1,27,1,30,101710,100500,99320,74.69,0,5.54,5.8500000000000005,5.91,5.94,5.94,5.95,5.95,5.94,5.95,330.55,329.89,329.39,328.89,328.35,327.85,327.25,326.66,325.2,15.1,14.700000000000001,14.51,14.32,14.120000000000001,13.94,13.74,13.56,13.19,N/A,N/A +2012,1,27,2,30,101750,100530,99360,76.57000000000001,0,4.28,4.45,4.47,4.47,4.46,4.45,4.47,4.53,4.98,345.62,344.91,344.43,343.88,343.11,342.33,340.71,338.66,330.40000000000003,14.72,14.33,14.15,13.96,13.780000000000001,13.61,13.44,13.31,13.23,N/A,N/A +2012,1,27,3,30,101760,100550,99370,74.75,0,2.3000000000000003,2.4,2.42,2.45,2.54,2.64,3.21,3.7800000000000002,4.4,325.58,324.8,324.3,323.7,322.67,321.53000000000003,318.84000000000003,316.44,315.19,15.040000000000001,14.69,14.52,14.35,14.18,14.030000000000001,14.07,14.13,14.23,N/A,N/A +2012,1,27,4,30,101790,100580,99410,74.85000000000001,0,2.99,3.14,3.18,3.21,3.25,3.29,3.37,3.54,4.5,306.61,307.09000000000003,307.15000000000003,307.23,307.36,307.49,307.7,308.01,309.16,15.31,14.96,14.780000000000001,14.6,14.41,14.24,14.05,13.9,13.790000000000001,N/A,N/A +2012,1,27,5,30,101830,100620,99440,78.33,0,3.04,3.13,3.12,3.1,3.08,3.06,3.0300000000000002,3.0100000000000002,2.97,347.62,345.85,344.64,343.42,342.21,341.11,339.81,338.59000000000003,335.88,15.13,14.76,14.57,14.38,14.19,14.01,13.8,13.620000000000001,13.24,N/A,N/A +2012,1,27,6,30,101880,100660,99490,80.5,0,2.62,2.64,2.61,2.56,2.5100000000000002,2.46,2.4,2.33,2.18,38.01,37.45,36.99,36.49,35.93,35.39,34.62,33.83,31.470000000000002,14.530000000000001,14.15,13.96,13.77,13.57,13.39,13.19,13.01,12.620000000000001,N/A,N/A +2012,1,27,7,30,101920,100710,99520,81.99,0,1.79,1.77,1.73,1.68,1.6300000000000001,1.58,1.53,1.47,1.36,28.37,26.46,25.25,23.94,22.3,20.72,18.19,15.44,4.97,14.26,13.88,13.700000000000001,13.5,13.31,13.13,12.94,12.75,12.39,N/A,N/A +2012,1,27,8,30,101940,100720,99540,82.60000000000001,0,1.47,1.5,1.49,1.48,1.49,1.49,1.5,1.52,1.62,358.03000000000003,354.8,352.65000000000003,350.47,348.13,345.95,343.21,340.56,334.3,14.32,13.950000000000001,13.76,13.57,13.38,13.200000000000001,13,12.82,12.46,N/A,N/A +2012,1,27,9,30,101940,100720,99540,78.81,0,2.97,3.09,3.1,3.09,3.09,3.08,3.0700000000000003,3.06,3.0300000000000002,339.89,339.86,339.87,339.89,339.92,339.94,339.98,340.02,340.13,14.55,14.17,13.98,13.780000000000001,13.58,13.4,13.19,13,12.620000000000001,N/A,N/A +2012,1,27,10,30,101960,100740,99560,76.05,0,3.73,3.88,3.89,3.89,3.89,3.88,3.86,3.85,3.83,0.35000000000000003,0.68,0.88,1.07,1.27,1.46,1.68,1.9000000000000001,2.42,14.42,14.02,13.83,13.64,13.44,13.26,13.06,12.88,12.5,N/A,N/A +2012,1,27,11,30,101980,100760,99580,76.04,0,3.96,4.09,4.09,4.07,4.04,4.01,3.98,3.94,3.85,17.490000000000002,17.89,18.12,18.330000000000002,18.56,18.78,19.02,19.25,19.76,14.27,13.870000000000001,13.68,13.48,13.290000000000001,13.11,12.91,12.73,12.36,N/A,N/A +2012,1,27,12,30,101990,100770,99590,73.52,0,3.5700000000000003,3.69,3.69,3.68,3.65,3.63,3.6,3.5700000000000003,3.49,31.650000000000002,31.98,32.14,32.3,32.45,32.6,32.78,32.95,33.37,14.22,13.82,13.63,13.44,13.24,13.06,12.85,12.67,12.290000000000001,N/A,N/A +2012,1,27,13,30,102010,100790,99610,71.71000000000001,0,3.34,3.45,3.44,3.42,3.4,3.38,3.35,3.3200000000000003,3.25,60.99,61.83,62.35,62.88,63.42,63.9,64.48,65.04,66.38,14.200000000000001,13.81,13.620000000000001,13.42,13.22,13.040000000000001,12.84,12.65,12.27,N/A,N/A +2012,1,27,14,30,102020,100800,99620,72.29,0,3.65,3.79,3.81,3.8000000000000003,3.79,3.77,3.75,3.73,3.69,77.19,77.82000000000001,78.26,78.69,79.13,79.52,80.01,80.48,81.60000000000001,14.290000000000001,13.89,13.700000000000001,13.5,13.3,13.120000000000001,12.91,12.73,12.34,N/A,N/A +2012,1,27,15,30,102000,100780,99600,72.46000000000001,0,4.14,4.33,4.3500000000000005,4.36,4.3500000000000005,4.3500000000000005,4.33,4.32,4.28,91.09,91.60000000000001,91.94,92.27,92.60000000000001,92.91,93.28,93.64,94.48,14.46,14.06,13.870000000000001,13.67,13.47,13.280000000000001,13.08,12.9,12.51,N/A,N/A +2012,1,27,16,30,101970,100760,99570,72.19,0,4.48,4.7,4.74,4.75,4.75,4.75,4.74,4.73,4.7,102.58,103.05,103.31,103.55,103.8,104.04,104.33,104.60000000000001,105.25,14.700000000000001,14.3,14.11,13.91,13.71,13.530000000000001,13.32,13.14,12.75,N/A,N/A +2012,1,27,17,30,101940,100730,99550,72.21000000000001,0,4.67,4.93,4.97,5,5.01,5.01,5.01,5.01,5,115.32000000000001,115.67,115.91,116.15,116.38,116.60000000000001,116.85000000000001,117.08,117.64,14.950000000000001,14.56,14.36,14.16,13.97,13.780000000000001,13.58,13.39,13.01,N/A,N/A +2012,1,27,18,30,101910,100700,99520,71.7,0,5.08,5.38,5.44,5.48,5.49,5.51,5.51,5.51,5.51,124.32000000000001,124.59,124.77,124.95,125.12,125.27,125.45,125.62,126.01,15.22,14.83,14.64,14.44,14.24,14.06,13.86,13.67,13.280000000000001,N/A,N/A +2012,1,27,19,30,101890,100680,99500,71.59,0,5.55,5.93,6.01,6.0600000000000005,6.09,6.11,6.13,6.140000000000001,6.15,134.82,135.07,135.2,135.33,135.47,135.59,135.72,135.84,136.11,15.57,15.200000000000001,15.01,14.81,14.61,14.43,14.22,14.030000000000001,13.65,N/A,N/A +2012,1,27,20,30,101860,100650,99480,73.57000000000001,0,5.71,6.11,6.21,6.26,6.3,6.32,6.34,6.3500000000000005,6.37,145.05,145.3,145.45000000000002,145.59,145.73,145.87,146.01,146.14000000000001,146.44,15.81,15.44,15.26,15.06,14.86,14.67,14.47,14.280000000000001,13.89,N/A,N/A +2012,1,27,21,30,101840,100630,99450,73.98,0,5.82,6.25,6.36,6.41,6.45,6.48,6.5,6.5200000000000005,6.54,154.02,154.37,154.58,154.79,154.98,155.16,155.36,155.54,155.92000000000002,16.02,15.66,15.48,15.280000000000001,15.08,14.9,14.69,14.5,14.11,N/A,N/A +2012,1,27,22,30,101800,100590,99420,74.65,0,6.15,6.640000000000001,6.7700000000000005,6.84,6.890000000000001,6.93,6.96,6.98,7.0200000000000005,162.97,163.36,163.59,163.8,164.01,164.20000000000002,164.4,164.59,164.99,16.27,15.93,15.75,15.55,15.35,15.16,14.96,14.780000000000001,14.38,N/A,N/A +2012,1,27,23,30,101800,100600,99430,75,0,5.88,6.390000000000001,6.5200000000000005,6.6000000000000005,6.67,6.71,6.75,6.78,6.83,167.64000000000001,168.1,168.38,168.64000000000001,168.89000000000001,169.12,169.36,169.58,170.04,16.580000000000002,16.26,16.080000000000002,15.89,15.69,15.51,15.31,15.120000000000001,14.73,N/A,N/A +2012,1,28,0,30,101820,100610,99440,77.29,0,5.92,6.46,6.61,6.7,6.7700000000000005,6.82,6.86,6.890000000000001,6.95,172.36,172.72,172.94,173.15,173.35,173.53,173.70000000000002,173.87,174.23,16.830000000000002,16.53,16.35,16.16,15.97,15.780000000000001,15.58,15.39,15,N/A,N/A +2012,1,28,1,30,101840,100630,99470,79.10000000000001,0,6.01,6.59,6.76,6.86,6.93,6.99,7.03,7.07,7.140000000000001,176.35,176.74,176.97,177.18,177.38,177.55,177.73,177.9,178.23,17.080000000000002,16.79,16.62,16.43,16.240000000000002,16.06,15.860000000000001,15.67,15.280000000000001,N/A,N/A +2012,1,28,2,30,101860,100660,99490,78.92,0,5.21,5.73,5.88,5.98,6.0600000000000005,6.12,6.17,6.21,6.29,179.57,180.20000000000002,180.58,180.95000000000002,181.28,181.58,181.88,182.15,182.69,17.35,17.09,16.92,16.73,16.55,16.37,16.17,15.98,15.6,N/A,N/A +2012,1,28,3,30,101880,100680,99510,79.5,0,5,5.46,5.59,5.69,5.7700000000000005,5.84,5.9,5.96,6.09,199.9,198.85,198.25,197.63,197.05,196.51,195.97,195.47,194.47,17.41,17.16,17,16.81,16.62,16.45,16.25,16.07,15.69,N/A,N/A +2012,1,28,4,30,101890,100690,99530,79.05,0,6.3,6.98,7.17,7.24,7.28,7.32,7.3100000000000005,7.28,7.18,188.11,188.72,189.04,189.36,189.72,190.1,190.44,190.75,191.32,17.52,17.3,17.14,16.96,16.78,16.61,16.41,16.23,15.84,N/A,N/A +2012,1,28,5,30,101930,100730,99570,82.19,0,3.94,4.46,4.67,4.84,4.99,5.13,5.24,5.3500000000000005,5.5,184.62,185,185.34,185.74,186.11,186.47,186.8,187.09,187.52,17.48,17.26,17.11,16.94,16.77,16.6,16.43,16.26,15.9,N/A,N/A +2012,1,28,6,30,101980,100780,99620,83.46000000000001,0,3.0500000000000003,3.58,3.79,3.97,4.12,4.26,4.42,4.57,4.84,178,179.47,180.75,182.49,184.44,186.44,188.93,191.31,195.4,17.48,17.31,17.2,17.06,16.92,16.79,16.65,16.52,16.23,N/A,N/A +2012,1,28,7,30,102030,100830,99670,86.61,0,2.6,3.14,3.37,3.6,3.81,4.0200000000000005,4.22,4.41,4.75,176.70000000000002,178.49,179.66,180.73,181.55,182.20000000000002,182.68,183.14000000000001,184.88,17.38,17.21,17.09,16.95,16.8,16.66,16.5,16.36,16.080000000000002,N/A,N/A +2012,1,28,8,30,102060,100860,99690,86.31,0,2.84,3.44,3.73,3.99,4.19,4.34,4.34,4.3100000000000005,4.33,177.56,180.09,181.61,182.75,185.21,188.29,191.59,194.61,201.28,17.35,17.23,17.14,17.04,16.95,16.86,16.75,16.65,16.42,N/A,N/A +2012,1,28,9,30,102110,100910,99740,87.87,0,1.94,2.46,2.65,2.73,2.73,2.67,2.65,2.64,2.79,170.67000000000002,178.16,184.04,190.87,195.41,198.55,201.46,203.95000000000002,207.59,17.27,17.18,17.12,17.04,16.95,16.86,16.75,16.65,16.38,N/A,N/A +2012,1,28,10,30,102170,100970,99800,91.84,0,0.87,1.33,1.51,1.61,1.6,1.52,1.5,1.48,1.57,182.91,189.34,193.73000000000002,198.01,203.4,208.74,216.67000000000002,224.11,239.09,17.16,17.05,16.96,16.84,16.73,16.61,16.52,16.44,16.26,N/A,N/A +2012,1,28,11,30,102220,101010,99850,90.03,0,0.6,0.76,0.86,0.99,1.1,1.21,1.35,1.5,1.82,292.01,281.35,276.18,274.32,277.09000000000003,282.35,287.94,293.29,301.23,17.07,16.94,16.86,16.76,16.64,16.53,16.42,16.32,16.09,N/A,N/A +2012,1,28,12,30,102310,101100,99940,91.48,0,2.42,2.84,3.0100000000000002,3.1,3.17,3.23,3.36,3.5,3.85,331.46,328.91,326.95,324.85,322.78000000000003,320.81,319.81,319.2,321.27,16.94,16.85,16.79,16.68,16.56,16.44,16.31,16.2,15.96,N/A,N/A +2012,1,28,13,30,102400,101190,100010,97.51,0,8.16,8.66,8.72,8.69,8.64,8.57,8.48,8.38,8.03,346.65000000000003,346.71,346.67,346.6,346.49,346.37,346.13,345.90000000000003,345.77,15.34,14.950000000000001,14.77,14.6,14.44,14.290000000000001,14.16,14.030000000000001,13.8,N/A,N/A +2012,1,28,14,30,102500,101270,100080,93.74,0,10.68,11.53,11.71,11.78,11.8,11.81,11.8,11.8,11.82,13.93,14.05,14.08,14.120000000000001,14.17,14.21,14.27,14.33,14.530000000000001,14.02,13.51,13.3,13.09,12.9,12.72,12.530000000000001,12.36,12.01,N/A,N/A +2012,1,28,15,30,102540,101310,100120,78.75,0,11.200000000000001,12.09,12.280000000000001,12.36,12.39,12.41,12.41,12.42,12.5,20.35,20.41,20.46,20.52,20.57,20.62,20.69,20.76,20.990000000000002,13.64,13.1,12.88,12.68,12.48,12.3,12.11,11.93,11.6,N/A,N/A +2012,1,28,16,30,102560,101330,100140,70.02,0,10.64,11.5,11.69,11.77,11.81,11.83,11.84,11.85,11.88,21.09,21.23,21.330000000000002,21.43,21.56,21.67,21.81,21.96,22.38,13.700000000000001,13.18,12.96,12.76,12.56,12.38,12.18,12,11.65,N/A,N/A +2012,1,28,17,30,102600,101370,100180,65.59,0,9.94,10.78,10.98,11.08,11.15,11.200000000000001,11.22,11.25,11.28,21.080000000000002,21.25,21.37,21.48,21.59,21.69,21.81,21.93,22.2,14.14,13.65,13.43,13.23,13.02,12.83,12.63,12.44,12.05,N/A,N/A +2012,1,28,18,30,102630,101410,100220,61.99,0,9.09,9.88,10.08,10.19,10.27,10.33,10.370000000000001,10.4,10.46,21.55,21.7,21.78,21.86,21.93,22,22.07,22.14,22.28,14.77,14.33,14.120000000000001,13.91,13.71,13.52,13.32,13.13,12.74,N/A,N/A +2012,1,28,19,30,102660,101440,100250,59.18,0,8.77,9.55,9.76,9.88,9.97,10.03,10.08,10.120000000000001,10.18,22.28,22.400000000000002,22.46,22.51,22.55,22.59,22.63,22.66,22.73,15.46,15.06,14.870000000000001,14.67,14.46,14.27,14.07,13.88,13.49,N/A,N/A +2012,1,28,20,30,102660,101440,100260,56.31,0,8.69,9.48,9.68,9.81,9.9,9.96,10.01,10.05,10.11,21.84,21.89,21.93,21.96,21.98,22,22.02,22.04,22.07,15.91,15.540000000000001,15.36,15.16,14.96,14.77,14.56,14.38,13.98,N/A,N/A +2012,1,28,21,30,102690,101470,100290,54.01,0,8.53,9.32,9.53,9.65,9.74,9.81,9.85,9.89,9.950000000000001,21.54,21.650000000000002,21.72,21.78,21.84,21.89,21.94,21.98,22.07,16.2,15.860000000000001,15.68,15.48,15.280000000000001,15.1,14.89,14.700000000000001,14.31,N/A,N/A +2012,1,28,22,30,102710,101490,100310,51.31,0,8.89,9.700000000000001,9.91,10.03,10.11,10.17,10.200000000000001,10.23,10.26,19,19.27,19.45,19.61,19.77,19.91,20.05,20.18,20.45,16.19,15.84,15.65,15.46,15.26,15.07,14.870000000000001,14.68,14.290000000000001,N/A,N/A +2012,1,28,23,30,102770,101550,100360,49.93,0,9.33,10.17,10.39,10.5,10.58,10.63,10.66,10.69,10.71,21.990000000000002,21.88,21.81,21.740000000000002,21.68,21.62,21.56,21.5,21.39,15.870000000000001,15.5,15.31,15.11,14.91,14.72,14.52,14.33,13.93,N/A,N/A +2012,1,29,0,30,102850,101620,100430,52.21,0,10.3,11.200000000000001,11.42,11.53,11.59,11.63,11.64,11.65,11.64,19.06,19.37,19.55,19.71,19.87,20.01,20.16,20.29,20.56,15.13,14.700000000000001,14.5,14.3,14.09,13.9,13.700000000000001,13.51,13.11,N/A,N/A +2012,1,29,1,30,102890,101660,100470,55.29,0,10.47,11.38,11.6,11.72,11.790000000000001,11.84,11.86,11.88,11.88,21.46,21.76,21.95,22.13,22.31,22.47,22.64,22.8,23.14,14.33,13.85,13.64,13.43,13.22,13.030000000000001,12.82,12.63,12.24,N/A,N/A +2012,1,29,2,30,102930,101690,100500,57.57,0,10.4,11.28,11.49,11.61,11.67,11.72,11.74,11.76,11.77,28.650000000000002,28.92,29.080000000000002,29.23,29.38,29.51,29.66,29.8,30.11,13.82,13.3,13.08,12.870000000000001,12.66,12.47,12.27,12.08,11.69,N/A,N/A +2012,1,29,3,30,102950,101720,100520,58.74,0,10.58,11.450000000000001,11.66,11.76,11.82,11.86,11.870000000000001,11.88,11.870000000000001,35.18,35.4,35.54,35.660000000000004,35.79,35.9,36.03,36.160000000000004,36.42,13.450000000000001,12.91,12.69,12.48,12.27,12.08,11.870000000000001,11.68,11.3,N/A,N/A +2012,1,29,4,30,102950,101710,100510,60.47,0,9.98,10.77,10.96,11.06,11.11,11.15,11.16,11.17,11.18,40.08,40.37,40.54,40.71,40.87,41.02,41.19,41.35,41.71,13.290000000000001,12.75,12.530000000000001,12.32,12.11,11.92,11.72,11.53,11.15,N/A,N/A +2012,1,29,5,30,102950,101710,100510,63.1,0,9.31,10.02,10.18,10.26,10.31,10.34,10.35,10.35,10.34,43.61,43.980000000000004,44.22,44.45,44.660000000000004,44.86,45.07,45.27,45.7,13.3,12.77,12.55,12.34,12.13,11.94,11.74,11.55,11.17,N/A,N/A +2012,1,29,6,30,102980,101740,100540,66.63,0,8.870000000000001,9.53,9.69,9.77,9.82,9.85,9.870000000000001,9.88,9.88,48.64,49.02,49.24,49.44,49.63,49.79,49.980000000000004,50.15,50.51,13.22,12.69,12.47,12.26,12.05,11.86,11.65,11.46,11.07,N/A,N/A +2012,1,29,7,30,103010,101780,100580,61.27,0,9.59,10.33,10.51,10.6,10.66,10.69,10.71,10.72,10.71,52.64,52.86,52.99,53.11,53.230000000000004,53.33,53.45,53.550000000000004,53.79,13.36,12.82,12.6,12.39,12.18,11.99,11.78,11.59,11.200000000000001,N/A,N/A +2012,1,29,8,30,103010,101770,100570,62.88,0,8.44,9.05,9.19,9.26,9.3,9.33,9.34,9.34,9.34,56.44,56.800000000000004,57.02,57.22,57.410000000000004,57.59,57.78,57.96,58.34,13.38,12.86,12.65,12.44,12.23,12.040000000000001,11.84,11.65,11.26,N/A,N/A +2012,1,29,9,30,103020,101780,100580,63.72,0,9.040000000000001,9.700000000000001,9.85,9.92,9.96,9.97,9.97,9.97,9.94,51.65,52.04,52.29,52.52,52.74,52.94,53.15,53.36,53.78,13.24,12.71,12.48,12.27,12.06,11.870000000000001,11.66,11.47,11.08,N/A,N/A +2012,1,29,10,30,103030,101800,100600,63.74,0,9.200000000000001,9.89,10.05,10.13,10.17,10.200000000000001,10.21,10.21,10.200000000000001,53.17,53.410000000000004,53.59,53.76,53.92,54.07,54.22,54.370000000000005,54.69,13.26,12.72,12.5,12.290000000000001,12.08,11.89,11.68,11.49,11.1,N/A,N/A +2012,1,29,11,30,103050,101820,100610,62.75,0,8.83,9.49,9.64,9.72,9.76,9.790000000000001,9.8,9.8,9.8,59.120000000000005,59.370000000000005,59.550000000000004,59.72,59.89,60.04,60.2,60.35,60.660000000000004,13.33,12.8,12.58,12.370000000000001,12.16,11.97,11.76,11.57,11.18,N/A,N/A +2012,1,29,12,30,103080,101840,100640,62.5,0,8.38,8.99,9.14,9.22,9.27,9.3,9.31,9.32,9.33,61.57,61.79,61.92,62.04,62.160000000000004,62.26,62.370000000000005,62.46,62.660000000000004,13.41,12.89,12.67,12.46,12.25,12.06,11.85,11.66,11.27,N/A,N/A +2012,1,29,13,30,103090,101850,100650,66.75,0,8.36,8.96,9.1,9.18,9.22,9.24,9.25,9.26,9.26,61.68,61.92,62.06,62.18,62.29,62.39,62.5,62.6,62.81,13.27,12.75,12.530000000000001,12.32,12.1,11.92,11.71,11.52,11.13,N/A,N/A +2012,1,29,14,30,103130,101890,100690,62.03,0,8.45,9.06,9.200000000000001,9.27,9.31,9.34,9.35,9.36,9.35,63.39,63.51,63.58,63.63,63.68,63.730000000000004,63.77,63.82,63.9,13.32,12.790000000000001,12.58,12.36,12.15,11.96,11.76,11.56,11.17,N/A,N/A +2012,1,29,15,30,103150,101910,100710,58.13,0,8.35,8.94,9.08,9.15,9.18,9.200000000000001,9.21,9.21,9.200000000000001,65.87,66.06,66.19,66.3,66.42,66.52,66.63,66.73,66.95,13.41,12.9,12.68,12.47,12.26,12.07,11.86,11.67,11.28,N/A,N/A +2012,1,29,16,30,103140,101910,100700,55.870000000000005,0,7.71,8.24,8.36,8.42,8.45,8.47,8.47,8.47,8.46,66.44,66.71000000000001,66.86,67,67.14,67.27,67.4,67.53,67.8,13.450000000000001,12.950000000000001,12.74,12.530000000000001,12.32,12.14,11.93,11.74,11.35,N/A,N/A +2012,1,29,17,30,103130,101890,100690,59.7,0,7.11,7.57,7.67,7.72,7.74,7.75,7.75,7.75,7.73,65.12,65.45,65.67,65.87,66.06,66.23,66.41,66.58,66.95,13.52,13.040000000000001,12.83,12.620000000000001,12.41,12.23,12.02,11.83,11.44,N/A,N/A +2012,1,29,18,30,103130,101890,100690,57.44,0,6.46,6.8500000000000005,6.94,6.97,6.99,7,7,6.99,6.98,66.63,66.94,67.13,67.32000000000001,67.5,67.66,67.84,68,68.36,13.67,13.200000000000001,12.99,12.790000000000001,12.58,12.39,12.19,12,11.61,N/A,N/A +2012,1,29,19,30,103110,101880,100680,58.6,0,5.96,6.3,6.38,6.41,6.42,6.43,6.43,6.43,6.41,68.1,68.46000000000001,68.69,68.91,69.12,69.3,69.51,69.69,70.10000000000001,13.780000000000001,13.33,13.120000000000001,12.92,12.72,12.530000000000001,12.32,12.13,11.74,N/A,N/A +2012,1,29,20,30,103060,101830,100630,58.47,0,5.38,5.67,5.73,5.75,5.76,5.76,5.76,5.76,5.74,68.72,69.13,69.42,69.68,69.92,70.15,70.41,70.64,71.16,13.94,13.5,13.3,13.1,12.89,12.71,12.5,12.31,11.92,N/A,N/A +2012,1,29,21,30,103010,101780,100580,58.39,0,5,5.26,5.3100000000000005,5.33,5.34,5.34,5.34,5.33,5.32,70.58,70.93,71.13,71.31,71.5,71.68,71.87,72.05,72.46000000000001,14.1,13.67,13.48,13.27,13.07,12.89,12.68,12.49,12.11,N/A,N/A +2012,1,29,22,30,102960,101730,100530,59.6,0,4.74,4.98,5.03,5.04,5.05,5.0600000000000005,5.05,5.05,5.04,74.96000000000001,75.21000000000001,75.35000000000001,75.48,75.62,75.75,75.9,76.04,76.37,14.26,13.84,13.65,13.450000000000001,13.25,13.07,12.870000000000001,12.68,12.3,N/A,N/A +2012,1,29,23,30,102920,101700,100500,56.620000000000005,0,4.83,5.1000000000000005,5.15,5.17,5.19,5.19,5.2,5.2,5.21,78.97,79.07000000000001,79.11,79.16,79.22,79.26,79.32000000000001,79.37,79.48,14.56,14.16,13.97,13.77,13.58,13.4,13.200000000000001,13.01,12.64,N/A,N/A +2012,1,30,0,30,102920,101690,100500,54.63,0,4.97,5.26,5.32,5.3500000000000005,5.37,5.38,5.39,5.4,5.42,88.33,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.36,14.86,14.46,14.27,14.08,13.88,13.700000000000001,13.5,13.32,12.94,N/A,N/A +2012,1,30,1,30,102900,101670,100480,52.47,0,5.16,5.48,5.55,5.59,5.62,5.63,5.64,5.66,5.68,93.25,93.29,93.31,93.32000000000001,93.33,93.34,93.36,93.38,93.4,15.18,14.8,14.61,14.41,14.21,14.030000000000001,13.83,13.65,13.26,N/A,N/A +2012,1,30,2,30,102880,101660,100470,53.050000000000004,0,5.21,5.53,5.61,5.64,5.66,5.68,5.69,5.7,5.71,97.95,98.02,98.06,98.09,98.12,98.15,98.18,98.22,98.28,15.39,15.02,14.83,14.64,14.44,14.25,14.05,13.870000000000001,13.48,N/A,N/A +2012,1,30,3,30,102870,101640,100450,55.83,0,4.98,5.28,5.3500000000000005,5.39,5.41,5.43,5.44,5.44,5.45,102.54,102.66,102.75,102.82000000000001,102.91,102.98,103.06,103.14,103.31,15.49,15.120000000000001,14.94,14.74,14.540000000000001,14.36,14.15,13.97,13.58,N/A,N/A +2012,1,30,4,30,102840,101610,100430,58.92,0,4.95,5.2700000000000005,5.3500000000000005,5.39,5.42,5.44,5.46,5.47,5.49,105.55,105.87,106.07000000000001,106.26,106.43,106.59,106.77,106.93,107.28,15.67,15.31,15.13,14.93,14.73,14.55,14.34,14.16,13.77,N/A,N/A +2012,1,30,5,30,102820,101600,100410,59.58,0,5.12,5.47,5.55,5.6000000000000005,5.63,5.66,5.67,5.69,5.71,113.43,113.71000000000001,113.87,114.02,114.16,114.29,114.43,114.57000000000001,114.85000000000001,15.870000000000001,15.52,15.33,15.14,14.94,14.75,14.55,14.36,13.97,N/A,N/A +2012,1,30,6,30,102820,101600,100410,62.75,0,4.66,4.98,5.0600000000000005,5.11,5.14,5.16,5.18,5.2,5.22,116.06,116.32000000000001,116.51,116.68,116.85000000000001,117,117.17,117.33,117.67,15.96,15.620000000000001,15.44,15.25,15.05,14.870000000000001,14.67,14.48,14.09,N/A,N/A +2012,1,30,7,30,102820,101600,100410,61.95,0,4.89,5.25,5.34,5.39,5.43,5.46,5.48,5.5,5.53,114.61,115.05,115.31,115.55,115.78,115.99000000000001,116.21000000000001,116.42,116.85000000000001,16.25,15.93,15.75,15.56,15.36,15.18,14.98,14.790000000000001,14.4,N/A,N/A +2012,1,30,8,30,102800,101580,100390,62.2,0,4.8500000000000005,5.21,5.3,5.3500000000000005,5.38,5.41,5.43,5.44,5.46,121,121.39,121.59,121.78,121.95,122.09,122.25,122.4,122.7,16.4,16.080000000000002,15.91,15.72,15.52,15.33,15.13,14.950000000000001,14.56,N/A,N/A +2012,1,30,9,30,102770,101550,100370,63.82,0,4.42,4.72,4.79,4.83,4.8500000000000005,4.87,4.88,4.89,4.9,122.52,122.78,122.95,123.11,123.26,123.4,123.55,123.68,123.98,16.44,16.12,15.950000000000001,15.75,15.56,15.370000000000001,15.17,14.98,14.59,N/A,N/A +2012,1,30,10,30,102750,101530,100350,67.16,0,4.05,4.33,4.4,4.44,4.46,4.49,4.5,4.51,4.54,124.98,125.34,125.58,125.81,126.03,126.23,126.45,126.65,127.09,16.490000000000002,16.18,16,15.81,15.610000000000001,15.43,15.23,15.040000000000001,14.65,N/A,N/A +2012,1,30,11,30,102740,101520,100340,71.37,0,4.01,4.3100000000000005,4.39,4.43,4.47,4.5,4.5200000000000005,4.54,4.58,123.46000000000001,124.12,124.53,124.93,125.3,125.62,125.97,126.3,126.96000000000001,16.54,16.23,16.06,15.870000000000001,15.67,15.49,15.290000000000001,15.1,14.71,N/A,N/A +2012,1,30,12,30,102720,101510,100330,72.24,0,4.34,4.68,4.7700000000000005,4.82,4.86,4.89,4.92,4.94,4.98,122.95,123.56,123.95,124.32000000000001,124.67,125,125.33,125.64,126.29,16.69,16.39,16.22,16.03,15.83,15.65,15.450000000000001,15.27,14.88,N/A,N/A +2012,1,30,13,30,102700,101490,100310,71.83,0,4.33,4.7,4.79,4.8500000000000005,4.89,4.92,4.95,4.97,5,122.4,122.84,123.14,123.43,123.69,123.93,124.18,124.41,124.9,16.95,16.68,16.51,16.32,16.13,15.950000000000001,15.75,15.56,15.18,N/A,N/A +2012,1,30,14,30,102720,101500,100320,72.96000000000001,0,4.96,5.39,5.5,5.5600000000000005,5.6000000000000005,5.62,5.65,5.66,5.69,123.34,123.73,124,124.25,124.49000000000001,124.71000000000001,124.95,125.17,125.64,17.03,16.76,16.59,16.41,16.21,16.03,15.83,15.65,15.26,N/A,N/A +2012,1,30,15,30,102720,101500,100330,75.64,0,5.22,5.69,5.82,5.89,5.95,5.98,6.01,6.04,6.07,120.53,120.96000000000001,121.25,121.53,121.8,122.06,122.33,122.58,123.12,17.11,16.84,16.67,16.48,16.3,16.12,15.92,15.73,15.35,N/A,N/A +2012,1,30,16,30,102700,101490,100310,77.23,0,5.4,5.91,6.04,6.12,6.18,6.22,6.26,6.29,6.34,121.78,122.14,122.4,122.67,122.93,123.18,123.46000000000001,123.72,124.3,17.23,16.97,16.8,16.62,16.43,16.25,16.05,15.870000000000001,15.49,N/A,N/A +2012,1,30,17,30,102670,101460,100290,76.86,0,5.68,6.24,6.4,6.5,6.57,6.63,6.67,6.71,6.78,123.45,123.99000000000001,124.33,124.66,124.97,125.25,125.54,125.81,126.39,17.45,17.2,17.05,16.87,16.68,16.51,16.32,16.14,15.76,N/A,N/A +2012,1,30,18,30,102640,101430,100260,81.52,0,5.44,5.98,6.13,6.23,6.32,6.390000000000001,6.46,6.5200000000000005,6.67,121.46000000000001,122.04,122.42,122.82000000000001,123.23,123.63000000000001,124.11,124.55,125.62,17.46,17.21,17.06,16.88,16.69,16.52,16.330000000000002,16.15,15.790000000000001,N/A,N/A +2012,1,30,19,30,102610,101400,100230,83.66,0,5.4,5.93,6.1000000000000005,6.25,6.390000000000001,6.53,6.7,6.86,7.0200000000000005,121.53,121.88,122.17,122.54,122.97,123.44,123.95,124.42,125.22,17.51,17.26,17.11,16.94,16.77,16.6,16.42,16.26,15.88,N/A,N/A +2012,1,30,20,30,102540,101340,100170,84.32000000000001,0,5.29,5.95,6.21,6.47,6.67,6.83,7.0200000000000005,7.19,7.51,115.14,115.98,116.34,116.39,116.77,117.32000000000001,118.24000000000001,119.2,121.84,17.53,17.31,17.16,16.98,16.81,16.64,16.47,16.31,16,N/A,N/A +2012,1,30,21,30,102500,101290,100120,84.75,0,5.17,5.86,6.12,6.36,6.57,6.7700000000000005,6.95,7.12,7.42,114.98,115.92,116.60000000000001,117.35000000000001,118.08,118.79,119.54,120.25,122,17.62,17.42,17.29,17.14,16.98,16.830000000000002,16.66,16.51,16.19,N/A,N/A +2012,1,30,22,30,102460,101250,100080,86.23,0,5.23,6.04,6.37,6.67,6.94,7.19,7.44,7.66,8.08,115.34,116.19,116.87,117.74000000000001,118.71000000000001,119.71000000000001,120.88,122.01,124.34,17.59,17.43,17.32,17.19,17.06,16.92,16.79,16.66,16.37,N/A,N/A +2012,1,30,23,30,102420,101210,100040,87,0,5.5600000000000005,6.51,6.91,7.3,7.66,8,8.31,8.59,9.03,120.22,121.05,121.7,122.53,123.41,124.32000000000001,125.35000000000001,126.35000000000001,128.77,17.62,17.48,17.39,17.27,17.16,17.06,16.94,16.830000000000002,16.57,N/A,N/A +2012,1,31,0,30,102390,101180,100020,87.96000000000001,0,5.87,6.88,7.32,7.75,8.15,8.52,8.9,9.24,9.82,121.01,121.85000000000001,122.52,123.39,124.35000000000001,125.35000000000001,126.49000000000001,127.59,129.98,17.7,17.57,17.490000000000002,17.38,17.28,17.18,17.07,16.98,16.77,N/A,N/A +2012,1,31,1,30,102370,101170,100000,88.77,0,6.140000000000001,7.21,7.66,8.09,8.48,8.85,9.22,9.56,10.22,125.82000000000001,126.57000000000001,127.17,127.92,128.76,129.64000000000001,130.71,131.78,134.41,17.77,17.66,17.57,17.46,17.36,17.26,17.150000000000002,17.06,16.87,N/A,N/A +2012,1,31,2,30,102340,101130,99970,88.29,0,6.640000000000001,7.8500000000000005,8.370000000000001,8.86,9.3,9.72,10.13,10.51,11.16,128.49,129.19,129.81,130.64000000000001,131.64000000000001,132.73,134.11,135.47,138.04,17.91,17.84,17.78,17.71,17.64,17.580000000000002,17.51,17.45,17.27,N/A,N/A +2012,1,31,3,30,102310,101110,99940,89.96000000000001,0,6.2,7.44,7.98,8.51,9,9.450000000000001,9.870000000000001,10.26,10.950000000000001,131.79,132.54,133.21,134.18,135.34,136.58,138.02,139.39000000000001,142,17.92,17.88,17.84,17.79,17.740000000000002,17.69,17.63,17.56,17.37,N/A,N/A +2012,1,31,4,30,102270,101070,99910,90.51,0,6.22,7.55,8.16,8.790000000000001,9.39,9.98,10.56,11.09,11.96,136.71,137.9,138.85,140.04,141.27,142.51,143.76,144.93,146.91,18,17.97,17.94,17.91,17.87,17.84,17.81,17.78,17.63,N/A,N/A +2012,1,31,5,30,102250,101050,99890,90.94,0,6.2700000000000005,7.6000000000000005,8.21,8.84,9.43,10,10.57,11.1,12.02,141.86,142.84,143.61,144.58,145.58,146.61,147.68,148.69,150.44,18.09,18.080000000000002,18.05,18.02,17.98,17.95,17.91,17.87,17.73,N/A,N/A +2012,1,31,6,30,102240,101040,99880,92.18,0,5.98,7.37,8.01,8.65,9.26,9.84,10.44,11.01,12.07,147.68,148.37,148.93,149.61,150.39000000000001,151.21,152.26,153.29,155.28,18.16,18.16,18.14,18.1,18.07,18.03,18.01,17.990000000000002,17.92,N/A,N/A +2012,1,31,7,30,102230,101030,99880,93.26,0,5.8,7.26,7.95,8.68,9.34,9.97,10.53,11.03,11.75,149.31,150.38,151.18,152.14000000000001,153.02,153.84,154.59,155.27,156.72,18.2,18.25,18.25,18.25,18.240000000000002,18.23,18.19,18.14,17.98,N/A,N/A +2012,1,31,8,30,102200,101000,99850,93.77,0,5.46,7.1000000000000005,7.95,8.88,9.73,10.51,11.16,11.73,12.36,150.53,151.97,153.05,154.3,155.47,156.58,157.37,158.04,159.3,18.21,18.34,18.400000000000002,18.46,18.5,18.53,18.5,18.45,18.25,N/A,N/A +2012,1,31,9,30,102210,101010,99850,93.42,0,5.74,7.32,8.09,8.88,9.6,10.28,10.94,11.56,12.200000000000001,155.71,157.48,158.77,160.09,161.03,161.70000000000002,161.92000000000002,162,162.79,18.29,18.43,18.48,18.52,18.53,18.53,18.5,18.47,18.27,N/A,N/A +2012,1,31,10,30,102200,101000,99850,94.16,0,4.82,6.34,7.140000000000001,8.03,8.8,9.48,9.96,10.36,10.56,148.17000000000002,150.67000000000002,152.59,154.86,156.66,158.13,160.14000000000001,162.14000000000001,164.83,18.2,18.35,18.43,18.56,18.66,18.76,18.77,18.77,18.6,N/A,N/A +2012,1,31,11,30,102200,101000,99850,94.99,0,4.65,6.15,6.96,7.91,8.73,9.450000000000001,10.11,10.700000000000001,11.02,148,149.94,151.79,154.59,157.34,160.04,162.69,165.12,166.76,18.07,18.2,18.29,18.43,18.55,18.64,18.66,18.66,18.51,N/A,N/A +2012,1,31,12,30,102200,101010,99850,94.73,0,4.62,6.16,6.92,7.7,8.52,9.370000000000001,9.71,9.9,10.23,146.99,149.24,151.4,154.63,159.03,164.28,166.44,167.72,169.64000000000001,18.12,18.32,18.43,18.59,18.75,18.92,18.91,18.86,18.67,N/A,N/A +2012,1,31,13,30,102200,101010,99850,94.99,0,4.8100000000000005,6.5,7.45,8.61,9.35,9.78,9.97,10.08,10.33,146.29,150.29,154.02,159.89000000000001,163.95000000000002,166.66,167.71,168.29,169.53,18.06,18.38,18.6,18.89,19.02,19.06,19,18.91,18.67,N/A,N/A +2012,1,31,14,30,102230,101030,99870,95.09,0,4.86,6.41,7.26,8.28,9.08,9.72,9.950000000000001,10.06,10.3,141.62,145.37,149.14000000000001,155.1,160.22,164.70000000000002,166.46,167.45000000000002,168.94,18.09,18.3,18.47,18.740000000000002,18.92,19.05,19.04,19,18.8,N/A,N/A +2012,1,31,15,30,102230,101030,99880,96.04,0,4.21,5.51,6.36,7.66,8.55,9.120000000000001,9.53,9.870000000000001,10.46,142.78,145.31,150.17000000000002,160.89000000000001,167.91,172.05,173.98,175.23,177.09,18.01,18.05,18.27,18.79,19.080000000000002,19.21,19.29,19.34,19.330000000000002,N/A,N/A +2012,1,31,16,30,102210,101010,99860,96.16,0,4.5,5.89,6.73,7.88,8.84,9.67,10.03,10.24,10.6,144.4,147.21,151.03,158.71,164.5,168.88,170.19,170.64000000000001,171.35,18.14,18.240000000000002,18.43,18.86,19.150000000000002,19.35,19.37,19.36,19.17,N/A,N/A +2012,1,31,17,30,102190,100990,99840,96.26,0,4.46,5.8,6.62,7.78,8.78,9.64,10,10.21,10.450000000000001,145.03,148.38,151.74,157.20000000000002,162.32,167.16,169.16,170.38,172.38,18.31,18.39,18.53,18.82,19.080000000000002,19.32,19.35,19.34,19.18,N/A,N/A +2012,1,31,18,30,102160,100970,99820,96.14,0,4.88,6.25,7.05,8.13,9.03,9.81,10.03,10.1,10.38,145.35,147.78,150.82,156.70000000000002,162.3,167.63,169.71,170.88,172.85,18.52,18.61,18.75,19.06,19.31,19.51,19.5,19.45,19.3,N/A,N/A +2012,1,31,19,30,102140,100950,99800,95.96000000000001,0,4.93,6.24,6.92,7.76,8.61,9.5,9.86,10.08,10.35,145.22,147.14000000000001,149.26,152.89000000000001,158.4,165.22,168.1,169.89000000000001,172.21,18.66,18.69,18.76,18.91,19.150000000000002,19.44,19.51,19.52,19.42,N/A,N/A +2012,1,31,20,30,102100,100910,99760,95.37,0,4.83,6.25,7.0200000000000005,8,8.8,9.48,9.61,9.6,9.83,148.17000000000002,150.34,153.01,157.94,162.93,167.91,170.08,171.37,173.85,18.68,18.8,18.93,19.150000000000002,19.35,19.52,19.52,19.490000000000002,19.54,N/A,N/A +2012,1,31,21,30,102070,100880,99730,94.79,0,5.34,6.92,7.71,8.58,9.31,9.950000000000001,10.02,9.96,9.94,146.18,146.91,148.87,153.57,159.26,165.63,167.96,169.17000000000002,172.39000000000001,18.6,18.75,18.89,19.11,19.3,19.48,19.43,19.330000000000002,19.22,N/A,N/A +2012,1,31,22,30,102050,100850,99700,93.59,0,5.12,6.78,7.5600000000000005,8.36,8.97,9.450000000000001,9.66,9.790000000000001,10.11,144.08,146.34,149.44,155.44,161.06,166.35,168,168.75,170.67000000000002,18.57,18.84,19.04,19.37,19.580000000000002,19.73,19.73,19.69,19.72,N/A,N/A +2012,1,31,23,30,102040,100850,99700,97.36,0,5.33,6.92,7.8100000000000005,8.790000000000001,9.21,9.26,9.24,9.21,9.06,144.1,146.17000000000002,149.81,157.21,161.38,163.26,164.94,166.41,168.81,17.69,18.25,18.75,19.44,19.67,19.64,19.55,19.46,19.17,N/A,N/A +2012,2,1,0,30,102050,100860,99710,96.56,0.4,5.0200000000000005,6.79,7.83,9.07,9.51,9.44,9.290000000000001,9.14,9.05,139.42000000000002,142.95000000000002,147.75,156.65,161.11,162.53,163.96,165.23,167.21,17.85,17.45,17.900000000000002,19.39,19.94,19.94,19.85,19.740000000000002,19.52,N/A,N/A +2012,2,1,1,30,102060,100860,99710,97.81,0.7000000000000001,4.65,6.33,7.44,8.790000000000001,9.33,9.36,9.31,9.24,8.97,135.3,138.91,144.4,155.29,160.3,161.57,162.69,163.67000000000002,165.56,17.59,17.05,17.61,19.5,20.18,20.21,20.14,20.07,19.85,N/A,N/A +2012,2,1,2,30,102070,100870,99720,99.2,0.6000000000000001,5.5600000000000005,6.53,7.34,8.81,9.450000000000001,9.56,9.6,9.620000000000001,9.8,133.75,134.72,139.38,151.20000000000002,157.31,159.56,161.31,162.79,165.07,17.1,16.62,17.05,18.54,19.330000000000002,19.76,19.92,20.01,20.01,N/A,N/A +2012,2,1,3,30,102070,100870,99720,99.12,0.7000000000000001,5.51,6.16,6.95,8.69,9.540000000000001,9.78,9.86,9.91,9.94,135.69,137.56,142.1,152.78,158.6,160.95000000000002,162.98,164.76,167.78,16.92,16.53,16.95,18.3,19.17,19.77,19.96,20.06,20.04,N/A,N/A +2012,2,1,4,30,102080,100880,99730,98.8,0.4,5.43,6.1000000000000005,6.91,8.870000000000001,9.84,10.1,10.200000000000001,10.26,10.28,136.08,137.12,140.69,150.32,155.6,157.54,159.3,160.87,163.83,16.98,16.55,16.89,18.12,18.84,19.26,19.39,19.46,19.42,N/A,N/A +2012,2,1,5,30,102050,100850,99700,96.77,0.2,5.37,6.91,7.86,9.13,9.92,10.35,10.34,10.23,10.22,145.82,147.41,149.97,155.34,160.36,164.98,167.20000000000002,168.70000000000002,171.73,17.79,17.64,17.69,17.94,18.66,19.64,19.830000000000002,19.85,19.8,N/A,N/A +2012,2,1,6,30,102050,100850,99700,97.06,0.1,6.0600000000000005,7.43,8.25,9.39,10.05,10.36,10.38,10.34,10.35,154.54,155.4,157.06,160.78,164.20000000000002,167.32,169.31,170.87,173.68,18.01,17.87,17.94,18.26,18.92,19.79,19.96,19.98,19.89,N/A,N/A +2012,2,1,7,30,102050,100860,99710,97.26,0.1,6.34,7.65,8.45,9.620000000000001,10.41,10.96,10.97,10.870000000000001,10.81,159.88,160.51,161.8,164.6,167.77,171.1,172.87,174.14000000000001,176.91,17.97,17.86,17.990000000000002,18.37,19.06,19.92,20.05,20.04,19.95,N/A,N/A +2012,2,1,8,30,102050,100860,99700,96.25,0.1,5.55,6.890000000000001,7.65,8.61,9.6,10.63,11.08,11.33,11.15,166.07,166.11,166.48,167.37,169.25,171.87,175.92000000000002,179.9,183.28,18.18,18.12,18.080000000000002,18.02,18.06,18.14,18.67,19.25,19.61,N/A,N/A +2012,2,1,9,30,102050,100850,99700,94.77,0,5.11,6.7,7.58,8.67,9.77,10.88,11.36,11.67,11.57,161.69,164.04,165.88,168.18,170.68,173.37,176.54,179.56,183.35,18.5,18.59,18.63,18.7,18.82,18.96,18.94,18.900000000000002,18.87,N/A,N/A +2012,2,1,10,30,102030,100840,99690,93.46000000000001,0,4.91,6.79,7.71,8.58,9.370000000000001,10.120000000000001,10.36,10.46,10.02,154.62,157.33,160.05,164.32,168.49,172.56,174.63,176.05,179.32,18.82,19,19.04,19.03,19.05,19.080000000000002,19.1,19.12,19.080000000000002,N/A,N/A +2012,2,1,11,30,102030,100840,99690,92.78,0,4.7,6.8100000000000005,7.87,8.790000000000001,9.4,9.8,9.81,9.72,9.5,151.27,155.97,159.88,164.47,168.78,172.78,175.91,178.48,180.4,19,19.35,19.47,19.53,19.54,19.53,19.42,19.31,19.31,N/A,N/A +2012,2,1,12,30,102030,100840,99690,93.09,0,4.58,6.390000000000001,7.28,8.19,8.76,9.09,9.02,8.85,8.790000000000001,142.19,147.27,151.8,158.07,164.26,170.18,174.42000000000002,177.84,184.05,18.94,19.13,19.16,19.14,19.19,19.28,19.35,19.400000000000002,19.84,N/A,N/A +2012,2,1,13,30,102040,100850,99700,91.78,0.2,5.41,7.8,8.93,9.78,10.21,10.35,10.05,9.67,9.120000000000001,154.76,160.82,165.09,169.16,172.36,174.92000000000002,177.47,179.66,181.61,19.22,19.48,19.490000000000002,19.37,19.150000000000002,18.88,19.17,19.55,19.77,N/A,N/A +2012,2,1,14,30,102080,100890,99740,93.18,0,4.16,6.09,7.07,8.120000000000001,8.75,9.07,9,8.85,8.83,143.01,155.81,163.89000000000001,169.11,172.70000000000002,175.04,178.48,181.78,184.51,18.97,19.51,19.76,19.97,20.02,19.97,19.91,19.84,19.68,N/A,N/A +2012,2,1,15,30,102080,100890,99740,93.47,0,3.97,6.140000000000001,7.13,7.65,7.84,7.8,7.71,7.61,7.36,137.8,150.82,159.9,167.61,173.57,178.13,180.69,182.5,186.42000000000002,18.96,19.54,19.88,20.240000000000002,20.41,20.45,20.41,20.34,20.150000000000002,N/A,N/A +2012,2,1,16,30,102030,100850,99700,92.47,3.8000000000000003,3.77,5.19,5.61,5.8,5.98,6.13,6.28,6.43,6.65,153.64000000000001,156.74,160.46,167.66,172.03,174.51,176.25,177.67000000000002,179.33,19.34,19.94,20.17,20.31,20.37,20.38,20.32,20.25,20.01,N/A,N/A +2012,2,1,17,30,102020,100840,99690,93.14,2.1,3.17,4.8100000000000005,5.5,6.15,6.55,6.73,6.86,6.95,6.95,164.94,169.61,174.04,182.58,188.06,191.29,194.20000000000002,196.83,201.08,19.3,19.62,19.72,19.85,19.92,19.96,19.990000000000002,20.03,20.01,N/A,N/A +2012,2,1,18,30,102060,100870,99720,94.11,13.3,2.23,3.29,3.68,4.11,4.45,4.71,4.94,5.14,5.5200000000000005,175.68,190.79,200.13,208.09,213.08,215.92000000000002,218.06,219.88,222.71,19.31,19.59,19.62,19.64,19.64,19.62,19.6,19.59,19.6,N/A,N/A +2012,2,1,19,30,102040,100850,99700,95.11,1.2000000000000002,2.09,2.38,2.24,2.04,1.97,1.95,2.07,2.23,2.62,116.66,129.44,139.72,153.62,170.82,190,205.1,219.23000000000002,234.31,19.1,19.21,19.23,19.35,19.490000000000002,19.650000000000002,19.7,19.71,19.66,N/A,N/A +2012,2,1,20,30,102030,100840,99690,95.61,22.3,1.37,1.3,1.1500000000000001,1.07,1.11,1.24,1.41,1.6,1.94,95.64,90.65,81.06,57.1,40.53,332.67,323.12,315.73,306.24,19.02,19.38,19.46,19.37,19.28,19.21,19.14,19.09,18.94,N/A,N/A +2012,2,1,21,30,102050,100860,99700,96.2,264,1.29,1.23,1.05,0.97,1.04,1.31,1.59,1.8900000000000001,2.47,117.19,92.76,74.91,34.27,333.01,311.7,298.72,290.46,279.88,18.900000000000002,19.150000000000002,19.22,19.2,19.19,19.18,19.18,19.16,19.02,N/A,N/A +2012,2,1,22,30,101980,100790,99640,95.38,7.2,3.0300000000000002,3.4,3.36,3.46,3.6,3.74,3.89,4.0200000000000005,4.25,148.68,157.57,163.13,169.34,174.46,178.93,182.08,184.68,186.53,18.93,19.13,19.19,19.26,19.35,19.45,19.5,19.55,19.5,N/A,N/A +2012,2,1,23,30,101960,100770,99620,96.55,0,2.25,2.72,2.65,2.5500000000000003,2.49,2.45,2.52,2.62,3.17,130.18,141.96,149.19,156.03,162.82,169.54,179.35,189.07,203.04,18.62,18.92,19,19.02,19.01,18.96,19.07,19.2,19.44,N/A,N/A +2012,2,2,0,30,102000,100810,99660,94.73,0,3.56,4.34,4.43,4.45,4.46,4.45,4.49,4.53,4.59,153.54,158.42000000000002,161.70000000000002,165.22,168.51,171.61,174.54,177.19,182.77,18.85,19.02,19.2,19.59,19.75,19.77,19.68,19.59,19.35,N/A,N/A +2012,2,2,1,30,102000,100810,99660,92.88,8.4,5.18,6.55,6.8,6.51,6.37,6.3100000000000005,6.28,6.26,6.16,160.31,167.88,173.70000000000002,180.07,183.06,184.1,184.43,184.59,185.69,18.95,19.28,19.38,19.36,19.3,19.21,19.11,19.02,18.96,N/A,N/A +2012,2,2,2,30,102010,100810,99670,92.33,0,5.14,6.44,6.63,6.42,6.34,6.33,6.34,6.3500000000000005,6.54,175.98,179.54,182.24,185.36,187.1,188.06,189.89000000000001,191.78,193.13,19.1,19.32,19.3,19.14,18.94,18.73,19.07,19.52,19.93,N/A,N/A +2012,2,2,3,30,101990,100800,99650,92.98,0,4.62,5.98,6.29,6.25,6.18,6.1000000000000005,6.03,5.97,5.7,177.12,180.57,183.09,185.62,187.17000000000002,188.15,189.06,189.92000000000002,193.18,18.97,19.150000000000002,19.14,19,18.86,18.72,18.6,18.51,18.830000000000002,N/A,N/A +2012,2,2,4,30,101980,100790,99640,93.77,0.4,4.75,6.28,6.79,7.03,6.97,6.7700000000000005,6.71,6.68,6.7,177.73,178.04,179.43,182.88,188.48,194.71,197.08,198.47,198.81,18.75,18.88,18.92,18.97,19.03,19.080000000000002,19.04,18.98,18.81,N/A,N/A +2012,2,2,5,30,101990,100800,99640,94.56,0,4.18,5.41,5.79,5.99,6.08,6.11,6.0600000000000005,6.01,5.86,171.85,173.91,176.78,182.07,184.88,186.21,188.01,189.75,194.70000000000002,18.61,18.68,18.68,18.64,18.57,18.490000000000002,18.44,18.400000000000002,18.35,N/A,N/A +2012,2,2,6,30,102000,100800,99650,96.10000000000001,0,4.47,5.53,5.75,5.68,5.58,5.48,5.44,5.42,5.41,182.36,184.22,186.13,189,191.92000000000002,194.68,195.83,196.64000000000001,200.62,18.5,18.38,18.3,18.23,18.2,18.19,18.12,18.05,17.93,N/A,N/A +2012,2,2,7,30,102020,100820,99660,98.22,0,4.1,4.59,4.58,4.4,4.34,4.3500000000000005,4.37,4.38,4.43,164.74,171.75,180.59,194.97,199.83,199.96,200.18,200.4,200.89000000000001,18.06,18.02,18.05,18.150000000000002,18.13,18.04,17.95,17.86,17.66,N/A,N/A +2012,2,2,8,30,102000,100810,99650,97.75,0.4,2.48,3.1,3.14,2.96,2.9,2.89,2.9,2.91,2.92,144.11,155.54,170.72,195.39000000000001,202.62,201.41,200.99,200.74,200.45000000000002,18.2,18.09,18.080000000000002,18.14,18.1,18.01,17.91,17.82,17.6,N/A,N/A +2012,2,2,9,30,102000,100800,99650,98.93,0,2.34,2.33,2.22,2.15,2.13,2.15,2.16,2.17,2.19,153.37,167.78,176.74,186.16,194.56,202.28,204.29,205.27,206.41,17.93,17.98,18.02,18.03,18.01,17.97,17.88,17.79,17.6,N/A,N/A +2012,2,2,10,30,101990,100790,99640,99.2,0,2.1,2.2800000000000002,2.19,1.96,1.81,1.71,1.68,1.67,1.6600000000000001,173.41,189.31,198.22,204.71,210.13,214.78,216.59,217.65,219.5,17.88,17.84,17.830000000000002,17.81,17.75,17.67,17.59,17.51,17.34,N/A,N/A +2012,2,2,11,30,102010,100810,99650,99.29,0,2.82,2.7,2.5300000000000002,2.34,2.15,1.99,1.9100000000000001,1.84,1.41,128.37,128.37,128.72,129.48,130.61,131.81,132.27,132.87,138.79,17.69,17.59,17.54,17.48,17.41,17.34,17.25,17.18,17.12,N/A,N/A +2012,2,2,12,30,102010,100820,99650,99.24000000000001,0,3.13,3.3200000000000003,3.36,3.38,3.34,3.2800000000000002,3.2600000000000002,3.24,2.9,115.37,114.55,113.44,111.60000000000001,110.03,108.68,108.45,108.37,108.25,17.62,17.45,17.37,17.29,17.21,17.16,17.06,16.97,16.9,N/A,N/A +2012,2,2,13,30,102020,100820,99660,99.21000000000001,0,4.61,4.88,4.92,4.93,4.8,4.62,4.42,4.25,3.96,116.9,116.68,116.52,116.37,116.04,115.65,115.60000000000001,115.67,117.31,17.35,17.150000000000002,17.06,16.96,16.91,16.89,16.84,16.8,16.69,N/A,N/A +2012,2,2,14,30,102040,100840,99680,99.26,0,5.15,5.54,5.6000000000000005,5.62,5.62,5.62,5.47,5.29,4.61,123.92,124.05,124.11,124.14,124.15,124.16,124.28,124.36,123.76,17.42,17.21,17.11,17.02,16.92,16.82,16.76,16.71,16.81,N/A,N/A +2012,2,2,15,30,102040,100840,99670,97.26,0,4.99,5.29,5.42,5.64,5.76,5.83,5.65,5.48,5.26,120.38,120.29,120.3,120.34,120.56,120.86,121.5,122.06,122.85000000000001,17.43,17.13,16.98,16.830000000000002,16.72,16.64,16.54,16.44,16.21,N/A,N/A +2012,2,2,16,30,101990,100790,99630,96.49000000000001,0,4.93,5.22,5.34,5.54,5.66,5.73,5.65,5.5600000000000005,5.3,126.56,126.01,125.01,123.21000000000001,120.13,116.69,115.65,115.25,117.55,17.55,17.27,17.13,17,17.01,17.080000000000002,17.03,16.97,16.8,N/A,N/A +2012,2,2,17,30,101960,100760,99600,95.07000000000001,0,3.64,4.25,4.5600000000000005,4.88,5.11,5.29,5.38,5.44,5.39,109.14,108.24000000000001,108.04,108.24000000000001,109.48,111.16,113.42,115.63,121.19,17.89,17.71,17.67,17.66,17.63,17.6,17.56,17.54,17.66,N/A,N/A +2012,2,2,18,30,101940,100740,99580,95.85000000000001,0,4.42,4.78,5.11,5.8100000000000005,6.23,6.5,6.5600000000000005,6.59,6.58,106.33,106.55,106.64,106.74000000000001,107.32000000000001,108.09,109.99000000000001,111.89,116.21000000000001,18.03,17.77,17.71,17.740000000000002,17.78,17.82,17.78,17.73,17.7,N/A,N/A +2012,2,2,19,30,101910,100710,99550,96.41,0,4.16,4.54,4.9,5.6000000000000005,6.05,6.37,6.66,6.92,7.24,105.21000000000001,106.10000000000001,107.84,111.36,114.11,116.33,118.72,120.97,125.31,18.19,17.92,17.81,17.740000000000002,17.75,17.79,17.85,17.91,17.900000000000002,N/A,N/A +2012,2,2,20,30,101880,100680,99530,95.97,0,4.22,4.83,5.12,5.43,5.67,5.88,6.07,6.23,6.59,101.62,103.05,104.58,106.94,110.2,113.76,117.10000000000001,120.08,124.55,18.3,18.05,17.96,17.92,18,18.12,18.18,18.2,18.1,N/A,N/A +2012,2,2,21,30,101850,100660,99500,98.11,0,4.99,5.7700000000000005,6.0600000000000005,6.32,6.51,6.65,6.73,6.8100000000000005,7.140000000000001,98.91,99.82000000000001,100.81,102.33,104.81,107.7,111.77,115.55,121.08,18.34,18.14,18.03,17.92,17.8,17.7,17.55,17.41,17.31,N/A,N/A +2012,2,2,22,30,101850,100650,99490,97.83,0,5.48,6.3,6.55,6.7,6.8100000000000005,6.91,7.16,7.42,8.11,108.88,110.61,112.43,115.14,118.46000000000001,121.89,125.05,127.77,130.16,18.16,17.94,17.78,17.59,17.400000000000002,17.22,17.1,17.01,17.06,N/A,N/A +2012,2,2,23,30,101850,100650,99500,97.14,0,4.5200000000000005,5.67,6.23,6.8100000000000005,7.33,7.8100000000000005,8.19,8.53,8.950000000000001,110.10000000000001,111.11,112.11,113.56,115.69,118.13,122.39,126.63000000000001,133.78,18.27,18.16,18.11,18.07,18.03,17.990000000000002,17.92,17.84,17.51,N/A,N/A +2012,2,3,0,30,101850,100650,99500,95.09,1.5,5.82,6.73,7.04,7.3,7.53,7.75,7.930000000000001,8.08,8.3,120.32000000000001,121.43,121.91,122.01,122.14,122.28,123.67,125.2,129.65,18.39,18.28,18.2,18.11,18.05,18.02,18.07,18.14,18.52,N/A,N/A +2012,2,3,1,30,101810,100610,99460,97.16,0,6.75,7.9,8.38,8.870000000000001,9.3,9.69,9.85,9.96,9.93,94.61,95.86,97.16,99.2,102.33,105.89,110.44,114.55,119.13,18.240000000000002,18.1,18.03,17.97,17.96,17.96,18.02,18.080000000000002,18.42,N/A,N/A +2012,2,3,2,30,101790,100590,99440,97.87,0,7.74,8.88,9.36,9.870000000000001,10.25,10.55,10.74,10.870000000000001,10.66,95.96000000000001,97.86,100.10000000000001,103.85000000000001,108.05,112.28,116.34,119.81,121.97,18,17.85,17.85,17.98,18.42,18.98,19.92,20.75,20.57,N/A,N/A +2012,2,3,3,30,101790,100590,99440,96.11,0,7.8,8.98,9.450000000000001,9.93,10.47,11.01,11.3,11.51,11.620000000000001,108.32000000000001,108.15,108.13,108.25,109.52,111.33,113.94,116.32000000000001,118.29,18.23,18.080000000000002,18.02,17.990000000000002,18.18,18.48,19.080000000000002,19.63,19.75,N/A,N/A +2012,2,3,4,30,101790,100590,99440,96.71000000000001,0,6.88,8.07,8.56,9.05,9.52,9.98,10.44,10.84,10.93,124.03,123.52,123.09,122.56,122.01,121.46000000000001,120.89,120.43,121.34,18.3,18.14,18.05,17.95,17.88,17.82,17.77,17.73,17.77,N/A,N/A +2012,2,3,5,30,101740,100540,99390,98.21000000000001,0,7.45,8.48,8.86,9.21,9.57,9.92,10.370000000000001,10.83,11.75,116.10000000000001,116.54,117.02,117.74000000000001,118.88,120.2,122.63,125.18,130.94,18.04,17.94,17.89,17.82,17.78,17.740000000000002,17.72,17.7,17.54,N/A,N/A +2012,2,3,6,30,101710,100520,99360,97.53,0,8.55,9.81,10.28,10.73,11.16,11.58,11.950000000000001,12.280000000000001,12.56,115.10000000000001,115.89,116.71000000000001,117.94,119.82000000000001,121.97,125.35000000000001,128.68,135.38,18.43,18.28,18.22,18.18,18.16,18.16,18.16,18.17,18.1,N/A,N/A +2012,2,3,7,30,101710,100520,99370,96.10000000000001,0.4,6.34,7.6000000000000005,8.16,8.76,9.43,10.13,10.74,11.26,11.55,113.32000000000001,113.31,113.78,114.86,117.99000000000001,122.21000000000001,128.64000000000001,134.73,138.58,18.66,18.580000000000002,18.53,18.5,18.61,18.79,19.11,19.400000000000002,19.54,N/A,N/A +2012,2,3,8,30,101700,100510,99360,96.71000000000001,0.4,6.5,7.8,8.41,9.07,9.73,10.39,11.15,11.85,11.85,100.23,101.62,102.81,104.47,107.02,110.05,114.33,118.67,128.14000000000001,18.59,18.46,18.36,18.23,18.21,18.25,18.43,18.6,18.96,N/A,N/A +2012,2,3,9,30,101710,100520,99370,96.16,0,6.36,7.67,8.27,8.91,9.61,10.36,11.22,11.99,11.950000000000001,107.94,110.36,112.33,114.98,117.94,121.10000000000001,124.96000000000001,128.66,137.19,18.7,18.650000000000002,18.6,18.55,18.48,18.400000000000002,18.35,18.3,18.400000000000002,N/A,N/A +2012,2,3,10,30,101710,100520,99370,95.28,0,6.47,7.97,8.69,9.42,10.14,10.83,11.49,12.09,12.64,115.59,117.11,118.19,119.51,120.91,122.36,124.41,126.58,133.82,18.88,18.84,18.78,18.68,18.57,18.45,18.400000000000002,18.38,18.61,N/A,N/A +2012,2,3,11,30,101710,100520,99370,95.79,0,6.140000000000001,7.5200000000000005,8.14,8.78,9.39,9.99,10.53,11.05,12.15,123.58,124.19,124.53,124.86,125.31,125.82000000000001,127.3,128.94,136.54,18.78,18.73,18.68,18.61,18.54,18.45,18.39,18.35,18.43,N/A,N/A +2012,2,3,12,30,101740,100550,99400,96.12,0.7000000000000001,5.22,6.44,7.04,7.79,8.540000000000001,9.31,9.53,9.63,9.89,123.84,124.83,126.02,128.08,133.71,141.46,149.03,155.64000000000001,161.48,18.73,18.64,18.580000000000002,18.56,18.71,18.95,19.07,19.150000000000002,19.1,N/A,N/A +2012,2,3,13,30,101750,100560,99410,95.11,0,4.23,5.79,6.45,6.99,7.75,8.67,9.13,9.46,9.82,119.63,121.57000000000001,123.25,125.42,134.15,146.72,150.93,153.14000000000001,155.1,18.98,19.12,19.17,19.23,19.26,19.26,19.23,19.18,19.02,N/A,N/A +2012,2,3,14,30,101780,100590,99440,94.4,0,4.41,5.91,6.62,7.41,8.26,9.17,9.85,10.43,11.23,125.29,127.52,129.38,131.77,133.66,135.28,139.62,144.27,155.04,19.14,19.19,19.13,18.97,18.7,18.37,18.25,18.19,19.06,N/A,N/A +2012,2,3,15,30,101790,100600,99450,96.19,0,5.16,6.640000000000001,7.390000000000001,8.2,8.77,9.19,9.35,9.450000000000001,9.5,117.41,118.82000000000001,120.54,123.52,130.04,138.26,142.19,145.1,149.07,18.740000000000002,18.7,18.6,18.400000000000002,18.56,18.89,19.150000000000002,19.36,19.32,N/A,N/A +2012,2,3,16,30,101770,100580,99440,95.29,0,6.140000000000001,7.65,8.38,9.16,9.85,10.46,10.63,10.69,10.74,114.59,116.89,119.8,124.78,132.43,141.37,143.95000000000002,145.06,146.73,18.94,18.95,18.97,19.02,19.400000000000002,19.92,19.990000000000002,19.98,19.87,N/A,N/A +2012,2,3,17,30,101750,100560,99420,94.5,0,5.92,7.6000000000000005,8.41,9.34,10,10.47,10.290000000000001,10.02,9.82,117.16,118.83,120.52,123.47,129,136.08,141.3,145.44,149.29,19.16,19.18,19.2,19.28,19.45,19.67,19.73,19.76,19.76,N/A,N/A +2012,2,3,18,30,101730,100550,99400,95.71000000000001,0,5.83,7.23,7.890000000000001,8.63,9.32,9.96,10.44,10.85,11.19,116.46000000000001,117.69,118.78,120.41,123.75,128.04,136.21,144.25,149.31,18.94,18.92,18.92,18.94,19,19.080000000000002,19.07,19.080000000000002,19.81,N/A,N/A +2012,2,3,19,30,101740,100550,99410,95.7,0,6.2700000000000005,7.65,8.290000000000001,8.98,9.67,10.36,10.64,10.8,10.97,112.67,113.9,115.01,116.63,118.64,120.9,128.75,136.86,143.8,19.02,18.96,18.92,18.900000000000002,18.900000000000002,18.94,19.14,19.35,19.38,N/A,N/A +2012,2,3,20,30,101700,100510,99370,95.05,0,6.63,8.16,8.88,9.66,10.34,10.96,11.290000000000001,11.53,11.42,114.54,115.89,117.21000000000001,119.17,121.93,125.14,129.99,134.7,140.4,19.12,19.14,19.16,19.22,19.32,19.43,19.55,19.66,19.64,N/A,N/A +2012,2,3,21,30,101690,100500,99360,93.92,0,6.99,8.58,9.34,10.200000000000001,10.86,11.370000000000001,11.290000000000001,11.09,10.85,118.89,120.37,121.88,124.33,128.19,132.86,137.01,140.53,142.57,19.26,19.34,19.42,19.57,19.830000000000002,20.16,20.31,20.41,20.240000000000002,N/A,N/A +2012,2,3,22,30,101670,100480,99340,94.88,0,6.63,8.120000000000001,8.81,9.58,10.44,11.370000000000001,11.77,12.040000000000001,12.01,114.3,115.4,116.33,117.62,119.14,120.81,127.18,133.6,139.89000000000001,18.97,18.96,18.94,18.94,18.97,19.01,19.27,19.52,19.68,N/A,N/A +2012,2,3,23,30,101660,100470,99330,94.36,0,6.88,8.55,9.38,10.33,11.32,12.32,12.35,12.21,11.9,115.41,116.83,117.93,119.33,121.44,124.01,131.8,139.4,143.86,19.05,19.080000000000002,19.1,19.14,19.25,19.400000000000002,19.82,20.240000000000002,20.38,N/A,N/A +2012,2,4,0,30,101650,100470,99320,93.10000000000001,0,7.71,9.5,10.32,11.22,12.09,12.91,13.33,13.63,12.97,120.81,122.63,124.09,126.13000000000001,128.65,131.43,136.70000000000002,142,149.15,19.35,19.39,19.39,19.41,19.45,19.51,19.79,20.09,20.53,N/A,N/A +2012,2,4,1,30,101660,100480,99330,92.57000000000001,0,7.87,9.8,10.66,11.55,12.31,12.99,13.46,13.84,13.68,125.38000000000001,126.95,128.28,130.09,132.44,135.1,139.42000000000002,143.74,152.22,19.45,19.55,19.57,19.61,19.63,19.650000000000002,19.59,19.51,19.64,N/A,N/A +2012,2,4,2,30,101690,100500,99360,92.60000000000001,0,7.43,9.27,10.08,10.86,11.49,12.02,12.15,12.17,11.23,136.44,137.24,138.1,139.6,142.32,145.79,150.08,154.12,156.52,19.45,19.5,19.47,19.41,19.36,19.31,19.37,19.44,19.44,N/A,N/A +2012,2,4,3,30,101690,100500,99360,92.24,0,8.28,10.27,11.09,11.8,12.280000000000001,12.64,12.790000000000001,12.88,12.73,148.55,149.09,149.22,149.02,149.12,149.38,150.85,152.43,156.43,19.52,19.61,19.62,19.59,19.55,19.5,19.43,19.36,19.22,N/A,N/A +2012,2,4,4,30,101700,100520,99370,92.38,0,6.49,8.14,8.78,9.31,9.790000000000001,10.25,10.6,10.9,11.4,142.61,142.52,142.33,141.87,141.94,142.32,143.94,145.91,156.20000000000002,19.52,19.62,19.61,19.54,19.47,19.39,19.330000000000002,19.29,19.17,N/A,N/A +2012,2,4,5,30,101690,100510,99360,92.60000000000001,0,6.18,8.23,9.13,9.91,10.58,11.18,11.55,11.84,11.55,124.53,127.08,129.44,132.78,136.83,141.22,146.02,150.57,161.17000000000002,19.490000000000002,19.62,19.6,19.51,19.41,19.31,19.21,19.13,18.97,N/A,N/A +2012,2,4,6,30,101700,100510,99360,94.36,0,5.79,7.640000000000001,8.5,9.28,9.88,10.370000000000001,10.58,10.71,10.77,137.70000000000002,141.38,144.25,147.83,151.59,155.38,159.05,162.33,167.06,19.26,19.26,19.2,19.080000000000002,18.92,18.75,18.7,18.73,19.81,N/A,N/A +2012,2,4,7,30,101700,100510,99360,95.14,0.4,4.75,6.25,7.0200000000000005,7.9,8.870000000000001,9.93,10.32,10.53,10.55,142.16,143.05,144.04,145.72,148.5,152,159.39000000000001,166.79,172.86,19.12,19.11,19.07,19.01,18.72,18.330000000000002,18.76,19.330000000000002,20.71,N/A,N/A +2012,2,4,8,30,101710,100520,99380,95.47,0.4,4.8100000000000005,6.36,7.22,8.3,9.38,10.47,10.85,10.99,10.450000000000001,144.67000000000002,146.46,148.26,151.20000000000002,154.42000000000002,157.87,162.89000000000001,167.66,172.29,19.04,19.080000000000002,19.06,19,18.77,18.46,18.66,18.990000000000002,20.42,N/A,N/A +2012,2,4,9,30,101730,100540,99390,95.26,0.4,5.01,6.7,7.54,8.42,9.22,9.97,10.02,9.950000000000001,10.07,154.62,158.49,161.6,165.65,169.94,174.37,176.27,177.56,179.71,19.080000000000002,18.94,18.72,18.36,17.94,17.490000000000002,18.88,20.35,21.240000000000002,N/A,N/A +2012,2,4,10,30,101730,100540,99390,95.94,0.4,4.04,5.92,6.99,8.13,8.92,9.46,9.5,9.42,9.33,162.65,165.27,167.32,169.84,172.62,175.44,178.38,180.99,183.29,18.96,18.75,18.57,18.32,18.21,18.150000000000002,19.3,20.580000000000002,20.78,N/A,N/A +2012,2,4,11,30,101750,100560,99420,96.57000000000001,0,3.52,5.33,6.4,7.55,8.26,8.65,8.66,8.61,8.6,166.62,169.42000000000002,172.51,177.6,180.96,183.06,183.92000000000002,184.43,184.36,18.84,18.73,18.61,18.46,18.43,18.46,19.830000000000002,21.27,20.91,N/A,N/A +2012,2,4,12,30,101770,100580,99430,97.16,0.7000000000000001,3.6,5.26,6.140000000000001,6.890000000000001,7.49,7.97,8.290000000000001,8.56,8.83,175.91,182.21,186.19,189.32,191.99,194.32,195.24,195.84,196.87,18.7,18.43,18.03,17.31,17.82,18.95,19.86,20.61,20.8,N/A,N/A +2012,2,4,13,30,101820,100630,99470,97.64,0,0.51,1.29,1.8800000000000001,2.36,2.7600000000000002,3.09,3.5300000000000002,4.0200000000000005,5.58,191.85,179.20000000000002,173.23,179.83,185.20000000000002,189.6,193.17000000000002,196.56,203.51,18.75,18.68,18.580000000000002,18.47,18.35,18.23,18.14,18.080000000000002,18.67,N/A,N/A +2012,2,4,14,30,101900,100710,99550,98.32000000000001,0,1.12,1.48,1.52,1.54,1.6,1.67,1.82,1.98,2.46,290.03000000000003,281.81,277.2,273.75,270.73,267.94,262.21,255.98000000000002,243.31,18.61,18.580000000000002,18.54,18.47,18.39,18.31,18.240000000000002,18.18,18.07,N/A,N/A +2012,2,4,15,30,101940,100740,99590,98.87,0,0.8,0.86,0.7000000000000001,0.49,0.27,0.13,0.26,0.58,1.1,86.62,84.28,85.25,88.57000000000001,127.4,159.36,184.70000000000002,233.4,237.5,18.5,18.45,18.41,18.38,18.330000000000002,18.28,18.240000000000002,18.2,18.06,N/A,N/A +2012,2,4,16,30,101950,100750,99600,98.73,0,0.8,1.1300000000000001,1.28,1.56,1.81,2.0300000000000002,2.11,2.17,2.23,17.44,342.75,324.53000000000003,312.3,303.64,297.47,294.64,292.61,287.88,18.59,18.650000000000002,18.650000000000002,18.63,18.59,18.53,18.44,18.35,18.17,N/A,N/A +2012,2,4,17,30,101940,100750,99590,99.01,0,1.07,1.44,1.46,1.44,1.3800000000000001,1.3,1.27,1.24,1.21,33.3,21.28,13.34,5.5600000000000005,356.34000000000003,347.21,342.89,339.89,334.97,18.6,18.57,18.55,18.51,18.46,18.400000000000002,18.32,18.23,18.06,N/A,N/A +2012,2,4,18,30,101960,100760,99610,99.31,0,2.19,2.73,2.83,2.69,2.62,2.58,2.3000000000000003,2.04,1.6300000000000001,21.69,15.56,11.93,9.3,7.54,6.23,3.46,0.9,352.42,18.5,18.43,18.39,18.34,18.26,18.18,18.12,18.06,17.96,N/A,N/A +2012,2,4,19,30,101960,100760,99610,99.32000000000001,0,3.1,3.5100000000000002,3.67,3.7800000000000002,3.74,3.63,3.49,3.37,3.0500000000000003,14.32,14.6,14.31,13.44,12.530000000000001,11.66,11.02,10.450000000000001,8.120000000000001,18.42,18.26,18.26,18.330000000000002,18.28,18.18,18.080000000000002,18,17.85,N/A,N/A +2012,2,4,20,30,101930,100740,99580,99.33,0,2.4,3.0500000000000003,3.35,3.49,3.54,3.56,3.48,3.39,3.22,26.43,26.05,25.12,23.35,21.46,19.59,17.63,15.85,11.65,18.14,18.39,18.46,18.38,18.3,18.23,18.14,18.06,17.87,N/A,N/A +2012,2,4,21,30,101900,100710,99560,99.35000000000001,0,2.34,3.06,3.37,3.45,3.49,3.52,3.54,3.56,3.6,53.480000000000004,50.74,48.04,44.43,40.37,36.25,32.05,28.2,20.76,17.82,18.48,18.72,18.67,18.63,18.61,18.56,18.5,18.35,N/A,N/A +2012,2,4,22,30,101890,100690,99540,99.24000000000001,0,2.2600000000000002,2.7600000000000002,2.91,2.84,2.81,2.8000000000000003,2.8000000000000003,2.82,2.85,92.03,80.57000000000001,73.03,66.85,60.29,53.79,47,40.78,28.76,17.21,18.26,18.69,18.7,18.71,18.73,18.72,18.71,18.61,N/A,N/A +2012,2,4,23,30,101920,100720,99560,99.21000000000001,0,0.21,0.56,0.93,1.4000000000000001,1.83,2.19,2.52,2.82,3.33,44.12,42.54,38.15,20.26,8.43,1.24,356.81,353.06,348.23,17.02,16.84,17.05,17.66,17.94,18.06,18.03,17.97,17.71,N/A,N/A +2012,2,5,0,30,101970,100770,99600,98.93,0,4.26,5.25,5.75,6.21,6.5600000000000005,6.8500000000000005,7.04,7.21,7.3500000000000005,322.79,327.29,329.65000000000003,331.7,333.32,334.66,335.88,336.98,339.08,17.42,17.38,17.37,17.32,17.240000000000002,17.13,16.990000000000002,16.85,16.53,N/A,N/A +2012,2,5,1,30,102020,100810,99650,82.58,0,8.81,9.52,9.66,9.71,9.72,9.71,9.69,9.66,9.61,338.57,338.92,339.17,339.43,339.7,339.97,340.32,340.68,341.84000000000003,17.19,16.84,16.66,16.46,16.27,16.09,15.89,15.71,15.34,N/A,N/A +2012,2,5,2,30,102080,100880,99700,80.68,0,9.26,10.03,10.19,10.25,10.28,10.28,10.26,10.24,10.17,346.48,346.73,346.87,347.02,347.17,347.32,347.51,347.69,348.18,16.740000000000002,16.35,16.16,15.96,15.76,15.58,15.38,15.19,14.81,N/A,N/A +2012,2,5,3,30,102120,100910,99730,78.88,0,9.34,10.1,10.27,10.34,10.38,10.39,10.39,10.370000000000001,10.33,354.47,354.85,355.06,355.28000000000003,355.5,355.71,355.95,356.17,356.72,16.41,16,15.8,15.6,15.4,15.21,15.01,14.82,14.44,N/A,N/A +2012,2,5,4,30,102130,100920,99740,76.47,0,9.15,9.9,10.06,10.13,10.17,10.19,10.200000000000001,10.200000000000001,10.19,4.0600000000000005,4.15,4.21,4.26,4.33,4.4,4.49,4.59,4.87,16.11,15.68,15.47,15.27,15.07,14.89,14.69,14.5,14.11,N/A,N/A +2012,2,5,5,30,102130,100910,99740,74.07000000000001,0,8.43,9.1,9.25,9.33,9.38,9.41,9.43,9.450000000000001,9.48,7.51,7.73,7.86,7.98,8.1,8.22,8.370000000000001,8.5,8.84,16.06,15.63,15.43,15.23,15.030000000000001,14.85,14.65,14.46,14.07,N/A,N/A +2012,2,5,6,30,102170,100960,99790,73.51,0,8.370000000000001,9.05,9.21,9.290000000000001,9.33,9.36,9.370000000000001,9.38,9.38,358.57,358.81,358.99,359.18,359.35,359.52,359.69,359.86,0.24,16.15,15.73,15.530000000000001,15.33,15.13,14.94,14.73,14.540000000000001,14.15,N/A,N/A +2012,2,5,7,30,102210,101000,99820,74.22,0,8.36,9,9.14,9.21,9.24,9.27,9.27,9.26,9.24,356.79,356.89,356.98,357.09000000000003,357.2,357.3,357.42,357.53000000000003,357.78000000000003,15.81,15.370000000000001,15.17,14.96,14.75,14.56,14.36,14.17,13.780000000000001,N/A,N/A +2012,2,5,8,30,102220,101000,99820,83.66,0,10.06,10.86,11.040000000000001,11.13,11.16,11.18,11.18,11.16,11.11,2.87,3.16,3.3200000000000003,3.46,3.61,3.74,3.89,4.03,4.34,14.43,13.89,13.66,13.450000000000001,13.24,13.05,12.85,12.65,12.27,N/A,N/A +2012,2,5,9,30,102210,100990,99810,82.05,0.4,10.13,10.950000000000001,11.14,11.24,11.290000000000001,11.33,11.35,11.36,11.36,9.120000000000001,9.200000000000001,9.26,9.32,9.38,9.44,9.5,9.56,9.700000000000001,14.41,13.870000000000001,13.64,13.43,13.22,13.030000000000001,12.82,12.63,12.24,N/A,N/A +2012,2,5,10,30,102240,101020,99830,78.25,0,9.74,10.52,10.69,10.78,10.83,10.86,10.870000000000001,10.88,10.870000000000001,7.69,7.8500000000000005,7.96,8.06,8.17,8.27,8.38,8.49,8.72,14.33,13.790000000000001,13.57,13.35,13.14,12.950000000000001,12.74,12.55,12.16,N/A,N/A +2012,2,5,11,30,102300,101070,99880,73.63,0,10.02,10.790000000000001,10.96,11.040000000000001,11.07,11.09,11.09,11.09,11.06,0.48,0.8300000000000001,1.04,1.24,1.44,1.6300000000000001,1.83,2.0300000000000002,2.43,13.92,13.35,13.13,12.91,12.700000000000001,12.51,12.3,12.1,11.71,N/A,N/A +2012,2,5,12,30,102300,101070,99880,74.76,0,10.96,11.86,12.05,12.15,12.200000000000001,12.23,12.24,12.24,12.21,2.8000000000000003,3.0700000000000003,3.25,3.41,3.5700000000000003,3.71,3.86,4,4.28,13.31,12.700000000000001,12.46,12.24,12.02,11.82,11.61,11.42,11.03,N/A,N/A +2012,2,5,13,30,102330,101100,99900,72.05,0,11.51,12.46,12.67,12.76,12.81,12.83,12.83,12.82,12.77,8.68,8.89,9.01,9.120000000000001,9.23,9.33,9.44,9.55,9.790000000000001,12.73,12.08,11.83,11.61,11.39,11.200000000000001,10.99,10.8,10.41,N/A,N/A +2012,2,5,14,30,102390,101160,99960,73.54,0,10.08,10.83,11,11.08,11.13,11.16,11.17,11.17,11.16,7.05,6.94,6.88,6.82,6.75,6.7,6.63,6.57,6.45,12.5,11.870000000000001,11.620000000000001,11.4,11.18,10.99,10.78,10.59,10.19,N/A,N/A +2012,2,5,15,30,102410,101180,99980,71.28,0,11.15,12.05,12.26,12.370000000000001,12.43,12.47,12.48,12.49,12.49,8.38,8.48,8.56,8.63,8.700000000000001,8.76,8.83,8.9,9.05,12.11,11.43,11.18,10.950000000000001,10.73,10.53,10.32,10.120000000000001,9.73,N/A,N/A +2012,2,5,16,30,102420,101190,99980,72.48,0,10.05,10.76,10.9,10.950000000000001,10.97,10.97,10.950000000000001,10.93,10.86,3.06,3.38,3.5500000000000003,3.72,3.88,4.0200000000000005,4.19,4.3500000000000005,4.7,11.83,11.17,10.92,10.700000000000001,10.48,10.28,10.08,9.88,9.5,N/A,N/A +2012,2,5,17,30,102410,101180,99970,73.74,0,9.84,10.55,10.69,10.75,10.790000000000001,10.8,10.8,10.790000000000001,10.76,2.92,3.27,3.46,3.63,3.8000000000000003,3.95,4.12,4.2700000000000005,4.61,11.51,10.84,10.59,10.36,10.14,9.94,9.74,9.540000000000001,9.15,N/A,N/A +2012,2,5,18,30,102410,101180,99970,70.92,0,9.58,10.27,10.42,10.49,10.53,10.56,10.57,10.57,10.56,0.41000000000000003,0.5700000000000001,0.7000000000000001,0.8200000000000001,0.9400000000000001,1.05,1.16,1.27,1.51,11.67,11.01,10.76,10.540000000000001,10.32,10.120000000000001,9.91,9.72,9.32,N/A,N/A +2012,2,5,19,30,102430,101200,100000,67.17,0,8.55,9.15,9.290000000000001,9.370000000000001,9.41,9.450000000000001,9.46,9.48,9.49,359.81,359.95,0.16,0.33,0.49,0.63,0.76,0.9,1.16,12.120000000000001,11.51,11.27,11.05,10.83,10.64,10.43,10.23,9.84,N/A,N/A +2012,2,5,20,30,102360,101130,99940,64.04,0,8.66,9.31,9.47,9.56,9.620000000000001,9.67,9.700000000000001,9.72,9.76,358.49,358.66,358.76,358.86,358.97,359.07,359.19,359.3,359.53000000000003,13.18,12.61,12.38,12.17,11.950000000000001,11.75,11.540000000000001,11.35,10.950000000000001,N/A,N/A +2012,2,5,21,30,102320,101100,99900,61.06,0,9.38,10.07,10.21,10.27,10.3,10.32,10.32,10.32,10.290000000000001,357.02,357.45,357.68,357.89,358.1,358.29,358.49,358.68,359.08,13.77,13.22,12.99,12.780000000000001,12.57,12.370000000000001,12.16,11.97,11.58,N/A,N/A +2012,2,5,22,30,102310,101090,99900,61,0,9.290000000000001,10.01,10.17,10.27,10.32,10.36,10.38,10.39,10.4,0.86,0.97,1.08,1.18,1.27,1.36,1.44,1.53,1.69,13.950000000000001,13.41,13.18,12.96,12.75,12.55,12.34,12.15,11.75,N/A,N/A +2012,2,5,23,30,102390,101160,99970,56.77,0,9.34,10.05,10.200000000000001,10.27,10.31,10.33,10.34,10.34,10.33,354.63,354.76,354.87,354.96,355.04,355.12,355.21,355.3,355.5,13.84,13.290000000000001,13.06,12.85,12.64,12.450000000000001,12.24,12.05,11.65,N/A,N/A +2012,2,6,0,30,102390,101170,99970,62.4,0,10.18,10.94,11.08,11.13,11.14,11.14,11.120000000000001,11.1,11.03,357.7,358.18,358.46,358.73,358.99,359.24,359.5,359.75,0.29,13.56,12.98,12.75,12.530000000000001,12.32,12.13,11.92,11.73,11.34,N/A,N/A +2012,2,6,1,30,102430,101200,100000,63.15,0,11.1,12.02,12.22,12.32,12.38,12.41,12.43,12.44,12.43,5.61,5.72,5.7700000000000005,5.8100000000000005,5.86,5.89,5.94,5.98,6.08,13.05,12.42,12.18,11.96,11.74,11.540000000000001,11.33,11.13,10.74,N/A,N/A +2012,2,6,2,30,102460,101230,100030,65.19,0,11.28,12.26,12.51,12.65,12.74,12.81,12.85,12.88,12.92,13.81,13.700000000000001,13.620000000000001,13.540000000000001,13.450000000000001,13.38,13.3,13.23,13.08,12.98,12.34,12.1,11.870000000000001,11.65,11.450000000000001,11.24,11.040000000000001,10.65,N/A,N/A +2012,2,6,3,30,102460,101230,100030,63.34,0,11.290000000000001,12.24,12.47,12.59,12.67,12.72,12.75,12.780000000000001,12.8,14.08,14.13,14.16,14.200000000000001,14.24,14.280000000000001,14.33,14.370000000000001,14.47,13.030000000000001,12.39,12.15,11.93,11.71,11.51,11.3,11.1,10.71,N/A,N/A +2012,2,6,4,30,102440,101210,100010,63.45,0,11.26,12.22,12.43,12.55,12.620000000000001,12.66,12.69,12.700000000000001,12.71,18.92,18.98,19.01,19.03,19.07,19.09,19.13,19.17,19.25,13,12.36,12.120000000000001,11.9,11.68,11.48,11.27,11.07,10.67,N/A,N/A +2012,2,6,5,30,102450,101220,100020,64.78,0,10.450000000000001,11.28,11.47,11.57,11.620000000000001,11.66,11.68,11.69,11.69,21.830000000000002,22.09,22.21,22.31,22.42,22.52,22.62,22.73,22.93,12.74,12.120000000000001,11.88,11.65,11.44,11.24,11.03,10.83,10.44,N/A,N/A +2012,2,6,6,30,102480,101240,100040,66.19,0,9.64,10.370000000000001,10.53,10.620000000000001,10.67,10.700000000000001,10.71,10.72,10.72,24.01,24.29,24.46,24.62,24.77,24.900000000000002,25.04,25.18,25.44,12.5,11.89,11.65,11.43,11.21,11.01,10.8,10.61,10.21,N/A,N/A +2012,2,6,7,30,102480,101240,100040,68.1,0,10.07,10.81,10.96,11.03,11.06,11.08,11.07,11.06,11.02,25.26,25.51,25.68,25.810000000000002,25.95,26.080000000000002,26.21,26.34,26.59,12.05,11.4,11.16,10.94,10.72,10.52,10.31,10.11,9.72,N/A,N/A +2012,2,6,8,30,102490,101260,100050,68.13,0,9.32,9.98,10.120000000000001,10.19,10.22,10.24,10.24,10.23,10.200000000000001,22.830000000000002,23.12,23.31,23.48,23.64,23.79,23.94,24.080000000000002,24.38,11.82,11.19,10.94,10.72,10.5,10.3,10.09,9.9,9.5,N/A,N/A +2012,2,6,9,30,102480,101240,100040,68.91,0,9.370000000000001,10.03,10.16,10.23,10.26,10.27,10.27,10.27,10.24,27.42,27.61,27.75,27.87,27.990000000000002,28.1,28.22,28.34,28.580000000000002,11.64,10.99,10.74,10.52,10.3,10.11,9.9,9.700000000000001,9.31,N/A,N/A +2012,2,6,10,30,102490,101250,100050,70.08,0,8.66,9.24,9.35,9.4,9.42,9.43,9.42,9.41,9.38,29.55,29.77,29.91,30.03,30.150000000000002,30.26,30.38,30.490000000000002,30.72,11.6,10.97,10.73,10.51,10.290000000000001,10.09,9.89,9.69,9.3,N/A,N/A +2012,2,6,11,30,102500,101260,100060,72.69,0,8.77,9.33,9.43,9.47,9.48,9.48,9.46,9.44,9.39,25.490000000000002,25.92,26.2,26.44,26.69,26.91,27.150000000000002,27.38,27.84,11.36,10.71,10.47,10.25,10.03,9.83,9.63,9.43,9.040000000000001,N/A,N/A +2012,2,6,12,30,102500,101260,100050,74.76,0,8.47,9,9.09,9.120000000000001,9.120000000000001,9.120000000000001,9.09,9.07,9.01,22.34,22.71,22.96,23.19,23.41,23.62,23.830000000000002,24.04,24.48,11.17,10.53,10.290000000000001,10.07,9.85,9.65,9.450000000000001,9.25,8.86,N/A,N/A +2012,2,6,13,30,102520,101280,100070,77.34,0,8.620000000000001,9.15,9.24,9.27,9.28,9.27,9.25,9.23,9.17,20.580000000000002,20.89,21.080000000000002,21.26,21.43,21.59,21.76,21.92,22.26,10.59,9.93,9.68,9.450000000000001,9.23,9.03,8.82,8.63,8.24,N/A,N/A +2012,2,6,14,30,102540,101290,100090,77.36,0,8.64,9.18,9.28,9.31,9.32,9.32,9.31,9.290000000000001,9.23,20.8,21.07,21.240000000000002,21.400000000000002,21.54,21.68,21.830000000000002,21.97,22.27,10.49,9.82,9.57,9.35,9.13,8.93,8.72,8.53,8.14,N/A,N/A +2012,2,6,15,30,102540,101300,100090,76.38,0,7.640000000000001,8.08,8.16,8.19,8.19,8.19,8.18,8.16,8.11,22.26,22.43,22.54,22.650000000000002,22.76,22.86,22.97,23.080000000000002,23.31,10.49,9.85,9.61,9.39,9.17,8.98,8.77,8.58,8.2,N/A,N/A +2012,2,6,16,30,102530,101290,100080,75.64,0,6.9,7.28,7.3500000000000005,7.37,7.38,7.38,7.36,7.3500000000000005,7.32,20.41,20.5,20.55,20.61,20.67,20.72,20.79,20.85,21.01,10.74,10.13,9.89,9.68,9.46,9.27,9.06,8.870000000000001,8.48,N/A,N/A +2012,2,6,17,30,102490,101250,100040,72.99,0,6.3100000000000005,6.66,6.72,6.74,6.76,6.76,6.76,6.75,6.73,19.03,18.92,18.82,18.740000000000002,18.650000000000002,18.57,18.490000000000002,18.400000000000002,18.25,11.15,10.57,10.34,10.120000000000001,9.91,9.72,9.52,9.33,8.950000000000001,N/A,N/A +2012,2,6,18,30,102440,101210,100010,68.49,0,5.21,5.5,5.5600000000000005,5.6000000000000005,5.63,5.65,5.67,5.69,5.71,21.3,21.21,21.12,21.03,20.94,20.86,20.76,20.68,20.5,11.99,11.46,11.24,11.03,10.82,10.63,10.43,10.24,9.85,N/A,N/A +2012,2,6,19,30,102410,101170,99980,63.49,0,3.7,3.89,3.93,3.96,3.99,4.01,4.03,4.05,4.1,27.44,26.25,25.490000000000002,24.78,24.09,23.47,22.79,22.150000000000002,20.85,12.88,12.41,12.200000000000001,12,11.8,11.61,11.41,11.22,10.83,N/A,N/A +2012,2,6,20,30,102350,101120,99930,62.67,0,2.05,2.08,2.06,2.04,2.0300000000000002,2.0100000000000002,1.99,1.98,1.96,61.08,58.42,56.59,54.82,52.97,51.27,49.19,47.2,42.74,13.48,13.06,12.86,12.66,12.46,12.280000000000001,12.08,11.89,11.52,N/A,N/A +2012,2,6,21,30,102300,101080,99890,63.5,0,1.83,1.8,1.75,1.69,1.6400000000000001,1.58,1.52,1.47,1.36,91.5,89.55,88.14,86.65,84.9,83.28,80.83,78.32000000000001,70.94,13.950000000000001,13.540000000000001,13.34,13.15,12.950000000000001,12.77,12.58,12.39,12.030000000000001,N/A,N/A +2012,2,6,22,30,102260,101040,99860,61.86,0,0.5700000000000001,0.49,0.44,0.4,0.36,0.33,0.33,0.34,0.43,95.43,87.60000000000001,81.3,73.95,63.51,53.63,38.85,25.66,1.42,14.38,13.98,13.8,13.6,13.41,13.23,13.02,12.84,12.46,N/A,N/A +2012,2,6,23,30,102240,101020,99840,62.410000000000004,0,0.38,0.33,0.3,0.27,0.27,0.27,0.29,0.32,0.43,85.31,72.9,63.42,52.42,39.49,27.02,14.58,3.5300000000000002,347.17,14.700000000000001,14.32,14.13,13.94,13.74,13.56,13.36,13.17,12.790000000000001,N/A,N/A +2012,2,7,0,30,102240,101020,99840,63,0,0.9500000000000001,0.9,0.86,0.81,0.77,0.73,0.6900000000000001,0.66,0.6,93.74,90.17,87.76,85.13,81.88,78.83,74.11,69.23,54.480000000000004,14.950000000000001,14.58,14.39,14.200000000000001,14,13.82,13.620000000000001,13.43,13.06,N/A,N/A +2012,2,7,1,30,102220,101010,99820,62.690000000000005,0,0.84,0.85,0.85,0.85,0.86,0.87,0.89,0.91,1.01,55.980000000000004,50.81,47.51,44.17,40.68,37.4,33.55,29.87,21.7,15.21,14.85,14.66,14.47,14.27,14.09,13.9,13.71,13.34,N/A,N/A +2012,2,7,2,30,102230,101010,99830,58.5,0,2.36,2.5500000000000003,2.62,2.67,2.73,2.7800000000000002,2.83,2.88,2.99,21.42,22.19,22.650000000000002,23.09,23.52,23.91,24.35,24.76,25.69,15.51,15.14,14.950000000000001,14.76,14.56,14.370000000000001,14.17,13.98,13.59,N/A,N/A +2012,2,7,3,30,102240,101030,99840,64.35,0,3.86,4.05,4.09,4.1,4.11,4.11,4.11,4.11,4.1,37.18,37.7,38.04,38.36,38.67,38.94,39.230000000000004,39.49,40.03,15.540000000000001,15.15,14.96,14.76,14.56,14.370000000000001,14.16,13.98,13.58,N/A,N/A +2012,2,7,4,30,102240,101020,99840,61.76,0,5.3,5.53,5.54,5.5200000000000005,5.49,5.45,5.41,5.37,5.2700000000000005,33.59,34.12,34.45,34.77,35.09,35.38,35.71,36.02,36.67,15.290000000000001,14.88,14.68,14.49,14.280000000000001,14.1,13.89,13.700000000000001,13.32,N/A,N/A +2012,2,7,5,30,102220,101000,99810,63.190000000000005,0,5.04,5.29,5.32,5.32,5.3100000000000005,5.29,5.2700000000000005,5.25,5.2,32.39,33.14,33.61,34.05,34.49,34.88,35.33,35.75,36.62,15.09,14.67,14.47,14.27,14.07,13.89,13.68,13.49,13.11,N/A,N/A +2012,2,7,6,30,102240,101020,99830,67.86,0,5.0600000000000005,5.3100000000000005,5.34,5.34,5.33,5.32,5.29,5.2700000000000005,5.22,41.5,42.22,42.660000000000004,43.06,43.46,43.82,44.22,44.59,45.38,14.92,14.51,14.31,14.11,13.91,13.73,13.52,13.33,12.950000000000001,N/A,N/A +2012,2,7,7,30,102250,101030,99850,71.48,0,4.9,5.15,5.2,5.22,5.22,5.22,5.21,5.2,5.17,47.92,48.6,49.03,49.43,49.82,50.17,50.54,50.9,51.660000000000004,14.91,14.49,14.3,14.1,13.9,13.71,13.51,13.32,12.93,N/A,N/A +2012,2,7,8,30,102230,101010,99830,72.23,0,4.83,5.09,5.14,5.15,5.16,5.17,5.16,5.16,5.14,48.370000000000005,49.22,49.730000000000004,50.21,50.67,51.08,51.53,51.94,52.81,15.06,14.65,14.46,14.26,14.06,13.88,13.67,13.48,13.09,N/A,N/A +2012,2,7,9,30,102220,101000,99820,74.67,0,4.79,5.04,5.07,5.08,5.08,5.07,5.05,5.04,5,52.79,53.53,53.93,54.31,54.68,55.02,55.38,55.72,56.46,15.030000000000001,14.63,14.43,14.23,14.030000000000001,13.84,13.64,13.450000000000001,13.06,N/A,N/A +2012,2,7,10,30,102210,100990,99810,77.47,0,5.18,5.47,5.5200000000000005,5.54,5.54,5.54,5.54,5.53,5.5,62.21,62.99,63.440000000000005,63.870000000000005,64.27,64.64,65.04,65.41,66.21000000000001,14.98,14.57,14.370000000000001,14.17,13.97,13.780000000000001,13.58,13.39,13,N/A,N/A +2012,2,7,11,30,102220,101000,99820,76.09,0,4.88,5.14,5.19,5.21,5.22,5.22,5.22,5.21,5.19,63.95,64.33,64.58,64.81,65.02,65.21000000000001,65.42,65.61,66.01,15.07,14.66,14.46,14.26,14.06,13.88,13.67,13.48,13.09,N/A,N/A +2012,2,7,12,30,102220,101000,99820,76.12,0,5.26,5.5600000000000005,5.61,5.63,5.64,5.64,5.63,5.62,5.6000000000000005,65.98,66.24,66.38,66.51,66.64,66.75,66.88,67,67.24,15.120000000000001,14.71,14.52,14.31,14.11,13.93,13.72,13.530000000000001,13.14,N/A,N/A +2012,2,7,13,30,102240,101020,99840,74.49,0,4.99,5.26,5.3,5.32,5.32,5.3100000000000005,5.3,5.28,5.25,62.57,62.79,62.93,63.06,63.18,63.300000000000004,63.42,63.54,63.78,15.1,14.700000000000001,14.5,14.3,14.1,13.91,13.71,13.52,13.13,N/A,N/A +2012,2,7,14,30,102280,101060,99880,74.77,0,5.18,5.46,5.51,5.53,5.53,5.53,5.51,5.5,5.47,58.89,59.06,59.17,59.27,59.36,59.44,59.52,59.6,59.76,15.1,14.69,14.5,14.3,14.09,13.91,13.700000000000001,13.51,13.120000000000001,N/A,N/A +2012,2,7,15,30,102290,101070,99890,78.29,0,5.49,5.8,5.8500000000000005,5.86,5.87,5.86,5.8500000000000005,5.83,5.79,50.28,50.620000000000005,50.84,51.04,51.24,51.42,51.61,51.79,52.160000000000004,15.01,14.59,14.39,14.19,13.99,13.8,13.6,13.41,13.02,N/A,N/A +2012,2,7,16,30,102290,101070,99880,78.76,0,5.53,5.8,5.83,5.82,5.8,5.78,5.75,5.72,5.64,47.02,47.65,48.050000000000004,48.43,48.81,49.17,49.58,49.97,50.84,14.65,14.22,14.02,13.82,13.620000000000001,13.43,13.23,13.040000000000001,12.66,N/A,N/A +2012,2,7,17,30,102290,101070,99880,77.28,0,5.41,5.67,5.71,5.71,5.7,5.68,5.65,5.62,5.55,48.64,49.09,49.39,49.67,49.96,50.21,50.51,50.79,51.42,14.56,14.13,13.93,13.73,13.530000000000001,13.34,13.14,12.950000000000001,12.57,N/A,N/A +2012,2,7,18,30,102280,101060,99870,77.23,0,5.58,5.8500000000000005,5.88,5.87,5.8500000000000005,5.83,5.79,5.75,5.66,38.71,39.17,39.46,39.74,40.03,40.29,40.59,40.88,41.550000000000004,14.46,14.02,13.82,13.620000000000001,13.42,13.24,13.040000000000001,12.85,12.47,N/A,N/A +2012,2,7,19,30,102300,101080,99890,75.76,0,4.41,4.58,4.59,4.58,4.5600000000000005,4.54,4.5,4.46,4.38,37.12,37.47,37.71,37.93,38.160000000000004,38.37,38.61,38.84,39.36,14.43,14.01,13.81,13.620000000000001,13.42,13.23,13.040000000000001,12.85,12.47,N/A,N/A +2012,2,7,20,30,102280,101060,99870,70.22,0,4.09,4.2700000000000005,4.29,4.29,4.28,4.2700000000000005,4.26,4.24,4.2,30.29,30.38,30.46,30.52,30.580000000000002,30.63,30.69,30.740000000000002,30.830000000000002,14.55,14.14,13.94,13.74,13.540000000000001,13.36,13.15,12.97,12.58,N/A,N/A +2012,2,7,21,30,102270,101050,99860,65.13,0,4.53,4.73,4.76,4.76,4.75,4.75,4.73,4.71,4.67,25.04,25.16,25.21,25.27,25.32,25.36,25.41,25.46,25.57,14.77,14.36,14.16,13.96,13.76,13.58,13.370000000000001,13.19,12.8,N/A,N/A +2012,2,7,22,30,102280,101060,99880,65.43,0,5.16,5.39,5.42,5.41,5.39,5.37,5.34,5.3100000000000005,5.23,8.93,9.17,9.34,9.5,9.66,9.790000000000001,9.96,10.11,10.46,14.73,14.31,14.120000000000001,13.92,13.72,13.530000000000001,13.33,13.14,12.76,N/A,N/A +2012,2,7,23,30,102310,101090,99910,63.940000000000005,0,5.12,5.38,5.41,5.42,5.42,5.41,5.39,5.37,5.33,10.28,10.42,10.52,10.6,10.67,10.74,10.82,10.89,11.05,14.77,14.35,14.16,13.96,13.76,13.57,13.370000000000001,13.19,12.8,N/A,N/A +2012,2,8,0,30,102350,101130,99940,67.59,0,5.24,5.48,5.5,5.49,5.47,5.44,5.4,5.36,5.26,10.620000000000001,10.950000000000001,11.1,11.24,11.39,11.53,11.68,11.85,12.26,14.55,14.13,13.93,13.73,13.540000000000001,13.35,13.15,12.97,12.59,N/A,N/A +2012,2,8,1,30,102390,101170,99980,69.18,0,6.34,6.7,6.76,6.78,6.7700000000000005,6.76,6.73,6.71,6.640000000000001,20.830000000000002,21.03,21.13,21.23,21.330000000000002,21.42,21.52,21.62,21.89,14.42,13.98,13.780000000000001,13.58,13.370000000000001,13.19,12.99,12.81,12.43,N/A,N/A +2012,2,8,2,30,102440,101220,100030,67.2,0,7.49,7.98,8.08,8.120000000000001,8.13,8.14,8.13,8.120000000000001,8.09,19.98,20.27,20.44,20.59,20.76,20.92,21.11,21.29,21.75,14.51,14.05,13.85,13.65,13.450000000000001,13.26,13.06,12.88,12.5,N/A,N/A +2012,2,8,3,30,102490,101260,100070,70.65,0,7.8,8.34,8.46,8.51,8.540000000000001,8.55,8.55,8.55,8.53,17.66,17.830000000000002,17.98,18.11,18.240000000000002,18.36,18.5,18.63,18.93,14.27,13.790000000000001,13.58,13.370000000000001,13.17,12.98,12.780000000000001,12.6,12.22,N/A,N/A +2012,2,8,4,30,102490,101260,100070,73.39,0,8.18,8.73,8.84,8.88,8.89,8.89,8.870000000000001,8.85,8.8,20.89,20.97,21.02,21.06,21.11,21.150000000000002,21.19,21.240000000000002,21.34,14.1,13.6,13.39,13.19,12.99,12.8,12.6,12.42,12.040000000000001,N/A,N/A +2012,2,8,5,30,102520,101290,100100,76.25,0,8.07,8.61,8.72,8.76,8.78,8.790000000000001,8.78,8.77,8.75,22.09,22.13,22.16,22.19,22.21,22.23,22.26,22.29,22.36,13.84,13.34,13.120000000000001,12.92,12.72,12.530000000000001,12.33,12.14,11.77,N/A,N/A +2012,2,8,6,30,102570,101340,100150,78.8,0,8.57,9.17,9.290000000000001,9.34,9.36,9.370000000000001,9.36,9.36,9.34,18.91,19.05,19.12,19.2,19.28,19.35,19.43,19.51,19.72,13.56,13.030000000000001,12.82,12.61,12.41,12.22,12.02,11.84,11.47,N/A,N/A +2012,2,8,7,30,102620,101390,100190,76.24,0,8.78,9.41,9.55,9.61,9.64,9.67,9.67,9.67,9.67,23.2,23.39,23.51,23.63,23.740000000000002,23.85,23.97,24.09,24.38,13.47,12.94,12.72,12.51,12.3,12.120000000000001,11.92,11.73,11.35,N/A,N/A +2012,2,8,8,30,102630,101400,100210,76.19,0,8.74,9.370000000000001,9.51,9.57,9.6,9.620000000000001,9.63,9.63,9.64,23.54,23.77,23.900000000000002,24.02,24.150000000000002,24.27,24.41,24.560000000000002,24.89,13.36,12.82,12.6,12.39,12.19,12,11.8,11.61,11.23,N/A,N/A +2012,2,8,9,30,102650,101420,100220,76.22,0,8.93,9.59,9.74,9.81,9.85,9.88,9.89,9.9,9.9,20.87,21.080000000000002,21.23,21.37,21.51,21.64,21.79,21.93,22.25,13.3,12.76,12.530000000000001,12.32,12.11,11.92,11.71,11.53,11.14,N/A,N/A +2012,2,8,10,30,102680,101450,100250,75.8,0,9.17,9.86,10.02,10.11,10.16,10.19,10.21,10.23,10.25,19.46,19.68,19.81,19.94,20.07,20.2,20.35,20.48,20.81,12.99,12.42,12.19,11.98,11.77,11.58,11.38,11.19,10.8,N/A,N/A +2012,2,8,11,30,102730,101490,100290,73.57000000000001,0,9.26,9.96,10.13,10.22,10.27,10.31,10.34,10.36,10.4,23.01,23.22,23.36,23.51,23.650000000000002,23.79,23.95,24.1,24.48,12.92,12.36,12.13,11.92,11.71,11.53,11.32,11.14,10.76,N/A,N/A +2012,2,8,12,30,102760,101530,100330,71.31,0,9.78,10.53,10.71,10.790000000000001,10.85,10.88,10.9,10.91,10.93,24.84,25.060000000000002,25.19,25.32,25.46,25.580000000000002,25.72,25.86,26.16,12.71,12.120000000000001,11.89,11.68,11.47,11.290000000000001,11.09,10.9,10.53,N/A,N/A +2012,2,8,13,30,102780,101540,100340,73.42,0,10.07,10.84,11,11.08,11.120000000000001,11.15,11.15,11.15,11.14,25.68,25.88,26.01,26.13,26.25,26.35,26.48,26.6,26.86,12.34,11.73,11.49,11.28,11.07,10.88,10.68,10.5,10.13,N/A,N/A +2012,2,8,14,30,102820,101580,100370,73.49,0,9.16,9.82,9.96,10.03,10.06,10.08,10.09,10.09,10.09,30.16,30.42,30.580000000000002,30.71,30.86,30.98,31.13,31.26,31.57,12.19,11.6,11.36,11.15,10.950000000000001,10.76,10.56,10.370000000000001,10,N/A,N/A +2012,2,8,15,30,102820,101580,100380,70.73,0,9.05,9.700000000000001,9.85,9.92,9.97,9.99,10.01,10.03,10.040000000000001,30.64,30.89,31.060000000000002,31.21,31.37,31.5,31.66,31.810000000000002,32.14,12.290000000000001,11.700000000000001,11.47,11.26,11.05,10.870000000000001,10.66,10.48,10.1,N/A,N/A +2012,2,8,16,30,102800,101560,100360,65.64,0,8.93,9.6,9.76,9.85,9.9,9.94,9.97,10,10.040000000000001,24.97,25.13,25.23,25.330000000000002,25.43,25.52,25.63,25.73,25.97,12.73,12.16,11.94,11.72,11.51,11.32,11.120000000000001,10.93,10.55,N/A,N/A +2012,2,8,17,30,102760,101530,100330,57.46,0,8.51,9.18,9.36,9.46,9.53,9.59,9.63,9.66,9.72,26.94,26.85,26.79,26.73,26.68,26.62,26.57,26.52,26.42,13.780000000000001,13.26,13.05,12.84,12.63,12.44,12.23,12.040000000000001,11.65,N/A,N/A +2012,2,8,18,30,102740,101510,100320,53.71,0,7.58,8.2,8.370000000000001,8.47,8.55,8.61,8.66,8.700000000000001,8.77,29.26,28.93,28.72,28.52,28.32,28.150000000000002,27.96,27.79,27.44,14.700000000000001,14.25,14.05,13.84,13.64,13.450000000000001,13.24,13.05,12.66,N/A,N/A +2012,2,8,19,30,102710,101490,100300,52.61,0,6.72,7.25,7.4,7.5,7.57,7.62,7.67,7.71,7.7700000000000005,29.27,28.810000000000002,28.54,28.29,28.05,27.85,27.64,27.44,27.07,15.5,15.1,14.91,14.71,14.51,14.32,14.11,13.92,13.530000000000001,N/A,N/A +2012,2,8,20,30,102640,101420,100230,51.620000000000005,0,6.19,6.66,6.79,6.86,6.92,6.97,7,7.03,7.08,15.18,15.450000000000001,15.65,15.82,15.98,16.13,16.27,16.4,16.66,15.96,15.58,15.39,15.200000000000001,15,14.81,14.6,14.42,14.02,N/A,N/A +2012,2,8,21,30,102600,101380,100200,50.01,0,6.32,6.84,6.97,7.05,7.11,7.16,7.19,7.22,7.2700000000000005,11.02,11.39,11.63,11.84,12.030000000000001,12.200000000000001,12.370000000000001,12.530000000000001,12.84,16.41,16.06,15.870000000000001,15.68,15.48,15.290000000000001,15.09,14.9,14.51,N/A,N/A +2012,2,8,22,30,102570,101350,100170,50.68,0,6.74,7.3,7.44,7.5200000000000005,7.58,7.62,7.66,7.68,7.72,13.11,13.66,14.02,14.35,14.65,14.91,15.17,15.4,15.84,16.66,16.330000000000002,16.15,15.950000000000001,15.75,15.57,15.36,15.18,14.780000000000001,N/A,N/A +2012,2,8,23,30,102570,101350,100170,51.800000000000004,0,7.09,7.68,7.82,7.9,7.95,7.99,8.01,8.03,8.05,14.52,14.97,15.24,15.49,15.72,15.92,16.13,16.32,16.67,16.64,16.3,16.12,15.92,15.72,15.540000000000001,15.33,15.14,14.75,N/A,N/A +2012,2,9,0,30,102580,101370,100180,53.72,0,8.08,8.74,8.89,8.97,9.02,9.040000000000001,9.05,9.06,9.05,19.59,19.75,19.87,19.990000000000002,20.1,20.19,20.29,20.39,20.56,16.240000000000002,15.870000000000001,15.68,15.48,15.280000000000001,15.1,14.89,14.700000000000001,14.31,N/A,N/A +2012,2,9,1,30,102600,101380,100190,55.92,0,9.08,9.82,9.98,10.05,10.09,10.11,10.11,10.11,10.08,21.63,21.89,22.03,22.17,22.3,22.42,22.54,22.650000000000002,22.89,15.58,15.17,14.97,14.77,14.56,14.370000000000001,14.17,13.98,13.59,N/A,N/A +2012,2,9,2,30,102600,101380,100190,57.43,0,9.51,10.290000000000001,10.47,10.56,10.6,10.63,10.64,10.64,10.61,26.41,26.68,26.830000000000002,26.98,27.12,27.240000000000002,27.38,27.51,27.77,15.07,14.61,14.4,14.200000000000001,13.99,13.8,13.59,13.4,13.01,N/A,N/A +2012,2,9,3,30,102610,101390,100200,59.17,0,9,9.71,9.870000000000001,9.950000000000001,9.99,10.02,10.03,10.03,10.02,35.06,35.300000000000004,35.45,35.6,35.730000000000004,35.85,35.99,36.11,36.37,14.73,14.26,14.06,13.85,13.64,13.450000000000001,13.24,13.05,12.66,N/A,N/A +2012,2,9,4,30,102610,101390,100200,61.46,0,9.16,9.89,10.07,10.15,10.200000000000001,10.23,10.25,10.25,10.25,37.77,38.04,38.21,38.36,38.51,38.65,38.79,38.93,39.19,14.450000000000001,13.96,13.75,13.540000000000001,13.33,13.14,12.93,12.74,12.35,N/A,N/A +2012,2,9,5,30,102600,101370,100180,62.78,0,8.790000000000001,9.450000000000001,9.6,9.67,9.72,9.74,9.75,9.76,9.75,41.44,41.84,42.09,42.32,42.53,42.72,42.92,43.11,43.51,14.22,13.72,13.51,13.3,13.09,12.9,12.69,12.5,12.1,N/A,N/A +2012,2,9,6,30,102580,101360,100170,66.2,0,8.370000000000001,8.99,9.13,9.21,9.25,9.28,9.290000000000001,9.3,9.3,46.480000000000004,46.87,47.11,47.33,47.53,47.72,47.910000000000004,48.09,48.46,14.11,13.620000000000001,13.41,13.200000000000001,12.99,12.8,12.59,12.4,12.01,N/A,N/A +2012,2,9,7,30,102600,101370,100180,65.86,0,8.040000000000001,8.64,8.78,8.85,8.9,8.93,8.950000000000001,8.96,8.97,47.95,48.370000000000005,48.620000000000005,48.85,49.07,49.26,49.47,49.65,50.03,14.06,13.58,13.370000000000001,13.15,12.950000000000001,12.76,12.55,12.36,11.96,N/A,N/A +2012,2,9,8,30,102590,101360,100170,65.75,0,8.34,8.96,9.11,9.19,9.23,9.26,9.27,9.28,9.28,50.96,51.230000000000004,51.4,51.550000000000004,51.69,51.82,51.94,52.06,52.300000000000004,13.950000000000001,13.46,13.24,13.030000000000001,12.82,12.63,12.42,12.23,11.83,N/A,N/A +2012,2,9,9,30,102580,101350,100160,66.46000000000001,0,7.61,8.13,8.25,8.3,8.32,8.34,8.34,8.33,8.31,54.17,54.5,54.71,54.910000000000004,55.1,55.26,55.44,55.6,55.93,13.75,13.25,13.040000000000001,12.83,12.620000000000001,12.43,12.22,12.030000000000001,11.63,N/A,N/A +2012,2,9,10,30,102580,101350,100150,69.08,0,7.62,8.14,8.25,8.3,8.32,8.34,8.34,8.34,8.32,55.19,55.57,55.800000000000004,56.02,56.230000000000004,56.42,56.61,56.800000000000004,57.19,13.59,13.09,12.870000000000001,12.66,12.450000000000001,12.26,12.05,11.86,11.46,N/A,N/A +2012,2,9,11,30,102560,101330,100140,71.57000000000001,0,7.8,8.33,8.45,8.51,8.540000000000001,8.56,8.57,8.57,8.55,54.13,54.6,54.88,55.14,55.38,55.61,55.85,56.06,56.51,13.48,12.97,12.75,12.540000000000001,12.33,12.14,11.93,11.73,11.34,N/A,N/A +2012,2,9,12,30,102560,101330,100130,74.13,0,7.82,8.370000000000001,8.49,8.55,8.58,8.6,8.61,8.61,8.61,58.800000000000004,59.27,59.58,59.870000000000005,60.14,60.38,60.64,60.870000000000005,61.34,13.43,12.92,12.700000000000001,12.48,12.27,12.08,11.870000000000001,11.68,11.28,N/A,N/A +2012,2,9,13,30,102560,101330,100130,74.49,0,7.9,8.45,8.58,8.65,8.69,8.72,8.73,8.74,8.73,58.79,59.04,59.160000000000004,59.27,59.38,59.480000000000004,59.59,59.68,59.870000000000005,13.41,12.89,12.67,12.46,12.24,12.05,11.84,11.65,11.25,N/A,N/A +2012,2,9,14,30,102570,101340,100150,71.88,0,7.92,8.46,8.58,8.64,8.67,8.69,8.69,8.69,8.68,64.65,64.9,65.05,65.18,65.32000000000001,65.44,65.56,65.68,65.91,13.38,12.870000000000001,12.65,12.43,12.22,12.030000000000001,11.82,11.63,11.23,N/A,N/A +2012,2,9,15,30,102570,101340,100140,73.27,0,7.3,7.7700000000000005,7.86,7.91,7.930000000000001,7.94,7.94,7.94,7.92,63.2,63.57,63.81,64.03,64.23,64.41,64.6,64.78,65.14,13.31,12.8,12.59,12.38,12.17,11.97,11.76,11.57,11.18,N/A,N/A +2012,2,9,16,30,102560,101330,100130,75.65,0,7.23,7.68,7.78,7.82,7.84,7.8500000000000005,7.8500000000000005,7.84,7.82,63.690000000000005,64.22,64.5,64.77,65.02,65.26,65.5,65.72,66.18,13.25,12.74,12.52,12.31,12.1,11.91,11.700000000000001,11.5,11.11,N/A,N/A +2012,2,9,17,30,102530,101300,100110,76,0,6.57,6.96,7.04,7.08,7.1000000000000005,7.11,7.11,7.1000000000000005,7.09,67.34,67.71000000000001,67.97,68.22,68.46000000000001,68.67,68.89,69.10000000000001,69.52,13.34,12.85,12.64,12.43,12.21,12.030000000000001,11.82,11.620000000000001,11.23,N/A,N/A +2012,2,9,18,30,102480,101250,100050,75.88,0,6.43,6.8,6.87,6.9,6.92,6.92,6.92,6.92,6.890000000000001,65.52,65.95,66.17,66.37,66.57000000000001,66.74,66.94,67.11,67.48,13.39,12.9,12.68,12.47,12.26,12.07,11.86,11.67,11.28,N/A,N/A +2012,2,9,19,30,102470,101240,100050,75.22,0,5.53,5.83,5.89,5.91,5.93,5.93,5.93,5.92,5.91,70.71000000000001,71.17,71.43,71.67,71.9,72.12,72.34,72.55,72.99,13.540000000000001,13.07,12.86,12.65,12.450000000000001,12.26,12.05,11.86,11.47,N/A,N/A +2012,2,9,20,30,102410,101190,99990,74.59,0,4.86,5.1000000000000005,5.14,5.15,5.16,5.16,5.15,5.15,5.12,79.93,80.43,80.7,80.96000000000001,81.21000000000001,81.44,81.7,81.94,82.46000000000001,13.69,13.24,13.040000000000001,12.83,12.63,12.44,12.23,12.040000000000001,11.65,N/A,N/A +2012,2,9,21,30,102350,101130,99940,73.62,0,4.57,4.79,4.82,4.84,4.84,4.84,4.83,4.82,4.79,84.19,84.58,84.82000000000001,85.06,85.3,85.51,85.76,85.98,86.48,13.92,13.48,13.280000000000001,13.08,12.870000000000001,12.68,12.48,12.290000000000001,11.9,N/A,N/A +2012,2,9,22,30,102300,101080,99890,71.58,0,4.15,4.33,4.36,4.37,4.36,4.36,4.3500000000000005,4.34,4.3100000000000005,92.55,92.89,93.10000000000001,93.29,93.48,93.66,93.86,94.06,94.47,14.18,13.76,13.56,13.36,13.15,12.97,12.76,12.57,12.18,N/A,N/A +2012,2,9,23,30,102250,101030,99850,72.36,0,4.22,4.42,4.45,4.46,4.46,4.46,4.45,4.44,4.42,99.3,99.73,99.99000000000001,100.26,100.51,100.75,101.02,101.27,101.85000000000001,14.370000000000001,13.950000000000001,13.75,13.55,13.35,13.16,12.96,12.77,12.38,N/A,N/A +2012,2,10,0,30,102210,100990,99810,77.17,0,5.36,5.66,5.71,5.73,5.73,5.73,5.72,5.71,5.68,104.38,104.5,104.57000000000001,104.64,104.71000000000001,104.78,104.86,104.94,105.14,14.33,13.89,13.69,13.49,13.280000000000001,13.1,12.89,12.700000000000001,12.31,N/A,N/A +2012,2,10,1,30,102200,100980,99800,75.81,0.7000000000000001,4.5,4.7,4.73,4.73,4.72,4.71,4.69,4.67,4.62,112.46000000000001,112.82000000000001,113.07000000000001,113.31,113.54,113.76,114,114.23,114.75,14.35,13.93,13.73,13.52,13.33,13.14,12.94,12.75,12.36,N/A,N/A +2012,2,10,2,30,102190,100970,99780,74.98,0.4,4.04,4.22,4.25,4.25,4.25,4.24,4.22,4.2,4.16,108.58,108.93,109.17,109.41,109.64,109.84,110.08,110.3,110.81,14.38,13.97,13.77,13.57,13.370000000000001,13.19,12.98,12.790000000000001,12.4,N/A,N/A +2012,2,10,3,30,102170,100950,99760,74.92,0.7000000000000001,3.5700000000000003,3.72,3.74,3.74,3.74,3.73,3.71,3.7,3.66,105.49000000000001,105.98,106.33,106.68,107.02,107.34,107.7,108.03,108.79,14.58,14.17,13.98,13.780000000000001,13.58,13.39,13.19,13,12.61,N/A,N/A +2012,2,10,4,30,102140,100930,99740,74.7,0,3.61,3.8000000000000003,3.85,3.87,3.89,3.9,3.92,3.93,3.95,87.86,88.94,89.67,90.37,91.04,91.66,92.31,92.91,94.22,14.780000000000001,14.39,14.200000000000001,14,13.8,13.620000000000001,13.41,13.23,12.84,N/A,N/A +2012,2,10,5,30,102120,100910,99730,74.31,0,3.93,4.15,4.21,4.24,4.2700000000000005,4.28,4.3,4.3100000000000005,4.33,95.19,95.87,96.27,96.64,96.99000000000001,97.32000000000001,97.66,97.98,98.67,15.17,14.780000000000001,14.59,14.39,14.19,14,13.8,13.61,13.22,N/A,N/A +2012,2,10,6,30,102130,100910,99730,78.92,4.4,3.63,3.81,3.85,3.87,3.89,3.9,3.91,3.91,3.92,83.54,84.95,85.9,86.79,87.62,88.4,89.21000000000001,89.96000000000001,91.54,14.950000000000001,14.56,14.38,14.18,13.98,13.8,13.6,13.42,13.040000000000001,N/A,N/A +2012,2,10,7,30,102130,100910,99730,82.49,2.2,3.8200000000000003,4.03,4.08,4.11,4.13,4.14,4.15,4.16,4.18,71.31,72.3,72.94,73.54,74.08,74.57000000000001,75.08,75.55,76.55,14.93,14.540000000000001,14.36,14.16,13.96,13.77,13.57,13.39,13.01,N/A,N/A +2012,2,10,8,30,102090,100880,99690,82.98,5.5,5.01,5.25,5.28,5.28,5.2700000000000005,5.26,5.24,5.21,5.15,63.58,63.89,64.12,64.36,64.58,64.78,65.01,65.23,65.7,14.73,14.32,14.13,13.93,13.73,13.55,13.35,13.16,12.780000000000001,N/A,N/A +2012,2,10,9,30,102030,100820,99640,82.64,1.1,5.84,6.16,6.22,6.24,6.24,6.23,6.2,6.18,6.12,67.13,67.34,67.46000000000001,67.59,67.73,67.88,68.05,68.23,68.71000000000001,14.68,14.26,14.06,13.86,13.66,13.47,13.27,13.08,12.700000000000001,N/A,N/A +2012,2,10,10,30,102010,100790,99610,85.46000000000001,4.4,5.93,6.25,6.3100000000000005,6.32,6.3100000000000005,6.3,6.28,6.25,6.19,62.59,62.940000000000005,63.2,63.47,63.75,64.01,64.34,64.67,65.48,14.43,13.99,13.8,13.59,13.39,13.21,13.01,12.83,12.450000000000001,N/A,N/A +2012,2,10,11,30,102000,100780,99600,87.7,1.1,6.5200000000000005,6.91,6.99,7.01,7.01,7.01,6.99,6.97,6.92,57.24,57.46,57.64,57.82,58,58.17,58.410000000000004,58.63,59.230000000000004,14.27,13.83,13.620000000000001,13.42,13.22,13.040000000000001,12.84,12.65,12.280000000000001,N/A,N/A +2012,2,10,12,30,101970,100750,99570,92.05,5.9,6.42,6.82,6.9,6.93,6.94,6.94,6.93,6.92,6.88,53.32,53.49,53.59,53.7,53.81,53.92,54.07,54.2,54.58,14.26,13.81,13.620000000000001,13.41,13.22,13.040000000000001,12.85,12.67,12.31,N/A,N/A +2012,2,10,13,30,102000,100780,99600,94.89,6.2,7.66,8.05,8.1,8.09,8.05,8.01,7.95,7.890000000000001,7.75,16.13,17.17,17.76,18.38,19.02,19.62,20.37,21.12,23.01,13.39,12.89,12.68,12.49,12.3,12.13,11.950000000000001,11.78,11.450000000000001,N/A,N/A +2012,2,10,14,30,102010,100790,99600,92.65,2.6,7.26,7.67,7.75,7.76,7.75,7.73,7.69,7.640000000000001,7.54,29.36,29.7,29.91,30.13,30.37,30.59,30.89,31.2,32.01,13.23,12.72,12.51,12.31,12.1,11.92,11.73,11.55,11.18,N/A,N/A +2012,2,10,15,30,102030,100800,99620,92.75,22.700000000000003,8.1,8.59,8.67,8.69,8.67,8.65,8.61,8.56,8.45,20.080000000000002,20.41,20.61,20.81,21.02,21.22,21.46,21.7,22.29,13.15,12.63,12.42,12.21,12.02,11.84,11.64,11.46,11.11,N/A,N/A +2012,2,10,16,30,102060,100840,99660,91.72,15.4,8.1,8.66,8.78,8.83,8.85,8.86,8.85,8.84,8.8,7.390000000000001,7.17,7.23,7.28,7.32,7.36,7.41,7.45,7.53,13.32,12.8,12.58,12.370000000000001,12.16,11.98,11.78,11.59,11.21,N/A,N/A +2012,2,10,17,30,102020,100800,99610,93.11,27.5,6.97,7.3500000000000005,7.42,7.44,7.43,7.43,7.42,7.43,7.54,8.68,8.84,8.51,8.19,7.83,7.47,6.92,6.3,3.61,13.31,12.82,12.620000000000001,12.43,12.24,12.07,11.89,11.72,11.43,N/A,N/A +2012,2,10,18,30,102020,100800,99620,94.12,11.700000000000001,5.58,5.86,5.91,5.93,5.93,5.93,5.92,5.92,5.93,357.46,357.28000000000003,357.05,356.79,356.5,356.21,355.8,355.37,353.99,13.41,12.94,12.74,12.540000000000001,12.35,12.17,11.98,11.8,11.44,N/A,N/A +2012,2,10,19,30,102060,100840,99660,92.88,2.2,5.86,6.23,6.34,6.390000000000001,6.44,6.47,6.5,6.5200000000000005,6.57,340.3,339.65000000000003,339.17,338.71,338.27,337.86,337.41,336.98,336.07,13.76,13.3,13.09,12.88,12.68,12.5,12.31,12.13,11.76,N/A,N/A +2012,2,10,20,30,102000,100780,99600,90.99,1.1,4.89,5.16,5.22,5.25,5.2700000000000005,5.29,5.3100000000000005,5.33,5.39,341.06,341.36,341.42,341.48,341.54,341.59000000000003,341.63,341.67,341.71,13.72,13.280000000000001,13.08,12.88,12.68,12.5,12.3,12.11,11.73,N/A,N/A +2012,2,10,21,30,102030,100810,99630,87.41,0,6.36,6.8,6.92,7,7.05,7.1000000000000005,7.140000000000001,7.18,7.26,335.71,336.1,336.35,336.58,336.82,337.04,337.29,337.52,338.06,14.15,13.700000000000001,13.49,13.290000000000001,13.08,12.9,12.700000000000001,12.51,12.13,N/A,N/A +2012,2,10,22,30,102030,100810,99630,78.58,0,8.84,9.56,9.74,9.84,9.89,9.93,9.950000000000001,9.96,9.96,348.94,348.56,348.32,348.1,347.88,347.68,347.47,347.27,346.85,15.22,14.780000000000001,14.58,14.370000000000001,14.16,13.97,13.77,13.58,13.18,N/A,N/A +2012,2,10,23,30,102050,100840,99660,79.76,0,9,9.74,9.950000000000001,10.06,10.14,10.19,10.23,10.26,10.3,344,343.98,343.98,343.99,343.99,344,344,344.01,344.02,15.07,14.620000000000001,14.42,14.200000000000001,14,13.8,13.6,13.41,13.01,N/A,N/A +2012,2,11,0,30,102100,100880,99700,77,0,8.33,8.96,9.13,9.23,9.290000000000001,9.33,9.370000000000001,9.39,9.43,355.83,356.08,356.2,356.3,356.39,356.46,356.53000000000003,356.59000000000003,356.69,14.75,14.3,14.09,13.88,13.68,13.49,13.280000000000001,13.09,12.700000000000001,N/A,N/A +2012,2,11,1,30,102140,100920,99740,76.61,0,8.28,8.93,9.120000000000001,9.22,9.290000000000001,9.34,9.39,9.43,9.49,2.39,2.44,2.44,2.43,2.41,2.39,2.35,2.31,2.2,14.48,14.02,13.81,13.6,13.4,13.21,13.01,12.82,12.43,N/A,N/A +2012,2,11,2,30,102210,100980,99800,79.56,0,9.76,10.57,10.78,10.89,10.96,11.01,11.040000000000001,11.07,11.1,359.67,359.47,359.35,359.22,359.1,358.99,358.87,358.75,358.52,14.15,13.64,13.43,13.21,13,12.81,12.6,12.41,12.02,N/A,N/A +2012,2,11,3,30,102280,101050,99860,79.83,0,10.11,10.91,11.120000000000001,11.22,11.27,11.31,11.33,11.33,11.33,3.19,3.42,3.54,3.64,3.74,3.8200000000000003,3.89,3.96,4.09,13.73,13.200000000000001,12.98,12.76,12.55,12.36,12.15,11.96,11.56,N/A,N/A +2012,2,11,4,30,102350,101120,99920,81.14,0,10.4,11.24,11.46,11.57,11.64,11.69,11.72,11.75,11.77,3.3200000000000003,3.42,3.49,3.54,3.59,3.63,3.65,3.68,3.72,12.85,12.26,12.030000000000001,11.81,11.59,11.4,11.19,10.99,10.6,N/A,N/A +2012,2,11,5,30,102380,101150,99950,78.06,0,10.61,11.53,11.76,11.9,11.99,12.05,12.1,12.14,12.19,12.59,12.52,12.47,12.41,12.35,12.3,12.23,12.17,12.030000000000001,12.58,11.98,11.74,11.52,11.31,11.11,10.9,10.71,10.32,N/A,N/A +2012,2,11,6,30,102450,101220,100020,78.72,0,10.3,11.15,11.370000000000001,11.49,11.58,11.64,11.68,11.72,11.77,12.72,12.55,12.44,12.34,12.23,12.13,12.02,11.92,11.700000000000001,12.4,11.790000000000001,11.55,11.33,11.11,10.92,10.71,10.51,10.120000000000001,N/A,N/A +2012,2,11,7,30,102510,101280,100080,79.62,0,10.84,11.76,12.01,12.14,12.23,12.290000000000001,12.33,12.36,12.4,10.88,10.790000000000001,10.74,10.71,10.67,10.64,10.6,10.56,10.49,12.21,11.58,11.33,11.1,10.88,10.69,10.47,10.28,9.88,N/A,N/A +2012,2,11,8,30,102540,101300,100100,83.85000000000001,0,11.66,12.63,12.88,13,13.07,13.120000000000001,13.15,13.17,13.17,11.81,11.92,11.950000000000001,11.96,11.96,11.97,11.97,11.96,11.950000000000001,11.3,10.61,10.35,10.120000000000001,9.89,9.69,9.48,9.28,8.89,N/A,N/A +2012,2,11,9,30,102590,101340,100130,77,0,13.57,14.780000000000001,15.07,15.21,15.290000000000001,15.34,15.35,15.35,15.31,16.29,16.38,16.41,16.43,16.45,16.47,16.48,16.490000000000002,16.5,10.64,9.86,9.58,9.34,9.11,8.91,8.700000000000001,8.5,8.120000000000001,N/A,N/A +2012,2,11,10,30,102670,101420,100200,75.87,0,13,14.11,14.38,14.52,14.6,14.65,14.67,14.69,14.68,22.78,22.84,22.89,22.93,22.97,23.01,23.04,23.07,23.14,9.73,8.92,8.63,8.39,8.16,7.95,7.74,7.54,7.15,N/A,N/A +2012,2,11,11,30,102740,101490,100270,73.58,0,12.44,13.450000000000001,13.700000000000001,13.82,13.89,13.93,13.94,13.950000000000001,13.93,25.080000000000002,25.2,25.26,25.32,25.38,25.44,25.490000000000002,25.54,25.63,9.07,8.24,7.96,7.71,7.48,7.2700000000000005,7.0600000000000005,6.86,6.47,N/A,N/A +2012,2,11,12,30,102810,101550,100330,73.95,0,12.290000000000001,13.26,13.49,13.61,13.67,13.71,13.72,13.73,13.72,29.27,29.43,29.53,29.61,29.68,29.75,29.82,29.88,29.990000000000002,8.35,7.49,7.2,6.95,6.72,6.51,6.29,6.1000000000000005,5.7,N/A,N/A +2012,2,11,13,30,102880,101620,100390,75.81,0,12.32,13.280000000000001,13.51,13.620000000000001,13.68,13.71,13.72,13.73,13.71,31.66,31.92,32.08,32.230000000000004,32.37,32.49,32.61,32.730000000000004,32.980000000000004,7.8,6.92,6.62,6.37,6.140000000000001,5.93,5.71,5.5200000000000005,5.12,N/A,N/A +2012,2,11,14,30,102940,101680,100450,76.17,0,12.02,12.93,13.15,13.25,13.31,13.34,13.35,13.35,13.33,31.77,32.09,32.28,32.46,32.63,32.78,32.94,33.1,33.410000000000004,7.390000000000001,6.51,6.21,5.96,5.72,5.5200000000000005,5.3,5.1000000000000005,4.71,N/A,N/A +2012,2,11,15,30,102990,101720,100500,72.63,0,10.53,11.27,11.450000000000001,11.53,11.58,11.61,11.620000000000001,11.63,11.63,31.98,32.27,32.46,32.64,32.8,32.95,33.11,33.26,33.57,7.32,6.49,6.2,5.96,5.73,5.5200000000000005,5.3100000000000005,5.11,4.72,N/A,N/A +2012,2,11,16,30,103000,101740,100510,67.06,0,9.72,10.370000000000001,10.52,10.59,10.63,10.66,10.67,10.68,10.68,28.26,28.490000000000002,28.650000000000002,28.79,28.93,29.05,29.18,29.3,29.54,7.5,6.71,6.43,6.19,5.96,5.75,5.54,5.3500000000000005,4.95,N/A,N/A +2012,2,11,17,30,103010,101750,100520,65.65,0,8.99,9.59,9.72,9.8,9.84,9.870000000000001,9.89,9.9,9.91,21.64,21.7,21.75,21.79,21.830000000000002,21.86,21.900000000000002,21.93,22.01,7.92,7.17,6.890000000000001,6.66,6.43,6.23,6.0200000000000005,5.82,5.42,N/A,N/A +2012,2,11,18,30,103020,101760,100530,58.480000000000004,0,8.78,9.370000000000001,9.51,9.59,9.64,9.68,9.700000000000001,9.72,9.75,20.11,20.11,20.12,20.13,20.14,20.16,20.17,20.18,20.2,8.8,8.09,7.83,7.59,7.37,7.16,6.95,6.75,6.3500000000000005,N/A,N/A +2012,2,11,19,30,103030,101780,100560,55.46,0,8.35,8.91,9.05,9.120000000000001,9.16,9.200000000000001,9.22,9.24,9.26,16.69,16.79,16.86,16.92,16.990000000000002,17.04,17.1,17.16,17.27,9.49,8.82,8.56,8.33,8.1,7.9,7.69,7.48,7.08,N/A,N/A +2012,2,11,20,30,103010,101760,100550,52.14,0,8.28,8.84,8.98,9.06,9.120000000000001,9.16,9.18,9.200000000000001,9.23,15.82,15.85,15.88,15.9,15.92,15.94,15.950000000000001,15.97,16,10.23,9.58,9.34,9.11,8.89,8.69,8.47,8.27,7.87,N/A,N/A +2012,2,11,21,30,103010,101760,100550,48.46,0,8.61,9.21,9.36,9.44,9.49,9.53,9.55,9.57,9.59,15.09,15.25,15.35,15.44,15.52,15.6,15.68,15.74,15.89,10.84,10.21,9.97,9.74,9.52,9.32,9.1,8.9,8.5,N/A,N/A +2012,2,11,22,30,103020,101780,100560,48.58,0,8.8,9.4,9.55,9.63,9.67,9.700000000000001,9.72,9.74,9.75,21.48,21.29,21.14,21,20.87,20.75,20.62,20.51,20.29,11.02,10.4,10.15,9.93,9.700000000000001,9.5,9.290000000000001,9.09,8.68,N/A,N/A +2012,2,11,23,30,103060,101810,100600,51.34,0,9.4,10.06,10.200000000000001,10.28,10.32,10.34,10.35,10.35,10.35,15.33,15.63,15.82,15.99,16.16,16.3,16.45,16.580000000000002,16.85,10.81,10.15,9.91,9.68,9.450000000000001,9.25,9.03,8.83,8.43,N/A,N/A +2012,2,12,0,30,103120,101870,100650,51.72,0,10.05,10.76,10.91,10.98,11.01,11.03,11.03,11.02,10.99,17.36,17.64,17.8,17.95,18.1,18.23,18.36,18.490000000000002,18.740000000000002,10.19,9.5,9.24,9.01,8.78,8.58,8.36,8.16,7.76,N/A,N/A +2012,2,12,1,30,103170,101920,100690,53.79,0,10.370000000000001,11.13,11.3,11.39,11.43,11.46,11.47,11.48,11.47,22.48,22.69,22.82,22.93,23.04,23.150000000000002,23.25,23.35,23.54,9.71,8.99,8.72,8.49,8.26,8.05,7.84,7.63,7.23,N/A,N/A +2012,2,12,2,30,103220,101960,100740,55.59,0,11.28,12.14,12.34,12.450000000000001,12.5,12.540000000000001,12.55,12.56,12.56,26.92,27.150000000000002,27.29,27.41,27.53,27.63,27.740000000000002,27.85,28.05,9.25,8.47,8.2,7.95,7.73,7.5200000000000005,7.3,7.1000000000000005,6.7,N/A,N/A +2012,2,12,3,30,103250,101990,100760,57.61,0,11.49,12.38,12.59,12.69,12.74,12.780000000000001,12.8,12.81,12.8,32.49,32.76,32.94,33.09,33.24,33.37,33.51,33.64,33.9,8.9,8.1,7.82,7.58,7.34,7.13,6.92,6.71,6.3100000000000005,N/A,N/A +2012,2,12,4,30,103240,101980,100750,59.42,0,11.55,12.450000000000001,12.65,12.75,12.81,12.84,12.86,12.86,12.86,37.02,37.4,37.63,37.83,38.02,38.19,38.37,38.54,38.86,8.68,7.88,7.59,7.3500000000000005,7.12,6.91,6.69,6.49,6.08,N/A,N/A +2012,2,12,5,30,103270,102000,100770,61.9,0,11.620000000000001,12.52,12.72,12.83,12.89,12.93,12.950000000000001,12.96,12.96,40.9,41.34,41.61,41.85,42.08,42.29,42.5,42.7,43.1,8.41,7.59,7.3,7.05,6.82,6.61,6.390000000000001,6.18,5.78,N/A,N/A +2012,2,12,6,30,103300,102040,100810,66.23,0,11.700000000000001,12.620000000000001,12.84,12.96,13.030000000000001,13.08,13.1,13.120000000000001,13.13,49.36,49.46,49.52,49.57,49.620000000000005,49.67,49.7,49.75,49.83,8.23,7.390000000000001,7.1000000000000005,6.8500000000000005,6.61,6.4,6.18,5.97,5.5600000000000005,N/A,N/A +2012,2,12,7,30,103340,102080,100850,62.59,0,11.6,12.48,12.68,12.780000000000001,12.83,12.86,12.88,12.88,12.870000000000001,50.25,50.54,50.730000000000004,50.89,51.04,51.19,51.33,51.47,51.730000000000004,7.91,7.07,6.78,6.53,6.29,6.08,5.86,5.66,5.25,N/A,N/A +2012,2,12,8,30,103350,102080,100850,65.84,0,11.35,12.19,12.38,12.47,12.52,12.55,12.56,12.56,12.540000000000001,50.95,51.25,51.45,51.620000000000005,51.78,51.93,52.08,52.22,52.51,7.5,6.65,6.36,6.11,5.87,5.66,5.44,5.24,4.83,N/A,N/A +2012,2,12,9,30,103360,102090,100860,68.71000000000001,0,11.21,12.030000000000001,12.23,12.32,12.38,12.41,12.43,12.44,12.44,53.550000000000004,53.71,53.82,53.910000000000004,54,54.08,54.160000000000004,54.24,54.39,7.25,6.390000000000001,6.09,5.84,5.6000000000000005,5.39,5.17,4.97,4.5600000000000005,N/A,N/A +2012,2,12,10,30,103360,102090,100850,67.67,0,11.44,12.290000000000001,12.48,12.58,12.63,12.66,12.68,12.68,12.67,53.75,53.99,54.15,54.29,54.42,54.54,54.67,54.79,55.04,6.97,6.1000000000000005,5.8,5.54,5.3100000000000005,5.09,4.87,4.67,4.26,N/A,N/A +2012,2,12,11,30,103350,102080,100840,68.84,0,11.5,12.35,12.55,12.64,12.69,12.73,12.74,12.75,12.74,52.6,52.93,53.15,53.34,53.53,53.7,53.870000000000005,54.04,54.370000000000005,6.83,5.96,5.65,5.4,5.16,4.95,4.73,4.5200000000000005,4.12,N/A,N/A +2012,2,12,12,30,103360,102080,100850,70.72,0,11.52,12.38,12.58,12.68,12.73,12.77,12.780000000000001,12.790000000000001,12.790000000000001,53.77,54.18,54.44,54.67,54.910000000000004,55.11,55.32,55.53,55.93,6.8,5.92,5.62,5.37,5.13,4.91,4.7,4.49,4.09,N/A,N/A +2012,2,12,13,30,103330,102060,100820,73.15,0,11.76,12.65,12.85,12.950000000000001,13.01,13.05,13.06,13.07,13.06,54.49,55.03,55.36,55.65,55.93,56.19,56.44,56.7,57.18,6.890000000000001,6,5.7,5.45,5.21,5,4.78,4.57,4.17,N/A,N/A +2012,2,12,14,30,103320,102050,100820,74.89,0,12.08,13.02,13.23,13.35,13.4,13.450000000000001,13.46,13.47,13.47,55.050000000000004,55.51,55.79,56.04,56.28,56.5,56.730000000000004,56.94,57.36,7.16,6.2700000000000005,5.96,5.71,5.47,5.25,5.03,4.83,4.42,N/A,N/A +2012,2,12,15,30,103310,102040,100810,77.03,0,11.58,12.46,12.67,12.780000000000001,12.84,12.88,12.91,12.92,12.92,58.75,59.300000000000004,59.65,59.97,60.26,60.53,60.81,61.06,61.57,7.36,6.5,6.2,5.95,5.71,5.5,5.28,5.08,4.67,N/A,N/A +2012,2,12,16,30,103260,101990,100760,73.99,0,10.96,11.76,11.96,12.06,12.120000000000001,12.16,12.18,12.19,12.200000000000001,62.77,63.18,63.440000000000005,63.68,63.9,64.1,64.3,64.49,64.87,7.71,6.88,6.59,6.34,6.1000000000000005,5.89,5.67,5.47,5.0600000000000005,N/A,N/A +2012,2,12,17,30,103210,101950,100720,69.93,0,10.22,10.94,11.11,11.200000000000001,11.24,11.27,11.290000000000001,11.290000000000001,11.290000000000001,64.05,64.29,64.45,64.58,64.71000000000001,64.82000000000001,64.94,65.05,65.26,8.05,7.25,6.97,6.73,6.49,6.28,6.07,5.86,5.46,N/A,N/A +2012,2,12,18,30,103190,101930,100700,67.03,0,8.96,9.55,9.67,9.74,9.77,9.8,9.8,9.81,9.790000000000001,63.31,63.43,63.53,63.620000000000005,63.7,63.77,63.83,63.9,64.02,8.35,7.61,7.34,7.1000000000000005,6.87,6.66,6.45,6.25,5.84,N/A,N/A +2012,2,12,19,30,103110,101850,100630,64.13,0,8.950000000000001,9.53,9.65,9.71,9.74,9.76,9.77,9.77,9.75,68.89,68.95,69,69.03,69.07000000000001,69.11,69.14,69.17,69.23,8.73,8.01,7.74,7.51,7.28,7.07,6.86,6.66,6.26,N/A,N/A +2012,2,12,20,30,103050,101790,100570,62.67,0,8.08,8.58,8.69,8.74,8.77,8.790000000000001,8.8,8.8,8.790000000000001,70.64,70.81,70.91,71,71.08,71.16,71.24,71.32000000000001,71.47,9.120000000000001,8.44,8.18,7.95,7.73,7.5200000000000005,7.3100000000000005,7.11,6.71,N/A,N/A +2012,2,12,21,30,102990,101740,100520,64.05,0,7.53,7.99,8.09,8.15,8.18,8.2,8.21,8.22,8.22,74.17,74.61,74.85000000000001,75.07000000000001,75.28,75.46000000000001,75.65,75.83,76.18,9.63,8.99,8.73,8.51,8.28,8.08,7.87,7.67,7.2700000000000005,N/A,N/A +2012,2,12,22,30,102920,101670,100450,62,0,7.15,7.57,7.66,7.71,7.73,7.75,7.76,7.76,7.76,76.7,76.98,77.16,77.32000000000001,77.49,77.64,77.8,77.95,78.27,10.040000000000001,9.42,9.18,8.96,8.74,8.540000000000001,8.32,8.13,7.73,N/A,N/A +2012,2,12,23,30,102820,101570,100360,62.620000000000005,0,7.99,8.51,8.620000000000001,8.68,8.72,8.74,8.75,8.76,8.76,82.05,82.12,82.17,82.22,82.27,82.31,82.37,82.42,82.52,10.59,9.97,9.72,9.5,9.28,9.08,8.870000000000001,8.67,8.27,N/A,N/A +2012,2,13,0,30,102780,101540,100330,60.08,0,7.86,8.370000000000001,8.49,8.55,8.58,8.61,8.620000000000001,8.63,8.64,89.15,89.28,89.39,89.5,89.62,89.72,89.83,89.93,90.15,11.13,10.52,10.28,10.06,9.84,9.65,9.43,9.24,8.84,N/A,N/A +2012,2,13,1,30,102740,101500,100290,63.730000000000004,0,8.2,8.78,8.93,9.02,9.08,9.120000000000001,9.15,9.18,9.21,92.82000000000001,93.4,93.69,93.92,94.14,94.32000000000001,94.5,94.66,94.95,11.6,11.01,10.77,10.55,10.33,10.13,9.92,9.72,9.32,N/A,N/A +2012,2,13,2,30,102670,101430,100230,58.83,0,8.26,8.85,9,9.09,9.14,9.18,9.22,9.24,9.290000000000001,91.97,92.18,92.45,92.74,93.04,93.31,93.62,93.9,94.47,11.98,11.41,11.18,10.96,10.74,10.55,10.34,10.14,9.75,N/A,N/A +2012,2,13,3,30,102590,101360,100160,62.35,0,9.03,9.74,9.93,10.040000000000001,10.120000000000001,10.18,10.23,10.27,10.33,97.02,97.35000000000001,97.62,97.87,98.12,98.34,98.58,98.81,99.27,12.46,11.89,11.66,11.43,11.22,11.02,10.81,10.620000000000001,10.22,N/A,N/A +2012,2,13,4,30,102510,101280,100080,66.32000000000001,0,9.57,10.35,10.56,10.68,10.76,10.82,10.86,10.89,10.94,105.04,105.31,105.48,105.63,105.77,105.89,106.03,106.15,106.39,12.9,12.33,12.1,11.89,11.67,11.47,11.26,11.06,10.66,N/A,N/A +2012,2,13,5,30,102430,101200,100010,65.7,0,9.82,10.63,10.84,10.96,11.040000000000001,11.09,11.13,11.16,11.200000000000001,110.87,110.96000000000001,111.04,111.11,111.17,111.23,111.3,111.36,111.49000000000001,13.34,12.790000000000001,12.57,12.35,12.13,11.93,11.72,11.53,11.13,N/A,N/A +2012,2,13,6,30,102380,101150,99960,70.34,0,10.01,10.86,11.08,11.21,11.290000000000001,11.36,11.4,11.44,11.49,112.18,112.35000000000001,112.48,112.61,112.75,112.87,113,113.12,113.38,13.540000000000001,13.01,12.790000000000001,12.57,12.36,12.16,11.950000000000001,11.75,11.35,N/A,N/A +2012,2,13,7,30,102330,101100,99910,76.22,5.9,10.3,11.18,11.44,11.58,11.67,11.75,11.8,11.84,11.91,107.64,108.33,108.78,109.23,109.65,110.04,110.45,110.83,111.61,13.44,12.9,12.68,12.47,12.26,12.07,11.870000000000001,11.68,11.3,N/A,N/A +2012,2,13,8,30,102220,101000,99820,72.68,0,10.03,10.9,11.15,11.290000000000001,11.39,11.46,11.51,11.55,11.61,116.79,117.41,117.8,118.15,118.47,118.76,119.05,119.31,119.83,14.25,13.76,13.55,13.33,13.120000000000001,12.93,12.72,12.530000000000001,12.13,N/A,N/A +2012,2,13,9,30,102140,100920,99740,76.71000000000001,0,10.69,11.64,11.9,12.030000000000001,12.120000000000001,12.17,12.200000000000001,12.23,12.24,125.01,124.96000000000001,124.91,124.85000000000001,124.8,124.75,124.7,124.65,124.57000000000001,14.51,14.01,13.8,13.58,13.370000000000001,13.17,12.97,12.77,12.370000000000001,N/A,N/A +2012,2,13,10,30,102070,100860,99680,79.76,0,10.75,11.76,12.05,12.22,12.34,12.43,12.5,12.55,12.63,122.2,122.51,122.7,122.88,123.04,123.19,123.34,123.47,123.73,14.92,14.46,14.25,14.030000000000001,13.83,13.63,13.42,13.23,12.84,N/A,N/A +2012,2,13,11,30,102000,100790,99610,82.92,0,10.96,11.98,12.25,12.4,12.5,12.57,12.61,12.65,12.68,121.62,121.75,121.89,122.03,122.18,122.31,122.46000000000001,122.60000000000001,122.89,15.27,14.82,14.61,14.4,14.19,14,13.790000000000001,13.6,13.21,N/A,N/A +2012,2,13,12,30,101920,100710,99540,84.62,1.8,11.26,12.370000000000001,12.69,12.870000000000001,12.99,13.07,13.13,13.18,13.24,123.15,123.4,123.58,123.78,123.96000000000001,124.14,124.34,124.52,124.92,15.69,15.27,15.07,14.86,14.67,14.48,14.27,14.09,13.700000000000001,N/A,N/A +2012,2,13,13,30,101860,100650,99480,86.25,0.4,11.01,12.23,12.6,12.83,13,13.14,13.24,13.33,13.46,127.91,128.43,128.72,128.98,129.21,129.43,129.65,129.86,130.27,16.07,15.69,15.5,15.3,15.11,14.92,14.72,14.540000000000001,14.16,N/A,N/A +2012,2,13,14,30,101780,100580,99420,83.98,0,11.1,12.27,12.620000000000001,12.83,12.98,13.09,13.17,13.24,13.33,137.25,137.6,137.87,138.14000000000001,138.39000000000001,138.61,138.85,139.06,139.51,16.92,16.61,16.44,16.240000000000002,16.05,15.860000000000001,15.67,15.49,15.1,N/A,N/A +2012,2,13,15,30,101740,100540,99380,87.9,35.9,10.59,11.68,11.99,12.18,12.31,12.41,12.48,12.530000000000001,12.620000000000001,137.9,138.21,138.33,138.46,138.59,138.70000000000002,138.82,138.94,139.20000000000002,16.69,16.36,16.19,16,15.81,15.63,15.44,15.26,14.89,N/A,N/A +2012,2,13,16,30,101650,100450,99280,92.85000000000001,7,10.5,11.57,11.88,12.07,12.200000000000001,12.3,12.36,12.41,12.47,137.49,137.57,137.64000000000001,137.73,137.83,137.94,138.07,138.19,138.5,16.91,16.59,16.42,16.22,16.03,15.85,15.66,15.48,15.11,N/A,N/A +2012,2,13,17,30,101520,100330,99170,91.94,2.6,9.26,10.36,10.72,11.01,11.26,11.47,11.67,11.86,12.23,141.55,142.06,142.36,142.66,142.97,143.26,143.6,143.9,144.43,17.330000000000002,17.06,16.89,16.71,16.52,16.34,16.15,15.98,15.610000000000001,N/A,N/A +2012,2,13,18,30,101430,100240,99080,93.59,0.4,10.36,11.76,12.33,12.81,13.22,13.57,13.9,14.200000000000001,14.75,144.35,145.34,145.98,146.67000000000002,147.28,147.87,148.46,149,150.09,17.51,17.3,17.16,17,16.84,16.69,16.52,16.37,16.05,N/A,N/A +2012,2,13,19,30,101390,100200,99050,94.89,3.7,9.02,10.32,10.86,11.33,11.75,12.13,12.5,12.85,13.52,164.87,165.72,166.19,166.70000000000002,167.17000000000002,167.62,168.07,168.5,169.34,17.8,17.62,17.5,17.35,17.21,17.07,16.93,16.79,16.51,N/A,N/A +2012,2,13,20,30,101290,100100,98950,94.18,4.800000000000001,9.700000000000001,11.16,11.78,12.32,12.780000000000001,13.21,13.63,14.01,14.780000000000001,171.38,171.55,171.74,171.93,172.11,172.28,172.46,172.63,172.97,18.150000000000002,18.03,17.92,17.78,17.650000000000002,17.51,17.36,17.23,16.95,N/A,N/A +2012,2,13,21,30,101310,100120,98970,93.12,13.600000000000001,9.07,10.64,11.33,11.97,12.52,13.040000000000001,13.52,13.96,14.77,189.37,190.09,190.28,190.37,190.42000000000002,190.43,190.44,190.43,190.45000000000002,18.47,18.43,18.36,18.240000000000002,18.13,18.01,17.89,17.77,17.5,N/A,N/A +2012,2,13,22,30,101270,100080,98930,96.13,7.7,4.9,5.8100000000000005,6.15,6.44,6.7,6.92,7.13,7.34,8.22,248.87,247.14000000000001,245.65,243.82,242.14000000000001,240.53,238.97,237.5,234.4,18.09,17.98,17.88,17.75,17.650000000000002,17.580000000000002,17.5,17.42,17.240000000000002,N/A,N/A +2012,2,13,23,30,101240,100050,98900,96.72,0,3.86,4.82,5.24,5.62,5.94,6.21,6.5,6.78,7.4,248.83,249.84,251.03,253.51000000000002,256.69,260.44,263.72,266.7,270.45,17.98,17.92,17.86,17.78,17.69,17.59,17.48,17.37,17.19,N/A,N/A +2012,2,14,0,30,101260,100070,98910,95.46000000000001,0,4.33,5.11,5.42,5.69,5.97,6.24,6.49,6.72,7.1000000000000005,266.32,267.75,268.9,270.54,272.37,274.36,277.03000000000003,279.69,285.53000000000003,17.85,17.69,17.580000000000002,17.45,17.330000000000002,17.21,17.1,17,16.72,N/A,N/A +2012,2,14,1,30,101290,100100,98950,95.04,0,4.37,5.09,5.41,5.71,6.0200000000000005,6.34,6.6000000000000005,6.83,6.99,286.69,288.62,290.49,293.65000000000003,295.97,297.7,297.93,297.69,293.87,17.650000000000002,17.5,17.39,17.25,17.11,16.96,16.8,16.66,16.39,N/A,N/A +2012,2,14,2,30,101340,100150,98990,91.53,0,4.3100000000000005,4.96,5.24,5.39,5.59,5.84,6.0200000000000005,6.16,6.24,305.95,306.5,306.88,307.26,307.69,308.18,308.08,307.82,304.92,17.39,17.150000000000002,17,16.81,16.65,16.51,16.35,16.21,15.9,N/A,N/A +2012,2,14,3,30,101360,100160,99000,89.4,0,4.0600000000000005,4.39,4.5,4.61,4.8,5.05,5.44,5.83,6.1000000000000005,290.86,290.62,290.43,290.11,289.65000000000003,289.09000000000003,287.21,285.11,282.32,17.2,16.92,16.76,16.580000000000002,16.41,16.240000000000002,16.09,15.96,15.66,N/A,N/A +2012,2,14,4,30,101370,100180,99020,91.4,0,5.33,5.72,5.8100000000000005,5.84,5.86,5.87,5.88,5.89,5.96,307.35,307.3,307.24,307.12,306.97,306.81,306.56,306.3,305.07,16.89,16.59,16.41,16.22,16.03,15.85,15.65,15.48,15.120000000000001,N/A,N/A +2012,2,14,5,30,101400,100200,99040,91.5,0,5.74,6.0600000000000005,6.1000000000000005,6.08,6.05,6.01,5.95,5.89,5.69,306.64,306.62,306.57,306.51,306.43,306.35,306.21,306.04,304.56,16.27,15.92,15.74,15.55,15.36,15.17,14.98,14.8,14.44,N/A,N/A +2012,2,14,6,30,101440,100240,99070,90.02,0,4.83,5.0600000000000005,5.09,5.07,5.04,5.01,4.96,4.92,4.82,296.82,296.98,297.13,297.3,297.46,297.63,297.83,298,298.2,15.860000000000001,15.51,15.33,15.13,14.94,14.76,14.57,14.39,14.030000000000001,N/A,N/A +2012,2,14,7,30,101460,100260,99090,91.52,0,4.73,4.97,5,5,4.98,4.96,4.93,4.89,4.7700000000000005,302.28000000000003,302.91,303.33,303.8,304.29,304.78000000000003,305.45,306.17,310,15.75,15.4,15.22,15.030000000000001,14.83,14.65,14.450000000000001,14.27,13.91,N/A,N/A +2012,2,14,8,30,101470,100270,99100,89.54,0,3.1,3.2,3.19,3.16,3.13,3.09,3.0500000000000003,3,2.84,308.99,308.87,308.74,308.61,308.48,308.35,308.2,308.07,307.82,15.620000000000001,15.290000000000001,15.11,14.91,14.72,14.540000000000001,14.34,14.16,13.790000000000001,N/A,N/A +2012,2,14,9,30,101480,100270,99100,90.78,0,2.37,2.4,2.38,2.35,2.31,2.2600000000000002,2.21,2.15,1.97,308.46,307.32,306.52,305.63,304.64,303.66,302.23,300.74,294.90000000000003,15.36,15.02,14.83,14.63,14.44,14.25,14.040000000000001,13.85,13.46,N/A,N/A +2012,2,14,10,30,101500,100300,99130,89.89,0,1.09,1.07,1.04,1.01,0.97,0.9400000000000001,0.9,0.86,0.77,340.61,339.54,338.44,337.2,335.81,334.38,332.23,330.02,320.82,15.3,14.97,14.8,14.6,14.41,14.22,14.030000000000001,13.84,13.47,N/A,N/A +2012,2,14,11,30,101540,100330,99160,91.17,0,1.3800000000000001,1.28,1.2,1.12,1.06,1,0.9400000000000001,0.89,0.81,123.47,124.17,124.78,125.76,127.23,128.84,131.65,134.52,144.25,15.21,14.86,14.67,14.46,14.26,14.06,13.84,13.64,13.22,N/A,N/A +2012,2,14,12,30,101560,100350,99180,93.36,0,2.37,2.3000000000000003,2.22,2.14,2.09,2.06,2.05,2.06,2.21,76.53,82.52,86.93,92.2,97.89,103.57000000000001,110.58,117.38,135.05,14.75,14.39,14.22,14.02,13.84,13.66,13.48,13.31,13.09,N/A,N/A +2012,2,14,13,30,101580,100370,99200,92.96000000000001,0,2.09,2.14,2.15,2.16,2.19,2.23,2.29,2.36,2.47,87.26,93.74,98.03,102.93,107.93,112.83,118.09,123.09,135.91,14.9,14.56,14.38,14.19,14,13.82,13.63,13.47,13.23,N/A,N/A +2012,2,14,14,30,101600,100400,99220,92.05,0,3.04,3.16,3.18,3.18,3.19,3.19,3.2,3.2,3.21,148.14000000000001,147.95000000000002,147.96,147.93,147.86,147.79,147.74,147.70000000000002,147.65,15.13,14.76,14.58,14.38,14.19,14,13.8,13.620000000000001,13.26,N/A,N/A +2012,2,14,15,30,101620,100410,99240,92.07000000000001,0,2.85,2.96,2.97,2.98,2.98,2.99,3,3.0100000000000002,3.0700000000000003,97.22,100.31,102.32000000000001,104.43,106.52,108.52,110.81,112.99000000000001,118.7,15.030000000000001,14.67,14.49,14.290000000000001,14.1,13.92,13.73,13.55,13.200000000000001,N/A,N/A +2012,2,14,16,30,101610,100400,99230,93.59,0,3.02,3.12,3.12,3.1,3.08,3.06,3.0300000000000002,3.02,2.97,94.49,96.14,97.31,98.52,99.73,100.89,102.21000000000001,103.33,108.69,15.17,14.81,14.63,14.43,14.24,14.06,13.86,13.68,13.41,N/A,N/A +2012,2,14,17,30,101600,100390,99220,92.72,0,3.99,4.1,4.07,4.01,3.94,3.87,3.79,3.71,3.52,102.31,103.42,104.24000000000001,105.12,106.06,106.98,108.18,109.37,112.47,15.35,14.98,14.8,14.61,14.42,14.24,14.040000000000001,13.870000000000001,13.51,N/A,N/A +2012,2,14,18,30,101590,100390,99220,92.8,0,3.73,3.85,3.85,3.8200000000000003,3.79,3.7600000000000002,3.73,3.71,3.84,101.73,103.43,104.75,106.21000000000001,107.83,109.47,111.86,114.33,123.06,15.530000000000001,15.18,15,14.81,14.620000000000001,14.44,14.25,14.07,13.73,N/A,N/A +2012,2,14,19,30,101580,100380,99210,93.68,0,3.8200000000000003,4.05,4.12,4.16,4.19,4.22,4.26,4.29,4.45,98.64,99.93,100.79,101.69,102.60000000000001,103.48,104.55,105.61,110.17,15.69,15.34,15.16,14.96,14.77,14.59,14.39,14.21,13.93,N/A,N/A +2012,2,14,20,30,101550,100350,99180,93.9,0,4.39,4.7,4.78,4.83,4.88,4.91,4.94,4.97,5.08,100.12,101.17,101.7,102.2,102.67,103.12,103.57000000000001,103.97,105.89,16.12,15.780000000000001,15.6,15.4,15.21,15.030000000000001,14.83,14.66,14.36,N/A,N/A +2012,2,14,21,30,101530,100320,99160,92.91,0,4.42,4.66,4.72,4.74,4.78,4.82,4.93,5.0600000000000005,5.62,100.71000000000001,101.57000000000001,102.37,103.41,104.87,106.45,109.22,112.21000000000001,122.2,15.860000000000001,15.5,15.32,15.13,14.94,14.76,14.58,14.42,14.17,N/A,N/A +2012,2,14,22,30,101520,100320,99160,93.15,0,6.0600000000000005,6.46,6.53,6.53,6.51,6.48,6.42,6.3500000000000005,6.15,100.4,101.48,102.13,102.8,103.49000000000001,104.18,105.09,106,108.94,16.14,15.8,15.620000000000001,15.43,15.24,15.05,14.86,14.68,14.33,N/A,N/A +2012,2,14,23,30,101510,100310,99140,95.61,0,6.2,6.58,6.65,6.66,6.66,6.66,6.69,6.73,6.92,96.44,97.14,97.58,98.06,98.58,99.09,99.76,101.74000000000001,121.24000000000001,15.97,15.610000000000001,15.43,15.25,15.06,14.88,14.71,14.59,14.56,N/A,N/A +2012,2,15,0,30,101510,100310,99140,94.79,0,6.890000000000001,7.32,7.390000000000001,7.38,7.3500000000000005,7.3100000000000005,7.28,7.26,7.3500000000000005,104.15,104.71000000000001,105.07000000000001,105.52,106.16,106.85000000000001,108.28,110.38,122.14,16.25,15.91,15.73,15.540000000000001,15.36,15.18,15,14.85,14.71,N/A,N/A +2012,2,15,1,30,101530,100330,99170,94.18,0,5.88,6.2700000000000005,6.34,6.36,6.41,6.47,6.58,6.71,7.1000000000000005,106.36,107.31,108.15,109.33,111.72,114.69,119.43,123.99000000000001,131.08,16.7,16.4,16.23,16.05,15.88,15.72,15.56,15.42,15.1,N/A,N/A +2012,2,15,2,30,101540,100340,99180,95.63,0,6.1000000000000005,6.55,6.640000000000001,6.69,6.71,6.72,7.0200000000000005,7.32,7.69,113.41,113.79,114.10000000000001,114.43,114.77,115.10000000000001,117.7,120.42,124.8,16.7,16.4,16.22,16.03,15.83,15.65,15.530000000000001,15.43,15.280000000000001,N/A,N/A +2012,2,15,3,30,101530,100330,99170,96.91,0,6.47,7.390000000000001,7.78,8.15,8.48,8.78,9.09,9.39,10.02,113.77,115.95,117.46000000000001,119.21000000000001,120.8,122.27,123.72,125.09,128.26,17.06,16.81,16.69,16.57,16.47,16.37,16.27,16.19,16.080000000000002,N/A,N/A +2012,2,15,4,30,101520,100330,99170,97.12,0.4,6.87,7.83,8.22,8.59,8.93,9.25,9.58,9.9,10.74,115.48,116.28,116.9,117.75,118.74000000000001,119.83,121.46000000000001,123.18,129.97,17.5,17.3,17.18,17.05,16.93,16.830000000000002,16.77,16.740000000000002,16.78,N/A,N/A +2012,2,15,5,30,101490,100300,99150,97.04,0,7.7700000000000005,8.94,9.43,9.92,10.43,10.950000000000001,11.41,11.8,11.69,119.69,120.5,121.27,122.48,124.47,126.95,132.03,137.3,146.34,17.71,17.57,17.490000000000002,17.42,17.39,17.39,17.57,17.77,18.080000000000002,N/A,N/A +2012,2,15,6,30,101510,100320,99170,96.17,0,7.36,8.69,9.25,9.82,10.39,10.94,11.56,12.15,13.14,130.03,130.47,130.87,131.49,132.36,133.36,135.16,137.12,145.3,17.82,17.72,17.66,17.61,17.56,17.52,17.47,17.44,17.64,N/A,N/A +2012,2,15,7,30,101540,100350,99200,95.19,0,7.53,9.01,9.68,10.38,11.07,11.75,12.38,12.98,13.61,130.21,130.94,131.62,132.66,134,135.56,137.94,140.34,149.82,18.02,18,17.98,17.97,17.98,17.990000000000002,18,18.02,17.98,N/A,N/A +2012,2,15,8,30,101510,100320,99170,93.93,0,6.92,8.66,9.49,10.32,10.97,11.51,11.94,12.31,13.120000000000001,139.59,141.24,142.56,144.24,146.1,148.05,150.01,151.83,154.61,18.28,18.35,18.37,18.41,18.43,18.43,18.41,18.38,18.28,N/A,N/A +2012,2,15,9,30,101480,100300,99150,93.52,5.5,6.75,8.44,9.24,10.1,10.83,11.46,11.86,12.17,12.51,134.23,136.4,138.07,140.32,142.65,145.02,147.52,149.87,155.84,18.39,18.46,18.48,18.51,18.51,18.5,18.45,18.400000000000002,18.25,N/A,N/A +2012,2,15,10,30,101490,100300,99160,92.72,0,6.6000000000000005,8.35,9.14,9.92,10.55,11.1,11.58,12.01,12.780000000000001,144.44,146.93,148.64000000000001,150.45000000000002,151.52,152.06,153.07,154.15,165.35,18.57,18.72,18.76,18.82,18.84,18.85,18.85,18.84,18.92,N/A,N/A +2012,2,15,11,30,101480,100300,99150,91.56,0,6.37,8.38,9.44,10.57,11.43,12.08,12.33,12.44,13.08,142.58,144.97,147.01,149.63,153.26,157.81,163.42000000000002,168.89000000000001,175.3,18.830000000000002,19.09,19.2,19.3,19.37,19.400000000000002,19.47,19.54,19.59,N/A,N/A +2012,2,15,12,30,101470,100280,99140,92.35000000000001,0,5.99,8.06,9.120000000000001,10.15,10.97,11.66,12.31,12.92,13.790000000000001,127.47,132.85,136.35,138.97,141.48,143.92000000000002,147.85,152.03,160.05,18.66,18.98,19.12,19.19,19.23,19.26,19.3,19.330000000000002,19.400000000000002,N/A,N/A +2012,2,15,13,30,101470,100290,99140,92.05,0.4,5.0600000000000005,6.84,7.66,8.51,9.13,9.58,10.6,11.8,13.34,138.37,139.99,141.64000000000001,144.51,147.48,150.51,154.35,158.44,164.09,18.81,19.03,19.1,19.19,19.25,19.28,19.3,19.31,19.22,N/A,N/A +2012,2,15,14,30,101480,100300,99160,91.38,0.4,5.73,7.73,8.67,9.620000000000001,10.41,11.11,11.78,12.41,13.16,137.81,141.94,145.31,149.96,153.74,156.93,159.45000000000002,161.65,165,18.94,19.240000000000002,19.31,19.28,19.3,19.36,19.38,19.39,19.43,N/A,N/A +2012,2,15,15,30,101500,100320,99180,91.26,0,5.36,7.4,8.45,9.41,10.23,10.96,11.6,12.18,13.67,138.18,142.21,145.02,146.86,148.42000000000002,149.8,152.37,155.31,164.52,18.990000000000002,19.35,19.48,19.580000000000002,19.62,19.61,19.6,19.59,19.62,N/A,N/A +2012,2,15,16,30,101470,100290,99150,90.41,0,5.61,7.68,8.59,9.38,10,10.5,11.03,11.53,13.13,145.08,146.20000000000002,147.1,148.14000000000001,148.79,149.16,149.19,149.13,156.68,19.25,19.52,19.59,19.650000000000002,19.67,19.67,19.66,19.63,19.48,N/A,N/A +2012,2,15,17,30,101470,100290,99150,89.59,3.7,6.63,8.96,10.07,10.9,11.57,12.120000000000001,12.67,13.21,14.58,146.66,149.79,151.86,153.34,154.07,154.20000000000002,154.5,154.85,158.76,19.400000000000002,19.67,19.73,19.75,19.75,19.72,19.650000000000002,19.57,19.28,N/A,N/A +2012,2,15,18,30,101450,100270,99130,90.89,0,5.15,7.5,8.700000000000001,9.9,10.89,11.73,12.41,13.01,13.91,132.94,137.6,140.9,144,146.94,149.74,153.1,156.41,162.56,19.26,19.650000000000002,19.78,19.87,19.900000000000002,19.900000000000002,19.78,19.66,19.5,N/A,N/A +2012,2,15,19,30,101430,100250,99110,90.84,0,5.34,7.53,8.620000000000001,9.74,10.76,11.700000000000001,12.48,13.17,14.23,138.02,142.1,145.14000000000001,148.38,151.35,154.16,156.38,158.31,163.86,19.25,19.62,19.740000000000002,19.830000000000002,19.87,19.89,19.86,19.81,19.580000000000002,N/A,N/A +2012,2,15,20,30,101400,100220,99080,90.65,0,5.25,7.42,8.48,9.52,10.44,11.290000000000001,12.030000000000001,12.69,13.82,150.42000000000002,152.56,154.27,156.36,158.39000000000001,160.41,162.18,163.78,172.39000000000001,19.29,19.69,19.82,19.900000000000002,19.91,19.89,19.81,19.72,19.78,N/A,N/A +2012,2,15,21,30,101410,100230,99090,91.22,0,4.25,6.38,7.45,8.55,9.49,10.290000000000001,11.21,12.14,12.63,150.96,155,157.95000000000002,160.54,162.69,164.49,168.65,173.52,178.48,19.25,19.67,19.8,19.88,19.92,19.94,19.98,20.02,20.02,N/A,N/A +2012,2,15,22,30,101390,100210,99070,92.16,0.4,3.86,6,6.98,7.9,9.06,10.46,11.01,11.28,11.72,150.06,155.48,159.32,162.95000000000002,168.76,176.53,179.87,181.63,185.35,19.07,19.57,19.740000000000002,19.88,20.06,20.26,20.31,20.32,20.330000000000002,N/A,N/A +2012,2,15,23,30,101400,100220,99080,92.45,0,3.65,5.8500000000000005,7.04,8.43,9.450000000000001,10.16,10.620000000000001,10.97,11.24,157.41,162.78,167.59,174.45000000000002,179.8,183.82,187.15,190.03,194.31,18.97,19.56,19.830000000000002,20.150000000000002,20.34,20.44,20.53,20.62,20.71,N/A,N/A +2012,2,16,0,30,101410,100230,99090,91.21000000000001,0.4,4.45,6.8100000000000005,8.01,9.28,10.15,10.66,10.75,10.69,10.65,168.51,173.94,178.14000000000001,183.17000000000002,189.56,196.92000000000002,200.14000000000001,201.81,205.77,19.150000000000002,19.830000000000002,20.12,20.39,20.580000000000002,20.71,20.81,20.89,21.12,N/A,N/A +2012,2,16,1,30,101460,100280,99140,92.34,0,3.37,5.74,6.98,8.23,8.790000000000001,8.78,8.82,8.870000000000001,8.93,174.65,177.96,182.69,192.55,198.44,200.85,202.91,204.72,207.76,19.11,19.84,20.14,20.44,20.56,20.57,20.52,20.46,20.35,N/A,N/A +2012,2,16,2,30,101500,100320,99180,92.64,0.4,3.18,5.79,7,7.57,7.83,7.86,7.890000000000001,7.92,7.98,186.91,188.87,193.22,203.87,209.58,211.44,213.22,214.84,218.83,19.09,19.97,20.34,20.63,20.75,20.740000000000002,20.7,20.64,20.59,N/A,N/A +2012,2,16,3,30,101550,100370,99230,91.91,0,3.38,5.79,6.59,6.61,6.58,6.5200000000000005,6.49,6.48,6.49,196.47,201.65,208.85,222.89000000000001,229.8,231.72,233.43,234.94,238.84,19.330000000000002,20.29,20.6,20.71,20.740000000000002,20.7,20.64,20.59,20.5,N/A,N/A +2012,2,16,4,30,101580,100400,99260,92.48,0.4,2.63,3.81,4.14,4.38,4.59,4.79,4.97,5.13,5.39,248.23000000000002,252.05,254.93,258.51,261.28000000000003,263.54,264.61,265.29,265.9,19.14,19.66,19.8,19.900000000000002,19.96,20,20,19.990000000000002,19.900000000000002,N/A,N/A +2012,2,16,5,30,101600,100420,99280,92.66,0.4,2.58,3.62,3.79,3.77,3.7,3.6,3.5300000000000002,3.47,3.59,266.41,272.29,275.81,277.96,280.18,282.47,284.05,285.29,285.81,19.13,19.84,20.02,20.03,20.05,20.09,20.16,20.240000000000002,20.25,N/A,N/A +2012,2,16,6,30,101650,100470,99330,93.4,0,3.15,4.17,4.3500000000000005,4.58,4.83,5.08,5.34,5.58,6.08,292.82,303.23,309.08,313.69,316.97,319.39,321.02,322.36,324.51,19.06,19.59,19.75,19.82,19.85,19.86,19.830000000000002,19.8,19.77,N/A,N/A +2012,2,16,7,30,101690,100510,99370,93.19,0,2.77,4.13,4.44,4.51,4.58,4.66,4.78,4.9,5.22,321.68,327.97,331.85,335.13,337.76,339.99,341.7,343.16,344.48,19.17,19.6,19.64,19.53,19.69,20.03,20.23,20.38,20.150000000000002,N/A,N/A +2012,2,16,8,30,101740,100550,99400,93.28,0,3.59,4.72,4.98,5.14,5.19,5.18,5.51,5.91,6.640000000000001,333.27,340.43,345.57,351.09000000000003,354.35,356.05,356.49,356.58,353.96,18.900000000000002,19.150000000000002,19.11,18.88,18.64,18.39,18.52,18.72,19.95,N/A,N/A +2012,2,16,9,30,101770,100570,99420,96.04,0,3.73,4.8500000000000005,5.33,5.74,6.11,6.44,6.63,6.7700000000000005,7.03,347.04,349.65000000000003,351.91,354.90000000000003,356.76,357.85,358.6,359.23,0.15,18.12,17.96,17.76,17.42,17.35,17.45,18.28,19.2,20,N/A,N/A +2012,2,16,10,30,101800,100600,99450,99.16,0,4.08,4.83,5.26,5.8,6.28,6.74,6.96,7.12,7.6000000000000005,354.43,359.27,3.86,10.89,14.59,16.27,16.080000000000002,15.52,12.76,17.43,17.330000000000002,17.29,17.240000000000002,16.87,16.35,17.39,18.56,19.96,N/A,N/A +2012,2,16,11,30,101840,100640,99480,99.21000000000001,0,4.13,4.69,4.95,5.28,5.78,6.4,6.8500000000000005,7.25,8.18,5.93,9.9,12.46,15,17.740000000000002,20.67,22.95,24.82,24.16,17.42,17.32,17.27,17.19,16.96,16.66,16.32,16.12,18.28,N/A,N/A +2012,2,16,12,30,101870,100670,99510,99.26,0,5.51,5.82,5.97,6.25,6.78,7.43,7.930000000000001,8.38,9.120000000000001,14.69,15.24,16.26,18.330000000000002,20.98,23.98,26.17,27.92,28.2,16.51,16.23,16.080000000000002,15.89,16.1,16.490000000000002,17.6,18.67,19.84,N/A,N/A +2012,2,16,13,30,101930,100730,99560,99.23,0,5.15,5.37,5.41,5.48,5.91,6.57,7,7.390000000000001,8.17,26.82,26.77,26.77,26.830000000000002,28.080000000000002,30.04,31.67,33.04,34.19,16,15.68,15.52,15.32,15.34,15.46,16,16.55,17.75,N/A,N/A +2012,2,16,14,30,102000,100790,99630,99.23,0,4.96,5.19,5.22,5.21,5.23,5.26,6.19,7.21,8.14,25.27,26.75,27.830000000000002,29.16,31.17,33.36,37.33,41.18,42.31,16.1,15.82,15.69,15.55,15.33,15.08,15.36,15.76,17.19,N/A,N/A +2012,2,16,15,30,102010,100800,99630,98.52,0,5.44,5.71,5.74,5.75,5.9,6.11,6.86,7.57,8.28,19.37,19.62,19.92,20.38,22.13,24.32,30.54,36.09,39.17,15.63,15.26,15.09,14.94,14.74,14.55,15.3,16.01,17.12,N/A,N/A +2012,2,16,16,30,102030,100820,99650,96.89,0,4.89,5.16,5.25,5.36,5.87,6.59,7.140000000000001,7.62,8.32,26.42,26.73,27.18,27.93,30.35,33.65,36.02,38.11,41.53,15.77,15.43,15.26,15.09,15.01,14.98,15.18,15.43,16.26,N/A,N/A +2012,2,16,17,30,102010,100810,99640,93.12,0,5.76,6.13,6.24,6.38,6.8100000000000005,7.390000000000001,7.86,8.28,8.92,38.65,39.050000000000004,39.45,40.11,41.36,42.910000000000004,43.86,44.61,45.29,16.29,15.96,15.8,15.64,15.540000000000001,15.48,15.55,15.66,16.12,N/A,N/A +2012,2,16,18,30,102000,100790,99630,90.94,0,5.0200000000000005,5.33,5.4,5.48,6.03,6.88,7.28,7.6000000000000005,8.22,64.09,63.9,63.61,63.22,61.46,58.86,57.15,55.67,52.97,16.79,16.48,16.32,16.15,16.07,16.05,16.06,16.09,16.330000000000002,N/A,N/A +2012,2,16,19,30,102000,100790,99630,89.44,0,4.51,4.83,5.16,5.88,6.38,6.74,7.05,7.32,7.9,47.980000000000004,48.120000000000005,48.28,48.46,47.59,46.19,44.63,43.25,41.94,17.1,16.830000000000002,16.73,16.68,16.79,16.97,17.11,17.240000000000002,17.44,N/A,N/A +2012,2,16,20,30,101960,100760,99600,86.06,0,3.18,4.12,4.64,5.07,5.51,5.95,6.3500000000000005,6.71,7.33,64.47,62.83,61.85,60.870000000000005,59.79,58.660000000000004,57.54,56.49,54.58,17.47,17.37,17.39,17.490000000000002,17.650000000000002,17.830000000000002,17.96,18.06,18.18,N/A,N/A +2012,2,16,21,30,101980,100780,99620,83.39,0,1.76,1.97,2.21,2.82,3.29,3.62,3.94,4.25,4.7700000000000005,116.3,119.29,116.42,102.81,94.7,91,87.63,84.47,78.16,17.87,17.56,17.47,17.54,17.56,17.54,17.53,17.53,17.54,N/A,N/A +2012,2,16,22,30,101900,100710,99550,85.37,0,3.87,4.59,4.98,5.51,5.82,6.01,6.17,6.3100000000000005,6.47,101.63,99.5,97.31,93.52,90.67,88.46000000000001,86.43,84.58,80.84,17.84,17.73,17.71,17.740000000000002,17.77,17.79,17.900000000000002,18.01,18.05,N/A,N/A +2012,2,16,23,30,101910,100710,99560,88.58,0,3.13,4.22,4.8500000000000005,5.54,6.05,6.44,6.63,6.78,6.92,77.14,80.24,82.34,84.07000000000001,84.27,83.63,82.05,80.42,76.24,17.86,17.85,17.85,17.89,17.95,18.01,18.09,18.16,18.32,N/A,N/A +2012,2,17,0,30,101940,100740,99590,91.66,0,1.95,3.14,3.83,4.51,4.98,5.3100000000000005,5.63,5.92,6.3500000000000005,42.45,59,68.60000000000001,72.8,74.67,75.17,74.82000000000001,74.31,72.36,17.71,17.87,17.97,18.06,18.17,18.29,18.490000000000002,18.68,18.93,N/A,N/A +2012,2,17,1,30,101970,100770,99610,92.32000000000001,0,1.79,2.24,2.35,2.54,2.7600000000000002,3,3.2800000000000002,3.56,4.11,5.68,23.31,33.77,42.47,49.2,54.86,58.89,62.36,66.57000000000001,17.79,17.85,17.88,17.900000000000002,17.92,17.95,17.98,18.02,18.09,N/A,N/A +2012,2,17,2,30,101960,100770,99610,90.07000000000001,0,2.48,3.31,3.63,3.81,4.01,4.22,4.44,4.65,5.08,43.71,54.06,60,63.61,66.84,69.85000000000001,72.47,74.81,78.66,17.72,17.86,17.91,17.900000000000002,17.89,17.89,17.87,17.85,17.81,N/A,N/A +2012,2,17,3,30,101950,100750,99590,90.69,0,2.92,3.58,3.9,4.2,4.39,4.5,4.64,4.7700000000000005,5.11,30.92,35.72,40.68,48.44,53.44,56.65,59.620000000000005,62.300000000000004,67.1,17.6,17.57,17.6,17.69,17.71,17.7,17.66,17.62,17.54,N/A,N/A +2012,2,17,4,30,101880,100680,99520,89.74,0,4.0600000000000005,4.73,5.07,5.47,5.7700000000000005,6.01,6.2,6.37,6.78,54.17,55.24,57.47,62.31,66.58,70.39,72.67,74.52,77.67,17.56,17.46,17.45,17.51,17.53,17.54,17.51,17.47,17.36,N/A,N/A +2012,2,17,5,30,101880,100680,99520,91.08,0.7000000000000001,3.5300000000000002,4.16,4.49,4.8100000000000005,5.13,5.45,5.73,5.98,6.2700000000000005,41.51,47.63,52.24,57.75,62.22,66.08,68.78,71.06,74.35000000000001,17.35,17.23,17.2,17.19,17.18,17.17,17.11,17.04,16.75,N/A,N/A +2012,2,17,6,30,101860,100660,99500,87.63,0,4.25,4.9,5.24,5.66,6.03,6.38,6.61,6.8100000000000005,7.0600000000000005,46.2,50.35,53.85,58.61,63.7,68.68,71.09,72.79,73.31,17.52,17.35,17.27,17.23,17.21,17.19,17.080000000000002,16.95,16.6,N/A,N/A +2012,2,17,7,30,101840,100640,99470,87.98,0,6.6000000000000005,7.09,7.22,7.34,7.62,7.96,8.19,8.31,7.76,74.46000000000001,74.45,74.45,74.43,74.37,74.28,73.98,73.63,72.59,16.79,16.490000000000002,16.32,16.15,16.01,15.89,15.870000000000001,15.860000000000001,15.790000000000001,N/A,N/A +2012,2,17,8,30,101820,100610,99450,85.99,0,7.63,8.2,8.31,8.35,8.370000000000001,8.370000000000001,8.38,8.42,8.69,64.69,64.9,65.05,65.22,65.44,65.66,66.06,66.67,71.19,16.61,16.28,16.11,15.91,15.73,15.55,15.36,15.19,15,N/A,N/A +2012,2,17,9,30,101800,100600,99430,90.23,0,7.07,7.61,7.73,7.78,7.8,7.82,7.83,7.8500000000000005,8.08,62.39,62.660000000000004,62.85,63.08,63.34,63.6,63.980000000000004,64.38,66.51,16.57,16.23,16.05,15.860000000000001,15.67,15.49,15.3,15.120000000000001,14.780000000000001,N/A,N/A +2012,2,17,10,30,101790,100590,99420,87.98,0,7.5200000000000005,8.14,8.290000000000001,8.35,8.39,8.4,8.41,8.41,8.44,64.26,64.43,64.54,64.68,64.83,64.99,65.22,65.44,66.17,16.69,16.37,16.19,15.99,15.8,15.620000000000001,15.42,15.24,14.870000000000001,N/A,N/A +2012,2,17,11,30,101780,100570,99410,86.36,0,8.040000000000001,8.700000000000001,8.85,8.91,8.94,8.96,8.96,8.96,8.98,69.03,69.19,69.32000000000001,69.46000000000001,69.61,69.76,69.96000000000001,70.16,70.82000000000001,16.61,16.28,16.1,15.9,15.71,15.530000000000001,15.33,15.15,14.780000000000001,N/A,N/A +2012,2,17,12,30,101770,100570,99400,86.38,0.4,7.8500000000000005,8.51,8.67,8.74,8.77,8.790000000000001,8.790000000000001,8.790000000000001,8.78,69.5,69.73,69.89,70.07000000000001,70.27,70.46000000000001,70.72,70.97,71.7,16.5,16.16,15.98,15.790000000000001,15.59,15.41,15.21,15.030000000000001,14.66,N/A,N/A +2012,2,17,13,30,101770,100570,99400,87.32000000000001,0,7.98,8.620000000000001,8.75,8.8,8.82,8.83,8.82,8.8,8.78,64.95,65.24,65.43,65.62,65.82000000000001,66.01,66.26,66.51,67.26,16.4,16.05,15.870000000000001,15.67,15.48,15.290000000000001,15.1,14.92,14.540000000000001,N/A,N/A +2012,2,17,14,30,101790,100590,99420,88.04,0,7.84,8.46,8.61,8.67,8.69,8.71,8.700000000000001,8.69,8.68,74.75,75.02,75.19,75.37,75.57000000000001,75.77,76.03,76.29,77.07000000000001,16.4,16.05,15.870000000000001,15.68,15.48,15.3,15.1,14.92,14.55,N/A,N/A +2012,2,17,15,30,101800,100600,99430,88.42,0,7.33,7.9,8.02,8.08,8.1,8.1,8.1,8.09,8.08,74.12,74.35000000000001,74.54,74.74,74.95,75.14,75.4,75.65,76.44,16.5,16.16,15.98,15.780000000000001,15.59,15.41,15.21,15.030000000000001,14.65,N/A,N/A +2012,2,17,16,30,101770,100570,99400,89.53,0,7.25,7.79,7.9,7.930000000000001,7.94,7.94,7.930000000000001,7.930000000000001,7.96,79.62,79.85000000000001,80.03,80.22,80.43,80.65,80.98,81.34,83.65,16.51,16.18,16,15.8,15.610000000000001,15.43,15.24,15.06,14.75,N/A,N/A +2012,2,17,17,30,101760,100560,99390,90.69,0,6.87,7.4,7.5200000000000005,7.57,7.6000000000000005,7.61,7.61,7.61,7.61,72.71000000000001,73.06,73.32000000000001,73.59,73.86,74.13,74.44,74.74,75.60000000000001,16.6,16.27,16.09,15.89,15.700000000000001,15.52,15.32,15.14,14.76,N/A,N/A +2012,2,17,18,30,101730,100530,99360,91.04,0,7.62,8.22,8.36,8.41,8.44,8.44,8.44,8.42,8.38,67.43,67.84,68.11,68.41,68.71000000000001,69,69.35000000000001,69.69,70.58,16.56,16.22,16.04,15.84,15.65,15.47,15.27,15.09,14.71,N/A,N/A +2012,2,17,19,30,101730,100530,99360,91.09,0,7.44,8.02,8.15,8.2,8.22,8.22,8.21,8.19,8.14,68.14,68.53,68.79,69.07000000000001,69.35000000000001,69.63,69.97,70.31,71.31,16.55,16.21,16.03,15.83,15.64,15.46,15.26,15.08,14.700000000000001,N/A,N/A +2012,2,17,20,30,101690,100490,99320,91.24,0,7.68,8.25,8.35,8.370000000000001,8.370000000000001,8.34,8.3,8.27,8.18,64.83,65.21000000000001,65.54,65.9,66.28,66.67,67.18,67.71000000000001,69.57000000000001,16.32,15.97,15.790000000000001,15.59,15.4,15.22,15.030000000000001,14.85,14.49,N/A,N/A +2012,2,17,21,30,101660,100460,99290,88.94,0,7.3100000000000005,7.8500000000000005,7.96,7.99,8,7.99,7.97,7.96,7.930000000000001,66.51,66.69,66.78,66.89,67.02,67.16,67.39,67.64,69.35000000000001,16.35,16,15.82,15.620000000000001,15.43,15.25,15.05,14.870000000000001,14.5,N/A,N/A +2012,2,17,22,30,101630,100420,99260,88.83,0,7.43,7.95,8.05,8.08,8.09,8.08,8.06,8.040000000000001,8.040000000000001,69.34,69.53,69.7,69.89,70.09,70.31,70.63,70.96000000000001,72.51,16.39,16.04,15.860000000000001,15.67,15.47,15.290000000000001,15.1,14.91,14.540000000000001,N/A,N/A +2012,2,17,23,30,101600,100390,99230,89.57000000000001,0,7.5,8.06,8.16,8.2,8.2,8.19,8.17,8.15,8.11,65.84,66.14,66.35,66.56,66.81,67.05,67.43,67.84,69.99,16.46,16.11,15.94,15.74,15.55,15.370000000000001,15.17,15,14.65,N/A,N/A +2012,2,18,0,30,101610,100410,99250,89.55,0,7.5,8.07,8.17,8.2,8.21,8.21,8.21,8.21,8.2,67.73,67.93,68.06,68.22,68.44,68.67,69.10000000000001,69.64,73.27,16.59,16.26,16.080000000000002,15.89,15.700000000000001,15.52,15.32,15.15,14.88,N/A,N/A +2012,2,18,1,30,101630,100430,99260,90.11,0,7.04,7.57,7.67,7.7,7.72,7.72,7.74,7.7700000000000005,7.94,62.74,63.11,63.35,63.63,63.96,64.3,64.95,65.74,70.68,16.7,16.38,16.2,16.01,15.82,15.64,15.46,15.290000000000001,15.05,N/A,N/A +2012,2,18,2,30,101600,100400,99230,90.31,0,7.26,7.8,7.91,7.95,7.99,8.01,8.120000000000001,8.25,8.620000000000001,74.94,75.19,75.39,75.67,76.05,76.48,77.49,78.71000000000001,84.93,16.77,16.45,16.28,16.09,15.91,15.73,15.56,15.41,15.34,N/A,N/A +2012,2,18,3,30,101540,100350,99180,91.15,0,7.18,7.72,7.82,7.87,7.91,7.94,8.040000000000001,8.18,8.790000000000001,75.91,76.28,76.52,76.85000000000001,77.27,77.72,78.64,79.96000000000001,88.03,16.81,16.5,16.330000000000002,16.14,15.950000000000001,15.780000000000001,15.59,15.43,15.32,N/A,N/A +2012,2,18,4,30,101480,100290,99130,92.32000000000001,0,7.04,7.6000000000000005,7.73,7.83,7.97,8.120000000000001,8.5,8.85,9.120000000000001,78.25,78.74,79.16,79.69,80.54,81.5,84.27,87.02,91.56,16.85,16.55,16.38,16.19,16.02,15.860000000000001,15.72,15.620000000000001,15.540000000000001,N/A,N/A +2012,2,18,5,30,101430,100240,99080,93.34,0,6.67,7.2,7.3500000000000005,7.48,7.8,8.22,8.58,8.89,9.28,82.08,82.67,83.15,83.86,85.41,87.43,89.77,91.97,95.85000000000001,16.91,16.62,16.46,16.28,16.12,15.98,15.88,15.8,15.73,N/A,N/A +2012,2,18,6,30,101380,100190,99030,93.96000000000001,0,6.6000000000000005,7.26,7.58,8.07,8.44,8.73,9.02,9.28,9.69,91.57000000000001,92.32000000000001,93.05,94.26,95.7,97.24000000000001,98.92,100.5,103.65,17.080000000000002,16.81,16.66,16.5,16.35,16.21,16.1,16.01,15.8,N/A,N/A +2012,2,18,7,30,101310,100120,98960,94.9,0,6.46,7.3500000000000005,7.71,8,8.26,8.5,8.74,8.96,9.39,89.84,90.85000000000001,91.62,92.52,93.72,95.05,96.99000000000001,98.96000000000001,104.18,17.26,17.01,16.87,16.7,16.54,16.39,16.26,16.15,16.05,N/A,N/A +2012,2,18,8,30,101220,100030,98880,95.88,0,6.78,7.6000000000000005,7.92,8.2,8.47,8.73,9.03,9.31,9.83,82.39,83.14,83.81,84.82000000000001,86.31,88.09,91.41,94.96000000000001,105.44,17.28,17.04,16.9,16.740000000000002,16.61,16.5,16.47,16.46,16.54,N/A,N/A +2012,2,18,9,30,101140,99950,98800,96.41,0,7.18,8.03,8.35,8.63,8.91,9.17,9.49,9.81,10.67,85.10000000000001,85.99,86.61,87.46000000000001,88.53,89.73,91.55,93.41,100.58,17.36,17.13,16.990000000000002,16.830000000000002,16.69,16.56,16.490000000000002,16.45,16.48,N/A,N/A +2012,2,18,10,30,101080,99890,98740,97.57000000000001,0,7.13,8.120000000000001,8.51,8.89,9.26,9.61,10.01,10.39,11.46,99.22,99.62,99.96000000000001,100.41,100.98,101.61,102.54,103.48,109.27,17.52,17.3,17.18,17.06,16.97,16.91,16.86,16.82,16.9,N/A,N/A +2012,2,18,11,30,101050,99870,98720,97.37,0,6.91,8.17,8.78,9.44,10.06,10.65,11.03,11.34,11.68,100.91,102.03,103.10000000000001,104.7,107.29,110.55,116.87,123.34,133.9,17.72,17.64,17.6,17.57,17.57,17.6,17.64,17.69,17.73,N/A,N/A +2012,2,18,12,30,101030,99840,98700,96.67,0,6.12,7.33,7.930000000000001,8.6,9.28,9.98,10.59,11.14,11.1,101.19,102.74000000000001,104.37,107.18,110.8,115.04,122.9,131.15,140.70000000000002,17.86,17.82,17.82,17.85,17.89,17.95,18.04,18.14,18.16,N/A,N/A +2012,2,18,13,30,100970,99790,98650,96.23,78.4,4.67,5.7,6.3,7.0200000000000005,7.5,7.74,7.83,7.86,7.76,90.53,93.10000000000001,96.01,100.82000000000001,109.4,123.10000000000001,130.77,135.28,142.48,17.96,17.98,17.98,17.990000000000002,18.07,18.22,18.28,18.3,18.330000000000002,N/A,N/A +2012,2,18,14,30,100860,99680,98540,95.31,11.4,4.73,6.28,6.68,6.69,6.74,6.8100000000000005,6.96,7.11,7.41,115.93,120.61,126.28,134.62,138.70000000000002,140.84,142.65,144.24,147.39000000000001,18.17,18.61,18.87,19.14,19.240000000000002,19.26,19.23,19.19,19.1,N/A,N/A +2012,2,18,15,30,100860,99670,98530,99.33,16.1,7.51,7.75,7.44,6.57,5.72,4.94,4.14,3.49,2.31,25.150000000000002,27.88,29.87,31.76,33.26,34.45,36.31,37.96,48.26,16.39,16.59,16.84,17.27,17.56,17.78,17.900000000000002,18,18.06,N/A,N/A +2012,2,18,16,30,100850,99660,98520,98.56,28.900000000000002,6.140000000000001,5.55,5.01,4.36,3.68,3.06,2.36,1.81,0.8,52.81,56.07,58.13,59.9,59.92,59.19,54.42,49.59,4.93,16.79,16.98,17.12,17.19,17.27,17.35,17.400000000000002,17.44,17.52,N/A,N/A +2012,2,18,17,30,100760,99570,98430,98.2,133.3,4.43,3.52,2.74,2.0100000000000002,1.68,1.48,2.08,2.84,4.72,42.12,34.65,24.59,12.74,340.02,307.48,287.26,266.92,254.56,17.080000000000002,17.55,17.71,17.740000000000002,17.76,17.78,17.77,17.76,17.740000000000002,N/A,N/A +2012,2,18,18,30,100790,99610,98460,97.99000000000001,1.1,1.11,1.96,2.47,3.16,3.8200000000000003,4.45,5.05,5.62,6.7,165.55,195.32,213.9,224.3,231.21,235.39000000000001,238,240.15,242.93,17.76,17.71,17.66,17.57,17.5,17.45,17.42,17.400000000000002,17.42,N/A,N/A +2012,2,18,19,30,100810,99630,98480,98.03,0.4,3,3.33,3.43,3.48,3.49,3.49,3.5500000000000003,3.62,4.03,300.97,300.12,298.68,295.93,293.85,292.22,291.25,290.42,287.65000000000003,17.53,17.28,17.17,17.1,17.04,16.98,16.91,16.86,16.79,N/A,N/A +2012,2,18,20,30,100850,99660,98510,98.04,0.4,3.83,3.95,3.96,4.11,4.17,4.15,4.11,4.08,4.34,318.33,318.33,317.86,315.93,314.53000000000003,313.5,309.47,304.87,294.67,17.03,16.75,16.6,16.46,16.35,16.26,16.23,16.22,16.26,N/A,N/A +2012,2,18,21,30,100840,99640,98490,95.35000000000001,0,4.84,5.03,5.0200000000000005,4.97,4.9,4.82,4.64,4.5,4.41,329.87,329.81,329.69,329.51,328.73,327.74,322.88,318.1,308.62,16.41,16.080000000000002,15.91,15.72,15.52,15.34,15.35,15.38,15.59,N/A,N/A +2012,2,18,22,30,100880,99690,98530,94.34,0,3.7600000000000002,3.93,3.96,3.97,4.0200000000000005,4.11,4.43,4.78,5.25,318.81,318.59000000000003,318.31,317.82,316.46,314.65000000000003,309.62,304.49,299.3,16.490000000000002,16.17,16,15.8,15.620000000000001,15.44,15.33,15.25,15.15,N/A,N/A +2012,2,18,23,30,100900,99710,98550,94.33,0,4.9,5.19,5.2700000000000005,5.34,5.5600000000000005,5.87,6.5,7.140000000000001,7.72,312.69,311.85,311.02,309.64,306.92,303.29,298.1,293.03000000000003,289.76,16.34,16.02,15.85,15.67,15.51,15.370000000000001,15.290000000000001,15.21,15.11,N/A,N/A +2012,2,19,0,30,100980,99790,98630,94.43,0,6.37,6.8,6.9,6.95,6.98,7,7.05,7.09,7.42,296.96,295.91,295.26,294.51,293.72,292.90000000000003,291.83,290.76,286.87,16.11,15.780000000000001,15.6,15.4,15.22,15.040000000000001,14.85,14.68,14.370000000000001,N/A,N/A +2012,2,19,1,30,101030,99840,98670,90.99,3.3000000000000003,8.71,9.450000000000001,9.66,9.77,9.84,9.89,9.92,9.94,9.97,293.90000000000003,294.17,294.24,294.29,294.31,294.33,294.33,294.33,294.29,16.09,15.72,15.540000000000001,15.33,15.14,14.950000000000001,14.75,14.56,14.18,N/A,N/A +2012,2,19,2,30,101100,99900,98730,89.29,0,10.92,11.950000000000001,12.23,12.39,12.5,12.58,12.64,12.700000000000001,12.8,293.93,294,294.02,294.03000000000003,294.04,294.04,294.04,294.04,294.04,15.43,15,14.790000000000001,14.58,14.38,14.19,13.99,13.8,13.42,N/A,N/A +2012,2,19,3,30,101180,99980,98810,87.91,0,12.11,13.25,13.58,13.76,13.88,13.97,14.040000000000001,14.09,14.16,293.2,293.43,293.56,293.7,293.82,293.94,294.07,294.19,294.45,14.85,14.370000000000001,14.16,13.94,13.74,13.540000000000001,13.34,13.15,12.76,N/A,N/A +2012,2,19,4,30,101250,100040,98860,86.27,0,11.8,12.790000000000001,13.06,13.200000000000001,13.27,13.32,13.34,13.36,13.36,297.48,297.8,298.02,298.23,298.43,298.62,298.84000000000003,299.04,299.5,13.780000000000001,13.23,13,12.780000000000001,12.57,12.370000000000001,12.17,11.98,11.59,N/A,N/A +2012,2,19,5,30,101310,100100,98920,86.05,0,11.44,12.49,12.790000000000001,12.96,13.08,13.16,13.22,13.27,13.33,305.07,305.62,305.95,306.24,306.51,306.76,307.02,307.25,307.73,13.52,12.950000000000001,12.72,12.5,12.280000000000001,12.08,11.870000000000001,11.68,11.28,N/A,N/A +2012,2,19,6,30,101430,100210,99030,84.66,0,13.11,14.280000000000001,14.68,14.88,15.030000000000001,15.13,15.200000000000001,15.27,15.35,314.44,314.63,314.78000000000003,314.93,315.06,315.19,315.32,315.44,315.7,13.33,12.74,12.49,12.25,12.030000000000001,11.83,11.620000000000001,11.43,11.03,N/A,N/A +2012,2,19,7,30,101490,100270,99090,86.77,0,11.68,12.71,12.99,13.14,13.24,13.31,13.34,13.370000000000001,13.39,315.1,315.21,315.31,315.39,315.48,315.56,315.64,315.71,315.88,13.09,12.49,12.25,12.01,11.790000000000001,11.59,11.38,11.19,10.790000000000001,N/A,N/A +2012,2,19,8,30,101540,100320,99140,84.16,0,12.3,13.42,13.74,13.92,14.040000000000001,14.13,14.19,14.24,14.31,328.46,328.59000000000003,328.66,328.72,328.76,328.81,328.85,328.90000000000003,328.98,12.76,12.13,11.89,11.65,11.43,11.23,11.02,10.82,10.42,N/A,N/A +2012,2,19,9,30,101600,100380,99190,84.88,0,11.93,12.96,13.26,13.42,13.52,13.6,13.65,13.69,13.74,334.3,334.3,334.31,334.31,334.31,334.31,334.32,334.32,334.33,12.32,11.68,11.43,11.200000000000001,10.98,10.77,10.56,10.370000000000001,9.97,N/A,N/A +2012,2,19,10,30,101660,100440,99250,86.17,0,11.31,12.25,12.51,12.64,12.73,12.790000000000001,12.83,12.86,12.9,336.98,337.08,337.14,337.2,337.25,337.3,337.34000000000003,337.38,337.47,12.040000000000001,11.4,11.15,10.91,10.700000000000001,10.49,10.28,10.08,9.69,N/A,N/A +2012,2,19,11,30,101740,100510,99320,84.56,0,11.59,12.56,12.84,12.98,13.08,13.15,13.200000000000001,13.23,13.280000000000001,344.31,344.34000000000003,344.36,344.38,344.39,344.40000000000003,344.42,344.44,344.46,11.67,11,10.74,10.5,10.28,10.08,9.86,9.66,9.26,N/A,N/A +2012,2,19,12,30,101800,100570,99370,85.68,0,11.07,11.98,12.24,12.38,12.48,12.55,12.6,12.63,12.69,347.82,347.90000000000003,347.95,347.99,348.04,348.08,348.12,348.17,348.26,11.36,10.68,10.43,10.19,9.97,9.76,9.55,9.35,8.96,N/A,N/A +2012,2,19,13,30,101850,100610,99420,84.83,0,10.98,11.88,12.13,12.26,12.35,12.41,12.450000000000001,12.48,12.52,352.32,352.35,352.36,352.37,352.38,352.39,352.40000000000003,352.41,352.45,11.17,10.48,10.23,9.99,9.76,9.56,9.35,9.15,8.75,N/A,N/A +2012,2,19,14,30,101910,100680,99490,84.93,0,10.21,10.97,11.19,11.3,11.370000000000001,11.42,11.450000000000001,11.47,11.5,354.18,354.1,354.04,353.98,353.94,353.89,353.84000000000003,353.8,353.72,11.05,10.39,10.13,9.9,9.68,9.47,9.26,9.07,8.67,N/A,N/A +2012,2,19,15,30,101960,100720,99530,82.8,0,8.81,9.43,9.6,9.69,9.74,9.790000000000001,9.81,9.84,9.88,354.15000000000003,354.13,354.12,354.11,354.1,354.09000000000003,354.08,354.08,354.08,11.06,10.44,10.19,9.96,9.75,9.55,9.34,9.15,8.76,N/A,N/A +2012,2,19,16,30,101980,100750,99560,80.67,0,7.37,7.84,7.97,8.03,8.08,8.11,8.13,8.15,8.17,352.77,352.91,353.01,353.11,353.2,353.29,353.38,353.46,353.64,11.36,10.78,10.55,10.33,10.120000000000001,9.92,9.71,9.52,9.120000000000001,N/A,N/A +2012,2,19,17,30,101970,100740,99550,78.26,0,6.32,6.69,6.79,6.84,6.87,6.890000000000001,6.91,6.92,6.94,346.74,346.85,346.93,347,347.07,347.13,347.21,347.28000000000003,347.45,11.88,11.34,11.120000000000001,10.9,10.69,10.5,10.290000000000001,10.1,9.71,N/A,N/A +2012,2,19,18,30,101960,100740,99550,76.29,0,5.3,5.6000000000000005,5.69,5.73,5.7700000000000005,5.8,5.82,5.84,5.86,342.33,342.71,342.97,343.2,343.43,343.62,343.84000000000003,344.05,344.47,12.49,12,11.790000000000001,11.57,11.370000000000001,11.17,10.97,10.78,10.38,N/A,N/A +2012,2,19,19,30,101970,100750,99560,74.3,0,4.07,4.26,4.3100000000000005,4.34,4.36,4.37,4.39,4.39,4.41,334.6,335.72,336.48,337.2,337.85,338.46,339.06,339.63,340.78000000000003,13.08,12.64,12.43,12.22,12.02,11.83,11.63,11.44,11.05,N/A,N/A +2012,2,19,20,30,101940,100720,99530,73.97,0,3.5500000000000003,3.67,3.67,3.67,3.65,3.64,3.62,3.6,3.5700000000000003,319.14,320.37,321.18,321.98,322.72,323.40000000000003,324.15000000000003,324.85,326.35,13.41,12.98,12.780000000000001,12.57,12.370000000000001,12.19,11.98,11.790000000000001,11.4,N/A,N/A +2012,2,19,21,30,101920,100700,99520,72.4,0,3.11,3.24,3.27,3.2800000000000002,3.29,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,312.72,313.42,313.87,314.3,314.71,315.09000000000003,315.49,315.88,316.71,13.73,13.33,13.13,12.92,12.72,12.530000000000001,12.32,12.14,11.74,N/A,N/A +2012,2,19,22,30,101910,100690,99510,71.46000000000001,0,2.49,2.57,2.57,2.56,2.5500000000000003,2.54,2.52,2.5100000000000002,2.49,312.64,314.04,315.02,315.95,316.84000000000003,317.66,318.51,319.29,321.02,14.16,13.77,13.58,13.38,13.18,12.99,12.790000000000001,12.6,12.21,N/A,N/A +2012,2,19,23,30,101900,100680,99500,71.26,0,1.93,2,2.02,2.02,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,307.21,307.59000000000003,307.82,308.08,308.33,308.57,308.86,309.14,309.85,14.19,13.81,13.620000000000001,13.41,13.22,13.030000000000001,12.83,12.64,12.25,N/A,N/A +2012,2,20,0,30,101900,100680,99500,69.03,0,1.17,1.23,1.25,1.26,1.27,1.28,1.29,1.29,1.31,313.44,315.11,316.22,317.27,318.3,319.27,320.29,321.26,323.49,14.48,14.11,13.93,13.73,13.530000000000001,13.34,13.14,12.950000000000001,12.56,N/A,N/A +2012,2,20,1,30,101900,100680,99500,68.85000000000001,0,0.9400000000000001,1.01,1.04,1.07,1.1,1.12,1.1500000000000001,1.17,1.22,353.98,354.35,354.45,354.54,354.69,354.86,355.06,355.25,355.81,14.69,14.34,14.15,13.950000000000001,13.75,13.56,13.36,13.17,12.780000000000001,N/A,N/A +2012,2,20,2,30,101920,100700,99530,69.60000000000001,0,1.04,1.09,1.1,1.11,1.12,1.1300000000000001,1.1500000000000001,1.16,1.2,74.78,73.27,72.13,71.09,70.15,69.3,68.45,67.67,66.18,14.8,14.44,14.26,14.06,13.86,13.67,13.47,13.280000000000001,12.9,N/A,N/A +2012,2,20,3,30,101920,100700,99520,71.76,0,2.54,2.65,2.68,2.69,2.71,2.72,2.73,2.74,2.7600000000000002,91.4,90.73,90.29,89.87,89.47,89.10000000000001,88.71000000000001,88.34,87.56,14.75,14.38,14.19,13.99,13.790000000000001,13.61,13.4,13.22,12.83,N/A,N/A +2012,2,20,4,30,101910,100700,99520,72.33,0,2.58,2.7600000000000002,2.83,2.88,2.93,2.97,3.02,3.06,3.16,97.69,97.36,97.11,96.86,96.63,96.41,96.17,95.93,95.41,14.83,14.46,14.27,14.07,13.88,13.69,13.49,13.3,12.92,N/A,N/A +2012,2,20,5,30,101910,100700,99520,68.83,0,4.43,4.8,4.92,5,5.07,5.12,5.17,5.21,5.28,95.42,95.14,94.94,94.74,94.57000000000001,94.41,94.25,94.10000000000001,93.8,15.42,15.06,14.870000000000001,14.67,14.47,14.280000000000001,14.08,13.89,13.5,N/A,N/A +2012,2,20,6,30,101940,100730,99550,70.63,0,6.01,6.4,6.49,6.53,6.55,6.5600000000000005,6.57,6.57,6.5600000000000005,106.88,106.86,106.88,106.93,106.97,107.01,107.06,107.11,107.21000000000001,15.44,15.07,14.89,14.68,14.49,14.3,14.09,13.9,13.51,N/A,N/A +2012,2,20,7,30,101960,100750,99570,70.26,0,6.66,7.13,7.23,7.28,7.3,7.32,7.32,7.32,7.3,107.03,107.34,107.52,107.67,107.82000000000001,107.94,108.09,108.21000000000001,108.45,15.57,15.200000000000001,15.02,14.82,14.61,14.42,14.22,14.030000000000001,13.64,N/A,N/A +2012,2,20,8,30,101960,100740,99570,74.52,0,6.92,7.45,7.62,7.71,7.78,7.83,7.87,7.91,7.97,119.57000000000001,119.45,119.38,119.33,119.28,119.23,119.2,119.17,119.11,15.46,15.09,14.9,14.700000000000001,14.5,14.31,14.1,13.91,13.52,N/A,N/A +2012,2,20,9,30,101940,100730,99550,77.5,0,7.95,8.58,8.73,8.8,8.82,8.83,8.81,8.8,8.74,119.10000000000001,119.44,119.59,119.73,119.86,119.97,120.08,120.18,120.38,15.41,15.030000000000001,14.84,14.63,14.43,14.24,14.030000000000001,13.84,13.450000000000001,N/A,N/A +2012,2,20,10,30,101920,100710,99540,77.05,0,8.4,9.11,9.290000000000001,9.38,9.42,9.450000000000001,9.46,9.47,9.450000000000001,117.57000000000001,117.99000000000001,118.27,118.55,118.81,119.05,119.3,119.54,120.02,15.33,14.94,14.74,14.530000000000001,14.33,14.14,13.93,13.74,13.34,N/A,N/A +2012,2,20,11,30,101920,100710,99540,79.78,0,7.21,7.8100000000000005,8,8.11,8.19,8.26,8.3,8.34,8.4,117.13,117.23,117.3,117.37,117.43,117.49000000000001,117.54,117.58,117.67,15.44,15.06,14.870000000000001,14.66,14.46,14.27,14.06,13.88,13.48,N/A,N/A +2012,2,20,12,30,101920,100710,99530,78.45,0,7.57,8.18,8.35,8.44,8.5,8.55,8.58,8.61,8.65,112.2,112.60000000000001,112.92,113.23,113.52,113.79,114.07000000000001,114.33,114.87,15.47,15.09,14.89,14.69,14.49,14.31,14.1,13.91,13.52,N/A,N/A +2012,2,20,13,30,101930,100720,99540,79.44,0,7,7.54,7.69,7.7700000000000005,7.83,7.87,7.9,7.930000000000001,7.97,120.21000000000001,120.33,120.46000000000001,120.60000000000001,120.72,120.83,120.95,121.07000000000001,121.31,15.610000000000001,15.24,15.05,14.85,14.66,14.47,14.27,14.08,13.69,N/A,N/A +2012,2,20,14,30,101960,100750,99580,78.11,0,7.88,8.59,8.8,8.91,9,9.06,9.1,9.14,9.200000000000001,124.41,124.46000000000001,124.62,124.79,124.97,125.14,125.33,125.52,125.92,15.94,15.59,15.4,15.21,15.01,14.82,14.620000000000001,14.43,14.040000000000001,N/A,N/A +2012,2,20,15,30,101980,100770,99600,79.96000000000001,0,7.66,8.25,8.4,8.46,8.49,8.51,8.51,8.51,8.5,118.56,119.3,119.8,120.34,120.87,121.38,121.95,122.49000000000001,123.69,16.09,15.75,15.57,15.370000000000001,15.18,15,14.8,14.61,14.23,N/A,N/A +2012,2,20,16,30,101980,100780,99600,80.29,0,7.05,7.63,7.7700000000000005,7.84,7.88,7.91,7.92,7.930000000000001,7.92,128.2,128.29,128.45,128.62,128.79,128.96,129.15,129.34,129.76,16.43,16.1,15.93,15.73,15.540000000000001,15.35,15.15,14.96,14.57,N/A,N/A +2012,2,20,17,30,101980,100770,99600,82.13,0,7.45,8.09,8.26,8.34,8.39,8.42,8.44,8.45,8.45,126.75,127.10000000000001,127.37,127.65,127.92,128.17000000000002,128.45,128.7,129.26,16.52,16.2,16.03,15.83,15.64,15.450000000000001,15.25,15.07,14.68,N/A,N/A +2012,2,20,18,30,101980,100770,99600,82.49,0,7.2,7.890000000000001,8.08,8.19,8.27,8.32,8.36,8.39,8.43,130.85,131.22,131.47,131.7,131.91,132.11,132.32,132.52,132.93,16.88,16.59,16.42,16.22,16.03,15.85,15.65,15.47,15.08,N/A,N/A +2012,2,20,19,30,101980,100770,99610,83.84,0,6.84,7.47,7.640000000000001,7.72,7.78,7.82,7.84,7.86,7.88,131.91,132,132.17000000000002,132.39000000000001,132.65,132.93,133.25,133.56,134.38,17.02,16.740000000000002,16.580000000000002,16.39,16.2,16.02,15.82,15.64,15.26,N/A,N/A +2012,2,20,20,30,101950,100750,99580,85.59,0,7.13,7.75,7.9,7.98,8.03,8.06,8.09,8.11,8.23,126.9,127.03,127.21000000000001,127.46000000000001,127.75,128.07,128.52,128.99,130.89000000000001,17.02,16.75,16.580000000000002,16.39,16.21,16.03,15.83,15.66,15.31,N/A,N/A +2012,2,20,21,30,101940,100740,99570,86.07000000000001,0,5.71,6.45,6.7,6.78,6.95,7.16,7.32,7.47,7.71,124.63000000000001,125.23,125.71000000000001,126.26,127.38000000000001,128.86,130.69,132.44,135.95,17.2,16.97,16.82,16.64,16.490000000000002,16.35,16.19,16.05,15.74,N/A,N/A +2012,2,20,22,30,101900,100700,99540,87.48,0,5.82,6.5600000000000005,6.84,7.07,7.25,7.42,7.57,7.69,7.92,141.64000000000001,141.9,142.15,142.48,142.87,143.32,143.95000000000002,144.58,146.36,17.41,17.21,17.080000000000002,16.92,16.76,16.61,16.44,16.29,15.97,N/A,N/A +2012,2,20,23,30,101900,100710,99540,88.74,0,4.96,5.75,6.09,6.4,6.66,6.9,7.08,7.23,7.32,140.22,140.49,140.78,141.20000000000002,141.74,142.4,143.41,144.46,148.06,17.51,17.34,17.23,17.080000000000002,16.94,16.79,16.64,16.5,16.2,N/A,N/A +2012,2,21,0,30,101920,100720,99560,88.88,0,5.12,5.9,6.21,6.49,6.75,7,7.28,7.54,7.97,155.09,155.28,155.51,155.85,156.13,156.37,156.76,157.19,160.79,17.66,17.53,17.42,17.27,17.12,16.97,16.81,16.67,16.41,N/A,N/A +2012,2,21,1,30,101940,100740,99580,90.57000000000001,0,4.47,5.43,5.87,6.3100000000000005,6.75,7.21,7.68,8.13,8.24,154.19,155.97,157.38,159.21,160.65,161.83,162.88,163.88,169.5,17.66,17.61,17.56,17.490000000000002,17.400000000000002,17.29,17.17,17.07,16.85,N/A,N/A +2012,2,21,2,30,101950,100750,99590,92.05,0,5.13,6.0600000000000005,6.5,6.98,7.41,7.8100000000000005,8.09,8.3,8.28,146.18,147.94,149.38,151.32,153.34,155.48,158.25,160.97,164.45000000000002,17.64,17.580000000000002,17.54,17.5,17.47,17.44,17.37,17.3,17.04,N/A,N/A +2012,2,21,3,30,101960,100760,99610,92.16,0,4.78,5.83,6.33,6.86,7.33,7.76,8.01,8.19,8.22,149.18,150.17000000000002,150.98,151.98,153.36,155.05,159.66,164.59,168.74,17.72,17.66,17.62,17.56,17.53,17.5,17.48,17.46,17.22,N/A,N/A +2012,2,21,4,30,101990,100790,99630,92.55,0,3.91,4.96,5.5,6.12,6.5600000000000005,6.87,6.95,6.96,6.98,148.85,150.20000000000002,152.24,156.75,161.69,166.9,169.55,171.32,174.31,17.7,17.69,17.69,17.73,17.740000000000002,17.76,17.68,17.59,17.330000000000002,N/A,N/A +2012,2,21,5,30,102010,100810,99650,95.17,0,2.67,3.7800000000000002,4.39,5.18,5.59,5.69,5.78,5.87,6.1000000000000005,151.3,154.54,158.46,166.35,171.39000000000001,173.95000000000002,176.62,179.12,182.8,17.55,17.56,17.61,17.78,17.82,17.78,17.7,17.63,17.400000000000002,N/A,N/A +2012,2,21,6,30,102020,100830,99670,95.27,0,3.29,4.63,5.3100000000000005,5.89,6.17,6.23,6.38,6.55,6.95,166.33,169.29,173.64000000000001,183.33,188.84,191.22,193.18,194.9,196.68,17.56,17.75,17.87,18.02,18.03,17.97,17.93,17.900000000000002,17.75,N/A,N/A +2012,2,21,7,30,102070,100870,99710,95.81,0,2.45,3.8200000000000003,4.44,4.78,5.0600000000000005,5.3100000000000005,5.55,5.7700000000000005,6.13,176.13,182.33,188.33,196.88,201.22,202.43,203.18,203.75,204.47,17.64,18,18.13,18.14,18.14,18.150000000000002,18.14,18.13,17.97,N/A,N/A +2012,2,21,8,30,102060,100860,99700,96.06,0,2.86,3.81,4.14,4.38,4.63,4.9,5.17,5.42,5.83,187.05,194.06,198.81,202.8,205.57,207.52,208.66,209.53,210.33,17.63,17.86,17.96,18,18.06,18.13,18.14,18.150000000000002,17.98,N/A,N/A +2012,2,21,9,30,102060,100870,99710,96.78,0,2.22,2.97,3.18,3.41,3.63,3.84,4.05,4.25,4.55,187.24,194.5,198.98000000000002,202.25,204.87,207.09,208.95000000000002,210.61,213.66,17.56,17.82,17.92,17.96,17.990000000000002,18.01,18.01,18.01,17.85,N/A,N/A +2012,2,21,10,30,102070,100870,99720,97.11,0,0.88,1.36,1.57,1.82,2.06,2.29,2.52,2.74,3.1,207.43,219.62,226.93,229.68,231.57,232.8,233.57,234.19,235.20000000000002,17.48,17.75,17.86,17.91,17.95,17.97,17.98,17.98,17.85,N/A,N/A +2012,2,21,11,30,102080,100880,99720,97.55,0,0.9400000000000001,1.09,1.09,1.24,1.41,1.59,1.77,1.95,2.24,176.09,197.68,209.85,220.13,226.98000000000002,231.49,234.46,236.9,239.68,17.36,17.580000000000002,17.67,17.72,17.75,17.77,17.78,17.78,17.68,N/A,N/A +2012,2,21,12,30,102090,100890,99730,97.57000000000001,0,0.76,0.91,0.9400000000000001,1.1400000000000001,1.32,1.5,1.6500000000000001,1.79,2.0100000000000002,184.93,210.08,224.1,232.85,238.61,241.68,243.6,245.06,245.91,17.330000000000002,17.59,17.72,17.82,17.89,17.94,17.94,17.94,17.79,N/A,N/A +2012,2,21,13,30,102090,100890,99730,98.26,0,0.4,0.63,0.74,0.86,0.9500000000000001,1.03,1.08,1.1400000000000001,1.24,39.37,7.95,347.1,333.79,323.1,314.47,307.81,302.07,292.90000000000003,17.17,17.34,17.42,17.490000000000002,17.53,17.55,17.56,17.56,17.47,N/A,N/A +2012,2,21,14,30,102160,100950,99780,99.26,0,5.5600000000000005,5.61,5.48,5.28,4.92,4.51,4.05,3.65,2.82,4.95,5.19,5.57,6.44,8.03,9.83,12.07,14.05,18.23,15.94,15.69,15.610000000000001,15.57,15.620000000000001,15.72,15.82,15.9,16.02,N/A,N/A +2012,2,21,15,30,102180,100970,99800,99.22,0,4.91,5.01,4.92,4.76,4.3100000000000005,3.77,3.31,2.95,2.2600000000000002,19.89,19.91,19.89,19.79,20.38,21.240000000000002,24.47,27.7,38.35,15.76,15.49,15.38,15.27,15.32,15.46,15.6,15.71,15.75,N/A,N/A +2012,2,21,16,30,102170,100960,99790,99.23,0,4.93,5.05,5,4.91,4.54,4.07,3.61,3.22,2.46,29.94,29.66,29.150000000000002,28.14,27.03,26.02,28.35,31.080000000000002,42.160000000000004,15.75,15.48,15.36,15.23,15.25,15.35,15.44,15.530000000000001,15.610000000000001,N/A,N/A +2012,2,21,17,30,102160,100950,99780,99.24000000000001,0,5.08,5.22,5.17,5.08,4.78,4.38,3.91,3.5,2.65,36,35.980000000000004,35.89,35.65,35.550000000000004,35.550000000000004,37.52,39.63,48.11,15.8,15.52,15.4,15.290000000000001,15.290000000000001,15.35,15.47,15.6,15.76,N/A,N/A +2012,2,21,18,30,102130,100920,99750,99.31,0,4.3500000000000005,4.43,4.38,4.28,3.99,3.64,3.2800000000000002,2.97,2.44,40.800000000000004,40.89,41.160000000000004,41.77,43,44.42,47.18,49.69,54.46,16,15.75,15.64,15.540000000000001,15.530000000000001,15.58,15.63,15.66,15.58,N/A,N/A +2012,2,21,19,30,102130,100920,99750,99.24000000000001,0,3.72,3.77,3.7,3.59,3.38,3.12,2.87,2.66,2.57,58.06,58.4,58.88,59.92,61.31,62.77,64.83,66.59,68.4,16.19,15.94,15.82,15.69,15.610000000000001,15.540000000000001,15.47,15.39,15.19,N/A,N/A +2012,2,21,20,30,102080,100870,99710,99.25,0,3.29,3.27,3.16,2.98,2.9,2.85,2.71,2.58,2.5,65.82000000000001,67.18,69.69,75.26,77.98,79.18,83.11,86.83,91.87,16.330000000000002,16.1,15.99,15.870000000000001,15.77,15.68,15.6,15.530000000000001,15.34,N/A,N/A +2012,2,21,21,30,102030,100830,99660,98.26,0,2.63,2.65,2.6,2.52,2.45,2.4,2.39,2.38,2.44,79.66,80.65,82.54,86.98,92.26,97.96000000000001,99.94,101.2,111.14,16.52,16.23,16.09,15.950000000000001,15.85,15.77,15.68,15.6,15.43,N/A,N/A +2012,2,21,22,30,101960,100760,99590,97.91,0,3.0300000000000002,3.08,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.04,95.14,97.35000000000001,100.73,107.94,112.42,115.29,116.34,116.84,117.60000000000001,16.55,16.25,16.1,15.97,15.860000000000001,15.76,15.67,15.58,15.39,N/A,N/A +2012,2,21,23,30,101900,100700,99530,97.88,0,2.72,2.89,3.0500000000000003,3.45,3.71,3.86,3.92,3.96,4.03,112.15,115.27,118.60000000000001,124.61,127.76,128.88,129.36,129.67000000000002,130.3,16.61,16.3,16.15,16.01,15.89,15.780000000000001,15.68,15.59,15.39,N/A,N/A +2012,2,22,0,30,101870,100670,99510,98.38,0,3.67,3.89,4.1,4.63,4.87,4.91,4.94,4.97,5.0200000000000005,109.48,112.86,117.61,128.45,133.29,133.94,134.45,134.88,135.72,16.81,16.54,16.41,16.31,16.22,16.12,16.02,15.92,15.72,N/A,N/A +2012,2,22,1,30,101830,100630,99460,98.79,0,3.96,4.62,4.91,5.12,5.2700000000000005,5.37,5.4,5.42,5.47,128.66,130.98,132.74,134.79,136.79,138.72,140.69,142.49,146.24,17,16.84,16.740000000000002,16.63,16.51,16.4,16.29,16.19,15.92,N/A,N/A +2012,2,22,2,30,101810,100610,99450,97.39,0,3.8200000000000003,4.3100000000000005,4.58,4.97,5.23,5.41,5.58,5.74,5.96,131.53,134.47,137,140.94,143.43,144.94,146.68,148.36,152.18,17.14,16.88,16.73,16.580000000000002,16.46,16.36,16.26,16.16,15.83,N/A,N/A +2012,2,22,3,30,101780,100580,99420,99.27,0,3.7800000000000002,4.28,4.53,4.88,5.36,5.98,6.28,6.49,6.69,156,156.68,157.91,161.18,165.36,170.47,171.42000000000002,171.23,170.86,17.14,16.98,16.92,16.86,16.86,16.89,16.8,16.69,16.330000000000002,N/A,N/A +2012,2,22,4,30,101740,100550,99390,99.34,0,4.38,4.96,5.19,5.38,5.54,5.67,5.74,5.82,7,169.77,171.25,172.14000000000001,172.91,173.47,173.91,174.19,174.48,178.19,16.990000000000002,16.830000000000002,16.75,16.65,16.55,16.45,16.35,16.27,16.990000000000002,N/A,N/A +2012,2,22,5,30,101730,100530,99370,99.34,0,4.7700000000000005,5.26,5.44,5.57,5.8,6.13,6.59,7.0600000000000005,8.02,180.44,180,179.71,179.49,179.29,179.1,179.20000000000002,179.4,181.01,16.81,16.62,16.53,16.43,16.37,16.330000000000002,16.44,16.57,17.18,N/A,N/A +2012,2,22,6,30,101690,100500,99340,96.92,0,4.65,5.8100000000000005,6.47,7.3500000000000005,8.26,9.27,9.76,10.05,9.99,192.26,191.35,190.38,188.65,187.42000000000002,186.61,186.88,187.48,189.29,17.66,17.63,17.61,17.6,17.580000000000002,17.56,17.44,17.3,17.31,N/A,N/A +2012,2,22,7,30,101680,100490,99330,96.74000000000001,0,3.94,4.98,5.47,5.98,6.73,7.7700000000000005,8.75,9.69,10.33,194.12,193.84,193.72,193.73000000000002,194.13,194.88,195.24,195.49,196.08,17.71,17.64,17.57,17.47,17.17,16.73,16.92,17.240000000000002,18.080000000000002,N/A,N/A +2012,2,22,8,30,101630,100440,99280,97.91,0,3.2,4.19,4.7700000000000005,5.48,6.5200000000000005,7.96,8.92,9.68,9.91,199.95000000000002,199.35,198.85,198.18,197.19,195.79,195.47,195.51,196.74,17.48,17.43,17.38,17.28,17.240000000000002,17.25,17.44,17.67,18.3,N/A,N/A +2012,2,22,9,30,101580,100390,99240,96.76,0,2.8000000000000003,4.07,4.82,5.89,6.88,7.8,8.49,9.07,10.16,217.76,214.61,212.19,209.66,207.6,205.94,204.02,202.1,201.85,17.78,17.87,17.89,17.87,17.740000000000002,17.54,17.43,17.36,17.69,N/A,N/A +2012,2,22,10,30,101540,100350,99200,95.83,0.4,4.75,6.19,6.91,7.6000000000000005,8.120000000000001,8.53,9,9.450000000000001,10.26,197.47,198.57,199.62,201.35,203.22,205.21,206.41,207.31,207.91,17.900000000000002,17.84,17.77,17.66,17.53,17.39,17.12,16.84,17.45,N/A,N/A +2012,2,22,11,30,101530,100340,99190,96.96000000000001,0.4,2.2600000000000002,3.65,4.42,5.23,5.99,6.73,7.37,7.95,8.88,205.12,204.28,203.83,204.12,204.48000000000002,204.92000000000002,205.49,206.09,209.42000000000002,17.79,17.8,17.75,17.68,17.6,17.53,17.400000000000002,17.27,17.02,N/A,N/A +2012,2,22,12,30,101500,100310,99160,97.28,0,1.8800000000000001,3.06,3.8200000000000003,5.38,6.63,7.46,8.07,8.56,8.93,199.17000000000002,200.55,202.03,204.74,206.54,207.29,208.55,209.92000000000002,211.95000000000002,17.79,17.91,17.95,18.01,17.96,17.830000000000002,17.66,17.490000000000002,17.3,N/A,N/A +2012,2,22,13,30,101430,100240,99100,95.39,0,5.18,6.46,7.12,7.95,8.83,9.77,10.57,11.3,11.84,209.43,211.24,212.24,212.6,212.43,211.84,212.52,213.54,216.89000000000001,17.98,18.04,18.04,17.990000000000002,17.84,17.63,17.68,17.8,18.64,N/A,N/A +2012,2,22,14,30,101440,100260,99100,94.88,0,5.8100000000000005,7.21,7.95,8.870000000000001,9.81,10.8,11.63,12.38,12.75,210.89000000000001,210.89000000000001,211.16,212.32,214.25,217.03,220.05,223.02,225.33,18.080000000000002,18.14,18.150000000000002,18.16,18.09,17.96,17.79,17.63,18.31,N/A,N/A +2012,2,22,15,30,101400,100210,99060,92.88,0,7.44,9.16,9.98,10.82,11.55,12.22,12.74,13.16,13.39,210.96,211.77,212.62,214.22,216.46,219.43,222.96,226.54,231.07,18.5,18.57,18.57,18.52,18.44,18.330000000000002,18.14,17.93,17.72,N/A,N/A +2012,2,22,16,30,101390,100200,99050,94.29,0,7.5600000000000005,8.94,9.47,9.93,10.370000000000001,10.81,11.25,11.67,11.9,222.24,224.18,225.86,228.44,231.25,234.31,237.41,240.33,245.54,18.21,18.21,18.18,18.14,18.09,18.03,17.92,17.82,17.62,N/A,N/A +2012,2,22,17,30,101360,100170,99020,94.24,0,4.87,6.38,7.17,8.02,8.84,9.68,10.35,10.93,11.5,227.12,228.5,229.68,231.27,232.72,234.12,235.18,236.06,236.25,18.29,18.34,18.34,18.31,18.28,18.240000000000002,18.21,18.18,18.09,N/A,N/A +2012,2,22,18,30,101310,100130,98980,92.82000000000001,0,6.44,8.11,8.96,9.84,10.64,11.42,11.98,12.4,12.5,217.32,219.11,220.91,224.37,227.93,231.86,234.78,237.11,237.93,18.580000000000002,18.740000000000002,18.79,18.78,18.740000000000002,18.67,18.580000000000002,18.490000000000002,18.27,N/A,N/A +2012,2,22,19,30,101270,100090,98940,92.10000000000001,0,7.43,9.290000000000001,10.200000000000001,11.08,11.81,12.42,12.88,13.25,13.57,212.8,215.43,217.67000000000002,220.89000000000001,223.91,226.95000000000002,229.27,231.15,231.59,18.71,18.85,18.88,18.87,18.82,18.72,18.7,18.7,18.43,N/A,N/A +2012,2,22,20,30,101160,99980,98840,92.3,0,9.15,10.99,11.88,12.75,13.48,14.11,14.540000000000001,14.870000000000001,15.11,222.84,223.72,224.47,225.47,226.3,227.03,227.33,227.45000000000002,226.87,18.62,18.7,18.72,18.8,18.91,19.080000000000002,19.11,19.09,18.97,N/A,N/A +2012,2,22,21,30,101070,99890,98750,91.93,0,8.55,10.43,11.38,12.4,13.35,14.280000000000001,15,15.59,15.89,213.03,214.88,216.54,218.91,220.95000000000002,222.79,224.02,224.94,226.5,18.68,18.740000000000002,18.71,18.61,18.5,18.37,18.45,18.6,19.54,N/A,N/A +2012,2,22,22,30,101030,99850,98700,92.98,0,7.0200000000000005,8.69,9.51,10.39,11.21,12,12.74,13.42,14.66,215.27,216.46,217.45000000000002,218.77,220.17000000000002,221.68,223.46,225.24,227.87,18.46,18.5,18.47,18.41,18.330000000000002,18.22,18.04,17.85,18.1,N/A,N/A +2012,2,22,23,30,100990,99810,98660,93.09,0.7000000000000001,8.08,9.63,10.25,10.83,11.31,11.71,12.040000000000001,12.32,12.81,213.35,214.61,215.59,216.87,218.22,219.69,221.37,223.02,226.35,18.43,18.43,18.38,18.32,18.25,18.19,18.12,18.05,17.61,N/A,N/A +2012,2,23,0,30,100940,99760,98610,95.41,0,8.32,9.81,10.5,11.19,11.82,12.41,12.98,13.51,14.51,216.49,216.88,217.3,218.04,219.16,220.62,222.47,224.33,224.8,17.94,17.830000000000002,17.71,17.490000000000002,17.17,16.77,16.78,16.91,19.82,N/A,N/A +2012,2,23,1,30,100930,99750,98600,97.8,0.4,7.21,8.19,8.59,8.98,9.36,9.74,10.19,10.65,12.370000000000001,213.81,213.67000000000002,213.65,213.71,213.86,214.1,214.5,214.94,219.71,17.48,17.34,17.240000000000002,17.13,16.990000000000002,16.84,16.48,16.09,16.39,N/A,N/A +2012,2,23,2,30,100910,99720,98570,99.24000000000001,0,8.07,8.9,9.200000000000001,9.47,9.74,10.02,10.76,11.59,13.27,213.47,213.25,213.12,213.03,212.99,213,214.29,215.92000000000002,222,16.8,16.56,16.42,16.240000000000002,16.04,15.83,15.620000000000001,15.5,17.8,N/A,N/A +2012,2,23,3,30,100870,99680,98530,99.24000000000001,0,8.78,9.9,10.36,10.790000000000001,11.15,11.46,12.35,13.35,14.72,213.34,212.94,212.66,212.39000000000001,212.17000000000002,211.97,212.93,214.14000000000001,217.32,16.85,16.61,16.48,16.3,16.11,15.89,16.39,17.01,19.77,N/A,N/A +2012,2,23,4,30,100840,99650,98510,99.27,0,9.19,10.25,10.68,11.1,11.48,11.84,12.74,13.73,15.09,214.82,214.84,214.85,214.88,215.01,215.20000000000002,216.20000000000002,217.38,219.59,16.84,16.59,16.45,16.28,16.07,15.83,15.94,16.27,19.42,N/A,N/A +2012,2,23,5,30,100840,99650,98490,98.93,1.1,7.72,8.67,9.07,9.49,9.870000000000001,10.23,10.59,10.96,13.280000000000001,216.94,216.89000000000001,216.85,216.84,216.92000000000002,217.03,217.02,217.04,219.6,16.85,16.59,16.44,16.27,16.11,15.94,15.69,15.44,15.93,N/A,N/A +2012,2,23,6,30,100850,99660,98510,97.84,0.4,6.94,7.74,8.07,8.4,8.72,9.05,9.39,9.73,11.35,219.16,219.61,219.96,220.4,220.93,221.52,222.11,222.66,223.28,17.44,17.16,17,16.81,16.63,16.45,16.240000000000002,16.02,15.67,N/A,N/A +2012,2,23,7,30,100840,99650,98500,98.95,0,6.55,7.29,7.7700000000000005,8.69,9.290000000000001,9.64,9.97,10.27,10.93,221.73000000000002,221.73000000000002,221.65,221.38,221.06,220.72,220.52,220.39000000000001,220.21,17.11,16.85,16.71,16.56,16.44,16.330000000000002,16.21,16.11,15.92,N/A,N/A +2012,2,23,8,30,100790,99610,98460,97.87,0,8.22,9.33,9.85,10.48,11.1,11.73,11.98,12.120000000000001,12.23,220.16,220.1,220.12,220.3,220.46,220.6,220.63,220.65,220.67000000000002,17.46,17.19,17.03,16.84,16.66,16.5,16.37,16.240000000000002,16.03,N/A,N/A +2012,2,23,9,30,100750,99570,98420,98.16,0.4,9.09,10.27,10.72,11.09,11.42,11.71,12,12.26,12.84,220.16,220.16,220.13,220.06,219.97,219.87,219.75,219.63,219.5,17.77,17.59,17.48,17.39,17.29,17.19,17.080000000000002,16.97,16.64,N/A,N/A +2012,2,23,10,30,100720,99540,98400,96.21000000000001,0.4,9.27,10.75,11.35,11.92,12.42,12.88,13.290000000000001,13.67,14.15,213.95000000000002,213.9,213.92000000000002,214,214.13,214.31,214.65,215.01,216.44,18.14,18,17.89,17.740000000000002,17.63,17.54,17.44,17.35,17.12,N/A,N/A +2012,2,23,11,30,100690,99510,98360,95.64,0.4,11.5,13.08,13.63,14.040000000000001,14.370000000000001,14.64,14.82,14.96,15,214.62,215.05,215.32,215.64000000000001,216.02,216.45000000000002,217.13,217.84,220.28,18.05,17.85,17.71,17.52,17.330000000000002,17.13,16.93,16.75,16.46,N/A,N/A +2012,2,23,12,30,100660,99490,98340,95.69,0.4,8.16,9.370000000000001,9.83,10.24,10.58,10.870000000000001,11.14,11.370000000000001,11.75,213.37,213.13,213.03,212.97,212.99,213.08,213.32,213.6,214.58,18.25,18.13,18.04,17.96,17.88,17.8,17.72,17.650000000000002,17.490000000000002,N/A,N/A +2012,2,23,13,30,100660,99480,98340,95.83,0.4,9.99,11.41,11.950000000000001,12.4,12.8,13.17,13.6,14.030000000000001,15.030000000000001,216.46,217.55,218.27,219.18,219.95000000000002,220.63,220.94,221.11,219.35,18.22,18.04,17.94,17.85,17.76,17.650000000000002,17.53,17.42,17.12,N/A,N/A +2012,2,23,14,30,100690,99510,98360,95.99000000000001,0,8.24,9.41,9.85,10.22,10.53,10.790000000000001,11,11.19,11.43,224.41,224.35,224.26,224.07,223.83,223.52,223.09,222.64000000000001,221.28,18.19,18.04,17.93,17.81,17.72,17.650000000000002,17.57,17.51,17.39,N/A,N/A +2012,2,23,15,30,100680,99500,98350,95.62,0,8.700000000000001,10.13,10.73,11.3,11.790000000000001,12.24,12.59,12.89,13.02,223.08,222.92000000000002,222.8,222.6,222.33,221.99,221.35,220.68,217.71,18.27,18.14,18.04,17.89,17.77,17.66,17.57,17.5,17.42,N/A,N/A +2012,2,23,16,30,100660,99490,98340,95.48,0,8.42,9.91,10.56,11.18,11.72,12.21,12.61,12.97,13.56,218.23000000000002,218.46,218.61,218.73000000000002,218.79,218.8,218.76,218.71,218.55,18.35,18.240000000000002,18.150000000000002,18.02,17.900000000000002,17.79,17.67,17.57,17.28,N/A,N/A +2012,2,23,17,30,100640,99460,98320,95.07000000000001,0,7.78,9.16,9.74,10.290000000000001,10.76,11.17,11.540000000000001,11.870000000000001,12.370000000000001,221.83,221.9,221.92000000000002,221.86,221.68,221.41,220.9,220.35,218.56,18.44,18.36,18.29,18.2,18.13,18.07,18.01,17.96,17.79,N/A,N/A +2012,2,23,18,30,100620,99440,98310,94.41,0,7.97,9.56,10.32,11.13,11.9,12.67,13.4,14.08,15.290000000000001,222.18,222.57,222.8,222.96,222.82,222.45000000000002,221.35,220.07,217.87,18.6,18.57,18.51,18.45,18.37,18.28,18.17,18.06,17.93,N/A,N/A +2012,2,23,19,30,100610,99440,98300,94.18,0,7.47,8.91,9.52,10.08,10.59,11.08,11.58,12.06,13.16,217.33,217.29,217.23000000000002,217.07,216.82,216.5,216.07,215.64000000000001,215.64000000000001,18.62,18.62,18.59,18.55,18.53,18.5,18.48,18.46,18.21,N/A,N/A +2012,2,23,20,30,100560,99390,98250,92.7,0,7.87,9.63,10.41,11.16,11.81,12.39,12.99,13.57,15.17,213.33,213.68,214.01,214.55,215.27,216.16,217.29,218.43,219.47,18.92,18.97,18.95,18.900000000000002,18.84,18.76,18.650000000000002,18.53,18.76,N/A,N/A +2012,2,23,21,30,100520,99350,98220,92.63,0,7.5200000000000005,9.200000000000001,9.98,10.73,11.39,11.98,12.59,13.18,14.6,208.47,208.95000000000002,209.35,209.86,210.47,211.17000000000002,212.39000000000001,213.71,216.94,18.92,18.96,18.94,18.900000000000002,18.88,18.89,18.94,19,19.240000000000002,N/A,N/A +2012,2,23,22,30,100490,99320,98180,92.19,0,6.98,8.78,9.65,10.56,11.44,12.3,13.14,13.93,14.67,206.37,207.05,207.69,208.66,210,211.64000000000001,213.75,215.92000000000002,217.56,19.01,19.1,19.09,19.05,19.03,19.01,19.240000000000002,19.51,19.57,N/A,N/A +2012,2,23,23,30,100470,99300,98170,91.73,0,6.97,8.81,9.69,10.61,11.5,12.4,13.21,13.950000000000001,14.780000000000001,202.46,203.26,204.09,205.57,207.57,210.08,212.91,215.67000000000002,217.81,19.1,19.22,19.23,19.21,19.18,19.150000000000002,19.43,19.76,20.02,N/A,N/A +2012,2,24,0,30,100490,99320,98180,91.75,0,7.05,8.89,9.8,10.76,11.68,12.59,13.25,13.790000000000001,13.9,198.88,200.23000000000002,201.53,203.65,206.09,208.92000000000002,211.39000000000001,213.59,214.72,19.09,19.2,19.2,19.16,19.35,19.72,20.05,20.34,20.400000000000002,N/A,N/A +2012,2,24,1,30,100490,99320,98190,91.8,0,6.5600000000000005,8.48,9.43,10.53,11.620000000000001,12.74,13.66,14.46,14.700000000000001,195.75,196.9,198.01,199.86,202.08,204.62,206.83,208.82,210.70000000000002,19.11,19.27,19.29,19.28,19.44,19.72,20.06,20.400000000000002,20.63,N/A,N/A +2012,2,24,2,30,100490,99320,98190,89.82000000000001,0,6.99,9.07,10.05,11.040000000000001,12.01,12.98,13.84,14.61,14.620000000000001,198.18,198.4,198.72,199.35,200.5,202.14000000000001,205.29,208.81,215.95000000000002,19.56,19.84,19.92,20,19.990000000000002,19.900000000000002,19.63,19.32,20.78,N/A,N/A +2012,2,24,3,30,100490,99320,98190,89.96000000000001,0,6.72,8.44,9.24,10.01,10.77,11.59,12.780000000000001,14.13,17.05,199.21,199.71,200.28,200.9,201.8,203.03,205.63,208.82,216.4,19.51,19.77,19.830000000000002,19.84,19.8,19.7,19.57,19.43,21.03,N/A,N/A +2012,2,24,4,30,100500,99330,98200,88.92,0,7.55,9.76,10.84,12.07,13.280000000000001,14.540000000000001,15.370000000000001,16.01,16.37,200.59,200.94,201.26,201.78,202.37,203.06,204.58,206.29,212.70000000000002,19.76,20.04,20.12,20.19,20.18,20.11,19.900000000000002,19.67,19.64,N/A,N/A +2012,2,24,5,30,100520,99350,98220,88.79,0.4,7.34,9.5,10.5,11.4,12.18,12.88,13.68,14.48,15.92,204.57,205.19,205.66,206.08,206.69,207.47,208.83,210.34,214.53,19.79,20.11,20.21,20.29,20.31,20.29,20.16,20.01,19.51,N/A,N/A +2012,2,24,6,30,100560,99400,98270,89.45,0,7.390000000000001,9.540000000000001,10.5,11.39,12.14,12.790000000000001,13.59,14.42,16.25,207.44,208.64000000000001,209.58,210.92000000000002,212.36,213.93,215.45000000000002,216.9,217.77,19.7,19.97,20.05,20.14,20.2,20.23,20.19,20.11,19.7,N/A,N/A +2012,2,24,7,30,100720,99550,98420,91.11,0,4.1,5.87,6.7,7.71,8.68,9.67,10.35,10.870000000000001,11.83,252.95000000000002,246.55,240.87,236.95000000000002,234.26,232.67000000000002,233.12,234.33,238.21,19.6,19.94,20,20.04,20.06,20.06,20.02,19.97,19.68,N/A,N/A +2012,2,24,8,30,100850,99680,98540,90.82000000000001,0,6.32,8.13,8.82,9.36,9.78,10.14,10.42,10.67,11,304.8,301.55,299.09000000000003,296.39,293.54,290.56,287.44,284.52,279.41,19.42,19.62,19.63,19.56,19.48,19.39,19.3,19.22,19.02,N/A,N/A +2012,2,24,9,30,100880,99710,98570,94.62,0,3.73,5.96,6.95,7.22,7.5,7.8,8.11,8.39,8.93,296.95,294.75,293.43,293.08,293.16,293.54,294.03000000000003,294.51,295.82,18.650000000000002,19.86,20.3,20.18,20.080000000000002,19.98,19.87,19.77,19.53,N/A,N/A +2012,2,24,10,30,101070,99870,98720,69.26,0,13.35,15.15,15.81,16.37,16.830000000000002,17.23,17.5,17.72,17.93,6.25,7.58,8.32,9.01,9.59,10.08,11,11.91,13.67,17.72,17.52,17.39,17.240000000000002,17.080000000000002,16.93,16.77,16.61,16.29,N/A,N/A +2012,2,24,11,30,101270,100070,98900,62.74,0,12.27,13.55,13.9,14.120000000000001,14.280000000000001,14.4,14.48,14.56,14.68,15.1,15.46,15.74,16.01,16.28,16.53,16.78,17.01,17.5,16.52,16.16,15.97,15.77,15.57,15.38,15.18,14.99,14.6,N/A,N/A +2012,2,24,12,30,101400,100190,99020,61.47,0,14.530000000000001,16.080000000000002,16.5,16.740000000000002,16.91,17.03,17.11,17.18,17.28,13.74,13.98,14.16,14.32,14.49,14.65,14.82,14.98,15.33,15.18,14.69,14.47,14.26,14.05,13.85,13.65,13.450000000000001,13.06,N/A,N/A +2012,2,24,13,30,101550,100330,99150,59.65,0,16.14,17.93,18.43,18.72,18.92,19.07,19.17,19.26,19.39,16.88,17.12,17.25,17.38,17.5,17.62,17.740000000000002,17.86,18.1,14.370000000000001,13.790000000000001,13.56,13.33,13.120000000000001,12.92,12.71,12.51,12.120000000000001,N/A,N/A +2012,2,24,14,30,101680,100460,99280,56.78,0,14.86,16.4,16.830000000000002,17.080000000000002,17.25,17.38,17.47,17.55,17.66,16.17,16.21,16.240000000000002,16.29,16.32,16.35,16.39,16.43,16.5,13.92,13.33,13.09,12.870000000000001,12.65,12.450000000000001,12.24,12.05,11.65,N/A,N/A +2012,2,24,15,30,101780,100570,99380,56.53,0,14.17,15.610000000000001,16.01,16.23,16.38,16.5,16.57,16.64,16.73,16.4,16.54,16.64,16.740000000000002,16.82,16.9,16.990000000000002,17.06,17.23,13.92,13.34,13.1,12.870000000000001,12.66,12.46,12.25,12.06,11.66,N/A,N/A +2012,2,24,16,30,101870,100650,99460,52.58,0,13,14.280000000000001,14.620000000000001,14.83,14.96,15.06,15.13,15.18,15.26,13.59,13.75,13.86,13.950000000000001,14.040000000000001,14.120000000000001,14.200000000000001,14.27,14.43,14.19,13.65,13.42,13.200000000000001,12.99,12.790000000000001,12.58,12.39,11.99,N/A,N/A +2012,2,24,17,30,101900,100680,99500,50.09,0,12.56,13.83,14.19,14.41,14.56,14.67,14.75,14.81,14.91,12.41,12.58,12.69,12.790000000000001,12.870000000000001,12.950000000000001,13.02,13.09,13.22,14.84,14.35,14.14,13.92,13.71,13.52,13.31,13.120000000000001,12.72,N/A,N/A +2012,2,24,18,30,101980,100760,99580,46.99,0,12.23,13.49,13.84,14.05,14.200000000000001,14.31,14.39,14.46,14.55,13.21,13.4,13.51,13.620000000000001,13.72,13.81,13.9,13.99,14.16,15.51,15.08,14.88,14.67,14.46,14.27,14.06,13.870000000000001,13.48,N/A,N/A +2012,2,24,19,30,102030,100820,99640,45.28,0,11.82,13.06,13.4,13.61,13.75,13.86,13.950000000000001,14.01,14.11,12.72,12.94,13.1,13.24,13.370000000000001,13.49,13.61,13.72,13.950000000000001,16.1,15.72,15.530000000000001,15.33,15.13,14.94,14.73,14.540000000000001,14.15,N/A,N/A +2012,2,24,20,30,102060,100850,99670,43.33,0,11.700000000000001,12.950000000000001,13.290000000000001,13.5,13.64,13.75,13.83,13.9,14,12.27,12.51,12.67,12.82,12.96,13.08,13.21,13.32,13.540000000000001,16.41,16.06,15.870000000000001,15.68,15.47,15.290000000000001,15.08,14.89,14.5,N/A,N/A +2012,2,24,21,30,102080,100870,99690,42.14,0,11.52,12.73,13.06,13.26,13.39,13.5,13.57,13.63,13.71,11.13,11.35,11.51,11.65,11.78,11.9,12.02,12.13,12.34,16.57,16.23,16.05,15.85,15.65,15.47,15.26,15.07,14.68,N/A,N/A +2012,2,24,22,30,102140,100930,99750,42.89,0,10.58,11.65,11.94,12.13,12.25,12.35,12.42,12.48,12.56,14.27,14.450000000000001,14.57,14.69,14.8,14.91,15.02,15.120000000000001,15.32,16.62,16.28,16.1,15.9,15.700000000000001,15.52,15.31,15.120000000000001,14.73,N/A,N/A +2012,2,24,23,30,102270,101050,99870,40.63,0,9.950000000000001,10.94,11.21,11.36,11.47,11.55,11.61,11.65,11.72,18.85,18.740000000000002,18.68,18.61,18.55,18.48,18.41,18.35,18.22,16.46,16.11,15.93,15.73,15.530000000000001,15.34,15.14,14.950000000000001,14.56,N/A,N/A +2012,2,25,0,30,102290,101070,99890,41.09,0,12.49,13.72,14.02,14.18,14.27,14.34,14.370000000000001,14.4,14.4,19.25,19.400000000000002,19.5,19.6,19.71,19.8,19.91,20.01,20.23,16.04,15.65,15.46,15.26,15.05,14.870000000000001,14.66,14.47,14.08,N/A,N/A +2012,2,25,1,30,102440,101220,100030,42.550000000000004,0,10.72,11.74,12,12.15,12.24,12.31,12.36,12.39,12.43,24.43,24.76,24.93,25.1,25.25,25.400000000000002,25.55,25.7,25.98,15.73,15.32,15.13,14.92,14.72,14.530000000000001,14.32,14.13,13.74,N/A,N/A +2012,2,25,2,30,102440,101220,100040,43.03,0,11.74,12.9,13.21,13.38,13.5,13.6,13.66,13.72,13.790000000000001,28.01,28.21,28.330000000000002,28.44,28.53,28.61,28.69,28.75,28.88,15.35,14.9,14.700000000000001,14.49,14.280000000000001,14.09,13.88,13.69,13.3,N/A,N/A +2012,2,25,3,30,102530,101310,100120,42.980000000000004,0,11.97,13.17,13.5,13.700000000000001,13.84,13.950000000000001,14.030000000000001,14.09,14.19,30.27,30.42,30.490000000000002,30.55,30.61,30.66,30.71,30.76,30.84,15.120000000000001,14.65,14.450000000000001,14.24,14.030000000000001,13.84,13.63,13.44,13.040000000000001,N/A,N/A +2012,2,25,4,30,102570,101350,100160,46.22,0,12.05,13.21,13.52,13.700000000000001,13.82,13.91,13.97,14.02,14.08,31.76,31.92,32.04,32.14,32.230000000000004,32.31,32.39,32.46,32.6,14.75,14.26,14.05,13.84,13.63,13.44,13.23,13.040000000000001,12.64,N/A,N/A +2012,2,25,5,30,102590,101360,100170,48.59,0,12.01,13.15,13.47,13.65,13.77,13.86,13.93,13.98,14.05,30.88,31.05,31.16,31.26,31.36,31.44,31.53,31.61,31.79,14.35,13.83,13.620000000000001,13.4,13.19,13,12.790000000000001,12.61,12.22,N/A,N/A +2012,2,25,6,30,102620,101390,100200,49.730000000000004,0,12.17,13.34,13.66,13.84,13.97,14.06,14.120000000000001,14.18,14.26,32.26,32.5,32.65,32.8,32.96,33.1,33.26,33.42,33.74,14.22,13.68,13.46,13.25,13.040000000000001,12.85,12.64,12.450000000000001,12.07,N/A,N/A +2012,2,25,7,30,102680,101450,100250,50.050000000000004,0,12.08,13.24,13.540000000000001,13.72,13.83,13.93,13.99,14.040000000000001,14.13,34.08,34.480000000000004,34.730000000000004,34.97,35.21,35.43,35.67,35.89,36.35,14.1,13.55,13.33,13.120000000000001,12.91,12.73,12.52,12.34,11.96,N/A,N/A +2012,2,25,8,30,102680,101450,100250,52.84,0,11.9,12.99,13.27,13.43,13.530000000000001,13.6,13.66,13.700000000000001,13.77,36.54,36.87,37.08,37.28,37.480000000000004,37.660000000000004,37.87,38.050000000000004,38.45,13.64,13.07,12.84,12.63,12.42,12.23,12.030000000000001,11.84,11.46,N/A,N/A +2012,2,25,9,30,102740,101510,100310,55.550000000000004,0,11.03,11.96,12.19,12.31,12.38,12.44,12.48,12.51,12.56,33.24,33.660000000000004,33.92,34.160000000000004,34.410000000000004,34.63,34.88,35.11,35.61,13.23,12.64,12.41,12.200000000000001,11.99,11.81,11.61,11.42,11.05,N/A,N/A +2012,2,25,10,30,102780,101540,100340,56.550000000000004,0,10.620000000000001,11.5,11.700000000000001,11.81,11.870000000000001,11.92,11.950000000000001,11.98,12.02,34.160000000000004,34.52,34.76,34.980000000000004,35.21,35.410000000000004,35.64,35.86,36.34,12.98,12.39,12.16,11.950000000000001,11.74,11.56,11.36,11.18,10.81,N/A,N/A +2012,2,25,11,30,102870,101630,100430,55.11,0,9.38,10.07,10.21,10.28,10.32,10.35,10.36,10.38,10.4,29.25,29.68,29.95,30.2,30.46,30.7,30.96,31.21,31.76,12.96,12.4,12.18,11.97,11.77,11.58,11.38,11.200000000000001,10.83,N/A,N/A +2012,2,25,12,30,102810,101570,100370,54.870000000000005,0,10.11,10.94,11.14,11.26,11.33,11.39,11.44,11.48,11.56,39.03,39.480000000000004,39.76,40.01,40.27,40.49,40.74,40.97,41.47,12.96,12.38,12.15,11.94,11.73,11.55,11.35,11.17,10.8,N/A,N/A +2012,2,25,13,30,102830,101600,100390,53.56,0,10.06,10.92,11.15,11.28,11.370000000000001,11.44,11.5,11.540000000000001,11.620000000000001,43.08,43.45,43.67,43.88,44.07,44.25,44.45,44.63,44.980000000000004,13.06,12.48,12.25,12.040000000000001,11.83,11.64,11.43,11.24,10.86,N/A,N/A +2012,2,25,14,30,102880,101640,100440,54.34,0,9.42,10.16,10.34,10.44,10.51,10.56,10.59,10.620000000000001,10.65,42.01,42.56,42.92,43.24,43.550000000000004,43.82,44.11,44.38,44.910000000000004,13.06,12.49,12.27,12.05,11.84,11.64,11.44,11.24,10.85,N/A,N/A +2012,2,25,15,30,102890,101650,100450,54.86,0,8.42,9.01,9.15,9.22,9.26,9.290000000000001,9.3,9.31,9.32,39.04,39.75,40.19,40.58,40.97,41.300000000000004,41.660000000000004,41.99,42.660000000000004,12.91,12.36,12.13,11.92,11.71,11.51,11.31,11.11,10.72,N/A,N/A +2012,2,25,16,30,102880,101640,100440,54.27,0,7.51,8.05,8.17,8.24,8.290000000000001,8.33,8.35,8.370000000000001,8.4,45.62,46.22,46.57,46.9,47.2,47.480000000000004,47.76,48.03,48.56,13.030000000000001,12.5,12.280000000000001,12.06,11.85,11.66,11.450000000000001,11.26,10.870000000000001,N/A,N/A +2012,2,25,17,30,102880,101650,100450,48.120000000000005,0,6.45,6.9,7.01,7.08,7.13,7.16,7.19,7.21,7.25,56.58,56.84,56.97,57.09,57.2,57.300000000000004,57.39,57.480000000000004,57.65,13.3,12.8,12.59,12.38,12.17,11.98,11.77,11.58,11.18,N/A,N/A +2012,2,25,18,30,102840,101600,100400,43.410000000000004,0,7.1000000000000005,7.58,7.69,7.75,7.79,7.82,7.84,7.86,7.890000000000001,60.83,60.95,61.050000000000004,61.120000000000005,61.2,61.26,61.31,61.370000000000005,61.47,13.540000000000001,13.040000000000001,12.83,12.620000000000001,12.41,12.22,12.02,11.82,11.43,N/A,N/A +2012,2,25,19,30,102850,101610,100420,45.13,0,5.09,5.39,5.46,5.51,5.54,5.5600000000000005,5.58,5.6000000000000005,5.63,72.16,72.23,72.28,72.33,72.36,72.4,72.44,72.47,72.53,13.620000000000001,13.16,12.96,12.76,12.55,12.36,12.16,11.96,11.57,N/A,N/A +2012,2,25,20,30,102770,101540,100340,45.59,0,5.37,5.71,5.78,5.83,5.86,5.89,5.91,5.93,5.96,81.38,81.41,81.35000000000001,81.27,81.21000000000001,81.16,81.09,81.01,80.83,13.92,13.47,13.26,13.06,12.86,12.67,12.47,12.280000000000001,11.89,N/A,N/A +2012,2,25,21,30,102700,101470,100270,45.86,0,5.75,6.11,6.19,6.23,6.26,6.28,6.29,6.3,6.32,93.55,93.34,93.16,93.01,92.85000000000001,92.71000000000001,92.55,92.39,92.05,14.25,13.8,13.59,13.39,13.19,13,12.8,12.61,12.22,N/A,N/A +2012,2,25,22,30,102670,101440,100250,46.4,0,5.93,6.3,6.38,6.41,6.44,6.46,6.47,6.48,6.49,113.29,112.87,112.66,112.46000000000001,112.27,112.10000000000001,111.9,111.71000000000001,111.3,14.450000000000001,14,13.8,13.6,13.39,13.21,13,12.81,12.42,N/A,N/A +2012,2,25,23,30,102630,101400,100210,48.51,0,5.53,5.84,5.91,5.93,5.95,5.95,5.95,5.95,5.94,114.97,114.24000000000001,113.79,113.38,112.96000000000001,112.59,112.16,111.76,110.89,14.41,13.97,13.77,13.57,13.370000000000001,13.19,12.98,12.790000000000001,12.41,N/A,N/A +2012,2,26,0,30,102590,101370,100180,46.46,0,6.43,6.88,6.99,7.0600000000000005,7.11,7.15,7.18,7.21,7.26,103.57000000000001,103.11,102.78,102.47,102.16,101.88,101.57000000000001,101.28,100.68,14.790000000000001,14.36,14.16,13.96,13.76,13.57,13.370000000000001,13.18,12.790000000000001,N/A,N/A +2012,2,26,1,30,102570,101340,100150,49.050000000000004,0,4.75,5.03,5.1000000000000005,5.14,5.17,5.19,5.21,5.22,5.25,105.71000000000001,105.94,106.09,106.22,106.35000000000001,106.46000000000001,106.58,106.69,106.91,14.76,14.35,14.15,13.950000000000001,13.74,13.56,13.35,13.16,12.76,N/A,N/A +2012,2,26,2,30,102550,101330,100140,49.39,0,6.47,6.93,7.03,7.08,7.12,7.140000000000001,7.15,7.17,7.17,105.96000000000001,105.60000000000001,105.31,105.02,104.75,104.5,104.24000000000001,103.99000000000001,103.5,15.19,14.780000000000001,14.58,14.38,14.17,13.98,13.77,13.58,13.19,N/A,N/A +2012,2,26,3,30,102500,101280,100090,54.5,0,5.51,5.86,5.94,5.98,6.0200000000000005,6.04,6.0600000000000005,6.08,6.11,107.19,107.15,107.15,107.14,107.15,107.16,107.18,107.2,107.24000000000001,14.9,14.48,14.280000000000001,14.08,13.88,13.69,13.48,13.290000000000001,12.9,N/A,N/A +2012,2,26,4,30,102480,101260,100070,54.19,0,6.42,6.82,6.91,6.95,6.97,6.99,6.99,6.99,6.99,119.54,119.14,118.91,118.71000000000001,118.51,118.35000000000001,118.17,118,117.66,15.31,14.9,14.71,14.51,14.31,14.120000000000001,13.91,13.73,13.33,N/A,N/A +2012,2,26,5,30,102460,101240,100050,54.660000000000004,0,5.96,6.38,6.48,6.54,6.58,6.62,6.640000000000001,6.66,6.69,115.59,115.56,115.56,115.55,115.54,115.54,115.53,115.53,115.52,15.38,14.98,14.780000000000001,14.59,14.38,14.200000000000001,13.99,13.8,13.41,N/A,N/A +2012,2,26,6,30,102440,101220,100040,56.22,0,6.11,6.5600000000000005,6.66,6.72,6.76,6.79,6.8100000000000005,6.83,6.8500000000000005,113.38,113.49000000000001,113.55,113.61,113.67,113.73,113.79,113.85000000000001,113.96000000000001,15.44,15.07,14.88,14.68,14.48,14.3,14.09,13.9,13.51,N/A,N/A +2012,2,26,7,30,102440,101220,100040,59.46,0,5.44,5.83,5.92,5.98,6.0200000000000005,6.05,6.07,6.09,6.12,110.66,110.87,111.01,111.14,111.27,111.38,111.51,111.62,111.87,15.39,15.02,14.83,14.63,14.43,14.24,14.040000000000001,13.85,13.46,N/A,N/A +2012,2,26,8,30,102390,101170,99990,62.15,0,4.92,5.2700000000000005,5.36,5.42,5.46,5.5,5.5200000000000005,5.55,5.59,104.64,105.16,105.47,105.76,106.03,106.27,106.52,106.75,107.22,15.46,15.1,14.92,14.72,14.52,14.34,14.13,13.94,13.55,N/A,N/A +2012,2,26,9,30,102370,101150,99970,64.02,0,4.69,5.01,5.09,5.14,5.18,5.21,5.23,5.26,5.29,97.16,97.64,97.95,98.25,98.54,98.81,99.11,99.38,99.99000000000001,15.58,15.23,15.040000000000001,14.85,14.65,14.47,14.26,14.08,13.69,N/A,N/A +2012,2,26,10,30,102330,101110,99940,62.39,0,4.05,4.4,4.5200000000000005,4.6000000000000005,4.67,4.73,4.78,4.83,4.91,116.06,117.79,118.71000000000001,119.45,120.09,120.64,121.16,121.61,122.46000000000001,16.22,15.9,15.72,15.540000000000001,15.34,15.16,14.96,14.77,14.38,N/A,N/A +2012,2,26,11,30,102310,101100,99920,64.83,0,5.33,5.63,5.68,5.69,5.7,5.69,5.69,5.68,5.65,140.08,140.17000000000002,140.32,140.48,140.64000000000001,140.8,140.97,141.13,141.46,16.330000000000002,16,15.82,15.63,15.43,15.25,15.040000000000001,14.85,14.46,N/A,N/A +2012,2,26,12,30,102300,101090,99910,66.35,0,5.07,5.46,5.55,5.6000000000000005,5.64,5.66,5.67,5.68,5.69,133.33,133.66,133.8,133.89000000000001,133.96,134.02,134.06,134.11,134.17000000000002,16.3,15.98,15.8,15.610000000000001,15.41,15.23,15.030000000000001,14.84,14.450000000000001,N/A,N/A +2012,2,26,13,30,102300,101090,99910,69.74,0,5.4,5.8100000000000005,5.91,5.97,6.01,6.04,6.0600000000000005,6.07,6.09,124.19,124.42,124.58,124.73,124.87,125,125.12,125.24000000000001,125.46000000000001,16.22,15.9,15.72,15.52,15.32,15.14,14.93,14.74,14.35,N/A,N/A +2012,2,26,14,30,102310,101090,99920,70.7,0,4.43,4.76,4.84,4.89,4.92,4.95,4.97,4.99,5.0200000000000005,127.54,127.03,126.83,126.67,126.53,126.42,126.32000000000001,126.24000000000001,126.10000000000001,16.21,15.88,15.71,15.51,15.31,15.13,14.92,14.74,14.35,N/A,N/A +2012,2,26,15,30,102310,101100,99920,72.57000000000001,0,4.18,4.44,4.5,4.53,4.54,4.55,4.55,4.55,4.54,121.92,122.2,122.48,122.76,123.04,123.29,123.56,123.83,124.4,16.31,15.98,15.81,15.610000000000001,15.42,15.23,15.030000000000001,14.84,14.450000000000001,N/A,N/A +2012,2,26,16,30,102290,101080,99900,77.83,0,4.17,4.39,4.41,4.41,4.4,4.39,4.37,4.3500000000000005,4.3,125.32000000000001,126.02,126.42,126.81,127.19,127.54,127.94,128.32,129.16,16.32,15.99,15.81,15.620000000000001,15.42,15.24,15.040000000000001,14.85,14.46,N/A,N/A +2012,2,26,17,30,102260,101050,99870,78.57000000000001,0,3.75,3.99,4.04,4.0600000000000005,4.07,4.08,4.08,4.08,4.07,108.53,108.94,109.2,109.4,109.57000000000001,109.71000000000001,109.84,109.95,110.16,16.37,16.05,15.870000000000001,15.68,15.48,15.290000000000001,15.09,14.9,14.51,N/A,N/A +2012,2,26,18,30,102250,101040,99860,79.51,0,4.44,4.75,4.82,4.8500000000000005,4.87,4.89,4.89,4.9,4.9,110.86,110.78,110.76,110.76,110.76,110.77,110.8,110.82000000000001,110.92,16.46,16.14,15.96,15.77,15.57,15.39,15.18,15,14.61,N/A,N/A +2012,2,26,19,30,102200,100990,99820,84.47,0,4.34,4.66,4.75,4.8100000000000005,4.86,4.91,4.95,5,5.11,100.41,100.52,100.65,100.79,100.95,101.10000000000001,101.28,101.46000000000001,101.93,16.35,16.02,15.84,15.65,15.46,15.290000000000001,15.09,14.91,14.540000000000001,N/A,N/A +2012,2,26,20,30,102150,100950,99780,83.82000000000001,0,5.8500000000000005,6.37,6.49,6.5600000000000005,6.6000000000000005,6.63,6.65,6.66,6.66,115.85000000000001,116.39,116.72,117.02,117.31,117.57000000000001,117.84,118.09,118.60000000000001,16.84,16.54,16.36,16.17,15.98,15.790000000000001,15.59,15.41,15.02,N/A,N/A +2012,2,26,21,30,102130,100920,99750,84.48,0,6.41,6.91,7.01,7.05,7.0600000000000005,7.0600000000000005,7.04,7.0200000000000005,6.96,107.49000000000001,107.69,107.82000000000001,107.97,108.13,108.28,108.47,108.65,109.11,16.73,16.42,16.25,16.06,15.860000000000001,15.68,15.48,15.3,14.91,N/A,N/A +2012,2,26,22,30,102090,100880,99710,85.98,0,6.66,7.25,7.390000000000001,7.46,7.5,7.5200000000000005,7.5200000000000005,7.5200000000000005,7.5,106.94,107.05,107.13,107.2,107.27,107.34,107.43,107.5,107.7,16.76,16.45,16.28,16.09,15.9,15.72,15.51,15.33,14.950000000000001,N/A,N/A +2012,2,26,23,30,102060,100850,99680,88.66,0,6.72,7.3,7.44,7.51,7.55,7.58,7.59,7.6000000000000005,7.62,99.71000000000001,99.93,100.10000000000001,100.28,100.46000000000001,100.64,100.86,101.07000000000001,101.60000000000001,16.72,16.42,16.240000000000002,16.05,15.860000000000001,15.68,15.48,15.3,14.92,N/A,N/A +2012,2,27,0,30,102070,100860,99700,89.61,0,6.8100000000000005,7.49,7.68,7.8,7.890000000000001,7.96,8.02,8.07,8.17,104.66,104.88,105.01,105.16,105.31,105.46000000000001,105.63,105.79,106.17,16.93,16.65,16.490000000000002,16.3,16.11,15.93,15.73,15.55,15.18,N/A,N/A +2012,2,27,1,30,102050,100850,99680,92.78,0,7.1000000000000005,7.76,7.94,8.05,8.14,8.22,8.31,8.4,8.74,99.79,100.09,100.31,100.58,100.89,101.2,101.68,102.17,103.86,16.93,16.64,16.47,16.29,16.1,15.92,15.73,15.56,15.200000000000001,N/A,N/A +2012,2,27,2,30,102060,100860,99690,90.93,0,6.33,7.1000000000000005,7.36,7.59,7.79,7.97,8.15,8.31,8.66,105.66,105.97,106.16,106.36,106.55,106.75,106.95,107.15,107.59,17.240000000000002,16.98,16.830000000000002,16.66,16.48,16.31,16.12,15.950000000000001,15.59,N/A,N/A +2012,2,27,3,30,102080,100880,99710,93.56,0,5.59,6.24,6.47,6.66,6.83,6.99,7.15,7.3,7.63,106.99000000000001,107.31,107.56,107.87,108.2,108.53,108.92,109.28,110.06,17.2,16.94,16.79,16.61,16.44,16.27,16.09,15.92,15.57,N/A,N/A +2012,2,27,4,30,102090,100880,99720,94.14,0,5.55,6.33,6.63,6.92,7.18,7.43,7.68,7.92,8.41,102.59,102.85000000000001,103.08,103.34,103.62,103.9,104.27,104.64,105.67,17.240000000000002,17,16.85,16.69,16.52,16.36,16.19,16.03,15.71,N/A,N/A +2012,2,27,5,30,102080,100880,99710,94.10000000000001,0,5.93,6.73,7.03,7.3100000000000005,7.5600000000000005,7.8100000000000005,8.07,8.31,8.85,92.4,93.05,93.61,94.36,95.33,96.38,97.85000000000001,99.34,103.58,17.32,17.09,16.96,16.8,16.66,16.52,16.39,16.27,16.09,N/A,N/A +2012,2,27,6,30,102090,100890,99720,95.77,0,5.28,5.91,6.16,6.390000000000001,6.63,6.88,7.21,7.54,8.46,80.2,81.63,82.83,84.38,86.23,88.18,90.71000000000001,93.24,99.71000000000001,17.26,17.02,16.88,16.73,16.59,16.46,16.330000000000002,16.22,16.080000000000002,N/A,N/A +2012,2,27,7,30,102150,100950,99780,96.42,0,4.3500000000000005,5.05,5.37,5.72,6.07,6.44,6.84,7.23,8.03,82.99,84.58,85.94,87.72,89.72,91.82000000000001,94.14,96.41,103.17,17.38,17.16,17.04,16.91,16.78,16.66,16.55,16.44,16.3,N/A,N/A +2012,2,27,8,30,102140,100940,99780,96.48,0,4.25,5,5.3500000000000005,5.71,6.07,6.41,6.76,7.08,7.51,83.07000000000001,84.53,85.7,87.16,88.77,90.43,92.5,94.47,100.51,17.400000000000002,17.2,17.07,16.93,16.8,16.68,16.56,16.45,16.25,N/A,N/A +2012,2,27,9,30,102160,100960,99800,96.75,0,5.26,5.98,6.29,6.6000000000000005,6.9,7.2,7.51,7.78,8,68.32000000000001,69.66,70.92,72.75,75.23,78.13,83.17,88.37,100.18,17.35,17.13,17.01,16.88,16.77,16.67,16.62,16.59,16.54,N/A,N/A +2012,2,27,10,30,102180,100980,99810,97.32000000000001,0,5.38,6.03,6.3,6.5600000000000005,6.8,7.03,7.16,7.25,7.16,64.4,65.06,65.74,66.86,68.61,70.74,75.74,80.99,91.53,17.25,17.02,16.89,16.740000000000002,16.63,16.54,16.51,16.48,16.35,N/A,N/A +2012,2,27,11,30,102210,101010,99840,97.28,2.6,6.04,6.76,7.05,7.3100000000000005,7.55,7.78,8.040000000000001,8.28,8.44,60.88,61.550000000000004,62.14,63.01,64.23,65.65,68.49,71.66,82.89,17.23,17,16.87,16.72,16.6,16.5,16.44,16.39,16.36,N/A,N/A +2012,2,27,12,30,102210,101010,99840,97.38,0.7000000000000001,6.5600000000000005,7.6000000000000005,7.97,8.18,8.4,8.64,8.74,8.81,8.85,51.4,53.34,54.5,55.49,57.44,59.800000000000004,61.870000000000005,63.78,68.44,17.03,16.77,16.62,16.46,16.36,16.29,16.23,16.19,16.15,N/A,N/A +2012,2,27,13,30,102230,101020,99850,97,0.7000000000000001,7.62,8.370000000000001,8.65,8.950000000000001,9.21,9.44,9.700000000000001,9.91,9.99,55.69,56.15,56.59,57.2,57.88,58.56,60.33,62.11,65.87,16.84,16.55,16.39,16.22,16.06,15.91,15.92,15.950000000000001,15.99,N/A,N/A +2012,2,27,14,30,102280,101070,99900,96.11,0.4,8.41,9.06,9.21,9.34,9.6,9.91,10.27,10.57,10.68,49.03,49.42,49.76,50.24,51.17,52.300000000000004,54.04,55.76,59.86,16.62,16.3,16.14,15.96,15.82,15.69,15.71,15.76,16.16,N/A,N/A +2012,2,27,15,30,102300,101100,99920,95.8,0.4,8.18,8.84,8.98,9.05,9.13,9.21,9.52,9.85,10.66,55.160000000000004,55.33,55.47,55.660000000000004,55.96,56.28,57.120000000000005,58.1,61.620000000000005,16.47,16.14,15.96,15.780000000000001,15.59,15.42,15.25,15.120000000000001,15.11,N/A,N/A +2012,2,27,16,30,102310,101100,99930,95.64,0,8.19,8.83,8.97,9.05,9.13,9.21,9.620000000000001,10.05,10.93,51.99,52.21,52.410000000000004,52.65,53,53.38,54.6,55.93,59.59,16.43,16.09,15.92,15.73,15.55,15.38,15.23,15.11,15.18,N/A,N/A +2012,2,27,17,30,102310,101100,99930,95.13,0,7.8500000000000005,8.51,8.69,8.8,8.91,9.02,9.26,9.56,10.73,55.32,55.58,55.75,55.96,56.230000000000004,56.53,57.09,57.74,60.58,16.47,16.14,15.96,15.77,15.59,15.41,15.23,15.07,14.9,N/A,N/A +2012,2,27,18,30,102300,101090,99920,94.59,0,7.76,8.42,8.6,8.73,8.88,9.040000000000001,9.51,10.02,11.11,57.95,58.15,58.300000000000004,58.49,58.76,59.06,59.75,60.49,62.27,16.6,16.29,16.12,15.93,15.75,15.57,15.41,15.27,15.13,N/A,N/A +2012,2,27,19,30,102290,101080,99910,94.23,0,8.17,8.93,9.15,9.31,9.5,9.700000000000001,10.13,10.57,11.57,60.77,60.870000000000005,60.99,61.13,61.32,61.54,61.88,62.230000000000004,63.04,16.76,16.44,16.27,16.09,15.91,15.74,15.57,15.42,15.18,N/A,N/A +2012,2,27,20,30,102280,101070,99900,93.5,0,7.930000000000001,8.76,9.05,9.31,9.6,9.9,10.31,10.700000000000001,11.290000000000001,64.91,64.7,64.52,64.33,64.08,63.82,63.57,63.33,62.46,16.990000000000002,16.7,16.54,16.35,16.18,16.01,15.84,15.68,15.41,N/A,N/A +2012,2,27,21,30,102260,101050,99880,93.61,0,8.48,9.33,9.56,9.74,9.88,10.03,10.21,10.41,11.1,66.85,66.79,66.73,66.66,66.58,66.5,66.36,66.24,65.98,16.9,16.6,16.43,16.240000000000002,16.05,15.870000000000001,15.69,15.51,15.18,N/A,N/A +2012,2,27,22,30,102250,101050,99880,93.65,0,8.69,9.49,9.68,9.8,9.89,9.97,10.09,10.22,10.82,67.41,67.41,67.43,67.45,67.49,67.52,67.59,67.69,68.51,16.77,16.45,16.28,16.09,15.9,15.72,15.530000000000001,15.35,15.030000000000001,N/A,N/A +2012,2,27,23,30,102250,101040,99870,94.16,0,8.07,8.78,8.94,9.040000000000001,9.1,9.15,9.21,9.28,9.6,69.85000000000001,69.96000000000001,70.04,70.13,70.25,70.37,70.58,70.8,72.05,16.73,16.41,16.240000000000002,16.04,15.860000000000001,15.68,15.48,15.31,14.97,N/A,N/A +2012,2,28,0,30,102250,101040,99870,94.47,0,7.74,8.4,8.540000000000001,8.620000000000001,8.68,8.72,8.8,8.91,9.49,70.29,70.5,70.64,70.81,71.02,71.24,71.62,72.07000000000001,74.69,16.73,16.41,16.240000000000002,16.05,15.860000000000001,15.68,15.49,15.32,15.06,N/A,N/A +2012,2,28,1,30,102250,101040,99870,94.4,0,7.84,8.540000000000001,8.71,8.81,8.89,8.97,9.09,9.25,9.91,74.47,74.49,74.52,74.60000000000001,74.72,74.86,75.12,75.48,77.86,16.79,16.48,16.31,16.12,15.93,15.76,15.57,15.4,15.13,N/A,N/A +2012,2,28,2,30,102280,101070,99900,95.82000000000001,0,7.3500000000000005,7.930000000000001,8.08,8.15,8.22,8.3,8.48,8.69,9.35,78.3,78.52,78.68,78.89,79.15,79.44,80.16,81.05,85.01,16.67,16.36,16.19,16,15.81,15.64,15.47,15.33,15.16,N/A,N/A +2012,2,28,3,30,102260,101060,99880,95.82000000000001,0,7.04,7.640000000000001,7.79,7.890000000000001,8.01,8.120000000000001,8.46,8.8,9.38,80.8,81.15,81.37,81.65,82.03,82.44,83.66,85.01,89.07000000000001,16.8,16.490000000000002,16.32,16.13,15.94,15.77,15.6,15.450000000000001,15.31,N/A,N/A +2012,2,28,4,30,102230,101020,99860,96.16,0,6.08,6.640000000000001,6.9,7.25,7.6000000000000005,7.930000000000001,8.19,8.43,8.790000000000001,85.05,85.58,86.16,87.10000000000001,88.4,89.85000000000001,91.78,93.68,98.17,16.89,16.6,16.44,16.27,16.12,15.97,15.9,15.84,15.8,N/A,N/A +2012,2,28,5,30,102230,101020,99860,96.34,0,5.96,6.97,7.390000000000001,7.65,7.96,8.290000000000001,8.58,8.84,9.26,90.93,92.3,93.28,94.32000000000001,95.95,97.88,100.02,102.06,106.42,17.04,16.79,16.65,16.5,16.4,16.35,16.3,16.26,16.2,N/A,N/A +2012,2,28,6,30,102210,101010,99840,96.38,0,5.97,6.87,7.2700000000000005,7.640000000000001,7.95,8.2,8.370000000000001,8.5,8.51,97.3,98.78,100.15,102.2,104.63,107.2,110.16,112.93,118.29,17.330000000000002,17.12,17.02,16.95,16.93,16.95,17.03,17.11,17.22,N/A,N/A +2012,2,28,7,30,102220,101020,99850,96.85000000000001,0.4,5.74,6.5,6.79,7.0600000000000005,7.32,7.57,7.84,8.09,8.49,106.46000000000001,107.25,107.9,108.79,109.9,111.11,112.98,114.99000000000001,122.39,17.53,17.31,17.19,17.05,16.93,16.82,16.75,16.69,16.51,N/A,N/A +2012,2,28,8,30,102190,100990,99820,97.71000000000001,0,4.04,4.8,5.22,5.74,6.33,6.97,7.45,7.86,8.26,111.2,112.52,113.29,113.76,113.5,112.78,112.42,112.19,114.48,17.57,17.330000000000002,17.18,17.03,16.96,16.94,16.85,16.76,16.42,N/A,N/A +2012,2,28,9,30,102160,100960,99790,97.23,0,5.24,5.91,6.15,6.36,6.55,6.7,6.84,6.96,7.3100000000000005,127.23,128.13,128.63,129.15,129.56,129.88,129.91,129.84,128.26,17.54,17.3,17.16,16.990000000000002,16.85,16.73,16.61,16.51,16.27,N/A,N/A +2012,2,28,10,30,102150,100940,99780,96.03,0,4.93,5.49,5.71,5.93,6.18,6.44,6.8,7.15,7.7,112.83,113.55,114.17,115.02,116.13,117.39,119.36,121.3,123.58,17.400000000000002,17.13,16.96,16.76,16.59,16.45,16.330000000000002,16.240000000000002,16.01,N/A,N/A +2012,2,28,11,30,102120,100910,99750,95.34,0,5.3,5.8,5.94,6.03,6.09,6.13,6.17,6.21,6.3,119.33,121.12,122.25,123.45,124.96000000000001,126.56,129.42000000000002,132.27,138.55,17.29,16.990000000000002,16.82,16.62,16.41,16.22,16.05,15.9,15.540000000000001,N/A,N/A +2012,2,28,12,30,102120,100910,99740,99.22,0,5.51,5.8500000000000005,5.94,6.01,6.13,6.2700000000000005,6.7,7.15,8.01,130.92000000000002,131.41,131.85,132.43,133.43,134.6,137.37,140.49,149.72,16.04,15.72,15.56,15.38,15.18,14.97,14.75,14.780000000000001,17.47,N/A,N/A +2012,2,28,13,30,102120,100910,99740,99.22,0,6.390000000000001,6.86,6.93,6.93,6.88,6.8100000000000005,6.72,6.63,6.69,130.75,131.28,131.59,131.92000000000002,132.35,132.8,133.99,135.52,144.74,16.44,16.15,16.02,15.870000000000001,15.72,15.58,15.4,15.19,14.89,N/A,N/A +2012,2,28,14,30,102130,100930,99760,98.08,0.4,5.71,6.0600000000000005,6.3100000000000005,6.78,7.19,7.55,7.69,7.79,8.03,134.05,135.89000000000001,138.29,142.68,146,148.68,149.38,149.84,151.96,16.34,16.01,15.88,15.81,15.75,15.69,15.6,15.51,15.48,N/A,N/A +2012,2,28,15,30,102120,100920,99760,98.24000000000001,0,5.6000000000000005,6.48,6.99,7.640000000000001,8.040000000000001,8.26,8.41,8.540000000000001,8.68,144.81,146.44,148.19,150.98,152.78,153.92000000000002,154.82,155.58,156.53,17.150000000000002,16.89,16.79,16.72,16.64,16.56,16.47,16.38,16.19,N/A,N/A +2012,2,28,16,30,102110,100910,99750,97.9,0,6.01,7.05,7.51,7.98,8.36,8.67,8.85,8.99,9.200000000000001,143.27,145.56,147.31,149.58,152.06,154.57,158.37,162.21,171.61,17.740000000000002,17.53,17.41,17.31,17.240000000000002,17.18,17.14,17.11,16.98,N/A,N/A +2012,2,28,17,30,102080,100880,99730,97.67,0,4.46,5.46,5.97,6.59,7.18,7.75,8.38,9,10.59,136.49,138.59,140.69,144.15,147.63,151.07,153.01,154.69,162.4,17.92,17.8,17.740000000000002,17.7,17.66,17.62,17.63,17.64,17.86,N/A,N/A +2012,2,28,18,30,102060,100870,99710,97.26,0,4.73,5.8,6.29,6.8100000000000005,7.34,7.88,8.76,9.63,9.89,144.84,146.64000000000001,148.07,150.01,152.02,154.07,161.33,169.07,172.97,18.11,18.04,18.02,18.01,18.03,18.07,18.18,18.3,18.23,N/A,N/A +2012,2,28,19,30,102040,100850,99690,96.58,0,4.5,5.75,6.42,7.24,8.3,9.56,10.540000000000001,11.4,11.57,149.05,151.83,154.4,158.19,162.72,167.9,172.81,177.32,179.81,18.45,18.38,18.36,18.38,18.490000000000002,18.650000000000002,18.79,18.900000000000002,18.78,N/A,N/A +2012,2,28,20,30,101990,100800,99640,95.88,0,4.87,6.24,6.95,7.79,8.540000000000001,9.23,9.61,9.9,10.22,143.96,147.25,150.65,156.20000000000002,163.04,170.81,174.84,177.75,180.1,18.59,18.580000000000002,18.5,18.330000000000002,18.47,18.81,18.96,19.06,19.01,N/A,N/A +2012,2,28,21,30,101960,100770,99620,95.17,0,4.15,5.61,6.3,6.98,8,9.31,9.58,9.6,9.65,130.4,133.91,137.98,145.02,156.82,172.66,176.14000000000001,176.61,177.43,18.57,18.7,18.79,18.96,19.080000000000002,19.18,19.12,19.03,18.84,N/A,N/A +2012,2,28,22,30,101890,100700,99550,92.55,0,5.87,8.02,9.05,10.03,10.31,10.18,10.6,11.1,11.72,142.38,148.67000000000002,153.52,159.36,164.26,168.26,173.59,178.86,181.1,18.93,19.16,19.25,19.32,19.34,19.330000000000002,19.29,19.240000000000002,19.19,N/A,N/A +2012,2,28,23,30,101860,100670,99530,92.46000000000001,0,5.63,7.55,8.49,9.44,10.200000000000001,10.82,11.66,12.51,12.870000000000001,140.67000000000002,144.83,148.42000000000002,153.51,159.02,164.87,169.49,173.61,174.9,18.900000000000002,19.18,19.3,19.44,19.51,19.55,19.61,19.68,19.580000000000002,N/A,N/A +2012,3,1,0,30,101600,100410,99270,93.62,0.4,4.67,6.26,7,7.71,8.03,8.040000000000001,7.88,7.68,7.41,151.61,156.83,162.25,171.33,178.07,182.83,185.09,186.39000000000001,188.34,19.080000000000002,19.28,19.35,19.44,19.32,19.06,19.7,20.56,20.78,N/A,N/A +2012,3,1,1,30,101580,100400,99250,92.55,0,5.34,7.17,8.03,8.8,9.31,9.61,9.53,9.35,8.540000000000001,160.39000000000001,164.20000000000002,168.09,174.53,179.6,183.64000000000001,185.1,185.69,189.75,19.3,19.6,19.72,19.82,19.740000000000002,19.56,19.31,19.07,19.79,N/A,N/A +2012,3,1,2,30,101580,100400,99260,92.09,0,5.95,7.96,8.91,9.65,10.01,10.09,9.67,9.16,9.06,161.5,164.4,167.52,172.9,177.59,181.68,184.77,187.19,187.33,19.38,19.650000000000002,19.75,19.79,19.81,19.8,19.740000000000002,19.67,19.35,N/A,N/A +2012,3,1,3,30,101580,100400,99260,92.81,0.30000000000000004,5.15,7.04,7.9,8.59,8.950000000000001,9.06,9.16,9.27,9.3,178.63,179.08,180.44,184.24,187.13,189.28,190.94,192.3,192.26,19.25,19.31,19.25,19.13,19.29,19.69,19.95,20.150000000000002,19.8,N/A,N/A +2012,3,1,4,30,101570,100380,99230,93.73,0.6000000000000001,5.17,6.93,7.84,8.8,9.59,10.25,10.34,10.28,9.59,174.67000000000002,177.73,180.77,185.9,191.22,196.75,199.09,200.28,200.17000000000002,19.02,19.16,19.21,19.26,19.12,18.86,18.91,19.04,19.96,N/A,N/A +2012,3,1,5,30,101570,100390,99240,93.7,0.6000000000000001,4.71,6.25,6.98,7.7700000000000005,8.48,9.17,9.46,9.6,9.6,187.93,188,188,188.03,189.11,191.1,194.70000000000002,198.55,202.03,19.07,19.240000000000002,19.3,19.330000000000002,19.34,19.330000000000002,19.17,18.97,19.04,N/A,N/A +2012,3,1,6,30,101570,100390,99240,95.05,0.1,5.71,7.47,8.36,9.200000000000001,9.8,10.19,10.3,10.32,10.14,202.66,203.08,203.3,203.51,203.45000000000002,203.22,202.99,202.78,202.91,19.25,19.26,19.23,19.150000000000002,19.06,18.95,18.830000000000002,18.71,18.46,N/A,N/A +2012,3,1,7,30,101580,100390,99250,95.23,0,5.87,7.16,7.66,8.09,8.38,8.59,8.73,8.85,9.14,202.29,202.35,202.38,202.36,202.27,202.11,202.65,203.37,206.20000000000002,19.21,19.17,19.12,19.04,18.98,18.93,18.85,18.77,18.490000000000002,N/A,N/A +2012,3,1,8,30,101570,100380,99230,95.85000000000001,0.4,4.18,5.22,5.67,6.21,6.78,7.42,7.87,8.23,8.83,206.4,206.75,207.19,207.84,208.44,209.03,209.58,210.1,211.3,19.12,19.13,19.12,19.07,19.01,18.93,18.830000000000002,18.73,18.57,N/A,N/A +2012,3,1,9,30,101560,100370,99220,96.58,0,4.53,5.79,6.43,7.18,7.79,8.3,8.66,8.97,9.17,226.55,227.21,227.16,226.03,225.03,224.09,223.19,222.29,224.16,18.98,18.98,18.95,18.89,18.82,18.75,18.72,18.7,18.56,N/A,N/A +2012,3,1,10,30,101540,100360,99220,94.36,0,6.23,7.45,7.94,8.31,8.59,8.8,9.05,9.3,9.64,217.58,218.18,218.67000000000002,219.3,219.75,220.08,220.9,221.79,221.58,19.38,19.41,19.38,19.31,19.22,19.12,18.990000000000002,18.88,18.64,N/A,N/A +2012,3,1,11,30,101520,100340,99190,95.33,0,4.3100000000000005,5.69,6.34,6.97,7.4,7.68,8.040000000000001,8.4,8.700000000000001,215.29,216.34,216.63,215.38,214.38,213.54,214.02,214.91,215.05,19.16,19.32,19.39,19.46,19.45,19.39,19.34,19.29,19.1,N/A,N/A +2012,3,1,12,30,101530,100350,99200,96.45,0.4,3.42,4.83,5.5200000000000005,6.11,6.5600000000000005,6.93,7.19,7.4,7.78,203.38,205.98000000000002,208,210.28,211.93,213.07,213.15,212.89000000000001,212.74,19,19.07,19.11,19.13,19.16,19.19,19.150000000000002,19.080000000000002,18.92,N/A,N/A +2012,3,1,13,30,101520,100340,99190,96.31,0.4,2.84,4.25,5.01,5.98,6.68,7.12,7.46,7.74,8.39,186.78,196.81,203.57,209.34,212.29,212.96,213.06,212.99,213.34,19.11,19.23,19.27,19.3,19.330000000000002,19.34,19.32,19.3,19.31,N/A,N/A +2012,3,1,14,30,101540,100360,99210,96.39,0,2.91,4.04,4.67,5.62,6.3100000000000005,6.7700000000000005,7.21,7.62,8.32,167.99,174.05,181.16,195.83,204.05,206.55,207.52,207.94,210.52,19.1,19.16,19.2,19.27,19.26,19.2,19.18,19.19,19.26,N/A,N/A +2012,3,1,15,30,101520,100340,99190,95.91,0.30000000000000004,4.64,6.13,6.93,7.83,8.36,8.59,8.6,8.57,8.89,173.08,178.65,183.6,190.67000000000002,195.43,198.51,201.28,203.72,207.17000000000002,19.16,19.14,19.17,19.32,19.48,19.63,19.72,19.79,19.71,N/A,N/A +2012,3,1,16,30,101500,100320,99180,95.15,0,6.15,7.5200000000000005,8.06,8.42,8.74,9.05,9.14,9.18,9.21,179.48,181.83,183.96,187.20000000000002,192.13,198.5,201.59,203.53,206.09,19.32,19.39,19.400000000000002,19.400000000000002,19.490000000000002,19.64,19.73,19.81,19.72,N/A,N/A +2012,3,1,17,30,101450,100270,99130,97.09,0.30000000000000004,5.43,6.45,6.94,7.54,8.24,9.02,9.43,9.69,9.75,173.6,175.6,177.63,181.18,185.39000000000001,190.3,194.14000000000001,197.4,200.8,19.04,18.92,18.86,18.830000000000002,18.98,19.27,19.55,19.81,19.88,N/A,N/A +2012,3,1,18,30,101420,100240,99100,95.53,0,5.7700000000000005,7,7.61,8.370000000000001,9.02,9.6,9.85,9.98,10.120000000000001,180.15,181.96,184,187.82,192.12,196.79,199.54,201.47,203.51,19.400000000000002,19.43,19.51,19.76,20.02,20.3,20.37,20.39,20.2,N/A,N/A +2012,3,1,19,30,101400,100220,99070,95.01,0,5.36,6.54,7.08,7.7,8.44,9.34,10.26,11.17,11.700000000000001,180.28,181.59,183.03,185.70000000000002,188.87,192.66,195.52,198,199.91,19.46,19.46,19.46,19.490000000000002,19.57,19.71,19.89,20.07,20.22,N/A,N/A +2012,3,1,20,30,101330,100150,99020,95.08,0,4.74,5.95,6.5600000000000005,7.32,8.3,9.540000000000001,10.05,10.290000000000001,10.83,175.59,176.52,177.95000000000002,181.14000000000001,186.15,193.03,195.52,196.49,198.67000000000002,19.45,19.47,19.5,19.6,19.86,20.22,20.37,20.42,20.46,N/A,N/A +2012,3,1,21,30,101260,100090,98950,94.91,0,5.57,6.86,7.45,8.11,8.88,9.790000000000001,10.36,10.790000000000001,11.16,169.93,171.13,172.44,174.85,179.02,184.71,190.42000000000002,195.79,198.70000000000002,19.52,19.52,19.52,19.54,19.63,19.79,19.96,20.13,20.2,N/A,N/A +2012,3,1,22,30,101200,100020,98880,93.97,0,5.64,7.25,8.01,8.75,9.23,9.5,9.93,10.42,11.19,162.6,165.49,168.09,171.95000000000002,176.59,181.89000000000001,187.54,193.07,198.12,19.54,19.580000000000002,19.54,19.44,19.26,19.01,19.07,19.22,19.92,N/A,N/A +2012,3,1,23,30,101130,99950,98810,94.23,0,5.88,7.37,8.05,8.73,9.290000000000001,9.76,10.14,10.49,10.86,161.20000000000002,163.74,165.86,168.89000000000001,172.5,176.63,181.43,186.14000000000001,190.43,19.42,19.46,19.42,19.330000000000002,19.06,18.68,18.650000000000002,18.71,19.76,N/A,N/A +2012,3,2,0,30,101080,99910,98770,94.18,0,5.24,6.63,7.26,7.97,8.76,9.67,10.47,11.21,11.97,168.07,170.57,172.51,175.06,177.82,180.97,184.8,188.73,191.76,19.46,19.53,19.53,19.490000000000002,19.34,19.080000000000002,19.02,19.02,19.44,N/A,N/A +2012,3,2,1,30,101050,99870,98740,96.01,0.7000000000000001,6.390000000000001,7.79,8.51,9.370000000000001,10.32,11.39,12.23,12.98,13.22,171.22,172.38,173.49,175.25,177.41,180,182.91,185.78,188.72,19.04,18.96,18.89,18.78,18.61,18.39,18.93,19.63,20.59,N/A,N/A +2012,3,2,2,30,101020,99840,98700,95.14,0,6.82,8.27,8.98,9.77,10.58,11.450000000000001,12.32,13.15,14.15,166.77,167.65,168.46,169.85,171.70000000000002,174.08,178.01,182.36,189.21,19.21,19.19,19.16,19.1,19.01,18.89,18.72,18.56,20.79,N/A,N/A +2012,3,2,3,30,100980,99810,98660,93.87,0,8.57,10.43,11.34,12.31,13.13,13.84,14.24,14.51,15.1,173.74,174.99,175.97,177.4,179.19,181.39000000000001,184.71,188.15,193.43,19.46,19.39,19.28,19.05,18.78,18.46,18.29,18.18,18.96,N/A,N/A +2012,3,2,4,30,100940,99770,98630,93.99,0,7.5200000000000005,9.06,9.72,10.370000000000001,10.92,11.41,12.42,13.61,15.98,174.78,174.74,174.99,175.8,177.12,178.93,182.55,186.82,195.63,19.44,19.41,19.35,19.27,19.16,19.01,18.400000000000002,17.69,19.68,N/A,N/A +2012,3,2,5,30,100930,99750,98600,96.61,0,9.31,10.93,11.65,12.38,13.06,13.73,14.450000000000001,15.14,16.85,179.98,181.07,181.81,182.76,183.75,184.8,186.43,188.14000000000001,195.07,18.91,18.75,18.61,18.400000000000002,18.17,17.900000000000002,17.62,17.37,20.02,N/A,N/A +2012,3,2,6,30,100920,99740,98600,96.7,0.4,8.040000000000001,9.3,9.84,10.39,10.96,11.58,12.44,13.34,16.02,181.38,180.57,179.97,179.24,178.82,178.62,179.65,181.01,190.13,18.990000000000002,18.91,18.85,18.76,18.63,18.47,18.13,17.76,18.48,N/A,N/A +2012,3,2,7,30,100910,99730,98590,95.16,0,8.44,9.94,10.64,11.34,12.01,12.68,13.370000000000001,14.030000000000001,15.280000000000001,177.34,177.75,178.14000000000001,178.75,179.49,180.38,181.36,182.33,185.32,19.31,19.21,19.12,18.96,18.76,18.54,18.26,17.990000000000002,17.490000000000002,N/A,N/A +2012,3,2,8,30,100870,99700,98560,96.39,0,8.93,10.51,11.24,12.030000000000001,12.83,13.69,14.68,15.69,17.69,184.91,185.43,185.91,186.59,187.36,188.25,189.15,190.03,189.82,19.06,18.98,18.92,18.830000000000002,18.740000000000002,18.64,18.52,18.42,18.5,N/A,N/A +2012,3,2,9,30,100860,99690,98550,93.94,0,5.83,7.390000000000001,8.15,8.93,9.72,10.59,11.61,12.69,14.540000000000001,172.11,173.94,175.47,177.35,179.12,180.93,182.73,184.49,187.39000000000001,19.59,19.63,19.62,19.6,19.56,19.5,19.39,19.26,18.61,N/A,N/A +2012,3,2,10,30,100850,99680,98540,93.87,0,5.8,7.28,7.98,8.67,9.31,9.93,10.620000000000001,11.31,13.17,182.98,182.87,182.81,182.64000000000001,182.55,182.55,182.73,182.98,184.27,19.6,19.66,19.66,19.650000000000002,19.63,19.62,19.580000000000002,19.53,19.12,N/A,N/A +2012,3,2,11,30,100860,99690,98550,92.68,0.4,6.47,8.26,9.17,10.17,11.040000000000001,11.84,12.5,13.08,13.950000000000001,179.32,180.56,181.41,182.27,183.03,183.74,184.51,185.27,186.93,19.86,19.95,19.95,19.94,19.91,19.88,19.830000000000002,19.78,19.62,N/A,N/A +2012,3,2,12,30,100810,99630,98500,93.41,0,5.84,7.16,7.7,8.27,8.98,9.86,10.700000000000001,11.49,12.23,184.46,184.07,183.87,184.18,184.98,186.21,187.75,189.34,193.77,19.7,19.78,19.78,19.77,19.75,19.72,19.650000000000002,19.57,19.26,N/A,N/A +2012,3,2,13,30,100800,99630,98490,95.09,0.4,6.2,7.54,8.1,8.61,9.16,9.76,10.450000000000001,11.14,13.77,185.42000000000002,184.42000000000002,183.45000000000002,181.82,180.56,179.53,180.32,181.64000000000001,188.67000000000002,19.34,19.36,19.36,19.34,19.3,19.23,18.94,18.61,19.27,N/A,N/A +2012,3,2,14,30,100840,99670,98530,94.08,0,4.9,6.25,6.88,7.62,8.47,9.5,10.64,11.84,14.19,180.15,179.48,179.35,179.94,180.88,182.24,183.31,184.24,188,19.6,19.69,19.7,19.69,19.63,19.51,19.150000000000002,18.73,18.55,N/A,N/A +2012,3,2,15,30,100910,99730,98590,96.27,0,1.9100000000000001,3.33,4.12,5.12,5.97,6.67,7.26,7.8100000000000005,8.99,172.24,177.38,180.9,183.58,185.76,187.5,188.99,190.33,193.04,19.43,19.580000000000002,19.57,19.51,19.41,19.28,19.13,18.990000000000002,18.7,N/A,N/A +2012,3,2,16,30,100900,99730,98590,96.8,0,2.19,3.4,3.99,4.82,5.51,6.08,6.66,7.23,8.3,190.81,191.56,192.71,195.44,198.03,200.48000000000002,202.52,204.36,205.9,19.38,19.51,19.51,19.43,19.3,19.14,18.97,18.82,18.52,N/A,N/A +2012,3,2,17,30,100930,99750,98610,97.23,0,0.99,1.83,2.37,3.0500000000000003,3.66,4.2,4.88,5.65,7.0600000000000005,136.27,169.97,194.41,205.09,211.23000000000002,212.46,211.49,209.5,206.19,19.48,19.47,19.39,19.25,19.1,18.93,18.82,18.75,19.23,N/A,N/A +2012,3,2,18,30,100910,99740,98600,98.15,0,1.41,2.2600000000000002,2.73,3.5100000000000002,4.17,4.68,5.26,5.84,6.6000000000000005,134.02,172.56,197.08,205.49,209.88,209.97,209.21,208.16,207.25,19.51,19.37,19.240000000000002,19.04,18.95,18.92,19.18,19.5,19.77,N/A,N/A +2012,3,2,19,30,100930,99760,98620,99.33,0,1.72,1.72,1.76,2.32,2.84,3.3000000000000003,3.74,4.17,4.9,107.16,136.29,155.42000000000002,180.34,196.03,200.47,203.22,205.16,206.68,19.42,19.23,19.13,19.02,19.150000000000002,19.48,19.7,19.88,19.92,N/A,N/A +2012,3,2,20,30,100850,99670,98540,99.3,0,2.68,3.2600000000000002,3.67,4.23,4.71,5.14,5.54,5.91,6.6000000000000005,181.79,186.05,189.33,193.02,195.84,197.88,199.35,200.53,202.08,19.35,19.34,19.490000000000002,19.98,20.240000000000002,20.330000000000002,20.36,20.36,20.27,N/A,N/A +2012,3,2,21,30,100820,99650,98510,96,0,2.7800000000000002,3.38,3.7800000000000002,4.39,4.83,5.09,5.37,5.65,6.24,147.45000000000002,154.51,161.54,174.18,182.01,185.08,187.49,189.54,192.57,20.01,19.91,19.95,20.150000000000002,20.26,20.29,20.31,20.32,20.29,N/A,N/A +2012,3,2,22,30,100770,99600,98470,95.03,0,2.97,3.85,4.34,5.05,5.51,5.72,5.97,6.23,6.78,154.65,159.27,164.51,175.66,182.68,185.53,187.87,189.9,193.1,20.400000000000002,20.39,20.43,20.580000000000002,20.650000000000002,20.66,20.68,20.71,20.7,N/A,N/A +2012,3,2,23,30,100750,99580,98450,94.66,0,3.5100000000000002,4.8,5.39,6.0200000000000005,6.36,6.46,6.65,6.87,7.2700000000000005,151.02,156.06,161.15,170.16,175.51,177.62,179.33,180.82,183.76,20.38,20.63,20.75,20.87,20.91,20.89,20.89,20.88,20.82,N/A,N/A +2012,3,3,0,30,100750,99580,98450,96.33,0,2.22,3.81,4.64,5.57,6.11,6.3,6.48,6.640000000000001,7.03,130.25,143.1,154.66,169.99,178.71,181.12,183.05,184.71,187.31,19.84,20.22,20.45,20.78,20.94,20.96,20.97,20.96,20.89,N/A,N/A +2012,3,3,1,30,100760,99590,98460,96.32000000000001,0,2.21,3.85,4.74,5.6000000000000005,6.13,6.3100000000000005,6.49,6.67,7.03,132.25,145.64000000000001,157.85,173.24,182.12,184.26,186.07,187.66,190.26,19.75,20.04,20.240000000000002,20.68,20.92,21,21.07,21.14,21.16,N/A,N/A +2012,3,3,2,30,100790,99620,98490,95.31,0,1.81,2.73,3.09,3.5,3.9,4.3100000000000005,4.7,5.07,5.67,154.35,165,171.88,176.55,180.31,183.43,186.06,188.45000000000002,192.32,19.81,20.09,20.17,20.25,20.35,20.46,20.59,20.71,20.84,N/A,N/A +2012,3,3,3,30,100780,99610,98480,96.2,0.7000000000000001,2.87,3.7,3.98,4.33,4.66,4.99,5.3100000000000005,5.62,6.12,154.32,163.67000000000002,169.95000000000002,174.93,178.79,181.81,184.31,186.51,190.43,19.54,19.93,20.150000000000002,20.36,20.490000000000002,20.57,20.62,20.66,20.72,N/A,N/A +2012,3,3,4,30,100770,99590,98460,97.36,0,2.66,4.3500000000000005,5.21,5.66,5.91,6.0200000000000005,6.0200000000000005,5.98,5.7700000000000005,149.73,160.38,170.47,182.56,190.14000000000001,194.41,198.17000000000002,201.43,206.77,19.14,19.22,19.35,19.61,19.830000000000002,20.01,20.16,20.28,20.42,N/A,N/A +2012,3,3,5,30,100780,99600,98470,96.72,0,2.77,4.25,4.97,5.5,5.71,5.66,5.6000000000000005,5.54,5.48,167.94,178.45000000000002,187.22,197.85,205.28,209.88,213.95000000000002,217.51,222.81,19.22,19.330000000000002,19.400000000000002,19.53,19.68,19.85,20.1,20.35,20.59,N/A,N/A +2012,3,3,6,30,100780,99600,98470,96.85000000000001,0,1.8800000000000001,3.49,4.22,4.5600000000000005,4.65,4.58,4.5,4.42,4.46,157.34,176.79,191.44,202.91,210.72,215.82,221.07,225.8,233.49,19.39,19.400000000000002,19.39,19.46,19.55,19.64,19.78,19.91,20.150000000000002,N/A,N/A +2012,3,3,7,30,100820,99650,98510,97.09,2.9000000000000004,1.54,2.22,2.39,2.41,2.5500000000000003,2.81,3.02,3.19,3.39,170.49,193.48000000000002,209.53,222.51,231.23000000000002,237.21,242.35,246.89000000000001,256.4,19.34,19.35,19.32,19.32,19.31,19.29,19.3,19.32,19.48,N/A,N/A +2012,3,3,8,30,100800,99620,98480,97.27,5.5,0.33,0.52,0.67,0.92,1.18,1.42,1.68,1.93,2.35,185.66,242.20000000000002,273.97,280.25,285.88,290.75,294.22,297.17,299.44,19.29,19.330000000000002,19.29,19.23,19.17,19.12,19.09,19.07,19.080000000000002,N/A,N/A +2012,3,3,9,30,100900,99710,98560,80.17,6.2,11.370000000000001,12.33,12.540000000000001,12.59,12.59,12.57,12.52,12.47,12.4,31.32,31.29,31.3,31.3,31.29,31.28,31.27,31.27,31.35,17.56,17.2,17.02,16.82,16.63,16.45,16.26,16.09,15.75,N/A,N/A +2012,3,3,10,30,100930,99740,98580,65.57000000000001,0,12.09,13.32,13.65,13.83,13.950000000000001,14.040000000000001,14.1,14.15,14.23,32.25,32.53,32.7,32.87,33.04,33.2,33.38,33.56,34,17.93,17.61,17.43,17.240000000000002,17.04,16.85,16.66,16.47,16.080000000000002,N/A,N/A +2012,3,3,11,30,101000,99810,98650,64.78,0,12.59,13.870000000000001,14.22,14.42,14.55,14.63,14.69,14.73,14.780000000000001,31.34,31.580000000000002,31.76,31.94,32.12,32.27,32.45,32.62,33,17.5,17.14,16.95,16.75,16.55,16.37,16.17,15.98,15.6,N/A,N/A +2012,3,3,12,30,101090,99890,98730,63.99,0,12.55,13.77,14.120000000000001,14.31,14.43,14.51,14.56,14.6,14.64,30.150000000000002,30.35,30.490000000000002,30.650000000000002,30.82,30.98,31.16,31.32,31.7,16.87,16.46,16.26,16.05,15.85,15.66,15.450000000000001,15.27,14.88,N/A,N/A +2012,3,3,13,30,101150,99950,98790,65.2,0,12.83,14.040000000000001,14.35,14.5,14.59,14.65,14.69,14.71,14.73,28.89,29.1,29.240000000000002,29.38,29.53,29.66,29.82,29.98,30.330000000000002,16.240000000000002,15.77,15.57,15.35,15.15,14.96,14.76,14.57,14.18,N/A,N/A +2012,3,3,14,30,101260,100060,98890,65.2,0,11.870000000000001,12.99,13.31,13.48,13.6,13.68,13.73,13.77,13.81,27.6,27.86,28.01,28.14,28.27,28.38,28.5,28.61,28.85,15.9,15.42,15.200000000000001,14.99,14.780000000000001,14.59,14.38,14.19,13.8,N/A,N/A +2012,3,3,15,30,101340,100130,98960,64.33,0,11.1,12.09,12.38,12.52,12.620000000000001,12.68,12.72,12.75,12.780000000000001,23.89,24.02,24.09,24.17,24.23,24.29,24.34,24.400000000000002,24.53,15.64,15.14,14.93,14.71,14.51,14.31,14.1,13.91,13.52,N/A,N/A +2012,3,3,16,30,101370,100160,98990,58.01,0,10.620000000000001,11.57,11.85,12,12.1,12.18,12.23,12.27,12.33,26.25,26.12,26.04,25.95,25.86,25.77,25.67,25.580000000000002,25.38,16.13,15.68,15.47,15.26,15.06,14.870000000000001,14.66,14.47,14.08,N/A,N/A +2012,3,3,17,30,101420,100220,99050,53.910000000000004,0,9.76,10.63,10.89,11.03,11.13,11.200000000000001,11.25,11.290000000000001,11.35,10.4,10.75,10.98,11.200000000000001,11.38,11.56,11.73,11.89,12.200000000000001,16.73,16.34,16.15,15.94,15.74,15.55,15.35,15.16,14.76,N/A,N/A +2012,3,3,18,30,101450,100250,99080,49,0,10.05,11.01,11.290000000000001,11.44,11.540000000000001,11.620000000000001,11.67,11.71,11.77,7.82,7.94,8.01,8.05,8.09,8.120000000000001,8.15,8.17,8.21,17.42,17.07,16.89,16.69,16.5,16.31,16.11,15.92,15.530000000000001,N/A,N/A +2012,3,3,19,30,101480,100290,99120,48.68,0,9.07,9.93,10.19,10.35,10.46,10.540000000000001,10.6,10.66,10.74,0.52,0.48,0.45,0.42,0.38,0.34,0.3,0.27,0.2,17.92,17.62,17.45,17.25,17.06,16.87,16.67,16.48,16.09,N/A,N/A +2012,3,3,20,30,101500,100310,99140,48.4,0,9.09,9.97,10.22,10.36,10.46,10.53,10.58,10.620000000000001,10.68,348.1,348.63,349.01,349.35,349.65000000000003,349.92,350.18,350.41,350.87,18.18,17.92,17.75,17.56,17.37,17.18,16.98,16.8,16.41,N/A,N/A +2012,3,3,21,30,101540,100350,99180,48.07,0,10.41,11.38,11.66,11.8,11.89,11.94,11.98,12,12.02,339.37,340.08,340.61,341.15000000000003,341.63,342.08,342.53000000000003,342.94,343.78000000000003,17.95,17.67,17.51,17.31,17.13,16.95,16.75,16.57,16.19,N/A,N/A +2012,3,3,22,30,101590,100390,99230,45.65,0,10.56,11.57,11.85,12,12.09,12.16,12.200000000000001,12.23,12.25,338.35,338.85,339.2,339.53000000000003,339.83,340.12,340.41,340.66,341.18,17.73,17.42,17.25,17.05,16.86,16.67,16.47,16.29,15.9,N/A,N/A +2012,3,3,23,30,101660,100460,99290,43.59,0,11.14,12.23,12.530000000000001,12.700000000000001,12.8,12.88,12.93,12.97,13.02,343.94,344.14,344.26,344.37,344.46,344.54,344.61,344.67,344.79,17.54,17.2,17.02,16.82,16.63,16.44,16.23,16.05,15.65,N/A,N/A +2012,3,4,0,30,101790,100590,99420,42.6,0,10.370000000000001,11.31,11.57,11.69,11.78,11.83,11.86,11.89,11.91,354.15000000000003,354.08,354.05,354.01,353.98,353.95,353.90000000000003,353.86,353.78000000000003,17.14,16.78,16.59,16.39,16.19,16,15.790000000000001,15.610000000000001,15.21,N/A,N/A +2012,3,4,1,30,101900,100690,99520,44.14,0,10.24,11.200000000000001,11.47,11.620000000000001,11.73,11.81,11.86,11.91,11.97,356.71,356.12,355.8,355.5,355.23,354.98,354.75,354.53000000000003,354.13,16.75,16.36,16.17,15.96,15.76,15.57,15.36,15.17,14.780000000000001,N/A,N/A +2012,3,4,2,30,102020,100810,99630,43.86,0,10.07,10.97,11.23,11.38,11.48,11.55,11.61,11.66,11.72,352.63,352.63,352.62,352.61,352.59000000000003,352.57,352.56,352.54,352.5,16.53,16.12,15.93,15.72,15.51,15.32,15.120000000000001,14.93,14.530000000000001,N/A,N/A +2012,3,4,3,30,102110,100900,99720,45.32,0,10.36,11.31,11.620000000000001,11.8,11.92,12.02,12.09,12.15,12.23,356.76,356.63,356.53000000000003,356.43,356.35,356.27,356.2,356.13,356,16.3,15.89,15.69,15.47,15.27,15.08,14.870000000000001,14.68,14.280000000000001,N/A,N/A +2012,3,4,4,30,102160,100940,99760,44.46,0,9.33,10.18,10.44,10.6,10.72,10.81,10.88,10.94,11.040000000000001,354.48,354.23,354.08,353.94,353.82,353.7,353.59000000000003,353.5,353.3,16.11,15.68,15.48,15.27,15.07,14.88,14.67,14.48,14.09,N/A,N/A +2012,3,4,5,30,102240,101020,99840,43.410000000000004,0,8.85,9.56,9.78,9.9,9.98,10.040000000000001,10.09,10.120000000000001,10.17,354.06,353.75,353.54,353.35,353.17,353,352.84000000000003,352.69,352.39,16.04,15.620000000000001,15.42,15.21,15.01,14.82,14.620000000000001,14.43,14.030000000000001,N/A,N/A +2012,3,4,6,30,102280,101060,99880,42.730000000000004,0,6.79,7.23,7.34,7.390000000000001,7.43,7.45,7.47,7.48,7.5,0.16,359.98,359.84000000000003,359.7,359.56,359.42,359.28000000000003,359.14,358.85,15.68,15.25,15.06,14.86,14.66,14.48,14.280000000000001,14.09,13.71,N/A,N/A +2012,3,4,7,30,102330,101110,99930,41.34,0,5.59,5.94,6.03,6.08,6.12,6.15,6.17,6.19,6.22,352.67,352.33,352.12,351.92,351.73,351.56,351.39,351.23,350.89,15.700000000000001,15.290000000000001,15.1,14.89,14.69,14.5,14.3,14.11,13.73,N/A,N/A +2012,3,4,8,30,102330,101110,99930,39.71,0,5.91,6.3,6.4,6.45,6.49,6.51,6.53,6.55,6.57,356.56,356.33,356.18,356.04,355.91,355.78000000000003,355.65000000000003,355.53000000000003,355.29,15.870000000000001,15.47,15.27,15.07,14.870000000000001,14.68,14.48,14.290000000000001,13.89,N/A,N/A +2012,3,4,9,30,102350,101130,99950,39.97,0,5.36,5.66,5.73,5.76,5.79,5.8,5.8100000000000005,5.8100000000000005,5.82,354.01,353.54,353.24,352.96,352.71,352.49,352.26,352.05,351.64,15.76,15.35,15.16,14.96,14.75,14.56,14.36,14.17,13.77,N/A,N/A +2012,3,4,10,30,102360,101140,99960,40.35,0,4.45,4.7,4.76,4.79,4.82,4.83,4.8500000000000005,4.86,4.88,346.95,346.5,346.25,346.01,345.79,345.61,345.41,345.23,344.87,15.64,15.24,15.05,14.85,14.65,14.46,14.25,14.06,13.67,N/A,N/A +2012,3,4,11,30,102380,101160,99970,40.88,0,3.79,3.98,4.0200000000000005,4.04,4.0600000000000005,4.07,4.08,4.09,4.1,338.66,338.28000000000003,338.05,337.82,337.61,337.43,337.25,337.08,336.74,15.57,15.18,14.99,14.790000000000001,14.59,14.4,14.19,14,13.61,N/A,N/A +2012,3,4,12,30,102410,101190,100000,41.53,0,3.34,3.49,3.52,3.54,3.5500000000000003,3.56,3.56,3.5700000000000003,3.5700000000000003,318.82,318.33,318.08,317.85,317.64,317.45,317.25,317.08,316.73,15.58,15.19,15,14.8,14.6,14.41,14.200000000000001,14.01,13.620000000000001,N/A,N/A +2012,3,4,13,30,102430,101210,100030,42.74,0,3.75,3.89,3.9,3.89,3.87,3.85,3.83,3.81,3.77,296.93,297.05,297.13,297.21,297.3,297.38,297.47,297.56,297.78000000000003,15.450000000000001,15.06,14.86,14.66,14.46,14.27,14.07,13.88,13.49,N/A,N/A +2012,3,4,14,30,102480,101260,100080,39.910000000000004,0,3.39,3.5300000000000002,3.5500000000000003,3.5500000000000003,3.5500000000000003,3.5500000000000003,3.54,3.5300000000000002,3.52,280.31,280.27,280.28000000000003,280.28000000000003,280.29,280.29,280.33,280.36,280.46,15.5,15.11,14.92,14.71,14.52,14.33,14.120000000000001,13.93,13.540000000000001,N/A,N/A +2012,3,4,15,30,102510,101290,100100,40.61,0,3.96,4.14,4.18,4.19,4.19,4.19,4.19,4.18,4.17,274.51,274.45,274.43,274.39,274.36,274.34000000000003,274.32,274.29,274.26,15.64,15.25,15.06,14.85,14.65,14.47,14.27,14.08,13.69,N/A,N/A +2012,3,4,16,30,102510,101280,100100,43.800000000000004,0,4.54,4.7700000000000005,4.8100000000000005,4.83,4.83,4.84,4.83,4.83,4.8100000000000005,268.53000000000003,268.5,268.5,268.5,268.52,268.54,268.57,268.6,268.68,15.76,15.36,15.17,14.97,14.77,14.59,14.38,14.19,13.8,N/A,N/A +2012,3,4,17,30,102510,101290,100100,44.07,0,4.43,4.67,4.72,4.75,4.76,4.78,4.78,4.79,4.79,251.74,252.47,252.92000000000002,253.35,253.75,254.12,254.5,254.86,255.59,16.04,15.65,15.46,15.26,15.06,14.88,14.67,14.48,14.09,N/A,N/A +2012,3,4,18,30,102490,101270,100090,43.44,0,4.72,4.96,4.99,5.01,5.01,5,4.99,4.98,4.95,244.77,245.56,246.11,246.64000000000001,247.14000000000001,247.61,248.12,248.59,249.63,16.4,16.02,15.84,15.64,15.44,15.25,15.05,14.870000000000001,14.48,N/A,N/A +2012,3,4,19,30,102480,101270,100090,43.28,0,4.75,5,5.04,5.0600000000000005,5.0600000000000005,5.05,5.04,5.03,4.99,222.62,223.18,223.57,223.94,224.3,224.64000000000001,225.01,225.35,226.14000000000001,16.68,16.31,16.13,15.93,15.73,15.55,15.34,15.16,14.77,N/A,N/A +2012,3,4,20,30,102440,101230,100050,44.7,0,4.74,4.97,5,4.99,4.97,4.94,4.9,4.87,4.7700000000000005,209.46,210.03,210.42000000000002,210.83,211.25,211.65,212.19,212.71,214.20000000000002,17.01,16.67,16.490000000000002,16.3,16.11,15.93,15.73,15.55,15.19,N/A,N/A +2012,3,4,21,30,102400,101190,100010,48.67,0,5.91,6.29,6.36,6.38,6.390000000000001,6.390000000000001,6.38,6.36,6.32,208.72,209.03,209.21,209.38,209.55,209.71,209.89000000000001,210.06,210.49,17.05,16.69,16.51,16.31,16.12,15.93,15.73,15.55,15.16,N/A,N/A +2012,3,4,22,30,102380,101170,99990,50.14,0,6.74,7.26,7.38,7.43,7.46,7.49,7.5,7.5,7.5,210.08,210.32,210.47,210.61,210.75,210.86,210.99,211.1,211.34,17.330000000000002,16.98,16.8,16.6,16.4,16.22,16.01,15.83,15.43,N/A,N/A +2012,3,4,23,30,102360,101150,99980,52.39,0,7.5600000000000005,8.19,8.33,8.4,8.45,8.47,8.49,8.5,8.49,213.22,213.45000000000002,213.59,213.72,213.84,213.95000000000002,214.07,214.18,214.42000000000002,17.52,17.18,17,16.8,16.61,16.42,16.22,16.04,15.65,N/A,N/A +2012,3,5,0,30,102380,101170,99990,55.74,0,8.15,8.86,9.03,9.120000000000001,9.17,9.200000000000001,9.22,9.23,9.23,216.11,216.24,216.33,216.4,216.47,216.54,216.6,216.67000000000002,216.8,17.63,17.3,17.12,16.92,16.73,16.54,16.34,16.15,15.77,N/A,N/A +2012,3,5,1,30,102400,101190,100020,55.4,0,8.09,8.81,8.98,9.07,9.120000000000001,9.15,9.17,9.18,9.19,219.48000000000002,219.57,219.63,219.68,219.73000000000002,219.77,219.82,219.86,219.96,17.79,17.48,17.3,17.1,16.91,16.73,16.52,16.34,15.950000000000001,N/A,N/A +2012,3,5,2,30,102440,101230,100050,58.26,0,7.97,8.68,8.84,8.93,8.98,9.02,9.03,9.05,9.05,221.99,222.14000000000001,222.23000000000002,222.32,222.4,222.47,222.56,222.64000000000001,222.8,17.84,17.53,17.35,17.150000000000002,16.96,16.77,16.57,16.39,16,N/A,N/A +2012,3,5,3,30,102450,101240,100070,58.67,0,7.5,8.15,8.3,8.38,8.42,8.45,8.47,8.47,8.47,221.88,221.97,222.04,222.1,222.16,222.22,222.28,222.34,222.46,17.900000000000002,17.59,17.42,17.22,17.03,16.84,16.64,16.46,16.07,N/A,N/A +2012,3,5,4,30,102470,101260,100090,57.35,0,7.16,7.76,7.9,7.97,8.01,8.03,8.040000000000001,8.040000000000001,8.03,223.76,223.83,223.87,223.91,223.95000000000002,223.98000000000002,224.02,224.07,224.18,18.06,17.76,17.59,17.400000000000002,17.21,17.03,16.830000000000002,16.65,16.27,N/A,N/A +2012,3,5,5,30,102490,101290,100110,59.94,0,6.9,7.48,7.61,7.68,7.71,7.73,7.74,7.74,7.72,222.11,222.25,222.34,222.42000000000002,222.51,222.59,222.68,222.76,222.96,18.04,17.75,17.57,17.38,17.19,17,16.8,16.62,16.23,N/A,N/A +2012,3,5,6,30,102530,101320,100150,61.74,0,6.54,7.11,7.24,7.3,7.33,7.3500000000000005,7.36,7.36,7.3500000000000005,227.3,227.38,227.42000000000002,227.47,227.51,227.55,227.59,227.62,227.71,18,17.73,17.56,17.37,17.18,17,16.8,16.62,16.240000000000002,N/A,N/A +2012,3,5,7,30,102560,101350,100180,61.38,0,6.49,7.05,7.18,7.24,7.28,7.3,7.3100000000000005,7.32,7.3100000000000005,229.79,229.88,229.92000000000002,229.97,230.01,230.06,230.1,230.15,230.27,18.01,17.740000000000002,17.57,17.38,17.2,17.02,16.82,16.63,16.25,N/A,N/A +2012,3,5,8,30,102580,101370,100200,65.47,0,6.18,6.7,6.8100000000000005,6.87,6.91,6.92,6.93,6.93,6.93,231.35,231.39000000000001,231.41,231.43,231.45000000000002,231.46,231.46,231.46,231.46,17.92,17.650000000000002,17.48,17.29,17.1,16.92,16.72,16.54,16.15,N/A,N/A +2012,3,5,9,30,102590,101380,100200,64.16,0,5.57,6.04,6.140000000000001,6.19,6.22,6.24,6.25,6.25,6.25,234.54,234.59,234.63,234.66,234.70000000000002,234.72,234.75,234.78,234.85,17.92,17.650000000000002,17.48,17.29,17.1,16.92,16.73,16.54,16.16,N/A,N/A +2012,3,5,10,30,102620,101410,100240,65.79,0,5.24,5.67,5.7700000000000005,5.8100000000000005,5.84,5.8500000000000005,5.86,5.86,5.86,234.13,234.21,234.25,234.3,234.33,234.37,234.4,234.43,234.52,17.89,17.62,17.45,17.26,17.06,16.88,16.68,16.5,16.11,N/A,N/A +2012,3,5,11,30,102650,101440,100270,64.48,0,4.63,4.99,5.07,5.1000000000000005,5.12,5.13,5.14,5.14,5.14,240.16,240.15,240.14000000000001,240.12,240.09,240.05,240.01,239.98000000000002,239.87,17.900000000000002,17.63,17.46,17.27,17.080000000000002,16.9,16.7,16.52,16.14,N/A,N/A +2012,3,5,12,30,102690,101480,100310,64.35,0,3.84,4.12,4.17,4.2,4.21,4.22,4.23,4.23,4.23,232.12,232.17000000000002,232.21,232.24,232.27,232.31,232.35,232.38,232.47,17.89,17.62,17.45,17.26,17.07,16.88,16.69,16.5,16.12,N/A,N/A +2012,3,5,13,30,102740,101530,100350,66.05,0,3.85,4.13,4.18,4.21,4.23,4.24,4.25,4.26,4.28,228.9,228.75,228.65,228.55,228.44,228.34,228.23000000000002,228.11,227.84,17.830000000000002,17.55,17.38,17.19,17,16.82,16.62,16.43,16.05,N/A,N/A +2012,3,5,14,30,102810,101600,100420,64.25,0,3.18,3.41,3.45,3.47,3.49,3.49,3.5,3.5,3.5100000000000002,222.94,222.88,222.83,222.78,222.73000000000002,222.69,222.67000000000002,222.65,222.62,17.91,17.63,17.47,17.27,17.080000000000002,16.9,16.7,16.52,16.13,N/A,N/A +2012,3,5,15,30,102850,101630,100460,66.07000000000001,0,2.82,3,3.0300000000000002,3.0500000000000003,3.0500000000000003,3.06,3.06,3.0700000000000003,3.0700000000000003,215.76,215.83,215.86,215.89000000000001,215.89000000000001,215.89000000000001,215.89000000000001,215.88,215.83,17.87,17.580000000000002,17.41,17.21,17.02,16.84,16.64,16.45,16.07,N/A,N/A +2012,3,5,16,30,102860,101650,100480,64.52,0,2.42,2.5500000000000003,2.57,2.58,2.59,2.6,2.6,2.6,2.6,216.46,216.44,216.45000000000002,216.45000000000002,216.45000000000002,216.45000000000002,216.47,216.49,216.5,17.94,17.64,17.47,17.28,17.09,16.9,16.7,16.52,16.13,N/A,N/A +2012,3,5,17,30,102860,101650,100470,66.62,0,3.14,3.31,3.35,3.36,3.37,3.38,3.38,3.38,3.39,201.75,201.89000000000001,202,202.1,202.19,202.27,202.37,202.46,202.67000000000002,17.96,17.64,17.46,17.27,17.080000000000002,16.89,16.69,16.51,16.12,N/A,N/A +2012,3,5,18,30,102870,101660,100480,64.36,0,3.5700000000000003,3.77,3.81,3.8200000000000003,3.83,3.83,3.84,3.84,3.83,198.66,198.78,198.86,198.94,199.02,199.09,199.16,199.23000000000002,199.4,18.13,17.81,17.63,17.44,17.25,17.06,16.86,16.68,16.29,N/A,N/A +2012,3,5,19,30,102880,101660,100490,63.68,0,3.13,3.31,3.34,3.36,3.37,3.38,3.38,3.38,3.38,187.62,187.71,187.81,187.9,187.98,188.04,188.09,188.14000000000001,188.27,18.240000000000002,17.92,17.75,17.56,17.36,17.18,16.98,16.79,16.41,N/A,N/A +2012,3,5,20,30,102830,101620,100450,67.07000000000001,0,4.07,4.32,4.37,4.4,4.41,4.41,4.42,4.41,4.41,188.5,188.61,188.71,188.79,188.88,188.95000000000002,189.03,189.11,189.28,18.23,17.92,17.740000000000002,17.55,17.36,17.17,16.98,16.79,16.41,N/A,N/A +2012,3,5,21,30,102800,101590,100420,64.61,0,4.01,4.3100000000000005,4.37,4.4,4.42,4.43,4.44,4.44,4.45,184.36,184.54,184.64000000000001,184.75,184.84,184.93,185.02,185.09,185.26,18.34,18.06,17.89,17.7,17.5,17.32,17.12,16.94,16.55,N/A,N/A +2012,3,5,22,30,102770,101560,100380,66.21000000000001,0,4.07,4.38,4.44,4.47,4.49,4.5,4.51,4.51,4.5200000000000005,180.66,180.67000000000002,180.68,180.67000000000002,180.66,180.66,180.64000000000001,180.63,180.6,18.25,17.990000000000002,17.82,17.63,17.43,17.25,17.05,16.87,16.48,N/A,N/A +2012,3,5,23,30,102740,101530,100350,65.65,0,4.32,4.67,4.75,4.79,4.82,4.84,4.8500000000000005,4.86,4.87,174.3,174.49,174.64000000000001,174.76,174.87,174.97,175.07,175.17000000000002,175.33,18.22,17.96,17.8,17.62,17.43,17.25,17.05,16.87,16.490000000000002,N/A,N/A +2012,3,6,0,30,102710,101500,100320,67.13,0,4.87,5.28,5.37,5.41,5.44,5.47,5.48,5.49,5.51,175.33,175.4,175.45000000000002,175.5,175.54,175.59,175.63,175.67000000000002,175.78,18.14,17.88,17.72,17.53,17.34,17.16,16.97,16.78,16.41,N/A,N/A +2012,3,6,1,30,102700,101490,100320,67.06,0,5.2,5.66,5.76,5.8100000000000005,5.8500000000000005,5.87,5.89,5.9,5.92,170.8,170.88,170.94,170.97,171,171.02,171.05,171.07,171.11,18.11,17.85,17.69,17.5,17.32,17.13,16.94,16.76,16.37,N/A,N/A +2012,3,6,2,30,102700,101490,100320,69.42,0,5.46,5.94,6.05,6.12,6.16,6.19,6.21,6.22,6.25,166.99,167.07,167.12,167.16,167.21,167.25,167.3,167.34,167.45000000000002,18.07,17.81,17.64,17.45,17.26,17.080000000000002,16.88,16.7,16.32,N/A,N/A +2012,3,6,3,30,102690,101480,100310,67.56,0,6.3100000000000005,6.890000000000001,7.0200000000000005,7.1000000000000005,7.140000000000001,7.17,7.19,7.21,7.23,167.12,167.21,167.26,167.32,167.38,167.44,167.5,167.56,167.71,18.14,17.88,17.72,17.53,17.34,17.16,16.96,16.78,16.4,N/A,N/A +2012,3,6,4,30,102670,101470,100290,70.87,0,6.3,6.890000000000001,7.03,7.11,7.17,7.21,7.24,7.2700000000000005,7.3,163.77,163.86,163.92000000000002,163.99,164.05,164.11,164.17000000000002,164.22,164.35,18.080000000000002,17.82,17.650000000000002,17.46,17.28,17.09,16.9,16.72,16.330000000000002,N/A,N/A +2012,3,6,5,30,102650,101440,100270,70.35000000000001,0,6.65,7.29,7.46,7.55,7.62,7.66,7.7,7.73,7.7700000000000005,163.73,163.84,163.92000000000002,163.98,164.05,164.1,164.16,164.21,164.33,18.14,17.87,17.71,17.52,17.330000000000002,17.150000000000002,16.96,16.77,16.39,N/A,N/A +2012,3,6,6,30,102660,101450,100280,70.56,0,7.23,7.95,8.13,8.24,8.31,8.370000000000001,8.4,8.44,8.47,163.18,163.31,163.39000000000001,163.47,163.55,163.62,163.70000000000002,163.77,163.92000000000002,18.23,17.97,17.81,17.62,17.43,17.25,17.05,16.87,16.48,N/A,N/A +2012,3,6,7,30,102640,101430,100260,72.05,0,7.33,8.09,8.290000000000001,8.42,8.51,8.58,8.63,8.67,8.73,164.34,164.53,164.63,164.73,164.82,164.9,164.99,165.07,165.24,18.28,18.03,17.87,17.68,17.5,17.32,17.12,16.94,16.56,N/A,N/A +2012,3,6,8,30,102600,101400,100230,73.54,0,7.66,8.47,8.700000000000001,8.85,8.950000000000001,9.040000000000001,9.1,9.15,9.23,166.16,166.37,166.5,166.62,166.74,166.85,166.96,167.07,167.27,18.35,18.11,17.95,17.77,17.59,17.41,17.21,17.03,16.65,N/A,N/A +2012,3,6,9,30,102570,101360,100190,74.36,0,7.79,8.620000000000001,8.85,9,9.11,9.19,9.25,9.3,9.38,168.5,168.45000000000002,168.45000000000002,168.44,168.42000000000002,168.4,168.39000000000001,168.37,168.32,18.42,18.19,18.03,17.85,17.67,17.490000000000002,17.3,17.12,16.73,N/A,N/A +2012,3,6,10,30,102540,101330,100160,75.57000000000001,0,7.91,8.76,9,9.16,9.27,9.36,9.43,9.49,9.57,165.32,165.55,165.67000000000002,165.79,165.9,166.01,166.13,166.24,166.48,18.44,18.21,18.06,17.88,17.7,17.52,17.330000000000002,17.150000000000002,16.77,N/A,N/A +2012,3,6,11,30,102530,101320,100160,78.58,0,6.79,7.92,8.38,8.67,8.93,9.17,9.4,9.61,9.94,161.48,162.95000000000002,163.56,163.6,163.65,163.71,163.82,163.94,164.17000000000002,18.47,18.23,18.09,17.92,17.76,17.61,17.46,17.31,16.98,N/A,N/A +2012,3,6,12,30,102510,101310,100140,79.39,0,6.3500000000000005,7.25,7.62,7.930000000000001,8.24,8.53,8.81,9.06,9.4,156.33,157.26,157.81,158.17000000000002,158.46,158.70000000000002,158.95000000000002,159.19,159.72,18.45,18.22,18.080000000000002,17.93,17.79,17.66,17.54,17.42,17.12,N/A,N/A +2012,3,6,13,30,102520,101310,100150,77.16,0,7.44,8.38,8.700000000000001,8.96,9.18,9.370000000000001,9.53,9.68,9.950000000000001,156.02,156.37,156.71,157.09,157.48,157.85,158.24,158.61,159.42000000000002,18.68,18.5,18.38,18.22,18.07,17.91,17.740000000000002,17.59,17.25,N/A,N/A +2012,3,6,14,30,102550,101350,100180,75.75,0,7.9,8.93,9.27,9.540000000000001,9.77,9.96,10.120000000000001,10.27,10.53,153.57,153.49,153.48,153.46,153.44,153.43,153.42000000000002,153.43,153.47,18.81,18.64,18.51,18.35,18.18,18.02,17.84,17.67,17.32,N/A,N/A +2012,3,6,15,30,102560,101360,100190,75.86,0,7.37,8.41,8.790000000000001,9.1,9.370000000000001,9.61,9.84,10.040000000000001,10.42,153.04,153.42000000000002,153.69,153.98,154.26,154.54,154.86,155.15,155.79,18.92,18.77,18.66,18.51,18.36,18.22,18.06,17.900000000000002,17.57,N/A,N/A +2012,3,6,16,30,102560,101350,100190,78.63,0,7.08,8.05,8.4,8.69,8.94,9.15,9.36,9.540000000000001,9.88,148.95000000000002,149.42000000000002,149.74,150.09,150.45000000000002,150.8,151.18,151.54,152.29,18.89,18.73,18.61,18.46,18.3,18.150000000000002,17.990000000000002,17.830000000000002,17.5,N/A,N/A +2012,3,6,17,30,102520,101320,100150,80.11,0,7.2,8.18,8.53,8.82,9.07,9.3,9.51,9.700000000000001,10.07,144.02,144.47,144.83,145.25,145.68,146.12,146.61,147.07,148.08,18.94,18.78,18.650000000000002,18.5,18.36,18.21,18.04,17.89,17.57,N/A,N/A +2012,3,6,18,30,102490,101290,100130,81.56,0,6.92,7.87,8.21,8.5,8.75,8.96,9.16,9.33,9.67,142.36,142.79,143.11,143.5,143.89000000000001,144.27,144.70000000000002,145.1,145.98,18.990000000000002,18.830000000000002,18.7,18.56,18.400000000000002,18.25,18.09,17.94,17.62,N/A,N/A +2012,3,6,19,30,102460,101260,100090,82.61,0,6.93,7.91,8.27,8.58,8.85,9.09,9.32,9.52,9.91,136.83,137.36,137.72,138.13,138.53,138.92000000000002,139.33,139.71,140.5,19.01,18.86,18.740000000000002,18.59,18.45,18.3,18.14,18,17.67,N/A,N/A +2012,3,6,20,30,102400,101200,100040,83.01,0,7.2700000000000005,8.41,8.85,9.24,9.58,9.89,10.18,10.44,10.91,134.64000000000001,134.95,135.21,135.52,135.86,136.21,136.6,136.98,137.78,19.03,18.900000000000002,18.79,18.66,18.53,18.39,18.25,18.11,17.81,N/A,N/A +2012,3,6,21,30,102340,101140,99980,82.79,0,7.9,9.14,9.620000000000001,10.040000000000001,10.43,10.77,11.1,11.4,11.94,132.76,133.3,133.67000000000002,134.09,134.53,134.95,135.41,135.83,136.75,19.02,18.900000000000002,18.8,18.68,18.55,18.42,18.28,18.150000000000002,17.86,N/A,N/A +2012,3,6,22,30,102280,101080,99920,82.86,0,8.540000000000001,9.82,10.3,10.71,11.07,11.4,11.71,11.98,12.51,131.6,132,132.32,132.7,133.09,133.49,133.92000000000002,134.31,135.16,19.03,18.92,18.82,18.69,18.56,18.43,18.28,18.150000000000002,17.85,N/A,N/A +2012,3,6,23,30,102220,101030,99870,83.45,0,8.66,9.97,10.47,10.9,11.28,11.63,11.950000000000001,12.24,12.780000000000001,133.41,133.8,134.08,134.4,134.73,135.07,135.43,135.78,136.53,18.990000000000002,18.87,18.77,18.650000000000002,18.51,18.38,18.240000000000002,18.1,17.81,N/A,N/A +2012,3,7,0,30,102160,100960,99800,84.91,0,9.16,10.52,11.01,11.43,11.8,12.13,12.450000000000001,12.74,13.290000000000001,133.71,134.03,134.25,134.5,134.77,135.04,135.34,135.64000000000001,136.28,18.96,18.830000000000002,18.72,18.580000000000002,18.44,18.3,18.150000000000002,18.01,17.71,N/A,N/A +2012,3,7,1,30,102130,100930,99770,85.61,0,9.49,10.94,11.46,11.92,12.32,12.69,13.05,13.38,14,135.15,135.44,135.66,135.93,136.21,136.5,136.83,137.15,137.86,18.98,18.85,18.740000000000002,18.61,18.47,18.330000000000002,18.19,18.05,17.76,N/A,N/A +2012,3,7,2,30,102110,100910,99750,85.66,0,10.18,11.71,12.26,12.73,13.15,13.530000000000001,13.91,14.26,14.93,133.25,133.58,133.81,134.06,134.32,134.58,134.86,135.12,135.69,19.04,18.92,18.81,18.68,18.54,18.41,18.26,18.13,17.830000000000002,N/A,N/A +2012,3,7,3,30,102080,100890,99730,87.16,0,10.25,11.870000000000001,12.450000000000001,12.97,13.43,13.85,14.25,14.61,15.31,138.8,139.1,139.29,139.53,139.77,140,140.26,140.5,141.01,19.06,18.94,18.84,18.72,18.580000000000002,18.45,18.31,18.18,17.89,N/A,N/A +2012,3,7,4,30,102050,100860,99700,85.87,0,10.620000000000001,12.27,12.88,13.41,13.86,14.27,14.65,15,15.65,140.33,140.63,140.85,141.09,141.32,141.54,141.77,141.99,142.44,19.13,19.03,18.94,18.81,18.68,18.56,18.42,18.29,18.01,N/A,N/A +2012,3,7,5,30,102020,100830,99670,87.31,0,9.34,10.83,11.4,11.92,12.39,12.83,13.26,13.65,14.42,142.17000000000002,142.37,142.5,142.67000000000002,142.84,143.01,143.20000000000002,143.39000000000001,143.8,19.07,18.96,18.86,18.73,18.6,18.47,18.330000000000002,18.2,17.91,N/A,N/A +2012,3,7,6,30,102030,100830,99680,87.55,0,10,11.540000000000001,12.11,12.61,13.05,13.450000000000001,13.84,14.19,14.88,148.05,148.17000000000002,148.25,148.35,148.46,148.56,148.68,148.79,149.08,19.240000000000002,19.12,19.02,18.89,18.76,18.62,18.48,18.35,18.07,N/A,N/A +2012,3,7,7,30,102030,100830,99680,89.12,0,8.91,10.39,10.97,11.48,11.950000000000001,12.38,12.8,13.19,13.94,151.66,151.79,151.91,152.06,152.21,152.37,152.57,152.76,153.26,19.23,19.13,19.03,18.91,18.79,18.66,18.53,18.400000000000002,18.14,N/A,N/A +2012,3,7,8,30,102000,100810,99650,90.16,0,8.3,9.69,10.24,10.75,11.22,11.65,12.07,12.46,13.26,151.01,151.39000000000001,151.6,151.8,151.97,152.13,152.29,152.43,152.8,19.240000000000002,19.14,19.04,18.92,18.79,18.67,18.53,18.400000000000002,18.14,N/A,N/A +2012,3,7,9,30,102000,100810,99650,90.4,0,7.95,9.41,10,10.55,11.05,11.5,11.94,12.34,13.09,153.1,153.65,154.07,154.55,155.03,155.51,155.98,156.42000000000002,157.23,19.31,19.240000000000002,19.17,19.080000000000002,18.97,18.87,18.76,18.650000000000002,18.400000000000002,N/A,N/A +2012,3,7,10,30,101950,100760,99610,90.92,0,8.23,9.700000000000001,10.31,10.9,11.44,11.94,12.450000000000001,12.92,13.81,149.68,150.31,150.77,151.35,151.94,152.54,153.23,153.89000000000001,155.29,19.31,19.240000000000002,19.17,19.080000000000002,18.98,18.89,18.79,18.7,18.5,N/A,N/A +2012,3,7,11,30,101940,100750,99590,91.54,0,7.930000000000001,9.4,10,10.56,11.07,11.55,12,12.41,13.23,153.24,154.04,154.59,155.22,155.87,156.53,157.23,157.89000000000001,159.33,19.3,19.240000000000002,19.17,19.080000000000002,18.98,18.89,18.78,18.68,18.48,N/A,N/A +2012,3,7,12,30,101940,100750,99600,91.67,0,7.890000000000001,9.26,9.81,10.33,10.78,11.18,11.56,11.91,12.56,150.06,150.69,151.14000000000001,151.70000000000002,152.26,152.84,153.46,154.06,155.36,19.28,19.21,19.14,19.04,18.93,18.82,18.7,18.59,18.34,N/A,N/A +2012,3,7,13,30,101940,100750,99600,91.36,0,7.2700000000000005,8.72,9.33,9.94,10.5,11.02,11.55,12.030000000000001,12.950000000000001,146.28,147.41,148.26,149.27,150.26,151.23,152.15,153.02,154.49,19.330000000000002,19.3,19.26,19.19,19.13,19.06,18.990000000000002,18.91,18.72,N/A,N/A +2012,3,7,14,30,101990,100800,99650,92.12,0,7.140000000000001,8.52,9.13,9.71,10.26,10.78,11.31,11.81,12.780000000000001,144.04,144.46,144.84,145.42000000000002,146.17000000000002,147.03,148.18,149.33,151.92000000000002,19.34,19.3,19.240000000000002,19.17,19.09,19.02,18.94,18.88,18.740000000000002,N/A,N/A +2012,3,7,15,30,102010,100820,99660,92.36,0,6.94,8.36,8.98,9.620000000000001,10.23,10.82,11.41,11.98,12.99,143.41,144.38,145.13,146.1,147.17000000000002,148.31,149.58,150.81,153.29,19.45,19.42,19.39,19.34,19.3,19.26,19.240000000000002,19.22,19.16,N/A,N/A +2012,3,7,16,30,102000,100810,99660,92.27,0,6.84,8.17,8.73,9.3,9.84,10.36,10.91,11.43,12.5,137.04,138.34,139.33,140.56,141.85,143.15,144.6,145.99,149,19.46,19.42,19.38,19.32,19.25,19.19,19.12,19.06,18.94,N/A,N/A +2012,3,7,17,30,102000,100810,99660,91.53,0,6.93,8.25,8.790000000000001,9.33,9.81,10.27,10.73,11.17,12.1,136.73,137.72,138.48,139.49,140.61,141.79,143.21,144.6,147.92000000000002,19.580000000000002,19.54,19.490000000000002,19.42,19.35,19.28,19.22,19.150000000000002,19.03,N/A,N/A +2012,3,7,18,30,101980,100790,99640,91.56,0,6.66,7.98,8.57,9.13,9.64,10.120000000000001,10.57,10.98,11.84,131.08,132.1,132.98,134.21,135.65,137.25,139.20000000000002,141.09,145.89000000000001,19.61,19.59,19.56,19.51,19.47,19.43,19.39,19.34,19.25,N/A,N/A +2012,3,7,19,30,101970,100780,99630,92.89,2.6,7.16,8.540000000000001,9.11,9.66,10.17,10.66,11.16,11.63,12.58,127.87,128.39000000000001,128.96,129.79,130.79,131.91,133.24,134.53,137.68,19.52,19.490000000000002,19.45,19.38,19.31,19.240000000000002,19.17,19.11,18.990000000000002,N/A,N/A +2012,3,7,20,30,101900,100710,99560,94.26,0,7.15,8.63,9.290000000000001,9.98,10.63,11.26,11.91,12.540000000000001,13.73,130.4,130.69,131.01,131.53,132.21,132.99,134.03,135.08,137.93,19.490000000000002,19.44,19.39,19.32,19.27,19.22,19.2,19.18,19.17,N/A,N/A +2012,3,7,21,30,101820,100630,99480,94.93,0,6.98,8.52,9.200000000000001,9.9,10.540000000000001,11.14,11.75,12.32,13.5,123.18,124.26,125.03,125.95,126.99000000000001,128.08,129.47,130.83,134.07,19.44,19.44,19.41,19.37,19.32,19.27,19.21,19.150000000000002,19.05,N/A,N/A +2012,3,7,22,30,101780,100600,99450,93.95,0,9.49,11.18,11.89,12.58,13.22,13.83,14.450000000000001,15.040000000000001,16.23,128.48,129.09,129.53,130.2,130.97,131.82,132.9,133.99,136.98,19.55,19.54,19.51,19.45,19.400000000000002,19.35,19.31,19.28,19.25,N/A,N/A +2012,3,7,23,30,101720,100540,99390,94.32000000000001,0,9.22,10.99,11.72,12.43,13.13,13.81,14.530000000000001,15.21,16.61,127.7,128.46,129.09,129.91,130.88,131.93,133.21,134.48,137.67000000000002,19.48,19.47,19.44,19.39,19.35,19.32,19.29,19.26,19.27,N/A,N/A +2012,3,8,0,30,101700,100510,99370,93.32000000000001,22,9.57,11.370000000000001,12.120000000000001,12.83,13.5,14.16,14.84,15.49,16.81,130.44,130.96,131.41,131.99,132.57,133.16,133.81,134.43,136.02,19.69,19.72,19.71,19.68,19.64,19.59,19.54,19.48,19.400000000000002,N/A,N/A +2012,3,8,1,30,101690,100510,99360,92.59,0.4,9.67,11.72,12.61,13.5,14.290000000000001,15.030000000000001,15.74,16.39,17.67,136.81,137.51,138.07,138.76,139.48,140.20000000000002,141.04,141.84,143.99,19.84,19.89,19.88,19.87,19.86,19.84,19.830000000000002,19.82,19.81,N/A,N/A +2012,3,8,2,30,101710,100530,99390,91.21000000000001,2.6,9.81,11.98,13,14.01,14.91,15.75,16.46,17.09,17.81,145.8,147.66,148.9,150.46,151.95000000000002,153.41,154.62,155.68,156.52,20.13,20.240000000000002,20.26,20.25,20.23,20.21,20.16,20.12,19.94,N/A,N/A +2012,3,8,3,30,101680,100500,99360,92.13,0,7.61,9.55,10.35,11.11,11.790000000000001,12.41,12.96,13.46,14.3,145.36,145.79,146.05,146.18,146.25,146.29,146.4,146.52,146.89000000000001,19.98,20.07,20.080000000000002,20.07,20.06,20.03,19.990000000000002,19.96,19.84,N/A,N/A +2012,3,8,4,30,101650,100470,99330,92.53,4.4,10.040000000000001,11.78,12.4,12.94,13.38,13.75,14.08,14.370000000000001,14.92,156.70000000000002,156.55,156.39000000000001,156.14000000000001,155.83,155.51,155.13,154.77,154.04,19.86,19.87,19.830000000000002,19.78,19.73,19.67,19.61,19.56,19.45,N/A,N/A +2012,3,8,5,30,101660,100480,99330,92.31,9.5,10.81,12.56,13.19,13.74,14.21,14.65,15.09,15.51,16.47,153.58,153.3,153.15,152.9,152.58,152.21,151.79,151.37,150.70000000000002,19.900000000000002,19.92,19.89,19.830000000000002,19.77,19.7,19.64,19.580000000000002,19.46,N/A,N/A +2012,3,8,6,30,101660,100480,99340,92.88,0,9.14,10.97,11.73,12.46,13.11,13.72,14.32,14.86,15.98,156.19,156.81,157.20000000000002,157.64000000000001,158.03,158.38,158.73,159.05,160.02,19.94,19.96,19.94,19.900000000000002,19.87,19.84,19.81,19.79,19.76,N/A,N/A +2012,3,8,7,30,101730,100540,99400,93.62,0,9.23,11.15,12.01,12.88,13.71,14.52,15.34,16.13,17.59,160.45000000000002,160.63,160.82,161.06,161.32,161.6,161.82,162.01,161.63,19.8,19.82,19.79,19.73,19.68,19.62,19.56,19.5,19.400000000000002,N/A,N/A +2012,3,8,8,30,101740,100550,99410,91.32000000000001,0,11,13.07,13.86,14.51,15.040000000000001,15.47,15.82,16.11,16.580000000000002,157.36,157.57,157.78,158.03,158.3,158.57,158.89000000000001,159.20000000000002,160.06,20.28,20.36,20.34,20.27,20.18,20.080000000000002,19.95,19.82,19.53,N/A,N/A +2012,3,8,9,30,101710,100530,99380,93.8,0,7.18,8.8,9.49,10.18,10.85,11.52,12.21,12.870000000000001,13.94,160.38,160.67000000000002,160.99,161.44,161.9,162.38,162.79,163.16,163.32,19.78,19.82,19.81,19.76,19.69,19.62,19.52,19.42,19.25,N/A,N/A +2012,3,8,10,30,101690,100510,99360,93.79,0,6.44,8.48,9.6,10.99,12.540000000000001,14.25,15.63,16.84,17.36,147.46,149.47,151,152.89000000000001,154.65,156.37,157.55,158.51,159.67000000000002,19.81,19.86,19.87,19.91,20.06,20.29,20.46,20.59,20.25,N/A,N/A +2012,3,8,11,30,101720,100540,99390,94.16,0,6.24,7.73,8.38,9.01,9.59,10.14,10.74,11.33,12.83,146.8,147.41,148.01,148.78,149.68,150.70000000000002,152.09,153.51,157.18,19.68,19.73,19.73,19.7,19.66,19.62,19.580000000000002,19.54,19.53,N/A,N/A +2012,3,8,12,30,101730,100540,99400,94.10000000000001,0,6.03,7.62,8.41,9.23,9.96,10.64,11.21,11.71,13.16,136.37,139.20000000000002,141.71,145.27,149.12,153.27,157.39000000000001,161.28,166.96,19.72,19.77,19.77,19.740000000000002,19.66,19.53,19.35,19.16,19.38,N/A,N/A +2012,3,8,13,30,101710,100530,99380,94.26,0,7.43,9.200000000000001,10.02,10.86,11.59,12.27,12.89,13.450000000000001,14.44,143.04,144.08,144.82,145.67000000000002,146.42000000000002,147.12,147.69,148.20000000000002,149.05,19.68,19.66,19.61,19.52,19.41,19.3,19.14,18.98,18.94,N/A,N/A +2012,3,8,14,30,101720,100540,99400,93.46000000000001,0,6.7,8.47,9.3,10.13,10.86,11.52,12.040000000000001,12.49,13.14,142.54,144.07,145.32,146.79,147.89000000000001,148.74,148.64000000000001,148.3,146.77,19.87,19.94,19.95,19.96,19.96,19.94,19.92,19.89,19.76,N/A,N/A +2012,3,8,15,30,101740,100560,99420,92.83,0,9.14,11.11,11.91,12.68,13.32,13.89,14.34,14.74,15.32,147.12,148.23,149.13,150.39000000000001,151.85,153.45000000000002,155.43,157.36,161.69,20.01,20.02,19.98,19.93,19.85,19.77,19.63,19.48,19.1,N/A,N/A +2012,3,8,16,30,101760,100580,99440,93.27,0,5.71,7.45,8.27,9.120000000000001,9.92,10.69,11.52,12.34,14.33,137.11,139.06,140.67000000000002,142.82,144.96,147.14000000000001,149.73,152.34,158.05,20.01,20.11,20.11,20.09,20.05,19.990000000000002,19.91,19.830000000000002,19.55,N/A,N/A +2012,3,8,17,30,101770,100590,99450,93.55,0,5.2700000000000005,6.8100000000000005,7.47,8.13,8.76,9.38,10.03,10.65,11.82,130.09,133.02,135.3,137.95000000000002,140.5,143,145.08,146.95000000000002,150.6,20,20.1,20.12,20.13,20.11,20.09,20.04,19.98,19.740000000000002,N/A,N/A +2012,3,8,18,30,101780,100600,99460,93.57000000000001,0,5.13,6.72,7.43,8.17,8.89,9.620000000000001,10.35,11.06,12.5,128.93,131.4,133.33,135.84,138.53,141.47,144.56,147.58,153.19,20.07,20.2,20.240000000000002,20.25,20.26,20.240000000000002,20.19,20.13,19.79,N/A,N/A +2012,3,8,19,30,101770,100590,99450,93.27,0,5.37,6.91,7.58,8.25,8.9,9.55,10.23,10.9,12.11,120.76,123.92,126.37,129.43,132.47,135.59,138.47,141.16,146.55,20.14,20.29,20.32,20.34,20.34,20.32,20.18,20.01,19.75,N/A,N/A +2012,3,8,20,30,101740,100560,99420,92.64,0,5.87,7.55,8.290000000000001,8.99,9.63,10.23,10.8,11.34,13.040000000000001,121.67,124.64,127.10000000000001,130.35,133.44,136.5,139.92000000000002,143.29,152.62,20.19,20.34,20.37,20.37,20.36,20.34,20.31,20.28,20.06,N/A,N/A +2012,3,8,21,30,101720,100540,99400,92.9,0,5.41,7.05,7.76,8.41,8.950000000000001,9.43,10.14,10.89,12.870000000000001,125.9,127.98,129.69,131.83,134.19,136.71,141.6,147.05,157.44,20.1,20.25,20.28,20.3,20.31,20.32,20.330000000000002,20.34,20.17,N/A,N/A +2012,3,8,22,30,101730,100550,99410,92.93,0,5.0200000000000005,6.8,7.58,8.31,8.83,9.200000000000001,10.120000000000001,11.22,11.82,115.84,118.72,120.85000000000001,123.37,125.83,128.25,141.06,157.12,161.8,20.09,20.28,20.330000000000002,20.37,20.38,20.39,20.42,20.46,20.330000000000002,N/A,N/A +2012,3,8,23,30,101730,100550,99410,92.34,0,5.94,7.69,8.370000000000001,8.96,9.78,10.790000000000001,12.33,14.05,14.22,118.44,122.27,125.42,129.85,136.78,145.82,152.86,159.39000000000001,165.53,20.16,20.35,20.41,20.46,20.48,20.48,20.42,20.35,20.27,N/A,N/A +2012,3,9,0,30,101770,100590,99450,93.35000000000001,0,4.64,6.640000000000001,7.66,8.69,9.38,9.83,9.97,10.02,10.5,113.85000000000001,120.77,126.86,135.71,142.95000000000002,148.86,155.18,161.04,162.5,19.97,20.23,20.31,20.37,20.400000000000002,20.400000000000002,20.42,20.44,20.25,N/A,N/A +2012,3,9,1,30,101800,100620,99480,93.45,0,4.1,6.82,8.14,8.8,8.94,8.76,9.38,10.19,10.81,108.83,126.98,137.49,140.89000000000001,145.57,150.68,159.86,169.91,172.91,20.01,20.41,20.490000000000002,20.42,20.35,20.31,20.2,20.09,19.85,N/A,N/A +2012,3,9,2,30,101830,100650,99500,93.67,0,4.15,6.7700000000000005,8.23,9.53,10.38,10.91,10.290000000000001,9.56,9.25,125.83,136.12,142.48,146,149.48,152.79,161.55,169.85,175.55,19.95,20.11,20.14,20.13,20.1,20.080000000000002,20.12,20.17,20.04,N/A,N/A +2012,3,9,3,30,101870,100690,99540,92.43,0,6.32,7.98,8.19,7.57,7.04,6.58,6.55,6.63,6.75,141.56,146.94,152.65,161.43,170.46,179.4,181.25,181.26,184.22,20.12,20.34,20.45,20.580000000000002,20.56,20.45,20.34,20.22,19.97,N/A,N/A +2012,3,9,4,30,101880,100690,99550,93.39,0,4.83,6.7700000000000005,7.03,6.390000000000001,6.04,5.83,5.61,5.42,5.14,151.12,160.56,166.91,172.08,175.14000000000001,177.1,179.76,182.26,188.16,19.95,20.17,20.3,20.46,20.45,20.330000000000002,20.22,20.13,19.88,N/A,N/A +2012,3,9,5,30,101920,100740,99600,95.75,0,2.54,3.68,4.03,4.29,4.47,4.59,4.6000000000000005,4.58,4.39,126.49000000000001,152.32,168.94,180.98,188.99,193.85,196.76,198.79,201.29,19.66,19.93,20.03,20.150000000000002,20.23,20.28,20.27,20.23,20,N/A,N/A +2012,3,9,6,30,101950,100760,99620,96.06,0,1.9000000000000001,2.58,2.67,2.65,2.62,2.58,2.54,2.49,2.4,179.13,187.81,193.84,200.09,205.73000000000002,210.88,215.32,219.13,225.42000000000002,19.7,19.82,19.87,20.01,20.07,20.080000000000002,20.02,19.94,19.69,N/A,N/A +2012,3,9,7,30,101990,100800,99660,96.63,0,1.62,2.0100000000000002,1.97,1.86,1.67,1.46,1.29,1.1500000000000001,1.1300000000000001,177.67000000000002,187.83,194.11,199.53,204.93,209.96,218.56,226.8,248.29,19.55,20.06,20.26,20.31,20.28,20.19,20.09,19.990000000000002,19.76,N/A,N/A +2012,3,9,8,30,102000,100810,99670,96.60000000000001,0,1.75,1.76,1.51,1.24,1.01,0.81,0.58,0.41000000000000003,0.16,155.47,160.53,160.81,156.91,150.65,143.74,132.46,123.97,47.480000000000004,19.580000000000002,20.1,20.3,20.35,20.31,20.21,20.080000000000002,19.95,19.67,N/A,N/A +2012,3,9,9,30,102030,100850,99700,97.33,0,0.93,1.08,1.07,1.1300000000000001,1.1500000000000001,1.16,1.11,1.06,1.06,195.05,220.67000000000002,236.64000000000001,253.84,267.71,279.07,290.06,299.6,313.33,19.39,19.47,19.490000000000002,19.57,19.6,19.61,19.56,19.51,19.3,N/A,N/A +2012,3,9,10,30,102020,100830,99680,98.04,0,0.81,0.74,0.5700000000000001,0.39,0.38,0.44,0.53,0.63,0.73,188.99,211.21,231.54,260.73,286.71,319.08,331.79,338.76,338.09000000000003,19.22,19.330000000000002,19.37,19.39,19.36,19.3,19.2,19.1,18.98,N/A,N/A +2012,3,9,11,30,102050,100860,99710,98.25,0,0.9400000000000001,0.8,0.56,0.33,0.36,0.6,0.8300000000000001,1.07,1.56,200.59,201.21,228.53,286.11,302.09000000000003,302.96,305.98,310.09000000000003,315.61,19.18,19.21,19.34,19.72,19.830000000000002,19.75,19.63,19.51,19.29,N/A,N/A +2012,3,9,12,30,102100,100890,99730,93.45,0,8.2,8.78,8.88,8.89,8.88,8.86,8.86,8.84,8.23,332.75,332.99,333.09000000000003,333.21,333.35,333.5,333.8,334.26,337.75,17.67,17.32,17.14,16.95,16.77,16.59,16.41,16.26,16.32,N/A,N/A +2012,3,9,13,30,102180,100970,99790,92.2,0.7000000000000001,10.22,10.98,11.11,11.120000000000001,11.09,11.06,11.01,10.97,10.74,6.7700000000000005,6.99,7.11,7.23,7.34,7.47,7.66,7.91,9.51,16.490000000000002,16.05,15.860000000000001,15.66,15.47,15.3,15.11,14.94,14.86,N/A,N/A +2012,3,9,14,30,102280,101060,99880,90.35000000000001,0.4,11.17,12.030000000000001,12.19,12.23,12.23,12.200000000000001,12.15,12.11,12.030000000000001,23.25,23.6,23.84,24.07,24.32,24.57,24.92,25.29,26.57,15.24,14.71,14.5,14.290000000000001,14.1,13.92,13.73,13.55,13.22,N/A,N/A +2012,3,9,15,30,102320,101110,99920,90.28,0,10.52,11.34,11.51,11.58,11.61,11.620000000000001,11.6,11.58,11.540000000000001,32.25,32.410000000000004,32.53,32.64,32.76,32.88,33.03,33.19,33.59,14.780000000000001,14.23,14,13.790000000000001,13.59,13.41,13.200000000000001,13.02,12.65,N/A,N/A +2012,3,9,16,30,102330,101110,99930,89.39,0,10.32,11.120000000000001,11.290000000000001,11.36,11.39,11.4,11.4,11.39,11.36,37.45,37.660000000000004,37.79,37.910000000000004,38.050000000000004,38.17,38.32,38.47,38.87,14.700000000000001,14.15,13.93,13.72,13.51,13.33,13.120000000000001,12.94,12.57,N/A,N/A +2012,3,9,17,30,102340,101120,99940,89.60000000000001,0.4,10.83,11.72,11.9,11.98,12.02,12.030000000000001,12.030000000000001,12.02,12,39.78,39.94,40.08,40.230000000000004,40.38,40.53,40.72,40.910000000000004,41.43,14.98,14.43,14.21,14,13.8,13.620000000000001,13.41,13.23,12.86,N/A,N/A +2012,3,9,18,30,102400,101180,99990,87.4,0,10.370000000000001,11.23,11.43,11.53,11.58,11.620000000000001,11.620000000000001,11.620000000000001,11.61,31.6,31.82,31.98,32.14,32.28,32.410000000000004,32.55,32.7,33,15.040000000000001,14.5,14.27,14.06,13.85,13.66,13.450000000000001,13.26,12.870000000000001,N/A,N/A +2012,3,9,19,30,102450,101230,100040,87.42,0,10.35,11.18,11.36,11.44,11.48,11.51,11.5,11.49,11.450000000000001,22.080000000000002,22.400000000000002,22.61,22.8,23,23.17,23.36,23.55,23.96,14.69,14.13,13.9,13.68,13.47,13.280000000000001,13.07,12.88,12.49,N/A,N/A +2012,3,9,20,30,102410,101190,100000,87.67,0,11.32,12.26,12.47,12.56,12.61,12.63,12.63,12.620000000000001,12.57,34.51,34.76,34.910000000000004,35.06,35.22,35.37,35.54,35.72,36.13,13.99,13.38,13.14,12.92,12.71,12.52,12.31,12.120000000000001,11.74,N/A,N/A +2012,3,9,21,30,102410,101180,99990,87.95,0,11.4,12.32,12.52,12.61,12.66,12.68,12.68,12.68,12.64,36.54,36.730000000000004,36.86,37,37.14,37.28,37.45,37.62,38.02,13.66,13.02,12.780000000000001,12.56,12.35,12.15,11.950000000000001,11.76,11.370000000000001,N/A,N/A +2012,3,9,22,30,102420,101200,100010,88.09,0,11.5,12.46,12.69,12.8,12.86,12.91,12.92,12.93,12.950000000000001,41,41.21,41.37,41.52,41.67,41.82,41.99,42.14,42.550000000000004,14.120000000000001,13.51,13.280000000000001,13.06,12.85,12.66,12.46,12.27,11.89,N/A,N/A +2012,3,9,23,30,102430,101210,100020,87.65,0,10.32,11.11,11.290000000000001,11.370000000000001,11.41,11.43,11.43,11.43,11.41,32.87,33.25,33.54,33.83,34.14,34.42,34.76,35.08,35.84,14.31,13.73,13.5,13.290000000000001,13.08,12.89,12.68,12.5,12.120000000000001,N/A,N/A +2012,3,10,0,30,102460,101230,100040,89.86,0,10.48,11.27,11.44,11.5,11.52,11.53,11.51,11.49,11.43,32.58,32.99,33.21,33.43,33.67,33.9,34.17,34.45,35.15,13.41,12.790000000000001,12.55,12.34,12.13,11.94,11.74,11.56,11.19,N/A,N/A +2012,3,10,1,30,102470,101240,100050,92.02,0.4,11.16,12.07,12.26,12.35,12.39,12.42,12.41,12.41,12.39,40.17,40.57,40.81,41.050000000000004,41.300000000000004,41.52,41.800000000000004,42.07,42.7,13.31,12.67,12.43,12.21,12,11.82,11.61,11.43,11.05,N/A,N/A +2012,3,10,2,30,102520,101290,100100,90.22,0,10.35,11.200000000000001,11.4,11.51,11.57,11.6,11.620000000000001,11.63,11.620000000000001,45.800000000000004,46.12,46.29,46.45,46.61,46.76,46.94,47.09,47.47,13.69,13.08,12.84,12.620000000000001,12.41,12.21,12.01,11.82,11.43,N/A,N/A +2012,3,10,3,30,102490,101270,100080,89.01,0,10.9,11.82,12.040000000000001,12.16,12.23,12.27,12.3,12.31,12.31,48.230000000000004,48.57,48.79,48.980000000000004,49.17,49.34,49.53,49.71,50.08,14.38,13.790000000000001,13.56,13.34,13.13,12.94,12.73,12.540000000000001,12.14,N/A,N/A +2012,3,10,4,30,102480,101250,100070,87.69,0,10.49,11.36,11.56,11.67,11.73,11.76,11.78,11.790000000000001,11.78,53.9,54.050000000000004,54.13,54.21,54.300000000000004,54.38,54.480000000000004,54.57,54.800000000000004,14.48,13.9,13.67,13.46,13.25,13.05,12.85,12.65,12.27,N/A,N/A +2012,3,10,5,30,102470,101250,100060,88.46000000000001,0,9.32,10.01,10.16,10.23,10.26,10.28,10.28,10.28,10.25,46.2,46.78,47.19,47.58,47.97,48.31,48.71,49.08,49.89,14.44,13.89,13.66,13.450000000000001,13.24,13.05,12.85,12.66,12.280000000000001,N/A,N/A +2012,3,10,6,30,102450,101230,100040,89.89,0,9.92,10.69,10.86,10.94,10.97,11,11,10.99,10.96,45.33,45.76,46.01,46.24,46.46,46.67,46.910000000000004,47.13,47.64,14.08,13.49,13.26,13.040000000000001,12.83,12.64,12.44,12.25,11.86,N/A,N/A +2012,3,10,7,30,102430,101210,100020,88.45,0,10.17,10.950000000000001,11.11,11.19,11.22,11.23,11.22,11.21,11.16,56.75,56.93,57.03,57.14,57.25,57.34,57.47,57.59,57.88,14.15,13.55,13.32,13.11,12.89,12.700000000000001,12.5,12.31,11.92,N/A,N/A +2012,3,10,8,30,102390,101160,99980,87.33,0,9.81,10.6,10.78,10.870000000000001,10.92,10.950000000000001,10.96,10.97,10.96,67.68,67.98,68.17,68.35000000000001,68.53,68.7,68.9,69.09,69.53,14.700000000000001,14.14,13.92,13.71,13.5,13.31,13.1,12.92,12.530000000000001,N/A,N/A +2012,3,10,9,30,102330,101110,99930,83.98,0,9.99,10.82,11,11.09,11.14,11.16,11.17,11.17,11.15,74.95,75.14,75.26,75.38,75.52,75.64,75.79,75.93,76.3,15.57,15.06,14.84,14.63,14.42,14.24,14.030000000000001,13.84,13.46,N/A,N/A +2012,3,10,10,30,102330,101120,99940,82.96000000000001,0,9.450000000000001,10.25,10.44,10.540000000000001,10.6,10.64,10.66,10.68,10.68,77.77,77.99,78.12,78.24,78.36,78.46000000000001,78.58,78.69,78.93,16.01,15.530000000000001,15.32,15.1,14.9,14.71,14.5,14.31,13.92,N/A,N/A +2012,3,10,11,30,102310,101100,99930,81.5,0,9.620000000000001,10.44,10.63,10.73,10.78,10.82,10.83,10.83,10.82,75.68,75.93,76.05,76.16,76.26,76.36,76.46000000000001,76.56,76.79,16.4,15.94,15.73,15.530000000000001,15.32,15.13,14.92,14.74,14.35,N/A,N/A +2012,3,10,12,30,102320,101110,99930,81.31,0,9.69,10.540000000000001,10.74,10.84,10.9,10.94,10.950000000000001,10.96,10.950000000000001,78.97,79.15,79.25,79.35000000000001,79.45,79.54,79.65,79.75,79.98,16.54,16.09,15.88,15.67,15.47,15.280000000000001,15.07,14.88,14.49,N/A,N/A +2012,3,10,13,30,102310,101100,99930,81.43,0,9.94,10.85,11.07,11.19,11.26,11.31,11.33,11.35,11.36,81.64,81.77,81.86,81.95,82.04,82.12,82.21000000000001,82.3,82.5,16.830000000000002,16.39,16.19,15.98,15.780000000000001,15.59,15.38,15.19,14.8,N/A,N/A +2012,3,10,14,30,102300,101100,99920,82.89,0,10.200000000000001,11.14,11.370000000000001,11.48,11.55,11.6,11.620000000000001,11.64,11.65,82.63,82.95,83.15,83.34,83.53,83.71000000000001,83.92,84.11,84.56,17.06,16.64,16.44,16.240000000000002,16.04,15.85,15.65,15.47,15.08,N/A,N/A +2012,3,10,15,30,102280,101080,99910,83.51,0,10.290000000000001,11.32,11.58,11.74,11.84,11.91,11.96,12,12.05,88.61,89.02,89.26,89.49,89.71000000000001,89.91,90.13,90.34,90.77,17.66,17.29,17.1,16.9,16.7,16.52,16.32,16.13,15.74,N/A,N/A +2012,3,10,16,30,102250,101050,99880,82.63,0,10.15,11.19,11.47,11.63,11.73,11.81,11.86,11.9,11.950000000000001,90.62,91,91.23,91.46000000000001,91.68,91.89,92.11,92.31,92.74,17.94,17.59,17.41,17.21,17.02,16.830000000000002,16.63,16.44,16.06,N/A,N/A +2012,3,10,17,30,102200,101000,99830,82.18,0,10.1,11.11,11.370000000000001,11.51,11.59,11.66,11.69,11.71,11.73,89.96000000000001,90.25,90.46000000000001,90.66,90.86,91.05,91.25,91.44,91.86,18.1,17.76,17.580000000000002,17.38,17.19,17,16.8,16.62,16.23,N/A,N/A +2012,3,10,18,30,102170,100970,99800,83.98,0,9.88,10.86,11.11,11.24,11.33,11.39,11.43,11.450000000000001,11.47,90.60000000000001,90.75,90.84,90.93,91.01,91.09,91.17,91.25,91.43,18.14,17.81,17.63,17.43,17.23,17.05,16.84,16.66,16.27,N/A,N/A +2012,3,10,19,30,102130,100930,99770,86.77,0,9.66,10.58,10.8,10.93,11,11.06,11.09,11.11,11.13,88.65,88.98,89.2,89.42,89.65,89.87,90.12,90.36,90.95,17.98,17.63,17.45,17.25,17.06,16.88,16.68,16.5,16.13,N/A,N/A +2012,3,10,20,30,102080,100880,99720,88.25,0,9.540000000000001,10.44,10.66,10.78,10.85,10.9,10.92,10.94,10.97,89.57000000000001,90,90.24,90.5,90.77,91.01,91.3,91.57000000000001,92.26,18.04,17.7,17.52,17.32,17.13,16.95,16.740000000000002,16.56,16.18,N/A,N/A +2012,3,10,21,30,102050,100850,99680,90.13,0,9.89,10.83,11.040000000000001,11.15,11.22,11.26,11.28,11.3,11.35,90.35000000000001,90.61,90.8,91.01,91.24,91.46000000000001,91.76,92.04,92.85000000000001,18.04,17.69,17.51,17.32,17.12,16.94,16.75,16.57,16.19,N/A,N/A +2012,3,10,22,30,102010,100810,99650,91.3,0,9.65,10.58,10.790000000000001,10.91,10.99,11.05,11.1,11.14,11.3,90.9,91.17,91.35000000000001,91.57000000000001,91.82000000000001,92.08,92.45,92.81,94.02,18.23,17.900000000000002,17.72,17.53,17.34,17.16,16.97,16.79,16.43,N/A,N/A +2012,3,10,23,30,101970,100780,99620,91.66,0,9.21,10.27,10.61,10.9,11.19,11.47,11.82,12.13,12.34,90.98,91.55,91.98,92.51,93.12,93.76,94.55,95.23,95.79,18.68,18.400000000000002,18.240000000000002,18.07,17.89,17.73,17.55,17.39,17.01,N/A,N/A +2012,3,11,0,30,101940,100750,99590,92.02,1.5,8.8,10.1,10.64,11.18,11.43,11.53,11.73,11.950000000000001,12.43,97.39,97.55,97.59,97.55,97.63,97.76,98.2,98.67,99.92,18.8,18.54,18.38,18.2,18.01,17.830000000000002,17.650000000000002,17.48,17.16,N/A,N/A +2012,3,11,1,30,101930,100740,99580,91.45,0,10.040000000000001,11.33,11.75,12.09,12.38,12.63,12.870000000000001,13.08,13.5,101.69,101.99000000000001,102.23,102.48,102.75,103.02,103.34,103.65,104.37,19.01,18.77,18.62,18.45,18.28,18.11,17.93,17.77,17.43,N/A,N/A +2012,3,11,2,30,101870,100680,99530,92.73,0.4,11.26,12.77,13.290000000000001,13.71,14.06,14.370000000000001,14.67,14.94,15.47,106.07000000000001,106.36,106.55,106.77,107,107.23,107.5,107.76,108.43,19.09,18.87,18.73,18.57,18.400000000000002,18.240000000000002,18.07,17.91,17.580000000000002,N/A,N/A +2012,3,11,3,30,101880,100690,99530,94.58,0.4,10.08,11.55,12.09,12.56,12.97,13.35,13.71,14.040000000000001,14.71,112.56,112.94,113.17,113.42,113.68,113.94,114.24000000000001,114.54,115.28,19.240000000000002,19.04,18.900000000000002,18.740000000000002,18.580000000000002,18.43,18.26,18.11,17.82,N/A,N/A +2012,3,11,4,30,101880,100690,99540,95.46000000000001,0,9.74,11.200000000000001,11.74,12.23,12.67,13.08,13.5,13.89,14.71,118.61,118.71000000000001,118.81,118.94,119.08,119.23,119.44,119.63,120.23,19.330000000000002,19.14,19.01,18.86,18.72,18.57,18.43,18.29,18.03,N/A,N/A +2012,3,11,5,30,101850,100660,99510,96.29,0,9.38,10.88,11.450000000000001,11.96,12.44,12.88,13.33,13.76,14.67,120.03,120.22,120.35000000000001,120.52,120.75,120.99000000000001,121.31,121.64,122.51,19.42,19.26,19.16,19.03,18.900000000000002,18.79,18.67,18.57,18.400000000000002,N/A,N/A +2012,3,11,6,30,101830,100640,99490,96.17,4.800000000000001,7.67,9,9.56,10.09,10.6,11.08,11.57,12.040000000000001,13.030000000000001,117.64,117.49000000000001,117.47,117.49000000000001,117.61,117.78,118.12,118.49000000000001,119.51,19.41,19.3,19.22,19.12,19,18.89,18.81,18.740000000000002,18.580000000000002,N/A,N/A +2012,3,11,7,30,101830,100640,99490,95.29,115,9.49,11.15,11.82,12.46,13.040000000000001,13.57,14.07,14.52,15.26,130.7,130.15,129.95,129.82,129.86,130.02,130.55,131.15,133.89000000000001,19.59,19.5,19.42,19.32,19.25,19.19,19.13,19.07,18.97,N/A,N/A +2012,3,11,8,30,101770,100580,99440,95.37,5.1000000000000005,8.22,9.86,10.6,11.370000000000001,12.16,12.97,13.81,14.620000000000001,16.05,125.52,127.23,128.58,130.49,132.69,135.09,137.69,140.21,145.06,19.580000000000002,19.55,19.53,19.53,19.54,19.57,19.6,19.63,19.72,N/A,N/A +2012,3,11,9,30,101750,100570,99420,93.56,0.4,8.96,10.71,11.44,12.15,12.86,13.58,14.35,15.09,16.54,140.19,140.12,140.16,140.25,140.44,140.71,141.09,141.48,142.15,19.95,19.96,19.93,19.89,19.84,19.8,19.77,19.75,19.77,N/A,N/A +2012,3,11,10,30,101740,100560,99420,93.77,11.700000000000001,8.61,10.28,10.94,11.56,12.120000000000001,12.64,13.16,13.65,14.66,134.74,134.9,135.15,135.53,135.92000000000002,136.31,136.72,137.12,138.24,19.92,19.92,19.88,19.830000000000002,19.78,19.72,19.650000000000002,19.59,19.44,N/A,N/A +2012,3,11,11,30,101740,100560,99410,93.59,1.8,7.640000000000001,9.59,10.51,11.48,12.39,13.25,14.07,14.83,16.18,112.38,117.65,121.09,124.51,127.41,129.98,132.35,134.54,138.76,19.96,19.990000000000002,19.97,19.93,19.89,19.85,19.8,19.76,19.66,N/A,N/A +2012,3,11,12,30,101730,100550,99410,93.22,0.7000000000000001,9.49,11.36,12.120000000000001,12.84,13.49,14.09,14.620000000000001,15.09,15.88,146.31,146.97,147.39000000000001,147.89000000000001,148.33,148.74,149.14000000000001,149.51,150.79,20.02,20.04,20.01,19.98,19.94,19.900000000000002,19.84,19.79,19.650000000000002,N/A,N/A +2012,3,11,13,30,101730,100550,99400,93.22,0.7000000000000001,10.040000000000001,12.01,12.81,13.620000000000001,14.370000000000001,15.07,15.790000000000001,16.48,17.92,151.04,151.77,152.22,152.79,153.4,154.02,154.77,155.5,157.36,20.03,20.04,20.01,19.97,19.92,19.87,19.81,19.77,19.69,N/A,N/A +2012,3,11,14,30,101810,100630,99480,93.14,0.4,7.92,9.77,10.59,11.43,12.200000000000001,12.94,13.61,14.23,15.34,160.26,160.32,160.36,160.5,160.77,161.13,161.65,162.19,163.89000000000001,20.07,20.1,20.09,20.080000000000002,20.06,20.05,20.03,20.01,19.91,N/A,N/A +2012,3,11,15,30,101830,100650,99500,92.97,31.900000000000002,7.68,9.450000000000001,10.21,10.86,11.41,11.91,12.38,12.81,13.64,167.54,167.89000000000001,168.04,167.94,167.8,167.63,167.45000000000002,167.27,166.81,20.13,20.31,20.35,20.34,20.3,20.25,20.18,20.12,19.97,N/A,N/A +2012,3,11,16,30,101810,100630,99480,92.59,4.4,8.02,9.91,10.83,11.77,12.57,13.280000000000001,13.89,14.44,15.42,159.84,161,161.87,163.14000000000001,164.44,165.82,167.03,168.12,168.9,20.2,20.31,20.34,20.36,20.36,20.35,20.31,20.27,20.22,N/A,N/A +2012,3,11,17,30,101820,100640,99490,92.64,0.7000000000000001,8.290000000000001,10.21,11.07,11.93,12.74,13.540000000000001,14.34,15.11,16.64,166.29,166.86,167.24,167.69,168.17000000000002,168.67000000000002,169.22,169.75,170.96,20.23,20.29,20.29,20.26,20.240000000000002,20.2,20.150000000000002,20.1,20.080000000000002,N/A,N/A +2012,3,11,18,30,101800,100620,99470,92.69,0,8.44,10.23,10.950000000000001,11.620000000000001,12.22,12.76,13.280000000000001,13.77,14.73,169.71,170.47,171.07,171.85,172.63,173.42000000000002,174.09,174.70000000000002,175.42000000000002,20.22,20.27,20.26,20.23,20.2,20.16,20.12,20.07,19.96,N/A,N/A +2012,3,11,19,30,101780,100600,99450,93.11,0,7.5200000000000005,9.31,10.1,10.9,11.65,12.36,13.040000000000001,13.68,14.71,174.22,173.71,173.51,173.46,173.57,173.78,174.12,174.46,175.27,20.19,20.23,20.22,20.21,20.21,20.23,20.23,20.23,20.150000000000002,N/A,N/A +2012,3,11,20,30,101760,100570,99420,97.97,6.6000000000000005,3.69,4.2700000000000005,4.48,4.72,4.88,4.98,5.09,5.19,5.54,243.11,240.21,237.46,233.64000000000001,228.64000000000001,223.16,217.35,211.92000000000002,201.29,19.16,19.080000000000002,19.06,19.06,19.080000000000002,19.12,19.12,19.12,19.080000000000002,N/A,N/A +2012,3,11,21,30,101760,100570,99420,96.46000000000001,73.60000000000001,5.41,6.73,7.390000000000001,8.03,8.43,8.69,8.9,9.08,9.44,226.72,225.56,224.98000000000002,224.44,223.74,223,222.06,221.13,218.70000000000002,19.17,19.21,19.26,19.34,19.36,19.35,19.32,19.28,19.19,N/A,N/A +2012,3,11,22,30,101720,100530,99390,96.86,30,3.16,4.43,5.23,6.19,6.86,7.33,7.84,8.34,9.28,183.5,184.52,185.76,186.58,186.72,186.39000000000001,185.71,184.97,183.48,19.1,19.3,19.51,19.85,20.080000000000002,20.240000000000002,20.36,20.47,20.53,N/A,N/A +2012,3,11,23,30,101730,100540,99390,96.87,2.2,4.13,5.09,5.59,6.18,6.6000000000000005,6.9,7.09,7.24,7.69,211.67000000000002,212.8,213.46,214.01,213.81,213.08,211.84,210.59,207.92000000000002,19.21,19.150000000000002,19.16,19.22,19.22,19.19,19.13,19.07,18.98,N/A,N/A +2012,3,12,0,30,101710,100520,99370,94.99,0,3.3000000000000003,4.23,4.74,5.38,5.96,6.48,6.73,6.9,7.23,218.78,221.18,222.92000000000002,225.07,225.84,225.68,223.99,222.09,217.20000000000002,19.07,18.97,18.94,18.97,19.03,19.09,19.06,19.01,18.89,N/A,N/A +2012,3,12,1,30,101750,100560,99410,94.02,0,2.71,3.7600000000000002,4.3,4.8500000000000005,5.28,5.63,6.03,6.42,7.29,205.55,208.48000000000002,209.89000000000001,210.58,209.51,207.26,204.8,202.4,198.55,19.12,19.16,19.21,19.29,19.35,19.400000000000002,19.46,19.51,19.59,N/A,N/A +2012,3,12,2,30,101750,100560,99410,93.96000000000001,0,3.7,4.57,5.01,5.54,5.9,6.15,6.45,6.74,7.42,202.12,205.82,207.77,209.08,208.43,206.81,204.68,202.63,199.11,19.07,19.04,19.080000000000002,19.150000000000002,19.16,19.13,19.12,19.12,19.12,N/A,N/A +2012,3,12,3,30,101760,100570,99430,94.2,0,3.23,3.92,4.23,4.57,4.83,5.0600000000000005,5.3500000000000005,5.64,6.36,184.12,188.89000000000001,192.41,196.67000000000002,198.58,199.13,198.07,196.76,195.75,19.04,18.94,18.94,19,19.02,19.01,19.07,19.14,19.25,N/A,N/A +2012,3,12,4,30,101760,100570,99420,95.18,0.4,3.45,4.16,4.67,5.53,6.11,6.49,6.83,7.140000000000001,7.7700000000000005,198.74,200.23000000000002,201.31,202.53,203.41,204.04,203.56,202.89000000000001,200.81,18.91,18.75,18.77,18.92,19.04,19.150000000000002,19.21,19.25,19.17,N/A,N/A +2012,3,12,5,30,101750,100560,99410,95.76,0,2.79,3.58,4.21,5.3500000000000005,6.0600000000000005,6.43,6.86,7.28,8.27,192.93,192.57,192.63,193.54,193.32,192.38,190.88,189.34,186.5,19.02,18.92,18.96,19.13,19.17,19.14,19.080000000000002,19.03,19.080000000000002,N/A,N/A +2012,3,12,6,30,101770,100580,99440,96.15,9.200000000000001,2.46,3.74,4.83,6.69,8.03,8.86,9.26,9.52,9.83,197.70000000000002,198.70000000000002,197.17000000000002,190.15,185.76,183.75,183.26,183.19,184.44,19.11,19.13,19.23,19.42,19.55,19.64,19.650000000000002,19.64,19.57,N/A,N/A +2012,3,12,7,30,101780,100590,99450,97.59,4.4,2.16,2.33,2.9,5.22,7.03,7.92,8.42,8.78,9.21,179.22,178.34,178.4,180.07,181.44,182.22,183.62,185.07,187.77,19.03,18.84,18.87,19.12,19.29,19.41,19.43,19.43,19.37,N/A,N/A +2012,3,12,8,30,101790,100610,99460,94.39,1.5,5.24,6.61,7.24,7.96,8.61,9.23,10,10.790000000000001,11.870000000000001,191.45000000000002,188.8,186.93,185.11,184.04,183.42000000000002,182.96,182.55,184.94,19.88,19.93,19.94,19.94,19.92,19.89,19.81,19.740000000000002,19.55,N/A,N/A +2012,3,12,9,30,101810,100620,99470,98.8,0.7000000000000001,2.5100000000000002,3.98,4.79,5.26,5.69,6.09,6.46,6.8,7.37,262,232.14000000000001,214.88,209.85,206.26,203.59,201.98000000000002,200.69,197.96,19,19.31,19.47,19.54,19.6,19.64,19.64,19.62,19.54,N/A,N/A +2012,3,12,10,30,101840,100650,99500,97.21000000000001,0,2.17,2.84,3.23,3.72,4.04,4.25,4.48,4.72,5.25,251.9,247.45000000000002,243.06,235.81,230.23000000000002,225.9,221.61,217.6,212.12,18.97,18.84,18.78,18.73,18.78,18.89,19.01,19.12,19.21,N/A,N/A +2012,3,12,11,30,101870,100680,99530,96.71000000000001,0,1.86,2.43,2.7800000000000002,3.27,3.62,3.85,4.11,4.36,4.97,241.11,240.36,239.33,237.39000000000001,234.43,230.87,227.14000000000001,223.61,217.76,18.97,18.81,18.75,18.7,18.7,18.72,18.76,18.79,18.900000000000002,N/A,N/A +2012,3,12,12,30,101900,100710,99560,97.62,0,0.75,1.32,1.6300000000000001,2.0100000000000002,2.38,2.74,3.09,3.42,4.09,216.52,226.68,231.9,231.86,230.17000000000002,227.28,224.73000000000002,222.34,218.76,18.94,18.830000000000002,18.82,18.88,18.95,19.04,19.07,19.1,19.06,N/A,N/A +2012,3,12,13,30,101930,100740,99590,97.61,0,0.5700000000000001,1.04,1.31,1.57,1.78,1.96,2.14,2.32,2.7600000000000002,242.95000000000002,252.15,257.65,259.22,256.92,252.05,246.56,241.18,231.81,18.97,18.82,18.77,18.75,18.76,18.79,18.82,18.830000000000002,18.830000000000002,N/A,N/A +2012,3,12,14,30,101990,100790,99640,96.75,0,1.6600000000000001,1.51,1.34,1.18,1.18,1.27,1.45,1.6600000000000001,2.13,142.94,150.96,158.32,169.13,179.71,190.98,196.48000000000002,200.68,202.85,19.05,18.94,18.92,18.95,18.97,18.990000000000002,18.97,18.94,18.85,N/A,N/A +2012,3,12,15,30,102000,100810,99660,97.11,0,1.62,1.7,1.75,2,2.2600000000000002,2.56,2.83,3.09,3.5700000000000003,146.08,162.20000000000002,170.41,177.58,181.37,183,183.94,184.70000000000002,186.14000000000001,19.18,19.26,19.330000000000002,19.42,19.46,19.46,19.41,19.34,19.18,N/A,N/A +2012,3,12,16,30,102020,100830,99680,98.01,0,1.68,1.69,1.68,1.82,2.02,2.25,2.5300000000000002,2.81,3.38,122.46000000000001,135.83,143.69,151.93,157.44,161.44,164.06,166.3,169.56,19.23,19.26,19.27,19.27,19.25,19.22,19.2,19.19,19.16,N/A,N/A +2012,3,12,17,30,102010,100830,99680,98.36,2.2,1.6500000000000001,2.48,2.8000000000000003,3.06,3.2800000000000002,3.47,3.66,3.83,4.24,150.61,157.65,162.81,167.8,171.65,174.71,177.49,180.02,184.68,19.54,19.6,19.62,19.61,19.59,19.580000000000002,19.56,19.55,19.52,N/A,N/A +2012,3,12,18,30,102020,100830,99690,95.51,0,4.41,5.64,6.0200000000000005,6.09,5.95,5.69,5.53,5.41,5.51,153.69,158.43,162.77,169.07,176.02,182.91,186.04,188.01,193.15,20.18,20.12,20.06,20,19.96,19.92,19.85,19.78,19.63,N/A,N/A +2012,3,12,19,30,102020,100830,99690,94.84,0,5.18,6.5,6.8500000000000005,6.87,6.76,6.57,6.47,6.390000000000001,6.28,161.22,165.71,169.44,174.35,178.07,180.97,182.52,183.62,186.04,20.19,20.16,20.12,20.07,20.04,20.02,19.91,19.78,19.580000000000002,N/A,N/A +2012,3,12,20,30,101990,100810,99660,95.39,0,3.54,5.1000000000000005,5.65,5.84,5.86,5.78,5.79,5.8100000000000005,6.03,173.98,175.28,177.54,182.09,185.21,187.33,188.71,189.79,191.18,20.22,20.18,20.14,20.13,20.080000000000002,20.01,19.900000000000002,19.78,19.56,N/A,N/A +2012,3,12,21,30,101970,100790,99640,95.34,0,3.5300000000000002,4.99,5.5200000000000005,5.7,5.73,5.64,5.64,5.66,5.87,169.21,173.85,177.52,181.86,184.98,187.20000000000002,188.39000000000001,189.20000000000002,189.95000000000002,20.26,20.1,20.04,20.150000000000002,20.16,20.11,20,19.88,19.64,N/A,N/A +2012,3,12,22,30,101950,100770,99620,94.97,0,3.5100000000000002,5.08,5.53,5.47,5.39,5.3,5.28,5.2700000000000005,5.38,158.76,166.79,172.32,177.32,180.21,181.78,182.14000000000001,182.14000000000001,182.04,20.35,20.45,20.38,20.150000000000002,20.03,19.98,19.98,19.990000000000002,19.88,N/A,N/A +2012,3,12,23,30,101940,100750,99610,94.89,0,3.9,5.29,5.73,5.8500000000000005,5.8500000000000005,5.8,5.82,5.86,5.89,156.24,162.75,167.41,172.33,175.36,177.18,177.87,178.21,179.28,20.06,20.18,20.17,20.080000000000002,20,19.93,19.87,19.8,19.76,N/A,N/A +2012,3,13,0,30,101930,100750,99600,94.62,0,4.8500000000000005,6.1000000000000005,6.4,6.38,6.28,6.15,6,5.87,5.94,153.85,160.13,164.79,169.99,172.95000000000002,174.53,174.76,174.70000000000002,175.73,19.92,19.98,19.95,19.84,19.75,19.67,19.75,19.85,19.81,N/A,N/A +2012,3,13,1,30,101950,100760,99620,95.98,0,3.18,5.04,5.73,5.78,5.8,5.78,5.69,5.6000000000000005,5.48,161.16,165.15,168.65,172.78,174.32,174.29,175.1,176.03,175.45000000000002,19.66,20.13,20.25,20.150000000000002,20.05,19.96,20.02,20.11,20.37,N/A,N/A +2012,3,13,2,30,101980,100800,99650,93.69,0,4.68,6.63,7.33,7.55,7.33,6.88,6.79,6.79,6.79,151.58,154.74,157.43,160.96,164.72,168.34,169.18,169.34,169.61,20.11,20.29,20.330000000000002,20.36,20.240000000000002,20.04,19.92,19.84,19.650000000000002,N/A,N/A +2012,3,13,3,30,101990,100810,99660,94,0,3.86,5.5600000000000005,6.41,7.33,7.7700000000000005,7.8500000000000005,7.8500000000000005,7.82,7.7,153.57,154.45000000000002,156.89000000000001,162.33,166,168.21,168.51,168.24,168.17000000000002,20.09,20.35,20.42,20.45,20.34,20.14,20.01,19.900000000000002,20.01,N/A,N/A +2012,3,13,4,30,102000,100810,99670,94.68,0.4,3.56,5.23,5.98,6.68,7.22,7.640000000000001,7.97,8.24,8.22,154.09,156.49,158.81,162.39000000000001,164.57,165.78,165.92000000000002,165.81,165.96,19.95,20.1,19.94,19.41,19.21,19.2,19.89,20.650000000000002,20.85,N/A,N/A +2012,3,13,5,30,102000,100810,99660,95.13,0.7000000000000001,5.18,6.57,7.24,8,8.64,9.200000000000001,9.56,9.83,9.870000000000001,168.61,168.04,168,168.62,169.66,170.93,172.06,173.05,172.49,19.73,19.71,19.62,19.43,19.22,18.990000000000002,19.03,19.13,19.830000000000002,N/A,N/A +2012,3,13,6,30,102020,100830,99680,97.29,0.4,3.58,4.72,5.26,5.8100000000000005,6.32,6.8100000000000005,7.2,7.53,7.9,166.4,166.54,167.41,169.48,173,177.5,180.77,183.52,183.07,19.81,19.82,19.79,19.68,19.51,19.3,19.6,20.01,20.36,N/A,N/A +2012,3,13,7,30,102050,100860,99710,97.33,0,3.38,4.76,5.45,6.05,6.61,7.13,7.42,7.63,7.74,166.94,167.26,166.33,163.63,163.21,164.12,166.69,169.42000000000002,171.92000000000002,19.82,19.72,19.650000000000002,19.57,19.44,19.28,19.12,18.98,19.52,N/A,N/A +2012,3,13,8,30,102040,100850,99700,97.68,0,5.98,6.99,7.3500000000000005,7.6000000000000005,7.71,7.73,7.61,7.49,7.67,174.55,174.65,174.99,175.82,177.5,179.65,181.52,183.02,181.20000000000002,19.72,19.6,19.51,19.38,19.26,19.150000000000002,19.11,19.080000000000002,18.990000000000002,N/A,N/A +2012,3,13,9,30,102050,100860,99700,97.32000000000001,0,4.97,5.98,6.3100000000000005,6.45,6.54,6.61,6.65,6.69,6.74,184.54,184.81,184.65,184.08,183.47,182.83,181.93,181.07,179.83,19.79,19.64,19.53,19.37,19.240000000000002,19.13,19.02,18.92,18.71,N/A,N/A +2012,3,13,10,30,102050,100860,99710,97.71000000000001,0.4,3.1,3.85,4.11,4.3100000000000005,4.84,5.63,6.22,6.73,6.94,164.95000000000002,170.38,173.41,175.68,177.29,178.59,178.59,178.25,176.89000000000001,19.73,19.63,19.56,19.47,19.36,19.25,19.13,19.03,18.87,N/A,N/A +2012,3,13,11,30,102060,100880,99730,96.63,0.4,4.34,6.13,6.92,7.46,7.68,7.68,7.61,7.5200000000000005,7.44,185.20000000000002,185.76,186.05,186.1,185.83,185.36,184.70000000000002,184.09,183.47,19.95,19.92,19.87,19.77,19.66,19.56,19.44,19.330000000000002,19.11,N/A,N/A +2012,3,13,12,30,102080,100890,99740,97.71000000000001,0.4,3.65,4.7700000000000005,5.22,5.5200000000000005,5.62,5.6000000000000005,5.53,5.46,5.37,160.25,164.87,168.13,171.6,173.86,175.33,176.41,177.3,179.01,19.55,19.6,19.66,19.75,19.79,19.8,19.77,19.73,19.54,N/A,N/A +2012,3,13,13,30,102090,100900,99750,99.23,0,2.9,3.52,3.81,3.99,4.14,4.2700000000000005,4.43,4.59,4.82,148.86,158.52,165.87,174.31,179.28,182.12,183.22,183.83,182.06,19.2,18.57,18.46,18.72,19.3,20.06,20.18,20.17,19.95,N/A,N/A +2012,3,13,14,30,102150,100960,99810,99.27,0,3.29,3.6,3.72,3.85,3.92,3.95,4.12,4.32,4.82,151.17000000000002,153.71,155.23,156.63,157.20000000000002,157.33,162.31,167.79,174.85,19.17,18.91,18.77,18.63,18.51,18.41,18.67,18.98,19.740000000000002,N/A,N/A +2012,3,13,15,30,102180,100990,99830,99.32000000000001,0,3.81,4.16,4.26,4.32,4.37,4.42,4.48,4.55,4.93,158.74,158.41,158.17000000000002,157.97,157.69,157.36,157.56,157.91,159.67000000000002,19.2,19.05,18.97,18.88,18.79,18.71,18.63,18.55,18.42,N/A,N/A +2012,3,13,16,30,102190,101000,99850,99.13,0,1.94,2.99,3.64,4.3,4.78,5.13,5.51,5.88,6.47,143.96,147.62,151.63,157.63,161.87,164.89000000000001,167.22,169.27,170.84,19.54,19.580000000000002,19.650000000000002,19.73,19.73,19.68,19.66,19.650000000000002,19.490000000000002,N/A,N/A +2012,3,13,17,30,102190,101000,99850,99.06,0,2.0100000000000002,2.64,2.93,3.23,3.5,3.75,3.99,4.21,4.65,107.55,135.59,150.12,157.43,161,161.94,161.91,161.70000000000002,162.56,19.79,19.69,19.68,19.69,19.69,19.69,19.66,19.62,19.62,N/A,N/A +2012,3,13,18,30,102190,101000,99850,98.96000000000001,0,2.68,3.48,3.8000000000000003,4,4.05,4.01,3.98,3.96,4.05,100.46000000000001,104.62,111.29,124.32000000000001,130.97,133.62,135.57,137.19,144.27,20.03,19.96,19.91,19.82,19.73,19.64,19.55,19.47,19.39,N/A,N/A +2012,3,13,19,30,102170,100990,99840,98.99000000000001,0,2.91,3.62,3.89,4.05,4.3,4.61,4.89,5.13,5.5600000000000005,100.66,103.32000000000001,110.66,127.10000000000001,136.6,141.91,143.72,144.58,146.08,20.25,20.06,19.97,19.88,20.06,20.39,20.46,20.47,20.35,N/A,N/A +2012,3,13,20,30,102140,100950,99810,99.24000000000001,0,4.1,4.41,4.49,4.5600000000000005,4.71,4.91,5.14,5.36,5.69,106.49000000000001,108.21000000000001,109.55,111.3,116.22,122.87,128.56,133.66,140.91,20.06,19.88,19.8,19.71,19.82,20.02,20.18,20.31,20.32,N/A,N/A +2012,3,13,21,30,102110,100920,99780,99.25,0,3.91,4.4,4.74,5.3500000000000005,5.7700000000000005,6.05,6.22,6.3500000000000005,6.5200000000000005,113.95,114.18,115.8,120.19,124.11,127.62,130.12,132.19,136.27,20.06,19.830000000000002,19.81,19.97,20.06,20.11,20.09,20.06,19.91,N/A,N/A +2012,3,13,22,30,102060,100880,99730,96.35000000000001,0,4.49,5.5600000000000005,5.96,6.34,6.76,7.22,7.6000000000000005,7.930000000000001,8.01,112.53,114.42,116.38,119.61,125.16,132.22,138.34,143.84,147.02,20.43,20.36,20.31,20.25,20.240000000000002,20.26,20.28,20.3,20.04,N/A,N/A +2012,3,13,23,30,102040,100860,99710,95.54,0,4.89,6.21,6.79,7.36,7.890000000000001,8.39,8.58,8.68,8.6,114.21000000000001,116.93,119.84,124.63000000000001,129.7,134.96,139.79,144.09,146.97,20.26,20.25,20.19,20.09,19.86,19.57,19.76,20.05,20.150000000000002,N/A,N/A +2012,3,14,0,30,102020,100830,99680,94.27,0,6.09,7.63,8.31,8.98,9.32,9.450000000000001,9.36,9.24,9.040000000000001,123.29,129.62,134.03,138.88,141.98,143.85,145.18,146.24,148.52,20.43,20.400000000000002,20.3,20.09,19.87,19.64,19.45,19.29,19.01,N/A,N/A +2012,3,14,1,30,102030,100840,99690,96.03,0,7.140000000000001,8.620000000000001,9.11,9.33,9.4,9.4,9.39,9.370000000000001,9.5,133.64000000000001,137.17000000000002,139.06,140.52,141.54,142.28,142.82,143.27,144.23,20.04,19.89,19.79,19.66,19.54,19.43,19.28,19.13,18.830000000000002,N/A,N/A +2012,3,14,2,30,102040,100850,99700,95.64,0,7.3100000000000005,8.81,9.370000000000001,9.77,10,10.120000000000001,10.07,9.98,9.74,128.44,131.5,133.62,136.1,138.64000000000001,141.12,143.77,146.19,150.35,20.12,20.02,19.92,19.78,19.62,19.47,19.330000000000002,19.21,18.95,N/A,N/A +2012,3,14,3,30,102040,100850,99700,97.31,0,5.34,6.29,6.67,7.0600000000000005,7.43,7.79,8.17,8.53,9.11,136.71,138.81,140.38,142.32,143.83,145.08,146.20000000000002,147.23,150.27,19.79,19.66,19.56,19.42,19.28,19.150000000000002,19.150000000000002,19.19,19.18,N/A,N/A +2012,3,14,4,30,102030,100850,99700,97.17,0,6,7.03,7.38,7.66,7.8500000000000005,7.99,8.21,8.44,9.63,132.37,134.33,135.9,138.01,140.37,142.75,145.24,147.52,148.98,19.81,19.72,19.67,19.62,19.55,19.48,19.35,19.22,18.92,N/A,N/A +2012,3,14,5,30,102020,100830,99670,98.31,0,5.23,6.3100000000000005,6.87,7.54,8.28,9.08,9.71,10.26,10.870000000000001,136.38,135.83,135.97,136.83,139.22,142.62,147.92000000000002,153.31,159.96,19.59,19.490000000000002,19.400000000000002,19.240000000000002,18.98,18.67,18.3,17.96,18.48,N/A,N/A +2012,3,14,6,30,102040,100850,99700,99.26,0,7.4,8.41,8.75,8.93,9.06,9.15,9.21,9.26,9.35,170.6,169.44,168.43,167.14000000000001,165.76,164.38,163.14000000000001,162.05,160.28,19.150000000000002,18.93,18.830000000000002,18.740000000000002,18.66,18.580000000000002,18.490000000000002,18.41,18.21,N/A,N/A +2012,3,14,7,30,102070,100880,99730,98.85000000000001,0,5.92,6.74,7.05,7.34,7.62,7.9,8.18,8.45,9.040000000000001,159.97,159.32,159.02,158.78,158.71,158.74,158.88,159.02,159.62,19.66,19.51,19.43,19.330000000000002,19.23,19.13,19.01,18.900000000000002,18.61,N/A,N/A +2012,3,14,8,30,102040,100850,99700,97.99000000000001,0,4.86,5.69,6.07,6.47,6.93,7.43,7.91,8.36,8.700000000000001,155.8,157.49,159.20000000000002,162,165.04,168.23,169.71,170.68,170.05,19.82,19.68,19.61,19.54,19.57,19.650000000000002,19.75,19.85,19.66,N/A,N/A +2012,3,14,9,30,102040,100850,99700,99.05,0.7000000000000001,4.26,5.13,5.73,6.71,7.32,7.65,7.76,7.8100000000000005,8.01,123.88000000000001,128.73,132.72,138.37,142.16,144.56,147,149.18,152.49,19.6,19.27,19.04,18.73,18.96,19.490000000000002,19.85,20.13,20.150000000000002,N/A,N/A +2012,3,14,10,30,102040,100850,99700,99.05,1.8,4.04,4.74,5.18,5.79,6.74,7.99,9.07,10.07,10.73,114.59,117.60000000000001,120.60000000000001,125.3,131.61,139.41,144.73,149.35,152.20000000000002,19.52,19.330000000000002,19.23,19.150000000000002,19.21,19.34,19.66,19.990000000000002,20.21,N/A,N/A +2012,3,14,11,30,102050,100860,99720,98.88,1.5,4.95,5.73,6.25,7.07,7.72,8.26,8.55,8.76,9,127.34,130.44,133.61,138.77,142.51,145.31,147.20000000000002,148.74,152.27,19.51,19.35,19.36,19.48,19.71,19.98,20.03,20.03,19.990000000000002,N/A,N/A +2012,3,14,12,30,102070,100880,99740,98.45,0,3.77,4.87,5.58,6.55,7.5200000000000005,8.5,8.9,9.13,9.31,121.88,125.24000000000001,128.1,132.09,137.23,143.19,146.11,148.12,152.07,19.73,19.6,19.62,19.77,19.93,20.11,20.09,20.05,19.85,N/A,N/A +2012,3,14,13,30,102110,100920,99770,97.71000000000001,0.4,4.72,5.7700000000000005,6.3500000000000005,7.140000000000001,7.95,8.790000000000001,9.07,9.22,9.25,114.15,117.47,121.62,129.16,136.58,143.91,146.49,147.83,149.45000000000002,19.88,19.8,19.8,19.87,20.03,20.23,20.18,20.09,19.93,N/A,N/A +2012,3,14,14,30,102160,100970,99820,96.65,0,4.38,5.8,6.55,7.43,8.16,8.78,9.040000000000001,9.200000000000001,9.49,140.8,143.18,145.38,148.61,152.29,156.13,158.38,160.09,162.11,20.16,20.11,20.06,19.990000000000002,20,20.04,20.330000000000002,20.64,20.62,N/A,N/A +2012,3,14,15,30,102170,100980,99830,96.99000000000001,0,4.66,5.87,6.46,7.12,7.38,7.38,7.390000000000001,7.390000000000001,7.5600000000000005,118.74000000000001,120.49000000000001,122.18,124.75,131.84,141.44,145.77,148.57,154.05,20.13,20.09,20.07,20.04,20.09,20.19,20.18,20.150000000000002,20.14,N/A,N/A +2012,3,14,16,30,102200,101010,99860,98.57000000000001,0,4.97,5.88,6.23,6.51,6.69,6.8100000000000005,6.88,6.93,7.1000000000000005,106.72,108.86,112.22,119,127.48,136.69,140.98,143.96,149.13,19.98,19.82,19.76,19.73,19.78,19.87,19.96,20.04,20.16,N/A,N/A +2012,3,14,17,30,102190,101000,99850,98.14,0,4.64,5.59,6.01,6.42,6.65,6.7700000000000005,6.8,6.8100000000000005,6.96,106.87,111.01,115.78,123.68,132.89000000000001,142.5,146.06,147.9,151.92000000000002,20.16,20.07,20.02,19.97,20.07,20.26,20.32,20.35,20.25,N/A,N/A +2012,3,14,18,30,102190,101000,99850,97.43,0,5.18,6.2,6.62,7.04,7.3100000000000005,7.48,7.21,6.88,6.58,110.4,112.49000000000001,115.16,119.88,127.77,137.36,141.13,143.16,146.47,20.39,20.29,20.21,20.09,20.12,20.240000000000002,20.42,20.6,20.650000000000002,N/A,N/A +2012,3,14,19,30,102190,101010,99860,96.45,0,5.88,7.09,7.6000000000000005,8.120000000000001,8.49,8.76,8.75,8.68,8.370000000000001,118.97,119.9,120.86,122.41,126.87,132.85,136.87,140.04,141.93,20.5,20.400000000000002,20.330000000000002,20.22,20.2,20.240000000000002,20.27,20.31,20.19,N/A,N/A +2012,3,14,20,30,102160,100970,99830,96.51,0,5.22,6.45,6.99,7.57,7.87,8,7.9,7.76,7.44,115.85000000000001,117.74000000000001,120.35000000000001,125.07000000000001,131.87,139.62,142.19,143.43,145.69,20.43,20.35,20.27,20.14,20.330000000000002,20.67,20.650000000000002,20.54,20.47,N/A,N/A +2012,3,14,21,30,102140,100950,99800,96.22,0,5.36,6.6000000000000005,7.140000000000001,7.68,8.2,8.71,8.85,8.89,8.57,113.66,115.12,116.72,119.4,124.18,130.36,135.7,140.32,140.94,20.37,20.29,20.2,20.03,20.1,20.31,20.47,20.62,20.46,N/A,N/A +2012,3,14,22,30,102110,100920,99780,95.19,0,5.89,7.3500000000000005,8,8.65,9.23,9.74,10.01,10.19,9.86,112.33,113.76,114.89,116.33,118.39,120.8,125.85000000000001,131.09,140.99,20.44,20.45,20.45,20.44,20.400000000000002,20.36,20.12,19.86,19.580000000000002,N/A,N/A +2012,3,14,23,30,102110,100930,99780,94.9,0,6.97,8.78,9.51,10.03,10.26,10.32,10.26,10.17,10.06,122.39,125.04,126.86,128.88,131.05,133.24,135.6,137.76,140.61,20.45,20.38,20.28,20.12,19.96,19.81,19.66,19.52,19.14,N/A,N/A +2012,3,15,0,30,102080,100890,99750,94.78,0,6.67,8.42,9.15,9.77,10.1,10.26,10.17,10.040000000000001,9.56,115.92,119.18,121.75,125.16,128.75,132.35,135.66,138.59,145.03,20.48,20.42,20.330000000000002,20.18,20.06,19.95,19.95,19.97,19.91,N/A,N/A +2012,3,15,1,30,102090,100900,99760,95.37,0,4.7,5.95,6.49,7.07,7.59,8.09,8.44,8.73,9.620000000000001,122.27,119.83,118.71000000000001,118.16,118.85000000000001,120.31,123.10000000000001,126.01,135.94,20.38,20.38,20.330000000000002,20.25,20.16,20.07,19.95,19.84,19.46,N/A,N/A +2012,3,15,2,30,102100,100920,99770,95.86,0,5.9,7.140000000000001,7.68,8.19,8.700000000000001,9.21,9.88,10.56,11.27,124.46000000000001,124.15,124,123.97,124.63000000000001,125.73,129.73,134.21,140.24,20.240000000000002,20.150000000000002,20.04,19.87,19.61,19.31,18.97,18.68,19.830000000000002,N/A,N/A +2012,3,15,3,30,102100,100910,99760,97.89,0.4,5.82,6.94,7.49,8.120000000000001,8.83,9.6,10.53,11.44,11.86,123.57000000000001,124.14,124.72,125.64,127.38000000000001,129.64000000000001,133.98,138.53,145.24,19.830000000000002,19.650000000000002,19.51,19.29,19.01,18.69,18.94,19.25,20.53,N/A,N/A +2012,3,15,4,30,102090,100900,99750,98.4,0,5.97,7.01,7.5,8.05,8.700000000000001,9.41,10.32,11.22,12.02,127.4,127.98,128.53,129.31,130.66,132.36,136.06,140.02,148.29,19.740000000000002,19.59,19.490000000000002,19.36,19.18,18.97,18.92,18.92,20.490000000000002,N/A,N/A +2012,3,15,5,30,102090,100900,99750,98.34,0,5.91,6.99,7.51,8.13,8.85,9.64,10.61,11.58,12.540000000000001,131.66,132.53,133.27,134.35,135.81,137.5,140.36,143.44,150.48,19.75,19.59,19.48,19.35,19.2,19.06,19.48,19.96,20.34,N/A,N/A +2012,3,15,6,30,102090,100900,99750,96.64,0,6.16,7.140000000000001,7.57,8.01,8.48,8.96,9.56,10.17,11.67,137.04,137.63,138.11,138.78,139.6,140.52,141.84,143.21,148.18,20.21,20.02,19.91,19.8,19.7,19.62,19.580000000000002,19.56,19.75,N/A,N/A +2012,3,15,7,30,102110,100920,99770,95.94,0,6.140000000000001,7.15,7.57,8,8.42,8.84,9.33,9.8,11.06,138.81,139.38,139.84,140.45000000000002,141.16,141.93,142.97,144.02,147.70000000000002,20.34,20.16,20.04,19.91,19.8,19.69,19.61,19.54,19.57,N/A,N/A +2012,3,15,8,30,102090,100910,99760,96.06,0,5.73,6.75,7.18,7.63,8.07,8.52,9.02,9.52,10.64,140.28,140.9,141.37,141.98,142.71,143.5,144.55,145.61,149.33,20.34,20.16,20.06,19.93,19.82,19.72,19.64,19.580000000000002,19.59,N/A,N/A +2012,3,15,9,30,102110,100920,99770,95.57000000000001,0,5.57,6.62,7.08,7.5600000000000005,8.03,8.51,9.040000000000001,9.56,10.8,143.71,144.34,144.86,145.57,146.41,147.35,148.55,149.73,153.33,20.41,20.26,20.16,20.06,19.97,19.89,19.830000000000002,19.78,19.82,N/A,N/A +2012,3,15,10,30,102120,100930,99780,95.54,0,5.2700000000000005,6.29,6.74,7.21,7.67,8.14,8.63,9.1,10.1,139.15,140.07,140.82,141.78,142.88,144.05,145.4,146.73,150.25,20.400000000000002,20.25,20.16,20.06,19.97,19.88,19.81,19.75,19.68,N/A,N/A +2012,3,15,11,30,102160,100970,99820,95.32000000000001,0,5.14,6.18,6.640000000000001,7.140000000000001,7.65,8.15,8.72,9.27,10.33,138.11,139.28,140.26,141.56,143.05,144.65,146.65,148.67000000000002,153.9,20.43,20.31,20.23,20.150000000000002,20.080000000000002,20.02,19.990000000000002,19.98,20.02,N/A,N/A +2012,3,15,12,30,102180,100990,99840,95.44,0,4.84,5.88,6.37,6.890000000000001,7.42,7.94,8.51,9.06,9.97,135.02,136.33,137.45000000000002,139,140.81,142.79,145.63,148.56,157.03,20.43,20.32,20.26,20.19,20.150000000000002,20.11,20.12,20.14,20.2,N/A,N/A +2012,3,15,13,30,102220,101030,99880,95.37,0,4.96,5.99,6.47,6.99,7.5,8.02,8.540000000000001,9.03,9.65,130.01,131.52,132.76,134.52,136.5,138.61,141.36,144.17000000000002,153.34,20.46,20.34,20.28,20.21,20.16,20.12,20.1,20.09,20.09,N/A,N/A +2012,3,15,14,30,102260,101080,99930,95.7,0,5.18,6.22,6.69,7.21,7.71,8.2,8.65,9.05,9.6,131.53,133.01,134.28,136.03,138.02,140.17000000000002,142.84,145.49,152.76,20.54,20.42,20.35,20.27,20.21,20.16,20.11,20.05,19.95,N/A,N/A +2012,3,15,15,30,102280,101090,99940,97.15,0,5.41,6.41,6.84,7.3100000000000005,7.7700000000000005,8.25,8.73,9.200000000000001,9.91,135.21,136.37,137.34,138.73,140.44,142.37,144.89000000000001,147.4,153.85,20.61,20.45,20.35,20.25,20.17,20.09,20.04,20,19.91,N/A,N/A +2012,3,15,16,30,102300,101110,99960,96.87,0,5.49,6.44,6.84,7.25,7.66,8.05,8.47,8.86,9.63,139.99,141.04,141.86,142.96,144.19,145.47,147,148.48,151.84,20.740000000000002,20.56,20.45,20.32,20.2,20.09,19.990000000000002,19.89,19.7,N/A,N/A +2012,3,15,17,30,102310,101120,99970,96.25,0,5.28,6.1000000000000005,6.45,6.82,7.21,7.6000000000000005,8.09,8.58,9.57,143.47,144.5,145.38,146.64000000000001,148.20000000000002,149.98,152.32,154.72,160.05,20.88,20.67,20.56,20.44,20.330000000000002,20.240000000000002,20.17,20.12,20.080000000000002,N/A,N/A +2012,3,15,18,30,102280,101100,99950,94.13,0,5.5,6.26,6.54,6.8100000000000005,7.08,7.34,7.63,7.91,8.66,142.95000000000002,143.55,144.07,144.81,145.74,146.78,148.21,149.63,153.9,21.080000000000002,20.87,20.740000000000002,20.6,20.47,20.34,20.22,20.12,19.97,N/A,N/A +2012,3,15,19,30,102270,101090,99940,94.87,0,5.11,5.79,6.04,6.29,6.5200000000000005,6.76,7.03,7.29,8.01,136.61,137.17000000000002,137.64000000000001,138.26,139.01,139.85,141.1,142.36,148.62,21.12,20.89,20.75,20.59,20.44,20.3,20.16,20.04,19.91,N/A,N/A +2012,3,15,20,30,102250,101060,99910,96.46000000000001,0,5.0200000000000005,5.76,6.04,6.32,6.58,6.84,7.13,7.4,7.94,128.55,129.54,130.32,131.35,132.55,133.89000000000001,135.94,138.06,147.33,21.13,20.91,20.78,20.63,20.490000000000002,20.35,20.23,20.13,20.09,N/A,N/A +2012,3,15,21,30,102200,101010,99870,97.66,0,5.01,5.92,6.3,6.67,7.0200000000000005,7.34,7.65,7.930000000000001,8.38,131.63,132.52,133.21,134.2,135.38,136.70000000000002,138.57,140.47,146.68,21.18,21,20.900000000000002,20.77,20.66,20.54,20.44,20.35,20.2,N/A,N/A +2012,3,15,22,30,102140,100950,99810,95.65,0,5.24,6.5200000000000005,7.05,7.53,7.930000000000001,8.290000000000001,8.59,8.85,9.22,142,143.28,144.13,145.08,145.94,146.73,147.5,148.20000000000002,150.31,21.17,21.1,21.03,20.93,20.81,20.68,20.53,20.38,19.93,N/A,N/A +2012,3,15,23,30,102130,100940,99790,95.53,0,5.45,6.96,7.67,8.370000000000001,8.88,9.25,9.44,9.56,9.6,147.34,151.59,154.37,157.21,158.76,159.39000000000001,159.21,158.81,158.56,20.92,20.900000000000002,20.8,20.56,20.29,19.990000000000002,19.830000000000002,19.71,19.61,N/A,N/A +2012,3,16,0,30,102080,100900,99750,96.67,0,3.96,5.15,5.69,6.23,6.72,7.19,7.66,8.11,8.41,142.73,144.51,145.83,147.34,149.13,151.1,153.68,156.28,158.92000000000002,20.67,20.64,20.61,20.57,20.52,20.46,20.36,20.27,19.96,N/A,N/A +2012,3,16,1,30,102090,100900,99750,97.44,0,4.21,5.13,5.48,5.8,6.19,6.640000000000001,7.16,7.69,8.07,143.71,143.55,143.51,143.52,144.34,145.74,147.71,149.75,151.52,20.490000000000002,20.42,20.37,20.31,20.27,20.22,20.150000000000002,20.09,19.91,N/A,N/A +2012,3,16,2,30,102100,100910,99760,97.64,0,4.8500000000000005,5.97,6.5,7.12,7.72,8.32,8.81,9.25,9.43,135.26,137.4,138.99,141,142.99,145,147.35,149.65,155.15,20.45,20.34,20.28,20.2,20.16,20.150000000000002,20.150000000000002,20.16,20.080000000000002,N/A,N/A +2012,3,16,3,30,102100,100910,99770,97.3,0,4.82,5.93,6.45,7,7.53,8.05,8.55,9.01,9.78,137.42000000000002,138.73,139.73,140.87,141.99,143.1,144.39000000000001,145.65,149.20000000000002,20.51,20.38,20.3,20.21,20.12,20.04,19.95,19.88,19.73,N/A,N/A +2012,3,16,4,30,102100,100910,99760,97.22,0,5.66,6.76,7.25,7.78,8.28,8.78,9.290000000000001,9.77,10.63,140.88,141.84,142.53,143.41,144.3,145.19,146.14000000000001,147.06,149.27,20.44,20.3,20.22,20.12,20.02,19.94,19.85,19.78,19.62,N/A,N/A +2012,3,16,5,30,102080,100890,99740,97,0,5.51,6.63,7.140000000000001,7.67,8.2,8.73,9.28,9.8,10.71,148.76,149.52,150.12,150.9,151.76,152.68,153.76,154.82,157.71,20.46,20.34,20.25,20.16,20.07,19.990000000000002,19.92,19.85,19.77,N/A,N/A +2012,3,16,6,30,102110,100930,99780,96.73,0,6,6.87,7.21,7.55,7.88,8.2,8.57,8.92,9.71,144.19,144.85,145.35,145.99,146.68,147.41,148.28,149.13,151.11,20.580000000000002,20.37,20.240000000000002,20.09,19.96,19.830000000000002,19.7,19.59,19.38,N/A,N/A +2012,3,16,7,30,102110,100930,99780,96.33,0,5.59,6.49,6.84,7.18,7.51,7.82,8.15,8.47,9.19,156.19,156.42000000000002,156.59,156.83,157.14000000000001,157.48,157.94,158.41,159.67000000000002,20.72,20.5,20.37,20.22,20.07,19.92,19.78,19.650000000000002,19.36,N/A,N/A +2012,3,16,8,30,102110,100930,99780,96.78,0,5.4,6.2,6.5,6.78,7.04,7.29,7.55,7.79,8.34,168.16,168.51,168.74,169.01,169.26,169.51,169.75,169.97,170.3,20.650000000000002,20.43,20.29,20.14,19.98,19.830000000000002,19.71,19.61,19.36,N/A,N/A +2012,3,16,9,30,102140,100950,99800,95.82000000000001,0,4.5,5.57,6.08,6.59,6.98,7.29,7.47,7.61,7.8500000000000005,163.24,164.88,166.03,167.17000000000002,167.99,168.61,168.83,168.94,167.3,20.79,20.59,20.45,20.26,20.06,19.86,19.650000000000002,19.46,19.1,N/A,N/A +2012,3,16,10,30,102130,100940,99790,96.75,0,3.81,4.62,4.98,5.42,5.98,6.61,7.2700000000000005,7.9,8.36,143.27,146.02,148.59,152.72,156.71,160.70000000000002,163.31,165.46,166.56,20.7,20.54,20.46,20.38,20.31,20.25,20.17,20.09,19.89,N/A,N/A +2012,3,16,11,30,102130,100950,99800,93.60000000000001,0,6.41,7.41,7.76,8.05,8.25,8.4,8.48,8.53,8.59,150.56,150.95000000000002,151.3,151.75,152.33,152.98,153.97,154.96,158.25,20.8,20.61,20.490000000000002,20.34,20.2,20.05,19.91,19.78,19.53,N/A,N/A +2012,3,16,12,30,102150,100970,99820,91.72,0,5.37,6.37,6.8100000000000005,7.26,7.67,8.05,8.38,8.68,8.96,148.18,149.05,149.63,150.19,150.63,151.01,151.57,152.12,154.54,20.89,20.77,20.7,20.6,20.51,20.42,20.32,20.22,20.04,N/A,N/A +2012,3,16,13,30,102160,100970,99820,93.28,0,4.63,5.54,5.95,6.390000000000001,6.8,7.18,7.42,7.62,7.74,138.22,139.92000000000002,141.23,142.8,144.17000000000002,145.41,146.66,147.83,151.8,20.76,20.63,20.55,20.47,20.38,20.28,20.150000000000002,20.02,19.740000000000002,N/A,N/A +2012,3,16,14,30,102190,101010,99860,95.51,0,5.6000000000000005,6.45,6.78,7.09,7.37,7.640000000000001,7.930000000000001,8.19,8.81,140.94,141.67000000000002,142.26,143.07,144.07,145.18,146.67000000000002,148.16,152.01,20.72,20.51,20.38,20.240000000000002,20.1,19.97,19.84,19.72,19.5,N/A,N/A +2012,3,16,15,30,102190,101000,99850,94.56,0,4.93,5.73,6.08,6.44,6.78,7.11,7.43,7.74,8.5,146.82,148.06,148.9,149.95000000000002,150.97,151.98,153.23,154.46,158.53,20.830000000000002,20.63,20.52,20.39,20.26,20.14,20.02,19.91,19.740000000000002,N/A,N/A +2012,3,16,16,30,102190,101000,99850,93.98,0,4.2700000000000005,4.86,5.12,5.39,5.68,6,6.41,6.84,8.05,156.16,157.37,158.31,159.53,160.91,162.4,164.09,165.76,168.41,20.96,20.740000000000002,20.62,20.48,20.36,20.25,20.16,20.080000000000002,19.93,N/A,N/A +2012,3,16,17,30,102180,100990,99840,94.84,0,4.7700000000000005,5.23,5.44,5.72,5.97,6.19,6.4,6.59,7,141.95000000000002,142.74,143.51,144.72,146.02,147.36,148.76,150.07,152.98,21.03,20.76,20.61,20.45,20.3,20.16,20,19.86,19.6,N/A,N/A +2012,3,16,18,30,102140,100960,99810,95.10000000000001,0,4.04,4.32,4.4,4.48,4.7700000000000005,5.19,5.42,5.59,5.86,140.23,141.09,141.8,142.82,145.5,149.33,151.46,153.02,155.87,21.13,20.830000000000002,20.67,20.490000000000002,20.35,20.22,20.07,19.93,19.62,N/A,N/A +2012,3,16,19,30,102140,100950,99800,93.59,0,4.68,5.04,5.12,5.17,5.22,5.28,5.51,5.76,6.3,137.18,137.67000000000002,138.05,138.52,139.16,139.9,141.99,144.29,148.96,21.36,21.07,20.900000000000002,20.71,20.53,20.35,20.18,20.03,19.740000000000002,N/A,N/A +2012,3,16,20,30,102080,100900,99750,95.43,0,4.93,5.33,5.42,5.48,5.57,5.68,6.01,6.4,6.74,134.3,134.77,135.12,135.59,136.27,137.09,140.05,143.49,146.44,21.34,21.05,20.89,20.7,20.52,20.35,20.2,20.07,19.76,N/A,N/A +2012,3,16,21,30,102040,100860,99710,96.04,0,4.84,5.42,5.61,5.78,5.92,6.0600000000000005,6.21,6.34,6.69,139.9,140.5,140.97,141.59,142.34,143.16,144.26,145.35,148.5,21.34,21.09,20.93,20.76,20.59,20.43,20.27,20.12,19.85,N/A,N/A +2012,3,16,22,30,102010,100820,99680,96.02,0,4.3500000000000005,5.08,5.36,5.61,5.82,6.0200000000000005,6.22,6.41,6.92,139.37,140.09,140.67000000000002,141.45000000000002,142.38,143.41,144.84,146.27,151.03,21.25,21.04,20.91,20.76,20.61,20.47,20.330000000000002,20.2,20,N/A,N/A +2012,3,16,23,30,101980,100800,99650,96.2,0,5.58,6.63,7.0200000000000005,7.36,7.640000000000001,7.87,8.05,8.21,8.44,137.25,137.93,138.42000000000002,138.97,139.54,140.12,140.77,141.38,142.89000000000001,21.12,20.96,20.85,20.71,20.57,20.43,20.27,20.13,19.82,N/A,N/A +2012,3,17,0,30,101960,100780,99630,96.56,0,4.93,5.91,6.29,6.63,6.92,7.18,7.42,7.640000000000001,8.08,140.51,141.6,142.44,143.49,144.56,145.62,146.66,147.62,148.96,21.02,20.89,20.8,20.68,20.56,20.43,20.28,20.14,19.78,N/A,N/A +2012,3,17,1,30,101960,100770,99630,97.52,0,4.58,5.54,5.97,6.43,6.86,7.26,7.63,7.97,8.49,137.54,138.58,139.35,140.29,141.35,142.46,143.9,145.33,150.31,20.73,20.56,20.46,20.35,20.240000000000002,20.14,20.03,19.93,19.69,N/A,N/A +2012,3,17,2,30,101950,100770,99620,97.72,0,5.2,6.140000000000001,6.54,6.96,7.36,7.74,8.11,8.47,9.02,138.31,139.21,139.98,140.98,142.07,143.21,144.54,145.84,150.5,20.69,20.51,20.41,20.29,20.18,20.07,19.98,19.900000000000002,19.77,N/A,N/A +2012,3,17,3,30,101950,100770,99620,96.97,0,5.82,6.8500000000000005,7.28,7.7,8.11,8.52,8.96,9.38,10.17,137.88,139.31,140.44,141.89000000000001,143.4,144.93,146.33,147.61,149.25,20.84,20.67,20.56,20.43,20.3,20.16,20,19.85,19.55,N/A,N/A +2012,3,17,4,30,101930,100740,99600,94.29,0,6.390000000000001,7.43,7.8,8.11,8.370000000000001,8.6,8.9,9.200000000000001,10.11,145.63,147.42000000000002,148.58,149.91,151.14000000000001,152.3,153.33,154.26,155.9,20.85,20.650000000000002,20.51,20.330000000000002,20.16,19.98,19.84,19.72,19.73,N/A,N/A +2012,3,17,5,30,101900,100720,99570,96.93,0,5.55,6.55,6.97,7.390000000000001,7.8,8.2,8.620000000000001,9.03,9.88,144.58,145.55,146.28,147.26,148.36,149.54,150.93,152.28,155.24,20.76,20.59,20.490000000000002,20.37,20.25,20.150000000000002,20.06,19.97,19.84,N/A,N/A +2012,3,17,6,30,101890,100710,99560,96.44,0,6.32,7.3500000000000005,7.76,8.15,8.52,8.88,9.24,9.57,10.26,150.97,151.37,151.67000000000002,152.03,152.45000000000002,152.9,153.48,154.05,155.71,20.830000000000002,20.63,20.51,20.37,20.240000000000002,20.1,19.97,19.84,19.59,N/A,N/A +2012,3,17,7,30,101910,100730,99580,96.92,0,5.46,6.42,6.82,7.22,7.61,7.97,8.35,8.71,9.42,149.78,150.29,150.73,151.3,151.93,152.6,153.38,154.13,155.73,20.81,20.62,20.51,20.38,20.25,20.13,20.01,19.900000000000002,19.68,N/A,N/A +2012,3,17,8,30,101900,100720,99580,93.51,0,7.62,8.72,9.11,9.47,9.790000000000001,10.09,10.38,10.65,11.26,161.22,159.31,158.02,156.41,154.82,153.28,151.81,150.48,148.56,20.97,20.78,20.650000000000002,20.5,20.35,20.2,20.04,19.89,19.580000000000002,N/A,N/A +2012,3,17,9,30,101890,100710,99560,95.83,0,5.47,6.62,7.17,7.79,8.51,9.28,10.11,10.92,11.8,147.23,149.86,151.87,154.48,157.04,159.62,161.61,163.36,164.26,21.01,20.87,20.78,20.67,20.55,20.43,20.29,20.16,19.87,N/A,N/A +2012,3,17,10,30,101890,100710,99570,95.88,0,5.47,6.59,7.05,7.5,7.9,8.290000000000001,8.69,9.06,9.84,149.07,149.91,150.58,151.45000000000002,152.38,153.35,154.31,155.20000000000002,156.51,20.98,20.85,20.76,20.66,20.57,20.48,20.38,20.29,20.1,N/A,N/A +2012,3,17,11,30,101940,100760,99610,96.55,0,4.61,5.59,6.01,6.42,6.8,7.15,7.53,7.890000000000001,8.64,141.75,142.69,143.45000000000002,144.39000000000001,145.47,146.63,148.20000000000002,149.79,153.66,20.88,20.72,20.62,20.5,20.38,20.27,20.16,20.06,19.85,N/A,N/A +2012,3,17,12,30,101930,100750,99610,97.34,0,5.08,6.04,6.47,6.92,7.3500000000000005,7.78,8.23,8.65,9.46,130.38,132.54,134.17000000000002,136.2,138.26,140.36,142.3,144.1,147.94,20.93,20.77,20.67,20.55,20.400000000000002,20.25,20.080000000000002,19.93,19.52,N/A,N/A +2012,3,17,13,30,101960,100770,99630,97.11,0,5.3,6.38,6.8500000000000005,7.34,7.74,8.08,8.2,8.27,8.27,132.95,135.48,137.34,139.62,141.41,142.9,145.42000000000002,147.98,159.1,21,20.830000000000002,20.71,20.55,20.37,20.18,20,19.84,19.830000000000002,N/A,N/A +2012,3,17,14,30,101980,100790,99650,97.17,0,4.67,5.66,6.1000000000000005,6.57,6.98,7.3500000000000005,7.7,8.040000000000001,8.77,126.3,128.44,130.07,132.04,134,135.98,138.28,140.56,147.13,20.94,20.81,20.740000000000002,20.650000000000002,20.54,20.43,20.31,20.2,19.98,N/A,N/A +2012,3,17,15,30,101990,100800,99660,94.63,0,6.07,7.04,7.43,7.7700000000000005,8.05,8.3,8.47,8.620000000000001,8.74,147.81,148.73,149.28,149.86,150.37,150.82,151.31,151.78,153.37,21,20.82,20.71,20.57,20.43,20.3,20.14,20,19.86,N/A,N/A +2012,3,17,16,30,102000,100820,99670,96.83,0,3.8200000000000003,4.68,5.13,5.65,6.15,6.63,7.03,7.38,7.5,129.53,132.28,134.08,135.86,137.28,138.48,140.35,142.29,147.24,21.05,20.87,20.78,20.68,20.6,20.53,20.48,20.43,20.34,N/A,N/A +2012,3,17,17,30,101970,100780,99640,96.17,0,4.66,5.2700000000000005,5.51,5.7700000000000005,6.03,6.3100000000000005,6.59,6.86,7.12,131.52,132.31,133,133.94,135.19,136.63,139.06,141.55,148.34,21.2,20.96,20.82,20.68,20.55,20.43,20.330000000000002,20.240000000000002,20.12,N/A,N/A +2012,3,17,18,30,101960,100780,99640,96.23,0,4.03,4.74,5.05,5.34,5.59,5.8100000000000005,6.03,6.24,6.69,134.37,135.81,136.78,137.89000000000001,139.02,140.16,141.41,142.61,145.05,21.38,21.13,21,20.85,20.69,20.54,20.38,20.240000000000002,20,N/A,N/A +2012,3,17,19,30,101950,100770,99630,95.98,0,4.54,5.15,5.38,5.58,5.7700000000000005,5.94,6.13,6.3100000000000005,6.66,133.94,135.42000000000002,136.33,137.17000000000002,137.9,138.55,139.22,139.85,141.84,21.7,21.43,21.28,21.11,20.95,20.78,20.63,20.490000000000002,20.240000000000002,N/A,N/A +2012,3,17,20,30,101910,100730,99590,97.43,0,4.57,5.26,5.55,5.83,6.09,6.34,6.57,6.7700000000000005,7.04,122.98,124.13000000000001,125.01,126.19,127.68,129.38,131.27,133.12,136.84,21.73,21.47,21.330000000000002,21.17,21.03,20.92,20.81,20.7,20.42,N/A,N/A +2012,3,17,21,30,101860,100680,99540,97.51,0,4.75,5.54,5.84,6.11,6.37,6.6000000000000005,6.8500000000000005,7.07,7.66,126.74000000000001,127.2,127.63000000000001,128.19,128.86,129.6,130.68,131.76,136.67000000000002,21.68,21.47,21.34,21.18,21.06,20.95,20.85,20.75,20.56,N/A,N/A +2012,3,17,22,30,101850,100670,99530,96.82000000000001,0,4.13,5.11,5.48,5.8100000000000005,6.09,6.34,6.55,6.74,7.04,113.17,115.9,117.99000000000001,120.53,123.27,126.15,129.91,133.65,147.78,21.57,21.47,21.39,21.28,21.16,21.03,20.84,20.650000000000002,20.19,N/A,N/A +2012,3,17,23,30,101820,100640,99500,96.63,0,4.59,5.75,6.25,6.74,7.16,7.53,7.79,8,8.31,121.5,124.07000000000001,126.38000000000001,129.68,132.97,136.3,138.87,141.05,144.22,21.28,21.22,21.18,21.12,21.02,20.89,20.78,20.67,20.84,N/A,N/A +2012,3,18,0,30,101790,100620,99480,95.18,0.7000000000000001,4.37,5.53,5.9,6.13,6.38,6.65,6.8500000000000005,7.0200000000000005,7.390000000000001,136.2,139.18,141.07,142.53,144.47,146.75,149.04,151.15,153.96,21.51,21.72,21.73,21.59,21.46,21.34,21.2,21.07,20.72,N/A,N/A +2012,3,18,1,30,101770,100590,99450,95.79,0,6.51,7.9,8.46,8.98,9.46,9.9,10.35,10.77,11.66,140.98,141.56,142.01,142.63,143.41,144.29,145.70000000000002,147.16,151.07,21.32,21.240000000000002,21.18,21.09,21.01,20.94,20.84,20.75,20.44,N/A,N/A +2012,3,18,2,30,101790,100610,99470,96.03,0,6.63,7.98,8.55,9.11,9.63,10.120000000000001,10.64,11.120000000000001,11.96,133.42000000000002,134.51,135.25,135.97,136.58,137.11,138.12,139.22,142.75,21.26,21.18,21.13,21.07,21,20.94,20.85,20.75,20.42,N/A,N/A +2012,3,18,3,30,101790,100610,99470,96.15,0,6.3500000000000005,7.79,8.44,9.1,9.700000000000001,10.24,10.73,11.17,11.86,128.3,129.6,130.53,131.65,132.76,133.85,135.02,136.14000000000001,138.64000000000001,21.240000000000002,21.16,21.1,21.03,20.95,20.88,20.8,20.72,20.53,N/A,N/A +2012,3,18,4,30,101770,100590,99450,95.88,0,6.84,8.24,8.84,9.43,9.98,10.49,10.99,11.46,12.41,134.2,134.76,135.17000000000002,135.71,136.33,136.99,137.8,138.6,140.64000000000001,21.29,21.19,21.12,21.02,20.93,20.84,20.740000000000002,20.650000000000002,20.47,N/A,N/A +2012,3,18,5,30,101760,100590,99450,95.39,0,8.13,9.620000000000001,10.22,10.790000000000001,11.32,11.82,12.31,12.780000000000001,13.700000000000001,136.55,137.39000000000001,138.04,138.87,139.77,140.70000000000002,141.69,142.63,144.44,21.39,21.3,21.23,21.14,21.06,20.97,20.88,20.8,20.62,N/A,N/A +2012,3,18,6,30,101780,100600,99460,97.98,0,7.28,8.46,8.98,9.49,9.97,10.450000000000001,10.91,11.33,12.14,149.42000000000002,149.63,149.84,150.19,150.68,151.25,152.05,152.85,155,21.19,21.02,20.94,20.88,20.81,20.73,20.67,20.62,20.55,N/A,N/A +2012,3,18,7,30,101780,100600,99460,96.61,17.6,6.7,7.95,8.46,8.950000000000001,9.44,9.92,10.44,10.94,11.97,146.83,146.88,146.91,146.94,146.99,147.05,147.22,147.4,148.11,21.47,21.32,21.23,21.11,21,20.89,20.77,20.67,20.45,N/A,N/A +2012,3,18,8,30,101760,100580,99440,95.86,0.4,7.47,8.81,9.33,9.8,10.23,10.64,11.040000000000001,11.42,12.16,152.8,152.98,153.17000000000002,153.42000000000002,153.71,154.01,154.37,154.72,155.57,21.54,21.42,21.32,21.2,21.080000000000002,20.96,20.830000000000002,20.71,20.43,N/A,N/A +2012,3,18,9,30,101760,100580,99440,95.47,0,7.16,8.45,8.96,9.44,9.870000000000001,10.28,10.700000000000001,11.09,11.97,152.39000000000001,152.4,152.49,152.73,153.1,153.56,154.24,154.92000000000002,156.85,21.55,21.43,21.330000000000002,21.22,21.1,20.98,20.86,20.740000000000002,20.5,N/A,N/A +2012,3,18,10,30,101770,100590,99450,96.85000000000001,0,6.2700000000000005,7.4,7.86,8.31,8.74,9.17,9.64,10.1,11.05,145.82,146.8,147.61,148.71,149.95000000000002,151.28,152.73,154.14000000000001,156.81,21.35,21.21,21.11,21,20.88,20.78,20.67,20.57,20.35,N/A,N/A +2012,3,18,11,30,101750,100570,99430,96.49000000000001,0,6.83,8.09,8.6,9.1,9.58,10.05,10.58,11.09,12.24,149.8,150.75,151.55,152.6,153.85,155.22,156.94,158.65,162.04,21.43,21.29,21.21,21.1,21,20.91,20.81,20.73,20.55,N/A,N/A +2012,3,18,12,30,101770,100600,99460,95.38,0,7.45,8.86,9.46,10.08,10.67,11.26,11.85,12.41,13.44,150.34,151.15,151.72,152.41,153.07,153.69,154.21,154.67000000000002,155.39000000000001,21.52,21.41,21.32,21.22,21.13,21.03,20.92,20.82,20.6,N/A,N/A +2012,3,18,13,30,101790,100610,99470,96.61,0,6.87,8.09,8.56,9.01,9.42,9.8,10.18,10.540000000000001,11.42,138.79,139.66,140.3,141.11,142,142.94,144.07,145.16,147.72,21.43,21.29,21.19,21.07,20.96,20.84,20.71,20.6,20.37,N/A,N/A +2012,3,18,14,30,101830,100650,99510,96.44,0,7.13,8.39,8.89,9.370000000000001,9.81,10.23,10.65,11.05,11.84,144.53,145.3,145.9,146.69,147.56,148.46,149.44,150.38,152.24,21.490000000000002,21.36,21.26,21.150000000000002,21.04,20.94,20.830000000000002,20.73,20.51,N/A,N/A +2012,3,18,15,30,101840,100660,99520,95.42,0,7.34,8.71,9.26,9.8,10.290000000000001,10.75,11.22,11.67,12.6,143.3,144.09,144.70000000000002,145.43,146.16,146.88,147.67000000000002,148.42000000000002,150.26,21.7,21.59,21.51,21.400000000000002,21.3,21.19,21.07,20.96,20.71,N/A,N/A +2012,3,18,16,30,101860,100680,99540,95.72,0,7.36,8.67,9.18,9.66,10.1,10.51,10.93,11.32,12.15,141.44,142,142.46,143.01,143.62,144.25,145.01,145.73,147.66,21.73,21.61,21.52,21.400000000000002,21.28,21.17,21.05,20.93,20.7,N/A,N/A +2012,3,18,17,30,101860,100680,99540,95.88,0,6.91,8.2,8.73,9.24,9.71,10.15,10.58,10.99,11.88,141.45000000000002,142.26,142.83,143.55,144.31,145.1,146.02,146.92000000000002,149.27,21.76,21.63,21.54,21.43,21.32,21.2,21.080000000000002,20.97,20.75,N/A,N/A +2012,3,18,18,30,101840,100670,99530,95.66,0,7.37,8.67,9.18,9.66,10.08,10.48,10.86,11.22,11.9,138.71,139.27,139.72,140.27,140.86,141.47,142.19,142.9,144.79,21.84,21.71,21.62,21.5,21.39,21.27,21.150000000000002,21.04,20.81,N/A,N/A +2012,3,18,19,30,101830,100650,99520,96.03,0,7.75,9.13,9.67,10.19,10.66,11.11,11.57,11.99,12.86,132.05,132.89000000000001,133.55,134.41,135.38,136.42000000000002,137.66,138.88,141.74,21.85,21.73,21.650000000000002,21.54,21.44,21.34,21.240000000000002,21.150000000000002,20.96,N/A,N/A +2012,3,18,20,30,101790,100610,99470,95.99000000000001,0,7.9,9.31,9.86,10.370000000000001,10.84,11.27,11.68,12.040000000000001,12.68,131.18,131.76,132.22,132.81,133.46,134.17000000000002,134.98,135.76,137.58,21.79,21.68,21.59,21.48,21.37,21.27,21.150000000000002,21.05,20.81,N/A,N/A +2012,3,18,21,30,101740,100560,99420,95.67,0,8.19,9.66,10.24,10.78,11.27,11.74,12.18,12.58,13.32,131.66,132.26,132.71,133.3,133.96,134.68,135.54,136.37,138.61,21.75,21.650000000000002,21.56,21.46,21.36,21.26,21.150000000000002,21.05,20.85,N/A,N/A +2012,3,18,22,30,101700,100520,99380,95.45,0,8.82,10.36,10.96,11.540000000000001,12.06,12.540000000000001,13.01,13.44,14.280000000000001,135.66,136.09,136.42000000000002,136.87,137.38,137.94,138.67000000000002,139.39000000000001,141.37,21.72,21.62,21.54,21.43,21.330000000000002,21.22,21.11,21.02,20.830000000000002,N/A,N/A +2012,3,18,23,30,101640,100460,99320,95.55,0,9.13,10.67,11.26,11.83,12.34,12.81,13.290000000000001,13.73,14.63,134.95,135.35,135.67000000000002,136.11,136.62,137.18,137.93,138.68,140.91,21.67,21.56,21.48,21.37,21.27,21.17,21.080000000000002,20.990000000000002,20.85,N/A,N/A +2012,3,19,0,30,101570,100400,99260,95.51,0,9.63,11.21,11.82,12.370000000000001,12.88,13.36,13.86,14.33,15.34,137.38,137.71,137.97,138.33,138.76,139.24,139.88,140.52,142.07,21.650000000000002,21.54,21.45,21.34,21.240000000000002,21.14,21.04,20.96,20.8,N/A,N/A +2012,3,19,1,30,101550,100380,99240,95.27,0,9.71,11.31,11.93,12.49,13.01,13.49,13.96,14.4,15.33,139.82,140.16,140.43,140.78,141.17000000000002,141.6,142.15,142.68,144.27,21.63,21.51,21.42,21.3,21.19,21.07,20.96,20.86,20.69,N/A,N/A +2012,3,19,2,30,101550,100380,99240,93.96000000000001,0,9.89,11.55,12.17,12.76,13.31,13.82,14.35,14.84,15.83,142.96,143.38,143.71,144.09,144.48,144.86,145.27,145.64000000000001,146.46,21.67,21.57,21.490000000000002,21.38,21.28,21.18,21.07,20.98,20.79,N/A,N/A +2012,3,19,3,30,101570,100390,99250,92.66,0,9.71,11.38,12,12.57,13.1,13.59,14.08,14.530000000000001,15.48,146.04,146.17000000000002,146.33,146.51,146.70000000000002,146.9,147.15,147.39000000000001,148.16,21.740000000000002,21.650000000000002,21.56,21.45,21.34,21.240000000000002,21.12,21.02,20.81,N/A,N/A +2012,3,19,4,30,101510,100340,99200,92.14,0,9.540000000000001,11.15,11.76,12.33,12.870000000000001,13.39,13.94,14.47,15.610000000000001,144.46,145.14000000000001,145.62,146.19,146.74,147.29,147.8,148.27,148.84,21.72,21.64,21.57,21.48,21.39,21.3,21.22,21.14,20.94,N/A,N/A +2012,3,19,5,30,101510,100340,99200,90.75,0,9.92,11.55,12.16,12.700000000000001,13.200000000000001,13.66,14.13,14.58,15.52,149.72,149.9,150.02,150.21,150.45000000000002,150.73,151.08,151.43,152.17000000000002,21.81,21.72,21.64,21.53,21.42,21.32,21.2,21.09,20.84,N/A,N/A +2012,3,19,6,30,101500,100320,99190,90.74,0,10.200000000000001,11.89,12.51,13.09,13.61,14.09,14.56,14.98,15.84,147.8,148.11,148.33,148.58,148.84,149.1,149.37,149.63,150.20000000000002,21.73,21.64,21.55,21.44,21.32,21.2,21.07,20.95,20.68,N/A,N/A +2012,3,19,7,30,101500,100320,99190,91.88,0,10.51,12.24,12.86,13.43,13.93,14.39,14.84,15.25,16.04,151.37,151.87,152.17000000000002,152.52,152.88,153.24,153.63,154.01,154.78,21.740000000000002,21.650000000000002,21.55,21.44,21.32,21.2,21.07,20.94,20.67,N/A,N/A +2012,3,19,8,30,101440,100260,99130,93.61,0,10.35,12.02,12.64,13.200000000000001,13.700000000000001,14.15,14.620000000000001,15.040000000000001,15.92,149.61,150.03,150.33,150.69,151.11,151.54,152.09,152.62,153.91,21.69,21.580000000000002,21.48,21.36,21.240000000000002,21.12,21,20.88,20.63,N/A,N/A +2012,3,19,9,30,101410,100240,99100,93.48,0,11.33,13.09,13.72,14.280000000000001,14.77,15.22,15.66,16.06,16.84,149.85,150.02,150.23,150.49,150.79,151.12,151.52,151.91,152.89000000000001,21.66,21.54,21.44,21.32,21.19,21.07,20.93,20.81,20.56,N/A,N/A +2012,3,19,10,30,101360,100190,99060,93.29,0,12.17,14.05,14.71,15.26,15.74,16.18,16.61,17.01,17.82,151.14000000000001,151.61,151.96,152.39000000000001,152.87,153.38,154.01,154.6,156.04,21.75,21.66,21.57,21.45,21.34,21.22,21.11,21,20.78,N/A,N/A +2012,3,19,11,30,101280,100110,98980,92.28,0,15.72,18.09,18.88,19.53,20.080000000000002,20.55,20.98,21.38,22.09,148.41,149.03,149.42000000000002,149.87,150.31,150.75,151.22,151.67000000000002,152.64000000000001,21.81,21.72,21.64,21.53,21.42,21.3,21.19,21.080000000000002,20.86,N/A,N/A +2012,3,19,12,30,101250,100080,98950,92.24,0,15.97,18.38,19.150000000000002,19.77,20.29,20.75,21.16,21.52,22.150000000000002,144.69,145.18,145.43,145.73,146.06,146.39000000000001,146.78,147.15,148.02,21.79,21.7,21.61,21.490000000000002,21.37,21.26,21.14,21.03,20.81,N/A,N/A +2012,3,19,13,30,101300,100130,98990,91.64,0,14.24,16.46,17.23,17.88,18.43,18.92,19.37,19.77,20.490000000000002,149.65,149.56,149.52,149.51,149.54,149.58,149.68,149.79,150.15,21.830000000000002,21.740000000000002,21.650000000000002,21.53,21.400000000000002,21.27,21.14,21.01,20.75,N/A,N/A +2012,3,19,14,30,101370,100200,99060,91.29,0,11.46,13.34,14.040000000000001,14.65,15.19,15.67,16.14,16.57,17.32,155.6,155.19,154.97,154.74,154.51,154.3,154.11,153.95000000000002,153.76,21.75,21.650000000000002,21.55,21.42,21.29,21.16,21.02,20.89,20.61,N/A,N/A +2012,3,19,15,30,101370,100200,99070,92.38,0,11.75,13.57,14.21,14.74,15.200000000000001,15.6,15.98,16.32,16.95,134.12,134.14000000000001,134.21,134.36,134.6,134.9,135.37,135.84,137.35,21.740000000000002,21.63,21.54,21.42,21.3,21.18,21.07,20.96,20.75,N/A,N/A +2012,3,19,16,30,101350,100180,99040,90.82000000000001,0,10.82,12.27,12.74,13.08,13.35,13.56,13.72,13.86,14.11,122.25,122.67,123.11,123.73,124.55,125.49000000000001,126.92,128.35,133,21.52,21.38,21.28,21.150000000000002,21.04,20.94,20.85,20.78,20.71,N/A,N/A +2012,3,19,17,30,101320,100150,99010,89.26,0.4,12.200000000000001,13.780000000000001,14.26,14.620000000000001,14.92,15.19,15.44,15.66,16.09,115.38,116.34,116.96000000000001,117.68,118.44,119.23,120.16,121.03,123.22,21.22,21.03,20.900000000000002,20.75,20.61,20.47,20.34,20.21,19.97,N/A,N/A +2012,3,19,18,30,101320,100140,99000,95.9,0.7000000000000001,10.9,13,13.75,14.06,14.44,14.84,15.14,15.39,15.700000000000001,103.10000000000001,103.9,104.46000000000001,105.07000000000001,106.2,107.66,109.45,111.17,115.18,20.73,20.47,20.32,20.16,20.04,19.94,19.85,19.77,19.64,N/A,N/A +2012,3,19,19,30,101290,100120,98980,92.46000000000001,0,11.48,12.97,13.450000000000001,13.85,14.18,14.48,14.76,15.030000000000001,15.530000000000001,115.10000000000001,116.06,116.87,117.84,118.88,119.93,121.18,122.37,125.14,21.12,20.95,20.85,20.73,20.62,20.52,20.42,20.330000000000002,20.16,N/A,N/A +2012,3,19,20,30,101220,100040,98910,94.39,0,10.620000000000001,12.09,12.58,13,13.35,13.65,13.93,14.19,14.63,124.23,124.22,124.23,124.31,124.47,124.66,124.95,125.23,126.04,21.34,21.14,21.01,20.86,20.71,20.56,20.400000000000002,20.25,19.95,N/A,N/A +2012,3,19,21,30,101170,99990,98860,94.29,0,11.01,12.66,13.22,13.68,14.08,14.42,14.72,14.99,15.47,125.28,125.52,125.64,125.82000000000001,126.04,126.29,126.62,126.95,127.92,21.5,21.330000000000002,21.21,21.07,20.92,20.77,20.61,20.46,20.16,N/A,N/A +2012,3,19,22,30,101110,99930,98800,94.21000000000001,0,10.11,11.61,12.16,12.620000000000001,13.01,13.36,13.700000000000001,14.01,14.620000000000001,127.77,128.37,128.87,129.5,130.19,130.91,131.8,132.69,134.86,21.57,21.45,21.36,21.240000000000002,21.13,21.01,20.900000000000002,20.8,20.59,N/A,N/A +2012,3,19,23,30,101030,99860,98730,93.16,0,10.59,12.24,12.84,13.35,13.790000000000001,14.18,14.540000000000001,14.86,15.450000000000001,133.28,133.71,134.05,134.45,134.87,135.3,135.78,136.25,137.39000000000001,21.68,21.580000000000002,21.490000000000002,21.37,21.25,21.13,21,20.87,20.62,N/A,N/A +2012,3,20,0,30,100980,99810,98680,91.52,0,11.450000000000001,13.25,13.9,14.48,14.98,15.44,15.88,16.28,17.04,138.53,138.88,139.11,139.39000000000001,139.68,139.98,140.32,140.66,141.51,21.740000000000002,21.64,21.55,21.43,21.3,21.18,21.05,20.92,20.67,N/A,N/A +2012,3,20,1,30,100940,99770,98640,89.52,0,11.32,13.14,13.790000000000001,14.38,14.89,15.35,15.8,16.21,17.02,142.87,143.15,143.37,143.63,143.91,144.20000000000002,144.54,144.86,145.66,21.82,21.740000000000002,21.650000000000002,21.54,21.42,21.3,21.18,21.06,20.82,N/A,N/A +2012,3,20,2,30,100910,99740,98610,88.43,0,11.47,13.3,13.96,14.52,15.02,15.47,15.91,16.31,17.13,143.49,143.73,143.94,144.20000000000002,144.49,144.8,145.18,145.55,146.46,21.830000000000002,21.76,21.68,21.57,21.45,21.34,21.22,21.12,20.900000000000002,N/A,N/A +2012,3,20,3,30,100880,99710,98580,85.89,0,11.74,13.56,14.26,14.86,15.39,15.870000000000001,16.32,16.75,17.55,143.71,144.13,144.43,144.78,145.12,145.47,145.85,146.21,147.01,21.91,21.86,21.78,21.67,21.55,21.44,21.32,21.2,20.96,N/A,N/A +2012,3,20,4,30,100800,99640,98510,83.94,0,11.94,13.93,14.64,15.27,15.84,16.35,16.86,17.330000000000002,18.3,144.57,144.94,145.17000000000002,145.44,145.74,146.04,146.4,146.74,147.56,21.98,21.93,21.86,21.76,21.66,21.56,21.45,21.35,21.14,N/A,N/A +2012,3,20,5,30,100740,99580,98450,81.97,0,12.75,14.82,15.57,16.21,16.78,17.29,17.78,18.23,19.07,146.58,146.92000000000002,147.16,147.44,147.72,148.01,148.32,148.62,149.29,22.05,22.02,21.96,21.86,21.75,21.650000000000002,21.54,21.44,21.22,N/A,N/A +2012,3,20,6,30,100710,99550,98420,81.8,0,13.02,14.94,15.620000000000001,16.19,16.68,17.11,17.53,17.92,18.7,149.14000000000001,149.51,149.70000000000002,149.93,150.18,150.44,150.75,151.06,151.82,22.19,22.11,22.02,21.900000000000002,21.79,21.67,21.55,21.43,21.21,N/A,N/A +2012,3,20,7,30,100700,99530,98410,81.03,0,12.75,14.790000000000001,15.5,16.09,16.61,17.080000000000002,17.51,17.91,18.650000000000002,149.70000000000002,149.94,150.14000000000001,150.35,150.56,150.76,150.97,151.16,151.56,22.31,22.25,22.17,22.05,21.93,21.81,21.67,21.54,21.27,N/A,N/A +2012,3,20,8,30,100660,99500,98370,82.46000000000001,0,13.1,15.06,15.780000000000001,16.38,16.9,17.37,17.81,18.21,18.990000000000002,147.09,147.46,147.69,147.95000000000002,148.22,148.5,148.81,149.11,149.81,22.240000000000002,22.16,22.07,21.95,21.82,21.69,21.54,21.41,21.14,N/A,N/A +2012,3,20,9,30,100680,99510,98390,81.02,0,12.450000000000001,14.370000000000001,15.07,15.67,16.19,16.64,17.080000000000002,17.47,18.23,149.08,149.39000000000001,149.61,149.84,150.08,150.3,150.54,150.77,151.26,22.31,22.240000000000002,22.150000000000002,22.03,21.900000000000002,21.77,21.62,21.490000000000002,21.2,N/A,N/A +2012,3,20,10,30,100680,99520,98390,80.81,0,11.77,13.67,14.370000000000001,14.98,15.530000000000001,16.03,16.51,16.95,17.84,151.3,151.63,151.85,152.1,152.37,152.66,152.99,153.31,154.1,22.330000000000002,22.29,22.21,22.1,21.98,21.86,21.740000000000002,21.62,21.37,N/A,N/A +2012,3,20,11,30,100670,99510,98380,81.75,0,12.08,13.99,14.69,15.290000000000001,15.81,16.28,16.73,17.150000000000002,17.95,152.55,152.74,152.86,152.99,153.13,153.26,153.42000000000002,153.56,153.89000000000001,22.32,22.26,22.18,22.07,21.94,21.82,21.68,21.56,21.28,N/A,N/A +2012,3,20,12,30,100670,99500,98380,83.84,0,11.71,13.56,14.21,14.780000000000001,15.280000000000001,15.73,16.16,16.55,17.31,152.53,152.75,152.91,153.09,153.28,153.47,153.67000000000002,153.87,154.31,22.23,22.150000000000002,22.07,21.95,21.82,21.7,21.56,21.43,21.14,N/A,N/A +2012,3,20,13,30,100760,99590,98460,86.46000000000001,0,10.31,12.01,12.64,13.200000000000001,13.700000000000001,14.15,14.58,14.97,15.72,152.43,152.72,152.9,153.1,153.31,153.52,153.74,153.95000000000002,154.41,22.2,22.12,22.03,21.91,21.78,21.66,21.52,21.39,21.1,N/A,N/A +2012,3,20,14,30,100800,99630,98510,87.92,0,10.370000000000001,12.09,12.74,13.31,13.82,14.290000000000001,14.75,15.18,15.99,155.75,155.97,156.11,156.3,156.49,156.70000000000002,156.95000000000002,157.19,157.74,22.2,22.12,22.03,21.92,21.8,21.68,21.55,21.43,21.16,N/A,N/A +2012,3,20,15,30,100810,99650,98520,88.86,0,9.370000000000001,10.94,11.55,12.09,12.59,13.040000000000001,13.48,13.88,14.67,156.13,156.37,156.55,156.77,157,157.24,157.51,157.76,158.32,22.2,22.12,22.04,21.92,21.8,21.69,21.56,21.44,21.17,N/A,N/A +2012,3,20,16,30,100720,99560,98430,90.4,0,10.14,11.81,12.44,13.01,13.5,13.96,14.4,14.81,15.59,147.87,148.3,148.69,149.13,149.57,149.99,150.44,150.87,151.76,22.17,22.09,22.01,21.900000000000002,21.78,21.66,21.53,21.41,21.150000000000002,N/A,N/A +2012,3,20,17,30,100650,99480,98360,91.98,11.4,12.120000000000001,14.120000000000001,14.81,15.42,15.96,16.46,16.93,17.36,18.2,140.32,140.71,141.02,141.44,141.9,142.38,142.93,143.45000000000002,144.62,22.19,22.09,22,21.88,21.76,21.64,21.5,21.38,21.11,N/A,N/A +2012,3,20,18,30,100630,99480,98350,91.60000000000001,1.8,14.16,16.05,16.91,17.62,18.21,18.73,19.2,19.63,20.43,148.70000000000002,149,149.14000000000001,149.38,149.59,149.85,150.11,150.37,150.92000000000002,22.23,22.18,22.1,21.96,21.84,21.7,21.57,21.43,21.150000000000002,N/A,N/A +2012,3,20,19,30,100690,99520,98390,92.84,358.20000000000005,11.950000000000001,13.86,14.65,15.32,15.89,16.39,16.8,17.16,17.650000000000002,167.16,167.78,167.63,167.38,167.34,167.42000000000002,168.06,168.79,171.58,22.01,21.96,21.88,21.77,21.63,21.490000000000002,21.31,21.14,20.740000000000002,N/A,N/A +2012,3,20,20,30,100830,99660,98520,95.2,505,8.4,8.96,9.24,9.58,9.88,10.17,10.450000000000001,10.71,11.17,215.17000000000002,213.91,213.25,211.99,210.86,209.66,208.5,207.38,205.35,20.47,20.22,20.1,20.01,19.94,19.88,19.830000000000002,19.78,19.64,N/A,N/A +2012,3,20,21,30,100670,99490,98350,90.8,5.5,8.5,9.120000000000001,9.53,10.17,11.05,12.02,12.540000000000001,12.99,13.91,180.88,182.15,183.24,185.07,187.39000000000001,189.89000000000001,190.84,191.46,191.17000000000002,18.97,18.66,18.61,18.62,18.76,18.94,19.02,19.07,18.97,N/A,N/A +2012,3,20,22,30,100740,99570,98430,93.4,26,11.01,12.200000000000001,12.450000000000001,12.620000000000001,12.75,12.86,12.97,13.08,13.39,181.48,182.24,182.66,183.12,183.66,184.21,184.87,185.51,187.54,20.71,20.39,20.23,20.04,19.87,19.69,19.51,19.35,19.02,N/A,N/A +2012,3,20,23,30,100670,99500,98360,88.87,13.200000000000001,5.29,5.78,5.96,6.11,6.2700000000000005,6.44,6.68,6.92,7.74,224.83,223.93,223.5,223.01,222.47,221.94,221.3,220.68,219.39000000000001,20.66,20.35,20.18,19.990000000000002,19.81,19.64,19.45,19.29,18.96,N/A,N/A +2012,3,21,0,30,100690,99520,98380,89.55,20.5,1.78,1.84,1.87,1.9000000000000001,1.92,1.95,2,2.04,2.29,214.77,216.15,216.77,217.45000000000002,218.24,219.1,220.52,221.98000000000002,227.33,20.21,19.91,19.740000000000002,19.55,19.37,19.2,19.01,18.85,18.52,N/A,N/A +2012,3,21,1,30,100680,99500,98360,94.75,0.7000000000000001,6.38,6.88,6.92,6.9,6.86,6.8,6.72,6.640000000000001,6.45,341.64,342.12,342.45,342.8,343.15000000000003,343.49,343.89,344.27,345.39,19.86,19.490000000000002,19.31,19.12,18.93,18.75,18.57,18.400000000000002,18.16,N/A,N/A +2012,3,21,2,30,100710,99530,98380,93.36,24.200000000000003,9.57,10.21,10.290000000000001,10.28,10.23,10.17,10.08,9.99,9.74,344.83,344.98,344.85,344.68,344.42,344.14,343.54,342.88,340.23,19.1,18.68,18.5,18.32,18.150000000000002,18,17.85,17.72,17.580000000000002,N/A,N/A +2012,3,21,3,30,100850,99670,98530,82,0,8.700000000000001,9.540000000000001,9.74,9.88,9.99,10.08,10.18,10.28,10.57,348.41,348.65000000000003,348.67,348.67,348.66,348.66,348.64,348.63,348.61,19.18,18.78,18.6,18.42,18.23,18.06,17.89,17.73,17.42,N/A,N/A +2012,3,21,4,30,100910,99730,98580,78.73,0,7.47,8.11,8.290000000000001,8.39,8.47,8.52,8.58,8.63,8.75,350.1,350.12,350.17,350.21,350.23,350.24,350.27,350.29,350.35,19.38,18.990000000000002,18.81,18.61,18.42,18.240000000000002,18.05,17.88,17.53,N/A,N/A +2012,3,21,5,30,100920,99730,98590,76.8,0,8.53,9.24,9.41,9.5,9.56,9.6,9.63,9.66,9.700000000000001,338.33,338.31,338.3,338.29,338.28000000000003,338.28000000000003,338.28000000000003,338.29,338.32,19.37,18.97,18.79,18.580000000000002,18.39,18.21,18.01,17.84,17.46,N/A,N/A +2012,3,21,6,30,101000,99820,98670,74.98,0,7.11,7.640000000000001,7.76,7.82,7.87,7.9,7.930000000000001,7.96,8.03,339.56,339.72,339.75,339.77,339.8,339.83,339.89,339.94,340.1,19.25,18.87,18.68,18.490000000000002,18.29,18.11,17.92,17.740000000000002,17.38,N/A,N/A +2012,3,21,7,30,101140,99950,98800,72.96000000000001,0,5.66,6,6.11,6.17,6.21,6.25,6.2700000000000005,6.3,6.3500000000000005,322.94,324.18,325.17,326.06,326.89,327.64,328.44,329.17,330.7,18.8,18.42,18.23,18.04,17.86,17.68,17.490000000000002,17.32,16.96,N/A,N/A +2012,3,21,8,30,101080,99890,98730,64.41,2.2,7.03,7.47,7.57,7.61,7.640000000000001,7.66,7.66,7.67,7.66,7.15,7.1000000000000005,7,6.91,6.8,6.7,6.55,6.41,6.0200000000000005,17.45,16.98,16.77,16.57,16.36,16.18,15.97,15.790000000000001,15.41,N/A,N/A +2012,3,21,9,30,101180,99980,98810,73.5,2.6,6.7700000000000005,7.1000000000000005,7.140000000000001,7.140000000000001,7.12,7.1000000000000005,7.07,7.03,6.96,56.67,55.980000000000004,55.47,54.96,54.410000000000004,53.9,53.2,52.480000000000004,50.4,15.82,15.290000000000001,15.08,14.88,14.69,14.51,14.31,14.14,13.790000000000001,N/A,N/A +2012,3,21,10,30,101360,100150,98980,73.45,0.7000000000000001,4.09,4.21,4.21,4.19,4.16,4.12,4.07,4.0200000000000005,3.87,69.58,69.12,68.42,67.82000000000001,67.19,66.62,65.8,64.97,62.15,15.8,15.32,15.120000000000001,14.92,14.72,14.540000000000001,14.35,14.17,13.82,N/A,N/A +2012,3,21,11,30,101270,100070,98900,76.82000000000001,2.9000000000000004,4.53,4.59,4.6000000000000005,4.58,4.55,4.5200000000000005,4.47,4.43,4.33,30.43,29.39,28.82,28.21,27.48,26.8,25.85,24.86,22.17,15.74,15.25,15.05,14.85,14.65,14.47,14.27,14.09,13.72,N/A,N/A +2012,3,21,12,30,101290,100080,98920,77.06,11.4,4.23,4.4,4.41,4.4,4.38,4.3500000000000005,4.32,4.28,4.19,27.25,27.060000000000002,26.6,26.12,25.55,24.990000000000002,24.18,23.34,20.63,16.1,15.620000000000001,15.42,15.21,15.02,14.83,14.63,14.450000000000001,14.09,N/A,N/A +2012,3,21,13,30,101320,100110,98950,79.41,0.4,5.12,5.42,5.44,5.43,5.42,5.4,5.38,5.37,5.32,25.16,24.17,23.48,22.8,22.080000000000002,21.42,20.63,19.86,18.07,16.19,15.71,15.5,15.290000000000001,15.09,14.9,14.700000000000001,14.51,14.120000000000001,N/A,N/A +2012,3,21,14,30,101360,100160,99000,82.45,0,4.61,4.75,4.74,4.71,4.67,4.63,4.57,4.5200000000000005,4.39,64.16,63.660000000000004,63.29,62.93,62.57,62.230000000000004,61.800000000000004,61.39,60.300000000000004,16.28,15.8,15.6,15.39,15.19,15,14.81,14.620000000000001,14.25,N/A,N/A +2012,3,21,15,30,101390,100200,99030,76.46000000000001,0,4.42,4.62,4.62,4.6000000000000005,4.57,4.53,4.48,4.43,4.3100000000000005,68.72,68.05,68.07000000000001,68.08,68.1,68.11,68.11,68.12,68.09,16.85,16.41,16.2,16,15.8,15.610000000000001,15.41,15.23,14.85,N/A,N/A +2012,3,21,16,30,101400,100210,99040,70.04,0,3.59,3.66,3.64,3.6,3.5500000000000003,3.49,3.42,3.35,3.15,73.07000000000001,73.46000000000001,73.36,73.25,73.13,73,72.8,72.60000000000001,71.87,17.28,16.86,16.66,16.46,16.27,16.080000000000002,15.89,15.71,15.35,N/A,N/A +2012,3,21,17,30,101390,100190,99030,65.5,0,4.15,4.24,4.2,4.14,4.07,4.01,3.92,3.83,3.6,89.2,89.23,89.07000000000001,88.92,88.75,88.60000000000001,88.43,88.27,87.89,17.82,17.41,17.22,17.03,16.84,16.66,16.47,16.29,15.92,N/A,N/A +2012,3,21,18,30,101410,100210,99050,62.78,0,4.71,4.92,4.93,4.93,4.91,4.9,4.87,4.8500000000000005,4.8,123.16,123.69,124.03,124.34,124.64,124.92,125.23,125.51,126.15,18.2,17.79,17.6,17.400000000000002,17.2,17.01,16.81,16.62,16.23,N/A,N/A +2012,3,21,19,30,101380,100190,99030,59.03,0,5.12,5.37,5.4,5.4,5.4,5.38,5.36,5.33,5.28,143.87,144.28,144.49,144.72,144.94,145.16,145.4,145.63,146.17000000000002,18.61,18.21,18.02,17.82,17.62,17.43,17.23,17.04,16.65,N/A,N/A +2012,3,21,20,30,101350,100160,99000,56.19,0,5.67,6.0200000000000005,6.09,6.12,6.13,6.13,6.12,6.12,6.09,163.03,163.45000000000002,163.76,164.07,164.4,164.71,165.05,165.38,166.11,18.88,18.490000000000002,18.3,18.1,17.900000000000002,17.71,17.51,17.32,16.93,N/A,N/A +2012,3,21,21,30,101370,100180,99030,56.39,0,6.05,6.47,6.5600000000000005,6.61,6.640000000000001,6.66,6.67,6.68,6.69,163.98,164.64000000000001,165.03,165.41,165.78,166.12,166.48,166.81,167.52,19.12,18.740000000000002,18.56,18.36,18.16,17.97,17.77,17.580000000000002,17.19,N/A,N/A +2012,3,21,22,30,101380,100190,99030,56.61,0,6.0600000000000005,6.49,6.58,6.63,6.66,6.68,6.7,6.7,6.7,172.81,172.85,172.9,172.96,173.01,173.06,173.13,173.18,173.31,19.330000000000002,18.97,18.78,18.580000000000002,18.38,18.19,17.990000000000002,17.8,17.41,N/A,N/A +2012,3,21,23,30,101390,100200,99050,57.870000000000005,0,6.890000000000001,7.38,7.49,7.54,7.5600000000000005,7.57,7.57,7.57,7.55,164.78,165.07,165.23,165.39000000000001,165.54,165.67000000000002,165.83,165.97,166.29,19.47,19.1,18.92,18.72,18.52,18.330000000000002,18.14,17.95,17.56,N/A,N/A +2012,3,22,0,30,101390,100200,99050,58.83,0,6.8500000000000005,7.3500000000000005,7.47,7.54,7.57,7.6000000000000005,7.61,7.62,7.62,166.26,166.71,167.01,167.3,167.59,167.84,168.11,168.37,168.89000000000001,19.55,19.2,19.02,18.81,18.62,18.43,18.23,18.04,17.650000000000002,N/A,N/A +2012,3,22,1,30,101420,100240,99080,57.44,0,6.8,7.33,7.46,7.5200000000000005,7.57,7.6000000000000005,7.61,7.63,7.640000000000001,166.78,166.93,167,167.05,167.11,167.16,167.21,167.26,167.35,19.78,19.43,19.25,19.05,18.85,18.66,18.46,18.27,17.88,N/A,N/A +2012,3,22,2,30,101490,100300,99150,59.82,0,6.67,7.16,7.28,7.3500000000000005,7.38,7.41,7.42,7.43,7.43,170.24,170.54,170.74,170.94,171.11,171.28,171.45000000000002,171.61,171.94,19.75,19.41,19.23,19.03,18.84,18.650000000000002,18.45,18.26,17.87,N/A,N/A +2012,3,22,3,30,101510,100320,99170,59.34,0,6.55,7.03,7.13,7.18,7.21,7.22,7.23,7.23,7.21,168.9,169.03,169.15,169.27,169.38,169.47,169.58,169.67000000000002,169.89000000000001,19.84,19.5,19.32,19.12,18.93,18.740000000000002,18.54,18.36,17.96,N/A,N/A +2012,3,22,4,30,101510,100320,99170,62.160000000000004,0,6.7,7.2,7.3,7.34,7.36,7.38,7.38,7.38,7.3500000000000005,164.48,164.71,164.89000000000001,165.06,165.23,165.39000000000001,165.55,165.70000000000002,166.03,19.76,19.41,19.23,19.03,18.84,18.650000000000002,18.45,18.27,17.88,N/A,N/A +2012,3,22,5,30,101490,100300,99150,64.27,0,6.96,7.46,7.58,7.62,7.640000000000001,7.65,7.65,7.640000000000001,7.61,169.56,169.66,169.73,169.82,169.89000000000001,169.97,170.06,170.14000000000001,170.34,19.650000000000002,19.3,19.12,18.92,18.72,18.53,18.330000000000002,18.150000000000002,17.76,N/A,N/A +2012,3,22,6,30,101520,100330,99180,61.35,0,6.59,7.08,7.19,7.24,7.2700000000000005,7.28,7.28,7.28,7.2700000000000005,165.38,165.56,165.67000000000002,165.79,165.9,166.01,166.12,166.22,166.48,19.79,19.46,19.28,19.080000000000002,18.89,18.7,18.5,18.32,17.93,N/A,N/A +2012,3,22,7,30,101510,100320,99170,67.2,0,6.74,7.24,7.3500000000000005,7.390000000000001,7.4,7.41,7.4,7.390000000000001,7.36,165.6,165.65,165.68,165.71,165.74,165.77,165.81,165.84,165.94,19.69,19.35,19.17,18.97,18.78,18.59,18.39,18.21,17.82,N/A,N/A +2012,3,22,8,30,101480,100290,99140,72.04,0,6.4,6.82,6.9,6.92,6.91,6.9,6.87,6.84,6.76,170.1,170.13,170.18,170.23,170.29,170.34,170.4,170.46,170.70000000000002,19.56,19.22,19.04,18.85,18.650000000000002,18.47,18.28,18.1,17.740000000000002,N/A,N/A +2012,3,22,9,30,101480,100290,99140,73.16,0,7.3100000000000005,7.84,7.96,7.99,8.01,8.01,7.99,7.97,7.91,162.86,162.95000000000002,163.01,163.08,163.15,163.21,163.28,163.36,163.55,19.51,19.16,18.98,18.78,18.59,18.400000000000002,18.21,18.03,17.650000000000002,N/A,N/A +2012,3,22,10,30,101460,100270,99120,70.66,0,7.61,8.2,8.33,8.39,8.41,8.42,8.42,8.41,8.370000000000001,162.14000000000001,162.31,162.42000000000002,162.53,162.64000000000001,162.75,162.87,162.99,163.27,19.69,19.34,19.16,18.96,18.77,18.580000000000002,18.38,18.2,17.81,N/A,N/A +2012,3,22,11,30,101460,100280,99130,67.53,0,7.09,7.640000000000001,7.74,7.78,7.79,7.8,7.79,7.78,7.76,167.34,167.24,167.21,167.18,167.15,167.12,167.08,167.04,166.91,19.96,19.64,19.47,19.27,19.080000000000002,18.900000000000002,18.71,18.54,18.17,N/A,N/A +2012,3,22,12,30,101480,100300,99150,66.58,0,7.61,8.25,8.4,8.46,8.5,8.52,8.53,8.53,8.52,163.48,163.5,163.5,163.5,163.51,163.51,163.51,163.51,163.51,20.05,19.73,19.55,19.36,19.17,18.98,18.78,18.6,18.22,N/A,N/A +2012,3,22,13,30,101490,100300,99150,70.07000000000001,0,7.26,7.8500000000000005,7.98,8.03,8.06,8.07,8.06,8.05,8.01,165.17000000000002,165.3,165.4,165.52,165.63,165.74,165.86,165.98,166.24,20.02,19.7,19.52,19.330000000000002,19.13,18.95,18.75,18.57,18.18,N/A,N/A +2012,3,22,14,30,101530,100350,99200,67.36,0,7.76,8.46,8.63,8.72,8.78,8.82,8.84,8.86,8.870000000000001,160.75,160.74,160.75,160.76,160.76,160.77,160.77,160.78,160.79,20.240000000000002,19.93,19.76,19.57,19.37,19.19,18.990000000000002,18.81,18.43,N/A,N/A +2012,3,22,15,30,101530,100350,99200,66.59,0,6.97,7.55,7.69,7.75,7.79,7.8100000000000005,7.82,7.82,7.82,169.65,169.68,169.70000000000002,169.72,169.73,169.73,169.75,169.76,169.8,20.32,20.03,19.86,19.67,19.48,19.3,19.11,18.93,18.56,N/A,N/A +2012,3,22,16,30,101580,100390,99240,71.16,0,7.5,8.13,8.27,8.34,8.38,8.4,8.41,8.41,8.39,164.85,165.08,165.17000000000002,165.25,165.33,165.39000000000001,165.46,165.53,165.70000000000002,20.31,20.01,19.84,19.64,19.46,19.27,19.080000000000002,18.900000000000002,18.51,N/A,N/A +2012,3,22,17,30,101540,100350,99200,62.09,0,6.0200000000000005,6.53,6.65,6.7,6.74,6.7700000000000005,6.79,6.8100000000000005,6.83,184.47,184.3,184.16,184.01,183.86,183.72,183.56,183.41,183.09,20.71,20.44,20.27,20.09,19.900000000000002,19.72,19.52,19.35,18.97,N/A,N/A +2012,3,22,18,30,101560,100380,99230,64.43,0,5.13,5.55,5.64,5.68,5.71,5.73,5.73,5.73,5.73,186.93,187.01,187.05,187.08,187.1,187.14000000000001,187.18,187.23,187.37,20.72,20.44,20.27,20.080000000000002,19.89,19.71,19.51,19.330000000000002,18.94,N/A,N/A +2012,3,22,19,30,101540,100350,99210,64.33,0,5.21,5.65,5.74,5.8,5.84,5.87,5.9,5.92,5.96,193.45000000000002,193.18,192.99,192.78,192.57,192.36,192.13,191.92000000000002,191.44,20.81,20.52,20.35,20.16,19.97,19.79,19.59,19.41,19.03,N/A,N/A +2012,3,22,20,30,101510,100330,99180,66.39,0,4.93,5.3100000000000005,5.39,5.42,5.44,5.45,5.46,5.46,5.46,185.97,186.14000000000001,186.29,186.42000000000002,186.54,186.64000000000001,186.75,186.84,187.05,20.76,20.47,20.3,20.11,19.92,19.73,19.54,19.36,18.97,N/A,N/A +2012,3,22,21,30,101490,100310,99160,68.92,0,4.69,5.08,5.15,5.19,5.21,5.23,5.23,5.24,5.24,180.68,180.63,180.69,180.75,180.81,180.86,180.91,180.94,181.03,20.73,20.45,20.27,20.080000000000002,19.89,19.71,19.51,19.330000000000002,18.94,N/A,N/A +2012,3,22,22,30,101460,100280,99130,65,0,4.25,4.57,4.64,4.68,4.7,4.71,4.72,4.73,4.75,180.73,180.42000000000002,180.15,179.84,179.54,179.25,178.94,178.64000000000001,178.01,20.73,20.47,20.31,20.11,19.93,19.740000000000002,19.55,19.37,18.990000000000002,N/A,N/A +2012,3,22,23,30,101420,100240,99090,69.11,0,3.65,3.9,3.95,3.96,3.96,3.96,3.96,3.96,3.94,183.57,183.8,183.97,184.16,184.35,184.53,184.75,184.97,185.54,20.55,20.27,20.1,19.91,19.72,19.54,19.34,19.150000000000002,18.77,N/A,N/A +2012,3,23,0,30,101420,100240,99090,65.91,0,4.24,4.54,4.58,4.6000000000000005,4.6000000000000005,4.6000000000000005,4.59,4.59,4.58,166.74,166.91,166.96,167.01,167.05,167.07,167.11,167.15,167.19,20.53,20.26,20.09,19.900000000000002,19.71,19.53,19.34,19.16,18.79,N/A,N/A +2012,3,23,1,30,101440,100250,99110,67.73,0,5.04,5.43,5.51,5.54,5.55,5.5600000000000005,5.57,5.57,5.57,152.73,152.71,152.73,152.75,152.78,152.8,152.84,152.87,152.96,20.5,20.22,20.05,19.86,19.67,19.490000000000002,19.29,19.11,18.73,N/A,N/A +2012,3,23,2,30,101450,100260,99120,66.51,0,3.89,4.16,4.2,4.21,4.21,4.21,4.21,4.2,4.21,157.21,157.24,157.27,157.31,157.34,157.38,157.44,157.5,157.82,20.490000000000002,20.21,20.04,19.85,19.66,19.48,19.29,19.11,18.75,N/A,N/A +2012,3,23,3,30,101460,100280,99130,72.08,0,5.3100000000000005,5.7,5.76,5.79,5.8,5.8,5.79,5.78,5.7700000000000005,153.18,153.23,153.25,153.26,153.28,153.3,153.31,153.34,153.41,20.330000000000002,20.03,19.86,19.67,19.48,19.3,19.1,18.92,18.55,N/A,N/A +2012,3,23,4,30,101460,100270,99130,75.94,0,5.61,6.04,6.13,6.16,6.18,6.19,6.19,6.19,6.2,151.85,151.91,151.92000000000002,151.93,151.95000000000002,151.97,152,152.02,152.08,20.26,19.95,19.78,19.59,19.400000000000002,19.21,19.01,18.830000000000002,18.45,N/A,N/A +2012,3,23,5,30,101480,100300,99150,77.53,0,4.72,5.0200000000000005,5.07,5.07,5.07,5.0600000000000005,5.05,5.04,5.09,158,158,158.04,158.08,158.13,158.18,158.26,158.34,158.94,20.2,19.900000000000002,19.73,19.53,19.34,19.16,18.97,18.79,18.47,N/A,N/A +2012,3,23,6,30,101490,100300,99160,76.42,0,4.3500000000000005,4.61,4.64,4.64,4.64,4.62,4.61,4.6000000000000005,4.5600000000000005,164.3,164.38,164.4,164.43,164.49,164.55,164.65,164.76,166.18,20.2,19.89,19.72,19.52,19.330000000000002,19.150000000000002,18.95,18.78,18.54,N/A,N/A +2012,3,23,7,30,101510,100330,99180,78.71000000000001,0,4.53,4.8,4.8500000000000005,4.86,4.86,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.89,168.67000000000002,168.73,168.74,168.77,168.8,168.84,168.91,169,169.75,20.16,19.85,19.68,19.490000000000002,19.3,19.12,18.92,18.740000000000002,18.46,N/A,N/A +2012,3,23,8,30,101510,100330,99180,77.8,0,2.7,2.7800000000000002,2.7800000000000002,2.7600000000000002,2.7800000000000002,2.81,2.93,3.06,3.5,189.44,189.89000000000001,190.08,190.38,190.06,189.42000000000002,186,182.22,173.85,20.14,19.84,19.68,19.51,19.47,19.5,19.79,20.11,20.75,N/A,N/A +2012,3,23,9,30,101530,100340,99200,80.01,0,2.84,2.94,2.94,2.91,2.89,2.87,2.7800000000000002,2.69,2.73,178.23,178.42000000000002,178.47,178.55,178.86,179.28,179.97,180.63,182.41,20.080000000000002,19.78,19.62,19.44,19.29,19.150000000000002,19.34,19.580000000000002,20.45,N/A,N/A +2012,3,23,10,30,101530,100350,99200,84.33,0,2.15,2.2,2.19,2.16,2.12,2.07,1.82,1.59,1.52,195.87,196.22,196.37,196.58,197.36,198.39000000000001,203.6,208.35,210.47,19.89,19.580000000000002,19.41,19.22,19.080000000000002,18.97,19.25,19.6,20.95,N/A,N/A +2012,3,23,11,30,101560,100380,99230,88.19,0,1.82,1.86,1.85,1.84,1.82,1.8,1.68,1.54,1.07,196.86,196.95000000000002,196.99,197.07,197.21,197.38,199.74,202.58,219.33,19.72,19.400000000000002,19.23,19.04,18.85,18.67,18.56,18.490000000000002,19.04,N/A,N/A +2012,3,23,12,30,101640,100450,99300,87.69,0,1.43,1.47,1.47,1.46,1.46,1.45,1.45,1.44,1.42,326.67,326.71,326.79,326.88,326.97,327.07,327.19,327.31,327.76,19.66,19.34,19.17,18.97,18.78,18.59,18.39,18.21,17.830000000000002,N/A,N/A +2012,3,23,13,30,101650,100460,99310,84.52,0,3.45,3.59,3.59,3.56,3.54,3.5100000000000002,3.47,3.44,3.35,334.68,334.77,334.8,334.82,334.83,334.83,334.84000000000003,334.85,334.84000000000003,19.61,19.27,19.09,18.900000000000002,18.71,18.52,18.32,18.14,17.76,N/A,N/A +2012,3,23,14,30,101700,100510,99350,94.52,0,4.73,4.83,4.78,4.69,4.58,4.47,4.32,4.18,3.77,356.65000000000003,357.07,357.37,357.71,358.08,358.45,358.96,359.44,0.86,18.73,18.34,18.16,17.97,17.78,17.61,17.42,17.26,16.97,N/A,N/A +2012,3,23,15,30,101750,100550,99390,99.41,0,4.1,4.14,4.0600000000000005,3.95,3.75,3.5300000000000002,3.12,2.8000000000000003,2.67,4.94,5.28,5.53,5.8100000000000005,6.19,6.58,7.96,9.48,15.280000000000001,17.16,16.79,16.63,16.47,16.31,16.15,16.5,16.82,16.47,N/A,N/A +2012,3,23,16,30,101750,100550,99390,99.4,0,3.21,3.3000000000000003,3.29,3.27,3.25,3.24,3.3000000000000003,3.38,3.73,28.13,28.5,28.68,28.88,29.13,29.38,28.7,27.310000000000002,17.740000000000002,17.23,16.86,16.71,16.55,16.37,16.2,15.9,15.780000000000001,17.5,N/A,N/A +2012,3,23,17,30,101720,100520,99370,94.08,0,2.57,2.69,2.73,2.7800000000000002,2.92,3.12,3.58,4.01,3.71,36.01,35.26,34.7,34,32.69,31.09,28.7,26.36,24.7,17.79,17.43,17.26,17.1,17.01,16.95,17.400000000000002,17.830000000000002,17.98,N/A,N/A +2012,3,23,18,30,101720,100520,99370,84.05,0,2.48,2.56,2.59,2.63,2.85,3.17,3.45,3.67,3.58,36.24,35.83,35.36,34.660000000000004,32.76,30.14,27.77,25.68,23.67,18.89,18.55,18.400000000000002,18.26,18.240000000000002,18.29,18.47,18.63,18.51,N/A,N/A +2012,3,23,19,30,101700,100510,99360,79.81,0,1.82,1.87,1.87,1.8900000000000001,2.09,2.4,2.64,2.84,3.19,66.65,65.35,63.730000000000004,61.11,53.26,41.81,35.480000000000004,30.55,23.56,19.580000000000002,19.26,19.12,18.98,19.09,19.32,19.46,19.56,19.53,N/A,N/A +2012,3,23,20,30,101650,100460,99310,76.17,0,2.52,2.54,2.5,2.43,2.32,2.19,1.97,1.78,1.99,121.91,120.93,120.05,118.8,115.56,111.56,90.39,71.27,51.51,20.080000000000002,19.76,19.6,19.43,19.3,19.19,19.44,19.71,19.98,N/A,N/A +2012,3,23,21,30,101610,100430,99280,77.11,0,2.14,2.16,2.12,2.04,1.81,1.54,1.41,1.33,1.6400000000000001,139.26,138.53,137.51,135.71,124.4,110.42,93.08,77.57000000000001,49.1,20.31,20,19.86,19.72,19.81,20.02,20.3,20.56,20.81,N/A,N/A +2012,3,23,22,30,101580,100400,99250,78.63,0,2.3000000000000003,2.32,2.25,2.13,1.85,1.54,1.3900000000000001,1.3,1.4000000000000001,148.20000000000002,147.43,145.88,142.78,128.97,112.57000000000001,96.7,83.06,56.15,20.43,20.14,20.03,19.96,20.25,20.72,21.07,21.36,21.57,N/A,N/A +2012,3,23,23,30,101540,100360,99210,78.34,0,2.48,2.48,2.37,2.16,1.92,1.68,1.51,1.3800000000000001,1.5,144.29,143.41,139.93,132.58,122.83,112.88,97.91,84.47,56.97,20.490000000000002,20.22,20.240000000000002,20.47,20.89,21.42,21.73,21.97,22.22,N/A,N/A +2012,3,24,0,30,101510,100330,99190,79.12,0,2.39,2.37,2.15,1.78,1.45,1.18,1.05,0.97,1.3,159.32,157.61,151.66,140.51,127.12,114.38,91.94,71.46000000000001,36.45,20.46,20.31,20.54,21.16,21.740000000000002,22.28,22.61,22.86,23.2,N/A,N/A +2012,3,24,1,30,101520,100340,99200,84.69,0,4.49,4.61,4.53,4.4,4.0600000000000005,3.65,3.19,2.79,2.0300000000000002,158.24,157.9,156.77,154.29,150.9,147.4,142.77,138.65,123.95,20.330000000000002,20.06,20.01,20.06,20.45,21.01,21.490000000000002,21.92,22.54,N/A,N/A +2012,3,24,2,30,101520,100340,99200,83.09,0,3.56,3.68,3.68,3.71,3.52,3.22,2.92,2.66,2.19,163.13,162.65,160.48,155.57,150.97,146.98,142.26,138.05,127.02,20.45,20.240000000000002,20.43,21.07,21.67,22.23,22.48,22.650000000000002,22.900000000000002,N/A,N/A +2012,3,24,3,30,101520,100330,99190,84.13,0,4.04,4.18,4.26,4.47,4.39,4.16,3.8200000000000003,3.5300000000000002,2.93,169.05,168.89000000000001,167.84,165.48,162.34,159.1,156.51,154.35,147.52,20.44,20.19,20.240000000000002,20.52,21.14,21.900000000000002,22.19,22.38,22.54,N/A,N/A +2012,3,24,4,30,101510,100330,99190,84.64,0,3.92,4.08,4.17,4.39,4.3500000000000005,4.18,3.94,3.72,3.18,177.77,177.5,176.68,174.92000000000002,172.72,170.44,167.67000000000002,165.15,159,20.38,20.11,20.04,20.07,20.47,21.06,21.5,21.87,22.21,N/A,N/A +2012,3,24,5,30,101490,100310,99170,85.7,0,2.92,3,3.14,3.5500000000000003,3.79,3.92,3.71,3.49,3.0300000000000002,191.36,191.23000000000002,189.79,186.03,181.70000000000002,177.35,175.22,173.78,170.76,20.36,20.09,20.1,20.34,20.92,21.64,21.97,22.19,22.21,N/A,N/A +2012,3,24,6,30,101520,100330,99190,87.51,0,2.43,2.48,2.6,2.92,3.09,3.16,3.0700000000000003,2.95,2.62,208.63,208.59,206.97,202.84,197.68,192.16,187.41,183.49,179.14000000000001,20.35,20.080000000000002,20.11,20.38,20.95,21.66,22.080000000000002,22.39,22.46,N/A,N/A +2012,3,24,7,30,101540,100360,99220,86.66,0,2.66,2.71,2.73,2.81,2.8000000000000003,2.72,2.48,2.24,1.83,233.28,232.71,231.24,227.93,224.6,221.47,218.09,215.16,206.03,20.42,20.13,20.03,20,20.41,21.05,21.740000000000002,22.36,22.62,N/A,N/A +2012,3,24,8,30,101550,100360,99220,87.28,0,2.9,3.0100000000000002,3.02,3.0300000000000002,3.15,3.3200000000000003,3.49,3.63,3.7,225.44,225.02,224.52,223.67000000000002,220.95000000000002,217.23000000000002,214.22,211.57,207.67000000000002,20.43,20.13,19.98,19.81,19.85,20,20.25,20.490000000000002,20.92,N/A,N/A +2012,3,24,9,30,101580,100400,99250,88.87,0,3.08,3.23,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.2800000000000002,3.31,3.59,243.54,243.32,243.17000000000002,243.02,242.84,242.65,242.37,242.04,239.11,20.37,20.06,19.89,19.69,19.51,19.330000000000002,19.14,18.97,19.1,N/A,N/A +2012,3,24,10,30,101600,100420,99270,96.05,0,4.25,4.46,4.47,4.44,4.39,4.3500000000000005,4.2700000000000005,4.2,4.05,250.12,250.46,250.76000000000002,251.09,251.43,251.77,252.34,252.86,252.74,20.07,19.72,19.54,19.330000000000002,19.150000000000002,18.98,18.84,18.72,18.43,N/A,N/A +2012,3,24,11,30,101640,100450,99290,99.48,0,3.41,3.5500000000000003,3.5700000000000003,3.5700000000000003,3.56,3.56,3.56,3.56,3.42,241.96,242.95000000000002,243.56,244.28,245.22,246.18,247.79,249.5,257.14,17.84,17.47,17.31,17.16,17,16.84,16.63,16.43,16.240000000000002,N/A,N/A +2012,3,24,12,30,101660,100470,99310,99.34,0,3.98,4.19,4.25,4.2700000000000005,4.29,4.3100000000000005,4.32,4.34,4.3500000000000005,264.49,265.81,266.37,266.84000000000003,267.24,267.58,267.9,268.18,268.96,18.240000000000002,17.87,17.71,17.56,17.41,17.27,17.1,16.94,16.43,N/A,N/A +2012,3,24,13,30,101680,100490,99330,99.48,0,5.05,5.08,4.96,4.79,4.6000000000000005,4.42,4.17,3.95,3.33,301.19,299.88,299.04,298.13,297.07,296.06,294.42,292.73,285.18,17.8,17.400000000000002,17.240000000000002,17.12,17,16.89,16.77,16.65,16.4,N/A,N/A +2012,3,24,14,30,101730,100530,99370,99.48,0,5.01,5.0600000000000005,4.95,4.8100000000000005,4.64,4.47,4.26,4.0600000000000005,3.5100000000000002,306.57,306.53000000000003,306.46,306.36,306.17,305.96,305.5,304.98,302.52,17.650000000000002,17.26,17.11,16.98,16.85,16.73,16.62,16.5,16.18,N/A,N/A +2012,3,24,15,30,101730,100530,99370,96,0,4.88,5.01,4.97,4.9,4.82,4.76,4.7,4.66,4.68,323.56,322.71,322.12,321.48,320.78000000000003,320.1,320.17,321.11,330.97,17.3,16.87,16.68,16.490000000000002,16.3,16.13,16.02,16.07,17.72,N/A,N/A +2012,3,24,16,30,101720,100520,99360,95.72,0,4.2,4.33,4.32,4.28,4.24,4.19,4.14,4.09,4.1,336.83,336.85,336.84000000000003,336.83,336.83,336.82,336.79,337.36,346.38,17.86,17.45,17.26,17.07,16.88,16.69,16.47,16.34,17.400000000000002,N/A,N/A +2012,3,24,17,30,101700,100510,99350,93.04,0,1.78,1.83,1.83,1.83,1.83,1.83,1.82,1.83,2.3000000000000003,325.56,325.53000000000003,325.57,325.66,325.83,326.03000000000003,326.32,327.2,339.06,18.36,17.97,17.79,17.6,17.41,17.240000000000002,17.05,16.91,17.18,N/A,N/A +2012,3,24,18,30,101680,100490,99340,89.01,0,1.18,1.26,1.3,1.36,1.52,1.74,2.3000000000000003,2.98,3.63,332.09000000000003,333.18,333.96,334.97,336.92,339.45,343.31,347.82,353.73,19.01,18.650000000000002,18.48,18.31,18.19,18.1,18.32,18.580000000000002,19.45,N/A,N/A +2012,3,24,19,30,101650,100470,99320,86.75,0,1.8900000000000001,1.85,1.78,1.68,1.54,1.3900000000000001,1.07,0.87,1.72,184,184.76,185.42000000000002,186.26,187.86,189.58,265.28000000000003,321.91,339.37,19.69,19.34,19.16,18.98,18.8,18.64,18.7,18.8,19.28,N/A,N/A +2012,3,24,20,30,101610,100420,99280,84.51,0,3.47,3.45,3.2600000000000002,2.96,2.2600000000000002,1.61,1.36,1.21,1.54,195,195.64000000000001,196.77,198.73000000000002,211.3,224.19,250.19,272.95,310.31,20.02,19.69,19.55,19.42,19.46,19.59,19.8,20,20.75,N/A,N/A +2012,3,24,21,30,101570,100390,99240,80.98,0,2.95,2.8000000000000003,2.38,1.74,1.46,1.31,1.37,1.46,1.84,193.66,194.9,202.19,215,230.22,245.88,264.82,283.01,301.91,20.6,20.35,20.42,20.72,21.1,21.5,21.76,21.98,22.1,N/A,N/A +2012,3,24,22,30,101530,100350,99210,74.68,0,3.0300000000000002,2.85,2.2,1.28,0.79,0.52,0.5,0.54,1.1500000000000001,169.26,169.74,172.73,177.38,194.01,210.13,251.91,295.2,323.32,21.18,21.05,21.28,21.900000000000002,22.26,22.490000000000002,22.54,22.55,22.56,N/A,N/A +2012,3,24,23,30,101510,100330,99200,71.47,0,3.63,3.5500000000000003,3.2600000000000002,2.82,2.36,1.95,1.53,1.21,0.7000000000000001,178.01,177.32,177.14000000000001,177.25,178.99,181.15,187.25,192.8,221.72,21.5,21.84,22.150000000000002,22.59,22.86,23.02,23.1,23.150000000000002,23.04,N/A,N/A +2012,3,25,0,30,101500,100320,99180,77.82000000000001,0,3.74,3.95,3.77,3.38,2.96,2.58,2.16,1.83,1.1500000000000001,183.31,183.64000000000001,183.82,184.04,184.66,185.37,187.23,188.99,198.06,21.38,21.61,22.06,22.88,23.27,23.43,23.44,23.42,23.17,N/A,N/A +2012,3,25,1,30,101530,100350,99210,70.16,0,4.5,4.9,4.89,4.73,4.43,4.1,3.65,3.25,2.38,193.08,192.96,192.49,191.59,191.35,191.44,191.85,192.26,194.13,21.55,21.42,21.55,21.92,22.19,22.41,22.68,22.92,23.04,N/A,N/A +2012,3,25,2,30,101550,100370,99230,73.59,0,4.05,4.41,4.58,4.83,4.71,4.42,4.0600000000000005,3.74,2.93,205.16,204.6,203.39000000000001,200.98000000000002,199.64000000000001,198.96,198.23000000000002,197.61,196.75,21.42,21.31,21.41,21.73,22.01,22.26,22.43,22.56,22.75,N/A,N/A +2012,3,25,3,30,101560,100380,99250,77.47,0,2.91,3.12,3.2,3.35,3.24,3.0100000000000002,2.7,2.43,1.83,226.08,225.53,223.68,219.74,216.19,213.21,212.17000000000002,211.73000000000002,215.05,21.25,21.150000000000002,21.38,21.990000000000002,22.47,22.85,22.990000000000002,23.06,22.98,N/A,N/A +2012,3,25,4,30,101580,100400,99260,78.85000000000001,0,2.98,3.11,3.22,3.5,3.6,3.6,3.38,3.16,2.62,228.78,228.71,227.83,225.69,222.54,219.02,216.88,215.33,214.17000000000002,21.19,20.990000000000002,21.1,21.52,21.990000000000002,22.47,22.68,22.82,22.72,N/A,N/A +2012,3,25,5,30,101590,100410,99270,84.07000000000001,0,3.23,3.37,3.46,3.7,3.81,3.84,3.62,3.38,2.74,235.42000000000002,235.51,235.58,235.76,234.15,231.76,229.97,228.6,227.94,21.01,20.76,20.73,20.84,21.13,21.5,21.88,22.22,22.62,N/A,N/A +2012,3,25,6,30,101610,100430,99290,86.89,0,3.18,3.38,3.64,4.2700000000000005,4.51,4.53,4.2700000000000005,4,3.59,254.02,252.71,250.28,245.22,241.75,239.47,239,238.92000000000002,237.77,21.05,20.830000000000002,20.92,21.28,21.72,22.18,22.18,22.080000000000002,21.900000000000002,N/A,N/A +2012,3,25,7,30,101630,100450,99310,89.05,0,3.36,3.5,3.5100000000000002,3.52,3.33,3.0300000000000002,3.09,3.21,3.22,246.47,246.79,247.39000000000001,248.61,251.64000000000001,255.51000000000002,256.08,255.75,250.66,21.04,20.78,20.66,20.580000000000002,20.47,20.35,20.51,20.740000000000002,21.89,N/A,N/A +2012,3,25,8,30,101640,100460,99320,91.17,0,3.52,3.63,3.67,3.8000000000000003,3.96,4.14,4.08,3.98,3.3200000000000003,256.98,256.95,256.89,256.75,257.12,257.75,259.42,261.05,263.98,21.02,20.72,20.59,20.47,20.650000000000002,20.98,21.35,21.68,21.85,N/A,N/A +2012,3,25,9,30,101640,100460,99320,94.44,0,3.18,3.27,3.27,3.2600000000000002,3.18,3.0700000000000003,2.97,2.87,2.4,270.15,270.17,270.24,270.37,271.76,273.72,273.46,272.83,272.53000000000003,20.89,20.59,20.42,20.240000000000002,20.240000000000002,20.35,21.02,21.72,22.48,N/A,N/A +2012,3,25,10,30,101660,100480,99340,95.42,0,3.21,3.35,3.38,3.39,3.49,3.63,3.5500000000000003,3.42,2.96,263.91,263.58,263.43,263.33,263.6,264.08,266.98,270.06,279.75,20.740000000000002,20.42,20.240000000000002,20.05,19.86,19.68,20,20.41,21.35,N/A,N/A +2012,3,25,11,30,101700,100510,99360,99.44,0,3.58,3.6,3.52,3.4,3.18,2.94,2.75,2.63,2.95,258.74,259.98,261.07,262.57,267.38,273.1,288.78000000000003,302.28000000000003,307.2,18.77,18.42,18.25,18.07,17.77,17.44,18.34,19.400000000000002,22.22,N/A,N/A +2012,3,25,12,30,101720,100530,99380,99.32000000000001,0,3.12,3.2,3.19,3.16,3.12,3.0700000000000003,3,2.94,2.98,282.90000000000003,281.76,280.67,279.26,277.33,275.31,287.21,299,309.29,18.86,18.52,18.35,18.150000000000002,17.79,17.37,19.28,21.18,21.37,N/A,N/A +2012,3,25,13,30,101750,100560,99410,99.34,0.4,3.19,3.25,3.23,3.19,3.16,3.13,3.08,3.06,3.45,276.67,275.88,275.3,274.61,273.29,271.79,282.17,292.88,310.38,18.75,18.41,18.26,18.09,17.8,17.490000000000002,18.1,18.8,20.240000000000002,N/A,N/A +2012,3,25,14,30,101790,100600,99450,99.45,0,1.58,1.61,1.59,1.57,1.55,1.54,1.84,2.21,3.0500000000000003,285.59000000000003,286.55,287.05,287.48,287.44,287.21,300.85,316.3,326.82,18.35,18,17.85,17.7,17.52,17.35,17.89,18.5,19.82,N/A,N/A +2012,3,25,15,30,101800,100610,99460,99.31,0,1.72,1.76,1.76,1.75,1.77,1.79,1.95,2.18,3.37,285.5,288.48,290.83,293.73,297.25,300.91,308.7,316.84000000000003,332.81,18.62,18.29,18.150000000000002,18.02,17.88,17.740000000000002,17.53,17.56,20.04,N/A,N/A +2012,3,25,16,30,101790,100600,99450,99.28,0,2.4,2.46,2.44,2.42,2.37,2.33,2.46,2.63,3.45,280.72,282.16,282.97,283.66,284.45,285.24,298.54,313.03000000000003,331.99,19.16,18.87,18.75,18.61,18.48,18.36,18.080000000000002,17.89,19.48,N/A,N/A +2012,3,25,17,30,101790,100600,99450,99.32000000000001,0,2.24,2.27,2.23,2.19,2.16,2.15,2.23,2.34,3,261,263.23,265.47,268.63,275.29,283.40000000000003,297.11,310.31,326.96,19.02,18.71,18.57,18.43,18.28,18.13,18.25,18.46,20.01,N/A,N/A +2012,3,25,18,30,101760,100570,99430,95.54,0,2,2.0100000000000002,2,2.0100000000000002,2.2,2.5100000000000002,2.81,3.09,3.39,261.17,264.15,268.13,274.97,286.36,301.17,307.88,312.66,315.5,19.67,19.330000000000002,19.2,19.11,19.37,19.81,20.37,20.87,20.81,N/A,N/A +2012,3,25,19,30,101740,100560,99410,91.3,0,2.17,2.12,2.0100000000000002,1.86,1.86,1.92,2.07,2.22,2.38,222.6,224.72,233.26,250.55,265.11,278.63,287.09000000000003,294.09000000000003,298.57,20.63,20.330000000000002,20.330000000000002,20.490000000000002,20.77,21.11,21.25,21.35,21.42,N/A,N/A +2012,3,25,20,30,101680,100500,99360,87.8,0,3.0300000000000002,3.02,2.92,2.79,2.66,2.5500000000000003,2.5300000000000002,2.52,2.57,210.62,211.48000000000002,214.15,219.61,225.04,230.21,233.61,236.36,240.53,21.35,21.09,21.13,21.39,21.63,21.84,21.88,21.87,21.830000000000002,N/A,N/A +2012,3,25,21,30,101640,100470,99330,85.38,0,3.54,3.58,3.54,3.52,3.43,3.3200000000000003,3.21,3.12,2.86,202.48000000000002,202.92000000000002,204.49,207.83,212.14000000000001,216.71,220.78,224.28,232.21,21.82,21.55,21.53,21.67,21.89,22.13,22.14,22.1,22.01,N/A,N/A +2012,3,25,22,30,101620,100440,99300,84.52,0,4.75,4.96,4.93,4.9,4.75,4.54,4.2700000000000005,4.03,3.48,193.97,194.13,194.47,195.15,197.35,200.22,202.51,204.37,207.31,21.94,21.68,21.580000000000002,21.54,21.73,22.05,22.19,22.28,22.22,N/A,N/A +2012,3,25,23,30,101610,100430,99300,83.76,0,4.4,4.75,4.84,4.95,4.8,4.54,4.25,4,3.45,187.65,188.08,189.35,192.01,194.32,196.27,196.78,196.95000000000002,195.72,21.8,21.63,21.740000000000002,22.12,22.45,22.740000000000002,22.77,22.740000000000002,22.72,N/A,N/A +2012,3,26,0,30,101600,100420,99290,85.84,0,4.07,4.79,5.04,5.19,5.08,4.8500000000000005,4.6000000000000005,4.37,3.86,189.64000000000001,190.37,191.66,194.15,195.82,196.94,197.04,196.92000000000002,195.02,21.650000000000002,21.7,21.93,22.400000000000002,22.67,22.84,22.84,22.8,22.76,N/A,N/A +2012,3,26,1,30,101610,100440,99300,86.03,0,3.96,4.28,4.42,4.65,4.67,4.58,4.37,4.16,3.74,184.43,184.72,185.66,187.76,190.52,193.45000000000002,195.01,196.04,193.99,21.61,21.400000000000002,21.47,21.81,22.19,22.59,22.71,22.76,22.650000000000002,N/A,N/A +2012,3,26,2,30,101640,100460,99320,86.85000000000001,0,3.31,3.58,3.74,4.0200000000000005,4.08,4.0200000000000005,3.87,3.71,3.33,188.58,188.81,189.73,191.81,194.99,198.56,201.67000000000002,204.24,204.6,21.56,21.36,21.42,21.71,22.04,22.400000000000002,22.55,22.64,22.53,N/A,N/A +2012,3,26,3,30,101650,100470,99330,87.65,0,3.6,3.81,3.94,4.22,4.39,4.48,4.43,4.34,3.97,205.62,205.63,205.49,205.22,205.64000000000001,206.42000000000002,207.95000000000002,209.43,211.03,21.48,21.240000000000002,21.18,21.21,21.41,21.69,21.89,22.05,22.11,N/A,N/A +2012,3,26,4,30,101650,100470,99330,88.66,0,3.42,3.6,3.64,3.72,3.88,4.08,4.2,4.28,3.92,224.34,224.18,223.92000000000002,223.47,222.56,221.39000000000001,220.83,220.47,220.6,21.37,21.1,20.95,20.8,20.830000000000002,20.96,21.27,21.57,21.92,N/A,N/A +2012,3,26,5,30,101650,100470,99330,88.37,0,3.8200000000000003,4.01,4.04,4.1,4.3100000000000005,4.61,4.75,4.8500000000000005,4.54,234.65,234.68,234.6,234.43,233.54,232.24,231.21,230.39000000000001,232.03,21.29,21.01,20.86,20.72,20.71,20.78,21.01,21.25,21.64,N/A,N/A +2012,3,26,6,30,101680,100500,99360,87.47,0,3.49,3.63,3.64,3.66,3.9,4.28,4.49,4.64,4.17,239.82,239.74,239.65,239.5,238.56,237.14000000000001,236.19,235.46,237.24,21.330000000000002,21.04,20.89,20.73,20.78,20.95,21.36,21.75,21.94,N/A,N/A +2012,3,26,7,30,101700,100520,99380,85.21000000000001,0,3.33,3.48,3.52,3.58,3.9,4.38,4.48,4.49,4.18,249.14000000000001,248.91,248.66,248.25,246.53,243.98000000000002,243.07,242.62,243.20000000000002,21.45,21.17,21.03,20.89,21.06,21.38,21.68,21.93,21.98,N/A,N/A +2012,3,26,8,30,101700,100520,99380,84.98,0,2.89,3,3,2.99,3.2,3.5700000000000003,3.84,4.07,3.99,255.96,255.88,255.74,255.51000000000002,253.5,250.3,248.3,246.73000000000002,248.05,21.44,21.14,20.98,20.81,20.82,20.93,21.22,21.51,21.7,N/A,N/A +2012,3,26,9,30,101720,100530,99390,84.73,0,2.48,2.61,2.63,2.65,2.73,2.83,3.19,3.59,3.8000000000000003,250.18,249.86,249.62,249.27,248.47,247.45000000000002,244.78,241.88,241.57,21.41,21.12,20.96,20.78,20.63,20.5,20.61,20.77,21.14,N/A,N/A +2012,3,26,10,30,101730,100550,99410,84.85000000000001,0,2.85,3,3.02,3.0300000000000002,3.0500000000000003,3.08,3.21,3.38,3.99,252.47,252.19,252.02,251.79,251.46,251.09,249.94,248.68,245.74,21.37,21.07,20.900000000000002,20.72,20.54,20.38,20.25,20.150000000000002,20.490000000000002,N/A,N/A +2012,3,26,11,30,101750,100570,99430,84.73,0,2.42,2.5300000000000002,2.54,2.54,2.54,2.54,2.5500000000000003,2.58,2.96,249.3,249.39000000000001,249.42000000000002,249.43,249.44,249.45000000000002,249.31,249.16,248.01000000000002,21.31,21,20.830000000000002,20.650000000000002,20.46,20.29,20.11,19.96,19.900000000000002,N/A,N/A +2012,3,26,12,30,101780,100600,99460,85.76,0,1.9100000000000001,1.99,1.99,1.99,1.98,1.97,1.96,1.94,1.9100000000000001,246.07,246.17000000000002,246.31,246.43,246.57,246.71,246.88,247.06,248.03,21.22,20.900000000000002,20.73,20.54,20.35,20.16,19.97,19.79,19.44,N/A,N/A +2012,3,26,13,30,101810,100630,99480,87.28,0,1.77,1.83,1.82,1.81,1.8,1.79,1.78,1.76,1.75,246.12,245.87,245.75,245.6,245.41,245.22,244.93,244.63,243.28,21.13,20.81,20.64,20.45,20.25,20.07,19.88,19.7,19.35,N/A,N/A +2012,3,26,14,30,101850,100670,99520,90.03,0,1.47,1.51,1.5,1.49,1.48,1.46,1.45,1.43,1.4000000000000001,268.74,267.41,266.52,265.6,264.64,263.71,262.59000000000003,261.49,257.36,21.03,20.7,20.53,20.34,20.14,19.96,19.77,19.59,19.22,N/A,N/A +2012,3,26,15,30,101870,100680,99530,93.11,0,1.61,1.6,1.57,1.54,1.5,1.47,1.44,1.41,1.35,285.8,282.58,280.51,278.36,276.09000000000003,273.87,271.1,268.5,260.92,20.88,20.53,20.35,20.16,19.97,19.78,19.580000000000002,19.39,19.03,N/A,N/A +2012,3,26,16,30,101860,100680,99530,92.29,0,1.6400000000000001,1.62,1.58,1.54,1.49,1.44,1.3800000000000001,1.32,1.18,276.29,275.1,274.23,273.22,271.97,270.68,268.69,266.76,259.47,20.73,20.37,20.19,19.990000000000002,19.79,19.6,19.39,19.2,18.77,N/A,N/A +2012,3,26,17,30,101840,100650,99510,93.91,0,1.51,1.3900000000000001,1.29,1.18,1.05,0.93,0.76,0.63,0.38,278.79,279.69,280.29,280.99,282.31,283.71,289.34000000000003,294.57,295.78000000000003,20.48,20.13,19.96,19.78,19.6,19.44,19.28,19.14,19.080000000000002,N/A,N/A +2012,3,26,18,30,101820,100640,99490,94.83,0,1.78,1.75,1.69,1.62,1.51,1.4000000000000001,1.02,0.73,0.28,265.99,265.63,265.5,265.37,264.88,264.3,257.8,251.27,223.81,20.5,20.150000000000002,19.97,19.79,19.63,19.48,19.45,19.47,20.06,N/A,N/A +2012,3,26,19,30,101810,100630,99490,89.9,0,1.22,1.21,1.19,1.1500000000000001,1.11,1.07,1.01,0.93,0.5,206.57,204.95000000000002,203.78,202.17000000000002,198.37,193.76,181.53,170.07,154.98,20.990000000000002,20.650000000000002,20.490000000000002,20.31,20.19,20.1,20.31,20.56,20.94,N/A,N/A +2012,3,26,20,30,101770,100590,99440,87.77,0,1.74,1.77,1.75,1.73,1.7,1.6600000000000001,1.57,1.49,1.16,196.36,195.08,194.1,192.82,190.20000000000002,187.05,176.41,166.01,147.92000000000002,21.36,21.02,20.85,20.68,20.54,20.43,20.64,20.89,21.42,N/A,N/A +2012,3,26,21,30,101730,100550,99410,83.31,0,2.42,2.49,2.48,2.45,2.43,2.4,2.38,2.35,2.18,180.47,179.66,179.05,178.25,176.61,174.61,166.13,157.37,145.03,21.79,21.46,21.29,21.12,20.98,20.86,21.080000000000002,21.34,21.7,N/A,N/A +2012,3,26,22,30,101670,100490,99350,80.11,0,2.97,3.08,3.0700000000000003,3.0500000000000003,3.04,3.02,3.02,3.0100000000000002,2.91,177.25,176.57,176.06,175.4,174.12,172.57,166.76,160.70000000000002,150.26,22.04,21.73,21.57,21.39,21.25,21.13,21.25,21.41,21.75,N/A,N/A +2012,3,26,23,30,101650,100480,99340,82.32000000000001,0,3.22,3.38,3.4,3.39,3.41,3.44,3.5700000000000003,3.71,3.71,168.41,167.89000000000001,167.49,166.97,165.9,164.57,159.91,154.87,147.98,22.02,21.73,21.57,21.39,21.25,21.13,21.240000000000002,21.39,21.740000000000002,N/A,N/A +2012,3,27,0,30,101640,100460,99320,82.21000000000001,0,3.17,3.36,3.37,3.37,3.38,3.41,3.56,3.72,3.73,169.27,169.02,168.83,168.55,167.94,167.17000000000002,162.72,157.8,150.26,22.01,21.73,21.57,21.400000000000002,21.240000000000002,21.1,21.2,21.330000000000002,21.72,N/A,N/A +2012,3,27,1,30,101630,100450,99310,81.58,0,3.58,3.79,3.8000000000000003,3.79,3.8200000000000003,3.86,3.99,4.13,4.12,172.92000000000002,172.75,172.58,172.35,171.66,170.73,166.85,162.67000000000002,156.12,21.94,21.67,21.52,21.34,21.19,21.07,21.18,21.32,21.69,N/A,N/A +2012,3,27,2,30,101650,100470,99330,82.41,0,4.12,4.37,4.4,4.4,4.47,4.57,4.74,4.89,4.88,172.19,172.07,171.96,171.8,171.29,170.62,168.06,165.29,159.94,21.86,21.59,21.43,21.26,21.14,21.04,21.17,21.330000000000002,21.7,N/A,N/A +2012,3,27,3,30,101650,100470,99330,83.28,0,4.36,4.64,4.66,4.67,4.75,4.87,5.1000000000000005,5.33,5.34,169.56,169.45000000000002,169.38,169.27,168.95000000000002,168.52,166.85,164.99,160.26,21.76,21.48,21.32,21.150000000000002,21.03,20.94,21.1,21.29,21.68,N/A,N/A +2012,3,27,4,30,101650,100470,99320,83.92,0,4.37,4.65,4.68,4.68,4.69,4.7,4.9,5.13,5.48,167.82,167.76,167.68,167.6,167.46,167.31,166.5,165.59,162.14000000000001,21.650000000000002,21.36,21.2,21.01,20.84,20.67,20.61,20.59,21.22,N/A,N/A +2012,3,27,5,30,101650,100470,99330,84.92,0,4.5200000000000005,4.8,4.84,4.84,4.84,4.84,4.91,5,5.55,169,168.98,168.97,168.95000000000002,168.93,168.9,168.87,168.84,168.16,21.54,21.25,21.080000000000002,20.89,20.71,20.54,20.400000000000002,20.29,20.68,N/A,N/A +2012,3,27,6,30,101670,100490,99350,84.2,0,4.34,4.6000000000000005,4.64,4.64,4.65,4.65,4.69,4.73,5.18,170.29,170.29,170.28,170.27,170.25,170.24,170.24,170.25,170.82,21.53,21.21,21.04,20.86,20.68,20.51,20.35,20.2,20.31,N/A,N/A +2012,3,27,7,30,101720,100530,99390,83.72,0,4,4.24,4.28,4.3,4.3100000000000005,4.32,4.3500000000000005,4.39,4.84,175.51,175.47,175.45000000000002,175.42000000000002,175.4,175.37,175.34,175.31,175.78,21.56,21.25,21.080000000000002,20.89,20.71,20.53,20.36,20.2,20.16,N/A,N/A +2012,3,27,8,30,101710,100530,99380,84.42,0,4.01,4.24,4.2700000000000005,4.28,4.28,4.2700000000000005,4.2700000000000005,4.26,4.36,174.78,174.86,174.89000000000001,174.93,175,175.07,175.18,175.3,176.20000000000002,21.51,21.19,21.02,20.830000000000002,20.64,20.46,20.27,20.09,19.84,N/A,N/A +2012,3,27,9,30,101720,100540,99390,84.46000000000001,0,4.18,4.44,4.49,4.5,4.5,4.5,4.5,4.5,4.5600000000000005,180.08,179.99,179.98,179.97,179.96,179.96,179.95000000000002,179.95000000000002,180.03,21.5,21.18,21,20.81,20.62,20.44,20.25,20.07,19.740000000000002,N/A,N/A +2012,3,27,10,30,101740,100560,99420,83.74,0,4.04,4.29,4.34,4.36,4.37,4.37,4.38,4.38,4.4,186.27,186.18,186.14000000000001,186.09,186.03,185.97,185.9,185.83,185.66,21.5,21.18,21,20.81,20.62,20.44,20.25,20.07,19.71,N/A,N/A +2012,3,27,11,30,101770,100590,99450,84.82000000000001,0,3.7600000000000002,3.98,4.03,4.04,4.04,4.05,4.04,4.03,4.0200000000000005,185.05,185.06,185.06,185.07,185.08,185.09,185.1,185.11,185.17000000000002,21.43,21.1,20.93,20.740000000000002,20.54,20.36,20.16,19.98,19.6,N/A,N/A +2012,3,27,12,30,101800,100620,99470,84.86,0,3.41,3.62,3.66,3.67,3.68,3.69,3.69,3.69,3.69,179.01,178.99,179,179.01,179.03,179.04,179.06,179.08,179.14000000000001,21.39,21.07,20.89,20.7,20.5,20.32,20.12,19.94,19.55,N/A,N/A +2012,3,27,13,30,101830,100650,99510,85.54,0,3.47,3.68,3.71,3.74,3.74,3.75,3.75,3.7600000000000002,3.75,177.8,177.71,177.66,177.61,177.56,177.5,177.43,177.37,177.23,21.36,21.03,20.85,20.650000000000002,20.46,20.27,20.080000000000002,19.89,19.51,N/A,N/A +2012,3,27,14,30,101880,100700,99550,85.74,0,3.25,3.44,3.48,3.49,3.5100000000000002,3.5100000000000002,3.52,3.52,3.52,166.79,166.77,166.76,166.74,166.72,166.71,166.68,166.66,166.6,21.35,21.02,20.84,20.650000000000002,20.45,20.27,20.07,19.89,19.5,N/A,N/A +2012,3,27,15,30,101900,100720,99570,85.36,0,3.56,3.7600000000000002,3.81,3.84,3.85,3.87,3.88,3.89,3.91,158.21,158.25,158.24,158.21,158.19,158.16,158.11,158.08,157.97,21.43,21.09,20.92,20.72,20.53,20.35,20.150000000000002,19.97,19.580000000000002,N/A,N/A +2012,3,27,16,30,101900,100720,99570,84.67,0,3.85,4.11,4.17,4.21,4.24,4.26,4.28,4.3,4.33,159.13,158.97,158.9,158.83,158.77,158.72,158.65,158.59,158.47,21.54,21.2,21.02,20.82,20.63,20.44,20.240000000000002,20.06,19.67,N/A,N/A +2012,3,27,17,30,101900,100720,99580,82.28,0,4.28,4.58,4.66,4.71,4.74,4.7700000000000005,4.8,4.82,4.87,160.88,160.85,160.79,160.73,160.66,160.61,160.55,160.49,160.34,21.71,21.36,21.19,20.990000000000002,20.8,20.61,20.41,20.23,19.84,N/A,N/A +2012,3,27,18,30,101910,100730,99580,83.25,0,4.74,5.08,5.16,5.21,5.24,5.26,5.2700000000000005,5.29,5.3,161.92000000000002,161.74,161.66,161.59,161.52,161.47,161.41,161.36,161.28,21.78,21.43,21.25,21.05,20.86,20.67,20.47,20.29,19.900000000000002,N/A,N/A +2012,3,27,19,30,101900,100720,99580,82.86,0,4.64,4.97,5.04,5.09,5.12,5.14,5.16,5.18,5.2,161.38,161.22,161.15,161.07,160.99,160.92000000000002,160.85,160.78,160.64000000000001,21.86,21.52,21.34,21.150000000000002,20.95,20.77,20.57,20.38,20,N/A,N/A +2012,3,27,20,30,101890,100710,99570,82.3,0,4.36,4.69,4.7700000000000005,4.82,4.8500000000000005,4.88,4.9,4.92,4.94,153.14000000000001,153.22,153.3,153.38,153.46,153.53,153.62,153.69,153.87,21.95,21.61,21.44,21.240000000000002,21.05,20.86,20.66,20.48,20.09,N/A,N/A +2012,3,27,21,30,101870,100690,99540,82.45,0,3.89,4.15,4.22,4.26,4.29,4.32,4.34,4.36,4.4,155.16,155.18,155.18,155.18,155.18,155.18,155.19,155.19,155.21,22,21.68,21.5,21.31,21.12,20.93,20.740000000000002,20.56,20.17,N/A,N/A +2012,3,27,22,30,101840,100660,99520,82.33,0,4.3100000000000005,4.62,4.7,4.74,4.76,4.78,4.8,4.8100000000000005,4.82,146.44,147.18,147.62,148.02,148.39000000000001,148.72,149.06,149.36,149.97,21.98,21.66,21.490000000000002,21.3,21.1,20.92,20.72,20.54,20.150000000000002,N/A,N/A +2012,3,27,23,30,101820,100640,99490,84.23,0,4.13,4.43,4.5,4.54,4.57,4.59,4.61,4.63,4.67,146.67000000000002,146.58,146.46,146.31,146.16,146,145.82,145.65,145.22,21.88,21.57,21.400000000000002,21.21,21.01,20.830000000000002,20.63,20.45,20.07,N/A,N/A +2012,3,28,0,30,101790,100610,99470,85.35000000000001,0,5.36,5.83,5.94,5.99,6.03,6.05,6.0600000000000005,6.0600000000000005,6.05,147.13,147.53,147.70000000000002,147.86,147.98,148.1,148.20000000000002,148.29,148.48,21.92,21.62,21.45,21.25,21.06,20.88,20.68,20.490000000000002,20.1,N/A,N/A +2012,3,28,1,30,101800,100620,99470,86.96000000000001,0,5.19,5.63,5.74,5.8,5.8500000000000005,5.89,5.93,5.96,6.0200000000000005,139.53,139.46,139.41,139.35,139.29,139.23,139.17000000000002,139.11,138.98,21.82,21.5,21.330000000000002,21.14,20.95,20.76,20.57,20.38,20,N/A,N/A +2012,3,28,2,30,101810,100630,99480,87.14,0,6.25,6.78,6.9,6.96,7,7.03,7.04,7.0600000000000005,7.07,139.28,139.38,139.44,139.49,139.55,139.6,139.65,139.70000000000002,139.81,21.830000000000002,21.51,21.34,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A +2012,3,28,3,30,101810,100630,99490,87.31,0,6.66,7.25,7.4,7.48,7.53,7.57,7.59,7.61,7.63,139.49,139.56,139.67000000000002,139.77,139.88,139.98,140.1,140.21,140.48,21.8,21.490000000000002,21.32,21.12,20.93,20.740000000000002,20.54,20.36,19.98,N/A,N/A +2012,3,28,4,30,101810,100630,99480,85.67,0,6.51,7.08,7.19,7.24,7.26,7.2700000000000005,7.26,7.25,7.23,141.74,141.76,141.87,142.02,142.21,142.41,142.68,142.95000000000002,143.76,21.93,21.62,21.45,21.26,21.07,20.89,20.69,20.52,20.14,N/A,N/A +2012,3,28,5,30,101770,100590,99450,87.53,0,7.11,7.75,7.9,7.98,8.040000000000001,8.08,8.1,8.120000000000001,8.15,145.01,145.05,145.1,145.16,145.23,145.29,145.37,145.45000000000002,145.64000000000001,21.8,21.48,21.3,21.11,20.92,20.73,20.53,20.35,19.97,N/A,N/A +2012,3,28,6,30,101820,100640,99490,88.9,0,7.25,7.97,8.15,8.25,8.32,8.370000000000001,8.39,8.41,8.43,154.08,154.6,154.81,154.99,155.15,155.27,155.4,155.5,155.69,21.88,21.56,21.39,21.19,21,20.81,20.61,20.43,20.04,N/A,N/A +2012,3,28,7,30,101800,100620,99480,87.66,0,6.98,7.59,7.73,7.8100000000000005,7.86,7.890000000000001,7.91,7.92,7.930000000000001,152.99,153.14000000000001,153.21,153.27,153.34,153.41,153.48,153.54,153.70000000000002,21.86,21.54,21.37,21.17,20.98,20.8,20.6,20.42,20.03,N/A,N/A +2012,3,28,8,30,101790,100610,99470,88.33,0,6.54,7.12,7.25,7.32,7.37,7.4,7.41,7.43,7.43,156.13,156.19,156.21,156.25,156.28,156.31,156.36,156.4,156.52,21.85,21.54,21.36,21.17,20.98,20.79,20.59,20.41,20.03,N/A,N/A +2012,3,28,9,30,101760,100590,99440,86.32000000000001,0,7.03,7.63,7.76,7.82,7.86,7.88,7.890000000000001,7.9,7.92,155.06,155.3,155.47,155.66,155.87,156.09,156.37,156.64000000000001,157.5,21.92,21.61,21.44,21.25,21.06,20.88,20.69,20.52,20.150000000000002,N/A,N/A +2012,3,28,10,30,101770,100590,99450,87.24,0,6.24,6.7700000000000005,6.9,6.97,7.0200000000000005,7.0600000000000005,7.08,7.11,7.15,162.13,162.21,162.28,162.34,162.4,162.45000000000002,162.51,162.57,162.72,21.88,21.57,21.39,21.2,21,20.81,20.62,20.44,20.05,N/A,N/A +2012,3,28,11,30,101770,100590,99440,87.55,0,5.6000000000000005,6.17,6.33,6.44,6.5200000000000005,6.59,6.65,6.7,6.79,159.88,159.65,159.59,159.53,159.48,159.43,159.37,159.31,159.19,21.84,21.52,21.35,21.150000000000002,20.96,20.78,20.580000000000002,20.39,20.01,N/A,N/A +2012,3,28,12,30,101770,100600,99450,87.69,0,5.98,6.47,6.59,6.66,6.7,6.73,6.75,6.7700000000000005,6.8,166.18,166.32,166.38,166.43,166.47,166.5,166.54,166.57,166.70000000000002,21.94,21.64,21.47,21.28,21.09,20.91,20.72,20.54,20.17,N/A,N/A +2012,3,28,13,30,101790,100620,99470,88.46000000000001,0,6.6000000000000005,7.16,7.28,7.33,7.36,7.38,7.38,7.37,7.34,163.07,163.67000000000002,163.91,164.13,164.32,164.5,164.68,164.86,165.22,21.87,21.55,21.38,21.18,20.990000000000002,20.8,20.6,20.42,20.03,N/A,N/A +2012,3,28,14,30,101820,100640,99500,86.95,0,5.97,6.47,6.57,6.62,6.65,6.67,6.67,6.67,6.67,162.11,161.94,161.88,161.82,161.77,161.73,161.69,161.66,161.64000000000001,21.96,21.650000000000002,21.48,21.28,21.09,20.91,20.71,20.53,20.150000000000002,N/A,N/A +2012,3,28,15,30,101850,100670,99530,87.31,0,5.3500000000000005,5.78,5.87,5.92,5.95,5.97,5.98,5.98,5.98,165.03,165.06,165.07,165.06,165.06,165.05,165.04,165.03,165.02,21.96,21.64,21.47,21.27,21.080000000000002,20.89,20.7,20.52,20.13,N/A,N/A +2012,3,28,16,30,101860,100680,99530,87.23,0,5.0200000000000005,5.4,5.49,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,165.44,165.55,165.6,165.65,165.67000000000002,165.70000000000002,165.72,165.74,165.78,22,21.68,21.5,21.31,21.11,20.93,20.73,20.55,20.16,N/A,N/A +2012,3,28,17,30,101830,100650,99510,86.23,0,4.8100000000000005,5.16,5.24,5.29,5.32,5.34,5.36,5.38,5.41,169.18,169.03,168.98,168.94,168.9,168.86,168.82,168.78,168.71,22.04,21.71,21.54,21.34,21.150000000000002,20.96,20.76,20.580000000000002,20.2,N/A,N/A +2012,3,28,18,30,101800,100630,99480,87.01,0,4.7700000000000005,5.11,5.19,5.22,5.25,5.2700000000000005,5.28,5.29,5.3100000000000005,164.45000000000002,164.51,164.58,164.65,164.73,164.81,164.9,165,165.24,22.05,21.72,21.54,21.35,21.150000000000002,20.96,20.77,20.59,20.2,N/A,N/A +2012,3,28,19,30,101790,100610,99470,86,0,4.65,4.97,5.04,5.07,5.08,5.09,5.09,5.1000000000000005,5.09,170.68,170.66,170.63,170.6,170.56,170.52,170.47,170.44,170.36,22.13,21.8,21.62,21.43,21.240000000000002,21.05,20.85,20.67,20.29,N/A,N/A +2012,3,28,20,30,101730,100550,99410,86.79,0,5.15,5.5,5.57,5.6000000000000005,5.61,5.62,5.61,5.6000000000000005,5.58,166.31,166.35,166.39000000000001,166.42000000000002,166.44,166.47,166.48,166.49,166.54,22.1,21.77,21.6,21.400000000000002,21.21,21.02,20.82,20.64,20.25,N/A,N/A +2012,3,28,21,30,101690,100510,99370,87.24,0,5.24,5.64,5.73,5.78,5.8100000000000005,5.84,5.8500000000000005,5.86,5.87,166.91,167.13,167.23,167.36,167.48,167.61,167.76,167.9,168.22,22.09,21.77,21.6,21.400000000000002,21.21,21.02,20.830000000000002,20.64,20.26,N/A,N/A +2012,3,28,22,30,101620,100450,99310,87.56,0,4.7,5.04,5.12,5.17,5.2,5.22,5.23,5.25,5.29,177.70000000000002,177.49,177.36,177.20000000000002,177.06,176.91,176.73,176.55,176.11,21.97,21.66,21.490000000000002,21.29,21.1,20.92,20.72,20.54,20.16,N/A,N/A +2012,3,28,23,30,101580,100400,99260,87.2,0,5.26,5.68,5.7700000000000005,5.8100000000000005,5.84,5.86,5.87,5.87,5.88,171.07,172.04,172.65,173.27,173.86,174.44,175.05,175.61,176.84,21.97,21.67,21.5,21.3,21.11,20.93,20.73,20.55,20.17,N/A,N/A +2012,3,29,0,30,101540,100360,99220,89.37,0,5.07,5.48,5.57,5.63,5.67,5.7,5.72,5.74,5.78,162.96,162.86,162.81,162.72,162.64000000000001,162.55,162.44,162.33,162.1,21.77,21.46,21.28,21.09,20.900000000000002,20.71,20.51,20.330000000000002,19.95,N/A,N/A +2012,3,29,1,30,101560,100380,99240,89.67,0,5.79,6.26,6.38,6.43,6.47,6.5,6.51,6.5200000000000005,6.53,160.05,159.98,159.92000000000002,159.86,159.81,159.76,159.71,159.67000000000002,159.58,21.73,21.41,21.240000000000002,21.04,20.85,20.66,20.46,20.28,19.89,N/A,N/A +2012,3,29,2,30,101590,100410,99270,87.99,0,4.91,5.29,5.38,5.44,5.48,5.51,5.54,5.5600000000000005,5.6000000000000005,171.14000000000001,171.66,171.86,172.03,172.18,172.31,172.42000000000002,172.52,172.73,21.79,21.47,21.29,21.09,20.900000000000002,20.71,20.51,20.32,19.92,N/A,N/A +2012,3,29,3,30,101570,100390,99250,87.71000000000001,0,3.34,3.71,3.84,3.95,4.05,4.14,4.22,4.3,4.46,183.54,181.43,180.46,179.62,178.87,178.21,177.59,177.02,175.92000000000002,21.57,21.25,21.080000000000002,20.89,20.69,20.51,20.31,20.13,19.740000000000002,N/A,N/A +2012,3,29,4,30,101550,100370,99230,88.07000000000001,0,5.2,5.61,5.7,5.76,5.8,5.82,5.84,5.8500000000000005,5.86,172.12,172.24,172.32,172.39000000000001,172.44,172.48,172.52,172.56,172.59,21.63,21.3,21.13,20.93,20.740000000000002,20.55,20.35,20.17,19.78,N/A,N/A +2012,3,29,5,30,101500,100320,99180,88.49,0,4.64,4.92,4.96,4.97,4.97,4.97,4.95,4.94,4.92,166.34,166.46,166.51,166.58,166.67000000000002,166.77,166.92000000000002,167.06,167.5,21.51,21.18,21,20.81,20.61,20.42,20.22,20.04,19.650000000000002,N/A,N/A +2012,3,29,6,30,101510,100330,99190,90.5,0,5.62,6.05,6.15,6.2,6.23,6.25,6.26,6.2700000000000005,6.28,162.51,162.56,162.62,162.66,162.70000000000002,162.74,162.78,162.82,162.94,21.490000000000002,21.14,20.96,20.77,20.57,20.38,20.19,20.01,19.62,N/A,N/A +2012,3,29,7,30,101500,100320,99180,90.39,0,5.5600000000000005,5.98,6.0600000000000005,6.1000000000000005,6.12,6.13,6.13,6.12,6.08,153.37,153.58,153.66,153.74,153.8,153.87,153.93,154,154.13,21.580000000000002,21.240000000000002,21.07,20.87,20.67,20.490000000000002,20.29,20.1,19.72,N/A,N/A +2012,3,29,8,30,101500,100320,99180,90.10000000000001,0,5.37,5.7700000000000005,5.86,5.91,5.94,5.95,5.97,5.97,5.98,164.82,165.03,165.05,165.09,165.14000000000001,165.20000000000002,165.27,165.34,165.54,21.66,21.32,21.14,20.94,20.75,20.56,20.36,20.18,19.8,N/A,N/A +2012,3,29,9,30,101510,100330,99190,87.92,0,5.13,5.45,5.5200000000000005,5.54,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,171.47,171.52,171.64000000000001,171.75,171.86,171.97,172.11,172.24,172.61,21.7,21.38,21.2,21.01,20.82,20.63,20.44,20.26,19.88,N/A,N/A +2012,3,29,10,30,101460,100280,99140,88.32000000000001,0,4.08,4.32,4.36,4.38,4.39,4.39,4.39,4.39,4.46,153.02,153.18,153.32,153.48,153.66,153.85,154.14000000000001,154.42000000000002,155.99,21.650000000000002,21.32,21.150000000000002,20.96,20.77,20.59,20.400000000000002,20.23,19.91,N/A,N/A +2012,3,29,11,30,101460,100280,99140,87.93,0,4.36,4.68,4.75,4.78,4.8100000000000005,4.82,4.83,4.84,4.8500000000000005,149.8,150.03,150.22,150.39000000000001,150.54,150.68,150.85,151,151.42000000000002,21.75,21.42,21.25,21.05,20.86,20.67,20.48,20.29,19.91,N/A,N/A +2012,3,29,12,30,101450,100270,99130,84.3,0,4.91,5.29,5.37,5.42,5.45,5.48,5.51,5.54,5.66,144.99,145.53,145.86,146.22,146.58,146.96,147.45000000000002,147.92000000000002,149.58,21.91,21.6,21.43,21.240000000000002,21.05,20.87,20.68,20.5,20.150000000000002,N/A,N/A +2012,3,29,13,30,101460,100290,99150,87.69,0,5.2700000000000005,5.67,5.76,5.8100000000000005,5.83,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,146.62,146.91,147.06,147.22,147.39000000000001,147.55,147.77,147.97,148.56,21.85,21.53,21.36,21.17,20.98,20.8,20.6,20.43,20.06,N/A,N/A +2012,3,29,14,30,101500,100330,99190,86.24,0,5.26,5.63,5.69,5.71,5.7,5.68,5.66,5.62,5.55,145.05,145.15,145.14000000000001,145.1,145.02,144.95000000000002,144.85,144.77,144.64000000000001,21.95,21.63,21.46,21.27,21.080000000000002,20.89,20.7,20.51,20.13,N/A,N/A +2012,3,29,15,30,101500,100330,99190,87.17,0,5.28,5.64,5.71,5.73,5.74,5.74,5.73,5.72,5.68,143.26,143.51,143.66,143.79,143.92000000000002,144.04,144.18,144.31,144.66,21.82,21.490000000000002,21.32,21.13,20.94,20.75,20.56,20.38,20.01,N/A,N/A +2012,3,29,16,30,101500,100320,99180,82.72,0,4.97,5.32,5.39,5.42,5.44,5.44,5.44,5.43,5.4,142.69,142.93,143.13,143.33,143.53,143.72,143.95000000000002,144.17000000000002,144.76,22.06,21.75,21.57,21.38,21.2,21.01,20.82,20.64,20.27,N/A,N/A +2012,3,29,17,30,101460,100290,99150,84.99,0,5.0600000000000005,5.43,5.51,5.55,5.58,5.59,5.59,5.59,5.57,134.72,135.09,135.27,135.43,135.56,135.69,135.81,135.93,136.19,22.05,21.72,21.54,21.35,21.150000000000002,20.97,20.77,20.59,20.21,N/A,N/A +2012,3,29,18,30,101420,100250,99110,85.59,0,5.71,6.13,6.23,6.2700000000000005,6.3,6.3100000000000005,6.32,6.33,6.32,141.09,141.26,141.35,141.45000000000002,141.54,141.63,141.73,141.82,142.04,22.06,21.73,21.55,21.36,21.17,20.98,20.79,20.61,20.23,N/A,N/A +2012,3,29,19,30,101380,100210,99070,81.37,0,6.0600000000000005,6.5600000000000005,6.67,6.74,6.78,6.8100000000000005,6.84,6.86,6.9,144.19,144.44,144.62,144.8,144.98,145.14000000000001,145.33,145.49,145.89000000000001,22.28,21.96,21.79,21.61,21.42,21.240000000000002,21.05,20.87,20.5,N/A,N/A +2012,3,29,20,30,101330,100160,99020,80.27,0,6.44,7.0200000000000005,7.15,7.22,7.2700000000000005,7.3,7.3100000000000005,7.32,7.3,149.24,149.46,149.49,149.52,149.54,149.56,149.57,149.57,149.55,22.43,22.14,21.97,21.78,21.59,21.41,21.22,21.04,20.66,N/A,N/A +2012,3,29,21,30,101390,100210,99060,95,232.9,10.68,11.33,11.46,11.49,11.5,11.5,11.51,11.51,11.540000000000001,235.14000000000001,236.19,236.94,237.70000000000002,238.45000000000002,239.18,240.01,240.78,242.34,19.98,19.55,19.39,19.23,19.09,18.95,18.81,18.68,18.39,N/A,N/A +2012,3,29,22,30,101350,100160,99020,92.81,26.700000000000003,8.14,8.49,8.46,8.33,8.16,7.96,7.65,7.3500000000000005,6.74,337.09000000000003,338.54,339.66,341.17,343.37,345.87,351.41,356.90000000000003,11.63,20.04,19.62,19.45,19.27,19.12,18.97,18.86,18.77,18.67,N/A,N/A +2012,3,29,23,30,101330,100150,99000,91.05,0.4,2.79,2.87,2.87,2.86,2.84,2.81,2.79,2.7600000000000002,2.88,31.900000000000002,34.89,36.9,39.27,42.21,45.42,50.910000000000004,56.44,72.02,20.35,19.990000000000002,19.82,19.63,19.45,19.28,19.1,18.94,18.63,N/A,N/A +2012,3,30,0,30,101280,100100,98960,88.36,0,4.29,4.43,4.4,4.34,4.24,4.13,3.88,3.62,2.73,217.34,217.19,217.09,216.94,216.66,216.33,215,213.28,198.64000000000001,19.990000000000002,19.61,19.43,19.23,19.05,18.88,18.71,18.57,18.62,N/A,N/A +2012,3,30,1,30,101190,100010,98870,86.28,0,7.37,7.75,7.76,7.71,7.72,7.7700000000000005,7.61,7.43,6.72,178.26,178.31,178.36,178.45000000000002,178.68,178.96,179.77,180.63,183.33,20.25,19.88,19.73,19.59,19.580000000000002,19.63,20.01,20.39,20.94,N/A,N/A +2012,3,30,2,30,101240,100060,98920,84.82000000000001,0,6.0200000000000005,6.390000000000001,6.46,6.49,6.51,6.5200000000000005,6.55,6.6000000000000005,7.140000000000001,186.70000000000002,186.68,186.59,186.53,186.47,186.43,186.38,186.34,187.25,20.91,20.55,20.37,20.19,20.01,19.84,19.69,19.55,19.69,N/A,N/A +2012,3,30,3,30,101230,100050,98910,85.15,0,6.51,6.96,7.04,7.07,7.07,7.0600000000000005,7.03,7.01,7.05,192.24,192.20000000000002,192.22,192.24,192.28,192.32,192.4,192.49,193.39000000000001,21.07,20.7,20.53,20.330000000000002,20.150000000000002,19.97,19.79,19.62,19.36,N/A,N/A +2012,3,30,4,30,101210,100030,98890,84.81,0,7.3500000000000005,7.8100000000000005,7.87,7.88,7.92,7.97,8.24,8.53,8.11,185.93,185.99,186.07,186.18,186.39000000000001,186.65,187.53,188.48,189.55,21.35,21.01,20.85,20.68,20.54,20.42,20.57,20.77,21.32,N/A,N/A +2012,3,30,5,30,101190,100010,98880,79.35000000000001,0,4.29,4.48,4.75,5.5200000000000005,6.01,6.2700000000000005,6.43,6.54,6.74,198.71,198.71,198.4,197.54,196.33,194.94,193.64000000000001,192.48000000000002,190.52,21.89,21.62,21.6,21.77,21.91,22.04,21.97,21.86,21.54,N/A,N/A +2012,3,30,6,30,101190,100020,98880,83.17,0,4.2,4.46,4.5,4.5200000000000005,4.55,4.59,5.0600000000000005,5.62,6.42,181.87,181.72,181.64000000000001,181.56,181.52,181.5,182.63,183.99,187.38,21.72,21.41,21.25,21.06,20.89,20.72,20.68,20.67,20.96,N/A,N/A +2012,3,30,7,30,101210,100040,98900,85.27,0,3.94,4.2,4.32,4.54,5.21,6.23,6.69,6.98,7.63,182.76,182.98,183.39000000000001,184.17000000000002,186.17000000000002,189.22,190.58,191.45000000000002,193.77,21.67,21.38,21.240000000000002,21.1,21.080000000000002,21.14,21.17,21.19,21.27,N/A,N/A +2012,3,30,8,30,101220,100050,98920,87.14,0,3.37,3.5100000000000002,3.8000000000000003,4.75,5.38,5.71,6.05,6.37,7.0200000000000005,164.24,165.04,168.18,177.35,182.45000000000002,184.09,185.56,186.91,189.23,21.96,21.67,21.580000000000002,21.59,21.54,21.46,21.38,21.31,21.150000000000002,N/A,N/A +2012,3,30,9,30,101200,100020,98890,90.61,0,4.28,4.55,4.87,5.69,6.17,6.42,6.67,6.890000000000001,7.33,153.08,154.55,158.08,166.4,171.05,173.07,174.91,176.57,179.52,22,21.72,21.64,21.64,21.6,21.53,21.45,21.37,21.16,N/A,N/A +2012,3,30,10,30,101210,100040,98910,89.07000000000001,0,4.46,5.26,5.64,6.0200000000000005,6.3500000000000005,6.63,6.91,7.18,7.71,178.28,178.95000000000002,179.37,179.9,180.39000000000001,180.87,181.42000000000002,181.95000000000002,183.32,22.28,22.07,21.96,21.85,21.73,21.61,21.48,21.37,21.14,N/A,N/A +2012,3,30,11,30,101210,100040,98910,91.22,0,4.92,5.83,6.23,6.57,6.87,7.140000000000001,7.4,7.65,8.120000000000001,170,171.32,172.17000000000002,173.02,173.81,174.57,175.38,176.15,178.07,22.25,22.03,21.91,21.79,21.66,21.53,21.39,21.26,21.02,N/A,N/A +2012,3,30,12,30,101210,100040,98910,92.91,0,5.43,6.3500000000000005,6.74,7.0600000000000005,7.34,7.58,7.82,8.05,8.43,170.01,170.68,171.12,171.55,172.01,172.49,173.11,173.72,175.58,22.28,22.04,21.91,21.76,21.61,21.45,21.29,21.150000000000002,20.87,N/A,N/A +2012,3,30,13,30,101250,100080,98950,94.83,0,5.51,6.390000000000001,6.75,7.05,7.3,7.53,7.74,7.930000000000001,8.26,174.07,174.29,174.42000000000002,174.53,174.67000000000002,174.82,175.12,175.43,177.06,22.27,22.05,21.92,21.75,21.580000000000002,21.41,21.240000000000002,21.080000000000002,20.78,N/A,N/A +2012,3,30,14,30,101300,100130,98990,95.44,0,6.99,7.48,7.5600000000000005,7.59,7.6000000000000005,7.6000000000000005,7.62,7.65,7.72,176.5,176.54,176.45000000000002,176.31,176.19,176.08,176.22,176.41,180.11,21.400000000000002,21.05,20.87,20.67,20.46,20.27,20.04,19.82,19.59,N/A,N/A +2012,3,30,15,30,101330,100150,99010,97.17,0,5.55,5.86,5.91,5.93,6.08,6.28,6.55,6.8,6.94,187.72,186.55,185.68,184.52,182.37,179.65,176.93,174.39000000000001,172.9,21.1,20.76,20.59,20.41,20.3,20.23,20.16,20.09,19.89,N/A,N/A +2012,3,30,16,30,101310,100130,99000,96.14,0,6.12,6.53,6.6000000000000005,6.640000000000001,6.69,6.74,7.09,7.48,7.97,185.87,185,184.49,183.89000000000001,183.16,182.37,180.71,178.97,178.41,21.5,21.16,20.990000000000002,20.8,20.62,20.46,20.34,20.25,20.01,N/A,N/A +2012,3,30,17,30,101290,100120,98980,96.08,0,5.64,6.0600000000000005,6.16,6.23,6.3100000000000005,6.4,6.61,6.84,7.29,177.39000000000001,177.56,177.70000000000002,177.89000000000001,178.19,178.56,179.74,181.04,186.06,21.86,21.54,21.37,21.18,21.01,20.84,20.68,20.54,20.330000000000002,N/A,N/A +2012,3,30,18,30,101260,100090,98960,96.54,0,4.68,5,5.07,5.12,5.19,5.26,5.68,6.18,6.6000000000000005,178.52,178.73,178.91,179.15,179.47,179.82,182.41,185.58,189.27,22.27,21.95,21.78,21.59,21.43,21.28,21.14,21.02,20.8,N/A,N/A +2012,3,30,19,30,101250,100080,98950,94.88,0,5.26,5.7,5.8100000000000005,5.87,5.91,5.94,5.97,6,6.08,188.17000000000002,188.64000000000001,188.9,189.21,189.54,189.88,190.33,190.78,192.28,22.62,22.31,22.14,21.95,21.76,21.580000000000002,21.39,21.21,20.87,N/A,N/A +2012,3,30,20,30,101190,100020,98890,92.99,0,5.44,5.88,5.98,6.0200000000000005,6.04,6.05,6.0600000000000005,6.07,6.08,194.76,194.97,195.11,195.27,195.45000000000002,195.65,195.92000000000002,196.19,197.16,22.650000000000002,22.34,22.18,21.98,21.8,21.61,21.42,21.25,20.88,N/A,N/A +2012,3,30,21,30,101150,99980,98850,94,0,6.29,6.86,6.99,7.0600000000000005,7.11,7.140000000000001,7.15,7.17,7.2,195.23000000000002,195.36,195.44,195.52,195.6,195.68,195.8,195.9,196.27,22.57,22.28,22.12,21.93,21.740000000000002,21.56,21.37,21.19,20.82,N/A,N/A +2012,3,30,22,30,101120,99950,98820,95.45,0,6.41,7.140000000000001,7.36,7.54,7.69,7.8100000000000005,7.92,8.02,8.19,198.8,198.97,199.1,199.25,199.4,199.57,199.78,200,200.61,22.44,22.16,22,21.82,21.64,21.46,21.27,21.09,20.72,N/A,N/A +2012,3,30,23,30,101110,99940,98810,95.59,0,6.16,7.11,7.46,7.69,7.890000000000001,8.08,8.27,8.44,8.75,199.47,199.74,199.81,199.77,199.86,200.05,200.38,200.74,201.59,22.27,22.01,21.85,21.66,21.48,21.3,21.12,20.96,20.66,N/A,N/A +2012,3,31,0,30,101110,99940,98810,94.60000000000001,0,7.46,8.23,8.43,8.55,8.63,8.68,8.71,8.73,8.72,200,200.48000000000002,200.72,200.97,201.24,201.51,201.88,202.24,203.59,22.23,21.94,21.78,21.580000000000002,21.38,21.19,20.97,20.78,20.38,N/A,N/A +2012,3,31,1,30,101110,99940,98810,94.4,0,7.57,8.39,8.65,8.89,9.120000000000001,9.34,9.47,9.55,9.93,203.56,202.59,202.12,201.59,201.06,200.52,200.3,200.17000000000002,200.79,22.2,21.92,21.76,21.580000000000002,21.400000000000002,21.23,21.04,20.87,20.63,N/A,N/A +2012,3,31,2,30,101140,99970,98840,94.57000000000001,0,7.68,8.32,8.47,8.57,8.68,8.81,8.99,9.17,9.66,209.21,208.74,208.51,208.24,207.98000000000002,207.73000000000002,207.61,207.54,208.03,22,21.7,21.54,21.36,21.2,21.04,20.91,20.78,20.6,N/A,N/A +2012,3,31,3,30,101180,100010,98880,94.43,0,6.15,6.82,7.1000000000000005,7.46,7.83,8.22,8.6,8.950000000000001,9.56,200.3,200.64000000000001,201.12,201.92000000000002,203.07,204.51,206.03,207.49,210.35,22.11,21.86,21.740000000000002,21.61,21.54,21.490000000000002,21.45,21.41,21.39,N/A,N/A +2012,3,31,4,30,101170,100000,98870,93.73,0,7.140000000000001,7.9,8.1,8.28,8.46,8.66,8.89,9.120000000000001,9.46,208.86,209.52,209.76,210.08,210.39000000000001,210.69,210.77,210.8,210.16,21.900000000000002,21.61,21.44,21.25,21.080000000000002,20.91,20.73,20.57,20.2,N/A,N/A +2012,3,31,5,30,101180,100010,98880,89.53,0,5.84,6.98,7.55,8.14,8.63,9.06,9.41,9.73,10.11,204.91,205.74,206.55,207.89000000000001,209.06,210.12,210.95000000000002,211.67000000000002,212.25,22.330000000000002,22.21,22.16,22.12,22.03,21.92,21.77,21.63,21.26,N/A,N/A +2012,3,31,6,30,101210,100040,98910,87.06,0,6.2700000000000005,7.16,7.53,7.890000000000001,8.2,8.49,8.76,9.01,9.48,201.53,201.86,202.07,202.24,202.71,203.41,204.08,204.71,205.85,22.46,22.23,22.1,21.93,21.77,21.61,21.45,21.3,20.97,N/A,N/A +2012,3,31,7,30,101220,100050,98910,89.41,0,5.78,6.32,6.5,6.73,7.21,7.88,8.26,8.540000000000001,9.07,209.19,209.41,209.58,209.82,210.26,210.86,211.37,211.81,212.82,22.26,21.990000000000002,21.84,21.68,21.54,21.43,21.3,21.19,20.98,N/A,N/A +2012,3,31,8,30,101210,100040,98910,91.23,0,5.45,5.9,6.04,6.19,6.74,7.59,8.07,8.4,9.05,212.21,212.36,212.49,212.70000000000002,213.26,214.11,214.55,214.83,215.32,22.11,21.830000000000002,21.67,21.5,21.38,21.3,21.2,21.1,20.94,N/A,N/A +2012,3,31,9,30,101230,100060,98930,90.28,0,5.08,5.51,5.63,5.7700000000000005,6.22,6.92,7.3500000000000005,7.69,8.26,202.58,202.93,203.23000000000002,203.66,204.75,206.36,207.29,207.96,209.13,22.17,21.89,21.73,21.55,21.43,21.32,21.21,21.11,20.92,N/A,N/A +2012,3,31,10,30,101260,100090,98950,90.7,0,3.97,4.2700000000000005,4.36,4.49,5.0200000000000005,5.9,6.33,6.6000000000000005,7.16,198.91,199.3,199.73000000000002,200.39000000000001,202.54,206.02,207.48000000000002,208.26,209.69,22.150000000000002,21.87,21.71,21.54,21.44,21.39,21.29,21.2,21.05,N/A,N/A +2012,3,31,11,30,101270,100100,98960,91.37,0,4.09,4.43,4.78,5.64,6.2,6.49,6.8,7.08,7.69,206.46,207.08,207.99,209.97,211.14000000000001,211.66,212.13,212.56,213.31,22.12,21.85,21.740000000000002,21.67,21.580000000000002,21.490000000000002,21.400000000000002,21.32,21.17,N/A,N/A +2012,3,31,12,30,101310,100140,99000,91.72,0,3.74,4.03,4.3,4.97,5.42,5.7,5.97,6.22,6.72,204.26,204.61,205.26,206.74,207.73000000000002,208.35,208.98000000000002,209.58,210.82,22.16,21.89,21.76,21.650000000000002,21.54,21.44,21.330000000000002,21.23,21.03,N/A,N/A +2012,3,31,13,30,101340,100170,99040,92.28,0,3.5700000000000003,3.81,4.1,4.8,5.24,5.47,5.7,5.91,6.3100000000000005,193.44,193.95000000000002,195.37,198.59,200.57,201.56,202.59,203.56,205.52,22.14,21.86,21.740000000000002,21.66,21.57,21.45,21.330000000000002,21.22,21.01,N/A,N/A +2012,3,31,14,30,101390,100220,99080,93.03,0,3.15,3.3000000000000003,3.58,4.32,4.8,5.0600000000000005,5.3,5.5200000000000005,5.94,197.92000000000002,198.24,199.24,201.68,203.25,204.1,205.05,205.97,208,22.150000000000002,21.87,21.76,21.71,21.63,21.54,21.43,21.34,21.16,N/A,N/A +2012,3,31,15,30,101380,100210,99070,93.61,0,3.56,3.79,3.97,4.3500000000000005,4.76,5.19,5.44,5.61,5.9,187.39000000000001,188.13,189.23,191.37,193.33,195.19,196.49,197.53,200.06,22.21,21.91,21.77,21.63,21.54,21.47,21.37,21.27,21.11,N/A,N/A +2012,3,31,16,30,101380,100210,99080,93.92,0,3.77,3.99,4.04,4.08,4.18,4.32,4.79,5.3500000000000005,5.8,184,184.49,184.87,185.38,186.28,187.43,190.63,194.4,198.98000000000002,22.32,22,21.84,21.650000000000002,21.48,21.32,21.27,21.25,21.2,N/A,N/A +2012,3,31,17,30,101380,100210,99070,94.21000000000001,0,3.88,4.12,4.17,4.2,4.21,4.21,4.21,4.21,4.29,177.91,178.32,178.59,178.84,179.07,179.3,179.53,179.75,181.4,22.41,22.080000000000002,21.900000000000002,21.71,21.52,21.330000000000002,21.14,20.96,20.62,N/A,N/A +2012,3,31,18,30,101320,100150,99020,93.99,0,5.23,5.58,5.64,5.66,5.68,5.68,5.71,5.73,6,177.61,177.87,178.13,178.46,178.89000000000001,179.37,180.16,180.98,184.95000000000002,22.48,22.150000000000002,21.98,21.79,21.61,21.43,21.26,21.1,20.84,N/A,N/A +2012,3,31,19,30,101290,100130,98990,93.21000000000001,0,5.84,6.3,6.38,6.42,6.45,6.45,6.45,6.45,6.46,174.42000000000002,174.84,175.02,175.19,175.37,175.57,175.85,176.12,177.24,22.48,22.16,21.98,21.79,21.6,21.41,21.22,21.04,20.67,N/A,N/A +2012,3,31,20,30,101280,100110,98980,88.73,0,5.05,5.44,5.53,5.57,5.6000000000000005,5.62,5.66,5.7,5.91,171.05,171.75,172.27,172.86,173.54,174.26,175.28,176.29,179.88,22.6,22.3,22.14,21.95,21.77,21.6,21.42,21.25,20.94,N/A,N/A +2012,3,31,21,30,101250,100080,98950,88.3,0,4.64,5.04,5.14,5.2,5.24,5.28,5.32,5.3500000000000005,5.48,169.84,171.03,171.73,172.51,173.3,174.09,175.08,176.04,178.59,22.63,22.35,22.19,22,21.82,21.64,21.46,21.28,20.93,N/A,N/A +2012,3,31,22,30,101210,100050,98910,90.57000000000001,0,5.25,5.76,5.87,5.95,6.01,6.0600000000000005,6.12,6.18,6.37,176.49,176.35,176.29,176.22,176.18,176.15,176.15,176.16,176.36,22.47,22.18,22.01,21.82,21.64,21.46,21.27,21.1,20.75,N/A,N/A +2012,3,31,23,30,101190,100020,98880,85.79,0,5.19,5.65,5.75,5.83,5.92,6.0200000000000005,6.21,6.4,6.69,170.08,170.58,171.1,171.89000000000001,173.11,174.52,176.73,178.93,182.17000000000002,22.490000000000002,22.25,22.1,21.94,21.79,21.650000000000002,21.51,21.39,21.07,N/A,N/A +2012,4,1,0,30,101170,100000,98870,88.97,0,5.84,6.3500000000000005,6.47,6.57,6.69,6.84,6.95,7.05,7.2,169.14000000000001,169.57,170,170.65,171.66,172.91,174.49,176.02,179.34,22.31,22.06,21.91,21.75,21.6,21.47,21.32,21.18,20.96,N/A,N/A +2012,4,1,1,30,101180,100000,98870,89.78,0,6.4,6.95,7.07,7.140000000000001,7.21,7.29,7.42,7.55,7.84,175.09,174.92000000000002,174.85,174.77,174.69,174.63,174.79,174.97,175.95000000000002,22.23,21.95,21.79,21.61,21.43,21.27,21.12,20.98,20.76,N/A,N/A +2012,4,1,2,30,101180,100010,98880,89.68,0,5.66,6.54,6.95,7.34,7.68,7.98,8.16,8.290000000000001,8.19,173.39000000000001,174.41,175.1,175.96,176.87,177.82,178.68,179.43,181,22.32,22.150000000000002,22.07,21.990000000000002,21.94,21.89,21.81,21.72,21.43,N/A,N/A +2012,4,1,3,30,101180,100010,98880,93.14,0,6.3,6.8500000000000005,6.95,6.99,7.03,7.08,7.17,7.2700000000000005,7.76,177.23,177.28,177.4,177.54,177.77,178.03,178.6,179.20000000000002,181.55,22.1,21.81,21.64,21.45,21.26,21.080000000000002,20.91,20.75,20.6,N/A,N/A +2012,4,1,4,30,101170,100000,98870,94.51,0,6.22,6.7700000000000005,6.91,7.01,7.12,7.23,7.43,7.640000000000001,8.46,175.71,176.06,176.3,176.61,177,177.44,178.26,179.09,182.17000000000002,22.05,21.75,21.580000000000002,21.400000000000002,21.22,21.04,20.87,20.72,20.47,N/A,N/A +2012,4,1,5,30,101150,99970,98840,95.96000000000001,0,5.94,6.48,6.62,6.71,6.79,6.87,6.97,7.0600000000000005,7.46,177.12,177.31,177.42000000000002,177.54,177.70000000000002,177.86,178.08,178.3,179.18,21.85,21.5,21.3,21.09,20.91,20.77,20.61,20.47,20.13,N/A,N/A +2012,4,1,6,30,101140,99970,98830,95.67,0,6.82,7.44,7.59,7.7,7.79,7.87,7.99,8.11,8.5,187.35,186.54,186.13,185.73,185.34,184.97,184.56,184.17000000000002,183.75,21.69,21.35,21.17,20.98,20.82,20.67,20.53,20.41,20.080000000000002,N/A,N/A +2012,4,1,7,30,101160,99980,98850,93.91,0,6.21,6.78,6.93,7.0200000000000005,7.11,7.18,7.28,7.37,7.72,192.75,192.55,192.52,192.49,192.46,192.44,192.4,192.36,192.09,21.77,21.43,21.25,21.05,20.86,20.67,20.47,20.28,19.900000000000002,N/A,N/A +2012,4,1,8,30,101130,99960,98830,93.39,0,5.12,5.57,5.68,5.7700000000000005,5.86,5.95,6.09,6.24,6.91,192.77,193.01,193.15,193.31,193.48000000000002,193.65,193.9,194.14000000000001,194.88,22.02,21.71,21.53,21.34,21.150000000000002,20.96,20.78,20.6,20.27,N/A,N/A +2012,4,1,9,30,101130,99960,98820,94.38,0,4.32,4.66,4.74,4.8,4.84,4.87,4.91,4.95,5.18,183.24,183.27,183.31,183.35,183.41,183.48,183.62,183.76,184.79,22.04,21.72,21.54,21.35,21.150000000000002,20.97,20.76,20.580000000000002,20.27,N/A,N/A +2012,4,1,10,30,101130,99960,98820,93.7,0,4.22,4.57,4.66,4.72,4.7700000000000005,4.82,4.88,4.94,5.24,185.37,185.76,186.01,186.27,186.52,186.77,187.05,187.33,188.19,22.07,21.75,21.580000000000002,21.39,21.2,21.02,20.830000000000002,20.650000000000002,20.26,N/A,N/A +2012,4,1,11,30,101120,99950,98820,93.41,0,4.03,4.3500000000000005,4.42,4.47,4.5200000000000005,4.55,4.6000000000000005,4.65,4.91,177.9,178.33,178.6,178.89000000000001,179.21,179.54,180,180.44,182.28,22.080000000000002,21.77,21.6,21.41,21.22,21.03,20.84,20.650000000000002,20.29,N/A,N/A +2012,4,1,12,30,101150,99980,98850,92.91,0,4.13,4.47,4.55,4.6000000000000005,4.64,4.68,4.76,4.82,5.25,170.52,170.85,171.1,171.39000000000001,171.73,172.08,172.64000000000001,173.20000000000002,175.98,22.13,21.830000000000002,21.66,21.47,21.28,21.1,20.91,20.740000000000002,20.41,N/A,N/A +2012,4,1,13,30,101140,99970,98840,93.02,0,4.05,4.38,4.47,4.55,4.66,4.8,5.07,5.3500000000000005,5.75,169.58,170.04,170.4,170.82,171.37,171.98,172.9,173.84,175.87,22.14,21.84,21.68,21.490000000000002,21.31,21.150000000000002,20.98,20.84,20.54,N/A,N/A +2012,4,1,14,30,101180,100010,98880,93.69,0,4.32,4.7,4.79,4.87,4.97,5.07,5.25,5.42,5.61,168.96,169.28,169.64000000000001,170.13,170.76,171.46,172.3,173.12,174.49,22.26,21.95,21.78,21.59,21.41,21.240000000000002,21.06,20.89,20.54,N/A,N/A +2012,4,1,15,30,101180,100010,98880,89.85000000000001,0,4.19,4.6000000000000005,4.72,4.8,4.88,4.97,5.08,5.2,5.7700000000000005,178.21,178.16,178.11,178.08,178.1,178.16,178.47,178.82,180.08,22.53,22.23,22.07,21.89,21.7,21.53,21.35,21.19,20.88,N/A,N/A +2012,4,1,16,30,101180,100010,98880,90.84,0,4.43,4.8100000000000005,4.91,4.97,5.03,5.07,5.12,5.17,5.4,168.44,168.65,168.78,168.9,169.04,169.18,169.4,169.6,170.58,22.52,22.21,22.04,21.85,21.66,21.48,21.29,21.11,20.75,N/A,N/A +2012,4,1,17,30,101140,99980,98840,90.66,0,4.45,4.8,4.88,4.92,4.95,4.98,5,5.0200000000000005,5.08,170.02,169.67000000000002,169.56,169.46,169.37,169.28,169.20000000000002,169.13,168.96,22.64,22.32,22.150000000000002,21.95,21.76,21.580000000000002,21.38,21.2,20.82,N/A,N/A +2012,4,1,18,30,101120,99960,98830,90.35000000000001,0,4.95,5.3500000000000005,5.43,5.47,5.5,5.53,5.54,5.57,5.66,161.25,161.62,161.89000000000001,162.22,162.57,162.95000000000002,163.48,164,165.74,22.79,22.47,22.3,22.11,21.92,21.740000000000002,21.56,21.38,21.03,N/A,N/A +2012,4,1,19,30,101100,99940,98810,90.33,0,5.23,5.7,5.8100000000000005,5.88,5.94,5.98,6.0200000000000005,6.0600000000000005,6.18,165.88,166.19,166.4,166.64000000000001,166.88,167.11,167.4,167.66,168.35,22.87,22.57,22.400000000000002,22.21,22.02,21.84,21.64,21.47,21.09,N/A,N/A +2012,4,1,20,30,101040,99880,98750,92.21000000000001,0,5.07,5.5,5.59,5.64,5.69,5.72,5.76,5.8100000000000005,6.01,158.18,158.59,158.89000000000001,159.23,159.61,159.99,160.5,160.99,162.55,22.88,22.6,22.43,22.25,22.07,21.89,21.7,21.53,21.2,N/A,N/A +2012,4,1,21,30,100990,99830,98700,90.82000000000001,0,5.76,6.3,6.42,6.5,6.54,6.5600000000000005,6.59,6.6000000000000005,6.62,158.38,158.62,158.77,158.91,159.05,159.19,159.32,159.47,159.81,22.990000000000002,22.71,22.55,22.36,22.18,22,21.81,21.63,21.26,N/A,N/A +2012,4,1,22,30,100960,99800,98670,92.71000000000001,0,5.7,6.3,6.47,6.57,6.66,6.73,6.78,6.84,6.92,153.02,153.20000000000002,153.32,153.46,153.57,153.67000000000002,153.76,153.86,154.13,22.81,22.55,22.39,22.21,22.02,21.85,21.650000000000002,21.48,21.11,N/A,N/A +2012,4,1,23,30,100930,99770,98640,94.37,0,5.29,5.93,6.140000000000001,6.32,6.48,6.62,6.7700000000000005,6.91,7.21,146.47,146.97,147.3,147.68,148.05,148.43,148.87,149.29,150.33,22.66,22.400000000000002,22.25,22.080000000000002,21.900000000000002,21.72,21.54,21.36,21,N/A,N/A +2012,4,2,0,30,100900,99730,98610,94.3,0,4.87,5.59,5.87,6.16,6.44,6.71,6.99,7.2700000000000005,7.76,157.70000000000002,158.33,158.79,159.3,159.76,160.19,160.56,160.89000000000001,161.18,22.72,22.48,22.35,22.2,22.05,21.900000000000002,21.740000000000002,21.59,21.26,N/A,N/A +2012,4,2,1,30,100880,99720,98590,92.67,0,6.49,7.33,7.59,7.8,7.98,8.120000000000001,8.24,8.34,8.49,148.58,148.85,149.14000000000001,149.51,149.93,150.37,150.93,151.47,152.86,22.75,22.51,22.36,22.18,22.01,21.84,21.66,21.5,21.150000000000002,N/A,N/A +2012,4,2,2,30,100880,99720,98590,94.12,0,6.51,7.390000000000001,7.69,7.95,8.19,8.4,8.620000000000001,8.82,9.25,142.93,143.95000000000002,144.61,145.33,146.08,146.82,147.67000000000002,148.47,150.31,22.72,22.48,22.34,22.18,22.02,21.86,21.7,21.55,21.25,N/A,N/A +2012,4,2,3,30,100870,99710,98580,93.93,0,6.41,7.28,7.58,7.8500000000000005,8.09,8.32,8.56,8.78,9.3,148.24,148.37,148.48,148.64000000000001,148.85,149.1,149.48,149.87,151.25,22.69,22.45,22.31,22.150000000000002,22,21.85,21.7,21.57,21.3,N/A,N/A +2012,4,2,4,30,100830,99660,98540,95.42,0,6.69,7.6000000000000005,7.930000000000001,8.2,8.44,8.66,8.89,9.1,9.65,149.46,149.99,150.43,150.9,151.4,151.89000000000001,152.46,153,154.49,22.53,22.27,22.11,21.93,21.75,21.57,21.39,21.22,20.900000000000002,N/A,N/A +2012,4,2,5,30,100780,99610,98490,94.39,0,6.66,7.58,7.890000000000001,8.14,8.35,8.53,8.69,8.84,9.23,146.59,146.11,145.86,145.62,145.4,145.22,145.08,144.96,145.28,22.62,22.36,22.2,22.02,21.84,21.66,21.47,21.29,21.01,N/A,N/A +2012,4,2,6,30,100810,99650,98520,93.43,0,6.55,7.36,7.640000000000001,7.87,8.09,8.290000000000001,8.49,8.68,9.13,149.43,149.68,149.87,150.12,150.38,150.65,150.96,151.25,151.93,22.66,22.41,22.27,22.09,21.92,21.75,21.57,21.41,21.07,N/A,N/A +2012,4,2,7,30,100780,99620,98490,94.32000000000001,0,6.78,7.62,7.890000000000001,8.11,8.290000000000001,8.45,8.6,8.73,9.05,158.12,158.5,158.77,158.97,159.16,159.35,159.51,159.66,160.01,22.64,22.36,22.2,22.02,21.830000000000002,21.66,21.46,21.28,20.93,N/A,N/A +2012,4,2,8,30,100750,99580,98460,91.85000000000001,0,8.58,9.78,10.18,10.5,10.77,11,11.19,11.36,11.64,161.48,162.18,162.61,163.06,163.45000000000002,163.82,164.15,164.44,164.9,22.84,22.62,22.48,22.32,22.150000000000002,22,21.830000000000002,21.67,21.330000000000002,N/A,N/A +2012,4,2,9,30,100810,99640,98500,87.28,0,12.61,13.86,14.17,14.35,14.48,14.58,14.67,14.76,15.040000000000001,179.86,179.99,180,180.03,180.06,180.09,180.14000000000001,180.19,180.38,20.75,20.32,20.13,19.93,19.75,19.57,19.39,19.22,18.900000000000002,N/A,N/A +2012,4,2,10,30,100650,99480,98350,79.23,0,7.36,7.96,8.11,8.25,8.56,8.93,9.53,10.1,10.72,179.57,179.26,179.03,178.72,178.06,177.28,175.72,174.13,170.93,21.92,21.61,21.47,21.32,21.240000000000002,21.19,21.28,21.39,21.66,N/A,N/A +2012,4,2,11,30,100690,99520,98390,80.02,0,8.91,9.700000000000001,9.93,10.19,10.51,10.88,11.35,11.82,12.69,211.56,211.33,211.03,210.56,209.98000000000002,209.35,208.59,207.84,206.38,22.44,22.17,22.04,21.89,21.78,21.68,21.64,21.62,21.63,N/A,N/A +2012,4,2,12,30,100750,99580,98450,83.79,21.6,9.59,10.4,10.58,10.67,10.76,10.84,10.93,11,10.65,163.93,163.65,163.64000000000001,163.66,163.84,164.12,164.93,165.82,169.35,21.68,21.36,21.2,21.04,20.91,20.79,20.72,20.67,20.62,N/A,N/A +2012,4,2,13,30,100750,99590,98460,83.07000000000001,0,7.48,8.08,8.22,8.28,8.34,8.39,8.51,8.63,9.120000000000001,152.52,152.43,152.35,152.27,152.20000000000002,152.14000000000001,152.17000000000002,152.21,153.42000000000002,22.080000000000002,21.77,21.61,21.43,21.26,21.09,20.94,20.8,20.59,N/A,N/A +2012,4,2,14,30,100780,99610,98480,81.73,0,8.620000000000001,9.41,9.55,9.620000000000001,9.65,9.67,9.68,9.69,9.83,147.02,147.07,147.11,147.16,147.23,147.31,147.44,147.57,148.31,22.32,22.02,21.85,21.66,21.47,21.3,21.11,20.93,20.6,N/A,N/A +2012,4,2,15,30,100780,99620,98490,84.21000000000001,0,7.98,8.73,9.01,9.36,9.89,10.55,10.93,11.22,11.700000000000001,151.46,152.29,153.20000000000002,154.67000000000002,157.26,160.62,162.77,164.46,167.72,22.56,22.32,22.19,22.07,22,21.97,21.92,21.87,21.72,N/A,N/A +2012,4,2,16,30,100820,99660,98530,84.36,0,8.75,9.57,9.73,9.81,9.86,9.89,10.08,10.290000000000001,10.73,137.6,137.66,137.93,138.31,138.78,139.33,141.28,143.48,149.19,22.48,22.2,22.05,21.86,21.7,21.53,21.400000000000002,21.29,21.150000000000002,N/A,N/A +2012,4,2,17,30,100820,99650,98520,87.16,0,10.21,11.14,11.33,11.4,11.44,11.450000000000001,11.43,11.42,11.36,114.12,114.16,114.27,114.38,114.51,114.64,114.82000000000001,114.99000000000001,115.57000000000001,21.56,21.19,21.01,20.81,20.62,20.44,20.25,20.07,19.71,N/A,N/A +2012,4,2,18,30,100830,99660,98530,83.93,0,8.35,9.07,9.23,9.3,9.34,9.370000000000001,9.4,9.42,9.59,124.78,125.19,125.48,125.82000000000001,126.2,126.60000000000001,127.19,127.75,130.24,21.94,21.62,21.45,21.26,21.080000000000002,20.900000000000002,20.72,20.56,20.25,N/A,N/A +2012,4,2,19,30,100840,99670,98540,84.31,0,8.19,8.94,9.11,9.200000000000001,9.26,9.31,9.36,9.41,10.11,128.03,128.72,128.81,128.96,129.16,129.4,129.74,130.07,133.22,22.13,21.81,21.650000000000002,21.46,21.28,21.1,20.93,20.76,20.57,N/A,N/A +2012,4,2,20,30,100760,99600,98470,84.17,0,8.72,9.49,9.65,9.75,9.94,10.17,10.73,11.34,11.86,111.16,111.57000000000001,112.06,112.73,113.92,115.4,118.41,121.61,125.28,22.31,22.02,21.86,21.69,21.54,21.41,21.36,21.330000000000002,21.28,N/A,N/A +2012,4,2,21,30,100720,99560,98430,89.55,0,9.35,10.22,10.42,10.57,10.82,11.13,11.75,12.4,12.99,115.8,116.22,116.58,117.08,117.9,118.9,122.05,125.53,129.34,22.34,22.04,21.89,21.71,21.54,21.39,21.330000000000002,21.29,21.22,N/A,N/A +2012,4,2,22,30,100690,99520,98400,90.4,0,8.74,9.59,9.81,10,10.39,10.9,11.290000000000001,11.620000000000001,12.01,116.32000000000001,116.75,117.13,117.72,118.78,120.17,122.74000000000001,125.45,129.42000000000002,22.45,22.17,22.01,21.84,21.69,21.57,21.48,21.42,21.34,N/A,N/A +2012,4,2,23,30,100670,99500,98380,92.57000000000001,0,7.930000000000001,9.09,9.540000000000001,9.96,10.32,10.620000000000001,10.89,11.120000000000001,11.55,122.68,124.12,125.25,126.78,128.41,130.09,131.84,133.48,136.81,22.76,22.57,22.48,22.38,22.29,22.2,22.080000000000002,21.96,21.64,N/A,N/A +2012,4,3,0,30,100670,99510,98390,96.88,0,8.620000000000001,9.82,10.24,10.58,10.89,11.17,11.44,11.68,12.19,127.2,127.46000000000001,127.65,127.88000000000001,128.14000000000001,128.42000000000002,128.78,129.13,130.01,22.89,22.66,22.52,22.35,22.22,22.12,22.04,21.97,21.84,N/A,N/A +2012,4,3,1,30,100670,99510,98390,94.54,0,9.42,10.77,11.24,11.66,12,12.3,12.58,12.84,13.31,137.47,136.83,136.65,136.54,136.6,136.78,137.29,137.89000000000001,140.45000000000002,23.3,23.13,23.02,22.87,22.73,22.59,22.45,22.32,22.06,N/A,N/A +2012,4,3,2,30,100680,99530,98400,95.18,0,7.65,8.8,9.16,9.46,9.700000000000001,9.91,10.1,10.26,10.64,135.39000000000001,135.46,135.62,135.84,136.15,136.49,137.03,137.58,139.66,23.2,23.05,22.95,22.82,22.69,22.55,22.400000000000002,22.26,21.96,N/A,N/A +2012,4,3,3,30,100700,99540,98420,94.60000000000001,0.4,8.620000000000001,10.03,10.58,11.1,11.52,11.89,12.13,12.3,12.16,133.1,133.87,134.52,135.41,136.39000000000001,137.48,138.77,140.04,143.33,23.17,22.98,22.86,22.69,22.52,22.34,22.150000000000002,21.97,21.64,N/A,N/A +2012,4,3,4,30,100710,99550,98430,95.81,0,7.33,8.46,8.870000000000001,9.25,9.6,9.94,10.28,10.6,11.290000000000001,143.6,144.07,144.38,144.79,145.26,145.78,146.41,147.03,148.55,22.97,22.76,22.62,22.47,22.32,22.17,22.01,21.87,21.57,N/A,N/A +2012,4,3,5,30,100730,99570,98450,94.94,0,6.68,7.74,8.15,8.540000000000001,8.9,9.25,9.61,9.94,10.65,147.94,148.27,148.52,148.83,149.15,149.49,149.87,150.25,151.17000000000002,22.92,22.71,22.580000000000002,22.42,22.27,22.12,21.97,21.830000000000002,21.53,N/A,N/A +2012,4,3,6,30,100800,99640,98510,93.47,0,7.04,8.01,8.370000000000001,8.700000000000001,8.99,9.27,9.56,9.83,10.41,149.22,149.48,149.67000000000002,149.89000000000001,150.12,150.34,150.6,150.85,151.46,23.080000000000002,22.85,22.71,22.55,22.39,22.23,22.06,21.91,21.6,N/A,N/A +2012,4,3,7,30,100810,99650,98520,91.78,0,7.67,8.74,9.120000000000001,9.47,9.78,10.08,10.39,10.67,11.3,155.53,155.67000000000002,155.77,155.88,155.99,156.11,156.25,156.39000000000001,156.75,23.18,22.96,22.82,22.66,22.51,22.35,22.19,22.04,21.73,N/A,N/A +2012,4,3,8,30,100810,99650,98530,90.31,0,7.84,8.94,9.32,9.67,9.98,10.27,10.57,10.85,11.46,151.62,151.84,152.02,152.23,152.45000000000002,152.68,152.95000000000002,153.21,153.88,23.22,23.02,22.88,22.72,22.57,22.41,22.26,22.11,21.81,N/A,N/A +2012,4,3,9,30,100850,99690,98560,88.85000000000001,0,7.86,8.97,9.370000000000001,9.72,10.040000000000001,10.34,10.63,10.91,11.48,148.36,148.64000000000001,148.86,149.11,149.36,149.63,149.92000000000002,150.20000000000002,150.86,23.27,23.07,22.95,22.79,22.63,22.48,22.32,22.17,21.86,N/A,N/A +2012,4,3,10,30,100820,99660,98540,86.85000000000001,0,8.27,9.46,9.870000000000001,10.25,10.58,10.89,11.21,11.51,12.15,149.89000000000001,150.11,150.32,150.57,150.84,151.11,151.43,151.74,152.47,23.34,23.150000000000002,23.02,22.87,22.73,22.580000000000002,22.43,22.29,22,N/A,N/A +2012,4,3,11,30,100860,99700,98580,86.06,0,8.41,9.61,10.05,10.44,10.790000000000001,11.1,11.43,11.73,12.38,145.83,146.34,146.65,147.02,147.39000000000001,147.76,148.18,148.59,149.53,23.37,23.19,23.07,22.92,22.77,22.62,22.48,22.330000000000002,22.04,N/A,N/A +2012,4,3,12,30,100880,99720,98590,85.17,0,7.9,9.05,9.450000000000001,9.81,10.13,10.43,10.74,11.040000000000001,11.69,145.56,145.96,146.24,146.6,146.99,147.4,147.89000000000001,148.36,149.52,23.38,23.21,23.09,22.95,22.8,22.66,22.52,22.39,22.12,N/A,N/A +2012,4,3,13,30,100920,99760,98640,83.62,0,9.02,10.27,10.71,11.08,11.42,11.73,12.05,12.34,12.99,147.51,147.81,147.97,148.18,148.4,148.64000000000001,148.94,149.23,149.97,23.46,23.3,23.19,23.05,22.91,22.77,22.62,22.490000000000002,22.23,N/A,N/A +2012,4,3,14,30,100930,99770,98650,83.67,0,8.91,10.16,10.59,10.97,11.31,11.63,11.950000000000001,12.25,12.93,144.36,144.81,145.13,145.5,145.9,146.3,146.77,147.22,148.31,23.51,23.35,23.240000000000002,23.1,22.96,22.830000000000002,22.69,22.57,22.330000000000002,N/A,N/A +2012,4,3,15,30,100990,99830,98710,84.02,0,8.01,9.16,9.59,9.96,10.290000000000001,10.6,10.91,11.19,11.8,142.68,143.22,143.58,144.01,144.46,144.94,145.49,146.03,147.4,23.56,23.39,23.27,23.13,22.98,22.84,22.69,22.56,22.3,N/A,N/A +2012,4,3,16,30,101020,99850,98730,84.7,0,7.7700000000000005,8.85,9.24,9.6,9.91,10.21,10.53,10.82,11.51,138.46,138.98,139.35,139.82,140.33,140.88,141.55,142.22,144,23.56,23.39,23.27,23.13,22.990000000000002,22.85,22.71,22.59,22.36,N/A,N/A +2012,4,3,17,30,101000,99840,98710,85.79,0,8.120000000000001,9.24,9.620000000000001,9.96,10.27,10.55,10.83,11.1,11.67,147.47,147.62,147.74,147.88,148.03,148.20000000000002,148.41,148.62,149.19,23.54,23.35,23.22,23.06,22.91,22.76,22.6,22.45,22.14,N/A,N/A +2012,4,3,18,30,101040,99880,98760,86.94,0,6.11,6.91,7.21,7.46,7.7,7.930000000000001,8.16,8.39,8.88,142.54,143.04,143.36,143.73,144.13,144.53,144.99,145.43,146.48,23.54,23.32,23.18,23.02,22.86,22.7,22.53,22.38,22.06,N/A,N/A +2012,4,3,19,30,101030,99870,98750,89.66,0,6.19,6.91,7.23,7.66,7.95,8.16,8.42,8.69,9.26,141.91,142.6,143.26,144.3,145.13,145.82,146.69,147.56,149.44,23.47,23.22,23.080000000000002,22.92,22.75,22.57,22.400000000000002,22.25,21.94,N/A,N/A +2012,4,3,20,30,101040,99880,98760,91.01,0,5.2,6.05,6.390000000000001,6.640000000000001,6.88,7.11,7.36,7.59,8.1,131.99,133.8,135.15,136.73,138.04,139.18,140.35,141.47,143.81,23.48,23.23,23.07,22.89,22.72,22.55,22.37,22.21,21.87,N/A,N/A +2012,4,3,21,30,100960,99800,98680,92.25,0,5.99,6.82,7.11,7.36,7.59,7.8,8.02,8.22,8.66,130.6,131.25,131.71,132.31,132.98,133.67000000000002,134.53,135.38,137.56,23.38,23.16,23.03,22.87,22.7,22.55,22.38,22.22,21.900000000000002,N/A,N/A +2012,4,3,22,30,100880,99730,98600,93.08,0,7.3,8.35,8.72,9.06,9.370000000000001,9.66,9.94,10.21,10.73,130.99,131.83,132.39000000000001,133.16,134.05,135.03,136.19,137.32,140,23.400000000000002,23.21,23.09,22.95,22.8,22.66,22.51,22.37,22.05,N/A,N/A +2012,4,3,23,30,100900,99740,98620,94.10000000000001,0,6.28,7.2700000000000005,7.640000000000001,7.98,8.290000000000001,8.59,8.88,9.16,9.78,130.8,131.64000000000001,132.26,133.05,133.92000000000002,134.86,136.03,137.20000000000002,140.65,23.330000000000002,23.12,22.990000000000002,22.84,22.69,22.55,22.400000000000002,22.27,22.02,N/A,N/A +2012,4,4,0,30,100890,99730,98600,95.27,0.4,5.98,6.92,7.28,7.640000000000001,7.99,8.32,8.69,9.06,10,127.97,129.21,130.19,131.55,133.14000000000001,134.88,137.07,139.28,145.74,23.29,23.09,22.97,22.830000000000002,22.7,22.57,22.45,22.35,22.19,N/A,N/A +2012,4,4,1,30,100900,99730,98610,96.31,0.4,6.59,7.6000000000000005,7.98,8.36,8.73,9.1,9.49,9.85,10.71,128.12,129.08,129.88,131.04,132.77,134.84,138.66,142.74,156.05,23.25,23.05,22.95,22.830000000000002,22.73,22.64,22.59,22.56,22.62,N/A,N/A +2012,4,4,2,30,100960,99800,98680,97.16,0.4,6.11,7.17,7.61,8.01,8.370000000000001,8.700000000000001,8.98,9.23,9.65,142.99,144.1,144.93,145.96,147.07,148.26,149.73,151.18,156.01,23.26,23.09,22.98,22.86,22.740000000000002,22.63,22.51,22.39,22.23,N/A,N/A +2012,4,4,3,30,100960,99800,98680,96.38,0,6.68,7.78,8.21,8.64,9,9.33,9.55,9.73,9.91,149.5,149.74,150.12,150.81,151.96,153.45000000000002,156.31,159.38,168.79,23.32,23.16,23.06,22.95,22.86,22.78,22.75,22.740000000000002,22.95,N/A,N/A +2012,4,4,4,30,101010,99850,98730,97.24000000000001,0,4.96,5.8100000000000005,6.15,6.49,6.8100000000000005,7.12,7.46,7.8,7.890000000000001,137.78,138.82,139.8,141.21,143.22,145.74,150.02,154.73,163.8,23.22,23.01,22.89,22.740000000000002,22.61,22.490000000000002,22.35,22.22,22.080000000000002,N/A,N/A +2012,4,4,5,30,101040,99880,98760,97.72,0,4.3100000000000005,5.05,5.3500000000000005,5.65,5.93,6.2,6.46,6.7,7.43,141.23,141.85,142.42000000000002,143.34,144.77,146.59,150.12,153.93,164.26,23.14,22.91,22.78,22.64,22.54,22.47,22.37,22.27,22.11,N/A,N/A +2012,4,4,6,30,101070,99910,98780,97.8,0,4.69,5.47,5.78,6.09,6.390000000000001,6.7,7.1000000000000005,7.54,8.38,143.44,144.94,146.16,147.93,149.89000000000001,152.09,155.01,158.14000000000001,166.07,23.13,22.93,22.81,22.67,22.54,22.42,22.240000000000002,22.06,22.3,N/A,N/A +2012,4,4,7,30,101030,99870,98740,98.29,0,4.96,5.76,6.12,6.53,7,7.53,8.09,8.64,9,152.28,153.6,154.64000000000001,156.11,158,160.3,163.24,166.36,170.23,22.94,22.68,22.54,22.39,22.26,22.150000000000002,22.28,22.490000000000002,22.69,N/A,N/A +2012,4,4,8,30,101030,99870,98750,96.88,0,5.16,6.04,6.44,6.9,7.390000000000001,7.91,8.08,8.15,7.8100000000000005,151.51,152.65,153.8,155.64000000000001,158.3,161.51,163.8,165.62,166.17000000000002,23.02,22.82,22.73,22.650000000000002,22.66,22.73,22.87,23.03,23.09,N/A,N/A +2012,4,4,9,30,101030,99860,98740,97.98,0,3.95,4.6000000000000005,4.9,5.22,5.75,6.43,7.07,7.67,7.96,150.82,151.34,151.89000000000001,152.76,155.85,160.61,164.17000000000002,167.23,169.1,22.86,22.62,22.490000000000002,22.37,22.35,22.400000000000002,22.63,22.89,23.080000000000002,N/A,N/A +2012,4,4,10,30,101070,99910,98790,97.38,0,2.84,3.5500000000000003,3.92,4.44,4.91,5.3500000000000005,5.68,5.94,6.2,142.82,145.84,148.66,153.13,158.06,163.45000000000002,166.69,169.01,173.51,22.990000000000002,22.830000000000002,22.75,22.71,22.68,22.66,22.75,22.87,22.990000000000002,N/A,N/A +2012,4,4,11,30,101060,99890,98770,98.79,0.4,3.46,3.98,4.21,4.49,4.8500000000000005,5.29,5.62,5.91,6.19,143.5,144.70000000000002,145.73,147.4,150.53,154.81,157.48,159.56,161.86,22.82,22.59,22.48,22.39,22.51,22.77,22.97,23.13,23.080000000000002,N/A,N/A +2012,4,4,12,30,101080,99910,98780,97.29,0,5.5600000000000005,5.78,5.53,4.98,4.7,4.5600000000000005,4.57,4.63,4.97,73.81,75.15,80.26,90.91,100.18,108.8,117.37,125.33,137.66,22.13,21.8,21.7,21.68,21.68,21.68,21.68,21.68,21.6,N/A,N/A +2012,4,4,13,30,101110,99940,98810,96.43,0,6.07,6.2700000000000005,6.12,5.8,5.58,5.4,5.29,5.21,5.25,88.23,89.97,92.82000000000001,98.06,103.21000000000001,108.28,113.33,117.88,127.46000000000001,22.2,21.92,21.84,21.85,21.84,21.830000000000002,21.78,21.72,21.61,N/A,N/A +2012,4,4,14,30,101150,99980,98850,96.21000000000001,2.2,5.46,5.58,5.37,4.9,4.63,4.48,4.38,4.3100000000000005,4.39,92.18,93.11,96.89,106.42,113.28,118.7,124.54,130.04,140.24,22.34,22.07,21.97,21.95,21.900000000000002,21.85,21.79,21.740000000000002,21.59,N/A,N/A +2012,4,4,15,30,101140,99980,98850,96.95,0,3.91,3.95,3.89,3.88,3.9,3.95,4.0600000000000005,4.17,4.57,97.2,105.64,111.4,118.35000000000001,124.76,130.92000000000002,136.67000000000002,141.98,150.12,22.63,22.42,22.330000000000002,22.23,22.13,22.03,21.93,21.84,21.650000000000002,N/A,N/A +2012,4,4,16,30,101110,99950,98820,97.31,0,3.56,3.69,3.71,3.77,3.86,3.97,4.11,4.24,4.6000000000000005,113.06,117.69,124.32000000000001,137,145.53,151.53,155.15,157.94,161.6,22.79,22.51,22.37,22.25,22.150000000000002,22.07,21.96,21.85,21.580000000000002,N/A,N/A +2012,4,4,17,30,101110,99950,98820,97.15,0,2.66,2.99,3.1,3.19,3.3200000000000003,3.5,3.69,3.87,4.05,137.21,142.68,145.75,148.68,152.06,155.98,159.14000000000001,161.89000000000001,163.55,23.06,22.78,22.62,22.45,22.32,22.22,22.080000000000002,21.93,21.72,N/A,N/A +2012,4,4,18,30,101090,99930,98800,94.25,0,3.68,4.01,4.09,4.14,4.18,4.21,4.23,4.26,4.36,150.91,151.42000000000002,151.71,152.01,152.3,152.6,152.97,153.34,154.57,23.29,23.03,22.87,22.68,22.5,22.31,22.12,21.95,21.59,N/A,N/A +2012,4,4,19,30,101070,99900,98780,93.01,0,3.25,3.5500000000000003,3.63,3.68,3.73,3.7800000000000002,3.84,3.9,4.08,154.19,154.25,154.35,154.39000000000001,154.42000000000002,154.43,154.4,154.36,154.26,23.35,23.09,22.93,22.740000000000002,22.56,22.38,22.19,22.02,21.66,N/A,N/A +2012,4,4,20,30,100970,99810,98690,92.22,0,3.88,4.2,4.2700000000000005,4.3100000000000005,4.34,4.36,4.38,4.4,4.46,147.19,147.55,147.78,147.98,148.19,148.39000000000001,148.63,148.88,149.63,23.43,23.14,22.98,22.79,22.61,22.43,22.240000000000002,22.06,21.69,N/A,N/A +2012,4,4,21,30,100890,99730,98600,94.10000000000001,0,4.21,4.5200000000000005,4.5600000000000005,4.5600000000000005,4.54,4.51,4.47,4.43,4.39,133.78,133.78,133.96,134.07,134.13,134.14000000000001,134.07,133.98,133.61,23.31,23.03,22.87,22.68,22.5,22.32,22.14,21.97,21.63,N/A,N/A +2012,4,4,22,30,100980,99830,98700,95.42,2.9000000000000004,3.71,4.19,4.39,4.57,4.72,4.8500000000000005,4.96,5.04,5.14,92.11,94.49,95.91,97.51,98.89,100.19,101.35000000000001,102.4,104.99000000000001,23.13,22.900000000000002,22.77,22.580000000000002,22.41,22.240000000000002,22.06,21.89,21.61,N/A,N/A +2012,4,4,23,30,101000,99820,98680,89.08,19.400000000000002,9.700000000000001,10.43,10.540000000000001,10.59,10.58,10.56,10.52,10.47,10.39,338.67,337.62,337.59000000000003,337.53000000000003,337.47,337.41,337.31,337.22,336.72,20.05,19.59,19.39,19.19,19,18.82,18.64,18.47,18.12,N/A,N/A +2012,4,5,0,30,100790,99620,98500,84.01,103.30000000000001,3.66,4.34,4.74,5.24,5.5,5.61,5.5,5.36,4.69,41.59,36.65,33.21,31.59,31.11,31.27,32.04,32.83,35.27,20.35,21.06,21.73,22.68,23.32,23.78,24.07,24.310000000000002,24.53,N/A,N/A +2012,4,5,1,30,100750,99580,98460,83.45,0,1.55,1.46,1.29,1.07,1.1400000000000001,1.46,1.87,2.34,3.3000000000000003,190.14000000000001,198.96,199.89000000000001,193.62,181.64000000000001,160.15,149.69,143.64000000000001,138.17000000000002,21.2,21.32,21.650000000000002,22.39,22.830000000000002,23.05,23.1,23.09,23.07,N/A,N/A +2012,4,5,2,30,100820,99650,98530,85.66,0,3.2,3.29,3.35,3.59,3.83,4.07,4.34,4.6000000000000005,5.14,238.36,234.21,228.11,214.12,204.73000000000002,198.42000000000002,193.51,189.25,183.66,21.830000000000002,21.62,21.68,22.04,22.27,22.43,22.45,22.43,22.23,N/A,N/A +2012,4,5,3,30,100810,99640,98520,91.53,0,5.79,6.51,6.74,6.99,7.13,7.21,7.17,7.12,6.87,211.95000000000002,209.49,207.46,204.82,202.43,200.28,199.09,198.22,198.13,22.06,21.91,21.94,22.07,22.21,22.34,22.41,22.46,22.38,N/A,N/A +2012,4,5,4,30,100870,99700,98580,88.37,0,2.29,2.45,2.68,3.2,3.58,3.86,4.13,4.37,4.83,184.14000000000001,183.18,182.53,181.43,180.82,180.58,180.67000000000002,180.85,181.88,22.22,21.96,21.89,21.89,21.87,21.85,21.79,21.740000000000002,21.56,N/A,N/A +2012,4,5,5,30,100890,99720,98590,88.10000000000001,0,1.59,1.6,1.59,1.62,1.72,1.8800000000000001,2.04,2.2,2.59,88.42,91.89,97.89,112.82000000000001,124.62,135.08,143.06,149.85,160.49,22.26,21.98,21.85,21.75,21.650000000000002,21.55,21.44,21.34,21.13,N/A,N/A +2012,4,5,6,30,100930,99760,98630,87.82000000000001,0,2.33,2.4,2.38,2.33,2.15,1.87,1.67,1.51,1.56,69.34,69.52,69.63,69.8,74.58,82.34,98.48,115.3,138.94,22.39,22.09,21.92,21.73,21.56,21.400000000000002,21.27,21.150000000000002,20.93,N/A,N/A +2012,4,5,7,30,100960,99790,98660,87.97,0,2.34,2.41,2.4,2.35,2.2800000000000002,2.19,1.97,1.76,1.87,104.44,104.87,105.21000000000001,105.93,107.08,108.56,116.34,124.74000000000001,166.45000000000002,22.52,22.22,22.06,21.86,21.68,21.490000000000002,21.32,21.150000000000002,20.91,N/A,N/A +2012,4,5,8,30,100940,99770,98640,89.69,0,2.6,2.67,2.64,2.58,2.48,2.35,2.38,2.46,2.69,133.86,134.75,135.65,137.26,142.19,149.56,161.69,175.24,185.91,22.53,22.23,22.06,21.87,21.7,21.53,21.38,21.25,21.02,N/A,N/A +2012,4,5,9,30,100910,99750,98620,91.29,0,2.33,2.42,2.47,2.6,2.85,3.2,3.41,3.5500000000000003,3.84,181.59,183.63,185.98,191.01,196.79,203.65,206.74,208.20000000000002,211.6,22.41,22.12,21.97,21.82,21.71,21.650000000000002,21.56,21.47,21.28,N/A,N/A +2012,4,5,10,30,100910,99740,98620,93.69,0,3.5,3.72,3.83,4.0600000000000005,4.4,4.86,5.11,5.25,5.45,206.99,207.89000000000001,208.8,210.63,212.98000000000002,216.01,217.66,218.67000000000002,220.18,22.38,22.09,21.94,21.79,21.69,21.64,21.56,21.47,21.25,N/A,N/A +2012,4,5,11,30,100910,99750,98620,94.03,0,5.16,5.55,5.65,5.7,5.75,5.79,5.86,5.95,6.390000000000001,214.92000000000002,215.37,215.62,215.9,216.14000000000001,216.35,216.83,217.39000000000001,217.78,22.43,22.12,21.95,21.75,21.57,21.39,21.2,21.03,20.75,N/A,N/A +2012,4,5,12,30,100930,99760,98630,94.71000000000001,0,6.140000000000001,6.51,6.5600000000000005,6.55,6.5200000000000005,6.49,6.45,6.4,6.32,224.21,224.08,223.93,223.74,223.56,223.39000000000001,223.21,223.05,222.88,22.07,21.7,21.51,21.29,21.07,20.85,20.67,20.5,20.2,N/A,N/A +2012,4,5,13,30,100950,99790,98650,97.96000000000001,0,6.7700000000000005,7.21,7.2700000000000005,7.26,7.24,7.2,7.17,7.15,7.2,228.01,227.75,227.45000000000002,227.02,226.53,225.99,225.23000000000002,224.46,222.20000000000002,21.55,21.12,20.93,20.8,20.68,20.56,20.42,20.3,20.01,N/A,N/A +2012,4,5,14,30,101040,99880,98750,95.64,0,4.75,4.97,4.99,4.97,4.95,4.92,4.88,4.83,4.82,246.56,247.35,248.05,248.97,250.01000000000002,251.16,252.93,254.79,259.04,21.97,21.64,21.47,21.28,21.09,20.91,20.77,20.650000000000002,20.45,N/A,N/A +2012,4,5,15,30,101070,99900,98770,93.08,2.6,5.26,5.51,5.53,5.51,5.53,5.59,5.64,5.7,5.82,295.34000000000003,295.23,294.82,294.09000000000003,292.68,290.67,287.81,284.76,279.34000000000003,22.39,22.080000000000002,21.93,21.76,21.62,21.5,21.42,21.35,21.1,N/A,N/A +2012,4,5,16,30,101090,99920,98790,93.23,2.2,5.61,5.96,6.0200000000000005,6.03,6.03,6.01,5.99,5.97,5.95,316.08,315.68,315.41,315.07,314.69,314.27,313.68,313.08,310.25,21.92,21.57,21.39,21.2,21.01,20.830000000000002,20.64,20.47,20.14,N/A,N/A +2012,4,5,17,30,101100,99930,98790,92.93,0,5.61,5.93,5.98,5.98,5.96,5.94,5.9,5.87,5.8,322.72,322.5,322.28000000000003,321.96,321.59000000000003,321.16,320.5,319.82,316.73,21.94,21.59,21.42,21.22,21.03,20.85,20.67,20.5,20.17,N/A,N/A +2012,4,5,18,30,101090,99930,98800,90.64,0,4.09,4.3100000000000005,4.36,4.37,4.38,4.39,4.39,4.39,4.41,321.54,320.12,319.08,317.95,316.87,315.78000000000003,314.58,313.43,310.7,22.32,21.990000000000002,21.82,21.63,21.44,21.26,21.07,20.900000000000002,20.54,N/A,N/A +2012,4,5,19,30,101090,99930,98800,88.83,0,1.68,1.84,1.9100000000000001,1.98,2.05,2.12,2.21,2.3000000000000003,2.6,327.53000000000003,327.3,327.2,327.09000000000003,326.97,326.86,326.71,326.55,325.74,22.66,22.35,22.18,21.98,21.79,21.61,21.42,21.25,20.89,N/A,N/A +2012,4,5,20,30,101060,99890,98760,85.79,0,1.27,1.33,1.36,1.37,1.3800000000000001,1.3900000000000001,1.41,1.42,1.45,0.64,359.57,358.87,358.18,357.54,356.89,356.18,355.5,353.88,23.02,22.71,22.54,22.34,22.150000000000002,21.96,21.77,21.580000000000002,21.2,N/A,N/A +2012,4,5,21,30,101000,99840,98710,84.54,0,2.88,3.09,3.21,3.46,3.83,4.37,4.69,4.89,5.12,339.71,339.64,339.65000000000003,339.65000000000003,339.7,339.8,339.52,339.06,336.57,23.28,22.990000000000002,22.85,22.72,22.63,22.580000000000002,22.490000000000002,22.39,22.16,N/A,N/A +2012,4,5,22,30,100980,99820,98700,85.62,0,1.7,1.67,1.45,0.93,0.92,1.32,1.74,2.18,2.99,190.83,191.5,213.72,277.61,305.48,323.29,332.8,336.89,340.24,23.39,23.09,23,23.05,23.03,22.93,22.87,22.830000000000002,22.71,N/A,N/A +2012,4,5,23,30,100960,99800,98680,86.68,0,1.12,0.31,0.22,0.5700000000000001,1.08,1.59,2.04,2.46,3.24,167.88,160.86,148.06,68.32000000000001,356.89,353.08,350.5,348.74,345.86,23.37,23.39,23.43,23.43,23.52,23.68,23.69,23.64,23.5,N/A,N/A +2012,4,6,0,30,100950,99800,98680,82.93,0,0.89,0.59,0.55,0.87,1.22,1.6,1.97,2.32,2.97,149.64000000000001,84.34,57.65,31.98,13.38,7.19,3.11,0.3,356.78000000000003,23.91,24.240000000000002,24.44,24.560000000000002,24.62,24.64,24.61,24.580000000000002,24.43,N/A,N/A +2012,4,6,1,30,100980,99830,98710,83.09,0,2,1.6,1.25,0.89,0.76,0.74,0.93,1.27,2.0300000000000002,167.93,157.62,147.64000000000001,131.22,106.54,71.42,51.42,33.79,21.47,24.28,24.830000000000002,25.05,25.07,25.060000000000002,25.04,25.02,25.01,24.91,N/A,N/A +2012,4,6,2,30,101030,99880,98760,88.55,0,2.5300000000000002,1.6600000000000001,0.99,0.33,0.33,0.78,1.28,1.79,2.59,194.83,193.3,175.48,144.34,122.22,62.64,31.26,28.1,25.86,23.69,24.13,24.45,24.84,25.1,25.28,25.34,25.35,25.19,N/A,N/A +2012,4,6,3,30,101080,99920,98800,90.87,0,1.41,0.67,0.5,0.7000000000000001,1.02,1.56,2.08,2.58,3.38,218.46,246.67000000000002,267.68,328.39,5.51,12.98,17.23,19.34,21.51,23.53,23.93,24.16,24.330000000000002,24.46,24.57,24.63,24.66,24.560000000000002,N/A,N/A +2012,4,6,4,30,101120,99960,98840,91.77,0,1.07,1.79,2.11,2.49,2.83,3.16,3.42,3.65,4.05,334.8,350.1,359.35,3.36,6.11,7.61,8.67,9.49,12.700000000000001,23.66,24.13,24.36,24.5,24.57,24.61,24.560000000000002,24.47,24.25,N/A,N/A +2012,4,6,5,30,101140,99980,98850,93.07000000000001,0,1.9000000000000001,2.19,2.32,2.46,2.62,2.7800000000000002,2.96,3.13,3.48,305.78000000000003,318.87,327.17,334.84000000000003,340.75,345.49,349.25,352.46,357.93,23.22,23.59,23.84,24.05,24.18,24.26,24.26,24.23,24.060000000000002,N/A,N/A +2012,4,6,6,30,101220,100050,98920,72.61,0,5.04,5.39,5.42,5.36,5.26,5.16,5.08,5.01,5.09,15.9,15.63,15.610000000000001,15.82,16.35,17.13,18.23,19.36,24.28,23.93,23.81,23.72,23.61,23.5,23.37,23.22,23.06,22.77,N/A,N/A +2012,4,6,7,30,101240,100080,98950,75.53,0,5.34,5.76,5.84,5.88,5.96,6.05,6.37,6.75,7.88,43.81,44.34,44.660000000000004,45.07,45.59,46.19,47.69,49.42,52.86,23.22,22.96,22.81,22.63,22.46,22.3,22.17,22.07,22.21,N/A,N/A +2012,4,6,8,30,101270,100100,98960,74.43,0,7.3500000000000005,7.99,8.13,8.19,8.22,8.24,8.25,8.26,8.31,56.38,56.53,56.63,56.74,56.83,56.93,57.050000000000004,57.17,57.52,23.11,22.830000000000002,22.67,22.490000000000002,22.3,22.13,21.94,21.77,21.43,N/A,N/A +2012,4,6,9,30,101290,100120,98980,67.87,0,7.640000000000001,8.290000000000001,8.41,8.47,8.49,8.51,8.52,8.540000000000001,8.74,58.14,58.33,58.44,58.57,58.71,58.86,59.06,59.27,60.28,23.04,22.76,22.61,22.42,22.240000000000002,22.07,21.89,21.73,21.47,N/A,N/A +2012,4,6,10,30,101310,100140,99010,70.81,0,6.91,7.49,7.61,7.66,7.69,7.7,7.72,7.72,7.76,65.31,65.56,65.71000000000001,65.87,66.02,66.18,66.36,66.54,67.02,22.830000000000002,22.53,22.37,22.18,22,21.82,21.63,21.46,21.11,N/A,N/A +2012,4,6,11,30,101340,100170,99030,71.2,0,6.83,7.390000000000001,7.51,7.5600000000000005,7.59,7.61,7.61,7.61,7.61,66.12,66.36,66.51,66.66,66.8,66.94,67.1,67.25,67.62,22.73,22.42,22.25,22.06,21.87,21.68,21.490000000000002,21.32,20.94,N/A,N/A +2012,4,6,12,30,101390,100210,99070,70.96000000000001,0,7.46,8.09,8.22,8.290000000000001,8.32,8.34,8.35,8.35,8.34,71.55,71.64,71.7,71.76,71.82000000000001,71.87,71.93,71.98,72.12,22.6,22.28,22.11,21.91,21.72,21.54,21.35,21.17,20.79,N/A,N/A +2012,4,6,13,30,101420,100250,99110,71.4,0,7.63,8.26,8.4,8.46,8.5,8.52,8.53,8.53,8.540000000000001,72.56,72.81,72.95,73.09,73.23,73.35000000000001,73.5,73.64,74,22.41,22.080000000000002,21.900000000000002,21.71,21.52,21.34,21.14,20.96,20.59,N/A,N/A +2012,4,6,14,30,101500,100320,99180,72.44,0,6.78,7.32,7.44,7.49,7.5200000000000005,7.54,7.55,7.55,7.55,78.55,78.72,78.85000000000001,78.96000000000001,79.08,79.19,79.32000000000001,79.44,79.75,22.5,22.18,22,21.81,21.62,21.43,21.240000000000002,21.06,20.68,N/A,N/A +2012,4,6,15,30,101540,100370,99230,73.26,0,6.79,7.34,7.46,7.53,7.5600000000000005,7.58,7.59,7.6000000000000005,7.6000000000000005,80.58,80.73,80.83,80.93,81.03,81.13,81.24,81.34,81.58,22.53,22.19,22.02,21.830000000000002,21.63,21.45,21.25,21.07,20.69,N/A,N/A +2012,4,6,16,30,101560,100380,99240,73.52,0,6.82,7.36,7.48,7.54,7.57,7.59,7.59,7.6000000000000005,7.58,80.36,80.57000000000001,80.69,80.82000000000001,80.94,81.05,81.17,81.28,81.54,22.46,22.12,21.94,21.75,21.55,21.37,21.17,20.990000000000002,20.61,N/A,N/A +2012,4,6,17,30,101580,100400,99260,70.89,0,6.32,6.8,6.9,6.94,6.97,6.98,6.98,6.98,6.96,86.15,86.42,86.56,86.72,86.87,87.01,87.17,87.32000000000001,87.66,22.48,22.14,21.97,21.77,21.580000000000002,21.39,21.2,21.01,20.63,N/A,N/A +2012,4,6,18,30,101590,100410,99270,70.29,0,6.2,6.67,6.76,6.8,6.82,6.83,6.83,6.83,6.8100000000000005,90.93,91.21000000000001,91.38,91.56,91.72,91.88,92.05,92.2,92.55,22.52,22.19,22.01,21.82,21.62,21.44,21.240000000000002,21.06,20.68,N/A,N/A +2012,4,6,19,30,101590,100420,99280,67.78,0,6.2,6.67,6.76,6.8,6.82,6.82,6.82,6.8100000000000005,6.78,107.72,107.84,107.89,107.94,108,108.06,108.13,108.19,108.36,22.7,22.38,22.21,22.01,21.830000000000002,21.64,21.45,21.27,20.89,N/A,N/A +2012,4,6,20,30,101550,100380,99240,64.94,0,5.76,6.18,6.26,6.29,6.3,6.29,6.28,6.2700000000000005,6.21,116.58,116.58,116.56,116.54,116.51,116.5,116.49000000000001,116.48,116.47,22.88,22.57,22.400000000000002,22.21,22.02,21.84,21.650000000000002,21.47,21.1,N/A,N/A +2012,4,6,21,30,101530,100360,99220,65.64,0,5.2,5.58,5.64,5.66,5.66,5.66,5.65,5.63,5.58,122.51,122.48,122.46000000000001,122.44,122.41,122.39,122.36,122.34,122.27,22.93,22.63,22.46,22.27,22.080000000000002,21.900000000000002,21.7,21.52,21.14,N/A,N/A +2012,4,6,22,30,101530,100360,99220,68.52,0,5.29,5.68,5.74,5.76,5.7700000000000005,5.7700000000000005,5.75,5.73,5.68,123.56,123.65,123.69,123.73,123.78,123.82000000000001,123.87,123.92,124.06,22.85,22.55,22.38,22.19,22,21.82,21.63,21.45,21.07,N/A,N/A +2012,4,6,23,30,101530,100360,99220,72.12,0,4.69,4.99,5.04,5.04,5.04,5.0200000000000005,5,4.97,4.9,128.74,128.8,128.83,128.87,128.89000000000001,128.91,128.92000000000002,128.93,128.92000000000002,22.73,22.42,22.25,22.06,21.88,21.69,21.5,21.330000000000002,20.96,N/A,N/A +2012,4,7,0,30,101550,100370,99240,68.79,0,4.2700000000000005,4.55,4.59,4.6000000000000005,4.6000000000000005,4.59,4.57,4.5600000000000005,4.51,128.84,128.79,128.77,128.75,128.7,128.66,128.58,128.51,128.13,22.82,22.53,22.36,22.17,21.990000000000002,21.81,21.62,21.45,21.11,N/A,N/A +2012,4,7,1,30,101550,100370,99230,70.93,0,4.32,4.6000000000000005,4.64,4.64,4.64,4.64,4.62,4.61,4.58,129.84,129.79,129.76,129.7,129.64000000000001,129.57,129.45,129.34,128.81,22.72,22.41,22.240000000000002,22.05,21.87,21.69,21.5,21.32,20.98,N/A,N/A +2012,4,7,2,30,101590,100410,99270,70.02,0,4.24,4.51,4.55,4.5600000000000005,4.5600000000000005,4.55,4.54,4.53,4.51,129.82,129.71,129.59,129.46,129.31,129.16,128.94,128.74,127.9,22.78,22.48,22.31,22.12,21.93,21.75,21.57,21.39,21.05,N/A,N/A +2012,4,7,3,30,101610,100440,99300,66.21000000000001,0,4.14,4.43,4.49,4.51,4.53,4.54,4.5600000000000005,4.58,4.68,120.86,120.74000000000001,120.65,120.54,120.41,120.28,120.08,119.9,119.16,22.92,22.63,22.47,22.28,22.09,21.92,21.73,21.56,21.22,N/A,N/A +2012,4,7,4,30,101660,100490,99350,65.86,0,4.17,4.48,4.54,4.57,4.58,4.6000000000000005,4.61,4.62,4.66,127.25,127.2,127.10000000000001,126.99000000000001,126.89,126.79,126.66,126.54,126.16,22.94,22.66,22.490000000000002,22.3,22.11,21.93,21.740000000000002,21.56,21.19,N/A,N/A +2012,4,7,5,30,101660,100490,99350,64.92,0,4.08,4.39,4.44,4.47,4.49,4.51,4.5200000000000005,4.54,4.59,119.77,119.75,119.73,119.71000000000001,119.66,119.61,119.53,119.45,119.22,22.95,22.66,22.490000000000002,22.3,22.12,21.93,21.740000000000002,21.57,21.2,N/A,N/A +2012,4,7,6,30,101720,100540,99400,65.05,0,4.39,4.72,4.78,4.82,4.84,4.86,4.87,4.88,4.91,122.25,122.22,122.2,122.17,122.14,122.11,122.07000000000001,122.03,121.92,22.990000000000002,22.7,22.53,22.34,22.150000000000002,21.96,21.77,21.59,21.21,N/A,N/A +2012,4,7,7,30,101760,100580,99440,65.43,0,4.3500000000000005,4.67,4.73,4.76,4.78,4.79,4.8,4.8100000000000005,4.83,119.84,119.88,119.89,119.89,119.89,119.88,119.88,119.87,119.82000000000001,23.03,22.740000000000002,22.57,22.38,22.19,22.01,21.81,21.63,21.25,N/A,N/A +2012,4,7,8,30,101770,100590,99450,66.02,0,4.14,4.44,4.5,4.53,4.54,4.5600000000000005,4.57,4.58,4.61,114.18,114.24000000000001,114.27,114.31,114.33,114.36,114.4,114.44,114.54,22.96,22.66,22.490000000000002,22.3,22.11,21.93,21.73,21.56,21.18,N/A,N/A +2012,4,7,9,30,101800,100620,99480,66.28,0,4.25,4.57,4.63,4.67,4.69,4.71,4.72,4.73,4.76,115.94,116.07000000000001,116.13,116.2,116.27,116.34,116.41,116.49000000000001,116.67,22.97,22.67,22.5,22.31,22.12,21.93,21.740000000000002,21.56,21.18,N/A,N/A +2012,4,7,10,30,101810,100630,99490,67.24,0,4.78,5.14,5.21,5.24,5.2700000000000005,5.28,5.29,5.3,5.32,106.60000000000001,106.75,106.82000000000001,106.89,106.96000000000001,107.02,107.08,107.14,107.29,22.92,22.62,22.45,22.26,22.07,21.88,21.68,21.5,21.12,N/A,N/A +2012,4,7,11,30,101850,100670,99530,68.11,0,5.29,5.71,5.8,5.8500000000000005,5.88,5.9,5.92,5.93,5.95,111.16,111.17,111.21000000000001,111.24000000000001,111.27,111.29,111.32000000000001,111.34,111.39,22.88,22.57,22.400000000000002,22.21,22.02,21.830000000000002,21.63,21.45,21.06,N/A,N/A +2012,4,7,12,30,101870,100690,99550,67.82000000000001,0,5.18,5.57,5.65,5.69,5.71,5.73,5.73,5.74,5.74,99.75,99.94,100.07000000000001,100.2,100.31,100.42,100.54,100.66,100.9,22.830000000000002,22.51,22.34,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,4,7,13,30,101900,100730,99580,69.88,0,5.26,5.66,5.73,5.7700000000000005,5.8,5.8100000000000005,5.82,5.82,5.82,101.33,101.52,101.60000000000001,101.68,101.76,101.84,101.91,101.99000000000001,102.16,22.7,22.37,22.2,22.01,21.82,21.63,21.43,21.25,20.86,N/A,N/A +2012,4,7,14,30,101960,100780,99630,70.96000000000001,0,5.12,5.51,5.59,5.64,5.67,5.69,5.7,5.72,5.74,102.09,102.06,102.06,102.04,102.03,102.03,102.02,102,102,22.73,22.400000000000002,22.23,22.04,21.85,21.66,21.46,21.28,20.89,N/A,N/A +2012,4,7,15,30,101990,100810,99670,73.52,0,5.38,5.8,5.88,5.93,5.95,5.97,5.98,5.99,5.99,96.49000000000001,96.63,96.73,96.81,96.9,96.97,97.06,97.13,97.3,22.740000000000002,22.42,22.240000000000002,22.04,21.85,21.67,21.47,21.29,20.900000000000002,N/A,N/A +2012,4,7,16,30,102010,100830,99690,77.95,0,5.46,5.87,5.96,6.01,6.05,6.07,6.09,6.1000000000000005,6.11,99.63,99.84,99.96000000000001,100.08,100.2,100.31,100.43,100.53,100.78,22.67,22.330000000000002,22.16,21.96,21.77,21.580000000000002,21.38,21.2,20.81,N/A,N/A +2012,4,7,17,30,102030,100850,99710,77.41,0,5.47,5.87,5.95,5.99,6.0200000000000005,6.03,6.04,6.05,6.05,105.04,105.21000000000001,105.33,105.46000000000001,105.57000000000001,105.68,105.79,105.89,106.11,22.81,22.47,22.3,22.1,21.91,21.72,21.52,21.34,20.95,N/A,N/A +2012,4,7,18,30,102030,100860,99710,76.86,0,5,5.36,5.44,5.49,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,105.22,105.38,105.48,105.58,105.66,105.73,105.81,105.88,106.03,22.87,22.54,22.36,22.16,21.97,21.79,21.59,21.400000000000002,21.02,N/A,N/A +2012,4,7,19,30,102060,100880,99730,75.56,0,4.61,4.94,5.01,5.05,5.08,5.11,5.12,5.14,5.15,116.26,116.37,116.43,116.48,116.54,116.58,116.64,116.68,116.8,23.01,22.68,22.5,22.3,22.11,21.92,21.72,21.54,21.150000000000002,N/A,N/A +2012,4,7,20,30,102040,100860,99720,76.4,0,5.04,5.41,5.49,5.54,5.57,5.59,5.61,5.62,5.63,118.91,119.04,119.09,119.14,119.19,119.24000000000001,119.3,119.36,119.47,23.03,22.69,22.52,22.32,22.13,21.94,21.740000000000002,21.56,21.17,N/A,N/A +2012,4,7,21,30,102030,100860,99720,78,0,5.17,5.5600000000000005,5.65,5.69,5.72,5.74,5.75,5.76,5.7700000000000005,125.07000000000001,125.09,125.13000000000001,125.2,125.26,125.32000000000001,125.4,125.47,125.62,22.990000000000002,22.67,22.490000000000002,22.3,22.11,21.92,21.72,21.54,21.150000000000002,N/A,N/A +2012,4,7,22,30,102010,100840,99700,74.92,0,4.9,5.3,5.39,5.44,5.48,5.51,5.53,5.55,5.58,130.58,130.62,130.63,130.64000000000001,130.65,130.65,130.66,130.68,130.69,23.02,22.71,22.54,22.35,22.16,21.97,21.77,21.59,21.2,N/A,N/A +2012,4,7,23,30,102020,100840,99700,78.19,0,5.7700000000000005,6.24,6.33,6.37,6.390000000000001,6.4,6.390000000000001,6.38,6.3500000000000005,134.09,134.2,134.21,134.21,134.21,134.2,134.19,134.17000000000002,134.14000000000001,22.84,22.52,22.35,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,4,8,0,30,102020,100840,99700,77.04,0,5.62,6.05,6.140000000000001,6.18,6.2,6.2,6.2,6.2,6.17,136.48,136.49,136.49,136.48,136.47,136.45,136.44,136.44,136.41,22.75,22.43,22.26,22.06,21.87,21.68,21.48,21.3,20.91,N/A,N/A +2012,4,8,1,30,102040,100860,99710,79.92,0,5.7,6.17,6.2700000000000005,6.33,6.36,6.38,6.390000000000001,6.4,6.4,132.58,132.58,132.59,132.58,132.58,132.57,132.56,132.54,132.52,22.61,22.28,22.1,21.900000000000002,21.71,21.52,21.32,21.14,20.75,N/A,N/A +2012,4,8,2,30,102070,100890,99750,80.07000000000001,0,5.68,6.13,6.23,6.29,6.33,6.36,6.38,6.390000000000001,6.41,132.53,132.54,132.5,132.48,132.45,132.43,132.41,132.39000000000001,132.35,22.56,22.22,22.05,21.85,21.66,21.47,21.27,21.09,20.7,N/A,N/A +2012,4,8,3,30,102090,100910,99760,78.85000000000001,0,5.39,5.8,5.89,5.94,5.97,5.99,6.01,6.0200000000000005,6.04,128.9,128.88,128.87,128.86,128.86,128.86,128.87,128.87,128.88,22.55,22.21,22.04,21.84,21.650000000000002,21.46,21.26,21.080000000000002,20.7,N/A,N/A +2012,4,8,4,30,102120,100940,99790,80.07000000000001,0,5.5200000000000005,5.94,6.04,6.09,6.12,6.140000000000001,6.15,6.16,6.16,125.87,125.75,125.7,125.65,125.61,125.57000000000001,125.52,125.48,125.39,22.490000000000002,22.150000000000002,21.97,21.78,21.580000000000002,21.39,21.2,21.01,20.63,N/A,N/A +2012,4,8,5,30,102130,100950,99810,75.47,0,4.45,4.79,4.87,4.93,4.97,5.01,5.04,5.07,5.13,130.45,130.55,130.62,130.68,130.71,130.74,130.77,130.79,130.79,22.62,22.3,22.13,21.93,21.75,21.56,21.37,21.19,20.81,N/A,N/A +2012,4,8,6,30,102180,101000,99850,74.4,0,4.62,4.97,5.05,5.1000000000000005,5.13,5.15,5.17,5.19,5.21,129.12,129.24,129.22,129.21,129.2,129.19,129.18,129.17000000000002,129.14000000000001,22.64,22.3,22.13,21.93,21.740000000000002,21.55,21.35,21.17,20.78,N/A,N/A +2012,4,8,7,30,102200,101020,99870,72.78,0,4.19,4.43,4.47,4.48,4.48,4.48,4.48,4.47,4.45,128.47,128.38,128.31,128.22,128.13,128.05,127.96000000000001,127.87,127.67,22.650000000000002,22.32,22.14,21.95,21.75,21.57,21.37,21.19,20.8,N/A,N/A +2012,4,8,8,30,102240,101050,99910,71.42,0,3.44,3.64,3.68,3.7,3.71,3.72,3.72,3.72,3.72,127.26,127.09,127.03,126.96000000000001,126.87,126.79,126.7,126.63000000000001,126.43,22.68,22.35,22.18,21.98,21.79,21.6,21.400000000000002,21.22,20.830000000000002,N/A,N/A +2012,4,8,9,30,102240,101060,99910,72.58,0,3.5,3.71,3.7600000000000002,3.7800000000000002,3.8000000000000003,3.81,3.8200000000000003,3.8200000000000003,3.8200000000000003,125.45,125.49000000000001,125.57000000000001,125.64,125.7,125.75,125.8,125.84,125.91,22.63,22.3,22.12,21.93,21.73,21.54,21.34,21.16,20.77,N/A,N/A +2012,4,8,10,30,102270,101090,99940,72.46000000000001,0,2.98,3.16,3.21,3.23,3.2600000000000002,3.2800000000000002,3.29,3.31,3.33,113.94,114.13,114.23,114.31,114.36,114.41,114.45,114.49000000000001,114.54,22.59,22.26,22.09,21.89,21.7,21.51,21.31,21.13,20.740000000000002,N/A,N/A +2012,4,8,11,30,102300,101120,99970,73.63,0,2.67,2.79,2.81,2.82,2.82,2.82,2.81,2.81,2.8000000000000003,99.42,98.89,98.62,98.35000000000001,98.11,97.87,97.64,97.44,97.01,22.54,22.21,22.04,21.84,21.650000000000002,21.46,21.26,21.07,20.68,N/A,N/A +2012,4,8,12,30,102320,101140,99990,75.73,0,2.11,2.22,2.25,2.27,2.2800000000000002,2.29,2.31,2.32,2.34,61.44,61.480000000000004,61.58,61.68,61.79,61.9,62.01,62.120000000000005,62.38,22.490000000000002,22.150000000000002,21.98,21.78,21.59,21.400000000000002,21.2,21.02,20.63,N/A,N/A +2012,4,8,13,30,102350,101160,100010,79.97,0,2.71,2.96,3.0500000000000003,3.12,3.17,3.22,3.27,3.31,3.39,86.04,85.28,84.92,84.54,84.18,83.82000000000001,83.45,83.11,82.35000000000001,22.29,21.95,21.77,21.580000000000002,21.39,21.2,21,20.82,20.44,N/A,N/A +2012,4,8,14,30,102370,101190,100040,80.07000000000001,0,3.13,3.2600000000000002,3.27,3.2800000000000002,3.29,3.29,3.29,3.3000000000000003,3.31,71.32000000000001,74.23,75.97,77.64,79.18,80.59,82.01,83.3,85.88,22.32,21.98,21.81,21.61,21.42,21.240000000000002,21.04,20.86,20.47,N/A,N/A +2012,4,8,15,30,102390,101200,100060,78.03,0,3.43,3.61,3.64,3.65,3.66,3.66,3.66,3.66,3.66,80.78,81.60000000000001,81.97,82.26,82.5,82.71000000000001,82.91,83.09,83.43,22.51,22.16,21.98,21.79,21.59,21.41,21.21,21.02,20.63,N/A,N/A +2012,4,8,16,30,102390,101200,100050,78.62,0,3.99,4.18,4.21,4.2,4.2,4.18,4.17,4.16,4.12,95.67,95.5,95.4,95.29,95.18,95.07000000000001,94.97,94.88,94.67,22.55,22.19,22.01,21.81,21.61,21.43,21.23,21.04,20.66,N/A,N/A +2012,4,8,17,30,102360,101180,100030,79.03,0,3.61,3.8200000000000003,3.87,3.89,3.91,3.92,3.93,3.94,3.95,101.08,101.17,101.19,101.17,101.12,101.06,100.97,100.89,100.69,22.580000000000002,22.22,22.04,21.84,21.64,21.45,21.25,21.07,20.67,N/A,N/A +2012,4,8,18,30,102350,101170,100020,78.33,0,3.69,3.88,3.91,3.93,3.94,3.94,3.94,3.94,3.94,114.57000000000001,113.94,113.55,113.17,112.83,112.51,112.2,111.92,111.33,22.61,22.25,22.07,21.87,21.67,21.48,21.28,21.1,20.71,N/A,N/A +2012,4,8,19,30,102330,101140,100000,78.35000000000001,0,3.9,4.13,4.17,4.2,4.21,4.22,4.23,4.23,4.23,123.87,124.3,124.52,124.74000000000001,124.94,125.14,125.33,125.51,125.9,22.69,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.18,20.79,N/A,N/A +2012,4,8,20,30,102270,101090,99940,76.69,0,4.07,4.32,4.37,4.39,4.41,4.42,4.43,4.44,4.45,137.94,137.95000000000002,137.93,137.92000000000002,137.93,137.94,137.95000000000002,137.97,137.99,22.69,22.330000000000002,22.150000000000002,21.96,21.76,21.580000000000002,21.38,21.2,20.81,N/A,N/A +2012,4,8,21,30,102240,101060,99920,78.64,0,4.29,4.54,4.59,4.61,4.62,4.62,4.62,4.61,4.59,147.36,147.42000000000002,147.46,147.52,147.57,147.62,147.67000000000002,147.72,147.83,22.71,22.36,22.18,21.98,21.79,21.6,21.400000000000002,21.21,20.82,N/A,N/A +2012,4,8,22,30,102220,101030,99890,73.68,0,3.41,3.6,3.64,3.67,3.68,3.69,3.69,3.7,3.7,156.16,156.13,156.09,156.07,156.06,156.05,156.03,156.02,155.99,22.76,22.42,22.25,22.05,21.86,21.67,21.47,21.29,20.900000000000002,N/A,N/A +2012,4,8,23,30,102200,101020,99870,78.87,0,3.47,3.66,3.69,3.7,3.7,3.7,3.69,3.69,3.67,165.20000000000002,165.01,164.9,164.79,164.68,164.59,164.49,164.41,164.21,22.580000000000002,22.240000000000002,22.07,21.87,21.68,21.490000000000002,21.29,21.1,20.71,N/A,N/A +2012,4,9,0,30,102180,100990,99850,77.4,0,3.65,3.85,3.89,3.9,3.91,3.91,3.91,3.91,3.91,175.17000000000002,175.18,175.15,175.14000000000001,175.12,175.11,175.09,175.08,175.03,22.54,22.21,22.03,21.830000000000002,21.64,21.45,21.26,21.07,20.69,N/A,N/A +2012,4,9,1,30,102170,100990,99840,75.10000000000001,0,3.65,3.85,3.88,3.89,3.9,3.9,3.89,3.89,3.88,174.14000000000001,174.13,174.14000000000001,174.15,174.16,174.16,174.17000000000002,174.18,174.18,22.580000000000002,22.25,22.080000000000002,21.88,21.69,21.5,21.3,21.12,20.740000000000002,N/A,N/A +2012,4,9,2,30,102180,101000,99850,79.18,0,3.56,3.74,3.7600000000000002,3.77,3.7600000000000002,3.75,3.74,3.73,3.7,177.17000000000002,177.08,177.11,177.12,177.13,177.13,177.12,177.1,177.05,22.42,22.080000000000002,21.91,21.71,21.52,21.330000000000002,21.14,20.96,20.57,N/A,N/A +2012,4,9,3,30,102180,101000,99850,77.61,0,3.61,3.8000000000000003,3.83,3.83,3.83,3.83,3.8200000000000003,3.81,3.79,174.88,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.91,174.87,22.44,22.1,21.93,21.73,21.54,21.35,21.150000000000002,20.97,20.59,N/A,N/A +2012,4,9,4,30,102140,100960,99810,76.8,0,3.35,3.52,3.5500000000000003,3.56,3.5700000000000003,3.5700000000000003,3.56,3.56,3.5500000000000003,181.75,181.69,181.64000000000001,181.58,181.53,181.48,181.42000000000002,181.36,181.18,22.41,22.080000000000002,21.900000000000002,21.7,21.51,21.32,21.13,20.94,20.56,N/A,N/A +2012,4,9,5,30,102110,100930,99780,78.11,0,3.58,3.7600000000000002,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.77,3.75,3.74,3.71,188.29,188.22,188.19,188.14000000000001,188.1,188.05,187.98,187.91,187.70000000000002,22.36,22.02,21.85,21.650000000000002,21.46,21.27,21.07,20.89,20.51,N/A,N/A +2012,4,9,6,30,102110,100930,99790,77.74,0,3.22,3.38,3.4,3.4,3.4,3.4,3.39,3.38,3.36,191.71,191.72,191.66,191.61,191.56,191.51,191.45000000000002,191.4,191.23000000000002,22.38,22.04,21.86,21.67,21.47,21.29,21.09,20.91,20.53,N/A,N/A +2012,4,9,7,30,102110,100930,99790,79.85000000000001,0,2.82,2.94,2.95,2.96,2.95,2.95,2.94,2.94,2.91,201.81,201.74,201.66,201.58,201.5,201.41,201.3,201.20000000000002,200.9,22.27,21.93,21.76,21.56,21.37,21.18,20.98,20.8,20.42,N/A,N/A +2012,4,9,8,30,102120,100930,99790,79.77,0,2.77,2.89,2.91,2.92,2.92,2.92,2.91,2.91,2.89,211.71,211.58,211.49,211.39000000000001,211.29,211.19,211.06,210.94,210.61,22.27,21.93,21.76,21.56,21.37,21.18,20.98,20.8,20.41,N/A,N/A +2012,4,9,9,30,102090,100910,99760,78.74,0,2.73,2.84,2.86,2.86,2.85,2.85,2.84,2.83,2.8000000000000003,230.71,230.6,230.52,230.41,230.3,230.19,230.05,229.91,229.51,22.29,21.95,21.78,21.580000000000002,21.39,21.2,21.01,20.82,20.44,N/A,N/A +2012,4,9,10,30,102100,100920,99780,77.96000000000001,0,2.43,2.52,2.54,2.5300000000000002,2.5300000000000002,2.52,2.5100000000000002,2.5100000000000002,2.48,240.95000000000002,240.82,240.69,240.55,240.41,240.27,240.11,239.95000000000002,239.54,22.32,21.990000000000002,21.81,21.61,21.42,21.240000000000002,21.04,20.86,20.47,N/A,N/A +2012,4,9,11,30,102150,100960,99820,78.11,0,2.2,2.29,2.31,2.31,2.31,2.31,2.3000000000000003,2.3000000000000003,2.29,282.59000000000003,282.84000000000003,282.89,282.96,283.04,283.12,283.2,283.27,283.47,22.32,21.990000000000002,21.81,21.61,21.42,21.23,21.03,20.85,20.46,N/A,N/A +2012,4,9,12,30,102160,100980,99830,86.04,0,4.3100000000000005,4.44,4.42,4.36,4.3,4.24,4.17,4.1,3.93,332.41,332.47,332.45,332.40000000000003,332.34000000000003,332.28000000000003,332.2,332.12,331.87,21.91,21.55,21.37,21.17,20.98,20.8,20.6,20.42,20.04,N/A,N/A +2012,4,9,13,30,102190,101000,99860,86.29,0,3.58,3.73,3.74,3.73,3.71,3.7,3.67,3.64,3.58,346.64,347.09000000000003,347.33,347.58,347.82,348.05,348.3,348.54,349.08,21.7,21.34,21.150000000000002,20.96,20.76,20.57,20.38,20.19,19.81,N/A,N/A +2012,4,9,14,30,102210,101030,99880,85.7,0,3.86,4.04,4.0600000000000005,4.0600000000000005,4.0600000000000005,4.04,4.03,4.01,3.97,357.47,357.67,357.71,357.77,357.82,357.87,357.92,357.96,358.07,21.77,21.39,21.21,21.01,20.82,20.63,20.43,20.25,19.86,N/A,N/A +2012,4,9,15,30,102210,101030,99880,85.96000000000001,0,2.97,3.1,3.12,3.13,3.13,3.13,3.13,3.12,3.11,10.120000000000001,9.75,9.51,9.28,9.040000000000001,8.8,8.53,8.26,7.53,21.69,21.32,21.14,20.94,20.75,20.56,20.36,20.18,19.8,N/A,N/A +2012,4,9,16,30,102210,101020,99880,82.9,0,1.68,1.74,1.75,1.75,1.75,1.75,1.75,1.75,1.75,17.51,17.63,17.66,17.69,17.69,17.68,17.64,17.6,17.42,21.95,21.6,21.42,21.21,21.02,20.84,20.64,20.46,20.080000000000002,N/A,N/A +2012,4,9,17,30,102180,101000,99860,80.75,0,0.28,0.27,0.25,0.24,0.22,0.21,0.19,0.18,0.21,109.98,108.44,106.46000000000001,103.8,100.14,96.04,87.99,80.10000000000001,44.18,22.21,21.86,21.68,21.48,21.3,21.11,20.92,20.75,20.43,N/A,N/A +2012,4,9,18,30,102160,100980,99830,79.17,0,1.8900000000000001,1.92,1.9000000000000001,1.87,1.83,1.79,1.73,1.67,1.33,187.09,187.58,187.89000000000001,188.27,188.68,189.11,189.81,190.49,197.04,22.53,22.18,22.01,21.82,21.63,21.46,21.28,21.13,20.93,N/A,N/A +2012,4,9,19,30,102130,100950,99800,78.48,0,2.7600000000000002,2.84,2.83,2.8000000000000003,2.77,2.74,2.69,2.65,2.49,195.47,195.85,196.07,196.33,196.58,196.85,197.19,197.53,198.75,22.77,22.41,22.23,22.04,21.86,21.68,21.5,21.330000000000002,21.01,N/A,N/A +2012,4,9,20,30,102090,100910,99760,75.79,0,2.63,2.71,2.7,2.68,2.66,2.63,2.59,2.5500000000000003,2.45,201.13,201.35,201.53,201.73000000000002,201.93,202.14000000000001,202.4,202.65,203.48000000000002,23.02,22.67,22.5,22.31,22.12,21.94,21.75,21.580000000000002,21.23,N/A,N/A +2012,4,9,21,30,102030,100850,99710,74.83,0,3.9,4.07,4.07,4.0600000000000005,4.03,4,3.96,3.92,3.7800000000000002,197.70000000000002,197.74,197.79,197.84,197.88,197.89000000000001,197.91,197.92000000000002,197.9,23.19,22.84,22.67,22.48,22.3,22.11,21.93,21.75,21.41,N/A,N/A +2012,4,9,22,30,101990,100810,99670,77.07000000000001,0,4.3100000000000005,4.54,4.57,4.5600000000000005,4.55,4.5200000000000005,4.49,4.46,4.3500000000000005,192.65,192.61,192.58,192.54,192.48000000000002,192.42000000000002,192.33,192.24,191.9,23.09,22.77,22.6,22.400000000000002,22.22,22.03,21.85,21.67,21.31,N/A,N/A +2012,4,9,23,30,101950,100770,99630,77.11,0,4.25,4.48,4.51,4.5,4.49,4.47,4.44,4.41,4.29,194.18,194.22,194.21,194.19,194.16,194.12,194.03,193.94,193.28,23.04,22.73,22.57,22.38,22.19,22.01,21.830000000000002,21.66,21.36,N/A,N/A +2012,4,10,0,30,101900,100720,99580,77.65,0,4.19,4.42,4.44,4.43,4.4,4.37,4.33,4.29,4.08,194.66,194.57,194.51,194.45000000000002,194.36,194.26,194.08,193.89000000000001,192.37,22.95,22.650000000000002,22.48,22.29,22.11,21.94,21.76,21.6,21.37,N/A,N/A +2012,4,10,1,30,101880,100710,99570,79.33,0,3.92,4.12,4.14,4.13,4.11,4.08,4.05,4.0200000000000005,3.88,194.53,194.5,194.46,194.4,194.32,194.22,194.04,193.85,192.07,22.830000000000002,22.51,22.35,22.16,21.98,21.8,21.63,21.47,21.25,N/A,N/A +2012,4,10,2,30,101880,100700,99560,79.24,0,3.89,4.09,4.11,4.1,4.09,4.07,4.04,4.0200000000000005,3.93,197.96,197.81,197.73000000000002,197.63,197.51,197.37,197.15,196.92000000000002,195.44,22.81,22.5,22.330000000000002,22.14,21.96,21.78,21.59,21.42,21.13,N/A,N/A +2012,4,10,3,30,101860,100680,99540,80.52,0,3.2600000000000002,3.4,3.42,3.41,3.39,3.37,3.34,3.3200000000000003,3.22,203.17000000000002,203.06,203,202.9,202.78,202.65,202.43,202.20000000000002,200.75,22.7,22.39,22.22,22.02,21.84,21.66,21.47,21.3,20.990000000000002,N/A,N/A +2012,4,10,4,30,101860,100690,99540,81.13,0,3.1,3.24,3.2600000000000002,3.2600000000000002,3.25,3.24,3.22,3.2,3.16,207.33,207.37,207.3,207.21,207.13,207.03,206.89000000000001,206.74,206.08,22.63,22.32,22.150000000000002,21.95,21.76,21.580000000000002,21.39,21.21,20.86,N/A,N/A +2012,4,10,5,30,101840,100660,99520,82.46000000000001,0,2.71,2.81,2.82,2.8000000000000003,2.79,2.77,2.75,2.72,2.6,210.92000000000002,210.72,210.59,210.4,210.16,209.9,209.44,208.98000000000002,205.26,22.51,22.19,22.03,21.84,21.650000000000002,21.48,21.3,21.14,20.92,N/A,N/A +2012,4,10,6,30,101890,100710,99570,80.87,0,1.75,1.79,1.79,1.78,1.76,1.74,1.72,1.69,1.61,223.88,223.92000000000002,223.9,223.87,223.81,223.74,223.61,223.46,222.37,22.52,22.2,22.03,21.830000000000002,21.650000000000002,21.47,21.27,21.1,20.75,N/A,N/A +2012,4,10,7,30,101920,100740,99600,79.48,0,1.62,1.67,1.67,1.6600000000000001,1.6400000000000001,1.6300000000000001,1.62,1.6,1.54,241.71,242.14000000000001,242.27,242.42000000000002,242.56,242.70000000000002,242.83,242.95000000000002,242.99,22.55,22.23,22.06,21.87,21.68,21.5,21.31,21.13,20.78,N/A,N/A +2012,4,10,8,30,101910,100730,99590,78.82000000000001,0,1.3800000000000001,1.42,1.42,1.41,1.4000000000000001,1.3900000000000001,1.37,1.36,1.33,259.8,259.9,259.97,260.03000000000003,260.07,260.07,260.09000000000003,260.12,260.07,22.54,22.22,22.05,21.86,21.67,21.490000000000002,21.29,21.12,20.740000000000002,N/A,N/A +2012,4,10,9,30,101920,100750,99600,79.24,0,1.3800000000000001,1.42,1.42,1.41,1.4000000000000001,1.3900000000000001,1.3900000000000001,1.37,1.35,295.22,295.6,295.91,296.23,296.55,296.85,297.17,297.46,298.26,22.490000000000002,22.17,22,21.8,21.61,21.43,21.23,21.05,20.67,N/A,N/A +2012,4,10,10,30,101950,100770,99630,77.73,0,1.27,1.32,1.32,1.32,1.33,1.33,1.32,1.32,1.32,292.85,293.49,293.93,294.37,294.81,295.24,295.7,296.12,297.21,22.53,22.21,22.04,21.84,21.650000000000002,21.47,21.27,21.09,20.71,N/A,N/A +2012,4,10,11,30,101970,100790,99650,81.7,0,1.19,1.18,1.16,1.1300000000000001,1.1,1.08,1.05,1.03,0.98,296.01,294.96,294.15000000000003,293.32,292.54,291.8,291.04,290.34000000000003,288.73,22.36,22.04,21.86,21.67,21.48,21.29,21.09,20.91,20.53,N/A,N/A +2012,4,10,12,30,102010,100830,99680,84.9,0,1.3900000000000001,1.37,1.32,1.27,1.23,1.18,1.1300000000000001,1.09,0.99,300.7,300.28000000000003,299.92,299.5,299.02,298.54,297.88,297.25,295.32,22.1,21.76,21.59,21.39,21.2,21.02,20.82,20.64,20.25,N/A,N/A +2012,4,10,13,30,102040,100860,99710,86.24,0,1.59,1.58,1.54,1.5,1.46,1.42,1.3800000000000001,1.34,1.25,306.02,306.65000000000003,306.93,307.21,307.52,307.83,308.15000000000003,308.43,309.18,21.97,21.63,21.45,21.25,21.06,20.87,20.67,20.490000000000002,20.11,N/A,N/A +2012,4,10,14,30,102060,100880,99740,86.34,0,1.44,1.4000000000000001,1.35,1.29,1.25,1.2,1.1400000000000001,1.1,0.99,303.13,303.82,304.22,304.62,305.04,305.45,305.90000000000003,306.29,307.31,21.900000000000002,21.56,21.38,21.18,20.990000000000002,20.8,20.6,20.42,20.04,N/A,N/A +2012,4,10,15,30,102060,100880,99740,86.60000000000001,0,1.48,1.47,1.43,1.3900000000000001,1.35,1.32,1.27,1.23,1.1400000000000001,302.67,304.28000000000003,305.24,306.25,307.28000000000003,308.3,309.49,310.59000000000003,313.43,21.84,21.490000000000002,21.31,21.11,20.92,20.73,20.53,20.35,19.96,N/A,N/A +2012,4,10,16,30,102050,100870,99720,86.4,0,0.87,0.87,0.86,0.85,0.8300000000000001,0.81,0.78,0.76,0.7000000000000001,307.01,308.52,309.57,310.64,311.7,312.74,314.05,315.3,319.14,21.91,21.55,21.37,21.17,20.97,20.79,20.59,20.41,20.02,N/A,N/A +2012,4,10,17,30,102040,100860,99720,84.8,0,0.67,0.67,0.65,0.63,0.62,0.6,0.58,0.56,0.52,307.08,307.62,308.07,308.57,309.05,309.53000000000003,310.09000000000003,310.6,312.31,22.09,21.72,21.54,21.34,21.150000000000002,20.96,20.76,20.580000000000002,20.2,N/A,N/A +2012,4,10,18,30,102010,100830,99690,82.32000000000001,0,0.86,0.87,0.87,0.86,0.85,0.85,0.85,0.85,0.85,179.17000000000002,177.20000000000002,175.96,174.64000000000001,173.3,171.95000000000002,170.44,169.02,165.36,22.31,21.94,21.76,21.56,21.37,21.18,20.990000000000002,20.81,20.43,N/A,N/A +2012,4,10,19,30,101990,100810,99670,80.61,0,1.6400000000000001,1.71,1.72,1.74,1.75,1.75,1.77,1.78,1.8,160.39000000000001,159.56,159.05,158.56,158.09,157.65,157.16,156.70000000000002,155.64000000000001,22.53,22.16,21.98,21.78,21.59,21.41,21.21,21.03,20.650000000000002,N/A,N/A +2012,4,10,20,30,101950,100770,99630,80.44,0,1.97,2.09,2.12,2.15,2.18,2.2,2.23,2.25,2.31,144.38,143.94,143.61,143.3,143.02,142.78,142.54,142.32,141.9,22.75,22.38,22.2,22,21.81,21.62,21.43,21.25,20.87,N/A,N/A +2012,4,10,21,30,101900,100720,99580,72.64,0,2.69,2.82,2.84,2.86,2.86,2.87,2.87,2.88,2.89,161.14000000000001,161.08,160.96,160.86,160.78,160.72,160.65,160.58,160.47,23.11,22.76,22.580000000000002,22.39,22.19,22.01,21.81,21.63,21.25,N/A,N/A +2012,4,10,22,30,101870,100690,99550,71.9,0,3.7,3.9,3.94,3.95,3.96,3.96,3.96,3.95,3.94,168.63,168.55,168.54,168.53,168.52,168.52,168.52,168.52,168.52,23.17,22.84,22.67,22.47,22.28,22.09,21.900000000000002,21.72,21.330000000000002,N/A,N/A +2012,4,10,23,30,101840,100670,99530,71.91,0,3.16,3.34,3.36,3.37,3.38,3.38,3.38,3.37,3.36,161.42000000000002,161.43,161.43,161.42000000000002,161.42000000000002,161.41,161.41,161.41,161.42000000000002,23.09,22.77,22.61,22.41,22.22,22.03,21.84,21.66,21.27,N/A,N/A +2012,4,11,0,30,101810,100640,99500,72.24,0,3.43,3.63,3.66,3.67,3.68,3.68,3.67,3.67,3.66,163.41,163.31,163.26,163.22,163.17000000000002,163.14000000000001,163.09,163.05,162.95000000000002,22.990000000000002,22.68,22.51,22.32,22.13,21.94,21.75,21.57,21.18,N/A,N/A +2012,4,11,1,30,101830,100660,99520,74.03,0,3.9,4.14,4.18,4.2,4.2,4.2,4.2,4.2,4.18,167.21,167.18,167.12,167.07,167.04,167,166.97,166.94,166.88,22.900000000000002,22.580000000000002,22.41,22.21,22.02,21.84,21.64,21.46,21.07,N/A,N/A +2012,4,11,2,30,101840,100660,99520,74.82000000000001,0,4.18,4.44,4.49,4.5,4.51,4.51,4.51,4.5,4.49,170,169.96,169.94,169.93,169.91,169.9,169.9,169.89000000000001,169.89000000000001,22.82,22.5,22.32,22.13,21.94,21.75,21.56,21.38,21,N/A,N/A +2012,4,11,3,30,101840,100660,99520,75.42,0,4.75,5.07,5.12,5.15,5.16,5.17,5.17,5.17,5.15,167.13,167.12,167.11,167.11,167.1,167.1,167.09,167.07,167.07,22.77,22.44,22.27,22.080000000000002,21.89,21.7,21.5,21.32,20.94,N/A,N/A +2012,4,11,4,30,101820,100650,99510,75.55,0,4.72,5.03,5.09,5.11,5.12,5.13,5.12,5.12,5.1000000000000005,176.14000000000001,176.17000000000002,176.17000000000002,176.18,176.19,176.19,176.20000000000002,176.22,176.26,22.740000000000002,22.41,22.240000000000002,22.04,21.86,21.67,21.47,21.29,20.91,N/A,N/A +2012,4,11,5,30,101840,100660,99520,75.04,0,4.65,4.96,5.0200000000000005,5.04,5.05,5.0600000000000005,5.0600000000000005,5.0600000000000005,5.05,183.37,183.41,183.39000000000001,183.39000000000001,183.39000000000001,183.4,183.41,183.42000000000002,183.46,22.75,22.42,22.25,22.05,21.86,21.68,21.48,21.3,20.92,N/A,N/A +2012,4,11,6,30,101870,100700,99560,76.59,0,4.66,4.95,5.01,5.04,5.0600000000000005,5.0600000000000005,5.07,5.07,5.0600000000000005,187.05,187.05,187.05,187.06,187.06,187.05,187.05,187.05,187.06,22.73,22.39,22.21,22.01,21.82,21.63,21.44,21.25,20.87,N/A,N/A +2012,4,11,7,30,101900,100720,99580,78.19,0,4.74,5.05,5.11,5.14,5.16,5.17,5.17,5.17,5.17,188.93,189,189,189.01,189.01,189.01,189.01,189.02,189.02,22.69,22.34,22.16,21.96,21.77,21.580000000000002,21.38,21.2,20.81,N/A,N/A +2012,4,11,8,30,101900,100720,99580,79.56,0,4.19,4.43,4.49,4.51,4.5200000000000005,4.53,4.53,4.53,4.53,196.86,196.85,196.86,196.88,196.88,196.89000000000001,196.89000000000001,196.9,196.92000000000002,22.63,22.28,22.1,21.900000000000002,21.71,21.52,21.32,21.14,20.75,N/A,N/A +2012,4,11,9,30,101910,100730,99590,80.63,0,4.1,4.34,4.39,4.41,4.42,4.43,4.43,4.43,4.43,204.78,204.85,204.88,204.9,204.92000000000002,204.93,204.95000000000002,204.97,205.01,22.580000000000002,22.23,22.05,21.85,21.66,21.47,21.27,21.09,20.7,N/A,N/A +2012,4,11,10,30,101920,100750,99600,80.51,0,3.17,3.33,3.37,3.38,3.38,3.39,3.39,3.39,3.38,206.16,206.14000000000001,206.13,206.12,206.1,206.08,206.07,206.05,206.01,22.57,22.22,22.04,21.85,21.650000000000002,21.47,21.27,21.080000000000002,20.7,N/A,N/A +2012,4,11,11,30,101950,100770,99630,82.21000000000001,0,2.82,2.96,2.98,3,3,3.0100000000000002,3.0100000000000002,3.0100000000000002,3.0100000000000002,201.76,201.75,201.74,201.72,201.71,201.70000000000002,201.68,201.67000000000002,201.66,22.490000000000002,22.14,21.97,21.77,21.57,21.39,21.19,21,20.62,N/A,N/A +2012,4,11,12,30,101960,100780,99640,82.98,0,2.81,2.94,2.96,2.97,2.97,2.98,2.97,2.97,2.97,202.16,202.14000000000001,202.12,202.09,202.08,202.06,202.04,202.02,201.97,22.44,22.1,21.92,21.72,21.53,21.34,21.14,20.96,20.57,N/A,N/A +2012,4,11,13,30,101970,100790,99650,83.72,0,2.22,2.32,2.34,2.34,2.35,2.35,2.35,2.35,2.35,193.07,193.01,192.98000000000002,192.93,192.88,192.83,192.78,192.73000000000002,192.6,22.400000000000002,22.06,21.88,21.68,21.490000000000002,21.3,21.1,20.92,20.53,N/A,N/A +2012,4,11,14,30,102000,100830,99680,84.52,0,2.69,2.81,2.83,2.84,2.84,2.84,2.84,2.84,2.84,189.83,189.77,189.73,189.69,189.65,189.61,189.56,189.53,189.43,22.41,22.06,21.89,21.68,21.490000000000002,21.3,21.1,20.92,20.53,N/A,N/A +2012,4,11,15,30,102020,100840,99700,85.11,0,2.32,2.41,2.42,2.42,2.43,2.42,2.42,2.42,2.41,173.47,173.21,173.09,172.97,172.85,172.73,172.61,172.5,172.27,22.44,22.080000000000002,21.900000000000002,21.7,21.51,21.32,21.12,20.94,20.55,N/A,N/A +2012,4,11,16,30,102020,100840,99700,83.19,0,2.45,2.49,2.46,2.42,2.38,2.34,2.31,2.27,2.2,147.47,148.57,149.16,149.79,150.42000000000002,151.05,151.76,152.41,154.02,22.54,22.18,22,21.79,21.6,21.41,21.21,21.03,20.64,N/A,N/A +2012,4,11,17,30,102010,100830,99680,83.45,0,2.39,2.48,2.49,2.49,2.49,2.49,2.48,2.48,2.47,174.35,173.83,173.52,173.22,172.92000000000002,172.63,172.34,172.07,171.46,22.61,22.240000000000002,22.06,21.86,21.67,21.48,21.28,21.1,20.71,N/A,N/A +2012,4,11,18,30,102000,100820,99680,84.26,0,2.72,2.84,2.86,2.87,2.88,2.88,2.88,2.88,2.88,167.01,166.68,166.5,166.33,166.16,165.99,165.81,165.65,165.26,22.7,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.18,20.79,N/A,N/A +2012,4,11,19,30,101980,100800,99660,82.4,0,3.34,3.49,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5,3.49,3.48,158.43,158.51,158.55,158.58,158.61,158.65,158.69,158.71,158.8,22.85,22.48,22.3,22.09,21.900000000000002,21.71,21.52,21.330000000000002,20.95,N/A,N/A +2012,4,11,20,30,101940,100760,99620,82.83,0,3.47,3.63,3.66,3.67,3.67,3.67,3.66,3.66,3.64,163.88,164.02,164.05,164.08,164.11,164.14000000000001,164.18,164.21,164.32,22.91,22.54,22.36,22.16,21.97,21.78,21.580000000000002,21.400000000000002,21.02,N/A,N/A +2012,4,11,21,30,101910,100740,99600,84.02,0,4.14,4.38,4.42,4.44,4.45,4.46,4.46,4.46,4.45,167.78,167.79,167.79,167.79,167.8,167.8,167.8,167.81,167.83,22.94,22.57,22.39,22.19,22,21.81,21.61,21.43,21.04,N/A,N/A +2012,4,11,22,30,101860,100690,99550,81.60000000000001,0,4.5600000000000005,4.82,4.87,4.89,4.89,4.89,4.89,4.88,4.86,171.4,171.46,171.47,171.49,171.5,171.51,171.52,171.53,171.58,22.95,22.61,22.43,22.23,22.04,21.85,21.66,21.47,21.09,N/A,N/A +2012,4,11,23,30,101820,100640,99500,81.47,0,5.72,6.1000000000000005,6.18,6.2,6.22,6.22,6.22,6.21,6.19,172.9,172.8,172.71,172.62,172.54,172.46,172.38,172.29,172.1,22.89,22.55,22.37,22.17,21.98,21.79,21.6,21.42,21.04,N/A,N/A +2012,4,12,0,30,101800,100620,99480,82.42,0,5.8,6.21,6.29,6.32,6.33,6.33,6.32,6.3100000000000005,6.2700000000000005,171.18,171.08,171.07,171.07,171.07,171.07,171.08,171.1,171.13,22.830000000000002,22.48,22.3,22.1,21.91,21.72,21.53,21.35,20.96,N/A,N/A +2012,4,12,1,30,101770,100600,99460,77.69,0,5.91,6.32,6.41,6.43,6.44,6.43,6.41,6.390000000000001,6.3,165.29,165.41,165.47,165.53,165.59,165.66,165.74,165.82,166.08,22.98,22.650000000000002,22.48,22.28,22.09,21.900000000000002,21.7,21.52,21.13,N/A,N/A +2012,4,12,2,30,101790,100610,99480,78.22,0,5.23,5.64,5.74,5.8,5.8500000000000005,5.88,5.92,5.95,6.04,174.69,174.15,173.85,173.57,173.29,173.02,172.70000000000002,172.4,171.55,22.98,22.650000000000002,22.47,22.28,22.09,21.900000000000002,21.71,21.53,21.17,N/A,N/A +2012,4,12,3,30,101800,100620,99480,75.73,0,5.22,5.62,5.72,5.79,5.83,5.87,5.91,5.95,6.0600000000000005,167.13,167.04,166.98,166.91,166.84,166.78,166.71,166.65,166.49,23.11,22.79,22.62,22.43,22.240000000000002,22.06,21.87,21.7,21.35,N/A,N/A +2012,4,12,4,30,101790,100620,99480,78.89,0,5.45,5.83,5.91,5.94,5.95,5.94,5.93,5.92,5.87,168.05,168.09,168.11,168.12,168.13,168.15,168.16,168.16,168.17000000000002,22.98,22.64,22.46,22.26,22.07,21.88,21.68,21.5,21.11,N/A,N/A +2012,4,12,5,30,101780,100610,99470,79.48,0,5.64,6.05,6.140000000000001,6.18,6.21,6.23,6.24,6.25,6.26,167.18,167.27,167.29,167.3,167.32,167.32,167.33,167.33,167.35,22.88,22.54,22.36,22.16,21.97,21.79,21.59,21.41,21.03,N/A,N/A +2012,4,12,6,30,101800,100620,99480,80.19,0,5.24,5.62,5.69,5.72,5.74,5.75,5.75,5.75,5.74,167.39000000000001,167.43,167.47,167.51,167.55,167.59,167.64000000000001,167.68,167.79,22.88,22.53,22.35,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,4,12,7,30,101800,100630,99490,83.24,0,5.14,5.47,5.54,5.58,5.6000000000000005,5.61,5.62,5.62,5.65,175.74,175.8,175.81,175.84,175.86,175.89000000000001,175.92000000000002,175.96,176.06,22.72,22.36,22.19,21.990000000000002,21.79,21.61,21.42,21.23,20.86,N/A,N/A +2012,4,12,8,30,101800,100630,99490,83.93,0,5.21,5.5600000000000005,5.64,5.68,5.7,5.71,5.72,5.72,5.72,170.21,170.23,170.27,170.3,170.33,170.35,170.37,170.39000000000001,170.43,22.72,22.37,22.19,21.990000000000002,21.8,21.61,21.41,21.23,20.85,N/A,N/A +2012,4,12,9,30,101810,100630,99490,84.06,0,4.23,4.49,4.54,4.57,4.59,4.6000000000000005,4.61,4.61,4.62,155.81,155.92000000000002,156,156.08,156.15,156.21,156.28,156.35,156.48,22.7,22.35,22.17,21.97,21.78,21.59,21.39,21.21,20.82,N/A,N/A +2012,4,12,10,30,101790,100620,99480,84.35000000000001,0,4.43,4.71,4.7700000000000005,4.79,4.82,4.83,4.83,4.84,4.84,127.42,127.73,127.85000000000001,127.97,128.09,128.2,128.31,128.42000000000002,128.65,22.69,22.330000000000002,22.150000000000002,21.95,21.76,21.57,21.37,21.18,20.79,N/A,N/A +2012,4,12,11,30,101800,100620,99480,85.83,0,5.68,6.12,6.22,6.2700000000000005,6.3100000000000005,6.33,6.34,6.36,6.37,134.51,134.65,134.65,134.65,134.66,134.66,134.66,134.66,134.67000000000002,22.7,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.17,20.78,N/A,N/A +2012,4,12,12,30,101830,100660,99520,84.57000000000001,0,5.67,6.13,6.25,6.32,6.37,6.41,6.43,6.45,6.48,141.74,142.07,142.28,142.46,142.62,142.77,142.91,143.03,143.29,22.63,22.27,22.080000000000002,21.88,21.68,21.5,21.29,21.11,20.72,N/A,N/A +2012,4,12,13,30,101850,100670,99530,82.74,0,5.32,5.72,5.82,5.87,5.92,5.96,5.99,6.01,6.07,138.81,138.73,138.66,138.57,138.5,138.43,138.36,138.29,138.17000000000002,22.6,22.240000000000002,22.06,21.86,21.67,21.490000000000002,21.29,21.11,20.740000000000002,N/A,N/A +2012,4,12,14,30,101850,100680,99530,83.33,0,6.0200000000000005,6.48,6.6000000000000005,6.66,6.71,6.74,6.7700000000000005,6.79,6.83,135.38,135.48,135.5,135.5,135.5,135.49,135.48,135.47,135.43,22.75,22.38,22.2,22,21.81,21.62,21.42,21.240000000000002,20.85,N/A,N/A +2012,4,12,15,30,101880,100710,99570,83.26,0,5.89,6.33,6.43,6.49,6.5200000000000005,6.55,6.5600000000000005,6.58,6.59,138.20000000000002,138.16,138.16,138.17000000000002,138.18,138.21,138.25,138.28,138.36,22.82,22.45,22.27,22.07,21.88,21.68,21.490000000000002,21.3,20.91,N/A,N/A +2012,4,12,16,30,101900,100730,99590,81.34,0,6.2700000000000005,6.71,6.8100000000000005,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,6.890000000000001,132.53,132.76,132.88,132.99,133.07,133.15,133.23,133.31,133.48,22.94,22.57,22.39,22.19,22,21.81,21.62,21.43,21.05,N/A,N/A +2012,4,12,17,30,101870,100700,99560,80.27,0,5.98,6.42,6.53,6.58,6.62,6.640000000000001,6.66,6.68,6.7,141.23,141.26,141.27,141.27,141.27,141.28,141.28,141.29,141.32,23.080000000000002,22.72,22.54,22.34,22.150000000000002,21.96,21.76,21.580000000000002,21.19,N/A,N/A +2012,4,12,18,30,101870,100690,99550,82.01,0,6.36,6.82,6.93,6.99,7.03,7.05,7.07,7.08,7.1000000000000005,143.28,143.58,143.76,143.92000000000002,144.06,144.20000000000002,144.34,144.46,144.73,23.080000000000002,22.72,22.54,22.330000000000002,22.14,21.95,21.75,21.57,21.18,N/A,N/A +2012,4,12,19,30,101860,100680,99540,80.52,0,6.76,7.3,7.43,7.5,7.54,7.57,7.59,7.61,7.63,148.5,148.70000000000002,148.83,148.94,149.03,149.12,149.21,149.29,149.46,23.2,22.85,22.67,22.47,22.28,22.09,21.900000000000002,21.71,21.32,N/A,N/A +2012,4,12,20,30,101820,100640,99510,81.36,0,6.84,7.390000000000001,7.51,7.57,7.6000000000000005,7.61,7.62,7.62,7.61,149.08,149.23,149.29,149.34,149.37,149.4,149.42000000000002,149.45000000000002,149.49,23.16,22.8,22.63,22.43,22.23,22.04,21.84,21.66,21.27,N/A,N/A +2012,4,12,21,30,101780,100610,99470,79.46000000000001,0,6.47,7.05,7.2,7.29,7.3500000000000005,7.4,7.43,7.46,7.5,150.74,150.58,150.54,150.5,150.47,150.44,150.41,150.39000000000001,150.35,23.22,22.88,22.7,22.5,22.31,22.12,21.92,21.740000000000002,21.35,N/A,N/A +2012,4,12,22,30,101760,100580,99450,80.03,0,7.29,7.94,8.120000000000001,8.23,8.32,8.39,8.45,8.5,8.58,144.22,144.96,145.34,145.72,146.06,146.39000000000001,146.70000000000002,147,147.61,23.31,22.990000000000002,22.82,22.63,22.45,22.27,22.080000000000002,21.900000000000002,21.54,N/A,N/A +2012,4,12,23,30,101710,100530,99400,78.87,0,7.32,7.98,8.15,8.24,8.31,8.36,8.39,8.42,8.47,148.48,148.57,148.6,148.62,148.64000000000001,148.67000000000002,148.68,148.69,148.72,23.23,22.89,22.71,22.52,22.330000000000002,22.14,21.94,21.76,21.37,N/A,N/A +2012,4,13,0,30,101680,100510,99370,79.71000000000001,0,8.53,9.3,9.48,9.56,9.61,9.64,9.65,9.65,9.63,147.19,147.31,147.36,147.42000000000002,147.47,147.51,147.56,147.6,147.67000000000002,23.19,22.84,22.66,22.46,22.26,22.080000000000002,21.87,21.69,21.3,N/A,N/A +2012,4,13,1,30,101640,100470,99330,77.61,0,7.84,8.55,8.73,8.84,8.91,8.97,9.02,9.06,9.13,150.58,150.64000000000001,150.66,150.66,150.65,150.63,150.61,150.59,150.53,23.22,22.88,22.7,22.51,22.31,22.13,21.93,21.75,21.37,N/A,N/A +2012,4,13,2,30,101660,100490,99350,79.21000000000001,0,8.47,9.32,9.53,9.66,9.74,9.8,9.84,9.88,9.91,146.99,147.16,147.26,147.35,147.44,147.51,147.58,147.64000000000001,147.78,23.27,22.93,22.75,22.55,22.35,22.16,21.96,21.78,21.39,N/A,N/A +2012,4,13,3,30,101650,100480,99340,77.2,0,8.52,9.26,9.450000000000001,9.55,9.620000000000001,9.67,9.71,9.74,9.8,152.94,152.36,152.12,151.9,151.71,151.55,151.41,151.28,151.06,23.330000000000002,23.01,22.84,22.650000000000002,22.46,22.28,22.09,21.91,21.54,N/A,N/A +2012,4,13,4,30,101640,100470,99330,76.13,0,9.33,10.22,10.43,10.53,10.6,10.64,10.66,10.68,10.68,156.69,156.53,156.42000000000002,156.31,156.20000000000002,156.1,155.99,155.9,155.69,23.34,22.990000000000002,22.82,22.62,22.43,22.240000000000002,22.04,21.86,21.47,N/A,N/A +2012,4,13,5,30,101630,100460,99320,79.98,0,9.27,10.16,10.39,10.52,10.61,10.67,10.72,10.75,10.790000000000001,151.13,151.29,151.4,151.5,151.59,151.68,151.77,151.85,152.01,23.22,22.87,22.7,22.490000000000002,22.3,22.11,21.91,21.72,21.330000000000002,N/A,N/A +2012,4,13,6,30,101620,100450,99310,72.22,0,9.11,9.98,10.18,10.3,10.38,10.43,10.47,10.5,10.540000000000001,162,161.70000000000002,161.59,161.49,161.41,161.33,161.26,161.19,161.05,23.48,23.150000000000002,22.97,22.77,22.580000000000002,22.39,22.19,22.01,21.62,N/A,N/A +2012,4,13,7,30,101640,100460,99330,73.36,0,9.32,10.28,10.52,10.66,10.76,10.83,10.89,10.93,10.99,166.75,166.1,165.82,165.56,165.33,165.12,164.91,164.72,164.34,23.44,23.1,22.92,22.72,22.53,22.34,22.150000000000002,21.96,21.57,N/A,N/A +2012,4,13,8,30,101600,100430,99300,77.52,0,9.28,10.15,10.370000000000001,10.49,10.57,10.620000000000001,10.66,10.69,10.72,158.58,158.86,159.05,159.26,159.44,159.62,159.8,159.97,160.32,23.31,22.95,22.78,22.580000000000002,22.39,22.2,22.01,21.82,21.44,N/A,N/A +2012,4,13,9,30,101600,100430,99290,79.21000000000001,0,9.55,10.5,10.75,10.88,10.97,11.03,11.07,11.1,11.120000000000001,158.09,157.99,158.02,158.06,158.1,158.15,158.20000000000002,158.25,158.36,23.18,22.830000000000002,22.650000000000002,22.44,22.25,22.06,21.86,21.68,21.29,N/A,N/A +2012,4,13,10,30,101580,100410,99280,80.49,0,8.950000000000001,9.870000000000001,10.120000000000001,10.27,10.39,10.47,10.53,10.59,10.67,163.95000000000002,163.70000000000002,163.57,163.45000000000002,163.34,163.25,163.14000000000001,163.05,162.86,23.21,22.86,22.68,22.48,22.28,22.09,21.89,21.71,21.32,N/A,N/A +2012,4,13,11,30,101570,100400,99270,78.15,0,8.94,9.82,10.05,10.18,10.28,10.34,10.39,10.44,10.5,162.65,162.49,162.45000000000002,162.43,162.42000000000002,162.41,162.41,162.41,162.43,23.28,22.93,22.75,22.55,22.35,22.16,21.97,21.78,21.39,N/A,N/A +2012,4,13,12,30,101590,100420,99290,79.49,0,8.48,9.370000000000001,9.620000000000001,9.78,9.91,10,10.08,10.14,10.24,163.18,163.34,163.4,163.44,163.46,163.48,163.49,163.49,163.49,23.47,23.14,22.96,22.76,22.57,22.38,22.18,22,21.61,N/A,N/A +2012,4,13,13,30,101620,100450,99320,79.38,0,8.370000000000001,9.27,9.52,9.69,9.81,9.91,9.99,10.06,10.17,165.67000000000002,165.49,165.35,165.22,165.09,164.96,164.83,164.71,164.47,23.59,23.26,23.09,22.89,22.7,22.51,22.31,22.13,21.75,N/A,N/A +2012,4,13,14,30,101670,100500,99370,79.31,0,8.790000000000001,9.67,9.870000000000001,9.98,10.05,10.1,10.14,10.16,10.17,158.92000000000002,159.19,159.25,159.29,159.33,159.36,159.38,159.41,159.47,23.71,23.38,23.21,23.01,22.82,22.63,22.44,22.25,21.86,N/A,N/A +2012,4,13,15,30,101710,100530,99400,82.22,0,7.9,8.64,8.82,8.93,9,9.05,9.09,9.120000000000001,9.17,159.42000000000002,159.70000000000002,159.82,159.94,160.04,160.14000000000001,160.23,160.32,160.5,23.71,23.39,23.22,23.02,22.830000000000002,22.650000000000002,22.45,22.27,21.89,N/A,N/A +2012,4,13,16,30,101730,100560,99430,82.52,0,7.42,8.13,8.32,8.44,8.51,8.58,8.620000000000001,8.66,8.72,163.71,164.38,164.68,164.96,165.20000000000002,165.42000000000002,165.62,165.81,166.17000000000002,23.88,23.57,23.400000000000002,23.2,23.02,22.830000000000002,22.63,22.45,22.07,N/A,N/A +2012,4,13,17,30,101720,100550,99420,85.31,0,8.36,9.200000000000001,9.4,9.52,9.6,9.66,9.69,9.71,9.73,159.94,160.29,160.5,160.73,160.94,161.14000000000001,161.34,161.54,161.93,23.85,23.53,23.35,23.16,22.96,22.77,22.580000000000002,22.400000000000002,22.01,N/A,N/A +2012,4,13,18,30,101730,100560,99430,82.25,0,8.51,9.38,9.6,9.73,9.81,9.870000000000001,9.91,9.94,9.97,157.43,157.70000000000002,157.81,157.91,157.98,158.05,158.11,158.16,158.25,23.97,23.66,23.490000000000002,23.29,23.1,22.91,22.72,22.54,22.150000000000002,N/A,N/A +2012,4,13,19,30,101710,100540,99410,84.17,0,7.86,8.620000000000001,8.81,8.92,8.99,9.040000000000001,9.08,9.1,9.14,153.62,153.58,153.6,153.62,153.64000000000001,153.66,153.69,153.71,153.77,23.97,23.66,23.490000000000002,23.3,23.11,22.92,22.72,22.54,22.150000000000002,N/A,N/A +2012,4,13,20,30,101670,100500,99370,86.34,0,8.370000000000001,9.22,9.43,9.56,9.64,9.69,9.73,9.75,9.78,143.36,143.52,143.66,143.82,143.96,144.1,144.23,144.36,144.64000000000001,23.96,23.650000000000002,23.490000000000002,23.29,23.1,22.91,22.72,22.53,22.150000000000002,N/A,N/A +2012,4,13,21,30,101630,100470,99330,86.88,0,9.74,10.77,11.040000000000001,11.21,11.32,11.39,11.44,11.48,11.53,143.65,143.81,143.89000000000001,143.99,144.06,144.14000000000001,144.22,144.28,144.43,23.96,23.650000000000002,23.490000000000002,23.29,23.1,22.91,22.72,22.54,22.16,N/A,N/A +2012,4,13,22,30,101590,100420,99290,85.46000000000001,0,9.75,10.82,11.11,11.28,11.41,11.5,11.57,11.63,11.700000000000001,147.06,147.17000000000002,147.26,147.34,147.41,147.48,147.54,147.6,147.72,23.95,23.650000000000002,23.48,23.29,23.1,22.91,22.72,22.53,22.150000000000002,N/A,N/A +2012,4,13,23,30,101570,100400,99270,87.33,0,10.25,11.38,11.66,11.84,11.97,12.06,12.120000000000001,12.17,12.24,147.57,147.72,147.81,147.9,147.98,148.05,148.12,148.18,148.31,23.85,23.53,23.36,23.17,22.98,22.79,22.59,22.41,22.03,N/A,N/A +2012,4,14,0,30,101530,100360,99230,87.7,0,10.39,11.55,11.86,12.05,12.19,12.290000000000001,12.370000000000001,12.43,12.51,143.11,143.28,143.35,143.41,143.46,143.51,143.56,143.6,143.69,23.84,23.53,23.35,23.16,22.97,22.78,22.59,22.400000000000002,22.01,N/A,N/A +2012,4,14,1,30,101510,100340,99210,85.64,0,11.18,12.41,12.700000000000001,12.88,13.01,13.09,13.15,13.19,13.24,144.36,144.52,144.59,144.66,144.73,144.8,144.88,144.95000000000002,145.11,23.82,23.5,23.330000000000002,23.13,22.94,22.76,22.56,22.38,21.990000000000002,N/A,N/A +2012,4,14,2,30,101530,100370,99230,86.14,0,11.57,12.870000000000001,13.21,13.41,13.55,13.65,13.73,13.790000000000001,13.86,149.61,149.64000000000001,149.67000000000002,149.69,149.72,149.74,149.75,149.77,149.81,23.8,23.48,23.31,23.11,22.91,22.73,22.53,22.35,21.96,N/A,N/A +2012,4,14,3,30,101540,100380,99250,85.58,0,11.3,12.57,12.9,13.1,13.25,13.35,13.43,13.49,13.57,150.6,150.61,150.64000000000001,150.67000000000002,150.70000000000002,150.74,150.77,150.81,150.89000000000001,23.75,23.42,23.25,23.05,22.86,22.67,22.47,22.29,21.900000000000002,N/A,N/A +2012,4,14,4,30,101540,100370,99240,85.33,0,11.35,12.55,12.870000000000001,13.05,13.18,13.280000000000001,13.35,13.41,13.49,150.5,150.97,151.17000000000002,151.35,151.51,151.66,151.8,151.93,152.20000000000002,23.72,23.39,23.22,23.02,22.82,22.63,22.43,22.25,21.86,N/A,N/A +2012,4,14,5,30,101510,100340,99210,83.65,0,12.040000000000001,13.4,13.75,13.96,14.1,14.21,14.280000000000001,14.33,14.4,155.98,155.87,155.8,155.71,155.64000000000001,155.55,155.47,155.4,155.23,23.69,23.35,23.18,22.98,22.79,22.6,22.400000000000002,22.22,21.830000000000002,N/A,N/A +2012,4,14,6,30,101520,100350,99220,84.08,0,11.76,13.19,13.59,13.85,14.05,14.21,14.33,14.44,14.6,155.85,155.8,155.76,155.71,155.65,155.58,155.51,155.44,155.27,23.650000000000002,23.38,23.23,23.04,22.86,22.69,22.5,22.32,21.95,N/A,N/A +2012,4,14,7,30,101540,100370,99240,85.32000000000001,0,11.38,12.73,13.1,13.33,13.51,13.64,13.74,13.82,13.94,151.32,151.47,151.56,151.65,151.75,151.83,151.92000000000002,152,152.17000000000002,23.580000000000002,23.3,23.13,22.95,22.76,22.580000000000002,22.38,22.2,21.82,N/A,N/A +2012,4,14,8,30,101520,100350,99220,85.67,0,11.96,13.370000000000001,13.75,14.01,14.200000000000001,14.35,14.48,14.59,14.8,156.97,157.05,157.09,157.11,157.13,157.14000000000001,157.14000000000001,157.14000000000001,157.13,23.5,23.21,23.05,22.87,22.68,22.5,22.31,22.13,21.76,N/A,N/A +2012,4,14,9,30,101510,100350,99210,86.04,0,11.39,12.75,13.120000000000001,13.36,13.540000000000001,13.68,13.780000000000001,13.870000000000001,14,154.24,154.13,154.14000000000001,154.18,154.21,154.26,154.31,154.37,154.51,23.44,23.14,22.98,22.79,22.6,22.42,22.22,22.04,21.66,N/A,N/A +2012,4,14,10,30,101520,100350,99220,86.06,0,11.41,12.700000000000001,13.06,13.290000000000001,13.46,13.6,13.71,13.81,14,155.78,155.76,155.78,155.8,155.82,155.83,155.85,155.87,155.9,23.41,23.11,22.95,22.76,22.580000000000002,22.39,22.2,22.03,21.650000000000002,N/A,N/A +2012,4,14,11,30,101520,100350,99220,87.16,0,12.11,13.49,13.85,14.06,14.21,14.32,14.39,14.450000000000001,14.51,154.99,155.06,155.1,155.15,155.19,155.22,155.25,155.29,155.35,23.26,22.94,22.77,22.57,22.37,22.19,21.990000000000002,21.8,21.41,N/A,N/A +2012,4,14,12,30,101530,100360,99230,87.32000000000001,0,12.17,13.6,13.98,14.22,14.4,14.540000000000001,14.63,14.72,14.83,152.8,152.88,152.95000000000002,153.01,153.07,153.13,153.19,153.25,153.38,23.29,22.97,22.8,22.6,22.41,22.22,22.03,21.84,21.46,N/A,N/A +2012,4,14,13,30,101550,100380,99250,86.85000000000001,0,11.64,12.96,13.31,13.530000000000001,13.700000000000001,13.83,13.950000000000001,14.05,14.25,152.31,152.51,152.6,152.70000000000002,152.8,152.9,153.01,153.12,153.36,23.31,23,22.84,22.650000000000002,22.46,22.28,22.09,21.92,21.55,N/A,N/A +2012,4,14,14,30,101580,100410,99280,86.02,0,11.47,12.69,13.030000000000001,13.24,13.41,13.540000000000001,13.67,13.790000000000001,14.08,154.12,154.45000000000002,154.6,154.76,154.92000000000002,155.08,155.25,155.42000000000002,155.82,23.41,23.12,22.96,22.77,22.6,22.42,22.240000000000002,22.07,21.73,N/A,N/A +2012,4,14,15,30,101600,100430,99300,86.44,0,12.11,13.51,13.89,14.120000000000001,14.290000000000001,14.42,14.52,14.61,14.74,152.28,152.53,152.64000000000001,152.75,152.86,152.96,153.07,153.17000000000002,153.4,23.41,23.11,22.95,22.75,22.57,22.39,22.2,22.02,21.650000000000002,N/A,N/A +2012,4,14,16,30,101590,100420,99280,84.75,0,10.98,12.21,12.540000000000001,12.75,12.9,13.02,13.11,13.200000000000001,13.34,154.15,154.31,154.37,154.45000000000002,154.52,154.6,154.69,154.77,154.97,23.490000000000002,23.2,23.04,22.85,22.66,22.48,22.29,22.11,21.73,N/A,N/A +2012,4,14,17,30,101580,100410,99280,82.73,0,11.19,12.41,12.73,12.93,13.07,13.17,13.25,13.32,13.43,153.93,154.03,154.08,154.13,154.17000000000002,154.21,154.26,154.31,154.43,23.55,23.27,23.11,22.92,22.73,22.55,22.37,22.19,21.82,N/A,N/A +2012,4,14,18,30,101570,100400,99270,81.85000000000001,0,11.290000000000001,12.65,13.01,13.25,13.42,13.540000000000001,13.63,13.71,13.81,150.85,150.61,150.55,150.51,150.47,150.44,150.41,150.39000000000001,150.36,23.63,23.34,23.18,22.990000000000002,22.8,22.61,22.42,22.23,21.85,N/A,N/A +2012,4,14,19,30,101550,100390,99250,81.73,0,11.89,13.21,13.56,13.77,13.91,14.01,14.08,14.13,14.19,148.36,148.34,148.39000000000001,148.42000000000002,148.46,148.49,148.52,148.56,148.63,23.63,23.36,23.2,23.01,22.82,22.64,22.45,22.27,21.900000000000002,N/A,N/A +2012,4,14,20,30,101500,100330,99200,81.73,0,11.34,12.6,12.94,13.16,13.32,13.450000000000001,13.56,13.65,13.84,148.78,149.18,149.35,149.53,149.70000000000002,149.86,150.04,150.22,150.6,23.6,23.330000000000002,23.17,22.98,22.81,22.63,22.44,22.27,21.91,N/A,N/A +2012,4,14,21,30,101450,100280,99150,82.18,0,11.21,12.56,12.92,13.17,13.35,13.5,13.63,13.74,13.94,150.3,150.38,150.45000000000002,150.53,150.6,150.67000000000002,150.74,150.81,150.98,23.580000000000002,23.31,23.150000000000002,22.96,22.78,22.6,22.41,22.23,21.86,N/A,N/A +2012,4,14,22,30,101400,100230,99100,83.08,0,11.3,12.65,13.01,13.26,13.46,13.61,13.75,13.88,14.13,149.64000000000001,149.85,149.97,150.09,150.22,150.34,150.47,150.59,150.89000000000001,23.52,23.240000000000002,23.080000000000002,22.900000000000002,22.72,22.54,22.35,22.18,21.81,N/A,N/A +2012,4,14,23,30,101350,100190,99060,83.53,0,11.94,13.44,13.84,14.13,14.35,14.530000000000001,14.67,14.8,15.01,148.63,148.66,148.71,148.76,148.82,148.87,148.92000000000002,148.97,149.08,23.47,23.19,23.02,22.830000000000002,22.650000000000002,22.47,22.27,22.09,21.72,N/A,N/A +2012,4,15,0,30,101290,100130,99000,83.85000000000001,0,11.78,13.290000000000001,13.700000000000001,14,14.23,14.43,14.6,14.75,15.02,148.75,148.95000000000002,149.07,149.18,149.29,149.4,149.51,149.62,149.85,23.46,23.17,23.01,22.82,22.64,22.46,22.27,22.09,21.72,N/A,N/A +2012,4,15,1,30,101250,100080,98950,84.37,0,13.21,14.870000000000001,15.32,15.63,15.85,16.02,16.15,16.25,16.41,148.41,148.29,148.28,148.28,148.29,148.29,148.31,148.32,148.36,23.43,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.01,21.63,N/A,N/A +2012,4,15,2,30,101230,100070,98940,84.38,0,12.790000000000001,14.32,14.74,15.030000000000001,15.24,15.4,15.540000000000001,15.66,15.870000000000001,148.67000000000002,148.82,148.92000000000002,149.03,149.13,149.23,149.33,149.43,149.65,23.45,23.16,22.990000000000002,22.8,22.62,22.44,22.240000000000002,22.07,21.69,N/A,N/A +2012,4,15,3,30,101200,100040,98910,86.22,0,13.030000000000001,14.56,14.96,15.23,15.42,15.58,15.700000000000001,15.81,16,148.44,148.59,148.68,148.78,148.88,148.98,149.09,149.20000000000002,149.46,23.34,23.03,22.87,22.67,22.490000000000002,22.3,22.11,21.93,21.56,N/A,N/A +2012,4,15,4,30,101170,100010,98880,87.37,0,13.48,15.11,15.55,15.84,16.05,16.21,16.34,16.45,16.62,150.97,151.04,151.08,151.13,151.18,151.23,151.28,151.34,151.46,23.26,22.95,22.78,22.580000000000002,22.39,22.21,22.01,21.830000000000002,21.46,N/A,N/A +2012,4,15,5,30,101150,99980,98850,87.91,0,13.290000000000001,14.89,15.32,15.6,15.81,15.98,16.11,16.22,16.42,154.05,154.16,154.23,154.3,154.36,154.43,154.49,154.56,154.73,23.25,22.93,22.76,22.57,22.38,22.19,22,21.82,21.44,N/A,N/A +2012,4,15,6,30,101140,99980,98850,89.04,0,13.07,14.59,15,15.27,15.46,15.610000000000001,15.73,15.84,16.02,155.13,155.24,155.3,155.38,155.45000000000002,155.52,155.6,155.68,155.87,23.23,22.91,22.73,22.54,22.35,22.16,21.97,21.79,21.42,N/A,N/A +2012,4,15,7,30,101120,99960,98830,90.39,0,13.47,15.09,15.52,15.8,16.01,16.17,16.3,16.4,16.57,157.41,157.57,157.65,157.73,157.81,157.88,157.97,158.05,158.24,23.22,22.89,22.71,22.51,22.32,22.13,21.94,21.75,21.37,N/A,N/A +2012,4,15,8,30,101100,99930,98800,90.98,0,13.42,15.040000000000001,15.47,15.76,15.97,16.14,16.27,16.38,16.55,161.84,161.76,161.76,161.75,161.76,161.76,161.78,161.8,161.84,23.240000000000002,22.91,22.73,22.54,22.34,22.16,21.96,21.78,21.39,N/A,N/A +2012,4,15,9,30,101110,99940,98810,89.89,0,13.73,15.39,15.85,16.16,16.39,16.56,16.7,16.82,17.02,162.26,162.43,162.49,162.55,162.6,162.64000000000001,162.69,162.73,162.83,23.27,22.95,22.78,22.580000000000002,22.39,22.2,22.01,21.830000000000002,21.44,N/A,N/A +2012,4,15,10,30,101060,99900,98770,91.04,0,13.93,15.56,16,16.29,16.5,16.68,16.82,16.95,17.2,159.98,160.17000000000002,160.26,160.36,160.46,160.56,160.68,160.79,161.08,23.28,22.96,22.79,22.59,22.400000000000002,22.22,22.03,21.85,21.48,N/A,N/A +2012,4,15,11,30,101090,99920,98800,91.33,0,12.700000000000001,14.280000000000001,14.72,15.040000000000001,15.290000000000001,15.5,15.700000000000001,15.870000000000001,16.23,159.70000000000002,159.87,159.98,160.1,160.22,160.34,160.48,160.61,160.92000000000002,23.35,23.05,22.88,22.69,22.5,22.32,22.13,21.96,21.59,N/A,N/A +2012,4,15,12,30,101100,99940,98810,90.96000000000001,0,12.16,13.68,14.09,14.4,14.65,14.870000000000001,15.07,15.25,15.66,161.41,161.51,161.6,161.70000000000002,161.8,161.89000000000001,162.01,162.12,162.38,23.42,23.12,22.95,22.76,22.580000000000002,22.400000000000002,22.21,22.04,21.67,N/A,N/A +2012,4,15,13,30,101120,99960,98840,88.99,0,12.25,13.82,14.34,14.780000000000001,15.19,15.58,16.04,16.490000000000002,17.650000000000002,161.47,161.75,161.93,162.12,162.32,162.52,162.75,162.97,163.53,23.59,23.32,23.17,23,22.84,22.67,22.51,22.36,22.06,N/A,N/A +2012,4,15,14,30,101170,100000,98880,85.85000000000001,0,11.790000000000001,13.3,13.790000000000001,14.21,14.59,14.97,15.38,15.77,16.64,157.88,158.22,158.48,158.78,159.1,159.45000000000002,159.86,160.26,161.16,23.81,23.57,23.43,23.26,23.1,22.94,22.77,22.62,22.3,N/A,N/A +2012,4,15,15,30,101160,100000,98870,87.2,0,12.08,13.620000000000001,14.09,14.47,14.81,15.11,15.42,15.72,16.44,157.96,158.20000000000002,158.35,158.54,158.74,158.96,159.22,159.47,160.11,23.78,23.52,23.37,23.19,23.02,22.84,22.67,22.5,22.16,N/A,N/A +2012,4,15,16,30,101180,100020,98900,86.16,0,10.15,11.97,12.780000000000001,13.58,14.08,14.38,14.77,15.17,15.88,160.08,160.57,161.06,161.83,162.28,162.49,162.62,162.71,163.01,23.95,23.740000000000002,23.6,23.43,23.25,23.080000000000002,22.91,22.77,22.44,N/A,N/A +2012,4,15,17,30,101230,100070,98940,85.46000000000001,0,11.28,12.790000000000001,13.280000000000001,13.67,13.99,14.27,14.530000000000001,14.76,15.200000000000001,163.53,163.67000000000002,163.78,163.89000000000001,164,164.11,164.23,164.34,164.6,24.14,23.93,23.79,23.62,23.45,23.29,23.11,22.95,22.6,N/A,N/A +2012,4,15,18,30,101230,100070,98950,87.96000000000001,0,10.76,12.16,12.620000000000001,12.98,13.280000000000001,13.55,13.790000000000001,14,14.42,161.53,161.66,161.81,161.97,162.12,162.27,162.43,162.58,162.91,24.07,23.85,23.71,23.53,23.37,23.2,23.02,22.85,22.5,N/A,N/A +2012,4,15,19,30,101240,100080,98950,90.34,0,11.16,12.6,13.06,13.43,13.72,13.99,14.23,14.450000000000001,14.870000000000001,165.27,165.52,165.62,165.77,165.91,166.06,166.23,166.39000000000001,166.77,24.02,23.79,23.650000000000002,23.47,23.3,23.13,22.95,22.79,22.44,N/A,N/A +2012,4,15,20,30,101200,100040,98920,91.57000000000001,0,10.71,12.16,12.64,13.040000000000001,13.36,13.65,13.91,14.15,14.6,165.42000000000002,165.55,165.67000000000002,165.8,165.93,166.06,166.20000000000002,166.34,166.64000000000001,24.04,23.82,23.68,23.5,23.34,23.17,22.990000000000002,22.82,22.48,N/A,N/A +2012,4,15,21,30,101200,100040,98910,91.95,0,9.86,11.16,11.59,11.94,12.23,12.49,12.74,12.97,13.41,163.6,163.94,164.12,164.32,164.54,164.77,165.03,165.28,165.9,23.990000000000002,23.76,23.62,23.45,23.29,23.12,22.95,22.79,22.47,N/A,N/A +2012,4,15,22,30,101180,100020,98890,91.83,0,10.450000000000001,11.8,12.23,12.57,12.86,13.11,13.34,13.56,13.97,163.93,164.33,164.51,164.72,164.94,165.16,165.42000000000002,165.67000000000002,166.28,23.93,23.69,23.54,23.37,23.2,23.03,22.86,22.69,22.35,N/A,N/A +2012,4,15,23,30,101190,100030,98910,90.91,0,9.71,10.97,11.4,11.74,12.030000000000001,12.280000000000001,12.52,12.73,13.14,163.52,163.65,163.78,163.93,164.08,164.24,164.41,164.57,164.95000000000002,23.92,23.68,23.54,23.36,23.2,23.02,22.85,22.68,22.330000000000002,N/A,N/A +2012,4,16,0,30,101180,100020,98890,91.73,0,9.09,10.44,10.96,11.39,11.75,12.06,12.34,12.59,13.030000000000001,162.53,162.8,162.99,163.17000000000002,163.36,163.57,163.8,164.03,164.54,23.82,23.580000000000002,23.44,23.27,23.1,22.94,22.76,22.59,22.25,N/A,N/A +2012,4,16,1,30,101190,100030,98910,91.87,0,8.97,10.66,11.370000000000001,11.91,12.32,12.66,12.97,13.25,13.76,158.97,160.26,160.9,161.08,161.22,161.33,161.5,161.66,162.08,23.81,23.55,23.41,23.26,23.11,22.95,22.77,22.61,22.26,N/A,N/A +2012,4,16,2,30,101210,100040,98920,92.29,0,9.27,11.18,11.84,12.07,12.4,12.8,13.16,13.49,14.07,161.69,162.52,162.94,163.16,163.4,163.67000000000002,163.88,164.07,164.55,23.740000000000002,23.5,23.35,23.16,23,22.85,22.68,22.53,22.19,N/A,N/A +2012,4,16,3,30,101210,100050,98930,92.65,0,9.71,11.040000000000001,11.58,12.21,12.72,13.16,13.33,13.4,14.11,162.68,163.09,163.44,163.91,164.3,164.62,164.76,164.83,165.61,23.66,23.400000000000002,23.25,23.09,22.92,22.75,22.57,22.39,22.080000000000002,N/A,N/A +2012,4,16,4,30,101260,100090,98970,92.38,0,9.14,10.24,10.6,10.93,11.24,11.55,11.94,12.35,13.24,162.79,163.03,163.20000000000002,163.43,163.68,163.95000000000002,164.31,164.67000000000002,165.4,23.62,23.35,23.19,23.01,22.84,22.66,22.490000000000002,22.330000000000002,21.990000000000002,N/A,N/A +2012,4,16,5,30,101270,100110,98980,91.8,0,8.92,9.94,10.26,10.52,10.77,11.02,11.33,11.64,12.71,165.83,166.01,166.15,166.32,166.5,166.70000000000002,166.96,167.22,168.01,23.59,23.31,23.150000000000002,22.97,22.79,22.62,22.44,22.28,21.96,N/A,N/A +2012,4,16,6,30,101320,100150,99020,90.28,0,9.01,9.99,10.27,10.49,10.68,10.86,11.07,11.28,12,169.88,169.94,170,170.09,170.19,170.3,170.44,170.58,171.08,23.68,23.39,23.23,23.04,22.87,22.69,22.51,22.35,22.03,N/A,N/A +2012,4,16,7,30,101370,100210,99080,89.4,0,7.98,8.83,9.07,9.25,9.4,9.540000000000001,9.700000000000001,9.86,10.38,173.70000000000002,173.78,173.8,173.84,173.89000000000001,173.94,174.01,174.09,174.32,23.73,23.45,23.28,23.09,22.91,22.740000000000002,22.55,22.38,22.04,N/A,N/A +2012,4,16,8,30,101410,100240,99110,90.19,0,6.8,7.44,7.61,7.72,7.8100000000000005,7.9,7.99,8.09,8.51,181.38,181.36,181.35,181.33,181.31,181.29,181.27,181.26,181.22,23.69,23.39,23.23,23.04,22.86,22.67,22.490000000000002,22.31,21.97,N/A,N/A +2012,4,16,9,30,101470,100310,99180,90.7,0,4.3100000000000005,4.67,4.7700000000000005,4.83,4.89,4.95,5.04,5.15,6.03,198.54,198.36,198.17000000000002,198,197.83,197.66,197.39000000000001,197.1,195.12,23.7,23.41,23.25,23.06,22.87,22.69,22.5,22.330000000000002,22.01,N/A,N/A +2012,4,16,10,30,101510,100350,99220,91.68,0,3.52,3.7600000000000002,3.81,3.83,3.84,3.85,3.85,3.85,5.72,198.31,198.33,198.35,198.36,198.34,198.31,198.31,198.31,194.76,23.67,23.38,23.21,23.02,22.830000000000002,22.64,22.45,22.27,22.05,N/A,N/A +2012,4,16,11,30,101580,100410,99280,92.14,0.7000000000000001,2.64,2.8000000000000003,2.84,2.87,3.22,3.9,4.33,4.64,5.1000000000000005,215.9,215.29,215.06,214.73000000000002,213,209.71,208.36,207.86,206.51,23.7,23.41,23.240000000000002,23.05,22.89,22.76,22.61,22.47,22.17,N/A,N/A +2012,4,16,12,30,101610,100440,99310,92.83,0.7000000000000001,2.24,2.45,2.62,3.06,3.37,3.5500000000000003,3.75,3.94,4.33,162.70000000000002,165.22,167.71,172.45000000000002,175.41,176.65,177.79,178.86,180.54,23.6,23.34,23.21,23.09,22.96,22.830000000000002,22.69,22.57,22.3,N/A,N/A +2012,4,16,13,30,101650,100480,99350,92.87,0,0.09,0.18,0.31,0.8200000000000001,1.32,1.54,1.78,2.02,2.52,138.62,163.83,179.74,188.9,196.3,197.08,197.78,198.45000000000002,199.37,23.6,23.31,23.18,23.06,22.93,22.79,22.66,22.53,22.28,N/A,N/A +2012,4,16,14,30,101710,100540,99410,93.01,0,1.93,2.0100000000000002,2,1.98,1.97,1.97,2.0100000000000002,2.04,2.18,91.69,93.91,95.55,97.91,102.3,108.16,115.37,122.52,133.86,23.66,23.36,23.2,23.01,22.84,22.67,22.51,22.35,22.07,N/A,N/A +2012,4,16,15,30,101710,100540,99410,94.17,0,0.64,0.58,0.48,0.34,0.34,0.43,0.61,0.87,1.41,62.22,63,70.75,87.04,112.5,152.32,167.96,176.64000000000001,179.85,23.52,23.240000000000002,23.13,23.06,22.990000000000002,22.92,22.84,22.76,22.580000000000002,N/A,N/A +2012,4,16,16,30,101690,100520,99390,94.29,0,1.17,1.19,1.18,1.17,1.16,1.16,1.17,1.19,1.33,77.13,81.73,84.85000000000001,88.59,92.66,97.05,103.04,109.22,126.10000000000001,23.6,23.28,23.12,22.93,22.75,22.580000000000002,22.400000000000002,22.240000000000002,21.94,N/A,N/A +2012,4,16,17,30,101660,100490,99360,91.8,1.1,0.93,0.92,0.9,0.88,0.85,0.84,0.81,0.8,0.75,41.63,45.21,47.34,49.660000000000004,52,54.34,57.04,59.58,66.3,23.79,23.47,23.3,23.1,22.91,22.73,22.54,22.36,21.98,N/A,N/A +2012,4,16,18,30,101690,100530,99400,92.07000000000001,0,1.33,1.3900000000000001,1.42,1.44,1.46,1.48,1.5,1.52,1.56,105.43,107.43,108.58,109.63,110.53,111.37,112.18,112.95,114.66,24.07,23.740000000000002,23.56,23.37,23.18,23,22.81,22.63,22.26,N/A,N/A +2012,4,16,19,30,101620,100460,99330,88.21000000000001,0,2.5100000000000002,2.66,2.72,2.7600000000000002,2.81,2.86,2.92,2.98,3.15,118.17,118.36,118.72,119.10000000000001,119.49000000000001,119.89,120.36,120.83,122.22,24.25,23.91,23.73,23.54,23.35,23.16,22.97,22.79,22.41,N/A,N/A +2012,4,16,20,30,101650,100490,99360,86.93,0,2.35,2.44,2.46,2.47,2.47,2.47,2.47,2.47,2.47,115.27,115.59,115.83,116.10000000000001,116.35000000000001,116.58,116.84,117.09,117.63,24.5,24.17,23.990000000000002,23.8,23.61,23.42,23.23,23.05,22.68,N/A,N/A +2012,4,16,21,30,101690,100520,99390,89.05,0,3.75,3.98,4.0200000000000005,4.03,4.0200000000000005,4.01,3.99,3.97,3.91,179.12,178.95000000000002,178.73,178.54,178.38,178.23,178.07,177.91,177.51,24.43,24.11,23.94,23.740000000000002,23.56,23.37,23.17,22.990000000000002,22.62,N/A,N/A +2012,4,16,22,30,101690,100520,99400,88.73,0,4.11,4.43,4.49,4.51,4.53,4.53,4.53,4.5200000000000005,4.5,244.24,244.75,244.89000000000001,245.05,245.20000000000002,245.34,245.5,245.65,246.01000000000002,24.46,24.16,24,23.8,23.61,23.43,23.240000000000002,23.06,22.68,N/A,N/A +2012,4,16,23,30,101630,100450,99320,85.44,0,7.21,7.5600000000000005,7.73,8.13,8.46,8.74,8.620000000000001,8.4,7.79,326.34000000000003,326.44,326.03000000000003,325.05,323.2,320.7,317.29,314.01,309.23,21.85,21.57,21.59,21.86,22.42,23.18,23.67,24.04,23.87,N/A,N/A +2012,4,17,0,30,101630,100450,99310,91.63,0,11.86,12.870000000000001,13.06,13.11,13.11,13.09,13.030000000000001,12.97,12.67,68.73,68.88,68.85000000000001,68.81,68.75,68.68,68.55,68.43,67.77,21.71,21.27,21.09,20.900000000000002,20.73,20.57,20.42,20.28,20.1,N/A,N/A +2012,4,17,1,30,101630,100460,99320,92.27,0,8.46,9.11,9.23,9.27,9.28,9.27,9.23,9.19,9.09,83.22,83.14,83.22,83.28,83.32000000000001,83.34,83.37,83.39,83.52,21.98,21.57,21.37,21.17,20.98,20.8,20.6,20.42,20.05,N/A,N/A +2012,4,17,2,30,101790,100610,99470,90.26,0,5.41,5.75,5.82,5.84,5.8500000000000005,5.8500000000000005,5.84,5.83,5.8,47.93,48.35,48.64,48.94,49.22,49.49,49.78,50.06,50.68,22.080000000000002,21.7,21.51,21.31,21.11,20.92,20.73,20.55,20.17,N/A,N/A +2012,4,17,3,30,101800,100620,99480,86.26,0,5.92,6.34,6.45,6.51,6.55,6.58,6.61,6.63,6.65,50.870000000000005,50.51,50.4,50.300000000000004,50.230000000000004,50.17,50.14,50.11,50.18,22.37,22,21.81,21.61,21.41,21.21,21.02,20.830000000000002,20.43,N/A,N/A +2012,4,17,4,30,101760,100590,99440,90.71000000000001,0,7.54,8.13,8.27,8.34,8.39,8.42,8.44,8.45,8.46,51.24,51.75,52.03,52.300000000000004,52.53,52.75,52.96,53.15,53.550000000000004,22,21.59,21.39,21.19,20.990000000000002,20.8,20.6,20.42,20.04,N/A,N/A +2012,4,17,5,30,101760,100590,99450,87.11,0,8.120000000000001,8.76,8.91,8.97,9,9.02,9.02,9.02,8.99,61.160000000000004,60.94,60.85,60.77,60.69,60.620000000000005,60.56,60.5,60.4,22.16,21.75,21.56,21.36,21.16,20.97,20.78,20.59,20.21,N/A,N/A +2012,4,17,6,30,101840,100660,99520,86.71000000000001,0,7.13,7.66,7.78,7.83,7.86,7.88,7.88,7.890000000000001,7.87,75.13,75.06,74.91,74.78,74.64,74.52,74.39,74.27,74.01,22.240000000000002,21.85,21.67,21.47,21.27,21.080000000000002,20.89,20.71,20.32,N/A,N/A +2012,4,17,7,30,101880,100690,99550,90.74,71.8,6.29,6.76,6.87,6.92,6.96,6.98,6.99,7,7,78.43,77.98,77.59,77.23,76.9,76.60000000000001,76.29,76,75.43,21.63,21.240000000000002,21.06,20.87,20.69,20.53,20.35,20.18,19.84,N/A,N/A +2012,4,17,8,30,101870,100690,99550,91.66,8.4,6.5200000000000005,7.04,7.15,7.21,7.24,7.2700000000000005,7.28,7.28,7.29,52.69,52.99,53.19,53.370000000000005,53.550000000000004,53.71,53.89,54.050000000000004,54.410000000000004,21.82,21.42,21.23,21.04,20.85,20.67,20.47,20.3,19.93,N/A,N/A +2012,4,17,9,30,101870,100690,99540,91.42,0,7.32,7.7700000000000005,7.82,7.8100000000000005,7.7700000000000005,7.72,7.65,7.58,7.390000000000001,24.12,24.34,24.53,24.740000000000002,24.96,25.19,25.490000000000002,25.79,26.7,21.3,20.87,20.67,20.47,20.28,20.1,19.91,19.740000000000002,19.38,N/A,N/A +2012,4,17,10,30,101890,100710,99560,91.85000000000001,47.2,7.46,7.94,8.05,8.09,8.11,8.11,8.1,8.09,8.08,24.62,25.16,25.490000000000002,25.86,26.25,26.650000000000002,27.16,27.66,29.26,21.13,20.69,20.5,20.3,20.12,19.94,19.75,19.580000000000002,19.22,N/A,N/A +2012,4,17,11,30,101850,100670,99520,94.06,11.4,6.88,7.36,7.47,7.53,7.58,7.61,7.640000000000001,7.66,7.73,82.26,81.55,81.07000000000001,80.54,80.01,79.49,78.94,78.42,77.27,21.17,20.740000000000002,20.55,20.35,20.16,19.98,19.79,19.61,19.22,N/A,N/A +2012,4,17,12,30,101940,100750,99600,89.69,0,4.39,4.59,4.63,4.64,4.65,4.64,4.64,4.63,4.61,91.41,91.5,91.63,91.74,91.83,91.91,92,92.07000000000001,92.21000000000001,20.990000000000002,20.580000000000002,20.39,20.18,19.990000000000002,19.8,19.61,19.43,19.05,N/A,N/A +2012,4,17,13,30,101920,100730,99580,93.03,30.400000000000002,8.64,9.370000000000001,9.48,9.53,9.55,9.540000000000001,9.52,9.49,9.4,17.67,18.06,18.25,18.44,18.66,18.86,19.11,19.35,19.96,20.54,20.06,19.85,19.650000000000002,19.45,19.27,19.07,18.89,18.53,N/A,N/A +2012,4,17,14,30,102010,100830,99670,91.16,0,9.5,10.21,10.36,10.41,10.43,10.42,10.39,10.36,10.27,16.56,16.84,16.96,17.07,17.18,17.29,17.41,17.53,17.85,20.580000000000002,20.080000000000002,19.88,19.67,19.47,19.29,19.09,18.92,18.56,N/A,N/A +2012,4,17,15,30,102070,100890,99740,88.59,0,8.35,8.96,9.11,9.17,9.200000000000001,9.22,9.23,9.23,9.21,25.02,25.04,25.01,24.96,24.92,24.87,24.82,24.78,24.68,21.01,20.55,20.35,20.14,19.95,19.76,19.56,19.38,19,N/A,N/A +2012,4,17,16,30,102080,100900,99750,83.55,0,7.07,7.62,7.76,7.84,7.9,7.930000000000001,7.96,7.99,8.01,36.71,36.38,36.13,35.89,35.67,35.45,35.24,35.04,34.61,21.79,21.38,21.19,20.98,20.78,20.59,20.39,20.21,19.82,N/A,N/A +2012,4,17,17,30,102060,100880,99730,79.61,0,5.49,5.89,6,6.0600000000000005,6.11,6.15,6.18,6.21,6.25,39.75,39.58,39.34,39.1,38.89,38.68,38.46,38.26,37.82,22.34,21.97,21.79,21.59,21.39,21.2,21,20.82,20.43,N/A,N/A +2012,4,17,18,30,102050,100870,99720,78.28,0,5.39,5.7700000000000005,5.86,5.91,5.94,5.97,5.98,5.99,6.01,76.49,75.96000000000001,75.52,75.12,74.75,74.41,74.06,73.73,73.02,22.75,22.39,22.22,22.01,21.82,21.63,21.43,21.25,20.87,N/A,N/A +2012,4,17,19,30,102060,100890,99740,79.86,0,4.75,5.05,5.14,5.19,5.22,5.24,5.26,5.2700000000000005,5.28,69.67,69.49,69.41,69.29,69.17,69.03,68.88,68.72,68.35000000000001,22.69,22.330000000000002,22.150000000000002,21.95,21.76,21.57,21.37,21.18,20.8,N/A,N/A +2012,4,17,20,30,101990,100810,99670,79.69,0,5.29,5.67,5.73,5.74,5.75,5.75,5.74,5.73,5.72,58.59,58.94,59.300000000000004,59.660000000000004,60,60.33,60.65,60.95,61.58,22.82,22.48,22.3,22.11,21.92,21.73,21.54,21.36,21,N/A,N/A +2012,4,17,21,30,101960,100780,99640,78.93,0,3.8000000000000003,4.09,4.18,4.25,4.32,4.38,4.46,4.5200000000000005,4.71,46.67,48.18,48.910000000000004,49.63,50.34,51.02,51.81,52.550000000000004,54.370000000000005,22.53,22.18,22,21.81,21.62,21.44,21.25,21.080000000000002,20.72,N/A,N/A +2012,4,17,22,30,101940,100770,99630,77.68,0,2.19,2.41,2.5100000000000002,2.6,2.68,2.75,2.83,2.91,3.08,73.85000000000001,73.93,73.92,73.87,73.8,73.73,73.61,73.49,73.17,22.97,22.650000000000002,22.48,22.29,22.1,21.92,21.73,21.55,21.18,N/A,N/A +2012,4,17,23,30,101920,100740,99610,74.23,0,3.23,3.54,3.64,3.73,3.79,3.85,3.91,3.96,4.05,80.96000000000001,81.10000000000001,81.10000000000001,81.05,81,80.93,80.84,80.75,80.51,23.39,23.080000000000002,22.91,22.72,22.53,22.34,22.150000000000002,21.97,21.580000000000002,N/A,N/A +2012,4,18,0,30,101900,100730,99590,70.55,0,4.34,4.94,5.15,5.34,5.5200000000000005,5.68,5.91,6.13,6.9,57.32,54.84,53.81,52.76,51.79,50.870000000000005,49.44,47.94,43.78,24.14,23.93,23.79,23.63,23.46,23.3,23.13,22.98,22.67,N/A,N/A +2012,4,18,1,30,101920,100750,99610,57.84,0,8.94,9.8,10,10.1,10.17,10.200000000000001,10.21,10.22,10.21,39.99,40.18,40.32,40.49,40.660000000000004,40.83,41.02,41.2,41.6,24.28,24.080000000000002,23.94,23.76,23.580000000000002,23.400000000000002,23.22,23.04,22.66,N/A,N/A +2012,4,18,2,30,101970,100790,99650,71.2,0,9.950000000000001,10.9,11.120000000000001,11.23,11.290000000000001,11.33,11.34,11.35,11.33,57.910000000000004,57.82,57.730000000000004,57.64,57.56,57.480000000000004,57.38,57.300000000000004,57.13,22.96,22.62,22.44,22.240000000000002,22.05,21.86,21.66,21.47,21.080000000000002,N/A,N/A +2012,4,18,3,30,102010,100830,99680,75.64,0,10.17,11.09,11.31,11.4,11.47,11.5,11.51,11.52,11.5,59.59,59.410000000000004,59.31,59.19,59.08,58.97,58.84,58.72,58.44,22.05,21.64,21.45,21.240000000000002,21.04,20.85,20.650000000000002,20.47,20.080000000000002,N/A,N/A +2012,4,18,4,30,102000,100820,99670,74.38,0,9.59,10.47,10.67,10.78,10.86,10.91,10.94,10.96,10.99,55.38,55.300000000000004,55.27,55.24,55.21,55.19,55.15,55.13,55.050000000000004,21.650000000000002,21.21,21.02,20.81,20.61,20.42,20.22,20.04,19.650000000000002,N/A,N/A +2012,4,18,5,30,102010,100830,99680,74.41,0,9.72,10.540000000000001,10.73,10.83,10.89,10.93,10.94,10.96,10.96,56.56,56.49,56.46,56.43,56.4,56.370000000000005,56.33,56.300000000000004,56.230000000000004,21.11,20.64,20.44,20.23,20.03,19.84,19.63,19.45,19.06,N/A,N/A +2012,4,18,6,30,102040,100850,99700,75.49,0,9.02,9.74,9.91,9.99,10.040000000000001,10.07,10.09,10.1,10.1,58.56,58.61,58.65,58.68,58.71,58.730000000000004,58.75,58.77,58.81,20.68,20.18,19.97,19.76,19.55,19.36,19.150000000000002,18.97,18.57,N/A,N/A +2012,4,18,7,30,102070,100880,99730,75.95,0,8.620000000000001,9.27,9.41,9.48,9.52,9.55,9.56,9.57,9.56,57.81,57.88,57.94,58,58.06,58.11,58.160000000000004,58.21,58.300000000000004,20.25,19.740000000000002,19.52,19.31,19.11,18.91,18.71,18.52,18.13,N/A,N/A +2012,4,18,8,30,102060,100870,99710,73,0,8.22,8.81,8.94,9,9.03,9.05,9.06,9.06,9.05,52.33,52.49,52.58,52.660000000000004,52.75,52.82,52.9,52.980000000000004,53.14,20.03,19.52,19.31,19.09,18.89,18.7,18.490000000000002,18.31,17.92,N/A,N/A +2012,4,18,9,30,102060,100860,99700,72.39,0,8.26,8.85,8.97,9.03,9.06,9.08,9.09,9.09,9.07,50.59,50.75,50.85,50.93,51.02,51.1,51.19,51.27,51.45,19.69,19.17,18.95,18.740000000000002,18.53,18.34,18.14,17.95,17.56,N/A,N/A +2012,4,18,10,30,102070,100870,99710,73.4,0,7.5600000000000005,8.05,8.15,8.19,8.22,8.22,8.22,8.22,8.19,49.14,49.32,49.44,49.54,49.65,49.74,49.85,49.94,50.14,19.5,18.97,18.76,18.54,18.34,18.150000000000002,17.94,17.75,17.37,N/A,N/A +2012,4,18,11,30,102080,100880,99720,74,0,7.48,7.96,8.05,8.09,8.11,8.11,8.11,8.1,8.07,47.26,47.38,47.46,47.52,47.58,47.64,47.7,47.75,47.870000000000005,19.26,18.72,18.51,18.29,18.09,17.89,17.69,17.5,17.11,N/A,N/A +2012,4,18,12,30,102090,100890,99730,76.66,0,7.26,7.72,7.8,7.83,7.8500000000000005,7.8500000000000005,7.84,7.83,7.79,44.800000000000004,44.980000000000004,45.11,45.22,45.32,45.410000000000004,45.51,45.61,45.800000000000004,18.97,18.43,18.21,18,17.79,17.6,17.400000000000002,17.21,16.82,N/A,N/A +2012,4,18,13,30,102100,100900,99740,79.10000000000001,0,7.03,7.46,7.53,7.5600000000000005,7.57,7.57,7.57,7.5600000000000005,7.5200000000000005,45.42,45.61,45.72,45.81,45.9,45.980000000000004,46.06,46.14,46.300000000000004,18.75,18.21,17.990000000000002,17.77,17.56,17.37,17.17,16.98,16.59,N/A,N/A +2012,4,18,14,30,102150,100950,99780,83.05,0,6.15,6.48,6.53,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.55,6.54,6.5200000000000005,39.24,39.660000000000004,39.93,40.17,40.4,40.61,40.82,41.02,41.44,18.47,17.93,17.71,17.5,17.29,17.1,16.9,16.71,16.32,N/A,N/A +2012,4,18,15,30,102140,100940,99770,81.53,0,5.7,5.98,6.01,6.0200000000000005,6.01,5.99,5.97,5.95,5.9,34.53,34.93,35.160000000000004,35.39,35.61,35.81,36.03,36.22,36.65,18.52,18,17.78,17.57,17.36,17.17,16.97,16.78,16.39,N/A,N/A +2012,4,18,16,30,102130,100930,99760,73.96000000000001,0,5.19,5.44,5.48,5.49,5.5,5.49,5.49,5.48,5.45,26.42,26.54,26.64,26.740000000000002,26.830000000000002,26.92,27.01,27.1,27.3,18.75,18.25,18.04,17.830000000000002,17.63,17.44,17.240000000000002,17.05,16.67,N/A,N/A +2012,4,18,17,30,102100,100900,99740,69.92,0,4.07,4.2700000000000005,4.3100000000000005,4.33,4.3500000000000005,4.36,4.37,4.38,4.39,37.79,37.52,37.31,37.09,36.87,36.67,36.45,36.24,35.78,19.37,18.91,18.7,18.5,18.3,18.11,17.91,17.72,17.34,N/A,N/A +2012,4,18,18,30,102050,100860,99700,68.16,0,2.48,2.58,2.6,2.62,2.63,2.64,2.65,2.66,2.68,40.99,40.01,39.38,38.76,38.13,37.5,36.81,36.15,34.59,19.91,19.48,19.28,19.080000000000002,18.88,18.7,18.5,18.32,17.93,N/A,N/A +2012,4,18,19,30,102000,100810,99650,66.6,0,1.62,1.68,1.7,1.7,1.71,1.72,1.73,1.74,1.79,70.15,68.72,67.66,66.56,65.35,64.14,62.54,60.94,56.09,20.44,20.03,19.84,19.650000000000002,19.46,19.28,19.09,18.91,18.56,N/A,N/A +2012,4,18,20,30,101920,100730,99580,65.08,0,0.38,0.42,0.44,0.45,0.48,0.5,0.52,0.55,0.62,24.17,17.48,13.530000000000001,9.950000000000001,6.76,3.85,1.09,358.54,353.73,20.900000000000002,20.51,20.330000000000002,20.13,19.93,19.75,19.55,19.37,18.98,N/A,N/A +2012,4,18,21,30,101860,100670,99520,64.19,0,0.37,0.34,0.31,0.28,0.26,0.23,0.2,0.18,0.16,144.89000000000001,140.04,136.89000000000001,133.17000000000002,128.06,122.64,112.71000000000001,103.27,64.37,21.2,20.82,20.64,20.44,20.25,20.07,19.87,19.69,19.32,N/A,N/A +2012,4,18,22,30,101800,100610,99470,62.870000000000005,0,1.6600000000000001,1.6500000000000001,1.61,1.56,1.5,1.45,1.36,1.29,0.99,128.56,127.71000000000001,127.13000000000001,126.5,125.79,125.07000000000001,123.95,122.86,115.37,21.53,21.16,20.98,20.79,20.6,20.42,20.23,20.06,19.72,N/A,N/A +2012,4,18,23,30,101750,100570,99420,62.36,0,1.78,1.77,1.72,1.67,1.6,1.54,1.44,1.36,0.97,136.17000000000002,135.84,135.6,135.28,134.86,134.4,133.55,132.7,119.44,21.73,21.38,21.2,21.01,20.82,20.64,20.46,20.29,19.96,N/A,N/A +2012,4,19,0,30,101710,100530,99380,63.050000000000004,0,1.94,1.95,1.92,1.87,1.81,1.75,1.6,1.45,0.81,122.57000000000001,122.09,121.83,121.5,121.07000000000001,120.59,119.04,116.57000000000001,62.910000000000004,21.89,21.54,21.37,21.18,21,20.82,20.66,20.52,20.61,N/A,N/A +2012,4,19,1,30,101680,100500,99350,62.13,0,2.19,2.21,2.18,2.13,2.06,1.98,1.78,1.59,1.46,125.61,124.84,124.26,123.54,122.42,121.16,115.7,109.14,45.17,22.13,21.8,21.63,21.45,21.27,21.11,21,20.93,21.25,N/A,N/A +2012,4,19,2,30,101690,100510,99370,56.63,0,2.57,2.63,2.62,2.59,2.5500000000000003,2.52,2.48,2.44,2.32,112.61,112.09,111.7,111.25,110.73,110.19,109.42,108.67,105.66,22.51,22.19,22.01,21.830000000000002,21.64,21.46,21.28,21.11,20.78,N/A,N/A +2012,4,19,3,30,101680,100500,99360,63.980000000000004,0,2.93,3.02,3.02,3,2.98,2.96,2.93,2.91,2.84,125.74000000000001,125.29,124.95,124.57000000000001,124.16,123.75,123.18,122.64,120.8,22.1,21.740000000000002,21.57,21.37,21.18,21,20.81,20.63,20.26,N/A,N/A +2012,4,19,4,30,101670,100490,99350,64.14,0,2.37,2.46,2.47,2.47,2.46,2.46,2.45,2.44,2.44,127.85000000000001,127.2,126.75,126.26,125.7,125.11,124.28,123.47,120.56,22.1,21.75,21.57,21.38,21.19,21.01,20.82,20.650000000000002,20.29,N/A,N/A +2012,4,19,5,30,101650,100480,99330,62.02,0,1.41,1.47,1.49,1.51,1.53,1.54,1.57,1.59,1.7,125.45,124.42,123.81,123.16,122.45,121.72,120.8,119.9,116.97,22.32,21.98,21.81,21.62,21.43,21.25,21.06,20.88,20.53,N/A,N/A +2012,4,19,6,30,101660,100490,99340,62.95,0,1.6500000000000001,1.71,1.71,1.71,1.71,1.71,1.71,1.71,1.71,129.96,128.49,127.63000000000001,126.74000000000001,125.89,125.07000000000001,124.16,123.31,121.37,22.36,22.02,21.84,21.650000000000002,21.45,21.27,21.07,20.89,20.5,N/A,N/A +2012,4,19,7,30,101680,100500,99360,62.85,0,1.9100000000000001,2.02,2.04,2.07,2.08,2.11,2.13,2.15,2.19,141.54,140.56,139.95000000000002,139.37,138.81,138.29,137.75,137.26,136.25,22.36,22.01,21.84,21.64,21.45,21.26,21.06,20.88,20.490000000000002,N/A,N/A +2012,4,19,8,30,101660,100480,99340,65.49,0,2.27,2.36,2.37,2.38,2.38,2.38,2.38,2.39,2.39,146.76,145.49,144.69,143.94,143.26,142.62,141.98,141.4,140.21,22.2,21.86,21.68,21.47,21.28,21.09,20.89,20.71,20.31,N/A,N/A +2012,4,19,9,30,101640,100460,99320,66.64,0,1.86,1.9100000000000001,1.9100000000000001,1.9000000000000001,1.9000000000000001,1.8900000000000001,1.8900000000000001,1.8800000000000001,1.87,170.89000000000001,169.45000000000002,168.49,167.57,166.73,165.94,165.13,164.39000000000001,162.9,22.07,21.72,21.54,21.34,21.14,20.96,20.76,20.57,20.18,N/A,N/A +2012,4,19,10,30,101630,100450,99300,67.74,0,2.0300000000000002,2.07,2.06,2.04,2.0300000000000002,2.0100000000000002,2,1.98,1.95,182.74,181.29,180.33,179.41,178.54,177.71,176.88,176.13,174.47,21.91,21.55,21.37,21.17,20.97,20.78,20.580000000000002,20.400000000000002,20.01,N/A,N/A +2012,4,19,11,30,101620,100440,99290,67.44,0,1.77,1.82,1.82,1.82,1.82,1.82,1.82,1.82,1.82,190.17000000000002,187.84,186.45000000000002,185.11,183.88,182.72,181.53,180.44,178.22,21.81,21.45,21.27,21.07,20.88,20.69,20.490000000000002,20.31,19.91,N/A,N/A +2012,4,19,12,30,101600,100420,99280,66.76,0,1.49,1.6,1.6400000000000001,1.68,1.71,1.74,1.77,1.8,1.86,168.02,166.39000000000001,165.41,164.51,163.73,163.03,162.35,161.73,160.54,21.79,21.43,21.25,21.05,20.85,20.66,20.46,20.28,19.89,N/A,N/A +2012,4,19,13,30,101600,100420,99280,66.16,0,1.86,1.97,2,2.0300000000000002,2.05,2.07,2.09,2.11,2.14,169.45000000000002,167.66,166.54,165.51,164.6,163.76,162.92000000000002,162.16,160.63,21.84,21.48,21.3,21.1,20.91,20.72,20.52,20.34,19.95,N/A,N/A +2012,4,19,14,30,101620,100440,99290,63.89,0,1.33,1.47,1.53,1.58,1.6300000000000001,1.68,1.73,1.77,1.86,165.08,162.48,161.03,159.81,158.8,157.92000000000002,157.15,156.47,155.22,22.03,21.68,21.5,21.31,21.11,20.92,20.73,20.54,20.150000000000002,N/A,N/A +2012,4,19,15,30,101600,100420,99280,60.7,0,1.98,2.15,2.2,2.25,2.2800000000000002,2.32,2.35,2.38,2.43,141.36,141.85,142.24,142.59,142.9,143.18,143.46,143.72,144.22,22.150000000000002,21.79,21.61,21.41,21.21,21.03,20.82,20.64,20.240000000000002,N/A,N/A +2012,4,19,16,30,101590,100410,99270,63.74,0,2.88,3.0300000000000002,3.0700000000000003,3.1,3.13,3.15,3.17,3.18,3.22,157.9,157.55,157.3,157.07,156.85,156.65,156.46,156.29,155.92000000000002,22.150000000000002,21.79,21.6,21.400000000000002,21.2,21.01,20.81,20.62,20.23,N/A,N/A +2012,4,19,17,30,101550,100380,99230,62.7,0,2.84,2.96,2.98,3,3,3.0100000000000002,3.0100000000000002,3.0100000000000002,3.02,157.99,158.02,158.12,158.24,158.35,158.45000000000002,158.57,158.68,158.92000000000002,22.2,21.830000000000002,21.650000000000002,21.44,21.25,21.06,20.86,20.67,20.28,N/A,N/A +2012,4,19,18,30,101520,100350,99210,68.3,0,3.49,3.66,3.69,3.7,3.71,3.72,3.72,3.73,3.73,166.8,166.57,166.4,166.22,166.06,165.9,165.74,165.6,165.31,22.17,21.79,21.61,21.400000000000002,21.21,21.02,20.81,20.63,20.240000000000002,N/A,N/A +2012,4,19,19,30,101490,100310,99170,69.58,0,2.98,3.16,3.21,3.25,3.2800000000000002,3.31,3.34,3.36,3.4,167.33,167.24,167.3,167.35,167.39000000000001,167.43,167.47,167.5,167.57,22.17,21.79,21.61,21.400000000000002,21.21,21.01,20.81,20.63,20.23,N/A,N/A +2012,4,19,20,30,101410,100240,99100,70.9,0,3.94,4.12,4.14,4.14,4.14,4.13,4.12,4.11,4.09,167.56,168.09,168.45000000000002,168.78,169.06,169.3,169.53,169.73,170.07,22.1,21.72,21.53,21.330000000000002,21.13,20.94,20.740000000000002,20.56,20.16,N/A,N/A +2012,4,19,21,30,101350,100180,99040,71.02,0,4.65,4.9,4.93,4.95,4.95,4.95,4.95,4.94,4.93,170.34,169.99,169.76,169.53,169.31,169.11,168.89000000000001,168.69,168.27,22.13,21.75,21.57,21.36,21.17,20.98,20.78,20.59,20.2,N/A,N/A +2012,4,19,22,30,101280,100110,98970,66.61,0,5.23,5.53,5.58,5.59,5.6000000000000005,5.6000000000000005,5.59,5.58,5.5600000000000005,161.41,161.78,161.96,162.11,162.25,162.38,162.5,162.61,162.83,22.25,21.88,21.69,21.490000000000002,21.29,21.1,20.900000000000002,20.72,20.32,N/A,N/A +2012,4,19,23,30,101230,100060,98920,71.8,0,5.13,5.5,5.58,5.64,5.68,5.71,5.73,5.75,5.78,160.68,160.93,161.02,161.07,161.12,161.16,161.19,161.22,161.26,22.12,21.73,21.55,21.34,21.14,20.96,20.75,20.56,20.17,N/A,N/A +2012,4,20,0,30,101170,100000,98860,72.21000000000001,0,5.84,6.25,6.34,6.4,6.43,6.46,6.48,6.49,6.5200000000000005,166.95000000000002,166.35,166,165.69,165.4,165.14000000000001,164.87,164.63,164.12,22.080000000000002,21.69,21.5,21.29,21.1,20.91,20.71,20.52,20.13,N/A,N/A +2012,4,20,1,30,101130,99960,98820,72.02,0,6.32,6.7,6.76,6.78,6.78,6.78,6.7700000000000005,6.76,6.74,175.6,174.59,174,173.42000000000002,172.87,172.35,171.83,171.34,170.32,21.98,21.57,21.39,21.18,20.990000000000002,20.79,20.59,20.41,20.02,N/A,N/A +2012,4,20,2,30,101140,99960,98830,71.97,0,7.55,8.120000000000001,8.24,8.290000000000001,8.31,8.31,8.31,8.3,8.27,154.97,155.34,155.63,155.93,156.21,156.47,156.75,157.02,157.57,22.12,21.72,21.53,21.32,21.12,20.93,20.73,20.54,20.150000000000002,N/A,N/A +2012,4,20,3,30,101110,99930,98800,72.01,0,7.930000000000001,8.51,8.620000000000001,8.66,8.69,8.69,8.69,8.69,8.66,171.83,171.37,171.18,171.01,170.86,170.72,170.58,170.45000000000002,170.19,22.05,21.650000000000002,21.46,21.25,21.05,20.86,20.66,20.48,20.09,N/A,N/A +2012,4,20,4,30,101100,99930,98790,79.19,0,6.48,6.96,7.07,7.13,7.17,7.19,7.21,7.22,7.22,176.44,176.14000000000001,175.98,175.84,175.72,175.61,175.49,175.39000000000001,175.19,21.96,21.55,21.36,21.16,20.96,20.77,20.56,20.38,19.98,N/A,N/A +2012,4,20,5,30,101070,99900,98760,75.7,0,8.15,8.88,9.06,9.18,9.26,9.33,9.38,9.41,9.48,169.52,170.88,171.46,171.97,172.4,172.77,173.12,173.44,174.02,22.28,21.88,21.69,21.490000000000002,21.28,21.09,20.89,20.7,20.31,N/A,N/A +2012,4,20,6,30,101060,99890,98750,75.60000000000001,0,8.33,9.040000000000001,9.22,9.32,9.39,9.450000000000001,9.49,9.52,9.59,180.58,180.68,180.78,180.87,180.94,181.01,181.07,181.12,181.22,22.25,21.830000000000002,21.650000000000002,21.44,21.240000000000002,21.05,20.85,20.67,20.28,N/A,N/A +2012,4,20,7,30,101060,99890,98750,76.09,0,8.25,8.91,9.07,9.14,9.19,9.22,9.23,9.24,9.23,186.47,186.70000000000002,186.73,186.71,186.69,186.65,186.6,186.56,186.45000000000002,22.38,21.97,21.78,21.57,21.38,21.18,20.98,20.79,20.400000000000002,N/A,N/A +2012,4,20,8,30,101030,99860,98730,75.19,0,8.33,9.06,9.24,9.34,9.41,9.46,9.49,9.52,9.56,185.17000000000002,185.19,185.17000000000002,185.13,185.08,185.03,184.98,184.92000000000002,184.82,22.38,21.98,21.79,21.59,21.39,21.2,21,20.81,20.42,N/A,N/A +2012,4,20,9,30,101040,99870,98740,74.14,0,8.26,8.9,9.040000000000001,9.1,9.14,9.16,9.17,9.17,9.16,189.29,189.38,189.6,189.86,190.09,190.32,190.56,190.78,191.24,22.62,22.22,22.04,21.830000000000002,21.63,21.44,21.240000000000002,21.05,20.66,N/A,N/A +2012,4,20,10,30,101030,99860,98730,76.22,0,6.62,7.13,7.26,7.34,7.4,7.44,7.48,7.51,7.5600000000000005,184.04,184.24,184.29,184.33,184.37,184.41,184.44,184.48,184.58,22.41,22.02,21.84,21.64,21.44,21.25,21.05,20.87,20.48,N/A,N/A +2012,4,20,11,30,101030,99870,98730,74.56,0,7.47,8.11,8.24,8.31,8.35,8.370000000000001,8.370000000000001,8.370000000000001,8.36,190.96,191.19,191.34,191.46,191.56,191.66,191.75,191.83,191.99,22.66,22.27,22.080000000000002,21.88,21.68,21.490000000000002,21.28,21.1,20.71,N/A,N/A +2012,4,20,12,30,101030,99860,98730,72.12,0,6.82,7.3100000000000005,7.43,7.48,7.5200000000000005,7.54,7.5600000000000005,7.57,7.58,189.11,188.99,188.92000000000002,188.88,188.84,188.8,188.77,188.74,188.69,22.41,22.02,21.830000000000002,21.63,21.44,21.25,21.05,20.86,20.48,N/A,N/A +2012,4,20,13,30,101140,99970,98830,71.5,0,3.29,3.52,3.59,3.63,3.67,3.7,3.73,3.75,3.8000000000000003,218.27,217.73000000000002,217.49,217.25,217.01,216.78,216.54,216.32,215.83,22.42,22.06,21.88,21.68,21.48,21.29,21.09,20.91,20.51,N/A,N/A +2012,4,20,14,30,101090,99920,98780,71.39,0,5.73,5.97,5.96,5.91,5.8500000000000005,5.8,5.74,5.69,5.57,188.33,187.78,187.48,187.18,186.9,186.64000000000001,186.36,186.11,185.6,22.39,22.01,21.830000000000002,21.63,21.43,21.240000000000002,21.04,20.86,20.47,N/A,N/A +2012,4,20,15,30,101110,99940,98810,71.81,0,5.16,5.49,5.57,5.61,5.63,5.65,5.66,5.67,5.69,179.73,179.6,179.62,179.65,179.70000000000002,179.74,179.8,179.86,180,22.51,22.14,21.95,21.75,21.55,21.36,21.16,20.98,20.59,N/A,N/A +2012,4,20,16,30,101130,99960,98830,72.69,0,4.36,4.65,4.74,4.8,4.84,4.87,4.9,4.92,4.96,186.3,186.22,186.11,186.01,185.91,185.81,185.71,185.62,185.4,22.66,22.3,22.11,21.91,21.72,21.52,21.32,21.14,20.740000000000002,N/A,N/A +2012,4,20,17,30,101190,100020,98890,71.45,0,2.7600000000000002,2.91,2.95,2.98,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.09,214.08,214.18,214.11,214.04,213.97,213.92000000000002,213.84,213.78,213.66,22.77,22.41,22.23,22.03,21.84,21.650000000000002,21.45,21.26,20.87,N/A,N/A +2012,4,20,18,30,101170,100000,98870,68.64,0,2.56,2.66,2.68,2.68,2.68,2.68,2.67,2.67,2.66,214.39000000000001,213.5,212.95000000000002,212.43,211.96,211.52,211.06,210.66,209.82,22.900000000000002,22.54,22.36,22.16,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,4,20,19,30,101090,99920,98790,69.82000000000001,0,2.95,3.1,3.14,3.17,3.19,3.21,3.22,3.24,3.27,176.64000000000001,177.75,178.42000000000002,179.02,179.53,179.99,180.43,180.84,181.6,22.89,22.52,22.34,22.13,21.94,21.75,21.55,21.36,20.97,N/A,N/A +2012,4,20,20,30,101040,99880,98750,73.31,0,4.01,4.24,4.29,4.32,4.33,4.3500000000000005,4.3500000000000005,4.36,4.37,180.87,180.69,180.58,180.48,180.38,180.27,180.18,180.09,179.9,22.92,22.55,22.37,22.17,21.97,21.78,21.580000000000002,21.39,21,N/A,N/A +2012,4,20,21,30,101030,99860,98730,68.97,0,3.43,3.61,3.65,3.67,3.67,3.68,3.68,3.69,3.68,179.97,180.64000000000001,181,181.35,181.67000000000002,181.98,182.31,182.61,183.27,23.04,22.69,22.51,22.31,22.12,21.93,21.73,21.55,21.17,N/A,N/A +2012,4,20,22,30,100950,99780,98650,68.57000000000001,0,3.95,4.17,4.21,4.23,4.24,4.24,4.24,4.23,4.22,180.48,180.92000000000002,181.02,181.13,181.24,181.35,181.47,181.58,181.83,23.11,22.76,22.59,22.39,22.19,22.01,21.81,21.63,21.240000000000002,N/A,N/A +2012,4,20,23,30,101130,99950,98800,87.69,22.3,15.16,16.28,16.46,16.45,16.37,16.27,16.1,15.94,15.48,306.59000000000003,306.08,305.68,305.2,304.64,304.07,303.3,302.55,300.36,19.91,19.3,19.1,18.94,18.8,18.67,18.56,18.47,18.32,N/A,N/A +2012,4,21,0,30,101020,99840,98690,85.01,7,5.51,5.86,5.97,6.05,6.12,6.18,6.26,6.33,6.6000000000000005,343.54,343.17,342.83,342.49,342.13,341.78000000000003,341.36,340.96,339.89,19.77,19.3,19.1,18.91,18.72,18.54,18.36,18.2,17.89,N/A,N/A +2012,4,21,1,30,100980,99800,98660,82.10000000000001,0,1.56,1.72,1.78,1.84,1.9100000000000001,1.98,2.08,2.19,2.7600000000000002,314.47,314.83,315.65000000000003,316.5,317.43,318.39,319.65000000000003,320.92,325.75,20.57,20.19,20.01,19.82,19.64,19.47,19.3,19.14,18.94,N/A,N/A +2012,4,21,2,30,101060,99890,98740,82.91,0,5.3,5.65,5.73,5.79,5.84,5.87,5.91,5.94,6.01,279.03000000000003,279.15000000000003,279.26,279.41,279.56,279.71,279.90000000000003,280.07,280.47,20.490000000000002,20.04,19.84,19.63,19.43,19.240000000000002,19.04,18.86,18.48,N/A,N/A +2012,4,21,3,30,101100,99920,98780,73.69,0,9.59,10.31,10.46,10.52,10.55,10.56,10.56,10.55,10.52,331.28000000000003,331.26,331.18,331.11,331.04,330.98,330.92,330.87,330.79,21,20.5,20.29,20.07,19.87,19.67,19.47,19.28,18.89,N/A,N/A +2012,4,21,4,30,101090,99910,98760,84.67,0,9.4,10.22,10.42,10.53,10.61,10.66,10.69,10.72,10.74,344.79,345.11,345.13,345.13,345.12,345.11,345.09000000000003,345.07,345.03000000000003,20.11,19.56,19.34,19.11,18.900000000000002,18.7,18.490000000000002,18.3,17.900000000000002,N/A,N/A +2012,4,21,5,30,101090,99900,98760,85.69,0,10.950000000000001,11.92,12.15,12.280000000000001,12.36,12.41,12.450000000000001,12.48,12.5,346.26,346.54,346.62,346.67,346.71,346.74,346.76,346.77,346.78000000000003,19.66,19.07,18.84,18.61,18.400000000000002,18.21,18,17.81,17.42,N/A,N/A +2012,4,21,6,30,101110,99920,98770,81.02,0,12.86,14.16,14.51,14.72,14.870000000000001,14.98,15.07,15.15,15.26,354.8,355.04,355.16,355.26,355.36,355.46,355.55,355.63,355.81,19.35,18.71,18.47,18.240000000000002,18.02,17.82,17.61,17.42,17.03,N/A,N/A +2012,4,21,7,30,101150,99970,98810,80,0,13.73,15.15,15.55,15.8,15.98,16.13,16.240000000000002,16.34,16.52,358.11,358.29,358.40000000000003,358.51,358.6,358.69,358.79,358.88,359.08,19,18.32,18.07,17.84,17.62,17.42,17.21,17.02,16.63,N/A,N/A +2012,4,21,8,30,101130,99940,98790,79.32000000000001,0,14.43,15.96,16.37,16.62,16.8,16.94,17.04,17.14,17.27,357,357.05,357.09000000000003,357.12,357.15000000000003,357.18,357.21,357.23,357.29,18.93,18.240000000000002,17.990000000000002,17.75,17.53,17.32,17.1,16.91,16.5,N/A,N/A +2012,4,21,9,30,101160,99970,98810,81.19,0,14.32,15.780000000000001,16.17,16.4,16.56,16.68,16.76,16.84,16.93,357.49,357.40000000000003,357.37,357.36,357.36,357.36,357.36,357.36,357.39,18.59,17.88,17.62,17.38,17.150000000000002,16.94,16.73,16.52,16.12,N/A,N/A +2012,4,21,10,30,101190,100000,98840,81.93,0,14.21,15.63,15.99,16.2,16.34,16.44,16.5,16.56,16.63,359.41,359.62,359.71,359.8,359.88,359.96,0.04,0.12,0.28,18.03,17.28,17.02,16.77,16.55,16.34,16.12,15.92,15.52,N/A,N/A +2012,4,21,11,30,101200,100010,98850,81.87,0,14.36,15.8,16.15,16.35,16.490000000000002,16.59,16.66,16.71,16.78,357.44,357.61,357.72,357.83,357.94,358.04,358.15000000000003,358.26,358.48,17.51,16.740000000000002,16.47,16.22,15.99,15.790000000000001,15.57,15.370000000000001,14.97,N/A,N/A +2012,4,21,12,30,101210,100010,98850,81.58,0,14.370000000000001,15.8,16.15,16.35,16.48,16.580000000000002,16.65,16.71,16.78,359.3,359.53000000000003,359.65000000000003,359.76,359.88,359.98,0.1,0.21,0.45,17.12,16.32,16.04,15.8,15.57,15.370000000000001,15.15,14.96,14.56,N/A,N/A +2012,4,21,13,30,101230,100030,98870,80.36,0,13.540000000000001,14.82,15.13,15.3,15.42,15.51,15.57,15.620000000000001,15.700000000000001,359.88,0.16,0.32,0.48,0.64,0.78,0.93,1.07,1.36,16.67,15.870000000000001,15.6,15.36,15.14,14.93,14.72,14.530000000000001,14.14,N/A,N/A +2012,4,21,14,30,101280,100080,98910,77.5,0,12.26,13.34,13.59,13.74,13.83,13.9,13.950000000000001,13.99,14.040000000000001,353.92,354.08,354.19,354.29,354.39,354.47,354.57,354.67,354.85,16.6,15.84,15.57,15.33,15.11,14.9,14.69,14.49,14.09,N/A,N/A +2012,4,21,15,30,101330,100130,98960,75.14,0,11.28,12.22,12.43,12.56,12.63,12.69,12.72,12.75,12.790000000000001,351.90000000000003,352.1,352.23,352.36,352.47,352.58,352.69,352.79,353,16.71,15.98,15.72,15.48,15.25,15.040000000000001,14.83,14.63,14.23,N/A,N/A +2012,4,21,16,30,101330,100130,98960,71.28,0,11.15,12.08,12.290000000000001,12.4,12.48,12.530000000000001,12.56,12.59,12.620000000000001,347.29,347.55,347.72,347.88,348.02,348.16,348.3,348.43,348.68,17.3,16.6,16.35,16.11,15.89,15.69,15.47,15.27,14.870000000000001,N/A,N/A +2012,4,21,17,30,101330,100130,98970,66.38,0,11.33,12.33,12.57,12.71,12.8,12.870000000000001,12.92,12.96,13.02,348.02,348.1,348.16,348.2,348.24,348.29,348.34000000000003,348.39,348.49,18.34,17.69,17.45,17.22,17,16.8,16.580000000000002,16.39,15.99,N/A,N/A +2012,4,21,18,30,101310,100120,98970,61.730000000000004,0,11.27,12.31,12.56,12.700000000000001,12.8,12.88,12.93,12.98,13.040000000000001,345.45,345.7,345.85,345.98,346.11,346.22,346.34000000000003,346.44,346.66,19.400000000000002,18.81,18.580000000000002,18.36,18.14,17.95,17.740000000000002,17.54,17.14,N/A,N/A +2012,4,21,19,30,101310,100120,98970,59.050000000000004,0,10.78,11.78,12.030000000000001,12.18,12.290000000000001,12.370000000000001,12.43,12.48,12.56,344.58,344.98,345.22,345.45,345.65000000000003,345.84000000000003,346.02,346.2,346.53000000000003,20.31,19.77,19.55,19.34,19.13,18.93,18.72,18.53,18.13,N/A,N/A +2012,4,21,20,30,101280,100090,98950,56.26,0,10.71,11.72,11.98,12.13,12.24,12.33,12.39,12.44,12.52,344.56,344.92,345.14,345.34000000000003,345.54,345.71,345.88,346.02,346.32,21.07,20.580000000000002,20.37,20.16,19.95,19.76,19.55,19.36,18.96,N/A,N/A +2012,4,21,21,30,101270,100090,98950,54.410000000000004,0,10.5,11.5,11.76,11.92,12.040000000000001,12.120000000000001,12.19,12.25,12.33,344.56,344.96,345.2,345.43,345.63,345.81,345.99,346.15000000000003,346.46,21.61,21.16,20.96,20.740000000000002,20.54,20.35,20.14,19.95,19.55,N/A,N/A +2012,4,21,22,30,101270,100090,98950,55.230000000000004,0,10.18,11.14,11.38,11.53,11.63,11.71,11.77,11.82,11.89,344,344.44,344.71,344.97,345.2,345.42,345.62,345.82,346.18,21.96,21.53,21.330000000000002,21.13,20.92,20.73,20.53,20.34,19.94,N/A,N/A +2012,4,21,23,30,101270,100090,98950,52.97,0,10.63,11.68,11.94,12.09,12.19,12.26,12.32,12.36,12.42,349.40000000000003,349.44,349.46,349.49,349.51,349.54,349.56,349.59000000000003,349.65000000000003,22.1,21.68,21.48,21.28,21.07,20.88,20.68,20.490000000000002,20.09,N/A,N/A +2012,4,22,0,30,101300,100120,98980,53.4,0,10.290000000000001,11.28,11.52,11.67,11.77,11.84,11.9,11.94,12.01,352.40000000000003,352.22,352.13,352.05,351.98,351.92,351.86,351.81,351.72,21.96,21.53,21.330000000000002,21.13,20.92,20.73,20.53,20.34,19.94,N/A,N/A +2012,4,22,1,30,101360,100180,99030,54.410000000000004,0,10.38,11.34,11.56,11.69,11.77,11.84,11.870000000000001,11.91,11.94,355.73,355.79,355.79,355.79,355.79,355.79,355.78000000000003,355.76,355.75,21.53,21.07,20.87,20.66,20.45,20.26,20.05,19.86,19.46,N/A,N/A +2012,4,22,2,30,101410,100230,99080,54.03,0,10.36,11.33,11.56,11.69,11.78,11.84,11.89,11.93,11.98,359.18,359.18,359.15000000000003,359.13,359.1,359.08,359.06,359.03000000000003,358.98,21.38,20.91,20.71,20.5,20.29,20.1,19.89,19.7,19.3,N/A,N/A +2012,4,22,3,30,101450,100270,99120,54.22,0,9.31,10.14,10.35,10.47,10.55,10.620000000000001,10.67,10.72,10.790000000000001,5.8,5.74,5.69,5.63,5.5600000000000005,5.5,5.43,5.36,5.21,21.32,20.86,20.66,20.45,20.25,20.06,19.86,19.67,19.28,N/A,N/A +2012,4,22,4,30,101470,100290,99140,56.14,0,8.8,9.55,9.74,9.84,9.92,9.98,10.03,10.07,10.15,8.43,8.33,8.26,8.19,8.120000000000001,8.05,7.98,7.9,7.74,21.13,20.67,20.46,20.26,20.06,19.88,19.67,19.490000000000002,19.11,N/A,N/A +2012,4,22,5,30,101500,100320,99170,55.730000000000004,0,9.33,10.120000000000001,10.31,10.41,10.48,10.53,10.56,10.59,10.620000000000001,11.1,11.120000000000001,11.120000000000001,11.120000000000001,11.11,11.1,11.09,11.07,11.040000000000001,21.04,20.57,20.37,20.16,19.96,19.77,19.57,19.38,19,N/A,N/A +2012,4,22,6,30,101540,100350,99200,58.120000000000005,0,8.69,9.42,9.59,9.69,9.76,9.81,9.85,9.88,9.94,15.83,15.89,15.92,15.94,15.96,15.97,15.97,15.97,15.96,20.67,20.22,20.02,19.82,19.62,19.44,19.240000000000002,19.06,18.68,N/A,N/A +2012,4,22,7,30,101580,100390,99240,58.2,0,8.69,9.39,9.56,9.65,9.71,9.75,9.78,9.81,9.85,21.63,21.66,21.67,21.66,21.66,21.66,21.650000000000002,21.64,21.63,20.42,19.96,19.76,19.55,19.35,19.17,18.97,18.79,18.41,N/A,N/A +2012,4,22,8,30,101580,100390,99240,59.63,0,8.33,8.97,9.11,9.18,9.23,9.25,9.27,9.290000000000001,9.3,20.32,20.43,20.48,20.53,20.57,20.61,20.650000000000002,20.68,20.740000000000002,20.1,19.62,19.42,19.21,19.01,18.830000000000002,18.62,18.44,18.06,N/A,N/A +2012,4,22,9,30,101620,100430,99270,60.97,0,7.140000000000001,7.62,7.72,7.76,7.79,7.8100000000000005,7.8100000000000005,7.82,7.82,22.82,22.91,22.97,23.03,23.080000000000002,23.12,23.17,23.2,23.27,19.78,19.31,19.11,18.900000000000002,18.7,18.51,18.32,18.13,17.75,N/A,N/A +2012,4,22,10,30,101640,100450,99290,62.08,0,6.72,7.140000000000001,7.23,7.2700000000000005,7.29,7.3,7.3100000000000005,7.3100000000000005,7.32,25.02,25.07,25.1,25.13,25.16,25.19,25.23,25.25,25.3,19.59,19.11,18.900000000000002,18.7,18.5,18.32,18.12,17.93,17.56,N/A,N/A +2012,4,22,11,30,101680,100490,99330,62.06,0,5.95,6.3,6.37,6.4,6.42,6.44,6.45,6.45,6.46,19.02,19.09,19.16,19.22,19.28,19.330000000000002,19.39,19.44,19.56,19.490000000000002,19.02,18.82,18.61,18.41,18.23,18.03,17.84,17.46,N/A,N/A +2012,4,22,12,30,101710,100510,99350,61.800000000000004,0,5.93,6.2700000000000005,6.33,6.36,6.37,6.38,6.38,6.38,6.38,16.9,17.05,17.150000000000002,17.240000000000002,17.330000000000002,17.41,17.51,17.6,17.79,19.39,18.92,18.71,18.51,18.31,18.12,17.92,17.740000000000002,17.36,N/A,N/A +2012,4,22,13,30,101730,100540,99380,63.08,0,5.84,6.16,6.2,6.22,6.22,6.22,6.21,6.2,6.18,13.540000000000001,13.700000000000001,13.81,13.93,14.040000000000001,14.13,14.26,14.370000000000001,14.63,19.2,18.72,18.52,18.32,18.12,17.94,17.740000000000002,17.56,17.18,N/A,N/A +2012,4,22,14,30,101800,100600,99440,62.1,0,4.67,4.9,4.93,4.95,4.96,4.96,4.96,4.96,4.96,10.35,10.47,10.56,10.65,10.74,10.83,10.93,11.02,11.26,19.31,18.86,18.66,18.46,18.26,18.080000000000002,17.88,17.7,17.32,N/A,N/A +2012,4,22,15,30,101820,100630,99470,59.9,0,3.64,3.81,3.85,3.86,3.88,3.88,3.89,3.9,3.92,358.94,358.84000000000003,358.8,358.78000000000003,358.76,358.74,358.74,358.74,358.79,19.650000000000002,19.22,19.03,18.830000000000002,18.63,18.45,18.25,18.07,17.68,N/A,N/A +2012,4,22,16,30,101820,100630,99480,56.300000000000004,0,3.8000000000000003,4.01,4.05,4.08,4.1,4.13,4.15,4.17,4.21,348.15000000000003,348.09000000000003,348.06,348.03000000000003,347.99,347.94,347.88,347.82,347.68,20.32,19.92,19.73,19.53,19.330000000000002,19.150000000000002,18.95,18.77,18.39,N/A,N/A +2012,4,22,17,30,101800,100610,99460,56.620000000000005,0,3.81,4.0600000000000005,4.12,4.17,4.2,4.23,4.25,4.28,4.32,318.25,318.59000000000003,318.83,319.04,319.26,319.45,319.67,319.87,320.34000000000003,21.22,20.84,20.650000000000002,20.45,20.26,20.07,19.88,19.69,19.3,N/A,N/A +2012,4,22,18,30,101780,100600,99450,53.160000000000004,0,5.21,5.55,5.62,5.66,5.67,5.68,5.68,5.68,5.67,310.2,310.71,311.02,311.31,311.58,311.83,312.11,312.37,312.98,22.1,21.75,21.57,21.37,21.18,21,20.8,20.62,20.240000000000002,N/A,N/A +2012,4,22,19,30,101750,100570,99430,53.92,0,6.05,6.5,6.59,6.63,6.65,6.67,6.68,6.69,6.76,305.93,306.63,307.1,307.57,308.07,308.57,309.2,309.81,311.72,22.72,22.400000000000002,22.23,22.04,21.86,21.68,21.5,21.32,20.98,N/A,N/A +2012,4,22,20,30,101680,100510,99370,52.910000000000004,0,6.73,7.3100000000000005,7.42,7.48,7.54,7.59,7.7,7.8100000000000005,8.27,304.17,304.63,304.95,305.35,305.85,306.41,307.46,308.56,313.42,23.64,23.42,23.27,23.1,22.94,22.79,22.64,22.51,22.31,N/A,N/A +2012,4,22,21,30,101640,100470,99340,53.88,0,5.87,6.78,7.17,7.55,7.8500000000000005,8.1,8.23,8.33,8.43,303.22,304.69,305.63,306.53000000000003,307.22,307.77,308.18,308.51,309.76,24.38,24.400000000000002,24.38,24.29,24.18,24.060000000000002,23.88,23.7,23.35,N/A,N/A +2012,4,22,22,30,101620,100450,99320,53.34,0,6.2700000000000005,7.43,7.890000000000001,8.27,8.57,8.8,8.97,9.11,9.27,316.99,317.45,317.74,318.11,318.45,318.76,318.96,319.12,319.11,25.19,25.330000000000002,25.34,25.28,25.19,25.080000000000002,24.93,24.78,24.42,N/A,N/A +2012,4,22,23,30,101620,100450,99320,71.32000000000001,0,6.33,6.640000000000001,6.63,6.6000000000000005,6.4,6.08,5.87,5.7,5.59,250.18,250.22,250.13,249.81,252.06,255.93,260.53000000000003,264.86,273,23.13,22.86,22.72,22.59,22.8,23.25,23.57,23.830000000000002,23.650000000000002,N/A,N/A +2012,4,23,0,30,101650,100470,99340,75.12,0,6.55,6.88,6.88,6.82,6.640000000000001,6.38,6.11,5.86,5.59,245.46,245.8,246.08,246.5,249.36,253.71,258.86,263.61,273.66,22.94,22.66,22.51,22.37,22.43,22.64,23.01,23.39,23.38,N/A,N/A +2012,4,23,1,30,101670,100500,99360,76.91,0,6.2700000000000005,6.49,6.390000000000001,6.15,5.7700000000000005,5.32,5.18,5.13,5.24,245.4,246.67000000000002,249.31,255.82,262.59000000000003,269.32,275.56,281.19,293.45,22.990000000000002,22.740000000000002,22.66,22.66,22.89,23.27,23.330000000000002,23.29,23.2,N/A,N/A +2012,4,23,2,30,101690,100520,99390,76.38,0,5.4,5.44,5.2,4.8,4.7700000000000005,4.99,5.2700000000000005,5.55,6.25,241.82,245.11,256.68,284.40000000000003,298.3,304.18,309.21,313.76,320.76,23.31,23.150000000000002,23.27,23.740000000000002,23.94,23.94,23.96,23.990000000000002,23.98,N/A,N/A +2012,4,23,3,30,101720,100550,99420,76.59,0,3.69,3.8000000000000003,3.85,4.09,4.39,4.75,5.21,5.69,6.74,274.16,289.13,298.63,309.05,316.82,322.94,327.48,331.36,336.12,23.69,23.81,23.88,23.92,23.96,23.98,24.02,24.05,24.14,N/A,N/A +2012,4,23,4,30,101770,100600,99460,62.36,0,7.78,8.91,9.32,9.67,9.97,10.23,10.47,10.69,11.11,8.69,8.09,7.72,7.3100000000000005,6.92,6.55,6.18,5.84,5.23,24.580000000000002,24.51,24.42,24.29,24.16,24.02,23.87,23.72,23.39,N/A,N/A +2012,4,23,5,30,101830,100640,99500,55.980000000000004,0,11.58,12.780000000000001,13.08,13.25,13.38,13.48,13.57,13.65,13.870000000000001,21.27,21.240000000000002,21.22,21.2,21.18,21.16,21.14,21.11,21.05,22.81,22.5,22.330000000000002,22.14,21.96,21.78,21.59,21.42,21.07,N/A,N/A +2012,4,23,6,30,101880,100700,99550,54.34,0,12.450000000000001,13.77,14.11,14.31,14.450000000000001,14.56,14.65,14.74,14.950000000000001,23.650000000000002,23.72,23.75,23.78,23.81,23.84,23.86,23.87,23.900000000000002,21.73,21.38,21.2,21.01,20.82,20.64,20.45,20.28,19.93,N/A,N/A +2012,4,23,7,30,101930,100740,99580,56.370000000000005,0,13.59,14.98,15.32,15.5,15.63,15.73,15.81,15.88,16.06,28.71,28.7,28.68,28.66,28.63,28.6,28.55,28.51,28.36,20.76,20.32,20.13,19.93,19.740000000000002,19.56,19.37,19.21,18.87,N/A,N/A +2012,4,23,8,30,101960,100760,99610,56.980000000000004,0,13.9,15.3,15.63,15.81,15.93,16.01,16.07,16.12,16.22,28.830000000000002,28.900000000000002,28.93,28.96,28.97,28.98,28.98,28.98,28.93,20.22,19.740000000000002,19.53,19.330000000000002,19.14,18.96,18.77,18.6,18.26,N/A,N/A +2012,4,23,9,30,101990,100790,99630,58.45,0,13.33,14.65,14.97,15.15,15.26,15.33,15.38,15.42,15.46,31.560000000000002,31.7,31.77,31.830000000000002,31.88,31.92,31.95,31.98,32.02,19.72,19.2,18.990000000000002,18.78,18.57,18.39,18.19,18.01,17.64,N/A,N/A +2012,4,23,10,30,102030,100830,99670,60.31,0,13.1,14.35,14.65,14.81,14.91,14.97,15,15.030000000000001,15.040000000000001,33.44,33.59,33.660000000000004,33.730000000000004,33.78,33.83,33.87,33.910000000000004,33.97,19.01,18.43,18.21,17.990000000000002,17.78,17.59,17.39,17.21,16.830000000000002,N/A,N/A +2012,4,23,11,30,102090,100890,99720,63.27,0,12.19,13.290000000000001,13.55,13.68,13.76,13.82,13.84,13.86,13.86,37.32,37.49,37.6,37.68,37.77,37.85,37.92,37.99,38.12,18.41,17.81,17.580000000000002,17.36,17.150000000000002,16.95,16.75,16.56,16.18,N/A,N/A +2012,4,23,12,30,102140,100940,99770,63.38,0,11.41,12.4,12.63,12.74,12.81,12.85,12.870000000000001,12.88,12.88,36.42,36.57,36.67,36.77,36.85,36.92,37,37.07,37.2,18.01,17.400000000000002,17.16,16.94,16.73,16.53,16.330000000000002,16.14,15.75,N/A,N/A +2012,4,23,13,30,102180,100970,99800,62.34,0,10.4,11.25,11.44,11.540000000000001,11.6,11.64,11.66,11.67,11.67,36.52,36.62,36.68,36.730000000000004,36.78,36.83,36.87,36.910000000000004,36.980000000000004,17.67,17.07,16.830000000000002,16.61,16.4,16.2,15.99,15.8,15.41,N/A,N/A +2012,4,23,14,30,102230,101020,99850,60.44,0,9.4,10.1,10.26,10.34,10.39,10.42,10.43,10.44,10.43,35.93,36.09,36.17,36.25,36.32,36.38,36.44,36.5,36.61,17.54,16.95,16.72,16.5,16.29,16.09,15.88,15.69,15.3,N/A,N/A +2012,4,23,15,30,102240,101030,99860,59.51,0,7.94,8.47,8.59,8.65,8.68,8.700000000000001,8.700000000000001,8.71,8.700000000000001,35.27,35.43,35.54,35.63,35.71,35.78,35.86,35.93,36.06,17.53,16.97,16.75,16.53,16.32,16.12,15.92,15.72,15.33,N/A,N/A +2012,4,23,16,30,102230,101020,99850,57.76,0,6.13,6.51,6.6000000000000005,6.640000000000001,6.67,6.7,6.71,6.73,6.74,36.2,35.96,35.83,35.71,35.59,35.480000000000004,35.35,35.24,35,17.72,17.2,16.98,16.77,16.56,16.37,16.16,15.97,15.57,N/A,N/A +2012,4,23,17,30,102220,101010,99840,52.83,0,4.79,5.07,5.15,5.19,5.23,5.26,5.29,5.3100000000000005,5.3500000000000005,31.95,31.37,31,30.67,30.35,30.05,29.76,29.490000000000002,28.93,18.31,17.84,17.63,17.42,17.22,17.02,16.82,16.63,16.23,N/A,N/A +2012,4,23,18,30,102170,100970,99800,48.99,0,3.56,3.81,3.9,3.96,4.03,4.08,4.13,4.18,4.28,29.09,27.87,27.11,26.41,25.77,25.19,24.61,24.080000000000002,23.04,19.05,18.62,18.43,18.23,18.03,17.84,17.64,17.45,17.06,N/A,N/A +2012,4,23,19,30,102130,100930,99770,44.61,0,2.27,2.47,2.5500000000000003,2.63,2.69,2.7600000000000002,2.82,2.88,3,29.38,26.55,24.84,23.32,22.01,20.85,19.73,18.72,16.85,19.93,19.55,19.36,19.16,18.97,18.78,18.580000000000002,18.39,18.01,N/A,N/A +2012,4,23,20,30,102060,100870,99710,44.82,0,2.6,2.87,2.98,3.0700000000000003,3.15,3.22,3.29,3.34,3.45,339.36,339.19,339.27,339.40000000000003,339.53000000000003,339.66,339.82,339.97,340.31,20.73,20.38,20.2,20.01,19.81,19.63,19.43,19.25,18.86,N/A,N/A +2012,4,23,21,30,102000,100810,99660,46.96,0,3.94,4.2,4.26,4.3,4.33,4.36,4.38,4.4,4.43,326.94,328.29,329.08,329.82,330.48,331.08,331.68,332.21,333.28000000000003,21.05,20.7,20.52,20.32,20.12,19.94,19.73,19.55,19.16,N/A,N/A +2012,4,23,22,30,101930,100740,99590,46.96,0,4.67,5.0200000000000005,5.11,5.16,5.21,5.24,5.2700000000000005,5.29,5.33,335.40000000000003,335.71,335.91,336.09000000000003,336.27,336.44,336.61,336.77,337.15000000000003,21.61,21.28,21.1,20.900000000000002,20.71,20.53,20.32,20.14,19.75,N/A,N/A +2012,4,23,23,30,101880,100700,99550,48.230000000000004,0,5.63,6.07,6.16,6.21,6.24,6.26,6.2700000000000005,6.2700000000000005,6.28,336.52,336.71,336.84000000000003,336.98,337.1,337.23,337.37,337.49,337.8,21.97,21.66,21.48,21.29,21.1,20.91,20.71,20.53,20.14,N/A,N/A +2012,4,24,0,30,101860,100670,99520,49.03,0,5.83,6.3,6.41,6.46,6.5,6.53,6.55,6.5600000000000005,6.58,335.81,336.89,337.55,338.19,338.78000000000003,339.35,339.92,340.44,341.56,22.16,21.86,21.69,21.5,21.31,21.13,20.93,20.75,20.36,N/A,N/A +2012,4,24,1,30,101840,100660,99510,49.050000000000004,0,2.95,3.23,3.33,3.44,3.54,3.64,3.75,3.85,4.07,49.47,45.04,42.35,39.93,37.83,35.93,34.18,32.59,29.8,21.84,21.55,21.39,21.21,21.03,20.85,20.67,20.490000000000002,20.13,N/A,N/A +2012,4,24,2,30,101870,100680,99530,63.77,0,2.73,2.67,2.57,2.47,2.36,2.2600000000000002,2.16,2.07,1.92,130.78,128.07,126.11,123.79,121.13,118.42,114.74000000000001,111.24000000000001,102.06,20.78,20.44,20.26,20.07,19.88,19.7,19.51,19.330000000000002,18.96,N/A,N/A +2012,4,24,3,30,101870,100680,99530,56.75,0,2.73,2.85,2.87,2.88,2.89,2.9,2.91,2.92,2.95,91.73,88.5,86.49,84.54,82.75,81.11,79.44,77.91,74.81,21.04,20.71,20.53,20.35,20.16,19.98,19.78,19.6,19.22,N/A,N/A +2012,4,24,4,30,101840,100650,99500,51.660000000000004,0,2.9,3.06,3.09,3.11,3.12,3.13,3.13,3.13,3.13,73.43,72.08,71.34,70.72,70.19,69.74,69.34,68.99,68.38,21.19,20.85,20.68,20.48,20.29,20.1,19.91,19.72,19.330000000000002,N/A,N/A +2012,4,24,5,30,101830,100650,99490,50.730000000000004,0,2.81,2.92,2.93,2.92,2.91,2.9,2.88,2.87,2.83,68.1,68.45,68.61,68.75,68.88,68.97,69.06,69.13,69.22,21.150000000000002,20.81,20.63,20.43,20.240000000000002,20.05,19.85,19.67,19.28,N/A,N/A +2012,4,24,6,30,101850,100660,99510,51.56,0,2.31,2.37,2.36,2.35,2.33,2.31,2.29,2.27,2.23,91.46000000000001,91.52,91.5,91.48,91.46000000000001,91.44,91.4,91.36,91.29,21.080000000000002,20.740000000000002,20.56,20.37,20.17,19.98,19.79,19.6,19.21,N/A,N/A +2012,4,24,7,30,101850,100660,99510,53.76,0,2.23,2.31,2.31,2.31,2.3000000000000003,2.29,2.2800000000000002,2.27,2.25,109.78,109.35000000000001,109.05,108.74000000000001,108.42,108.13,107.78,107.46000000000001,106.7,21.03,20.68,20.5,20.31,20.11,19.92,19.72,19.54,19.14,N/A,N/A +2012,4,24,8,30,101850,100660,99500,54.93,0,2,2.04,2.0300000000000002,2.02,2,1.98,1.96,1.94,1.9000000000000001,128.27,129.02,129.42000000000002,129.81,130.19,130.54,130.92000000000002,131.27,132,20.93,20.59,20.41,20.21,20.01,19.830000000000002,19.62,19.44,19.05,N/A,N/A +2012,4,24,9,30,101860,100670,99520,58.06,0,2.27,2.35,2.36,2.36,2.35,2.35,2.34,2.33,2.32,161.92000000000002,162.17000000000002,162.21,162.25,162.29,162.33,162.36,162.39000000000001,162.48,20.88,20.53,20.35,20.14,19.95,19.76,19.56,19.37,18.98,N/A,N/A +2012,4,24,10,30,101860,100670,99520,59.67,0,2.2800000000000002,2.38,2.4,2.4,2.41,2.42,2.42,2.42,2.42,183.78,183.98,184.07,184.14000000000001,184.20000000000002,184.24,184.27,184.29,184.27,20.78,20.42,20.240000000000002,20.04,19.84,19.66,19.45,19.27,18.88,N/A,N/A +2012,4,24,11,30,101850,100660,99510,61.02,0,2.57,2.67,2.68,2.69,2.69,2.68,2.68,2.68,2.66,174.69,175.61,176.16,176.71,177.21,177.68,178.18,178.64000000000001,179.59,20.81,20.45,20.27,20.07,19.87,19.68,19.48,19.3,18.900000000000002,N/A,N/A +2012,4,24,12,30,101880,100690,99540,68.88,0,3.68,3.85,3.85,3.85,3.84,3.83,3.81,3.8000000000000003,3.77,196.27,195.64000000000001,195.19,194.75,194.32,193.91,193.48000000000002,193.08,192.24,20.7,20.330000000000002,20.14,19.94,19.740000000000002,19.55,19.35,19.17,18.77,N/A,N/A +2012,4,24,13,30,101890,100700,99550,69.46000000000001,0,4,4.19,4.21,4.22,4.21,4.21,4.19,4.18,4.15,184.94,185.55,185.94,186.28,186.6,186.88,187.17000000000002,187.43,187.95000000000002,20.7,20.32,20.13,19.93,19.73,19.55,19.34,19.150000000000002,18.76,N/A,N/A +2012,4,24,14,30,101930,100740,99580,67.3,0,3.69,3.9,3.94,3.96,3.98,4,4.01,4.0200000000000005,4.03,193.21,192.66,192.33,192.01,191.72,191.44,191.15,190.89000000000001,190.33,20.79,20.42,20.23,20.03,19.84,19.650000000000002,19.44,19.26,18.86,N/A,N/A +2012,4,24,15,30,101930,100750,99590,67.02,0,3.95,4.16,4.19,4.21,4.23,4.24,4.24,4.24,4.25,189.74,189.09,188.68,188.29,187.93,187.6,187.27,186.97,186.37,20.87,20.490000000000002,20.31,20.11,19.91,19.72,19.52,19.330000000000002,18.94,N/A,N/A +2012,4,24,16,30,101920,100740,99580,64.4,0,3.85,4.0600000000000005,4.09,4.11,4.12,4.13,4.13,4.14,4.14,179.04,179.32,179.53,179.75,179.95000000000002,180.14000000000001,180.35,180.54,180.94,20.95,20.580000000000002,20.39,20.19,19.990000000000002,19.81,19.6,19.42,19.03,N/A,N/A +2012,4,24,17,30,101900,100710,99560,63.85,0,4.78,5.04,5.08,5.08,5.08,5.08,5.07,5.05,5.03,171.97,172.77,173.21,173.61,173.98,174.33,174.68,174.99,175.65,21.06,20.68,20.490000000000002,20.29,20.09,19.91,19.7,19.51,19.12,N/A,N/A +2012,4,24,18,30,101870,100680,99530,64.43,0,4.45,4.7,4.75,4.78,4.79,4.8,4.8,4.8100000000000005,4.8100000000000005,181.54,181.6,181.53,181.42000000000002,181.31,181.19,181.05,180.91,180.6,21.14,20.77,20.580000000000002,20.38,20.18,19.990000000000002,19.79,19.61,19.21,N/A,N/A +2012,4,24,19,30,101830,100640,99500,70.73,0,5.9,6.29,6.37,6.41,6.42,6.43,6.44,6.44,6.43,181.53,181.92000000000002,182.11,182.3,182.47,182.62,182.77,182.92000000000002,183.21,21.080000000000002,20.69,20.51,20.31,20.11,19.92,19.72,19.53,19.14,N/A,N/A +2012,4,24,20,30,101780,100600,99450,71.2,0,5.88,6.2700000000000005,6.34,6.36,6.37,6.38,6.37,6.36,6.33,179.79,179.96,180.07,180.20000000000002,180.31,180.42000000000002,180.53,180.64000000000001,180.85,21.12,20.73,20.54,20.34,20.14,19.95,19.75,19.57,19.17,N/A,N/A +2012,4,24,21,30,101730,100550,99400,68.41,0,6.23,6.68,6.78,6.82,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,182.69,182.98,183.16,183.33,183.49,183.64000000000001,183.8,183.94,184.23,21.25,20.88,20.69,20.490000000000002,20.3,20.11,19.91,19.72,19.330000000000002,N/A,N/A +2012,4,24,22,30,101680,100500,99350,69.97,0,6.53,7.0200000000000005,7.13,7.18,7.22,7.24,7.26,7.2700000000000005,7.28,183.99,184.02,184.03,184.05,184.07,184.1,184.14000000000001,184.17000000000002,184.27,21.25,20.87,20.69,20.490000000000002,20.29,20.1,19.900000000000002,19.72,19.330000000000002,N/A,N/A +2012,4,24,23,30,101640,100460,99310,73.73,0,7.09,7.66,7.78,7.8500000000000005,7.9,7.930000000000001,7.94,7.96,7.96,184.74,185.04,185.18,185.3,185.4,185.48,185.55,185.61,185.72,21.3,20.92,20.740000000000002,20.53,20.34,20.150000000000002,19.94,19.76,19.36,N/A,N/A +2012,4,25,0,30,101600,100420,99270,72.01,0,7.21,7.8,7.930000000000001,8,8.05,8.08,8.1,8.11,8.120000000000001,185.22,185.16,185.11,185.04,184.98,184.91,184.84,184.77,184.63,21.400000000000002,21.03,20.84,20.64,20.44,20.25,20.05,19.87,19.48,N/A,N/A +2012,4,25,1,30,101570,100390,99240,70.32000000000001,0,7.59,8.24,8.38,8.45,8.49,8.52,8.540000000000001,8.55,8.55,186.75,186.6,186.53,186.46,186.41,186.36,186.31,186.27,186.20000000000002,21.5,21.13,20.95,20.75,20.55,20.37,20.16,19.98,19.59,N/A,N/A +2012,4,25,2,30,101570,100390,99240,75.34,0,8.040000000000001,8.75,8.91,9,9.05,9.09,9.1,9.120000000000001,9.120000000000001,188.25,188.24,188.26,188.29,188.32,188.34,188.38,188.42000000000002,188.49,21.5,21.12,20.93,20.73,20.53,20.35,20.14,19.96,19.56,N/A,N/A +2012,4,25,3,30,101540,100360,99220,70.2,0,7.9,8.61,8.77,8.86,8.92,8.96,8.99,9.02,9.05,186.85,186.81,186.82,186.84,186.87,186.89000000000001,186.92000000000002,186.95000000000002,187.03,21.650000000000002,21.29,21.11,20.92,20.72,20.53,20.330000000000002,20.150000000000002,19.77,N/A,N/A +2012,4,25,4,30,101520,100350,99200,71.18,0,8.67,9.450000000000001,9.63,9.73,9.790000000000001,9.84,9.870000000000001,9.89,9.92,189.6,189.83,189.92000000000002,189.99,190.06,190.12,190.19,190.25,190.36,21.69,21.330000000000002,21.150000000000002,20.95,20.75,20.57,20.37,20.18,19.8,N/A,N/A +2012,4,25,5,30,101500,100320,99180,78.93,0,9.02,9.85,10.03,10.120000000000001,10.17,10.200000000000001,10.21,10.21,10.19,188.22,188.20000000000002,188.26,188.33,188.4,188.48,188.56,188.64000000000001,188.81,21.63,21.26,21.080000000000002,20.88,20.68,20.490000000000002,20.29,20.11,19.72,N/A,N/A +2012,4,25,6,30,101520,100340,99200,75.27,0,9.42,10.31,10.53,10.64,10.72,10.76,10.790000000000001,10.81,10.83,192.93,193.09,193.16,193.22,193.26,193.3,193.34,193.38,193.46,21.85,21.51,21.330000000000002,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A +2012,4,25,7,30,101520,100340,99200,77.55,0,8.85,9.76,9.99,10.13,10.23,10.3,10.36,10.4,10.46,196.39000000000001,196.38,196.39000000000001,196.39000000000001,196.39000000000001,196.4,196.4,196.4,196.39000000000001,21.900000000000002,21.55,21.36,21.17,20.97,20.78,20.580000000000002,20.39,20,N/A,N/A +2012,4,25,8,30,101510,100330,99190,80.75,0,8.82,9.73,9.950000000000001,10.09,10.18,10.25,10.290000000000001,10.33,10.38,194.53,195.05,195.25,195.44,195.6,195.75,195.89000000000001,196.03,196.3,21.89,21.54,21.36,21.16,20.97,20.78,20.580000000000002,20.400000000000002,20.01,N/A,N/A +2012,4,25,9,30,101510,100330,99190,79.23,0,9.02,9.98,10.21,10.36,10.47,10.540000000000001,10.59,10.63,10.67,202.13,202.34,202.38,202.39000000000001,202.39000000000001,202.38,202.36,202.33,202.25,22.05,21.71,21.53,21.330000000000002,21.14,20.95,20.75,20.56,20.17,N/A,N/A +2012,4,25,10,30,101490,100320,99180,81.76,0,8.48,9.31,9.5,9.61,9.69,9.74,9.77,9.8,9.83,196.63,196.67000000000002,196.72,196.78,196.85,196.91,196.99,197.06,197.24,21.97,21.63,21.46,21.26,21.07,20.88,20.68,20.5,20.11,N/A,N/A +2012,4,25,11,30,101490,100310,99170,81.4,0,8.38,9.22,9.41,9.52,9.6,9.65,9.68,9.72,9.77,195,195.11,195.14000000000001,195.16,195.18,195.19,195.22,195.24,195.3,22.07,21.740000000000002,21.57,21.37,21.18,21,20.8,20.62,20.240000000000002,N/A,N/A +2012,4,25,12,30,101500,100320,99180,81.52,0,8.91,9.82,10.03,10.15,10.24,10.290000000000001,10.33,10.370000000000001,10.4,195.47,195.63,195.68,195.72,195.75,195.78,195.82,195.84,195.91,22.17,21.84,21.67,21.47,21.28,21.09,20.89,20.71,20.330000000000002,N/A,N/A +2012,4,25,13,30,101540,100370,99230,82.06,0,8.950000000000001,9.86,10.1,10.24,10.33,10.4,10.450000000000001,10.49,10.540000000000001,196.56,196.57,196.58,196.58,196.59,196.59,196.59,196.59,196.58,22.240000000000002,21.92,21.75,21.55,21.36,21.17,20.97,20.79,20.400000000000002,N/A,N/A +2012,4,25,14,30,101560,100390,99250,84.23,0,8.55,9.31,9.49,9.57,9.620000000000001,9.64,9.65,9.66,9.65,194.31,194.22,194.24,194.28,194.33,194.37,194.42000000000002,194.47,194.63,22.26,21.94,21.77,21.57,21.38,21.2,21.01,20.830000000000002,20.45,N/A,N/A +2012,4,25,15,30,101570,100390,99250,84.24,0,8.39,9.23,9.42,9.540000000000001,9.61,9.67,9.71,9.74,9.81,194.26,194.49,194.57,194.65,194.73000000000002,194.81,194.9,194.99,195.21,22.38,22.07,21.900000000000002,21.71,21.52,21.34,21.14,20.97,20.59,N/A,N/A +2012,4,25,16,30,101600,100420,99290,84.78,0,8.55,9.47,9.69,9.83,9.93,10,10.05,10.1,10.16,193.6,193.82,193.94,194.05,194.16,194.27,194.39000000000001,194.49,194.73000000000002,22.48,22.17,22,21.81,21.62,21.43,21.240000000000002,21.06,20.67,N/A,N/A +2012,4,25,17,30,101580,100400,99270,84.66,0,8.59,9.51,9.74,9.88,9.98,10.06,10.120000000000001,10.16,10.24,197.42000000000002,197.58,197.69,197.8,197.91,198.02,198.12,198.22,198.44,22.56,22.26,22.1,21.900000000000002,21.72,21.53,21.34,21.16,20.77,N/A,N/A +2012,4,25,18,30,101580,100400,99270,86.44,0,8.82,9.74,9.97,10.11,10.21,10.27,10.31,10.33,10.35,197.69,197.6,197.6,197.61,197.62,197.63,197.63,197.64000000000001,197.64000000000001,22.6,22.3,22.13,21.93,21.740000000000002,21.55,21.36,21.17,20.78,N/A,N/A +2012,4,25,19,30,101580,100410,99270,86.37,0,8.17,8.99,9.19,9.3,9.370000000000001,9.42,9.450000000000001,9.47,9.49,195.55,195.6,195.67000000000002,195.74,195.8,195.86,195.92000000000002,195.97,196.09,22.66,22.36,22.19,22,21.81,21.63,21.43,21.25,20.87,N/A,N/A +2012,4,25,20,30,101530,100360,99220,86.83,0,8.42,9.290000000000001,9.51,9.63,9.72,9.790000000000001,9.83,9.870000000000001,9.91,194.51,194.69,194.78,194.87,194.96,195.04,195.12,195.21,195.4,22.68,22.39,22.22,22.03,21.84,21.66,21.46,21.28,20.900000000000002,N/A,N/A +2012,4,25,21,30,101490,100320,99180,87.45,0,9.27,10.28,10.540000000000001,10.700000000000001,10.81,10.9,10.950000000000001,11,11.05,192.84,192.95000000000002,193.02,193.1,193.17000000000002,193.24,193.31,193.38,193.52,22.68,22.400000000000002,22.23,22.04,21.85,21.67,21.47,21.29,20.900000000000002,N/A,N/A +2012,4,25,22,30,101470,100300,99160,87.47,0,8.86,9.82,10.08,10.24,10.35,10.44,10.5,10.55,10.620000000000001,189.56,189.55,189.61,189.66,189.72,189.77,189.83,189.88,190,22.68,22.400000000000002,22.23,22.04,21.86,21.67,21.48,21.3,20.92,N/A,N/A +2012,4,25,23,30,101430,100260,99130,87.85000000000001,0,9.1,10.09,10.32,10.48,10.58,10.66,10.72,10.78,10.86,188.14000000000001,188.21,188.25,188.29,188.33,188.37,188.42000000000002,188.47,188.59,22.650000000000002,22.36,22.2,22.01,21.82,21.64,21.45,21.27,20.89,N/A,N/A +2012,4,26,0,30,101390,100220,99080,88.10000000000001,0,9.540000000000001,10.620000000000001,10.89,11.07,11.200000000000001,11.290000000000001,11.36,11.41,11.49,187.76,187.77,187.81,187.86,187.91,187.95000000000002,188.01,188.05,188.17000000000002,22.6,22.31,22.14,21.95,21.76,21.580000000000002,21.39,21.21,20.82,N/A,N/A +2012,4,26,1,30,101360,100190,99060,86.26,0,10,11.08,11.370000000000001,11.55,11.68,11.78,11.86,11.92,12.030000000000001,186.67000000000002,186.47,186.42000000000002,186.37,186.34,186.33,186.32,186.32,186.36,22.67,22.400000000000002,22.240000000000002,22.05,21.87,21.69,21.5,21.32,20.95,N/A,N/A +2012,4,26,2,30,101350,100180,99050,85.7,0,10.19,11.41,11.73,11.96,12.14,12.280000000000001,12.41,12.530000000000001,12.76,185.78,185.97,186.04,186.11,186.19,186.26,186.33,186.4,186.55,22.7,22.44,22.28,22.09,21.91,21.740000000000002,21.55,21.38,21.01,N/A,N/A +2012,4,26,3,30,101330,100160,99030,85.24,0,9.620000000000001,10.63,10.93,11.16,11.4,11.64,11.950000000000001,12.27,13.030000000000001,186.38,186.62,186.78,186.97,187.19,187.43,187.73,188.04,188.6,22.73,22.490000000000002,22.35,22.19,22.03,21.89,21.75,21.62,21.35,N/A,N/A +2012,4,26,4,30,101320,100150,99010,85.54,0,11.35,12.75,13.13,13.39,13.61,13.780000000000001,13.93,14.06,14.290000000000001,184.54,184.88,185.06,185.26,185.45000000000002,185.63,185.8,185.95000000000002,186.3,22.72,22.46,22.3,22.12,21.93,21.76,21.57,21.39,21.02,N/A,N/A +2012,4,26,5,30,101320,100150,99020,84.51,0,11.120000000000001,12.5,12.870000000000001,13.14,13.34,13.49,13.61,13.700000000000001,13.89,189.42000000000002,188.95000000000002,188.81,188.66,188.55,188.44,188.34,188.25,188.07,22.81,22.55,22.39,22.2,22.02,21.830000000000002,21.64,21.46,21.07,N/A,N/A +2012,4,26,6,30,101330,100160,99020,85.54,0,11.6,13.05,13.44,13.71,13.9,14.040000000000001,14.13,14.21,14.290000000000001,188.9,188.71,188.66,188.61,188.59,188.56,188.56,188.56,188.59,22.84,22.55,22.38,22.19,22,21.81,21.61,21.43,21.04,N/A,N/A +2012,4,26,7,30,101340,100170,99030,86.01,0,10.78,11.94,12.26,12.47,12.63,12.77,12.9,13.030000000000001,13.46,189.59,189.49,189.5,189.5,189.51,189.52,189.54,189.57,189.87,22.91,22.64,22.48,22.3,22.13,21.96,21.79,21.63,21.36,N/A,N/A +2012,4,26,8,30,101330,100160,99020,88.12,0,11.28,12.63,13.01,13.27,13.46,13.61,13.72,13.81,13.950000000000001,192.33,192.27,192.24,192.22,192.22,192.22,192.23000000000002,192.26,192.35,22.830000000000002,22.55,22.38,22.19,22,21.82,21.63,21.45,21.07,N/A,N/A +2012,4,26,9,30,101320,100160,99020,88.81,0,11.11,12.34,12.67,12.91,13.11,13.280000000000001,13.46,13.64,14.13,192,192.5,192.71,192.94,193.18,193.43,193.72,194.01,194.78,22.81,22.54,22.38,22.2,22.03,21.86,21.68,21.53,21.21,N/A,N/A +2012,4,26,10,30,101330,100160,99030,88.73,0,9.96,11.01,11.28,11.450000000000001,11.58,11.69,11.8,11.91,12.31,190.05,190.29,190.44,190.61,190.79,190.99,191.24,191.48000000000002,192.16,22.81,22.53,22.37,22.19,22.02,21.85,21.67,21.51,21.22,N/A,N/A +2012,4,26,11,30,101350,100180,99050,90.36,0,10.41,11.57,11.91,12.120000000000001,12.290000000000001,12.42,12.540000000000001,12.65,12.85,186.98,187.06,187.17000000000002,187.28,187.38,187.48,187.59,187.70000000000002,187.94,22.75,22.46,22.29,22.11,21.92,21.740000000000002,21.55,21.38,21.02,N/A,N/A +2012,4,26,12,30,101390,100220,99090,89.14,0,10.18,11.34,11.67,11.91,12.08,12.23,12.35,12.46,12.67,187.76,187.94,188.06,188.19,188.31,188.42000000000002,188.55,188.66,188.94,22.82,22.54,22.38,22.19,22.01,21.830000000000002,21.64,21.46,21.09,N/A,N/A +2012,4,26,13,30,101430,100260,99130,90.45,0,9.93,11.03,11.31,11.5,11.65,11.76,11.86,11.94,12.1,189.56,189.76,189.88,190,190.14000000000001,190.26,190.41,190.55,190.9,22.79,22.5,22.330000000000002,22.150000000000002,21.96,21.78,21.580000000000002,21.41,21.03,N/A,N/A +2012,4,26,14,30,101510,100340,99200,90,0,9.13,10.120000000000001,10.42,10.64,10.81,10.950000000000001,11.08,11.19,11.42,187.66,187.88,188.06,188.25,188.42000000000002,188.58,188.75,188.89000000000001,189.22,22.900000000000002,22.63,22.48,22.29,22.11,21.93,21.75,21.57,21.21,N/A,N/A +2012,4,26,15,30,101540,100370,99240,88.29,0,9.21,10.370000000000001,10.700000000000001,10.97,11.200000000000001,11.4,11.61,11.8,12.23,186.99,187.66,187.94,188.25,188.56,188.88,189.23,189.56,190.39000000000001,23.05,22.79,22.64,22.46,22.28,22.11,21.93,21.76,21.41,N/A,N/A +2012,4,26,16,30,101560,100390,99260,89.13,0,8.620000000000001,9.56,9.83,10.03,10.18,10.31,10.43,10.53,10.78,185.45000000000002,185.71,185.95000000000002,186.24,186.55,186.88,187.27,187.66,188.70000000000002,23.02,22.76,22.6,22.42,22.240000000000002,22.07,21.89,21.72,21.36,N/A,N/A +2012,4,26,17,30,101570,100400,99270,88.21000000000001,0,9.16,10.17,10.46,10.66,10.81,10.93,11.03,11.120000000000001,11.28,187.6,187.75,187.91,188.09,188.26,188.43,188.62,188.79,189.17000000000002,23.09,22.830000000000002,22.68,22.490000000000002,22.31,22.13,21.94,21.77,21.39,N/A,N/A +2012,4,26,18,30,101570,100400,99260,87.93,0,8.8,9.76,10.03,10.21,10.35,10.47,10.57,10.65,10.81,189.84,189.92000000000002,190.02,190.14000000000001,190.25,190.35,190.48,190.59,190.85,23.12,22.86,22.7,22.52,22.34,22.16,21.97,21.8,21.43,N/A,N/A +2012,4,26,19,30,101570,100400,99270,86.96000000000001,0,9.09,10.120000000000001,10.39,10.58,10.72,10.82,10.9,10.98,11.09,185.36,185.55,185.67000000000002,185.82,185.96,186.1,186.25,186.39000000000001,186.73,23.13,22.87,22.71,22.53,22.35,22.17,21.98,21.8,21.43,N/A,N/A +2012,4,26,20,30,101520,100350,99220,87.5,0,8.77,9.71,9.96,10.120000000000001,10.25,10.34,10.42,10.49,10.620000000000001,184.91,185,185.09,185.19,185.29,185.39000000000001,185.51,185.62,185.9,23.080000000000002,22.82,22.66,22.48,22.3,22.13,21.94,21.77,21.41,N/A,N/A +2012,4,26,21,30,101490,100320,99190,86.91,0,8.71,9.700000000000001,9.96,10.14,10.28,10.39,10.46,10.53,10.64,184.64000000000001,184.73,184.78,184.85,184.92000000000002,184.99,185.08,185.16,185.34,23.09,22.82,22.66,22.48,22.3,22.12,21.92,21.75,21.37,N/A,N/A +2012,4,26,22,30,101460,100290,99160,85.57000000000001,0,8.58,9.55,9.83,10.03,10.18,10.3,10.41,10.51,10.69,186.58,187.05,187.3,187.55,187.79,188.01,188.26,188.49,189,23.06,22.81,22.67,22.490000000000002,22.31,22.14,21.95,21.78,21.41,N/A,N/A +2012,4,26,23,30,101420,100250,99120,85.8,0,8.92,9.9,10.17,10.35,10.47,10.57,10.65,10.71,10.81,184.05,184.07,184.15,184.24,184.32,184.4,184.49,184.58,184.76,23,22.740000000000002,22.59,22.400000000000002,22.22,22.04,21.86,21.68,21.31,N/A,N/A +2012,4,27,0,30,101390,100220,99080,85.14,0,9.02,9.94,10.18,10.32,10.42,10.49,10.55,10.6,10.71,180.54,180.64000000000001,180.76,180.89000000000001,181.04,181.20000000000002,181.39000000000001,181.58,182.1,22.94,22.68,22.53,22.35,22.17,22,21.81,21.650000000000002,21.29,N/A,N/A +2012,4,27,1,30,101370,100200,99070,83.03,0,9.47,10.49,10.77,10.950000000000001,11.07,11.16,11.23,11.290000000000001,11.39,184.15,184.31,184.41,184.5,184.58,184.64000000000001,184.69,184.74,184.84,22.98,22.73,22.57,22.39,22.22,22.04,21.86,21.69,21.34,N/A,N/A +2012,4,27,2,30,101360,100190,99060,80.42,0,9.21,10.25,10.55,10.76,10.94,11.09,11.22,11.35,11.61,184.53,184.81,184.91,185,185.08,185.15,185.22,185.27,185.36,23.03,22.79,22.650000000000002,22.47,22.3,22.13,21.95,21.78,21.43,N/A,N/A +2012,4,27,3,30,101340,100170,99040,81.43,0,10.19,11.3,11.58,11.74,11.85,11.93,11.98,12.01,12.040000000000001,179.37,179.29,179.31,179.34,179.38,179.42000000000002,179.48,179.54,179.68,22.95,22.68,22.52,22.34,22.150000000000002,21.97,21.78,21.61,21.23,N/A,N/A +2012,4,27,4,30,101300,100130,99000,78.82000000000001,0,8.73,9.65,9.93,10.17,10.42,10.68,11.06,11.44,12.13,181.25,181.66,181.96,182.33,182.8,183.32,184.04,184.76,185.69,23.01,22.8,22.67,22.52,22.38,22.25,22.14,22.03,21.75,N/A,N/A +2012,4,27,5,30,101300,100130,99000,80.24,0,10.23,11.3,11.59,11.77,11.93,12.05,12.19,12.31,12.63,179.57,180.18,180.41,180.63,180.85,181.06,181.29,181.5,181.98,22.96,22.72,22.580000000000002,22.400000000000002,22.240000000000002,22.07,21.900000000000002,21.740000000000002,21.41,N/A,N/A +2012,4,27,6,30,101310,100140,99000,81.74,0,9.85,10.8,11.03,11.16,11.25,11.31,11.38,11.44,11.66,180.4,180.54,180.59,180.63,180.66,180.68,180.71,180.74,180.91,22.95,22.650000000000002,22.490000000000002,22.31,22.14,21.97,21.79,21.64,21.330000000000002,N/A,N/A +2012,4,27,7,30,101330,100160,99030,79.13,0,9.53,10.75,11.09,11.35,11.55,11.72,11.85,11.97,12.14,181.97,181.70000000000002,181.68,181.66,181.65,181.63,181.62,181.6,181.57,23.26,22.98,22.82,22.63,22.45,22.26,22.07,21.89,21.5,N/A,N/A +2012,4,27,8,30,101320,100150,99020,77.84,0,8.99,10.1,10.43,10.72,11,11.27,11.58,11.89,12.58,182.87,183.1,183.24,183.38,183.53,183.67000000000002,183.82,183.96,184.18,23.41,23.18,23.04,22.88,22.73,22.57,22.42,22.27,21.95,N/A,N/A +2012,4,27,9,30,101320,100160,99020,81.82000000000001,0,9.61,10.68,10.950000000000001,11.13,11.26,11.370000000000001,11.47,11.56,11.76,179.61,179.57,179.63,179.71,179.8,179.88,180,180.1,180.47,23.2,22.93,22.77,22.59,22.400000000000002,22.23,22.04,21.87,21.52,N/A,N/A +2012,4,27,10,30,101310,100150,99010,83.74,0,10.71,11.9,12.19,12.36,12.48,12.56,12.61,12.66,12.700000000000001,176.56,176.74,176.87,177.01,177.15,177.3,177.45000000000002,177.59,177.93,23.18,22.900000000000002,22.73,22.54,22.36,22.18,21.990000000000002,21.81,21.43,N/A,N/A +2012,4,27,11,30,101320,100160,99020,83.17,0,10.55,11.68,11.98,12.17,12.31,12.41,12.5,12.57,12.72,183.08,183.26,183.34,183.42000000000002,183.51,183.6,183.70000000000002,183.8,184.04,23.19,22.92,22.76,22.580000000000002,22.400000000000002,22.22,22.04,21.87,21.51,N/A,N/A +2012,4,27,12,30,101350,100180,99050,81.36,0,10.39,11.65,11.99,12.25,12.450000000000001,12.61,12.76,12.88,13.1,175.95000000000002,176.67000000000002,176.95000000000002,177.23,177.5,177.74,177.99,178.23,178.69,23.38,23.12,22.97,22.79,22.61,22.44,22.25,22.07,21.7,N/A,N/A +2012,4,27,13,30,101350,100190,99050,80.99,0,12.120000000000001,13.6,13.98,14.25,14.43,14.57,14.68,14.76,14.870000000000001,179.38,179.66,179.77,179.87,179.96,180.03,180.09,180.14000000000001,180.21,23.28,23,22.830000000000002,22.64,22.45,22.26,22.07,21.88,21.490000000000002,N/A,N/A +2012,4,27,14,30,101390,100230,99090,85.10000000000001,0,11.56,12.91,13.26,13.49,13.64,13.76,13.85,13.92,14,178.63,178.48,178.47,178.47,178.47,178.47,178.48,178.48,178.49,23.080000000000002,22.78,22.61,22.41,22.22,22.04,21.84,21.650000000000002,21.27,N/A,N/A +2012,4,27,15,30,101420,100260,99120,85.96000000000001,0,11.47,12.81,13.19,13.43,13.6,13.74,13.83,13.91,14.02,176.61,176.81,176.93,177.04,177.15,177.24,177.33,177.41,177.57,23.14,22.85,22.69,22.490000000000002,22.3,22.12,21.92,21.740000000000002,21.36,N/A,N/A +2012,4,27,16,30,101450,100290,99150,82.99,0,10.51,11.72,12.05,12.27,12.43,12.55,12.64,12.72,12.83,176.99,176.79,176.78,176.77,176.78,176.78,176.79,176.8,176.85,23.28,23,22.84,22.650000000000002,22.47,22.29,22.09,21.91,21.54,N/A,N/A +2012,4,27,17,30,101460,100290,99160,81.42,0,10.41,11.6,11.93,12.14,12.3,12.42,12.52,12.6,12.73,180.36,180.85,181.07,181.29,181.49,181.67000000000002,181.85,182.01,182.32,23.29,23.02,22.86,22.67,22.48,22.3,22.11,21.93,21.55,N/A,N/A +2012,4,27,18,30,101480,100310,99180,83.69,0,10.03,11.25,11.6,11.83,12,12.13,12.22,12.31,12.42,181.32,181.52,181.59,181.65,181.71,181.76,181.8,181.84,181.9,23.27,22.98,22.82,22.63,22.44,22.26,22.06,21.88,21.490000000000002,N/A,N/A +2012,4,27,19,30,101470,100300,99160,79.54,0,9.34,10.26,10.49,10.61,10.69,10.74,10.76,10.78,10.78,172.87,172.51,172.53,172.58,172.67000000000002,172.77,172.94,173.1,173.72,23.34,23.07,22.91,22.73,22.55,22.37,22.19,22.01,21.66,N/A,N/A +2012,4,27,20,30,101450,100280,99150,80.16,0,9.13,10.14,10.42,10.6,10.72,10.8,10.870000000000001,10.92,10.98,171.9,171.92000000000002,172.03,172.12,172.20000000000002,172.26,172.31,172.36,172.43,23.36,23.09,22.93,22.740000000000002,22.56,22.37,22.18,22,21.62,N/A,N/A +2012,4,27,21,30,101410,100240,99110,79.38,0,9.19,10.25,10.540000000000001,10.73,10.870000000000001,10.98,11.06,11.13,11.22,175.06,175.29,175.4,175.49,175.57,175.64000000000001,175.70000000000002,175.76,175.87,23.37,23.11,22.95,22.76,22.580000000000002,22.400000000000002,22.2,22.02,21.64,N/A,N/A +2012,4,27,22,30,101360,100200,99060,78.2,0,8.99,9.97,10.23,10.41,10.540000000000001,10.64,10.73,10.8,10.91,171.1,171.49,171.68,171.88,172.08,172.28,172.49,172.68,173.09,23.38,23.13,22.97,22.78,22.6,22.42,22.23,22.05,21.68,N/A,N/A +2012,4,27,23,30,101320,100150,99020,76.83,0,9.15,10.17,10.43,10.6,10.72,10.82,10.89,10.950000000000001,11.040000000000001,167.73,167.96,168.09,168.22,168.34,168.46,168.58,168.69,168.93,23.35,23.09,22.94,22.75,22.57,22.39,22.2,22.02,21.650000000000002,N/A,N/A +2012,4,28,0,30,101280,100110,98980,76.81,0,9.32,10.290000000000001,10.55,10.72,10.86,10.96,11.06,11.14,11.32,170.93,171.36,171.6,171.84,172.07,172.31,172.56,172.79,173.32,23.330000000000002,23.080000000000002,22.93,22.76,22.59,22.41,22.23,22.07,21.72,N/A,N/A +2012,4,28,1,30,101260,100090,98960,75.26,0,10.35,11.51,11.83,12.040000000000001,12.19,12.3,12.39,12.47,12.59,169.66,169.85,169.92000000000002,169.99,170.04,170.07,170.11,170.14000000000001,170.19,23.330000000000002,23.080000000000002,22.92,22.73,22.55,22.37,22.18,22,21.63,N/A,N/A +2012,4,28,2,30,101270,100100,98970,76.36,0,9.64,10.72,11.03,11.24,11.4,11.53,11.63,11.73,11.9,168.59,168.45000000000002,168.39000000000001,168.33,168.29,168.26,168.24,168.23,168.24,23.29,23.05,22.900000000000002,22.72,22.54,22.37,22.18,22.01,21.650000000000002,N/A,N/A +2012,4,28,3,30,101250,100080,98940,78.42,0,10.76,12.02,12.35,12.57,12.74,12.86,12.96,13.05,13.18,169.88,170.41,170.57,170.71,170.82,170.92000000000002,171,171.08,171.20000000000002,23.150000000000002,22.87,22.7,22.51,22.330000000000002,22.150000000000002,21.95,21.77,21.39,N/A,N/A +2012,4,28,4,30,101220,100050,98920,77.28,0,10.1,11.35,11.69,11.94,12.120000000000001,12.26,12.38,12.49,12.66,167.27,167.69,167.88,168.05,168.21,168.35,168.49,168.62,168.87,23.3,23.03,22.87,22.69,22.5,22.32,22.13,21.95,21.57,N/A,N/A +2012,4,28,5,30,101200,100030,98900,83.43,0,11.35,12.68,13.030000000000001,13.25,13.41,13.530000000000001,13.61,13.68,13.77,166.91,167.02,167.09,167.16,167.22,167.29,167.35,167.41,167.53,23.02,22.71,22.54,22.35,22.150000000000002,21.97,21.77,21.59,21.2,N/A,N/A +2012,4,28,6,30,101230,100060,98930,82.91,0,12.200000000000001,13.59,13.96,14.17,14.31,14.41,14.47,14.52,14.56,164.69,165.34,165.61,165.85,166.06,166.25,166.43,166.59,166.88,23.1,22.78,22.61,22.41,22.22,22.04,21.84,21.650000000000002,21.27,N/A,N/A +2012,4,28,7,30,101220,100050,98920,84.42,0,11.19,12.39,12.68,12.85,12.97,13.05,13.1,13.15,13.21,164.45000000000002,164.27,164.27,164.27,164.3,164.33,164.38,164.44,164.6,23.16,22.84,22.67,22.47,22.29,22.1,21.91,21.73,21.36,N/A,N/A +2012,4,28,8,30,101230,100070,98940,86.59,0,11.14,12.44,12.780000000000001,13.01,13.19,13.32,13.42,13.5,13.620000000000001,171.51,171.22,171.16,171.14000000000001,171.14000000000001,171.16,171.19,171.23,171.35,23.25,22.93,22.76,22.56,22.37,22.18,21.98,21.8,21.41,N/A,N/A +2012,4,28,9,30,101240,100070,98940,88.71000000000001,0,9.77,10.790000000000001,11.06,11.22,11.33,11.41,11.47,11.53,11.6,170.05,170.21,170.36,170.51,170.65,170.79,170.94,171.07,171.37,23.29,22.98,22.81,22.61,22.42,22.240000000000002,22.04,21.86,21.47,N/A,N/A +2012,4,28,10,30,101240,100080,98950,89.82000000000001,0,10.34,11.43,11.72,11.89,12.01,12.09,12.15,12.200000000000001,12.25,164.79,164.89000000000001,165.01,165.15,165.28,165.42000000000002,165.57,165.72,166.06,23.19,22.87,22.7,22.5,22.31,22.12,21.93,21.740000000000002,21.36,N/A,N/A +2012,4,28,11,30,101260,100090,98960,89.34,0,10.3,11.4,11.700000000000001,11.9,12.040000000000001,12.14,12.23,12.3,12.41,169.92000000000002,170.14000000000001,170.23,170.34,170.45000000000002,170.56,170.69,170.82,171.14000000000001,23.3,22.990000000000002,22.830000000000002,22.64,22.45,22.26,22.080000000000002,21.900000000000002,21.52,N/A,N/A +2012,4,28,12,30,101280,100120,98990,88.54,0,9.370000000000001,10.39,10.64,10.790000000000001,10.9,10.98,11.040000000000001,11.08,11.17,171.62,172.07,172.24,172.41,172.56,172.69,172.84,172.98,173.29,23.35,23.06,22.89,22.7,22.51,22.330000000000002,22.14,21.96,21.59,N/A,N/A +2012,4,28,13,30,101310,100150,99020,88.37,0,9.040000000000001,9.97,10.200000000000001,10.33,10.42,10.48,10.51,10.53,10.55,168.71,168.99,169.17000000000002,169.35,169.5,169.65,169.79,169.93,170.21,23.52,23.23,23.06,22.87,22.69,22.51,22.31,22.14,21.76,N/A,N/A +2012,4,28,14,30,101370,100200,99070,87.76,0,8.97,9.870000000000001,10.09,10.21,10.28,10.33,10.370000000000001,10.39,10.42,159.95000000000002,159.76,159.81,159.85,159.9,159.95000000000002,160.02,160.09,160.26,23.31,23,22.830000000000002,22.64,22.45,22.26,22.07,21.89,21.51,N/A,N/A +2012,4,28,15,30,101400,100240,99110,87.7,0,9.040000000000001,9.98,10.200000000000001,10.34,10.43,10.5,10.55,10.58,10.64,160,160.23,160.39000000000001,160.56,160.72,160.88,161.05,161.20000000000002,161.55,23.36,23.05,22.88,22.69,22.5,22.32,22.12,21.94,21.56,N/A,N/A +2012,4,28,16,30,101420,100250,99120,86.48,0,8.63,9.52,9.74,9.870000000000001,9.96,10.03,10.08,10.13,10.21,158,158.42000000000002,158.62,158.82,159,159.17000000000002,159.36,159.54,159.93,23.32,23.01,22.84,22.650000000000002,22.46,22.28,22.080000000000002,21.900000000000002,21.52,N/A,N/A +2012,4,28,17,30,101440,100280,99140,83.8,0,8.35,9.23,9.44,9.57,9.67,9.73,9.78,9.81,9.86,156.16,156.09,156.09,156.09,156.09,156.1,156.11,156.12,156.15,23.490000000000002,23.18,23.02,22.82,22.63,22.44,22.25,22.06,21.68,N/A,N/A +2012,4,28,18,30,101450,100280,99150,84.19,0,8.36,9.21,9.42,9.540000000000001,9.63,9.69,9.73,9.76,9.8,149.24,149.61,149.81,150,150.17000000000002,150.33,150.48,150.63,150.92000000000002,23.44,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.01,21.63,N/A,N/A +2012,4,28,19,30,101450,100280,99150,81.41,0,7.98,8.82,9.03,9.16,9.26,9.33,9.38,9.43,9.49,148.47,148.67000000000002,148.79,148.9,149.01,149.1,149.19,149.28,149.45000000000002,23.56,23.27,23.1,22.91,22.72,22.54,22.34,22.150000000000002,21.77,N/A,N/A +2012,4,28,20,30,101430,100260,99130,82.49,0,7.76,8.6,8.82,8.97,9.07,9.15,9.22,9.27,9.36,147.44,147.83,148.02,148.19,148.35,148.48,148.62,148.74,148.98,23.62,23.330000000000002,23.17,22.98,22.79,22.61,22.41,22.23,21.85,N/A,N/A +2012,4,28,21,30,101400,100230,99100,82,0,7.71,8.55,8.77,8.92,9.03,9.120000000000001,9.19,9.25,9.34,149.14000000000001,149.44,149.62,149.8,149.96,150.1,150.24,150.37,150.64000000000001,23.7,23.42,23.26,23.080000000000002,22.89,22.71,22.51,22.34,21.96,N/A,N/A +2012,4,28,22,30,101360,100200,99070,85.89,0,8.16,8.98,9.18,9.31,9.39,9.450000000000001,9.49,9.52,9.56,144.4,144.78,144.98,145.18,145.36,145.53,145.71,145.87,146.22,23.55,23.27,23.11,22.92,22.73,22.55,22.36,22.18,21.79,N/A,N/A +2012,4,28,23,30,101340,100180,99050,88.16,0,7.57,8.31,8.5,8.61,8.69,8.74,8.78,8.82,8.870000000000001,140.33,140.59,140.73,140.9,141.07,141.24,141.44,141.63,142.12,23.5,23.21,23.05,22.86,22.67,22.490000000000002,22.3,22.12,21.740000000000002,N/A,N/A +2012,4,29,0,30,101340,100180,99050,88.87,0,6.91,7.62,7.83,7.99,8.13,8.27,8.44,8.620000000000001,9.16,145.77,146.1,146.29,146.53,146.8,147.08,147.45000000000002,147.81,148.8,23.53,23.27,23.12,22.94,22.77,22.6,22.43,22.26,21.95,N/A,N/A +2012,4,29,1,30,101340,100170,99040,91.09,0,7.7700000000000005,8.61,8.82,8.97,9.07,9.16,9.23,9.28,9.39,146.41,146.88,147.11,147.35,147.6,147.85,148.12,148.37,148.99,23.54,23.25,23.09,22.900000000000002,22.71,22.53,22.34,22.16,21.78,N/A,N/A +2012,4,29,2,30,101350,100190,99060,91.37,0,7.07,7.8,7.98,8.09,8.17,8.23,8.28,8.32,8.39,143.36,143.46,143.55,143.64000000000001,143.72,143.8,143.89000000000001,143.97,144.17000000000002,23.44,23.14,22.97,22.78,22.59,22.41,22.21,22.03,21.650000000000002,N/A,N/A +2012,4,29,3,30,101370,100200,99080,93.08,0,8.06,8.71,8.84,8.88,8.89,8.89,8.92,8.950000000000001,9.13,137.76,138.22,138.56,139.01,139.56,140.18,141.11,142.08,144.54,23.38,23.09,22.93,22.75,22.580000000000002,22.42,22.26,22.12,21.85,N/A,N/A +2012,4,29,4,30,101350,100190,99060,93.04,0,7.5600000000000005,8.34,8.55,8.700000000000001,8.82,8.93,9.05,9.16,9.52,143.54,143.86,144.09,144.35,144.64000000000001,144.94,145.33,145.71,146.86,23.52,23.23,23.07,22.88,22.7,22.52,22.330000000000002,22.16,21.81,N/A,N/A +2012,4,29,5,30,101350,100180,99050,91.85000000000001,0,7.95,8.89,9.19,9.46,9.74,10.02,10.35,10.69,11,148.64000000000001,148.84,149.02,149.24,149.49,149.77,150.15,150.53,150.9,23.580000000000002,23.32,23.16,22.990000000000002,22.82,22.66,22.48,22.330000000000002,21.97,N/A,N/A +2012,4,29,6,30,101360,100200,99070,92.17,0,8.81,9.77,10.03,10.200000000000001,10.34,10.46,10.57,10.67,10.93,145.99,146.06,146.12,146.19,146.26,146.33,146.4,146.47,146.66,23.61,23.32,23.16,22.97,22.79,22.6,22.41,22.240000000000002,21.87,N/A,N/A +2012,4,29,7,30,101400,100230,99110,92.54,0,8.6,9.56,9.82,9.99,10.13,10.23,10.32,10.39,10.52,145.78,145.91,146.01,146.12,146.23,146.34,146.46,146.57,146.81,23.56,23.27,23.1,22.91,22.73,22.54,22.35,22.17,21.79,N/A,N/A +2012,4,29,8,30,101390,100230,99100,92.93,0,8.32,9.200000000000001,9.41,9.56,9.67,9.75,9.82,9.89,10.040000000000001,149.72,149.67000000000002,149.70000000000002,149.73,149.76,149.79,149.82,149.85,149.9,23.490000000000002,23.19,23.02,22.830000000000002,22.64,22.46,22.27,22.09,21.72,N/A,N/A +2012,4,29,9,30,101420,100260,99130,87.4,0,8.96,9.93,10.18,10.33,10.44,10.51,10.56,10.61,10.66,151.25,150.85,150.77,150.72,150.68,150.66,150.66,150.67000000000002,150.73,23.71,23.42,23.25,23.06,22.87,22.68,22.48,22.3,21.91,N/A,N/A +2012,4,29,10,30,101430,100260,99130,88,0,8.45,9.44,9.700000000000001,9.86,9.98,10.06,10.11,10.15,10.16,145.95000000000002,146,146.07,146.14000000000001,146.19,146.23,146.25,146.27,146.26,23.6,23.31,23.150000000000002,22.95,22.77,22.580000000000002,22.39,22.21,21.82,N/A,N/A +2012,4,29,11,30,101430,100260,99130,86.26,0,8.34,9.290000000000001,9.56,9.76,9.94,10.11,10.290000000000001,10.46,10.92,144.79,145.13,145.37,145.64000000000001,145.92000000000002,146.21,146.52,146.83,147.58,23.64,23.38,23.22,23.04,22.87,22.69,22.51,22.35,22,N/A,N/A +2012,4,29,12,30,101460,100290,99160,87.18,0,8.38,9.13,9.31,9.44,9.56,9.67,9.84,10.03,10.76,143.61,143.54,143.58,143.68,143.83,144.02,144.35,144.72,146.04,23.650000000000002,23.38,23.240000000000002,23.06,22.900000000000002,22.740000000000002,22.59,22.45,22.21,N/A,N/A +2012,4,29,13,30,101490,100320,99190,88.77,0,9.09,10.08,10.33,10.5,10.64,10.74,10.83,10.92,11.11,142.4,142.78,143.02,143.29,143.55,143.8,144.08,144.36,145.02,23.580000000000002,23.29,23.13,22.94,22.75,22.57,22.37,22.2,21.830000000000002,N/A,N/A +2012,4,29,14,30,101570,100400,99270,90.77,0,7.86,8.63,8.82,8.94,9.02,9.09,9.15,9.200000000000001,9.33,136.16,136.43,136.62,136.84,137.06,137.28,137.53,137.77,138.39000000000001,23.57,23.28,23.12,22.93,22.740000000000002,22.56,22.37,22.19,21.830000000000002,N/A,N/A +2012,4,29,15,30,101620,100450,99320,89.59,0,8.23,9.1,9.32,9.47,9.57,9.65,9.71,9.77,9.88,136.08,136.24,136.34,136.44,136.53,136.62,136.72,136.82,137.05,23.66,23.37,23.2,23.01,22.830000000000002,22.64,22.45,22.27,21.900000000000002,N/A,N/A +2012,4,29,16,30,101640,100470,99340,90.14,0,7.67,8.44,8.63,8.75,8.83,8.89,8.94,8.98,9.06,140.49,140.62,140.68,140.76,140.84,140.94,141.04,141.15,141.43,23.68,23.39,23.22,23.03,22.84,22.66,22.46,22.28,21.91,N/A,N/A +2012,4,29,17,30,101660,100490,99360,91.37,0,7.44,8.18,8.36,8.47,8.540000000000001,8.59,8.620000000000001,8.65,8.69,131.69,131.86,131.99,132.12,132.25,132.38,132.52,132.65,132.97,23.7,23.39,23.22,23.02,22.84,22.650000000000002,22.46,22.27,21.900000000000002,N/A,N/A +2012,4,29,18,30,101660,100490,99360,91.62,0,7.1000000000000005,7.75,7.91,8,8.07,8.11,8.15,8.17,8.23,128.75,129.04,129.25,129.46,129.66,129.86,130.09,130.31,130.86,23.71,23.400000000000002,23.240000000000002,23.04,22.86,22.67,22.48,22.3,21.93,N/A,N/A +2012,4,29,19,30,101650,100480,99350,92.10000000000001,0,7.25,7.930000000000001,8.08,8.17,8.22,8.26,8.290000000000001,8.32,8.370000000000001,125.47,125.86,126.10000000000001,126.39,126.68,126.98,127.35000000000001,127.71000000000001,128.71,23.740000000000002,23.44,23.27,23.080000000000002,22.900000000000002,22.71,22.52,22.34,21.97,N/A,N/A +2012,4,29,20,30,101620,100460,99330,93.17,0,7.45,8.16,8.33,8.43,8.49,8.53,8.56,8.58,8.620000000000001,122.45,122.63,122.78,122.95,123.12,123.29,123.5,123.7,124.23,23.73,23.43,23.26,23.07,22.88,22.7,22.51,22.330000000000002,21.95,N/A,N/A +2012,4,29,21,30,101600,100440,99310,94.17,0,7.44,8.17,8.35,8.45,8.53,8.59,8.64,8.69,8.81,118.32000000000001,118.62,118.83,119.06,119.31,119.56,119.88,120.2,121.18,23.71,23.42,23.26,23.06,22.88,22.69,22.51,22.330000000000002,21.96,N/A,N/A +2012,4,29,22,30,101580,100420,99290,95.59,0,7.38,8.1,8.28,8.4,8.5,8.59,8.72,8.85,9.540000000000001,116.35000000000001,116.72,116.97,117.31,117.71000000000001,118.16,118.85000000000001,119.57000000000001,122.95,23.68,23.39,23.23,23.04,22.86,22.68,22.490000000000002,22.32,22,N/A,N/A +2012,4,29,23,30,101560,100390,99270,96.11,0,6.86,7.67,8,8.41,8.64,8.72,8.91,9.120000000000001,9.5,118.99000000000001,119.82000000000001,120.55,121.77,122.52,122.93,124.08,125.43,127.99000000000001,23.7,23.43,23.28,23.11,22.94,22.76,22.59,22.44,22.11,N/A,N/A +2012,4,30,0,30,101550,100380,99260,95.95,0,7.11,8.03,8.32,8.57,8.77,8.94,9.1,9.24,9.48,121.83,122.03,122.23,122.49000000000001,122.79,123.11,123.56,124.01,125.45,23.81,23.56,23.42,23.25,23.080000000000002,22.92,22.76,22.61,22.3,N/A,N/A +2012,4,30,1,30,101550,100380,99250,94.33,0,8.13,9.15,9.48,9.77,10,10.21,10.41,10.59,10.950000000000001,132.32,132.74,133.05,133.43,133.78,134.11,134.47,134.8,135.58,23.85,23.61,23.46,23.29,23.12,22.95,22.78,22.62,22.29,N/A,N/A +2012,4,30,2,30,101570,100400,99270,95.32000000000001,0,7.38,8.33,8.66,8.94,9.19,9.42,9.64,9.86,10.3,130.77,131.27,131.59,131.94,132.29,132.65,133.07,133.48,134.47,23.79,23.53,23.38,23.2,23.03,22.85,22.68,22.51,22.17,N/A,N/A +2012,4,30,3,30,101590,100420,99290,94.16,0,7.67,8.99,9.52,9.98,10.36,10.69,10.98,11.24,11.66,137.99,139.56,140.39000000000001,141.11,141.72,142.27,142.73,143.13,143.65,23.830000000000002,23.57,23.44,23.29,23.13,22.98,22.81,22.650000000000002,22.31,N/A,N/A +2012,4,30,4,30,101570,100410,99280,94.42,0,7.3,8.52,8.950000000000001,9.15,9.38,9.66,9.9,10.120000000000001,10.52,144.1,144.86,145.41,145.99,146.37,146.62,146.79,146.93,146.92000000000002,23.82,23.55,23.400000000000002,23.2,23.03,22.86,22.69,22.53,22.22,N/A,N/A +2012,4,30,5,30,101580,100410,99280,94.29,0,6.96,7.98,8.36,8.700000000000001,8.99,9.25,9.49,9.71,10.11,142.49,142.99,143.32,143.67000000000002,143.97,144.24,144.5,144.74,145.13,23.79,23.54,23.400000000000002,23.23,23.07,22.91,22.73,22.57,22.22,N/A,N/A +2012,4,30,6,30,101590,100420,99300,93.41,0,7.61,8.56,8.88,9.15,9.38,9.57,9.76,9.93,10.28,144.81,145.07,145.27,145.47,145.66,145.84,146.04,146.23,146.70000000000002,23.81,23.56,23.400000000000002,23.22,23.04,22.86,22.68,22.51,22.150000000000002,N/A,N/A +2012,4,30,7,30,101610,100440,99310,91.43,0,7.65,8.66,9.01,9.28,9.49,9.66,9.8,9.92,10.14,159.42000000000002,159.47,159.47,159.47,159.47,159.46,159.44,159.43,159.34,23.86,23.62,23.48,23.31,23.150000000000002,22.98,22.82,22.66,22.34,N/A,N/A +2012,4,30,8,30,101590,100420,99290,92.79,0,7.1000000000000005,8.07,8.43,8.75,8.98,9.16,9.38,9.59,9.88,161.89000000000001,162.21,162.45000000000002,162.81,162.97,162.98,162.95000000000002,162.89000000000001,162.05,23.740000000000002,23.490000000000002,23.34,23.16,22.990000000000002,22.830000000000002,22.67,22.53,22.22,N/A,N/A +2012,4,30,9,30,101590,100420,99290,94.62,0,6.46,7.07,7.25,7.43,7.58,7.73,7.86,7.99,8.26,152.51,152.9,153.21,153.75,154.29,154.86,155.79,156.78,159.88,23.59,23.31,23.16,22.98,22.8,22.63,22.47,22.31,22.06,N/A,N/A +2012,4,30,10,30,101600,100430,99300,93.58,0,6.5,7.22,7.46,7.68,7.91,8.13,8.33,8.51,8.8,145.88,146.23,146.51,146.9,147.33,147.82,148.28,148.70000000000002,149.95000000000002,23.7,23.43,23.27,23.09,22.92,22.75,22.57,22.400000000000002,22.07,N/A,N/A +2012,4,30,11,30,101640,100470,99340,94.11,0,6.2700000000000005,7.03,7.28,7.5,7.69,7.87,8.07,8.25,8.700000000000001,145.20000000000002,145.25,145.4,145.64000000000001,145.96,146.33,146.82,147.31,148.61,23.64,23.37,23.21,23.02,22.84,22.66,22.47,22.3,21.93,N/A,N/A +2012,4,30,12,30,101650,100490,99360,90.08,0,7.5,8.66,9.05,9.22,9.450000000000001,9.700000000000001,9.76,9.76,9.69,150.33,152.3,153.41,154.34,155.84,157.76,159.04,160.03,160.1,23.8,23.61,23.5,23.38,23.31,23.27,23.150000000000002,23.02,22.67,N/A,N/A +2012,4,30,13,30,101710,100540,99410,93.60000000000001,0,6.59,7.15,7.29,7.38,7.46,7.54,7.67,7.79,8.13,144.1,144.23,144.39000000000001,144.61,144.88,145.18,145.70000000000002,146.24,148.63,23.38,23.080000000000002,22.92,22.73,22.55,22.38,22.21,22.05,21.76,N/A,N/A +2012,4,30,14,30,101760,100590,99460,93.53,0,6.03,6.5600000000000005,6.69,6.76,6.82,6.87,6.93,6.99,7.34,149.11,149.47,149.69,149.89000000000001,150.08,150.26,150.53,150.8,152.01,23.51,23.21,23.05,22.86,22.68,22.5,22.31,22.14,21.81,N/A,N/A +2012,4,30,15,30,101800,100630,99500,93.76,0,5.28,5.71,5.83,5.9,5.97,6.04,6.16,6.3,6.890000000000001,150.74,150.93,150.91,150.87,150.81,150.74,150.67000000000002,150.61,150.59,23.57,23.27,23.1,22.91,22.73,22.55,22.37,22.21,21.95,N/A,N/A +2012,4,30,16,30,101860,100690,99550,92.35000000000001,0,5.62,6.04,6.12,6.15,6.16,6.17,6.18,6.19,6.3100000000000005,131.58,132.16,132.59,133.1,133.66,134.28,135.11,135.94,139.14000000000001,23.67,23.36,23.19,23,22.82,22.64,22.45,22.28,21.94,N/A,N/A +2012,4,30,17,30,101840,100670,99540,91.4,0,5.26,5.66,5.74,5.78,5.8,5.8100000000000005,5.82,5.82,5.84,138.17000000000002,138.70000000000002,139.08,139.51,139.96,140.43,141.03,141.62,143.47,23.79,23.48,23.31,23.12,22.93,22.75,22.56,22.38,22.03,N/A,N/A +2012,4,30,18,30,101820,100650,99520,91.02,0,4.47,4.7700000000000005,4.83,4.86,4.87,4.88,4.89,4.89,4.91,123.29,123.81,124.17,124.57000000000001,124.97,125.37,125.86,126.32000000000001,127.58,23.77,23.45,23.27,23.080000000000002,22.89,22.71,22.52,22.34,21.97,N/A,N/A +2012,4,30,19,30,101780,100610,99480,91.62,0,6.390000000000001,6.91,7.0200000000000005,7.07,7.09,7.1000000000000005,7.1000000000000005,7.09,7.07,123.62,123.95,124.15,124.38000000000001,124.61,124.83,125.09,125.35000000000001,126.04,23.740000000000002,23.41,23.240000000000002,23.04,22.85,22.66,22.47,22.29,21.91,N/A,N/A +2012,4,30,20,30,101710,100540,99410,88.68,0,7.24,7.890000000000001,8.040000000000001,8.11,8.15,8.19,8.21,8.23,8.290000000000001,130.14000000000001,130.37,130.49,130.65,130.81,130.99,131.21,131.43,132.09,23.79,23.5,23.34,23.150000000000002,22.97,22.79,22.6,22.43,22.080000000000002,N/A,N/A +2012,4,30,21,30,101660,100490,99350,90.21000000000001,0,7.62,8.33,8.47,8.55,8.58,8.59,8.58,8.57,8.51,128.45,128.78,128.99,129.2,129.41,129.6,129.82,130.03,130.52,23.62,23.32,23.16,22.97,22.78,22.59,22.400000000000002,22.22,21.84,N/A,N/A +2012,4,30,22,30,101620,100450,99320,91.02,0,6.55,7.16,7.3100000000000005,7.390000000000001,7.45,7.48,7.5,7.51,7.53,131.58,131.7,131.78,131.87,131.98,132.1,132.25,132.39000000000001,132.76,23.54,23.240000000000002,23.080000000000002,22.89,22.7,22.51,22.32,22.14,21.76,N/A,N/A +2012,4,30,23,30,101580,100420,99280,90.87,0,5.79,6.32,6.44,6.51,6.5600000000000005,6.59,6.63,6.65,6.74,133.34,133.54,133.65,133.8,133.95,134.13,134.34,134.57,135.28,23.5,23.21,23.05,22.86,22.67,22.490000000000002,22.3,22.12,21.75,N/A,N/A +2012,5,1,0,30,101530,100370,99240,91.94,0,5.66,6.140000000000001,6.25,6.3100000000000005,6.3500000000000005,6.38,6.41,6.44,6.62,140.88,140.91,140.99,141.11,141.23,141.38,141.58,141.79,142.64000000000001,23.45,23.150000000000002,22.990000000000002,22.8,22.61,22.43,22.240000000000002,22.06,21.72,N/A,N/A +2012,5,1,1,30,101500,100330,99200,92.59,0,5.69,6.19,6.3100000000000005,6.41,6.53,6.66,6.94,7.26,7.99,136.8,137.01,137.1,137.22,137.35,137.52,137.72,137.92000000000002,138.82,23.46,23.17,23.01,22.830000000000002,22.66,22.5,22.35,22.22,21.990000000000002,N/A,N/A +2012,5,1,2,30,101530,100360,99230,94.15,0,7.0200000000000005,7.68,7.84,7.95,8.03,8.1,8.17,8.24,8.45,140.79,141.04,141.12,141.23,141.34,141.48,141.66,141.86,142.52,23.41,23.11,22.95,22.76,22.57,22.39,22.2,22.03,21.67,N/A,N/A +2012,5,1,3,30,101540,100380,99240,93.01,0,6.72,7.32,7.47,7.5600000000000005,7.63,7.69,7.75,7.82,8.09,150.86,151.04,151.11,151.18,151.24,151.3,151.39000000000001,151.47,151.79,23.37,23.07,22.900000000000002,22.71,22.52,22.34,22.150000000000002,21.97,21.61,N/A,N/A +2012,5,1,4,30,101510,100350,99210,94.45,0,7.65,8.370000000000001,8.540000000000001,8.64,8.71,8.77,8.85,8.92,9.290000000000001,147.82,147.83,147.87,147.91,147.94,147.98,148.05,148.11,148.4,23.34,23.03,22.86,22.67,22.48,22.29,22.1,21.92,21.61,N/A,N/A +2012,5,1,5,30,101490,100330,99200,93.57000000000001,0,8.14,8.9,9.06,9.16,9.22,9.27,9.36,9.43,9.8,147.64000000000001,147.88,148.01,148.17000000000002,148.34,148.52,148.75,148.96,149.64000000000001,23.36,23.06,22.89,22.7,22.53,22.35,22.17,22,21.7,N/A,N/A +2012,5,1,6,30,101540,100380,99240,93.72,0,7.33,7.99,8.15,8.23,8.3,8.35,8.4,8.45,8.63,151.54,151.57,151.64000000000001,151.72,151.81,151.9,152.02,152.13,152.46,23.35,23.04,22.87,22.67,22.490000000000002,22.31,22.12,21.94,21.580000000000002,N/A,N/A +2012,5,1,7,30,101590,100420,99290,95.14,0,7.18,7.7700000000000005,7.930000000000001,8,8.05,8.09,8.120000000000001,8.15,8.22,156.73,157.11,157.28,157.48,157.68,157.9,158.15,158.41,159.11,23.29,22.96,22.79,22.59,22.400000000000002,22.22,22.02,21.84,21.52,N/A,N/A +2012,5,1,8,30,101570,100400,99270,94.31,0,5.74,6.18,6.28,6.34,6.390000000000001,6.44,6.55,6.68,7.3,167.23,166.56,166.18,165.73,165.20000000000002,164.61,163.63,162.61,161.02,23.09,22.77,22.6,22.41,22.240000000000002,22.06,21.89,21.740000000000002,21.51,N/A,N/A +2012,5,1,9,30,101560,100390,99260,93.76,0,5.16,5.53,5.6000000000000005,5.64,5.67,5.68,5.71,5.74,6.04,160.91,161.17000000000002,161.3,161.43,161.55,161.65,161.74,161.82,161.70000000000002,23.27,22.96,22.79,22.6,22.41,22.23,22.04,21.87,21.56,N/A,N/A +2012,5,1,10,30,101560,100390,99250,94.42,0,4.6000000000000005,4.94,5.0200000000000005,5.08,5.13,5.18,5.26,5.33,6.2,155.96,155.68,155.5,155.32,155.13,154.94,154.75,154.56,154.6,22.990000000000002,22.650000000000002,22.47,22.28,22.09,21.89,21.7,21.52,21.31,N/A,N/A +2012,5,1,11,30,101570,100400,99270,94.66,0,4.96,5.3100000000000005,5.39,5.43,5.46,5.47,5.5,5.5200000000000005,5.64,160.74,159.72,159.09,158.4,157.69,156.97,156.14000000000001,155.33,153.17000000000002,22.95,22.6,22.42,22.21,22.02,21.82,21.62,21.43,21.13,N/A,N/A +2012,5,1,12,30,101550,100380,99250,94.37,0,4.9,5.17,5.21,5.21,5.22,5.24,5.29,5.34,5.46,132.41,132.13,132.12,132.22,132.57,133.06,134.1,135.2,137.12,22.97,22.650000000000002,22.48,22.31,22.150000000000002,22,21.89,21.79,21.61,N/A,N/A +2012,5,1,13,30,101580,100410,99270,91.61,0,4.89,5.2,5.26,5.3,5.37,5.47,5.71,5.97,6.140000000000001,122.67,123.74000000000001,124.60000000000001,125.75,127.46000000000001,129.57,133.1,136.84,142.1,22.97,22.650000000000002,22.48,22.3,22.13,21.990000000000002,21.87,21.79,21.63,N/A,N/A +2012,5,1,14,30,101580,100410,99270,91.67,0,6.13,6.6000000000000005,6.67,6.69,6.7,6.71,6.73,6.75,6.890000000000001,121.41,122.05,122.49000000000001,123.03,123.66,124.32000000000001,125.44,126.61,130.67000000000002,23.2,22.87,22.7,22.5,22.32,22.14,21.96,21.8,21.52,N/A,N/A +2012,5,1,15,30,101560,100390,99260,91.8,0,6.82,7.41,7.55,7.62,7.66,7.68,7.69,7.7,7.7,127.68,127.8,127.82000000000001,127.87,127.92,127.98,128.06,128.14000000000001,128.44,23.400000000000002,23.080000000000002,22.91,22.72,22.53,22.34,22.16,21.98,21.62,N/A,N/A +2012,5,1,16,30,101560,100390,99260,90.87,0,6.75,7.3100000000000005,7.44,7.5,7.54,7.5600000000000005,7.5600000000000005,7.57,7.55,124.19,124.38000000000001,124.5,124.60000000000001,124.71000000000001,124.82000000000001,124.94,125.07000000000001,125.39,23.44,23.11,22.93,22.740000000000002,22.55,22.36,22.17,21.990000000000002,21.61,N/A,N/A +2012,5,1,17,30,101570,100400,99270,90.28,0,5.7,6.18,6.28,6.34,6.38,6.4,6.41,6.42,6.42,126.21000000000001,126.17,126.22,126.26,126.29,126.33,126.38000000000001,126.42,126.54,23.52,23.2,23.02,22.830000000000002,22.64,22.45,22.26,22.07,21.69,N/A,N/A +2012,5,1,18,30,101550,100380,99250,89.19,0,5.49,5.9,5.99,6.03,6.0600000000000005,6.07,6.08,6.09,6.09,124.63000000000001,124.8,124.9,125.02,125.14,125.25,125.39,125.52,125.87,23.580000000000002,23.25,23.080000000000002,22.89,22.7,22.51,22.32,22.13,21.75,N/A,N/A +2012,5,1,19,30,101520,100350,99220,87.23,0,5.95,6.41,6.51,6.5600000000000005,6.58,6.59,6.59,6.59,6.57,122.62,122.78,122.88,122.98,123.08,123.18,123.29,123.39,123.64,23.67,23.34,23.17,22.97,22.78,22.6,22.400000000000002,22.22,21.84,N/A,N/A +2012,5,1,20,30,101480,100320,99190,86.19,0,6.37,6.890000000000001,7,7.05,7.08,7.1000000000000005,7.1000000000000005,7.1000000000000005,7.09,118.44,118.54,118.63,118.71000000000001,118.78,118.86,118.93,119.01,119.16,23.650000000000002,23.330000000000002,23.16,22.97,22.78,22.59,22.400000000000002,22.21,21.830000000000002,N/A,N/A +2012,5,1,21,30,101420,100250,99120,85.9,0,6.42,6.95,7.0600000000000005,7.12,7.16,7.17,7.19,7.2,7.2,124.26,124.23,124.26,124.31,124.37,124.43,124.51,124.58,124.75,23.56,23.25,23.09,22.89,22.7,22.52,22.32,22.14,21.76,N/A,N/A +2012,5,1,22,30,101390,100220,99090,86.32000000000001,0,6.12,6.66,6.78,6.84,6.88,6.9,6.91,6.92,6.91,118.24000000000001,118.43,118.54,118.64,118.73,118.8,118.87,118.94,119.08,23.53,23.22,23.05,22.85,22.66,22.47,22.27,22.09,21.71,N/A,N/A +2012,5,1,23,30,101350,100190,99060,87.53,0,6.21,6.7,6.8,6.84,6.86,6.87,6.87,6.87,6.84,120.92,120.97,120.99000000000001,121.02,121.07000000000001,121.11,121.17,121.23,121.41,23.41,23.09,22.93,22.73,22.54,22.36,22.16,21.98,21.61,N/A,N/A +2012,5,2,0,30,101360,100190,99060,87.81,0,5.4,5.94,6.09,6.18,6.25,6.3100000000000005,6.3500000000000005,6.38,6.44,120.17,120.39,120.46000000000001,120.55,120.62,120.69,120.75,120.82000000000001,120.95,23.41,23.1,22.93,22.73,22.54,22.35,22.150000000000002,21.97,21.580000000000002,N/A,N/A +2012,5,2,1,30,101310,100140,99010,88.42,0,6.55,7.15,7.3,7.390000000000001,7.46,7.51,7.55,7.59,7.67,124.48,124.92,125.19,125.47,125.72,125.97,126.23,126.47,127.01,23.38,23.07,22.91,22.71,22.53,22.34,22.150000000000002,21.97,21.6,N/A,N/A +2012,5,2,2,30,101290,100120,99000,90.71000000000001,0,7.04,7.67,7.83,7.91,7.96,7.99,8.01,8.02,8.040000000000001,130.45,130.79,130.88,130.94,130.99,131.04,131.07,131.1,131.15,23.31,22.990000000000002,22.81,22.61,22.42,22.23,22.03,21.85,21.46,N/A,N/A +2012,5,2,3,30,101310,100140,99010,92.45,0,6.9,7.53,7.67,7.75,7.8,7.82,7.84,7.8500000000000005,7.83,129.08,129.02,128.99,128.95,128.92000000000002,128.88,128.86,128.83,128.79,23.31,22.98,22.81,22.62,22.42,22.23,22.03,21.84,21.45,N/A,N/A +2012,5,2,4,30,101290,100120,99000,93.3,0,6.16,6.6000000000000005,6.68,6.7,6.71,6.73,6.79,6.87,7.28,135.41,135.34,135.27,135.21,135.16,135.11,135.21,135.36,137.91,23.29,22.98,22.81,22.62,22.44,22.26,22.11,21.96,21.85,N/A,N/A +2012,5,2,5,30,101280,100110,98980,93.88,0,6.3,6.8500000000000005,6.99,7.08,7.140000000000001,7.19,7.24,7.29,7.43,145.51,144.79,144.28,143.73,143.20000000000002,142.68,142.09,141.52,140.12,23.150000000000002,22.82,22.650000000000002,22.44,22.25,22.06,21.86,21.67,21.27,N/A,N/A +2012,5,2,6,30,101270,100100,98970,94.62,0,5.88,6.36,6.48,6.55,6.6000000000000005,6.640000000000001,6.68,6.72,6.96,155.88,155.71,155.51,155.24,154.94,154.63,154.17000000000002,153.71,151.83,23.150000000000002,22.830000000000002,22.66,22.46,22.27,22.09,21.900000000000002,21.72,21.42,N/A,N/A +2012,5,2,7,30,101280,100110,98990,94.83,0,5.01,5.47,5.58,5.65,5.69,5.72,5.78,5.86,6.16,146.52,146.9,147.11,147.34,147.55,147.72,148.13,148.59,150.78,23.48,23.18,23.02,22.82,22.63,22.43,22.23,22.05,21.79,N/A,N/A +2012,5,2,8,30,101240,100080,98950,92.25,0,4.68,5.12,5.3,5.61,5.88,6.140000000000001,6.38,6.6000000000000005,6.99,136.2,136.69,137.48,138.95000000000002,140.39000000000001,141.84,143.1,144.23,145.42000000000002,23.55,23.29,23.16,23.02,22.91,22.84,22.78,22.72,22.56,N/A,N/A +2012,5,2,9,30,101250,100080,98960,96.76,0,5.03,5.37,5.43,5.45,5.48,5.51,5.64,5.8,6.55,130.53,131.07,131.44,131.97,132.72,133.66,136.03,138.72,148.44,23.25,22.93,22.75,22.55,22.38,22.23,22.04,21.86,21.97,N/A,N/A +2012,5,2,10,30,101270,100100,98980,96.89,0,4.65,4.92,4.96,4.97,5.07,5.21,5.4,5.58,5.76,138.82,139.12,139.43,139.86,141.15,143.06,145.84,148.71,151.54,23.23,22.92,22.76,22.56,22.41,22.29,22.14,22.01,21.77,N/A,N/A +2012,5,2,11,30,101270,100100,98970,97.15,0,5.51,5.82,5.87,5.89,5.8,5.63,5.47,5.32,5.0200000000000005,138.82,139.01,139.28,139.83,140.13,140.28,140.72,141.19,143.32,22.57,22.52,22.59,22.75,22.69,22.5,22.32,22.17,21.91,N/A,N/A +2012,5,2,12,30,101290,100130,99000,95.04,0,4.34,4.58,4.61,4.61,4.61,4.63,4.68,4.72,4.82,134.72,135.01,135.27,135.63,136.07,136.58,137.44,138.36,141.73,23.22,22.92,22.77,22.59,22.43,22.28,22.13,22,21.75,N/A,N/A +2012,5,2,13,30,101310,100140,99020,91.95,0,4.51,4.8100000000000005,4.8500000000000005,4.86,4.8500000000000005,4.84,4.82,4.8100000000000005,4.69,125.94,126.19,126.37,126.62,126.96000000000001,127.37,128.41,129.53,136.42000000000002,23.34,23.03,22.87,22.68,22.490000000000002,22.31,22.13,21.97,21.72,N/A,N/A +2012,5,2,14,30,101350,100190,99060,93.56,0,4.0600000000000005,4.3,4.33,4.34,4.34,4.34,4.38,4.42,4.7,132.17000000000002,132.3,132.43,132.61,132.88,133.23,134.26,135.43,143.14000000000001,23.32,23.01,22.84,22.650000000000002,22.47,22.29,22.12,21.96,21.8,N/A,N/A +2012,5,2,15,30,101380,100210,99080,92.95,0,3.5500000000000003,3.74,3.77,3.77,3.7600000000000002,3.74,3.73,3.71,3.65,129.65,129.86,130,130.17000000000002,130.37,130.61,131.04,131.49,135.13,23.45,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.03,21.69,N/A,N/A +2012,5,2,16,30,101400,100230,99100,93.58,0,3.75,3.96,3.99,4,4,3.99,3.98,3.96,3.93,143.14000000000001,143.39000000000001,143.49,143.63,143.79,143.96,144.23,144.5,145.75,23.53,23.2,23.02,22.830000000000002,22.64,22.45,22.26,22.080000000000002,21.72,N/A,N/A +2012,5,2,17,30,101380,100210,99080,93.62,0,3.56,3.75,3.7800000000000002,3.79,3.7800000000000002,3.7800000000000002,3.7600000000000002,3.75,3.71,146.01,146.4,146.64000000000001,146.9,147.16,147.42000000000002,147.75,148.08,149.12,23.66,23.31,23.14,22.94,22.75,22.57,22.37,22.19,21.85,N/A,N/A +2012,5,2,18,30,101370,100210,99080,92.55,0,4.0600000000000005,4.2700000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.2700000000000005,4.25,4.17,155.57,155.9,156.03,156.20000000000002,156.39000000000001,156.59,156.86,157.14000000000001,158.15,23.81,23.47,23.29,23.1,22.91,22.73,22.53,22.36,21.990000000000002,N/A,N/A +2012,5,2,19,30,101350,100190,99060,92.65,0,3.7,3.85,3.86,3.83,3.8000000000000003,3.7600000000000002,3.71,3.66,3.43,162.31,162.75,162.99,163.28,163.59,163.92000000000002,164.44,164.97,167.63,23.89,23.55,23.38,23.18,23,22.81,22.63,22.46,22.19,N/A,N/A +2012,5,2,20,30,101300,100140,99010,91.10000000000001,0,4.92,5.22,5.26,5.2700000000000005,5.26,5.25,5.22,5.2,5.12,169.83,170.03,170.17000000000002,170.32,170.46,170.62,170.83,171.04,171.77,24.05,23.72,23.54,23.34,23.16,22.97,22.78,22.6,22.240000000000002,N/A,N/A +2012,5,2,21,30,101270,100110,98980,91.44,0,4.97,5.3,5.3500000000000005,5.36,5.36,5.34,5.33,5.3100000000000005,5.29,175.79,175.88,175.96,176.05,176.15,176.28,176.46,176.67000000000002,177.97,24.09,23.78,23.61,23.42,23.23,23.05,22.86,22.69,22.400000000000002,N/A,N/A +2012,5,2,22,30,101240,100080,98950,91.52,0,5.3500000000000005,5.7700000000000005,5.84,5.86,5.86,5.84,5.8100000000000005,5.79,5.71,177.81,177.84,177.79,177.75,177.70000000000002,177.67000000000002,177.62,177.57,177.39000000000001,24.1,23.82,23.66,23.46,23.27,23.09,22.900000000000002,22.71,22.35,N/A,N/A +2012,5,2,23,30,101240,100080,98950,92.45,0,4.74,5.15,5.26,5.34,5.39,5.4,5.41,5.42,5.32,182.29,182.17000000000002,182.08,181.88,181.65,181.36,180.34,179.12,176.67000000000002,23.97,23.71,23.56,23.39,23.21,23.03,22.89,22.77,22.7,N/A,N/A +2012,5,3,0,30,101230,100070,98950,92.93,0,5.4,6,6.18,6.32,6.44,6.54,6.63,6.7,6.83,176.32,176.33,176.24,176.15,176.06,175.97,175.89000000000001,175.82,175.56,23.830000000000002,23.580000000000002,23.43,23.25,23.080000000000002,22.91,22.73,22.56,22.26,N/A,N/A +2012,5,3,1,30,101210,100050,98930,94.74,0,5.24,5.88,6.1000000000000005,6.26,6.38,6.48,6.55,6.61,6.65,186.22,186.25,186.08,185.70000000000002,185.19,184.56,183.78,182.99,180.01,23.68,23.44,23.29,23.11,22.93,22.75,22.56,22.39,22.16,N/A,N/A +2012,5,3,2,30,101260,100100,98970,94.03,0,5.29,6.1000000000000005,6.43,6.68,6.890000000000001,7.07,7.24,7.390000000000001,7.43,181.63,181.55,181.54,181.51,181.49,181.51,181.6,181.73,182.18,23.64,23.45,23.330000000000002,23.17,23.01,22.86,22.71,22.59,22.59,N/A,N/A +2012,5,3,3,30,101320,100160,99030,94.23,0,4.59,5.36,5.7,6,6.26,6.51,6.74,6.95,7.29,176.92000000000002,177.32,177.59,177.76,177.89000000000001,177.99,178.18,178.39000000000001,179.37,23.64,23.47,23.37,23.23,23.1,22.97,22.87,22.78,22.69,N/A,N/A +2012,5,3,4,30,101280,100110,98990,95.88,0,4.83,5.6000000000000005,5.93,6.22,6.47,6.68,6.9,7.1000000000000005,7.46,187.81,187.87,187.82,187.65,187.47,187.31,187.22,187.16,187.23,23.55,23.34,23.22,23.07,22.92,22.78,22.66,22.56,22.59,N/A,N/A +2012,5,3,5,30,101300,100140,99010,94.96000000000001,0,4.8,5.51,5.78,6,6.24,6.5,6.74,6.95,7.36,183.1,183.61,183.94,184.37,184.76,185.14000000000001,185.38,185.56,185.71,23.54,23.3,23.16,23.01,22.87,22.76,22.64,22.53,22.38,N/A,N/A +2012,5,3,6,30,101290,100130,99000,95.24,0,4.93,5.28,5.37,5.46,5.71,6.09,6.46,6.82,7.26,188.55,188.87,189.1,189.46,190.29,191.51,193.12,194.8,196.05,23.61,23.3,23.14,22.96,22.81,22.68,22.64,22.62,22.7,N/A,N/A +2012,5,3,7,30,101330,100170,99040,93.91,0,4.3500000000000005,4.63,4.68,4.69,4.7,4.71,4.73,4.7700000000000005,5.33,193.66,193.73000000000002,193.78,193.86,193.98000000000002,194.13,194.43,194.73000000000002,198.01,23.67,23.35,23.18,22.990000000000002,22.81,22.62,22.44,22.28,22.1,N/A,N/A +2012,5,3,8,30,101310,100140,99010,94.14,0,5.42,5.8100000000000005,5.88,5.9,5.91,5.91,5.89,5.88,5.9,200.53,200.51,200.48000000000002,200.45000000000002,200.4,200.35,200.28,200.20000000000002,199.9,23.59,23.26,23.09,22.900000000000002,22.71,22.52,22.330000000000002,22.150000000000002,21.8,N/A,N/A +2012,5,3,9,30,101330,100160,99030,93.82000000000001,0,4.96,5.3100000000000005,5.37,5.4,5.41,5.41,5.42,5.42,5.44,201.92000000000002,201.99,201.99,201.99,202,202,202.02,202.03,202.1,23.55,23.22,23.05,22.85,22.66,22.48,22.28,22.09,21.73,N/A,N/A +2012,5,3,10,30,101350,100180,99050,95.2,0,4.72,5.07,5.17,5.22,5.26,5.3,5.33,5.36,5.43,194.17000000000002,194.47,194.71,194.95000000000002,195.19,195.44,195.70000000000002,195.96,196.58,23.41,23.06,22.87,22.66,22.46,22.26,22.1,21.96,21.7,N/A,N/A +2012,5,3,11,30,101420,100250,99120,93.21000000000001,0,2.75,2.94,3,3.04,3.09,3.13,3.2,3.27,3.62,193.24,191.48000000000002,190.48,189.51,188.61,187.75,186.93,186.17000000000002,184.53,23.46,23.14,22.98,22.78,22.6,22.42,22.23,22.06,21.740000000000002,N/A,N/A +2012,5,3,12,30,101420,100260,99130,88.87,0,2.35,2.5100000000000002,2.5500000000000003,2.58,2.6,2.62,2.64,2.66,2.7600000000000002,188.62,188.35,188.09,187.81,187.51,187.20000000000002,186.81,186.43,185.14000000000001,23.79,23.490000000000002,23.32,23.13,22.95,22.76,22.57,22.39,22.03,N/A,N/A +2012,5,3,13,30,101450,100280,99150,92.88,0,5.16,5.51,5.57,5.57,5.5600000000000005,5.54,5.51,5.48,5.41,181.21,181.20000000000002,181.15,181.09,181.04,181.01,180.99,180.99,181.15,23.580000000000002,23.25,23.080000000000002,22.88,22.69,22.5,22.3,22.12,21.75,N/A,N/A +2012,5,3,14,30,101520,100350,99220,89.96000000000001,0,3.2800000000000002,3.47,3.52,3.54,3.56,3.58,3.61,3.63,3.83,196.28,196.15,196.27,196.38,196.5,196.61,196.76,196.91,197.72,23.6,23.28,23.11,22.91,22.73,22.54,22.35,22.17,21.81,N/A,N/A +2012,5,3,15,30,101550,100390,99260,90.2,0,2.86,2.99,3.02,3.0300000000000002,3.04,3.04,3.04,3.0500000000000003,3.06,160.48,161.26,161.78,162.31,162.83,163.36,163.95000000000002,164.52,165.99,23.68,23.35,23.18,22.98,22.79,22.6,22.41,22.22,21.84,N/A,N/A +2012,5,3,16,30,101570,100400,99270,91.34,0,3.58,3.7800000000000002,3.8200000000000003,3.84,3.85,3.85,3.86,3.86,3.86,164.8,165.01,165.23,165.44,165.66,165.89000000000001,166.15,166.42000000000002,167.13,23.740000000000002,23.39,23.22,23.02,22.830000000000002,22.64,22.44,22.26,21.88,N/A,N/A +2012,5,3,17,30,101560,100400,99270,90.7,0,3.08,3.24,3.27,3.2800000000000002,3.3000000000000003,3.3000000000000003,3.31,3.31,3.33,156.18,156.70000000000002,157.03,157.35,157.66,157.98,158.35,158.70000000000002,159.63,23.85,23.5,23.330000000000002,23.13,22.94,22.75,22.56,22.37,22,N/A,N/A +2012,5,3,18,30,101580,100420,99290,90.95,0,3.56,3.7800000000000002,3.83,3.87,3.89,3.92,3.93,3.95,3.99,144.06,144.34,144.52,144.69,144.85,145.01,145.20000000000002,145.38,145.91,24.04,23.7,23.52,23.32,23.13,22.95,22.76,22.57,22.2,N/A,N/A +2012,5,3,19,30,101580,100420,99290,87.78,0,4.28,4.49,4.51,4.5,4.48,4.45,4.42,4.39,4.33,157.17000000000002,157.1,157.05,157.02,156.98,156.96,156.96,156.95000000000002,157.02,24.34,24,23.830000000000002,23.63,23.45,23.27,23.07,22.900000000000002,22.53,N/A,N/A +2012,5,3,20,30,101540,100370,99250,88.99,0,4.79,5.11,5.17,5.2,5.21,5.22,5.22,5.21,5.19,146.22,146.35,146.46,146.57,146.67000000000002,146.77,146.88,146.99,147.25,24.21,23.87,23.7,23.5,23.31,23.12,22.92,22.740000000000002,22.36,N/A,N/A +2012,5,3,21,30,101520,100350,99230,86.87,0,4.58,4.89,4.94,4.96,4.97,4.97,4.96,4.95,4.93,146.12,146.13,146.11,146.07,146.03,146,145.97,145.94,145.9,24.43,24.11,23.94,23.740000000000002,23.56,23.37,23.17,22.990000000000002,22.62,N/A,N/A +2012,5,3,22,30,101500,100340,99210,87.76,0,4.97,5.39,5.47,5.51,5.5200000000000005,5.53,5.53,5.5200000000000005,5.5,136.66,137.09,137.34,137.58,137.8,138.01,138.23,138.45000000000002,138.99,24.39,24.09,23.92,23.72,23.53,23.35,23.150000000000002,22.97,22.59,N/A,N/A +2012,5,3,23,30,101450,100290,99160,89.32000000000001,0,5.05,5.48,5.5600000000000005,5.6000000000000005,5.62,5.63,5.63,5.63,5.62,148.61,148.02,147.67000000000002,147.3,146.94,146.59,146.23,145.88,145.14000000000001,24.2,23.91,23.740000000000002,23.55,23.36,23.17,22.98,22.79,22.41,N/A,N/A +2012,5,4,0,30,101430,100270,99140,88.89,0,4.59,5.01,5.11,5.19,5.2700000000000005,5.34,5.45,5.5600000000000005,5.87,132.81,133.19,133.47,133.83,134.24,134.69,135.31,135.97,138.05,24.150000000000002,23.89,23.740000000000002,23.56,23.39,23.22,23.05,22.900000000000002,22.6,N/A,N/A +2012,5,4,1,30,101400,100230,99100,90.84,0,5.01,5.42,5.5,5.54,5.5600000000000005,5.58,5.59,5.6000000000000005,5.66,148.11,147.84,147.67000000000002,147.5,147.33,147.15,146.94,146.74,146.14000000000001,23.830000000000002,23.52,23.35,23.16,22.97,22.79,22.59,22.41,22.04,N/A,N/A +2012,5,4,2,30,101480,100320,99190,92.04,0,5.63,6.05,6.13,6.16,6.17,6.16,6.16,6.140000000000001,6.12,147.52,147.75,147.9,148.12,148.34,148.58,148.88,149.17000000000002,149.93,23.84,23.52,23.35,23.150000000000002,22.96,22.77,22.56,22.37,21.97,N/A,N/A +2012,5,4,3,30,101530,100370,99240,89.76,0,5.68,6.05,6.11,6.1000000000000005,6.09,6.0600000000000005,6.05,6.03,6.13,158.55,158.53,158.49,158.45000000000002,158.41,158.36,158.34,158.33,158.6,23.740000000000002,23.43,23.27,23.07,22.89,22.71,22.53,22.36,22.05,N/A,N/A +2012,5,4,4,30,101510,100350,99220,90.71000000000001,0,4.25,4.55,4.61,4.63,4.65,4.66,4.66,4.67,5.49,160.63,161.05,161.36,161.73,162.12,162.55,163.09,163.63,170.97,23.8,23.5,23.34,23.14,22.96,22.77,22.59,22.400000000000002,22.23,N/A,N/A +2012,5,4,5,30,101500,100330,99200,93.45,0,5.12,5.49,5.57,5.6000000000000005,5.63,5.66,5.7,5.76,6.24,163.32,163.6,163.77,163.98,164.23,164.5,164.95000000000002,165.42000000000002,168.29,23.650000000000002,23.330000000000002,23.16,22.98,22.79,22.61,22.43,22.26,21.97,N/A,N/A +2012,5,4,6,30,101510,100340,99210,94.61,0,5.16,5.5600000000000005,5.65,5.7,5.73,5.75,5.76,5.7700000000000005,5.82,170.17000000000002,170.19,170.22,170.26,170.32,170.38,170.45000000000002,170.52,170.8,23.67,23.330000000000002,23.150000000000002,22.95,22.76,22.57,22.37,22.19,21.93,N/A,N/A +2012,5,4,7,30,101580,100410,99280,94.39,0,3.92,4.16,4.22,4.28,4.33,4.4,4.5200000000000005,4.64,5.33,189.27,186.58,184.88,183.04,181.25,179.45000000000002,177.63,175.9,175.09,23.59,23.26,23.1,22.91,22.740000000000002,22.57,22.400000000000002,22.25,21.990000000000002,N/A,N/A +2012,5,4,8,30,101550,100380,99250,93.79,0,4.68,4.92,4.95,4.94,4.97,5.0200000000000005,5.22,5.46,5.84,171.5,172.89000000000001,173.85,175.19,176.91,178.91,181.52,184.22,187.70000000000002,23.66,23.34,23.17,22.990000000000002,22.84,22.69,22.6,22.54,22.45,N/A,N/A +2012,5,4,9,30,101550,100390,99260,93.2,0,3.98,4.25,4.33,4.39,4.47,4.57,4.8100000000000005,5.09,5.67,180.05,180.63,181.07,181.59,182.20000000000002,182.92000000000002,184.11,185.43,188.39000000000001,23.740000000000002,23.43,23.27,23.09,22.91,22.75,22.61,22.48,22.240000000000002,N/A,N/A +2012,5,4,10,30,101570,100400,99270,92.87,0,4.73,5.0600000000000005,5.14,5.17,5.19,5.2,5.21,5.21,5.22,178.92000000000002,179.12,179.3,179.52,179.73,179.95000000000002,180.18,180.41,180.98,23.85,23.54,23.37,23.17,22.990000000000002,22.8,22.62,22.44,22.07,N/A,N/A +2012,5,4,11,30,101550,100390,99260,91.34,0,3.87,4.1,4.13,4.14,4.14,4.15,4.19,4.24,4.88,169.71,170.33,170.78,171.35,172.11,173,174.75,176.65,186.26,23.8,23.48,23.31,23.12,22.95,22.77,22.6,22.45,22.32,N/A,N/A +2012,5,4,12,30,101580,100410,99280,91.86,0,3.87,4.12,4.18,4.22,4.24,4.25,4.2700000000000005,4.28,4.29,181.45000000000002,181.85,182.13,182.46,182.8,183.15,183.55,183.94,184.88,23.81,23.490000000000002,23.32,23.12,22.93,22.75,22.55,22.37,21.990000000000002,N/A,N/A +2012,5,4,13,30,101610,100450,99320,90.14,0,3.87,4.1,4.15,4.17,4.17,4.17,4.17,4.16,4.14,182.25,182.61,182.75,182.94,183.14000000000001,183.35,183.59,183.83,184.47,23.86,23.54,23.37,23.17,22.98,22.8,22.6,22.42,22.04,N/A,N/A +2012,5,4,14,30,101660,100490,99360,89.08,0,3.62,3.88,3.95,4,4.03,4.07,4.1,4.12,4.18,190.84,190.95000000000002,191,191.05,191.1,191.14000000000001,191.18,191.23000000000002,191.38,23.900000000000002,23.580000000000002,23.41,23.21,23.02,22.84,22.64,22.45,22.07,N/A,N/A +2012,5,4,15,30,101640,100470,99340,88.97,0,4.1,4.32,4.36,4.36,4.36,4.3500000000000005,4.34,4.33,4.3100000000000005,161.6,162.09,162.42000000000002,162.76,163.1,163.44,163.82,164.20000000000002,165.23,23.92,23.59,23.42,23.23,23.04,22.85,22.66,22.48,22.11,N/A,N/A +2012,5,4,16,30,101670,100500,99370,89.65,0,4.32,4.68,4.76,4.82,4.86,4.89,4.91,4.94,4.97,149.37,149.85,150.04,150.22,150.36,150.5,150.63,150.75,151.02,24.03,23.7,23.52,23.32,23.13,22.94,22.740000000000002,22.56,22.18,N/A,N/A +2012,5,4,17,30,101660,100490,99360,88.44,0,4.23,4.51,4.57,4.6000000000000005,4.63,4.64,4.66,4.67,4.71,163.70000000000002,163.78,163.89000000000001,163.98,164.07,164.15,164.26,164.37,164.64000000000001,24.080000000000002,23.740000000000002,23.57,23.37,23.18,22.990000000000002,22.8,22.62,22.240000000000002,N/A,N/A +2012,5,4,18,30,101650,100480,99350,86.97,0,4.23,4.51,4.57,4.59,4.61,4.62,4.62,4.62,4.62,166.84,167.15,167.35,167.57,167.77,167.96,168.17000000000002,168.37,168.81,24.28,23.94,23.76,23.56,23.37,23.18,22.98,22.8,22.41,N/A,N/A +2012,5,4,19,30,101630,100470,99340,86.92,0,4.17,4.44,4.5,4.53,4.5600000000000005,4.58,4.61,4.63,4.68,155.70000000000002,155.33,155.16,154.98,154.79,154.61,154.44,154.28,154,24.330000000000002,23.990000000000002,23.81,23.62,23.43,23.240000000000002,23.05,22.87,22.490000000000002,N/A,N/A +2012,5,4,20,30,101590,100430,99300,86.33,0,4.86,5.22,5.3100000000000005,5.3500000000000005,5.39,5.41,5.44,5.46,5.5,150.65,150.70000000000002,150.65,150.62,150.59,150.58,150.58,150.57,150.57,24.36,24.03,23.85,23.650000000000002,23.46,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A +2012,5,4,21,30,101550,100380,99260,86.84,0,5.58,6,6.09,6.13,6.16,6.17,6.18,6.18,6.18,166,166.02,166.14000000000001,166.26,166.38,166.5,166.66,166.82,167.24,24.34,24.02,23.85,23.650000000000002,23.46,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A +2012,5,4,22,30,101500,100340,99210,88.02,0,5.89,6.390000000000001,6.51,6.57,6.61,6.640000000000001,6.65,6.67,6.68,174.12,174.41,174.59,174.78,174.95000000000002,175.13,175.34,175.53,176.01,24.37,24.07,23.900000000000002,23.7,23.52,23.330000000000002,23.13,22.95,22.57,N/A,N/A +2012,5,4,23,30,101490,100320,99200,90.44,0,4.6000000000000005,5,5.09,5.15,5.19,5.23,5.26,5.28,5.34,159.47,159.44,159.48,159.48,159.46,159.43,159.37,159.31,159.11,24.25,23.94,23.78,23.580000000000002,23.39,23.21,23.02,22.84,22.46,N/A,N/A +2012,5,5,0,30,101460,100290,99170,90.5,0,6.15,6.66,6.76,6.8,6.8100000000000005,6.8100000000000005,6.79,6.7700000000000005,6.7,148.47,148.78,149.01,149.28,149.54,149.83,150.15,150.47,151.32,24.3,24,23.84,23.650000000000002,23.46,23.28,23.09,22.91,22.55,N/A,N/A +2012,5,5,1,30,101440,100280,99150,90.71000000000001,0,4.71,5.09,5.17,5.22,5.24,5.26,5.2700000000000005,5.2700000000000005,5.28,146.78,147.3,147.61,147.89000000000001,148.14000000000001,148.37,148.62,148.84,149.36,24.26,23.96,23.8,23.6,23.42,23.23,23.04,22.86,22.48,N/A,N/A +2012,5,5,2,30,101390,100220,99100,92.23,0,4.83,5.25,5.34,5.38,5.41,5.41,5.41,5.4,5.36,168.12,167.96,167.87,167.8,167.78,167.78,167.81,167.85,168.06,24.29,23.990000000000002,23.830000000000002,23.63,23.45,23.27,23.080000000000002,22.900000000000002,22.53,N/A,N/A +2012,5,5,3,30,101370,100200,99080,92.43,0,5.79,6.23,6.3100000000000005,6.33,6.34,6.33,6.3100000000000005,6.3,6.25,155.58,155.61,155.68,155.76,155.85,155.94,156.05,156.16,156.45000000000002,24.13,23.82,23.650000000000002,23.45,23.27,23.080000000000002,22.89,22.71,22.330000000000002,N/A,N/A +2012,5,5,4,30,101410,100250,99120,92.26,0,6.68,7.17,7.24,7.24,7.22,7.18,7.13,7.08,6.93,159.38,159.92000000000002,160.27,160.66,161.07,161.49,162.01,162.53,163.93,23.93,23.6,23.42,23.22,23.03,22.84,22.64,22.45,22.05,N/A,N/A +2012,5,5,5,30,101430,100270,99140,89.12,0,4.83,5.24,5.33,5.39,5.43,5.46,5.48,5.5,5.53,178.82,179.19,179.38,179.52,179.63,179.71,179.79,179.86,179.99,24.13,23.82,23.650000000000002,23.46,23.27,23.080000000000002,22.89,22.7,22.32,N/A,N/A +2012,5,5,6,30,101440,100280,99150,89.60000000000001,0,6.3500000000000005,6.8500000000000005,6.96,7.0200000000000005,7.05,7.07,7.07,7.08,7.08,177.41,177.65,177.8,177.96,178.12,178.27,178.43,178.59,178.95000000000002,24.23,23.89,23.71,23.52,23.330000000000002,23.14,22.95,22.76,22.38,N/A,N/A +2012,5,5,7,30,101410,100250,99120,89.23,0,6.09,6.5600000000000005,6.66,6.7,6.73,6.74,6.74,6.74,6.73,182.91,182.83,182.79,182.73,182.68,182.63,182.58,182.53,182.42000000000002,24.11,23.77,23.59,23.39,23.2,23.02,22.82,22.64,22.27,N/A,N/A +2012,5,5,8,30,101450,100290,99160,85.96000000000001,0,4.75,5.07,5.14,5.17,5.19,5.19,5.2,5.2,5.19,197.44,197.5,197.55,197.59,197.62,197.65,197.68,197.71,197.79,24.21,23.88,23.7,23.5,23.31,23.12,22.93,22.740000000000002,22.36,N/A,N/A +2012,5,5,9,30,101490,100320,99200,86.08,0,5.2700000000000005,5.63,5.7,5.73,5.74,5.74,5.74,5.74,5.74,204.87,205.38,205.69,205.97,206.23000000000002,206.47,206.71,206.94,207.4,24.16,23.82,23.64,23.44,23.25,23.06,22.86,22.67,22.29,N/A,N/A +2012,5,5,10,30,101430,100270,99140,86.66,0,6.83,7.4,7.54,7.61,7.65,7.68,7.7,7.72,7.73,202.61,202.65,202.65,202.63,202.61,202.58,202.54,202.51,202.45000000000002,24.21,23.87,23.69,23.490000000000002,23.3,23.11,22.91,22.73,22.34,N/A,N/A +2012,5,5,11,30,101460,100300,99170,85.13,0,6.6000000000000005,7.12,7.23,7.28,7.3100000000000005,7.32,7.32,7.32,7.3,202.86,202.86,202.84,202.82,202.8,202.78,202.76,202.75,202.71,24.29,23.96,23.79,23.59,23.400000000000002,23.21,23.02,22.830000000000002,22.45,N/A,N/A +2012,5,5,12,30,101440,100270,99150,84.60000000000001,0,6.17,6.6000000000000005,6.69,6.72,6.72,6.72,6.7,6.68,6.63,213.64000000000001,214.11,214.29,214.5,214.71,214.91,215.13,215.34,215.82,24.28,23.95,23.78,23.580000000000002,23.39,23.21,23.02,22.84,22.46,N/A,N/A +2012,5,5,13,30,101390,100230,99100,86.83,0,5.0600000000000005,5.44,5.53,5.58,5.62,5.65,5.67,5.69,5.72,198.51,198.44,198.45000000000002,198.46,198.47,198.47,198.48000000000002,198.49,198.49,24.310000000000002,23.97,23.8,23.6,23.41,23.22,23.02,22.84,22.45,N/A,N/A +2012,5,5,14,30,101370,100210,99090,89.34,0,6.36,6.88,7.01,7.08,7.12,7.16,7.18,7.2,7.22,171.27,171.5,171.61,171.72,171.8,171.88,171.96,172.05,172.22,24.39,24.060000000000002,23.89,23.69,23.5,23.31,23.12,22.93,22.55,N/A,N/A +2012,5,5,15,30,101380,100220,99090,89.51,0,6.68,7.25,7.38,7.45,7.5,7.53,7.55,7.5600000000000005,7.58,168.62,168.77,168.8,168.84,168.88,168.92000000000002,168.96,169,169.07,24.46,24.12,23.94,23.740000000000002,23.55,23.36,23.17,22.98,22.6,N/A,N/A +2012,5,5,16,30,101430,100270,99140,88.01,0,6.47,7.0200000000000005,7.15,7.21,7.25,7.28,7.3,7.3100000000000005,7.3100000000000005,182.8,182.37,182.21,182.08,181.98,181.89000000000001,181.81,181.75,181.63,24.69,24.37,24.2,24,23.81,23.62,23.42,23.240000000000002,22.86,N/A,N/A +2012,5,5,17,30,101420,100260,99130,88.33,0,6.33,6.9,7.03,7.11,7.16,7.19,7.21,7.23,7.25,179.36,179.58,179.65,179.70000000000002,179.74,179.77,179.81,179.84,179.9,24.75,24.43,24.25,24.060000000000002,23.86,23.68,23.48,23.3,22.91,N/A,N/A +2012,5,5,18,30,101420,100260,99130,89.13,0,5.29,5.7700000000000005,5.9,5.98,6.04,6.08,6.12,6.140000000000001,6.18,181.73,181.64000000000001,181.6,181.59,181.58,181.57,181.57,181.58,181.59,24.830000000000002,24.51,24.34,24.14,23.95,23.76,23.56,23.38,22.990000000000002,N/A,N/A +2012,5,5,19,30,101410,100250,99130,89.69,0,5.96,6.45,6.5600000000000005,6.61,6.640000000000001,6.66,6.67,6.67,6.67,168.03,168.13,168.21,168.28,168.34,168.4,168.44,168.48,168.56,24.89,24.560000000000002,24.39,24.19,24,23.81,23.61,23.43,23.05,N/A,N/A +2012,5,5,20,30,101370,100210,99090,90.51,0,6.36,6.93,7.07,7.140000000000001,7.19,7.22,7.23,7.24,7.24,157.88,158.06,158.22,158.38,158.54,158.69,158.83,158.96,159.24,24.79,24.46,24.29,24.09,23.91,23.72,23.52,23.34,22.96,N/A,N/A +2012,5,5,21,30,101330,100170,99050,91.45,0,5.62,6.1000000000000005,6.22,6.3,6.3500000000000005,6.4,6.43,6.46,6.53,165.53,165.96,166.22,166.49,166.75,167.01,167.28,167.56,168.21,24.88,24.57,24.400000000000002,24.2,24.02,23.830000000000002,23.64,23.46,23.09,N/A,N/A +2012,5,5,22,30,101310,100150,99030,91.57000000000001,0,6.63,7.25,7.390000000000001,7.47,7.5200000000000005,7.55,7.5600000000000005,7.57,7.5600000000000005,174,174.28,174.32,174.35,174.37,174.38,174.39000000000001,174.39000000000001,174.37,24.88,24.57,24.41,24.21,24.02,23.84,23.64,23.46,23.080000000000002,N/A,N/A +2012,5,5,23,30,101270,100120,99000,90.02,0,6.78,7.37,7.49,7.55,7.58,7.59,7.59,7.59,7.57,168.21,168.22,168.33,168.49,168.66,168.85,169.08,169.3,169.89000000000001,24.87,24.57,24.400000000000002,24.21,24.02,23.84,23.64,23.46,23.09,N/A,N/A +2012,5,6,0,30,101250,100090,98970,92.14,0,6.65,7.25,7.4,7.48,7.54,7.57,7.6000000000000005,7.63,7.67,160.45000000000002,160.65,160.74,160.84,160.94,161.03,161.14000000000001,161.23,161.49,24.72,24.41,24.240000000000002,24.05,23.86,23.67,23.48,23.3,22.91,N/A,N/A +2012,5,6,1,30,101210,100060,98930,91.61,0,6.75,7.34,7.48,7.55,7.6000000000000005,7.640000000000001,7.67,7.7,7.79,163.04,163.32,163.53,163.76,163.99,164.23,164.53,164.82,165.65,24.63,24.32,24.150000000000002,23.95,23.77,23.580000000000002,23.39,23.2,22.830000000000002,N/A,N/A +2012,5,6,2,30,101240,100080,98960,92.06,0,7.03,7.640000000000001,7.78,7.83,7.86,7.87,7.86,7.8500000000000005,7.8,163.72,164.02,164.18,164.37,164.55,164.73,164.93,165.14000000000001,165.65,24.64,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.39,23.2,22.830000000000002,N/A,N/A +2012,5,6,3,30,101270,100110,98990,91.82000000000001,0,7.19,7.8500000000000005,8.02,8.11,8.17,8.21,8.23,8.25,8.28,170.22,170.11,170.07,170.05,170.04,170.03,170.04,170.04,170.07,24.67,24.35,24.18,23.98,23.79,23.6,23.41,23.22,22.84,N/A,N/A +2012,5,6,4,30,101240,100080,98960,88.94,0,7.87,8.67,8.870000000000001,8.98,9.06,9.11,9.14,9.16,9.17,167.41,167.99,168.21,168.4,168.57,168.72,168.86,168.99,169.27,24.79,24.48,24.32,24.12,23.94,23.75,23.56,23.38,22.990000000000002,N/A,N/A +2012,5,6,5,30,101270,100110,98980,88.7,0,8.14,8.93,9.120000000000001,9.200000000000001,9.25,9.28,9.28,9.27,9.22,182.33,182.19,182.09,182.01,181.93,181.87,181.81,181.75,181.63,24.76,24.45,24.28,24.09,23.900000000000002,23.71,23.52,23.34,22.95,N/A,N/A +2012,5,6,6,30,101270,100110,98980,87.11,0,7.57,8.290000000000001,8.49,8.59,8.67,8.72,8.76,8.790000000000001,8.82,189.32,189.45000000000002,189.53,189.61,189.68,189.76,189.83,189.89000000000001,190.04,24.71,24.400000000000002,24.23,24.03,23.85,23.66,23.46,23.28,22.900000000000002,N/A,N/A +2012,5,6,7,30,101300,100140,99020,88.46000000000001,0,6.87,7.48,7.62,7.7,7.76,7.79,7.82,7.83,7.86,184.8,184.86,184.89000000000001,184.93,184.99,185.05,185.12,185.18,185.36,24.6,24.28,24.1,23.91,23.72,23.53,23.330000000000002,23.150000000000002,22.76,N/A,N/A +2012,5,6,8,30,101290,100130,99010,89.46000000000001,0,6.7,7.3100000000000005,7.46,7.54,7.6000000000000005,7.640000000000001,7.67,7.69,7.72,192.74,193.02,193.20000000000002,193.39000000000001,193.58,193.76,193.95000000000002,194.13,194.56,24.61,24.28,24.11,23.91,23.72,23.54,23.34,23.16,22.78,N/A,N/A +2012,5,6,9,30,101290,100130,99010,88.27,0,6.22,6.79,6.93,7.01,7.07,7.1000000000000005,7.140000000000001,7.17,7.21,201.67000000000002,201.84,201.89000000000001,201.96,202.03,202.11,202.19,202.27,202.45000000000002,24.71,24.400000000000002,24.23,24.04,23.85,23.66,23.47,23.28,22.900000000000002,N/A,N/A +2012,5,6,10,30,101250,100090,98970,88.78,0,6.7,7.28,7.41,7.48,7.5200000000000005,7.55,7.57,7.58,7.6000000000000005,209.13,209.18,209.22,209.27,209.31,209.36,209.41,209.46,209.58,24.66,24.34,24.18,23.98,23.79,23.6,23.41,23.22,22.84,N/A,N/A +2012,5,6,11,30,101250,100090,98970,88.46000000000001,0,5.99,6.5200000000000005,6.65,6.72,6.78,6.8100000000000005,6.84,6.86,6.9,201.44,201.53,201.6,201.67000000000002,201.73000000000002,201.79,201.85,201.91,202.06,24.67,24.35,24.18,23.990000000000002,23.8,23.61,23.41,23.23,22.85,N/A,N/A +2012,5,6,12,30,101310,100150,99020,88.63,0,4.51,4.84,4.92,4.95,4.98,4.99,5,5,5,171.63,172.08,172.4,172.66,172.9,173.11,173.31,173.5,173.9,24.64,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.38,23.2,22.82,N/A,N/A +2012,5,6,13,30,101350,100190,99060,88.22,0,4.04,4.3500000000000005,4.42,4.46,4.49,4.5,4.5200000000000005,4.53,4.54,181.59,181.85,181.9,181.99,182.08,182.18,182.29,182.39000000000001,182.64000000000001,24.64,24.330000000000002,24.16,23.96,23.77,23.580000000000002,23.39,23.2,22.82,N/A,N/A +2012,5,6,14,30,101340,100180,99060,88.82000000000001,0,4.83,5.18,5.26,5.3,5.32,5.34,5.3500000000000005,5.3500000000000005,5.36,183.93,184.09,184.22,184.37,184.5,184.65,184.8,184.94,185.31,24.6,24.28,24.11,23.91,23.72,23.53,23.34,23.150000000000002,22.77,N/A,N/A +2012,5,6,15,30,101330,100170,99050,88.28,0,5.1000000000000005,5.48,5.5600000000000005,5.61,5.63,5.65,5.66,5.67,5.68,170.87,171.45000000000002,171.8,172.16,172.48,172.79,173.13,173.45000000000002,174.17000000000002,24.68,24.35,24.18,23.990000000000002,23.8,23.61,23.42,23.240000000000002,22.86,N/A,N/A +2012,5,6,16,30,101390,100230,99100,89.26,0,5.28,5.69,5.8,5.8500000000000005,5.9,5.93,5.95,5.97,6,160.52,161.05,161.32,161.59,161.83,162.06,162.3,162.53,162.99,24.71,24.37,24.2,24,23.81,23.62,23.43,23.240000000000002,22.86,N/A,N/A +2012,5,6,17,30,101400,100240,99110,86.47,0,5.51,5.9,5.98,6,6.0200000000000005,6.0200000000000005,6.01,6,5.97,171.67000000000002,171.94,172.04,172.14000000000001,172.25,172.35,172.46,172.56,172.79,24.8,24.46,24.29,24.09,23.900000000000002,23.71,23.52,23.34,22.95,N/A,N/A +2012,5,6,18,30,101380,100220,99090,87.96000000000001,0,5.26,5.64,5.71,5.75,5.7700000000000005,5.79,5.8,5.8,5.8,158.78,158.85,158.94,159.07,159.21,159.35,159.5,159.66,160.04,24.7,24.35,24.18,23.98,23.78,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A +2012,5,6,19,30,101350,100190,99070,88.98,0,6.3,6.88,7.0200000000000005,7.11,7.18,7.22,7.25,7.2700000000000005,7.3,158.97,158.98,159.03,159.08,159.13,159.18,159.22,159.27,159.36,24.79,24.45,24.28,24.080000000000002,23.89,23.7,23.5,23.32,22.93,N/A,N/A +2012,5,6,20,30,101320,100160,99040,88.8,0,6.390000000000001,6.95,7.08,7.140000000000001,7.19,7.21,7.23,7.25,7.25,163.94,163.79,163.79,163.82,163.85,163.89000000000001,163.94,163.99,164.12,24.72,24.39,24.22,24.02,23.830000000000002,23.64,23.45,23.26,22.88,N/A,N/A +2012,5,6,21,30,101290,100130,99000,87.52,0,6.63,7.19,7.3100000000000005,7.37,7.41,7.43,7.44,7.45,7.44,164.03,164.36,164.5,164.62,164.73,164.82,164.9,164.98,165.12,24.7,24.38,24.2,24,23.81,23.63,23.43,23.240000000000002,22.86,N/A,N/A +2012,5,6,22,30,101200,100040,98920,85.83,0,7.46,8.16,8.33,8.42,8.48,8.52,8.55,8.58,8.620000000000001,171.31,171.57,171.74,171.93,172.11,172.29,172.5,172.69,173.19,24.75,24.45,24.28,24.09,23.900000000000002,23.72,23.53,23.35,22.98,N/A,N/A +2012,5,6,23,30,101200,100040,98920,85.93,0,7.09,7.76,7.930000000000001,8.02,8.08,8.11,8.13,8.14,8.120000000000001,173.47,173.18,173.09,173.06,173.04,173.04,173.06,173.08,173.17000000000002,24.79,24.48,24.310000000000002,24.11,23.92,23.73,23.54,23.35,22.97,N/A,N/A +2012,5,7,0,30,101160,100000,98880,87.10000000000001,0,6.53,7.1000000000000005,7.22,7.28,7.32,7.32,7.32,7.3100000000000005,7.2700000000000005,177.62,177.56,177.59,177.64000000000001,177.70000000000002,177.76,177.84,177.9,178.07,24.67,24.35,24.18,23.98,23.79,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A +2012,5,7,1,30,101260,100100,98980,86.79,0,4.34,4.67,4.76,4.8100000000000005,4.8500000000000005,4.87,4.88,4.89,4.9,189.68,189.28,189.12,189.01,188.95000000000002,188.92000000000002,188.93,188.96,189.09,24.650000000000002,24.34,24.17,23.97,23.78,23.59,23.39,23.2,22.82,N/A,N/A +2012,5,7,2,30,101340,100180,99050,82.06,0,3.13,3.35,3.39,3.41,3.42,3.42,3.42,3.42,3.42,233.32,232.8,232.59,232.44,232.31,232.20000000000002,232.09,232,231.82,24.86,24.57,24.400000000000002,24.21,24.02,23.84,23.64,23.46,23.07,N/A,N/A +2012,5,7,3,30,101300,100140,99020,81.03,0,0.99,1.01,1.01,1,0.99,0.98,0.97,0.97,0.9500000000000001,235.32,235.73000000000002,235.97,236.21,236.45000000000002,236.68,236.95000000000002,237.21,237.89000000000001,24.77,24.47,24.3,24.11,23.92,23.740000000000002,23.54,23.36,22.98,N/A,N/A +2012,5,7,4,30,101260,100100,98980,83.69,0,4.88,5.19,5.21,5.19,5.17,5.15,5.12,5.08,5,139.13,139.5,139.55,139.71,139.92000000000002,140.14000000000001,140.61,141.1,144.12,24.62,24.3,24.13,23.94,23.75,23.57,23.38,23.22,22.93,N/A,N/A +2012,5,7,5,30,101200,100040,98910,84.55,0,5.74,6.17,6.2700000000000005,6.3100000000000005,6.33,6.34,6.34,6.34,6.32,169.02,169.07,169.13,169.21,169.32,169.43,169.58,169.73,170.16,24.560000000000002,24.240000000000002,24.07,23.88,23.69,23.5,23.31,23.13,22.75,N/A,N/A +2012,5,7,6,30,101230,100070,98950,85.61,0,4.34,4.64,4.71,4.74,4.76,4.7700000000000005,4.78,4.78,4.79,178.62,178.71,178.92000000000002,179.12,179.31,179.51,179.73,179.93,180.47,24.52,24.2,24.03,23.830000000000002,23.64,23.45,23.26,23.080000000000002,22.7,N/A,N/A +2012,5,7,7,30,101200,100040,98910,84.64,0,4.36,4.66,4.72,4.75,4.78,4.79,4.8,4.8100000000000005,4.82,174.23,174.5,174.65,174.82,174.98,175.15,175.33,175.51,175.97,24.51,24.19,24.02,23.82,23.63,23.45,23.25,23.07,22.69,N/A,N/A +2012,5,7,8,30,101180,100020,98900,84.47,0,4.73,5.04,5.1000000000000005,5.13,5.14,5.15,5.15,5.15,5.14,180.68,180.93,181.08,181.24,181.4,181.56,181.75,181.94,182.44,24.5,24.17,24,23.8,23.61,23.42,23.23,23.05,22.66,N/A,N/A +2012,5,7,9,30,101180,100020,98890,86.98,0,5.19,5.57,5.65,5.69,5.71,5.73,5.74,5.75,5.76,191.31,191.49,191.63,191.77,191.91,192.04,192.20000000000002,192.34,192.74,24.48,24.150000000000002,23.98,23.78,23.59,23.400000000000002,23.21,23.02,22.64,N/A,N/A +2012,5,7,10,30,101160,100000,98880,86.26,0,4.5200000000000005,4.82,4.87,4.9,4.91,4.92,4.92,4.92,4.91,189.67000000000002,189.79,189.87,189.97,190.08,190.19,190.32,190.45000000000002,190.8,24.5,24.17,24,23.8,23.61,23.42,23.23,23.05,22.66,N/A,N/A +2012,5,7,11,30,101150,99990,98870,88.59,0,4.19,4.44,4.48,4.49,4.48,4.48,4.46,4.45,4.41,178.32,178.48,178.67000000000002,178.84,179.01,179.16,179.34,179.51,179.95000000000002,24.42,24.080000000000002,23.91,23.71,23.53,23.34,23.14,22.96,22.580000000000002,N/A,N/A +2012,5,7,12,30,101160,100000,98880,89.7,0,4.36,4.63,4.69,4.71,4.72,4.73,4.73,4.73,4.72,176.94,177.15,177.29,177.43,177.57,177.70000000000002,177.86,178.01,178.36,24.39,24.05,23.88,23.68,23.490000000000002,23.3,23.1,22.92,22.54,N/A,N/A +2012,5,7,13,30,101190,100030,98910,90.67,0,5.11,5.48,5.55,5.6000000000000005,5.63,5.65,5.66,5.67,5.69,180.77,180.83,180.8,180.76,180.73,180.70000000000002,180.69,180.68,180.70000000000002,24.47,24.14,23.96,23.76,23.57,23.38,23.18,22.990000000000002,22.61,N/A,N/A +2012,5,7,14,30,101250,100090,98970,89.02,0,4.28,4.48,4.5,4.5,4.49,4.47,4.45,4.43,4.38,176.68,177,177.39000000000001,177.94,178.57,179.29,180.38,181.55,185.64000000000001,24.580000000000002,24.26,24.09,23.900000000000002,23.71,23.53,23.35,23.17,22.84,N/A,N/A +2012,5,7,15,30,101280,100120,99000,89.66,0,4.63,4.91,4.96,4.96,4.96,4.95,4.93,4.91,4.87,180.27,180.48,180.54,180.61,180.68,180.76,180.86,180.96,181.25,24.62,24.29,24.12,23.92,23.740000000000002,23.55,23.36,23.18,22.830000000000002,N/A,N/A +2012,5,7,16,30,101280,100120,99000,88.63,0,4.79,5.1000000000000005,5.16,5.18,5.19,5.19,5.19,5.18,5.15,179.20000000000002,179.78,180.14000000000001,180.52,180.87,181.21,181.59,181.95000000000002,182.81,24.75,24.41,24.23,24.03,23.85,23.66,23.46,23.28,22.900000000000002,N/A,N/A +2012,5,7,17,30,101300,100140,99020,87.54,0,4.23,4.49,4.54,4.5600000000000005,4.57,4.58,4.58,4.58,4.58,180.8,181.05,181.19,181.33,181.46,181.59,181.73,181.86,182.19,24.86,24.51,24.34,24.14,23.95,23.76,23.56,23.38,22.990000000000002,N/A,N/A +2012,5,7,18,30,101300,100140,99020,87.62,0,4.48,4.74,4.79,4.8,4.8,4.8,4.79,4.7700000000000005,4.74,172.89000000000001,173.02,173.14000000000001,173.29,173.44,173.61,173.83,174.04,174.62,24.96,24.61,24.43,24.240000000000002,24.05,23.86,23.66,23.48,23.1,N/A,N/A +2012,5,7,19,30,101270,100110,98990,88.16,0,4.57,4.83,4.87,4.87,4.87,4.86,4.84,4.82,4.7700000000000005,187.88,187.43,187.14000000000001,186.82,186.51,186.20000000000002,185.86,185.54,184.79,25.1,24.75,24.580000000000002,24.38,24.19,24,23.8,23.62,23.240000000000002,N/A,N/A +2012,5,7,20,30,101230,100070,98950,89.37,0,5.36,5.76,5.86,5.92,5.95,5.98,5.99,6.01,6.0200000000000005,158.4,159.05,159.53,159.99,160.41,160.79,161.18,161.54,162.3,25.12,24.78,24.61,24.41,24.22,24.03,23.84,23.650000000000002,23.27,N/A,N/A +2012,5,7,21,30,101140,99990,98870,89.37,0,5.8100000000000005,6.23,6.3100000000000005,6.33,6.34,6.33,6.32,6.3100000000000005,6.28,174.8,175.02,175.09,175.22,175.37,175.55,175.78,176.02,176.72,24.93,24.61,24.44,24.240000000000002,24.05,23.87,23.67,23.490000000000002,23.13,N/A,N/A +2012,5,7,22,30,101110,99960,98840,89.42,0,5.15,5.53,5.59,5.62,5.63,5.63,5.63,5.62,5.6000000000000005,151.9,152.33,152.6,152.87,153.12,153.36,153.62,153.86,154.42000000000002,24.93,24.61,24.44,24.240000000000002,24.05,23.86,23.67,23.48,23.1,N/A,N/A +2012,5,7,23,30,101070,99910,98790,88.81,0,6.13,6.61,6.71,6.75,6.7700000000000005,6.78,6.78,6.7700000000000005,6.75,149.06,149.03,149.06,149.09,149.12,149.15,149.20000000000002,149.24,149.36,24.91,24.6,24.43,24.23,24.04,23.85,23.66,23.48,23.09,N/A,N/A +2012,5,8,0,30,101060,99910,98790,88.76,0,5.09,5.5,5.58,5.63,5.65,5.66,5.67,5.67,5.66,160.63,160.77,160.77,160.79,160.8,160.81,160.83,160.85,160.88,24.87,24.560000000000002,24.39,24.2,24.01,23.82,23.63,23.44,23.06,N/A,N/A +2012,5,8,1,30,101060,99910,98790,89.28,0,4.89,5.26,5.33,5.37,5.39,5.4,5.41,5.41,5.4,164.79,164.92000000000002,164.9,164.87,164.83,164.78,164.72,164.66,164.49,24.830000000000002,24.52,24.35,24.150000000000002,23.96,23.78,23.580000000000002,23.400000000000002,23.02,N/A,N/A +2012,5,8,2,30,101100,99950,98830,89.44,0,4.74,5.08,5.15,5.18,5.19,5.19,5.19,5.18,5.15,167.35,167.46,167.49,167.5,167.52,167.54,167.55,167.56,167.58,24.76,24.45,24.28,24.080000000000002,23.900000000000002,23.71,23.52,23.330000000000002,22.95,N/A,N/A +2012,5,8,3,30,101150,99990,98870,89.69,0,4.61,4.93,5,5.03,5.04,5.05,5.05,5.04,5.03,156.85,156.83,156.92000000000002,156.99,157.05,157.1,157.15,157.20000000000002,157.28,24.740000000000002,24.42,24.25,24.05,23.86,23.67,23.48,23.29,22.91,N/A,N/A +2012,5,8,4,30,101170,100010,98890,90.13,0,3.84,4.1,4.16,4.18,4.19,4.19,4.19,4.19,4.18,146.89000000000001,146.77,146.95000000000002,147.14000000000001,147.32,147.51,147.71,147.91,148.4,24.68,24.36,24.19,23.990000000000002,23.81,23.62,23.42,23.240000000000002,22.86,N/A,N/A +2012,5,8,5,30,101170,100010,98890,87.31,0,4.78,5.13,5.18,5.19,5.19,5.17,5.15,5.13,5.0600000000000005,161.93,161.74,161.64000000000001,161.53,161.42000000000002,161.32,161.22,161.12,160.93,24.76,24.45,24.27,24.080000000000002,23.89,23.7,23.5,23.32,22.93,N/A,N/A +2012,5,8,6,30,101270,100110,98990,87.58,0,3.56,3.72,3.74,3.73,3.71,3.69,3.66,3.63,3.54,171.66,171.99,172.23,172.5,172.74,172.99,173.27,173.54,174.23,24.71,24.39,24.23,24.04,23.85,23.67,23.48,23.3,22.94,N/A,N/A +2012,5,8,7,30,101280,100120,99000,87.83,0,1.73,1.81,1.82,1.83,1.83,1.82,1.82,1.81,1.79,173.01,173.68,174.02,174.54,175.09,175.70000000000002,176.44,177.19,179.1,24.69,24.38,24.21,24.01,23.81,23.63,23.43,23.240000000000002,22.86,N/A,N/A +2012,5,8,8,30,101260,100100,98970,84.44,0,1.33,1.22,1.1400000000000001,1.06,0.98,0.91,0.8300000000000001,0.76,0.62,93.7,94.44,94.94,95.23,95.13,94.82000000000001,93.72,92.52,85.73,24.650000000000002,24.330000000000002,24.16,23.96,23.77,23.580000000000002,23.38,23.2,22.81,N/A,N/A +2012,5,8,9,30,101250,100090,98960,82.57000000000001,0,1.4000000000000001,1.44,1.44,1.44,1.45,1.46,1.48,1.5,1.56,39.49,37.72,36.61,35.35,34.09,32.8,31.330000000000002,29.88,26.59,24.64,24.330000000000002,24.16,23.96,23.78,23.59,23.400000000000002,23.21,22.84,N/A,N/A +2012,5,8,10,30,101260,100100,98980,84.89,0,2.6,2.72,2.73,2.74,2.74,2.74,2.74,2.73,2.73,18.080000000000002,18.19,18.2,18.23,18.25,18.28,18.35,18.41,18.64,24.5,24.17,24,23.8,23.61,23.42,23.23,23.04,22.66,N/A,N/A +2012,5,8,11,30,101240,100080,98950,84.8,0,2.65,2.7800000000000002,2.8000000000000003,2.81,2.81,2.81,2.81,2.81,2.8000000000000003,31.36,31.66,31.77,31.89,32,32.09,32.19,32.27,32.46,24.41,24.080000000000002,23.91,23.71,23.52,23.330000000000002,23.14,22.95,22.57,N/A,N/A +2012,5,8,12,30,101250,100090,98960,90.99,0,5.55,5.86,5.9,5.89,5.87,5.83,5.79,5.74,5.63,45.660000000000004,45.980000000000004,46.14,46.300000000000004,46.46,46.63,46.83,47.02,47.5,23.86,23.48,23.3,23.1,22.91,22.72,22.52,22.330000000000002,21.96,N/A,N/A +2012,5,8,13,30,101260,100100,98970,92.07000000000001,0,5.07,5.34,5.38,5.38,5.37,5.3500000000000005,5.3100000000000005,5.2700000000000005,5.18,50.7,51.550000000000004,52.09,52.65,53.19,53.71,54.29,54.83,56.1,23.53,23.13,22.95,22.75,22.56,22.37,22.18,22,21.62,N/A,N/A +2012,5,8,14,30,101300,100130,99010,91.69,0,4.45,4.63,4.65,4.64,4.62,4.6000000000000005,4.57,4.54,4.46,45.69,47.31,48.35,49.35,50.27,51.14,52.02,52.83,54.52,23.38,23,22.82,22.62,22.43,22.25,22.05,21.87,21.5,N/A,N/A +2012,5,8,15,30,101320,100150,99020,97.81,0,5.83,6.05,6.05,5.98,5.9,5.8,5.68,5.5600000000000005,5.18,36.24,36.81,37.25,37.78,38.4,39.07,40.09,41.12,46.21,22.64,22.21,22.02,21.830000000000002,21.68,21.57,21.45,21.34,21.11,N/A,N/A +2012,5,8,16,30,101340,100180,99050,93.99,0,4.25,4.42,4.43,4.42,4.39,4.36,4.32,4.28,4.13,40.09,41.27,42.1,43.02,43.99,45.01,46.38,47.74,53.19,23.11,22.72,22.54,22.35,22.17,21.990000000000002,21.81,21.64,21.31,N/A,N/A +2012,5,8,17,30,101320,100160,99030,89.72,0,4.1,4.3100000000000005,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,4.29,61.14,61.730000000000004,62.1,62.49,62.85,63.21,63.61,63.99,64.92,23.66,23.28,23.09,22.89,22.7,22.51,22.32,22.13,21.75,N/A,N/A +2012,5,8,18,30,101340,100180,99050,86.09,0,2.57,2.68,2.7,2.7,2.7,2.7,2.7,2.7,2.68,99.96000000000001,100.35000000000001,100.61,100.93,101.3,101.72,102.3,102.91,105.34,24.16,23.81,23.63,23.44,23.25,23.07,22.89,22.71,22.38,N/A,N/A +2012,5,8,19,30,101280,100120,99000,84.33,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,3,112.54,113.24000000000001,113.58,114.01,114.47,114.98,115.66,116.37,118.74000000000001,24.46,24.11,23.93,23.740000000000002,23.55,23.37,23.18,23.01,22.66,N/A,N/A +2012,5,8,20,30,101240,100080,98960,86.96000000000001,0,4.58,4.82,4.86,4.86,4.8500000000000005,4.84,4.82,4.8,4.75,143.9,144.54,144.84,145.17000000000002,145.52,145.89000000000001,146.34,146.78,148.02,24.6,24.23,24.05,23.85,23.67,23.48,23.29,23.12,22.76,N/A,N/A +2012,5,8,21,30,101220,100060,98940,86.11,0,5.11,5.42,5.47,5.48,5.48,5.48,5.47,5.45,5.42,172.12,172.45000000000002,172.61,172.84,173.1,173.4,173.8,174.22,175.83,24.84,24.5,24.330000000000002,24.13,23.95,23.76,23.57,23.39,23.04,N/A,N/A +2012,5,8,22,30,101180,100020,98900,84.74,0,4.29,4.57,4.61,4.61,4.61,4.6000000000000005,4.58,4.5600000000000005,4.51,179.36,179.62,179.74,179.88,180.02,180.18,180.38,180.59,181.25,25.03,24.72,24.55,24.35,24.16,23.97,23.78,23.6,23.23,N/A,N/A +2012,5,8,23,30,101200,100050,98930,84.73,0,4.13,4.4,4.46,4.47,4.47,4.46,4.45,4.43,4.38,196.55,196.89000000000001,197.19,197.51,197.83,198.16,198.55,198.92000000000002,199.94,25.1,24.8,24.63,24.43,24.25,24.060000000000002,23.87,23.69,23.31,N/A,N/A +2012,5,9,0,30,101210,100050,98930,86.09,0,3.84,4.09,4.14,4.15,4.15,4.15,4.14,4.13,4.1,221.25,221.57,221.73000000000002,221.94,222.16,222.42000000000002,222.76,223.12,224.3,24.98,24.68,24.52,24.32,24.13,23.94,23.75,23.57,23.2,N/A,N/A +2012,5,9,1,30,101210,100050,98930,87.11,0,3.95,4.2,4.24,4.26,4.2700000000000005,4.2700000000000005,4.2700000000000005,4.26,4.25,258.34000000000003,259.07,259.41,259.77,260.11,260.47,260.87,261.26,262.27,24.86,24.55,24.38,24.18,24,23.81,23.62,23.43,23.06,N/A,N/A +2012,5,9,2,30,101250,100090,98970,84.41,0,4.44,4.74,4.79,4.8100000000000005,4.82,4.82,4.82,4.8100000000000005,4.78,305.47,306.31,306.51,306.64,306.73,306.8,306.86,306.90000000000003,306.93,24.95,24.64,24.47,24.28,24.09,23.900000000000002,23.71,23.52,23.13,N/A,N/A +2012,5,9,3,30,101280,100120,98990,83.11,0,5.78,6.140000000000001,6.22,6.24,6.25,6.24,6.23,6.21,6.15,350.40000000000003,350.38,350.41,350.45,350.48,350.52,350.58,350.64,350.79,24.04,23.69,23.51,23.31,23.13,22.95,22.76,22.59,22.240000000000002,N/A,N/A +2012,5,9,4,30,101260,100100,98970,83.43,0,4.94,5.26,5.32,5.3500000000000005,5.37,5.39,5.43,5.48,5.84,2.69,2.89,2.99,3.1,3.22,3.35,3.5500000000000003,3.7800000000000002,5.0200000000000005,24.150000000000002,23.8,23.63,23.43,23.25,23.07,22.88,22.71,22.400000000000002,N/A,N/A +2012,5,9,5,30,101280,100120,98990,81.78,0,5.65,6.01,6.09,6.13,6.17,6.22,6.33,6.45,7.9,5.22,5.45,5.5600000000000005,5.72,5.91,6.140000000000001,6.53,6.97,9.44,23.92,23.56,23.39,23.2,23.02,22.85,22.69,22.54,22.5,N/A,N/A +2012,5,9,6,30,101310,100140,99020,81.84,0,6.6000000000000005,7.0600000000000005,7.16,7.2,7.24,7.2700000000000005,7.3100000000000005,7.36,7.65,359.81,359.83,359.87,359.93,359.99,0.07,0.18,0.29,0.77,23.990000000000002,23.62,23.45,23.25,23.06,22.88,22.7,22.52,22.2,N/A,N/A +2012,5,9,7,30,101340,100180,99040,82.21000000000001,0,7.49,8.040000000000001,8.17,8.23,8.28,8.33,8.41,8.5,9.06,0.44,0.51,0.63,0.77,0.9400000000000001,1.12,1.41,1.72,3.36,23.67,23.27,23.1,22.91,22.73,22.55,22.38,22.22,22,N/A,N/A +2012,5,9,8,30,101340,100180,99050,84.56,0,7.82,8.38,8.51,8.55,8.58,8.59,8.6,8.61,8.67,357.11,357.33,357.48,357.64,357.82,358.03000000000003,358.3,358.58,359.58,23.57,23.16,22.98,22.77,22.59,22.400000000000002,22.22,22.04,21.7,N/A,N/A +2012,5,9,9,30,101340,100180,99050,85.18,0,6.72,7.19,7.29,7.34,7.38,7.390000000000001,7.41,7.43,7.48,17.86,18.05,18.14,18.23,18.330000000000002,18.42,18.54,18.66,19.01,23.53,23.13,22.95,22.740000000000002,22.55,22.37,22.17,21.990000000000002,21.62,N/A,N/A +2012,5,9,10,30,101390,100230,99090,85.98,0,5.98,6.34,6.41,6.43,6.44,6.43,6.42,6.41,6.38,21.03,21.2,21.330000000000002,21.45,21.57,21.68,21.81,21.93,22.240000000000002,23.36,22.96,22.77,22.56,22.37,22.19,21.990000000000002,21.81,21.44,N/A,N/A +2012,5,9,11,30,101480,100310,99170,86.27,0,5.29,5.59,5.64,5.66,5.66,5.66,5.64,5.63,5.59,359.61,359.72,359.93,0.14,0.32,0.49,0.68,0.86,1.29,23.150000000000002,22.740000000000002,22.55,22.35,22.150000000000002,21.97,21.77,21.59,21.21,N/A,N/A +2012,5,9,12,30,101460,100290,99150,89.39,0,6.03,6.37,6.43,6.45,6.44,6.43,6.41,6.390000000000001,6.34,6.61,6.7700000000000005,6.9,7.05,7.2,7.36,7.5600000000000005,7.76,8.290000000000001,22.5,22.06,21.86,21.66,21.47,21.28,21.09,20.91,20.53,N/A,N/A +2012,5,9,13,30,101420,100250,99110,88.19,0,5.48,5.79,5.8500000000000005,5.87,5.87,5.88,5.88,5.87,5.88,33.88,34.31,34.47,34.660000000000004,34.84,35.03,35.26,35.480000000000004,36.07,22.580000000000002,22.150000000000002,21.96,21.76,21.57,21.38,21.19,21.01,20.64,N/A,N/A +2012,5,9,14,30,101480,100310,99180,84.51,0,6.390000000000001,6.7700000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,6.84,13.61,13.85,14.02,14.19,14.35,14.52,14.69,14.86,15.26,22.94,22.51,22.32,22.12,21.92,21.73,21.54,21.36,20.990000000000002,N/A,N/A +2012,5,9,15,30,101490,100320,99180,81.27,0,5.09,5.39,5.45,5.49,5.51,5.5200000000000005,5.53,5.54,5.55,15.83,15.91,15.88,15.84,15.82,15.8,15.780000000000001,15.76,15.73,23.13,22.73,22.54,22.330000000000002,22.14,21.95,21.75,21.57,21.19,N/A,N/A +2012,5,9,16,30,101470,100310,99170,77.89,0,2.92,3.08,3.13,3.17,3.2,3.23,3.27,3.31,3.39,22.05,21.84,21.75,21.650000000000002,21.55,21.45,21.32,21.19,20.900000000000002,23.7,23.34,23.16,22.96,22.77,22.580000000000002,22.39,22.21,21.84,N/A,N/A +2012,5,9,17,30,101460,100300,99170,76.19,0,0.51,0.54,0.56,0.5700000000000001,0.59,0.61,0.64,0.66,0.73,50.910000000000004,47.01,43.75,40.58,37.76,35.03,32.33,29.75,24.37,24.080000000000002,23.740000000000002,23.56,23.36,23.17,22.98,22.79,22.6,22.22,N/A,N/A +2012,5,9,18,30,101430,100260,99140,76.21000000000001,0,0.8,0.78,0.75,0.72,0.6900000000000001,0.66,0.62,0.59,0.52,183.65,186.43,188.04,190.1,192.35,194.89000000000001,198.44,202.11,214.86,24.310000000000002,23.96,23.78,23.580000000000002,23.39,23.2,23.02,22.830000000000002,22.47,N/A,N/A +2012,5,9,19,30,101400,100240,99110,76.03,0,1.95,1.97,1.94,1.8900000000000001,1.84,1.79,1.72,1.6500000000000001,1.43,192.99,193.84,194.51,195.43,196.5,197.78,199.79,201.93,212.86,24.580000000000002,24.22,24.05,23.85,23.67,23.48,23.3,23.12,22.78,N/A,N/A +2012,5,9,20,30,101350,100190,99060,75.42,0,3.16,3.22,3.19,3.13,3.06,2.99,2.91,2.82,2.57,170.06,170.25,170.39000000000001,170.57,170.77,171,171.34,171.71,173.31,24.78,24.43,24.25,24.05,23.86,23.68,23.490000000000002,23.31,22.95,N/A,N/A +2012,5,9,21,30,101290,100130,99010,73.89,0,4.3100000000000005,4.4,4.34,4.21,4.07,3.9,3.63,3.36,2.2800000000000002,172.81,173.09,173.38,173.76,174.25,174.84,175.96,177.14000000000001,188.07,25.04,24.71,24.55,24.36,24.19,24.02,23.85,23.7,23.45,N/A,N/A +2012,5,9,22,30,101250,100090,98970,72.2,0,4.46,4.63,4.59,4.48,4.32,4.11,3.5,2.88,1.49,154.01,153.87,153.70000000000002,153.42000000000002,152.91,152.20000000000002,149.38,146.42000000000002,136.46,25.27,24.98,24.830000000000002,24.650000000000002,24.5,24.37,24.34,24.36,24.32,N/A,N/A +2012,5,9,23,30,101250,100090,98970,74.52,0,4.51,4.71,4.69,4.63,4.57,4.51,3.64,2.74,1.9000000000000001,166.88,166.86,166.83,166.78,166.75,166.72,163.5,160.08,155.48,25.26,24.97,24.810000000000002,24.62,24.45,24.28,24.310000000000002,24.43,24.45,N/A,N/A +2012,5,10,0,30,101260,100100,98980,74.39,0,4.44,4.68,4.7,4.67,4.63,4.59,4.55,4.51,2.54,180.18,180.25,180.22,180.20000000000002,180.20000000000002,180.20000000000002,180.25,180.3,178.34,25.22,24.94,24.78,24.580000000000002,24.400000000000002,24.21,24.02,23.84,23.94,N/A,N/A +2012,5,10,1,30,101240,100080,98960,75.68,0,4.65,4.94,4.98,4.97,4.96,4.93,4.89,4.8500000000000005,4.72,184.64000000000001,184.52,184.44,184.37,184.3,184.21,184.11,184.02,183.72,25.11,24.810000000000002,24.650000000000002,24.45,24.26,24.080000000000002,23.89,23.71,23.35,N/A,N/A +2012,5,10,2,30,101280,100120,99000,74.24,0,3.36,3.5100000000000002,3.52,3.49,3.46,3.42,3.36,3.3000000000000003,2.92,192.72,192.17000000000002,191.8,191.36,190.87,190.31,189.36,188.33,177.6,25.16,24.87,24.71,24.52,24.34,24.16,23.98,23.81,23.6,N/A,N/A +2012,5,10,3,30,101270,100110,98990,73.92,0,1.57,1.6,1.59,1.56,1.54,1.5,1.45,1.3900000000000001,1.01,198.37,197.56,197.03,196.44,195.83,195.18,194.27,193.38,172.76,25.080000000000002,24.79,24.62,24.43,24.25,24.07,23.89,23.72,23.51,N/A,N/A +2012,5,10,4,30,101270,100110,98990,73.60000000000001,0,0.64,0.64,0.62,0.6,0.5700000000000001,0.54,0.64,0.8200000000000001,1.98,286.16,289.99,293.11,297.96,306.69,318.52,340.41,10.66,42.03,25.060000000000002,24.77,24.62,24.43,24.27,24.11,24,23.91,23.85,N/A,N/A +2012,5,10,5,30,101270,100110,98990,74.44,0,1.72,1.79,1.8,1.79,1.79,1.79,1.79,1.78,1.77,335.99,337.49,338.36,339.3,340.19,341.07,342.05,343.01,346.04,25.03,24.72,24.560000000000002,24.36,24.18,23.990000000000002,23.79,23.61,23.240000000000002,N/A,N/A +2012,5,10,6,30,101280,100120,98990,73.11,0,2.61,2.7600000000000002,2.8000000000000003,2.82,2.84,2.86,2.89,2.91,2.97,15.02,16.12,16.77,17.47,18.17,18.89,19.73,20.55,22.650000000000002,25.150000000000002,24.84,24.67,24.47,24.28,24.1,23.91,23.73,23.36,N/A,N/A +2012,5,10,7,30,101290,100130,99010,75.38,0,3.75,3.99,4.05,4.08,4.11,4.13,4.14,4.16,4.18,41.47,41.83,41.96,42.1,42.230000000000004,42.35,42.49,42.62,42.92,25.13,24.8,24.63,24.43,24.240000000000002,24.05,23.85,23.67,23.28,N/A,N/A +2012,5,10,8,30,101250,100090,98970,73.99,0,4.54,4.86,4.93,4.97,5,5.0200000000000005,5.04,5.0600000000000005,5.09,62.25,62.59,62.81,63,63.2,63.39,63.6,63.79,64.24,25.18,24.85,24.68,24.48,24.29,24.1,23.91,23.72,23.34,N/A,N/A +2012,5,10,9,30,101270,100110,98990,71.25,0,6.28,6.82,6.97,7.05,7.11,7.16,7.2,7.23,7.28,80.83,81.11,81.24,81.36,81.47,81.58,81.68,81.77,81.97,25.43,25.12,24.94,24.75,24.560000000000002,24.37,24.17,23.990000000000002,23.6,N/A,N/A +2012,5,10,10,30,101270,100110,98980,70.82000000000001,0,7.640000000000001,8.3,8.46,8.53,8.58,8.6,8.620000000000001,8.620000000000001,8.620000000000001,84.9,85.04,85.14,85.24,85.33,85.42,85.5,85.57000000000001,85.72,25.490000000000002,25.18,25.01,24.8,24.61,24.43,24.23,24.04,23.66,N/A,N/A +2012,5,10,11,30,101280,100120,99000,71.99,0,7.96,8.65,8.8,8.88,8.94,8.97,8.98,8.99,9,87,87.27,87.4,87.54,87.66,87.78,87.9,88.01,88.23,25.240000000000002,24.900000000000002,24.73,24.53,24.330000000000002,24.14,23.95,23.76,23.37,N/A,N/A +2012,5,10,12,30,101280,100120,99000,73.60000000000001,0,7.15,7.7700000000000005,7.92,8,8.06,8.1,8.13,8.15,8.18,89.69,90.08,90.3,90.53,90.73,90.93,91.12,91.3,91.68,25.2,24.86,24.69,24.490000000000002,24.29,24.1,23.91,23.72,23.34,N/A,N/A +2012,5,10,13,30,101310,100150,99030,72.13,0,7.68,8.36,8.540000000000001,8.63,8.700000000000001,8.74,8.78,8.8,8.84,96.41,96.7,96.85000000000001,97,97.13,97.25,97.38,97.5,97.73,25.32,24.990000000000002,24.82,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A +2012,5,10,14,30,101300,100150,99020,74.02,0,7.94,8.64,8.81,8.91,8.97,9.01,9.040000000000001,9.06,9.09,100.33,100.58,100.78,100.97,101.14,101.3,101.46000000000001,101.61,101.91,25.310000000000002,24.97,24.8,24.6,24.41,24.22,24.02,23.830000000000002,23.45,N/A,N/A +2012,5,10,15,30,101320,100160,99030,72.18,0,7.03,7.61,7.75,7.8100000000000005,7.86,7.890000000000001,7.9,7.91,7.92,115.35000000000001,115.05,114.9,114.76,114.61,114.48,114.34,114.22,113.96000000000001,25.44,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A +2012,5,10,16,30,101320,100160,99040,73.89,0,7.01,7.59,7.72,7.79,7.83,7.86,7.88,7.890000000000001,7.9,109.56,109.64,109.69,109.72,109.74000000000001,109.75,109.76,109.77,109.78,25.39,25.060000000000002,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A +2012,5,10,17,30,101280,100130,99000,74.76,0,6.73,7.29,7.43,7.51,7.57,7.61,7.640000000000001,7.66,7.69,108.67,109.23,109.51,109.72,109.89,110.03,110.15,110.26,110.43,25.42,25.080000000000002,24.91,24.71,24.52,24.330000000000002,24.13,23.94,23.56,N/A,N/A +2012,5,10,18,30,101310,100150,99030,74.98,0,7.32,7.94,8.08,8.15,8.2,8.23,8.25,8.27,8.28,111.12,111.26,111.4,111.56,111.72,111.89,112.06,112.22,112.56,25.39,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.91,23.53,N/A,N/A +2012,5,10,19,30,101250,100100,98970,78.32000000000001,0,6.92,7.55,7.71,7.8,7.86,7.9,7.930000000000001,7.95,7.97,109.77,110.01,110.03,110.03,110.01,109.99000000000001,109.96000000000001,109.93,109.86,25.36,25.02,24.85,24.650000000000002,24.46,24.26,24.07,23.88,23.490000000000002,N/A,N/A +2012,5,10,20,30,101160,100000,98880,76.73,0,8.92,9.75,9.96,10.07,10.14,10.18,10.21,10.22,10.24,110.81,111,111.16,111.31,111.43,111.55,111.66,111.76,111.97,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.81,23.43,N/A,N/A +2012,5,10,21,30,101130,99980,98860,78.26,0,8.05,8.8,8.99,9.1,9.18,9.24,9.28,9.31,9.36,117.21000000000001,117.33,117.4,117.47,117.54,117.60000000000001,117.65,117.7,117.81,25.44,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A +2012,5,10,22,30,101030,99880,98760,81.18,0,8.69,9.52,9.73,9.85,9.93,9.98,10.03,10.06,10.11,110.04,110.28,110.43,110.57000000000001,110.7,110.83,110.95,111.08,111.33,25.400000000000002,25.060000000000002,24.89,24.68,24.490000000000002,24.3,24.11,23.92,23.54,N/A,N/A +2012,5,10,23,30,101030,99880,98760,82.74,0,9.56,10.49,10.75,10.89,10.98,11.040000000000001,11.08,11.11,11.13,114.4,114.37,114.35000000000001,114.3,114.26,114.2,114.14,114.09,113.96000000000001,25.37,25.04,24.86,24.650000000000002,24.46,24.27,24.07,23.89,23.5,N/A,N/A +2012,5,11,0,30,101010,99860,98740,83.82000000000001,0,8.4,9.23,9.47,9.61,9.71,9.8,9.86,9.92,10.01,122.79,122.89,122.89,122.88,122.87,122.86,122.85000000000001,122.84,122.81,25.330000000000002,25,24.830000000000002,24.62,24.43,24.240000000000002,24.05,23.86,23.48,N/A,N/A +2012,5,11,1,30,101000,99850,98730,82.92,0,8.05,8.81,9.040000000000001,9.16,9.25,9.3,9.34,9.38,9.41,119.53,119.23,119.24000000000001,119.31,119.38,119.46000000000001,119.56,119.67,119.91,25.580000000000002,25.26,25.1,24.89,24.71,24.51,24.32,24.13,23.75,N/A,N/A +2012,5,11,2,30,100980,99830,98710,82.78,0,9.040000000000001,9.870000000000001,10.07,10.17,10.24,10.290000000000001,10.32,10.34,10.38,126.28,126.33,126.42,126.49000000000001,126.57000000000001,126.64,126.72,126.8,127.04,25.61,25.29,25.12,24.93,24.740000000000002,24.560000000000002,24.37,24.19,23.830000000000002,N/A,N/A +2012,5,11,3,30,100960,99810,98690,83,0,9.88,10.950000000000001,11.22,11.38,11.49,11.57,11.620000000000001,11.66,11.72,131.92000000000002,132.15,132.27,132.38,132.48,132.56,132.64000000000001,132.71,132.86,25.68,25.36,25.18,24.98,24.79,24.61,24.41,24.22,23.84,N/A,N/A +2012,5,11,4,30,100930,99780,98660,83.94,0,9.56,10.540000000000001,10.790000000000001,10.93,11.03,11.1,11.14,11.18,11.22,134.97,135.03,135.04,135.04,135.04,135.03,135.02,135.01,134.99,25.6,25.28,25.11,24.91,24.72,24.53,24.34,24.150000000000002,23.78,N/A,N/A +2012,5,11,5,30,100980,99830,98710,85.58,0,7.79,8.66,8.91,9.08,9.21,9.31,9.38,9.450000000000001,9.56,159.96,159.70000000000002,159.53,159.4,159.3,159.21,159.14000000000001,159.08,159,25.67,25.36,25.2,25,24.82,24.63,24.44,24.26,23.88,N/A,N/A +2012,5,11,6,30,100960,99810,98700,82.41,0,8.3,9.11,9.31,9.42,9.5,9.55,9.59,9.61,9.63,153.01,153.18,153.24,153.29,153.32,153.35,153.37,153.39000000000001,153.42000000000002,25.67,25.38,25.21,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.89,N/A,N/A +2012,5,11,7,30,100980,99820,98700,85.64,85,6.19,7.05,7.21,7.34,7.43,7.51,7.5600000000000005,7.6000000000000005,7.65,154.57,155,154.70000000000002,154.45000000000002,154.15,153.89000000000001,153.61,153.35,152.8,25.04,24.73,24.53,24.36,24.150000000000002,23.97,23.78,23.59,23.22,N/A,N/A +2012,5,11,8,30,101070,99900,98760,88.84,2.2,6.41,6.49,6.390000000000001,6.19,5.96,5.69,5.3,4.92,3.93,37.87,38.47,38.95,39.62,40.49,41.59,43.92,46.37,55.34,21.830000000000002,21.38,21.2,21.03,20.88,20.75,20.66,20.59,20.69,N/A,N/A +2012,5,11,9,30,101050,99890,98760,89.76,0,5,5.1000000000000005,5.04,4.93,4.65,4.25,4,3.8200000000000003,3.52,63.870000000000005,64.67,65.44,66.99,76.60000000000001,92.41,101.83,108.28,120.91,22.73,22.35,22.19,22.03,22.12,22.42,22.6,22.72,22.54,N/A,N/A +2012,5,11,10,30,101030,99870,98740,85.92,0,6.6000000000000005,6.96,6.98,6.93,6.87,6.8,6.7,6.6000000000000005,6.32,97.11,97.9,98.23,98.68,99.19,99.76,100.63,101.52,105.83,23.64,23.23,23.05,22.85,22.67,22.490000000000002,22.3,22.14,21.81,N/A,N/A +2012,5,11,11,30,101010,99850,98730,88.10000000000001,0,6.04,6.36,6.36,6.3100000000000005,6.25,6.17,6.07,5.97,5.7,106.64,108.83,110.14,111.56,112.93,114.33,115.89,117.41,122.09,24.2,23.82,23.64,23.44,23.25,23.06,22.86,22.68,22.3,N/A,N/A +2012,5,11,12,30,101070,99910,98800,83.92,0.7000000000000001,6.96,7.59,7.73,7.8,7.8500000000000005,7.87,7.890000000000001,7.9,7.9,174.11,173.91,173.86,173.84,173.82,173.81,173.81,173.82,173.86,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.52,24.32,24.14,23.76,N/A,N/A +2012,5,11,13,30,101130,99970,98860,82.94,0,7.8,8.55,8.73,8.84,8.9,8.950000000000001,8.98,9,9.03,174.41,174.16,174.17000000000002,174.16,174.13,174.11,174.08,174.05,173.97,25.67,25.37,25.2,25.01,24.82,24.63,24.44,24.25,23.88,N/A,N/A +2012,5,11,14,30,101210,100060,98940,82.76,0,7.26,7.91,8.07,8.15,8.2,8.23,8.25,8.26,8.27,166.74,166.98,167.1,167.18,167.24,167.3,167.35,167.39000000000001,167.45000000000002,25.71,25.42,25.26,25.060000000000002,24.87,24.68,24.490000000000002,24.310000000000002,23.93,N/A,N/A +2012,5,11,15,30,101260,100110,98990,81.88,0,7.7,8.46,8.66,8.78,8.870000000000001,8.93,8.98,9.01,9.07,170.88,170.93,170.93,170.93,170.94,170.94,170.94,170.94,170.95000000000002,25.740000000000002,25.44,25.28,25.080000000000002,24.900000000000002,24.71,24.52,24.330000000000002,23.95,N/A,N/A +2012,5,11,16,30,101270,100110,98990,84.06,0,7.82,8.57,8.76,8.86,8.93,8.97,9,9.02,9.040000000000001,162.9,162.8,162.84,162.9,162.97,163.04,163.12,163.20000000000002,163.38,25.62,25.310000000000002,25.14,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A +2012,5,11,17,30,101280,100120,99000,83.88,0,7.3500000000000005,8.07,8.25,8.36,8.44,8.5,8.540000000000001,8.58,8.63,168.24,168.58,168.72,168.84,168.94,169.02,169.09,169.15,169.26,25.7,25.400000000000002,25.23,25.03,24.85,24.66,24.46,24.28,23.900000000000002,N/A,N/A +2012,5,11,18,30,101300,100140,99020,83.04,0,8.370000000000001,9.21,9.42,9.53,9.620000000000001,9.67,9.71,9.74,9.77,172.56,172.49,172.51,172.53,172.57,172.61,172.65,172.69,172.79,25.76,25.46,25.3,25.1,24.91,24.72,24.53,24.35,23.97,N/A,N/A +2012,5,11,19,30,101330,100180,99060,81.21000000000001,0,8.6,9.47,9.68,9.790000000000001,9.870000000000001,9.92,9.950000000000001,9.97,9.99,173.02,173.1,173.19,173.28,173.36,173.44,173.52,173.61,173.78,25.84,25.55,25.39,25.19,25.01,24.82,24.62,24.44,24.060000000000002,N/A,N/A +2012,5,11,20,30,101260,100100,98980,80.48,0,8.36,9.23,9.46,9.59,9.69,9.76,9.81,9.85,9.9,171.8,171.92000000000002,172,172.05,172.1,172.13,172.16,172.19,172.22,25.900000000000002,25.62,25.46,25.27,25.080000000000002,24.900000000000002,24.7,24.52,24.14,N/A,N/A +2012,5,11,21,30,101220,100070,98950,81.86,0,8.870000000000001,9.77,10.02,10.15,10.24,10.3,10.35,10.38,10.41,168.22,168.36,168.45000000000002,168.52,168.6,168.66,168.72,168.77,168.87,25.82,25.54,25.38,25.18,25,24.810000000000002,24.62,24.43,24.060000000000002,N/A,N/A +2012,5,11,22,30,101160,100010,98890,81.95,0,9.27,10.25,10.5,10.64,10.75,10.82,10.86,10.9,10.94,167.87,168,168.07,168.15,168.21,168.27,168.33,168.39000000000001,168.5,25.8,25.52,25.36,25.17,24.990000000000002,24.8,24.61,24.43,24.05,N/A,N/A +2012,5,11,23,30,101160,100010,98890,81.02,0,10.01,11.1,11.4,11.58,11.700000000000001,11.790000000000001,11.85,11.9,11.950000000000001,171.48,171.66,171.74,171.83,171.9,171.97,172.04,172.11,172.23,25.830000000000002,25.57,25.41,25.22,25.04,24.85,24.66,24.47,24.1,N/A,N/A +2012,5,12,0,30,101180,100030,98910,76.01,0,7.99,8.81,9.040000000000001,9.18,9.28,9.35,9.41,9.450000000000001,9.52,177.21,177.21,177.21,177.18,177.14000000000001,177.09,177.04,177,176.89000000000001,25.97,25.72,25.560000000000002,25.37,25.19,25.01,24.82,24.64,24.27,N/A,N/A +2012,5,12,1,30,101210,100050,98940,80.94,0,7.5600000000000005,8.36,8.59,8.74,8.84,8.92,8.98,9.03,9.09,162.36,162.59,162.77,162.91,163.03,163.12,163.21,163.28,163.42000000000002,25.86,25.6,25.45,25.26,25.080000000000002,24.89,24.7,24.51,24.14,N/A,N/A +2012,5,12,2,30,101350,100200,99080,79.45,0,5.86,6.48,6.66,6.78,6.88,6.95,7.01,7.07,7.140000000000001,170.53,170.51,170.51,170.52,170.55,170.57,170.61,170.63,170.71,25.990000000000002,25.73,25.57,25.38,25.2,25.01,24.82,24.63,24.25,N/A,N/A +2012,5,12,3,30,101360,100210,99090,81.05,0,6.12,6.640000000000001,6.75,6.8100000000000005,6.8500000000000005,6.87,6.890000000000001,6.91,6.93,182.56,183,183.16,183.29,183.4,183.5,183.58,183.65,183.76,25.900000000000002,25.63,25.48,25.28,25.1,24.92,24.73,24.54,24.17,N/A,N/A +2012,5,12,4,30,101420,100270,99150,79.98,0.4,6.7,7.32,7.46,7.54,7.58,7.61,7.63,7.640000000000001,7.640000000000001,212.21,211.84,211.71,211.67000000000002,211.65,211.67000000000002,211.71,211.76,211.89000000000001,26.01,25.76,25.6,25.400000000000002,25.22,25.04,24.85,24.66,24.29,N/A,N/A +2012,5,12,5,30,101350,100170,99030,89.82000000000001,200,9.82,10.32,10.35,10.31,10.25,10.19,10.1,9.99,9.5,15.88,12.4,10.85,9.120000000000001,7.11,5.17,2.62,0.19,354.28000000000003,21.23,20.69,20.5,20.330000000000002,20.17,20.02,19.88,19.76,19.56,N/A,N/A +2012,5,12,6,30,101400,100230,99090,83.35000000000001,0,1.75,1.86,1.9100000000000001,1.96,2.0100000000000002,2.05,2.82,4.08,5.51,192.1,191.68,191.78,191.89000000000001,192.31,192.96,191.67000000000002,189.31,184.58,22.53,22.16,21.990000000000002,21.79,21.6,21.400000000000002,21.56,21.79,22.47,N/A,N/A +2012,5,12,7,30,101510,100340,99210,83.96000000000001,0,2.11,2.14,2.13,2.11,2.08,2.06,2.04,2.0300000000000002,2.56,120.72,121.63,122.47,123.53,124.8,126.24000000000001,129.49,133.07,158.36,22.93,22.56,22.38,22.19,22,21.81,21.63,21.47,21.47,N/A,N/A +2012,5,12,8,30,101520,100350,99220,84.35000000000001,0,0.6900000000000001,0.67,0.64,0.6,0.5700000000000001,0.52,0.81,1.49,2.36,64.38,66.35,68.54,71.67,77.9,86.42,110.13,157.99,166.57,23.29,22.95,22.78,22.59,22.41,22.240000000000002,22.23,22.29,22.45,N/A,N/A +2012,5,12,9,30,101530,100370,99240,84.39,0,0.99,0.97,0.9400000000000001,0.9,0.86,0.81,1,1.3800000000000001,2.13,66.06,68.53,70.62,74,80.98,91.05,114.57000000000001,150.93,169.33,23.6,23.26,23.09,22.91,22.73,22.57,22.51,22.490000000000002,22.44,N/A,N/A +2012,5,12,10,30,101580,100410,99280,85.28,0,1.58,1.6,1.58,1.55,1.51,1.46,1.33,1.19,0.8300000000000001,42.31,42.46,42.58,42.800000000000004,43.18,43.7,46.300000000000004,49.21,146.85,23.740000000000002,23.41,23.240000000000002,23.04,22.85,22.67,22.490000000000002,22.330000000000002,22.25,N/A,N/A +2012,5,12,11,30,101580,100420,99290,85.8,0,0.26,0.27,0.28,0.3,0.35000000000000003,0.43,0.6,0.86,2.13,105.94,117.28,125.41,135.5,145.19,155.91,164.9,175.06,186.22,23.88,23.55,23.38,23.19,23.01,22.84,22.68,22.53,22.56,N/A,N/A +2012,5,12,12,30,101680,100520,99380,86.02,0,1.31,1.33,1.31,1.29,1.27,1.25,1.22,1.19,1.09,6.16,5.68,5.42,5.13,4.83,4.5,4.13,3.7600000000000002,2.43,24.07,23.740000000000002,23.56,23.36,23.17,22.98,22.79,22.61,22.23,N/A,N/A +2012,5,12,13,30,101700,100530,99400,85.68,0,3.23,3.31,3.29,3.25,3.21,3.16,3.11,3.0500000000000003,2.93,317.19,317.15000000000003,317.1,317.03000000000003,316.96,316.89,316.79,316.7,316.42,24.05,23.71,23.53,23.330000000000002,23.14,22.95,22.75,22.57,22.19,N/A,N/A +2012,5,12,14,30,101760,100590,99460,85.36,0,2.38,2.4,2.38,2.34,2.3000000000000003,2.2600000000000002,2.2,2.15,2,300.94,300.5,300.25,299.95,299.63,299.27,298.79,298.3,296.64,23.900000000000002,23.55,23.38,23.18,22.990000000000002,22.8,22.61,22.42,22.05,N/A,N/A +2012,5,12,15,30,101750,100590,99450,85.39,0,1.79,1.82,1.82,1.8,1.79,1.77,1.77,1.77,2.04,275.29,274.38,273.68,272.77,271.71,270.45,268.24,265.77,252.76000000000002,23.990000000000002,23.650000000000002,23.48,23.29,23.1,22.92,22.740000000000002,22.57,22.34,N/A,N/A +2012,5,12,16,30,101740,100580,99450,84.76,0,2.29,2.4,2.42,2.42,2.43,2.44,2.44,2.44,2.46,300.45,300.57,300.63,300.75,300.90000000000003,301.08,301.34000000000003,301.62,302.43,24.25,23.91,23.740000000000002,23.54,23.35,23.17,22.98,22.8,22.44,N/A,N/A +2012,5,12,17,30,101760,100600,99470,77.38,0,2.83,2.87,2.84,2.8000000000000003,2.7600000000000002,2.72,2.67,2.63,2.5300000000000002,344.02,344.12,344.09000000000003,344.03000000000003,343.98,343.94,343.89,343.83,343.69,24.47,24.11,23.93,23.73,23.53,23.34,23.14,22.96,22.57,N/A,N/A +2012,5,12,18,30,101740,100570,99440,74.23,0,0.74,0.74,0.72,0.7000000000000001,0.68,0.66,0.64,0.61,0.56,58.67,58.660000000000004,58.5,58.26,57.99,57.67,57.19,56.68,54.81,24.64,24.29,24.12,23.92,23.72,23.53,23.34,23.16,22.78,N/A,N/A +2012,5,12,19,30,101720,100560,99430,73.86,0,1.28,1.29,1.27,1.24,1.22,1.19,1.1500000000000001,1.12,1.03,124.26,124.19,123.87,123.48,123.03,122.53,121.85000000000001,121.18,118.83,24.85,24.5,24.32,24.12,23.93,23.740000000000002,23.55,23.37,23,N/A,N/A +2012,5,12,20,30,101690,100530,99400,75.60000000000001,0,3.15,3.23,3.2,3.14,3.08,3.0100000000000002,2.9,2.7800000000000002,2.19,160.6,160.87,160.99,161.14000000000001,161.33,161.55,161.9,162.27,164.1,25.05,24.7,24.53,24.330000000000002,24.16,23.97,23.8,23.63,23.36,N/A,N/A +2012,5,12,21,30,101660,100500,99370,76.62,0,3.5300000000000002,3.64,3.62,3.58,3.52,3.46,3.37,3.2800000000000002,2.99,165.57,165.82,165.96,166.13,166.29,166.46,166.67000000000002,166.88,167.47,25.240000000000002,24.900000000000002,24.73,24.54,24.36,24.17,23.990000000000002,23.81,23.47,N/A,N/A +2012,5,12,22,30,101640,100480,99350,74.38,0,3.7,3.84,3.83,3.7800000000000002,3.73,3.67,3.6,3.5300000000000002,3.31,193.78,194.54,195.04,195.66,196.34,197.1,198.13,199.19,203.08,25.46,25.150000000000002,24.98,24.79,24.6,24.42,24.240000000000002,24.060000000000002,23.72,N/A,N/A +2012,5,12,23,30,101650,100490,99370,75.91,0,4.42,4.68,4.68,4.64,4.59,4.53,4.45,4.37,4.21,198.12,198.47,198.74,199.14000000000001,199.54,199.98000000000002,200.49,201,202.08,25.44,25.150000000000002,24.990000000000002,24.79,24.61,24.42,24.22,24.03,23.64,N/A,N/A +2012,5,13,0,30,101620,100460,99330,76.47,0,4.74,5.0200000000000005,5.04,5.01,4.97,4.92,4.8500000000000005,4.76,4.32,213.87,214.29,214.49,214.73000000000002,215,215.31,215.82,216.39000000000001,220.4,25.3,25.02,24.86,24.67,24.490000000000002,24.310000000000002,24.13,23.96,23.68,N/A,N/A +2012,5,13,1,30,101630,100470,99340,78.71000000000001,0,5.39,5.64,5.59,5.44,5.2,4.86,4.45,4.07,3.96,235.88,236.47,237.06,238.20000000000002,240.93,245.17000000000002,254.43,264.6,275.67,25.17,24.900000000000002,24.76,24.61,24.5,24.44,24.400000000000002,24.37,24.09,N/A,N/A +2012,5,13,2,30,101710,100540,99420,80.18,0,4.9,5.29,5.39,5.48,5.55,5.62,5.69,5.76,5.9,280.95,283.85,285.6,287.58,289.41,291.24,293.04,294.73,297.40000000000003,25.12,24.830000000000002,24.67,24.48,24.29,24.11,23.92,23.740000000000002,23.36,N/A,N/A +2012,5,13,3,30,101750,100590,99460,79.28,0,5.03,5.33,5.3500000000000005,5.32,5.28,5.23,5.18,5.13,5.2700000000000005,282.19,282.98,283.61,284.6,285.95,287.64,295.63,305.57,315.31,25.22,24.95,24.8,24.62,24.46,24.32,24.34,24.43,24.310000000000002,N/A,N/A +2012,5,13,4,30,101760,100600,99470,68.79,0,3.94,4.16,4.17,4.16,4.14,4.13,4.11,4.1,4.1,358.99,359.06,359.17,359.29,359.40000000000003,359.51,359.68,359.85,0.44,25.36,25.09,24.94,24.75,24.57,24.39,24.2,24.03,23.67,N/A,N/A +2012,5,13,5,30,101780,100620,99490,71.11,0,4.04,4.32,4.3500000000000005,4.36,4.36,4.36,4.3500000000000005,4.34,4.3100000000000005,345.40000000000003,345.59000000000003,345.72,345.88,346.02,346.18,346.39,346.59000000000003,347.07,25,24.7,24.54,24.34,24.16,23.97,23.78,23.6,23.23,N/A,N/A +2012,5,13,6,30,101820,100650,99510,78.3,0,5.32,5.63,5.69,5.71,5.71,5.71,5.71,5.7,5.69,15.860000000000001,15.84,15.82,15.8,15.790000000000001,15.780000000000001,15.77,15.76,15.69,23.76,23.39,23.22,23.02,22.830000000000002,22.64,22.45,22.28,21.91,N/A,N/A +2012,5,13,7,30,101840,100670,99540,78.98,0,5.39,5.7,5.75,5.76,5.75,5.74,5.72,5.69,5.64,15.84,15.91,15.88,15.84,15.790000000000001,15.73,15.66,15.58,15.33,23.71,23.34,23.16,22.96,22.78,22.59,22.400000000000002,22.22,21.86,N/A,N/A +2012,5,13,8,30,101820,100650,99520,79.31,0,5.47,5.7700000000000005,5.8100000000000005,5.8100000000000005,5.8,5.79,5.76,5.73,5.67,19.92,20.07,20.13,20.18,20.22,20.25,20.25,20.25,20.18,23.6,23.21,23.03,22.84,22.650000000000002,22.46,22.27,22.09,21.72,N/A,N/A +2012,5,13,9,30,101850,100680,99540,82.14,0,5.68,6.01,6.0600000000000005,6.08,6.08,6.07,6.05,6.03,5.98,20,20.04,20.07,20.080000000000002,20.09,20.11,20.09,20.080000000000002,19.98,23.02,22.62,22.43,22.23,22.04,21.85,21.66,21.48,21.11,N/A,N/A +2012,5,13,10,30,101880,100710,99560,84.01,0,5.99,6.3100000000000005,6.34,6.33,6.3100000000000005,6.2700000000000005,6.23,6.18,6.0600000000000005,23.98,24.13,24.21,24.29,24.34,24.400000000000002,24.45,24.490000000000002,24.560000000000002,22.53,22.1,21.91,21.7,21.51,21.32,21.13,20.95,20.57,N/A,N/A +2012,5,13,11,30,101920,100740,99590,86.59,0,6.12,6.45,6.5,6.5,6.49,6.47,6.45,6.41,6.34,22.94,22.93,22.92,22.91,22.900000000000002,22.87,22.85,22.82,22.740000000000002,22.01,21.55,21.35,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A +2012,5,13,12,30,101950,100760,99620,84.79,0,6.87,7.2700000000000005,7.34,7.3500000000000005,7.34,7.32,7.3,7.2700000000000005,7.18,24.060000000000002,24.12,24.17,24.2,24.22,24.240000000000002,24.25,24.26,24.25,21.650000000000002,21.16,20.95,20.740000000000002,20.54,20.35,20.16,19.98,19.6,N/A,N/A +2012,5,13,13,30,101980,100800,99650,82.01,0,6.76,7.15,7.22,7.24,7.24,7.23,7.21,7.19,7.12,19.1,19.17,19.2,19.240000000000002,19.26,19.28,19.29,19.3,19.29,21.62,21.13,20.93,20.72,20.52,20.330000000000002,20.13,19.95,19.580000000000002,N/A,N/A +2012,5,13,14,30,102000,100820,99670,79.94,0,5.8,6.12,6.18,6.21,6.22,6.22,6.22,6.21,6.2,9.9,9.89,9.92,9.93,9.950000000000001,9.950000000000001,9.950000000000001,9.94,9.9,21.75,21.28,21.09,20.88,20.68,20.490000000000002,20.3,20.12,19.740000000000002,N/A,N/A +2012,5,13,15,30,102020,100840,99690,75.42,0,4.72,5,5.07,5.11,5.15,5.17,5.19,5.21,5.24,5.78,5.33,5.0600000000000005,4.8100000000000005,4.57,4.3500000000000005,4.12,3.91,3.49,22.32,21.89,21.69,21.48,21.28,21.09,20.89,20.71,20.31,N/A,N/A +2012,5,13,16,30,102010,100830,99690,72.36,0,4.41,4.66,4.72,4.75,4.78,4.79,4.8,4.82,4.83,350.19,350.74,351.06,351.35,351.62,351.87,352.12,352.35,352.82,22.79,22.38,22.19,21.98,21.78,21.59,21.39,21.21,20.81,N/A,N/A +2012,5,13,17,30,101980,100800,99660,71.36,0,4.13,4.37,4.42,4.46,4.48,4.5,4.51,4.53,4.55,336.01,336.49,336.87,337.22,337.55,337.86,338.17,338.46,339.05,23.28,22.89,22.7,22.5,22.3,22.11,21.91,21.72,21.330000000000002,N/A,N/A +2012,5,13,18,30,101950,100770,99630,67.39,0,4.34,4.6000000000000005,4.65,4.69,4.71,4.73,4.74,4.75,4.7700000000000005,319.92,320.65000000000003,321.1,321.55,321.95,322.33,322.72,323.07,323.83,23.69,23.31,23.13,22.93,22.73,22.54,22.34,22.16,21.77,N/A,N/A +2012,5,13,19,30,101910,100740,99610,64.82000000000001,0,5.13,5.44,5.5,5.5200000000000005,5.54,5.54,5.54,5.54,5.5200000000000005,309.69,310.42,310.91,311.37,311.79,312.18,312.58,312.94,313.7,24.21,23.86,23.68,23.48,23.29,23.09,22.900000000000002,22.71,22.330000000000002,N/A,N/A +2012,5,13,20,30,101850,100670,99540,65.71000000000001,0,5.67,6.04,6.1000000000000005,6.13,6.13,6.140000000000001,6.13,6.12,6.09,306.29,306.91,307.3,307.69,308.06,308.42,308.81,309.18,310.04,24.44,24.1,23.92,23.73,23.54,23.36,23.17,22.990000000000002,22.62,N/A,N/A +2012,5,13,21,30,101810,100640,99510,65.13,0,5.43,5.8100000000000005,5.88,5.91,5.91,5.91,5.91,5.9,5.86,309.94,310.55,310.91,311.26,311.57,311.88,312.19,312.49,313.16,24.810000000000002,24.5,24.330000000000002,24.13,23.94,23.76,23.56,23.38,23.01,N/A,N/A +2012,5,13,22,30,101760,100590,99460,64.58,0,5.3100000000000005,5.76,5.8500000000000005,5.9,5.93,5.95,5.96,5.97,5.98,310.85,311.65000000000003,312.18,312.71,313.2,313.66,314.14,314.59000000000003,315.58,25.23,24.95,24.79,24.6,24.42,24.23,24.04,23.87,23.5,N/A,N/A +2012,5,13,23,30,101720,100550,99420,64.49,0,5.5200000000000005,6,6.09,6.140000000000001,6.18,6.2,6.23,6.25,6.3100000000000005,306.93,307.8,308.34000000000003,308.90000000000003,309.43,309.96,310.55,311.13,312.6,25.48,25.23,25.080000000000002,24.89,24.71,24.53,24.35,24.17,23.82,N/A,N/A +2012,5,14,0,30,101710,100550,99420,64.89,0,5.86,6.4,6.53,6.6000000000000005,6.65,6.69,6.72,6.75,6.8,323.6,324.22,324.61,324.99,325.35,325.69,326.06,326.41,327.16,25.76,25.53,25.39,25.2,25.02,24.84,24.650000000000002,24.48,24.11,N/A,N/A +2012,5,14,1,30,101700,100540,99410,66.73,0,5.47,5.97,6.09,6.16,6.21,6.26,6.3,6.3500000000000005,6.49,330.45,331.11,331.51,331.96,332.42,332.92,333.51,334.1,335.87,25.69,25.47,25.32,25.14,24.96,24.79,24.61,24.44,24.1,N/A,N/A +2012,5,14,2,30,101710,100550,99420,64.55,0,5.2700000000000005,5.66,5.73,5.75,5.76,5.7700000000000005,5.7700000000000005,5.76,5.75,6.03,7.16,7.71,8.22,8.700000000000001,9.14,9.59,10.01,10.9,25.87,25.650000000000002,25.5,25.310000000000002,25.14,24.96,24.77,24.59,24.22,N/A,N/A +2012,5,14,3,30,101740,100570,99450,66.62,0,5.71,6.23,6.36,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,27.990000000000002,27.84,27.740000000000002,27.650000000000002,27.580000000000002,27.52,27.46,27.400000000000002,27.3,25.51,25.25,25.09,24.900000000000002,24.71,24.53,24.34,24.16,23.78,N/A,N/A +2012,5,14,4,30,101720,100560,99430,65.33,0,5.09,5.5200000000000005,5.61,5.66,5.7,5.72,5.74,5.75,5.76,27.900000000000002,28.11,28.23,28.310000000000002,28.38,28.43,28.47,28.490000000000002,28.5,25.36,25.09,24.93,24.740000000000002,24.55,24.37,24.18,24,23.62,N/A,N/A +2012,5,14,5,30,101700,100540,99410,65.34,0,4.72,5.08,5.15,5.18,5.2,5.21,5.22,5.22,5.21,36.95,36.46,36.160000000000004,35.85,35.58,35.32,35.06,34.83,34.36,25.25,24.97,24.810000000000002,24.61,24.43,24.240000000000002,24.05,23.87,23.48,N/A,N/A +2012,5,14,6,30,101730,100560,99430,64.94,0,4.09,4.39,4.44,4.47,4.49,4.5,4.51,4.5200000000000005,4.53,53.18,52.85,52.64,52.43,52.25,52.07,51.870000000000005,51.7,51.32,25.16,24.87,24.7,24.51,24.32,24.13,23.94,23.75,23.37,N/A,N/A +2012,5,14,7,30,101720,100550,99420,66.22,0,3.72,3.95,3.99,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,50.38,50.370000000000005,50.35,50.31,50.28,50.24,50.19,50.15,50.04,25.02,24.72,24.55,24.35,24.16,23.97,23.78,23.6,23.21,N/A,N/A +2012,5,14,8,30,101700,100530,99400,66.09,0,3.87,4.12,4.17,4.19,4.2,4.21,4.22,4.22,4.23,44.21,44.050000000000004,43.96,43.86,43.75,43.660000000000004,43.550000000000004,43.45,43.22,24.92,24.61,24.44,24.25,24.060000000000002,23.87,23.67,23.490000000000002,23.1,N/A,N/A +2012,5,14,9,30,101710,100540,99410,67.95,0,3.61,3.8000000000000003,3.83,3.83,3.83,3.8200000000000003,3.81,3.8000000000000003,3.7800000000000002,42.82,42.86,42.89,42.9,42.9,42.89,42.88,42.86,42.800000000000004,24.76,24.44,24.28,24.080000000000002,23.89,23.7,23.5,23.32,22.94,N/A,N/A +2012,5,14,10,30,101730,100560,99430,68.55,0,3.59,3.79,3.83,3.85,3.86,3.87,3.87,3.87,3.87,48.97,48.92,48.89,48.85,48.800000000000004,48.75,48.7,48.660000000000004,48.54,24.59,24.27,24.1,23.900000000000002,23.71,23.52,23.32,23.14,22.75,N/A,N/A +2012,5,14,11,30,101760,100590,99460,67.71000000000001,0,2.87,3.02,3.0500000000000003,3.06,3.0700000000000003,3.0700000000000003,3.0700000000000003,3.08,3.08,45.75,45.56,45.46,45.35,45.25,45.160000000000004,45.04,44.92,44.68,24.580000000000002,24.26,24.09,23.89,23.7,23.51,23.31,23.13,22.740000000000002,N/A,N/A +2012,5,14,12,30,101780,100610,99470,67.58,0,3.04,3.18,3.2,3.21,3.21,3.21,3.21,3.21,3.2,43.9,43.75,43.69,43.62,43.550000000000004,43.5,43.42,43.36,43.22,24.5,24.17,24,23.8,23.61,23.42,23.23,23.04,22.66,N/A,N/A +2012,5,14,13,30,101800,100640,99500,68.21000000000001,0,2.77,2.91,2.94,2.95,2.96,2.96,2.97,2.97,2.97,37.27,37.38,37.44,37.49,37.53,37.58,37.62,37.660000000000004,37.74,24.46,24.13,23.96,23.76,23.56,23.38,23.18,22.990000000000002,22.61,N/A,N/A +2012,5,14,14,30,101830,100660,99530,69.37,0,3.16,3.29,3.3000000000000003,3.29,3.29,3.27,3.2600000000000002,3.25,3.23,18.22,18.52,18.75,18.96,19.16,19.34,19.53,19.7,20.07,24.38,24.05,23.87,23.67,23.490000000000002,23.3,23.1,22.92,22.54,N/A,N/A +2012,5,14,15,30,101840,100670,99530,68.43,0,3.04,3.17,3.18,3.17,3.17,3.16,3.15,3.13,3.11,12.85,13.07,13.18,13.3,13.43,13.55,13.68,13.8,14.11,24.34,23.990000000000002,23.82,23.63,23.44,23.25,23.06,22.87,22.490000000000002,N/A,N/A +2012,5,14,16,30,101830,100660,99530,66.23,0,2.52,2.63,2.65,2.66,2.67,2.67,2.68,2.68,2.69,46.480000000000004,46.51,46.43,46.35,46.27,46.2,46.13,46.06,45.92,24.44,24.1,23.92,23.73,23.54,23.35,23.150000000000002,22.97,22.59,N/A,N/A +2012,5,14,17,30,101790,100620,99490,63.72,0,1.77,1.81,1.81,1.8,1.79,1.78,1.76,1.75,1.72,93.64,93.07000000000001,92.62,92.16,91.71000000000001,91.26,90.76,90.29,89.19,24.560000000000002,24.22,24.04,23.85,23.650000000000002,23.47,23.27,23.09,22.71,N/A,N/A +2012,5,14,18,30,101760,100600,99460,62.97,0,1.73,1.75,1.73,1.71,1.69,1.6600000000000001,1.6400000000000001,1.61,1.56,129.16,129.05,128.92000000000002,128.79,128.65,128.51,128.35,128.19,127.76,24.650000000000002,24.3,24.13,23.92,23.740000000000002,23.55,23.35,23.17,22.78,N/A,N/A +2012,5,14,19,30,101730,100570,99430,61.86,0,2.07,2.1,2.07,2.04,2.0100000000000002,1.98,1.94,1.9100000000000001,1.84,149.18,149.39000000000001,149.48,149.59,149.70000000000002,149.79,149.92000000000002,150.05,150.34,24.77,24.42,24.25,24.04,23.85,23.67,23.47,23.28,22.900000000000002,N/A,N/A +2012,5,14,20,30,101650,100490,99350,63.370000000000005,0,3.89,4.05,4.05,4.03,4.01,3.99,3.96,3.92,3.86,144.8,144.75,144.76,144.76,144.77,144.76,144.75,144.75,144.73,24.77,24.41,24.23,24.03,23.84,23.650000000000002,23.45,23.27,22.88,N/A,N/A +2012,5,14,21,30,101600,100440,99310,64.32000000000001,0,4.72,4.97,4.99,4.98,4.97,4.95,4.93,4.9,4.83,146.87,146.98,147.02,147.06,147.09,147.12,147.14000000000001,147.17000000000002,147.18,24.71,24.37,24.19,23.990000000000002,23.8,23.62,23.42,23.240000000000002,22.85,N/A,N/A +2012,5,14,22,30,101550,100390,99260,63.870000000000005,0,4.6000000000000005,4.8500000000000005,4.87,4.87,4.8500000000000005,4.83,4.8,4.7700000000000005,4.7,156,156.01,156,155.99,155.97,155.94,155.91,155.88,155.8,24.650000000000002,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.38,23.2,22.82,N/A,N/A +2012,5,14,23,30,101540,100370,99240,64.01,0,4.69,4.94,4.96,4.95,4.93,4.9,4.86,4.82,4.71,157.34,157.27,157.22,157.15,157.07,156.99,156.86,156.73,156.3,24.64,24.32,24.150000000000002,23.95,23.77,23.580000000000002,23.39,23.21,22.84,N/A,N/A +2012,5,15,0,30,101500,100330,99200,62.79,0,4.71,4.98,5.01,5.01,4.99,4.98,4.95,4.92,4.8500000000000005,163.17000000000002,163.04,162.98,162.91,162.82,162.73,162.61,162.48,162.06,24.67,24.35,24.18,23.98,23.8,23.61,23.42,23.240000000000002,22.87,N/A,N/A +2012,5,15,1,30,101480,100310,99180,64.8,0,4.9,5.19,5.23,5.24,5.23,5.21,5.19,5.16,5.09,164.67000000000002,164.6,164.5,164.4,164.29,164.18,164.03,163.87,163.42000000000002,24.59,24.26,24.09,23.900000000000002,23.71,23.53,23.330000000000002,23.16,22.78,N/A,N/A +2012,5,15,2,30,101500,100340,99210,65.75,0,4.46,4.7,4.74,4.74,4.73,4.72,4.69,4.67,4.61,169.57,169.31,169.15,168.98,168.79,168.6,168.37,168.15,167.49,24.560000000000002,24.23,24.060000000000002,23.87,23.68,23.490000000000002,23.3,23.12,22.75,N/A,N/A +2012,5,15,3,30,101530,100360,99230,65.73,0,4.21,4.43,4.46,4.45,4.44,4.42,4.4,4.38,4.3100000000000005,174.97,174.81,174.71,174.59,174.47,174.34,174.18,174.02,173.51,24.57,24.25,24.080000000000002,23.89,23.7,23.51,23.32,23.14,22.76,N/A,N/A +2012,5,15,4,30,101520,100350,99220,65.6,0,3.61,3.7800000000000002,3.8000000000000003,3.8000000000000003,3.79,3.7800000000000002,3.75,3.74,3.68,172.52,172.3,172.14000000000001,171.95000000000002,171.74,171.52,171.23,170.94,169.91,24.57,24.25,24.080000000000002,23.89,23.7,23.52,23.330000000000002,23.150000000000002,22.79,N/A,N/A +2012,5,15,5,30,101520,100360,99220,65.17,0,3.97,4.17,4.2,4.2,4.19,4.18,4.16,4.14,4.09,166.12,166.05,165.96,165.87,165.76,165.66,165.52,165.38,164.96,24.57,24.240000000000002,24.07,23.87,23.69,23.5,23.31,23.13,22.75,N/A,N/A +2012,5,15,6,30,101520,100350,99220,64.73,0,3.31,3.45,3.47,3.47,3.46,3.45,3.43,3.42,3.37,177.45000000000002,177.29,177.12,176.92000000000002,176.71,176.51,176.24,175.98,175.22,24.57,24.25,24.07,23.88,23.69,23.5,23.31,23.13,22.75,N/A,N/A +2012,5,15,7,30,101560,100390,99260,63.09,0,2.65,2.7600000000000002,2.77,2.77,2.7600000000000002,2.7600000000000002,2.75,2.73,2.71,178.61,178.43,178.20000000000002,177.96,177.71,177.47,177.18,176.9,176.13,24.650000000000002,24.330000000000002,24.16,23.96,23.78,23.59,23.39,23.21,22.830000000000002,N/A,N/A +2012,5,15,8,30,101560,100390,99260,64.43,0,2.2600000000000002,2.34,2.34,2.34,2.33,2.32,2.3000000000000003,2.29,2.2600000000000002,177.35,177.07,176.87,176.67000000000002,176.45000000000002,176.23,175.96,175.69,174.98,24.6,24.27,24.1,23.91,23.71,23.53,23.330000000000002,23.150000000000002,22.77,N/A,N/A +2012,5,15,9,30,101570,100400,99270,64.86,0,1.68,1.73,1.72,1.72,1.71,1.69,1.68,1.67,1.6400000000000001,198.23000000000002,197.88,197.70000000000002,197.52,197.3,197.07,196.82,196.57,195.87,24.560000000000002,24.23,24.07,23.87,23.68,23.490000000000002,23.29,23.11,22.73,N/A,N/A +2012,5,15,10,30,101600,100430,99300,65.06,0,1.2,1.22,1.21,1.2,1.19,1.18,1.16,1.1500000000000001,1.12,217.01,217.24,217.32,217.37,217.43,217.48000000000002,217.51,217.54,217.56,24.55,24.22,24.05,23.85,23.66,23.48,23.28,23.09,22.71,N/A,N/A +2012,5,15,11,30,101610,100450,99310,65.22,0,1.3,1.32,1.32,1.31,1.3,1.29,1.28,1.26,1.24,220.11,220.22,220.38,220.51,220.62,220.71,220.8,220.89000000000001,221.01,24.54,24.21,24.04,23.85,23.650000000000002,23.46,23.27,23.080000000000002,22.7,N/A,N/A +2012,5,15,12,30,101630,100460,99330,65.44,0,0.74,0.76,0.76,0.76,0.76,0.76,0.76,0.75,0.75,287.04,288.38,289.28000000000003,290.2,291.06,291.89,292.7,293.44,295.23,24.53,24.2,24.03,23.830000000000002,23.64,23.45,23.25,23.07,22.68,N/A,N/A +2012,5,15,13,30,101650,100480,99350,65.92,0,0.74,0.78,0.78,0.78,0.79,0.79,0.79,0.79,0.8,306.36,307.14,307.76,308.34000000000003,308.88,309.43,309.94,310.40000000000003,311.36,24.560000000000002,24.23,24.060000000000002,23.86,23.67,23.48,23.28,23.09,22.71,N/A,N/A +2012,5,15,14,30,101690,100520,99390,65.72,0,1.51,1.57,1.58,1.59,1.6,1.61,1.61,1.61,1.62,318.29,318.74,318.83,318.92,319.01,319.12,319.21,319.28000000000003,319.53000000000003,24.64,24.310000000000002,24.14,23.94,23.75,23.56,23.36,23.18,22.79,N/A,N/A +2012,5,15,15,30,101710,100550,99410,69.64,0,3.04,3.13,3.12,3.09,3.0700000000000003,3.04,3.0100000000000002,2.98,2.92,336.75,336.57,336.43,336.31,336.2,336.1,336.01,335.93,335.8,24.47,24.13,23.95,23.75,23.56,23.37,23.17,22.990000000000002,22.6,N/A,N/A +2012,5,15,16,30,101710,100550,99410,75.48,0,3.97,4.13,4.13,4.11,4.09,4.07,4.03,4.01,3.94,326.44,327.42,327.97,328.5,328.98,329.42,329.88,330.3,331.16,24.41,24.05,23.87,23.67,23.47,23.28,23.080000000000002,22.900000000000002,22.51,N/A,N/A +2012,5,15,17,30,101690,100520,99390,71.56,0,2.62,2.71,2.71,2.7,2.69,2.67,2.65,2.63,2.59,329.68,329.89,330.03000000000003,330.18,330.33,330.48,330.64,330.8,331.17,24.51,24.150000000000002,23.97,23.77,23.580000000000002,23.38,23.19,23,22.62,N/A,N/A +2012,5,15,18,30,101670,100510,99380,68.31,0,2.2,2.31,2.32,2.33,2.33,2.34,2.34,2.34,2.34,328.64,328.92,329.05,329.17,329.28000000000003,329.40000000000003,329.52,329.64,329.91,24.82,24.47,24.29,24.09,23.89,23.71,23.51,23.32,22.94,N/A,N/A +2012,5,15,19,30,101670,100500,99370,69.71000000000001,0,3.71,3.9,3.94,3.95,3.96,3.96,3.96,3.96,3.94,324.16,323.86,323.7,323.54,323.38,323.22,323.06,322.90000000000003,322.54,24.79,24.43,24.25,24.05,23.86,23.67,23.47,23.29,22.900000000000002,N/A,N/A +2012,5,15,20,30,101660,100490,99350,82.69,0.4,7.1000000000000005,7.54,7.62,7.640000000000001,7.65,7.640000000000001,7.63,7.61,7.5600000000000005,329.08,329.94,330.3,330.62,330.91,331.17,331.42,331.64,332.09000000000003,23.2,22.77,22.57,22.36,22.16,21.97,21.76,21.580000000000002,21.19,N/A,N/A +2012,5,15,21,30,101590,100410,99280,80.81,0,4.7,4.92,4.95,4.95,4.94,4.93,4.91,4.89,4.8500000000000005,355.90000000000003,355.40000000000003,355.08,354.69,354.21,353.69,352.92,352.17,349.26,22.66,22.23,22.05,21.85,21.66,21.47,21.28,21.11,20.76,N/A,N/A +2012,5,15,22,30,101590,100420,99280,75.16,0,4.38,4.63,4.68,4.7,4.72,4.73,4.74,4.75,4.76,340.82,340.47,340.25,339.99,339.72,339.45,339.13,338.82,337.96,23.27,22.87,22.69,22.490000000000002,22.3,22.11,21.92,21.740000000000002,21.36,N/A,N/A +2012,5,15,23,30,101580,100410,99280,77.11,0,4.82,5.12,5.18,5.21,5.23,5.25,5.26,5.26,5.2700000000000005,343.64,343.5,343.47,343.42,343.36,343.31,343.24,343.17,342.99,23.45,23.05,22.86,22.66,22.47,22.28,22.080000000000002,21.900000000000002,21.52,N/A,N/A +2012,5,16,0,30,101600,100430,99290,72.78,0,6.46,6.890000000000001,6.98,7.01,7.0200000000000005,7.0200000000000005,7.0200000000000005,7.01,6.98,343.56,343.99,344.22,344.44,344.65000000000003,344.85,345.06,345.26,345.66,23.66,23.26,23.07,22.87,22.67,22.48,22.29,22.1,21.72,N/A,N/A +2012,5,16,1,30,101580,100410,99280,75.3,0,7.08,7.5600000000000005,7.65,7.67,7.68,7.68,7.66,7.640000000000001,7.59,5.59,5.36,5.08,4.78,4.49,4.21,3.92,3.64,3.0300000000000002,23.44,23.02,22.830000000000002,22.62,22.42,22.23,22.03,21.85,21.46,N/A,N/A +2012,5,16,2,30,101660,100480,99340,79.05,0,8.64,9.28,9.42,9.47,9.5,9.51,9.51,9.51,9.49,10.870000000000001,11.17,11.32,11.48,11.63,11.77,11.93,12.07,12.41,22.55,22.06,21.86,21.650000000000002,21.45,21.26,21.06,20.88,20.490000000000002,N/A,N/A +2012,5,16,3,30,101670,100490,99350,83.64,0,8.4,9.01,9.15,9.21,9.25,9.27,9.28,9.3,9.33,9.99,10.040000000000001,10.13,10.21,10.290000000000001,10.36,10.450000000000001,10.540000000000001,10.77,21.97,21.47,21.26,21.06,20.86,20.67,20.490000000000002,20.31,19.95,N/A,N/A +2012,5,16,4,30,101650,100470,99320,86.61,0,7.78,8.290000000000001,8.39,8.43,8.45,8.46,8.47,8.47,8.52,7.8500000000000005,8.08,8.18,8.27,8.370000000000001,8.46,8.56,8.66,8.92,21.75,21.25,21.04,20.84,20.66,20.48,20.29,20.13,19.8,N/A,N/A +2012,5,16,5,30,101630,100450,99310,86.86,0,7.82,8.33,8.43,8.47,8.48,8.48,8.47,8.46,8.44,16.43,16.76,16.91,17.07,17.23,17.39,17.580000000000002,17.76,18.3,21.67,21.16,20.96,20.75,20.56,20.37,20.18,20,19.64,N/A,N/A +2012,5,16,6,30,101660,100480,99340,87.73,0,7.48,7.98,8.08,8.120000000000001,8.14,8.15,8.15,8.15,8.15,30.47,30.67,30.8,30.94,31.080000000000002,31.2,31.36,31.5,31.89,21.66,21.16,20.95,20.740000000000002,20.54,20.35,20.16,19.98,19.6,N/A,N/A +2012,5,16,7,30,101670,100490,99340,86.69,0,6.6000000000000005,7.01,7.08,7.11,7.13,7.140000000000001,7.140000000000001,7.13,7.140000000000001,32.13,32.44,32.62,32.81,33,33.18,33.39,33.59,34.12,21.86,21.38,21.18,20.97,20.78,20.59,20.400000000000002,20.22,19.85,N/A,N/A +2012,5,16,8,30,101660,100490,99350,86.3,0,5.65,5.96,6.01,6.0200000000000005,6.03,6.0200000000000005,6.0200000000000005,6.01,6,32.31,32.67,32.9,33.15,33.4,33.65,33.93,34.21,34.94,21.97,21.52,21.32,21.12,20.92,20.740000000000002,20.55,20.37,20,N/A,N/A +2012,5,16,9,30,101650,100480,99340,83.54,0,5.08,5.3500000000000005,5.39,5.4,5.41,5.41,5.41,5.41,5.45,27.11,27.29,27.37,27.47,27.57,27.66,27.79,27.91,28.3,22.3,21.87,21.68,21.48,21.29,21.12,20.93,20.76,20.43,N/A,N/A +2012,5,16,10,30,101670,100490,99350,81.51,0,4.72,4.97,5.01,5.0200000000000005,5.03,5.03,5.0200000000000005,5.0200000000000005,5.01,32.97,32.83,32.75,32.65,32.55,32.45,32.33,32.21,31.89,22.650000000000002,22.23,22.04,21.84,21.650000000000002,21.46,21.26,21.080000000000002,20.71,N/A,N/A +2012,5,16,11,30,101700,100530,99390,82.74,0,6.75,7.16,7.22,7.23,7.23,7.21,7.19,7.16,7.09,24.03,24.42,24.71,25.02,25.3,25.57,25.85,26.12,26.72,22.54,22.080000000000002,21.88,21.67,21.47,21.28,21.080000000000002,20.900000000000002,20.51,N/A,N/A +2012,5,16,12,30,101710,100530,99390,86.43,0,7.34,7.8100000000000005,7.890000000000001,7.92,7.930000000000001,7.930000000000001,7.92,7.91,7.88,23.26,23.34,23.42,23.51,23.580000000000002,23.66,23.75,23.84,24.060000000000002,21.55,21.04,20.830000000000002,20.62,20.42,20.23,20.04,19.86,19.48,N/A,N/A +2012,5,16,13,30,101720,100530,99390,85.23,0,6.32,6.67,6.73,6.74,6.74,6.74,6.72,6.71,6.68,24.6,24.75,24.85,24.95,25.060000000000002,25.150000000000002,25.27,25.38,25.68,21.45,20.96,20.76,20.55,20.36,20.17,19.98,19.8,19.43,N/A,N/A +2012,5,16,14,30,101730,100550,99410,82.97,0,5.3,5.59,5.64,5.66,5.66,5.67,5.66,5.66,5.66,21.5,21.830000000000002,22.03,22.240000000000002,22.45,22.650000000000002,22.88,23.1,23.68,21.88,21.43,21.23,21.03,20.830000000000002,20.650000000000002,20.45,20.28,19.91,N/A,N/A +2012,5,16,15,30,101750,100570,99430,81.60000000000001,0,3.7,3.88,3.91,3.92,3.92,3.93,3.93,3.94,3.95,22.8,22.95,23.09,23.240000000000002,23.400000000000002,23.56,23.75,23.93,24.51,22.32,21.900000000000002,21.71,21.51,21.32,21.14,20.94,20.76,20.39,N/A,N/A +2012,5,16,16,30,101720,100550,99410,75.51,0,2.73,2.87,2.9,2.93,2.95,2.96,2.98,3,3.0500000000000003,7.0600000000000005,7.41,7.61,7.82,8.02,8.22,8.45,8.68,9.25,23.06,22.67,22.490000000000002,22.29,22.1,21.91,21.72,21.54,21.16,N/A,N/A +2012,5,16,17,30,101700,100530,99390,74.15,0,1.61,1.69,1.72,1.74,1.76,1.79,1.82,1.85,1.95,329.02,329.72,330.34000000000003,330.97,331.58,332.19,332.90000000000003,333.57,335.31,23.46,23.080000000000002,22.900000000000002,22.71,22.52,22.34,22.150000000000002,21.97,21.61,N/A,N/A +2012,5,16,18,30,101660,100490,99350,72.28,0,2.15,2.2600000000000002,2.29,2.31,2.33,2.34,2.36,2.37,2.41,270.75,272.27,273.25,274.22,275.12,276,276.93,277.81,279.86,24.060000000000002,23.68,23.5,23.31,23.11,22.92,22.73,22.55,22.16,N/A,N/A +2012,5,16,19,30,101630,100460,99330,68.27,0,3.3000000000000003,3.52,3.58,3.62,3.66,3.69,3.72,3.75,3.8200000000000003,329.93,330.06,330.25,330.43,330.61,330.78000000000003,330.96,331.14,331.56,24.7,24.34,24.16,23.96,23.78,23.59,23.400000000000002,23.22,22.84,N/A,N/A +2012,5,16,20,30,101570,100400,99270,67.91,0,5.26,5.57,5.61,5.61,5.61,5.6000000000000005,5.59,5.59,5.36,358.03000000000003,357.93,357.84000000000003,357.72,357.5,357.2,356.45,355.62,352.5,24.38,24.04,23.88,23.71,23.56,23.42,23.330000000000002,23.26,23,N/A,N/A +2012,5,16,21,30,101560,100390,99260,65.54,0,5.58,5.83,5.83,5.78,5.72,5.65,5.5600000000000005,5.48,5.24,19.13,19.28,19.27,19.26,19.22,19.17,19.080000000000002,18.990000000000002,18.52,24.740000000000002,24.41,24.240000000000002,24.060000000000002,23.87,23.7,23.52,23.34,23.01,N/A,N/A +2012,5,16,22,30,101540,100370,99240,66.61,0,4.79,5.08,5.12,5.13,5.13,5.12,5.11,5.09,5.01,30.32,29.78,29.48,29.13,28.740000000000002,28.330000000000002,27.69,27.07,23.64,24.75,24.43,24.26,24.080000000000002,23.900000000000002,23.740000000000002,23.57,23.42,23.2,N/A,N/A +2012,5,16,23,30,101540,100380,99250,65.87,0,3.06,3.23,3.2600000000000002,3.2800000000000002,3.29,3.31,3.3200000000000003,3.33,3.39,18.16,18.06,18.12,18.17,18.23,18.28,18.31,18.34,17.94,24.810000000000002,24.5,24.32,24.14,23.95,23.77,23.59,23.41,23.080000000000002,N/A,N/A +2012,5,17,0,30,101550,100390,99260,67.51,0,3.13,3.3000000000000003,3.33,3.33,3.33,3.33,3.33,3.3200000000000003,3.31,3.89,3.36,3.09,2.77,2.45,2.13,1.77,1.43,0.62,24.990000000000002,24.68,24.51,24.310000000000002,24.12,23.93,23.740000000000002,23.55,23.17,N/A,N/A +2012,5,17,1,30,101520,100360,99230,69.16,0,4.3100000000000005,4.57,4.6000000000000005,4.61,4.6000000000000005,4.59,4.57,4.5600000000000005,4.51,307.85,308.44,308.87,309.32,309.76,310.19,310.66,311.1,312.1,24.96,24.64,24.47,24.28,24.09,23.900000000000002,23.71,23.53,23.14,N/A,N/A +2012,5,17,2,30,101550,100390,99260,70.85000000000001,0,2.89,3.02,3.0300000000000002,3.0300000000000002,3.02,3.0100000000000002,3,2.98,2.95,329.69,331.06,331.7,332.36,332.98,333.59000000000003,334.24,334.85,336.22,24.82,24.5,24.32,24.13,23.94,23.75,23.55,23.37,22.98,N/A,N/A +2012,5,17,3,30,101580,100410,99280,69.72,0,1.96,2.02,2.02,2.0100000000000002,2,1.98,1.97,1.96,1.93,350.57,351.16,351.5,351.84000000000003,352.19,352.55,352.97,353.36,354.37,24.75,24.43,24.25,24.060000000000002,23.87,23.68,23.490000000000002,23.31,22.93,N/A,N/A +2012,5,17,4,30,101560,100400,99270,69.51,0,2.7600000000000002,2.89,2.9,2.9,2.9,2.9,2.89,2.89,2.88,350.77,351.19,351.35,351.52,351.69,351.85,352.03000000000003,352.2,352.62,24.73,24.400000000000002,24.23,24.04,23.85,23.66,23.47,23.29,22.91,N/A,N/A +2012,5,17,5,30,101590,100420,99290,72.43,0,4.17,4.4,4.43,4.43,4.43,4.42,4.4,4.39,4.3500000000000005,17.16,17.13,17.02,16.91,16.82,16.73,16.66,16.580000000000002,16.46,24.64,24.3,24.13,23.93,23.740000000000002,23.55,23.35,23.17,22.78,N/A,N/A +2012,5,17,6,30,101570,100400,99270,67.88,0,2.85,2.97,2.97,2.96,2.95,2.93,2.91,2.9,2.86,1.44,1.86,2.08,2.34,2.62,2.91,3.27,3.61,4.65,24.62,24.3,24.13,23.94,23.75,23.56,23.37,23.19,22.82,N/A,N/A +2012,5,17,7,30,101590,100430,99290,66.64,0,1.99,2.04,2.04,2.0100000000000002,1.99,1.97,1.94,1.9100000000000001,1.83,357.5,358.04,358.42,358.83,359.27,359.73,0.33,0.9,2.79,24.59,24.27,24.09,23.900000000000002,23.71,23.52,23.330000000000002,23.14,22.76,N/A,N/A +2012,5,17,8,30,101590,100420,99290,67.71000000000001,0,1.96,2.02,2.0100000000000002,2,1.99,1.97,1.95,1.93,1.8800000000000001,7.34,7.84,8.040000000000001,8.26,8.53,8.82,9.19,9.55,10.61,24.54,24.22,24.05,23.85,23.66,23.48,23.28,23.1,22.71,N/A,N/A +2012,5,17,9,30,101580,100410,99280,70.59,0,1.72,1.77,1.78,1.77,1.77,1.76,1.76,1.75,1.74,9.950000000000001,10.53,10.98,11.43,11.88,12.32,12.84,13.34,14.67,24.43,24.11,23.94,23.740000000000002,23.55,23.36,23.17,22.990000000000002,22.61,N/A,N/A +2012,5,17,10,30,101590,100420,99290,74.62,0,2.08,2.18,2.19,2.2,2.21,2.21,2.22,2.22,2.24,12.48,13.39,13.870000000000001,14.35,14.82,15.26,15.75,16.22,17.34,24.36,24.03,23.85,23.66,23.47,23.28,23.09,22.91,22.52,N/A,N/A +2012,5,17,11,30,101600,100430,99300,74.69,0,1.61,1.68,1.69,1.69,1.69,1.7,1.7,1.7,1.7,39.5,39.47,39.43,39.4,39.35,39.300000000000004,39.27,39.24,39.160000000000004,24.400000000000002,24.07,23.900000000000002,23.7,23.51,23.32,23.13,22.94,22.55,N/A,N/A +2012,5,17,12,30,101620,100450,99320,74.47,0,1.84,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9000000000000001,23.900000000000002,24.25,24.43,24.62,24.810000000000002,24.990000000000002,25.19,25.38,25.79,24.39,24.07,23.89,23.7,23.5,23.32,23.12,22.94,22.55,N/A,N/A +2012,5,17,13,30,101630,100470,99340,75.2,0,2.8000000000000003,2.92,2.93,2.93,2.92,2.91,2.91,2.9,2.88,16.86,17.2,17.38,17.55,17.73,17.89,18.080000000000002,18.26,18.68,24.330000000000002,23.990000000000002,23.82,23.63,23.44,23.25,23.05,22.87,22.490000000000002,N/A,N/A +2012,5,17,14,30,101650,100490,99350,73.5,0,3.21,3.36,3.38,3.37,3.37,3.36,3.35,3.34,3.31,20.79,21.07,21.240000000000002,21.400000000000002,21.57,21.740000000000002,21.93,22.11,22.61,24.36,24.02,23.85,23.650000000000002,23.46,23.27,23.080000000000002,22.900000000000002,22.52,N/A,N/A +2012,5,17,15,30,101660,100490,99360,71.14,0,3.4,3.5700000000000003,3.59,3.6,3.6,3.59,3.59,3.58,3.5700000000000003,27.38,27.62,27.75,27.88,28.02,28.150000000000002,28.310000000000002,28.46,28.87,24.400000000000002,24.060000000000002,23.89,23.69,23.5,23.31,23.12,22.94,22.56,N/A,N/A +2012,5,17,16,30,101670,100500,99370,70.69,0,2.99,3.12,3.14,3.15,3.15,3.14,3.14,3.14,3.14,45.25,45.47,45.57,45.69,45.800000000000004,45.910000000000004,46.050000000000004,46.19,46.54,24.51,24.16,23.990000000000002,23.79,23.6,23.42,23.22,23.04,22.67,N/A,N/A +2012,5,17,17,30,101640,100470,99340,70.81,0,2.63,2.7600000000000002,2.77,2.7800000000000002,2.79,2.8000000000000003,2.8000000000000003,2.81,2.85,73.02,73.09,73.01,72.91,72.82000000000001,72.73,72.60000000000001,72.47,72.03,24.650000000000002,24.3,24.13,23.93,23.75,23.57,23.38,23.21,22.86,N/A,N/A +2012,5,17,18,30,101600,100440,99310,71.63,0,2.59,2.69,2.69,2.69,2.68,2.68,2.67,2.66,2.66,115.84,115.63,115.43,115.2,114.95,114.7,114.33,113.96000000000001,112.59,24.75,24.400000000000002,24.23,24.04,23.85,23.67,23.490000000000002,23.31,22.98,N/A,N/A +2012,5,17,19,30,101590,100420,99290,74.47,0,4.43,4.67,4.69,4.7,4.69,4.68,4.67,4.66,4.63,150.17000000000002,150.08,149.98,149.88,149.77,149.65,149.5,149.35,148.76,24.86,24.51,24.34,24.14,23.96,23.78,23.59,23.42,23.080000000000002,N/A,N/A +2012,5,17,20,30,101530,100360,99240,75.63,0,3.97,4.19,4.22,4.23,4.23,4.22,4.21,4.21,4.18,164.57,164.38,164.22,164.05,163.89000000000001,163.73,163.51,163.29,162.65,24.95,24.61,24.44,24.240000000000002,24.060000000000002,23.88,23.69,23.51,23.16,N/A,N/A +2012,5,17,21,30,101510,100340,99220,74.51,0,3.5500000000000003,3.74,3.77,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.74,179.81,179.63,179.51,179.36,179.23,179.08,178.91,178.74,178.32,25.12,24.78,24.61,24.42,24.23,24.04,23.85,23.67,23.3,N/A,N/A +2012,5,17,22,30,101470,100310,99180,71.60000000000001,0,3.6,3.8000000000000003,3.83,3.84,3.85,3.84,3.84,3.83,3.8200000000000003,183.4,183.22,183.1,182.97,182.85,182.71,182.57,182.42000000000002,182.04,25.240000000000002,24.92,24.75,24.560000000000002,24.37,24.19,23.990000000000002,23.81,23.44,N/A,N/A +2012,5,17,23,30,101440,100280,99150,71.84,0,4.3,4.58,4.62,4.64,4.64,4.63,4.62,4.61,4.58,184.86,184.68,184.58,184.47,184.35,184.23,184.08,183.94,183.55,25.19,24.89,24.72,24.53,24.34,24.16,23.96,23.78,23.41,N/A,N/A +2012,5,18,0,30,101430,100260,99140,73.94,0,4.2700000000000005,4.55,4.6000000000000005,4.61,4.61,4.61,4.61,4.6000000000000005,4.57,182.53,182.36,182.27,182.16,182.06,181.94,181.81,181.69,181.35,25.01,24.7,24.54,24.34,24.150000000000002,23.97,23.77,23.59,23.21,N/A,N/A +2012,5,18,1,30,101380,100220,99090,74.96000000000001,0,4.14,4.38,4.41,4.42,4.41,4.4,4.39,4.37,4.32,186.34,186.36,186.36,186.36,186.36,186.36,186.34,186.33,186.26,24.830000000000002,24.52,24.35,24.16,23.97,23.78,23.59,23.41,23.04,N/A,N/A +2012,5,18,2,30,101400,100240,99110,75.23,0,4.41,4.67,4.71,4.72,4.71,4.7,4.69,4.67,4.62,187.87,187.86,187.81,187.76,187.71,187.66,187.6,187.54,187.33,24.77,24.46,24.28,24.09,23.900000000000002,23.71,23.52,23.34,22.97,N/A,N/A +2012,5,18,3,30,101410,100250,99120,76.26,0,4.28,4.54,4.58,4.59,4.59,4.59,4.58,4.57,4.53,191.81,191.76,191.73000000000002,191.71,191.67000000000002,191.62,191.56,191.5,191.29,24.7,24.38,24.21,24.01,23.82,23.64,23.45,23.27,22.89,N/A,N/A +2012,5,18,4,30,101410,100250,99120,76.81,0,4.55,4.82,4.86,4.87,4.87,4.86,4.8500000000000005,4.83,4.79,188.89000000000001,188.84,188.81,188.76,188.71,188.65,188.58,188.5,188.28,24.63,24.3,24.13,23.93,23.75,23.56,23.37,23.2,22.830000000000002,N/A,N/A +2012,5,18,5,30,101410,100250,99120,75.08,0,4.34,4.6000000000000005,4.64,4.66,4.66,4.66,4.65,4.64,4.62,191.42000000000002,191.42000000000002,191.42000000000002,191.4,191.39000000000001,191.36,191.33,191.31,191.16,24.62,24.29,24.12,23.93,23.740000000000002,23.56,23.37,23.19,22.830000000000002,N/A,N/A +2012,5,18,6,30,101430,100270,99140,74.89,0,3.96,4.2,4.24,4.25,4.26,4.26,4.25,4.25,4.23,193.89000000000001,193.85,193.84,193.84,193.82,193.79,193.76,193.72,193.59,24.59,24.27,24.1,23.91,23.73,23.54,23.35,23.17,22.8,N/A,N/A +2012,5,18,7,30,101450,100280,99150,76.21000000000001,0,3.91,4.13,4.16,4.17,4.17,4.16,4.15,4.14,4.1,204.73000000000002,204.75,204.71,204.68,204.64000000000001,204.59,204.54,204.49,204.32,24.48,24.16,23.990000000000002,23.8,23.62,23.43,23.240000000000002,23.07,22.71,N/A,N/A +2012,5,18,8,30,101450,100290,99160,74.47,0,3.8000000000000003,4.01,4.04,4.05,4.05,4.04,4.03,4.0200000000000005,3.98,204.71,204.65,204.61,204.56,204.51,204.45000000000002,204.38,204.31,204.09,24.490000000000002,24.17,24,23.81,23.62,23.44,23.240000000000002,23.06,22.7,N/A,N/A +2012,5,18,9,30,101430,100270,99140,74.06,0,3.42,3.6,3.63,3.63,3.63,3.63,3.63,3.62,3.6,207.62,207.45000000000002,207.36,207.25,207.15,207.04,206.91,206.79,206.4,24.45,24.13,23.96,23.77,23.580000000000002,23.400000000000002,23.2,23.02,22.66,N/A,N/A +2012,5,18,10,30,101450,100280,99150,72.34,0,2.7800000000000002,2.92,2.94,2.95,2.95,2.95,2.95,2.94,2.93,203.83,203.73000000000002,203.64000000000001,203.54,203.43,203.31,203.17000000000002,203.03,202.62,24.48,24.16,23.990000000000002,23.8,23.61,23.42,23.23,23.05,22.68,N/A,N/A +2012,5,18,11,30,101450,100290,99160,73.56,0,2.37,2.48,2.5,2.5,2.5,2.5,2.5,2.5,2.5,184.46,184.35,184.3,184.23,184.15,184.06,183.95000000000002,183.85,183.49,24.37,24.060000000000002,23.89,23.69,23.5,23.32,23.13,22.95,22.580000000000002,N/A,N/A +2012,5,18,12,30,101460,100300,99170,74.69,0,2.39,2.49,2.5,2.5,2.5,2.5,2.49,2.49,2.48,183.4,183.22,183.15,183.07,182.99,182.9,182.79,182.68,182.36,24.29,23.96,23.79,23.6,23.41,23.23,23.03,22.85,22.48,N/A,N/A +2012,5,18,13,30,101490,100320,99190,75.5,0,1.81,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.9000000000000001,174.33,174.16,174.13,174.08,174.03,173.98,173.91,173.84,173.62,24.23,23.91,23.740000000000002,23.54,23.35,23.17,22.98,22.8,22.43,N/A,N/A +2012,5,18,14,30,101530,100360,99230,75.82000000000001,0,1.76,1.83,1.84,1.84,1.84,1.84,1.84,1.85,1.85,156.85,156.77,156.71,156.65,156.59,156.52,156.44,156.36,156.19,24.27,23.94,23.77,23.57,23.38,23.2,23,22.82,22.45,N/A,N/A +2012,5,18,15,30,101540,100370,99240,77.39,0,3.1,3.2600000000000002,3.2800000000000002,3.29,3.29,3.29,3.29,3.29,3.2800000000000002,159.33,159.36,159.35,159.35,159.33,159.31,159.3,159.3,159.26,24.29,23.95,23.77,23.57,23.38,23.19,22.990000000000002,22.81,22.43,N/A,N/A +2012,5,18,16,30,101530,100370,99240,78.64,0,3.11,3.25,3.27,3.2800000000000002,3.2800000000000002,3.2800000000000002,3.27,3.27,3.25,171.74,171.77,171.76,171.73,171.71,171.69,171.66,171.64000000000001,171.58,24.28,23.93,23.75,23.55,23.36,23.17,22.98,22.79,22.41,N/A,N/A +2012,5,18,17,30,101530,100370,99240,78.49,0,2.46,2.57,2.58,2.58,2.59,2.59,2.59,2.58,2.58,163.33,163.15,163.08,163,162.93,162.87,162.79,162.72,162.54,24.36,23.990000000000002,23.81,23.62,23.42,23.240000000000002,23.04,22.85,22.47,N/A,N/A +2012,5,18,18,30,101540,100370,99240,78.33,0,2.94,3.08,3.1,3.11,3.11,3.11,3.12,3.11,3.11,157.65,157.58,157.55,157.52,157.49,157.46,157.43,157.39000000000001,157.32,24.48,24.11,23.93,23.73,23.54,23.35,23.150000000000002,22.97,22.59,N/A,N/A +2012,5,18,19,30,101520,100360,99230,77.08,0,3.21,3.37,3.4,3.41,3.42,3.42,3.43,3.43,3.43,154.58,154.49,154.47,154.43,154.39000000000001,154.36,154.31,154.27,154.18,24.62,24.26,24.080000000000002,23.88,23.69,23.5,23.3,23.12,22.740000000000002,N/A,N/A +2012,5,18,20,30,101490,100330,99200,76.98,0,3.56,3.75,3.7800000000000002,3.8000000000000003,3.81,3.8200000000000003,3.8200000000000003,3.8200000000000003,3.83,155.25,155.17000000000002,155.13,155.08,155.04,155.01,154.96,154.91,154.8,24.67,24.310000000000002,24.14,23.93,23.740000000000002,23.55,23.36,23.17,22.79,N/A,N/A +2012,5,18,21,30,101440,100280,99150,76.26,0,3.5700000000000003,3.7600000000000002,3.8000000000000003,3.81,3.83,3.83,3.84,3.84,3.85,153.70000000000002,153.66,153.66,153.65,153.63,153.62,153.6,153.58,153.52,24.72,24.37,24.19,23.990000000000002,23.8,23.61,23.42,23.23,22.85,N/A,N/A +2012,5,18,22,30,101420,100260,99130,76.62,0,3.77,3.99,4.03,4.0600000000000005,4.07,4.08,4.08,4.09,4.09,151.44,151.44,151.43,151.42000000000002,151.41,151.41,151.4,151.39000000000001,151.41,24.71,24.37,24.2,24,23.81,23.62,23.42,23.240000000000002,22.85,N/A,N/A +2012,5,18,23,30,101400,100240,99110,78.03,0,4.1,4.38,4.43,4.46,4.48,4.5,4.5,4.51,4.5200000000000005,145.47,145.44,145.43,145.42000000000002,145.41,145.41,145.41,145.41,145.42000000000002,24.63,24.3,24.13,23.93,23.740000000000002,23.56,23.36,23.18,22.79,N/A,N/A +2012,5,19,0,30,101360,100200,99070,79.23,0,4.13,4.4,4.45,4.47,4.49,4.5,4.5,4.5,4.5,147.29,147.33,147.33,147.34,147.35,147.37,147.39000000000001,147.41,147.46,24.5,24.18,24,23.81,23.62,23.43,23.240000000000002,23.05,22.67,N/A,N/A +2012,5,19,1,30,101340,100180,99050,81.14,0,4.7,5.01,5.0600000000000005,5.09,5.1000000000000005,5.11,5.11,5.11,5.11,150.59,150.63,150.64000000000001,150.65,150.67000000000002,150.68,150.70000000000002,150.72,150.76,24.36,24.03,23.85,23.66,23.47,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A +2012,5,19,2,30,101350,100190,99060,82.84,0,5.39,5.7700000000000005,5.84,5.88,5.9,5.91,5.91,5.91,5.91,155.48,155.43,155.44,155.44,155.44,155.44,155.44,155.44,155.43,24.28,23.93,23.76,23.56,23.37,23.18,22.98,22.8,22.42,N/A,N/A +2012,5,19,3,30,101350,100190,99060,84.2,0,4.95,5.26,5.32,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.34,158.24,158.27,158.28,158.28,158.29,158.3,158.31,158.33,158.35,24.18,23.830000000000002,23.66,23.46,23.27,23.09,22.89,22.71,22.34,N/A,N/A +2012,5,19,4,30,101340,100180,99050,85.43,0,5.15,5.5,5.57,5.6000000000000005,5.62,5.62,5.62,5.62,5.62,163.53,163.45000000000002,163.44,163.43,163.43,163.42000000000002,163.4,163.4,163.38,24.11,23.76,23.580000000000002,23.38,23.19,23.01,22.81,22.63,22.25,N/A,N/A +2012,5,19,5,30,101340,100180,99050,86.54,0,5.26,5.62,5.69,5.72,5.73,5.74,5.75,5.75,5.75,167.89000000000001,167.89000000000001,167.85,167.83,167.8,167.77,167.74,167.71,167.63,24.060000000000002,23.7,23.52,23.32,23.13,22.95,22.75,22.57,22.19,N/A,N/A +2012,5,19,6,30,101360,100200,99070,87.06,0,5.2,5.5200000000000005,5.59,5.62,5.63,5.64,5.65,5.65,5.66,169.02,169.01,168.99,168.97,168.95000000000002,168.91,168.89000000000001,168.87,168.77,24.1,23.72,23.54,23.34,23.150000000000002,22.96,22.77,22.59,22.21,N/A,N/A +2012,5,19,7,30,101390,100230,99100,87.57000000000001,0,5.29,5.64,5.71,5.74,5.76,5.7700000000000005,5.78,5.79,5.79,170.6,170.6,170.59,170.58,170.56,170.54,170.52,170.5,170.45000000000002,24.14,23.76,23.580000000000002,23.38,23.19,23,22.8,22.62,22.240000000000002,N/A,N/A +2012,5,19,8,30,101370,100210,99080,87.82000000000001,0,5.39,5.74,5.82,5.8500000000000005,5.87,5.89,5.9,5.91,5.91,169.96,169.97,169.97,169.96,169.96,169.95000000000002,169.95000000000002,169.94,169.91,24.16,23.78,23.6,23.39,23.2,23.01,22.82,22.63,22.25,N/A,N/A +2012,5,19,9,30,101390,100220,99100,88.31,0,5.25,5.59,5.67,5.7,5.73,5.74,5.74,5.75,5.74,168.70000000000002,168.87,168.9,168.93,168.96,169,169.04,169.08,169.16,24.12,23.740000000000002,23.55,23.35,23.16,22.97,22.77,22.59,22.2,N/A,N/A +2012,5,19,10,30,101410,100250,99120,88.4,0,4.64,4.92,4.98,5.01,5.0200000000000005,5.04,5.04,5.05,5.07,158.82,158.83,158.85,158.86,158.87,158.87,158.87,158.86,158.83,24.1,23.72,23.54,23.34,23.150000000000002,22.96,22.77,22.59,22.21,N/A,N/A +2012,5,19,11,30,101430,100270,99140,87.27,0,4.9,5.17,5.22,5.23,5.23,5.23,5.22,5.2,5.15,154.28,154.49,154.63,154.76,154.88,155,155.13,155.24,155.53,24.16,23.79,23.61,23.41,23.21,23.02,22.830000000000002,22.64,22.26,N/A,N/A +2012,5,19,12,30,101460,100300,99170,86.3,0,4.46,4.76,4.83,4.87,4.9,4.92,4.93,4.94,4.96,155.41,155.43,155.43,155.42000000000002,155.41,155.4,155.38,155.37,155.32,24.19,23.81,23.63,23.43,23.240000000000002,23.05,22.85,22.66,22.28,N/A,N/A +2012,5,19,13,30,101500,100330,99200,81.4,0,4.66,4.93,4.99,5.01,5.01,5.01,4.99,4.98,4.93,151.99,152.29,152.42000000000002,152.56,152.67000000000002,152.79,152.9,153.01,153.26,24.42,24.060000000000002,23.88,23.68,23.490000000000002,23.3,23.11,22.92,22.54,N/A,N/A +2012,5,19,14,30,101520,100360,99230,82.4,0,4.13,4.32,4.3500000000000005,4.3500000000000005,4.34,4.33,4.3100000000000005,4.3,4.25,152.37,152.43,152.49,152.53,152.57,152.61,152.65,152.68,152.76,24.400000000000002,24.04,23.86,23.67,23.47,23.29,23.09,22.91,22.54,N/A,N/A +2012,5,19,15,30,101570,100410,99280,79.53,0,4.91,5.19,5.24,5.26,5.26,5.26,5.26,5.25,5.22,147.62,147.67000000000002,147.69,147.70000000000002,147.72,147.72,147.72,147.72,147.71,24.650000000000002,24.28,24.11,23.91,23.71,23.53,23.330000000000002,23.14,22.76,N/A,N/A +2012,5,19,16,30,101600,100440,99310,64.7,0,3.96,4.3,4.42,4.51,4.6000000000000005,4.68,4.7700000000000005,4.8500000000000005,5.03,141.6,141.75,141.76,141.74,141.72,141.68,141.63,141.57,141.43,25.51,25.22,25.060000000000002,24.88,24.7,24.53,24.35,24.18,23.82,N/A,N/A +2012,5,19,17,30,101590,100430,99300,67.09,0,4.24,4.57,4.64,4.68,4.72,4.75,4.76,4.78,4.79,139.93,139.83,139.85,139.87,139.88,139.89000000000001,139.9,139.92000000000002,139.94,25.38,25.05,24.87,24.67,24.48,24.29,24.09,23.91,23.52,N/A,N/A +2012,5,19,18,30,101600,100430,99310,71.68,0,4.71,5.04,5.12,5.16,5.19,5.21,5.22,5.23,5.25,126.52,126.85000000000001,127.11,127.36,127.58,127.78,127.98,128.16,128.53,25.3,24.96,24.78,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A +2012,5,19,19,30,101600,100440,99310,75.92,0,4.89,5.22,5.3,5.34,5.37,5.39,5.4,5.41,5.42,123.3,123.47,123.53,123.57000000000001,123.59,123.62,123.64,123.64,123.66,25.12,24.77,24.59,24.39,24.2,24.01,23.81,23.62,23.240000000000002,N/A,N/A +2012,5,19,20,30,101570,100400,99280,75.54,0,4.44,4.72,4.79,4.82,4.8500000000000005,4.86,4.88,4.9,4.91,118.91,119.3,119.55,119.79,120.02,120.24000000000001,120.46000000000001,120.67,121.13,25.080000000000002,24.73,24.560000000000002,24.36,24.17,23.98,23.79,23.6,23.22,N/A,N/A +2012,5,19,21,30,101550,100380,99260,77.69,0,5.0600000000000005,5.39,5.44,5.47,5.48,5.48,5.47,5.46,5.43,123.43,123.4,123.37,123.34,123.31,123.28,123.25,123.23,123.16,25.04,24.7,24.52,24.32,24.13,23.94,23.740000000000002,23.56,23.18,N/A,N/A +2012,5,19,22,30,101530,100360,99240,73.28,0,4.69,5.09,5.19,5.25,5.29,5.33,5.3500000000000005,5.38,5.42,125.98,126.08,126.11,126.14,126.16,126.18,126.2,126.21000000000001,126.24000000000001,25.21,24.87,24.7,24.5,24.310000000000002,24.12,23.92,23.740000000000002,23.35,N/A,N/A +2012,5,19,23,30,101520,100360,99230,75.27,0,5.12,5.48,5.57,5.61,5.65,5.67,5.69,5.71,5.75,125.83,125.11,124.74000000000001,124.4,124.10000000000001,123.83,123.57000000000001,123.33,122.88,25.16,24.85,24.68,24.490000000000002,24.3,24.11,23.92,23.740000000000002,23.36,N/A,N/A +2012,5,20,0,30,101490,100330,99210,77.08,0,5.24,5.66,5.76,5.8100000000000005,5.8500000000000005,5.88,5.9,5.92,5.95,120.09,120.66,120.91,121.16,121.38,121.58,121.77,121.95,122.3,25.1,24.77,24.6,24.400000000000002,24.21,24.02,23.82,23.63,23.25,N/A,N/A +2012,5,20,1,30,101490,100320,99200,73.7,0,5.87,6.38,6.51,6.59,6.65,6.7,6.74,6.78,6.8500000000000005,130.27,130.19,130.14000000000001,130.09,130.05,130.02,129.98,129.95,129.9,25.27,24.96,24.79,24.6,24.41,24.23,24.03,23.85,23.47,N/A,N/A +2012,5,20,2,30,101500,100340,99210,77.16,0,6.34,6.88,6.99,7.0600000000000005,7.1000000000000005,7.13,7.16,7.17,7.2,137.35,137.35,137.37,137.4,137.42000000000002,137.44,137.47,137.49,137.53,25.04,24.7,24.52,24.32,24.13,23.94,23.740000000000002,23.56,23.17,N/A,N/A +2012,5,20,3,30,101520,100360,99230,77.37,0,6.21,6.72,6.8500000000000005,6.92,6.98,7.0200000000000005,7.0600000000000005,7.08,7.13,137.53,137.51,137.51,137.5,137.49,137.47,137.45000000000002,137.43,137.38,25.01,24.67,24.5,24.3,24.11,23.92,23.73,23.54,23.16,N/A,N/A +2012,5,20,4,30,101530,100370,99240,72.46000000000001,0,6.8,7.41,7.55,7.63,7.69,7.73,7.76,7.78,7.82,137.71,137.74,137.79,137.84,137.89000000000001,137.94,137.99,138.04,138.15,25.17,24.84,24.67,24.47,24.28,24.1,23.900000000000002,23.71,23.330000000000002,N/A,N/A +2012,5,20,5,30,101540,100380,99250,72.88,0,6.33,6.890000000000001,7.03,7.12,7.18,7.23,7.28,7.3100000000000005,7.38,140.69,140.57,140.51,140.45000000000002,140.39000000000001,140.33,140.27,140.22,140.1,25.080000000000002,24.75,24.57,24.38,24.19,24,23.8,23.62,23.23,N/A,N/A +2012,5,20,6,30,101550,100390,99260,75.10000000000001,0,7.15,7.78,7.930000000000001,8.02,8.08,8.120000000000001,8.16,8.18,8.22,147.94,147.96,147.92000000000002,147.88,147.84,147.79,147.73,147.68,147.58,24.98,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A +2012,5,20,7,30,101610,100440,99310,73.95,0,7.63,8.27,8.4,8.46,8.49,8.51,8.51,8.51,8.49,145.1,145.17000000000002,145.21,145.25,145.28,145.32,145.34,145.37,145.41,25,24.650000000000002,24.48,24.28,24.080000000000002,23.89,23.69,23.51,23.12,N/A,N/A +2012,5,20,8,30,101590,100430,99300,70.62,0,7.13,7.75,7.9,7.98,8.040000000000001,8.08,8.11,8.13,8.15,150.11,150.20000000000002,150.28,150.35,150.42000000000002,150.48,150.56,150.62,150.76,25.02,24.69,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.150000000000002,N/A,N/A +2012,5,20,9,30,101630,100470,99340,66.52,0,6.0600000000000005,6.58,6.71,6.79,6.8500000000000005,6.9,6.93,6.96,7.01,158.61,158.04,157.79,157.57,157.37,157.19,157.03,156.87,156.59,25.12,24.8,24.62,24.43,24.23,24.04,23.84,23.66,23.27,N/A,N/A +2012,5,20,10,30,101680,100510,99380,69.91,0,5.21,5.64,5.75,5.82,5.87,5.92,5.96,5.99,6.05,146.91,147.16,147.27,147.37,147.45000000000002,147.51,147.57,147.62,147.70000000000002,24.93,24.6,24.42,24.22,24.03,23.84,23.64,23.45,23.07,N/A,N/A +2012,5,20,11,30,101650,100490,99360,75.01,0,5.73,6.12,6.19,6.21,6.22,6.21,6.2,6.19,6.15,153.27,153.18,153.09,152.98,152.87,152.75,152.63,152.51,152.25,24.67,24.32,24.14,23.94,23.75,23.56,23.36,23.17,22.78,N/A,N/A +2012,5,20,12,30,101720,100550,99420,72.74,0,4.13,4.39,4.46,4.49,4.51,4.54,4.55,4.5600000000000005,4.59,139.75,140.01,140.14000000000001,140.26,140.36,140.45000000000002,140.55,140.63,140.81,24.69,24.35,24.18,23.98,23.79,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A +2012,5,20,13,30,101770,100610,99470,69.97,0,3.92,4.14,4.18,4.2,4.21,4.22,4.23,4.24,4.24,130.98,130.66,130.49,130.32,130.16,130.01,129.86,129.72,129.43,24.76,24.43,24.25,24.060000000000002,23.86,23.67,23.48,23.29,22.900000000000002,N/A,N/A +2012,5,20,14,30,101810,100640,99510,74.29,0,3.59,3.72,3.72,3.7,3.67,3.65,3.62,3.59,3.5300000000000002,131.23,130.24,129.65,129.07,128.51,127.95,127.38000000000001,126.86,125.64,24.57,24.22,24.04,23.84,23.650000000000002,23.46,23.26,23.080000000000002,22.69,N/A,N/A +2012,5,20,15,30,101860,100690,99560,70.54,0,2.88,3.04,3.0700000000000003,3.09,3.1,3.12,3.13,3.13,3.15,86.9,87.85000000000001,88.43,88.98,89.49,89.98,90.48,90.94,91.91,24.79,24.46,24.28,24.080000000000002,23.89,23.7,23.51,23.32,22.94,N/A,N/A +2012,5,20,16,30,101890,100730,99590,67.8,0,3.52,3.74,3.79,3.8200000000000003,3.85,3.86,3.88,3.89,3.91,79.44,80.10000000000001,80.38,80.63,80.83,80.99,81.15,81.29,81.52,25.05,24.71,24.54,24.34,24.14,23.96,23.76,23.57,23.18,N/A,N/A +2012,5,20,17,30,101890,100720,99590,68.42,0,3.5100000000000002,3.72,3.77,3.8000000000000003,3.81,3.83,3.84,3.85,3.86,90.51,90.66,90.71000000000001,90.75,90.78,90.8,90.83,90.85000000000001,90.87,25.080000000000002,24.73,24.55,24.35,24.16,23.97,23.77,23.59,23.2,N/A,N/A +2012,5,20,18,30,101890,100720,99590,66.38,0,3.72,3.96,4.0200000000000005,4.0600000000000005,4.09,4.11,4.13,4.15,4.18,89.77,89.85000000000001,89.88,89.92,89.97,90.02,90.09,90.15,90.29,25.26,24.91,24.73,24.54,24.35,24.16,23.96,23.78,23.39,N/A,N/A +2012,5,20,19,30,101880,100710,99580,67.54,0,3.36,3.5500000000000003,3.59,3.61,3.62,3.63,3.63,3.64,3.65,87.10000000000001,87.38,87.57000000000001,87.77,87.95,88.12,88.29,88.46000000000001,88.8,25.35,25.01,24.830000000000002,24.63,24.44,24.25,24.060000000000002,23.87,23.490000000000002,N/A,N/A +2012,5,20,20,30,101850,100680,99550,66.44,0,3.7800000000000002,4,4.04,4.07,4.08,4.09,4.1,4.1,4.12,103.21000000000001,103.03,102.91,102.79,102.69,102.59,102.48,102.39,102.21000000000001,25.490000000000002,25.150000000000002,24.98,24.79,24.59,24.41,24.21,24.03,23.650000000000002,N/A,N/A +2012,5,20,21,30,101800,100640,99510,67.08,0,4.38,4.65,4.69,4.71,4.72,4.73,4.73,4.74,4.75,137.17000000000002,137.02,136.93,136.84,136.76,136.67000000000002,136.57,136.48,136.22,25.52,25.19,25.02,24.830000000000002,24.64,24.46,24.26,24.080000000000002,23.71,N/A,N/A +2012,5,20,22,30,101770,100610,99480,68,0,3.74,3.97,4.01,4.03,4.04,4.05,4.05,4.05,4.0600000000000005,151.65,151.34,151.12,150.88,150.65,150.42000000000002,150.17000000000002,149.92000000000002,149.27,25.490000000000002,25.18,25.01,24.82,24.63,24.44,24.25,24.07,23.69,N/A,N/A +2012,5,20,23,30,101750,100590,99460,71.82000000000001,0,3.2600000000000002,3.46,3.49,3.5100000000000002,3.52,3.52,3.5300000000000002,3.5300000000000002,3.5300000000000002,163.15,162.82,162.56,162.3,162.05,161.82,161.54,161.28,160.67000000000002,25.330000000000002,25.03,24.86,24.66,24.47,24.29,24.1,23.92,23.54,N/A,N/A +2012,5,21,0,30,101730,100560,99430,70.77,0,2.92,3.09,3.12,3.13,3.13,3.14,3.14,3.14,3.16,173.70000000000002,173.16,172.81,172.42000000000002,172.01,171.58,171.06,170.56,169.07,25.32,25.01,24.85,24.650000000000002,24.46,24.28,24.09,23.91,23.54,N/A,N/A +2012,5,21,1,30,101730,100570,99440,72.71000000000001,0,2.74,2.9,2.93,2.95,2.96,2.97,2.97,2.98,2.99,168.58,168.12,167.83,167.52,167.21,166.9,166.54,166.21,165.29,25.21,24.900000000000002,24.740000000000002,24.54,24.35,24.17,23.97,23.79,23.42,N/A,N/A +2012,5,21,2,30,101760,100590,99460,73.01,0,1.95,2.04,2.06,2.06,2.07,2.07,2.07,2.08,2.09,180.47,179.69,179.26,178.8,178.36,177.91,177.39000000000001,176.9,175.56,25.150000000000002,24.84,24.68,24.48,24.29,24.1,23.91,23.73,23.35,N/A,N/A +2012,5,21,3,30,101770,100600,99470,74.56,0,2.14,2.24,2.25,2.2600000000000002,2.2600000000000002,2.25,2.25,2.25,2.25,196.56,196.23000000000002,196.04,195.82,195.59,195.36,195.06,194.76,193.75,25.080000000000002,24.76,24.59,24.400000000000002,24.21,24.02,23.830000000000002,23.650000000000002,23.27,N/A,N/A +2012,5,21,4,30,101790,100620,99490,75.64,0,1.9100000000000001,1.99,2,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.02,197.05,196.33,195.78,195.16,194.51,193.82,192.96,192.11,189.5,25.01,24.69,24.52,24.330000000000002,24.14,23.96,23.77,23.59,23.22,N/A,N/A +2012,5,21,5,30,101790,100620,99500,75.2,0,1.45,1.5,1.51,1.5,1.5,1.5,1.5,1.5,1.51,215.23000000000002,214.14000000000001,213.43,212.62,211.8,210.97,209.82,208.66,204.18,25,24.68,24.52,24.32,24.14,23.95,23.76,23.59,23.240000000000002,N/A,N/A +2012,5,21,6,30,101820,100650,99520,74.59,0,1.78,1.84,1.85,1.85,1.84,1.84,1.83,1.83,1.82,217.55,216.78,216.39000000000001,215.94,215.42000000000002,214.86,214.1,213.35,210.33,25.060000000000002,24.73,24.57,24.37,24.19,24,23.81,23.64,23.29,N/A,N/A +2012,5,21,7,30,101860,100700,99570,73.17,0,1.46,1.52,1.52,1.52,1.52,1.51,1.51,1.5,1.5,213.96,213.72,213.38,213.01,212.62,212.21,211.69,211.17000000000002,209.46,25.14,24.830000000000002,24.650000000000002,24.46,24.28,24.09,23.900000000000002,23.72,23.36,N/A,N/A +2012,5,21,8,30,101850,100690,99560,73.37,0,1.57,1.6300000000000001,1.62,1.62,1.61,1.6,1.59,1.58,1.56,228.23000000000002,227.87,227.66,227.41,227.15,226.89000000000001,226.52,226.17000000000002,224.99,25.11,24.79,24.62,24.43,24.240000000000002,24.060000000000002,23.86,23.68,23.31,N/A,N/A +2012,5,21,9,30,101890,100720,99590,72.78,0,1.57,1.61,1.61,1.6,1.59,1.57,1.56,1.54,1.5,269.51,269.18,269.1,269.01,268.88,268.71,268.49,268.26,267.34000000000003,25.14,24.830000000000002,24.650000000000002,24.46,24.27,24.09,23.900000000000002,23.72,23.36,N/A,N/A +2012,5,21,10,30,101910,100740,99610,72.01,0,1.93,2.0100000000000002,2.0100000000000002,2.0100000000000002,2,1.99,1.98,1.97,1.94,293.85,294.01,294.06,294.11,294.16,294.21,294.23,294.25,294.27,25.2,24.88,24.71,24.52,24.330000000000002,24.14,23.95,23.77,23.400000000000002,N/A,N/A +2012,5,21,11,30,101930,100760,99630,76.73,0,3.2800000000000002,3.37,3.34,3.3000000000000003,3.25,3.2,3.15,3.1,2.98,323.76,323.77,323.71,323.64,323.56,323.49,323.39,323.29,323.06,25.01,24.68,24.51,24.310000000000002,24.13,23.94,23.75,23.57,23.19,N/A,N/A +2012,5,21,12,30,101950,100780,99650,80.69,0,4.17,4.36,4.36,4.3500000000000005,4.32,4.28,4.24,4.2,4.09,332.35,332.6,332.8,333.02,333.23,333.43,333.67,333.90000000000003,334.48,24.52,24.16,23.98,23.78,23.59,23.41,23.21,23.04,22.66,N/A,N/A +2012,5,21,13,30,101990,100820,99690,78.22,0,3.74,3.92,3.93,3.92,3.91,3.89,3.87,3.85,3.7800000000000002,339.16,339.56,339.77,339.98,340.19,340.39,340.62,340.84000000000003,341.37,24.63,24.28,24.1,23.91,23.71,23.53,23.34,23.150000000000002,22.78,N/A,N/A +2012,5,21,14,30,102000,100840,99700,75.32000000000001,0,3.88,4.08,4.11,4.12,4.12,4.11,4.11,4.1,4.08,344.88,344.42,344.14,343.85,343.57,343.29,342.98,342.68,341.94,24.91,24.57,24.39,24.19,24,23.82,23.63,23.45,23.07,N/A,N/A +2012,5,21,15,30,102010,100840,99710,70.05,0,3.45,3.66,3.7,3.72,3.74,3.75,3.77,3.7800000000000002,3.81,343.15000000000003,342.87,342.68,342.49,342.3,342.12,341.92,341.72,341.21,25.27,24.94,24.77,24.57,24.39,24.2,24.01,23.830000000000002,23.46,N/A,N/A +2012,5,21,16,30,102000,100840,99710,64.13,0,3.08,3.27,3.31,3.34,3.36,3.38,3.41,3.43,3.52,334.66,334.93,335.14,335.35,335.55,335.76,336.01,336.24,336.83,25.82,25.51,25.34,25.150000000000002,24.97,24.79,24.6,24.42,24.07,N/A,N/A +2012,5,21,17,30,101970,100810,99680,62.17,0,2.77,2.96,3.0100000000000002,3.04,3.06,3.09,3.11,3.14,3.21,312.85,313.88,314.57,315.26,315.93,316.61,317.35,318.05,319.89,26.39,26.09,25.93,25.740000000000002,25.55,25.37,25.18,25,24.64,N/A,N/A +2012,5,21,18,30,101940,100780,99650,61.31,0,2.59,2.75,2.7800000000000002,2.8000000000000003,2.82,2.85,2.9,2.96,3.3200000000000003,275.19,276.67,277.7,278.88,280.15000000000003,281.53000000000003,283.59000000000003,285.77,294.90000000000003,26.71,26.41,26.25,26.060000000000002,25.88,25.71,25.54,25.39,25.18,N/A,N/A +2012,5,21,19,30,101910,100750,99620,61.08,0,2.5100000000000002,2.59,2.57,2.5300000000000002,2.49,2.44,2.4,2.36,3.0100000000000002,227.78,229.4,230.65,232.26,234.39000000000001,236.98000000000002,243.36,250.58,286.07,26.96,26.67,26.51,26.32,26.16,25.990000000000002,25.86,25.740000000000002,25.84,N/A,N/A +2012,5,21,20,30,101860,100700,99580,65.67,0,3.93,4.05,4,3.9,3.7,3.44,2.68,1.97,1.71,193.75,194.08,194.35,194.79,196.1,198.08,211.47,224.8,238.5,26.810000000000002,26.51,26.36,26.18,26.060000000000002,25.96,26.02,26.14,26,N/A,N/A +2012,5,21,21,30,101770,100610,99490,69.01,0,5.5200000000000005,5.86,5.87,5.8100000000000005,5.74,5.66,5.51,5.34,4.05,190.1,190.15,190.23,190.32,190.43,190.55,190.88,191.25,198.4,26.78,26.5,26.35,26.16,25.990000000000002,25.82,25.66,25.53,25.84,N/A,N/A +2012,5,21,22,30,101710,100560,99440,69.76,0,6.42,6.84,6.8500000000000005,6.8,6.72,6.61,6.16,5.62,4.88,192.03,192.01,191.99,191.96,191.9,191.82,192.19,192.71,195.34,26.650000000000002,26.45,26.330000000000002,26.18,26.09,26.02,26.09,26.22,26.28,N/A,N/A +2012,5,21,23,30,101680,100520,99400,69.26,0,6.5,6.9,6.93,6.93,6.8100000000000005,6.5600000000000005,6.22,5.87,5.23,195.34,195.38,195.36,195.33,195.41,195.6,196.37,197.31,200.3,26.57,26.41,26.32,26.27,26.310000000000002,26.42,26.560000000000002,26.7,26.61,N/A,N/A +2012,5,22,0,30,101620,100470,99350,71.33,0,6.5600000000000005,7.01,7.05,7.04,7.07,7.12,7.0600000000000005,6.96,6.5200000000000005,207.83,207.91,207.95000000000002,207.99,208.03,208.07,208.55,209.15,211.84,26.41,26.2,26.07,25.91,25.8,25.71,25.79,25.91,26.19,N/A,N/A +2012,5,22,1,30,101630,100470,99340,74.26,0,7.11,7.69,7.78,7.8,7.8,7.79,7.7700000000000005,7.75,7.73,228.32,228.29,228.25,228.21,228.17000000000002,228.11,228.03,227.93,227.42000000000002,26.18,25.92,25.77,25.59,25.42,25.25,25.080000000000002,24.93,24.76,N/A,N/A +2012,5,22,2,30,101640,100480,99360,75.22,0,7.390000000000001,8.01,8.11,8.14,8.15,8.14,8.120000000000001,8.11,8.07,241.11,241.06,240.99,240.93,240.87,240.81,240.72,240.63,240.05,26.080000000000002,25.810000000000002,25.66,25.47,25.3,25.12,24.94,24.78,24.54,N/A,N/A +2012,5,22,3,30,101650,100490,99370,75.64,0,6.26,6.79,6.890000000000001,6.93,6.95,6.96,6.95,6.95,6.95,242.67000000000002,242.76,242.81,242.83,242.84,242.84,242.83,242.83,242.79,26.05,25.77,25.62,25.43,25.25,25.07,24.89,24.72,24.38,N/A,N/A +2012,5,22,4,30,101640,100480,99360,76.06,0,5.92,6.390000000000001,6.47,6.49,6.51,6.51,6.5200000000000005,6.5200000000000005,6.6000000000000005,247.94,247.89000000000001,247.9,247.93,247.97,248.02,248.09,248.15,248.45000000000002,25.94,25.66,25.5,25.310000000000002,25.13,24.95,24.77,24.6,24.310000000000002,N/A,N/A +2012,5,22,5,30,101640,100480,99360,76.27,0,5.45,5.87,5.94,5.97,5.98,5.98,5.97,5.97,5.98,253.15,253.25,253.32,253.4,253.48000000000002,253.57,253.68,253.8,254.26000000000002,25.91,25.63,25.48,25.28,25.1,24.92,24.740000000000002,24.560000000000002,24.22,N/A,N/A +2012,5,22,6,30,101660,100500,99370,76.57000000000001,0,5.5600000000000005,5.97,6.04,6.0600000000000005,6.07,6.07,6.0600000000000005,6.05,6.04,261.88,261.91,261.89,261.88,261.88,261.87,261.87,261.86,261.88,25.98,25.66,25.5,25.3,25.12,24.93,24.75,24.57,24.22,N/A,N/A +2012,5,22,7,30,101640,100480,99350,75.42,0,6.09,6.5200000000000005,6.59,6.6000000000000005,6.6000000000000005,6.59,6.58,6.5600000000000005,6.5600000000000005,267.22,267.17,267.09000000000003,266.99,266.9,266.79,266.67,266.55,266.17,25.94,25.63,25.47,25.27,25.09,24.92,24.740000000000002,24.57,24.26,N/A,N/A +2012,5,22,8,30,101620,100460,99340,76.63,0,6.45,6.890000000000001,6.96,6.97,6.97,6.96,6.94,6.92,6.890000000000001,270.58,270.28000000000003,270.05,269.79,269.54,269.27,268.96,268.65,267.81,25.53,25.19,25.02,24.830000000000002,24.64,24.46,24.28,24.1,23.75,N/A,N/A +2012,5,22,9,30,101650,100490,99360,79.03,0,5.9,6.28,6.3500000000000005,6.37,6.38,6.37,6.3500000000000005,6.34,6.29,265.1,265.1,265.08,265.03000000000003,264.98,264.93,264.85,264.76,264.53000000000003,25.17,24.810000000000002,24.63,24.43,24.25,24.060000000000002,23.87,23.69,23.32,N/A,N/A +2012,5,22,10,30,101630,100460,99340,79.56,0,6.37,6.76,6.83,6.84,6.84,6.82,6.8100000000000005,6.79,6.74,261.6,261.74,261.81,261.88,261.94,261.99,262.03000000000003,262.05,262.06,24.97,24.61,24.43,24.23,24.05,23.86,23.67,23.5,23.14,N/A,N/A +2012,5,22,11,30,101650,100480,99350,80.98,0,6.15,6.5600000000000005,6.640000000000001,6.67,6.69,6.69,6.69,6.69,6.69,266.43,266.23,266.11,265.98,265.84000000000003,265.71,265.54,265.39,264.96,24.78,24.39,24.21,24.01,23.830000000000002,23.64,23.45,23.27,22.91,N/A,N/A +2012,5,22,12,30,101640,100480,99350,81.52,0,6.66,7.11,7.2,7.24,7.25,7.26,7.2700000000000005,7.2700000000000005,7.28,271.26,271.13,271.03000000000003,270.91,270.78000000000003,270.63,270.45,270.27,269.73,24.64,24.240000000000002,24.060000000000002,23.86,23.67,23.490000000000002,23.3,23.12,22.77,N/A,N/A +2012,5,22,13,30,101630,100470,99340,79.03,0,6.6000000000000005,7.05,7.140000000000001,7.18,7.21,7.22,7.24,7.25,7.3100000000000005,273.46,273.14,273,272.85,272.71,272.56,272.38,272.2,271.68,24.57,24.18,24,23.81,23.62,23.44,23.26,23.09,22.77,N/A,N/A +2012,5,22,14,30,101650,100490,99360,76.75,0,5.99,6.4,6.49,6.53,6.5600000000000005,6.59,6.62,6.65,6.79,265.98,265.8,265.7,265.58,265.46,265.34000000000003,265.2,265.06,264.65,24.73,24.35,24.18,23.98,23.8,23.62,23.44,23.27,22.95,N/A,N/A +2012,5,22,15,30,101630,100470,99340,74.54,0,5.72,6.08,6.15,6.18,6.2,6.21,6.22,6.24,6.3500000000000005,261.92,261.94,262.02,262.1,262.21,262.32,262.53000000000003,262.74,263.89,25.12,24.76,24.59,24.400000000000002,24.22,24.05,23.88,23.71,23.43,N/A,N/A +2012,5,22,16,30,101620,100460,99330,73.48,0,5.42,5.75,5.79,5.79,5.78,5.76,5.74,5.72,5.68,244.48000000000002,245.18,245.62,246.11,246.6,247.12,247.77,248.4,250.69,25.55,25.21,25.04,24.85,24.66,24.490000000000002,24.3,24.13,23.82,N/A,N/A +2012,5,22,17,30,101570,100410,99280,74.10000000000001,0,5.53,5.84,5.87,5.86,5.83,5.8,5.7700000000000005,5.74,5.58,231.53,232.05,232.45000000000002,232.99,233.76,234.72,237.33,240.31,255.18,25.91,25.580000000000002,25.43,25.25,25.080000000000002,24.93,24.86,24.810000000000002,25.16,N/A,N/A +2012,5,22,18,30,101520,100370,99250,76.69,0,5.43,5.74,5.76,5.74,5.7,5.65,5.58,5.5,4.98,230.23000000000002,230.57,230.81,231.14000000000001,231.62,232.21,233.94,235.96,253.01000000000002,26.2,25.89,25.73,25.55,25.39,25.240000000000002,25.150000000000002,25.080000000000002,25.560000000000002,N/A,N/A +2012,5,22,19,30,101490,100330,99210,78.54,0,5.32,5.64,5.67,5.65,5.62,5.57,5.5,5.42,4.64,218.4,218.48000000000002,218.57,218.67000000000002,218.79,218.92000000000002,219.16,219.41,223.8,26.310000000000002,25.990000000000002,25.82,25.63,25.45,25.28,25.11,24.95,24.94,N/A,N/A +2012,5,22,20,30,101430,100270,99150,77.23,0,6.51,6.96,7.0200000000000005,7.01,6.98,6.93,6.8500000000000005,6.7700000000000005,6.45,212.1,212.23000000000002,212.32,212.42000000000002,212.51,212.61,212.73000000000002,212.86,213.34,26.34,26.03,25.87,25.68,25.5,25.32,25.14,24.98,24.69,N/A,N/A +2012,5,22,21,30,101370,100220,99100,79,0,6.79,7.28,7.34,7.33,7.3,7.26,7.2,7.140000000000001,6.83,216.09,216,215.94,215.87,215.79,215.70000000000002,215.56,215.42000000000002,214.6,26.27,25.97,25.810000000000002,25.62,25.44,25.26,25.09,24.93,24.68,N/A,N/A +2012,5,22,22,30,101300,100150,99030,78.76,0,7.71,8.34,8.45,8.47,8.47,8.45,8.41,8.370000000000001,8.27,213.19,213.19,213.18,213.16,213.13,213.09,213.03,212.97,212.73000000000002,26.23,25.92,25.76,25.57,25.38,25.2,25.02,24.85,24.5,N/A,N/A +2012,5,22,23,30,101250,100090,98980,77.22,0,8.19,8.870000000000001,8.99,9.02,9.01,8.99,8.950000000000001,8.91,8.77,216.98000000000002,216.99,216.97,216.94,216.9,216.85,216.78,216.70000000000002,216.26,26.27,25.98,25.82,25.63,25.46,25.29,25.12,24.96,24.72,N/A,N/A +2012,5,23,0,30,101210,100060,98940,75.67,0,7.17,7.75,7.8500000000000005,7.87,7.87,7.86,7.84,7.82,7.7700000000000005,216.72,216.74,216.74,216.72,216.68,216.62,216.53,216.41,215.76,26.330000000000002,26.05,25.89,25.7,25.53,25.35,25.18,25.02,24.75,N/A,N/A +2012,5,23,1,30,101170,100010,98900,75.68,0,7.0600000000000005,7.63,7.73,7.75,7.76,7.76,7.75,7.73,7.7,219.06,219.07,219.06,219.04,219,218.97,218.91,218.84,218.51,26.240000000000002,25.94,25.78,25.59,25.41,25.23,25.05,24.88,24.55,N/A,N/A +2012,5,23,2,30,101150,100000,98890,76.78,0,7.24,7.82,7.91,7.930000000000001,7.930000000000001,7.91,7.88,7.8500000000000005,7.8,226.67000000000002,226.59,226.53,226.46,226.37,226.28,226.17000000000002,226.05,225.6,26.26,25.96,25.8,25.62,25.44,25.27,25.09,24.93,24.66,N/A,N/A +2012,5,23,3,30,101150,100000,98880,73.3,0,6.6000000000000005,7.15,7.25,7.29,7.3100000000000005,7.32,7.32,7.32,7.33,222.6,222.53,222.52,222.52,222.52,222.52,222.51,222.49,222.3,26.37,26.09,25.93,25.740000000000002,25.560000000000002,25.38,25.2,25.04,24.71,N/A,N/A +2012,5,23,4,30,101110,99960,98840,75.16,0,7.12,7.69,7.79,7.82,7.84,7.83,7.8100000000000005,7.78,7.69,221.61,221.52,221.52,221.51,221.5,221.48000000000002,221.44,221.4,221.25,26.21,25.91,25.75,25.560000000000002,25.38,25.2,25.02,24.84,24.490000000000002,N/A,N/A +2012,5,23,5,30,101100,99950,98830,76.55,0,6.58,7.15,7.2700000000000005,7.33,7.37,7.38,7.38,7.38,7.34,217.69,217.79,217.83,217.84,217.84,217.83,217.8,217.77,217.64000000000001,26.1,25.8,25.63,25.43,25.240000000000002,25.05,24.86,24.67,24.28,N/A,N/A +2012,5,23,6,30,101100,99950,98830,71.14,0,7.01,7.640000000000001,7.79,7.87,7.930000000000001,7.97,8.01,8.040000000000001,8.11,214.70000000000002,214.66,214.72,214.8,214.88,214.96,215.05,215.15,215.34,26.310000000000002,26.03,25.88,25.69,25.51,25.330000000000002,25.150000000000002,24.98,24.62,N/A,N/A +2012,5,23,7,30,101090,99940,98820,73.02,0,6.82,7.390000000000001,7.54,7.62,7.68,7.73,7.78,7.82,7.930000000000001,215.58,215.56,215.55,215.52,215.49,215.46,215.42000000000002,215.37,215.26,26.09,25.79,25.62,25.43,25.25,25.07,24.88,24.71,24.35,N/A,N/A +2012,5,23,8,30,101080,99920,98800,72.32000000000001,0,7.33,8.03,8.19,8.28,8.34,8.39,8.42,8.46,8.53,217.62,217.47,217.38,217.28,217.18,217.09,216.98000000000002,216.88,216.65,26.150000000000002,25.84,25.67,25.48,25.29,25.11,24.92,24.740000000000002,24.38,N/A,N/A +2012,5,23,9,30,101080,99920,98800,75.48,0,7.68,8.34,8.48,8.540000000000001,8.58,8.6,8.6,8.6,8.58,210.44,210.5,210.54,210.61,210.69,210.76,210.86,210.94,211.14000000000001,25.92,25.59,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A +2012,5,23,10,30,101090,99940,98820,72.23,0,7.19,7.82,7.98,8.07,8.14,8.19,8.22,8.26,8.3,210.69,210.4,210.25,210.1,209.97,209.84,209.71,209.59,209.36,25.990000000000002,25.69,25.53,25.330000000000002,25.150000000000002,24.96,24.77,24.580000000000002,24.21,N/A,N/A +2012,5,23,11,30,101060,99900,98790,69.27,0,7.03,7.66,7.82,7.92,7.99,8.05,8.11,8.16,8.25,203.75,203.72,203.76,203.81,203.86,203.91,203.95000000000002,203.99,204.09,26.02,25.7,25.53,25.34,25.150000000000002,24.97,24.77,24.59,24.22,N/A,N/A +2012,5,23,12,30,101070,99920,98800,68.48,0,6.69,7.2700000000000005,7.42,7.51,7.57,7.62,7.67,7.71,7.78,206.22,206.23000000000002,206.25,206.3,206.35,206.4,206.46,206.51,206.64000000000001,25.990000000000002,25.67,25.51,25.310000000000002,25.12,24.94,24.740000000000002,24.560000000000002,24.18,N/A,N/A +2012,5,23,13,30,101090,99930,98820,67.91,0,6.8,7.36,7.49,7.55,7.6000000000000005,7.62,7.640000000000001,7.65,7.67,193.4,193.73000000000002,193.93,194.12,194.29,194.45000000000002,194.6,194.74,195.01,25.98,25.67,25.5,25.310000000000002,25.12,24.93,24.740000000000002,24.560000000000002,24.18,N/A,N/A +2012,5,23,14,30,101070,99920,98800,70.42,0,7,7.63,7.76,7.84,7.890000000000001,7.92,7.94,7.96,7.97,199.23000000000002,199.41,199.39000000000001,199.34,199.27,199.19,199.1,199.01,198.79,25.85,25.52,25.34,25.150000000000002,24.96,24.77,24.57,24.39,24,N/A,N/A +2012,5,23,15,30,101110,99950,98830,67.95,0,6.51,7.09,7.21,7.29,7.34,7.37,7.4,7.42,7.45,191.38,191.6,191.61,191.6,191.59,191.55,191.52,191.49,191.4,25.94,25.61,25.44,25.240000000000002,25.04,24.86,24.66,24.47,24.09,N/A,N/A +2012,5,23,16,30,101070,99920,98800,63.690000000000005,0,7.25,7.87,8.02,8.11,8.19,8.24,8.290000000000001,8.33,8.39,192.87,192.91,192.9,192.88,192.86,192.84,192.81,192.78,192.72,26.09,25.78,25.62,25.42,25.240000000000002,25.05,24.86,24.68,24.29,N/A,N/A +2012,5,23,17,30,101060,99910,98790,66.86,0,7.72,8.34,8.48,8.540000000000001,8.58,8.61,8.63,8.64,8.66,192.77,192.78,192.77,192.75,192.73000000000002,192.70000000000002,192.67000000000002,192.65,192.6,25.96,25.64,25.47,25.27,25.09,24.900000000000002,24.71,24.53,24.150000000000002,N/A,N/A +2012,5,23,18,30,101020,99870,98750,64.45,0,7.48,8.15,8.31,8.4,8.47,8.52,8.56,8.59,8.65,180.74,180.92000000000002,181.14000000000001,181.36,181.57,181.77,181.98,182.17000000000002,182.57,26.14,25.84,25.68,25.490000000000002,25.3,25.12,24.93,24.75,24.37,N/A,N/A +2012,5,23,19,30,101000,99850,98730,68.34,0,7.72,8.47,8.64,8.75,8.82,8.870000000000001,8.91,8.94,8.98,187.81,188.38,188.52,188.62,188.69,188.74,188.78,188.81,188.82,26.09,25.76,25.59,25.39,25.19,25,24.8,24.61,24.22,N/A,N/A +2012,5,23,20,30,100970,99820,98700,68.83,0,8.69,9.41,9.58,9.65,9.69,9.71,9.72,9.72,9.71,189.4,189.52,189.6,189.67000000000002,189.73,189.78,189.83,189.87,189.93,25.97,25.650000000000002,25.48,25.29,25.1,24.91,24.71,24.53,24.14,N/A,N/A +2012,5,23,21,30,100910,99750,98640,70.44,0,8.83,9.64,9.81,9.9,9.950000000000001,9.98,9.99,10,10,185.5,185.1,184.81,184.53,184.27,184.04,183.81,183.6,183.19,25.94,25.61,25.44,25.240000000000002,25.05,24.86,24.66,24.48,24.09,N/A,N/A +2012,5,23,22,30,100850,99700,98590,68.8,0,8.28,9.18,9.41,9.55,9.66,9.74,9.8,9.85,9.93,177.12,177.70000000000002,177.92000000000002,178.11,178.27,178.41,178.53,178.64000000000001,178.84,26.04,25.71,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A +2012,5,23,23,30,100830,99680,98560,72.54,0,8.39,9.24,9.450000000000001,9.59,9.68,9.76,9.81,9.86,9.93,179.79,180.27,180.44,180.58,180.69,180.79,180.88,180.96,181.08,25.86,25.52,25.35,25.150000000000002,24.96,24.77,24.57,24.38,23.990000000000002,N/A,N/A +2012,5,24,0,30,100780,99630,98510,77.04,0,8.86,9.78,10,10.14,10.24,10.31,10.36,10.4,10.450000000000001,173.35,172.69,172.55,172.42000000000002,172.33,172.24,172.17000000000002,172.1,171.99,25.73,25.37,25.19,24.990000000000002,24.79,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A +2012,5,24,1,30,100750,99600,98480,78.29,0,9.17,10.09,10.32,10.46,10.55,10.620000000000001,10.67,10.71,10.77,168.26,168.72,168.88,169,169.11,169.21,169.3,169.38,169.54,25.57,25.21,25.03,24.830000000000002,24.64,24.45,24.25,24.07,23.68,N/A,N/A +2012,5,24,2,30,100750,99600,98490,79.57000000000001,0,9.75,10.72,10.96,11.11,11.200000000000001,11.28,11.33,11.370000000000001,11.44,171.11,171.05,171.07,171.09,171.11,171.12,171.14000000000001,171.16,171.19,25.490000000000002,25.12,24.94,24.740000000000002,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A +2012,5,24,3,30,100740,99590,98470,80.63,0,10.85,11.98,12.27,12.42,12.530000000000001,12.59,12.64,12.67,12.69,166.65,166.74,166.83,166.91,166.98,167.05,167.12,167.18,167.3,25.51,25.13,24.95,24.740000000000002,24.55,24.35,24.150000000000002,23.97,23.580000000000002,N/A,N/A +2012,5,24,4,30,100720,99570,98460,81.4,0,10.17,11.26,11.540000000000001,11.72,11.84,11.94,12.01,12.07,12.15,174.28,174.31,174.28,174.24,174.20000000000002,174.17000000000002,174.12,174.08,174,25.580000000000002,25.21,25.02,24.82,24.62,24.43,24.23,24.04,23.650000000000002,N/A,N/A +2012,5,24,5,30,100700,99550,98440,82.24,0,10.77,11.88,12.16,12.34,12.46,12.540000000000001,12.6,12.65,12.71,169.33,169.85,170.17000000000002,170.5,170.8,171.08,171.36,171.62,172.16,25.8,25.44,25.27,25.060000000000002,24.87,24.68,24.48,24.3,23.91,N/A,N/A +2012,5,24,6,30,100700,99550,98430,82.3,0,10.93,12.07,12.38,12.56,12.68,12.780000000000001,12.85,12.9,12.99,176.57,176.67000000000002,176.64000000000001,176.61,176.57,176.52,176.47,176.43,176.32,25.72,25.330000000000002,25.150000000000002,24.94,24.75,24.55,24.36,24.17,23.78,N/A,N/A +2012,5,24,7,30,100700,99550,98430,83.77,0,10.96,12.120000000000001,12.4,12.58,12.700000000000001,12.780000000000001,12.85,12.89,12.96,173.01,173.19,173.28,173.39000000000001,173.48,173.58,173.68,173.78,173.98,25.71,25.32,25.14,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A +2012,5,24,8,30,100680,99530,98410,85.76,0,11.41,12.65,12.96,13.16,13.3,13.4,13.48,13.55,13.64,176.52,176.25,176.15,176.08,176.02,175.97,175.93,175.89000000000001,175.84,25.59,25.19,25.01,24.8,24.61,24.41,24.21,24.03,23.64,N/A,N/A +2012,5,24,9,30,100680,99530,98420,83.18,0,11.44,12.71,13.040000000000001,13.25,13.39,13.51,13.6,13.67,13.77,175.72,175.76,175.79,175.81,175.84,175.86,175.87,175.89000000000001,175.93,25.82,25.44,25.26,25.060000000000002,24.86,24.67,24.47,24.28,23.900000000000002,N/A,N/A +2012,5,24,10,30,100710,99560,98450,82.94,0,11.5,12.75,13.09,13.3,13.46,13.58,13.67,13.75,13.870000000000001,171.36,171.61,171.69,171.78,171.86,171.94,172.02,172.1,172.25,25.82,25.45,25.27,25.060000000000002,24.87,24.68,24.48,24.29,23.91,N/A,N/A +2012,5,24,11,30,100710,99570,98450,79.89,0,11.77,13.14,13.5,13.75,13.92,14.05,14.15,14.24,14.35,175.25,174.89000000000001,174.82,174.78,174.75,174.74,174.73,174.73,174.74,25.97,25.6,25.41,25.21,25.01,24.82,24.62,24.43,24.04,N/A,N/A +2012,5,24,12,30,100750,99600,98480,81.84,0,11.870000000000001,13.18,13.51,13.72,13.86,13.96,14.030000000000001,14.08,14.15,174.36,174.42000000000002,174.5,174.59,174.68,174.75,174.84,174.92000000000002,175.08,25.95,25.580000000000002,25.400000000000002,25.19,25,24.8,24.61,24.42,24.03,N/A,N/A +2012,5,24,13,30,100780,99630,98520,79.81,0,11.65,12.96,13.32,13.540000000000001,13.700000000000001,13.81,13.9,13.96,14.05,180.1,180.44,180.59,180.71,180.81,180.9,180.96,181.02,181.12,26.150000000000002,25.79,25.61,25.400000000000002,25.21,25.01,24.82,24.63,24.240000000000002,N/A,N/A +2012,5,24,14,30,100840,99690,98580,81.25,0,11,12.19,12.49,12.68,12.81,12.91,12.99,13.040000000000001,13.13,182.74,182.11,181.92000000000002,181.74,181.58,181.44,181.31,181.20000000000002,180.98,26.13,25.78,25.6,25.400000000000002,25.21,25.02,24.82,24.63,24.25,N/A,N/A +2012,5,24,15,30,100870,99720,98610,76.85000000000001,0,11.68,13.030000000000001,13.36,13.56,13.69,13.780000000000001,13.84,13.89,13.93,178.02,178.61,178.81,178.97,179.1,179.20000000000002,179.28,179.35,179.46,26.42,26.09,25.91,25.71,25.52,25.330000000000002,25.13,24.95,24.560000000000002,N/A,N/A +2012,5,24,16,30,100890,99740,98630,77.53,0,11.09,12.31,12.63,12.82,12.96,13.06,13.14,13.200000000000001,13.290000000000001,178.78,178.77,178.81,178.87,178.92000000000002,178.97,179.03,179.08,179.18,26.45,26.14,25.97,25.78,25.59,25.41,25.22,25.04,24.66,N/A,N/A +2012,5,24,17,30,100920,99770,98660,77.63,0,10.1,11.14,11.42,11.6,11.74,11.84,11.94,12.02,12.16,179.3,179.73,179.91,180.1,180.29,180.46,180.62,180.77,181.06,26.47,26.16,25.990000000000002,25.8,25.62,25.44,25.25,25.07,24.69,N/A,N/A +2012,5,24,18,30,100950,99800,98690,77.21000000000001,0,10.5,11.73,12.05,12.23,12.370000000000001,12.46,12.52,12.57,12.63,178.51,178.79,178.9,179.01,179.09,179.16,179.23,179.29,179.4,26.560000000000002,26.240000000000002,26.060000000000002,25.86,25.67,25.48,25.28,25.09,24.71,N/A,N/A +2012,5,24,19,30,100930,99780,98670,75.73,0,10.8,11.92,12.21,12.370000000000001,12.47,12.55,12.6,12.65,12.700000000000001,174.89000000000001,175.37,175.59,175.76,175.9,176.02,176.12,176.20000000000002,176.35,26.67,26.38,26.23,26.03,25.85,25.67,25.48,25.3,24.92,N/A,N/A +2012,5,24,20,30,100890,99740,98630,76.21000000000001,0,9.34,10.34,10.58,10.74,10.85,10.93,10.99,11.040000000000001,11.11,168.71,169.09,169.34,169.6,169.84,170.06,170.28,170.49,170.91,26.64,26.34,26.17,25.98,25.79,25.61,25.41,25.23,24.85,N/A,N/A +2012,5,24,21,30,100880,99740,98620,73.01,0,9.49,10.540000000000001,10.8,10.97,11.09,11.19,11.27,11.33,11.44,168.72,168.96,169.01,169.05,169.08,169.11,169.14000000000001,169.17000000000002,169.23,26.72,26.44,26.28,26.09,25.91,25.73,25.54,25.36,24.990000000000002,N/A,N/A +2012,5,24,22,30,100870,99720,98610,76.82000000000001,0,9.72,10.85,11.13,11.32,11.450000000000001,11.55,11.63,11.69,11.790000000000001,170.98,170.66,170.55,170.44,170.34,170.25,170.18,170.1,169.96,26.55,26.23,26.060000000000002,25.86,25.67,25.48,25.29,25.1,24.71,N/A,N/A +2012,5,24,23,30,100860,99720,98600,74.68,0,10.08,11.31,11.64,11.85,12.01,12.14,12.23,12.31,12.42,169.61,169.41,169.36,169.32,169.28,169.24,169.22,169.19,169.15,26.73,26.43,26.27,26.07,25.88,25.69,25.490000000000002,25.3,24.91,N/A,N/A +2012,5,25,0,30,100840,99690,98580,77.14,0,10.370000000000001,11.540000000000001,11.81,11.97,12.09,12.16,12.22,12.26,12.3,162.34,162.46,162.57,162.69,162.79,162.89000000000001,162.99,163.09,163.28,26.57,26.26,26.09,25.89,25.7,25.52,25.32,25.14,24.75,N/A,N/A +2012,5,25,1,30,100810,99660,98550,74.89,0,11.31,12.61,12.92,13.11,13.24,13.33,13.39,13.44,13.5,162.9,163,163.05,163.11,163.16,163.21,163.25,163.29,163.37,26.7,26.400000000000002,26.240000000000002,26.04,25.86,25.67,25.48,25.3,24.91,N/A,N/A +2012,5,25,2,30,100840,99700,98590,70.12,0,10.5,11.61,11.91,12.1,12.25,12.36,12.46,12.540000000000001,12.700000000000001,161.58,161.97,162.22,162.49,162.76,163.02,163.29,163.55,164.12,26.900000000000002,26.67,26.52,26.34,26.18,26.01,25.830000000000002,25.66,25.32,N/A,N/A +2012,5,25,3,30,100870,99730,98620,65.15,0,11.06,12.39,12.77,13.02,13.21,13.35,13.47,13.57,13.74,164.84,164.87,164.87,164.87,164.87,164.86,164.86,164.86,164.86,27.18,26.95,26.810000000000002,26.63,26.46,26.28,26.1,25.92,25.560000000000002,N/A,N/A +2012,5,25,4,30,100890,99740,98630,71.46000000000001,0,11.91,13.31,13.67,13.89,14.040000000000001,14.14,14.200000000000001,14.25,14.290000000000001,164.31,164.23,164.23,164.23,164.23,164.23,164.23,164.23,164.24,26.94,26.66,26.5,26.3,26.12,25.93,25.73,25.54,25.16,N/A,N/A +2012,5,25,5,30,100890,99740,98630,72.5,0,10.68,12,12.31,12.52,12.67,12.790000000000001,12.88,12.96,13.09,161.53,161.76,161.92000000000002,162.09,162.26,162.42000000000002,162.59,162.75,163.1,26.85,26.580000000000002,26.42,26.23,26.05,25.87,25.68,25.5,25.13,N/A,N/A +2012,5,25,6,30,100940,99790,98680,73.88,0,11.26,12.41,12.74,12.96,13.14,13.31,13.47,13.63,13.89,166.77,167.28,167.52,167.8,168.09,168.4,168.73,169.04,169.59,26.68,26.52,26.400000000000002,26.26,26.12,25.98,25.830000000000002,25.69,25.39,N/A,N/A +2012,5,25,7,30,100980,99830,98720,77.21000000000001,0,11.72,12.99,13.32,13.51,13.64,13.73,13.8,13.86,13.950000000000001,166.04,166.07,166.15,166.24,166.33,166.43,166.54,166.65,166.89000000000001,26.55,26.32,26.18,26.01,25.84,25.66,25.490000000000002,25.32,24.97,N/A,N/A +2012,5,25,8,30,101000,99850,98740,80,0,11.9,13.26,13.59,13.780000000000001,13.89,13.96,14,14.030000000000001,14.01,167.55,167.95000000000002,168.11,168.26,168.4,168.53,168.66,168.77,169.01,26.310000000000002,26.02,25.86,25.66,25.48,25.29,25.09,24.91,24.53,N/A,N/A +2012,5,25,9,30,101050,99900,98780,80.79,0,10.55,11.700000000000001,11.99,12.17,12.3,12.39,12.47,12.540000000000001,12.69,166.15,165.88,165.8,165.73,165.67000000000002,165.63,165.61,165.59,165.59,26.23,25.96,25.810000000000002,25.63,25.46,25.29,25.11,24.93,24.59,N/A,N/A +2012,5,25,10,30,101080,99930,98820,79.43,0,9.75,10.97,11.31,11.56,11.76,11.93,12.09,12.23,12.51,169.46,170.02,170.25,170.46,170.65,170.82,170.98,171.13,171.42000000000002,26.310000000000002,26.05,25.900000000000002,25.73,25.55,25.37,25.19,25.02,24.66,N/A,N/A +2012,5,25,11,30,101150,99990,98880,80.29,0,10.21,11.48,11.81,12.030000000000001,12.200000000000001,12.31,12.41,12.48,12.58,167.78,167.88,167.95000000000002,168.03,168.11,168.18,168.27,168.35,168.5,26.21,25.92,25.76,25.560000000000002,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A +2012,5,25,12,30,101210,100050,98940,77.78,0,9.97,11.040000000000001,11.3,11.450000000000001,11.540000000000001,11.6,11.64,11.66,11.68,171.29,170.52,170.22,169.93,169.69,169.47,169.29,169.12,168.85,26.38,26.11,25.95,25.77,25.580000000000002,25.400000000000002,25.2,25.02,24.650000000000002,N/A,N/A +2012,5,25,13,30,101300,100150,99030,79.14,0,8.5,9.39,9.620000000000001,9.76,9.86,9.94,10,10.05,10.14,172.07,172.17000000000002,172.18,172.18,172.17000000000002,172.15,172.13,172.11,172.08,26.330000000000002,26.080000000000002,25.92,25.740000000000002,25.560000000000002,25.38,25.2,25.02,24.66,N/A,N/A +2012,5,25,14,30,101370,100210,99090,79.42,0,8.38,9.34,9.57,9.72,9.82,9.89,9.94,9.98,10,170.44,170.36,170.38,170.41,170.45000000000002,170.48,170.52,170.56,170.64000000000001,26.41,26.13,25.97,25.78,25.59,25.41,25.22,25.04,24.650000000000002,N/A,N/A +2012,5,25,15,30,101410,100250,99130,78.72,0,6.55,7.2700000000000005,7.45,7.57,7.67,7.75,7.82,7.88,8.01,162,162.27,162.47,162.65,162.83,163,163.20000000000002,163.38,163.78,26.39,26.12,25.96,25.78,25.59,25.42,25.23,25.05,24.68,N/A,N/A +2012,5,25,16,30,101460,100300,99190,77.01,0,6.53,7.26,7.44,7.57,7.67,7.75,7.82,7.88,7.99,155.97,156.65,157.04,157.42000000000002,157.78,158.11,158.45000000000002,158.77,159.41,26.62,26.36,26.2,26.02,25.84,25.66,25.47,25.3,24.93,N/A,N/A +2012,5,25,17,30,101490,100340,99220,79.4,0,7.44,8.2,8.39,8.5,8.58,8.63,8.68,8.71,8.76,150.58,150.96,151.18,151.4,151.61,151.82,152.03,152.24,152.69,26.43,26.150000000000002,25.990000000000002,25.8,25.62,25.44,25.25,25.07,24.69,N/A,N/A +2012,5,25,18,30,101510,100360,99240,78.59,0,7.32,8.07,8.25,8.370000000000001,8.45,8.51,8.56,8.6,8.67,149.84,150.39000000000001,150.67000000000002,150.93,151.18,151.41,151.64000000000001,151.85,152.28,26.44,26.16,26,25.810000000000002,25.62,25.44,25.25,25.07,24.69,N/A,N/A +2012,5,25,19,30,101530,100370,99260,79.37,0,7.390000000000001,8.1,8.26,8.35,8.41,8.46,8.49,8.52,8.56,146.38,146.72,146.94,147.16,147.36,147.55,147.75,147.94,148.34,26.39,26.1,25.94,25.75,25.57,25.38,25.19,25.01,24.63,N/A,N/A +2012,5,25,20,30,101530,100370,99250,82.28,0,7.88,8.69,8.870000000000001,8.98,9.040000000000001,9.09,9.11,9.13,9.13,142.27,142.33,142.38,142.45000000000002,142.52,142.58,142.66,142.72,142.87,26.27,25.98,25.810000000000002,25.62,25.43,25.240000000000002,25.04,24.86,24.48,N/A,N/A +2012,5,25,21,30,101520,100360,99240,81.63,0,7.640000000000001,8.47,8.67,8.8,8.89,8.96,9.02,9.06,9.13,143.64000000000001,143.78,143.86,143.94,144.01,144.08,144.14000000000001,144.19,144.3,26.240000000000002,25.95,25.78,25.59,25.400000000000002,25.21,25.01,24.830000000000002,24.45,N/A,N/A +2012,5,25,22,30,101510,100350,99230,81.14,0,8.02,8.83,9.02,9.13,9.200000000000001,9.26,9.3,9.32,9.36,140.39000000000001,140.57,140.70000000000002,140.82,140.92000000000002,141.02,141.11,141.20000000000002,141.37,26.19,25.91,25.75,25.55,25.37,25.19,24.990000000000002,24.810000000000002,24.43,N/A,N/A +2012,5,25,23,30,101490,100330,99210,79.65,0,7.92,8.72,8.91,9.03,9.120000000000001,9.18,9.23,9.27,9.34,139.1,139.33,139.45000000000002,139.57,139.69,139.81,139.93,140.05,140.31,26.18,25.900000000000002,25.740000000000002,25.55,25.37,25.18,24.990000000000002,24.810000000000002,24.44,N/A,N/A +2012,5,26,0,30,101480,100330,99210,82.16,0,8.06,8.86,9.05,9.17,9.25,9.32,9.370000000000001,9.42,9.5,140.29,140.38,140.44,140.51,140.59,140.67000000000002,140.76,140.84,141.05,26.05,25.77,25.61,25.42,25.240000000000002,25.060000000000002,24.87,24.69,24.330000000000002,N/A,N/A +2012,5,26,1,30,101490,100330,99210,79.31,0,8.09,8.94,9.17,9.31,9.42,9.52,9.6,9.67,9.83,144.05,144.15,144.18,144.19,144.19,144.18,144.16,144.15,144.08,26.19,25.92,25.77,25.59,25.41,25.23,25.05,24.87,24.51,N/A,N/A +2012,5,26,2,30,101500,100340,99220,85.56,0,8.22,9.1,9.3,9.42,9.51,9.58,9.63,9.67,9.74,143.93,144.24,144.4,144.55,144.68,144.8,144.92000000000002,145.02,145.24,26.02,25.71,25.55,25.35,25.17,24.98,24.79,24.61,24.240000000000002,N/A,N/A +2012,5,26,3,30,101540,100380,99270,86.5,0,9.23,10.23,10.47,10.620000000000001,10.73,10.8,10.86,10.92,11,145.88,145.73,145.67000000000002,145.63,145.6,145.57,145.54,145.51,145.47,25.98,25.68,25.52,25.330000000000002,25.14,24.96,24.77,24.59,24.22,N/A,N/A +2012,5,26,4,30,101510,100350,99230,87.5,0,9.49,10.57,10.81,10.950000000000001,11.05,11.11,11.15,11.18,11.19,143.73,143.76,143.77,143.78,143.78,143.79,143.79,143.79,143.79,25.84,25.5,25.32,25.12,24.93,24.740000000000002,24.54,24.35,23.96,N/A,N/A +2012,5,26,5,30,101560,100410,99290,84.25,0,8.72,9.63,9.82,9.94,10.01,10.05,10.07,10.08,10.07,153.21,153.07,152.98,152.87,152.76,152.66,152.54,152.43,152.20000000000002,25.98,25.650000000000002,25.48,25.28,25.09,24.900000000000002,24.7,24.52,24.13,N/A,N/A +2012,5,26,6,30,101570,100410,99290,84.69,0,8.3,9.21,9.43,9.57,9.67,9.74,9.81,9.86,9.96,142.49,142.55,142.64000000000001,142.74,142.86,142.98,143.12,143.26,143.61,25.900000000000002,25.59,25.42,25.23,25.05,24.87,24.68,24.5,24.14,N/A,N/A +2012,5,26,7,30,101630,100470,99340,86.29,0,8.91,9.78,9.97,10.07,10.120000000000001,10.15,10.16,10.16,10.13,145.53,145.79,145.92000000000002,146.06,146.18,146.3,146.42000000000002,146.53,146.79,25.75,25.41,25.240000000000002,25.04,24.85,24.67,24.47,24.29,23.91,N/A,N/A +2012,5,26,8,30,101640,100480,99360,87.84,0,8.790000000000001,9.620000000000001,9.82,9.93,10.01,10.07,10.120000000000001,10.16,10.23,151.74,152.28,152.53,152.79,153.02,153.25,153.48,153.70000000000002,154.18,25.62,25.29,25.12,24.92,24.73,24.54,24.35,24.17,23.79,N/A,N/A +2012,5,26,9,30,101630,100470,99350,85.5,0,8.86,9.870000000000001,10.11,10.27,10.39,10.47,10.53,10.58,10.64,156.5,156.4,156.33,156.26,156.19,156.13,156.07,156,155.85,25.73,25.400000000000002,25.22,25.02,24.830000000000002,24.64,24.44,24.26,23.87,N/A,N/A +2012,5,26,10,30,101660,100500,99370,85.64,0,7.87,8.63,8.8,8.9,8.97,9.02,9.05,9.08,9.120000000000001,156.13,156.19,156.24,156.29,156.35,156.4,156.47,156.53,156.71,25.66,25.330000000000002,25.150000000000002,24.96,24.77,24.59,24.39,24.21,23.84,N/A,N/A +2012,5,26,11,30,101680,100520,99400,83.27,0,6.4,7.01,7.18,7.29,7.37,7.44,7.5,7.55,7.66,159.72,160.15,160.29,160.41,160.5,160.59,160.66,160.73,160.84,25.75,25.43,25.26,25.07,24.88,24.69,24.5,24.32,23.94,N/A,N/A +2012,5,26,12,30,101740,100570,99450,86.85000000000001,0,5.86,6.3,6.4,6.45,6.48,6.5,6.5200000000000005,6.53,6.55,152.85,153.24,153.44,153.66,153.88,154.1,154.33,154.55,155.04,25.55,25.21,25.03,24.830000000000002,24.64,24.45,24.25,24.060000000000002,23.67,N/A,N/A +2012,5,26,13,30,101760,100600,99480,83.06,0,5.24,5.66,5.73,5.7700000000000005,5.79,5.8,5.8100000000000005,5.8100000000000005,5.8,150.74,151.17000000000002,151.43,151.68,151.9,152.11,152.31,152.51,152.9,25.7,25.37,25.19,25,24.810000000000002,24.62,24.43,24.240000000000002,23.86,N/A,N/A +2012,5,26,14,30,101790,100630,99510,85.19,0,5.0600000000000005,5.45,5.53,5.57,5.6000000000000005,5.61,5.62,5.62,5.62,145.26,145.51,145.64000000000001,145.76,145.86,145.95000000000002,146.03,146.11,146.23,25.67,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.39,24.2,23.81,N/A,N/A +2012,5,26,15,30,101830,100660,99540,85.07000000000001,0,4.33,4.65,4.72,4.7700000000000005,4.8,4.83,4.86,4.88,4.92,134.12,134.58,134.86,135.1,135.32,135.53,135.73,135.93,136.36,25.59,25.26,25.080000000000002,24.89,24.7,24.51,24.310000000000002,24.13,23.75,N/A,N/A +2012,5,26,16,30,101820,100650,99530,84.22,0,5.42,5.78,5.84,5.84,5.84,5.82,5.79,5.76,5.67,133.99,134.44,134.69,134.94,135.17000000000002,135.41,135.66,135.91,136.5,25.57,25.22,25.04,24.85,24.66,24.47,24.27,24.09,23.71,N/A,N/A +2012,5,26,17,30,101810,100650,99530,85.42,0,5.82,6.2,6.24,6.24,6.23,6.2,6.16,6.13,6.0200000000000005,125.85000000000001,125.9,126.01,126.12,126.24000000000001,126.35000000000001,126.48,126.60000000000001,126.88000000000001,25.67,25.32,25.14,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A +2012,5,26,18,30,101790,100630,99510,84.61,0,5.58,5.96,6.03,6.05,6.07,6.07,6.07,6.0600000000000005,6.04,114.04,114.52,114.81,115.08,115.33,115.57000000000001,115.83,116.06,116.56,25.68,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A +2012,5,26,19,30,101770,100610,99490,82.41,0,5.98,6.47,6.5600000000000005,6.61,6.65,6.67,6.68,6.69,6.7,121.58,121.59,121.59,121.58,121.57000000000001,121.56,121.55,121.53,121.5,25.84,25.490000000000002,25.310000000000002,25.12,24.93,24.740000000000002,24.54,24.36,23.98,N/A,N/A +2012,5,26,20,30,101730,100570,99450,82.64,0,6.3500000000000005,6.9,7.01,7.08,7.12,7.15,7.17,7.18,7.19,117,117.02,117.12,117.23,117.33,117.44,117.56,117.67,117.89,26.01,25.67,25.5,25.3,25.11,24.92,24.72,24.54,24.150000000000002,N/A,N/A +2012,5,26,21,30,101700,100540,99420,81.87,0,6.8100000000000005,7.42,7.53,7.59,7.62,7.640000000000001,7.640000000000001,7.63,7.6000000000000005,125.08,124.84,124.75,124.65,124.57000000000001,124.49000000000001,124.41,124.34,124.19,26,25.67,25.5,25.3,25.11,24.92,24.73,24.54,24.16,N/A,N/A +2012,5,26,22,30,101660,100500,99380,79.13,0,6.61,7.24,7.38,7.46,7.5200000000000005,7.57,7.6000000000000005,7.63,7.68,121.5,121.53,121.55,121.57000000000001,121.59,121.62,121.65,121.68,121.74000000000001,26.14,25.84,25.68,25.48,25.3,25.12,24.92,24.740000000000002,24.36,N/A,N/A +2012,5,26,23,30,101620,100470,99340,80.43,0,6.8,7.44,7.58,7.66,7.71,7.75,7.7700000000000005,7.79,7.8100000000000005,126.42,126.39,126.37,126.36,126.35000000000001,126.32000000000001,126.3,126.28,126.21000000000001,26.04,25.73,25.57,25.37,25.18,25,24.8,24.62,24.23,N/A,N/A +2012,5,27,0,30,101600,100440,99320,82.59,0,7.07,7.76,7.930000000000001,8.03,8.11,8.16,8.21,8.26,8.33,123.44,123.46000000000001,123.5,123.51,123.52,123.52,123.52,123.52,123.5,25.94,25.64,25.48,25.29,25.1,24.92,24.72,24.54,24.17,N/A,N/A +2012,5,27,1,30,101560,100400,99280,83.09,0,7.88,8.67,8.84,8.94,9,9.03,9.05,9.06,9.05,125.39,125.36,125.36,125.36,125.36,125.36,125.36,125.37,125.37,25.97,25.66,25.490000000000002,25.3,25.11,24.92,24.73,24.54,24.16,N/A,N/A +2012,5,27,2,30,101560,100400,99280,79.29,0,7.96,8.790000000000001,8.96,9.06,9.120000000000001,9.16,9.18,9.19,9.200000000000001,130.23,130,129.93,129.87,129.82,129.79,129.76,129.74,129.71,26.04,25.72,25.55,25.35,25.16,24.97,24.78,24.6,24.22,N/A,N/A +2012,5,27,3,30,101540,100380,99260,81.47,0,8.39,9.15,9.34,9.43,9.5,9.55,9.58,9.61,9.67,127.87,128.4,128.62,128.84,129.03,129.21,129.4,129.58,129.94,25.79,25.490000000000002,25.330000000000002,25.14,24.96,24.79,24.6,24.43,24.07,N/A,N/A +2012,5,27,4,30,101520,100360,99240,81.78,0,7.83,8.69,8.9,9.03,9.120000000000001,9.19,9.24,9.290000000000001,9.34,132.19,132.05,132.03,132.03,132.04,132.05,132.08,132.1,132.16,25.740000000000002,25.41,25.23,25.04,24.84,24.650000000000002,24.46,24.27,23.89,N/A,N/A +2012,5,27,5,30,101510,100350,99230,81.28,0,7.140000000000001,7.83,8,8.1,8.17,8.23,8.27,8.3,8.370000000000001,138.17000000000002,138.41,138.6,138.81,139.01,139.21,139.43,139.62,140.06,25.77,25.45,25.28,25.09,24.900000000000002,24.72,24.53,24.35,23.97,N/A,N/A +2012,5,27,6,30,101510,100350,99230,82.5,0,7.15,7.72,7.87,7.95,8,8.040000000000001,8.08,8.1,8.16,141.09,141.4,141.51,141.61,141.73,141.84,141.97,142.1,142.43,25.69,25.36,25.19,24.990000000000002,24.8,24.62,24.43,24.25,23.89,N/A,N/A +2012,5,27,7,30,101530,100370,99250,86.05,0,7.08,7.73,7.890000000000001,7.98,8.05,8.1,8.15,8.18,8.23,141.68,141.87,141.96,142.05,142.14000000000001,142.23,142.32,142.4,142.58,25.560000000000002,25.21,25.03,24.830000000000002,24.64,24.45,24.26,24.07,23.69,N/A,N/A +2012,5,27,8,30,101520,100360,99240,84.17,0,6.92,7.51,7.640000000000001,7.71,7.76,7.79,7.82,7.83,7.86,145.29,145.43,145.53,145.63,145.72,145.8,145.89000000000001,145.97,146.14000000000001,25.64,25.29,25.12,24.92,24.72,24.54,24.34,24.16,23.77,N/A,N/A +2012,5,27,9,30,101510,100350,99230,83.56,0,6.13,6.6000000000000005,6.7,6.75,6.78,6.8100000000000005,6.83,6.8500000000000005,6.88,145.85,145.72,145.70000000000002,145.67000000000002,145.63,145.6,145.58,145.57,145.57,25.57,25.22,25.05,24.86,24.67,24.48,24.29,24.11,23.740000000000002,N/A,N/A +2012,5,27,10,30,101530,100370,99250,85.9,0,6.13,6.65,6.78,6.86,6.91,6.95,6.99,7.01,7.05,147.83,148.1,148.25,148.4,148.54,148.68,148.82,148.96,149.25,25.66,25.32,25.14,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A +2012,5,27,11,30,101530,100370,99250,85.4,0,6.58,7.12,7.24,7.29,7.33,7.3500000000000005,7.36,7.36,7.36,139.42000000000002,139.56,139.70000000000002,139.85,140.01,140.16,140.34,140.51,140.94,25.72,25.38,25.2,25.01,24.82,24.63,24.44,24.26,23.88,N/A,N/A +2012,5,27,12,30,101550,100390,99270,85.92,0,5.95,6.43,6.54,6.6000000000000005,6.640000000000001,6.67,6.69,6.7,6.72,132.27,132.44,132.54,132.63,132.71,132.78,132.85,132.92000000000002,133.07,25.7,25.36,25.19,24.990000000000002,24.8,24.61,24.41,24.23,23.85,N/A,N/A +2012,5,27,13,30,101550,100390,99270,84.87,0,5.7700000000000005,6.2700000000000005,6.38,6.44,6.48,6.51,6.54,6.5600000000000005,6.58,133.69,133.8,133.83,133.87,133.91,133.96,134.02,134.06,134.2,25.86,25.52,25.35,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.01,N/A,N/A +2012,5,27,14,30,101580,100430,99300,85.57000000000001,0,5.89,6.3500000000000005,6.45,6.5,6.53,6.54,6.5600000000000005,6.5600000000000005,6.5600000000000005,130.91,131.29,131.5,131.69,131.86,132.02,132.18,132.32,132.64000000000001,25.810000000000002,25.47,25.3,25.1,24.91,24.72,24.52,24.34,23.96,N/A,N/A +2012,5,27,15,30,101570,100410,99290,87.13,0,5.91,6.38,6.48,6.5200000000000005,6.55,6.5600000000000005,6.57,6.57,6.55,124.8,125.19,125.26,125.3,125.34,125.36,125.37,125.37,125.39,25.76,25.41,25.240000000000002,25.04,24.85,24.66,24.46,24.28,23.89,N/A,N/A +2012,5,27,16,30,101570,100420,99290,86.57000000000001,0,5.89,6.3100000000000005,6.390000000000001,6.43,6.45,6.46,6.46,6.45,6.43,123.62,123.89,123.98,124.09,124.19,124.28,124.37,124.47,124.67,25.82,25.47,25.3,25.1,24.91,24.72,24.52,24.34,23.96,N/A,N/A +2012,5,27,17,30,101540,100390,99260,85.71000000000001,0,5.3,5.66,5.73,5.76,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.75,119.22,119.47,119.61,119.73,119.84,119.95,120.06,120.16,120.38,25.84,25.490000000000002,25.310000000000002,25.12,24.92,24.73,24.54,24.35,23.97,N/A,N/A +2012,5,27,18,30,101520,100370,99240,84.73,0,5.5200000000000005,5.91,5.99,6.0200000000000005,6.04,6.05,6.0600000000000005,6.0600000000000005,6.05,122.18,122.35000000000001,122.46000000000001,122.57000000000001,122.67,122.77,122.87,122.96000000000001,123.16,25.91,25.560000000000002,25.38,25.18,24.990000000000002,24.8,24.6,24.42,24.03,N/A,N/A +2012,5,27,19,30,101490,100330,99210,84.08,0,6.24,6.74,6.84,6.88,6.91,6.93,6.93,6.93,6.92,126.09,126.26,126.36,126.46000000000001,126.55,126.64,126.73,126.82000000000001,127.02,25.98,25.650000000000002,25.47,25.27,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A +2012,5,27,20,30,101460,100300,99180,82.33,0,6.61,7.16,7.28,7.34,7.37,7.390000000000001,7.4,7.4,7.390000000000001,129.51,129.63,129.68,129.73,129.79,129.85,129.92000000000002,129.98,130.14000000000001,26.09,25.77,25.6,25.400000000000002,25.21,25.02,24.830000000000002,24.650000000000002,24.26,N/A,N/A +2012,5,27,21,30,101430,100270,99150,79.61,0,6.5,7.08,7.21,7.29,7.33,7.36,7.38,7.4,7.41,131.54,131.79,131.88,131.98,132.07,132.16,132.26,132.36,132.57,26.2,25.89,25.72,25.53,25.34,25.150000000000002,24.95,24.77,24.39,N/A,N/A +2012,5,27,22,30,101400,100250,99130,76.29,0,6.66,7.25,7.37,7.43,7.47,7.5,7.5,7.51,7.51,136.59,136.8,136.9,137,137.1,137.20000000000002,137.29,137.38,137.58,26.35,26.05,25.89,25.69,25.51,25.32,25.12,24.94,24.55,N/A,N/A +2012,5,27,23,30,101360,100210,99090,77.28,0,6.3500000000000005,6.88,6.98,7.0200000000000005,7.04,7.05,7.04,7.03,7,133.39000000000001,133.65,133.77,133.87,133.97,134.06,134.16,134.25,134.43,26.21,25.91,25.740000000000002,25.55,25.36,25.17,24.98,24.79,24.41,N/A,N/A +2012,5,28,0,30,101340,100180,99060,79.21000000000001,0,6,6.49,6.59,6.63,6.66,6.67,6.68,6.68,6.66,130.71,130.79,130.87,130.94,131.02,131.08,131.15,131.21,131.36,26,25.69,25.52,25.32,25.13,24.95,24.75,24.57,24.19,N/A,N/A +2012,5,28,1,30,101310,100150,99030,78.74,0,5.68,6.140000000000001,6.24,6.28,6.3100000000000005,6.32,6.32,6.32,6.3100000000000005,137.93,138,138.03,138.05,138.07,138.1,138.12,138.15,138.21,26.05,25.73,25.57,25.37,25.18,24.990000000000002,24.8,24.61,24.23,N/A,N/A +2012,5,28,2,30,101310,100150,99030,77.15,0,5.92,6.43,6.53,6.59,6.63,6.65,6.67,6.68,6.69,139.35,139.67000000000002,139.88,140.1,140.31,140.5,140.71,140.89000000000001,141.31,26.150000000000002,25.84,25.67,25.48,25.29,25.1,24.91,24.72,24.34,N/A,N/A +2012,5,28,3,30,101310,100160,99040,78.49,0,6.55,7.13,7.25,7.3100000000000005,7.3500000000000005,7.37,7.38,7.38,7.38,145.55,145.6,145.63,145.66,145.69,145.71,145.73,145.75,145.8,26.150000000000002,25.830000000000002,25.66,25.47,25.28,25.09,24.900000000000002,24.71,24.330000000000002,N/A,N/A +2012,5,28,4,30,101270,100120,99000,76.89,0,6.3100000000000005,6.8500000000000005,6.96,7,7.03,7.03,7.03,7.03,7,151.53,151.64000000000001,151.69,151.75,151.8,151.85,151.9,151.95000000000002,152.08,26.1,25.79,25.62,25.43,25.240000000000002,25.05,24.86,24.67,24.29,N/A,N/A +2012,5,28,5,30,101260,100110,98990,79.69,0,6.3500000000000005,6.9,7.01,7.07,7.1000000000000005,7.12,7.12,7.12,7.11,153.69,153.72,153.70000000000002,153.67000000000002,153.64000000000001,153.6,153.56,153.52,153.41,26.07,25.76,25.59,25.39,25.2,25.02,24.82,24.64,24.26,N/A,N/A +2012,5,28,6,30,101250,100100,98980,77.87,0,6.55,7.13,7.25,7.3100000000000005,7.3500000000000005,7.37,7.37,7.37,7.3500000000000005,157.19,157.17000000000002,157.20000000000002,157.25,157.31,157.37,157.46,157.54,157.76,26.21,25.89,25.71,25.52,25.330000000000002,25.14,24.94,24.76,24.37,N/A,N/A +2012,5,28,7,30,101270,100120,99000,78.33,0,6.55,7.1000000000000005,7.22,7.28,7.32,7.3500000000000005,7.36,7.38,7.38,161.66,161.8,161.85,161.9,161.94,161.99,162.03,162.08,162.17000000000002,26.25,25.93,25.76,25.57,25.38,25.19,25,24.810000000000002,24.43,N/A,N/A +2012,5,28,8,30,101250,100100,98980,74.28,0,6.25,6.82,6.96,7.04,7.1000000000000005,7.140000000000001,7.17,7.2,7.24,171.55,171.75,171.83,171.9,171.96,172.01,172.07,172.12,172.22,26.490000000000002,26.2,26.03,25.84,25.66,25.48,25.28,25.1,24.72,N/A,N/A +2012,5,28,9,30,101260,100110,98990,72.99,0,5.84,6.38,6.5,6.58,6.640000000000001,6.68,6.72,6.75,6.8100000000000005,172.14000000000001,172.24,172.24,172.22,172.20000000000002,172.19,172.17000000000002,172.14000000000001,172.11,26.650000000000002,26.36,26.2,26.01,25.82,25.64,25.45,25.27,24.89,N/A,N/A +2012,5,28,10,30,101280,100130,99010,76.74,0,5.61,6.1000000000000005,6.21,6.28,6.32,6.36,6.38,6.4,6.44,168.32,168.46,168.52,168.6,168.67000000000002,168.74,168.82,168.89000000000001,169.06,26.51,26.21,26.05,25.85,25.66,25.48,25.29,25.1,24.72,N/A,N/A +2012,5,28,11,30,101300,100150,99030,75.49,0,4.84,5.28,5.38,5.43,5.47,5.5,5.5200000000000005,5.54,5.58,174.13,174.19,174.19,174.18,174.18,174.17000000000002,174.17000000000002,174.16,174.14000000000001,26.7,26.41,26.25,26.05,25.87,25.68,25.490000000000002,25.310000000000002,24.93,N/A,N/A +2012,5,28,12,30,101330,100170,99060,75.89,0,5.4,5.9,6,6.0600000000000005,6.1000000000000005,6.12,6.13,6.140000000000001,6.140000000000001,170.28,170.13,170.08,170.03,169.96,169.89000000000001,169.82,169.75,169.6,26.77,26.48,26.310000000000002,26.11,25.93,25.740000000000002,25.54,25.36,24.97,N/A,N/A +2012,5,28,13,30,101340,100190,99070,77.51,0,5.89,6.38,6.47,6.51,6.5200000000000005,6.53,6.5200000000000005,6.5200000000000005,6.48,172.58,172.42000000000002,172.4,172.37,172.34,172.31,172.29,172.27,172.21,26.63,26.34,26.17,25.98,25.79,25.61,25.41,25.23,24.85,N/A,N/A +2012,5,28,14,30,101360,100210,99090,78.98,0,5.19,5.5600000000000005,5.62,5.65,5.66,5.66,5.65,5.64,5.61,164.88,165.22,165.49,165.75,166,166.24,166.5,166.76,167.37,26.35,26.04,25.87,25.68,25.5,25.310000000000002,25.12,24.94,24.57,N/A,N/A +2012,5,28,15,30,101380,100230,99110,81.48,0,4.86,5.22,5.29,5.33,5.3500000000000005,5.36,5.37,5.37,5.37,168.70000000000002,168.29,168.04,167.77,167.51,167.27,167.01,166.76,166.21,26.310000000000002,25.990000000000002,25.82,25.62,25.44,25.25,25.060000000000002,24.87,24.5,N/A,N/A +2012,5,28,16,30,101390,100230,99110,86.3,0,5.34,5.64,5.67,5.67,5.66,5.63,5.61,5.59,5.57,159.49,158.63,158.15,157.65,157.17000000000002,156.69,156.18,155.71,154.82,25.62,25.28,25.11,24.92,24.740000000000002,24.57,24.39,24.23,23.91,N/A,N/A +2012,5,28,17,30,101360,100200,99080,86.56,0,5.11,5.43,5.49,5.5200000000000005,5.54,5.54,5.55,5.55,5.55,160.88,161.37,161.72,162.08,162.43,162.79,163.21,163.62,164.72,25.68,25.32,25.150000000000002,24.95,24.76,24.57,24.38,24.2,23.84,N/A,N/A +2012,5,28,18,30,101350,100190,99070,88.23,5.9,6.03,6.5200000000000005,6.63,6.7,6.74,6.7700000000000005,6.8,6.8100000000000005,6.8500000000000005,167.9,167.92000000000002,167.84,167.77,167.69,167.62,167.56,167.5,167.45000000000002,25.77,25.42,25.240000000000002,25.04,24.86,24.68,24.48,24.310000000000002,23.94,N/A,N/A +2012,5,28,19,30,101350,100200,99080,87.35000000000001,0,5.14,5.49,5.57,5.61,5.63,5.65,5.66,5.67,5.68,195.75,195.67000000000002,195.61,195.52,195.41,195.28,195.12,194.96,194.5,25.7,25.35,25.17,24.97,24.79,24.6,24.41,24.22,23.85,N/A,N/A +2012,5,28,20,30,101300,100140,99020,82.98,0,5.1000000000000005,5.44,5.51,5.54,5.5600000000000005,5.57,5.57,5.58,5.59,183.03,182.92000000000002,182.87,182.83,182.8,182.79,182.79,182.81,182.91,25.87,25.53,25.36,25.16,24.98,24.79,24.6,24.42,24.060000000000002,N/A,N/A +2012,5,28,21,30,101260,100110,98990,84.75,0,4.89,5.22,5.29,5.32,5.34,5.3500000000000005,5.36,5.36,5.36,175.91,176.43,176.75,177.08,177.41,177.75,178.13,178.51,179.63,25.830000000000002,25.48,25.310000000000002,25.11,24.92,24.73,24.54,24.36,23.990000000000002,N/A,N/A +2012,5,28,22,30,101240,100090,98970,87.28,0,4.25,4.51,4.57,4.59,4.61,4.61,4.62,4.62,4.63,179.36,179.82,180.09,180.36,180.64000000000001,180.93,181.26,181.57,182.4,25.86,25.52,25.34,25.150000000000002,24.95,24.76,24.57,24.39,24,N/A,N/A +2012,5,28,23,30,101210,100060,98940,87.15,0,4.91,5.23,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3,5.29,5.26,183.76,184.19,184.45000000000002,184.74,185.02,185.3,185.61,185.92000000000002,186.65,26.07,25.73,25.560000000000002,25.37,25.18,24.990000000000002,24.8,24.61,24.240000000000002,N/A,N/A +2012,5,29,0,30,101190,100040,98920,86.54,0,5.1000000000000005,5.49,5.58,5.62,5.66,5.68,5.69,5.71,5.73,181.57,181.62,181.64000000000001,181.68,181.73,181.79,181.86,181.93,182.13,26.09,25.76,25.59,25.39,25.2,25.01,24.82,24.63,24.25,N/A,N/A +2012,5,29,1,30,101170,100010,98900,84.57000000000001,0,5.69,6.140000000000001,6.23,6.2700000000000005,6.3,6.32,6.33,6.34,6.34,189.56,189.65,189.76,189.86,189.96,190.07,190.18,190.29,190.56,26.240000000000002,25.92,25.75,25.560000000000002,25.37,25.18,24.990000000000002,24.810000000000002,24.43,N/A,N/A +2012,5,29,2,30,101180,100030,98910,83.62,0,6.36,6.890000000000001,7.01,7.0600000000000005,7.1000000000000005,7.12,7.13,7.140000000000001,7.140000000000001,184.18,184.32,184.42000000000002,184.5,184.59,184.67000000000002,184.75,184.83,185.02,26.310000000000002,26,25.830000000000002,25.63,25.44,25.26,25.060000000000002,24.88,24.5,N/A,N/A +2012,5,29,3,30,101190,100040,98920,79.41,0,6.83,7.43,7.55,7.6000000000000005,7.640000000000001,7.65,7.66,7.66,7.65,187.02,187.02,187.06,187.12,187.16,187.21,187.26,187.31,187.42000000000002,26.48,26.18,26.01,25.82,25.63,25.44,25.25,25.07,24.69,N/A,N/A +2012,5,29,4,30,101200,100050,98930,76.37,0,6.48,7.05,7.17,7.23,7.2700000000000005,7.29,7.3100000000000005,7.32,7.33,192.91,193.1,193.24,193.37,193.48000000000002,193.6,193.71,193.81,194.03,26.53,26.240000000000002,26.07,25.87,25.69,25.51,25.310000000000002,25.13,24.75,N/A,N/A +2012,5,29,5,30,101190,100030,98920,78.52,0,6.61,7.17,7.3,7.36,7.4,7.43,7.45,7.47,7.5,197.55,197.59,197.69,197.83,197.97,198.12,198.29,198.45000000000002,198.84,26.38,26.07,25.900000000000002,25.71,25.52,25.34,25.150000000000002,24.97,24.6,N/A,N/A +2012,5,29,6,30,101240,100090,98970,78.34,0,6.69,7.24,7.33,7.38,7.390000000000001,7.4,7.390000000000001,7.38,7.34,203.79,203.70000000000002,203.62,203.55,203.47,203.41,203.34,203.27,203.12,26.41,26.07,25.89,25.69,25.5,25.310000000000002,25.12,24.93,24.55,N/A,N/A +2012,5,29,7,30,101280,100120,99010,74.51,0,6.640000000000001,7.19,7.3100000000000005,7.36,7.390000000000001,7.4,7.4,7.4,7.38,206.91,207.01,207.03,207.03,207.02,207.02,207,206.98000000000002,206.94,26.560000000000002,26.240000000000002,26.07,25.87,25.68,25.490000000000002,25.29,25.11,24.72,N/A,N/A +2012,5,29,8,30,101300,100150,99030,73.69,0,6.13,6.65,6.78,6.8500000000000005,6.91,6.95,6.98,7,7.04,209.02,209.13,209.12,209.09,209.07,209.03,208.99,208.95000000000002,208.86,26.52,26.19,26.02,25.82,25.63,25.44,25.25,25.060000000000002,24.68,N/A,N/A +2012,5,29,9,30,101280,100130,99010,74.31,0,6.34,6.9,7.03,7.11,7.17,7.21,7.25,7.2700000000000005,7.32,207.22,207.41,207.54,207.66,207.76,207.86,207.96,208.04,208.21,26.51,26.18,26.01,25.810000000000002,25.62,25.43,25.23,25.04,24.66,N/A,N/A +2012,5,29,10,30,101290,100140,99020,76.07000000000001,0,6.69,7.28,7.42,7.5,7.55,7.59,7.61,7.63,7.65,218.09,217.94,217.85,217.76,217.67000000000002,217.59,217.51,217.44,217.29,26.44,26.11,25.93,25.73,25.54,25.35,25.150000000000002,24.97,24.580000000000002,N/A,N/A +2012,5,29,11,30,101300,100150,99030,77.12,0,7.28,7.84,7.96,8.01,8.040000000000001,8.05,8.040000000000001,8.040000000000001,8.01,215.72,215.59,215.43,215.25,215.07,214.89000000000001,214.71,214.54,214.17000000000002,26.34,26.01,25.84,25.63,25.44,25.25,25.05,24.86,24.48,N/A,N/A +2012,5,29,12,30,101310,100150,99040,75.68,0,6.44,6.96,7.09,7.17,7.22,7.26,7.3,7.33,7.38,218.65,218.6,218.57,218.55,218.52,218.5,218.48000000000002,218.46,218.41,26.37,26.04,25.86,25.66,25.48,25.29,25.09,24.91,24.53,N/A,N/A +2012,5,29,13,30,101340,100190,99070,78.38,0,6.43,6.98,7.11,7.18,7.24,7.28,7.3,7.33,7.36,219.57,219.53,219.52,219.51,219.5,219.49,219.48000000000002,219.48000000000002,219.47,26.34,25.990000000000002,25.82,25.62,25.42,25.23,25.03,24.85,24.46,N/A,N/A +2012,5,29,14,30,101370,100220,99100,78.52,0,6.7,7.26,7.390000000000001,7.46,7.5,7.53,7.55,7.5600000000000005,7.5600000000000005,223.46,223.35,223.29,223.23000000000002,223.17000000000002,223.12,223.07,223.02,222.91,26.45,26.12,25.95,25.740000000000002,25.55,25.36,25.16,24.98,24.59,N/A,N/A +2012,5,29,15,30,101400,100240,99130,78.15,0,6.36,6.88,7,7.0600000000000005,7.1000000000000005,7.140000000000001,7.15,7.17,7.19,222,221.81,221.78,221.74,221.72,221.70000000000002,221.68,221.66,221.64000000000001,26.490000000000002,26.16,25.990000000000002,25.79,25.6,25.41,25.21,25.03,24.64,N/A,N/A +2012,5,29,16,30,101390,100230,99120,77.51,0,5.82,6.28,6.4,6.46,6.51,6.55,6.58,6.61,6.65,225.27,225.31,225.36,225.42000000000002,225.47,225.53,225.59,225.66,225.81,26.55,26.22,26.05,25.85,25.66,25.48,25.29,25.1,24.73,N/A,N/A +2012,5,29,17,30,101400,100250,99130,79.79,0,6.09,6.54,6.63,6.67,6.7,6.71,6.71,6.71,6.7,219.24,219.32,219.41,219.49,219.56,219.62,219.68,219.75,219.87,26.53,26.19,26.02,25.82,25.63,25.44,25.240000000000002,25.060000000000002,24.68,N/A,N/A +2012,5,29,18,30,101370,100220,99110,79.73,0,6.41,6.9,7,7.05,7.07,7.09,7.09,7.09,7.07,208.38,208.71,208.88,209.03,209.16,209.29,209.41,209.52,209.73000000000002,26.68,26.34,26.17,25.97,25.77,25.59,25.39,25.2,24.82,N/A,N/A +2012,5,29,19,30,101340,100190,99070,78.4,0,6.6000000000000005,7.15,7.26,7.32,7.36,7.38,7.390000000000001,7.4,7.4,204.85,205.04,205.15,205.25,205.34,205.43,205.52,205.6,205.78,26.740000000000002,26.41,26.23,26.04,25.85,25.66,25.46,25.28,24.900000000000002,N/A,N/A +2012,5,29,20,30,101300,100150,99040,78.10000000000001,0,6.91,7.49,7.62,7.68,7.71,7.73,7.74,7.74,7.72,202.52,202.76,202.87,202.95000000000002,203.02,203.08,203.12,203.15,203.22,26.8,26.48,26.310000000000002,26.11,25.92,25.73,25.54,25.35,24.97,N/A,N/A +2012,5,29,21,30,101260,100110,99000,78.17,0,6.79,7.37,7.49,7.55,7.58,7.6000000000000005,7.61,7.61,7.6000000000000005,201.18,201.29,201.34,201.37,201.4,201.43,201.46,201.47,201.52,26.810000000000002,26.490000000000002,26.32,26.12,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A +2012,5,29,22,30,101210,100060,98950,77.75,0,7.16,7.78,7.91,7.97,8.01,8.03,8.040000000000001,8.040000000000001,8.02,204.21,204.32,204.4,204.47,204.53,204.6,204.67000000000002,204.73000000000002,204.87,26.810000000000002,26.5,26.34,26.14,25.95,25.77,25.57,25.39,25.01,N/A,N/A +2012,5,29,23,30,101170,100030,98910,78.74,0,7.43,8.09,8.23,8.290000000000001,8.33,8.34,8.35,8.35,8.33,205.83,205.93,205.98000000000002,206.04,206.09,206.14000000000001,206.20000000000002,206.25,206.38,26.78,26.47,26.3,26.11,25.92,25.73,25.54,25.36,24.98,N/A,N/A +2012,5,30,0,30,101140,99990,98880,81,0,7.67,8.33,8.48,8.540000000000001,8.58,8.6,8.6,8.6,8.58,202.61,202.68,202.68,202.70000000000002,202.71,202.72,202.73000000000002,202.75,202.79,26.67,26.35,26.18,25.98,25.8,25.61,25.41,25.23,24.86,N/A,N/A +2012,5,30,1,30,101130,99980,98870,82.82000000000001,0,7.5,8.16,8.290000000000001,8.36,8.4,8.41,8.42,8.42,8.4,199.44,199.49,199.53,199.58,199.62,199.66,199.71,199.75,199.87,26.57,26.240000000000002,26.07,25.87,25.68,25.490000000000002,25.3,25.11,24.73,N/A,N/A +2012,5,30,2,30,101140,99990,98880,82.44,0,7.54,8.18,8.32,8.38,8.41,8.43,8.43,8.43,8.4,201.67000000000002,201.64000000000001,201.67000000000002,201.69,201.72,201.74,201.76,201.79,201.84,26.59,26.26,26.09,25.89,25.7,25.51,25.32,25.14,24.77,N/A,N/A +2012,5,30,3,30,101170,100020,98900,83.92,0,7.6000000000000005,8.27,8.41,8.47,8.52,8.540000000000001,8.540000000000001,8.540000000000001,8.52,201.33,201.37,201.4,201.42000000000002,201.45000000000002,201.47,201.51,201.54,201.61,26.51,26.17,26,25.8,25.62,25.43,25.23,25.05,24.67,N/A,N/A +2012,5,30,4,30,101160,100010,98900,82.75,0,7.25,7.87,8.01,8.07,8.11,8.120000000000001,8.13,8.13,8.11,205.20000000000002,205.24,205.27,205.3,205.33,205.35,205.38,205.41,205.46,26.580000000000002,26.26,26.09,25.89,25.7,25.51,25.32,25.14,24.76,N/A,N/A +2012,5,30,5,30,101140,99990,98870,83.86,0,7.15,7.74,7.87,7.930000000000001,7.97,7.99,8,8,7.99,204.87,204.79,204.78,204.77,204.77,204.77,204.78,204.79,204.82,26.490000000000002,26.150000000000002,25.98,25.78,25.6,25.41,25.22,25.04,24.66,N/A,N/A +2012,5,30,6,30,101160,100010,98890,85.98,0,7.33,7.97,8.11,8.19,8.23,8.26,8.27,8.28,8.27,199.26,199.29,199.29,199.28,199.27,199.25,199.23000000000002,199.20000000000002,199.15,26.39,26.04,25.87,25.66,25.48,25.28,25.09,24.900000000000002,24.52,N/A,N/A +2012,5,30,7,30,101190,100040,98930,84.2,0,6.91,7.54,7.68,7.76,7.82,7.8500000000000005,7.87,7.890000000000001,7.9,207.3,207.47,207.54,207.62,207.70000000000002,207.77,207.84,207.91,208.05,26.560000000000002,26.23,26.060000000000002,25.86,25.67,25.48,25.28,25.09,24.71,N/A,N/A +2012,5,30,8,30,101130,99980,98860,85.10000000000001,0,7.3100000000000005,7.92,8.06,8.13,8.18,8.2,8.22,8.23,8.22,204.87,204.77,204.67000000000002,204.58,204.52,204.47,204.42000000000002,204.38,204.3,26.3,25.95,25.77,25.57,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A +2012,5,30,9,30,101170,100020,98910,86.35000000000001,0,5.9,6.38,6.5,6.57,6.63,6.66,6.69,6.71,6.75,203.49,203.66,203.74,203.81,203.86,203.9,203.93,203.97,204.02,26.29,25.93,25.76,25.560000000000002,25.37,25.17,24.97,24.79,24.400000000000002,N/A,N/A +2012,5,30,10,30,101160,100010,98890,80.33,0,6.1000000000000005,6.6000000000000005,6.73,6.8100000000000005,6.87,6.92,6.97,7.01,7.1000000000000005,206.23000000000002,205.81,205.62,205.45000000000002,205.31,205.19,205.09,204.99,204.86,26.32,25.97,25.8,25.6,25.41,25.23,25.03,24.85,24.48,N/A,N/A +2012,5,30,11,30,101200,100040,98930,80.02,0,5.32,5.73,5.83,5.88,5.91,5.94,5.95,5.97,5.98,210.05,210.11,210.13,210.13,210.13,210.11,210.09,210.06,209.97,26.490000000000002,26.150000000000002,25.98,25.78,25.59,25.400000000000002,25.2,25.02,24.64,N/A,N/A +2012,5,30,12,30,101220,100070,98950,83.36,0,5.73,6.2,6.3100000000000005,6.38,6.42,6.45,6.48,6.49,6.51,206.96,207.06,207.1,207.13,207.16,207.18,207.20000000000002,207.21,207.24,26.310000000000002,25.97,25.8,25.6,25.400000000000002,25.21,25.02,24.830000000000002,24.44,N/A,N/A +2012,5,30,13,30,101250,100100,98980,81.53,0,4.58,4.91,5,5.05,5.09,5.12,5.15,5.17,5.21,216.33,216.03,215.8,215.56,215.35,215.14000000000001,214.93,214.73000000000002,214.33,26.32,25.98,25.810000000000002,25.61,25.42,25.22,25.03,24.84,24.46,N/A,N/A +2012,5,30,14,30,101290,100140,99030,79.29,0,4.93,5.3,5.38,5.42,5.45,5.47,5.48,5.49,5.5,207.68,207.71,207.81,207.91,207.98000000000002,208.04,208.1,208.16,208.28,26.55,26.22,26.05,25.85,25.66,25.47,25.27,25.080000000000002,24.7,N/A,N/A +2012,5,30,15,30,101330,100180,99060,77.92,0,1.76,1.87,1.9000000000000001,1.9100000000000001,1.92,1.93,1.94,1.95,1.96,222.36,221.35,220.9,220.46,220.06,219.68,219.31,218.96,218.27,26.560000000000002,26.23,26.060000000000002,25.86,25.67,25.48,25.28,25.1,24.72,N/A,N/A +2012,5,30,16,30,101330,100180,99060,76.72,0,1.75,1.84,1.84,1.85,1.85,1.84,1.84,1.84,1.83,222.1,221.67000000000002,221.63,221.6,221.56,221.54,221.51,221.49,221.44,26.62,26.28,26.11,25.91,25.72,25.52,25.330000000000002,25.14,24.76,N/A,N/A +2012,5,30,17,30,101270,100120,99000,80.11,0,3.08,3.25,3.29,3.31,3.33,3.34,3.35,3.36,3.38,206.75,206.38,206.26,206.13,206.02,205.91,205.81,205.71,205.52,26.560000000000002,26.2,26.02,25.82,25.63,25.44,25.25,25.060000000000002,24.68,N/A,N/A +2012,5,30,18,30,101260,100110,99000,80.36,0,3.4,3.5700000000000003,3.6,3.6,3.6,3.6,3.6,3.6,3.59,202.86,202.9,202.97,203.02,203.06,203.1,203.14000000000001,203.18,203.26,26.650000000000002,26.29,26.11,25.91,25.71,25.52,25.330000000000002,25.14,24.75,N/A,N/A +2012,5,30,19,30,101220,100070,98950,79.3,0,3.62,3.8000000000000003,3.83,3.84,3.85,3.85,3.84,3.84,3.83,189,189.4,189.66,189.9,190.11,190.3,190.49,190.67000000000002,191.01,26.7,26.330000000000002,26.16,25.95,25.76,25.57,25.37,25.19,24.8,N/A,N/A +2012,5,30,20,30,101140,99990,98880,79.2,0,4.33,4.59,4.63,4.64,4.65,4.65,4.65,4.64,4.63,190.14000000000001,190.14000000000001,190.13,190.12,190.12,190.11,190.1,190.09,190.04,26.69,26.330000000000002,26.150000000000002,25.95,25.76,25.57,25.37,25.19,24.8,N/A,N/A +2012,5,30,21,30,101080,99930,98810,79.05,0,5.34,5.71,5.79,5.82,5.84,5.8500000000000005,5.86,5.86,5.8500000000000005,190.49,190.38,190.29,190.19,190.1,190,189.9,189.81,189.61,26.68,26.34,26.17,25.97,25.77,25.59,25.39,25.2,24.82,N/A,N/A +2012,5,30,22,30,101010,99860,98740,79.33,0,5.86,6.3100000000000005,6.41,6.46,6.5,6.53,6.55,6.5600000000000005,6.59,195.75,195.72,195.72,195.72,195.73000000000002,195.74,195.75,195.76,195.78,26.66,26.32,26.16,25.95,25.77,25.580000000000002,25.38,25.2,24.82,N/A,N/A +2012,5,30,23,30,100970,99820,98700,79.45,0,7.140000000000001,7.73,7.86,7.92,7.95,7.97,7.98,7.98,7.96,200.11,200.07,200.06,200.03,200.01,199.99,199.97,199.95000000000002,199.91,26.62,26.29,26.12,25.92,25.73,25.54,25.35,25.16,24.78,N/A,N/A +2012,5,31,0,30,100930,99790,98670,82.96000000000001,0,7.01,7.61,7.75,7.8100000000000005,7.86,7.890000000000001,7.9,7.91,7.91,196.99,197.19,197.27,197.32,197.35,197.39000000000001,197.4,197.42000000000002,197.44,26.490000000000002,26.150000000000002,25.98,25.78,25.59,25.400000000000002,25.2,25.01,24.63,N/A,N/A +2012,5,31,1,30,100910,99760,98650,79.15,0,6.5600000000000005,7.1000000000000005,7.23,7.3,7.34,7.37,7.390000000000001,7.4,7.41,186.88,187.1,187.24,187.33,187.39000000000001,187.43,187.46,187.48,187.49,26.53,26.2,26.03,25.830000000000002,25.64,25.45,25.26,25.07,24.69,N/A,N/A +2012,5,31,2,30,100880,99740,98630,79.53,0,7.21,7.83,7.97,8.05,8.1,8.13,8.15,8.17,8.19,189.76,189.61,189.55,189.5,189.47,189.43,189.4,189.37,189.32,26.490000000000002,26.150000000000002,25.98,25.77,25.59,25.400000000000002,25.2,25.02,24.64,N/A,N/A +2012,5,31,3,30,100920,99770,98660,77.64,0,7.390000000000001,8.040000000000001,8.19,8.27,8.32,8.35,8.370000000000001,8.39,8.41,185.15,185.25,185.37,185.47,185.55,185.63,185.71,185.78,185.92000000000002,26.560000000000002,26.240000000000002,26.060000000000002,25.87,25.68,25.490000000000002,25.3,25.11,24.73,N/A,N/A +2012,5,31,4,30,100920,99770,98660,81.02,0,7.38,8.05,8.21,8.3,8.36,8.4,8.43,8.45,8.47,191.58,191.84,191.89000000000001,191.91,191.93,191.94,191.95000000000002,191.96,191.96,26.43,26.09,25.91,25.71,25.51,25.32,25.13,24.94,24.55,N/A,N/A +2012,5,31,5,30,100860,99710,98600,81.41,0,8.33,9.1,9.27,9.36,9.42,9.46,9.49,9.5,9.52,179.13,179.75,179.97,180.15,180.3,180.44,180.58,180.69,180.93,26.37,26.02,25.84,25.64,25.44,25.25,25.060000000000002,24.87,24.490000000000002,N/A,N/A +2012,5,31,6,30,100890,99740,98630,79.51,0,8.61,9.31,9.48,9.55,9.59,9.6,9.61,9.61,9.59,178.75,179.21,179.5,179.75,179.97,180.17000000000002,180.37,180.55,180.94,26.45,26.11,25.94,25.73,25.55,25.36,25.17,24.98,24.61,N/A,N/A +2012,5,31,7,30,100890,99750,98630,80.61,0,7.99,8.74,8.94,9.06,9.15,9.22,9.27,9.32,9.39,177.42000000000002,177.94,178.22,178.49,178.73,178.95000000000002,179.15,179.35,179.71,26.42,26.07,25.900000000000002,25.69,25.5,25.3,25.11,24.92,24.53,N/A,N/A +2012,5,31,8,30,100920,99780,98660,82.27,0,7.3,7.97,8.14,8.25,8.33,8.39,8.44,8.48,8.540000000000001,189.26,188.67000000000002,188.48,188.31,188.15,188.02,187.89000000000001,187.78,187.56,26.43,26.09,25.91,25.7,25.51,25.32,25.12,24.93,24.55,N/A,N/A +2012,5,31,9,30,100880,99740,98630,79.42,0,7.98,8.69,8.88,8.98,9.05,9.1,9.13,9.16,9.21,188.06,188.17000000000002,188.16,188.11,188.06,187.99,187.9,187.82,187.61,26.51,26.17,26,25.8,25.61,25.42,25.23,25.04,24.67,N/A,N/A +2012,5,31,10,30,100910,99760,98650,80.76,0,7.32,7.94,8.09,8.15,8.19,8.22,8.22,8.23,8.21,186.41,186.56,186.70000000000002,186.83,186.94,187.04,187.15,187.25,187.47,26.48,26.14,25.96,25.76,25.57,25.38,25.19,25,24.61,N/A,N/A +2012,5,31,11,30,100920,99770,98660,77.7,0,6.42,6.93,7.07,7.140000000000001,7.2,7.23,7.26,7.29,7.33,195.69,195.36,195.25,195.17000000000002,195.11,195.06,195.02,194.99,194.95000000000002,26.72,26.400000000000002,26.240000000000002,26.04,25.85,25.66,25.47,25.29,24.91,N/A,N/A +2012,5,31,12,30,100940,99790,98680,78.2,0,6.2700000000000005,6.84,6.99,7.09,7.16,7.21,7.26,7.29,7.3500000000000005,196.78,196.76,196.73000000000002,196.70000000000002,196.66,196.62,196.57,196.52,196.43,26.72,26.400000000000002,26.23,26.03,25.84,25.650000000000002,25.45,25.27,24.88,N/A,N/A +2012,5,31,13,30,100960,99820,98700,80.59,0,6.65,7.2,7.33,7.41,7.46,7.5,7.53,7.5600000000000005,7.6000000000000005,204.19,204.42000000000002,204.46,204.48000000000002,204.5,204.52,204.53,204.53,204.54,26.63,26.310000000000002,26.13,25.93,25.740000000000002,25.55,25.36,25.17,24.79,N/A,N/A +2012,5,31,14,30,100970,99830,98710,80.74,0,6.17,6.8100000000000005,6.98,7.08,7.16,7.21,7.25,7.29,7.33,202.5,202.15,202.06,202,201.95000000000002,201.91,201.89000000000001,201.86,201.84,26.82,26.490000000000002,26.32,26.13,25.94,25.75,25.55,25.37,24.98,N/A,N/A +2012,5,31,15,30,101030,99880,98770,80.07000000000001,0,5.04,5.45,5.5600000000000005,5.63,5.68,5.71,5.74,5.76,5.79,210.55,210.64000000000001,210.70000000000002,210.75,210.78,210.82,210.85,210.87,210.92000000000002,26.830000000000002,26.51,26.34,26.14,25.95,25.76,25.560000000000002,25.38,25,N/A,N/A +2012,5,31,16,30,101050,99910,98790,80.60000000000001,0,5.34,5.76,5.86,5.91,5.94,5.96,5.97,5.97,5.97,212.39000000000001,212.37,212.31,212.27,212.25,212.22,212.21,212.20000000000002,212.17000000000002,26.97,26.64,26.48,26.27,26.09,25.89,25.7,25.51,25.13,N/A,N/A +2012,5,31,17,30,101040,99890,98780,80.2,0,5.91,6.36,6.47,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.61,6.62,199.98000000000002,199.83,199.68,199.53,199.39000000000001,199.25,199.12,198.98000000000002,198.73000000000002,27.03,26.71,26.54,26.34,26.150000000000002,25.96,25.77,25.580000000000002,25.2,N/A,N/A +2012,5,31,18,30,101060,99910,98800,80.45,0,4.7700000000000005,5.12,5.2,5.25,5.28,5.3,5.32,5.33,5.34,205.01,204.96,204.98000000000002,204.99,204.99,204.99,204.98000000000002,204.98000000000002,204.96,27.07,26.740000000000002,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.22,N/A,N/A +2012,5,31,19,30,100990,99850,98740,77.37,0,5.74,6.16,6.23,6.26,6.2700000000000005,6.2700000000000005,6.26,6.25,6.22,191.92000000000002,191.92000000000002,191.9,191.85,191.79,191.73000000000002,191.66,191.59,191.4,27.17,26.85,26.68,26.48,26.29,26.1,25.91,25.72,25.34,N/A,N/A +2012,5,31,20,30,100890,99750,98640,81.57000000000001,0,7.25,7.87,8,8.06,8.1,8.120000000000001,8.14,8.15,8.15,188.1,188.43,188.58,188.73,188.87,189,189.14000000000001,189.26,189.53,27.09,26.76,26.59,26.39,26.2,26.01,25.82,25.63,25.25,N/A,N/A +2012,5,31,21,30,100890,99750,98640,81.85000000000001,0,5.53,5.96,6.05,6.09,6.11,6.12,6.13,6.13,6.12,209.45000000000002,209.13,209.08,209.14000000000001,209.22,209.32,209.45000000000002,209.58,209.88,27.07,26.76,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A +2012,5,31,22,30,100950,99810,98700,82.45,0.7000000000000001,10.08,11.03,11.23,11.33,11.39,11.43,11.46,11.48,11.49,236.65,236.70000000000002,236.53,236.39000000000001,236.28,236.20000000000002,236.11,236.04,235.91,26.96,26.650000000000002,26.48,26.28,26.09,25.91,25.71,25.53,25.150000000000002,N/A,N/A +2012,5,31,23,30,101070,99910,98780,79.10000000000001,0,14.41,15.74,16.1,16.29,16.45,16.580000000000002,16.75,16.93,17.7,285.21,285.22,285.05,284.87,284.68,284.47,284.22,283.98,283.32,24.32,23.81,23.61,23.42,23.25,23.1,22.95,22.830000000000002,22.69,N/A,N/A +2012,6,1,0,30,100990,99840,98710,75.10000000000001,0,11.92,12.92,13.14,13.21,13.24,13.24,13.22,13.200000000000001,13.14,331.6,331.21,330.92,330.65000000000003,330.39,330.15000000000003,329.91,329.69,329.22,24.66,24.17,23.96,23.75,23.56,23.37,23.18,23,22.64,N/A,N/A +2012,6,1,1,30,100810,99660,98550,75.12,0,2.75,2.85,2.82,2.79,2.69,2.57,2.52,2.5,2.66,329.33,329.57,330.21,331.59000000000003,335.57,341.43,339.62,335.7,317.78000000000003,25.25,24.93,24.77,24.59,24.75,25.17,25.830000000000002,26.53,27.13,N/A,N/A +2012,6,1,2,30,100990,99840,98720,71.47,0,3.02,3.14,3.13,3.1,3.0500000000000003,2.99,2.88,2.77,2.49,66.57000000000001,67.03,67.04,67.05,67.03,66.99,67.38,67.91,68.54,26.080000000000002,25.76,25.6,25.42,25.26,25.11,24.990000000000002,24.900000000000002,24.79,N/A,N/A +2012,6,1,3,30,101000,99850,98730,77.78,0,3.09,3.2,3.21,3.2,3.19,3.17,3.14,3.11,3.0300000000000002,102.99000000000001,103.3,102.56,101.85000000000001,101.12,100.39,99.46000000000001,98.56,94.7,25.72,25.38,25.21,25.02,24.830000000000002,24.64,24.46,24.28,23.93,N/A,N/A +2012,6,1,4,30,101070,99920,98800,77.16,0,3.48,3.63,3.65,3.65,3.63,3.62,3.59,3.5700000000000003,3.52,181.71,181.56,181.54,181.52,181.51,181.51,181.51,181.51,181.54,25.82,25.47,25.3,25.09,24.91,24.71,24.52,24.330000000000002,23.95,N/A,N/A +2012,6,1,5,30,101090,99940,98820,70.58,0,2.45,2.61,2.66,2.69,2.72,2.74,2.7600000000000002,2.79,2.84,185.43,186.74,187.35,187.96,188.55,189.13,189.75,190.34,191.67000000000002,26.35,26.03,25.86,25.66,25.47,25.29,25.1,24.93,24.560000000000002,N/A,N/A +2012,6,1,6,30,101140,99990,98870,74.3,0,2.52,2.67,2.71,2.73,2.75,2.77,2.79,2.81,2.85,209.39000000000001,210.57,211.25,211.98000000000002,212.70000000000002,213.45000000000002,214.3,215.13,217.29,26.35,26.02,25.85,25.650000000000002,25.46,25.27,25.080000000000002,24.900000000000002,24.54,N/A,N/A +2012,6,1,7,30,101180,100030,98910,72.45,0,2.56,2.69,2.72,2.72,2.73,2.74,2.74,2.75,2.74,223.81,224.74,225.28,225.83,226.3,226.75,227.21,227.63,228.49,26.54,26.21,26.04,25.85,25.66,25.47,25.28,25.09,24.71,N/A,N/A +2012,6,1,8,30,101200,100050,98930,75.91,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.0500000000000003,3.04,3.0300000000000002,3.0100000000000002,2.97,233.19,233.5,233.66,233.84,234.01,234.19,234.38,234.56,234.98000000000002,26.42,26.080000000000002,25.91,25.71,25.52,25.330000000000002,25.14,24.96,24.57,N/A,N/A +2012,6,1,9,30,101210,100060,98950,78.91,0,2.93,3.11,3.15,3.17,3.19,3.19,3.21,3.21,3.22,227.77,228.66,229.07,229.48000000000002,229.86,230.23000000000002,230.6,230.94,231.67000000000002,26.38,26.05,25.88,25.68,25.490000000000002,25.310000000000002,25.11,24.93,24.54,N/A,N/A +2012,6,1,10,30,101240,100090,98970,82.09,0.7000000000000001,3.96,4.24,4.29,4.3100000000000005,4.33,4.33,4.33,4.33,4.32,257.99,258.93,259.23,259.5,259.73,259.93,260.11,260.29,260.61,26.26,25.91,25.740000000000002,25.54,25.35,25.16,24.96,24.78,24.39,N/A,N/A +2012,6,1,11,30,101290,100140,99020,77.52,0,4.91,5.19,5.24,5.25,5.25,5.24,5.22,5.21,5.16,289.85,290,290.02,290.06,290.09000000000003,290.13,290.17,290.22,290.34000000000003,26.23,25.87,25.7,25.5,25.310000000000002,25.12,24.92,24.740000000000002,24.36,N/A,N/A +2012,6,1,12,30,101330,100170,99050,81.82000000000001,0,3.83,4.03,4.07,4.08,4.08,4.08,4.08,4.08,4.0600000000000005,314.59000000000003,315.27,315.81,316.34000000000003,316.84000000000003,317.31,317.81,318.28000000000003,319.32,26.05,25.69,25.51,25.32,25.12,24.94,24.740000000000002,24.560000000000002,24.18,N/A,N/A +2012,6,1,13,30,101390,100230,99110,83.56,0,4.05,4.26,4.29,4.3,4.29,4.29,4.28,4.26,4.24,326.08,327.53000000000003,328.35,329.2,329.98,330.76,331.55,332.31,333.91,26.16,25.810000000000002,25.63,25.44,25.25,25.060000000000002,24.87,24.68,24.310000000000002,N/A,N/A +2012,6,1,14,30,101410,100250,99130,84.60000000000001,0,5.25,5.55,5.6000000000000005,5.62,5.62,5.61,5.6000000000000005,5.59,5.5600000000000005,32.62,32.06,31.84,31.62,31.42,31.220000000000002,31,30.79,30.3,25.34,24.94,24.76,24.560000000000002,24.36,24.18,23.990000000000002,23.8,23.43,N/A,N/A +2012,6,1,15,30,101420,100260,99140,79.34,0,6.41,6.82,6.890000000000001,6.9,6.890000000000001,6.87,6.84,6.8,6.71,37.81,37.97,38.02,38.07,38.08,38.09,38.09,38.08,37.97,25.54,25.13,24.95,24.75,24.55,24.37,24.17,23.990000000000002,23.62,N/A,N/A +2012,6,1,16,30,101430,100270,99150,73.82000000000001,0,5.65,5.99,6.0600000000000005,6.08,6.09,6.09,6.08,6.07,6.0600000000000005,62.120000000000005,62.04,61.92,61.800000000000004,61.67,61.54,61.36,61.18,60.620000000000005,25.91,25.54,25.36,25.17,24.98,24.8,24.61,24.44,24.080000000000002,N/A,N/A +2012,6,1,17,30,101440,100280,99160,74.12,0,5.29,5.6000000000000005,5.64,5.64,5.62,5.6000000000000005,5.5600000000000005,5.54,5.44,101.3,101.14,101.03,100.9,100.79,100.66,100.5,100.34,99.83,26.12,25.76,25.59,25.39,25.2,25.02,24.84,24.66,24.3,N/A,N/A +2012,6,1,18,30,101410,100260,99140,73.81,0,4.67,4.92,4.95,4.95,4.93,4.9,4.87,4.83,4.73,125.51,125.25,125.11,124.97,124.82000000000001,124.66,124.45,124.23,123.49000000000001,26.330000000000002,25.98,25.8,25.61,25.43,25.25,25.05,24.88,24.53,N/A,N/A +2012,6,1,19,30,101380,100220,99110,74,0,4.16,4.36,4.38,4.36,4.34,4.32,4.28,4.23,4.12,127.42,127.26,127.19,127.11,127.01,126.89,126.75,126.60000000000001,126.06,26.580000000000002,26.23,26.060000000000002,25.86,25.68,25.5,25.310000000000002,25.14,24.79,N/A,N/A +2012,6,1,20,30,101320,100170,99050,75.21000000000001,0,3.5300000000000002,3.68,3.69,3.68,3.66,3.63,3.6,3.5700000000000003,3.47,137.34,137.27,137.22,137.15,137.07,137,136.88,136.77,136.41,26.73,26.37,26.2,26,25.82,25.63,25.44,25.26,24.900000000000002,N/A,N/A +2012,6,1,21,30,101270,100120,99010,74.71000000000001,0,3.46,3.62,3.63,3.62,3.61,3.59,3.56,3.54,3.48,145.82,145.81,145.74,145.68,145.61,145.54,145.44,145.33,145.03,26.88,26.54,26.37,26.17,25.98,25.8,25.61,25.43,25.060000000000002,N/A,N/A +2012,6,1,22,30,101240,100090,98980,75.85000000000001,0,4.04,4.25,4.2700000000000005,4.2700000000000005,4.25,4.24,4.22,4.2,4.14,145.77,145.61,145.49,145.34,145.17000000000002,144.99,144.74,144.46,143.45000000000002,26.94,26.6,26.43,26.240000000000002,26.060000000000002,25.88,25.69,25.52,25.19,N/A,N/A +2012,6,1,23,30,101230,100080,98960,78.16,0,4.74,5.03,5.07,5.07,5.0600000000000005,5.04,5.0200000000000005,5,4.94,147.25,147.12,147.03,146.93,146.82,146.69,146.53,146.37,145.82,26.86,26.54,26.38,26.18,26,25.810000000000002,25.62,25.45,25.09,N/A,N/A +2012,6,2,0,30,101200,100050,98930,77.68,0,4.65,4.94,4.97,4.97,4.97,4.95,4.93,4.9,4.83,154.17000000000002,153.99,153.87,153.73,153.55,153.36,153.08,152.78,151.41,26.87,26.55,26.39,26.19,26.01,25.830000000000002,25.64,25.47,25.13,N/A,N/A +2012,6,2,1,30,101180,100030,98920,78.67,0,5.0600000000000005,5.38,5.41,5.41,5.4,5.38,5.36,5.33,5.28,145.66,145.47,145.33,145.15,144.94,144.69,144.3,143.88,141.37,26.830000000000002,26.52,26.35,26.16,25.98,25.8,25.62,25.45,25.18,N/A,N/A +2012,6,2,2,30,101220,100070,98960,79.35000000000001,0,5.28,5.62,5.67,5.68,5.67,5.66,5.64,5.61,5.5600000000000005,152.26,151.99,151.82,151.62,151.38,151.11,150.71,150.3,148.62,26.810000000000002,26.5,26.330000000000002,26.14,25.96,25.78,25.6,25.43,25.1,N/A,N/A +2012,6,2,3,30,101250,100100,98980,79.9,0,4.96,5.26,5.3100000000000005,5.3100000000000005,5.3,5.28,5.26,5.23,5.16,162.22,162.09,161.97,161.82,161.65,161.45000000000002,161.14000000000001,160.82,159.20000000000002,26.78,26.46,26.3,26.11,25.92,25.740000000000002,25.560000000000002,25.39,25.07,N/A,N/A +2012,6,2,4,30,101260,100110,98990,79.64,0,5.3100000000000005,5.66,5.71,5.72,5.71,5.7,5.68,5.66,5.62,167.32,167.15,167.02,166.84,166.65,166.42000000000002,166.1,165.76,164.20000000000002,26.82,26.5,26.34,26.14,25.96,25.78,25.6,25.43,25.12,N/A,N/A +2012,6,2,5,30,101300,100150,99040,80,0,4.91,5.24,5.3,5.32,5.33,5.34,5.34,5.33,5.33,169.23,168.95000000000002,168.78,168.58,168.37,168.15,167.87,167.57,166.71,26.8,26.48,26.32,26.13,25.95,25.76,25.580000000000002,25.400000000000002,25.060000000000002,N/A,N/A +2012,6,2,6,30,101360,100210,99100,80.71000000000001,0,5.3500000000000005,5.7,5.76,5.7700000000000005,5.78,5.7700000000000005,5.75,5.73,5.67,174.25,174.23,174.26,174.28,174.3,174.3,174.3,174.3,174.29,26.78,26.44,26.27,26.060000000000002,25.88,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A +2012,6,2,7,30,101410,100260,99140,79.88,0,4.75,5.05,5.11,5.15,5.17,5.19,5.21,5.22,5.26,182.78,182.64000000000001,182.48,182.29,182.09,181.88,181.65,181.43,180.86,26.810000000000002,26.47,26.310000000000002,26.11,25.93,25.740000000000002,25.55,25.37,25.01,N/A,N/A +2012,6,2,8,30,101380,100230,99110,81.33,0,3.88,4.15,4.22,4.2700000000000005,4.3,4.33,4.36,4.38,4.43,178.62,178.56,178.57,178.58,178.58,178.57,178.56,178.53,178.45000000000002,26.71,26.37,26.2,26,25.810000000000002,25.62,25.43,25.240000000000002,24.86,N/A,N/A +2012,6,2,9,30,101390,100240,99130,81.3,0,4.97,5.26,5.3,5.3100000000000005,5.3100000000000005,5.3,5.29,5.2700000000000005,5.24,203.87,202.81,202.26,201.67000000000002,201.12,200.58,200.02,199.47,198.33,26.740000000000002,26.400000000000002,26.23,26.03,25.84,25.650000000000002,25.45,25.27,24.89,N/A,N/A +2012,6,2,10,30,101390,100240,99120,81.01,0,4.74,5.08,5.17,5.22,5.25,5.28,5.3,5.32,5.3500000000000005,193.45000000000002,193.26,193.13,193,192.88,192.75,192.63,192.51,192.27,26.72,26.38,26.2,26,25.810000000000002,25.62,25.43,25.25,24.86,N/A,N/A +2012,6,2,11,30,101400,100240,99130,83.3,0,4,4.23,4.28,4.29,4.3100000000000005,4.3100000000000005,4.32,4.32,4.32,190.29,190.69,190.96,191.23000000000002,191.46,191.70000000000002,191.94,192.16,192.62,26.580000000000002,26.240000000000002,26.060000000000002,25.86,25.67,25.48,25.28,25.1,24.72,N/A,N/A +2012,6,2,12,30,101460,100310,99190,82.96000000000001,0,4.2,4.5,4.57,4.62,4.66,4.69,4.72,4.73,4.7700000000000005,220.89000000000001,220.23000000000002,219.8,219.43,219.11,218.8,218.52,218.27,217.75,26.84,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A +2012,6,2,13,30,101430,100270,99160,83.34,0,2.87,3.0500000000000003,3.1,3.14,3.17,3.2,3.23,3.25,3.31,196.41,196.56,196.64000000000001,196.74,196.82,196.89000000000001,196.96,197.04,197.20000000000002,26.76,26.42,26.25,26.05,25.86,25.67,25.48,25.29,24.91,N/A,N/A +2012,6,2,14,30,101480,100330,99220,84.07000000000001,0,3.56,3.73,3.7600000000000002,3.77,3.77,3.7600000000000002,3.7600000000000002,3.75,3.74,203.46,203.63,203.69,203.73000000000002,203.79,203.84,203.89000000000001,203.94,204.09,26.76,26.42,26.240000000000002,26.04,25.85,25.66,25.47,25.29,24.900000000000002,N/A,N/A +2012,6,2,15,30,101520,100370,99250,84.67,0,3.6,3.84,3.91,3.96,4,4.03,4.0600000000000005,4.09,4.15,211.36,212.52,212.94,213.29,213.6,213.88,214.14000000000001,214.38,214.84,26.89,26.560000000000002,26.38,26.19,26,25.810000000000002,25.62,25.43,25.060000000000002,N/A,N/A +2012,6,2,16,30,101500,100350,99230,83.63,0,4.37,4.64,4.7,4.73,4.75,4.76,4.7700000000000005,4.78,4.78,211.28,211.26,211.24,211.21,211.17000000000002,211.13,211.08,211.03,210.91,27.02,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A +2012,6,2,17,30,101500,100350,99240,85.39,0,3.79,4.03,4.09,4.12,4.15,4.17,4.19,4.21,4.23,214.99,214.97,214.97,214.96,214.95000000000002,214.94,214.93,214.91,214.89000000000001,27,26.650000000000002,26.47,26.27,26.080000000000002,25.89,25.69,25.51,25.12,N/A,N/A +2012,6,2,18,30,101480,100330,99210,84.09,0,4.67,4.98,5.0600000000000005,5.1000000000000005,5.13,5.15,5.17,5.19,5.22,220.44,220.24,220.11,219.96,219.83,219.68,219.52,219.36,218.99,27.04,26.69,26.51,26.310000000000002,26.12,25.93,25.740000000000002,25.55,25.17,N/A,N/A +2012,6,2,19,30,101470,100320,99200,82.9,0,4.66,4.95,5.01,5.04,5.05,5.0600000000000005,5.0600000000000005,5.07,5.07,220.54,220.32,220.17000000000002,220.01,219.85,219.68,219.5,219.32,218.87,27.1,26.740000000000002,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.22,N/A,N/A +2012,6,2,20,30,101430,100280,99170,84.09,0,3.5300000000000002,3.8000000000000003,3.88,3.94,3.99,4.03,4.07,4.11,4.18,217.93,217.36,217.09,216.83,216.6,216.38,216.16,215.94,215.5,27.150000000000002,26.8,26.62,26.42,26.23,26.04,25.84,25.66,25.28,N/A,N/A +2012,6,2,21,30,101390,100240,99130,83.99,0,3.42,3.64,3.71,3.7600000000000002,3.8000000000000003,3.83,3.86,3.89,3.96,215.37,215.35,215.29,215.22,215.16,215.11,215.05,215,214.9,27.14,26.79,26.62,26.42,26.23,26.03,25.84,25.650000000000002,25.27,N/A,N/A +2012,6,2,22,30,101370,100220,99110,83.72,0,4.7700000000000005,5.11,5.19,5.23,5.26,5.28,5.3,5.3100000000000005,5.33,203.86,203.6,203.43,203.23000000000002,203.04,202.86,202.67000000000002,202.48000000000002,202.09,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A +2012,6,2,23,30,101330,100190,99070,81.42,0,5.48,5.88,5.96,5.99,6.0200000000000005,6.03,6.03,6.04,6.04,184.62,184.59,184.58,184.54,184.48,184.42000000000002,184.33,184.23,183.97,27.22,26.900000000000002,26.73,26.53,26.35,26.16,25.97,25.78,25.41,N/A,N/A +2012,6,3,0,30,101310,100160,99050,82.12,0,4.88,5.24,5.32,5.36,5.39,5.41,5.42,5.43,5.45,179.16,179.25,179.33,179.4,179.46,179.52,179.57,179.61,179.72,27.12,26.79,26.62,26.42,26.240000000000002,26.05,25.85,25.67,25.29,N/A,N/A +2012,6,3,1,30,101270,100120,99010,84.36,0,4.8500000000000005,5.2,5.2700000000000005,5.3100000000000005,5.33,5.3500000000000005,5.37,5.38,5.4,175.91,175.87,175.87,175.87,175.9,175.92000000000002,175.94,175.96,176.04,26.93,26.59,26.42,26.22,26.03,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A +2012,6,3,2,30,101290,100140,99030,84.79,0,5.44,5.8500000000000005,5.95,6,6.04,6.0600000000000005,6.08,6.09,6.11,171.96,172,172.13,172.28,172.43,172.59,172.77,172.94,173.31,26.98,26.64,26.47,26.27,26.080000000000002,25.88,25.69,25.5,25.12,N/A,N/A +2012,6,3,3,30,101300,100160,99040,83.79,0,6.91,7.49,7.62,7.68,7.72,7.75,7.76,7.7700000000000005,7.7700000000000005,175.79,175.82,175.76,175.69,175.62,175.54,175.47,175.39000000000001,175.24,26.94,26.59,26.42,26.22,26.03,25.84,25.64,25.45,25.07,N/A,N/A +2012,6,3,4,30,101310,100160,99050,85.22,0,6.94,7.5200000000000005,7.65,7.72,7.7700000000000005,7.8,7.82,7.84,7.8500000000000005,181.25,181.09,180.98,180.88,180.8,180.73,180.66,180.6,180.48,26.89,26.54,26.36,26.16,25.97,25.77,25.580000000000002,25.39,25.01,N/A,N/A +2012,6,3,5,30,101320,100180,99060,85.75,0,7.2,7.82,7.97,8.05,8.11,8.15,8.17,8.19,8.2,181.59,182.39000000000001,182.72,183.01,183.25,183.46,183.65,183.82,184.13,26.97,26.62,26.45,26.240000000000002,26.05,25.86,25.66,25.48,25.1,N/A,N/A +2012,6,3,6,30,101360,100210,99090,84.27,0,6.86,7.46,7.61,7.7,7.76,7.8100000000000005,7.84,7.87,7.91,189.68,188.98,188.64000000000001,188.33,188.07,187.83,187.6,187.38,186.97,26.92,26.560000000000002,26.38,26.18,25.990000000000002,25.8,25.6,25.41,25.03,N/A,N/A +2012,6,3,7,30,101400,100250,99140,83.13,0,8.47,9.24,9.42,9.51,9.56,9.6,9.61,9.620000000000001,9.6,203.43,202.76,202.43,202.12,201.85,201.61,201.37,201.16,200.76,27,26.64,26.47,26.26,26.07,25.87,25.68,25.490000000000002,25.1,N/A,N/A +2012,6,3,8,30,101390,100240,99130,84.19,0,7.82,8.52,8.700000000000001,8.8,8.86,8.91,8.94,8.97,9,203.45000000000002,203.32,203.31,203.31,203.32,203.34,203.35,203.36,203.39000000000001,26.92,26.560000000000002,26.38,26.17,25.98,25.8,25.6,25.41,25.04,N/A,N/A +2012,6,3,9,30,101390,100240,99130,84.63,0,6.09,6.6000000000000005,6.74,6.82,6.88,6.93,6.98,7.01,7.08,205.04,205.04,204.95000000000002,204.85,204.76,204.68,204.59,204.51,204.34,26.91,26.560000000000002,26.38,26.18,25.990000000000002,25.8,25.61,25.43,25.05,N/A,N/A +2012,6,3,10,30,101410,100260,99140,81.32000000000001,0,7.82,8.46,8.6,8.66,8.68,8.69,8.68,8.66,8.6,203.70000000000002,203.52,203.48000000000002,203.43,203.38,203.34,203.29,203.25,203.16,27.09,26.75,26.580000000000002,26.38,26.19,26,25.810000000000002,25.62,25.25,N/A,N/A +2012,6,3,11,30,101430,100280,99160,83.28,0,7.32,7.95,8.1,8.18,8.23,8.26,8.290000000000001,8.31,8.33,198.23000000000002,198.05,197.99,197.91,197.83,197.74,197.64000000000001,197.55,197.33,27.02,26.67,26.490000000000002,26.29,26.1,25.91,25.72,25.54,25.16,N/A,N/A +2012,6,3,12,30,101430,100280,99160,83.38,0,6.47,6.96,7.07,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.13,7.11,182.81,183.35,183.68,183.98,184.25,184.5,184.75,184.98,185.44,27.04,26.7,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.18,N/A,N/A +2012,6,3,13,30,101460,100310,99190,82.68,0,6.01,6.49,6.6000000000000005,6.66,6.7,6.74,6.76,6.78,6.8,187.14000000000001,187.01,186.97,186.92000000000002,186.86,186.8,186.73,186.66,186.5,27.09,26.76,26.59,26.38,26.2,26.01,25.810000000000002,25.62,25.25,N/A,N/A +2012,6,3,14,30,101510,100350,99240,83.83,0,5.92,6.390000000000001,6.49,6.55,6.59,6.61,6.63,6.640000000000001,6.66,184.95000000000002,184.82,184.75,184.65,184.55,184.45000000000002,184.34,184.24,184,27.02,26.67,26.5,26.310000000000002,26.12,25.92,25.73,25.55,25.17,N/A,N/A +2012,6,3,15,30,101480,100330,99220,82.91,0,6.74,7.25,7.34,7.38,7.4,7.4,7.390000000000001,7.390000000000001,7.3500000000000005,182.54,182.9,183.09,183.28,183.44,183.59,183.73,183.87,184.12,27.11,26.76,26.580000000000002,26.38,26.2,26,25.810000000000002,25.62,25.240000000000002,N/A,N/A +2012,6,3,16,30,101490,100330,99220,82.91,0,6.36,6.88,7.01,7.09,7.140000000000001,7.17,7.2,7.22,7.26,181.25,181.19,181.22,181.26,181.3,181.32,181.36,181.39000000000001,181.46,27.12,26.77,26.6,26.39,26.2,26.01,25.810000000000002,25.62,25.240000000000002,N/A,N/A +2012,6,3,17,30,101480,100330,99210,84.04,0,6.2700000000000005,6.8,6.94,7.03,7.08,7.13,7.16,7.19,7.22,180.12,180.32,180.43,180.55,180.65,180.75,180.86,180.96,181.16,27.21,26.87,26.7,26.5,26.310000000000002,26.12,25.92,25.73,25.35,N/A,N/A +2012,6,3,18,30,101520,100370,99260,79.23,0,5.23,5.63,5.72,5.76,5.8,5.82,5.83,5.84,5.86,187.48,187.41,187.34,187.25,187.16,187.08,186.98,186.89000000000001,186.70000000000002,27.42,27.09,26.92,26.72,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,6,3,19,30,101440,100290,99170,81.9,0,6.63,7.21,7.3500000000000005,7.44,7.5,7.55,7.59,7.62,7.67,182.6,182.78,182.77,182.75,182.71,182.66,182.61,182.57,182.44,27.29,26.95,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A +2012,6,3,20,30,101420,100280,99160,82.96000000000001,0,6.03,6.6000000000000005,6.75,6.8500000000000005,6.93,6.99,7.04,7.09,7.16,179.77,179.99,180.09,180.19,180.27,180.35,180.42000000000002,180.49,180.62,27.240000000000002,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.75,25.37,N/A,N/A +2012,6,3,21,30,101380,100230,99120,82.11,0,7.1000000000000005,7.7,7.84,7.9,7.930000000000001,7.95,7.96,7.96,7.94,178.33,178.46,178.56,178.63,178.70000000000002,178.76,178.81,178.85,178.92000000000002,27.36,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,6,3,22,30,101340,100200,99080,83.01,0,6.5,7.03,7.16,7.22,7.2700000000000005,7.3,7.32,7.34,7.36,174.39000000000001,174.6,174.64000000000001,174.65,174.65,174.64000000000001,174.63,174.62,174.58,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.88,25.69,25.32,N/A,N/A +2012,6,3,23,30,101320,100170,99060,81.81,0,6.22,6.69,6.8,6.8500000000000005,6.890000000000001,6.91,6.92,6.93,6.94,170.78,170.85,170.93,170.98,171.03,171.07,171.11,171.16,171.24,27.12,26.79,26.62,26.42,26.23,26.04,25.85,25.66,25.29,N/A,N/A +2012,6,4,0,30,101290,100140,99030,81.5,0,5.59,6,6.09,6.140000000000001,6.17,6.2,6.22,6.24,6.28,170.43,170.52,170.56,170.61,170.66,170.71,170.76,170.81,170.93,27.11,26.78,26.61,26.42,26.23,26.04,25.85,25.67,25.3,N/A,N/A +2012,6,4,1,30,101270,100120,99010,82.32000000000001,0,6.38,6.87,6.98,7.03,7.07,7.09,7.1000000000000005,7.11,7.12,166.64000000000001,167.26,167.55,167.83,168.06,168.27,168.48,168.67000000000002,169.04,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A +2012,6,4,2,30,101280,100130,99020,81.71000000000001,0,7,7.61,7.74,7.8,7.8500000000000005,7.87,7.88,7.890000000000001,7.890000000000001,165.51,165.55,165.59,165.63,165.68,165.72,165.77,165.81,165.89000000000001,27.28,26.94,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A +2012,6,4,3,30,101270,100130,99020,81.06,0,8.26,9.05,9.23,9.33,9.39,9.42,9.44,9.46,9.46,167.26,167.39000000000001,167.52,167.68,167.82,167.97,168.12,168.26,168.56,27.37,27.05,26.88,26.68,26.490000000000002,26.3,26.1,25.91,25.53,N/A,N/A +2012,6,4,4,30,101250,100100,98990,79.58,0,8.45,9.32,9.52,9.64,9.72,9.78,9.83,9.86,9.91,181.81,181.43,181.26,181.09,180.94,180.8,180.66,180.54,180.29,27.42,27.09,26.92,26.72,26.53,26.34,26.14,25.95,25.57,N/A,N/A +2012,6,4,5,30,101270,100120,99010,79.27,0,8.93,9.83,10.03,10.13,10.200000000000001,10.24,10.26,10.27,10.27,180.88,181.14000000000001,181.28,181.42000000000002,181.54,181.65,181.76,181.87,182.08,27.55,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.29,26.11,25.72,N/A,N/A +2012,6,4,6,30,101260,100120,99010,79.74,0,7.45,8.16,8.33,8.42,8.49,8.540000000000001,8.57,8.6,8.65,191.15,190.96,190.83,190.68,190.54,190.39000000000001,190.25,190.11,189.82,27.46,27.14,26.98,26.78,26.59,26.400000000000002,26.2,26.02,25.64,N/A,N/A +2012,6,4,7,30,101290,100140,99030,83.55,0,7.33,7.99,8.16,8.25,8.32,8.370000000000001,8.4,8.42,8.46,191.70000000000002,191.54,191.52,191.55,191.59,191.63,191.69,191.75,191.89000000000001,27.27,26.94,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A +2012,6,4,8,30,101230,100080,98970,83.84,0,8.31,9.120000000000001,9.32,9.44,9.52,9.59,9.63,9.67,9.72,191.17000000000002,191.21,191.22,191.22,191.22,191.22,191.22,191.22,191.23000000000002,27.35,27.02,26.85,26.650000000000002,26.47,26.28,26.080000000000002,25.900000000000002,25.52,N/A,N/A +2012,6,4,9,30,101220,100080,98970,84.13,0,7.54,8.27,8.44,8.55,8.620000000000001,8.67,8.700000000000001,8.73,8.78,196.54,196.73000000000002,196.84,196.94,197.02,197.11,197.18,197.26,197.42000000000002,27.42,27.1,26.94,26.740000000000002,26.55,26.37,26.17,25.990000000000002,25.62,N/A,N/A +2012,6,4,10,30,101210,100070,98960,85.79,0,6.97,7.61,7.7700000000000005,7.87,7.94,7.99,8.02,8.05,8.1,193.41,193.45000000000002,193.43,193.42000000000002,193.43,193.44,193.45000000000002,193.47,193.53,27.400000000000002,27.080000000000002,26.91,26.71,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,6,4,11,30,101230,100080,98970,86.82000000000001,0,6.49,7.05,7.19,7.2700000000000005,7.33,7.36,7.390000000000001,7.42,7.44,194.06,194.31,194.44,194.59,194.74,194.89000000000001,195.04,195.19,195.52,27.36,27.04,26.87,26.67,26.48,26.29,26.1,25.91,25.54,N/A,N/A +2012,6,4,12,30,101250,100110,99000,85.89,0,4.79,5.17,5.2700000000000005,5.32,5.36,5.39,5.42,5.44,5.47,196.55,196.76,196.88,196.97,197.06,197.14000000000001,197.22,197.3,197.45000000000002,27.330000000000002,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A +2012,6,4,13,30,101260,100110,99010,85.9,0,6.44,6.99,7.1000000000000005,7.16,7.19,7.21,7.21,7.21,7.2,193.38,193.57,193.68,193.79,193.9,193.99,194.1,194.20000000000002,194.41,27.47,27.150000000000002,26.98,26.78,26.6,26.41,26.22,26.03,25.66,N/A,N/A +2012,6,4,14,30,101260,100110,99000,85,0,6.84,7.44,7.57,7.640000000000001,7.68,7.71,7.72,7.73,7.73,190.92000000000002,191.12,191.25,191.34,191.43,191.5,191.57,191.63,191.76,27.59,27.28,27.11,26.92,26.73,26.54,26.35,26.17,25.79,N/A,N/A +2012,6,4,15,30,101290,100150,99040,84.84,0,5.84,6.3100000000000005,6.41,6.45,6.47,6.48,6.48,6.47,6.45,196.61,196.63,196.65,196.68,196.71,196.75,196.79,196.84,196.94,27.59,27.28,27.11,26.92,26.73,26.55,26.35,26.17,25.8,N/A,N/A +2012,6,4,16,30,101280,100130,99020,84.04,0,5.15,5.55,5.63,5.67,5.7,5.73,5.74,5.75,5.7700000000000005,181.86,182.03,182.22,182.42000000000002,182.6,182.78,182.96,183.14000000000001,183.52,27.6,27.28,27.12,26.92,26.73,26.54,26.35,26.17,25.8,N/A,N/A +2012,6,4,17,30,101280,100130,99020,82.98,0,3.98,4.28,4.3500000000000005,4.39,4.42,4.45,4.46,4.48,4.5,191.32,191.56,191.76,191.93,192.07,192.19,192.3,192.39000000000001,192.55,27.62,27.29,27.12,26.92,26.740000000000002,26.54,26.35,26.16,25.79,N/A,N/A +2012,6,4,18,30,101240,100100,98990,84.64,0,3.8000000000000003,4.04,4.09,4.12,4.14,4.16,4.17,4.18,4.2,188.74,188.48,188.27,188.03,187.81,187.6,187.38,187.16,186.74,27.61,27.27,27.1,26.900000000000002,26.71,26.52,26.32,26.13,25.75,N/A,N/A +2012,6,4,19,30,101240,100100,98990,82.74,0,6.08,6.5600000000000005,6.65,6.69,6.71,6.72,6.71,6.71,6.68,196.74,196.69,196.68,196.66,196.66,196.64000000000001,196.64000000000001,196.63,196.63,27.66,27.330000000000002,27.17,26.96,26.78,26.59,26.39,26.2,25.82,N/A,N/A +2012,6,4,20,30,101200,100050,98940,82.14,0,6.45,6.97,7.09,7.13,7.16,7.17,7.17,7.17,7.140000000000001,189.82,189.82,189.83,189.83,189.84,189.84,189.84,189.84,189.87,27.61,27.29,27.12,26.92,26.73,26.54,26.35,26.16,25.78,N/A,N/A +2012,6,4,21,30,101120,99970,98860,81.36,0,7.46,8.11,8.24,8.290000000000001,8.32,8.33,8.33,8.32,8.290000000000001,190.81,190.94,191,191.07,191.13,191.20000000000002,191.26,191.32,191.44,27.51,27.19,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A +2012,6,4,22,30,101080,99930,98820,78.26,0,7.34,7.99,8.120000000000001,8.18,8.22,8.24,8.24,8.24,8.22,189.58,189.63,189.63,189.62,189.6,189.58,189.55,189.51,189.42000000000002,27.55,27.240000000000002,27.080000000000002,26.88,26.69,26.5,26.310000000000002,26.13,25.75,N/A,N/A +2012,6,4,23,30,101050,99900,98790,79.56,0,7.3500000000000005,8,8.13,8.2,8.24,8.26,8.27,8.28,8.27,188.4,188.29,188.19,188.08,187.97,187.86,187.75,187.64000000000001,187.41,27.43,27.11,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A +2012,6,5,0,30,100980,99840,98730,76.75,0,7.63,8.33,8.48,8.55,8.6,8.63,8.65,8.66,8.67,188.76,188.66,188.59,188.51,188.43,188.36,188.27,188.20000000000002,188.02,27.41,27.1,26.92,26.73,26.54,26.35,26.16,25.97,25.59,N/A,N/A +2012,6,5,1,30,100940,99790,98680,74.5,0,7.98,8.73,8.9,8.99,9.05,9.1,9.13,9.15,9.17,190.87,190.52,190.31,190.1,189.9,189.72,189.53,189.36,188.99,27.43,27.12,26.95,26.75,26.560000000000002,26.37,26.18,25.990000000000002,25.61,N/A,N/A +2012,6,5,2,30,100970,99820,98710,75.56,0,7.18,7.87,8.040000000000001,8.14,8.21,8.25,8.290000000000001,8.31,8.34,193.02,192.94,192.94,192.95000000000002,192.98000000000002,193.01,193.04,193.07,193.16,27.38,27.060000000000002,26.89,26.68,26.490000000000002,26.3,26.11,25.92,25.54,N/A,N/A +2012,6,5,3,30,100990,99850,98740,71.53,0,7.18,7.84,7.97,8.05,8.1,8.14,8.16,8.18,8.2,193.94,193.73000000000002,193.57,193.4,193.23000000000002,193.06,192.89000000000001,192.73000000000002,192.39000000000001,27.45,27.14,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A +2012,6,5,4,30,101000,99850,98740,72.16,0,6.4,7,7.140000000000001,7.22,7.28,7.32,7.3500000000000005,7.37,7.390000000000001,192.95000000000002,192.84,192.82,192.79,192.76,192.73000000000002,192.70000000000002,192.68,192.62,27.41,27.1,26.92,26.73,26.54,26.35,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,6,5,5,30,100970,99830,98720,70.57000000000001,0,6.55,7.12,7.24,7.3100000000000005,7.36,7.390000000000001,7.41,7.43,7.44,192.24,192.68,192.87,193.03,193.17000000000002,193.3,193.43,193.55,193.78,27.38,27.060000000000002,26.89,26.69,26.490000000000002,26.310000000000002,26.11,25.92,25.53,N/A,N/A +2012,6,5,6,30,101020,99870,98760,66.75,0,6.0600000000000005,6.54,6.63,6.67,6.69,6.71,6.71,6.72,6.72,197.79,198.27,198.53,198.78,199.01,199.22,199.42000000000002,199.61,199.99,27.46,27.16,26.990000000000002,26.79,26.6,26.42,26.22,26.03,25.650000000000002,N/A,N/A +2012,6,5,7,30,101010,99870,98760,68.01,0,5.92,6.4,6.49,6.53,6.5600000000000005,6.57,6.57,6.57,6.5600000000000005,211.75,211.42000000000002,211.16,210.91,210.67000000000002,210.44,210.22,210.01,209.57,27.39,27.080000000000002,26.91,26.71,26.52,26.34,26.14,25.95,25.57,N/A,N/A +2012,6,5,8,30,101020,99870,98760,67.01,0,5.4,5.86,5.96,6.0200000000000005,6.07,6.1000000000000005,6.13,6.15,6.19,216.9,216.65,216.56,216.49,216.43,216.38,216.34,216.3,216.25,27.39,27.080000000000002,26.91,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A +2012,6,5,9,30,100990,99850,98730,71.64,0,6.22,6.73,6.84,6.890000000000001,6.93,6.95,6.96,6.97,6.97,220.41,220.28,220.15,220.04,219.93,219.84,219.75,219.66,219.49,27.18,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.71,25.330000000000002,N/A,N/A +2012,6,5,10,30,101010,99860,98750,69.58,0,5.74,6.16,6.2700000000000005,6.32,6.3500000000000005,6.38,6.4,6.41,6.42,233.92000000000002,233.98000000000002,233.93,233.9,233.86,233.83,233.81,233.79,233.75,27.2,26.88,26.71,26.52,26.330000000000002,26.14,25.94,25.76,25.38,N/A,N/A +2012,6,5,11,30,101030,99890,98770,70.51,0,4.43,4.75,4.8100000000000005,4.83,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.83,240.82,240.6,240.49,240.4,240.32,240.26,240.19,240.13,240.04,27.21,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.75,25.37,N/A,N/A +2012,6,5,12,30,101030,99880,98770,72.68,0,4.79,5.13,5.21,5.25,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,250.23000000000002,250.27,250.28,250.3,250.32,250.34,250.36,250.38,250.41,27.09,26.76,26.59,26.38,26.2,26.01,25.810000000000002,25.62,25.240000000000002,N/A,N/A +2012,6,5,13,30,101050,99910,98790,70.52,0,4.07,4.36,4.43,4.47,4.5,4.53,4.54,4.5600000000000005,4.58,256.07,255.4,255.06,254.75,254.48000000000002,254.23000000000002,253.98000000000002,253.75,253.32,27.18,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.72,25.330000000000002,N/A,N/A +2012,6,5,14,30,101080,99930,98820,75.65,0,3.09,3.22,3.23,3.23,3.23,3.23,3.23,3.23,3.24,277.6,274.83,273.16,271.49,269.95,268.47,266.99,265.61,262.75,26.810000000000002,26.48,26.310000000000002,26.12,25.93,25.75,25.55,25.37,25,N/A,N/A +2012,6,5,15,30,101070,99920,98810,77.92,0,3.0300000000000002,3.14,3.15,3.15,3.14,3.13,3.12,3.1,3.08,256.46,256.01,255.63,255.25,254.88,254.51000000000002,254.09,253.70000000000002,252.78,26.68,26.330000000000002,26.150000000000002,25.95,25.77,25.580000000000002,25.39,25.21,24.830000000000002,N/A,N/A +2012,6,5,16,30,101050,99900,98790,75.07000000000001,0,2.89,3.06,3.09,3.12,3.13,3.15,3.17,3.19,3.23,234.02,233.79,233.75,233.69,233.63,233.56,233.49,233.41,233.21,26.88,26.53,26.36,26.16,25.97,25.79,25.6,25.42,25.05,N/A,N/A +2012,6,5,17,30,101030,99880,98770,72.25,0,2.67,2.82,2.86,2.88,2.91,2.92,2.94,2.96,3,202.91,203.25,203.61,203.97,204.32,204.66,205.01,205.35,206.14000000000001,27.080000000000002,26.740000000000002,26.57,26.38,26.2,26.02,25.830000000000002,25.66,25.3,N/A,N/A +2012,6,5,18,30,100980,99830,98720,71.63,0,4.19,4.41,4.43,4.43,4.43,4.41,4.39,4.37,4.3100000000000005,189.54,189.59,189.66,189.71,189.76,189.79,189.82,189.85,189.89000000000001,27.310000000000002,26.96,26.79,26.6,26.41,26.23,26.04,25.87,25.51,N/A,N/A +2012,6,5,19,30,100930,99780,98670,67.93,0,4.9,5.21,5.25,5.26,5.26,5.26,5.25,5.23,5.18,189.61,189.98,190.20000000000002,190.43,190.65,190.87,191.1,191.33,191.83,27.560000000000002,27.240000000000002,27.080000000000002,26.89,26.71,26.54,26.36,26.19,25.86,N/A,N/A +2012,6,5,20,30,100880,99730,98630,66.49,0,5.98,6.41,6.47,6.49,6.49,6.47,6.45,6.42,6.3500000000000005,186.56,186.75,186.87,187,187.12,187.24,187.36,187.48,187.73,27.71,27.400000000000002,27.240000000000002,27.060000000000002,26.88,26.7,26.52,26.35,26.01,N/A,N/A +2012,6,5,21,30,100850,99710,98600,66.92,0,6.17,6.63,6.7,6.71,6.7,6.68,6.65,6.61,6.5200000000000005,193.94,193.73000000000002,193.62,193.49,193.34,193.19,193,192.81,192.3,27.71,27.41,27.25,27.05,26.87,26.68,26.490000000000002,26.310000000000002,25.93,N/A,N/A +2012,6,5,22,30,100790,99650,98540,73.56,0,5.84,6.26,6.32,6.33,6.32,6.3100000000000005,6.28,6.26,6.19,195.43,195.6,195.69,195.81,195.93,196.04,196.17000000000002,196.29,196.6,27.47,27.16,26.990000000000002,26.810000000000002,26.62,26.44,26.26,26.080000000000002,25.73,N/A,N/A +2012,6,5,23,30,100770,99620,98520,75.86,0,6.18,6.62,6.69,6.7,6.7,6.68,6.65,6.62,6.51,198.21,198.16,198.16,198.17000000000002,198.18,198.19,198.19,198.18,198.08,27.36,27.04,26.87,26.67,26.48,26.29,26.09,25.900000000000002,25.5,N/A,N/A +2012,6,6,0,30,100790,99650,98540,69.24,0,5.84,6.32,6.41,6.46,6.49,6.51,6.5200000000000005,6.54,6.5600000000000005,197.9,197.78,197.70000000000002,197.6,197.5,197.39000000000001,197.27,197.16,196.95000000000002,27.69,27.400000000000002,27.240000000000002,27.05,26.87,26.69,26.51,26.330000000000002,25.98,N/A,N/A +2012,6,6,1,30,100760,99620,98510,74.58,0,6.7700000000000005,7.3100000000000005,7.41,7.45,7.47,7.47,7.47,7.46,7.43,200.8,200.56,200.45000000000002,200.34,200.24,200.15,200.05,199.96,199.74,27.39,27.07,26.900000000000002,26.71,26.52,26.34,26.14,25.96,25.59,N/A,N/A +2012,6,6,2,30,100790,99640,98540,74.7,0,6.43,6.94,7.03,7.07,7.09,7.1000000000000005,7.1000000000000005,7.09,7.07,195.19,195.35,195.53,195.70000000000002,195.85,196,196.16,196.3,196.65,27.37,27.05,26.88,26.69,26.5,26.32,26.13,25.95,25.580000000000002,N/A,N/A +2012,6,6,3,30,100840,99690,98580,71.92,0,6.05,6.54,6.640000000000001,6.68,6.71,6.73,6.74,6.74,6.74,191.39000000000001,191.48000000000002,191.46,191.45000000000002,191.44,191.42000000000002,191.41,191.39000000000001,191.37,27.44,27.13,26.96,26.77,26.580000000000002,26.400000000000002,26.2,26.02,25.64,N/A,N/A +2012,6,6,4,30,100860,99710,98600,74.63,0,5.91,6.37,6.45,6.48,6.49,6.5,6.5,6.49,6.47,197.61,197.58,197.53,197.49,197.44,197.4,197.35,197.31,197.21,27.29,26.96,26.79,26.6,26.41,26.22,26.03,25.85,25.47,N/A,N/A +2012,6,6,5,30,100870,99720,98610,74.43,0,5.25,5.65,5.73,5.76,5.79,5.8,5.8100000000000005,5.82,5.82,204.57,204.59,204.58,204.56,204.56,204.55,204.54,204.54,204.53,27.240000000000002,26.91,26.740000000000002,26.54,26.35,26.16,25.97,25.78,25.400000000000002,N/A,N/A +2012,6,6,6,30,100830,99680,98570,76.60000000000001,0,6.28,6.74,6.84,6.87,6.890000000000001,6.9,6.9,6.890000000000001,6.88,214.18,214.1,214.05,214,213.96,213.93,213.88,213.83,213.73000000000002,27.080000000000002,26.740000000000002,26.57,26.37,26.19,26,25.810000000000002,25.62,25.25,N/A,N/A +2012,6,6,7,30,100850,99710,98600,75.65,0,5.33,5.71,5.7700000000000005,5.79,5.8,5.8,5.8,5.8,5.7700000000000005,217.07,216.89000000000001,216.77,216.66,216.55,216.45000000000002,216.34,216.24,216.03,27.080000000000002,26.740000000000002,26.57,26.38,26.19,26,25.8,25.62,25.240000000000002,N/A,N/A +2012,6,6,8,30,100850,99700,98590,72.5,0,4.86,5.21,5.28,5.3100000000000005,5.33,5.3500000000000005,5.36,5.37,5.38,222.94,223,223,223.02,223.04,223.06,223.08,223.11,223.17000000000002,27.150000000000002,26.830000000000002,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.71,25.330000000000002,N/A,N/A +2012,6,6,9,30,100870,99720,98610,73.14,0,4.95,5.2700000000000005,5.32,5.33,5.34,5.34,5.33,5.32,5.3,220.75,220.78,220.83,220.88,220.94,220.99,221.04,221.08,221.19,27.1,26.77,26.6,26.41,26.22,26.03,25.830000000000002,25.650000000000002,25.27,N/A,N/A +2012,6,6,10,30,100900,99750,98640,73.48,0,3.64,3.85,3.89,3.9,3.91,3.91,3.91,3.9,3.89,208.88,208.93,208.91,208.87,208.83,208.79,208.75,208.70000000000002,208.61,27.04,26.72,26.54,26.34,26.16,25.97,25.77,25.59,25.2,N/A,N/A +2012,6,6,11,30,100920,99770,98660,71.49,0,3.24,3.43,3.46,3.47,3.48,3.49,3.49,3.49,3.5,215.56,215.33,215.1,214.88,214.68,214.5,214.31,214.12,213.76,27.080000000000002,26.76,26.59,26.39,26.2,26.01,25.810000000000002,25.63,25.240000000000002,N/A,N/A +2012,6,6,12,30,100950,99810,98690,73.74,0,2.85,2.98,2.99,3,2.99,2.99,2.98,2.98,2.96,207.14000000000001,207.11,207.07,207.02,206.97,206.92000000000002,206.85,206.79,206.65,27,26.67,26.490000000000002,26.3,26.1,25.91,25.72,25.53,25.150000000000002,N/A,N/A +2012,6,6,13,30,100990,99840,98730,72.91,0,2.5100000000000002,2.62,2.63,2.64,2.64,2.64,2.64,2.64,2.63,227.56,227.3,227.07,226.85,226.63,226.42000000000002,226.20000000000002,226,225.58,27.02,26.69,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.17,N/A,N/A +2012,6,6,14,30,101040,99890,98780,73.27,0,1.8,1.8800000000000001,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,230.43,229.64000000000001,229.07,228.52,228.02,227.53,227.04,226.59,225.68,27.03,26.7,26.52,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A +2012,6,6,15,30,101070,99920,98810,73.39,0,1.6500000000000001,1.7,1.7,1.69,1.69,1.68,1.67,1.6600000000000001,1.6500000000000001,252.97,252.4,251.97,251.55,251.17000000000002,250.81,250.45000000000002,250.11,249.42000000000002,27.09,26.75,26.57,26.37,26.18,25.990000000000002,25.8,25.61,25.22,N/A,N/A +2012,6,6,16,30,101070,99920,98810,74.4,0,1.45,1.52,1.53,1.54,1.54,1.55,1.56,1.56,1.57,197.68,196.99,196.62,196.26,195.93,195.61,195.3,195.03,194.4,27.080000000000002,26.73,26.560000000000002,26.36,26.16,25.97,25.78,25.59,25.2,N/A,N/A +2012,6,6,17,30,101070,99930,98810,75.41,0,1.3800000000000001,1.42,1.43,1.43,1.43,1.42,1.42,1.42,1.41,201.47,201.69,201.70000000000002,201.70000000000002,201.71,201.72,201.72,201.72,201.67000000000002,27.14,26.78,26.61,26.41,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A +2012,6,6,18,30,101050,99910,98800,77.22,0,3.56,3.72,3.74,3.74,3.73,3.72,3.71,3.7,3.67,186.55,186.08,185.83,185.58,185.33,185.1,184.83,184.58,184.02,27.21,26.830000000000002,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.3,N/A,N/A +2012,6,6,19,30,101050,99900,98790,76.59,0,4.0200000000000005,4.22,4.25,4.25,4.25,4.25,4.24,4.24,4.21,176.23,176.16,176.08,176,175.9,175.81,175.70000000000002,175.59,175.34,27.32,26.95,26.78,26.57,26.38,26.19,26,25.810000000000002,25.44,N/A,N/A +2012,6,6,20,30,101010,99860,98750,78.06,0,4.65,4.91,4.95,4.96,4.97,4.97,4.96,4.95,4.93,181.55,181.38,181.28,181.18,181.08,180.98,180.86,180.74,180.44,27.36,27,26.830000000000002,26.63,26.44,26.25,26.05,25.87,25.5,N/A,N/A +2012,6,6,21,30,100950,99810,98700,78.17,0,5.01,5.33,5.38,5.4,5.4,5.4,5.4,5.39,5.38,180.55,180.41,180.36,180.3,180.22,180.12,179.99,179.86,179.44,27.42,27.07,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.96,25.59,N/A,N/A +2012,6,6,22,30,100920,99770,98670,80.75,0,5.18,5.54,5.61,5.64,5.65,5.66,5.66,5.66,5.66,179.48,179.18,178.99,178.77,178.56,178.35,178.11,177.87,177.29,27.35,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.900000000000002,25.53,N/A,N/A +2012,6,6,23,30,100890,99740,98640,79.92,0,5.3100000000000005,5.69,5.75,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,5.75,5.72,181.27,181.07,180.95000000000002,180.82,180.70000000000002,180.58,180.44,180.31,179.96,27.41,27.09,26.92,26.72,26.54,26.35,26.16,25.98,25.6,N/A,N/A +2012,6,7,0,30,100900,99760,98650,82.17,0,5.34,5.75,5.82,5.8500000000000005,5.87,5.88,5.87,5.87,5.8500000000000005,173.16,172.89000000000001,172.84,172.79,172.73,172.67000000000002,172.6,172.53,172.37,27.34,27.02,26.85,26.650000000000002,26.46,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,6,7,1,30,100940,99800,98690,82.86,0,4.88,5.22,5.29,5.32,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,171.75,171.5,171.33,171.14000000000001,170.97,170.8,170.6,170.4,169.93,27.25,26.93,26.76,26.560000000000002,26.38,26.19,26,25.810000000000002,25.44,N/A,N/A +2012,6,7,2,30,100990,99850,98740,80.59,0,4.91,5.25,5.3100000000000005,5.34,5.3500000000000005,5.36,5.3500000000000005,5.3500000000000005,5.34,162.75,162.56,162.45000000000002,162.32,162.20000000000002,162.08,161.93,161.78,161.41,27.32,27,26.830000000000002,26.63,26.45,26.26,26.07,25.88,25.51,N/A,N/A +2012,6,7,3,30,101070,99920,98810,80.66,0,4.84,5.18,5.24,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,5.32,110.95,110.67,110.68,110.66,110.64,110.60000000000001,110.55,110.51,110.4,27.36,27.04,26.87,26.67,26.490000000000002,26.3,26.11,25.92,25.55,N/A,N/A +2012,6,7,4,30,101070,99930,98820,82.29,0,6.21,6.7700000000000005,6.890000000000001,6.95,6.99,7.01,7.03,7.03,7.03,100.68,100.38,100.36,100.35000000000001,100.34,100.33,100.31,100.3,100.29,27.38,27.05,26.88,26.68,26.490000000000002,26.3,26.1,25.92,25.54,N/A,N/A +2012,6,7,5,30,101070,99920,98810,83.26,0,6.91,7.390000000000001,7.46,7.48,7.47,7.45,7.42,7.390000000000001,7.2700000000000005,103.73,103.46000000000001,103.27,103.05,102.78,102.49000000000001,102.07000000000001,101.65,99.99000000000001,26.650000000000002,26.28,26.11,25.93,25.75,25.580000000000002,25.41,25.26,25,N/A,N/A +2012,6,7,6,30,101080,99930,98820,83.39,0,4.36,4.57,4.6000000000000005,4.6000000000000005,4.58,4.57,4.54,4.5200000000000005,4.46,108.65,108.81,108.93,109.05,109.17,109.28,109.41,109.54,109.84,26.62,26.26,26.09,25.900000000000002,25.71,25.53,25.34,25.17,24.82,N/A,N/A +2012,6,7,7,30,101080,99930,98820,84.36,0,2.84,2.98,3,3.0100000000000002,3.02,3.02,3.02,3.02,3.0100000000000002,98.13,99.35000000000001,100.06,100.77,101.43,102.08,102.79,103.48,105.06,26.67,26.32,26.150000000000002,25.95,25.76,25.57,25.38,25.2,24.82,N/A,N/A +2012,6,7,8,30,101070,99920,98810,84.18,0,2.73,2.85,2.87,2.86,2.86,2.85,2.84,2.83,2.8000000000000003,85.01,85.45,85.89,86.28,86.64,86.98,87.33,87.68,88.39,26.78,26.44,26.27,26.07,25.88,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A +2012,6,7,9,30,101090,99950,98830,82.8,0,4.8100000000000005,5.19,5.29,5.3500000000000005,5.4,5.44,5.47,5.5,5.5600000000000005,54.49,54.32,54.24,54.160000000000004,54.08,53.99,53.910000000000004,53.83,53.67,26.82,26.47,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A +2012,6,7,10,30,101100,99940,98830,86.96000000000001,0,7.37,7.84,7.9,7.91,7.890000000000001,7.8500000000000005,7.79,7.74,7.57,36.550000000000004,36.910000000000004,37.17,37.46,37.77,38.1,38.51,38.92,40.25,25.39,24.95,24.75,24.55,24.36,24.18,23.990000000000002,23.81,23.45,N/A,N/A +2012,6,7,11,30,101130,99970,98850,86.18,0,6.51,6.93,7,7.0200000000000005,7.01,7,6.97,6.94,6.8500000000000005,51.59,51.95,52.19,52.47,52.74,53.03,53.38,53.730000000000004,54.69,25.75,25.330000000000002,25.14,24.93,24.740000000000002,24.55,24.36,24.18,23.81,N/A,N/A +2012,6,7,12,30,101130,99980,98860,86.14,0,6.03,6.4,6.46,6.47,6.47,6.45,6.43,6.41,6.34,55.28,55.63,55.870000000000005,56.120000000000005,56.36,56.6,56.88,57.160000000000004,57.83,25.830000000000002,25.41,25.23,25.02,24.830000000000002,24.64,24.44,24.26,23.88,N/A,N/A +2012,6,7,13,30,101200,100050,98930,85.39,0,5.87,6.25,6.32,6.34,6.3500000000000005,6.34,6.33,6.32,6.2700000000000005,50.660000000000004,50.85,51,51.15,51.300000000000004,51.44,51.6,51.75,52.1,26.07,25.67,25.48,25.28,25.080000000000002,24.900000000000002,24.7,24.51,24.13,N/A,N/A +2012,6,7,14,30,101190,100030,98920,83.63,0,5.68,6.03,6.09,6.1000000000000005,6.1000000000000005,6.09,6.07,6.05,5.99,74.07000000000001,74.25,74.41,74.58,74.75,74.92,75.13,75.32000000000001,75.86,26.2,25.810000000000002,25.63,25.43,25.240000000000002,25.05,24.86,24.67,24.29,N/A,N/A +2012,6,7,15,30,101280,100130,99010,81.92,0,5.11,5.41,5.47,5.49,5.49,5.49,5.48,5.47,5.44,64.99,65.18,65.18,65.21000000000001,65.24,65.29,65.34,65.4,65.57000000000001,26.35,25.97,25.79,25.580000000000002,25.39,25.2,25.01,24.82,24.44,N/A,N/A +2012,6,7,16,30,101240,100080,98970,79.64,0,4.03,4.22,4.23,4.22,4.21,4.18,4.15,4.12,4.0200000000000005,75.49,75.59,75.63,75.68,75.74,75.82000000000001,75.92,76.03,76.43,26.55,26.18,26,25.8,25.61,25.43,25.23,25.05,24.69,N/A,N/A +2012,6,7,17,30,101240,100090,98970,81.9,0,5.11,5.4,5.45,5.46,5.46,5.44,5.43,5.41,5.3500000000000005,88.39,88.42,88.47,88.53,88.59,88.65,88.71000000000001,88.77,88.92,26.67,26.3,26.12,25.92,25.73,25.55,25.35,25.17,24.8,N/A,N/A +2012,6,7,18,30,101210,100060,98950,83.7,0,5.1000000000000005,5.39,5.41,5.4,5.38,5.36,5.32,5.28,5.14,117.14,117.27,117.3,117.37,117.45,117.54,117.67,117.8,118.37,26.91,26.54,26.37,26.17,25.98,25.8,25.62,25.44,25.11,N/A,N/A +2012,6,7,19,30,101150,100010,98900,83.9,0,4.86,5.14,5.19,5.19,5.18,5.16,5.14,5.11,5.03,129.88,129.93,129.96,129.98,130,130.02,130.04,130.08,130.19,27.150000000000002,26.8,26.62,26.42,26.240000000000002,26.05,25.86,25.68,25.32,N/A,N/A +2012,6,7,20,30,101140,100000,98890,83.94,0,2.73,2.85,2.86,2.86,2.86,2.85,2.84,2.83,2.8000000000000003,133.1,133.25,133.23,133.23,133.24,133.25,133.28,133.32,133.43,27.310000000000002,26.96,26.78,26.580000000000002,26.39,26.2,26.01,25.830000000000002,25.45,N/A,N/A +2012,6,7,21,30,101130,99980,98870,84.01,0,2.15,2.23,2.24,2.24,2.24,2.24,2.23,2.22,2.21,136.98,137.04,137.07,137.1,137.12,137.14000000000001,137.15,137.15,137.16,27.41,27.060000000000002,26.89,26.69,26.5,26.310000000000002,26.12,25.93,25.55,N/A,N/A +2012,6,7,22,30,101120,99970,98870,84.98,0,2.59,2.69,2.69,2.68,2.67,2.66,2.65,2.63,2.6,152.88,153.06,153.13,153.21,153.29,153.36,153.45000000000002,153.53,153.75,27.46,27.11,26.93,26.740000000000002,26.55,26.36,26.16,25.98,25.6,N/A,N/A +2012,6,7,23,30,101120,99970,98860,84.48,0,1.26,1.3,1.31,1.31,1.31,1.31,1.31,1.31,1.3,196.9,196.41,196.04,195.67000000000002,195.34,195.04,194.72,194.44,193.86,27.5,27.150000000000002,26.98,26.78,26.59,26.400000000000002,26.21,26.02,25.64,N/A,N/A +2012,6,8,0,30,101140,99990,98890,84.08,0,1.31,1.3900000000000001,1.42,1.43,1.45,1.46,1.48,1.49,1.52,112.83,113.17,113.32000000000001,113.44,113.53,113.60000000000001,113.66,113.7,113.77,27.5,27.17,27,26.8,26.62,26.42,26.23,26.04,25.66,N/A,N/A +2012,6,8,1,30,101110,99970,98860,84.89,0,2.38,2.5100000000000002,2.54,2.56,2.57,2.58,2.6,2.61,2.62,97.3,96.97,96.89,96.8,96.72,96.64,96.56,96.47,96.31,27.43,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.6,N/A,N/A +2012,6,8,2,30,101190,100050,98940,86.08,0,4.79,5.15,5.23,5.28,5.3100000000000005,5.33,5.3500000000000005,5.36,5.38,55.6,55.68,55.800000000000004,55.910000000000004,56,56.08,56.15,56.21,56.32,27.52,27.19,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A +2012,6,8,3,30,101200,100050,98930,84.47,1.1,10.06,11,11.22,11.35,11.44,11.51,11.56,11.6,11.65,71.72,72.36,72.61,72.85000000000001,73.08,73.28,73.5,73.69,74.11,25.88,25.44,25.25,25.05,24.85,24.67,24.47,24.29,23.92,N/A,N/A +2012,6,8,4,30,101190,100040,98920,84.84,0,7.29,7.86,7.99,8.05,8.1,8.120000000000001,8.15,8.16,8.19,83.41,84.15,84.62,85.12,85.60000000000001,86.08,86.59,87.07000000000001,88.16,25.84,25.43,25.240000000000002,25.04,24.85,24.67,24.48,24.3,23.93,N/A,N/A +2012,6,8,5,30,101180,100030,98910,84.06,0,6.97,7.5600000000000005,7.71,7.8,7.88,7.930000000000001,7.98,8.03,8.11,92.28,93.16,93.73,94.29,94.81,95.31,95.81,96.29,97.29,26.2,25.8,25.62,25.42,25.23,25.05,24.86,24.67,24.3,N/A,N/A +2012,6,8,6,30,101180,100030,98920,81.11,0,4.63,4.96,5.03,5.07,5.1000000000000005,5.11,5.12,5.13,5.14,102.12,102.16,102.22,102.25,102.26,102.27,102.27,102.26,102.24000000000001,26.560000000000002,26.19,26.01,25.810000000000002,25.62,25.43,25.23,25.04,24.66,N/A,N/A +2012,6,8,7,30,101180,100030,98920,82.57000000000001,0,3.13,3.2800000000000002,3.3000000000000003,3.31,3.31,3.31,3.31,3.3000000000000003,3.3000000000000003,123.7,123.55,123.53,123.52,123.49000000000001,123.46000000000001,123.45,123.44,123.39,26.52,26.17,25.990000000000002,25.79,25.6,25.41,25.22,25.04,24.66,N/A,N/A +2012,6,8,8,30,101180,100030,98920,78.39,0,2.04,2.15,2.17,2.19,2.21,2.22,2.23,2.24,2.2600000000000002,79.27,80.58,81.32000000000001,82.02,82.64,83.2,83.75,84.25,85.25,26.78,26.44,26.26,26.060000000000002,25.87,25.68,25.48,25.3,24.91,N/A,N/A +2012,6,8,9,30,101190,100030,98920,76.36,0,3.49,3.71,3.7600000000000002,3.8000000000000003,3.83,3.85,3.88,3.9,3.94,78.98,77.27,76.29,75.32000000000001,74.45,73.61,72.79,72.01,70.48,26.71,26.36,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A +2012,6,8,10,30,101190,100040,98920,78.36,0,2.64,2.7600000000000002,2.79,2.8000000000000003,2.82,2.83,2.83,2.84,2.85,94.47,95.37,95.94,96.43,96.86,97.26,97.68,98.06,98.93,26.52,26.16,25.98,25.79,25.6,25.41,25.21,25.03,24.650000000000002,N/A,N/A +2012,6,8,11,30,101210,100060,98940,79.63,0,4.99,5.0600000000000005,4.95,4.79,4.6000000000000005,4.4,4.16,3.93,3.37,139.21,139.04,138.83,138.61,138.31,137.97,137.34,136.71,133.98,25.810000000000002,25.44,25.27,25.09,24.92,24.76,24.59,24.43,24.1,N/A,N/A +2012,6,8,12,30,101260,100100,98980,82.60000000000001,0,2.98,3.13,3.13,3.11,3.1,3.09,3.0700000000000003,3.0500000000000003,3.02,66.56,65.57000000000001,65.06,64.5,63.980000000000004,63.47,62.940000000000005,62.440000000000005,61.34,25.87,25.5,25.32,25.11,24.92,24.73,24.53,24.35,23.96,N/A,N/A +2012,6,8,13,30,101260,100100,98980,82.35000000000001,0,5.69,5.8100000000000005,5.79,5.75,5.7700000000000005,5.84,5.92,6,6.11,68.77,69.34,69.89,70.62,71.54,72.58,73.4,74.09,75.32000000000001,24.7,24.330000000000002,24.22,24.14,24.18,24.29,24.44,24.59,24.61,N/A,N/A +2012,6,8,14,30,101230,100070,98950,82.75,0,4.13,4.25,4.25,4.21,4.17,4.13,4.07,4.0200000000000005,3.9,63.29,62.15,61.5,60.78,60.03,59.26,58.32,57.44,55.31,25,24.59,24.41,24.23,24.060000000000002,23.89,23.73,23.580000000000002,23.330000000000002,N/A,N/A +2012,6,8,15,30,101230,100070,98960,73.28,0,3.7800000000000002,3.94,3.94,3.93,3.91,3.88,3.85,3.83,3.77,39.33,38.480000000000004,38,37.52,37.09,36.68,36.28,35.9,35.21,26.27,25.900000000000002,25.73,25.54,25.36,25.18,25,24.830000000000002,24.48,N/A,N/A +2012,6,8,16,30,101270,100110,98990,88.91,379.40000000000003,4,4.11,4.16,4.23,4.34,4.46,4.62,4.79,5.15,109.96000000000001,103.73,99.85000000000001,95.63,91.7,87.96000000000001,84.10000000000001,80.44,73.48,24.650000000000002,24.25,24.1,23.95,23.830000000000002,23.71,23.63,23.56,23.48,N/A,N/A +2012,6,8,17,30,101220,100060,98940,92.48,87.2,1.28,1.46,1.62,1.9000000000000001,2.2,2.54,2.88,3.21,3.75,157.20000000000002,129.18,114.89,104.89,97.07000000000001,90.60000000000001,86.01,82.18,77.69,24.42,24.25,24.21,24.18,24.14,24.11,24.1,24.09,24,N/A,N/A +2012,6,8,18,30,101180,100030,98920,76.43,5.9,1.42,1.56,1.62,1.67,1.72,1.76,1.8,1.84,1.9100000000000001,101.19,99.9,99.08,98.36,97.72,97.11,96.53,95.99000000000001,94.86,26.330000000000002,25.98,25.810000000000002,25.61,25.42,25.240000000000002,25.04,24.86,24.48,N/A,N/A +2012,6,8,19,30,101140,99990,98880,70.87,0,4.55,4.86,4.91,4.94,4.96,4.97,4.98,4.98,4.99,74.4,74.32000000000001,74.17,74.01,73.87,73.73,73.57000000000001,73.41,73.06,27.080000000000002,26.73,26.55,26.35,26.16,25.98,25.78,25.6,25.22,N/A,N/A +2012,6,8,20,30,101110,99960,98850,73.14,0,4.16,4.39,4.43,4.45,4.46,4.46,4.46,4.46,4.45,101.29,100.42,100.01,99.56,99.13,98.69,98.22,97.76,96.72,27.23,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.77,25.400000000000002,N/A,N/A +2012,6,8,21,30,101090,99950,98830,76.17,0,4.22,4.45,4.48,4.49,4.49,4.49,4.48,4.47,4.45,117.10000000000001,116.54,116.24000000000001,115.94,115.64,115.34,115.02,114.72,113.99000000000001,27.17,26.82,26.64,26.45,26.26,26.07,25.87,25.69,25.32,N/A,N/A +2012,6,8,22,30,101060,99910,98800,72.59,0,3.72,3.92,3.95,3.96,3.95,3.95,3.93,3.92,3.88,116.09,116.02,116.04,116.04,116.03,116.02,115.97,115.92,115.74000000000001,27.22,26.88,26.71,26.51,26.32,26.13,25.93,25.75,25.36,N/A,N/A +2012,6,8,23,30,101050,99900,98790,76.44,0,4.25,4.49,4.5200000000000005,4.53,4.53,4.5200000000000005,4.51,4.5,4.48,130.05,129.54,129.3,129.07,128.86,128.65,128.45,128.26,127.86,27.13,26.79,26.62,26.42,26.23,26.04,25.84,25.66,25.27,N/A,N/A +2012,6,9,0,30,101030,99880,98770,75.28,0,3.15,3.3200000000000003,3.35,3.37,3.38,3.38,3.38,3.38,3.38,120.51,119.88,119.51,119.17,118.85000000000001,118.55,118.25,117.97,117.34,27.07,26.73,26.560000000000002,26.36,26.17,25.98,25.78,25.59,25.21,N/A,N/A +2012,6,9,1,30,101030,99880,98770,78.93,0,1.8900000000000001,1.98,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.02,2.02,2.02,117.8,117.29,117.05,116.79,116.56,116.32000000000001,116.07000000000001,115.83,115.34,26.93,26.6,26.42,26.22,26.03,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A +2012,6,9,2,30,101040,99890,98780,80.99,0,2.02,2.14,2.17,2.19,2.2,2.22,2.23,2.24,2.2600000000000002,75.64,75.77,75.96000000000001,76.13,76.28,76.43,76.58,76.7,76.97,26.91,26.57,26.400000000000002,26.2,26.01,25.82,25.62,25.43,25.05,N/A,N/A +2012,6,9,3,30,101080,99920,98800,93.83,0,13.64,15.18,15.4,15.49,15.49,15.450000000000001,15.36,15.26,14.950000000000001,61.19,61.15,61.34,61.58,61.83,62.09,62.4,62.68,63.43,24.650000000000002,24.02,23.77,23.53,23.31,23.1,22.87,22.67,22.400000000000002,N/A,N/A +2012,6,9,4,30,101050,99880,98760,84.46000000000001,27.1,7.0600000000000005,7.54,7.640000000000001,7.72,7.79,7.86,7.97,8.09,8.49,68.95,69.36,69.75,70.18,70.7,71.22,71.95,72.7,75.34,23.91,23.46,23.3,23.150000000000002,23.02,22.900000000000002,22.8,22.72,22.66,N/A,N/A +2012,6,9,5,30,101040,99880,98760,80.85000000000001,0,3.81,3.89,3.87,3.83,3.79,3.7600000000000002,3.72,3.7,3.7,131.57,129.92000000000002,128.99,128.05,127.17,126.33,125.48,124.7,124.02,25.060000000000002,24.67,24.490000000000002,24.310000000000002,24.14,23.97,23.8,23.64,23.35,N/A,N/A +2012,6,9,6,30,101000,99850,98730,78.58,0,3.16,3.2800000000000002,3.29,3.29,3.29,3.2800000000000002,3.2800000000000002,3.2800000000000002,3.33,118.69,118.60000000000001,118.57000000000001,118.55,118.53,118.52,118.54,118.56,118.89,25.29,24.900000000000002,24.72,24.53,24.34,24.16,23.98,23.82,23.52,N/A,N/A +2012,6,9,7,30,101020,99870,98750,80.02,0,4.74,5.04,5.1000000000000005,5.14,5.17,5.19,5.21,5.22,5.26,93.05,93.44,93.67,93.89,94.10000000000001,94.3,94.52,94.72,95.17,25.86,25.45,25.27,25.07,24.88,24.69,24.490000000000002,24.310000000000002,23.93,N/A,N/A +2012,6,9,8,30,100980,99830,98720,76.73,0,3.3200000000000003,3.5700000000000003,3.63,3.69,3.74,3.7800000000000002,3.8200000000000003,3.86,3.95,97.03,96.8,96.77,96.74000000000001,96.71000000000001,96.68,96.66,96.63,96.58,26.310000000000002,25.94,25.76,25.560000000000002,25.37,25.18,24.98,24.79,24.41,N/A,N/A +2012,6,9,9,30,101030,99870,98750,89.57000000000001,184.9,4.21,4.32,4.3100000000000005,4.25,4.19,4.11,4.04,3.98,3.98,76.93,80.45,82.7,85.48,88.39,91.49,94.64,97.56,102.31,24.22,23.87,23.77,23.71,23.72,23.77,23.81,23.84,23.740000000000002,N/A,N/A +2012,6,9,10,30,100990,99830,98710,84.98,9.200000000000001,2.44,2.35,2.24,2.11,2.09,2.11,2.08,2.0300000000000002,2,19.56,24.73,29.990000000000002,38.67,51.9,67.9,79.19,88.03,106.55,24.25,23.91,23.8,23.72,23.740000000000002,23.82,23.79,23.73,23.43,N/A,N/A +2012,6,9,11,30,100990,99840,98720,85.95,1.8,0.11,0.16,0.2,0.25,0.31,0.36,0.42,0.49,0.67,59.69,84.72,99.45,105.99000000000001,110.21000000000001,112.58,113.74000000000001,114.46000000000001,113.16,25.27,24.900000000000002,24.72,24.53,24.34,24.16,23.98,23.81,23.46,N/A,N/A +2012,6,9,12,30,100990,99840,98720,85.58,0,1.6,1.6300000000000001,1.62,1.61,1.59,1.58,1.56,1.54,1.48,305.24,307.19,308.31,309.54,310.85,312.2,313.91,315.59000000000003,321.02,25.6,25.23,25.05,24.85,24.66,24.47,24.28,24.1,23.740000000000002,N/A,N/A +2012,6,9,13,30,101020,99870,98750,84.3,0,2.11,2.24,2.27,2.3000000000000003,2.32,2.35,2.37,2.39,2.43,6.92,9.49,10.72,11.89,12.97,14,15.02,15.97,17.96,26.11,25.740000000000002,25.560000000000002,25.36,25.17,24.98,24.79,24.6,24.22,N/A,N/A +2012,6,9,14,30,101030,99880,98770,79.84,0,4.62,4.84,4.86,4.8500000000000005,4.83,4.8100000000000005,4.79,4.76,4.7,32.980000000000004,33.51,33.86,34.18,34.480000000000004,34.75,35.02,35.27,35.77,26.36,25.98,25.8,25.6,25.41,25.22,25.02,24.84,24.46,N/A,N/A +2012,6,9,15,30,101060,99900,98780,90.07000000000001,0,4.42,4.51,4.46,4.4,4.33,4.2700000000000005,4.2,4.14,4.03,124.05,121.38,119.61,117.67,115.82000000000001,114.01,112.13,110.38,105.77,25.13,24.72,24.53,24.34,24.150000000000002,23.98,23.79,23.62,23.27,N/A,N/A +2012,6,9,16,30,101020,99860,98740,86.4,0,2.63,2.66,2.62,2.56,2.5100000000000002,2.45,2.38,2.31,2.11,138.8,136.97,135.62,134.15,132.55,130.89000000000001,128.57,126.25,116.47,25.32,24.92,24.740000000000002,24.54,24.35,24.17,23.98,23.81,23.45,N/A,N/A +2012,6,9,17,30,101010,99860,98740,84.58,0,2.07,2.04,2,1.94,1.9000000000000001,1.85,1.8,1.76,1.69,111.65,108.59,106.66,104.53,102.31,100.04,97.29,94.64,87.8,25.490000000000002,25.09,24.91,24.71,24.52,24.34,24.14,23.96,23.59,N/A,N/A +2012,6,9,18,30,100990,99840,98720,84.28,0,2.95,3.08,3.09,3.09,3.08,3.08,3.0700000000000003,3.0700000000000003,3.06,68.26,67.29,66.62,65.96000000000001,65.32000000000001,64.67,63.980000000000004,63.31,61.83,25.79,25.38,25.19,24.990000000000002,24.79,24.61,24.41,24.22,23.84,N/A,N/A +2012,6,9,19,30,100980,99830,98710,78.4,0,3.88,4.12,4.18,4.22,4.25,4.28,4.3,4.32,4.3500000000000005,97.51,97.24000000000001,97.09,96.95,96.81,96.69,96.56,96.45,96.2,26.35,25.96,25.77,25.57,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A +2012,6,9,20,30,100910,99760,98650,79.97,0,4.5600000000000005,4.79,4.83,4.84,4.83,4.82,4.8100000000000005,4.79,4.75,129.76,129.38,129.21,129.02,128.82,128.62,128.4,128.18,127.65,26.43,26.05,25.87,25.67,25.48,25.29,25.09,24.91,24.54,N/A,N/A +2012,6,9,21,30,100900,99760,98650,79.77,0,3.92,4.17,4.23,4.2700000000000005,4.3,4.32,4.34,4.36,4.39,106,106.12,106.19,106.24000000000001,106.3,106.35000000000001,106.39,106.43,106.51,26.66,26.28,26.1,25.900000000000002,25.71,25.52,25.32,25.13,24.75,N/A,N/A +2012,6,9,22,30,100890,99740,98630,80.06,0,6.0600000000000005,6.48,6.5600000000000005,6.59,6.61,6.62,6.62,6.62,6.61,119.23,119.34,119.39,119.45,119.51,119.56,119.63,119.69,119.82000000000001,26.73,26.36,26.17,25.97,25.78,25.59,25.39,25.2,24.82,N/A,N/A +2012,6,9,23,30,100850,99710,98600,83.72,0,4.79,5.07,5.11,5.13,5.14,5.14,5.13,5.13,5.11,136.67000000000002,137.17000000000002,137.4,137.64000000000001,137.86,138.08,138.3,138.51,138.96,26.66,26.29,26.12,25.91,25.72,25.53,25.34,25.150000000000002,24.77,N/A,N/A +2012,6,10,0,30,100810,99670,98560,81.65,0,4.26,4.5200000000000005,4.5600000000000005,4.58,4.59,4.6000000000000005,4.6000000000000005,4.6000000000000005,4.59,143.6,143.44,143.34,143.24,143.15,143.07,142.97,142.89000000000001,142.68,26.71,26.35,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A +2012,6,10,1,30,100800,99650,98540,85.45,0,6.45,6.88,6.94,6.96,6.96,6.95,6.93,6.91,6.8500000000000005,145.1,145.16,145.13,145.11,145.1,145.08,145.06,145.05,145,26.52,26.13,25.95,25.75,25.560000000000002,25.37,25.17,24.990000000000002,24.61,N/A,N/A +2012,6,10,2,30,100820,99670,98570,85.02,0,5.51,5.88,5.95,5.98,6,6.01,6.01,6.01,5.99,155.44,155.36,155.31,155.25,155.18,155.11,155.03,154.95000000000002,154.77,26.650000000000002,26.28,26.1,25.900000000000002,25.71,25.51,25.32,25.14,24.75,N/A,N/A +2012,6,10,3,30,100850,99700,98590,84.31,0,5.59,5.96,6.04,6.07,6.09,6.09,6.09,6.09,6.08,152.65,152.83,152.95000000000002,153.07,153.18,153.27,153.38,153.47,153.66,26.73,26.36,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A +2012,6,10,4,30,100830,99690,98580,83.22,0,5.12,5.46,5.5200000000000005,5.55,5.5600000000000005,5.57,5.57,5.57,5.55,162.5,162.47,162.47,162.45000000000002,162.44,162.43,162.41,162.39000000000001,162.34,26.740000000000002,26.37,26.19,25.990000000000002,25.8,25.61,25.41,25.23,24.84,N/A,N/A +2012,6,10,5,30,100820,99670,98560,84.21000000000001,0,5.59,5.98,6.05,6.08,6.09,6.1000000000000005,6.1000000000000005,6.09,6.07,163.59,163.72,163.77,163.81,163.84,163.88,163.91,163.94,164.01,26.72,26.34,26.16,25.96,25.77,25.580000000000002,25.38,25.19,24.810000000000002,N/A,N/A +2012,6,10,6,30,100830,99690,98580,84.32000000000001,0,5.59,6,6.09,6.13,6.16,6.19,6.2,6.21,6.22,176.73,176.9,177,177.09,177.18,177.26,177.35,177.42000000000002,177.58,26.73,26.36,26.18,25.98,25.79,25.59,25.400000000000002,25.21,24.830000000000002,N/A,N/A +2012,6,10,7,30,100850,99710,98600,84.06,0,5.48,5.88,5.97,6.01,6.04,6.05,6.0600000000000005,6.07,6.0600000000000005,193.37,193.6,193.65,193.67000000000002,193.66,193.65,193.63,193.61,193.54,26.82,26.46,26.28,26.080000000000002,25.88,25.69,25.5,25.310000000000002,24.93,N/A,N/A +2012,6,10,8,30,100850,99700,98590,82.41,0,5.96,6.43,6.54,6.6000000000000005,6.65,6.68,6.7,6.72,6.74,205.98000000000002,205.86,205.74,205.59,205.46,205.34,205.20000000000002,205.08,204.82,27.02,26.67,26.490000000000002,26.29,26.09,25.91,25.71,25.52,25.14,N/A,N/A +2012,6,10,9,30,100840,99700,98590,81.54,0,6.46,6.94,7.05,7.1000000000000005,7.13,7.140000000000001,7.15,7.15,7.15,204.52,204.77,204.9,205.01,205.11,205.20000000000002,205.3,205.38,205.55,27.11,26.76,26.580000000000002,26.38,26.19,26,25.8,25.62,25.23,N/A,N/A +2012,6,10,10,30,100840,99690,98580,82.55,0,5.84,6.29,6.38,6.43,6.46,6.48,6.49,6.5,6.5,223.58,223.31,223.12,222.94,222.76,222.59,222.42000000000002,222.25,221.91,27.080000000000002,26.73,26.55,26.35,26.16,25.97,25.78,25.59,25.22,N/A,N/A +2012,6,10,11,30,100860,99720,98610,82.43,0,5.96,6.44,6.54,6.6000000000000005,6.63,6.65,6.66,6.67,6.67,223.19,222.64000000000001,222.42000000000002,222.22,222.05,221.9,221.75,221.62,221.35,27.23,26.88,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A +2012,6,10,12,30,100900,99750,98650,81.75,0,5.63,6.11,6.22,6.29,6.34,6.38,6.41,6.44,6.49,215.81,215.57,215.44,215.31,215.20000000000002,215.09,214.97,214.86,214.65,27.36,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A +2012,6,10,13,30,100940,99800,98690,83.35000000000001,0,5.61,6.04,6.13,6.19,6.22,6.24,6.26,6.2700000000000005,6.29,211.64000000000001,211.82,211.93,212.04,212.14000000000001,212.24,212.34,212.44,212.67000000000002,27.38,27.04,26.88,26.67,26.490000000000002,26.3,26.1,25.92,25.54,N/A,N/A +2012,6,10,14,30,100990,99850,98740,83.19,0,5.05,5.5,5.63,5.72,5.79,5.84,5.89,5.93,6.01,219.23000000000002,219.48000000000002,219.59,219.68,219.76,219.83,219.89000000000001,219.95000000000002,220.07,27.57,27.25,27.080000000000002,26.88,26.69,26.5,26.310000000000002,26.12,25.740000000000002,N/A,N/A +2012,6,10,15,30,101010,99870,98760,80.4,0,6.96,7.5600000000000005,7.68,7.75,7.79,7.82,7.8500000000000005,7.86,7.890000000000001,223.97,224.27,224.4,224.53,224.66,224.79,224.92000000000002,225.04,225.3,27.830000000000002,27.52,27.36,27.16,26.98,26.79,26.6,26.42,26.05,N/A,N/A +2012,6,10,16,30,101060,99920,98810,83.68,0,6.7700000000000005,7.43,7.59,7.7,7.7700000000000005,7.83,7.87,7.91,7.97,220.06,220.37,220.49,220.61,220.70000000000002,220.79,220.88,220.95000000000002,221.1,27.79,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,6,10,17,30,101090,99950,98840,78.19,0,7.34,8.040000000000001,8.19,8.28,8.33,8.370000000000001,8.39,8.41,8.42,210.24,210.28,210.3,210.31,210.32,210.33,210.35,210.35,210.37,28.09,27.8,27.64,27.44,27.26,27.07,26.88,26.7,26.32,N/A,N/A +2012,6,10,18,30,101110,99970,98860,77.09,0,6.890000000000001,7.59,7.75,7.8500000000000005,7.92,7.97,8.01,8.040000000000001,8.08,208.8,209.02,209.12,209.20000000000002,209.25,209.3,209.35,209.38,209.44,28.12,27.830000000000002,27.66,27.46,27.28,27.09,26.900000000000002,26.71,26.330000000000002,N/A,N/A +2012,6,10,19,30,101130,99990,98880,71.45,0,7.16,7.91,8.07,8.17,8.24,8.290000000000001,8.32,8.35,8.38,198.55,198.54,198.56,198.58,198.59,198.61,198.63,198.65,198.69,28.44,28.16,28,27.8,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A +2012,6,10,20,30,101110,99960,98860,74.82000000000001,0,7.76,8.55,8.71,8.81,8.870000000000001,8.91,8.94,8.950000000000001,8.96,195.21,195.34,195.38,195.4,195.4,195.4,195.4,195.39000000000001,195.36,28.21,27.93,27.77,27.580000000000002,27.39,27.21,27.01,26.830000000000002,26.45,N/A,N/A +2012,6,10,21,30,101110,99970,98860,79.92,0,7.36,8.05,8.2,8.28,8.33,8.36,8.38,8.39,8.4,189.15,189.16,189.17000000000002,189.20000000000002,189.24,189.27,189.32,189.36,189.47,28.01,27.71,27.55,27.35,27.17,26.98,26.79,26.6,26.23,N/A,N/A +2012,6,10,22,30,101090,99940,98840,84.64,0,7.21,7.86,8,8.07,8.120000000000001,8.16,8.18,8.2,8.23,182.94,183.1,183.20000000000002,183.32,183.45000000000002,183.59,183.74,183.89000000000001,184.25,27.87,27.560000000000002,27.400000000000002,27.2,27.02,26.830000000000002,26.64,26.46,26.080000000000002,N/A,N/A +2012,6,10,23,30,101090,99950,98840,85.51,0,7.94,8.73,8.9,8.99,9.05,9.09,9.120000000000001,9.14,9.16,189.52,189.45000000000002,189.37,189.28,189.18,189.09,188.98,188.88,188.63,27.93,27.63,27.47,27.27,27.09,26.900000000000002,26.71,26.53,26.16,N/A,N/A +2012,6,11,0,30,101090,99950,98850,87.05,0,7.79,8.56,8.75,8.85,8.91,8.950000000000001,8.98,9,9.02,181.74,181.85,181.91,181.96,182,182.03,182.05,182.07,182.09,27.900000000000002,27.61,27.44,27.25,27.060000000000002,26.88,26.68,26.5,26.13,N/A,N/A +2012,6,11,1,30,101080,99940,98830,87.79,0,8.55,9.42,9.63,9.74,9.82,9.870000000000001,9.9,9.92,9.94,183.42000000000002,183.44,183.49,183.55,183.61,183.67000000000002,183.73,183.79,183.93,27.830000000000002,27.51,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.02,N/A,N/A +2012,6,11,2,30,101110,99970,98860,84.85000000000001,0,9.38,10.34,10.57,10.68,10.76,10.82,10.85,10.870000000000001,10.89,181.02,181.23,181.38,181.53,181.66,181.79,181.92000000000002,182.04,182.29,27.89,27.580000000000002,27.42,27.22,27.03,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,6,11,3,30,101130,99980,98880,84.63,0,8.83,9.73,9.96,10.1,10.200000000000001,10.27,10.33,10.38,10.44,184.17000000000002,184.39000000000001,184.46,184.49,184.51,184.52,184.5,184.49,184.43,27.78,27.46,27.29,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,6,11,4,30,101120,99980,98870,82.69,0,8.76,9.72,9.97,10.120000000000001,10.24,10.32,10.39,10.46,10.55,183.36,183.72,183.87,183.97,184.04,184.09,184.13,184.16,184.19,27.740000000000002,27.42,27.25,27.05,26.86,26.67,26.48,26.3,25.91,N/A,N/A +2012,6,11,5,30,101130,99980,98870,83.67,0,9.35,10.33,10.57,10.72,10.82,10.89,10.93,10.97,11.02,187.88,187.9,187.86,187.8,187.75,187.70000000000002,187.64000000000001,187.58,187.45000000000002,27.68,27.36,27.19,26.990000000000002,26.8,26.61,26.42,26.23,25.85,N/A,N/A +2012,6,11,6,30,101170,100030,98920,78.88,0,8.870000000000001,9.93,10.200000000000001,10.38,10.51,10.61,10.69,10.76,10.85,186.57,186.71,186.8,186.87,186.94,187,187.05,187.1,187.19,27.96,27.68,27.51,27.32,27.13,26.94,26.75,26.57,26.19,N/A,N/A +2012,6,11,7,30,101190,100040,98940,77.31,0,9.200000000000001,10.22,10.49,10.66,10.78,10.870000000000001,10.94,11,11.09,190.85,190.77,190.74,190.73,190.73,190.73,190.73,190.73,190.74,28.14,27.88,27.72,27.53,27.35,27.17,26.97,26.79,26.42,N/A,N/A +2012,6,11,8,30,101210,100060,98950,79.60000000000001,0,9.290000000000001,10.27,10.5,10.64,10.74,10.81,10.86,10.91,10.99,192.51,192.77,192.77,192.75,192.72,192.67000000000002,192.62,192.56,192.42000000000002,28.01,27.740000000000002,27.59,27.400000000000002,27.22,27.04,26.86,26.68,26.32,N/A,N/A +2012,6,11,9,30,101230,100090,98980,77.59,0,8.790000000000001,9.870000000000001,10.17,10.4,10.57,10.72,10.85,10.96,11.15,197.89000000000001,197.83,197.81,197.78,197.75,197.73000000000002,197.69,197.66,197.6,28.16,27.91,27.76,27.57,27.400000000000002,27.22,27.03,26.85,26.490000000000002,N/A,N/A +2012,6,11,10,30,101270,100120,99010,81.89,0,8.040000000000001,8.9,9.120000000000001,9.25,9.35,9.43,9.49,9.55,9.64,191.76,192.08,192.20000000000002,192.29,192.38,192.46,192.54,192.61,192.75,27.97,27.68,27.53,27.330000000000002,27.150000000000002,26.97,26.78,26.6,26.23,N/A,N/A +2012,6,11,11,30,101300,100150,99050,83.99,0,8.28,9.11,9.290000000000001,9.38,9.450000000000001,9.48,9.51,9.52,9.55,187.95000000000002,188.31,188.44,188.58,188.71,188.84,188.99,189.13,189.48,27.91,27.62,27.46,27.27,27.09,26.91,26.73,26.55,26.2,N/A,N/A +2012,6,11,12,30,101370,100230,99120,82.45,0,7.94,8.77,8.98,9.120000000000001,9.22,9.31,9.38,9.450000000000001,9.61,190.61,190.62,190.55,190.48,190.43,190.37,190.33,190.31,190.26,28.13,27.86,27.71,27.52,27.35,27.17,26.990000000000002,26.810000000000002,26.46,N/A,N/A +2012,6,11,13,30,101400,100250,99140,83.81,0,8.22,8.99,9.17,9.26,9.32,9.370000000000001,9.42,9.46,9.59,188.71,188.62,188.61,188.6,188.59,188.59,188.58,188.58,188.59,28.03,27.76,27.61,27.43,27.26,27.080000000000002,26.91,26.740000000000002,26.42,N/A,N/A +2012,6,11,14,30,101470,100330,99220,82.16,0,8.93,10.05,10.34,10.540000000000001,10.69,10.790000000000001,10.870000000000001,10.93,10.99,192.02,192.14000000000001,192.16,192.17000000000002,192.16,192.15,192.13,192.11,192.05,28.22,27.95,27.79,27.59,27.400000000000002,27.21,27.02,26.830000000000002,26.44,N/A,N/A +2012,6,11,15,30,101530,100380,99270,83.01,0,8.15,8.92,9.1,9.18,9.23,9.26,9.27,9.28,9.28,186.86,186.93,186.99,187.06,187.14000000000001,187.22,187.33,187.44,187.75,27.98,27.69,27.53,27.34,27.16,26.98,26.79,26.61,26.240000000000002,N/A,N/A +2012,6,11,16,30,101540,100400,99290,85.35000000000001,0,7.97,8.74,8.92,9.02,9.09,9.13,9.15,9.17,9.19,184.5,184.91,185.11,185.31,185.48,185.64000000000001,185.8,185.95000000000002,186.25,27.79,27.48,27.310000000000002,27.11,26.92,26.73,26.54,26.35,25.97,N/A,N/A +2012,6,11,17,30,101560,100410,99300,86.86,0,6.78,7.45,7.62,7.73,7.8100000000000005,7.87,7.92,7.96,8.02,184.70000000000002,184.52,184.45000000000002,184.41,184.38,184.36,184.35,184.35,184.36,27.77,27.45,27.28,27.080000000000002,26.89,26.7,26.51,26.32,25.94,N/A,N/A +2012,6,11,18,30,101550,100400,99290,85.11,0,7.03,7.640000000000001,7.79,7.86,7.9,7.930000000000001,7.95,7.96,7.97,182.65,182.71,182.77,182.83,182.89000000000001,182.96,183.03,183.11,183.3,27.7,27.37,27.21,27.01,26.82,26.63,26.44,26.25,25.88,N/A,N/A +2012,6,11,19,30,101560,100410,99300,84.02,0,7.38,8.05,8.21,8.290000000000001,8.35,8.39,8.41,8.44,8.47,184.55,184.53,184.54,184.56,184.56,184.57,184.58,184.59,184.61,27.76,27.44,27.27,27.07,26.88,26.69,26.5,26.310000000000002,25.94,N/A,N/A +2012,6,11,20,30,101540,100400,99280,83.41,0,6.95,7.58,7.72,7.79,7.8500000000000005,7.88,7.91,7.930000000000001,7.95,176.68,176.92000000000002,177.07,177.20000000000002,177.33,177.46,177.59,177.71,177.95000000000002,27.810000000000002,27.48,27.32,27.12,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A +2012,6,11,21,30,101520,100370,99260,80.79,0,6.74,7.38,7.5200000000000005,7.59,7.640000000000001,7.68,7.71,7.72,7.74,178.19,178.26,178.34,178.42000000000002,178.49,178.56,178.64000000000001,178.71,178.87,27.96,27.66,27.490000000000002,27.3,27.11,26.92,26.73,26.54,26.16,N/A,N/A +2012,6,11,22,30,101520,100370,99260,78.93,0,6.8500000000000005,7.51,7.66,7.74,7.8,7.84,7.86,7.890000000000001,7.92,172.88,172.94,172.99,173.03,173.07,173.12,173.16,173.19,173.27,28.04,27.75,27.59,27.400000000000002,27.21,27.03,26.830000000000002,26.650000000000002,26.27,N/A,N/A +2012,6,11,23,30,101510,100360,99250,79.51,0,7.48,8.2,8.35,8.43,8.48,8.51,8.52,8.53,8.53,169.34,169.67000000000002,169.78,169.89000000000001,169.97,170.06,170.13,170.21,170.35,27.94,27.650000000000002,27.490000000000002,27.3,27.11,26.92,26.73,26.55,26.17,N/A,N/A +2012,6,12,0,30,101480,100330,99220,83.45,0,7.57,8.28,8.44,8.52,8.58,8.61,8.63,8.65,8.66,172.68,172.84,172.91,172.98,173.03,173.09,173.14000000000001,173.18,173.28,27.69,27.38,27.21,27.01,26.830000000000002,26.64,26.45,26.26,25.88,N/A,N/A +2012,6,12,1,30,101470,100320,99210,86.9,0,7.54,8.27,8.45,8.55,8.620000000000001,8.67,8.71,8.73,8.77,175.01,174.91,174.9,174.88,174.87,174.86,174.85,174.85,174.83,27.490000000000002,27.16,26.98,26.78,26.6,26.400000000000002,26.21,26.02,25.64,N/A,N/A +2012,6,12,2,30,101490,100350,99230,87.02,0,7.3500000000000005,8.03,8.18,8.26,8.32,8.36,8.38,8.4,8.43,171.95000000000002,172.06,172.1,172.14000000000001,172.18,172.21,172.24,172.27,172.34,27.490000000000002,27.16,26.990000000000002,26.79,26.6,26.41,26.22,26.03,25.650000000000002,N/A,N/A +2012,6,12,3,30,101510,100360,99250,86.05,0,7.53,8.23,8.38,8.46,8.51,8.55,8.57,8.58,8.58,173.31,173.3,173.33,173.36,173.41,173.45000000000002,173.5,173.55,173.66,27.57,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.29,26.11,25.73,N/A,N/A +2012,6,12,4,30,101500,100350,99240,85.05,0,7.43,8.14,8.31,8.4,8.47,8.51,8.540000000000001,8.56,8.59,179.87,179.8,179.79,179.79,179.78,179.78,179.77,179.77,179.77,27.61,27.28,27.11,26.91,26.72,26.53,26.34,26.150000000000002,25.77,N/A,N/A +2012,6,12,5,30,101520,100370,99260,83.58,0,6.82,7.48,7.63,7.72,7.78,7.82,7.86,7.890000000000001,7.930000000000001,178.56,178.46,178.43,178.4,178.37,178.35,178.32,178.3,178.25,27.64,27.32,27.150000000000002,26.95,26.76,26.57,26.38,26.2,25.810000000000002,N/A,N/A +2012,6,12,6,30,101530,100380,99270,79.89,0,6.95,7.61,7.75,7.83,7.88,7.92,7.94,7.96,7.98,181.66,181.72,181.76,181.8,181.84,181.88,181.93,181.97,182.07,27.78,27.48,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A +2012,6,12,7,30,101550,100400,99290,76.69,0,6.83,7.5,7.640000000000001,7.72,7.78,7.82,7.8500000000000005,7.88,7.92,185.99,186.02,185.99,185.96,185.93,185.89000000000001,185.85,185.81,185.73,27.94,27.650000000000002,27.490000000000002,27.29,27.11,26.92,26.73,26.55,26.17,N/A,N/A +2012,6,12,8,30,101590,100440,99320,75.07000000000001,0,5.55,6.07,6.19,6.2700000000000005,6.33,6.38,6.43,6.47,6.58,185.06,185.41,185.58,185.77,185.95000000000002,186.13,186.32,186.52,186.93,28.02,27.75,27.59,27.41,27.23,27.05,26.86,26.69,26.330000000000002,N/A,N/A +2012,6,12,9,30,101620,100470,99360,75.63,0,5.95,6.51,6.63,6.7,6.74,6.78,6.8,6.8100000000000005,6.83,180.19,180.41,180.47,180.52,180.58,180.63,180.68,180.72,180.81,28.060000000000002,27.79,27.63,27.44,27.26,27.07,26.89,26.7,26.330000000000002,N/A,N/A +2012,6,12,10,30,101650,100500,99390,77.86,0,5.7700000000000005,6.29,6.390000000000001,6.45,6.49,6.5200000000000005,6.53,6.55,6.5600000000000005,184.47,184.3,184.28,184.25,184.22,184.19,184.16,184.13,184.07,27.93,27.63,27.47,27.28,27.09,26.91,26.71,26.53,26.16,N/A,N/A +2012,6,12,11,30,101690,100540,99420,84.06,0,5.97,6.44,6.5200000000000005,6.5600000000000005,6.57,6.58,6.57,6.5600000000000005,6.5200000000000005,179.24,179.36,179.42000000000002,179.5,179.58,179.65,179.74,179.81,179.98,27.52,27.19,27.02,26.82,26.63,26.44,26.240000000000002,26.060000000000002,25.68,N/A,N/A +2012,6,12,12,30,101720,100560,99450,84.44,0,5.26,5.71,5.8100000000000005,5.88,5.94,5.98,6.0200000000000005,6.05,6.1000000000000005,173.99,174.24,174.47,174.68,174.88,175.06,175.24,175.41,175.76,27.39,27.07,26.900000000000002,26.71,26.52,26.330000000000002,26.13,25.95,25.57,N/A,N/A +2012,6,12,13,30,101740,100590,99470,82.98,0,4.95,5.3500000000000005,5.44,5.49,5.5200000000000005,5.55,5.5600000000000005,5.58,5.59,173.13,173.53,173.8,174.04,174.25,174.44,174.63,174.79,175.12,27.45,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.6,N/A,N/A +2012,6,12,14,30,101770,100620,99500,84.39,0,4.94,5.28,5.34,5.37,5.38,5.39,5.39,5.38,5.36,185.93,185.67000000000002,185.44,185.15,184.88,184.61,184.33,184.05,183.5,27.53,27.21,27.03,26.84,26.650000000000002,26.46,26.27,26.080000000000002,25.7,N/A,N/A +2012,6,12,15,30,101790,100630,99520,83.41,0,4.5,4.79,4.8500000000000005,4.88,4.89,4.89,4.89,4.89,4.87,167.87,168.08,168.28,168.48,168.66,168.84,169.02,169.19,169.56,27.5,27.17,27,26.8,26.61,26.42,26.22,26.04,25.66,N/A,N/A +2012,6,12,16,30,101770,100620,99500,81.37,0,4.48,4.78,4.84,4.87,4.9,4.91,4.93,4.94,4.95,168.21,168.67000000000002,168.94,169.18,169.39000000000001,169.61,169.81,170,170.4,27.560000000000002,27.22,27.05,26.85,26.67,26.48,26.28,26.1,25.72,N/A,N/A +2012,6,12,17,30,101760,100610,99490,80.68,0,4.01,4.24,4.28,4.29,4.3,4.3,4.3,4.29,4.28,165.37,165.56,165.73,165.89000000000001,166.03,166.16,166.28,166.4,166.64000000000001,27.57,27.22,27.04,26.85,26.66,26.46,26.27,26.09,25.7,N/A,N/A +2012,6,12,18,30,101730,100580,99460,80.87,0,4.36,4.62,4.68,4.7,4.72,4.74,4.75,4.76,4.79,162.98,163.33,163.45000000000002,163.57,163.70000000000002,163.83,163.96,164.1,164.38,27.560000000000002,27.21,27.04,26.85,26.66,26.47,26.28,26.09,25.72,N/A,N/A +2012,6,12,19,30,101730,100570,99460,81.65,0,5.04,5.37,5.44,5.45,5.47,5.47,5.46,5.45,5.43,159.09,159.52,159.75,159.97,160.15,160.33,160.52,160.69,161.04,27.6,27.25,27.07,26.88,26.69,26.5,26.3,26.12,25.740000000000002,N/A,N/A +2012,6,12,20,30,101690,100540,99420,79.73,0,4.86,5.15,5.21,5.23,5.24,5.24,5.23,5.22,5.2,169.68,169.74,169.72,169.68,169.65,169.61,169.57,169.54,169.47,27.580000000000002,27.240000000000002,27.07,26.86,26.68,26.490000000000002,26.29,26.11,25.73,N/A,N/A +2012,6,12,21,30,101640,100490,99370,80.13,0,5.03,5.38,5.45,5.48,5.5,5.51,5.51,5.51,5.51,165.71,165.81,165.85,165.89000000000001,165.93,165.96,166,166.03,166.12,27.560000000000002,27.22,27.04,26.85,26.66,26.46,26.27,26.080000000000002,25.7,N/A,N/A +2012,6,12,22,30,101610,100460,99350,81.17,0,5.91,6.3500000000000005,6.44,6.48,6.51,6.5200000000000005,6.54,6.54,6.55,156.8,156.77,156.83,156.88,156.94,157,157.07,157.13,157.27,27.41,27.07,26.900000000000002,26.7,26.51,26.32,26.13,25.95,25.57,N/A,N/A +2012,6,12,23,30,101590,100440,99320,79.21000000000001,0,5.89,6.38,6.49,6.55,6.6000000000000005,6.640000000000001,6.68,6.71,6.7700000000000005,161.37,161.52,161.55,161.57,161.6,161.62,161.65,161.67000000000002,161.72,27.47,27.150000000000002,26.98,26.79,26.6,26.41,26.22,26.04,25.67,N/A,N/A +2012,6,13,0,30,101610,100460,99340,79.27,0,6.22,6.73,6.84,6.9,6.95,6.97,6.99,7.01,7.03,166.69,166.74,166.76,166.8,166.84,166.89000000000001,166.94,166.99,167.11,27.43,27.1,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A +2012,6,13,1,30,101560,100410,99300,78.15,0,6.2,6.69,6.79,6.84,6.87,6.890000000000001,6.9,6.9,6.9,170.01,170.06,170.12,170.18,170.24,170.3,170.36,170.41,170.55,27.37,27.05,26.88,26.68,26.490000000000002,26.3,26.11,25.93,25.55,N/A,N/A +2012,6,13,2,30,101600,100440,99330,77.84,0,5.84,6.3100000000000005,6.41,6.47,6.5,6.53,6.54,6.55,6.5600000000000005,171.74,171.83,171.81,171.8,171.79,171.78,171.77,171.76,171.74,27.36,27.03,26.86,26.67,26.48,26.29,26.09,25.91,25.53,N/A,N/A +2012,6,13,3,30,101590,100440,99320,80.13,0,6.2700000000000005,6.76,6.86,6.91,6.94,6.96,6.97,6.97,6.97,178.8,178.92000000000002,178.96,178.99,179.02,179.04,179.07,179.09,179.13,27.19,26.85,26.67,26.48,26.29,26.1,25.900000000000002,25.72,25.34,N/A,N/A +2012,6,13,4,30,101530,100380,99270,78.8,0,7.16,7.75,7.890000000000001,7.95,7.99,8.02,8.03,8.040000000000001,8.03,171.74,171.68,171.64000000000001,171.59,171.54,171.49,171.42000000000002,171.36,171.23,27.18,26.84,26.66,26.46,26.27,26.09,25.89,25.71,25.330000000000002,N/A,N/A +2012,6,13,5,30,101510,100350,99240,80.63,0,6.79,7.34,7.47,7.53,7.57,7.6000000000000005,7.61,7.62,7.62,178,178.09,178.12,178.14000000000001,178.15,178.16,178.17000000000002,178.18,178.19,27.060000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A +2012,6,13,6,30,101520,100360,99250,81.48,0,6.8,7.3500000000000005,7.46,7.5200000000000005,7.5600000000000005,7.58,7.59,7.59,7.59,173.12,173.35,173.46,173.56,173.65,173.74,173.83,173.9,174.07,27.02,26.650000000000002,26.48,26.27,26.080000000000002,25.89,25.69,25.5,25.12,N/A,N/A +2012,6,13,7,30,101550,100390,99280,82.95,0,6.5600000000000005,7.01,7.1000000000000005,7.140000000000001,7.16,7.17,7.17,7.16,7.15,175.08,175.35,175.55,175.75,175.94,176.12,176.3,176.47,176.82,27.03,26.67,26.490000000000002,26.29,26.1,25.91,25.72,25.54,25.16,N/A,N/A +2012,6,13,8,30,101540,100380,99270,83.01,0,6.37,6.88,6.99,7.04,7.07,7.1000000000000005,7.1000000000000005,7.11,7.1000000000000005,184.92000000000002,184.89000000000001,184.89000000000001,184.89000000000001,184.89000000000001,184.91,184.91,184.92000000000002,184.94,27,26.63,26.45,26.25,26.05,25.86,25.66,25.48,25.09,N/A,N/A +2012,6,13,9,30,101580,100430,99310,82.62,0,4.44,4.78,4.86,4.91,4.95,4.98,5.01,5.03,5.0600000000000005,197.86,197.78,197.76,197.74,197.74,197.73000000000002,197.73000000000002,197.73000000000002,197.73000000000002,27.03,26.67,26.490000000000002,26.29,26.1,25.91,25.71,25.52,25.14,N/A,N/A +2012,6,13,10,30,101580,100430,99310,83.31,0,3.73,3.94,3.98,4,4.01,4.0200000000000005,4.03,4.04,4.07,187.78,188.38,188.64000000000001,188.87,189.1,189.32,189.54,189.75,190.20000000000002,26.92,26.560000000000002,26.39,26.18,25.990000000000002,25.8,25.6,25.41,25.02,N/A,N/A +2012,6,13,11,30,101580,100430,99310,80.33,0,3.62,3.83,3.88,3.91,3.93,3.95,3.97,3.99,4.03,191.62,192.43,192.85,193.23000000000002,193.55,193.85,194.14000000000001,194.41,194.94,27.02,26.68,26.51,26.310000000000002,26.12,25.94,25.75,25.560000000000002,25.19,N/A,N/A +2012,6,13,12,30,101580,100430,99310,81.55,0,2.81,2.99,3.04,3.08,3.11,3.15,3.18,3.2,3.2600000000000002,195.82,196.41,196.8,197.11,197.37,197.6,197.79,197.96,198.19,26.98,26.64,26.46,26.26,26.080000000000002,25.89,25.69,25.51,25.13,N/A,N/A +2012,6,13,13,30,101600,100440,99330,81.81,0,2.95,3.13,3.18,3.21,3.24,3.2600000000000002,3.29,3.31,3.35,189.63,188.87,188.44,187.99,187.58,187.18,186.76,186.34,185.48,27,26.66,26.48,26.29,26.1,25.91,25.72,25.53,25.16,N/A,N/A +2012,6,13,14,30,101630,100470,99360,81.21000000000001,0,2.0100000000000002,2.13,2.16,2.18,2.19,2.2,2.22,2.23,2.25,182.25,181.46,181.26,181.12,180.99,180.9,180.82,180.75,180.65,27.11,26.77,26.59,26.39,26.2,26.01,25.810000000000002,25.63,25.240000000000002,N/A,N/A +2012,6,13,15,30,101660,100500,99390,80.33,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.0500000000000003,3.04,3.02,3,2.96,158.56,158.78,158.95000000000002,159.1,159.25,159.39000000000001,159.54,159.69,160.02,27.23,26.89,26.71,26.51,26.32,26.13,25.93,25.740000000000002,25.36,N/A,N/A +2012,6,13,16,30,101590,100440,99320,80.65,0,2.74,2.87,2.9,2.91,2.92,2.92,2.92,2.93,2.93,163.38,163.62,163.83,164.04,164.23,164.43,164.63,164.82,165.26,27.22,26.86,26.69,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A +2012,6,13,17,30,101550,100400,99290,80.19,0,4.22,4.46,4.49,4.5,4.5,4.5,4.5,4.49,4.47,151.07,151.15,151.23,151.29,151.34,151.39000000000001,151.43,151.48,151.58,27.330000000000002,26.96,26.78,26.580000000000002,26.39,26.2,26,25.810000000000002,25.43,N/A,N/A +2012,6,13,18,30,101540,100390,99270,82.02,0,4.53,4.79,4.84,4.8500000000000005,4.86,4.86,4.86,4.86,4.84,144.33,144.87,145.17000000000002,145.46,145.72,145.96,146.21,146.44,146.9,27.37,26.990000000000002,26.810000000000002,26.61,26.42,26.22,26.02,25.84,25.45,N/A,N/A +2012,6,13,19,30,101540,100390,99270,81.62,0,5.65,6.0200000000000005,6.09,6.11,6.13,6.13,6.13,6.12,6.09,167.57,167.67000000000002,167.72,167.78,167.84,167.91,167.98,168.05,168.22,27.37,27,26.82,26.62,26.42,26.23,26.04,25.85,25.47,N/A,N/A +2012,6,13,20,30,101460,100310,99200,77.99,0,5.62,6,6.05,6.07,6.08,6.08,6.07,6.0600000000000005,6.03,175.12,175.04,175,174.96,174.92000000000002,174.89000000000001,174.84,174.8,174.72,27.51,27.16,26.98,26.78,26.59,26.400000000000002,26.2,26.02,25.63,N/A,N/A +2012,6,13,21,30,101450,100300,99180,79.03,0,6.3,6.76,6.86,6.9,6.93,6.94,6.94,6.94,6.92,177.53,177.59,177.64000000000001,177.69,177.72,177.75,177.78,177.81,177.86,27.46,27.11,26.94,26.740000000000002,26.55,26.35,26.16,25.97,25.59,N/A,N/A +2012,6,13,22,30,101390,100240,99130,81.17,0,6.76,7.29,7.4,7.45,7.48,7.5,7.5,7.51,7.5,187.51,187.42000000000002,187.47,187.5,187.54,187.58,187.62,187.66,187.75,27.36,27.01,26.830000000000002,26.63,26.44,26.25,26.05,25.87,25.48,N/A,N/A +2012,6,13,23,30,101400,100250,99140,81.64,0,6.43,6.95,7.0600000000000005,7.12,7.17,7.19,7.21,7.22,7.24,182.38,182.41,182.41,182.41,182.41,182.42000000000002,182.43,182.43,182.46,27.39,27.05,26.88,26.67,26.48,26.29,26.1,25.91,25.53,N/A,N/A +2012,6,14,0,30,101400,100260,99140,79.89,0,6.36,6.83,6.93,6.97,7,7.01,7.01,7,6.98,179.06,179.6,179.83,180.02,180.20000000000002,180.35,180.51,180.64000000000001,180.92000000000002,27.46,27.12,26.95,26.740000000000002,26.55,26.36,26.16,25.98,25.59,N/A,N/A +2012,6,14,1,30,101350,100200,99090,84.77,0,6.32,6.8100000000000005,6.92,6.97,7,7.0200000000000005,7.03,7.04,7.04,188.21,188.20000000000002,188.16,188.11,188.08,188.05,188.01,187.99,187.94,27.27,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A +2012,6,14,2,30,101330,100180,99070,85.55,0,8.6,9.36,9.52,9.6,9.66,9.68,9.700000000000001,9.71,9.71,195.24,195.3,195.33,195.36,195.4,195.44,195.49,195.53,195.62,27.3,26.94,26.77,26.560000000000002,26.37,26.18,25.98,25.8,25.42,N/A,N/A +2012,6,14,3,30,101370,100220,99110,84.92,0,6.47,7.0200000000000005,7.16,7.23,7.29,7.32,7.3500000000000005,7.36,7.38,180.21,180.37,180.49,180.59,180.67000000000002,180.74,180.81,180.86,180.97,27.36,27.02,26.85,26.64,26.45,26.26,26.060000000000002,25.88,25.5,N/A,N/A +2012,6,14,4,30,101380,100230,99120,82.53,0,6.4,6.93,7.0600000000000005,7.13,7.17,7.2,7.22,7.24,7.25,180.14000000000001,180.19,180.21,180.24,180.27,180.3,180.32,180.36,180.42000000000002,27.44,27.1,26.93,26.72,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,6,14,5,30,101370,100220,99110,84.28,0,7.11,7.7,7.83,7.890000000000001,7.930000000000001,7.95,7.97,7.97,7.97,185.77,185.87,185.9,185.91,185.92000000000002,185.92000000000002,185.92000000000002,185.92000000000002,185.91,27.330000000000002,26.98,26.810000000000002,26.6,26.41,26.22,26.02,25.84,25.46,N/A,N/A +2012,6,14,6,30,101400,100250,99140,82.19,0,6.3100000000000005,6.82,6.95,7.01,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.17,186.88,186.91,186.93,186.95000000000002,186.98,187,187.02,187.04,187.08,27.400000000000002,27.04,26.86,26.66,26.47,26.28,26.080000000000002,25.900000000000002,25.51,N/A,N/A +2012,6,14,7,30,101410,100260,99150,80.11,0,6.63,7.140000000000001,7.26,7.32,7.36,7.390000000000001,7.4,7.42,7.44,187.48,187.41,187.31,187.20000000000002,187.09,186.97,186.84,186.71,186.41,27.46,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A +2012,6,14,8,30,101400,100250,99140,80.98,0,6.11,6.63,6.75,6.83,6.88,6.92,6.95,6.97,7.0200000000000005,195.44,195.07,194.97,194.88,194.81,194.74,194.69,194.65,194.57,27.44,27.080000000000002,26.91,26.7,26.51,26.32,26.13,25.94,25.560000000000002,N/A,N/A +2012,6,14,9,30,101390,100240,99130,77.16,0,6.76,7.32,7.43,7.49,7.5200000000000005,7.54,7.55,7.55,7.54,192.09,192.08,192.07,192.05,192.02,192,191.98000000000002,191.95000000000002,191.9,27.6,27.25,27.080000000000002,26.88,26.69,26.490000000000002,26.3,26.11,25.73,N/A,N/A +2012,6,14,10,30,101400,100250,99140,74.5,0,7.43,8.07,8.2,8.26,8.290000000000001,8.31,8.32,8.32,8.290000000000001,192.27,192.28,192.32,192.36,192.39000000000001,192.42000000000002,192.45000000000002,192.48000000000002,192.52,27.84,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A +2012,6,14,11,30,101410,100260,99140,69.82000000000001,0,6.1000000000000005,6.59,6.71,6.78,6.84,6.88,6.92,6.94,6.99,187.69,188.15,188.39000000000001,188.62,188.81,188.99,189.17000000000002,189.33,189.63,27.94,27.63,27.46,27.27,27.09,26.900000000000002,26.71,26.52,26.150000000000002,N/A,N/A +2012,6,14,12,30,101400,100260,99140,73.06,0,6.53,7.03,7.140000000000001,7.19,7.22,7.24,7.25,7.25,7.25,193.88,193.91,193.98000000000002,194.06,194.13,194.22,194.3,194.38,194.55,27.82,27.5,27.34,27.14,26.96,26.77,26.580000000000002,26.39,26.02,N/A,N/A +2012,6,14,13,30,101450,100300,99190,67.98,0,4.67,5.01,5.08,5.11,5.14,5.16,5.18,5.2,5.22,194.43,194.79,194.95000000000002,195.08,195.20000000000002,195.32,195.41,195.5,195.68,27.97,27.66,27.5,27.3,27.11,26.92,26.73,26.55,26.17,N/A,N/A +2012,6,14,14,30,101490,100340,99220,67.75,0,5.15,5.55,5.65,5.7,5.75,5.78,5.8100000000000005,5.84,5.89,183.76,184.23,184.39000000000001,184.55,184.68,184.81,184.93,185.04,185.24,28.03,27.72,27.55,27.36,27.17,26.98,26.78,26.6,26.22,N/A,N/A +2012,6,14,15,30,101510,100360,99240,67.89,0,4.84,5.18,5.24,5.2700000000000005,5.29,5.29,5.29,5.3,5.29,179.75,179.82,179.91,180,180.09,180.18,180.29,180.38,180.6,28.02,27.71,27.54,27.34,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A +2012,6,14,16,30,101540,100390,99270,67.09,0,5.1000000000000005,5.44,5.51,5.54,5.5600000000000005,5.57,5.58,5.59,5.6000000000000005,184.43,184.27,184.16,184.05,183.97,183.89000000000001,183.82,183.77,183.68,28.04,27.72,27.560000000000002,27.36,27.17,26.98,26.79,26.6,26.22,N/A,N/A +2012,6,14,17,30,101520,100370,99250,71.03,0,5.2700000000000005,5.66,5.73,5.7700000000000005,5.79,5.8,5.8,5.8100000000000005,5.8,167.96,168.19,168.3,168.41,168.52,168.62,168.72,168.82,169.01,27.96,27.62,27.45,27.25,27.05,26.86,26.67,26.48,26.09,N/A,N/A +2012,6,14,18,30,101520,100370,99250,68.82000000000001,0,4.78,5.13,5.22,5.2700000000000005,5.3100000000000005,5.34,5.37,5.4,5.44,173.21,173.28,173.31,173.33,173.35,173.38,173.4,173.42000000000002,173.46,28.04,27.71,27.54,27.34,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A +2012,6,14,19,30,101520,100370,99260,73.3,0,5.73,6.15,6.24,6.28,6.32,6.34,6.3500000000000005,6.36,6.37,171.46,171.85,172.05,172.22,172.36,172.47,172.58,172.67000000000002,172.84,27.92,27.580000000000002,27.41,27.21,27.02,26.830000000000002,26.63,26.44,26.060000000000002,N/A,N/A +2012,6,14,20,30,101470,100320,99210,70.68,0,5.26,5.7,5.8,5.87,5.92,5.96,5.99,6.0200000000000005,6.0600000000000005,171.78,172.41,172.67000000000002,172.88,173.05,173.20000000000002,173.34,173.46,173.69,27.98,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.7,26.51,26.13,N/A,N/A +2012,6,14,21,30,101440,100300,99180,71.67,0,5.9,6.34,6.44,6.48,6.51,6.53,6.54,6.55,6.5600000000000005,169.17000000000002,169.07,169.01,168.95000000000002,168.89000000000001,168.84,168.79,168.74,168.65,27.93,27.61,27.44,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A +2012,6,14,22,30,101430,100280,99170,70.64,0,6.42,6.93,7.04,7.09,7.13,7.15,7.16,7.17,7.17,166.66,166.63,166.65,166.65,166.65,166.65,166.65,166.65,166.65,27.96,27.64,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,6,14,23,30,101390,100240,99130,74.14,0,6.8500000000000005,7.42,7.54,7.61,7.65,7.68,7.7,7.72,7.74,175.12,175.11,175.08,175.01,174.95000000000002,174.87,174.8,174.72,174.56,27.8,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,6,15,0,30,101350,100200,99090,71.89,0,6.78,7.37,7.51,7.59,7.65,7.7,7.74,7.7700000000000005,7.82,176.47,176.57,176.61,176.62,176.63,176.64000000000001,176.64000000000001,176.64000000000001,176.64000000000001,27.85,27.52,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A +2012,6,15,1,30,101360,100210,99100,73.72,0,6.66,7.22,7.34,7.4,7.44,7.47,7.48,7.49,7.49,169.59,169.69,169.82,169.95000000000002,170.06,170.17000000000002,170.28,170.38,170.6,27.79,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,6,15,2,30,101350,100200,99090,69.95,0,6.98,7.57,7.69,7.75,7.79,7.82,7.83,7.84,7.8500000000000005,175.13,174.84,174.65,174.45000000000002,174.26,174.08,173.88,173.69,173.3,27.91,27.580000000000002,27.42,27.21,27.03,26.830000000000002,26.64,26.45,26.07,N/A,N/A +2012,6,15,3,30,101410,100260,99150,73.69,0,7.21,7.84,7.98,8.06,8.1,8.13,8.15,8.15,8.15,170.1,170.18,170.17000000000002,170.14000000000001,170.1,170.04,169.98,169.92000000000002,169.78,27.82,27.490000000000002,27.32,27.12,26.92,26.73,26.54,26.35,25.97,N/A,N/A +2012,6,15,4,30,101360,100220,99100,68.32000000000001,0,6.38,6.9,7.0200000000000005,7.09,7.140000000000001,7.17,7.21,7.24,7.29,169.4,169.95000000000002,170.21,170.47,170.71,170.93,171.15,171.35,171.77,27.990000000000002,27.68,27.52,27.330000000000002,27.150000000000002,26.96,26.77,26.59,26.22,N/A,N/A +2012,6,15,5,30,101390,100240,99130,77.42,0,6.48,6.97,7.0600000000000005,7.09,7.1000000000000005,7.11,7.1000000000000005,7.09,7.0600000000000005,164.84,164.5,164.41,164.33,164.27,164.22,164.17000000000002,164.13,164.05,27.52,27.17,27,26.8,26.61,26.42,26.22,26.04,25.66,N/A,N/A +2012,6,15,6,30,101390,100240,99130,71.4,0,5.72,6.24,6.37,6.45,6.5200000000000005,6.57,6.61,6.65,6.71,169.67000000000002,169.53,169.5,169.44,169.39000000000001,169.33,169.27,169.21,169.08,27.830000000000002,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.39,26,N/A,N/A +2012,6,15,7,30,101380,100230,99120,76.47,0,7.62,8.290000000000001,8.43,8.51,8.55,8.58,8.6,8.61,8.620000000000001,166.15,166.38,166.48,166.58,166.67000000000002,166.75,166.83,166.9,167.04,27.580000000000002,27.25,27.080000000000002,26.88,26.69,26.5,26.3,26.12,25.73,N/A,N/A +2012,6,15,8,30,101400,100250,99140,75.68,0,6.66,7.29,7.45,7.54,7.61,7.67,7.71,7.74,7.79,168.6,168.42000000000002,168.34,168.28,168.23,168.18,168.14000000000001,168.1,168.03,27.67,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.82,N/A,N/A +2012,6,15,9,30,101460,100310,99200,76.3,0,5.94,6.42,6.54,6.61,6.67,6.7,6.73,6.76,6.8,170.68,170.64000000000001,170.6,170.54,170.48,170.42000000000002,170.35,170.29,170.14000000000001,27.6,27.28,27.1,26.91,26.72,26.52,26.330000000000002,26.14,25.76,N/A,N/A +2012,6,15,10,30,101450,100300,99190,77.93,0,5.71,6.18,6.28,6.34,6.38,6.41,6.43,6.44,6.46,159.93,159.97,160.05,160.13,160.19,160.26,160.33,160.4,160.54,27.59,27.27,27.1,26.900000000000002,26.71,26.52,26.32,26.13,25.75,N/A,N/A +2012,6,15,11,30,101490,100340,99220,79.46000000000001,0,5.57,6,6.09,6.140000000000001,6.17,6.19,6.2,6.2,6.2,161.28,161.5,161.64000000000001,161.77,161.87,161.97,162.06,162.14000000000001,162.3,27.47,27.14,26.96,26.77,26.57,26.38,26.19,26,25.62,N/A,N/A +2012,6,15,12,30,101520,100370,99250,81.13,0,5.0200000000000005,5.42,5.5200000000000005,5.58,5.63,5.67,5.7,5.73,5.78,176.47,176.09,175.91,175.73,175.57,175.42000000000002,175.27,175.12,174.85,27.32,26.98,26.810000000000002,26.6,26.41,26.22,26.02,25.84,25.45,N/A,N/A +2012,6,15,13,30,101560,100410,99300,81.07000000000001,0,4.23,4.46,4.5,4.51,4.5200000000000005,4.5200000000000005,4.51,4.51,4.5,167.17000000000002,166.77,166.55,166.33,166.15,165.98,165.81,165.64000000000001,165.33,27.44,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A +2012,6,15,14,30,101590,100440,99330,81.49,0,3.88,4.11,4.15,4.17,4.18,4.18,4.18,4.17,4.15,166.31,165.31,164.77,164.25,163.79,163.34,162.9,162.51,161.69,27.5,27.16,26.990000000000002,26.79,26.6,26.41,26.21,26.03,25.650000000000002,N/A,N/A +2012,6,15,15,30,101590,100440,99320,82.72,0,3.75,3.95,3.99,4,4,4,4,4,3.99,159.23,159.41,159.61,159.79,159.95000000000002,160.11,160.27,160.42000000000002,160.76,27.48,27.14,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A +2012,6,15,16,30,101600,100450,99340,83.26,0,3.44,3.66,3.71,3.74,3.77,3.79,3.81,3.83,3.86,148.13,148.64000000000001,149.11,149.58,150.01,150.44,150.86,151.27,152.15,27.57,27.22,27.05,26.85,26.66,26.47,26.27,26.09,25.71,N/A,N/A +2012,6,15,17,30,101590,100440,99320,86.33,2.2,5.12,5.58,5.75,5.87,5.96,6.04,6.12,6.19,6.33,182.79,185.61,186.95000000000002,188.33,189.59,190.85,192.16,193.43,195.92000000000002,27.310000000000002,26.97,26.810000000000002,26.62,26.45,26.27,26.09,25.92,25.57,N/A,N/A +2012,6,15,18,30,101580,100430,99310,81.09,0,5.25,5.62,5.69,5.72,5.73,5.74,5.74,5.73,5.72,185.47,185.31,185.24,185.15,185.08,185,184.93,184.86,184.71,27.72,27.38,27.21,27.01,26.82,26.63,26.44,26.25,25.87,N/A,N/A +2012,6,15,19,30,101560,100420,99300,80.17,0,4.8500000000000005,5.18,5.24,5.2700000000000005,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3100000000000005,182.55,182.51,182.44,182.38,182.32,182.26,182.20000000000002,182.14000000000001,182.03,27.76,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.91,N/A,N/A +2012,6,15,20,30,101530,100380,99270,77.86,0,5.55,5.97,6.07,6.13,6.16,6.19,6.21,6.23,6.26,169,168.99,168.94,168.89000000000001,168.84,168.8,168.75,168.70000000000002,168.62,27.87,27.53,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.02,N/A,N/A +2012,6,15,21,30,101540,100390,99280,76.81,0,6.140000000000001,6.61,6.71,6.75,6.78,6.79,6.8,6.8,6.79,157.49,157.5,157.58,157.63,157.67000000000002,157.70000000000002,157.72,157.75,157.79,27.830000000000002,27.5,27.330000000000002,27.13,26.94,26.75,26.55,26.37,25.98,N/A,N/A +2012,6,15,22,30,101500,100350,99240,76.57000000000001,0,5.84,6.28,6.36,6.390000000000001,6.41,6.41,6.41,6.4,6.37,159.36,159.31,159.32,159.32,159.31,159.3,159.28,159.26,159.21,27.78,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,6,15,23,30,101440,100290,99180,77.96000000000001,0,6.13,6.640000000000001,6.74,6.79,6.8100000000000005,6.83,6.83,6.83,6.8100000000000005,170.11,170.02,169.95000000000002,169.89000000000001,169.84,169.79,169.75,169.71,169.63,27.650000000000002,27.32,27.150000000000002,26.95,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A +2012,6,16,0,30,101470,100320,99210,74.19,0,4.86,5.26,5.36,5.41,5.45,5.48,5.51,5.53,5.5600000000000005,170.67000000000002,170.5,170.46,170.4,170.35,170.31,170.25,170.19,170.06,27.740000000000002,27.43,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.3,25.92,N/A,N/A +2012,6,16,1,30,101510,100360,99250,71.79,0,5.48,5.95,6.0600000000000005,6.12,6.17,6.2,6.23,6.26,6.3,146.6,146.9,147.06,147.19,147.29,147.38,147.46,147.53,147.64000000000001,27.8,27.490000000000002,27.32,27.13,26.94,26.75,26.560000000000002,26.38,26,N/A,N/A +2012,6,16,2,30,101490,100340,99230,74.43,0,6.98,7.65,7.8100000000000005,7.9,7.97,8.02,8.06,8.09,8.13,146.67000000000002,146.54,146.44,146.34,146.24,146.14000000000001,146.05,145.96,145.77,27.71,27.38,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A +2012,6,16,3,30,101500,100350,99230,67.86,0,6.62,7.28,7.44,7.53,7.6000000000000005,7.66,7.7,7.74,7.8100000000000005,142.04,142.24,142.32,142.38,142.44,142.49,142.55,142.6,142.70000000000002,27.990000000000002,27.69,27.52,27.32,27.14,26.95,26.75,26.57,26.19,N/A,N/A +2012,6,16,4,30,101460,100300,99190,66.33,0,7.42,8.14,8.290000000000001,8.38,8.44,8.49,8.52,8.55,8.6,151.95000000000002,151.75,151.67000000000002,151.59,151.53,151.46,151.39000000000001,151.33,151.20000000000002,27.990000000000002,27.68,27.51,27.32,27.13,26.95,26.75,26.57,26.19,N/A,N/A +2012,6,16,5,30,101510,100360,99250,68.83,0,7.71,8.42,8.57,8.65,8.69,8.72,8.73,8.74,8.73,146.29,146.39000000000001,146.52,146.64000000000001,146.75,146.86,146.96,147.06,147.24,27.87,27.57,27.41,27.21,27.03,26.84,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,6,16,6,30,101510,100360,99250,71.67,0,6.86,7.5200000000000005,7.66,7.74,7.79,7.82,7.84,7.86,7.87,153.12,153.01,153.01,153.01,153.01,153.02,153.04,153.06,153.09,27.78,27.46,27.28,27.080000000000002,26.89,26.7,26.5,26.32,25.93,N/A,N/A +2012,6,16,7,30,101530,100380,99270,60.97,0,6.8,7.42,7.57,7.65,7.72,7.78,7.82,7.86,7.930000000000001,149.11,149.54,149.70000000000002,149.84,149.96,150.07,150.18,150.27,150.44,28.2,27.93,27.77,27.580000000000002,27.39,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,6,16,8,30,101570,100420,99300,63.93,0,6.05,6.6000000000000005,6.71,6.7700000000000005,6.8100000000000005,6.84,6.86,6.87,6.88,145.8,146.06,146.12,146.18,146.23,146.27,146.31,146.35,146.44,28.17,27.88,27.72,27.53,27.34,27.150000000000002,26.96,26.78,26.39,N/A,N/A +2012,6,16,9,30,101590,100440,99320,60.83,0,5,5.39,5.48,5.5200000000000005,5.55,5.58,5.6000000000000005,5.61,5.64,149.97,150.11,150.17000000000002,150.20000000000002,150.23,150.25,150.26,150.27,150.28,28.26,27.990000000000002,27.830000000000002,27.63,27.45,27.26,27.07,26.89,26.51,N/A,N/A +2012,6,16,10,30,101610,100460,99340,67.18,0,5.08,5.5200000000000005,5.6000000000000005,5.63,5.66,5.66,5.67,5.66,5.65,153.45000000000002,153.31,153.31,153.3,153.27,153.25,153.21,153.18,153.09,27.98,27.68,27.52,27.32,27.13,26.94,26.75,26.560000000000002,26.18,N/A,N/A +2012,6,16,11,30,101620,100470,99350,65.19,0,4.17,4.5200000000000005,4.6000000000000005,4.65,4.7,4.74,4.7700000000000005,4.8,4.86,144.88,145.05,145.13,145.22,145.29,145.36,145.42000000000002,145.49,145.61,27.94,27.64,27.47,27.28,27.09,26.900000000000002,26.7,26.52,26.13,N/A,N/A +2012,6,16,12,30,101670,100520,99400,71.82000000000001,0,4.2700000000000005,4.55,4.6000000000000005,4.61,4.62,4.63,4.62,4.62,4.61,145.41,145.65,145.74,145.81,145.88,145.93,145.97,146.02,146.1,27.63,27.310000000000002,27.14,26.94,26.75,26.560000000000002,26.37,26.18,25.8,N/A,N/A +2012,6,16,13,30,101700,100550,99430,70.2,0,3.65,3.84,3.85,3.83,3.8200000000000003,3.8000000000000003,3.7800000000000002,3.7600000000000002,3.71,138.74,138.67000000000002,138.62,138.56,138.51,138.45000000000002,138.39000000000001,138.33,138.20000000000002,27.61,27.28,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.76,N/A,N/A +2012,6,16,14,30,101760,100600,99480,71.54,0,2.92,3.04,3.0500000000000003,3.04,3.02,3.0100000000000002,2.99,2.98,2.94,135.55,135.12,135.02,134.91,134.81,134.71,134.6,134.49,134.27,27.53,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.68,N/A,N/A +2012,6,16,15,30,101780,100620,99510,76.69,0,2.94,3.0700000000000003,3.09,3.09,3.09,3.09,3.08,3.0700000000000003,3.06,124.73,124.57000000000001,124.47,124.36,124.26,124.17,124.08,123.99000000000001,123.8,27.41,27.07,26.89,26.69,26.5,26.310000000000002,26.11,25.92,25.54,N/A,N/A +2012,6,16,16,30,101750,100600,99480,75.06,0,2.07,2.19,2.21,2.22,2.23,2.24,2.25,2.2600000000000002,2.27,127.44,127.28,127.2,127.12,127.05,126.98,126.9,126.81,126.67,27.51,27.16,26.990000000000002,26.78,26.6,26.41,26.21,26.02,25.64,N/A,N/A +2012,6,16,17,30,101760,100610,99490,77.37,0,1.97,2.0300000000000002,2.04,2.0300000000000002,2.0300000000000002,2.02,2.0100000000000002,2.0100000000000002,1.99,121.35000000000001,120.74000000000001,120.5,120.27,120.07000000000001,119.89,119.71000000000001,119.55,119.22,27.51,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.19,26.01,25.62,N/A,N/A +2012,6,16,18,30,101750,100600,99480,75.71000000000001,0,3.0700000000000003,3.24,3.27,3.29,3.31,3.3200000000000003,3.33,3.34,3.35,99.15,98.91,98.91,98.91,98.9,98.89,98.89,98.87,98.87,27.68,27.32,27.14,26.94,26.75,26.560000000000002,26.36,26.18,25.8,N/A,N/A +2012,6,16,19,30,101770,100620,99500,80.34,0,4.7700000000000005,4.93,4.93,4.9,4.8500000000000005,4.8,4.75,4.7,4.58,93.71000000000001,92.62,91.94,91.28,90.68,90.09,89.41,88.72,86.99,27.2,26.86,26.7,26.52,26.35,26.18,26.01,25.84,25.52,N/A,N/A +2012,6,16,20,30,101710,100560,99440,76.12,0,5.24,5.51,5.53,5.51,5.49,5.45,5.4,5.3500000000000005,5.21,87.36,87.69,88,88.34,88.69,89.05,89.48,89.9,91.07000000000001,26.7,26.32,26.14,25.95,25.77,25.580000000000002,25.400000000000002,25.22,24.88,N/A,N/A +2012,6,16,21,30,101670,100510,99400,79.14,0,3.69,3.9,3.95,3.97,3.99,4.01,4.0200000000000005,4.03,4.05,108.69,108.55,108.55,108.51,108.45,108.38,108.27,108.16,107.77,26.77,26.41,26.23,26.03,25.84,25.66,25.47,25.29,24.92,N/A,N/A +2012,6,16,22,30,101600,100450,99330,78.38,0,4.96,5.2700000000000005,5.32,5.34,5.36,5.37,5.37,5.37,5.38,106,106.07000000000001,106.11,106.15,106.19,106.22,106.26,106.3,106.36,27.01,26.650000000000002,26.47,26.27,26.09,25.900000000000002,25.71,25.53,25.16,N/A,N/A +2012,6,16,23,30,101580,100430,99320,78.71000000000001,0,5.48,5.91,6.0200000000000005,6.08,6.13,6.16,6.19,6.22,6.26,89.29,89.2,89.14,89.09,89.04,88.98,88.93,88.88,88.77,27.25,26.900000000000002,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A +2012,6,17,0,30,101550,100400,99280,80.65,0,6.2,6.67,6.76,6.8,6.82,6.83,6.83,6.83,6.8100000000000005,98.08,98.06,98.18,98.32000000000001,98.46000000000001,98.59,98.73,98.86,99.13,27.11,26.740000000000002,26.560000000000002,26.36,26.16,25.98,25.78,25.59,25.21,N/A,N/A +2012,6,17,1,30,101560,100410,99290,82.93,0,5.62,6.0200000000000005,6.12,6.17,6.2,6.22,6.24,6.25,6.26,103.69,104.16,104.4,104.61,104.79,104.96000000000001,105.11,105.26,105.56,26.8,26.43,26.25,26.05,25.86,25.67,25.47,25.29,24.91,N/A,N/A +2012,6,17,2,30,101530,100380,99260,81.79,0,6.46,6.97,7.09,7.16,7.2,7.23,7.25,7.2700000000000005,7.29,107.43,107.57000000000001,107.67,107.76,107.86,107.94,108.03,108.11,108.27,27.13,26.77,26.6,26.39,26.2,26.02,25.82,25.64,25.26,N/A,N/A +2012,6,17,3,30,101530,100380,99260,84.85000000000001,0,7.17,7.78,7.930000000000001,8.02,8.08,8.120000000000001,8.16,8.19,8.22,117.71000000000001,117.46000000000001,117.32000000000001,117.16,117.02,116.9,116.77,116.65,116.4,26.98,26.6,26.42,26.21,26.02,25.82,25.62,25.44,25.05,N/A,N/A +2012,6,17,4,30,101500,100350,99230,84.81,0,7.09,7.66,7.79,7.8500000000000005,7.890000000000001,7.92,7.930000000000001,7.930000000000001,7.930000000000001,116.83,117.16,117.29,117.4,117.49000000000001,117.56,117.63,117.69,117.79,27.13,26.76,26.580000000000002,26.38,26.19,25.990000000000002,25.8,25.61,25.23,N/A,N/A +2012,6,17,5,30,101510,100360,99250,82.03,0,7.21,7.82,7.94,8.01,8.040000000000001,8.05,8.06,8.06,8.040000000000001,119.58,119.49000000000001,119.45,119.41,119.39,119.37,119.35000000000001,119.34,119.33,27.150000000000002,26.79,26.61,26.41,26.22,26.03,25.830000000000002,25.650000000000002,25.26,N/A,N/A +2012,6,17,6,30,101550,100400,99280,80.78,0,6.390000000000001,7.01,7.16,7.26,7.33,7.38,7.41,7.44,7.48,116.77,117.38,117.57000000000001,117.7,117.8,117.88,117.94,117.99000000000001,118.04,27.36,27,26.82,26.62,26.43,26.240000000000002,26.04,25.85,25.46,N/A,N/A +2012,6,17,7,30,101560,100410,99300,79.67,0,6.13,6.61,6.72,6.78,6.82,6.8500000000000005,6.87,6.890000000000001,6.91,114.04,114.14,114.24000000000001,114.34,114.42,114.51,114.59,114.66,114.79,27.330000000000002,26.98,26.8,26.6,26.41,26.22,26.02,25.84,25.45,N/A,N/A +2012,6,17,8,30,101560,100400,99290,76.93,0,5.55,5.94,6.01,6.05,6.07,6.08,6.08,6.09,6.08,97.52,97.65,97.78,97.9,98.02,98.14,98.25,98.36,98.59,27.400000000000002,27.060000000000002,26.89,26.69,26.5,26.310000000000002,26.12,25.93,25.55,N/A,N/A +2012,6,17,9,30,101580,100420,99310,73.79,0,5.7,6.15,6.25,6.3100000000000005,6.36,6.4,6.43,6.45,6.5,103.45,103.8,104.02,104.21000000000001,104.38,104.54,104.68,104.81,105.05,27.54,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.69,N/A,N/A +2012,6,17,10,30,101570,100420,99300,71.88,0,6.140000000000001,6.61,6.69,6.73,6.75,6.76,6.76,6.75,6.74,97.12,96.78,96.58,96.4,96.24000000000001,96.08,95.92,95.78,95.49,27.48,27.14,26.96,26.77,26.57,26.38,26.19,26,25.61,N/A,N/A +2012,6,17,11,30,101580,100430,99310,71.22,0,6.08,6.51,6.58,6.6000000000000005,6.61,6.61,6.6000000000000005,6.59,6.5600000000000005,85.77,86.17,86.34,86.48,86.59,86.7,86.79,86.88,87.05,27.54,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.68,N/A,N/A +2012,6,17,12,30,101610,100450,99340,63.35,0,6.2700000000000005,6.78,6.87,6.92,6.95,6.96,6.97,6.98,6.98,82.73,82.93,82.97,82.99,83,83,83,83,83,27.830000000000002,27.51,27.34,27.150000000000002,26.96,26.77,26.57,26.39,26,N/A,N/A +2012,6,17,13,30,101640,100480,99370,61.61,0,6.29,6.82,6.92,6.97,7.01,7.03,7.04,7.05,7.05,72.28,72.37,72.44,72.51,72.58,72.64,72.7,72.76,72.89,27.830000000000002,27.53,27.36,27.16,26.97,26.79,26.59,26.41,26.02,N/A,N/A +2012,6,17,14,30,101620,100460,99350,57.04,0,6.7700000000000005,7.4,7.5200000000000005,7.59,7.63,7.66,7.67,7.68,7.68,65.71000000000001,65.6,65.62,65.66,65.69,65.73,65.78,65.82000000000001,65.9,27.88,27.57,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.060000000000002,N/A,N/A +2012,6,17,15,30,101610,100450,99330,56.53,0,7.32,8,8.14,8.2,8.24,8.26,8.27,8.27,8.24,60.89,60.870000000000005,60.94,61.02,61.1,61.17,61.26,61.33,61.5,27.85,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.02,N/A,N/A +2012,6,17,16,30,101620,100460,99340,61.58,0,7.57,8.19,8.3,8.35,8.38,8.4,8.4,8.4,8.370000000000001,74.59,74.9,75.07000000000001,75.25,75.4,75.56,75.7,75.84,76.13,27.38,27.03,26.85,26.66,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A +2012,6,17,17,30,101580,100420,99300,63.82,0,6.55,6.99,7.0600000000000005,7.07,7.07,7.07,7.0600000000000005,7.04,7,72.58,73.28,73.64,73.97,74.28,74.56,74.85000000000001,75.11,75.67,27.07,26.71,26.54,26.34,26.150000000000002,25.96,25.77,25.580000000000002,25.2,N/A,N/A +2012,6,17,18,30,101530,100370,99250,64.59,0,6.04,6.51,6.62,6.68,6.72,6.76,6.79,6.82,6.86,87.62,87.54,87.5,87.44,87.39,87.33,87.25,87.18,87.01,27,26.63,26.45,26.26,26.07,25.88,25.69,25.51,25.13,N/A,N/A +2012,6,17,19,30,101490,100330,99210,66.39,0,6.01,6.49,6.58,6.640000000000001,6.69,6.72,6.74,6.7700000000000005,6.8,96.79,96.03,95.68,95.34,95.02,94.73,94.42,94.15,93.55,27.060000000000002,26.68,26.5,26.310000000000002,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A +2012,6,17,20,30,101410,100250,99140,68.33,0,6.17,6.640000000000001,6.73,6.7700000000000005,6.8,6.82,6.83,6.84,6.8500000000000005,96.73,96.37,96.17,95.95,95.75,95.55,95.35000000000001,95.17,94.8,27.07,26.7,26.52,26.330000000000002,26.14,25.96,25.77,25.59,25.22,N/A,N/A +2012,6,17,21,30,101350,100200,99080,67.77,0,6.05,6.5,6.6000000000000005,6.640000000000001,6.68,6.7,6.71,6.72,6.74,95.56,95.76,95.81,95.85000000000001,95.88,95.9,95.91,95.91,95.91,27.28,26.94,26.76,26.57,26.38,26.19,26,25.82,25.44,N/A,N/A +2012,6,17,22,30,101300,100150,99040,68.64,0,3.2600000000000002,3.48,3.54,3.58,3.61,3.64,3.68,3.7,3.7800000000000002,101.58,101.45,101.36,101.26,101.15,101.04,100.91,100.78,100.43,27.3,26.96,26.79,26.59,26.400000000000002,26.21,26.02,25.84,25.46,N/A,N/A +2012,6,17,23,30,101270,100120,99010,72.21000000000001,0,4.0200000000000005,4.3100000000000005,4.39,4.43,4.48,4.5200000000000005,4.55,4.59,4.66,96.55,96.35000000000001,96.23,96.09,95.97,95.85000000000001,95.72,95.59,95.33,27.28,26.94,26.76,26.560000000000002,26.38,26.19,25.990000000000002,25.810000000000002,25.43,N/A,N/A +2012,6,18,0,30,101230,100080,98960,75.32000000000001,0,4.03,4.32,4.39,4.44,4.48,4.5200000000000005,4.55,4.57,4.63,90.24,90.15,90.13,90.11,90.09,90.06,90.03,90.01,89.95,27.27,26.93,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.42,N/A,N/A +2012,6,18,1,30,101180,100040,98920,77.34,0,5.38,5.79,5.88,5.94,5.98,6.01,6.03,6.05,6.08,92.28,92.16,92.11,92.06,92.02,91.98,91.94,91.9,91.82000000000001,27.35,26.990000000000002,26.82,26.62,26.43,26.240000000000002,26.04,25.86,25.47,N/A,N/A +2012,6,18,2,30,101140,99990,98880,76.54,0,5.22,5.57,5.63,5.66,5.67,5.68,5.69,5.69,5.69,97.14,96.3,95.82000000000001,95.35000000000001,94.91,94.5,94.09,93.71000000000001,92.91,27.29,26.94,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A +2012,6,18,3,30,101130,99980,98870,80.46000000000001,0,6.15,6.62,6.72,6.78,6.8100000000000005,6.84,6.8500000000000005,6.86,6.88,95.33,94.98,94.82000000000001,94.68,94.56,94.46000000000001,94.34,94.23,94.01,27.17,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.86,25.67,25.29,N/A,N/A +2012,6,18,4,30,101100,99950,98840,79.54,0,6.18,6.68,6.79,6.86,6.9,6.93,6.95,6.97,6.99,107.88,107.89,107.89,107.89,107.89,107.91,107.92,107.94,107.97,27.18,26.82,26.64,26.44,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,6,18,5,30,101060,99920,98800,82.73,0,6.19,6.63,6.74,6.79,6.83,6.86,6.88,6.9,6.93,115.27,115.23,115.3,115.39,115.48,115.57000000000001,115.68,115.78,116,27.1,26.740000000000002,26.560000000000002,26.35,26.16,25.97,25.78,25.59,25.21,N/A,N/A +2012,6,18,6,30,101070,99920,98810,83.83,0,6.65,7.15,7.25,7.3100000000000005,7.34,7.36,7.37,7.37,7.37,130.55,130.9,131,131.09,131.16,131.24,131.3,131.37,131.48,26.73,26.330000000000002,26.150000000000002,25.94,25.740000000000002,25.55,25.35,25.17,24.78,N/A,N/A +2012,6,18,7,30,101050,99900,98790,83.35000000000001,0,5.8,6.21,6.3,6.3500000000000005,6.38,6.4,6.41,6.43,6.44,144.96,145.27,145.4,145.53,145.65,145.75,145.86,145.96,146.14000000000001,27.01,26.63,26.45,26.25,26.060000000000002,25.87,25.67,25.48,25.1,N/A,N/A +2012,6,18,8,30,101020,99870,98760,82.58,0,7.37,7.97,8.09,8.15,8.18,8.19,8.19,8.18,8.14,180.96,180.96,181,181.07,181.13,181.20000000000002,181.29,181.37,181.57,27.2,26.830000000000002,26.650000000000002,26.45,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,6,18,9,30,101030,99880,98770,82.18,0,5.83,6.2700000000000005,6.36,6.41,6.45,6.47,6.49,6.5,6.5200000000000005,181.92000000000002,181.75,181.62,181.49,181.36,181.24,181.12,181,180.75,27.150000000000002,26.78,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A +2012,6,18,10,30,101040,99900,98780,79.71000000000001,0,6.3100000000000005,6.7700000000000005,6.88,6.92,6.96,6.97,6.98,6.99,6.99,208.36,208.08,207.88,207.68,207.49,207.3,207.1,206.92000000000002,206.54,27.19,26.830000000000002,26.66,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A +2012,6,18,11,30,101010,99860,98750,79.35000000000001,0,4.84,5.15,5.2,5.23,5.24,5.24,5.24,5.24,5.23,214.18,214.16,214.04,213.92000000000002,213.81,213.70000000000002,213.58,213.47,213.22,27.09,26.73,26.55,26.35,26.16,25.97,25.77,25.59,25.21,N/A,N/A +2012,6,18,12,30,101040,99900,98790,80.5,0,4.05,4.2700000000000005,4.3100000000000005,4.32,4.33,4.33,4.33,4.33,4.33,201.5,201.66,201.68,201.70000000000002,201.73000000000002,201.74,201.76,201.77,201.81,27.05,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A +2012,6,18,13,30,101110,99960,98840,91.08,5.1000000000000005,10.47,11.09,11.040000000000001,10.83,10.6,10.32,10.01,9.71,9.05,140.81,140.98,141.34,141.88,142.43,143.01,143.68,144.34,145.83,25.240000000000002,24.79,24.63,24.47,24.330000000000002,24.19,24.05,23.92,23.63,N/A,N/A +2012,6,18,14,30,101160,100000,98880,82.79,30,3.23,3.31,3.29,3.27,3.25,3.22,3.16,3.09,2.7600000000000002,127.84,132.26,134.95,137.89000000000001,141.06,144.3,147.81,151.01,156.17000000000002,24.96,24.57,24.41,24.25,24.1,23.98,23.88,23.8,23.650000000000002,N/A,N/A +2012,6,18,15,30,101140,99980,98850,88.79,39.900000000000006,3.92,3.85,3.69,3.5,3.37,3.2800000000000002,3.45,3.65,4.18,90.38,90.81,92.22,94.47,102.48,112.25,119.26,125.41,133.41,23.72,23.35,23.240000000000002,23.16,23.22,23.32,23.36,23.38,23.19,N/A,N/A +2012,6,18,16,30,101200,100040,98930,81.16,2.2,4.5200000000000005,4.91,5.01,5.09,5.15,5.2,5.24,5.28,5.33,142.73,144.52,145.08,145.55,145.94,146.28,146.59,146.86,147.33,26.16,25.77,25.59,25.38,25.19,25,24.8,24.62,24.240000000000002,N/A,N/A +2012,6,18,17,30,101140,99990,98870,86.68,0.4,6.33,6.75,6.84,6.890000000000001,6.92,6.94,6.96,6.98,7.05,155.48,155.29,155.16,155.04,154.92000000000002,154.8,154.64000000000001,154.5,154.12,26,25.580000000000002,25.400000000000002,25.2,25.02,24.84,24.650000000000002,24.48,24.14,N/A,N/A +2012,6,18,18,30,101170,100020,98900,89.11,4.4,8.11,8.61,8.68,8.69,8.67,8.65,8.6,8.56,8.46,147.57,148.22,148.77,149.3,149.81,150.28,150.78,151.23,152.23,25.55,25.09,24.900000000000002,24.7,24.52,24.34,24.150000000000002,23.98,23.63,N/A,N/A +2012,6,18,19,30,101190,100030,98910,83.7,0.4,8.33,8.93,9.03,9.05,9.06,9.05,9.03,9.01,8.94,175.26,174.63,174.3,173.95000000000002,173.6,173.25,172.88,172.52,171.71,25.76,25.3,25.11,24.900000000000002,24.71,24.52,24.32,24.14,23.77,N/A,N/A +2012,6,18,20,30,101160,100000,98890,80.2,0,7.11,7.63,7.74,7.78,7.8100000000000005,7.82,7.83,7.83,7.82,159.67000000000002,159.75,159.79,159.82,159.84,159.86,159.87,159.89000000000001,159.92000000000002,26.29,25.87,25.68,25.48,25.28,25.09,24.89,24.71,24.32,N/A,N/A +2012,6,18,21,30,101130,99980,98870,74.98,0,6.5,7.0200000000000005,7.140000000000001,7.22,7.28,7.33,7.37,7.4,7.46,156.03,156.01,156.04,156.05,156.07,156.07,156.07,156.08,156.07,26.82,26.45,26.27,26.060000000000002,25.87,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A +2012,6,18,22,30,101080,99930,98810,77.73,0,7.55,8.19,8.33,8.41,8.47,8.51,8.540000000000001,8.56,8.59,146.85,146.88,146.95000000000002,147.03,147.09,147.16,147.23,147.3,147.44,26.990000000000002,26.6,26.42,26.22,26.02,25.830000000000002,25.63,25.45,25.060000000000002,N/A,N/A +2012,6,18,23,30,101110,99960,98850,83.62,0,8.64,9.43,9.59,9.67,9.72,9.74,9.76,9.76,9.75,141.64000000000001,141.67000000000002,141.70000000000002,141.73,141.77,141.8,141.84,141.87,141.94,26.900000000000002,26.5,26.310000000000002,26.1,25.91,25.72,25.51,25.330000000000002,24.94,N/A,N/A +2012,6,19,0,30,101100,99950,98840,77.86,0,8.620000000000001,9.41,9.6,9.700000000000001,9.78,9.83,9.86,9.88,9.92,154,153.87,153.84,153.82,153.79,153.77,153.75,153.74,153.71,27.13,26.75,26.57,26.37,26.17,25.98,25.78,25.6,25.21,N/A,N/A +2012,6,19,1,30,101070,99920,98810,83.08,0,9.15,10.07,10.28,10.42,10.51,10.58,10.64,10.68,10.75,150.67000000000002,150.64000000000001,150.61,150.58,150.56,150.53,150.51,150.48,150.44,27.09,26.71,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.18,N/A,N/A +2012,6,19,2,30,101080,99930,98820,81.92,0,8.94,9.72,9.88,9.950000000000001,9.99,10.01,10.01,10.01,9.98,146.09,146.13,146.14000000000001,146.12,146.1,146.07,146.02,145.98,145.85,27.18,26.8,26.61,26.42,26.22,26.03,25.84,25.66,25.28,N/A,N/A +2012,6,19,3,30,101110,99960,98850,84.93,0,9.55,10.46,10.65,10.74,10.790000000000001,10.82,10.83,10.83,10.81,135.98,136.06,136.12,136.17000000000002,136.21,136.24,136.27,136.3,136.36,27.03,26.63,26.44,26.240000000000002,26.05,25.85,25.66,25.47,25.09,N/A,N/A +2012,6,19,4,30,101110,99960,98850,75.44,0,10.88,11.93,12.16,12.27,12.35,12.4,12.43,12.450000000000001,12.46,149,148.9,148.89000000000001,148.89000000000001,148.91,148.93,148.96,148.98,149.06,27.35,26.98,26.79,26.59,26.39,26.2,26.01,25.82,25.43,N/A,N/A +2012,6,19,5,30,101090,99950,98840,80.2,0,9.05,9.93,10.13,10.25,10.33,10.39,10.43,10.46,10.5,155.42000000000002,155.4,155.4,155.4,155.41,155.43,155.44,155.46,155.51,27.27,26.89,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A +2012,6,19,6,30,101140,100000,98890,82.64,0,9.67,10.67,10.92,11.06,11.17,11.25,11.31,11.370000000000001,11.44,155.82,156.04,156.13,156.21,156.29,156.35,156.41,156.47,156.57,27.27,26.89,26.71,26.51,26.310000000000002,26.12,25.92,25.740000000000002,25.35,N/A,N/A +2012,6,19,7,30,101180,100030,98920,83.37,0,9.84,10.88,11.15,11.32,11.44,11.540000000000001,11.620000000000001,11.68,11.790000000000001,163.86,164.06,164.11,164.15,164.18,164.20000000000002,164.22,164.23,164.26,27.39,27.02,26.84,26.64,26.45,26.25,26.060000000000002,25.87,25.490000000000002,N/A,N/A +2012,6,19,8,30,101200,100060,98950,84.05,0,9.23,10.18,10.42,10.57,10.67,10.75,10.81,10.86,10.93,160.1,159.99,159.92000000000002,159.85,159.78,159.71,159.65,159.58,159.44,27.45,27.080000000000002,26.900000000000002,26.7,26.51,26.32,26.12,25.94,25.55,N/A,N/A +2012,6,19,9,30,101200,100060,98950,82.7,0,9.370000000000001,10.290000000000001,10.52,10.64,10.73,10.790000000000001,10.82,10.86,10.89,158.37,158.27,158.35,158.43,158.52,158.59,158.67000000000002,158.76,158.93,27.6,27.25,27.080000000000002,26.88,26.7,26.51,26.310000000000002,26.13,25.76,N/A,N/A +2012,6,19,10,30,101230,100080,98960,85.57000000000001,5.5,9.44,10.09,10.31,10.46,10.58,10.700000000000001,10.82,10.92,11.15,136.31,136.69,137.49,138.35,139.18,140.02,140.95000000000002,141.85,143.95000000000002,26.23,25.87,25.740000000000002,25.59,25.44,25.3,25.150000000000002,25.01,24.72,N/A,N/A +2012,6,19,11,30,101180,100030,98910,86.52,0.4,13.620000000000001,14.84,14.97,14.96,14.94,14.91,14.8,14.69,14.41,161.14000000000001,161.23,161.38,161.59,161.79,161.98,162.07,162.13,162.36,25.43,24.97,24.82,24.71,24.64,24.61,24.63,24.650000000000002,24.67,N/A,N/A +2012,6,19,12,30,101350,100190,99060,86.07000000000001,43.900000000000006,12.89,13.83,13.950000000000001,13.94,13.93,13.9,13.93,13.96,14.120000000000001,142.17000000000002,142.96,143.63,144.46,145.48,146.57,148.1,149.58,152.87,24.25,23.73,23.57,23.46,23.39,23.34,23.35,23.37,23.51,N/A,N/A +2012,6,19,13,30,101310,100150,99030,81.92,0,2.52,2.7800000000000002,2.9,3.02,3.16,3.3000000000000003,3.49,3.68,4.48,157.13,160.38,162.17000000000002,163.93,165.63,167.31,169.02,170.66,174.37,25.93,25.57,25.41,25.23,25.07,24.91,24.75,24.61,24.47,N/A,N/A +2012,6,19,14,30,101380,100230,99120,77.05,0,8.36,9.290000000000001,9.52,9.66,9.77,9.85,9.9,9.94,10,162.03,161.83,161.67000000000002,161.54,161.42000000000002,161.31,161.21,161.1,160.91,27.88,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.02,N/A,N/A +2012,6,19,15,30,101410,100270,99150,77.27,0,8.370000000000001,9.17,9.35,9.450000000000001,9.51,9.55,9.57,9.59,9.6,165.62,165.46,165.43,165.39000000000001,165.37,165.34,165.32,165.3,165.27,27.830000000000002,27.5,27.330000000000002,27.13,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A +2012,6,19,16,30,101440,100290,99180,80.59,0,9.09,9.96,10.16,10.28,10.35,10.39,10.42,10.44,10.450000000000001,160.09,160.26,160.33,160.37,160.39000000000001,160.41,160.42000000000002,160.42000000000002,160.43,27.19,26.810000000000002,26.62,26.42,26.22,26.03,25.830000000000002,25.650000000000002,25.26,N/A,N/A +2012,6,19,17,30,101420,100270,99150,83.25,0,10.55,11.53,11.73,11.83,11.88,11.91,11.91,11.91,11.870000000000001,171.22,171.17000000000002,171.18,171.19,171.21,171.22,171.23,171.24,171.27,26.78,26.35,26.16,25.96,25.77,25.580000000000002,25.38,25.2,24.830000000000002,N/A,N/A +2012,6,19,18,30,101490,100330,99210,88.08,11,8.09,8.790000000000001,8.93,9.01,9.06,9.09,9.11,9.13,9.14,148.03,148.22,148.3,148.39000000000001,148.48,148.56,148.67000000000002,148.76,149.04,25.55,25.080000000000002,24.89,24.68,24.490000000000002,24.3,24.11,23.93,23.56,N/A,N/A +2012,6,19,19,30,101430,100270,99140,87.01,2.9000000000000004,6.92,7.44,7.5600000000000005,7.65,7.7700000000000005,7.9,8.2,8.52,9.63,153.34,153.35,153.51,153.70000000000002,153.95000000000002,154.23,154.68,155.15,156.53,25.3,24.88,24.71,24.54,24.400000000000002,24.28,24.22,24.18,24.57,N/A,N/A +2012,6,19,20,30,101430,100270,99140,93.3,289.7,4.97,5.12,5.18,5.22,5.3500000000000005,5.48,5.7,5.9,6.29,248.23000000000002,246.11,243.35,240.11,235.81,231.48000000000002,227.34,223.61,218,24.560000000000002,24.240000000000002,24.18,24.16,24.22,24.29,24.330000000000002,24.36,24.29,N/A,N/A +2012,6,19,21,30,101470,100310,99180,84.58,0,3.54,3.63,3.64,3.65,3.7,3.7600000000000002,4.0600000000000005,4.43,4.8,231.65,229.67000000000002,228.22,226.20000000000002,221.79,215.66,207.31,198.23000000000002,185.88,25.12,24.73,24.57,24.39,24.26,24.150000000000002,24.13,24.14,24.05,N/A,N/A +2012,6,19,22,30,101410,100250,99130,90.77,0,3.45,3.58,3.5700000000000003,3.54,3.5,3.47,3.45,3.44,4.88,59.14,60.75,61.68,62.81,64.27,65.9,68.16,70.44,115.2,25.18,24.77,24.59,24.400000000000002,24.22,24.05,23.87,23.7,24.16,N/A,N/A +2012,6,19,23,30,101360,100210,99090,90.36,0,5.1000000000000005,5.37,5.42,5.43,5.43,5.42,5.41,5.4,5.37,110.54,111.27,111.86,112.48,113.09,113.68,114.35000000000001,114.99000000000001,116.54,26.240000000000002,25.84,25.66,25.46,25.27,25.080000000000002,24.89,24.71,24.34,N/A,N/A +2012,6,20,0,30,101370,100220,99100,83.74,0,8.21,8.950000000000001,9.13,9.22,9.28,9.32,9.34,9.36,9.370000000000001,134.08,134.3,134.39000000000001,134.48,134.55,134.61,134.69,134.75,134.91,27.37,27,26.82,26.62,26.43,26.240000000000002,26.04,25.85,25.47,N/A,N/A +2012,6,20,1,30,101330,100180,99060,81.9,0,8.81,9.790000000000001,10.03,10.18,10.3,10.38,10.450000000000001,10.5,10.58,135.19,134.84,134.76,134.7,134.64000000000001,134.6,134.57,134.54,134.5,27.490000000000002,27.13,26.95,26.75,26.560000000000002,26.37,26.17,25.98,25.59,N/A,N/A +2012,6,20,2,30,101340,100190,99080,81.5,0,9.46,10.48,10.74,10.89,11,11.09,11.15,11.200000000000001,11.28,135.91,135.93,135.92000000000002,135.89000000000001,135.87,135.84,135.82,135.78,135.72,27.62,27.27,27.09,26.89,26.7,26.5,26.310000000000002,26.12,25.740000000000002,N/A,N/A +2012,6,20,3,30,101330,100180,99070,80.18,0,9.78,10.76,11.01,11.16,11.26,11.34,11.4,11.450000000000001,11.53,144.35,144.04,143.9,143.77,143.65,143.54,143.44,143.34,143.15,27.900000000000002,27.59,27.43,27.240000000000002,27.060000000000002,26.88,26.7,26.52,26.16,N/A,N/A +2012,6,20,4,30,101350,100190,99080,89.69,0,10.97,12.05,12.33,12.49,12.6,12.68,12.74,12.81,12.98,130.42000000000002,131.57,132.02,132.44,132.85,133.25,133.71,134.15,135.36,25.87,25.38,25.18,24.98,24.79,24.61,24.43,24.27,23.96,N/A,N/A +2012,6,20,5,30,101300,100150,99040,84.71000000000001,0,13.15,14.76,15.1,15.31,15.44,15.52,15.56,15.58,15.56,148.57,148.22,148.23,148.28,148.34,148.41,148.51,148.6,148.82,26.900000000000002,26.45,26.25,26.04,25.830000000000002,25.63,25.43,25.240000000000002,24.85,N/A,N/A +2012,6,20,6,30,101330,100180,99070,80.62,0,10.28,11.34,11.59,11.75,11.86,11.94,12,12.05,12.13,152.62,152.34,152.17000000000002,152,151.82,151.67000000000002,151.5,151.34,151.01,27.07,26.68,26.5,26.3,26.11,25.93,25.740000000000002,25.560000000000002,25.19,N/A,N/A +2012,6,20,7,30,101360,100210,99100,78.9,0,9.67,10.83,11.13,11.33,11.47,11.57,11.64,11.69,11.76,139.76,139.65,139.70000000000002,139.79,139.89000000000001,139.99,140.1,140.21,140.45000000000002,28.01,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.16,N/A,N/A +2012,6,20,8,30,101330,100180,99070,76.51,0,9.75,10.81,11.06,11.200000000000001,11.290000000000001,11.36,11.4,11.44,11.48,141.09,140.79,140.70000000000002,140.61,140.54,140.47,140.4,140.34,140.21,27.95,27.63,27.46,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A +2012,6,20,9,30,101350,100200,99090,78.85000000000001,0,8.870000000000001,9.82,10.05,10.200000000000001,10.31,10.39,10.44,10.49,10.55,138.41,138.4,138.45000000000002,138.5,138.55,138.6,138.65,138.70000000000002,138.82,27.84,27.5,27.32,27.12,26.93,26.740000000000002,26.54,26.35,25.96,N/A,N/A +2012,6,20,10,30,101360,100210,99100,79.35000000000001,0,7.68,8.370000000000001,8.51,8.59,8.63,8.66,8.68,8.69,8.69,147.94,147.64000000000001,147.47,147.29,147.11,146.94,146.75,146.58,146.20000000000002,27.650000000000002,27.32,27.14,26.95,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A +2012,6,20,11,30,101360,100210,99100,79.46000000000001,0,6.890000000000001,7.5600000000000005,7.73,7.84,7.930000000000001,7.99,8.05,8.09,8.17,142.72,142.37,142.26,142.17000000000002,142.09,142.03,141.98,141.94,141.88,27.77,27.45,27.28,27.080000000000002,26.89,26.7,26.51,26.32,25.94,N/A,N/A +2012,6,20,12,30,101380,100230,99120,78.89,0,7.24,7.92,8.07,8.16,8.22,8.27,8.3,8.33,8.36,140.92000000000002,141.32,141.53,141.73,141.91,142.08,142.24,142.4,142.70000000000002,27.77,27.44,27.27,27.07,26.88,26.69,26.5,26.310000000000002,25.93,N/A,N/A +2012,6,20,13,30,101410,100260,99140,81.84,5.5,8.15,8.82,8.96,9.01,9.040000000000001,9.040000000000001,9.02,8.99,8.91,147.13,146.31,145.81,145.33,144.89000000000001,144.47,144.04,143.62,142.65,26.28,25.86,25.67,25.48,25.29,25.11,24.92,24.75,24.400000000000002,N/A,N/A +2012,6,20,14,30,101480,100320,99190,93.03,59.300000000000004,5.91,6.34,6.44,6.51,6.5600000000000005,6.6000000000000005,6.65,6.7,6.86,175.67000000000002,174.72,174.26,173.78,173.28,172.78,172.12,171.47,169.06,24.88,24.43,24.25,24.05,23.87,23.7,23.53,23.37,23.07,N/A,N/A +2012,6,20,15,30,101450,100290,99170,81.78,0,7.59,8.16,8.28,8.33,8.36,8.370000000000001,8.370000000000001,8.36,8.33,165.46,165.43,165.42000000000002,165.42000000000002,165.43,165.45000000000002,165.49,165.52,165.64000000000001,26.28,25.86,25.67,25.46,25.27,25.080000000000002,24.88,24.7,24.32,N/A,N/A +2012,6,20,16,30,101540,100390,99270,81.89,0,6.17,6.67,6.78,6.8500000000000005,6.9,6.94,6.97,6.99,7.04,142.75,142.71,142.65,142.58,142.5,142.41,142.33,142.23,142,26.95,26.57,26.39,26.19,26,25.810000000000002,25.62,25.43,25.05,N/A,N/A +2012,6,20,17,30,101460,100300,99190,81.33,0,6.59,7.1000000000000005,7.21,7.26,7.29,7.3100000000000005,7.32,7.33,7.32,153.56,153.25,153.09,152.95000000000002,152.8,152.65,152.49,152.35,152,26.88,26.490000000000002,26.310000000000002,26.11,25.91,25.73,25.53,25.34,24.97,N/A,N/A +2012,6,20,18,30,101500,100340,99220,80.37,0,6.04,6.51,6.62,6.69,6.74,6.78,6.8100000000000005,6.84,6.890000000000001,149.08,149.19,149.17000000000002,149.14000000000001,149.1,149.06,149.01,148.96,148.84,26.84,26.45,26.27,26.07,25.88,25.69,25.5,25.32,24.94,N/A,N/A +2012,6,20,19,30,101470,100320,99200,79.7,0,4.98,5.33,5.4,5.44,5.47,5.49,5.51,5.53,5.5600000000000005,132.76,132.69,132.65,132.6,132.55,132.49,132.42000000000002,132.34,132.14000000000001,27.080000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.75,25.57,25.19,N/A,N/A +2012,6,20,20,30,101430,100280,99170,85.01,0,6.01,6.46,6.57,6.63,6.67,6.7,6.73,6.75,6.79,126.34,125.82000000000001,125.51,125.2,124.92,124.64,124.35000000000001,124.07000000000001,123.47,27.080000000000002,26.7,26.52,26.32,26.13,25.95,25.75,25.57,25.2,N/A,N/A +2012,6,20,21,30,101410,100260,99140,83.11,0,6.29,6.73,6.8,6.83,6.8500000000000005,6.86,6.86,6.86,6.86,126.48,126.18,125.98,125.77,125.54,125.31,125.03,124.76,124.06,26.75,26.36,26.18,25.98,25.79,25.61,25.42,25.240000000000002,24.88,N/A,N/A +2012,6,20,22,30,101410,100260,99150,81.31,0,6.83,7.47,7.65,7.7700000000000005,7.87,7.95,8.02,8.08,8.2,98.79,99.48,99.82000000000001,100.14,100.42,100.68,100.92,101.15,101.57000000000001,27.41,27.060000000000002,26.89,26.69,26.51,26.32,26.13,25.94,25.57,N/A,N/A +2012,6,20,23,30,101360,100210,99100,76.46000000000001,0,7.86,8.57,8.73,8.81,8.870000000000001,8.9,8.92,8.93,8.94,104.88,104.91,104.92,104.94,104.97,104.99000000000001,105.02,105.05,105.13,27.69,27.36,27.18,26.98,26.79,26.6,26.41,26.22,25.84,N/A,N/A +2012,6,21,0,30,101350,100200,99080,78.05,0,7.22,7.9,8.05,8.14,8.21,8.26,8.290000000000001,8.33,8.370000000000001,111.23,111.82000000000001,112.04,112.21000000000001,112.36,112.48,112.59,112.68,112.85000000000001,27.740000000000002,27.41,27.23,27.03,26.84,26.650000000000002,26.45,26.27,25.88,N/A,N/A +2012,6,21,1,30,101350,100200,99080,80.9,0,7.18,7.8100000000000005,7.94,8.01,8.06,8.08,8.1,8.11,8.120000000000001,121.60000000000001,121.27,121.08,120.92,120.79,120.66,120.54,120.42,120.19,27.560000000000002,27.21,27.04,26.84,26.650000000000002,26.46,26.26,26.080000000000002,25.69,N/A,N/A +2012,6,21,2,30,101350,100200,99090,87.2,0,8.78,9.48,9.6,9.64,9.65,9.63,9.61,9.58,9.49,117.16,116.99000000000001,116.95,116.9,116.85000000000001,116.8,116.75,116.7,116.58,26.86,26.46,26.28,26.09,25.900000000000002,25.72,25.54,25.37,25.02,N/A,N/A +2012,6,21,3,30,101360,100210,99100,81.12,0,7.28,7.930000000000001,8.1,8.19,8.27,8.33,8.370000000000001,8.41,8.47,119.91,119.93,119.97,120.01,120.06,120.10000000000001,120.14,120.18,120.27,27.07,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.17,N/A,N/A +2012,6,21,4,30,101340,100190,99080,81.38,0,6.71,7.25,7.3500000000000005,7.4,7.44,7.46,7.47,7.47,7.48,127.15,126.51,126.12,125.73,125.36,125.02,124.67,124.33,123.62,27.29,26.93,26.76,26.560000000000002,26.37,26.18,25.990000000000002,25.810000000000002,25.44,N/A,N/A +2012,6,21,5,30,101350,100200,99080,81.77,0,5.98,6.49,6.62,6.7,6.76,6.8100000000000005,6.8500000000000005,6.88,6.94,126.74000000000001,126.56,126.55,126.53,126.51,126.49000000000001,126.47,126.46000000000001,126.41,27.25,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A +2012,6,21,6,30,101360,100210,99100,81.12,0,6.140000000000001,6.62,6.72,6.7700000000000005,6.8,6.83,6.84,6.8500000000000005,6.87,115.05,115.38,115.60000000000001,115.84,116.06,116.29,116.52,116.75,117.22,27.44,27.09,26.91,26.71,26.52,26.330000000000002,26.13,25.95,25.560000000000002,N/A,N/A +2012,6,21,7,30,101340,100190,99080,81.42,0,7.4,8.03,8.17,8.24,8.290000000000001,8.31,8.33,8.34,8.33,120.41,120.56,120.65,120.73,120.81,120.88,120.94,121,121.13,27.45,27.09,26.92,26.72,26.52,26.34,26.14,25.95,25.57,N/A,N/A +2012,6,21,8,30,101380,100230,99120,79.38,0,5.73,6.22,6.34,6.42,6.49,6.54,6.59,6.63,6.7,122.12,122.46000000000001,122.67,122.85000000000001,123,123.13000000000001,123.24000000000001,123.34,123.52,27.62,27.28,27.1,26.91,26.72,26.53,26.34,26.16,25.77,N/A,N/A +2012,6,21,9,30,101390,100240,99130,80.74,4.4,5.3500000000000005,5.76,5.86,5.93,5.98,6.0200000000000005,6.0600000000000005,6.09,6.13,120.85000000000001,120.03,119.64,119.29,118.99000000000001,118.73,118.48,118.25,117.83,27.48,27.14,26.97,26.77,26.580000000000002,26.400000000000002,26.2,26.02,25.64,N/A,N/A +2012,6,21,10,30,101390,100240,99130,83.12,6.6000000000000005,4.89,5.24,5.32,5.37,5.41,5.44,5.47,5.49,5.53,110.12,109.8,109.52,109.21000000000001,108.94,108.69,108.44,108.21000000000001,107.77,27.21,26.86,26.68,26.490000000000002,26.3,26.11,25.91,25.73,25.35,N/A,N/A +2012,6,21,11,30,101420,100270,99150,76.85000000000001,0,4.48,4.92,5.04,5.13,5.2,5.26,5.3,5.34,5.39,91.94,91.45,91.38,91.35000000000001,91.36,91.39,91.45,91.52,91.71000000000001,27.57,27.240000000000002,27.07,26.88,26.69,26.5,26.310000000000002,26.13,25.740000000000002,N/A,N/A +2012,6,21,12,30,101440,100290,99170,77.24,0,5.58,6.03,6.13,6.19,6.22,6.25,6.26,6.2700000000000005,6.29,84.22,84.60000000000001,84.78,84.93,85.06,85.18,85.28,85.38,85.59,27.61,27.26,27.09,26.89,26.7,26.51,26.310000000000002,26.13,25.740000000000002,N/A,N/A +2012,6,21,13,30,101440,100290,99170,70.31,0,6.13,6.6000000000000005,6.68,6.71,6.73,6.73,6.73,6.73,6.71,80.22,80.13,80.01,79.87,79.74,79.62,79.49,79.37,79.14,27.92,27.6,27.43,27.23,27.04,26.85,26.66,26.48,26.09,N/A,N/A +2012,6,21,14,30,101510,100360,99240,70.26,0,6.47,7.0200000000000005,7.13,7.2,7.24,7.2700000000000005,7.29,7.3,7.32,82.21000000000001,81.86,81.76,81.66,81.59,81.52,81.45,81.39,81.28,27.97,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.52,26.14,N/A,N/A +2012,6,21,15,30,101550,100400,99290,65.27,0,6.1000000000000005,6.58,6.66,6.69,6.7,6.7,6.7,6.7,6.68,74.64,74.63,74.7,74.78,74.85000000000001,74.93,75.02,75.11,75.3,28.14,27.830000000000002,27.67,27.47,27.28,27.1,26.900000000000002,26.71,26.330000000000002,N/A,N/A +2012,6,21,16,30,101530,100380,99270,72,0,7.17,7.74,7.84,7.890000000000001,7.9,7.91,7.9,7.890000000000001,7.86,74.67,74.84,74.91,74.97,75.04,75.11,75.19,75.26,75.45,27.68,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.830000000000002,N/A,N/A +2012,6,21,17,30,101510,100360,99240,71.42,0,6.44,6.91,6.99,7.0200000000000005,7.04,7.04,7.03,7.03,6.99,69.04,69.18,69.3,69.41,69.51,69.61,69.7,69.78,69.96000000000001,27.53,27.18,27,26.810000000000002,26.61,26.42,26.23,26.04,25.66,N/A,N/A +2012,6,21,18,30,101490,100340,99220,68.18,0,5.29,5.62,5.66,5.66,5.64,5.62,5.58,5.55,5.46,73.44,73.22,73.16,73.07000000000001,72.97,72.85000000000001,72.7,72.55,72.04,27.66,27.34,27.17,26.98,26.8,26.62,26.43,26.26,25.92,N/A,N/A +2012,6,21,19,30,101440,100290,99170,60.94,0,6.18,6.67,6.76,6.8,6.83,6.8500000000000005,6.86,6.88,6.91,78.52,78.32000000000001,78.2,78.07000000000001,77.92,77.76,77.57000000000001,77.38,76.8,28.07,27.77,27.61,27.42,27.240000000000002,27.060000000000002,26.88,26.71,26.37,N/A,N/A +2012,6,21,20,30,101390,100240,99130,55.57,0,4.95,5.37,5.45,5.51,5.59,5.67,5.8100000000000005,5.97,6.88,90.25,89.85000000000001,89.57000000000001,89.28,88.94,88.58,88.05,87.49,85.47,28.32,28.05,27.89,27.71,27.54,27.37,27.21,27.07,26.900000000000002,N/A,N/A +2012,6,21,21,30,101340,100190,99080,61.120000000000005,0,5.18,5.57,5.64,5.67,5.7,5.73,5.78,5.82,6.1000000000000005,107.76,107.33,107.04,106.72,106.36,105.97,105.41,104.85000000000001,102.51,28.2,27.91,27.75,27.57,27.39,27.22,27.05,26.89,26.64,N/A,N/A +2012,6,21,22,30,101320,100170,99060,63.22,0,4.44,4.76,4.8100000000000005,4.84,4.86,4.87,4.9,4.92,5.03,122.05,121.71000000000001,121.47,121.2,120.91,120.61,120.19,119.77,118.21000000000001,28.19,27.900000000000002,27.740000000000002,27.560000000000002,27.38,27.21,27.03,26.87,26.580000000000002,N/A,N/A +2012,6,21,23,30,101290,100140,99030,62.96,0,4.49,4.83,4.88,4.91,4.94,4.96,5,5.04,5.22,126.98,126.58,126.3,125.98,125.63000000000001,125.24000000000001,124.7,124.16,121.92,28.3,28.02,27.86,27.67,27.490000000000002,27.32,27.13,26.96,26.66,N/A,N/A +2012,6,22,0,30,101260,100110,99000,67,0,3.31,3.54,3.5700000000000003,3.59,3.62,3.65,3.71,3.79,4.51,137.56,136.81,136.26,135.58,134.78,133.84,132.24,130.52,120.47,28.16,27.87,27.72,27.53,27.36,27.19,27.04,26.900000000000002,26.87,N/A,N/A +2012,6,22,1,30,101230,100080,98970,67.86,0,2.35,2.5,2.5300000000000002,2.5500000000000003,2.58,2.6,2.66,2.72,3.18,138.46,137.39000000000001,136.66,135.81,134.81,133.67000000000002,131.99,130.21,122.13,28.14,27.86,27.69,27.51,27.330000000000002,27.16,26.990000000000002,26.84,26.650000000000002,N/A,N/A +2012,6,22,2,30,101260,100110,99000,67.94,0,0.62,0.67,0.7000000000000001,0.72,0.76,0.8,0.9,1.02,2.93,138.6,136.27,134.47,132.46,130.21,127.73,124.08,119.89,102.12,28.18,27.88,27.72,27.53,27.35,27.17,27,26.84,26.900000000000002,N/A,N/A +2012,6,22,3,30,101240,100100,98980,67.93,0,0.75,0.76,0.74,0.72,0.7000000000000001,0.68,0.67,0.67,0.91,343.21,347,349.58,352.93,357.36,2.57,11.34,20.67,53.29,28.18,27.89,27.73,27.54,27.36,27.18,27,26.830000000000002,26.53,N/A,N/A +2012,6,22,4,30,101240,100090,98980,67.5,0,1.07,1.1,1.09,1.08,1.07,1.05,1.04,1.04,1.08,347.42,350.93,352.85,355.04,357.40000000000003,359.86,3.15,6.47,19.25,28.22,27.93,27.77,27.57,27.39,27.21,27.02,26.85,26.51,N/A,N/A +2012,6,22,5,30,101220,100080,98970,68.65,0,1.85,1.93,1.93,1.93,1.92,1.9100000000000001,1.9100000000000001,1.9000000000000001,1.94,356.29,357.82,358.88,0.14,1.53,3.06,5.19,7.390000000000001,15.69,28.16,27.87,27.71,27.52,27.34,27.16,26.97,26.8,26.48,N/A,N/A +2012,6,22,6,30,101250,100110,99000,68.05,0,2.35,2.49,2.5,2.5,2.5,2.5,2.5,2.5,2.52,1.99,2.68,3.14,3.7,4.3500000000000005,5.08,6.13,7.22,11.65,28.23,27.95,27.79,27.6,27.42,27.240000000000002,27.060000000000002,26.89,26.560000000000002,N/A,N/A +2012,6,22,7,30,101250,100100,98990,69.25,0,3.11,3.3000000000000003,3.31,3.3000000000000003,3.29,3.2800000000000002,3.27,3.2600000000000002,3.33,2.68,3.14,3.44,3.8000000000000003,4.2,4.63,5.3100000000000005,6.03,10.63,28.17,27.88,27.72,27.53,27.35,27.17,26.990000000000002,26.82,26.560000000000002,N/A,N/A +2012,6,22,8,30,101220,100070,98960,69.43,0,4.5,4.8100000000000005,4.8500000000000005,4.86,4.86,4.87,4.89,4.91,5.17,2.64,3.16,3.46,3.8000000000000003,4.22,4.7,5.47,6.2700000000000005,10.36,28.17,27.900000000000002,27.740000000000002,27.55,27.38,27.21,27.05,26.900000000000002,26.73,N/A,N/A +2012,6,22,9,30,101220,100070,98960,68.72,0,5.79,6.24,6.3,6.33,6.34,6.3500000000000005,6.38,6.42,6.7700000000000005,357.04,357.1,357.17,357.26,357.42,357.64,358.07,358.55,2.45,28.150000000000002,27.86,27.71,27.53,27.35,27.18,27.02,26.87,26.72,N/A,N/A +2012,6,22,10,30,101210,100070,98960,74.18,0,5.98,6.4,6.45,6.45,6.45,6.43,6.41,6.38,6.37,357.61,357.87,358.06,358.26,358.5,358.76,359.15000000000003,359.55,1.46,27.830000000000002,27.53,27.36,27.18,27,26.830000000000002,26.66,26.5,26.240000000000002,N/A,N/A +2012,6,22,11,30,101220,100070,98960,70.35000000000001,0,6.32,6.75,6.8,6.8100000000000005,6.8100000000000005,6.8,6.8100000000000005,6.82,7.07,4.9,4.96,5.0200000000000005,5.13,5.3100000000000005,5.55,6.13,6.76,11.39,27.72,27.41,27.25,27.07,26.900000000000002,26.740000000000002,26.580000000000002,26.44,26.34,N/A,N/A +2012,6,22,12,30,101230,100080,98960,71.54,0,7.65,8.2,8.28,8.28,8.27,8.25,8.23,8.22,8.32,6.84,7.0200000000000005,7.11,7.23,7.42,7.62,7.97,8.34,10.33,27.32,26.98,26.82,26.63,26.46,26.3,26.14,25.990000000000002,25.8,N/A,N/A +2012,6,22,13,30,101220,100070,98960,73.68,0,6.91,7.4,7.48,7.51,7.5200000000000005,7.53,7.53,7.54,7.68,17.53,17.79,17.96,18.150000000000002,18.37,18.6,18.92,19.240000000000002,20.73,27.07,26.71,26.54,26.35,26.17,26,25.830000000000002,25.66,25.41,N/A,N/A +2012,6,22,14,30,101240,100090,98970,74.25,0,6.4,6.8,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.84,6.8500000000000005,6.86,7.26,21.16,21.63,21.97,22.37,22.88,23.45,24.5,25.61,32.96,26.94,26.580000000000002,26.41,26.23,26.05,25.89,25.73,25.6,25.6,N/A,N/A +2012,6,22,15,30,101250,100100,98990,72.73,0,5.54,5.9,5.96,5.99,6.01,6.04,6.1000000000000005,6.18,6.93,30.64,31.080000000000002,31.37,31.73,32.19,32.71,33.68,34.730000000000004,41.18,27.34,27,26.84,26.66,26.490000000000002,26.32,26.17,26.03,26.060000000000002,N/A,N/A +2012,6,22,16,30,101260,100110,99000,71.38,0,4.48,4.75,4.8,4.82,4.84,4.86,4.9,4.95,5.39,32.83,33.3,33.59,33.93,34.31,34.75,35.410000000000004,36.1,39.37,27.73,27.41,27.25,27.060000000000002,26.88,26.71,26.53,26.37,26.2,N/A,N/A +2012,6,22,17,30,101240,100090,98980,68.82000000000001,0,3.5,3.75,3.81,3.86,3.93,4.0200000000000005,4.2,4.42,5.43,66.52,66.37,66.15,65.88,65.55,65.16,64.4,63.52,59.370000000000005,28.23,27.93,27.78,27.6,27.44,27.28,27.17,27.07,27.19,N/A,N/A +2012,6,22,18,30,101210,100060,98960,60.69,0,3.91,4.25,4.32,4.37,4.42,4.46,4.5,4.54,4.65,91.49,90.85000000000001,90.44,90.01,89.59,89.16,88.66,88.18,86.86,29.03,28.76,28.61,28.43,28.26,28.09,27.92,27.75,27.44,N/A,N/A +2012,6,22,19,30,101180,100030,98920,59.26,0,3.45,3.69,3.72,3.73,3.74,3.74,3.74,3.75,3.7600000000000002,114.52,114.10000000000001,113.78,113.45,113.12,112.79,112.4,112.02,110.99000000000001,29.05,28.76,28.6,28.41,28.22,28.04,27.85,27.67,27.310000000000002,N/A,N/A +2012,6,22,20,30,101120,99980,98870,55.800000000000004,0,2.43,2.6,2.63,2.65,2.66,2.67,2.67,2.68,2.69,126.52,125.51,124.84,124.18,123.55,122.94,122.28,121.63,120.15,29.35,29.080000000000002,28.92,28.73,28.55,28.37,28.18,28,27.63,N/A,N/A +2012,6,22,21,30,101070,99920,98820,56.26,0,1.2,1.25,1.23,1.22,1.21,1.19,1.18,1.17,1.1500000000000001,160.98,159.43,158.51,157.54,156.54,155.51,154.26,153.04,149.89000000000001,29.26,28.97,28.8,28.61,28.42,28.240000000000002,28.04,27.86,27.490000000000002,N/A,N/A +2012,6,22,22,30,101040,99900,98790,57.68,0,2.16,2.2600000000000002,2.25,2.23,2.22,2.2,2.18,2.17,2.13,166.8,166.06,165.54,164.95000000000002,164.31,163.64000000000001,162.76,161.88,159.24,29.13,28.830000000000002,28.66,28.47,28.29,28.1,27.91,27.73,27.37,N/A,N/A +2012,6,22,23,30,101020,99870,98770,58.26,0,1.6,1.6400000000000001,1.61,1.58,1.55,1.51,1.47,1.43,1.32,210.08,209.51,208.9,208.19,207.33,206.4,204.98000000000002,203.55,197.91,29.01,28.740000000000002,28.580000000000002,28.39,28.21,28.03,27.84,27.66,27.310000000000002,N/A,N/A +2012,6,23,0,30,101000,99860,98750,59.28,0,1.17,1.23,1.23,1.23,1.23,1.22,1.22,1.22,1.22,168.3,167.12,166.39000000000001,165.66,164.9,164.12,163.16,162.21,159.16,28.87,28.59,28.43,28.240000000000002,28.05,27.87,27.68,27.5,27.13,N/A,N/A +2012,6,23,1,30,100970,99830,98720,61.96,0,1.44,1.5,1.5,1.49,1.48,1.47,1.45,1.44,1.42,186.85,186.77,186.64000000000001,186.42000000000002,186.13,185.78,185.09,184.36,179.24,28.61,28.34,28.18,27.990000000000002,27.810000000000002,27.63,27.44,27.26,26.91,N/A,N/A +2012,6,23,2,30,100960,99820,98710,63.27,0,1.04,1.03,0.99,0.91,0.74,0.56,0.8200000000000001,1.45,1.87,241.15,240.44,239.28,237.15,222.93,205.84,175.04,117.68,105.31,28.46,28.21,28.060000000000002,27.900000000000002,27.79,27.7,27.72,27.79,27.55,N/A,N/A +2012,6,23,3,30,100970,99820,98720,62.910000000000004,0,1.95,1.96,1.8900000000000001,1.79,1.61,1.4000000000000001,1.46,1.6,1.94,311.52,313.90000000000003,315.88,318.85,328.08,340.13,7.67,41.32,51.21,28.48,28.23,28.09,27.93,27.82,27.73,27.73,27.76,27.68,N/A,N/A +2012,6,23,4,30,100970,99830,98720,63.4,0,1.34,1.36,1.34,1.32,1.37,1.49,1.75,2.09,2.47,338.62,342.06,345.05,349.53000000000003,2.25,21.2,35.78,49.64,56.86,28.5,28.25,28.11,27.95,27.88,27.86,27.830000000000002,27.8,27.69,N/A,N/A +2012,6,23,5,30,100960,99820,98710,63.92,0,1.31,1.4000000000000001,1.43,1.46,1.5,1.56,1.77,2.05,2.7800000000000002,46.72,48.27,49.13,50.29,52.01,54.17,59.160000000000004,65.45,75.52,28.490000000000002,28.22,28.07,27.900000000000002,27.73,27.580000000000002,27.47,27.38,27.37,N/A,N/A +2012,6,23,6,30,100990,99850,98740,64.45,0,1.93,2.04,2.05,2.06,2.08,2.1,2.18,2.2800000000000002,2.88,39.730000000000004,40.09,40.61,41.28,42.31,43.6,46.94,50.89,64.62,28.55,28.26,28.11,27.92,27.75,27.6,27.490000000000002,27.400000000000002,27.52,N/A,N/A +2012,6,23,7,30,100990,99850,98740,65.36,0,2.27,2.4,2.4,2.4,2.4,2.4,2.57,2.79,3.25,23.990000000000002,24.94,25.53,26.3,27.400000000000002,28.72,34.9,42.77,49.86,28.61,28.330000000000002,28.17,27.990000000000002,27.830000000000002,27.67,27.650000000000002,27.67,27.82,N/A,N/A +2012,6,23,8,30,101000,99860,98750,65.85,0,2.4,2.5300000000000002,2.54,2.5300000000000002,2.5300000000000002,2.52,2.52,2.52,2.72,11.85,12.540000000000001,12.98,13.52,14.18,14.94,16.21,17.56,27.86,28.68,28.400000000000002,28.240000000000002,28.05,27.88,27.71,27.54,27.39,27.3,N/A,N/A +2012,6,23,9,30,101010,99870,98760,67.57000000000001,0,3.25,3.45,3.47,3.47,3.46,3.46,3.45,3.44,3.42,10.33,10.57,10.73,10.9,11.09,11.3,11.59,11.88,12.99,28.63,28.34,28.18,27.990000000000002,27.810000000000002,27.63,27.45,27.27,26.95,N/A,N/A +2012,6,23,10,30,101020,99880,98770,65.72,0,4.76,5.04,5.05,5.03,5,4.97,4.92,4.87,4.75,358.51,358.42,358.37,358.32,358.29,358.27,358.3,358.35,359.42,28.34,28.04,27.88,27.7,27.52,27.35,27.18,27.02,26.79,N/A,N/A +2012,6,23,11,30,101020,99870,98770,69.34,0,5.15,5.4,5.4,5.36,5.33,5.29,5.3,5.32,5.38,4.71,5.0600000000000005,5.3100000000000005,5.61,6.0600000000000005,6.59,8.23,10.07,18.79,27.63,27.3,27.14,26.97,26.82,26.68,26.67,26.69,27.36,N/A,N/A +2012,6,23,12,30,101060,99910,98800,72.10000000000001,0,5.0600000000000005,5.34,5.37,5.37,5.3500000000000005,5.33,5.3100000000000005,5.29,5.29,23.79,24.2,24.46,24.76,25.1,25.46,25.96,26.46,28.86,27.48,27.13,26.96,26.78,26.59,26.42,26.240000000000002,26.07,25.810000000000002,N/A,N/A +2012,6,23,13,30,101080,99940,98830,75.61,0,5.47,5.75,5.76,5.73,5.7,5.66,5.6000000000000005,5.55,5.4,19.42,20.150000000000002,20.53,20.96,21.46,22.01,22.86,23.72,28.900000000000002,27.28,26.92,26.740000000000002,26.560000000000002,26.38,26.2,26.02,25.86,25.66,N/A,N/A +2012,6,23,14,30,101080,99930,98820,78.53,0,5.39,5.7,5.73,5.72,5.71,5.69,5.68,5.67,5.86,32.12,32.84,33.26,33.72,34.26,34.84,35.75,36.68,44.2,27.47,27.12,26.95,26.76,26.580000000000002,26.41,26.240000000000002,26.09,26.14,N/A,N/A +2012,6,23,15,30,101110,99960,98850,83,0,5.33,5.69,5.76,5.79,5.8100000000000005,5.83,5.8500000000000005,5.87,5.96,47.7,48.35,48.7,49.09,49.480000000000004,49.88,50.410000000000004,50.93,52.660000000000004,27.8,27.45,27.27,27.080000000000002,26.89,26.71,26.52,26.34,25.98,N/A,N/A +2012,6,23,16,30,101130,99990,98890,83.21000000000001,0,5.5200000000000005,5.97,6.05,6.11,6.140000000000001,6.17,6.19,6.21,6.24,56.33,56.64,56.83,57,57.160000000000004,57.32,57.47,57.61,57.94,28.28,27.93,27.76,27.560000000000002,27.37,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A +2012,6,23,17,30,101130,99990,98880,82.76,0,6.2700000000000005,6.79,6.9,6.96,7,7.03,7.0600000000000005,7.08,7.11,69.73,69.9,69.89,69.88,69.87,69.85000000000001,69.83,69.81,69.76,28.41,28.080000000000002,27.91,27.71,27.53,27.34,27.150000000000002,26.97,26.61,N/A,N/A +2012,6,23,18,30,101140,100000,98900,79.10000000000001,0,5.3100000000000005,5.7700000000000005,5.87,5.94,6,6.05,6.1000000000000005,6.15,6.2700000000000005,98.63,98.23,98.01,97.77,97.52,97.27,96.97,96.68,95.92,28.59,28.27,28.1,27.91,27.73,27.55,27.36,27.19,26.84,N/A,N/A +2012,6,23,19,30,101100,99960,98850,79.49,0,5.69,6.13,6.22,6.26,6.29,6.3100000000000005,6.32,6.33,6.36,105.96000000000001,105.62,105.42,105.19,104.97,104.74000000000001,104.46000000000001,104.18,103.41,28.580000000000002,28.25,28.080000000000002,27.89,27.71,27.53,27.34,27.16,26.810000000000002,N/A,N/A +2012,6,23,20,30,101080,99940,98840,77.95,0,4.88,5.25,5.32,5.3500000000000005,5.37,5.39,5.4,5.41,5.44,114.04,113.7,113.51,113.3,113.09,112.88,112.63,112.38,111.74000000000001,28.71,28.39,28.23,28.04,27.85,27.67,27.48,27.3,26.94,N/A,N/A +2012,6,23,21,30,101050,99910,98800,79,0,4.65,5,5.0600000000000005,5.09,5.11,5.12,5.13,5.14,5.15,125.32000000000001,124.96000000000001,124.76,124.56,124.34,124.12,123.87,123.63000000000001,122.97,28.68,28.36,28.19,27.990000000000002,27.810000000000002,27.62,27.43,27.25,26.88,N/A,N/A +2012,6,23,22,30,101060,99910,98810,80.24,0,6.22,6.76,6.86,6.91,6.94,6.96,6.96,6.97,6.97,121.63,121.39,121.25,121.11,120.98,120.85000000000001,120.71000000000001,120.57000000000001,120.26,28.66,28.35,28.18,27.990000000000002,27.8,27.62,27.43,27.240000000000002,26.87,N/A,N/A +2012,6,23,23,30,101080,99940,98840,79.69,0,4.45,4.8,4.87,4.9,4.92,4.93,4.94,4.95,4.96,122.37,122.25,122.19,122.09,121.98,121.85000000000001,121.69,121.52,121.05,28.6,28.3,28.14,27.95,27.76,27.580000000000002,27.39,27.21,26.84,N/A,N/A +2012,6,24,0,30,101070,99930,98830,80.99,0,4.8100000000000005,5.18,5.25,5.28,5.3,5.3100000000000005,5.32,5.32,5.33,122.42,122.56,122.51,122.44,122.36,122.27,122.16,122.05,121.74000000000001,28.51,28.2,28.04,27.85,27.66,27.47,27.28,27.1,26.73,N/A,N/A +2012,6,24,1,30,101090,99940,98840,79.78,0,2.58,2.79,2.83,2.86,2.88,2.91,2.92,2.94,2.98,108.96000000000001,109.24000000000001,109.3,109.34,109.37,109.39,109.41,109.42,109.44,28.48,28.18,28.01,27.82,27.63,27.44,27.25,27.07,26.69,N/A,N/A +2012,6,24,2,30,101100,99950,98850,80.31,0,3.19,3.4,3.43,3.45,3.46,3.48,3.49,3.5100000000000002,3.5500000000000003,114.25,113.74000000000001,113.55,113.35000000000001,113.15,112.95,112.75,112.55,112.10000000000001,28.44,28.13,27.97,27.77,27.59,27.400000000000002,27.21,27.03,26.67,N/A,N/A +2012,6,24,3,30,101090,99950,98840,80.36,0,2.56,2.71,2.74,2.7600000000000002,2.77,2.79,2.81,2.83,2.89,123.08,122.94,122.8,122.64,122.48,122.34,122.17,122.01,121.64,28.41,28.1,27.93,27.740000000000002,27.55,27.37,27.18,27,26.64,N/A,N/A +2012,6,24,4,30,101080,99940,98840,77.94,0,3,3.14,3.15,3.13,3.11,3.09,3.06,3.04,2.98,136.3,136.03,135.77,135.51,135.23,134.93,134.56,134.21,133.15,28.51,28.21,28.04,27.85,27.67,27.48,27.29,27.11,26.75,N/A,N/A +2012,6,24,5,30,101110,99960,98860,79.4,0,1.72,1.8,1.8,1.8,1.79,1.79,1.78,1.77,1.75,137.93,137.58,137.31,137.02,136.72,136.41,136.02,135.63,134.47,28.330000000000002,28.01,27.84,27.650000000000002,27.46,27.28,27.080000000000002,26.900000000000002,26.53,N/A,N/A +2012,6,24,6,30,101120,99980,98870,79.28,0,2.09,2.19,2.19,2.19,2.18,2.18,2.17,2.16,2.15,156.48,156.22,156,155.76,155.5,155.22,154.83,154.43,153.06,28.29,27.98,27.810000000000002,27.62,27.43,27.25,27.060000000000002,26.88,26.51,N/A,N/A +2012,6,24,7,30,101170,100020,98920,79.35000000000001,0,1.26,1.3,1.3,1.29,1.28,1.28,1.26,1.25,1.23,179.36,179.21,179,178.77,178.53,178.29,177.98,177.69,177.06,28.26,27.95,27.78,27.59,27.400000000000002,27.21,27.02,26.84,26.46,N/A,N/A +2012,6,24,8,30,101160,100020,98910,79.77,0,1.25,1.29,1.28,1.27,1.26,1.25,1.23,1.21,1.1400000000000001,247.84,248.28,248.47,248.67000000000002,248.84,249.01000000000002,249.22,249.42000000000002,249.76000000000002,28.19,27.88,27.71,27.52,27.330000000000002,27.150000000000002,26.96,26.78,26.41,N/A,N/A +2012,6,24,9,30,101180,100030,98930,80.61,0,1.95,2.02,2.02,2.0100000000000002,1.99,1.97,1.95,1.92,1.81,288.39,288.88,289.16,289.48,289.84000000000003,290.23,290.82,291.44,294.81,28.17,27.86,27.69,27.5,27.310000000000002,27.13,26.94,26.76,26.42,N/A,N/A +2012,6,24,10,30,101200,100060,98950,81.79,0,2.19,2.27,2.27,2.2600000000000002,2.25,2.23,2.21,2.19,2.1,293.67,294.23,294.5,294.81,295.15000000000003,295.52,296.04,296.57,298.72,28.150000000000002,27.830000000000002,27.66,27.47,27.28,27.1,26.91,26.73,26.37,N/A,N/A +2012,6,24,11,30,101220,100070,98960,83.07000000000001,0,2.48,2.59,2.6,2.6,2.59,2.58,2.57,2.56,2.54,319.16,319.71,319.95,320.22,320.51,320.81,321.2,321.6,323.06,28.11,27.79,27.62,27.43,27.25,27.060000000000002,26.87,26.69,26.32,N/A,N/A +2012,6,24,12,30,101240,100100,98990,86.52,0,3.14,3.3200000000000003,3.35,3.36,3.37,3.37,3.37,3.37,3.37,331.29,331.84000000000003,332.15000000000003,332.48,332.81,333.15000000000003,333.58,334,335.26,28,27.67,27.5,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.19,N/A,N/A +2012,6,24,13,30,101280,100140,99030,87.97,0,3.81,4.0200000000000005,4.05,4.05,4.05,4.04,4.04,4.03,4.04,333.37,333.75,334.04,334.35,334.68,335.02,335.43,335.84000000000003,337.16,28,27.67,27.5,27.3,27.12,26.93,26.740000000000002,26.560000000000002,26.21,N/A,N/A +2012,6,24,14,30,101290,100150,99040,83.76,0,4.4,4.75,4.82,4.87,4.9,4.92,4.94,4.96,5.01,344.55,344.67,344.72,344.77,344.82,344.88,344.95,345.03000000000003,345.23,28.5,28.19,28.02,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.72,N/A,N/A +2012,6,24,15,30,101280,100140,99030,80.57000000000001,0,4.5,4.87,4.94,4.98,5.0200000000000005,5.04,5.08,5.11,5.22,336.85,337.15000000000003,337.33,337.52,337.71,337.89,338.1,338.32,338.97,28.900000000000002,28.61,28.44,28.25,28.07,27.89,27.7,27.52,27.16,N/A,N/A +2012,6,24,16,30,101270,100130,99030,77.49,0,4.8100000000000005,5.23,5.3100000000000005,5.3500000000000005,5.38,5.41,5.44,5.47,5.58,331.79,332.68,333.26,333.91,334.55,335.21,336,336.79,339.13,29.55,29.310000000000002,29.16,28.98,28.810000000000002,28.64,28.46,28.3,27.97,N/A,N/A +2012,6,24,17,30,101230,100100,99000,77.33,0,3.64,3.9,4.14,4.72,5.09,5.26,5.43,5.59,5.86,321.82,323.27,325.56,330.33,333.66,335.71,337.85,339.98,343.91,29.93,29.73,29.68,29.72,29.69,29.61,29.52,29.42,29.21,N/A,N/A +2012,6,24,18,30,101200,100070,98970,77.15,0,2.48,3.13,3.45,3.72,3.92,4.05,4.11,4.13,4.12,300.85,310.16,315.27,318.83,322.15000000000003,325.38,328.57,331.59000000000003,337.43,30.43,30.59,30.66,30.66,30.62,30.55,30.44,30.32,30.060000000000002,N/A,N/A +2012,6,24,19,30,101160,100030,98930,73.66,0,1.9100000000000001,2.4,2.63,2.84,2.96,3.02,3.0100000000000002,2.98,2.83,292.7,301.64,306.82,311.58,315.32,318.28000000000003,320.81,322.98,326.67,31.01,31.240000000000002,31.32,31.29,31.2,31.060000000000002,30.91,30.75,30.42,N/A,N/A +2012,6,24,20,30,101110,99980,98880,70,0,1.94,1.69,1.48,1.24,1.08,0.97,0.89,0.84,0.79,191.48000000000002,195.24,198.33,202.54,206.34,210.03,215.12,220.45000000000002,234.77,31.46,31.71,31.78,31.71,31.6,31.48,31.330000000000002,31.19,30.88,N/A,N/A +2012,6,24,21,30,101090,99960,98870,69.43,0,2.79,2.7,2.43,2,1.74,1.57,1.41,1.28,1.05,176.20000000000002,174.78,171.99,166.5,164.55,164.75,167.75,171.58,186.65,31.470000000000002,31.34,31.36,31.53,31.55,31.45,31.32,31.19,30.900000000000002,N/A,N/A +2012,6,24,22,30,101030,99910,98810,69.84,0,3.5100000000000002,3.43,3.14,2.63,2.31,2.09,1.86,1.6600000000000001,1.2,174.46,171.94,168.75,163.13,162.3,164.73,167.12,169.22,174,31.48,31.45,31.54,31.830000000000002,31.92,31.84,31.740000000000002,31.64,31.43,N/A,N/A +2012,6,24,23,30,100990,99860,98770,75.55,0,3.74,3.67,3.39,2.9,2.48,2.09,1.76,1.49,0.99,201.5,198.67000000000002,195.94,191.46,187.82,184.70000000000002,183.61,183.45000000000002,192,30.96,31.07,31.2,31.46,31.67,31.87,31.91,31.86,31.66,N/A,N/A +2012,6,25,0,30,100980,99850,98760,77.59,0,3.66,4.2,4.01,3.27,2.7600000000000002,2.37,2.0100000000000002,1.71,1.22,206.94,204.68,201.67000000000002,196.71,194.5,193.99,196.53,199.9,216.28,30.57,30.85,31.060000000000002,31.400000000000002,31.63,31.79,31.86,31.87,31.740000000000002,N/A,N/A +2012,6,25,1,30,100970,99840,98750,87.06,0,5.18,5.93,6.05,5.87,5.55,5.13,4.68,4.26,3.49,242.57,242.27,241.13,238.44,235.91,233.46,232.05,231.26,232.43,29.54,29.5,29.580000000000002,29.830000000000002,30.05,30.26,30.55,30.87,31.05,N/A,N/A +2012,6,25,2,30,100990,99860,98760,91.16,0,5.26,6.11,6.2700000000000005,6.12,5.84,5.46,5.08,4.73,4.14,258.9,258.78000000000003,258.26,257.07,257.08,258.04,260.16,262.62,270.76,28.96,28.89,29.02,29.400000000000002,29.72,30.02,30.21,30.36,30.59,N/A,N/A +2012,6,25,3,30,101010,99870,98780,90.53,0,5.44,6.22,6.45,6.55,6.41,6.07,5.78,5.53,5.18,268.6,268.14,268.39,269.6,271.93,275.13,279.24,283.42,293.31,28.810000000000002,28.67,28.810000000000002,29.3,29.64,29.89,30.060000000000002,30.19,30.32,N/A,N/A +2012,6,25,4,30,101000,99870,98770,80.39,0,5.36,6.11,6.44,6.91,7.08,7.01,6.88,6.72,6.41,275.02,275.14,275.49,276.41,280.14,286.2,289.84000000000003,292.16,297.22,29.45,29.42,29.52,29.810000000000002,30.240000000000002,30.79,30.92,30.85,30.63,N/A,N/A +2012,6,25,5,30,100990,99850,98760,78.02,0,5.68,6.45,6.7700000000000005,7.21,7.6000000000000005,7.97,7.87,7.59,7.07,282.73,282.98,283.34000000000003,284.13,286.07,289.02,291.39,293.28000000000003,297.95,29.53,29.48,29.52,29.68,30.080000000000002,30.67,30.84,30.82,30.72,N/A,N/A +2012,6,25,6,30,101010,99880,98780,78.68,0,5.69,6.68,7.11,7.55,7.79,7.86,7.76,7.58,7.19,285.44,286.05,286.6,287.47,289.15000000000003,291.54,294.15000000000003,296.68,301.1,29.42,29.44,29.57,29.900000000000002,30.16,30.39,30.55,30.68,30.650000000000002,N/A,N/A +2012,6,25,7,30,101000,99870,98770,78.29,0,6.22,6.91,7.32,8.09,8.58,8.81,8.73,8.53,8.120000000000001,290.67,290.78000000000003,290.86,291.02,292,293.66,295.74,297.84000000000003,301.23,29.29,29.18,29.23,29.45,29.78,30.21,30.400000000000002,30.490000000000002,30.34,N/A,N/A +2012,6,25,8,30,101020,99890,98790,79.09,0,6.57,7.12,7.37,7.86,8.44,9.11,9.35,9.38,8.84,289.55,289.88,290.22,290.85,291.53000000000003,292.29,293.98,295.93,298.25,29.14,28.93,28.84,28.79,28.92,29.2,29.61,30.060000000000002,30.13,N/A,N/A +2012,6,25,9,30,101010,99870,98780,78.58,0,6.69,7.26,7.5600000000000005,8.18,8.72,9.21,9.290000000000001,9.200000000000001,8.75,295.78000000000003,296.2,296.69,297.65000000000003,298.63,299.68,301.49,303.46,305.18,29.080000000000002,28.86,28.79,28.78,29.02,29.44,29.82,30.16,30.080000000000002,N/A,N/A +2012,6,25,10,30,101020,99880,98790,79.24,0,6.55,7.0600000000000005,7.3500000000000005,7.99,8.55,9.08,9.24,9.23,8.870000000000001,301.98,302.33,302.76,303.67,304.87,306.34000000000003,308.18,310.05,312.24,29.01,28.79,28.72,28.71,28.98,29.46,29.84,30.150000000000002,30.150000000000002,N/A,N/A +2012,6,25,11,30,101040,99900,98810,80.34,0,6.390000000000001,6.890000000000001,7.03,7.23,7.72,8.46,8.91,9.200000000000001,9.31,313.27,313.78000000000003,314.26,315.07,316.65000000000003,318.95,320.88,322.51,325.39,28.85,28.580000000000002,28.45,28.32,28.34,28.48,28.73,29.03,29.310000000000002,N/A,N/A +2012,6,25,12,30,101060,99920,98820,84.24,0,6.55,7.03,7.1000000000000005,7.13,7.28,7.5200000000000005,8.01,8.6,9.3,319.71,320.21,320.59000000000003,321.1,322.04,323.36,324.26,324.95,325.09000000000003,28.71,28.43,28.28,28.12,28.02,27.96,28.150000000000002,28.44,29.32,N/A,N/A +2012,6,25,13,30,101060,99920,98820,76.25,0,6.5200000000000005,7.07,7.15,7.2,7.28,7.37,7.8500000000000005,8.48,9.08,321.74,321.88,322.01,322.18,322.41,322.69,323.56,324.64,327.45,29.16,28.91,28.77,28.61,28.46,28.330000000000002,28.35,28.44,29.23,N/A,N/A +2012,6,25,14,30,101070,99930,98830,70.9,0,6.5600000000000005,7.13,7.22,7.2700000000000005,7.32,7.37,7.54,7.76,8.370000000000001,331.05,331.07,331.06,331.04,331.02,330.98,330.93,330.89,331.08,29.54,29.34,29.21,29.05,28.91,28.76,28.66,28.59,28.7,N/A,N/A +2012,6,25,15,30,101060,99920,98820,67.65,0,6.37,6.91,7.01,7.08,7.21,7.38,7.6000000000000005,7.82,8.14,331.48,331.55,331.63,331.73,331.96,332.27,333.01,333.86,336.76,29.85,29.69,29.580000000000002,29.45,29.35,29.27,29.22,29.2,29.400000000000002,N/A,N/A +2012,6,25,16,30,101050,99920,98820,67.11,0,5.0600000000000005,5.92,6.26,6.5600000000000005,6.78,6.94,7.0600000000000005,7.16,7.33,325.18,327.07,328.41,330.04,331.76,333.6,335.47,337.24,341.05,30.22,30.3,30.330000000000002,30.330000000000002,30.3,30.25,30.19,30.11,30.04,N/A,N/A +2012,6,25,17,30,101010,99870,98780,59.18,0,4.72,5.49,5.8,6.15,6.43,6.67,6.73,6.71,6.54,318.38,319.95,321.22,322.91,324.74,326.71,329.19,331.68,334.97,31.34,31.46,31.48,31.48,31.45,31.41,31.310000000000002,31.19,30.830000000000002,N/A,N/A +2012,6,25,18,30,100930,99800,98710,58.22,0,4.91,5.66,5.91,6.13,6.34,6.54,6.6000000000000005,6.6000000000000005,6.62,297.51,300.33,302.90000000000003,306.94,311.09000000000003,315.48,317.36,318.04,321.43,31.79,32.01,32.08,32.15,32.15,32.09,31.92,31.73,31.44,N/A,N/A +2012,6,25,19,30,100880,99750,98670,57.76,0,4.84,5.98,6.3500000000000005,6.57,6.73,6.84,6.91,6.96,7.1000000000000005,289.37,294.08,297.29,301.09000000000003,304.48,307.67,309.27,310.13,313.11,32.39,32.87,32.99,32.980000000000004,32.89,32.74,32.56,32.37,32.05,N/A,N/A +2012,6,25,20,30,100810,99690,98610,59.96,0,4.67,6.09,6.59,6.88,7.07,7.17,7.2,7.21,7.21,293.97,299.29,302.61,305.86,308.41,310.42,311.86,312.96,315.55,32.78,33.45,33.63,33.6,33.51,33.37,33.2,33.03,32.74,N/A,N/A +2012,6,25,21,30,100750,99630,98550,67.36,0,2.5,4.37,5.33,5.9,6.26,6.43,6.53,6.58,6.66,271.85,289.77,300.01,304.34000000000003,307.42,309.42,311.2,312.79,315.86,32.42,33.31,33.67,33.9,33.980000000000004,33.94,33.83,33.68,33.37,N/A,N/A +2012,6,25,22,30,100700,99580,98500,64.17,0,3.33,5.22,5.97,6.22,6.38,6.47,6.5600000000000005,6.640000000000001,6.76,299.84000000000003,307.81,312.1,314.49,316.23,317.5,318.75,319.94,322.34000000000003,33.05,34.4,34.83,34.84,34.77,34.62,34.47,34.33,34.04,N/A,N/A +2012,6,25,23,30,100670,99560,98480,62.300000000000004,0,4.13,5.98,6.51,6.55,6.6000000000000005,6.66,6.76,6.88,6.99,303.41,311.77,315.61,316.54,317.39,318.24,319.62,321.3,325.01,33.6,35.32,35.78,35.63,35.45,35.25,35.06,34.89,34.58,N/A,N/A +2012,6,26,0,30,100650,99540,98460,61.84,0,5.09,6.47,6.6000000000000005,6.2,5.9,5.65,5.42,5.22,5.01,313.05,321.01,325.69,329.86,331.98,332.65000000000003,333.57,334.58,338.46,33.46,35.230000000000004,35.76,35.730000000000004,35.65,35.550000000000004,35.43,35.32,35.06,N/A,N/A +2012,6,26,1,30,100680,99550,98470,82.81,0,4.9,5.68,5.58,4.92,4.91,5.39,6,6.7,8.03,261.03000000000003,266.91,279.92,306.23,321.6,331.58,338.5,343.73,350.22,30.21,30.67,31.19,32.11,32.7,33.03,33.3,33.53,33.88,N/A,N/A +2012,6,26,2,30,100670,99550,98470,74.76,0,2.13,4.2700000000000005,5.41,6.66,7.67,8.44,8.950000000000001,9.290000000000001,9.5,312.39,342.03000000000003,357.36,2.35,5.94,8.14,9.57,10.55,10.81,31.86,33.02,33.480000000000004,33.94,34.37,34.800000000000004,35.07,35.26,35.15,N/A,N/A +2012,6,26,3,30,100680,99560,98490,70.63,0,3.1,5.84,7.13,8.02,8.55,8.76,8.8,8.76,8.61,356.85,7.42,13.24,16.080000000000002,17.6,17.92,17.31,16.28,14.47,31.53,33.44,34.28,34.95,35.34,35.5,35.52,35.480000000000004,35.08,N/A,N/A +2012,6,26,4,30,100670,99540,98470,71.25,0,3.65,3.88,4.03,4.63,5.25,5.89,6.45,6.95,7.2700000000000005,292.14,335.26,352.15000000000003,0.29,6.16,10.43,13.49,15.85,16.84,30.92,31.77,32.21,32.71,33.24,33.78,34.26,34.69,34.75,N/A,N/A +2012,6,26,5,30,100670,99540,98460,74.52,0,2.21,2.73,2.97,3.42,3.87,4.3100000000000005,4.7,5.0600000000000005,5.48,302.37,325.21,337.6,348.7,356.92,2.87,6.92,9.92,13.120000000000001,30.400000000000002,31.34,31.900000000000002,32.56,33.14,33.67,34.05,34.34,34.49,N/A,N/A +2012,6,26,6,30,100670,99540,98460,72.88,0,2.37,1.84,1.6600000000000001,1.6400000000000001,1.79,2.11,2.49,2.93,3.74,281.12,297.83,309.93,328.22,342.05,354.66,2.48,8.2,13.700000000000001,30.22,31.060000000000002,31.44,31.67,31.91,32.17,32.45,32.72,33.12,N/A,N/A +2012,6,26,7,30,100690,99560,98470,80.39,0,3.79,3.9,3.83,3.73,3.68,3.66,3.73,3.8200000000000003,4.16,298.91,308.66,314.31,320.36,326.36,332.56,339.05,345.43,357.19,29.66,30.310000000000002,30.6,30.76,30.900000000000002,31,31.16,31.330000000000002,31.720000000000002,N/A,N/A +2012,6,26,8,30,100690,99560,98470,78.7,0,3.54,4.0600000000000005,4.25,4.41,4.42,4.32,4.25,4.19,4.3,305.65000000000003,306.17,307.41,310.09000000000003,312.98,315.99,320.03000000000003,324.21,333.84000000000003,29.7,29.78,29.900000000000002,30.09,30.26,30.400000000000002,30.580000000000002,30.77,31.080000000000002,N/A,N/A +2012,6,26,9,30,100690,99560,98470,78.18,0,3.54,4.12,4.32,4.43,4.46,4.42,4.39,4.37,4.32,308.24,311.05,313.49,317,320.54,324.1,328.16,332.15000000000003,340.09000000000003,29.650000000000002,29.87,30.060000000000002,30.310000000000002,30.6,30.91,31.220000000000002,31.5,31.79,N/A,N/A +2012,6,26,10,30,100690,99560,98470,77.76,0,3.92,4.09,4.21,4.53,4.8,5.0200000000000005,5.03,4.95,4.5600000000000005,327.36,327.57,328.46,330.59000000000003,333.01,335.71,338.05,340.04,341.66,29.61,29.43,29.48,29.73,30.16,30.72,31.19,31.580000000000002,32.02,N/A,N/A +2012,6,26,11,30,100730,99590,98500,78.12,0,3.79,4,4.0600000000000005,4.18,4.32,4.48,4.51,4.49,4.38,335.82,335.79,335.64,335.31,336.36,338.44,342.04,345.97,352.81,29.54,29.32,29.23,29.150000000000002,29.35,29.740000000000002,30.25,30.79,31.51,N/A,N/A +2012,6,26,12,30,100750,99620,98530,77.59,0,2.81,2.95,2.96,2.96,3.0300000000000002,3.15,3.23,3.2800000000000002,3.29,348.82,348.85,348.84000000000003,348.83,349.82,351.55,355.69,0.52,8.52,29.37,29.11,28.98,28.84,28.89,29.07,29.53,30.07,30.82,N/A,N/A +2012,6,26,13,30,100780,99650,98550,71.43,0,3.67,3.8000000000000003,3.7600000000000002,3.7,3.64,3.56,3.47,3.39,3.44,351.79,352.12,352.47,353.06,353.91,354.96,357,359.23,6.16,29.35,29.11,29.02,28.96,29.2,29.68,30.09,30.46,31.02,N/A,N/A +2012,6,26,14,30,100800,99670,98570,72.96000000000001,0,3.2,3.34,3.33,3.34,3.4,3.49,3.42,3.3000000000000003,3.29,2.2600000000000002,2.33,2.5,2.79,3.8200000000000003,5.42,7.86,10.33,13.82,29.330000000000002,29.09,29.02,29.02,29.400000000000002,30.060000000000002,30.42,30.650000000000002,30.87,N/A,N/A +2012,6,26,15,30,100810,99680,98590,69.10000000000001,0,2.5100000000000002,2.68,2.8000000000000003,3.06,3.16,3.14,3.15,3.18,3.2,341.78000000000003,342.40000000000003,344.55,349.63,354.52,359.08,2.69,5.73,13.34,29.91,29.82,30.03,30.6,30.96,31.17,31.35,31.490000000000002,31.76,N/A,N/A +2012,6,26,16,30,100800,99670,98580,65.76,0,1.97,2.05,2.16,2.47,2.68,2.81,2.91,3,3.22,356.17,356.87,358.95,3.93,8.67,13.120000000000001,17.18,20.86,25.97,30.490000000000002,30.310000000000002,30.44,30.87,31.150000000000002,31.34,31.43,31.48,31.57,N/A,N/A +2012,6,26,17,30,100800,99670,98580,63.22,0,0.65,0.73,0.88,1.35,1.75,2.04,2.29,2.52,2.88,48.46,42.08,38.730000000000004,34.52,31.400000000000002,29.92,29.16,28.77,28.63,30.94,30.84,31.01,31.580000000000002,31.88,32.01,32.06,32.07,32.06,N/A,N/A +2012,6,26,18,30,100760,99640,98550,61.9,0,1.93,1.92,1.92,2.0300000000000002,2.1,2.15,2.17,2.19,2.12,133.86,126.56,118.57000000000001,104.46000000000001,94.51,87.49,81.86,77.12,69.53,31.3,31.41,31.69,32.27,32.55,32.64,32.660000000000004,32.64,32.56,N/A,N/A +2012,6,26,19,30,100760,99630,98540,66.35,0,3.31,3.4,3.38,3.4,3.31,3.14,2.92,2.69,2.44,155.62,153.99,150.39000000000001,141.81,135.95,132.13,130.98,131.08,134.27,31.220000000000002,31.04,31.13,31.54,31.91,32.26,32.4,32.44,32.39,N/A,N/A +2012,6,26,20,30,100710,99590,98500,66.33,0,3.81,3.98,3.95,3.93,3.7600000000000002,3.47,3.3200000000000003,3.24,3.17,158.39000000000001,157.52,155.75,151.57,149.68,149.53,150.92000000000002,152.85,154.66,31.45,31.29,31.38,31.8,32.160000000000004,32.5,32.57,32.52,32.39,N/A,N/A +2012,6,26,21,30,100680,99550,98470,66.51,0,4.49,4.68,4.63,4.55,4.37,4.11,3.93,3.79,3.52,167.48,167.16,166.72,165.82,164.53,162.95000000000002,163.75,165.41,168.04,31.57,31.41,31.41,31.55,31.87,32.33,32.47,32.46,32.34,N/A,N/A +2012,6,26,22,30,100670,99540,98460,69.67,0,4,4.3100000000000005,4.34,4.32,4.18,3.96,3.7800000000000002,3.65,3.42,178.95000000000002,178.44,177.69,176.04,175.15,174.85,175.86,177.38,180.24,31.310000000000002,31.29,31.39,31.7,32.04,32.42,32.56,32.57,32.46,N/A,N/A +2012,6,26,23,30,100610,99480,98400,73.13,0,5.19,5.91,6.0200000000000005,5.98,5.7700000000000005,5.48,5.28,5.12,4.86,173.86,173.88,173.16,171.57,170.67000000000002,170.23,171.03,172.23,174.89000000000001,30.970000000000002,31.12,31.400000000000002,31.96,32.37,32.69,32.76,32.730000000000004,32.63,N/A,N/A +2012,6,27,0,30,100670,99540,98450,76.12,0,4.58,5.38,5.62,5.68,5.57,5.2700000000000005,5.0600000000000005,4.9,4.74,194.12,194.16,193.52,191.57,190.1,188.99,189.67000000000002,191.31,195.44,30.57,30.67,30.93,31.68,32.19,32.52,32.64,32.63,32.54,N/A,N/A +2012,6,27,1,30,100740,99610,98520,81.34,0,8.22,9.27,9.540000000000001,9.75,9.89,9.98,10.01,9.99,9.83,260.79,261.33,261.31,261.23,261.04,260.75,260.19,259.5,257.53000000000003,30.04,29.86,29.740000000000002,29.59,29.44,29.29,29.13,28.98,28.76,N/A,N/A +2012,6,27,2,30,100700,99570,98480,73.45,0,4.2,5.22,5.73,6.22,6.59,6.84,6.92,6.92,6.87,259.05,259.72,260.27,260.79,261.34000000000003,261.92,262.77,263.68,265.05,30,30.38,30.63,30.92,31.09,31.17,31.16,31.11,30.93,N/A,N/A +2012,6,27,3,30,100740,99610,98520,75.08,0,3.06,3.89,4.33,4.74,5.05,5.28,5.43,5.5200000000000005,5.33,243.55,244.65,245.17000000000002,245,244.81,244.58,244.98000000000002,245.70000000000002,248.88,30.09,30.990000000000002,31.470000000000002,31.85,32.07,32.15,32.17,32.160000000000004,32.03,N/A,N/A +2012,6,27,4,30,100750,99620,98530,83.22,0,1.51,1.99,2.22,2.41,2.57,2.71,2.88,3.0500000000000003,3.46,276.98,272.88,269.23,263.88,258.14,251.95000000000002,246.62,241.8,236.66,29.560000000000002,30.19,30.52,30.79,31.07,31.35,31.61,31.86,32.08,N/A,N/A +2012,6,27,5,30,100760,99630,98540,80.79,0,1.1300000000000001,1.53,1.73,1.86,1.95,2.0100000000000002,2.14,2.2800000000000002,2.5100000000000002,237.24,241.8,243.09,240.95000000000002,237.5,232.77,228.43,224.3,221.44,29.71,30.490000000000002,30.85,31.04,31.17,31.25,31.42,31.61,31.84,N/A,N/A +2012,6,27,6,30,100800,99670,98580,82.43,0,0.75,1.07,1.28,1.52,1.7,1.83,1.9100000000000001,1.96,2,254.43,248.07,245.52,247.14000000000001,247.99,248.08,247.22,245.9,241.98000000000002,29.69,30.330000000000002,30.68,30.96,31.1,31.150000000000002,31.17,31.19,31.18,N/A,N/A +2012,6,27,7,30,100820,99690,98600,75.7,0,1.3800000000000001,1.68,1.76,1.73,1.69,1.6400000000000001,1.6400000000000001,1.67,1.81,180.69,192.75,200.81,209.25,216.12,222.02,226.82,230.97,237.16,30.21,31.12,31.51,31.67,31.740000000000002,31.76,31.77,31.76,31.720000000000002,N/A,N/A +2012,6,27,8,30,100860,99730,98640,80.07000000000001,0,1.3900000000000001,1.72,1.84,1.85,1.77,1.62,1.46,1.31,1.1400000000000001,166.09,174.64000000000001,180.47,187.39000000000001,193.62,199.17000000000002,206.37,213.41,231.46,29.98,30.580000000000002,30.88,31.04,31.14,31.19,31.21,31.23,31.16,N/A,N/A +2012,6,27,9,30,100910,99770,98680,76.39,0,1.55,1.58,1.61,1.73,1.8,1.82,1.74,1.6300000000000001,1.31,177.03,176.65,178.37,183.37,188.12,192.72,197.64000000000001,202.17000000000002,213.46,30.13,29.91,29.88,30,30.12,30.240000000000002,30.310000000000002,30.36,30.32,N/A,N/A +2012,6,27,10,30,100950,99810,98720,78.58,0,1.32,1.3800000000000001,1.37,1.36,1.3900000000000001,1.46,1.45,1.3900000000000001,1.1500000000000001,168.35,169.19,169.82,170.82,173.99,179.21,184.9,190.26,200.92000000000002,29.900000000000002,29.66,29.53,29.39,29.39,29.5,29.6,29.67,29.7,N/A,N/A +2012,6,27,11,30,100980,99850,98750,78.53,0,0.9500000000000001,0.99,0.98,0.96,0.98,1.02,0.97,0.89,0.62,198.38,198.47,198.8,199.39000000000001,201.97,206.47,212.43,218.21,236.91,29.8,29.54,29.400000000000002,29.23,29.2,29.26,29.330000000000002,29.41,29.45,N/A,N/A +2012,6,27,12,30,101060,99930,98830,76.56,0,1.28,1.35,1.35,1.34,1.33,1.33,1.29,1.23,1.06,152.9,152.68,152.74,152.81,152.87,152.9,152.42000000000002,151.74,138.6,29.86,29.6,29.46,29.29,29.13,28.990000000000002,28.94,28.93,29,N/A,N/A +2012,6,27,13,30,101110,99970,98870,76.16,0,2,2.13,2.14,2.14,2.15,2.15,2.15,2.15,2.18,147.28,147.35,147.35,147.34,147.33,147.31,147.27,147.20000000000002,146.74,29.86,29.59,29.44,29.26,29.09,28.92,28.75,28.59,28.330000000000002,N/A,N/A +2012,6,27,14,30,101180,100040,98940,76.38,0,2.04,2.19,2.21,2.22,2.23,2.25,2.2600000000000002,2.2800000000000002,2.34,151.63,151.4,151.21,151.02,150.81,150.6,150.33,150.03,149.22,29.88,29.6,29.43,29.240000000000002,29.060000000000002,28.88,28.69,28.51,28.16,N/A,N/A +2012,6,27,15,30,101220,100080,98980,69.72,0,2.45,2.62,2.65,2.67,2.69,2.71,2.74,2.7800000000000002,2.94,152.75,152.68,152.62,152.53,152.42000000000002,152.28,152.04,151.77,150.31,30.26,29.990000000000002,29.830000000000002,29.650000000000002,29.47,29.3,29.13,28.96,28.68,N/A,N/A +2012,6,27,16,30,101260,100120,99020,71.41,0,2.7,2.88,2.91,2.92,2.94,2.95,2.96,2.97,2.99,165.53,165.09,164.83,164.55,164.27,163.98,163.64000000000001,163.28,162.36,30.22,29.92,29.76,29.57,29.39,29.2,29.02,28.84,28.48,N/A,N/A +2012,6,27,17,30,101280,100140,99040,70.83,0,2.39,2.5300000000000002,2.56,2.58,2.6,2.61,2.63,2.65,2.69,167.1,166.98,166.89000000000001,166.79,166.71,166.62,166.51,166.42000000000002,166.15,30.25,29.94,29.78,29.580000000000002,29.400000000000002,29.21,29.02,28.84,28.48,N/A,N/A +2012,6,27,18,30,101310,100170,99070,69.45,0,3.06,3.21,3.23,3.23,3.23,3.22,3.22,3.22,3.21,159.75,159.8,159.76,159.70000000000002,159.63,159.55,159.46,159.37,159.09,30.46,30.14,29.98,29.78,29.6,29.41,29.22,29.04,28.67,N/A,N/A +2012,6,27,19,30,101310,100180,99080,66.24,0,4.22,4.48,4.5,4.5,4.49,4.48,4.46,4.44,4.39,158.67000000000002,158.84,158.93,159.02,159.11,159.21,159.3,159.39000000000001,159.6,30.69,30.39,30.22,30.02,29.84,29.650000000000002,29.45,29.27,28.89,N/A,N/A +2012,6,27,20,30,101300,100160,99060,70.34,0,4.6000000000000005,4.94,4.98,5,5,4.99,4.98,4.97,4.94,155.83,155.86,155.92000000000002,155.97,156.01,156.03,156.06,156.08,156.09,30.53,30.23,30.060000000000002,29.87,29.68,29.490000000000002,29.3,29.12,28.75,N/A,N/A +2012,6,27,21,30,101300,100160,99060,71.35000000000001,0,4.88,5.25,5.29,5.3100000000000005,5.3,5.29,5.2700000000000005,5.25,5.19,156.59,156.61,156.68,156.77,156.87,156.97,157.1,157.23,157.54,30.400000000000002,30.13,29.97,29.78,29.59,29.41,29.21,29.03,28.66,N/A,N/A +2012,6,27,22,30,101270,100130,99030,73.95,0,4.69,5.07,5.14,5.17,5.19,5.21,5.23,5.25,5.32,157.72,157.77,157.77,157.76,157.75,157.72,157.68,157.63,157.47,30.23,29.97,29.810000000000002,29.63,29.45,29.27,29.09,28.92,28.59,N/A,N/A +2012,6,27,23,30,101270,100130,99030,77.81,0,4.83,5.21,5.2700000000000005,5.3,5.3100000000000005,5.32,5.32,5.32,5.33,153.66,153.8,153.88,153.93,153.97,154,154.02,154.03,154.05,29.990000000000002,29.73,29.580000000000002,29.39,29.21,29.04,28.85,28.68,28.330000000000002,N/A,N/A +2012,6,28,0,30,101280,100140,99040,81.01,0,4.43,4.83,4.91,4.97,5.0200000000000005,5.0600000000000005,5.12,5.17,5.3500000000000005,152.52,152.37,152.31,152.25,152.18,152.09,152,151.9,151.57,29.75,29.48,29.32,29.13,28.96,28.78,28.6,28.43,28.09,N/A,N/A +2012,6,28,1,30,101250,100110,99010,83.9,0,6.3,6.86,6.95,6.97,6.97,6.95,6.91,6.86,6.7,152.24,152.38,152.45000000000002,152.53,152.62,152.71,152.83,152.95000000000002,153.31,29.55,29.25,29.080000000000002,28.89,28.7,28.51,28.32,28.13,27.73,N/A,N/A +2012,6,28,2,30,101290,100160,99050,82.31,0,6.03,6.5600000000000005,6.66,6.71,6.75,6.78,6.83,6.87,7.07,158.94,158.85,158.74,158.59,158.42000000000002,158.23,157.99,157.73,156.87,29.59,29.310000000000002,29.150000000000002,28.97,28.79,28.62,28.44,28.28,27.990000000000002,N/A,N/A +2012,6,28,3,30,101320,100190,99080,84.88,0,6.53,7.1000000000000005,7.22,7.28,7.34,7.390000000000001,7.45,7.51,7.75,159.43,159.17000000000002,158.99,158.76,158.5,158.21,157.85,157.45000000000002,156.26,29.400000000000002,29.1,28.94,28.75,28.580000000000002,28.400000000000002,28.23,28.07,27.79,N/A,N/A +2012,6,28,4,30,101340,100200,99090,86.4,0,6.99,7.61,7.74,7.79,7.82,7.84,7.84,7.83,7.79,153.66,153.77,153.8,153.84,153.86,153.89000000000001,153.93,153.97,154.11,29.26,28.95,28.78,28.580000000000002,28.400000000000002,28.22,28.02,27.84,27.46,N/A,N/A +2012,6,28,5,30,101360,100220,99120,87.94,0,7.2700000000000005,7.88,8.01,8.05,8.08,8.09,8.08,8.07,8.01,154.34,154.36,154.34,154.31,154.29,154.25,154.23,154.21,154.20000000000002,29.080000000000002,28.75,28.580000000000002,28.38,28.2,28.01,27.82,27.63,27.25,N/A,N/A +2012,6,28,6,30,101410,100270,99160,88.84,0,6.24,6.73,6.82,6.86,6.890000000000001,6.9,6.9,6.9,6.890000000000001,155.78,155.85,155.91,156,156.08,156.18,156.29,156.39000000000001,156.63,29,28.650000000000002,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A +2012,6,28,7,30,101470,100330,99220,88.53,0,6.21,6.7,6.8,6.84,6.86,6.87,6.87,6.86,6.84,157.99,158.1,158.20000000000002,158.28,158.36,158.43,158.5,158.57,158.71,29,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A +2012,6,28,8,30,101490,100340,99240,85.27,0,5.97,6.49,6.61,6.68,6.73,6.7700000000000005,6.8,6.83,6.88,164.31,163.87,163.66,163.47,163.29,163.12,162.95000000000002,162.78,162.42000000000002,29.14,28.8,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A +2012,6,28,9,30,101520,100380,99270,85.85000000000001,0,6.59,7.11,7.21,7.24,7.25,7.25,7.23,7.21,7.140000000000001,162.21,162.46,162.59,162.73,162.87,163.01,163.17000000000002,163.32,163.71,29,28.66,28.48,28.28,28.080000000000002,27.89,27.69,27.5,27.11,N/A,N/A +2012,6,28,10,30,101530,100390,99280,83.22,0,6.68,7.25,7.37,7.43,7.46,7.48,7.48,7.48,7.46,160.52,160.78,160.96,161.17000000000002,161.37,161.57,161.78,161.99,162.43,29.14,28.8,28.62,28.42,28.22,28.03,27.830000000000002,27.63,27.240000000000002,N/A,N/A +2012,6,28,11,30,101580,100440,99330,85.24,0,5.2700000000000005,5.69,5.8,5.88,5.94,5.98,6.03,6.07,6.140000000000001,161.15,162.35,163.03,163.68,164.26,164.81,165.33,165.84,166.79,29.13,28.8,28.64,28.44,28.26,28.07,27.88,27.69,27.32,N/A,N/A +2012,6,28,12,30,101610,100470,99360,84.06,0,5.12,5.55,5.66,5.73,5.79,5.84,5.88,5.91,5.98,167.36,167.27,167.23,167.18,167.13,167.08,167.02,166.97,166.84,29.060000000000002,28.72,28.55,28.35,28.16,27.97,27.78,27.59,27.21,N/A,N/A +2012,6,28,13,30,101650,100510,99400,83.28,0,4.0200000000000005,4.26,4.3100000000000005,4.33,4.3500000000000005,4.36,4.36,4.37,4.38,155.91,155.82,155.83,155.83,155.84,155.86,155.88,155.93,156.06,29.17,28.85,28.68,28.48,28.3,28.11,27.92,27.740000000000002,27.37,N/A,N/A +2012,6,28,14,30,101720,100570,99460,83.08,0,3.7800000000000002,4.0600000000000005,4.12,4.16,4.2,4.22,4.25,4.2700000000000005,4.32,154.34,154.31,154.36,154.42000000000002,154.47,154.52,154.58,154.64000000000001,154.77,29.27,28.94,28.77,28.57,28.39,28.19,28,27.82,27.44,N/A,N/A +2012,6,28,15,30,101720,100580,99470,82.09,0,3.61,3.8000000000000003,3.83,3.84,3.84,3.84,3.84,3.83,3.81,128.51,129.29,129.73,130.13,130.51,130.88,131.26,131.62,132.4,29.310000000000002,28.98,28.810000000000002,28.61,28.43,28.240000000000002,28.04,27.86,27.48,N/A,N/A +2012,6,28,16,30,101710,100570,99460,82.39,0,3.56,3.7600000000000002,3.8000000000000003,3.8200000000000003,3.83,3.85,3.85,3.86,3.87,129.46,130.76,131.41,132.07,132.67000000000002,133.26,133.85,134.41,135.54,29.36,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.52,N/A,N/A +2012,6,28,17,30,101750,100610,99490,84.71000000000001,0,4.66,4.92,4.96,4.97,4.97,4.96,4.95,4.94,4.9,115.73,116.12,116.28,116.39,116.48,116.54,116.60000000000001,116.65,116.72,29.34,29,28.830000000000002,28.62,28.44,28.240000000000002,28.05,27.86,27.490000000000002,N/A,N/A +2012,6,28,18,30,101730,100590,99480,82.98,0,4.38,4.66,4.69,4.7,4.69,4.69,4.68,4.66,4.62,113.10000000000001,113.9,114.12,114.33,114.5,114.67,114.84,115.01,115.37,29.48,29.13,28.96,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A +2012,6,28,19,30,101800,100660,99540,84.11,0,6.96,7.44,7.53,7.5600000000000005,7.58,7.58,7.58,7.58,7.5600000000000005,158.93,159.01,159.05,159.13,159.20000000000002,159.31,159.43,159.56,159.87,29.490000000000002,29.16,28.990000000000002,28.79,28.6,28.41,28.22,28.03,27.66,N/A,N/A +2012,6,28,20,30,101690,100540,99430,82.64,0,5.86,6.140000000000001,6.17,6.16,6.15,6.140000000000001,6.15,6.17,6.3,218.53,217.75,217.08,216.20000000000002,215,213.51,210.66,207.39000000000001,197.17000000000002,27.54,27.150000000000002,26.98,26.810000000000002,26.68,26.560000000000002,26.53,26.53,26.76,N/A,N/A +2012,6,28,21,30,101690,100540,99430,80.86,0,6.09,6.48,6.55,6.57,6.58,6.59,6.58,6.58,6.57,191.55,191.19,191.04,190.86,190.66,190.44,190.15,189.84,188.87,27.89,27.5,27.32,27.12,26.93,26.75,26.560000000000002,26.39,26.04,N/A,N/A +2012,6,28,22,30,101660,100510,99400,77.99,0,3.37,3.54,3.5700000000000003,3.59,3.61,3.64,3.71,3.79,4.3500000000000005,163.92000000000002,163.14000000000001,162.65,162.05,161.37,160.61,159.44,158.17000000000002,153.17000000000002,28.080000000000002,27.72,27.55,27.36,27.18,27.01,26.84,26.68,26.52,N/A,N/A +2012,6,28,23,30,101650,100510,99400,76.09,0,2.64,2.8000000000000003,2.84,2.87,2.91,2.96,3.0500000000000003,3.16,3.77,130.71,130.93,131.09,131.32,131.61,131.98,132.7,133.56,138.24,28.53,28.2,28.04,27.85,27.68,27.51,27.36,27.21,27.14,N/A,N/A +2012,6,29,0,30,101610,100460,99350,76.32000000000001,0,5.09,5.44,5.5,5.53,5.5600000000000005,5.58,5.6000000000000005,5.62,5.68,143.79,143.66,143.61,143.55,143.49,143.41,143.33,143.25,143,28.7,28.35,28.18,27.98,27.79,27.61,27.42,27.240000000000002,26.87,N/A,N/A +2012,6,29,1,30,101590,100450,99340,78.7,0,6.3500000000000005,6.8100000000000005,6.91,6.95,6.98,6.99,7,7,7.01,143.51,143.62,143.69,143.77,143.84,143.91,144,144.1,144.32,28.8,28.45,28.28,28.080000000000002,27.900000000000002,27.72,27.53,27.35,26.990000000000002,N/A,N/A +2012,6,29,2,30,101590,100440,99330,80.10000000000001,0,5.89,6.3500000000000005,6.46,6.53,6.57,6.61,6.640000000000001,6.67,6.71,139.44,139.84,140.06,140.29,140.51,140.74,140.98,141.21,141.74,28.8,28.44,28.27,28.07,27.89,27.7,27.51,27.32,26.95,N/A,N/A +2012,6,29,3,30,101590,100440,99330,80.88,0,6.29,6.8,6.92,6.98,7.03,7.0600000000000005,7.09,7.11,7.140000000000001,147.55,147.68,147.77,147.87,147.95000000000002,148.03,148.12,148.19,148.36,28.84,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A +2012,6,29,4,30,101590,100440,99330,83.27,0,6.0600000000000005,6.5200000000000005,6.63,6.68,6.72,6.74,6.75,6.7700000000000005,6.78,149.26,149.37,149.4,149.43,149.45000000000002,149.47,149.5,149.52,149.57,28.77,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.900000000000002,N/A,N/A +2012,6,29,5,30,101570,100430,99320,80.49,0,6.3100000000000005,6.78,6.88,6.92,6.94,6.95,6.95,6.95,6.93,161.89000000000001,161.42000000000002,161.18,160.93,160.72,160.5,160.29,160.08,159.66,29.01,28.67,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A +2012,6,29,6,30,101610,100470,99360,79.81,0,5.91,6.3500000000000005,6.45,6.49,6.5200000000000005,6.54,6.5600000000000005,6.5600000000000005,6.57,168.45000000000002,168.51,168.49,168.46,168.44,168.41,168.39000000000001,168.38,168.34,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A +2012,6,29,7,30,101600,100450,99340,79.56,0,6.0200000000000005,6.45,6.5200000000000005,6.55,6.5600000000000005,6.5600000000000005,6.55,6.54,6.5200000000000005,167.9,168.08,168.26,168.45000000000002,168.65,168.85,169.06,169.26,169.71,28.94,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,6,29,8,30,101620,100480,99370,77.62,0,4.66,4.97,5.04,5.07,5.08,5.09,5.09,5.08,5.07,171.22,172.11,172.45000000000002,172.75,173.01,173.25,173.47,173.68,174.08,29.080000000000002,28.75,28.580000000000002,28.39,28.2,28.01,27.82,27.63,27.26,N/A,N/A +2012,6,29,9,30,101600,100450,99340,78.58,0,4.57,4.88,4.94,4.98,5.01,5.03,5.04,5.05,5.08,180.93,181.1,181.23,181.37,181.49,181.61,181.74,181.85,182.09,28.91,28.57,28.400000000000002,28.21,28.02,27.830000000000002,27.650000000000002,27.46,27.09,N/A,N/A +2012,6,29,10,30,101610,100470,99360,80.12,0,3.5100000000000002,3.67,3.68,3.68,3.67,3.66,3.64,3.63,3.6,201.64000000000001,201.55,201.28,200.96,200.63,200.27,199.86,199.45000000000002,198.36,28.77,28.44,28.28,28.080000000000002,27.900000000000002,27.72,27.54,27.36,27.01,N/A,N/A +2012,6,29,11,30,101580,100430,99320,79.22,0,3.2,3.38,3.41,3.42,3.43,3.43,3.44,3.44,3.43,202.33,203.16,203.57,203.97,204.34,204.70000000000002,205.06,205.4,206.08,28.72,28.38,28.21,28.01,27.82,27.63,27.44,27.25,26.87,N/A,N/A +2012,6,29,12,30,101580,100440,99330,80.15,3.3000000000000003,2.93,3.1,3.11,3.11,3.11,3.11,3.1,3.09,3.08,216.55,215.65,215.47,215.28,215.1,214.92000000000002,214.75,214.59,214.25,28.59,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,6,29,13,30,101610,100450,99330,93.26,51.6,9.89,10.93,11.07,11.16,11.200000000000001,11.21,11.19,11.17,11.07,112.60000000000001,112,111.96000000000001,111.95,112,112.06,112.17,112.27,112.55,26.18,25.67,25.45,25.240000000000002,25.03,24.84,24.64,24.45,24.080000000000002,N/A,N/A +2012,6,29,14,30,101680,100520,99400,83.35000000000001,0,7.33,7.76,7.8100000000000005,7.82,7.8,7.78,7.76,7.75,7.71,109.55,109.51,109.76,110.04,110.36,110.7,111.22,111.75,113.37,25.84,25.37,25.19,25.02,24.86,24.71,24.580000000000002,24.46,24.330000000000002,N/A,N/A +2012,6,29,15,30,101680,100530,99400,78.61,0,5.63,5.98,6.05,6.07,6.09,6.09,6.09,6.08,6.0600000000000005,96.53,97.23,97.51,97.79,98.07000000000001,98.35000000000001,98.67,98.97,99.74000000000001,26.59,26.16,25.97,25.77,25.580000000000002,25.400000000000002,25.22,25.04,24.7,N/A,N/A +2012,6,29,16,30,101670,100520,99400,77.7,0,6.2700000000000005,6.67,6.74,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.74,6.72,6.640000000000001,93.72,93.84,93.88,93.92,93.95,93.99,94.02,94.06,94.16,27.29,26.88,26.7,26.5,26.32,26.14,25.95,25.78,25.44,N/A,N/A +2012,6,29,17,30,101650,100500,99380,82.52,0,6.2,6.54,6.58,6.57,6.55,6.5200000000000005,6.48,6.44,6.34,113.64,113.76,113.83,113.92,114,114.09,114.19,114.29,114.54,27.47,27.060000000000002,26.88,26.68,26.490000000000002,26.310000000000002,26.13,25.95,25.6,N/A,N/A +2012,6,29,18,30,101570,100430,99310,83.31,0,5.8100000000000005,6.19,6.22,6.21,6.19,6.16,6.12,6.08,5.99,113.7,113.87,113.82000000000001,113.75,113.67,113.59,113.5,113.41,113.21000000000001,27.92,27.51,27.330000000000002,27.13,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A +2012,6,29,19,30,101550,100410,99300,76.85000000000001,0,6.7,7.18,7.25,7.2700000000000005,7.2700000000000005,7.26,7.24,7.21,7.15,143.71,143.68,143.72,143.76,143.82,143.88,143.95000000000002,144.02,144.19,28.37,27.990000000000002,27.810000000000002,27.61,27.43,27.240000000000002,27.05,26.87,26.5,N/A,N/A +2012,6,29,20,30,101500,100350,99240,83.41,0,6.47,6.8500000000000005,6.91,6.9,6.87,6.83,6.7700000000000005,6.7,6.51,144.9,144.95000000000002,144.91,144.9,144.91,144.94,145.02,145.12,145.54,27.900000000000002,27.51,27.330000000000002,27.13,26.95,26.77,26.580000000000002,26.400000000000002,26.05,N/A,N/A +2012,6,29,21,30,101440,100290,99170,77.42,0,8.16,8.77,8.88,8.92,8.93,8.93,8.92,8.91,8.91,134.79,134.89000000000001,134.85,134.81,134.76,134.71,134.65,134.6,134.51,27.95,27.560000000000002,27.39,27.2,27.03,26.86,26.69,26.54,26.29,N/A,N/A +2012,6,29,22,30,101380,100230,99120,78.24,0,6.42,6.84,6.890000000000001,6.890000000000001,6.87,6.83,6.78,6.73,6.57,157.79,157.58,157.59,157.61,157.64000000000001,157.67000000000002,157.72,157.78,157.98,28.27,27.900000000000002,27.72,27.53,27.34,27.150000000000002,26.96,26.78,26.42,N/A,N/A +2012,6,29,23,30,101390,100240,99130,85.22,0,5.89,6.26,6.32,6.34,6.34,6.34,6.32,6.3100000000000005,6.2700000000000005,143.04,143.01,142.91,142.81,142.71,142.61,142.5,142.39000000000001,142.17000000000002,27.8,27.400000000000002,27.22,27.02,26.830000000000002,26.64,26.44,26.26,25.88,N/A,N/A +2012,6,30,0,30,101340,100190,99080,77.31,0,5.15,5.46,5.5200000000000005,5.55,5.57,5.57,5.57,5.57,5.57,150.15,150.26,150.3,150.33,150.36,150.4,150.45000000000002,150.49,150.58,28.07,27.69,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.17,N/A,N/A +2012,6,30,1,30,101280,100130,99030,81.52,0,4.91,5.28,5.38,5.44,5.49,5.53,5.5600000000000005,5.59,5.64,137.32,137.44,137.52,137.6,137.67000000000002,137.73,137.79,137.86,137.98,28.07,27.69,27.52,27.310000000000002,27.12,26.93,26.73,26.55,26.16,N/A,N/A +2012,6,30,2,30,101280,100140,99030,82.5,0,5.5200000000000005,5.9,5.97,6,6.0200000000000005,6.04,6.05,6.05,6.05,147.85,147.89000000000001,147.91,147.93,147.95000000000002,147.98,148.01,148.03,148.1,28.2,27.830000000000002,27.650000000000002,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A +2012,6,30,3,30,101250,100100,99000,81.05,0,5.46,5.88,5.98,6.03,6.07,6.1000000000000005,6.12,6.140000000000001,6.17,153.20000000000002,153.21,153.14000000000001,153.08,153.02,152.97,152.91,152.87,152.78,28.47,28.11,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,6,30,4,30,101240,100090,98990,84.32000000000001,0,7.01,7.5200000000000005,7.61,7.640000000000001,7.640000000000001,7.640000000000001,7.62,7.6000000000000005,7.54,149.72,150.36,150.62,150.87,151.09,151.3,151.5,151.70000000000002,152.09,28.29,27.91,27.73,27.53,27.330000000000002,27.14,26.95,26.76,26.39,N/A,N/A +2012,6,30,5,30,101220,100080,98970,84.58,0,7.03,7.58,7.69,7.75,7.79,7.8,7.8100000000000005,7.8100000000000005,7.8,153.31,153.58,153.82,154.04,154.24,154.42000000000002,154.6,154.76,155.09,28.32,27.94,27.76,27.560000000000002,27.36,27.17,26.97,26.79,26.41,N/A,N/A +2012,6,30,6,30,101260,100110,99010,81.89,0,5.8,6.23,6.32,6.37,6.41,6.43,6.45,6.47,6.5,172.51,172.45000000000002,172.44,172.42000000000002,172.41,172.39000000000001,172.38,172.36,172.33,28.37,28.01,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A +2012,6,30,7,30,101250,100110,99010,82.37,0,7.2,7.78,7.890000000000001,7.94,7.97,7.97,7.97,7.96,7.92,167.63,167.8,167.99,168.17000000000002,168.34,168.5,168.67000000000002,168.83,169.15,28.45,28.1,27.92,27.72,27.53,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,6,30,8,30,101250,100100,99000,80.31,0,6.640000000000001,7.140000000000001,7.23,7.26,7.28,7.29,7.29,7.29,7.2700000000000005,170.88,170.95000000000002,170.93,170.9,170.88,170.86,170.84,170.83,170.81,28.43,28.080000000000002,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A +2012,6,30,9,30,101240,100090,98990,79.04,0,6.75,7.3100000000000005,7.43,7.5,7.54,7.58,7.61,7.62,7.65,182.91,183.02,183.09,183.15,183.21,183.25,183.3,183.35,183.42000000000002,28.46,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,6,30,10,30,101240,100100,98990,77.08,0,6.16,6.61,6.69,6.72,6.74,6.75,6.75,6.74,6.73,180.92000000000002,181.27,181.45000000000002,181.62,181.77,181.91,182.04,182.17000000000002,182.43,28.45,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A +2012,6,30,11,30,101240,100100,98990,78.54,0,5.26,5.65,5.73,5.78,5.8100000000000005,5.84,5.8500000000000005,5.86,5.86,190.01,189.66,189.38,189.11,188.85,188.61,188.36,188.14000000000001,187.67000000000002,28.400000000000002,28.05,27.87,27.67,27.48,27.29,27.09,26.900000000000002,26.52,N/A,N/A +2012,6,30,12,30,101250,100110,99000,78.54,0,5.84,6.24,6.3100000000000005,6.34,6.36,6.37,6.37,6.37,6.36,188.09,187.65,187.36,187.06,186.79,186.54,186.28,186.04,185.56,28.34,27.990000000000002,27.810000000000002,27.61,27.42,27.23,27.03,26.85,26.46,N/A,N/A +2012,6,30,13,30,101290,100140,99040,78.06,0,3.13,3.33,3.38,3.41,3.44,3.46,3.48,3.5,3.5300000000000002,185.59,185.3,185.17000000000002,185.03,184.91,184.8,184.69,184.58,184.35,28.310000000000002,27.97,27.79,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,6,30,14,30,101400,100250,99130,88.8,98.5,2.44,2.34,2.27,2.27,2.32,2.44,2.61,2.82,3.2600000000000002,64.71000000000001,75.19,82.19,91.13,98.61,105.68,111.28,116.02,121.81,26.51,26.2,26.080000000000002,25.96,25.85,25.76,25.67,25.6,25.42,N/A,N/A +2012,6,30,15,30,101380,100230,99100,92.29,1.1,8.370000000000001,8.83,8.86,8.8,8.700000000000001,8.57,8.4,8.24,7.72,49.42,49.480000000000004,49.620000000000005,49.81,50.050000000000004,50.34,50.74,51.14,52.75,25.3,24.79,24.59,24.400000000000002,24.22,24.05,23.89,23.740000000000002,23.47,N/A,N/A +2012,6,30,16,30,101390,100230,99110,89.8,127.10000000000001,6.91,7.28,7.36,7.390000000000001,7.4,7.4,7.38,7.36,7.3,17.490000000000002,17.6,17.75,17.87,17.94,17.990000000000002,18.01,18.02,17.97,26.03,25.560000000000002,25.37,25.17,24.97,24.79,24.61,24.43,24.080000000000002,N/A,N/A +2012,6,30,17,30,101400,100240,99120,92.99,21.200000000000003,6.38,6.62,6.6000000000000005,6.55,6.49,6.42,6.34,6.26,6.09,300.2,300.21,300.63,301.11,301.58,302.07,302.64,303.19,304.45,25.1,24.61,24.42,24.22,24.03,23.85,23.66,23.490000000000002,23.13,N/A,N/A +2012,6,30,18,30,101360,100200,99080,87.89,0,4.15,4.18,4.08,3.93,3.64,3.31,2.66,2.11,1.25,6.34,7.69,8.51,9.57,11.32,13.24,16.01,18.240000000000002,24.93,25.69,25.3,25.16,25.03,24.97,24.93,24.98,25.04,25.02,N/A,N/A +2012,6,30,19,30,101340,100190,99080,83.24,0,0.64,0.52,0.48,0.48,0.51,0.59,0.7000000000000001,0.8300000000000001,1.1500000000000001,64.3,86.15,99.97,118.51,133.76,148.58,159.21,168.58,179.25,26.86,26.47,26.29,26.09,25.900000000000002,25.72,25.52,25.34,24.97,N/A,N/A +2012,6,30,20,30,101320,100170,99050,84.14,0,2.22,2.34,2.38,2.41,2.44,2.47,2.5100000000000002,2.54,2.63,173.45000000000002,171.99,170.92000000000002,169.86,168.89000000000001,167.93,166.98,166.07,164.25,27.080000000000002,26.68,26.5,26.3,26.11,25.92,25.73,25.55,25.18,N/A,N/A +2012,6,30,21,30,101260,100110,99000,80.72,0,3.64,3.94,4.03,4.1,4.17,4.23,4.28,4.34,4.45,152.8,152.32,152.03,151.75,151.5,151.26,151.03,150.81,150.4,27.59,27.21,27.03,26.830000000000002,26.64,26.45,26.26,26.07,25.7,N/A,N/A +2012,6,30,22,30,101230,100080,98970,69.59,0,6.38,6.94,7.0600000000000005,7.12,7.16,7.19,7.21,7.22,7.24,148.32,148.28,148.32,148.37,148.43,148.48,148.55,148.6,148.73,28.55,28.2,28.03,27.830000000000002,27.64,27.45,27.25,27.07,26.68,N/A,N/A +2012,6,30,23,30,101230,100080,98980,76.38,0,5.78,6.26,6.390000000000001,6.47,6.53,6.57,6.61,6.65,6.7,144.08,144.39000000000001,144.62,144.83,145,145.15,145.29,145.42000000000002,145.68,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,1,0,30,101210,100060,98960,75.59,0,6.23,6.68,6.78,6.83,6.87,6.9,6.91,6.93,6.95,150.51,150.66,150.75,150.85,150.93,151.02,151.09,151.17000000000002,151.33,28.48,28.14,27.96,27.76,27.57,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,1,1,30,101200,100060,98950,81.41,0,6.2700000000000005,6.8100000000000005,6.93,6.99,7.04,7.07,7.09,7.11,7.12,143.62,143.99,144.08,144.13,144.17000000000002,144.19,144.20000000000002,144.20000000000002,144.19,28.3,27.93,27.76,27.55,27.37,27.17,26.98,26.79,26.41,N/A,N/A +2012,7,1,2,30,101200,100060,98950,80.21000000000001,0,7.4,8.01,8.14,8.21,8.25,8.28,8.290000000000001,8.3,8.3,154.01,154.21,154.26,154.29,154.34,154.37,154.41,154.45000000000002,154.52,28.1,27.72,27.54,27.34,27.150000000000002,26.96,26.76,26.580000000000002,26.2,N/A,N/A +2012,7,1,3,30,101220,100070,98970,80.33,0,7.16,7.7700000000000005,7.9,7.97,8.03,8.07,8.1,8.13,8.16,158.98,159.22,159.4,159.57,159.73,159.88,160.05,160.20000000000002,160.51,28.19,27.82,27.64,27.44,27.25,27.060000000000002,26.86,26.68,26.29,N/A,N/A +2012,7,1,4,30,101220,100080,98970,82.21000000000001,0,7.73,8.46,8.63,8.74,8.82,8.88,8.94,8.98,9.05,151.20000000000002,151.56,151.73,151.88,152.02,152.16,152.28,152.4,152.63,28.23,27.86,27.68,27.48,27.29,27.1,26.900000000000002,26.71,26.330000000000002,N/A,N/A +2012,7,1,5,30,101250,100110,99000,80.87,0,7.94,8.72,8.89,9.01,9.08,9.13,9.17,9.200000000000001,9.24,162.20000000000002,162.08,162.07,162.07,162.07,162.07,162.08,162.08,162.09,28.41,28.04,27.86,27.66,27.46,27.27,27.07,26.88,26.5,N/A,N/A +2012,7,1,6,30,101280,100140,99030,76.58,0,8.13,8.94,9.13,9.24,9.32,9.38,9.43,9.46,9.51,168.37,168.38,168.4,168.41,168.41,168.42000000000002,168.42000000000002,168.42000000000002,168.43,28.580000000000002,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,1,7,30,101350,100210,99100,80.86,19.6,8.84,9.44,9.52,9.48,9.4,9.3,9.18,9.06,8.85,185.41,185.33,185.49,185.77,186.05,186.32,186.35,186.3,185.64000000000001,27.82,27.52,27.39,27.27,27.150000000000002,27.02,26.88,26.73,26.39,N/A,N/A +2012,7,1,8,30,101380,100230,99110,81.66,8.1,7.49,8.18,8.35,8.48,8.58,8.68,8.78,8.88,9.13,190.67000000000002,189.68,189.13,188.55,187.94,187.34,186.62,185.92000000000002,183.71,27.27,26.89,26.72,26.52,26.34,26.150000000000002,25.97,25.8,25.48,N/A,N/A +2012,7,1,9,30,101390,100230,99120,82.44,0,5.86,6.34,6.46,6.53,6.58,6.62,6.66,6.69,6.74,166.03,165.93,165.9,165.89000000000001,165.87,165.85,165.83,165.82,165.77,27.310000000000002,26.93,26.76,26.560000000000002,26.36,26.17,25.98,25.8,25.42,N/A,N/A +2012,7,1,10,30,101400,100240,99140,81.58,0,6.91,7.49,7.61,7.68,7.73,7.75,7.7700000000000005,7.78,7.79,160.48,160.54,160.58,160.63,160.68,160.74,160.81,160.87,161.03,27.71,27.330000000000002,27.14,26.94,26.740000000000002,26.55,26.36,26.17,25.79,N/A,N/A +2012,7,1,11,30,101450,100300,99180,79.8,0,6.03,6.47,6.57,6.62,6.65,6.67,6.69,6.7,6.73,159.42000000000002,159.69,159.83,159.96,160.08,160.20000000000002,160.33,160.47,160.85,27.86,27.5,27.330000000000002,27.13,26.94,26.75,26.560000000000002,26.38,26.01,N/A,N/A +2012,7,1,12,30,101470,100320,99210,79.43,0,6.68,7.19,7.3,7.36,7.390000000000001,7.41,7.41,7.41,7.390000000000001,150.28,150.55,150.66,150.78,150.89000000000001,151,151.11,151.22,151.49,27.95,27.59,27.42,27.22,27.04,26.85,26.66,26.48,26.12,N/A,N/A +2012,7,1,13,30,101510,100370,99260,81.59,0,5.82,6.16,6.21,6.2,6.18,6.15,6.12,6.08,6.0200000000000005,148.79,149.31,149.85,150.48,151.15,151.86,152.75,153.65,156.26,28.05,27.7,27.53,27.330000000000002,27.150000000000002,26.97,26.79,26.62,26.29,N/A,N/A +2012,7,1,14,30,101570,100430,99310,81.43,0,5.67,6.13,6.18,6.19,6.19,6.16,6.12,6.08,5.99,130.54,131.99,132.39000000000001,132.78,133.15,133.52,133.93,134.32,135.31,27.900000000000002,27.53,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.03,N/A,N/A +2012,7,1,15,30,101700,100540,99420,86.15,35.300000000000004,9.73,10.61,10.81,10.9,10.97,11.01,11.03,11.06,11.11,179.72,179.36,179.25,179.14000000000001,179.05,178.97,178.91,178.86,178.81,26.59,26.11,25.91,25.7,25.52,25.330000000000002,25.14,24.96,24.6,N/A,N/A +2012,7,1,16,30,101750,100590,99460,82.63,2.4000000000000004,6.93,7.3500000000000005,7.43,7.45,7.47,7.46,7.46,7.46,7.43,181.88,182.09,182.21,182.33,182.46,182.59,182.74,182.89000000000001,183.24,25.85,25.38,25.18,24.98,24.78,24.6,24.41,24.23,23.86,N/A,N/A +2012,7,1,17,30,101760,100590,99460,89.81,43.5,2.85,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0100000000000002,3,2.99,2.98,2.94,277.92,277.09000000000003,278.02,278.93,279.83,280.66,281.72,282.7,285.29,24.91,24.47,24.29,24.09,23.900000000000002,23.72,23.53,23.37,23.01,N/A,N/A +2012,7,1,18,30,101780,100610,99480,89.7,74.3,5.74,6.03,6.05,6.04,6.0200000000000005,5.98,5.93,5.88,5.75,256.47,255.57,255.70000000000002,255.79,255.89000000000001,255.98000000000002,256.08,256.19,256.49,24.78,24.3,24.1,23.91,23.72,23.54,23.35,23.19,22.84,N/A,N/A +2012,7,1,19,30,101770,100600,99470,84.75,0,2.11,2.23,2.24,2.2600000000000002,2.2800000000000002,2.31,2.34,2.36,2.47,281.5,279.18,277.48,275.68,273.89,272.09000000000003,269.98,267.91,261.91,25.11,24.69,24.51,24.310000000000002,24.12,23.94,23.76,23.580000000000002,23.240000000000002,N/A,N/A +2012,7,1,20,30,101700,100540,99420,82.82000000000001,0,1.27,1.3900000000000001,1.45,1.52,1.6300000000000001,1.8,2.19,2.7800000000000002,3.39,208.20000000000002,206.76,206.9,206.85,206.37,205.49,202.71,198.39000000000001,185.64000000000001,26.04,25.67,25.51,25.34,25.19,25.07,25.14,25.27,25.67,N/A,N/A +2012,7,1,21,30,101680,100530,99410,81.78,0,3.93,4.14,4.18,4.2,4.22,4.23,4.25,4.28,4.39,126.27,126.92,127.38000000000001,127.87,128.41,128.98,129.72,130.46,132.7,26.78,26.39,26.21,26.01,25.82,25.64,25.46,25.29,24.95,N/A,N/A +2012,7,1,22,30,101650,100490,99370,83.36,0,4.87,5.18,5.25,5.28,5.3100000000000005,5.34,5.36,5.38,5.43,112.58,113.10000000000001,113.4,113.74000000000001,114.06,114.38,114.76,115.14,116.11,26.88,26.48,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A +2012,7,1,23,30,101590,100440,99330,82.5,0,5.73,6.09,6.16,6.18,6.19,6.19,6.18,6.18,6.15,124.19,124.54,124.66,124.78,124.88000000000001,124.97,125.06,125.16,125.37,27.54,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.19,26,25.62,N/A,N/A +2012,7,2,0,30,101560,100410,99290,84.51,0,5.99,6.4,6.48,6.5200000000000005,6.53,6.54,6.53,6.53,6.5,136.4,136.64000000000001,136.75,136.86,136.98,137.1,137.23,137.36,137.67000000000002,27.580000000000002,27.2,27.02,26.82,26.63,26.44,26.240000000000002,26.05,25.68,N/A,N/A +2012,7,2,1,30,101560,100410,99300,86,0,6.32,6.8,6.9,6.95,6.99,7.01,7.0200000000000005,7.0200000000000005,7.03,141.28,141.48,141.57,141.66,141.75,141.84,141.93,142.02,142.23,27.61,27.23,27.05,26.84,26.650000000000002,26.46,26.27,26.080000000000002,25.7,N/A,N/A +2012,7,2,2,30,101540,100390,99280,86.5,0,7.29,7.890000000000001,8.01,8.08,8.120000000000001,8.14,8.16,8.17,8.18,144.81,144.88,144.95000000000002,145.02,145.07,145.13,145.18,145.24,145.35,27.740000000000002,27.35,27.17,26.97,26.77,26.580000000000002,26.38,26.2,25.82,N/A,N/A +2012,7,2,3,30,101550,100400,99290,87.92,0,7,7.55,7.67,7.72,7.75,7.76,7.76,7.76,7.73,143.16,143.43,143.63,143.85,144.07,144.28,144.51,144.74,145.24,27.7,27.310000000000002,27.12,26.91,26.72,26.52,26.330000000000002,26.14,25.75,N/A,N/A +2012,7,2,4,30,101550,100410,99300,85.15,0,6.71,7.26,7.38,7.44,7.49,7.5200000000000005,7.54,7.55,7.57,148,148.17000000000002,148.29,148.42000000000002,148.54,148.66,148.79,148.91,149.18,28,27.63,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.1,N/A,N/A +2012,7,2,5,30,101560,100420,99300,86.52,0,6.5200000000000005,7.04,7.16,7.23,7.2700000000000005,7.3,7.32,7.33,7.3500000000000005,158.67000000000002,158.94,159.05,159.17000000000002,159.28,159.38,159.49,159.6,159.83,28.04,27.68,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A +2012,7,2,6,30,101580,100430,99320,84.91,0,6.32,6.82,6.92,6.96,6.99,7,7.01,7.01,7.01,160.76,160.77,160.95000000000002,161.18,161.43,161.69,162,162.32,163.12,28.12,27.77,27.6,27.41,27.22,27.03,26.85,26.67,26.310000000000002,N/A,N/A +2012,7,2,7,30,101630,100480,99370,86.03,0,6.16,6.68,6.8,6.87,6.92,6.95,6.98,7,7.03,160.43,161.07,161.32,161.54,161.73,161.89000000000001,162.04,162.18,162.44,28.14,27.79,27.62,27.42,27.23,27.04,26.85,26.67,26.29,N/A,N/A +2012,7,2,8,30,101630,100480,99370,85.75,0,5.87,6.3500000000000005,6.45,6.51,6.54,6.5600000000000005,6.57,6.58,6.59,163.33,163.75,163.97,164.23,164.48,164.72,164.98,165.22,165.74,28.14,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A +2012,7,2,9,30,101680,100530,99420,84.28,0,5.26,5.66,5.73,5.76,5.79,5.8,5.8,5.8,5.8,158.88,159.33,159.68,160.04,160.39000000000001,160.73,161.08,161.42000000000002,162.14000000000001,28.240000000000002,27.91,27.740000000000002,27.54,27.35,27.17,26.97,26.79,26.42,N/A,N/A +2012,7,2,10,30,101710,100560,99450,84.98,0,4.72,5.12,5.21,5.2700000000000005,5.32,5.36,5.4,5.43,5.5200000000000005,152.92000000000002,153.36,153.65,153.93,154.21,154.48,154.79,155.08,155.82,28.13,27.8,27.64,27.45,27.27,27.09,26.91,26.740000000000002,26.400000000000002,N/A,N/A +2012,7,2,11,30,101770,100620,99510,85.79,0,4.6000000000000005,4.94,5.0200000000000005,5.07,5.11,5.13,5.15,5.17,5.2,153.13,153.86,154.26,154.67000000000002,155.05,155.42000000000002,155.8,156.15,156.9,28.17,27.830000000000002,27.66,27.46,27.27,27.080000000000002,26.89,26.7,26.32,N/A,N/A +2012,7,2,12,30,101800,100650,99540,85.78,0,5.15,5.55,5.63,5.67,5.69,5.7,5.71,5.71,5.7,166.58,166.39000000000001,166.34,166.31,166.28,166.27,166.25,166.23,166.21,28.27,27.94,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A +2012,7,2,13,30,101830,100680,99570,86.99,0,5.23,5.62,5.69,5.73,5.75,5.76,5.76,5.76,5.76,156.19,156.58,156.78,156.96,157.11,157.26,157.41,157.55,157.86,28.150000000000002,27.82,27.64,27.44,27.25,27.07,26.87,26.69,26.310000000000002,N/A,N/A +2012,7,2,14,30,101870,100720,99610,85.76,0,4.38,4.73,4.8100000000000005,4.86,4.9,4.93,4.96,4.97,5.01,153.45000000000002,153.28,153.32,153.37,153.41,153.45000000000002,153.49,153.54,153.64000000000001,28.240000000000002,27.900000000000002,27.73,27.54,27.35,27.150000000000002,26.96,26.77,26.39,N/A,N/A +2012,7,2,15,30,101880,100730,99620,85.93,0,4.97,5.29,5.3500000000000005,5.37,5.38,5.38,5.37,5.37,5.3500000000000005,162.12,162.09,162.03,161.97,161.91,161.84,161.78,161.72,161.58,28.26,27.92,27.75,27.55,27.36,27.18,26.98,26.8,26.42,N/A,N/A +2012,7,2,16,30,101890,100740,99620,84.94,0,6.15,6.6000000000000005,6.68,6.71,6.73,6.74,6.74,6.74,6.72,147.69,147.81,147.88,147.94,148,148.05,148.11,148.16,148.3,28.26,27.92,27.75,27.55,27.36,27.18,26.990000000000002,26.810000000000002,26.44,N/A,N/A +2012,7,2,17,30,101840,100690,99580,87.18,0,5.75,6.18,6.2700000000000005,6.32,6.3500000000000005,6.37,6.38,6.38,6.38,148.55,148.74,148.89000000000001,149.05,149.20000000000002,149.34,149.48,149.62,149.91,28.2,27.84,27.67,27.46,27.28,27.080000000000002,26.89,26.7,26.32,N/A,N/A +2012,7,2,18,30,101820,100670,99560,83.74,0,5.5,5.87,5.94,5.96,5.97,5.97,5.96,5.95,5.91,160.12,160.19,160.22,160.27,160.33,160.38,160.44,160.5,160.61,28.19,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,7,2,19,30,101800,100650,99540,83.21000000000001,0,4.99,5.32,5.37,5.39,5.4,5.4,5.39,5.39,5.36,155.59,155.63,155.74,155.85,155.96,156.05,156.16,156.25,156.47,28.16,27.8,27.62,27.42,27.23,27.04,26.85,26.66,26.28,N/A,N/A +2012,7,2,20,30,101770,100620,99510,81.91,0,4.76,5.08,5.13,5.15,5.16,5.16,5.16,5.15,5.14,151.32,151.59,151.78,151.96,152.13,152.29,152.46,152.62,152.95000000000002,28.17,27.810000000000002,27.64,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A +2012,7,2,21,30,101780,100630,99520,79.15,0,4.28,4.5600000000000005,4.62,4.65,4.67,4.69,4.7,4.71,4.73,157.73,157.57,157.5,157.44,157.38,157.32,157.27,157.21,157.1,28.26,27.91,27.740000000000002,27.54,27.35,27.16,26.96,26.78,26.400000000000002,N/A,N/A +2012,7,2,22,30,101710,100560,99450,81.11,0,5.11,5.47,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,5.6000000000000005,161.33,160.99,160.86,160.71,160.59,160.47,160.33,160.21,159.99,28.150000000000002,27.8,27.62,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A +2012,7,2,23,30,101730,100580,99470,84.37,0,5.62,6.08,6.17,6.22,6.25,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.2700000000000005,158.05,158.49,158.75,159.01,159.26,159.5,159.75,159.98,160.48,28.11,27.77,27.59,27.39,27.2,27.01,26.810000000000002,26.63,26.240000000000002,N/A,N/A +2012,7,3,0,30,101710,100560,99440,81.36,0,5.04,5.42,5.5,5.54,5.5600000000000005,5.58,5.6000000000000005,5.61,5.62,165.96,165.92000000000002,165.91,165.89000000000001,165.86,165.84,165.81,165.78,165.73,28.11,27.77,27.6,27.400000000000002,27.21,27.02,26.82,26.64,26.26,N/A,N/A +2012,7,3,1,30,101650,100500,99380,83,0,5.48,5.86,5.94,5.97,5.99,6,6,6,5.99,160.78,160.85,160.88,160.92000000000002,160.97,161.02,161.08,161.13,161.25,27.900000000000002,27.55,27.37,27.17,26.98,26.79,26.6,26.42,26.03,N/A,N/A +2012,7,3,2,30,101660,100510,99400,84.15,0,5.9,6.37,6.46,6.51,6.55,6.57,6.58,6.59,6.6000000000000005,157.51,157.37,157.27,157.16,157.05,156.96,156.85,156.74,156.52,27.82,27.46,27.28,27.07,26.89,26.69,26.490000000000002,26.310000000000002,25.92,N/A,N/A +2012,7,3,3,30,101670,100520,99410,86.51,0,6.43,7.03,7.16,7.24,7.3,7.34,7.37,7.4,7.43,169.18,168.93,168.79,168.66,168.54,168.43,168.32,168.21,168.01,27.75,27.38,27.2,27,26.8,26.61,26.42,26.23,25.84,N/A,N/A +2012,7,3,4,30,101660,100510,99400,82.28,0,6.19,6.67,6.78,6.83,6.87,6.890000000000001,6.91,6.92,6.94,171.67000000000002,171.25,171.06,170.88,170.73,170.6,170.46,170.34,170.08,27.73,27.37,27.19,26.990000000000002,26.8,26.6,26.41,26.22,25.84,N/A,N/A +2012,7,3,5,30,101680,100530,99420,80.8,0,6.42,6.9,7,7.04,7.07,7.08,7.08,7.09,7.09,179.37,178.56,178.03,177.49,177.01,176.54,176.07,175.62,174.70000000000002,27.95,27.6,27.42,27.22,27.03,26.85,26.650000000000002,26.47,26.09,N/A,N/A +2012,7,3,6,30,101670,100520,99410,83.9,0,6.34,6.86,6.99,7.0600000000000005,7.11,7.15,7.17,7.2,7.23,177.3,177.17000000000002,177.14000000000001,177.11,177.07,177.04,177,176.97,176.88,27.68,27.310000000000002,27.14,26.93,26.740000000000002,26.55,26.35,26.16,25.78,N/A,N/A +2012,7,3,7,30,101680,100530,99420,77.68,0,6.44,6.95,7.07,7.140000000000001,7.19,7.23,7.26,7.29,7.3500000000000005,183.09,182.68,182.37,182.04,181.73,181.43,181.13,180.85,180.26,27.990000000000002,27.650000000000002,27.48,27.29,27.1,26.92,26.73,26.55,26.18,N/A,N/A +2012,7,3,8,30,101720,100570,99450,78.63,0,5.26,5.68,5.7700000000000005,5.83,5.87,5.91,5.94,5.97,6.0200000000000005,188.81,188.22,187.9,187.58,187.27,186.97,186.65,186.35,185.70000000000002,27.92,27.57,27.400000000000002,27.21,27.03,26.84,26.650000000000002,26.48,26.11,N/A,N/A +2012,7,3,9,30,101740,100590,99470,77.43,0,5.6000000000000005,6.09,6.2,6.28,6.33,6.38,6.41,6.44,6.49,178.45000000000002,178.17000000000002,178.07,177.98,177.9,177.82,177.75,177.69,177.56,27.93,27.580000000000002,27.400000000000002,27.21,27.01,26.82,26.63,26.44,26.05,N/A,N/A +2012,7,3,10,30,101750,100590,99480,79.95,0,5.8500000000000005,6.32,6.41,6.47,6.5,6.5200000000000005,6.54,6.55,6.5600000000000005,179.71,179.63,179.58,179.52,179.46,179.41,179.35,179.29,179.18,27.75,27.39,27.22,27.02,26.82,26.63,26.43,26.25,25.86,N/A,N/A +2012,7,3,11,30,101750,100600,99480,76.93,0,4.95,5.33,5.42,5.48,5.53,5.5600000000000005,5.59,5.61,5.65,179.79,179.57,179.5,179.45000000000002,179.4,179.37,179.35,179.32,179.32,27.740000000000002,27.39,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A +2012,7,3,12,30,101790,100640,99530,72.04,0,5.04,5.42,5.51,5.5600000000000005,5.6000000000000005,5.63,5.66,5.68,5.71,186.58,186.38,186.27,186.16,186.06,185.97,185.88,185.8,185.63,27.96,27.63,27.46,27.26,27.07,26.88,26.68,26.5,26.12,N/A,N/A +2012,7,3,13,30,101800,100640,99530,77.11,0,4.67,4.91,4.93,4.92,4.9,4.87,4.84,4.8100000000000005,4.75,176.11,176.36,176.57,176.79,177,177.20000000000002,177.42000000000002,177.62,178.06,27.68,27.330000000000002,27.150000000000002,26.96,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A +2012,7,3,14,30,101820,100660,99550,69.66,0,3.27,3.52,3.59,3.64,3.68,3.72,3.7600000000000002,3.79,3.86,178.59,178.16,177.97,177.81,177.68,177.57,177.47,177.39000000000001,177.24,27.900000000000002,27.57,27.400000000000002,27.21,27.02,26.830000000000002,26.63,26.45,26.07,N/A,N/A +2012,7,3,15,30,101830,100680,99560,68.22,0,3.48,3.65,3.67,3.68,3.68,3.68,3.68,3.68,3.68,173.31,172.98,172.71,172.41,172.12,171.84,171.53,171.24,170.6,28.080000000000002,27.75,27.580000000000002,27.39,27.2,27.02,26.830000000000002,26.650000000000002,26.27,N/A,N/A +2012,7,3,16,30,101820,100670,99550,68.25,0,3.9,4.03,4.01,3.97,3.93,3.89,3.85,3.81,3.71,167.3,167.48,167.56,167.63,167.71,167.77,167.84,167.9,168.05,28.060000000000002,27.72,27.55,27.35,27.16,26.97,26.78,26.59,26.21,N/A,N/A +2012,7,3,17,30,101810,100650,99540,67.71000000000001,0,4.09,4.29,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.28,4.25,168.98,169.11,169.21,169.32,169.42000000000002,169.52,169.62,169.71,169.9,28.17,27.82,27.650000000000002,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A +2012,7,3,18,30,101800,100640,99530,66.89,0,4.2700000000000005,4.5,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.51,4.5,4.49,4.46,160.83,161.64000000000001,162.13,162.61,163.04,163.43,163.84,164.22,164.97,28.34,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A +2012,7,3,19,30,101760,100610,99490,72.04,0,3.9,4.14,4.19,4.22,4.24,4.25,4.26,4.2700000000000005,4.2700000000000005,162.83,162.84,162.82,162.78,162.74,162.70000000000002,162.66,162.61,162.53,28.17,27.810000000000002,27.63,27.43,27.240000000000002,27.05,26.85,26.66,26.27,N/A,N/A +2012,7,3,20,30,101720,100570,99450,63.58,0,4.41,4.7,4.75,4.78,4.79,4.8100000000000005,4.82,4.82,4.82,161.37,161.42000000000002,161.4,161.37,161.36,161.35,161.36,161.36,161.41,28.580000000000002,28.26,28.080000000000002,27.89,27.7,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,3,21,30,101650,100500,99390,62.61,0,4.74,5.12,5.2,5.24,5.2700000000000005,5.29,5.3100000000000005,5.32,5.33,163.35,163.1,163.03,162.96,162.9,162.84,162.79,162.75,162.68,28.66,28.35,28.18,27.98,27.79,27.61,27.41,27.23,26.84,N/A,N/A +2012,7,3,22,30,101620,100470,99360,64.65,0,4.66,5.03,5.1000000000000005,5.14,5.17,5.19,5.2,5.22,5.24,172.55,172.51,172.44,172.38,172.31,172.25,172.19,172.14000000000001,172.02,28.53,28.23,28.060000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A +2012,7,3,23,30,101560,100420,99300,71.5,0,5.25,5.65,5.73,5.76,5.79,5.8,5.8100000000000005,5.82,5.82,173.13,173.06,173.07,173.1,173.13,173.17000000000002,173.20000000000002,173.24,173.32,28.26,27.93,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A +2012,7,4,0,30,101530,100380,99270,72.55,0,5.09,5.45,5.5200000000000005,5.55,5.57,5.58,5.58,5.58,5.58,169.4,169.61,169.79,169.95000000000002,170.08,170.19,170.31,170.43,170.63,28.01,27.68,27.51,27.32,27.13,26.94,26.75,26.560000000000002,26.19,N/A,N/A +2012,7,4,1,30,101530,100380,99270,74.41,0,4.93,5.28,5.34,5.37,5.39,5.39,5.4,5.4,5.39,167.58,167.76,167.81,167.87,167.91,167.96,168.02,168.06,168.16,27.830000000000002,27.490000000000002,27.310000000000002,27.11,26.92,26.73,26.53,26.35,25.96,N/A,N/A +2012,7,4,2,30,101530,100380,99270,74.11,0,5.46,5.8500000000000005,5.92,5.95,5.97,5.98,5.99,5.99,5.99,159.49,159.55,159.6,159.66,159.71,159.76,159.81,159.87,159.99,27.8,27.46,27.28,27.09,26.900000000000002,26.71,26.52,26.34,25.96,N/A,N/A +2012,7,4,3,30,101540,100390,99280,71.96000000000001,0,5.41,5.84,5.93,5.98,6.01,6.03,6.04,6.05,6.04,168.01,167.89000000000001,167.88,167.87,167.85,167.84,167.83,167.81,167.78,27.88,27.54,27.36,27.17,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A +2012,7,4,4,30,101540,100390,99270,68.15,0,5.91,6.38,6.49,6.5600000000000005,6.6000000000000005,6.640000000000001,6.67,6.69,6.72,170.94,171.02,171.01,170.99,170.97,170.95000000000002,170.93,170.91,170.88,27.98,27.650000000000002,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.12,N/A,N/A +2012,7,4,5,30,101560,100410,99290,71.36,0,5.64,6.09,6.2,6.28,6.34,6.390000000000001,6.44,6.48,6.5600000000000005,168.69,168.77,168.78,168.79,168.79,168.79,168.78,168.78,168.76,27.86,27.53,27.36,27.16,26.97,26.79,26.6,26.42,26.04,N/A,N/A +2012,7,4,6,30,101610,100460,99350,78.25,0,6.54,7.03,7.12,7.15,7.17,7.17,7.15,7.140000000000001,7.09,164.25,164.45000000000002,164.5,164.53,164.54,164.55,164.54,164.53,164.49,27.650000000000002,27.28,27.1,26.900000000000002,26.71,26.51,26.310000000000002,26.13,25.740000000000002,N/A,N/A +2012,7,4,7,30,101620,100470,99350,79.45,0,6.41,6.92,7.03,7.09,7.13,7.15,7.17,7.18,7.19,173.39000000000001,173.33,173.27,173.21,173.14000000000001,173.08,173.02,172.96,172.83,27.64,27.26,27.080000000000002,26.88,26.69,26.5,26.3,26.12,25.73,N/A,N/A +2012,7,4,8,30,101610,100450,99340,78.47,0,6.68,7.21,7.3,7.3500000000000005,7.37,7.38,7.38,7.38,7.3500000000000005,165.45000000000002,165.43,165.43,165.42000000000002,165.42000000000002,165.42000000000002,165.42000000000002,165.42000000000002,165.41,27.77,27.39,27.21,27.01,26.82,26.63,26.43,26.240000000000002,25.85,N/A,N/A +2012,7,4,9,30,101630,100480,99370,71.33,0,5.89,6.41,6.54,6.640000000000001,6.71,6.7700000000000005,6.82,6.87,6.96,176.51,176.3,176.20000000000002,176.11,176.02,175.95000000000002,175.87,175.81,175.69,28.150000000000002,27.810000000000002,27.64,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A +2012,7,4,10,30,101660,100510,99390,72.55,0,6.19,6.68,6.8,6.86,6.91,6.95,6.97,7,7.03,171.53,171.61,171.62,171.63,171.62,171.62,171.61,171.6,171.58,28.19,27.85,27.68,27.48,27.29,27.1,26.91,26.72,26.34,N/A,N/A +2012,7,4,11,30,101660,100510,99400,75.29,0,5.09,5.45,5.53,5.58,5.61,5.64,5.66,5.67,5.69,176.4,176.54,176.65,176.76,176.87,176.97,177.07,177.17000000000002,177.37,27.97,27.63,27.46,27.26,27.07,26.88,26.69,26.5,26.13,N/A,N/A +2012,7,4,12,30,101670,100520,99410,81.73,0,4.69,5.07,5.15,5.22,5.26,5.29,5.32,5.34,5.37,170.37,169.91,169.82,169.74,169.69,169.65,169.62,169.6,169.56,27.580000000000002,27.21,27.03,26.82,26.63,26.43,26.23,26.04,25.66,N/A,N/A +2012,7,4,13,30,101690,100540,99420,80.61,0,4.6000000000000005,4.93,5.01,5.0600000000000005,5.09,5.12,5.15,5.17,5.21,168.64000000000001,168.29,168.13,167.98,167.85,167.74,167.63,167.54,167.35,27.67,27.310000000000002,27.13,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A +2012,7,4,14,30,101730,100570,99460,81.29,0,5.21,5.51,5.5600000000000005,5.57,5.57,5.57,5.5600000000000005,5.55,5.51,155.8,155.94,156.06,156.18,156.28,156.38,156.49,156.59,156.8,27.78,27.41,27.23,27.03,26.84,26.650000000000002,26.45,26.26,25.88,N/A,N/A +2012,7,4,15,30,101730,100580,99460,79.78,0,4.8100000000000005,5.16,5.24,5.29,5.33,5.36,5.39,5.41,5.44,155.96,156.32,156.52,156.70000000000002,156.86,157.02,157.16,157.29,157.55,27.93,27.560000000000002,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A +2012,7,4,16,30,101730,100580,99470,78.9,0,4.4,4.65,4.69,4.7,4.71,4.71,4.7,4.7,4.68,153.03,153.26,153.45000000000002,153.65,153.86,154.08,154.3,154.52,155.02,28.07,27.71,27.54,27.34,27.14,26.96,26.76,26.57,26.19,N/A,N/A +2012,7,4,17,30,101740,100590,99480,78.33,0,4.12,4.36,4.4,4.42,4.43,4.43,4.43,4.43,4.42,138.65,138.73,138.88,139.04,139.20000000000002,139.37,139.54,139.70000000000002,140.08,28.16,27.810000000000002,27.64,27.43,27.240000000000002,27.05,26.85,26.67,26.29,N/A,N/A +2012,7,4,18,30,101720,100570,99460,79.79,0,4.7700000000000005,5.11,5.2,5.25,5.29,5.32,5.3500000000000005,5.37,5.42,151.58,151.8,151.91,152.05,152.18,152.32,152.47,152.62,152.91,28.2,27.84,27.67,27.46,27.28,27.080000000000002,26.89,26.7,26.32,N/A,N/A +2012,7,4,19,30,101670,100520,99410,81.63,0,6.21,6.68,6.78,6.82,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,136.73,137.21,137.42000000000002,137.6,137.76,137.92000000000002,138.07,138.22,138.51,28.23,27.87,27.69,27.490000000000002,27.3,27.11,26.91,26.73,26.34,N/A,N/A +2012,7,4,20,30,101660,100510,99400,81.17,0,5.8,6.26,6.36,6.42,6.46,6.5,6.5200000000000005,6.54,6.57,139.45000000000002,139.37,139.47,139.6,139.73,139.86,140,140.13,140.44,28.29,27.93,27.76,27.560000000000002,27.37,27.18,26.98,26.8,26.42,N/A,N/A +2012,7,4,21,30,101620,100470,99360,74.86,0,5.62,6.04,6.12,6.16,6.19,6.2,6.21,6.21,6.22,166.98,167.11,167.18,167.24,167.29,167.34,167.4,167.44,167.55,28.51,28.18,28.01,27.810000000000002,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A +2012,7,4,22,30,101650,100500,99390,81.10000000000001,0,5.23,5.61,5.7,5.74,5.7700000000000005,5.8,5.8100000000000005,5.82,5.84,179.20000000000002,179.34,179.35,179.38,179.41,179.45000000000002,179.5,179.54,179.64000000000001,28.27,27.92,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A +2012,7,4,23,30,101610,100460,99350,80.02,0,5.21,5.57,5.63,5.66,5.67,5.67,5.67,5.66,5.64,186.46,186.22,186.20000000000002,186.20000000000002,186.19,186.19,186.19,186.18,186.19,28.330000000000002,27.990000000000002,27.82,27.61,27.43,27.23,27.04,26.85,26.47,N/A,N/A +2012,7,5,0,30,101550,100400,99290,81.01,0,5.22,5.59,5.66,5.69,5.71,5.72,5.73,5.73,5.73,171.97,172.44,172.75,173.04,173.28,173.51,173.73,173.94,174.34,28.21,27.86,27.68,27.490000000000002,27.29,27.1,26.91,26.72,26.34,N/A,N/A +2012,7,5,1,30,101520,100370,99260,83.53,0,4.7700000000000005,5.1000000000000005,5.17,5.22,5.25,5.2700000000000005,5.29,5.3,5.32,175.75,176.5,176.61,176.67000000000002,176.70000000000002,176.70000000000002,176.69,176.68,176.61,28.14,27.79,27.62,27.42,27.23,27.04,26.84,26.66,26.27,N/A,N/A +2012,7,5,2,30,101530,100390,99280,79.34,0,6.57,7.07,7.16,7.21,7.23,7.24,7.24,7.23,7.21,182.97,183.29,183.42000000000002,183.55,183.67000000000002,183.78,183.89000000000001,183.99,184.20000000000002,28.080000000000002,27.72,27.54,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A +2012,7,5,3,30,101560,100410,99300,76.01,0,5.33,5.73,5.82,5.86,5.89,5.91,5.92,5.93,5.94,190.53,190.61,190.65,190.67000000000002,190.68,190.68,190.68,190.68,190.67000000000002,28.14,27.8,27.62,27.43,27.23,27.04,26.85,26.66,26.27,N/A,N/A +2012,7,5,4,30,101560,100410,99300,77.41,0,5.29,5.65,5.71,5.74,5.75,5.76,5.75,5.75,5.73,179.13,179.44,179.59,179.72,179.83,179.93,180.03,180.12,180.31,28.01,27.650000000000002,27.48,27.28,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,7,5,5,30,101560,100420,99300,76.08,0,5.17,5.54,5.61,5.64,5.67,5.68,5.69,5.7,5.7,175.58,175.91,176.13,176.32,176.49,176.65,176.8,176.94,177.21,28,27.650000000000002,27.47,27.27,27.080000000000002,26.89,26.69,26.51,26.12,N/A,N/A +2012,7,5,6,30,101550,100400,99290,73.83,0,5.0200000000000005,5.38,5.46,5.5,5.53,5.55,5.57,5.58,5.61,178.1,177.93,177.88,177.85,177.81,177.79,177.76,177.74,177.71,27.990000000000002,27.64,27.46,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A +2012,7,5,7,30,101610,100460,99350,71.89,0,5.64,6.05,6.140000000000001,6.18,6.21,6.23,6.24,6.25,6.25,178.8,178.9,178.9,178.91,178.92000000000002,178.93,178.96,178.98,179.03,28.11,27.76,27.59,27.39,27.2,27.01,26.810000000000002,26.62,26.240000000000002,N/A,N/A +2012,7,5,8,30,101630,100480,99360,68.19,0,5.4,5.79,5.86,5.89,5.91,5.93,5.94,5.95,5.95,195.13,194.77,194.56,194.37,194.18,194.01,193.84,193.68,193.36,28.22,27.88,27.71,27.51,27.32,27.13,26.93,26.75,26.36,N/A,N/A +2012,7,5,9,30,101600,100450,99330,67.14,0,5.84,6.28,6.37,6.41,6.44,6.45,6.47,6.48,6.48,186.17000000000002,186.46,186.59,186.70000000000002,186.79,186.87,186.93,186.99,187.1,28.21,27.87,27.7,27.5,27.310000000000002,27.12,26.92,26.740000000000002,26.36,N/A,N/A +2012,7,5,10,30,101650,100500,99380,68.31,0,5.3,5.69,5.76,5.8,5.82,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,185.82,185.74,185.66,185.58,185.51,185.44,185.38,185.32,185.23,28.21,27.87,27.7,27.5,27.310000000000002,27.12,26.93,26.740000000000002,26.36,N/A,N/A +2012,7,5,11,30,101700,100550,99430,68.66,0,4.83,5.15,5.21,5.23,5.24,5.24,5.24,5.23,5.22,189.65,190.01,190.17000000000002,190.32,190.45000000000002,190.56,190.67000000000002,190.77,190.97,28.150000000000002,27.810000000000002,27.63,27.44,27.25,27.060000000000002,26.86,26.67,26.29,N/A,N/A +2012,7,5,12,30,101710,100560,99440,70.09,0,4.37,4.66,4.72,4.76,4.79,4.82,4.84,4.86,4.9,190.47,190.9,191.03,191.11,191.17000000000002,191.23000000000002,191.27,191.29,191.33,27.95,27.6,27.42,27.22,27.03,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,7,5,13,30,101760,100610,99490,75.88,0,4.16,4.42,4.47,4.5,4.51,4.53,4.54,4.54,4.55,197.57,196.91,196.62,196.35,196.12,195.9,195.70000000000002,195.51,195.15,27.740000000000002,27.39,27.21,27,26.810000000000002,26.62,26.42,26.240000000000002,25.85,N/A,N/A +2012,7,5,14,30,101780,100630,99510,76.28,0,3.7800000000000002,3.98,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,3.99,197.19,196.72,196.42000000000002,196.12,195.85,195.6,195.34,195.11,194.61,27.76,27.400000000000002,27.22,27.02,26.830000000000002,26.64,26.44,26.26,25.87,N/A,N/A +2012,7,5,15,30,101800,100640,99530,71.79,0,3.29,3.43,3.45,3.45,3.44,3.44,3.43,3.42,3.4,189.56,189.75,189.89000000000001,190.01,190.12,190.22,190.3,190.37,190.51,27.94,27.59,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.060000000000002,N/A,N/A +2012,7,5,16,30,101800,100650,99530,70.5,0,2.35,2.45,2.47,2.48,2.49,2.49,2.5,2.5,2.5,192.53,192.31,192.08,191.84,191.62,191.42000000000002,191.20000000000002,191,190.57,28.04,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.17,N/A,N/A +2012,7,5,17,30,101790,100630,99520,69.8,0,3.0500000000000003,3.2,3.21,3.22,3.23,3.23,3.23,3.23,3.22,176.66,176.96,177.08,177.20000000000002,177.32,177.43,177.57,177.69,177.95000000000002,28.11,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A +2012,7,5,18,30,101760,100600,99490,67.8,0,3.5,3.69,3.72,3.74,3.7600000000000002,3.77,3.7800000000000002,3.7800000000000002,3.8000000000000003,181.21,181.25,181.28,181.33,181.39000000000001,181.45000000000002,181.52,181.58,181.70000000000002,28.310000000000002,27.95,27.78,27.580000000000002,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A +2012,7,5,19,30,101750,100590,99480,69.58,0,3.79,4.01,4.04,4.07,4.08,4.08,4.09,4.09,4.09,183.38,182.5,182.08,181.68,181.32,180.99,180.66,180.36,179.76,28.32,27.95,27.77,27.57,27.38,27.18,26.990000000000002,26.8,26.41,N/A,N/A +2012,7,5,20,30,101690,100540,99430,66.82000000000001,0,4.38,4.61,4.63,4.63,4.62,4.61,4.6000000000000005,4.58,4.54,177.89000000000001,178.04,178.20000000000002,178.35,178.48,178.6,178.73,178.85,179.09,28.45,28.09,27.92,27.72,27.53,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,7,5,21,30,101660,100510,99400,67.41,0,4.26,4.57,4.63,4.66,4.69,4.72,4.73,4.75,4.78,182.58,182.41,182.29,182.16,182.05,181.95000000000002,181.85,181.75,181.56,28.43,28.09,27.91,27.72,27.52,27.330000000000002,27.14,26.95,26.560000000000002,N/A,N/A +2012,7,5,22,30,101640,100490,99380,68.08,0,4.45,4.75,4.79,4.82,4.83,4.83,4.83,4.83,4.82,176.42000000000002,176.46,176.45000000000002,176.42000000000002,176.41,176.4,176.38,176.37,176.34,28.38,28.04,27.87,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A +2012,7,5,23,30,101610,100460,99350,65.77,0,5.05,5.4,5.46,5.5,5.5200000000000005,5.53,5.54,5.55,5.5600000000000005,182.28,182.35,182.36,182.37,182.38,182.4,182.41,182.42000000000002,182.44,28.42,28.09,27.93,27.73,27.54,27.36,27.16,26.98,26.6,N/A,N/A +2012,7,6,0,30,101600,100450,99330,68.37,0,4.83,5.19,5.26,5.29,5.32,5.33,5.3500000000000005,5.3500000000000005,5.36,176.17000000000002,176.13,176.15,176.18,176.20000000000002,176.22,176.25,176.27,176.31,28.3,27.96,27.79,27.59,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,7,6,1,30,101550,100400,99290,65.77,0,5.5200000000000005,5.88,5.94,5.95,5.96,5.95,5.95,5.93,5.9,177.61,178.02,178.31,178.6,178.88,179.14000000000001,179.42000000000002,179.68,180.23,28.28,27.95,27.77,27.57,27.39,27.19,27,26.810000000000002,26.43,N/A,N/A +2012,7,6,2,30,101580,100420,99310,66.97,0,5.34,5.71,5.7700000000000005,5.79,5.8,5.8,5.79,5.78,5.75,183.26,183.33,183.34,183.35,183.35,183.35,183.35,183.35,183.34,28.240000000000002,27.900000000000002,27.73,27.54,27.34,27.150000000000002,26.96,26.77,26.38,N/A,N/A +2012,7,6,3,30,101580,100430,99320,62.22,0,4.99,5.37,5.44,5.49,5.5200000000000005,5.55,5.57,5.58,5.61,182.75,182.61,182.51,182.43,182.36,182.29,182.22,182.17000000000002,182.05,28.36,28.03,27.86,27.67,27.48,27.29,27.09,26.91,26.53,N/A,N/A +2012,7,6,4,30,101590,100430,99320,67.27,0,5.41,5.7700000000000005,5.83,5.8500000000000005,5.86,5.86,5.84,5.83,5.8,177.93,177.95000000000002,177.95000000000002,177.95000000000002,177.94,177.93,177.92000000000002,177.91,177.89000000000001,28.18,27.84,27.67,27.47,27.28,27.09,26.89,26.71,26.32,N/A,N/A +2012,7,6,5,30,101590,100440,99320,59.300000000000004,0,4.66,5.04,5.13,5.19,5.24,5.28,5.3100000000000005,5.34,5.4,188.15,187.77,187.53,187.28,187.05,186.83,186.6,186.38,185.9,28.490000000000002,28.17,28,27.810000000000002,27.62,27.43,27.23,27.05,26.67,N/A,N/A +2012,7,6,6,30,101610,100460,99350,60.57,0,6.16,6.5600000000000005,6.63,6.640000000000001,6.640000000000001,6.640000000000001,6.63,6.61,6.58,186.08,186.31,186.41,186.52,186.6,186.69,186.78,186.87,187.08,28.44,28.080000000000002,27.91,27.71,27.51,27.32,27.12,26.94,26.55,N/A,N/A +2012,7,6,7,30,101610,100460,99340,63,0,4.95,5.29,5.34,5.37,5.39,5.4,5.4,5.4,5.4,192.38,192.29,192.31,192.33,192.37,192.4,192.43,192.46,192.52,28.46,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,7,6,8,30,101630,100470,99360,60.120000000000005,0,5.04,5.42,5.5,5.54,5.58,5.6000000000000005,5.62,5.64,5.66,195.95000000000002,195.53,195.32,195.13,194.96,194.79,194.64000000000001,194.5,194.21,28.63,28.29,28.11,27.91,27.72,27.54,27.34,27.16,26.77,N/A,N/A +2012,7,6,9,30,101650,100490,99380,58.09,0,4.19,4.46,4.51,4.54,4.5600000000000005,4.57,4.59,4.6000000000000005,4.61,205.62,205,204.70000000000002,204.43,204.19,203.96,203.74,203.53,203.12,28.71,28.37,28.2,28.01,27.810000000000002,27.62,27.43,27.240000000000002,26.85,N/A,N/A +2012,7,6,10,30,101680,100530,99420,55.92,0,3.92,4.17,4.21,4.23,4.25,4.25,4.26,4.2700000000000005,4.2700000000000005,206.13,206.17000000000002,206.08,206.01,205.93,205.85,205.78,205.71,205.57,28.8,28.47,28.3,28.1,27.91,27.72,27.53,27.34,26.96,N/A,N/A +2012,7,6,11,30,101670,100520,99410,55.99,0,3.61,3.86,3.92,3.95,3.98,4,4.0200000000000005,4.03,4.07,214.37,214.1,213.99,213.9,213.81,213.73000000000002,213.65,213.58,213.44,28.82,28.48,28.310000000000002,28.12,27.93,27.740000000000002,27.54,27.36,26.97,N/A,N/A +2012,7,6,12,30,101690,100540,99420,55.31,0,3.5700000000000003,3.8000000000000003,3.85,3.87,3.89,3.91,3.92,3.93,3.94,227.06,226.37,225.99,225.63,225.32,225.03,224.75,224.49,223.99,28.82,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.96,N/A,N/A +2012,7,6,13,30,101750,100590,99480,56.43,0,2.75,2.9,2.92,2.94,2.95,2.95,2.96,2.96,2.97,240.58,239.89000000000001,239.48000000000002,239.09,238.72,238.37,238.02,237.69,237.03,28.73,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.45,27.27,26.88,N/A,N/A +2012,7,6,14,30,101740,100590,99470,62.59,0,2.98,3.11,3.12,3.12,3.11,3.1,3.09,3.08,3.0500000000000003,238.38,238.9,239.22,239.54,239.83,240.11,240.38,240.64000000000001,241.16,28.490000000000002,28.14,27.97,27.77,27.57,27.39,27.19,27,26.61,N/A,N/A +2012,7,6,15,30,101780,100620,99510,60.14,0,2.29,2.38,2.39,2.38,2.38,2.37,2.37,2.36,2.34,232.24,232.49,232.79,233.07,233.33,233.59,233.86,234.1,234.61,28.580000000000002,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A +2012,7,6,16,30,101760,100610,99500,62.72,0,1.9100000000000001,2,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2,241.32,241.98000000000002,242.29,242.61,242.92000000000002,243.21,243.49,243.74,244.3,28.5,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27,26.61,N/A,N/A +2012,7,6,17,30,101770,100610,99500,58.68,0,1.53,1.59,1.61,1.62,1.62,1.6300000000000001,1.6400000000000001,1.6400000000000001,1.6600000000000001,229.39000000000001,230.19,230.59,230.95000000000002,231.23000000000002,231.48000000000002,231.71,231.91,232.20000000000002,28.66,28.310000000000002,28.13,27.93,27.740000000000002,27.55,27.36,27.18,26.79,N/A,N/A +2012,7,6,18,30,101730,100570,99460,60.36,0,2.42,2.5100000000000002,2.5,2.48,2.47,2.45,2.44,2.42,2.39,181.37,181.13,180.97,180.8,180.64000000000001,180.48,180.31,180.14000000000001,179.79,28.67,28.32,28.14,27.94,27.76,27.57,27.38,27.2,26.82,N/A,N/A +2012,7,6,19,30,101700,100550,99430,60.050000000000004,0,3.09,3.22,3.23,3.23,3.22,3.21,3.2,3.19,3.16,175.91,176.11,176.26,176.4,176.54,176.69,176.85,177,177.37,28.79,28.44,28.27,28.080000000000002,27.89,27.71,27.52,27.34,26.98,N/A,N/A +2012,7,6,20,30,101630,100480,99370,59.34,0,4.6000000000000005,4.83,4.84,4.82,4.79,4.76,4.72,4.68,4.57,191.63,191.69,191.76,191.85,191.94,192.04,192.14000000000001,192.24,192.52,28.95,28.62,28.45,28.26,28.080000000000002,27.900000000000002,27.71,27.54,27.18,N/A,N/A +2012,7,6,21,30,101630,100480,99360,56.410000000000004,0,4.61,4.8500000000000005,4.86,4.84,4.82,4.78,4.74,4.7,4.6000000000000005,189.23,189.36,189.48,189.61,189.75,189.88,190.03,190.17000000000002,190.49,29.18,28.87,28.7,28.51,28.330000000000002,28.150000000000002,27.96,27.78,27.42,N/A,N/A +2012,7,6,22,30,101590,100440,99330,59.81,0,3.7,3.94,3.97,3.99,4,4,4.01,4.01,4.01,198.55,198.47,198.48000000000002,198.5,198.55,198.61,198.69,198.77,199.06,29.1,28.8,28.64,28.46,28.28,28.11,27.93,27.75,27.41,N/A,N/A +2012,7,6,23,30,101580,100430,99320,55.550000000000004,0,4.15,4.43,4.45,4.46,4.46,4.45,4.44,4.43,4.39,194.71,194.56,194.5,194.41,194.33,194.23000000000002,194.12,194.02,193.77,29.330000000000002,29.04,28.87,28.68,28.5,28.32,28.13,27.95,27.580000000000002,N/A,N/A +2012,7,7,0,30,101510,100360,99250,56.21,0,4.67,5,5.04,5.05,5.0600000000000005,5.05,5.05,5.04,5.01,191.96,191.88,191.85,191.81,191.77,191.72,191.67000000000002,191.62,191.51,29.3,29,28.84,28.650000000000002,28.47,28.29,28.1,27.93,27.560000000000002,N/A,N/A +2012,7,7,1,30,101500,100350,99240,56.410000000000004,0,4.96,5.33,5.38,5.39,5.4,5.4,5.4,5.39,5.37,194.25,193.91,193.78,193.64000000000001,193.5,193.37,193.21,193.07,192.77,29.310000000000002,29.02,28.85,28.67,28.48,28.3,28.11,27.94,27.57,N/A,N/A +2012,7,7,2,30,101530,100390,99270,55.17,0,4.6000000000000005,4.9,4.92,4.91,4.9,4.88,4.8500000000000005,4.82,4.7700000000000005,193.6,192.71,192.16,191.6,191.04,190.5,189.9,189.34,188.08,29.32,29.02,28.85,28.66,28.47,28.28,28.080000000000002,27.900000000000002,27.52,N/A,N/A +2012,7,7,3,30,101580,100430,99310,55.34,0,4.55,4.89,4.93,4.95,4.96,4.96,4.96,4.95,4.94,184.74,184.54,184.43,184.33,184.24,184.15,184.05,183.96,183.76,29.37,29.07,28.91,28.71,28.52,28.330000000000002,28.13,27.95,27.560000000000002,N/A,N/A +2012,7,7,4,30,101520,100370,99260,54.06,0,5.03,5.43,5.5,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.61,196.25,196.05,195.88,195.72,195.56,195.41,195.24,195.09,194.73000000000002,29.35,29.05,28.89,28.69,28.51,28.32,28.12,27.94,27.560000000000002,N/A,N/A +2012,7,7,5,30,101560,100410,99300,56.07,0,4.89,5.26,5.32,5.3500000000000005,5.37,5.38,5.38,5.39,5.39,202.81,202.5,202.31,202.11,201.91,201.73000000000002,201.52,201.32,200.89000000000001,29.240000000000002,28.93,28.77,28.57,28.38,28.2,28,27.82,27.44,N/A,N/A +2012,7,7,6,30,101590,100440,99330,59.74,0,4.96,5.28,5.32,5.33,5.34,5.33,5.33,5.32,5.29,205.14000000000001,205.72,206.07,206.42000000000002,206.74,207.05,207.37,207.66,208.27,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A +2012,7,7,7,30,101610,100460,99350,60.77,0,4.54,4.84,4.88,4.89,4.9,4.9,4.89,4.88,4.86,209.94,210.16,210.26,210.33,210.39000000000001,210.44,210.49,210.53,210.6,28.87,28.55,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A +2012,7,7,8,30,101610,100460,99350,62.730000000000004,0,4.92,5.2700000000000005,5.36,5.41,5.45,5.49,5.5200000000000005,5.55,5.6000000000000005,219.82,219.89000000000001,219.94,220,220.05,220.1,220.15,220.19,220.29,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.91,N/A,N/A +2012,7,7,9,30,101600,100450,99340,64.97,0,5.12,5.47,5.5200000000000005,5.54,5.55,5.55,5.55,5.55,5.53,234.14000000000001,233.68,233.42000000000002,233.13,232.87,232.62,232.36,232.12,231.62,28.62,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.740000000000002,N/A,N/A +2012,7,7,10,30,101630,100480,99370,69.62,0,4.5600000000000005,4.93,5.0200000000000005,5.09,5.15,5.19,5.23,5.2700000000000005,5.34,236.26,236.01,235.83,235.66,235.51,235.37,235.22,235.09,234.82,28.42,28.060000000000002,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,7,11,30,101650,100500,99390,69.4,0,5.57,5.91,5.96,5.97,5.98,5.98,5.97,5.96,5.94,232.02,232.32,232.52,232.71,232.89000000000001,233.05,233.21,233.35,233.63,28.5,28.14,27.97,27.77,27.57,27.39,27.19,27,26.62,N/A,N/A +2012,7,7,12,30,101650,100500,99390,75.57000000000001,0,4.76,5.12,5.2,5.25,5.28,5.3,5.32,5.33,5.34,224.16,224.69,225.07,225.45000000000002,225.8,226.14000000000001,226.47,226.78,227.41,28.26,27.89,27.71,27.51,27.32,27.12,26.92,26.740000000000002,26.35,N/A,N/A +2012,7,7,13,30,101660,100510,99390,70.22,0,4.92,5.26,5.32,5.36,5.39,5.41,5.42,5.44,5.46,260.98,260.52,260.19,259.87,259.59000000000003,259.32,259.07,258.85,258.39,28.53,28.17,28,27.8,27.61,27.42,27.23,27.04,26.66,N/A,N/A +2012,7,7,14,30,101690,100540,99430,76.37,0,4.61,4.83,4.8500000000000005,4.84,4.82,4.8,4.7700000000000005,4.75,4.69,282.63,281.49,280.91,280.31,279.75,279.2,278.63,278.09000000000003,276.95,28.1,27.73,27.55,27.35,27.17,26.98,26.78,26.6,26.22,N/A,N/A +2012,7,7,15,30,101700,100550,99430,75.03,0,4.17,4.38,4.4,4.41,4.4,4.4,4.39,4.38,4.3500000000000005,274.77,274.52,274.39,274.26,274.13,274.01,273.88,273.74,273.44,28.14,27.76,27.580000000000002,27.38,27.19,27,26.8,26.62,26.240000000000002,N/A,N/A +2012,7,7,16,30,101720,100560,99450,74.14,0,3.39,3.56,3.59,3.6,3.61,3.61,3.61,3.62,3.62,245.04,245.61,245.88,246.14000000000001,246.37,246.58,246.79,246.98000000000002,247.35,28.310000000000002,27.94,27.76,27.560000000000002,27.37,27.18,26.98,26.79,26.41,N/A,N/A +2012,7,7,17,30,101690,100540,99430,74.29,0,3.63,3.8200000000000003,3.85,3.86,3.88,3.88,3.89,3.89,3.9,209.23000000000002,209.68,209.99,210.31,210.61,210.93,211.27,211.61,212.47,28.36,27.990000000000002,27.810000000000002,27.62,27.43,27.25,27.05,26.87,26.51,N/A,N/A +2012,7,7,18,30,101690,100540,99430,73.91,0,2.94,3.06,3.08,3.08,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,184.07,184.54,184.9,185.27,185.63,185.97,186.36,186.74,187.6,28.57,28.21,28.04,27.84,27.650000000000002,27.46,27.27,27.09,26.72,N/A,N/A +2012,7,7,19,30,101640,100490,99380,69.81,0,4.53,4.8100000000000005,4.8500000000000005,4.86,4.87,4.87,4.87,4.87,4.8500000000000005,180.58,180.81,180.94,181.06,181.17000000000002,181.27,181.37,181.48,181.69,28.89,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A +2012,7,7,20,30,101590,100440,99330,67.85,0,5.38,5.73,5.79,5.82,5.83,5.84,5.84,5.84,5.82,179.83,180.07,180.20000000000002,180.34,180.49,180.64000000000001,180.8,180.96,181.31,28.97,28.62,28.45,28.26,28.07,27.88,27.68,27.5,27.13,N/A,N/A +2012,7,7,21,30,101530,100390,99280,72.96000000000001,0,6.13,6.5600000000000005,6.640000000000001,6.67,6.68,6.68,6.68,6.67,6.640000000000001,193.45000000000002,193.26,193.1,192.93,192.77,192.6,192.43,192.27,191.9,28.79,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,7,7,22,30,101530,100380,99270,75.85000000000001,0,6.82,7.38,7.49,7.55,7.58,7.61,7.62,7.62,7.62,197.62,197.64000000000001,197.62,197.59,197.56,197.54,197.51,197.48000000000002,197.42000000000002,28.73,28.37,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A +2012,7,7,23,30,101520,100370,99260,71.48,0,6.19,6.67,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.86,6.87,6.88,6.88,200.09,200.05,200.01,199.98000000000002,199.97,199.95000000000002,199.95000000000002,199.95000000000002,199.95000000000002,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.6,27.42,27.04,N/A,N/A +2012,7,8,0,30,101530,100380,99270,71.9,0,5.84,6.3,6.4,6.46,6.5,6.53,6.5600000000000005,6.57,6.6000000000000005,203.37,203.46,203.46,203.46,203.46,203.46,203.46,203.47,203.47,28.86,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A +2012,7,8,1,30,101560,100420,99310,74.61,0,6.05,6.51,6.6000000000000005,6.65,6.68,6.7,6.71,6.72,6.71,219.83,219.72,219.56,219.39000000000001,219.24,219.09,218.93,218.78,218.5,28.72,28.37,28.19,27.990000000000002,27.79,27.6,27.400000000000002,27.22,26.830000000000002,N/A,N/A +2012,7,8,2,30,101580,100430,99320,69.92,0,5.97,6.41,6.5,6.54,6.5600000000000005,6.58,6.59,6.59,6.59,214.61,214.70000000000002,214.87,215.05,215.21,215.37,215.54,215.69,216.01,28.84,28.5,28.32,28.12,27.93,27.740000000000002,27.55,27.36,26.98,N/A,N/A +2012,7,8,3,30,101550,100400,99290,70.10000000000001,0,6.49,7,7.1000000000000005,7.16,7.2,7.23,7.25,7.26,7.2700000000000005,210.45000000000002,210.3,210.27,210.24,210.20000000000002,210.17000000000002,210.13,210.1,210.02,28.78,28.43,28.25,28.05,27.86,27.67,27.47,27.29,26.900000000000002,N/A,N/A +2012,7,8,4,30,101570,100420,99310,66.98,0,6.41,6.92,7.03,7.08,7.12,7.140000000000001,7.16,7.17,7.19,205.73000000000002,205.82,205.89000000000001,205.96,206.01,206.05,206.1,206.15,206.23000000000002,28.87,28.53,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A +2012,7,8,5,30,101540,100390,99280,64.81,0,6.63,7.18,7.29,7.3500000000000005,7.390000000000001,7.42,7.43,7.45,7.46,203.88,204.53,204.78,205,205.19,205.35,205.49,205.63,205.88,28.92,28.580000000000002,28.400000000000002,28.21,28.01,27.830000000000002,27.63,27.44,27.05,N/A,N/A +2012,7,8,6,30,101580,100430,99320,60.88,0,6.3100000000000005,6.7700000000000005,6.84,6.87,6.890000000000001,6.9,6.9,6.9,6.88,212.96,212.76,212.65,212.54,212.44,212.34,212.25,212.15,211.98000000000002,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,7,8,7,30,101610,100460,99350,64.29,0,6.71,7.2700000000000005,7.390000000000001,7.46,7.5,7.53,7.55,7.57,7.59,204.13,204.37,204.46,204.51,204.56,204.59,204.61,204.63,204.65,28.900000000000002,28.560000000000002,28.38,28.19,27.990000000000002,27.8,27.61,27.42,27.03,N/A,N/A +2012,7,8,8,30,101640,100490,99380,59.980000000000004,0,6.82,7.34,7.43,7.46,7.48,7.49,7.48,7.48,7.45,200.89000000000001,201.08,201.17000000000002,201.24,201.29,201.34,201.39000000000001,201.43,201.5,29.03,28.69,28.52,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.18,N/A,N/A +2012,7,8,9,30,101630,100480,99370,59.99,0,6.2700000000000005,6.75,6.84,6.88,6.91,6.93,6.94,6.95,6.95,196.96,197.03,197.16,197.3,197.43,197.56,197.70000000000002,197.83,198.08,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.18,N/A,N/A +2012,7,8,10,30,101650,100500,99390,59.34,0,5.92,6.34,6.4,6.42,6.42,6.41,6.4,6.38,6.34,210.47,210.6,210.55,210.48000000000002,210.39000000000001,210.31,210.21,210.12,209.92000000000002,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.18,N/A,N/A +2012,7,8,11,30,101670,100520,99410,60,0,5.57,6,6.08,6.12,6.140000000000001,6.16,6.16,6.16,6.16,210.15,210.4,210.45000000000002,210.47,210.49,210.5,210.5,210.49,210.49,29.03,28.71,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.18,N/A,N/A +2012,7,8,12,30,101700,100550,99440,59.160000000000004,0,6.1000000000000005,6.55,6.62,6.65,6.67,6.67,6.67,6.67,6.65,214.06,214.09,214.12,214.17000000000002,214.21,214.25,214.29,214.32,214.4,29.09,28.76,28.59,28.39,28.2,28.01,27.82,27.63,27.240000000000002,N/A,N/A +2012,7,8,13,30,101710,100560,99450,54.32,0,4.26,4.65,4.73,4.79,4.84,4.88,4.92,4.95,5,212.08,212.43,212.64000000000001,212.82,212.98000000000002,213.11,213.25,213.37,213.6,29.28,28.96,28.79,28.6,28.400000000000002,28.22,28.02,27.830000000000002,27.45,N/A,N/A +2012,7,8,14,30,101740,100590,99470,53.9,0,4.43,4.73,4.79,4.82,4.8500000000000005,4.86,4.88,4.89,4.91,230.74,230.32,230.03,229.75,229.5,229.26,229.03,228.81,228.36,29.25,28.94,28.77,28.580000000000002,28.39,28.2,28,27.82,27.43,N/A,N/A +2012,7,8,15,30,101770,100620,99500,58.29,0,4.62,4.92,4.98,5.01,5.04,5.05,5.07,5.08,5.1000000000000005,219.97,219.77,219.65,219.54,219.43,219.32,219.23000000000002,219.13,218.96,29.01,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,7,8,16,30,101770,100620,99500,56.46,0,4.37,4.61,4.65,4.66,4.67,4.67,4.67,4.66,4.65,223.3,223.13,223.13,223.11,223.1,223.08,223.06,223.03,222.99,29.1,28.77,28.6,28.400000000000002,28.21,28.02,27.830000000000002,27.64,27.25,N/A,N/A +2012,7,8,17,30,101750,100600,99480,64.17,0,3.85,4.09,4.12,4.14,4.14,4.14,4.14,4.14,4.12,215.81,215.68,215.62,215.55,215.49,215.43,215.36,215.29,215.16,28.84,28.490000000000002,28.310000000000002,28.11,27.92,27.73,27.53,27.34,26.96,N/A,N/A +2012,7,8,18,30,101700,100550,99440,65.07000000000001,0,4.0200000000000005,4.21,4.22,4.21,4.19,4.17,4.15,4.13,4.07,202.17000000000002,201.73000000000002,201.47,201.17000000000002,200.87,200.59,200.28,199.98000000000002,199.32,28.830000000000002,28.47,28.29,28.09,27.900000000000002,27.71,27.5,27.32,26.93,N/A,N/A +2012,7,8,19,30,101680,100530,99420,67.15,0,4.5,4.76,4.8,4.82,4.82,4.82,4.82,4.82,4.8100000000000005,177.27,177.48,177.58,177.67000000000002,177.74,177.8,177.87,177.92000000000002,178.06,28.82,28.47,28.29,28.09,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A +2012,7,8,20,30,101640,100490,99380,66.17,0,4.55,4.84,4.9,4.93,4.95,4.97,4.97,4.98,5,172.37,172.64000000000001,172.86,173.11,173.35,173.61,173.9,174.17000000000002,174.84,28.87,28.54,28.37,28.18,27.990000000000002,27.810000000000002,27.62,27.44,27.07,N/A,N/A +2012,7,8,21,30,101600,100450,99340,70.12,0,5.32,5.76,5.86,5.92,5.97,6,6.03,6.05,6.08,175.17000000000002,176.3,176.73,177.11,177.43,177.70000000000002,177.96,178.19,178.62,28.84,28.48,28.3,28.1,27.900000000000002,27.72,27.52,27.330000000000002,26.94,N/A,N/A +2012,7,8,22,30,101530,100390,99280,75.31,0,6.26,6.72,6.8100000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.87,169.15,169.4,169.61,169.84,170.07,170.3,170.55,170.8,171.33,28.64,28.28,28.11,27.91,27.72,27.54,27.34,27.16,26.79,N/A,N/A +2012,7,8,23,30,101520,100370,99260,75.58,0,6.53,7.04,7.15,7.21,7.26,7.28,7.3,7.32,7.33,173.95000000000002,174.14000000000001,174.24,174.34,174.43,174.52,174.62,174.71,174.9,28.62,28.26,28.080000000000002,27.88,27.68,27.490000000000002,27.29,27.11,26.72,N/A,N/A +2012,7,9,0,30,101500,100350,99240,75.62,0,7.2,7.7700000000000005,7.9,7.96,8,8.03,8.05,8.07,8.08,179.1,179.1,179.11,179.14000000000001,179.17000000000002,179.21,179.25,179.29,179.37,28.6,28.23,28.060000000000002,27.86,27.66,27.47,27.28,27.1,26.72,N/A,N/A +2012,7,9,1,30,101470,100320,99210,73.04,0,7.3,7.88,7.99,8.040000000000001,8.07,8.08,8.08,8.08,8.05,177.31,177.42000000000002,177.56,177.69,177.82,177.95000000000002,178.07,178.19,178.45000000000002,28.62,28.25,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A +2012,7,9,2,30,101500,100350,99240,70.36,0,6.890000000000001,7.45,7.57,7.62,7.66,7.69,7.71,7.72,7.72,176.86,176.91,176.96,177.01,177.04,177.08,177.12,177.16,177.25,28.77,28.42,28.25,28.04,27.86,27.66,27.47,27.28,26.900000000000002,N/A,N/A +2012,7,9,3,30,101520,100370,99260,70.58,0,7.17,7.7700000000000005,7.91,7.98,8.03,8.06,8.09,8.11,8.13,178.9,178.76,178.67000000000002,178.59,178.51,178.42000000000002,178.35,178.27,178.13,28.810000000000002,28.46,28.29,28.09,27.900000000000002,27.71,27.51,27.32,26.94,N/A,N/A +2012,7,9,4,30,101500,100350,99240,73.5,0,7.71,8.370000000000001,8.5,8.56,8.6,8.620000000000001,8.63,8.63,8.620000000000001,174.01,174.12,174.22,174.33,174.42000000000002,174.53,174.63,174.73,174.94,28.73,28.37,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A +2012,7,9,5,30,101540,100390,99280,68.88,0,6.99,7.5600000000000005,7.68,7.74,7.7700000000000005,7.8,7.8100000000000005,7.82,7.83,175.81,176.03,176.18,176.34,176.48,176.63,176.79,176.94,177.25,28.95,28.62,28.44,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,7,9,6,30,101520,100380,99270,70.62,0,6.72,7.3,7.43,7.5,7.55,7.58,7.61,7.62,7.640000000000001,186.61,186.73,186.81,186.91,187,187.09,187.19,187.28,187.47,28.91,28.55,28.38,28.18,27.98,27.79,27.59,27.41,27.02,N/A,N/A +2012,7,9,7,30,101540,100390,99280,74.17,0,6.88,7.44,7.5600000000000005,7.63,7.67,7.69,7.71,7.72,7.72,194.26,194.41,194.48000000000002,194.55,194.61,194.67000000000002,194.73000000000002,194.79,194.89000000000001,28.79,28.43,28.26,28.05,27.86,27.67,27.47,27.28,26.900000000000002,N/A,N/A +2012,7,9,8,30,101530,100390,99280,72.99,0,6.5200000000000005,7.0600000000000005,7.18,7.24,7.29,7.32,7.34,7.3500000000000005,7.37,203.24,203.24,203.26,203.29,203.31,203.34,203.37,203.4,203.47,28.82,28.47,28.3,28.1,27.91,27.72,27.52,27.330000000000002,26.95,N/A,N/A +2012,7,9,9,30,101530,100390,99280,73.72,0,6.78,7.2700000000000005,7.38,7.43,7.47,7.5,7.51,7.53,7.5600000000000005,205.49,205.67000000000002,205.76,205.86,205.95000000000002,206.04,206.14000000000001,206.24,206.44,28.8,28.45,28.28,28.09,27.900000000000002,27.72,27.52,27.34,26.97,N/A,N/A +2012,7,9,10,30,101550,100400,99290,76.26,0,5.91,6.28,6.36,6.4,6.43,6.45,6.46,6.47,6.5,210.83,211.20000000000002,211.44,211.68,211.91,212.13,212.35,212.56,213.01,28.75,28.400000000000002,28.240000000000002,28.04,27.86,27.67,27.48,27.3,26.93,N/A,N/A +2012,7,9,11,30,101560,100420,99300,78.93,0,5.79,6.23,6.33,6.38,6.43,6.45,6.48,6.49,6.51,217.16,217.23000000000002,217.34,217.48000000000002,217.6,217.72,217.85,217.98000000000002,218.23000000000002,28.77,28.42,28.25,28.05,27.86,27.67,27.48,27.29,26.91,N/A,N/A +2012,7,9,12,30,101560,100410,99300,71.47,0,5.12,5.63,5.75,5.83,5.88,5.93,5.96,5.99,6.03,226.14000000000001,226.34,226.58,226.83,227.07,227.31,227.54,227.76,228.22,29.29,28.96,28.8,28.6,28.41,28.22,28.03,27.85,27.47,N/A,N/A +2012,7,9,13,30,101530,100380,99270,78.17,0,5.71,6.04,6.08,6.07,6.05,6.0200000000000005,5.98,5.95,5.87,239.71,239.73000000000002,239.78,239.82,239.85,239.88,239.92000000000002,239.94,240.02,28.8,28.45,28.27,28.07,27.89,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,7,9,14,30,101550,100400,99290,75.98,0,5.07,5.51,5.62,5.69,5.75,5.79,5.82,5.8500000000000005,5.9,241.79,242.35,242.75,243.17000000000002,243.56,243.93,244.29,244.63,245.32,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A +2012,7,9,15,30,101560,100420,99310,77.29,0,5.73,6.2,6.3100000000000005,6.38,6.42,6.46,6.48,6.51,6.54,266.67,266.12,265.64,265.14,264.7,264.29,263.91,263.55,262.89,29,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A +2012,7,9,16,30,101530,100380,99270,78.66,1.1,3.48,3.97,4.21,4.43,4.63,4.83,5.03,5.21,5.58,235.96,234.92000000000002,234.46,234.07,233.86,233.77,233.92000000000002,234.17000000000002,235.19,28.22,27.92,27.79,27.64,27.5,27.37,27.240000000000002,27.12,26.86,N/A,N/A +2012,7,9,17,30,101490,100350,99240,72.48,0,5.55,5.92,5.97,5.98,5.98,5.96,5.94,5.92,5.86,220.63,220.56,220.6,220.61,220.61,220.61,220.6,220.59,220.55,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,7,9,18,30,101440,100300,99190,74.78,0,6.49,6.99,7.08,7.11,7.13,7.140000000000001,7.13,7.13,7.1000000000000005,221.63,221.70000000000002,221.75,221.79,221.83,221.86,221.9,221.94,222.02,29.23,28.89,28.72,28.51,28.330000000000002,28.14,27.94,27.76,27.38,N/A,N/A +2012,7,9,19,30,101420,100280,99170,74.03,0,7.92,8.64,8.8,8.870000000000001,8.93,8.97,8.99,9,9.02,222.78,222.89000000000001,223.02,223.14000000000001,223.24,223.33,223.41,223.49,223.64000000000001,29.32,28.990000000000002,28.82,28.62,28.44,28.25,28.05,27.87,27.490000000000002,N/A,N/A +2012,7,9,20,30,101410,100270,99160,73.85000000000001,0,8.07,8.75,8.88,8.94,8.97,8.99,8.99,8.99,8.97,235.59,235.4,235.17000000000002,234.92000000000002,234.68,234.43,234.17000000000002,233.91,233.34,29.05,28.71,28.54,28.34,28.16,27.97,27.79,27.61,27.25,N/A,N/A +2012,7,9,21,30,101350,100210,99100,73.18,0,6.3,6.84,6.99,7.09,7.17,7.24,7.3,7.36,7.47,220.89000000000001,220.61,220.61,220.62,220.63,220.65,220.68,220.71,220.8,29.04,28.71,28.55,28.36,28.18,28,27.810000000000002,27.64,27.28,N/A,N/A +2012,7,9,22,30,101350,100210,99100,72.71000000000001,0,5.57,6.04,6.15,6.21,6.26,6.29,6.3100000000000005,6.34,6.37,202.95000000000002,203.3,203.54,203.77,203.97,204.17000000000002,204.36,204.54,204.91,29.32,29,28.830000000000002,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A +2012,7,9,23,30,101330,100190,99090,74.65,0,5.72,6.19,6.29,6.3500000000000005,6.4,6.43,6.46,6.49,6.53,200.03,200.26,200.44,200.64000000000001,200.83,201.02,201.22,201.41,201.84,29.18,28.85,28.69,28.5,28.310000000000002,28.12,27.93,27.75,27.38,N/A,N/A +2012,7,10,0,30,101290,100150,99040,74.82000000000001,0,6.87,7.43,7.55,7.61,7.65,7.67,7.69,7.7,7.72,202.8,202.81,202.82,202.86,202.91,202.96,203.03,203.09,203.25,29.240000000000002,28.92,28.76,28.560000000000002,28.38,28.19,28,27.82,27.45,N/A,N/A +2012,7,10,1,30,101310,100170,99060,73.2,0,6.65,7.19,7.3,7.3500000000000005,7.38,7.390000000000001,7.4,7.4,7.390000000000001,203.42000000000002,203.74,203.97,204.18,204.36,204.53,204.69,204.84,205.13,29.080000000000002,28.740000000000002,28.57,28.37,28.18,27.990000000000002,27.79,27.61,27.23,N/A,N/A +2012,7,10,2,30,101290,100150,99040,76.91,0,7.6000000000000005,8.31,8.47,8.57,8.63,8.67,8.700000000000001,8.72,8.74,215.54,215.68,215.72,215.73000000000002,215.74,215.75,215.73000000000002,215.71,215.67000000000002,28.94,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A +2012,7,10,3,30,101320,100180,99070,77.07000000000001,0,7.25,7.84,7.98,8.06,8.13,8.18,8.22,8.25,8.31,210.9,210.87,210.95000000000002,211.06,211.16,211.27,211.38,211.48000000000002,211.70000000000002,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.62,27.43,27.05,N/A,N/A +2012,7,10,4,30,101340,100190,99090,74.96000000000001,0,9.28,10.09,10.25,10.32,10.35,10.370000000000001,10.370000000000001,10.370000000000001,10.35,216.99,216.4,216.22,216.06,215.94,215.84,215.77,215.70000000000002,215.61,29.150000000000002,28.810000000000002,28.64,28.44,28.26,28.07,27.88,27.7,27.32,N/A,N/A +2012,7,10,5,30,101290,100150,99040,74.72,0,9.05,9.870000000000001,10.06,10.16,10.22,10.26,10.290000000000001,10.32,10.34,214.28,214.38,214.39000000000001,214.38,214.37,214.33,214.29,214.25,214.15,29,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A +2012,7,10,6,30,101310,100170,99060,75.8,0,9.46,10.5,10.76,10.92,11.040000000000001,11.120000000000001,11.18,11.22,11.290000000000001,211.63,212.03,212.18,212.3,212.39000000000001,212.47,212.53,212.59,212.67000000000002,28.91,28.580000000000002,28.41,28.2,28.01,27.82,27.63,27.44,27.05,N/A,N/A +2012,7,10,7,30,101290,100140,99040,67.84,0,8.97,9.870000000000001,10.07,10.18,10.27,10.32,10.370000000000001,10.4,10.450000000000001,218.38,218.58,218.67000000000002,218.76,218.84,218.91,218.99,219.06,219.19,29.16,28.85,28.68,28.48,28.3,28.11,27.91,27.73,27.35,N/A,N/A +2012,7,10,8,30,101280,100140,99030,71.28,0,9.02,9.98,10.21,10.35,10.46,10.53,10.59,10.64,10.71,222.78,223.04,223.17000000000002,223.28,223.38,223.46,223.53,223.6,223.72,29.09,28.77,28.59,28.400000000000002,28.2,28.01,27.82,27.63,27.25,N/A,N/A +2012,7,10,9,30,101320,100180,99070,67.76,0,8.98,9.85,10.05,10.17,10.25,10.3,10.34,10.370000000000001,10.41,228.03,228.23000000000002,228.32,228.41,228.49,228.57,228.64000000000001,228.71,228.85,29.19,28.88,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,7,10,10,30,101310,100170,99060,66.8,0,7.930000000000001,8.75,8.94,9.07,9.16,9.24,9.3,9.35,9.43,228.55,228.91,229.1,229.28,229.45000000000002,229.6,229.75,229.89000000000001,230.15,29.22,28.91,28.740000000000002,28.55,28.36,28.17,27.97,27.79,27.400000000000002,N/A,N/A +2012,7,10,11,30,101350,100210,99100,72.49,0,9.16,10.16,10.41,10.56,10.66,10.73,10.78,10.81,10.86,234.1,234.35,234.47,234.57,234.65,234.72,234.78,234.85,234.95000000000002,29.02,28.69,28.52,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.17,N/A,N/A +2012,7,10,12,30,101360,100220,99110,71.85000000000001,0,8.4,9.27,9.47,9.59,9.67,9.73,9.77,9.81,9.85,231.8,231.97,232.11,232.23000000000002,232.32,232.41,232.48000000000002,232.55,232.66,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.560000000000002,27.18,N/A,N/A +2012,7,10,13,30,101380,100230,99130,73.73,0,7.86,8.620000000000001,8.82,8.94,9.02,9.08,9.13,9.17,9.23,228.84,229.47,229.78,230.07,230.34,230.58,230.82,231.03,231.46,28.96,28.64,28.47,28.27,28.080000000000002,27.89,27.69,27.51,27.13,N/A,N/A +2012,7,10,14,30,101390,100230,99120,77.2,12.8,11.91,12.81,12.96,13.01,13.030000000000001,13.02,13.02,13.01,13.02,266.42,265.61,265.49,265.23,264.87,264.45,263.87,263.28000000000003,261.83,26.75,26.310000000000002,26.16,26.02,25.88,25.76,25.64,25.53,25.310000000000002,N/A,N/A +2012,7,10,15,30,101400,100250,99130,83.36,0.4,9.040000000000001,9.69,9.82,9.86,9.88,9.88,9.88,9.870000000000001,9.91,227.33,228.64000000000001,229.48000000000002,230.4,231.3,232.24,233.37,234.52,238.05,26.78,26.330000000000002,26.16,25.98,25.810000000000002,25.66,25.51,25.37,25.150000000000002,N/A,N/A +2012,7,10,16,30,101350,100190,99080,81.65,0,9.85,10.68,10.82,10.870000000000001,10.870000000000001,10.85,10.8,10.75,10.620000000000001,226.15,226.29,226.56,226.85,227.18,227.51,227.93,228.35,229.63,26.88,26.41,26.22,26.03,25.84,25.67,25.5,25.34,25.03,N/A,N/A +2012,7,10,17,30,101320,100170,99050,81.4,0,10.81,11.71,11.870000000000001,11.92,11.94,11.92,11.88,11.83,11.700000000000001,207.9,207.82,207.73000000000002,207.58,207.42000000000002,207.25,207.05,206.86,206.43,27.060000000000002,26.580000000000002,26.38,26.17,25.98,25.79,25.59,25.41,25.04,N/A,N/A +2012,7,10,18,30,101400,100240,99130,81.77,0,11.02,12.07,12.290000000000001,12.4,12.47,12.51,12.52,12.530000000000001,12.52,225.84,226.05,226.16,226.3,226.43,226.57,226.72,226.86,227.20000000000002,26.8,26.29,26.09,25.87,25.68,25.48,25.29,25.11,24.740000000000002,N/A,N/A +2012,7,10,19,30,101460,100300,99180,88.43,0,10.13,10.950000000000001,11.14,11.23,11.290000000000001,11.33,11.36,11.38,11.4,231.01,231.26,231.46,231.68,231.9,232.12,232.35,232.58,233.1,26.080000000000002,25.55,25.330000000000002,25.12,24.92,24.73,24.53,24.35,23.97,N/A,N/A +2012,7,10,20,30,101410,100250,99120,89.81,37.7,9.99,10.86,11.09,11.22,11.32,11.4,11.46,11.52,11.620000000000001,235.03,234.95000000000002,234.94,234.94,234.94,234.94,234.96,234.98000000000002,235.04,25.3,24.76,24.560000000000002,24.36,24.18,24,23.830000000000002,23.67,23.35,N/A,N/A +2012,7,10,21,30,101360,100210,99080,76.82000000000001,2.2,8.99,9.74,9.950000000000001,10.07,10.17,10.25,10.32,10.39,10.53,232.38,232.58,232.70000000000002,232.81,232.92000000000002,233.02,233.14000000000001,233.25,233.49,26.150000000000002,25.650000000000002,25.45,25.25,25.05,24.87,24.68,24.5,24.14,N/A,N/A +2012,7,10,22,30,101290,100140,99020,65.93,0,5.34,5.7,5.79,5.84,5.88,5.91,5.93,5.95,5.99,238.92000000000002,239.25,239.49,239.71,239.92000000000002,240.1,240.29,240.47,240.84,27.46,27.060000000000002,26.88,26.67,26.48,26.29,26.09,25.91,25.53,N/A,N/A +2012,7,10,23,30,101240,100090,98980,75.72,0,4.57,4.82,4.86,4.89,4.9,4.91,4.92,4.93,4.94,194.73000000000002,195.31,195.69,196.08,196.47,196.86,197.29,197.68,198.63,26.990000000000002,26.59,26.400000000000002,26.2,26.01,25.82,25.63,25.44,25.07,N/A,N/A +2012,7,11,0,30,101240,100090,98980,78.06,0,5.32,5.68,5.7700000000000005,5.82,5.86,5.89,5.91,5.93,5.96,196.27,196.57,196.76,196.94,197.1,197.25,197.41,197.56,197.89000000000001,27.25,26.84,26.650000000000002,26.45,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,7,11,1,30,101240,100090,98980,80.39,0,5.54,5.91,5.98,6.01,6.03,6.05,6.05,6.0600000000000005,6.07,190.5,190.97,191.25,191.54,191.81,192.08,192.37,192.64000000000001,193.24,27.43,27.03,26.85,26.64,26.45,26.26,26.07,25.88,25.5,N/A,N/A +2012,7,11,2,30,101230,100080,98970,78.58,0,6.01,6.38,6.45,6.49,6.5,6.51,6.51,6.51,6.49,190.64000000000001,190.82,190.98,191.17000000000002,191.35,191.54,191.77,191.99,192.55,27.71,27.32,27.14,26.94,26.75,26.57,26.38,26.2,25.84,N/A,N/A +2012,7,11,3,30,101290,100140,99030,72.72,0,7.0600000000000005,7.75,7.91,8.01,8.09,8.15,8.2,8.24,8.290000000000001,199.78,200.15,200.3,200.42000000000002,200.51,200.59,200.64000000000001,200.69,200.75,28.34,27.97,27.79,27.580000000000002,27.39,27.19,26.990000000000002,26.810000000000002,26.42,N/A,N/A +2012,7,11,4,30,101280,100140,99030,68.06,0,6.18,6.78,6.94,7.04,7.13,7.19,7.25,7.3,7.38,198.63,199.16,199.33,199.48000000000002,199.62,199.74,199.85,199.95000000000002,200.14000000000001,28.82,28.48,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A +2012,7,11,5,30,101280,100140,99030,66.25,0,7.22,7.9,8.040000000000001,8.120000000000001,8.18,8.21,8.23,8.25,8.26,200.83,200.69,200.65,200.62,200.59,200.57,200.54,200.52,200.48000000000002,29.09,28.77,28.6,28.400000000000002,28.21,28.02,27.82,27.64,27.25,N/A,N/A +2012,7,11,6,30,101320,100170,99060,64.79,0,6.75,7.390000000000001,7.55,7.640000000000001,7.71,7.76,7.8,7.84,7.890000000000001,206.42000000000002,206.27,206.19,206.12,206.05,205.99,205.93,205.88,205.77,29.18,28.89,28.73,28.53,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,7,11,7,30,101340,100200,99090,65.41,0,7.45,8.13,8.27,8.35,8.4,8.44,8.47,8.49,8.52,206.22,206.24,206.25,206.28,206.3,206.33,206.36,206.38,206.44,29.1,28.8,28.64,28.44,28.26,28.07,27.87,27.69,27.310000000000002,N/A,N/A +2012,7,11,8,30,101350,100210,99100,65,0,7.01,7.73,7.9,8.01,8.09,8.15,8.19,8.23,8.290000000000001,208.55,208.63,208.64000000000001,208.62,208.6,208.57,208.54,208.5,208.43,29.2,28.91,28.740000000000002,28.55,28.36,28.18,27.98,27.8,27.42,N/A,N/A +2012,7,11,9,30,101370,100230,99120,67.97,0,6.93,7.6000000000000005,7.75,7.83,7.9,7.94,7.98,8.01,8.040000000000001,199.57,199.62,199.64000000000001,199.66,199.68,199.69,199.70000000000002,199.70000000000002,199.72,28.990000000000002,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,7,11,10,30,101400,100260,99150,69.66,0,7.3,7.99,8.14,8.23,8.290000000000001,8.33,8.36,8.38,8.41,209.02,208.75,208.54,208.33,208.15,207.98000000000002,207.81,207.66,207.35,28.94,28.62,28.45,28.26,28.07,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,7,11,11,30,101390,100250,99140,69.79,0,7.49,8.26,8.44,8.55,8.63,8.69,8.73,8.76,8.790000000000001,207.53,208.04,208.18,208.26,208.32,208.36,208.37,208.39000000000001,208.38,29.01,28.7,28.54,28.34,28.150000000000002,27.96,27.76,27.580000000000002,27.2,N/A,N/A +2012,7,11,12,30,101390,100250,99140,68.81,0,6.3500000000000005,6.94,7.07,7.15,7.21,7.26,7.3,7.33,7.390000000000001,208.24,208.11,208.09,208.08,208.08,208.07,208.08,208.08,208.09,29,28.69,28.52,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.18,N/A,N/A +2012,7,11,13,30,101380,100230,99130,71.81,0,5.9,6.42,6.55,6.63,6.68,6.73,6.76,6.79,6.8500000000000005,212.95000000000002,212.95000000000002,212.91,212.88,212.85,212.82,212.8,212.78,212.75,28.88,28.560000000000002,28.39,28.19,28.01,27.82,27.62,27.43,27.05,N/A,N/A +2012,7,11,14,30,101390,100250,99130,79.37,0.4,7.55,8.02,8.07,8.05,8.01,7.97,7.91,7.8500000000000005,7.73,232.46,232.22,231.92000000000002,231.59,231.24,230.87,230.43,230.01,228.94,27.810000000000002,27.42,27.240000000000002,27.05,26.87,26.68,26.5,26.32,25.97,N/A,N/A +2012,7,11,15,30,101410,100270,99160,75.36,0,5.13,5.49,5.5600000000000005,5.58,5.59,5.6000000000000005,5.59,5.59,5.5600000000000005,236.4,236.07,236.07,236.05,236.03,235.99,235.93,235.86,235.66,28.32,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.830000000000002,26.45,N/A,N/A +2012,7,11,16,30,101400,100260,99150,76.71000000000001,0,3.91,4.12,4.16,4.19,4.2,4.21,4.21,4.22,4.22,214.82,216.37,217.1,217.76,218.32,218.84,219.34,219.82,220.70000000000002,28.29,27.95,27.78,27.57,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A +2012,7,11,17,30,101470,100310,99190,88.29,5.5,16.48,18.05,18.39,18.54,18.62,18.650000000000002,18.64,18.62,18.52,207.69,207.68,207.73000000000002,207.83,207.96,208.1,208.29,208.47,208.97,25.82,25.2,24.98,24.76,24.560000000000002,24.38,24.19,24.02,23.68,N/A,N/A +2012,7,11,18,30,101430,100270,99150,86.77,1.1,12.97,14.22,14.51,14.66,14.75,14.8,14.83,14.84,14.83,226.78,226.84,226.83,226.8,226.78,226.75,226.73000000000002,226.70000000000002,226.66,25.72,25.150000000000002,24.93,24.72,24.53,24.34,24.16,23.990000000000002,23.64,N/A,N/A +2012,7,11,19,30,101420,100260,99140,87.11,0,9.81,10.72,10.94,11.08,11.17,11.24,11.3,11.35,11.43,229.66,229.47,229.37,229.26,229.15,229.03,228.91,228.8,228.54,26.17,25.67,25.46,25.25,25.05,24.86,24.66,24.48,24.1,N/A,N/A +2012,7,11,20,30,101410,100260,99140,84.16,0,11.21,12.27,12.530000000000001,12.67,12.780000000000001,12.84,12.89,12.93,12.99,229.67000000000002,229.79,229.84,229.88,229.93,229.97,230.01,230.04,230.11,26.73,26.240000000000002,26.03,25.810000000000002,25.61,25.42,25.22,25.03,24.650000000000002,N/A,N/A +2012,7,11,21,30,101370,100220,99110,79.61,0,11.450000000000001,12.61,12.91,13.09,13.21,13.31,13.38,13.43,13.51,228.21,228.53,228.74,228.92000000000002,229.07,229.21,229.34,229.45000000000002,229.67000000000002,27.29,26.830000000000002,26.63,26.42,26.21,26.02,25.82,25.63,25.240000000000002,N/A,N/A +2012,7,11,22,30,101350,100200,99080,84.41,0,8.25,8.97,9.16,9.28,9.370000000000001,9.44,9.5,9.56,9.65,211.64000000000001,211.71,211.78,211.84,211.9,211.95000000000002,212.01,212.06,212.18,26.34,25.87,25.67,25.47,25.27,25.080000000000002,24.89,24.71,24.330000000000002,N/A,N/A +2012,7,11,23,30,101280,100130,99020,83.91,0,5.04,5.48,5.62,5.73,5.83,5.91,5.98,6.05,6.18,226.12,225.16,224.72,224.32,223.96,223.62,223.3,223.01,222.44,26.990000000000002,26.59,26.41,26.2,26.02,25.830000000000002,25.63,25.45,25.080000000000002,N/A,N/A +2012,7,12,0,30,101250,100100,98990,79.27,0,4.78,5.08,5.14,5.17,5.19,5.2,5.21,5.21,5.22,213.94,214.04,214.06,214.1,214.13,214.16,214.20000000000002,214.25,214.37,27.55,27.17,26.990000000000002,26.78,26.6,26.400000000000002,26.21,26.03,25.650000000000002,N/A,N/A +2012,7,12,1,30,101230,100080,98970,78.8,0,3.99,4.22,4.2700000000000005,4.3,4.32,4.34,4.36,4.38,4.42,225.28,225.55,225.71,225.86,226.02,226.18,226.34,226.51,226.9,27.87,27.51,27.330000000000002,27.14,26.95,26.76,26.57,26.39,26.03,N/A,N/A +2012,7,12,2,30,101250,100100,98990,74.60000000000001,0,4.53,4.84,4.92,4.97,5,5.03,5.0600000000000005,5.08,5.13,232.3,232.27,232.34,232.4,232.45000000000002,232.5,232.54,232.59,232.68,28.21,27.86,27.69,27.490000000000002,27.3,27.11,26.92,26.740000000000002,26.36,N/A,N/A +2012,7,12,3,30,101320,100170,99060,73.88,0,4.7700000000000005,5.1000000000000005,5.17,5.2,5.23,5.25,5.26,5.2700000000000005,5.29,211.36,211.12,210.99,210.87,210.76,210.66,210.56,210.47,210.28,28.42,28.080000000000002,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A +2012,7,12,4,30,101320,100170,99060,72.34,0,4.46,4.73,4.78,4.8,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8,181.32,181.46,181.59,181.71,181.82,181.92000000000002,182.02,182.11,182.3,28.43,28.09,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A +2012,7,12,5,30,101310,100160,99050,74.13,0,5.3,5.68,5.76,5.8,5.82,5.84,5.8500000000000005,5.86,5.87,173.07,173.18,173.23,173.28,173.32,173.36,173.41,173.46,173.57,28.490000000000002,28.150000000000002,27.98,27.78,27.6,27.400000000000002,27.21,27.03,26.650000000000002,N/A,N/A +2012,7,12,6,30,101310,100160,99050,78.51,0,7.640000000000001,8.3,8.44,8.52,8.56,8.59,8.61,8.620000000000001,8.620000000000001,172.31,172.3,172.31,172.32,172.33,172.34,172.35,172.35,172.38,28.37,28.02,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A +2012,7,12,7,30,101350,100210,99100,77.8,0,7.88,8.58,8.76,8.84,8.91,8.94,8.97,8.99,9.01,170.96,171.13,171.19,171.25,171.3,171.36,171.4,171.45000000000002,171.55,28.45,28.11,27.94,27.740000000000002,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,7,12,8,30,101350,100200,99100,79.04,0,7.7700000000000005,8.48,8.66,8.76,8.83,8.88,8.93,8.96,9.01,175.06,175.18,175.24,175.28,175.32,175.36,175.4,175.43,175.5,28.43,28.09,27.92,27.72,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A +2012,7,12,9,30,101310,100170,99060,78.93,0,8.83,9.67,9.870000000000001,9.98,10.06,10.11,10.14,10.17,10.200000000000001,179.13,179.19,179.22,179.25,179.29,179.32,179.35,179.37,179.44,28.47,28.13,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,7,12,10,30,101300,100160,99050,82.55,0,8.88,9.75,9.96,10.08,10.17,10.23,10.28,10.31,10.35,176.55,176.59,176.64000000000001,176.69,176.73,176.76,176.79,176.82,176.89000000000001,28.36,28,27.830000000000002,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A +2012,7,12,11,30,101290,100150,99040,76.94,0,10.34,11.33,11.57,11.69,11.77,11.82,11.86,11.89,11.93,177,177.62,177.85,178.06,178.23,178.39000000000001,178.55,178.70000000000002,179,28.61,28.28,28.11,27.92,27.73,27.54,27.36,27.17,26.8,N/A,N/A +2012,7,12,12,30,101270,100120,99020,80.39,0,8.67,9.51,9.72,9.85,9.94,10,10.05,10.09,10.14,175.85,175.74,175.62,175.54,175.48,175.44,175.41,175.39000000000001,175.36,28.51,28.17,28,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,7,12,13,30,101450,100290,99160,92.35000000000001,52.400000000000006,17.52,19.23,19.59,19.81,19.94,20.04,20.09,20.13,20.17,216.41,217.68,218.15,218.56,218.91,219.21,219.49,219.74,220.19,25.01,24.36,24.12,23.89,23.68,23.490000000000002,23.29,23.11,22.740000000000002,N/A,N/A +2012,7,12,14,30,101520,100360,99230,95.51,124.5,9,10.02,10.32,10.56,10.76,10.94,11.120000000000001,11.28,11.68,219.35,219.77,219.99,220.21,220.41,220.62,220.84,221.05,221.57,24.42,23.87,23.67,23.47,23.29,23.12,22.95,22.79,22.47,N/A,N/A +2012,7,12,15,30,101550,100390,99270,94.07000000000001,41.400000000000006,8.59,9.34,9.5,9.58,9.63,9.66,9.68,9.69,9.69,218.35,218.17000000000002,218.12,218.07,218.01,217.96,217.89000000000001,217.82,217.66,24.990000000000002,24.46,24.25,24.04,23.85,23.67,23.48,23.3,22.95,N/A,N/A +2012,7,12,16,30,101540,100370,99250,89.66,14.600000000000001,8.63,9.26,9.38,9.44,9.48,9.49,9.51,9.51,9.52,206.68,206.9,207.02,207.14000000000001,207.26,207.38,207.51,207.64000000000001,207.94,24.87,24.330000000000002,24.13,23.92,23.73,23.54,23.36,23.18,22.84,N/A,N/A +2012,7,12,17,30,101510,100350,99220,87.49,0,7.44,7.930000000000001,8.040000000000001,8.08,8.11,8.13,8.15,8.16,8.18,187.42000000000002,187.73,187.91,188.11,188.32,188.53,188.79,189.05,189.76,24.830000000000002,24.310000000000002,24.1,23.89,23.7,23.51,23.32,23.150000000000002,22.79,N/A,N/A +2012,7,12,18,30,101460,100300,99180,86.82000000000001,1.5,6.26,6.67,6.75,6.79,6.8100000000000005,6.82,6.82,6.83,6.84,173.59,173.70000000000002,173.8,173.9,174.02,174.14000000000001,174.29,174.45000000000002,174.89000000000001,25.55,25.080000000000002,24.89,24.68,24.490000000000002,24.310000000000002,24.12,23.94,23.59,N/A,N/A +2012,7,12,19,30,101440,100290,99170,82.53,0,4.0600000000000005,4.28,4.32,4.3500000000000005,4.37,4.39,4.4,4.41,4.43,194.39000000000001,194.93,195.17000000000002,195.44,195.73000000000002,196.04,196.4,196.75,197.71,26.25,25.84,25.650000000000002,25.44,25.25,25.060000000000002,24.87,24.69,24.32,N/A,N/A +2012,7,12,20,30,101460,100300,99190,79.9,0,3.31,3.48,3.52,3.5500000000000003,3.5700000000000003,3.6,3.61,3.63,3.66,236.41,235.22,234.55,233.88,233.27,232.69,232.1,231.54,230.42000000000002,26.98,26.6,26.42,26.21,26.02,25.830000000000002,25.63,25.45,25.07,N/A,N/A +2012,7,12,21,30,101430,100280,99170,78.19,0,2.24,2.32,2.33,2.33,2.34,2.33,2.33,2.33,2.33,199.49,200.62,201.32,202.01,202.62,203.20000000000002,203.76,204.28,205.31,27.330000000000002,26.96,26.78,26.580000000000002,26.38,26.19,25.990000000000002,25.810000000000002,25.42,N/A,N/A +2012,7,12,22,30,101430,100280,99170,79.19,0,3.54,3.7,3.71,3.7,3.69,3.68,3.67,3.65,3.62,181.29,181.63,181.88,182.16,182.41,182.64000000000001,182.89000000000001,183.13,183.64000000000001,27.400000000000002,27.03,26.85,26.64,26.45,26.26,26.060000000000002,25.88,25.490000000000002,N/A,N/A +2012,7,12,23,30,101480,100330,99210,80.67,0,11.9,13.06,13.25,13.3,13.3,13.26,13.200000000000001,13.14,12.96,224.74,225.6,225.68,225.65,225.59,225.5,225.39000000000001,225.27,224.99,26.93,26.44,26.240000000000002,26.02,25.82,25.63,25.43,25.25,24.87,N/A,N/A +2012,7,13,0,30,101350,100190,99060,85.11,0,8.72,9.31,9.41,9.44,9.450000000000001,9.450000000000001,9.450000000000001,9.450000000000001,9.58,223.4,223.58,223.75,223.92000000000002,224.11,224.31,224.58,224.86,226.02,25.12,24.61,24.41,24.22,24.04,23.88,23.72,23.57,23.35,N/A,N/A +2012,7,13,1,30,101250,100100,98980,75.97,0,7.71,8.22,8.31,8.34,8.36,8.36,8.370000000000001,8.38,8.58,184.17000000000002,184.25,184.44,184.70000000000002,185.02,185.37,185.91,186.48,189.92000000000002,26.78,26.36,26.18,26,25.830000000000002,25.66,25.51,25.37,25.19,N/A,N/A +2012,7,13,2,30,101250,100100,98990,80.18,0,4.57,4.75,4.76,4.73,4.69,4.65,4.6000000000000005,4.54,4.4,146.38,146.85,147.21,147.62,148.07,148.57,149.25,149.96,153.16,26.71,26.310000000000002,26.13,25.94,25.75,25.57,25.39,25.22,24.900000000000002,N/A,N/A +2012,7,13,3,30,101310,100160,99050,78.08,0,3.77,3.92,3.93,3.92,3.9,3.88,3.85,3.8200000000000003,3.7600000000000002,154,154.67000000000002,155.08,155.55,156.09,156.68,157.48,158.32,161.72,27.29,26.92,26.75,26.560000000000002,26.38,26.19,26.01,25.84,25.53,N/A,N/A +2012,7,13,4,30,101320,100170,99060,81,0,6.1000000000000005,6.5600000000000005,6.65,6.7,6.72,6.73,6.74,6.74,6.72,169.73,169.75,169.81,169.88,169.94,170,170.08,170.15,170.34,27.8,27.42,27.25,27.04,26.85,26.66,26.47,26.28,25.91,N/A,N/A +2012,7,13,5,30,101340,100190,99080,81.47,0,6.59,7.1000000000000005,7.21,7.2700000000000005,7.3,7.32,7.33,7.34,7.34,168.85,169.15,169.3,169.49,169.66,169.84,170.02,170.21,170.63,27.95,27.580000000000002,27.400000000000002,27.2,27.01,26.82,26.63,26.44,26.060000000000002,N/A,N/A +2012,7,13,6,30,101380,100230,99130,84.26,0,6.0600000000000005,6.5200000000000005,6.63,6.69,6.73,6.75,6.7700000000000005,6.78,6.8,163.09,163.21,163.28,163.36,163.43,163.5,163.58,163.66,163.82,27.94,27.580000000000002,27.41,27.21,27.02,26.82,26.63,26.44,26.060000000000002,N/A,N/A +2012,7,13,7,30,101420,100270,99160,84.13,0,5.71,6.16,6.26,6.33,6.38,6.41,6.44,6.46,6.5,170.78,170.88,170.91,170.93,170.95000000000002,170.97,170.99,171.01,171.05,28.09,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A +2012,7,13,8,30,101430,100280,99170,84.8,0,6.3500000000000005,6.91,7.03,7.11,7.16,7.2,7.22,7.24,7.25,181.59,181.52,181.52,181.54,181.56,181.59,181.62,181.64000000000001,181.71,28.240000000000002,27.89,27.72,27.51,27.32,27.13,26.93,26.740000000000002,26.36,N/A,N/A +2012,7,13,9,30,101400,100260,99150,73.91,0,6.87,7.73,7.99,8.19,8.370000000000001,8.52,8.67,8.8,9.040000000000001,218.38,217.21,216.56,216.05,215.64000000000001,215.3,215.03,214.8,214.46,28.52,28.22,28.05,27.87,27.68,27.5,27.32,27.14,26.78,N/A,N/A +2012,7,13,10,30,101420,100270,99160,79.32000000000001,0,9.34,10.27,10.49,10.620000000000001,10.71,10.78,10.82,10.86,10.91,216.41,216.85,217.03,217.22,217.39000000000001,217.55,217.71,217.86,218.16,28.37,28.04,27.87,27.67,27.48,27.29,27.1,26.91,26.53,N/A,N/A +2012,7,13,11,30,101420,100270,99170,78.54,0,8.83,9.77,9.99,10.13,10.22,10.290000000000001,10.34,10.38,10.42,232.29,232.13,232.07,232.02,231.97,231.92000000000002,231.88,231.85,231.78,28.580000000000002,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.75,N/A,N/A +2012,7,13,12,30,101430,100280,99170,72.83,0,9.16,10.09,10.28,10.39,10.46,10.5,10.53,10.540000000000001,10.56,239.99,239.95000000000002,239.89000000000001,239.83,239.78,239.74,239.70000000000002,239.66,239.59,28.73,28.43,28.26,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,7,13,13,30,101500,100360,99240,76.63,0,7.8,8.55,8.75,8.86,8.94,9,9.040000000000001,9.08,9.120000000000001,239.53,239.56,239.64000000000001,239.72,239.79,239.86,239.93,239.99,240.1,28.6,28.3,28.14,27.94,27.76,27.57,27.38,27.19,26.810000000000002,N/A,N/A +2012,7,13,14,30,101510,100360,99250,73.68,0,7.57,8.36,8.540000000000001,8.66,8.75,8.82,8.870000000000001,8.92,9,249.24,249.01000000000002,248.88,248.73000000000002,248.58,248.43,248.28,248.13,247.82,28.92,28.63,28.47,28.27,28.09,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A +2012,7,13,15,30,101510,100360,99250,74.99,0,8.07,8.870000000000001,9.05,9.16,9.23,9.290000000000001,9.33,9.36,9.4,242.87,243.35,243.62,243.88,244.1,244.32,244.53,244.73000000000002,245.12,28.77,28.46,28.3,28.1,27.91,27.72,27.53,27.34,26.96,N/A,N/A +2012,7,13,16,30,101540,100390,99280,77.04,0,5.63,6.11,6.24,6.33,6.390000000000001,6.45,6.49,6.53,6.61,260.74,260,259.53000000000003,259.04,258.59000000000003,258.17,257.75,257.36,256.56,28.6,28.29,28.12,27.93,27.740000000000002,27.560000000000002,27.36,27.18,26.810000000000002,N/A,N/A +2012,7,13,17,30,101490,100340,99240,74.59,0,6.38,6.91,7.0200000000000005,7.0600000000000005,7.09,7.1000000000000005,7.1000000000000005,7.1000000000000005,7.08,215.95000000000002,216.5,216.78,217.03,217.24,217.43,217.62,217.79,218.13,28.87,28.560000000000002,28.39,28.2,28.01,27.830000000000002,27.63,27.45,27.07,N/A,N/A +2012,7,13,18,30,101490,100350,99240,76.19,0,6.07,6.6000000000000005,6.7,6.75,6.7700000000000005,6.78,6.78,6.78,6.75,211.56,211.77,211.94,212.08,212.20000000000002,212.3,212.39000000000001,212.48000000000002,212.66,28.93,28.62,28.46,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A +2012,7,13,19,30,101530,100380,99270,82.64,0.4,5.04,5.4,5.2700000000000005,5.11,4.94,4.78,4.6000000000000005,4.43,4.08,1.25,0.9400000000000001,0.44,359.78000000000003,359.01,358.2,357.18,356.22,353.7,27.46,27.080000000000002,26.91,26.73,26.560000000000002,26.38,26.21,26.05,25.72,N/A,N/A +2012,7,13,20,30,101650,100480,99340,92.01,142.8,10.120000000000001,10.89,11.040000000000001,11.07,11.07,11.040000000000001,10.99,10.93,10.75,35.01,34.660000000000004,34.230000000000004,33.76,33.28,32.8,32.230000000000004,31.7,30.34,23.69,23.06,22.84,22.62,22.42,22.23,22.04,21.87,21.51,N/A,N/A +2012,7,13,21,30,101600,100430,99300,89.31,0,7.59,8.07,8.18,8.23,8.26,8.27,8.27,8.28,8.290000000000001,31.61,30.86,30.52,30.11,29.67,29.21,28.64,28.080000000000002,26.54,23.92,23.37,23.16,22.96,22.77,22.59,22.41,22.25,21.93,N/A,N/A +2012,7,13,22,30,101570,100410,99280,88.32000000000001,23.400000000000002,4.98,5.36,5.51,5.65,5.84,6.05,6.47,6.92,7.59,298.96,300.48,301.56,302.76,304.31,306.06,308.7,311.5,313.79,24.11,23.66,23.490000000000002,23.330000000000002,23.2,23.1,23.1,23.13,23.55,N/A,N/A +2012,7,13,23,30,101460,100300,99180,82.22,0.7000000000000001,7.04,7.3500000000000005,7.36,7.3100000000000005,7.25,7.19,7.13,7.08,6.94,216.33,217.14000000000001,217.55,218.09,218.78,219.55,220.95000000000002,222.39000000000001,228.32,24.89,24.42,24.240000000000002,24.07,23.91,23.77,23.67,23.6,23.900000000000002,N/A,N/A +2012,7,14,0,30,101330,100170,99050,73.87,0,6.61,7.0200000000000005,7.12,7.16,7.19,7.21,7.24,7.26,7.3,240.12,239.84,239.65,239.41,239.12,238.8,238.3,237.76,236.14000000000001,26.51,26.11,25.95,25.78,25.63,25.490000000000002,25.37,25.26,25.16,N/A,N/A +2012,7,14,1,30,101340,100190,99070,78.60000000000001,0,1.6300000000000001,1.79,1.84,1.9000000000000001,1.95,2,2.06,2.11,2.35,256.56,257.32,257.87,258.44,258.98,259.51,260.08,260.65,262.4,26.76,26.39,26.22,26.02,25.830000000000002,25.64,25.44,25.26,24.87,N/A,N/A +2012,7,14,2,30,101410,100260,99140,77.4,0,3.36,3.5500000000000003,3.59,3.62,3.63,3.65,3.66,3.67,3.69,283.72,283.44,283.27,283.13,283.03000000000003,282.96,282.94,282.95,282.93,27.54,27.18,27,26.8,26.61,26.42,26.22,26.04,25.650000000000002,N/A,N/A +2012,7,14,3,30,101390,100240,99130,75.28,0,0.99,0.97,0.9500000000000001,0.92,0.92,0.92,1.01,1.1500000000000001,1.82,327.23,319.56,314.63,308.03000000000003,300.18,290.93,278.28000000000003,263.47,242.82,27.69,27.37,27.21,27.02,26.85,26.68,26.52,26.38,26.13,N/A,N/A +2012,7,14,4,30,101400,100260,99150,73.78,0,2.92,3.0700000000000003,3.09,3.09,3.08,3.0700000000000003,3.0700000000000003,3.06,3.04,202.17000000000002,201.63,201.45000000000002,201.25,201.08,200.91,200.74,200.58,200.23000000000002,27.990000000000002,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.52,26.13,N/A,N/A +2012,7,14,5,30,101420,100270,99150,75.72,0,4.07,4.2,4.17,4.12,4.07,4.0200000000000005,3.96,3.91,3.79,169.35,168.44,168,167.54,167.09,166.64000000000001,166.16,165.71,164.73,27.650000000000002,27.3,27.13,26.94,26.75,26.560000000000002,26.37,26.19,25.82,N/A,N/A +2012,7,14,6,30,101410,100260,99150,79.33,0,4.05,4.3500000000000005,4.43,4.49,4.53,4.5600000000000005,4.59,4.61,4.65,163.43,164.07,164.34,164.57,164.77,164.94,165.1,165.25,165.53,27.53,27.18,27,26.8,26.61,26.42,26.22,26.03,25.650000000000002,N/A,N/A +2012,7,14,7,30,101450,100310,99190,84.63,0,4.74,5.0600000000000005,5.13,5.16,5.19,5.2,5.21,5.22,5.22,170.11,170.46,170.69,170.91,171.1,171.28,171.47,171.64000000000001,171.99,27.5,27.14,26.96,26.76,26.57,26.38,26.18,25.990000000000002,25.61,N/A,N/A +2012,7,14,8,30,101490,100340,99230,83.86,0,3.98,4.28,4.3500000000000005,4.41,4.45,4.49,4.5200000000000005,4.54,4.59,182.58,182.83,182.96,183.07,183.16,183.25,183.33,183.41,183.57,27.63,27.29,27.12,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A +2012,7,14,9,30,101500,100350,99240,79.39,0,4.58,4.9,4.97,5,5.0200000000000005,5.03,5.04,5.05,5.0600000000000005,202.79,202.92000000000002,202.9,202.85,202.8,202.75,202.69,202.63,202.48000000000002,27.85,27.52,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.01,N/A,N/A +2012,7,14,10,30,101520,100370,99260,73.83,0,4.5600000000000005,4.84,4.89,4.91,4.92,4.92,4.92,4.92,4.91,202.87,203.6,204.02,204.42000000000002,204.8,205.15,205.51,205.84,206.51,28.1,27.78,27.61,27.41,27.23,27.04,26.84,26.66,26.28,N/A,N/A +2012,7,14,11,30,101560,100410,99290,82.3,0,4.1,4.37,4.43,4.47,4.5,4.51,4.53,4.54,4.5600000000000005,214.58,214.08,213.89000000000001,213.73000000000002,213.6,213.48000000000002,213.38,213.29,213.12,27.75,27.42,27.25,27.05,26.86,26.67,26.48,26.29,25.91,N/A,N/A +2012,7,14,12,30,101590,100430,99310,87.03,0,8.870000000000001,9.4,9.41,9.34,9.24,9.120000000000001,8.97,8.82,8.43,228.72,229.25,229.25,229.21,229.15,229.09,229,228.91,228.71,25.69,25.22,25.03,24.830000000000002,24.650000000000002,24.48,24.3,24.14,23.82,N/A,N/A +2012,7,14,13,30,101580,100420,99300,75.28,0,2.88,3.0100000000000002,3.31,4.17,4.73,5.08,5.37,5.65,6.09,270.82,266.33,260.79,249.34,243.83,242.69,241.84,241.14000000000001,240.37,26.35,26.060000000000002,26.080000000000002,26.330000000000002,26.39,26.35,26.240000000000002,26.13,25.87,N/A,N/A +2012,7,14,14,30,101640,100490,99370,82.16,0,1.54,1.6,1.62,1.67,1.83,2.14,2.49,2.87,3.45,312.49,308.24,305.3,300.79,293.99,283.86,277.85,274.03000000000003,273.56,26.42,26.07,25.91,25.73,25.62,25.560000000000002,25.52,25.490000000000002,25.44,N/A,N/A +2012,7,14,15,30,101640,100490,99370,81.48,0,2.05,2.21,2.25,2.2800000000000002,2.32,2.35,2.38,2.41,2.48,260.28000000000003,259.86,259.71,259.55,259.38,259.21,259.01,258.8,258.22,26.990000000000002,26.62,26.45,26.25,26.060000000000002,25.87,25.67,25.490000000000002,25.12,N/A,N/A +2012,7,14,16,30,101630,100480,99360,79.21000000000001,0,0.43,0.45,0.47000000000000003,0.48,0.5,0.53,0.58,0.65,0.98,351.08,350.67,349.79,348.6,346.91,344.68,341.15000000000003,336.99,322.8,27.22,26.87,26.7,26.51,26.34,26.16,26,25.86,25.68,N/A,N/A +2012,7,14,17,30,101610,100460,99350,80.99,0,1.4000000000000001,1.42,1.4000000000000001,1.3800000000000001,1.36,1.33,1.31,1.28,1.21,57.53,58.49,58.69,58.9,59.13,59.370000000000005,59.620000000000005,59.88,60.53,27.41,27.05,26.87,26.67,26.48,26.29,26.1,25.92,25.54,N/A,N/A +2012,7,14,18,30,101580,100420,99310,79.23,0,2.08,2.14,2.14,2.13,2.11,2.1,2.08,2.07,2.04,123.60000000000001,124.95,125.73,126.58,127.42,128.27,129.26,130.21,132.61,27.66,27.29,27.11,26.92,26.73,26.54,26.34,26.16,25.79,N/A,N/A +2012,7,14,19,30,101580,100430,99320,76.66,0,1.72,1.8,1.81,1.81,1.82,1.82,1.82,1.83,1.83,166.55,167.84,168.66,169.5,170.29,171.07,171.9,172.69,174.52,27.97,27.6,27.43,27.22,27.03,26.84,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,7,14,20,30,101520,100370,99260,77.24,0,3.66,3.88,3.92,3.95,3.97,3.99,4,4.0200000000000005,4.04,184.24,185.19,185.70000000000002,186.20000000000002,186.64000000000001,187.06,187.48,187.87,188.66,28.16,27.8,27.62,27.42,27.23,27.03,26.84,26.650000000000002,26.27,N/A,N/A +2012,7,14,21,30,101490,100340,99230,78.9,0,3.63,3.85,3.89,3.91,3.92,3.93,3.94,3.94,3.95,198.07,198.41,198.63,198.83,198.99,199.15,199.29,199.41,199.64000000000001,28.19,27.830000000000002,27.66,27.46,27.27,27.080000000000002,26.88,26.7,26.310000000000002,N/A,N/A +2012,7,14,22,30,101470,100320,99210,81.12,0,4.17,4.43,4.47,4.49,4.5,4.5,4.5,4.5,4.5,184.88,185.56,186.14000000000001,186.70000000000002,187.20000000000002,187.67000000000002,188.15,188.61,189.53,28.09,27.75,27.580000000000002,27.38,27.19,27,26.8,26.62,26.240000000000002,N/A,N/A +2012,7,14,23,30,101440,100290,99180,81.26,0,4.1,4.37,4.42,4.44,4.46,4.47,4.48,4.48,4.49,168.20000000000002,168.57,168.78,168.98,169.18,169.38,169.6,169.8,170.29,28.09,27.76,27.59,27.39,27.2,27.01,26.82,26.63,26.25,N/A,N/A +2012,7,15,0,30,101450,100310,99200,80.72,0,3.33,3.5500000000000003,3.6,3.63,3.65,3.66,3.67,3.68,3.7,173.12,173.52,173.68,173.84,173.97,174.1,174.23,174.36,174.65,28.22,27.91,27.740000000000002,27.54,27.36,27.17,26.97,26.79,26.41,N/A,N/A +2012,7,15,1,30,101430,100290,99180,81.07000000000001,0,3.71,3.95,3.99,4,4.01,4.01,4.01,4,3.99,182.12,182.21,182.35,182.52,182.69,182.86,183.05,183.25,183.68,28.19,27.88,27.71,27.52,27.330000000000002,27.14,26.95,26.76,26.38,N/A,N/A +2012,7,15,2,30,101480,100330,99220,80.72,0,3.5,3.72,3.77,3.79,3.8000000000000003,3.81,3.81,3.81,3.81,175.1,175.59,175.88,176.17000000000002,176.42000000000002,176.67000000000002,176.9,177.12,177.56,28.17,27.86,27.69,27.490000000000002,27.3,27.11,26.92,26.73,26.35,N/A,N/A +2012,7,15,3,30,101490,100340,99230,83.93,0,3.04,3.2,3.22,3.22,3.22,3.21,3.2,3.19,3.17,200.4,200,199.74,199.45000000000002,199.16,198.88,198.59,198.31,197.69,27.98,27.650000000000002,27.48,27.28,27.1,26.91,26.71,26.52,26.14,N/A,N/A +2012,7,15,4,30,101470,100320,99210,84.01,0,3.67,3.89,3.93,3.95,3.96,3.97,3.97,3.97,3.97,177.02,177.48,177.68,177.88,178.06,178.24,178.41,178.57,178.91,27.88,27.55,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A +2012,7,15,5,30,101480,100330,99220,83.98,0,3.98,4.24,4.29,4.3100000000000005,4.33,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,165.39000000000001,165.87,166.02,166.18,166.33,166.48,166.64000000000001,166.79,167.1,27.85,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A +2012,7,15,6,30,101480,100330,99220,85.29,0,3.27,3.48,3.5300000000000002,3.5700000000000003,3.6,3.62,3.64,3.67,3.72,169.9,170.82,171.55,172.26,172.9,173.52,174.14000000000001,174.74,175.99,27.830000000000002,27.5,27.34,27.14,26.96,26.77,26.59,26.41,26.04,N/A,N/A +2012,7,15,7,30,101540,100390,99280,84.65,0,3.79,4.04,4.08,4.1,4.11,4.11,4.11,4.11,4.1,192.22,192.61,192.85,193.07,193.27,193.44,193.62,193.78,194.1,27.97,27.63,27.46,27.26,27.07,26.88,26.68,26.5,26.12,N/A,N/A +2012,7,15,8,30,101520,100370,99260,85.14,0,4.61,4.96,5.05,5.11,5.16,5.2,5.24,5.2700000000000005,5.33,192.38,193.63,194.38,195.1,195.71,196.27,196.8,197.28,198.18,27.95,27.62,27.46,27.26,27.080000000000002,26.89,26.7,26.52,26.14,N/A,N/A +2012,7,15,9,30,101540,100390,99280,84.47,0,5.29,5.66,5.73,5.76,5.78,5.8,5.8,5.8,5.8,207.98000000000002,207.83,207.87,207.96,208.06,208.17000000000002,208.29,208.41,208.66,27.89,27.55,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.04,N/A,N/A +2012,7,15,10,30,101570,100420,99310,82.69,0,5.73,6.15,6.23,6.2700000000000005,6.29,6.3,6.3,6.3,6.28,215.33,215.82,216.09,216.35,216.6,216.83,217.06,217.27,217.73000000000002,27.96,27.61,27.44,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A +2012,7,15,11,30,101610,100460,99350,82.65,0,5.37,5.7700000000000005,5.87,5.91,5.94,5.96,5.97,5.98,5.98,233.39000000000001,233.35,233.34,233.31,233.27,233.24,233.20000000000002,233.16,233.07,27.96,27.62,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.1,N/A,N/A +2012,7,15,12,30,101630,100480,99370,79.58,0,4.76,5.08,5.15,5.19,5.22,5.24,5.26,5.2700000000000005,5.3,217.06,217.78,218.19,218.61,218.99,219.35,219.72,220.06,220.74,28.03,27.7,27.53,27.34,27.150000000000002,26.96,26.78,26.59,26.22,N/A,N/A +2012,7,15,13,30,101690,100540,99430,78.93,0,3.0500000000000003,3.24,3.2800000000000002,3.31,3.33,3.34,3.36,3.37,3.39,235.39000000000001,235.91,236.16,236.41,236.64000000000001,236.86,237.07,237.26,237.64000000000001,28.03,27.7,27.52,27.330000000000002,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A +2012,7,15,14,30,101700,100550,99430,74.75,0,4.25,4.47,4.49,4.48,4.46,4.45,4.43,4.4,4.3500000000000005,248.78,248.41,248.18,247.94,247.72,247.51000000000002,247.29,247.07,246.61,28.16,27.830000000000002,27.66,27.46,27.27,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,7,15,15,30,101710,100560,99440,74.68,0,2.67,2.85,2.9,2.93,2.96,2.99,3.0100000000000002,3.0300000000000002,3.0700000000000003,250.5,250,249.72,249.46,249.22,248.99,248.77,248.56,248.16,28.12,27.79,27.62,27.42,27.240000000000002,27.04,26.85,26.67,26.28,N/A,N/A +2012,7,15,16,30,101690,100540,99430,73.56,0,2.47,2.59,2.61,2.63,2.64,2.65,2.65,2.66,2.67,262.15,261.96,261.75,261.55,261.37,261.2,261.01,260.82,260.44,28.22,27.88,27.7,27.5,27.32,27.13,26.93,26.740000000000002,26.36,N/A,N/A +2012,7,15,17,30,101680,100530,99420,72.95,0,1.61,1.7,1.72,1.74,1.75,1.77,1.78,1.79,1.82,248.54,249.49,250.06,250.59,251.04,251.46,251.87,252.25,252.98000000000002,28.26,27.91,27.740000000000002,27.54,27.35,27.16,26.97,26.78,26.400000000000002,N/A,N/A +2012,7,15,18,30,101650,100500,99390,74.07000000000001,0,2.47,2.52,2.5100000000000002,2.48,2.45,2.42,2.39,2.36,2.29,188.8,188.22,188.01,187.78,187.58,187.37,187.16,186.96,186.51,28.26,27.900000000000002,27.73,27.53,27.34,27.150000000000002,26.96,26.77,26.39,N/A,N/A +2012,7,15,19,30,101650,100500,99390,67.37,0,2.29,2.38,2.39,2.38,2.37,2.36,2.35,2.34,2.31,173.70000000000002,173.83,173.91,173.97,174.02,174.07,174.09,174.11,174.11,28.6,28.26,28.09,27.89,27.7,27.52,27.32,27.14,26.77,N/A,N/A +2012,7,15,20,30,101610,100460,99350,71.29,0,3.36,3.52,3.54,3.54,3.54,3.5300000000000002,3.52,3.52,3.5,166.74,166.84,166.84,166.85,166.87,166.89000000000001,166.93,166.96,167.06,28.46,28.11,27.94,27.740000000000002,27.55,27.37,27.18,26.990000000000002,26.62,N/A,N/A +2012,7,15,21,30,101540,100400,99290,71.61,0,4.68,4.98,5.03,5.05,5.07,5.07,5.07,5.07,5.05,171.8,171.89000000000001,172,172.08,172.16,172.24,172.31,172.38,172.5,28.46,28.13,27.96,27.77,27.580000000000002,27.39,27.2,27.02,26.64,N/A,N/A +2012,7,15,22,30,101520,100370,99260,71.08,0,5.3100000000000005,5.71,5.79,5.82,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,5.84,165.46,165.61,165.64000000000001,165.66,165.68,165.69,165.70000000000002,165.71,165.73,28.44,28.13,27.97,27.78,27.59,27.400000000000002,27.21,27.03,26.650000000000002,N/A,N/A +2012,7,15,23,30,101510,100360,99250,73.38,0,5.33,5.74,5.8100000000000005,5.8500000000000005,5.87,5.89,5.9,5.9,5.9,164.81,164.8,164.84,164.87,164.89000000000001,164.9,164.91,164.92000000000002,164.95000000000002,28.29,27.98,27.810000000000002,27.61,27.43,27.240000000000002,27.04,26.86,26.48,N/A,N/A +2012,7,16,0,30,101530,100380,99270,77.27,0,5.08,5.48,5.57,5.62,5.65,5.67,5.69,5.7,5.72,163.1,163.36,163.47,163.57,163.67000000000002,163.77,163.86,163.95000000000002,164.14000000000001,28.12,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.29,N/A,N/A +2012,7,16,1,30,101530,100380,99270,74.79,0,5.48,5.92,6,6.05,6.08,6.1000000000000005,6.12,6.13,6.140000000000001,166.73,166.67000000000002,166.66,166.66,166.65,166.63,166.63,166.62,166.59,28.23,27.91,27.75,27.55,27.36,27.17,26.98,26.79,26.41,N/A,N/A +2012,7,16,2,30,101520,100370,99260,74.87,0,4.87,5.25,5.33,5.38,5.42,5.44,5.47,5.49,5.5200000000000005,168.74,168.87,168.91,168.95000000000002,168.99,169.02,169.05,169.07,169.13,28.2,27.88,27.72,27.52,27.330000000000002,27.14,26.95,26.77,26.39,N/A,N/A +2012,7,16,3,30,101560,100410,99300,81.44,0,5.67,6.13,6.22,6.2700000000000005,6.3100000000000005,6.33,6.34,6.3500000000000005,6.36,157.76,157.8,157.86,157.95000000000002,158.03,158.11,158.20000000000002,158.29,158.47,28.02,27.68,27.51,27.310000000000002,27.12,26.93,26.73,26.55,26.16,N/A,N/A +2012,7,16,4,30,101550,100400,99290,84.93,0,5.61,6.05,6.16,6.22,6.26,6.3,6.32,6.34,6.37,156.71,157.19,157.43,157.68,157.89000000000001,158.1,158.31,158.49,158.88,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A +2012,7,16,5,30,101550,100410,99300,85.39,0,5.18,5.59,5.69,5.74,5.78,5.8100000000000005,5.83,5.8500000000000005,5.88,162.28,162.6,162.73,162.86,162.98,163.08,163.19,163.29,163.49,27.86,27.52,27.34,27.14,26.95,26.76,26.57,26.38,26,N/A,N/A +2012,7,16,6,30,101590,100440,99330,79.16,0,4.03,4.34,4.41,4.45,4.49,4.5200000000000005,4.54,4.5600000000000005,4.6000000000000005,180.56,180.66,180.73,180.81,180.89000000000001,180.98,181.07,181.15,181.35,28.03,27.69,27.52,27.32,27.13,26.94,26.75,26.560000000000002,26.18,N/A,N/A +2012,7,16,7,30,101610,100460,99340,81.22,0,4.69,4.97,5.0200000000000005,5.04,5.05,5.05,5.05,5.04,5.03,192.88,192.48000000000002,192.24,192,191.78,191.57,191.34,191.13,190.70000000000002,27.97,27.63,27.45,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.11,N/A,N/A +2012,7,16,8,30,101590,100450,99330,81.99,0,4.5200000000000005,4.8500000000000005,4.92,4.96,4.98,5.01,5.0200000000000005,5.04,5.0600000000000005,186.52,186.43,186.43,186.44,186.44,186.44,186.45000000000002,186.47,186.51,27.94,27.6,27.42,27.22,27.03,26.84,26.64,26.46,26.080000000000002,N/A,N/A +2012,7,16,9,30,101610,100460,99350,81.68,0,4.25,4.5200000000000005,4.58,4.62,4.64,4.66,4.68,4.69,4.71,185.11,184.92000000000002,184.87,184.81,184.76,184.72,184.67000000000002,184.63,184.52,27.95,27.61,27.43,27.240000000000002,27.05,26.86,26.66,26.48,26.1,N/A,N/A +2012,7,16,10,30,101610,100460,99340,77.48,0.7000000000000001,4.5,4.83,4.9,4.93,4.96,4.98,5,5.01,5.0200000000000005,182.07,182.11,182.14000000000001,182.14000000000001,182.13,182.11,182.07,182.03,181.93,28.16,27.830000000000002,27.66,27.46,27.27,27.09,26.89,26.71,26.32,N/A,N/A +2012,7,16,11,30,101620,100470,99360,78.66,0,4.91,5.23,5.29,5.3100000000000005,5.32,5.33,5.32,5.32,5.29,180.93,181.04,181.01,180.96,180.9,180.84,180.79,180.73,180.63,28.07,27.72,27.55,27.35,27.16,26.97,26.78,26.59,26.21,N/A,N/A +2012,7,16,12,30,101650,100500,99390,76.86,0,3.63,3.84,3.87,3.87,3.88,3.87,3.87,3.86,3.84,185.27,184.62,184.34,184.04,183.77,183.52,183.26,183.02,182.54,28.13,27.8,27.63,27.43,27.240000000000002,27.05,26.86,26.67,26.29,N/A,N/A +2012,7,16,13,30,101660,100510,99400,78.02,0,2.89,3.0500000000000003,3.09,3.12,3.13,3.15,3.16,3.16,3.18,176.87,176.76,176.67000000000002,176.62,176.58,176.56,176.55,176.56,176.57,28.01,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.17,N/A,N/A +2012,7,16,14,30,101690,100540,99420,76.98,0,2.61,2.71,2.72,2.72,2.71,2.7,2.69,2.69,2.67,199.02,199.05,198.92000000000002,198.8,198.69,198.58,198.46,198.34,198.06,28.09,27.75,27.580000000000002,27.39,27.2,27.01,26.810000000000002,26.63,26.25,N/A,N/A +2012,7,16,15,30,101680,100530,99420,77.36,0,3.02,3.16,3.17,3.17,3.17,3.16,3.15,3.15,3.13,177.79,176.96,176.58,176.18,175.81,175.47,175.11,174.78,174.09,28.11,27.76,27.59,27.39,27.19,27,26.810000000000002,26.62,26.240000000000002,N/A,N/A +2012,7,16,16,30,101680,100530,99410,81.18,0,2.73,2.79,2.7800000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7800000000000002,2.7800000000000002,166.05,163.03,160.96,158.62,156.21,153.65,150.81,148.03,141.85,27.41,27.07,26.900000000000002,26.72,26.55,26.38,26.22,26.060000000000002,25.75,N/A,N/A +2012,7,16,17,30,101640,100490,99380,80.69,0,2.49,2.65,2.69,2.73,2.7600000000000002,2.79,2.82,2.84,2.9,150.03,148.14000000000001,147.07,146.04,145.11,144.22,143.33,142.48,140.79,27.84,27.48,27.3,27.1,26.92,26.73,26.53,26.35,25.98,N/A,N/A +2012,7,16,18,30,101590,100440,99330,76.58,0,3.63,3.8200000000000003,3.85,3.86,3.87,3.88,3.88,3.88,3.88,133.28,133.38,133.28,133.19,133.1,133.02,132.92000000000002,132.84,132.66,28.16,27.8,27.62,27.42,27.23,27.04,26.84,26.66,26.27,N/A,N/A +2012,7,16,19,30,101570,100420,99310,77.4,0,3.33,3.5,3.5300000000000002,3.5500000000000003,3.56,3.56,3.56,3.5700000000000003,3.5700000000000003,139.49,139.63,139.63,139.65,139.66,139.67000000000002,139.68,139.71,139.76,28.23,27.87,27.69,27.490000000000002,27.3,27.11,26.91,26.73,26.35,N/A,N/A +2012,7,16,20,30,101530,100380,99270,77.57000000000001,0,3.33,3.52,3.5500000000000003,3.58,3.59,3.61,3.62,3.63,3.65,141.99,141.88,141.78,141.67000000000002,141.57,141.46,141.35,141.26,141.02,28.35,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.04,26.86,26.47,N/A,N/A +2012,7,16,21,30,101530,100380,99270,79.08,0,3.62,3.8200000000000003,3.85,3.86,3.87,3.87,3.87,3.86,3.85,144.51,144.32,144.11,143.93,143.77,143.62,143.47,143.34,143.06,28.44,28.09,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.560000000000002,N/A,N/A +2012,7,16,22,30,101530,100380,99270,79.25,0,3.09,3.2800000000000002,3.33,3.35,3.38,3.39,3.4,3.42,3.43,139.41,139.87,140.15,140.4,140.62,140.82,141,141.17000000000002,141.49,28.43,28.1,27.93,27.73,27.54,27.36,27.16,26.97,26.59,N/A,N/A +2012,7,16,23,30,101510,100370,99260,79.87,0,5.13,5.5,5.5600000000000005,5.59,5.6000000000000005,5.61,5.61,5.6000000000000005,5.58,139.01,138.89000000000001,138.99,139.06,139.11,139.15,139.17000000000002,139.20000000000002,139.23,28.44,28.11,27.94,27.75,27.55,27.36,27.17,26.98,26.6,N/A,N/A +2012,7,17,0,30,101500,100360,99250,76.08,0,4.32,4.61,4.66,4.68,4.68,4.69,4.68,4.68,4.67,153.05,152.99,152.88,152.78,152.68,152.59,152.5,152.42000000000002,152.26,28.46,28.150000000000002,27.98,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A +2012,7,17,1,30,101430,100280,99170,85.56,0,6.05,6.36,6.3500000000000005,6.29,6.22,6.140000000000001,6.05,5.95,5.71,143.22,143.55,143.73,143.93,144.12,144.31,144.52,144.73,145.22,27.47,27.09,26.92,26.72,26.54,26.35,26.17,25.990000000000002,25.64,N/A,N/A +2012,7,17,2,30,101430,100280,99170,78.22,0,4.96,5.26,5.28,5.2700000000000005,5.26,5.23,5.19,5.15,5.0600000000000005,140.48,140.67000000000002,140.8,140.95000000000002,141.1,141.26,141.46,141.65,142.18,27.77,27.42,27.240000000000002,27.05,26.86,26.67,26.48,26.3,25.92,N/A,N/A +2012,7,17,3,30,101460,100310,99200,80.94,0,5.5200000000000005,5.87,5.93,5.94,5.94,5.93,5.91,5.89,5.84,154.32,154.31,154.25,154.17000000000002,154.09,153.99,153.88,153.77,153.45000000000002,27.71,27.35,27.18,26.98,26.79,26.6,26.42,26.240000000000002,25.87,N/A,N/A +2012,7,17,4,30,101410,100270,99150,82.13,0,5.2,5.5200000000000005,5.57,5.58,5.58,5.58,5.5600000000000005,5.55,5.51,153.17000000000002,153.35,153.44,153.54,153.66,153.78,153.92000000000002,154.07,154.49,27.71,27.36,27.18,26.990000000000002,26.8,26.62,26.43,26.26,25.900000000000002,N/A,N/A +2012,7,17,5,30,101430,100280,99170,78.53,0,3.69,3.92,3.96,3.99,4,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,137.78,137.76,137.81,137.86,137.9,137.94,137.98,138.02,138.11,27.96,27.62,27.45,27.25,27.07,26.88,26.68,26.5,26.13,N/A,N/A +2012,7,17,6,30,101440,100290,99180,80.16,0,4.18,4.43,4.47,4.49,4.5,4.5,4.5,4.5,4.5,147.84,148.28,148.57,148.86,149.13,149.38,149.65,149.92000000000002,150.49,27.93,27.59,27.41,27.21,27.02,26.84,26.64,26.45,26.07,N/A,N/A +2012,7,17,7,30,101460,100310,99200,81.78,0,4.13,4.4,4.45,4.47,4.49,4.5,4.51,4.51,4.5200000000000005,151.57,151.58,151.54,151.51,151.48,151.46,151.44,151.42000000000002,151.36,27.990000000000002,27.64,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,7,17,8,30,101470,100330,99220,82.65,0,5.24,5.59,5.65,5.68,5.69,5.7,5.71,5.71,5.71,153.43,153.3,153.11,152.94,152.79,152.64000000000001,152.51,152.39000000000001,152.15,28.04,27.7,27.52,27.32,27.14,26.95,26.75,26.560000000000002,26.19,N/A,N/A +2012,7,17,9,30,101470,100330,99210,82.72,0,5.01,5.33,5.37,5.4,5.41,5.42,5.43,5.43,5.43,159.94,159.72,159.56,159.4,159.26,159.13,158.99,158.86,158.58,28.02,27.67,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A +2012,7,17,10,30,101460,100310,99200,82.95,0,3.97,4.22,4.2700000000000005,4.29,4.3,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,165.21,164.94,164.93,164.9,164.88,164.86,164.84,164.82,164.78,28,27.650000000000002,27.47,27.28,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,7,17,11,30,101510,100360,99250,82.5,0,4.51,4.8100000000000005,4.87,4.9,4.92,4.93,4.93,4.93,4.93,171.74,171.77,171.77,171.75,171.74,171.73,171.71,171.69,171.65,28.080000000000002,27.740000000000002,27.560000000000002,27.36,27.17,26.98,26.79,26.6,26.22,N/A,N/A +2012,7,17,12,30,101540,100390,99280,79.42,0,3.08,3.27,3.31,3.34,3.35,3.37,3.38,3.39,3.42,176.04,176.33,176.42000000000002,176.54,176.67000000000002,176.79,176.93,177.07,177.36,28.21,27.88,27.71,27.51,27.32,27.13,26.94,26.75,26.37,N/A,N/A +2012,7,17,13,30,101520,100370,99260,80.02,0,3.2600000000000002,3.54,3.61,3.66,3.71,3.75,3.7800000000000002,3.8200000000000003,3.89,170.08,169.48,169.34,169.23,169.16,169.1,169.08,169.08,169.21,28.17,27.830000000000002,27.66,27.47,27.28,27.1,26.91,26.73,26.36,N/A,N/A +2012,7,17,14,30,101550,100400,99290,78.54,0,3.33,3.5100000000000002,3.5300000000000002,3.54,3.54,3.54,3.54,3.54,3.52,187.58,187.51,187.43,187.36,187.29,187.23,187.17000000000002,187.12,187.01,28.3,27.97,27.79,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,7,17,15,30,101590,100440,99320,82.94,0,3.39,3.47,3.43,3.37,3.31,3.24,3.17,3.11,2.96,204.88,203.49,202.63,201.61,200.56,199.47,198.18,196.91,193.67000000000002,27.830000000000002,27.47,27.310000000000002,27.11,26.93,26.75,26.560000000000002,26.39,26.03,N/A,N/A +2012,7,17,16,30,101580,100430,99320,83.86,0,2.39,2.46,2.47,2.46,2.45,2.44,2.43,2.42,2.4,185.88,184.61,183.89000000000001,183.11,182.31,181.47,180.47,179.49,176.9,27.86,27.5,27.32,27.13,26.94,26.75,26.560000000000002,26.38,26,N/A,N/A +2012,7,17,17,30,101550,100400,99290,84.77,0,1.04,1.11,1.1400000000000001,1.17,1.2,1.23,1.27,1.3,1.3800000000000001,174.17000000000002,169.83,167.57,165.31,163.31,161.38,159.49,157.66,154.15,28.01,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.53,26.150000000000002,N/A,N/A +2012,7,17,18,30,101530,100380,99270,80.57000000000001,0,2.31,2.37,2.36,2.34,2.32,2.29,2.27,2.24,2.19,148.17000000000002,148.47,148.86,149.25,149.62,149.97,150.34,150.68,151.43,28.42,28.060000000000002,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,17,19,30,101480,100330,99220,80.77,0,2.45,2.59,2.62,2.63,2.65,2.66,2.67,2.68,2.69,142.25,142.11,142.1,142.09,142.09,142.09,142.09,142.1,142.16,28.51,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,17,20,30,101500,100350,99240,82.71000000000001,0,3.2800000000000002,3.46,3.49,3.52,3.5300000000000002,3.54,3.56,3.5700000000000003,3.59,167.52,167.37,167.22,167.1,167,166.9,166.82,166.74,166.61,28.61,28.240000000000002,28.07,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A +2012,7,17,21,30,101450,100310,99200,80.66,0,3.44,3.6,3.62,3.62,3.62,3.62,3.61,3.61,3.6,168.38,168.19,168.07,167.95000000000002,167.86,167.77,167.67000000000002,167.59,167.4,28.72,28.36,28.19,27.98,27.79,27.61,27.41,27.23,26.85,N/A,N/A +2012,7,17,22,30,101430,100290,99180,81.54,0,4.19,4.41,4.42,4.42,4.4,4.38,4.36,4.34,4.29,179.78,179.56,179.43,179.29,179.15,179.02,178.87,178.73,178.4,28.72,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.86,N/A,N/A +2012,7,17,23,30,101400,100260,99150,82.81,0,3.7800000000000002,4.0200000000000005,4.07,4.09,4.1,4.11,4.12,4.12,4.12,170.05,170.23,170.43,170.62,170.8,170.97,171.16,171.34,171.73,28.61,28.28,28.11,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A +2012,7,18,0,30,101410,100260,99160,82.13,0,2.05,2.18,2.21,2.22,2.23,2.24,2.25,2.25,2.2600000000000002,159.14000000000001,159.20000000000002,159.18,159.15,159.12,159.08,159.04,159,158.96,28.59,28.28,28.11,27.91,27.72,27.54,27.34,27.16,26.78,N/A,N/A +2012,7,18,1,30,101400,100250,99150,82.62,0,2.57,2.74,2.7800000000000002,2.8000000000000003,2.82,2.83,2.85,2.86,2.88,139.93,139.6,139.57,139.53,139.47,139.4,139.32,139.24,139.06,28.53,28.21,28.04,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A +2012,7,18,2,30,101410,100270,99160,82.36,0,2.43,2.58,2.6,2.61,2.62,2.62,2.63,2.63,2.64,144.78,145.32,145.75,146.17000000000002,146.55,146.91,147.29,147.63,148.36,28.51,28.2,28.03,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.71,N/A,N/A +2012,7,18,3,30,101450,100300,99190,83.41,0,4.64,5.03,5.11,5.17,5.21,5.24,5.26,5.28,5.3100000000000005,154.03,154.29,154.35,154.42000000000002,154.48,154.54,154.61,154.68,154.81,28.6,28.29,28.12,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A +2012,7,18,4,30,101430,100280,99170,84.37,0,6.2700000000000005,6.5,6.44,6.3,6.15,6,5.86,5.75,5.61,168.45000000000002,167.12,166.03,164.43,162.49,160.28,157.85,155.49,150.98,27.86,27.54,27.400000000000002,27.25,27.11,26.97,26.830000000000002,26.7,26.39,N/A,N/A +2012,7,18,5,30,101450,100300,99200,86.61,0,5.28,5.73,5.84,5.92,5.98,6.03,6.08,6.11,6.19,166.35,165.95000000000002,165.66,165.37,165.1,164.85,164.61,164.37,163.87,28.34,28.01,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.900000000000002,26.52,N/A,N/A +2012,7,18,6,30,101470,100320,99210,87.56,0,5.95,6.5,6.62,6.69,6.75,6.78,6.8100000000000005,6.84,6.87,164.15,163.93,163.88,163.83,163.78,163.75,163.72,163.70000000000002,163.64000000000001,28.330000000000002,28,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A +2012,7,18,7,30,101540,100390,99280,85.84,0,5.5,5.93,6.01,6.05,6.08,6.09,6.09,6.1000000000000005,6.1000000000000005,175.32,175.04,174.86,174.67000000000002,174.48,174.3,174.11,173.92000000000002,173.53,28.38,28.05,27.88,27.68,27.5,27.310000000000002,27.11,26.93,26.55,N/A,N/A +2012,7,18,8,30,101540,100400,99290,86.43,0,4.86,5.24,5.32,5.37,5.4,5.43,5.45,5.47,5.51,175.37,175.46,175.53,175.61,175.68,175.75,175.83,175.9,176.08,28.330000000000002,28,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.88,26.5,N/A,N/A +2012,7,18,9,30,101540,100390,99280,85.42,0,5.17,5.63,5.74,5.8100000000000005,5.87,5.91,5.95,5.98,6.05,178.08,178.20000000000002,178.29,178.37,178.44,178.51,178.59,178.67000000000002,178.85,28.42,28.11,27.94,27.75,27.560000000000002,27.38,27.18,27,26.63,N/A,N/A +2012,7,18,10,30,101540,100390,99280,85.48,0,4.96,5.33,5.41,5.45,5.48,5.5,5.51,5.5200000000000005,5.53,188.76,188.75,188.71,188.66,188.62,188.59,188.55,188.51,188.44,28.37,28.04,27.87,27.67,27.48,27.29,27.1,26.91,26.53,N/A,N/A +2012,7,18,11,30,101580,100440,99330,85.66,0,4.39,4.69,4.74,4.76,4.78,4.78,4.79,4.79,4.79,202.81,202.45000000000002,202.25,202.05,201.85,201.64000000000001,201.41,201.17000000000002,200.59,28.310000000000002,27.990000000000002,27.830000000000002,27.64,27.45,27.27,27.080000000000002,26.900000000000002,26.54,N/A,N/A +2012,7,18,12,30,101630,100490,99370,83.76,0,4.29,4.61,4.68,4.73,4.76,4.78,4.8,4.82,4.84,194.67000000000002,195.32,195.8,196.27,196.68,197.08,197.45000000000002,197.79,198.45000000000002,28.43,28.11,27.95,27.75,27.57,27.39,27.2,27.01,26.64,N/A,N/A +2012,7,18,13,30,101640,100490,99380,82.09,0,4.98,5.3100000000000005,5.36,5.36,5.36,5.3500000000000005,5.33,5.3100000000000005,5.2700000000000005,192.33,192.73000000000002,192.95000000000002,193.16,193.35,193.54,193.74,193.93,194.36,28.43,28.1,27.93,27.740000000000002,27.55,27.36,27.17,26.990000000000002,26.61,N/A,N/A +2012,7,18,14,30,101730,100580,99470,82.74,0,3.52,3.75,3.8000000000000003,3.8200000000000003,3.84,3.85,3.85,3.85,3.86,205.58,205.53,205.46,205.37,205.29,205.20000000000002,205.1,205.02,204.82,28.39,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A +2012,7,18,15,30,101740,100590,99480,79.52,0,3.3200000000000003,3.52,3.56,3.5700000000000003,3.59,3.59,3.6,3.6,3.6,188.69,188.84,188.95000000000002,189.05,189.12,189.19,189.26,189.31,189.43,28.53,28.2,28.03,27.830000000000002,27.64,27.45,27.25,27.07,26.69,N/A,N/A +2012,7,18,16,30,101750,100600,99490,80.42,0,3.96,4.21,4.25,4.2700000000000005,4.28,4.29,4.29,4.3,4.3,202.59,202.31,202.21,202.11,202.02,201.93,201.85,201.77,201.61,28.59,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,18,17,30,101750,100600,99490,78.36,0,4.57,4.8500000000000005,4.89,4.91,4.91,4.91,4.91,4.9,4.88,205.66,205.73000000000002,205.77,205.81,205.84,205.87,205.9,205.93,205.97,28.61,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.740000000000002,N/A,N/A +2012,7,18,18,30,101720,100570,99450,75.62,0,4.38,4.66,4.7,4.71,4.71,4.71,4.7,4.69,4.67,210.39000000000001,210.35,210.36,210.35,210.32,210.29,210.25,210.20000000000002,210.11,28.64,28.3,28.12,27.93,27.740000000000002,27.55,27.35,27.17,26.78,N/A,N/A +2012,7,18,19,30,101710,100560,99450,70.54,0,3.91,4.15,4.19,4.21,4.22,4.23,4.23,4.24,4.24,202.42000000000002,202.73000000000002,202.91,203.08,203.24,203.4,203.55,203.69,203.96,28.78,28.44,28.28,28.080000000000002,27.89,27.7,27.51,27.32,26.95,N/A,N/A +2012,7,18,20,30,101660,100520,99410,72.46000000000001,0,4.46,4.75,4.8100000000000005,4.83,4.8500000000000005,4.86,4.87,4.88,4.88,199.63,200,200.19,200.37,200.53,200.70000000000002,200.86,201.01,201.33,28.73,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,7,18,21,30,101640,100490,99380,71.83,0,4.38,4.68,4.74,4.7700000000000005,4.79,4.8,4.8100000000000005,4.82,4.83,211.02,210.95000000000002,210.98000000000002,211,211.01,211.02,211.02,211.02,211.01,28.77,28.45,28.28,28.080000000000002,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A +2012,7,18,22,30,101640,100490,99380,75.10000000000001,0,4.2700000000000005,4.59,4.64,4.68,4.7,4.71,4.72,4.73,4.75,201.69,201.83,201.91,202,202.07,202.14000000000001,202.22,202.28,202.41,28.62,28.3,28.13,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A +2012,7,18,23,30,101650,100500,99390,75.99,0,4.3,4.62,4.67,4.69,4.71,4.71,4.71,4.71,4.7,187.06,187.5,187.68,187.84,187.99,188.11,188.25,188.37,188.61,28.57,28.26,28.09,27.900000000000002,27.71,27.52,27.32,27.14,26.76,N/A,N/A +2012,7,19,0,30,101610,100470,99350,73.83,0,4.89,5.26,5.3100000000000005,5.33,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,179.94,179.88,179.82,179.75,179.67000000000002,179.58,179.49,179.41,179.21,28.57,28.27,28.11,27.91,27.72,27.54,27.35,27.16,26.79,N/A,N/A +2012,7,19,1,30,101630,100480,99370,78.66,0,5.2,5.58,5.66,5.69,5.72,5.73,5.73,5.74,5.73,178.03,177.94,177.97,177.99,178,178.01,178.02,178.03,178.06,28.38,28.060000000000002,27.89,27.69,27.5,27.32,27.12,26.93,26.560000000000002,N/A,N/A +2012,7,19,2,30,101650,100500,99390,80.55,0,5.17,5.5600000000000005,5.64,5.69,5.71,5.73,5.74,5.75,5.76,175.24,175.27,175.31,175.33,175.35,175.36,175.37,175.38,175.4,28.27,27.94,27.77,27.57,27.39,27.2,27,26.82,26.44,N/A,N/A +2012,7,19,3,30,101670,100520,99410,81.98,0,5.8,6.26,6.3500000000000005,6.4,6.43,6.45,6.46,6.47,6.47,178.09,178.39000000000001,178.52,178.65,178.78,178.89000000000001,179.01,179.12,179.35,28.22,27.89,27.72,27.52,27.330000000000002,27.14,26.95,26.77,26.38,N/A,N/A +2012,7,19,4,30,101660,100510,99400,83.63,0,6.13,6.62,6.71,6.76,6.8,6.82,6.83,6.84,6.8500000000000005,186.81,186.92000000000002,186.95000000000002,186.99,187.02,187.05,187.08,187.11,187.18,28.150000000000002,27.810000000000002,27.64,27.44,27.25,27.060000000000002,26.86,26.68,26.3,N/A,N/A +2012,7,19,5,30,101700,100550,99440,85.69,0,4.88,5.24,5.32,5.36,5.39,5.41,5.43,5.44,5.46,188.62,188.70000000000002,188.71,188.75,188.77,188.8,188.84,188.88,188.97,28.1,27.76,27.580000000000002,27.39,27.2,27.01,26.810000000000002,26.63,26.25,N/A,N/A +2012,7,19,6,30,101750,100610,99490,84.96000000000001,0,5.25,5.61,5.68,5.7,5.72,5.72,5.72,5.71,5.69,189.04,189.49,189.70000000000002,189.91,190.1,190.29,190.48,190.67000000000002,191.07,28.28,27.93,27.76,27.560000000000002,27.37,27.18,26.98,26.79,26.41,N/A,N/A +2012,7,19,7,30,101790,100640,99520,87.04,0,4.92,5.26,5.33,5.37,5.39,5.4,5.41,5.42,5.42,195.83,195.84,195.77,195.71,195.66,195.61,195.55,195.5,195.43,28.150000000000002,27.79,27.62,27.42,27.23,27.04,26.84,26.66,26.28,N/A,N/A +2012,7,19,8,30,101800,100650,99540,85.26,0,4.89,5.22,5.29,5.32,5.34,5.3500000000000005,5.36,5.36,5.36,207.58,207.54,207.49,207.45000000000002,207.41,207.37,207.33,207.29,207.20000000000002,28.19,27.84,27.66,27.46,27.27,27.080000000000002,26.89,26.7,26.32,N/A,N/A +2012,7,19,9,30,101820,100670,99560,84.85000000000001,0,5.0200000000000005,5.37,5.44,5.47,5.49,5.5,5.51,5.51,5.51,214.47,214.38,214.33,214.27,214.23000000000002,214.19,214.15,214.11,214.03,28.150000000000002,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A +2012,7,19,10,30,101850,100700,99590,84.26,0,4.1,4.41,4.48,4.53,4.57,4.6000000000000005,4.62,4.65,4.69,224,224.08,224.07,224.05,224.03,224.01,223.99,223.95000000000002,223.89000000000001,28.13,27.78,27.61,27.41,27.22,27.03,26.830000000000002,26.650000000000002,26.27,N/A,N/A +2012,7,19,11,30,101900,100750,99630,82.47,0,5.47,5.8500000000000005,5.92,5.94,5.94,5.94,5.92,5.9,5.8500000000000005,224.03,224.03,223.96,223.87,223.77,223.66,223.55,223.44,223.19,28.22,27.87,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.35,N/A,N/A +2012,7,19,12,30,101910,100760,99640,80.15,0,4.32,4.65,4.73,4.7700000000000005,4.8,4.83,4.8500000000000005,4.87,4.9,231.41,231.48000000000002,231.52,231.58,231.63,231.68,231.74,231.8,231.9,28.28,27.95,27.77,27.57,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A +2012,7,19,13,30,101940,100780,99670,75.36,0,4.19,4.5,4.57,4.62,4.65,4.68,4.69,4.71,4.74,241.66,241.43,241.31,241.20000000000002,241.11,241.03,240.95000000000002,240.87,240.73000000000002,28.490000000000002,28.17,28,27.8,27.61,27.43,27.23,27.04,26.66,N/A,N/A +2012,7,19,14,30,101960,100800,99690,71.57000000000001,0,4.74,5.07,5.13,5.15,5.17,5.18,5.18,5.19,5.19,243.32,243.15,243.06,242.95000000000002,242.84,242.73000000000002,242.62,242.51,242.27,28.64,28.330000000000002,28.16,27.96,27.77,27.580000000000002,27.39,27.2,26.82,N/A,N/A +2012,7,19,15,30,101980,100830,99710,71.67,0,4,4.2700000000000005,4.32,4.3500000000000005,4.37,4.38,4.39,4.4,4.41,244.73000000000002,244.71,244.78,244.84,244.89000000000001,244.95000000000002,245,245.05,245.14000000000001,28.63,28.3,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.8,N/A,N/A +2012,7,19,16,30,101980,100830,99710,69.23,0,4.3100000000000005,4.63,4.69,4.73,4.76,4.79,4.8,4.82,4.8500000000000005,248.3,248.11,248.01000000000002,247.89000000000001,247.78,247.67000000000002,247.56,247.46,247.22,28.69,28.37,28.19,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A +2012,7,19,17,30,101990,100840,99720,72.33,0,3.89,4.13,4.17,4.19,4.2,4.21,4.21,4.21,4.21,235.46,235.36,235.33,235.3,235.28,235.26,235.25,235.24,235.23000000000002,28.6,28.26,28.09,27.900000000000002,27.71,27.51,27.32,27.14,26.75,N/A,N/A +2012,7,19,18,30,101960,100810,99700,69.65,0,3.5700000000000003,3.7600000000000002,3.8000000000000003,3.8200000000000003,3.83,3.84,3.85,3.85,3.88,218.20000000000002,218.29,218.39000000000001,218.51,218.63,218.77,218.94,219.11,219.58,28.77,28.44,28.28,28.09,27.900000000000002,27.72,27.53,27.36,26.990000000000002,N/A,N/A +2012,7,19,19,30,101920,100770,99650,68.31,0,4.37,4.67,4.73,4.7700000000000005,4.79,4.82,4.84,4.87,4.93,207.22,207.82,208.20000000000002,208.61,209.03,209.46,209.94,210.41,211.59,28.990000000000002,28.67,28.51,28.32,28.14,27.96,27.77,27.6,27.25,N/A,N/A +2012,7,19,20,30,101900,100750,99640,70.55,0,4.4,4.72,4.7700000000000005,4.8,4.83,4.84,4.86,4.88,4.92,191.72,192.41,192.87,193.33,193.79,194.27,194.83,195.39000000000001,196.86,28.96,28.64,28.48,28.28,28.1,27.92,27.73,27.55,27.2,N/A,N/A +2012,7,19,21,30,101850,100700,99590,73.92,0,5.18,5.53,5.58,5.58,5.57,5.55,5.53,5.5,5.42,200.42000000000002,200.39000000000001,200.26,200.09,199.91,199.71,199.47,199.22,198.64000000000001,28.810000000000002,28.490000000000002,28.32,28.12,27.93,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,7,19,22,30,101810,100670,99550,72.85000000000001,0,4.65,5,5.0600000000000005,5.09,5.11,5.12,5.13,5.13,5.14,201.37,201.48000000000002,201.58,201.68,201.79,201.9,202.02,202.15,202.48000000000002,28.89,28.580000000000002,28.42,28.23,28.05,27.86,27.68,27.5,27.14,N/A,N/A +2012,7,19,23,30,101790,100640,99530,74.44,0,5.49,5.92,5.99,6.0200000000000005,6.04,6.04,6.03,6.03,6,201.78,201.9,201.95000000000002,201.98000000000002,202.02,202.04,202.07,202.09,202.14000000000001,28.810000000000002,28.51,28.34,28.150000000000002,27.97,27.78,27.59,27.400000000000002,27.03,N/A,N/A +2012,7,20,0,30,101750,100600,99490,75.76,0,5.82,6.3100000000000005,6.390000000000001,6.43,6.46,6.48,6.49,6.49,6.49,201.54,201.76,201.84,201.92000000000002,202,202.08,202.18,202.28,202.53,28.740000000000002,28.43,28.26,28.07,27.88,27.7,27.51,27.330000000000002,26.96,N/A,N/A +2012,7,20,1,30,101720,100570,99460,77.41,0,5.87,6.34,6.43,6.47,6.5,6.51,6.5200000000000005,6.53,6.54,201.89000000000001,202,202.13,202.29,202.45000000000002,202.6,202.79,202.97,203.42000000000002,28.6,28.28,28.11,27.92,27.740000000000002,27.55,27.36,27.18,26.810000000000002,N/A,N/A +2012,7,20,2,30,101750,100600,99490,80.57000000000001,0,6.45,6.98,7.08,7.13,7.15,7.17,7.17,7.18,7.17,199.53,199.74,199.84,199.95000000000002,200.04,200.13,200.24,200.34,200.57,28.490000000000002,28.16,28,27.8,27.61,27.42,27.23,27.05,26.67,N/A,N/A +2012,7,20,3,30,101760,100610,99500,82.13,0,6.55,7.07,7.18,7.23,7.26,7.28,7.29,7.29,7.28,203.98000000000002,204.13,204.20000000000002,204.29,204.37,204.46,204.57,204.67000000000002,204.91,28.48,28.150000000000002,27.97,27.78,27.59,27.400000000000002,27.21,27.03,26.66,N/A,N/A +2012,7,20,4,30,101760,100610,99500,84.42,0,6.69,7.25,7.37,7.43,7.47,7.5,7.5200000000000005,7.53,7.54,204.48000000000002,204.65,204.75,204.86,204.96,205.06,205.16,205.27,205.52,28.400000000000002,28.060000000000002,27.89,27.69,27.51,27.32,27.13,26.94,26.57,N/A,N/A +2012,7,20,5,30,101770,100620,99500,85.77,0,6.5600000000000005,7.140000000000001,7.26,7.32,7.36,7.390000000000001,7.4,7.41,7.41,209.23000000000002,209.46,209.51,209.55,209.59,209.62,209.65,209.68,209.73000000000002,28.35,28,27.830000000000002,27.63,27.44,27.25,27.05,26.87,26.490000000000002,N/A,N/A +2012,7,20,6,30,101800,100650,99540,85.98,0,6.86,7.38,7.49,7.54,7.5600000000000005,7.57,7.57,7.57,7.55,221.94,221.98000000000002,221.96,221.95000000000002,221.94,221.93,221.91,221.9,221.86,28.37,28.01,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A +2012,7,20,7,30,101790,100640,99530,85.41,0,8.1,8.84,8.99,9.06,9.11,9.13,9.13,9.13,9.1,225.1,225.19,225.23000000000002,225.24,225.25,225.25,225.24,225.23000000000002,225.18,28.43,28.07,27.89,27.69,27.5,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,20,8,30,101810,100660,99550,82.81,0,6.9,7.51,7.68,7.79,7.87,7.930000000000001,7.99,8.040000000000001,8.14,237.81,237.71,237.63,237.56,237.52,237.47,237.43,237.39000000000001,237.32,28.51,28.17,27.990000000000002,27.79,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,7,20,9,30,101820,100680,99560,80.46000000000001,0,7.61,8.27,8.42,8.49,8.540000000000001,8.56,8.58,8.59,8.59,231.82,231.98000000000002,232.13,232.27,232.4,232.51,232.62,232.72,232.92000000000002,28.580000000000002,28.240000000000002,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A +2012,7,20,10,30,101810,100660,99550,64.82000000000001,0,7.8,8.52,8.67,8.75,8.8,8.82,8.84,8.85,8.85,238.47,238.41,238.33,238.24,238.15,238.06,237.98000000000002,237.89000000000001,237.73000000000002,29.26,28.98,28.82,28.63,28.44,28.26,28.060000000000002,27.88,27.5,N/A,N/A +2012,7,20,11,30,101810,100660,99550,66.38,0,7.23,7.97,8.14,8.24,8.32,8.38,8.42,8.46,8.53,249.22,249.18,249.18,249.18,249.18,249.18,249.18,249.19,249.19,29.150000000000002,28.85,28.68,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A +2012,7,20,12,30,101860,100710,99600,66.04,0,7.3,7.98,8.13,8.21,8.26,8.290000000000001,8.31,8.32,8.32,253.4,253.70000000000002,253.81,253.92000000000002,254.03,254.13,254.23000000000002,254.33,254.53,29.14,28.85,28.69,28.490000000000002,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A +2012,7,20,13,30,101870,100710,99600,67.21000000000001,0,6.8,7.32,7.42,7.46,7.48,7.49,7.49,7.48,7.47,265.12,264.58,264.14,263.67,263.23,262.81,262.36,261.92,261.02,28.8,28.490000000000002,28.330000000000002,28.14,27.95,27.77,27.580000000000002,27.400000000000002,27.03,N/A,N/A +2012,7,20,14,30,101900,100750,99640,64.98,0,6.23,6.73,6.8100000000000005,6.84,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.83,6.8,271.3,270.95,270.73,270.51,270.29,270.09000000000003,269.88,269.67,269.22,28.82,28.5,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.38,27,N/A,N/A +2012,7,20,15,30,101900,100750,99630,62.93,0,6.46,6.92,7.01,7.04,7.07,7.08,7.09,7.1000000000000005,7.13,270.63,270.09000000000003,269.7,269.25,268.82,268.38,267.92,267.48,266.55,28.77,28.48,28.32,28.13,27.96,27.78,27.6,27.43,27.080000000000002,N/A,N/A +2012,7,20,16,30,101870,100720,99600,61.27,0,5.38,5.82,5.91,5.96,6,6.03,6.05,6.08,6.12,264.1,264.47,264.71,264.93,265.15,265.36,265.58,265.78000000000003,266.25,29.01,28.71,28.55,28.36,28.18,27.990000000000002,27.8,27.63,27.26,N/A,N/A +2012,7,20,17,30,101860,100710,99590,61.410000000000004,0,5.26,5.64,5.7,5.72,5.73,5.73,5.73,5.73,5.72,234.58,235.1,235.46,235.85,236.24,236.64000000000001,237.12,237.6,238.83,29.21,28.91,28.75,28.55,28.37,28.19,28.01,27.830000000000002,27.47,N/A,N/A +2012,7,20,18,30,101810,100660,99550,62.550000000000004,0,5.38,5.75,5.79,5.79,5.78,5.76,5.73,5.69,5.61,217.32,217.82,218.16,218.54,218.95000000000002,219.39000000000001,219.96,220.56,222.51,29.29,28.990000000000002,28.830000000000002,28.64,28.46,28.29,28.1,27.93,27.61,N/A,N/A +2012,7,20,19,30,101780,100640,99520,63.43,0,4.8500000000000005,5.21,5.26,5.2700000000000005,5.2700000000000005,5.26,5.25,5.23,5.18,214.14000000000001,214.47,214.70000000000002,214.93,215.18,215.43,215.72,216.01,216.79,29.400000000000002,29.1,28.94,28.75,28.560000000000002,28.38,28.19,28.01,27.650000000000002,N/A,N/A +2012,7,20,20,30,101730,100580,99470,65.8,0,5.87,6.32,6.38,6.390000000000001,6.390000000000001,6.37,6.3500000000000005,6.32,6.24,211.06,211.16,211.28,211.4,211.51,211.63,211.75,211.88,212.21,29.310000000000002,29.01,28.85,28.66,28.48,28.29,28.1,27.92,27.560000000000002,N/A,N/A +2012,7,20,21,30,101710,100560,99450,67.55,0,5.96,6.45,6.53,6.5600000000000005,6.58,6.58,6.57,6.5600000000000005,6.5200000000000005,206,206.16,206.31,206.45000000000002,206.58,206.71,206.85,206.99,207.33,29.29,28.990000000000002,28.830000000000002,28.64,28.46,28.28,28.09,27.91,27.55,N/A,N/A +2012,7,20,22,30,101650,100510,99400,71.64,0,6.73,7.29,7.390000000000001,7.43,7.45,7.45,7.43,7.42,7.37,208.49,208.6,208.71,208.82,208.93,209.04,209.17000000000002,209.3,209.61,29.080000000000002,28.78,28.62,28.43,28.240000000000002,28.060000000000002,27.88,27.7,27.34,N/A,N/A +2012,7,20,23,30,101630,100490,99380,73.33,0,6.99,7.57,7.68,7.72,7.74,7.74,7.73,7.72,7.68,209.24,209.4,209.48000000000002,209.57,209.65,209.74,209.83,209.92000000000002,210.13,29.02,28.72,28.55,28.36,28.18,27.990000000000002,27.8,27.62,27.26,N/A,N/A +2012,7,21,0,30,101590,100440,99330,75.85000000000001,0,7.390000000000001,8.03,8.15,8.2,8.23,8.25,8.25,8.25,8.24,210.76,210.94,211.05,211.16,211.28,211.41,211.55,211.70000000000002,212.07,28.93,28.62,28.45,28.26,28.080000000000002,27.89,27.71,27.53,27.17,N/A,N/A +2012,7,21,1,30,101550,100410,99300,77.84,0,7.41,8.06,8.19,8.24,8.27,8.28,8.28,8.27,8.24,214.14000000000001,214.3,214.41,214.52,214.62,214.72,214.83,214.93,215.18,28.900000000000002,28.57,28.41,28.21,28.03,27.84,27.66,27.48,27.11,N/A,N/A +2012,7,21,2,30,101560,100410,99300,81.21000000000001,0,7.61,8.28,8.4,8.46,8.49,8.5,8.5,8.5,8.47,215.03,215.20000000000002,215.28,215.36,215.44,215.51,215.6,215.68,215.88,28.75,28.41,28.240000000000002,28.05,27.86,27.68,27.490000000000002,27.3,26.94,N/A,N/A +2012,7,21,3,30,101550,100410,99300,81.68,0,7.83,8.52,8.65,8.72,8.75,8.77,8.78,8.790000000000001,8.790000000000001,223.39000000000001,223.55,223.63,223.73000000000002,223.84,223.96,224.09,224.22,224.57,28.77,28.43,28.27,28.07,27.89,27.71,27.52,27.34,26.98,N/A,N/A +2012,7,21,4,30,101550,100410,99300,83.26,0,7.54,8.2,8.33,8.4,8.43,8.45,8.45,8.45,8.44,230.16,230.29,230.36,230.46,230.54,230.64000000000001,230.75,230.86,231.13,28.73,28.39,28.22,28.02,27.84,27.650000000000002,27.46,27.28,26.91,N/A,N/A +2012,7,21,5,30,101550,100400,99290,85.23,0,7.78,8.47,8.61,8.68,8.72,8.74,8.75,8.74,8.72,229.59,229.73000000000002,229.8,229.86,229.92000000000002,229.97,230.03,230.09,230.22,28.63,28.28,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.78,N/A,N/A +2012,7,21,6,30,101550,100400,99300,84.85000000000001,0,7.79,8.46,8.61,8.67,8.72,8.74,8.75,8.76,8.75,236.05,236.11,236.15,236.19,236.23000000000002,236.28,236.33,236.38,236.5,28.67,28.310000000000002,28.14,27.94,27.75,27.57,27.37,27.19,26.82,N/A,N/A +2012,7,21,7,30,101590,100440,99330,85.95,0,7.76,8.43,8.57,8.63,8.67,8.69,8.700000000000001,8.700000000000001,8.69,231.93,232.12,232.20000000000002,232.28,232.35,232.42000000000002,232.49,232.56,232.71,28.63,28.27,28.09,27.89,27.7,27.52,27.32,27.14,26.77,N/A,N/A +2012,7,21,8,30,101570,100420,99310,87.46000000000001,0,7.87,8.56,8.71,8.78,8.82,8.84,8.85,8.85,8.84,240.56,240.62,240.67000000000002,240.72,240.76,240.81,240.87,240.92000000000002,241.03,28.53,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A +2012,7,21,9,30,101570,100430,99320,88.03,0,7.97,8.69,8.85,8.93,8.98,9.01,9.02,9.02,9.01,243.58,243.65,243.66,243.69,243.71,243.74,243.78,243.81,243.9,28.5,28.13,27.95,27.75,27.55,27.36,27.17,26.98,26.6,N/A,N/A +2012,7,21,10,30,101610,100470,99360,86.18,0,7.99,8.73,8.88,8.950000000000001,8.99,9.01,9,8.99,8.93,249.97,249.94,249.98000000000002,250.04,250.11,250.18,250.27,250.35,250.56,28.650000000000002,28.29,28.11,27.91,27.72,27.52,27.32,27.14,26.75,N/A,N/A +2012,7,21,11,30,101600,100460,99350,82.34,0,7.96,8.51,8.620000000000001,8.65,8.66,8.66,8.66,8.65,8.61,252.74,253.11,253.31,253.51000000000002,253.69,253.87,254.04,254.21,254.54,28.63,28.27,28.1,27.91,27.72,27.54,27.35,27.17,26.810000000000002,N/A,N/A +2012,7,21,12,30,101640,100490,99380,84.32000000000001,0,7.5200000000000005,8.14,8.27,8.33,8.36,8.38,8.38,8.38,8.370000000000001,267.01,266.78000000000003,266.59000000000003,266.37,266.17,265.97,265.76,265.56,265.14,28.38,28,27.82,27.62,27.43,27.23,27.04,26.85,26.47,N/A,N/A +2012,7,21,13,30,101640,100500,99380,81.65,0,7.25,7.88,8.01,8.09,8.14,8.17,8.19,8.2,8.22,267.33,267.17,267.07,266.96,266.86,266.76,266.66,266.56,266.36,28.29,27.91,27.73,27.53,27.34,27.150000000000002,26.96,26.77,26.39,N/A,N/A +2012,7,21,14,30,101660,100510,99390,83.11,0,7.54,8.14,8.26,8.32,8.35,8.370000000000001,8.38,8.39,8.39,271.46,271.11,271,270.88,270.77,270.66,270.55,270.44,270.2,27.98,27.580000000000002,27.400000000000002,27.2,27,26.810000000000002,26.62,26.43,26.060000000000002,N/A,N/A +2012,7,21,15,30,101650,100500,99390,77.33,0,6.19,6.63,6.71,6.74,6.76,6.76,6.76,6.75,6.74,262.58,263.08,263.42,263.73,264.02,264.29,264.58,264.85,265.45,28.34,27.98,27.8,27.61,27.42,27.23,27.04,26.86,26.490000000000002,N/A,N/A +2012,7,21,16,30,101650,100510,99400,71.87,0,4.92,5.28,5.36,5.41,5.44,5.47,5.49,5.51,5.55,255.6,256.28000000000003,256.73,257.19,257.62,258.05,258.51,258.96,260.04,28.93,28.61,28.44,28.25,28.07,27.88,27.69,27.52,27.150000000000002,N/A,N/A +2012,7,21,17,30,101610,100470,99360,68.63,0,4.11,4.36,4.39,4.4,4.4,4.4,4.39,4.39,4.38,243.68,244.86,245.58,246.34,247.1,247.86,248.74,249.61,251.81,29.29,28.98,28.82,28.63,28.45,28.27,28.080000000000002,27.91,27.560000000000002,N/A,N/A +2012,7,21,18,30,101610,100470,99360,68.62,0,3.8000000000000003,3.99,3.99,3.97,3.94,3.91,3.86,3.8200000000000003,3.73,215.79,216.73000000000002,217.32,217.96,218.6,219.29,220.1,220.91,223.06,29.5,29.19,29.03,28.84,28.66,28.48,28.29,28.12,27.77,N/A,N/A +2012,7,21,19,30,101610,100470,99360,71.45,0,3.83,4.03,4.05,4.05,4.04,4.0200000000000005,4,3.98,3.92,209.74,210.06,210.31,210.55,210.78,211,211.24,211.47,211.99,29.37,29.04,28.87,28.67,28.490000000000002,28.3,28.11,27.93,27.560000000000002,N/A,N/A +2012,7,21,20,30,101560,100420,99310,74.88,0,4.48,4.73,4.75,4.75,4.74,4.72,4.69,4.66,4.58,205.85,205.96,205.99,206.02,206.04,206.07,206.09,206.12,206.19,29.23,28.89,28.72,28.52,28.34,28.150000000000002,27.96,27.78,27.42,N/A,N/A +2012,7,21,21,30,101520,100370,99270,74.47,0,4.07,4.28,4.29,4.28,4.26,4.24,4.21,4.17,4.09,196.57,196.8,196.88,196.97,197.07,197.16,197.27,197.38,197.63,29.22,28.89,28.72,28.53,28.35,28.16,27.98,27.8,27.45,N/A,N/A +2012,7,21,22,30,101490,100350,99240,76.45,0,5.2700000000000005,5.63,5.68,5.69,5.68,5.67,5.65,5.63,5.58,186.59,186.58,186.6,186.61,186.61,186.61,186.6,186.59,186.53,29.150000000000002,28.830000000000002,28.66,28.47,28.29,28.1,27.91,27.73,27.37,N/A,N/A +2012,7,21,23,30,101450,100300,99200,75.73,0,7.04,7.640000000000001,7.75,7.8,7.82,7.83,7.83,7.83,7.8100000000000005,179.42000000000002,179.62,179.71,179.81,179.9,179.99,180.09,180.18,180.37,29.16,28.85,28.68,28.490000000000002,28.3,28.11,27.92,27.740000000000002,27.36,N/A,N/A +2012,7,22,0,30,101430,100290,99180,74.38,0,7.32,7.94,8.05,8.1,8.120000000000001,8.13,8.13,8.13,8.1,182.42000000000002,182.59,182.66,182.72,182.79,182.85,182.92000000000002,182.98,183.13,29.150000000000002,28.84,28.67,28.47,28.29,28.1,27.900000000000002,27.72,27.34,N/A,N/A +2012,7,22,1,30,101390,100250,99140,86.87,0,7.66,8.26,8.370000000000001,8.4,8.41,8.41,8.39,8.370000000000001,8.31,185.09,185.52,185.8,186.09,186.38,186.69,187.04,187.39000000000001,188.21,28.29,27.91,27.73,27.54,27.35,27.17,26.98,26.8,26.44,N/A,N/A +2012,7,22,2,30,101430,100280,99170,87.52,0,7.21,7.7700000000000005,7.890000000000001,7.930000000000001,7.96,7.97,7.97,7.97,7.94,188.69,188.95000000000002,189.09,189.22,189.33,189.42000000000002,189.53,189.62,189.84,28.21,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.32,N/A,N/A +2012,7,22,3,30,101430,100290,99180,86.08,0,6.890000000000001,7.41,7.51,7.55,7.57,7.57,7.57,7.5600000000000005,7.5200000000000005,198.89000000000001,198.92000000000002,198.94,198.96,198.98000000000002,199,199.03,199.06,199.13,28.35,27.98,27.8,27.6,27.41,27.22,27.03,26.85,26.47,N/A,N/A +2012,7,22,4,30,101420,100280,99170,85.4,0,6.2700000000000005,6.73,6.8100000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,197.81,197.94,198.03,198.14000000000001,198.24,198.34,198.45000000000002,198.55,198.79,28.34,27.98,27.8,27.6,27.41,27.23,27.03,26.85,26.48,N/A,N/A +2012,7,22,5,30,101420,100270,99170,83.53,0,6.32,6.7700000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,6.82,193.54,193.63,193.66,193.70000000000002,193.73000000000002,193.76,193.78,193.81,193.87,28.34,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.830000000000002,26.45,N/A,N/A +2012,7,22,6,30,101440,100300,99190,80.58,0,6.61,7.1000000000000005,7.21,7.25,7.2700000000000005,7.28,7.29,7.28,7.2700000000000005,190.72,190.67000000000002,190.6,190.54,190.48,190.43,190.38,190.34,190.27,28.39,28.03,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.5,N/A,N/A +2012,7,22,7,30,101460,100310,99210,78.86,0,5.87,6.3100000000000005,6.390000000000001,6.42,6.44,6.45,6.45,6.45,6.44,187.73,187.84,187.94,188.03,188.11,188.20000000000002,188.28,188.37,188.56,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,22,8,30,101500,100350,99240,80.79,0,6.38,6.88,6.98,7.03,7.0600000000000005,7.07,7.08,7.08,7.07,192.38,192.55,192.56,192.56,192.57,192.57,192.58,192.59,192.63,28.47,28.11,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.59,N/A,N/A +2012,7,22,9,30,101520,100380,99270,84.94,0,5.68,6.1000000000000005,6.19,6.23,6.2700000000000005,6.28,6.3,6.3100000000000005,6.3100000000000005,197.39000000000001,197.46,197.48000000000002,197.51,197.54,197.57,197.61,197.64000000000001,197.74,28.32,27.96,27.78,27.580000000000002,27.39,27.2,27,26.82,26.44,N/A,N/A +2012,7,22,10,30,101570,100430,99320,82.95,0,4.7700000000000005,5.11,5.19,5.22,5.25,5.26,5.2700000000000005,5.28,5.28,197.97,198.66,198.82,198.94,199.01,199.07,199.11,199.14000000000001,199.18,28.62,28.28,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.77,N/A,N/A +2012,7,22,11,30,101600,100460,99350,81.47,0,4.83,5.1000000000000005,5.15,5.16,5.16,5.15,5.13,5.12,5.07,201.07,200.78,200.52,200.27,200.05,199.83,199.61,199.41,199,28.44,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.97,26.59,N/A,N/A +2012,7,22,12,30,101630,100480,99370,80.99,0,4.97,5.28,5.33,5.34,5.34,5.34,5.33,5.32,5.29,215.5,215.5,215.48000000000002,215.45000000000002,215.42000000000002,215.39000000000001,215.37,215.33,215.27,28.42,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A +2012,7,22,13,30,101640,100490,99380,81.10000000000001,0,2.84,3.02,3.0500000000000003,3.08,3.11,3.13,3.14,3.16,3.19,221.03,220.95000000000002,220.85,220.76,220.68,220.62,220.55,220.5,220.38,28.39,28.05,27.88,27.68,27.490000000000002,27.3,27.11,26.92,26.54,N/A,N/A +2012,7,22,14,30,101680,100530,99420,82.86,0,1.36,1.41,1.42,1.42,1.43,1.43,1.43,1.43,1.43,245.07,244.48000000000002,244.07,243.67000000000002,243.28,242.89000000000001,242.48000000000002,242.08,241.25,28.36,28.02,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A +2012,7,22,15,30,101710,100570,99460,82.07000000000001,0,0.35000000000000003,0.39,0.41000000000000003,0.42,0.44,0.45,0.47000000000000003,0.49,0.52,236.58,234.55,233.38,232.37,231.46,230.58,229.82,229.13,227.8,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.01,26.63,N/A,N/A +2012,7,22,16,30,101720,100580,99470,82.01,0,0.81,0.85,0.86,0.87,0.88,0.89,0.9,0.91,0.93,161.47,163.68,164.82,165.99,167.05,168.05,169.12,170.15,172.27,28.61,28.26,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,22,17,30,101720,100570,99460,83.10000000000001,0,2.31,2.44,2.47,2.49,2.5100000000000002,2.52,2.5300000000000002,2.5500000000000003,2.57,117.72,118.79,119.36,119.91,120.42,120.92,121.42,121.9,122.89,28.75,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,7,22,18,30,101720,100570,99460,81.85000000000001,0,5.46,5.8,5.8500000000000005,5.87,5.87,5.87,5.86,5.86,5.83,118.63,118.75,118.96000000000001,119.17,119.34,119.51,119.67,119.81,120.11,28.95,28.580000000000002,28.400000000000002,28.19,28,27.810000000000002,27.61,27.42,27.04,N/A,N/A +2012,7,22,19,30,101740,100580,99470,87.74,0,7.7700000000000005,8.290000000000001,8.39,8.41,8.42,8.41,8.4,8.39,8.33,154.26,155.4,155.93,156.46,156.95000000000002,157.42000000000002,157.89000000000001,158.34,159.43,27.63,27.22,27.04,26.85,26.67,26.5,26.32,26.150000000000002,25.830000000000002,N/A,N/A +2012,7,22,20,30,101700,100540,99430,80.87,0,7.0200000000000005,7.44,7.47,7.44,7.4,7.33,7.25,7.17,6.94,158.26,158.55,158.73,158.94,159.17000000000002,159.42000000000002,159.75,160.09,160.89000000000001,27.57,27.16,26.98,26.78,26.59,26.41,26.22,26.04,25.67,N/A,N/A +2012,7,22,21,30,101720,100570,99450,80.64,0,8.44,9.08,9.17,9.200000000000001,9.19,9.16,9.120000000000001,9.08,8.950000000000001,183.36,183.53,183.46,183.37,183.27,183.19,183.09,182.99,182.75,27.52,27.1,26.92,26.71,26.52,26.330000000000002,26.14,25.96,25.59,N/A,N/A +2012,7,22,22,30,101720,100570,99450,82.43,0,9.82,10.57,10.700000000000001,10.72,10.72,10.68,10.63,10.58,10.44,194.39000000000001,194.17000000000002,193.9,193.61,193.32,193.03,192.71,192.4,191.72,27.29,26.84,26.64,26.44,26.240000000000002,26.05,25.86,25.68,25.310000000000002,N/A,N/A +2012,7,22,23,30,101720,100570,99450,86.69,0,9.14,9.870000000000001,10.02,10.08,10.11,10.13,10.120000000000001,10.11,10.06,181.34,181.38,181.4,181.42000000000002,181.44,181.46,181.48,181.49,181.53,27.16,26.71,26.52,26.310000000000002,26.11,25.92,25.72,25.54,25.16,N/A,N/A +2012,7,23,0,30,101700,100550,99430,83.96000000000001,0,7.23,7.73,7.82,7.8500000000000005,7.86,7.86,7.8500000000000005,7.84,7.8,187.12,186.95000000000002,186.83,186.71,186.59,186.45000000000002,186.31,186.17000000000002,185.83,26.92,26.48,26.29,26.09,25.89,25.7,25.51,25.32,24.94,N/A,N/A +2012,7,23,1,30,101660,100510,99390,80.81,0,5.44,5.78,5.84,5.86,5.87,5.88,5.89,5.89,5.91,175.39000000000001,175.22,175.09,174.95000000000002,174.8,174.65,174.46,174.26,173.69,27.22,26.810000000000002,26.63,26.43,26.240000000000002,26.060000000000002,25.87,25.69,25.330000000000002,N/A,N/A +2012,7,23,2,30,101730,100570,99460,78.97,0,5.37,5.73,5.8,5.83,5.8500000000000005,5.86,5.87,5.87,5.88,156.15,156.09,156.17000000000002,156.22,156.26,156.29,156.3,156.3,156.28,27.63,27.25,27.07,26.87,26.68,26.490000000000002,26.3,26.12,25.740000000000002,N/A,N/A +2012,7,23,3,30,101710,100560,99440,79.19,0,6,6.45,6.55,6.6000000000000005,6.63,6.66,6.68,6.7,6.72,158.27,158.12,158.08,158.02,157.97,157.91,157.84,157.78,157.64000000000001,27.97,27.59,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.07,N/A,N/A +2012,7,23,4,30,101720,100570,99450,82.21000000000001,0,7.24,7.83,7.95,8.02,8.06,8.08,8.09,8.1,8.1,160.37,160.32,160.32,160.32,160.32,160.32,160.32,160.32,160.32,28.07,27.69,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A +2012,7,23,5,30,101710,100560,99450,80.09,0,7,7.53,7.640000000000001,7.7,7.72,7.74,7.75,7.75,7.73,159.27,159.29,159.32,159.37,159.41,159.45000000000002,159.49,159.54,159.63,28.12,27.75,27.57,27.37,27.18,26.990000000000002,26.79,26.6,26.23,N/A,N/A +2012,7,23,6,30,101750,100600,99480,79.39,0,6.5200000000000005,7.03,7.15,7.21,7.25,7.2700000000000005,7.29,7.3,7.32,163.86,163.98,164.01,164.04,164.07,164.1,164.12,164.14000000000001,164.17000000000002,28.18,27.810000000000002,27.63,27.43,27.240000000000002,27.04,26.85,26.66,26.28,N/A,N/A +2012,7,23,7,30,101780,100630,99510,77.47,0,5.32,5.7,5.78,5.82,5.8500000000000005,5.87,5.88,5.89,5.9,167.13,167.09,167.08,167.08,167.08,167.09,167.09,167.1,167.11,28.28,27.92,27.740000000000002,27.54,27.35,27.16,26.96,26.78,26.39,N/A,N/A +2012,7,23,8,30,101780,100630,99520,79.42,0,4.97,5.3100000000000005,5.39,5.42,5.45,5.46,5.47,5.48,5.48,177.02,176.94,176.92000000000002,176.88,176.85,176.82,176.79,176.75,176.67000000000002,28.19,27.830000000000002,27.650000000000002,27.45,27.25,27.060000000000002,26.86,26.68,26.29,N/A,N/A +2012,7,23,9,30,101810,100660,99540,78.27,0,5.36,5.7,5.75,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,5.75,5.72,171.36,171.59,171.70000000000002,171.81,171.92000000000002,172.02,172.13,172.23,172.45000000000002,28.2,27.84,27.66,27.46,27.27,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,7,23,10,30,101820,100670,99550,77.23,0,4.4,4.69,4.75,4.7700000000000005,4.79,4.79,4.79,4.79,4.78,190.17000000000002,189.99,189.87,189.76,189.65,189.55,189.44,189.35,189.15,28.36,28.01,27.830000000000002,27.63,27.44,27.25,27.05,26.86,26.48,N/A,N/A +2012,7,23,11,30,101850,100700,99590,75.10000000000001,0,4.69,5.03,5.1000000000000005,5.14,5.17,5.19,5.21,5.23,5.25,189.59,189.43,189.42000000000002,189.42000000000002,189.42000000000002,189.42000000000002,189.42000000000002,189.43,189.44,28.41,28.07,27.900000000000002,27.69,27.5,27.32,27.12,26.93,26.55,N/A,N/A +2012,7,23,12,30,101860,100710,99600,75.31,0,3.7600000000000002,3.96,3.99,3.99,3.99,3.99,3.98,3.97,3.94,183.66,183.76,183.77,183.8,183.82,183.84,183.87,183.91,184,28.37,28.02,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.5,N/A,N/A +2012,7,23,13,30,101890,100740,99630,75.16,0,2.99,3.15,3.17,3.19,3.19,3.2,3.2,3.2,3.2,183.05,183.18,183.23,183.26,183.28,183.3,183.3,183.31,183.3,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.11,26.92,26.54,N/A,N/A +2012,7,23,14,30,101910,100760,99650,76.18,0,2.31,2.41,2.42,2.42,2.42,2.42,2.42,2.41,2.4,190.99,190.79,190.76,190.70000000000002,190.62,190.55,190.45000000000002,190.35,190.12,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A +2012,7,23,15,30,101950,100800,99690,77.05,0,1.74,1.85,1.8900000000000001,1.92,1.94,1.96,1.99,2.0100000000000002,2.04,174.33,174.16,174.03,173.92000000000002,173.84,173.78,173.73,173.69,173.61,28.45,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,7,23,16,30,101910,100750,99640,79.8,0,3.47,3.54,3.5,3.46,3.42,3.37,3.3200000000000003,3.27,3.18,153.4,154.55,155.3,156.04,156.75,157.39000000000001,158.07,158.67000000000002,159.95000000000002,28.26,27.900000000000002,27.72,27.53,27.34,27.16,26.96,26.78,26.41,N/A,N/A +2012,7,23,17,30,101960,100800,99690,85.31,0,3.0500000000000003,2.54,2.13,1.6400000000000001,1.25,0.93,0.85,0.8300000000000001,1.33,17.22,20.55,24.47,30.5,43.300000000000004,57.26,82.82000000000001,110.33,142.54,27.3,26.990000000000002,26.87,26.75,26.62,26.490000000000002,26.37,26.25,26.05,N/A,N/A +2012,7,23,18,30,101910,100750,99640,82.64,0,2.19,2.42,2.5100000000000002,2.59,2.66,2.71,2.7600000000000002,2.8000000000000003,2.88,123.62,128.27,130.44,132.32,133.85,135.17000000000002,136.3,137.28,139.09,27.95,27.580000000000002,27.41,27.21,27.03,26.84,26.650000000000002,26.47,26.1,N/A,N/A +2012,7,23,19,30,101930,100780,99670,74.19,0,3.7,3.89,3.92,3.94,3.95,3.95,3.95,3.95,3.94,155.73,155.52,155.4,155.28,155.16,155.05,154.94,154.84,154.63,28.73,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.85,N/A,N/A +2012,7,23,20,30,101910,100760,99650,74.03,0,3.45,3.67,3.72,3.74,3.77,3.7800000000000002,3.79,3.8000000000000003,3.81,134.71,134.81,134.94,135.04,135.12,135.2,135.26,135.32,135.4,28.900000000000002,28.54,28.37,28.16,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A +2012,7,23,21,30,101890,100740,99630,71.73,0,4.19,4.45,4.49,4.5,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.5200000000000005,143.07,142.93,142.85,142.75,142.66,142.57,142.47,142.38,142.19,28.94,28.6,28.42,28.22,28.03,27.84,27.650000000000002,27.46,27.07,N/A,N/A +2012,7,23,22,30,101890,100740,99620,78.01,0,3.35,3.56,3.61,3.64,3.66,3.67,3.69,3.7,3.71,146.23,146.19,146.29,146.38,146.47,146.56,146.65,146.74,146.92000000000002,28.66,28.32,28.150000000000002,27.94,27.75,27.560000000000002,27.37,27.18,26.8,N/A,N/A +2012,7,23,23,30,101870,100720,99610,79.63,0,3.64,3.88,3.93,3.97,3.99,4.0200000000000005,4.03,4.05,4.09,145.9,145.78,145.78,145.78,145.78,145.77,145.75,145.74,145.71,28.61,28.27,28.1,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.76,N/A,N/A +2012,7,24,0,30,101830,100680,99560,79.92,0,3.91,4.17,4.23,4.2700000000000005,4.3,4.33,4.3500000000000005,4.38,4.42,133.99,134.26,134.5,134.7,134.86,135.02,135.15,135.27,135.48,28.66,28.32,28.150000000000002,27.96,27.76,27.57,27.38,27.2,26.810000000000002,N/A,N/A +2012,7,24,1,30,101810,100660,99550,78.05,0,4.09,4.36,4.43,4.47,4.5,4.5200000000000005,4.54,4.5600000000000005,4.59,137.01,137.55,137.72,137.82,137.86,137.87,137.85,137.82,137.68,28.87,28.55,28.39,28.19,28.01,27.830000000000002,27.63,27.45,27.080000000000002,N/A,N/A +2012,7,24,2,30,101800,100650,99540,78.53,0,5.12,5.49,5.57,5.62,5.65,5.67,5.69,5.71,5.73,141.82,141.67000000000002,141.67000000000002,141.69,141.72,141.76,141.81,141.87,141.99,28.71,28.38,28.21,28.02,27.830000000000002,27.64,27.45,27.27,26.89,N/A,N/A +2012,7,24,3,30,101810,100670,99560,79.01,0,5.86,6.33,6.42,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,161.81,161.51,161.32,161.14000000000001,160.97,160.8,160.64000000000001,160.48,160.17000000000002,28.740000000000002,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,7,24,4,30,101810,100660,99550,79.54,0,5.51,5.9,5.96,5.99,6.01,6.0200000000000005,6.0200000000000005,6.01,6,148.43,148.68,148.78,148.88,148.97,149.07,149.16,149.25,149.44,28.5,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,24,5,30,101800,100650,99540,79.07000000000001,0,5.63,6.04,6.11,6.15,6.17,6.18,6.18,6.18,6.18,152.68,152.59,152.63,152.67000000000002,152.70000000000002,152.74,152.77,152.8,152.87,28.330000000000002,27.97,27.8,27.6,27.41,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,7,24,6,30,101830,100680,99570,72.74,0,5.33,5.73,5.8,5.83,5.84,5.8500000000000005,5.84,5.84,5.8100000000000005,146.95000000000002,147.11,147.18,147.25,147.3,147.35,147.4,147.45000000000002,147.55,28.54,28.2,28.03,27.84,27.650000000000002,27.46,27.26,27.07,26.69,N/A,N/A +2012,7,24,7,30,101840,100690,99580,67.15,0,5.74,6.15,6.2,6.22,6.21,6.2,6.18,6.16,6.1000000000000005,155.26,155.57,155.67000000000002,155.76,155.83,155.91,155.97,156.04,156.16,28.85,28.55,28.39,28.19,28,27.810000000000002,27.62,27.43,27.05,N/A,N/A +2012,7,24,8,30,101830,100680,99570,73.42,0,5.92,6.390000000000001,6.48,6.53,6.5600000000000005,6.59,6.61,6.62,6.640000000000001,173.14000000000001,173.16,173.18,173.20000000000002,173.23,173.26,173.29,173.32,173.39000000000001,28.55,28.21,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A +2012,7,24,9,30,101860,100710,99600,79.78,0,5.14,5.5,5.58,5.62,5.66,5.69,5.71,5.73,5.7700000000000005,171.29,171.72,171.85,171.93,171.99,172.03,172.06,172.08,172.1,28.32,27.98,27.810000000000002,27.61,27.42,27.23,27.04,26.85,26.48,N/A,N/A +2012,7,24,10,30,101890,100730,99620,80.28,0,3.81,4.07,4.12,4.16,4.2,4.22,4.25,4.2700000000000005,4.32,176.5,176.81,176.98,177.15,177.3,177.45000000000002,177.58,177.71,177.95000000000002,28.32,27.98,27.810000000000002,27.61,27.42,27.240000000000002,27.04,26.86,26.48,N/A,N/A +2012,7,24,11,30,101870,100720,99610,78.72,0,4.48,4.83,4.92,4.97,5.01,5.05,5.08,5.1000000000000005,5.15,173.9,174.15,174.24,174.3,174.34,174.37,174.39000000000001,174.4,174.41,28.43,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A +2012,7,24,12,30,101890,100740,99630,79.09,0,3.7800000000000002,4.0600000000000005,4.12,4.15,4.17,4.19,4.2,4.21,4.22,174.59,174.07,173.91,173.74,173.59,173.45000000000002,173.31,173.18,172.91,28.45,28.11,27.94,27.740000000000002,27.55,27.36,27.17,26.98,26.6,N/A,N/A +2012,7,24,13,30,101920,100770,99660,76.88,0,4.41,4.74,4.8100000000000005,4.8500000000000005,4.87,4.89,4.91,4.92,4.93,167.94,168.28,168.51,168.72,168.9,169.08,169.27,169.43,169.77,28.560000000000002,28.23,28.060000000000002,27.86,27.67,27.48,27.29,27.1,26.72,N/A,N/A +2012,7,24,14,30,101940,100790,99670,77.89,0,3.92,4.16,4.2,4.22,4.22,4.23,4.22,4.22,4.21,179.01,178.84,178.75,178.67000000000002,178.59,178.52,178.44,178.36,178.21,28.47,28.13,27.96,27.76,27.57,27.38,27.18,27,26.62,N/A,N/A +2012,7,24,15,30,101910,100760,99650,78.45,0,3.36,3.5500000000000003,3.58,3.6,3.61,3.62,3.62,3.63,3.63,185.04,185.56,185.91,186.26,186.58,186.88,187.19,187.49,188.08,28.41,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A +2012,7,24,16,30,101880,100730,99620,75.34,0,2.97,3.09,3.1,3.1,3.09,3.09,3.08,3.0700000000000003,3.04,197.02,197.19,197.23000000000002,197.26,197.27,197.28,197.28,197.28,197.24,28.44,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,7,24,17,30,101870,100720,99610,76.15,0,2.4,2.5100000000000002,2.52,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.52,2.52,192.68,191.52,190.89000000000001,190.25,189.65,189.07,188.5,187.97,186.8,28.37,28.02,27.84,27.64,27.45,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A +2012,7,24,18,30,101810,100660,99540,75.22,0,1.9000000000000001,1.95,1.95,1.94,1.93,1.92,1.9100000000000001,1.9000000000000001,1.8800000000000001,156.94,157.41,157.63,157.82,157.99,158.14000000000001,158.26,158.37,158.52,28.43,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A +2012,7,24,19,30,101780,100630,99520,74.69,0,2.4,2.52,2.54,2.5500000000000003,2.56,2.57,2.58,2.58,2.59,160.78,160.32,159.88,159.45000000000002,159.09,158.75,158.39000000000001,158.05,157.39000000000001,28.51,28.14,27.96,27.76,27.57,27.38,27.18,27,26.62,N/A,N/A +2012,7,24,20,30,101730,100580,99470,76.18,0,3.62,3.8200000000000003,3.85,3.87,3.89,3.89,3.9,3.9,3.91,170.11,169.94,169.81,169.69,169.59,169.51,169.43,169.35,169.22,28.57,28.21,28.03,27.830000000000002,27.64,27.45,27.26,27.07,26.7,N/A,N/A +2012,7,24,21,30,101710,100570,99450,75.18,0,3.64,3.85,3.88,3.89,3.9,3.91,3.91,3.92,3.92,162.20000000000002,162.54,162.73,162.93,163.12,163.31,163.51,163.71,164.14000000000001,28.69,28.34,28.16,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A +2012,7,24,22,30,101690,100540,99430,75.92,0,4.5,4.82,4.87,4.9,4.92,4.93,4.93,4.94,4.95,158.76,158.63,158.57,158.52,158.49,158.46,158.44,158.42000000000002,158.38,28.77,28.44,28.27,28.080000000000002,27.89,27.7,27.51,27.330000000000002,26.95,N/A,N/A +2012,7,24,23,30,101640,100500,99390,77.49,0,5.14,5.5,5.55,5.57,5.58,5.58,5.57,5.55,5.5200000000000005,150.23,150.43,150.58,150.72,150.84,150.97,151.11,151.24,151.54,28.68,28.35,28.18,27.990000000000002,27.8,27.61,27.42,27.240000000000002,26.86,N/A,N/A +2012,7,25,0,30,101650,100500,99390,78.29,0,5.8,6.26,6.36,6.41,6.45,6.48,6.49,6.51,6.5200000000000005,161.59,161.68,161.73,161.78,161.82,161.87,161.92000000000002,161.97,162.09,28.69,28.37,28.2,28.01,27.82,27.63,27.44,27.25,26.88,N/A,N/A +2012,7,25,1,30,101610,100470,99360,79.92,0,5.86,6.33,6.42,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,155.18,155.07,155.09,155.13,155.15,155.19,155.22,155.26,155.33,28.650000000000002,28.310000000000002,28.150000000000002,27.95,27.76,27.57,27.38,27.2,26.82,N/A,N/A +2012,7,25,2,30,101610,100460,99350,74.63,0,6.07,6.6000000000000005,6.72,6.78,6.83,6.86,6.890000000000001,6.91,6.95,149.98,149.95000000000002,149.94,149.91,149.87,149.83,149.78,149.72,149.57,29.03,28.73,28.57,28.38,28.2,28.01,27.82,27.64,27.27,N/A,N/A +2012,7,25,3,30,101610,100470,99360,81.83,0,7.5,8.17,8.33,8.42,8.49,8.540000000000001,8.58,8.620000000000001,8.67,160.66,160.8,160.8,160.77,160.73,160.68,160.63,160.56,160.41,28.830000000000002,28.51,28.36,28.16,27.98,27.79,27.61,27.43,27.060000000000002,N/A,N/A +2012,7,25,4,30,101560,100410,99300,86.60000000000001,0,6.86,7.44,7.5600000000000005,7.62,7.65,7.68,7.68,7.69,7.68,171.20000000000002,171.24,171.27,171.29,171.3,171.32,171.34,171.36,171.39000000000001,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,25,5,30,101560,100420,99310,84.24,0,7.07,7.67,7.8,7.86,7.91,7.930000000000001,7.95,7.96,7.97,181.61,181.69,181.74,181.78,181.81,181.83,181.85,181.86,181.87,28.55,28.2,28.03,27.830000000000002,27.650000000000002,27.46,27.26,27.080000000000002,26.7,N/A,N/A +2012,7,25,6,30,101580,100440,99330,85.37,0,7.43,8.07,8.22,8.3,8.36,8.39,8.41,8.43,8.44,197.53,197.41,197.32,197.22,197.13,197.03,196.95000000000002,196.86,196.68,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A +2012,7,25,7,30,101600,100460,99350,83.92,0,7.29,7.99,8.16,8.26,8.33,8.370000000000001,8.41,8.44,8.46,196.78,196.85,196.91,196.95000000000002,196.97,196.99,197,197,197.01,28.76,28.43,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A +2012,7,25,8,30,101610,100460,99350,79.94,0,7.390000000000001,8.05,8.2,8.28,8.33,8.36,8.370000000000001,8.39,8.4,201.84,201.93,201.87,201.79,201.70000000000002,201.61,201.5,201.4,201.16,28.72,28.38,28.21,28.01,27.830000000000002,27.64,27.44,27.26,26.88,N/A,N/A +2012,7,25,9,30,101600,100450,99340,80.31,0,7.18,7.83,7.99,8.08,8.14,8.18,8.22,8.24,8.28,203.98000000000002,204.03,204.04,204.06,204.07,204.08,204.1,204.12,204.15,28.62,28.28,28.11,27.91,27.72,27.53,27.330000000000002,27.150000000000002,26.77,N/A,N/A +2012,7,25,10,30,101610,100460,99350,79.18,0,7.08,7.72,7.87,7.95,8.01,8.040000000000001,8.07,8.09,8.11,204.73000000000002,204.58,204.63,204.69,204.76,204.83,204.91,204.98000000000002,205.13,28.69,28.35,28.17,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A +2012,7,25,11,30,101650,100500,99390,74.13,0,6.59,7.2,7.36,7.46,7.53,7.59,7.640000000000001,7.68,7.75,209.56,209.33,209.17000000000002,208.99,208.83,208.67000000000002,208.51,208.36,208.06,28.85,28.53,28.36,28.16,27.97,27.78,27.59,27.400000000000002,27.02,N/A,N/A +2012,7,25,12,30,101630,100490,99380,77.79,0,7.08,7.71,7.8500000000000005,7.930000000000001,7.97,8.01,8.02,8.03,8.040000000000001,201.87,202.20000000000002,202.41,202.61,202.79,202.96,203.13,203.29,203.59,28.63,28.3,28.13,27.93,27.740000000000002,27.54,27.35,27.16,26.78,N/A,N/A +2012,7,25,13,30,101700,100550,99440,77.01,0,6.46,6.97,7.07,7.11,7.140000000000001,7.15,7.15,7.140000000000001,7.12,200.54,200.86,201.01,201.16,201.28,201.39000000000001,201.48000000000002,201.57,201.74,28.650000000000002,28.310000000000002,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.79,N/A,N/A +2012,7,25,14,30,101700,100550,99440,70.62,0,5.99,6.43,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.61,6.61,6.61,211.5,211.46,211.42000000000002,211.37,211.33,211.28,211.23000000000002,211.17000000000002,211.06,28.85,28.54,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A +2012,7,25,15,30,101720,100580,99460,71.87,0,5.29,5.73,5.82,5.87,5.91,5.93,5.95,5.96,5.97,206.76,206.42000000000002,206.24,206.08,205.93,205.79,205.64000000000001,205.51,205.24,28.87,28.54,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A +2012,7,25,16,30,101670,100520,99410,71.74,0,5.62,6.08,6.19,6.25,6.29,6.33,6.3500000000000005,6.38,6.41,207.99,208.07,208.12,208.17000000000002,208.21,208.25,208.29,208.32,208.38,28.84,28.51,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A +2012,7,25,17,30,101660,100510,99400,76.24,0,5.32,5.72,5.8,5.84,5.87,5.9,5.91,5.93,5.95,200.98000000000002,201.29,201.43,201.59,201.73000000000002,201.86,201.99,202.11,202.37,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A +2012,7,25,18,30,101680,100530,99420,78.86,0,5.3100000000000005,5.74,5.84,5.91,5.96,6.01,6.04,6.07,6.13,190.73,191.12,191.31,191.49,191.65,191.81,191.96,192.11,192.39000000000001,28.71,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A +2012,7,25,19,30,101620,100470,99360,78.57000000000001,0,6.5200000000000005,6.99,7.09,7.13,7.16,7.17,7.18,7.18,7.17,194.51,194.75,194.9,195.06,195.21,195.34,195.49,195.64000000000001,195.95000000000002,28.77,28.42,28.25,28.05,27.86,27.67,27.48,27.29,26.92,N/A,N/A +2012,7,25,20,30,101580,100440,99330,80.43,0,5.73,6.16,6.26,6.3100000000000005,6.34,6.36,6.37,6.38,6.390000000000001,193.46,193.52,193.57,193.62,193.67000000000002,193.72,193.77,193.81,193.92000000000002,28.71,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.23,26.85,N/A,N/A +2012,7,25,21,30,101530,100390,99280,80.04,0,5.91,6.37,6.47,6.5200000000000005,6.5600000000000005,6.59,6.61,6.62,6.65,191.92000000000002,192.09,192.22,192.35,192.48000000000002,192.6,192.74,192.87,193.13,28.64,28.29,28.12,27.92,27.73,27.54,27.34,27.16,26.78,N/A,N/A +2012,7,25,22,30,101520,100370,99260,81.78,0,5.5200000000000005,5.95,6.04,6.09,6.13,6.16,6.18,6.2,6.22,184.56,184.94,185.20000000000002,185.44,185.65,185.86,186.05,186.22,186.58,28.59,28.25,28.080000000000002,27.87,27.68,27.490000000000002,27.3,27.11,26.73,N/A,N/A +2012,7,25,23,30,101470,100330,99220,80.61,0,5.79,6.22,6.3100000000000005,6.36,6.390000000000001,6.41,6.42,6.43,6.44,187.3,187.51,187.64000000000001,187.75,187.83,187.92000000000002,188,188.08,188.24,28.6,28.26,28.09,27.89,27.71,27.51,27.32,27.13,26.75,N/A,N/A +2012,7,26,0,30,101460,100310,99200,82.91,0,6.49,6.99,7.1000000000000005,7.140000000000001,7.17,7.19,7.2,7.2,7.19,185.4,185.32,185.35,185.39000000000001,185.43,185.47,185.52,185.56,185.66,28.740000000000002,28.41,28.25,28.04,27.86,27.67,27.48,27.29,26.91,N/A,N/A +2012,7,26,1,30,101380,100230,99130,82.21000000000001,0,6.5,7,7.09,7.12,7.13,7.13,7.11,7.1000000000000005,7.0600000000000005,182.97,182.99,183.11,183.26,183.41,183.56,183.72,183.87,184.21,28.560000000000002,28.22,28.05,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A +2012,7,26,2,30,101380,100240,99130,81.77,0,6.71,7.29,7.43,7.5,7.5600000000000005,7.59,7.61,7.63,7.65,184.37,184.82,185,185.15,185.28,185.39000000000001,185.5,185.6,185.81,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.63,N/A,N/A +2012,7,26,3,30,101360,100220,99110,81.73,0,6.96,7.57,7.7,7.78,7.84,7.88,7.91,7.930000000000001,7.97,191.59,191.33,191.31,191.3,191.29,191.28,191.28,191.27,191.25,28.44,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,7,26,4,30,101360,100220,99110,80.3,0,7.45,8.03,8.16,8.22,8.27,8.3,8.32,8.33,8.36,196.64000000000001,196.23000000000002,196.11,195.96,195.81,195.66,195.49,195.32,194.94,28.490000000000002,28.150000000000002,27.98,27.78,27.59,27.41,27.21,27.03,26.66,N/A,N/A +2012,7,26,5,30,101350,100210,99100,84.24,0,7.640000000000001,8.39,8.56,8.66,8.73,8.78,8.81,8.84,8.86,193.6,193.39000000000001,193.31,193.24,193.19,193.14000000000001,193.1,193.06,193,28.34,27.98,27.8,27.6,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A +2012,7,26,6,30,101380,100240,99130,82.75,0,8.18,8.99,9.18,9.28,9.35,9.4,9.43,9.450000000000001,9.46,199.23000000000002,199.18,199.07,198.96,198.85,198.74,198.63,198.52,198.29,28.45,28.1,27.93,27.72,27.53,27.34,27.14,26.96,26.57,N/A,N/A +2012,7,26,7,30,101370,100230,99120,79.13,0,8.97,9.82,10.03,10.14,10.22,10.27,10.32,10.35,10.39,192.15,192.22,192.24,192.25,192.26,192.26,192.26,192.26,192.24,28.66,28.330000000000002,28.17,27.97,27.78,27.6,27.400000000000002,27.22,26.85,N/A,N/A +2012,7,26,8,30,101400,100250,99140,79.14,0,9.01,9.84,10.05,10.16,10.23,10.290000000000001,10.33,10.36,10.41,197.91,197.44,197.28,197.16,197.06,196.99,196.92000000000002,196.87,196.79,28.59,28.25,28.080000000000002,27.88,27.7,27.51,27.32,27.13,26.76,N/A,N/A +2012,7,26,9,30,101430,100280,99180,76.18,0,8.61,9.52,9.74,9.870000000000001,9.96,10.02,10.06,10.09,10.120000000000001,202.23000000000002,202.42000000000002,202.43,202.4,202.37,202.32,202.27,202.22,202.08,28.72,28.39,28.22,28.01,27.82,27.63,27.43,27.25,26.86,N/A,N/A +2012,7,26,10,30,101420,100280,99170,75.77,0,7.640000000000001,8.4,8.59,8.700000000000001,8.78,8.84,8.89,8.93,8.99,198.05,198.51,198.72,198.92000000000002,199.09,199.26,199.43,199.59,199.91,28.76,28.43,28.26,28.07,27.88,27.7,27.5,27.32,26.94,N/A,N/A +2012,7,26,11,30,101470,100330,99220,78.43,0,7.91,8.58,8.71,8.76,8.78,8.790000000000001,8.790000000000001,8.78,8.74,197.41,197.44,197.49,197.53,197.57,197.62,197.66,197.70000000000002,197.79,28.62,28.3,28.13,27.93,27.740000000000002,27.55,27.36,27.18,26.8,N/A,N/A +2012,7,26,12,30,101500,100350,99240,71.92,0,7.42,8.11,8.290000000000001,8.4,8.48,8.55,8.6,8.65,8.73,206.89000000000001,206.51,206.31,206.14000000000001,205.99,205.86,205.73000000000002,205.6,205.37,29,28.71,28.55,28.36,28.18,27.990000000000002,27.8,27.62,27.25,N/A,N/A +2012,7,26,13,30,101540,100400,99290,72.81,0,6.34,6.86,6.98,7.05,7.1000000000000005,7.140000000000001,7.18,7.21,7.26,199.57,199.49,199.51,199.57,199.64000000000001,199.71,199.79,199.87,200.07,28.93,28.63,28.48,28.28,28.1,27.92,27.73,27.55,27.18,N/A,N/A +2012,7,26,14,30,101560,100420,99310,71.27,0,5.18,5.71,5.84,5.92,6,6.0600000000000005,6.11,6.16,6.26,197.69,198.17000000000002,198.45000000000002,198.72,198.97,199.22,199.46,199.68,200.14000000000001,29.05,28.75,28.580000000000002,28.39,28.21,28.02,27.830000000000002,27.650000000000002,27.27,N/A,N/A +2012,7,26,15,30,101590,100440,99330,73.7,0,6.2700000000000005,6.82,6.93,6.99,7.0200000000000005,7.04,7.05,7.0600000000000005,7.0600000000000005,191.46,191.46,191.46,191.49,191.51,191.53,191.55,191.57,191.61,28.97,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A +2012,7,26,16,30,101600,100450,99340,70.81,0,6.0200000000000005,6.47,6.5600000000000005,6.6000000000000005,6.62,6.63,6.640000000000001,6.640000000000001,6.65,190.13,190.07,190.04,190.01,190,189.98,189.98,189.97,189.98,29.09,28.79,28.62,28.43,28.25,28.060000000000002,27.87,27.68,27.310000000000002,N/A,N/A +2012,7,26,17,30,101550,100410,99300,71.08,0,5.91,6.44,6.55,6.62,6.67,6.7,6.74,6.76,6.8,185.52,185.63,185.70000000000002,185.75,185.8,185.85,185.9,185.94,186.03,29.14,28.830000000000002,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,7,26,18,30,101560,100420,99310,68.74,0,5.46,5.93,6.03,6.09,6.13,6.16,6.19,6.21,6.24,188.03,188.16,188.21,188.26,188.31,188.36,188.4,188.44,188.52,29.34,29.04,28.87,28.68,28.490000000000002,28.3,28.11,27.92,27.54,N/A,N/A +2012,7,26,19,30,101540,100400,99290,69.96000000000001,0,6.11,6.6000000000000005,6.69,6.73,6.75,6.76,6.76,6.75,6.74,180.98,181.14000000000001,181.24,181.3,181.35,181.38,181.42000000000002,181.46,181.53,29.3,29,28.830000000000002,28.63,28.45,28.26,28.060000000000002,27.88,27.5,N/A,N/A +2012,7,26,20,30,101510,100370,99260,71.12,0,6.18,6.67,6.75,6.78,6.78,6.78,6.78,6.76,6.73,178.02,177.83,177.75,177.70000000000002,177.67000000000002,177.64000000000001,177.63,177.63,177.66,29.23,28.93,28.77,28.57,28.39,28.2,28.01,27.82,27.44,N/A,N/A +2012,7,26,21,30,101470,100330,99220,73.88,0,6.68,7.25,7.36,7.41,7.44,7.45,7.46,7.46,7.45,169.95000000000002,169.89000000000001,169.85,169.8,169.77,169.73,169.70000000000002,169.67000000000002,169.6,29.080000000000002,28.77,28.61,28.41,28.22,28.04,27.85,27.66,27.28,N/A,N/A +2012,7,26,22,30,101450,100310,99200,74.75,0,6.67,7.22,7.32,7.37,7.390000000000001,7.4,7.41,7.41,7.390000000000001,169.49,169.58,169.67000000000002,169.73,169.78,169.82,169.86,169.9,169.99,28.96,28.650000000000002,28.490000000000002,28.29,28.11,27.92,27.73,27.54,27.17,N/A,N/A +2012,7,26,23,30,101440,100290,99180,80.31,0,7.21,7.84,7.97,8.040000000000001,8.08,8.11,8.120000000000001,8.13,8.13,171.35,171.48,171.54,171.6,171.64000000000001,171.68,171.72,171.76,171.84,28.740000000000002,28.41,28.25,28.05,27.86,27.67,27.48,27.29,26.92,N/A,N/A +2012,7,27,0,30,101400,100260,99150,82.09,0,6.19,6.75,6.890000000000001,6.98,7.05,7.1000000000000005,7.15,7.19,7.26,172.70000000000002,173.29,173.39000000000001,173.45000000000002,173.49,173.51,173.52,173.52,173.5,28.650000000000002,28.32,28.150000000000002,27.95,27.76,27.57,27.37,27.19,26.810000000000002,N/A,N/A +2012,7,27,1,30,101410,100270,99160,84.99,0,7.79,8.43,8.55,8.61,8.65,8.67,8.68,8.68,8.67,169.69,170.15,170.32,170.49,170.64000000000001,170.79,170.93,171.07,171.35,28.490000000000002,28.14,27.96,27.76,27.57,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,7,27,2,30,101400,100260,99150,87.37,0,8,8.77,8.950000000000001,9.06,9.13,9.18,9.21,9.24,9.27,168.06,167.98,167.97,167.98,167.99,168.01,168.04,168.06,168.12,28.43,28.07,27.89,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,27,3,30,101420,100270,99170,84.04,0,7.61,8.32,8.48,8.57,8.63,8.67,8.69,8.71,8.73,170.94,170.99,170.97,170.96,170.95000000000002,170.95000000000002,170.95000000000002,170.95000000000002,170.95000000000002,28.45,28.1,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A +2012,7,27,4,30,101430,100290,99180,82.07000000000001,0,7.49,8.21,8.38,8.48,8.55,8.6,8.64,8.67,8.72,174.96,175.02,175,174.97,174.95000000000002,174.92000000000002,174.89000000000001,174.85,174.79,28.53,28.18,28.01,27.810000000000002,27.61,27.42,27.23,27.04,26.66,N/A,N/A +2012,7,27,5,30,101450,100310,99200,83.46000000000001,0,7.37,8.06,8.22,8.32,8.38,8.41,8.44,8.45,8.45,174.39000000000001,174.29,174.31,174.35,174.41,174.47,174.54,174.61,174.76,28.48,28.12,27.95,27.75,27.55,27.36,27.16,26.97,26.59,N/A,N/A +2012,7,27,6,30,101490,100350,99240,82.53,0,8.120000000000001,8.89,9.07,9.17,9.24,9.290000000000001,9.32,9.34,9.370000000000001,176.19,176.01,175.96,175.91,175.87,175.83,175.79,175.76,175.67000000000002,28.51,28.16,27.990000000000002,27.79,27.6,27.41,27.21,27.03,26.650000000000002,N/A,N/A +2012,7,27,7,30,101520,100370,99260,82.4,0,7.25,7.930000000000001,8.08,8.16,8.22,8.26,8.28,8.290000000000001,8.290000000000001,174.89000000000001,174.91,174.92000000000002,174.95000000000002,174.98,175.01,175.05,175.08,175.15,28.53,28.19,28.01,27.810000000000002,27.62,27.43,27.23,27.05,26.66,N/A,N/A +2012,7,27,8,30,101520,100380,99270,80.83,0,6.75,7.34,7.48,7.55,7.59,7.62,7.640000000000001,7.65,7.65,175.6,175.76,175.84,175.93,176.02,176.1,176.19,176.29,176.47,28.67,28.35,28.18,27.98,27.79,27.6,27.400000000000002,27.21,26.830000000000002,N/A,N/A +2012,7,27,9,30,101560,100420,99310,81.86,0,5.94,6.44,6.55,6.6000000000000005,6.640000000000001,6.67,6.69,6.7,6.72,168.71,168.82,168.88,168.94,168.99,169.04,169.08,169.13,169.21,28.71,28.38,28.21,28.01,27.830000000000002,27.64,27.44,27.25,26.87,N/A,N/A +2012,7,27,10,30,101560,100410,99300,84.01,0,6.98,7.57,7.69,7.74,7.78,7.8,7.8100000000000005,7.82,7.82,164.14000000000001,164.31,164.42000000000002,164.53,164.63,164.72,164.8,164.88,165.06,28.64,28.310000000000002,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.8,N/A,N/A +2012,7,27,11,30,101610,100460,99350,82.83,0,5.6000000000000005,6.09,6.2,6.2700000000000005,6.3100000000000005,6.3500000000000005,6.38,6.4,6.43,169.23,169.51,169.68,169.84,169.99,170.13,170.28,170.41,170.71,28.8,28.47,28.3,28.11,27.92,27.73,27.53,27.35,26.97,N/A,N/A +2012,7,27,12,30,101620,100480,99370,84.06,0,5.72,6.18,6.28,6.33,6.37,6.38,6.4,6.4,6.4,163.32,163.20000000000002,163.15,163.11,163.07,163.03,162.99,162.95000000000002,162.87,28.8,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A +2012,7,27,13,30,101660,100510,99400,84.56,0,4.07,4.36,4.43,4.49,4.53,4.5600000000000005,4.59,4.61,4.65,174.56,172.96,171.99,171.06,170.29,169.59,168.96,168.39000000000001,167.33,28.69,28.37,28.21,28.01,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A +2012,7,27,14,30,101870,100700,99570,93.51,244.3,9.77,10.35,10.41,10.32,10.21,10.07,9.9,9.74,9.44,196.45000000000002,197.6,198.56,199.73000000000002,200.86,202.03,203.51,205.02,210.20000000000002,24.45,23.88,23.68,23.490000000000002,23.32,23.16,23.01,22.87,22.62,N/A,N/A +2012,7,27,15,30,101860,100690,99550,93.28,146.1,7.08,7.11,6.94,6.69,6.3500000000000005,6,5.47,4.98,4.3,163.87,164.24,164.77,165.45000000000002,166.27,167.1,168.36,169.52,172.88,23.81,23.32,23.150000000000002,23.02,22.91,22.82,22.76,22.71,22.68,N/A,N/A +2012,7,27,16,30,101720,100550,99430,81.25,4.800000000000001,3.36,3.33,3.23,3.1,3.0100000000000002,2.95,2.85,2.7600000000000002,2.79,190.94,188.37,185.95000000000002,182.27,176.31,169.15,166.21,164.55,152.05,24.77,24.43,24.37,24.39,24.68,25.13,25.43,25.66,26.03,N/A,N/A +2012,7,27,17,30,101730,100570,99450,79.48,0,4.71,4.76,4.67,4.53,4.29,4.01,3.46,2.95,2.29,185.70000000000002,185.36,185.32,185.34,185.84,186.63,189.88,193.14000000000001,203.81,25.75,25.37,25.22,25.07,25,24.98,25.240000000000002,25.560000000000002,26.060000000000002,N/A,N/A +2012,7,27,18,30,101760,100600,99480,72.35000000000001,0,3.0100000000000002,2.99,2.89,2.75,2.37,1.93,1.55,1.27,0.9400000000000001,108.34,108.65,109.16,109.95,111.88,114.11,116,117.43,124.11,27.18,26.85,26.7,26.55,26.61,26.810000000000002,26.990000000000002,27.150000000000002,27.07,N/A,N/A +2012,7,27,19,30,101750,100600,99480,74.37,0,5.37,5.59,5.59,5.54,5.49,5.43,5.36,5.28,5.08,179.79,180.36,180.73,181.15,181.59,182.04,182.58,183.12,184.6,27.27,26.89,26.71,26.53,26.35,26.18,26.01,25.86,25.580000000000002,N/A,N/A +2012,7,27,20,30,101750,100590,99470,72.10000000000001,0,2.98,3.06,3.0500000000000003,3.0100000000000002,2.97,2.93,2.87,2.8000000000000003,2.58,181.73,181.45000000000002,181.13,180.74,180.24,179.66,178.92000000000002,178.20000000000002,176.49,27.03,26.66,26.490000000000002,26.310000000000002,26.14,25.97,25.82,25.68,25.48,N/A,N/A +2012,7,27,21,30,101750,100600,99480,73.02,0,3.3200000000000003,3.44,3.45,3.43,3.42,3.4,3.38,3.36,3.33,147.07,147.95000000000002,148.59,149.28,149.98,150.69,151.53,152.35,154.62,27.53,27.17,26.990000000000002,26.810000000000002,26.63,26.45,26.27,26.11,25.84,N/A,N/A +2012,7,27,22,30,101720,100570,99450,72.23,0,2.05,2.12,2.12,2.11,2.1,2.09,2.07,2.05,1.97,128.23,128.49,128.64000000000001,128.78,128.96,129.17000000000002,129.53,129.91,132.67000000000002,27.8,27.46,27.29,27.1,26.92,26.740000000000002,26.57,26.41,26.2,N/A,N/A +2012,7,27,23,30,101680,100530,99420,80.16,0,3.15,3.29,3.31,3.31,3.31,3.31,3.3000000000000003,3.3000000000000003,3.27,170.09,170.41,170.58,170.78,171,171.24,171.52,171.8,172.73,27.94,27.59,27.42,27.23,27.04,26.86,26.67,26.490000000000002,26.150000000000002,N/A,N/A +2012,7,28,0,30,101620,100470,99360,78.78,0,3.18,3.34,3.36,3.37,3.38,3.37,3.37,3.37,3.37,205.54,205.51,205.52,205.53,205.55,205.59,205.64000000000001,205.71,205.99,28.18,27.84,27.68,27.48,27.3,27.11,26.93,26.75,26.41,N/A,N/A +2012,7,28,1,30,101600,100450,99340,77.56,0,4.2,4.45,4.48,4.49,4.49,4.49,4.48,4.47,4.43,188.04,188.19,188.29,188.4,188.53,188.65,188.78,188.92000000000002,189.25,28.28,27.94,27.77,27.57,27.38,27.19,27,26.810000000000002,26.44,N/A,N/A +2012,7,28,2,30,101630,100480,99370,78.49,0,4.96,5.2700000000000005,5.32,5.32,5.32,5.3,5.29,5.26,5.21,179.85,179.97,180.01,180.06,180.11,180.16,180.22,180.27,180.42000000000002,28.36,28.01,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A +2012,7,28,3,30,101680,100540,99420,74.99,0,4.71,5.0200000000000005,5.07,5.09,5.1000000000000005,5.1000000000000005,5.09,5.08,5.05,179.5,179.56,179.57,179.6,179.63,179.66,179.70000000000002,179.74,179.86,28.560000000000002,28.23,28.060000000000002,27.87,27.68,27.5,27.3,27.12,26.740000000000002,N/A,N/A +2012,7,28,4,30,101710,100560,99450,74.98,0,4.65,4.94,4.99,5,5,4.99,4.97,4.96,4.91,175.43,175.61,175.72,175.82,175.92000000000002,176.03,176.14000000000001,176.26,176.54,28.55,28.22,28.060000000000002,27.86,27.68,27.490000000000002,27.3,27.12,26.740000000000002,N/A,N/A +2012,7,28,5,30,101720,100570,99460,79.17,0,5.58,6.01,6.09,6.13,6.16,6.17,6.18,6.18,6.18,182.91,183.03,183.08,183.13,183.18,183.23,183.28,183.32,183.42000000000002,28.43,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.59,N/A,N/A +2012,7,28,6,30,101750,100600,99490,79.93,0,6.37,6.88,6.99,7.04,7.08,7.1000000000000005,7.11,7.11,7.11,186.76,186.72,186.70000000000002,186.68,186.66,186.63,186.61,186.59,186.54,28.43,28.07,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A +2012,7,28,7,30,101750,100600,99480,81.22,0,7.25,7.87,8.01,8.08,8.120000000000001,8.15,8.17,8.18,8.19,194.82,194.79,194.74,194.68,194.63,194.58,194.53,194.47,194.37,28.45,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.59,N/A,N/A +2012,7,28,8,30,101790,100640,99530,81.23,0,6.25,6.78,6.9,6.97,7.0200000000000005,7.05,7.07,7.09,7.1000000000000005,209.52,209.48000000000002,209.39000000000001,209.3,209.21,209.11,209.02,208.94,208.76,28.47,28.11,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.59,N/A,N/A +2012,7,28,9,30,101810,100660,99550,77.63,0,5.69,6.12,6.2,6.24,6.2700000000000005,6.28,6.29,6.3,6.3,219.04,219.06,219,218.94,218.89000000000001,218.83,218.78,218.73000000000002,218.65,28.52,28.18,28,27.8,27.61,27.43,27.23,27.04,26.66,N/A,N/A +2012,7,28,10,30,101810,100660,99550,82.04,0,5.08,5.44,5.51,5.55,5.58,5.6000000000000005,5.61,5.62,5.63,235.64000000000001,235.39000000000001,235.24,235.08,234.93,234.77,234.61,234.47,234.12,28.36,28.01,27.84,27.64,27.45,27.26,27.07,26.88,26.5,N/A,N/A +2012,7,28,11,30,101800,100650,99540,82.57000000000001,0,3.86,4.09,4.14,4.16,4.17,4.18,4.19,4.2,4.21,254.54,254.28,254.04,253.8,253.59,253.39000000000001,253.18,252.97,252.56,28.29,27.94,27.76,27.57,27.37,27.18,26.990000000000002,26.8,26.42,N/A,N/A +2012,7,28,12,30,101820,100670,99560,83.10000000000001,0,3.96,4.17,4.2,4.21,4.21,4.21,4.2,4.18,4.16,285.19,284.76,284.40000000000003,284.05,283.73,283.41,283.09000000000003,282.8,282.18,28.21,27.85,27.68,27.47,27.28,27.09,26.89,26.71,26.32,N/A,N/A +2012,7,28,13,30,101860,100700,99590,84.71000000000001,0,3.75,3.87,3.86,3.83,3.79,3.74,3.69,3.64,3.5100000000000002,329.22,328.85,328.72,328.55,328.34000000000003,328.11,327.78000000000003,327.44,326.29,27.72,27.35,27.17,26.97,26.79,26.6,26.41,26.23,25.86,N/A,N/A +2012,7,28,14,30,101940,100790,99670,84.41,0,4.1,4.3500000000000005,4.4,4.43,4.46,4.47,4.49,4.51,4.55,279.86,279.37,279.04,278.73,278.42,278.09000000000003,277.74,277.39,276.58,27.78,27.41,27.23,27.03,26.84,26.650000000000002,26.46,26.27,25.900000000000002,N/A,N/A +2012,7,28,15,30,102010,100850,99720,90.16,0,11.03,11.950000000000001,12.16,12.24,12.280000000000001,12.3,12.290000000000001,12.27,12.22,220.76,220.91,221,221.11,221.21,221.32,221.44,221.56,221.89000000000001,26.1,25.57,25.37,25.150000000000002,24.96,24.77,24.580000000000002,24.400000000000002,24.05,N/A,N/A +2012,7,28,16,30,101960,100800,99680,86.82000000000001,0,8.1,8.700000000000001,8.8,8.84,8.85,8.85,8.83,8.81,8.75,220.66,220.8,220.85,220.91,220.96,221.01,221.07,221.13,221.31,26.6,26.13,25.93,25.73,25.53,25.34,25.150000000000002,24.97,24.59,N/A,N/A +2012,7,28,17,30,101950,100790,99670,80.21000000000001,0,5.76,6.1000000000000005,6.16,6.17,6.18,6.18,6.17,6.16,6.140000000000001,219.61,220.20000000000002,220.61,221.04,221.47,221.9,222.38,222.85,224.02,27.16,26.75,26.57,26.37,26.18,25.990000000000002,25.8,25.62,25.25,N/A,N/A +2012,7,28,18,30,101900,100740,99620,80.11,0,4.29,4.5,4.5200000000000005,4.5200000000000005,4.51,4.5,4.49,4.47,4.43,222.68,223.49,223.92000000000002,224.38,224.84,225.31,225.86,226.4,227.86,27.19,26.8,26.61,26.42,26.23,26.04,25.85,25.67,25.3,N/A,N/A +2012,7,28,19,30,101860,100700,99580,79.28,0,4.21,4.42,4.44,4.45,4.45,4.44,4.43,4.43,4.46,229.71,230.09,230.49,230.92000000000002,231.4,231.91,232.62,233.32,236.45000000000002,27.52,27.13,26.96,26.76,26.580000000000002,26.400000000000002,26.22,26.05,25.75,N/A,N/A +2012,7,28,20,30,101810,100660,99540,77.86,0,4.58,4.8,4.8,4.78,4.75,4.71,4.66,4.61,4.34,218.71,219.27,219.6,220,220.5,221.07,222.14000000000001,223.31,231.38,27.990000000000002,27.63,27.45,27.26,27.080000000000002,26.91,26.740000000000002,26.59,26.47,N/A,N/A +2012,7,28,21,30,101810,100660,99550,80.97,0,8.03,8.66,8.77,8.8,8.8,8.8,8.77,8.74,8.66,201,201.11,201.20000000000002,201.29,201.37,201.46,201.56,201.65,201.9,28.25,27.88,27.71,27.51,27.32,27.13,26.94,26.76,26.39,N/A,N/A +2012,7,28,22,30,101750,100600,99490,81.91,0,8.33,9.02,9.13,9.17,9.18,9.17,9.15,9.13,9.040000000000001,206.35,206.54,206.61,206.68,206.75,206.82,206.91,206.98000000000002,207.19,28.27,27.900000000000002,27.72,27.52,27.330000000000002,27.150000000000002,26.96,26.78,26.41,N/A,N/A +2012,7,28,23,30,101730,100580,99470,78.78,0,8.05,8.73,8.85,8.9,8.92,8.93,8.92,8.9,8.85,209.24,209.26,209.28,209.3,209.31,209.31,209.32,209.32,209.32,28.38,28.02,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A +2012,7,29,0,30,101690,100540,99430,78.96000000000001,0,7.37,7.91,8,8.01,8.01,8,7.97,7.930000000000001,7.84,210.16,210.37,210.44,210.52,210.62,210.72,210.86,210.99,211.39000000000001,28.29,27.93,27.75,27.560000000000002,27.38,27.19,27,26.830000000000002,26.48,N/A,N/A +2012,7,29,1,30,101670,100530,99410,75.9,0,6.26,6.7,6.76,6.78,6.78,6.7700000000000005,6.75,6.73,6.66,212.84,213.17000000000002,213.31,213.47,213.64000000000001,213.82,214.04,214.25,214.88,28.41,28.060000000000002,27.89,27.7,27.51,27.330000000000002,27.14,26.96,26.6,N/A,N/A +2012,7,29,2,30,101680,100530,99420,75.58,0,5.82,6.21,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.25,6.23,6.2,6.140000000000001,205.08,205.23000000000002,205.41,205.59,205.78,205.97,206.21,206.44,207.16,28.53,28.2,28.03,27.830000000000002,27.650000000000002,27.47,27.28,27.11,26.76,N/A,N/A +2012,7,29,3,30,101660,100510,99400,78.55,0,5.74,6.13,6.18,6.2,6.19,6.18,6.16,6.140000000000001,6.08,212.70000000000002,212.89000000000001,213,213.14000000000001,213.27,213.41,213.6,213.8,214.4,28.44,28.1,27.93,27.740000000000002,27.55,27.37,27.18,27,26.650000000000002,N/A,N/A +2012,7,29,4,30,101630,100480,99370,78.87,0,6.3,6.78,6.8500000000000005,6.88,6.890000000000001,6.890000000000001,6.88,6.88,6.8500000000000005,223.31,223.51,223.61,223.72,223.84,223.95000000000002,224.09,224.23000000000002,224.6,28.5,28.150000000000002,27.98,27.79,27.61,27.42,27.23,27.05,26.69,N/A,N/A +2012,7,29,5,30,101650,100500,99390,80.03,0,6.13,6.59,6.66,6.69,6.71,6.71,6.7,6.7,6.67,226.34,226.45000000000002,226.55,226.67000000000002,226.78,226.9,227.03,227.16,227.48000000000002,28.44,28.1,27.93,27.73,27.54,27.36,27.17,26.990000000000002,26.62,N/A,N/A +2012,7,29,6,30,101680,100540,99420,80.22,0,6.15,6.63,6.72,6.7700000000000005,6.8,6.82,6.83,6.84,6.84,225.37,225.63,225.73000000000002,225.83,225.92000000000002,226.02,226.12,226.21,226.43,28.48,28.13,27.96,27.76,27.57,27.38,27.19,27,26.63,N/A,N/A +2012,7,29,7,30,101690,100540,99430,78.83,0,5.82,6.26,6.3500000000000005,6.390000000000001,6.41,6.42,6.43,6.43,6.41,232.09,232.21,232.28,232.35,232.42000000000002,232.49,232.57,232.64000000000001,232.8,28.6,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.13,26.740000000000002,N/A,N/A +2012,7,29,8,30,101710,100560,99450,80.34,0,5.65,6.0600000000000005,6.140000000000001,6.17,6.19,6.2,6.2,6.2,6.19,234.1,234.24,234.31,234.38,234.44,234.49,234.55,234.6,234.72,28.51,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A +2012,7,29,9,30,101720,100580,99460,80.35000000000001,0,5.91,6.37,6.45,6.5,6.5200000000000005,6.54,6.55,6.55,6.55,244.99,245.08,245.12,245.16,245.21,245.24,245.29,245.33,245.43,28.5,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,29,10,30,101740,100590,99480,78.02,0,5.25,5.62,5.69,5.73,5.75,5.76,5.76,5.76,5.75,250.03,250.28,250.36,250.45000000000002,250.52,250.59,250.67000000000002,250.73000000000002,250.87,28.580000000000002,28.240000000000002,28.060000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A +2012,7,29,11,30,101760,100610,99500,80.22,0,5.32,5.63,5.67,5.67,5.67,5.65,5.63,5.61,5.5600000000000005,270.55,269.74,269.21,268.65,268.12,267.61,267.06,266.55,265.47,28.41,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A +2012,7,29,12,30,101790,100640,99530,81.52,0,5.23,5.53,5.57,5.57,5.57,5.55,5.53,5.51,5.45,281.96,280.98,280.43,279.86,279.32,278.8,278.25,277.73,276.58,27.92,27.54,27.36,27.17,26.97,26.79,26.6,26.41,26.04,N/A,N/A +2012,7,29,13,30,101800,100650,99530,80.92,0,4.98,5.28,5.33,5.34,5.34,5.34,5.34,5.33,5.32,285.09000000000003,284.63,284.36,284.07,283.77,283.48,283.13,282.79,281.91,27.72,27.34,27.16,26.96,26.78,26.59,26.400000000000002,26.22,25.85,N/A,N/A +2012,7,29,14,30,101840,100690,99570,76.67,0,4.08,4.32,4.36,4.38,4.39,4.4,4.4,4.41,4.42,285.56,285.95,286.13,286.31,286.49,286.65000000000003,286.82,286.98,287.3,28.04,27.68,27.5,27.3,27.11,26.93,26.740000000000002,26.560000000000002,26.19,N/A,N/A +2012,7,29,15,30,101810,100660,99550,73.8,0,3.3200000000000003,3.52,3.56,3.58,3.6,3.62,3.63,3.65,3.68,287.69,287.38,287.23,287.08,286.94,286.81,286.67,286.54,286.3,28.36,28.01,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.900000000000002,26.52,N/A,N/A +2012,7,29,16,30,101810,100660,99540,74.58,0,2.18,2.2800000000000002,2.29,2.29,2.29,2.29,2.3000000000000003,2.3000000000000003,2.3000000000000003,248.56,250.07,251,251.94,252.85,253.75,254.74,255.68,257.87,28.55,28.2,28.03,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.71,N/A,N/A +2012,7,29,17,30,101780,100630,99520,73.02,0,1.1,1.11,1.11,1.1,1.09,1.08,1.07,1.06,1.03,231.87,233.24,234.25,235.33,236.45000000000002,237.59,239.05,240.51,244.44,28.78,28.44,28.26,28.07,27.88,27.69,27.5,27.32,26.95,N/A,N/A +2012,7,29,18,30,101770,100620,99510,73.02,0,0.72,0.74,0.73,0.72,0.71,0.7000000000000001,0.68,0.67,0.63,160.41,161.89000000000001,162.65,163.48,164.36,165.29,166.37,167.41,170.55,28.98,28.63,28.45,28.26,28.07,27.88,27.69,27.51,27.14,N/A,N/A +2012,7,29,19,30,101740,100590,99480,71.03,0,4.43,4.66,4.67,4.65,4.63,4.61,4.57,4.54,4.44,184.33,184.48,184.54,184.61,184.69,184.75,184.83,184.92000000000002,185.19,29.35,28.990000000000002,28.82,28.62,28.44,28.25,28.05,27.87,27.5,N/A,N/A +2012,7,29,20,30,101650,100500,99400,71.54,0,4.1,4.3,4.3,4.2700000000000005,4.24,4.2,4.14,4.07,3.79,190.28,190.31,190.34,190.38,190.41,190.45000000000002,190.5,190.57,191.04,29.38,29.04,28.87,28.69,28.5,28.32,28.14,27.97,27.68,N/A,N/A +2012,7,29,21,30,101640,100500,99390,72.33,0,4.87,5.18,5.21,5.19,5.17,5.15,5.1000000000000005,5.0600000000000005,4.91,195.62,195.68,195.73000000000002,195.8,195.88,195.96,196.1,196.23000000000002,196.75,29.6,29.29,29.13,28.94,28.76,28.580000000000002,28.400000000000002,28.22,27.91,N/A,N/A +2012,7,29,22,30,101610,100460,99350,76.36,0,6.25,6.7700000000000005,6.84,6.86,6.86,6.86,6.84,6.82,6.76,207.59,207.6,207.62,207.63,207.64000000000001,207.65,207.65,207.65,207.65,29.42,29.12,28.96,28.77,28.580000000000002,28.400000000000002,28.22,28.04,27.68,N/A,N/A +2012,7,29,23,30,101580,100430,99320,80.61,0,6.75,7.3100000000000005,7.41,7.45,7.46,7.46,7.46,7.44,7.390000000000001,210.26,210.24,210.22,210.19,210.16,210.12,210.08,210.04,209.93,29.03,28.7,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A +2012,7,30,0,30,101510,100370,99260,80.3,0,5.89,6.36,6.43,6.46,6.48,6.49,6.49,6.49,6.49,209.05,209.05,209.04,209.02,209,208.99,208.97,208.94,208.88,29.02,28.7,28.54,28.35,28.17,27.990000000000002,27.8,27.63,27.29,N/A,N/A +2012,7,30,1,30,101490,100340,99230,81.79,0,6.13,6.59,6.66,6.67,6.67,6.66,6.640000000000001,6.62,6.55,219.85,219.87,219.85,219.83,219.79,219.76,219.72,219.68,219.55,28.830000000000002,28.5,28.330000000000002,28.13,27.95,27.76,27.57,27.39,27.01,N/A,N/A +2012,7,30,2,30,101490,100350,99240,81.32000000000001,0,6.8100000000000005,7.3500000000000005,7.44,7.48,7.49,7.49,7.48,7.47,7.43,218.34,218.29,218.3,218.29,218.28,218.26,218.23000000000002,218.21,218.13,28.830000000000002,28.5,28.330000000000002,28.13,27.95,27.76,27.57,27.39,27.02,N/A,N/A +2012,7,30,3,30,101490,100350,99240,81.05,0,6.69,7.2,7.28,7.3,7.3,7.29,7.2700000000000005,7.24,7.17,216.01,216,216.02,216.03,216.04,216.04,216.04,216.04,216.01,28.79,28.45,28.28,28.09,27.900000000000002,27.72,27.53,27.35,26.98,N/A,N/A +2012,7,30,4,30,101490,100340,99230,81.93,0,6.73,7.25,7.32,7.3500000000000005,7.3500000000000005,7.3500000000000005,7.32,7.3,7.24,211.04,211.13,211.14000000000001,211.15,211.15,211.14000000000001,211.13,211.1,211.02,28.78,28.44,28.27,28.080000000000002,27.89,27.71,27.52,27.34,26.990000000000002,N/A,N/A +2012,7,30,5,30,101480,100340,99230,84.49,0,6.7,7.22,7.3100000000000005,7.3500000000000005,7.36,7.36,7.3500000000000005,7.33,7.29,215.72,215.6,215.55,215.49,215.43,215.37,215.29,215.21,215.04,28.64,28.3,28.12,27.93,27.73,27.55,27.36,27.17,26.8,N/A,N/A +2012,7,30,6,30,101500,100360,99250,86.71000000000001,0,6.55,7.07,7.18,7.23,7.25,7.2700000000000005,7.2700000000000005,7.2700000000000005,7.26,216.62,216.61,216.59,216.56,216.54,216.51,216.49,216.46,216.39000000000001,28.48,28.13,27.96,27.76,27.57,27.38,27.19,27,26.63,N/A,N/A +2012,7,30,7,30,101530,100380,99280,85.84,0,6.04,6.51,6.6000000000000005,6.65,6.68,6.7,6.7,6.7,6.7,222.53,222.65,222.67000000000002,222.69,222.71,222.74,222.77,222.8,222.85,28.48,28.13,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,7,30,8,30,101540,100390,99290,82.97,0,6.08,6.5600000000000005,6.66,6.72,6.75,6.78,6.79,6.8,6.8100000000000005,232.5,232.5,232.49,232.48000000000002,232.46,232.44,232.42000000000002,232.4,232.34,28.54,28.19,28.01,27.82,27.63,27.44,27.240000000000002,27.060000000000002,26.67,N/A,N/A +2012,7,30,9,30,101570,100430,99320,79.68,0,7.07,7.640000000000001,7.75,7.8,7.83,7.86,7.86,7.87,7.86,233.05,233.06,233.02,232.97,232.92000000000002,232.86,232.8,232.74,232.59,28.6,28.26,28.080000000000002,27.89,27.69,27.51,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,30,10,30,101590,100450,99340,80.44,0,6.15,6.67,6.7700000000000005,6.83,6.87,6.890000000000001,6.91,6.93,6.94,242.11,242.21,242.26,242.29,242.33,242.35,242.38,242.4,242.45000000000002,28.61,28.27,28.09,27.900000000000002,27.71,27.52,27.32,27.14,26.75,N/A,N/A +2012,7,30,11,30,101640,100490,99380,78.26,0,5.88,6.41,6.53,6.6000000000000005,6.640000000000001,6.68,6.7,6.72,6.74,245.6,245.51,245.47,245.43,245.4,245.39000000000001,245.37,245.34,245.3,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.91,N/A,N/A +2012,7,30,12,30,101660,100510,99400,78.27,0,5.8100000000000005,6.28,6.38,6.45,6.5,6.53,6.5600000000000005,6.57,6.6000000000000005,263.53000000000003,262.8,262.41,262.01,261.65,261.3,260.96,260.64,260,28.73,28.39,28.22,28.03,27.84,27.650000000000002,27.45,27.27,26.89,N/A,N/A +2012,7,30,13,30,101680,100530,99420,78.26,0,5.5200000000000005,5.95,6.04,6.08,6.11,6.13,6.15,6.16,6.16,272.69,272.15,271.83,271.52,271.22,270.94,270.65,270.39,269.84000000000003,28.5,28.16,27.98,27.79,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A +2012,7,30,14,30,101730,100580,99460,78.65,0,5.32,5.71,5.79,5.83,5.86,5.87,5.89,5.9,5.9,269.17,268.62,268.31,267.99,267.7,267.42,267.14,266.87,266.32,28.38,28.03,27.85,27.66,27.46,27.28,27.080000000000002,26.900000000000002,26.52,N/A,N/A +2012,7,30,15,30,101740,100590,99470,76.10000000000001,0,5.01,5.36,5.43,5.46,5.49,5.5,5.51,5.5200000000000005,5.53,254.98000000000002,254.97,254.97,254.95000000000002,254.92000000000002,254.87,254.82,254.78,254.62,28.5,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.66,N/A,N/A +2012,7,30,16,30,101730,100580,99460,76.03,0,4.57,4.88,4.94,4.97,4.99,5.01,5.01,5.0200000000000005,5.04,240.05,239.82,239.76,239.69,239.61,239.54,239.45000000000002,239.38,239.24,28.560000000000002,28.22,28.04,27.85,27.66,27.47,27.28,27.1,26.72,N/A,N/A +2012,7,30,17,30,101650,100500,99390,71.87,0,4.8,5.13,5.19,5.21,5.23,5.23,5.24,5.24,5.23,226.4,226.58,226.74,226.9,227.04,227.18,227.33,227.48000000000002,227.85,28.88,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.61,27.43,27.060000000000002,N/A,N/A +2012,7,30,18,30,101640,100490,99380,71.15,0,5.54,5.93,5.98,5.99,5.99,5.98,5.96,5.93,5.86,215.98000000000002,216.03,216.06,216.07,216.08,216.09,216.09,216.09,216.09,29.04,28.71,28.54,28.34,28.150000000000002,27.97,27.77,27.59,27.21,N/A,N/A +2012,7,30,19,30,101610,100460,99350,70.68,0,5.22,5.58,5.63,5.64,5.63,5.62,5.6000000000000005,5.58,5.5200000000000005,212.67000000000002,212.76,212.78,212.8,212.82,212.84,212.86,212.88,212.93,29.1,28.78,28.61,28.42,28.23,28.04,27.85,27.67,27.29,N/A,N/A +2012,7,30,20,30,101580,100430,99320,71.45,0,5.8500000000000005,6.28,6.34,6.36,6.37,6.36,6.34,6.32,6.26,207.88,207.92000000000002,207.91,207.88,207.85,207.81,207.77,207.72,207.62,29.14,28.82,28.650000000000002,28.45,28.27,28.080000000000002,27.89,27.7,27.32,N/A,N/A +2012,7,30,21,30,101540,100390,99280,67.73,0,6.140000000000001,6.67,6.75,6.78,6.8,6.8100000000000005,6.8100000000000005,6.8,6.7700000000000005,209.88,209.94,210.01,210.07,210.13,210.17000000000002,210.21,210.25,210.32,29.28,28.98,28.82,28.62,28.44,28.25,28.060000000000002,27.88,27.5,N/A,N/A +2012,7,30,22,30,101500,100360,99250,67.43,0,6.47,7.03,7.12,7.16,7.18,7.18,7.18,7.17,7.12,210.67000000000002,210.81,210.87,210.92000000000002,210.95000000000002,210.98000000000002,210.99,211,210.96,29.29,29,28.84,28.650000000000002,28.46,28.28,28.080000000000002,27.900000000000002,27.53,N/A,N/A +2012,7,30,23,30,101480,100330,99220,69.09,0,7.36,8,8.09,8.13,8.14,8.14,8.120000000000001,8.1,8.040000000000001,206.9,206.79,206.73000000000002,206.65,206.57,206.48000000000002,206.4,206.31,206.13,29.17,28.87,28.71,28.52,28.330000000000002,28.150000000000002,27.96,27.78,27.41,N/A,N/A +2012,7,31,0,30,101480,100330,99220,66.73,0,7.73,8.43,8.55,8.61,8.63,8.64,8.63,8.620000000000001,8.58,209.39000000000001,209.32,209.3,209.26,209.22,209.17000000000002,209.1,209.03,208.83,29.240000000000002,28.95,28.8,28.6,28.42,28.23,28.04,27.86,27.490000000000002,N/A,N/A +2012,7,31,1,30,101450,100300,99190,64.59,0,7.16,7.8100000000000005,7.930000000000001,7.99,8.040000000000001,8.06,8.08,8.1,8.120000000000001,211.96,212.06,212.14000000000001,212.23000000000002,212.31,212.4,212.48000000000002,212.56,212.71,29.310000000000002,29.04,28.88,28.69,28.51,28.330000000000002,28.14,27.97,27.61,N/A,N/A +2012,7,31,2,30,101500,100350,99240,63.35,0,6.92,7.55,7.68,7.76,7.8100000000000005,7.8500000000000005,7.890000000000001,7.91,7.95,211.01,211.3,211.52,211.72,211.89000000000001,212.06,212.21,212.36,212.63,29.42,29.150000000000002,28.990000000000002,28.8,28.62,28.44,28.25,28.07,27.69,N/A,N/A +2012,7,31,3,30,101510,100370,99260,64.63,0,6.96,7.6000000000000005,7.72,7.78,7.82,7.8500000000000005,7.86,7.87,7.87,212.35,212.36,212.37,212.38,212.39000000000001,212.4,212.41,212.41,212.4,29.38,29.11,28.95,28.76,28.580000000000002,28.39,28.2,28.02,27.650000000000002,N/A,N/A +2012,7,31,4,30,101500,100360,99250,69.06,0,6.82,7.42,7.5200000000000005,7.5600000000000005,7.57,7.58,7.57,7.55,7.5,215.39000000000001,215.27,215.20000000000002,215.12,215.03,214.93,214.82,214.71,214.44,29.05,28.740000000000002,28.580000000000002,28.38,28.2,28.01,27.810000000000002,27.63,27.240000000000002,N/A,N/A +2012,7,31,5,30,101520,100370,99260,61.07,0,6.78,7.38,7.49,7.55,7.59,7.61,7.62,7.63,7.640000000000001,212.99,213.04,213.1,213.17000000000002,213.26,213.34,213.42000000000002,213.5,213.64000000000001,29.44,29.17,29.01,28.82,28.63,28.44,28.25,28.07,27.68,N/A,N/A +2012,7,31,6,30,101540,100390,99290,65.54,0,7.47,8.14,8.26,8.32,8.35,8.36,8.35,8.34,8.290000000000001,214.97,215.12,215.22,215.31,215.38,215.43,215.46,215.49,215.49,29.25,28.96,28.79,28.6,28.41,28.22,28.03,27.84,27.45,N/A,N/A +2012,7,31,7,30,101550,100400,99300,67.11,0,6.95,7.61,7.74,7.8100000000000005,7.8500000000000005,7.88,7.9,7.91,7.92,219.24,219.21,219.15,219.09,219.02,218.96,218.9,218.84,218.71,29.310000000000002,29,28.84,28.64,28.45,28.27,28.07,27.89,27.51,N/A,N/A +2012,7,31,8,30,101570,100420,99310,69.93,0,7.21,7.83,7.96,8.03,8.08,8.11,8.13,8.15,8.16,221.23000000000002,221.41,221.55,221.71,221.85,221.98000000000002,222.12,222.24,222.51,29.07,28.75,28.580000000000002,28.39,28.2,28.02,27.82,27.64,27.26,N/A,N/A +2012,7,31,9,30,101560,100410,99300,70.42,0,6.8500000000000005,7.46,7.58,7.65,7.7,7.74,7.7700000000000005,7.79,7.82,227.1,227.24,227.32,227.4,227.47,227.54,227.61,227.68,227.84,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A +2012,7,31,10,30,101600,100450,99340,73.03,0,6.49,7.04,7.16,7.23,7.28,7.3100000000000005,7.34,7.36,7.4,233.07,232.9,232.8,232.70000000000002,232.6,232.51,232.41,232.31,232.13,28.86,28.53,28.36,28.17,27.98,27.79,27.6,27.42,27.04,N/A,N/A +2012,7,31,11,30,101620,100470,99360,76.74,0,6.22,6.71,6.82,6.87,6.91,6.93,6.95,6.96,6.98,234.14000000000001,234.18,234.13,234.07,234.02,233.97,233.92000000000002,233.87,233.76,28.7,28.36,28.18,27.98,27.79,27.61,27.41,27.22,26.84,N/A,N/A +2012,7,31,12,30,101610,100470,99360,79.74,0,5.7700000000000005,6.22,6.3100000000000005,6.37,6.4,6.42,6.44,6.45,6.46,238.48000000000002,238.45000000000002,238.43,238.41,238.39000000000001,238.38,238.37,238.36,238.33,28.580000000000002,28.22,28.05,27.85,27.66,27.47,27.27,27.080000000000002,26.7,N/A,N/A +2012,7,31,13,30,101650,100500,99390,79.41,0,5.62,6.07,6.16,6.21,6.24,6.2700000000000005,6.28,6.29,6.29,243.95000000000002,243.97,243.97,243.98000000000002,243.99,243.99,244.01,244.02,244.06,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A +2012,7,31,14,30,101680,100530,99420,76.37,0,4.42,4.74,4.82,4.88,4.92,4.96,5,5.03,5.1000000000000005,249.89000000000001,249.86,249.89000000000001,249.91,249.93,249.95000000000002,249.96,249.96,249.99,28.68,28.34,28.17,27.97,27.78,27.59,27.400000000000002,27.21,26.84,N/A,N/A +2012,7,31,15,30,101700,100550,99440,78.23,0,4.96,5.26,5.3100000000000005,5.33,5.34,5.34,5.33,5.33,5.3,249.07,248.78,248.63,248.5,248.37,248.24,248.12,248,247.77,28.72,28.37,28.2,28,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,7,31,16,30,101690,100540,99430,78.73,0,3.97,4.2,4.24,4.26,4.28,4.28,4.29,4.3,4.3100000000000005,246.22,245.83,245.59,245.35,245.15,244.96,244.76,244.57,244.22,28.69,28.34,28.17,27.97,27.79,27.6,27.400000000000002,27.22,26.84,N/A,N/A +2012,7,31,17,30,101630,100480,99370,77.23,0,3.96,4.21,4.25,4.2700000000000005,4.29,4.3,4.3,4.3100000000000005,4.32,213.27,213.78,214.1,214.4,214.68,214.97,215.26,215.55,216.22,28.87,28.52,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A +2012,7,31,18,30,101610,100460,99350,79.36,0,4.36,4.61,4.65,4.67,4.67,4.67,4.66,4.65,4.63,198.94,199.13,199.36,199.58,199.78,199.98000000000002,200.19,200.4,200.87,28.97,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.490000000000002,27.11,N/A,N/A +2012,7,31,19,30,101610,100460,99350,80.59,0,4.55,4.82,4.86,4.88,4.89,4.88,4.88,4.87,4.84,183.93,184.37,184.61,184.85,185.09,185.32,185.57,185.82,186.38,28.97,28.62,28.44,28.240000000000002,28.060000000000002,27.87,27.68,27.490000000000002,27.12,N/A,N/A +2012,7,31,20,30,101550,100410,99300,80.86,0,4.54,4.8500000000000005,4.9,4.93,4.94,4.95,4.95,4.96,4.95,183.20000000000002,183.61,183.86,184.08,184.28,184.47,184.65,184.82,185.17000000000002,29.02,28.67,28.5,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A +2012,7,31,21,30,101540,100400,99290,79.94,0,5.2700000000000005,5.66,5.73,5.76,5.78,5.79,5.79,5.79,5.78,188.12,188.37,188.5,188.64000000000001,188.78,188.92000000000002,189.05,189.21,189.54,29.13,28.79,28.62,28.43,28.240000000000002,28.05,27.86,27.67,27.3,N/A,N/A +2012,7,31,22,30,101510,100370,99260,77.39,0,5.93,6.41,6.49,6.53,6.55,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.54,188.51,188.53,188.5,188.45000000000002,188.41,188.36,188.29,188.23,188.11,29.28,28.96,28.8,28.6,28.42,28.23,28.04,27.85,27.48,N/A,N/A +2012,7,31,23,30,101500,100360,99250,79.81,0,7.390000000000001,8.040000000000001,8.16,8.22,8.25,8.26,8.27,8.27,8.26,187.4,187.38,187.41,187.44,187.46,187.49,187.52,187.55,187.62,29.16,28.84,28.68,28.48,28.3,28.11,27.92,27.740000000000002,27.37,N/A,N/A +2012,8,1,0,30,101460,100320,99210,79.83,0,7.0600000000000005,7.67,7.8,7.8500000000000005,7.890000000000001,7.9,7.91,7.91,7.890000000000001,193.76,193.85,193.84,193.82,193.79,193.76,193.73000000000002,193.70000000000002,193.63,29.1,28.78,28.61,28.41,28.23,28.04,27.85,27.67,27.29,N/A,N/A +2012,8,1,1,30,101450,100300,99200,79.72,0,6.91,7.49,7.6000000000000005,7.66,7.7,7.71,7.72,7.72,7.71,191.33,191.41,191.45000000000002,191.48000000000002,191.52,191.54,191.57,191.6,191.63,29.02,28.69,28.52,28.330000000000002,28.150000000000002,27.96,27.77,27.580000000000002,27.2,N/A,N/A +2012,8,1,2,30,101450,100310,99200,78.87,0,6.65,7.2,7.3,7.3500000000000005,7.38,7.390000000000001,7.390000000000001,7.4,7.38,194.08,194.09,194.1,194.1,194.1,194.09,194.1,194.09,194.1,29,28.67,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,8,1,3,30,101460,100320,99210,81.59,0,6.53,7.0600000000000005,7.16,7.21,7.24,7.26,7.26,7.26,7.26,193.64000000000001,193.64000000000001,193.66,193.70000000000002,193.74,193.78,193.83,193.87,193.98000000000002,28.88,28.54,28.36,28.17,27.98,27.79,27.59,27.41,27.03,N/A,N/A +2012,8,1,4,30,101440,100300,99190,80.62,0,6.57,7.13,7.25,7.3100000000000005,7.3500000000000005,7.38,7.390000000000001,7.41,7.42,201.31,201.27,201.24,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.6,27.42,27.04,N/A,N/A +2012,8,1,5,30,101450,100310,99200,79.93,0,7.32,7.94,8.06,8.11,8.14,8.16,8.16,8.15,8.14,203.44,203.59,203.70000000000002,203.83,203.95000000000002,204.07,204.20000000000002,204.34,204.62,28.95,28.61,28.44,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,8,1,6,30,101470,100320,99210,81.39,0,6.890000000000001,7.42,7.5200000000000005,7.5600000000000005,7.57,7.58,7.57,7.5600000000000005,7.5200000000000005,211.81,212.01,212.04,212.07,212.08,212.09,212.1,212.11,212.11,28.76,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.900000000000002,N/A,N/A +2012,8,1,7,30,101490,100340,99230,81.93,0,6.4,6.91,7.0200000000000005,7.08,7.12,7.15,7.16,7.18,7.19,213.83,213.87,213.9,213.92000000000002,213.95000000000002,213.97,214,214.02,214.07,28.69,28.330000000000002,28.150000000000002,27.95,27.76,27.560000000000002,27.37,27.18,26.8,N/A,N/A +2012,8,1,8,30,101500,100350,99240,81.76,0,6.7700000000000005,7.32,7.45,7.51,7.55,7.58,7.6000000000000005,7.61,7.63,218.28,218.21,218.19,218.18,218.17000000000002,218.16,218.15,218.14000000000001,218.13,28.73,28.36,28.19,27.990000000000002,27.8,27.61,27.42,27.23,26.85,N/A,N/A +2012,8,1,9,30,101510,100360,99250,83.07000000000001,0,7.13,7.7700000000000005,7.9,7.98,8.02,8.06,8.07,8.09,8.1,220.03,220.13,220.15,220.16,220.17000000000002,220.18,220.20000000000002,220.20000000000002,220.22,28.71,28.34,28.16,27.96,27.77,27.57,27.38,27.19,26.8,N/A,N/A +2012,8,1,10,30,101500,100360,99250,83.09,0,7.18,7.79,7.92,7.98,8.02,8.040000000000001,8.05,8.05,8.05,224.95000000000002,225.08,225.14000000000001,225.21,225.28,225.35,225.41,225.47,225.6,28.61,28.240000000000002,28.060000000000002,27.86,27.67,27.47,27.28,27.09,26.71,N/A,N/A +2012,8,1,11,30,101530,100380,99270,78.71000000000001,0,6.9,7.42,7.53,7.58,7.62,7.640000000000001,7.66,7.67,7.68,231.3,231.26,231.22,231.17000000000002,231.12,231.08,231.03,230.98000000000002,230.87,28.75,28.400000000000002,28.22,28.02,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A +2012,8,1,12,30,101530,100390,99280,79.26,0,6.71,7.26,7.38,7.44,7.48,7.51,7.53,7.54,7.55,230.42000000000002,230.61,230.74,230.86,230.96,231.06,231.16,231.25,231.43,28.87,28.52,28.34,28.14,27.95,27.76,27.560000000000002,27.37,26.990000000000002,N/A,N/A +2012,8,1,13,30,101580,100430,99330,78.88,0,5.91,6.4,6.51,6.57,6.62,6.66,6.68,6.71,6.74,237.95000000000002,237.91,237.93,237.96,237.98000000000002,238,238.02,238.05,238.11,28.86,28.51,28.34,28.14,27.95,27.77,27.57,27.38,27,N/A,N/A +2012,8,1,14,30,101590,100440,99330,78.32000000000001,0,5.43,5.87,5.97,6.04,6.08,6.11,6.140000000000001,6.16,6.19,236.68,236.77,236.77,236.76,236.75,236.74,236.73000000000002,236.72,236.70000000000002,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.53,27.14,N/A,N/A +2012,8,1,15,30,101580,100440,99330,78.29,0,5.97,6.38,6.45,6.48,6.48,6.48,6.47,6.45,6.41,239.91,240.13,240.25,240.37,240.48000000000002,240.59,240.70000000000002,240.81,241.04,29.01,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A +2012,8,1,16,30,101590,100440,99340,79.91,0,4.28,4.59,4.66,4.7,4.74,4.7700000000000005,4.79,4.82,4.8500000000000005,237.01,236.65,236.5,236.33,236.18,236.03,235.89000000000001,235.75,235.48000000000002,29.060000000000002,28.71,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.2,N/A,N/A +2012,8,1,17,30,101550,100410,99310,78.67,0,4.36,4.66,4.74,4.7700000000000005,4.8100000000000005,4.82,4.8500000000000005,4.86,4.88,225.12,224.99,224.93,224.85,224.77,224.69,224.6,224.52,224.34,29.19,28.84,28.66,28.46,28.27,28.080000000000002,27.89,27.7,27.32,N/A,N/A +2012,8,1,18,30,101540,100400,99290,80.62,0,4.62,4.9,4.94,4.96,4.96,4.96,4.95,4.93,4.9,211.6,211.64000000000001,211.71,211.75,211.8,211.83,211.87,211.91,211.97,29.2,28.85,28.67,28.47,28.28,28.09,27.900000000000002,27.71,27.34,N/A,N/A +2012,8,1,19,30,101510,100370,99270,80.42,0,5.01,5.33,5.39,5.42,5.43,5.44,5.44,5.44,5.42,198.65,198.69,198.78,198.87,198.95000000000002,199.03,199.11,199.19,199.36,29.26,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.78,27.400000000000002,N/A,N/A +2012,8,1,20,30,101460,100320,99220,79.27,0,5.62,6.0200000000000005,6.09,6.11,6.13,6.13,6.12,6.11,6.08,191,191.1,191.14000000000001,191.18,191.22,191.26,191.29,191.33,191.42000000000002,29.3,28.96,28.79,28.59,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A +2012,8,1,21,30,101430,100290,99180,81.09,0,5.53,5.94,6.0200000000000005,6.0600000000000005,6.09,6.11,6.12,6.12,6.12,187.9,188.08,188.21,188.35,188.46,188.57,188.69,188.8,189.04,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,1,22,30,101390,100250,99150,79.24,0,5.21,5.61,5.68,5.72,5.74,5.76,5.76,5.76,5.76,192.20000000000002,192.33,192.39000000000001,192.44,192.49,192.52,192.55,192.58,192.65,29.330000000000002,29.01,28.84,28.650000000000002,28.46,28.27,28.080000000000002,27.89,27.52,N/A,N/A +2012,8,1,23,30,101350,100210,99110,84.87,0,6.24,6.75,6.8500000000000005,6.9,6.93,6.95,6.96,6.97,6.97,193.20000000000002,193.38,193.44,193.49,193.52,193.54,193.57,193.58,193.61,29.05,28.7,28.53,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.19,N/A,N/A +2012,8,2,0,30,101330,100190,99080,80.85000000000001,0,6.76,7.3100000000000005,7.42,7.46,7.49,7.5,7.5,7.5,7.47,188.82,188.83,188.82,188.81,188.79,188.78,188.76,188.73,188.66,29.12,28.78,28.61,28.41,28.22,28.03,27.84,27.650000000000002,27.28,N/A,N/A +2012,8,2,1,30,101310,100170,99070,78.53,0,6.88,7.47,7.59,7.65,7.68,7.71,7.72,7.73,7.75,191.22,191.43,191.55,191.67000000000002,191.78,191.9,192.02,192.14000000000001,192.4,29.22,28.900000000000002,28.73,28.53,28.35,28.16,27.97,27.79,27.42,N/A,N/A +2012,8,2,2,30,101330,100190,99080,81.21000000000001,0,6.62,7.17,7.28,7.33,7.37,7.390000000000001,7.4,7.4,7.41,196.32,196.36,196.36,196.36,196.37,196.38,196.38,196.39000000000001,196.4,29.060000000000002,28.72,28.55,28.35,28.17,27.98,27.79,27.6,27.23,N/A,N/A +2012,8,2,3,30,101290,100150,99040,82.93,0,7.5,8.14,8.27,8.34,8.38,8.4,8.42,8.43,8.43,198.24,198.38,198.39000000000001,198.42000000000002,198.45000000000002,198.48000000000002,198.51,198.55,198.63,28.94,28.59,28.42,28.22,28.03,27.84,27.650000000000002,27.46,27.09,N/A,N/A +2012,8,2,4,30,101280,100140,99030,83.99,0,7.5,8.15,8.290000000000001,8.370000000000001,8.41,8.44,8.46,8.47,8.47,201.06,201.15,201.19,201.23000000000002,201.27,201.31,201.35,201.39000000000001,201.47,28.89,28.54,28.37,28.16,27.97,27.78,27.59,27.400000000000002,27.02,N/A,N/A +2012,8,2,5,30,101250,100110,99010,84.68,0,7.45,8.11,8.26,8.34,8.4,8.44,8.47,8.48,8.51,203.76,203.70000000000002,203.68,203.67000000000002,203.65,203.63,203.62,203.6,203.58,28.86,28.5,28.330000000000002,28.12,27.93,27.740000000000002,27.55,27.36,26.98,N/A,N/A +2012,8,2,6,30,101270,100130,99030,85.22,0,7.71,8.370000000000001,8.51,8.59,8.63,8.66,8.68,8.69,8.700000000000001,211.98000000000002,211.84,211.75,211.67000000000002,211.59,211.52,211.45000000000002,211.38,211.25,28.8,28.44,28.27,28.07,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A +2012,8,2,7,30,101280,100140,99030,83.76,0,7.86,8.58,8.74,8.82,8.88,8.92,8.94,8.96,8.98,215.17000000000002,214.88,214.74,214.6,214.48000000000002,214.36,214.25,214.14000000000001,213.92000000000002,28.82,28.46,28.29,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A +2012,8,2,8,30,101280,100140,99030,82.11,0,7.74,8.43,8.58,8.65,8.700000000000001,8.73,8.75,8.76,8.75,219.09,218.9,218.74,218.58,218.42000000000002,218.27,218.11,217.95000000000002,217.62,28.89,28.53,28.35,28.150000000000002,27.96,27.77,27.57,27.38,27,N/A,N/A +2012,8,2,9,30,101300,100160,99060,83.67,0,7.75,8.4,8.53,8.58,8.61,8.620000000000001,8.61,8.6,8.56,222.13,222.27,222.33,222.39000000000001,222.44,222.49,222.52,222.57,222.64000000000001,28.75,28.38,28.21,28.01,27.82,27.62,27.43,27.240000000000002,26.86,N/A,N/A +2012,8,2,10,30,101320,100180,99070,81.55,0,7.21,7.7700000000000005,7.9,7.96,8.01,8.040000000000001,8.06,8.08,8.11,226.65,226.59,226.56,226.5,226.44,226.37,226.29,226.21,226.01,28.8,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.94,N/A,N/A +2012,8,2,11,30,101330,100190,99080,83.69,0,6.0600000000000005,6.6000000000000005,6.71,6.8,6.8500000000000005,6.9,6.93,6.96,7,229,229.14000000000001,229.11,229.07,229.02,228.97,228.91,228.85,228.72,28.72,28.36,28.18,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A +2012,8,2,12,30,101370,100220,99120,81.12,0,6.3100000000000005,6.8500000000000005,6.98,7.05,7.1000000000000005,7.13,7.16,7.17,7.2,228.49,228.59,228.62,228.64000000000001,228.65,228.65,228.65,228.65,228.62,28.75,28.400000000000002,28.22,28.02,27.830000000000002,27.64,27.44,27.25,26.87,N/A,N/A +2012,8,2,13,30,101410,100260,99160,79.03,0,5.33,5.73,5.83,5.89,5.93,5.96,5.98,6,6.03,227.02,227.14000000000001,227.24,227.32,227.39000000000001,227.45000000000002,227.52,227.57,227.68,28.8,28.45,28.28,28.080000000000002,27.88,27.69,27.5,27.310000000000002,26.92,N/A,N/A +2012,8,2,14,30,101430,100290,99180,77.56,0,5.6000000000000005,6.03,6.13,6.17,6.21,6.23,6.25,6.26,6.2700000000000005,226.23000000000002,226.07,226.01,225.94,225.87,225.81,225.74,225.68,225.55,28.89,28.54,28.37,28.17,27.98,27.79,27.59,27.400000000000002,27.02,N/A,N/A +2012,8,2,15,30,101450,100310,99200,76.54,0,5.11,5.5,5.6000000000000005,5.66,5.69,5.73,5.75,5.7700000000000005,5.8,225.61,225.72,225.71,225.68,225.66,225.62,225.58,225.55,225.46,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.04,N/A,N/A +2012,8,2,16,30,101470,100320,99210,73.79,0,4.68,5.01,5.08,5.12,5.15,5.18,5.19,5.21,5.24,220.66,220.64000000000001,220.65,220.67000000000002,220.68,220.68,220.69,220.70000000000002,220.71,29,28.66,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A +2012,8,2,17,30,101430,100290,99180,71.66,0,4.86,5.19,5.25,5.28,5.29,5.3,5.3,5.3,5.29,223.45000000000002,223.44,223.38,223.3,223.22,223.14000000000001,223.06,223,222.83,29.16,28.810000000000002,28.64,28.44,28.25,28.060000000000002,27.86,27.68,27.29,N/A,N/A +2012,8,2,18,30,101400,100250,99150,69.17,0,5.3500000000000005,5.72,5.7700000000000005,5.79,5.8,5.8,5.8,5.79,5.7700000000000005,206.63,206.44,206.33,206.21,206.09,205.98000000000002,205.87,205.76,205.55,29.27,28.93,28.76,28.560000000000002,28.37,28.19,27.990000000000002,27.810000000000002,27.43,N/A,N/A +2012,8,2,19,30,101380,100240,99130,72.03,0,5.54,5.95,6.0200000000000005,6.0600000000000005,6.08,6.09,6.09,6.1000000000000005,6.09,196.97,196.89000000000001,196.86,196.83,196.8,196.77,196.74,196.72,196.66,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.94,27.76,27.38,N/A,N/A +2012,8,2,20,30,101340,100200,99100,68.71000000000001,0,6.3500000000000005,6.84,6.92,6.95,6.96,6.97,6.96,6.95,6.92,197.8,197.65,197.61,197.54,197.48000000000002,197.42000000000002,197.35,197.29,197.14000000000001,29.36,29.04,28.88,28.68,28.490000000000002,28.310000000000002,28.11,27.93,27.55,N/A,N/A +2012,8,2,21,30,101300,100160,99050,71.13,0,5.99,6.44,6.51,6.54,6.55,6.55,6.55,6.54,6.51,194.21,193.99,193.88,193.78,193.69,193.6,193.51,193.43,193.26,29.240000000000002,28.92,28.75,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.43,N/A,N/A +2012,8,2,22,30,101260,100120,99010,71.74,0,6.59,7.12,7.21,7.25,7.28,7.28,7.28,7.28,7.26,197.95000000000002,197.84,197.79,197.72,197.65,197.58,197.5,197.42000000000002,197.24,29.21,28.89,28.73,28.53,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,2,23,30,101220,100080,98970,69.66,0,5.8,6.23,6.3100000000000005,6.34,6.3500000000000005,6.3500000000000005,6.3500000000000005,6.34,6.32,192.59,192.8,192.93,193.05,193.16,193.27,193.39000000000001,193.5,193.74,29.25,28.94,28.77,28.580000000000002,28.39,28.21,28.01,27.830000000000002,27.46,N/A,N/A +2012,8,3,0,30,101200,100060,98950,73.85000000000001,0,5.92,6.37,6.46,6.51,6.53,6.55,6.5600000000000005,6.5600000000000005,6.5600000000000005,191.73000000000002,191.74,191.76,191.8,191.84,191.88,191.93,191.97,192.09,29.060000000000002,28.740000000000002,28.57,28.38,28.19,28.01,27.82,27.63,27.26,N/A,N/A +2012,8,3,1,30,101170,100030,98920,70.71000000000001,0,5.83,6.26,6.34,6.37,6.390000000000001,6.4,6.41,6.41,6.4,190.93,191.08,191.21,191.35,191.49,191.62,191.77,191.9,192.22,29.150000000000002,28.830000000000002,28.66,28.47,28.28,28.1,27.900000000000002,27.72,27.35,N/A,N/A +2012,8,3,2,30,101180,100040,98940,71.12,0,6.47,7.01,7.12,7.17,7.2,7.23,7.24,7.25,7.26,193.79,193.58,193.43,193.28,193.16,193.04,192.92000000000002,192.81,192.59,29.16,28.84,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,8,3,3,30,101180,100040,98930,79.33,0,6.12,6.61,6.72,6.78,6.82,6.8500000000000005,6.88,6.9,6.93,198.74,198.44,198.27,198.09,197.92000000000002,197.77,197.61,197.45000000000002,197.13,28.79,28.44,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.92,N/A,N/A +2012,8,3,4,30,101170,100040,98930,80.41,0,6.140000000000001,6.57,6.68,6.74,6.78,6.8100000000000005,6.83,6.8500000000000005,6.890000000000001,200.94,200.06,199.67000000000002,199.35,199.08,198.84,198.63,198.44,198.12,28.830000000000002,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.37,27,N/A,N/A +2012,8,3,5,30,101140,100000,98900,78.60000000000001,0,7.29,7.890000000000001,8.01,8.06,8.09,8.11,8.11,8.11,8.09,194.43,194.47,194.52,194.57,194.61,194.66,194.69,194.73000000000002,194.8,28.91,28.560000000000002,28.38,28.18,27.990000000000002,27.79,27.6,27.41,27.03,N/A,N/A +2012,8,3,6,30,101140,100000,98900,80.36,0,7.07,7.69,7.83,7.91,7.97,8.01,8.040000000000001,8.06,8.1,194.75,194.69,194.67000000000002,194.65,194.63,194.62,194.62,194.62,194.61,28.86,28.51,28.330000000000002,28.13,27.94,27.75,27.55,27.36,26.98,N/A,N/A +2012,8,3,7,30,101150,100010,98910,82.65,0,6.84,7.43,7.57,7.640000000000001,7.7,7.74,7.7700000000000005,7.79,7.83,204.92000000000002,204.9,204.86,204.81,204.76,204.70000000000002,204.65,204.59,204.46,28.82,28.46,28.29,28.09,27.900000000000002,27.71,27.51,27.32,26.94,N/A,N/A +2012,8,3,8,30,101190,100050,98950,81.35000000000001,0,7.01,7.61,7.73,7.79,7.84,7.86,7.88,7.9,7.91,195.1,195.35,195.45000000000002,195.56,195.67000000000002,195.78,195.89000000000001,196,196.23000000000002,28.87,28.52,28.34,28.14,27.95,27.76,27.57,27.38,27,N/A,N/A +2012,8,3,9,30,101180,100040,98940,85.12,0,7.3,7.99,8.16,8.26,8.33,8.39,8.44,8.47,8.540000000000001,199.36,199.42000000000002,199.42000000000002,199.44,199.44,199.45000000000002,199.46,199.46,199.48000000000002,28.84,28.48,28.310000000000002,28.11,27.92,27.73,27.53,27.34,26.96,N/A,N/A +2012,8,3,10,30,101180,100040,98940,83.62,0,7.3500000000000005,8.040000000000001,8.17,8.24,8.28,8.3,8.32,8.32,8.31,205.91,205.98000000000002,205.99,205.98000000000002,205.94,205.9,205.84,205.79,205.64000000000001,29.18,28.84,28.66,28.47,28.27,28.09,27.89,27.71,27.32,N/A,N/A +2012,8,3,11,30,101260,100120,99020,83.46000000000001,0,7.75,8.49,8.66,8.75,8.81,8.85,8.88,8.9,8.93,209.74,209.87,209.94,210,210.05,210.09,210.13,210.16,210.22,29.14,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.68,27.3,N/A,N/A +2012,8,3,12,30,101290,100150,99040,81.42,0,7.43,8.1,8.26,8.36,8.42,8.46,8.49,8.51,8.540000000000001,205.19,205.31,205.37,205.41,205.45000000000002,205.48000000000002,205.51,205.53,205.58,29.150000000000002,28.810000000000002,28.650000000000002,28.44,28.26,28.07,27.87,27.68,27.310000000000002,N/A,N/A +2012,8,3,13,30,101320,100180,99080,80.84,0,6.79,7.42,7.5600000000000005,7.640000000000001,7.7,7.74,7.7700000000000005,7.79,7.82,199.34,199.3,199.35,199.4,199.45000000000002,199.5,199.56,199.61,199.72,29.14,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A +2012,8,3,14,30,101350,100210,99110,80.72,0,6.17,6.72,6.84,6.91,6.96,6.99,7.0200000000000005,7.04,7.07,207.57,207.48000000000002,207.49,207.5,207.51,207.53,207.54,207.54,207.57,29.19,28.85,28.68,28.490000000000002,28.3,28.11,27.91,27.73,27.35,N/A,N/A +2012,8,3,15,30,101380,100240,99130,82.16,0,5.44,5.92,6.05,6.13,6.21,6.2700000000000005,6.32,6.37,6.45,213.32,214.88,215.57,216.16,216.65,217.09,217.48000000000002,217.82,218.43,29.09,28.75,28.580000000000002,28.39,28.2,28.01,27.82,27.64,27.26,N/A,N/A +2012,8,3,16,30,101400,100260,99160,77.01,0,7.01,7.57,7.65,7.68,7.68,7.66,7.640000000000001,7.61,7.53,221.83,222,222.1,222.21,222.3,222.38,222.46,222.53,222.67000000000002,29.310000000000002,28.990000000000002,28.82,28.62,28.43,28.240000000000002,28.05,27.86,27.48,N/A,N/A +2012,8,3,17,30,101420,100280,99170,76.8,0,5.96,6.41,6.5,6.54,6.57,6.59,6.6000000000000005,6.6000000000000005,6.6000000000000005,223.84,223.9,223.92000000000002,223.95000000000002,223.96,223.97,223.99,224.01,224.03,29.23,28.89,28.72,28.52,28.330000000000002,28.150000000000002,27.95,27.76,27.39,N/A,N/A +2012,8,3,18,30,101380,100240,99140,76.94,0,4.91,5.2700000000000005,5.3500000000000005,5.39,5.42,5.45,5.47,5.49,5.53,221.88,221.79,221.8,221.8,221.78,221.76,221.73000000000002,221.70000000000002,221.63,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,3,19,30,101390,100250,99140,74.69,0,4.84,5.22,5.29,5.34,5.37,5.4,5.43,5.44,5.48,214.33,214.42000000000002,214.43,214.44,214.44,214.44,214.44,214.44,214.42000000000002,29.310000000000002,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A +2012,8,3,20,30,101330,100190,99080,73.61,0,5.26,5.65,5.73,5.76,5.79,5.8100000000000005,5.82,5.84,5.8500000000000005,205.18,205.20000000000002,205.24,205.25,205.27,205.28,205.29,205.3,205.31,29.35,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A +2012,8,3,21,30,101330,100190,99080,75.65,0,4.98,5.34,5.41,5.44,5.46,5.47,5.48,5.48,5.49,200.44,200.54,200.56,200.58,200.61,200.63,200.65,200.68,200.74,29.27,28.94,28.77,28.57,28.38,28.19,28,27.82,27.44,N/A,N/A +2012,8,3,22,30,101320,100180,99070,74.94,0,4.41,4.71,4.76,4.78,4.79,4.8,4.8,4.8,4.79,195.48000000000002,195.27,195.12,194.96,194.8,194.63,194.46,194.3,193.95000000000002,29.32,29,28.830000000000002,28.64,28.45,28.26,28.060000000000002,27.88,27.5,N/A,N/A +2012,8,3,23,30,101270,100130,99020,74.64,0,4.8100000000000005,5.15,5.21,5.23,5.24,5.25,5.25,5.25,5.24,183.36,182.76,182.44,182.13,181.83,181.53,181.21,180.93,180.29,29.29,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A +2012,8,4,0,30,101200,100060,98960,76.22,0,5.14,5.54,5.61,5.65,5.67,5.69,5.7,5.71,5.72,188.86,188.70000000000002,188.63,188.58,188.51,188.45000000000002,188.39000000000001,188.34,188.21,29.16,28.830000000000002,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,8,4,1,30,101190,100050,98940,79.44,0,5.1000000000000005,5.48,5.55,5.58,5.6000000000000005,5.62,5.63,5.64,5.65,181.37,181.16,181.02,180.86,180.70000000000002,180.55,180.39000000000001,180.24,179.93,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,8,4,2,30,101260,100110,99010,79.10000000000001,0,5.58,6.01,6.09,6.13,6.16,6.17,6.18,6.19,6.19,168.09,168.26,168.33,168.41,168.49,168.56,168.63,168.70000000000002,168.84,29.12,28.79,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A +2012,8,4,3,30,101260,100120,99010,80.41,0,5.21,5.6000000000000005,5.67,5.71,5.74,5.76,5.7700000000000005,5.78,5.8,168.48,168.32,168.28,168.22,168.17000000000002,168.12,168.06,168,167.88,29.05,28.71,28.54,28.34,28.150000000000002,27.97,27.77,27.580000000000002,27.2,N/A,N/A +2012,8,4,4,30,101230,100090,98990,82.06,0,5.67,6.13,6.23,6.29,6.33,6.36,6.390000000000001,6.41,6.45,170.67000000000002,170.61,170.48,170.36,170.27,170.17000000000002,170.07,169.99,169.8,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A +2012,8,4,5,30,101270,100130,99020,82.82000000000001,0,6.5,7.1000000000000005,7.23,7.32,7.38,7.43,7.46,7.5,7.54,176.08,175.94,175.91,175.88,175.85,175.81,175.78,175.75,175.69,29.05,28.72,28.54,28.34,28.150000000000002,27.97,27.77,27.580000000000002,27.2,N/A,N/A +2012,8,4,6,30,101290,100150,99050,79.96000000000001,0,7.3,7.96,8.08,8.15,8.19,8.22,8.23,8.24,8.24,189.57,189.62,189.61,189.61,189.6,189.59,189.57,189.56,189.54,29.09,28.75,28.580000000000002,28.39,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A +2012,8,4,7,30,101350,100200,99100,83.73,0,6.49,7.05,7.18,7.25,7.3100000000000005,7.3500000000000005,7.38,7.41,7.45,184.88,184.84,184.9,184.96,185.01,185.05,185.1,185.15,185.24,28.89,28.54,28.37,28.17,27.98,27.79,27.6,27.41,27.03,N/A,N/A +2012,8,4,8,30,101350,100210,99110,79.35000000000001,0,7.48,8.13,8.26,8.3,8.33,8.34,8.34,8.33,8.3,191.72,191.54,191.4,191.26,191.12,190.99,190.85,190.71,190.42000000000002,29.12,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.29,N/A,N/A +2012,8,4,9,30,101360,100220,99110,78.58,0,6.640000000000001,7.25,7.390000000000001,7.47,7.54,7.58,7.61,7.640000000000001,7.69,193.17000000000002,193.54,193.66,193.75,193.83,193.9,193.95000000000002,194.01,194.1,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.2,N/A,N/A +2012,8,4,10,30,101410,100270,99160,77.88,0,6.44,6.99,7.09,7.15,7.18,7.21,7.22,7.23,7.24,197.8,197.77,197.72,197.64000000000001,197.57,197.49,197.41,197.33,197.16,29.03,28.69,28.52,28.330000000000002,28.14,27.95,27.75,27.560000000000002,27.18,N/A,N/A +2012,8,4,11,30,101440,100300,99190,78.60000000000001,0,5.98,6.46,6.5600000000000005,6.61,6.640000000000001,6.67,6.68,6.69,6.7,200.22,199.96,199.82,199.69,199.57,199.46,199.35,199.24,199.03,28.97,28.64,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A +2012,8,4,12,30,101490,100350,99240,78.42,0,4.95,5.32,5.39,5.43,5.46,5.48,5.49,5.51,5.5200000000000005,203.82,203.63,203.47,203.3,203.13,202.97,202.8,202.64000000000001,202.3,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,8,4,13,30,101510,100370,99260,77.12,0,4.73,5.09,5.16,5.19,5.22,5.23,5.25,5.26,5.2700000000000005,208.85,208.84,208.77,208.70000000000002,208.64000000000001,208.59,208.53,208.48000000000002,208.36,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.72,27.54,27.150000000000002,N/A,N/A +2012,8,4,14,30,101590,100440,99330,76.46000000000001,0,3.3200000000000003,3.5500000000000003,3.59,3.61,3.63,3.64,3.65,3.66,3.67,210.81,210.19,209.81,209.42000000000002,209.08,208.74,208.4,208.08,207.42000000000002,29.060000000000002,28.73,28.560000000000002,28.37,28.18,27.98,27.79,27.6,27.22,N/A,N/A +2012,8,4,15,30,101580,100430,99320,76.84,0,3.11,3.2800000000000002,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,3.31,212.56,212.31,212.1,211.89000000000001,211.69,211.49,211.3,211.12,210.75,29.02,28.69,28.51,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.17,N/A,N/A +2012,8,4,16,30,101610,100460,99350,75.59,0,2.25,2.36,2.37,2.38,2.39,2.4,2.4,2.4,2.41,202.63,202.61,202.6,202.58,202.55,202.52,202.48000000000002,202.45000000000002,202.34,29.080000000000002,28.73,28.560000000000002,28.36,28.17,27.98,27.79,27.6,27.22,N/A,N/A +2012,8,4,17,30,101610,100470,99360,75.53,0,1.82,1.9000000000000001,1.9100000000000001,1.9100000000000001,1.92,1.92,1.92,1.93,1.93,188.16,187.76,187.54,187.3,187.09,186.88,186.68,186.48,186.08,29.14,28.79,28.62,28.42,28.23,28.04,27.84,27.66,27.27,N/A,N/A +2012,8,4,18,30,101590,100440,99330,75.66,0,2.68,2.82,2.84,2.85,2.86,2.87,2.87,2.88,2.89,170.25,169.93,169.82,169.71,169.62,169.53,169.44,169.36,169.17000000000002,29.22,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,8,4,19,30,101600,100460,99350,75.78,0,2.66,2.7800000000000002,2.8000000000000003,2.82,2.83,2.84,2.84,2.84,2.85,164.34,163.78,163.44,163.12,162.82,162.53,162.23,161.95000000000002,161.38,29.310000000000002,28.95,28.77,28.57,28.38,28.19,28,27.810000000000002,27.43,N/A,N/A +2012,8,4,20,30,101570,100420,99320,75.02,0,3.73,3.94,3.97,3.98,3.99,3.99,3.99,3.99,3.99,154.63,154.88,154.98,155.09,155.20000000000002,155.31,155.43,155.53,155.76,29.41,29.05,28.88,28.68,28.490000000000002,28.3,28.1,27.91,27.53,N/A,N/A +2012,8,4,21,30,101570,100420,99320,76.5,0,4.47,4.72,4.75,4.75,4.75,4.75,4.74,4.73,4.71,150.01,150.78,151.13,151.49,151.81,152.13,152.45000000000002,152.74,153.34,29.28,28.93,28.76,28.560000000000002,28.37,28.18,27.990000000000002,27.8,27.42,N/A,N/A +2012,8,4,22,30,101550,100410,99300,77.78,0,5.53,5.92,5.99,6.03,6.05,6.07,6.07,6.08,6.08,155.23,155.44,155.51,155.57,155.63,155.70000000000002,155.77,155.83,155.97,29.18,28.85,28.68,28.48,28.3,28.1,27.91,27.72,27.35,N/A,N/A +2012,8,4,23,30,101530,100390,99280,78.43,0,5.11,5.62,5.73,5.8,5.86,5.9,5.92,5.95,5.98,156.08,155.93,155.91,155.87,155.85,155.83,155.82,155.81,155.79,29.330000000000002,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A +2012,8,5,0,30,101510,100370,99260,78.37,0,6.26,6.8100000000000005,6.92,6.99,7.03,7.07,7.09,7.1000000000000005,7.13,149.47,149.35,149.31,149.27,149.24,149.21,149.19,149.16,149.11,29.19,28.87,28.7,28.51,28.32,28.13,27.94,27.75,27.37,N/A,N/A +2012,8,5,1,30,101520,100370,99260,79.9,0,6.3100000000000005,6.8500000000000005,6.96,7.03,7.07,7.09,7.11,7.12,7.140000000000001,152.79,152.87,152.97,153.06,153.15,153.23,153.31,153.38,153.54,29.07,28.740000000000002,28.57,28.37,28.18,27.990000000000002,27.79,27.61,27.22,N/A,N/A +2012,8,5,2,30,101600,100450,99340,78.23,0,5.53,6.01,6.12,6.18,6.23,6.2700000000000005,6.3,6.32,6.36,148.35,148.25,148.25,148.25,148.25,148.25,148.26,148.26,148.27,29.12,28.79,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A +2012,8,5,3,30,101620,100480,99370,77.96000000000001,0,5.42,5.82,5.88,5.9,5.91,5.91,5.9,5.89,5.86,137.77,137.85,137.86,137.86,137.85,137.84,137.83,137.83,137.82,29.02,28.69,28.52,28.330000000000002,28.14,27.94,27.75,27.560000000000002,27.18,N/A,N/A +2012,8,5,4,30,101630,100490,99380,74.83,0,3.92,4.14,4.16,4.17,4.16,4.15,4.14,4.13,4.1,140.29,140.27,140.21,140.15,140.09,140.04,139.98,139.92000000000002,139.81,29,28.67,28.5,28.310000000000002,28.11,27.93,27.73,27.54,27.16,N/A,N/A +2012,8,5,5,30,101660,100510,99400,76.14,0,3.2800000000000002,3.48,3.52,3.54,3.5500000000000003,3.56,3.56,3.56,3.56,138.09,138.46,138.70000000000002,138.92000000000002,139.12,139.32,139.5,139.67000000000002,140.03,28.93,28.6,28.43,28.23,28.04,27.86,27.66,27.47,27.09,N/A,N/A +2012,8,5,6,30,101660,100510,99400,76.4,0,4.58,4.86,4.91,4.92,4.92,4.91,4.9,4.89,4.86,146.8,146.69,146.65,146.6,146.54,146.49,146.42000000000002,146.36,146.24,28.87,28.54,28.37,28.17,27.98,27.79,27.59,27.400000000000002,27.02,N/A,N/A +2012,8,5,7,30,101660,100510,99400,78.01,0,5.7700000000000005,6.23,6.3100000000000005,6.36,6.390000000000001,6.4,6.41,6.41,6.41,152.45000000000002,152.59,152.68,152.76,152.84,152.91,152.97,153.04,153.17000000000002,28.8,28.45,28.28,28.080000000000002,27.89,27.69,27.5,27.310000000000002,26.92,N/A,N/A +2012,8,5,8,30,101680,100530,99420,75.63,0,4.21,4.46,4.5200000000000005,4.55,4.57,4.59,4.6000000000000005,4.61,4.62,156.52,156.52,156.46,156.38,156.31,156.22,156.13,156.03,155.84,28.76,28.42,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A +2012,8,5,9,30,101720,100570,99460,77.39,0,3.74,3.96,3.98,3.99,4,3.99,3.99,3.98,3.96,160.67000000000002,160.8,160.89000000000001,160.98,161.07,161.15,161.24,161.32,161.51,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A +2012,8,5,10,30,101750,100600,99490,71.73,0,2.6,2.7800000000000002,2.81,2.83,2.85,2.86,2.87,2.89,2.91,169.46,169.29,169.23,169.15,169.06,168.98,168.89000000000001,168.82,168.62,28.86,28.54,28.37,28.17,27.98,27.79,27.59,27.41,27.02,N/A,N/A +2012,8,5,11,30,101770,100620,99510,76.67,0,2.27,2.37,2.37,2.36,2.36,2.35,2.34,2.33,2.3000000000000003,153.58,154.04,154.33,154.6,154.85,155.07,155.29,155.48,155.85,28.63,28.3,28.12,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A +2012,8,5,12,30,101810,100660,99550,75.58,0,1.19,1.24,1.24,1.25,1.25,1.25,1.24,1.24,1.24,99.37,100.99000000000001,101.99000000000001,102.95,103.8,104.59,105.38,106.12,107.58,28.64,28.310000000000002,28.13,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A +2012,8,5,13,30,101850,100700,99580,75.69,0,1.37,1.3900000000000001,1.3900000000000001,1.37,1.36,1.35,1.34,1.32,1.3,56.29,57.550000000000004,58.27,59,59.7,60.370000000000005,61.050000000000004,61.67,63.09,28.61,28.28,28.1,27.900000000000002,27.72,27.53,27.330000000000002,27.14,26.76,N/A,N/A +2012,8,5,14,30,101870,100720,99610,75.74,0,2.21,2.2800000000000002,2.27,2.2600000000000002,2.25,2.23,2.22,2.2,2.17,60.27,60.17,60.14,60.1,60.07,60.03,59.980000000000004,59.92,59.77,28.62,28.28,28.1,27.900000000000002,27.71,27.52,27.32,27.14,26.75,N/A,N/A +2012,8,5,15,30,101910,100760,99640,75,0,2.83,2.95,2.96,2.96,2.95,2.95,2.94,2.93,2.9,54.54,54.96,55.08,55.2,55.300000000000004,55.410000000000004,55.51,55.61,55.79,28.68,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.37,27.18,26.8,N/A,N/A +2012,8,5,16,30,101940,100790,99680,75.73,0,3.44,3.59,3.6,3.6,3.59,3.58,3.56,3.5500000000000003,3.52,67.85,68.16,68.23,68.31,68.39,68.47,68.55,68.63,68.81,28.69,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.38,27.19,26.810000000000002,N/A,N/A +2012,8,5,17,30,101920,100760,99650,73.27,0,2.95,3.11,3.13,3.14,3.15,3.15,3.15,3.15,3.14,95.19,95.84,96.08,96.33,96.58,96.82000000000001,97.08,97.32000000000001,97.85000000000001,28.79,28.43,28.26,28.060000000000002,27.86,27.68,27.48,27.29,26.91,N/A,N/A +2012,8,5,18,30,101890,100740,99620,74.22,0,4.0600000000000005,4.29,4.33,4.3500000000000005,4.36,4.37,4.38,4.38,4.38,111.49000000000001,111.75,111.91,112.08,112.24000000000001,112.39,112.56,112.72,113.05,28.85,28.48,28.310000000000002,28.11,27.92,27.73,27.53,27.35,26.97,N/A,N/A +2012,8,5,19,30,101870,100720,99610,77.29,0,3.7600000000000002,3.95,3.96,3.96,3.95,3.93,3.92,3.9,3.86,133.37,133.52,133.59,133.65,133.7,133.75,133.8,133.85,133.95,28.8,28.44,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A +2012,8,5,20,30,101850,100700,99590,76.4,0,2.81,2.93,2.94,2.94,2.93,2.91,2.9,2.88,2.85,132.29,131.97,131.76,131.55,131.35,131.14000000000001,130.92000000000002,130.72,130.26,28.86,28.5,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A +2012,8,5,21,30,101830,100680,99560,73.73,0,3.63,3.83,3.86,3.87,3.88,3.89,3.89,3.89,3.88,147.06,147.14000000000001,147.12,147.13,147.13,147.14000000000001,147.16,147.18,147.23,28.96,28.6,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.080000000000002,N/A,N/A +2012,8,5,22,30,101780,100630,99520,71.92,0,3.5700000000000003,3.7800000000000002,3.8200000000000003,3.84,3.85,3.86,3.86,3.87,3.87,171.99,171.56,171.18,170.83,170.49,170.17000000000002,169.84,169.54,168.89000000000001,28.98,28.64,28.48,28.28,28.09,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A +2012,8,5,23,30,101750,100600,99490,72.99,0,3.46,3.66,3.68,3.69,3.69,3.69,3.69,3.68,3.67,183.64000000000001,183.92000000000002,184.1,184.28,184.45000000000002,184.6,184.75,184.89000000000001,185.15,28.900000000000002,28.57,28.400000000000002,28.21,28.02,27.84,27.650000000000002,27.47,27.1,N/A,N/A +2012,8,6,0,30,101720,100570,99460,72.81,0,3.5100000000000002,3.7,3.72,3.72,3.72,3.71,3.7,3.69,3.66,172.67000000000002,172.4,172.18,171.96,171.74,171.53,171.28,171.05,170.45000000000002,28.86,28.53,28.36,28.17,27.98,27.8,27.61,27.43,27.060000000000002,N/A,N/A +2012,8,6,1,30,101700,100550,99440,67.92,0,2.49,2.63,2.65,2.66,2.67,2.67,2.68,2.68,2.69,183.83,183.65,183.35,183.01,182.64000000000001,182.26,181.74,181.22,179.75,29.080000000000002,28.77,28.61,28.42,28.240000000000002,28.060000000000002,27.87,27.7,27.35,N/A,N/A +2012,8,6,2,30,101710,100560,99450,70.99,0,3.2,3.37,3.38,3.39,3.38,3.38,3.38,3.37,3.35,191.92000000000002,191.06,190.64000000000001,190.21,189.77,189.33,188.83,188.36,187.22,28.95,28.63,28.46,28.27,28.080000000000002,27.900000000000002,27.71,27.54,27.17,N/A,N/A +2012,8,6,3,30,101730,100580,99460,70.67,0,3.3000000000000003,3.48,3.5,3.5100000000000002,3.52,3.52,3.52,3.52,3.5100000000000002,183.18,182.84,182.58,182.3,182.01,181.70000000000002,181.35,181,180.09,28.91,28.59,28.42,28.23,28.04,27.86,27.67,27.48,27.11,N/A,N/A +2012,8,6,4,30,101720,100570,99460,71.2,0,3.08,3.24,3.27,3.27,3.2800000000000002,3.27,3.27,3.27,3.2600000000000002,186.02,185.5,185.23,184.94,184.64000000000001,184.33,183.98,183.65,182.82,28.87,28.55,28.38,28.19,28,27.810000000000002,27.62,27.44,27.07,N/A,N/A +2012,8,6,5,30,101720,100570,99460,66.73,0,2.92,3.11,3.13,3.15,3.16,3.17,3.17,3.18,3.2,189.54,189.29,189.08,188.87,188.65,188.42000000000002,188.15,187.88,187.18,29.1,28.79,28.62,28.43,28.25,28.060000000000002,27.87,27.69,27.32,N/A,N/A +2012,8,6,6,30,101720,100570,99460,69.28,0,2.43,2.52,2.52,2.52,2.5100000000000002,2.5,2.49,2.48,2.44,199.67000000000002,199.44,199.22,198.99,198.76,198.53,198.25,197.99,197.3,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.17,N/A,N/A +2012,8,6,7,30,101720,100570,99460,67.98,0,2.38,2.49,2.5,2.5,2.5,2.49,2.49,2.48,2.47,206.05,205.77,205.62,205.46,205.27,205.08,204.85,204.64000000000001,204.08,29.02,28.69,28.52,28.330000000000002,28.13,27.95,27.75,27.57,27.19,N/A,N/A +2012,8,6,8,30,101750,100600,99490,70.35000000000001,0,2.23,2.3000000000000003,2.3000000000000003,2.29,2.29,2.27,2.2600000000000002,2.25,2.22,241.22,241.06,240.89000000000001,240.70000000000002,240.54,240.38,240.20000000000002,240.03,239.66,28.89,28.560000000000002,28.39,28.2,28.01,27.82,27.63,27.44,27.060000000000002,N/A,N/A +2012,8,6,9,30,101750,100600,99480,69.21000000000001,0,2.65,2.7600000000000002,2.77,2.77,2.77,2.77,2.7600000000000002,2.75,2.73,236.76,236.45000000000002,236.35,236.25,236.14000000000001,236.03,235.92000000000002,235.82,235.57,28.92,28.580000000000002,28.41,28.22,28.03,27.84,27.650000000000002,27.46,27.080000000000002,N/A,N/A +2012,8,6,10,30,101750,100600,99490,72.48,0,2.5500000000000003,2.65,2.66,2.65,2.64,2.63,2.62,2.61,2.58,243.42000000000002,243.4,243.32,243.24,243.16,243.09,243,242.92000000000002,242.75,28.71,28.37,28.2,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A +2012,8,6,11,30,101770,100620,99510,80.41,0,3.63,3.63,3.54,3.43,3.33,3.23,3.12,3.0300000000000002,2.83,301,299.82,298.96,298.04,297.1,296.18,295.15000000000003,294.2,291.87,28.16,27.8,27.63,27.44,27.26,27.080000000000002,26.89,26.71,26.35,N/A,N/A +2012,8,6,12,30,101780,100620,99510,81.25,0,3.7800000000000002,3.88,3.85,3.79,3.74,3.67,3.6,3.5300000000000002,3.35,319.28000000000003,319.57,319.69,319.8,319.90000000000003,320,320.07,320.13,320.17,27.79,27.400000000000002,27.22,27.03,26.84,26.650000000000002,26.46,26.28,25.91,N/A,N/A +2012,8,6,13,30,101810,100660,99540,82.07000000000001,0,3.77,3.91,3.92,3.9,3.88,3.86,3.83,3.8000000000000003,3.73,322.84000000000003,322.95,323.05,323.15000000000003,323.24,323.33,323.41,323.49,323.63,27.71,27.32,27.13,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A +2012,8,6,14,30,101830,100680,99560,78.75,0,3.24,3.37,3.38,3.37,3.36,3.34,3.33,3.31,3.27,329.44,329.79,329.99,330.18,330.37,330.55,330.74,330.90000000000003,331.27,27.92,27.54,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.02,N/A,N/A +2012,8,6,15,30,101810,100660,99550,76.29,0,2.2800000000000002,2.35,2.35,2.35,2.34,2.33,2.32,2.31,2.29,322.96,324,324.56,325.11,325.64,326.16,326.7,327.23,328.35,28.1,27.73,27.55,27.36,27.16,26.97,26.78,26.6,26.21,N/A,N/A +2012,8,6,16,30,101810,100660,99540,75.06,0,1.42,1.47,1.47,1.47,1.46,1.46,1.46,1.46,1.45,312.07,314.03000000000003,315.15000000000003,316.27,317.32,318.32,319.38,320.38,322.43,28.32,27.95,27.77,27.57,27.38,27.19,27,26.810000000000002,26.43,N/A,N/A +2012,8,6,17,30,101750,100600,99480,73.95,0,0.6,0.59,0.5700000000000001,0.56,0.54,0.52,0.51,0.49,0.44,229.72,230.76,231.02,231.36,231.68,231.98000000000002,232.43,232.88,234.63,28.51,28.150000000000002,27.98,27.79,27.6,27.42,27.23,27.05,26.7,N/A,N/A +2012,8,6,18,30,101730,100580,99470,71.96000000000001,0,2.15,2.19,2.17,2.15,2.12,2.09,2.05,2.0100000000000002,1.92,206.04,206.16,206.29,206.43,206.6,206.8,207.09,207.4,208.45000000000002,28.84,28.48,28.310000000000002,28.11,27.93,27.75,27.560000000000002,27.39,27.04,N/A,N/A +2012,8,6,19,30,101670,100520,99410,71.81,0,3.0300000000000002,3.12,3.1,3.0700000000000003,3.0300000000000002,2.98,2.94,2.88,2.75,200.83,201.13,201.33,201.56,201.79,202.03,202.33,202.62,203.47,29.02,28.650000000000002,28.48,28.29,28.11,27.93,27.740000000000002,27.57,27.23,N/A,N/A +2012,8,6,20,30,101590,100450,99340,70.24,0,4.16,4.33,4.33,4.3,4.2700000000000005,4.23,4.17,4.13,3.98,191.70000000000002,191.96,191.96,191.95000000000002,191.95000000000002,191.94,191.93,191.92000000000002,191.86,29.23,28.87,28.7,28.51,28.330000000000002,28.150000000000002,27.97,27.79,27.46,N/A,N/A +2012,8,6,21,30,101540,100390,99290,70.61,0,4.42,4.63,4.64,4.61,4.58,4.54,4.49,4.43,4.2700000000000005,192.13,192.03,191.95000000000002,191.84,191.70000000000002,191.52,191.29,191.06,190.21,29.27,28.94,28.77,28.580000000000002,28.39,28.21,28.03,27.86,27.51,N/A,N/A +2012,8,6,22,30,101550,100400,99300,70.82000000000001,0,4.71,4.95,4.95,4.92,4.87,4.82,4.74,4.66,4.38,193.78,193.58,193.45000000000002,193.27,193.06,192.83,192.48000000000002,192.11,190.67000000000002,29.35,29.03,28.87,28.68,28.5,28.32,28.14,27.97,27.650000000000002,N/A,N/A +2012,8,6,23,30,101490,100340,99230,72.93,0,5.28,5.57,5.58,5.55,5.49,5.43,5.33,5.24,4.8500000000000005,196.26,195.96,195.79,195.6,195.37,195.13,194.74,194.35,192.5,29.25,28.93,28.76,28.580000000000002,28.400000000000002,28.22,28.04,27.88,27.59,N/A,N/A +2012,8,7,0,30,101500,100360,99250,72.45,0,4.66,4.93,4.94,4.92,4.89,4.86,4.8,4.75,4.59,196.82,196.52,196.37,196.19,195.98000000000002,195.75,195.43,195.1,193.88,29.310000000000002,28.990000000000002,28.82,28.63,28.44,28.26,28.080000000000002,27.900000000000002,27.55,N/A,N/A +2012,8,7,1,30,101440,100300,99190,72.49,0,4.04,4.25,4.2700000000000005,4.25,4.22,4.19,4.15,4.11,3.99,203.36,203.18,202.98000000000002,202.75,202.49,202.22,201.83,201.43,200.08,29.27,28.95,28.78,28.59,28.400000000000002,28.22,28.03,27.85,27.5,N/A,N/A +2012,8,7,2,30,101480,100330,99230,73.28,0,3.67,3.86,3.88,3.87,3.86,3.84,3.81,3.79,3.71,212.21,212.15,212.1,212.01,211.9,211.77,211.58,211.38,210.72,29.23,28.91,28.75,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.44,N/A,N/A +2012,8,7,3,30,101460,100320,99210,74.18,0,3.9,4.13,4.16,4.17,4.17,4.16,4.15,4.14,4.1,211.06,211.08,210.97,210.87,210.76,210.64000000000001,210.5,210.37,210.01,29.18,28.85,28.68,28.48,28.3,28.11,27.91,27.73,27.35,N/A,N/A +2012,8,7,4,30,101430,100290,99180,74.89,0,2.36,2.45,2.46,2.45,2.45,2.44,2.43,2.42,2.39,217.43,217.27,216.96,216.62,216.27,215.93,215.53,215.15,214.21,29.07,28.740000000000002,28.57,28.38,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A +2012,8,7,5,30,101420,100270,99170,76.3,0,2.93,3.06,3.0700000000000003,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,2.99,242.3,242.11,242.08,242.05,242.02,241.99,241.96,241.93,241.84,28.96,28.63,28.46,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A +2012,8,7,6,30,101440,100300,99190,75.38,0,2.19,2.2600000000000002,2.2600000000000002,2.24,2.23,2.22,2.2,2.19,2.15,222.01,221.73000000000002,221.67000000000002,221.58,221.48000000000002,221.38,221.24,221.11,220.82,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,8,7,7,30,101420,100280,99170,73.92,0,2.05,2.14,2.15,2.14,2.14,2.14,2.13,2.13,2.11,255.02,254.88,254.89000000000001,254.89000000000001,254.87,254.85,254.81,254.78,254.67000000000002,28.95,28.62,28.45,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A +2012,8,7,8,30,101430,100280,99180,73.45,0,1.54,1.61,1.61,1.61,1.61,1.61,1.61,1.61,1.61,246.77,246.95000000000002,247.1,247.22,247.35,247.47,247.58,247.68,247.93,28.97,28.64,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A +2012,8,7,9,30,101450,100300,99190,74.64,0,1.47,1.52,1.52,1.51,1.51,1.5,1.49,1.49,1.47,249.27,249.34,249.56,249.76000000000002,249.93,250.08,250.24,250.39000000000001,250.66,28.900000000000002,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A +2012,8,7,10,30,101460,100310,99210,75.29,0,1.71,1.78,1.78,1.78,1.78,1.78,1.78,1.77,1.76,238.27,237.8,237.63,237.46,237.3,237.14000000000001,236.99,236.86,236.58,28.85,28.51,28.34,28.150000000000002,27.96,27.77,27.57,27.39,27,N/A,N/A +2012,8,7,11,30,101450,100300,99190,76.64,0,1.96,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.02,2.0100000000000002,2.0100000000000002,2,1.98,257.26,257.3,257.3,257.29,257.3,257.32,257.32,257.32,257.32,28.72,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,8,7,12,30,101470,100320,99210,78.57000000000001,0,1.6400000000000001,1.68,1.68,1.67,1.6600000000000001,1.6500000000000001,1.6400000000000001,1.6300000000000001,1.61,309.82,309.82,309.66,309.51,309.35,309.19,309.03000000000003,308.88,308.56,28.650000000000002,28.310000000000002,28.13,27.94,27.75,27.560000000000002,27.36,27.18,26.79,N/A,N/A +2012,8,7,13,30,101480,100340,99230,81.87,0,2.5500000000000003,2.5300000000000002,2.47,2.4,2.33,2.2600000000000002,2.2,2.13,2,319.27,319.7,319.87,320.06,320.25,320.44,320.67,320.89,321.40000000000003,28.34,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.05,26.86,26.490000000000002,N/A,N/A +2012,8,7,14,30,101510,100360,99250,81.79,0,1.68,1.68,1.6600000000000001,1.6300000000000001,1.6,1.57,1.54,1.5,1.44,303.3,303.02,302.96,302.89,302.83,302.77,302.69,302.62,302.45,28.29,27.93,27.75,27.560000000000002,27.36,27.18,26.98,26.8,26.42,N/A,N/A +2012,8,7,15,30,101510,100370,99260,81.92,0,1.3800000000000001,1.37,1.34,1.3,1.27,1.24,1.2,1.17,1.09,304.74,305.27,305.58,305.91,306.22,306.51,306.85,307.18,307.96,28.3,27.93,27.75,27.560000000000002,27.36,27.18,26.98,26.8,26.42,N/A,N/A +2012,8,7,16,30,101510,100360,99260,81.13,0,1.1400000000000001,1.1500000000000001,1.1400000000000001,1.12,1.1,1.09,1.07,1.05,1.01,293.96,294.03000000000003,294.11,294.21,294.3,294.38,294.44,294.49,294.52,28.45,28.09,27.91,27.72,27.52,27.330000000000002,27.14,26.96,26.580000000000002,N/A,N/A +2012,8,7,17,30,101480,100340,99230,80.64,0,1.25,1.27,1.25,1.24,1.23,1.21,1.2,1.18,1.1500000000000001,235.61,235.39000000000001,235.13,234.86,234.55,234.22,233.83,233.44,232.36,28.64,28.27,28.09,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.77,N/A,N/A +2012,8,7,18,30,101470,100320,99220,79.29,0,2.42,2.5,2.49,2.48,2.46,2.44,2.41,2.39,2.33,212.72,212.29,212.1,211.89000000000001,211.66,211.41,211.11,210.82,210,28.88,28.52,28.34,28.150000000000002,27.96,27.78,27.59,27.41,27.05,N/A,N/A +2012,8,7,19,30,101430,100290,99180,78,0,2.82,2.92,2.92,2.91,2.89,2.87,2.85,2.83,2.77,209.67000000000002,209.33,209.05,208.74,208.44,208.15,207.8,207.44,206.63,29.09,28.72,28.55,28.35,28.16,27.97,27.78,27.6,27.23,N/A,N/A +2012,8,7,20,30,101400,100260,99160,77.74,0,3.46,3.61,3.62,3.62,3.61,3.6,3.59,3.5700000000000003,3.5300000000000002,197.8,197.41,197.22,197,196.78,196.56,196.31,196.06,195.46,29.22,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.35,N/A,N/A +2012,8,7,21,30,101350,100210,99100,77.15,0,3.0100000000000002,3.15,3.16,3.16,3.16,3.15,3.14,3.13,3.11,201.54,201.01,200.63,200.22,199.83,199.46,199.03,198.62,197.65,29.27,28.92,28.75,28.55,28.36,28.17,27.98,27.8,27.42,N/A,N/A +2012,8,7,22,30,101330,100190,99080,78.72,0,4.0600000000000005,4.28,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.28,4.25,196.77,196.51,196.34,196.16,195.97,195.78,195.56,195.35,194.85,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.78,27.400000000000002,N/A,N/A +2012,8,7,23,30,101290,100150,99040,77.60000000000001,0,3.94,4.15,4.17,4.18,4.17,4.16,4.14,4.13,4.08,184.65,184.77,184.8,184.82,184.82,184.81,184.79,184.76,184.63,29.23,28.91,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,8,0,30,101290,100150,99040,79.03,0,4.55,4.83,4.86,4.87,4.87,4.86,4.8500000000000005,4.84,4.8100000000000005,175.74,175.70000000000002,175.70000000000002,175.67000000000002,175.61,175.53,175.41,175.29,174.84,29.14,28.810000000000002,28.650000000000002,28.45,28.26,28.080000000000002,27.89,27.71,27.34,N/A,N/A +2012,8,8,1,30,101260,100120,99020,79.03,0,3.88,4.1,4.14,4.15,4.15,4.14,4.14,4.13,4.11,180.56,180.08,179.8,179.51,179.21,178.92000000000002,178.58,178.26,177.52,29.05,28.73,28.55,28.36,28.17,27.98,27.79,27.61,27.23,N/A,N/A +2012,8,8,2,30,101300,100160,99050,79.85000000000001,0,3.95,4.18,4.22,4.24,4.24,4.24,4.24,4.24,4.23,176.96,177.15,177.23,177.29,177.32,177.35,177.36,177.37,177.31,29.02,28.69,28.52,28.330000000000002,28.14,27.95,27.75,27.57,27.19,N/A,N/A +2012,8,8,3,30,101320,100170,99070,78.61,0,3.5500000000000003,3.7600000000000002,3.79,3.81,3.81,3.81,3.8200000000000003,3.8200000000000003,3.81,162.04,162.31,162.47,162.62,162.75,162.86,162.97,163.08,163.27,29.03,28.7,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.580000000000002,27.2,N/A,N/A +2012,8,8,4,30,101310,100170,99060,80.47,0,4.12,4.39,4.43,4.46,4.47,4.48,4.48,4.48,4.48,179.16,178.84,178.67000000000002,178.51,178.35,178.21,178.07,177.93,177.66,28.94,28.6,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A +2012,8,8,5,30,101320,100180,99070,79.74,0,3.85,4.09,4.14,4.16,4.17,4.18,4.18,4.19,4.19,169.46,169.53,169.5,169.49,169.47,169.46,169.45000000000002,169.43,169.41,28.92,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.64,27.45,27.07,N/A,N/A +2012,8,8,6,30,101340,100200,99090,80.93,0,3.38,3.56,3.6,3.61,3.62,3.63,3.63,3.63,3.64,182.07,182.11,182.13,182.13,182.13,182.13,182.13,182.12,182.09,28.84,28.5,28.32,28.12,27.93,27.75,27.55,27.36,26.990000000000002,N/A,N/A +2012,8,8,7,30,101400,100250,99150,81.52,0,2.88,3.0700000000000003,3.11,3.14,3.16,3.18,3.2,3.22,3.25,187.11,186.02,185.42000000000002,184.83,184.31,183.8,183.31,182.86,181.93,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,8,8,8,30,101390,100250,99140,80.65,0,3.0100000000000002,3.18,3.21,3.22,3.23,3.24,3.25,3.25,3.2600000000000002,177.42000000000002,177.14000000000001,177,176.87,176.75,176.63,176.53,176.43,176.22,28.86,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A +2012,8,8,9,30,101420,100270,99170,79.69,0,2.29,2.4,2.41,2.42,2.42,2.42,2.43,2.43,2.42,177.33,177.33,177.29,177.24,177.19,177.14000000000001,177.07,177.01,176.91,28.86,28.52,28.35,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.01,N/A,N/A +2012,8,8,10,30,101450,100300,99200,80.15,0,0.9,0.92,0.93,0.93,0.9400000000000001,0.9400000000000001,0.9400000000000001,0.9500000000000001,0.96,202.48000000000002,201.92000000000002,201.41,200.91,200.46,200.03,199.61,199.21,198.29,28.8,28.46,28.29,28.09,27.900000000000002,27.72,27.52,27.330000000000002,26.96,N/A,N/A +2012,8,8,11,30,101480,100330,99230,80.53,0,0.89,0.91,0.9,0.89,0.87,0.86,0.85,0.8300000000000001,0.81,287.72,287.89,288.15000000000003,288.32,288.39,288.39,288.37,288.33,288.12,28.78,28.45,28.28,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A +2012,8,8,12,30,101450,100300,99190,86.24,19.400000000000002,4.66,4.6000000000000005,4.38,4.14,3.93,3.7600000000000002,3.66,3.59,3.5,196.35,197.46,198.13,198.86,199.45000000000002,199.92000000000002,199.9,199.83,198.92000000000002,27.09,26.8,26.72,26.66,26.63,26.6,26.52,26.45,26.23,N/A,N/A +2012,8,8,13,30,101530,100380,99270,79.23,0,1.83,1.85,1.83,1.79,1.8,1.84,1.8800000000000001,1.93,1.96,205.09,207.72,209.95000000000002,213.34,217.74,223.29,225.73000000000002,226.77,224.06,28.18,27.88,27.75,27.62,27.580000000000002,27.6,27.54,27.45,27.23,N/A,N/A +2012,8,8,14,30,101550,100400,99290,86.58,0,4.57,4.54,4.37,4.14,3.85,3.52,3.12,2.75,2.15,208.46,208.74,208.88,209.12,209.67000000000002,210.43,212.81,215.4,223.33,27.52,27.150000000000002,26.990000000000002,26.830000000000002,26.69,26.560000000000002,26.45,26.35,26.17,N/A,N/A +2012,8,8,15,30,101540,100390,99280,77.13,0,2.69,2.6,2.48,2.31,2.1,1.87,1.47,1.1300000000000001,0.12,209.1,208.48000000000002,208.09,207.57,206.79,205.92000000000002,203.99,202.27,55.76,28.3,27.93,27.75,27.55,27.36,27.17,26.98,26.8,26.53,N/A,N/A +2012,8,8,16,30,101550,100410,99300,76.91,0,1.58,1.61,1.58,1.55,1.53,1.5,1.48,1.45,1.41,175.97,174.81,174.07,173.22,172.3,171.32,170.16,169.02,166.04,28.7,28.35,28.17,27.97,27.79,27.6,27.400000000000002,27.22,26.84,N/A,N/A +2012,8,8,17,30,101550,100400,99290,78.65,0,2.05,2.16,2.19,2.2,2.22,2.23,2.25,2.2600000000000002,2.29,149.20000000000002,149.91,150.34,150.77,151.18,151.6,152.06,152.52,153.53,28.8,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.94,N/A,N/A +2012,8,8,18,30,101530,100390,99280,78.9,0,2.13,2.22,2.23,2.24,2.24,2.24,2.24,2.23,2.23,146.74,146.61,146.55,146.5,146.46,146.41,146.38,146.34,146.29,28.96,28.59,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A +2012,8,8,19,30,101520,100380,99270,79.73,0,2.99,3.12,3.14,3.15,3.15,3.16,3.16,3.16,3.15,142.83,142.65,142.54,142.41,142.3,142.19,142.08,141.98,141.74,29.05,28.68,28.5,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A +2012,8,8,20,30,101450,100300,99200,79.74,0,2.45,2.5500000000000003,2.57,2.57,2.58,2.58,2.58,2.57,2.57,164.14000000000001,163.49,163.16,162.81,162.5,162.19,161.87,161.57,160.93,29.080000000000002,28.71,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.19,N/A,N/A +2012,8,8,21,30,101400,100260,99160,73.01,0,3.14,3.29,3.31,3.31,3.31,3.31,3.3000000000000003,3.29,3.2800000000000002,156.98,157.31,157.46,157.61,157.76,157.89000000000001,158.03,158.16,158.44,29.45,29.1,28.93,28.73,28.54,28.35,28.150000000000002,27.97,27.59,N/A,N/A +2012,8,8,22,30,101400,100260,99160,79.16,0,4.11,4.42,4.49,4.54,4.58,4.61,4.64,4.66,4.7,163.74,163.85,163.89000000000001,163.94,163.98,164.04,164.1,164.15,164.27,29.29,28.95,28.78,28.580000000000002,28.39,28.2,28,27.810000000000002,27.43,N/A,N/A +2012,8,8,23,30,101380,100230,99130,78.24,0,4.93,5.2700000000000005,5.33,5.37,5.39,5.4,5.42,5.43,5.44,169.89000000000001,169.67000000000002,169.52,169.35,169.20000000000002,169.04,168.88,168.72,168.38,29.310000000000002,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A +2012,8,9,0,30,101360,100210,99110,79.78,0,4.62,4.94,5.01,5.04,5.0600000000000005,5.08,5.08,5.09,5.09,170.66,170.61,170.68,170.73,170.77,170.8,170.83,170.86,170.9,29.16,28.82,28.650000000000002,28.45,28.26,28.080000000000002,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,9,1,30,101330,100190,99090,77.92,0,4.47,4.7700000000000005,4.82,4.84,4.8500000000000005,4.86,4.86,4.86,4.8500000000000005,169.31,169.16,169.08,169.02,168.97,168.91,168.86,168.8,168.68,29.19,28.87,28.69,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.36,N/A,N/A +2012,8,9,2,30,101350,100210,99110,81.29,0,4.5600000000000005,4.86,4.93,4.96,4.98,5,5.01,5.0200000000000005,5.03,169.97,170.05,170.06,170.07,170.08,170.08,170.07,170.07,170.06,28.96,28.62,28.45,28.26,28.07,27.88,27.69,27.5,27.13,N/A,N/A +2012,8,9,3,30,101350,100200,99100,82.54,0,5.46,5.8100000000000005,5.87,5.88,5.88,5.87,5.8500000000000005,5.84,5.79,176.46,176.06,175.78,175.49,175.24,174.99,174.75,174.52,174.08,28.93,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.62,27.43,27.05,N/A,N/A +2012,8,9,4,30,101340,100190,99090,83.95,0,5.17,5.45,5.48,5.48,5.47,5.44,5.42,5.39,5.33,169.06,169.89000000000001,170.33,170.75,171.14000000000001,171.54,171.95000000000002,172.34,173.21,28.8,28.46,28.28,28.09,27.900000000000002,27.72,27.53,27.36,26.990000000000002,N/A,N/A +2012,8,9,5,30,101370,100230,99120,85.13,0,4.65,4.96,5.03,5.0600000000000005,5.09,5.11,5.12,5.13,5.14,179.07,178.87,178.74,178.61,178.48,178.35,178.23,178.11,177.87,28.7,28.35,28.17,27.97,27.78,27.59,27.39,27.2,26.82,N/A,N/A +2012,8,9,6,30,101390,100250,99140,84.51,0,4.89,5.19,5.24,5.25,5.26,5.25,5.24,5.22,5.19,183.19,183.31,183.33,183.34,183.35,183.35,183.33,183.32,183.3,28.86,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,8,9,7,30,101410,100260,99160,82.32000000000001,0,3.89,4.13,4.17,4.2,4.21,4.22,4.22,4.23,4.23,193.52,193.45000000000002,193.43,193.43,193.43,193.43,193.45000000000002,193.49,193.56,28.92,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.62,27.44,27.060000000000002,N/A,N/A +2012,8,9,8,30,101430,100290,99180,76.7,0,3.46,3.68,3.73,3.7600000000000002,3.79,3.81,3.83,3.85,3.88,199.67000000000002,198.96,198.59,198.25,197.96,197.68,197.42000000000002,197.19,196.74,29.14,28.810000000000002,28.64,28.44,28.25,28.060000000000002,27.87,27.68,27.3,N/A,N/A +2012,8,9,9,30,101450,100310,99200,78.55,0,3.8200000000000003,4.08,4.14,4.18,4.21,4.23,4.25,4.2700000000000005,4.29,206.44,206.31,206.1,205.91,205.73000000000002,205.57,205.4,205.24,204.93,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,8,9,10,30,101450,100310,99200,80.81,0,4.51,4.79,4.8500000000000005,4.87,4.89,4.9,4.91,4.92,4.92,210.43,210.31,210.19,210.07,209.96,209.85,209.74,209.64000000000001,209.42000000000002,28.91,28.560000000000002,28.39,28.19,28,27.8,27.61,27.42,27.04,N/A,N/A +2012,8,9,11,30,101490,100350,99240,83.35000000000001,0,3.93,4.17,4.23,4.26,4.29,4.3100000000000005,4.32,4.33,4.3500000000000005,228.98000000000002,228.44,228.05,227.68,227.35,227.04,226.73000000000002,226.44,225.85,28.86,28.51,28.34,28.14,27.95,27.76,27.560000000000002,27.38,26.990000000000002,N/A,N/A +2012,8,9,12,30,101490,100350,99240,81.38,0,3.81,3.99,4.03,4.04,4.05,4.05,4.0600000000000005,4.0600000000000005,4.0600000000000005,253.22,252.07,251.29,250.52,249.82,249.13,248.44,247.75,246.36,28.98,28.66,28.490000000000002,28.29,28.11,27.92,27.73,27.55,27.18,N/A,N/A +2012,8,9,13,30,101530,100380,99270,88.97,7,9.38,9.88,9.85,9.72,9.58,9.42,9.24,9.07,8.72,259.72,259.27,258.87,258.26,257.53000000000003,256.69,255.63,254.57,252.02,27.72,27.3,27.14,26.97,26.810000000000002,26.67,26.52,26.39,26.12,N/A,N/A +2012,8,9,14,30,101560,100410,99300,84.53,0,2.47,2.66,2.75,2.87,3.0300000000000002,3.24,3.49,3.7600000000000002,4.1,270.38,265.53000000000003,262.8,259.43,255.46,250.91,245.74,240.39000000000001,232.73000000000002,27.85,27.51,27.36,27.21,27.1,27,26.94,26.900000000000002,26.740000000000002,N/A,N/A +2012,8,9,15,30,101550,100400,99300,82.8,2.2,2.04,2.29,2.42,2.57,2.75,2.95,3.17,3.4,3.8200000000000003,262.25,257.49,254.74,251.94,249.24,246.44,243.55,240.66,235.48000000000002,28.22,27.89,27.740000000000002,27.57,27.43,27.29,27.150000000000002,27.02,26.740000000000002,N/A,N/A +2012,8,9,16,30,101530,100380,99270,88.42,0,5.32,5.43,5.38,5.2700000000000005,5.17,5.07,4.98,4.91,4.74,244.69,244,243.38,242.55,241.59,240.47,238.94,237.31,233.34,27.42,27.04,26.89,26.740000000000002,26.61,26.490000000000002,26.400000000000002,26.32,26.17,N/A,N/A +2012,8,9,17,30,101540,100390,99290,79.06,0,2.16,2.32,2.38,2.45,2.54,2.64,2.8000000000000003,2.99,3.7600000000000002,223.54,222.88,222.76,222.57,222.32,221.99,221.39000000000001,220.65,217.53,28.48,28.12,27.95,27.76,27.59,27.41,27.25,27.1,26.89,N/A,N/A +2012,8,9,18,30,101500,100360,99250,80.99,0,3.34,3.52,3.56,3.59,3.61,3.64,3.67,3.7,3.81,218.18,218.31,218.3,218.32,218.35,218.4,218.49,218.59,218.93,28.830000000000002,28.46,28.29,28.09,27.900000000000002,27.72,27.53,27.35,26.990000000000002,N/A,N/A +2012,8,9,19,30,101480,100340,99230,81.52,0,4.33,4.63,4.7,4.75,4.79,4.82,4.8500000000000005,4.87,4.92,204.45000000000002,204.65,204.79,204.93,205.05,205.16,205.29,205.41,205.66,29.19,28.830000000000002,28.66,28.45,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,9,20,30,101410,100270,99170,79.10000000000001,0,6.34,6.84,6.93,6.98,7.01,7.03,7.04,7.04,7.05,203.09,203.21,203.29,203.36,203.43,203.49,203.55,203.62,203.75,29.44,29.09,28.92,28.72,28.54,28.34,28.150000000000002,27.97,27.59,N/A,N/A +2012,8,9,21,30,101360,100230,99120,81.45,0,6.83,7.38,7.5,7.5600000000000005,7.59,7.61,7.63,7.640000000000001,7.640000000000001,201.87,201.85,201.89000000000001,201.95000000000002,202,202.07,202.15,202.23000000000002,202.45000000000002,29.41,29.080000000000002,28.92,28.72,28.54,28.35,28.16,27.98,27.61,N/A,N/A +2012,8,9,22,30,101330,100190,99080,81,0,6.5,7.01,7.1000000000000005,7.140000000000001,7.16,7.17,7.16,7.15,7.11,202.01,202.02,202.11,202.19,202.26,202.32,202.39000000000001,202.45000000000002,202.59,29.36,29.03,28.86,28.66,28.48,28.29,28.1,27.92,27.55,N/A,N/A +2012,8,9,23,30,101330,100190,99090,81.94,0,5.45,5.8500000000000005,5.93,5.97,5.99,6,6.01,6,5.99,183.21,183.42000000000002,183.57,183.68,183.75,183.81,183.86,183.89000000000001,183.96,29.29,28.95,28.78,28.580000000000002,28.400000000000002,28.21,28.01,27.830000000000002,27.45,N/A,N/A +2012,8,10,0,30,101250,100110,99010,83.81,0,5.14,5.5,5.55,5.57,5.58,5.58,5.58,5.57,5.5600000000000005,205.53,205.68,205.71,205.77,205.83,205.9,205.97,206.04,206.24,29.14,28.8,28.63,28.44,28.25,28.060000000000002,27.88,27.7,27.34,N/A,N/A +2012,8,10,1,30,101230,100090,98990,83.21000000000001,0,7.13,7.71,7.82,7.87,7.890000000000001,7.9,7.9,7.9,7.87,205.41,205.56,205.63,205.71,205.78,205.86,205.96,206.05,206.29,29.26,28.92,28.75,28.55,28.37,28.19,27.990000000000002,27.810000000000002,27.45,N/A,N/A +2012,8,10,2,30,101230,100100,98990,82.96000000000001,0,6.72,7.2700000000000005,7.38,7.43,7.46,7.47,7.48,7.48,7.46,207.37,207.43,207.49,207.55,207.61,207.68,207.76,207.83,208.02,29.310000000000002,28.98,28.810000000000002,28.62,28.43,28.25,28.060000000000002,27.88,27.51,N/A,N/A +2012,8,10,3,30,101250,100110,99010,82.95,0,6.3100000000000005,6.84,6.94,6.99,7.03,7.04,7.04,7.04,7.03,204.70000000000002,204.92000000000002,205.04,205.14000000000001,205.22,205.29,205.35,205.4,205.52,29.330000000000002,28.990000000000002,28.830000000000002,28.63,28.44,28.25,28.060000000000002,27.87,27.5,N/A,N/A +2012,8,10,4,30,101230,100090,98990,80.83,0,5.25,5.68,5.76,5.8100000000000005,5.84,5.8500000000000005,5.86,5.87,5.89,225.81,225.93,225.94,225.94,225.94,225.93,225.93,225.94,226,29.400000000000002,29.07,28.900000000000002,28.71,28.52,28.330000000000002,28.14,27.96,27.580000000000002,N/A,N/A +2012,8,10,5,30,101240,100100,98990,83.74,0,6.6000000000000005,7.11,7.18,7.2,7.19,7.16,7.12,7.07,6.94,217.67000000000002,217.66,217.61,217.54,217.47,217.39000000000001,217.28,217.18,216.93,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.95,27.76,27.38,N/A,N/A +2012,8,10,6,30,101220,100090,98980,75.09,0,6.5200000000000005,7.08,7.18,7.22,7.24,7.25,7.25,7.24,7.23,219.24,219.35,219.4,219.43,219.46,219.5,219.53,219.57,219.67000000000002,29.76,29.44,29.28,29.080000000000002,28.900000000000002,28.71,28.52,28.34,27.97,N/A,N/A +2012,8,10,7,30,101230,100090,98990,74.52,0,7.78,8.49,8.63,8.700000000000001,8.75,8.77,8.790000000000001,8.8,8.82,220.74,220.66,220.62,220.6,220.6,220.61,220.63,220.66,220.72,29.78,29.47,29.3,29.11,28.92,28.73,28.54,28.35,27.97,N/A,N/A +2012,8,10,8,30,101250,100110,99010,74.17,0,7.15,7.8,7.930000000000001,8,8.05,8.08,8.11,8.13,8.17,223.11,222.83,222.73000000000002,222.64000000000001,222.59,222.55,222.52,222.51,222.5,29.85,29.55,29.39,29.2,29.02,28.830000000000002,28.650000000000002,28.47,28.1,N/A,N/A +2012,8,10,9,30,101230,100090,98990,74.76,0,7.67,8.36,8.5,8.56,8.6,8.620000000000001,8.63,8.63,8.620000000000001,230.95000000000002,230.98000000000002,230.97,230.93,230.88,230.82,230.75,230.68,230.51,29.67,29.35,29.19,28.990000000000002,28.8,28.61,28.41,28.23,27.84,N/A,N/A +2012,8,10,10,30,101240,100110,99000,75.83,0,6.92,7.57,7.7,7.7700000000000005,7.82,7.84,7.86,7.86,7.8500000000000005,231.35,231.51,231.55,231.58,231.59,231.61,231.61,231.6,231.58,29.63,29.310000000000002,29.150000000000002,28.95,28.76,28.57,28.38,28.19,27.810000000000002,N/A,N/A +2012,8,10,11,30,101280,100140,99030,76.49,0,6.7,7.28,7.41,7.47,7.51,7.54,7.55,7.5600000000000005,7.5600000000000005,235.85,235.82,235.77,235.71,235.65,235.6,235.54,235.48000000000002,235.37,29.53,29.21,29.04,28.84,28.66,28.47,28.27,28.09,27.71,N/A,N/A +2012,8,10,12,30,101270,100130,99030,74.82000000000001,0,6.82,7.45,7.58,7.66,7.71,7.74,7.76,7.78,7.79,245.62,245.32,245.18,245.04,244.9,244.77,244.64000000000001,244.51,244.27,29.63,29.330000000000002,29.16,28.97,28.78,28.59,28.400000000000002,28.21,27.830000000000002,N/A,N/A +2012,8,10,13,30,101310,100170,99070,73.48,0,6.41,6.99,7.1000000000000005,7.17,7.21,7.24,7.26,7.2700000000000005,7.28,248.28,248.23000000000002,248.17000000000002,248.1,248.04,247.98000000000002,247.93,247.87,247.76000000000002,29.77,29.46,29.3,29.1,28.91,28.72,28.52,28.34,27.96,N/A,N/A +2012,8,10,14,30,101350,100210,99110,72.77,0,6.1000000000000005,6.61,6.72,6.78,6.83,6.86,6.890000000000001,6.91,6.94,248.83,248.78,248.75,248.73000000000002,248.73000000000002,248.72,248.73000000000002,248.74,248.77,29.68,29.37,29.2,29.01,28.82,28.63,28.44,28.26,27.88,N/A,N/A +2012,8,10,15,30,101350,100210,99110,77.06,0,6.98,7.53,7.63,7.67,7.69,7.7,7.7,7.7,7.68,244.05,244.15,244.28,244.4,244.52,244.64000000000001,244.76,244.87,245.08,29.45,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A +2012,8,10,16,30,101360,100220,99120,73.46000000000001,0,6.16,6.69,6.8100000000000005,6.88,6.92,6.96,6.99,7.0200000000000005,7.07,233.82,233.89000000000001,233.93,233.97,234,234.02,234.05,234.09,234.16,29.740000000000002,29.42,29.26,29.060000000000002,28.88,28.69,28.5,28.32,27.94,N/A,N/A +2012,8,10,17,30,101330,100190,99080,75.02,0,6.78,7.34,7.44,7.48,7.51,7.5200000000000005,7.51,7.51,7.48,219.68,219.91,220.07,220.21,220.33,220.46,220.58,220.69,220.94,29.75,29.43,29.27,29.07,28.88,28.69,28.5,28.32,27.94,N/A,N/A +2012,8,10,18,30,101290,100150,99050,76.52,0,7.390000000000001,8.01,8.13,8.18,8.21,8.22,8.22,8.21,8.19,212.41,212.69,212.87,213.05,213.23000000000002,213.4,213.59,213.77,214.16,29.650000000000002,29.32,29.16,28.96,28.77,28.59,28.400000000000002,28.22,27.84,N/A,N/A +2012,8,10,19,30,101270,100140,99030,75.45,0,8.19,8.94,9.1,9.17,9.22,9.24,9.25,9.25,9.23,206.08,206.25,206.37,206.49,206.62,206.73000000000002,206.86,206.99,207.3,29.78,29.46,29.29,29.1,28.91,28.73,28.54,28.36,27.990000000000002,N/A,N/A +2012,8,10,20,30,101220,100080,98980,77.01,0,8.31,9.07,9.22,9.290000000000001,9.33,9.34,9.34,9.34,9.3,213.17000000000002,213.24,213.31,213.39000000000001,213.45000000000002,213.53,213.6,213.67000000000002,213.85,29.64,29.32,29.150000000000002,28.96,28.77,28.580000000000002,28.400000000000002,28.21,27.84,N/A,N/A +2012,8,10,21,30,101180,100040,98940,77.05,0,8.71,9.53,9.700000000000001,9.78,9.82,9.85,9.85,9.85,9.83,213.19,213.33,213.43,213.51,213.6,213.69,213.77,213.84,214.04,29.650000000000002,29.330000000000002,29.16,28.97,28.78,28.59,28.400000000000002,28.22,27.85,N/A,N/A +2012,8,10,22,30,101150,100010,98910,76.42,0,8.5,9.3,9.47,9.55,9.6,9.620000000000001,9.63,9.64,9.620000000000001,210.58,210.61,210.67000000000002,210.71,210.74,210.76,210.77,210.77,210.76,29.66,29.34,29.18,28.98,28.8,28.61,28.42,28.23,27.86,N/A,N/A +2012,8,10,23,30,101100,99960,98860,74.36,0,8.94,9.8,9.97,10.05,10.09,10.11,10.11,10.1,10.06,212.23000000000002,212.33,212.37,212.39000000000001,212.42000000000002,212.43,212.45000000000002,212.47,212.49,29.76,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.98,N/A,N/A +2012,8,11,0,30,101100,99960,98860,74.95,0,8.36,9.120000000000001,9.27,9.34,9.38,9.39,9.39,9.38,9.35,212.32,212.33,212.38,212.43,212.48000000000002,212.53,212.59,212.65,212.8,29.7,29.400000000000002,29.240000000000002,29.04,28.86,28.67,28.490000000000002,28.310000000000002,27.94,N/A,N/A +2012,8,11,1,30,101070,99930,98830,69.76,0,8.76,9.57,9.74,9.8,9.84,9.84,9.83,9.81,9.74,208.9,208.9,208.88,208.84,208.8,208.75,208.67000000000002,208.58,208.32,29.94,29.67,29.51,29.32,29.13,28.95,28.76,28.580000000000002,28.2,N/A,N/A +2012,8,11,2,30,101090,99960,98850,72.52,0,8.06,8.77,8.9,8.94,8.97,8.97,8.96,8.950000000000001,8.9,212.95000000000002,212.92000000000002,212.85,212.79,212.73000000000002,212.68,212.62,212.56,212.42000000000002,29.87,29.59,29.43,29.240000000000002,29.060000000000002,28.88,28.69,28.51,28.16,N/A,N/A +2012,8,11,3,30,101110,99970,98870,74.96000000000001,0,8.69,9.47,9.63,9.68,9.71,9.72,9.700000000000001,9.69,9.63,208.57,208.63,208.59,208.55,208.5,208.46,208.4,208.34,208.19,29.73,29.43,29.27,29.080000000000002,28.89,28.71,28.52,28.34,27.97,N/A,N/A +2012,8,11,4,30,101130,100000,98890,72.44,0,7.84,8.51,8.64,8.69,8.72,8.73,8.72,8.700000000000001,8.66,210.42000000000002,210.17000000000002,210.06,209.93,209.81,209.67000000000002,209.53,209.38,209.03,29.79,29.51,29.35,29.150000000000002,28.97,28.79,28.6,28.41,28.04,N/A,N/A +2012,8,11,5,30,101110,99980,98880,70.11,0,8.23,9.02,9.17,9.25,9.290000000000001,9.31,9.32,9.32,9.3,198.49,198.74,198.84,198.92000000000002,198.98000000000002,199.04,199.09,199.14000000000001,199.24,29.89,29.6,29.44,29.25,29.060000000000002,28.88,28.69,28.51,28.14,N/A,N/A +2012,8,11,6,30,101160,100030,98920,65.78,0,8.2,8.96,9.120000000000001,9.19,9.23,9.26,9.27,9.28,9.27,213.70000000000002,213.71,213.78,213.88,213.97,214.06,214.16,214.26,214.45000000000002,30.02,29.75,29.6,29.41,29.23,29.04,28.85,28.66,28.29,N/A,N/A +2012,8,11,7,30,101220,100080,98980,73.56,0,7.05,7.72,7.86,7.94,7.99,8.03,8.05,8.07,8.08,214.84,214.83,214.82,214.79,214.76,214.72,214.67000000000002,214.64000000000001,214.55,29.59,29.28,29.11,28.91,28.73,28.54,28.34,28.16,27.78,N/A,N/A +2012,8,11,8,30,101230,100090,98980,72.27,0,6.98,7.59,7.72,7.78,7.82,7.8500000000000005,7.86,7.88,7.88,221.27,221.22,221.21,221.21,221.21,221.21,221.20000000000002,221.20000000000002,221.21,29.560000000000002,29.25,29.09,28.89,28.7,28.52,28.330000000000002,28.14,27.76,N/A,N/A +2012,8,11,9,30,101220,100080,98980,76.60000000000001,0,6.99,7.61,7.73,7.8,7.8500000000000005,7.87,7.890000000000001,7.9,7.91,222.95000000000002,223.14000000000001,223.27,223.39000000000001,223.49,223.59,223.68,223.77,223.94,29.38,29.05,28.88,28.68,28.490000000000002,28.3,28.11,27.92,27.54,N/A,N/A +2012,8,11,10,30,101240,100100,99000,79.9,0,7.4,8.05,8.19,8.27,8.32,8.35,8.370000000000001,8.38,8.39,233.05,232.86,232.73000000000002,232.59,232.46,232.32,232.19,232.07,231.79,29.19,28.84,28.67,28.47,28.28,28.09,27.89,27.71,27.32,N/A,N/A +2012,8,11,11,30,101290,100150,99050,80.60000000000001,0,6.57,7.12,7.24,7.3100000000000005,7.3500000000000005,7.390000000000001,7.41,7.43,7.45,236.83,237.16,237.23000000000002,237.27,237.3,237.31,237.32,237.31,237.28,29.150000000000002,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A +2012,8,11,12,30,101320,100180,99080,79.96000000000001,0,5.74,6.24,6.3500000000000005,6.43,6.48,6.5200000000000005,6.55,6.57,6.6000000000000005,243.88,243.85,243.89000000000001,243.93,243.96,244,244.04,244.07,244.15,29.150000000000002,28.8,28.62,28.42,28.22,28.03,27.830000000000002,27.64,27.26,N/A,N/A +2012,8,11,13,30,101340,100200,99090,78.10000000000001,0,6.38,6.82,6.890000000000001,6.91,6.91,6.9,6.88,6.86,6.8,256.87,257.03000000000003,257.12,257.18,257.25,257.31,257.38,257.45,257.62,29.19,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.330000000000002,N/A,N/A +2012,8,11,14,30,101380,100240,99140,83.09,0,5.53,5.89,5.95,5.97,5.98,5.98,5.98,5.98,5.97,271.59000000000003,270.69,270.11,269.52,269,268.5,268.01,267.57,266.69,29,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.7,27.52,27.14,N/A,N/A +2012,8,11,15,30,101400,100260,99150,81.05,0,5.2,5.53,5.59,5.62,5.63,5.64,5.64,5.63,5.62,266.12,265.73,265.52,265.31,265.12,264.94,264.77,264.6,264.26,28.96,28.61,28.44,28.240000000000002,28.060000000000002,27.87,27.68,27.5,27.13,N/A,N/A +2012,8,11,16,30,101410,100270,99160,78.88,0,4.5200000000000005,4.84,4.91,4.95,4.98,5.01,5.04,5.0600000000000005,5.11,245.66,245.45000000000002,245.48000000000002,245.48000000000002,245.46,245.45000000000002,245.43,245.41,245.36,29.09,28.75,28.580000000000002,28.38,28.2,28.01,27.82,27.64,27.28,N/A,N/A +2012,8,11,17,30,101370,100230,99120,79.57000000000001,0,4.43,4.7,4.75,4.7700000000000005,4.79,4.79,4.78,4.7700000000000005,4.75,234.1,234.51,234.68,234.88,235.1,235.33,235.63,235.96,236.92000000000002,29.23,28.89,28.72,28.53,28.35,28.17,27.990000000000002,27.810000000000002,27.48,N/A,N/A +2012,8,11,18,30,101350,100210,99110,75.78,0,3.48,3.65,3.67,3.66,3.64,3.62,3.59,3.5500000000000003,3.45,215.43,215.89000000000001,216.16,216.45000000000002,216.74,217.04,217.38,217.72,218.64000000000001,29.64,29.310000000000002,29.150000000000002,28.95,28.77,28.59,28.41,28.23,27.89,N/A,N/A +2012,8,11,19,30,101340,100200,99100,76.61,0,3.63,3.75,3.74,3.69,3.64,3.59,3.52,3.46,3.29,213.48000000000002,213.42000000000002,213.44,213.45000000000002,213.44,213.42000000000002,213.39000000000001,213.36,213.21,29.73,29.39,29.23,29.03,28.85,28.66,28.48,28.3,27.95,N/A,N/A +2012,8,11,20,30,101330,100200,99090,77.47,0,4.61,4.87,4.89,4.88,4.86,4.84,4.8,4.7700000000000005,4.69,182.12,181.98,181.77,181.53,181.3,181.05,180.76,180.48,179.76,29.8,29.47,29.3,29.11,28.92,28.740000000000002,28.55,28.37,28,N/A,N/A +2012,8,11,21,30,101260,100120,99020,79.15,0,6.34,6.8,6.87,6.88,6.88,6.87,6.8500000000000005,6.82,6.75,195.11,195.07,195.02,194.95000000000002,194.9,194.84,194.77,194.71,194.54,29.63,29.310000000000002,29.14,28.94,28.76,28.57,28.38,28.19,27.830000000000002,N/A,N/A +2012,8,11,22,30,101240,100100,98990,79.83,0,6.48,6.97,7.0600000000000005,7.08,7.09,7.08,7.0600000000000005,7.04,6.97,206.03,206.02,205.94,205.84,205.75,205.65,205.54,205.43,205.16,29.54,29.22,29.060000000000002,28.86,28.67,28.48,28.3,28.11,27.740000000000002,N/A,N/A +2012,8,11,23,30,101200,100060,98960,81.32000000000001,0,6.890000000000001,7.44,7.54,7.57,7.58,7.58,7.57,7.55,7.49,209.75,209.68,209.65,209.61,209.57,209.52,209.46,209.4,209.26,29.42,29.09,28.92,28.72,28.54,28.35,28.150000000000002,27.97,27.59,N/A,N/A +2012,8,12,0,30,101250,100110,99010,80.88,0,6.16,6.640000000000001,6.72,6.75,6.76,6.76,6.75,6.74,6.7,200.85,200.82,200.76,200.68,200.59,200.51,200.39000000000001,200.28,199.98000000000002,29.400000000000002,29.07,28.91,28.71,28.52,28.34,28.150000000000002,27.97,27.6,N/A,N/A +2012,8,12,1,30,101210,100070,98960,79.59,0,6.5600000000000005,7.07,7.16,7.18,7.19,7.19,7.17,7.140000000000001,7.08,209.51,209.49,209.41,209.32,209.22,209.13,209.02,208.9,208.6,29.39,29.07,28.900000000000002,28.71,28.52,28.34,28.150000000000002,27.97,27.61,N/A,N/A +2012,8,12,2,30,101280,100140,99030,80.71000000000001,0,6.23,6.72,6.8100000000000005,6.8500000000000005,6.86,6.87,6.87,6.86,6.84,204.77,204.65,204.6,204.54,204.47,204.39000000000001,204.3,204.20000000000002,203.97,29.34,29.01,28.84,28.64,28.46,28.27,28.080000000000002,27.900000000000002,27.53,N/A,N/A +2012,8,12,3,30,101270,100130,99030,81.7,0,6.95,7.51,7.61,7.66,7.68,7.69,7.69,7.68,7.65,199.75,199.66,199.58,199.51,199.45000000000002,199.38,199.31,199.23000000000002,199.08,29.240000000000002,28.900000000000002,28.73,28.53,28.35,28.16,27.97,27.79,27.42,N/A,N/A +2012,8,12,4,30,101240,100100,98990,79.89,0,6.58,7.12,7.23,7.28,7.3100000000000005,7.33,7.34,7.34,7.34,202.26,202.16,202.13,202.1,202.07,202.03,201.99,201.95000000000002,201.84,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.97,27.78,27.41,N/A,N/A +2012,8,12,5,30,101270,100130,99030,83.14,0,6.92,7.48,7.59,7.63,7.66,7.67,7.67,7.66,7.640000000000001,200.89000000000001,200.9,200.89000000000001,200.88,200.87,200.85,200.83,200.81,200.75,29.060000000000002,28.72,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A +2012,8,12,6,30,101290,100150,99050,81.03,0,6.24,6.72,6.8100000000000005,6.86,6.890000000000001,6.9,6.92,6.92,6.92,192.34,192.38,192.48000000000002,192.57,192.65,192.73000000000002,192.82,192.89000000000001,193.04,29.13,28.76,28.580000000000002,28.38,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A +2012,8,12,7,30,101360,100220,99110,82.51,0,6.29,6.78,6.88,6.94,6.98,7,7.0200000000000005,7.03,7.04,187.1,186.94,186.89000000000001,186.83,186.78,186.74,186.70000000000002,186.65,186.57,29.1,28.73,28.55,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A +2012,8,12,8,30,101360,100220,99120,76.38,0,6.92,7.32,7.37,7.37,7.3500000000000005,7.33,7.3,7.2700000000000005,7.21,190.68,191.20000000000002,191.46,191.72,191.94,192.15,192.32,192.47,192.71,29.28,28.93,28.76,28.560000000000002,28.38,28.2,28.01,27.830000000000002,27.46,N/A,N/A +2012,8,12,9,30,101410,100270,99160,80.37,0,5.5600000000000005,5.95,6.03,6.0600000000000005,6.08,6.09,6.09,6.09,6.09,197.14000000000001,197.11,197.16,197.23000000000002,197.3,197.38,197.45000000000002,197.53,197.68,29.09,28.72,28.55,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A +2012,8,12,10,30,101420,100280,99170,78.53,0,5.19,5.57,5.65,5.69,5.72,5.74,5.76,5.76,5.78,197.91,198.46,198.72,198.97,199.20000000000002,199.41,199.62,199.8,200.18,29.17,28.810000000000002,28.64,28.44,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A +2012,8,12,11,30,101430,100290,99190,77.74,0,4.89,5.2,5.26,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3100000000000005,5.3100000000000005,210.86,211.21,211.47,211.74,211.99,212.23000000000002,212.48000000000002,212.71,213.21,29.22,28.86,28.69,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A +2012,8,12,12,30,101460,100320,99220,79.25,0,4.59,4.9,4.95,4.97,4.98,4.98,4.98,4.97,4.95,225.11,225.11,225.06,225.01,224.96,224.9,224.85,224.79,224.69,29.21,28.85,28.68,28.48,28.28,28.09,27.89,27.71,27.32,N/A,N/A +2012,8,12,13,30,101470,100330,99220,77.69,0,3.73,3.99,4.05,4.08,4.11,4.13,4.15,4.16,4.19,227.06,227.6,227.93,228.26,228.55,228.81,229.07,229.31,229.79,29.330000000000002,28.98,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A +2012,8,12,14,30,101470,100330,99220,80.62,0,2.59,2.73,2.74,2.75,2.75,2.75,2.75,2.75,2.75,258.63,257.5,256.85,256.13,255.46,254.79,254.12,253.47,252.13,29.240000000000002,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,8,12,15,30,101590,100440,99330,82.22,2.6,3.13,3.22,3.2,3.18,3.16,3.14,3.13,3.13,3.16,260.78000000000003,261.06,261.1,261.04,260.91,260.7,260.41,260.08,259.07,28.740000000000002,28.39,28.23,28.04,27.87,27.7,27.53,27.37,27.04,N/A,N/A +2012,8,12,16,30,101520,100370,99270,77.05,0,3.59,3.7800000000000002,3.81,3.8200000000000003,3.83,3.83,3.83,3.83,3.8200000000000003,250.42000000000002,251.02,251.14000000000001,251.28,251.41,251.54,251.68,251.8,252.08,29.39,29.04,28.86,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A +2012,8,12,17,30,101540,100400,99290,75.54,0,3.5300000000000002,3.7,3.73,3.74,3.75,3.74,3.74,3.73,3.71,214.89000000000001,214.58,214.58,214.55,214.52,214.48000000000002,214.44,214.4,214.32,29.490000000000002,29.13,28.96,28.76,28.57,28.37,28.18,27.990000000000002,27.61,N/A,N/A +2012,8,12,18,30,101580,100440,99330,80.44,0,4.79,5.04,5.07,5.07,5.07,5.0600000000000005,5.05,5.05,5.04,162.55,164.56,165.74,167,168.19,169.38,170.63,171.85,174.56,28.72,28.35,28.17,27.98,27.8,27.62,27.43,27.26,26.900000000000002,N/A,N/A +2012,8,12,19,30,101520,100380,99270,81.14,0,4.16,4.36,4.39,4.39,4.39,4.38,4.36,4.3500000000000005,4.3100000000000005,173.8,174.44,174.89000000000001,175.37,175.83,176.31,176.85,177.39000000000001,178.70000000000002,28.990000000000002,28.62,28.44,28.240000000000002,28.05,27.87,27.68,27.490000000000002,27.12,N/A,N/A +2012,8,12,20,30,101460,100310,99210,80.86,0,4.86,5.17,5.23,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.25,188.48,188.67000000000002,188.87,189.05,189.22,189.39000000000001,189.57,189.75,190.12,29.11,28.740000000000002,28.560000000000002,28.36,28.17,27.98,27.79,27.6,27.22,N/A,N/A +2012,8,12,21,30,101450,100310,99200,85.41,0,5.97,6.3100000000000005,6.3500000000000005,6.3500000000000005,6.33,6.3,6.25,6.21,6.09,191.29,191.44,191.46,191.47,191.49,191.5,191.51,191.51,191.52,28.41,28,27.830000000000002,27.62,27.44,27.25,27.07,26.89,26.53,N/A,N/A +2012,8,12,22,30,101420,100280,99180,80.79,0,5.2,5.53,5.59,5.61,5.62,5.62,5.61,5.6000000000000005,5.57,193.69,193.79,193.85,193.9,193.95000000000002,193.99,194.02,194.06,194.12,28.86,28.490000000000002,28.310000000000002,28.11,27.92,27.73,27.54,27.36,26.98,N/A,N/A +2012,8,12,23,30,101400,100260,99150,79.41,0,4.87,5.19,5.25,5.28,5.29,5.3100000000000005,5.3100000000000005,5.32,5.33,196.97,197.03,197.11,197.18,197.25,197.31,197.37,197.42000000000002,197.54,28.92,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.42,27.05,N/A,N/A +2012,8,13,0,30,101380,100240,99130,78.62,0,5.69,6.0600000000000005,6.13,6.15,6.16,6.16,6.16,6.15,6.13,178.17000000000002,178.21,178.3,178.37,178.45000000000002,178.51,178.58,178.65,178.78,29.02,28.650000000000002,28.48,28.28,28.080000000000002,27.900000000000002,27.71,27.52,27.150000000000002,N/A,N/A +2012,8,13,1,30,101350,100210,99110,75.83,0,7,7.58,7.7,7.76,7.8100000000000005,7.83,7.8500000000000005,7.86,7.87,172.81,172.94,172.97,173.01,173.03,173.06,173.09,173.11,173.17000000000002,29.310000000000002,28.95,28.78,28.580000000000002,28.39,28.2,28.01,27.82,27.44,N/A,N/A +2012,8,13,2,30,101350,100210,99100,75.35000000000001,0,6.79,7.33,7.43,7.49,7.5200000000000005,7.54,7.5600000000000005,7.57,7.57,175.75,175.94,176.02,176.11,176.18,176.26,176.34,176.42000000000002,176.6,29.36,29,28.830000000000002,28.63,28.44,28.26,28.060000000000002,27.88,27.5,N/A,N/A +2012,8,13,3,30,101370,100230,99130,76.74,0,7.23,7.83,7.96,8.03,8.07,8.1,8.120000000000001,8.14,8.16,182.5,182.43,182.42000000000002,182.42000000000002,182.42000000000002,182.43,182.43,182.44,182.46,29.26,28.900000000000002,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,8,13,4,30,101410,100270,99160,78.5,0,7.46,8.1,8.25,8.33,8.39,8.43,8.46,8.48,8.51,182.39000000000001,182.58,182.65,182.70000000000002,182.74,182.76,182.8,182.82,182.86,29.27,28.91,28.73,28.52,28.330000000000002,28.14,27.94,27.76,27.37,N/A,N/A +2012,8,13,5,30,101430,100290,99180,77.45,0,7.42,8.09,8.24,8.33,8.4,8.45,8.48,8.51,8.56,187.11,187.14000000000001,187.16,187.18,187.20000000000002,187.22,187.24,187.26,187.3,29.35,28.990000000000002,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A +2012,8,13,6,30,101520,100380,99270,80.69,0,7.72,8.41,8.57,8.66,8.73,8.77,8.8,8.82,8.84,192.02,192.11,192.11,192.09,192.06,192.02,191.98000000000002,191.94,191.85,29.310000000000002,28.93,28.75,28.55,28.36,28.16,27.97,27.78,27.39,N/A,N/A +2012,8,13,7,30,101550,100410,99300,78.92,0,6.1000000000000005,6.59,6.7,6.7700000000000005,6.82,6.86,6.890000000000001,6.92,6.96,203.34,202.83,202.73000000000002,202.65,202.59,202.56,202.53,202.52,202.52,29.490000000000002,29.14,28.96,28.77,28.580000000000002,28.38,28.19,28.01,27.62,N/A,N/A +2012,8,13,8,30,101550,100410,99310,79.28,0,6.3500000000000005,6.92,7.08,7.17,7.25,7.3100000000000005,7.3500000000000005,7.4,7.47,213.14000000000001,212.25,211.73000000000002,211.27,210.88,210.54,210.21,209.92000000000002,209.37,29.52,29.17,29,28.8,28.61,28.42,28.23,28.05,27.67,N/A,N/A +2012,8,13,9,30,101550,100410,99300,78.27,0,6.93,7.53,7.67,7.75,7.8,7.84,7.87,7.890000000000001,7.930000000000001,202.01,201.92000000000002,201.83,201.76,201.69,201.63,201.58,201.53,201.44,29.560000000000002,29.2,29.02,28.82,28.63,28.44,28.240000000000002,28.05,27.67,N/A,N/A +2012,8,13,10,30,101580,100440,99340,78.11,0,6.1000000000000005,6.5600000000000005,6.65,6.7,6.74,6.76,6.78,6.79,6.8,216.88,217.01,217.09,217.19,217.29,217.39000000000001,217.49,217.6,217.81,29.51,29.16,28.98,28.78,28.59,28.400000000000002,28.21,28.02,27.64,N/A,N/A +2012,8,13,11,30,101570,100430,99330,78.66,0,5.94,6.48,6.61,6.69,6.75,6.8,6.83,6.86,6.9,210.43,210.95000000000002,211.17000000000002,211.38,211.55,211.72,211.89000000000001,212.04,212.33,29.580000000000002,29.23,29.05,28.85,28.66,28.47,28.27,28.080000000000002,27.7,N/A,N/A +2012,8,13,12,30,101600,100460,99350,76.64,0,6.63,7.2,7.32,7.390000000000001,7.43,7.46,7.48,7.49,7.5,231.22,230.69,230.37,230.06,229.8,229.54,229.31,229.08,228.63,29.71,29.36,29.18,28.98,28.79,28.59,28.400000000000002,28.21,27.830000000000002,N/A,N/A +2012,8,13,13,30,101620,100470,99370,73.99,0,6.66,7.19,7.29,7.34,7.37,7.390000000000001,7.390000000000001,7.4,7.390000000000001,221.18,221.18,221.13,221.07,221.02,220.97,220.91,220.86,220.76,29.73,29.38,29.21,29.02,28.830000000000002,28.63,28.44,28.25,27.87,N/A,N/A +2012,8,13,14,30,101640,100490,99390,72.47,0,6.640000000000001,7.19,7.3,7.36,7.4,7.43,7.45,7.46,7.49,216.38,216.74,216.98000000000002,217.22,217.44,217.65,217.85,218.05,218.45000000000002,29.810000000000002,29.48,29.310000000000002,29.11,28.92,28.73,28.53,28.34,27.96,N/A,N/A +2012,8,13,15,30,101660,100520,99410,68.37,0,7.42,8.040000000000001,8.16,8.22,8.26,8.290000000000001,8.31,8.33,8.34,225.48000000000002,225.64000000000001,225.75,225.87,225.98000000000002,226.09,226.20000000000002,226.3,226.49,29.96,29.63,29.46,29.27,29.07,28.88,28.69,28.5,28.11,N/A,N/A +2012,8,13,16,30,101700,100550,99440,74.15,0,6.38,6.9,7.03,7.12,7.19,7.24,7.28,7.32,7.390000000000001,241.51,240.22,239.37,238.54,237.84,237.23000000000002,236.66,236.13,235.19,29.67,29.34,29.18,28.98,28.8,28.62,28.43,28.25,27.88,N/A,N/A +2012,8,13,17,30,101670,100520,99420,70.19,0,6.24,6.79,6.92,7,7.07,7.11,7.15,7.18,7.22,230.46,230.18,230.02,229.88,229.76,229.64000000000001,229.53,229.43,229.24,29.87,29.53,29.36,29.16,28.98,28.78,28.59,28.400000000000002,28.02,N/A,N/A +2012,8,13,18,30,101660,100520,99410,70.36,0,5.99,6.5,6.61,6.68,6.73,6.7700000000000005,6.79,6.82,6.8500000000000005,217.99,218.12,218.20000000000002,218.24,218.28,218.32,218.34,218.35,218.39000000000001,29.92,29.59,29.42,29.21,29.02,28.830000000000002,28.64,28.45,28.07,N/A,N/A +2012,8,13,19,30,101610,100470,99360,69.56,0,6.71,7.26,7.36,7.41,7.43,7.45,7.46,7.46,7.45,208.58,208.49,208.49,208.47,208.43,208.4,208.35,208.3,208.18,29.95,29.62,29.45,29.26,29.07,28.88,28.69,28.51,28.14,N/A,N/A +2012,8,13,20,30,101560,100420,99310,69.93,0,7,7.59,7.7,7.75,7.7700000000000005,7.79,7.79,7.78,7.76,205.88,205.65,205.56,205.46,205.35,205.25,205.14000000000001,205.04,204.8,29.95,29.62,29.45,29.26,29.07,28.88,28.69,28.51,28.14,N/A,N/A +2012,8,13,21,30,101530,100390,99280,68.93,0,7.22,7.84,7.96,8.01,8.040000000000001,8.05,8.05,8.05,8.02,197.26,197.08,197.03,196.97,196.9,196.84,196.78,196.71,196.57,30.01,29.7,29.53,29.330000000000002,29.150000000000002,28.96,28.77,28.580000000000002,28.21,N/A,N/A +2012,8,13,22,30,101530,100390,99290,73.04,0,6.78,7.36,7.5,7.57,7.62,7.640000000000001,7.66,7.67,7.68,192.12,192.17000000000002,192.18,192.17000000000002,192.15,192.14000000000001,192.12,192.1,192.06,29.85,29.52,29.36,29.16,28.97,28.78,28.59,28.400000000000002,28.02,N/A,N/A +2012,8,13,23,30,101470,100330,99220,74.54,0,7.83,8.51,8.65,8.73,8.78,8.81,8.82,8.84,8.84,194,193.96,193.94,193.91,193.89000000000001,193.86,193.83,193.8,193.74,29.79,29.45,29.27,29.080000000000002,28.89,28.69,28.5,28.310000000000002,27.93,N/A,N/A +2012,8,14,0,30,101400,100260,99150,70.54,0,8.53,9.31,9.47,9.55,9.6,9.63,9.65,9.66,9.66,196.48000000000002,196.46,196.44,196.41,196.4,196.38,196.35,196.33,196.3,29.89,29.560000000000002,29.39,29.2,29.01,28.82,28.63,28.45,28.080000000000002,N/A,N/A +2012,8,14,1,30,101400,100260,99150,72.82000000000001,0,8.55,9.31,9.47,9.540000000000001,9.58,9.6,9.6,9.6,9.57,197.09,196.98000000000002,196.89000000000001,196.82,196.74,196.67000000000002,196.6,196.53,196.36,29.78,29.44,29.27,29.080000000000002,28.89,28.7,28.51,28.330000000000002,27.95,N/A,N/A +2012,8,14,2,30,101450,100310,99210,69.77,0,7.98,8.71,8.870000000000001,8.96,9.03,9.07,9.1,9.120000000000001,9.15,193.15,193.58,193.78,193.96,194.12,194.26,194.39000000000001,194.52,194.76,29.85,29.52,29.35,29.150000000000002,28.96,28.77,28.580000000000002,28.39,28.01,N/A,N/A +2012,8,14,3,30,101460,100320,99220,70.71000000000001,0,8,8.69,8.83,8.9,8.94,8.950000000000001,8.96,8.96,8.94,199.92000000000002,199.91,199.86,199.78,199.71,199.63,199.56,199.48000000000002,199.33,29.88,29.55,29.38,29.19,29,28.810000000000002,28.62,28.43,28.05,N/A,N/A +2012,8,14,4,30,101430,100290,99190,67.73,0,8.23,8.99,9.15,9.22,9.27,9.290000000000001,9.3,9.31,9.290000000000001,202.41,202.53,202.58,202.62,202.66,202.69,202.72,202.75,202.79,30,29.69,29.52,29.32,29.14,28.95,28.75,28.57,28.19,N/A,N/A +2012,8,14,5,30,101430,100290,99190,69.66,0,8.25,9.03,9.21,9.3,9.370000000000001,9.41,9.450000000000001,9.47,9.51,206.82,206.92000000000002,206.98000000000002,207.06,207.14000000000001,207.21,207.29,207.37,207.53,29.89,29.560000000000002,29.400000000000002,29.2,29.01,28.82,28.63,28.44,28.07,N/A,N/A +2012,8,14,6,30,101460,100320,99220,67.23,0,8.28,9.08,9.26,9.35,9.41,9.44,9.46,9.47,9.47,218.13,218.1,218.04,217.96,217.88,217.81,217.72,217.65,217.48000000000002,30.09,29.810000000000002,29.650000000000002,29.46,29.27,29.09,28.900000000000002,28.71,28.330000000000002,N/A,N/A +2012,8,14,7,30,101480,100340,99230,72.93,0,6.98,7.62,7.75,7.8100000000000005,7.86,7.890000000000001,7.92,7.930000000000001,7.97,220.19,219.97,219.89000000000001,219.81,219.74,219.67000000000002,219.6,219.52,219.4,29.830000000000002,29.51,29.34,29.150000000000002,28.96,28.77,28.580000000000002,28.400000000000002,28.04,N/A,N/A +2012,8,14,8,30,101470,100330,99220,75.45,0,6.82,7.45,7.6000000000000005,7.7,7.7700000000000005,7.83,7.890000000000001,7.930000000000001,8.02,219.25,219.33,219.35,219.4,219.43,219.47,219.51,219.55,219.63,29.63,29.310000000000002,29.14,28.95,28.76,28.57,28.38,28.2,27.830000000000002,N/A,N/A +2012,8,14,9,30,101470,100330,99220,79.72,0,6.95,7.47,7.6000000000000005,7.66,7.71,7.75,7.7700000000000005,7.8,7.83,225.43,225.67000000000002,225.73000000000002,225.77,225.81,225.85,225.88,225.91,225.98000000000002,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.89,27.51,N/A,N/A +2012,8,14,10,30,101510,100360,99260,80.16,0,7.79,8.52,8.68,8.77,8.83,8.86,8.89,8.9,8.91,227.89000000000001,227.9,227.87,227.83,227.78,227.73000000000002,227.67000000000002,227.61,227.48000000000002,29.46,29.11,28.93,28.73,28.54,28.34,28.150000000000002,27.96,27.580000000000002,N/A,N/A +2012,8,14,11,30,101520,100370,99270,80.31,0,6.12,6.65,6.78,6.87,6.94,7,7.05,7.09,7.16,233.82,233.57,233.41,233.26,233.14000000000001,233.03,232.93,232.84,232.66,29.39,29.05,28.88,28.68,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A +2012,8,14,12,30,101530,100390,99290,78.93,0,6.82,7.3500000000000005,7.47,7.54,7.58,7.62,7.640000000000001,7.67,7.71,241.04,240.84,240.73000000000002,240.62,240.51,240.4,240.29,240.19,239.98000000000002,29.37,29.03,28.86,28.66,28.48,28.29,28.1,27.92,27.54,N/A,N/A +2012,8,14,13,30,101570,100430,99320,79.89,0,6.36,6.9,7.0200000000000005,7.08,7.12,7.15,7.17,7.18,7.19,232.93,232.79,232.8,232.81,232.83,232.85,232.87,232.9,232.94,29.35,29,28.830000000000002,28.62,28.43,28.240000000000002,28.04,27.85,27.47,N/A,N/A +2012,8,14,14,30,101580,100440,99330,74.21000000000001,0,6.63,7.21,7.34,7.41,7.46,7.49,7.51,7.53,7.5600000000000005,239.70000000000002,239.77,239.78,239.78,239.77,239.76,239.73000000000002,239.71,239.65,29.62,29.29,29.12,28.92,28.73,28.54,28.35,28.16,27.78,N/A,N/A +2012,8,14,15,30,101560,100420,99320,77.01,0,6.74,7.29,7.4,7.45,7.48,7.5,7.5,7.5,7.49,241.53,241.4,241.39000000000001,241.4,241.41,241.42000000000002,241.44,241.46,241.5,29.52,29.17,29,28.8,28.61,28.41,28.22,28.03,27.650000000000002,N/A,N/A +2012,8,14,16,30,101580,100430,99330,78.59,0,5.22,5.6000000000000005,5.69,5.73,5.76,5.78,5.79,5.8,5.82,234.94,234.92000000000002,234.94,234.96,234.97,234.98000000000002,234.99,235.01,235.03,29.47,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A +2012,8,14,17,30,101550,100400,99300,79.13,0,5.8,6.25,6.3500000000000005,6.41,6.45,6.47,6.49,6.51,6.54,217.07,217.23000000000002,217.34,217.44,217.53,217.61,217.70000000000002,217.77,217.94,29.46,29.11,28.94,28.73,28.55,28.36,28.16,27.98,27.6,N/A,N/A +2012,8,14,18,30,101510,100370,99260,78.17,0,6,6.49,6.6000000000000005,6.67,6.73,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.92,205.32,205.82,206.07,206.32,206.57,206.81,207.08,207.33,207.93,29.63,29.29,29.12,28.93,28.740000000000002,28.560000000000002,28.37,28.19,27.830000000000002,N/A,N/A +2012,8,14,19,30,101500,100360,99260,78.86,0,7.61,8.28,8.44,8.52,8.58,8.63,8.66,8.69,8.73,203.88,204.08,204.24,204.38,204.51,204.64000000000001,204.76,204.88,205.13,29.62,29.27,29.1,28.900000000000002,28.72,28.53,28.330000000000002,28.150000000000002,27.77,N/A,N/A +2012,8,14,20,30,101450,100310,99210,79.35000000000001,0,8.35,9.1,9.26,9.34,9.4,9.43,9.450000000000001,9.46,9.46,211.97,212.12,212.17000000000002,212.22,212.27,212.32,212.37,212.42000000000002,212.53,29.5,29.150000000000002,28.98,28.78,28.59,28.400000000000002,28.21,28.02,27.64,N/A,N/A +2012,8,14,21,30,101390,100250,99150,81.29,0,8.23,8.98,9.14,9.23,9.28,9.32,9.34,9.35,9.35,210.70000000000002,210.59,210.58,210.57,210.55,210.54,210.53,210.51,210.48000000000002,29.39,29.03,28.86,28.66,28.47,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A +2012,8,14,22,30,101390,100250,99150,79.72,0,8.290000000000001,9.03,9.200000000000001,9.290000000000001,9.35,9.39,9.41,9.43,9.44,206.25,206.32,206.35,206.35,206.36,206.36,206.36,206.35,206.34,29.37,29.01,28.84,28.63,28.44,28.25,28.060000000000002,27.87,27.490000000000002,N/A,N/A +2012,8,14,23,30,101360,100220,99110,75.46000000000001,0,8.52,9.27,9.43,9.51,9.55,9.58,9.59,9.59,9.58,206.14000000000001,206.21,206.24,206.25,206.26,206.27,206.27,206.27,206.26,29.47,29.13,28.95,28.75,28.560000000000002,28.37,28.18,28,27.62,N/A,N/A +2012,8,15,0,30,101330,100190,99080,66.24,0,8.56,9.32,9.49,9.58,9.63,9.67,9.69,9.700000000000001,9.72,206.19,206.24,206.35,206.48000000000002,206.6,206.71,206.83,206.95000000000002,207.18,29.82,29.52,29.35,29.16,28.98,28.79,28.59,28.41,28.04,N/A,N/A +2012,8,15,1,30,101290,100140,99040,66.75,0,8.1,8.84,8.99,9.08,9.14,9.18,9.21,9.23,9.27,203.97,204.02,204.12,204.24,204.34,204.45000000000002,204.57,204.67000000000002,204.92000000000002,29.71,29.400000000000002,29.240000000000002,29.04,28.86,28.67,28.48,28.3,27.93,N/A,N/A +2012,8,15,2,30,101300,100160,99050,73.60000000000001,0,8.05,8.77,8.94,9.02,9.08,9.120000000000001,9.14,9.16,9.18,205.41,205.49,205.53,205.56,205.59,205.63,205.66,205.70000000000002,205.78,29.34,28.990000000000002,28.810000000000002,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A +2012,8,15,3,30,101310,100170,99070,76.76,0,7.6000000000000005,8.26,8.4,8.48,8.53,8.56,8.58,8.59,8.6,203.92000000000002,204.06,204.15,204.26,204.36,204.45000000000002,204.55,204.64000000000001,204.84,29.240000000000002,28.88,28.71,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.36,N/A,N/A +2012,8,15,4,30,101320,100180,99070,74.68,0,8.040000000000001,8.74,8.91,8.98,9.040000000000001,9.07,9.09,9.11,9.120000000000001,198.92000000000002,199,199.01,199.03,199.05,199.06,199.07,199.09,199.12,29.34,28.98,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A +2012,8,15,5,30,101300,100160,99050,80.48,0,7.91,8.63,8.8,8.9,8.97,9.01,9.05,9.08,9.11,195.99,195.95000000000002,195.96,195.98000000000002,196,196.02,196.06,196.08,196.16,29.18,28.810000000000002,28.63,28.43,28.23,28.04,27.85,27.66,27.27,N/A,N/A +2012,8,15,6,30,101260,100130,99020,81.82000000000001,0,8.18,8.94,9.120000000000001,9.22,9.290000000000001,9.34,9.370000000000001,9.39,9.43,199.27,199.39000000000001,199.45000000000002,199.5,199.55,199.61,199.66,199.71,199.83,29.12,28.77,28.59,28.39,28.2,28.01,27.82,27.63,27.25,N/A,N/A +2012,8,15,7,30,101290,100160,99050,82.81,0,8.51,9.32,9.52,9.63,9.71,9.76,9.81,9.84,9.88,200,199.98000000000002,199.97,199.97,199.97,199.98000000000002,199.99,200,200.04,29.18,28.830000000000002,28.66,28.45,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,15,8,30,101300,100170,99060,78.72,0,8.39,9.24,9.44,9.55,9.63,9.69,9.73,9.76,9.790000000000001,206.22,206.24,206.24,206.23000000000002,206.22,206.20000000000002,206.19,206.17000000000002,206.13,29.44,29.11,28.94,28.740000000000002,28.55,28.36,28.17,27.98,27.6,N/A,N/A +2012,8,15,9,30,101330,100190,99090,80.49,0,8.46,9.26,9.450000000000001,9.55,9.620000000000001,9.66,9.700000000000001,9.72,9.74,207.12,207.32,207.42000000000002,207.51,207.59,207.66,207.72,207.8,207.93,29.25,28.91,28.73,28.53,28.34,28.150000000000002,27.96,27.77,27.39,N/A,N/A +2012,8,15,10,30,101350,100210,99100,82.29,0,7.6000000000000005,8.3,8.47,8.58,8.66,8.72,8.76,8.790000000000001,8.84,210.88,210.69,210.65,210.62,210.6,210.6,210.6,210.6,210.63,29.17,28.82,28.64,28.44,28.25,28.05,27.86,27.67,27.28,N/A,N/A +2012,8,15,11,30,101380,100240,99130,81.47,0,7.21,7.86,8.02,8.11,8.19,8.24,8.28,8.32,8.370000000000001,214.95000000000002,214.76,214.58,214.41,214.26,214.11,213.96,213.82,213.54,29.17,28.82,28.650000000000002,28.45,28.26,28.07,27.87,27.69,27.310000000000002,N/A,N/A +2012,8,15,12,30,101380,100240,99130,79.51,0,7.95,8.69,8.870000000000001,8.96,9.03,9.07,9.1,9.13,9.15,221.78,221.59,221.46,221.32,221.19,221.06,220.93,220.8,220.54,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A +2012,8,15,13,30,101430,100290,99190,75.76,0,7.8100000000000005,8.45,8.59,8.65,8.69,8.72,8.73,8.74,8.75,218.61,218.55,218.52,218.46,218.41,218.35,218.29,218.23000000000002,218.11,29.38,29.060000000000002,28.900000000000002,28.7,28.51,28.32,28.13,27.95,27.57,N/A,N/A +2012,8,15,14,30,101450,100310,99200,76.5,0,6.21,6.79,6.93,7.0200000000000005,7.08,7.13,7.17,7.2,7.25,217.06,217.33,217.42000000000002,217.51,217.6,217.67000000000002,217.75,217.82,217.98000000000002,29.400000000000002,29.07,28.900000000000002,28.7,28.51,28.32,28.12,27.93,27.55,N/A,N/A +2012,8,15,15,30,101460,100320,99220,77.26,0,6.47,6.99,7.09,7.13,7.15,7.16,7.16,7.15,7.13,209.31,209.6,209.75,209.93,210.09,210.26,210.43,210.59,210.92000000000002,29.38,29.04,28.87,28.67,28.48,28.3,28.1,27.91,27.54,N/A,N/A +2012,8,15,16,30,101470,100330,99220,76.91,0,6.94,7.51,7.640000000000001,7.7,7.74,7.76,7.78,7.79,7.79,205.99,205.9,205.93,205.96,205.99,206.02,206.04,206.07,206.13,29.3,28.96,28.79,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.44,N/A,N/A +2012,8,15,17,30,101470,100320,99220,77.85000000000001,0,5.82,6.3,6.41,6.48,6.53,6.57,6.6000000000000005,6.63,6.68,211.33,211.23000000000002,211.19,211.13,211.06,210.99,210.93,210.86,210.72,29.27,28.94,28.77,28.560000000000002,28.38,28.19,27.990000000000002,27.8,27.42,N/A,N/A +2012,8,15,18,30,101470,100330,99220,73.93,0,5.66,6.13,6.25,6.34,6.4,6.45,6.49,6.53,6.6000000000000005,205.43,205.65,205.73000000000002,205.79,205.85,205.9,205.94,205.98000000000002,206.05,29.490000000000002,29.16,28.990000000000002,28.79,28.6,28.41,28.22,28.04,27.66,N/A,N/A +2012,8,15,19,30,101440,100300,99190,74.76,0,5.11,5.48,5.57,5.61,5.64,5.66,5.68,5.69,5.72,207.01,206.95000000000002,206.94,206.94,206.94,206.93,206.93,206.93,206.94,29.42,29.09,28.92,28.72,28.53,28.34,28.150000000000002,27.96,27.580000000000002,N/A,N/A +2012,8,15,20,30,101400,100260,99160,79.65,0,5.58,5.99,6.09,6.13,6.17,6.2,6.21,6.23,6.25,190.88,191.13,191.23000000000002,191.32,191.39000000000001,191.47,191.54,191.61,191.73000000000002,29.32,28.98,28.8,28.6,28.41,28.22,28.02,27.84,27.46,N/A,N/A +2012,8,15,21,30,101340,100200,99100,81.74,0,6.28,6.71,6.79,6.82,6.8500000000000005,6.8500000000000005,6.86,6.86,6.8500000000000005,204.36,203.63,203.04,202.37,201.78,201.20000000000002,200.62,200.07,198.96,29.35,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.53,N/A,N/A +2012,8,15,22,30,101340,100200,99090,81.02,0,5.93,6.44,6.5600000000000005,6.63,6.68,6.71,6.74,6.76,6.8,185.89000000000001,186.08,186.22,186.34,186.46,186.58,186.68,186.78,186.98,29.44,29.11,28.94,28.740000000000002,28.55,28.36,28.17,27.98,27.6,N/A,N/A +2012,8,15,23,30,101300,100160,99050,78.21000000000001,0,5.84,6.33,6.43,6.48,6.51,6.53,6.55,6.5600000000000005,6.57,190.27,190.44,190.49,190.56,190.62,190.68,190.74,190.79,190.91,29.45,29.13,28.96,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A +2012,8,16,0,30,101260,100120,99020,80.56,0,6.13,6.6000000000000005,6.7,6.75,6.78,6.8,6.8100000000000005,6.8100000000000005,6.8100000000000005,179.79,179.79,179.8,179.77,179.75,179.72,179.68,179.65,179.57,29.25,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,8,16,1,30,101270,100130,99030,83.19,0,6.37,6.91,7.03,7.11,7.16,7.2,7.23,7.25,7.29,175.89000000000001,175.86,175.88,175.89000000000001,175.91,175.91,175.92000000000002,175.93,175.94,29.19,28.84,28.67,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,8,16,2,30,101290,100150,99040,83.04,0,7.46,8.09,8.23,8.290000000000001,8.34,8.36,8.370000000000001,8.38,8.38,170.77,170.78,170.72,170.64000000000001,170.56,170.46,170.37,170.28,170.07,29.25,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.77,27.39,N/A,N/A +2012,8,16,3,30,101340,100200,99100,82.36,0,7.79,8.51,8.68,8.77,8.83,8.870000000000001,8.9,8.92,8.950000000000001,172.11,172.09,172.05,172,171.96,171.91,171.87,171.83,171.75,29.25,28.91,28.73,28.54,28.35,28.150000000000002,27.96,27.78,27.39,N/A,N/A +2012,8,16,4,30,101350,100210,99110,82.88,0,8.44,9.25,9.450000000000001,9.56,9.63,9.68,9.72,9.75,9.790000000000001,175.07,175.06,175.06,175.07,175.07,175.08,175.1,175.11,175.14000000000001,29.27,28.92,28.75,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,8,16,5,30,101390,100250,99140,82.85000000000001,0,8.17,8.96,9.16,9.27,9.35,9.41,9.450000000000001,9.49,9.540000000000001,178.94,178.76,178.68,178.6,178.52,178.45000000000002,178.37,178.3,178.16,29.22,28.87,28.7,28.5,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A +2012,8,16,6,30,101410,100270,99170,82.89,0,8.38,9.31,9.53,9.68,9.78,9.86,9.92,9.97,10.040000000000001,178.08,178.3,178.32,178.3,178.29,178.26,178.23,178.20000000000002,178.14000000000001,29.400000000000002,29.07,28.900000000000002,28.71,28.52,28.330000000000002,28.14,27.95,27.580000000000002,N/A,N/A +2012,8,16,7,30,101470,100330,99220,81.9,0,8.53,9.370000000000001,9.6,9.73,9.82,9.89,9.950000000000001,9.99,10.06,175.96,176.41,176.71,177.02,177.29,177.56,177.81,178.06,178.55,29.27,28.95,28.79,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A +2012,8,16,8,30,101470,100320,99220,80.82000000000001,0,8.19,8.93,9.08,9.15,9.200000000000001,9.22,9.23,9.23,9.23,172.92000000000002,173.03,173.18,173.36,173.55,173.73,173.95000000000002,174.16,174.67000000000002,29.14,28.8,28.64,28.44,28.26,28.080000000000002,27.89,27.71,27.34,N/A,N/A +2012,8,16,9,30,101480,100340,99230,73.12,0,7.68,8.42,8.58,8.67,8.74,8.78,8.82,8.84,8.88,182.07,182.33,182.41,182.47,182.53,182.57,182.6,182.64000000000001,182.69,29.44,29.13,28.96,28.77,28.580000000000002,28.39,28.2,28.01,27.64,N/A,N/A +2012,8,16,10,30,101510,100370,99260,69.05,0,7.21,7.92,8.08,8.17,8.23,8.28,8.31,8.33,8.370000000000001,188.1,188.23,188.23,188.25,188.26,188.27,188.29,188.31,188.36,29.64,29.35,29.19,28.990000000000002,28.8,28.62,28.42,28.240000000000002,27.86,N/A,N/A +2012,8,16,11,30,101500,100360,99250,70.58,0,6.76,7.33,7.43,7.48,7.5,7.51,7.51,7.51,7.49,183.97,184.42000000000002,184.6,184.77,184.92000000000002,185.05,185.19,185.32,185.56,29.43,29.12,28.95,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A +2012,8,16,12,30,101530,100390,99280,71.76,0,6.68,7.24,7.3500000000000005,7.4,7.43,7.45,7.46,7.46,7.46,187.38,187.67000000000002,187.8,187.91,188,188.08,188.15,188.22,188.33,29.39,29.080000000000002,28.91,28.71,28.52,28.330000000000002,28.14,27.95,27.57,N/A,N/A +2012,8,16,13,30,101590,100440,99340,67.76,0,5.32,5.76,5.8500000000000005,5.9,5.93,5.96,5.98,6,6.03,183.25,183.77,184.03,184.25,184.43,184.59,184.73,184.85,185.06,29.46,29.16,28.990000000000002,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A +2012,8,16,14,30,101600,100450,99350,70.41,0,4.6000000000000005,4.94,5.01,5.04,5.0600000000000005,5.08,5.09,5.1000000000000005,5.11,185.13,185.3,185.43,185.55,185.68,185.8,185.92000000000002,186.04,186.3,29.39,29.07,28.91,28.71,28.52,28.330000000000002,28.13,27.95,27.57,N/A,N/A +2012,8,16,15,30,101610,100460,99350,72.44,0,3.68,3.93,3.98,4,4.0200000000000005,4.03,4.04,4.04,4.05,181.45000000000002,181.74,181.92000000000002,182.09,182.25,182.41,182.56,182.70000000000002,182.99,29.28,28.95,28.79,28.59,28.400000000000002,28.21,28.01,27.830000000000002,27.44,N/A,N/A +2012,8,16,16,30,101620,100480,99370,72.8,0,3.0700000000000003,3.25,3.2800000000000002,3.31,3.3200000000000003,3.33,3.34,3.34,3.35,187.89000000000001,187.74,187.67000000000002,187.61,187.55,187.48,187.42000000000002,187.36,187.23,29.28,28.95,28.78,28.580000000000002,28.39,28.2,28.01,27.82,27.43,N/A,N/A +2012,8,16,17,30,101640,100500,99390,71.44,0,3.25,3.42,3.46,3.48,3.49,3.5,3.5100000000000002,3.5100000000000002,3.52,183.04,183.20000000000002,183.26,183.31,183.35,183.39000000000001,183.42000000000002,183.45000000000002,183.44,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A +2012,8,16,18,30,101620,100480,99370,73.99,0,2.41,2.52,2.52,2.52,2.5100000000000002,2.5100000000000002,2.49,2.48,2.46,169.05,169.58,169.93,170.3,170.62,170.93,171.25,171.56,172.19,29.34,28.990000000000002,28.82,28.61,28.42,28.23,28.04,27.85,27.46,N/A,N/A +2012,8,16,19,30,101580,100440,99330,72.65,0,3.6,3.7800000000000002,3.81,3.81,3.81,3.81,3.81,3.8000000000000003,3.79,168.37,168.41,168.48,168.55,168.63,168.73,168.84,168.96,169.28,29.47,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A +2012,8,16,20,30,101520,100380,99270,72.4,0,3.35,3.5500000000000003,3.6,3.62,3.64,3.66,3.67,3.69,3.71,166.15,166.02,165.88,165.74,165.63,165.53,165.43,165.34,165.17000000000002,29.57,29.23,29.060000000000002,28.86,28.68,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A +2012,8,16,21,30,101490,100350,99250,74.2,0,3.97,4.21,4.24,4.26,4.26,4.2700000000000005,4.26,4.26,4.25,164.92000000000002,165.18,165.31,165.44,165.55,165.67000000000002,165.79,165.92000000000002,166.17000000000002,29.580000000000002,29.25,29.080000000000002,28.88,28.69,28.5,28.310000000000002,28.12,27.75,N/A,N/A +2012,8,16,22,30,101480,100340,99230,72.01,0,5.15,5.55,5.62,5.65,5.67,5.68,5.69,5.69,5.7,162.61,162.73,162.78,162.82,162.87,162.92000000000002,162.97,163.01,163.14000000000001,29.73,29.43,29.27,29.07,28.89,28.7,28.51,28.330000000000002,27.95,N/A,N/A +2012,8,16,23,30,101490,100350,99240,75.5,0,4.8,5.18,5.25,5.28,5.3,5.32,5.33,5.33,5.34,162.37,162.5,162.6,162.70000000000002,162.78,162.88,162.97,163.06,163.24,29.6,29.3,29.13,28.94,28.75,28.560000000000002,28.37,28.19,27.810000000000002,N/A,N/A +2012,8,17,0,30,101450,100310,99200,77.94,0,4.83,5.2,5.26,5.29,5.32,5.33,5.34,5.34,5.3500000000000005,150.32,150.43,150.46,150.5,150.53,150.58,150.64000000000001,150.69,150.81,29.48,29.17,29,28.8,28.62,28.43,28.240000000000002,28.05,27.67,N/A,N/A +2012,8,17,1,30,101450,100310,99200,80.85000000000001,0,5.44,5.88,5.96,6,6.03,6.05,6.07,6.08,6.09,146.83,146.8,146.79,146.8,146.8,146.8,146.8,146.81,146.83,29.41,29.09,28.93,28.73,28.54,28.35,28.16,27.97,27.6,N/A,N/A +2012,8,17,2,30,101420,100290,99180,83.53,0,5.08,5.46,5.55,5.58,5.61,5.63,5.63,5.64,5.64,163.53,163.16,162.86,162.54,162.25,161.97,161.67000000000002,161.39000000000001,160.82,29.35,29.03,28.86,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A +2012,8,17,3,30,101460,100320,99210,82.77,0,5.69,6.140000000000001,6.23,6.2700000000000005,6.3,6.32,6.32,6.33,6.32,165.84,165.92000000000002,165.94,165.94,165.95000000000002,165.94,165.94,165.93,165.91,29.28,28.95,28.78,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A +2012,8,17,4,30,101470,100330,99220,81.83,0,5.86,6.33,6.43,6.48,6.51,6.53,6.55,6.5600000000000005,6.5600000000000005,174.76,174.75,174.70000000000002,174.67000000000002,174.64000000000001,174.61,174.59,174.58,174.55,29.32,28.990000000000002,28.830000000000002,28.62,28.44,28.25,28.060000000000002,27.87,27.5,N/A,N/A +2012,8,17,5,30,101470,100320,99220,81.93,0,5.7,6.13,6.21,6.24,6.26,6.26,6.25,6.24,6.2,170.9,171.13,171.3,171.48,171.64000000000001,171.8,171.97,172.13,172.46,29.26,28.93,28.76,28.560000000000002,28.37,28.18,27.98,27.79,27.41,N/A,N/A +2012,8,17,6,30,101500,100360,99250,85.27,0,6.59,7.140000000000001,7.2700000000000005,7.33,7.38,7.4,7.42,7.43,7.43,180.25,180.25,180.27,180.27,180.29,180.29,180.29,180.29,180.29,29.12,28.77,28.6,28.400000000000002,28.21,28.01,27.82,27.63,27.25,N/A,N/A +2012,8,17,7,30,101530,100390,99280,82.75,0,6.2,6.7,6.8100000000000005,6.87,6.92,6.94,6.96,6.98,6.99,186.15,186.19,186.22,186.25,186.28,186.3,186.32,186.34,186.39000000000001,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,8,17,8,30,101510,100370,99260,84.11,0,5.89,6.32,6.4,6.43,6.43,6.43,6.41,6.4,6.3500000000000005,187.66,187.98,188.19,188.41,188.61,188.81,189.01,189.21,189.67000000000002,29.2,28.87,28.7,28.5,28.310000000000002,28.12,27.93,27.75,27.37,N/A,N/A +2012,8,17,9,30,101540,100400,99300,84.27,0,5.51,5.89,5.97,6,6.0200000000000005,6.03,6.03,6.03,6.0200000000000005,202.73000000000002,202.70000000000002,202.70000000000002,202.72,202.75,202.78,202.82,202.86,202.96,29.21,28.87,28.7,28.51,28.32,28.13,27.93,27.75,27.37,N/A,N/A +2012,8,17,10,30,101550,100410,99300,79.8,0,5.76,6.23,6.33,6.37,6.4,6.42,6.43,6.43,6.43,202.61,202.25,202.06,201.89000000000001,201.74,201.58,201.43,201.3,201.02,29.44,29.12,28.95,28.76,28.57,28.38,28.19,28.01,27.63,N/A,N/A +2012,8,17,11,30,101560,100410,99310,81.15,0,6.51,7.0600000000000005,7.17,7.22,7.25,7.26,7.2700000000000005,7.26,7.25,200.02,200.23000000000002,200.35,200.48000000000002,200.61,200.73000000000002,200.85,200.97,201.21,29.38,29.05,28.89,28.69,28.5,28.310000000000002,28.11,27.93,27.55,N/A,N/A +2012,8,17,12,30,101570,100430,99320,76.52,0,6,6.45,6.53,6.5600000000000005,6.57,6.58,6.57,6.5600000000000005,6.53,199.62,200.12,200.48000000000002,200.86,201.19,201.52,201.86,202.18,202.84,29.5,29.18,29.02,28.82,28.63,28.44,28.25,28.060000000000002,27.68,N/A,N/A +2012,8,17,13,30,101570,100430,99320,78.48,0,5.8500000000000005,6.29,6.37,6.4,6.42,6.43,6.43,6.42,6.4,210.95000000000002,211.04,211.06,211.08,211.1,211.13,211.15,211.17000000000002,211.21,29.32,28.990000000000002,28.830000000000002,28.62,28.44,28.25,28.05,27.86,27.48,N/A,N/A +2012,8,17,14,30,101550,100400,99300,77.9,0,5.9,6.38,6.48,6.54,6.58,6.6000000000000005,6.62,6.63,6.640000000000001,212.97,212.95000000000002,212.92000000000002,212.89000000000001,212.86,212.82,212.78,212.74,212.67000000000002,29.3,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A +2012,8,17,15,30,101600,100460,99350,78.78,0,5.89,6.33,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.57,6.58,224.03,224.32,224.44,224.56,224.66,224.75,224.84,224.92000000000002,225.08,29.310000000000002,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A +2012,8,17,16,30,101560,100420,99310,77.54,0,5.33,5.71,5.78,5.8,5.82,5.82,5.82,5.82,5.8,215.66,216.16,216.33,216.51,216.68,216.85,217.02,217.18,217.56,29.330000000000002,28.990000000000002,28.830000000000002,28.62,28.44,28.240000000000002,28.05,27.86,27.490000000000002,N/A,N/A +2012,8,17,17,30,101540,100400,99290,78.08,0,4.82,5.17,5.24,5.28,5.3100000000000005,5.33,5.34,5.36,5.37,227.72,227.93,228.13,228.3,228.45000000000002,228.58,228.71,228.84,229.07,29.400000000000002,29.060000000000002,28.89,28.69,28.5,28.310000000000002,28.12,27.93,27.55,N/A,N/A +2012,8,17,18,30,101470,100330,99220,81.87,0,6.26,6.69,6.76,6.78,6.79,6.79,6.79,6.78,6.75,223.79,224.07,224.14000000000001,224.24,224.32,224.41,224.51,224.6,224.81,29.28,28.94,28.77,28.57,28.38,28.19,28.01,27.82,27.46,N/A,N/A +2012,8,17,19,30,101470,100330,99220,81.72,0,5.98,6.44,6.54,6.6000000000000005,6.63,6.65,6.67,6.67,6.68,225.11,225.39000000000001,225.44,225.46,225.5,225.52,225.55,225.56,225.58,29.34,29,28.82,28.62,28.44,28.25,28.05,27.86,27.490000000000002,N/A,N/A +2012,8,17,20,30,101480,100340,99230,83.16,0,6.59,7.15,7.2700000000000005,7.33,7.36,7.37,7.36,7.3500000000000005,7.3100000000000005,219.94,220.01,220.02,220.03,220.04,220.05,220.06,220.06,220.06,29.37,29.04,28.87,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A +2012,8,17,21,30,101470,100330,99220,80.08,0,7.65,8.36,8.53,8.620000000000001,8.69,8.73,8.75,8.77,8.790000000000001,242.84,242.97,242.88,242.82,242.78,242.76,242.74,242.73000000000002,242.72,29.52,29.2,29.03,28.830000000000002,28.650000000000002,28.45,28.26,28.07,27.69,N/A,N/A +2012,8,17,22,30,101400,100260,99160,79.17,0,7.13,7.75,7.87,7.930000000000001,7.96,7.98,7.98,7.98,7.97,237.85,237.83,237.84,237.85,237.84,237.83,237.82,237.81,237.76,29.51,29.19,29.02,28.82,28.64,28.45,28.26,28.07,27.69,N/A,N/A +2012,8,17,23,30,101360,100220,99110,83.55,0,5.18,5.5200000000000005,5.59,5.63,5.65,5.67,5.7,5.73,5.8500000000000005,245.27,243.84,243.02,242.05,241.09,240.03,238.86,237.66,234.70000000000002,28.75,28.41,28.26,28.07,27.900000000000002,27.740000000000002,27.57,27.42,27.12,N/A,N/A +2012,8,18,0,30,101320,100180,99080,76.46000000000001,0,5.21,5.66,5.75,5.8,5.84,5.87,5.9,5.92,5.95,221.3,221.55,221.56,221.56,221.57,221.59,221.61,221.63,221.69,29.490000000000002,29.17,29,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A +2012,8,18,1,30,101320,100180,99080,75.46000000000001,0,5.59,6.04,6.11,6.140000000000001,6.16,6.16,6.15,6.140000000000001,6.1000000000000005,216.03,216.03,216.05,216.03,216,215.97,215.93,215.88,215.77,29.48,29.16,29,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A +2012,8,18,2,30,101320,100180,99080,74.63,0,5.51,5.91,5.99,6.03,6.05,6.07,6.08,6.09,6.12,207.29,207.24,207.24,207.27,207.3,207.33,207.38,207.44,207.59,29.42,29.12,28.95,28.76,28.580000000000002,28.39,28.21,28.03,27.67,N/A,N/A +2012,8,18,3,30,101320,100180,99070,72.06,0,5.9,6.41,6.5200000000000005,6.57,6.61,6.640000000000001,6.67,6.69,6.73,199.34,199.53,199.65,199.77,199.87,199.98000000000002,200.09,200.20000000000002,200.46,29.6,29.3,29.14,28.94,28.76,28.57,28.38,28.2,27.830000000000002,N/A,N/A +2012,8,18,4,30,101330,100190,99080,74.82000000000001,0,5.62,6.05,6.140000000000001,6.17,6.19,6.2,6.19,6.19,6.16,203.25,203.09,202.91,202.71,202.53,202.35,202.17000000000002,201.98000000000002,201.64000000000001,29.42,29.11,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.62,N/A,N/A +2012,8,18,5,30,101320,100180,99080,77.24,0,6.390000000000001,6.87,6.93,6.94,6.94,6.92,6.890000000000001,6.86,6.79,206.86,206.48000000000002,206.29,206.07,205.87,205.66,205.45000000000002,205.25,204.81,29.240000000000002,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,18,6,30,101350,100210,99100,75.64,0,5.98,6.45,6.53,6.57,6.6000000000000005,6.61,6.61,6.6000000000000005,6.58,203.82,203.92000000000002,203.98000000000002,204.04,204.09,204.12,204.15,204.18,204.20000000000002,29.29,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A +2012,8,18,7,30,101370,100230,99120,78.36,0,6.890000000000001,7.42,7.53,7.58,7.61,7.63,7.640000000000001,7.65,7.66,200.69,200.63,200.64000000000001,200.68,200.72,200.76,200.81,200.85,200.97,29.14,28.810000000000002,28.64,28.44,28.26,28.080000000000002,27.89,27.7,27.330000000000002,N/A,N/A +2012,8,18,8,30,101330,100190,99080,80.37,0,6.61,7.17,7.29,7.3500000000000005,7.4,7.43,7.44,7.46,7.46,212,211.97,211.9,211.82,211.75,211.67000000000002,211.6,211.53,211.36,29,28.66,28.48,28.28,28.09,27.900000000000002,27.7,27.51,27.13,N/A,N/A +2012,8,18,9,30,101340,100200,99100,80.74,0,7.37,8,8.14,8.22,8.26,8.290000000000001,8.32,8.33,8.34,212.55,212.6,212.62,212.64000000000001,212.65,212.66,212.67000000000002,212.67000000000002,212.68,29,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A +2012,8,18,10,30,101350,100210,99100,81.31,0,6.78,7.33,7.46,7.53,7.57,7.6000000000000005,7.61,7.63,7.640000000000001,210.89000000000001,210.86,210.87,210.87,210.87,210.87,210.86,210.85,210.83,28.96,28.62,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,8,18,11,30,101360,100220,99110,83.08,0,6.44,6.95,7.07,7.13,7.17,7.21,7.23,7.25,7.2700000000000005,217.87,217.86,217.87,217.88,217.9,217.91,217.93,217.94,217.99,28.89,28.53,28.36,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.02,N/A,N/A +2012,8,18,12,30,101370,100230,99130,85.04,0,6.36,6.8500000000000005,6.97,7.03,7.08,7.11,7.13,7.140000000000001,7.17,218.19,218.18,218.18,218.17000000000002,218.15,218.14000000000001,218.12,218.11,218.09,28.830000000000002,28.47,28.3,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.95,N/A,N/A +2012,8,18,13,30,101360,100220,99120,86.89,0,6.390000000000001,7,7.140000000000001,7.22,7.28,7.32,7.3500000000000005,7.36,7.38,220.4,220.17000000000002,220.1,220.05,220.02,220,219.99,219.99,219.99,28.830000000000002,28.46,28.29,28.080000000000002,27.89,27.7,27.5,27.310000000000002,26.92,N/A,N/A +2012,8,18,14,30,101380,100240,99140,85.18,0,6.91,7.42,7.53,7.57,7.59,7.6000000000000005,7.6000000000000005,7.6000000000000005,7.58,226.46,226.79,226.85,226.88,226.9,226.91,226.91,226.92000000000002,226.94,28.87,28.51,28.34,28.14,27.95,27.76,27.57,27.39,27.02,N/A,N/A +2012,8,18,15,30,101370,100230,99130,79.11,0,7.5600000000000005,8.25,8.41,8.5,8.56,8.6,8.63,8.65,8.68,235.14000000000001,235.16,235.15,235.14000000000001,235.13,235.12,235.11,235.1,235.08,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,8,18,16,30,101380,100240,99140,76.85000000000001,0,7.09,7.73,7.890000000000001,7.98,8.040000000000001,8.09,8.13,8.17,8.22,229.39000000000001,229.69,229.83,229.97,230.1,230.23000000000002,230.34,230.45000000000002,230.66,29.36,29.02,28.86,28.66,28.47,28.28,28.080000000000002,27.900000000000002,27.52,N/A,N/A +2012,8,18,17,30,101350,100210,99100,77.47,0,7.75,8.38,8.540000000000001,8.61,8.67,8.700000000000001,8.73,8.76,8.790000000000001,227.81,228.08,228.21,228.34,228.44,228.53,228.62,228.70000000000002,228.85,29.27,28.94,28.78,28.580000000000002,28.400000000000002,28.21,28.02,27.84,27.47,N/A,N/A +2012,8,18,18,30,101300,100160,99050,76.46000000000001,0,8.26,9.09,9.290000000000001,9.41,9.48,9.53,9.56,9.58,9.59,224.57,224.92000000000002,225.09,225.23000000000002,225.34,225.44,225.52,225.59,225.72,29.43,29.11,28.95,28.75,28.560000000000002,28.37,28.18,28,27.61,N/A,N/A +2012,8,18,19,30,101240,100100,98990,80.52,0,8.99,9.85,10.02,10.1,10.14,10.15,10.15,10.15,10.11,217.09,217.28,217.35,217.4,217.45000000000002,217.48000000000002,217.51,217.54,217.62,29.2,28.85,28.68,28.48,28.29,28.1,27.91,27.72,27.35,N/A,N/A +2012,8,18,20,30,101210,100070,98960,69.68,0,9.71,10.700000000000001,10.94,11.08,11.17,11.22,11.26,11.290000000000001,11.3,218.20000000000002,218.31,218.47,218.62,218.76,218.88,219,219.1,219.3,29.98,29.72,29.57,29.39,29.21,29.03,28.85,28.67,28.310000000000002,N/A,N/A +2012,8,18,21,30,101170,100030,98930,72.19,0,9.06,9.96,10.17,10.290000000000001,10.38,10.450000000000001,10.52,10.58,10.75,214.61,214.55,214.6,214.68,214.77,214.87,215,215.14000000000001,215.55,29.88,29.6,29.44,29.26,29.080000000000002,28.91,28.73,28.57,28.25,N/A,N/A +2012,8,18,22,30,101130,99990,98890,75.16,0,8.43,9.24,9.39,9.46,9.51,9.53,9.540000000000001,9.55,9.57,210.52,210.8,210.91,211,211.1,211.21,211.33,211.47,211.87,29.64,29.34,29.17,28.98,28.8,28.62,28.44,28.26,27.91,N/A,N/A +2012,8,18,23,30,101090,99960,98850,82.32000000000001,0,9.200000000000001,10.05,10.21,10.27,10.3,10.290000000000001,10.27,10.23,10.14,211.46,211.4,211.37,211.33,211.3,211.27,211.25,211.22,211.22,29.14,28.79,28.62,28.42,28.23,28.04,27.86,27.67,27.310000000000002,N/A,N/A +2012,8,19,0,30,101080,99940,98840,76.48,0,9.13,9.96,10.16,10.25,10.31,10.34,10.35,10.35,10.33,207.36,207.47,207.59,207.71,207.81,207.91,208,208.09,208.22,29.36,29.05,28.88,28.69,28.51,28.32,28.13,27.95,27.580000000000002,N/A,N/A +2012,8,19,1,30,101060,99920,98820,79.69,0,7.67,8.290000000000001,8.41,8.46,8.48,8.48,8.47,8.46,8.41,204.19,204.26,204.32,204.4,204.46,204.54,204.62,204.70000000000002,204.89000000000001,29.09,28.75,28.59,28.39,28.2,28.01,27.830000000000002,27.64,27.28,N/A,N/A +2012,8,19,2,30,101090,99960,98850,81.3,0,7.46,8.09,8.22,8.290000000000001,8.33,8.35,8.36,8.36,8.35,194.01,194.11,194.14000000000001,194.16,194.18,194.21,194.23000000000002,194.26,194.33,28.98,28.63,28.46,28.26,28.07,27.88,27.69,27.51,27.14,N/A,N/A +2012,8,19,3,30,101100,99960,98860,84.69,0,6.73,7.28,7.4,7.45,7.49,7.5,7.51,7.51,7.5,196.63,196.85,196.94,197,197.04,197.08,197.11,197.13,197.18,28.78,28.41,28.240000000000002,28.03,27.84,27.650000000000002,27.45,27.26,26.88,N/A,N/A +2012,8,19,4,30,101100,99960,98860,81.42,0,7.7700000000000005,8.41,8.56,8.63,8.68,8.71,8.72,8.73,8.73,196.51,196.22,196.12,196.04,195.96,195.9,195.84,195.78,195.66,28.78,28.42,28.25,28.04,27.85,27.66,27.47,27.28,26.91,N/A,N/A +2012,8,19,5,30,101120,99990,98880,81.13,0,6.9,7.48,7.61,7.68,7.73,7.76,7.78,7.79,7.8,193.98000000000002,194.11,194.24,194.41,194.56,194.73000000000002,194.9,195.07,195.44,28.85,28.490000000000002,28.310000000000002,28.11,27.92,27.72,27.53,27.34,26.96,N/A,N/A +2012,8,19,6,30,101160,100020,98910,75.75,0,7.79,8.45,8.6,8.67,8.71,8.74,8.75,8.76,8.76,189.94,190.28,190.37,190.42000000000002,190.45000000000002,190.46,190.47,190.48,190.47,28.990000000000002,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.12,N/A,N/A +2012,8,19,7,30,101180,100040,98930,72.33,0,7.36,7.99,8.14,8.22,8.28,8.32,8.34,8.370000000000001,8.4,196.86,196.88,196.83,196.76,196.70000000000002,196.64000000000001,196.58,196.52,196.39000000000001,29.13,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.68,27.3,N/A,N/A +2012,8,19,8,30,101180,100040,98940,68.56,0,7.26,7.9,8.05,8.13,8.19,8.23,8.26,8.28,8.32,200.66,200.48000000000002,200.31,200.14000000000001,199.98000000000002,199.84,199.69,199.55,199.28,29.28,28.96,28.8,28.59,28.41,28.22,28.02,27.84,27.46,N/A,N/A +2012,8,19,9,30,101190,100050,98940,69.14,0,7.33,7.95,8.09,8.16,8.2,8.23,8.25,8.26,8.27,197.19,197.45000000000002,197.59,197.73000000000002,197.86,197.99,198.11,198.23000000000002,198.47,29.3,28.98,28.82,28.62,28.43,28.240000000000002,28.04,27.86,27.48,N/A,N/A +2012,8,19,10,30,101230,100090,98980,73.56,0,6.7,7.29,7.43,7.5,7.5600000000000005,7.6000000000000005,7.63,7.65,7.68,208.55,208.5,208.49,208.48000000000002,208.47,208.47,208.46,208.45000000000002,208.43,29.17,28.84,28.67,28.46,28.28,28.080000000000002,27.89,27.7,27.32,N/A,N/A +2012,8,19,11,30,101230,100090,98980,72.22,0,6.42,6.96,7.07,7.13,7.17,7.19,7.2,7.21,7.21,203.12,203.32,203.46,203.6,203.73000000000002,203.87,204.01,204.14000000000001,204.4,29.150000000000002,28.82,28.650000000000002,28.45,28.26,28.060000000000002,27.87,27.68,27.29,N/A,N/A +2012,8,19,12,30,101250,100100,99000,72.38,0,5.7,6.140000000000001,6.23,6.28,6.3100000000000005,6.34,6.3500000000000005,6.3500000000000005,6.36,221.33,221.24,221.22,221.23000000000002,221.23000000000002,221.25,221.27,221.29,221.34,29.13,28.8,28.63,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A +2012,8,19,13,30,101290,100150,99040,71.67,0,4.99,5.33,5.4,5.44,5.46,5.48,5.49,5.5,5.51,236.74,236.62,236.45000000000002,236.27,236.1,235.93,235.76,235.6,235.27,29.19,28.86,28.69,28.5,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A +2012,8,19,14,30,101330,100190,99080,70.5,0,4.76,5.01,5.04,5.04,5.03,5.01,5,4.98,4.94,246.07,245.93,245.72,245.48000000000002,245.25,245.02,244.79,244.57,244.11,29.17,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.330000000000002,N/A,N/A +2012,8,19,15,30,101350,100210,99100,75.25,0,3.96,4.05,4.01,3.94,3.88,3.81,3.75,3.69,3.5700000000000003,313.5,312.22,311.25,310.13,309.08,307.99,306.87,305.78000000000003,303.41,28.78,28.44,28.27,28.07,27.89,27.7,27.51,27.32,26.95,N/A,N/A +2012,8,19,16,30,101340,100190,99090,71.9,0,2.66,2.7800000000000002,2.79,2.79,2.79,2.79,2.79,2.7800000000000002,2.77,313.27,312.27,311.65000000000003,311.04,310.5,309.98,309.47,309,308.04,28.92,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A +2012,8,19,17,30,101300,100160,99050,72.34,0,2.58,2.71,2.74,2.7600000000000002,2.7800000000000002,2.79,2.8000000000000003,2.81,2.82,349.82,348.86,348.35,347.87,347.42,346.97,346.51,346.07,345.13,28.84,28.490000000000002,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A +2012,8,19,18,30,101320,100180,99080,70.53,0,1.9100000000000001,2.0100000000000002,2.05,2.08,2.11,2.13,2.15,2.17,2.21,8.36,7.23,6.47,5.78,5.17,4.5600000000000005,3.99,3.46,2.38,29.27,28.93,28.76,28.55,28.37,28.18,27.98,27.79,27.41,N/A,N/A +2012,8,19,19,30,101230,100090,98990,70.18,0,1.69,1.6600000000000001,1.62,1.57,1.52,1.47,1.43,1.3900000000000001,1.3,132.64000000000001,130.55,129.15,127.59,126.02,124.42,122.56,120.77,116.37,29.34,28.98,28.810000000000002,28.62,28.43,28.240000000000002,28.05,27.87,27.5,N/A,N/A +2012,8,19,20,30,101350,100190,99070,94.15,444.6,6.12,6.43,6.51,6.57,6.6000000000000005,6.63,6.66,6.67,6.71,260.96,259.36,258.52,257.73,256.89,256.14,255.38,254.71,253.42000000000002,25.73,25.27,25.080000000000002,24.900000000000002,24.72,24.55,24.38,24.21,23.89,N/A,N/A +2012,8,19,21,30,101340,100180,99060,84.18,0,4.0200000000000005,4.0600000000000005,4.0200000000000005,3.93,3.84,3.74,3.58,3.43,2.97,50.42,49.57,48.95,48.17,47.21,46.12,44.32,42.46,34.28,25.400000000000002,24.97,24.8,24.62,24.47,24.330000000000002,24.2,24.09,23.95,N/A,N/A +2012,8,19,22,30,101290,100130,99020,78.19,0,2.94,3,2.98,2.94,2.9,2.85,2.8000000000000003,2.74,2.58,147.12,147.34,147.39000000000001,147.44,147.48,147.52,147.51,147.5,147.13,26.43,26.02,25.84,25.64,25.45,25.27,25.09,24.92,24.59,N/A,N/A +2012,8,19,23,30,101270,100120,99000,80.67,0,6.32,6.63,6.65,6.62,6.57,6.51,6.43,6.3500000000000005,6.09,171.23,171.56,171.79,172.09,172.46,172.89000000000001,173.51,174.14000000000001,176.61,26.48,26.02,25.82,25.62,25.43,25.25,25.060000000000002,24.89,24.54,N/A,N/A +2012,8,20,0,30,101220,100070,98950,84.98,0,5.63,5.93,5.98,5.98,5.98,5.96,5.94,5.91,5.8500000000000005,170.58,170.72,170.73,170.75,170.77,170.79,170.83,170.85,170.97,26.72,26.28,26.09,25.89,25.7,25.51,25.32,25.14,24.78,N/A,N/A +2012,8,20,1,30,101200,100050,98940,84.02,0,3.99,4.16,4.17,4.16,4.14,4.11,4.08,4.04,3.96,195.54,195.54,195.46,195.37,195.28,195.18,195.07,194.96,194.68,27.11,26.7,26.52,26.310000000000002,26.13,25.94,25.740000000000002,25.560000000000002,25.19,N/A,N/A +2012,8,20,2,30,101190,100040,98930,82.94,0,3.92,4.08,4.09,4.08,4.0600000000000005,4.03,4.01,3.98,3.9,210.05,209.91,209.8,209.67000000000002,209.57,209.45000000000002,209.33,209.22,208.97,27.3,26.900000000000002,26.71,26.51,26.32,26.13,25.94,25.75,25.38,N/A,N/A +2012,8,20,3,30,101180,100040,98930,81.2,0,2.86,2.96,2.97,2.96,2.95,2.93,2.91,2.89,2.84,228.04,228.21,228.3,228.37,228.43,228.51,228.56,228.61,228.73000000000002,27.52,27.14,26.96,26.76,26.57,26.38,26.2,26.01,25.64,N/A,N/A +2012,8,20,4,30,101170,100020,98910,80.15,0,2.59,2.69,2.7,2.7,2.7,2.69,2.69,2.68,2.66,224.99,225.26,225.39000000000001,225.52,225.63,225.75,225.86,225.97,226.20000000000002,27.72,27.35,27.17,26.97,26.78,26.580000000000002,26.39,26.2,25.82,N/A,N/A +2012,8,20,5,30,101190,100050,98940,77.35000000000001,0,2.67,2.77,2.7800000000000002,2.77,2.7600000000000002,2.75,2.74,2.72,2.69,249.29,249.36,249.41,249.46,249.51000000000002,249.56,249.61,249.64000000000001,249.76000000000002,27.900000000000002,27.54,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A +2012,8,20,6,30,101210,100060,98960,75.46000000000001,0,2.74,2.85,2.86,2.86,2.86,2.85,2.85,2.84,2.82,248.12,248.35,248.39000000000001,248.44,248.49,248.53,248.6,248.66,248.77,28.04,27.69,27.51,27.310000000000002,27.12,26.93,26.73,26.55,26.17,N/A,N/A +2012,8,20,7,30,101260,100110,99010,75.26,0,2.58,2.68,2.69,2.69,2.68,2.67,2.66,2.66,2.63,237.22,237.14000000000001,237.07,237,236.92000000000002,236.83,236.74,236.65,236.46,28.080000000000002,27.73,27.560000000000002,27.36,27.17,26.97,26.78,26.59,26.21,N/A,N/A +2012,8,20,8,30,101260,100110,99010,75.86,0,2.66,2.7600000000000002,2.77,2.77,2.77,2.7600000000000002,2.7600000000000002,2.75,2.73,250.79,250.86,250.85,250.85,250.85,250.85,250.85,250.85,250.86,28.04,27.68,27.51,27.3,27.11,26.92,26.73,26.54,26.16,N/A,N/A +2012,8,20,9,30,101280,100130,99020,79.5,0,3.17,3.33,3.36,3.37,3.38,3.38,3.38,3.38,3.37,258.42,258.54,258.59000000000003,258.64,258.69,258.75,258.8,258.85,258.97,27.96,27.59,27.42,27.21,27.03,26.830000000000002,26.64,26.45,26.07,N/A,N/A +2012,8,20,10,30,101280,100140,99030,80.95,0,3.48,3.66,3.69,3.7,3.7,3.7,3.7,3.69,3.68,263.88,264.18,264.26,264.36,264.45,264.54,264.63,264.72,264.91,27.88,27.5,27.330000000000002,27.12,26.93,26.740000000000002,26.54,26.35,25.97,N/A,N/A +2012,8,20,11,30,101280,100130,99020,84.35000000000001,0,4.82,5.04,5.05,5.04,5.01,4.98,4.95,4.91,4.83,293.74,293.37,293.14,292.92,292.71,292.51,292.32,292.13,291.75,27.580000000000002,27.19,27.01,26.810000000000002,26.63,26.44,26.25,26.07,25.7,N/A,N/A +2012,8,20,12,30,101300,100150,99040,79.5,0,4.65,4.86,4.87,4.8500000000000005,4.83,4.8,4.7700000000000005,4.73,4.66,310.76,310.94,311.08,311.21,311.36,311.52,311.69,311.85,312.28000000000003,27.46,27.07,26.89,26.69,26.5,26.310000000000002,26.12,25.94,25.57,N/A,N/A +2012,8,20,13,30,101320,100170,99060,79.5,0,4.73,4.96,4.98,4.98,4.97,4.96,4.94,4.92,4.87,312.72,313.64,314.19,314.75,315.26,315.76,316.27,316.76,317.79,27.310000000000002,26.91,26.73,26.52,26.330000000000002,26.14,25.95,25.76,25.39,N/A,N/A +2012,8,20,14,30,101380,100230,99120,83.21000000000001,0,3.93,4.12,4.15,4.16,4.16,4.16,4.16,4.15,4.14,314.94,315.83,316.38,316.92,317.40000000000003,317.86,318.33,318.79,319.72,27.19,26.79,26.6,26.400000000000002,26.2,26.01,25.82,25.63,25.25,N/A,N/A +2012,8,20,15,30,101370,100220,99110,82.95,0,4.07,4.28,4.32,4.33,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.3500000000000005,310.36,311.61,312.36,313.11,313.8,314.48,315.17,315.83,317.23,27.39,26.990000000000002,26.810000000000002,26.61,26.42,26.23,26.03,25.84,25.47,N/A,N/A +2012,8,20,16,30,101390,100240,99130,75.98,0,3.45,3.61,3.64,3.66,3.66,3.67,3.67,3.67,3.67,343.56,342.73,342.26,341.8,341.39,340.99,340.62,340.27,339.6,28,27.62,27.44,27.240000000000002,27.05,26.85,26.66,26.47,26.09,N/A,N/A +2012,8,20,17,30,101360,100210,99100,72.93,0,2.95,3.12,3.16,3.19,3.21,3.23,3.25,3.27,3.3000000000000003,315.59000000000003,316.18,316.56,316.93,317.25,317.56,317.89,318.2,318.83,28.35,27.990000000000002,27.82,27.61,27.42,27.23,27.04,26.85,26.47,N/A,N/A +2012,8,20,18,30,101320,100170,99060,70.4,0,2.64,2.84,2.9,2.96,3.02,3.08,3.15,3.21,3.39,292.26,294.16,295.40000000000003,296.61,297.71,298.83,299.98,301.11,303.63,28.84,28.5,28.330000000000002,28.14,27.96,27.77,27.580000000000002,27.41,27.05,N/A,N/A +2012,8,20,19,30,101300,100160,99050,70.03,0,2.7600000000000002,2.7800000000000002,2.73,2.67,2.62,2.58,2.54,2.5,2.45,219.96,223.5,226.02,228.88,231.49,234.20000000000002,236.95000000000002,239.63,245.27,29.29,28.97,28.810000000000002,28.62,28.44,28.26,28.07,27.900000000000002,27.54,N/A,N/A +2012,8,20,20,30,101240,100100,98990,72.49,0,3.41,3.49,3.45,3.39,3.3200000000000003,3.25,3.16,3.0700000000000003,2.82,181.8,181.84,181.88,181.91,181.91,181.91,181.92000000000002,181.93,182.23,29.13,28.79,28.62,28.44,28.26,28.09,27.92,27.75,27.46,N/A,N/A +2012,8,20,21,30,101200,100060,98950,78.37,0,4.54,4.75,4.76,4.72,4.67,4.61,4.5600000000000005,4.5,4.26,191.28,191.72,192.02,192.4,192.79,193.24,193.74,194.26,195.6,28.810000000000002,28.46,28.3,28.1,27.91,27.73,27.54,27.36,26.990000000000002,N/A,N/A +2012,8,20,22,30,101170,100030,98930,77.02,0,5.26,5.57,5.59,5.57,5.54,5.5,5.44,5.38,5.22,185.61,185.79,185.92000000000002,186.09,186.26,186.44,186.67000000000002,186.9,187.51,29.060000000000002,28.73,28.57,28.37,28.19,28.01,27.82,27.64,27.27,N/A,N/A +2012,8,20,23,30,101160,100020,98910,77.10000000000001,0,5.73,6.12,6.18,6.19,6.18,6.17,6.140000000000001,6.11,6.04,201.8,201.79,201.83,201.86,201.88,201.9,201.92000000000002,201.95000000000002,202.02,28.990000000000002,28.66,28.5,28.3,28.11,27.93,27.740000000000002,27.55,27.18,N/A,N/A +2012,8,21,0,30,101160,100020,98920,76.04,0,5.48,5.86,5.93,5.95,5.96,5.96,5.95,5.94,5.91,200.26,200.47,200.58,200.67000000000002,200.74,200.81,200.87,200.92000000000002,201.02,28.93,28.6,28.43,28.23,28.04,27.85,27.66,27.47,27.09,N/A,N/A +2012,8,21,1,30,101170,100030,98930,74.54,0,4.6000000000000005,4.89,4.93,4.95,4.96,4.95,4.95,4.94,4.91,204.42000000000002,204.3,204.25,204.20000000000002,204.16,204.12,204.07,204.03,203.95000000000002,28.98,28.650000000000002,28.48,28.28,28.1,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A +2012,8,21,2,30,101210,100070,98960,72.66,0,2.81,2.95,2.98,2.98,2.99,2.98,2.98,2.98,2.96,204.4,204.32,204.24,204.14000000000001,204.06,203.96,203.85,203.74,203.49,29,28.69,28.52,28.32,28.14,27.95,27.76,27.580000000000002,27.21,N/A,N/A +2012,8,21,3,30,101220,100080,98970,72.3,0,2.43,2.52,2.52,2.5100000000000002,2.5,2.49,2.48,2.46,2.43,242.72,242.28,241.98000000000002,241.67000000000002,241.39000000000001,241.1,240.79,240.5,239.86,28.990000000000002,28.68,28.51,28.310000000000002,28.13,27.94,27.75,27.57,27.19,N/A,N/A +2012,8,21,4,30,101220,100070,98970,73.46000000000001,0,1.67,1.7,1.7,1.68,1.67,1.6500000000000001,1.6400000000000001,1.62,1.58,292.24,292.87,293.03000000000003,293.24,293.46,293.71,293.98,294.25,294.95,28.85,28.53,28.37,28.17,27.98,27.8,27.61,27.42,27.05,N/A,N/A +2012,8,21,5,30,101240,100100,99000,74.04,0,1.27,1.31,1.31,1.31,1.31,1.3,1.29,1.29,1.27,349.47,350.97,351.66,352.38,353.05,353.72,354.45,355.17,356.84000000000003,28.8,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.36,26.990000000000002,N/A,N/A +2012,8,21,6,30,101280,100140,99030,69.16,0,2.5100000000000002,2.61,2.61,2.59,2.58,2.56,2.5500000000000003,2.5300000000000002,2.5,49.36,50.07,50.47,50.9,51.27,51.63,51.980000000000004,52.31,53.03,29.01,28.69,28.52,28.32,28.13,27.94,27.75,27.560000000000002,27.18,N/A,N/A +2012,8,21,7,30,101300,100160,99050,70.8,0,2.23,2.35,2.37,2.4,2.41,2.43,2.44,2.46,2.49,40.43,40.42,40.5,40.59,40.68,40.78,40.86,40.95,41.18,28.78,28.45,28.28,28.080000000000002,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A +2012,8,21,8,30,101310,100160,99050,66.84,0,3.5700000000000003,3.73,3.74,3.73,3.71,3.7,3.68,3.66,3.61,54.97,55.39,55.63,55.85,56.04,56.21,56.38,56.550000000000004,56.86,28.85,28.51,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27,N/A,N/A +2012,8,21,9,30,101340,100190,99080,67.98,0,3.24,3.42,3.45,3.46,3.47,3.47,3.47,3.47,3.46,60.39,60.76,60.9,61.04,61.160000000000004,61.27,61.370000000000005,61.47,61.660000000000004,28.8,28.47,28.3,28.1,27.91,27.72,27.52,27.330000000000002,26.95,N/A,N/A +2012,8,21,10,30,101370,100220,99120,66.52,0,2.71,2.84,2.85,2.85,2.85,2.85,2.85,2.85,2.84,71.33,70.51,70.03,69.55,69.13,68.74,68.35000000000001,67.97,67.22,28.810000000000002,28.490000000000002,28.32,28.12,27.93,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,8,21,11,30,101380,100230,99130,68.92,0,3.65,3.7800000000000002,3.7600000000000002,3.73,3.7,3.66,3.63,3.59,3.52,74.82000000000001,75.15,75.45,75.74,76.02,76.3,76.57000000000001,76.84,77.41,28.7,28.37,28.2,28.01,27.82,27.64,27.45,27.26,26.89,N/A,N/A +2012,8,21,12,30,101410,100260,99150,68.88,0,3.12,3.2800000000000002,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,75.01,74.98,74.96000000000001,74.92,74.89,74.84,74.79,74.74,74.64,28.54,28.19,28.02,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A +2012,8,21,13,30,101440,100300,99190,72.76,0,4.24,4.45,4.48,4.49,4.49,4.48,4.47,4.46,4.42,86.64,86.75,86.81,86.87,86.92,86.96000000000001,87,87.04,87.14,28.44,28.09,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,8,21,14,30,101490,100350,99230,69.12,0,2.95,3.14,3.19,3.23,3.25,3.27,3.29,3.31,3.34,91.33,92.66,93.4,94.12,94.75,95.33,95.89,96.4,97.37,28.57,28.240000000000002,28.07,27.87,27.69,27.5,27.310000000000002,27.13,26.76,N/A,N/A +2012,8,21,15,30,101500,100350,99240,73.54,0,4.51,4.79,4.8500000000000005,4.88,4.9,4.92,4.93,4.94,4.94,83.69,83.96000000000001,84.05,84.14,84.22,84.29,84.37,84.44,84.58,28.44,28.080000000000002,27.91,27.71,27.52,27.32,27.13,26.94,26.560000000000002,N/A,N/A +2012,8,21,16,30,101520,100370,99260,74.66,0,3.95,4.16,4.19,4.2,4.21,4.21,4.2,4.2,4.18,64.36,64.76,65.11,65.44,65.73,66,66.25,66.49,66.93,28.41,28.05,27.87,27.67,27.48,27.28,27.09,26.900000000000002,26.52,N/A,N/A +2012,8,21,17,30,101520,100380,99270,74.49,0,4.63,4.87,4.9,4.9,4.9,4.89,4.88,4.86,4.83,61.42,61.63,61.71,61.79,61.86,61.93,62,62.06,62.17,28.34,27.97,27.79,27.580000000000002,27.39,27.19,27,26.810000000000002,26.42,N/A,N/A +2012,8,21,18,30,101530,100390,99270,77.08,0,5.79,6.140000000000001,6.2,6.21,6.21,6.2,6.18,6.16,6.1000000000000005,78.14,78.3,78.32000000000001,78.35000000000001,78.38,78.41,78.43,78.46000000000001,78.52,28.18,27.79,27.61,27.400000000000002,27.21,27.02,26.82,26.63,26.25,N/A,N/A +2012,8,21,19,30,101510,100370,99250,74.67,0,6.25,6.61,6.66,6.66,6.63,6.6000000000000005,6.55,6.5,6.37,100.60000000000001,100.54,100.51,100.46000000000001,100.43,100.39,100.35000000000001,100.31,100.21000000000001,28.17,27.79,27.61,27.41,27.23,27.04,26.85,26.67,26.3,N/A,N/A +2012,8,21,20,30,101500,100350,99240,73.4,0,5.7700000000000005,6.07,6.09,6.0600000000000005,6.0200000000000005,5.98,5.92,5.86,5.72,107.72,107.3,107.02,106.72,106.43,106.14,105.84,105.54,104.88,28.22,27.85,27.68,27.48,27.3,27.11,26.92,26.740000000000002,26.38,N/A,N/A +2012,8,21,21,30,101470,100330,99220,67.48,0,4.7,4.97,5.01,5.01,5,4.99,4.97,4.95,4.9,114.03,113.81,113.60000000000001,113.39,113.19,113,112.8,112.61,112.2,28.52,28.18,28.01,27.82,27.63,27.45,27.26,27.080000000000002,26.71,N/A,N/A +2012,8,21,22,30,101470,100330,99210,66.34,0,4.9,5.21,5.25,5.2700000000000005,5.28,5.28,5.2700000000000005,5.26,5.24,119.71000000000001,119.62,119.48,119.32000000000001,119.17,119.01,118.85000000000001,118.69,118.35000000000001,28.7,28.36,28.19,27.990000000000002,27.8,27.62,27.43,27.240000000000002,26.87,N/A,N/A +2012,8,21,23,30,101470,100330,99210,68.96000000000001,0,4.05,4.3100000000000005,4.38,4.41,4.44,4.47,4.49,4.5,4.54,116.54,116.23,116.03,115.84,115.67,115.49000000000001,115.32000000000001,115.16,114.81,28.61,28.27,28.1,27.900000000000002,27.72,27.53,27.34,27.16,26.79,N/A,N/A +2012,8,22,0,30,101450,100310,99200,71.24,0,3.92,4.15,4.19,4.21,4.22,4.23,4.23,4.23,4.23,122,121.53,121.29,121.03,120.79,120.54,120.27,120,119.41,28.6,28.26,28.09,27.900000000000002,27.71,27.52,27.330000000000002,27.150000000000002,26.78,N/A,N/A +2012,8,22,1,30,101440,100300,99190,73.98,0,4.54,4.83,4.89,4.91,4.93,4.93,4.94,4.94,4.93,123.49000000000001,123.35000000000001,123.24000000000001,123.11,122.99000000000001,122.87,122.74000000000001,122.61,122.32000000000001,28.560000000000002,28.21,28.04,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.7,N/A,N/A +2012,8,22,2,30,101460,100320,99210,73.81,0,4.84,5.18,5.25,5.29,5.32,5.33,5.3500000000000005,5.36,5.37,123.23,123.31,123.41,123.5,123.58,123.65,123.73,123.8,123.92,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A +2012,8,22,3,30,101490,100350,99240,70.26,0,4.3500000000000005,4.64,4.71,4.75,4.7700000000000005,4.79,4.8100000000000005,4.82,4.8500000000000005,118.47,118.46000000000001,118.45,118.41,118.38,118.35000000000001,118.3,118.27,118.16,28.82,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A +2012,8,22,4,30,101480,100340,99230,69.02,0,3.72,3.96,4.01,4.04,4.0600000000000005,4.08,4.09,4.1,4.13,103.53,103.39,103.35000000000001,103.3,103.25,103.19,103.13,103.07000000000001,102.95,28.900000000000002,28.57,28.400000000000002,28.2,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A +2012,8,22,5,30,101500,100350,99240,69.41,0,4.5,4.8100000000000005,4.87,4.9,4.93,4.94,4.96,4.97,4.98,102.35000000000001,101.79,101.47,101.17,100.9,100.64,100.39,100.15,99.68,28.91,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A +2012,8,22,6,30,101520,100380,99270,68.38,0,5.04,5.4,5.48,5.5200000000000005,5.55,5.57,5.59,5.6000000000000005,5.62,100.76,100.62,100.56,100.5,100.43,100.36,100.3,100.24000000000001,100.12,28.990000000000002,28.66,28.48,28.28,28.1,27.900000000000002,27.71,27.52,27.14,N/A,N/A +2012,8,22,7,30,101550,100400,99290,64.6,0,4.64,4.97,5.04,5.09,5.12,5.14,5.16,5.17,5.19,98.93,99.37,99.56,99.74000000000001,99.89,100.03,100.17,100.3,100.53,29.2,28.88,28.71,28.51,28.32,28.13,27.93,27.75,27.36,N/A,N/A +2012,8,22,8,30,101560,100410,99300,65.41,0,5.13,5.51,5.58,5.62,5.65,5.67,5.68,5.69,5.71,109.48,109.5,109.49000000000001,109.49000000000001,109.5,109.51,109.52,109.54,109.56,29.150000000000002,28.82,28.66,28.46,28.26,28.080000000000002,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,22,9,30,101560,100410,99300,67.34,0,4.64,4.95,5.01,5.04,5.0600000000000005,5.08,5.09,5.09,5.1000000000000005,98.96000000000001,99.13,99.24000000000001,99.32000000000001,99.4,99.46000000000001,99.52,99.57000000000001,99.64,29.04,28.71,28.54,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.19,N/A,N/A +2012,8,22,10,30,101560,100410,99300,82.32000000000001,0,6.74,7.08,7.07,7.01,6.94,6.86,6.7700000000000005,6.68,6.5,71.29,72.5,73.39,74.4,75.35000000000001,76.33,77.35000000000001,78.34,80.56,27.89,27.5,27.34,27.150000000000002,26.98,26.810000000000002,26.63,26.47,26.13,N/A,N/A +2012,8,22,11,30,101570,100420,99310,86.89,0,8.35,8.97,9.11,9.16,9.19,9.200000000000001,9.200000000000001,9.18,9.14,56.84,57.1,57.32,57.54,57.75,57.94,58.160000000000004,58.370000000000005,58.84,27.35,26.900000000000002,26.7,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A +2012,8,22,12,30,101620,100470,99350,87.43,53.1,6.63,7.07,7.17,7.21,7.24,7.25,7.26,7.26,7.25,65.75,66.51,66.91,67.28,67.61,67.91,68.21000000000001,68.48,69.02,27.02,26.580000000000002,26.39,26.19,26,25.810000000000002,25.62,25.45,25.080000000000002,N/A,N/A +2012,8,22,13,30,101680,100510,99380,92.46000000000001,14.3,8.3,8.75,8.84,8.86,8.870000000000001,8.870000000000001,8.85,8.83,8.74,192.61,191.65,191.23000000000002,190.77,190.31,189.87,189.38,188.93,187.83,24.54,23.98,23.78,23.59,23.41,23.240000000000002,23.07,22.91,22.59,N/A,N/A +2012,8,22,14,30,101670,100500,99370,89.62,1.5,9.96,10.58,10.66,10.65,10.620000000000001,10.57,10.49,10.42,10.22,189.84,189.6,189.64000000000001,189.70000000000002,189.78,189.87,189.98,190.08,190.31,24.25,23.64,23.43,23.23,23.05,22.89,22.72,22.57,22.3,N/A,N/A +2012,8,22,15,30,101730,100560,99430,84.54,0.4,3.2800000000000002,3.35,3.34,3.31,3.2800000000000002,3.25,3.21,3.18,3.1,155.74,153.75,153.33,152.82,152.21,151.56,150.72,149.92000000000002,147.45000000000002,25.060000000000002,24.61,24.42,24.23,24.05,23.88,23.71,23.55,23.26,N/A,N/A +2012,8,22,16,30,101720,100550,99420,87.28,13.600000000000001,4.17,4.38,4.42,4.47,4.5600000000000005,4.68,5.04,5.47,6.49,36.11,38.79,40.93,43.52,46.62,50.04,55.59,61.74,68.68,24.77,24.330000000000002,24.16,24,23.87,23.75,23.71,23.69,24.05,N/A,N/A +2012,8,22,17,30,101650,100500,99380,73.62,0,2.3000000000000003,2.37,2.38,2.42,2.5500000000000003,2.79,3.15,3.5700000000000003,4.19,51.57,53.03,54.230000000000004,56.11,58.88,62.79,65.65,68.05,69.47,26.69,26.35,26.23,26.12,26.11,26.18,26.3,26.42,26.29,N/A,N/A +2012,8,22,18,30,101680,100530,99410,74.99,0,5.09,5.33,5.33,5.3100000000000005,5.28,5.24,5.2,5.16,5.07,117.68,117.11,116.77,116.4,116.04,115.68,115.29,114.92,114.11,27.25,26.84,26.650000000000002,26.45,26.26,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A +2012,8,22,19,30,101700,100550,99430,84.34,0,5.62,5.96,6.01,6.03,6.03,6.03,6.0200000000000005,6,5.96,150.8,151.18,151.41,151.63,151.83,152.03,152.21,152.37,152.72,26.830000000000002,26.38,26.18,25.97,25.77,25.57,25.37,25.18,24.79,N/A,N/A +2012,8,22,20,30,101640,100480,99370,77.18,0,4.79,5.1000000000000005,5.15,5.18,5.2,5.21,5.21,5.22,5.22,132.48,132.59,132.71,132.82,132.91,133,133.09,133.16,133.32,27.330000000000002,26.92,26.73,26.52,26.32,26.13,25.93,25.740000000000002,25.35,N/A,N/A +2012,8,22,21,30,101590,100430,99320,77.16,0,4.68,4.97,5.03,5.0600000000000005,5.08,5.09,5.1000000000000005,5.1000000000000005,5.11,119.48,119.83,120.07000000000001,120.29,120.47,120.65,120.82000000000001,120.97,121.29,27.5,27.1,26.91,26.7,26.51,26.310000000000002,26.12,25.93,25.55,N/A,N/A +2012,8,22,22,30,101560,100410,99290,77.92,0,3.97,4.19,4.24,4.2700000000000005,4.29,4.3,4.3100000000000005,4.32,4.34,112.23,112.11,112.05,111.97,111.89,111.83,111.76,111.68,111.54,27.5,27.1,26.92,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A +2012,8,22,23,30,101540,100390,99280,80.31,0,4.45,4.68,4.7,4.7,4.69,4.68,4.67,4.66,4.63,115.51,114.76,114.25,113.74000000000001,113.27,112.81,112.34,111.9,111.01,27.39,26.990000000000002,26.8,26.6,26.400000000000002,26.21,26.01,25.830000000000002,25.44,N/A,N/A +2012,8,23,0,30,101530,100380,99260,79.3,0,4.29,4.54,4.59,4.61,4.63,4.64,4.64,4.65,4.66,124.43,124.34,124.25,124.14,124.03,123.92,123.8,123.69,123.44,27.32,26.92,26.73,26.53,26.330000000000002,26.14,25.95,25.76,25.37,N/A,N/A +2012,8,23,1,30,101510,100360,99250,80.04,0,4.88,5.2,5.2700000000000005,5.3100000000000005,5.34,5.36,5.37,5.37,5.37,120.83,121.15,121.32000000000001,121.47,121.59,121.69,121.79,121.88,122.03,27.34,26.93,26.740000000000002,26.53,26.34,26.14,25.95,25.76,25.37,N/A,N/A +2012,8,23,2,30,101510,100360,99250,77.27,0,5.84,6.21,6.28,6.32,6.34,6.3500000000000005,6.36,6.36,6.36,119.72,119.56,119.45,119.35000000000001,119.27,119.18,119.11,119.04,118.9,27.62,27.21,27.02,26.82,26.62,26.43,26.240000000000002,26.05,25.66,N/A,N/A +2012,8,23,3,30,101520,100370,99260,75.86,0,5.6000000000000005,6.01,6.1000000000000005,6.16,6.2,6.23,6.25,6.2700000000000005,6.3100000000000005,124.08,124.26,124.33,124.39,124.44,124.49000000000001,124.54,124.59,124.68,27.75,27.35,27.16,26.96,26.76,26.57,26.37,26.18,25.8,N/A,N/A +2012,8,23,4,30,101520,100370,99260,74.55,0,6.12,6.59,6.7,6.7700000000000005,6.82,6.8500000000000005,6.88,6.91,6.94,133.38,132.78,132.57,132.39000000000001,132.25,132.13,132.03,131.93,131.77,28.11,27.72,27.54,27.34,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A +2012,8,23,5,30,101510,100360,99240,77.48,0,5.89,6.32,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.58,131.38,131.46,131.47,131.46,131.45,131.43,131.41,131.4,131.34,27.94,27.54,27.35,27.14,26.95,26.75,26.55,26.36,25.98,N/A,N/A +2012,8,23,6,30,101540,100390,99280,75.23,0,6.05,6.48,6.57,6.61,6.640000000000001,6.66,6.67,6.67,6.68,146.17000000000002,146.28,146.33,146.38,146.42000000000002,146.45000000000002,146.49,146.52,146.58,28.02,27.64,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.09,N/A,N/A +2012,8,23,7,30,101540,100400,99280,74.61,0,5.19,5.57,5.66,5.73,5.7700000000000005,5.8100000000000005,5.84,5.87,5.92,147.01,146.76,146.70000000000002,146.64000000000001,146.58,146.53,146.48,146.44,146.35,28.19,27.810000000000002,27.63,27.43,27.240000000000002,27.05,26.85,26.66,26.28,N/A,N/A +2012,8,23,8,30,101550,100400,99290,74.88,0,4.87,5.23,5.32,5.37,5.41,5.45,5.48,5.5,5.55,147.91,148.18,148.33,148.45000000000002,148.56,148.67000000000002,148.75,148.84,149.01,28.3,27.93,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A +2012,8,23,9,30,101540,100390,99280,77.13,0,4.0200000000000005,4.23,4.28,4.3,4.3100000000000005,4.32,4.33,4.34,4.3500000000000005,121.42,122.04,122.52,123.04,123.51,123.97,124.43,124.88000000000001,125.79,28.22,27.86,27.68,27.48,27.28,27.09,26.89,26.71,26.32,N/A,N/A +2012,8,23,10,30,101550,100400,99290,76.68,0,5.14,5.51,5.58,5.62,5.65,5.67,5.69,5.7,5.72,136.75,136.9,136.97,137.05,137.12,137.20000000000002,137.29,137.37,137.55,28.400000000000002,28.04,27.86,27.66,27.47,27.28,27.080000000000002,26.900000000000002,26.51,N/A,N/A +2012,8,23,11,30,101560,100410,99290,89.5,0,11.59,12.620000000000001,12.83,12.91,12.950000000000001,12.950000000000001,12.94,12.91,12.83,203.73000000000002,203.43,203.20000000000002,202.96,202.75,202.53,202.31,202.1,201.63,26.38,25.830000000000002,25.61,25.39,25.2,25.01,24.82,24.64,24.28,N/A,N/A +2012,8,23,12,30,101570,100420,99300,85.57000000000001,0.4,6.93,7.390000000000001,7.48,7.5200000000000005,7.54,7.54,7.54,7.5200000000000005,7.48,166.65,167.36,167.76,168.15,168.58,169.01,169.58,170.13,171.75,26.41,25.94,25.75,25.55,25.35,25.17,24.98,24.810000000000002,24.46,N/A,N/A +2012,8,23,13,30,101610,100450,99340,79.06,0,5.18,5.5,5.5600000000000005,5.6000000000000005,5.62,5.64,5.66,5.67,5.69,182.26,182.69,182.77,182.88,182.98,183.08,183.20000000000002,183.33,183.62,27.5,27.1,26.92,26.71,26.52,26.330000000000002,26.13,25.95,25.57,N/A,N/A +2012,8,23,14,30,101610,100460,99350,77.13,0,4.94,5.28,5.37,5.42,5.47,5.5,5.53,5.55,5.6000000000000005,169.44,169.89000000000001,170.21,170.49,170.73,170.95000000000002,171.16,171.36,171.73,28.13,27.75,27.580000000000002,27.37,27.18,26.990000000000002,26.79,26.6,26.22,N/A,N/A +2012,8,23,15,30,101630,100480,99370,74.71000000000001,0,5.57,5.99,6.09,6.15,6.2,6.23,6.2700000000000005,6.29,6.34,188.36,188.59,188.67000000000002,188.77,188.86,188.95000000000002,189.05,189.14000000000001,189.32,28.35,27.98,27.8,27.6,27.41,27.22,27.02,26.84,26.45,N/A,N/A +2012,8,23,16,30,101620,100470,99360,73.10000000000001,0,4.95,5.3100000000000005,5.4,5.45,5.49,5.53,5.55,5.58,5.62,184.87,185.1,185.22,185.35,185.45000000000002,185.55,185.65,185.73,185.89000000000001,28.64,28.29,28.11,27.91,27.72,27.53,27.330000000000002,27.14,26.76,N/A,N/A +2012,8,23,17,30,101630,100480,99370,77.51,0.7000000000000001,6.4,6.76,6.8100000000000005,6.83,6.83,6.83,6.83,6.82,6.82,200.92000000000002,201.69,202.01,202.28,202.51,202.70000000000002,202.87,203.01,203.17000000000002,28.03,27.650000000000002,27.47,27.28,27.1,26.91,26.73,26.55,26.2,N/A,N/A +2012,8,23,18,30,101620,100470,99360,75.51,0,6.2700000000000005,6.72,6.78,6.8100000000000005,6.82,6.82,6.8100000000000005,6.8,6.78,218.61,217.76,217.28,216.8,216.38,215.98000000000002,215.59,215.21,214.48000000000002,28.51,28.14,27.97,27.77,27.57,27.39,27.19,27,26.62,N/A,N/A +2012,8,23,19,30,101650,100500,99380,80.9,0.4,3.42,3.5,3.49,3.46,3.42,3.37,3.29,3.22,2.96,248.15,247.66,247.39000000000001,247.12,246.85,246.57,246.21,245.84,244.34,27.1,26.7,26.51,26.310000000000002,26.13,25.95,25.76,25.580000000000002,25.240000000000002,N/A,N/A +2012,8,23,20,30,101590,100430,99320,82.65,0,1.28,1.17,1.11,1.07,1.05,1.04,1.06,1.08,1.18,328.82,318.48,311.97,304.37,297.13,289.91,282.67,275.76,262.89,27.2,26.830000000000002,26.66,26.47,26.29,26.11,25.92,25.75,25.400000000000002,N/A,N/A +2012,8,23,21,30,101530,100380,99270,80,0,1.8900000000000001,2.17,2.29,2.41,2.52,2.62,2.71,2.8000000000000003,2.96,159.26,163.17000000000002,165.14000000000001,166.68,167.93,168.97,169.86,170.65,171.96,27.92,27.57,27.39,27.2,27.01,26.82,26.63,26.45,26.080000000000002,N/A,N/A +2012,8,23,22,30,101520,100370,99260,74.43,0,3.67,3.96,4.04,4.11,4.17,4.22,4.2700000000000005,4.32,4.41,169.13,168.97,168.91,168.88,168.84,168.8,168.77,168.73,168.67000000000002,28.39,28.04,27.87,27.67,27.48,27.3,27.1,26.92,26.55,N/A,N/A +2012,8,23,23,30,101470,100330,99220,71.49,0,3.5500000000000003,3.86,3.97,4.0600000000000005,4.14,4.21,4.28,4.34,4.46,175.86,175.23,174.96,174.74,174.56,174.4,174.25,174.11,173.86,28.67,28.34,28.18,27.98,27.8,27.61,27.42,27.240000000000002,26.86,N/A,N/A +2012,8,24,0,30,101440,100290,99180,61.75,0,5.22,5.61,5.66,5.69,5.71,5.72,5.72,5.72,5.72,160.03,160.11,160.20000000000002,160.25,160.27,160.3,160.31,160.31,160.3,29.13,28.82,28.650000000000002,28.45,28.27,28.080000000000002,27.88,27.7,27.32,N/A,N/A +2012,8,24,1,30,101440,100300,99190,61.95,0,6,6.55,6.66,6.73,6.78,6.8100000000000005,6.8500000000000005,6.87,6.91,159.69,159.61,159.61,159.6,159.6,159.59,159.58,159.56,159.54,29.1,28.78,28.61,28.41,28.22,28.03,27.84,27.650000000000002,27.26,N/A,N/A +2012,8,24,2,30,101430,100280,99170,66.46000000000001,0,6.8100000000000005,7.3500000000000005,7.46,7.5200000000000005,7.55,7.57,7.58,7.59,7.59,156.34,156.21,156.16,156.14000000000001,156.12,156.11,156.1,156.09,156.08,28.89,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.04,N/A,N/A +2012,8,24,3,30,101410,100270,99160,65.3,0,6.2,6.72,6.86,6.95,7.03,7.09,7.140000000000001,7.19,7.29,161.19,160.49,160.11,159.72,159.39000000000001,159.07,158.77,158.48,157.94,28.93,28.61,28.44,28.25,28.060000000000002,27.87,27.68,27.5,27.12,N/A,N/A +2012,8,24,4,30,101380,100240,99130,66.05,0,5.49,5.98,6.11,6.21,6.28,6.3500000000000005,6.41,6.46,6.5600000000000005,158.19,158.29,158.26,158.21,158.15,158.09,158.02,157.96,157.81,28.94,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,8,24,5,30,101380,100240,99130,72.33,0,5.4,5.84,5.94,6.01,6.0600000000000005,6.09,6.13,6.15,6.2,163.57,163.09,162.76,162.45000000000002,162.19,161.94,161.71,161.5,161.09,28.8,28.46,28.29,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.96,N/A,N/A +2012,8,24,6,30,101380,100240,99130,80.44,0,6.78,7.34,7.46,7.53,7.58,7.61,7.63,7.65,7.67,168.66,168.58,168.54,168.5,168.46,168.43,168.39000000000001,168.35,168.28,28.330000000000002,27.96,27.78,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.42,N/A,N/A +2012,8,24,7,30,101400,100260,99150,75.81,0,5.6000000000000005,6.12,6.25,6.36,6.45,6.5200000000000005,6.58,6.640000000000001,6.75,176.03,176.38,176.64000000000001,176.9,177.12,177.32,177.51,177.68,177.99,28.66,28.32,28.150000000000002,27.96,27.77,27.59,27.400000000000002,27.22,26.85,N/A,N/A +2012,8,24,8,30,101410,100260,99160,75.91,0,6.07,6.5200000000000005,6.63,6.69,6.74,6.78,6.8100000000000005,6.83,6.88,192.02,192.57,192.85,193.12,193.37,193.59,193.81,194.02,194.43,28.64,28.29,28.12,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A +2012,8,24,9,30,101420,100270,99160,76.99,0,6.5,6.99,7.1000000000000005,7.15,7.18,7.2,7.21,7.21,7.2,211.31,210.52,209.97,209.43,208.97,208.53,208.11,207.72,206.98000000000002,28.69,28.35,28.17,27.97,27.78,27.580000000000002,27.39,27.2,26.810000000000002,N/A,N/A +2012,8,24,10,30,101410,100270,99160,74.97,0,6.93,7.57,7.71,7.79,7.8500000000000005,7.88,7.91,7.930000000000001,7.94,199.58,199.26,199.14000000000001,199.05,198.98000000000002,198.92000000000002,198.88,198.83,198.76,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.1,N/A,N/A +2012,8,24,11,30,101430,100290,99180,73.41,0,6.26,6.8,6.94,7.0200000000000005,7.08,7.13,7.17,7.2,7.25,198.59,198.51,198.55,198.6,198.65,198.70000000000002,198.75,198.81,198.92000000000002,28.97,28.650000000000002,28.48,28.28,28.1,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A +2012,8,24,12,30,101420,100270,99170,74.65,0,5.61,6.05,6.16,6.22,6.2700000000000005,6.3,6.33,6.3500000000000005,6.38,206.37,206.13,206.03,205.92000000000002,205.83,205.74,205.65,205.57,205.41,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.36,26.98,N/A,N/A +2012,8,24,13,30,101420,100280,99170,76.3,0,5.2700000000000005,5.69,5.79,5.8500000000000005,5.9,5.93,5.96,5.98,6.01,211.24,211.37,211.42000000000002,211.47,211.52,211.57,211.63,211.69,211.81,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A +2012,8,24,14,30,101470,100320,99220,75.15,0,5.07,5.42,5.47,5.5,5.51,5.51,5.5,5.49,5.47,214.16,214.16,214.27,214.38,214.47,214.55,214.64000000000001,214.71,214.86,28.79,28.45,28.29,28.080000000000002,27.900000000000002,27.7,27.51,27.32,26.94,N/A,N/A +2012,8,24,15,30,101450,100310,99200,70.08,0,5.1000000000000005,5.43,5.5,5.53,5.55,5.5600000000000005,5.58,5.58,5.6000000000000005,234.08,233.74,233.52,233.31,233.13,232.96,232.79,232.63,232.33,28.990000000000002,28.67,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.560000000000002,27.18,N/A,N/A +2012,8,24,16,30,101460,100320,99210,74.06,0,3.17,3.36,3.4,3.42,3.44,3.46,3.47,3.49,3.5100000000000002,221.4,220.94,220.6,220.27,219.96,219.65,219.35,219.08,218.51,28.77,28.43,28.25,28.05,27.86,27.68,27.48,27.29,26.91,N/A,N/A +2012,8,24,17,30,101450,100310,99200,73.47,0,3.12,3.31,3.36,3.39,3.42,3.44,3.46,3.47,3.5,198.54,198.72,198.78,198.84,198.9,198.96,199.02,199.08,199.22,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,8,24,18,30,101490,100340,99220,83.93,0,11.09,12.13,12.32,12.4,12.43,12.43,12.4,12.370000000000001,12.25,164.44,164.68,164.70000000000002,164.71,164.72,164.74,164.76,164.77,164.82,27.36,26.89,26.68,26.47,26.27,26.080000000000002,25.88,25.7,25.330000000000002,N/A,N/A +2012,8,24,19,30,101450,100290,99170,87.06,0,9.91,10.67,10.8,10.83,10.83,10.81,10.76,10.71,10.55,173.06,173.56,173.83,174.12,174.41,174.70000000000002,175.06,175.4,176.34,26.57,26.080000000000002,25.88,25.68,25.490000000000002,25.310000000000002,25.13,24.96,24.64,N/A,N/A +2012,8,24,20,30,101420,100270,99160,77.05,0,8.75,9.46,9.620000000000001,9.700000000000001,9.76,9.790000000000001,9.82,9.84,9.870000000000001,187.31,187.48,187.59,187.72,187.85,187.99,188.16,188.33,188.78,27.42,26.990000000000002,26.810000000000002,26.61,26.43,26.25,26.060000000000002,25.89,25.55,N/A,N/A +2012,8,24,21,30,101390,100240,99120,83.03,0,7.78,8.39,8.52,8.59,8.64,8.67,8.69,8.71,8.73,179.75,180.05,180.27,180.49,180.71,180.93,181.15,181.36,181.86,27.29,26.85,26.66,26.45,26.26,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,8,24,22,30,101390,100240,99130,77.34,0,8.6,9.32,9.48,9.56,9.620000000000001,9.66,9.68,9.700000000000001,9.71,194.70000000000002,194.65,194.59,194.53,194.47,194.43,194.37,194.32,194.19,27.96,27.560000000000002,27.38,27.18,26.98,26.79,26.6,26.41,26.03,N/A,N/A +2012,8,24,23,30,101350,100210,99100,72.91,0,6.49,6.99,7.1000000000000005,7.16,7.2,7.23,7.26,7.28,7.3100000000000005,184.79,184.67000000000002,184.64000000000001,184.59,184.55,184.51,184.47,184.42000000000002,184.31,28.35,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.05,26.87,26.490000000000002,N/A,N/A +2012,8,25,0,30,101310,100170,99060,71.49,0,6.5600000000000005,7.1000000000000005,7.21,7.28,7.32,7.3500000000000005,7.38,7.4,7.43,172.97,173,173.06,173.11,173.16,173.19,173.24,173.28,173.35,28.52,28.17,27.990000000000002,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A +2012,8,25,1,30,101270,100130,99020,76.45,0,6.24,6.75,6.87,6.94,6.99,7.03,7.07,7.1000000000000005,7.15,157.76,157.71,157.71,157.71,157.70000000000002,157.69,157.67000000000002,157.66,157.64000000000001,28.43,28.060000000000002,27.89,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,8,25,2,30,101280,100140,99030,81.33,0,6.99,7.5600000000000005,7.68,7.74,7.78,7.8100000000000005,7.83,7.8500000000000005,7.86,150.28,150.93,151.31,151.67000000000002,152,152.31,152.62,152.91,153.49,28.25,27.88,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.35,N/A,N/A +2012,8,25,3,30,101270,100130,99020,80.71000000000001,0,7.390000000000001,8.03,8.17,8.26,8.31,8.36,8.38,8.41,8.44,155.5,155.57,155.62,155.67000000000002,155.72,155.77,155.82,155.87,155.97,28.310000000000002,27.93,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A +2012,8,25,4,30,101290,100150,99040,78.93,0,7.11,7.74,7.92,8.040000000000001,8.13,8.21,8.28,8.34,8.46,151.84,152.51,152.78,153.03,153.25,153.46,153.65,153.84,154.19,28.55,28.21,28.04,27.84,27.66,27.47,27.28,27.1,26.73,N/A,N/A +2012,8,25,5,30,101280,100140,99040,75.63,0,8.21,9.02,9.22,9.34,9.43,9.5,9.55,9.59,9.66,157.46,157.97,158.15,158.29,158.4,158.49,158.57,158.63,158.72,29.05,28.73,28.57,28.37,28.19,28,27.8,27.62,27.240000000000002,N/A,N/A +2012,8,25,6,30,101260,100120,99010,75.67,0,7.04,7.8,7.99,8.11,8.21,8.290000000000001,8.35,8.4,8.49,162.13,162.29,162.4,162.52,162.62,162.72,162.82,162.9,163.08,29.1,28.8,28.63,28.44,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,25,7,30,101300,100160,99050,79.4,0,8.42,9.17,9.35,9.450000000000001,9.52,9.57,9.61,9.65,9.72,161.32,161.47,161.53,161.6,161.69,161.76,161.86,161.95000000000002,162.17000000000002,28.44,28.1,27.93,27.740000000000002,27.560000000000002,27.38,27.19,27.02,26.67,N/A,N/A +2012,8,25,8,30,101320,100170,99060,83.19,0,8.46,9.27,9.46,9.57,9.64,9.700000000000001,9.73,9.76,9.8,170.34,170.51,170.58,170.66,170.71,170.76,170.81,170.86,170.95000000000002,28.28,27.92,27.740000000000002,27.54,27.35,27.150000000000002,26.96,26.78,26.39,N/A,N/A +2012,8,25,9,30,101340,100200,99090,83.29,0,8.13,8.870000000000001,9.040000000000001,9.14,9.200000000000001,9.24,9.27,9.290000000000001,9.31,167.79,168.18,168.39000000000001,168.59,168.77,168.94,169.1,169.25,169.55,28.51,28.16,27.990000000000002,27.79,27.6,27.400000000000002,27.21,27.02,26.64,N/A,N/A +2012,8,25,10,30,101320,100180,99070,83.25,0,6.46,7,7.12,7.19,7.24,7.28,7.3,7.33,7.37,170.18,170.39000000000001,170.5,170.6,170.68,170.75,170.83,170.9,171.06,28.44,28.09,27.92,27.72,27.54,27.35,27.16,26.97,26.6,N/A,N/A +2012,8,25,11,30,101330,100190,99080,83.28,0,8.07,8.81,8.96,9.03,9.09,9.120000000000001,9.14,9.16,9.17,160.28,160.36,160.48,160.6,160.72,160.85,160.98,161.1,161.38,28.51,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.650000000000002,N/A,N/A +2012,8,25,12,30,101360,100220,99110,78.97,0,7.5200000000000005,8.21,8.38,8.48,8.55,8.61,8.65,8.69,8.75,158.6,159.13,159.41,159.69,159.93,160.16,160.39000000000001,160.6,161.02,28.79,28.47,28.3,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A +2012,8,25,13,30,101370,100230,99120,80.31,0,6.83,7.6000000000000005,7.8100000000000005,7.96,8.08,8.17,8.25,8.31,8.42,164.25,164.26,164.26,164.28,164.29,164.32,164.36,164.39000000000001,164.48,28.8,28.490000000000002,28.32,28.13,27.94,27.75,27.560000000000002,27.38,27,N/A,N/A +2012,8,25,14,30,101390,100250,99140,80.04,0,6.92,7.59,7.76,7.87,7.96,8.02,8.08,8.13,8.21,165.44,165.5,165.47,165.43,165.38,165.33,165.27,165.22,165.1,28.79,28.47,28.3,28.1,27.91,27.72,27.53,27.35,26.97,N/A,N/A +2012,8,25,15,30,101390,100240,99140,79.82000000000001,0,7.5200000000000005,8.24,8.4,8.5,8.57,8.620000000000001,8.66,8.69,8.73,163.03,162.96,162.93,162.91,162.89000000000001,162.88,162.88,162.88,162.87,28.900000000000002,28.580000000000002,28.41,28.21,28.03,27.84,27.64,27.46,27.080000000000002,N/A,N/A +2012,8,25,16,30,101430,100280,99180,78.47,0,7.21,7.86,8.01,8.09,8.15,8.19,8.23,8.26,8.3,159.69,159.92000000000002,160,160.08,160.14000000000001,160.19,160.23,160.28,160.36,28.98,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A +2012,8,25,17,30,101410,100260,99160,79.2,0,7.5600000000000005,8.31,8.5,8.61,8.69,8.75,8.8,8.84,8.9,161.65,161.47,161.43,161.39000000000001,161.35,161.32,161.28,161.25,161.20000000000002,28.96,28.63,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A +2012,8,25,18,30,101380,100240,99140,80.86,0,8,8.74,8.9,8.98,9.040000000000001,9.07,9.09,9.1,9.11,157.96,158.08,158.09,158.11,158.14000000000001,158.17000000000002,158.21,158.25,158.35,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.5,27.12,N/A,N/A +2012,8,25,19,30,101390,100250,99140,80.27,0,9.27,10.16,10.38,10.48,10.55,10.58,10.61,10.61,10.61,149.46,149.59,149.65,149.67000000000002,149.68,149.68,149.67000000000002,149.67000000000002,149.65,28.93,28.62,28.45,28.25,28.07,27.88,27.69,27.5,27.13,N/A,N/A +2012,8,25,20,30,101360,100220,99110,82.2,0,8.98,9.89,10.1,10.23,10.31,10.36,10.4,10.43,10.450000000000001,162.47,162.56,162.56,162.57,162.58,162.6,162.62,162.64000000000001,162.69,28.87,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.43,27.04,N/A,N/A +2012,8,25,21,30,101380,100240,99130,81.23,0,9.07,9.88,10.05,10.13,10.18,10.21,10.22,10.22,10.23,165.85,165.79,165.78,165.75,165.73,165.71,165.71,165.71,165.68,28.87,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A +2012,8,25,22,30,101440,100290,99170,87.60000000000001,0,9.63,10.28,10.47,10.52,10.55,10.56,10.57,10.6,10.84,208.42000000000002,207.88,207.65,207.25,206.82,206.27,205.59,204.84,202.44,26.13,25.67,25.490000000000002,25.310000000000002,25.17,25.03,24.92,24.82,24.78,N/A,N/A +2012,8,25,23,30,101410,100260,99140,86.60000000000001,0,5.86,6.3100000000000005,6.41,6.49,6.5600000000000005,6.65,6.78,6.92,7.79,178.8,178.53,178.72,178.87,179.01,179.14000000000001,179.3,179.47,179.84,26.6,26.2,26.02,25.84,25.67,25.51,25.37,25.23,25.18,N/A,N/A +2012,8,26,0,30,101350,100200,99090,87.36,0,7.2700000000000005,7.75,7.82,7.84,7.83,7.8100000000000005,7.78,7.74,7.66,157.52,158.02,158.48,158.98,159.48,159.98,160.57,161.14000000000001,162.58,27.03,26.61,26.42,26.22,26.03,25.84,25.650000000000002,25.48,25.11,N/A,N/A +2012,8,26,1,30,101390,100240,99130,77.10000000000001,0,5.13,5.49,5.58,5.63,5.67,5.7,5.73,5.7700000000000005,5.8500000000000005,138.96,139.29,139.45000000000002,139.62,139.79,139.96,140.17000000000002,140.39000000000001,141,27.84,27.48,27.3,27.1,26.92,26.73,26.54,26.36,25.990000000000002,N/A,N/A +2012,8,26,2,30,101400,100250,99130,90.89,0,9.01,9.69,9.76,9.75,9.700000000000001,9.64,9.55,9.46,9.23,109.60000000000001,110.33,110.68,111.03,111.38,111.72,112.08,112.42,113.19,27.01,26.560000000000002,26.37,26.17,25.98,25.8,25.61,25.44,25.080000000000002,N/A,N/A +2012,8,26,3,30,101390,100240,99130,89.02,0,7.890000000000001,8.45,8.540000000000001,8.56,8.56,8.55,8.51,8.48,8.39,139.34,139.79,140.04,140.31,140.59,140.88,141.23,141.56,142.5,27.07,26.63,26.45,26.25,26.07,25.89,25.7,25.53,25.19,N/A,N/A +2012,8,26,4,30,101410,100270,99160,85.77,0,7.94,8.61,8.76,8.84,8.89,8.93,8.950000000000001,8.97,8.99,134.22,134.42000000000002,134.59,134.77,134.94,135.11,135.3,135.46,135.83,27.72,27.32,27.13,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A +2012,8,26,5,30,101420,100270,99160,85.43,0,8.38,9.14,9.33,9.44,9.52,9.57,9.620000000000001,9.65,9.700000000000001,137.6,137.88,137.95000000000002,138.03,138.1,138.17000000000002,138.23,138.29,138.43,27.98,27.6,27.41,27.21,27.01,26.82,26.63,26.44,26.05,N/A,N/A +2012,8,26,6,30,101420,100270,99160,82.02,0,9.6,10.34,10.41,10.4,10.35,10.290000000000001,10.200000000000001,10.1,9.89,164.75,164.59,164.18,163.70000000000002,163.22,162.72,162.17000000000002,161.64000000000001,160.43,27.64,27.22,27.04,26.85,26.67,26.490000000000002,26.310000000000002,26.14,25.8,N/A,N/A +2012,8,26,7,30,101490,100340,99230,86.48,0,7.46,8.07,8.21,8.290000000000001,8.35,8.4,8.43,8.46,8.52,141.23,141.22,141.17000000000002,141.11,141.04,140.98,140.9,140.82,140.65,27.76,27.37,27.19,26.990000000000002,26.79,26.61,26.42,26.23,25.86,N/A,N/A +2012,8,26,8,30,101440,100300,99190,79.58,0,6.7700000000000005,7.32,7.44,7.51,7.55,7.58,7.6000000000000005,7.61,7.63,137.54,137.44,137.4,137.37,137.33,137.31,137.28,137.25,137.23,28.29,27.93,27.76,27.560000000000002,27.36,27.18,26.98,26.79,26.41,N/A,N/A +2012,8,26,9,30,101470,100330,99220,80.57000000000001,0,6.9,7.49,7.63,7.7,7.76,7.8,7.82,7.8500000000000005,7.87,137.23,137.37,137.46,137.54,137.61,137.68,137.76,137.82,137.96,28.39,28.04,27.86,27.66,27.47,27.28,27.080000000000002,26.89,26.51,N/A,N/A +2012,8,26,10,30,101510,100360,99260,82.52,0,6.51,7.1000000000000005,7.24,7.33,7.390000000000001,7.44,7.48,7.5,7.55,133.06,133.03,133,132.98,132.96,132.94,132.92000000000002,132.91,132.87,28.45,28.1,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A +2012,8,26,11,30,101540,100390,99290,78.71000000000001,0,7.38,8.06,8.22,8.32,8.38,8.43,8.46,8.49,8.52,129.76,129.96,130.08,130.2,130.31,130.4,130.49,130.58,130.75,28.71,28.38,28.21,28.01,27.810000000000002,27.62,27.43,27.240000000000002,26.85,N/A,N/A +2012,8,26,12,30,101540,100390,99290,77.65,0,7.3100000000000005,7.94,8.07,8.120000000000001,8.16,8.18,8.19,8.19,8.17,133.74,134.04,134.17000000000002,134.31,134.43,134.55,134.67000000000002,134.78,135,28.7,28.37,28.2,28,27.810000000000002,27.62,27.42,27.240000000000002,26.85,N/A,N/A +2012,8,26,13,30,101620,100470,99360,71.67,0,6.0600000000000005,6.5600000000000005,6.67,6.73,6.7700000000000005,6.8,6.8100000000000005,6.83,6.8500000000000005,138.04,137.84,137.77,137.70000000000002,137.65,137.59,137.54,137.5,137.41,28.95,28.64,28.47,28.27,28.080000000000002,27.900000000000002,27.7,27.51,27.13,N/A,N/A +2012,8,26,14,30,101640,100490,99380,71.32000000000001,0,5.5600000000000005,6.0200000000000005,6.12,6.17,6.2,6.23,6.25,6.2700000000000005,6.29,141.57,141.16,140.98,140.81,140.66,140.51,140.38,140.24,139.99,28.93,28.61,28.44,28.25,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,8,26,15,30,101690,100540,99430,73.01,0,4.7700000000000005,5.1000000000000005,5.15,5.17,5.17,5.17,5.17,5.16,5.13,130.14000000000001,130.24,130.32,130.4,130.48,130.56,130.64000000000001,130.71,130.86,28.830000000000002,28.5,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.37,26.990000000000002,N/A,N/A +2012,8,26,16,30,101690,100540,99430,67.27,0,4.54,4.78,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8,4.78,4.7700000000000005,4.74,120.37,120.52,120.7,120.88,121.02,121.16,121.3,121.42,121.64,29,28.68,28.51,28.310000000000002,28.11,27.93,27.73,27.54,27.16,N/A,N/A +2012,8,26,17,30,101680,100530,99420,69.72,0,3.5700000000000003,3.83,3.89,3.93,3.96,3.98,3.99,4.01,4.03,112.96000000000001,113.32000000000001,113.49000000000001,113.64,113.76,113.85000000000001,113.95,114.04,114.21000000000001,28.96,28.63,28.46,28.26,28.07,27.88,27.68,27.5,27.11,N/A,N/A +2012,8,26,18,30,101680,100540,99420,68.11,0,3.58,3.8000000000000003,3.84,3.86,3.88,3.89,3.9,3.9,3.91,116.06,116.21000000000001,116.35000000000001,116.49000000000001,116.60000000000001,116.72,116.82000000000001,116.91,117.12,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A +2012,8,26,19,30,101680,100530,99420,64.57000000000001,0,2.82,3.02,3.08,3.13,3.16,3.19,3.22,3.24,3.29,117.01,117.10000000000001,117.22,117.33,117.42,117.5,117.58,117.66,117.83,29.19,28.87,28.69,28.5,28.3,28.11,27.92,27.73,27.35,N/A,N/A +2012,8,26,20,30,101620,100480,99370,71.79,0,3.91,4.21,4.28,4.33,4.37,4.41,4.44,4.46,4.51,121.22,121.37,121.5,121.63,121.77,121.89,122.02,122.14,122.39,28.94,28.59,28.42,28.22,28.03,27.84,27.64,27.45,27.07,N/A,N/A +2012,8,26,21,30,101580,100430,99320,70.38,0,3.73,4,4.0600000000000005,4.1,4.13,4.15,4.17,4.18,4.21,115.34,115.8,115.94,116.06,116.18,116.28,116.37,116.44,116.60000000000001,28.98,28.66,28.490000000000002,28.29,28.1,27.91,27.71,27.53,27.14,N/A,N/A +2012,8,26,22,30,101540,100390,99280,72.95,0,4.93,5.26,5.3,5.3100000000000005,5.32,5.32,5.3100000000000005,5.3,5.2700000000000005,123.55,122.96000000000001,122.69,122.4,122.14,121.89,121.63,121.4,120.91,28.92,28.59,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A +2012,8,26,23,30,101540,100390,99280,72.41,0,3.87,4.15,4.2,4.23,4.25,4.26,4.2700000000000005,4.28,4.29,109.62,109.71000000000001,109.77,109.83,109.89,109.94,110,110.06,110.19,28.91,28.6,28.43,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,8,27,0,30,101540,100390,99280,77.98,0,5.36,5.7700000000000005,5.8500000000000005,5.89,5.92,5.93,5.94,5.94,5.94,105.86,106.57000000000001,106.9,107.22,107.5,107.76,108,108.24000000000001,108.68,28.7,28.37,28.2,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,8,27,1,30,101480,100330,99220,78.68,0,4.5,4.8100000000000005,4.87,4.9,4.91,4.92,4.93,4.93,4.92,113.2,113.31,113.39,113.46000000000001,113.53,113.59,113.65,113.71000000000001,113.82000000000001,28.52,28.19,28.01,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A +2012,8,27,2,30,101510,100360,99250,79.67,0,5.29,5.65,5.71,5.74,5.75,5.75,5.75,5.74,5.72,124.59,124.52,124.47,124.42,124.38000000000001,124.34,124.29,124.25,124.18,28.46,28.12,27.94,27.75,27.560000000000002,27.36,27.17,26.98,26.6,N/A,N/A +2012,8,27,3,30,101500,100350,99240,81.74,0,4.74,5.07,5.13,5.16,5.18,5.19,5.19,5.19,5.19,120.54,120.69,120.77,120.84,120.89,120.92,120.96000000000001,121.01,121.08,28.36,28.01,27.84,27.64,27.45,27.26,27.07,26.88,26.5,N/A,N/A +2012,8,27,4,30,101490,100350,99240,78.78,0,4.3,4.58,4.64,4.66,4.68,4.69,4.7,4.7,4.7,119.59,119.89,120.05,120.2,120.34,120.48,120.61,120.74000000000001,120.99000000000001,28.400000000000002,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A +2012,8,27,5,30,101490,100340,99230,79.81,0,3.64,3.85,3.89,3.9,3.9,3.9,3.89,3.89,3.86,122.83,122.86,122.81,122.74000000000001,122.68,122.61,122.54,122.47,122.31,28.330000000000002,27.98,27.810000000000002,27.61,27.42,27.23,27.03,26.85,26.46,N/A,N/A +2012,8,27,6,30,101510,100360,99250,78.32000000000001,0,2.41,2.54,2.56,2.57,2.57,2.58,2.58,2.58,2.58,109.71000000000001,110.22,110.36,110.5,110.62,110.73,110.84,110.94,111.15,28.3,27.95,27.78,27.580000000000002,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A +2012,8,27,7,30,101530,100380,99270,74.06,0,2.24,2.38,2.41,2.44,2.46,2.48,2.49,2.5100000000000002,2.54,97.24000000000001,98.03,98.55,99.04,99.49000000000001,99.9,100.32000000000001,100.71000000000001,101.48,28.37,28.03,27.86,27.66,27.47,27.28,27.080000000000002,26.900000000000002,26.52,N/A,N/A +2012,8,27,8,30,101550,100400,99290,71.2,0,2.4,2.5,2.5,2.49,2.49,2.48,2.47,2.46,2.44,117.21000000000001,116.60000000000001,116.25,115.88,115.54,115.2,114.85000000000001,114.53,113.83,28.43,28.09,27.92,27.72,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,8,27,9,30,101550,100400,99290,71.3,0,1.3900000000000001,1.49,1.51,1.54,1.56,1.58,1.6,1.61,1.6500000000000001,103.74000000000001,103.82000000000001,103.92,104.05,104.15,104.23,104.31,104.39,104.57000000000001,28.39,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A +2012,8,27,10,30,101560,100410,99300,68.41,0,0.99,1.04,1.05,1.06,1.07,1.08,1.08,1.09,1.1,45.75,44.57,44.27,43.980000000000004,43.71,43.46,43.21,42.99,42.51,28.51,28.18,28.01,27.810000000000002,27.62,27.43,27.23,27.05,26.66,N/A,N/A +2012,8,27,11,30,101570,100420,99310,66.78,0,1.8900000000000001,1.94,1.94,1.93,1.92,1.9100000000000001,1.9000000000000001,1.8900000000000001,1.86,40.08,40.89,41.49,42.07,42.61,43.14,43.68,44.19,45.29,28.53,28.2,28.03,27.84,27.650000000000002,27.46,27.26,27.080000000000002,26.69,N/A,N/A +2012,8,27,12,30,101590,100440,99330,66.7,0,2.95,3.09,3.11,3.11,3.11,3.11,3.1,3.1,3.09,25.310000000000002,24.900000000000002,24.71,24.53,24.37,24.23,24.080000000000002,23.94,23.68,28.61,28.28,28.11,27.92,27.73,27.54,27.34,27.16,26.77,N/A,N/A +2012,8,27,13,30,101610,100460,99350,79.92,0,4.75,4.99,5.0200000000000005,5.01,5,4.98,4.96,4.93,4.87,25.150000000000002,25.34,25.51,25.68,25.84,26,26.17,26.34,26.71,27.830000000000002,27.45,27.27,27.07,26.88,26.69,26.490000000000002,26.310000000000002,25.93,N/A,N/A +2012,8,27,14,30,101640,100480,99370,79.53,0,4.46,4.68,4.69,4.68,4.67,4.64,4.62,4.59,4.53,19.79,19.77,19.8,19.830000000000002,19.85,19.87,19.89,19.900000000000002,19.93,27.69,27.32,27.14,26.94,26.740000000000002,26.560000000000002,26.36,26.18,25.8,N/A,N/A +2012,8,27,15,30,101620,100470,99360,77.95,0,4.14,4.36,4.39,4.4,4.4,4.39,4.38,4.37,4.3500000000000005,13.540000000000001,13.35,13.24,13.120000000000001,13,12.88,12.74,12.61,12.3,27.77,27.39,27.21,27.02,26.82,26.63,26.44,26.26,25.88,N/A,N/A +2012,8,27,16,30,101620,100470,99360,72.28,0,3.74,3.97,4.0200000000000005,4.0600000000000005,4.08,4.1,4.12,4.13,4.16,16.81,16.45,16.17,15.89,15.620000000000001,15.35,15.07,14.8,14.18,28.2,27.85,27.67,27.48,27.29,27.1,26.900000000000002,26.72,26.34,N/A,N/A +2012,8,27,17,30,101570,100420,99310,68.86,0,2.4,2.5300000000000002,2.56,2.58,2.6,2.62,2.64,2.66,2.7,26.09,24.8,24.09,23.38,22.72,22.080000000000002,21.43,20.830000000000002,19.56,28.57,28.23,28.060000000000002,27.86,27.67,27.490000000000002,27.29,27.11,26.740000000000002,N/A,N/A +2012,8,27,18,30,101510,100360,99250,68.04,0,1.17,1.24,1.27,1.28,1.31,1.32,1.35,1.37,1.42,11.82,9.96,8.9,7.9,7,6.16,5.3100000000000005,4.49,2.89,28.78,28.44,28.27,28.07,27.88,27.7,27.5,27.32,26.95,N/A,N/A +2012,8,27,19,30,101470,100330,99220,67.17,0,1.02,1.06,1.07,1.07,1.08,1.09,1.1,1.11,1.1400000000000001,245.58,249.66,252.03,254.53,256.92,259.29,261.87,264.4,270.24,29.05,28.71,28.54,28.35,28.16,27.97,27.79,27.61,27.240000000000002,N/A,N/A +2012,8,27,20,30,101390,100250,99140,67.34,0,1.92,1.94,1.92,1.8900000000000001,1.85,1.82,1.78,1.73,1.6300000000000001,220.66,222,222.89000000000001,223.91,225.01,226.16,227.71,229.29,234.49,29.19,28.85,28.68,28.48,28.3,28.11,27.92,27.75,27.39,N/A,N/A +2012,8,27,21,30,101310,100170,99070,66.58,0,1.34,1.3,1.25,1.19,1.12,1.06,0.97,0.88,0.89,196.77,199.56,201.51,204.02,207.32,211.08,218.47,226.23000000000002,272.33,29.42,29.09,28.93,28.740000000000002,28.57,28.400000000000002,28.23,28.080000000000002,27.86,N/A,N/A +2012,8,27,22,30,101280,100140,99040,66.86,0,1.93,2.15,2.24,2.33,2.41,2.49,2.58,2.66,2.81,276.2,280.06,282.1,283.99,285.67,287.25,288.72,290.1,292.66,29.67,29.35,29.19,28.990000000000002,28.8,28.62,28.42,28.23,27.85,N/A,N/A +2012,8,27,23,30,101220,100080,98980,72.2,0,2.34,2.57,2.63,2.69,2.73,2.7800000000000002,2.83,2.87,2.96,300.98,303.15000000000003,304.39,305.48,306.44,307.31,308.15000000000003,308.95,310.42,29.75,29.46,29.3,29.11,28.93,28.740000000000002,28.55,28.37,28,N/A,N/A +2012,8,28,0,30,101200,100060,98960,75.64,0,6.83,7.3500000000000005,7.37,7.32,7.25,7.17,7.0600000000000005,6.95,6.69,335.29,335.31,335.25,335.16,335.05,334.93,334.78000000000003,334.63,334.21,29.37,29.07,28.92,28.73,28.560000000000002,28.38,28.2,28.03,27.69,N/A,N/A +2012,8,28,1,30,101190,100050,98950,73.8,0,6.67,7.2,7.28,7.3100000000000005,7.3500000000000005,7.41,7.66,7.98,8.11,331.96,332.36,332.65000000000003,333.02,333.51,334.12,335.42,336.98,338.43,29.55,29.3,29.16,29,28.85,28.72,28.67,28.66,28.51,N/A,N/A +2012,8,28,2,30,101180,100040,98940,72.92,0,6.13,6.63,6.71,6.74,6.7700000000000005,6.79,6.84,6.9,7.6000000000000005,336.85,337.13,337.27,337.46,337.71,338.02,338.64,339.33,347.63,29.38,29.1,28.95,28.77,28.61,28.44,28.3,28.16,28.29,N/A,N/A +2012,8,28,3,30,101150,100010,98910,75.08,0,6.0200000000000005,6.5,6.58,6.61,6.65,6.68,6.78,6.88,7.84,348.14,348.56,348.85,349.22,349.67,350.2,351.13,352.17,359.22,29.29,29,28.85,28.67,28.5,28.330000000000002,28.19,28.05,28.150000000000002,N/A,N/A +2012,8,28,4,30,101130,99990,98890,75.87,0,6.01,6.5200000000000005,6.62,6.67,6.71,6.74,6.78,6.82,6.97,348.59000000000003,349.13,349.49,349.88,350.29,350.72,351.29,351.86,353.84000000000003,29.18,28.88,28.73,28.54,28.37,28.19,28.01,27.85,27.54,N/A,N/A +2012,8,28,5,30,101130,99990,98880,75.65,0,6.5,7.05,7.140000000000001,7.19,7.22,7.25,7.28,7.33,7.55,357.78000000000003,358.27,358.55,358.91,359.31,359.77,0.44,1.1500000000000001,3.8000000000000003,29.14,28.84,28.68,28.490000000000002,28.310000000000002,28.14,27.96,27.79,27.5,N/A,N/A +2012,8,28,6,30,101120,99980,98870,76.56,0,6.58,7.140000000000001,7.24,7.28,7.32,7.3500000000000005,7.37,7.4,7.5,357.39,358.14,358.54,358.99,359.45,359.93,0.54,1.16,3.08,29.01,28.7,28.54,28.35,28.17,27.990000000000002,27.810000000000002,27.64,27.3,N/A,N/A +2012,8,28,7,30,101110,99970,98870,77.03,0,6.8100000000000005,7.33,7.42,7.45,7.47,7.48,7.5200000000000005,7.5600000000000005,7.96,4.17,4.69,5.04,5.45,5.92,6.45,7.24,8.07,11.92,28.8,28.490000000000002,28.330000000000002,28.150000000000002,27.990000000000002,27.830000000000002,27.68,27.54,27.39,N/A,N/A +2012,8,28,8,30,101080,99940,98840,76.04,0,6.29,6.75,6.82,6.8500000000000005,6.88,6.9,6.95,7.01,7.5200000000000005,3.74,4.2700000000000005,4.66,5.11,5.67,6.32,7.33,8.42,13.43,28.71,28.400000000000002,28.25,28.080000000000002,27.91,27.76,27.62,27.5,27.5,N/A,N/A +2012,8,28,9,30,101090,99950,98840,77.22,0,6.94,7.47,7.57,7.61,7.66,7.7,7.8,7.930000000000001,9.02,6.54,7,7.3100000000000005,7.65,8.05,8.52,9.290000000000001,10.14,14.96,28.47,28.14,27.98,27.8,27.63,27.47,27.330000000000002,27.21,27.330000000000002,N/A,N/A +2012,8,28,10,30,101060,99920,98820,74.24,0,7.09,7.66,7.7700000000000005,7.84,7.9,7.95,8.06,8.18,9.11,11.94,12.31,12.58,12.9,13.280000000000001,13.71,14.38,15.11,18.89,28.6,28.28,28.12,27.95,27.79,27.63,27.5,27.38,27.45,N/A,N/A +2012,8,28,11,30,101080,99940,98830,74.41,0,7.03,7.55,7.640000000000001,7.68,7.7,7.72,7.74,7.76,7.91,358.56,359.27,359.73,0.25,0.8200000000000001,1.42,2.22,3.04,5.83,28.29,27.94,27.78,27.59,27.41,27.240000000000002,27.07,26.91,26.62,N/A,N/A +2012,8,28,12,30,101070,99920,98820,74.51,0,7.99,8.66,8.78,8.84,8.88,8.91,8.93,8.950000000000001,9.02,0.16,0.85,1.27,1.72,2.2,2.7,3.31,3.9,5.57,28.17,27.8,27.63,27.44,27.25,27.080000000000002,26.89,26.72,26.38,N/A,N/A +2012,8,28,13,30,101060,99910,98800,76.98,0,7.47,8.02,8.11,8.15,8.18,8.2,8.23,8.27,8.61,9.040000000000001,9.47,9.75,10.05,10.4,10.77,11.33,11.91,14.72,27.76,27.38,27.2,27.01,26.84,26.66,26.490000000000002,26.330000000000002,26.12,N/A,N/A +2012,8,28,14,30,101080,99930,98820,75.81,0,7.05,7.57,7.65,7.7,7.73,7.75,7.8100000000000005,7.87,8.370000000000001,2.25,2.68,2.97,3.31,3.72,4.19,4.91,5.68,9.71,28.02,27.66,27.490000000000002,27.3,27.12,26.95,26.78,26.63,26.45,N/A,N/A +2012,8,28,15,30,101050,99910,98810,72.37,0,6.67,7.19,7.28,7.32,7.36,7.4,7.49,7.58,8.56,351.75,352.3,352.72,353.23,353.86,354.57,355.85,357.28000000000003,7.45,28.78,28.47,28.310000000000002,28.13,27.96,27.8,27.66,27.53,27.59,N/A,N/A +2012,8,28,16,30,101030,99890,98790,68.5,0,6.62,7.19,7.29,7.33,7.3500000000000005,7.36,7.37,7.38,7.43,344.95,345.5,345.86,346.29,346.77,347.29,347.99,348.71,351.19,29.54,29.28,29.13,28.95,28.78,28.61,28.44,28.29,28,N/A,N/A +2012,8,28,17,30,100970,99840,98750,65.19,0,4.53,4.96,5.07,5.18,5.29,5.41,5.57,5.73,6.17,355.8,356.71,357.40000000000003,358.23,359.18,0.26,1.52,2.81,5.41,30.66,30.52,30.42,30.28,30.14,30,29.87,29.75,29.51,N/A,N/A +2012,8,28,18,30,100900,99770,98680,57.15,0,8.21,9.27,9.56,9.74,9.86,9.92,9.94,9.94,9.88,346.68,347.24,347.63,348.09000000000003,348.54,349,349.47,349.94,350.92,31.64,31.67,31.61,31.5,31.37,31.220000000000002,31.07,30.91,30.580000000000002,N/A,N/A +2012,8,28,19,30,100840,99720,98630,61.54,0,5.79,6.74,7.07,7.36,7.61,7.84,8.06,8.25,8.6,349.01,350.24,351.13,352.32,353.52,354.8,356.04,357.21,359.15000000000003,31.62,31.77,31.78,31.75,31.69,31.61,31.51,31.400000000000002,31.12,N/A,N/A +2012,8,28,20,30,100760,99640,98550,63.190000000000005,0,5.96,7.11,7.53,7.92,8.25,8.53,8.78,8.99,9.3,349.98,350.83,351.45,352.19,352.93,353.7,354.5,355.26,356.69,31.84,32,32.02,31.990000000000002,31.94,31.87,31.77,31.67,31.41,N/A,N/A +2012,8,28,21,30,100710,99580,98500,59.82,0,7.9,9.44,9.98,10.5,10.92,11.290000000000001,11.58,11.84,12.22,1.32,2.36,2.98,3.5500000000000003,3.99,4.3500000000000005,4.6000000000000005,4.8,4.98,32.230000000000004,32.5,32.55,32.56,32.54,32.49,32.42,32.33,32.1,N/A,N/A +2012,8,28,22,30,100630,99510,98420,61.71,0,6.95,8.46,9.02,9.55,9.98,10.36,10.68,10.97,11.43,0.84,2.02,2.67,3.31,3.8200000000000003,4.26,4.6000000000000005,4.87,5.14,32.05,32.36,32.44,32.47,32.46,32.42,32.36,32.28,32.07,N/A,N/A +2012,8,28,23,30,100610,99480,98400,63.53,0,6.3100000000000005,7.78,8.34,8.870000000000001,9.33,9.74,10.11,10.450000000000001,11.03,352.55,353.91,354.74,355.59000000000003,356.32,357.01,357.56,358.02,358.61,31.91,32.32,32.44,32.52,32.54,32.52,32.45,32.37,32.12,N/A,N/A +2012,8,29,0,30,100600,99480,98400,61.17,0,7.86,9.32,9.790000000000001,10.17,10.47,10.72,10.950000000000001,11.16,11.56,4.88,5.14,5.36,5.7700000000000005,6.24,6.7700000000000005,7.2700000000000005,7.73,8.33,32.13,32.480000000000004,32.56,32.59,32.57,32.51,32.410000000000004,32.3,32,N/A,N/A +2012,8,29,1,30,100620,99490,98410,60.22,0,7.91,9.450000000000001,10.03,10.58,11.08,11.55,12.02,12.47,13.39,2.21,3.21,3.97,4.97,5.97,7.01,8.06,9.07,10.88,31.900000000000002,32.14,32.18,32.15,32.09,31.990000000000002,31.87,31.740000000000002,31.43,N/A,N/A +2012,8,29,2,30,100620,99500,98410,63.52,0,8.66,10.14,10.700000000000001,11.25,11.75,12.23,12.700000000000001,13.16,14,5.34,6.390000000000001,7.13,8.06,8.98,9.92,10.92,11.91,13.83,31.45,31.55,31.55,31.5,31.44,31.36,31.28,31.19,30.98,N/A,N/A +2012,8,29,3,30,100620,99490,98400,64.43,0,9.57,10.98,11.46,11.89,12.27,12.63,12.99,13.33,14.01,7.15,7.82,8.3,8.88,9.44,10.040000000000001,10.67,11.290000000000001,12.59,31.17,31.19,31.13,31.04,30.93,30.82,30.71,30.59,30.35,N/A,N/A +2012,8,29,4,30,100590,99460,98370,65.81,0,10.28,11.84,12.38,12.89,13.33,13.75,14.16,14.540000000000001,15.27,358.85,359.3,359.69,0.16,0.64,1.1500000000000001,1.7,2.2600000000000002,3.52,30.91,30.900000000000002,30.85,30.75,30.66,30.560000000000002,30.46,30.36,30.14,N/A,N/A +2012,8,29,5,30,100540,99410,98320,71.01,0,9.69,11.55,12.34,13.13,13.73,14.18,14.61,15.02,15.8,354.86,356.43,357.2,357.68,358.44,359.48,0.5700000000000001,1.6300000000000001,3.72,30.35,30.32,30.25,30.07,29.95,29.86,29.76,29.66,29.42,N/A,N/A +2012,8,29,6,30,100550,99420,98330,71.54,0,9.61,10.65,10.9,11.05,11.17,11.25,11.32,11.38,11.49,8.92,8.82,8.84,8.86,8.88,8.9,8.93,8.97,9.07,29.95,29.71,29.57,29.39,29.21,29.03,28.85,28.67,28.310000000000002,N/A,N/A +2012,8,29,7,30,100540,99400,98310,73.66,0,9.32,10.25,10.450000000000001,10.56,10.63,10.69,10.75,10.8,10.98,357.87,358.33,358.56,358.81,359.09000000000003,359.37,359.74,0.12,1.24,29.54,29.27,29.11,28.92,28.740000000000002,28.57,28.38,28.21,27.87,N/A,N/A +2012,8,29,8,30,100540,99400,98310,74,0,9.05,9.94,10.14,10.25,10.33,10.39,10.44,10.49,10.6,357.98,358.68,359.06,359.46,359.83,0.2,0.62,1.04,2.06,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.93,27.73,27.55,27.18,N/A,N/A +2012,8,29,9,30,100530,99400,98300,75.95,0,10.09,11.14,11.38,11.52,11.64,11.73,11.8,11.88,12.05,356.67,356.93,357.09000000000003,357.25,357.42,357.59000000000003,357.79,357.99,358.52,28.63,28.27,28.1,27.900000000000002,27.72,27.53,27.34,27.16,26.8,N/A,N/A +2012,8,29,10,30,100540,99400,98300,76.75,0,10.040000000000001,11,11.22,11.33,11.41,11.46,11.5,11.52,11.56,353.93,354.23,354.45,354.67,354.87,355.07,355.29,355.5,355.99,28.23,27.84,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.32,N/A,N/A +2012,8,29,11,30,100540,99400,98300,77.91,0,10.69,11.81,12.08,12.25,12.370000000000001,12.450000000000001,12.52,12.59,12.68,354.69,355.13,355.41,355.68,355.95,356.2,356.47,356.73,357.31,28.11,27.71,27.52,27.32,27.13,26.94,26.740000000000002,26.560000000000002,26.17,N/A,N/A +2012,8,29,12,30,100510,99370,98270,78.92,0,10.65,11.69,11.93,12.06,12.15,12.21,12.26,12.290000000000001,12.32,347.45,347.82,348.07,348.31,348.53000000000003,348.74,348.96,349.17,349.63,27.85,27.43,27.240000000000002,27.03,26.84,26.64,26.45,26.26,25.88,N/A,N/A +2012,8,29,13,30,100510,99370,98270,78.9,0,11.16,12.290000000000001,12.56,12.71,12.81,12.89,12.94,12.98,13.030000000000001,346.71,346.93,347.07,347.21,347.34000000000003,347.48,347.62,347.76,348.07,27.830000000000002,27.400000000000002,27.21,26.990000000000002,26.8,26.6,26.41,26.22,25.84,N/A,N/A +2012,8,29,14,30,100520,99380,98280,78.65,0,10.43,11.450000000000001,11.69,11.84,11.93,12,12.05,12.09,12.15,341.81,342,342.12,342.25,342.36,342.47,342.6,342.72,342.99,27.92,27.5,27.310000000000002,27.1,26.91,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,8,29,15,30,100500,99370,98270,77.54,0,9.92,10.9,11.120000000000001,11.25,11.34,11.4,11.44,11.48,11.52,338.3,338.6,338.8,338.99,339.17,339.36,339.54,339.72,340.1,28.330000000000002,27.95,27.77,27.57,27.37,27.18,26.990000000000002,26.8,26.42,N/A,N/A +2012,8,29,16,30,100450,99320,98220,74.69,0,10.55,11.68,11.94,12.09,12.200000000000001,12.27,12.33,12.370000000000001,12.41,331.87,332.34000000000003,332.6,332.87,333.12,333.35,333.59000000000003,333.81,334.29,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A +2012,8,29,17,30,100430,99300,98200,69.82000000000001,0,11.01,12.31,12.64,12.85,13,13.11,13.200000000000001,13.27,13.370000000000001,334.37,334.78000000000003,335.01,335.25,335.47,335.68,335.89,336.09000000000003,336.5,29.95,29.71,29.57,29.38,29.21,29.03,28.84,28.66,28.3,N/A,N/A +2012,8,29,18,30,100410,99280,98190,68.15,0,9.92,11.03,11.32,11.52,11.67,11.8,11.91,12,12.16,333.84000000000003,334.32,334.64,335.02,335.40000000000003,335.79,336.21,336.63,337.53000000000003,30.63,30.5,30.400000000000002,30.240000000000002,30.09,29.93,29.76,29.6,29.25,N/A,N/A +2012,8,29,19,30,100370,99240,98160,66.45,0,9.64,10.83,11.18,11.43,11.63,11.790000000000001,11.93,12.040000000000001,12.23,335.06,335.69,336.1,336.59000000000003,337.05,337.52,337.99,338.46,339.39,31.14,31.09,31.01,30.87,30.73,30.580000000000002,30.43,30.27,29.93,N/A,N/A +2012,8,29,20,30,100310,99190,98110,66.45,0,9.51,10.93,11.39,11.77,12.09,12.36,12.58,12.780000000000001,13.1,334.42,335.28000000000003,335.82,336.44,337,337.57,338.13,338.65000000000003,339.69,31.5,31.54,31.490000000000002,31.39,31.28,31.16,31.02,30.88,30.57,N/A,N/A +2012,8,29,21,30,100280,99160,98080,64.01,0,11.14,12.85,13.35,13.72,13.98,14.15,14.25,14.3,14.290000000000001,349.34000000000003,349.66,349.82,349.97,350.09000000000003,350.21,350.31,350.40000000000003,350.57,31.8,31.89,31.86,31.77,31.67,31.54,31.400000000000002,31.25,30.92,N/A,N/A +2012,8,29,22,30,100290,99170,98090,66.22,0,7.91,9.11,9.52,9.88,10.200000000000001,10.51,10.82,11.120000000000001,11.74,347.66,346.77,346.26,345.54,344.84000000000003,344.11,343.47,342.89,342.09000000000003,31.53,31.61,31.580000000000002,31.5,31.400000000000002,31.29,31.150000000000002,31.01,30.7,N/A,N/A +2012,8,29,23,30,100290,99170,98080,68.68,0,8,9.19,9.58,9.92,10.200000000000001,10.44,10.66,10.86,11.21,344.76,345.33,345.67,346.09000000000003,346.5,346.91,347.34000000000003,347.76,348.54,31.44,31.48,31.43,31.34,31.240000000000002,31.11,30.98,30.85,30.55,N/A,N/A +2012,8,30,0,30,100320,99190,98110,72.74,2.9000000000000004,8.63,9.43,9.77,10.33,10.96,11.69,12.370000000000001,13,14.17,16.32,15.02,13.81,11.78,9.9,8.01,6.73,5.7700000000000005,4.59,29.87,29.71,29.67,29.67,29.7,29.76,29.77,29.75,29.64,N/A,N/A +2012,8,30,1,30,100390,99260,98160,80.58,0,12.99,14.290000000000001,14.59,14.72,14.8,14.84,14.84,14.84,14.780000000000001,27.96,27,26.62,26.25,25.92,25.6,25.29,24.990000000000002,24.38,28.29,27.89,27.71,27.5,27.310000000000002,27.13,26.93,26.75,26.39,N/A,N/A +2012,8,30,2,30,100420,99280,98180,78.24,0,12.92,14.31,14.65,14.83,14.96,15.05,15.11,15.15,15.21,3.27,3.65,3.84,4.0200000000000005,4.19,4.34,4.49,4.64,4.95,28.03,27.6,27.400000000000002,27.19,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A +2012,8,30,3,30,100420,99280,98180,76.61,0,9.93,10.91,11.14,11.27,11.370000000000001,11.44,11.49,11.53,11.61,359.8,0.27,0.56,0.8300000000000001,1.09,1.33,1.58,1.82,2.32,27.96,27.55,27.36,27.150000000000002,26.96,26.76,26.560000000000002,26.37,25.990000000000002,N/A,N/A +2012,8,30,4,30,100420,99280,98180,78.47,0,9.540000000000001,10.53,10.790000000000001,10.96,11.09,11.19,11.27,11.35,11.48,357.63,357.96,358.13,358.29,358.43,358.58,358.71,358.84000000000003,359.12,27.63,27.2,27.01,26.8,26.6,26.41,26.21,26.02,25.64,N/A,N/A +2012,8,30,5,30,100400,99260,98150,78.37,0,9.5,10.370000000000001,10.59,10.72,10.8,10.870000000000001,10.92,10.96,11.03,351.35,351.6,351.78000000000003,351.94,352.08,352.22,352.36,352.5,352.8,27.38,26.93,26.740000000000002,26.53,26.34,26.150000000000002,25.95,25.77,25.39,N/A,N/A +2012,8,30,6,30,100430,99290,98180,78.34,0,10.14,11.11,11.35,11.48,11.58,11.64,11.69,11.72,11.76,346.26,346.57,346.71,346.82,346.91,346.98,347.04,347.1,347.2,27.37,26.93,26.73,26.52,26.32,26.13,25.92,25.73,25.35,N/A,N/A +2012,8,30,7,30,100430,99290,98180,77.85000000000001,0,9.71,10.61,10.82,10.93,11.01,11.07,11.1,11.13,11.15,339.54,339.62,339.67,339.72,339.76,339.8,339.83,339.87,339.94,27.18,26.73,26.53,26.32,26.12,25.92,25.72,25.53,25.150000000000002,N/A,N/A +2012,8,30,8,30,100390,99250,98150,79.06,0,9.370000000000001,10.18,10.35,10.44,10.49,10.52,10.53,10.540000000000001,10.53,332.71,333.02,333.12,333.19,333.25,333.3,333.34000000000003,333.38,333.46,27.18,26.73,26.53,26.32,26.12,25.93,25.73,25.54,25.150000000000002,N/A,N/A +2012,8,30,9,30,100430,99290,98180,77.25,0,9.89,10.82,11.06,11.200000000000001,11.3,11.370000000000001,11.42,11.46,11.52,330.39,330.29,330.29,330.29,330.28000000000003,330.28000000000003,330.27,330.26,330.25,27.19,26.740000000000002,26.55,26.330000000000002,26.14,25.94,25.740000000000002,25.55,25.17,N/A,N/A +2012,8,30,10,30,100440,99300,98190,77.96000000000001,0,9.3,10.14,10.34,10.450000000000001,10.53,10.58,10.61,10.64,10.66,330.24,330.13,330.12,330.1,330.08,330.07,330.06,330.04,330.02,27.07,26.62,26.42,26.21,26.01,25.810000000000002,25.62,25.43,25.04,N/A,N/A +2012,8,30,11,30,100450,99310,98200,79.72,0,9.05,9.78,9.94,10.02,10.06,10.08,10.08,10.08,10.06,330.09000000000003,330.18,330.22,330.25,330.27,330.28000000000003,330.29,330.3,330.31,26.72,26.25,26.05,25.84,25.64,25.45,25.25,25.060000000000002,24.68,N/A,N/A +2012,8,30,12,30,100470,99320,98220,78.01,0,9.75,10.56,10.73,10.81,10.85,10.870000000000001,10.870000000000001,10.870000000000001,10.83,325.26,325.25,325.25,325.23,325.21,325.18,325.14,325.11,325.03000000000003,26.78,26.310000000000002,26.11,25.900000000000002,25.7,25.5,25.3,25.12,24.740000000000002,N/A,N/A +2012,8,30,13,30,100530,99380,98280,77.69,0,8.58,9.27,9.43,9.51,9.56,9.6,9.620000000000001,9.63,9.64,326.22,326.02,325.90000000000003,325.78000000000003,325.67,325.56,325.44,325.33,325.09000000000003,26.63,26.16,25.96,25.75,25.55,25.36,25.16,24.97,24.59,N/A,N/A +2012,8,30,14,30,100560,99420,98310,75.96000000000001,0,7.95,8.57,8.72,8.790000000000001,8.84,8.870000000000001,8.9,8.91,8.93,318.51,318.56,318.59000000000003,318.6,318.62,318.64,318.65000000000003,318.66,318.69,26.900000000000002,26.45,26.26,26.05,25.85,25.66,25.46,25.27,24.89,N/A,N/A +2012,8,30,15,30,100580,99430,98320,75.41,0,7.44,7.99,8.11,8.16,8.19,8.2,8.21,8.21,8.2,307.04,307.3,307.43,307.54,307.65000000000003,307.75,307.86,307.97,308.2,27.060000000000002,26.63,26.44,26.23,26.04,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A +2012,8,30,16,30,100610,99470,98370,71.9,0,5.97,6.36,6.44,6.48,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,310.35,309.18,308.48,307.73,307.04,306.36,305.67,304.99,303.57,27.8,27.43,27.25,27.05,26.86,26.68,26.490000000000002,26.310000000000002,25.93,N/A,N/A +2012,8,30,17,30,100620,99480,98380,68.9,0,3.71,3.94,3.99,4.03,4.0600000000000005,4.09,4.13,4.16,4.23,302.56,300.05,298.56,297.13,295.83,294.59000000000003,293.38,292.25,290.03000000000003,28.67,28.35,28.18,27.990000000000002,27.810000000000002,27.62,27.44,27.26,26.89,N/A,N/A +2012,8,30,18,30,100640,99510,98410,67.32000000000001,0,1.45,1.51,1.53,1.55,1.58,1.61,1.6500000000000001,1.69,1.79,310.09000000000003,303.36,299.35,295.23,291.61,288.17,284.87,281.76,275.96,29.16,28.85,28.69,28.5,28.32,28.13,27.95,27.77,27.400000000000002,N/A,N/A +2012,8,30,19,30,100650,99520,98420,67.3,0,3.56,3.83,3.9,3.95,3.98,4,4.0200000000000005,4.03,4.05,225.9,226.66,227.14000000000001,227.63,228.09,228.56,229.03,229.49,230.48000000000002,29.8,29.5,29.34,29.14,28.96,28.77,28.580000000000002,28.400000000000002,28.02,N/A,N/A +2012,8,30,20,30,100660,99520,98420,75.27,0,6.72,7.26,7.36,7.390000000000001,7.41,7.4,7.38,7.3500000000000005,7.26,194.34,194.65,194.84,195.02,195.19,195.37,195.56,195.75,196.29,29.11,28.78,28.62,28.42,28.240000000000002,28.05,27.86,27.68,27.32,N/A,N/A +2012,8,30,21,30,100640,99510,98410,77.35000000000001,0,7.930000000000001,8.61,8.73,8.76,8.77,8.76,8.74,8.71,8.65,200.25,200.47,200.63,200.82,201.01,201.22,201.49,201.77,202.71,29.12,28.82,28.66,28.47,28.3,28.12,27.94,27.77,27.46,N/A,N/A +2012,8,30,22,30,100640,99500,98410,78.43,0,8.64,9.42,9.57,9.63,9.66,9.66,9.66,9.65,9.67,200.55,200.8,200.94,201.1,201.28,201.47,201.73000000000002,202.01,203.02,29.23,28.94,28.79,28.6,28.43,28.25,28.080000000000002,27.92,27.64,N/A,N/A +2012,8,30,23,30,100660,99530,98430,78.69,0,9.09,9.92,10.09,10.15,10.19,10.200000000000001,10.22,10.23,10.34,199.58,199.75,199.86,200.01,200.17000000000002,200.36,200.61,200.89000000000001,202.03,29.36,29.09,28.94,28.76,28.59,28.41,28.25,28.09,27.84,N/A,N/A +2012,8,31,0,30,100690,99560,98460,79.93,0,9.34,10.24,10.41,10.49,10.52,10.53,10.53,10.51,10.47,195.81,196.01,196.08,196.17000000000002,196.26,196.35,196.46,196.57,196.95000000000002,29.46,29.2,29.05,28.86,28.69,28.52,28.35,28.18,27.88,N/A,N/A +2012,8,31,1,30,100720,99590,98490,78.83,0,9.68,10.6,10.790000000000001,10.86,10.9,10.91,10.9,10.88,10.82,197.23000000000002,197.4,197.47,197.55,197.63,197.72,197.84,197.96,198.45000000000002,29.66,29.42,29.28,29.1,28.94,28.77,28.61,28.45,28.17,N/A,N/A +2012,8,31,2,30,100790,99660,98560,74.07000000000001,0,9.120000000000001,10.13,10.46,10.82,11.06,11.19,11.39,11.63,12.02,201.53,201.27,201.19,201.1,201.17000000000002,201.42000000000002,202.08,202.94,205.31,30.21,30.12,30.060000000000002,29.98,29.88,29.72,29.67,29.68,29.69,N/A,N/A +2012,8,31,3,30,100860,99730,98630,74.64,0,8.44,9.67,10.11,10.4,10.700000000000001,11.05,11.38,11.69,11.9,198.55,199.34,199.83,200.06,200.70000000000002,201.75,202.94,204.20000000000002,206.42000000000002,30.240000000000002,30.21,30.150000000000002,29.990000000000002,29.89,29.87,29.85,29.84,29.68,N/A,N/A +2012,8,31,4,30,100920,99790,98690,80.11,0,9.08,10.09,10.41,10.75,11,11.19,11.42,11.66,12.200000000000001,196.37,196.57,196.76,196.94,197.21,197.6,198.09,198.67000000000002,200,29.990000000000002,29.86,29.77,29.63,29.52,29.39,29.27,29.16,29.02,N/A,N/A +2012,8,31,5,30,100960,99820,98720,81.29,0,9.69,10.77,11.07,11.28,11.450000000000001,11.6,11.75,11.89,12.25,197.66,197.96,198.15,198.35,198.54,198.74,198.94,199.14000000000001,199.61,29.86,29.650000000000002,29.52,29.35,29.19,29.02,28.86,28.7,28.400000000000002,N/A,N/A +2012,8,31,6,30,101030,99900,98800,80.99,0,11.43,12.72,13.06,13.280000000000001,13.450000000000001,13.58,13.700000000000001,13.8,14,201.49,201.36,201.31,201.27,201.25,201.24,201.24,201.25,201.31,29.97,29.76,29.63,29.46,29.3,29.13,28.97,28.810000000000002,28.48,N/A,N/A +2012,8,31,7,30,101090,99960,98860,82.97,0,11.450000000000001,12.780000000000001,13.120000000000001,13.35,13.52,13.64,13.74,13.82,13.950000000000001,200.72,200.81,200.83,200.85,200.87,200.89000000000001,200.91,200.93,200.96,29.94,29.7,29.560000000000002,29.38,29.2,29.03,28.85,28.67,28.310000000000002,N/A,N/A +2012,8,31,8,30,101140,100010,98910,84.24,0,11.1,12.49,12.83,13.06,13.24,13.36,13.46,13.540000000000001,13.65,196.62,197,197.11,197.20000000000002,197.28,197.34,197.39000000000001,197.44,197.5,29.77,29.490000000000002,29.330000000000002,29.14,28.96,28.77,28.580000000000002,28.39,28.01,N/A,N/A +2012,8,31,9,30,101200,100060,98960,81.07000000000001,0,11.4,12.77,13.09,13.31,13.46,13.57,13.64,13.71,13.780000000000001,197.86,198.12,198.17000000000002,198.19,198.20000000000002,198.19,198.18,198.16,198.1,29.91,29.64,29.48,29.29,29.11,28.92,28.73,28.55,28.17,N/A,N/A +2012,8,31,10,30,101270,100130,99030,78.62,0,11.34,12.55,12.86,13.040000000000001,13.17,13.26,13.34,13.39,13.49,194.69,194.8,194.91,195.07,195.22,195.39000000000001,195.56,195.74,196.14000000000001,29.900000000000002,29.67,29.53,29.35,29.18,29.01,28.830000000000002,28.650000000000002,28.3,N/A,N/A +2012,8,31,11,30,101320,100190,99080,77.37,0,10.3,11.42,11.71,11.89,12.02,12.120000000000001,12.200000000000001,12.27,12.39,193.67000000000002,194,194.27,194.59,194.9,195.22,195.56,195.9,196.63,29.98,29.75,29.62,29.44,29.28,29.11,28.93,28.76,28.42,N/A,N/A +2012,8,31,12,30,101370,100230,99130,78.73,0,10.84,12.120000000000001,12.43,12.63,12.780000000000001,12.88,12.96,13.02,13.09,194.24,194.41,194.49,194.56,194.62,194.68,194.73000000000002,194.78,194.86,29.71,29.43,29.27,29.07,28.89,28.7,28.51,28.32,27.94,N/A,N/A +2012,8,31,13,30,101450,100310,99200,77.16,0,10.33,11.43,11.700000000000001,11.85,11.96,12.02,12.07,12.1,12.13,191.74,192.02,192.18,192.35,192.49,192.62,192.74,192.87,193.1,29.71,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.98,N/A,N/A +2012,8,31,14,30,101490,100350,99240,76.2,0,9.24,10.28,10.52,10.66,10.76,10.83,10.88,10.92,10.96,193.9,193.98000000000002,194.01,194.05,194.08,194.11,194.13,194.15,194.19,29.73,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.97,N/A,N/A +2012,8,31,15,30,101550,100410,99300,77.55,0,8.31,9.17,9.370000000000001,9.49,9.57,9.63,9.67,9.700000000000001,9.74,187.75,187.97,188.14000000000001,188.31,188.45000000000002,188.6,188.75,188.89000000000001,189.16,29.69,29.41,29.25,29.05,28.87,28.68,28.490000000000002,28.3,27.92,N/A,N/A +2012,8,31,16,30,101570,100430,99330,74.17,0,7.59,8.35,8.53,8.63,8.71,8.76,8.790000000000001,8.82,8.85,192.95000000000002,192.85,192.81,192.77,192.73000000000002,192.70000000000002,192.67000000000002,192.65,192.6,29.86,29.59,29.44,29.25,29.060000000000002,28.88,28.69,28.5,28.13,N/A,N/A +2012,8,31,17,30,101590,100450,99340,77.62,0,7.6000000000000005,8.4,8.59,8.700000000000001,8.78,8.84,8.89,8.93,8.99,187.49,187.70000000000002,187.8,187.87,187.93,187.99,188.03,188.08,188.15,29.77,29.490000000000002,29.32,29.13,28.94,28.75,28.560000000000002,28.37,28,N/A,N/A +2012,8,31,18,30,101590,100450,99340,79.58,0,7.53,8.27,8.42,8.51,8.56,8.6,8.620000000000001,8.64,8.66,181.73,181.98,182.09,182.18,182.27,182.36,182.45000000000002,182.54,182.72,29.82,29.53,29.37,29.18,28.990000000000002,28.810000000000002,28.62,28.43,28.060000000000002,N/A,N/A +2012,8,31,19,30,101580,100440,99330,82.62,0,7.83,8.64,8.81,8.92,9,9.040000000000001,9.08,9.1,9.11,182.22,182.46,182.53,182.58,182.62,182.65,182.68,182.69,182.71,29.73,29.42,29.26,29.060000000000002,28.88,28.69,28.5,28.310000000000002,27.93,N/A,N/A +2012,8,31,20,30,101560,100420,99320,82.22,0,8.49,9.370000000000001,9.57,9.68,9.76,9.82,9.86,9.89,9.92,178.85,178.79,178.73,178.65,178.57,178.48,178.4,178.31,178.14000000000001,29.560000000000002,29.25,29.09,28.89,28.7,28.51,28.32,28.13,27.75,N/A,N/A +2012,8,31,21,30,101540,100400,99300,79.27,0,8.44,9.290000000000001,9.48,9.59,9.67,9.72,9.75,9.78,9.82,174.23,174.22,174.22,174.22,174.20000000000002,174.20000000000002,174.19,174.18,174.16,29.59,29.3,29.13,28.94,28.75,28.560000000000002,28.37,28.18,27.8,N/A,N/A +2012,8,31,22,30,101530,100390,99290,77.96000000000001,0,8.63,9.5,9.69,9.790000000000001,9.86,9.9,9.92,9.93,9.94,172.61,172.76,172.82,172.87,172.91,172.95000000000002,172.99,173.01,173.07,29.560000000000002,29.27,29.11,28.92,28.73,28.55,28.36,28.17,27.79,N/A,N/A +2012,8,31,23,30,101510,100360,99260,79.34,0,9.03,9.96,10.17,10.290000000000001,10.38,10.44,10.48,10.52,10.57,170.6,170.59,170.55,170.5,170.45000000000002,170.4,170.35,170.3,170.19,29.51,29.21,29.05,28.86,28.67,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A +2012,9,1,0,30,101510,100370,99260,84.9,0,9.790000000000001,10.89,11.16,11.32,11.44,11.52,11.57,11.620000000000001,11.66,166.70000000000002,166.66,166.68,166.70000000000002,166.73,166.75,166.77,166.79,166.84,29.240000000000002,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,9,1,1,30,101540,100400,99290,82.66,0,9.58,10.61,10.86,11.02,11.13,11.200000000000001,11.26,11.31,11.370000000000001,173.53,173.77,173.83,173.89000000000001,173.92000000000002,173.96,173.97,173.99,174,29.240000000000002,28.91,28.75,28.55,28.36,28.17,27.97,27.79,27.400000000000002,N/A,N/A +2012,9,1,2,30,101570,100430,99320,83.74,0,9.89,11,11.26,11.43,11.55,11.64,11.69,11.75,11.8,171.17000000000002,171,170.98,170.96,170.97,171,171.03,171.07,171.15,29.23,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,9,1,3,30,101610,100470,99360,81.95,0,9.36,10.34,10.59,10.74,10.83,10.91,10.97,11.01,11.08,172.3,172.46,172.51,172.53,172.54,172.55,172.54,172.53,172.49,29.34,29.04,28.87,28.68,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A +2012,9,1,4,30,101630,100480,99380,76.09,0,9.86,10.88,11.11,11.23,11.32,11.370000000000001,11.4,11.43,11.46,174.45000000000002,174.6,174.66,174.70000000000002,174.72,174.73,174.74,174.74,174.72,29.5,29.2,29.04,28.85,28.66,28.47,28.28,28.1,27.72,N/A,N/A +2012,9,1,5,30,101640,100490,99390,77.77,0,9.52,10.51,10.74,10.88,10.98,11.040000000000001,11.09,11.120000000000001,11.17,172.64000000000001,172.76,172.85,172.96,173.06,173.17000000000002,173.28,173.38,173.6,29.42,29.11,28.95,28.75,28.560000000000002,28.37,28.18,28,27.62,N/A,N/A +2012,9,1,6,30,101680,100540,99430,75.48,0,9.38,10.41,10.66,10.81,10.92,10.99,11.05,11.1,11.16,178.42000000000002,178.38,178.32,178.25,178.19,178.13,178.07,178.02,177.91,29.490000000000002,29.22,29.07,28.87,28.69,28.5,28.310000000000002,28.13,27.75,N/A,N/A +2012,9,1,7,30,101710,100560,99450,77.27,0,9.23,10.25,10.5,10.65,10.76,10.84,10.9,10.950000000000001,11.03,179.91,180.13,180.19,180.23,180.26,180.29,180.32,180.34,180.38,29.43,29.150000000000002,28.98,28.79,28.61,28.42,28.23,28.05,27.67,N/A,N/A +2012,9,1,8,30,101720,100580,99470,74.81,0,8.58,9.53,9.75,9.9,10.01,10.09,10.15,10.200000000000001,10.28,181.38,181.35,181.35,181.37,181.39000000000001,181.41,181.44,181.47,181.51,29.54,29.27,29.11,28.92,28.73,28.54,28.35,28.17,27.79,N/A,N/A +2012,9,1,9,30,101750,100600,99490,75.10000000000001,0,8.790000000000001,9.72,9.950000000000001,10.09,10.19,10.26,10.32,10.370000000000001,10.44,182.57,182.72,182.8,182.87,182.93,182.99,183.04,183.1,183.20000000000002,29.48,29.21,29.04,28.86,28.68,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A +2012,9,1,10,30,101760,100610,99500,73.8,0,8.64,9.55,9.76,9.89,9.98,10.05,10.1,10.14,10.18,188.41,188.24,188.19,188.15,188.12,188.09,188.06,188.03,187.99,29.52,29.25,29.1,28.91,28.73,28.54,28.35,28.17,27.8,N/A,N/A +2012,9,1,11,30,101790,100640,99530,74.39,0,7.75,8.620000000000001,8.85,9.02,9.14,9.24,9.32,9.39,9.51,190.38,190.3,190.28,190.27,190.25,190.25,190.25,190.24,190.26,29.490000000000002,29.22,29.060000000000002,28.87,28.69,28.5,28.310000000000002,28.12,27.75,N/A,N/A +2012,9,1,12,30,101810,100660,99550,76.94,0,8.18,9,9.17,9.26,9.32,9.36,9.38,9.4,9.41,189.62,189.45000000000002,189.4,189.35,189.31,189.28,189.24,189.21,189.14000000000001,29.330000000000002,29.04,28.88,28.69,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A +2012,9,1,13,30,101860,100710,99600,75.98,0,7.22,7.930000000000001,8.1,8.2,8.27,8.32,8.36,8.39,8.43,188.85,188.98,189.08,189.19,189.3,189.41,189.55,189.67000000000002,189.97,29.34,29.05,28.900000000000002,28.7,28.52,28.34,28.150000000000002,27.97,27.59,N/A,N/A +2012,9,1,14,30,101890,100750,99640,77.93,0,7.22,7.94,8.120000000000001,8.22,8.290000000000001,8.35,8.39,8.42,8.46,186.89000000000001,187.66,187.93,188.16,188.35,188.5,188.65,188.78,189,29.26,28.96,28.8,28.61,28.42,28.23,28.04,27.85,27.48,N/A,N/A +2012,9,1,15,30,101920,100770,99660,76.49,0,6.38,6.96,7.09,7.17,7.23,7.2700000000000005,7.3,7.34,7.390000000000001,188.55,188.6,188.62,188.65,188.67000000000002,188.70000000000002,188.73,188.76,188.85,29.27,28.97,28.82,28.63,28.44,28.26,28.07,27.88,27.52,N/A,N/A +2012,9,1,16,30,101920,100770,99660,78.14,0,6.42,6.97,7.09,7.140000000000001,7.19,7.21,7.22,7.23,7.24,189.92000000000002,189.71,189.64000000000001,189.59,189.55,189.52,189.49,189.47,189.44,29.16,28.84,28.67,28.48,28.29,28.1,27.91,27.72,27.34,N/A,N/A +2012,9,1,17,30,101920,100770,99660,76.34,0,6.05,6.58,6.69,6.76,6.82,6.8500000000000005,6.87,6.9,6.93,191.06,191.37,191.51,191.63,191.75,191.86,191.96,192.07,192.26,29.21,28.900000000000002,28.73,28.54,28.35,28.16,27.96,27.78,27.400000000000002,N/A,N/A +2012,9,1,18,30,101910,100760,99650,76.72,0,6.29,6.83,6.93,6.99,7.03,7.05,7.0600000000000005,7.07,7.08,191.04,191.08,191.12,191.16,191.19,191.20000000000002,191.21,191.24,191.26,29.18,28.86,28.69,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A +2012,9,1,19,30,101900,100750,99640,73.12,0,5.51,5.96,6.0600000000000005,6.1000000000000005,6.140000000000001,6.17,6.18,6.21,6.24,192.95000000000002,193.21,193.37,193.55,193.71,193.88,194.05,194.22,194.58,29.32,29.02,28.85,28.66,28.48,28.29,28.1,27.91,27.54,N/A,N/A +2012,9,1,20,30,101870,100720,99610,75.86,0,5.86,6.3100000000000005,6.4,6.44,6.46,6.47,6.48,6.47,6.46,189.47,189.63,189.76,189.89000000000001,190.02,190.14000000000001,190.26,190.39000000000001,190.62,29.21,28.89,28.73,28.53,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,9,1,21,30,101840,100700,99590,74.26,0,5.79,6.29,6.4,6.46,6.5,6.54,6.57,6.59,6.62,187.79,187.84,187.9,187.96,188.01,188.06,188.12,188.17000000000002,188.28,29.26,28.96,28.8,28.61,28.42,28.23,28.04,27.85,27.48,N/A,N/A +2012,9,1,22,30,101800,100650,99540,73.29,0,6.11,6.61,6.69,6.72,6.74,6.74,6.73,6.72,6.69,183.24,183.67000000000002,183.88,184.09,184.28,184.46,184.64000000000001,184.82,185.19,29.22,28.92,28.77,28.57,28.39,28.2,28,27.82,27.44,N/A,N/A +2012,9,1,23,30,101780,100630,99520,75.83,0,5.62,6.08,6.17,6.21,6.24,6.26,6.28,6.28,6.28,182.35,182.49,182.64000000000001,182.78,182.9,183.01,183.12,183.23,183.47,29.07,28.77,28.6,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.28,N/A,N/A +2012,9,2,0,30,101750,100600,99490,75.9,0,6.0200000000000005,6.49,6.57,6.6000000000000005,6.61,6.62,6.61,6.6000000000000005,6.57,175.89000000000001,176.47,176.68,176.9,177.11,177.31,177.54,177.76,178.25,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.71,27.53,27.14,N/A,N/A +2012,9,2,1,30,101730,100580,99470,78,0,6.3500000000000005,6.890000000000001,7,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.140000000000001,7.15,178.51,178.42000000000002,178.42000000000002,178.42000000000002,178.41,178.4,178.39000000000001,178.37,178.32,28.830000000000002,28.5,28.330000000000002,28.14,27.95,27.76,27.560000000000002,27.38,27,N/A,N/A +2012,9,2,2,30,101730,100590,99470,77.88,0,6.3100000000000005,6.8,6.890000000000001,6.92,6.94,6.95,6.94,6.93,6.9,170.62,170.86,170.98,171.07,171.16,171.24,171.32,171.39000000000001,171.55,28.77,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,9,2,3,30,101720,100580,99460,78.41,0,5.95,6.46,6.5600000000000005,6.63,6.67,6.7,6.72,6.73,6.76,169.70000000000002,169.55,169.55,169.55,169.56,169.57,169.59,169.61,169.65,28.75,28.42,28.25,28.05,27.86,27.68,27.48,27.3,26.92,N/A,N/A +2012,9,2,4,30,101690,100540,99430,79.04,0,6.18,6.65,6.76,6.8100000000000005,6.8500000000000005,6.88,6.9,6.91,6.93,169.82,169.86,169.84,169.8,169.77,169.72,169.67000000000002,169.62,169.51,28.66,28.32,28.150000000000002,27.96,27.77,27.580000000000002,27.39,27.2,26.82,N/A,N/A +2012,9,2,5,30,101710,100560,99450,75.75,0,7.13,7.74,7.88,7.95,8,8.03,8.06,8.08,8.120000000000001,171.16,171.39000000000001,171.47,171.55,171.61,171.67000000000002,171.73,171.79,171.91,28.88,28.57,28.400000000000002,28.2,28.02,27.830000000000002,27.64,27.45,27.080000000000002,N/A,N/A +2012,9,2,6,30,101710,100560,99450,82.2,0,6.69,7.25,7.36,7.41,7.44,7.45,7.45,7.44,7.4,177.23,177.29,177.32,177.36,177.39000000000001,177.41,177.45000000000002,177.48,177.53,28.580000000000002,28.23,28.060000000000002,27.86,27.67,27.47,27.28,27.09,26.7,N/A,N/A +2012,9,2,7,30,101720,100580,99470,80.72,0,7.21,7.82,7.96,8.03,8.08,8.11,8.13,8.14,8.15,180.47,180.9,181.13,181.36,181.55,181.73,181.9,182.05,182.36,28.740000000000002,28.41,28.240000000000002,28.04,27.86,27.67,27.48,27.29,26.91,N/A,N/A +2012,9,2,8,30,101730,100580,99470,81.76,0,6.12,6.67,6.8,6.88,6.93,6.98,7.01,7.04,7.08,188.27,188.22,188.23,188.27,188.32,188.37,188.43,188.49,188.64000000000001,28.78,28.46,28.29,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.95,N/A,N/A +2012,9,2,9,30,101730,100590,99470,78.62,0,6.76,7.36,7.5,7.5600000000000005,7.6000000000000005,7.63,7.640000000000001,7.65,7.65,198.25,198.33,198.31,198.3,198.28,198.27,198.24,198.21,198.12,28.94,28.62,28.46,28.26,28.07,27.88,27.69,27.5,27.13,N/A,N/A +2012,9,2,10,30,101750,100600,99490,79.69,0,6.49,7.09,7.23,7.32,7.38,7.43,7.46,7.49,7.54,202.62,202.35,202.20000000000002,202.03,201.87,201.70000000000002,201.53,201.36,201.01,28.84,28.52,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A +2012,9,2,11,30,101750,100600,99490,83.17,0,5.94,6.390000000000001,6.49,6.53,6.5600000000000005,6.59,6.6000000000000005,6.61,6.62,200.87,201.20000000000002,201.36,201.51,201.64000000000001,201.77,201.9,202.01,202.23000000000002,28.63,28.29,28.12,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A +2012,9,2,12,30,101770,100630,99520,80.19,0,5.71,6.2,6.32,6.38,6.42,6.46,6.48,6.5,6.53,199.9,200.32,200.49,200.64000000000001,200.78,200.9,201.02,201.14000000000001,201.37,28.86,28.53,28.37,28.17,27.98,27.79,27.6,27.41,27.03,N/A,N/A +2012,9,2,13,30,101790,100640,99530,81.05,0,5.15,5.51,5.58,5.61,5.63,5.64,5.65,5.65,5.65,205.76,205.62,205.57,205.53,205.5,205.47,205.45000000000002,205.42000000000002,205.35,28.740000000000002,28.41,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.91,N/A,N/A +2012,9,2,14,30,101810,100660,99550,81.69,0,4.39,4.68,4.75,4.78,4.8,4.8100000000000005,4.82,4.82,4.83,219.17000000000002,219.32,219.4,219.48000000000002,219.54,219.61,219.67000000000002,219.74,219.84,28.71,28.38,28.21,28.01,27.82,27.63,27.44,27.25,26.87,N/A,N/A +2012,9,2,15,30,101820,100670,99560,81.9,0,3.5100000000000002,3.71,3.7600000000000002,3.7800000000000002,3.79,3.8000000000000003,3.81,3.81,3.81,224.99,224.48000000000002,224.18,223.86,223.58,223.3,223.02,222.77,222.22,28.75,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.89,N/A,N/A +2012,9,2,16,30,101810,100670,99560,81.66,0,3.19,3.39,3.44,3.47,3.5,3.52,3.54,3.56,3.59,217.9,217.45000000000002,217.17000000000002,216.91,216.68,216.47,216.26,216.06,215.69,28.77,28.42,28.25,28.05,27.86,27.67,27.47,27.28,26.900000000000002,N/A,N/A +2012,9,2,17,30,101800,100650,99540,79.10000000000001,0,2.66,2.81,2.84,2.86,2.88,2.89,2.91,2.91,2.94,215.21,215.1,215.06,215.01,214.96,214.9,214.84,214.78,214.65,28.84,28.490000000000002,28.32,28.11,27.93,27.73,27.54,27.36,26.97,N/A,N/A +2012,9,2,18,30,101770,100620,99510,81.98,0,3.15,3.33,3.36,3.38,3.4,3.41,3.42,3.43,3.45,192.85,192.94,193.05,193.16,193.26,193.35,193.45000000000002,193.54,193.73000000000002,28.84,28.48,28.310000000000002,28.11,27.92,27.72,27.53,27.35,26.96,N/A,N/A +2012,9,2,19,30,101750,100610,99500,83.45,0,3.4,3.6,3.64,3.67,3.69,3.71,3.73,3.75,3.79,184.14000000000001,183.42000000000002,182.99,182.56,182.18,181.8,181.43,181.08,180.43,28.93,28.57,28.39,28.19,28.01,27.82,27.62,27.44,27.060000000000002,N/A,N/A +2012,9,2,20,30,101710,100560,99450,84.97,0,5.0200000000000005,5.4,5.48,5.53,5.5600000000000005,5.59,5.61,5.63,5.66,181.13,181.37,181.46,181.55,181.63,181.70000000000002,181.77,181.84,181.99,28.98,28.62,28.45,28.25,28.060000000000002,27.86,27.67,27.490000000000002,27.1,N/A,N/A +2012,9,2,21,30,101650,100500,99390,85.51,0,6.2,6.65,6.73,6.75,6.76,6.75,6.74,6.72,6.68,174.44,174.84,175.07,175.31,175.52,175.74,175.97,176.19,176.71,28.830000000000002,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.36,26.98,N/A,N/A +2012,9,2,22,30,101600,100460,99350,85.89,0,6.57,7.11,7.21,7.26,7.29,7.3,7.3,7.3,7.28,176.46,176.67000000000002,176.76,176.89000000000001,177.01,177.15,177.32,177.48,177.89000000000001,28.740000000000002,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,9,2,23,30,101580,100430,99320,84.65,0,5.9,6.3500000000000005,6.45,6.49,6.51,6.5200000000000005,6.5200000000000005,6.51,6.49,180.44,180.63,180.73,180.84,180.93,181.03,181.13,181.22,181.42000000000002,28.71,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,9,3,0,30,101550,100400,99290,85.06,0,6.8500000000000005,7.41,7.53,7.59,7.63,7.65,7.66,7.66,7.65,182.03,182.16,182.24,182.32,182.4,182.47,182.55,182.62,182.76,28.66,28.32,28.150000000000002,27.94,27.75,27.560000000000002,27.37,27.18,26.8,N/A,N/A +2012,9,3,1,30,101530,100380,99270,86.54,0,6.4,6.94,7.0600000000000005,7.140000000000001,7.19,7.22,7.25,7.2700000000000005,7.29,190.14000000000001,190,190,190.02,190.04,190.07,190.1,190.13,190.21,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A +2012,9,3,2,30,101530,100390,99280,85.18,0,6.38,6.890000000000001,7.01,7.07,7.12,7.15,7.17,7.19,7.21,185.70000000000002,186.09,186.27,186.45000000000002,186.61,186.76,186.91,187.04,187.32,28.57,28.22,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A +2012,9,3,3,30,101530,100390,99280,84.35000000000001,0,6.93,7.48,7.58,7.61,7.63,7.62,7.61,7.59,7.53,193.37,192.83,192.61,192.41,192.24,192.1,191.95000000000002,191.82,191.55,28.740000000000002,28.400000000000002,28.23,28.04,27.85,27.66,27.47,27.29,26.92,N/A,N/A +2012,9,3,4,30,101510,100370,99260,83.78,0,6.66,7.2,7.32,7.38,7.42,7.44,7.46,7.47,7.48,192.55,192.67000000000002,192.73000000000002,192.77,192.8,192.84,192.86,192.88,192.92000000000002,28.55,28.19,28.02,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A +2012,9,3,5,30,101530,100380,99280,82,0,6.37,6.88,6.99,7.04,7.07,7.1000000000000005,7.11,7.12,7.13,188.28,188.24,188.27,188.32,188.38,188.45000000000002,188.54,188.62,188.82,28.72,28.38,28.21,28.01,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A +2012,9,3,6,30,101540,100390,99280,86.42,0,6.41,6.95,7.08,7.15,7.2,7.24,7.2700000000000005,7.29,7.32,190.78,191.03,191.11,191.18,191.23000000000002,191.27,191.32,191.36,191.44,28.52,28.150000000000002,27.98,27.78,27.59,27.39,27.2,27.01,26.63,N/A,N/A +2012,9,3,7,30,101550,100400,99290,84.33,0,6.2,6.7,6.8100000000000005,6.87,6.91,6.94,6.97,6.99,7.03,194.64000000000001,194.85,194.95000000000002,195.06,195.17000000000002,195.27,195.38,195.49,195.73000000000002,28.62,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.76,N/A,N/A +2012,9,3,8,30,101550,100410,99300,84.64,0,7.17,7.79,7.930000000000001,8.01,8.06,8.1,8.13,8.15,8.17,200.72,201.03,201.12,201.22,201.3,201.38,201.45000000000002,201.52,201.66,28.740000000000002,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,9,3,9,30,101560,100410,99310,84.56,0,6.24,6.75,6.8500000000000005,6.92,6.96,6.99,7.0200000000000005,7.04,7.07,216.9,215.61,214.99,214.39000000000001,213.84,213.34,212.83,212.36,211.42000000000002,28.77,28.41,28.240000000000002,28.04,27.85,27.67,27.47,27.29,26.92,N/A,N/A +2012,9,3,10,30,101560,100410,99310,84,0,5.93,6.36,6.45,6.49,6.5200000000000005,6.54,6.55,6.5600000000000005,6.5600000000000005,215.82,215.93,216,216.04,216.06,216.07,216.07,216.07,216.05,28.76,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.900000000000002,N/A,N/A +2012,9,3,11,30,101600,100450,99340,83.73,0,5.88,6.33,6.43,6.49,6.5200000000000005,6.54,6.5600000000000005,6.57,6.59,227.34,227.06,226.82,226.56,226.32,226.07,225.83,225.59,225.09,28.73,28.37,28.2,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A +2012,9,3,12,30,101630,100480,99370,82.23,0,5.91,6.36,6.45,6.5,6.53,6.55,6.5600000000000005,6.57,6.58,222.14000000000001,222.24,222.19,222.14000000000001,222.08,222.01,221.94,221.86,221.69,28.650000000000002,28.29,28.12,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A +2012,9,3,13,30,101650,100500,99390,81.4,0,5.09,5.44,5.51,5.55,5.58,5.59,5.6000000000000005,5.61,5.62,221.69,221.65,221.62,221.58,221.56,221.54,221.51,221.49,221.43,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A +2012,9,3,14,30,101670,100530,99420,82.3,0,4.64,4.97,5.04,5.09,5.12,5.15,5.17,5.19,5.22,217.27,218.19,218.66,219.12,219.54,219.94,220.34,220.71,221.45000000000002,28.78,28.44,28.26,28.060000000000002,27.88,27.68,27.490000000000002,27.310000000000002,26.93,N/A,N/A +2012,9,3,15,30,101690,100550,99440,81.25,0,4.37,4.71,4.79,4.83,4.88,4.91,4.94,4.97,5.0200000000000005,253.59,252.51000000000002,251.94,251.35,250.82,250.3,249.77,249.27,248.22,28.89,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.43,27.05,N/A,N/A +2012,9,3,16,30,101680,100530,99420,80.64,0,4.74,5.04,5.08,5.09,5.1000000000000005,5.1000000000000005,5.09,5.08,5.0600000000000005,228.51,228.31,228.24,228.16,228.08,228.01,227.92000000000002,227.84,227.67000000000002,28.88,28.53,28.36,28.16,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A +2012,9,3,17,30,101650,100510,99400,81.43,0,4.28,4.55,4.61,4.64,4.67,4.68,4.69,4.71,4.72,235.03,235.04,235.1,235.15,235.21,235.26,235.32,235.38,235.5,28.84,28.48,28.310000000000002,28.11,27.92,27.72,27.53,27.35,26.97,N/A,N/A +2012,9,3,18,30,101650,100500,99400,80.96000000000001,0,4.5600000000000005,4.87,4.93,4.96,4.98,5,5.01,5.01,5.0200000000000005,216.77,216.94,217.03,217.1,217.16,217.21,217.27,217.32,217.39000000000001,28.98,28.63,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,9,3,19,30,101610,100470,99360,83.29,0,5.6000000000000005,6.0200000000000005,6.11,6.16,6.2,6.23,6.25,6.26,6.29,200.09,200.67000000000002,200.97,201.27,201.53,201.79,202.05,202.3,202.8,29,28.64,28.46,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A +2012,9,3,20,30,101570,100430,99320,83.42,0,5.83,6.25,6.33,6.36,6.37,6.38,6.38,6.37,6.34,202.84,202.74,202.70000000000002,202.65,202.59,202.53,202.46,202.39000000000001,202.23000000000002,28.95,28.6,28.43,28.22,28.03,27.84,27.650000000000002,27.46,27.080000000000002,N/A,N/A +2012,9,3,21,30,101520,100380,99270,79.05,0,6.8500000000000005,7.37,7.46,7.5,7.51,7.51,7.5,7.49,7.46,194.45000000000002,194.37,194.35,194.3,194.24,194.17000000000002,194.07,193.98000000000002,193.70000000000002,29.04,28.7,28.53,28.330000000000002,28.150000000000002,27.96,27.77,27.59,27.22,N/A,N/A +2012,9,3,22,30,101470,100330,99220,78.4,0,6.36,6.8500000000000005,6.94,6.97,6.99,7,6.99,6.99,6.96,198.23000000000002,198.16,198.1,198.03,197.96,197.89000000000001,197.81,197.74,197.56,29.04,28.71,28.54,28.34,28.16,27.97,27.78,27.6,27.23,N/A,N/A +2012,9,3,23,30,101450,100310,99200,76,0,6.38,6.890000000000001,6.98,7.03,7.05,7.0600000000000005,7.0600000000000005,7.0600000000000005,7.04,196.16,196.11,196.1,196.08,196.06,196.04,196.01,195.99,195.92000000000002,29.1,28.78,28.62,28.42,28.23,28.04,27.85,27.67,27.3,N/A,N/A +2012,9,4,0,30,101410,100270,99160,81.38,0,6.98,7.5600000000000005,7.68,7.73,7.7700000000000005,7.79,7.8100000000000005,7.8100000000000005,7.82,194.44,194.45000000000002,194.46,194.47,194.47,194.47,194.46,194.45000000000002,194.43,28.85,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,9,4,1,30,101410,100270,99160,80.83,0,6.51,7.03,7.13,7.17,7.2,7.21,7.22,7.22,7.21,202.38,202.15,202.04,201.93,201.84,201.74,201.64000000000001,201.54,201.34,28.8,28.45,28.28,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A +2012,9,4,2,30,101430,100290,99180,78.71000000000001,0,6.5600000000000005,7.09,7.19,7.25,7.28,7.3,7.3100000000000005,7.32,7.32,200.36,200.5,200.53,200.57,200.6,200.63,200.65,200.68,200.72,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.61,27.43,27.05,N/A,N/A +2012,9,4,3,30,101460,100310,99200,84.43,0,7.15,7.73,7.8500000000000005,7.91,7.94,7.96,7.97,7.97,7.96,202.25,202.26,202.23000000000002,202.21,202.18,202.15,202.13,202.12,202.07,28.59,28.22,28.05,27.85,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A +2012,9,4,4,30,101440,100300,99190,85.42,0,7.2,7.86,8.01,8.09,8.15,8.2,8.23,8.25,8.27,202.25,202.47,202.55,202.63,202.69,202.74,202.8,202.84,202.92000000000002,28.560000000000002,28.19,28.01,27.8,27.61,27.42,27.22,27.03,26.650000000000002,N/A,N/A +2012,9,4,5,30,101460,100320,99210,83.74,0,8.11,8.8,8.950000000000001,9.03,9.08,9.120000000000001,9.13,9.15,9.16,200.42000000000002,200.41,200.45000000000002,200.52,200.58,200.65,200.74,200.82,201,28.57,28.19,28.01,27.810000000000002,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A +2012,9,4,6,30,101460,100320,99210,84.26,0,8.540000000000001,9.32,9.5,9.59,9.66,9.700000000000001,9.73,9.75,9.76,208.28,208.3,208.3,208.3,208.3,208.31,208.31,208.31,208.32,28.490000000000002,28.1,27.92,27.72,27.52,27.330000000000002,27.13,26.94,26.560000000000002,N/A,N/A +2012,9,4,7,30,101490,100340,99240,80.2,0,8.69,9.49,9.67,9.77,9.84,9.89,9.92,9.950000000000001,9.98,217.46,217.66,217.70000000000002,217.72,217.73000000000002,217.74,217.75,217.75,217.75,28.560000000000002,28.19,28.01,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,9,4,8,30,101470,100320,99210,82.37,0,7.930000000000001,8.66,8.83,8.94,9.01,9.07,9.11,9.15,9.200000000000001,222.17000000000002,222.25,222.29,222.32,222.33,222.35,222.36,222.38,222.4,28.5,28.12,27.94,27.740000000000002,27.54,27.35,27.16,26.97,26.59,N/A,N/A +2012,9,4,9,30,101460,100320,99210,81.63,0,7.5200000000000005,8.22,8.38,8.48,8.55,8.6,8.64,8.67,8.72,223.83,223.3,223.08,222.87,222.68,222.51,222.34,222.18,221.87,28.740000000000002,28.38,28.2,28,27.810000000000002,27.62,27.42,27.240000000000002,26.86,N/A,N/A +2012,9,4,10,30,101480,100330,99220,82.51,0,7.37,7.97,8.120000000000001,8.2,8.25,8.28,8.31,8.33,8.35,220.61,220.59,220.6,220.6,220.61,220.62,220.63,220.65,220.68,28.59,28.23,28.05,27.85,27.66,27.46,27.27,27.09,26.71,N/A,N/A +2012,9,4,11,30,101500,100360,99240,82.14,0,8.08,8.77,8.93,9,9.040000000000001,9.06,9.07,9.07,9.05,219.04,219.03,219.06,219.1,219.13,219.18,219.22,219.27,219.37,28.67,28.310000000000002,28.13,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A +2012,9,4,12,30,101490,100340,99230,77.78,0,6.99,7.61,7.75,7.83,7.88,7.91,7.94,7.95,7.97,222.8,223.1,223.25,223.4,223.54,223.67000000000002,223.81,223.94,224.22,28.810000000000002,28.46,28.29,28.080000000000002,27.900000000000002,27.7,27.51,27.32,26.94,N/A,N/A +2012,9,4,13,30,101510,100370,99260,75.71000000000001,0,6.66,7.23,7.3500000000000005,7.42,7.46,7.49,7.51,7.53,7.54,226.33,226.36,226.35,226.35,226.35,226.36,226.38,226.4,226.44,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.05,N/A,N/A +2012,9,4,14,30,101540,100390,99290,77.58,0,5.62,6.140000000000001,6.2700000000000005,6.37,6.45,6.51,6.5600000000000005,6.6000000000000005,6.68,226.67000000000002,227.07,227.28,227.46,227.61,227.74,227.86,227.96,228.16,28.91,28.57,28.400000000000002,28.2,28.01,27.82,27.62,27.43,27.05,N/A,N/A +2012,9,4,15,30,101560,100420,99310,75.42,0,5.7,6.16,6.2700000000000005,6.33,6.38,6.41,6.44,6.46,6.5,230.3,230.15,230.15,230.17000000000002,230.19,230.22,230.25,230.29,230.36,28.96,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,9,4,16,30,101540,100390,99290,78.42,0,5.63,6.01,6.09,6.13,6.16,6.17,6.19,6.2,6.22,227.36,227.53,227.64000000000001,227.76,227.87,227.98000000000002,228.09,228.20000000000002,228.45000000000002,28.810000000000002,28.46,28.29,28.09,27.900000000000002,27.72,27.53,27.34,26.97,N/A,N/A +2012,9,4,17,30,101530,100380,99280,80.14,0,5.79,6.19,6.25,6.2700000000000005,6.28,6.28,6.2700000000000005,6.26,6.23,217.19,217.38,217.48000000000002,217.57,217.65,217.71,217.77,217.82,217.92000000000002,28.8,28.44,28.26,28.060000000000002,27.87,27.68,27.48,27.29,26.91,N/A,N/A +2012,9,4,18,30,101520,100370,99270,79.59,0,5.17,5.5200000000000005,5.6000000000000005,5.64,5.66,5.68,5.69,5.7,5.71,208.86,208.9,208.97,209.01,209.05,209.09,209.13,209.17000000000002,209.25,28.78,28.42,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A +2012,9,4,19,30,101490,100340,99240,80.12,0,5.97,6.4,6.49,6.5200000000000005,6.54,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.54,201.29,201.42000000000002,201.47,201.51,201.54,201.58,201.6,201.62,201.68,28.78,28.41,28.240000000000002,28.04,27.85,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,9,4,20,30,101420,100280,99170,79.52,0,6.45,6.96,7.0600000000000005,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.140000000000001,7.11,200.68,200.84,200.9,200.96,201.01,201.04,201.09,201.13,201.23000000000002,28.810000000000002,28.45,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,9,4,21,30,101380,100230,99130,76.34,0,7.18,7.76,7.87,7.92,7.94,7.95,7.95,7.95,7.92,201.09,201.08,201.09,201.12,201.14000000000001,201.18,201.20000000000002,201.23000000000002,201.29,28.88,28.54,28.36,28.17,27.98,27.79,27.6,27.42,27.05,N/A,N/A +2012,9,4,22,30,101350,100210,99100,78.87,0,6.3500000000000005,6.88,6.99,7.05,7.1000000000000005,7.13,7.16,7.18,7.21,202.49,202.62,202.71,202.8,202.89000000000001,202.98000000000002,203.08,203.17000000000002,203.4,28.84,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.37,27,N/A,N/A +2012,9,4,23,30,101290,100140,99040,81.57000000000001,0,6.84,7.390000000000001,7.51,7.57,7.6000000000000005,7.62,7.640000000000001,7.640000000000001,7.640000000000001,192.45000000000002,192.70000000000002,192.84,192.99,193.11,193.23000000000002,193.36,193.48000000000002,193.74,28.61,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A +2012,9,5,0,30,101290,100150,99040,80.77,0,7.03,7.59,7.7,7.75,7.79,7.8,7.8100000000000005,7.8100000000000005,7.8,197.02,197.18,197.26,197.33,197.38,197.43,197.47,197.52,197.6,28.68,28.32,28.14,27.94,27.75,27.560000000000002,27.37,27.18,26.810000000000002,N/A,N/A +2012,9,5,1,30,101260,100120,99010,79.17,0,6.92,7.47,7.58,7.640000000000001,7.67,7.69,7.7,7.7,7.69,198.54,198.62,198.66,198.70000000000002,198.74,198.78,198.81,198.85,198.93,28.7,28.34,28.16,27.96,27.77,27.580000000000002,27.39,27.21,26.830000000000002,N/A,N/A +2012,9,5,2,30,101260,100110,99010,80.7,0,6.7700000000000005,7.3100000000000005,7.41,7.47,7.5,7.5200000000000005,7.54,7.55,7.5600000000000005,196.32,196.28,196.35,196.44,196.53,196.62,196.73000000000002,196.82,197.06,28.54,28.17,28,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,9,5,3,30,101260,100120,99010,82.05,0,8,8.68,8.83,8.9,8.94,8.97,8.98,8.99,8.98,197.27,197.34,197.41,197.48000000000002,197.55,197.62,197.70000000000002,197.78,197.94,28.51,28.13,27.95,27.75,27.560000000000002,27.37,27.17,26.990000000000002,26.61,N/A,N/A +2012,9,5,4,30,101250,100110,99000,84.15,0,8.03,8.74,8.89,8.97,9.02,9.05,9.06,9.07,9.07,206.43,206.57,206.55,206.52,206.47,206.41,206.33,206.26,206.08,28.39,27.990000000000002,27.810000000000002,27.6,27.41,27.21,27.02,26.830000000000002,26.44,N/A,N/A +2012,9,5,5,30,101240,100090,98990,82.27,0,8.08,8.81,8.96,9.05,9.11,9.15,9.18,9.200000000000001,9.22,212.1,211.79,211.72,211.67000000000002,211.63,211.6,211.57,211.55,211.53,28.52,28.13,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.580000000000002,N/A,N/A +2012,9,5,6,30,101280,100140,99030,84.59,0,7.74,8.38,8.52,8.58,8.63,8.65,8.67,8.67,8.67,205.87,205.94,206.05,206.18,206.29,206.4,206.51,206.61,206.82,28.39,28.01,27.830000000000002,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A +2012,9,5,7,30,101300,100160,99050,83.28,0,7.67,8.4,8.58,8.68,8.75,8.8,8.84,8.870000000000001,8.9,212.6,213.08,213.25,213.41,213.54,213.66,213.77,213.86,214.04,28.55,28.18,28,27.8,27.61,27.41,27.22,27.03,26.64,N/A,N/A +2012,9,5,8,30,101280,100140,99030,83.36,0,7.49,8.23,8.41,8.52,8.6,8.66,8.71,8.75,8.8,215.46,215.53,215.57,215.63,215.68,215.74,215.79,215.84,215.95000000000002,28.55,28.17,27.990000000000002,27.79,27.6,27.400000000000002,27.21,27.02,26.63,N/A,N/A +2012,9,5,9,30,101280,100140,99040,80.13,0,7.92,8.59,8.73,8.8,8.85,8.870000000000001,8.89,8.9,8.91,215.51,216.08,216.39000000000001,216.70000000000002,216.98000000000002,217.24,217.51,217.76,218.27,28.8,28.45,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,9,5,10,30,101310,100170,99060,82.8,0,7.33,7.930000000000001,8.06,8.120000000000001,8.16,8.19,8.2,8.2,8.2,228.62,228.46,228.4,228.35,228.32,228.29,228.28,228.26,228.25,28.580000000000002,28.21,28.03,27.830000000000002,27.64,27.44,27.25,27.060000000000002,26.68,N/A,N/A +2012,9,5,11,30,101290,100150,99040,81.51,0,6.95,7.53,7.66,7.73,7.78,7.8100000000000005,7.83,7.8500000000000005,7.88,223.41,223.63,223.78,223.9,224.02,224.14000000000001,224.25,224.36,224.58,28.580000000000002,28.22,28.04,27.830000000000002,27.64,27.45,27.25,27.07,26.69,N/A,N/A +2012,9,5,12,30,101290,100150,99050,81.72,0,6.2700000000000005,6.8500000000000005,6.99,7.09,7.17,7.23,7.28,7.32,7.4,229.48000000000002,230.08,230.38,230.68,230.95000000000002,231.21,231.47,231.71,232.20000000000002,28.650000000000002,28.29,28.11,27.91,27.72,27.53,27.330000000000002,27.150000000000002,26.77,N/A,N/A +2012,9,5,13,30,101320,100180,99070,79.23,0,6.66,7.16,7.25,7.28,7.29,7.3,7.29,7.28,7.25,243.41,243.18,243.12,243.1,243.07,243.06,243.06,243.06,243.09,28.77,28.42,28.25,28.05,27.86,27.67,27.47,27.29,26.91,N/A,N/A +2012,9,5,14,30,101340,100200,99090,77.15,0,6.51,7.05,7.16,7.23,7.2700000000000005,7.3,7.32,7.34,7.36,241.96,242.49,242.76,243.01,243.24,243.45000000000002,243.66,243.84,244.20000000000002,28.87,28.53,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A +2012,9,5,15,30,101350,100210,99100,79.33,0,6.55,7.01,7.09,7.11,7.12,7.12,7.11,7.1000000000000005,7.0600000000000005,243.39000000000001,243.18,243.06,242.93,242.81,242.70000000000002,242.57,242.46,242.21,28.63,28.27,28.1,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.76,N/A,N/A +2012,9,5,16,30,101360,100210,99110,75.76,0,5.61,6.08,6.18,6.24,6.29,6.32,6.34,6.36,6.390000000000001,243.32,242.96,242.75,242.54,242.35,242.17000000000002,242,241.83,241.49,28.89,28.54,28.37,28.17,27.97,27.79,27.59,27.400000000000002,27.02,N/A,N/A +2012,9,5,17,30,101350,100210,99100,74.93,0,5.33,5.69,5.7700000000000005,5.8100000000000005,5.83,5.8500000000000005,5.86,5.87,5.87,233.07,233.31,233.52,233.72,233.92000000000002,234.1,234.3,234.49,234.87,28.91,28.57,28.400000000000002,28.21,28.02,27.830000000000002,27.64,27.46,27.080000000000002,N/A,N/A +2012,9,5,18,30,101320,100180,99070,79.22,0,5.99,6.46,6.5600000000000005,6.6000000000000005,6.63,6.65,6.66,6.67,6.66,226.37,226.58,226.70000000000002,226.82,226.92000000000002,227.01,227.11,227.19,227.39000000000001,28.73,28.37,28.2,28,27.8,27.61,27.42,27.23,26.85,N/A,N/A +2012,9,5,19,30,101280,100140,99030,79.22,0,6.53,7.04,7.140000000000001,7.19,7.21,7.22,7.23,7.22,7.21,217.47,217.56,217.61,217.65,217.70000000000002,217.74,217.79,217.84,217.95000000000002,28.810000000000002,28.45,28.28,28.080000000000002,27.89,27.7,27.51,27.330000000000002,26.95,N/A,N/A +2012,9,5,20,30,101250,100110,99000,80.21000000000001,0,6.93,7.53,7.640000000000001,7.69,7.72,7.74,7.74,7.73,7.71,213.34,213.49,213.58,213.64000000000001,213.70000000000002,213.75,213.79,213.84,213.94,28.78,28.42,28.240000000000002,28.04,27.86,27.67,27.47,27.29,26.91,N/A,N/A +2012,9,5,21,30,101230,100090,98990,80.2,0,7.29,7.92,8.040000000000001,8.09,8.120000000000001,8.13,8.120000000000001,8.11,8.06,211.92000000000002,212,212,211.97,211.93,211.88,211.81,211.73000000000002,211.55,28.77,28.41,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A +2012,9,5,22,30,101210,100070,98970,77.35000000000001,0,6.68,7.22,7.34,7.390000000000001,7.43,7.45,7.47,7.48,7.49,209.42000000000002,209.54,209.61,209.70000000000002,209.77,209.85,209.93,210.02,210.23000000000002,28.82,28.48,28.3,28.11,27.92,27.740000000000002,27.55,27.37,27,N/A,N/A +2012,9,5,23,30,101200,100050,98950,75.21000000000001,0,6.78,7.34,7.45,7.5,7.54,7.5600000000000005,7.57,7.58,7.59,212.16,212.33,212.44,212.54,212.63,212.72,212.82,212.91,213.1,28.87,28.52,28.35,28.16,27.97,27.79,27.59,27.42,27.05,N/A,N/A +2012,9,6,0,30,101170,100030,98920,73.81,0,7.390000000000001,8,8.13,8.18,8.22,8.23,8.24,8.24,8.22,207.71,207.71,207.74,207.79,207.83,207.88,207.92000000000002,207.95000000000002,208.02,28.810000000000002,28.47,28.3,28.1,27.92,27.73,27.53,27.35,26.97,N/A,N/A +2012,9,6,1,30,101150,100010,98910,74.02,0,7.21,7.8,7.91,7.97,8,8.02,8.040000000000001,8.05,8.08,208.41,208.38,208.38,208.39000000000001,208.39000000000001,208.4,208.42000000000002,208.44,208.52,28.810000000000002,28.47,28.3,28.11,27.93,27.75,27.560000000000002,27.39,27.03,N/A,N/A +2012,9,6,2,30,101180,100030,98930,78.13,0,6.95,7.5,7.59,7.62,7.640000000000001,7.640000000000001,7.63,7.61,7.57,215.29,215.14000000000001,215.04,214.92000000000002,214.78,214.65,214.49,214.34,213.98000000000002,28.55,28.19,28.02,27.82,27.63,27.45,27.25,27.07,26.7,N/A,N/A +2012,9,6,3,30,101190,100050,98940,70.07000000000001,0,6.37,6.93,7.05,7.11,7.16,7.19,7.21,7.22,7.24,213.09,213.42000000000002,213.56,213.67000000000002,213.77,213.86,213.94,214.01,214.14000000000001,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A +2012,9,6,4,30,101190,100050,98940,69.78,0,7.0200000000000005,7.57,7.7,7.78,7.84,7.890000000000001,7.930000000000001,7.97,8.05,219.5,219.42000000000002,219.44,219.46,219.48000000000002,219.5,219.51,219.52,219.48000000000002,28.87,28.55,28.39,28.2,28.02,27.84,27.66,27.48,27.13,N/A,N/A +2012,9,6,5,30,101190,100040,98940,72.63,0,7.41,8,8.1,8.13,8.14,8.13,8.11,8.08,8,221.15,221.08,221.01,220.95000000000002,220.89000000000001,220.83,220.77,220.70000000000002,220.55,28.75,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.45,27.27,26.88,N/A,N/A +2012,9,6,6,30,101250,100100,99000,75.87,0,7.48,8.1,8.21,8.25,8.27,8.26,8.25,8.22,8.15,223.71,223.73000000000002,223.72,223.68,223.65,223.61,223.57,223.52,223.42000000000002,28.580000000000002,28.22,28.04,27.84,27.650000000000002,27.46,27.26,27.07,26.69,N/A,N/A +2012,9,6,7,30,101280,100130,99030,74.92,0,6.55,7.07,7.17,7.22,7.25,7.2700000000000005,7.28,7.28,7.28,227.38,227.41,227.4,227.39000000000001,227.37,227.35,227.34,227.31,227.26,28.57,28.22,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.71,N/A,N/A +2012,9,6,8,30,101310,100170,99060,77.77,0,6.84,7.33,7.41,7.44,7.45,7.45,7.44,7.43,7.38,235.63,235.76,235.82,235.88,235.93,235.97,236.01,236.04,236.11,28.330000000000002,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A +2012,9,6,9,30,101320,100180,99070,76.57000000000001,0,6.18,6.68,6.78,6.84,6.88,6.91,6.93,6.94,6.96,237.81,237.91,237.97,238.03,238.09,238.15,238.20000000000002,238.26,238.37,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.2,27.02,26.63,N/A,N/A +2012,9,6,10,30,101340,100190,99080,79.63,0,6.44,6.9,6.98,7.01,7.0200000000000005,7.0200000000000005,7.01,6.99,6.96,243.8,243.81,243.81,243.83,243.84,243.86,243.88,243.9,243.95000000000002,28.28,27.91,27.73,27.53,27.34,27.150000000000002,26.95,26.76,26.38,N/A,N/A +2012,9,6,11,30,101350,100200,99090,80.22,0,5.49,5.86,5.93,5.97,6,6.0200000000000005,6.04,6.05,6.0600000000000005,243.72,243.52,243.33,243.1,242.87,242.62,242.38,242.14000000000001,241.62,28.19,27.830000000000002,27.650000000000002,27.46,27.26,27.07,26.88,26.7,26.32,N/A,N/A +2012,9,6,12,30,101380,100240,99130,82.21000000000001,0,5.3100000000000005,5.65,5.7,5.73,5.74,5.75,5.74,5.74,5.72,258.96,258.4,257.99,257.58,257.21,256.85,256.49,256.16,255.51000000000002,28.21,27.84,27.66,27.46,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,9,6,13,30,101410,100260,99150,82.65,0,5.24,5.51,5.5200000000000005,5.51,5.49,5.46,5.43,5.4,5.33,277.23,275.47,274.6,273.72,272.94,272.2,271.47,270.79,269.46,27.98,27.61,27.43,27.23,27.04,26.85,26.66,26.47,26.09,N/A,N/A +2012,9,6,14,30,101450,100300,99190,86.18,0,3.7,3.84,3.85,3.83,3.8000000000000003,3.7800000000000002,3.75,3.72,3.65,294.72,293.86,293.37,292.81,292.26,291.68,291,290.32,288.49,27.47,27.09,26.92,26.72,26.53,26.34,26.150000000000002,25.97,25.6,N/A,N/A +2012,9,6,15,30,101450,100310,99190,84.63,0,2.5,2.61,2.63,2.65,2.66,2.68,2.71,2.74,2.86,276.72,275.28000000000003,274.34000000000003,273.28000000000003,272.16,270.95,269.52,268.07,264.23,27.67,27.3,27.13,26.94,26.76,26.580000000000002,26.400000000000002,26.23,25.900000000000002,N/A,N/A +2012,9,6,16,30,101470,100320,99210,83.61,0,2.84,3,3.0300000000000002,3.0500000000000003,3.0700000000000003,3.09,3.1,3.12,3.15,266.96,266.43,266.23,266.02,265.84000000000003,265.66,265.47,265.27,264.86,27.87,27.5,27.32,27.12,26.92,26.740000000000002,26.54,26.35,25.98,N/A,N/A +2012,9,6,17,30,101440,100290,99180,82.24,0,2.93,3.12,3.17,3.21,3.25,3.2800000000000002,3.31,3.34,3.39,242.77,242.84,242.9,242.96,243,243.04,243.07,243.1,243.12,28.11,27.740000000000002,27.560000000000002,27.36,27.17,26.98,26.78,26.6,26.22,N/A,N/A +2012,9,6,18,30,101420,100280,99170,82.67,0,3.48,3.67,3.7,3.73,3.75,3.77,3.79,3.81,3.88,214.37,214.9,215.25,215.65,216.07,216.52,217.07,217.64000000000001,219.25,28.22,27.85,27.68,27.48,27.3,27.12,26.93,26.75,26.41,N/A,N/A +2012,9,6,19,30,101380,100230,99120,80.43,0,3.92,4.15,4.2,4.22,4.23,4.24,4.24,4.25,4.25,208.05,208.46,208.68,208.9,209.12,209.34,209.59,209.83,210.42000000000002,28.55,28.19,28.01,27.810000000000002,27.63,27.44,27.25,27.060000000000002,26.69,N/A,N/A +2012,9,6,20,30,101350,100200,99100,78.91,0,4.96,5.26,5.29,5.3,5.29,5.28,5.26,5.23,5.17,215.42000000000002,215.41,215.4,215.38,215.37,215.35,215.33,215.31,215.28,28.71,28.36,28.18,27.98,27.79,27.6,27.41,27.22,26.84,N/A,N/A +2012,9,6,21,30,101310,100170,99060,81.15,0,5.34,5.65,5.69,5.69,5.68,5.66,5.62,5.59,5.5,209.9,209.78,209.67000000000002,209.57,209.47,209.36,209.24,209.11,208.81,28.54,28.18,28.01,27.8,27.61,27.42,27.23,27.04,26.66,N/A,N/A +2012,9,6,22,30,101280,100140,99030,80.17,0,5.5600000000000005,5.93,5.99,6,6.01,6,5.98,5.96,5.91,213.17000000000002,213.27,213.26,213.26,213.26,213.26,213.25,213.25,213.21,28.55,28.21,28.04,27.84,27.650000000000002,27.46,27.28,27.09,26.73,N/A,N/A +2012,9,6,23,30,101250,100110,99010,79.73,0,6.48,6.94,7.01,7.03,7.03,7.0200000000000005,7,6.98,6.92,215.23000000000002,215.28,215.27,215.24,215.21,215.18,215.14000000000001,215.09,214.96,28.560000000000002,28.21,28.04,27.84,27.650000000000002,27.46,27.28,27.09,26.72,N/A,N/A +2012,9,7,0,30,101210,100070,98960,79.91,0,7.25,7.78,7.86,7.87,7.86,7.82,7.78,7.72,7.58,219.78,219.75,219.75,219.73000000000002,219.71,219.68,219.63,219.57,219.39000000000001,28.5,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.02,26.650000000000002,N/A,N/A +2012,9,7,1,30,101220,100070,98970,78.26,0,6.7700000000000005,7.2700000000000005,7.36,7.38,7.390000000000001,7.37,7.3500000000000005,7.32,7.23,221,221.01,221.02,221.01,221.01,221.01,220.99,220.97,220.88,28.580000000000002,28.240000000000002,28.07,27.87,27.68,27.5,27.310000000000002,27.13,26.76,N/A,N/A +2012,9,7,2,30,101200,100060,98950,79.11,0,6,6.44,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.6000000000000005,6.61,6.62,219.5,219.62,219.67000000000002,219.72,219.76,219.79,219.83,219.86,219.93,28.53,28.18,28.01,27.810000000000002,27.63,27.45,27.26,27.09,26.740000000000002,N/A,N/A +2012,9,7,3,30,101210,100060,98960,76.74,0,6.45,6.91,6.99,7.01,7.0200000000000005,7.01,6.99,6.97,6.91,226.51,226.51,226.49,226.47,226.46,226.44,226.42000000000002,226.41,226.38,28.53,28.19,28.01,27.82,27.63,27.45,27.26,27.080000000000002,26.71,N/A,N/A +2012,9,7,4,30,101210,100060,98960,77.85000000000001,0,6.29,6.74,6.8,6.82,6.82,6.8100000000000005,6.79,6.7700000000000005,6.71,228.69,228.69,228.69,228.68,228.66,228.63,228.6,228.56,228.47,28.47,28.12,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,9,7,5,30,101220,100070,98960,74.14,0,6.41,6.88,6.97,7,7.0200000000000005,7.0200000000000005,7.01,7,6.96,232.47,232.58,232.61,232.64000000000001,232.66,232.69,232.70000000000002,232.71,232.69,28.6,28.26,28.09,27.89,27.7,27.51,27.32,27.14,26.76,N/A,N/A +2012,9,7,6,30,101240,100100,98990,71.85000000000001,0,5.98,6.43,6.5200000000000005,6.5600000000000005,6.59,6.61,6.62,6.63,6.65,237.59,237.73000000000002,237.8,237.87,237.93,237.99,238.06,238.12,238.26,28.77,28.44,28.28,28.080000000000002,27.900000000000002,27.72,27.53,27.35,26.98,N/A,N/A +2012,9,7,7,30,101260,100120,99010,75.32000000000001,0,6.2700000000000005,6.71,6.78,6.79,6.78,6.76,6.73,6.69,6.6000000000000005,238,238.16,238.22,238.29,238.35,238.41,238.47,238.51,238.64000000000001,28.57,28.22,28.05,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A +2012,9,7,8,30,101250,100100,99000,71.67,0,6.38,6.88,6.97,7.01,7.03,7.03,7.0200000000000005,7,6.96,244.59,244.65,244.74,244.86,244.97,245.08,245.19,245.31,245.57,28.73,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,9,7,9,30,101280,100140,99030,75.78,0,5.97,6.390000000000001,6.46,6.49,6.5,6.5,6.49,6.48,6.45,243.57,243.87,243.96,244.05,244.12,244.20000000000002,244.28,244.34,244.49,28.44,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,9,7,10,30,101270,100130,99020,78.99,0,6.24,6.68,6.76,6.79,6.8,6.8,6.78,6.7700000000000005,6.72,251.02,251.33,251.54,251.75,251.95000000000002,252.13,252.31,252.49,252.84,28.25,27.88,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.34,N/A,N/A +2012,9,7,11,30,101300,100160,99050,80.66,0,5.74,6.11,6.17,6.18,6.19,6.18,6.17,6.15,6.11,267.18,266.66,266.39,266.11,265.88,265.64,265.41,265.19,264.74,28.02,27.650000000000002,27.47,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A +2012,9,7,12,30,101300,100150,99040,82.64,0,5.75,6.11,6.17,6.2,6.2,6.2,6.19,6.17,6.140000000000001,266.83,266.42,266.18,265.94,265.71,265.49,265.26,265.05,264.6,27.69,27.3,27.12,26.92,26.73,26.53,26.34,26.150000000000002,25.77,N/A,N/A +2012,9,7,13,30,101320,100170,99060,80.97,0,5.17,5.49,5.55,5.57,5.58,5.58,5.58,5.57,5.55,267.73,267.17,266.84000000000003,266.5,266.19,265.88,265.57,265.26,264.63,27.7,27.32,27.14,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A +2012,9,7,14,30,101340,100190,99080,81.88,0,4.98,5.26,5.3100000000000005,5.32,5.32,5.32,5.3,5.29,5.26,274.17,273.89,273.69,273.49,273.3,273.12,272.91,272.72,272.26,27.48,27.09,26.91,26.71,26.51,26.32,26.13,25.94,25.560000000000002,N/A,N/A +2012,9,7,15,30,101330,100180,99070,81.07000000000001,0,4.69,4.99,5.05,5.09,5.11,5.13,5.15,5.15,5.17,269.71,269.2,268.94,268.69,268.46,268.26,268.05,267.85,267.44,27.57,27.18,26.990000000000002,26.79,26.6,26.41,26.21,26.03,25.650000000000002,N/A,N/A +2012,9,7,16,30,101350,100200,99090,78.33,0,4.57,4.86,4.93,4.96,4.98,5,5.01,5.0200000000000005,5.03,259.71,259.68,259.72,259.77,259.82,259.87,259.93,259.99,260.1,27.86,27.48,27.3,27.1,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,9,7,17,30,101320,100170,99060,78.36,0,3.98,4.21,4.25,4.26,4.2700000000000005,4.28,4.28,4.29,4.29,234.28,234.26,234.29,234.32,234.37,234.43,234.52,234.62,235.05,28,27.63,27.46,27.27,27.09,26.91,26.73,26.560000000000002,26.23,N/A,N/A +2012,9,7,18,30,101260,100120,99010,74.74,0,4.51,4.75,4.7700000000000005,4.7700000000000005,4.76,4.74,4.71,4.68,4.61,211.70000000000002,212.01,212.25,212.49,212.73000000000002,212.97,213.24,213.51,214.23000000000002,28.39,28.03,27.86,27.67,27.490000000000002,27.3,27.12,26.95,26.6,N/A,N/A +2012,9,7,19,30,101260,100120,99010,73.24,0,4.05,4.2700000000000005,4.3,4.3,4.29,4.28,4.25,4.23,4.15,211.36,211.66,211.8,211.94,212.09,212.23000000000002,212.39000000000001,212.53,212.9,28.62,28.27,28.1,27.91,27.72,27.54,27.36,27.18,26.82,N/A,N/A +2012,9,7,20,30,101190,100040,98940,73.86,0,5.18,5.48,5.51,5.51,5.49,5.47,5.43,5.39,5.29,209.8,209.86,209.9,209.93,209.96,209.98000000000002,210,210.02,210.02,28.64,28.29,28.12,27.93,27.740000000000002,27.55,27.36,27.19,26.82,N/A,N/A +2012,9,7,21,30,101170,100030,98920,76.16,0,5.64,6,6.05,6.05,6.04,6.0200000000000005,5.98,5.95,5.87,210.92000000000002,210.95000000000002,210.95000000000002,210.95000000000002,210.95000000000002,210.93,210.91,210.88,210.81,28.51,28.16,27.990000000000002,27.79,27.6,27.41,27.22,27.03,26.66,N/A,N/A +2012,9,7,22,30,101130,99990,98880,77.47,0,6.23,6.67,6.74,6.75,6.76,6.75,6.74,6.71,6.66,207.74,207.8,207.83,207.86,207.87,207.89000000000001,207.91,207.92000000000002,207.93,28.45,28.1,27.93,27.73,27.54,27.36,27.16,26.98,26.6,N/A,N/A +2012,9,7,23,30,101090,99950,98840,76.38,0,6.11,6.5600000000000005,6.65,6.68,6.7,6.71,6.7,6.7,6.67,210.29,210.35,210.37,210.39000000000001,210.4,210.41,210.4,210.38,210.33,28.53,28.19,28.02,27.82,27.63,27.44,27.25,27.07,26.7,N/A,N/A +2012,9,8,0,30,101070,99930,98820,76.34,0,5.8100000000000005,6.22,6.3,6.32,6.33,6.33,6.32,6.3100000000000005,6.2700000000000005,217.57,217.65,217.71,217.76,217.81,217.85,217.89000000000001,217.94,218.02,28.490000000000002,28.150000000000002,27.97,27.77,27.59,27.39,27.2,27.02,26.64,N/A,N/A +2012,9,8,1,30,101060,99910,98810,76.92,0,5.83,6.25,6.32,6.3500000000000005,6.36,6.36,6.3500000000000005,6.34,6.3,217.58,217.59,217.63,217.67000000000002,217.69,217.70000000000002,217.71,217.71,217.70000000000002,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.02,26.64,N/A,N/A +2012,9,8,2,30,101040,99900,98790,78.62,0,6.4,6.87,6.95,6.98,6.99,6.99,6.98,6.96,6.92,222.39000000000001,222.44,222.47,222.5,222.51,222.53,222.53,222.54,222.54,28.43,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.96,26.580000000000002,N/A,N/A +2012,9,8,3,30,101030,99890,98790,77.63,0,6.68,7.19,7.28,7.3100000000000005,7.32,7.32,7.3100000000000005,7.29,7.24,227.73000000000002,227.81,227.85,227.88,227.91,227.94,227.97,228,228.07,28.46,28.11,27.94,27.740000000000002,27.55,27.36,27.17,26.990000000000002,26.61,N/A,N/A +2012,9,8,4,30,101020,99880,98780,78.4,0,6.79,7.28,7.36,7.390000000000001,7.390000000000001,7.38,7.36,7.33,7.2700000000000005,229.75,229.74,229.75,229.75,229.74,229.74,229.72,229.70000000000002,229.67000000000002,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A +2012,9,8,5,30,101040,99900,98790,78.41,0,7.01,7.57,7.69,7.74,7.78,7.79,7.8,7.8100000000000005,7.8,231.19,231.27,231.31,231.34,231.37,231.4,231.42000000000002,231.45000000000002,231.5,28.48,28.13,27.95,27.75,27.57,27.38,27.18,27,26.63,N/A,N/A +2012,9,8,6,30,101060,99920,98810,76.59,0,6.3100000000000005,6.78,6.87,6.9,6.92,6.93,6.92,6.92,6.890000000000001,243.48000000000002,243.43,243.41,243.39000000000001,243.37,243.34,243.32,243.3,243.27,28.54,28.19,28.01,27.82,27.63,27.44,27.25,27.060000000000002,26.69,N/A,N/A +2012,9,8,7,30,101090,99950,98850,75.59,0,6.51,7,7.1000000000000005,7.140000000000001,7.16,7.17,7.18,7.18,7.17,235.15,235.24,235.3,235.36,235.43,235.49,235.57,235.64000000000001,235.8,28.68,28.330000000000002,28.16,27.96,27.77,27.59,27.39,27.21,26.84,N/A,N/A +2012,9,8,8,30,101150,100010,98900,76.28,0,5.98,6.45,6.53,6.58,6.6000000000000005,6.61,6.61,6.61,6.59,243.22,243.32,243.38,243.44,243.5,243.56,243.63,243.71,243.86,28.62,28.27,28.09,27.900000000000002,27.71,27.51,27.32,27.13,26.75,N/A,N/A +2012,9,8,9,30,101150,100010,98900,76.25,0,6.68,7.22,7.33,7.390000000000001,7.42,7.44,7.45,7.45,7.45,248.96,249.07,249.14000000000001,249.23000000000002,249.31,249.4,249.49,249.57,249.76000000000002,28.64,28.29,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.77,N/A,N/A +2012,9,8,10,30,101180,100040,98930,76.78,0,6.83,7.390000000000001,7.51,7.5600000000000005,7.6000000000000005,7.62,7.62,7.63,7.61,250.81,250.77,250.79,250.81,250.85,250.9,250.94,250.99,251.11,28.6,28.25,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A +2012,9,8,11,30,101230,100080,98980,77.15,0,6.04,6.5,6.6000000000000005,6.65,6.69,6.71,6.73,6.75,6.7700000000000005,267.33,266.81,266.5,266.17,265.88,265.58,265.28000000000003,264.98,264.36,28.52,28.17,27.990000000000002,27.79,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,9,8,12,30,101300,100150,99040,77.46000000000001,0,7.62,8.23,8.35,8.4,8.44,8.45,8.45,8.44,8.42,284.79,284.40000000000003,284.14,283.87,283.63,283.39,283.15000000000003,282.92,282.45,28.19,27.810000000000002,27.63,27.42,27.23,27.04,26.85,26.66,26.28,N/A,N/A +2012,9,8,13,30,101340,100190,99070,79.51,0,8.13,8.76,8.89,8.950000000000001,8.98,9,9,9,8.98,290.81,290.77,290.7,290.63,290.56,290.49,290.42,290.34000000000003,290.18,27.37,26.94,26.75,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,8,14,30,101360,100210,99090,79.12,0,6.92,7.41,7.51,7.5600000000000005,7.59,7.61,7.62,7.62,7.63,295.89,296.09000000000003,296.22,296.36,296.49,296.61,296.74,296.86,297.13,27.060000000000002,26.63,26.44,26.240000000000002,26.04,25.86,25.66,25.48,25.11,N/A,N/A +2012,9,8,15,30,101360,100210,99100,75.24,0,5.69,6.09,6.18,6.24,6.28,6.3100000000000005,6.34,6.36,6.390000000000001,307.97,308.11,308.19,308.24,308.29,308.33,308.35,308.37,308.38,27.59,27.2,27.01,26.810000000000002,26.62,26.43,26.23,26.05,25.67,N/A,N/A +2012,9,8,16,30,101340,100200,99090,67.99,0,5.86,6.25,6.32,6.34,6.3500000000000005,6.34,6.34,6.33,6.32,318.75,317.99,317.54,317.08,316.66,316.25,315.82,315.41,314.56,28.38,28.04,27.87,27.68,27.5,27.32,27.13,26.96,26.6,N/A,N/A +2012,9,8,17,30,101340,100190,99080,67.33,0,5.57,6.03,6.13,6.2,6.26,6.3,6.33,6.36,6.41,320.74,321.46,321.85,322.23,322.57,322.89,323.19,323.47,324.02,28.91,28.580000000000002,28.42,28.22,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A +2012,9,8,18,30,101320,100180,99070,63.28,0,4.96,5.42,5.53,5.61,5.67,5.72,5.76,5.8,5.88,318.38,319.09000000000003,319.53000000000003,319.92,320.27,320.6,320.91,321.21,321.79,29.63,29.35,29.2,29,28.82,28.63,28.44,28.26,27.88,N/A,N/A +2012,9,8,19,30,101280,100140,99040,60.980000000000004,0,5,5.48,5.6000000000000005,5.68,5.74,5.79,5.83,5.87,5.94,331.31,331.13,331.03000000000003,330.92,330.83,330.74,330.65000000000003,330.57,330.37,30.240000000000002,30,29.85,29.67,29.490000000000002,29.310000000000002,29.12,28.94,28.57,N/A,N/A +2012,9,8,20,30,101250,100110,99010,60,0,4.48,4.93,5.05,5.13,5.2,5.26,5.32,5.37,5.49,332.79,332.71,332.71,332.69,332.67,332.66,332.64,332.63,332.64,30.68,30.490000000000002,30.36,30.18,30.01,29.84,29.66,29.490000000000002,29.14,N/A,N/A +2012,9,8,21,30,101210,100080,98980,60.58,0,4.78,5.24,5.3500000000000005,5.43,5.5,5.57,5.67,5.79,6.12,325.66,326.01,326.26,326.54,326.85,327.23,327.83,328.51,331.28000000000003,31.060000000000002,30.93,30.82,30.67,30.52,30.37,30.23,30.1,29.84,N/A,N/A +2012,9,8,22,30,101200,100070,98970,72.62,0,8.51,9.47,9.69,9.81,9.89,9.93,9.950000000000001,9.96,9.92,351.63,352.3,352.55,352.78000000000003,352.97,353.15000000000003,353.32,353.48,353.76,30.48,30.29,30.16,29.98,29.810000000000002,29.64,29.46,29.29,28.94,N/A,N/A +2012,9,8,23,30,101230,100100,99000,71.16,0,8.2,9.06,9.26,9.370000000000001,9.44,9.48,9.49,9.5,9.49,357.81,358.08,358.23,358.37,358.49,358.6,358.7,358.8,358.99,30.330000000000002,30.13,29.990000000000002,29.810000000000002,29.64,29.46,29.28,29.1,28.73,N/A,N/A +2012,9,9,0,30,101280,100140,99040,70.10000000000001,0,8.49,9.34,9.540000000000001,9.66,9.74,9.790000000000001,9.83,9.86,9.89,3.62,3.74,3.77,3.8000000000000003,3.8200000000000003,3.83,3.85,3.86,3.88,29.93,29.68,29.53,29.34,29.16,28.97,28.78,28.6,28.22,N/A,N/A +2012,9,9,1,30,101350,100210,99100,73.2,0,10.61,11.65,11.88,12,12.08,12.13,12.15,12.17,12.17,11.85,12.22,12.42,12.61,12.77,12.93,13.08,13.22,13.49,28.62,28.26,28.080000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A +2012,9,9,2,30,101390,100240,99130,75.16,0,11.43,12.530000000000001,12.790000000000001,12.91,12.99,13.040000000000001,13.07,13.08,13.07,17.62,17.69,17.72,17.75,17.78,17.8,17.830000000000002,17.85,17.900000000000002,27.580000000000002,27.14,26.94,26.73,26.53,26.330000000000002,26.13,25.95,25.560000000000002,N/A,N/A +2012,9,9,3,30,101440,100290,99170,75.16,0,10.34,11.290000000000001,11.5,11.620000000000001,11.69,11.74,11.77,11.8,11.81,27.7,27.91,27.990000000000002,28.07,28.14,28.21,28.27,28.330000000000002,28.45,27.27,26.810000000000002,26.62,26.41,26.2,26.01,25.810000000000002,25.62,25.23,N/A,N/A +2012,9,9,4,30,101470,100310,99190,72.96000000000001,0,10.13,11.05,11.27,11.39,11.47,11.52,11.56,11.59,11.620000000000001,33.06,33.22,33.29,33.36,33.42,33.480000000000004,33.54,33.59,33.69,27.19,26.73,26.53,26.32,26.12,25.92,25.72,25.53,25.14,N/A,N/A +2012,9,9,5,30,101470,100310,99200,71.68,0,10.32,11.27,11.5,11.61,11.69,11.74,11.78,11.8,11.83,33.6,33.79,33.94,34.07,34.18,34.29,34.4,34.5,34.7,27.11,26.650000000000002,26.45,26.23,26.03,25.84,25.63,25.44,25.05,N/A,N/A +2012,9,9,6,30,101530,100370,99250,73.63,0,9.71,10.53,10.72,10.82,10.870000000000001,10.91,10.93,10.950000000000001,10.950000000000001,39.32,39.71,39.93,40.15,40.34,40.51,40.69,40.85,41.18,26.830000000000002,26.35,26.16,25.94,25.740000000000002,25.54,25.34,25.150000000000002,24.76,N/A,N/A +2012,9,9,7,30,101570,100410,99290,70.78,0,9.31,10.09,10.25,10.34,10.39,10.43,10.44,10.46,10.46,38.54,39,39.28,39.56,39.800000000000004,40.04,40.27,40.47,40.89,26.740000000000002,26.26,26.05,25.84,25.64,25.44,25.240000000000002,25.05,24.66,N/A,N/A +2012,9,9,8,30,101600,100440,99320,69.11,0,9.94,10.81,11,11.11,11.19,11.24,11.27,11.290000000000001,11.32,47.15,47.25,47.31,47.36,47.39,47.42,47.44,47.46,47.480000000000004,26.47,25.97,25.76,25.55,25.34,25.14,24.93,24.740000000000002,24.35,N/A,N/A +2012,9,9,9,30,101630,100470,99340,65.8,0,9.6,10.38,10.55,10.64,10.700000000000001,10.73,10.75,10.76,10.77,45.06,45.19,45.27,45.34,45.4,45.46,45.52,45.57,45.68,26.16,25.650000000000002,25.45,25.23,25.02,24.830000000000002,24.62,24.43,24.04,N/A,N/A +2012,9,9,10,30,101650,100490,99360,68.41,0,9.32,10.06,10.23,10.31,10.36,10.4,10.42,10.43,10.44,44.85,45.03,45.13,45.230000000000004,45.31,45.39,45.47,45.54,45.68,25.73,25.2,24.98,24.76,24.560000000000002,24.36,24.150000000000002,23.96,23.56,N/A,N/A +2012,9,9,11,30,101710,100540,99410,67.95,0,8.82,9.46,9.59,9.64,9.67,9.69,9.700000000000001,9.700000000000001,9.68,39.46,39.95,40.25,40.54,40.79,41.03,41.26,41.480000000000004,41.92,25.35,24.82,24.6,24.38,24.18,23.98,23.78,23.59,23.19,N/A,N/A +2012,9,9,12,30,101750,100580,99450,65.11,0,8.44,9.02,9.13,9.17,9.19,9.200000000000001,9.19,9.18,9.14,38.160000000000004,38.6,38.86,39.11,39.33,39.54,39.76,39.95,40.35,25.04,24.5,24.28,24.07,23.86,23.66,23.46,23.27,22.88,N/A,N/A +2012,9,9,13,30,101760,100590,99460,64.32000000000001,0,8.55,9.14,9.25,9.290000000000001,9.31,9.32,9.31,9.3,9.27,35.68,36.06,36.28,36.49,36.68,36.85,37.03,37.19,37.52,24.79,24.240000000000002,24.02,23.81,23.6,23.400000000000002,23.2,23.01,22.62,N/A,N/A +2012,9,9,14,30,101810,100640,99500,62.28,0,8.07,8.6,8.69,8.73,8.74,8.75,8.74,8.73,8.700000000000001,34.93,35.29,35.51,35.71,35.89,36.050000000000004,36.22,36.37,36.67,24.62,24.060000000000002,23.85,23.63,23.42,23.23,23.02,22.84,22.44,N/A,N/A +2012,9,9,15,30,101820,100650,99520,58.69,0,7.87,8.41,8.51,8.55,8.58,8.59,8.59,8.59,8.58,34.77,35.01,35.15,35.29,35.410000000000004,35.52,35.62,35.72,35.93,24.75,24.21,23.990000000000002,23.78,23.57,23.38,23.17,22.98,22.59,N/A,N/A +2012,9,9,16,30,101840,100670,99530,53.72,0,6.93,7.390000000000001,7.49,7.54,7.57,7.6000000000000005,7.61,7.62,7.640000000000001,35.11,35.21,35.28,35.33,35.37,35.4,35.43,35.46,35.51,25.060000000000002,24.55,24.34,24.13,23.92,23.73,23.53,23.34,22.94,N/A,N/A +2012,9,9,17,30,101810,100640,99500,50.15,0,5.03,5.36,5.44,5.49,5.53,5.57,5.6000000000000005,5.62,5.67,37.97,37.5,37.22,36.96,36.71,36.47,36.230000000000004,36.01,35.54,25.53,25.07,24.87,24.66,24.46,24.27,24.060000000000002,23.88,23.490000000000002,N/A,N/A +2012,9,9,18,30,101780,100620,99490,48.01,0,4.12,4.4,4.47,4.54,4.58,4.63,4.67,4.71,4.79,43.7,42.230000000000004,41.37,40.57,39.85,39.19,38.56,37.980000000000004,36.82,26.240000000000002,25.810000000000002,25.63,25.42,25.23,25.04,24.84,24.650000000000002,24.26,N/A,N/A +2012,9,9,19,30,101760,100600,99470,45.87,0,3.19,3.35,3.38,3.41,3.43,3.45,3.48,3.5,3.5500000000000003,63.76,60.5,58.53,56.74,55.13,53.65,52.230000000000004,50.93,48.42,26.93,26.55,26.37,26.17,25.98,25.8,25.6,25.42,25.03,N/A,N/A +2012,9,9,20,30,101710,100550,99420,49.910000000000004,0,3.29,3.42,3.42,3.41,3.39,3.38,3.36,3.35,3.31,82.82000000000001,81.82000000000001,81.13,80.43,79.75,79.09,78.36,77.69,76.09,26.79,26.400000000000002,26.22,26.02,25.830000000000002,25.64,25.44,25.26,24.88,N/A,N/A +2012,9,9,21,30,101680,100520,99390,49.46,0,2.75,2.86,2.87,2.87,2.86,2.85,2.85,2.84,2.82,83.19,82.17,81.58,80.96000000000001,80.37,79.82000000000001,79.21000000000001,78.64,77.35000000000001,27.04,26.66,26.48,26.28,26.09,25.900000000000002,25.7,25.52,25.13,N/A,N/A +2012,9,9,22,30,101650,100490,99360,48.39,0,2.05,2.16,2.18,2.2,2.22,2.23,2.24,2.2600000000000002,2.29,79.57000000000001,78.42,77.7,76.99,76.31,75.65,74.97,74.33,72.84,27.34,26.97,26.79,26.59,26.400000000000002,26.21,26.02,25.830000000000002,25.45,N/A,N/A +2012,9,9,23,30,101640,100480,99360,47.95,0,1.1500000000000001,1.21,1.24,1.25,1.28,1.29,1.31,1.33,1.3800000000000001,96.27,94.27,93.15,92.06,91.03,90.04,88.99,87.99,85.83,27.580000000000002,27.23,27.05,26.85,26.66,26.47,26.28,26.09,25.71,N/A,N/A +2012,9,10,0,30,101640,100480,99360,48.82,0,0.99,1.11,1.17,1.23,1.28,1.34,1.4000000000000001,1.45,1.57,350.34000000000003,352.13,353.2,354.13,354.94,355.65000000000003,356.32,356.93,358.08,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.34,25.95,N/A,N/A +2012,9,10,1,30,101640,100490,99370,47.54,0,6.8100000000000005,7.2,7.22,7.2,7.17,7.13,7.08,7.03,6.93,28.54,28.44,28.39,28.35,28.32,28.3,28.29,28.27,28.28,28.14,27.78,27.6,27.400000000000002,27.21,27.02,26.82,26.64,26.25,N/A,N/A +2012,9,10,2,30,101660,100510,99380,51.81,0,7.17,7.66,7.74,7.7700000000000005,7.78,7.78,7.7700000000000005,7.76,7.72,26.63,26.85,26.93,27.02,27.09,27.150000000000002,27.22,27.29,27.42,27.51,27.11,26.92,26.72,26.52,26.34,26.13,25.95,25.560000000000002,N/A,N/A +2012,9,10,3,30,101700,100540,99420,51.81,0,6.69,7.13,7.21,7.24,7.25,7.25,7.24,7.24,7.21,35.22,35.36,35.43,35.5,35.56,35.62,35.68,35.74,35.87,27.3,26.89,26.71,26.5,26.310000000000002,26.11,25.91,25.73,25.34,N/A,N/A +2012,9,10,4,30,101680,100520,99400,53.64,0,5.72,6.05,6.11,6.13,6.13,6.140000000000001,6.13,6.13,6.1000000000000005,40.38,40.67,40.85,41.01,41.17,41.300000000000004,41.45,41.57,41.84,27.14,26.740000000000002,26.55,26.34,26.150000000000002,25.96,25.76,25.57,25.18,N/A,N/A +2012,9,10,5,30,101690,100530,99410,54.730000000000004,0,5.36,5.68,5.73,5.76,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,48.89,49.17,49.32,49.47,49.59,49.71,49.83,49.94,50.15,27.14,26.73,26.54,26.34,26.14,25.95,25.75,25.560000000000002,25.17,N/A,N/A +2012,9,10,6,30,101700,100540,99420,54.65,0,5.2,5.5,5.55,5.5600000000000005,5.57,5.57,5.57,5.57,5.55,55.63,55.88,56.06,56.24,56.39,56.54,56.7,56.83,57.11,27.02,26.62,26.44,26.240000000000002,26.04,25.85,25.650000000000002,25.46,25.07,N/A,N/A +2012,9,10,7,30,101720,100560,99430,54.03,0,5.63,5.97,6.03,6.05,6.0600000000000005,6.0600000000000005,6.0600000000000005,6.0600000000000005,6.04,63.24,63.03,62.89,62.76,62.63,62.52,62.4,62.300000000000004,62.1,27.01,26.61,26.42,26.22,26.02,25.830000000000002,25.63,25.44,25.05,N/A,N/A +2012,9,10,8,30,101720,100560,99430,54.61,0,5.25,5.55,5.6000000000000005,5.62,5.62,5.62,5.61,5.61,5.59,49.6,50.09,50.43,50.76,51.06,51.34,51.620000000000005,51.88,52.4,26.88,26.48,26.29,26.09,25.89,25.7,25.5,25.310000000000002,24.92,N/A,N/A +2012,9,10,9,30,101730,100570,99440,54.27,0,4.89,5.15,5.19,5.21,5.22,5.22,5.22,5.22,5.21,72.93,72,71.41,70.84,70.31,69.82000000000001,69.33,68.88,67.96000000000001,26.76,26.35,26.16,25.96,25.76,25.57,25.37,25.18,24.78,N/A,N/A +2012,9,10,10,30,101740,100580,99450,56.980000000000004,0,5.83,6.16,6.21,6.23,6.23,6.23,6.22,6.2,6.17,49.67,49.92,50.08,50.22,50.35,50.47,50.59,50.7,50.92,26.61,26.19,26,25.79,25.59,25.400000000000002,25.2,25.01,24.61,N/A,N/A +2012,9,10,11,30,101750,100590,99460,56.88,0,5.3500000000000005,5.64,5.67,5.68,5.68,5.68,5.67,5.66,5.63,66.8,66.22,65.83,65.44,65.08,64.75,64.41,64.11,63.480000000000004,26.44,26.02,25.830000000000002,25.62,25.42,25.22,25.02,24.830000000000002,24.44,N/A,N/A +2012,9,10,12,30,101790,100620,99490,54.59,0,3.96,4.19,4.23,4.25,4.2700000000000005,4.28,4.29,4.29,4.3,46.01,46.92,47.52,48.09,48.620000000000005,49.120000000000005,49.61,50.07,51,26.26,25.85,25.66,25.45,25.26,25.060000000000002,24.86,24.67,24.28,N/A,N/A +2012,9,10,13,30,101800,100630,99500,57.1,0,4.94,5.08,5.04,4.98,4.92,4.86,4.8100000000000005,4.75,4.65,75.13,74.51,74.05,73.58,73.14,72.72,72.28,71.86,71.01,26.13,25.7,25.51,25.310000000000002,25.11,24.92,24.72,24.53,24.14,N/A,N/A +2012,9,10,14,30,101840,100670,99550,59.18,0,4.89,5.18,5.24,5.28,5.3,5.32,5.34,5.3500000000000005,5.37,65.02,65.33,65.31,65.25,65.17,65.08,64.98,64.88,64.65,26.080000000000002,25.650000000000002,25.46,25.25,25.05,24.85,24.650000000000002,24.46,24.07,N/A,N/A +2012,9,10,15,30,101850,100690,99560,60.160000000000004,0,4.96,5.24,5.29,5.32,5.34,5.36,5.37,5.38,5.4,74.96000000000001,73.77,73.10000000000001,72.48,71.94,71.45,70.97,70.55,69.71000000000001,26.05,25.61,25.42,25.21,25.01,24.82,24.61,24.43,24.03,N/A,N/A +2012,9,10,16,30,101870,100700,99570,60.85,0,5.6000000000000005,5.91,5.96,5.98,5.98,5.98,5.98,5.97,5.95,65.65,65.5,65.41,65.33,65.25,65.17,65.1,65.03,64.89,25.96,25.51,25.32,25.11,24.91,24.71,24.51,24.32,23.92,N/A,N/A +2012,9,10,17,30,101850,100690,99560,64.04,0,6.43,6.82,6.890000000000001,6.91,6.92,6.93,6.93,6.92,6.91,50.02,50.85,51.32,51.77,52.2,52.59,52.980000000000004,53.35,54.1,25.76,25.3,25.1,24.89,24.68,24.490000000000002,24.29,24.1,23.71,N/A,N/A +2012,9,10,18,30,101830,100670,99540,63.85,0,5.04,5.29,5.32,5.33,5.33,5.32,5.3,5.29,5.26,72.15,72.75,73.04,73.31,73.54,73.76,73.98,74.17,74.54,25.84,25.400000000000002,25.2,25,24.8,24.6,24.400000000000002,24.21,23.82,N/A,N/A +2012,9,10,19,30,101820,100660,99530,59.31,0,4.38,4.59,4.62,4.63,4.63,4.63,4.62,4.61,4.59,98.14,97.95,97.85000000000001,97.74000000000001,97.63,97.53,97.42,97.31,97.07000000000001,26.060000000000002,25.64,25.45,25.25,25.05,24.86,24.66,24.47,24.080000000000002,N/A,N/A +2012,9,10,20,30,101770,100600,99480,60,0,4.44,4.69,4.74,4.7700000000000005,4.79,4.8,4.8100000000000005,4.82,4.82,101.8,101.44,101.23,101.02,100.82000000000001,100.65,100.47,100.3,99.94,26.14,25.72,25.53,25.32,25.12,24.93,24.73,24.54,24.16,N/A,N/A +2012,9,10,21,30,101750,100580,99460,57.84,0,4.25,4.49,4.54,4.5600000000000005,4.57,4.59,4.6000000000000005,4.6000000000000005,4.61,104.92,104.63,104.46000000000001,104.3,104.15,103.99000000000001,103.84,103.69,103.38,26.36,25.95,25.76,25.560000000000002,25.36,25.17,24.97,24.78,24.39,N/A,N/A +2012,9,10,22,30,101720,100550,99430,55.82,0,4.73,5.0200000000000005,5.07,5.11,5.13,5.15,5.16,5.17,5.19,103.63,103.26,103.04,102.82000000000001,102.61,102.41,102.19,101.99000000000001,101.56,26.560000000000002,26.150000000000002,25.96,25.76,25.560000000000002,25.37,25.17,24.990000000000002,24.6,N/A,N/A +2012,9,10,23,30,101720,100560,99430,54.84,0,5.64,6.0200000000000005,6.1000000000000005,6.15,6.18,6.2,6.22,6.23,6.25,113.9,113.4,113.13,112.85000000000001,112.60000000000001,112.36,112.10000000000001,111.87,111.36,26.78,26.38,26.19,25.990000000000002,25.79,25.6,25.400000000000002,25.22,24.830000000000002,N/A,N/A +2012,9,11,0,30,101690,100530,99400,56.04,0,5.55,5.93,6.01,6.05,6.08,6.1000000000000005,6.12,6.13,6.16,112.23,111.77,111.49000000000001,111.22,110.97,110.73,110.48,110.26,109.76,26.87,26.46,26.28,26.080000000000002,25.88,25.69,25.490000000000002,25.310000000000002,24.92,N/A,N/A +2012,9,11,1,30,101680,100520,99400,54.19,0,6.140000000000001,6.59,6.69,6.74,6.78,6.8100000000000005,6.84,6.86,6.890000000000001,110.82000000000001,110.33,110.06,109.81,109.58,109.35000000000001,109.13,108.92,108.47,27.05,26.650000000000002,26.46,26.26,26.060000000000002,25.87,25.67,25.490000000000002,25.1,N/A,N/A +2012,9,11,2,30,101700,100540,99420,56.6,0,6.5200000000000005,7,7.1000000000000005,7.16,7.2,7.23,7.25,7.2700000000000005,7.29,108.75,108.4,108.2,108,107.82000000000001,107.64,107.46000000000001,107.3,106.95,27.080000000000002,26.68,26.490000000000002,26.29,26.09,25.900000000000002,25.7,25.52,25.13,N/A,N/A +2012,9,11,3,30,101690,100530,99410,58.46,0,6.15,6.58,6.67,6.72,6.76,6.79,6.8100000000000005,6.82,6.8500000000000005,105.26,105,104.82000000000001,104.65,104.48,104.32000000000001,104.16,104.01,103.69,27.01,26.6,26.42,26.21,26.02,25.82,25.62,25.44,25.04,N/A,N/A +2012,9,11,4,30,101700,100540,99420,62.02,0,6.2,6.65,6.74,6.8,6.84,6.87,6.890000000000001,6.91,6.93,105.98,106.06,106.02,105.95,105.88,105.81,105.72,105.65,105.48,26.900000000000002,26.490000000000002,26.3,26.09,25.89,25.69,25.490000000000002,25.3,24.91,N/A,N/A +2012,9,11,5,30,101700,100540,99420,61.04,0,6.390000000000001,6.8500000000000005,6.96,7.03,7.07,7.11,7.140000000000001,7.16,7.2,105.68,105.61,105.55,105.49000000000001,105.44,105.38,105.33,105.28,105.19,26.88,26.46,26.27,26.060000000000002,25.87,25.67,25.47,25.28,24.89,N/A,N/A +2012,9,11,6,30,101710,100550,99420,59.36,0,6.09,6.640000000000001,6.78,6.890000000000001,6.97,7.03,7.09,7.140000000000001,7.22,102.73,103.62,103.98,104.26,104.49000000000001,104.69,104.86,105.01,105.26,26.97,26.57,26.39,26.19,25.990000000000002,25.8,25.6,25.41,25.02,N/A,N/A +2012,9,11,7,30,101720,100560,99440,58.43,0,7.390000000000001,7.92,7.99,8.02,8.02,8.02,8,7.98,7.930000000000001,117.26,117.25,117.23,117.21000000000001,117.19,117.18,117.16,117.13,117.08,27.07,26.68,26.490000000000002,26.29,26.09,25.900000000000002,25.69,25.51,25.12,N/A,N/A +2012,9,11,8,30,101730,100570,99440,55.77,0,4.51,4.82,4.9,4.96,5.01,5.0600000000000005,5.1000000000000005,5.13,5.21,109.91,110.18,110.39,110.58,110.75,110.9,111.06,111.21000000000001,111.48,26.73,26.34,26.150000000000002,25.95,25.75,25.560000000000002,25.36,25.17,24.77,N/A,N/A +2012,9,11,9,30,101740,100580,99450,61.93,0,5.48,5.78,5.8100000000000005,5.8100000000000005,5.8,5.78,5.76,5.74,5.69,126.92,126.9,126.9,126.9,126.9,126.9,126.91,126.91,126.91,26.54,26.13,25.94,25.73,25.53,25.34,25.14,24.95,24.560000000000002,N/A,N/A +2012,9,11,10,30,101760,100600,99470,59.78,0,5.57,5.84,5.87,5.87,5.86,5.8500000000000005,5.83,5.8100000000000005,5.7700000000000005,125.37,124.75,124.43,124.13000000000001,123.85000000000001,123.61,123.36,123.14,122.7,26.59,26.18,26,25.79,25.59,25.400000000000002,25.2,25.01,24.62,N/A,N/A +2012,9,11,11,30,101770,100610,99480,58.160000000000004,0,3.99,4.26,4.34,4.4,4.45,4.5,4.54,4.58,4.65,125.81,125.27,125.01,124.78,124.57000000000001,124.4,124.23,124.07000000000001,123.78,26.77,26.38,26.2,26,25.8,25.61,25.41,25.22,24.830000000000002,N/A,N/A +2012,9,11,12,30,101790,100630,99510,62.15,0,4.69,4.96,5.01,5.03,5.05,5.0600000000000005,5.07,5.08,5.09,109.08,109.4,109.60000000000001,109.78,109.94,110.10000000000001,110.25,110.39,110.67,26.78,26.38,26.2,25.990000000000002,25.8,25.61,25.400000000000002,25.22,24.830000000000002,N/A,N/A +2012,9,11,13,30,101790,100630,99500,64.64,0,4.66,4.92,4.96,4.97,4.98,4.99,4.99,4.98,4.97,105.83,105.5,105.31,105.08,104.87,104.67,104.46000000000001,104.26,103.86,26.92,26.54,26.35,26.150000000000002,25.95,25.76,25.560000000000002,25.37,24.98,N/A,N/A +2012,9,11,14,30,101830,100670,99550,66.08,0,4.47,4.76,4.82,4.86,4.89,4.91,4.93,4.94,4.97,85.53,86.79,87.5,88.18,88.78,89.35000000000001,89.9,90.41,91.43,26.98,26.59,26.41,26.21,26.01,25.82,25.62,25.43,25.04,N/A,N/A +2012,9,11,15,30,101840,100680,99560,68.42,0,5.23,5.5200000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,100.73,100.60000000000001,100.65,100.74000000000001,100.84,100.95,101.07000000000001,101.19,101.45,27.080000000000002,26.69,26.51,26.3,26.11,25.91,25.72,25.53,25.14,N/A,N/A +2012,9,11,16,30,101810,100650,99530,71.47,0,5.25,5.6000000000000005,5.67,5.7,5.73,5.74,5.75,5.76,5.7700000000000005,82.46000000000001,82.84,83.11,83.37,83.61,83.84,84.09,84.32000000000001,84.8,27.12,26.740000000000002,26.55,26.35,26.16,25.96,25.76,25.580000000000002,25.19,N/A,N/A +2012,9,11,17,30,101790,100640,99520,72.27,0,5.94,6.38,6.48,6.53,6.57,6.6000000000000005,6.62,6.640000000000001,6.67,90.2,89.76,89.47,89.17,88.89,88.63,88.38,88.14,87.69,27.240000000000002,26.85,26.67,26.46,26.27,26.080000000000002,25.88,25.69,25.310000000000002,N/A,N/A +2012,9,11,18,30,101800,100650,99530,71.87,0,7.58,8.2,8.34,8.43,8.49,8.540000000000001,8.57,8.6,8.64,94.93,94.7,94.63,94.60000000000001,94.60000000000001,94.62,94.66,94.7,94.83,27.38,26.98,26.8,26.59,26.400000000000002,26.2,26,25.810000000000002,25.42,N/A,N/A +2012,9,11,19,30,101770,100620,99500,73.10000000000001,0,8.19,8.870000000000001,9.02,9.08,9.120000000000001,9.14,9.16,9.16,9.16,92.56,93.14,93.46000000000001,93.78,94.07000000000001,94.33,94.60000000000001,94.84,95.31,27.39,26.990000000000002,26.810000000000002,26.6,26.400000000000002,26.21,26.01,25.82,25.43,N/A,N/A +2012,9,11,20,30,101760,100610,99490,75.28,0,7.68,8.32,8.46,8.55,8.61,8.66,8.69,8.71,8.74,100.75,101.17,101.37,101.55,101.71000000000001,101.86,101.99000000000001,102.13,102.36,27.38,26.990000000000002,26.810000000000002,26.6,26.400000000000002,26.2,26.01,25.82,25.43,N/A,N/A +2012,9,11,21,30,101730,100580,99460,76.26,0,8.44,9.200000000000001,9.370000000000001,9.48,9.55,9.6,9.64,9.67,9.71,100.79,101.12,101.32000000000001,101.53,101.71000000000001,101.89,102.07000000000001,102.24000000000001,102.57000000000001,27.46,27.060000000000002,26.88,26.67,26.47,26.28,26.080000000000002,25.89,25.51,N/A,N/A +2012,9,11,22,30,101690,100540,99420,76.08,0,7.47,8.09,8.23,8.31,8.370000000000001,8.41,8.44,8.45,8.48,102.14,102.38,102.51,102.62,102.72,102.81,102.9,102.98,103.13,27.5,27.12,26.93,26.73,26.53,26.34,26.14,25.95,25.57,N/A,N/A +2012,9,11,23,30,101720,100560,99450,75.7,0,8.56,9.32,9.5,9.6,9.67,9.71,9.74,9.77,9.790000000000001,110.28,110.26,110.23,110.19,110.15,110.11,110.07000000000001,110.03,109.94,27.67,27.29,27.11,26.900000000000002,26.71,26.51,26.32,26.13,25.740000000000002,N/A,N/A +2012,9,12,0,30,101670,100510,99400,77.62,0,8.05,8.76,8.91,9.01,9.06,9.11,9.14,9.16,9.19,107.41,107.77,107.97,108.15,108.31,108.45,108.60000000000001,108.74000000000001,109,27.62,27.23,27.05,26.85,26.650000000000002,26.46,26.26,26.07,25.69,N/A,N/A +2012,9,12,1,30,101640,100490,99370,79.37,0,7.7700000000000005,8.45,8.620000000000001,8.71,8.77,8.81,8.84,8.870000000000001,8.9,109.49000000000001,109.43,109.35000000000001,109.26,109.18,109.09,109.01,108.92,108.75,27.73,27.35,27.17,26.96,26.77,26.580000000000002,26.38,26.19,25.8,N/A,N/A +2012,9,12,2,30,101650,100500,99390,80.28,0,8.25,8.96,9.13,9.21,9.26,9.290000000000001,9.31,9.32,9.32,106.99000000000001,107.44,107.73,107.99000000000001,108.22,108.45,108.67,108.88,109.29,27.78,27.400000000000002,27.22,27.02,26.82,26.63,26.44,26.25,25.87,N/A,N/A +2012,9,12,3,30,101660,100510,99400,78.19,0,8.370000000000001,9.13,9.31,9.41,9.47,9.52,9.56,9.58,9.61,112.53,112.49000000000001,112.49000000000001,112.5,112.53,112.54,112.56,112.59,112.65,27.89,27.52,27.34,27.14,26.94,26.75,26.560000000000002,26.37,25.98,N/A,N/A +2012,9,12,4,30,101610,100460,99350,79.88,0,8.040000000000001,8.8,8.98,9.09,9.16,9.22,9.26,9.290000000000001,9.34,117.13,117.31,117.36,117.4,117.42,117.44,117.45,117.46000000000001,117.47,27.98,27.61,27.43,27.23,27.04,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,9,12,5,30,101620,100470,99350,82.60000000000001,0,6.99,7.58,7.72,7.79,7.84,7.87,7.9,7.91,7.930000000000001,132.26,132.4,132.46,132.51,132.57,132.63,132.69,132.75,132.88,27.900000000000002,27.53,27.36,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A +2012,9,12,6,30,101610,100460,99350,84.77,0,6.3500000000000005,6.82,6.91,6.96,6.98,6.99,6.99,6.99,6.99,136.21,136.70000000000002,136.97,137.23,137.48,137.72,137.97,138.20000000000002,138.67000000000002,27.89,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.03,N/A,N/A +2012,9,12,7,30,101650,100500,99380,85.2,0,4.39,4.7,4.79,4.86,4.91,4.97,5.0200000000000005,5.07,5.18,159.37,161.34,162.15,162.86,163.49,164.07,164.62,165.13,166.12,27.6,27.26,27.09,26.900000000000002,26.72,26.54,26.35,26.18,25.82,N/A,N/A +2012,9,12,8,30,101640,100490,99380,81.93,0,6.23,6.7700000000000005,6.9,6.98,7.03,7.07,7.09,7.11,7.15,180.54,180.97,181.22,181.47,181.69,181.9,182.1,182.29,182.67000000000002,28.11,27.77,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.64,26.26,N/A,N/A +2012,9,12,9,30,101610,100470,99350,82.13,0,5.37,5.83,5.93,6,6.0600000000000005,6.11,6.15,6.2,6.28,188.61,189.21,189.4,189.53,189.63,189.71,189.79,189.86,190,28.17,27.85,27.69,27.5,27.32,27.14,26.96,26.78,26.42,N/A,N/A +2012,9,12,10,30,101660,100510,99400,81.9,0,6.2,6.78,6.93,7.01,7.07,7.12,7.15,7.18,7.21,184.87,184.89000000000001,184.93,184.97,184.99,185.02,185.04,185.05,185.09,28.27,27.95,27.79,27.580000000000002,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A +2012,9,12,11,30,101650,100510,99390,79.91,0,6.86,7.5,7.65,7.73,7.79,7.83,7.86,7.88,7.9,190.46,190.78,190.88,190.92000000000002,190.94,190.93,190.9,190.87,190.78,28.26,27.94,27.77,27.57,27.38,27.19,27,26.810000000000002,26.43,N/A,N/A +2012,9,12,12,30,101680,100530,99420,83.73,0,6.08,6.59,6.7,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.87,6.88,6.91,194.63,194.6,194.66,194.70000000000002,194.74,194.78,194.81,194.84,194.91,28.150000000000002,27.82,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,9,12,13,30,101640,100480,99370,86.27,0,9.61,10.39,10.43,10.38,10.290000000000001,10.18,10.040000000000001,9.91,9.61,244.51,244.06,243.31,242.43,241.47,240.53,239.44,238.43,236.17000000000002,27.16,26.79,26.64,26.490000000000002,26.34,26.2,26.05,25.91,25.6,N/A,N/A +2012,9,12,14,30,101730,100580,99460,81.72,8.8,4.66,5.19,5.4,5.58,5.72,5.8500000000000005,5.97,6.08,6.3,214.29,214.57,214.86,215.25,215.61,216.01,216.44,216.86,217.77,27.85,27.53,27.37,27.18,27,26.82,26.64,26.47,26.11,N/A,N/A +2012,9,12,15,30,101800,100650,99540,79.44,0,6.16,6.71,6.83,6.9,6.94,6.97,6.99,7,7,216.9,216.79,216.69,216.6,216.53,216.46,216.4,216.34,216.23000000000002,28.44,28.13,27.96,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,9,12,16,30,101790,100620,99490,91.81,0.4,11.08,12.030000000000001,12.17,12.23,12.25,12.25,12.23,12.200000000000001,12.040000000000001,98.11,98.56,98.84,99.10000000000001,99.37,99.63,99.94,100.23,101.09,24.900000000000002,24.34,24.12,23.92,23.72,23.54,23.36,23.19,22.87,N/A,N/A +2012,9,12,17,30,101860,100690,99560,93.15,47.6,12.99,14.22,14.46,14.58,14.65,14.69,14.71,14.72,14.71,85.97,86.09,86.23,86.36,86.46000000000001,86.55,86.64,86.71000000000001,86.85000000000001,24.38,23.77,23.54,23.34,23.14,22.96,22.78,22.61,22.28,N/A,N/A +2012,9,12,18,30,101860,100700,99580,81.32000000000001,0,10.19,10.86,10.93,10.88,10.81,10.72,10.63,10.55,10.540000000000001,81.47,81.86,82.15,82.58,83.18,83.96000000000001,85.84,88.06,97.35000000000001,26.28,25.86,25.7,25.55,25.42,25.32,25.34,25.400000000000002,26.01,N/A,N/A +2012,9,12,19,30,101810,100650,99530,73.88,0,4.65,4.93,4.99,5.0200000000000005,5.04,5.0600000000000005,5.15,5.26,6.19,121.79,122.4,122.63,122.91,123.11,123.25,123.83,124.58,129.27,27.23,26.87,26.71,26.52,26.34,26.16,26.03,25.91,26.34,N/A,N/A +2012,9,12,20,30,101730,100570,99460,77.9,0.7000000000000001,4.14,4.4,4.49,4.64,4.93,5.34,5.59,5.76,5.5600000000000005,197.1,196.3,195.55,194.49,193.4,192.22,192.77,193.87,198.4,26.91,26.59,26.47,26.37,26.41,26.53,26.62,26.69,26.34,N/A,N/A +2012,9,12,21,30,101770,100620,99510,79.8,0,4.79,5.03,5.03,5.01,4.98,4.94,4.9,4.86,4.7700000000000005,275.84000000000003,274.27,273.14,271.94,270.83,269.73,268.62,267.57,265.35,27.62,27.28,27.11,26.92,26.740000000000002,26.560000000000002,26.37,26.19,25.830000000000002,N/A,N/A +2012,9,12,22,30,101660,100500,99380,79.69,0,1.6400000000000001,1.83,1.8800000000000001,1.94,1.99,2.04,2.09,2.14,2.24,93.82000000000001,94.69,95.3,95.9,96.46000000000001,97.01,97.62,98.22,99.58,26.82,26.46,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A +2012,9,12,23,30,101640,100490,99380,75.34,0,6.43,6.97,7.09,7.16,7.2,7.23,7.25,7.26,7.28,110.82000000000001,110.87,110.88,110.9,110.92,110.94,110.96000000000001,110.97,111,28.26,27.93,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A +2012,9,13,0,30,101640,100490,99370,88.04,0,7.6000000000000005,8.17,8.27,8.31,8.32,8.32,8.31,8.290000000000001,8.24,127.52,127.79,127.93,128.11,128.28,128.46,128.65,128.84,129.26,27.240000000000002,26.84,26.66,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A +2012,9,13,1,30,101620,100470,99350,83.95,0,7.04,7.61,7.73,7.79,7.83,7.8500000000000005,7.86,7.87,7.87,133.02,133.28,133.42000000000002,133.55,133.69,133.81,133.95,134.09,134.38,27.580000000000002,27.21,27.03,26.830000000000002,26.63,26.45,26.25,26.060000000000002,25.69,N/A,N/A +2012,9,13,2,30,101660,100510,99400,83.57000000000001,0,7.94,8.66,8.83,8.92,8.98,9.02,9.05,9.07,9.09,137.1,137.18,137.23,137.29,137.35,137.4,137.47,137.53,137.67000000000002,27.89,27.54,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A +2012,9,13,3,30,101710,100560,99440,84.99,0,8.26,8.98,9.15,9.22,9.27,9.290000000000001,9.3,9.3,9.290000000000001,138.98,139.13,139.22,139.31,139.39000000000001,139.48,139.56,139.65,139.82,27.78,27.41,27.240000000000002,27.03,26.84,26.650000000000002,26.46,26.27,25.89,N/A,N/A +2012,9,13,4,30,101710,100560,99440,86.02,0,9.67,10.6,10.8,10.9,10.97,11,11.01,11.02,10.99,142.69,142.72,142.78,142.87,142.96,143.07,143.18,143.29,143.51,27.740000000000002,27.36,27.18,26.97,26.78,26.580000000000002,26.38,26.19,25.8,N/A,N/A +2012,9,13,5,30,101710,100550,99440,84.55,0,8.59,9.36,9.53,9.620000000000001,9.67,9.71,9.73,9.74,9.75,141.94,141.91,141.92000000000002,141.93,141.94,141.95000000000002,141.96,141.98,142.02,27.63,27.25,27.07,26.87,26.68,26.490000000000002,26.29,26.1,25.72,N/A,N/A +2012,9,13,6,30,101740,100590,99470,84.69,0,7.640000000000001,8.32,8.47,8.55,8.61,8.65,8.67,8.69,8.700000000000001,138.54,138.68,138.76,138.84,138.92000000000002,138.99,139.07,139.14000000000001,139.28,27.68,27.310000000000002,27.13,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A +2012,9,13,7,30,101760,100610,99490,83.52,0,7.37,7.98,8.120000000000001,8.19,8.23,8.26,8.28,8.290000000000001,8.3,141.05,141.48,141.72,141.96,142.19,142.43,142.67000000000002,142.9,143.39000000000001,27.68,27.32,27.14,26.94,26.740000000000002,26.560000000000002,26.36,26.17,25.8,N/A,N/A +2012,9,13,8,30,101760,100610,99500,84.68,0,6.49,7,7.11,7.17,7.2,7.22,7.24,7.25,7.25,135.22,135.42000000000002,135.55,135.68,135.8,135.91,136.03,136.15,136.39000000000001,27.6,27.240000000000002,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A +2012,9,13,9,30,101780,100630,99520,84.34,0,6.88,7.43,7.5600000000000005,7.62,7.66,7.68,7.7,7.71,7.71,135.13,135.27,135.36,135.44,135.52,135.6,135.67000000000002,135.74,135.89000000000001,27.650000000000002,27.28,27.11,26.900000000000002,26.71,26.52,26.32,26.14,25.75,N/A,N/A +2012,9,13,10,30,101800,100650,99530,85.25,0,6.67,7.25,7.4,7.5,7.57,7.63,7.68,7.72,7.8,136.1,136.31,136.45,136.6,136.73,136.86,136.99,137.12,137.36,27.650000000000002,27.29,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.77,N/A,N/A +2012,9,13,11,30,101820,100670,99550,81.88,0,7.04,7.61,7.73,7.7700000000000005,7.8,7.8100000000000005,7.8100000000000005,7.8,7.7700000000000005,136.54,136.85,137.01,137.17000000000002,137.31,137.44,137.58,137.70000000000002,137.97,27.810000000000002,27.46,27.28,27.080000000000002,26.89,26.7,26.5,26.32,25.94,N/A,N/A +2012,9,13,12,30,101820,100670,99550,82.63,0,6.28,6.7700000000000005,6.88,6.94,6.98,7,7.03,7.04,7.07,127.07000000000001,127.23,127.3,127.39,127.48,127.57000000000001,127.66,127.75,127.95,27.73,27.38,27.2,27,26.810000000000002,26.62,26.43,26.240000000000002,25.86,N/A,N/A +2012,9,13,13,30,101860,100710,99590,80.5,0,6.49,7.0200000000000005,7.13,7.19,7.23,7.25,7.2700000000000005,7.2700000000000005,7.28,124,124.17,124.26,124.35000000000001,124.43,124.5,124.57000000000001,124.64,124.78,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A +2012,9,13,14,30,101880,100720,99610,81.5,0,5.96,6.43,6.5200000000000005,6.58,6.61,6.640000000000001,6.66,6.67,6.69,122.9,123.19,123.29,123.39,123.48,123.56,123.64,123.72,123.88000000000001,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,9,13,15,30,101870,100720,99610,80.72,0,5.88,6.34,6.44,6.49,6.53,6.55,6.5600000000000005,6.58,6.58,119.71000000000001,119.94,120.06,120.18,120.29,120.39,120.49000000000001,120.58,120.77,27.91,27.57,27.39,27.19,27,26.810000000000002,26.62,26.43,26.05,N/A,N/A +2012,9,13,16,30,101900,100740,99630,81.04,0,4.63,4.95,5.0200000000000005,5.05,5.08,5.09,5.1000000000000005,5.1000000000000005,5.1000000000000005,129.32,129.26,129.26,129.25,129.23,129.2,129.16,129.13,129.05,27.96,27.62,27.45,27.25,27.060000000000002,26.87,26.67,26.490000000000002,26.11,N/A,N/A +2012,9,13,17,30,101910,100760,99650,79.38,0,3.68,3.92,3.97,3.99,4.01,4.03,4.03,4.04,4.04,167.83,167.26,167.01,166.85,166.73,166.63,166.57,166.52,166.45000000000002,28.080000000000002,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A +2012,9,13,18,30,101930,100760,99630,91.65,123.4,9.3,9.94,10.02,9.97,9.88,9.75,9.540000000000001,9.34,8.61,270.88,271.02,271.04,271.1,271.21,271.34000000000003,271.57,271.8,272.69,24.95,24.43,24.240000000000002,24.05,23.87,23.71,23.55,23.400000000000002,23.16,N/A,N/A +2012,9,13,19,30,101910,100740,99600,88.74,79.80000000000001,3.12,3.15,3.13,3.11,2.98,2.81,2.49,2.2,2.45,243.42000000000002,241.86,240.9,239.95000000000002,237.13,233.70000000000002,221.49,209.98000000000002,166.39000000000001,24.34,23.91,23.72,23.54,23.36,23.2,23.080000000000002,22.98,23.18,N/A,N/A +2012,9,13,20,30,101870,100710,99580,79.53,0,1.17,1.25,1.28,1.33,1.43,1.56,1.85,2.24,2.8000000000000003,188.94,189.27,189.17000000000002,188.88,187.93,186.36,184.09,181.35,180.46,25.76,25.400000000000002,25.240000000000002,25.080000000000002,24.96,24.87,24.91,24.98,25.09,N/A,N/A +2012,9,13,21,30,101870,100710,99590,79.84,0,3.7600000000000002,3.89,3.89,3.88,3.86,3.85,3.85,3.86,4.09,178.19,178.59,178.76,178.99,179.3,179.66,180.32,181.06,183.89000000000001,26.48,26.1,25.94,25.75,25.580000000000002,25.41,25.27,25.14,25.09,N/A,N/A +2012,9,13,22,30,101830,100670,99550,79.86,0,1.61,1.6500000000000001,1.6600000000000001,1.6500000000000001,1.6500000000000001,1.6500000000000001,1.6600000000000001,1.67,1.77,160.59,160.91,161.14000000000001,161.44,161.82,162.26,163.01,163.81,165.93,26.53,26.17,25.990000000000002,25.8,25.62,25.44,25.27,25.12,24.95,N/A,N/A +2012,9,13,23,30,101840,100690,99570,78.37,0,0.9500000000000001,0.9400000000000001,0.92,0.91,0.89,0.88,0.86,0.85,0.8300000000000001,153.41,151.43,150.08,148.47,146.84,145.14000000000001,143,140.88,134.91,26.8,26.45,26.27,26.07,25.88,25.7,25.51,25.32,24.95,N/A,N/A +2012,9,14,0,30,101830,100670,99550,76.65,0,1.83,1.96,1.99,2.0300000000000002,2.05,2.08,2.11,2.14,2.2,48.03,48.96,49.36,49.76,50.14,50.52,50.910000000000004,51.300000000000004,52.160000000000004,27.07,26.72,26.55,26.35,26.16,25.97,25.78,25.6,25.22,N/A,N/A +2012,9,14,1,30,101830,100680,99560,74.17,0,3.46,3.66,3.69,3.71,3.73,3.74,3.75,3.77,3.8200000000000003,65.12,64.9,64.76,64.62,64.51,64.41,64.33,64.25,64.2,27.37,27.02,26.84,26.64,26.45,26.26,26.07,25.88,25.5,N/A,N/A +2012,9,14,2,30,101850,100690,99580,83.23,0,4.66,4.95,5.01,5.03,5.05,5.0600000000000005,5.07,5.07,5.08,63.68,63.95,64.11,64.3,64.49,64.69,64.91,65.12,65.66,27.29,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,14,3,30,101860,100710,99590,80.67,0,3.84,4.14,4.23,4.29,4.34,4.39,4.43,4.48,4.57,92.16,91.96000000000001,91.8,91.58,91.37,91.12,90.86,90.60000000000001,89.97,27.69,27.36,27.19,26.990000000000002,26.810000000000002,26.63,26.44,26.26,25.89,N/A,N/A +2012,9,14,4,30,101860,100710,99590,79.93,0,6.34,6.82,6.92,6.96,6.99,7,7.01,7.01,7.01,99.9,100.25,100.39,100.52,100.63,100.74000000000001,100.84,100.93,101.10000000000001,27.900000000000002,27.55,27.38,27.18,26.990000000000002,26.8,26.61,26.42,26.04,N/A,N/A +2012,9,14,5,30,101850,100690,99580,81.56,0,5.59,6,6.08,6.12,6.13,6.15,6.15,6.15,6.140000000000001,109.08,109.22,109.33,109.46000000000001,109.58,109.7,109.83,109.95,110.2,27.830000000000002,27.48,27.310000000000002,27.11,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A +2012,9,14,6,30,101900,100750,99630,84.49,71,6.32,6.78,6.92,7,7.07,7.12,7.18,7.24,7.36,121.08,119.74000000000001,119.03,118.34,117.73,117.13,116.52,115.94,114.76,27.16,26.810000000000002,26.650000000000002,26.46,26.3,26.13,25.97,25.810000000000002,25.5,N/A,N/A +2012,9,14,7,30,101870,100710,99600,78.68,1.1,7.04,7.61,7.72,7.76,7.8,7.82,7.83,7.83,7.84,107.28,107.43,107.47,107.53,107.58,107.64,107.7,107.76,107.89,27.900000000000002,27.54,27.37,27.17,26.98,26.79,26.6,26.41,26.03,N/A,N/A +2012,9,14,8,30,101930,100780,99660,75.69,0,5.4,5.8,5.89,5.94,5.97,5.99,6,6.01,6.0200000000000005,95,95.18,95.19,95.19,95.19,95.18,95.16,95.14,95.09,27.97,27.63,27.45,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.11,N/A,N/A +2012,9,14,9,30,101940,100790,99670,73.11,0,2.82,2.98,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.0700000000000003,3.08,3.09,97.98,98.06,98.11,98.15,98.2,98.26,98.31,98.36,98.46000000000001,27.91,27.580000000000002,27.400000000000002,27.21,27.02,26.82,26.63,26.44,26.060000000000002,N/A,N/A +2012,9,14,10,30,101910,100760,99640,75.84,0,3.21,3.4,3.43,3.45,3.45,3.45,3.45,3.45,3.44,104.38,104.69,104.83,104.96000000000001,105.08,105.2,105.31,105.43,105.64,27.76,27.42,27.25,27.05,26.85,26.67,26.47,26.28,25.89,N/A,N/A +2012,9,14,11,30,101880,100720,99610,75.34,0,3.48,3.67,3.7,3.71,3.72,3.72,3.72,3.71,3.71,91.71000000000001,91.79,91.95,92.08,92.21000000000001,92.32000000000001,92.44,92.55,92.75,27.72,27.38,27.21,27,26.810000000000002,26.62,26.43,26.240000000000002,25.86,N/A,N/A +2012,9,14,12,30,101900,100740,99620,83.27,0,8.57,9.120000000000001,9.13,9.06,8.97,8.85,8.700000000000001,8.56,8.19,85.97,85.99,86.08,86.2,86.33,86.49,86.7,86.9,87.5,26.330000000000002,25.88,25.7,25.51,25.32,25.150000000000002,24.97,24.8,24.47,N/A,N/A +2012,9,14,13,30,101920,100760,99630,77.10000000000001,0,5.4,5.65,5.67,5.65,5.62,5.57,5.51,5.45,5.37,46.83,47.42,47.75,48.120000000000005,48.57,49.07,50.04,51.04,58.95,25.75,25.330000000000002,25.16,24.98,24.82,24.67,24.54,24.43,24.490000000000002,N/A,N/A +2012,9,14,14,30,101980,100820,99690,74.01,0,3.29,3.47,3.5100000000000002,3.5300000000000002,3.54,3.5500000000000003,3.56,3.5700000000000003,3.61,73.65,74.5,74.94,75.48,76.08,76.72,77.63,78.58,81.99,26.89,26.51,26.34,26.13,25.94,25.75,25.560000000000002,25.37,24.990000000000002,N/A,N/A +2012,9,14,15,30,101990,100830,99710,79.83,5.5,7.12,7.54,7.54,7.48,7.390000000000001,7.3,7.18,7.07,6.8100000000000005,105.58,105.2,105.04,104.82000000000001,104.59,104.33,104,103.68,102.81,26.36,25.94,25.77,25.57,25.39,25.21,25.03,24.86,24.52,N/A,N/A +2012,9,14,16,30,102020,100850,99720,79.43,8.8,4.28,4.4,4.38,4.32,4.25,4.18,4.07,3.96,3.63,109.15,108.46000000000001,108.27,108.02,107.69,107.32000000000001,106.79,106.28,105.5,24.8,24.37,24.2,24.03,23.86,23.71,23.57,23.45,23.330000000000002,N/A,N/A +2012,9,14,17,30,102020,100850,99720,84.04,0,6.48,6.8,6.82,6.8,6.76,6.71,6.65,6.59,6.46,92.13,92.3,92.46000000000001,92.64,92.84,93.03,93.29,93.54,94.24,24.69,24.21,24.02,23.82,23.64,23.47,23.29,23.13,22.82,N/A,N/A +2012,9,14,18,30,101980,100810,99680,77.09,0,6.0200000000000005,6.38,6.44,6.46,6.48,6.49,6.49,6.49,6.22,93.55,93.62,93.72,93.87,94.12,94.42,95.10000000000001,95.82000000000001,99.7,25.64,25.240000000000002,25.09,24.93,24.810000000000002,24.7,24.64,24.59,24.69,N/A,N/A +2012,9,14,19,30,101960,100800,99680,61.17,0,4.22,4.5200000000000005,4.59,4.66,4.76,4.87,5.0600000000000005,5.2700000000000005,5.5200000000000005,104.88,104.52,104.31,104.05,103.69,103.27,102.57000000000001,101.81,100.35000000000001,27.63,27.32,27.18,27.02,26.88,26.76,26.7,26.650000000000002,26.46,N/A,N/A +2012,9,14,20,30,101890,100730,99610,79.14,0,4.97,5.25,5.3,5.3100000000000005,5.32,5.32,5.33,5.33,5.36,80.02,80.16,80.22,80.29,80.36,80.44,80.55,80.66,80.99,27.19,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.88,25.7,25.34,N/A,N/A +2012,9,14,21,30,101890,100740,99620,83.49,0,3.99,4.22,4.26,4.28,4.3,4.32,4.33,4.34,4.37,61.9,62.32,62.550000000000004,62.78,63.01,63.24,63.5,63.74,64.38,27.080000000000002,26.7,26.52,26.32,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A +2012,9,14,22,30,101880,100720,99610,84.8,0,4.19,4.5,4.59,4.66,4.72,4.76,4.8100000000000005,4.8500000000000005,4.93,70.59,71.73,72.38,73.02,73.59,74.14,74.69,75.2,76.26,27.22,26.85,26.68,26.48,26.29,26.1,25.91,25.73,25.35,N/A,N/A +2012,9,14,23,30,101880,100720,99610,80.09,0,4.15,4.39,4.43,4.45,4.46,4.46,4.46,4.46,4.45,88.52,88.77,88.88,88.98,89.07000000000001,89.16,89.24,89.32000000000001,89.49,27.5,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A +2012,9,15,0,30,101870,100710,99590,79.92,0,4.3,4.53,4.5600000000000005,4.57,4.5600000000000005,4.5600000000000005,4.54,4.54,4.51,88.65,88.59,88.51,88.44,88.36,88.28,88.18,88.09,87.88,27.47,27.11,26.93,26.740000000000002,26.54,26.35,26.16,25.97,25.59,N/A,N/A +2012,9,15,1,30,101880,100720,99600,77.5,0,3.5700000000000003,3.7800000000000002,3.81,3.83,3.85,3.85,3.86,3.86,3.87,99.45,99.02,98.76,98.5,98.25,98.01,97.76,97.53,97.06,27.54,27.19,27.01,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.67,N/A,N/A +2012,9,15,2,30,101920,100760,99640,72.53,0,2.73,2.91,2.95,2.98,3,3.02,3.04,3.06,3.09,110.4,110.42,110.44,110.43,110.43,110.43,110.43,110.42,110.4,27.75,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.900000000000002,N/A,N/A +2012,9,15,3,30,101920,100770,99650,66.95,0,1.87,1.99,2.02,2.05,2.07,2.09,2.11,2.14,2.18,64.76,66.47,67.55,68.63,69.60000000000001,70.51,71.44,72.32000000000001,74.04,27.97,27.650000000000002,27.490000000000002,27.3,27.11,26.92,26.740000000000002,26.55,26.18,N/A,N/A +2012,9,15,4,30,101940,100780,99660,69.58,0,3.0300000000000002,3.1,3.06,3.02,2.97,2.93,2.88,2.84,2.77,28.29,30.080000000000002,31.35,32.69,33.93,35.13,36.35,37.5,39.84,27.79,27.47,27.310000000000002,27.12,26.94,26.76,26.57,26.39,26.02,N/A,N/A +2012,9,15,5,30,101940,100780,99660,85.04,0,5.61,5.88,5.9,5.87,5.83,5.79,5.73,5.66,5.51,21.400000000000002,21.88,22.13,22.41,22.71,23.01,23.37,23.73,24.68,26.52,26.11,25.92,25.73,25.53,25.35,25.16,24.98,24.61,N/A,N/A +2012,9,15,6,30,101950,100790,99660,85.32000000000001,0,6.23,6.57,6.61,6.59,6.5600000000000005,6.5200000000000005,6.47,6.42,6.29,21.13,21.41,21.580000000000002,21.77,21.95,22.13,22.34,22.55,23.07,26.28,25.86,25.67,25.47,25.27,25.09,24.900000000000002,24.71,24.34,N/A,N/A +2012,9,15,7,30,101960,100800,99680,80.54,0,6.19,6.55,6.6000000000000005,6.6000000000000005,6.59,6.57,6.53,6.5,6.41,25.92,26.19,26.37,26.57,26.76,26.96,27.18,27.400000000000002,27.94,26.27,25.84,25.650000000000002,25.45,25.26,25.07,24.87,24.69,24.32,N/A,N/A +2012,9,15,8,30,101940,100780,99650,78.39,0,6.18,6.53,6.57,6.57,6.55,6.5200000000000005,6.48,6.44,6.33,21.64,21.84,21.98,22.14,22.29,22.45,22.62,22.79,23.23,26.32,25.91,25.72,25.51,25.330000000000002,25.14,24.94,24.76,24.39,N/A,N/A +2012,9,15,9,30,101950,100780,99660,82.37,0,6.51,6.87,6.91,6.9,6.88,6.84,6.79,6.75,6.63,25.66,25.98,26.17,26.38,26.59,26.810000000000002,27.080000000000002,27.34,28.080000000000002,26.04,25.61,25.42,25.23,25.04,24.86,24.68,24.5,24.16,N/A,N/A +2012,9,15,10,30,101980,100810,99690,80.56,0,4.45,4.68,4.74,4.7700000000000005,4.79,4.8100000000000005,4.83,4.8500000000000005,4.89,71.75,70.58,69.97,69.39,68.92,68.53,68.27,68.07000000000001,68.06,26.03,25.62,25.44,25.240000000000002,25.05,24.87,24.68,24.5,24.14,N/A,N/A +2012,9,15,11,30,101950,100790,99660,75.32000000000001,0,2.47,2.5,2.48,2.45,2.43,2.41,2.4,2.38,2.35,34.03,32.660000000000004,31.92,31.09,30.28,29.48,28.61,27.8,26.03,26.19,25.810000000000002,25.63,25.44,25.25,25.07,24.88,24.7,24.330000000000002,N/A,N/A +2012,9,15,12,30,101950,100790,99660,86.72,0,5.23,5.42,5.4,5.36,5.3100000000000005,5.25,5.19,5.14,5.01,19.36,20.580000000000002,21.34,22.12,22.85,23.57,24.330000000000002,25.04,26.6,25.86,25.44,25.25,25.04,24.85,24.66,24.47,24.29,23.91,N/A,N/A +2012,9,15,13,30,101970,100810,99680,88.08,0,4.6000000000000005,4.76,4.75,4.71,4.66,4.61,4.54,4.48,4.32,17.59,18.07,18.330000000000002,18.61,18.89,19.19,19.53,19.86,20.79,25.400000000000002,24.97,24.78,24.57,24.38,24.2,24,23.82,23.45,N/A,N/A +2012,9,15,14,30,101970,100810,99680,87.18,0,4.78,4.98,4.98,4.96,4.93,4.9,4.8500000000000005,4.8,4.68,13.32,13.51,13.63,13.77,13.89,14.02,14.17,14.31,14.68,25.37,24.93,24.740000000000002,24.54,24.34,24.16,23.96,23.78,23.42,N/A,N/A +2012,9,15,15,30,101980,100820,99690,85.85000000000001,0,4.46,4.66,4.67,4.66,4.64,4.62,4.59,4.5600000000000005,4.49,17.91,18.26,18.46,18.68,18.89,19.09,19.330000000000002,19.56,20.14,25.47,25.04,24.85,24.650000000000002,24.46,24.27,24.080000000000002,23.900000000000002,23.53,N/A,N/A +2012,9,15,16,30,101950,100790,99660,83.93,0,3.7,3.87,3.89,3.89,3.88,3.88,3.86,3.85,3.8200000000000003,17.78,18.09,18.3,18.51,18.71,18.900000000000002,19.11,19.31,19.77,25.91,25.5,25.32,25.12,24.93,24.740000000000002,24.54,24.36,23.990000000000002,N/A,N/A +2012,9,15,17,30,101930,100770,99650,81.39,0,3.22,3.37,3.38,3.39,3.39,3.39,3.39,3.39,3.38,25.18,25.17,25.21,25.25,25.29,25.32,25.36,25.41,25.46,26.37,25.97,25.79,25.59,25.400000000000002,25.21,25.01,24.830000000000002,24.46,N/A,N/A +2012,9,15,18,30,101930,100770,99650,77.98,0,1.6,1.6600000000000001,1.67,1.68,1.69,1.69,1.7,1.71,1.75,42.74,41.88,41.43,40.94,40.46,39.96,39.39,38.83,37.42,26.810000000000002,26.45,26.27,26.07,25.88,25.7,25.51,25.330000000000002,24.98,N/A,N/A +2012,9,15,19,30,101890,100730,99610,76.47,0,0.93,0.97,0.97,0.97,0.97,0.98,0.98,0.99,1,61.480000000000004,60.76,60.26,59.72,59.21,58.69,58.11,57.550000000000004,56.160000000000004,27.13,26.76,26.59,26.39,26.2,26.02,25.82,25.650000000000002,25.28,N/A,N/A +2012,9,15,20,30,101850,100700,99580,75.36,0,0.75,0.78,0.79,0.8,0.81,0.81,0.8200000000000001,0.8300000000000001,0.86,46.94,45.94,45.410000000000004,44.83,44.22,43.59,42.88,42.19,40.29,27.36,27,26.82,26.63,26.44,26.25,26.060000000000002,25.88,25.52,N/A,N/A +2012,9,15,21,30,101840,100680,99570,72.75,0,2.02,2.13,2.15,2.18,2.19,2.22,2.23,2.2600000000000002,2.31,57.56,55.72,54.7,53.61,52.58,51.54,50.43,49.35,46.85,27.68,27.32,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.21,25.84,N/A,N/A +2012,9,15,22,30,101790,100630,99510,76.29,0,1.45,1.46,1.43,1.41,1.3800000000000001,1.36,1.33,1.31,1.26,34.57,35.07,35.36,35.660000000000004,35.94,36.21,36.49,36.74,37.22,27.46,27.12,26.95,26.75,26.57,26.38,26.2,26.02,25.650000000000002,N/A,N/A +2012,9,15,23,30,101780,100630,99510,75.55,0,3.2,3.27,3.23,3.18,3.13,3.0700000000000003,3.0100000000000002,2.95,2.8000000000000003,17.28,17.84,18.12,18.44,18.75,19.07,19.45,19.81,20.75,27.34,26.990000000000002,26.810000000000002,26.62,26.43,26.240000000000002,26.05,25.87,25.5,N/A,N/A +2012,9,16,0,30,101730,100570,99460,72.64,0,1.54,1.6,1.6,1.59,1.58,1.58,1.57,1.57,1.56,36.62,36.5,36.34,36.17,35.95,35.67,35.32,34.95,33.54,27.48,27.150000000000002,26.98,26.79,26.6,26.42,26.240000000000002,26.060000000000002,25.72,N/A,N/A +2012,9,16,1,30,101740,100590,99470,70.69,0,1.32,1.36,1.36,1.36,1.35,1.35,1.35,1.35,1.35,72.68,71.75,71.12,70.39,69.63,68.83,67.77,66.67,62.99,27.67,27.35,27.18,26.990000000000002,26.810000000000002,26.63,26.44,26.27,25.94,N/A,N/A +2012,9,16,2,30,101750,100600,99480,68.52,0,1.03,1.09,1.1,1.11,1.12,1.1400000000000001,1.1500000000000001,1.17,1.24,44.94,43.38,42.32,41.24,40.17,39.04,37.74,36.43,32.89,27.87,27.560000000000002,27.39,27.2,27.02,26.830000000000002,26.650000000000002,26.47,26.13,N/A,N/A +2012,9,16,3,30,101750,100600,99490,66.21000000000001,0,2.2,2.35,2.38,2.4,2.43,2.44,2.46,2.47,2.49,9.82,9.61,9.540000000000001,9.48,9.42,9.370000000000001,9.32,9.27,9.18,28.150000000000002,27.84,27.67,27.47,27.29,27.1,26.900000000000002,26.72,26.34,N/A,N/A +2012,9,16,4,30,101730,100580,99460,72.65,0,3.96,4.14,4.14,4.13,4.11,4.09,4.0600000000000005,4.03,3.97,13.18,13.52,13.73,13.94,14.13,14.32,14.5,14.68,15.05,27.57,27.23,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A +2012,9,16,5,30,101710,100560,99440,72.99,0,3.69,3.8200000000000003,3.8200000000000003,3.79,3.77,3.74,3.7,3.66,3.58,28.92,29.560000000000002,29.96,30.36,30.740000000000002,31.13,31.53,31.92,32.8,27.26,26.91,26.740000000000002,26.53,26.34,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,16,6,30,101700,100550,99430,75.64,0,3.14,3.24,3.23,3.21,3.18,3.15,3.12,3.09,3.02,31.53,32.17,32.52,32.87,33.2,33.53,33.88,34.21,34.97,27.150000000000002,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.68,25.3,N/A,N/A +2012,9,16,7,30,101710,100560,99440,73.37,0,2.27,2.38,2.4,2.42,2.43,2.44,2.44,2.45,2.46,33.92,34.93,35.46,36,36.480000000000004,36.95,37.44,37.9,38.95,27.32,26.98,26.810000000000002,26.61,26.42,26.240000000000002,26.04,25.86,25.48,N/A,N/A +2012,9,16,8,30,101690,100540,99420,75.94,0,3.2600000000000002,3.37,3.36,3.34,3.31,3.2800000000000002,3.25,3.22,3.15,43.26,44.480000000000004,45.21,45.95,46.64,47.33,48.03,48.71,50.2,27.21,26.87,26.7,26.490000000000002,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A +2012,9,16,9,30,101670,100520,99400,75.09,0,2.89,3.02,3.02,3.02,3.02,3.0100000000000002,2.99,2.98,2.95,49.45,49.620000000000005,49.71,49.800000000000004,49.9,50,50.120000000000005,50.24,50.51,27.25,26.91,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,16,10,30,101650,100500,99380,79.29,0,3.7800000000000002,3.9,3.88,3.84,3.8000000000000003,3.75,3.7,3.65,3.54,36.39,37.07,37.53,38,38.45,38.89,39.35,39.79,40.76,27.05,26.69,26.52,26.32,26.13,25.95,25.75,25.57,25.2,N/A,N/A +2012,9,16,11,30,101650,100490,99370,79.2,0,4.3500000000000005,4.54,4.55,4.54,4.51,4.49,4.45,4.42,4.34,31.78,32.09,32.28,32.47,32.64,32.81,33,33.18,33.56,26.85,26.48,26.3,26.1,25.91,25.72,25.53,25.34,24.96,N/A,N/A +2012,9,16,12,30,101650,100500,99380,79.65,0,4.37,4.54,4.54,4.5,4.46,4.41,4.3500000000000005,4.29,4.14,27.69,28.060000000000002,28.29,28.53,28.77,29.02,29.32,29.63,30.490000000000002,26.42,26.04,25.86,25.66,25.47,25.29,25.09,24.92,24.55,N/A,N/A +2012,9,16,13,30,101660,100500,99380,80.09,0,4.43,4.61,4.61,4.59,4.5600000000000005,4.5200000000000005,4.47,4.42,4.29,29.310000000000002,29.77,30.02,30.28,30.55,30.82,31.14,31.44,32.27,26.3,25.91,25.73,25.53,25.34,25.16,24.97,24.79,24.43,N/A,N/A +2012,9,16,14,30,101670,100510,99390,80.56,0,4.04,4.21,4.21,4.19,4.16,4.13,4.09,4.05,3.93,32.53,33,33.32,33.65,33.980000000000004,34.31,34.68,35.050000000000004,36.08,26.3,25.91,25.73,25.54,25.35,25.17,24.98,24.8,24.45,N/A,N/A +2012,9,16,15,30,101650,100490,99370,80.33,0,3.61,3.77,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.74,3.73,3.69,41.22,42,42.39,42.83,43.24,43.67,44.160000000000004,44.63,45.83,26.53,26.16,25.98,25.78,25.59,25.400000000000002,25.21,25.03,24.66,N/A,N/A +2012,9,16,16,30,101640,100490,99370,80.77,0,2.95,3.09,3.12,3.13,3.14,3.15,3.15,3.16,3.16,62.14,62.93,63.440000000000005,63.940000000000005,64.39,64.84,65.29,65.73,66.67,26.87,26.5,26.32,26.12,25.93,25.740000000000002,25.55,25.37,24.990000000000002,N/A,N/A +2012,9,16,17,30,101600,100450,99330,76.02,0,2.54,2.68,2.71,2.74,2.7600000000000002,2.77,2.7800000000000002,2.8000000000000003,2.83,73.87,74.35000000000001,74.62,74.89,75.14,75.38,75.63,75.87,76.4,27.27,26.91,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,16,18,30,101580,100430,99310,75.37,0,2.65,2.8000000000000003,2.84,2.86,2.88,2.9,2.91,2.92,2.95,98.25,98.5,98.59,98.68,98.76,98.85000000000001,98.95,99.04,99.23,27.55,27.2,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A +2012,9,16,19,30,101530,100380,99270,74.99,0,2.96,3.13,3.16,3.19,3.21,3.22,3.23,3.24,3.2600000000000002,107.72,107.58,107.53,107.48,107.44,107.41,107.37,107.33,107.27,27.75,27.39,27.21,27.01,26.82,26.63,26.44,26.25,25.87,N/A,N/A +2012,9,16,20,30,101460,100310,99200,70.18,0,3.61,3.85,3.9,3.93,3.96,3.98,4,4.01,4.04,118.22,118.03,117.91,117.8,117.71000000000001,117.61,117.53,117.45,117.29,28.02,27.69,27.52,27.32,27.14,26.95,26.75,26.57,26.2,N/A,N/A +2012,9,16,21,30,101420,100270,99160,68.22,0,4.7,5.0200000000000005,5.08,5.11,5.13,5.14,5.15,5.15,5.16,127.95,127.87,127.83,127.8,127.77,127.75,127.73,127.71000000000001,127.68,28.13,27.82,27.650000000000002,27.45,27.26,27.07,26.88,26.7,26.310000000000002,N/A,N/A +2012,9,16,22,30,101350,100200,99090,69.47,0,4.04,4.3100000000000005,4.3500000000000005,4.37,4.38,4.39,4.39,4.39,4.39,122.62,122.73,122.79,122.85000000000001,122.91,122.96000000000001,123.02,123.08,123.19,27.95,27.64,27.47,27.27,27.09,26.900000000000002,26.71,26.52,26.14,N/A,N/A +2012,9,16,23,30,101320,100170,99060,70.87,0,3.63,3.86,3.91,3.93,3.95,3.96,3.96,3.97,3.98,135.16,135.12,135.11,135.1,135.09,135.08,135.08,135.07,135.06,27.82,27.5,27.330000000000002,27.14,26.95,26.76,26.57,26.38,26,N/A,N/A +2012,9,17,0,30,101310,100160,99050,70.44,0,4.03,4.28,4.32,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,143.76,143.95000000000002,144.04,144.13,144.21,144.29,144.36,144.44,144.6,27.84,27.52,27.35,27.150000000000002,26.96,26.78,26.580000000000002,26.39,26.01,N/A,N/A +2012,9,17,1,30,101290,100140,99030,74.71000000000001,0,3.62,3.8200000000000003,3.86,3.87,3.88,3.88,3.87,3.87,3.85,145.58,145.58,145.59,145.58,145.58,145.57,145.56,145.54,145.51,27.6,27.27,27.1,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.76,N/A,N/A +2012,9,17,2,30,101300,100150,99040,73.99,0,3.08,3.25,3.2800000000000002,3.3000000000000003,3.31,3.31,3.31,3.3200000000000003,3.31,158.34,158.04,157.78,157.54,157.34,157.15,156.96,156.79,156.43,27.59,27.26,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A +2012,9,17,3,30,101290,100150,99030,72.52,0,2.73,2.85,2.87,2.87,2.87,2.87,2.86,2.85,2.84,152.13,151.92000000000002,151.81,151.69,151.57,151.45000000000002,151.32,151.19,150.91,27.61,27.28,27.11,26.92,26.73,26.54,26.35,26.16,25.79,N/A,N/A +2012,9,17,4,30,101250,100100,98990,72.74,0,2.2600000000000002,2.33,2.33,2.32,2.31,2.29,2.2800000000000002,2.27,2.24,145.21,145.17000000000002,145.16,145.16,145.14000000000001,145.12,145.08,145.05,144.95000000000002,27.53,27.2,27.03,26.830000000000002,26.64,26.45,26.26,26.07,25.69,N/A,N/A +2012,9,17,5,30,101250,100090,98970,88.03,0,6.11,6.390000000000001,6.41,6.36,6.3,6.23,6.12,6.01,5.58,23.21,23.32,23.39,23.490000000000002,23.62,23.78,24.02,24.29,25.85,25.66,25.23,25.05,24.85,24.67,24.490000000000002,24.32,24.16,23.96,N/A,N/A +2012,9,17,6,30,101200,100050,98930,87.12,0,6.83,7.22,7.2700000000000005,7.25,7.22,7.17,7.11,7.05,6.88,19.6,19.95,20.14,20.36,20.57,20.79,21.02,21.26,21.830000000000002,25.55,25.11,24.91,24.71,24.52,24.330000000000002,24.14,23.96,23.6,N/A,N/A +2012,9,17,7,30,101160,100010,98890,86.2,0,6.88,7.28,7.34,7.34,7.32,7.3,7.26,7.22,7.12,13.57,13.93,14.13,14.34,14.55,14.74,14.96,15.17,15.65,25.38,24.92,24.73,24.52,24.330000000000002,24.14,23.96,23.78,23.41,N/A,N/A +2012,9,17,8,30,101150,99990,98870,86.65,0,6.98,7.390000000000001,7.44,7.44,7.42,7.390000000000001,7.3500000000000005,7.3100000000000005,7.18,8.98,9.1,9.18,9.26,9.32,9.38,9.44,9.49,9.6,25.23,24.76,24.57,24.37,24.18,23.990000000000002,23.81,23.63,23.28,N/A,N/A +2012,9,17,9,30,101130,99970,98850,88.57000000000001,38.5,7.140000000000001,7.57,7.62,7.62,7.61,7.58,7.54,7.5,7.41,348.33,348.54,348.71,348.87,349.01,349.14,349.28000000000003,349.40000000000003,349.66,24.740000000000002,24.26,24.07,23.86,23.67,23.490000000000002,23.31,23.13,22.78,N/A,N/A +2012,9,17,10,30,101080,99920,98790,86.55,7.300000000000001,6.640000000000001,7,7.04,7.04,7.0200000000000005,6.99,6.95,6.91,6.8100000000000005,344.54,344.59000000000003,344.67,344.72,344.77,344.81,344.84000000000003,344.87,344.90000000000003,23.95,23.44,23.240000000000002,23.03,22.830000000000002,22.64,22.45,22.27,21.900000000000002,N/A,N/A +2012,9,17,11,30,101120,99950,98820,86.83,79.5,6.99,7.4,7.47,7.5,7.51,7.51,7.51,7.5,7.48,330.67,331.40000000000003,331.83,332.23,332.6,332.95,333.32,333.66,334.41,23.19,22.66,22.45,22.240000000000002,22.05,21.87,21.68,21.5,21.14,N/A,N/A +2012,9,17,12,30,101090,99920,98800,82.32000000000001,0,5.53,5.8,5.84,5.84,5.83,5.82,5.8,5.78,5.73,349.5,349.88,350.14,350.41,350.67,350.92,351.22,351.48,352.16,23.51,23,22.8,22.59,22.39,22.19,22,21.82,21.43,N/A,N/A +2012,9,17,13,30,101110,99950,98820,79.23,2.6,5.75,6.05,6.1000000000000005,6.12,6.12,6.12,6.11,6.1000000000000005,6.07,8.42,8.43,8.42,8.38,8.35,8.31,8.27,8.23,8.16,23.86,23.36,23.150000000000002,22.94,22.740000000000002,22.55,22.35,22.16,21.77,N/A,N/A +2012,9,17,14,30,101110,99950,98820,78.63,0,6.23,6.6000000000000005,6.66,6.69,6.7,6.71,6.71,6.71,6.7,9.98,10.31,10.5,10.69,10.86,11.02,11.18,11.34,11.71,23.96,23.46,23.25,23.04,22.84,22.650000000000002,22.45,22.26,21.88,N/A,N/A +2012,9,17,15,30,101100,99940,98810,74.73,0,5.7700000000000005,6.07,6.12,6.13,6.13,6.12,6.11,6.1000000000000005,6.07,9.51,9.31,9.200000000000001,9.1,9.01,8.94,8.89,8.84,8.8,24.18,23.69,23.490000000000002,23.28,23.080000000000002,22.89,22.69,22.51,22.13,N/A,N/A +2012,9,17,16,30,101070,99910,98790,72.95,0,4.2,4.38,4.4,4.4,4.4,4.39,4.37,4.36,4.33,357.11,357,356.98,356.95,356.92,356.89,356.85,356.81,356.69,24.47,24.02,23.830000000000002,23.62,23.43,23.240000000000002,23.05,22.87,22.490000000000002,N/A,N/A +2012,9,17,17,30,101040,99890,98760,72.85000000000001,0,3.44,3.6,3.62,3.63,3.64,3.65,3.65,3.65,3.66,338.08,337.3,336.87,336.42,335.99,335.54,335.08,334.65000000000003,333.63,24.900000000000002,24.47,24.28,24.07,23.87,23.68,23.490000000000002,23.3,22.91,N/A,N/A +2012,9,17,18,30,101010,99850,98730,74.2,0,3.46,3.65,3.69,3.72,3.74,3.7600000000000002,3.77,3.7800000000000002,3.81,310.36,310.25,310.2,310.15000000000003,310.09000000000003,310.05,309.99,309.94,309.82,25.44,25.02,24.830000000000002,24.63,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A +2012,9,17,19,30,100970,99820,98700,69.7,0,4.69,4.97,5.04,5.07,5.09,5.11,5.12,5.14,5.15,316.44,316.53000000000003,316.55,316.55,316.54,316.53000000000003,316.5,316.48,316.39,26.03,25.63,25.45,25.240000000000002,25.05,24.86,24.66,24.48,24.1,N/A,N/A +2012,9,17,20,30,100920,99770,98660,66.28,0,3.9,4.16,4.23,4.28,4.32,4.3500000000000005,4.39,4.42,4.49,322.67,322.47,322.32,322.16,322,321.85,321.69,321.53000000000003,321.19,26.52,26.14,25.96,25.77,25.580000000000002,25.39,25.19,25.01,24.64,N/A,N/A +2012,9,17,21,30,100860,99720,98600,64.94,0,3.64,3.87,3.93,3.97,4.01,4.04,4.07,4.1,4.17,323.26,322.65000000000003,322.31,321.96,321.63,321.3,320.96,320.63,319.91,26.95,26.6,26.42,26.22,26.04,25.85,25.66,25.48,25.11,N/A,N/A +2012,9,17,22,30,100840,99700,98590,63.910000000000004,0,3.14,3.36,3.42,3.47,3.5100000000000002,3.54,3.58,3.61,3.68,322.41,321.97,321.63,321.3,321,320.72,320.44,320.18,319.65000000000003,27.330000000000002,27.01,26.84,26.64,26.45,26.26,26.07,25.89,25.51,N/A,N/A +2012,9,17,23,30,100850,99700,98590,71.58,0,6,6.36,6.42,6.44,6.44,6.44,6.42,6.41,6.38,325.44,326.90000000000003,327.91,328.90000000000003,329.8,330.67,331.53000000000003,332.35,334.04,26.650000000000002,26.27,26.1,25.900000000000002,25.72,25.54,25.35,25.18,24.82,N/A,N/A +2012,9,18,0,30,100890,99740,98630,72.14,0,4.5200000000000005,4.75,4.78,4.79,4.79,4.79,4.79,4.79,4.7700000000000005,297.17,298.39,299.17,299.88,300.5,301.09000000000003,301.66,302.18,303.25,26.67,26.3,26.12,25.92,25.73,25.53,25.330000000000002,25.150000000000002,24.76,N/A,N/A +2012,9,18,1,30,100880,99730,98610,79.05,0,4.55,4.79,4.84,4.86,4.88,4.89,4.89,4.9,4.9,297.57,298.88,299.58,300.25,300.83,301.38,301.92,302.42,303.64,26.01,25.61,25.43,25.22,25.03,24.84,24.650000000000002,24.46,24.080000000000002,N/A,N/A +2012,9,18,2,30,100910,99770,98650,70.05,0,3.3200000000000003,3.46,3.47,3.47,3.47,3.46,3.45,3.45,3.43,305.98,307.56,308.52,309.48,310.33,311.14,311.93,312.67,314.14,26.63,26.27,26.1,25.89,25.7,25.51,25.32,25.13,24.75,N/A,N/A +2012,9,18,3,30,100940,99790,98680,68.26,0,4.24,4.48,4.5200000000000005,4.53,4.53,4.53,4.5200000000000005,4.51,4.49,344.53000000000003,344.85,344.99,345.12,345.24,345.34000000000003,345.44,345.53000000000003,345.7,26.89,26.52,26.34,26.14,25.95,25.75,25.55,25.37,24.98,N/A,N/A +2012,9,18,4,30,100970,99820,98710,70.22,0,5.32,5.5600000000000005,5.57,5.54,5.51,5.48,5.44,5.4,5.33,2.85,1.99,1.4000000000000001,0.78,0.21,359.66,359.08,358.54,357.37,26.41,26.02,25.84,25.64,25.44,25.26,25.060000000000002,24.87,24.490000000000002,N/A,N/A +2012,9,18,5,30,101020,99870,98750,71.35000000000001,0,3.5100000000000002,3.64,3.64,3.63,3.62,3.61,3.59,3.5700000000000003,3.54,5.14,3.97,3.2,2.37,1.58,0.77,359.88,359.02,357,26.04,25.66,25.48,25.27,25.080000000000002,24.89,24.7,24.52,24.14,N/A,N/A +2012,9,18,6,30,101060,99910,98790,70.31,0,3.7600000000000002,3.97,4.01,4.03,4.05,4.07,4.08,4.09,4.11,353.53000000000003,352.66,352.16,351.64,351.15000000000003,350.67,350.18,349.71,348.69,26.09,25.71,25.53,25.330000000000002,25.13,24.94,24.740000000000002,24.560000000000002,24.17,N/A,N/A +2012,9,18,7,30,101110,99950,98830,73.12,0,4.94,5.21,5.26,5.28,5.29,5.29,5.28,5.28,5.26,335.09000000000003,334.11,333.54,332.98,332.48,332.02,331.56,331.13,330.28000000000003,25.87,25.47,25.28,25.080000000000002,24.88,24.69,24.490000000000002,24.3,23.91,N/A,N/A +2012,9,18,8,30,101140,99980,98860,76.55,0,5.11,5.41,5.47,5.5,5.51,5.5200000000000005,5.53,5.54,5.55,340.94,340.44,340.11,339.75,339.42,339.1,338.76,338.43,337.73,25.48,25.07,24.88,24.67,24.47,24.28,24.080000000000002,23.89,23.51,N/A,N/A +2012,9,18,9,30,101180,100020,98900,74.67,0,6,6.3500000000000005,6.41,6.42,6.42,6.41,6.4,6.38,6.34,332.59000000000003,332.15000000000003,331.90000000000003,331.64,331.40000000000003,331.17,330.95,330.73,330.28000000000003,25.650000000000002,25.22,25.04,24.830000000000002,24.63,24.44,24.240000000000002,24.05,23.67,N/A,N/A +2012,9,18,10,30,101200,100040,98920,77.25,0,6.33,6.74,6.82,6.86,6.88,6.890000000000001,6.9,6.9,6.9,327.01,326.76,326.6,326.43,326.28000000000003,326.12,325.96,325.82,325.5,25.3,24.86,24.66,24.45,24.26,24.07,23.87,23.68,23.3,N/A,N/A +2012,9,18,11,30,101260,100100,98980,75.55,0,6.92,7.390000000000001,7.49,7.53,7.5600000000000005,7.57,7.58,7.58,7.57,339.03000000000003,338.89,338.78000000000003,338.66,338.55,338.45,338.34000000000003,338.24,338.02,25.26,24.8,24.61,24.400000000000002,24.2,24.01,23.81,23.62,23.240000000000002,N/A,N/A +2012,9,18,12,30,101290,100130,99010,80.66,0,7.0600000000000005,7.5200000000000005,7.61,7.65,7.67,7.68,7.68,7.68,7.66,339.86,339.58,339.39,339.19,339,338.82,338.64,338.47,338.09000000000003,24.87,24.400000000000002,24.2,23.990000000000002,23.79,23.59,23.39,23.21,22.82,N/A,N/A +2012,9,18,13,30,101330,100170,99040,81.15,0,7.34,7.86,7.99,8.05,8.09,8.120000000000001,8.13,8.15,8.16,338.24,338.28000000000003,338.29,338.3,338.31,338.31,338.32,338.32,338.35,24.79,24.310000000000002,24.11,23.900000000000002,23.7,23.51,23.31,23.13,22.740000000000002,N/A,N/A +2012,9,18,14,30,101400,100240,99110,81.98,0,7.09,7.57,7.68,7.74,7.7700000000000005,7.79,7.8,7.8100000000000005,7.8100000000000005,348.24,347.89,347.66,347.45,347.25,347.06,346.88,346.7,346.33,24.66,24.18,23.98,23.77,23.57,23.38,23.18,22.990000000000002,22.61,N/A,N/A +2012,9,18,15,30,101430,100270,99150,79.83,0,7.2,7.72,7.86,7.930000000000001,7.97,8.01,8.03,8.05,8.08,345.05,345.07,345.09000000000003,345.1,345.12,345.15000000000003,345.18,345.21,345.27,24.98,24.51,24.310000000000002,24.1,23.900000000000002,23.71,23.51,23.32,22.94,N/A,N/A +2012,9,18,16,30,101480,100320,99190,73.72,0,7.21,7.75,7.88,7.95,8,8.03,8.06,8.08,8.11,352.16,352.05,351.99,351.92,351.87,351.81,351.77,351.72,351.64,25.45,25.01,24.82,24.6,24.41,24.21,24.01,23.830000000000002,23.44,N/A,N/A +2012,9,18,17,30,101490,100330,99200,69.34,0,6.73,7.24,7.36,7.44,7.49,7.53,7.5600000000000005,7.59,7.62,348.13,348.28000000000003,348.38,348.47,348.56,348.65000000000003,348.74,348.83,349.02,25.96,25.55,25.36,25.150000000000002,24.96,24.76,24.57,24.38,23.990000000000002,N/A,N/A +2012,9,18,18,30,101490,100330,99210,65.61,0,6,6.45,6.55,6.61,6.65,6.68,6.7,6.72,6.74,341.58,342.06,342.39,342.72,343.04,343.34000000000003,343.66,343.96,344.61,26.62,26.25,26.07,25.86,25.67,25.48,25.28,25.1,24.71,N/A,N/A +2012,9,18,19,30,101480,100320,99200,62.410000000000004,0,4.92,5.34,5.46,5.54,5.61,5.67,5.72,5.7700000000000005,5.8500000000000005,339.41,340.04,340.43,340.79,341.12,341.44,341.74,342.02,342.59000000000003,27.330000000000002,27,26.830000000000002,26.63,26.45,26.26,26.060000000000002,25.88,25.5,N/A,N/A +2012,9,18,20,30,101460,100310,99190,64.97,0,5.04,5.43,5.51,5.5600000000000005,5.59,5.62,5.64,5.66,5.69,332.35,333.75,334.6,335.43,336.16,336.85,337.52,338.15000000000003,339.39,27.82,27.52,27.36,27.16,26.98,26.79,26.6,26.42,26.04,N/A,N/A +2012,9,18,21,30,101450,100300,99180,67.25,0,3.8000000000000003,3.99,4.0200000000000005,4.01,4,3.98,3.93,3.88,3.5500000000000003,73.49,74.22,74.46000000000001,74.63,74.67,74.62,74.14,73.53,69.02,26.97,26.64,26.48,26.29,26.13,25.96,25.810000000000002,25.69,25.55,N/A,N/A +2012,9,18,22,30,101420,100270,99160,65.41,0,2.0100000000000002,2.04,2.02,1.98,1.94,1.9000000000000001,1.85,1.8,1.68,72.55,71.96000000000001,71.51,70.95,70.37,69.7,68.9,68.07000000000001,64.93,27.490000000000002,27.18,27.01,26.810000000000002,26.63,26.44,26.25,26.080000000000002,25.72,N/A,N/A +2012,9,18,23,30,101420,100270,99150,65.34,0,0.75,0.85,0.89,0.93,1,1.09,1.24,1.42,2.17,37.7,33.22,30.240000000000002,27.04,23.37,18.77,13.52,7.7,357.64,27.73,27.43,27.28,27.09,26.91,26.740000000000002,26.580000000000002,26.44,26.23,N/A,N/A +2012,9,19,0,30,101440,100290,99180,66.52,0,1.68,1.99,2.12,2.2600000000000002,2.37,2.49,2.6,2.71,2.98,21.37,17.78,15.89,14.3,13,11.870000000000001,10.870000000000001,9.97,8.34,28.05,27.79,27.63,27.45,27.27,27.1,26.91,26.740000000000002,26.37,N/A,N/A +2012,9,19,1,30,101450,100300,99190,65.22,0,6.79,7.41,7.54,7.61,7.67,7.7,7.72,7.74,7.78,355.2,355.93,356.37,356.86,357.32,357.78000000000003,358.28000000000003,358.75,359.81,28.400000000000002,28.150000000000002,28,27.82,27.64,27.46,27.27,27.1,26.73,N/A,N/A +2012,9,19,2,30,101510,100360,99240,65.41,0,6.68,7.28,7.42,7.48,7.53,7.5600000000000005,7.57,7.58,7.59,20.46,20.75,20.86,20.96,21.04,21.12,21.2,21.26,21.400000000000002,28.28,28.02,27.86,27.67,27.490000000000002,27.3,27.11,26.92,26.55,N/A,N/A +2012,9,19,3,30,101530,100380,99270,66.46000000000001,0,7.01,7.6000000000000005,7.72,7.76,7.79,7.8,7.8,7.79,7.7700000000000005,31.470000000000002,31.45,31.44,31.41,31.38,31.34,31.3,31.26,31.150000000000002,27.87,27.57,27.41,27.22,27.03,26.85,26.650000000000002,26.47,26.09,N/A,N/A +2012,9,19,4,30,101550,100400,99280,70.04,0,7.79,8.39,8.5,8.53,8.540000000000001,8.53,8.51,8.48,8.41,28.810000000000002,29.32,29.68,30.03,30.35,30.66,30.970000000000002,31.26,31.87,27.23,26.89,26.72,26.52,26.330000000000002,26.150000000000002,25.95,25.77,25.400000000000002,N/A,N/A +2012,9,19,5,30,101560,100410,99290,74.07000000000001,0,7.54,8.11,8.22,8.26,8.290000000000001,8.290000000000001,8.290000000000001,8.28,8.25,36.480000000000004,36.95,37.22,37.49,37.730000000000004,37.97,38.21,38.44,38.93,26.7,26.32,26.150000000000002,25.95,25.76,25.57,25.38,25.2,24.830000000000002,N/A,N/A +2012,9,19,6,30,101590,100440,99320,75.37,0,7.79,8.370000000000001,8.49,8.540000000000001,8.56,8.57,8.56,8.55,8.51,46.58,46.83,47,47.17,47.32,47.47,47.62,47.76,48.06,26.52,26.12,25.93,25.73,25.53,25.34,25.150000000000002,24.96,24.580000000000002,N/A,N/A +2012,9,19,7,30,101620,100460,99340,76.27,0,8.27,8.96,9.11,9.19,9.23,9.26,9.27,9.28,9.27,49.660000000000004,49.95,50.1,50.26,50.4,50.52,50.65,50.77,51.01,26.44,26.02,25.84,25.63,25.43,25.240000000000002,25.04,24.86,24.47,N/A,N/A +2012,9,19,8,30,101640,100480,99360,79.12,0,8.16,8.8,8.94,9.01,9.05,9.07,9.08,9.08,9.07,55.19,55.45,55.61,55.76,55.88,55.99,56.1,56.21,56.410000000000004,26.13,25.69,25.5,25.29,25.09,24.89,24.69,24.5,24.12,N/A,N/A +2012,9,19,9,30,101670,100510,99380,79.49,0,8.26,8.88,9.01,9.07,9.1,9.11,9.11,9.11,9.08,60.25,60.42,60.52,60.61,60.69,60.77,60.84,60.92,61.050000000000004,25.830000000000002,25.38,25.19,24.97,24.77,24.57,24.38,24.19,23.8,N/A,N/A +2012,9,19,10,30,101700,100540,99410,78.78,0,8.76,9.450000000000001,9.59,9.65,9.69,9.71,9.72,9.72,9.700000000000001,57.59,57.870000000000005,58.050000000000004,58.22,58.38,58.53,58.69,58.83,59.120000000000005,25.42,24.95,24.740000000000002,24.53,24.330000000000002,24.13,23.93,23.740000000000002,23.35,N/A,N/A +2012,9,19,11,30,101740,100570,99450,79.46000000000001,0,8.73,9.39,9.540000000000001,9.6,9.65,9.67,9.68,9.68,9.66,65,64.92,64.92,64.93,64.93,64.94,64.94,64.95,64.96000000000001,25.240000000000002,24.75,24.54,24.32,24.12,23.92,23.72,23.53,23.13,N/A,N/A +2012,9,19,12,30,101770,100600,99470,76.87,0,8.36,8.97,9.1,9.16,9.200000000000001,9.22,9.22,9.22,9.200000000000001,60.85,60.910000000000004,60.980000000000004,61.050000000000004,61.11,61.160000000000004,61.22,61.26,61.36,25.03,24.54,24.330000000000002,24.12,23.91,23.72,23.51,23.32,22.93,N/A,N/A +2012,9,19,13,30,101830,100660,99530,72.68,0,7.68,8.22,8.32,8.36,8.38,8.38,8.38,8.370000000000001,8.33,59.53,59.620000000000005,59.72,59.800000000000004,59.88,59.94,60.01,60.07,60.2,24.94,24.46,24.26,24.04,23.84,23.650000000000002,23.45,23.26,22.87,N/A,N/A +2012,9,19,14,30,101880,100710,99570,71.88,0,7.82,8.370000000000001,8.47,8.52,8.55,8.56,8.56,8.56,8.53,62.980000000000004,63.18,63.31,63.42,63.51,63.6,63.7,63.78,63.940000000000005,24.8,24.310000000000002,24.1,23.89,23.69,23.490000000000002,23.29,23.1,22.7,N/A,N/A +2012,9,19,15,30,101860,100690,99550,71.43,0,7.34,7.8100000000000005,7.9,7.930000000000001,7.94,7.94,7.930000000000001,7.92,7.88,58.53,58.51,58.49,58.47,58.45,58.42,58.39,58.36,58.300000000000004,24.62,24.13,23.92,23.71,23.5,23.31,23.1,22.91,22.52,N/A,N/A +2012,9,19,16,30,101870,100700,99560,68.47,0,6.5200000000000005,6.91,6.98,7.01,7.0200000000000005,7.0200000000000005,7.01,7,6.97,61.480000000000004,61.79,61.96,62.13,62.28,62.42,62.57,62.7,62.980000000000004,24.650000000000002,24.17,23.96,23.75,23.55,23.35,23.150000000000002,22.97,22.57,N/A,N/A +2012,9,19,17,30,101860,100690,99550,67.84,0,5.91,6.24,6.29,6.3100000000000005,6.32,6.3100000000000005,6.3100000000000005,6.29,6.26,63.15,63.18,63.22,63.24,63.25,63.26,63.27,63.28,63.28,24.66,24.19,23.990000000000002,23.78,23.580000000000002,23.38,23.18,22.990000000000002,22.6,N/A,N/A +2012,9,19,18,30,101880,100710,99570,67.59,0,5.05,5.3,5.33,5.34,5.33,5.32,5.3,5.28,5.24,77.32000000000001,77.19,77.10000000000001,77.01,76.91,76.81,76.7,76.59,76.35000000000001,24.76,24.310000000000002,24.12,23.91,23.71,23.52,23.31,23.13,22.740000000000002,N/A,N/A +2012,9,19,19,30,101840,100680,99540,64.94,0,3.6,3.74,3.75,3.75,3.74,3.73,3.71,3.7,3.67,74.87,74.38,74.11,73.83,73.56,73.28,72.99,72.72,72.07000000000001,24.990000000000002,24.57,24.38,24.17,23.97,23.78,23.580000000000002,23.39,23.01,N/A,N/A +2012,9,19,20,30,101810,100640,99510,63.18,0,2.94,3.04,3.0300000000000002,3.0100000000000002,2.99,2.98,2.95,2.93,2.88,93.08,92.60000000000001,92.24,91.86,91.51,91.16,90.79,90.45,89.68,25.22,24.82,24.63,24.43,24.23,24.04,23.84,23.650000000000002,23.27,N/A,N/A +2012,9,19,21,30,101770,100600,99470,61.31,0,1.71,1.75,1.75,1.74,1.72,1.72,1.7,1.69,1.6600000000000001,96.33,95.57000000000001,95.06,94.54,94.03,93.54,92.99,92.47,91.22,25.39,25,24.810000000000002,24.61,24.41,24.22,24.03,23.84,23.45,N/A,N/A +2012,9,19,22,30,101750,100580,99450,61.31,0,1.83,1.8800000000000001,1.87,1.86,1.85,1.83,1.82,1.81,1.78,104.74000000000001,104.26,103.92,103.58,103.26,102.93,102.60000000000001,102.29,101.55,25.57,25.19,25,24.8,24.61,24.42,24.21,24.03,23.64,N/A,N/A +2012,9,19,23,30,101740,100570,99440,61.08,0,2.2800000000000002,2.36,2.36,2.35,2.34,2.33,2.32,2.3000000000000003,2.27,104.52,104.19,103.95,103.68,103.42,103.15,102.86,102.59,101.93,25.72,25.34,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A +2012,9,20,0,30,101710,100550,99420,61.07,0,2.8000000000000003,2.89,2.89,2.88,2.87,2.86,2.84,2.83,2.8000000000000003,111.39,111.14,111,110.83,110.67,110.51,110.34,110.18,109.81,25.86,25.48,25.3,25.09,24.900000000000002,24.71,24.51,24.32,23.93,N/A,N/A +2012,9,20,1,30,101740,100570,99450,60.34,0,3.2,3.33,3.34,3.34,3.34,3.34,3.33,3.33,3.31,99.29,99.12,98.99000000000001,98.87,98.75,98.64,98.52,98.41,98.18,25.94,25.560000000000002,25.38,25.17,24.98,24.79,24.59,24.400000000000002,24.01,N/A,N/A +2012,9,20,2,30,101750,100580,99460,58.95,0,3.29,3.45,3.48,3.49,3.5,3.5,3.5,3.5100000000000002,3.5100000000000002,76.32000000000001,76.23,76.22,76.19,76.16,76.12,76.07000000000001,76.03,75.9,26.01,25.63,25.44,25.25,25.05,24.86,24.66,24.47,24.09,N/A,N/A +2012,9,20,3,30,101740,100580,99450,55.82,0,3.68,3.9,3.95,3.98,4,4.0200000000000005,4.04,4.05,4.07,59.550000000000004,59.01,58.72,58.45,58.21,57.99,57.77,57.58,57.2,26.16,25.78,25.6,25.400000000000002,25.2,25.01,24.810000000000002,24.63,24.240000000000002,N/A,N/A +2012,9,20,4,30,101720,100560,99430,56.56,0,3.74,3.94,3.97,3.99,4,4.01,4.01,4.0200000000000005,4.0200000000000005,63.39,63.800000000000004,63.95,64.09,64.22,64.34,64.45,64.55,64.76,26.11,25.73,25.55,25.35,25.150000000000002,24.96,24.76,24.57,24.18,N/A,N/A +2012,9,20,5,30,101720,100550,99420,50.33,0,3.65,3.85,3.88,3.9,3.92,3.93,3.94,3.95,3.96,55.57,56.07,56.31,56.52,56.7,56.88,57.04,57.17,57.45,26.330000000000002,25.96,25.78,25.580000000000002,25.39,25.19,24.990000000000002,24.810000000000002,24.42,N/A,N/A +2012,9,20,6,30,101740,100580,99450,55.49,0,4.5,4.71,4.73,4.73,4.72,4.71,4.69,4.68,4.63,45.17,45.65,45.83,46,46.15,46.300000000000004,46.46,46.61,46.95,25.89,25.5,25.32,25.12,24.92,24.73,24.54,24.35,23.96,N/A,N/A +2012,9,20,7,30,101730,100570,99440,51.35,0,3.02,3.16,3.18,3.19,3.19,3.2,3.2,3.2,3.2,50.49,51.43,51.980000000000004,52.49,52.97,53.410000000000004,53.85,54.25,55.07,25.990000000000002,25.62,25.44,25.240000000000002,25.04,24.85,24.650000000000002,24.47,24.07,N/A,N/A +2012,9,20,8,30,101760,100600,99470,51.52,0,3.34,3.52,3.56,3.58,3.59,3.6,3.61,3.61,3.62,55.93,56.56,56.980000000000004,57.36,57.7,58.02,58.33,58.61,59.160000000000004,26.17,25.810000000000002,25.63,25.43,25.23,25.04,24.84,24.650000000000002,24.26,N/A,N/A +2012,9,20,9,30,101770,100600,99470,49.84,0,2.59,2.7,2.71,2.72,2.73,2.73,2.73,2.73,2.74,57.6,58.38,58.9,59.410000000000004,59.88,60.33,60.800000000000004,61.230000000000004,62.13,26.12,25.76,25.580000000000002,25.38,25.19,24.990000000000002,24.79,24.61,24.22,N/A,N/A +2012,9,20,10,30,101740,100580,99450,54.2,0,3.16,3.2600000000000002,3.25,3.23,3.21,3.19,3.16,3.14,3.09,44.45,45.19,45.68,46.15,46.59,47,47.42,47.800000000000004,48.61,25.94,25.560000000000002,25.38,25.18,24.98,24.79,24.59,24.41,24.02,N/A,N/A +2012,9,20,11,30,101760,100590,99460,54.86,0,3.29,3.38,3.37,3.34,3.31,3.29,3.2600000000000002,3.24,3.19,79.5,78.83,78.35000000000001,77.86,77.41,76.98,76.54,76.14,75.3,25.810000000000002,25.43,25.25,25.04,24.85,24.66,24.46,24.27,23.88,N/A,N/A +2012,9,20,12,30,101770,100600,99470,56.34,0,3.37,3.46,3.44,3.41,3.38,3.35,3.3200000000000003,3.29,3.23,65.91,66.01,66.07000000000001,66.15,66.2,66.24,66.29,66.33,66.41,25.61,25.22,25.04,24.830000000000002,24.64,24.45,24.25,24.060000000000002,23.67,N/A,N/A +2012,9,20,13,30,101780,100610,99480,59.31,0,3.83,3.99,3.99,3.99,3.97,3.96,3.94,3.92,3.89,70.38,70.23,70.05,69.88,69.73,69.59,69.44,69.3,69.04,25.490000000000002,25.09,24.900000000000002,24.7,24.5,24.310000000000002,24.11,23.92,23.53,N/A,N/A +2012,9,20,14,30,101800,100640,99500,58.410000000000004,0,3.52,3.66,3.66,3.65,3.64,3.63,3.61,3.59,3.56,72.11,71.62,71.35000000000001,71.09,70.85000000000001,70.62,70.38,70.17,69.73,25.37,24.97,24.78,24.580000000000002,24.38,24.19,23.990000000000002,23.8,23.41,N/A,N/A +2012,9,20,15,30,101800,100630,99500,57.480000000000004,0,3.84,3.99,4,3.99,3.97,3.96,3.94,3.92,3.88,60.17,60.28,60.410000000000004,60.52,60.63,60.72,60.82,60.910000000000004,61.08,25.330000000000002,24.93,24.740000000000002,24.54,24.34,24.14,23.94,23.76,23.37,N/A,N/A +2012,9,20,16,30,101780,100610,99480,56.28,0,3.88,4.04,4.05,4.05,4.03,4.03,4.01,3.99,3.96,55.910000000000004,55.97,55.97,55.980000000000004,55.980000000000004,55.980000000000004,55.99,56,55.99,25.310000000000002,24.900000000000002,24.72,24.51,24.32,24.12,23.92,23.740000000000002,23.34,N/A,N/A +2012,9,20,17,30,101770,100600,99470,55.08,0,3.8200000000000003,3.98,3.99,3.98,3.97,3.95,3.94,3.92,3.88,60.160000000000004,60.17,60.09,60.01,59.93,59.870000000000005,59.79,59.72,59.58,25.29,24.88,24.69,24.490000000000002,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A +2012,9,20,18,30,101730,100560,99430,53.58,0,3.13,3.23,3.23,3.21,3.2,3.19,3.17,3.15,3.12,65.85,65.18,64.8,64.41,64.04,63.690000000000005,63.31,62.96,62.21,25.32,24.92,24.73,24.53,24.34,24.150000000000002,23.95,23.77,23.38,N/A,N/A +2012,9,20,19,30,101690,100530,99400,52.92,0,2.5300000000000002,2.6,2.6,2.58,2.57,2.5500000000000003,2.54,2.52,2.48,73.59,73.02,72.65,72.27,71.92,71.59,71.22,70.86,70.08,25.37,24.98,24.79,24.59,24.400000000000002,24.21,24.01,23.82,23.44,N/A,N/A +2012,9,20,20,30,101660,100490,99360,52.14,0,2.73,2.81,2.8000000000000003,2.79,2.77,2.7600000000000002,2.74,2.72,2.68,88.07000000000001,87.73,87.48,87.21000000000001,86.95,86.7,86.43,86.17,85.55,25.48,25.09,24.91,24.71,24.51,24.330000000000002,24.13,23.94,23.56,N/A,N/A +2012,9,20,21,30,101630,100460,99330,53.57,0,2.5300000000000002,2.61,2.61,2.59,2.58,2.56,2.54,2.52,2.48,98.18,97.9,97.65,97.42,97.19,96.97,96.73,96.51,95.98,25.51,25.12,24.94,24.740000000000002,24.54,24.36,24.16,23.97,23.580000000000002,N/A,N/A +2012,9,20,22,30,101590,100420,99300,54.03,0,2.33,2.4,2.4,2.39,2.38,2.37,2.36,2.35,2.32,89.62,89.04,88.74,88.43,88.13,87.85000000000001,87.52,87.21000000000001,86.51,25.580000000000002,25.2,25.02,24.82,24.63,24.44,24.240000000000002,24.060000000000002,23.67,N/A,N/A +2012,9,20,23,30,101590,100420,99290,54.24,0,3.15,3.2800000000000002,3.29,3.29,3.29,3.2800000000000002,3.2800000000000002,3.27,3.25,103.55,103.06,102.85000000000001,102.63,102.41,102.18,101.93,101.7,101.14,25.67,25.29,25.11,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A +2012,9,21,0,30,101550,100390,99260,56.480000000000004,0,3.52,3.7,3.73,3.75,3.7600000000000002,3.77,3.7800000000000002,3.7800000000000002,3.79,104.2,104.08,103.96000000000001,103.83,103.72,103.61,103.49000000000001,103.38,103.13,25.67,25.29,25.1,24.900000000000002,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A +2012,9,21,1,30,101550,100390,99260,52.620000000000005,0,2.8000000000000003,2.96,2.99,3.0100000000000002,3.0300000000000002,3.04,3.0500000000000003,3.0700000000000003,3.09,102.47,102.31,102.18,102.04,101.92,101.79,101.65,101.52,101.23,25.91,25.54,25.36,25.16,24.97,24.78,24.580000000000002,24.400000000000002,24.01,N/A,N/A +2012,9,21,2,30,101560,100400,99270,53.2,0,3.96,4.18,4.21,4.22,4.23,4.23,4.24,4.24,4.23,105.2,104.94,104.76,104.58,104.41,104.25,104.08,103.93,103.56,26.05,25.68,25.5,25.3,25.1,24.91,24.72,24.53,24.14,N/A,N/A +2012,9,21,3,30,101550,100390,99260,53.39,0,3.63,3.81,3.85,3.86,3.87,3.87,3.88,3.88,3.88,103.72,103.18,102.84,102.51,102.19,101.89,101.58,101.3,100.68,26.07,25.7,25.52,25.32,25.13,24.94,24.740000000000002,24.55,24.17,N/A,N/A +2012,9,21,4,30,101520,100360,99230,53.92,0,3.62,3.83,3.87,3.89,3.91,3.92,3.94,3.95,3.96,95.65,95.36,95.19,95.01,94.85000000000001,94.69,94.52,94.35000000000001,94.02,26.09,25.72,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A +2012,9,21,5,30,101550,100390,99260,54.32,0,4.28,4.5200000000000005,4.57,4.59,4.6000000000000005,4.61,4.62,4.62,4.62,97.06,96.73,96.53,96.36,96.19,96.02,95.86,95.72,95.39,26.14,25.77,25.59,25.39,25.19,25,24.8,24.62,24.23,N/A,N/A +2012,9,21,6,30,101550,100380,99260,54.04,0,3.92,4.15,4.2,4.23,4.25,4.2700000000000005,4.28,4.29,4.3100000000000005,88.44,88.62,88.7,88.75,88.8,88.85000000000001,88.88,88.92,88.98,26.12,25.75,25.57,25.37,25.18,24.990000000000002,24.79,24.6,24.21,N/A,N/A +2012,9,21,7,30,101560,100400,99270,54.85,0,3.49,3.69,3.74,3.77,3.79,3.8000000000000003,3.8200000000000003,3.83,3.85,88.46000000000001,88.46000000000001,88.46000000000001,88.45,88.43,88.4,88.37,88.33,88.23,26.05,25.68,25.5,25.3,25.1,24.91,24.71,24.53,24.14,N/A,N/A +2012,9,21,8,30,101540,100380,99250,54.96,0,3.3200000000000003,3.46,3.47,3.47,3.46,3.46,3.45,3.45,3.44,85.49,85.05,84.83,84.62,84.44,84.27,84.11,83.97,83.69,25.94,25.57,25.39,25.19,25,24.810000000000002,24.61,24.43,24.03,N/A,N/A +2012,9,21,9,30,101560,100400,99270,59.09,0,3.74,3.91,3.93,3.94,3.94,3.94,3.94,3.93,3.92,83.99,84.8,85.32000000000001,85.76,86.11,86.4,86.64,86.84,87.16,25.87,25.490000000000002,25.310000000000002,25.11,24.91,24.72,24.52,24.330000000000002,23.94,N/A,N/A +2012,9,21,10,30,101570,100400,99280,60.67,0,4.32,4.58,4.62,4.65,4.66,4.68,4.68,4.69,4.71,88.57000000000001,88.11,87.78,87.44,87.15,86.89,86.62,86.38,85.94,25.740000000000002,25.36,25.17,24.97,24.78,24.59,24.39,24.2,23.81,N/A,N/A +2012,9,21,11,30,101550,100390,99270,61.7,0,3.75,4.01,4.08,4.13,4.17,4.21,4.24,4.26,4.3100000000000005,74.78,74.53,74.5,74.46000000000001,74.43,74.4,74.37,74.35000000000001,74.32000000000001,25.76,25.37,25.19,24.990000000000002,24.79,24.6,24.400000000000002,24.21,23.82,N/A,N/A +2012,9,21,12,30,101540,100380,99260,62.74,0,4.17,4.4,4.45,4.48,4.5,4.51,4.53,4.54,4.55,64.48,64.8,64.94,65.07000000000001,65.18,65.29,65.4,65.51,65.72,25.82,25.43,25.25,25.05,24.85,24.66,24.46,24.28,23.89,N/A,N/A +2012,9,21,13,30,101540,100370,99250,61.44,0,3.7,3.88,3.9,3.91,3.92,3.92,3.92,3.91,3.9,73.08,73.47,73.69,73.88,74.04,74.2,74.34,74.46000000000001,74.7,26.02,25.64,25.46,25.26,25.060000000000002,24.87,24.67,24.490000000000002,24.1,N/A,N/A +2012,9,21,14,30,101540,100380,99260,66.83,0,3.43,3.62,3.67,3.69,3.71,3.72,3.74,3.74,3.7600000000000002,65.84,66.66,67.19,67.68,68.11,68.51,68.92,69.29,70.03,25.96,25.59,25.41,25.2,25.01,24.82,24.62,24.43,24.04,N/A,N/A +2012,9,21,15,30,101570,100410,99280,76.77,0,5.82,6.04,6.0200000000000005,5.96,5.89,5.82,5.75,5.68,5.54,33.37,34.97,36.04,37.14,38.17,39.17,40.19,41.15,43.22,25.580000000000002,25.18,25,24.8,24.61,24.43,24.23,24.05,23.68,N/A,N/A +2012,9,21,16,30,101550,100390,99270,76.08,0,3.92,4.15,4.21,4.24,4.2700000000000005,4.28,4.3,4.3100000000000005,4.33,60.46,61.34,61.730000000000004,62.04,62.28,62.49,62.67,62.83,63.08,26.02,25.64,25.45,25.25,25.05,24.86,24.66,24.48,24.09,N/A,N/A +2012,9,21,17,30,101490,100330,99210,77.99,0,5.0200000000000005,5.32,5.37,5.4,5.41,5.42,5.42,5.42,5.41,47.980000000000004,48.4,48.660000000000004,48.910000000000004,49.13,49.35,49.56,49.76,50.18,25.93,25.53,25.34,25.14,24.94,24.75,24.55,24.37,23.98,N/A,N/A +2012,9,21,18,30,101480,100330,99210,80.08,0,5.68,6.05,6.12,6.15,6.16,6.17,6.17,6.18,6.16,55.77,56.03,56.14,56.24,56.31,56.39,56.45,56.52,56.64,25.990000000000002,25.59,25.400000000000002,25.19,25,24.8,24.61,24.42,24.03,N/A,N/A +2012,9,21,19,30,101470,100310,99190,81.95,0,5.8500000000000005,6.24,6.32,6.3500000000000005,6.37,6.38,6.38,6.38,6.36,61.050000000000004,61.27,61.46,61.64,61.800000000000004,61.95,62.11,62.26,62.59,25.96,25.55,25.36,25.16,24.96,24.77,24.57,24.39,24.01,N/A,N/A +2012,9,21,20,30,101450,100290,99170,84.32000000000001,0,6.5,6.98,7.1000000000000005,7.15,7.19,7.22,7.24,7.26,7.28,71.02,71.13,71.22,71.3,71.37,71.44,71.51,71.58,71.73,26.12,25.71,25.53,25.330000000000002,25.13,24.94,24.75,24.560000000000002,24.18,N/A,N/A +2012,9,21,21,30,101460,100310,99190,81.62,0,7.05,7.62,7.75,7.82,7.87,7.9,7.930000000000001,7.94,7.96,83.15,83.3,83.37,83.45,83.53,83.60000000000001,83.69,83.76,83.94,26.52,26.14,25.96,25.75,25.560000000000002,25.37,25.18,24.990000000000002,24.61,N/A,N/A +2012,9,21,22,30,101410,100260,99140,80.04,0,6.36,6.84,6.94,6.98,7,7,7,6.99,6.97,92.63,92.66,92.74,92.82000000000001,92.89,92.96000000000001,93.04,93.10000000000001,93.26,26.77,26.400000000000002,26.22,26.02,25.830000000000002,25.64,25.45,25.26,24.88,N/A,N/A +2012,9,21,23,30,101410,100260,99150,79.35000000000001,0,5.0600000000000005,5.39,5.45,5.48,5.49,5.5,5.5,5.49,5.47,105.11,105.39,105.42,105.41,105.38,105.33,105.27,105.21000000000001,105.07000000000001,26.96,26.61,26.43,26.23,26.04,25.85,25.650000000000002,25.47,25.080000000000002,N/A,N/A +2012,9,22,0,30,101430,100270,99160,80.65,0,6.08,6.53,6.63,6.67,6.69,6.7,6.7,6.7,6.68,99.02,99.01,98.92,98.81,98.7,98.58,98.46000000000001,98.34,98.07000000000001,26.84,26.48,26.3,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A +2012,9,22,1,30,101450,100300,99180,79.28,0,5.71,6.12,6.19,6.23,6.25,6.26,6.26,6.26,6.25,98.17,98.12,98.09,98.07000000000001,98.04,98.02,98.01,98.01,98,26.82,26.46,26.29,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A +2012,9,22,2,30,101470,100320,99200,80.04,0,5.34,5.71,5.78,5.82,5.84,5.8500000000000005,5.8500000000000005,5.86,5.8500000000000005,98.63,98.55,98.55,98.56,98.56,98.56,98.56,98.56,98.54,26.78,26.42,26.240000000000002,26.04,25.85,25.66,25.46,25.28,24.89,N/A,N/A +2012,9,22,3,30,101480,100330,99210,80.83,0,6.05,6.5200000000000005,6.640000000000001,6.7,6.74,6.7700000000000005,6.79,6.8100000000000005,6.84,107.47,107.49000000000001,107.5,107.51,107.53,107.55,107.57000000000001,107.59,107.65,26.82,26.46,26.28,26.080000000000002,25.89,25.69,25.5,25.310000000000002,24.93,N/A,N/A +2012,9,22,4,30,101450,100300,99180,82.46000000000001,0,4.55,4.86,4.93,4.97,4.99,5.01,5.03,5.04,5.0600000000000005,125.38000000000001,125.74000000000001,125.96000000000001,126.17,126.36,126.54,126.73,126.89,127.25,26.740000000000002,26.38,26.21,26.01,25.82,25.62,25.43,25.240000000000002,24.86,N/A,N/A +2012,9,22,5,30,101490,100340,99220,81.18,0,5.14,5.51,5.58,5.63,5.66,5.67,5.69,5.7,5.71,125.60000000000001,125.8,125.87,125.93,126,126.06,126.12,126.17,126.29,26.87,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A +2012,9,22,6,30,101500,100350,99230,79.23,0,4.49,4.7700000000000005,4.82,4.8500000000000005,4.86,4.87,4.88,4.88,4.87,128.35,128.54,128.63,128.71,128.79,128.86,128.92000000000002,128.98,129.11,26.86,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.98,N/A,N/A +2012,9,22,7,30,101520,100370,99250,79.86,0,3.8200000000000003,4.08,4.14,4.17,4.2,4.22,4.24,4.25,4.28,136.46,136.93,137.14000000000001,137.33,137.53,137.71,137.9,138.07,138.43,26.89,26.54,26.36,26.16,25.97,25.78,25.59,25.400000000000002,25.01,N/A,N/A +2012,9,22,8,30,101540,100390,99280,80.10000000000001,0,4.1,4.37,4.43,4.47,4.5,4.51,4.53,4.54,4.5600000000000005,131.99,132.32,132.56,132.79,133,133.21,133.43,133.64000000000001,134.1,26.89,26.53,26.36,26.16,25.97,25.78,25.59,25.400000000000002,25.02,N/A,N/A +2012,9,22,9,30,101560,100400,99290,81.33,0,3.68,3.87,3.89,3.89,3.89,3.88,3.86,3.85,3.8200000000000003,153.69,153.17000000000002,152.98,152.8,152.63,152.47,152.3,152.15,151.81,26.87,26.52,26.34,26.150000000000002,25.96,25.77,25.57,25.38,25,N/A,N/A +2012,9,22,10,30,101600,100450,99330,78.73,0,3.71,3.93,3.96,3.98,3.99,3.99,4,4,3.99,134.43,134.47,134.55,134.63,134.69,134.75,134.81,134.85,134.97,26.91,26.560000000000002,26.39,26.19,26,25.810000000000002,25.61,25.42,25.04,N/A,N/A +2012,9,22,11,30,101640,100480,99360,79.99,0,3.84,4.04,4.07,4.08,4.08,4.08,4.07,4.0600000000000005,4.03,132.49,132.5,132.51,132.52,132.52,132.52,132.52,132.52,132.51,26.84,26.490000000000002,26.310000000000002,26.11,25.92,25.73,25.53,25.35,24.96,N/A,N/A +2012,9,22,12,30,101660,100500,99390,79.56,0,2.67,2.82,2.84,2.86,2.87,2.89,2.9,2.9,2.91,114.44,115.01,115.34,115.65,115.93,116.18,116.43,116.65,117.11,26.810000000000002,26.47,26.3,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.94,N/A,N/A +2012,9,22,13,30,101700,100550,99430,80.41,0,2.49,2.61,2.63,2.65,2.66,2.66,2.66,2.66,2.67,105.53,106.24000000000001,106.65,107.02,107.34,107.64,107.93,108.2,108.74000000000001,26.77,26.42,26.25,26.05,25.86,25.67,25.47,25.28,24.900000000000002,N/A,N/A +2012,9,22,14,30,101760,100600,99480,79.07000000000001,0,2.15,2.24,2.25,2.25,2.25,2.24,2.24,2.24,2.23,90.51,91.16,91.65,92.13,92.57000000000001,92.99,93.43,93.85000000000001,94.68,26.8,26.46,26.29,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A +2012,9,22,15,30,101770,100620,99500,80.60000000000001,0,2.67,2.7800000000000002,2.79,2.79,2.79,2.7800000000000002,2.77,2.77,2.75,70.74,71.13,71.39,71.64,71.86,72.06,72.27,72.48,72.87,26.79,26.44,26.26,26.060000000000002,25.87,25.68,25.490000000000002,25.3,24.92,N/A,N/A +2012,9,22,16,30,101790,100630,99510,79.71000000000001,0,3.31,3.47,3.49,3.5,3.5,3.5,3.5,3.49,3.48,66.73,67.12,67.28,67.45,67.61,67.77,67.93,68.08,68.41,26.88,26.52,26.34,26.14,25.95,25.76,25.560000000000002,25.37,24.990000000000002,N/A,N/A +2012,9,22,17,30,101790,100630,99510,79.51,0,3.52,3.71,3.74,3.74,3.75,3.75,3.74,3.74,3.73,70.92,70.94,71,71.06,71.11,71.16,71.22,71.28,71.38,26.93,26.57,26.39,26.19,26,25.810000000000002,25.61,25.43,25.04,N/A,N/A +2012,9,22,18,30,101780,100630,99510,80.03,0,3.73,3.92,3.94,3.95,3.95,3.94,3.94,3.93,3.91,81.98,82.01,82,81.99,81.98,81.96000000000001,81.94,81.93,81.92,27.04,26.68,26.5,26.3,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A +2012,9,22,19,30,101790,100640,99520,82.41,0,4.22,4.46,4.5,4.51,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.51,4.49,105.44,105.57000000000001,105.67,105.79,105.91,106.02,106.15,106.27,106.56,27.080000000000002,26.71,26.53,26.34,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A +2012,9,22,20,30,101760,100610,99490,82.39,0,4.8100000000000005,5.08,5.12,5.13,5.12,5.11,5.08,5.0600000000000005,5,115.85000000000001,116.01,116.05,116.10000000000001,116.16,116.22,116.3,116.39,116.60000000000001,27.07,26.7,26.52,26.330000000000002,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A +2012,9,22,21,30,101750,100600,99480,81.77,0,4.79,5.08,5.13,5.14,5.14,5.13,5.11,5.09,5.04,132.16,132.37,132.41,132.46,132.5,132.54,132.59,132.64000000000001,132.75,27.17,26.82,26.64,26.45,26.26,26.07,25.88,25.7,25.330000000000002,N/A,N/A +2012,9,22,22,30,101750,100600,99480,80.3,0,3.89,4.1,4.13,4.13,4.13,4.11,4.1,4.08,4.03,137.34,137.42000000000002,137.43,137.45000000000002,137.47,137.48,137.49,137.5,137.5,27.21,26.88,26.71,26.51,26.330000000000002,26.14,25.95,25.77,25.400000000000002,N/A,N/A +2012,9,22,23,30,101750,100590,99480,81.22,0,3.69,3.9,3.92,3.92,3.92,3.91,3.9,3.88,3.85,146.25,146.43,146.46,146.51,146.56,146.61,146.66,146.69,146.8,27.17,26.830000000000002,26.66,26.47,26.28,26.09,25.900000000000002,25.72,25.34,N/A,N/A +2012,9,23,0,30,101750,100600,99480,80.91,0,4,4.22,4.26,4.26,4.26,4.25,4.24,4.22,4.18,155.75,155.81,155.86,155.92000000000002,155.97,156.02,156.07,156.12,156.23,27.14,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.68,25.3,N/A,N/A +2012,9,23,1,30,101770,100620,99500,80.47,0,3.47,3.64,3.66,3.66,3.66,3.65,3.63,3.62,3.58,156.87,156.91,156.94,156.98,157.02,157.07,157.1,157.14000000000001,157.21,27.11,26.78,26.61,26.42,26.23,26.04,25.85,25.66,25.29,N/A,N/A +2012,9,23,2,30,101780,100630,99510,79.07000000000001,0,3.34,3.52,3.54,3.54,3.54,3.54,3.52,3.5100000000000002,3.48,152.4,152.35,152.34,152.31,152.29,152.25,152.19,152.13,151.93,27.14,26.810000000000002,26.63,26.44,26.25,26.07,25.87,25.69,25.32,N/A,N/A +2012,9,23,3,30,101800,100640,99520,76.61,0,3.74,3.96,3.99,4,4,4,3.99,3.99,3.97,162.4,162.34,162.25,162.16,162.06,161.97,161.86,161.76,161.49,27.240000000000002,26.91,26.740000000000002,26.55,26.36,26.18,25.98,25.8,25.43,N/A,N/A +2012,9,23,4,30,101800,100640,99520,75.25,0,3.63,3.84,3.87,3.88,3.88,3.88,3.88,3.87,3.86,165.12,164.96,164.88,164.79,164.71,164.63,164.53,164.44,164.18,27.29,26.96,26.8,26.6,26.41,26.23,26.03,25.85,25.48,N/A,N/A +2012,9,23,5,30,101820,100660,99540,78.16,0,2.85,3.02,3.06,3.08,3.09,3.1,3.1,3.11,3.12,153.21,153.31,153.35,153.38,153.4,153.42000000000002,153.43,153.43,153.43,27.14,26.810000000000002,26.64,26.44,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,9,23,6,30,101860,100700,99580,77.62,0,2.88,3.0100000000000002,3.02,3.0300000000000002,3.0300000000000002,3.02,3.02,3.02,3.0100000000000002,154.56,154.4,154.24,154.08,153.92000000000002,153.75,153.57,153.38,152.95000000000002,27.14,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A +2012,9,23,7,30,101880,100720,99600,78.39,0,2.07,2.15,2.17,2.18,2.19,2.19,2.19,2.19,2.2,161.33,161.06,160.86,160.66,160.45000000000002,160.25,160.03,159.81,159.34,27.060000000000002,26.72,26.55,26.35,26.16,25.97,25.77,25.59,25.21,N/A,N/A +2012,9,23,8,30,101890,100740,99610,79.43,0,1.75,1.82,1.83,1.83,1.83,1.83,1.83,1.83,1.83,159.54,159.37,159.25,159.13,159.01,158.89000000000001,158.75,158.61,158.28,27.01,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A +2012,9,23,9,30,101920,100770,99650,80.02,0,1.44,1.5,1.51,1.52,1.53,1.54,1.54,1.55,1.57,150.84,150.28,150.05,149.79,149.55,149.33,149.09,148.84,148.28,26.990000000000002,26.650000000000002,26.48,26.28,26.09,25.900000000000002,25.71,25.52,25.14,N/A,N/A +2012,9,23,10,30,101930,100780,99660,79.76,0,1.37,1.43,1.44,1.44,1.45,1.45,1.46,1.46,1.47,131.74,131.75,131.79,131.82,131.85,131.87,131.86,131.85,131.77,26.98,26.64,26.47,26.27,26.080000000000002,25.89,25.7,25.51,25.13,N/A,N/A +2012,9,23,11,30,101960,100800,99680,78.06,0,1.2,1.26,1.27,1.28,1.29,1.3,1.31,1.32,1.34,111.32000000000001,110.97,110.88,110.82000000000001,110.76,110.68,110.61,110.55,110.46000000000001,27.01,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A +2012,9,23,12,30,101990,100830,99710,77.34,0,1.8800000000000001,1.96,1.97,1.97,1.97,1.97,1.97,1.97,1.97,107.28,107.10000000000001,107.03,106.97,106.91,106.85000000000001,106.78,106.72,106.63,27.01,26.67,26.5,26.3,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A +2012,9,23,13,30,102010,100850,99730,77.23,0,1.86,1.95,1.96,1.97,1.98,1.99,1.99,2,2.0100000000000002,87.39,87.73,88.03,88.34,88.59,88.81,89.04,89.27,89.68,26.97,26.63,26.46,26.26,26.07,25.88,25.68,25.5,25.12,N/A,N/A +2012,9,23,14,30,102040,100880,99760,77.18,0,1.8900000000000001,1.97,1.98,1.98,1.99,1.99,1.99,1.99,1.99,87.04,87.23,87.31,87.39,87.46000000000001,87.54,87.64,87.73,87.92,26.97,26.63,26.46,26.26,26.07,25.88,25.68,25.5,25.11,N/A,N/A +2012,9,23,15,30,102080,100920,99790,78.28,0,2.31,2.42,2.44,2.44,2.45,2.46,2.46,2.47,2.47,97.94,97.76,97.75,97.73,97.71000000000001,97.69,97.67,97.64,97.62,26.98,26.63,26.46,26.26,26.07,25.87,25.68,25.490000000000002,25.11,N/A,N/A +2012,9,23,16,30,102050,100890,99770,76.86,0,2.15,2.25,2.2600000000000002,2.27,2.27,2.2800000000000002,2.2800000000000002,2.2800000000000002,2.29,95.16,95.48,95.58,95.68,95.78,95.86,95.98,96.09,96.31,27.04,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A +2012,9,23,17,30,102060,100900,99780,76.31,0,2.39,2.5100000000000002,2.5300000000000002,2.54,2.5500000000000003,2.56,2.57,2.58,2.59,77.52,77.74,77.82000000000001,77.9,77.98,78.05,78.13,78.2,78.35000000000001,27.14,26.78,26.6,26.400000000000002,26.21,26.02,25.82,25.64,25.25,N/A,N/A +2012,9,23,18,30,102060,100900,99780,76.01,0,2.67,2.8000000000000003,2.82,2.83,2.84,2.84,2.85,2.85,2.85,110.97,110.7,110.56,110.41,110.28,110.15,110.01,109.88,109.62,27.22,26.86,26.68,26.48,26.28,26.09,25.900000000000002,25.71,25.330000000000002,N/A,N/A +2012,9,23,19,30,102040,100880,99760,76.64,0,2.7800000000000002,2.9,2.91,2.92,2.92,2.92,2.92,2.91,2.9,109.07000000000001,108.56,108.14,107.71000000000001,107.34,106.98,106.61,106.27,105.58,27.25,26.89,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A +2012,9,23,20,30,102010,100850,99730,76.45,0,2.42,2.52,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.52,2.52,2.5100000000000002,2.5100000000000002,100.61,100.03,99.69,99.36,99.07000000000001,98.81,98.57000000000001,98.35000000000001,97.97,27.28,26.92,26.740000000000002,26.54,26.34,26.16,25.96,25.77,25.39,N/A,N/A +2012,9,23,21,30,102000,100840,99720,78.45,0,3.92,4.11,4.14,4.14,4.13,4.12,4.11,4.1,4.07,145.72,145.51,145.34,145.18,145.03,144.9,144.78,144.66,144.41,27.3,26.94,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A +2012,9,23,22,30,102000,100850,99720,78.61,0,4.36,4.63,4.68,4.71,4.72,4.73,4.74,4.74,4.75,149.76,149.8,149.87,149.95000000000002,150.02,150.11,150.19,150.27,150.46,27.28,26.93,26.76,26.560000000000002,26.37,26.18,25.990000000000002,25.8,25.43,N/A,N/A +2012,9,23,23,30,101990,100840,99720,80.43,0,4.2,4.46,4.5200000000000005,4.54,4.5600000000000005,4.57,4.57,4.58,4.58,157.65,157.72,157.78,157.85,157.91,157.96,158.03,158.09,158.22,27.21,26.87,26.7,26.5,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A +2012,9,24,0,30,102000,100840,99720,80.59,0,3.33,3.52,3.5500000000000003,3.5700000000000003,3.58,3.59,3.6,3.6,3.61,156.44,156.55,156.53,156.53,156.53,156.54,156.56,156.57,156.6,27.17,26.830000000000002,26.650000000000002,26.45,26.27,26.080000000000002,25.88,25.7,25.32,N/A,N/A +2012,9,24,1,30,101980,100820,99700,79.88,0,3.0700000000000003,3.23,3.25,3.25,3.25,3.25,3.24,3.23,3.22,173.9,173.5,173.28,173.06,172.86,172.67000000000002,172.46,172.25,171.73,27.14,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.86,25.68,25.3,N/A,N/A +2012,9,24,2,30,102020,100860,99740,79.42,0,3.36,3.5300000000000002,3.56,3.5700000000000003,3.58,3.58,3.58,3.58,3.58,177.59,177.47,177.31,177.14000000000001,176.99,176.82,176.64000000000001,176.45000000000002,175.97,27.22,26.89,26.71,26.52,26.330000000000002,26.14,25.95,25.77,25.39,N/A,N/A +2012,9,24,3,30,102010,100850,99730,81.03,0,4.67,4.98,5.04,5.07,5.09,5.11,5.12,5.12,5.13,171.71,171.58,171.48,171.38,171.29,171.19,171.1,171,170.8,27.18,26.830000000000002,26.650000000000002,26.45,26.27,26.080000000000002,25.88,25.69,25.32,N/A,N/A +2012,9,24,4,30,101980,100830,99710,82.19,0,3.98,4.21,4.25,4.26,4.2700000000000005,4.2700000000000005,4.2700000000000005,4.26,4.25,171.24,171.02,170.9,170.78,170.67000000000002,170.55,170.43,170.3,170.01,27.080000000000002,26.73,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.23,N/A,N/A +2012,9,24,5,30,101990,100830,99710,82.38,0,4.01,4.25,4.29,4.3,4.3100000000000005,4.32,4.32,4.32,4.3100000000000005,170.43,170.32,170.26,170.19,170.13,170.07,169.99,169.91,169.73,27.080000000000002,26.73,26.560000000000002,26.36,26.16,25.98,25.78,25.6,25.22,N/A,N/A +2012,9,24,6,30,102000,100840,99720,83.35000000000001,0,4.75,5.05,5.1000000000000005,5.13,5.14,5.15,5.15,5.15,5.14,172.55,172.52,172.48,172.42000000000002,172.38,172.32,172.27,172.22,172.09,27.07,26.71,26.53,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A +2012,9,24,7,30,102010,100850,99730,83.56,0,4.18,4.45,4.5,4.54,4.5600000000000005,4.57,4.58,4.59,4.6000000000000005,176.53,176.42000000000002,176.37,176.32,176.26,176.21,176.14000000000001,176.07,175.93,27.07,26.71,26.53,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A +2012,9,24,8,30,101990,100830,99710,83.89,0,3.11,3.27,3.31,3.3200000000000003,3.34,3.35,3.35,3.36,3.38,178.98,178.99,178.95000000000002,178.89000000000001,178.84,178.77,178.69,178.61,178.4,27,26.650000000000002,26.47,26.27,26.09,25.900000000000002,25.7,25.52,25.14,N/A,N/A +2012,9,24,9,30,102000,100840,99720,81.97,0,2.92,3.0700000000000003,3.1,3.11,3.12,3.13,3.13,3.13,3.13,167.88,167.95000000000002,168.01,168.07,168.11,168.14000000000001,168.17000000000002,168.19,168.22,27.07,26.72,26.55,26.35,26.16,25.97,25.77,25.580000000000002,25.2,N/A,N/A +2012,9,24,10,30,102000,100840,99720,83.31,0,2.95,3.12,3.16,3.19,3.2,3.22,3.24,3.25,3.2800000000000002,170.17000000000002,170.3,170.39000000000001,170.45000000000002,170.51,170.57,170.62,170.66,170.74,26.990000000000002,26.64,26.46,26.26,26.07,25.88,25.68,25.5,25.11,N/A,N/A +2012,9,24,11,30,102000,100840,99720,81.46000000000001,0,3.0100000000000002,3.18,3.22,3.24,3.2600000000000002,3.27,3.2800000000000002,3.29,3.31,164.22,164.08,163.97,163.87,163.79,163.71,163.64000000000001,163.56,163.45000000000002,27.060000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.75,25.57,25.18,N/A,N/A +2012,9,24,12,30,102010,100850,99730,79.69,0,2.81,2.99,3.02,3.0500000000000003,3.08,3.11,3.13,3.15,3.2,173.8,173.25,173.03,172.79,172.54,172.28,171.98,171.68,171.02,27.11,26.77,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.650000000000002,25.26,N/A,N/A +2012,9,24,13,30,102010,100850,99730,81.09,0,2.81,2.97,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.08,3.09,3.1,162.35,162.28,162.28,162.27,162.26,162.24,162.21,162.18,162.11,27,26.64,26.47,26.27,26.080000000000002,25.88,25.69,25.5,25.12,N/A,N/A +2012,9,24,14,30,102030,100870,99750,79.82000000000001,0,2.02,2.13,2.15,2.16,2.17,2.18,2.19,2.2,2.21,145.73,145.54,145.47,145.41,145.35,145.29,145.24,145.19,145.07,27.03,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A +2012,9,24,15,30,102030,100870,99750,79.64,0,2.05,2.15,2.17,2.18,2.19,2.2,2.21,2.22,2.24,133.74,133.72,133.76,133.81,133.85,133.88,133.92000000000002,133.96,134.04,27.03,26.68,26.51,26.310000000000002,26.12,25.92,25.73,25.54,25.16,N/A,N/A +2012,9,24,16,30,102010,100850,99730,79.37,0,2.29,2.4,2.42,2.44,2.44,2.45,2.45,2.46,2.47,128.43,128.57,128.63,128.69,128.76,128.83,128.88,128.92000000000002,129.04,27.060000000000002,26.7,26.52,26.330000000000002,26.13,25.94,25.75,25.560000000000002,25.18,N/A,N/A +2012,9,24,17,30,101980,100820,99700,78,0,2.82,2.96,2.98,3,3.0100000000000002,3.0100000000000002,3.02,3.02,3.02,127.22,127.54,127.72,127.88000000000001,128.03,128.17000000000002,128.31,128.45,128.72,27.17,26.8,26.63,26.42,26.23,26.04,25.84,25.66,25.27,N/A,N/A +2012,9,24,18,30,101950,100790,99670,77.65,0,3.0300000000000002,3.18,3.21,3.22,3.23,3.23,3.24,3.24,3.24,132.92000000000002,133.09,133.21,133.33,133.44,133.55,133.66,133.76,133.97,27.240000000000002,26.86,26.68,26.48,26.29,26.1,25.900000000000002,25.71,25.330000000000002,N/A,N/A +2012,9,24,19,30,101930,100770,99650,76.87,0,3.6,3.7800000000000002,3.81,3.83,3.84,3.85,3.85,3.85,3.85,136.79,136.91,136.97,137.02,137.08,137.13,137.19,137.25,137.36,27.29,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A +2012,9,24,20,30,101890,100730,99610,76.77,0,4.28,4.5600000000000005,4.62,4.65,4.67,4.68,4.69,4.69,4.69,142.37,142.46,142.52,142.57,142.61,142.65,142.68,142.71,142.79,27.36,26.990000000000002,26.810000000000002,26.61,26.41,26.22,26.02,25.84,25.45,N/A,N/A +2012,9,24,21,30,101850,100700,99580,75.32000000000001,0,3.91,4.12,4.16,4.18,4.19,4.21,4.21,4.22,4.23,147.70000000000002,147.89000000000001,147.96,148.05,148.13,148.21,148.29,148.36,148.52,27.37,27.03,26.85,26.650000000000002,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,9,24,22,30,101840,100690,99570,72.83,0,4.53,4.79,4.8500000000000005,4.88,4.9,4.91,4.92,4.93,4.95,150.51,150.67000000000002,150.72,150.75,150.77,150.79,150.8,150.8,150.81,27.48,27.16,26.98,26.79,26.6,26.42,26.22,26.04,25.66,N/A,N/A +2012,9,24,23,30,101810,100660,99540,71.86,0,5.15,5.5200000000000005,5.58,5.6000000000000005,5.61,5.61,5.6000000000000005,5.6000000000000005,5.57,150.29,150.22,150.24,150.28,150.32,150.37,150.41,150.46,150.58,27.57,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.3,26.11,25.73,N/A,N/A +2012,9,25,0,30,101780,100630,99510,66.19,0,5.45,5.87,5.95,6,6.03,6.0600000000000005,6.08,6.09,6.12,155.14000000000001,154.84,154.58,154.32,154.07,153.83,153.59,153.36,152.9,27.79,27.48,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A +2012,9,25,1,30,101790,100640,99520,73.24,0,5.72,6.16,6.24,6.2700000000000005,6.3,6.3100000000000005,6.3100000000000005,6.3100000000000005,6.29,146.4,146.55,146.70000000000002,146.86,147.01,147.15,147.3,147.45000000000002,147.75,27.52,27.18,27.01,26.810000000000002,26.62,26.43,26.240000000000002,26.05,25.67,N/A,N/A +2012,9,25,2,30,101800,100650,99530,68.03,0,6.57,7.11,7.23,7.28,7.3100000000000005,7.33,7.34,7.34,7.32,152.12,152.3,152.41,152.51,152.6,152.69,152.78,152.87,153.05,27.79,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.95,N/A,N/A +2012,9,25,3,30,101790,100640,99520,69.51,0,6.98,7.59,7.71,7.7700000000000005,7.8100000000000005,7.82,7.83,7.83,7.82,156.01,156.14000000000001,156.19,156.25,156.29,156.33,156.38,156.42000000000002,156.51,27.8,27.48,27.310000000000002,27.11,26.92,26.73,26.53,26.35,25.96,N/A,N/A +2012,9,25,4,30,101770,100620,99500,65.87,0,6.98,7.59,7.74,7.82,7.88,7.930000000000001,7.97,8,8.05,160.73,160.81,160.83,160.83,160.83,160.83,160.82,160.81,160.78,27.91,27.6,27.43,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A +2012,9,25,5,30,101770,100610,99490,65.7,0,7.32,7.95,8.09,8.16,8.22,8.25,8.28,8.3,8.33,161.17000000000002,161.36,161.5,161.64000000000001,161.76,161.89000000000001,162.01,162.12,162.37,27.94,27.63,27.46,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,9,25,6,30,101760,100610,99490,65.28,0,7.32,8.02,8.19,8.28,8.36,8.41,8.45,8.49,8.55,167.4,167.54,167.61,167.66,167.71,167.76,167.79,167.83,167.91,28.05,27.76,27.6,27.41,27.22,27.03,26.84,26.650000000000002,26.27,N/A,N/A +2012,9,25,7,30,101770,100620,99500,71.39,0,7.5,8.22,8.38,8.46,8.51,8.55,8.57,8.58,8.58,169.41,169.53,169.62,169.72,169.82,169.93,170.03,170.13,170.35,27.830000000000002,27.52,27.36,27.16,26.97,26.78,26.580000000000002,26.39,26.01,N/A,N/A +2012,9,25,8,30,101750,100600,99480,68.11,0,6.3,6.92,7.0600000000000005,7.15,7.22,7.28,7.32,7.36,7.42,180.5,179.88,179.66,179.45000000000002,179.27,179.09,178.93,178.78,178.48,27.990000000000002,27.69,27.52,27.32,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A +2012,9,25,9,30,101750,100600,99480,72.17,0,7,7.66,7.79,7.87,7.930000000000001,7.96,7.99,8.01,8.02,172.70000000000002,172.67000000000002,172.73,172.82,172.9,172.99,173.08,173.16,173.34,27.84,27.53,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.01,N/A,N/A +2012,9,25,10,30,101730,100580,99460,71.22,0,6.45,6.98,7.1000000000000005,7.17,7.21,7.25,7.28,7.3100000000000005,7.3500000000000005,178.1,178.09,177.95000000000002,177.78,177.6,177.42000000000002,177.24,177.06,176.68,27.79,27.48,27.32,27.12,26.94,26.75,26.560000000000002,26.37,25.990000000000002,N/A,N/A +2012,9,25,11,30,101730,100570,99460,74.27,0,6.34,6.94,7.08,7.17,7.23,7.28,7.32,7.3500000000000005,7.390000000000001,172.99,172.57,172.41,172.28,172.18,172.08,172.01,171.94,171.81,27.7,27.37,27.2,27,26.810000000000002,26.62,26.42,26.23,25.84,N/A,N/A +2012,9,25,12,30,101730,100580,99460,76.51,0,6.3100000000000005,6.88,7.0200000000000005,7.1000000000000005,7.17,7.21,7.25,7.28,7.33,167.77,168.05,168.27,168.47,168.65,168.82,168.98,169.13,169.44,27.61,27.28,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.76,N/A,N/A +2012,9,25,13,30,101750,100590,99480,76.19,0,6.19,6.73,6.86,6.94,6.99,7.04,7.07,7.1000000000000005,7.15,171.66,171.47,171.39000000000001,171.32,171.26,171.21,171.17000000000002,171.12,171.05,27.52,27.19,27.02,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.66,N/A,N/A +2012,9,25,14,30,101770,100620,99500,75.72,0,5.95,6.42,6.53,6.58,6.62,6.640000000000001,6.66,6.68,6.7,170.33,170.46,170.49,170.51,170.52,170.54,170.55,170.56,170.57,27.61,27.28,27.11,26.92,26.73,26.54,26.34,26.16,25.78,N/A,N/A +2012,9,25,15,30,101770,100610,99500,75.49,0,5.44,5.83,5.9,5.93,5.95,5.97,5.98,5.98,6,174.33,173.51,173.03,172.52,172.06,171.62,171.17000000000002,170.76,169.91,27.650000000000002,27.32,27.150000000000002,26.96,26.77,26.580000000000002,26.38,26.2,25.82,N/A,N/A +2012,9,25,16,30,101750,100600,99480,76.59,0,6.22,6.65,6.72,6.74,6.74,6.74,6.72,6.7,6.66,158.54,159.20000000000002,159.56,159.9,160.20000000000002,160.47,160.75,161.02,161.53,27.61,27.27,27.1,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.76,N/A,N/A +2012,9,25,17,30,101750,100590,99480,77.32000000000001,0,5.29,5.74,5.84,5.91,5.96,6,6.03,6.05,6.09,163.16,163.15,163.12,163.09,163.05,163.01,162.98,162.94,162.86,27.650000000000002,27.310000000000002,27.14,26.94,26.75,26.560000000000002,26.37,26.18,25.8,N/A,N/A +2012,9,25,18,30,101720,100570,99450,76.7,0,4.89,5.26,5.36,5.42,5.47,5.5,5.53,5.5600000000000005,5.6000000000000005,159.56,160.28,160.55,160.78,160.97,161.14000000000001,161.28,161.41,161.64000000000001,27.72,27.39,27.22,27.02,26.830000000000002,26.64,26.45,26.26,25.88,N/A,N/A +2012,9,25,19,30,101700,100550,99430,73.57000000000001,0,5.94,6.390000000000001,6.48,6.5200000000000005,6.55,6.57,6.58,6.59,6.6000000000000005,158.09,158.16,158.14000000000001,158.1,158.07,158.02,157.98,157.94,157.86,27.79,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,9,25,20,30,101660,100510,99390,74.33,0,5.61,6.07,6.18,6.24,6.3,6.33,6.37,6.390000000000001,6.44,156.42000000000002,156.3,156.20000000000002,156.1,156.01,155.91,155.82,155.73,155.55,27.79,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.95,N/A,N/A +2012,9,25,21,30,101640,100490,99380,75.47,0,6.67,7.24,7.3500000000000005,7.4,7.44,7.45,7.46,7.46,7.46,151.05,150.93,150.85,150.77,150.69,150.62,150.55,150.48,150.36,27.740000000000002,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.900000000000002,N/A,N/A +2012,9,25,22,30,101630,100480,99370,76.21000000000001,0,7.34,7.96,8.08,8.14,8.17,8.18,8.18,8.18,8.15,151.76,151.62,151.51,151.38,151.26,151.15,151.03,150.92000000000002,150.69,27.71,27.39,27.21,27.02,26.830000000000002,26.63,26.44,26.25,25.87,N/A,N/A +2012,9,25,23,30,101600,100450,99330,74.98,0,6.69,7.29,7.44,7.53,7.6000000000000005,7.640000000000001,7.68,7.71,7.76,144.18,144.08,144.08,144.08,144.07,144.07,144.06,144.05,144.03,27.63,27.3,27.13,26.93,26.740000000000002,26.55,26.35,26.16,25.78,N/A,N/A +2012,9,26,0,30,101580,100430,99320,77.11,0,7.34,8,8.17,8.26,8.33,8.38,8.42,8.45,8.49,140.73,140.88,140.99,141.09,141.17000000000002,141.26,141.33,141.41,141.56,27.53,27.19,27.02,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.67,N/A,N/A +2012,9,26,1,30,101580,100430,99320,78.35000000000001,0,8.22,8.94,9.09,9.17,9.22,9.25,9.27,9.27,9.26,141.19,141.39000000000001,141.52,141.65,141.77,141.88,142,142.1,142.32,27.46,27.11,26.93,26.73,26.54,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,9,26,2,30,101580,100430,99310,77.01,0,8.18,8.89,9.06,9.15,9.21,9.25,9.28,9.3,9.33,140.42000000000002,140.74,140.87,140.97,141.05,141.12,141.17000000000002,141.22,141.29,27.39,27.04,26.87,26.67,26.47,26.28,26.09,25.900000000000002,25.51,N/A,N/A +2012,9,26,3,30,101570,100420,99310,76.39,0,7.92,8.68,8.870000000000001,8.99,9.08,9.15,9.200000000000001,9.25,9.32,143.69,143.71,143.73,143.75,143.77,143.79,143.8,143.83,143.87,27.46,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A +2012,9,26,4,30,101550,100400,99280,79.12,0,8.39,9.16,9.35,9.46,9.540000000000001,9.6,9.64,9.68,9.73,136.43,136.65,136.82,136.98,137.13,137.27,137.4,137.54,137.8,27.330000000000002,26.97,26.8,26.6,26.41,26.21,26.02,25.830000000000002,25.45,N/A,N/A +2012,9,26,5,30,101550,100400,99280,78.3,0,8.17,9.02,9.22,9.35,9.44,9.51,9.56,9.6,9.66,148.03,147.84,147.75,147.68,147.62,147.56,147.5,147.46,147.37,27.47,27.13,26.95,26.75,26.560000000000002,26.36,26.16,25.98,25.59,N/A,N/A +2012,9,26,6,30,101570,100420,99310,77.37,0,8.23,8.950000000000001,9.120000000000001,9.19,9.23,9.25,9.26,9.26,9.24,153.1,153.1,153.06,153.01,152.96,152.91,152.86,152.8,152.70000000000002,27.47,27.14,26.97,26.77,26.580000000000002,26.38,26.19,26,25.62,N/A,N/A +2012,9,26,7,30,101610,100450,99340,77.57000000000001,0,7.2700000000000005,7.96,8.14,8.25,8.33,8.39,8.44,8.48,8.55,143.58,143.91,144.13,144.34,144.54,144.73,144.92000000000002,145.1,145.46,27.53,27.2,27.03,26.82,26.63,26.45,26.25,26.060000000000002,25.68,N/A,N/A +2012,9,26,8,30,101570,100420,99310,79.49,0,7.86,8.59,8.76,8.85,8.91,8.94,8.96,8.98,8.98,154.53,154.96,155.14000000000001,155.3,155.44,155.56,155.68,155.79,155.99,27.41,27.07,26.900000000000002,26.7,26.51,26.32,26.12,25.94,25.55,N/A,N/A +2012,9,26,9,30,101590,100430,99320,76.25,0,6.67,7.25,7.390000000000001,7.47,7.53,7.57,7.6000000000000005,7.63,7.67,151.12,151.29,151.41,151.52,151.63,151.72,151.81,151.89000000000001,152.05,27.43,27.09,26.91,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A +2012,9,26,10,30,101610,100460,99350,77.78,0,7.41,8.05,8.19,8.27,8.33,8.370000000000001,8.39,8.41,8.44,147.22,147.70000000000002,147.92000000000002,148.13,148.31,148.48,148.64000000000001,148.79,149.08,27.38,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.51,N/A,N/A +2012,9,26,11,30,101630,100470,99360,78.59,0,6.97,7.57,7.71,7.79,7.84,7.88,7.9,7.92,7.94,145.53,145.73,145.9,146.08,146.25,146.41,146.57,146.74,147.08,27.28,26.93,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A +2012,9,26,12,30,101610,100460,99340,77.02,0,6.58,7.140000000000001,7.25,7.3100000000000005,7.34,7.3500000000000005,7.36,7.36,7.3500000000000005,162.08,161.66,161.48,161.31,161.17000000000002,161.05,160.93,160.81,160.6,27.560000000000002,27.23,27.060000000000002,26.85,26.67,26.48,26.28,26.09,25.71,N/A,N/A +2012,9,26,13,30,101640,100490,99370,76.63,0,6.72,7.29,7.42,7.48,7.51,7.54,7.55,7.5600000000000005,7.5600000000000005,155.55,155.37,155.27,155.19,155.12,155.05,154.99,154.94,154.85,27.560000000000002,27.240000000000002,27.07,26.88,26.69,26.5,26.310000000000002,26.13,25.75,N/A,N/A +2012,9,26,14,30,101670,100520,99410,76.60000000000001,0,5.8100000000000005,6.2700000000000005,6.37,6.42,6.46,6.49,6.5,6.5200000000000005,6.53,148.58,148.77,148.93,149.09,149.23,149.37,149.51,149.64000000000001,149.91,27.580000000000002,27.25,27.080000000000002,26.89,26.7,26.51,26.310000000000002,26.13,25.75,N/A,N/A +2012,9,26,15,30,101700,100540,99430,77.97,0,7,7.63,7.7700000000000005,7.84,7.890000000000001,7.92,7.94,7.96,7.96,145.77,145.63,145.6,145.58,145.56,145.54,145.52,145.51,145.49,27.560000000000002,27.23,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A +2012,9,26,16,30,101700,100550,99430,77.66,0,5.8500000000000005,6.3100000000000005,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.58,146.07,146.52,146.75,146.96,147.13,147.28,147.42000000000002,147.55,147.78,27.61,27.28,27.11,26.92,26.73,26.53,26.34,26.150000000000002,25.77,N/A,N/A +2012,9,26,17,30,101680,100530,99410,75.02,0,5.21,5.67,5.8,5.9,5.97,6.03,6.08,6.13,6.21,147.38,147.78,148.07,148.33,148.53,148.70000000000002,148.85,148.98,149.22,27.59,27.26,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A +2012,9,26,18,30,101690,100540,99430,74.95,0,6.83,7.42,7.55,7.61,7.66,7.68,7.69,7.7,7.69,146.34,146.43,146.52,146.62,146.70000000000002,146.79,146.88,146.96,147.12,27.77,27.45,27.28,27.07,26.89,26.69,26.5,26.310000000000002,25.92,N/A,N/A +2012,9,26,19,30,101690,100530,99420,74.11,0,6.83,7.42,7.55,7.62,7.67,7.7,7.72,7.74,7.75,146.28,146.23,146.18,146.13,146.08,146.04,146,145.97,145.9,27.68,27.36,27.19,26.990000000000002,26.8,26.61,26.42,26.23,25.85,N/A,N/A +2012,9,26,20,30,101650,100500,99380,71.82000000000001,0,6.83,7.4,7.5200000000000005,7.59,7.63,7.66,7.68,7.69,7.71,146.18,145.8,145.67000000000002,145.54,145.44,145.34,145.24,145.16,145,27.69,27.36,27.19,26.990000000000002,26.810000000000002,26.61,26.42,26.23,25.85,N/A,N/A +2012,9,26,21,30,101660,100500,99390,74.45,0,7.13,7.73,7.88,7.95,8.01,8.040000000000001,8.07,8.09,8.120000000000001,146.92000000000002,146.85,146.72,146.58,146.46,146.34,146.22,146.1,145.85,27.54,27.21,27.04,26.84,26.650000000000002,26.46,26.26,26.080000000000002,25.69,N/A,N/A +2012,9,26,22,30,101650,100500,99380,76.46000000000001,0,6.92,7.51,7.65,7.73,7.78,7.82,7.8500000000000005,7.87,7.9,143.95000000000002,143.73,143.57,143.41,143.27,143.14000000000001,143.01,142.89000000000001,142.66,27.45,27.11,26.94,26.740000000000002,26.55,26.36,26.16,25.97,25.59,N/A,N/A +2012,9,26,23,30,101650,100500,99380,73.2,0,7.32,7.9,8.01,8.05,8.07,8.08,8.07,8.05,8.01,135.5,135.78,135.97,136.15,136.32,136.47,136.62,136.76,137.04,27.46,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.98,25.6,N/A,N/A +2012,9,27,0,30,101660,100510,99390,72.07000000000001,0,7.67,8.290000000000001,8.42,8.47,8.5,8.51,8.51,8.51,8.48,138.84,138.97,139.05,139.13,139.20000000000002,139.25,139.31,139.36,139.45000000000002,27.38,27.03,26.86,26.66,26.47,26.28,26.080000000000002,25.89,25.51,N/A,N/A +2012,9,27,1,30,101650,100500,99380,68.07000000000001,0,6.88,7.46,7.6000000000000005,7.67,7.72,7.7700000000000005,7.8,7.82,7.87,133.84,134.17000000000002,134.39000000000001,134.6,134.78,134.95,135.11,135.27,135.56,27.46,27.13,26.96,26.76,26.57,26.38,26.18,26,25.62,N/A,N/A +2012,9,27,2,30,101680,100520,99400,72.62,0,7.390000000000001,8.01,8.15,8.22,8.27,8.3,8.32,8.34,8.35,130.92000000000002,131.43,131.73,132.03,132.28,132.53,132.77,133,133.43,27.23,26.88,26.7,26.490000000000002,26.3,26.11,25.91,25.72,25.34,N/A,N/A +2012,9,27,3,30,101680,100520,99400,71.05,0,7.09,7.7,7.84,7.91,7.97,8.01,8.03,8.05,8.08,138.28,138.4,138.41,138.41,138.41,138.4,138.39000000000001,138.39000000000001,138.37,27.240000000000002,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.76,25.37,N/A,N/A +2012,9,27,4,30,101700,100540,99430,71.63,0,7.2700000000000005,7.79,7.9,7.94,7.96,7.97,7.97,7.97,7.95,137.49,137.89000000000001,138.19,138.49,138.76,139.02,139.27,139.51,139.98,27.18,26.84,26.66,26.46,26.27,26.080000000000002,25.88,25.69,25.310000000000002,N/A,N/A +2012,9,27,5,30,101700,100550,99430,72.79,0,5.5200000000000005,6,6.11,6.18,6.23,6.2700000000000005,6.3,6.32,6.3500000000000005,143.41,143.20000000000002,143.11,143.04,142.97,142.91,142.85,142.8,142.69,27.21,26.86,26.69,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A +2012,9,27,6,30,101700,100550,99430,75.45,0,6.0600000000000005,6.6000000000000005,6.72,6.79,6.84,6.88,6.91,6.93,6.96,146.43,146.18,146.09,146.03,145.99,145.95000000000002,145.93,145.92000000000002,145.89000000000001,27.21,26.86,26.68,26.48,26.29,26.09,25.900000000000002,25.71,25.32,N/A,N/A +2012,9,27,7,30,101740,100590,99470,73.43,0,5.6000000000000005,6.01,6.1000000000000005,6.15,6.18,6.2,6.21,6.23,6.24,137.89000000000001,138.16,138.31,138.45000000000002,138.58,138.70000000000002,138.81,138.92000000000002,139.12,27.32,26.98,26.810000000000002,26.61,26.42,26.23,26.04,25.85,25.47,N/A,N/A +2012,9,27,8,30,101770,100610,99490,76.02,0,4.46,4.79,4.89,4.95,5.01,5.05,5.1000000000000005,5.14,5.22,135.15,136.11,136.6,137.02,137.37,137.68,137.97,138.22,138.68,27.330000000000002,27.01,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.900000000000002,25.52,N/A,N/A +2012,9,27,9,30,101780,100620,99510,74.78,0,3.85,4.09,4.14,4.17,4.19,4.21,4.22,4.23,4.25,123.37,123.57000000000001,123.69,123.82000000000001,123.92,124.02,124.11,124.2,124.36,27.43,27.11,26.94,26.740000000000002,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A +2012,9,27,10,30,101770,100610,99500,78.10000000000001,0,4.28,4.5200000000000005,4.5600000000000005,4.58,4.59,4.59,4.59,4.6000000000000005,4.6000000000000005,87.88,88.89,89.73,90.62,91.43,92.22,93.02,93.78,95.4,27.38,27.05,26.89,26.69,26.5,26.310000000000002,26.12,25.94,25.560000000000002,N/A,N/A +2012,9,27,11,30,101770,100620,99500,78.24,0,3.9,4.11,4.15,4.17,4.17,4.17,4.17,4.17,4.16,108.94,109.16,109.3,109.43,109.54,109.64,109.73,109.82000000000001,110,27.35,27.03,26.85,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,9,27,12,30,101770,100610,99500,78.49,0,2.88,3.06,3.1,3.13,3.14,3.16,3.17,3.19,3.21,95.02,94.96000000000001,95.10000000000001,95.2,95.3,95.4,95.5,95.60000000000001,95.81,27.36,27.03,26.86,26.67,26.48,26.29,26.1,25.91,25.53,N/A,N/A +2012,9,27,13,30,101770,100610,99500,78.34,0,3.33,3.5300000000000002,3.5700000000000003,3.59,3.6,3.62,3.62,3.63,3.64,97.10000000000001,97.45,97.63,97.8,97.96000000000001,98.12,98.28,98.44,98.76,27.36,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,9,27,14,30,101790,100630,99520,79.98,0,3.5500000000000003,3.79,3.86,3.9,3.93,3.96,3.99,4.01,4.05,86.42,86.49,86.53,86.55,86.55,86.55,86.53,86.52,86.47,27.330000000000002,26.990000000000002,26.830000000000002,26.63,26.44,26.240000000000002,26.05,25.86,25.48,N/A,N/A +2012,9,27,15,30,101800,100650,99530,82.87,0,4.47,4.75,4.8,4.82,4.84,4.84,4.84,4.84,4.82,80.24,80.4,80.44,80.48,80.5,80.52,80.54,80.57000000000001,80.60000000000001,27.23,26.89,26.71,26.51,26.32,26.13,25.93,25.75,25.36,N/A,N/A +2012,9,27,16,30,101810,100660,99540,83.88,0,6.17,6.66,6.76,6.79,6.8100000000000005,6.8,6.79,6.78,6.72,65.21000000000001,65.27,65.29,65.3,65.32000000000001,65.32000000000001,65.32000000000001,65.31,65.3,27.27,26.92,26.75,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A +2012,9,27,17,30,101760,100610,99490,84.66,0,6.49,6.93,7,7.0200000000000005,7.0200000000000005,7.01,6.99,6.97,6.91,82.11,81.8,81.57000000000001,81.31,81.05,80.8,80.55,80.31,79.8,27.14,26.78,26.61,26.41,26.22,26.02,25.830000000000002,25.650000000000002,25.27,N/A,N/A +2012,9,27,18,30,101730,100570,99460,80.04,0,5.96,6.4,6.5,6.55,6.58,6.6000000000000005,6.61,6.62,6.62,85.55,85.36,85.29,85.21000000000001,85.12,85.04,84.95,84.86,84.69,27.22,26.87,26.7,26.490000000000002,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A +2012,9,27,19,30,101730,100580,99460,85.67,0,6.17,6.58,6.65,6.67,6.68,6.68,6.67,6.65,6.62,105.39,105.16,104.88,104.62,104.37,104.14,103.91,103.7,103.28,27.07,26.71,26.53,26.330000000000002,26.13,25.94,25.75,25.560000000000002,25.18,N/A,N/A +2012,9,27,20,30,101670,100510,99400,82.81,0,4.67,4.94,4.98,4.99,4.99,4.99,4.98,4.96,4.93,115.28,114.88,114.68,114.46000000000001,114.26,114.05,113.84,113.64,113.15,26.91,26.55,26.38,26.18,25.990000000000002,25.8,25.62,25.43,25.07,N/A,N/A +2012,9,27,21,30,101680,100520,99410,81.37,0,4.19,4.43,4.48,4.5,4.5,4.5,4.5,4.5,4.47,100.86,100.97,101.03,101.09,101.14,101.18,101.22,101.26,101.37,27.09,26.740000000000002,26.57,26.37,26.18,25.990000000000002,25.79,25.61,25.23,N/A,N/A +2012,9,27,22,30,101690,100530,99420,79.44,0,3.54,3.73,3.77,3.7800000000000002,3.79,3.79,3.79,3.79,3.7800000000000002,106.98,107.17,107.21000000000001,107.26,107.32000000000001,107.4,107.47,107.54,107.7,27.2,26.86,26.69,26.490000000000002,26.3,26.11,25.91,25.73,25.35,N/A,N/A +2012,9,27,23,30,101650,100500,99380,79.83,0,4.1,4.3500000000000005,4.41,4.44,4.46,4.47,4.48,4.49,4.5,109.68,109.93,110.01,110.12,110.22,110.32000000000001,110.42,110.52,110.73,27.22,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A +2012,9,28,0,30,101620,100470,99360,77.59,0,3.68,3.9,3.95,3.97,3.99,3.99,4,4.01,4.01,108.69,108.72,108.78,108.84,108.89,108.93,108.98,109.02,109.11,27.32,26.990000000000002,26.82,26.62,26.43,26.240000000000002,26.04,25.86,25.48,N/A,N/A +2012,9,28,1,30,101630,100470,99360,84.37,0,4.21,4.46,4.5200000000000005,4.55,4.57,4.58,4.59,4.59,4.59,113.44,113.16,113.10000000000001,113.04,112.98,112.93,112.87,112.8,112.64,26.95,26.6,26.43,26.23,26.04,25.85,25.66,25.47,25.09,N/A,N/A +2012,9,28,2,30,101630,100470,99350,84.28,0,5.0600000000000005,5.4,5.48,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,5.62,111.43,110.99000000000001,110.81,110.62,110.45,110.28,110.10000000000001,109.93,109.54,26.97,26.62,26.45,26.240000000000002,26.05,25.87,25.67,25.490000000000002,25.11,N/A,N/A +2012,9,28,3,30,101630,100470,99360,79.92,0,4.8,5.1000000000000005,5.16,5.18,5.2,5.2,5.21,5.21,5.2,124.8,124.84,124.88000000000001,124.92,124.95,124.97,125,125.01,125.06,27.12,26.78,26.61,26.41,26.22,26.04,25.84,25.66,25.29,N/A,N/A +2012,9,28,4,30,101600,100450,99330,86.48,0,4.44,4.74,4.8100000000000005,4.86,4.89,4.91,4.93,4.95,4.98,130.38,130.36,130.32,130.29,130.25,130.21,130.16,130.12,130.02,26.94,26.59,26.41,26.21,26.02,25.830000000000002,25.64,25.45,25.080000000000002,N/A,N/A +2012,9,28,5,30,101600,100450,99330,84.84,0,4.86,5.18,5.25,5.28,5.29,5.3,5.3,5.3,5.29,124.96000000000001,125.28,125.41,125.51,125.59,125.67,125.74000000000001,125.8,125.93,27.19,26.85,26.67,26.47,26.28,26.09,25.89,25.7,25.310000000000002,N/A,N/A +2012,9,28,6,30,101630,100480,99360,85.13,0,4.68,5,5.07,5.11,5.13,5.14,5.15,5.16,5.16,155.92000000000002,156.05,155.94,155.8,155.66,155.49,155.31,155.13,154.71,27.19,26.86,26.69,26.490000000000002,26.310000000000002,26.12,25.93,25.740000000000002,25.37,N/A,N/A +2012,9,28,7,30,101660,100510,99390,83.82000000000001,0,4.5200000000000005,4.84,4.92,4.98,5.0200000000000005,5.05,5.08,5.11,5.17,159.13,159.28,159.31,159.35,159.39000000000001,159.45000000000002,159.49,159.54,159.63,27.04,26.7,26.53,26.330000000000002,26.14,25.95,25.77,25.580000000000002,25.21,N/A,N/A +2012,9,28,8,30,101630,100480,99360,83.03,0,4.29,4.57,4.64,4.68,4.7,4.72,4.74,4.75,4.7700000000000005,161.78,162.03,162.16,162.29,162.4,162.5,162.6,162.70000000000002,162.91,27.18,26.830000000000002,26.66,26.46,26.27,26.080000000000002,25.89,25.7,25.32,N/A,N/A +2012,9,28,9,30,101640,100490,99370,82.83,0,4.78,5.19,5.3,5.37,5.41,5.45,5.48,5.5,5.54,195.74,195.58,195.49,195.4,195.31,195.23000000000002,195.14000000000001,195.06,194.87,27.34,27,26.830000000000002,26.63,26.44,26.25,26.060000000000002,25.87,25.490000000000002,N/A,N/A +2012,9,28,10,30,101630,100470,99360,82.13,0,4.1,4.41,4.49,4.54,4.57,4.61,4.63,4.65,4.68,200.73000000000002,199.62,199.11,198.63,198.20000000000002,197.81,197.45000000000002,197.12,196.57,27.44,27.1,26.93,26.73,26.54,26.35,26.16,25.97,25.580000000000002,N/A,N/A +2012,9,28,11,30,101630,100480,99370,80.39,9.5,4.42,5,5.2,5.36,5.5,5.62,5.72,5.79,5.88,188.72,189.87,190.55,191.06,191.35,191.5,191.63,191.74,191.87,27.46,27.16,27.01,26.82,26.64,26.46,26.27,26.09,25.71,N/A,N/A +2012,9,28,12,30,101660,100510,99400,77.57000000000001,7.300000000000001,4.96,5.38,5.48,5.54,5.58,5.6000000000000005,5.61,5.62,5.61,207.58,207.64000000000001,207.74,207.86,207.97,208.08,208.22,208.37,208.65,27.66,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.830000000000002,N/A,N/A +2012,9,28,13,30,101650,100500,99380,81.11,0,4.37,4.68,4.76,4.82,4.88,4.94,5.01,5.08,5.22,241.82,237.71,235.19,232.66,230.4,228.20000000000002,226.05,224.01,220.26,27.25,26.95,26.8,26.63,26.47,26.310000000000002,26.14,25.98,25.66,N/A,N/A +2012,9,28,14,30,101650,100500,99390,77.27,0,5,5.43,5.51,5.55,5.57,5.58,5.58,5.58,5.55,212.6,212.84,212.89000000000001,212.94,212.99,213.05,213.12,213.18,213.34,27.78,27.47,27.3,27.1,26.92,26.73,26.53,26.34,25.96,N/A,N/A +2012,9,28,15,30,101640,100490,99360,89.84,0.4,4.57,4.69,4.66,4.59,4.5,4.41,3.72,3,1.6400000000000001,327.04,326.7,326.52,326.25,325.91,325.53000000000003,323.21,320.81,298.79,25.67,25.28,25.11,24.91,24.72,24.54,24.490000000000002,24.5,24.45,N/A,N/A +2012,9,28,16,30,101650,100490,99370,89.48,33,2.21,2.17,2.1,2,1.78,1.51,1.43,1.4000000000000001,1.83,343.62,340.29,337.87,334.54,325.02,313.26,277.73,238.57,216.08,25.73,25.37,25.2,25.04,24.91,24.8,24.78,24.78,24.68,N/A,N/A +2012,9,28,17,30,101640,100480,99350,90.12,15,2.9,2.57,2.18,1.67,1.23,0.88,0.54,0.33,0.44,28.98,30.240000000000002,31.53,33.8,38.25,43.1,64.93,81.58,168.92000000000002,24.650000000000002,24.35,24.32,24.39,24.43,24.45,24.45,24.44,24.36,N/A,N/A +2012,9,28,18,30,101640,100470,99350,88.03,0,4.24,4.14,4,3.8000000000000003,3.6,3.38,3.13,2.9,2.4,93.63,94.67,95.07000000000001,95.37,95.62,95.83,96.44,97.12,101.28,25.37,24.98,24.810000000000002,24.63,24.46,24.3,24.150000000000002,24.01,23.75,N/A,N/A +2012,9,28,19,30,101570,100420,99300,82.67,0,1.92,1.94,1.93,1.92,1.92,1.92,1.99,2.09,3.12,129.68,134.34,137.45000000000002,141.38,145.89000000000001,151.19,159.52,169.11,190.76,26.310000000000002,25.95,25.79,25.6,25.43,25.26,25.11,24.97,24.85,N/A,N/A +2012,9,28,20,30,101520,100370,99250,82.01,0,3.14,3.33,3.38,3.42,3.45,3.49,3.54,3.59,3.77,138.26,139.55,140.31,141.21,142.18,143.29,144.75,146.29,151.08,26.8,26.44,26.27,26.060000000000002,25.88,25.69,25.51,25.330000000000002,24.98,N/A,N/A +2012,9,28,21,30,101490,100340,99220,80.13,0,2.27,2.5100000000000002,2.63,2.73,2.82,2.91,2.99,3.0700000000000003,3.23,155.24,157.47,158.59,159.58,160.43,161.22,161.95000000000002,162.64000000000001,163.95000000000002,27.330000000000002,27,26.830000000000002,26.64,26.45,26.27,26.080000000000002,25.900000000000002,25.53,N/A,N/A +2012,9,28,22,30,101470,100320,99210,76.68,0,3.75,4.01,4.07,4.1,4.13,4.15,4.16,4.17,4.19,187.92000000000002,188.08,188.19,188.29,188.39000000000001,188.47,188.55,188.64000000000001,188.78,27.69,27.37,27.2,27,26.810000000000002,26.62,26.42,26.23,25.85,N/A,N/A +2012,9,28,23,30,101450,100310,99190,75.79,0,3.83,4.11,4.17,4.2,4.23,4.25,4.26,4.2700000000000005,4.29,176.69,176.92000000000002,177.18,177.42000000000002,177.63,177.82,178.01,178.17000000000002,178.49,27.69,27.38,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A +2012,9,29,0,30,101460,100310,99190,77.91,0,3.6,3.79,3.81,3.8000000000000003,3.79,3.7800000000000002,3.7600000000000002,3.74,3.71,157.84,158.35,158.72,159.12,159.48,159.82,160.16,160.49,161.16,27.57,27.25,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A +2012,9,29,1,30,101440,100290,99170,77.99,0,2.7600000000000002,2.91,2.94,2.95,2.96,2.97,2.98,2.99,3,148.48,149.69,150.36,151.06,151.67000000000002,152.25,152.84,153.4,154.53,27.5,27.18,27.02,26.810000000000002,26.63,26.44,26.240000000000002,26.060000000000002,25.67,N/A,N/A +2012,9,29,2,30,101440,100290,99180,82.24,0,3.63,3.71,3.67,3.6,3.5500000000000003,3.49,3.42,3.37,3.25,150.93,152.12,152.86,153.64000000000001,154.37,155.08,155.81,156.51,157.98,27.26,26.93,26.77,26.580000000000002,26.39,26.21,26.02,25.84,25.47,N/A,N/A +2012,9,29,3,30,101440,100290,99180,82.95,0,3.48,3.62,3.63,3.61,3.6,3.5700000000000003,3.5500000000000003,3.52,3.45,136.97,136.96,136.95000000000002,136.93,136.92000000000002,136.9,136.89000000000001,136.88,136.84,27.14,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.67,25.29,N/A,N/A +2012,9,29,4,30,101410,100260,99150,82.22,0,3.34,3.5300000000000002,3.58,3.6,3.62,3.63,3.65,3.66,3.68,147.84,148.16,148.23,148.31,148.38,148.46,148.55,148.64000000000001,148.85,27.2,26.87,26.7,26.5,26.32,26.13,25.94,25.75,25.37,N/A,N/A +2012,9,29,5,30,101410,100260,99150,84.49,5.1000000000000005,4.54,4.82,4.89,4.93,4.95,4.97,4.98,4.99,5,164.18,164.14000000000001,164.13,164.12,164.13,164.14000000000001,164.16,164.19,164.27,27.14,26.8,26.63,26.43,26.25,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A +2012,9,29,6,30,101400,100250,99130,83.52,0,4.3500000000000005,4.62,4.67,4.69,4.7,4.71,4.71,4.71,4.7,174.41,174.31,174.15,173.99,173.84,173.69,173.54,173.4,173.09,27.2,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.72,25.330000000000002,N/A,N/A +2012,9,29,7,30,101390,100240,99130,82.65,0,4.83,5.19,5.2700000000000005,5.32,5.36,5.38,5.4,5.41,5.43,181.51,181.34,181.26,181.19,181.13,181.09,181.04,181,180.93,27.310000000000002,26.96,26.79,26.59,26.400000000000002,26.21,26.01,25.830000000000002,25.44,N/A,N/A +2012,9,29,8,30,101380,100230,99120,81.13,0,6.99,7.65,7.82,7.92,7.99,8.03,8.06,8.09,8.120000000000001,171.6,171.56,171.57,171.61,171.64000000000001,171.68,171.73,171.77,171.86,27.580000000000002,27.26,27.09,26.89,26.71,26.51,26.32,26.13,25.76,N/A,N/A +2012,9,29,9,30,101370,100220,99110,77.2,0,6.49,7.05,7.18,7.25,7.29,7.32,7.34,7.3500000000000005,7.36,181.19,181.36,181.45000000000002,181.52,181.58,181.63,181.68,181.73,181.82,27.77,27.45,27.28,27.080000000000002,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A +2012,9,29,10,30,101350,100200,99090,76.81,0,6.57,7.16,7.29,7.36,7.41,7.45,7.47,7.49,7.5,188.51,188.26,188.15,188.06,187.98,187.9,187.83,187.76,187.64000000000001,27.78,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,9,29,11,30,101360,100210,99100,73.53,0,6.5200000000000005,7.09,7.22,7.28,7.33,7.3500000000000005,7.37,7.390000000000001,7.4,184.24,184.36,184.32,184.24,184.14000000000001,184.03,183.91,183.79,183.53,27.89,27.59,27.43,27.23,27.04,26.85,26.650000000000002,26.47,26.09,N/A,N/A +2012,9,29,12,30,101350,100210,99090,74.17,0,6.34,6.890000000000001,7.01,7.09,7.140000000000001,7.17,7.19,7.21,7.24,186.77,186.75,186.72,186.67000000000002,186.63,186.58,186.52,186.47,186.36,27.93,27.62,27.46,27.26,27.07,26.89,26.69,26.5,26.12,N/A,N/A +2012,9,29,13,30,101360,100210,99100,72.37,0,5.97,6.53,6.67,6.75,6.8100000000000005,6.8500000000000005,6.890000000000001,6.92,6.96,187.15,186.84,186.72,186.59,186.48,186.36,186.24,186.13,185.89000000000001,28.01,27.72,27.55,27.36,27.17,26.98,26.78,26.6,26.21,N/A,N/A +2012,9,29,14,30,101360,100210,99100,71.06,0,5.5200000000000005,5.99,6.09,6.16,6.2,6.23,6.26,6.28,6.32,176.38,176.77,177.06,177.36,177.65,177.93,178.24,178.52,179.15,28.09,27.8,27.64,27.45,27.26,27.080000000000002,26.89,26.71,26.330000000000002,N/A,N/A +2012,9,29,15,30,101340,100190,99080,69.81,0,5.17,5.61,5.7,5.76,5.8,5.82,5.84,5.86,5.89,172.16,172.94,173.39000000000001,173.79,174.16,174.5,174.83,175.14000000000001,175.73,28.19,27.91,27.75,27.560000000000002,27.38,27.19,27,26.810000000000002,26.44,N/A,N/A +2012,9,29,16,30,101290,100140,99030,66.92,0,5.2,5.6000000000000005,5.68,5.72,5.74,5.75,5.76,5.7700000000000005,5.7700000000000005,167.8,168.06,168.34,168.66,168.96,169.27,169.6,169.91,170.56,28.310000000000002,28.05,27.900000000000002,27.71,27.53,27.34,27.16,26.97,26.6,N/A,N/A +2012,9,29,17,30,101220,100070,98960,66.78,0,5.68,6.16,6.2700000000000005,6.34,6.38,6.41,6.44,6.46,6.49,157.37,157.72,157.94,158.16,158.34,158.51,158.68,158.84,159.14000000000001,28.36,28.1,27.95,27.75,27.57,27.39,27.2,27.01,26.64,N/A,N/A +2012,9,29,18,30,101160,100020,98910,67.85,0,5.3500000000000005,5.76,5.8500000000000005,5.89,5.92,5.94,5.96,5.97,5.99,155.33,155.69,155.99,156.3,156.58,156.86,157.14000000000001,157.4,157.92000000000002,28.330000000000002,28.060000000000002,27.900000000000002,27.71,27.53,27.34,27.150000000000002,26.97,26.59,N/A,N/A +2012,9,29,19,30,101110,99970,98860,70.25,0,5.3500000000000005,5.78,5.87,5.91,5.94,5.96,5.98,5.99,6.01,150.46,150.33,150.3,150.33,150.36,150.42000000000002,150.5,150.58,150.81,28.26,27.990000000000002,27.830000000000002,27.64,27.46,27.27,27.080000000000002,26.900000000000002,26.53,N/A,N/A +2012,9,29,20,30,101060,99920,98810,72.81,0,5.74,6.23,6.34,6.4,6.43,6.46,6.47,6.49,6.5,156.03,156.27,156.41,156.54,156.67000000000002,156.79,156.92000000000002,157.03,157.26,28.240000000000002,27.96,27.8,27.61,27.42,27.23,27.04,26.85,26.48,N/A,N/A +2012,9,29,21,30,101050,99900,98780,89.29,91.9,11.620000000000001,12.59,12.790000000000001,12.88,12.91,12.92,12.9,12.88,12.81,155.47,156.76,157.64000000000001,158.6,159.6,160.59,161.78,162.93,165.76,24.86,24.38,24.2,24.04,23.89,23.75,23.61,23.48,23.2,N/A,N/A +2012,9,29,22,30,101040,99890,98770,87.22,2.9000000000000004,6.8500000000000005,7.33,7.44,7.5,7.53,7.55,7.5600000000000005,7.5600000000000005,7.55,161.41,161.86,162.03,162.19,162.32,162.45000000000002,162.58,162.70000000000002,162.95000000000002,25.18,24.72,24.53,24.32,24.13,23.94,23.740000000000002,23.56,23.19,N/A,N/A +2012,9,29,23,30,100990,99830,98710,83.83,20.5,7.390000000000001,7.94,8.06,8.120000000000001,8.16,8.18,8.19,8.19,8.19,143.43,143.73,143.73,143.72,143.71,143.69,143.67000000000002,143.66,143.6,25.150000000000002,24.69,24.5,24.29,24.09,23.900000000000002,23.71,23.53,23.150000000000002,N/A,N/A +2012,9,30,0,30,100930,99780,98660,91.15,15,7.54,8.3,8.49,8.620000000000001,8.73,8.82,8.91,8.99,9.18,147.84,148.79,149.05,149.26,149.47,149.67000000000002,149.89000000000001,150.08,150.63,24.61,24.13,23.93,23.73,23.54,23.36,23.17,23,22.650000000000002,N/A,N/A +2012,9,30,1,30,100880,99730,98610,88.81,0,8.27,8.89,9.040000000000001,9.1,9.14,9.16,9.17,9.17,9.17,142.47,142.58,142.72,142.87,143.02,143.18,143.36,143.54,143.99,25.400000000000002,24.94,24.740000000000002,24.53,24.34,24.150000000000002,23.95,23.77,23.400000000000002,N/A,N/A +2012,9,30,2,30,100880,99720,98610,90.79,0,9.39,10.11,10.28,10.34,10.38,10.39,10.4,10.41,10.41,138.77,138.99,139.23,139.5,139.78,140.07,140.42000000000002,140.76,141.68,25.29,24.8,24.6,24.39,24.2,24.01,23.82,23.64,23.28,N/A,N/A +2012,9,30,3,30,100840,99690,98580,88.79,0.7000000000000001,9.61,10.51,10.76,10.91,11.02,11.09,11.15,11.200000000000001,11.27,143.56,143.74,143.91,144.08,144.25,144.41,144.58,144.74,145.09,26.29,25.86,25.67,25.45,25.26,25.07,24.87,24.68,24.3,N/A,N/A +2012,9,30,4,30,100750,99610,98500,88.48,0.7000000000000001,11.99,13.200000000000001,13.5,13.66,13.76,13.82,13.85,13.870000000000001,13.870000000000001,163.49,163.78,163.84,163.93,164,164.08,164.17000000000002,164.26,164.47,27.05,26.66,26.47,26.26,26.07,25.87,25.68,25.490000000000002,25.11,N/A,N/A +2012,9,30,5,30,100690,99550,98450,92.17,0,10.38,11.33,11.58,11.71,11.8,11.86,11.9,11.93,11.98,166.95000000000002,167.51,167.85,168.18,168.49,168.79,169.11,169.43,170.17000000000002,27,26.62,26.45,26.25,26.07,25.89,25.71,25.54,25.19,N/A,N/A +2012,9,30,6,30,100550,99420,98320,86.05,7.300000000000001,10.9,12.200000000000001,12.49,12.68,12.82,12.92,13,13.07,13.19,174.5,175.19,175.57,175.93,176.28,176.59,176.92000000000002,177.23,177.88,27.73,27.41,27.240000000000002,27.04,26.85,26.67,26.48,26.3,25.92,N/A,N/A +2012,9,30,7,30,100610,99480,98380,75.18,0,11.38,12.71,13.1,13.36,13.57,13.72,13.84,13.94,14.09,210.86,210.99,211.04,211.11,211.16,211.22,211.27,211.33,211.43,28.740000000000002,28.560000000000002,28.43,28.26,28.09,27.92,27.740000000000002,27.57,27.21,N/A,N/A +2012,9,30,8,30,100600,99460,98360,72.2,0,11.16,12.49,12.89,13.17,13.39,13.55,13.68,13.8,13.98,213.86,213.99,214.03,214.08,214.11,214.14000000000001,214.17000000000002,214.19,214.22,28.8,28.62,28.490000000000002,28.310000000000002,28.14,27.96,27.78,27.6,27.23,N/A,N/A +2012,9,30,9,30,100550,99420,98320,73.55,0,11.52,12.86,13.26,13.52,13.71,13.86,13.97,14.07,14.21,219.67000000000002,219.74,219.79,219.83,219.87,219.9,219.93,219.95000000000002,220,28.71,28.52,28.38,28.2,28.03,27.85,27.67,27.490000000000002,27.12,N/A,N/A +2012,9,30,10,30,100470,99340,98240,79.4,0,11.08,12.4,12.8,13.05,13.24,13.370000000000001,13.47,13.55,13.66,210.65,210.71,210.81,210.89000000000001,210.95000000000002,210.99,211.03,211.06,211.1,28.400000000000002,28.17,28.02,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.71,N/A,N/A +2012,9,30,11,30,100470,99320,98210,86.58,1.8,9.99,10.950000000000001,11.23,11.4,11.53,11.620000000000001,11.700000000000001,11.76,11.86,271.19,270.32,269.87,269.41,269.01,268.62,268.26,267.92,267.24,26.080000000000002,25.66,25.47,25.26,25.07,24.87,24.68,24.5,24.13,N/A,N/A +2012,9,30,12,30,100430,99280,98170,83.46000000000001,0,9.51,10.33,10.540000000000001,10.65,10.72,10.77,10.81,10.83,10.86,268.87,268.87,268.81,268.73,268.66,268.59000000000003,268.5,268.41,268.21,25.69,25.240000000000002,25.04,24.830000000000002,24.63,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,9,30,13,30,100430,99280,98170,80.53,0,9.09,9.88,10.08,10.19,10.26,10.31,10.35,10.38,10.42,265.29,265.19,265.06,264.94,264.82,264.71,264.6,264.49,264.26,25.79,25.34,25.150000000000002,24.94,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A +2012,9,30,14,30,100430,99280,98160,93.52,0,9.44,10.14,10.3,10.370000000000001,10.41,10.43,10.43,10.43,10.42,273.66,273.41,273.24,273.06,272.9,272.73,272.56,272.39,272,24.01,23.47,23.25,23.03,22.830000000000002,22.64,22.44,22.26,21.88,N/A,N/A +2012,9,30,15,30,100450,99300,98180,89.3,0,8.84,9.49,9.64,9.700000000000001,9.74,9.76,9.76,9.76,9.73,281.35,281.34000000000003,281.31,281.24,281.14,281.03000000000003,280.87,280.71,280.23,24.29,23.77,23.56,23.34,23.150000000000002,22.95,22.76,22.580000000000002,22.22,N/A,N/A +2012,9,30,16,30,100460,99310,98180,89.64,0.4,8.08,8.63,8.75,8.81,8.84,8.86,8.870000000000001,8.870000000000001,8.870000000000001,280.03000000000003,280.35,280.53000000000003,280.7,280.85,280.99,281.15000000000003,281.29,281.61,23.34,22.79,22.580000000000002,22.36,22.150000000000002,21.96,21.76,21.580000000000002,21.2,N/A,N/A +2012,9,30,17,30,100470,99320,98190,88.95,5.5,9.93,10.700000000000001,10.88,10.950000000000001,11,11.02,11.03,11.040000000000001,11.02,286.86,287.15000000000003,287.33,287.49,287.65000000000003,287.8,287.95,288.1,288.42,23.31,22.72,22.490000000000002,22.26,22.06,21.86,21.66,21.48,21.1,N/A,N/A +2012,9,30,18,30,100490,99330,98200,87.48,0.7000000000000001,10.92,11.84,12.07,12.17,12.25,12.290000000000001,12.32,12.34,12.34,299.18,299.57,299.81,300.05,300.27,300.49,300.71,300.91,301.38,23.07,22.44,22.21,21.98,21.77,21.57,21.36,21.18,20.79,N/A,N/A +2012,9,30,19,30,100500,99340,98220,86.49,0.4,11.84,12.88,13.15,13.290000000000001,13.39,13.450000000000001,13.49,13.52,13.540000000000001,300.19,300.63,300.87,301.1,301.29,301.49,301.67,301.84000000000003,302.2,23.18,22.54,22.3,22.07,21.85,21.650000000000002,21.44,21.25,20.86,N/A,N/A +2012,9,30,20,30,100510,99350,98220,88.83,1.1,12.99,14.17,14.47,14.64,14.76,14.83,14.870000000000001,14.91,14.94,325.86,325.62,325.43,325.22,325.02,324.83,324.63,324.44,324.04,22.55,21.85,21.59,21.34,21.12,20.91,20.7,20.51,20.11,N/A,N/A +2012,9,30,21,30,100550,99390,98250,86.76,1.1,14.84,16.15,16.45,16.57,16.62,16.64,16.62,16.6,16.5,320.73,321.07,321.25,321.40000000000003,321.53000000000003,321.65000000000003,321.76,321.86,322.07,21.67,20.88,20.6,20.35,20.13,19.92,19.71,19.52,19.13,N/A,N/A +2012,9,30,22,30,100560,99400,98260,87.58,1.8,13.14,14.35,14.65,14.82,14.93,15.01,15.06,15.1,15.15,330.47,330.52,330.57,330.62,330.66,330.7,330.74,330.78000000000003,330.86,21.27,20.51,20.240000000000002,20,19.77,19.57,19.36,19.16,18.77,N/A,N/A +2012,9,30,23,30,100610,99450,98310,87,1.5,12.42,13.5,13.780000000000001,13.92,14.01,14.08,14.11,14.14,14.16,331.35,331.55,331.7,331.84000000000003,331.97,332.09000000000003,332.21,332.32,332.57,21.23,20.47,20.21,19.96,19.740000000000002,19.53,19.32,19.12,18.73,N/A,N/A +2012,10,1,0,30,100630,99460,98320,85.96000000000001,1.5,12.44,13.52,13.8,13.950000000000001,14.05,14.120000000000001,14.16,14.200000000000001,14.23,341.8,341.6,341.46,341.31,341.17,341.05,340.91,340.79,340.54,21.13,20.38,20.11,19.87,19.650000000000002,19.44,19.23,19.04,18.64,N/A,N/A +2012,10,1,1,30,100680,99500,98360,86.60000000000001,1.1,12.6,13.68,13.94,14.07,14.15,14.21,14.24,14.26,14.27,337.52,337.54,337.54,337.52,337.5,337.46,337.43,337.41,337.35,20.51,19.71,19.44,19.19,18.97,18.76,18.55,18.35,17.96,N/A,N/A +2012,10,1,2,30,100710,99530,98390,87,0.5,12.790000000000001,13.870000000000001,14.13,14.26,14.35,14.4,14.43,14.450000000000001,14.46,336.07,336.11,336.12,336.14,336.15000000000003,336.16,336.17,336.17,336.19,19.79,18.95,18.67,18.41,18.18,17.97,17.75,17.55,17.150000000000002,N/A,N/A +2012,10,1,3,30,100750,99570,98420,87.09,0.4,12.46,13.51,13.77,13.91,14.01,14.07,14.11,14.14,14.17,343.1,343.21,343.25,343.28000000000003,343.31,343.34000000000003,343.37,343.40000000000003,343.44,19.31,18.46,18.17,17.91,17.68,17.46,17.240000000000002,17.04,16.64,N/A,N/A +2012,10,1,4,30,100760,99580,98430,84.05,0,12.09,13.07,13.32,13.46,13.56,13.61,13.66,13.69,13.72,349.07,348.96,348.86,348.78000000000003,348.7,348.62,348.55,348.48,348.35,19.330000000000002,18.5,18.21,17.96,17.73,17.51,17.3,17.1,16.69,N/A,N/A +2012,10,1,5,30,100760,99580,98430,87.16,0,11.450000000000001,12.35,12.57,12.67,12.74,12.790000000000001,12.81,12.82,12.84,341.64,341.8,341.84000000000003,341.88,341.90000000000003,341.93,341.95,341.97,342,19.34,18.53,18.240000000000002,17.98,17.75,17.54,17.32,17.13,16.72,N/A,N/A +2012,10,1,6,30,100830,99640,98490,84.95,0,12.030000000000001,13,13.23,13.34,13.41,13.450000000000001,13.47,13.49,13.49,348.21,348.11,348.03000000000003,347.96,347.89,347.82,347.75,347.69,347.55,18.900000000000002,18.07,17.78,17.53,17.3,17.09,16.87,16.67,16.27,N/A,N/A +2012,10,1,7,30,100840,99660,98510,85.06,0,11.82,12.77,13.02,13.15,13.24,13.290000000000001,13.33,13.36,13.38,346.84000000000003,346.78000000000003,346.75,346.72,346.7,346.68,346.65000000000003,346.63,346.59000000000003,19.06,18.240000000000002,17.95,17.7,17.47,17.26,17.04,16.84,16.43,N/A,N/A +2012,10,1,8,30,100850,99670,98520,83,0,11.67,12.620000000000001,12.86,12.99,13.07,13.120000000000001,13.16,13.19,13.22,349.37,349.48,349.54,349.57,349.6,349.62,349.64,349.67,349.71,19.27,18.46,18.18,17.92,17.7,17.48,17.27,17.07,16.67,N/A,N/A +2012,10,1,9,30,100860,99680,98530,81.99,0,11.47,12.43,12.67,12.8,12.89,12.96,13.01,13.05,13.11,347.95,348.09000000000003,348.2,348.28000000000003,348.37,348.44,348.52,348.59000000000003,348.73,19.54,18.75,18.490000000000002,18.240000000000002,18.01,17.8,17.580000000000002,17.39,16.990000000000002,N/A,N/A +2012,10,1,10,30,100900,99720,98570,80.06,0,11.25,12.19,12.42,12.55,12.64,12.71,12.76,12.8,12.85,351.08,351.11,351.12,351.12,351.12,351.12,351.11,351.11,351.11,19.81,19.04,18.77,18.53,18.31,18.1,17.89,17.69,17.29,N/A,N/A +2012,10,1,11,30,100920,99740,98590,77.59,0,12.14,13.22,13.51,13.69,13.81,13.91,13.98,14.040000000000001,14.14,343.16,343.17,343.18,343.18,343.18,343.19,343.19,343.2,343.21,20.240000000000002,19.47,19.2,18.95,18.72,18.51,18.3,18.11,17.7,N/A,N/A +2012,10,1,12,30,100950,99770,98630,74.47,0,12.24,13.3,13.58,13.72,13.82,13.89,13.94,13.98,14.030000000000001,346.89,346.68,346.56,346.45,346.34000000000003,346.25,346.15000000000003,346.06,345.88,20.66,19.900000000000002,19.64,19.39,19.17,18.96,18.75,18.55,18.150000000000002,N/A,N/A +2012,10,1,13,30,100950,99770,98630,77.14,0,10.43,11.26,11.47,11.58,11.67,11.73,11.78,11.81,11.870000000000001,337.05,337.14,337.2,337.27,337.34000000000003,337.41,337.49,337.56,337.75,20.82,20.12,19.87,19.63,19.41,19.21,19,18.81,18.41,N/A,N/A +2012,10,1,14,30,100990,99820,98680,76.57000000000001,0,8.98,9.63,9.78,9.86,9.91,9.94,9.96,9.98,10,331.12,331.59000000000003,331.91,332.21,332.48,332.74,333.02,333.27,333.81,21.04,20.39,20.150000000000002,19.92,19.7,19.5,19.29,19.1,18.71,N/A,N/A +2012,10,1,15,30,100980,99810,98670,73.75,0,8.55,9.19,9.34,9.43,9.5,9.55,9.58,9.620000000000001,9.67,330.03000000000003,330.39,330.62,330.84000000000003,331.05,331.24,331.43,331.61,331.98,21.61,21,20.76,20.54,20.32,20.13,19.92,19.73,19.34,N/A,N/A +2012,10,1,16,30,100970,99790,98660,68.61,0,9.14,9.870000000000001,10.06,10.17,10.25,10.3,10.35,10.4,10.47,329.99,329.96,329.95,329.95,329.95,329.95,329.95,329.95,329.96,22.39,21.79,21.56,21.330000000000002,21.12,20.92,20.71,20.52,20.12,N/A,N/A +2012,10,1,17,30,100950,99780,98640,68.49,0,9.49,10.27,10.47,10.58,10.66,10.72,10.77,10.81,10.88,319.24,319.58,319.8,320.01,320.2,320.38,320.56,320.73,321.08,22.94,22.36,22.13,21.91,21.7,21.5,21.29,21.11,20.71,N/A,N/A +2012,10,1,18,30,100940,99770,98640,64.26,0,9.34,10.14,10.35,10.47,10.56,10.63,10.68,10.73,10.8,318.96,319.14,319.25,319.35,319.45,319.53000000000003,319.61,319.7,319.86,23.82,23.29,23.07,22.85,22.650000000000002,22.45,22.240000000000002,22.05,21.66,N/A,N/A +2012,10,1,19,30,100920,99760,98630,60.96,0,9.66,10.540000000000001,10.78,10.92,11.03,11.120000000000001,11.19,11.24,11.33,321.14,321.25,321.29,321.32,321.35,321.37,321.39,321.41,321.46,24.69,24.21,24,23.78,23.580000000000002,23.38,23.18,22.990000000000002,22.6,N/A,N/A +2012,10,1,20,30,100900,99740,98620,57.88,0,9.72,10.61,10.86,11.01,11.120000000000001,11.200000000000001,11.27,11.33,11.41,323.59000000000003,323.47,323.39,323.31,323.25,323.18,323.12,323.07,322.95,25.37,24.92,24.73,24.52,24.32,24.12,23.92,23.73,23.34,N/A,N/A +2012,10,1,21,30,100880,99720,98600,54.57,0,9.66,10.57,10.81,10.950000000000001,11.06,11.13,11.19,11.24,11.32,326.85,326.69,326.57,326.47,326.36,326.26,326.16,326.06,325.87,25.990000000000002,25.59,25.400000000000002,25.19,24.990000000000002,24.8,24.6,24.41,24.02,N/A,N/A +2012,10,1,22,30,100860,99710,98590,53.33,0,9.52,10.42,10.64,10.77,10.86,10.93,10.98,11.02,11.08,328.92,328.62,328.42,328.21,328.04,327.86,327.68,327.52,327.2,26.39,26.02,25.84,25.64,25.44,25.25,25.05,24.86,24.47,N/A,N/A +2012,10,1,23,30,100870,99720,98600,50.97,0,9.72,10.65,10.870000000000001,11,11.08,11.14,11.19,11.22,11.26,331.85,331.51,331.31,331.12,330.94,330.78000000000003,330.62,330.47,330.16,26.61,26.25,26.080000000000002,25.87,25.68,25.490000000000002,25.29,25.1,24.72,N/A,N/A +2012,10,2,0,30,100900,99750,98630,54.5,0,8.08,8.78,8.950000000000001,9.06,9.14,9.200000000000001,9.24,9.28,9.34,329.89,330.26,330.37,330.46,330.53000000000003,330.59000000000003,330.64,330.69,330.75,26.5,26.14,25.96,25.76,25.560000000000002,25.37,25.17,24.98,24.59,N/A,N/A +2012,10,2,1,30,100920,99760,98640,52.980000000000004,0,8.02,8.73,8.91,9.02,9.09,9.15,9.200000000000001,9.24,9.3,335.85,335.75,335.66,335.56,335.47,335.38,335.3,335.22,335.06,26.48,26.12,25.95,25.740000000000002,25.55,25.35,25.150000000000002,24.97,24.580000000000002,N/A,N/A +2012,10,2,2,30,100940,99790,98670,51.71,0,7.84,8.57,8.76,8.88,8.98,9.05,9.11,9.16,9.24,335.43,335.35,335.3,335.26,335.23,335.2,335.17,335.14,335.1,26.64,26.29,26.12,25.91,25.73,25.53,25.330000000000002,25.150000000000002,24.76,N/A,N/A +2012,10,2,3,30,100940,99790,98670,51.2,0,7.63,8.33,8.52,8.64,8.73,8.8,8.85,8.91,8.99,328.18,328.46,328.66,328.86,329.05,329.23,329.41,329.57,329.91,26.77,26.44,26.27,26.07,25.88,25.69,25.490000000000002,25.310000000000002,24.92,N/A,N/A +2012,10,2,4,30,100960,99810,98690,55.89,0,6.66,7.17,7.28,7.34,7.38,7.41,7.43,7.45,7.46,317.08,317.40000000000003,317.62,317.83,318.02,318.2,318.39,318.56,318.93,26.54,26.19,26.02,25.810000000000002,25.62,25.43,25.240000000000002,25.05,24.67,N/A,N/A +2012,10,2,5,30,100970,99820,98700,58.11,0,6.5200000000000005,6.97,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.15,7.15,7.17,304.72,305.56,306.16,306.75,307.31,307.84000000000003,308.40000000000003,308.92,310.09000000000003,26.13,25.76,25.59,25.39,25.21,25.02,24.830000000000002,24.66,24.3,N/A,N/A +2012,10,2,6,30,101020,99860,98740,58.33,0,5.88,6.28,6.36,6.4,6.43,6.45,6.47,6.49,6.54,310.87,311.73,312.27,312.85,313.42,314,314.62,315.21,316.61,25.72,25.36,25.19,25,24.82,24.64,24.45,24.28,23.93,N/A,N/A +2012,10,2,7,30,101040,99880,98760,58.84,0,6.72,7.19,7.28,7.32,7.36,7.38,7.4,7.42,7.49,311.49,312.58,313.28000000000003,314.03000000000003,314.75,315.47,316.26,317,318.77,25.52,25.150000000000002,24.98,24.79,24.61,24.43,24.25,24.080000000000002,23.740000000000002,N/A,N/A +2012,10,2,8,30,101060,99900,98770,62.84,0,6.65,7.13,7.24,7.3,7.3500000000000005,7.390000000000001,7.43,7.46,7.58,312.78000000000003,313.8,314.44,315.1,315.74,316.38,317.08,317.75,319.38,25,24.61,24.43,24.240000000000002,24.05,23.88,23.7,23.53,23.2,N/A,N/A +2012,10,2,9,30,101050,99890,98760,62.31,0,7.11,7.61,7.72,7.76,7.79,7.8100000000000005,7.82,7.82,7.83,322.18,322.64,322.92,323.21,323.49,323.76,324.07,324.36,325.07,25.17,24.77,24.59,24.39,24.2,24.01,23.82,23.650000000000002,23.29,N/A,N/A +2012,10,2,10,30,101090,99930,98800,62.43,0,6.96,7.44,7.53,7.57,7.58,7.59,7.58,7.58,7.55,328.79,329.16,329.39,329.62,329.83,330.05,330.28000000000003,330.48,330.97,25.11,24.7,24.52,24.310000000000002,24.12,23.93,23.740000000000002,23.56,23.19,N/A,N/A +2012,10,2,11,30,101120,99960,98840,59.550000000000004,0,6.53,6.96,7.03,7.0600000000000005,7.07,7.07,7.0600000000000005,7.05,7.0200000000000005,338.97,338.8,338.69,338.58,338.48,338.40000000000003,338.31,338.24,338.08,25.01,24.61,24.43,24.22,24.03,23.85,23.650000000000002,23.47,23.1,N/A,N/A +2012,10,2,12,30,101140,99980,98850,61.730000000000004,0,5.5600000000000005,5.86,5.9,5.91,5.91,5.89,5.87,5.8500000000000005,5.8,342.24,341.98,341.81,341.62,341.45,341.29,341.11,340.95,340.56,24.59,24.17,23.990000000000002,23.78,23.59,23.41,23.21,23.03,22.66,N/A,N/A +2012,10,2,13,30,101190,100030,98900,66.16,0,5.95,6.2700000000000005,6.32,6.32,6.3100000000000005,6.3,6.2700000000000005,6.25,6.19,340.7,340.42,340.21,339.99,339.79,339.59000000000003,339.38,339.18,338.75,24.11,23.67,23.48,23.27,23.07,22.88,22.69,22.5,22.12,N/A,N/A +2012,10,2,14,30,101230,100060,98930,68.56,0,4.96,5.18,5.2,5.2,5.19,5.16,5.14,5.11,5.04,343.77,343.63,343.53000000000003,343.42,343.29,343.17,343.04,342.91,342.56,23.740000000000002,23.3,23.1,22.900000000000002,22.71,22.52,22.330000000000002,22.150000000000002,21.78,N/A,N/A +2012,10,2,15,30,101250,100080,98950,64.79,0,4.26,4.43,4.43,4.41,4.38,4.3500000000000005,4.32,4.28,4.2,355.35,354.98,354.76,354.52,354.29,354.07,353.81,353.58,353,23.89,23.47,23.28,23.080000000000002,22.88,22.69,22.5,22.32,21.94,N/A,N/A +2012,10,2,16,30,101260,100100,98960,61.33,0,4.11,4.28,4.3,4.3,4.29,4.28,4.26,4.24,4.2,354.73,354.83,354.91,354.98,355.04,355.1,355.16,355.21,355.31,24.14,23.72,23.53,23.330000000000002,23.14,22.95,22.76,22.57,22.19,N/A,N/A +2012,10,2,17,30,101280,100110,98980,60.27,0,4.03,4.21,4.22,4.21,4.21,4.19,4.17,4.16,4.12,344.62,344.93,345.04,345.15000000000003,345.24,345.33,345.42,345.51,345.67,24.43,24.02,23.84,23.63,23.44,23.25,23.05,22.87,22.48,N/A,N/A +2012,10,2,18,30,101280,100110,98990,60.89,0,3.73,3.93,3.97,3.99,4,4.01,4.01,4.0200000000000005,4.03,344.18,343.6,343.3,343.01,342.75,342.5,342.25,342.01,341.51,24.76,24.37,24.19,23.990000000000002,23.79,23.6,23.41,23.22,22.84,N/A,N/A +2012,10,2,19,30,101280,100120,98990,57.2,0,3.7800000000000002,3.99,4.04,4.07,4.08,4.1,4.11,4.12,4.14,327.7,328.14,328.44,328.72,328.96,329.19,329.42,329.64,330.09000000000003,25.26,24.88,24.7,24.5,24.310000000000002,24.12,23.92,23.73,23.35,N/A,N/A +2012,10,2,20,30,101250,100090,98960,55.51,0,4.08,4.32,4.37,4.4,4.42,4.44,4.45,4.46,4.49,333.42,334.08,334.47,334.84000000000003,335.18,335.51,335.83,336.14,336.78000000000003,25.59,25.240000000000002,25.060000000000002,24.86,24.67,24.48,24.28,24.1,23.72,N/A,N/A +2012,10,2,21,30,101240,100080,98960,56.02,0,3.16,3.37,3.42,3.46,3.5,3.5300000000000002,3.56,3.59,3.64,333.98,334.89,335.42,335.91,336.36,336.79,337.22,337.61,338.43,25.79,25.45,25.27,25.07,24.88,24.7,24.5,24.32,23.93,N/A,N/A +2012,10,2,22,30,101250,100090,98960,51.550000000000004,0,2.4,2.58,2.64,2.69,2.74,2.7800000000000002,2.82,2.86,2.94,333.74,333.89,333.96,334.02,334.07,334.12,334.16,334.2,334.25,26.07,25.740000000000002,25.57,25.37,25.18,24.990000000000002,24.79,24.61,24.22,N/A,N/A +2012,10,2,23,30,101250,100090,98970,50.72,0,3.04,3.2,3.23,3.24,3.25,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.27,326.79,327.24,327.5,327.75,327.97,328.17,328.36,328.53000000000003,328.89,26.39,26.080000000000002,25.91,25.72,25.53,25.34,25.150000000000002,24.96,24.580000000000002,N/A,N/A +2012,10,3,0,30,101280,100120,99000,49.29,0,2.44,2.59,2.63,2.65,2.67,2.69,2.71,2.72,2.75,345.3,345.73,345.95,346.16,346.35,346.52,346.68,346.83,347.12,26.44,26.13,25.96,25.76,25.57,25.39,25.19,25.01,24.62,N/A,N/A +2012,10,3,1,30,101320,100160,99040,51.45,0,3.9,4.04,4.03,3.99,3.95,3.91,3.87,3.83,3.73,332.28000000000003,332.49,332.62,332.73,332.84000000000003,332.93,333.04,333.14,333.37,26.09,25.76,25.59,25.400000000000002,25.21,25.02,24.830000000000002,24.650000000000002,24.26,N/A,N/A +2012,10,3,2,30,101370,100210,99080,50.15,0,3.81,3.93,3.91,3.88,3.85,3.8200000000000003,3.79,3.7600000000000002,3.71,305.61,308.25,309.82,311.45,312.96,314.41,315.90000000000003,317.28000000000003,320.13,26.14,25.82,25.650000000000002,25.46,25.27,25.080000000000002,24.89,24.71,24.330000000000002,N/A,N/A +2012,10,3,3,30,101400,100240,99110,47.980000000000004,0,3.45,3.5700000000000003,3.56,3.5300000000000002,3.5,3.47,3.43,3.4,3.33,16.34,16.79,17.07,17.34,17.59,17.830000000000002,18.06,18.27,18.740000000000002,26.12,25.79,25.62,25.42,25.23,25.04,24.84,24.650000000000002,24.27,N/A,N/A +2012,10,3,4,30,101410,100250,99120,47.81,0,3.33,3.44,3.43,3.4,3.38,3.36,3.33,3.31,3.25,23.26,24.01,24.52,25.02,25.490000000000002,25.93,26.38,26.79,27.650000000000002,25.95,25.61,25.43,25.23,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A +2012,10,3,5,30,101420,100260,99140,49.38,0,3,3.08,3.0700000000000003,3.04,3.0100000000000002,2.99,2.96,2.93,2.87,45.47,46.35,46.84,47.31,47.74,48.14,48.54,48.910000000000004,49.660000000000004,25.82,25.48,25.3,25.11,24.91,24.72,24.53,24.34,23.95,N/A,N/A +2012,10,3,6,30,101450,100280,99160,50.51,0,2.47,2.5300000000000002,2.52,2.5,2.48,2.46,2.44,2.41,2.37,62.65,62.980000000000004,63.160000000000004,63.34,63.51,63.67,63.84,64,64.34,25.73,25.400000000000002,25.22,25.03,24.830000000000002,24.650000000000002,24.44,24.26,23.87,N/A,N/A +2012,10,3,7,30,101480,100310,99190,53.21,0,1.77,1.82,1.82,1.82,1.81,1.8,1.79,1.79,1.77,58.44,59.82,60.77,61.690000000000005,62.54,63.36,64.19,64.94,66.51,25.59,25.26,25.080000000000002,24.89,24.69,24.5,24.3,24.12,23.73,N/A,N/A +2012,10,3,8,30,101480,100310,99190,55.65,0,1.58,1.6,1.59,1.57,1.56,1.54,1.53,1.51,1.48,70.29,70.83,71.17,71.5,71.81,72.12,72.45,72.75,73.42,25.48,25.14,24.97,24.77,24.57,24.39,24.18,24,23.61,N/A,N/A +2012,10,3,9,30,101500,100330,99200,55.92,0,1.52,1.53,1.5,1.47,1.45,1.42,1.3900000000000001,1.37,1.33,75.04,76.66,77.55,78.43,79.24,80,80.79,81.51,83,25.45,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.97,23.580000000000002,N/A,N/A +2012,10,3,10,30,101500,100330,99210,57.07,0,1.1,1.1,1.07,1.05,1.03,1.01,0.99,0.97,0.93,91.43,93.02,93.88,94.81,95.69,96.55,97.48,98.36,100.29,25.37,25.04,24.86,24.66,24.47,24.28,24.080000000000002,23.89,23.5,N/A,N/A +2012,10,3,11,30,101530,100370,99240,58.08,0,1.23,1.23,1.2,1.17,1.1500000000000001,1.1300000000000001,1.1,1.08,1.03,100.41,101.61,102.32000000000001,103.09,103.84,104.58,105.35000000000001,106.05,107.7,25.330000000000002,24.990000000000002,24.810000000000002,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A +2012,10,3,12,30,101540,100380,99250,58.79,0,0.62,0.68,0.7000000000000001,0.73,0.75,0.77,0.78,0.8,0.8300000000000001,155.37,156.82,157.4,157.89000000000001,158.37,158.86,159.32,159.75,160.67000000000002,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A +2012,10,3,13,30,101590,100430,99300,60.370000000000005,0,1.46,1.36,1.27,1.17,1.09,1.02,0.9500000000000001,0.88,0.75,324.87,325.49,325.89,326.41,326.94,327.46,328.1,328.7,330.17,25.240000000000002,24.89,24.72,24.52,24.330000000000002,24.14,23.94,23.75,23.37,N/A,N/A +2012,10,3,14,30,101620,100450,99320,60.83,0,1.93,1.85,1.78,1.69,1.61,1.54,1.46,1.3900000000000001,1.24,319.16,319.29,319.48,319.71,319.97,320.26,320.63,320.98,321.88,25.11,24.76,24.580000000000002,24.39,24.19,24,23.81,23.63,23.240000000000002,N/A,N/A +2012,10,3,15,30,101650,100480,99350,61.370000000000005,0,0.56,0.49,0.45,0.4,0.36,0.33,0.29,0.26,0.2,323.27,324.74,326.06,327.94,330.29,332.87,337.06,340.98,355.8,25.17,24.82,24.650000000000002,24.45,24.25,24.07,23.87,23.68,23.3,N/A,N/A +2012,10,3,16,30,101650,100480,99350,62.04,0,0.6,0.5700000000000001,0.55,0.53,0.52,0.51,0.5,0.49,0.49,4.86,12.72,17.490000000000002,22.490000000000002,27.2,31.78,36.56,41,50.14,25.26,24.91,24.73,24.54,24.34,24.150000000000002,23.96,23.77,23.38,N/A,N/A +2012,10,3,17,30,101650,100490,99360,62.07,0,0.79,0.8200000000000001,0.8300000000000001,0.8300000000000001,0.84,0.84,0.84,0.85,0.86,45.87,50.7,53.5,56.2,58.730000000000004,61.18,63.660000000000004,65.96000000000001,70.74,25.37,25.02,24.84,24.64,24.45,24.26,24.060000000000002,23.88,23.490000000000002,N/A,N/A +2012,10,3,18,30,101640,100480,99350,64.47,0,1.75,1.68,1.6,1.54,1.47,1.42,1.3800000000000001,1.33,1.26,68.28,72.23,74.69,77.43,80.04,82.57000000000001,85.3,87.83,93.38,25.38,25.03,24.85,24.650000000000002,24.46,24.28,24.080000000000002,23.89,23.51,N/A,N/A +2012,10,3,19,30,101660,100490,99370,61.690000000000005,0,1.31,1.42,1.46,1.5,1.53,1.56,1.6,1.6300000000000001,1.68,140.22,144.66,146.98,148.96,150.58,151.96,153.19,154.3,156.21,25.650000000000002,25.3,25.12,24.92,24.72,24.54,24.34,24.150000000000002,23.76,N/A,N/A +2012,10,3,20,30,101660,100500,99370,61.09,0,2.16,2.27,2.3000000000000003,2.32,2.34,2.35,2.37,2.37,2.4,151.78,152.17000000000002,152.5,152.85,153.19,153.52,153.85,154.16,154.85,25.73,25.38,25.2,25,24.8,24.61,24.41,24.23,23.84,N/A,N/A +2012,10,3,21,30,101650,100490,99360,63,0,2.74,2.86,2.88,2.88,2.89,2.89,2.89,2.89,2.89,145.41,146.46,147.12,147.76,148.34,148.87,149.41,149.9,150.88,25.73,25.39,25.21,25.01,24.82,24.63,24.43,24.25,23.85,N/A,N/A +2012,10,3,22,30,101660,100500,99370,64.24,0,3.0100000000000002,3.22,3.27,3.3000000000000003,3.33,3.36,3.38,3.4,3.43,154.59,154.65,154.78,154.9,155.02,155.14000000000001,155.26,155.36,155.6,25.78,25.44,25.27,25.07,24.87,24.68,24.490000000000002,24.3,23.91,N/A,N/A +2012,10,3,23,30,101660,100500,99370,63.92,0,3.93,4.14,4.17,4.18,4.18,4.18,4.18,4.17,4.16,161.76,161.9,162,162.1,162.20000000000002,162.29,162.38,162.45000000000002,162.64000000000001,25.84,25.51,25.330000000000002,25.14,24.94,24.75,24.560000000000002,24.37,23.98,N/A,N/A +2012,10,4,0,30,101670,100510,99380,66.28,0,3.72,3.96,4.01,4.04,4.07,4.08,4.1,4.11,4.14,150.97,151.75,152.29,152.81,153.26,153.69,154.11,154.51,155.3,25.77,25.43,25.25,25.05,24.86,24.67,24.47,24.28,23.900000000000002,N/A,N/A +2012,10,4,1,30,101700,100530,99410,66.98,0,4.43,4.71,4.76,4.79,4.8,4.82,4.82,4.83,4.83,152.42000000000002,153.19,153.67000000000002,154.15,154.58,154.98,155.37,155.74,156.5,25.77,25.44,25.26,25.060000000000002,24.87,24.68,24.48,24.29,23.91,N/A,N/A +2012,10,4,2,30,101720,100560,99430,64.15,0,4.21,4.49,4.55,4.59,4.62,4.64,4.66,4.67,4.69,169.26,169.55,169.56,169.54,169.5,169.46,169.41,169.36,169.24,26.01,25.68,25.51,25.3,25.12,24.92,24.72,24.54,24.150000000000002,N/A,N/A +2012,10,4,3,30,101740,100580,99450,59.09,0,4.53,4.82,4.88,4.91,4.93,4.95,4.96,4.97,4.98,176.08,175.41,175.02,174.64000000000001,174.31,174,173.69,173.42000000000002,172.88,26.13,25.810000000000002,25.64,25.44,25.25,25.060000000000002,24.86,24.68,24.29,N/A,N/A +2012,10,4,4,30,101740,100580,99450,62.57,0,4.46,4.79,4.87,4.92,4.95,4.97,5,5.01,5.04,165.52,166.04,166.18,166.27,166.33,166.36,166.37,166.38,166.36,26.05,25.73,25.55,25.35,25.16,24.97,24.77,24.59,24.2,N/A,N/A +2012,10,4,5,30,101770,100600,99480,59.01,0,4.91,5.24,5.29,5.3100000000000005,5.32,5.32,5.32,5.3100000000000005,5.3,161.45000000000002,161.82,162.05,162.29,162.5,162.70000000000002,162.9,163.1,163.49,26.13,25.810000000000002,25.64,25.44,25.25,25.060000000000002,24.86,24.68,24.29,N/A,N/A +2012,10,4,6,30,101800,100630,99510,60.03,0,4.67,5.0200000000000005,5.1000000000000005,5.15,5.19,5.22,5.24,5.26,5.29,164.65,164.86,164.94,165.02,165.08,165.13,165.17000000000002,165.22,165.3,26.080000000000002,25.76,25.59,25.39,25.2,25.01,24.810000000000002,24.63,24.240000000000002,N/A,N/A +2012,10,4,7,30,101840,100680,99550,63,0,4.94,5.29,5.3500000000000005,5.39,5.41,5.42,5.43,5.44,5.44,173.45000000000002,173.36,173.29,173.19,173.11,173.03,172.95000000000002,172.88,172.73,26.01,25.68,25.51,25.310000000000002,25.12,24.93,24.73,24.55,24.16,N/A,N/A +2012,10,4,8,30,101860,100690,99570,67.77,0,5.5600000000000005,5.95,6.0200000000000005,6.05,6.07,6.08,6.08,6.08,6.0600000000000005,159.58,160.31,160.72,161.12,161.47,161.8,162.12,162.42000000000002,163,25.900000000000002,25.57,25.39,25.19,25,24.810000000000002,24.61,24.43,24.04,N/A,N/A +2012,10,4,9,30,101880,100710,99590,62.85,0,5.43,5.7700000000000005,5.83,5.84,5.8500000000000005,5.84,5.84,5.83,5.8,173.35,173.18,173.12,173.05,173,172.95000000000002,172.9,172.86,172.8,26.04,25.71,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A +2012,10,4,10,30,101920,100750,99620,64.72,0,5.22,5.63,5.72,5.7700000000000005,5.8100000000000005,5.84,5.87,5.89,5.92,163.1,163.78,164.16,164.51,164.83,165.13,165.43,165.70000000000002,166.26,26.080000000000002,25.76,25.59,25.39,25.2,25.01,24.82,24.63,24.240000000000002,N/A,N/A +2012,10,4,11,30,101930,100770,99640,67.1,0,5.45,5.8500000000000005,5.93,5.98,6.01,6.03,6.05,6.0600000000000005,6.08,160.8,160.83,160.88,160.93,160.97,161.02,161.06,161.11,161.21,26.03,25.7,25.53,25.330000000000002,25.14,24.95,24.75,24.57,24.18,N/A,N/A +2012,10,4,12,30,101980,100810,99680,67.86,0,5.55,6,6.1000000000000005,6.15,6.19,6.22,6.24,6.25,6.2700000000000005,148.56,148.9,149.18,149.45000000000002,149.69,149.92000000000002,150.15,150.36,150.8,26.04,25.71,25.53,25.330000000000002,25.14,24.95,24.75,24.57,24.18,N/A,N/A +2012,10,4,13,30,102010,100850,99720,68.71000000000001,0,5.34,5.74,5.82,5.86,5.88,5.9,5.91,5.92,5.92,157.11,157.14000000000001,157.08,156.99,156.89000000000001,156.79,156.67000000000002,156.56,156.32,26.03,25.69,25.52,25.32,25.13,24.94,24.75,24.560000000000002,24.17,N/A,N/A +2012,10,4,14,30,102060,100890,99760,69.86,0,5.5600000000000005,6,6.09,6.140000000000001,6.18,6.2,6.22,6.23,6.25,151.43,151.82,152,152.15,152.28,152.39000000000001,152.49,152.58,152.73,26.05,25.72,25.55,25.35,25.150000000000002,24.97,24.77,24.580000000000002,24.2,N/A,N/A +2012,10,4,15,30,102070,100900,99770,69.03,0,5.8,6.25,6.3500000000000005,6.4,6.44,6.46,6.48,6.5,6.5200000000000005,152.59,152.41,152.28,152.13,152,151.86,151.73,151.62,151.37,26.07,25.73,25.560000000000002,25.36,25.17,24.98,24.78,24.6,24.21,N/A,N/A +2012,10,4,16,30,102080,100910,99780,70.49,0,5.58,6.01,6.1000000000000005,6.15,6.18,6.2,6.21,6.22,6.23,148.92000000000002,149.12,149.24,149.35,149.46,149.57,149.69,149.79,150.04,26.01,25.67,25.5,25.3,25.11,24.92,24.72,24.54,24.150000000000002,N/A,N/A +2012,10,4,17,30,102080,100910,99780,71.79,0,5.25,5.67,5.76,5.82,5.87,5.91,5.93,5.96,6,145.77,146.4,146.8,147.18,147.52,147.84,148.16,148.44,149.02,26.02,25.68,25.5,25.3,25.11,24.92,24.72,24.54,24.14,N/A,N/A +2012,10,4,18,30,102070,100900,99770,70.29,0,5.59,6.03,6.13,6.18,6.22,6.25,6.2700000000000005,6.29,6.32,146.97,147.9,148.41,148.9,149.34,149.74,150.14000000000001,150.5,151.24,26.07,25.72,25.55,25.35,25.16,24.97,24.77,24.59,24.2,N/A,N/A +2012,10,4,19,30,102080,100920,99790,68.97,0,4.74,5.0600000000000005,5.13,5.17,5.2,5.22,5.23,5.24,5.26,160.99,160.61,160.41,160.22,160.06,159.91,159.76,159.63,159.35,26.19,25.86,25.69,25.490000000000002,25.3,25.11,24.91,24.72,24.34,N/A,N/A +2012,10,4,20,30,102040,100880,99750,73.43,0,5.42,5.8,5.87,5.9,5.92,5.93,5.94,5.94,5.93,153.36,154.08,154.48,154.87,155.21,155.54,155.86,156.16,156.75,26.13,25.78,25.61,25.41,25.22,25.03,24.830000000000002,24.64,24.25,N/A,N/A +2012,10,4,21,30,102040,100870,99740,71.99,0,4.46,4.76,4.82,4.8500000000000005,4.86,4.87,4.88,4.89,4.89,154.47,154.36,154.31,154.26,154.21,154.17000000000002,154.13,154.08,154,26.17,25.84,25.67,25.47,25.28,25.09,24.900000000000002,24.71,24.32,N/A,N/A +2012,10,4,22,30,102030,100870,99740,74.01,0,4.14,4.43,4.51,4.55,4.59,4.62,4.64,4.67,4.71,148.38,148.78,149.03,149.25,149.46,149.65,149.84,150.02,150.37,26.060000000000002,25.740000000000002,25.560000000000002,25.37,25.18,24.990000000000002,24.79,24.6,24.22,N/A,N/A +2012,10,4,23,30,102010,100850,99720,71.95,0,4.01,4.2700000000000005,4.32,4.34,4.3500000000000005,4.36,4.36,4.36,4.36,147.91,148.14000000000001,148.33,148.5,148.66,148.82,148.98,149.13,149.46,26.11,25.79,25.62,25.42,25.23,25.04,24.84,24.66,24.27,N/A,N/A +2012,10,5,0,30,101990,100830,99700,74.01,0,4.04,4.3,4.3500000000000005,4.39,4.4,4.42,4.43,4.44,4.45,144.93,145.38,145.68,145.97,146.23,146.48,146.72,146.94,147.4,25.98,25.64,25.47,25.27,25.080000000000002,24.89,24.69,24.51,24.12,N/A,N/A +2012,10,5,1,30,101990,100830,99700,75.69,0,4.19,4.44,4.48,4.5,4.51,4.51,4.51,4.51,4.5,142.84,143.07,143.23,143.38,143.52,143.65,143.78,143.9,144.16,25.87,25.53,25.36,25.16,24.97,24.78,24.580000000000002,24.39,24.01,N/A,N/A +2012,10,5,2,30,101990,100830,99700,72.36,0,4.19,4.46,4.51,4.54,4.55,4.57,4.57,4.58,4.58,148.91,148.81,148.8,148.79,148.78,148.77,148.77,148.77,148.78,25.92,25.59,25.42,25.22,25.03,24.84,24.64,24.46,24.07,N/A,N/A +2012,10,5,3,30,101960,100800,99670,76.52,0,4.3500000000000005,4.63,4.69,4.72,4.74,4.76,4.7700000000000005,4.78,4.79,143.27,143.63,143.85,144.06,144.26,144.45000000000002,144.64000000000001,144.83,145.22,25.7,25.35,25.18,24.97,24.78,24.59,24.39,24.21,23.82,N/A,N/A +2012,10,5,4,30,101950,100780,99650,75.86,0,4.62,4.93,5,5.04,5.0600000000000005,5.08,5.09,5.1000000000000005,5.11,146.26,146.31,146.36,146.41,146.46,146.5,146.56,146.6,146.70000000000002,25.68,25.330000000000002,25.16,24.96,24.76,24.57,24.38,24.19,23.81,N/A,N/A +2012,10,5,5,30,101930,100770,99640,74.97,0,4.26,4.55,4.61,4.64,4.67,4.69,4.7,4.72,4.74,149.11,149.06,149.03,148.99,148.96,148.92000000000002,148.88,148.84,148.76,25.650000000000002,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A +2012,10,5,6,30,101930,100760,99630,73.33,0,4.49,4.79,4.86,4.89,4.92,4.94,4.96,4.97,4.99,149.17000000000002,149.12,149.13,149.14000000000001,149.15,149.16,149.17000000000002,149.17000000000002,149.17000000000002,25.67,25.32,25.14,24.94,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A +2012,10,5,7,30,101940,100780,99650,79.78,0,4.89,5.21,5.2700000000000005,5.3,5.32,5.33,5.33,5.33,5.33,146.85,147.02,147.15,147.28,147.41,147.52,147.64000000000001,147.75,148,25.44,25.080000000000002,24.900000000000002,24.7,24.5,24.310000000000002,24.11,23.93,23.54,N/A,N/A +2012,10,5,8,30,101950,100780,99660,79.55,0,5.73,6.12,6.17,6.19,6.19,6.17,6.15,6.13,6.0600000000000005,148.83,149.05,149.19,149.33,149.45000000000002,149.56,149.68,149.79,150.01,25.5,25.13,24.95,24.75,24.55,24.36,24.16,23.97,23.580000000000002,N/A,N/A +2012,10,5,9,30,101940,100770,99640,78.19,0,4.01,4.3,4.38,4.43,4.48,4.5200000000000005,4.55,4.58,4.63,151.9,151.96,151.97,151.98,151.98,151.98,151.97,151.96,151.94,25.5,25.14,24.97,24.76,24.57,24.38,24.18,23.990000000000002,23.6,N/A,N/A +2012,10,5,10,30,101940,100780,99650,74.58,0,4.76,5.08,5.14,5.18,5.2,5.22,5.23,5.24,5.24,160.65,160.25,160.03,159.82,159.62,159.43,159.25,159.08,158.71,25.61,25.26,25.080000000000002,24.88,24.68,24.490000000000002,24.3,24.11,23.72,N/A,N/A +2012,10,5,11,30,101950,100780,99650,76.52,0,4.01,4.26,4.3100000000000005,4.34,4.36,4.37,4.38,4.39,4.4,162.87,162.37,162.06,161.76,161.48,161.22,160.95000000000002,160.70000000000002,160.21,25.59,25.23,25.060000000000002,24.86,24.66,24.47,24.27,24.080000000000002,23.7,N/A,N/A +2012,10,5,12,30,101940,100780,99650,73.9,0,3.41,3.63,3.69,3.72,3.75,3.7800000000000002,3.8000000000000003,3.8200000000000003,3.87,146.52,146.77,146.99,147.23,147.46,147.68,147.92000000000002,148.15,148.62,25.61,25.27,25.09,24.89,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A +2012,10,5,13,30,101940,100780,99650,75.06,0,3.38,3.56,3.6,3.63,3.64,3.65,3.66,3.67,3.67,157.28,157.47,157.57,157.65,157.71,157.77,157.81,157.85,157.89000000000001,25.68,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.19,23.8,N/A,N/A +2012,10,5,14,30,101950,100790,99660,74.86,0,3.12,3.31,3.35,3.38,3.4,3.42,3.43,3.45,3.47,161.95000000000002,162.01,162.02,162.02,162.02,162.01,162,161.98,161.93,25.560000000000002,25.22,25.04,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A +2012,10,5,15,30,101960,100800,99670,76.13,0,2.8000000000000003,2.94,2.97,2.98,2.99,3.0100000000000002,3.0100000000000002,3.02,3.0300000000000002,148.07,148.74,149.11,149.45000000000002,149.75,150.03,150.3,150.55,151.05,25.580000000000002,25.23,25.05,24.85,24.66,24.47,24.27,24.09,23.7,N/A,N/A +2012,10,5,16,30,101920,100760,99630,75.8,0,2.37,2.5100000000000002,2.5500000000000003,2.58,2.61,2.63,2.65,2.67,2.7,167.41,166.58,166.04,165.52,165.07,164.66,164.25,163.87,163.14000000000001,25.71,25.36,25.18,24.98,24.79,24.6,24.400000000000002,24.21,23.82,N/A,N/A +2012,10,5,17,30,101890,100730,99600,74.14,0,3.5100000000000002,3.65,3.65,3.63,3.62,3.6,3.5700000000000003,3.5500000000000003,3.5,154.20000000000002,154.43,154.62,154.84,155.04,155.24,155.46,155.66,156.08,25.77,25.42,25.240000000000002,25.04,24.85,24.66,24.46,24.28,23.89,N/A,N/A +2012,10,5,18,30,101840,100670,99550,75.76,0,2.43,2.5100000000000002,2.5100000000000002,2.5,2.49,2.48,2.47,2.46,2.44,137.34,138.51,139.31,140.11,140.87,141.59,142.34,143.04,144.52,25.66,25.3,25.12,24.93,24.73,24.54,24.34,24.16,23.77,N/A,N/A +2012,10,5,19,30,101820,100660,99530,76.04,0,3.0300000000000002,3.15,3.15,3.14,3.13,3.12,3.1,3.09,3.0500000000000003,152.09,152.51,152.73,152.95000000000002,153.15,153.34,153.53,153.71,154.08,25.69,25.330000000000002,25.150000000000002,24.95,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A +2012,10,5,20,30,101760,100600,99470,75.44,0,2.22,2.3000000000000003,2.3000000000000003,2.3000000000000003,2.29,2.29,2.2800000000000002,2.27,2.25,149.81,150.58,150.99,151.41,151.82,152.22,152.65,153.05,153.95000000000002,25.62,25.26,25.080000000000002,24.88,24.68,24.5,24.3,24.11,23.72,N/A,N/A +2012,10,5,21,30,101730,100570,99440,74.17,0,2.72,2.86,2.89,2.9,2.91,2.92,2.93,2.93,2.94,149.78,150.46,150.86,151.26,151.62,151.98,152.34,152.67000000000002,153.38,25.69,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A +2012,10,5,22,30,101700,100530,99410,74.47,0,2.84,2.95,2.96,2.96,2.96,2.95,2.95,2.94,2.92,147.26,147.59,147.77,147.95000000000002,148.13,148.3,148.49,148.67000000000002,149.07,25.64,25.3,25.12,24.92,24.73,24.54,24.34,24.16,23.77,N/A,N/A +2012,10,5,23,30,101670,100510,99380,73.17,0,2.86,3,3.02,3.02,3.0300000000000002,3.0300000000000002,3.02,3.02,3.0100000000000002,153.86,153.69,153.61,153.54,153.48,153.43,153.39000000000001,153.36,153.3,25.64,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A +2012,10,6,0,30,101640,100480,99350,73.72,0,3.2800000000000002,3.45,3.47,3.49,3.49,3.49,3.49,3.49,3.49,156.6,156.88,156.98,157.09,157.19,157.28,157.37,157.47,157.65,25.61,25.26,25.080000000000002,24.89,24.69,24.5,24.310000000000002,24.12,23.73,N/A,N/A +2012,10,6,1,30,101640,100480,99360,72.82000000000001,0,4.04,4.2700000000000005,4.3100000000000005,4.32,4.33,4.34,4.34,4.34,4.33,155.01,155,155.01,155.02,155.03,155.03,155.04,155.05,155.07,25.63,25.28,25.11,24.900000000000002,24.71,24.52,24.32,24.14,23.75,N/A,N/A +2012,10,6,2,30,101630,100470,99340,73.26,0,4.1,4.3100000000000005,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,4.3,159.31,159.45000000000002,159.56,159.66,159.77,159.88,160,160.11,160.34,25.57,25.22,25.04,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A +2012,10,6,3,30,101610,100450,99320,76.93,0,4.0200000000000005,4.25,4.29,4.3100000000000005,4.33,4.34,4.34,4.3500000000000005,4.3500000000000005,153.18,153.68,154.03,154.36,154.66,154.94,155.22,155.48,156.02,25.42,25.07,24.89,24.69,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A +2012,10,6,4,30,101590,100430,99310,76.83,0,4.05,4.28,4.3100000000000005,4.32,4.33,4.33,4.32,4.3100000000000005,4.29,158,158.22,158.39000000000001,158.56,158.72,158.88,159.04,159.17000000000002,159.49,25.39,25.03,24.85,24.650000000000002,24.45,24.26,24.07,23.88,23.490000000000002,N/A,N/A +2012,10,6,5,30,101600,100430,99310,77.19,0,4.03,4.28,4.32,4.3500000000000005,4.37,4.38,4.38,4.39,4.39,159.85,159.74,159.71,159.69,159.67000000000002,159.66,159.65,159.65,159.63,25.37,25.01,24.830000000000002,24.63,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A +2012,10,6,6,30,101600,100440,99310,74.48,0,3.48,3.69,3.75,3.7800000000000002,3.81,3.83,3.85,3.87,3.91,163.3,163.20000000000002,163.11,163.02,162.94,162.86,162.78,162.70000000000002,162.55,25.44,25.080000000000002,24.91,24.71,24.51,24.32,24.13,23.94,23.56,N/A,N/A +2012,10,6,7,30,101610,100450,99330,77.53,0,3.3000000000000003,3.46,3.49,3.5,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5,157.78,158.13,158.38,158.66,158.93,159.19,159.45000000000002,159.70000000000002,160.24,25.330000000000002,24.98,24.8,24.6,24.400000000000002,24.21,24.01,23.830000000000002,23.44,N/A,N/A +2012,10,6,8,30,101600,100440,99320,77.44,0,3.38,3.5100000000000002,3.5100000000000002,3.49,3.48,3.45,3.43,3.41,3.36,155.18,155.29,155.31,155.31,155.32,155.33,155.34,155.35,155.37,25.240000000000002,24.88,24.7,24.5,24.310000000000002,24.12,23.92,23.73,23.34,N/A,N/A +2012,10,6,9,30,101620,100460,99330,79.48,0,2.67,2.83,2.87,2.9,2.92,2.94,2.95,2.97,2.99,158.74,158.99,159.14000000000001,159.27,159.38,159.48,159.58,159.67000000000002,159.84,25.23,24.88,24.7,24.5,24.3,24.11,23.91,23.72,23.34,N/A,N/A +2012,10,6,10,30,101630,100470,99340,79.41,0,2.49,2.58,2.58,2.58,2.57,2.56,2.5500000000000003,2.5500000000000003,2.52,155.37,156.75,157.6,158.44,159.22,159.97,160.72,161.43,162.94,25.2,24.85,24.67,24.47,24.28,24.09,23.89,23.71,23.32,N/A,N/A +2012,10,6,11,30,101650,100490,99360,78.25,0,2.16,2.24,2.24,2.23,2.22,2.22,2.2,2.19,2.18,182.79,181.18,180.08,178.98,177.99,177.06,176.11,175.22,173.42000000000002,25.22,24.87,24.69,24.490000000000002,24.3,24.11,23.91,23.72,23.34,N/A,N/A +2012,10,6,12,30,101650,100480,99360,73.35000000000001,0,1.12,1.17,1.19,1.2,1.21,1.23,1.24,1.25,1.27,168.49,170.04,170.99,171.86,172.64000000000001,173.37,174.06,174.69,176,25.26,24.92,24.75,24.55,24.36,24.17,23.97,23.78,23.400000000000002,N/A,N/A +2012,10,6,13,30,101670,100500,99370,76.94,0,0.8200000000000001,0.8200000000000001,0.81,0.8,0.79,0.78,0.77,0.75,0.73,64.11,64.72,65.29,65.92,66.51,67.08,67.72,68.31,69.63,25.14,24.79,24.61,24.41,24.22,24.03,23.830000000000002,23.64,23.25,N/A,N/A +2012,10,6,14,30,101690,100530,99400,76.85000000000001,0,0.89,0.91,0.91,0.91,0.91,0.91,0.91,0.91,0.9,81.52,79.53,78.43,77.42,76.56,75.78,75.04,74.35000000000001,73.07000000000001,25.12,24.77,24.59,24.39,24.2,24.01,23.81,23.63,23.240000000000002,N/A,N/A +2012,10,6,15,30,101680,100510,99390,77.26,0,0.87,0.91,0.92,0.92,0.93,0.93,0.9400000000000001,0.9500000000000001,0.96,32.96,33.67,34.12,34.58,34.95,35.29,35.65,36.01,36.6,25.14,24.79,24.61,24.41,24.22,24.03,23.830000000000002,23.64,23.25,N/A,N/A +2012,10,6,16,30,101660,100490,99370,77.59,0,1.94,1.96,1.93,1.9000000000000001,1.8800000000000001,1.85,1.83,1.8,1.75,32.52,33.33,33.71,34.12,34.49,34.83,35.21,35.56,36.27,25.13,24.77,24.59,24.39,24.19,24,23.8,23.62,23.23,N/A,N/A +2012,10,6,17,30,101640,100480,99350,77.21000000000001,0,1.81,1.84,1.82,1.8,1.79,1.77,1.75,1.73,1.68,53.64,53.53,53.45,53.35,53.24,53.13,53.01,52.88,52.550000000000004,25.14,24.77,24.59,24.39,24.19,24,23.8,23.62,23.23,N/A,N/A +2012,10,6,18,30,101610,100440,99320,79.57000000000001,0,1.98,2.05,2.06,2.06,2.06,2.05,2.05,2.04,2.04,54.620000000000005,54.97,55.18,55.370000000000005,55.57,55.76,55.94,56.1,56.46,25.13,24.75,24.57,24.37,24.18,23.990000000000002,23.79,23.6,23.22,N/A,N/A +2012,10,6,19,30,101590,100420,99300,80.81,0,2,2.04,2.0300000000000002,2.0100000000000002,1.99,1.97,1.95,1.93,1.8800000000000001,73.5,73.24,73.05,72.86,72.67,72.48,72.27,72.07000000000001,71.61,25.18,24.8,24.62,24.42,24.22,24.03,23.830000000000002,23.650000000000002,23.26,N/A,N/A +2012,10,6,20,30,101540,100370,99250,81.60000000000001,0,1.84,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.8900000000000001,1.8900000000000001,1.8800000000000001,1.87,1.85,79.22,78.98,78.7,78.41,78.11,77.8,77.48,77.16,76.43,25.240000000000002,24.86,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.34,N/A,N/A +2012,10,6,21,30,101530,100370,99240,78.86,0,2.0100000000000002,2.07,2.07,2.06,2.05,2.04,2.0300000000000002,2.02,2,92.06,91.65,91.34,91,90.64,90.27,89.82000000000001,89.36,88.17,25.37,25.01,24.84,24.64,24.45,24.26,24.07,23.89,23.52,N/A,N/A +2012,10,6,22,30,101510,100350,99230,80.05,0,2.45,2.54,2.5500000000000003,2.54,2.54,2.5300000000000002,2.52,2.5100000000000002,2.48,101.69,101.43,101.26,101.07000000000001,100.87,100.67,100.43,100.2,99.59,25.38,25.03,24.85,24.650000000000002,24.46,24.28,24.080000000000002,23.900000000000002,23.52,N/A,N/A +2012,10,6,23,30,101510,100350,99220,79.36,0,2.56,2.66,2.66,2.66,2.66,2.65,2.63,2.62,2.6,99.97,99.79,99.65,99.52,99.37,99.22,99.02,98.81,98.23,25.38,25.03,24.86,24.66,24.47,24.28,24.09,23.91,23.53,N/A,N/A +2012,10,7,0,30,101510,100350,99230,78.54,0,2.77,2.9,2.92,2.92,2.92,2.92,2.92,2.91,2.91,106.2,105.95,105.78,105.59,105.38,105.15,104.87,104.60000000000001,103.77,25.39,25.04,24.87,24.67,24.48,24.29,24.1,23.92,23.55,N/A,N/A +2012,10,7,1,30,101530,100370,99240,77.05,0,2.52,2.63,2.65,2.66,2.66,2.67,2.67,2.67,2.68,96.69,96.5,96.48,96.42,96.36,96.28,96.18,96.07000000000001,95.77,25.45,25.12,24.94,24.740000000000002,24.560000000000002,24.37,24.18,23.990000000000002,23.62,N/A,N/A +2012,10,7,2,30,101530,100370,99250,75.68,0,3.0700000000000003,3.22,3.24,3.25,3.25,3.25,3.25,3.25,3.25,101.15,101.08,101,100.91,100.81,100.7,100.57000000000001,100.44,100.07000000000001,25.53,25.19,25.02,24.82,24.64,24.45,24.26,24.080000000000002,23.71,N/A,N/A +2012,10,7,3,30,101610,100430,99290,83.27,0,12.11,13.09,13.24,13.26,13.23,13.17,13.08,12.99,12.73,29.39,29.93,30.17,30.41,30.650000000000002,30.88,31.150000000000002,31.400000000000002,32.05,22.68,22.080000000000002,21.86,21.650000000000002,21.45,21.27,21.080000000000002,20.900000000000002,20.55,N/A,N/A +2012,10,7,4,30,101650,100470,99330,84.58,0,11.1,11.950000000000001,12.11,12.16,12.16,12.15,12.11,12.07,11.94,37.2,37.550000000000004,37.800000000000004,38.050000000000004,38.29,38.52,38.79,39.03,39.63,21.740000000000002,21.1,20.87,20.650000000000002,20.45,20.26,20.06,19.88,19.51,N/A,N/A +2012,10,7,5,30,101680,100490,99340,84.47,0,10.39,11.13,11.27,11.31,11.32,11.31,11.28,11.24,11.15,31.5,31.92,32.2,32.47,32.74,33,33.29,33.56,34.21,20.82,20.16,19.92,19.7,19.5,19.3,19.1,18.92,18.55,N/A,N/A +2012,10,7,6,30,101730,100540,99390,83.09,0,9.99,10.69,10.83,10.88,10.9,10.9,10.88,10.86,10.8,28.88,29.32,29.61,29.900000000000002,30.17,30.44,30.73,31,31.61,20.32,19.650000000000002,19.400000000000002,19.17,18.96,18.76,18.56,18.37,17.990000000000002,N/A,N/A +2012,10,7,7,30,101790,100600,99440,81.89,0,10.6,11.370000000000001,11.53,11.59,11.620000000000001,11.620000000000001,11.61,11.6,11.540000000000001,24.76,25.01,25.16,25.310000000000002,25.45,25.59,25.75,25.900000000000002,26.25,19.56,18.84,18.580000000000002,18.35,18.13,17.93,17.72,17.53,17.14,N/A,N/A +2012,10,7,8,30,101840,100640,99480,82.52,0,10.11,10.82,10.96,11.01,11.040000000000001,11.040000000000001,11.03,11.02,10.96,23.77,24.09,24.310000000000002,24.52,24.72,24.91,25.13,25.32,25.77,19.06,18.330000000000002,18.07,17.84,17.62,17.42,17.22,17.03,16.64,N/A,N/A +2012,10,7,9,30,101870,100670,99500,85.05,0,11.21,12.030000000000001,12.19,12.26,12.290000000000001,12.3,12.290000000000001,12.27,12.22,25.25,25.43,25.55,25.67,25.79,25.900000000000002,26.02,26.13,26.400000000000002,18.21,17.42,17.14,16.9,16.68,16.48,16.27,16.080000000000002,15.69,N/A,N/A +2012,10,7,10,30,101930,100730,99560,85.89,0,10.35,11.08,11.23,11.290000000000001,11.31,11.32,11.31,11.290000000000001,11.24,25.740000000000002,25.85,25.94,26.03,26.13,26.22,26.330000000000002,26.43,26.66,17.82,17.03,16.75,16.51,16.29,16.09,15.88,15.68,15.290000000000001,N/A,N/A +2012,10,7,11,30,101940,100740,99570,86.60000000000001,0,10.66,11.4,11.540000000000001,11.59,11.620000000000001,11.620000000000001,11.61,11.6,11.55,19.35,19.56,19.69,19.81,19.94,20.05,20.18,20.3,20.580000000000002,17.41,16.6,16.32,16.080000000000002,15.860000000000001,15.66,15.450000000000001,15.26,14.870000000000001,N/A,N/A +2012,10,7,12,30,101990,100780,99610,86.69,0,10.27,10.97,11.11,11.17,11.19,11.200000000000001,11.19,11.19,11.14,21.18,21.330000000000002,21.42,21.51,21.61,21.7,21.8,21.89,22.12,17.04,16.22,15.94,15.700000000000001,15.48,15.280000000000001,15.07,14.870000000000001,14.48,N/A,N/A +2012,10,7,13,30,102030,100820,99650,86.4,0,10.43,11.13,11.25,11.3,11.31,11.31,11.290000000000001,11.27,11.200000000000001,22.8,23,23.12,23.240000000000002,23.37,23.48,23.61,23.740000000000002,24.02,16.38,15.540000000000001,15.26,15.01,14.780000000000001,14.58,14.370000000000001,14.18,13.790000000000001,N/A,N/A +2012,10,7,14,30,102050,100840,99660,85.3,0,10.6,11.32,11.44,11.49,11.5,11.5,11.48,11.46,11.39,19.79,20.01,20.150000000000002,20.29,20.42,20.54,20.68,20.81,21.11,16.11,15.25,14.97,14.72,14.5,14.3,14.09,13.89,13.5,N/A,N/A +2012,10,7,15,30,102040,100830,99650,82.82000000000001,0,10.200000000000001,10.88,11,11.040000000000001,11.06,11.06,11.040000000000001,11.03,10.97,16.740000000000002,16.990000000000002,17.16,17.32,17.490000000000002,17.63,17.8,17.96,18.3,16.19,15.36,15.07,14.83,14.61,14.41,14.200000000000001,14,13.61,N/A,N/A +2012,10,7,16,30,102040,100830,99650,79.66,0,9.52,10.14,10.25,10.3,10.32,10.33,10.32,10.32,10.27,16.88,17.27,17.5,17.73,17.95,18.16,18.38,18.580000000000002,19.02,16.61,15.81,15.530000000000001,15.290000000000001,15.07,14.86,14.65,14.46,14.06,N/A,N/A +2012,10,7,17,30,101990,100790,99610,75.38,0,9.27,9.88,9.99,10.05,10.07,10.08,10.07,10.06,10.03,17.740000000000002,17.89,18.01,18.12,18.23,18.32,18.43,18.53,18.75,17.2,16.43,16.16,15.93,15.700000000000001,15.5,15.290000000000001,15.1,14.700000000000001,N/A,N/A +2012,10,7,18,30,101990,100780,99620,72.68,0,8.05,8.56,8.67,8.72,8.75,8.76,8.77,8.77,8.76,22.53,22.67,22.79,22.900000000000002,23,23.1,23.2,23.29,23.490000000000002,18.25,17.55,17.29,17.06,16.830000000000002,16.63,16.42,16.22,15.82,N/A,N/A +2012,10,7,19,30,101950,100760,99590,70.03,0,7.6000000000000005,8.07,8.16,8.21,8.23,8.25,8.26,8.26,8.25,22.79,22.81,22.82,22.82,22.82,22.81,22.81,22.81,22.81,19.14,18.490000000000002,18.25,18.02,17.8,17.6,17.39,17.2,16.8,N/A,N/A +2012,10,7,20,30,101910,100710,99560,67.08,0,7.29,7.74,7.84,7.9,7.930000000000001,7.95,7.96,7.97,7.97,19.580000000000002,19.830000000000002,19.92,20.02,20.11,20.2,20.3,20.39,20.57,20.02,19.400000000000002,19.16,18.94,18.72,18.52,18.31,18.12,17.72,N/A,N/A +2012,10,7,21,30,101850,100660,99510,67.04,0,7.61,8.1,8.2,8.25,8.28,8.290000000000001,8.3,8.31,8.31,11.14,11.55,11.83,12.09,12.31,12.52,12.73,12.92,13.3,20.64,20.05,19.81,19.59,19.37,19.17,18.97,18.77,18.37,N/A,N/A +2012,10,7,22,30,101880,100690,99540,65.34,0,7.29,7.75,7.84,7.88,7.91,7.92,7.930000000000001,7.930000000000001,7.92,16.5,17.11,17.44,17.75,18.05,18.34,18.63,18.89,19.45,20.94,20.37,20.14,19.91,19.7,19.51,19.3,19.11,18.71,N/A,N/A +2012,10,7,23,30,101890,100710,99550,66.77,0,7.26,7.69,7.7700000000000005,7.8,7.8100000000000005,7.8100000000000005,7.8100000000000005,7.8,7.7700000000000005,21.25,21.73,22.01,22.27,22.52,22.75,22.98,23.19,23.650000000000002,21,20.43,20.2,19.98,19.77,19.57,19.36,19.16,18.76,N/A,N/A +2012,10,8,0,30,101900,100710,99550,68.09,0,7.9,8.370000000000001,8.44,8.46,8.46,8.44,8.42,8.4,8.33,14.98,15.24,15.4,15.56,15.71,15.84,15.99,16.13,16.41,20.63,20.02,19.79,19.56,19.35,19.150000000000002,18.94,18.75,18.36,N/A,N/A +2012,10,8,1,30,101950,100750,99600,71.60000000000001,0,8.91,9.47,9.57,9.6,9.6,9.6,9.57,9.55,9.48,14.07,14.43,14.63,14.83,15.02,15.21,15.4,15.57,15.96,19.84,19.18,18.93,18.7,18.48,18.28,18.07,17.88,17.490000000000002,N/A,N/A +2012,10,8,2,30,101990,100790,99630,72.48,0,8.92,9.49,9.61,9.65,9.66,9.67,9.65,9.64,9.59,22.95,23.19,23.34,23.48,23.62,23.740000000000002,23.87,24,24.27,19.32,18.63,18.38,18.150000000000002,17.93,17.73,17.52,17.330000000000002,16.93,N/A,N/A +2012,10,8,3,30,101980,100780,99620,73.56,0,9.34,9.96,10.08,10.120000000000001,10.14,10.14,10.120000000000001,10.1,10.05,24.45,24.77,24.96,25.13,25.3,25.46,25.63,25.78,26.12,19.22,18.52,18.27,18.04,17.82,17.62,17.41,17.22,16.82,N/A,N/A +2012,10,8,4,30,101960,100760,99600,74.87,0,9.63,10.27,10.39,10.44,10.46,10.46,10.44,10.42,10.36,26.13,26.44,26.650000000000002,26.84,27.02,27.19,27.37,27.53,27.87,19.04,18.32,18.07,17.830000000000002,17.61,17.41,17.2,17.01,16.61,N/A,N/A +2012,10,8,5,30,101970,100780,99610,75.71000000000001,0,9.5,10.13,10.25,10.290000000000001,10.31,10.31,10.290000000000001,10.28,10.22,30.11,30.53,30.8,31.05,31.29,31.51,31.740000000000002,31.95,32.410000000000004,19.01,18.29,18.04,17.8,17.580000000000002,17.38,17.17,16.98,16.59,N/A,N/A +2012,10,8,6,30,102000,100800,99640,75.71000000000001,0,9.46,10.08,10.200000000000001,10.24,10.25,10.25,10.24,10.22,10.17,29.47,29.900000000000002,30.18,30.44,30.7,30.93,31.17,31.39,31.86,18.89,18.17,17.92,17.68,17.46,17.26,17.05,16.85,16.46,N/A,N/A +2012,10,8,7,30,102030,100830,99670,74.98,0,9.1,9.67,9.78,9.81,9.82,9.81,9.8,9.78,9.71,31.330000000000002,31.84,32.14,32.410000000000004,32.67,32.92,33.17,33.4,33.89,18.650000000000002,17.93,17.68,17.44,17.23,17.02,16.81,16.62,16.22,N/A,N/A +2012,10,8,8,30,102040,100840,99670,76.14,0,8.53,9.040000000000001,9.13,9.15,9.15,9.14,9.120000000000001,9.09,9.02,28.62,28.990000000000002,29.22,29.43,29.64,29.830000000000002,30.02,30.2,30.580000000000002,18.5,17.81,17.56,17.32,17.11,16.91,16.7,16.51,16.11,N/A,N/A +2012,10,8,9,30,102050,100850,99690,75.16,0,7.890000000000001,8.33,8.4,8.42,8.41,8.4,8.38,8.36,8.290000000000001,29.6,30.02,30.32,30.59,30.84,31.07,31.310000000000002,31.53,31.98,18.6,17.93,17.68,17.45,17.240000000000002,17.03,16.82,16.63,16.240000000000002,N/A,N/A +2012,10,8,10,30,102100,100890,99730,74.77,0,8.120000000000001,8.56,8.620000000000001,8.63,8.620000000000001,8.61,8.58,8.55,8.47,24.310000000000002,24.900000000000002,25.3,25.67,26.02,26.35,26.7,27.01,27.69,18.45,17.76,17.51,17.28,17.06,16.86,16.65,16.46,16.06,N/A,N/A +2012,10,8,11,30,102130,100920,99750,73.69,0,8.16,8.59,8.65,8.65,8.63,8.6,8.56,8.52,8.41,19.53,19.87,20.09,20.31,20.52,20.7,20.92,21.12,21.54,17.72,17.01,16.75,16.51,16.3,16.1,15.89,15.700000000000001,15.31,N/A,N/A +2012,10,8,12,30,102140,100930,99760,74.53,0,8.38,8.84,8.9,8.91,8.89,8.870000000000001,8.83,8.8,8.71,18.27,18.45,18.57,18.68,18.79,18.89,18.990000000000002,19.080000000000002,19.29,17.35,16.62,16.35,16.12,15.9,15.700000000000001,15.49,15.3,14.9,N/A,N/A +2012,10,8,13,30,102180,100970,99800,74.46000000000001,0,9.17,9.71,9.8,9.81,9.81,9.78,9.75,9.71,9.620000000000001,17.580000000000002,17.71,17.77,17.84,17.900000000000002,17.96,18.02,18.080000000000002,18.2,16.91,16.14,15.860000000000001,15.620000000000001,15.4,15.19,14.98,14.790000000000001,14.39,N/A,N/A +2012,10,8,14,30,102210,101000,99830,74.16,0,8.01,8.44,8.51,8.52,8.51,8.5,8.47,8.44,8.370000000000001,26.29,26.5,26.64,26.77,26.88,26.990000000000002,27.09,27.19,27.38,17.03,16.3,16.03,15.790000000000001,15.57,15.370000000000001,15.16,14.96,14.57,N/A,N/A +2012,10,8,15,30,102210,101000,99830,73.02,0,7.04,7.43,7.49,7.51,7.5200000000000005,7.5200000000000005,7.51,7.5,7.46,33.6,33.8,33.92,34.03,34.12,34.22,34.32,34.4,34.58,17.7,17.02,16.76,16.52,16.3,16.1,15.89,15.69,15.3,N/A,N/A +2012,10,8,16,30,102200,100990,99820,73.81,0,6.79,7.1000000000000005,7.12,7.11,7.08,7.0600000000000005,7.0200000000000005,6.98,6.890000000000001,19.91,20.48,20.830000000000002,21.18,21.5,21.8,22.11,22.400000000000002,23.01,17.77,17.11,16.86,16.62,16.41,16.2,16,15.8,15.41,N/A,N/A +2012,10,8,17,30,102140,100940,99770,70.78,0,6.8,7.12,7.16,7.15,7.140000000000001,7.12,7.08,7.05,6.98,16.78,17.080000000000002,17.27,17.46,17.63,17.79,17.97,18.13,18.48,17.85,17.19,16.94,16.71,16.5,16.3,16.09,15.9,15.5,N/A,N/A +2012,10,8,18,30,102140,100930,99760,68,0,5.5600000000000005,5.83,5.87,5.89,5.9,5.9,5.89,5.89,5.87,19.63,19.68,19.72,19.75,19.79,19.82,19.85,19.88,19.95,18.28,17.66,17.42,17.2,16.98,16.78,16.57,16.38,15.98,N/A,N/A +2012,10,8,19,30,102090,100890,99720,67.52,0,5.46,5.74,5.8,5.83,5.8500000000000005,5.86,5.87,5.87,5.88,17.59,17.55,17.56,17.57,17.580000000000002,17.580000000000002,17.59,17.6,17.61,19.05,18.46,18.23,18,17.78,17.580000000000002,17.37,17.18,16.78,N/A,N/A +2012,10,8,20,30,102030,100840,99680,64.81,0,4.96,5.19,5.22,5.23,5.24,5.24,5.23,5.22,5.21,16.73,16.9,17.04,17.18,17.3,17.41,17.53,17.64,17.86,19.54,18.98,18.75,18.53,18.32,18.12,17.91,17.72,17.32,N/A,N/A +2012,10,8,21,30,102010,100820,99660,64.42,0,3.72,3.89,3.92,3.94,3.96,3.96,3.97,3.97,3.98,26.25,26.71,26.97,27.22,27.45,27.66,27.87,28.060000000000002,28.46,20,19.48,19.26,19.04,18.830000000000002,18.63,18.43,18.23,17.830000000000002,N/A,N/A +2012,10,8,22,30,101990,100790,99640,64.28,0,3.45,3.6,3.62,3.63,3.64,3.65,3.65,3.65,3.66,39.02,38.68,38.37,38.06,37.79,37.54,37.28,37.04,36.58,20.45,19.95,19.73,19.51,19.3,19.11,18.900000000000002,18.71,18.31,N/A,N/A +2012,10,8,23,30,101950,100760,99600,61.92,0,4.04,4.19,4.21,4.2,4.19,4.18,4.17,4.15,4.12,50.01,49.09,48.51,47.94,47.410000000000004,46.910000000000004,46.36,45.86,44.800000000000004,20.78,20.27,20.06,19.84,19.64,19.44,19.240000000000002,19.05,18.66,N/A,N/A +2012,10,9,0,30,101920,100730,99580,61.46,0,3.7800000000000002,3.95,3.97,3.98,3.98,3.98,3.98,3.97,3.96,40.89,40.82,40.72,40.63,40.53,40.44,40.33,40.230000000000004,39.980000000000004,21.07,20.580000000000002,20.37,20.150000000000002,19.95,19.76,19.55,19.36,18.97,N/A,N/A +2012,10,9,1,30,101930,100740,99590,63.17,0,3.7600000000000002,3.92,3.94,3.94,3.93,3.93,3.92,3.91,3.89,36.94,37.35,37.61,37.87,38.1,38.31,38.54,38.75,39.19,21.29,20.8,20.6,20.38,20.17,19.98,19.77,19.59,19.19,N/A,N/A +2012,10,9,2,30,101940,100750,99600,64.84,0,4.32,4.48,4.48,4.47,4.45,4.43,4.41,4.39,4.34,49.18,49.64,49.980000000000004,50.32,50.64,50.94,51.26,51.550000000000004,52.2,21.330000000000002,20.84,20.63,20.41,20.21,20.01,19.81,19.62,19.22,N/A,N/A +2012,10,9,3,30,101910,100730,99580,68.07000000000001,0,4.72,4.91,4.93,4.93,4.91,4.9,4.88,4.86,4.82,49.51,50.34,50.89,51.43,51.92,52.38,52.86,53.300000000000004,54.19,21.32,20.81,20.6,20.38,20.18,19.98,19.78,19.59,19.19,N/A,N/A +2012,10,9,4,30,101880,100690,99540,69.57000000000001,0,4.62,4.82,4.84,4.84,4.84,4.83,4.82,4.8,4.7700000000000005,57.97,58.77,59.25,59.71,60.120000000000005,60.51,60.910000000000004,61.28,62.04,21.400000000000002,20.900000000000002,20.69,20.47,20.27,20.07,19.87,19.68,19.28,N/A,N/A +2012,10,9,5,30,101850,100670,99520,71.76,0,4.14,4.29,4.3100000000000005,4.3,4.29,4.28,4.2700000000000005,4.25,4.22,67.73,68.53,69.01,69.47,69.89,70.28,70.67,71.03,71.79,21.54,21.05,20.84,20.62,20.42,20.22,20.02,19.830000000000002,19.44,N/A,N/A +2012,10,9,6,30,101850,100670,99520,70.85000000000001,0,3.59,3.72,3.73,3.72,3.7,3.69,3.67,3.66,3.63,93.17,93.43,93.53,93.62,93.71000000000001,93.78,93.85000000000001,93.91,94.03,21.82,21.37,21.18,20.96,20.76,20.56,20.36,20.17,19.78,N/A,N/A +2012,10,9,7,30,101860,100680,99530,70.78,0,3.42,3.58,3.61,3.63,3.65,3.66,3.67,3.68,3.7,99.87,100.25,100.59,100.91,101.2,101.47,101.76,102.03,102.59,21.93,21.490000000000002,21.3,21.09,20.89,20.69,20.490000000000002,20.3,19.91,N/A,N/A +2012,10,9,8,30,101850,100670,99520,75.14,0,3.79,3.98,4.0200000000000005,4.04,4.05,4.07,4.07,4.08,4.09,105.31,106.10000000000001,106.46000000000001,106.8,107.11,107.41,107.7,107.97,108.53,22.14,21.7,21.5,21.29,21.09,20.89,20.69,20.5,20.11,N/A,N/A +2012,10,9,9,30,101840,100660,99520,73.39,0,3.71,3.86,3.87,3.87,3.87,3.86,3.85,3.85,3.8200000000000003,132.95,133.37,133.56,133.74,133.89000000000001,134.04,134.19,134.33,134.61,22.42,21.98,21.79,21.580000000000002,21.38,21.18,20.98,20.79,20.400000000000002,N/A,N/A +2012,10,9,10,30,101840,100660,99520,73.8,0,3.85,3.99,3.99,3.98,3.96,3.94,3.92,3.9,3.85,129.42000000000002,130.21,130.69,131.18,131.62,132.04,132.48,132.88,133.75,22.64,22.22,22.02,21.81,21.61,21.42,21.21,21.03,20.63,N/A,N/A +2012,10,9,11,30,101860,100680,99540,74.13,0,2.77,2.96,3.02,3.06,3.09,3.13,3.15,3.17,3.2,118.09,120.3,121.59,122.77,123.78,124.69,125.58,126.4,128.01,22.830000000000002,22.43,22.240000000000002,22.03,21.830000000000002,21.64,21.44,21.25,20.86,N/A,N/A +2012,10,9,12,30,101850,100670,99530,73.17,0,3.43,3.59,3.62,3.64,3.65,3.66,3.66,3.67,3.67,151.6,152.04,152.20000000000002,152.35,152.49,152.62,152.76,152.89000000000001,153.14000000000001,23.19,22.78,22.59,22.39,22.19,22,21.79,21.61,21.22,N/A,N/A +2012,10,9,13,30,101840,100660,99520,70.38,0,1.45,1.53,1.56,1.59,1.62,1.6400000000000001,1.67,1.69,1.75,147.9,149.36,150.29,151.13,151.86,152.52,153.16,153.75,154.86,23.41,23.04,22.85,22.650000000000002,22.46,22.27,22.07,21.89,21.5,N/A,N/A +2012,10,9,14,30,101820,100640,99510,74.08,0,3.24,3.37,3.38,3.37,3.35,3.34,3.33,3.31,3.2800000000000002,126.29,127.11,127.52,127.89,128.23,128.54,128.84,129.1,129.62,23.580000000000002,23.19,23,22.8,22.6,22.41,22.21,22.03,21.64,N/A,N/A +2012,10,9,15,30,101850,100680,99540,79.52,0,4,4.14,4.15,4.13,4.11,4.09,4.0600000000000005,4.03,3.98,133.97,134.72,135.21,135.71,136.19,136.65,137.13,137.57,138.55,23.330000000000002,22.92,22.740000000000002,22.53,22.34,22.150000000000002,21.95,21.76,21.38,N/A,N/A +2012,10,9,16,30,101810,100640,99500,79.39,0,3.22,3.36,3.39,3.4,3.41,3.42,3.42,3.43,3.44,117.07000000000001,118.86,119.99000000000001,121.08,122.07000000000001,123.02,123.97,124.84,126.67,23.5,23.11,22.92,22.72,22.52,22.330000000000002,22.13,21.94,21.56,N/A,N/A +2012,10,9,17,30,101780,100610,99470,76.60000000000001,0,3.63,3.8000000000000003,3.83,3.85,3.86,3.87,3.87,3.88,3.88,146.27,147.13,147.72,148.27,148.76,149.24,149.71,150.14000000000001,151.01,23.830000000000002,23.45,23.26,23.06,22.86,22.67,22.47,22.29,21.900000000000002,N/A,N/A +2012,10,9,18,30,101740,100570,99440,79.74,0,4.1,4.33,4.37,4.39,4.4,4.41,4.41,4.41,4.41,140.44,141.12,141.49,141.82,142.11,142.36,142.61,142.85,143.29,23.95,23.56,23.37,23.16,22.97,22.77,22.57,22.39,22,N/A,N/A +2012,10,9,19,30,101720,100550,99420,79.58,0,5.42,5.76,5.82,5.8500000000000005,5.87,5.88,5.88,5.88,5.87,139.6,140.11,140.42000000000002,140.72,140.98,141.23,141.49,141.73,142.24,24.07,23.67,23.48,23.27,23.080000000000002,22.89,22.69,22.5,22.11,N/A,N/A +2012,10,9,20,30,101670,100500,99370,79.24,0,5.08,5.36,5.41,5.43,5.44,5.44,5.43,5.43,5.41,145.27,145.68,145.94,146.18,146.4,146.61,146.81,147.01,147.41,24.2,23.81,23.62,23.42,23.22,23.03,22.830000000000002,22.650000000000002,22.26,N/A,N/A +2012,10,9,21,30,101630,100470,99330,77.77,0,4.92,5.18,5.21,5.21,5.19,5.18,5.15,5.13,5.08,165.56,165.37,165.28,165.20000000000002,165.12,165.05,164.99,164.94,164.82,24.400000000000002,24.03,23.85,23.64,23.45,23.26,23.06,22.87,22.48,N/A,N/A +2012,10,9,22,30,101610,100450,99320,79.83,0,5.48,5.86,5.95,6,6.03,6.05,6.07,6.08,6.09,151.23,151.39000000000001,151.48,151.57,151.66,151.74,151.82,151.91,152.08,24.38,24,23.82,23.61,23.42,23.23,23.03,22.84,22.45,N/A,N/A +2012,10,9,23,30,101580,100420,99290,78.19,0,4.29,4.57,4.64,4.67,4.7,4.72,4.74,4.75,4.7700000000000005,165.07,165.33,165.61,165.88,166.13,166.38,166.62,166.85,167.34,24.44,24.080000000000002,23.89,23.69,23.5,23.31,23.11,22.92,22.53,N/A,N/A +2012,10,10,0,30,101570,100410,99280,79.15,0,5.38,5.71,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8,5.8,5.76,161.03,161.35,161.72,162.11,162.48,162.85,163.25,163.62,164.45000000000002,24.6,24.23,24.060000000000002,23.85,23.66,23.47,23.27,23.09,22.7,N/A,N/A +2012,10,10,1,30,101580,100410,99280,79.73,0.4,6.05,6.49,6.58,6.63,6.65,6.66,6.67,6.67,6.65,166.62,166.65,166.81,167.01,167.22,167.43,167.67000000000002,167.9,168.46,24.66,24.29,24.11,23.91,23.71,23.53,23.330000000000002,23.150000000000002,22.77,N/A,N/A +2012,10,10,2,30,101600,100440,99310,76.67,0,6.45,6.890000000000001,6.98,7.01,7.03,7.04,7.03,7.03,7.01,171.49,171.36,171.33,171.32,171.3,171.28,171.27,171.25,171.27,24.91,24.55,24.38,24.18,23.98,23.79,23.6,23.41,23.03,N/A,N/A +2012,10,10,3,30,101590,100430,99300,77.16,0,7.32,7.8100000000000005,7.87,7.87,7.84,7.79,7.74,7.68,7.5600000000000005,177.81,177.98,178.02,178.03,178.03,178.02,178,177.97,177.87,25.03,24.68,24.51,24.310000000000002,24.12,23.93,23.740000000000002,23.55,23.17,N/A,N/A +2012,10,10,4,30,101590,100430,99300,79.68,0,6.3500000000000005,6.88,7.01,7.08,7.13,7.17,7.19,7.21,7.23,173.51,173.94,174.11,174.24,174.34,174.41,174.47,174.52,174.59,25,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A +2012,10,10,5,30,101610,100450,99320,77.99,0,7,7.54,7.68,7.73,7.7700000000000005,7.79,7.8,7.8,7.79,177.6,178.25,178.48,178.67000000000002,178.81,178.93,179.04,179.14000000000001,179.3,25.19,24.86,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A +2012,10,10,6,30,101630,100470,99340,77.65,0,6.54,7.09,7.21,7.26,7.29,7.3100000000000005,7.3100000000000005,7.3,7.2700000000000005,177.17000000000002,177.36,177.4,177.42000000000002,177.43,177.42000000000002,177.4,177.39000000000001,177.34,25.28,24.94,24.76,24.560000000000002,24.36,24.17,23.97,23.78,23.39,N/A,N/A +2012,10,10,7,30,101670,100510,99380,75.66,0,5.75,6.2,6.3100000000000005,6.38,6.42,6.46,6.48,6.51,6.54,176.19,176.73,177.03,177.28,177.48,177.68,177.85,178.02,178.34,25.400000000000002,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.54,N/A,N/A +2012,10,10,8,30,101710,100550,99430,76.63,0,4.87,5.21,5.28,5.32,5.34,5.36,5.37,5.37,5.38,180.11,180.75,181.11,181.43,181.70000000000002,181.96,182.18,182.38,182.76,25.48,25.150000000000002,24.98,24.78,24.59,24.39,24.2,24.01,23.62,N/A,N/A +2012,10,10,9,30,101760,100590,99470,73.81,0,4.14,4.5,4.61,4.69,4.76,4.82,4.88,4.93,5.0200000000000005,170.66,171.85,172.52,173.06,173.52,173.93,174.3,174.64000000000001,175.3,25.490000000000002,25.18,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,10,10,30,101790,100630,99500,72.86,0,3.3200000000000003,3.56,3.63,3.67,3.71,3.74,3.7600000000000002,3.79,3.83,178.53,178.65,178.68,178.64000000000001,178.57,178.48,178.37,178.27,177.99,25.59,25.27,25.1,24.900000000000002,24.72,24.53,24.330000000000002,24.150000000000002,23.76,N/A,N/A +2012,10,10,11,30,101820,100660,99530,75,0,2.59,2.7600000000000002,2.8000000000000003,2.83,2.85,2.86,2.88,2.89,2.91,155.73,157.36,158.31,159.21,160,160.76,161.49,162.17000000000002,163.53,25.560000000000002,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A +2012,10,10,12,30,101870,100710,99580,75.73,0,3.67,3.89,3.92,3.93,3.93,3.92,3.92,3.91,3.89,157.16,157.64000000000001,157.91,158.15,158.36,158.56,158.75,158.93,159.28,25.580000000000002,25.26,25.09,24.900000000000002,24.71,24.51,24.32,24.13,23.740000000000002,N/A,N/A +2012,10,10,13,30,101920,100750,99630,76.60000000000001,0,3.2800000000000002,3.49,3.5300000000000002,3.56,3.58,3.6,3.61,3.62,3.64,136.17000000000002,137.22,137.82,138.37,138.85,139.29,139.73,140.13,140.89000000000001,25.51,25.2,25.03,24.830000000000002,24.64,24.45,24.25,24.07,23.68,N/A,N/A +2012,10,10,14,30,101950,100780,99660,76.69,0,3.48,3.67,3.7,3.72,3.72,3.73,3.72,3.72,3.71,121.18,121.62,121.9,122.19,122.46000000000001,122.71000000000001,122.97,123.22,123.76,25.47,25.150000000000002,24.98,24.79,24.6,24.41,24.21,24.03,23.64,N/A,N/A +2012,10,10,15,30,101960,100800,99670,74.5,0,3.68,3.91,3.96,3.98,4,4.0200000000000005,4.03,4.03,4.05,131.68,132.15,132.4,132.65,132.88,133.11,133.35,133.56,134.05,25.54,25.22,25.05,24.85,24.66,24.47,24.28,24.09,23.71,N/A,N/A +2012,10,10,16,30,101950,100780,99650,76.84,0,3.74,3.96,4,4.0200000000000005,4.03,4.04,4.05,4.05,4.05,117.19,117.4,117.61,117.81,117.99000000000001,118.17,118.35000000000001,118.52,118.88,25.5,25.17,25,24.8,24.61,24.42,24.22,24.03,23.650000000000002,N/A,N/A +2012,10,10,17,30,101920,100760,99630,80.72,0,4.38,4.65,4.71,4.73,4.75,4.75,4.75,4.75,4.75,123.5,123.91,124.12,124.32000000000001,124.48,124.64,124.8,124.95,125.23,25.42,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.55,N/A,N/A +2012,10,10,18,30,101890,100730,99600,79.86,0,3.92,4.15,4.2,4.21,4.23,4.24,4.24,4.24,4.24,110.24000000000001,110.44,110.58,110.71000000000001,110.82000000000001,110.92,111.01,111.11,111.3,25.43,25.09,24.91,24.71,24.52,24.330000000000002,24.13,23.95,23.56,N/A,N/A +2012,10,10,19,30,101880,100710,99580,80.74,0,4.8500000000000005,5.16,5.23,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,5.32,108.34,108.5,108.62,108.74000000000001,108.83,108.93,109.02,109.10000000000001,109.29,25.45,25.1,24.93,24.73,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A +2012,10,10,20,30,101850,100690,99560,80.89,0,5.14,5.51,5.58,5.62,5.64,5.65,5.66,5.66,5.66,108.12,108.21000000000001,108.25,108.26,108.27,108.27,108.27,108.27,108.25,25.46,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A +2012,10,10,21,30,101870,100700,99570,81.39,0,5.78,6.21,6.3100000000000005,6.3500000000000005,6.38,6.4,6.41,6.41,6.42,110.78,111.01,111.19,111.37,111.54,111.7,111.87,112.04,112.39,25.42,25.080000000000002,24.91,24.71,24.52,24.330000000000002,24.13,23.95,23.56,N/A,N/A +2012,10,10,22,30,101880,100710,99580,82,0,6.36,6.8500000000000005,6.96,7.0200000000000005,7.05,7.07,7.07,7.07,7.07,118.19,118.33,118.4,118.47,118.52,118.58,118.62,118.67,118.75,25.400000000000002,25.060000000000002,24.89,24.68,24.5,24.3,24.11,23.92,23.54,N/A,N/A +2012,10,10,23,30,101880,100720,99590,84.43,0,6.41,6.91,7.0200000000000005,7.07,7.1000000000000005,7.12,7.12,7.12,7.11,122.73,122.91,123.02,123.14,123.26,123.38000000000001,123.51,123.62,123.89,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24.01,23.82,23.44,N/A,N/A +2012,10,11,0,30,101890,100730,99600,81.83,0,6.640000000000001,7.2,7.33,7.4,7.44,7.47,7.5,7.51,7.54,133.53,133.6,133.67000000000002,133.76,133.83,133.9,133.98,134.05,134.2,25.39,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A +2012,10,11,1,30,101880,100710,99590,81.76,0,6.24,6.72,6.84,6.890000000000001,6.93,6.95,6.96,6.97,6.98,122.98,123,123.06,123.10000000000001,123.12,123.14,123.15,123.16,123.16,25.37,25.04,24.86,24.67,24.48,24.29,24.09,23.91,23.53,N/A,N/A +2012,10,11,2,30,101940,100770,99650,81.45,0,6.09,6.6000000000000005,6.73,6.8,6.8500000000000005,6.88,6.91,6.93,6.96,137.63,137.76,137.83,137.9,137.97,138.05,138.12,138.19,138.34,25.42,25.09,24.92,24.72,24.52,24.330000000000002,24.14,23.95,23.57,N/A,N/A +2012,10,11,3,30,101930,100770,99640,78.65,0,5.8500000000000005,6.36,6.49,6.57,6.63,6.68,6.72,6.76,6.84,131.05,131.16,131.24,131.32,131.41,131.49,131.57,131.65,131.85,25.52,25.2,25.03,24.830000000000002,24.650000000000002,24.46,24.26,24.080000000000002,23.71,N/A,N/A +2012,10,11,4,30,101890,100720,99600,79.17,0,5.86,6.3500000000000005,6.47,6.54,6.6000000000000005,6.640000000000001,6.67,6.71,6.7700000000000005,130.19,130.27,130.32,130.4,130.46,130.53,130.61,130.69,130.87,25.47,25.14,24.97,24.77,24.580000000000002,24.400000000000002,24.2,24.02,23.64,N/A,N/A +2012,10,11,5,30,101900,100740,99610,78.49,0,6.01,6.51,6.63,6.71,6.76,6.8100000000000005,6.8500000000000005,6.890000000000001,6.97,131.4,131.58,131.72,131.87,132,132.14000000000001,132.3,132.44,132.77,25.54,25.22,25.05,24.86,24.67,24.490000000000002,24.3,24.12,23.76,N/A,N/A +2012,10,11,6,30,101910,100750,99620,78.53,0,6.92,7.49,7.61,7.67,7.7,7.72,7.73,7.73,7.72,133.45,133.74,133.88,134.01,134.12,134.23,134.32,134.41,134.57,25.66,25.36,25.2,25.01,24.82,24.64,24.45,24.27,23.900000000000002,N/A,N/A +2012,10,11,7,30,101950,100790,99660,80.42,0,7.12,7.78,7.930000000000001,8.02,8.08,8.11,8.13,8.14,8.15,135.97,136.06,136.14000000000001,136.21,136.28,136.33,136.39000000000001,136.44,136.55,25.61,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A +2012,10,11,8,30,101960,100800,99670,80.58,0,6.97,7.68,7.8500000000000005,7.96,8.040000000000001,8.09,8.120000000000001,8.15,8.18,131.87,131.94,132.03,132.12,132.2,132.27,132.34,132.41,132.53,25.64,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.39,24.2,23.81,N/A,N/A +2012,10,11,9,30,101970,100810,99680,78.62,0,6.63,7.29,7.44,7.53,7.59,7.63,7.66,7.68,7.7,129.81,129.77,129.82,129.9,129.97,130.04,130.12,130.2,130.37,25.73,25.42,25.25,25.060000000000002,24.87,24.68,24.48,24.3,23.91,N/A,N/A +2012,10,11,10,30,101990,100820,99690,79.46000000000001,0,6.54,7.0600000000000005,7.17,7.21,7.25,7.26,7.28,7.28,7.3,130.5,130.93,131.18,131.45,131.72,132.01,132.32,132.63,133.34,25.71,25.42,25.26,25.07,24.89,24.71,24.52,24.34,23.98,N/A,N/A +2012,10,11,11,30,102010,100850,99720,78.05,0,5.97,6.5200000000000005,6.66,6.74,6.8100000000000005,6.86,6.92,6.97,7.08,134.46,134.81,135.04,135.28,135.51,135.73,135.98,136.22,136.76,25.8,25.51,25.35,25.150000000000002,24.97,24.79,24.6,24.43,24.060000000000002,N/A,N/A +2012,10,11,12,30,102040,100880,99750,79.42,0,6.79,7.3500000000000005,7.5,7.57,7.62,7.66,7.68,7.71,7.75,128.39000000000001,128.64000000000001,128.81,128.98,129.14000000000001,129.29,129.45,129.6,129.92000000000002,25.73,25.43,25.27,25.07,24.89,24.7,24.51,24.330000000000002,23.96,N/A,N/A +2012,10,11,13,30,102050,100890,99760,79.22,0,6.7,7.25,7.38,7.45,7.49,7.51,7.53,7.54,7.5600000000000005,124.97,125.2,125.35000000000001,125.51,125.66,125.81,125.95,126.09,126.4,25.71,25.41,25.25,25.05,24.86,24.68,24.490000000000002,24.3,23.93,N/A,N/A +2012,10,11,14,30,102090,100920,99790,80.43,0,6.67,7.2700000000000005,7.42,7.5,7.55,7.58,7.6000000000000005,7.62,7.63,123.3,123.48,123.57000000000001,123.67,123.75,123.83,123.9,123.97,124.12,25.67,25.36,25.2,25,24.810000000000002,24.62,24.43,24.240000000000002,23.85,N/A,N/A +2012,10,11,15,30,102090,100930,99800,79.64,0,6.82,7.44,7.59,7.68,7.73,7.7700000000000005,7.8,7.82,7.84,120.07000000000001,120.28,120.37,120.46000000000001,120.54,120.62,120.69,120.76,120.89,25.69,25.38,25.21,25.01,24.830000000000002,24.64,24.44,24.26,23.87,N/A,N/A +2012,10,11,16,30,102090,100930,99800,80.41,0,6.73,7.34,7.48,7.5600000000000005,7.61,7.65,7.68,7.69,7.71,119.86,120.04,120.15,120.25,120.34,120.42,120.51,120.58,120.73,25.67,25.36,25.19,24.990000000000002,24.8,24.61,24.42,24.23,23.85,N/A,N/A +2012,10,11,17,30,102090,100930,99800,80.15,0,6.97,7.61,7.75,7.84,7.9,7.930000000000001,7.96,7.98,8.01,122.58,122.7,122.77,122.83,122.9,122.96000000000001,123.02,123.08,123.2,25.7,25.38,25.21,25.01,24.82,24.63,24.44,24.25,23.87,N/A,N/A +2012,10,11,18,30,102110,100940,99810,79.86,0,7.13,7.78,7.930000000000001,8.01,8.07,8.11,8.13,8.15,8.17,122.78,122.94,123,123.07000000000001,123.13000000000001,123.2,123.27,123.34,123.48,25.71,25.39,25.22,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.88,N/A,N/A +2012,10,11,19,30,102070,100910,99780,80.91,0,6.99,7.61,7.75,7.83,7.88,7.92,7.94,7.96,7.97,117.22,117.52,117.66,117.78,117.9,118,118.11,118.2,118.39,25.64,25.32,25.150000000000002,24.95,24.76,24.57,24.37,24.19,23.81,N/A,N/A +2012,10,11,20,30,102050,100880,99750,80.06,0,6.73,7.34,7.48,7.57,7.62,7.65,7.68,7.7,7.72,119.89,119.99000000000001,120.06,120.14,120.23,120.31,120.4,120.48,120.66,25.650000000000002,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.38,24.2,23.81,N/A,N/A +2012,10,11,21,30,102040,100870,99740,78.41,0,6.6000000000000005,7.18,7.32,7.390000000000001,7.43,7.47,7.49,7.5,7.5200000000000005,122.18,122.28,122.36,122.43,122.5,122.56,122.63,122.7,122.84,25.650000000000002,25.34,25.17,24.97,24.78,24.59,24.400000000000002,24.21,23.830000000000002,N/A,N/A +2012,10,11,22,30,102030,100860,99740,80.15,0,6.49,7.0600000000000005,7.2,7.2700000000000005,7.32,7.36,7.390000000000001,7.4,7.42,122.59,122.66,122.7,122.74000000000001,122.78,122.81,122.84,122.87,122.94,25.61,25.29,25.12,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A +2012,10,11,23,30,102010,100850,99720,82.60000000000001,0,7.34,8.01,8.17,8.26,8.32,8.36,8.39,8.41,8.44,127.03,127.14,127.19,127.23,127.28,127.31,127.36,127.4,127.48,25.51,25.19,25.01,24.82,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,12,0,30,101990,100830,99700,81.69,0,7.05,7.66,7.8,7.86,7.91,7.930000000000001,7.94,7.95,7.94,121.09,121.35000000000001,121.62,121.9,122.17,122.42,122.69,122.94,123.49000000000001,25.63,25.3,25.13,24.94,24.75,24.560000000000002,24.37,24.19,23.81,N/A,N/A +2012,10,12,1,30,102000,100840,99710,81.22,0,7.12,7.8100000000000005,7.96,8.040000000000001,8.09,8.11,8.13,8.13,8.120000000000001,120.05,120.48,120.71000000000001,120.95,121.16,121.36,121.58,121.79,122.2,25.75,25.44,25.28,25.080000000000002,24.900000000000002,24.71,24.52,24.34,23.96,N/A,N/A +2012,10,12,2,30,102020,100850,99720,83.94,0,7.34,7.97,8.11,8.18,8.22,8.24,8.24,8.24,8.22,121.29,121.64,121.84,122.03,122.22,122.4,122.58,122.76,123.13000000000001,25.41,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.55,N/A,N/A +2012,10,12,3,30,102030,100860,99730,83.44,0,6.890000000000001,7.49,7.640000000000001,7.72,7.78,7.82,7.84,7.86,7.890000000000001,129.13,129.41,129.56,129.71,129.85,129.98,130.1,130.21,130.42000000000002,25.580000000000002,25.25,25.080000000000002,24.87,24.68,24.490000000000002,24.3,24.11,23.72,N/A,N/A +2012,10,12,4,30,102020,100850,99720,84.89,0,7.16,7.75,7.88,7.94,7.98,8.01,8.01,8.02,8.01,120.11,120.45,120.72,120.99000000000001,121.24000000000001,121.49000000000001,121.73,121.97,122.44,25.47,25.14,24.97,24.78,24.59,24.400000000000002,24.2,24.02,23.64,N/A,N/A +2012,10,12,5,30,102000,100840,99710,82.82000000000001,0,7.48,8.17,8.32,8.39,8.44,8.46,8.46,8.46,8.44,121.55,121.73,121.86,122.01,122.17,122.32000000000001,122.48,122.64,123,25.63,25.32,25.150000000000002,24.95,24.76,24.57,24.38,24.2,23.81,N/A,N/A +2012,10,12,6,30,102010,100850,99720,84.32000000000001,0,7.29,7.92,8.05,8.11,8.15,8.17,8.18,8.18,8.17,122.48,122.84,123.05,123.25,123.44,123.61,123.8,123.97,124.33,25.59,25.26,25.09,24.89,24.7,24.51,24.32,24.14,23.75,N/A,N/A +2012,10,12,7,30,102030,100870,99740,83.9,0,7.28,7.98,8.15,8.25,8.32,8.370000000000001,8.4,8.42,8.45,121.67,122.22,122.5,122.76,122.99000000000001,123.21000000000001,123.42,123.61,124,25.78,25.46,25.29,25.09,24.900000000000002,24.72,24.52,24.330000000000002,23.95,N/A,N/A +2012,10,12,8,30,102030,100870,99740,81.48,0,6.51,7.0600000000000005,7.19,7.25,7.28,7.3100000000000005,7.32,7.32,7.32,123.2,123.61,123.87,124.14,124.39,124.63000000000001,124.88000000000001,125.11,125.62,25.830000000000002,25.52,25.36,25.16,24.98,24.79,24.6,24.42,24.04,N/A,N/A +2012,10,12,9,30,102040,100880,99750,84.73,0,6.51,7.07,7.2,7.28,7.33,7.37,7.390000000000001,7.41,7.44,118.67,118.95,119.18,119.43,119.67,119.9,120.14,120.38,120.89,25.61,25.28,25.11,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A +2012,10,12,10,30,102050,100890,99760,81.27,0,6.05,6.57,6.7,6.7700000000000005,6.82,6.86,6.88,6.91,6.94,126.23,126.4,126.52,126.64,126.76,126.87,126.99000000000001,127.11,127.36,25.77,25.45,25.28,25.080000000000002,24.89,24.71,24.51,24.32,23.94,N/A,N/A +2012,10,12,11,30,102070,100900,99780,84.48,0,4.63,4.97,5.05,5.1000000000000005,5.14,5.16,5.19,5.2,5.24,121.79,121.66,121.62,121.58,121.54,121.5,121.47,121.45,121.44,25.59,25.26,25.09,24.900000000000002,24.71,24.52,24.32,24.14,23.76,N/A,N/A +2012,10,12,12,30,102100,100930,99800,85.24,0,5.46,5.8500000000000005,5.93,5.97,5.98,5.99,6,6,5.98,126.37,126.99000000000001,127.36,127.73,128.08,128.42000000000002,128.78,129.12,129.89000000000001,25.55,25.22,25.05,24.86,24.67,24.48,24.29,24.11,23.73,N/A,N/A +2012,10,12,13,30,102110,100950,99820,82.02,0,5.07,5.45,5.54,5.58,5.61,5.63,5.64,5.66,5.67,127.09,127.39,127.59,127.8,128.01,128.22,128.45,128.66,129.17000000000002,25.77,25.46,25.29,25.1,24.91,24.72,24.53,24.35,23.97,N/A,N/A +2012,10,12,14,30,102140,100970,99850,84.06,0,5.09,5.49,5.57,5.62,5.64,5.66,5.67,5.68,5.68,110.06,110.28,110.42,110.56,110.69,110.83,110.98,111.12,111.44,25.67,25.34,25.17,24.97,24.79,24.6,24.400000000000002,24.22,23.84,N/A,N/A +2012,10,12,15,30,102140,100970,99840,83.29,0,4.8,5.12,5.18,5.2,5.2,5.2,5.19,5.18,5.15,103.53,103.91,104.18,104.5,104.82000000000001,105.15,105.54,105.91,106.84,25.73,25.400000000000002,25.23,25.04,24.85,24.66,24.47,24.29,23.91,N/A,N/A +2012,10,12,16,30,102150,100980,99850,87.86,29.3,5.12,5.57,5.72,5.84,5.93,6.01,6.09,6.15,6.29,119.01,118.12,117.51,116.98,116.55,116.19,115.94,115.73,115.61,25.400000000000002,25.07,24.91,24.73,24.55,24.38,24.2,24.03,23.67,N/A,N/A +2012,10,12,17,30,102130,100960,99830,84.94,0,3.24,3.66,3.87,4.13,4.42,4.75,5.0200000000000005,5.26,5.64,105.24000000000001,109.77,112.55,115.46000000000001,118.05,120.51,122.42,124.04,126.03,25.5,25.22,25.080000000000002,24.93,24.79,24.66,24.51,24.36,24.02,N/A,N/A +2012,10,12,18,30,102150,100980,99850,81.85000000000001,0,6.45,7.01,7.13,7.19,7.23,7.25,7.26,7.2700000000000005,7.2700000000000005,123.51,123.37,123.33,123.31,123.31,123.32000000000001,123.33,123.35000000000001,123.39,26.05,25.740000000000002,25.580000000000002,25.38,25.19,25,24.8,24.62,24.240000000000002,N/A,N/A +2012,10,12,19,30,102130,100960,99840,81.16,0,5.7700000000000005,6.22,6.32,6.36,6.390000000000001,6.41,6.41,6.42,6.41,106.45,106.72,106.88,107.05,107.22,107.38,107.54,107.69,108,26.01,25.7,25.53,25.330000000000002,25.14,24.95,24.76,24.57,24.19,N/A,N/A +2012,10,12,20,30,102090,100930,99800,82.36,0,6.05,6.55,6.66,6.71,6.75,6.7700000000000005,6.78,6.79,6.79,108,108.34,108.57000000000001,108.81,109.02,109.23,109.45,109.66,110.11,25.96,25.64,25.47,25.27,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A +2012,10,12,21,30,102070,100910,99780,84.63,0,6.55,7.11,7.22,7.28,7.3100000000000005,7.33,7.33,7.33,7.3100000000000005,104.04,104.46000000000001,104.68,104.88,105.06,105.21000000000001,105.36,105.49000000000001,105.76,25.91,25.59,25.43,25.23,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A +2012,10,12,22,30,102060,100890,99770,85.44,0,7.25,7.91,8.05,8.13,8.17,8.19,8.2,8.21,8.19,105.14,105.3,105.36,105.41,105.46000000000001,105.49000000000001,105.54,105.58,105.66,25.8,25.48,25.310000000000002,25.12,24.92,24.73,24.54,24.36,23.97,N/A,N/A +2012,10,12,23,30,102070,100910,99780,85.76,0,7.5200000000000005,8.19,8.34,8.41,8.45,8.48,8.49,8.49,8.48,106.77,106.79,106.85000000000001,106.91,106.98,107.04,107.13,107.2,107.38,25.72,25.39,25.21,25.01,24.830000000000002,24.64,24.44,24.26,23.88,N/A,N/A +2012,10,13,0,30,102050,100880,99760,87.65,0,7.96,8.69,8.870000000000001,8.97,9.03,9.07,9.1,9.13,9.16,99.7,100.07000000000001,100.28,100.51,100.71000000000001,100.92,101.14,101.36,101.82000000000001,25.66,25.330000000000002,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.2,23.82,N/A,N/A +2012,10,13,1,30,102030,100870,99740,87.26,0,8.88,9.790000000000001,10,10.120000000000001,10.200000000000001,10.26,10.290000000000001,10.32,10.34,112.04,112.46000000000001,112.61,112.75,112.87,112.97,113.07000000000001,113.17,113.38,25.830000000000002,25.5,25.330000000000002,25.13,24.93,24.75,24.55,24.37,23.98,N/A,N/A +2012,10,13,2,30,102030,100870,99750,87.47,0,8.21,9.040000000000001,9.23,9.34,9.4,9.44,9.450000000000001,9.46,9.44,120.32000000000001,120.68,120.85000000000001,121,121.14,121.27,121.4,121.52,121.8,25.94,25.63,25.46,25.26,25.080000000000002,24.89,24.7,24.52,24.14,N/A,N/A +2012,10,13,3,30,102010,100850,99730,87.12,0,8.26,8.99,9.15,9.21,9.26,9.28,9.290000000000001,9.31,9.370000000000001,122.13,122.04,122.06,122.13,122.24000000000001,122.37,122.59,122.83,123.8,25.810000000000002,25.5,25.330000000000002,25.150000000000002,24.97,24.79,24.62,24.45,24.14,N/A,N/A +2012,10,13,4,30,101990,100830,99700,89.56,6.2,7.8500000000000005,8.67,8.91,9.07,9.19,9.290000000000001,9.370000000000001,9.44,9.55,125.71000000000001,126.2,126.43,126.69,126.93,127.17,127.41,127.64,128.07,25.72,25.400000000000002,25.240000000000002,25.05,24.87,24.69,24.5,24.32,23.96,N/A,N/A +2012,10,13,5,30,101960,100800,99670,87.89,0,8.9,9.76,9.950000000000001,10.05,10.11,10.15,10.18,10.200000000000001,10.24,125.09,125.31,125.47,125.66,125.86,126.09,126.36,126.63000000000001,127.38000000000001,25.93,25.62,25.46,25.26,25.080000000000002,24.89,24.7,24.53,24.16,N/A,N/A +2012,10,13,6,30,101960,100800,99680,87.82000000000001,0,8.44,9.290000000000001,9.5,9.620000000000001,9.700000000000001,9.75,9.790000000000001,9.82,9.85,134.45,134.69,134.85,135.03,135.19,135.36,135.54,135.71,136.1,26.03,25.73,25.560000000000002,25.36,25.18,24.990000000000002,24.79,24.61,24.23,N/A,N/A +2012,10,13,7,30,101950,100790,99670,85.53,0,7.78,8.57,8.76,8.870000000000001,8.950000000000001,9.01,9.05,9.09,9.15,149.28,149.19,149.18,149.17000000000002,149.17000000000002,149.16,149.17000000000002,149.19,149.27,26.38,26.11,25.95,25.76,25.580000000000002,25.400000000000002,25.21,25.03,24.66,N/A,N/A +2012,10,13,8,30,101920,100760,99630,83.04,0,8.4,9.27,9.47,9.6,9.68,9.73,9.77,9.8,9.82,155.88,156.02,156.11,156.20000000000002,156.28,156.36,156.44,156.52,156.68,26.5,26.240000000000002,26.09,25.900000000000002,25.72,25.54,25.35,25.17,24.8,N/A,N/A +2012,10,13,9,30,101920,100760,99640,84.8,0,7.87,8.75,8.99,9.15,9.27,9.36,9.44,9.5,9.59,159.69,160,160.1,160.20000000000002,160.27,160.34,160.39000000000001,160.44,160.53,26.5,26.240000000000002,26.09,25.91,25.73,25.54,25.35,25.17,24.8,N/A,N/A +2012,10,13,10,30,101900,100740,99620,81.91,0,9.040000000000001,10.02,10.27,10.43,10.540000000000001,10.63,10.69,10.74,10.82,161.13,161.38,161.54,161.70000000000002,161.86,162.02,162.18,162.33,162.67000000000002,26.63,26.39,26.240000000000002,26.060000000000002,25.88,25.7,25.52,25.34,24.98,N/A,N/A +2012,10,13,11,30,101900,100740,99620,83.26,0,8.78,9.76,10.03,10.200000000000001,10.32,10.42,10.49,10.55,10.64,164.42000000000002,164.46,164.48,164.49,164.5,164.5,164.5,164.5,164.49,26.59,26.34,26.2,26.01,25.830000000000002,25.650000000000002,25.47,25.29,24.92,N/A,N/A +2012,10,13,12,30,101880,100720,99600,84.76,0,9.41,10.46,10.75,10.96,11.11,11.22,11.31,11.38,11.49,165.88,165.16,164.91,164.69,164.51,164.36,164.23,164.12,163.95000000000002,26.580000000000002,26.32,26.16,25.97,25.79,25.61,25.41,25.23,24.85,N/A,N/A +2012,10,13,13,30,101910,100750,99630,84.06,0,10.08,11.21,11.51,11.700000000000001,11.83,11.92,11.99,12.040000000000001,12.1,161.44,161.32,161.33,161.36,161.39000000000001,161.42000000000002,161.46,161.5,161.59,26.48,26.23,26.07,25.88,25.7,25.52,25.330000000000002,25.150000000000002,24.77,N/A,N/A +2012,10,13,14,30,101910,100750,99630,80.69,0,9.57,10.620000000000001,10.870000000000001,11.03,11.13,11.21,11.26,11.3,11.36,162.33,162.42000000000002,162.45000000000002,162.47,162.47,162.47,162.47,162.47,162.45000000000002,26.46,26.2,26.04,25.85,25.67,25.48,25.29,25.11,24.73,N/A,N/A +2012,10,13,15,30,101920,100760,99640,78.56,0,9.93,11.02,11.3,11.47,11.6,11.69,11.76,11.82,11.9,159.35,159.53,159.61,159.70000000000002,159.78,159.86,159.93,160,160.14000000000001,26.44,26.18,26.02,25.84,25.66,25.47,25.28,25.1,24.72,N/A,N/A +2012,10,13,16,30,101890,100730,99600,78.74,0,8.89,9.85,10.08,10.23,10.34,10.42,10.48,10.53,10.6,160.77,161.23,161.45000000000002,161.65,161.83,161.99,162.14000000000001,162.27,162.53,26.48,26.21,26.05,25.86,25.67,25.490000000000002,25.3,25.11,24.73,N/A,N/A +2012,10,13,17,30,101870,100710,99590,79.17,0,9.33,10.32,10.57,10.72,10.82,10.89,10.93,10.97,11.01,154.84,155.25,155.49,155.74,155.96,156.17000000000002,156.37,156.55,156.93,26.41,26.150000000000002,25.990000000000002,25.8,25.62,25.43,25.240000000000002,25.060000000000002,24.68,N/A,N/A +2012,10,13,18,30,101820,100670,99540,78.12,0,8.63,9.540000000000001,9.77,9.91,10.01,10.08,10.13,10.17,10.23,162.05,162.44,162.6,162.76,162.9,163.03,163.15,163.26,163.49,26.490000000000002,26.23,26.07,25.88,25.7,25.52,25.330000000000002,25.150000000000002,24.77,N/A,N/A +2012,10,13,19,30,101790,100640,99520,79.11,0,9.620000000000001,10.69,10.950000000000001,11.11,11.22,11.290000000000001,11.33,11.370000000000001,11.39,160.22,160.45000000000002,160.62,160.79,160.94,161.09,161.23,161.37,161.65,26.52,26.27,26.11,25.92,25.73,25.55,25.36,25.18,24.8,N/A,N/A +2012,10,13,20,30,101730,100570,99450,80.53,0,9.18,10.23,10.52,10.73,10.88,11,11.09,11.17,11.290000000000001,166.39000000000001,166.68,166.79,166.89000000000001,166.98,167.04,167.1,167.15,167.23,26.54,26.29,26.14,25.95,25.77,25.59,25.400000000000002,25.22,24.84,N/A,N/A +2012,10,13,21,30,101700,100540,99420,79.79,0,9.02,9.99,10.25,10.42,10.540000000000001,10.64,10.72,10.78,10.89,168.76,169.25,169.45000000000002,169.63,169.77,169.88,169.98,170.06,170.19,26.57,26.330000000000002,26.19,26,25.830000000000002,25.650000000000002,25.47,25.29,24.92,N/A,N/A +2012,10,13,22,30,101670,100510,99390,80.5,0,9.42,10.450000000000001,10.72,10.89,11.01,11.09,11.15,11.200000000000001,11.27,169.96,169.88,169.84,169.81,169.77,169.74,169.71,169.68,169.62,26.6,26.36,26.2,26.02,25.84,25.66,25.47,25.29,24.92,N/A,N/A +2012,10,13,23,30,101610,100460,99340,80.2,0,9.370000000000001,10.31,10.55,10.69,10.8,10.870000000000001,10.93,10.98,11.07,164.09,164.20000000000002,164.32,164.49,164.66,164.85,165.07,165.27,165.78,26.650000000000002,26.42,26.28,26.11,25.94,25.77,25.59,25.42,25.07,N/A,N/A +2012,10,14,0,30,101620,100470,99350,82.16,0,9.96,11.05,11.36,11.55,11.700000000000001,11.81,11.9,11.97,12.09,169.68,169.78,169.8,169.81,169.81,169.8,169.79,169.77,169.73,26.63,26.400000000000002,26.25,26.07,25.89,25.71,25.53,25.35,24.990000000000002,N/A,N/A +2012,10,14,1,30,101610,100460,99340,80.44,0,9.63,10.700000000000001,10.98,11.19,11.34,11.47,11.56,11.65,11.790000000000001,173.47,173,172.81,172.61,172.43,172.26,172.1,171.94,171.64000000000001,26.84,26.63,26.490000000000002,26.310000000000002,26.14,25.97,25.79,25.61,25.25,N/A,N/A +2012,10,14,2,30,101620,100470,99350,82.72,0,9.75,10.86,11.18,11.4,11.56,11.69,11.790000000000001,11.870000000000001,11.99,170.84,170.99,171.04,171.08,171.11,171.14000000000001,171.17000000000002,171.19,171.23,26.76,26.54,26.39,26.21,26.04,25.86,25.67,25.490000000000002,25.12,N/A,N/A +2012,10,14,3,30,101600,100450,99330,84.66,0,10.38,11.55,11.870000000000001,12.09,12.25,12.370000000000001,12.47,12.55,12.67,164.07,164.34,164.53,164.72,164.9,165.09,165.27,165.44,165.78,26.560000000000002,26.32,26.17,25.98,25.810000000000002,25.63,25.44,25.26,24.900000000000002,N/A,N/A +2012,10,14,4,30,101580,100420,99310,79.94,0,10.950000000000001,12.27,12.64,12.89,13.08,13.22,13.34,13.44,13.59,167.1,167.24,167.34,167.45000000000002,167.55,167.65,167.74,167.83,168.02,26.64,26.41,26.26,26.080000000000002,25.900000000000002,25.72,25.53,25.35,24.98,N/A,N/A +2012,10,14,5,30,101570,100410,99290,81.26,0,10.44,11.68,12.040000000000001,12.290000000000001,12.47,12.620000000000001,12.74,12.84,12.99,172.47,172.85,173.01,173.17000000000002,173.3,173.42000000000002,173.52,173.61,173.77,26.6,26.36,26.21,26.02,25.84,25.66,25.48,25.3,24.92,N/A,N/A +2012,10,14,6,30,101600,100450,99330,79.15,0,10.85,12.09,12.44,12.65,12.8,12.9,12.98,13.030000000000001,13.1,176.26,176.5,176.64000000000001,176.79,176.92000000000002,177.06,177.19,177.31,177.58,26.580000000000002,26.32,26.16,25.97,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A +2012,10,14,7,30,101600,100450,99330,79.03,0,10.18,11.3,11.620000000000001,11.83,11.98,12.09,12.18,12.26,12.370000000000001,181.59,181.87,181.96,182.02,182.05,182.07,182.07,182.07,182.04,26.57,26.310000000000002,26.150000000000002,25.96,25.78,25.59,25.400000000000002,25.21,24.830000000000002,N/A,N/A +2012,10,14,8,30,101570,100410,99290,75.07000000000001,0,11.22,12.46,12.76,12.93,13.040000000000001,13.120000000000001,13.18,13.22,13.26,186.37,186.39000000000001,186.36,186.31,186.24,186.17000000000002,186.1,186.03,185.88,26.650000000000002,26.39,26.23,26.04,25.86,25.67,25.48,25.3,24.92,N/A,N/A +2012,10,14,9,30,101620,100470,99350,72.62,0,9.41,10.43,10.71,10.88,11,11.09,11.15,11.21,11.28,188.97,188.9,188.93,188.97,189.01,189.05,189.1,189.14000000000001,189.23,26.72,26.47,26.32,26.13,25.95,25.76,25.57,25.38,25,N/A,N/A +2012,10,14,10,30,101620,100460,99340,73.71000000000001,0,10.21,11.290000000000001,11.57,11.72,11.83,11.89,11.94,11.96,11.99,194.18,194.12,194.08,194.02,193.96,193.89000000000001,193.82,193.75,193.6,26.7,26.46,26.310000000000002,26.12,25.94,25.76,25.57,25.39,25.02,N/A,N/A +2012,10,14,11,30,101650,100500,99380,75.25,0,9.73,10.77,11.07,11.25,11.38,11.48,11.56,11.620000000000001,11.72,193.4,192.98000000000002,192.81,192.65,192.52,192.4,192.3,192.21,192.04,26.64,26.39,26.240000000000002,26.04,25.86,25.68,25.48,25.3,24.92,N/A,N/A +2012,10,14,12,30,101700,100540,99420,73.56,0,7.74,8.5,8.700000000000001,8.82,8.9,8.96,9.01,9.040000000000001,9.09,199.25,198.92000000000002,198.78,198.61,198.45000000000002,198.3,198.16,198.03,197.77,26.72,26.490000000000002,26.34,26.150000000000002,25.97,25.78,25.59,25.41,25.04,N/A,N/A +2012,10,14,13,30,101720,100570,99450,74.05,0,7.72,8.53,8.76,8.89,8.99,9.06,9.11,9.15,9.200000000000001,199.34,199.65,199.77,199.9,200.02,200.14000000000001,200.26,200.37,200.59,26.740000000000002,26.5,26.34,26.150000000000002,25.97,25.78,25.59,25.400000000000002,25.02,N/A,N/A +2012,10,14,14,30,101750,100600,99480,74.73,0,6.71,7.390000000000001,7.57,7.69,7.7700000000000005,7.83,7.88,7.91,7.96,198.81,198.77,198.84,198.95000000000002,199.05,199.16,199.27,199.37,199.59,26.76,26.52,26.37,26.17,25.990000000000002,25.8,25.61,25.43,25.05,N/A,N/A +2012,10,14,15,30,101770,100610,99490,72,0,6.0600000000000005,6.59,6.72,6.78,6.82,6.8500000000000005,6.87,6.88,6.88,203.92000000000002,204.17000000000002,204.32,204.45000000000002,204.56,204.67000000000002,204.76,204.85,205.03,26.810000000000002,26.57,26.42,26.23,26.05,25.86,25.67,25.490000000000002,25.11,N/A,N/A +2012,10,14,16,30,101740,100580,99460,73.01,0,5.66,6.15,6.26,6.3100000000000005,6.3500000000000005,6.37,6.38,6.390000000000001,6.390000000000001,207.4,207.46,207.46,207.44,207.43,207.42000000000002,207.41,207.41,207.38,26.73,26.490000000000002,26.330000000000002,26.14,25.96,25.77,25.580000000000002,25.400000000000002,25.03,N/A,N/A +2012,10,14,17,30,101740,100580,99460,75.83,0,6.17,6.72,6.8500000000000005,6.92,6.96,6.98,6.99,6.99,6.98,210.86,210.83,210.82,210.77,210.73000000000002,210.68,210.62,210.56,210.42000000000002,26.69,26.43,26.27,26.080000000000002,25.89,25.7,25.51,25.330000000000002,24.95,N/A,N/A +2012,10,14,18,30,101700,100550,99420,74.96000000000001,0,5.75,6.24,6.34,6.4,6.43,6.45,6.47,6.48,6.49,211.27,211.3,211.31,211.32,211.33,211.34,211.34,211.36,211.36,26.66,26.39,26.23,26.03,25.85,25.66,25.47,25.29,24.91,N/A,N/A +2012,10,14,19,30,101700,100550,99420,77.07000000000001,0,5.51,5.98,6.09,6.140000000000001,6.17,6.2,6.21,6.21,6.22,207.8,208.05,208.09,208.14000000000001,208.20000000000002,208.25,208.32,208.38,208.52,26.71,26.43,26.27,26.07,25.89,25.69,25.5,25.32,24.94,N/A,N/A +2012,10,14,20,30,101690,100530,99410,77.62,0,6.05,6.57,6.7,6.76,6.8,6.82,6.83,6.84,6.82,206.52,206.56,206.54,206.52,206.51,206.49,206.48000000000002,206.47,206.43,26.740000000000002,26.490000000000002,26.330000000000002,26.13,25.95,25.77,25.57,25.39,25.01,N/A,N/A +2012,10,14,21,30,101750,100590,99450,76.46000000000001,7.7,7.23,7.72,7.82,7.8500000000000005,7.87,7.88,7.890000000000001,7.9,7.94,207.11,208.09,208.68,209.34,210.05,210.78,211.71,212.6,215.32,24.71,24.34,24.17,23.990000000000002,23.82,23.66,23.490000000000002,23.34,23.05,N/A,N/A +2012,10,14,22,30,101670,100510,99380,81.16,1.5,6.38,6.82,6.93,6.99,7.04,7.1000000000000005,7.23,7.37,7.9,254.35,253.36,252.81,252.11,251.3,250.36,248.84,247.17000000000002,240.94,24.76,24.41,24.25,24.07,23.91,23.76,23.64,23.53,23.56,N/A,N/A +2012,10,14,23,30,101600,100440,99310,71.18,0,4.22,4.37,4.36,4.3,4.26,4.23,4.22,4.21,4.09,225.55,224.69,224.17000000000002,223.4,222.06,220.03,216.55,212.53,204.56,25.42,25.12,24.97,24.79,24.66,24.54,24.490000000000002,24.48,24.57,N/A,N/A +2012,10,15,0,30,101580,100420,99300,66.81,0,1.21,1.6300000000000001,1.93,2.32,2.68,3.0500000000000003,3.37,3.66,4.12,249.56,232.66,221.79,215.72,211.66,209.72,208.75,208.32,208.26,26.39,26.560000000000002,26.69,26.84,26.86,26.77,26.63,26.46,26.080000000000002,N/A,N/A +2012,10,15,1,30,101630,100470,99350,72.77,0,2.2600000000000002,2.38,2.42,2.54,2.7800000000000002,3.22,3.61,3.94,4.47,234.92000000000002,234.04,233.26,231.81,230.21,228.05,226.59,225.64000000000001,224.62,26.42,26.16,26.03,25.89,25.86,25.96,25.98,25.97,25.78,N/A,N/A +2012,10,15,2,30,101630,100470,99350,81.91,0,1.68,1.8,1.83,1.86,1.9000000000000001,1.95,2.09,2.2800000000000002,2.95,227.3,227.14000000000001,227.07,227.02,227.15,227.44,228.23000000000002,229.24,231.68,26.26,25.97,25.8,25.61,25.43,25.25,25.09,24.95,24.77,N/A,N/A +2012,10,15,3,30,101630,100480,99360,84.01,0,3.49,3.75,3.81,3.84,3.86,3.88,3.89,3.9,3.99,270.05,269.51,269.01,268.53000000000003,268.16,267.89,267.64,267.39,266.75,26.330000000000002,26.05,25.89,25.69,25.51,25.330000000000002,25.150000000000002,24.97,24.61,N/A,N/A +2012,10,15,4,30,101650,100490,99370,82.07000000000001,0,2.14,2.29,2.34,2.4,2.5,2.63,2.84,3.09,3.52,283.74,281.49,279.45,276.79,273.72,269.85,266.28000000000003,262.84000000000003,258.72,26.13,25.830000000000002,25.67,25.48,25.3,25.11,24.93,24.76,24.41,N/A,N/A +2012,10,15,5,30,101650,100490,99370,83.23,0,2.35,2.48,2.5100000000000002,2.58,2.75,3.0100000000000002,3.31,3.63,3.99,290.81,289.17,287.88,285.78000000000003,282.75,278.5,274.40000000000003,270.38,268.88,25.900000000000002,25.6,25.44,25.27,25.13,25.01,24.91,24.830000000000002,24.62,N/A,N/A +2012,10,15,6,30,101660,100500,99380,84.09,0,3.8200000000000003,3.98,3.98,3.96,3.93,3.91,3.88,3.86,3.86,311.11,310.43,309.98,309.43,308.87,308.24,307.46,306.63,304.2,25.62,25.3,25.14,24.94,24.76,24.57,24.39,24.21,23.85,N/A,N/A +2012,10,15,7,30,101700,100540,99410,81.29,0,3.93,4.11,4.14,4.14,4.13,4.12,4.12,4.12,4.17,319.49,319.38,319.31,319.2,319.07,318.90000000000003,318.62,318.33,317,25.38,25.05,24.88,24.68,24.5,24.32,24.13,23.96,23.61,N/A,N/A +2012,10,15,8,30,101710,100550,99420,83.43,0,4.44,4.7,4.76,4.78,4.8,4.8100000000000005,4.82,4.83,4.86,320.11,320.3,320.45,320.61,320.75,320.89,321.02,321.15000000000003,321.40000000000003,25.2,24.85,24.68,24.48,24.29,24.1,23.91,23.73,23.35,N/A,N/A +2012,10,15,9,30,101700,100530,99410,83.8,0,3.67,3.99,4.1,4.18,4.25,4.3100000000000005,4.37,4.42,4.51,335.2,335.82,336.03000000000003,336.16,336.22,336.25,336.24,336.2,336.03000000000003,25,24.650000000000002,24.48,24.28,24.09,23.900000000000002,23.71,23.52,23.14,N/A,N/A +2012,10,15,10,30,101710,100550,99420,72.45,0,6.01,6.4,6.48,6.51,6.51,6.51,6.49,6.48,6.44,12.73,12.8,12.870000000000001,12.93,13,13.06,13.13,13.19,13.35,24.84,24.47,24.3,24.1,23.91,23.72,23.53,23.35,22.98,N/A,N/A +2012,10,15,11,30,101690,100530,99390,70.41,0,7.88,8.46,8.57,8.61,8.63,8.64,8.64,8.64,8.64,25.740000000000002,25.96,26.13,26.310000000000002,26.490000000000002,26.67,26.87,27.080000000000002,27.580000000000002,24.54,24.150000000000002,23.97,23.78,23.59,23.41,23.23,23.06,22.72,N/A,N/A +2012,10,15,12,30,101720,100550,99420,69.10000000000001,0,8.24,8.84,8.97,9.01,9.03,9.03,9.02,9.01,8.97,26.41,26.63,26.75,26.88,27.01,27.13,27.26,27.39,27.69,24.27,23.86,23.67,23.47,23.28,23.1,22.91,22.73,22.37,N/A,N/A +2012,10,15,13,30,101730,100550,99410,72.12,0,8.05,8.6,8.71,8.74,8.76,8.76,8.75,8.74,8.71,29.44,29.7,29.87,30.04,30.2,30.36,30.52,30.67,31.05,23.330000000000002,22.87,22.68,22.48,22.28,22.1,21.91,21.740000000000002,21.39,N/A,N/A +2012,10,15,14,30,101750,100580,99440,73.53,0,7.47,7.99,8.1,8.15,8.18,8.2,8.22,8.23,8.27,34.03,34.28,34.43,34.59,34.730000000000004,34.87,35.03,35.18,35.54,23.150000000000002,22.69,22.490000000000002,22.29,22.1,21.91,21.72,21.55,21.2,N/A,N/A +2012,10,15,15,30,101740,100570,99430,69.09,0,7.54,8.08,8.19,8.25,8.28,8.3,8.31,8.32,8.34,42.78,43,43.160000000000004,43.300000000000004,43.44,43.58,43.72,43.85,44.18,23.400000000000002,22.95,22.75,22.55,22.35,22.17,21.97,21.79,21.43,N/A,N/A +2012,10,15,16,30,101720,100540,99400,64.55,0,6.87,7.33,7.44,7.49,7.5200000000000005,7.54,7.55,7.5600000000000005,7.58,36.75,36.96,37.11,37.25,37.39,37.53,37.68,37.82,38.17,23.740000000000002,23.31,23.12,22.92,22.73,22.54,22.35,22.17,21.81,N/A,N/A +2012,10,15,17,30,101680,100510,99370,60.84,0,6.11,6.53,6.63,6.68,6.72,6.74,6.7700000000000005,6.79,6.83,30.11,30.09,30.12,30.14,30.150000000000002,30.16,30.18,30.2,30.25,24.19,23.79,23.61,23.41,23.22,23.03,22.84,22.66,22.28,N/A,N/A +2012,10,15,18,30,101660,100490,99360,55.870000000000005,0,4.89,5.22,5.3,5.34,5.38,5.41,5.43,5.45,5.49,41.08,40.63,40.29,39.95,39.65,39.35,39.04,38.75,38.13,24.84,24.48,24.3,24.1,23.92,23.73,23.53,23.35,22.97,N/A,N/A +2012,10,15,19,30,101640,100470,99340,53.29,0,3.5100000000000002,3.72,3.77,3.8000000000000003,3.8200000000000003,3.84,3.85,3.86,3.89,57.910000000000004,57.02,56.42,55.84,55.300000000000004,54.78,54.25,53.74,52.660000000000004,25.150000000000002,24.82,24.650000000000002,24.45,24.26,24.07,23.88,23.69,23.31,N/A,N/A +2012,10,15,20,30,101590,100420,99290,53.660000000000004,0,3.06,3.18,3.19,3.18,3.17,3.16,3.15,3.13,3.1,76.14,75.3,74.7,74.11,73.54,73,72.4,71.83,70.56,25.23,24.900000000000002,24.72,24.53,24.330000000000002,24.14,23.95,23.77,23.38,N/A,N/A +2012,10,15,21,30,101560,100390,99260,52.76,0,1.86,1.92,1.93,1.93,1.92,1.92,1.9100000000000001,1.9000000000000001,1.8800000000000001,89.03,88.18,87.73,87.24,86.76,86.27,85.69,85.14,83.68,25.35,25.03,24.86,24.66,24.47,24.28,24.09,23.91,23.53,N/A,N/A +2012,10,15,22,30,101510,100350,99220,51.9,0,1.8,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,82.74,81.91,81.32000000000001,80.72,80.12,79.5,78.79,78.12,76.35000000000001,25.47,25.16,24.990000000000002,24.79,24.6,24.42,24.22,24.04,23.66,N/A,N/A +2012,10,15,23,30,101510,100340,99220,51.7,0,1.1,1.1300000000000001,1.1300000000000001,1.1300000000000001,1.1300000000000001,1.12,1.12,1.11,1.1,119.47,118.45,117.69,116.9,116.13,115.37,114.53,113.74000000000001,111.84,25.55,25.240000000000002,25.07,24.87,24.68,24.5,24.3,24.12,23.740000000000002,N/A,N/A +2012,10,16,0,30,101500,100340,99210,51.910000000000004,0,1.1,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,125.18,123.89,123.09,122.28,121.5,120.74000000000001,119.92,119.17,117.4,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.53,24.330000000000002,24.14,23.76,N/A,N/A +2012,10,16,1,30,101500,100340,99210,52.050000000000004,0,0.49,0.52,0.53,0.54,0.55,0.56,0.5700000000000001,0.58,0.61,91.67,88.09,86.26,84.5,82.83,81.2,79.59,78.09,74.94,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.52,24.330000000000002,24.14,23.76,N/A,N/A +2012,10,16,2,30,101510,100350,99220,53.51,0,1.2,1.27,1.29,1.31,1.32,1.34,1.35,1.36,1.3900000000000001,58.77,57.47,56.82,56.2,55.64,55.120000000000005,54.59,54.1,53.13,25.560000000000002,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.73,N/A,N/A +2012,10,16,3,30,101500,100340,99210,53.14,0,4.25,4.5,4.5,4.48,4.45,4.42,4.38,4.34,4.25,40.79,41.13,41.32,41.52,41.7,41.87,42.050000000000004,42.22,42.51,25.66,25.35,25.18,24.98,24.79,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A +2012,10,16,4,30,101480,100310,99190,52.21,0,5.87,6.2700000000000005,6.34,6.36,6.37,6.37,6.36,6.3500000000000005,6.3100000000000005,52.14,52.65,52.94,53.21,53.46,53.68,53.910000000000004,54.120000000000005,54.550000000000004,25.51,25.19,25.02,24.82,24.63,24.44,24.25,24.060000000000002,23.67,N/A,N/A +2012,10,16,5,30,101460,100290,99160,52.34,0,5.89,6.2700000000000005,6.33,6.34,6.34,6.33,6.3100000000000005,6.29,6.24,62.18,62.38,62.49,62.61,62.72,62.82,62.93,63.02,63.24,25.38,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A +2012,10,16,6,30,101460,100300,99170,57.28,0,5.22,5.57,5.65,5.68,5.7,5.72,5.73,5.73,5.73,69.42,70.25,70.75,71.22,71.64,72.03,72.42,72.78,73.51,25.28,24.96,24.79,24.59,24.39,24.21,24.01,23.82,23.44,N/A,N/A +2012,10,16,7,30,101440,100280,99150,57.07,0,5.37,5.73,5.8,5.83,5.8500000000000005,5.86,5.86,5.86,5.8500000000000005,81,81.77,82.17,82.55,82.88,83.19,83.5,83.78,84.34,25.25,24.91,24.740000000000002,24.54,24.35,24.16,23.96,23.77,23.38,N/A,N/A +2012,10,16,8,30,101430,100270,99140,57.74,0,5.28,5.66,5.74,5.78,5.8100000000000005,5.83,5.8500000000000005,5.86,5.87,90.98,91.49,91.81,92.13,92.43,92.71000000000001,92.99,93.24,93.78,25.23,24.900000000000002,24.72,24.52,24.330000000000002,24.14,23.94,23.76,23.37,N/A,N/A +2012,10,16,9,30,101410,100250,99120,59.67,0,5.04,5.38,5.46,5.5,5.53,5.55,5.57,5.58,5.6000000000000005,101.17,101.58,101.87,102.18,102.45,102.72,102.99000000000001,103.24000000000001,103.76,25.09,24.75,24.57,24.37,24.18,23.990000000000002,23.79,23.61,23.22,N/A,N/A +2012,10,16,10,30,101390,100230,99100,59.870000000000005,0,5.07,5.4,5.47,5.5,5.5200000000000005,5.53,5.54,5.54,5.54,111.53,112,112.27,112.53,112.76,112.98,113.2,113.4,113.81,25.12,24.78,24.6,24.400000000000002,24.21,24.02,23.82,23.63,23.240000000000002,N/A,N/A +2012,10,16,11,30,101390,100220,99100,60.56,0,4.86,5.18,5.23,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.26,117.05,117.34,117.5,117.65,117.79,117.93,118.06,118.19,118.48,25.03,24.68,24.51,24.310000000000002,24.11,23.92,23.72,23.54,23.150000000000002,N/A,N/A +2012,10,16,12,30,101380,100210,99090,62.6,0,4.64,4.94,5,5.03,5.05,5.0600000000000005,5.07,5.08,5.08,123.66,124.09,124.36,124.63000000000001,124.86,125.08,125.3,125.51,125.93,25.03,24.69,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.150000000000002,N/A,N/A +2012,10,16,13,30,101350,100190,99060,64.24,0,4.3,4.6000000000000005,4.68,4.72,4.76,4.8,4.82,4.8500000000000005,4.89,131.75,131.93,132.08,132.24,132.38,132.52,132.66,132.8,133.09,24.95,24.6,24.42,24.22,24.03,23.84,23.64,23.45,23.06,N/A,N/A +2012,10,16,14,30,101370,100200,99080,66.73,0,4.82,5.11,5.17,5.19,5.21,5.22,5.22,5.22,5.21,137.8,138.4,138.77,139.11,139.42000000000002,139.71,139.99,140.26,140.77,24.97,24.62,24.44,24.240000000000002,24.05,23.85,23.66,23.47,23.080000000000002,N/A,N/A +2012,10,16,15,30,101340,100180,99050,68.11,0,3.96,4.23,4.3,4.3500000000000005,4.38,4.41,4.43,4.46,4.49,147.44,147.23,147.08,146.96,146.85,146.75,146.67000000000002,146.59,146.44,24.98,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A +2012,10,16,16,30,101310,100150,99030,68.77,0,3.95,4.18,4.23,4.26,4.28,4.29,4.3100000000000005,4.32,4.32,148.13,148.67000000000002,148.96,149.24,149.48,149.70000000000002,149.91,150.11,150.48,25.05,24.7,24.53,24.32,24.13,23.94,23.740000000000002,23.56,23.16,N/A,N/A +2012,10,16,17,30,101290,100130,99010,69,0,3.35,3.5700000000000003,3.64,3.68,3.72,3.75,3.7800000000000002,3.81,3.85,155.19,155.18,155.18,155.18,155.18,155.19,155.20000000000002,155.22,155.25,25.07,24.73,24.55,24.35,24.16,23.96,23.77,23.580000000000002,23.19,N/A,N/A +2012,10,16,18,30,101240,100090,98960,67.9,0,3.11,3.29,3.34,3.37,3.4,3.42,3.44,3.45,3.48,160.49,160.58,160.69,160.81,160.93,161.05,161.17000000000002,161.28,161.55,25.21,24.87,24.69,24.490000000000002,24.3,24.1,23.91,23.72,23.34,N/A,N/A +2012,10,16,19,30,101220,100060,98940,69.11,0,2.92,3.08,3.12,3.14,3.16,3.17,3.18,3.19,3.2,156.37,156.66,156.94,157.21,157.47,157.72,157.98,158.21,158.71,25.22,24.89,24.71,24.51,24.32,24.13,23.93,23.740000000000002,23.36,N/A,N/A +2012,10,16,20,30,101150,100000,98870,69.39,0,2.07,2.21,2.2600000000000002,2.29,2.33,2.35,2.38,2.4,2.45,161.76,162.32,162.68,163,163.27,163.51,163.75,163.98,164.38,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A +2012,10,16,21,30,101120,99960,98840,69.21000000000001,0,2.48,2.61,2.64,2.66,2.67,2.68,2.69,2.7,2.72,164.66,165.53,166.03,166.47,166.84,167.19,167.51,167.8,168.33,25.310000000000002,24.98,24.810000000000002,24.61,24.42,24.22,24.03,23.84,23.45,N/A,N/A +2012,10,16,22,30,101090,99940,98820,70.59,0,2.94,3.04,3.04,3.02,3,2.98,2.96,2.94,2.9,145.52,146.23,146.69,147.16,147.59,148.01,148.44,148.84,149.65,25.32,25,24.830000000000002,24.62,24.43,24.240000000000002,24.05,23.86,23.47,N/A,N/A +2012,10,16,23,30,101080,99920,98800,70.63,0,2.15,2.22,2.23,2.22,2.22,2.22,2.21,2.2,2.19,124.29,125.5,126.36,127.21000000000001,127.97,128.7,129.42000000000002,130.1,131.44,25.3,24.98,24.810000000000002,24.6,24.41,24.22,24.02,23.84,23.45,N/A,N/A +2012,10,17,0,30,101060,99910,98780,72.17,0.7000000000000001,2.04,2.09,2.08,2.07,2.05,2.04,2.02,2,1.96,85.85000000000001,86.11,86.29,86.5,86.7,86.9,87.12,87.34,87.84,24.97,24.64,24.46,24.26,24.07,23.88,23.69,23.5,23.12,N/A,N/A +2012,10,17,1,30,101070,99910,98790,74.87,0.4,2.9,2.88,2.7800000000000002,2.66,2.5500000000000003,2.44,2.34,2.24,2.06,10.9,12.13,13.35,14.84,16.32,17.86,19.580000000000002,21.2,25.01,24.52,24.18,24.02,23.84,23.66,23.48,23.3,23.13,22.77,N/A,N/A +2012,10,17,2,30,101090,99930,98800,87.8,0.7000000000000001,5.5,5.65,5.61,5.5,5.37,5.22,5.01,4.8,3.93,0.54,1.31,1.86,2.54,3.29,4.13,5.4,6.72,15.18,22.96,22.53,22.34,22.14,21.97,21.79,21.62,21.47,21.26,N/A,N/A +2012,10,17,3,30,101080,99910,98780,82.68,3.3000000000000003,6.19,6.47,6.49,6.46,6.41,6.36,6.29,6.22,6.0200000000000005,15.55,15.92,16.22,16.54,16.87,17.21,17.62,18.02,19.23,22.73,22.27,22.07,21.87,21.68,21.490000000000002,21.3,21.12,20.76,N/A,N/A +2012,10,17,4,30,101060,99900,98760,78.69,2.6,3.2600000000000002,3.35,3.35,3.33,3.3000000000000003,3.27,3.23,3.19,3.08,28.19,29.03,29.63,30.26,30.900000000000002,31.59,32.43,33.25,35.84,22.78,22.37,22.18,21.98,21.79,21.6,21.41,21.23,20.86,N/A,N/A +2012,10,17,5,30,100970,99810,98680,80.09,0.4,3.73,3.94,3.98,4,4.03,4.05,4.07,4.1,4.19,132.09,133.17000000000002,133.67000000000002,134.26,134.86,135.49,136.25,136.99,139.15,22.94,22.53,22.34,22.14,21.95,21.76,21.57,21.39,21.04,N/A,N/A +2012,10,17,6,30,100920,99760,98630,78.53,0,6.75,7.32,7.48,7.58,7.66,7.73,7.79,7.84,7.930000000000001,162.74,162.69,162.64000000000001,162.6,162.56,162.54,162.51,162.5,162.47,24.03,23.63,23.44,23.240000000000002,23.05,22.85,22.66,22.48,22.09,N/A,N/A +2012,10,17,7,30,100920,99770,98640,80.43,0,8.040000000000001,8.69,8.86,8.94,9,9.03,9.06,9.08,9.09,180.78,180.75,180.75,180.74,180.75,180.75,180.77,180.79,180.86,24.03,23.61,23.42,23.21,23.02,22.830000000000002,22.63,22.45,22.07,N/A,N/A +2012,10,17,8,30,100890,99730,98610,61.92,0,7.32,7.94,8.08,8.15,8.19,8.23,8.25,8.26,8.27,179.88,179.51,179.43,179.37,179.3,179.24,179.18,179.13,179.01,25.23,24.89,24.71,24.51,24.32,24.13,23.93,23.740000000000002,23.36,N/A,N/A +2012,10,17,9,30,100900,99740,98620,79.39,0,8.46,9.16,9.32,9.38,9.42,9.43,9.43,9.43,9.4,174.75,174.98,175.18,175.38,175.57,175.76,175.95000000000002,176.14000000000001,176.54,24.66,24.27,24.080000000000002,23.87,23.68,23.490000000000002,23.29,23.1,22.72,N/A,N/A +2012,10,17,10,30,100890,99730,98610,67.89,0,7.67,8.27,8.41,8.47,8.51,8.53,8.540000000000001,8.55,8.57,189.08,189.25,189.29,189.36,189.44,189.52,189.62,189.72,189.99,25.16,24.82,24.650000000000002,24.46,24.27,24.09,23.900000000000002,23.73,23.37,N/A,N/A +2012,10,17,11,30,100890,99740,98620,69.15,0,7.8,8.46,8.6,8.67,8.71,8.74,8.76,8.77,8.790000000000001,172.35,172.57,172.73,172.91,173.09,173.28,173.48,173.69,174.21,25.240000000000002,24.900000000000002,24.73,24.53,24.34,24.150000000000002,23.96,23.78,23.400000000000002,N/A,N/A +2012,10,17,12,30,100890,99740,98620,79.39,0,8.32,9.15,9.38,9.53,9.64,9.73,9.8,9.85,9.950000000000001,176.72,176.85,176.95000000000002,177.06,177.17000000000002,177.26,177.37,177.48,177.70000000000002,25.55,25.23,25.060000000000002,24.86,24.67,24.48,24.29,24.1,23.72,N/A,N/A +2012,10,17,13,30,100860,99710,98590,75.99,0,8.56,9.450000000000001,9.67,9.81,9.9,9.97,10.02,10.05,10.1,187.77,187.6,187.51,187.45000000000002,187.41,187.38,187.36,187.34,187.34,26.1,25.82,25.66,25.47,25.28,25.09,24.900000000000002,24.72,24.330000000000002,N/A,N/A +2012,10,17,14,30,100870,99720,98610,77.29,0,9.47,10.43,10.69,10.82,10.91,10.97,11,11.03,11.040000000000001,189.82,189.9,189.98,190.06,190.14000000000001,190.20000000000002,190.27,190.32,190.43,26.23,25.97,25.810000000000002,25.62,25.44,25.25,25.060000000000002,24.87,24.5,N/A,N/A +2012,10,17,15,30,100850,99700,98590,78.51,0,8.99,9.950000000000001,10.18,10.32,10.42,10.48,10.53,10.56,10.6,191.49,191.51,191.5,191.48000000000002,191.45000000000002,191.43,191.39000000000001,191.35,191.28,26.21,25.94,25.78,25.580000000000002,25.400000000000002,25.21,25.02,24.830000000000002,24.45,N/A,N/A +2012,10,17,16,30,100820,99680,98560,81.47,0,9.28,10.27,10.53,10.69,10.8,10.88,10.94,10.99,11.06,189.14000000000001,189.31,189.39000000000001,189.48,189.56,189.64000000000001,189.71,189.78,189.93,26.17,25.900000000000002,25.740000000000002,25.54,25.36,25.17,24.97,24.79,24.41,N/A,N/A +2012,10,17,17,30,100760,99610,98500,82.92,0,9.49,10.5,10.77,10.92,11.03,11.11,11.17,11.21,11.27,192.39000000000001,192.36,192.35,192.34,192.33,192.31,192.28,192.27,192.22,26.27,26,25.84,25.650000000000002,25.46,25.28,25.080000000000002,24.900000000000002,24.52,N/A,N/A +2012,10,17,18,30,100730,99580,98470,87.60000000000001,0,9.31,10.32,10.58,10.74,10.85,10.92,10.97,11.01,11.05,199.16,199.19,199.22,199.24,199.26,199.27,199.28,199.29,199.31,26.26,25.98,25.82,25.62,25.44,25.25,25.060000000000002,24.87,24.490000000000002,N/A,N/A +2012,10,17,19,30,100720,99570,98470,88.35000000000001,0,8.700000000000001,9.71,10.040000000000001,10.32,10.56,10.76,10.96,11.15,11.51,197.12,198.06,198.53,199.02,199.46,199.89000000000001,200.3,200.69,201.46,26.42,26.2,26.07,25.900000000000002,25.740000000000002,25.57,25.41,25.240000000000002,24.92,N/A,N/A +2012,10,17,20,30,100660,99520,98410,83.59,0,9.4,10.46,10.790000000000001,11.02,11.200000000000001,11.34,11.46,11.56,11.72,204.17000000000002,204.18,204.18,204.17000000000002,204.17000000000002,204.18,204.21,204.25,204.29,26.64,26.43,26.29,26.11,25.94,25.76,25.580000000000002,25.400000000000002,25.04,N/A,N/A +2012,10,17,21,30,100610,99470,98360,83.8,0,8.55,9.94,10.5,10.83,11.09,11.3,11.46,11.59,11.82,206.76,206.06,205.77,206.07,206.29,206.42000000000002,206.51,206.57,206.66,26.69,26.47,26.330000000000002,26.17,26.02,25.86,25.68,25.51,25.150000000000002,N/A,N/A +2012,10,17,22,30,100590,99450,98340,83.3,0,8.33,9.66,10.22,10.59,10.89,11.13,11.33,11.5,11.790000000000001,202.32,202.05,201.96,202.28,202.54,202.74,202.91,203.06,203.35,26.69,26.490000000000002,26.36,26.21,26.07,25.91,25.75,25.580000000000002,25.240000000000002,N/A,N/A +2012,10,17,23,30,100560,99420,98310,85.66,0,8.16,9.200000000000001,9.55,9.85,10.09,10.32,10.53,10.73,11.11,203.1,203.15,203.23000000000002,203.31,203.39000000000001,203.48000000000002,203.57,203.66,203.86,26.71,26.52,26.400000000000002,26.240000000000002,26.09,25.92,25.76,25.6,25.27,N/A,N/A +2012,10,18,0,30,100570,99430,98320,87.32000000000001,0,8.66,9.88,10.34,10.540000000000001,10.73,10.93,11.09,11.22,11.5,196.1,196.09,196.20000000000002,196.39000000000001,196.57,196.75,196.9,197.02,197.33,26.55,26.330000000000002,26.19,26.02,25.87,25.69,25.52,25.35,25,N/A,N/A +2012,10,18,1,30,100570,99430,98320,88.04,0,8.48,9.59,9.98,10.32,10.6,10.85,11.08,11.31,11.72,200.94,201,201.07,201.18,201.31,201.47,201.68,201.92000000000002,202.54,26.7,26.51,26.38,26.22,26.060000000000002,25.900000000000002,25.73,25.57,25.240000000000002,N/A,N/A +2012,10,18,2,30,100610,99470,98370,91.41,0,8.14,9.23,9.61,9.93,10.21,10.450000000000001,10.68,10.88,11.25,207.63,207.87,208.01,208.21,208.42000000000002,208.64000000000001,208.88,209.14000000000001,209.70000000000002,26.740000000000002,26.54,26.41,26.240000000000002,26.080000000000002,25.91,25.740000000000002,25.57,25.23,N/A,N/A +2012,10,18,3,30,100610,99470,98370,93.58,0,7.33,8.35,8.700000000000001,9.03,9.31,9.56,9.8,10.040000000000001,10.48,222.12,222.49,222.73000000000002,223.04,223.35,223.69,224.06,224.45000000000002,225.31,26.740000000000002,26.55,26.43,26.27,26.13,25.97,25.82,25.67,25.37,N/A,N/A +2012,10,18,4,30,100630,99490,98390,94.19,0,5.7700000000000005,6.7,7.0600000000000005,7.4,7.7,7.97,8.23,8.47,8.92,209.85,210.02,210.20000000000002,210.43,210.67000000000002,210.95000000000002,211.25,211.57,212.26,26.71,26.52,26.39,26.23,26.080000000000002,25.92,25.76,25.6,25.27,N/A,N/A +2012,10,18,5,30,100640,99500,98390,94.2,0,4.74,5.53,5.8500000000000005,6.17,6.46,6.73,6.98,7.21,7.62,224.06,223.62,223.37,223.24,223.18,223.19,223.24,223.33,223.56,26.66,26.46,26.330000000000002,26.17,26.02,25.85,25.69,25.53,25.2,N/A,N/A +2012,10,18,6,30,100650,99510,98400,93.34,0,5.5600000000000005,6.73,7.25,7.7700000000000005,8.24,8.71,9.19,9.67,10.57,218.94,218.65,218.57,218.68,219.02,219.63,220.6,221.76,224.69,26.67,26.52,26.41,26.27,26.12,25.97,25.810000000000002,25.650000000000002,25.32,N/A,N/A +2012,10,18,7,30,100700,99560,98460,94.43,0,5.0600000000000005,5.97,6.34,6.74,7.12,7.49,7.83,8.15,8.6,225.51,225.88,226.31,227.07,227.82,228.66,229.34,229.91,230.63,26.61,26.44,26.330000000000002,26.19,26.05,25.900000000000002,25.75,25.6,25.28,N/A,N/A +2012,10,18,8,30,100720,99570,98470,93.92,0,5.9,6.69,6.96,7.18,7.3500000000000005,7.49,7.6000000000000005,7.69,7.8,233.89000000000001,234.41,234.86,235.45000000000002,236.06,236.76,237.67000000000002,238.67000000000002,241.53,26.490000000000002,26.28,26.16,26,25.86,25.72,25.59,25.47,25.240000000000002,N/A,N/A +2012,10,18,9,30,100830,99680,98560,92.47,37,8.76,9.47,9.63,9.68,9.700000000000001,9.68,9.65,9.6,9.46,326.85,328,328.19,328.18,328.14,327.97,327.76,327.46,326.65000000000003,25.61,25.3,25.14,24.93,24.75,24.55,24.37,24.19,23.830000000000002,N/A,N/A +2012,10,18,10,30,100860,99700,98580,80.25,0,12.16,13.34,13.61,13.73,13.8,13.84,13.85,13.85,13.81,30.64,30.84,30.93,31,31.080000000000002,31.14,31.2,31.26,31.38,24.21,23.76,23.57,23.36,23.16,22.98,22.78,22.6,22.23,N/A,N/A +2012,10,18,11,30,100930,99770,98640,65.09,0,13,14.26,14.56,14.700000000000001,14.790000000000001,14.84,14.85,14.86,14.85,34.89,35.14,35.29,35.44,35.58,35.72,35.87,36,36.33,23.830000000000002,23.36,23.16,22.95,22.76,22.57,22.37,22.19,21.82,N/A,N/A +2012,10,18,12,30,100980,99810,98680,66.79,0,12.33,13.49,13.76,13.89,13.97,14.02,14.05,14.06,14.07,42.300000000000004,42.56,42.74,42.92,43.1,43.27,43.46,43.64,44.07,23.29,22.79,22.580000000000002,22.37,22.18,21.990000000000002,21.79,21.62,21.25,N/A,N/A +2012,10,18,13,30,101020,99850,98720,68.64,0,11.65,12.68,12.94,13.06,13.13,13.17,13.19,13.200000000000001,13.19,45.7,46.01,46.230000000000004,46.46,46.67,46.89,47.11,47.33,47.81,23.01,22.5,22.29,22.080000000000002,21.88,21.68,21.490000000000002,21.31,20.93,N/A,N/A +2012,10,18,14,30,101080,99910,98770,66.6,0,12.23,13.36,13.65,13.790000000000001,13.88,13.94,13.97,13.99,14,46.28,46.43,46.53,46.62,46.7,46.78,46.86,46.94,47.11,23.05,22.53,22.32,22.1,21.900000000000002,21.71,21.51,21.330000000000002,20.95,N/A,N/A +2012,10,18,15,30,101110,99940,98800,63.64,0,11.540000000000001,12.58,12.84,12.96,13.040000000000001,13.09,13.120000000000001,13.14,13.14,48.74,48.82,48.870000000000005,48.910000000000004,48.95,48.980000000000004,49.02,49.050000000000004,49.13,22.990000000000002,22.48,22.27,22.05,21.85,21.66,21.46,21.28,20.89,N/A,N/A +2012,10,18,16,30,101160,99990,98850,63.52,0,10.22,11.08,11.290000000000001,11.4,11.47,11.51,11.53,11.55,11.56,46.730000000000004,46.77,46.81,46.85,46.88,46.92,46.96,47,47.08,22.990000000000002,22.5,22.3,22.080000000000002,21.88,21.69,21.490000000000002,21.31,20.92,N/A,N/A +2012,10,18,17,30,101180,100010,98880,58.89,0,9.71,10.52,10.72,10.82,10.89,10.93,10.96,10.98,10.99,45.59,45.65,45.69,45.730000000000004,45.76,45.79,45.81,45.84,45.89,23.28,22.81,22.61,22.400000000000002,22.19,22,21.8,21.61,21.23,N/A,N/A +2012,10,18,18,30,101200,100040,98900,55.35,0,8.620000000000001,9.3,9.47,9.55,9.61,9.65,9.67,9.69,9.700000000000001,47.31,47.13,47.02,46.910000000000004,46.800000000000004,46.69,46.58,46.47,46.24,23.72,23.3,23.1,22.89,22.69,22.5,22.3,22.11,21.72,N/A,N/A +2012,10,18,19,30,101220,100050,98920,51.870000000000005,0,7.68,8.27,8.42,8.49,8.540000000000001,8.58,8.6,8.61,8.63,51.57,51.230000000000004,50.99,50.75,50.53,50.31,50.08,49.870000000000005,49.410000000000004,24.29,23.91,23.73,23.52,23.330000000000002,23.14,22.94,22.76,22.37,N/A,N/A +2012,10,18,20,30,101200,100030,98900,48.43,0,7.29,7.86,8,8.06,8.1,8.13,8.14,8.15,8.16,57.67,57.31,57.07,56.82,56.58,56.35,56.11,55.89,55.39,24.78,24.43,24.26,24.060000000000002,23.86,23.67,23.48,23.29,22.91,N/A,N/A +2012,10,18,21,30,101180,100020,98890,46.79,0,6.86,7.42,7.55,7.61,7.66,7.68,7.71,7.72,7.74,60,59.72,59.52,59.31,59.11,58.910000000000004,58.7,58.5,58.06,25.240000000000002,24.93,24.75,24.560000000000002,24.37,24.18,23.98,23.8,23.41,N/A,N/A +2012,10,18,22,30,101180,100030,98900,46.050000000000004,0,6.7,7.26,7.390000000000001,7.46,7.51,7.54,7.57,7.58,7.61,59.74,59.47,59.32,59.160000000000004,59,58.85,58.69,58.52,58.17,25.63,25.34,25.18,24.98,24.79,24.61,24.41,24.23,23.85,N/A,N/A +2012,10,18,23,30,101190,100030,98910,44.34,0,6.57,7.140000000000001,7.28,7.3500000000000005,7.390000000000001,7.43,7.46,7.48,7.5,58.160000000000004,57.94,57.79,57.64,57.5,57.36,57.21,57.07,56.77,25.93,25.67,25.51,25.32,25.13,24.94,24.75,24.57,24.18,N/A,N/A +2012,10,19,0,30,101220,100060,98940,45.94,0,6.82,7.42,7.55,7.63,7.69,7.73,7.76,7.78,7.8100000000000005,44.33,44.050000000000004,43.97,43.910000000000004,43.86,43.82,43.79,43.75,43.7,25.98,25.72,25.560000000000002,25.36,25.18,24.990000000000002,24.79,24.61,24.22,N/A,N/A +2012,10,19,1,30,101270,100110,98980,45.84,0,8.38,9.07,9.22,9.27,9.31,9.32,9.32,9.31,9.27,35.99,36.54,36.88,37.22,37.53,37.82,38.12,38.39,38.96,25.240000000000002,24.92,24.75,24.55,24.36,24.17,23.98,23.79,23.41,N/A,N/A +2012,10,19,2,30,101300,100130,99000,47.43,0,8.4,9.07,9.22,9.28,9.31,9.32,9.32,9.31,9.28,40.660000000000004,41.02,41.28,41.54,41.77,42,42.230000000000004,42.44,42.9,24.76,24.400000000000002,24.23,24.03,23.830000000000002,23.64,23.45,23.27,22.88,N/A,N/A +2012,10,19,3,30,101320,100150,99020,50.18,0,8.49,9.16,9.31,9.370000000000001,9.41,9.43,9.43,9.43,9.4,43.47,43.910000000000004,44.19,44.46,44.7,44.94,45.18,45.4,45.85,24.5,24.12,23.94,23.740000000000002,23.54,23.35,23.150000000000002,22.97,22.580000000000002,N/A,N/A +2012,10,19,4,30,101330,100160,99030,52.94,0,7.930000000000001,8.52,8.65,8.700000000000001,8.73,8.74,8.75,8.74,8.72,43.65,44.21,44.57,44.93,45.25,45.56,45.86,46.14,46.72,24.21,23.830000000000002,23.64,23.44,23.240000000000002,23.05,22.86,22.67,22.29,N/A,N/A +2012,10,19,5,30,101340,100170,99040,53.61,0,7.640000000000001,8.19,8.3,8.35,8.38,8.4,8.4,8.4,8.370000000000001,44.02,44.53,44.86,45.17,45.46,45.730000000000004,46,46.25,46.79,23.94,23.54,23.35,23.150000000000002,22.95,22.76,22.56,22.38,21.990000000000002,N/A,N/A +2012,10,19,6,30,101390,100220,99080,53.79,0,7.42,7.930000000000001,8.040000000000001,8.09,8.11,8.120000000000001,8.120000000000001,8.11,8.09,42.160000000000004,42.6,42.89,43.17,43.44,43.69,43.95,44.19,44.7,23.81,23.400000000000002,23.21,23,22.81,22.62,22.42,22.240000000000002,21.85,N/A,N/A +2012,10,19,7,30,101440,100270,99130,53.83,0,7.5200000000000005,8.05,8.17,8.22,8.25,8.27,8.27,8.28,8.27,40.69,41.15,41.45,41.74,42.02,42.28,42.550000000000004,42.800000000000004,43.34,23.57,23.150000000000002,22.96,22.76,22.57,22.38,22.18,22,21.62,N/A,N/A +2012,10,19,8,30,101460,100290,99150,52.63,0,7.97,8.55,8.68,8.73,8.77,8.790000000000001,8.8,8.8,8.790000000000001,40.300000000000004,40.78,41.1,41.43,41.730000000000004,42.02,42.33,42.61,43.230000000000004,23.37,22.93,22.740000000000002,22.54,22.34,22.150000000000002,21.96,21.78,21.400000000000002,N/A,N/A +2012,10,19,9,30,101470,100300,99150,53.34,0,7.53,8.040000000000001,8.15,8.2,8.23,8.25,8.26,8.26,8.27,35.04,35.38,35.61,35.86,36.1,36.33,36.6,36.85,37.47,22.91,22.46,22.27,22.07,21.88,21.69,21.5,21.330000000000002,20.97,N/A,N/A +2012,10,19,10,30,101500,100330,99190,55.870000000000005,0,7.18,7.65,7.74,7.78,7.79,7.8,7.8,7.8,7.8,38.6,38.980000000000004,39.24,39.53,39.800000000000004,40.08,40.4,40.69,41.45,22.78,22.330000000000002,22.14,21.94,21.75,21.57,21.39,21.22,20.87,N/A,N/A +2012,10,19,11,30,101510,100340,99190,55.61,0,7.33,7.79,7.87,7.9,7.9,7.9,7.88,7.86,7.82,37.92,38.29,38.54,38.79,39.04,39.28,39.57,39.84,40.53,22.7,22.240000000000002,22.05,21.85,21.66,21.48,21.3,21.13,20.78,N/A,N/A +2012,10,19,12,30,101540,100370,99220,54.17,0,7.24,7.7,7.79,7.82,7.84,7.84,7.83,7.82,7.79,41.95,42.32,42.56,42.800000000000004,43.03,43.26,43.51,43.74,44.27,22.72,22.26,22.07,21.87,21.68,21.5,21.31,21.13,20.77,N/A,N/A +2012,10,19,13,30,101550,100370,99230,53.67,0,6.71,7.11,7.18,7.21,7.21,7.21,7.2,7.18,7.15,40.57,40.88,41.06,41.25,41.44,41.61,41.81,41.99,42.4,22.61,22.150000000000002,21.96,21.76,21.57,21.39,21.2,21.02,20.66,N/A,N/A +2012,10,19,14,30,101580,100400,99260,51.76,0,5.98,6.3100000000000005,6.37,6.38,6.390000000000001,6.38,6.37,6.36,6.33,41.63,41.85,42.01,42.17,42.32,42.46,42.61,42.74,43.03,22.81,22.37,22.18,21.98,21.79,21.61,21.42,21.240000000000002,20.88,N/A,N/A +2012,10,19,15,30,101590,100420,99280,48.300000000000004,0,4.87,5.12,5.16,5.17,5.17,5.17,5.16,5.15,5.11,39.17,39.27,39.38,39.47,39.550000000000004,39.62,39.69,39.75,39.85,23.1,22.69,22.51,22.31,22.12,21.94,21.75,21.57,21.21,N/A,N/A +2012,10,19,16,30,101600,100420,99280,42.96,0,4.2,4.39,4.42,4.42,4.41,4.4,4.39,4.38,4.34,33.74,33.75,33.78,33.81,33.82,33.83,33.83,33.84,33.81,23.48,23.09,22.91,22.71,22.52,22.330000000000002,22.14,21.96,21.57,N/A,N/A +2012,10,19,17,30,101580,100410,99270,41.04,0,3.62,3.77,3.79,3.79,3.79,3.7800000000000002,3.7800000000000002,3.77,3.74,27.79,27.79,27.78,27.78,27.76,27.73,27.69,27.650000000000002,27.53,23.61,23.23,23.05,22.85,22.66,22.47,22.27,22.09,21.71,N/A,N/A +2012,10,19,18,30,101560,100390,99250,39.31,0,2.54,2.64,2.66,2.67,2.67,2.68,2.68,2.68,2.69,14.120000000000001,13.75,13.49,13.22,12.96,12.700000000000001,12.41,12.15,11.5,23.740000000000002,23.38,23.2,23,22.8,22.62,22.42,22.240000000000002,21.86,N/A,N/A +2012,10,19,19,30,101540,100360,99230,38.94,0,1.44,1.54,1.57,1.61,1.6500000000000001,1.68,1.72,1.76,1.84,2.11,0.46,359.38,358.34000000000003,357.37,356.45,355.51,354.63,352.82,23.89,23.54,23.36,23.16,22.97,22.78,22.59,22.400000000000002,22.02,N/A,N/A +2012,10,19,20,30,101510,100340,99200,35.29,0,1.71,1.76,1.77,1.77,1.77,1.77,1.77,1.77,1.78,319.09000000000003,318.84000000000003,318.95,319.05,319.15000000000003,319.23,319.33,319.43,319.67,24.5,24.16,23.990000000000002,23.79,23.6,23.41,23.21,23.03,22.64,N/A,N/A +2012,10,19,21,30,101470,100300,99170,35.6,0,2.7800000000000002,2.93,2.96,2.97,2.98,2.99,3,3.0100000000000002,3.02,313.88,314.11,314.27,314.41,314.54,314.65000000000003,314.77,314.87,315.11,24.92,24.6,24.43,24.23,24.04,23.85,23.66,23.47,23.080000000000002,N/A,N/A +2012,10,19,22,30,101440,100270,99140,36.9,0,2.81,3.0100000000000002,3.0500000000000003,3.09,3.11,3.14,3.16,3.18,3.2,310.3,311.31,311.88,312.38,312.81,313.19,313.56,313.89,314.5,25.29,24.98,24.810000000000002,24.62,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A +2012,10,19,23,30,101400,100240,99110,37.74,0,3.3200000000000003,3.52,3.5500000000000003,3.56,3.5700000000000003,3.5700000000000003,3.5700000000000003,3.56,3.5500000000000003,326.66,327,327.17,327.33,327.47,327.61,327.75,327.88,328.18,25.47,25.17,25,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,20,0,30,101400,100240,99110,38.51,0,2.91,3.1,3.12,3.13,3.13,3.13,3.12,3.11,3.09,339.27,339.56,339.71,339.86,340,340.14,340.29,340.43,340.73,25.62,25.330000000000002,25.16,24.97,24.78,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A +2012,10,20,1,30,101410,100250,99120,38.44,0,2.63,2.77,2.77,2.77,2.7600000000000002,2.74,2.73,2.71,2.67,2.02,2.3000000000000003,2.39,2.5100000000000002,2.63,2.77,2.93,3.08,3.48,25.69,25.41,25.25,25.060000000000002,24.87,24.69,24.5,24.310000000000002,23.94,N/A,N/A +2012,10,20,2,30,101420,100260,99130,39.09,0,1.58,1.6400000000000001,1.6300000000000001,1.62,1.61,1.6,1.58,1.57,1.54,42.71,43.660000000000004,44.2,44.75,45.300000000000004,45.83,46.410000000000004,46.95,48.18,25.650000000000002,25.37,25.2,25.01,24.82,24.64,24.44,24.26,23.87,N/A,N/A +2012,10,20,3,30,101400,100230,99100,38.85,0,1.51,1.57,1.56,1.55,1.54,1.52,1.51,1.5,1.47,60.99,61.34,61.52,61.72,61.92,62.120000000000005,62.34,62.550000000000004,63.03,25.59,25.3,25.13,24.94,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A +2012,10,20,4,30,101390,100230,99100,39.22,0,1.33,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3800000000000001,1.37,100.72,101.02,101.08,101.14,101.2,101.28,101.35000000000001,101.42,101.59,25.51,25.22,25.05,24.86,24.67,24.48,24.28,24.1,23.71,N/A,N/A +2012,10,20,5,30,101400,100230,99100,39.78,0,1.48,1.55,1.55,1.54,1.54,1.54,1.54,1.53,1.52,127.71000000000001,127.73,127.64,127.57000000000001,127.48,127.4,127.3,127.21000000000001,127.02,25.43,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A +2012,10,20,6,30,101400,100240,99110,44.7,0,2.0100000000000002,2.0100000000000002,1.97,1.92,1.87,1.83,1.78,1.74,1.6600000000000001,180.48,179.41,178.65,177.87,177.13,176.41,175.64000000000001,174.94,173.31,25.150000000000002,24.85,24.68,24.490000000000002,24.3,24.11,23.92,23.73,23.35,N/A,N/A +2012,10,20,7,30,101420,100260,99120,44.99,0,1.96,2.05,2.06,2.07,2.07,2.07,2.07,2.07,2.06,166.74,167.01,167.23,167.41,167.58,167.73,167.86,167.98,168.17000000000002,24.98,24.67,24.5,24.3,24.11,23.92,23.73,23.54,23.16,N/A,N/A +2012,10,20,8,30,101410,100250,99120,46.54,0,1.96,2.04,2.05,2.05,2.05,2.04,2.04,2.04,2.02,173.47,173.20000000000002,173.12,173.01,172.93,172.85,172.74,172.63,172.41,24.900000000000002,24.59,24.42,24.22,24.03,23.85,23.650000000000002,23.46,23.080000000000002,N/A,N/A +2012,10,20,9,30,101420,100250,99120,47.31,0,2.39,2.49,2.49,2.48,2.48,2.47,2.46,2.45,2.43,162.34,162.66,162.83,163.01,163.18,163.36,163.51,163.66,164.02,24.91,24.59,24.42,24.23,24.03,23.85,23.650000000000002,23.47,23.080000000000002,N/A,N/A +2012,10,20,10,30,101420,100250,99120,49.82,0,2.74,2.88,2.9,2.91,2.91,2.91,2.91,2.91,2.91,158.64000000000001,158.97,159.17000000000002,159.37,159.55,159.72,159.88,160.04,160.38,24.86,24.54,24.37,24.17,23.98,23.79,23.59,23.41,23.02,N/A,N/A +2012,10,20,11,30,101430,100270,99140,50.47,0,3.12,3.2800000000000002,3.3000000000000003,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,152.59,152.99,153.24,153.49,153.71,153.92000000000002,154.14000000000001,154.35,154.8,24.85,24.53,24.36,24.16,23.97,23.78,23.59,23.400000000000002,23.02,N/A,N/A +2012,10,20,12,30,101450,100280,99150,53.050000000000004,0,4.34,4.6000000000000005,4.64,4.66,4.67,4.68,4.68,4.68,4.67,151.22,151.51,151.70000000000002,151.89000000000001,152.06,152.21,152.39000000000001,152.55,152.88,24.84,24.51,24.34,24.14,23.95,23.76,23.57,23.38,23,N/A,N/A +2012,10,20,13,30,101440,100280,99150,54.72,0,4.74,5.07,5.13,5.17,5.19,5.21,5.22,5.23,5.25,152.05,152.37,152.53,152.69,152.84,152.98,153.12,153.25,153.53,24.89,24.560000000000002,24.39,24.19,24,23.81,23.61,23.43,23.05,N/A,N/A +2012,10,20,14,30,101460,100290,99160,55.550000000000004,0,5.37,5.76,5.84,5.88,5.91,5.92,5.93,5.94,5.95,151.18,151.42000000000002,151.57,151.71,151.85,151.97,152.1,152.22,152.47,25.01,24.69,24.51,24.32,24.13,23.94,23.740000000000002,23.56,23.17,N/A,N/A +2012,10,20,15,30,101460,100300,99170,55.49,0,6.24,6.74,6.8500000000000005,6.91,6.95,6.97,6.99,7.01,7.03,148.66,148.96,149.12,149.28,149.43,149.57,149.71,149.84,150.11,25.16,24.85,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A +2012,10,20,16,30,101450,100280,99150,57.11,0,6.61,7.17,7.29,7.36,7.41,7.44,7.47,7.49,7.5200000000000005,152.32,152.52,152.64000000000001,152.77,152.88,152.99,153.1,153.20000000000002,153.41,25.25,24.93,24.76,24.57,24.38,24.19,23.990000000000002,23.81,23.42,N/A,N/A +2012,10,20,17,30,101410,100250,99120,59.230000000000004,0,6.68,7.25,7.38,7.46,7.51,7.55,7.58,7.6000000000000005,7.63,155.01,155.20000000000002,155.31,155.43,155.53,155.64000000000001,155.75,155.85,156.07,25.310000000000002,24.990000000000002,24.830000000000002,24.63,24.44,24.25,24.05,23.87,23.48,N/A,N/A +2012,10,20,18,30,101390,100220,99100,59.21,0,6.67,7.2700000000000005,7.4,7.47,7.53,7.5600000000000005,7.59,7.61,7.640000000000001,152.62,152.65,152.78,152.91,153.04,153.18,153.31,153.45000000000002,153.72,25.43,25.12,24.95,24.75,24.560000000000002,24.37,24.18,23.990000000000002,23.6,N/A,N/A +2012,10,20,19,30,101360,100190,99070,59.88,0,6.78,7.41,7.5600000000000005,7.65,7.72,7.76,7.8,7.83,7.890000000000001,158.98,159.09,159.20000000000002,159.31,159.41,159.5,159.6,159.69,159.89000000000001,25.5,25.2,25.03,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A +2012,10,20,20,30,101340,100180,99050,62.88,0,7.46,8.17,8.33,8.43,8.49,8.540000000000001,8.57,8.59,8.620000000000001,159.07,159.34,159.47,159.59,159.68,159.77,159.84,159.92000000000002,160.05,25.560000000000002,25.27,25.1,24.91,24.72,24.53,24.34,24.150000000000002,23.76,N/A,N/A +2012,10,20,21,30,101310,100150,99030,63.85,0,7.7,8.43,8.6,8.69,8.76,8.8,8.83,8.85,8.88,154.4,154.93,155.25,155.56,155.84,156.1,156.37,156.61,157.09,25.59,25.3,25.13,24.93,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A +2012,10,20,22,30,101290,100140,99010,65.21000000000001,0,7.75,8.52,8.71,8.82,8.9,8.96,9.01,9.040000000000001,9.09,159.68,159.97,160.15,160.35,160.54,160.72,160.91,161.09,161.45000000000002,25.67,25.38,25.22,25.02,24.830000000000002,24.64,24.45,24.26,23.88,N/A,N/A +2012,10,20,23,30,101270,100120,98990,66.27,0,8.11,8.91,9.1,9.21,9.290000000000001,9.34,9.38,9.41,9.450000000000001,165.26,165.38,165.42000000000002,165.45000000000002,165.48,165.5,165.52,165.54,165.56,25.78,25.5,25.34,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.01,N/A,N/A +2012,10,21,0,30,101270,100110,98990,64.07000000000001,0,8.56,9.43,9.63,9.74,9.82,9.86,9.89,9.92,9.93,168.12,168.13,168.1,168.04,167.98,167.91,167.84,167.77,167.63,25.93,25.67,25.51,25.32,25.13,24.95,24.75,24.57,24.19,N/A,N/A +2012,10,21,1,30,101280,100120,99000,67.05,0,8.950000000000001,9.870000000000001,10.09,10.21,10.28,10.33,10.36,10.39,10.4,163.35,163.42000000000002,163.5,163.6,163.68,163.77,163.87,163.96,164.15,25.85,25.580000000000002,25.41,25.22,25.03,24.85,24.650000000000002,24.47,24.09,N/A,N/A +2012,10,21,2,30,101270,100110,98990,69.83,0,8.81,9.75,9.98,10.120000000000001,10.22,10.3,10.35,10.4,10.47,169.57,169.39000000000001,169.36,169.36,169.37,169.38,169.41,169.44,169.5,25.86,25.580000000000002,25.42,25.22,25.04,24.85,24.66,24.47,24.09,N/A,N/A +2012,10,21,3,30,101280,100130,99010,68.07000000000001,0,9.24,10.19,10.43,10.56,10.66,10.72,10.77,10.8,10.85,172.98,173.02,173.01,172.98,172.95000000000002,172.9,172.86,172.81,172.72,25.990000000000002,25.73,25.57,25.38,25.19,25.01,24.810000000000002,24.63,24.25,N/A,N/A +2012,10,21,4,30,101280,100130,99000,69.56,0,9.67,10.69,10.94,11.08,11.17,11.23,11.27,11.3,11.34,172.56,172.46,172.45000000000002,172.46,172.47,172.49,172.52,172.55,172.62,25.91,25.650000000000002,25.490000000000002,25.3,25.11,24.93,24.73,24.55,24.17,N/A,N/A +2012,10,21,5,30,101280,100130,99010,69.31,0,8.98,9.94,10.18,10.32,10.43,10.51,10.57,10.620000000000001,10.69,174.61,174.56,174.53,174.51,174.47,174.44,174.4,174.36,174.29,26.02,25.76,25.6,25.400000000000002,25.22,25.04,24.84,24.66,24.28,N/A,N/A +2012,10,21,6,30,101310,100160,99030,71.16,0,9.06,10.040000000000001,10.28,10.43,10.540000000000001,10.61,10.67,10.72,10.78,174.4,174.25,174.19,174.13,174.07,174.02,173.98,173.95000000000002,173.86,25.98,25.71,25.55,25.36,25.18,24.990000000000002,24.79,24.61,24.23,N/A,N/A +2012,10,21,7,30,101340,100190,99060,73.4,0,9.52,10.49,10.75,10.9,11,11.09,11.15,11.21,11.290000000000001,175.53,175.86,176.01,176.15,176.27,176.38,176.48,176.58,176.76,25.89,25.62,25.46,25.26,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A +2012,10,21,8,30,101350,100190,99070,77.47,0,9.15,10.16,10.42,10.59,10.71,10.790000000000001,10.86,10.91,10.97,177.70000000000002,177.82,177.87,177.9,177.93,177.96,177.97,177.99,178.02,25.86,25.59,25.43,25.240000000000002,25.05,24.87,24.68,24.490000000000002,24.11,N/A,N/A +2012,10,21,9,30,101370,100210,99090,71.88,0,9.6,10.64,10.91,11.06,11.17,11.24,11.290000000000001,11.33,11.38,175.88,176.22,176.32,176.39000000000001,176.45000000000002,176.48,176.52,176.55,176.59,25.98,25.73,25.57,25.38,25.2,25.01,24.82,24.64,24.26,N/A,N/A +2012,10,21,10,30,101410,100250,99130,74.21000000000001,0,9.21,10.23,10.48,10.63,10.73,10.8,10.85,10.89,10.93,174.15,174.48,174.62,174.74,174.85,174.94,175.03,175.12,175.28,25.900000000000002,25.64,25.48,25.28,25.1,24.91,24.72,24.54,24.150000000000002,N/A,N/A +2012,10,21,11,30,101420,100260,99140,76.27,0,8.64,9.540000000000001,9.76,9.89,9.97,10.03,10.07,10.1,10.120000000000001,173.68,174.21,174.49,174.76,175,175.21,175.42000000000002,175.61,176,25.85,25.580000000000002,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A +2012,10,21,12,30,101470,100310,99190,76.11,0,9.32,10.31,10.55,10.68,10.77,10.81,10.83,10.84,10.82,169.8,170.04,170.28,170.59,170.89000000000001,171.19,171.51,171.8,172.44,25.810000000000002,25.54,25.38,25.19,25.01,24.82,24.62,24.44,24.060000000000002,N/A,N/A +2012,10,21,13,30,101500,100340,99220,71.18,0,7.930000000000001,8.77,8.98,9.120000000000001,9.22,9.290000000000001,9.34,9.39,9.46,168.13,168.28,168.44,168.62,168.78,168.95000000000002,169.12,169.27,169.61,26.04,25.78,25.62,25.43,25.25,25.060000000000002,24.87,24.69,24.310000000000002,N/A,N/A +2012,10,21,14,30,101540,100380,99260,75.97,0,7.3,8.05,8.24,8.370000000000001,8.46,8.52,8.57,8.620000000000001,8.68,172.81,172.98,173.07,173.17000000000002,173.25,173.32,173.4,173.46,173.6,25.94,25.67,25.51,25.32,25.14,24.95,24.75,24.57,24.19,N/A,N/A +2012,10,21,15,30,101560,100410,99280,76.56,0,7.7700000000000005,8.55,8.73,8.85,8.94,9,9.040000000000001,9.08,9.13,172.36,172.9,173.11,173.29,173.43,173.55,173.64000000000001,173.73,173.86,25.900000000000002,25.63,25.47,25.28,25.09,24.900000000000002,24.71,24.53,24.14,N/A,N/A +2012,10,21,16,30,101570,100410,99290,75.56,0,8.05,8.82,8.99,9.06,9.1,9.120000000000001,9.120000000000001,9.11,9.07,165.84,166.06,166.22,166.39000000000001,166.55,166.70000000000002,166.84,166.98,167.26,25.85,25.580000000000002,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.09,N/A,N/A +2012,10,21,17,30,101570,100410,99280,69.77,0,7.1000000000000005,7.78,7.95,8.040000000000001,8.11,8.16,8.2,8.23,8.28,170.38,170.33,170.29,170.24,170.19,170.14000000000001,170.1,170.06,169.96,26.04,25.79,25.63,25.44,25.26,25.07,24.88,24.7,24.32,N/A,N/A +2012,10,21,18,30,101570,100410,99290,73.27,0,7.1000000000000005,7.8100000000000005,7.98,8.08,8.15,8.2,8.24,8.27,8.3,170.17000000000002,169.99,169.92000000000002,169.86,169.82,169.77,169.74,169.71,169.66,25.990000000000002,25.72,25.560000000000002,25.37,25.18,24.990000000000002,24.8,24.61,24.23,N/A,N/A +2012,10,21,19,30,101560,100400,99280,72.43,0,7.17,7.91,8.1,8.22,8.31,8.38,8.44,8.48,8.540000000000001,163.59,164.07,164.34,164.57,164.76,164.93,165.08,165.21,165.45000000000002,26.09,25.830000000000002,25.67,25.48,25.29,25.11,24.91,24.73,24.35,N/A,N/A +2012,10,21,20,30,101560,100400,99270,75,0,7.2700000000000005,7.98,8.16,8.25,8.32,8.370000000000001,8.4,8.42,8.44,156.18,156.3,156.42000000000002,156.55,156.67000000000002,156.79,156.9,157.01,157.24,25.91,25.650000000000002,25.490000000000002,25.29,25.11,24.92,24.72,24.54,24.16,N/A,N/A +2012,10,21,21,30,101530,100370,99250,72.72,0,7.5600000000000005,8.290000000000001,8.47,8.57,8.65,8.700000000000001,8.74,8.77,8.81,160.32,160.45000000000002,160.5,160.52,160.53,160.52,160.5,160.48,160.43,25.990000000000002,25.73,25.57,25.38,25.2,25.01,24.82,24.64,24.25,N/A,N/A +2012,10,21,22,30,101530,100370,99250,75.23,0,7.72,8.55,8.76,8.89,8.98,9.05,9.1,9.14,9.19,154.62,154.73,154.84,154.95000000000002,155.05,155.16,155.26,155.35,155.54,25.93,25.66,25.5,25.3,25.12,24.93,24.740000000000002,24.55,24.17,N/A,N/A +2012,10,21,23,30,101510,100350,99230,74.12,0,8.85,9.76,9.97,10.09,10.17,10.23,10.26,10.28,10.290000000000001,157.33,157.66,157.78,157.89000000000001,157.97,158.04,158.1,158.16,158.26,25.89,25.62,25.46,25.27,25.080000000000002,24.900000000000002,24.7,24.52,24.14,N/A,N/A +2012,10,22,0,30,101520,100360,99240,75.60000000000001,0,9.19,10.25,10.51,10.68,10.790000000000001,10.86,10.9,10.94,10.97,153.56,153.59,153.62,153.63,153.64000000000001,153.64000000000001,153.64000000000001,153.64000000000001,153.62,25.8,25.52,25.36,25.16,24.97,24.79,24.59,24.400000000000002,24.02,N/A,N/A +2012,10,22,1,30,101520,100360,99230,73.12,0,7.57,8.33,8.540000000000001,8.68,8.78,8.86,8.93,8.98,9.08,155.23,155.25,155.23,155.20000000000002,155.16,155.13,155.09,155.05,154.97,25.810000000000002,25.54,25.38,25.18,25,24.810000000000002,24.62,24.43,24.05,N/A,N/A +2012,10,22,2,30,101530,100370,99240,72.5,0,9.41,10.39,10.64,10.790000000000001,10.89,10.96,11.01,11.05,11.09,153.71,153.9,154.01,154.11,154.20000000000002,154.28,154.36,154.44,154.58,25.830000000000002,25.560000000000002,25.41,25.21,25.03,24.84,24.650000000000002,24.47,24.09,N/A,N/A +2012,10,22,3,30,101520,100360,99240,70.77,0,8.65,9.5,9.71,9.82,9.9,9.96,9.99,10.02,10.06,154.35,154.29,154.29,154.3,154.31,154.32,154.34,154.35,154.38,25.8,25.53,25.37,25.18,25,24.810000000000002,24.61,24.43,24.05,N/A,N/A +2012,10,22,4,30,101500,100340,99220,66.78,0,8.5,9.35,9.58,9.72,9.81,9.89,9.950000000000001,10,10.07,164.33,163.99,163.8,163.61,163.45000000000002,163.29,163.14000000000001,163,162.73,25.91,25.66,25.51,25.310000000000002,25.13,24.95,24.75,24.57,24.2,N/A,N/A +2012,10,22,5,30,101500,100340,99220,68.55,0,8.96,9.77,9.950000000000001,10.03,10.08,10.11,10.13,10.14,10.14,161.92000000000002,162.07,162.03,161.94,161.83,161.71,161.58,161.44,161.15,25.82,25.55,25.39,25.2,25.01,24.830000000000002,24.63,24.45,24.060000000000002,N/A,N/A +2012,10,22,6,30,101520,100360,99230,69.76,0,9.290000000000001,10.21,10.44,10.56,10.65,10.72,10.76,10.8,10.85,157.21,157.97,158.37,158.76,159.13,159.45000000000002,159.79,160.1,160.71,25.84,25.57,25.400000000000002,25.22,25.03,24.84,24.650000000000002,24.46,24.080000000000002,N/A,N/A +2012,10,22,7,30,101540,100380,99250,73.07000000000001,0,8.78,9.76,10.03,10.200000000000001,10.32,10.42,10.5,10.57,10.67,162.9,163.25,163.39000000000001,163.51,163.61,163.70000000000002,163.79,163.87,164,25.73,25.44,25.28,25.09,24.900000000000002,24.71,24.52,24.330000000000002,23.95,N/A,N/A +2012,10,22,8,30,101540,100380,99250,75.65,0,8.98,9.88,10.08,10.18,10.24,10.27,10.28,10.290000000000001,10.27,158.93,158.97,159,159.02,159.03,159.04,159.04,159.03,159.02,25.59,25.3,25.14,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A +2012,10,22,9,30,101560,100400,99280,75.3,0,7.86,8.700000000000001,8.91,9.040000000000001,9.13,9.200000000000001,9.25,9.290000000000001,9.34,160.38,159.8,159.67000000000002,159.59,159.56,159.55,159.56,159.58,159.67000000000002,25.67,25.37,25.2,25.01,24.810000000000002,24.62,24.43,24.240000000000002,23.85,N/A,N/A +2012,10,22,10,30,101580,100420,99290,75.03,0,7.98,8.790000000000001,8.99,9.1,9.18,9.23,9.27,9.290000000000001,9.33,158.9,158.47,158.3,158.14000000000001,158.01,157.88,157.76,157.65,157.43,25.560000000000002,25.26,25.09,24.89,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A +2012,10,22,11,30,101620,100450,99330,78.12,0,7.49,8.22,8.39,8.5,8.58,8.63,8.67,8.71,8.76,154.4,154.35,154.36,154.37,154.4,154.42000000000002,154.45000000000002,154.48,154.54,25.5,25.19,25.02,24.82,24.63,24.44,24.240000000000002,24.060000000000002,23.67,N/A,N/A +2012,10,22,12,30,101620,100460,99340,78.8,0,7.37,8.08,8.25,8.34,8.4,8.45,8.47,8.5,8.52,152.73,152.73,152.84,152.96,153.07,153.19,153.32,153.45000000000002,153.71,25.45,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A +2012,10,22,13,30,101670,100510,99380,74.89,0,6.92,7.63,7.82,7.96,8.06,8.14,8.22,8.28,8.4,150.29,150.43,150.53,150.62,150.70000000000002,150.78,150.86,150.93,151.09,25.57,25.28,25.12,24.93,24.75,24.560000000000002,24.37,24.19,23.81,N/A,N/A +2012,10,22,14,30,101680,100520,99390,77.98,0,6.99,7.7,7.87,7.97,8.040000000000001,8.1,8.14,8.17,8.22,152.42000000000002,152.23,152.08,151.92000000000002,151.77,151.62,151.47,151.32,151.02,25.54,25.240000000000002,25.07,24.87,24.68,24.5,24.3,24.12,23.73,N/A,N/A +2012,10,22,15,30,101690,100530,99400,75.39,0,6.87,7.48,7.62,7.7,7.75,7.78,7.8,7.82,7.8500000000000005,149.31,149.20000000000002,149.18,149.14000000000001,149.1,149.06,149.02,148.97,148.87,25.55,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A +2012,10,22,16,30,101690,100530,99400,78.3,0,6.32,6.95,7.11,7.21,7.29,7.3500000000000005,7.4,7.44,7.51,138.89000000000001,139.46,139.78,140.07,140.33,140.57,140.8,141.01,141.41,25.57,25.26,25.09,24.900000000000002,24.71,24.52,24.32,24.14,23.75,N/A,N/A +2012,10,22,17,30,101690,100520,99400,77.60000000000001,0,6.03,6.55,6.67,6.74,6.79,6.83,6.86,6.88,6.91,134.13,134.34,134.54,134.74,134.93,135.11,135.31,135.49,135.86,25.580000000000002,25.28,25.11,24.91,24.72,24.53,24.34,24.150000000000002,23.77,N/A,N/A +2012,10,22,18,30,101670,100510,99380,77.35000000000001,0,5.79,6.24,6.33,6.36,6.38,6.38,6.37,6.37,6.34,138.19,138.64000000000001,138.9,139.18,139.44,139.68,139.94,140.19,140.71,25.61,25.3,25.13,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A +2012,10,22,19,30,101660,100500,99380,75.56,0,6.69,7.2700000000000005,7.390000000000001,7.44,7.46,7.48,7.48,7.47,7.45,132.36,132.82,133.04,133.24,133.42000000000002,133.59,133.75,133.9,134.21,25.740000000000002,25.44,25.28,25.080000000000002,24.89,24.7,24.5,24.32,23.93,N/A,N/A +2012,10,22,20,30,101650,100490,99360,77.51,0,5.72,6.21,6.32,6.38,6.42,6.45,6.46,6.48,6.49,139.94,139.37,139.17000000000002,139.03,138.9,138.81,138.72,138.65,138.53,25.650000000000002,25.34,25.18,24.98,24.79,24.6,24.41,24.22,23.84,N/A,N/A +2012,10,22,21,30,101640,100480,99350,77.15,0,5.16,5.61,5.72,5.79,5.84,5.88,5.91,5.94,5.98,138.20000000000002,138.03,137.98,137.95000000000002,137.94,137.93,137.92000000000002,137.91,137.92000000000002,25.63,25.330000000000002,25.17,24.97,24.78,24.6,24.400000000000002,24.21,23.830000000000002,N/A,N/A +2012,10,22,22,30,101620,100450,99330,77.05,0,5.0200000000000005,5.48,5.58,5.65,5.7,5.73,5.76,5.78,5.8100000000000005,126.88000000000001,127.68,128.15,128.6,129.02,129.41,129.8,130.16,130.91,25.57,25.27,25.1,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A +2012,10,22,23,30,101600,100440,99320,79.14,0,6.18,6.75,6.88,6.96,7.01,7.04,7.07,7.08,7.1000000000000005,127.19,127.63000000000001,127.84,128.03,128.2,128.35,128.49,128.61,128.84,25.400000000000002,25.080000000000002,24.91,24.72,24.53,24.34,24.14,23.95,23.57,N/A,N/A +2012,10,23,0,30,101590,100430,99300,76.01,0,6.55,7.1000000000000005,7.22,7.28,7.33,7.3500000000000005,7.37,7.390000000000001,7.4,130.29,130.74,130.99,131.23,131.45,131.66,131.86,132.04,132.43,25.34,25.03,24.86,24.66,24.47,24.28,24.09,23.900000000000002,23.52,N/A,N/A +2012,10,23,1,30,101590,100420,99300,75.42,0,7.07,7.61,7.72,7.7700000000000005,7.8,7.8100000000000005,7.82,7.82,7.83,137.88,137.51,137.38,137.28,137.21,137.14000000000001,137.09,137.04,136.97,25.28,24.96,24.79,24.6,24.41,24.22,24.03,23.84,23.46,N/A,N/A +2012,10,23,2,30,101570,100410,99280,74.05,0,5.83,6.36,6.5,6.58,6.65,6.7,6.74,6.78,6.8500000000000005,132.27,132.5,132.69,132.88,133.06,133.25,133.44,133.61,133.98,25.28,24.96,24.79,24.59,24.400000000000002,24.21,24.02,23.830000000000002,23.45,N/A,N/A +2012,10,23,3,30,101580,100420,99290,74.82000000000001,0,6.5600000000000005,7.16,7.32,7.43,7.51,7.57,7.63,7.67,7.75,135.18,135.14000000000001,135.14000000000001,135.14000000000001,135.15,135.17000000000002,135.19,135.2,135.25,25.18,24.85,24.68,24.48,24.28,24.1,23.900000000000002,23.71,23.32,N/A,N/A +2012,10,23,4,30,101550,100390,99270,78.76,0,7.3,7.94,8.1,8.17,8.22,8.26,8.28,8.290000000000001,8.3,131.49,131.77,131.92000000000002,132.06,132.18,132.29,132.39000000000001,132.48,132.66,25.02,24.68,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.16,N/A,N/A +2012,10,23,5,30,101530,100370,99250,75.14,0,6.88,7.51,7.68,7.78,7.8500000000000005,7.9,7.95,7.98,8.040000000000001,141.1,140.78,140.68,140.61,140.56,140.52,140.49,140.46,140.43,25.23,24.900000000000002,24.73,24.54,24.35,24.16,23.96,23.78,23.39,N/A,N/A +2012,10,23,6,30,101520,100360,99230,72.87,0,6.8100000000000005,7.49,7.67,7.78,7.86,7.92,7.97,8.02,8.08,143.11,142.61,142.38,142.19,142.02,141.87,141.72,141.6,141.35,25.3,24.98,24.810000000000002,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A +2012,10,23,7,30,101530,100370,99250,75.13,0,7.58,8.32,8.51,8.63,8.73,8.8,8.85,8.9,8.98,142.68,143.63,144.1,144.51,144.86,145.18,145.47,145.75,146.24,25.26,24.96,24.79,24.6,24.41,24.23,24.03,23.85,23.47,N/A,N/A +2012,10,23,8,30,101540,100380,99250,76.61,0,7.13,7.75,7.9,7.97,8.03,8.06,8.08,8.1,8.11,143.01,143.21,143.37,143.56,143.74,143.91,144.1,144.27,144.64000000000001,25.2,24.88,24.71,24.51,24.32,24.13,23.93,23.75,23.36,N/A,N/A +2012,10,23,9,30,101520,100360,99240,75.84,0,6.0200000000000005,6.61,6.76,6.8500000000000005,6.92,6.97,7.01,7.04,7.09,147.21,146.99,146.99,147.02,147.06,147.11,147.17000000000002,147.23,147.37,25.22,24.900000000000002,24.72,24.52,24.330000000000002,24.14,23.94,23.76,23.37,N/A,N/A +2012,10,23,10,30,101540,100380,99260,72.93,0,6.29,6.8500000000000005,6.98,7.05,7.1000000000000005,7.140000000000001,7.17,7.2,7.24,150.18,150.03,149.95000000000002,149.86,149.78,149.71,149.64000000000001,149.58,149.47,25.400000000000002,25.1,24.93,24.73,24.54,24.36,24.16,23.97,23.59,N/A,N/A +2012,10,23,11,30,101550,100380,99260,73.14,0,5.82,6.2700000000000005,6.3500000000000005,6.390000000000001,6.41,6.42,6.42,6.42,6.41,151.19,151.41,151.58,151.75,151.91,152.06,152.20000000000002,152.34,152.62,25.36,25.05,24.89,24.69,24.5,24.32,24.12,23.93,23.55,N/A,N/A +2012,10,23,12,30,101570,100410,99290,71.2,0,5.66,6.1000000000000005,6.19,6.22,6.24,6.24,6.25,6.25,6.24,158.37,157.82,157.47,157.1,156.76,156.44,156.13,155.83,155.25,25.47,25.17,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,23,13,30,101570,100410,99280,71.95,0,4.8,5.26,5.37,5.44,5.49,5.54,5.57,5.6000000000000005,5.64,156.88,156.53,156.36,156.20000000000002,156.07,155.94,155.82,155.71,155.49,25.43,25.13,24.96,24.77,24.580000000000002,24.39,24.19,24.01,23.62,N/A,N/A +2012,10,23,14,30,101600,100430,99310,73.18,0,4.66,5.0200000000000005,5.09,5.13,5.15,5.17,5.18,5.19,5.2,151.76,151.96,152.05,152.1,152.15,152.19,152.22,152.24,152.27,25.39,25.080000000000002,24.92,24.72,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A +2012,10,23,15,30,101600,100430,99310,72.76,0,3.67,3.94,4,4.04,4.0600000000000005,4.08,4.1,4.11,4.13,159.13,158.25,157.70000000000002,157.18,156.71,156.27,155.84,155.44,154.63,25.45,25.150000000000002,24.990000000000002,24.79,24.61,24.42,24.22,24.04,23.650000000000002,N/A,N/A +2012,10,23,16,30,101610,100450,99320,72.83,0,3.47,3.73,3.79,3.84,3.87,3.9,3.92,3.95,3.99,137.89000000000001,138.47,138.81,139.1,139.34,139.57,139.77,139.95000000000002,140.3,25.44,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A +2012,10,23,17,30,101600,100440,99310,72.32000000000001,0,3.61,3.88,3.95,3.99,4.0200000000000005,4.05,4.07,4.09,4.12,129.41,129.7,129.91,130.09,130.25,130.41,130.56,130.7,130.98,25.5,25.18,25.01,24.82,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,23,18,30,101580,100420,99290,74,0,3.43,3.66,3.7,3.73,3.75,3.77,3.7800000000000002,3.79,3.81,125.5,126.37,126.87,127.34,127.75,128.13,128.5,128.85,129.53,25.51,25.18,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,23,19,30,101560,100400,99280,74.73,0,3.31,3.5,3.54,3.56,3.5700000000000003,3.58,3.58,3.59,3.59,123.38000000000001,123.61,123.78,123.94,124.08,124.22,124.35000000000001,124.48,124.76,25.45,25.12,24.95,24.75,24.560000000000002,24.37,24.17,23.990000000000002,23.6,N/A,N/A +2012,10,23,20,30,101540,100380,99250,74.67,0,2.99,3.18,3.22,3.25,3.27,3.2800000000000002,3.3000000000000003,3.31,3.34,115.51,115.57000000000001,115.66,115.74000000000001,115.82000000000001,115.9,115.98,116.05,116.22,25.47,25.14,24.97,24.77,24.580000000000002,24.39,24.19,24,23.62,N/A,N/A +2012,10,23,21,30,101530,100370,99250,75.47,0,3.18,3.37,3.42,3.44,3.46,3.47,3.48,3.49,3.5100000000000002,117.26,117.63,117.88,118.11,118.32000000000001,118.52,118.72,118.9,119.26,25.490000000000002,25.17,25,24.8,24.61,24.42,24.23,24.04,23.66,N/A,N/A +2012,10,23,22,30,101520,100360,99230,77.97,0,3.58,3.8200000000000003,3.87,3.91,3.93,3.94,3.96,3.97,3.98,116.22,116.49000000000001,116.7,116.91,117.11,117.3,117.5,117.68,118.06,25.400000000000002,25.09,24.92,24.72,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A +2012,10,23,23,30,101490,100330,99200,79.47,0,3.77,4.0200000000000005,4.07,4.09,4.11,4.12,4.12,4.13,4.13,106.91,107.32000000000001,107.54,107.77,107.99000000000001,108.2,108.43,108.65,109.16,-23.150000000000002,24.89,24.72,24.52,24.330000000000002,24.14,23.95,23.76,23.38,N/A,N/A +2012,10,24,0,30,101500,100340,99210,80.66,0,4.09,4.36,4.4,4.42,4.43,4.43,4.43,4.42,4.4,112.77,112.65,112.63,112.64,112.65,112.68,112.71000000000001,112.75,112.82000000000001,25.16,24.84,24.67,24.47,24.28,24.1,23.900000000000002,23.71,23.330000000000002,N/A,N/A +2012,10,24,1,30,101500,100340,99210,82.59,0,4.4,4.72,4.79,4.83,4.86,4.88,4.9,4.91,4.93,108.09,108.24000000000001,108.32000000000001,108.41,108.48,108.56,108.65,108.74000000000001,108.93,25.060000000000002,24.73,24.560000000000002,24.36,24.18,23.990000000000002,23.79,23.6,23.22,N/A,N/A +2012,10,24,2,30,101490,100330,99210,83.91,0,4.21,4.5,4.57,4.61,4.64,4.66,4.67,4.68,4.69,111.62,112.16,112.39,112.59,112.77,112.94,113.12,113.28,113.64,25.07,24.75,24.580000000000002,24.38,24.19,24,23.81,23.63,23.240000000000002,N/A,N/A +2012,10,24,3,30,101490,100330,99200,83.49,0,4.49,4.82,4.89,4.93,4.96,4.98,5,5.0200000000000005,5.04,119.32000000000001,119.49000000000001,119.56,119.63,119.71000000000001,119.78,119.86,119.94,120.13,25.150000000000002,24.830000000000002,24.66,24.46,24.27,24.09,23.89,23.71,23.330000000000002,N/A,N/A +2012,10,24,4,30,101470,100310,99190,83.84,0,5,5.44,5.55,5.62,5.66,5.7,5.74,5.76,5.8100000000000005,126.93,127.14,127.25,127.36,127.46000000000001,127.55,127.64,127.73,127.93,25.28,24.96,24.79,24.6,24.41,24.22,24.02,23.84,23.45,N/A,N/A +2012,10,24,5,30,101480,100320,99190,83.58,0,5.3500000000000005,5.8,5.91,5.97,6.01,6.05,6.07,6.09,6.13,130.91,131.44,131.75,132.05,132.32,132.59,132.86,133.11,133.65,25.32,25,24.84,24.64,24.45,24.26,24.07,23.89,23.5,N/A,N/A +2012,10,24,6,30,101480,100320,99190,83.53,0,4.65,5.03,5.11,5.17,5.2,5.23,5.26,5.2700000000000005,5.3100000000000005,135.8,136.07,136.2,136.3,136.38,136.47,136.54,136.61,136.76,25.48,25.17,25,24.810000000000002,24.62,24.43,24.23,24.05,23.67,N/A,N/A +2012,10,24,7,30,101500,100340,99210,84.38,0,5.4,5.89,6.01,6.09,6.140000000000001,6.19,6.23,6.26,6.3100000000000005,138.12,138.32,138.43,138.54,138.65,138.75,138.84,138.94,139.14000000000001,25.52,25.22,25.05,24.85,24.67,24.48,24.28,24.1,23.71,N/A,N/A +2012,10,24,8,30,101490,100330,99200,84.54,0,5.82,6.36,6.49,6.5600000000000005,6.61,6.65,6.67,6.7,6.73,152.29,152.13,152.01,151.88,151.75,151.63,151.51,151.39000000000001,151.14000000000001,25.52,25.21,25.04,24.85,24.66,24.47,24.28,24.1,23.72,N/A,N/A +2012,10,24,9,30,101490,100330,99210,85.59,0,5.79,6.3100000000000005,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.57,145.89000000000001,146.20000000000002,146.37,146.54,146.69,146.83,146.97,147.09,147.35,25.57,25.26,25.09,24.900000000000002,24.71,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A +2012,10,24,10,30,101500,100340,99220,84.23,0,5.66,6.23,6.38,6.49,6.58,6.65,6.71,6.76,6.8500000000000005,147.58,148.55,148.94,149.29,149.59,149.86,150.11,150.34,150.76,25.73,25.45,25.29,25.1,24.92,24.73,24.54,24.36,23.98,N/A,N/A +2012,10,24,11,30,101510,100350,99230,86.53,0,4.18,4.61,4.75,4.86,4.94,5.01,5.08,5.14,5.25,160.28,160.03,159.79,159.57,159.39000000000001,159.22,159.07,158.92000000000002,158.67000000000002,25.560000000000002,25.25,25.080000000000002,24.89,24.7,24.51,24.32,24.14,23.75,N/A,N/A +2012,10,24,12,30,101540,100380,99260,84.52,0,4.95,5.5200000000000005,5.69,5.82,5.93,6.0200000000000005,6.12,6.21,6.37,150.07,150.13,150.18,150.25,150.37,150.52,150.66,150.79,150.97,25.71,25.43,25.27,25.080000000000002,24.900000000000002,24.72,24.54,24.36,24,N/A,N/A +2012,10,24,13,30,101540,100380,99260,80.92,0,6.62,7.2,7.33,7.390000000000001,7.42,7.44,7.46,7.46,7.49,141.96,141.94,142.04,142.13,142.23,142.32,142.43,142.52,142.77,25.91,25.64,25.490000000000002,25.3,25.12,24.93,24.75,24.57,24.21,N/A,N/A +2012,10,24,14,30,101570,100410,99290,84.36,0,7.11,7.83,8.01,8.11,8.19,8.23,8.27,8.3,8.33,141.46,141.67000000000002,141.77,141.84,141.9,141.94,141.98,142,142.04,25.77,25.48,25.32,25.13,24.94,24.75,24.560000000000002,24.38,23.990000000000002,N/A,N/A +2012,10,24,15,30,101570,100410,99290,85.16,0,6.5600000000000005,7.19,7.33,7.41,7.46,7.5,7.53,7.55,7.57,136.3,136.26,136.28,136.32,136.36,136.4,136.45,136.49,136.59,25.71,25.41,25.240000000000002,25.04,24.86,24.67,24.47,24.29,23.900000000000002,N/A,N/A +2012,10,24,16,30,101560,100400,99280,85.34,0,6.2,6.75,6.890000000000001,6.96,7.01,7.04,7.07,7.08,7.1000000000000005,135.66,135.81,135.87,135.93,135.98,136.03,136.09,136.14000000000001,136.22,25.650000000000002,25.34,25.17,24.98,24.79,24.6,24.41,24.22,23.84,N/A,N/A +2012,10,24,17,30,101530,100370,99250,83.91,0,5.2700000000000005,5.69,5.78,5.82,5.8500000000000005,5.86,5.87,5.87,5.86,140.56,140.63,140.70000000000002,140.77,140.82,140.87,140.93,140.98,141.08,25.68,25.37,25.2,25,24.810000000000002,24.62,24.43,24.240000000000002,23.86,N/A,N/A +2012,10,24,18,30,101510,100350,99230,81.60000000000001,0,5.41,5.86,5.95,5.99,6.0200000000000005,6.03,6.03,6.03,6.0200000000000005,136.95000000000002,136.98,137.08,137.17000000000002,137.25,137.33,137.42000000000002,137.51,137.70000000000002,25.740000000000002,25.43,25.26,25.060000000000002,24.87,24.68,24.48,24.3,23.92,N/A,N/A +2012,10,24,19,30,101490,100340,99210,81.8,0,4.91,5.2700000000000005,5.34,5.37,5.39,5.4,5.41,5.41,5.41,132.63,132.92000000000002,133.06,133.19,133.28,133.36,133.44,133.51,133.64000000000001,25.650000000000002,25.330000000000002,25.16,24.97,24.78,24.59,24.400000000000002,24.21,23.830000000000002,N/A,N/A +2012,10,24,20,30,101470,100310,99190,84.06,0,4.86,5.26,5.34,5.38,5.41,5.43,5.44,5.44,5.44,129.79,129.95,130,130.02,130.03,130.04,130.03,130.02,129.98,25.580000000000002,25.26,25.080000000000002,24.89,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A +2012,10,24,21,30,101440,100280,99160,84.18,0,5.13,5.53,5.62,5.67,5.7,5.72,5.74,5.75,5.76,120.87,121.36,121.67,121.93,122.16,122.37,122.56,122.74000000000001,123.06,25.48,25.17,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,24,22,30,101420,100260,99140,82.97,0,4.95,5.36,5.46,5.5200000000000005,5.57,5.6000000000000005,5.63,5.66,5.72,124.89,124.87,124.9,124.94,124.98,125.02,125.07000000000001,125.13000000000001,125.27,25.57,25.26,25.1,24.900000000000002,24.72,24.54,24.34,24.16,23.78,N/A,N/A +2012,10,24,23,30,101390,100230,99110,86.43,0,5.09,5.46,5.53,5.5600000000000005,5.58,5.58,5.58,5.58,5.5600000000000005,127.56,127.26,127.09,126.92,126.75,126.60000000000001,126.45,126.3,125.98,25.43,25.11,24.95,24.75,24.560000000000002,24.37,24.18,23.990000000000002,23.61,N/A,N/A +2012,10,25,0,30,101360,100210,99080,86.16,0,4.86,5.25,5.33,5.38,5.42,5.44,5.47,5.49,5.55,128.05,128.26,128.37,128.49,128.62,128.74,128.88,129.03,129.43,25.44,25.13,24.97,24.77,24.59,24.400000000000002,24.21,24.03,23.66,N/A,N/A +2012,10,25,1,30,101370,100210,99090,84.07000000000001,0,7.94,8.63,8.78,8.85,8.9,8.92,8.93,8.94,8.94,133.36,133.58,133.72,133.88,134.04,134.19,134.36,134.51,134.84,25.75,25.46,25.3,25.1,24.92,24.73,24.54,24.36,23.98,N/A,N/A +2012,10,25,2,30,101340,100180,99060,87.94,0,7.55,8.27,8.44,8.53,8.59,8.63,8.65,8.66,8.66,132.56,132.73,132.8,132.86,132.9,132.93,132.96,132.98,133.01,25.490000000000002,25.18,25.01,24.82,24.63,24.44,24.25,24.07,23.69,N/A,N/A +2012,10,25,3,30,101330,100180,99060,87.54,0,8.23,9.05,9.24,9.34,9.41,9.450000000000001,9.48,9.49,9.49,133.56,133.65,133.7,133.75,133.8,133.84,133.88,133.93,134.03,25.53,25.22,25.05,24.85,24.66,24.48,24.28,24.1,23.71,N/A,N/A +2012,10,25,4,30,101290,100130,99010,88.71000000000001,0,8.59,9.52,9.75,9.9,10,10.08,10.14,10.19,10.26,135.61,135.97,136.11,136.25,136.38,136.49,136.61,136.71,136.92000000000002,25.61,25.3,25.13,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A +2012,10,25,5,30,101260,100100,98990,86.03,0,8.870000000000001,9.83,10.06,10.19,10.290000000000001,10.35,10.4,10.43,10.48,136.15,136.37,136.5,136.62,136.73,136.83,136.93,137.01,137.20000000000002,25.67,25.37,25.21,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.89,N/A,N/A +2012,10,25,6,30,101250,100090,98970,83.26,0,9.84,10.9,11.14,11.27,11.35,11.4,11.43,11.450000000000001,11.44,139.98,139.95000000000002,139.97,140,140.03,140.06,140.11,140.16,140.28,25.72,25.44,25.28,25.09,24.900000000000002,24.72,24.53,24.35,23.97,N/A,N/A +2012,10,25,7,30,101260,100110,98990,81.69,0,9.46,10.5,10.77,10.94,11.07,11.15,11.22,11.28,11.35,145.88,145.99,146.03,146.08,146.13,146.18,146.24,146.29,146.4,25.71,25.44,25.28,25.09,24.91,24.72,24.53,24.35,23.97,N/A,N/A +2012,10,25,8,30,101220,100070,98950,85.08,0,9.52,10.56,10.82,10.98,11.1,11.18,11.24,11.28,11.34,147.41,147.47,147.52,147.56,147.59,147.62,147.64000000000001,147.67000000000002,147.72,25.57,25.28,25.12,24.92,24.73,24.54,24.35,24.16,23.78,N/A,N/A +2012,10,25,9,30,101210,100050,98930,81.5,0,9.49,10.53,10.790000000000001,10.950000000000001,11.06,11.14,11.19,11.23,11.27,153.45000000000002,153.75,153.87,153.98,154.07,154.16,154.24,154.31,154.45000000000002,25.69,25.42,25.26,25.080000000000002,24.89,24.71,24.52,24.34,23.96,N/A,N/A +2012,10,25,10,30,101200,100050,98930,78.3,0,9.02,10.01,10.25,10.39,10.5,10.57,10.620000000000001,10.66,10.71,155.45000000000002,155.26,155.26,155.28,155.31,155.34,155.38,155.43,155.53,25.8,25.54,25.38,25.19,25,24.82,24.62,24.44,24.07,N/A,N/A +2012,10,25,11,30,101210,100050,98930,77.58,0,8.9,9.88,10.120000000000001,10.26,10.36,10.43,10.47,10.51,10.55,158.56,158.67000000000002,158.74,158.81,158.88,158.94,159.02,159.08,159.21,25.8,25.53,25.36,25.17,24.990000000000002,24.8,24.61,24.43,24.04,N/A,N/A +2012,10,25,12,30,101220,100060,98940,75.93,0,9.120000000000001,10.15,10.42,10.59,10.72,10.81,10.88,10.93,11.01,163.23,163.53,163.62,163.71,163.77,163.83,163.88,163.93,164.03,26.01,25.78,25.63,25.44,25.26,25.09,24.900000000000002,24.72,24.34,N/A,N/A +2012,10,25,13,30,101240,100080,98960,79.01,0,9.14,10.17,10.46,10.64,10.77,10.870000000000001,10.950000000000001,11.01,11.1,166.55,166.74,166.79,166.83,166.85,166.88,166.9,166.91,166.95000000000002,25.87,25.63,25.48,25.3,25.12,24.93,24.75,24.57,24.19,N/A,N/A +2012,10,25,14,30,101290,100130,99020,80.72,0,7.94,8.74,8.950000000000001,9.07,9.16,9.22,9.26,9.3,9.35,163.6,163.77,163.87,163.99,164.1,164.21,164.33,164.45000000000002,164.69,25.830000000000002,25.57,25.42,25.23,25.04,24.86,24.67,24.490000000000002,24.12,N/A,N/A +2012,10,25,15,30,101300,100140,99020,82.04,0,7.140000000000001,7.82,7.97,8.05,8.1,8.13,8.14,8.15,8.14,156.6,157.03,157.25,157.46,157.65,157.83,158.02,158.20000000000002,158.6,25.75,25.48,25.330000000000002,25.14,24.96,24.77,24.580000000000002,24.400000000000002,24.03,N/A,N/A +2012,10,25,16,30,101280,100130,99010,79.49,0,5.97,6.5600000000000005,6.72,6.8100000000000005,6.890000000000001,6.94,6.99,7.0200000000000005,7.08,162.69,162.56,162.51,162.47,162.42000000000002,162.38,162.34,162.31,162.22,25.91,25.650000000000002,25.5,25.310000000000002,25.12,24.94,24.75,24.57,24.19,N/A,N/A +2012,10,25,17,30,101280,100120,99000,79.21000000000001,0,5.53,6.03,6.140000000000001,6.2,6.25,6.28,6.3,6.32,6.37,157.75,158.08,158.26,158.42000000000002,158.56,158.70000000000002,158.83,158.96,159.27,25.94,25.67,25.51,25.330000000000002,25.150000000000002,24.96,24.78,24.6,24.23,N/A,N/A +2012,10,25,18,30,101290,100140,99020,80.7,0,5.28,5.73,5.83,5.87,5.91,5.93,5.94,5.95,5.96,156.31,156.46,156.54,156.63,156.71,156.8,156.88,156.97,157.16,25.91,25.63,25.47,25.28,25.09,24.900000000000002,24.72,24.53,24.150000000000002,N/A,N/A +2012,10,25,19,30,101300,100150,99030,81.10000000000001,0,4.6000000000000005,4.97,5.05,5.09,5.11,5.13,5.13,5.14,5.14,152.99,153.03,153.09,153.16,153.23,153.31,153.4,153.47,153.66,25.93,25.650000000000002,25.48,25.28,25.1,24.91,24.72,24.53,24.150000000000002,N/A,N/A +2012,10,25,20,30,101270,100110,99000,80.98,0,4.25,4.57,4.63,4.66,4.68,4.7,4.71,4.72,4.73,148.23,148.5,148.69,148.89000000000001,149.06,149.22,149.39000000000001,149.56,149.89000000000001,25.92,25.62,25.46,25.26,25.07,24.89,24.69,24.5,24.12,N/A,N/A +2012,10,25,21,30,101250,100090,98980,81.27,0,4.8500000000000005,5.25,5.33,5.38,5.4,5.43,5.44,5.45,5.47,145.5,145.77,145.91,146.04,146.16,146.27,146.38,146.47,146.66,25.900000000000002,25.62,25.45,25.26,25.07,24.88,24.69,24.5,24.12,N/A,N/A +2012,10,25,22,30,101220,100060,98950,80.21000000000001,0,4.07,4.4,4.47,4.5,4.53,4.54,4.55,4.5600000000000005,4.57,145.94,145.8,145.69,145.57,145.45000000000002,145.33,145.21,145.1,144.83,25.85,25.59,25.43,25.23,25.05,24.86,24.67,24.48,24.1,N/A,N/A +2012,10,25,23,30,101240,100090,98970,83.06,0,3.91,4.24,4.32,4.37,4.4,4.43,4.45,4.46,4.49,138.42000000000002,138.70000000000002,138.94,139.16,139.35,139.53,139.70000000000002,139.87,140.20000000000002,25.73,25.45,25.3,25.1,24.92,24.73,24.54,24.35,23.97,N/A,N/A +2012,10,26,0,30,101260,100110,98990,84.74,0,4.32,4.68,4.76,4.8,4.82,4.84,4.86,4.87,4.89,141.84,142.06,142.18,142.29,142.39000000000001,142.5,142.6,142.68,142.89000000000001,25.61,25.330000000000002,25.17,24.98,24.79,24.61,24.41,24.23,23.85,N/A,N/A +2012,10,26,1,30,101260,100110,98990,84.9,0,4.86,5.28,5.36,5.4,5.43,5.44,5.45,5.46,5.47,140.45000000000002,140.78,140.94,141.07,141.17000000000002,141.26,141.33,141.39000000000001,141.46,25.650000000000002,25.36,25.2,25.01,24.82,24.63,24.44,24.26,23.88,N/A,N/A +2012,10,26,2,30,101290,100140,99020,84.7,0,5.92,6.45,6.5600000000000005,6.61,6.640000000000001,6.65,6.66,6.66,6.63,139.06,139.21,139.36,139.52,139.66,139.81,139.95000000000002,140.09,140.35,25.7,25.42,25.26,25.07,24.89,24.7,24.5,24.32,23.94,N/A,N/A +2012,10,26,3,30,101300,100150,99030,84.55,0,5.46,5.96,6.07,6.140000000000001,6.18,6.21,6.22,6.23,6.23,135.94,136.53,136.92000000000002,137.33,137.70000000000002,138.06,138.43,138.77,139.47,25.67,25.39,25.23,25.04,24.86,24.67,24.48,24.29,23.92,N/A,N/A +2012,10,26,4,30,101310,100160,99030,84.3,0,4.9,5.32,5.41,5.46,5.5,5.5200000000000005,5.53,5.54,5.55,137.51,137.55,137.58,137.6,137.61,137.62,137.63,137.64000000000001,137.67000000000002,25.5,25.21,25.04,24.85,24.66,24.48,24.28,24.1,23.72,N/A,N/A +2012,10,26,5,30,101310,100150,99030,84.7,0,4.32,4.64,4.72,4.75,4.78,4.8,4.8100000000000005,4.82,4.83,134.29,134.48,134.51,134.55,134.59,134.64000000000001,134.69,134.73,134.85,25.37,25.07,24.900000000000002,24.7,24.51,24.330000000000002,24.13,23.95,23.56,N/A,N/A +2012,10,26,6,30,101330,100170,99050,87.56,0,4.72,5.05,5.11,5.13,5.14,5.15,5.14,5.13,5.11,139.02,139.34,139.51,139.70000000000002,139.88,140.07,140.28,140.48,140.96,25.22,24.900000000000002,24.72,24.53,24.34,24.150000000000002,23.96,23.78,23.39,N/A,N/A +2012,10,26,7,30,101360,100200,99080,87.97,0,4.0600000000000005,4.3100000000000005,4.3500000000000005,4.36,4.37,4.37,4.36,4.36,4.34,138.39000000000001,138.59,138.74,138.91,139.08,139.27,139.49,139.71,140.29,25.13,24.810000000000002,24.64,24.44,24.25,24.07,23.87,23.69,23.31,N/A,N/A +2012,10,26,8,30,101380,100220,99100,85.71000000000001,0,2.5500000000000003,2.66,2.66,2.66,2.65,2.64,2.62,2.61,2.58,151.68,151.83,152.03,152.24,152.45000000000002,152.65,152.88,153.1,153.63,25.17,24.86,24.69,24.5,24.310000000000002,24.12,23.93,23.740000000000002,23.36,N/A,N/A +2012,10,26,9,30,101390,100230,99100,86.64,0,2.58,2.71,2.74,2.75,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.77,160.59,161.15,161.46,161.81,162.17000000000002,162.54,162.97,163.39000000000001,164.42000000000002,25.080000000000002,24.76,24.59,24.39,24.21,24.02,23.82,23.64,23.26,N/A,N/A +2012,10,26,10,30,101420,100260,99140,86.53,0,1.68,1.77,1.79,1.81,1.82,1.83,1.84,1.85,1.87,170.59,171.88,172.53,173.17000000000002,173.75,174.33,174.93,175.51,176.8,25.1,24.79,24.62,24.43,24.240000000000002,24.05,23.85,23.67,23.29,N/A,N/A +2012,10,26,11,30,101450,100290,99170,84.85000000000001,0,1.1,1.18,1.2,1.23,1.25,1.27,1.29,1.31,1.36,218.71,219.07,219.43,219.76,220.05,220.35,220.61,220.84,221.38,25.19,24.88,24.71,24.52,24.330000000000002,24.14,23.95,23.77,23.39,N/A,N/A +2012,10,26,12,30,101490,100340,99210,83.92,0,0.8300000000000001,0.87,0.88,0.89,0.9,0.91,0.93,0.9400000000000001,0.98,304.59000000000003,300.74,298.45,296.13,294.05,292.04,290.08,288.23,284.54,25.23,24.93,24.76,24.57,24.38,24.19,24,23.81,23.43,N/A,N/A +2012,10,26,13,30,101520,100360,99230,85.34,0,1.78,1.83,1.82,1.8,1.78,1.77,1.75,1.73,1.69,358.69,357.17,356.18,355.15000000000003,354.16,353.18,352.12,351.12,348.86,25.150000000000002,24.84,24.67,24.47,24.29,24.1,23.91,23.72,23.34,N/A,N/A +2012,10,26,14,30,101590,100410,99280,99.42,0,9.89,10.44,10.46,10.33,10.09,9.78,9.14,8.49,7.19,337.75,337.8,337.77,337.66,337.36,336.93,335.93,334.90000000000003,333.05,21.96,21.490000000000002,21.330000000000002,21.21,21.14,21.12,21.19,21.29,21.53,N/A,N/A +2012,10,26,15,30,101600,100420,99280,94.03,1.5,10.620000000000001,11.41,11.540000000000001,11.58,11.57,11.55,11.5,11.450000000000001,11.3,350.74,350.79,350.74,350.69,350.63,350.57,350.5,350.42,350.17,21.16,20.57,20.35,20.13,19.93,19.75,19.55,19.38,19.02,N/A,N/A +2012,10,26,16,30,101650,100470,99320,92.8,0,9.39,10.040000000000001,10.17,10.22,10.24,10.24,10.22,10.21,10.15,1.3,1.36,1.4000000000000001,1.44,1.51,1.57,1.6500000000000001,1.74,1.97,20.490000000000002,19.89,19.67,19.45,19.25,19.06,18.86,18.68,18.31,N/A,N/A +2012,10,26,17,30,101610,100430,99280,90.5,0,10.48,11.23,11.35,11.38,11.370000000000001,11.35,11.31,11.26,11.15,353.19,353.55,353.73,353.91,354.12,354.31,354.57,354.82,355.57,20.32,19.7,19.47,19.26,19.07,18.88,18.69,18.52,18.17,N/A,N/A +2012,10,26,18,30,101650,100470,99320,86.25,0,10.11,10.86,11,11.06,11.08,11.08,11.06,11.040000000000001,10.96,355.90000000000003,356.08,356.18,356.3,356.42,356.54,356.69,356.83,357.2,20.490000000000002,19.87,19.64,19.41,19.21,19.01,18.81,18.63,18.240000000000002,N/A,N/A +2012,10,26,19,30,101670,100490,99330,84.37,0,10.74,11.57,11.73,11.790000000000001,11.82,11.83,11.81,11.790000000000001,11.72,352.38,352.85,353.14,353.43,353.71,353.97,354.25,354.52,355.11,20.29,19.650000000000002,19.41,19.19,18.98,18.79,18.580000000000002,18.39,18.01,N/A,N/A +2012,10,26,20,30,101690,100500,99350,83.2,0,10.98,11.84,12.01,12.09,12.120000000000001,12.13,12.13,12.120000000000001,12.06,359.35,359.51,359.6,359.69,359.77,359.85,359.93,0.01,0.17,19.84,19.17,18.92,18.69,18.47,18.28,18.07,17.88,17.48,N/A,N/A +2012,10,26,21,30,101730,100530,99380,84.36,0,11.28,12.16,12.35,12.44,12.49,12.52,12.52,12.51,12.47,355.69,355.84000000000003,355.94,356.03000000000003,356.12,356.2,356.29,356.37,356.53000000000003,19.11,18.39,18.13,17.89,17.67,17.47,17.26,17.06,16.67,N/A,N/A +2012,10,26,22,30,101750,100550,99390,85.19,0,11.84,12.780000000000001,12.99,13.08,13.120000000000001,13.15,13.15,13.15,13.11,356.28000000000003,356.40000000000003,356.47,356.54,356.62,356.68,356.75,356.82,356.98,18.43,17.67,17.400000000000002,17.16,16.94,16.73,16.52,16.330000000000002,15.93,N/A,N/A +2012,10,26,23,30,101780,100580,99410,86.53,0,12.76,13.85,14.1,14.22,14.290000000000001,14.34,14.36,14.370000000000001,14.36,0.9,0.97,0.97,0.97,0.96,0.96,0.96,0.96,0.96,17.78,16.95,16.67,16.43,16.19,15.99,15.77,15.58,15.18,N/A,N/A +2012,10,27,0,30,101830,100630,99460,85.27,0,12.19,13.15,13.35,13.43,13.46,13.47,13.450000000000001,13.43,13.370000000000001,358.47,358.63,358.71,358.79,358.87,358.95,359.04,359.13,359.32,17.09,16.26,15.98,15.74,15.51,15.31,15.1,14.9,14.51,N/A,N/A +2012,10,27,1,30,101890,100680,99500,86.32000000000001,0,12.67,13.69,13.92,14.030000000000001,14.1,14.14,14.16,14.17,14.16,6.54,6.69,6.78,6.86,6.94,7,7.08,7.15,7.3100000000000005,16.51,15.64,15.34,15.09,14.86,14.65,14.43,14.24,13.84,N/A,N/A +2012,10,27,2,30,101930,100720,99540,86.77,0,13.030000000000001,14.11,14.35,14.47,14.540000000000001,14.59,14.61,14.620000000000001,14.61,6.18,6.43,6.5600000000000005,6.69,6.8100000000000005,6.92,7.05,7.16,7.41,15.94,15.02,14.72,14.46,14.23,14.02,13.8,13.6,13.200000000000001,N/A,N/A +2012,10,27,3,30,101960,100740,99570,87.68,0,12.05,13.01,13.23,13.35,13.42,13.46,13.49,13.51,13.52,9.86,9.950000000000001,10.02,10.07,10.13,10.18,10.23,10.28,10.38,15.68,14.790000000000001,14.49,14.24,14,13.790000000000001,13.57,13.370000000000001,12.97,N/A,N/A +2012,10,27,4,30,101930,100720,99540,86.9,0,12.32,13.280000000000001,13.5,13.620000000000001,13.68,13.73,13.75,13.76,13.77,5.61,5.74,5.83,5.92,5.99,6.0600000000000005,6.140000000000001,6.21,6.36,15.42,14.51,14.21,13.950000000000001,13.72,13.51,13.290000000000001,13.09,12.69,N/A,N/A +2012,10,27,5,30,101940,100730,99550,85.67,0,12.49,13.51,13.75,13.88,13.950000000000001,14.01,14.040000000000001,14.06,14.07,7.72,7.99,8.13,8.27,8.4,8.53,8.65,8.77,9.03,15.13,14.200000000000001,13.89,13.63,13.39,13.18,12.96,12.76,12.36,N/A,N/A +2012,10,27,6,30,101930,100710,99530,83.76,0,13.120000000000001,14.23,14.49,14.63,14.72,14.77,14.8,14.83,14.84,10.49,10.64,10.73,10.82,10.9,10.98,11.06,11.15,11.31,15.1,14.15,13.84,13.58,13.33,13.120000000000001,12.9,12.700000000000001,12.290000000000001,N/A,N/A +2012,10,27,7,30,101980,100760,99580,77.46000000000001,0,13.280000000000001,14.4,14.66,14.8,14.88,14.94,14.97,14.99,15,13.51,13.66,13.76,13.84,13.91,13.99,14.06,14.13,14.280000000000001,15.09,14.13,13.82,13.56,13.32,13.11,12.89,12.68,12.290000000000001,N/A,N/A +2012,10,27,8,30,101960,100740,99560,73.72,0,13.38,14.51,14.780000000000001,14.91,15,15.05,15.08,15.11,15.120000000000001,12.31,12.48,12.56,12.64,12.71,12.780000000000001,12.85,12.91,13.05,15.030000000000001,14.08,13.76,13.5,13.26,13.05,12.83,12.620000000000001,12.22,N/A,N/A +2012,10,27,9,30,101980,100760,99570,70.74,0,13.42,14.55,14.8,14.94,15.02,15.07,15.1,15.120000000000001,15.13,11.120000000000001,11.26,11.35,11.43,11.51,11.59,11.67,11.74,11.9,14.700000000000001,13.73,13.41,13.15,12.91,12.69,12.47,12.27,11.870000000000001,N/A,N/A +2012,10,27,10,30,102010,100790,99600,70.87,0,14.32,15.56,15.85,15.99,16.080000000000002,16.14,16.16,16.18,16.18,17.86,18.02,18.12,18.22,18.3,18.37,18.45,18.52,18.67,14.1,13.07,12.74,12.47,12.23,12.01,11.790000000000001,11.59,11.19,N/A,N/A +2012,10,27,11,30,102080,100850,99660,71.93,0,14.14,15.34,15.620000000000001,15.76,15.84,15.9,15.92,15.94,15.94,19.05,19.2,19.31,19.400000000000002,19.490000000000002,19.57,19.650000000000002,19.73,19.89,13.75,12.71,12.370000000000001,12.1,11.85,11.64,11.42,11.21,10.81,N/A,N/A +2012,10,27,12,30,102130,100900,99710,71.75,0,13.52,14.63,14.88,15.02,15.09,15.14,15.16,15.17,15.17,17.72,17.900000000000002,18.01,18.11,18.2,18.29,18.38,18.47,18.650000000000002,13.370000000000001,12.33,12,11.73,11.49,11.27,11.05,10.84,10.44,N/A,N/A +2012,10,27,13,30,102130,100900,99710,73.27,0,13.66,14.77,15.02,15.15,15.21,15.26,15.27,15.280000000000001,15.27,16.16,16.32,16.4,16.47,16.55,16.61,16.68,16.740000000000002,16.88,13.05,12.01,11.68,11.41,11.16,10.950000000000001,10.73,10.52,10.120000000000001,N/A,N/A +2012,10,27,14,30,102150,100920,99720,74.09,0,12.61,13.57,13.790000000000001,13.89,13.950000000000001,13.99,14,14,13.99,14.02,14.17,14.26,14.34,14.42,14.49,14.57,14.63,14.780000000000001,12.870000000000001,11.86,11.53,11.27,11.03,10.81,10.59,10.4,10,N/A,N/A +2012,10,27,15,30,102160,100930,99740,73.01,0,10.96,11.73,11.9,11.98,12.02,12.040000000000001,12.05,12.05,12.040000000000001,10.32,10.42,10.49,10.55,10.620000000000001,10.67,10.74,10.8,10.93,13.09,12.16,11.85,11.59,11.35,11.15,10.93,10.73,10.34,N/A,N/A +2012,10,27,16,30,102120,100900,99710,69.99,0,10.47,11.200000000000001,11.35,11.43,11.47,11.5,11.51,11.52,11.52,6.3,6.390000000000001,6.46,6.5200000000000005,6.58,6.63,6.69,6.75,6.8500000000000005,13.700000000000001,12.82,12.52,12.26,12.030000000000001,11.82,11.6,11.41,11.01,N/A,N/A +2012,10,27,17,30,102080,100860,99670,65.51,0,9.66,10.31,10.46,10.53,10.58,10.61,10.620000000000001,10.64,10.64,1.35,1.5,1.6,1.7,1.79,1.87,1.96,2.04,2.2,14.52,13.69,13.4,13.14,12.91,12.700000000000001,12.48,12.280000000000001,11.88,N/A,N/A +2012,10,27,18,30,102040,100820,99640,60.71,0,9.15,9.76,9.89,9.96,10,10.03,10.040000000000001,10.05,10.05,359.33,359.45,359.52,359.59000000000003,359.65000000000003,359.71,359.77,359.83,359.95,15.33,14.55,14.27,14.030000000000001,13.8,13.6,13.38,13.18,12.780000000000001,N/A,N/A +2012,10,27,19,30,101990,100770,99590,58.79,0,9.43,10.07,10.22,10.3,10.35,10.38,10.4,10.42,10.43,355.04,355.07,355.11,355.14,355.18,355.21,355.24,355.28000000000003,355.35,16.18,15.42,15.15,14.9,14.67,14.46,14.24,14.040000000000001,13.64,N/A,N/A +2012,10,27,20,30,101930,100720,99540,56.5,0,9.21,9.83,9.97,10.05,10.09,10.13,10.14,10.16,10.17,353.47,353.69,353.84000000000003,353.98,354.12,354.25,354.37,354.49,354.73,16.89,16.16,15.9,15.65,15.43,15.22,15,14.8,14.39,N/A,N/A +2012,10,27,21,30,101910,100700,99530,54.5,0,9.21,9.84,9.98,10.07,10.120000000000001,10.15,10.17,10.19,10.200000000000001,354.7,354.91,355.04,355.15000000000003,355.26,355.36,355.46,355.56,355.74,17.37,16.66,16.4,16.15,15.93,15.72,15.5,15.3,14.89,N/A,N/A +2012,10,27,22,30,101900,100700,99530,53.65,0,9.17,9.8,9.94,10.02,10.07,10.1,10.11,10.13,10.14,356.06,356.19,356.28000000000003,356.37,356.46,356.54,356.62,356.7,356.86,17.56,16.85,16.59,16.35,16.12,15.92,15.700000000000001,15.5,15.09,N/A,N/A +2012,10,27,23,30,101920,100710,99540,50.050000000000004,0,9.870000000000001,10.55,10.68,10.74,10.77,10.790000000000001,10.790000000000001,10.790000000000001,10.78,0.46,0.23,0.04,359.84000000000003,359.64,359.46,359.27,359.09000000000003,358.74,17.42,16.69,16.43,16.2,15.98,15.780000000000001,15.56,15.36,14.97,N/A,N/A +2012,10,28,0,30,101960,100750,99570,55.01,0,10.59,11.34,11.51,11.58,11.620000000000001,11.65,11.65,11.65,11.63,1.6600000000000001,1.59,1.53,1.48,1.42,1.37,1.32,1.27,1.18,17,16.23,15.950000000000001,15.71,15.48,15.27,15.05,14.85,14.450000000000001,N/A,N/A +2012,10,28,1,30,101990,100780,99600,55.410000000000004,0,10.69,11.47,11.63,11.71,11.75,11.77,11.78,11.78,11.77,3.18,3.3000000000000003,3.37,3.43,3.49,3.54,3.6,3.65,3.75,16.44,15.64,15.370000000000001,15.13,14.9,14.69,14.48,14.280000000000001,13.88,N/A,N/A +2012,10,28,2,30,102040,100820,99640,57.93,0,10.81,11.61,11.78,11.86,11.91,11.94,11.950000000000001,11.96,11.950000000000001,10.14,10.16,10.16,10.17,10.17,10.17,10.17,10.16,10.16,16.12,15.31,15.030000000000001,14.780000000000001,14.55,14.34,14.120000000000001,13.92,13.51,N/A,N/A +2012,10,28,3,30,102060,100850,99670,58.1,0,11.08,11.9,12.08,12.17,12.22,12.25,12.27,12.27,12.27,14.39,14.4,14.41,14.42,14.42,14.43,14.42,14.41,14.41,15.83,14.99,14.71,14.46,14.22,14.01,13.790000000000001,13.59,13.18,N/A,N/A +2012,10,28,4,30,102080,100860,99680,59.35,0,11.08,11.89,12.07,12.16,12.21,12.23,12.25,12.25,12.24,18.51,18.55,18.55,18.56,18.56,18.56,18.57,18.57,18.57,15.47,14.620000000000001,14.33,14.08,13.85,13.64,13.42,13.22,12.81,N/A,N/A +2012,10,28,5,30,102110,100890,99700,58.1,0,11.26,12.08,12.26,12.34,12.39,12.42,12.42,12.43,12.41,21.23,21.330000000000002,21.39,21.43,21.47,21.51,21.54,21.580000000000002,21.650000000000002,15.23,14.370000000000001,14.07,13.82,13.59,13.370000000000001,13.15,12.950000000000001,12.55,N/A,N/A +2012,10,28,6,30,102120,100900,99710,58.9,0,11.35,12.19,12.38,12.47,12.52,12.540000000000001,12.55,12.55,12.530000000000001,21.57,21.78,21.89,21.98,22.07,22.150000000000002,22.23,22.3,22.45,14.96,14.120000000000001,13.83,13.58,13.35,13.14,12.92,12.72,12.32,N/A,N/A +2012,10,28,7,30,102150,100930,99740,58.79,0,11.11,11.93,12.11,12.200000000000001,12.24,12.27,12.280000000000001,12.290000000000001,12.27,24.91,25.080000000000002,25.16,25.240000000000002,25.310000000000002,25.37,25.43,25.490000000000002,25.6,14.68,13.84,13.55,13.3,13.07,12.86,12.64,12.44,12.040000000000001,N/A,N/A +2012,10,28,8,30,102170,100950,99760,58.7,0,10.72,11.49,11.66,11.74,11.790000000000001,11.82,11.82,11.83,11.81,27.32,27.48,27.59,27.68,27.76,27.830000000000002,27.91,27.98,28.11,14.56,13.72,13.44,13.19,12.950000000000001,12.75,12.530000000000001,12.33,11.92,N/A,N/A +2012,10,28,9,30,102170,100950,99760,58.72,0,10.790000000000001,11.57,11.73,11.81,11.85,11.88,11.88,11.88,11.86,26.19,26.37,26.48,26.57,26.66,26.740000000000002,26.82,26.900000000000002,27.05,14.36,13.52,13.24,12.99,12.76,12.55,12.33,12.13,11.73,N/A,N/A +2012,10,28,10,30,102190,100970,99780,58.39,0,10.76,11.52,11.69,11.76,11.8,11.82,11.83,11.83,11.81,25.740000000000002,25.92,26.02,26.12,26.2,26.28,26.36,26.43,26.580000000000002,14.18,13.33,13.040000000000001,12.790000000000001,12.56,12.35,12.14,11.94,11.540000000000001,N/A,N/A +2012,10,28,11,30,102210,100980,99790,58.96,0,10.620000000000001,11.36,11.51,11.58,11.61,11.63,11.620000000000001,11.620000000000001,11.59,24.96,25.18,25.3,25.42,25.52,25.62,25.71,25.810000000000002,25.990000000000002,14.06,13.21,12.92,12.67,12.44,12.23,12.02,11.82,11.42,N/A,N/A +2012,10,28,12,30,102230,101010,99820,58.9,0,10.32,11.03,11.18,11.24,11.28,11.290000000000001,11.3,11.290000000000001,11.27,23.79,23.990000000000002,24.12,24.240000000000002,24.35,24.45,24.560000000000002,24.650000000000002,24.84,13.98,13.14,12.85,12.61,12.370000000000001,12.17,11.950000000000001,11.75,11.36,N/A,N/A +2012,10,28,13,30,102260,101030,99840,59.96,0,10.3,10.99,11.13,11.19,11.21,11.22,11.21,11.200000000000001,11.16,23.07,23.29,23.42,23.54,23.66,23.76,23.87,23.98,24.18,13.71,12.86,12.57,12.32,12.09,11.89,11.67,11.48,11.08,N/A,N/A +2012,10,28,14,30,102300,101070,99870,59.92,0,9.74,10.38,10.51,10.56,10.59,10.6,10.6,10.6,10.57,22.990000000000002,23.150000000000002,23.26,23.36,23.45,23.53,23.62,23.69,23.85,13.66,12.83,12.55,12.3,12.07,11.870000000000001,11.65,11.450000000000001,11.06,N/A,N/A +2012,10,28,15,30,102300,101070,99880,59,0,9.35,9.950000000000001,10.07,10.13,10.15,10.17,10.17,10.17,10.15,20.19,20.330000000000002,20.400000000000002,20.46,20.51,20.57,20.62,20.67,20.77,13.84,13.030000000000001,12.75,12.51,12.280000000000001,12.08,11.86,11.67,11.27,N/A,N/A +2012,10,28,16,30,102290,101060,99870,57.01,0,8.75,9.3,9.41,9.47,9.49,9.51,9.52,9.52,9.51,17.31,17.36,17.400000000000002,17.43,17.46,17.48,17.51,17.53,17.580000000000002,14.25,13.47,13.200000000000001,12.96,12.73,12.530000000000001,12.32,12.120000000000001,11.72,N/A,N/A +2012,10,28,17,30,102270,101050,99860,54.230000000000004,0,8.040000000000001,8.540000000000001,8.65,8.700000000000001,8.74,8.76,8.77,8.78,8.790000000000001,11.540000000000001,11.620000000000001,11.67,11.72,11.77,11.8,11.84,11.870000000000001,11.94,14.8,14.06,13.8,13.56,13.34,13.14,12.92,12.73,12.33,N/A,N/A +2012,10,28,18,30,102240,101020,99840,50.44,0,7.96,8.47,8.58,8.65,8.69,8.72,8.73,8.75,8.77,7.930000000000001,7.84,7.8,7.76,7.72,7.69,7.66,7.63,7.58,15.540000000000001,14.84,14.58,14.35,14.13,13.92,13.71,13.51,13.11,N/A,N/A +2012,10,28,19,30,102220,101000,99820,47.63,0,7.74,8.23,8.35,8.42,8.47,8.5,8.52,8.540000000000001,8.57,5.25,5.11,5.04,4.98,4.92,4.88,4.84,4.8,4.72,16.46,15.790000000000001,15.540000000000001,15.3,15.08,14.870000000000001,14.66,14.46,14.06,N/A,N/A +2012,10,28,20,30,102170,100960,99780,45.980000000000004,0,7.46,7.930000000000001,8.040000000000001,8.09,8.13,8.16,8.18,8.19,8.22,0.58,0.76,0.87,0.97,1.05,1.12,1.2,1.27,1.41,17.07,16.44,16.19,15.96,15.74,15.540000000000001,15.33,15.13,14.73,N/A,N/A +2012,10,28,21,30,102150,100940,99770,44.37,0,7.57,8.040000000000001,8.14,8.21,8.25,8.27,8.290000000000001,8.31,8.33,3.19,3.12,3.0700000000000003,3,2.96,2.92,2.88,2.85,2.79,17.63,17.01,16.77,16.54,16.32,16.12,15.9,15.700000000000001,15.3,N/A,N/A +2012,10,28,22,30,102140,100930,99760,41.21,0,8.17,8.68,8.78,8.83,8.85,8.86,8.86,8.86,8.85,2.86,2.77,2.72,2.68,2.63,2.59,2.5500000000000003,2.5300000000000002,2.47,17.81,17.19,16.95,16.73,16.51,16.31,16.1,15.9,15.5,N/A,N/A +2012,10,28,23,30,102160,100950,99780,42.050000000000004,0,8.22,8.72,8.81,8.84,8.85,8.85,8.84,8.83,8.8,7.24,7.28,7.28,7.28,7.28,7.2700000000000005,7.26,7.25,7.21,17.78,17.150000000000002,16.91,16.69,16.47,16.28,16.07,15.870000000000001,15.47,N/A,N/A +2012,10,29,0,30,102180,100970,99800,45.13,0,8.4,8.94,9.040000000000001,9.09,9.1,9.120000000000001,9.11,9.11,9.09,6.8100000000000005,6.97,7.0600000000000005,7.140000000000001,7.21,7.28,7.34,7.41,7.53,17.490000000000002,16.84,16.6,16.37,16.15,15.96,15.74,15.55,15.15,N/A,N/A +2012,10,29,1,30,102200,100990,99820,49.56,0,8.66,9.22,9.34,9.39,9.42,9.44,9.44,9.44,9.43,13.55,13.71,13.790000000000001,13.88,13.950000000000001,14.01,14.08,14.14,14.27,17.23,16.56,16.31,16.080000000000002,15.860000000000001,15.66,15.44,15.25,14.85,N/A,N/A +2012,10,29,2,30,102230,101020,99840,50.2,0,8.32,8.85,8.97,9.02,9.05,9.06,9.07,9.07,9.06,19.48,19.5,19.5,19.51,19.51,19.51,19.51,19.52,19.52,17.05,16.38,16.14,15.9,15.68,15.48,15.27,15.07,14.67,N/A,N/A +2012,10,29,3,30,102240,101030,99850,50.44,0,8.31,8.83,8.93,8.98,9,9.01,9.01,9.01,8.99,22.37,22.47,22.52,22.57,22.62,22.650000000000002,22.69,22.740000000000002,22.82,16.95,16.28,16.04,15.8,15.58,15.39,15.17,14.98,14.58,N/A,N/A +2012,10,29,4,30,102240,101030,99850,51.51,0,8.57,9.11,9.22,9.26,9.28,9.290000000000001,9.290000000000001,9.290000000000001,9.26,24.18,24.28,24.32,24.37,24.41,24.45,24.490000000000002,24.53,24.6,16.84,16.16,15.92,15.68,15.47,15.26,15.05,14.85,14.46,N/A,N/A +2012,10,29,5,30,102260,101040,99860,51.15,0,8.32,8.83,8.93,8.98,8.99,9,9,8.99,8.97,26.44,26.650000000000002,26.77,26.88,26.98,27.07,27.17,27.26,27.44,16.78,16.11,15.860000000000001,15.63,15.41,15.21,14.99,14.8,14.4,N/A,N/A +2012,10,29,6,30,102280,101060,99880,52.31,0,8.8,9.36,9.47,9.51,9.53,9.540000000000001,9.540000000000001,9.53,9.5,25.66,25.900000000000002,26.04,26.18,26.310000000000002,26.42,26.54,26.650000000000002,26.88,16.6,15.91,15.66,15.43,15.200000000000001,15,14.790000000000001,14.59,14.200000000000001,N/A,N/A +2012,10,29,7,30,102320,101100,99920,52.85,0,8.53,9.05,9.15,9.18,9.200000000000001,9.200000000000001,9.19,9.18,9.13,27.73,28.03,28.2,28.37,28.53,28.66,28.810000000000002,28.94,29.21,16.45,15.76,15.51,15.280000000000001,15.06,14.86,14.65,14.450000000000001,14.06,N/A,N/A +2012,10,29,8,30,102330,101110,99930,54.300000000000004,0,8.46,8.97,9.06,9.09,9.1,9.1,9.09,9.07,9.02,29.19,29.53,29.740000000000002,29.92,30.09,30.25,30.42,30.560000000000002,30.87,16.28,15.59,15.34,15.1,14.89,14.68,14.47,14.280000000000001,13.88,N/A,N/A +2012,10,29,9,30,102350,101130,99950,54.6,0,8.45,8.950000000000001,9.040000000000001,9.07,9.08,9.08,9.06,9.05,9,30.55,30.94,31.17,31.38,31.580000000000002,31.76,31.95,32.13,32.49,16.1,15.41,15.15,14.92,14.700000000000001,14.5,14.290000000000001,14.09,13.700000000000001,N/A,N/A +2012,10,29,10,30,102360,101150,99960,55.46,0,8.36,8.85,8.94,8.97,8.97,8.97,8.950000000000001,8.94,8.88,31.76,32.21,32.480000000000004,32.730000000000004,32.96,33.17,33.39,33.6,34.01,16.080000000000002,15.39,15.13,14.9,14.68,14.48,14.27,14.07,13.68,N/A,N/A +2012,10,29,11,30,102390,101170,99990,56.46,0,8.55,9.05,9.13,9.16,9.16,9.16,9.13,9.11,9.05,33.43,33.85,34.11,34.35,34.58,34.78,35,35.2,35.6,15.98,15.27,15.02,14.790000000000001,14.56,14.36,14.15,13.96,13.56,N/A,N/A +2012,10,29,12,30,102400,101180,100000,60.31,0,8.57,9.07,9.16,9.19,9.19,9.18,9.16,9.14,9.08,33.28,33.74,34.02,34.28,34.53,34.75,34.980000000000004,35.19,35.64,15.72,15,14.74,14.51,14.290000000000001,14.09,13.88,13.68,13.280000000000001,N/A,N/A +2012,10,29,13,30,102420,101200,100020,59.44,0,8.2,8.66,8.73,8.74,8.74,8.73,8.700000000000001,8.68,8.61,33.45,33.95,34.25,34.53,34.79,35.04,35.29,35.53,36,15.71,15,14.75,14.52,14.3,14.1,13.89,13.69,13.3,N/A,N/A +2012,10,29,14,30,102450,101230,100050,60.88,0,7.5600000000000005,7.97,8.03,8.040000000000001,8.040000000000001,8.040000000000001,8.01,7.99,7.94,35.81,36.34,36.68,36.980000000000004,37.27,37.53,37.81,38.06,38.57,15.73,15.05,14.8,14.57,14.35,14.15,13.94,13.74,13.35,N/A,N/A +2012,10,29,15,30,102440,101220,100040,60.77,0,7.3500000000000005,7.73,7.79,7.8,7.79,7.78,7.76,7.74,7.68,34.22,34.69,34.980000000000004,35.230000000000004,35.480000000000004,35.7,35.94,36.160000000000004,36.6,15.84,15.17,14.92,14.69,14.47,14.27,14.06,13.870000000000001,13.48,N/A,N/A +2012,10,29,16,30,102420,101200,100020,58.550000000000004,0,6.91,7.26,7.3100000000000005,7.3100000000000005,7.3100000000000005,7.29,7.2700000000000005,7.25,7.2,33.84,34.22,34.45,34.660000000000004,34.86,35.04,35.230000000000004,35.410000000000004,35.77,15.950000000000001,15.290000000000001,15.05,14.82,14.6,14.41,14.200000000000001,14,13.61,N/A,N/A +2012,10,29,17,30,102390,101170,99990,52.93,0,6.49,6.8100000000000005,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.84,6.82,6.8,6.74,28.48,28.72,28.88,29.03,29.18,29.3,29.43,29.55,29.8,16.18,15.540000000000001,15.290000000000001,15.07,14.85,14.66,14.450000000000001,14.26,13.86,N/A,N/A +2012,10,29,18,30,102350,101140,99960,49.08,0,5.5,5.76,5.8,5.82,5.82,5.82,5.82,5.8100000000000005,5.8,22.52,22.73,22.86,22.98,23.09,23.19,23.29,23.39,23.580000000000002,16.55,15.96,15.72,15.5,15.290000000000001,15.09,14.89,14.69,14.3,N/A,N/A +2012,10,29,19,30,102320,101110,99930,46.660000000000004,0,4.8100000000000005,5.04,5.08,5.11,5.12,5.13,5.13,5.14,5.14,21.86,21.7,21.6,21.51,21.42,21.35,21.26,21.19,21.04,17.19,16.63,16.4,16.18,15.97,15.77,15.56,15.370000000000001,14.97,N/A,N/A +2012,10,29,20,30,102260,101050,99870,43.88,0,4.48,4.71,4.75,4.78,4.8,4.82,4.83,4.84,4.86,14.71,14.75,14.790000000000001,14.82,14.85,14.88,14.91,14.94,15,17.78,17.240000000000002,17.02,16.81,16.6,16.4,16.19,16,15.6,N/A,N/A +2012,10,29,21,30,102210,101010,99830,41.09,0,4.49,4.73,4.78,4.8,4.82,4.84,4.8500000000000005,4.86,4.88,12.35,12.46,12.530000000000001,12.59,12.63,12.67,12.69,12.71,12.74,18.37,17.85,17.63,17.42,17.22,17.02,16.81,16.62,16.23,N/A,N/A +2012,10,29,22,30,102160,100960,99790,41.04,0,4.62,4.87,4.92,4.95,4.98,4.99,5.01,5.0200000000000005,5.04,6.61,6.88,7.05,7.21,7.3500000000000005,7.48,7.61,7.72,7.97,18.8,18.29,18.080000000000002,17.87,17.67,17.47,17.27,17.07,16.68,N/A,N/A +2012,10,29,23,30,102150,100950,99780,42.6,0,5.23,5.5,5.55,5.5600000000000005,5.57,5.57,5.57,5.57,5.55,11.19,11.27,11.290000000000001,11.33,11.35,11.38,11.4,11.43,11.49,19.19,18.69,18.47,18.26,18.05,17.85,17.650000000000002,17.45,17.06,N/A,N/A +2012,10,30,0,30,102130,100930,99770,46.230000000000004,0,5.73,6.04,6.09,6.12,6.13,6.140000000000001,6.140000000000001,6.140000000000001,6.13,14.86,15.120000000000001,15.24,15.36,15.47,15.57,15.66,15.74,15.92,19.22,18.7,18.48,18.27,18.06,17.86,17.650000000000002,17.46,17.06,N/A,N/A +2012,10,30,1,30,102140,100940,99770,45.230000000000004,0,6.03,6.33,6.37,6.37,6.37,6.3500000000000005,6.34,6.3100000000000005,6.2700000000000005,21.740000000000002,21.91,22,22.09,22.17,22.240000000000002,22.32,22.400000000000002,22.55,19.06,18.53,18.31,18.1,17.89,17.7,17.490000000000002,17.3,16.9,N/A,N/A +2012,10,30,2,30,102150,100950,99780,46.11,0,5.34,5.58,5.61,5.61,5.6000000000000005,5.58,5.5600000000000005,5.55,5.5,29.86,30.03,30.11,30.19,30.27,30.35,30.42,30.490000000000002,30.650000000000002,18.94,18.42,18.21,17.990000000000002,17.78,17.59,17.38,17.19,16.8,N/A,N/A +2012,10,30,3,30,102130,100930,99760,48.65,0,5.28,5.51,5.54,5.54,5.53,5.51,5.5,5.48,5.43,34.04,34.31,34.47,34.62,34.76,34.89,35.03,35.15,35.42,18.86,18.330000000000002,18.12,17.91,17.7,17.5,17.3,17.1,16.71,N/A,N/A +2012,10,30,4,30,102110,100910,99740,51.32,0,5.32,5.54,5.55,5.54,5.5200000000000005,5.5,5.47,5.44,5.37,40.57,40.85,41.02,41.18,41.34,41.480000000000004,41.63,41.77,42.07,18.7,18.17,17.96,17.740000000000002,17.53,17.34,17.13,16.95,16.55,N/A,N/A +2012,10,30,5,30,102090,100890,99720,51.550000000000004,0,4.25,4.42,4.43,4.43,4.42,4.4,4.39,4.37,4.33,43.12,43.61,43.9,44.18,44.45,44.69,44.95,45.19,45.7,18.78,18.28,18.06,17.85,17.64,17.45,17.25,17.06,16.66,N/A,N/A +2012,10,30,6,30,102080,100880,99710,51.94,0,4.12,4.2700000000000005,4.28,4.2700000000000005,4.26,4.25,4.23,4.21,4.17,47.61,48.17,48.5,48.82,49.120000000000005,49.39,49.69,49.96,50.53,18.89,18.400000000000002,18.2,17.990000000000002,17.78,17.59,17.38,17.19,16.8,N/A,N/A +2012,10,30,7,30,102070,100870,99700,52.67,0,3.54,3.66,3.66,3.64,3.63,3.61,3.59,3.5700000000000003,3.52,51.300000000000004,51.86,52.18,52.49,52.78,53.04,53.33,53.59,54.14,18.94,18.47,18.26,18.06,17.85,17.66,17.45,17.26,16.87,N/A,N/A +2012,10,30,8,30,102050,100850,99680,53.93,0,2.94,3.02,3.02,3.0100000000000002,2.99,2.98,2.96,2.94,2.9,54.54,55.31,55.81,56.300000000000004,56.76,57.160000000000004,57.6,58,58.85,19,18.54,18.330000000000002,18.13,17.92,17.73,17.52,17.330000000000002,16.94,N/A,N/A +2012,10,30,9,30,102040,100840,99680,58.1,0,2.91,2.98,2.97,2.95,2.93,2.91,2.89,2.87,2.82,60.36,61.15,61.65,62.13,62.59,63.02,63.46,63.88,64.76,18.990000000000002,18.53,18.330000000000002,18.12,17.91,17.72,17.52,17.330000000000002,16.93,N/A,N/A +2012,10,30,10,30,102020,100820,99660,59.370000000000005,0,2.38,2.42,2.41,2.39,2.37,2.35,2.33,2.31,2.27,61.730000000000004,62.93,63.64,64.32000000000001,64.96000000000001,65.55,66.18,66.75,67.95,19.07,18.62,18.41,18.21,18,17.81,17.6,17.41,17.02,N/A,N/A +2012,10,30,11,30,102000,100810,99640,59.59,0,2.2,2.23,2.22,2.2,2.18,2.16,2.14,2.12,2.08,77.05,77.97,78.52,79.03,79.52,79.97,80.44,80.88,81.8,19.2,18.75,18.55,18.34,18.13,17.94,17.740000000000002,17.54,17.150000000000002,N/A,N/A +2012,10,30,12,30,102000,100800,99640,59.94,0,1.9000000000000001,1.93,1.9100000000000001,1.8900000000000001,1.87,1.85,1.83,1.81,1.77,79.04,80.26,81.08,81.88,82.64,83.34,84.09,84.78,86.26,19.28,18.830000000000002,18.63,18.43,18.22,18.03,17.82,17.63,17.240000000000002,N/A,N/A +2012,10,30,13,30,101990,100800,99640,60.02,0,1.76,1.79,1.77,1.75,1.74,1.72,1.71,1.69,1.67,63.050000000000004,64.78,65.93,67.06,68.16,69.18,70.27,71.26,73.4,19.39,18.95,18.75,18.54,18.34,18.150000000000002,17.94,17.75,17.36,N/A,N/A +2012,10,30,14,30,102010,100810,99650,61.04,0,1.78,1.82,1.81,1.8,1.79,1.78,1.77,1.76,1.74,85.15,87.58,88.98,90.32000000000001,91.54,92.66,93.82000000000001,94.88,97.03,19.6,19.17,18.97,18.76,18.56,18.37,18.16,17.97,17.57,N/A,N/A +2012,10,30,15,30,101990,100790,99630,60.99,0,1.27,1.3,1.3,1.3,1.3,1.3,1.3,1.31,1.32,85.96000000000001,89.26,91.38,93.42,95.3,97.03,98.78,100.37,103.60000000000001,19.73,19.31,19.11,18.900000000000002,18.7,18.51,18.31,18.12,17.72,N/A,N/A +2012,10,30,16,30,101960,100760,99600,62.74,0,2.04,2.06,2.04,2.0100000000000002,1.98,1.96,1.94,1.92,1.8800000000000001,118.5,120.34,121.42,122.5,123.52,124.47,125.48,126.4,128.36,19.89,19.47,19.27,19.06,18.86,18.67,18.46,18.28,17.88,N/A,N/A +2012,10,30,17,30,101920,100720,99570,63.42,0,1.37,1.44,1.46,1.48,1.49,1.5,1.52,1.54,1.56,149.06,151.42000000000002,152.79,154.05,155.18,156.20000000000002,157.19,158.08,159.91,20.01,19.59,19.39,19.19,18.990000000000002,18.79,18.59,18.400000000000002,18.01,N/A,N/A +2012,10,30,18,30,101890,100700,99550,66.21000000000001,0,2.16,2.22,2.21,2.2,2.19,2.18,2.17,2.16,2.15,146.39000000000001,148.5,149.76,150.97,152.08,153.1,154.14000000000001,155.09,157.04,20.16,19.740000000000002,19.55,19.34,19.14,18.95,18.740000000000002,18.56,18.16,N/A,N/A +2012,10,30,19,30,101860,100670,99520,65.89,0,2.02,2.13,2.17,2.19,2.22,2.24,2.2600000000000002,2.2800000000000002,2.32,173.20000000000002,174.18,174.79,175.35,175.87,176.35,176.82,177.25,178.12,20.38,19.97,19.78,19.57,19.37,19.18,18.97,18.79,18.39,N/A,N/A +2012,10,30,20,30,101800,100620,99460,67.15,0,2.59,2.69,2.7,2.71,2.72,2.73,2.73,2.73,2.75,167.95000000000002,170.12,171.41,172.63,173.74,174.73,175.74,176.65,178.49,20.56,20.150000000000002,19.95,19.75,19.55,19.36,19.150000000000002,18.97,18.580000000000002,N/A,N/A +2012,10,30,21,30,101770,100580,99430,67.35,0,2.58,2.73,2.77,2.8000000000000003,2.82,2.84,2.85,2.87,2.89,185.21,186.31,186.8,187.25,187.65,188.01,188.37,188.70000000000002,189.34,20.93,20.53,20.34,20.14,19.94,19.75,19.54,19.36,18.96,N/A,N/A +2012,10,30,22,30,101740,100550,99400,68.29,0,3.16,3.3000000000000003,3.3200000000000003,3.33,3.34,3.34,3.34,3.35,3.36,162.39000000000001,164.07,165.07,166.02,166.9,167.72,168.56,169.33,170.92000000000002,20.94,20.53,20.34,20.14,19.94,19.75,19.55,19.36,18.97,N/A,N/A +2012,10,30,23,30,101720,100540,99390,69.13,0,2.79,2.98,3.04,3.08,3.12,3.16,3.19,3.22,3.27,162.06,163.52,164.36,165.11,165.78,166.4,167,167.55,168.66,21.26,20.87,20.68,20.48,20.28,20.09,19.89,19.7,19.31,N/A,N/A +2012,10,31,0,30,101710,100530,99380,68.95,0,3.59,3.77,3.8000000000000003,3.8200000000000003,3.83,3.84,3.85,3.85,3.86,167.94,170.36,171.65,172.85,173.9,174.86,175.82,176.69,178.38,21.61,21.23,21.04,20.84,20.64,20.45,20.25,20.07,19.68,N/A,N/A +2012,10,31,1,30,101700,100520,99380,68.59,0,3.09,3.31,3.38,3.44,3.5,3.5500000000000003,3.6,3.65,3.74,167.61,169.41,170.46,171.41,172.25,173.02,173.79,174.5,175.84,21.7,21.32,21.14,20.94,20.740000000000002,20.56,20.36,20.17,19.78,N/A,N/A +2012,10,31,2,30,101710,100530,99380,68.31,0,3.62,3.87,3.95,4.01,4.05,4.09,4.13,4.17,4.23,192.04,192.95000000000002,193.44,193.87,194.23000000000002,194.56,194.86,195.13,195.68,22.04,21.67,21.490000000000002,21.28,21.09,20.900000000000002,20.7,20.51,20.12,N/A,N/A +2012,10,31,3,30,101700,100520,99370,67.29,0,4.33,4.62,4.7,4.75,4.8,4.84,4.87,4.9,4.96,208.4,208.85,209.1,209.32,209.53,209.72,209.9,210.06,210.4,22.21,21.84,21.650000000000002,21.45,21.26,21.07,20.86,20.68,20.29,N/A,N/A +2012,10,31,4,30,101680,100500,99360,65.49,0,5.5600000000000005,5.8500000000000005,5.9,5.91,5.91,5.91,5.89,5.88,5.8500000000000005,230.83,230.84,230.91,230.98000000000002,231.05,231.12,231.20000000000002,231.26,231.41,22.5,22.12,21.94,21.740000000000002,21.54,21.36,21.16,20.97,20.580000000000002,N/A,N/A +2012,10,31,5,30,101670,100490,99350,66.71000000000001,0,6.0200000000000005,6.46,6.53,6.55,6.5600000000000005,6.55,6.54,6.5200000000000005,6.48,237.65,237.85,237.81,237.74,237.66,237.58,237.49,237.39000000000001,237.18,22.62,22.25,22.07,21.86,21.67,21.47,21.27,21.09,20.69,N/A,N/A +2012,10,31,6,30,101670,100500,99360,68.27,0,5.13,5.5200000000000005,5.62,5.68,5.72,5.75,5.78,5.8,5.84,223.4,223.75,223.96,224.15,224.31,224.46,224.61,224.74,225.01,22.56,22.23,22.05,21.86,21.66,21.47,21.27,21.09,20.7,N/A,N/A +2012,10,31,7,30,101680,100510,99360,69.55,0,5.03,5.43,5.5200000000000005,5.58,5.62,5.66,5.68,5.7,5.73,228.33,228.69,228.89000000000001,229.07,229.23000000000002,229.37,229.52,229.66,229.93,22.68,22.35,22.18,21.98,21.79,21.6,21.400000000000002,21.21,20.82,N/A,N/A +2012,10,31,8,30,101670,100490,99350,69.59,0,4.09,4.54,4.69,4.8100000000000005,4.91,5,5.08,5.15,5.28,237.42000000000002,238.04,238.24,238.38,238.5,238.61,238.70000000000002,238.77,238.91,22.82,22.51,22.34,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,10,31,9,30,101670,100500,99360,70.45,0,3.95,4.24,4.32,4.37,4.41,4.44,4.48,4.5,4.5600000000000005,224.6,225.25,225.69,226.13,226.52,226.89000000000001,227.25,227.58,228.26,22.84,22.53,22.36,22.16,21.97,21.79,21.59,21.400000000000002,21.02,N/A,N/A +2012,10,31,10,30,101670,100500,99360,71.09,0,4.51,4.94,5.0600000000000005,5.15,5.22,5.2700000000000005,5.32,5.36,5.43,245.13,245.73000000000002,245.87,245.97,246.05,246.09,246.12,246.15,246.18,23.05,22.75,22.580000000000002,22.38,22.19,22.01,21.81,21.62,21.23,N/A,N/A +2012,10,31,11,30,101690,100510,99370,72.49,0,4.07,4.3500000000000005,4.4,4.43,4.46,4.48,4.49,4.5,4.53,258.92,257.64,256.74,255.86,255.07,254.32,253.59,252.92000000000002,251.58,22.89,22.580000000000002,22.41,22.22,22.03,21.84,21.650000000000002,21.46,21.07,N/A,N/A +2012,10,31,12,30,101700,100530,99390,72.94,0,3.46,3.67,3.71,3.73,3.75,3.7600000000000002,3.77,3.77,3.7800000000000002,265.48,263.8,262.68,261.53000000000003,260.47,259.49,258.49,257.57,255.81,22.87,22.57,22.400000000000002,22.21,22.02,21.830000000000002,21.64,21.46,21.07,N/A,N/A +2012,10,31,13,30,101710,100540,99400,77.49,0,2.98,3.13,3.15,3.16,3.16,3.16,3.17,3.17,3.2,283,280.93,279.54,278.17,276.86,275.61,274.23,272.95,269.85,22.51,22.19,22.02,21.830000000000002,21.650000000000002,21.47,21.27,21.1,20.72,N/A,N/A +2012,10,31,14,30,101740,100570,99430,77.24,0,2.09,2.22,2.2600000000000002,2.29,2.33,2.36,2.4,2.43,2.5300000000000002,263.78000000000003,262.11,261.09000000000003,260.11,259.19,258.3,257.29,256.33,254.17000000000002,22.5,22.18,22.01,21.82,21.63,21.45,21.25,21.07,20.71,N/A,N/A +2012,10,31,15,30,101740,100570,99430,76.32000000000001,0,1.99,2.09,2.11,2.14,2.15,2.17,2.19,2.21,2.27,268.38,266.4,265.07,263.77,262.53000000000003,261.33,260.09000000000003,258.93,256.23,22.63,22.31,22.14,21.94,21.76,21.57,21.38,21.2,20.82,N/A,N/A +2012,10,31,16,30,101740,100570,99430,77.57000000000001,0,1.96,2.08,2.12,2.15,2.18,2.21,2.25,2.2800000000000002,2.4,228.57,227.57,227.04,226.51,226,225.48000000000002,224.94,224.42000000000002,223.44,22.64,22.32,22.14,21.95,21.76,21.57,21.38,21.2,20.830000000000002,N/A,N/A +2012,10,31,17,30,101710,100540,99400,77.59,0,1.95,2.06,2.09,2.12,2.14,2.17,2.2,2.23,2.36,227.85,227.62,227.53,227.46,227.42000000000002,227.4,227.46,227.54,228.34,22.79,22.47,22.3,22.1,21.91,21.73,21.54,21.36,21,N/A,N/A +2012,10,31,18,30,101690,100520,99380,77.23,0,3.35,3.5500000000000003,3.59,3.61,3.63,3.65,3.67,3.68,3.74,202.47,202.6,202.68,202.76,202.85,202.95000000000002,203.1,203.27,204.63,23.06,22.73,22.55,22.36,22.17,21.990000000000002,21.79,21.61,21.25,N/A,N/A +2012,10,31,19,30,101660,100490,99350,76.77,0,4.3500000000000005,4.63,4.68,4.71,4.72,4.73,4.73,4.73,4.73,202.69,202.96,203.09,203.20000000000002,203.32,203.44,203.58,203.73000000000002,204.12,23.32,23,22.830000000000002,22.63,22.44,22.26,22.06,21.88,21.5,N/A,N/A +2012,10,31,20,30,101630,100460,99320,77.28,0,5.16,5.53,5.59,5.61,5.61,5.6000000000000005,5.59,5.57,5.5200000000000005,200.17000000000002,200.31,200.44,200.57,200.70000000000002,200.82,200.98000000000002,201.13,201.58,23.42,23.11,22.94,22.75,22.56,22.37,22.18,22,21.61,N/A,N/A +2012,10,31,21,30,101610,100440,99310,78.92,0,4.86,5.24,5.32,5.34,5.36,5.36,5.36,5.36,5.34,200,200.28,200.44,200.61,200.78,200.94,201.14000000000001,201.34,201.87,23.41,23.12,22.96,22.76,22.57,22.39,22.19,22.01,21.64,N/A,N/A +2012,10,31,22,30,101590,100420,99290,79.91,0,5.15,5.61,5.71,5.76,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8,200.23000000000002,200.5,200.64000000000001,200.79,200.92000000000002,201.03,201.15,201.27,201.52,23.42,23.14,22.98,22.79,22.6,22.42,22.22,22.04,21.66,N/A,N/A +2012,10,31,23,30,101590,100420,99290,81.61,0,4.99,5.42,5.51,5.5600000000000005,5.58,5.6000000000000005,5.61,5.61,5.61,206.70000000000002,206.93,207.06,207.20000000000002,207.32,207.44,207.57,207.70000000000002,208.02,23.41,23.13,22.97,22.78,22.59,22.41,22.21,22.03,21.650000000000002,N/A,N/A +2012,11,1,0,30,101600,100430,99300,82.33,0,5.99,6.55,6.69,6.76,6.8100000000000005,6.8500000000000005,6.87,6.88,6.9,209.02,209.23000000000002,209.36,209.49,209.61,209.73000000000002,209.85,209.96,210.20000000000002,23.490000000000002,23.22,23.06,22.87,22.68,22.5,22.3,22.12,21.740000000000002,N/A,N/A +2012,11,1,1,30,101620,100450,99320,83.35000000000001,0,6.1000000000000005,6.66,6.79,6.86,6.91,6.93,6.94,6.95,6.95,213.79,213.95000000000002,214.03,214.11,214.20000000000002,214.28,214.38,214.47,214.71,23.53,23.27,23.11,22.92,22.73,22.55,22.36,22.18,21.8,N/A,N/A +2012,11,1,2,30,101630,100470,99330,84.67,0,6.19,6.76,6.9,6.97,7.0200000000000005,7.05,7.0600000000000005,7.07,7.07,219.08,219.28,219.37,219.45000000000002,219.53,219.6,219.68,219.74,219.91,23.55,23.29,23.13,22.94,22.75,22.57,22.38,22.19,21.82,N/A,N/A +2012,11,1,3,30,101640,100470,99340,85.81,0,6.2700000000000005,6.86,7.01,7.07,7.12,7.16,7.18,7.2,7.21,222.72,222.85,222.91,222.99,223.05,223.11,223.18,223.24,223.39000000000001,23.56,23.29,23.13,22.94,22.76,22.57,22.38,22.2,21.82,N/A,N/A +2012,11,1,4,30,101640,100470,99340,86.24,0,6.37,6.98,7.12,7.2,7.24,7.2700000000000005,7.29,7.3100000000000005,7.32,224.98000000000002,225.04,225.11,225.17000000000002,225.24,225.31,225.39000000000001,225.46,225.65,23.59,23.32,23.16,22.97,22.79,22.6,22.41,22.23,21.85,N/A,N/A +2012,11,1,5,30,101650,100480,99350,87.25,0,6.0600000000000005,6.62,6.74,6.8100000000000005,6.86,6.9,6.92,6.93,6.95,228.37,228.47,228.53,228.58,228.64000000000001,228.70000000000002,228.77,228.84,229.02,23.59,23.330000000000002,23.17,22.98,22.79,22.61,22.42,22.240000000000002,21.86,N/A,N/A +2012,11,1,6,30,101670,100500,99370,88.43,0,6.0600000000000005,6.640000000000001,6.78,6.8500000000000005,6.9,6.93,6.95,6.97,6.99,230.68,230.82,230.89000000000001,230.96,231.03,231.1,231.17000000000002,231.23000000000002,231.39000000000001,23.63,23.35,23.19,22.990000000000002,22.81,22.62,22.43,22.240000000000002,21.86,N/A,N/A +2012,11,1,7,30,101710,100540,99410,88.92,0,5.88,6.42,6.5600000000000005,6.63,6.68,6.71,6.73,6.75,6.78,235.93,236.05,236.1,236.17000000000002,236.22,236.28,236.33,236.4,236.54,23.69,23.42,23.26,23.07,22.88,22.69,22.5,22.32,21.93,N/A,N/A +2012,11,1,8,30,101710,100540,99410,89.74,0,5.83,6.390000000000001,6.54,6.62,6.68,6.72,6.75,6.7700000000000005,6.8,239.32,239.41,239.45000000000002,239.51,239.56,239.61,239.66,239.71,239.82,23.72,23.45,23.29,23.1,22.91,22.72,22.53,22.35,21.97,N/A,N/A +2012,11,1,9,30,101710,100540,99410,89.52,0,5.41,5.92,6.05,6.12,6.17,6.19,6.22,6.23,6.26,245.35,245.43,245.46,245.5,245.54,245.57,245.6,245.63,245.71,23.71,23.44,23.28,23.080000000000002,22.900000000000002,22.71,22.52,22.34,21.95,N/A,N/A +2012,11,1,10,30,101730,100560,99430,89.52,0,5.25,5.73,5.8500000000000005,5.91,5.96,5.98,6,6.01,6.0200000000000005,243.46,243.65,243.78,243.94,244.08,244.23000000000002,244.4,244.56,244.97,23.79,23.52,23.35,23.16,22.97,22.78,22.580000000000002,22.39,21.990000000000002,N/A,N/A +2012,11,1,11,30,101740,100580,99440,89.05,0,4.47,4.91,5.03,5.1000000000000005,5.15,5.19,5.23,5.26,5.3100000000000005,249.21,249.61,249.92000000000002,250.22,250.53,250.83,251.14000000000001,251.45000000000002,252.16,23.73,23.44,23.27,23.06,22.87,22.67,22.46,22.26,21.84,N/A,N/A +2012,11,1,12,30,101750,100570,99440,94.45,0,3.94,4.0600000000000005,4.07,4.1,4.14,4.19,4.24,4.28,4.41,269.05,267.92,265.29,259.39,255.9,253.86,252.41,251.23000000000002,249.58,23.04,22.78,22.68,22.62,22.55,22.46,22.31,22.150000000000002,21.8,N/A,N/A +2012,11,1,13,30,101780,100600,99460,98.76,0,3.58,3.63,3.6,3.58,3.62,3.69,3.87,4.0600000000000005,4.3100000000000005,292.12,291.32,288.99,283.55,277.64,271.36,264.07,256.86,250.1,22.21,21.900000000000002,21.77,21.64,21.54,21.44,21.54,21.69,21.59,N/A,N/A +2012,11,1,14,30,101800,100620,99480,99.33,0,3.5,3.65,3.68,3.69,3.9,4.26,4.53,4.78,4.8100000000000005,286.89,285.83,285.07,284.13,280.81,275.67,270.19,264.91,260.07,21.87,21.57,21.43,21.28,21.16,21.080000000000002,21.17,21.28,21.19,N/A,N/A +2012,11,1,15,30,101800,100620,99480,99.37,0,3.35,3.49,3.5100000000000002,3.52,3.56,3.61,3.86,4.17,4.55,296.81,294.40000000000003,292.68,290.61,287.53000000000003,283.86,276.45,268.12,261.84000000000003,21.63,21.32,21.18,21.03,20.85,20.66,20.650000000000002,20.69,21.12,N/A,N/A +2012,11,1,16,30,101790,100610,99470,97.64,0,3.11,3.24,3.25,3.25,3.25,3.2600000000000002,3.27,3.29,3.5300000000000002,278.01,278.24,278.39,278.53000000000003,278.49,278.37,277.18,275.8,269.23,21.97,21.63,21.46,21.27,21.13,21.01,20.85,20.69,20.69,N/A,N/A +2012,11,1,17,30,101770,100590,99460,97.59,0.5,2.06,2.1,2.08,2.06,2.0300000000000002,2.0100000000000002,2.09,2.18,3.0700000000000003,287.29,285.18,283.79,282.13,280.15000000000003,278.02,272.93,267.2,255.17000000000002,22.02,21.69,21.53,21.36,21.22,21.1,20.93,20.77,20.8,N/A,N/A +2012,11,1,18,30,101750,100570,99440,95.97,0,2.61,2.59,2.5,2.38,2.25,2.15,2.17,2.21,2.72,295.3,293.65000000000003,292.24,290.16,286.84000000000003,283.03000000000003,280.27,277.93,262.5,22.19,21.87,21.72,21.57,21.46,21.36,21.23,21.09,20.98,N/A,N/A +2012,11,1,19,30,101720,100550,99410,95.28,0,1.8900000000000001,1.87,1.82,1.76,1.71,1.67,1.6500000000000001,1.6400000000000001,1.98,268.28000000000003,263.86,260.75,256.94,251.74,245.85,237.48000000000002,229.38,239.52,22.330000000000002,22.01,21.84,21.68,21.54,21.42,21.31,21.2,20.98,N/A,N/A +2012,11,1,20,30,101700,100530,99390,95.68,0,1.3900000000000001,1.43,1.44,1.45,1.5,1.57,1.87,2.29,3.0700000000000003,191.83,192.92000000000002,193.85,195.21,197.19,199.69,205.22,212.26,220.34,22.43,22.09,21.92,21.740000000000002,21.580000000000002,21.41,21.32,21.25,21.55,N/A,N/A +2012,11,1,21,30,101670,100500,99360,93.82000000000001,0,3.02,3.15,3.15,3.14,3.13,3.11,3.11,3.1,3.2800000000000002,180.27,180.56,180.77,181.03,181.4,181.86,183.72,185.84,205.38,22.86,22.51,22.34,22.150000000000002,21.97,21.8,21.63,21.48,21.73,N/A,N/A +2012,11,1,22,30,101660,100490,99350,96.05,0,4.36,4.54,4.54,4.5,4.47,4.43,4.43,4.42,4.09,174.08,174.28,174.49,174.86,175.70000000000002,176.86,181.1,186,195.99,22.57,22.23,22.05,21.86,21.68,21.53,21.45,21.42,21.97,N/A,N/A +2012,11,1,23,30,101630,100460,99330,94.54,0,4.25,4.47,4.49,4.51,4.61,4.7700000000000005,5.12,5.5,5.34,181.43,181.58,181.74,181.97,182.65,183.62,185.79,188.27,192.71,22.81,22.490000000000002,22.330000000000002,22.150000000000002,22.02,21.91,21.94,22.02,22.04,N/A,N/A +2012,11,2,0,30,101670,100500,99370,91.01,0,5.63,6.13,6.26,6.34,6.390000000000001,6.43,6.46,6.49,6.54,194.21,194.82,195.12,195.41,195.70000000000002,196.01,196.34,196.66,197.45000000000002,23.45,23.14,22.97,22.76,22.57,22.37,22.16,21.97,21.52,N/A,N/A +2012,11,2,1,30,101660,100490,99360,90.06,0,5.47,5.95,6.05,6.1000000000000005,6.13,6.15,6.15,6.16,6.15,203.20000000000002,203.42000000000002,203.57,203.74,203.91,204.08,204.28,204.47,204.97,23.56,23.27,23.1,22.900000000000002,22.71,22.52,22.330000000000002,22.14,21.75,N/A,N/A +2012,11,2,2,30,101660,100490,99360,90.08,0,5.17,5.64,5.75,5.8100000000000005,5.8500000000000005,5.88,5.9,5.92,5.96,198.78,199.14000000000001,199.36,199.59,199.8,200,200.21,200.41,200.9,23.63,23.34,23.18,22.990000000000002,22.8,22.62,22.43,22.240000000000002,21.86,N/A,N/A +2012,11,2,3,30,101660,100490,99360,90.55,0,5.61,6.12,6.23,6.28,6.32,6.34,6.36,6.38,6.4,197.01,197.18,197.31,197.46,197.61,197.77,197.94,198.12,198.56,23.64,23.37,23.2,23.01,22.830000000000002,22.64,22.45,22.26,21.89,N/A,N/A +2012,11,2,4,30,101640,100480,99340,89.89,0,5.12,5.58,5.69,5.74,5.78,5.8,5.82,5.84,5.88,198.6,198.66,198.74,198.84,198.95000000000002,199.07,199.23000000000002,199.38,199.85,23.68,23.41,23.25,23.06,22.87,22.69,22.490000000000002,22.31,21.94,N/A,N/A +2012,11,2,5,30,101650,100480,99350,89.52,0,6.05,6.61,6.74,6.8100000000000005,6.86,6.890000000000001,6.91,6.92,6.93,201.22,201.29,201.34,201.41,201.48000000000002,201.56,201.66,201.75,202,23.740000000000002,23.47,23.31,23.12,22.93,22.75,22.55,22.37,21.990000000000002,N/A,N/A +2012,11,2,6,30,101660,100490,99360,89.88,0,5.8500000000000005,6.38,6.51,6.57,6.61,6.63,6.65,6.66,6.66,205.13,205.22,205.29,205.37,205.45000000000002,205.52,205.61,205.69,205.92000000000002,23.76,23.490000000000002,23.330000000000002,23.13,22.95,22.76,22.57,22.39,22.01,N/A,N/A +2012,11,2,7,30,101670,100500,99370,88.23,0,5.64,6.16,6.28,6.3500000000000005,6.390000000000001,6.42,6.44,6.45,6.47,211.77,211.87,211.93,211.99,212.06,212.12,212.19,212.25,212.4,23.740000000000002,23.46,23.3,23.11,22.92,22.740000000000002,22.54,22.36,21.98,N/A,N/A +2012,11,2,8,30,101670,100510,99370,89.35000000000001,0,6.13,6.73,6.87,6.96,7.0200000000000005,7.0600000000000005,7.09,7.12,7.15,215.5,215.57,215.62,215.67000000000002,215.72,215.76,215.79,215.82,215.91,23.73,23.45,23.28,23.09,22.900000000000002,22.72,22.52,22.34,21.96,N/A,N/A +2012,11,2,9,30,101680,100510,99380,88.71000000000001,0,6.29,6.91,7.0600000000000005,7.15,7.22,7.26,7.3,7.32,7.36,216.66,216.77,216.82,216.88,216.93,216.99,217.05,217.1,217.22,23.78,23.51,23.35,23.16,22.97,22.78,22.59,22.41,22.02,N/A,N/A +2012,11,2,10,30,101690,100520,99390,87.15,0,5.99,6.58,6.73,6.83,6.9,6.95,6.99,7.0200000000000005,7.08,223.9,224.06,224.14000000000001,224.21,224.25,224.27,224.27,224.26,224.18,23.91,23.66,23.5,23.32,23.14,22.96,22.77,22.59,22.22,N/A,N/A +2012,11,2,11,30,101690,100520,99390,86.68,0,5.89,6.48,6.62,6.71,6.78,6.82,6.86,6.88,6.93,224.02,224.12,224.17000000000002,224.21,224.24,224.28,224.31,224.35,224.42000000000002,23.91,23.650000000000002,23.490000000000002,23.3,23.12,22.94,22.740000000000002,22.56,22.19,N/A,N/A +2012,11,2,12,30,101710,100540,99410,86.94,0,6.5200000000000005,7.17,7.34,7.44,7.51,7.5600000000000005,7.6000000000000005,7.62,7.65,223.72,223.77,223.79,223.81,223.83,223.84,223.84,223.85,223.85,23.89,23.63,23.47,23.28,23.09,22.91,22.72,22.53,22.150000000000002,N/A,N/A +2012,11,2,13,30,101720,100550,99420,86.94,0,4.88,5.37,5.49,5.57,5.64,5.69,5.74,5.78,5.88,224.16,223.87,223.78,223.67000000000002,223.56,223.45000000000002,223.32,223.19,222.89000000000001,23.89,23.62,23.46,23.28,23.09,22.91,22.72,22.55,22.17,N/A,N/A +2012,11,2,14,30,101740,100580,99440,85.17,0,4.37,4.82,4.93,5.0200000000000005,5.09,5.15,5.2,5.25,5.3500000000000005,224.86,224.85,224.86,224.85,224.83,224.8,224.77,224.73000000000002,224.63,23.96,23.7,23.54,23.36,23.17,22.990000000000002,22.8,22.62,22.240000000000002,N/A,N/A +2012,11,2,15,30,101760,100590,99460,85.55,0,5.01,5.46,5.57,5.63,5.66,5.69,5.7,5.71,5.72,222.99,223.15,223.25,223.34,223.41,223.47,223.53,223.58,223.67000000000002,23.96,23.7,23.54,23.35,23.16,22.98,22.78,22.6,22.22,N/A,N/A +2012,11,2,16,30,101760,100590,99460,85.06,0,4.89,5.33,5.44,5.51,5.55,5.59,5.62,5.64,5.68,221.16,221.34,221.4,221.45000000000002,221.49,221.51,221.54,221.56,221.57,23.990000000000002,23.72,23.56,23.37,23.18,22.990000000000002,22.8,22.62,22.23,N/A,N/A +2012,11,2,17,30,101740,100570,99440,84.65,0,4.08,4.42,4.49,4.5200000000000005,4.55,4.57,4.57,4.58,4.59,211.6,212.11,212.5,212.9,213.28,213.64000000000001,214.01,214.35,215.07,24.1,23.81,23.650000000000002,23.45,23.27,23.080000000000002,22.89,22.7,22.32,N/A,N/A +2012,11,2,18,30,101730,100560,99430,81.32000000000001,0,4.67,5.13,5.25,5.3100000000000005,5.36,5.39,5.41,5.43,5.46,206.65,207.27,207.63,207.97,208.3,208.62,208.96,209.27,209.98000000000002,24.39,24.13,23.97,23.78,23.6,23.42,23.23,23.05,22.67,N/A,N/A +2012,11,2,19,30,101710,100540,99410,83.61,0,4.3500000000000005,4.68,4.73,4.75,4.75,4.76,4.7700000000000005,4.78,4.88,176.31,176.24,176.31,176.37,176.46,176.54,176.71,176.9,177.75,24.23,23.94,23.78,23.59,23.400000000000002,23.22,23.03,22.86,22.52,N/A,N/A +2012,11,2,20,30,101680,100510,99380,84.18,0,5.15,5.61,5.71,5.7700000000000005,5.8,5.83,5.84,5.8500000000000005,5.8500000000000005,179.66,180.04,180.28,180.52,180.75,180.96,181.19,181.39000000000001,181.87,24.3,24.03,23.87,23.68,23.490000000000002,23.31,23.12,22.94,22.55,N/A,N/A +2012,11,2,21,30,101670,100500,99380,83.71000000000001,0,5.58,6.1000000000000005,6.23,6.3100000000000005,6.36,6.4,6.43,6.46,6.51,173.93,174.45000000000002,174.79,175.16,175.52,175.86,176.23,176.58,177.34,24.3,24.060000000000002,23.91,23.73,23.55,23.37,23.18,23,22.63,N/A,N/A +2012,11,2,22,30,101670,100500,99370,84.88,0,5.48,6.09,6.25,6.37,6.46,6.5200000000000005,6.57,6.62,6.67,173.56,174.19,174.61,175.1,175.58,176.06,176.56,177.03,178.01,24.27,24.060000000000002,23.92,23.740000000000002,23.57,23.39,23.21,23.03,22.66,N/A,N/A +2012,11,2,23,30,101670,100500,99370,85.43,0,5.3100000000000005,5.93,6.12,6.24,6.34,6.41,6.45,6.5,6.5600000000000005,176.79,176.93,177.01,177.01,176.97,176.9,176.75,176.58,176.03,24.11,23.900000000000002,23.76,23.59,23.42,23.240000000000002,23.06,22.89,22.52,N/A,N/A +2012,11,3,0,30,101690,100520,99390,82.11,0,6.140000000000001,6.92,7.17,7.3500000000000005,7.48,7.57,7.63,7.68,7.78,180.6,180.55,180.53,180.49,180.44,180.4,180.34,180.27,180.24,24.18,23.98,23.85,23.69,23.53,23.35,23.17,23,22.64,N/A,N/A +2012,11,3,1,30,101680,100510,99380,81.96000000000001,0,6.75,7.42,7.58,7.68,7.74,7.78,7.8100000000000005,7.82,7.83,173.20000000000002,173.4,173.51,173.62,173.72,173.81,173.9,173.99,174.18,24.11,23.88,23.73,23.55,23.37,23.2,23,22.830000000000002,22.45,N/A,N/A +2012,11,3,2,30,101680,100510,99380,80.69,0,7.1000000000000005,7.82,7.98,8.08,8.14,8.18,8.21,8.22,8.23,171.08,171.28,171.39000000000001,171.5,171.6,171.71,171.81,171.91,172.13,24.09,23.85,23.71,23.53,23.34,23.16,22.98,22.8,22.42,N/A,N/A +2012,11,3,3,30,101680,100510,99380,82.60000000000001,0,7.34,8.09,8.28,8.39,8.46,8.51,8.53,8.55,8.56,169.78,170,170.12,170.25,170.38,170.51,170.63,170.74,171.01,23.97,23.72,23.57,23.38,23.2,23.02,22.830000000000002,22.650000000000002,22.27,N/A,N/A +2012,11,3,4,30,101680,100520,99380,81.03,0,7.7700000000000005,8.58,8.78,8.91,8.98,9.040000000000001,9.08,9.11,9.13,171.9,172.01,172.07,172.12,172.17000000000002,172.22,172.27,172.3,172.39000000000001,23.990000000000002,23.740000000000002,23.59,23.41,23.22,23.04,22.85,22.67,22.3,N/A,N/A +2012,11,3,5,30,101680,100510,99370,78.85000000000001,0,7.68,8.48,8.68,8.8,8.88,8.950000000000001,8.99,9.03,9.09,175.67000000000002,175.63,175.65,175.68,175.71,175.73,175.76,175.79,175.86,24.05,23.8,23.650000000000002,23.46,23.28,23.1,22.91,22.73,22.35,N/A,N/A +2012,11,3,6,30,101700,100530,99390,77.82000000000001,0,8.13,9.01,9.24,9.38,9.49,9.56,9.620000000000001,9.66,9.73,179.34,179.52,179.61,179.69,179.76,179.82,179.88,179.95000000000002,180.05,24.150000000000002,23.91,23.75,23.57,23.38,23.2,23.01,22.830000000000002,22.45,N/A,N/A +2012,11,3,7,30,101720,100550,99420,76.54,0,7.9,8.77,8.99,9.14,9.24,9.32,9.38,9.43,9.49,182.68,182.74,182.75,182.74,182.74,182.74,182.74,182.73,182.73,24.3,24.060000000000002,23.91,23.73,23.55,23.37,23.18,23,22.62,N/A,N/A +2012,11,3,8,30,101730,100560,99430,76.33,0,7.68,8.51,8.73,8.88,8.98,9.06,9.13,9.18,9.25,181.97,181.79,181.74,181.70000000000002,181.67000000000002,181.66,181.65,181.65,181.66,24.37,24.14,23.98,23.8,23.62,23.43,23.240000000000002,23.06,22.68,N/A,N/A +2012,11,3,9,30,101750,100580,99450,77.01,0,8.22,9.08,9.28,9.39,9.46,9.5,9.52,9.53,9.52,182.61,183.08,183.31,183.52,183.72,183.91,184.09,184.26,184.61,24.37,24.150000000000002,24.01,23.830000000000002,23.650000000000002,23.47,23.28,23.1,22.72,N/A,N/A +2012,11,3,10,30,101760,100600,99460,74.94,0,7.1000000000000005,7.82,8,8.120000000000001,8.2,8.26,8.3,8.34,8.39,189.3,189.19,189.18,189.18,189.17000000000002,189.16,189.16,189.16,189.15,24.490000000000002,24.28,24.13,23.96,23.78,23.6,23.41,23.240000000000002,22.87,N/A,N/A +2012,11,3,11,30,101790,100630,99490,78.35000000000001,0,6.96,7.71,7.91,8.06,8.16,8.25,8.31,8.36,8.44,185.12,185.56,185.72,185.85,185.96,186.05,186.12,186.19,186.27,24.42,24.2,24.05,23.87,23.7,23.52,23.330000000000002,23.16,22.78,N/A,N/A +2012,11,3,12,30,101820,100650,99520,78.88,0,5.72,6.42,6.65,6.79,6.91,7.01,7.08,7.140000000000001,7.22,183.97,183.8,183.72,183.66,183.6,183.55,183.5,183.46,183.37,24.44,24.22,24.080000000000002,23.91,23.75,23.580000000000002,23.39,23.22,22.85,N/A,N/A +2012,11,3,13,30,101850,100680,99550,76.14,0,6.34,7.08,7.29,7.390000000000001,7.46,7.5200000000000005,7.54,7.54,7.53,186.89000000000001,187.04,187.14000000000001,187.3,187.46,187.63,187.79,187.93,188.21,24.55,24.37,24.25,24.07,23.91,23.740000000000002,23.55,23.38,23,N/A,N/A +2012,11,3,14,30,101890,100720,99590,78.66,0,4.63,5.18,5.36,5.48,5.58,5.67,5.74,5.79,5.88,186.39000000000001,186.18,186.14000000000001,186.20000000000002,186.22,186.21,186.20000000000002,186.19,186.17000000000002,24.46,24.240000000000002,24.1,23.93,23.77,23.6,23.41,23.240000000000002,22.87,N/A,N/A +2012,11,3,15,30,101900,100730,99600,81.7,0,3.96,4.29,4.38,4.49,4.58,4.65,4.72,4.78,4.9,167.46,168.19,168.76,169.66,170.36,170.94,171.66,172.38,173.75,24.400000000000002,24.18,24.05,23.89,23.73,23.56,23.38,23.22,22.87,N/A,N/A +2012,11,3,16,30,101880,100720,99580,78.42,0,4.07,4.47,4.57,4.65,4.7,4.75,4.78,4.8100000000000005,4.87,174.53,174.98,175.3,175.63,175.95000000000002,176.25,176.59,176.91,177.69,24.57,24.34,24.2,24.02,23.84,23.67,23.48,23.31,22.94,N/A,N/A +2012,11,3,17,30,101870,100700,99570,75.18,0,3.87,4.2,4.2700000000000005,4.3100000000000005,4.34,4.36,4.38,4.39,4.41,176.19,176.25,176.34,176.42000000000002,176.5,176.57,176.63,176.69,176.81,24.740000000000002,24.5,24.34,24.150000000000002,23.97,23.79,23.6,23.42,23.04,N/A,N/A +2012,11,3,18,30,101840,100670,99540,78.34,0,3.85,4.14,4.2,4.23,4.24,4.25,4.25,4.25,4.25,165.71,165.92000000000002,166.06,166.21,166.34,166.46,166.58,166.70000000000002,166.93,24.63,24.36,24.2,24.01,23.82,23.63,23.44,23.26,22.88,N/A,N/A +2012,11,3,19,30,101830,100670,99540,79.39,0,5.0200000000000005,5.47,5.5600000000000005,5.61,5.64,5.66,5.68,5.69,5.7,165.53,165.74,165.88,166.03,166.16,166.28,166.42000000000002,166.54,166.81,24.63,24.36,24.19,24,23.81,23.63,23.43,23.25,22.87,N/A,N/A +2012,11,3,20,30,101820,100650,99510,82,0,7.55,8.13,8.26,8.36,8.55,8.83,9.16,9.48,9.61,181.66,180.98,180.74,180.46,180.02,179.43,178.97,178.56,179.86,22.830000000000002,22.5,22.34,22.17,22.03,21.92,21.89,21.89,21.98,N/A,N/A +2012,11,3,21,30,101810,100640,99510,72.61,0,4.5200000000000005,4.8,4.88,4.98,4.98,4.87,4.68,4.47,4.13,171.22,171.08,170.69,170.02,169.79,169.93,172.20000000000002,175.02,183.78,23.42,23.17,23.07,23.01,22.98,22.97,22.95,22.94,23.25,N/A,N/A +2012,11,3,22,30,101870,100700,99560,77.96000000000001,0,2.62,2.6,2.54,2.47,2.43,2.41,2.4,2.41,2.46,274,269.78000000000003,266.31,261.72,257.01,251.84,246.84,242.22,233.64000000000001,23.22,22.94,22.8,22.63,22.48,22.330000000000002,22.17,22.02,21.69,N/A,N/A +2012,11,3,23,30,101880,100700,99560,80.14,0,1.72,1.7,1.68,1.6500000000000001,1.6300000000000001,1.61,1.68,1.78,2.59,270.18,266.64,263.7,259.86,255.29,249.77,241.45000000000002,232.23000000000002,213.83,22.67,22.35,22.19,22.01,21.830000000000002,21.67,21.51,21.36,21.09,N/A,N/A +2012,11,4,0,30,101810,100630,99500,82.17,0,2.08,2.2600000000000002,2.37,2.5300000000000002,2.84,3.27,3.68,4.07,4.43,237.89000000000001,236.70000000000002,235.47,233.49,229.99,225.18,221.54,218.31,213.25,22.78,22.46,22.3,22.13,21.98,21.85,21.73,21.63,21.36,N/A,N/A +2012,11,4,1,30,101810,100640,99500,81.82000000000001,0,1.04,1.05,1.04,1.03,1.02,1.02,1.31,1.77,2.3000000000000003,290.53000000000003,287.08,284.42,280.6,274.35,266.76,244.52,212.69,202.94,22.84,22.52,22.35,22.16,21.98,21.8,21.7,21.62,21.43,N/A,N/A +2012,11,4,2,30,101850,100680,99540,82.94,0,1.8800000000000001,1.86,1.8,1.72,1.6500000000000001,1.58,1.5,1.42,1.18,48.31,50.77,52.53,54.68,57.15,59.92,63.84,67.74,101.02,23,22.69,22.53,22.330000000000002,22.150000000000002,21.97,21.79,21.61,21.29,N/A,N/A +2012,11,4,3,30,101830,100650,99510,84.54,0,2.98,3.0100000000000002,2.97,2.9,2.83,2.7600000000000002,2.69,2.62,2.45,72.81,74.92,76.32000000000001,78,79.78,81.66,84.08,86.44,94.37,22.92,22.6,22.44,22.25,22.06,21.88,21.7,21.53,21.18,N/A,N/A +2012,11,4,4,30,101820,100650,99510,86.37,0,2.73,2.84,2.84,2.84,2.82,2.81,2.7800000000000002,2.7600000000000002,2.66,90.67,90.93,91.11,91.34,91.66,92.06,92.46000000000001,92.84,95.33,22.84,22.51,22.34,22.14,21.95,21.76,21.57,21.39,21.02,N/A,N/A +2012,11,4,5,30,101800,100620,99490,86.12,0,2.17,2.27,2.29,2.31,2.31,2.32,2.33,2.33,2.4,132.95,134.38,135.27,136.25,137.23,138.25,139.51,140.79,147.02,22.98,22.66,22.490000000000002,22.3,22.11,21.92,21.73,21.55,21.2,N/A,N/A +2012,11,4,6,30,101790,100620,99480,84.78,0,3.61,3.8000000000000003,3.84,3.85,3.85,3.85,3.85,3.84,3.8200000000000003,156.66,157.05,157.26,157.48,157.70000000000002,157.93,158.21,158.47,159.25,23.11,22.78,22.61,22.41,22.22,22.04,21.84,21.66,21.28,N/A,N/A +2012,11,4,7,30,101810,100640,99500,87.08,0,3.45,3.65,3.68,3.7,3.7,3.71,3.71,3.71,3.73,152.70000000000002,153.07,153.29,153.56,153.86,154.20000000000002,154.69,155.20000000000002,158.16,23.14,22.82,22.650000000000002,22.45,22.27,22.080000000000002,21.89,21.71,21.36,N/A,N/A +2012,11,4,8,30,101830,100660,99520,87.64,0,3.62,3.84,3.89,3.92,3.94,3.96,3.97,3.99,4.05,180.46,180.70000000000002,180.79,180.88,180.99,181.12,181.3,181.48,182.23,23.29,22.98,22.81,22.61,22.42,22.23,22.04,21.86,21.490000000000002,N/A,N/A +2012,11,4,9,30,101840,100670,99530,85.74,0,4.07,4.36,4.42,4.44,4.46,4.46,4.49,4.5200000000000005,4.59,217.54,217.5,217.46,217.41,217.36,217.31,217.23000000000002,217.16,218.48000000000002,23.67,23.39,23.23,23.04,22.87,22.69,22.53,22.38,22.150000000000002,N/A,N/A +2012,11,4,10,30,101860,100690,99550,86.65,0,3.09,3.27,3.29,3.29,3.29,3.29,3.29,3.29,3.38,220.63,220.96,221.11,221.33,221.57,221.86,222.3,222.78,225.85,23.61,23.32,23.16,22.97,22.78,22.6,22.41,22.240000000000002,21.97,N/A,N/A +2012,11,4,11,30,101870,100700,99560,86.76,0,2.72,2.88,2.91,2.91,2.92,2.92,2.92,2.93,2.97,214.96,215.4,215.64000000000001,215.95000000000002,216.28,216.66,217.15,217.66,220.28,23.56,23.27,23.1,22.91,22.72,22.53,22.34,22.16,21.79,N/A,N/A +2012,11,4,12,30,101870,100690,99560,85.17,0,3.0100000000000002,3.2,3.24,3.27,3.2800000000000002,3.3000000000000003,3.3200000000000003,3.33,3.38,234.07,234.33,234.45000000000002,234.58,234.70000000000002,234.84,234.99,235.15,235.72,23.57,23.28,23.11,22.91,22.73,22.54,22.34,22.16,21.78,N/A,N/A +2012,11,4,13,30,101890,100720,99580,84.92,0,3.16,3.43,3.5100000000000002,3.56,3.61,3.65,3.7,3.74,3.83,254.03,252.97,252.33,251.74,251.23000000000002,250.75,250.29,249.86,248.92000000000002,23.66,23.38,23.21,23.02,22.830000000000002,22.64,22.45,22.27,21.89,N/A,N/A +2012,11,4,14,30,101930,100760,99620,86.46000000000001,0,2.61,2.68,2.67,2.64,2.61,2.58,2.56,2.5500000000000003,2.56,295.62,293.74,291.88,289.53000000000003,287.28000000000003,284.94,281.87,278.65000000000003,272.23,23.5,23.21,23.06,22.86,22.69,22.51,22.330000000000002,22.150000000000002,21.81,N/A,N/A +2012,11,4,15,30,101920,100750,99610,94.58,0,4.28,4.41,4.39,4.33,4.2700000000000005,4.19,4.08,3.96,3.48,349.79,349.18,348.6,347.86,347,346,343.99,341.8,333.02,22.51,22.17,22,21.81,21.64,21.48,21.34,21.21,21.17,N/A,N/A +2012,11,4,16,30,101910,100730,99590,99.29,0,4.46,4.59,4.5600000000000005,4.49,4.39,4.28,4.0600000000000005,3.81,3.23,348.16,348.06,348.05,348.01,347.95,347.88,346.35,344.5,336.03000000000003,21.31,20.95,20.8,20.66,20.51,20.36,20.17,19.97,20.77,N/A,N/A +2012,11,4,17,30,101880,100700,99560,94.72,0,2.67,2.73,2.73,2.7,2.68,2.65,2.63,2.62,2.75,349.93,350.04,350.06,350.07,350,349.87,348.61,347.04,333,21.52,21.16,20.98,20.78,20.6,20.42,20.240000000000002,20.06,20.490000000000002,N/A,N/A +2012,11,4,18,30,101850,100680,99530,92.75,0,1.51,1.57,1.59,1.62,1.6500000000000001,1.7,1.87,2.08,3.35,359.35,358.11,357.18,356.01,354.63,352.96,350.33,347.27,341.72,21.85,21.5,21.330000000000002,21.14,20.97,20.8,20.68,20.59,21.09,N/A,N/A +2012,11,4,19,30,101810,100640,99500,89,0,0.52,0.54,0.55,0.56,0.59,0.63,0.8,1.07,2.0100000000000002,240.16,247.29,252.57,259.3,267.39,277.61,291.76,310.58,329.36,22.400000000000002,22.07,21.900000000000002,21.71,21.54,21.38,21.27,21.18,21.490000000000002,N/A,N/A +2012,11,4,20,30,101800,100620,99490,82.79,0,0.8300000000000001,0.8300000000000001,0.81,0.79,0.78,0.78,0.87,1.02,2.23,216.04,220.96,224.58,229.76,236.75,245.79,261.81,282.12,314.84000000000003,22.96,22.63,22.47,22.28,22.1,21.93,21.79,21.67,21.77,N/A,N/A +2012,11,4,21,30,101770,100600,99460,82.13,0,1.8,1.84,1.84,1.83,1.82,1.81,1.82,1.83,2.57,229.72,231.1,232.05,233.31,234.75,236.35,239.76,243.54,300.22,23.22,22.89,22.72,22.53,22.35,22.18,22.03,21.89,22.150000000000002,N/A,N/A +2012,11,4,22,30,101760,100590,99460,75.2,0,2.85,2.96,2.96,2.93,2.89,2.83,2.67,2.49,1.54,194.8,194.94,195.12,195.44,196.02,196.88,199.74,203.04,249.15,23.67,23.37,23.2,23,22.82,22.63,22.45,22.29,22.19,N/A,N/A +2012,11,4,23,30,101780,100610,99470,75.7,0,2.73,2.83,2.8000000000000003,2.75,2.62,2.42,1.84,1.32,0.87,190.07,190.71,191.11,191.63,192.77,194.49,204.38,213.87,248.02,23.740000000000002,23.45,23.29,23.1,22.95,22.81,22.77,22.75,22.57,N/A,N/A +2012,11,5,0,30,101800,100630,99500,79.42,0,3.06,3.22,3.22,3.19,3.16,3.13,3.06,2.98,2.35,212.73000000000002,213.27,213.61,213.99,214.34,214.68,215.20000000000002,215.76,223.21,23.68,23.400000000000002,23.240000000000002,23.04,22.86,22.67,22.48,22.3,22.07,N/A,N/A +2012,11,5,1,30,101820,100650,99510,81.64,0,2.58,2.7,2.71,2.7,2.69,2.67,2.65,2.62,2.57,232.70000000000002,232.32,232.09,231.77,231.41,231.01,230.52,230.02,228.55,23.61,23.32,23.16,22.96,22.78,22.59,22.400000000000002,22.21,21.830000000000002,N/A,N/A +2012,11,5,2,30,101820,100650,99510,82.3,0,2.05,2.15,2.16,2.16,2.16,2.16,2.15,2.14,2.12,238.34,238.1,237.95000000000002,237.8,237.66,237.52,237.35,237.19,236.62,23.47,23.17,23.01,22.81,22.62,22.43,22.240000000000002,22.05,21.67,N/A,N/A +2012,11,5,3,30,101810,100640,99510,78.88,0,2.06,2.2,2.24,2.2600000000000002,2.27,2.29,2.3000000000000003,2.32,2.35,243.24,244.41,244.99,245.62,246.23000000000002,246.86,247.55,248.22,249.8,23.650000000000002,23.36,23.2,23,22.81,22.62,22.43,22.25,21.86,N/A,N/A +2012,11,5,4,30,101790,100620,99480,77.95,0,2.17,2.35,2.4,2.44,2.48,2.5100000000000002,2.54,2.57,2.62,241.51,243.20000000000002,244.32,245.38,246.32,247.22,248.11,248.95000000000002,250.71,23.8,23.53,23.37,23.17,22.990000000000002,22.8,22.61,22.43,22.04,N/A,N/A +2012,11,5,5,30,101780,100610,99480,78.11,0,2.3000000000000003,2.47,2.5100000000000002,2.5300000000000002,2.5500000000000003,2.56,2.57,2.58,2.59,270.03000000000003,269.93,269.72,269.44,269.17,268.89,268.58,268.27,267.6,23.89,23.63,23.47,23.27,23.09,22.900000000000002,22.71,22.52,22.150000000000002,N/A,N/A +2012,11,5,6,30,101800,100630,99490,77.29,0,2.42,2.5500000000000003,2.58,2.6,2.61,2.62,2.63,2.64,2.65,262.13,261.41,260.96,260.48,260,259.49,258.88,258.25,256.48,23.63,23.330000000000002,23.16,22.96,22.77,22.59,22.39,22.21,21.830000000000002,N/A,N/A +2012,11,5,7,30,101800,100630,99490,78.28,0,3.15,3.34,3.39,3.41,3.43,3.44,3.45,3.45,3.47,262.08,261.44,260.98,260.52,260.09000000000003,259.67,259.22,258.8,257.86,23.66,23.35,23.19,22.990000000000002,22.8,22.61,22.41,22.23,21.84,N/A,N/A +2012,11,5,8,30,101770,100600,99460,80.07000000000001,0,3.81,4.05,4.09,4.11,4.12,4.13,4.13,4.13,4.13,268.07,267.49,267.11,266.72,266.36,266.01,265.65,265.31,264.56,23.580000000000002,23.27,23.09,22.900000000000002,22.71,22.52,22.32,22.14,21.75,N/A,N/A +2012,11,5,9,30,101770,100600,99460,82.66,0,4.44,4.7,4.75,4.7700000000000005,4.78,4.78,4.78,4.7700000000000005,4.75,273,272.16,271.6,271.02,270.48,269.95,269.39,268.85,267.7,23.41,23.09,22.92,22.72,22.53,22.34,22.150000000000002,21.96,21.580000000000002,N/A,N/A +2012,11,5,10,30,101770,100590,99460,83.5,0,4.22,4.45,4.48,4.49,4.49,4.48,4.46,4.45,4.41,275.86,274.84000000000003,274.16,273.42,272.72,272.02,271.26,270.51,268.74,23.12,22.78,22.61,22.41,22.22,22.04,21.84,21.66,21.29,N/A,N/A +2012,11,5,11,30,101780,100610,99470,84.47,0,3.98,4.16,4.17,4.16,4.14,4.12,4.1,4.07,4.05,289.32,288.67,288.2,287.64,287.05,286.41,285.57,284.72,281.71,22.67,22.32,22.14,21.95,21.76,21.580000000000002,21.39,21.22,20.89,N/A,N/A +2012,11,5,12,30,101780,100610,99470,85.79,0,4.51,4.72,4.74,4.73,4.71,4.68,4.64,4.61,4.5600000000000005,292.76,292.43,292.18,291.90000000000003,291.6,291.29,290.88,290.47,289.1,22.42,22.06,21.88,21.68,21.5,21.32,21.13,20.96,20.61,N/A,N/A +2012,11,5,13,30,101780,100600,99460,87.85000000000001,0,4.03,4.21,4.22,4.21,4.19,4.17,4.15,4.14,4.18,297.54,297.11,296.8,296.46,296.07,295.65000000000003,295.08,294.5,291.99,22.11,21.740000000000002,21.56,21.36,21.18,21,20.81,20.650000000000002,20.36,N/A,N/A +2012,11,5,14,30,101800,100620,99480,86.94,0,4.25,4.43,4.46,4.44,4.43,4.42,4.42,4.42,4.7,294.64,294.45,294.3,294.11,293.90000000000003,293.66,293.24,292.79,289.76,22.12,21.75,21.57,21.38,21.2,21.02,20.86,20.71,20.66,N/A,N/A +2012,11,5,15,30,101780,100600,99460,87.54,0,4.37,4.5600000000000005,4.58,4.57,4.5600000000000005,4.54,4.55,4.5600000000000005,4.88,295.51,295.28000000000003,295.12,294.93,294.71,294.46,294.03000000000003,293.57,290.98,22.150000000000002,21.78,21.61,21.42,21.240000000000002,21.07,20.91,20.77,20.76,N/A,N/A +2012,11,5,16,30,101760,100590,99450,87,0,3.88,4.05,4.07,4.07,4.07,4.07,4.07,4.08,4.23,294.51,294.42,294.36,294.29,294.21,294.13,294.01,293.89,293.29,22.240000000000002,21.87,21.69,21.490000000000002,21.31,21.13,20.95,20.78,20.490000000000002,N/A,N/A +2012,11,5,17,30,101730,100560,99420,86.68,0,3.63,3.77,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.7600000000000002,3.75,3.88,282.93,283.3,283.56,283.88,284.22,284.61,285.14,285.68,287.96,22.34,21.97,21.79,21.6,21.41,21.23,21.05,20.88,20.6,N/A,N/A +2012,11,5,18,30,101690,100510,99380,86.35000000000001,0,3.25,3.37,3.38,3.38,3.37,3.36,3.37,3.39,3.66,263.23,264.2,264.93,265.79,266.77,267.87,269.66,271.56,280.29,22.55,22.19,22.01,21.82,21.64,21.46,21.29,21.14,20.96,N/A,N/A +2012,11,5,19,30,101650,100480,99350,85.5,0,3.81,3.97,3.99,3.98,3.98,3.99,4.05,4.12,4.3500000000000005,238.79,239.38,239.94,240.84,242.33,244.52,249.05,254.36,263.97,22.95,22.62,22.46,22.28,22.14,22.03,22,22.02,22.07,N/A,N/A +2012,11,5,20,30,101560,100400,99270,82.66,0,4.9,5.13,5.15,5.13,5.15,5.2,5.34,5.53,5.8100000000000005,224.53,225.05,225.67000000000002,226.73000000000002,228.76,231.67000000000002,235.86,240.42000000000002,247.12,23.650000000000002,23.34,23.19,23.03,22.92,22.85,22.84,22.84,22.73,N/A,N/A +2012,11,5,21,30,101550,100390,99260,83.38,0,7.12,7.7,7.84,7.9,7.94,7.95,7.96,7.96,7.94,238.07,239.07,239.83,240.73000000000002,241.54,242.39000000000001,243.32,244.28,246.39000000000001,24.19,23.93,23.79,23.6,23.43,23.25,23.07,22.900000000000002,22.56,N/A,N/A +2012,11,5,22,30,101500,100340,99210,79.2,0,6.55,7.01,7.0600000000000005,7.05,7.0200000000000005,6.97,6.94,6.92,6.74,249.47,250.25,250.78,251.52,252.35,253.29,254.89000000000001,256.62,266.12,24.310000000000002,24.05,23.91,23.73,23.57,23.41,23.27,23.16,23.2,N/A,N/A +2012,11,5,23,30,101510,100340,99210,79.14,0,4.63,4.91,4.93,4.91,4.9,4.92,4.78,4.61,4.43,250.61,250.97,251.25,251.70000000000002,252.63,254.01000000000002,259.55,266.05,273.96,24.3,24.04,23.89,23.72,23.59,23.48,23.46,23.490000000000002,23.32,N/A,N/A +2012,11,6,0,30,101510,100350,99220,77.65,0,4.08,4.33,4.36,4.36,4.39,4.45,4.5,4.55,4.57,249.39000000000001,249.67000000000002,249.89000000000001,250.21,251.32,253.01000000000002,256.76,260.88,267.82,24.44,24.19,24.04,23.86,23.71,23.57,23.51,23.48,23.38,N/A,N/A +2012,11,6,1,30,101680,100500,99350,90.66,203.60000000000002,11.88,12.77,12.98,13.05,13.09,13.1,13.1,13.09,13.13,354.72,354.05,353.90000000000003,353.76,353.63,353.52,353.35,353.19,352.75,20.73,20.16,19.95,19.740000000000002,19.55,19.37,19.19,19.03,18.7,N/A,N/A +2012,11,6,2,30,101600,100430,99290,84.45,0,3.1,3.33,3.45,3.67,4.43,5.96,6.8500000000000005,7.44,8.2,327.52,328.29,328.83,329.7,331.58,334.96,336.66,337.6,339.39,21.71,21.37,21.22,21.07,21.18,21.5,21.82,22.1,22.400000000000002,N/A,N/A +2012,11,6,3,30,101590,100420,99280,72.41,0,6.88,7.390000000000001,7.5200000000000005,7.57,7.63,7.68,7.75,7.8100000000000005,7.94,9.040000000000001,9.38,9.26,9.06,8.89,8.75,8.68,8.63,8.57,23.400000000000002,23.150000000000002,23.02,22.88,22.740000000000002,22.6,22.45,22.31,22.01,N/A,N/A +2012,11,6,4,30,101610,100440,99300,70.43,0,6.67,7.2700000000000005,7.45,7.57,7.66,7.73,7.8100000000000005,7.87,8.01,1.53,2.04,2.39,2.7600000000000002,3.11,3.46,3.83,4.17,4.95,23.34,23,22.830000000000002,22.64,22.45,22.26,22.07,21.89,21.52,N/A,N/A +2012,11,6,5,30,101590,100420,99280,62.410000000000004,0,10.34,11.3,11.52,11.63,11.69,11.72,11.73,11.74,11.71,13.780000000000001,13.93,14.05,14.16,14.26,14.35,14.46,14.55,14.74,23.05,22.69,22.51,22.31,22.13,21.94,21.76,21.580000000000002,21.22,N/A,N/A +2012,11,6,6,30,101670,100490,99340,66.06,0,10.72,11.620000000000001,11.84,11.93,11.98,12,12.01,12.01,11.98,19.78,19.85,19.89,19.93,19.96,20,20.03,20.06,20.11,21.75,21.31,21.11,20.91,20.71,20.53,20.34,20.16,19.8,N/A,N/A +2012,11,6,7,30,101710,100530,99370,64.22,0,10.39,11.25,11.450000000000001,11.540000000000001,11.6,11.63,11.65,11.66,11.69,22.42,22.44,22.47,22.5,22.51,22.52,22.51,22.51,22.46,20.990000000000002,20.5,20.3,20.1,19.91,19.73,19.54,19.37,19.02,N/A,N/A +2012,11,6,8,30,101760,100570,99410,62.82,0,9.85,10.63,10.81,10.9,10.94,10.97,10.98,10.99,10.99,22.97,22.94,22.92,22.900000000000002,22.86,22.82,22.76,22.7,22.53,20.63,20.13,19.92,19.72,19.52,19.34,19.150000000000002,18.97,18.62,N/A,N/A +2012,11,6,9,30,101790,100600,99450,63.86,0,9.73,10.47,10.64,10.71,10.74,10.76,10.75,10.75,10.71,19.6,19.59,19.57,19.54,19.51,19.48,19.44,19.39,19.28,20.09,19.55,19.34,19.13,18.93,18.740000000000002,18.54,18.36,18,N/A,N/A +2012,11,6,10,30,101830,100630,99470,66.54,0,10,10.72,10.86,10.9,10.91,10.91,10.88,10.85,10.77,18.27,18.27,18.26,18.240000000000002,18.2,18.16,18.1,18.04,17.84,19.22,18.63,18.41,18.2,18,17.82,17.63,17.45,17.1,N/A,N/A +2012,11,6,11,30,101870,100670,99510,69.60000000000001,0,9.58,10.25,10.39,10.43,10.46,10.46,10.44,10.43,10.370000000000001,21.7,21.740000000000002,21.75,21.75,21.740000000000002,21.73,21.71,21.68,21.580000000000002,18.43,17.81,17.580000000000002,17.36,17.16,16.97,16.77,16.59,16.22,N/A,N/A +2012,11,6,12,30,101910,100710,99540,70.28,0,9.1,9.69,9.8,9.83,9.83,9.82,9.8,9.77,9.700000000000001,20.17,20.14,20.12,20.080000000000002,20.04,19.990000000000002,19.93,19.87,19.69,18.080000000000002,17.47,17.240000000000002,17.02,16.82,16.63,16.44,16.26,15.9,N/A,N/A +2012,11,6,13,30,101960,100760,99590,71.49,0,8.07,8.56,8.65,8.68,8.68,8.67,8.64,8.620000000000001,8.540000000000001,21.51,21.490000000000002,21.47,21.45,21.42,21.39,21.35,21.31,21.2,17.81,17.2,16.97,16.76,16.55,16.36,16.16,15.98,15.610000000000001,N/A,N/A +2012,11,6,14,30,101990,100780,99610,71.77,0,8.07,8.52,8.59,8.6,8.59,8.57,8.53,8.49,8.39,19.2,19.2,19.19,19.17,19.14,19.11,19.07,19.02,18.900000000000002,17.330000000000002,16.71,16.47,16.26,16.05,15.860000000000001,15.67,15.48,15.120000000000001,N/A,N/A +2012,11,6,15,30,102030,100820,99650,71.27,0,6.75,7.09,7.140000000000001,7.140000000000001,7.140000000000001,7.12,7.09,7.07,7,19.29,19.25,19.22,19.17,19.12,19.080000000000002,19.02,18.96,18.8,17.11,16.51,16.28,16.06,15.860000000000001,15.67,15.47,15.280000000000001,14.9,N/A,N/A +2012,11,6,16,30,102010,100810,99630,68.41,0,5.62,5.9,5.95,5.96,5.96,5.96,5.95,5.95,5.92,8.03,7.890000000000001,7.82,7.75,7.67,7.59,7.49,7.4,7.17,17.23,16.66,16.44,16.22,16.01,15.83,15.620000000000001,15.44,15.05,N/A,N/A +2012,11,6,17,30,101970,100770,99600,65.89,0,5.15,5.42,5.48,5.51,5.53,5.54,5.55,5.5600000000000005,5.58,356.67,356.18,355.87,355.58,355.31,355.07,354.82,354.59000000000003,354.13,17.68,17.14,16.91,16.7,16.490000000000002,16.3,16.1,15.91,15.52,N/A,N/A +2012,11,6,18,30,101990,100790,99620,57.22,0,5.09,5.3500000000000005,5.4,5.43,5.44,5.45,5.45,5.45,5.45,346.72,347.09000000000003,347.3,347.51,347.71,347.89,348.07,348.24,348.61,18.43,17.92,17.7,17.490000000000002,17.28,17.09,16.89,16.7,16.31,N/A,N/A +2012,11,6,19,30,101950,100750,99590,57.620000000000005,0,4.82,5.09,5.15,5.19,5.22,5.24,5.26,5.28,5.3100000000000005,334.98,334.98,335.02,335.07,335.11,335.15000000000003,335.19,335.23,335.32,19.080000000000002,18.59,18.38,18.17,17.96,17.77,17.56,17.37,16.98,N/A,N/A +2012,11,6,20,30,101920,100730,99570,56.26,0,6.44,6.83,6.9,6.93,6.95,6.96,6.96,6.96,6.95,332.37,332.71,332.93,333.13,333.33,333.51,333.71,333.89,334.28000000000003,19.52,19.02,18.8,18.59,18.39,18.2,17.990000000000002,17.8,17.41,N/A,N/A +2012,11,6,21,30,101900,100710,99550,53.9,0,6.87,7.32,7.42,7.46,7.49,7.51,7.5200000000000005,7.5200000000000005,7.5200000000000005,333.33,333.59000000000003,333.75,333.91,334.06,334.2,334.36,334.51,334.84000000000003,20.04,19.55,19.34,19.13,18.93,18.740000000000002,18.54,18.35,17.96,N/A,N/A +2012,11,6,22,30,101880,100690,99530,52.15,0,7.140000000000001,7.640000000000001,7.75,7.8,7.84,7.87,7.890000000000001,7.9,7.92,336.13,336.22,336.28000000000003,336.33,336.39,336.44,336.49,336.55,336.67,20.57,20.1,19.900000000000002,19.69,19.490000000000002,19.3,19.09,18.900000000000002,18.51,N/A,N/A +2012,11,6,23,30,101900,100710,99560,51.410000000000004,0,6.95,7.43,7.54,7.6000000000000005,7.63,7.66,7.68,7.69,7.71,341.53000000000003,341.56,341.57,341.58,341.58,341.58,341.59000000000003,341.59000000000003,341.6,20.92,20.47,20.27,20.06,19.86,19.67,19.46,19.28,18.88,N/A,N/A +2012,11,7,0,30,101910,100720,99570,53.08,0,6.390000000000001,6.8,6.88,6.92,6.95,6.97,6.98,6.98,6.99,346.90000000000003,346.67,346.54,346.41,346.28000000000003,346.17,346.05,345.93,345.71,20.97,20.53,20.330000000000002,20.13,19.92,19.73,19.53,19.34,18.95,N/A,N/A +2012,11,7,1,30,101920,100730,99570,51.95,0,5.8500000000000005,6.19,6.26,6.29,6.3,6.3100000000000005,6.3100000000000005,6.3,6.29,350.33,350.42,350.46,350.5,350.54,350.57,350.6,350.63,350.69,20.900000000000002,20.46,20.27,20.06,19.86,19.67,19.47,19.28,18.89,N/A,N/A +2012,11,7,2,30,101950,100760,99600,51.620000000000005,0,5.29,5.58,5.63,5.66,5.66,5.67,5.67,5.67,5.66,1.42,0.99,0.71,0.43,0.18,359.95,359.7,359.47,359.01,20.88,20.45,20.25,20.05,19.85,19.66,19.45,19.27,18.88,N/A,N/A +2012,11,7,3,30,101940,100750,99600,51.64,0,4.29,4.49,4.5200000000000005,4.53,4.53,4.53,4.5200000000000005,4.5200000000000005,4.5,2.97,2.27,1.82,1.37,0.9400000000000001,0.53,0.09,359.68,358.79,20.82,20.41,20.22,20.01,19.81,19.63,19.43,19.240000000000002,18.86,N/A,N/A +2012,11,7,4,30,101940,100750,99600,53.59,0,3.6,3.74,3.7600000000000002,3.7600000000000002,3.7600000000000002,3.75,3.74,3.74,3.72,5.14,4.21,3.62,3.04,2.48,1.96,1.41,0.9,359.79,20.82,20.42,20.22,20.02,19.830000000000002,19.64,19.44,19.25,18.87,N/A,N/A +2012,11,7,5,30,101940,100750,99590,55.99,0,3.67,3.8200000000000003,3.84,3.85,3.85,3.84,3.84,3.83,3.8200000000000003,357.96,357.01,356.40000000000003,355.79,355.2,354.65000000000003,354.07,353.52,352.32,20.85,20.44,20.25,20.04,19.85,19.66,19.46,19.28,18.89,N/A,N/A +2012,11,7,6,30,101950,100760,99600,57.910000000000004,0,3.13,3.27,3.29,3.29,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,349.16,348.51,348.12,347.73,347.38,347.05,346.7,346.38,345.63,20.89,20.51,20.32,20.12,19.93,19.740000000000002,19.54,19.36,18.97,N/A,N/A +2012,11,7,7,30,101970,100780,99630,58.86,0,2.97,3.11,3.13,3.14,3.15,3.15,3.16,3.16,3.17,339.5,339.03000000000003,338.76,338.48,338.22,337.97,337.69,337.44,336.85,20.96,20.580000000000002,20.39,20.19,19.990000000000002,19.81,19.61,19.42,19.04,N/A,N/A +2012,11,7,8,30,101990,100800,99650,58.35,0,2.5500000000000003,2.66,2.67,2.68,2.69,2.69,2.69,2.69,2.7,338.02,337.37,336.96,336.56,336.18,335.82,335.43,335.07,334.3,21.06,20.68,20.5,20.3,20.1,19.91,19.71,19.53,19.14,N/A,N/A +2012,11,7,9,30,101990,100800,99650,58.24,0,3.16,3.3000000000000003,3.3200000000000003,3.33,3.33,3.33,3.33,3.33,3.33,341.71,340.91,340.39,339.89,339.41,338.95,338.48,338.04,337.06,21.13,20.75,20.57,20.37,20.17,19.98,19.78,19.6,19.21,N/A,N/A +2012,11,7,10,30,102000,100810,99660,60.22,0,3.68,3.84,3.86,3.86,3.86,3.86,3.85,3.85,3.83,345.40000000000003,344.56,344.01,343.49,342.98,342.51,342.01,341.55,340.52,21.09,20.7,20.52,20.31,20.12,19.93,19.73,19.54,19.150000000000002,N/A,N/A +2012,11,7,11,30,102030,100840,99690,64.48,0,3.62,3.7600000000000002,3.77,3.77,3.7600000000000002,3.74,3.73,3.71,3.67,343.42,342.88,342.5,342.14,341.8,341.49,341.16,340.86,340.2,20.84,20.45,20.26,20.06,19.86,19.67,19.47,19.29,18.900000000000002,N/A,N/A +2012,11,7,12,30,102050,100860,99700,68.63,0,4.07,4.22,4.23,4.22,4.21,4.19,4.17,4.15,4.11,344.62,344.2,343.92,343.64,343.37,343.11,342.84000000000003,342.58,341.99,20.47,20.06,19.87,19.67,19.48,19.29,19.09,18.91,18.53,N/A,N/A +2012,11,7,13,30,102070,100880,99720,71.83,0,4.42,4.6000000000000005,4.6000000000000005,4.59,4.57,4.54,4.5200000000000005,4.49,4.43,357.13,356.64,356.31,355.99,355.67,355.36,355.02,354.7,353.95,20.080000000000002,19.650000000000002,19.46,19.26,19.06,18.88,18.68,18.5,18.13,N/A,N/A +2012,11,7,14,30,102090,100900,99740,66.47,0,4.1,4.26,4.28,4.2700000000000005,4.25,4.24,4.21,4.19,4.15,359.71,359.12,358.71,358.31,357.92,357.54,357.15000000000003,356.78000000000003,355.92,19.98,19.55,19.36,19.16,18.97,18.78,18.59,18.41,18.04,N/A,N/A +2012,11,7,15,30,102110,100910,99750,63.61,0,3.87,4.0200000000000005,4.03,4.0200000000000005,4.01,3.99,3.98,3.96,3.95,6.5,6.32,6.2,6.0600000000000005,5.91,5.74,5.5200000000000005,5.3,4.66,19.97,19.55,19.36,19.16,18.97,18.79,18.61,18.43,18.080000000000002,N/A,N/A +2012,11,7,16,30,102090,100890,99740,61.59,0,4.17,4.37,4.41,4.42,4.43,4.44,4.45,4.46,4.5,5.8,5.8100000000000005,5.8,5.8,5.78,5.78,5.76,5.74,5.67,20.27,19.86,19.67,19.48,19.29,19.11,18.91,18.740000000000002,18.38,N/A,N/A +2012,11,7,17,30,102060,100870,99710,57.620000000000005,0,3.73,3.92,3.96,3.98,3.99,4.01,4.0200000000000005,4.03,4.04,11.59,11.49,11.43,11.370000000000001,11.32,11.27,11.22,11.17,11.07,20.6,20.2,20.01,19.81,19.62,19.43,19.23,19.05,18.67,N/A,N/A +2012,11,7,18,30,102030,100840,99690,52.42,0,2.82,2.93,2.95,2.95,2.95,2.95,2.95,2.94,2.94,21.35,20.78,20.41,20.03,19.67,19.330000000000002,18.91,18.52,17.57,20.97,20.59,20.400000000000002,20.2,20.01,19.82,19.62,19.44,19.06,N/A,N/A +2012,11,7,19,30,102000,100810,99660,50.88,0,1.29,1.37,1.4000000000000001,1.43,1.46,1.48,1.51,1.54,1.6,11.31,10.28,9.68,9.01,8.370000000000001,7.74,7.01,6.32,4.65,21.21,20.85,20.67,20.47,20.27,20.09,19.89,19.7,19.32,N/A,N/A +2012,11,7,20,30,101960,100780,99620,52.4,0,0.54,0.68,0.77,0.86,0.9400000000000001,1.02,1.1,1.18,1.36,319.99,321.07,321.87,322.44,322.90000000000003,323.3,323.65000000000003,323.96,324.6,21.56,21.21,21.04,20.84,20.650000000000002,20.47,20.28,20.1,19.72,N/A,N/A +2012,11,7,21,30,101940,100760,99610,51.160000000000004,0,1.47,1.55,1.57,1.59,1.61,1.62,1.6400000000000001,1.6500000000000001,1.68,289.59000000000003,291.62,292.89,294.11,295.24,296.3,297.43,298.47,300.78000000000003,22.09,21.75,21.580000000000002,21.38,21.19,21,20.81,20.62,20.240000000000002,N/A,N/A +2012,11,7,22,30,101940,100750,99610,52.39,0,1.3900000000000001,1.5,1.54,1.59,1.6400000000000001,1.68,1.72,1.76,1.85,272.04,277.64,280.93,283.85,286.32,288.5,290.53000000000003,292.37,295.77,22.36,22.04,21.87,21.68,21.490000000000002,21.3,21.11,20.93,20.54,N/A,N/A +2012,11,7,23,30,101940,100760,99610,48.9,0,1.98,2.05,2.06,2.06,2.05,2.05,2.04,2.04,2.0300000000000002,302.2,303.53000000000003,304.38,305.22,306.01,306.77,307.58,308.32,309.97,22.7,22.39,22.22,22.03,21.84,21.650000000000002,21.45,21.27,20.89,N/A,N/A +2012,11,8,0,30,101960,100780,99630,49.29,0,1.12,1.16,1.17,1.17,1.18,1.18,1.19,1.19,1.21,279.58,281.34000000000003,282.5,283.7,284.87,285.99,287.26,288.45,291.2,22.76,22.45,22.28,22.09,21.900000000000002,21.71,21.51,21.330000000000002,20.95,N/A,N/A +2012,11,8,1,30,101980,100800,99650,51.300000000000004,0,1.59,1.69,1.72,1.75,1.78,1.8,1.84,1.87,1.96,335.67,336.54,337.13,337.75,338.39,339.04,339.82,340.56,342.57,22.79,22.48,22.31,22.12,21.93,21.75,21.55,21.37,20.990000000000002,N/A,N/A +2012,11,8,2,30,101970,100790,99650,47.86,0,2.92,3.09,3.09,3.08,3.06,3.04,3.0100000000000002,2.99,2.92,41.77,42.18,42.33,42.46,42.58,42.69,42.82,42.92,43.12,23.32,23.04,22.87,22.69,22.5,22.31,22.12,21.93,21.55,N/A,N/A +2012,11,8,3,30,101980,100800,99650,49.13,0,3.73,3.94,3.95,3.94,3.92,3.9,3.87,3.85,3.7800000000000002,71.31,71.83,72.08,72.34,72.59,72.83,73.08,73.31,73.81,23.14,22.85,22.68,22.490000000000002,22.3,22.12,21.93,21.75,21.37,N/A,N/A +2012,11,8,4,30,101980,100800,99650,53.39,0,3.83,4.01,4.03,4.01,3.99,3.97,3.95,3.92,3.85,84.04,84.78,85.2,85.63,86.06,86.47,86.93,87.35000000000001,88.4,22.77,22.45,22.28,22.09,21.900000000000002,21.72,21.53,21.35,20.97,N/A,N/A +2012,11,8,5,30,101990,100810,99660,57.76,0,4.0200000000000005,4.21,4.23,4.22,4.21,4.19,4.17,4.15,4.1,95.86,96.59,97.02,97.46000000000001,97.87,98.25,98.67,99.06,99.91,22.46,22.12,21.95,21.75,21.56,21.38,21.18,21,20.61,N/A,N/A +2012,11,8,6,30,102000,100820,99670,56.76,0,3.87,4.08,4.12,4.13,4.13,4.13,4.12,4.11,4.09,111,111.08,111.12,111.16,111.2,111.24000000000001,111.28,111.33,111.43,22.31,21.98,21.81,21.61,21.42,21.23,21.03,20.85,20.46,N/A,N/A +2012,11,8,7,30,102030,100840,99690,52.050000000000004,0,4.11,4.34,4.37,4.38,4.38,4.37,4.36,4.3500000000000005,4.32,104.18,104.47,104.66,104.84,105.02,105.18,105.36,105.53,105.89,22.400000000000002,22.080000000000002,21.91,21.72,21.52,21.34,21.14,20.95,20.56,N/A,N/A +2012,11,8,8,30,102040,100860,99710,54.89,0,4.43,4.68,4.71,4.72,4.71,4.71,4.69,4.68,4.65,105.08,105.5,105.78,106.05,106.31,106.55,106.81,107.04,107.55,22.22,21.89,21.72,21.52,21.330000000000002,21.14,20.94,20.76,20.37,N/A,N/A +2012,11,8,9,30,102050,100860,99710,55.44,0,4.82,5.11,5.15,5.17,5.17,5.17,5.16,5.15,5.12,106.2,106.49000000000001,106.66,106.83,106.99000000000001,107.14,107.31,107.47,107.83,22.12,21.78,21.6,21.400000000000002,21.21,21.02,20.82,20.63,20.240000000000002,N/A,N/A +2012,11,8,10,30,102060,100870,99720,56.07,0,5.17,5.48,5.54,5.55,5.5600000000000005,5.5600000000000005,5.55,5.54,5.51,107.07000000000001,107.47,107.71000000000001,107.95,108.18,108.39,108.62,108.83,109.3,22.01,21.66,21.48,21.28,21.09,20.900000000000002,20.7,20.52,20.13,N/A,N/A +2012,11,8,11,30,102090,100900,99750,60.68,0,5.69,6.05,6.12,6.140000000000001,6.15,6.16,6.15,6.140000000000001,6.12,114.26,114.63,114.84,115.05,115.25,115.44,115.64,115.83,116.22,21.75,21.38,21.2,21,20.81,20.62,20.42,20.23,19.84,N/A,N/A +2012,11,8,12,30,102100,100920,99760,62.04,0,5.73,6.09,6.16,6.19,6.2,6.2,6.2,6.19,6.17,114.65,115.02,115.26,115.49000000000001,115.71000000000001,115.91,116.12,116.33,116.76,21.69,21.32,21.13,20.93,20.740000000000002,20.55,20.35,20.16,19.77,N/A,N/A +2012,11,8,13,30,102130,100940,99790,61.84,0,5.99,6.390000000000001,6.47,6.51,6.5200000000000005,6.53,6.53,6.5200000000000005,6.51,121.59,122,122.24000000000001,122.46000000000001,122.68,122.87,123.08,123.28,123.7,21.73,21.36,21.17,20.97,20.78,20.59,20.39,20.2,19.81,N/A,N/A +2012,11,8,14,30,102170,100980,99830,64.1,0,6.390000000000001,6.83,6.91,6.95,6.97,6.98,6.98,6.98,6.96,122.36,122.82000000000001,123.10000000000001,123.37,123.63000000000001,123.87,124.13000000000001,124.36,124.85000000000001,21.64,21.25,21.07,20.87,20.67,20.48,20.28,20.09,19.7,N/A,N/A +2012,11,8,15,30,102180,100990,99840,66.14,0,6.53,7,7.1000000000000005,7.140000000000001,7.17,7.19,7.19,7.2,7.19,125.97,126.36,126.59,126.81,127.01,127.19,127.39,127.57000000000001,127.95,21.6,21.21,21.03,20.82,20.63,20.44,20.240000000000002,20.05,19.66,N/A,N/A +2012,11,8,16,30,102150,100970,99820,65.24,0,6.34,6.78,6.87,6.92,6.94,6.95,6.96,6.96,6.95,125.04,125.37,125.57000000000001,125.76,125.95,126.12,126.3,126.47,126.83,21.650000000000002,21.27,21.080000000000002,20.88,20.68,20.490000000000002,20.29,20.1,19.71,N/A,N/A +2012,11,8,17,30,102130,100950,99790,64.62,0,6.29,6.73,6.82,6.86,6.890000000000001,6.9,6.91,6.91,6.9,127.25,127.57000000000001,127.75,127.92,128.09,128.24,128.41,128.56,128.88,21.7,21.32,21.13,20.93,20.73,20.54,20.34,20.16,19.77,N/A,N/A +2012,11,8,18,30,102120,100930,99780,67.04,0,6.13,6.57,6.67,6.72,6.76,6.78,6.8,6.8100000000000005,6.82,133.5,133.66,133.77,133.87,133.98,134.08,134.17000000000002,134.26,134.47,21.75,21.37,21.18,20.98,20.78,20.59,20.39,20.21,19.81,N/A,N/A +2012,11,8,19,30,102100,100910,99760,66.86,0,6.34,6.8,6.9,6.95,6.98,6.99,7.01,7.01,7.01,130.98,131.52,131.83,132.13,132.41,132.67000000000002,132.93,133.17000000000002,133.69,21.86,21.490000000000002,21.31,21.1,20.91,20.72,20.52,20.34,19.95,N/A,N/A +2012,11,8,20,30,102050,100870,99720,66.43,0,6.28,6.74,6.8500000000000005,6.9,6.93,6.95,6.96,6.97,6.98,134.1,134.56,134.84,135.12,135.37,135.61,135.86,136.08,136.55,21.89,21.52,21.34,21.14,20.94,20.75,20.56,20.37,19.98,N/A,N/A +2012,11,8,21,30,102040,100850,99700,68.33,0,6.49,6.96,7.07,7.12,7.15,7.17,7.19,7.2,7.2,137.17000000000002,137.67000000000002,137.98,138.27,138.55,138.81,139.07,139.31,139.82,21.89,21.52,21.330000000000002,21.13,20.93,20.740000000000002,20.55,20.36,19.97,N/A,N/A +2012,11,8,22,30,102030,100840,99690,70.8,0,6.8,7.3100000000000005,7.42,7.48,7.51,7.53,7.54,7.55,7.55,136.42000000000002,136.89000000000001,137.18,137.46,137.71,137.95000000000002,138.20000000000002,138.42000000000002,138.89000000000001,21.85,21.48,21.29,21.09,20.900000000000002,20.71,20.51,20.32,19.93,N/A,N/A +2012,11,8,23,30,102010,100820,99680,72.05,0,7.25,7.82,7.96,8.03,8.08,8.11,8.120000000000001,8.14,8.15,139.45000000000002,139.85,140.09,140.31,140.51,140.70000000000002,140.89000000000001,141.07,141.44,21.88,21.51,21.32,21.12,20.92,20.73,20.53,20.35,19.95,N/A,N/A +2012,11,9,0,30,102010,100830,99680,72.34,0,7.58,8.21,8.36,8.44,8.5,8.53,8.56,8.58,8.6,140.01,140.43,140.68,140.93,141.16,141.37,141.59,141.79,142.20000000000002,21.95,21.580000000000002,21.39,21.19,21,20.8,20.6,20.42,20.03,N/A,N/A +2012,11,9,1,30,102010,100830,99680,73.03,0,8.11,8.8,8.97,9.06,9.11,9.15,9.18,9.200000000000001,9.21,142.69,143.03,143.24,143.45000000000002,143.64000000000001,143.82,144,144.17000000000002,144.53,21.98,21.6,21.41,21.21,21.01,20.82,20.62,20.44,20.05,N/A,N/A +2012,11,9,2,30,102000,100820,99670,74.21000000000001,0,8.3,9.03,9.200000000000001,9.3,9.36,9.41,9.44,9.46,9.48,145.53,145.76,145.9,146.03,146.16,146.28,146.4,146.51,146.75,22.01,21.63,21.45,21.25,21.05,20.86,20.66,20.47,20.080000000000002,N/A,N/A +2012,11,9,3,30,102000,100820,99670,74.3,0,8.42,9.17,9.36,9.450000000000001,9.52,9.57,9.6,9.620000000000001,9.64,148.22,148.48,148.64000000000001,148.81,148.96,149.11,149.25,149.38,149.67000000000002,22.13,21.76,21.57,21.37,21.18,20.990000000000002,20.78,20.6,20.21,N/A,N/A +2012,11,9,4,30,102000,100810,99670,74.27,0,8.58,9.35,9.540000000000001,9.65,9.71,9.76,9.790000000000001,9.81,9.83,149.91,150.16,150.31,150.47,150.62,150.75,150.89000000000001,151.02,151.3,22.23,21.86,21.68,21.48,21.28,21.1,20.89,20.71,20.32,N/A,N/A +2012,11,9,5,30,101990,100810,99660,75.10000000000001,0,8.68,9.48,9.68,9.790000000000001,9.870000000000001,9.92,9.96,9.99,10.03,152.46,152.84,153.06,153.27,153.47,153.66,153.85,154.03,154.39000000000001,22.28,21.92,21.740000000000002,21.54,21.34,21.150000000000002,20.95,20.77,20.38,N/A,N/A +2012,11,9,6,30,101990,100810,99670,75.23,0,8.48,9.26,9.450000000000001,9.57,9.65,9.700000000000001,9.74,9.78,9.82,156.3,156.64000000000001,156.85,157.05,157.24,157.42000000000002,157.59,157.76,158.09,22.45,22.1,21.92,21.72,21.53,21.330000000000002,21.14,20.95,20.56,N/A,N/A +2012,11,9,7,30,102010,100830,99680,74.97,0,8.43,9.23,9.43,9.55,9.63,9.69,9.73,9.77,9.81,159.16,159.5,159.69,159.87,160.03,160.17000000000002,160.32,160.46,160.72,22.64,22.3,22.12,21.92,21.73,21.54,21.34,21.150000000000002,20.76,N/A,N/A +2012,11,9,8,30,102010,100830,99680,72.9,0,8.56,9.370000000000001,9.58,9.69,9.77,9.82,9.870000000000001,9.9,9.94,160.39000000000001,160.8,161.02,161.22,161.42000000000002,161.6,161.78,161.95000000000002,162.31,22.77,22.44,22.26,22.06,21.87,21.68,21.48,21.3,20.91,N/A,N/A +2012,11,9,9,30,101990,100820,99670,74.35000000000001,0,8.2,8.99,9.200000000000001,9.33,9.41,9.48,9.53,9.57,9.63,163.61,163.82,163.94,164.05,164.15,164.24,164.33,164.4,164.56,22.87,22.55,22.37,22.18,21.98,21.79,21.6,21.41,21.02,N/A,N/A +2012,11,9,10,30,102010,100830,99690,73.43,0,8.34,9.16,9.370000000000001,9.5,9.59,9.66,9.71,9.76,9.83,163.76,163.86,163.97,164.1,164.21,164.33,164.44,164.55,164.79,22.95,22.63,22.46,22.26,22.07,21.88,21.68,21.5,21.11,N/A,N/A +2012,11,9,11,30,102010,100830,99690,71.76,0,8.72,9.6,9.81,9.93,10.02,10.07,10.11,10.14,10.16,160.62,160.94,161.09,161.23,161.36,161.48,161.59,161.70000000000002,161.92000000000002,23.04,22.73,22.56,22.37,22.17,21.98,21.79,21.6,21.21,N/A,N/A +2012,11,9,12,30,102010,100840,99690,73.42,0,8.42,9.26,9.47,9.59,9.67,9.73,9.78,9.81,9.85,158.05,158,158.01,158.03,158.05,158.07,158.1,158.12,158.19,23.04,22.73,22.55,22.36,22.16,21.97,21.78,21.59,21.2,N/A,N/A +2012,11,9,13,30,102020,100850,99700,73.67,0,8.39,9.22,9.43,9.55,9.64,9.700000000000001,9.75,9.790000000000001,9.85,157.78,157.83,157.91,158,158.1,158.19,158.29,158.38,158.58,23.06,22.76,22.59,22.39,22.19,22.01,21.81,21.63,21.240000000000002,N/A,N/A +2012,11,9,14,30,102050,100880,99730,73.83,0,8.53,9.39,9.61,9.73,9.81,9.870000000000001,9.91,9.93,9.96,152.55,152.81,152.97,153.12,153.25,153.38,153.5,153.62,153.85,23.07,22.77,22.6,22.400000000000002,22.21,22.02,21.830000000000002,21.64,21.25,N/A,N/A +2012,11,9,15,30,102060,100890,99740,72.84,0,8.02,8.84,9.05,9.17,9.26,9.33,9.370000000000001,9.41,9.46,153.52,153.49,153.53,153.59,153.65,153.71,153.77,153.84,153.97,23.17,22.87,22.7,22.51,22.32,22.13,21.93,21.75,21.36,N/A,N/A +2012,11,9,16,30,102060,100880,99740,73.68,0,7.95,8.74,8.94,9.05,9.120000000000001,9.17,9.200000000000001,9.23,9.25,150.01,150.24,150.41,150.57,150.72,150.85,150.99,151.12,151.37,23.17,22.88,22.71,22.52,22.330000000000002,22.14,21.94,21.76,21.37,N/A,N/A +2012,11,9,17,30,102040,100860,99720,74.97,0,7.390000000000001,8.11,8.290000000000001,8.4,8.47,8.53,8.57,8.61,8.66,149.95000000000002,150.11,150.18,150.24,150.29,150.34,150.38,150.42000000000002,150.5,23.16,22.86,22.69,22.5,22.31,22.12,21.92,21.740000000000002,21.35,N/A,N/A +2012,11,9,18,30,102020,100850,99700,74.37,0,6.97,7.68,7.86,7.98,8.08,8.14,8.2,8.25,8.32,151.49,152.03,152.32,152.59,152.82,153.04,153.24,153.43,153.77,23.28,23,22.830000000000002,22.64,22.45,22.26,22.07,21.88,21.5,N/A,N/A +2012,11,9,19,30,102020,100840,99700,75.4,0,6.76,7.42,7.58,7.68,7.76,7.8100000000000005,7.8500000000000005,7.88,7.92,153.63,153.68,153.72,153.76,153.79,153.82,153.85,153.88,153.93,23.31,23.02,22.85,22.650000000000002,22.46,22.28,22.080000000000002,21.900000000000002,21.51,N/A,N/A +2012,11,9,20,30,101980,100800,99660,76.52,0,6.67,7.32,7.48,7.58,7.65,7.71,7.75,7.78,7.82,144.85,145.17000000000002,145.44,145.72,145.97,146.22,146.46,146.69,147.16,23.27,22.97,22.8,22.61,22.42,22.23,22.04,21.85,21.47,N/A,N/A +2012,11,9,21,30,101970,100790,99650,76.18,0,7.01,7.640000000000001,7.79,7.87,7.92,7.95,7.97,7.99,8,140.69,141.16,141.49,141.83,142.13,142.42000000000002,142.72,142.99,143.56,23.22,22.92,22.76,22.56,22.37,22.19,21.990000000000002,21.81,21.42,N/A,N/A +2012,11,9,22,30,101930,100760,99620,77.63,0,6.76,7.3500000000000005,7.5,7.59,7.65,7.7,7.74,7.7700000000000005,7.8100000000000005,147.17000000000002,147.67000000000002,147.91,148.14000000000001,148.34,148.51,148.69,148.85,149.16,23.2,22.91,22.740000000000002,22.55,22.36,22.18,21.98,21.8,21.41,N/A,N/A +2012,11,9,23,30,101910,100740,99600,77.55,0,7.28,8.03,8.22,8.33,8.4,8.46,8.51,8.540000000000001,8.59,144.35,144.51,144.65,144.8,144.94,145.07,145.21,145.33,145.6,23.23,22.93,22.76,22.57,22.38,22.19,21.990000000000002,21.81,21.42,N/A,N/A +2012,11,10,0,30,101920,100740,99600,75.12,0,7.53,8.26,8.44,8.540000000000001,8.61,8.67,8.71,8.74,8.78,146.38,146.35,146.42000000000002,146.53,146.64000000000001,146.75,146.88,147,147.27,23.26,22.97,22.8,22.61,22.42,22.23,22.03,21.85,21.46,N/A,N/A +2012,11,10,1,30,101920,100740,99600,74.9,0,7.98,8.73,8.91,8.99,9.05,9.09,9.120000000000001,9.14,9.16,143.86,144.19,144.39000000000001,144.58,144.76,144.93,145.1,145.25,145.57,23.27,22.990000000000002,22.82,22.63,22.44,22.25,22.06,21.87,21.490000000000002,N/A,N/A +2012,11,10,2,30,101910,100740,99600,75.42,0,8.950000000000001,9.85,10.07,10.19,10.28,10.34,10.38,10.41,10.450000000000001,141.61,142.13,142.43,142.72,142.99,143.23,143.49,143.71,144.17000000000002,23.34,23.05,22.89,22.69,22.51,22.32,22.12,21.94,21.55,N/A,N/A +2012,11,10,3,30,101900,100730,99590,75.22,0,8.790000000000001,9.74,9.98,10.13,10.24,10.33,10.39,10.450000000000001,10.540000000000001,139.57,139.99,140.24,140.5,140.73,140.96,141.18,141.39000000000001,141.79,23.38,23.11,22.95,22.76,22.57,22.39,22.19,22.01,21.63,N/A,N/A +2012,11,10,4,30,101900,100720,99580,74.01,0,8.98,9.92,10.17,10.31,10.4,10.47,10.52,10.55,10.59,146.22,146.38,146.47,146.56,146.64000000000001,146.71,146.79,146.86,147.01,23.45,23.19,23.03,22.84,22.650000000000002,22.46,22.27,22.080000000000002,21.7,N/A,N/A +2012,11,10,5,30,101900,100720,99590,75.39,0,8.98,9.91,10.16,10.31,10.41,10.48,10.540000000000001,10.58,10.64,146.32,146.56,146.66,146.75,146.84,146.91,146.99,147.05,147.19,23.52,23.27,23.11,22.92,22.73,22.55,22.36,22.17,21.79,N/A,N/A +2012,11,10,6,30,101890,100720,99580,81.78,0,7.8,8.78,9.08,9.32,9.51,9.66,9.790000000000001,9.91,10.09,150.68,150.85,150.91,151,151.08,151.17000000000002,151.26,151.36,151.57,23.32,23.09,22.94,22.76,22.580000000000002,22.400000000000002,22.22,22.04,21.67,N/A,N/A +2012,11,10,7,30,101890,100710,99580,79.18,0,7.51,8.370000000000001,8.67,8.97,9.16,9.290000000000001,9.450000000000001,9.63,9.86,146.58,147.31,147.85,148.58,149.18,149.70000000000002,150.62,151.6,153.15,23.400000000000002,23.2,23.07,22.91,22.740000000000002,22.57,22.400000000000002,22.26,21.92,N/A,N/A +2012,11,10,8,30,101860,100690,99550,79.87,0,8.63,9.57,9.85,10.05,10.21,10.35,10.46,10.55,10.700000000000001,152.48,152.71,152.93,153.17000000000002,153.44,153.73,154.01,154.27,154.84,23.48,23.27,23.13,22.95,22.79,22.62,22.44,22.26,21.91,N/A,N/A +2012,11,10,9,30,101850,100680,99550,80.54,0,7.3100000000000005,8.57,9.03,9.3,9.56,9.8,10.01,10.19,10.49,158.67000000000002,160,160.66,160.9,161.1,161.27,161.41,161.53,161.72,23.53,23.31,23.17,22.990000000000002,22.84,22.68,22.51,22.36,22.01,N/A,N/A +2012,11,10,10,30,101840,100660,99530,81.15,0,7.58,8.59,8.92,9.18,9.39,9.58,9.78,9.97,10.32,149.57,149.8,150.07,150.56,150.91,151.20000000000002,151.62,152.04,152.91,23.45,23.26,23.13,22.95,22.78,22.61,22.44,22.29,21.95,N/A,N/A +2012,11,10,11,30,101830,100660,99520,82.67,0,7.42,8.33,8.6,8.8,8.94,9.040000000000001,9.13,9.200000000000001,9.34,154.11,154.29,154.49,154.74,154.97,155.19,155.37,155.52,156.02,23.41,23.2,23.06,22.88,22.7,22.53,22.34,22.16,21.8,N/A,N/A +2012,11,10,12,30,101850,100670,99540,83.4,0,6.5200000000000005,7.640000000000001,8.09,8.45,8.74,8.98,9.22,9.43,9.81,152.59,153.86,154.70000000000002,155.49,156.04,156.43,156.79,157.11,157.70000000000002,23.45,23.240000000000002,23.1,22.93,22.77,22.6,22.43,22.27,21.93,N/A,N/A +2012,11,10,13,30,101830,100660,99530,85.32000000000001,0,5.94,6.86,7.23,7.5600000000000005,7.86,8.13,8.39,8.620000000000001,8.99,148.8,151.70000000000002,153.54,155.38,157.01,158.49,159.97,161.33,164.22,23.36,23.16,23.05,22.92,22.79,22.67,22.54,22.43,22.19,N/A,N/A +2012,11,10,14,30,101870,100700,99570,82.3,0,7.11,8,8.3,8.52,8.67,8.76,8.81,8.84,8.88,158.22,159.06,159.5,159.84,160.21,160.6,161.07,161.53,162.58,23.56,23.39,23.27,23.12,22.97,22.81,22.64,22.48,22.13,N/A,N/A +2012,11,10,15,30,101870,100700,99560,83.09,0,7.5200000000000005,8.23,8.44,8.620000000000001,8.78,8.91,9.01,9.09,8.91,158.53,159.02,159.32,159.69,160.05,160.4,160.70000000000002,160.95000000000002,160.76,23.3,23.09,22.97,22.830000000000002,22.69,22.55,22.42,22.3,21.98,N/A,N/A +2012,11,10,16,30,101860,100690,99550,84.48,0,6.61,7.46,7.72,7.82,7.94,8.08,8.2,8.3,8.51,158.68,159.27,159.59,159.76,159.92000000000002,160.08,160.3,160.52,161.70000000000002,23.48,23.28,23.14,22.95,22.78,22.63,22.46,22.3,21.990000000000002,N/A,N/A +2012,11,10,17,30,101840,100660,99530,86.9,0,6.07,6.71,6.88,6.96,7.07,7.21,7.37,7.53,7.96,149.69,151.17000000000002,152.03,152.67000000000002,154.12,156.24,158.38,160.41,163.56,23.42,23.22,23.09,22.91,22.77,22.66,22.55,22.44,22.22,N/A,N/A +2012,11,10,18,30,101820,100650,99520,77.75,0,7.11,8.01,8.3,8.53,8.72,8.88,9.02,9.14,9.36,165.56,165.79,165.97,166.17000000000002,166.36,166.55,166.74,166.91,167.24,24.01,23.85,23.73,23.56,23.400000000000002,23.240000000000002,23.06,22.89,22.54,N/A,N/A +2012,11,10,19,30,101800,100630,99490,84.94,0,8.39,9.11,9.34,9.61,9.84,10.040000000000001,10.200000000000001,10.33,10.42,150.11,150.52,151.05,151.94,153.05,154.34,155.94,157.53,160.31,23.09,22.87,22.75,22.650000000000002,22.55,22.46,22.38,22.31,22.04,N/A,N/A +2012,11,10,20,30,101760,100600,99460,86.96000000000001,0,8.040000000000001,8.94,9.290000000000001,9.66,9.94,10.14,10.38,10.620000000000001,11.15,157.02,157.19,157.42000000000002,157.78,158.14000000000001,158.5,159.02,159.55,160.95000000000002,23.34,23.11,22.98,22.84,22.68,22.5,22.35,22.21,21.97,N/A,N/A +2012,11,10,21,30,101740,100570,99430,90,0,7.61,8.35,8.56,8.75,9.13,9.68,10.06,10.36,10.94,141.43,141.85,142.22,142.72,143.63,144.93,145.83,146.53,148.29,23.080000000000002,22.81,22.66,22.490000000000002,22.34,22.22,22.07,21.93,21.7,N/A,N/A +2012,11,10,22,30,101700,100530,99400,83.73,0,9.09,10.28,10.67,10.99,11.26,11.48,11.69,11.88,12.22,150.18,150.18,150.25,150.34,150.42000000000002,150.52,150.64000000000001,150.76,151.07,23.68,23.5,23.37,23.2,23.04,22.88,22.71,22.55,22.2,N/A,N/A +2012,11,10,23,30,101670,100500,99370,83.69,0,9.89,11.15,11.57,11.88,12.13,12.34,12.530000000000001,12.69,12.98,151.48,151.89000000000001,152.15,152.43,152.70000000000002,152.98,153.26,153.53,154.1,23.72,23.55,23.42,23.26,23.1,22.93,22.76,22.59,22.25,N/A,N/A +2012,11,11,0,30,101660,100490,99360,81.99,0,9.09,10.3,10.71,11.040000000000001,11.32,11.56,11.790000000000001,11.99,12.370000000000001,151.04,151.36,151.57,151.81,152.03,152.25,152.47,152.68,153.08,23.85,23.7,23.59,23.43,23.28,23.13,22.97,22.81,22.48,N/A,N/A +2012,11,11,1,30,101630,100470,99330,80.9,0,10.26,11.63,12.08,12.43,12.72,12.96,13.19,13.39,13.76,152.73,152.97,153.13,153.3,153.46,153.62,153.78,153.93,154.25,23.86,23.71,23.59,23.43,23.27,23.11,22.94,22.78,22.43,N/A,N/A +2012,11,11,2,30,101640,100470,99340,80.65,0,10.72,12.200000000000001,12.700000000000001,13.09,13.41,13.68,13.93,14.14,14.51,152.76,153.07,153.26,153.47,153.66,153.85,154.04,154.23,154.6,23.92,23.78,23.66,23.51,23.36,23.2,23.03,22.88,22.54,N/A,N/A +2012,11,11,3,30,101600,100430,99300,80.76,0,10.94,12.41,12.9,13.290000000000001,13.61,13.89,14.14,14.370000000000001,14.8,153.71,154.01,154.21,154.42000000000002,154.63,154.82,155.02,155.20000000000002,155.56,23.95,23.81,23.7,23.54,23.39,23.23,23.06,22.91,22.57,N/A,N/A +2012,11,11,4,30,101580,100410,99280,80.85000000000001,0,11.540000000000001,13.120000000000001,13.65,14.07,14.41,14.71,14.97,15.21,15.63,156.74,156.96,157.09,157.24,157.39000000000001,157.54,157.70000000000002,157.85,158.16,23.98,23.84,23.73,23.57,23.42,23.27,23.1,22.94,22.6,N/A,N/A +2012,11,11,5,30,101560,100390,99260,79.92,0,12.02,13.66,14.17,14.56,14.88,15.15,15.38,15.59,15.94,162.01,162.39000000000001,162.6,162.82,163.01,163.20000000000002,163.37,163.53,163.82,24.080000000000002,23.95,23.84,23.68,23.53,23.37,23.19,23.03,22.67,N/A,N/A +2012,11,11,6,30,101550,100380,99250,80.09,0,11.88,13.43,13.950000000000001,14.33,14.65,14.91,15.14,15.35,15.71,163.20000000000002,163.25,163.3,163.36,163.41,163.47,163.53,163.59,163.73,24.09,23.94,23.81,23.650000000000002,23.490000000000002,23.32,23.150000000000002,22.98,22.63,N/A,N/A +2012,11,11,7,30,101530,100360,99230,81.2,0,11.58,13.15,13.67,14.08,14.41,14.69,14.950000000000001,15.17,15.59,164.6,164.71,164.79,164.88,164.96,165.05,165.12,165.20000000000002,165.35,24.11,23.97,23.85,23.69,23.53,23.37,23.2,23.04,22.69,N/A,N/A +2012,11,11,8,30,101480,100320,99190,80.75,0,11.82,13.42,13.93,14.34,14.66,14.93,15.18,15.4,15.780000000000001,163.12,163.36,163.5,163.66,163.8,163.94,164.08,164.21,164.48,24.14,24,23.88,23.73,23.57,23.41,23.240000000000002,23.07,22.73,N/A,N/A +2012,11,11,9,30,101470,100310,99180,82.67,0,11.06,12.61,13.13,13.55,13.89,14.19,14.450000000000001,14.69,15.11,166.86,167.1,167.23,167.35,167.45000000000002,167.54,167.6,167.66,167.73,24.16,24.02,23.900000000000002,23.75,23.6,23.44,23.27,23.11,22.77,N/A,N/A +2012,11,11,10,30,101460,100290,99170,83.11,0,11.06,12.69,13.25,13.72,14.120000000000001,14.47,14.81,15.120000000000001,15.71,166.96,167.34,167.52,167.71,167.89000000000001,168.06,168.23,168.38,168.66,24.22,24.1,23.990000000000002,23.85,23.71,23.56,23.41,23.26,22.95,N/A,N/A +2012,11,11,11,30,101450,100290,99160,85.46000000000001,0,10.35,11.83,12.36,12.780000000000001,13.14,13.450000000000001,13.72,13.97,14.41,166.01,165.81,165.81,165.81,165.83,165.86,165.9,165.95000000000002,166.09,24.19,24.060000000000002,23.95,23.8,23.650000000000002,23.5,23.34,23.19,22.86,N/A,N/A +2012,11,11,12,30,101470,100300,99170,91.9,17.6,9.620000000000001,10.77,11.24,11.73,12.16,12.540000000000001,12.96,13.38,14.26,158.74,159.32,159.78,160.48,161.19,161.95000000000002,162.98,164.05,166.34,23.34,23.1,22.96,22.8,22.66,22.52,22.42,22.34,22.19,N/A,N/A +2012,11,11,13,30,101440,100280,99150,85.7,0,10.32,11.76,12.24,12.620000000000001,12.94,13.22,13.47,13.700000000000001,14.11,159.36,159.59,159.71,159.82,159.92000000000002,159.99,160.04,160.09,160.13,24.17,24.03,23.91,23.76,23.61,23.45,23.28,23.13,22.79,N/A,N/A +2012,11,11,14,30,101450,100290,99160,90.58,0,10,11.42,11.89,12.290000000000001,12.63,12.93,13.23,13.5,14.01,149.26,149.78,150.1,150.43,150.75,151.04,151.34,151.61,152.13,23.78,23.57,23.44,23.28,23.12,22.97,22.8,22.650000000000002,22.330000000000002,N/A,N/A +2012,11,11,15,30,101480,100310,99180,92.2,0,9.68,11.15,11.72,12.21,12.64,13.030000000000001,13.4,13.74,14.35,158.75,159.43,159.95000000000002,160.57,161.17000000000002,161.81,162.5,163.20000000000002,164.71,23.8,23.63,23.51,23.36,23.21,23.07,22.93,22.79,22.51,N/A,N/A +2012,11,11,16,30,101470,100300,99180,89.14,0,9,10.31,10.74,11.1,11.38,11.61,11.790000000000001,11.93,12.08,171.03,170.94,170.99,171.11,171.3,171.57,171.97,172.39000000000001,173.69,24.150000000000002,23.990000000000002,23.87,23.72,23.56,23.41,23.25,23.09,22.78,N/A,N/A +2012,11,11,17,30,101450,100290,99170,94.68,0,6.38,7.390000000000001,7.72,7.96,8.120000000000001,8.22,8.31,8.39,8.700000000000001,177.58,178.26,178.8,179.51,180.41,181.47,182.89000000000001,184.35,187.81,23.990000000000002,23.84,23.740000000000002,23.62,23.5,23.38,23.25,23.13,22.87,N/A,N/A +2012,11,11,18,30,101470,100310,99180,94.61,0,4.6000000000000005,5.5600000000000005,5.99,6.46,6.890000000000001,7.33,7.74,8.120000000000001,8.78,186.92000000000002,188.47,189.55,190.75,191.72,192.55,193.20000000000002,193.74,194.56,24.21,24.1,24.03,23.92,23.82,23.71,23.59,23.47,23.2,N/A,N/A +2012,11,11,19,30,101460,100300,99170,93.11,0,4.78,5.8,6.23,6.67,7.0600000000000005,7.44,7.8,8.15,8.86,190.98,191.87,192.52,193.24,193.84,194.35,194.73000000000002,195.04,195.41,24.44,24.330000000000002,24.25,24.14,24.03,23.91,23.78,23.650000000000002,23.39,N/A,N/A +2012,11,11,20,30,101460,100300,99170,88.37,0,7.95,9.17,9.65,10.09,10.48,10.86,11.25,11.63,12.450000000000001,194.43,194.46,194.47,194.45000000000002,194.41,194.35,194.29,194.22,194.13,24.25,24.14,24.060000000000002,23.93,23.81,23.68,23.55,23.42,23.18,N/A,N/A +2012,11,11,21,30,101480,100320,99200,84.31,0.4,12.200000000000001,14.030000000000001,14.69,15.23,15.67,16.03,16.330000000000002,16.57,16.92,181.57,181.99,182.26,182.55,182.82,183.09,183.36,183.61,184.18,24.32,24.21,24.1,23.96,23.82,23.68,23.53,23.400000000000002,23.13,N/A,N/A +2012,11,11,22,30,101460,100300,99170,88.42,0,7.69,8.97,9.5,10.03,10.52,11.01,11.49,11.93,12.64,182.22,182.97,183.52,184.29,185.05,185.87,186.72,187.55,189.33,24.34,24.3,24.25,24.17,24.09,24.02,23.94,23.87,23.68,N/A,N/A +2012,11,11,23,30,101470,100310,99190,90.26,0,6.3100000000000005,7.66,8.23,8.78,9.26,9.700000000000001,10.13,10.52,11.23,190.77,190.42000000000002,190.25,190.16,190.18,190.29,190.52,190.8,191.6,24.45,24.43,24.39,24.3,24.21,24.1,23.990000000000002,23.89,23.650000000000002,N/A,N/A +2012,11,12,0,30,101530,100370,99250,81.53,10.3,6.61,7.94,8.620000000000001,9.33,9.93,10.47,10.89,11.23,11.65,194.04,196.59,198.16,200.04,201.54,202.76,203.6,204.24,204.93,24.29,24.48,24.580000000000002,24.650000000000002,24.67,24.650000000000002,24.57,24.46,24.19,N/A,N/A +2012,11,12,1,30,101590,100430,99300,87.61,0,6.62,7.49,7.8100000000000005,8.08,8.31,8.52,8.700000000000001,8.84,8.94,182.87,183.04,183.22,183.5,183.88,184.37,185.19,186.1,189.95000000000002,23.94,23.79,23.69,23.56,23.45,23.35,23.26,23.18,23.05,N/A,N/A +2012,11,12,2,30,101640,100480,99350,91.38,0,4.8100000000000005,5.69,6.0200000000000005,6.25,6.38,6.43,6.54,6.68,7.05,190.62,192.49,194.33,197.51,201.52,206.54,210.44,213.68,216.39000000000001,23.93,23.87,23.830000000000002,23.8,23.76,23.71,23.61,23.5,23.240000000000002,N/A,N/A +2012,11,12,3,30,101680,100520,99390,94.2,0,3.31,4.2,4.57,5.01,5.55,6.24,6.61,6.82,7.28,199.59,204.37,207.54,210.64000000000001,212.26,212.53,212.5,212.33,212.56,23.96,23.98,23.96,23.92,23.87,23.830000000000002,23.71,23.57,23.31,N/A,N/A +2012,11,12,4,30,101730,100570,99440,95.61,0,2.36,3.64,4.28,4.91,5.37,5.66,5.84,5.97,6.09,221.44,220.76,220.29,220.22,220.62,221.49,222.16,222.72,223.27,23.88,23.990000000000002,24.03,24.03,23.990000000000002,23.900000000000002,23.77,23.63,23.29,N/A,N/A +2012,11,12,5,30,101780,100610,99480,95.14,0,2.46,3.92,4.55,4.79,4.9,4.9,4.92,4.94,5.0600000000000005,248.75,242.46,238.97,239.42000000000002,239.65,239.69,239.73000000000002,239.78,239.76,23.94,24.240000000000002,24.32,24.2,24.05,23.86,23.66,23.48,23.12,N/A,N/A +2012,11,12,6,30,101840,100670,99540,95.52,0,2.22,3.2,3.5300000000000002,3.79,3.99,4.13,4.28,4.42,4.7,269.72,264.77,261.59000000000003,259.92,258.91,258.47,258.01,257.55,256.63,23.830000000000002,24.04,24.07,23.96,23.84,23.71,23.57,23.43,23.13,N/A,N/A +2012,11,12,7,30,102000,100800,99650,92.08,0,13.83,14.94,15.14,15.16,15.120000000000001,15.040000000000001,14.93,14.82,14.36,343.21,343.03000000000003,342.95,342.84000000000003,342.71,342.56,342.32,342.06,340.81,19.25,18.66,18.44,18.25,18.07,17.92,17.78,17.66,17.63,N/A,N/A +2012,11,12,8,30,102030,100830,99670,69.97,0,13.41,14.69,15,15.16,15.27,15.34,15.39,15.44,15.57,351.56,351.62,351.67,351.74,351.82,351.89,351.99,352.08,352.31,19.66,19.11,18.89,18.68,18.490000000000002,18.31,18.13,17.96,17.63,N/A,N/A +2012,11,12,9,30,102080,100880,99720,68.82000000000001,0,13.67,14.97,15.27,15.43,15.52,15.58,15.620000000000001,15.65,15.700000000000001,0.65,0.8300000000000001,0.91,0.97,1.03,1.08,1.1300000000000001,1.16,1.23,19.05,18.45,18.22,18.01,17.81,17.62,17.43,17.26,16.91,N/A,N/A +2012,11,12,10,30,102140,100940,99770,70.33,0,14.08,15.41,15.75,15.93,16.04,16.11,16.15,16.18,16.21,10.59,10.620000000000001,10.620000000000001,10.61,10.59,10.56,10.53,10.5,10.42,18.64,18,17.76,17.53,17.32,17.12,16.92,16.740000000000002,16.36,N/A,N/A +2012,11,12,11,30,102240,101030,99860,74.08,0,13.38,14.66,14.96,15.120000000000001,15.22,15.290000000000001,15.33,15.36,15.39,19.580000000000002,19.47,19.41,19.34,19.29,19.23,19.17,19.12,18.98,17.85,17.16,16.91,16.68,16.46,16.26,16.05,15.860000000000001,15.47,N/A,N/A +2012,11,12,12,30,102360,101150,99970,73.24,0,13.82,15.1,15.41,15.57,15.67,15.74,15.780000000000001,15.81,15.84,9.76,9.77,9.88,9.96,10.040000000000001,10.1,10.16,10.22,10.32,17.16,16.43,16.16,15.93,15.71,15.51,15.3,15.11,14.72,N/A,N/A +2012,11,12,13,30,102470,101260,100080,73.84,0,12.71,13.86,14.15,14.31,14.42,14.49,14.540000000000001,14.58,14.64,15.39,15.51,15.57,15.65,15.71,15.77,15.84,15.9,16.04,16.59,15.84,15.58,15.34,15.120000000000001,14.92,14.71,14.52,14.13,N/A,N/A +2012,11,12,14,30,102530,101320,100130,72.52,0,12.290000000000001,13.35,13.61,13.75,13.83,13.9,13.94,13.97,14.01,18.54,18.66,18.7,18.740000000000002,18.78,18.81,18.86,18.900000000000002,18.98,16.18,15.43,15.16,14.92,14.700000000000001,14.5,14.280000000000001,14.09,13.700000000000001,N/A,N/A +2012,11,12,15,30,102570,101350,100170,70.13,0,12.120000000000001,13.14,13.39,13.52,13.6,13.66,13.69,13.72,13.76,20.09,20.21,20.29,20.37,20.44,20.51,20.57,20.63,20.76,16.04,15.290000000000001,15.02,14.780000000000001,14.56,14.36,14.15,13.96,13.57,N/A,N/A +2012,11,12,16,30,102630,101410,100230,63.46,0,11.26,12.200000000000001,12.44,12.58,12.67,12.73,12.780000000000001,12.82,12.88,18.45,18.59,18.68,18.78,18.86,18.95,19.03,19.11,19.29,16.44,15.74,15.48,15.25,15.030000000000001,14.83,14.620000000000001,14.43,14.040000000000001,N/A,N/A +2012,11,12,17,30,102660,101440,100260,55.08,0,11.040000000000001,11.96,12.19,12.32,12.4,12.46,12.51,12.540000000000001,12.59,18.29,18.52,18.68,18.830000000000002,18.96,19.080000000000002,19.2,19.330000000000002,19.56,16.89,16.22,15.97,15.74,15.52,15.32,15.1,14.91,14.51,N/A,N/A +2012,11,12,18,30,102680,101470,100290,49.370000000000005,0,10.67,11.56,11.78,11.91,11.99,12.06,12.1,12.14,12.19,18.47,18.66,18.78,18.89,18.98,19.080000000000002,19.17,19.25,19.42,17.400000000000002,16.76,16.52,16.3,16.080000000000002,15.870000000000001,15.66,15.47,15.07,N/A,N/A +2012,11,12,19,30,102700,101490,100310,47.75,0,10.66,11.55,11.78,11.9,11.98,12.05,12.09,12.13,12.18,15.64,15.85,15.99,16.11,16.22,16.32,16.42,16.51,16.7,17.78,17.16,16.92,16.69,16.48,16.28,16.07,15.870000000000001,15.47,N/A,N/A +2012,11,12,20,30,102710,101500,100320,47,0,10.44,11.32,11.540000000000001,11.66,11.75,11.81,11.85,11.89,11.93,16.53,16.75,16.87,16.990000000000002,17.11,17.21,17.32,17.42,17.62,18.01,17.41,17.17,16.95,16.73,16.53,16.32,16.12,15.72,N/A,N/A +2012,11,12,21,30,102690,101480,100300,47.74,0,10.790000000000001,11.69,11.91,12.02,12.1,12.15,12.18,12.21,12.24,14.71,14.93,15.06,15.19,15.3,15.41,15.51,15.610000000000001,15.8,17.95,17.330000000000002,17.09,16.87,16.65,16.45,16.240000000000002,16.04,15.64,N/A,N/A +2012,11,12,22,30,102710,101500,100320,49.52,0,10.69,11.55,11.75,11.85,11.91,11.950000000000001,11.97,11.98,11.98,16.92,17.17,17.32,17.46,17.59,17.71,17.84,17.96,18.19,17.66,17.03,16.8,16.57,16.35,16.15,15.94,15.74,15.34,N/A,N/A +2012,11,12,23,30,102750,101530,100350,51.45,0,11.22,12.13,12.34,12.450000000000001,12.52,12.56,12.58,12.6,12.6,16.25,16.51,16.67,16.830000000000002,16.97,17.11,17.240000000000002,17.37,17.62,17.21,16.55,16.3,16.07,15.85,15.65,15.43,15.24,14.84,N/A,N/A +2012,11,13,0,30,102810,101590,100410,55.45,0,11.69,12.65,12.870000000000001,12.99,13.06,13.11,13.13,13.15,13.15,19.29,19.48,19.59,19.7,19.79,19.88,19.97,20.05,20.22,16.39,15.67,15.41,15.18,14.950000000000001,14.75,14.530000000000001,14.33,13.93,N/A,N/A +2012,11,13,1,30,102860,101630,100440,58.44,0,12.43,13.49,13.73,13.86,13.94,14,14.030000000000001,14.05,14.06,27.09,27.330000000000002,27.46,27.580000000000002,27.7,27.810000000000002,27.93,28.04,28.27,15.620000000000001,14.84,14.57,14.33,14.1,13.89,13.67,13.47,13.07,N/A,N/A +2012,11,13,2,30,102890,101660,100470,59.74,0,12.8,13.89,14.15,14.290000000000001,14.38,14.44,14.47,14.49,14.51,32.89,33.17,33.34,33.5,33.65,33.78,33.92,34.05,34.31,15.200000000000001,14.39,14.11,13.870000000000001,13.64,13.43,13.21,13.01,12.6,N/A,N/A +2012,11,13,3,30,102900,101670,100470,60.18,0,12.72,13.81,14.08,14.21,14.290000000000001,14.36,14.39,14.41,14.43,37.45,37.74,37.9,38.050000000000004,38.18,38.31,38.44,38.56,38.800000000000004,15.030000000000001,14.22,13.94,13.700000000000001,13.46,13.26,13.040000000000001,12.83,12.43,N/A,N/A +2012,11,13,4,30,102910,101680,100480,64.34,0,12.4,13.43,13.67,13.790000000000001,13.86,13.91,13.93,13.950000000000001,13.950000000000001,40.09,40.45,40.67,40.88,41.07,41.24,41.43,41.6,41.93,14.83,14.02,13.74,13.49,13.26,13.05,12.83,12.63,12.23,N/A,N/A +2012,11,13,5,30,102900,101670,100470,67.02,0,11.89,12.870000000000001,13.1,13.23,13.32,13.370000000000001,13.41,13.43,13.46,42.61,43.04,43.29,43.51,43.72,43.910000000000004,44.1,44.28,44.63,14.790000000000001,13.98,13.71,13.46,13.23,13.02,12.8,12.6,12.200000000000001,N/A,N/A +2012,11,13,6,30,102920,101690,100490,60.730000000000004,0,12.82,13.93,14.21,14.36,14.450000000000001,14.52,14.56,14.59,14.63,47.71,47.81,47.89,47.95,48.01,48.06,48.11,48.160000000000004,48.26,14.84,14,13.71,13.46,13.23,13.02,12.8,12.59,12.19,N/A,N/A +2012,11,13,7,30,102950,101720,100520,64.41,0,12.42,13.48,13.74,13.89,13.99,14.06,14.11,14.15,14.19,44.410000000000004,44.81,45.050000000000004,45.27,45.47,45.660000000000004,45.84,46.02,46.36,14.65,13.82,13.530000000000001,13.280000000000001,13.040000000000001,12.83,12.61,12.41,12.01,N/A,N/A +2012,11,13,8,30,102940,101710,100520,64.09,0,12.68,13.77,14.040000000000001,14.19,14.280000000000001,14.35,14.39,14.43,14.47,44.44,44.81,45.02,45.22,45.410000000000004,45.58,45.75,45.910000000000004,46.24,14.51,13.66,13.370000000000001,13.120000000000001,12.89,12.68,12.46,12.25,11.85,N/A,N/A +2012,11,13,9,30,102970,101740,100540,62.190000000000005,0,13.16,14.33,14.63,14.8,14.91,15,15.05,15.09,15.15,46.76,47.11,47.31,47.51,47.68,47.84,48,48.15,48.45,14.5,13.63,13.34,13.08,12.84,12.63,12.41,12.21,11.8,N/A,N/A +2012,11,13,10,30,102990,101750,100550,56.9,0,14.3,15.620000000000001,15.950000000000001,16.13,16.240000000000002,16.32,16.37,16.4,16.44,52.33,52.42,52.480000000000004,52.53,52.58,52.620000000000005,52.660000000000004,52.7,52.79,14.57,13.67,13.370000000000001,13.11,12.870000000000001,12.66,12.43,12.23,11.82,N/A,N/A +2012,11,13,11,30,102990,101750,100550,56.7,0,14.22,15.52,15.84,16,16.11,16.18,16.22,16.25,16.28,52.52,52.69,52.800000000000004,52.89,52.980000000000004,53.06,53.15,53.230000000000004,53.4,14.39,13.49,13.19,12.93,12.69,12.47,12.25,12.05,11.64,N/A,N/A +2012,11,13,12,30,103000,101770,100570,57.99,0,14.07,15.33,15.63,15.790000000000001,15.89,15.96,15.99,16.02,16.04,53.19,53.410000000000004,53.54,53.660000000000004,53.78,53.88,53.99,54.09,54.300000000000004,14.26,13.36,13.06,12.8,12.56,12.35,12.120000000000001,11.92,11.51,N/A,N/A +2012,11,13,13,30,103000,101770,100570,59.74,0,13.83,15.05,15.34,15.5,15.59,15.65,15.69,15.71,15.73,52.88,53.15,53.31,53.46,53.59,53.71,53.84,53.96,54.2,14.14,13.23,12.94,12.68,12.44,12.23,12,11.8,11.39,N/A,N/A +2012,11,13,14,30,103000,101760,100570,61.03,0,13.47,14.65,14.92,15.07,15.16,15.22,15.25,15.27,15.290000000000001,52.46,52.75,52.93,53.09,53.25,53.38,53.53,53.660000000000004,53.93,14.13,13.23,12.94,12.68,12.44,12.23,12.01,11.8,11.4,N/A,N/A +2012,11,13,15,30,102990,101750,100550,61.25,0,13.19,14.32,14.58,14.72,14.81,14.870000000000001,14.89,14.91,14.92,52.75,53.02,53.18,53.33,53.480000000000004,53.6,53.74,53.870000000000005,54.13,14.1,13.22,12.93,12.68,12.43,12.22,12,11.8,11.39,N/A,N/A +2012,11,13,16,30,102950,101720,100520,58.68,0,12.08,13.05,13.27,13.38,13.450000000000001,13.49,13.51,13.52,13.52,50.06,50.29,50.44,50.57,50.69,50.800000000000004,50.92,51.03,51.25,14.120000000000001,13.27,12.98,12.73,12.5,12.290000000000001,12.07,11.870000000000001,11.46,N/A,N/A +2012,11,13,17,30,102910,101670,100480,56.76,0,10.870000000000001,11.68,11.870000000000001,11.950000000000001,12.01,12.05,12.06,12.07,12.07,49.74,49.9,49.99,50.08,50.17,50.24,50.32,50.39,50.54,14.27,13.48,13.200000000000001,12.950000000000001,12.72,12.52,12.3,12.1,11.69,N/A,N/A +2012,11,13,18,30,102860,101630,100430,54.36,0,10.08,10.82,10.98,11.06,11.11,11.14,11.16,11.17,11.17,46.49,46.53,46.56,46.58,46.6,46.62,46.63,46.64,46.68,14.67,13.91,13.64,13.4,13.17,12.97,12.75,12.55,12.14,N/A,N/A +2012,11,13,19,30,102830,101600,100410,56.92,0,9.11,9.74,9.88,9.96,10.01,10.040000000000001,10.06,10.07,10.08,43.65,43.79,43.9,44,44.08,44.160000000000004,44.230000000000004,44.300000000000004,44.45,15.06,14.35,14.09,13.85,13.620000000000001,13.42,13.200000000000001,13,12.6,N/A,N/A +2012,11,13,20,30,102760,101540,100340,50.09,0,8.07,8.58,8.700000000000001,8.76,8.8,8.82,8.84,8.85,8.86,38.19,38.26,38.33,38.38,38.44,38.480000000000004,38.53,38.57,38.660000000000004,15.540000000000001,14.870000000000001,14.620000000000001,14.39,14.17,13.97,13.75,13.55,13.15,N/A,N/A +2012,11,13,21,30,102720,101500,100310,46.6,0,7.32,7.7700000000000005,7.87,7.930000000000001,7.96,7.98,8,8.01,8.02,38.58,38.33,38.17,38.01,37.88,37.76,37.62,37.51,37.27,16.080000000000002,15.46,15.22,14.99,14.77,14.57,14.36,14.16,13.76,N/A,N/A +2012,11,13,22,30,102690,101470,100280,45.74,0,7.42,7.87,7.96,7.99,8.01,8.02,8.02,8.02,8.01,29.3,29.63,29.85,30.05,30.240000000000002,30.41,30.580000000000002,30.75,31.060000000000002,16.41,15.790000000000001,15.56,15.33,15.120000000000001,14.92,14.71,14.51,14.11,N/A,N/A +2012,11,13,23,30,102670,101450,100260,47.28,0,7.71,8.17,8.25,8.28,8.290000000000001,8.290000000000001,8.290000000000001,8.28,8.25,24.7,25.080000000000002,25.34,25.57,25.79,25.990000000000002,26.2,26.38,26.76,16.37,15.74,15.5,15.280000000000001,15.06,14.86,14.65,14.450000000000001,14.05,N/A,N/A +2012,11,14,0,30,102690,101460,100280,49.68,0,8.39,8.91,9,9.03,9.040000000000001,9.05,9.03,9.02,8.98,24.97,25.34,25.55,25.76,25.95,26.12,26.3,26.46,26.8,16.04,15.38,15.14,14.91,14.69,14.49,14.27,14.08,13.68,N/A,N/A +2012,11,14,1,30,102680,101460,100270,52.800000000000004,0,8.77,9.31,9.41,9.450000000000001,9.46,9.46,9.44,9.43,9.38,26.35,26.77,27.03,27.27,27.51,27.71,27.92,28.12,28.53,15.66,14.98,14.74,14.5,14.280000000000001,14.08,13.870000000000001,13.67,13.27,N/A,N/A +2012,11,14,2,30,102680,101460,100270,54.75,0,8.81,9.370000000000001,9.48,9.52,9.540000000000001,9.540000000000001,9.53,9.52,9.49,32.69,33.05,33.28,33.49,33.69,33.86,34.05,34.22,34.58,15.5,14.81,14.56,14.33,14.11,13.91,13.69,13.5,13.1,N/A,N/A +2012,11,14,3,30,102690,101470,100280,56.7,0,8.98,9.56,9.68,9.74,9.76,9.77,9.76,9.76,9.73,35.93,36.28,36.51,36.72,36.92,37.1,37.28,37.45,37.81,15.43,14.73,14.48,14.25,14.02,13.82,13.61,13.41,13.01,N/A,N/A +2012,11,14,4,30,102680,101450,100260,60.07,0,8.88,9.450000000000001,9.56,9.61,9.63,9.64,9.64,9.63,9.61,39.18,39.67,39.96,40.24,40.5,40.730000000000004,40.97,41.19,41.64,15.370000000000001,14.68,14.42,14.19,13.97,13.77,13.55,13.36,12.96,N/A,N/A +2012,11,14,5,30,102660,101430,100250,64.36,0,8.89,9.47,9.6,9.65,9.68,9.700000000000001,9.700000000000001,9.700000000000001,9.69,40.58,40.99,41.25,41.49,41.7,41.89,42.09,42.28,42.64,15.36,14.67,14.41,14.17,13.950000000000001,13.75,13.530000000000001,13.33,12.93,N/A,N/A +2012,11,14,6,30,102700,101480,100290,65.44,0,8.69,9.25,9.36,9.41,9.43,9.450000000000001,9.450000000000001,9.44,9.42,39.62,40.15,40.46,40.75,41.02,41.26,41.51,41.74,42.19,15.17,14.49,14.23,14,13.780000000000001,13.58,13.36,13.16,12.76,N/A,N/A +2012,11,14,7,30,102710,101480,100290,65.94,0,8.78,9.34,9.450000000000001,9.49,9.51,9.52,9.52,9.51,9.48,35.62,36.17,36.49,36.79,37.06,37.31,37.57,37.81,38.28,14.91,14.21,13.950000000000001,13.72,13.5,13.3,13.08,12.88,12.48,N/A,N/A +2012,11,14,8,30,102690,101470,100280,66.38,0,8.9,9.46,9.56,9.61,9.63,9.63,9.620000000000001,9.61,9.57,35.84,36.22,36.47,36.7,36.910000000000004,37.11,37.31,37.49,37.86,14.74,14.030000000000001,13.77,13.540000000000001,13.31,13.11,12.9,12.700000000000001,12.3,N/A,N/A +2012,11,14,9,30,102740,101510,100320,62.81,0,8.35,8.84,8.92,8.950000000000001,8.96,8.950000000000001,8.93,8.91,8.86,35.33,35.68,35.910000000000004,36.12,36.32,36.5,36.68,36.85,37.21,14.63,13.94,13.68,13.450000000000001,13.23,13.030000000000001,12.81,12.620000000000001,12.22,N/A,N/A +2012,11,14,10,30,102740,101510,100320,62.58,0,8.28,8.77,8.86,8.89,8.91,8.91,8.9,8.88,8.84,32.62,33.09,33.4,33.69,33.96,34.2,34.45,34.68,35.160000000000004,14.530000000000001,13.84,13.59,13.35,13.13,12.93,12.72,12.52,12.13,N/A,N/A +2012,11,14,11,30,102740,101510,100320,62.28,0,8.07,8.53,8.6,8.620000000000001,8.61,8.6,8.58,8.55,8.49,31.01,31.5,31.8,32.07,32.34,32.58,32.83,33.06,33.54,14.47,13.780000000000001,13.52,13.3,13.08,12.88,12.66,12.47,12.07,N/A,N/A +2012,11,14,12,30,102760,101530,100340,62.43,0,8.26,8.73,8.8,8.81,8.81,8.790000000000001,8.76,8.73,8.66,31.75,32.2,32.480000000000004,32.75,33,33.22,33.47,33.69,34.160000000000004,14.24,13.540000000000001,13.290000000000001,13.05,12.83,12.64,12.43,12.23,11.84,N/A,N/A +2012,11,14,13,30,102790,101560,100360,60.85,0,8.06,8.51,8.57,8.59,8.58,8.57,8.540000000000001,8.51,8.44,30.63,30.98,31.23,31.46,31.69,31.89,32.1,32.31,32.72,14.15,13.450000000000001,13.19,12.97,12.75,12.55,12.34,12.15,11.76,N/A,N/A +2012,11,14,14,30,102800,101570,100370,60.96,0,8.31,8.77,8.84,8.85,8.84,8.83,8.790000000000001,8.76,8.68,30.82,31.240000000000002,31.490000000000002,31.73,31.95,32.160000000000004,32.38,32.58,33,13.92,13.200000000000001,12.950000000000001,12.72,12.5,12.3,12.09,11.9,11.51,N/A,N/A +2012,11,14,15,30,102820,101580,100390,58.61,0,7.94,8.39,8.46,8.48,8.48,8.47,8.46,8.44,8.38,31.560000000000002,31.94,32.18,32.39,32.59,32.77,32.97,33.15,33.53,13.9,13.19,12.93,12.71,12.48,12.290000000000001,12.08,11.89,11.5,N/A,N/A +2012,11,14,16,30,102800,101570,100370,56.410000000000004,0,7.48,7.87,7.930000000000001,7.95,7.95,7.94,7.92,7.9,7.84,23.1,23.36,23.52,23.67,23.81,23.95,24.080000000000002,24.21,24.47,14.07,13.38,13.13,12.9,12.68,12.49,12.280000000000001,12.09,11.700000000000001,N/A,N/A +2012,11,14,17,30,102770,101540,100340,51.95,0,7.18,7.57,7.640000000000001,7.66,7.66,7.66,7.640000000000001,7.63,7.59,19.400000000000002,19.53,19.61,19.68,19.76,19.82,19.89,19.96,20.09,14.530000000000001,13.870000000000001,13.620000000000001,13.4,13.18,12.98,12.77,12.58,12.19,N/A,N/A +2012,11,14,18,30,102730,101510,100310,49.63,0,6.63,6.99,7.07,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.15,7.140000000000001,17.1,17.14,17.16,17.17,17.18,17.19,17.21,17.22,17.240000000000002,15,14.370000000000001,14.13,13.9,13.69,13.49,13.280000000000001,13.08,12.68,N/A,N/A +2012,11,14,19,30,102710,101490,100300,44.29,0,5.73,6.07,6.140000000000001,6.19,6.22,6.24,6.26,6.28,6.3,13.06,13.18,13.26,13.34,13.4,13.46,13.530000000000001,13.58,13.68,15.85,15.27,15.040000000000001,14.82,14.61,14.41,14.200000000000001,14.01,13.61,N/A,N/A +2012,11,14,20,30,102660,101440,100260,41.230000000000004,0,6.2,6.5600000000000005,6.640000000000001,6.67,6.7,6.72,6.73,6.74,6.75,7.01,7.19,7.3,7.390000000000001,7.48,7.55,7.640000000000001,7.71,7.86,16.6,16.03,15.81,15.59,15.38,15.18,14.98,14.780000000000001,14.38,N/A,N/A +2012,11,14,21,30,102630,101410,100230,39.28,0,6.44,6.82,6.890000000000001,6.93,6.95,6.96,6.96,6.97,6.96,7.91,7.88,7.86,7.84,7.83,7.82,7.82,7.8100000000000005,7.82,17.18,16.63,16.41,16.2,15.99,15.790000000000001,15.59,15.39,15,N/A,N/A +2012,11,14,22,30,102600,101380,100210,40.18,0,6.3,6.66,6.73,6.76,6.78,6.78,6.79,6.79,6.78,13.73,13.56,13.44,13.33,13.22,13.14,13.05,12.97,12.81,17.45,16.91,16.69,16.48,16.27,16.080000000000002,15.870000000000001,15.67,15.280000000000001,N/A,N/A +2012,11,14,23,30,102620,101400,100220,43.94,0,6.32,6.67,6.74,6.76,6.78,6.78,6.78,6.78,6.76,12.09,12.49,12.71,12.92,13.120000000000001,13.290000000000001,13.48,13.65,13.98,17.45,16.91,16.69,16.47,16.26,16.06,15.85,15.66,15.26,N/A,N/A +2012,11,15,0,30,102610,101400,100220,46.730000000000004,0,7.08,7.46,7.53,7.54,7.54,7.53,7.51,7.49,7.44,18.34,18.36,18.37,18.37,18.37,18.37,18.38,18.38,18.38,17.11,16.54,16.32,16.1,15.89,15.69,15.48,15.290000000000001,14.89,N/A,N/A +2012,11,15,1,30,102620,101400,100220,48.21,0,7.0200000000000005,7.390000000000001,7.45,7.46,7.46,7.45,7.43,7.41,7.3500000000000005,21.75,21.92,22,22.07,22.13,22.19,22.26,22.32,22.46,16.66,16.080000000000002,15.84,15.63,15.41,15.22,15.01,14.81,14.42,N/A,N/A +2012,11,15,2,30,102620,101410,100220,50.25,0,6.71,7.0600000000000005,7.11,7.12,7.12,7.11,7.09,7.07,7.01,26.23,26.39,26.5,26.59,26.69,26.77,26.86,26.93,27.09,16.41,15.83,15.6,15.38,15.17,14.97,14.76,14.57,14.17,N/A,N/A +2012,11,15,3,30,102600,101380,100190,53.620000000000005,0,6.97,7.34,7.390000000000001,7.4,7.390000000000001,7.390000000000001,7.36,7.34,7.28,27.12,27.35,27.490000000000002,27.63,27.77,27.88,28.01,28.13,28.37,16.11,15.5,15.27,15.05,14.84,14.64,14.43,14.24,13.84,N/A,N/A +2012,11,15,4,30,102590,101370,100180,53.19,0,6.79,7.15,7.2,7.21,7.21,7.2,7.18,7.16,7.11,37.9,38.26,38.49,38.71,38.93,39.11,39.31,39.5,39.88,16.14,15.55,15.32,15.1,14.88,14.69,14.48,14.280000000000001,13.89,N/A,N/A +2012,11,15,5,30,102550,101340,100150,51.83,0,6.75,7.09,7.140000000000001,7.140000000000001,7.140000000000001,7.12,7.1000000000000005,7.08,7.0200000000000005,35.54,35.94,36.18,36.42,36.64,36.84,37.06,37.26,37.68,16.16,15.57,15.34,15.120000000000001,14.91,14.71,14.5,14.31,13.92,N/A,N/A +2012,11,15,6,30,102530,101320,100130,59.33,0,6.25,6.57,6.61,6.62,6.61,6.6000000000000005,6.58,6.5600000000000005,6.51,38.46,39.03,39.33,39.62,39.89,40.14,40.4,40.65,41.15,16.05,15.5,15.280000000000001,15.07,14.85,14.66,14.450000000000001,14.26,13.870000000000001,N/A,N/A +2012,11,15,7,30,102540,101320,100140,61.120000000000005,0,6.5200000000000005,6.8500000000000005,6.9,6.91,6.91,6.9,6.88,6.86,6.8100000000000005,44.230000000000004,44.84,45.19,45.53,45.85,46.13,46.45,46.730000000000004,47.31,15.93,15.370000000000001,15.14,14.92,14.71,14.52,14.31,14.120000000000001,13.73,N/A,N/A +2012,11,15,8,30,102520,101300,100120,63.06,0,6.43,6.76,6.8,6.8100000000000005,6.8100000000000005,6.8,6.78,6.76,6.7,44.58,45.050000000000004,45.34,45.62,45.88,46.11,46.36,46.59,47.07,15.88,15.32,15.09,14.870000000000001,14.66,14.47,14.26,14.07,13.67,N/A,N/A +2012,11,15,9,30,102520,101300,100120,61.32,0,6.37,6.69,6.73,6.74,6.73,6.72,6.7,6.68,6.62,44.660000000000004,45.24,45.63,46,46.35,46.65,46.980000000000004,47.29,47.92,15.860000000000001,15.3,15.08,14.870000000000001,14.65,14.46,14.25,14.06,13.67,N/A,N/A +2012,11,15,10,30,102520,101300,100120,61.61,0,6.08,6.37,6.4,6.41,6.390000000000001,6.38,6.36,6.34,6.28,47.65,48.27,48.65,49,49.34,49.64,49.95,50.24,50.85,15.870000000000001,15.32,15.1,14.88,14.67,14.48,14.27,14.08,13.68,N/A,N/A +2012,11,15,11,30,102530,101320,100130,62.07,0,5.97,6.25,6.28,6.28,6.2700000000000005,6.25,6.23,6.2,6.140000000000001,47.84,48.32,48.59,48.85,49.09,49.31,49.56,49.78,50.24,15.83,15.27,15.05,14.83,14.620000000000001,14.43,14.22,14.030000000000001,13.63,N/A,N/A +2012,11,15,12,30,102540,101320,100130,64.18,0,6.44,6.76,6.79,6.8,6.78,6.7700000000000005,6.74,6.71,6.65,46.18,46.71,47.03,47.33,47.62,47.88,48.15,48.410000000000004,48.93,15.67,15.1,14.88,14.66,14.450000000000001,14.26,14.05,13.85,13.46,N/A,N/A +2012,11,15,13,30,102540,101320,100130,65.43,0,6.83,7.17,7.22,7.22,7.21,7.19,7.16,7.13,7.0600000000000005,43.52,43.95,44.230000000000004,44.5,44.76,44.980000000000004,45.230000000000004,45.45,45.910000000000004,15.46,14.88,14.65,14.43,14.22,14.030000000000001,13.82,13.63,13.24,N/A,N/A +2012,11,15,14,30,102550,101330,100140,66.07000000000001,0,6.97,7.33,7.37,7.37,7.3500000000000005,7.33,7.3,7.26,7.17,40.410000000000004,40.77,41,41.21,41.42,41.6,41.800000000000004,41.980000000000004,42.38,15.3,14.71,14.47,14.26,14.040000000000001,13.85,13.64,13.450000000000001,13.06,N/A,N/A +2012,11,15,15,30,102570,101350,100160,64.13,0,6.7700000000000005,7.12,7.16,7.17,7.16,7.140000000000001,7.12,7.09,7.0200000000000005,46.980000000000004,47.29,47.49,47.67,47.85,48.01,48.17,48.32,48.64,15.25,14.66,14.43,14.21,14,13.8,13.59,13.41,13.01,N/A,N/A +2012,11,15,16,30,102560,101340,100160,63.07,0,6.49,6.8100000000000005,6.8500000000000005,6.8500000000000005,6.84,6.82,6.79,6.76,6.69,45.69,45.94,46.12,46.28,46.42,46.56,46.71,46.85,47.12,15.200000000000001,14.61,14.38,14.16,13.950000000000001,13.76,13.55,13.36,12.97,N/A,N/A +2012,11,15,17,30,102550,101330,100140,59.81,0,5.92,6.2,6.23,6.23,6.22,6.2,6.18,6.16,6.09,44.160000000000004,44.4,44.53,44.64,44.76,44.86,44.97,45.07,45.27,15.370000000000001,14.81,14.58,14.36,14.15,13.96,13.75,13.56,13.17,N/A,N/A +2012,11,15,18,30,102510,101290,100110,59.07,0,5.5600000000000005,5.8,5.83,5.83,5.8100000000000005,5.8,5.7700000000000005,5.75,5.69,36.99,37.07,37.160000000000004,37.230000000000004,37.300000000000004,37.37,37.43,37.49,37.59,15.49,14.93,14.71,14.5,14.290000000000001,14.1,13.89,13.700000000000001,13.31,N/A,N/A +2012,11,15,19,30,102510,101290,100110,48.5,0,4.57,4.78,4.8,4.8100000000000005,4.8100000000000005,4.8,4.79,4.78,4.76,39.910000000000004,39.9,39.87,39.83,39.800000000000004,39.77,39.730000000000004,39.69,39.61,16.01,15.49,15.27,15.07,14.86,14.67,14.46,14.27,13.88,N/A,N/A +2012,11,15,20,30,102470,101250,100070,47.480000000000004,0,4.17,4.36,4.39,4.4,4.41,4.41,4.41,4.41,4.4,39.38,39.19,39.06,38.95,38.82,38.71,38.58,38.45,38.17,16.4,15.9,15.69,15.48,15.280000000000001,15.09,14.88,14.69,14.3,N/A,N/A +2012,11,15,21,30,102450,101230,100050,46.76,0,3.69,3.85,3.88,3.89,3.89,3.89,3.89,3.89,3.89,51.730000000000004,51.14,50.77,50.42,50.08,49.76,49.410000000000004,49.09,48.39,16.79,16.31,16.1,15.9,15.69,15.5,15.3,15.1,14.71,N/A,N/A +2012,11,15,22,30,102440,101220,100050,46.13,0,3.45,3.61,3.64,3.66,3.67,3.69,3.69,3.7,3.71,55.99,55.300000000000004,54.88,54.49,54.11,53.76,53.38,53.03,52.28,17.150000000000002,16.69,16.490000000000002,16.28,16.080000000000002,15.89,15.68,15.5,15.1,N/A,N/A +2012,11,15,23,30,102450,101240,100060,45.37,0,3.73,3.91,3.95,3.97,3.99,4,4.0200000000000005,4.03,4.05,60.36,59.28,58.550000000000004,57.88,57.24,56.67,56.050000000000004,55.480000000000004,54.34,17.580000000000002,17.13,16.93,16.73,16.52,16.34,16.13,15.94,15.55,N/A,N/A +2012,11,16,0,30,102450,101240,100070,39.46,0,4.7,4.93,4.95,4.96,4.95,4.94,4.93,4.91,4.87,32.69,32.52,32.53,32.55,32.58,32.6,32.62,32.65,32.71,18.330000000000002,17.89,17.69,17.48,17.28,17.09,16.88,16.69,16.29,N/A,N/A +2012,11,16,1,30,102480,101270,100100,43.85,0,5.87,6.15,6.18,6.17,6.16,6.13,6.11,6.08,6.01,31.27,31.810000000000002,32.14,32.44,32.72,32.99,33.26,33.5,34.04,17.82,17.35,17.14,16.94,16.73,16.54,16.330000000000002,16.15,15.75,N/A,N/A +2012,11,16,2,30,102500,101280,100100,47.58,0,6.3,6.61,6.65,6.65,6.63,6.62,6.59,6.5600000000000005,6.48,30.150000000000002,30.59,30.87,31.13,31.37,31.6,31.84,32.06,32.53,17.36,16.86,16.65,16.44,16.23,16.04,15.84,15.65,15.26,N/A,N/A +2012,11,16,3,30,102490,101270,100100,49.88,0,6.18,6.5,6.54,6.55,6.54,6.53,6.51,6.49,6.43,35.01,35.44,35.68,35.92,36.13,36.33,36.54,36.730000000000004,37.14,17.14,16.63,16.42,16.21,16,15.81,15.610000000000001,15.42,15.030000000000001,N/A,N/A +2012,11,16,4,30,102470,101260,100080,53.17,0,6.42,6.76,6.8100000000000005,6.82,6.82,6.8100000000000005,6.78,6.76,6.7,33.7,34.09,34.33,34.550000000000004,34.76,34.94,35.14,35.33,35.7,16.97,16.45,16.23,16.02,15.82,15.620000000000001,15.42,15.23,14.84,N/A,N/A +2012,11,16,5,30,102500,101280,100100,56.5,0,6.69,7.07,7.140000000000001,7.16,7.17,7.17,7.15,7.140000000000001,7.1000000000000005,40.51,40.84,41.06,41.26,41.45,41.62,41.800000000000004,41.97,42.31,16.85,16.32,16.1,15.88,15.67,15.48,15.27,15.08,14.68,N/A,N/A +2012,11,16,6,30,102500,101290,100110,59.83,0,7.16,7.57,7.640000000000001,7.65,7.66,7.65,7.63,7.61,7.5600000000000005,40.35,40.800000000000004,41.08,41.35,41.6,41.83,42.07,42.29,42.74,16.57,16.02,15.8,15.58,15.370000000000001,15.18,14.97,14.780000000000001,14.39,N/A,N/A +2012,11,16,7,30,102520,101300,100120,61.51,0,7.07,7.46,7.5200000000000005,7.54,7.54,7.53,7.51,7.49,7.43,38.480000000000004,38.83,39.06,39.28,39.480000000000004,39.67,39.85,40.03,40.39,16.32,15.77,15.55,15.33,15.120000000000001,14.93,14.72,14.530000000000001,14.14,N/A,N/A +2012,11,16,8,30,102520,101300,100120,62.09,0,7.43,7.86,7.930000000000001,7.95,7.95,7.94,7.92,7.9,7.84,37.97,38.33,38.550000000000004,38.75,38.94,39.11,39.300000000000004,39.47,39.82,16.12,15.56,15.33,15.11,14.9,14.71,14.5,14.31,13.92,N/A,N/A +2012,11,16,9,30,102530,101310,100120,63.96,0,7.3500000000000005,7.76,7.83,7.8500000000000005,7.84,7.83,7.8100000000000005,7.79,7.72,37.29,37.67,37.910000000000004,38.13,38.35,38.54,38.74,38.94,39.33,15.81,15.23,15,14.780000000000001,14.57,14.38,14.17,13.98,13.6,N/A,N/A +2012,11,16,10,30,102540,101320,100130,66.97,0,7.8500000000000005,8.31,8.39,8.41,8.41,8.4,8.370000000000001,8.35,8.290000000000001,36,36.4,36.65,36.88,37.1,37.300000000000004,37.51,37.71,38.12,15.530000000000001,14.92,14.69,14.47,14.26,14.06,13.86,13.67,13.280000000000001,N/A,N/A +2012,11,16,11,30,102580,101350,100170,67.9,0,8.05,8.52,8.6,8.63,8.63,8.620000000000001,8.6,8.58,8.51,36.22,36.62,36.88,37.12,37.34,37.550000000000004,37.77,37.97,38.39,15.14,14.51,14.27,14.06,13.84,13.65,13.44,13.25,12.86,N/A,N/A +2012,11,16,12,30,102590,101360,100170,70.12,0,8.46,8.98,9.07,9.1,9.1,9.09,9.07,9.05,8.98,33.62,33.980000000000004,34.21,34.43,34.63,34.82,35.02,35.21,35.61,14.700000000000001,14.05,13.8,13.58,13.370000000000001,13.17,12.97,12.780000000000001,12.4,N/A,N/A +2012,11,16,13,30,102600,101380,100180,69.5,0,8.46,8.96,9.05,9.07,9.07,9.05,9.02,8.99,8.91,30.47,30.830000000000002,31.060000000000002,31.28,31.490000000000002,31.69,31.89,32.09,32.5,14.34,13.67,13.43,13.200000000000001,12.99,12.8,12.59,12.4,12.030000000000001,N/A,N/A +2012,11,16,14,30,102640,101410,100210,70.03,0,8.42,8.91,8.99,9.01,9.01,9,8.97,8.94,8.86,30.22,30.6,30.84,31.07,31.29,31.490000000000002,31.71,31.91,32.36,14.1,13.43,13.18,12.96,12.75,12.55,12.35,12.16,11.78,N/A,N/A +2012,11,16,15,30,102630,101400,100210,71.32000000000001,0,8.47,8.98,9.07,9.09,9.1,9.09,9.07,9.040000000000001,8.98,30.04,30.37,30.580000000000002,30.76,30.95,31.11,31.3,31.470000000000002,31.82,14.030000000000001,13.36,13.11,12.89,12.67,12.48,12.280000000000001,12.09,11.71,N/A,N/A +2012,11,16,16,30,102640,101410,100220,69.97,0,7.8100000000000005,8.28,8.370000000000001,8.4,8.41,8.42,8.41,8.4,8.36,33.5,33.76,33.94,34.1,34.25,34.38,34.53,34.660000000000004,34.93,14.19,13.540000000000001,13.3,13.08,12.86,12.67,12.46,12.27,11.88,N/A,N/A +2012,11,16,17,30,102620,101400,100210,67.42,0,7.44,7.88,7.97,8,8.02,8.03,8.03,8.02,8.01,29.43,29.650000000000002,29.8,29.93,30.060000000000002,30.17,30.29,30.39,30.62,14.55,13.92,13.68,13.46,13.24,13.05,12.84,12.65,12.25,N/A,N/A +2012,11,16,18,30,102610,101380,100190,62.78,0,6.58,6.97,7.0600000000000005,7.1000000000000005,7.13,7.15,7.17,7.18,7.19,31.240000000000002,31.32,31.37,31.41,31.44,31.470000000000002,31.5,31.53,31.580000000000002,15.1,14.51,14.280000000000001,14.06,13.84,13.65,13.44,13.25,12.85,N/A,N/A +2012,11,16,19,30,102580,101360,100180,59.33,0,5.94,6.3100000000000005,6.4,6.45,6.49,6.5200000000000005,6.54,6.5600000000000005,6.6000000000000005,33.83,33.58,33.410000000000004,33.25,33.09,32.94,32.79,32.65,32.35,15.75,15.21,14.98,14.77,14.56,14.36,14.16,13.96,13.57,N/A,N/A +2012,11,16,20,30,102560,101340,100160,56.08,0,5.33,5.66,5.75,5.8100000000000005,5.8500000000000005,5.89,5.92,5.95,6,36.980000000000004,36.39,36.04,35.72,35.4,35.12,34.83,34.56,34.03,16.47,15.96,15.74,15.530000000000001,15.32,15.13,14.92,14.73,14.34,N/A,N/A +2012,11,16,21,30,102540,101320,100140,54.660000000000004,0,5.25,5.57,5.64,5.69,5.72,5.75,5.7700000000000005,5.79,5.83,43.480000000000004,42.83,42.410000000000004,42.02,41.660000000000004,41.33,40.97,40.660000000000004,40.02,17.09,16.61,16.4,16.19,15.98,15.790000000000001,15.58,15.39,15,N/A,N/A +2012,11,16,22,30,102530,101320,100140,52.94,0,5.54,5.9,5.98,6.04,6.09,6.12,6.15,6.17,6.22,39.44,38.84,38.480000000000004,38.15,37.86,37.6,37.34,37.11,36.660000000000004,17.68,17.21,17.01,16.8,16.59,16.4,16.19,16,15.6,N/A,N/A +2012,11,16,23,30,102540,101330,100150,51.660000000000004,0,5.87,6.24,6.32,6.37,6.41,6.43,6.45,6.47,6.49,36.5,35.96,35.72,35.5,35.31,35.13,34.96,34.800000000000004,34.49,17.93,17.46,17.25,17.05,16.84,16.65,16.44,16.240000000000002,15.85,N/A,N/A +2012,11,17,0,30,102570,101360,100180,52.21,0,7.07,7.48,7.54,7.5600000000000005,7.5600000000000005,7.5600000000000005,7.54,7.53,7.48,22.330000000000002,22.76,23.02,23.26,23.490000000000002,23.71,23.93,24.14,24.57,17.64,17.14,16.93,16.72,16.51,16.32,16.11,15.92,15.530000000000001,N/A,N/A +2012,11,17,1,30,102600,101380,100210,56.26,0,7.54,8.02,8.11,8.14,8.15,8.16,8.15,8.14,8.1,27.11,27.38,27.57,27.75,27.91,28.060000000000002,28.21,28.35,28.64,17.28,16.76,16.54,16.330000000000002,16.12,15.92,15.71,15.52,15.120000000000001,N/A,N/A +2012,11,17,2,30,102620,101400,100220,59.54,0,8.14,8.68,8.78,8.83,8.84,8.85,8.85,8.84,8.81,29,29.51,29.82,30.11,30.39,30.64,30.900000000000002,31.150000000000002,31.64,16.96,16.41,16.19,15.98,15.76,15.57,15.36,15.17,14.77,N/A,N/A +2012,11,17,3,30,102630,101410,100230,62.13,0,8.41,8.98,9.09,9.14,9.16,9.16,9.16,9.15,9.11,34.75,35.09,35.29,35.480000000000004,35.660000000000004,35.82,35.99,36.15,36.480000000000004,16.61,16.04,15.81,15.6,15.38,15.19,14.98,14.780000000000001,14.39,N/A,N/A +2012,11,17,4,30,102620,101400,100220,63.6,0,8.07,8.59,8.69,8.73,8.74,8.74,8.74,8.73,8.69,38.2,38.71,39.02,39.31,39.58,39.83,40.1,40.34,40.85,16.57,16,15.780000000000001,15.56,15.35,15.15,14.94,14.75,14.36,N/A,N/A +2012,11,17,5,30,102630,101410,100230,66.15,0,7.930000000000001,8.45,8.56,8.61,8.63,8.65,8.66,8.66,8.64,44.35,44.85,45.14,45.410000000000004,45.660000000000004,45.89,46.13,46.34,46.79,16.580000000000002,16.02,15.790000000000001,15.57,15.36,15.17,14.96,14.76,14.370000000000001,N/A,N/A +2012,11,17,6,30,102640,101420,100240,64.28,0,7.6000000000000005,8.09,8.19,8.24,8.26,8.27,8.27,8.27,8.25,47.38,47.65,47.81,47.96,48.1,48.22,48.35,48.47,48.71,16.53,15.99,15.77,15.55,15.34,15.15,14.94,14.74,14.35,N/A,N/A +2012,11,17,7,30,102660,101440,100260,63.27,0,7.99,8.53,8.64,8.69,8.71,8.73,8.72,8.72,8.700000000000001,48.56,48.94,49.18,49.410000000000004,49.620000000000005,49.81,50.02,50.2,50.59,16.42,15.870000000000001,15.65,15.43,15.22,15.030000000000001,14.82,14.63,14.23,N/A,N/A +2012,11,17,8,30,102650,101440,100250,63.21,0,7.640000000000001,8.14,8.23,8.27,8.290000000000001,8.3,8.3,8.3,8.27,51.47,51.870000000000005,52.120000000000005,52.35,52.550000000000004,52.74,52.94,53.13,53.5,16.39,15.84,15.620000000000001,15.41,15.200000000000001,15,14.790000000000001,14.6,14.200000000000001,N/A,N/A +2012,11,17,9,30,102650,101430,100250,60.92,0,7.43,7.9,7.98,8.02,8.040000000000001,8.040000000000001,8.040000000000001,8.03,8,50.85,51.17,51.370000000000005,51.550000000000004,51.72,51.870000000000005,52.04,52.19,52.49,16.35,15.81,15.59,15.38,15.17,14.97,14.76,14.57,14.18,N/A,N/A +2012,11,17,10,30,102670,101450,100260,61.54,0,6.97,7.38,7.45,7.48,7.49,7.49,7.49,7.48,7.45,52.33,52.76,53.03,53.27,53.51,53.71,53.94,54.14,54.57,16.2,15.66,15.44,15.23,15.02,14.83,14.620000000000001,14.43,14.030000000000001,N/A,N/A +2012,11,17,11,30,102660,101450,100260,65.25,0,6.73,7.11,7.18,7.21,7.22,7.22,7.21,7.21,7.18,51.89,52.410000000000004,52.72,53.01,53.28,53.52,53.79,54.03,54.53,16.09,15.56,15.34,15.13,14.92,14.72,14.51,14.32,13.93,N/A,N/A +2012,11,17,12,30,102690,101470,100290,67.5,0,6.48,6.8500000000000005,6.91,6.93,6.94,6.94,6.93,6.92,6.88,51.52,52.19,52.59,52.97,53.33,53.64,53.99,54.31,54.97,16.080000000000002,15.55,15.33,15.120000000000001,14.91,14.71,14.51,14.31,13.92,N/A,N/A +2012,11,17,13,30,102690,101470,100290,68.8,0,6.41,6.76,6.8100000000000005,6.83,6.84,6.83,6.82,6.8100000000000005,6.78,48.980000000000004,49.74,50.2,50.63,51.03,51.4,51.79,52.14,52.870000000000005,16.03,15.5,15.280000000000001,15.07,14.86,14.67,14.46,14.27,13.88,N/A,N/A +2012,11,17,14,30,102720,101500,100320,70.69,0,6.74,7.12,7.18,7.21,7.21,7.21,7.2,7.19,7.15,49.74,50.58,51.09,51.57,52.02,52.42,52.85,53.24,54.03,16.01,15.47,15.25,15.030000000000001,14.82,14.63,14.42,14.23,13.84,N/A,N/A +2012,11,17,15,30,102740,101520,100330,72.2,0,6.5200000000000005,6.88,6.93,6.95,6.95,6.95,6.93,6.92,6.88,49.57,50.53,51.11,51.64,52.15,52.61,53.1,53.550000000000004,54.47,15.98,15.44,15.22,15.01,14.8,14.61,14.4,14.21,13.82,N/A,N/A +2012,11,17,16,30,102730,101510,100320,72.13,0,6.11,6.42,6.47,6.48,6.48,6.47,6.45,6.44,6.4,46.980000000000004,47.95,48.52,49.050000000000004,49.56,50.02,50.52,50.980000000000004,51.93,15.97,15.44,15.22,15.02,14.81,14.620000000000001,14.41,14.22,13.83,N/A,N/A +2012,11,17,17,30,102720,101500,100310,72.55,0,5.66,5.95,5.99,6.01,6.01,6.01,6,5.99,5.96,46.74,47.75,48.36,48.92,49.47,49.96,50.480000000000004,50.96,51.96,16.15,15.64,15.42,15.21,15.01,14.82,14.61,14.42,14.030000000000001,N/A,N/A +2012,11,17,18,30,102710,101490,100310,71.59,0,5.28,5.53,5.57,5.58,5.58,5.57,5.5600000000000005,5.55,5.51,48.14,49.01,49.52,50.01,50.47,50.88,51.33,51.75,52.6,16.3,15.8,15.59,15.38,15.18,14.99,14.780000000000001,14.59,14.200000000000001,N/A,N/A +2012,11,17,19,30,102700,101480,100300,67.65,0,4.79,5.01,5.04,5.05,5.05,5.05,5.04,5.03,5.01,49.63,50.27,50.660000000000004,51.02,51.38,51.7,52.06,52.39,53.1,16.51,16.03,15.82,15.610000000000001,15.41,15.22,15.01,14.82,14.43,N/A,N/A +2012,11,17,20,30,102660,101440,100260,63.02,0,4.0200000000000005,4.2,4.23,4.24,4.24,4.25,4.24,4.24,4.23,52.32,52.67,52.85,53.02,53.18,53.33,53.51,53.660000000000004,54.02,16.84,16.37,16.17,15.97,15.76,15.57,15.370000000000001,15.18,14.790000000000001,N/A,N/A +2012,11,17,21,30,102650,101430,100250,58.9,0,3.83,4.01,4.04,4.0600000000000005,4.07,4.07,4.07,4.07,4.07,69.72,69.83,69.84,69.84,69.84,69.84,69.84,69.85000000000001,69.86,17.26,16.82,16.62,16.43,16.22,16.04,15.84,15.65,15.27,N/A,N/A +2012,11,17,22,30,102620,101410,100230,55.25,0,3.75,3.92,3.96,3.97,3.98,3.98,3.98,3.98,3.99,89.08,88.75,88.52,88.29,88.05,87.82000000000001,87.53,87.25,86.55,17.68,17.26,17.07,16.87,16.67,16.490000000000002,16.3,16.12,15.75,N/A,N/A +2012,11,17,23,30,102610,101400,100220,51.800000000000004,0,3.24,3.4,3.42,3.44,3.45,3.46,3.46,3.47,3.48,74.84,74.41,74.14,73.87,73.61,73.36,73.08,72.82000000000001,72.2,18.1,17.69,17.5,17.3,17.1,16.92,16.72,16.53,16.14,N/A,N/A +2012,11,18,0,30,102610,101400,100220,52.32,0,3.37,3.5500000000000003,3.58,3.6,3.62,3.63,3.64,3.65,3.66,61.730000000000004,61.64,61.56,61.47,61.38,61.31,61.22,61.13,60.93,18.36,17.96,17.77,17.57,17.37,17.18,16.98,16.79,16.4,N/A,N/A +2012,11,18,1,30,102590,101390,100210,53.21,0,3.93,4.16,4.21,4.25,4.2700000000000005,4.29,4.3100000000000005,4.32,4.3500000000000005,53.04,53.17,53.24,53.28,53.33,53.38,53.410000000000004,53.44,53.51,18.54,18.14,17.95,17.75,17.55,17.36,17.16,16.97,16.580000000000002,N/A,N/A +2012,11,18,2,30,102590,101380,100210,52.300000000000004,0,4.93,5.24,5.3,5.34,5.37,5.39,5.4,5.41,5.43,55.53,55.63,55.67,55.71,55.75,55.78,55.82,55.85,55.910000000000004,18.78,18.37,18.18,17.98,17.78,17.6,17.39,17.2,16.81,N/A,N/A +2012,11,18,3,30,102580,101380,100210,49.06,0,5.68,6.0600000000000005,6.13,6.17,6.2,6.21,6.22,6.23,6.23,51.27,51.79,52.15,52.49,52.83,53.13,53.44,53.730000000000004,54.32,19.06,18.66,18.47,18.27,18.07,17.88,17.68,17.490000000000002,17.09,N/A,N/A +2012,11,18,4,30,102570,101360,100190,54.81,0,5.67,5.97,6.01,6.0200000000000005,6.01,6,5.98,5.96,5.91,39.25,40.18,40.75,41.300000000000004,41.84,42.34,42.910000000000004,43.44,44.64,18.400000000000002,17.97,17.78,17.580000000000002,17.38,17.2,17,16.81,16.43,N/A,N/A +2012,11,18,5,30,102550,101350,100180,51.410000000000004,0,5.96,6.36,6.45,6.49,6.53,6.55,6.5600000000000005,6.58,6.59,67.65,68.13,68.45,68.74,69.02,69.27,69.53,69.78,70.27,19,18.6,18.41,18.21,18.01,17.82,17.61,17.42,17.03,N/A,N/A +2012,11,18,6,30,102540,101340,100160,53.36,0,6.91,7.38,7.48,7.53,7.55,7.57,7.57,7.57,7.5600000000000005,77.45,77.63,77.74,77.84,77.92,78.01,78.09,78.16,78.32000000000001,18.85,18.43,18.240000000000002,18.04,17.830000000000002,17.64,17.44,17.25,16.86,N/A,N/A +2012,11,18,7,30,102560,101350,100180,55.550000000000004,0,7.04,7.53,7.640000000000001,7.68,7.72,7.73,7.74,7.74,7.73,82.15,82.37,82.48,82.59,82.68,82.77,82.86,82.94,83.10000000000001,18.650000000000002,18.22,18.02,17.82,17.62,17.43,17.22,17.03,16.64,N/A,N/A +2012,11,18,8,30,102540,101330,100160,57.58,0,6.61,7.0600000000000005,7.15,7.2,7.22,7.24,7.25,7.25,7.25,84.64,84.85000000000001,84.99,85.12,85.25,85.37,85.49,85.60000000000001,85.82000000000001,18.51,18.080000000000002,17.88,17.67,17.47,17.28,17.080000000000002,16.89,16.490000000000002,N/A,N/A +2012,11,18,9,30,102530,101320,100150,58.910000000000004,0,6.18,6.58,6.66,6.7,6.72,6.74,6.74,6.74,6.74,86.4,86.55,86.65,86.75,86.84,86.92,87.01,87.09,87.26,18.43,18,17.81,17.6,17.400000000000002,17.21,17.01,16.82,16.42,N/A,N/A +2012,11,18,10,30,102540,101330,100160,59.050000000000004,0,6.0600000000000005,6.44,6.5200000000000005,6.55,6.5600000000000005,6.58,6.58,6.57,6.5600000000000005,90.21000000000001,90.35000000000001,90.43,90.52,90.60000000000001,90.68,90.77,90.85000000000001,91.03,18.47,18.04,17.84,17.64,17.43,17.240000000000002,17.04,16.85,16.45,N/A,N/A +2012,11,18,11,30,102530,101330,100160,60.15,0,6.19,6.58,6.66,6.7,6.72,6.74,6.74,6.75,6.74,89.24,89.45,89.57000000000001,89.7,89.8,89.9,90,90.10000000000001,90.3,18.41,17.98,17.78,17.580000000000002,17.38,17.19,16.98,16.79,16.4,N/A,N/A +2012,11,18,12,30,102540,101330,100160,61.34,0,5.86,6.23,6.3100000000000005,6.3500000000000005,6.38,6.4,6.41,6.41,6.42,90.71000000000001,90.78,90.85000000000001,90.92,91,91.07000000000001,91.15,91.22,91.39,18.400000000000002,17.97,17.77,17.57,17.37,17.18,16.97,16.78,16.39,N/A,N/A +2012,11,18,13,30,102540,101330,100160,59.730000000000004,0,5.14,5.44,5.51,5.54,5.5600000000000005,5.58,5.58,5.59,5.6000000000000005,101.84,101.01,100.55,100.15,99.78,99.45,99.12,98.81,98.24000000000001,18.47,18.05,17.85,17.650000000000002,17.45,17.26,17.06,16.87,16.47,N/A,N/A +2012,11,18,14,30,102560,101360,100180,61.730000000000004,0,5.09,5.4,5.48,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,5.62,94.82000000000001,94.9,94.88,94.83,94.78,94.74,94.71000000000001,94.67,94.63,18.5,18.09,17.900000000000002,17.7,17.490000000000002,17.3,17.1,16.91,16.51,N/A,N/A +2012,11,18,15,30,102570,101360,100190,64.01,0,5.07,5.32,5.36,5.36,5.36,5.36,5.3500000000000005,5.34,5.32,91.18,91.73,92.01,92.24,92.46000000000001,92.66,92.89,93.10000000000001,93.54,18.45,18.04,17.84,17.64,17.45,17.26,17.06,16.87,16.48,N/A,N/A +2012,11,18,16,30,102550,101350,100180,62.95,0,4.3500000000000005,4.61,4.67,4.7,4.73,4.75,4.76,4.78,4.8,98.59,97.55,96.99000000000001,96.51,96.09,95.73,95.39,95.08,94.52,18.59,18.18,17.990000000000002,17.79,17.59,17.400000000000002,17.19,17,16.61,N/A,N/A +2012,11,18,17,30,102540,101340,100170,66.34,0,4.89,5.14,5.18,5.19,5.19,5.19,5.18,5.17,5.14,85.45,86.04,86.44,86.8,87.14,87.44,87.74,88.02,88.59,18.5,18.09,17.89,17.69,17.490000000000002,17.3,17.09,16.9,16.51,N/A,N/A +2012,11,18,18,30,102540,101330,100160,64.99,0,4.62,4.88,4.93,4.96,4.97,4.99,4.99,5,5,90.44,90.15,90.03,89.94,89.87,89.82000000000001,89.77,89.72,89.64,18.54,18.14,17.94,17.740000000000002,17.53,17.35,17.14,16.95,16.56,N/A,N/A +2012,11,18,19,30,102520,101310,100140,63.86,0,4.68,4.93,4.97,4.98,4.99,4.99,4.98,4.98,4.96,82.43,82.81,83.02,83.21000000000001,83.39,83.55,83.73,83.89,84.25,18.53,18.12,17.93,17.73,17.53,17.34,17.13,16.95,16.55,N/A,N/A +2012,11,18,20,30,102500,101290,100120,64.63,0,4.86,5.11,5.14,5.15,5.15,5.14,5.12,5.11,5.07,84.44,84.83,85.05,85.25,85.45,85.63,85.82000000000001,86,86.37,18.490000000000002,18.080000000000002,17.89,17.68,17.490000000000002,17.3,17.09,16.91,16.51,N/A,N/A +2012,11,18,21,30,102470,101270,100100,63.4,0,4.91,5.15,5.19,5.19,5.19,5.18,5.16,5.14,5.1000000000000005,84.29,84.61,84.77,84.93,85.08,85.21000000000001,85.37,85.51,85.83,18.41,18,17.8,17.6,17.400000000000002,17.21,17.01,16.82,16.43,N/A,N/A +2012,11,18,22,30,102460,101260,100090,61.550000000000004,0,5.17,5.44,5.48,5.49,5.49,5.48,5.47,5.45,5.4,91.92,92.02,92.06,92.09,92.12,92.15,92.18,92.21000000000001,92.27,18.45,18.03,17.84,17.64,17.44,17.26,17.06,16.87,16.48,N/A,N/A +2012,11,18,23,30,102450,101250,100080,55.22,0,5.0600000000000005,5.33,5.37,5.39,5.39,5.39,5.38,5.37,5.34,97.96000000000001,97.89,97.83,97.75,97.69,97.62,97.53,97.45,97.23,18.650000000000002,18.25,18.06,17.86,17.67,17.48,17.28,17.1,16.72,N/A,N/A +2012,11,19,0,30,102450,101240,100070,52.42,0,5.45,5.78,5.8500000000000005,5.88,5.9,5.91,5.92,5.92,5.92,95.78,95.56,95.44,95.31,95.18,95.06,94.91,94.77,94.45,18.78,18.38,18.19,17.990000000000002,17.79,17.61,17.41,17.22,16.830000000000002,N/A,N/A +2012,11,19,1,30,102450,101240,100070,49.32,0,6.07,6.48,6.57,6.61,6.640000000000001,6.67,6.68,6.69,6.7,94.88,94.74,94.64,94.53,94.43,94.34,94.23,94.12,93.87,18.98,18.580000000000002,18.39,18.2,18,17.81,17.61,17.42,17.03,N/A,N/A +2012,11,19,2,30,102450,101250,100080,51.660000000000004,0,5.91,6.3100000000000005,6.390000000000001,6.43,6.45,6.47,6.48,6.49,6.49,92,91.94,91.88,91.82000000000001,91.76,91.71000000000001,91.65,91.59,91.47,19.03,18.63,18.45,18.25,18.05,17.86,17.66,17.47,17.080000000000002,N/A,N/A +2012,11,19,3,30,102460,101250,100080,52.94,0,6.08,6.49,6.58,6.62,6.65,6.67,6.68,6.69,6.69,93.58,93.65,93.68,93.71000000000001,93.73,93.75,93.78,93.8,93.83,19.06,18.66,18.47,18.27,18.07,17.88,17.68,17.490000000000002,17.1,N/A,N/A +2012,11,19,4,30,102440,101230,100070,54.29,0,5.46,5.83,5.91,5.95,5.98,6,6.0200000000000005,6.03,6.05,96.01,96.26,96.4,96.52,96.63,96.72,96.82000000000001,96.91,97.08,19.06,18.68,18.490000000000002,18.28,18.09,17.900000000000002,17.69,17.51,17.11,N/A,N/A +2012,11,19,5,30,102430,101230,100060,56.2,0,5.25,5.59,5.67,5.72,5.75,5.78,5.8,5.8100000000000005,5.83,106.25,106.01,105.84,105.68,105.54,105.42,105.3,105.19,104.97,19.17,18.79,18.6,18.400000000000002,18.2,18.01,17.8,17.62,17.22,N/A,N/A +2012,11,19,6,30,102440,101230,100070,52.88,0,4.8500000000000005,5.14,5.2,5.22,5.24,5.25,5.26,5.26,5.26,106.47,106.48,106.53,106.59,106.64,106.67,106.71000000000001,106.75,106.81,19.25,18.87,18.69,18.490000000000002,18.29,18.1,17.900000000000002,17.71,17.32,N/A,N/A +2012,11,19,7,30,102450,101250,100080,56.22,0,4.22,4.47,4.53,4.5600000000000005,4.59,4.61,4.63,4.64,4.67,110.37,110.39,110.45,110.54,110.61,110.69,110.77,110.84,111.02,19.17,18.8,18.62,18.42,18.22,18.03,17.830000000000002,17.64,17.25,N/A,N/A +2012,11,19,8,30,102440,101230,100070,63.4,0,4.25,4.5200000000000005,4.58,4.62,4.65,4.67,4.69,4.7,4.72,113.85000000000001,113.96000000000001,114.03,114.09,114.14,114.19,114.23,114.27,114.36,19.14,18.76,18.580000000000002,18.38,18.18,17.990000000000002,17.79,17.6,17.2,N/A,N/A +2012,11,19,9,30,102430,101230,100070,63.53,0,4.15,4.39,4.45,4.48,4.5,4.51,4.5200000000000005,4.5200000000000005,4.53,110.11,110.4,110.52,110.60000000000001,110.67,110.73,110.77,110.8,110.86,19.22,18.85,18.66,18.46,18.26,18.07,17.87,17.68,17.29,N/A,N/A +2012,11,19,10,30,102420,101210,100050,59.46,0,4.04,4.25,4.28,4.3,4.32,4.32,4.32,4.33,4.33,112.99000000000001,113.16,113.3,113.43,113.55,113.66,113.78,113.9,114.12,19.29,18.93,18.740000000000002,18.54,18.34,18.16,17.95,17.77,17.38,N/A,N/A +2012,11,19,11,30,102420,101220,100060,62.26,0,3.5500000000000003,3.74,3.79,3.81,3.83,3.85,3.86,3.87,3.88,111.17,111.41,111.56,111.72,111.86,111.98,112.12,112.26,112.53,19.31,18.95,18.77,18.57,18.37,18.18,17.98,17.8,17.400000000000002,N/A,N/A +2012,11,19,12,30,102420,101220,100050,68.56,0,3.5100000000000002,3.68,3.71,3.73,3.74,3.74,3.74,3.74,3.74,111.74000000000001,112.10000000000001,112.3,112.48,112.63,112.77,112.92,113.04,113.3,19.22,18.86,18.67,18.47,18.27,18.09,17.88,17.7,17.31,N/A,N/A +2012,11,19,13,30,102420,101220,100050,72.36,0,3.95,4.15,4.19,4.21,4.22,4.22,4.22,4.22,4.22,93.39,94.27,94.83,95.36,95.86,96.31,96.76,97.18,98.03,19.2,18.830000000000002,18.650000000000002,18.44,18.25,18.06,17.86,17.67,17.28,N/A,N/A +2012,11,19,14,30,102450,101250,100080,66.86,0,3.98,4.2,4.25,4.2700000000000005,4.29,4.3,4.3100000000000005,4.3100000000000005,4.32,117.52,117.04,116.8,116.58,116.4,116.24000000000001,116.09,115.96000000000001,115.68,19.38,19.02,18.84,18.64,18.44,18.25,18.05,17.86,17.47,N/A,N/A +2012,11,19,15,30,102440,101240,100070,72.56,0,3.75,3.94,3.97,3.99,3.99,3.99,3.99,3.98,3.96,102.62,102.96000000000001,103.25,103.53,103.79,104.03,104.29,104.51,105,19.25,18.88,18.69,18.5,18.3,18.11,17.91,17.72,17.330000000000002,N/A,N/A +2012,11,19,16,30,102440,101240,100070,75.72,0,3.74,3.9,3.92,3.92,3.91,3.9,3.88,3.87,3.83,98.83,99.09,99.24000000000001,99.4,99.54,99.67,99.8,99.92,100.19,19.14,18.77,18.59,18.38,18.19,18,17.79,17.61,17.22,N/A,N/A +2012,11,19,17,30,102430,101230,100070,75.86,0,3.3200000000000003,3.48,3.52,3.54,3.56,3.56,3.5700000000000003,3.58,3.59,87.54,88.09,88.42,88.7,88.95,89.17,89.38,89.57000000000001,89.98,19.12,18.75,18.56,18.36,18.16,17.97,17.77,17.580000000000002,17.19,N/A,N/A +2012,11,19,18,30,102420,101220,100050,76.16,0,3.23,3.38,3.41,3.42,3.43,3.44,3.44,3.44,3.44,83.83,83.78,83.82000000000001,83.83,83.83,83.81,83.77,83.72,83.63,19.12,18.75,18.57,18.36,18.17,17.98,17.78,17.59,17.2,N/A,N/A +2012,11,19,19,30,102390,101190,100030,76,0,2.8000000000000003,2.91,2.93,2.93,2.93,2.92,2.92,2.91,2.89,83.58,83.45,83.39,83.38,83.39,83.41,83.44,83.48,83.67,19.13,18.76,18.580000000000002,18.38,18.18,18,17.79,17.61,17.22,N/A,N/A +2012,11,19,20,30,102340,101150,99980,78.15,0,3.31,3.48,3.5100000000000002,3.52,3.5300000000000002,3.5300000000000002,3.5300000000000002,3.5300000000000002,3.5300000000000002,92.84,92.97,93.08,93.19,93.3,93.4,93.5,93.59,93.79,19.17,18.79,18.61,18.41,18.21,18.02,17.82,17.63,17.240000000000002,N/A,N/A +2012,11,19,21,30,102330,101130,99960,80.89,0,3.66,3.8200000000000003,3.84,3.83,3.8200000000000003,3.81,3.79,3.7800000000000002,3.73,97.52,97.75,97.91,98.08,98.25,98.41,98.59,98.77,99.18,19.07,18.7,18.51,18.31,18.11,17.92,17.72,17.54,17.150000000000002,N/A,N/A +2012,11,19,22,30,102290,101100,99930,79.84,0,3.42,3.59,3.62,3.63,3.64,3.64,3.64,3.63,3.62,103.43,103.79,103.99000000000001,104.21000000000001,104.44,104.65,104.89,105.11,105.66,19.13,18.77,18.580000000000002,18.39,18.19,18,17.8,17.62,17.23,N/A,N/A +2012,11,19,23,30,102270,101070,99910,77.08,0,3.56,3.72,3.75,3.7600000000000002,3.7600000000000002,3.75,3.74,3.73,3.7,119.26,119.38,119.49000000000001,119.58,119.68,119.78,119.89,119.99000000000001,120.22,19.36,19,18.82,18.62,18.43,18.240000000000002,18.04,17.85,17.47,N/A,N/A +2012,11,20,0,30,102280,101090,99930,79.16,0,3.15,3.3000000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,3.31,3.29,120.97,121.18,121.34,121.48,121.62,121.75,121.88,122,122.27,19.39,19.03,18.85,18.650000000000002,18.46,18.27,18.07,17.89,17.5,N/A,N/A +2012,11,20,1,30,102270,101070,99910,79.79,0,2.66,2.7600000000000002,2.7800000000000002,2.7800000000000002,2.7800000000000002,2.77,2.7600000000000002,2.7600000000000002,2.74,119.21000000000001,119.53,119.78,120,120.22,120.43,120.65,120.85000000000001,121.3,19.39,19.04,18.86,18.66,18.47,18.28,18.080000000000002,17.89,17.51,N/A,N/A +2012,11,20,2,30,102280,101080,99920,79.89,0,2.36,2.44,2.44,2.44,2.43,2.42,2.41,2.39,2.36,119.4,119.64,119.82000000000001,119.99000000000001,120.15,120.29,120.45,120.59,120.87,19.400000000000002,19.05,18.87,18.68,18.48,18.29,18.1,17.91,17.53,N/A,N/A +2012,11,20,3,30,102260,101060,99900,78.52,0,1.95,2.0100000000000002,2.02,2.02,2.0100000000000002,2.0100000000000002,2,1.99,1.97,109.97,110.61,110.96000000000001,111.3,111.62,111.94,112.26,112.56,113.24000000000001,19.41,19.07,18.900000000000002,18.7,18.5,18.32,18.12,17.93,17.55,N/A,N/A +2012,11,20,4,30,102240,101050,99890,76.77,0,1.77,1.83,1.83,1.82,1.82,1.81,1.8,1.79,1.77,111.9,112,112.07000000000001,112.14,112.19,112.23,112.27,112.3,112.36,19.45,19.12,18.94,18.740000000000002,18.55,18.36,18.16,17.98,17.59,N/A,N/A +2012,11,20,5,30,102240,101040,99880,75.4,0,1.74,1.79,1.79,1.79,1.79,1.78,1.77,1.77,1.75,104.37,104.82000000000001,105.06,105.3,105.53,105.74000000000001,105.96000000000001,106.16,106.63,19.47,19.13,18.95,18.75,18.56,18.37,18.17,17.990000000000002,17.6,N/A,N/A +2012,11,20,6,30,102240,101050,99890,77.19,0,1.53,1.57,1.57,1.56,1.55,1.54,1.54,1.53,1.5,79.82000000000001,79.94,80.05,80.15,80.24,80.33,80.42,80.5,80.7,19.42,19.09,18.91,18.71,18.52,18.330000000000002,18.13,17.95,17.56,N/A,N/A +2012,11,20,7,30,102240,101040,99880,75.88,0,1.21,1.22,1.21,1.2,1.19,1.17,1.16,1.1500000000000001,1.12,86.9,87.10000000000001,87.31,87.54,87.74,87.93,88.16,88.38,88.89,19.43,19.1,18.92,18.72,18.53,18.34,18.14,17.96,17.57,N/A,N/A +2012,11,20,8,30,102230,101030,99870,75.06,0,1.78,1.82,1.81,1.79,1.78,1.76,1.74,1.72,1.68,88.18,88.49,88.68,88.88,89.07000000000001,89.24,89.43,89.61,90.02,19.41,19.080000000000002,18.900000000000002,18.7,18.5,18.32,18.12,17.94,17.55,N/A,N/A +2012,11,20,9,30,102240,101040,99880,74.45,0,1.35,1.36,1.35,1.32,1.3,1.28,1.26,1.24,1.18,76.29,76.99,77.46000000000001,77.93,78.39,78.83,79.31,79.76,80.83,19.400000000000002,19.07,18.89,18.69,18.5,18.31,18.11,17.93,17.54,N/A,N/A +2012,11,20,10,30,102240,101040,99880,73.79,0,1.31,1.32,1.31,1.29,1.28,1.26,1.24,1.22,1.17,77.87,77.7,77.66,77.62,77.58,77.54,77.52,77.49,77.43,19.400000000000002,19.07,18.89,18.69,18.5,18.32,18.12,17.94,17.55,N/A,N/A +2012,11,20,11,30,102260,101060,99900,75.23,0,1.23,1.25,1.24,1.22,1.2,1.19,1.17,1.1500000000000001,1.1,72.5,72.92,73.14,73.36,73.56,73.75,73.93,74.09,74.37,19.39,19.06,18.88,18.68,18.490000000000002,18.31,18.11,17.92,17.54,N/A,N/A +2012,11,20,12,30,102260,101070,99900,74.74,0,2.06,2.12,2.12,2.11,2.09,2.08,2.06,2.04,2,62.52,62.49,62.54,62.58,62.61,62.620000000000005,62.61,62.59,62.5,19.44,19.1,18.93,18.73,18.53,18.35,18.150000000000002,17.96,17.580000000000002,N/A,N/A +2012,11,20,13,30,102290,101090,99930,75.41,0,2.11,2.17,2.17,2.15,2.14,2.12,2.11,2.09,2.04,60.17,60.18,60.17,60.15,60.11,60.08,60.01,59.94,59.64,19.43,19.09,18.91,18.72,18.52,18.34,18.14,17.96,17.57,N/A,N/A +2012,11,20,14,30,102280,101090,99920,76.09,0,1.49,1.51,1.5,1.48,1.46,1.44,1.42,1.3900000000000001,1.32,84.66,85.4,85.8,86.23,86.65,87.05,87.5,87.91,88.82000000000001,19.39,19.06,18.89,18.69,18.5,18.31,18.11,17.93,17.56,N/A,N/A +2012,11,20,15,30,102310,101110,99950,77.97,0,3.06,3.16,3.17,3.16,3.14,3.12,3.1,3.0700000000000003,3.02,52.230000000000004,52.26,52.24,52.230000000000004,52.19,52.160000000000004,52.1,52.04,51.82,19.39,19.04,18.86,18.67,18.47,18.28,18.09,17.91,17.52,N/A,N/A +2012,11,20,16,30,102280,101080,99920,85.92,0,2.62,2.68,2.67,2.64,2.61,2.58,2.5500000000000003,2.5100000000000002,2.42,62.53,62.7,62.82,62.93,63.02,63.11,63.18,63.24,63.26,19.12,18.77,18.59,18.39,18.2,18.02,17.82,17.64,17.26,N/A,N/A +2012,11,20,17,30,102250,101060,99900,87.05,0,2.27,2.31,2.29,2.25,2.22,2.18,2.12,2.07,1.85,74.21000000000001,74.57000000000001,74.72,74.88,75.02,75.14,75.25,75.34,74.28,19,18.64,18.46,18.26,18.07,17.89,17.7,17.52,17.17,N/A,N/A +2012,11,20,18,30,102230,101030,99870,85.43,0,1.48,1.48,1.45,1.42,1.3800000000000001,1.34,1.29,1.25,1.1,83.7,83.60000000000001,83.73,83.83,83.94,84.05,84.12,84.17,84.11,19.13,18.78,18.6,18.400000000000002,18.21,18.03,17.830000000000002,17.650000000000002,17.28,N/A,N/A +2012,11,20,19,30,102240,101040,99880,84.46000000000001,0,2.5100000000000002,2.56,2.5500000000000003,2.5100000000000002,2.48,2.44,2.4,2.35,2.17,76.17,76.39,76.38,76.37,76.36,76.34,76.23,76.12,74.8,19.25,18.88,18.7,18.5,18.31,18.13,17.93,17.75,17.39,N/A,N/A +2012,11,20,20,30,102200,101010,99850,82.09,0,1.77,1.76,1.72,1.6600000000000001,1.57,1.48,1.19,0.97,1.4000000000000001,107.44,106.82000000000001,106.26,105.5,104.15,102.54,93.23,83.31,348.28000000000003,19.41,19.07,18.89,18.7,18.52,18.35,18.2,18.080000000000002,18.18,N/A,N/A +2012,11,20,21,30,102190,100990,99840,80.76,0,0.68,0.63,0.58,0.5,0.27,0.11,0.36,1.7,2.2,150.28,151.6,152.48,153.96,186.02,209.42000000000002,231.21,325.22,326.69,19.67,19.35,19.18,18.990000000000002,18.830000000000002,18.68,18.77,18.900000000000002,19.04,N/A,N/A +2012,11,20,22,30,102170,100980,99820,81.34,0,1.3,1.29,1.25,1.18,1.01,0.8200000000000001,1.06,1.43,2.12,184.89000000000001,186.16,187.57,189.8,199.99,212.05,254.69,311.04,318.65000000000003,19.84,19.53,19.36,19.18,19.04,18.94,19.09,19.27,19.48,N/A,N/A +2012,11,20,23,30,102180,100980,99830,80.52,0,1.27,1.25,1.21,1.1300000000000001,1.09,1.07,1.28,1.6,2.37,203.59,206.08,209.23000000000002,215.34,240.75,278.5,296.98,311.89,323.71,20,19.7,19.55,19.400000000000002,19.38,19.46,19.490000000000002,19.51,19.96,N/A,N/A +2012,11,21,0,30,102190,101000,99840,80.75,0,1.61,1.61,1.54,1.41,0.98,0.6,0.81,1.18,1.79,177.5,178.26,179.95000000000002,183.16,242.09,298.22,313.1,325.29,333.29,20.16,19.86,19.72,19.580000000000002,19.650000000000002,19.82,20.05,20.27,20.400000000000002,N/A,N/A +2012,11,21,1,30,102200,101010,99860,82.47,0,1.71,1.7,1.61,1.44,1.08,0.74,0.91,1.23,1.98,176.45000000000002,177.08,178.05,179.93,231.36,289.68,309.63,326.5,337.77,20.16,19.86,19.71,19.55,19.64,19.86,20.09,20.29,20.55,N/A,N/A +2012,11,21,2,30,102210,101020,99860,81.35000000000001,0,1.73,1.75,1.73,1.71,1.3900000000000001,1.02,1.11,1.3,2.0300000000000002,209.49,209.92000000000002,210.22,210.44,233.19,259.68,285.81,313.15000000000003,333.21,20.330000000000002,20.03,19.84,19.6,19.57,19.650000000000002,19.92,20.21,20.71,N/A,N/A +2012,11,21,3,30,102210,101020,99870,80.87,0,2.18,2.24,2.22,2.19,2.14,2.09,1.8,1.54,1.07,199.92000000000002,201.04,201.86,202.9,204.35,205.96,215.1,224.44,265.75,20.47,20.17,20.01,19.82,19.64,19.46,19.330000000000002,19.23,19.31,N/A,N/A +2012,11,21,4,30,102220,101030,99880,83.18,0,2.24,2.33,2.33,2.31,2.29,2.27,2.25,2.22,1.77,200.23000000000002,201.62,202.56,203.65,205.01,206.48000000000002,209.88,213.93,248.51000000000002,20.38,20.080000000000002,19.91,19.72,19.53,19.35,19.18,19.02,19.01,N/A,N/A +2012,11,21,5,30,102220,101030,99880,83.65,0,2.3000000000000003,2.41,2.42,2.43,2.43,2.43,2.42,2.42,2.34,221.03,222.12,222.84,223.69,224.77,225.96,228.95000000000002,232.20000000000002,251.86,20.44,20.14,19.97,19.78,19.59,19.42,19.25,19.1,18.990000000000002,N/A,N/A +2012,11,21,6,30,102240,101050,99900,82.27,0,2.04,2.14,2.16,2.18,2.19,2.2,2.22,2.23,2.31,242.79,243.51,243.96,244.46,245.01,245.57,246.38,247.19,252.25,20.64,20.34,20.17,19.98,19.79,19.61,19.41,19.23,18.900000000000002,N/A,N/A +2012,11,21,7,30,102260,101070,99920,83.56,0,2.2,2.33,2.36,2.38,2.4,2.42,2.44,2.46,2.5500000000000003,268.53000000000003,268.65,268.7,268.77,268.88,269.01,269.23,269.46,271,20.73,20.43,20.26,20.06,19.87,19.69,19.490000000000002,19.31,18.94,N/A,N/A +2012,11,21,8,30,102270,101080,99920,85.75,0,2.65,2.82,2.86,2.88,2.9,2.91,2.93,2.94,2.99,293.47,293.18,292.97,292.77,292.56,292.36,292.16,291.99,291.51,20.78,20.48,20.31,20.11,19.92,19.740000000000002,19.54,19.36,18.97,N/A,N/A +2012,11,21,9,30,102280,101090,99940,92.09,0,2.81,2.86,2.83,2.7600000000000002,2.68,2.59,2.56,2.5500000000000003,2.81,316.48,315.56,314.65000000000003,313.25,306.8,297.83,290.72,284.75,283.52,20.13,19.81,19.650000000000002,19.47,19.35,19.26,19.21,19.18,19.080000000000002,N/A,N/A +2012,11,21,10,30,102300,101110,99950,88.71000000000001,0,3.58,3.69,3.67,3.63,3.59,3.5300000000000002,3.49,3.46,3.58,322.27,322.36,322.41,322.46,322.41,322.31,319.87,317.23,313.38,19.98,19.650000000000002,19.48,19.3,19.12,18.97,18.95,18.97,19.17,N/A,N/A +2012,11,21,11,30,102320,101130,99970,87.28,0,4.16,4.32,4.3100000000000005,4.2700000000000005,4.22,4.17,4.11,4.07,4.3100000000000005,333.03000000000003,332.63,332.35,332.01,331.58,331.11,330.06,328.94,325.15000000000003,19.75,19.400000000000002,19.23,19.04,18.86,18.68,18.51,18.38,18.72,N/A,N/A +2012,11,21,12,30,102360,101160,100000,90.25,0,4.23,4.41,4.42,4.41,4.41,4.41,4.5,4.61,4.82,337.82,337.87,337.89,337.93,338.01,338.1,338.27,338.40000000000003,337.14,19.400000000000002,19.04,18.86,18.68,18.5,18.34,18.23,18.17,18.63,N/A,N/A +2012,11,21,13,30,102370,101170,100010,91.38,0,4.73,4.94,4.96,4.94,4.93,4.91,4.95,5.0200000000000005,5.58,349.64,349.63,349.59000000000003,349.54,349.45,349.36,349.06,348.66,346.23,19.31,18.94,18.76,18.57,18.39,18.22,18.07,17.95,18.38,N/A,N/A +2012,11,21,14,30,102400,101190,100030,99.34,0,4.37,4.43,4.38,4.3100000000000005,4.46,4.72,5.11,5.49,5.84,8.3,6.93,5.41,3.08,357.5,350.31,348.27,347.33,350.27,17.96,17.59,17.42,17.26,17.44,17.77,18.19,18.580000000000002,19.1,N/A,N/A +2012,11,21,15,30,102410,101210,100050,99.35000000000001,0,4.04,4.13,4.11,4.09,4.46,5.03,5.42,5.74,5.89,8.45,8.06,7.65,7.0600000000000005,3.14,357.6,354.89,353.2,356.08,17.82,17.44,17.240000000000002,17.01,17.23,17.63,18.26,18.8,19.03,N/A,N/A +2012,11,21,16,30,102400,101190,100030,99.35000000000001,0,3.73,3.83,3.8200000000000003,3.81,4.07,4.46,4.97,5.44,5.59,0.59,0.35000000000000003,0.21,0.06,359.79,359.47,1.01,2.48,1.75,17.830000000000002,17.45,17.27,17.07,17.06,17.13,18.26,19.3,19.43,N/A,N/A +2012,11,21,17,30,102370,101160,100010,99.33,0,3.16,3.22,3.21,3.19,3.6,4.26,4.7,5.0600000000000005,5.15,359.04,358.73,358.47,358.14,357.81,357.44,358.96,0.6900000000000001,4.14,18.02,17.67,17.48,17.25,17.580000000000002,18.12,18.830000000000002,19.42,19.62,N/A,N/A +2012,11,21,18,30,102340,101140,99980,99.41,0,2.58,2.63,2.63,2.65,3.23,4.22,4.5,4.63,4.61,356.6,356.16,355.76,355.2,355.41,356.07,359.06,2.17,8.790000000000001,18.18,17.830000000000002,17.63,17.38,18.150000000000002,19.31,19.66,19.85,19.92,N/A,N/A +2012,11,21,19,30,102310,101110,99960,93.75,0,1.29,1.37,1.6300000000000001,2.39,2.86,3.09,3.34,3.58,3.95,341.68,343.76,346.37,351.98,358.55,4.94,9.49,13.4,17.88,19.23,18.92,18.92,19.1,19.51,20.01,20.2,20.31,20.240000000000002,N/A,N/A +2012,11,21,20,30,102260,101070,99920,90.58,0,0.6900000000000001,0.67,0.71,0.89,1.11,1.3900000000000001,1.6400000000000001,1.9000000000000001,2.31,264.31,269.11,288.19,339.44,7.44,21.29,26.330000000000002,29.43,29.93,20.04,19.740000000000002,19.79,20.11,20.44,20.76,20.85,20.88,20.79,N/A,N/A +2012,11,21,21,30,102230,101040,99890,88.22,0,1.44,1.41,1.25,0.96,0.68,0.47000000000000003,0.44,0.44,0.72,236.54,238.22,243.18,252.48000000000002,266.95,279.75,306.09000000000003,332.7,357.71,20.48,20.19,20.2,20.42,20.71,21.02,21.1,21.13,21.04,N/A,N/A +2012,11,21,22,30,102210,101020,99870,85.77,0,1.81,1.78,1.6500000000000001,1.45,1.27,1.12,1.05,1.01,0.98,219.70000000000002,221.77,226.27,234.65,242.33,249.03,256.93,264.14,280.5,20.79,20.57,20.66,21.01,21.240000000000002,21.39,21.37,21.32,21.14,N/A,N/A +2012,11,21,23,30,102200,101010,99870,87.5,0,2.35,2.33,2.22,2.04,1.81,1.6,1.47,1.37,1.3,204.24,205.35,208.91,216.12,222.78,228.45000000000002,235.64000000000001,242.11,256.47,20.75,20.490000000000002,20.5,20.71,20.96,21.22,21.240000000000002,21.22,21.03,N/A,N/A +2012,11,22,0,30,102210,101020,99870,90.28,0,2.79,2.73,2.5500000000000003,2.27,1.94,1.62,1.36,1.1500000000000001,0.97,186.94,187.34,188.34,190.26,193.59,197.07,204.77,211.73000000000002,236.94,20.5,20.22,20.21,20.37,20.72,21.16,21.27,21.31,21.11,N/A,N/A +2012,11,22,1,30,102210,101020,99870,99.49000000000001,0.4,3.2800000000000002,3.38,3.23,2.93,2.68,2.48,2.24,2.0300000000000002,1.6400000000000001,181.22,189.14000000000001,190.49,187.78,186.67000000000002,186.3,189.15,192.09,201.63,18.17,19.31,19.990000000000002,20.59,20.96,21.21,21.26,21.28,21.1,N/A,N/A +2012,11,22,2,30,102240,101040,99890,99.44,0,2.8000000000000003,2.77,2.72,2.68,2.59,2.49,2.33,2.18,1.8900000000000001,190.91,191.55,193.16,196.47,198.51,199.84,203.3,206.74,217.77,17.900000000000002,17.43,17.86,19.17,20.04,20.67,20.89,21.01,20.93,N/A,N/A +2012,11,22,3,30,102220,101020,99870,99.43,0.4,2.42,2.43,2.58,2.96,3.02,2.94,2.69,2.47,2.14,202.19,203.24,205.32,209.33,212.3,214.43,216.89000000000001,219.26,229.04,17.93,17.42,17.84,18.95,19.84,20.57,20.78,20.89,20.79,N/A,N/A +2012,11,22,4,30,102220,101020,99870,99.31,0,2.19,2.2800000000000002,2.35,2.48,2.71,3.0100000000000002,2.94,2.81,2.43,221.43,221.47,221.95000000000002,223.01,225.79,229.47,230.83,231.86,237.9,18.12,17.71,17.5,17.28,18.22,19.61,20.22,20.61,20.6,N/A,N/A +2012,11,22,5,30,102210,101010,99860,99.42,0,2.58,2.66,2.7,2.7600000000000002,3.04,3.45,3.2600000000000002,3.0300000000000002,2.57,225.88,226.36,226.86,227.67000000000002,229.84,232.84,234.49,235.92000000000002,242.35,18.3,17.92,17.68,17.35,18.080000000000002,19.27,20.01,20.580000000000002,20.68,N/A,N/A +2012,11,22,6,30,102220,101020,99860,99.34,0,2.0100000000000002,2.08,2.11,2.16,2.37,2.69,2.98,3.23,2.87,223.44,224.05,224.41,224.88,226.52,228.85,232.41,236.02,241.59,18.48,18.150000000000002,17.97,17.740000000000002,17.57,17.42,18.7,19.95,20.29,N/A,N/A +2012,11,22,7,30,102220,101020,99860,99.25,0.4,1.47,1.52,1.54,1.57,1.77,2.09,2.62,3.2,3.4,202.53,202.09,202.03,202.04,207.13,215.44,224.86,234.74,243.48000000000002,18.43,18.11,17.94,17.740000000000002,17.63,17.56,18.14,18.75,19.57,N/A,N/A +2012,11,22,8,30,102220,101020,99860,99.24000000000001,0,0.93,1.02,1.06,1.11,1.18,1.27,1.51,1.83,3.38,222.89000000000001,223.97,224.83,225.91,227.44,229.19,233.03,237.56,250.99,18.48,18.16,18.01,17.85,17.67,17.490000000000002,17.19,17.05,18.64,N/A,N/A +2012,11,22,9,30,102210,101010,99850,99.36,0,1.96,1.8900000000000001,1.8,1.7,1.59,1.49,1.37,1.27,1.1400000000000001,117.76,121.53,124.2,127.37,131.53,135.75,143.34,150.8,176.71,18.42,18.09,17.94,17.81,17.67,17.55,17.400000000000002,17.26,16.93,N/A,N/A +2012,11,22,10,30,102220,101020,99860,94.91,0.7000000000000001,1.97,1.8800000000000001,1.79,1.69,1.58,1.47,1.33,1.21,0.87,156.82,156.15,155.5,154.64000000000001,153.38,152.05,150.14000000000001,148.41,144.38,18.44,18.07,17.89,17.71,17.52,17.35,17.18,17.03,16.77,N/A,N/A +2012,11,22,11,30,102220,101020,99860,95.15,0.4,1.21,1.17,1.1300000000000001,1.09,1.04,0.99,0.93,0.87,0.71,126.42,131.21,134.28,137.32,140.36,143.13,147.29,151.31,169.5,18.17,17.8,17.62,17.43,17.240000000000002,17.080000000000002,16.92,16.78,16.55,N/A,N/A +2012,11,22,12,30,102240,101040,99880,95.93,0.7000000000000001,1.96,1.98,1.96,1.93,1.8900000000000001,1.84,1.76,1.69,1.33,127.76,128.2,128.51,128.87,129.14000000000001,129.34,129.03,128.53,127.64,18.07,17.7,17.53,17.34,17.16,17,16.85,16.72,16.47,N/A,N/A +2012,11,22,13,30,102240,101040,99870,95.51,0.7000000000000001,1.97,1.8900000000000001,1.8,1.71,1.61,1.51,1.4000000000000001,1.32,1.52,120.38,119.39,119.16,119.32000000000001,120.43,121.81,126.91,133.24,164.52,17.8,17.43,17.240000000000002,17.06,16.87,16.69,16.5,16.32,16.35,N/A,N/A +2012,11,22,14,30,102270,101070,99910,96.03,1.1,2.44,2.5,2.49,2.47,2.44,2.42,2.37,2.33,2.58,114.85000000000001,114.43,114.08,113.75,113.37,112.98,112.39,114.04,148.08,18.14,17.76,17.580000000000002,17.39,17.19,17.01,16.79,16.62,16.86,N/A,N/A +2012,11,22,15,30,102280,101080,99910,95.87,0.7000000000000001,2.62,2.71,2.71,2.71,2.7,2.69,2.66,2.64,2.94,107.94,109.25,110.2,111.24000000000001,112.49000000000001,113.74000000000001,115.48,117.99000000000001,141.07,18.29,17.93,17.75,17.56,17.38,17.2,17.01,16.84,16.8,N/A,N/A +2012,11,22,16,30,102270,101070,99910,96.62,0,2.84,2.94,2.93,2.91,2.88,2.85,2.8000000000000003,2.77,2.82,121.59,120.62,119.92,119.17,118.34,117.51,116.43,115.94,125.78,18.48,18.12,17.95,17.77,17.6,17.45,17.31,17.17,16.830000000000002,N/A,N/A +2012,11,22,17,30,102240,101040,99880,96.44,0.4,3.99,4.05,4,3.92,3.84,3.75,3.64,3.54,3.34,124.31,125.28,125.95,126.72,127.72,128.76,130.6,132.6,141.43,18.51,18.13,17.95,17.76,17.56,17.38,17.23,17.09,16.81,N/A,N/A +2012,11,22,18,30,102250,101050,99890,96.33,0.7000000000000001,3.36,3.5300000000000002,3.56,3.5700000000000003,3.59,3.59,3.6,3.62,3.72,124.71000000000001,124.31,124.01,123.7,123.37,123.06,122.69,122.37,125.52,18.97,18.61,18.44,18.25,18.05,17.87,17.71,17.56,17.29,N/A,N/A +2012,11,22,19,30,102240,101040,99880,96.67,0,3.85,3.97,3.96,3.92,3.87,3.8200000000000003,3.74,3.7,4.12,125.12,125.04,124.88000000000001,124.69,124.42,124.14,124,125.18,148.28,18.75,18.36,18.16,17.94,17.75,17.580000000000002,17.31,17.13,18.18,N/A,N/A +2012,11,22,20,30,102200,101000,99850,96.72,0,4.23,4.37,4.3500000000000005,4.3100000000000005,4.2700000000000005,4.23,4.39,4.57,5.01,118.66,118.69,118.64,118.59,118.29,117.88,127.96000000000001,138.82,147.88,18.92,18.56,18.38,18.19,18,17.84,18.05,18.31,18.93,N/A,N/A +2012,11,22,21,30,102170,100980,99830,94.08,0,4.67,4.8500000000000005,4.9,4.98,5.44,6.140000000000001,6.37,6.49,6.55,123.95,124.79,125.96000000000001,128.12,134.6,144.09,147.9,150.24,154.29,19.41,19.09,18.95,18.82,18.98,19.28,19.45,19.57,19.52,N/A,N/A +2012,11,22,22,30,102110,100920,99770,87.41,0,5.94,6.38,6.45,6.48,6.48,6.48,6.45,6.44,6.45,127.03,127.65,128.03,128.45,128.89000000000001,129.34,129.99,130.65,135.47,20.29,19.990000000000002,19.82,19.64,19.46,19.28,19.11,18.95,18.76,N/A,N/A +2012,11,22,23,30,102110,100920,99770,74.42,0,5.84,6.3500000000000005,6.48,6.55,6.59,6.62,6.63,6.65,6.7,139.51,139.93,140.1,140.31,140.53,140.76,141.05,141.34,142.22,20.89,20.64,20.48,20.3,20.12,19.94,19.75,19.580000000000002,19.22,N/A,N/A +2012,11,23,0,30,102120,100930,99780,76.18,0,6.12,6.61,6.69,6.73,6.74,6.75,6.7700000000000005,6.79,7,136.78,137.18,137.47,137.79,138.18,138.59,139.22,139.89000000000001,143.41,20.85,20.59,20.44,20.26,20.080000000000002,19.91,19.73,19.56,19.27,N/A,N/A +2012,11,23,1,30,102130,100950,99790,79.14,0,5.22,5.61,5.68,5.71,5.73,5.74,5.7700000000000005,5.8,6,138.07,138.53,138.93,139.42000000000002,140.04,140.72,142.02,143.36,148.98,20.85,20.61,20.46,20.28,20.1,19.93,19.76,19.61,19.35,N/A,N/A +2012,11,23,2,30,102110,100920,99770,80.68,0,5.63,6.08,6.19,6.3,6.390000000000001,6.47,6.59,6.72,6.99,139.81,140.11,140.5,141.18,142.11,143.18,144.91,146.67000000000002,149.9,20.93,20.71,20.57,20.42,20.27,20.14,20.02,19.92,19.69,N/A,N/A +2012,11,23,3,30,102130,100940,99790,82.19,0,4.2700000000000005,4.86,5.1000000000000005,5.29,5.44,5.58,5.7,5.82,6.04,148.06,149.95000000000002,151.41,153.29,155.28,157.31,159.49,161.55,165.51,20.95,20.75,20.63,20.5,20.38,20.28,20.16,20.04,19.78,N/A,N/A +2012,11,23,4,30,102120,100930,99780,83.36,0,3.58,4.1,4.3500000000000005,4.63,4.88,5.12,5.34,5.55,5.84,156.27,159.53,161.89000000000001,164.67000000000002,167.33,169.96,172.22,174.24,177.18,20.95,20.78,20.7,20.63,20.57,20.52,20.43,20.34,20.05,N/A,N/A +2012,11,23,5,30,102140,100950,99800,83.92,0,3.7,4.17,4.34,4.5,4.63,4.75,4.87,4.97,5.16,158.21,159.18,159.93,160.89000000000001,161.97,163.12,164.64000000000001,166.15,170.24,21.03,20.84,20.71,20.56,20.41,20.26,20.1,19.96,19.69,N/A,N/A +2012,11,23,6,30,102160,100970,99820,83.42,0,3.0500000000000003,3.52,3.75,3.95,4.13,4.28,4.48,4.69,5.09,165.6,169.23,172.04,175.74,179.20000000000002,182.52,185.14000000000001,187.42000000000002,190.51,21.07,20.92,20.830000000000002,20.73,20.62,20.51,20.400000000000002,20.3,20.05,N/A,N/A +2012,11,23,7,30,102190,101000,99850,83.95,0,2.64,3.0500000000000003,3.24,3.46,3.79,4.2,4.46,4.67,5.15,171.13,173.75,176.42000000000002,180.84,186.33,192.8,195.46,196.97,198.33,21.02,20.86,20.76,20.650000000000002,20.59,20.56,20.46,20.36,20.12,N/A,N/A +2012,11,23,8,30,102190,101010,99860,85.32000000000001,0,2.21,2.94,3.33,3.7800000000000002,4.08,4.26,4.45,4.63,4.93,167.94,176.70000000000002,182.99,190.07,194.41,196.78,198.22,199.34,199.64000000000001,21.06,21.1,21.09,21.03,20.94,20.82,20.71,20.6,20.34,N/A,N/A +2012,11,23,9,30,102230,101040,99890,85.83,0,1.6300000000000001,2.24,2.5,2.84,3.11,3.35,3.59,3.81,4.21,191.04,196,199.48000000000002,202.98000000000002,205.20000000000002,206.52,207.27,207.83,208.41,21.17,21.12,21.07,20.990000000000002,20.89,20.78,20.650000000000002,20.53,20.27,N/A,N/A +2012,11,23,10,30,102240,101050,99900,86.43,0,1.6500000000000001,2.31,2.64,2.96,3.18,3.33,3.5100000000000002,3.69,4.01,173.21,181.17000000000002,186.87,192.71,196.35,198.46,200.01,201.32,201.55,21.02,21.03,21,20.91,20.81,20.72,20.66,20.62,20.44,N/A,N/A +2012,11,23,11,30,102260,101080,99930,87.28,0,1.96,2.2,2.34,2.56,2.7600000000000002,2.95,3.12,3.2800000000000002,3.59,139.44,158.98,169.86,177.51,183.02,187.1,190.27,193.03,198.46,20.81,20.82,20.81,20.71,20.61,20.5,20.38,20.26,20.05,N/A,N/A +2012,11,23,12,30,102280,101090,99940,87.16,0,1.86,2.44,2.7,2.9,2.99,3.02,3.1,3.18,3.42,168.42000000000002,174.36,179.61,186.76,191.09,193.54,196.22,198.74,201.96,20.94,20.900000000000002,20.85,20.76,20.63,20.47,20.35,20.25,20.080000000000002,N/A,N/A +2012,11,23,13,30,102300,101120,99970,87.9,0,1.71,2.0300000000000002,2.15,2.22,2.29,2.34,2.47,2.62,3.04,156.22,160.70000000000002,167.20000000000002,179.78,188.26,194.12,199.67000000000002,204.87,209.1,20.85,20.7,20.64,20.61,20.56,20.5,20.490000000000002,20.5,20.42,N/A,N/A +2012,11,23,14,30,102340,101150,100000,87.44,0,1.43,1.57,1.61,1.6400000000000001,1.74,1.9000000000000001,2.11,2.33,2.71,146.17000000000002,159.88,169.31,179.64000000000001,188.05,195.65,200.59,204.74,208.42000000000002,20.85,20.82,20.8,20.76,20.740000000000002,20.73,20.740000000000002,20.740000000000002,20.59,N/A,N/A +2012,11,23,15,30,102360,101170,100020,85.54,0,1.03,1.19,1.29,1.43,1.6,1.79,2,2.22,2.59,157.39000000000001,178.64000000000001,190.59,198.47,204.43,209.18,211.77,213.76,214.22,20.98,21.12,21.17,21.11,21.07,21.03,21,20.98,20.79,N/A,N/A +2012,11,23,16,30,102320,101140,99990,86.7,0,1.6,1.84,1.97,2.1,2.2600000000000002,2.43,2.62,2.81,3.14,175.05,188.87,196.51,201.95000000000002,206.12,209.55,212,214.11,217.99,21.06,21.25,21.330000000000002,21.3,21.26,21.23,21.18,21.14,20.93,N/A,N/A +2012,11,23,17,30,102320,101130,99980,89.36,0,1.36,1.59,1.72,1.87,2.0300000000000002,2.19,2.37,2.54,2.84,177.53,193.89000000000001,203.48000000000002,210.87,216.75,221.69,225.92000000000002,229.79,235.8,21.1,21.27,21.36,21.36,21.32,21.26,21.2,21.14,20.96,N/A,N/A +2012,11,23,18,30,102310,101130,99980,90.19,0,0.77,0.96,1.11,1.32,1.5,1.68,1.85,2,2.2600000000000002,174.33,204.08,220.71,230.48000000000002,237.52,242.53,246.22,249.43,253.62,21.18,21.3,21.37,21.37,21.32,21.25,21.17,21.080000000000002,20.87,N/A,N/A +2012,11,23,19,30,102310,101130,99980,90.92,0,0.89,0.6900000000000001,0.64,0.6900000000000001,0.78,0.89,0.99,1.07,1.21,134.14000000000001,165.82,184.08,206.19,221.05,231.99,239.20000000000002,245.12,251.68,21.36,21.39,21.41,21.37,21.3,21.21,21.1,21,20.81,N/A,N/A +2012,11,23,20,30,102300,101110,99970,93.24,1.1,2.52,2.48,2.45,2.5100000000000002,2.65,2.85,3.0700000000000003,3.29,3.63,51.74,44.58,39.050000000000004,31.810000000000002,25.98,20.86,18.16,16.14,16.09,21.21,21.17,21.19,21.23,21.240000000000002,21.23,21.13,21.01,20.67,N/A,N/A +2012,11,23,21,30,102300,101110,99960,92.13,0,4.22,4.51,4.71,5.11,5.43,5.69,5.89,6.0600000000000005,6.34,28.84,28.92,28.6,27.650000000000002,26.71,25.82,25.01,24.29,23.12,20.92,20.650000000000002,20.53,20.44,20.34,20.26,20.14,20.03,19.76,N/A,N/A +2012,11,23,22,30,102330,101140,99980,86.46000000000001,0,9.09,9.82,9.96,10,10.06,10.11,10.26,10.41,10.32,10.94,11.16,11.31,11.52,11.82,12.15,12.89,13.69,16.830000000000002,20.07,19.740000000000002,19.57,19.39,19.22,19.05,18.92,18.8,18.830000000000002,N/A,N/A +2012,11,23,23,30,102390,101190,100030,92.9,0,8.15,8.72,8.84,8.91,9,9.1,9.41,9.73,10.23,12.370000000000001,12.17,11.99,11.72,11.290000000000001,10.77,9.49,8.11,5.05,19.19,18.82,18.650000000000002,18.47,18.32,18.17,18.09,18.03,18.150000000000002,N/A,N/A +2012,11,24,0,30,102390,101190,100030,91.29,0,9.38,10.21,10.4,10.51,10.59,10.66,10.74,10.83,11.22,22.330000000000002,22.43,22.490000000000002,22.55,22.62,22.69,22.78,22.86,23.2,19.17,18.76,18.580000000000002,18.38,18.19,18.02,17.830000000000002,17.66,17.330000000000002,N/A,N/A +2012,11,24,1,30,102480,101270,100110,89.77,5.5,11.620000000000001,12.69,12.92,13.030000000000001,13.09,13.120000000000001,13.13,13.13,13.11,22.06,22.02,21.96,21.91,21.85,21.8,21.75,21.7,21.61,18.23,17.740000000000002,17.53,17.330000000000002,17.13,16.94,16.740000000000002,16.55,16.18,N/A,N/A +2012,11,24,2,30,102550,101340,100170,89.78,0,11.44,12.38,12.58,12.66,12.69,12.700000000000001,12.67,12.64,12.55,19.27,19.57,19.78,19.98,20.19,20.39,20.61,20.830000000000002,21.34,16.91,16.34,16.12,15.9,15.69,15.5,15.3,15.11,14.73,N/A,N/A +2012,11,24,3,30,102590,101370,100190,77.98,0,11.71,12.68,12.88,12.98,13.01,13.030000000000001,13.01,12.99,12.93,19.13,19.53,19.77,20,20.22,20.42,20.66,20.89,21.42,15.98,15.36,15.120000000000001,14.9,14.69,14.5,14.290000000000001,14.11,13.73,N/A,N/A +2012,11,24,4,30,102590,101370,100190,64.81,0,12.82,13.97,14.24,14.38,14.47,14.530000000000001,14.56,14.58,14.61,27.07,27.36,27.53,27.7,27.86,28.02,28.19,28.35,28.740000000000002,16.15,15.52,15.280000000000001,15.06,14.85,14.66,14.46,14.27,13.9,N/A,N/A +2012,11,24,5,30,102620,101400,100210,68.27,0,11.98,13.05,13.32,13.46,13.55,13.620000000000001,13.66,13.700000000000001,13.74,27.8,28.07,28.25,28.42,28.580000000000002,28.740000000000002,28.900000000000002,29.05,29.400000000000002,15.83,15.200000000000001,14.96,14.74,14.530000000000001,14.33,14.13,13.94,13.56,N/A,N/A +2012,11,24,6,30,102630,101410,100230,69.21000000000001,0,11.72,12.75,13.01,13.15,13.24,13.3,13.35,13.39,13.44,29.07,29.330000000000002,29.5,29.66,29.810000000000002,29.95,30.1,30.240000000000002,30.54,15.68,15.040000000000001,14.8,14.58,14.370000000000001,14.18,13.97,13.780000000000001,13.41,N/A,N/A +2012,11,24,7,30,102660,101440,100250,67.97,0,12.030000000000001,13.08,13.33,13.46,13.530000000000001,13.59,13.61,13.63,13.64,28.89,29.14,29.3,29.45,29.6,29.740000000000002,29.88,30.02,30.32,15.34,14.67,14.42,14.200000000000001,13.98,13.790000000000001,13.58,13.39,13.01,N/A,N/A +2012,11,24,8,30,102690,101460,100270,69.03,0,12.76,13.86,14.11,14.23,14.3,14.34,14.34,14.35,14.32,31.240000000000002,31.55,31.740000000000002,31.92,32.09,32.25,32.42,32.58,32.93,14.450000000000001,13.72,13.46,13.23,13.01,12.81,12.6,12.41,12.02,N/A,N/A +2012,11,24,9,30,102700,101470,100270,67.32000000000001,0,12.870000000000001,13.96,14.21,14.33,14.39,14.43,14.44,14.44,14.4,31.02,31.25,31.41,31.55,31.7,31.830000000000002,31.98,32.12,32.43,13.73,12.96,12.69,12.46,12.24,12.040000000000001,11.83,11.64,11.26,N/A,N/A +2012,11,24,10,30,102720,101490,100290,69.44,0,12.040000000000001,13.01,13.22,13.33,13.38,13.41,13.41,13.41,13.38,30.72,30.990000000000002,31.17,31.330000000000002,31.490000000000002,31.64,31.8,31.95,32.28,13.13,12.36,12.09,11.85,11.63,11.44,11.23,11.040000000000001,10.66,N/A,N/A +2012,11,24,11,30,102720,101490,100290,73.13,0,11.65,12.55,12.74,12.83,12.870000000000001,12.89,12.88,12.88,12.84,32.47,32.82,33.03,33.230000000000004,33.43,33.61,33.82,34.01,34.43,12.75,11.97,11.700000000000001,11.47,11.25,11.06,10.85,10.66,10.290000000000001,N/A,N/A +2012,11,24,12,30,102750,101510,100310,76.79,0,10.78,11.56,11.72,11.790000000000001,11.82,11.83,11.82,11.81,11.76,36.79,37.26,37.550000000000004,37.81,38.07,38.31,38.57,38.83,39.37,12.51,11.74,11.48,11.25,11.03,10.83,10.63,10.44,10.06,N/A,N/A +2012,11,24,13,30,102760,101530,100320,78.23,0,10.200000000000001,10.91,11.05,11.11,11.13,11.15,11.13,11.120000000000001,11.07,38.42,39,39.35,39.68,40.01,40.31,40.63,40.93,41.56,12.42,11.67,11.41,11.18,10.96,10.76,10.55,10.36,9.98,N/A,N/A +2012,11,24,14,30,102780,101540,100330,77.75,0,9.5,10.120000000000001,10.23,10.28,10.290000000000001,10.290000000000001,10.27,10.25,10.200000000000001,37.27,37.88,38.25,38.59,38.94,39.24,39.58,39.89,40.550000000000004,12.22,11.49,11.22,10.99,10.78,10.58,10.370000000000001,10.18,9.8,N/A,N/A +2012,11,24,15,30,102760,101520,100320,78.08,0,8.97,9.52,9.63,9.67,9.68,9.68,9.67,9.65,9.6,36.81,37.38,37.730000000000004,38.06,38.38,38.67,38.99,39.28,39.9,12.18,11.46,11.21,10.98,10.76,10.56,10.36,10.16,9.78,N/A,N/A +2012,11,24,16,30,102730,101490,100290,75.19,0,8,8.45,8.52,8.55,8.55,8.540000000000001,8.51,8.49,8.43,32.61,33.14,33.480000000000004,33.79,34.1,34.38,34.68,34.980000000000004,35.58,12.25,11.56,11.31,11.09,10.870000000000001,10.68,10.47,10.28,9.89,N/A,N/A +2012,11,24,17,30,102670,101430,100230,68.21000000000001,0,7.11,7.48,7.54,7.5600000000000005,7.55,7.54,7.5200000000000005,7.5,7.45,28.310000000000002,28.740000000000002,29.02,29.27,29.53,29.76,30.01,30.25,30.77,12.39,11.73,11.49,11.26,11.05,10.86,10.65,10.46,10.07,N/A,N/A +2012,11,24,18,30,102620,101380,100190,62.85,0,6.42,6.76,6.82,6.8500000000000005,6.8500000000000005,6.86,6.8500000000000005,6.8500000000000005,6.82,25.68,25.87,25.98,26.09,26.2,26.3,26.41,26.51,26.71,12.97,12.35,12.11,11.89,11.67,11.48,11.27,11.08,10.69,N/A,N/A +2012,11,24,19,30,102580,101350,100160,57.800000000000004,0,5.29,5.5600000000000005,5.61,5.64,5.65,5.66,5.66,5.66,5.66,26.28,26.27,26.25,26.240000000000002,26.23,26.22,26.21,26.2,26.19,13.66,13.09,12.86,12.65,12.43,12.25,12.030000000000001,11.84,11.450000000000001,N/A,N/A +2012,11,24,20,30,102520,101290,100100,54.050000000000004,0,4.7,4.93,4.98,5,5.01,5.0200000000000005,5.03,5.03,5.03,23.900000000000002,23.96,23.98,23.990000000000002,24.01,24.03,24.04,24.07,24.1,14.32,13.790000000000001,13.57,13.35,13.14,12.950000000000001,12.74,12.55,12.15,N/A,N/A +2012,11,24,21,30,102470,101250,100060,51.29,0,3.97,4.16,4.2,4.22,4.24,4.25,4.26,4.26,4.28,21.98,22.12,22.21,22.29,22.37,22.43,22.51,22.580000000000002,22.71,14.88,14.38,14.16,13.950000000000001,13.74,13.55,13.34,13.15,12.75,N/A,N/A +2012,11,24,22,30,102430,101210,100030,49.45,0,3.71,3.89,3.93,3.96,3.97,3.98,3.99,4,4.0200000000000005,24.79,24.740000000000002,24.72,24.7,24.68,24.66,24.650000000000002,24.63,24.61,15.38,14.9,14.69,14.48,14.27,14.08,13.870000000000001,13.68,13.280000000000001,N/A,N/A +2012,11,24,23,30,102400,101180,99990,49.19,0,3.65,3.8200000000000003,3.85,3.87,3.88,3.89,3.89,3.89,3.9,29.1,29.04,28.990000000000002,28.94,28.900000000000002,28.87,28.830000000000002,28.8,28.73,15.77,15.3,15.09,14.89,14.67,14.49,14.27,14.08,13.69,N/A,N/A +2012,11,25,0,30,102380,101170,99980,49.33,0,4.33,4.5200000000000005,4.55,4.5600000000000005,4.5600000000000005,4.5600000000000005,4.55,4.54,4.5200000000000005,33.71,33.79,33.83,33.86,33.89,33.93,33.97,33.99,34.05,15.94,15.46,15.25,15.040000000000001,14.83,14.64,14.43,14.24,13.84,N/A,N/A +2012,11,25,1,30,102360,101140,99950,50.730000000000004,0,4.62,4.78,4.78,4.76,4.73,4.71,4.68,4.64,4.58,31.11,32.2,32.86,33.49,34.1,34.65,35.24,35.78,36.93,15.74,15.26,15.05,14.84,14.63,14.450000000000001,14.24,14.05,13.66,N/A,N/A +2012,11,25,2,30,102340,101120,99940,51.32,0,3.95,4.07,4.0600000000000005,4.04,4.0200000000000005,3.99,3.96,3.93,3.86,55.33,55.96,56.31,56.660000000000004,57,57.31,57.660000000000004,57.99,58.7,15.72,15.24,15.030000000000001,14.83,14.620000000000001,14.44,14.23,14.040000000000001,13.65,N/A,N/A +2012,11,25,3,30,102300,101080,99900,55.72,0,3.61,3.7600000000000002,3.7800000000000002,3.79,3.79,3.79,3.79,3.7800000000000002,3.7800000000000002,61.92,63.18,63.870000000000005,64.51,65.11,65.66,66.24,66.78,67.89,15.790000000000001,15.32,15.11,14.91,14.700000000000001,14.51,14.31,14.11,13.72,N/A,N/A +2012,11,25,4,30,102250,101040,99860,59.19,0,3.3200000000000003,3.48,3.5100000000000002,3.5300000000000002,3.5500000000000003,3.56,3.5700000000000003,3.58,3.59,73.58,74.75,75.43,76.06,76.66,77.2,77.76,78.28,79.36,15.89,15.43,15.23,15.02,14.82,14.63,14.42,14.23,13.84,N/A,N/A +2012,11,25,5,30,102200,100990,99810,61.63,0,3.19,3.31,3.33,3.33,3.33,3.3200000000000003,3.3200000000000003,3.31,3.3000000000000003,96.52,97.22,97.60000000000001,97.96000000000001,98.31,98.64,98.97,99.27,99.95,16.17,15.72,15.51,15.31,15.1,14.92,14.71,14.52,14.13,N/A,N/A +2012,11,25,6,30,102180,100970,99790,58.82,0,3.16,3.27,3.2800000000000002,3.2800000000000002,3.27,3.27,3.2600000000000002,3.25,3.23,118.45,119.09,119.5,119.89,120.27,120.62,121,121.36,122.12,16.47,16.03,15.83,15.63,15.43,15.24,15.030000000000001,14.84,14.450000000000001,N/A,N/A +2012,11,25,7,30,102160,100950,99770,60.75,0,3.09,3.18,3.18,3.18,3.16,3.15,3.14,3.13,3.1,130.24,130.93,131.38,131.82,132.24,132.63,133.05,133.45,134.28,16.71,16.28,16.080000000000002,15.88,15.68,15.49,15.290000000000001,15.1,14.71,N/A,N/A +2012,11,25,8,30,102120,100910,99740,62.33,0,2.54,2.65,2.67,2.68,2.69,2.7,2.71,2.71,2.72,145.72,146.01,146.22,146.42000000000002,146.62,146.8,147,147.18,147.56,16.97,16.55,16.36,16.15,15.950000000000001,15.76,15.56,15.370000000000001,14.98,N/A,N/A +2012,11,25,9,30,102090,100880,99710,62.78,0,2.7800000000000002,2.89,2.91,2.92,2.92,2.92,2.92,2.92,2.92,147.11,147.85,148.29,148.70000000000002,149.09,149.45000000000002,149.83,150.18,150.91,17.18,16.77,16.57,16.37,16.17,15.98,15.77,15.58,15.19,N/A,N/A +2012,11,25,10,30,102070,100860,99690,63.690000000000005,0,2.19,2.3000000000000003,2.33,2.35,2.37,2.38,2.4,2.41,2.43,156.03,156.61,157,157.37,157.71,158.03,158.37,158.67000000000002,159.31,17.45,17.06,16.86,16.66,16.46,16.27,16.07,15.88,15.49,N/A,N/A +2012,11,25,11,30,102060,100850,99680,64.52,0,2.2,2.32,2.36,2.38,2.4,2.42,2.44,2.46,2.5,156.59,156.98,157.27,157.54,157.8,158.04,158.28,158.52,159.02,17.6,17.21,17.02,16.82,16.62,16.43,16.23,16.04,15.65,N/A,N/A +2012,11,25,12,30,102050,100840,99680,65.58,0,2.41,2.54,2.57,2.6,2.62,2.64,2.66,2.68,2.71,155.11,155.5,155.75,155.98,156.20000000000002,156.4,156.61,156.81,157.22,17.830000000000002,17.44,17.25,17.05,16.85,16.66,16.46,16.27,15.88,N/A,N/A +2012,11,25,13,30,102040,100830,99670,68.08,0,2.67,2.81,2.85,2.87,2.9,2.92,2.94,2.95,2.99,154.74,155.23,155.58,155.9,156.20000000000002,156.48,156.78,157.05,157.63,18.01,17.63,17.44,17.240000000000002,17.04,16.85,16.65,16.46,16.07,N/A,N/A +2012,11,25,14,30,102050,100850,99680,70.53,0,3.16,3.34,3.39,3.43,3.45,3.48,3.5,3.52,3.5500000000000003,144.52,144.99,145.33,145.64000000000001,145.94,146.22,146.51,146.77,147.32,18.23,17.85,17.66,17.46,17.26,17.07,16.87,16.68,16.29,N/A,N/A +2012,11,25,15,30,102040,100840,99670,70.56,0,3.6,3.79,3.83,3.85,3.86,3.87,3.87,3.88,3.88,147.91,148.45000000000002,148.81,149.17000000000002,149.5,149.8,150.13,150.43,151.07,18.490000000000002,18.11,17.92,17.72,17.53,17.34,17.13,16.95,16.55,N/A,N/A +2012,11,25,16,30,102010,100810,99650,73.2,0,3.93,4.16,4.22,4.25,4.28,4.3,4.32,4.33,4.36,144.36,144.87,145.22,145.55,145.85,146.14000000000001,146.44,146.72,147.29,18.68,18.31,18.12,17.92,17.72,17.53,17.330000000000002,17.150000000000002,16.76,N/A,N/A +2012,11,25,17,30,101940,100750,99590,73.86,0,3.61,3.83,3.89,3.92,3.96,3.98,4,4.0200000000000005,4.0600000000000005,146.16,146.6,146.86,147.11,147.33,147.53,147.74,147.93,148.35,18.900000000000002,18.54,18.36,18.150000000000002,17.96,17.77,17.57,17.38,16.990000000000002,N/A,N/A +2012,11,25,18,30,101920,100720,99570,75.94,0,4.3100000000000005,4.59,4.67,4.72,4.75,4.78,4.8100000000000005,4.83,4.87,148.9,149.21,149.42000000000002,149.63,149.81,149.99,150.17000000000002,150.34,150.69,19.240000000000002,18.88,18.69,18.490000000000002,18.3,18.11,17.91,17.72,17.330000000000002,N/A,N/A +2012,11,25,19,30,101870,100680,99520,77.03,0,4.21,4.46,4.5200000000000005,4.5600000000000005,4.58,4.6000000000000005,4.61,4.62,4.64,140.05,140.65,141.06,141.46,141.84,142.19,142.57,142.91,143.68,19.400000000000002,19.05,18.87,18.67,18.48,18.29,18.09,17.900000000000002,17.52,N/A,N/A +2012,11,25,20,30,101820,100630,99470,77.63,0,4.23,4.53,4.61,4.65,4.69,4.72,4.74,4.76,4.79,141.65,142.08,142.37,142.65,142.91,143.15,143.4,143.63,144.12,19.69,19.36,19.18,18.98,18.78,18.6,18.39,18.21,17.82,N/A,N/A +2012,11,25,21,30,101770,100580,99430,77.32000000000001,0,4.64,4.96,5.03,5.07,5.1000000000000005,5.12,5.13,5.15,5.16,142.71,143.21,143.55,143.87,144.18,144.46,144.77,145.05,145.67000000000002,19.93,19.6,19.43,19.23,19.04,18.85,18.650000000000002,18.47,18.080000000000002,N/A,N/A +2012,11,25,22,30,101740,100550,99400,79.26,0,5.17,5.58,5.7,5.76,5.82,5.86,5.89,5.92,5.97,139.81,140.31,140.65,140.96,141.25,141.52,141.81,142.07,142.65,20.12,19.81,19.64,19.45,19.26,19.07,18.87,18.69,18.3,N/A,N/A +2012,11,25,23,30,101710,100530,99380,79.89,0,5.82,6.29,6.41,6.47,6.5200000000000005,6.55,6.57,6.58,6.61,140.96,141.27,141.5,141.74,141.97,142.18,142.41,142.62,143.08,20.35,20.05,19.88,19.69,19.5,19.31,19.12,18.93,18.54,N/A,N/A +2012,11,26,0,30,101710,100520,99380,80.60000000000001,0,6.12,6.7,6.86,6.96,7.03,7.08,7.13,7.16,7.22,141.55,141.96,142.24,142.54,142.8,143.05,143.32,143.56,144.09,20.63,20.36,20.2,20,19.82,19.63,19.44,19.26,18.88,N/A,N/A +2012,11,26,1,30,101680,100500,99350,83.11,0,6.48,7.07,7.23,7.33,7.41,7.48,7.57,7.65,7.9,148.41,148.53,148.62,148.74,148.87,149.01,149.20000000000002,149.39000000000001,149.98,20.81,20.56,20.41,20.23,20.05,19.88,19.69,19.52,19.17,N/A,N/A +2012,11,26,2,30,101660,100480,99340,86.32000000000001,0,5.84,6.63,6.96,7.25,7.51,7.75,7.98,8.19,8.57,148.02,148.35,148.64000000000001,149.07,149.52,149.99,150.57,151.13,152.6,20.97,20.79,20.67,20.53,20.400000000000002,20.27,20.13,20,19.71,N/A,N/A +2012,11,26,3,30,101630,100450,99310,87.47,0,6.63,7.5600000000000005,7.9,8.19,8.45,8.68,8.89,9.09,9.450000000000001,152.62,153.08,153.44,153.91,154.42000000000002,154.96,155.55,156.12,157.38,21.23,21.06,20.94,20.79,20.650000000000002,20.5,20.35,20.2,19.89,N/A,N/A +2012,11,26,4,30,101590,100410,99270,88.51,0,6.21,7.19,7.59,7.95,8.28,8.58,8.870000000000001,9.14,9.63,152.03,152.86,153.51,154.43,155.46,156.58,157.78,158.96,160.93,21.32,21.19,21.09,20.97,20.85,20.73,20.6,20.48,20.2,N/A,N/A +2012,11,26,5,30,101580,100400,99260,91.24,0,5.46,6.41,6.8100000000000005,7.18,7.5200000000000005,7.84,8.16,8.46,9.06,150.95000000000002,151.74,152.46,153.51,154.65,155.89000000000001,157.31,158.71,162.06,21.29,21.17,21.080000000000002,20.97,20.85,20.740000000000002,20.62,20.51,20.29,N/A,N/A +2012,11,26,6,30,101580,100400,99260,92.7,0,5.19,6.08,6.47,6.87,7.2700000000000005,7.68,8.120000000000001,8.55,9.36,145.3,146.65,147.79,149.37,150.97,152.65,154.14000000000001,155.49,157.41,21.42,21.29,21.2,21.1,21,20.92,20.830000000000002,20.75,20.55,N/A,N/A +2012,11,26,7,30,101580,100400,99260,94.52,0,4.94,5.99,6.47,6.96,7.41,7.8500000000000005,8.290000000000001,8.700000000000001,9.6,152.82,155.16,156.96,159.35,161.8,164.36,167.16,169.89000000000001,175.52,21.54,21.44,21.36,21.26,21.17,21.07,20.96,20.86,20.63,N/A,N/A +2012,11,26,8,30,101560,100380,99250,95.7,0,4.62,5.65,6.1000000000000005,6.55,6.94,7.3,7.66,7.99,9.25,166.17000000000002,168.58,170.52,172.9,175.27,177.73,180.16,182.47,187.06,21.59,21.5,21.44,21.35,21.27,21.19,21.11,21.03,20.89,N/A,N/A +2012,11,26,9,30,101570,100400,99260,95.06,0,5.46,6.72,7.32,7.92,8.47,8.99,9.49,9.96,10.74,183.16,184.32,185.32,186.22,186.9,187.42000000000002,187.88,188.29,189.4,21.81,21.830000000000002,21.81,21.75,21.68,21.59,21.5,21.41,21.21,N/A,N/A +2012,11,26,10,30,101580,100410,99280,93.61,0,6.25,7.640000000000001,8.23,8.78,9.22,9.6,9.9,10.15,10.5,191.65,191.91,192.28,192.99,193.77,194.67000000000002,195.64000000000001,196.6,198.94,22.13,22.17,22.150000000000002,22.09,22.02,21.93,21.830000000000002,21.72,21.44,N/A,N/A +2012,11,26,11,30,101590,100420,99290,94.10000000000001,0,5.5200000000000005,6.87,7.43,7.92,8.36,8.77,9.17,9.55,10.21,192.72,194.14000000000001,195.47,197.43,199.34,201.3,203.11,204.77,207.74,22.03,22.1,22.09,22.04,21.98,21.89,21.79,21.68,21.43,N/A,N/A +2012,11,26,12,30,101610,100440,99300,94.95,0,4.44,5.82,6.43,7.0200000000000005,7.51,7.930000000000001,8.27,8.57,8.97,192.99,195.6,197.8,200.74,203.68,206.73000000000002,209.26,211.46,214.27,21.84,21.900000000000002,21.91,21.900000000000002,21.86,21.81,21.71,21.6,21.32,N/A,N/A +2012,11,26,13,30,101620,100450,99320,95.39,0,3.45,4.82,5.41,5.94,6.44,6.94,7.42,7.88,8.370000000000001,201.27,204.83,207.70000000000002,211.47,214.79,217.86,219.79,221.18,221.71,21.77,21.91,21.93,21.89,21.830000000000002,21.740000000000002,21.64,21.54,21.25,N/A,N/A +2012,11,26,14,30,101670,100490,99360,96.37,0,2.87,4.14,4.74,5.34,6.1000000000000005,7.08,7.61,7.91,8.65,198.18,202.48000000000002,205.69,209.25,212.6,216.09,217.46,217.85,217.93,21.6,21.7,21.72,21.72,21.71,21.7,21.62,21.52,21.29,N/A,N/A +2012,11,26,15,30,101670,100500,99360,97,0,2.99,4.2,4.82,5.5600000000000005,6.54,7.8500000000000005,8.41,8.64,9.200000000000001,195.29,200.58,204.43,208.49,211,212.25,212.70000000000002,212.81,213.25,21.61,21.68,21.72,21.740000000000002,21.81,21.900000000000002,21.87,21.8,21.61,N/A,N/A +2012,11,26,16,30,101680,100510,99370,97.72,0,2.82,3.94,4.54,5.23,6.09,7.18,7.78,8.15,8.9,185.61,191.42000000000002,195.21,198.19,202.73000000000002,209.07,212.27,213.95000000000002,216.17000000000002,21.71,21.71,21.72,21.72,21.78,21.89,21.88,21.82,21.67,N/A,N/A +2012,11,26,17,30,101690,100510,99380,94.01,0,3.99,5,5.48,5.99,6.47,6.94,7.37,7.7700000000000005,9.19,205.21,207.81,209.66,211.66,213.34,214.82,215.57,216.02,218.07,22.150000000000002,22.11,22.07,22.02,21.95,21.88,21.79,21.69,21.6,N/A,N/A +2012,11,26,18,30,101660,100490,99350,92.55,0,4.28,5.3500000000000005,5.8500000000000005,6.4,6.91,7.4,7.88,8.34,9.35,216.42000000000002,217.33,218.01,218.78,219.45000000000002,220.09,220.6,221.05,221.53,22.39,22.32,22.27,22.21,22.150000000000002,22.080000000000002,22.01,21.94,21.79,N/A,N/A +2012,11,26,19,30,101670,100500,99360,92.48,0,4.58,5.55,5.96,6.4,6.8,7.19,7.58,7.94,8.73,202.57,204.65,206.18,208.03,209.71,211.32,212.70000000000002,213.93,215.89000000000001,22.47,22.39,22.330000000000002,22.25,22.17,22.080000000000002,21.990000000000002,21.900000000000002,21.7,N/A,N/A +2012,11,26,20,30,101660,100490,99360,92.42,0,4.19,5.2700000000000005,5.75,6.25,6.7,7.11,7.51,7.87,8.64,198.79,201.01,202.59,204.44,206.04,207.5,208.72,209.79,211.82,22.490000000000002,22.44,22.400000000000002,22.330000000000002,22.26,22.17,22.07,21.97,21.76,N/A,N/A +2012,11,26,21,30,101660,100490,99360,93.13,0,3.99,5.24,5.84,6.46,7.0200000000000005,7.54,8.01,8.44,9.33,207.66,209.3,210.5,211.85,213.06,214.18,215.13,215.97,217.43,22.44,22.47,22.45,22.42,22.37,22.31,22.22,22.14,21.95,N/A,N/A +2012,11,26,22,30,101670,100500,99370,93.25,0,3.96,5.23,5.8,6.390000000000001,6.92,7.42,7.97,8.52,9.05,203.59,206.6,208.76,211.06,212.99,214.68,216.27,217.77,218.86,22.3,22.400000000000002,22.41,22.39,22.35,22.3,22.23,22.17,21.93,N/A,N/A +2012,11,26,23,30,101700,100520,99390,93.92,0,3.65,4.98,5.58,6.19,6.83,7.55,7.930000000000001,8.15,8.620000000000001,203.57,207.1,209.69,212.56,215.44,218.48000000000002,219.83,220.48000000000002,221.73000000000002,22.080000000000002,22.26,22.31,22.330000000000002,22.34,22.330000000000002,22.26,22.17,21.93,N/A,N/A +2012,11,27,0,30,101710,100540,99410,94.43,0,3.69,5.0200000000000005,5.63,6.25,6.88,7.55,7.890000000000001,8.08,8.47,197.13,202.37,206.31,210.82,214.75,218.37,219.97,220.69,222,21.95,22.18,22.27,22.34,22.38,22.41,22.36,22.28,22.07,N/A,N/A +2012,11,27,1,30,101740,100570,99440,95.34,0,2.99,4.36,5.07,5.97,6.53,6.78,7.05,7.3,7.7700000000000005,200.51,204.56,208.61,215.5,219.75,221.52,223.01,224.32,226.13,21.830000000000002,22.06,22.19,22.35,22.400000000000002,22.38,22.35,22.32,22.17,N/A,N/A +2012,11,27,2,30,101770,100600,99470,95.19,0,3.37,4.75,5.44,6.18,6.6000000000000005,6.74,6.92,7.12,7.48,192.94,199.8,205.41,212.84,217.37,219.38,220.97,222.33,224.67000000000002,21.81,22.1,22.240000000000002,22.37,22.43,22.43,22.400000000000002,22.37,22.240000000000002,N/A,N/A +2012,11,27,3,30,101800,100620,99490,95.52,0,3.65,5.07,5.8,6.62,7.1000000000000005,7.2700000000000005,7.390000000000001,7.49,7.69,203.9,208.61,212.61,218.19,222.21,224.84,226.88,228.59,230.99,21.75,22.02,22.17,22.35,22.41,22.39,22.38,22.36,22.22,N/A,N/A +2012,11,27,4,30,101810,100640,99500,95.44,0,3.81,5.19,5.9,6.74,7.34,7.74,7.87,7.88,7.96,220.29,222.32,224.28,227.59,231.24,235.20000000000002,237.36,238.70000000000002,241.46,21.77,21.96,22.07,22.22,22.29,22.32,22.27,22.21,22.06,N/A,N/A +2012,11,27,5,30,101830,100650,99520,95.24,0,4.45,5.76,6.4,7.140000000000001,7.76,8.31,8.45,8.44,8.31,219.55,221.72,223.57,226.23000000000002,229.23000000000002,232.58,235.37,237.72,239.87,21.79,21.92,21.98,22.07,22.150000000000002,22.2,22.17,22.12,21.91,N/A,N/A +2012,11,27,6,30,101850,100680,99540,95.07000000000001,0,4.67,5.96,6.55,7.17,7.7700000000000005,8.370000000000001,8.66,8.84,8.69,233.15,233.91,234.61,235.84,237.52,239.64000000000001,242.46,245.32,247.21,21.79,21.88,21.91,21.93,21.96,22.01,22.01,22,21.75,N/A,N/A +2012,11,27,7,30,101900,100720,99580,95.26,0,4.72,5.98,6.53,7.08,7.58,8.06,8.55,9.02,9.47,239.08,240.33,241.17000000000002,242.29,243.39000000000001,244.51,246.13,247.86,252.78,21.75,21.78,21.77,21.73,21.69,21.63,21.59,21.56,21.5,N/A,N/A +2012,11,27,8,30,101890,100700,99550,85.58,0,3.35,3.8000000000000003,3.93,4.0600000000000005,4.19,4.3,4.42,4.53,4.73,305.7,306.39,306.8,307.22,307.99,308.77,309.94,311.12,313.8,21.11,20.82,20.64,20.47,20.28,20.11,19.91,19.73,19.36,N/A,N/A +2012,11,27,9,30,102020,100820,99660,86.18,0,10.11,10.89,11.040000000000001,11.09,11.09,11.06,11.01,10.96,10.82,336.77,337.15000000000003,337.41,337.65000000000003,337.89,338.11,338.35,338.58,339.1,18.47,18.01,17.81,17.6,17.400000000000002,17.21,17.02,16.84,16.46,N/A,N/A +2012,11,27,10,30,102050,100850,99680,83.47,0,7.78,8.3,8.4,8.44,8.44,8.44,8.43,8.41,8.39,340.87,341.07,341.28000000000003,341.49,341.72,341.93,342.22,342.5,343.36,17.82,17.36,17.16,16.96,16.76,16.580000000000002,16.38,16.2,15.82,N/A,N/A +2012,11,27,11,30,102160,100950,99780,83.3,0,11,11.86,12.030000000000001,12.09,12.09,12.08,12.040000000000001,12,11.870000000000001,335.16,335.53000000000003,335.73,335.93,336.12,336.31,336.52,336.71,337.18,16.740000000000002,16.16,15.93,15.71,15.5,15.31,15.11,14.92,14.540000000000001,N/A,N/A +2012,11,27,12,30,102240,101030,99850,81.23,0,11.05,11.94,12.13,12.21,12.25,12.26,12.25,12.24,12.19,339.72,339.89,340,340.1,340.21,340.31,340.43,340.55,340.87,16.23,15.63,15.39,15.18,14.97,14.780000000000001,14.58,14.39,14.02,N/A,N/A +2012,11,27,13,30,102270,101060,99880,81.34,0,10.53,11.32,11.47,11.540000000000001,11.56,11.56,11.55,11.53,11.49,351.61,351.83,351.97,352.11,352.26,352.41,352.59000000000003,352.78000000000003,353.31,15.97,15.370000000000001,15.14,14.93,14.73,14.55,14.35,14.17,13.8,N/A,N/A +2012,11,27,14,30,102270,101060,99880,82.15,0,10.09,10.82,10.96,11.02,11.040000000000001,11.040000000000001,11.040000000000001,11.03,11.03,4.76,4.94,5.1000000000000005,5.26,5.43,5.59,5.8,6.0200000000000005,6.61,15.8,15.21,14.98,14.77,14.57,14.38,14.19,14.01,13.64,N/A,N/A +2012,11,27,15,30,102370,101160,99980,82.89,0,8.51,9.08,9.200000000000001,9.24,9.27,9.28,9.27,9.27,9.25,356.12,356.34000000000003,356.56,356.77,356.98,357.19,357.43,357.66,358.24,15.88,15.31,15.09,14.870000000000001,14.67,14.48,14.280000000000001,14.09,13.71,N/A,N/A +2012,11,27,16,30,102440,101220,100040,83.23,0,9.19,9.82,9.950000000000001,9.99,10.01,10.01,10,9.98,9.92,342.99,343.3,343.47,343.64,343.8,343.96,344.15000000000003,344.33,344.77,15.72,15.120000000000001,14.89,14.67,14.47,14.27,14.07,13.88,13.5,N/A,N/A +2012,11,27,17,30,102410,101190,100010,87.2,0,9.44,10.08,10.22,10.26,10.28,10.28,10.26,10.24,10.17,353.89,354.08,354.19,354.3,354.42,354.53000000000003,354.65000000000003,354.77,355.06,15.55,14.950000000000001,14.71,14.49,14.280000000000001,14.09,13.89,13.700000000000001,13.32,N/A,N/A +2012,11,27,18,30,102420,101210,100020,86.78,0,9.65,10.33,10.48,10.540000000000001,10.56,10.57,10.56,10.540000000000001,10.49,352.5,353,353.28000000000003,353.55,353.81,354.05,354.31,354.56,355.08,15.4,14.780000000000001,14.540000000000001,14.32,14.11,13.91,13.71,13.52,13.13,N/A,N/A +2012,11,27,19,30,102450,101230,100050,85.3,0,8.67,9.290000000000001,9.44,9.52,9.58,9.620000000000001,9.64,9.66,9.68,3.69,3.65,3.62,3.58,3.54,3.5100000000000002,3.47,3.44,3.37,15.11,14.5,14.27,14.05,13.83,13.64,13.43,13.24,12.85,N/A,N/A +2012,11,27,20,30,102440,101230,100040,81.11,0,8.6,9.22,9.38,9.46,9.52,9.56,9.59,9.61,9.64,358.13,358.03000000000003,357.97,357.91,357.86,357.81,357.77,357.73,357.65000000000003,15.9,15.33,15.1,14.88,14.67,14.47,14.26,14.07,13.67,N/A,N/A +2012,11,27,21,30,102480,101260,100080,80.4,0,8.63,9.22,9.36,9.43,9.47,9.49,9.5,9.5,9.49,359.43,359.54,359.64,359.74,359.85,359.94,0.06,0.16,0.41000000000000003,15.870000000000001,15.290000000000001,15.06,14.84,14.620000000000001,14.42,14.21,14.02,13.620000000000001,N/A,N/A +2012,11,27,22,30,102520,101300,100120,80.84,0,8.950000000000001,9.540000000000001,9.66,9.700000000000001,9.72,9.72,9.71,9.69,9.64,11.13,11.01,10.89,10.78,10.67,10.56,10.44,10.33,10.07,15.48,14.88,14.64,14.42,14.21,14.01,13.8,13.61,13.22,N/A,N/A +2012,11,27,23,30,102560,101340,100160,82.59,0,8.96,9.56,9.68,9.73,9.74,9.74,9.73,9.71,9.65,20.34,20.21,20.06,19.91,19.76,19.62,19.46,19.330000000000002,19.03,15.15,14.530000000000001,14.3,14.07,13.85,13.66,13.450000000000001,13.26,12.86,N/A,N/A +2012,11,28,0,30,102630,101400,100210,82.15,0,7.75,8.23,8.33,8.370000000000001,8.4,8.41,8.42,8.42,8.41,19.04,19.23,19.36,19.490000000000002,19.61,19.73,19.85,19.97,20.23,14.63,14.030000000000001,13.790000000000001,13.57,13.35,13.16,12.950000000000001,12.76,12.370000000000001,N/A,N/A +2012,11,28,1,30,102650,101420,100230,80.24,0,7.46,7.95,8.05,8.11,8.14,8.17,8.18,8.19,8.21,24.13,23.990000000000002,23.92,23.86,23.8,23.740000000000002,23.68,23.63,23.52,14.780000000000001,14.18,13.950000000000001,13.73,13.52,13.33,13.120000000000001,12.93,12.540000000000001,N/A,N/A +2012,11,28,2,30,102660,101440,100250,79.95,0,8.370000000000001,8.92,9.03,9.07,9.09,9.1,9.09,9.09,9.05,29.21,29.18,29.11,29.04,28.97,28.91,28.84,28.78,28.64,15.030000000000001,14.42,14.19,13.97,13.75,13.56,13.35,13.15,12.76,N/A,N/A +2012,11,28,3,30,102670,101450,100260,79.13,0,8.48,9.040000000000001,9.15,9.19,9.21,9.21,9.200000000000001,9.19,9.14,31.19,31.34,31.44,31.52,31.6,31.66,31.73,31.8,31.94,14.89,14.280000000000001,14.040000000000001,13.82,13.6,13.41,13.200000000000001,13.01,12.61,N/A,N/A +2012,11,28,4,30,102660,101430,100240,77.49,0,8.74,9.32,9.43,9.48,9.49,9.5,9.49,9.47,9.43,31.26,31.55,31.7,31.84,31.970000000000002,32.08,32.2,32.32,32.55,14.57,13.94,13.700000000000001,13.48,13.27,13.07,12.86,12.67,12.280000000000001,N/A,N/A +2012,11,28,5,30,102660,101430,100240,77.99,0,7.61,8.07,8.16,8.19,8.2,8.2,8.19,8.18,8.13,38.34,38.71,38.910000000000004,39.11,39.300000000000004,39.480000000000004,39.67,39.84,40.230000000000004,14.46,13.86,13.63,13.41,13.200000000000001,13.01,12.790000000000001,12.6,12.21,N/A,N/A +2012,11,28,6,30,102660,101440,100250,83.35000000000001,0,7.43,7.86,7.930000000000001,7.95,7.95,7.95,7.930000000000001,7.9,7.8500000000000005,41.82,42.300000000000004,42.61,42.89,43.160000000000004,43.4,43.67,43.92,44.45,14.6,14,13.77,13.55,13.34,13.15,12.94,12.74,12.35,N/A,N/A +2012,11,28,7,30,102700,101470,100280,83.67,0,7.15,7.57,7.65,7.68,7.69,7.69,7.68,7.67,7.640000000000001,43.99,44.550000000000004,44.9,45.22,45.52,45.800000000000004,46.09,46.36,46.92,14.6,14,13.77,13.55,13.34,13.15,12.94,12.74,12.35,N/A,N/A +2012,11,28,8,30,102710,101480,100290,80.42,0,7.6000000000000005,8.07,8.15,8.18,8.19,8.19,8.18,8.17,8.120000000000001,47.24,47.58,47.78,47.96,48.14,48.31,48.480000000000004,48.65,49,14.69,14.09,13.85,13.63,13.42,13.22,13.01,12.82,12.43,N/A,N/A +2012,11,28,9,30,102720,101490,100300,79.63,0,7.15,7.5600000000000005,7.62,7.640000000000001,7.640000000000001,7.640000000000001,7.62,7.6000000000000005,7.54,47.72,48.11,48.32,48.52,48.71,48.89,49.08,49.26,49.64,14.65,14.06,13.83,13.61,13.4,13.200000000000001,12.99,12.8,12.41,N/A,N/A +2012,11,28,10,30,102770,101540,100350,80.71000000000001,0,7.03,7.41,7.47,7.48,7.47,7.46,7.43,7.41,7.34,48.230000000000004,48.550000000000004,48.75,48.93,49.120000000000005,49.28,49.46,49.63,49.99,14.530000000000001,13.94,13.700000000000001,13.48,13.27,13.08,12.870000000000001,12.68,12.290000000000001,N/A,N/A +2012,11,28,11,30,102810,101580,100390,80.55,0,7.36,7.7700000000000005,7.83,7.84,7.84,7.82,7.8,7.7700000000000005,7.7,43.77,44.13,44.37,44.58,44.79,44.980000000000004,45.19,45.39,45.800000000000004,14.39,13.790000000000001,13.55,13.34,13.120000000000001,12.93,12.72,12.530000000000001,12.14,N/A,N/A +2012,11,28,12,30,102850,101620,100430,83,0,7.47,7.9,7.96,7.98,7.98,7.97,7.95,7.930000000000001,7.87,38.78,39.37,39.72,40.04,40.36,40.65,40.96,41.25,41.87,14.08,13.47,13.23,13.01,12.8,12.61,12.4,12.21,11.82,N/A,N/A +2012,11,28,13,30,102890,101660,100460,84.64,0,7.45,7.86,7.930000000000001,7.95,7.94,7.930000000000001,7.91,7.890000000000001,7.83,37.67,38.31,38.7,39.06,39.410000000000004,39.730000000000004,40.08,40.410000000000004,41.12,13.8,13.17,12.94,12.72,12.5,12.31,12.1,11.92,11.53,N/A,N/A +2012,11,28,14,30,102930,101700,100500,84.03,0,7.0600000000000005,7.43,7.48,7.49,7.48,7.47,7.44,7.42,7.3500000000000005,36.07,36.72,37.13,37.51,37.89,38.230000000000004,38.62,38.980000000000004,39.74,13.620000000000001,13.01,12.77,12.55,12.34,12.15,11.94,11.75,11.370000000000001,N/A,N/A +2012,11,28,15,30,102950,101710,100520,83.79,0,6.95,7.32,7.36,7.37,7.36,7.3500000000000005,7.32,7.3,7.23,36.980000000000004,37.59,37.95,38.29,38.62,38.93,39.28,39.61,40.31,13.63,13.02,12.790000000000001,12.57,12.36,12.17,11.96,11.78,11.39,N/A,N/A +2012,11,28,16,30,102920,101690,100490,82.69,0,6.67,7.01,7.05,7.0600000000000005,7.05,7.04,7.01,6.99,6.92,37.480000000000004,37.97,38.29,38.59,38.88,39.15,39.45,39.730000000000004,40.33,13.76,13.16,12.93,12.71,12.5,12.31,12.11,11.92,11.53,N/A,N/A +2012,11,28,17,30,102900,101670,100470,80.05,0,6.03,6.32,6.3500000000000005,6.36,6.3500000000000005,6.34,6.3100000000000005,6.29,6.23,38.410000000000004,38.95,39.27,39.58,39.88,40.160000000000004,40.47,40.76,41.38,13.99,13.41,13.19,12.97,12.76,12.57,12.370000000000001,12.18,11.790000000000001,N/A,N/A +2012,11,28,18,30,102860,101630,100440,73.79,0,5.37,5.61,5.64,5.64,5.63,5.62,5.6000000000000005,5.58,5.5200000000000005,34.84,35.15,35.34,35.52,35.7,35.86,36.050000000000004,36.22,36.6,14.33,13.780000000000001,13.55,13.35,13.14,12.950000000000001,12.75,12.56,12.17,N/A,N/A +2012,11,28,19,30,102830,101600,100410,68.82000000000001,0,4.8100000000000005,5.0200000000000005,5.05,5.0600000000000005,5.0600000000000005,5.05,5.04,5.03,5,36.46,36.58,36.63,36.68,36.730000000000004,36.77,36.83,36.88,36.96,14.870000000000001,14.35,14.13,13.92,13.72,13.530000000000001,13.32,13.13,12.75,N/A,N/A +2012,11,28,20,30,102780,101560,100370,64.61,0,4.29,4.5,4.53,4.55,4.55,4.5600000000000005,4.5600000000000005,4.5600000000000005,4.55,45.88,45.77,45.67,45.59,45.480000000000004,45.39,45.29,45.18,44.95,15.43,14.93,14.72,14.52,14.31,14.13,13.92,13.73,13.34,N/A,N/A +2012,11,28,21,30,102740,101520,100340,62.370000000000005,0,4.12,4.32,4.36,4.38,4.39,4.4,4.41,4.42,4.42,53.26,53.03,52.88,52.72,52.57,52.43,52.25,52.09,51.71,15.99,15.52,15.31,15.1,14.9,14.71,14.51,14.32,13.93,N/A,N/A +2012,11,28,22,30,102700,101480,100300,63.29,0,4.15,4.3500000000000005,4.39,4.42,4.43,4.44,4.44,4.45,4.46,60.43,60.17,59.980000000000004,59.81,59.61,59.44,59.22,59.03,58.6,16.43,15.97,15.76,15.56,15.36,15.17,14.96,14.780000000000001,14.39,N/A,N/A +2012,11,28,23,30,102690,101480,100290,63.35,0,4.84,5.09,5.14,5.16,5.17,5.18,5.18,5.18,5.17,71.22,70.81,70.56,70.31,70.07000000000001,69.85000000000001,69.59,69.35000000000001,68.83,16.75,16.29,16.080000000000002,15.88,15.68,15.49,15.280000000000001,15.09,14.71,N/A,N/A +2012,11,29,0,30,102700,101490,100310,66.26,0,4.98,5.25,5.3,5.32,5.33,5.34,5.34,5.34,5.34,74.99,74.65,74.43,74.23,74.02,73.82000000000001,73.62,73.42,72.97,16.830000000000002,16.37,16.16,15.96,15.76,15.57,15.370000000000001,15.18,14.790000000000001,N/A,N/A +2012,11,29,1,30,102700,101480,100300,64.61,0,5.37,5.71,5.79,5.84,5.87,5.89,5.91,5.92,5.95,74.3,74.55,74.69,74.81,74.93,75.03,75.13,75.23,75.41,17.14,16.68,16.48,16.27,16.06,15.870000000000001,15.67,15.48,15.08,N/A,N/A +2012,11,29,2,30,102680,101470,100290,65.63,0,5.66,6.0200000000000005,6.1000000000000005,6.140000000000001,6.17,6.2,6.21,6.22,6.24,81.62,81.74,81.78,81.81,81.83,81.86,81.88,81.91,81.96000000000001,17.29,16.830000000000002,16.62,16.42,16.21,16.02,15.81,15.620000000000001,15.22,N/A,N/A +2012,11,29,3,30,102660,101440,100260,61.89,0,5.91,6.2700000000000005,6.34,6.38,6.4,6.41,6.41,6.42,6.41,83.87,84.03,84.15,84.26,84.37,84.48,84.59,84.7,84.92,17.44,16.98,16.78,16.57,16.37,16.18,15.97,15.780000000000001,15.39,N/A,N/A +2012,11,29,4,30,102610,101400,100220,63.38,0,5.66,6.0200000000000005,6.1000000000000005,6.15,6.18,6.2,6.22,6.23,6.25,86.42,86.88,87.16,87.42,87.66,87.89,88.12,88.33,88.79,17.53,17.080000000000002,16.88,16.67,16.47,16.28,16.07,15.88,15.49,N/A,N/A +2012,11,29,5,30,102580,101370,100200,66.16,0,5.94,6.32,6.4,6.45,6.48,6.5,6.51,6.5200000000000005,6.53,95.21000000000001,95.86,96.17,96.42,96.66,96.85000000000001,97.03,97.2,97.52,17.73,17.29,17.09,16.88,16.67,16.48,16.27,16.080000000000002,15.68,N/A,N/A +2012,11,29,6,30,102570,101360,100190,66.17,0,5.9,6.26,6.33,6.37,6.38,6.390000000000001,6.390000000000001,6.390000000000001,6.38,98.03,98.53,98.87,99.19,99.51,99.79,100.08,100.34,100.9,17.61,17.18,16.98,16.78,16.57,16.39,16.18,15.99,15.6,N/A,N/A +2012,11,29,7,30,102570,101360,100180,67.69,0,5.64,5.97,6.03,6.05,6.07,6.07,6.07,6.0600000000000005,6.05,103.4,103.93,104.25,104.55,104.83,105.08,105.36,105.61,106.13,17.580000000000002,17.150000000000002,16.95,16.75,16.55,16.36,16.15,15.96,15.57,N/A,N/A +2012,11,29,8,30,102550,101340,100160,70.94,0,5.37,5.68,5.74,5.76,5.78,5.78,5.79,5.78,5.7700000000000005,106.60000000000001,107.11,107.46000000000001,107.79,108.11,108.4,108.71000000000001,109,109.61,17.53,17.1,16.91,16.7,16.5,16.31,16.11,15.92,15.530000000000001,N/A,N/A +2012,11,29,9,30,102540,101330,100150,72.07000000000001,0,4.19,4.46,4.54,4.6000000000000005,4.64,4.69,4.73,4.76,4.84,97.89,98.58,99.07000000000001,99.52,99.95,100.34,100.75,101.12,101.89,17.57,17.16,16.96,16.76,16.56,16.37,16.17,15.98,15.59,N/A,N/A +2012,11,29,10,30,102520,101310,100140,70.44,0,5.28,5.54,5.5600000000000005,5.5600000000000005,5.54,5.5200000000000005,5.49,5.47,5.41,116.26,116.58,116.76,116.93,117.08,117.23,117.39,117.54,117.83,17.79,17.37,17.17,16.97,16.77,16.580000000000002,16.37,16.19,15.790000000000001,N/A,N/A +2012,11,29,11,30,102510,101300,100130,73.74,0,4.48,4.7700000000000005,4.8500000000000005,4.9,4.95,4.98,5.01,5.04,5.1000000000000005,94.54,95.44,96.02,96.55,97.05,97.52,97.98,98.42,99.31,17.71,17.31,17.11,16.91,16.71,16.52,16.32,16.13,15.74,N/A,N/A +2012,11,29,12,30,102500,101290,100120,72.47,0,4.89,5.18,5.24,5.28,5.3,5.32,5.33,5.34,5.3500000000000005,101.08,101.57000000000001,101.89,102.2,102.49000000000001,102.75,103.03,103.29,103.83,17.97,17.56,17.37,17.17,16.97,16.78,16.580000000000002,16.39,16,N/A,N/A +2012,11,29,13,30,102490,101280,100110,75.01,0,4.89,5.19,5.26,5.29,5.32,5.34,5.3500000000000005,5.36,5.38,94.68,95.5,95.97,96.41,96.83,97.2,97.58,97.92,98.65,18.05,17.650000000000002,17.45,17.25,17.05,16.87,16.66,16.48,16.080000000000002,N/A,N/A +2012,11,29,14,30,102500,101300,100130,75.78,0,4.83,5.11,5.17,5.2,5.22,5.23,5.24,5.24,5.24,101.46000000000001,101.8,102.04,102.27,102.51,102.73,102.96000000000001,103.17,103.62,18.150000000000002,17.75,17.56,17.36,17.16,16.97,16.76,16.580000000000002,16.18,N/A,N/A +2012,11,29,15,30,102500,101290,100120,77.49,0,5.26,5.6000000000000005,5.68,5.72,5.75,5.76,5.78,5.79,5.8,101.49000000000001,102.03,102.4,102.74000000000001,103.07000000000001,103.37,103.7,104,104.63,18.26,17.86,17.67,17.47,17.27,17.080000000000002,16.88,16.69,16.3,N/A,N/A +2012,11,29,16,30,102480,101270,100110,79.67,0,5,5.3,5.36,5.38,5.4,5.41,5.41,5.41,5.4,105.7,106.28,106.61,106.91,107.19,107.45,107.71000000000001,107.95,108.45,18.39,17.990000000000002,17.8,17.6,17.400000000000002,17.21,17.01,16.82,16.43,N/A,N/A +2012,11,29,17,30,102430,101230,100060,78.34,0,5.51,5.86,5.93,5.96,5.97,5.98,5.98,5.98,5.97,106.02,106.36,106.58,106.78,106.98,107.16,107.35000000000001,107.53,107.9,18.54,18.14,17.95,17.75,17.55,17.36,17.16,16.97,16.580000000000002,N/A,N/A +2012,11,29,18,30,102410,101200,100040,80.78,0,6.05,6.47,6.5600000000000005,6.6000000000000005,6.63,6.640000000000001,6.640000000000001,6.640000000000001,6.63,106,106.26,106.41,106.54,106.68,106.79,106.91,107.02,107.25,18.63,18.240000000000002,18.04,17.84,17.64,17.45,17.25,17.06,16.67,N/A,N/A +2012,11,29,19,30,102380,101180,100010,78.03,0,5.79,6.16,6.24,6.2700000000000005,6.28,6.29,6.29,6.29,6.2700000000000005,103.24000000000001,103.75,104.05,104.34,104.61,104.85000000000001,105.12,105.37,105.89,18.73,18.35,18.16,17.96,17.76,17.57,17.37,17.18,16.79,N/A,N/A +2012,11,29,20,30,102330,101130,99960,79.10000000000001,0,5.68,6.0600000000000005,6.140000000000001,6.17,6.19,6.2,6.2,6.2,6.17,101.53,101.86,102.03,102.2,102.35000000000001,102.48,102.63,102.76,103.05,18.78,18.400000000000002,18.21,18.01,17.81,17.62,17.42,17.23,16.84,N/A,N/A +2012,11,29,21,30,102310,101110,99950,77.49,0,5.44,5.8100000000000005,5.9,5.94,5.97,5.98,5.99,6,6,105.57000000000001,105.59,105.65,105.71000000000001,105.76,105.81,105.87,105.92,106.04,18.87,18.490000000000002,18.3,18.1,17.91,17.72,17.52,17.330000000000002,16.94,N/A,N/A +2012,11,29,22,30,102280,101080,99920,75.68,0,5.3500000000000005,5.71,5.8,5.84,5.87,5.88,5.9,5.9,5.91,104.63,104.83,104.92,105.01,105.08,105.15,105.22,105.3,105.45,18.93,18.56,18.37,18.17,17.98,17.79,17.59,17.400000000000002,17.01,N/A,N/A +2012,11,29,23,30,102270,101070,99910,80.17,0,5.93,6.34,6.43,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.51,107.03,107.49000000000001,107.79,108.08,108.35000000000001,108.60000000000001,108.87,109.11,109.64,18.95,18.580000000000002,18.39,18.19,18,17.81,17.6,17.42,17.03,N/A,N/A +2012,11,30,0,30,102270,101080,99910,80.82000000000001,0,5.95,6.38,6.49,6.54,6.57,6.6000000000000005,6.61,6.62,6.62,111.47,112,112.28,112.54,112.77,112.99000000000001,113.21000000000001,113.42,113.83,19.04,18.66,18.48,18.28,18.080000000000002,17.89,17.69,17.5,17.11,N/A,N/A +2012,11,30,1,30,102280,101080,99920,80.47,0,5.94,6.38,6.49,6.54,6.57,6.59,6.6000000000000005,6.61,6.61,115.54,115.87,116.10000000000001,116.3,116.5,116.68,116.87,117.04,117.4,19.13,18.76,18.57,18.37,18.18,17.990000000000002,17.79,17.6,17.21,N/A,N/A +2012,11,30,2,30,102280,101080,99920,81.03,0,6.08,6.53,6.63,6.68,6.72,6.74,6.75,6.76,6.7700000000000005,114.72,114.97,115.13,115.3,115.46000000000001,115.61,115.78,115.93,116.27,19.26,18.900000000000002,18.71,18.51,18.32,18.13,17.92,17.740000000000002,17.35,N/A,N/A +2012,11,30,3,30,102260,101060,99900,83.09,0,6.71,7.25,7.37,7.44,7.48,7.51,7.53,7.54,7.5600000000000005,120.42,120.84,121.08,121.31,121.52,121.71000000000001,121.91,122.10000000000001,122.51,19.41,19.06,18.88,18.68,18.48,18.29,18.1,17.91,17.52,N/A,N/A +2012,11,30,4,30,102240,101040,99880,82,0,7.4,8.02,8.16,8.22,8.26,8.27,8.27,8.27,8.23,115.47,115.88,116.13,116.37,116.58,116.79,117.01,117.21000000000001,117.65,19.580000000000002,19.23,19.05,18.85,18.650000000000002,18.47,18.27,18.080000000000002,17.7,N/A,N/A +2012,11,30,5,30,102200,101010,99850,82.06,0,7.43,8.1,8.26,8.35,8.41,8.45,8.48,8.5,8.52,109.87,110.22,110.47,110.71000000000001,110.94,111.15,111.39,111.60000000000001,112.09,19.77,19.44,19.26,19.07,18.87,18.69,18.490000000000002,18.31,17.92,N/A,N/A +2012,11,30,6,30,102220,101020,99870,81.98,0,7.28,8.01,8.2,8.31,8.38,8.44,8.48,8.51,8.57,117.63,117.77,117.9,118.05,118.22,118.38,118.57000000000001,118.75,119.2,19.92,19.63,19.46,19.27,19.080000000000002,18.900000000000002,18.71,18.53,18.14,N/A,N/A +2012,11,30,7,30,102220,101020,99870,82.04,0,7.3500000000000005,8.07,8.25,8.35,8.42,8.47,8.5,8.53,8.57,127.8,127.84,127.87,127.91,127.95,127.99000000000001,128.06,128.1,128.25,20.11,19.84,19.69,19.5,19.31,19.14,18.94,18.76,18.39,N/A,N/A +2012,11,30,8,30,102210,101020,99860,84.12,0,7.59,8.39,8.59,8.72,8.8,8.870000000000001,8.91,8.94,8.98,122.79,123.02,123.19,123.37,123.56,123.75,123.98,124.21000000000001,124.79,20.14,19.88,19.72,19.53,19.35,19.17,18.98,18.8,18.43,N/A,N/A +2012,11,30,9,30,102200,101010,99850,83.39,0,6.86,7.53,7.69,7.8,7.91,8.01,8.15,8.290000000000001,8.66,125.42,125.41,125.43,125.46000000000001,125.54,125.65,125.9,126.16,127.3,20.16,19.91,19.75,19.57,19.400000000000002,19.22,19.04,18.88,18.55,N/A,N/A +2012,11,30,10,30,102190,101000,99850,85.95,0,5.8100000000000005,6.62,6.94,7.25,7.51,7.76,8,8.21,8.59,133.11,133.63,133.93,134.29,134.56,134.77,135.03,135.28,136.06,20.28,20.06,19.93,19.78,19.63,19.48,19.330000000000002,19.19,18.87,N/A,N/A +2012,11,30,11,30,102180,100990,99830,83.13,0,7.0600000000000005,7.94,8.23,8.47,8.66,8.83,8.98,9.11,9.34,140.03,140.28,140.48,140.72,140.97,141.23,141.54,141.84,142.54,20.55,20.35,20.2,20.04,19.87,19.71,19.53,19.37,19.01,N/A,N/A +2012,11,30,12,30,102180,100990,99840,83.74,0,6.73,7.58,7.87,8.11,8.32,8.51,8.68,8.84,9.14,135.3,135.95,136.39000000000001,136.9,137.45000000000002,137.99,138.59,139.16,140.38,20.56,20.37,20.240000000000002,20.080000000000002,19.93,19.77,19.61,19.45,19.12,N/A,N/A +2012,11,30,13,30,102190,101000,99840,85.28,0,5.76,6.6000000000000005,6.92,7.19,7.43,7.65,7.86,8.05,8.4,140.77,141.3,141.67000000000002,142.1,142.55,142.99,143.46,143.92000000000002,144.89000000000001,20.64,20.46,20.330000000000002,20.18,20.03,19.88,19.72,19.57,19.25,N/A,N/A +2012,11,30,14,30,102200,101010,99860,85.74,0,6.04,6.96,7.28,7.57,7.82,8.040000000000001,8.25,8.43,8.76,138.12,138.85,139.46,140.12,140.77,141.39000000000001,142.08,142.73,144.32,20.67,20.52,20.41,20.28,20.14,20,19.86,19.72,19.42,N/A,N/A +2012,11,30,15,30,102220,101030,99880,85.4,0,6.36,7.3100000000000005,7.66,7.97,8.25,8.49,8.73,8.94,9.32,136.59,137.11,137.54,138.12,138.79,139.49,140.33,141.14000000000001,142.86,20.73,20.580000000000002,20.48,20.35,20.22,20.1,19.96,19.84,19.55,N/A,N/A +2012,11,30,16,30,102170,100980,99830,85.74,0,6.26,7.22,7.58,7.9,8.18,8.43,8.67,8.89,9.31,136.73,137.25,137.75,138.38,139.14000000000001,139.94,140.87,141.76,143.55,20.76,20.63,20.53,20.41,20.29,20.17,20.04,19.91,19.64,N/A,N/A +2012,11,30,17,30,102170,100980,99830,87.37,0,6.0200000000000005,6.96,7.32,7.640000000000001,7.930000000000001,8.19,8.42,8.63,9,134.12,134.73,135.17000000000002,135.75,136.42000000000002,137.15,138.04,138.9,141.02,20.77,20.63,20.53,20.400000000000002,20.28,20.16,20.03,19.91,19.66,N/A,N/A +2012,11,30,18,30,102160,100970,99820,87.28,0,6.3100000000000005,7.3100000000000005,7.7,8.05,8.36,8.64,8.89,9.13,9.540000000000001,141.27,141.84,142.21,142.67000000000002,143.18,143.72,144.35,144.95000000000002,146.31,20.86,20.72,20.61,20.490000000000002,20.35,20.23,20.09,19.95,19.67,N/A,N/A +2012,11,30,19,30,102110,100920,99770,86.7,0,6.23,7.29,7.69,8.06,8.39,8.69,8.950000000000001,9.200000000000001,9.6,134.6,135.33,135.88,136.54,137.26,137.98,138.84,139.67000000000002,141.71,20.900000000000002,20.77,20.68,20.56,20.44,20.32,20.19,20.07,19.81,N/A,N/A +2012,11,30,20,30,102070,100890,99740,85.94,0,7.18,8.34,8.77,9.16,9.51,9.82,10.11,10.370000000000001,10.84,133.79,134.75,135.41,136.2,136.99,137.78,138.62,139.4,141.06,20.92,20.82,20.73,20.62,20.5,20.39,20.26,20.14,19.87,N/A,N/A +2012,11,30,21,30,102070,100880,99730,88.48,0,6.63,7.76,8.19,8.58,8.94,9.26,9.57,9.85,10.39,137.28,138.29,139.01,139.82,140.66,141.5,142.41,143.27,145,20.85,20.73,20.63,20.51,20.39,20.27,20.14,20.02,19.75,N/A,N/A +2012,11,30,22,30,102030,100840,99690,86.49,0,6.92,8.11,8.56,8.98,9.35,9.700000000000001,10.02,10.31,10.8,137.03,137.74,138.25,138.87,139.54,140.23,141.01,141.76,143.47,20.91,20.8,20.71,20.6,20.48,20.37,20.240000000000002,20.12,19.85,N/A,N/A +2012,11,30,23,30,102030,100840,99690,86.24,0,7.47,8.69,9.16,9.59,9.96,10.31,10.64,10.93,11.43,136.89000000000001,137.78,138.42000000000002,139.15,139.85,140.55,141.25,141.91,143.28,20.92,20.830000000000002,20.740000000000002,20.64,20.53,20.42,20.3,20.19,19.93,N/A,N/A +2012,12,1,0,30,102070,100880,99730,87.55,0,6.6000000000000005,7.8,8.28,8.72,9.11,9.47,9.81,10.120000000000001,10.66,147.97,147.87,147.9,148.03,148.24,148.51,148.9,149.31,150.35,20.94,20.84,20.740000000000002,20.63,20.5,20.38,20.25,20.13,19.84,N/A,N/A +2012,12,1,1,30,102050,100870,99720,88.75,0,6.48,7.7,8.2,8.68,9.11,9.51,9.88,10.22,10.82,143.12,143.97,144.6,145.32,145.98,146.63,147.28,147.88,149.17000000000002,20.92,20.84,20.76,20.67,20.56,20.46,20.34,20.22,19.97,N/A,N/A +2012,12,1,2,30,102060,100880,99730,87.83,0,6.74,7.98,8.47,8.93,9.32,9.700000000000001,10.040000000000001,10.35,10.9,144.55,145.20000000000002,145.70000000000002,146.32,146.98,147.67000000000002,148.45000000000002,149.19,150.75,21.02,20.95,20.87,20.78,20.67,20.57,20.45,20.34,20.09,N/A,N/A +2012,12,1,3,30,102070,100880,99730,88,0,6.640000000000001,7.890000000000001,8.38,8.86,9.28,9.68,10.040000000000001,10.38,11,149.70000000000002,150.20000000000002,150.61,151.18,151.8,152.47,153.20000000000002,153.9,155.35,20.98,20.92,20.85,20.76,20.650000000000002,20.55,20.44,20.330000000000002,20.09,N/A,N/A +2012,12,1,4,30,102070,100880,99730,88.18,0.30000000000000004,6.23,7.47,7.95,8.41,8.81,9.18,9.53,9.84,10.41,152.34,152.31,152.43,152.65,152.95000000000002,153.28,153.72,154.16,155.27,21.04,20.98,20.92,20.82,20.72,20.61,20.490000000000002,20.38,20.12,N/A,N/A +2012,12,1,5,30,102090,100900,99750,89.25,5.6000000000000005,5.38,6.59,7.11,7.63,8.08,8.49,8.86,9.22,9.870000000000001,150.45000000000002,150.91,151.32,151.86,152.47,153.12,153.84,154.53,155.92000000000002,20.96,20.92,20.86,20.77,20.68,20.580000000000002,20.47,20.37,20.13,N/A,N/A +2012,12,1,6,30,102060,100870,99730,88.79,0.5,6.11,7.33,7.83,8.33,8.8,9.22,9.64,10.03,10.700000000000001,143.06,144.67000000000002,145.74,146.95000000000002,148.14000000000001,149.28,150.44,151.53,153.53,21.080000000000002,21,20.93,20.85,20.76,20.68,20.580000000000002,20.490000000000002,20.26,N/A,N/A +2012,12,1,7,30,102090,100910,99760,88.47,0,6.63,7.95,8.5,9.01,9.46,9.870000000000001,10.23,10.57,11.120000000000001,152.01,153.22,154.06,154.96,155.83,156.67000000000002,157.48,158.25,159.70000000000002,21.240000000000002,21.19,21.14,21.06,20.97,20.88,20.77,20.67,20.43,N/A,N/A +2012,12,1,8,30,102090,100900,99760,87.8,0,6.890000000000001,8.18,8.700000000000001,9.18,9.59,9.950000000000001,10.28,10.57,11.1,160.34,160.96,161.43,162.05,162.71,163.41,164.17000000000002,164.89000000000001,166.34,21.26,21.240000000000002,21.19,21.12,21.04,20.96,20.86,20.76,20.53,N/A,N/A +2012,12,1,9,30,102080,100900,99750,87.75,0,6.83,8.18,8.71,9.22,9.67,10.08,10.46,10.81,11.4,161.07,161.83,162.39000000000001,163.13,163.96,164.83,165.8,166.74,168.61,21.28,21.27,21.22,21.16,21.1,21.02,20.94,20.87,20.66,N/A,N/A +2012,12,1,10,30,102090,100900,99760,88.60000000000001,0,6.33,7.62,8.16,8.67,9.14,9.58,9.96,10.31,10.870000000000001,164.19,165.25,166.03,166.99,167.9,168.77,169.54,170.25,171.46,21.27,21.27,21.240000000000002,21.2,21.150000000000002,21.1,21.02,20.94,20.72,N/A,N/A +2012,12,1,11,30,102100,100920,99770,89.42,0,5.36,6.65,7.21,7.76,8.24,8.68,9.08,9.44,10.08,165.1,166.58,167.62,168.73,169.83,170.89000000000001,172.03,173.1,175,21.2,21.240000000000002,21.240000000000002,21.21,21.18,21.14,21.080000000000002,21.02,20.830000000000002,N/A,N/A +2012,12,1,12,30,102110,100930,99780,88.72,0,5.62,6.99,7.57,8.11,8.58,9,9.32,9.61,9.93,167.84,168.62,169.23,170,170.84,171.72,172.75,173.73,175.65,21.330000000000002,21.38,21.38,21.35,21.31,21.26,21.18,21.1,20.88,N/A,N/A +2012,12,1,13,30,102110,100930,99780,90.18,0,5.2700000000000005,6.5600000000000005,7.1000000000000005,7.640000000000001,8.09,8.5,8.86,9.18,9.84,163.48,165.26,166.6,168.24,169.88,171.5,173.02,174.4,176.82,21.21,21.240000000000002,21.23,21.2,21.17,21.13,21.080000000000002,21.02,20.84,N/A,N/A +2012,12,1,14,30,102130,100950,99800,90.57000000000001,0,4.83,6.140000000000001,6.7,7.2700000000000005,7.78,8.25,8.63,8.98,9.16,164.75,166.41,167.6,169.02,170.62,172.32,173.95000000000002,175.44,176.88,21.19,21.27,21.28,21.28,21.27,21.25,21.21,21.16,20.98,N/A,N/A +2012,12,1,15,30,102140,100950,99810,91.18,0,4.57,5.79,6.34,6.9,7.41,7.890000000000001,8.28,8.63,8.790000000000001,164.34,165.91,167.23,168.91,170.74,172.64000000000001,174.42000000000002,176.04,177.68,21.16,21.19,21.19,21.19,21.19,21.19,21.16,21.14,21.02,N/A,N/A +2012,12,1,16,30,102140,100950,99810,90.95,0,4.78,5.93,6.44,6.97,7.46,7.930000000000001,8.28,8.59,8.75,157.78,159.35,160.75,162.71,165.03,167.54,169.73,171.68,172.94,21.2,21.2,21.19,21.19,21.19,21.2,21.17,21.14,21.01,N/A,N/A +2012,12,1,17,30,102120,100940,99790,91.53,0,4.7,5.7700000000000005,6.25,6.76,7.28,7.7700000000000005,8.21,8.61,8.870000000000001,158.47,160.34,161.82,163.73,165.66,167.59,169.52,171.33,173.72,21.27,21.23,21.2,21.18,21.17,21.16,21.14,21.12,20.98,N/A,N/A +2012,12,1,18,30,102100,100920,99780,91.01,0,4.62,5.69,6.18,6.69,7.19,7.68,8.16,8.59,8.8,164.01,165.18,166.11,167.29,168.4,169.46,170.44,171.35,173.20000000000002,21.41,21.36,21.32,21.28,21.25,21.21,21.17,21.12,21.03,N/A,N/A +2012,12,1,19,30,102090,100910,99760,90.83,0,4.88,5.9,6.34,6.79,7.2,7.59,7.9,8.17,8.46,157.53,158.62,159.46,160.51,161.56,162.61,163.76,164.84,167.57,21.48,21.39,21.330000000000002,21.26,21.19,21.12,21.03,20.95,20.76,N/A,N/A +2012,12,1,20,30,102070,100890,99740,90.78,0,5.15,6.24,6.7,7.16,7.6000000000000005,8.01,8.41,8.76,9.24,158.41,159.6,160.54,161.73,162.97,164.24,165.55,166.78,168.57,21.48,21.42,21.37,21.31,21.240000000000002,21.18,21.1,21.02,20.82,N/A,N/A +2012,12,1,21,30,102040,100860,99720,91.39,0,5.19,6.42,6.94,7.48,7.95,8.38,8.72,9.02,9.31,158.16,159.45000000000002,160.42000000000002,161.64000000000001,162.72,163.70000000000002,164.36,164.9,165.66,21.41,21.400000000000002,21.38,21.34,21.3,21.25,21.18,21.11,20.85,N/A,N/A +2012,12,1,22,30,102020,100840,99690,91.73,0,5.57,6.86,7.390000000000001,7.9,8.35,8.73,9.040000000000001,9.32,9.63,156.23,157.65,158.74,160.1,161.39000000000001,162.61,163.73,164.75,166.39000000000001,21.25,21.27,21.26,21.23,21.18,21.13,21.06,20.990000000000002,20.77,N/A,N/A +2012,12,1,23,30,102010,100820,99680,92.58,0,5.58,6.88,7.43,7.96,8.41,8.81,9.15,9.44,9.93,157.01,157.74,158.36,159.19,160.21,161.36,162.8,164.21,165.83,21.150000000000002,21.16,21.14,21.11,21.07,21.03,20.98,20.92,20.75,N/A,N/A +2012,12,2,0,30,102020,100840,99700,92.4,0,5.71,7.04,7.61,8.19,8.71,9.19,9.620000000000001,10,10.51,158.72,159.32,159.81,160.49,161.26,162.06,162.86,163.59,164.59,21.12,21.13,21.11,21.09,21.080000000000002,21.06,21.03,20.990000000000002,20.81,N/A,N/A +2012,12,2,1,30,102020,100840,99700,91.72,0,5.76,7.0600000000000005,7.62,8.18,8.69,9.17,9.59,9.97,10.5,157.02,157.46,157.83,158.31,158.86,159.45000000000002,160.15,160.82,162.25,21.11,21.09,21.06,21.02,20.97,20.93,20.87,20.82,20.650000000000002,N/A,N/A +2012,12,2,2,30,102040,100850,99710,92.23,0,5.73,7.0600000000000005,7.640000000000001,8.22,8.76,9.27,9.75,10.18,10.65,155.70000000000002,156.34,156.82,157.44,158.12,158.83,159.70000000000002,160.55,162.11,21.1,21.09,21.07,21.03,20.990000000000002,20.95,20.900000000000002,20.85,20.66,N/A,N/A +2012,12,2,3,30,102040,100860,99710,92.8,0,5.84,7.19,7.79,8.4,8.96,9.47,9.92,10.33,10.870000000000001,157.9,158.47,158.88,159.36,159.9,160.47,161.20000000000002,161.93,163.31,21.1,21.09,21.06,21.02,20.98,20.93,20.87,20.81,20.63,N/A,N/A +2012,12,2,4,30,102030,100850,99710,92.81,0,5.5600000000000005,6.95,7.58,8.24,8.83,9.38,9.81,10.17,10.6,159.97,160.84,161.44,162.14000000000001,162.77,163.35,163.94,164.5,165.45000000000002,21.14,21.17,21.16,21.16,21.14,21.13,21.080000000000002,21.03,20.82,N/A,N/A +2012,12,2,5,30,102020,100840,99700,93.86,0,4.97,6.32,6.94,7.61,8.3,8.99,9.65,10.25,10.93,164.57,165.71,166.59,167.66,168.73,169.8,170.09,170.19,170.83,21.080000000000002,21.12,21.14,21.16,21.17,21.18,21.17,21.150000000000002,21.02,N/A,N/A +2012,12,2,6,30,102040,100860,99710,94.34,0,4.46,5.58,6.140000000000001,6.8100000000000005,7.48,8.15,8.71,9.21,9.51,159.88,161.53,162.68,163.99,164.97,165.75,166.76,167.78,169.53,21.16,21.11,21.1,21.11,21.14,21.18,21.21,21.22,21.1,N/A,N/A +2012,12,2,7,30,102070,100890,99740,96.37,0,4.17,5.3100000000000005,5.88,6.53,7.19,7.88,8.69,9.51,10.08,156.96,158.71,160.16,162.14000000000001,164.23,166.46,168.67000000000002,170.82,172.08,21.16,21.1,21.07,21.05,21.06,21.080000000000002,21.12,21.150000000000002,20.990000000000002,N/A,N/A +2012,12,2,8,30,102060,100880,99740,96.31,0,3.95,5.19,5.76,6.34,6.88,7.37,8.01,8.65,9.24,165.05,166.63,167.86,169.39000000000001,171.01,172.70000000000002,174.47,176.20000000000002,176.36,21.29,21.29,21.27,21.240000000000002,21.21,21.17,21.150000000000002,21.14,20.990000000000002,N/A,N/A +2012,12,2,9,30,102060,100880,99740,95.64,0,4.72,6.140000000000001,6.8500000000000005,7.62,8.36,9.09,9.77,10.39,11.25,164.74,166.15,167.08,168.04,168.84,169.55,170.53,171.55,173.83,21.41,21.45,21.45,21.43,21.400000000000002,21.35,21.28,21.2,21.01,N/A,N/A +2012,12,2,10,30,102080,100900,99760,91.10000000000001,0,5.92,7.49,8.1,8.58,8.92,9.18,9.38,9.56,9.84,171.91,172.48,172.76,172.91,172.86,172.68,172.46,172.24,172.14000000000001,22.05,22.2,22.22,22.17,22.06,21.92,21.740000000000002,21.57,21.21,N/A,N/A +2012,12,2,11,30,102100,100920,99780,94.95,0,4.1,5.58,6.24,6.86,7.36,7.78,8.370000000000001,8.98,9.46,160.55,162.4,163.49,164.29,164.57,164.47,163.99,163.43,163.76,21.57,21.71,21.75,21.77,21.75,21.7,21.61,21.53,21.26,N/A,N/A +2012,12,2,12,30,102110,100930,99790,96.45,0,3.13,4.49,5.2,6.0200000000000005,6.92,7.890000000000001,8.32,8.57,8.97,155.99,158.78,161.11,164.21,167.20000000000002,170.21,171.58,172.42000000000002,174.68,21.35,21.43,21.48,21.55,21.61,21.66,21.6,21.5,21.27,N/A,N/A +2012,12,2,13,30,102130,100950,99800,96.3,0,3.44,4.67,5.2700000000000005,5.98,6.45,6.75,7.08,7.41,7.97,149.5,153,157.62,166.33,170.69,172.07,172.85,173.43,172.9,21.25,21.35,21.43,21.56,21.56,21.48,21.400000000000002,21.330000000000002,21.13,N/A,N/A +2012,12,2,14,30,102160,100980,99840,96.36,0,2.6,3.67,4.3,5.29,5.98,6.4,6.83,7.25,8.02,143.01,146.69,149.95000000000002,154.8,157.91,159.53,160.98,162.32,164.87,21.32,21.36,21.400000000000002,21.5,21.53,21.52,21.52,21.53,21.54,N/A,N/A +2012,12,2,15,30,102170,100990,99850,96.25,0,3.02,4.3500000000000005,5.17,6.23,6.8500000000000005,7.13,7.34,7.51,7.73,124.81,132.54,138.54,145.81,150.08,151.86,153.27,154.49,156.88,21.16,21.35,21.53,21.82,21.96,22.01,21.98,21.93,21.68,N/A,N/A +2012,12,2,16,30,102160,100980,99840,94.94,0,3.24,4.3500000000000005,5.11,6.28,6.96,7.26,7.51,7.73,8.08,123.31,127.95,133.2,142.86,148.26,150.39000000000001,152.20000000000002,153.8,156.53,21.28,21.34,21.490000000000002,21.8,21.94,21.98,21.97,21.93,21.75,N/A,N/A +2012,12,2,17,30,102130,100950,99810,93.8,0,3.85,4.9,5.53,6.390000000000001,7.0200000000000005,7.47,7.67,7.78,7.99,115.21000000000001,120.29,124.99000000000001,131.96,138.05,143.39000000000001,145.92000000000002,147.55,150.12,21.43,21.47,21.55,21.72,21.85,21.96,21.93,21.88,21.68,N/A,N/A +2012,12,2,18,30,102120,100940,99790,94.25,0,3.34,4.36,4.9,5.58,6.36,7.23,7.66,7.96,8.34,115.61,119.13,122.52,128.09,135.14000000000001,143.4,146.86,148.96,151.70000000000002,21.42,21.38,21.39,21.46,21.59,21.76,21.79,21.79,21.63,N/A,N/A +2012,12,2,19,30,102120,100940,99800,92.95,0,4.13,5.21,5.76,6.51,7.29,8.11,8.48,8.72,9.040000000000001,125.63000000000001,129.06,132.25,137.18,141.8,146.25,148.24,149.47,151.4,21.580000000000002,21.63,21.68,21.8,21.91,22.01,21.98,21.92,21.71,N/A,N/A +2012,12,2,20,30,102100,100920,99780,93.11,0,4.3,5.45,6.03,6.72,7.41,8.13,8.57,8.89,9.17,120.8,124.9,127.99000000000001,131.79,135.74,139.99,143.78,147.17000000000002,150.14000000000001,21.490000000000002,21.53,21.55,21.57,21.62,21.69,21.71,21.71,21.53,N/A,N/A +2012,12,2,21,30,102050,100870,99730,93.10000000000001,0,5.28,6.47,6.99,7.57,8.120000000000001,8.66,9.1,9.5,9.73,123.48,126.7,129.42000000000002,133.03,136.36,139.49,142.15,144.49,146.08,21.52,21.580000000000002,21.62,21.67,21.71,21.740000000000002,21.72,21.68,21.43,N/A,N/A +2012,12,2,22,30,102030,100850,99710,93.42,0,5.65,6.96,7.57,8.25,8.9,9.53,10.06,10.52,10.94,125.63000000000001,127.81,129.45,131.54,133.55,135.53,137.43,139.19,142.69,21.5,21.5,21.51,21.53,21.55,21.580000000000002,21.57,21.54,21.36,N/A,N/A +2012,12,2,23,30,102020,100840,99700,92.41,0,6.45,7.82,8.42,9.040000000000001,9.61,10.14,10.53,10.870000000000001,11.05,130.69,131.71,132.46,133.39000000000001,134.38,135.39000000000001,136.6,137.75,141.1,21.580000000000002,21.56,21.54,21.51,21.48,21.46,21.400000000000002,21.36,21.2,N/A,N/A +2012,12,3,0,30,102030,100850,99700,92.83,0,6.42,7.86,8.5,9.16,9.78,10.36,10.89,11.36,11.88,134.5,135.21,135.75,136.44,137.14000000000001,137.84,138.69,139.53,142.07,21.55,21.55,21.53,21.5,21.46,21.42,21.37,21.31,21.13,N/A,N/A +2012,12,3,1,30,102020,100840,99700,92.62,0,6.4,7.75,8.33,8.92,9.46,9.97,10.46,10.9,11.620000000000001,133,134.01,134.76,135.65,136.53,137.39000000000001,138.27,139.11,141.01,21.51,21.47,21.43,21.36,21.3,21.240000000000002,21.16,21.09,20.91,N/A,N/A +2012,12,3,2,30,102020,100840,99690,92.51,0,6.67,8.03,8.6,9.14,9.64,10.1,10.55,10.97,11.69,131.86,132.71,133.39000000000001,134.19,135.01,135.84,136.72,137.56,139.18,21.52,21.48,21.43,21.36,21.3,21.23,21.16,21.09,20.91,N/A,N/A +2012,12,3,3,30,102000,100820,99680,92.57000000000001,0,6.72,8.14,8.75,9.36,9.94,10.49,11.03,11.53,12.41,132.19,133.05,133.71,134.49,135.27,136.01,136.77,137.48,139.16,21.52,21.48,21.44,21.39,21.330000000000002,21.27,21.18,21.11,20.900000000000002,N/A,N/A +2012,12,3,4,30,101990,100810,99660,91.09,0,7.34,8.790000000000001,9.4,9.99,10.53,11.040000000000001,11.53,11.98,12.8,135.15,136.01,136.69,137.51,138.34,139.16,139.92000000000002,140.61,141.64000000000001,21.61,21.580000000000002,21.54,21.48,21.42,21.36,21.29,21.21,21.02,N/A,N/A +2012,12,3,5,30,101950,100770,99630,90.28,0,6.8100000000000005,8.25,8.870000000000001,9.52,10.1,10.64,11.14,11.6,12.32,132.88,134.19,135.1,136.12,137.05,137.92000000000002,138.78,139.58,141.23,21.61,21.59,21.55,21.5,21.43,21.37,21.3,21.22,21.02,N/A,N/A +2012,12,3,6,30,101970,100790,99650,90.4,0,7.05,8.53,9.16,9.8,10.39,10.950000000000001,11.48,11.98,12.75,137.96,138.9,139.56,140.36,141.15,141.93,142.75,143.54,145.11,21.61,21.580000000000002,21.54,21.48,21.41,21.34,21.26,21.18,20.990000000000002,N/A,N/A +2012,12,3,7,30,101960,100780,99640,88.81,0,7.32,8.86,9.51,10.14,10.700000000000001,11.22,11.68,12.09,12.81,140.41,141.54,142.3,143.18,144.01,144.82,145.58,146.28,147.62,21.75,21.75,21.71,21.650000000000002,21.580000000000002,21.5,21.41,21.32,21.1,N/A,N/A +2012,12,3,8,30,101930,100760,99610,88.75,0,7.5600000000000005,9.14,9.78,10.39,10.93,11.43,11.86,12.25,12.81,146.52,147.18,147.69,148.3,148.91,149.49,150.03,150.52,151.37,21.82,21.84,21.81,21.76,21.7,21.63,21.54,21.46,21.23,N/A,N/A +2012,12,3,9,30,101920,100750,99600,88.07000000000001,0,7.66,9.200000000000001,9.85,10.49,11.07,11.620000000000001,12.15,12.64,13.47,143.55,144.35,144.97,145.78,146.56,147.34,148.09,148.81,150.06,21.81,21.81,21.77,21.72,21.66,21.6,21.53,21.46,21.27,N/A,N/A +2012,12,3,10,30,101900,100720,99580,89,0,8.040000000000001,9.64,10.3,10.94,11.51,12.05,12.56,13.030000000000001,13.83,142.74,143.68,144.33,145.1,145.85,146.61,147.37,148.09,149.5,21.85,21.85,21.81,21.75,21.68,21.61,21.52,21.45,21.240000000000002,N/A,N/A +2012,12,3,11,30,101900,100720,99580,88.39,0,8.2,9.77,10.39,10.97,11.47,11.93,12.36,12.75,13.48,146.66,147.23,147.69,148.28,148.88,149.51,150.20000000000002,150.86,152.25,21.94,21.94,21.900000000000002,21.830000000000002,21.75,21.66,21.56,21.46,21.240000000000002,N/A,N/A +2012,12,3,12,30,101900,100730,99590,86.56,0,8.56,10.17,10.82,11.43,11.97,12.47,12.92,13.33,14.030000000000001,148.88,149.33,149.67000000000002,150.14000000000001,150.68,151.25,151.95000000000002,152.62,154.19,22.04,22.07,22.04,21.98,21.91,21.84,21.76,21.68,21.47,N/A,N/A +2012,12,3,13,30,101890,100720,99580,88.51,0,8.72,10.41,11.08,11.72,12.290000000000001,12.82,13.32,13.780000000000001,14.59,151.08,151.91,152.49,153.17000000000002,153.83,154.48,155.15,155.8,157.17000000000002,22.02,22.080000000000002,22.06,22.03,21.98,21.93,21.86,21.8,21.61,N/A,N/A +2012,12,3,14,30,101920,100740,99600,89.25,0,8.75,10.47,11.17,11.83,12.41,12.96,13.44,13.870000000000001,14.63,153.83,154.63,155.25,156.04,156.82,157.61,158.38,159.09,160.31,22.11,22.18,22.17,22.13,22.080000000000002,22.04,21.97,21.900000000000002,21.7,N/A,N/A +2012,12,3,15,30,101900,100730,99590,90.69,0,8.13,9.790000000000001,10.450000000000001,11.08,11.63,12.15,12.620000000000001,13.040000000000001,13.86,151.88,152.93,153.64000000000001,154.46,155.23,155.96,156.63,157.24,158.36,21.94,21.97,21.95,21.91,21.86,21.8,21.72,21.650000000000002,21.45,N/A,N/A +2012,12,3,16,30,101880,100710,99570,91.19,2.6,6.88,8.44,9.1,9.74,10.35,10.91,11.44,11.93,12.790000000000001,155.44,155.91,156.32,156.88,157.48,158.1,158.73,159.32,160.56,21.93,22,21.990000000000002,21.97,21.93,21.900000000000002,21.830000000000002,21.77,21.61,N/A,N/A +2012,12,3,17,30,101840,100670,99530,91.24,0,7.34,9.03,9.75,10.44,11.05,11.61,12.11,12.56,13.39,151.03,151.82,152.43,153.12,153.87,154.67000000000002,155.6,156.51,158.37,21.990000000000002,22.06,22.06,22.04,22.01,21.96,21.87,21.79,21.55,N/A,N/A +2012,12,3,18,30,101820,100640,99500,90.66,0,8.52,10.25,10.950000000000001,11.63,12.24,12.8,13.34,13.83,14.68,156.13,157.08,157.71,158.42000000000002,159.05,159.65,160.20000000000002,160.70000000000002,161.55,22.12,22.150000000000002,22.12,22.07,22.01,21.93,21.85,21.77,21.57,N/A,N/A +2012,12,3,19,30,101790,100620,99480,90.73,0,8.25,9.84,10.450000000000001,11.03,11.56,12.07,12.58,13.06,13.94,154.09,154.59,155,155.5,156.09,156.75,157.55,158.35,159.94,22.18,22.25,22.240000000000002,22.18,22.12,22.04,21.94,21.85,21.64,N/A,N/A +2012,12,3,20,30,101800,100620,99480,95.55,9.9,9.01,10.5,11.07,11.58,12.02,12.43,12.790000000000001,13.11,13.71,164.54,166.1,167.05,168.24,169.54,170.91,172.48,173.98,177.62,21.39,21.26,21.16,21.04,20.93,20.81,20.69,20.580000000000002,20.34,N/A,N/A +2012,12,3,21,30,101800,100620,99480,93.86,0.4,6.8100000000000005,8.05,8.55,9.02,9.43,9.82,10.200000000000001,10.55,11.25,170.1,170.21,170.35,170.62,171.01,171.5,172.20000000000002,172.91,174.74,21.51,21.42,21.330000000000002,21.21,21.1,20.990000000000002,20.87,20.77,20.6,N/A,N/A +2012,12,3,22,30,101760,100580,99440,94.58,0,7.23,8.42,8.85,9.26,9.65,10.040000000000001,10.48,10.91,11.73,161.51,163.14000000000001,164.61,166.72,168.97,171.33,173.66,175.84,179.1,21.5,21.45,21.400000000000002,21.35,21.29,21.240000000000002,21.18,21.13,20.97,N/A,N/A +2012,12,3,23,30,101750,100580,99440,93.88,0,6.96,8.52,9.200000000000001,9.89,10.55,11.19,11.81,12.4,13.43,158.38,160,161.1,162.32,163.41,164.41,165.3,166.11,167.5,21.79,21.84,21.84,21.830000000000002,21.81,21.79,21.76,21.73,21.63,N/A,N/A +2012,12,4,0,30,101770,100590,99460,90.76,0,8.58,10.47,11.28,12.07,12.77,13.41,13.93,14.39,15.02,166.37,166.52,166.64000000000001,166.79,166.94,167.09,167.23,167.37,167.58,22.11,22.19,22.2,22.18,22.150000000000002,22.12,22.07,22.01,21.8,N/A,N/A +2012,12,4,1,30,101800,100620,99490,91.69,0,9,10.63,11.25,11.790000000000001,12.24,12.65,12.950000000000001,13.200000000000001,13.34,162.25,162.97,163.49,164.16,164.69,165.15,165.31,165.39000000000001,166.28,22.02,22.06,22.04,22.01,21.98,21.96,21.93,21.91,21.81,N/A,N/A +2012,12,4,2,30,101800,100630,99490,93.41,0,7.29,8.81,9.450000000000001,10.09,10.73,11.39,12.11,12.81,13.790000000000001,156.76,158.36,159.61,161.29,162.87,164.43,165.73,166.9,168.33,21.71,21.78,21.79,21.82,21.830000000000002,21.85,21.85,21.84,21.72,N/A,N/A +2012,12,4,3,30,101820,100640,99500,94.09,0,6.28,7.8,8.49,9.22,9.89,10.51,11.040000000000001,11.5,12.32,149.33,151.37,152.91,154.82,156.61,158.34,159.88,161.27,163.63,21.650000000000002,21.68,21.68,21.69,21.69,21.68,21.650000000000002,21.62,21.47,N/A,N/A +2012,12,4,4,30,101810,100630,99500,91.77,0,7.140000000000001,8.71,9.36,9.97,10.5,10.98,11.4,11.790000000000001,12.46,157.74,158.93,159.79,160.78,161.76,162.73,163.72,164.64000000000001,166.28,21.990000000000002,22.04,22.02,21.98,21.93,21.87,21.79,21.72,21.51,N/A,N/A +2012,12,4,5,30,101800,100620,99490,91.55,0,6.91,8.41,9.03,9.63,10.18,10.71,11.26,11.77,12.82,158.1,159.44,160.42000000000002,161.6,162.73,163.86,164.95000000000002,165.98,167.84,21.900000000000002,21.96,21.96,21.93,21.88,21.84,21.79,21.73,21.61,N/A,N/A +2012,12,4,6,30,101810,100640,99500,90.54,0,6.5600000000000005,8.14,8.82,9.49,10.1,10.68,11.22,11.73,12.65,163.01,163.99,164.65,165.37,166.07,166.76,167.45000000000002,168.11,169.37,22.03,22.06,22.04,21.990000000000002,21.94,21.88,21.81,21.740000000000002,21.580000000000002,N/A,N/A +2012,12,4,7,30,101820,100650,99510,89.97,0,7.41,9.02,9.68,10.32,10.88,11.41,11.88,12.32,13.040000000000001,166.55,167.55,168.24,169.01,169.72,170.38,171.01,171.6,172.8,22.11,22.18,22.18,22.150000000000002,22.1,22.05,21.98,21.92,21.73,N/A,N/A +2012,12,4,8,30,101850,100670,99540,91.45,0,6.140000000000001,7.69,8.38,9.09,9.75,10.39,11,11.55,12.44,170.95000000000002,172.14000000000001,173.08,174.28,175.42000000000002,176.56,177.55,178.45000000000002,179.91,22.03,22.09,22.09,22.06,22.04,22.01,21.97,21.93,21.8,N/A,N/A +2012,12,4,9,30,101880,100710,99570,92.17,0,4.19,5.7,6.390000000000001,7.09,7.72,8.290000000000001,8.9,9.49,10.46,175.69,176.29,176.93,177.88,178.93,180.04,181.16,182.24,183.61,21.98,22.13,22.16,22.16,22.14,22.1,22.04,21.98,21.8,N/A,N/A +2012,12,4,10,30,101890,100710,99580,90.96000000000001,0,6.51,8.08,8.73,9.33,9.85,10.33,10.77,11.16,11.78,175.83,177,177.79,178.75,179.69,180.63,181.47,182.22,183.19,22.07,22.23,22.28,22.3,22.27,22.22,22.13,22.04,21.79,N/A,N/A +2012,12,4,11,30,101930,100750,99620,93.11,0,4.19,5.82,6.6000000000000005,7.4,8.1,8.71,9.25,9.74,10.71,185.94,185.98,186.06,186.26,186.51,186.78,187.03,187.25,188.02,21.830000000000002,21.95,21.98,22,22,21.990000000000002,21.94,21.88,21.740000000000002,N/A,N/A +2012,12,4,12,30,101980,100800,99660,92.31,0,4.66,6.32,7.1000000000000005,7.930000000000001,8.66,9.31,9.9,10.43,11.23,189,189.34,189.57,189.93,190.26,190.57,190.72,190.82,190.45000000000002,21.97,22.17,22.23,22.29,22.31,22.3,22.25,22.19,21.96,N/A,N/A +2012,12,4,13,30,101990,100820,99680,92.07000000000001,0,4.93,6.46,7.17,7.930000000000001,8.58,9.17,9.63,10.02,10.5,185.92000000000002,186.43,186.77,187.05,187.4,187.8,188.25,188.68,189.36,21.89,22.05,22.11,22.150000000000002,22.16,22.150000000000002,22.1,22.04,21.79,N/A,N/A +2012,12,4,14,30,102030,100850,99710,93.23,0,4.5,6.04,6.78,7.57,8.26,8.88,9.35,9.75,9.96,173.44,176.09,177.95000000000002,179.99,181.6,182.92000000000002,183.72,184.33,185.8,21.77,21.97,22.06,22.12,22.150000000000002,22.150000000000002,22.09,22.03,21.85,N/A,N/A +2012,12,4,15,30,102020,100840,99700,92.10000000000001,0,5,6.5,7.22,7.99,8.72,9.44,10.01,10.51,10.69,179.41,180.67000000000002,181.79,183.29,184.47,185.45000000000002,185.95000000000002,186.27,187.48,21.86,22.05,22.14,22.22,22.28,22.330000000000002,22.3,22.27,22.03,N/A,N/A +2012,12,4,16,30,102020,100840,99700,91.68,0,4.88,6.23,6.87,7.5600000000000005,8.18,8.76,9.24,9.67,10.17,177.53,178.48,179.38,180.53,181.62,182.68,183.86,185.02,187.48,21.97,22.06,22.080000000000002,22.1,22.11,22.11,22.1,22.09,22.04,N/A,N/A +2012,12,4,17,30,101990,100810,99670,91.29,0,5.0200000000000005,6.49,7.18,7.87,8.44,8.92,9.3,9.61,9.700000000000001,178.63,180.14000000000001,181.01,181.84,182.66,183.48,184.25,184.96,185.82,21.990000000000002,22.12,22.16,22.2,22.19,22.16,22.09,22.03,21.89,N/A,N/A +2012,12,4,18,30,101980,100800,99670,90.37,0,5.39,6.62,7.11,7.59,8.08,8.59,9.18,9.77,10.02,182.95000000000002,183.5,184.24,185.36,186.79,188.47,190.1,191.65,194.95000000000002,22.03,22.06,22.04,22.01,21.98,21.96,21.96,21.96,21.98,N/A,N/A +2012,12,4,19,30,101970,100790,99650,88.92,0,5.66,7.07,7.68,8.290000000000001,8.84,9.35,9.77,10.14,10.290000000000001,184.16,185.19,185.93,186.71,187.41,188.06,188.9,189.75,191.33,22.150000000000002,22.27,22.3,22.31,22.3,22.28,22.23,22.18,22.01,N/A,N/A +2012,12,4,20,30,102060,100880,99740,92.14,0,6.38,7.54,7.92,8.290000000000001,8.6,8.870000000000001,9.11,9.32,9.64,236.16,235.07,234.18,233.24,232.42000000000002,231.68,231.05,230.51,229.74,21.92,21.86,21.78,21.67,21.56,21.44,21.31,21.19,20.91,N/A,N/A +2012,12,4,21,30,102070,100890,99740,91.07000000000001,0.4,5.2,5.12,4.94,4.76,4.59,4.44,4.23,4.0200000000000005,3.43,11.71,3.97,358.1,350.86,345.15000000000003,340.44,335.21,330.54,320.67,20.400000000000002,20.2,20.1,19.98,19.85,19.73,19.6,19.490000000000002,19.35,N/A,N/A +2012,12,4,22,30,102060,100870,99720,93.62,1.8,5.54,5.8500000000000005,5.74,5.41,5.08,4.75,4.45,4.19,3.8000000000000003,82.14,82.93,83.55,84.19,84.91,85.67,87.15,88.59,94.88,20.35,20.57,20.64,20.54,20.43,20.31,20.18,20.05,19.78,N/A,N/A +2012,12,4,23,30,102090,100900,99750,91.53,0,7.13,7.76,8.03,8.44,8.6,8.6,8.290000000000001,7.96,7.2,83.54,83.76,84.33,85.39,87.35000000000001,89.82000000000001,90.56,90.81,91.12,20.3,20.05,19.94,19.86,20.02,20.330000000000002,20.3,20.2,19.92,N/A,N/A +2012,12,5,0,30,102100,100910,99760,88.85000000000001,7.7,5.15,5.46,5.71,6.24,6.62,6.9,7.05,7.16,7.16,101.13,101.76,103.07000000000001,106.45,109.27,111.69,113.59,115.22,118.08,20.36,20.05,20.02,20.18,20.330000000000002,20.47,20.47,20.44,20.23,N/A,N/A +2012,12,5,1,30,102100,100910,99750,91.32000000000001,0,5.69,6.0600000000000005,6.26,6.63,6.96,7.25,7.42,7.55,7.73,114.54,115.44,116.73,119.10000000000001,122.54,126.45,129.31,131.75,136.12,20.05,19.76,19.64,19.55,19.57,19.650000000000002,19.69,19.72,19.650000000000002,N/A,N/A +2012,12,5,2,30,102100,100910,99770,90.01,0,4.09,4.82,5.16,5.48,5.74,5.98,6.21,6.43,6.8500000000000005,139.05,141.07,142.70000000000002,145.15,147.52,149.83,151.67000000000002,153.27,155.44,20.45,20.47,20.61,20.900000000000002,21.06,21.14,21.12,21.080000000000002,20.86,N/A,N/A +2012,12,5,3,30,102100,100910,99770,90.24,2.9000000000000004,2.92,3.12,3.33,3.81,4.18,4.5,4.76,5,5.22,182.84,181.23,180.1,178.3,177.67000000000002,177.75,178.69,179.79,182.92000000000002,20.5,20.23,20.11,20,19.96,19.95,19.97,19.98,19.86,N/A,N/A +2012,12,5,4,30,102110,100930,99780,90.86,0,3.0300000000000002,3.3200000000000003,3.47,3.66,3.91,4.19,4.44,4.67,4.64,176.32,176.73,176.93,177.19,177.36,177.48,177.71,177.96,179.75,20.71,20.46,20.31,20.14,20.080000000000002,20.080000000000002,20.14,20.21,20.11,N/A,N/A +2012,12,5,5,30,102110,100920,99770,90.78,0,3.09,3.31,3.39,3.52,3.66,3.79,3.81,3.8000000000000003,3.85,192.98000000000002,193.20000000000002,193.47,194,195.74,198.19,201.49,204.67000000000002,208.63,20.79,20.53,20.39,20.23,20.16,20.14,20.2,20.27,20.240000000000002,N/A,N/A +2012,12,5,6,30,102110,100920,99770,89.43,0,4.18,4.71,4.88,5.04,5.09,5.08,4.93,4.78,4.63,224.32,224.36,224.53,225.01,226.65,228.95000000000002,230.57,231.86,233.96,20.93,20.740000000000002,20.63,20.53,20.55,20.62,20.580000000000002,20.53,20.34,N/A,N/A +2012,12,5,7,30,102110,100920,99770,91.42,0,4.74,5.3100000000000005,5.47,5.59,5.67,5.71,5.67,5.62,5.25,255.23000000000002,255.51000000000002,255.74,256.22,257.19,258.44,260.97,263.52,268.6,20.830000000000002,20.61,20.47,20.31,20.150000000000002,20.01,19.88,19.77,19.62,N/A,N/A +2012,12,5,8,30,102110,100920,99770,93.52,0,3.54,3.94,4.0600000000000005,4.15,4.21,4.24,4.26,4.2700000000000005,4.23,287.85,288.58,288.63,288.43,287.90000000000003,287.21,286.09000000000003,284.99,282.03000000000003,20.71,20.46,20.31,20.150000000000002,19.98,19.82,19.650000000000002,19.490000000000002,19.14,N/A,N/A +2012,12,5,9,30,102120,100930,99770,97.13,0,4.7700000000000005,5,5.01,4.98,5,5.04,5.03,5,4.59,325.13,324.5,323.99,323.32,321.67,319.54,316.72,314.12,310.57,19.77,19.45,19.29,19.11,18.95,18.81,18.7,18.6,18.42,N/A,N/A +2012,12,5,10,30,102120,100930,99770,99.32000000000001,0,3.43,3.6,3.63,3.65,3.71,3.7800000000000002,3.86,3.93,3.8200000000000003,323.27,324.63,325.58,326.74,328.83,331.2,334.15000000000003,336.76,338.11,19.2,18.92,18.78,18.63,18.48,18.34,18.25,18.18,17.98,N/A,N/A +2012,12,5,11,30,102140,100940,99790,94.96000000000001,0,3.41,3.56,3.5700000000000003,3.56,3.5500000000000003,3.5300000000000002,3.5100000000000002,3.48,3.43,334.38,335.07,335.49,335.99,336.57,337.16,338.05,339.07,345.37,19.400000000000002,19.06,18.88,18.69,18.5,18.32,18.14,17.97,17.7,N/A,N/A +2012,12,5,12,30,102130,100930,99780,95.21000000000001,0,3.5,3.63,3.64,3.63,3.62,3.6,3.59,3.58,3.46,341.37,342.05,342.46,342.92,343.45,344,344.28000000000003,344.74,350.78000000000003,19.43,19.09,18.91,18.72,18.52,18.330000000000002,18.21,18.1,17.85,N/A,N/A +2012,12,5,13,30,102130,100940,99780,95.61,1.1,4.83,5.04,5.05,5.0200000000000005,4.97,4.92,4.84,4.7700000000000005,4.5200000000000005,30.87,30.810000000000002,30.810000000000002,30.82,30.85,30.87,30.88,30.8,29.740000000000002,18.97,18.61,18.43,18.240000000000002,18.06,17.89,17.72,17.57,17.35,N/A,N/A +2012,12,5,14,30,102140,100950,99790,94.35000000000001,0,4.26,4.41,4.4,4.3500000000000005,4.28,4.21,4.1,3.99,3.58,14.030000000000001,14.07,14.14,14.19,14.21,14.23,14.21,14.19,14.02,18.86,18.490000000000002,18.32,18.13,17.95,17.78,17.62,17.48,17.34,N/A,N/A +2012,12,5,15,30,102140,100940,99780,95.16,0,4.46,4.66,4.68,4.65,4.61,4.57,4.51,4.45,4.23,8.15,8.69,9.040000000000001,9.38,9.73,10.07,10.49,10.9,12.11,18.84,18.47,18.28,18.1,17.91,17.740000000000002,17.56,17.400000000000002,17.11,N/A,N/A +2012,12,5,16,30,102120,100920,99760,94.51,0,4.66,4.89,4.9,4.88,4.8500000000000005,4.82,4.7700000000000005,4.72,4.58,12.17,12.5,12.72,12.93,13.15,13.35,13.6,13.82,14.32,18.84,18.47,18.29,18.1,17.91,17.73,17.55,17.38,17.06,N/A,N/A +2012,12,5,17,30,102080,100880,99720,94,0,4.94,5.2,5.23,5.23,5.21,5.19,5.15,5.11,5.03,18.2,18.32,18.330000000000002,18.330000000000002,18.31,18.3,18.25,18.21,18.02,18.78,18.400000000000002,18.21,18.02,17.830000000000002,17.650000000000002,17.46,17.28,16.95,N/A,N/A +2012,12,5,18,30,102050,100850,99690,93.58,0,5.05,5.3100000000000005,5.34,5.33,5.3100000000000005,5.29,5.25,5.21,5.12,26.16,26.1,25.990000000000002,25.87,25.72,25.57,25.36,25.14,24.47,18.75,18.37,18.18,17.990000000000002,17.8,17.62,17.42,17.25,16.91,N/A,N/A +2012,12,5,19,30,102030,100830,99670,91.28,0,4.99,5.23,5.25,5.23,5.2,5.16,5.11,5.05,4.88,9.290000000000001,9.23,9.19,9.14,9.06,8.99,8.870000000000001,8.74,8.19,18.71,18.32,18.14,17.95,17.76,17.580000000000002,17.38,17.21,16.85,N/A,N/A +2012,12,5,20,30,101990,100790,99630,91.89,0,4.75,5.01,5.04,5.05,5.05,5.04,5.0200000000000005,5,4.94,358.58,358.64,358.69,358.75,358.81,358.88,358.95,359.02,359.2,18.61,18.23,18.04,17.85,17.650000000000002,17.47,17.27,17.09,16.71,N/A,N/A +2012,12,5,21,30,101970,100770,99610,91.18,0,4.48,4.7,4.74,4.74,4.73,4.72,4.69,4.67,4.61,349.01,349.27,349.48,349.71,349.95,350.19,350.51,350.84000000000003,351.84000000000003,18.650000000000002,18.27,18.080000000000002,17.89,17.69,17.51,17.31,17.13,16.75,N/A,N/A +2012,12,5,22,30,101920,100730,99570,90.82000000000001,0,4.93,5.2,5.24,5.25,5.25,5.24,5.22,5.22,5.19,355.18,355.76,356.12,356.48,356.86,357.22,357.68,358.12,359.37,18.81,18.44,18.25,18.06,17.87,17.69,17.490000000000002,17.32,16.95,N/A,N/A +2012,12,5,23,30,101940,100740,99580,89.63,11,5.71,6.03,6.07,6.07,6.04,6.01,5.96,5.91,5.79,17.09,17.330000000000002,17.490000000000002,17.64,17.79,17.93,18.080000000000002,18.22,18.53,18.72,18.330000000000002,18.14,17.95,17.76,17.580000000000002,17.39,17.21,16.85,N/A,N/A +2012,12,6,0,30,101930,100730,99570,88,0,6.7,7.15,7.24,7.28,7.29,7.28,7.2700000000000005,7.26,7.21,30.47,30.26,30.080000000000002,29.89,29.7,29.52,29.3,29.09,28.53,18.45,18.03,17.85,17.64,17.45,17.27,17.07,16.88,16.51,N/A,N/A +2012,12,6,1,30,101920,100720,99560,87.05,0,5.76,6.13,6.2,6.23,6.25,6.25,6.26,6.2700000000000005,6.3100000000000005,26.3,25.990000000000002,25.77,25.55,25.29,25.03,24.68,24.32,23.11,18.400000000000002,18,17.81,17.62,17.43,17.25,17.06,16.88,16.54,N/A,N/A +2012,12,6,2,30,101900,100700,99540,87.5,0,5.19,5.46,5.5,5.5,5.48,5.46,5.43,5.4,5.32,27.11,27.11,27.09,27.080000000000002,27.05,27.02,26.97,26.92,26.68,18.44,18.05,17.86,17.67,17.47,17.29,17.09,16.91,16.54,N/A,N/A +2012,12,6,3,30,101860,100660,99500,88.19,0,5.48,5.8,5.8500000000000005,5.87,5.87,5.87,5.86,5.8500000000000005,5.84,34.660000000000004,34.84,34.99,35.15,35.32,35.49,35.730000000000004,35.97,36.74,18.51,18.12,17.93,17.740000000000002,17.54,17.36,17.16,16.98,16.6,N/A,N/A +2012,12,6,4,30,101830,100630,99470,89.72,0,5.03,5.3,5.3500000000000005,5.36,5.36,5.36,5.3500000000000005,5.34,5.32,30.150000000000002,30.54,30.78,31.04,31.330000000000002,31.61,31.970000000000002,32.32,33.3,18.28,17.88,17.69,17.490000000000002,17.3,17.12,16.92,16.73,16.36,N/A,N/A +2012,12,6,5,30,101800,100610,99450,91.44,0,5.15,5.46,5.51,5.53,5.54,5.54,5.53,5.5200000000000005,5.49,49.71,50.45,50.82,51.18,51.54,51.88,52.27,52.64,53.550000000000004,18.34,17.93,17.740000000000002,17.54,17.34,17.16,16.95,16.77,16.38,N/A,N/A +2012,12,6,6,30,101790,100590,99430,91.3,0,4.82,5.12,5.18,5.2,5.22,5.22,5.22,5.21,5.19,61.11,61.940000000000005,62.46,62.99,63.51,63.99,64.52,65.02,66.19,18.67,18.28,18.09,17.89,17.69,17.5,17.31,17.12,16.73,N/A,N/A +2012,12,6,7,30,101750,100560,99400,93.9,1.8,7.13,7.61,7.7,7.74,7.75,7.74,7.71,7.69,7.6000000000000005,68.69,69.46000000000001,69.82000000000001,70.14,70.45,70.73,71.02,71.29,71.88,18.48,18.06,17.86,17.66,17.46,17.28,17.080000000000002,16.9,16.56,N/A,N/A +2012,12,6,8,30,101730,100530,99370,91.35000000000001,0.7000000000000001,5.87,6.23,6.3,6.33,6.34,6.34,6.33,6.32,6.28,75.84,76.45,76.81,77.17,77.53,77.86,78.25,78.60000000000001,79.47,18.19,17.77,17.57,17.37,17.17,16.98,16.78,16.6,16.21,N/A,N/A +2012,12,6,9,30,101720,100520,99360,90.83,0,5.63,5.96,6.0200000000000005,6.04,6.04,6.03,6.0200000000000005,6,5.94,92.29,92.55,92.65,92.74,92.84,92.93,93.02,93.11,93.23,18.23,17.81,17.61,17.41,17.21,17.02,16.82,16.63,16.25,N/A,N/A +2012,12,6,10,30,101680,100480,99330,87.44,0,4.28,4.43,4.42,4.39,4.3500000000000005,4.3100000000000005,4.25,4.2,4.05,78.97,79.14,79.34,79.54,79.75,79.96000000000001,80.33,80.77,83.24,18.27,17.87,17.69,17.490000000000002,17.3,17.12,16.92,16.75,16.38,N/A,N/A +2012,12,6,11,30,101660,100470,99310,88.46000000000001,0,4.5600000000000005,4.7700000000000005,4.79,4.79,4.7700000000000005,4.75,4.72,4.68,4.59,73.51,73.69,73.8,73.9,74.02,74.12,74.26,74.4,74.83,18.38,17.990000000000002,17.8,17.6,17.400000000000002,17.21,17.02,16.830000000000002,16.44,N/A,N/A +2012,12,6,12,30,101640,100450,99290,88.69,0,4.74,4.98,5.01,5.01,5,4.98,4.95,4.92,4.84,76.25,76.68,76.93,77.18,77.43,77.66,77.94,78.21000000000001,78.87,18.31,17.91,17.72,17.53,17.330000000000002,17.14,16.94,16.76,16.37,N/A,N/A +2012,12,6,13,30,101630,100430,99270,87.56,0,4.46,4.67,4.7,4.69,4.68,4.66,4.64,4.61,4.55,79.11,79.53,79.8,80.08,80.36,80.64,80.97,81.28,82.05,18.400000000000002,18.01,17.82,17.62,17.42,17.240000000000002,17.03,16.85,16.46,N/A,N/A +2012,12,6,14,30,101630,100440,99280,86.42,0,3.71,3.9,3.94,3.96,3.97,3.97,3.97,3.97,3.96,92.25,92.32000000000001,92.37,92.43,92.49,92.56,92.65,92.74,93.04,18.61,18.23,18.04,17.84,17.64,17.46,17.26,17.07,16.68,N/A,N/A +2012,12,6,15,30,101620,100420,99270,85.54,0,4.5,4.74,4.7700000000000005,4.78,4.7700000000000005,4.76,4.75,4.73,4.69,96.98,97.43,97.69,97.97,98.22,98.46000000000001,98.74000000000001,99.01,99.69,18.86,18.48,18.3,18.1,17.91,17.72,17.53,17.34,16.96,N/A,N/A +2012,12,6,16,30,101590,100400,99240,86.66,0,4.2700000000000005,4.46,4.47,4.46,4.44,4.41,4.38,4.3500000000000005,4.2700000000000005,90.43,90.99,91.34,91.71000000000001,92.08,92.43,92.85000000000001,93.23,94.17,18.87,18.5,18.32,18.12,17.92,17.740000000000002,17.54,17.35,16.97,N/A,N/A +2012,12,6,17,30,101550,100360,99200,84,0,4.17,4.39,4.43,4.44,4.44,4.44,4.43,4.42,4.4,94.39,94.78,95.02,95.26,95.49,95.7,95.94,96.15,96.67,19.02,18.66,18.47,18.27,18.07,17.89,17.69,17.5,17.11,N/A,N/A +2012,12,6,18,30,101530,100340,99180,86.82000000000001,0,4.68,4.91,4.93,4.92,4.9,4.87,4.84,4.8,4.71,93.33,93.92,94.33,94.75,95.17,95.58,96.03,96.46000000000001,97.45,18.87,18.490000000000002,18.3,18.1,17.900000000000002,17.71,17.51,17.330000000000002,16.94,N/A,N/A +2012,12,6,19,30,101490,100300,99150,86.23,0,4.74,5.01,5.05,5.07,5.08,5.07,5.0600000000000005,5.05,5.0200000000000005,100.02,100.51,100.84,101.18,101.51,101.82000000000001,102.16,102.48,103.2,19.02,18.64,18.46,18.25,18.06,17.87,17.67,17.48,17.09,N/A,N/A +2012,12,6,20,30,101470,100270,99120,89.02,0,5,5.29,5.34,5.3500000000000005,5.36,5.3500000000000005,5.33,5.32,5.28,98.14,99.17,99.79,100.39,100.96000000000001,101.5,102.09,102.64,103.85000000000001,18.81,18.43,18.240000000000002,18.04,17.84,17.66,17.46,17.27,16.89,N/A,N/A +2012,12,6,21,30,101440,100250,99100,86.7,0,5.09,5.38,5.44,5.45,5.45,5.44,5.42,5.4,5.3,101.16,101.53,101.8,102.09,102.38,102.67,103.02,103.34,104.25,19.02,18.64,18.46,18.26,18.07,17.88,17.68,17.5,17.12,N/A,N/A +2012,12,6,22,30,101390,100210,99050,85.66,0,4.68,4.93,4.96,4.95,4.94,4.91,4.88,4.84,4.72,104.82000000000001,105.05,105.36,105.7,106.09,106.5,107.07000000000001,107.63,109.58,19.27,18.92,18.73,18.54,18.35,18.16,17.96,17.78,17.41,N/A,N/A +2012,12,6,23,30,101380,100200,99040,87.56,0,5.8500000000000005,6.22,6.28,6.3,6.3,6.28,6.26,6.23,6.16,114.81,115.26,115.56,115.85000000000001,116.16,116.46000000000001,116.82000000000001,117.16,118.07000000000001,19.22,18.86,18.67,18.47,18.28,18.09,17.89,17.71,17.330000000000002,N/A,N/A +2012,12,7,0,30,101380,100200,99050,86.55,0,5.55,5.9,5.96,5.97,5.98,5.97,5.95,5.93,5.88,121.25,121.48,121.69,121.91,122.13,122.34,122.59,122.81,123.37,19.41,19.04,18.86,18.66,18.47,18.28,18.080000000000002,17.89,17.5,N/A,N/A +2012,12,7,1,30,101360,100180,99030,86.91,0,6.4,6.87,6.98,7.0200000000000005,7.05,7.0600000000000005,7.0600000000000005,7.05,7.0200000000000005,120.74000000000001,121.10000000000001,121.33,121.57000000000001,121.83,122.09,122.39,122.68,123.44,19.51,19.150000000000002,18.97,18.78,18.580000000000002,18.400000000000002,18.2,18.02,17.63,N/A,N/A +2012,12,7,2,30,101340,100160,99010,87.91,0,6.22,6.68,6.78,6.82,6.84,6.8500000000000005,6.84,6.84,6.8,128.13,128.32,128.42000000000002,128.51,128.6,128.69,128.79,128.88,129.11,19.62,19.27,19.09,18.89,18.69,18.51,18.31,18.12,17.73,N/A,N/A +2012,12,7,3,30,101340,100150,99010,87.65,0,6.51,6.98,7.07,7.1000000000000005,7.11,7.11,7.09,7.07,7,128.29,128.61,128.75,128.9,129.05,129.19,129.36,129.52,129.94,19.7,19.35,19.16,18.97,18.77,18.580000000000002,18.39,18.2,17.82,N/A,N/A +2012,12,7,4,30,101320,100140,98990,87.21000000000001,0,6.3100000000000005,6.78,6.890000000000001,6.93,6.96,6.97,6.97,6.96,6.94,138.9,139.54,139.92000000000002,140.34,140.75,141.15,141.6,142.01,142.96,19.91,19.57,19.39,19.19,19,18.81,18.61,18.43,18.05,N/A,N/A +2012,12,7,5,30,101320,100130,98990,87.01,0,5.7700000000000005,6.2700000000000005,6.4,6.47,6.5200000000000005,6.5600000000000005,6.59,6.61,6.65,149.78,149.84,149.95000000000002,150.06,150.18,150.29,150.42000000000002,150.54,150.85,20.06,19.740000000000002,19.56,19.36,19.17,18.98,18.79,18.6,18.21,N/A,N/A +2012,12,7,6,30,101300,100120,98970,88.18,0,6.390000000000001,6.92,7.03,7.09,7.11,7.13,7.13,7.13,7.11,144.55,144.79,144.96,145.14000000000001,145.33,145.5,145.72,145.92000000000002,146.47,20.19,19.86,19.68,19.490000000000002,19.3,19.11,18.91,18.73,18.35,N/A,N/A +2012,12,7,7,30,101310,100130,98980,87.97,0,6.01,6.46,6.55,6.58,6.6000000000000005,6.61,6.62,6.63,6.76,147.29,147.67000000000002,147.96,148.31,148.69,149.09,149.65,150.19,152.53,20.29,19.98,19.8,19.61,19.42,19.240000000000002,19.04,18.87,18.51,N/A,N/A +2012,12,7,8,30,101300,100120,98980,89.69,0,6.34,6.82,6.91,6.94,6.97,6.99,7.08,7.19,7.88,147.74,148.12,148.41,148.78,149.28,149.86,151.34,152.97,162.86,20.51,20.21,20.05,19.86,19.67,19.5,19.330000000000002,19.18,19.05,N/A,N/A +2012,12,7,9,30,101280,100100,98960,86.93,0,5.98,6.59,6.7700000000000005,6.88,6.97,7.04,7.1000000000000005,7.15,7.24,172.04,171.98,172.02,172.1,172.22,172.38,172.59,172.81,173.49,21.07,20.85,20.7,20.53,20.35,20.18,20.01,19.84,19.490000000000002,N/A,N/A +2012,12,7,10,30,101290,100110,98970,85.81,0,4.8100000000000005,5.4,5.59,5.74,5.86,5.96,6.05,6.12,6.24,164.88,164.85,164.94,165.09,165.28,165.51,165.84,166.16,167.12,21.150000000000002,20.95,20.81,20.64,20.48,20.31,20.13,19.97,19.62,N/A,N/A +2012,12,7,11,30,101280,100110,98970,87.21000000000001,0,4.6000000000000005,5.26,5.5200000000000005,5.75,5.96,6.140000000000001,6.3100000000000005,6.46,6.71,161.95000000000002,162.93,163.61,164.43,165.26,166.11,167.07,167.99,170.13,21.13,20.93,20.8,20.64,20.490000000000002,20.330000000000002,20.16,20,19.66,N/A,N/A +2012,12,7,12,30,101280,100110,98970,89.3,0,3.79,4.39,4.63,4.84,5.03,5.2,5.37,5.54,6.11,160.06,161.1,161.95000000000002,163.03,164.19,165.45000000000002,167.12,168.78,175.35,21.11,20.93,20.81,20.67,20.53,20.39,20.26,20.14,20.01,N/A,N/A +2012,12,7,13,30,101290,100120,98980,89.64,0,4.11,4.71,4.95,5.19,5.39,5.59,5.83,6.0600000000000005,6.5,155.04,156.01,156.81,158.04,159.71,161.72,165.8,170.24,181.99,21.07,20.88,20.76,20.62,20.5,20.38,20.3,20.23,20.21,N/A,N/A +2012,12,7,14,30,101300,100130,98990,89.66,0,3.24,4.01,4.37,4.7700000000000005,5.15,5.5,5.8,6.05,6.22,162.27,165.66,167.94,170.19,171.87,173.17000000000002,174.29,175.29,179.32,21.21,21.13,21.07,21,20.92,20.830000000000002,20.72,20.61,20.36,N/A,N/A +2012,12,7,15,30,101300,100120,98990,89.83,0,3.56,4.3500000000000005,4.7,5.08,5.42,5.74,6.03,6.3,6.8100000000000005,170.9,173.16,174.72,176.52,178.06,179.44,180.62,181.67000000000002,185.91,21.34,21.23,21.16,21.07,20.98,20.89,20.77,20.650000000000002,20.400000000000002,N/A,N/A +2012,12,7,16,30,101300,100120,98990,88.54,0,3.72,4.39,4.68,5.03,5.4,5.8100000000000005,6.24,6.66,7.25,170.85,173.44,175.45000000000002,178.09,180.41,182.57,183.87,184.85,185.3,21.48,21.36,21.28,21.2,21.12,21.04,20.96,20.88,20.64,N/A,N/A +2012,12,7,17,30,101280,100110,98970,86.59,0,4.11,4.7700000000000005,5.04,5.32,5.58,5.84,6.09,6.33,6.78,172.16,173.27,174.08,175.07,176.07,177.12,178.24,179.32,182.1,21.68,21.52,21.41,21.28,21.150000000000002,21.02,20.89,20.76,20.5,N/A,N/A +2012,12,7,18,30,101260,100090,98950,84.33,0,4.61,5.33,5.61,5.88,6.11,6.32,6.5200000000000005,6.69,7.01,180.12,180.49,180.79,181.12,181.43,181.74,182.04,182.33,182.99,21.900000000000002,21.740000000000002,21.64,21.5,21.36,21.23,21.080000000000002,20.94,20.650000000000002,N/A,N/A +2012,12,7,19,30,101230,100060,98930,84.19,0,4.32,4.95,5.2,5.43,5.64,5.82,5.99,6.140000000000001,6.390000000000001,171.94,172.75,173.39000000000001,174.14000000000001,174.91,175.70000000000002,176.58,177.44,179.29,21.900000000000002,21.740000000000002,21.63,21.5,21.36,21.22,21.07,20.94,20.63,N/A,N/A +2012,12,7,20,30,101210,100040,98900,83.63,0,4.49,5.18,5.44,5.69,5.9,6.09,6.2700000000000005,6.43,6.8,168.37,169.35,170.1,171.02,171.96,172.92000000000002,173.95000000000002,174.92000000000002,176.8,21.900000000000002,21.75,21.64,21.5,21.37,21.23,21.080000000000002,20.95,20.66,N/A,N/A +2012,12,7,21,30,101200,100030,98890,83.64,0,4.55,5.37,5.7,6.01,6.28,6.53,6.76,6.97,7.3100000000000005,173.4,174.11,174.63,175.29,175.96,176.65,177.41,178.14000000000001,179.86,21.86,21.75,21.66,21.54,21.41,21.28,21.14,21,20.7,N/A,N/A +2012,12,7,22,30,101200,100030,98890,87.21000000000001,0,4.18,5.05,5.4,5.71,5.96,6.17,6.390000000000001,6.59,7.01,170.25,171.6,172.66,174.02,175.44,176.94,178.54,180.07,182.5,21.64,21.580000000000002,21.52,21.43,21.32,21.21,21.09,20.98,20.72,N/A,N/A +2012,12,7,23,30,101200,100030,98900,87.35000000000001,0,4.45,5.37,5.76,6.13,6.44,6.72,6.96,7.17,7.49,160.66,162.27,163.5,165.04,166.47,167.85,169.03,170.07,171.79,21.5,21.45,21.400000000000002,21.330000000000002,21.25,21.16,21.05,20.94,20.67,N/A,N/A +2012,12,8,0,30,101210,100040,98900,88.21000000000001,0,4.18,5.08,5.48,5.89,6.26,6.61,6.91,7.17,7.38,156.45000000000002,158.23,159.69,161.62,163.5,165.37,167.17000000000002,168.84,172.59,21.41,21.36,21.32,21.27,21.21,21.150000000000002,21.07,20.98,20.82,N/A,N/A +2012,12,8,1,30,101200,100030,98900,87.3,0,5.08,6.0200000000000005,6.4,6.78,7.12,7.43,7.72,7.98,8.38,156.20000000000002,157.09,157.8,158.8,159.9,161.11,162.49,163.86,166.74,21.46,21.36,21.29,21.2,21.11,21.02,20.92,20.830000000000002,20.63,N/A,N/A +2012,12,8,2,30,101200,100030,98900,86.13,0,5.44,6.45,6.8500000000000005,7.25,7.58,7.88,8.120000000000001,8.34,8.63,154.74,155.53,156.19,157.1,158.08,159.14000000000001,160.41,161.67000000000002,164.88,21.54,21.47,21.41,21.32,21.240000000000002,21.16,21.06,20.96,20.72,N/A,N/A +2012,12,8,3,30,101200,100030,98890,85.52,0,6.03,7.05,7.47,7.87,8.24,8.58,8.91,9.22,9.68,152.49,153.12,153.66,154.4,155.19,156.04,156.99,157.92000000000002,159.95000000000002,21.55,21.47,21.39,21.29,21.2,21.11,21.01,20.92,20.71,N/A,N/A +2012,12,8,4,30,101180,100010,98880,87.02,0,6.09,7.0600000000000005,7.44,7.79,8.1,8.4,8.69,8.96,9.51,149.86,150.64000000000001,151.29,152.20000000000002,153.20000000000002,154.3,155.56,156.79,159.45000000000002,21.490000000000002,21.37,21.29,21.18,21.080000000000002,20.98,20.88,20.78,20.6,N/A,N/A +2012,12,8,5,30,101200,100020,98890,86.12,0,6.17,7.25,7.7,8.15,8.56,8.93,9.28,9.61,10.14,153.92000000000002,154.81,155.47,156.28,157.05,157.83,158.63,159.4,161.07,21.580000000000002,21.490000000000002,21.42,21.31,21.21,21.11,21,20.89,20.650000000000002,N/A,N/A +2012,12,8,6,30,101200,100030,98900,86.68,0,5.91,6.95,7.38,7.78,8.14,8.47,8.76,9.02,9.4,162.83,163.39000000000001,163.82,164.42000000000002,165.04,165.71,166.46,167.21,169.11,21.7,21.61,21.54,21.43,21.32,21.21,21.09,20.97,20.7,N/A,N/A +2012,12,8,7,30,101230,100060,98930,88.92,0,5.73,6.78,7.22,7.65,8.03,8.39,8.73,9.05,9.59,167.31,168.18,168.85,169.72,170.57,171.46,172.39000000000001,173.29,175.22,21.69,21.61,21.53,21.43,21.330000000000002,21.23,21.12,21.02,20.79,N/A,N/A +2012,12,8,8,30,101230,100060,98930,89.67,0,4.72,5.7700000000000005,6.24,6.72,7.15,7.5600000000000005,7.94,8.290000000000001,8.81,170.73,171.57,172.27,173.19,174.1,175.05,176.03,176.98,179.62,21.68,21.64,21.59,21.52,21.45,21.36,21.26,21.16,20.91,N/A,N/A +2012,12,8,9,30,101250,100080,98950,90.48,0,4.66,5.7700000000000005,6.2700000000000005,6.79,7.26,7.7,8.07,8.39,8.85,173.62,174.86,175.76,176.79,177.58,178.21,178.75,179.23,180.54,21.72,21.71,21.68,21.62,21.55,21.47,21.38,21.28,21.04,N/A,N/A +2012,12,8,10,30,101270,100100,98960,90.89,0,4.3,5.4,5.91,6.41,6.87,7.32,7.7700000000000005,8.19,8.77,175.08,176.03,176.81,177.93,179.06,180.25,181.26,182.18,183.33,21.68,21.67,21.64,21.580000000000002,21.52,21.46,21.39,21.330000000000002,21.11,N/A,N/A +2012,12,8,11,30,101310,100140,99010,91.71000000000001,0,4.03,5.12,5.63,6.12,6.5200000000000005,6.86,7.17,7.46,7.890000000000001,169.44,170.96,172.12,173.34,174.37,175.27,176.58,178.01,181.95000000000002,21.64,21.650000000000002,21.63,21.580000000000002,21.52,21.43,21.32,21.22,21.01,N/A,N/A +2012,12,8,12,30,101320,100150,99010,91.9,0,4.3100000000000005,5.37,5.86,6.38,6.7700000000000005,7.05,7.16,7.19,7.28,174.26,176.32,178.01,180.16,182.37,184.70000000000002,188.34,192.18,195.52,21.66,21.67,21.67,21.650000000000002,21.61,21.56,21.5,21.43,21.18,N/A,N/A +2012,12,8,13,30,101330,100160,99030,93.52,0,3.8200000000000003,4.8500000000000005,5.32,5.8100000000000005,6.26,6.68,6.88,6.99,7.18,166.39000000000001,170.4,174,179.97,184.70000000000002,188.59,190.42000000000002,191.39000000000001,193.52,21.53,21.6,21.64,21.7,21.73,21.73,21.68,21.61,21.37,N/A,N/A +2012,12,8,14,30,101360,100190,99060,93.27,0,3.9,4.88,5.37,5.95,6.54,7.17,7.61,7.930000000000001,8.19,169.55,172.86,175.8,180.35,184.37,188.13,190.07,191.12,192.02,21.52,21.54,21.55,21.59,21.62,21.650000000000002,21.650000000000002,21.650000000000002,21.47,N/A,N/A +2012,12,8,15,30,101370,100190,99060,92.58,0,4.1,5.0200000000000005,5.44,5.89,6.390000000000001,6.96,7.45,7.9,7.97,167.38,168.93,170.25,172.08,174.07,176.32,178.4,180.32,183.91,21.57,21.51,21.48,21.45,21.42,21.39,21.34,21.28,21.21,N/A,N/A +2012,12,8,16,30,101350,100180,99050,90.19,0,4.8500000000000005,5.8100000000000005,6.23,6.640000000000001,6.97,7.24,7.41,7.53,7.82,170.84,172.07,173.20000000000002,174.91,176.59,178.29,179.63,180.75,182.38,21.79,21.740000000000002,21.7,21.68,21.650000000000002,21.64,21.62,21.6,21.5,N/A,N/A +2012,12,8,17,30,101330,100160,99030,89.53,0,5.19,6.09,6.48,6.9,7.3100000000000005,7.73,8.11,8.44,8.620000000000001,166.48,167.75,168.89000000000001,170.79,172.63,174.52,175.96,177.16,178.65,21.87,21.79,21.740000000000002,21.7,21.67,21.66,21.67,21.68,21.62,N/A,N/A +2012,12,8,18,30,101310,100140,99010,88.74,0,5.5,6.41,6.7700000000000005,7.11,7.43,7.74,8.06,8.370000000000001,8.950000000000001,158.42000000000002,159.59,160.57,161.96,163.43,165.04,166.69,168.27,170.69,21.92,21.81,21.740000000000002,21.64,21.56,21.48,21.400000000000002,21.330000000000002,21.17,N/A,N/A +2012,12,8,19,30,101290,100120,98990,87.09,0,5.48,6.45,6.83,7.21,7.54,7.86,8.15,8.42,8.92,155.43,156.19,156.79,157.69,158.69,159.79,161.09,162.37,165.06,21.98,21.89,21.82,21.72,21.63,21.54,21.44,21.34,21.12,N/A,N/A +2012,12,8,20,30,101280,100110,98980,87.71000000000001,0,5.4,6.42,6.86,7.2700000000000005,7.640000000000001,7.99,8.32,8.63,9.17,159.31,160.24,160.93,161.77,162.6,163.45000000000002,164.31,165.13,166.63,21.97,21.91,21.85,21.75,21.67,21.57,21.47,21.38,21.17,N/A,N/A +2012,12,8,21,30,101270,100100,98970,86.22,0,5.73,6.87,7.3500000000000005,7.79,8.16,8.5,8.82,9.120000000000001,9.65,165.37,166.11,166.63,167.29,167.97,168.69,169.4,170.08,171.07,22.01,21.990000000000002,21.94,21.87,21.79,21.7,21.59,21.490000000000002,21.25,N/A,N/A +2012,12,8,22,30,101280,100110,98980,87.97,0,4.97,6.1000000000000005,6.6000000000000005,7.09,7.53,7.94,8.32,8.68,9.3,169.33,169.88,170.29,170.87,171.42000000000002,171.97,172.44,172.84,173.48,21.88,21.87,21.830000000000002,21.76,21.68,21.6,21.490000000000002,21.38,21.11,N/A,N/A +2012,12,8,23,30,101260,100090,98960,88.74,0,5.2,6.390000000000001,6.93,7.47,7.96,8.41,8.84,9.25,9.92,166.04,167.23,168.11,169.17000000000002,170.16,171.13,171.99,172.77,173.79,21.830000000000002,21.830000000000002,21.81,21.76,21.7,21.64,21.55,21.47,21.26,N/A,N/A +2012,12,9,0,30,101280,100110,98980,89.96000000000001,0,6.0200000000000005,7.23,7.76,8.27,8.72,9.13,9.5,9.84,10.4,161.91,163.05,163.95000000000002,165.03,166.06,167.12,168.19,169.22,171.02,21.830000000000002,21.82,21.78,21.72,21.650000000000002,21.57,21.48,21.39,21.16,N/A,N/A +2012,12,9,1,30,101270,100100,98970,89.71000000000001,0,5.79,7.07,7.61,8.13,8.59,9.02,9.4,9.75,10.34,168.20000000000002,169.04,169.65,170.28,170.83,171.32,171.78,172.19,173.08,21.830000000000002,21.8,21.75,21.68,21.6,21.51,21.400000000000002,21.31,21.080000000000002,N/A,N/A +2012,12,9,2,30,101300,100130,98990,88.62,0,5.2700000000000005,6.43,6.95,7.47,7.92,8.35,8.73,9.07,9.66,177.84,178.33,178.73,179.3,179.86,180.46,181.07,181.65,182.70000000000002,21.86,21.86,21.82,21.75,21.68,21.6,21.51,21.41,21.19,N/A,N/A +2012,12,9,3,30,101290,100120,98980,89.53,0,5.12,6.2700000000000005,6.7700000000000005,7.26,7.68,8.07,8.42,8.74,9.26,177.63,177.78,177.94,178.21,178.5,178.81,179.17000000000002,179.53,180.41,21.81,21.79,21.75,21.67,21.580000000000002,21.48,21.37,21.26,21,N/A,N/A +2012,12,9,4,30,101260,100090,98960,89.68,0,5.22,6.49,7.05,7.61,8.08,8.51,8.9,9.25,9.88,171.77,172.99,173.85,174.69,175.4,176.03,176.57,177.03,177.64000000000001,21.830000000000002,21.830000000000002,21.79,21.73,21.650000000000002,21.56,21.46,21.35,21.09,N/A,N/A +2012,12,9,5,30,101250,100080,98950,90.14,0,5.3100000000000005,6.54,7.09,7.640000000000001,8.11,8.56,8.93,9.27,9.790000000000001,169.8,170.77,171.49,172.34,173.13,173.9,174.66,175.38,176.91,21.830000000000002,21.82,21.78,21.72,21.650000000000002,21.57,21.47,21.37,21.14,N/A,N/A +2012,12,9,6,30,101260,100090,98960,88.17,0,6.13,7.36,7.9,8.41,8.86,9.27,9.65,9.99,10.53,171.59,172.39000000000001,172.96,173.58,174.12,174.61,175.04,175.44,176.15,22.01,21.97,21.92,21.84,21.75,21.650000000000002,21.55,21.44,21.18,N/A,N/A +2012,12,9,7,30,101270,100110,98970,88,0,6.3500000000000005,7.63,8.18,8.72,9.200000000000001,9.65,10.06,10.450000000000001,11.09,174.63,175.23,175.69,176.26,176.83,177.42000000000002,178,178.55,179.47,22.09,22.07,22.03,21.96,21.89,21.81,21.71,21.62,21.39,N/A,N/A +2012,12,9,8,30,101280,100110,98970,87.57000000000001,0,6.51,7.78,8.31,8.82,9.27,9.68,10.06,10.41,11.03,175.17000000000002,175.71,176.13,176.67000000000002,177.20000000000002,177.74,178.3,178.84,179.82,22.150000000000002,22.13,22.09,22.02,21.94,21.86,21.76,21.67,21.44,N/A,N/A +2012,12,9,9,30,101280,100110,98980,88.42,0,6.22,7.48,8.02,8.540000000000001,8.99,9.4,9.76,10.08,10.61,176.32,176.82,177.22,177.8,178.38,178.99,179.63,180.24,181.42000000000002,22.12,22.11,22.07,22,21.92,21.84,21.740000000000002,21.64,21.39,N/A,N/A +2012,12,9,10,30,101280,100110,98980,90.73,0,5.63,6.88,7.43,7.98,8.47,8.91,9.28,9.620000000000001,10.13,179.4,180.44,181.25,182.24,183.17000000000002,184.11,185.08,186,188,22.06,22.05,22.02,21.96,21.89,21.81,21.71,21.6,21.34,N/A,N/A +2012,12,9,11,30,101290,100120,98990,93.03,0,5.22,6.41,6.92,7.44,7.91,8.35,8.76,9.15,9.74,184.36,185.83,186.91,188.24,189.47,190.66,191.62,192.45000000000002,193.26,21.98,21.96,21.92,21.86,21.79,21.72,21.64,21.56,21.36,N/A,N/A +2012,12,9,12,30,101320,100150,99020,94.58,0,4.25,5.44,5.97,6.49,6.92,7.3,7.7700000000000005,8.26,9.06,187.76,189.1,190.11,191.28,192.61,194.11,196.25,198.57,200.74,21.91,21.92,21.900000000000002,21.85,21.78,21.71,21.650000000000002,21.580000000000002,21.44,N/A,N/A +2012,12,9,13,30,101330,100160,99030,94.92,0,4.3100000000000005,5.67,6.32,6.93,7.49,8,8.39,8.72,9.1,194.23000000000002,195.66,196.93,198.95000000000002,200.88,202.83,204.04,204.9,204.99,21.95,22.06,22.1,22.11,22.09,22.06,22,21.94,21.76,N/A,N/A +2012,12,9,14,30,101360,100190,99060,96.52,0,3.23,4.3500000000000005,4.93,5.62,6.49,7.58,8.19,8.540000000000001,9.17,179.88,184.75,188.28,192.05,195.53,199.06,200.92000000000002,201.99,203.39000000000001,21.75,21.78,21.79,21.8,21.85,21.93,21.92,21.87,21.81,N/A,N/A +2012,12,9,15,30,101360,100190,99060,97.58,0,3.04,3.98,4.48,5.19,6.07,7.2,7.87,8.3,9.03,171.88,178.69,183.79,190.07,194.43,197.27,199.20000000000002,200.64000000000001,202.57,21.68,21.63,21.63,21.67,21.72,21.77,21.75,21.72,21.67,N/A,N/A +2012,12,9,16,30,101330,100160,99030,95.81,0,4.54,5.69,6.2700000000000005,6.93,7.54,8.14,8.68,9.18,9.96,187.66,189.39000000000001,190.77,192.52,194.04,195.41,196.46,197.34,199.52,22.05,22,21.97,21.95,21.92,21.900000000000002,21.85,21.8,21.59,N/A,N/A +2012,12,9,17,30,101290,100130,99000,95.69,0,4.54,5.66,6.22,6.87,7.5200000000000005,8.22,8.94,9.65,10.26,191.44,192.84,194.01,195.85,197.72,199.70000000000002,201.15,202.34,202.59,22.17,22.11,22.080000000000002,22.07,22.1,22.150000000000002,22.19,22.23,22.13,N/A,N/A +2012,12,9,18,30,101280,100110,98980,95.98,0,5.04,6.05,6.51,6.99,7.46,7.92,8.4,8.870000000000001,10.09,184.38,185.59,186.61,188.1,189.77,191.70000000000002,194.4,197.3,202.47,22.26,22.150000000000002,22.080000000000002,22,21.94,21.88,21.85,21.830000000000002,21.95,N/A,N/A +2012,12,9,19,30,101250,100080,98960,93.96000000000001,0,5.21,6.43,7,7.65,8.31,9.02,9.790000000000001,10.56,11.99,192.35,193.87,195.1,196.81,198.38,199.92000000000002,201.14000000000001,202.20000000000002,203.21,22.47,22.46,22.45,22.46,22.47,22.5,22.52,22.55,22.45,N/A,N/A +2012,12,9,20,30,101210,100050,98920,93.75,0,5.51,6.8500000000000005,7.46,8.09,8.64,9.16,9.64,10.1,11.11,191.46,192.48000000000002,193.28,194.33,195.28,196.19,197.04,197.82,198.98000000000002,22.52,22.53,22.52,22.48,22.44,22.38,22.32,22.26,22.11,N/A,N/A +2012,12,9,21,30,101190,100030,98900,94.83,0,4.72,6.09,6.7,7.28,7.8100000000000005,8.3,8.8,9.3,10.450000000000001,186.45000000000002,188.19,189.58,191.4,193.18,195,196.64000000000001,198.17000000000002,200.35,22.41,22.490000000000002,22.5,22.48,22.45,22.42,22.38,22.34,22.25,N/A,N/A +2012,12,9,22,30,101150,99990,98860,92.42,0,4.92,6.38,7.07,7.7700000000000005,8.4,8.98,9.6,10.200000000000001,11.48,186.70000000000002,188.23,189.39000000000001,190.71,191.89000000000001,193.01,194.58,196.29,199.98000000000002,22.36,22.52,22.580000000000002,22.64,22.68,22.71,22.740000000000002,22.77,22.64,N/A,N/A +2012,12,9,23,30,101130,99970,98840,91.74,0,5.09,6.5200000000000005,7.17,7.8500000000000005,8.53,9.27,10.15,11.07,12.06,182.92000000000002,184.24,185.39000000000001,187.20000000000002,189.12,191.22,193.02,194.68,195.72,22.28,22.43,22.490000000000002,22.56,22.64,22.72,22.77,22.81,22.61,N/A,N/A +2012,12,10,0,30,101120,99960,98830,92.58,0,5.3,6.74,7.42,8.13,8.76,9.36,10.07,10.81,12.07,181.57,182.57,183.37,184.46,185.8,187.44,189.82,192.48000000000002,195.62,22.240000000000002,22.36,22.41,22.46,22.53,22.62,22.72,22.830000000000002,22.72,N/A,N/A +2012,12,10,1,30,101120,99950,98820,93.99,0,5.38,6.78,7.45,8.15,8.78,9.4,9.96,10.46,11.290000000000001,176.07,176.98,177.75,178.81,179.95000000000002,181.24,182.62,183.99,186.48,22.16,22.23,22.25,22.240000000000002,22.23,22.22,22.19,22.14,21.96,N/A,N/A +2012,12,10,2,30,101100,99930,98810,94.4,0,6.03,7.48,8.14,8.83,9.450000000000001,10.02,10.53,10.98,11.63,177.97,178.49,178.92000000000002,179.48,180.02,180.58,181.12,181.61,182.79,22.23,22.28,22.28,22.26,22.23,22.19,22.12,22.04,21.830000000000002,N/A,N/A +2012,12,10,3,30,101080,99910,98790,94.22,0,6.24,7.71,8.370000000000001,9.02,9.6,10.16,10.71,11.23,12.17,178.1,179.18,179.96,180.9,181.76,182.59,183.31,183.95000000000002,184.81,22.26,22.32,22.31,22.29,22.25,22.2,22.150000000000002,22.09,21.92,N/A,N/A +2012,12,10,4,30,101060,99890,98770,92.74,0,6.57,8.08,8.74,9.38,9.96,10.5,11,11.450000000000001,12.200000000000001,183.16,183.43,183.66,184.01,184.38,184.8,185.25,185.67000000000002,186.52,22.35,22.400000000000002,22.39,22.35,22.3,22.25,22.18,22.1,21.900000000000002,N/A,N/A +2012,12,10,5,30,101030,99860,98740,91.86,0,7.42,8.950000000000001,9.61,10.25,10.8,11.32,11.8,12.24,13.030000000000001,184.70000000000002,185.21,185.58,186.02,186.43,186.85,187.27,187.67000000000002,188.41,22.44,22.490000000000002,22.48,22.46,22.41,22.36,22.29,22.22,22.02,N/A,N/A +2012,12,10,6,30,101050,99890,98760,92.67,0,6.28,7.8100000000000005,8.5,9.18,9.77,10.33,10.85,11.33,12.200000000000001,186.65,187.23,187.69,188.28,188.82,189.36,189.86,190.31,191.17000000000002,22.3,22.400000000000002,22.41,22.38,22.34,22.29,22.22,22.14,21.95,N/A,N/A +2012,12,10,7,30,101050,99880,98760,93.31,0,6.34,7.9,8.620000000000001,9.36,10,10.58,11.11,11.61,12.44,193.46,193.96,194.32,194.84,195.33,195.8,196.21,196.56,197.06,22.28,22.37,22.38,22.37,22.34,22.3,22.23,22.17,21.97,N/A,N/A +2012,12,10,8,30,101010,99850,98720,94.36,0,4.86,6.38,7.11,7.86,8.540000000000001,9.19,9.790000000000001,10.35,11.44,202.20000000000002,202.09,202.06,202.24,202.5,202.86,203.24,203.6,204.04,22.080000000000002,22.18,22.19,22.19,22.16,22.13,22.07,22.01,21.85,N/A,N/A +2012,12,10,9,30,101110,99920,98770,99.10000000000001,4.4,11.76,12.81,13.19,13.4,13.55,13.66,13.75,13.82,13.94,330.29,330.1,330.24,330.41,330.57,330.73,330.90000000000003,331.06,331.43,17.26,16.73,16.53,16.36,16.22,16.080000000000002,15.950000000000001,15.83,15.59,N/A,N/A +2012,12,10,10,30,101190,99990,98830,95.18,150.9,12.89,13.99,14.290000000000001,14.43,14.51,14.57,14.6,14.63,14.72,349.23,349.25,349.21,349.13,349.04,348.94,348.81,348.68,348.25,15.89,15.23,14.99,14.780000000000001,14.59,14.41,14.23,14.07,13.76,N/A,N/A +2012,12,10,11,30,101240,100040,98870,91.9,12.8,12.950000000000001,14.040000000000001,14.3,14.4,14.450000000000001,14.47,14.47,14.450000000000001,14.4,340.15000000000003,340.55,340.8,341.06,341.33,341.59000000000003,341.88,342.16,342.82,15.290000000000001,14.6,14.35,14.13,13.92,13.73,13.540000000000001,13.370000000000001,13.01,N/A,N/A +2012,12,10,12,30,101330,100120,98940,86,0,14.09,15.35,15.67,15.83,15.93,15.99,16.02,16.03,16.03,346.93,346.72,346.58,346.44,346.31,346.18,346.04,345.91,345.62,14.040000000000001,13.24,12.950000000000001,12.71,12.48,12.280000000000001,12.07,11.870000000000001,11.48,N/A,N/A +2012,12,10,13,30,101380,100160,98980,75.71000000000001,0,16.22,17.79,18.19,18.41,18.53,18.62,18.67,18.7,18.72,344.26,344.19,344.18,344.15000000000003,344.11,344.07,344.01,343.96,343.86,13.32,12.42,12.120000000000001,11.86,11.620000000000001,11.41,11.19,10.99,10.59,N/A,N/A +2012,12,10,14,30,101450,100220,99040,72.65,0,16.080000000000002,17.61,18.01,18.22,18.34,18.43,18.490000000000002,18.52,18.56,346.61,346.51,346.45,346.40000000000003,346.34000000000003,346.29,346.23,346.18,346.07,12.76,11.84,11.53,11.27,11.03,10.82,10.6,10.4,10.01,N/A,N/A +2012,12,10,15,30,101550,100330,99140,72.59,0,14.33,15.6,15.950000000000001,16.13,16.25,16.32,16.37,16.41,16.45,352.22,351.97,351.8,351.64,351.48,351.34000000000003,351.18,351.04,350.75,12.21,11.31,11,10.74,10.51,10.3,10.08,9.88,9.48,N/A,N/A +2012,12,10,16,30,101620,100390,99200,71.67,0,12.67,13.700000000000001,13.96,14.09,14.17,14.23,14.26,14.280000000000001,14.290000000000001,351.16,350.94,350.79,350.66,350.53000000000003,350.43,350.31,350.21,349.99,11.67,10.8,10.5,10.24,10.01,9.8,9.58,9.38,8.98,N/A,N/A +2012,12,10,17,30,101620,100390,99200,65.02,0,12.89,13.91,14.15,14.27,14.33,14.36,14.370000000000001,14.370000000000001,14.35,354.89,354.83,354.79,354.74,354.68,354.63,354.58,354.52,354.39,11.450000000000001,10.57,10.27,10.02,9.790000000000001,9.59,9.370000000000001,9.18,8.790000000000001,N/A,N/A +2012,12,10,18,30,101650,100420,99230,63.83,0,11.55,12.450000000000001,12.68,12.8,12.88,12.93,12.97,12.99,13.030000000000001,351.05,350.85,350.75,350.64,350.55,350.46,350.36,350.27,350.09000000000003,11.700000000000001,10.88,10.59,10.35,10.120000000000001,9.91,9.700000000000001,9.5,9.11,N/A,N/A +2012,12,10,19,30,101680,100450,99260,59.93,0,11.1,11.94,12.15,12.26,12.32,12.370000000000001,12.4,12.42,12.44,350.75,350.69,350.64,350.6,350.56,350.53000000000003,350.49,350.46,350.39,12.07,11.27,10.99,10.74,10.51,10.31,10.09,9.89,9.49,N/A,N/A +2012,12,10,20,30,101660,100440,99240,58.88,0,10.53,11.3,11.49,11.58,11.65,11.69,11.71,11.73,11.75,347.17,347.14,347.12,347.1,347.07,347.04,347.01,346.99,346.93,12.290000000000001,11.52,11.24,10.99,10.77,10.56,10.34,10.14,9.74,N/A,N/A +2012,12,10,21,30,101660,100440,99250,57.03,0,10.14,10.86,11.040000000000001,11.13,11.19,11.22,11.25,11.26,11.27,350.27,350.12,350.01,349.90000000000003,349.79,349.7,349.6,349.5,349.32,12.49,11.74,11.47,11.23,11.01,10.8,10.58,10.38,9.97,N/A,N/A +2012,12,10,22,30,101660,100440,99250,57.32,0,9.86,10.55,10.71,10.78,10.83,10.86,10.870000000000001,10.88,10.870000000000001,351.54,351.48,351.42,351.36,351.3,351.25,351.19,351.14,351.05,12.47,11.73,11.450000000000001,11.21,10.98,10.78,10.56,10.36,9.950000000000001,N/A,N/A +2012,12,10,23,30,101710,100480,99290,55.730000000000004,0,9.99,10.68,10.85,10.92,10.96,10.99,11,11,11,354.63,354.51,354.45,354.40000000000003,354.35,354.3,354.25,354.2,354.1,12.18,11.43,11.16,10.91,10.69,10.48,10.26,10.06,9.66,N/A,N/A +2012,12,11,0,30,101780,100550,99360,55.59,0,9.84,10.48,10.63,10.69,10.72,10.74,10.74,10.73,10.71,1.34,1.09,0.92,0.75,0.6,0.46,0.31,0.18,359.90000000000003,11.6,10.83,10.55,10.3,10.08,9.870000000000001,9.65,9.450000000000001,9.05,N/A,N/A +2012,12,11,1,30,101830,100590,99390,55.730000000000004,0,9.8,10.44,10.57,10.63,10.65,10.66,10.66,10.65,10.620000000000001,1.59,1.3900000000000001,1.26,1.1400000000000001,1.02,0.91,0.8,0.6900000000000001,0.48,11.06,10.27,9.99,9.75,9.52,9.32,9.1,8.9,8.5,N/A,N/A +2012,12,11,2,30,101860,100630,99430,56.22,0,10.07,10.72,10.85,10.9,10.92,10.93,10.92,10.9,10.86,2.27,2.13,2.0300000000000002,1.94,1.86,1.78,1.69,1.61,1.44,10.68,9.870000000000001,9.59,9.35,9.120000000000001,8.91,8.700000000000001,8.5,8.1,N/A,N/A +2012,12,11,3,30,101890,100650,99440,56.800000000000004,0,9.870000000000001,10.49,10.6,10.64,10.65,10.65,10.63,10.61,10.55,4.11,4.09,4.08,4.07,4.05,4.04,4.0200000000000005,3.99,3.95,10.27,9.46,9.18,8.93,8.71,8.5,8.28,8.08,7.69,N/A,N/A +2012,12,11,4,30,101890,100640,99440,59.43,0,10.07,10.69,10.8,10.84,10.84,10.84,10.81,10.790000000000001,10.72,2.59,2.77,2.89,2.99,3.09,3.16,3.25,3.33,3.47,9.78,8.94,8.65,8.4,8.17,7.96,7.74,7.54,7.15,N/A,N/A +2012,12,11,5,30,101890,100650,99440,61.89,0,10.200000000000001,10.85,10.98,11.03,11.05,11.05,11.040000000000001,11.02,10.97,6.1000000000000005,6.34,6.48,6.6000000000000005,6.71,6.8100000000000005,6.91,7,7.17,9.34,8.48,8.18,7.930000000000001,7.7,7.48,7.26,7.0600000000000005,6.66,N/A,N/A +2012,12,11,6,30,101930,100690,99480,63.96,0,9.9,10.51,10.64,10.68,10.700000000000001,10.71,10.69,10.68,10.63,10.540000000000001,10.73,10.81,10.89,10.96,11.02,11.09,11.15,11.27,9.09,8.23,7.930000000000001,7.68,7.44,7.23,7.01,6.8,6.4,N/A,N/A +2012,12,11,7,30,101930,100680,99470,64.21000000000001,0,10.06,10.69,10.82,10.870000000000001,10.89,10.89,10.88,10.86,10.82,17.81,17.94,17.990000000000002,18.04,18.080000000000002,18.12,18.17,18.21,18.28,8.78,7.91,7.61,7.36,7.12,6.91,6.69,6.48,6.08,N/A,N/A +2012,12,11,8,30,101960,100720,99500,64.13,0,9.950000000000001,10.55,10.67,10.71,10.72,10.72,10.700000000000001,10.67,10.61,21.68,21.73,21.81,21.88,21.94,22,22.05,22.11,22.2,8.52,7.640000000000001,7.34,7.08,6.84,6.63,6.42,6.21,5.8100000000000005,N/A,N/A +2012,12,11,9,30,101970,100720,99510,64.15,0,9.51,10.07,10.17,10.21,10.22,10.22,10.200000000000001,10.18,10.120000000000001,20.900000000000002,21.080000000000002,21.2,21.32,21.42,21.52,21.62,21.7,21.89,8.49,7.63,7.33,7.08,6.8500000000000005,6.640000000000001,6.42,6.22,5.82,N/A,N/A +2012,12,11,10,30,102020,100770,99560,64.56,0,8.84,9.33,9.41,9.44,9.44,9.43,9.41,9.38,9.31,20.39,20.650000000000002,20.84,20.990000000000002,21.14,21.28,21.41,21.54,21.79,8.51,7.68,7.390000000000001,7.140000000000001,6.9,6.69,6.48,6.28,5.88,N/A,N/A +2012,12,11,11,30,102040,100800,99580,65.87,0,8.64,9.09,9.16,9.18,9.17,9.16,9.13,9.1,9.02,23.78,24.04,24.25,24.43,24.6,24.76,24.92,25.07,25.38,8.6,7.78,7.49,7.24,7.01,6.8,6.59,6.390000000000001,5.99,N/A,N/A +2012,12,11,12,30,102050,100800,99590,66.93,0,8.18,8.59,8.65,8.66,8.65,8.63,8.61,8.58,8.5,26.03,26.39,26.61,26.810000000000002,27.01,27.18,27.36,27.54,27.88,8.77,7.98,7.69,7.45,7.22,7.01,6.8,6.6000000000000005,6.21,N/A,N/A +2012,12,11,13,30,102030,100790,99580,69.18,0,8.77,9.23,9.3,9.31,9.3,9.27,9.24,9.200000000000001,9.120000000000001,26.32,26.76,27.02,27.25,27.48,27.68,27.900000000000002,28.1,28.5,8.84,8.03,7.74,7.49,7.26,7.0600000000000005,6.84,6.65,6.25,N/A,N/A +2012,12,11,14,30,102090,100850,99640,69,0,8.44,8.89,8.950000000000001,8.950000000000001,8.93,8.91,8.870000000000001,8.84,8.75,26.38,26.78,27.060000000000002,27.310000000000002,27.560000000000002,27.78,28.02,28.240000000000002,28.7,8.84,8.03,7.74,7.5,7.2700000000000005,7.07,6.8500000000000005,6.65,6.26,N/A,N/A +2012,12,11,15,30,102090,100840,99630,66.9,0,8.11,8.51,8.58,8.58,8.58,8.56,8.53,8.5,8.42,26.22,26.62,26.87,27.1,27.310000000000002,27.51,27.72,27.91,28.3,8.950000000000001,8.17,7.88,7.640000000000001,7.41,7.2,6.99,6.79,6.390000000000001,N/A,N/A +2012,12,11,16,30,102080,100840,99630,64.77,0,7.47,7.83,7.86,7.86,7.84,7.82,7.79,7.75,7.68,23.72,24.080000000000002,24.35,24.59,24.82,25.03,25.25,25.46,25.87,9.200000000000001,8.45,8.17,7.930000000000001,7.7,7.5,7.29,7.09,6.7,N/A,N/A +2012,12,11,17,30,102070,100820,99610,61.74,0,7.11,7.44,7.48,7.48,7.46,7.45,7.42,7.390000000000001,7.3100000000000005,15.06,15.46,15.69,15.91,16.12,16.32,16.53,16.73,17.13,9.58,8.85,8.58,8.34,8.120000000000001,7.92,7.71,7.5200000000000005,7.12,N/A,N/A +2012,12,11,18,30,102100,100860,99660,59.35,0,5.96,6.2,6.24,6.25,6.24,6.23,6.21,6.19,6.140000000000001,14.57,14.780000000000001,14.91,15.040000000000001,15.16,15.27,15.38,15.49,15.700000000000001,10.08,9.39,9.13,8.9,8.67,8.47,8.26,8.06,7.67,N/A,N/A +2012,12,11,19,30,102070,100830,99620,56.800000000000004,0,6.19,6.47,6.5200000000000005,6.53,6.53,6.5200000000000005,6.51,6.5,6.47,11.290000000000001,11.47,11.58,11.67,11.76,11.84,11.93,12,12.16,10.59,9.91,9.65,9.42,9.200000000000001,9,8.78,8.59,8.19,N/A,N/A +2012,12,11,20,30,102090,100850,99650,54.06,0,4.37,4.57,4.59,4.59,4.59,4.58,4.57,4.57,4.54,12.51,12.950000000000001,13.24,13.51,13.77,14,14.23,14.450000000000001,14.88,11.13,10.52,10.27,10.040000000000001,9.83,9.63,9.41,9.21,8.82,N/A,N/A +2012,12,11,21,30,102020,100790,99590,53.19,0,5.84,6.11,6.16,6.19,6.19,6.2,6.19,6.19,6.17,8.2,8.700000000000001,9,9.27,9.52,9.74,9.96,10.17,10.58,11.69,11.05,10.8,10.57,10.35,10.15,9.93,9.73,9.33,N/A,N/A +2012,12,11,22,30,102110,100880,99680,49.11,0,4.65,4.82,4.83,4.82,4.8,4.79,4.7700000000000005,4.75,4.71,2.7600000000000002,3.18,3.45,3.69,3.92,4.13,4.3500000000000005,4.5600000000000005,4.96,12.040000000000001,11.450000000000001,11.21,10.99,10.77,10.58,10.36,10.16,9.77,N/A,N/A +2012,12,11,23,30,102050,100820,99620,51.9,0,7.25,7.62,7.68,7.69,7.69,7.68,7.66,7.640000000000001,7.6000000000000005,12.88,13.120000000000001,13.25,13.370000000000001,13.49,13.59,13.71,13.8,14.01,12.290000000000001,11.63,11.38,11.15,10.92,10.72,10.51,10.31,9.91,N/A,N/A +2012,12,12,0,30,102100,100860,99670,54.57,0,8.14,8.58,8.64,8.65,8.64,8.620000000000001,8.6,8.57,8.51,15.41,15.66,15.73,15.81,15.89,15.96,16.05,16.12,16.28,12.13,11.43,11.18,10.950000000000001,10.72,10.52,10.31,10.11,9.71,N/A,N/A +2012,12,12,1,30,102210,100980,99780,54.49,0,6.76,7.09,7.140000000000001,7.15,7.140000000000001,7.13,7.1000000000000005,7.08,7.0200000000000005,16.68,16.96,17.06,17.16,17.240000000000002,17.32,17.400000000000002,17.46,17.61,11.91,11.25,11,10.77,10.540000000000001,10.34,10.13,9.93,9.53,N/A,N/A +2012,12,12,2,30,102210,100970,99770,55.660000000000004,0,7.97,8.4,8.46,8.47,8.47,8.46,8.43,8.4,8.33,21.62,21.76,21.85,21.92,22,22.06,22.13,22.19,22.31,11.73,11.03,10.77,10.540000000000001,10.32,10.120000000000001,9.9,9.700000000000001,9.3,N/A,N/A +2012,12,12,3,30,102250,101020,99810,55.56,0,7.67,8.07,8.13,8.14,8.13,8.11,8.08,8.06,7.99,22.53,22.91,23.16,23.37,23.59,23.78,23.990000000000002,24.18,24.57,11.65,10.96,10.700000000000001,10.47,10.24,10.040000000000001,9.83,9.63,9.23,N/A,N/A +2012,12,12,4,30,102280,101050,99840,57.15,0,7.33,7.7,7.75,7.76,7.75,7.74,7.72,7.69,7.63,27.02,27.35,27.59,27.810000000000002,28.01,28.2,28.39,28.57,28.93,11.71,11.02,10.77,10.540000000000001,10.31,10.120000000000001,9.9,9.700000000000001,9.3,N/A,N/A +2012,12,12,5,30,102310,101070,99870,58.19,0,8,8.41,8.47,8.48,8.47,8.45,8.41,8.38,8.3,22.41,22.830000000000002,23.1,23.34,23.57,23.78,24.01,24.21,24.64,11.53,10.82,10.56,10.33,10.1,9.9,9.69,9.49,9.09,N/A,N/A +2012,12,12,6,30,102340,101100,99900,57.4,0,6.86,7.2,7.25,7.26,7.25,7.25,7.22,7.2,7.140000000000001,31.54,31.84,32.05,32.230000000000004,32.410000000000004,32.57,32.730000000000004,32.88,33.2,11.75,11.11,10.86,10.63,10.41,10.22,10,9.81,9.41,N/A,N/A +2012,12,12,7,30,102380,101150,99950,56.34,0,6.7700000000000005,7.09,7.13,7.13,7.11,7.09,7.0600000000000005,7.03,6.96,26.62,27.02,27.26,27.48,27.7,27.88,28.09,28.28,28.67,11.82,11.17,10.93,10.700000000000001,10.48,10.290000000000001,10.07,9.88,9.49,N/A,N/A +2012,12,12,8,30,102410,101170,99970,56.870000000000005,0,7.5600000000000005,7.92,7.97,7.96,7.94,7.91,7.87,7.83,7.74,22.77,23.1,23.3,23.48,23.650000000000002,23.8,23.96,24.11,24.41,11.59,10.91,10.66,10.43,10.21,10.01,9.8,9.61,9.21,N/A,N/A +2012,12,12,9,30,102450,101210,100010,57.620000000000005,0,7.63,8,8.05,8.05,8.03,8.01,7.97,7.930000000000001,7.84,24.330000000000002,24.580000000000002,24.740000000000002,24.88,25.03,25.150000000000002,25.28,25.400000000000002,25.650000000000002,11.24,10.55,10.3,10.07,9.85,9.65,9.44,9.25,8.86,N/A,N/A +2012,12,12,10,30,102480,101240,100030,59.1,0,8.09,8.52,8.58,8.58,8.56,8.540000000000001,8.5,8.46,8.370000000000001,26.77,27.02,27.21,27.37,27.53,27.66,27.810000000000002,27.94,28.22,10.98,10.26,9.99,9.76,9.540000000000001,9.34,9.13,8.94,8.540000000000001,N/A,N/A +2012,12,12,11,30,102500,101260,100050,57.81,0,7.63,8.02,8.08,8.09,8.08,8.06,8.03,8,7.92,28.59,28.810000000000002,28.94,29.07,29.18,29.28,29.38,29.48,29.67,10.98,10.290000000000001,10.03,9.8,9.58,9.38,9.17,8.98,8.59,N/A,N/A +2012,12,12,12,30,102530,101290,100080,55.910000000000004,0,7.62,8,8.05,8.06,8.040000000000001,8.03,7.99,7.96,7.88,27.91,28.150000000000002,28.32,28.46,28.6,28.72,28.85,28.97,29.2,10.96,10.26,10,9.77,9.55,9.36,9.15,8.96,8.56,N/A,N/A +2012,12,12,13,30,102550,101310,100100,56.85,0,7.62,8.02,8.07,8.08,8.06,8.040000000000001,8.01,7.98,7.9,27.87,28.07,28.19,28.3,28.400000000000002,28.490000000000002,28.580000000000002,28.66,28.82,10.98,10.28,10.02,9.790000000000001,9.57,9.38,9.17,8.97,8.59,N/A,N/A +2012,12,12,14,30,102590,101350,100140,55.71,0,7.68,8.07,8.13,8.13,8.120000000000001,8.1,8.07,8.03,7.95,28.78,29.05,29.21,29.35,29.490000000000002,29.61,29.75,29.86,30.09,10.91,10.21,9.96,9.73,9.51,9.32,9.11,8.92,8.53,N/A,N/A +2012,12,12,15,30,102620,101380,100170,55.28,0,7.59,7.99,8.040000000000001,8.06,8.05,8.03,8,7.97,7.9,29.38,29.55,29.67,29.78,29.87,29.96,30.04,30.12,30.27,11.01,10.32,10.06,9.84,9.620000000000001,9.43,9.22,9.03,8.64,N/A,N/A +2012,12,12,16,30,102630,101390,100180,52.19,0,7.17,7.54,7.59,7.61,7.6000000000000005,7.59,7.57,7.54,7.49,28.310000000000002,28.47,28.55,28.64,28.7,28.76,28.830000000000002,28.88,28.98,11.200000000000001,10.52,10.27,10.05,9.83,9.64,9.43,9.24,8.85,N/A,N/A +2012,12,12,17,30,102620,101380,100170,48.54,0,6.94,7.29,7.34,7.36,7.3500000000000005,7.34,7.32,7.3,7.25,28.01,28.23,28.36,28.48,28.59,28.69,28.79,28.88,29.07,11.55,10.89,10.64,10.42,10.200000000000001,10.01,9.8,9.61,9.22,N/A,N/A +2012,12,12,18,30,102620,101380,100170,47.17,0,6.4,6.72,6.7700000000000005,6.78,6.78,6.78,6.7700000000000005,6.75,6.72,26.92,27.14,27.26,27.37,27.47,27.57,27.66,27.75,27.92,11.89,11.27,11.02,10.8,10.59,10.39,10.19,9.99,9.6,N/A,N/A +2012,12,12,19,30,102600,101360,100160,45.31,0,5.72,6,6.05,6.0600000000000005,6.07,6.07,6.0600000000000005,6.0600000000000005,6.04,27.830000000000002,27.900000000000002,27.94,27.97,28,28.03,28.05,28.07,28.1,12.33,11.74,11.5,11.28,11.07,10.88,10.66,10.47,10.08,N/A,N/A +2012,12,12,20,30,102570,101340,100140,43.5,0,5.39,5.65,5.7,5.72,5.73,5.73,5.73,5.73,5.72,29.79,29.69,29.63,29.55,29.490000000000002,29.43,29.36,29.29,29.14,12.790000000000001,12.22,11.99,11.77,11.56,11.36,11.15,10.96,10.56,N/A,N/A +2012,12,12,21,30,102560,101330,100130,40.43,0,4.86,5.1000000000000005,5.15,5.17,5.18,5.19,5.19,5.19,5.19,33.980000000000004,33.84,33.730000000000004,33.63,33.53,33.44,33.35,33.26,33.06,13.33,12.780000000000001,12.55,12.34,12.13,11.93,11.72,11.53,11.13,N/A,N/A +2012,12,12,22,30,102550,101320,100120,38.800000000000004,0,4.92,5.16,5.2,5.22,5.23,5.23,5.23,5.23,5.23,35.660000000000004,35.63,35.6,35.56,35.53,35.5,35.46,35.44,35.37,13.72,13.18,12.96,12.75,12.530000000000001,12.34,12.13,11.93,11.540000000000001,N/A,N/A +2012,12,12,23,30,102540,101310,100110,39.47,0,5.24,5.5,5.54,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.55,5.54,33.64,33.89,34.05,34.2,34.33,34.45,34.58,34.7,34.94,13.98,13.44,13.22,13.01,12.790000000000001,12.6,12.39,12.200000000000001,11.8,N/A,N/A +2012,12,13,0,30,102560,101330,100130,42.15,0,5.57,5.84,5.88,5.89,5.89,5.89,5.88,5.87,5.84,38.300000000000004,38.730000000000004,39,39.24,39.480000000000004,39.68,39.89,40.09,40.5,14.11,13.57,13.35,13.13,12.92,12.73,12.52,12.32,11.93,N/A,N/A +2012,12,13,1,30,102560,101330,100140,44.660000000000004,0,5.36,5.6000000000000005,5.63,5.64,5.63,5.62,5.6000000000000005,5.59,5.55,45.17,45.68,45.980000000000004,46.25,46.52,46.75,47,47.230000000000004,47.71,14.14,13.61,13.38,13.17,12.96,12.77,12.56,12.36,11.97,N/A,N/A +2012,12,13,2,30,102570,101340,100150,47.95,0,5.38,5.65,5.69,5.71,5.71,5.72,5.71,5.7,5.69,52.38,53.050000000000004,53.43,53.76,54.08,54.370000000000005,54.67,54.95,55.5,14.27,13.74,13.51,13.3,13.09,12.9,12.69,12.49,12.1,N/A,N/A +2012,12,13,3,30,102570,101350,100150,52.22,0,5.37,5.63,5.67,5.69,5.69,5.69,5.68,5.67,5.65,60.09,60.45,60.67,60.870000000000005,61.06,61.24,61.43,61.6,61.95,14.35,13.82,13.6,13.38,13.17,12.98,12.77,12.58,12.18,N/A,N/A +2012,12,13,4,30,102570,101340,100150,51.620000000000005,0,5.11,5.3500000000000005,5.38,5.39,5.39,5.39,5.37,5.37,5.34,68.06,68.3,68.45,68.58,68.71000000000001,68.82000000000001,68.94,69.06,69.28,14.56,14.040000000000001,13.82,13.61,13.4,13.21,13,12.8,12.41,N/A,N/A +2012,12,13,5,30,102560,101340,100150,54.44,0,4.98,5.22,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.26,5.25,5.22,67.89,68.27,68.52,68.75,68.97,69.17,69.38,69.57000000000001,69.97,14.63,14.11,13.89,13.68,13.47,13.280000000000001,13.07,12.88,12.48,N/A,N/A +2012,12,13,6,30,102580,101350,100160,56.49,0,4.79,5.01,5.04,5.04,5.04,5.04,5.0200000000000005,5.01,4.98,71.72,72.09,72.33,72.54,72.74,72.91,73.11,73.28,73.64,14.73,14.23,14.01,13.8,13.59,13.4,13.19,13,12.6,N/A,N/A +2012,12,13,7,30,102600,101370,100180,58.480000000000004,0,4.8100000000000005,5.01,5.04,5.04,5.04,5.03,5.01,5,4.97,74.62,74.93,75.10000000000001,75.25,75.4,75.52,75.65,75.78,76.03,14.71,14.21,14,13.790000000000001,13.58,13.39,13.18,12.98,12.59,N/A,N/A +2012,12,13,8,30,102590,101370,100180,57.6,0,4.8500000000000005,5.05,5.08,5.08,5.07,5.0600000000000005,5.04,5.03,4.99,70.08,70.36,70.55,70.72,70.89,71.03,71.18,71.32000000000001,71.61,14.790000000000001,14.290000000000001,14.07,13.870000000000001,13.66,13.47,13.26,13.06,12.67,N/A,N/A +2012,12,13,9,30,102590,101370,100180,59.1,0,5.21,5.45,5.48,5.48,5.48,5.47,5.46,5.44,5.4,66.56,66.86,67.05,67.23,67.39,67.54,67.71000000000001,67.85,68.15,14.790000000000001,14.280000000000001,14.06,13.85,13.64,13.450000000000001,13.24,13.05,12.65,N/A,N/A +2012,12,13,10,30,102590,101370,100180,57.910000000000004,0,5.32,5.57,5.6000000000000005,5.61,5.61,5.6000000000000005,5.59,5.57,5.54,65.04,65.25,65.38,65.5,65.62,65.72,65.83,65.93,66.13,14.83,14.33,14.11,13.9,13.69,13.5,13.290000000000001,13.1,12.700000000000001,N/A,N/A +2012,12,13,11,30,102610,101390,100200,59.9,0,6.09,6.4,6.44,6.45,6.45,6.44,6.42,6.4,6.3500000000000005,64.83,65.08,65.24,65.37,65.5,65.62,65.74,65.85,66.08,14.8,14.280000000000001,14.06,13.84,13.63,13.44,13.23,13.040000000000001,12.65,N/A,N/A +2012,12,13,12,30,102630,101400,100210,64.7,0,6.66,7.03,7.09,7.11,7.12,7.11,7.1000000000000005,7.09,7.05,65.02,65.31,65.49,65.66,65.82000000000001,65.96000000000001,66.12,66.27,66.57000000000001,14.57,14.02,13.8,13.59,13.370000000000001,13.18,12.97,12.780000000000001,12.39,N/A,N/A +2012,12,13,13,30,102630,101400,100210,65.72,0,6.65,7.0200000000000005,7.08,7.1000000000000005,7.1000000000000005,7.09,7.08,7.0600000000000005,7.0200000000000005,64.6,64.98,65.22,65.44,65.66,65.86,66.07000000000001,66.27,66.67,14.5,13.950000000000001,13.73,13.51,13.3,13.120000000000001,12.9,12.71,12.32,N/A,N/A +2012,12,13,14,30,102650,101430,100240,66.61,0,6.8100000000000005,7.2,7.26,7.29,7.3,7.3,7.29,7.28,7.25,66.06,66.5,66.77,67.02,67.27,67.49,67.73,67.95,68.4,14.48,13.92,13.700000000000001,13.48,13.27,13.08,12.870000000000001,12.68,12.290000000000001,N/A,N/A +2012,12,13,15,30,102670,101440,100250,65.01,0,6.68,7.0600000000000005,7.13,7.16,7.17,7.17,7.16,7.15,7.13,68.05,68.5,68.77,69.03,69.27,69.48,69.71000000000001,69.92,70.37,14.6,14.06,13.83,13.620000000000001,13.41,13.22,13.01,12.82,12.42,N/A,N/A +2012,12,13,16,30,102650,101420,100230,65.06,0,6.3100000000000005,6.66,6.72,6.75,6.75,6.76,6.75,6.74,6.71,72.17,72.47,72.65,72.82000000000001,72.97,73.12,73.28,73.42,73.71000000000001,14.77,14.24,14.02,13.8,13.59,13.4,13.19,13,12.6,N/A,N/A +2012,12,13,17,30,102630,101400,100220,66.89,0,6.21,6.5600000000000005,6.62,6.65,6.66,6.66,6.66,6.65,6.63,74.65,75.04,75.28,75.49,75.69,75.87,76.07000000000001,76.24,76.61,14.870000000000001,14.35,14.13,13.91,13.700000000000001,13.51,13.3,13.11,12.72,N/A,N/A +2012,12,13,18,30,102610,101380,100200,66.25,0,5.88,6.2,6.26,6.28,6.3,6.3,6.3,6.29,6.2700000000000005,76.12,76.47,76.69,76.88,77.07000000000001,77.24,77.43,77.59,77.93,15.030000000000001,14.52,14.3,14.09,13.88,13.69,13.48,13.280000000000001,12.89,N/A,N/A +2012,12,13,19,30,102590,101370,100180,67.54,0,5.8100000000000005,6.13,6.18,6.21,6.22,6.22,6.22,6.21,6.19,77.48,77.83,78.04,78.23,78.41,78.58,78.75,78.9,79.24,15.16,14.65,14.43,14.22,14.01,13.82,13.61,13.42,13.02,N/A,N/A +2012,12,13,20,30,102560,101330,100150,65.56,0,5.79,6.1000000000000005,6.16,6.18,6.19,6.2,6.19,6.18,6.16,79.55,79.9,80.11,80.3,80.48,80.65,80.83,80.99,81.33,15.3,14.790000000000001,14.58,14.370000000000001,14.16,13.97,13.76,13.57,13.17,N/A,N/A +2012,12,13,21,30,102520,101300,100110,63.88,0,5.44,5.73,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8100000000000005,5.8,5.78,80.81,81.22,81.47,81.71000000000001,81.93,82.14,82.35000000000001,82.55,82.97,15.44,14.950000000000001,14.74,14.530000000000001,14.32,14.13,13.93,13.73,13.34,N/A,N/A +2012,12,13,22,30,102490,101270,100090,63.35,0,5.36,5.64,5.7,5.72,5.73,5.73,5.73,5.73,5.72,83.8,84.16,84.39,84.60000000000001,84.81,84.99,85.19,85.38,85.77,15.610000000000001,15.13,14.92,14.71,14.51,14.31,14.11,13.92,13.52,N/A,N/A +2012,12,13,23,30,102480,101270,100080,64.29,0,5.39,5.68,5.74,5.7700000000000005,5.79,5.8,5.8,5.8,5.8,86.9,87.27,87.52,87.75,87.96000000000001,88.16,88.37,88.56,88.96000000000001,15.81,15.33,15.120000000000001,14.91,14.71,14.51,14.31,14.120000000000001,13.72,N/A,N/A +2012,12,14,0,30,102470,101250,100070,65.51,0,5.62,5.92,5.98,6.01,6.0200000000000005,6.0200000000000005,6.0200000000000005,6.01,6,86.71000000000001,87.03,87.25,87.45,87.65,87.83,88.04,88.22,88.62,15.92,15.44,15.23,15.02,14.82,14.63,14.42,14.23,13.84,N/A,N/A +2012,12,14,1,30,102450,101230,100050,65.55,0,5.94,6.29,6.36,6.4,6.42,6.44,6.45,6.45,6.44,93.11,93.22,93.33,93.47,93.62,93.77,93.93,94.08,94.41,16.17,15.700000000000001,15.49,15.280000000000001,15.07,14.88,14.67,14.48,14.09,N/A,N/A +2012,12,14,2,30,102440,101220,100040,63.58,0,5.83,6.17,6.25,6.29,6.32,6.34,6.3500000000000005,6.36,6.36,95.88,95.79,95.73,95.74000000000001,95.76,95.79,95.85000000000001,95.92,96.10000000000001,16.41,15.96,15.75,15.540000000000001,15.34,15.14,14.94,14.75,14.35,N/A,N/A +2012,12,14,3,30,102420,101210,100030,67.26,0,6.07,6.45,6.55,6.6000000000000005,6.63,6.66,6.67,6.69,6.71,95.8,96.29,96.67,97.03,97.39,97.71000000000001,98.06,98.37,99.02,16.56,16.1,15.9,15.69,15.49,15.3,15.09,14.9,14.51,N/A,N/A +2012,12,14,4,30,102390,101170,100000,66.65,0,6.22,6.61,6.69,6.73,6.75,6.76,6.7700000000000005,6.7700000000000005,6.76,101.41,101.44,101.51,101.58,101.68,101.76,101.88,101.99000000000001,102.27,16.87,16.42,16.22,16.01,15.81,15.620000000000001,15.41,15.22,14.83,N/A,N/A +2012,12,14,5,30,102370,101160,99980,67.85,0,6.3100000000000005,6.74,6.84,6.890000000000001,6.93,6.95,6.97,6.98,6.99,101.01,101.69,102.10000000000001,102.47,102.8,103.11,103.42,103.71000000000001,104.31,17.06,16.62,16.41,16.21,16,15.81,15.610000000000001,15.42,15.030000000000001,N/A,N/A +2012,12,14,6,30,102350,101140,99970,68.43,0,6.21,6.66,6.7700000000000005,6.84,6.88,6.91,6.94,6.96,6.99,105.01,105.5,105.77,106,106.22,106.42,106.61,106.78,107.14,17.23,16.81,16.62,16.41,16.21,16.02,15.81,15.620000000000001,15.23,N/A,N/A +2012,12,14,7,30,102350,101140,99970,70.09,0,6.6000000000000005,7.0600000000000005,7.17,7.22,7.26,7.28,7.29,7.3,7.3100000000000005,107.42,107.96000000000001,108.26,108.54,108.79,109.03,109.26,109.48,109.92,17.43,17.02,16.82,16.62,16.42,16.23,16.02,15.83,15.44,N/A,N/A +2012,12,14,8,30,102320,101110,99940,71.48,0,6.72,7.17,7.28,7.32,7.34,7.3500000000000005,7.36,7.36,7.34,110.21000000000001,110.41,110.54,110.67,110.8,110.92,111.05,111.18,111.47,17.56,17.16,16.96,16.76,16.56,16.37,16.17,15.98,15.59,N/A,N/A +2012,12,14,9,30,102300,101090,99920,72.88,0,6.93,7.45,7.58,7.65,7.69,7.72,7.74,7.76,7.78,111.83,112.28,112.55,112.8,113.03,113.24000000000001,113.46000000000001,113.66,114.09,17.82,17.43,17.240000000000002,17.03,16.830000000000002,16.64,16.44,16.25,15.860000000000001,N/A,N/A +2012,12,14,10,30,102280,101080,99910,72.31,0,7.3,7.87,8.01,8.08,8.120000000000001,8.15,8.17,8.19,8.2,114.76,114.99000000000001,115.18,115.38,115.57000000000001,115.76,115.95,116.14,116.56,18.06,17.67,17.48,17.28,17.080000000000002,16.9,16.69,16.51,16.12,N/A,N/A +2012,12,14,11,30,102280,101070,99910,73.81,0,7.29,7.87,8.01,8.08,8.13,8.16,8.18,8.19,8.2,115.76,116.04,116.24000000000001,116.45,116.64,116.82000000000001,117.01,117.19,117.58,18.28,17.91,17.72,17.52,17.32,17.13,16.93,16.740000000000002,16.35,N/A,N/A +2012,12,14,12,30,102270,101070,99910,76.78,0,7.75,8.4,8.57,8.66,8.73,8.77,8.8,8.82,8.85,117.32000000000001,117.66,117.91,118.16,118.4,118.62,118.86,119.08,119.55,18.45,18.080000000000002,17.89,17.69,17.490000000000002,17.31,17.1,16.92,16.53,N/A,N/A +2012,12,14,13,30,102250,101050,99890,79.61,0,7.94,8.66,8.85,8.96,9.040000000000001,9.1,9.14,9.18,9.23,121.52,121.89,122.12,122.35000000000001,122.56,122.75,122.96000000000001,123.14,123.53,18.6,18.240000000000002,18.06,17.86,17.66,17.47,17.27,17.09,16.69,N/A,N/A +2012,12,14,14,30,102240,101040,99880,80.4,0,8.120000000000001,8.86,9.05,9.15,9.22,9.27,9.3,9.32,9.35,127.2,127.26,127.36,127.47,127.58,127.69,127.81,127.93,128.19,18.86,18.51,18.330000000000002,18.13,17.94,17.75,17.55,17.36,16.97,N/A,N/A +2012,12,14,15,30,102190,100990,99830,81.64,0,7.930000000000001,8.620000000000001,8.790000000000001,8.870000000000001,8.93,8.97,8.99,9.01,9.040000000000001,125.94,126.41,126.79,127.18,127.59,127.98,128.42000000000002,128.82,129.77,19.02,18.69,18.51,18.32,18.13,17.94,17.75,17.56,17.19,N/A,N/A +2012,12,14,16,30,102140,100950,99790,83.97,0,8.02,8.8,9.01,9.14,9.23,9.28,9.33,9.36,9.41,127.31,127.60000000000001,127.82000000000001,128.06,128.29,128.51,128.75,128.97,129.45,19.21,18.89,18.71,18.52,18.32,18.14,17.94,17.75,17.37,N/A,N/A +2012,12,14,17,30,102100,100900,99740,84.22,0,8.44,9.3,9.53,9.67,9.75,9.81,9.84,9.86,9.870000000000001,128.3,128.26,128.36,128.48,128.62,128.76,128.93,129.1,129.48,19.47,19.17,19,18.8,18.61,18.42,18.22,18.04,17.650000000000002,N/A,N/A +2012,12,14,18,30,102040,100850,99690,84.09,0,8.25,9.03,9.24,9.36,9.450000000000001,9.51,9.57,9.63,9.790000000000001,129.07,129.57,129.92000000000002,130.3,130.69,131.09,131.58,132.05,133.34,19.68,19.400000000000002,19.240000000000002,19.05,18.87,18.69,18.5,18.330000000000002,17.96,N/A,N/A +2012,12,14,19,30,101970,100780,99630,86.59,0,7.71,8.45,8.67,8.85,9.02,9.200000000000001,9.38,9.55,9.9,121.64,122.08,122.46000000000001,122.99000000000001,123.64,124.37,125.23,126.04,127.96000000000001,19.79,19.53,19.37,19.19,19.02,18.86,18.68,18.51,18.16,N/A,N/A +2012,12,14,20,30,101880,100690,99540,88.64,0,8.38,9.61,10.05,10.18,10.41,10.72,10.99,11.22,11.61,125.24000000000001,126.58,127.46000000000001,128.17000000000002,129.1,130.24,131.5,132.72,134.64000000000001,19.88,19.66,19.51,19.32,19.17,19.04,18.88,18.73,18.43,N/A,N/A +2012,12,14,21,30,101800,100610,99460,86.32000000000001,0,8.76,9.86,10.25,10.55,10.790000000000001,11.01,11.200000000000001,11.370000000000001,11.69,133.71,134,134.22,134.5,134.8,135.11,135.47,135.82,136.68,20.2,20,19.86,19.69,19.53,19.37,19.19,19.03,18.68,N/A,N/A +2012,12,14,22,30,101730,100550,99400,87.17,0,9.16,10.39,10.82,11.17,11.47,11.73,11.96,12.17,12.56,137.28,137.72,138.04,138.42000000000002,138.83,139.24,139.73,140.19,141.29,20.36,20.19,20.06,19.91,19.75,19.59,19.43,19.27,18.94,N/A,N/A +2012,12,14,23,30,101700,100510,99370,87.33,0,9.77,11.09,11.61,12.040000000000001,12.39,12.69,12.96,13.200000000000001,13.6,142.45000000000002,142.77,143,143.24,143.47,143.69,143.95000000000002,144.19,144.83,20.54,20.42,20.31,20.16,20.01,19.86,19.7,19.55,19.22,N/A,N/A +2012,12,15,0,30,101640,100460,99320,88.63,0,8.94,10.3,10.82,11.290000000000001,11.68,12.040000000000001,12.370000000000001,12.68,13.25,147.39000000000001,147.8,148.13,148.53,148.91,149.27,149.64000000000001,149.99,150.65,20.66,20.54,20.44,20.31,20.16,20.02,19.87,19.73,19.41,N/A,N/A +2012,12,15,1,30,101610,100430,99290,88.23,0,8.94,10.33,10.84,11.28,11.66,11.99,12.290000000000001,12.55,13.02,151.73,152.08,152.34,152.68,153.05,153.45000000000002,153.91,154.35,155.45000000000002,20.77,20.68,20.59,20.46,20.34,20.21,20.06,19.92,19.62,N/A,N/A +2012,12,15,2,30,101570,100400,99250,88.63,0,8.85,10.33,10.91,11.4,11.81,12.18,12.51,12.81,13.36,155.21,155.71,156.08,156.35,156.53,156.64000000000001,156.66,156.65,156.45000000000002,20.91,20.85,20.76,20.63,20.5,20.37,20.21,20.06,19.73,N/A,N/A +2012,12,15,3,30,101610,100430,99290,88.2,0,7.18,8.63,9.290000000000001,9.94,10.5,11.01,11.47,11.89,12.66,155.73,156.48,157.09,157.95000000000002,158.82,159.76,160.74,161.69,163.52,20.96,20.95,20.89,20.8,20.7,20.6,20.47,20.36,20.09,N/A,N/A +2012,12,15,4,30,101580,100400,99260,89.97,0,6.63,7.92,8.45,8.950000000000001,9.41,9.85,10.31,10.75,11.66,154.94,156.37,157.5,158.97,160.42000000000002,161.91,163.27,164.53,166.26,20.95,20.95,20.900000000000002,20.830000000000002,20.740000000000002,20.66,20.56,20.46,20.25,N/A,N/A +2012,12,15,5,30,101540,100360,99220,90.74,0,7.55,9.040000000000001,9.64,10.17,10.620000000000001,11.040000000000001,11.43,11.8,12.620000000000001,161.43,162.51,163.29,164.21,165.14000000000001,166.09,167.09,168.02,169.9,20.97,20.990000000000002,20.96,20.89,20.82,20.740000000000002,20.63,20.53,20.29,N/A,N/A +2012,12,15,6,30,101530,100360,99220,90.4,0,7.19,8.68,9.25,9.81,10.27,10.68,11.05,11.39,11.96,164.68,165.62,166.38,167.33,168.27,169.17000000000002,170.07,170.91,172.41,21.03,21.07,21.04,20.990000000000002,20.92,20.830000000000002,20.73,20.63,20.37,N/A,N/A +2012,12,15,7,30,101540,100370,99230,90.27,0,6.37,7.82,8.46,9.09,9.67,10.24,10.81,11.34,12.32,168.73,169.17000000000002,169.53,170.04,170.55,171.1,171.61,172.08,172.78,21,21.07,21.05,21,20.95,20.88,20.8,20.73,20.53,N/A,N/A +2012,12,15,8,30,101520,100350,99210,91.15,0,6.93,8.44,9.08,9.67,10.17,10.61,11,11.34,11.870000000000001,170.85,171.47,172.01,172.67000000000002,173.28,173.86,174.4,174.91,175.83,21.07,21.16,21.16,21.13,21.080000000000002,21.01,20.92,20.82,20.56,N/A,N/A +2012,12,15,9,30,101500,100330,99190,90.89,0,7.1000000000000005,8.66,9.34,10.01,10.59,11.120000000000001,11.64,12.13,13.02,170.22,171.06,171.77,172.84,173.97,175.20000000000002,176.43,177.6,179.51,21.09,21.19,21.2,21.18,21.16,21.12,21.07,21.02,20.87,N/A,N/A +2012,12,15,10,30,101500,100320,99190,92.92,0,5.91,7.55,8.31,9.05,9.700000000000001,10.28,10.790000000000001,11.26,12.18,167.1,169.32,170.96,172.84,174.44,175.87,177.02,178.01,179.8,20.94,21.1,21.150000000000002,21.17,21.16,21.13,21.07,21,20.830000000000002,N/A,N/A +2012,12,15,11,30,101500,100320,99190,92.44,0,6.58,8.22,8.97,9.75,10.450000000000001,11.120000000000001,11.73,12.3,13.200000000000001,173.18,174.31,175.24,176.51,177.73,178.98,180.01,180.9,181.85,21.06,21.2,21.240000000000002,21.25,21.25,21.23,21.18,21.13,20.92,N/A,N/A +2012,12,15,12,30,101500,100320,99190,93,0,5.83,7.51,8.35,9.22,10.01,10.77,11.370000000000001,11.88,12.72,171.48,173.42000000000002,174.89000000000001,176.74,178.42000000000002,180.01,181.39000000000001,182.62,185.24,20.96,21.16,21.240000000000002,21.29,21.32,21.35,21.32,21.29,21.11,N/A,N/A +2012,12,15,13,30,101480,100310,99170,92.99,0,6.0200000000000005,7.72,8.55,9.43,10.24,11.02,11.71,12.34,13.25,170.98,172.86,174.28,176.01,177.56,179.03,180.25,181.32,182.76,20.96,21.16,21.23,21.31,21.36,21.39,21.36,21.32,21.09,N/A,N/A +2012,12,15,14,30,101490,100320,99180,93.11,0,5.67,7.32,8.11,8.9,9.6,10.23,10.77,11.25,11.81,173.18,174.99,176.34,177.82,179.1,180.24,181.16,181.94,183,20.96,21.150000000000002,21.21,21.26,21.28,21.29,21.26,21.23,21.02,N/A,N/A +2012,12,15,15,30,101500,100330,99190,93.45,0,5.1000000000000005,6.74,7.5600000000000005,8.4,9.15,9.82,10.38,10.88,11.56,171.19,173.08,174.5,176.11,177.57,178.96,180.14000000000001,181.21,183.19,20.96,21.14,21.21,21.26,21.28,21.29,21.25,21.21,21.03,N/A,N/A +2012,12,15,16,30,101490,100320,99180,93.48,0,4.96,6.5,7.28,8.13,8.870000000000001,9.55,10.1,10.58,11.28,177.67000000000002,178.85,179.88,181.32,182.75,184.21,185.52,186.71,188.19,21.02,21.17,21.23,21.27,21.3,21.3,21.27,21.240000000000002,21.07,N/A,N/A +2012,12,15,17,30,101480,100300,99170,95.54,0,3.46,4.84,5.55,6.33,7.13,8.02,8.61,9.03,9.88,170.53,173.46,175.72,178.15,180.76,183.72,185.5,186.67000000000002,188.42000000000002,20.96,21.080000000000002,21.13,21.18,21.22,21.26,21.23,21.18,21.04,N/A,N/A +2012,12,15,18,30,101470,100290,99160,96.26,0,3.25,4.43,5.09,5.86,6.73,7.7700000000000005,8.35,8.700000000000001,9.39,162.33,167.09,170.68,174.51,177.71,180.54,181.98,182.76,184.06,20.990000000000002,21.06,21.11,21.17,21.21,21.23,21.2,21.150000000000002,21.01,N/A,N/A +2012,12,15,19,30,101440,100260,99130,95.03,0,3.7600000000000002,4.9,5.51,6.3100000000000005,7.04,7.75,8.370000000000001,8.94,9.38,163.61,167,169.63,172.96,176.01,178.92000000000002,180.78,182.17000000000002,183.38,21.19,21.2,21.22,21.26,21.28,21.3,21.29,21.28,21.1,N/A,N/A +2012,12,15,20,30,101400,100230,99090,94.95,0,4.32,5.53,6.07,6.67,7.28,7.94,8.63,9.32,9.8,159.17000000000002,162.33,164.96,168.71,171.86,174.69,177.78,180.88,182.85,21.17,21.240000000000002,21.25,21.27,21.29,21.3,21.32,21.34,21.17,N/A,N/A +2012,12,15,21,30,101360,100190,99060,94.01,0,4.46,5.98,6.71,7.46,8.18,8.93,9.63,10.290000000000001,10.72,164.44,166.81,168.83,171.59,174.25,176.98,179.62,182.13,183.65,21.01,21.22,21.32,21.39,21.44,21.47,21.490000000000002,21.5,21.38,N/A,N/A +2012,12,15,22,30,101320,100150,99020,92.56,0,5.95,7.62,8.42,9.3,10.06,10.72,11.19,11.56,11.93,163.69,166.01,167.88,170.39000000000001,172.68,174.86,176.85,178.65,180.46,21.14,21.39,21.490000000000002,21.57,21.650000000000002,21.71,21.72,21.71,21.57,N/A,N/A +2012,12,15,23,30,101280,100110,98980,92.02,0,7.51,9.43,10.34,11.22,11.86,12.3,12.540000000000001,12.69,12.870000000000001,166.65,168.39000000000001,169.73,171.39000000000001,173,174.61,176.06,177.36,178.74,21.19,21.5,21.650000000000002,21.82,21.92,21.97,21.94,21.900000000000002,21.69,N/A,N/A +2012,12,16,0,30,101290,100120,98990,91.91,0,7.640000000000001,9.450000000000001,10.290000000000001,11.15,11.9,12.58,13.1,13.530000000000001,13.68,166.12,167.8,169.11,170.78,172.32,173.83,175.16,176.35,178.19,21.21,21.45,21.56,21.68,21.77,21.84,21.85,21.830000000000002,21.64,N/A,N/A +2012,12,16,1,30,101290,100120,98990,92.17,0,6.97,8.73,9.57,10.47,11.25,11.96,12.51,12.96,13.43,171.18,172.23,173.12,174.45000000000002,175.72,177,178.07,179.01,180.55,21.18,21.400000000000002,21.5,21.63,21.740000000000002,21.84,21.86,21.84,21.61,N/A,N/A +2012,12,16,2,30,101290,100120,98990,91.73,0,6.68,8.44,9.27,10.11,10.83,11.49,12.01,12.450000000000001,12.71,168.78,169.71,170.47,171.54,172.57,173.61,174.71,175.78,177.79,21.28,21.54,21.650000000000002,21.75,21.82,21.85,21.830000000000002,21.8,21.64,N/A,N/A +2012,12,16,3,30,101260,100090,98960,92.08,0,6.91,8.64,9.450000000000001,10.26,10.97,11.61,12.08,12.450000000000001,12.88,169.36,170.48,171.5,173.08,174.63,176.25,177.63,178.84,181.11,21.19,21.42,21.52,21.63,21.71,21.77,21.8,21.81,21.78,N/A,N/A +2012,12,16,4,30,101220,100050,98920,92.75,0,6.5600000000000005,8.25,9.08,10.02,10.86,11.67,12.41,13.09,14.16,169.25,171.89000000000001,173.73,175.64000000000001,177.14000000000001,178.34,179.42000000000002,180.41,181.94,21.03,21.28,21.38,21.46,21.5,21.5,21.48,21.46,21.36,N/A,N/A +2012,12,16,5,30,101180,100010,98880,90.84,0,8.78,10.63,11.43,12.19,12.83,13.41,13.9,14.33,14.93,175.78,176.35,176.84,177.54,178.31,179.19,180.14000000000001,181.08,182.69,21.44,21.62,21.66,21.68,21.68,21.68,21.650000000000002,21.61,21.44,N/A,N/A +2012,12,16,6,30,101190,100020,98890,91.35000000000001,0,8.34,10.14,10.950000000000001,11.76,12.46,13.1,13.69,14.22,15.05,180.72,181.47,182.09,182.94,183.78,184.69,185.6,186.48,187.88,21.57,21.73,21.77,21.79,21.8,21.81,21.79,21.77,21.650000000000002,N/A,N/A +2012,12,16,7,30,101180,100010,98880,91.77,0,7.97,9.69,10.44,11.16,11.790000000000001,12.38,12.86,13.280000000000001,13.75,180.79,181.83,182.71,183.86,184.96,186.07,187.12,188.09,189.92000000000002,21.48,21.63,21.67,21.69,21.71,21.72,21.72,21.71,21.6,N/A,N/A +2012,12,16,8,30,101150,99980,98850,92.38,0,7.38,9.06,9.85,10.66,11.38,12.07,12.63,13.11,13.620000000000001,183.25,184.61,185.69,187.1,188.31,189.38,190.14000000000001,190.72,191.26,21.34,21.490000000000002,21.54,21.57,21.6,21.62,21.61,21.6,21.41,N/A,N/A +2012,12,16,9,30,101110,99950,98810,92.49,0,7.21,8.84,9.56,10.23,10.8,11.3,11.72,12.08,12.76,182.48,183.55,184.39000000000001,185.48,186.46,187.39000000000001,188.21,188.92000000000002,190.14000000000001,21.32,21.48,21.53,21.56,21.57,21.56,21.52,21.47,21.3,N/A,N/A +2012,12,16,10,30,101100,99930,98800,92.28,0,7.15,8.790000000000001,9.56,10.27,10.89,11.450000000000001,11.97,12.450000000000001,13.31,189.29,189.49,189.67000000000002,189.98,190.32,190.70000000000002,191.07,191.41,192.1,21.36,21.48,21.51,21.5,21.490000000000002,21.46,21.41,21.36,21.19,N/A,N/A +2012,12,16,11,30,101100,99930,98800,92.55,0,6.11,7.75,8.540000000000001,9.31,9.97,10.57,11.1,11.58,12.35,197.4,197.26,197.12,197,196.94,196.94,197.01,197.11,197.36,21.31,21.45,21.48,21.46,21.43,21.38,21.31,21.240000000000002,21.05,N/A,N/A +2012,12,16,12,30,101080,99920,98780,92.66,0,6.74,8.33,9.05,9.77,10.39,10.94,11.44,11.88,12.56,197.8,198.03,198.19,198.38,198.56,198.75,199.01,199.28,200.17000000000002,21.27,21.37,21.39,21.37,21.34,21.29,21.240000000000002,21.17,21.01,N/A,N/A +2012,12,16,13,30,101090,99920,98790,92.81,0,6.5200000000000005,8.05,8.78,9.5,10.16,10.83,11.47,12.08,13.16,195.83,196.84,197.66,198.65,199.52,200.35,201.01,201.58,202.28,21.25,21.36,21.39,21.37,21.35,21.32,21.28,21.25,21.12,N/A,N/A +2012,12,16,14,30,101050,99880,98750,91.17,0,9.16,11.1,11.94,12.75,13.450000000000001,14.06,14.57,15.01,15.69,187.20000000000002,188.53,189.52,190.71,191.77,192.78,193.69,194.52,196.11,21.61,21.77,21.8,21.82,21.81,21.79,21.740000000000002,21.68,21.490000000000002,N/A,N/A +2012,12,16,15,30,101040,99880,98750,91.15,0,9.18,11,11.81,12.63,13.34,14.01,14.61,15.15,16.03,191.15,191.86,192.43,193.21,193.98000000000002,194.82,195.70000000000002,196.57,198.45000000000002,21.57,21.68,21.68,21.67,21.64,21.61,21.57,21.53,21.42,N/A,N/A +2012,12,16,16,30,101010,99840,98710,90.22,0,10.36,12.19,13,13.76,14.4,14.99,15.540000000000001,16.05,16.96,190.18,190.68,191.08,191.62,192.16,192.74,193.39000000000001,194.07,195.64000000000001,21.68,21.8,21.81,21.77,21.73,21.66,21.59,21.52,21.34,N/A,N/A +2012,12,16,17,30,101120,99930,98790,94.93,96.30000000000001,9.89,10.92,11.370000000000001,11.82,12.38,12.98,13.64,14.23,14.98,289.16,289.57,290.28000000000003,291.23,292.59000000000003,294.14,295.68,297.04,298.6,18.96,18.650000000000002,18.51,18.37,18.26,18.16,18.07,17.98,17.830000000000002,N/A,N/A +2012,12,16,18,30,101140,99960,98810,94.76,115.4,5.87,6.3100000000000005,6.51,6.71,7.05,7.53,8.45,9.56,10.77,290.88,291.74,292.12,292.79,293.68,294.84000000000003,296.06,297.33,299.27,18.66,18.330000000000002,18.17,17.990000000000002,17.84,17.71,17.64,17.61,17.66,N/A,N/A +2012,12,16,19,30,101170,99980,98840,95.51,33.300000000000004,4.37,4.76,4.98,5.45,6.05,6.78,7.23,7.58,8.27,282.44,281.94,283.87,287.77,291.44,295.11,297.29,299.01,301.57,18.59,18.29,18.16,18.05,18.02,18.05,18.03,18.02,17.88,N/A,N/A +2012,12,16,20,30,101040,99850,98710,94.57000000000001,9.9,0.5700000000000001,0.58,0.71,1.32,1.9000000000000001,2.27,2.56,2.81,3.3200000000000003,64.23,55.910000000000004,41.61,0.55,332.3,326.57,321.67,317.18,309.12,18.72,18.43,18.3,18.22,18.14,18.05,17.92,17.81,17.54,N/A,N/A +2012,12,16,21,30,101020,99840,98700,93.05,0,1.11,1.04,0.75,0.29,0.39,1.28,1.9100000000000001,2.19,2.66,110.99000000000001,109.33,79.33,21.63,1.02,319.76,298.71,297.32,294.72,18.92,18.64,18.5,18.38,18.35,18.39,18.28,18.14,17.81,N/A,N/A +2012,12,16,22,30,101000,99820,98670,90.36,0,2.22,2.2,2.0100000000000002,1.6300000000000001,1.56,1.69,1.9000000000000001,2.13,2.73,155.77,157.79,168.58,197.12,213.73000000000002,225.87,233.83,240.63,248.68,19.25,18.96,18.84,18.8,18.72,18.59,18.45,18.31,18.05,N/A,N/A +2012,12,16,23,30,100950,99770,98630,92.84,0,4.17,4.18,4.04,3.79,3.73,3.81,3.95,4.1,4.55,149.92000000000002,152.25,157.43,172.34,183.1,191.71,198.98000000000002,205.47,216.43,19.22,18.95,18.84,18.82,18.76,18.67,18.61,18.55,18.44,N/A,N/A +2012,12,17,0,30,100980,99810,98660,93.03,0,5.41,5.6000000000000005,5.57,5.46,5.38,5.3100000000000005,5.26,5.21,5.19,159.93,161.02,163.09,169.54,174.72,179.18,183.57,187.64000000000001,196.02,19.48,19.22,19.080000000000002,18.98,18.91,18.86,18.8,18.75,18.64,N/A,N/A +2012,12,17,1,30,100960,99790,98650,93.48,0,5.04,5.2,5.12,4.93,4.8,4.71,4.67,4.65,4.76,160.59,162.49,165.77,174.41,180.86,186,191.6,196.94,207.15,19.52,19.27,19.18,19.19,19.22,19.27,19.330000000000002,19.39,19.46,N/A,N/A +2012,12,17,2,30,101000,99820,98680,93.47,0,4.83,5.1000000000000005,5.13,5.16,5.0600000000000005,4.86,4.7700000000000005,4.73,4.75,164.14000000000001,164.76,165.96,169.53,174.3,180.18,185.67000000000002,190.64000000000001,201.17000000000002,19.67,19.400000000000002,19.26,19.11,19.09,19.17,19.2,19.21,19.23,N/A,N/A +2012,12,17,3,30,101020,99840,98700,94.16,0,4.51,4.76,4.79,4.8100000000000005,4.74,4.57,4.47,4.4,4.3500000000000005,168.8,169.39000000000001,170.5,173.93,179.14000000000001,186.23,192.42000000000002,197.85,208.72,19.69,19.43,19.28,19.13,19.080000000000002,19.13,19.19,19.25,19.400000000000002,N/A,N/A +2012,12,17,4,30,101010,99830,98690,95.27,0,3.5100000000000002,3.85,3.98,4.08,4.16,4.21,4.2700000000000005,4.32,4.42,179.97,182.66,185.20000000000002,189.79,194.3,198.93,204,208.88,218.38,19.830000000000002,19.61,19.490000000000002,19.38,19.32,19.29,19.32,19.37,19.42,N/A,N/A +2012,12,17,5,30,101020,99850,98710,96.08,0,2.75,3.16,3.34,3.58,3.8000000000000003,4.0200000000000005,4.17,4.2700000000000005,4.45,192.06,194.76,197.89000000000001,204.5,211.72,219.97,225.17000000000002,228.92000000000002,235.94,19.95,19.740000000000002,19.650000000000002,19.6,19.6,19.64,19.67,19.7,19.650000000000002,N/A,N/A +2012,12,17,6,30,101040,99870,98730,96.69,0,2.35,2.81,3.0700000000000003,3.52,3.84,4,4.17,4.32,4.6000000000000005,206.5,210.13,214.94,227.28,235.31,239.09,242.62,245.9,251.59,20.02,19.84,19.77,19.8,19.8,19.77,19.76,19.76,19.69,N/A,N/A +2012,12,17,7,30,101080,99900,98760,96.18,0,2.82,3.5,3.8200000000000003,4.17,4.48,4.7700000000000005,4.91,4.99,5.14,235.92000000000002,238.42000000000002,241.26,247.54,253.24,258.79,261.35,262.47,264.47,20.22,20.11,20.06,20.03,20,19.95,19.86,19.76,19.47,N/A,N/A +2012,12,17,8,30,101070,99900,98760,95.95,0,3.63,4.42,4.7700000000000005,5.09,5.36,5.61,5.8,5.96,6.16,256.65,257.38,258.07,259.13,260.2,261.37,262.54,263.65,267.35,20.3,20.150000000000002,20.05,19.900000000000002,19.76,19.6,19.45,19.3,19.150000000000002,N/A,N/A +2012,12,17,9,30,101080,99910,98770,92.77,0,5.73,6.44,6.72,6.95,7.13,7.26,7.3100000000000005,7.3100000000000005,7.44,266.27,266.29,266.33,266.43,266.93,267.95,270.27,273.09000000000003,277.57,20.28,20.1,20,19.91,19.91,20.02,20.21,20.44,20.67,N/A,N/A +2012,12,17,10,30,101100,99930,98790,92.18,0,7.17,8.05,8.38,8.56,8.84,9.21,9.51,9.76,9.950000000000001,277.57,277.64,277.65000000000003,277.81,278.14,278.65000000000003,280.02,281.65000000000003,284.31,20.06,19.84,19.71,19.59,19.6,19.73,20.07,20.45,20.82,N/A,N/A +2012,12,17,11,30,101160,99970,98830,95.01,0,7.79,8.4,8.58,8.76,9.09,9.59,10.46,11.450000000000001,12.280000000000001,296.17,296.16,296.13,296.09000000000003,296.05,295.99,296.04,296.12,296.58,18.66,18.31,18.150000000000002,17.97,17.82,17.67,17.68,17.73,18.580000000000002,N/A,N/A +2012,12,17,12,30,101190,100000,98860,76.64,0,8.16,8.76,8.950000000000001,9.21,10.02,11.5,12.3,12.780000000000001,13.6,293.95,294.26,294.54,295.11,296.57,299.16,300.66,301.59000000000003,303.11,19.34,19.080000000000002,18.95,18.84,18.900000000000002,19.13,19.32,19.490000000000002,19.84,N/A,N/A +2012,12,17,13,30,101200,100010,98860,63.980000000000004,0,9.78,10.67,10.950000000000001,11.25,11.8,12.6,13.36,14.07,14.26,296.73,296.58,296.5,296.37,296.26,296.15000000000003,295.95,295.73,294.74,19.36,19.09,18.97,18.84,18.79,18.8,18.92,19.07,19.3,N/A,N/A +2012,12,17,14,30,101240,100050,98890,63.24,0,10.14,10.96,11.16,11.25,11.31,11.35,11.39,11.44,11.69,295.32,295.53000000000003,295.63,295.77,295.93,296.1,296.37,296.65000000000003,297.86,18,17.6,17.41,17.21,17.03,16.85,16.67,16.51,16.2,N/A,N/A +2012,12,17,15,30,101260,100060,98900,65.38,0,8.78,9.41,9.57,9.64,9.700000000000001,9.74,9.81,9.88,10.49,306.85,307.09000000000003,307.24,307.42,307.63,307.85,308.17,308.51,310.19,17.2,16.77,16.580000000000002,16.38,16.2,16.02,15.85,15.69,15.48,N/A,N/A +2012,12,17,16,30,101270,100070,98910,63.65,0,7.890000000000001,8.49,8.65,8.73,8.790000000000001,8.84,8.89,8.94,9.08,313.29,313.34000000000003,313.33,313.31,313.31,313.31,313.31,313.32,313.45,17.59,17.17,16.98,16.78,16.59,16.4,16.21,16.03,15.66,N/A,N/A +2012,12,17,17,30,101280,100090,98930,56.27,0,7.01,7.49,7.61,7.67,7.72,7.76,7.8100000000000005,7.87,8.24,309.40000000000003,309.08,308.90000000000003,308.7,308.51,308.32,308.09000000000003,307.87,307.48,18.06,17.7,17.52,17.330000000000002,17.150000000000002,16.97,16.8,16.64,16.38,N/A,N/A +2012,12,17,18,30,101300,100110,98950,52.33,0,6.9,7.4,7.5200000000000005,7.57,7.6000000000000005,7.62,7.62,7.62,7.61,313.82,312.91,312.27,311.63,311.02,310.43,309.83,309.26,308.01,18.78,18.45,18.28,18.080000000000002,17.89,17.71,17.52,17.34,16.96,N/A,N/A +2012,12,17,19,30,101280,100090,98940,49.07,0,6.88,7.44,7.58,7.67,7.73,7.7700000000000005,7.8,7.82,7.86,303.85,303.57,303.36,303.15000000000003,302.96,302.8,302.63,302.48,302.18,19.11,18.81,18.64,18.44,18.25,18.06,17.87,17.68,17.3,N/A,N/A +2012,12,17,20,30,101270,100090,98930,46.93,0,6.72,7.32,7.49,7.59,7.66,7.71,7.75,7.79,7.84,302.06,301.8,301.65000000000003,301.5,301.37,301.25,301.13,301.02,300.83,19.48,19.2,19.03,18.84,18.650000000000002,18.47,18.27,18.080000000000002,17.7,N/A,N/A +2012,12,17,21,30,101290,100110,98950,45.28,0,6.55,7.11,7.25,7.33,7.38,7.42,7.45,7.47,7.5,306.43,306.15000000000003,305.96,305.76,305.58,305.41,305.24,305.09000000000003,304.78000000000003,19.62,19.35,19.18,18.990000000000002,18.8,18.62,18.42,18.240000000000002,17.85,N/A,N/A +2012,12,17,22,30,101300,100110,98950,43.230000000000004,0,6.65,7.23,7.37,7.45,7.5,7.54,7.57,7.59,7.62,302.75,302.75,302.73,302.7,302.67,302.64,302.6,302.57,302.49,19.59,19.32,19.150000000000002,18.96,18.77,18.580000000000002,18.39,18.2,17.81,N/A,N/A +2012,12,17,23,30,101330,100140,98980,47.71,0,6.61,7.12,7.24,7.29,7.32,7.34,7.3500000000000005,7.36,7.3500000000000005,301.52,301.14,300.93,300.73,300.56,300.39,300.23,300.08,299.78000000000003,19.27,18.97,18.79,18.6,18.400000000000002,18.22,18.02,17.830000000000002,17.44,N/A,N/A +2012,12,18,0,30,101360,100170,99010,47.28,0,6.8100000000000005,7.3,7.4,7.45,7.47,7.47,7.47,7.46,7.43,295.82,295.83,295.84000000000003,295.84000000000003,295.84000000000003,295.84000000000003,295.85,295.85,295.88,18.88,18.55,18.37,18.17,17.98,17.79,17.59,17.41,17.02,N/A,N/A +2012,12,18,1,30,101380,100190,99030,46.67,0,5.9,6.32,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,6.62,299.07,298.73,298.49,298.25,298.02,297.8,297.57,297.35,296.88,18.84,18.52,18.34,18.150000000000002,17.96,17.78,17.59,17.41,17.03,N/A,N/A +2012,12,18,2,30,101400,100210,99050,50.13,0,4.54,4.79,4.84,4.87,4.88,4.9,4.92,4.94,5.11,292.1,291.87,291.71,291.55,291.40000000000003,291.25,291.1,290.97,290.93,18.63,18.3,18.13,17.94,17.75,17.57,17.39,17.22,16.89,N/A,N/A +2012,12,18,3,30,101420,100230,99070,51.78,0,3.65,3.8000000000000003,3.8200000000000003,3.83,3.89,3.96,4.37,4.78,4.83,297.43,296.96,296.6,296.13,295.36,294.42,292.11,289.75,288.31,18.650000000000002,18.35,18.19,18.02,17.88,17.77,17.91,18.05,17.76,N/A,N/A +2012,12,18,4,30,101430,100230,99080,52.83,0,2.71,2.83,2.84,2.86,2.9,2.95,3.5100000000000002,4.16,4.67,282.27,281.72,281.34000000000003,280.86,280.18,279.40000000000003,277.06,274.56,273.63,18.68,18.37,18.2,18.02,17.86,17.71,17.84,17.990000000000002,18.05,N/A,N/A +2012,12,18,5,30,101440,100240,99090,54.64,0,1.92,2.02,2.05,2.07,2.1,2.14,2.22,2.34,3.63,257.35,256.82,256.51,256.19,255.87,255.58,255.49,255.74,262.44,18.86,18.55,18.38,18.19,18.01,17.830000000000002,17.66,17.52,17.64,N/A,N/A +2012,12,18,6,30,101450,100260,99110,55.61,0,1.94,2.08,2.12,2.15,2.19,2.23,2.31,2.43,3.38,230.97,230.9,230.95000000000002,231.06,231.27,231.53,232.59,234.21,248.11,19.16,18.87,18.71,18.52,18.330000000000002,18.150000000000002,17.98,17.84,17.89,N/A,N/A +2012,12,18,7,30,101460,100270,99120,55.17,0,2.5,2.69,2.73,2.77,2.8000000000000003,2.84,2.91,3.0100000000000002,3.8200000000000003,215.28,215.74,216.1,216.51,217.01,217.54,218.68,220.4,236.16,19.51,19.25,19.080000000000002,18.900000000000002,18.71,18.54,18.36,18.21,18.21,N/A,N/A +2012,12,18,8,30,101450,100260,99110,56.09,0,3.52,3.77,3.8200000000000003,3.84,3.85,3.87,3.89,3.91,4.1,214.58,214.82,215,215.18,215.39000000000001,215.6,215.94,216.34,220.97,19.76,19.51,19.35,19.17,18.98,18.8,18.61,18.44,18.2,N/A,N/A +2012,12,18,9,30,101450,100260,99110,61.6,0,4.13,4.39,4.42,4.42,4.41,4.39,4.36,4.34,4.46,199.27,199.45000000000002,199.64000000000001,199.84,200.08,200.34,200.51,201.20000000000002,215.04,19.69,19.44,19.27,19.080000000000002,18.900000000000002,18.72,18.52,18.35,18.44,N/A,N/A +2012,12,18,10,30,101460,100270,99120,63.81,0,5.33,5.74,5.82,5.8500000000000005,5.86,5.87,5.87,5.87,5.89,191.8,192.01,192.15,192.29,192.42000000000002,192.55,192.70000000000002,192.83,193.11,19.71,19.45,19.29,19.1,18.91,18.73,18.54,18.36,17.97,N/A,N/A +2012,12,18,11,30,101460,100270,99120,65.56,0,6.3,6.82,6.93,6.98,7,7.01,7,6.99,6.96,193.89000000000001,194.12,194.26,194.4,194.54,194.67000000000002,194.83,194.98000000000002,195.4,19.830000000000002,19.59,19.43,19.25,19.06,18.88,18.69,18.51,18.14,N/A,N/A +2012,12,18,12,30,101460,100270,99120,67.47,0,6.7,7.3,7.43,7.49,7.53,7.55,7.55,7.5600000000000005,7.55,191.38,191.61,191.77,191.93,192.09,192.24,192.42000000000002,192.59,193.06,19.92,19.68,19.52,19.34,19.16,18.98,18.79,18.61,18.240000000000002,N/A,N/A +2012,12,18,13,30,101470,100280,99130,65.86,0,6.33,6.87,6.99,7.05,7.09,7.12,7.15,7.19,7.48,187.88,188.11,188.28,188.47,188.68,188.91,189.23,189.57,191.82,20.14,19.93,19.79,19.62,19.44,19.27,19.1,18.94,18.68,N/A,N/A +2012,12,18,14,30,101480,100300,99150,68.79,0,6.6000000000000005,7.18,7.32,7.41,7.48,7.54,7.640000000000001,7.74,8.120000000000001,187.41,187.55,187.66,187.8,187.99,188.20000000000002,188.68,189.28,194.38,20.2,20,19.87,19.69,19.53,19.37,19.21,19.080000000000002,19.05,N/A,N/A +2012,12,18,15,30,101490,100300,99150,70.83,0,6.7,7.49,7.75,7.94,8.09,8.21,8.31,8.4,8.58,188.94,189.18,189.37,189.59,189.83,190.09,190.44,190.78,191.88,20.32,20.16,20.03,19.88,19.72,19.57,19.400000000000002,19.25,18.92,N/A,N/A +2012,12,18,16,30,101480,100290,99150,71.87,0,6.13,6.9,7.16,7.38,7.57,7.73,7.88,8.02,8.290000000000001,190.63,190.87,191.04,191.27,191.52,191.79,192.16,192.52,193.69,20.48,20.330000000000002,20.21,20.06,19.91,19.77,19.61,19.46,19.16,N/A,N/A +2012,12,18,17,30,101470,100290,99140,72.82000000000001,0,6.4,7.25,7.55,7.79,8,8.18,8.34,8.48,8.73,190.4,190.62,190.79,190.98,191.17000000000002,191.36,191.57,191.77,192.27,20.59,20.46,20.35,20.2,20.06,19.91,19.75,19.6,19.28,N/A,N/A +2012,12,18,18,30,101470,100290,99140,73.10000000000001,0,6.5,7.43,7.76,8.040000000000001,8.290000000000001,8.49,8.68,8.85,9.14,191.16,191.6,191.86,192.16,192.44,192.71,192.96,193.21,193.66,20.72,20.61,20.51,20.37,20.23,20.09,19.93,19.79,19.47,N/A,N/A +2012,12,18,19,30,101460,100280,99140,74.8,0,5.67,6.6000000000000005,6.96,7.28,7.55,7.8100000000000005,8.040000000000001,8.26,8.68,192.87,193.04,193.19,193.37,193.52,193.67000000000002,193.8,193.93,194.19,20.81,20.75,20.67,20.57,20.45,20.34,20.22,20.1,19.84,N/A,N/A +2012,12,18,20,30,101430,100250,99110,75.35000000000001,0,5.44,6.37,6.72,7.0200000000000005,7.28,7.5,7.68,7.84,8.1,185.5,185.99,186.42000000000002,186.93,187.43,187.94,188.49,188.99,190.14000000000001,20.82,20.76,20.69,20.580000000000002,20.47,20.35,20.21,20.09,19.8,N/A,N/A +2012,12,18,21,30,101390,100210,99070,75.57000000000001,0,5.59,6.6000000000000005,6.99,7.3500000000000005,7.66,7.94,8.19,8.41,8.8,180.95000000000002,181.52,181.94,182.44,182.95000000000002,183.47,184.01,184.52,185.53,20.79,20.76,20.7,20.61,20.51,20.41,20.29,20.17,19.900000000000002,N/A,N/A +2012,12,18,22,30,101360,100180,99040,77.72,0,5.75,6.82,7.25,7.65,8,8.3,8.58,8.83,9.26,178.9,179.52,180,180.58,181.15,181.73,182.35,182.93,184.1,20.740000000000002,20.72,20.67,20.580000000000002,20.490000000000002,20.39,20.27,20.16,19.91,N/A,N/A +2012,12,18,23,30,101330,100150,99010,78.89,0,5.5,6.62,7.09,7.54,7.94,8.32,8.65,8.950000000000001,9.4,170.91,171.91,172.63,173.48,174.23,174.94,175.51,176.01,176.74,20.740000000000002,20.77,20.75,20.72,20.67,20.62,20.54,20.46,20.21,N/A,N/A +2012,12,19,0,30,101340,100160,99020,79.11,0,6.29,7.43,7.88,8.3,8.68,9.02,9.35,9.65,10.24,170.87,171.34,171.68,172.08,172.48,172.89000000000001,173.34,173.77,174.74,20.740000000000002,20.72,20.66,20.580000000000002,20.5,20.42,20.32,20.240000000000002,20.03,N/A,N/A +2012,12,19,1,30,101330,100150,99010,80.15,0,6.5,7.74,8.26,8.75,9.200000000000001,9.620000000000001,10.01,10.370000000000001,10.96,167.01,167.95000000000002,168.65,169.49,170.27,171.01,171.64000000000001,172.19,172.64000000000001,20.81,20.81,20.78,20.72,20.66,20.6,20.52,20.44,20.21,N/A,N/A +2012,12,19,2,30,101330,100150,99010,80.77,0,6.79,8.11,8.64,9.16,9.6,10,10.35,10.66,11.13,166.8,167.32,167.76,168.34,168.95000000000002,169.59,170.21,170.79,171.58,20.85,20.86,20.830000000000002,20.78,20.72,20.650000000000002,20.57,20.490000000000002,20.26,N/A,N/A +2012,12,19,3,30,101320,100140,99010,81.68,0,7.12,8.44,8.96,9.47,9.92,10.33,10.72,11.09,11.8,167.67000000000002,168.15,168.49,168.94,169.42000000000002,169.91,170.47,171,172.08,20.89,20.88,20.830000000000002,20.76,20.69,20.61,20.52,20.44,20.23,N/A,N/A +2012,12,19,4,30,101300,100130,98990,83.07000000000001,0,6.78,8.15,8.72,9.26,9.74,10.18,10.61,11,11.78,167.93,168.41,168.78,169.22,169.62,170,170.28,170.52,170.53,20.91,20.94,20.91,20.86,20.81,20.75,20.67,20.6,20.39,N/A,N/A +2012,12,19,5,30,101290,100120,98980,83.43,0,7.26,8.69,9.290000000000001,9.86,10.370000000000001,10.84,11.28,11.68,12.39,166.05,166.71,167.21,167.83,168.45000000000002,169.08,169.68,170.22,170.96,20.95,20.97,20.95,20.91,20.86,20.81,20.740000000000002,20.67,20.5,N/A,N/A +2012,12,19,6,30,101300,100130,98990,84.9,0,7.47,8.91,9.5,10.07,10.57,11.05,11.5,11.92,12.68,165.98,166.62,167.14000000000001,167.78,168.45000000000002,169.14000000000001,169.85,170.52,171.64000000000001,21.01,21.01,20.98,20.92,20.86,20.8,20.73,20.66,20.47,N/A,N/A +2012,12,19,7,30,101300,100120,98990,85.2,0,7.890000000000001,9.46,10.1,10.72,11.26,11.77,12.24,12.67,13.41,164.73,165.39000000000001,165.87,166.44,167.04,167.65,168.28,168.86,169.83,21.13,21.14,21.11,21.04,20.97,20.89,20.79,20.7,20.45,N/A,N/A +2012,12,19,8,30,101270,100100,98960,87.83,0,8.22,9.8,10.43,11.01,11.52,11.99,12.42,12.81,13.49,163.26,163.67000000000002,164.01,164.48,164.99,165.56,166.26,166.95000000000002,168.70000000000002,21.14,21.16,21.12,21.07,21,20.94,20.87,20.8,20.650000000000002,N/A,N/A +2012,12,19,9,30,101250,100080,98940,86.7,0,8.17,9.790000000000001,10.44,11.06,11.61,12.11,12.57,13,13.75,166.61,167.28,167.77,168.4,169.06,169.72,170.4,171.04,172.17000000000002,21.3,21.36,21.35,21.3,21.240000000000002,21.18,21.1,21.01,20.8,N/A,N/A +2012,12,19,10,30,101220,100040,98910,90.36,0,8.06,9.77,10.49,11.18,11.790000000000001,12.35,12.870000000000001,13.34,14.17,158.98,159.64000000000001,160.16,160.85,161.58,162.33,163.12,163.87,165.32,21.240000000000002,21.29,21.28,21.240000000000002,21.19,21.14,21.07,21,20.8,N/A,N/A +2012,12,19,11,30,101190,100020,98890,92.76,0,8.18,9.9,10.61,11.31,11.93,12.5,13.01,13.48,14.25,159.67000000000002,160.46,161.01,161.73,162.48,163.25,164.08,164.87,166.5,21.23,21.29,21.28,21.25,21.21,21.16,21.1,21.03,20.85,N/A,N/A +2012,12,19,12,30,101180,100010,98880,93,0,7.79,9.51,10.24,10.94,11.55,12.11,12.6,13.040000000000001,13.75,159.38,160.29,161,161.92000000000002,162.88,163.88,164.92000000000002,165.91,167.68,21.23,21.31,21.31,21.3,21.28,21.240000000000002,21.19,21.14,20.96,N/A,N/A +2012,12,19,13,30,101170,100000,98860,92.79,0,7.7700000000000005,9.48,10.17,10.84,11.43,11.97,12.51,13.02,13.98,159.79,160.25,160.64000000000001,161.08,161.54,162,162.61,163.21,164.83,21.28,21.36,21.36,21.32,21.28,21.22,21.16,21.1,20.97,N/A,N/A +2012,12,19,14,30,101180,100010,98880,92.61,0,7.71,9.53,10.32,11.1,11.790000000000001,12.43,13.030000000000001,13.58,14.56,161.34,162.70000000000002,163.68,164.89000000000001,166.09,167.29,168.5,169.63,171.64000000000001,21.34,21.47,21.5,21.53,21.53,21.53,21.51,21.48,21.37,N/A,N/A +2012,12,19,15,30,101170,100000,98870,92.91,0,7.43,9.18,9.96,10.73,11.41,12.040000000000001,12.61,13.13,14,163.27,164.25,164.92000000000002,165.75,166.58,167.43,168.32,169.19,170.86,21.32,21.43,21.45,21.45,21.44,21.43,21.39,21.36,21.23,N/A,N/A +2012,12,19,16,30,101160,99990,98860,93.04,0,7.04,8.69,9.41,10.15,10.790000000000001,11.38,11.88,12.32,13.030000000000001,165.68,166.41,167.13,168.06,168.98,169.93,170.93,171.88,173.75,21.36,21.47,21.5,21.51,21.51,21.5,21.48,21.46,21.35,N/A,N/A +2012,12,19,17,30,101130,99960,98830,92.83,0,6.72,8.49,9.26,10,10.68,11.32,12,12.65,14.02,170.4,171.74,172.73,173.95000000000002,175.13,176.29,177.29,178.20000000000002,179.63,21.490000000000002,21.66,21.72,21.75,21.75,21.740000000000002,21.71,21.67,21.59,N/A,N/A +2012,12,19,18,30,101100,99930,98800,93.05,0,6.66,8.44,9.25,10.1,10.870000000000001,11.6,12.23,12.790000000000001,13.68,171.67000000000002,172.83,173.63,174.53,175.28,175.95000000000002,176.4,176.76,177.04,21.51,21.650000000000002,21.69,21.72,21.73,21.73,21.69,21.650000000000002,21.490000000000002,N/A,N/A +2012,12,19,19,30,101060,99900,98770,91.79,0,7.18,9.040000000000001,9.85,10.620000000000001,11.32,11.97,12.58,13.15,14.24,170.61,171.3,171.81,172.44,173.06,173.72,174.52,175.34,177.46,21.73,21.92,21.97,22,22,21.990000000000002,21.96,21.93,21.830000000000002,N/A,N/A +2012,12,19,20,30,101030,99860,98730,92.07000000000001,0,7.1000000000000005,8.94,9.76,10.59,11.32,11.99,12.61,13.19,14.22,169.16,170.32,171.13,172.06,172.91,173.73,174.52,175.25,176.54,21.6,21.78,21.84,21.87,21.88,21.87,21.830000000000002,21.78,21.61,N/A,N/A +2012,12,19,21,30,100990,99820,98700,91.83,0,7.22,9.1,9.94,10.76,11.5,12.200000000000001,12.870000000000001,13.5,14.75,171.52,172.70000000000002,173.56,174.48,175.26,175.96,176.51,177,177.95000000000002,21.59,21.79,21.85,21.88,21.89,21.89,21.86,21.830000000000002,21.7,N/A,N/A +2012,12,19,22,30,100930,99760,98640,91.76,0,7.43,9.3,10.13,10.94,11.66,12.34,12.96,13.530000000000001,14.43,166.5,167.41,168.1,168.82,169.46,170.04,170.63,171.18,172.33,21.55,21.77,21.85,21.900000000000002,21.93,21.94,21.92,21.89,21.740000000000002,N/A,N/A +2012,12,19,23,30,100920,99760,98630,91.68,0,7.95,9.85,10.73,11.57,12.32,13.02,13.67,14.280000000000001,15.31,170.43,170.49,170.61,170.82,171.12,171.5,172.03,172.61,173.81,21.54,21.79,21.88,21.94,21.97,21.990000000000002,21.98,21.96,21.85,N/A,N/A +2012,12,20,0,30,100910,99750,98620,92.27,0,7.57,9.46,10.32,11.200000000000001,11.97,12.67,13.290000000000001,13.85,14.92,161.36,162.47,163.49,165.16,166.82,168.54,170.06,171.42000000000002,174.16,21.42,21.650000000000002,21.76,21.89,21.990000000000002,22.080000000000002,22.1,22.1,22,N/A,N/A +2012,12,20,1,30,100900,99730,98610,91.84,0,8.14,10.02,10.86,11.700000000000001,12.47,13.22,13.92,14.58,15.69,167.21,168.46,169.41,170.63,171.75,172.83,173.75,174.58,175.75,21.54,21.67,21.73,21.82,21.87,21.89,21.86,21.830000000000002,21.67,N/A,N/A +2012,12,20,2,30,100890,99720,98600,91.42,0,8.48,10.46,11.33,12.17,12.93,13.63,14.32,14.97,16.05,174.95000000000002,175.55,175.95000000000002,176.35,176.75,177.15,177.64000000000001,178.15,179.38,21.62,21.86,21.94,21.97,21.98,21.97,21.96,21.94,21.84,N/A,N/A +2012,12,20,3,30,100900,99740,98620,91.07000000000001,0,8.21,10.08,10.870000000000001,11.63,12.290000000000001,12.9,13.47,14.01,15.08,178.64000000000001,178.91,179.18,179.64000000000001,180.16,180.77,181.51,182.26,184.06,21.69,21.89,21.95,21.98,21.990000000000002,21.97,21.93,21.89,21.75,N/A,N/A +2012,12,20,4,30,100940,99770,98650,92.18,0,6.6000000000000005,8.53,9.450000000000001,10.4,11.21,11.94,12.56,13.09,13.96,180.41,181.25,181.93,182.85,183.72,184.59,185.35,186.03,187.17000000000002,21.490000000000002,21.73,21.830000000000002,21.92,21.97,21.98,21.95,21.91,21.73,N/A,N/A +2012,12,20,5,30,100960,99800,98670,92.10000000000001,0,6.46,8.3,9.17,10.06,10.85,11.61,12.3,12.92,14.11,184.3,186.15,187.53,189.27,190.8,192.22,193.35,194.32,196.27,21.52,21.8,21.92,22.01,22.07,22.11,22.11,22.09,21.990000000000002,N/A,N/A +2012,12,20,6,30,100990,99820,98700,92,0,6.140000000000001,8.08,9.03,10.040000000000001,10.97,11.85,12.620000000000001,13.31,14.55,192.13,192.87,193.67000000000002,195.12,196.64000000000001,198.3,199.81,201.19,203.47,21.53,21.76,21.86,21.97,22.07,22.150000000000002,22.19,22.19,22.09,N/A,N/A +2012,12,20,7,30,101080,99920,98790,91.73,0,5.9,7.91,8.92,9.99,11.02,12.09,13.07,14,15.25,205.67000000000002,206.81,207.58,208.46,209.47,210.74,212.15,213.61,215.66,21.55,21.78,21.84,21.900000000000002,21.97,22.07,22.17,22.27,22.22,N/A,N/A +2012,12,20,8,30,101120,99950,98820,91.52,0,6.7700000000000005,8.9,9.99,11.14,12.14,13.05,13.75,14.32,14.97,220.66,220.05,219.65,219.8,220.22,220.94,221.76,222.58,224.84,21.61,22.04,22.23,22.330000000000002,22.41,22.46,22.45,22.43,22.26,N/A,N/A +2012,12,20,9,30,101160,99990,98860,91.12,0,8.3,10.14,10.9,11.58,12.15,12.64,13.05,13.41,14.05,221.61,223.44,224.72,226.35,227.81,229.19,230.43,231.57,233.79,21.650000000000002,21.8,21.82,21.81,21.79,21.78,21.740000000000002,21.69,21.54,N/A,N/A +2012,12,20,10,30,101380,100200,99050,74.88,0,6.93,8.08,8.65,9.31,9.98,10.67,11.44,12.200000000000001,13.8,303.46,307.61,310.09000000000003,312.90000000000003,315.45,317.91,320.13,322.19,325.38,20.46,20.400000000000002,20.36,20.3,20.22,20.13,20,19.88,19.53,N/A,N/A +2012,12,20,11,30,101560,100370,99210,52.25,0,15.22,17.1,17.7,18.080000000000002,18.36,18.57,18.740000000000002,18.88,19.09,330.23,330.43,330.54,330.66,330.76,330.86,330.97,331.06,331.25,19.03,18.68,18.5,18.29,18.1,17.91,17.7,17.52,17.13,N/A,N/A +2012,12,20,12,30,101710,100500,99330,54.980000000000004,0,15.98,17.66,18.13,18.37,18.51,18.6,18.650000000000002,18.67,18.66,327.77,328.21,328.42,328.63,328.84000000000003,329.03000000000003,329.24,329.44,329.84000000000003,17.1,16.57,16.34,16.12,15.91,15.71,15.5,15.31,14.92,N/A,N/A +2012,12,20,13,30,101860,100650,99460,60.4,0,14.17,15.52,15.88,16.080000000000002,16.2,16.29,16.35,16.39,16.43,339.89,339.51,339.3,339.09000000000003,338.90000000000003,338.73,338.55,338.39,338.08,15.01,14.35,14.09,13.85,13.63,13.42,13.21,13.01,12.6,N/A,N/A +2012,12,20,14,30,102030,100800,99610,63.46,0,14.46,15.84,16.23,16.44,16.580000000000002,16.69,16.76,16.82,16.89,339.81,339.75,339.69,339.64,339.58,339.52,339.46,339.41,339.29,13.26,12.47,12.18,11.93,11.69,11.48,11.26,11.06,10.65,N/A,N/A +2012,12,20,15,30,102140,100910,99710,65.6,0,15.96,17.47,17.89,18.11,18.25,18.35,18.41,18.45,18.5,333.81,334.01,334.15000000000003,334.29,334.42,334.54,334.66,334.78000000000003,335.01,11.99,11.08,10.77,10.5,10.26,10.040000000000001,9.82,9.61,9.200000000000001,N/A,N/A +2012,12,20,16,30,102230,100990,99780,65.58,0,16.01,17.57,18.04,18.3,18.48,18.62,18.71,18.79,18.900000000000002,334.88,334.99,335.05,335.1,335.15000000000003,335.19,335.24,335.27,335.35,11.24,10.290000000000001,9.97,9.69,9.450000000000001,9.22,9,8.790000000000001,8.38,N/A,N/A +2012,12,20,17,30,102270,101030,99830,65.17,0,14.870000000000001,16.29,16.68,16.9,17.05,17.16,17.240000000000002,17.3,17.400000000000002,333.67,333.66,333.68,333.69,333.7,333.71,333.73,333.74,333.75,11.44,10.540000000000001,10.23,9.97,9.72,9.51,9.28,9.08,8.67,N/A,N/A +2012,12,20,18,30,102360,101120,99920,63.08,0,15.16,16.63,17.04,17.27,17.43,17.55,17.63,17.7,17.8,334.6,334.65000000000003,334.69,334.73,334.76,334.79,334.81,334.84000000000003,334.90000000000003,11.71,10.82,10.52,10.26,10.01,9.8,9.57,9.36,8.950000000000001,N/A,N/A +2012,12,20,19,30,102430,101190,99990,61.04,0,14.69,16.09,16.490000000000002,16.71,16.86,16.98,17.06,17.13,17.22,332.97,333.05,333.09000000000003,333.12,333.15000000000003,333.18,333.21,333.24,333.29,12.05,11.19,10.89,10.63,10.39,10.17,9.950000000000001,9.74,9.33,N/A,N/A +2012,12,20,20,30,102470,101230,100030,58.15,0,14.39,15.76,16.14,16.35,16.5,16.6,16.68,16.740000000000002,16.82,332.7,332.76,332.8,332.84000000000003,332.86,332.88,332.92,332.94,332.99,12.48,11.65,11.370000000000001,11.11,10.88,10.66,10.44,10.23,9.82,N/A,N/A +2012,12,20,21,30,102550,101310,100110,55.480000000000004,0,13.88,15.14,15.5,15.700000000000001,15.83,15.93,16,16.05,16.13,333.48,333.54,333.59000000000003,333.63,333.66,333.7,333.73,333.76,333.81,12.66,11.86,11.58,11.32,11.09,10.88,10.65,10.450000000000001,10.040000000000001,N/A,N/A +2012,12,20,22,30,102600,101370,100160,54.44,0,13.64,14.86,15.200000000000001,15.39,15.51,15.6,15.66,15.71,15.77,333.93,334.01,334.06,334.1,334.14,334.18,334.22,334.25,334.33,12.58,11.78,11.5,11.25,11.02,10.8,10.58,10.370000000000001,9.96,N/A,N/A +2012,12,20,23,30,102720,101480,100270,54.39,0,12.77,13.870000000000001,14.18,14.34,14.46,14.540000000000001,14.6,14.64,14.700000000000001,337.19,337.31,337.38,337.44,337.5,337.55,337.61,337.66,337.77,12.35,11.56,11.27,11.02,10.790000000000001,10.58,10.35,10.15,9.74,N/A,N/A +2012,12,21,0,30,102830,101580,100380,53.24,0,12.21,13.24,13.530000000000001,13.69,13.8,13.88,13.93,13.98,14.05,342.28000000000003,342.34000000000003,342.36,342.38,342.39,342.41,342.43,342.44,342.47,12.06,11.27,10.99,10.74,10.5,10.290000000000001,10.07,9.86,9.450000000000001,N/A,N/A +2012,12,21,1,30,102900,101660,100450,51.13,0,12.68,13.76,14.06,14.22,14.33,14.4,14.46,14.5,14.55,343.36,343.40000000000003,343.43,343.45,343.48,343.5,343.53000000000003,343.55,343.61,11.81,11,10.71,10.46,10.23,10.01,9.790000000000001,9.58,9.17,N/A,N/A +2012,12,21,2,30,102940,101690,100480,52.34,0,12.14,13.14,13.41,13.55,13.64,13.71,13.75,13.790000000000001,13.84,345.53000000000003,345.67,345.76,345.84000000000003,345.90000000000003,345.96,346.03000000000003,346.09000000000003,346.2,11.64,10.84,10.56,10.31,10.08,9.86,9.64,9.43,9.03,N/A,N/A +2012,12,21,3,30,102970,101720,100510,53.160000000000004,0,11.47,12.38,12.61,12.73,12.81,12.86,12.89,12.92,12.950000000000001,353.72,353.51,353.36,353.24,353.12,353.01,352.89,352.79,352.59000000000003,11.51,10.72,10.44,10.200000000000001,9.96,9.76,9.540000000000001,9.33,8.92,N/A,N/A +2012,12,21,4,30,103010,101770,100550,50.120000000000005,0,11.57,12.49,12.73,12.85,12.94,13,13.040000000000001,13.07,13.1,354.98,354.88,354.81,354.74,354.67,354.61,354.55,354.49,354.38,11.4,10.61,10.33,10.08,9.84,9.64,9.42,9.21,8.81,N/A,N/A +2012,12,21,5,30,103050,101800,100590,48.86,0,11.09,11.93,12.15,12.27,12.34,12.39,12.42,12.450000000000001,12.48,0.38,0.09,359.90000000000003,359.72,359.56,359.42,359.27,359.14,358.88,11.27,10.48,10.21,9.96,9.73,9.53,9.31,9.11,8.71,N/A,N/A +2012,12,21,6,30,103080,101830,100620,47.94,0,9.85,10.57,10.75,10.85,10.91,10.950000000000001,10.98,11,11.040000000000001,0.96,0.58,0.32,0.09,359.88,359.69,359.5,359.33,358.99,11.3,10.57,10.3,10.07,9.84,9.64,9.43,9.22,8.82,N/A,N/A +2012,12,21,7,30,103130,101880,100660,47.160000000000004,0,9.44,10.1,10.26,10.35,10.4,10.43,10.46,10.47,10.5,2.32,1.92,1.6600000000000001,1.42,1.21,1.01,0.81,0.63,0.27,11.32,10.6,10.34,10.11,9.88,9.68,9.47,9.27,8.870000000000001,N/A,N/A +2012,12,21,8,30,103150,101900,100690,48.26,0,9.05,9.67,9.81,9.89,9.94,9.97,9.99,10,10.02,359.45,359.15000000000003,358.97,358.8,358.65000000000003,358.52,358.37,358.25,358.01,11.35,10.65,10.39,10.15,9.93,9.73,9.52,9.32,8.92,N/A,N/A +2012,12,21,9,30,103160,101910,100690,47.4,0,9.09,9.700000000000001,9.85,9.92,9.96,9.99,10.01,10.02,10.03,1.35,1.04,0.8300000000000001,0.64,0.47000000000000003,0.32,0.16,0.01,359.73,11.36,10.65,10.4,10.16,9.94,9.74,9.53,9.33,8.93,N/A,N/A +2012,12,21,10,30,103170,101920,100710,45.2,0,8.82,9.4,9.540000000000001,9.6,9.64,9.66,9.67,9.69,9.69,3.98,3.61,3.36,3.13,2.92,2.72,2.52,2.33,1.94,11.38,10.68,10.43,10.200000000000001,9.98,9.78,9.57,9.370000000000001,8.98,N/A,N/A +2012,12,21,11,30,103190,101940,100730,44.06,0,8.65,9.22,9.34,9.4,9.43,9.450000000000001,9.46,9.47,9.47,3.37,3.08,2.9,2.73,2.56,2.41,2.25,2.1,1.82,11.46,10.77,10.52,10.3,10.08,9.88,9.67,9.47,9.08,N/A,N/A +2012,12,21,12,30,103210,101970,100750,44.050000000000004,0,8.27,8.78,8.89,8.94,8.96,8.98,8.98,8.98,8.97,5.99,5.72,5.55,5.38,5.22,5.07,4.91,4.76,4.46,11.42,10.74,10.49,10.27,10.05,9.86,9.65,9.46,9.07,N/A,N/A +2012,12,21,13,30,103220,101970,100750,45.29,0,8.24,8.75,8.85,8.9,8.92,8.94,8.94,8.94,8.93,6.61,6.59,6.58,6.57,6.55,6.53,6.51,6.49,6.43,11.3,10.620000000000001,10.370000000000001,10.15,9.93,9.73,9.53,9.33,8.950000000000001,N/A,N/A +2012,12,21,14,30,103250,102000,100790,47.14,0,7.33,7.75,7.84,7.88,7.9,7.91,7.91,7.91,7.9,10.17,10.26,10.3,10.34,10.38,10.42,10.450000000000001,10.49,10.55,11.3,10.65,10.4,10.18,9.96,9.77,9.56,9.370000000000001,8.98,N/A,N/A +2012,12,21,15,30,103240,101990,100770,46.67,0,6.46,6.8100000000000005,6.87,6.9,6.91,6.92,6.92,6.92,6.91,11.09,11.17,11.200000000000001,11.23,11.26,11.28,11.31,11.33,11.38,11.450000000000001,10.82,10.58,10.36,10.15,9.96,9.75,9.56,9.17,N/A,N/A +2012,12,21,16,30,103200,101960,100750,45.59,0,5.79,6.07,6.13,6.15,6.16,6.16,6.16,6.16,6.15,13.42,13.41,13.41,13.4,13.39,13.39,13.38,13.38,13.35,11.75,11.15,10.92,10.700000000000001,10.49,10.3,10.09,9.9,9.51,N/A,N/A +2012,12,21,17,30,103150,101910,100700,44.730000000000004,0,5.4,5.67,5.72,5.74,5.75,5.76,5.76,5.76,5.76,9.28,9.28,9.3,9.31,9.32,9.33,9.33,9.34,9.35,12.17,11.6,11.370000000000001,11.15,10.94,10.75,10.55,10.36,9.97,N/A,N/A +2012,12,21,18,30,103120,101870,100670,44.79,0,4.39,4.58,4.62,4.64,4.64,4.65,4.65,4.65,4.65,6.5,6.18,5.99,5.8100000000000005,5.64,5.5,5.3500000000000005,5.21,4.94,12.68,12.14,11.92,11.71,11.5,11.31,11.1,10.91,10.52,N/A,N/A +2012,12,21,19,30,103090,101850,100640,45.300000000000004,0,3.85,4,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,4,3.99,0.04,0.46,0.75,1.03,1.29,1.52,1.74,1.94,2.35,13.16,12.65,12.43,12.22,12.01,11.82,11.61,11.42,11.03,N/A,N/A +2012,12,21,20,30,103030,101800,100590,41.81,0,3.5700000000000003,3.73,3.75,3.77,3.77,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.7800000000000002,355.81,355.76,355.73,355.69,355.67,355.65000000000003,355.63,355.62,355.62,13.65,13.16,12.950000000000001,12.74,12.540000000000001,12.35,12.14,11.96,11.56,N/A,N/A +2012,12,21,21,30,103000,101760,100560,43.18,0,2.9,3.02,3.04,3.0500000000000003,3.06,3.0700000000000003,3.0700000000000003,3.08,3.09,355.40000000000003,354.89,354.57,354.29,354.02,353.78000000000003,353.53000000000003,353.31,352.85,14.09,13.63,13.42,13.21,13.01,12.82,12.61,12.42,12.030000000000001,N/A,N/A +2012,12,21,22,30,102960,101730,100540,48.4,0,2.36,2.44,2.44,2.44,2.44,2.44,2.43,2.43,2.42,341.08,341.33,341.49,341.65000000000003,341.79,341.92,342.09000000000003,342.23,342.55,14.36,13.91,13.700000000000001,13.5,13.290000000000001,13.1,12.9,12.71,12.31,N/A,N/A +2012,12,21,23,30,102960,101730,100530,46.68,0,1.97,2.0100000000000002,2,1.98,1.97,1.95,1.94,1.92,1.8900000000000001,334.92,335.46,335.79,336.11,336.44,336.74,337.08,337.39,338.09000000000003,14.6,14.16,13.950000000000001,13.75,13.55,13.36,13.15,12.96,12.57,N/A,N/A +2012,12,22,0,30,102950,101720,100520,47.27,0,2.15,2.2,2.19,2.18,2.16,2.15,2.13,2.11,2.08,338.72,339.16,339.41,339.66,339.89,340.11,340.33,340.55,341.04,14.82,14.38,14.18,13.98,13.77,13.58,13.38,13.19,12.790000000000001,N/A,N/A +2012,12,22,1,30,102920,101700,100500,47.59,0,1.92,1.95,1.93,1.92,1.9000000000000001,1.8800000000000001,1.86,1.84,1.8,354.65000000000003,355.39,355.85,356.3,356.76,357.19,357.66,358.1,359.06,14.97,14.540000000000001,14.34,14.14,13.94,13.75,13.540000000000001,13.35,12.96,N/A,N/A +2012,12,22,2,30,102910,101690,100490,47.52,0,1.6,1.61,1.59,1.57,1.55,1.53,1.51,1.49,1.45,4.7700000000000005,5.89,6.59,7.28,7.97,8.6,9.35,10.040000000000001,11.55,15.1,14.68,14.48,14.27,14.07,13.88,13.68,13.49,13.1,N/A,N/A +2012,12,22,3,30,102910,101690,100500,47.75,0,1.09,1.07,1.05,1.02,1,0.97,0.9500000000000001,0.93,0.89,12.88,13.36,13.68,14.05,14.46,14.85,15.3,15.72,16.740000000000002,15.24,14.83,14.63,14.43,14.23,14.040000000000001,13.84,13.64,13.25,N/A,N/A +2012,12,22,4,30,102890,101660,100470,48.7,0,1.33,1.33,1.3,1.28,1.26,1.24,1.21,1.19,1.1500000000000001,25.2,25.25,25.27,25.29,25.34,25.400000000000002,25.51,25.62,25.93,15.33,14.92,14.73,14.52,14.32,14.13,13.93,13.74,13.35,N/A,N/A +2012,12,22,5,30,102870,101640,100450,49.65,0,1.12,1.11,1.09,1.06,1.04,1.02,0.99,0.97,0.92,40.53,41.22,41.61,41.95,42.27,42.54,42.82,43.07,43.68,15.41,15,14.81,14.61,14.41,14.22,14.02,13.83,13.44,N/A,N/A +2012,12,22,6,30,102870,101650,100460,51.11,0,0.99,0.99,0.96,0.9400000000000001,0.92,0.91,0.89,0.87,0.84,39.74,41.78,43.07,44.31,45.54,46.67,47.95,49.14,51.76,15.43,15.05,14.85,14.65,14.450000000000001,14.27,14.06,13.870000000000001,13.48,N/A,N/A +2012,12,22,7,30,102880,101650,100470,53.46,0,1.17,1.17,1.1400000000000001,1.12,1.1,1.07,1.05,1.03,0.99,46.800000000000004,48.24,49.11,49.97,50.83,51.620000000000005,52.52,53.35,55.18,15.43,15.040000000000001,14.85,14.64,14.44,14.25,14.05,13.86,13.47,N/A,N/A +2012,12,22,8,30,102860,101640,100450,54.79,0,1.3,1.28,1.25,1.22,1.2,1.17,1.1400000000000001,1.12,1.08,46.45,48.230000000000004,49.35,50.46,51.59,52.64,53.84,54.97,57.53,15.42,15.030000000000001,14.83,14.63,14.43,14.24,14.040000000000001,13.85,13.46,N/A,N/A +2012,12,22,9,30,102850,101630,100440,54.94,0,1.53,1.57,1.56,1.56,1.55,1.55,1.54,1.54,1.52,69.79,71.85000000000001,73.06,74.19,75.26,76.24,77.28,78.24,80.22,15.49,15.1,14.91,14.71,14.5,14.32,14.11,13.92,13.530000000000001,N/A,N/A +2012,12,22,10,30,102850,101620,100430,53.370000000000005,0,2.2600000000000002,2.2800000000000002,2.2600000000000002,2.23,2.21,2.18,2.15,2.13,2.08,86.44,86.83,87.13,87.43,87.74,88.03,88.35000000000001,88.66,89.33,15.52,15.120000000000001,14.93,14.73,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A +2012,12,22,11,30,102840,101620,100430,56.660000000000004,0,2.5500000000000003,2.64,2.65,2.66,2.66,2.66,2.66,2.67,2.67,69.46000000000001,71.73,73.13,74.44,75.69,76.85000000000001,78.04,79.13,81.31,15.52,15.120000000000001,14.93,14.73,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A +2012,12,22,12,30,102840,101620,100430,54.99,0,2.98,3.11,3.13,3.14,3.15,3.16,3.16,3.17,3.17,92.51,93.23,93.75,94.27,94.77,95.24,95.74000000000001,96.2,97.18,15.65,15.25,15.06,14.85,14.66,14.47,14.26,14.07,13.68,N/A,N/A +2012,12,22,13,30,102830,101610,100420,59.34,0,3.71,3.89,3.92,3.93,3.94,3.94,3.94,3.94,3.94,109.34,110.06,110.47,110.84,111.21000000000001,111.55,111.9,112.23,112.93,15.73,15.32,15.13,14.92,14.72,14.530000000000001,14.33,14.14,13.75,N/A,N/A +2012,12,22,14,30,102840,101610,100430,61.38,0,4.11,4.34,4.39,4.42,4.44,4.46,4.47,4.48,4.5,108.28,109.04,109.51,109.93,110.33,110.69,111.07000000000001,111.42,112.11,15.89,15.48,15.290000000000001,15.08,14.88,14.69,14.49,14.3,13.91,N/A,N/A +2012,12,22,15,30,102820,101600,100410,61.43,0,4.92,5.18,5.24,5.26,5.2700000000000005,5.28,5.29,5.29,5.28,120.71000000000001,121.16,121.41,121.64,121.86,122.05,122.25,122.45,122.85000000000001,16.13,15.72,15.530000000000001,15.32,15.120000000000001,14.93,14.73,14.540000000000001,14.15,N/A,N/A +2012,12,22,16,30,102770,101550,100370,64.03,0,5,5.3100000000000005,5.39,5.43,5.47,5.5,5.5200000000000005,5.54,5.57,126.96000000000001,127.22,127.39,127.55,127.7,127.85000000000001,127.99000000000001,128.13,128.42000000000002,16.330000000000002,15.93,15.73,15.530000000000001,15.33,15.14,14.94,14.75,14.35,N/A,N/A +2012,12,22,17,30,102700,101490,100310,63.370000000000005,0,5.23,5.58,5.66,5.71,5.75,5.7700000000000005,5.79,5.8100000000000005,5.83,130.6,131.16,131.48,131.79,132.06,132.31,132.58,132.81,133.3,16.61,16.22,16.02,15.82,15.620000000000001,15.43,15.23,15.040000000000001,14.64,N/A,N/A +2012,12,22,18,30,102670,101450,100270,64.5,0,5.55,5.93,6.03,6.08,6.12,6.15,6.17,6.19,6.22,137.71,138.09,138.35,138.59,138.82,139.03,139.24,139.44,139.84,16.85,16.46,16.26,16.06,15.860000000000001,15.68,15.47,15.280000000000001,14.89,N/A,N/A +2012,12,22,19,30,102630,101420,100240,66.63,0,5.69,6.1000000000000005,6.21,6.28,6.33,6.36,6.390000000000001,6.42,6.45,139.12,139.70000000000002,140.01,140.31,140.57,140.82,141.06,141.29,141.76,17.06,16.68,16.490000000000002,16.29,16.080000000000002,15.9,15.69,15.5,15.11,N/A,N/A +2012,12,22,20,30,102560,101350,100180,66.66,0,5.92,6.36,6.47,6.54,6.59,6.62,6.65,6.67,6.7,144.04,144.52,144.83,145.12,145.4,145.66,145.91,146.16,146.65,17.38,17.01,16.830000000000002,16.63,16.43,16.240000000000002,16.04,15.85,15.46,N/A,N/A +2012,12,22,21,30,102500,101290,100120,69.84,0,6.26,6.79,6.93,7.0200000000000005,7.08,7.13,7.16,7.19,7.23,146.51,147.13,147.49,147.82,148.12,148.4,148.67000000000002,148.92000000000002,149.42000000000002,17.71,17.36,17.18,16.98,16.78,16.59,16.39,16.21,15.81,N/A,N/A +2012,12,22,22,30,102450,101240,100070,71.44,0,6.28,6.82,6.98,7.09,7.17,7.23,7.29,7.34,7.43,147.35,148.18,148.71,149.22,149.67000000000002,150.08,150.5,150.87,151.63,17.990000000000002,17.650000000000002,17.48,17.28,17.09,16.9,16.7,16.52,16.13,N/A,N/A +2012,12,22,23,30,102400,101200,100030,73.06,0,7.37,8.01,8.17,8.26,8.33,8.370000000000001,8.4,8.43,8.47,149,149.45000000000002,149.76,150.05,150.31,150.56,150.81,151.04,151.51,18.41,18.1,17.92,17.72,17.53,17.35,17.150000000000002,16.96,16.57,N/A,N/A +2012,12,23,0,30,102360,101160,99990,71.95,0,8.17,8.98,9.19,9.3,9.38,9.43,9.47,9.49,9.52,155.97,156.51,156.84,157.15,157.44,157.71,157.98,158.22,158.74,18.740000000000002,18.47,18.3,18.1,17.92,17.73,17.53,17.35,16.96,N/A,N/A +2012,12,23,1,30,102300,101100,99930,74.34,0,6.98,7.7,7.9,8.02,8.11,8.19,8.25,8.3,8.38,157.88,158.03,158.16,158.28,158.39000000000001,158.49,158.6,158.69,158.89000000000001,18.97,18.71,18.54,18.36,18.17,17.990000000000002,17.79,17.61,17.22,N/A,N/A +2012,12,23,2,30,102260,101060,99900,75.3,0,6.92,7.69,7.930000000000001,8.120000000000001,8.28,8.41,8.53,8.64,8.84,159.3,160.06,160.48,160.92000000000002,161.32,161.70000000000002,162.09,162.44,163.12,19.17,18.95,18.8,18.63,18.45,18.27,18.080000000000002,17.91,17.53,N/A,N/A +2012,12,23,3,30,102220,101030,99870,77.48,0,7.58,8.370000000000001,8.620000000000001,8.78,8.89,8.98,9.040000000000001,9.08,9.13,158.98,158.94,159.02,159.16,159.34,159.54,159.78,160.01,160.78,19.27,19.07,18.93,18.75,18.580000000000002,18.41,18.22,18.05,17.68,N/A,N/A +2012,12,23,4,30,102150,100960,99800,80.05,0,7.0600000000000005,8.01,8.35,8.66,8.94,9.18,9.43,9.65,10.07,154.46,155.51,156.16,156.86,157.5,158.1,158.66,159.17000000000002,160.09,19.38,19.2,19.07,18.91,18.740000000000002,18.580000000000002,18.41,18.240000000000002,17.89,N/A,N/A +2012,12,23,5,30,102130,100930,99780,77.96000000000001,0,8.05,9.06,9.42,9.700000000000001,9.93,10.120000000000001,10.290000000000001,10.44,10.700000000000001,165.65,165.78,165.93,166.15,166.4,166.67000000000002,167.01,167.33,168.15,19.67,19.53,19.41,19.26,19.11,18.95,18.79,18.63,18.3,N/A,N/A +2012,12,23,6,30,102090,100900,99740,82.3,0,7.43,8.66,9.17,9.63,10.03,10.39,10.71,10.99,11.43,166.95000000000002,167.95000000000002,168.61,169.36,170.03,170.66,171.22,171.71,172.51,19.63,19.580000000000002,19.5,19.38,19.26,19.13,18.98,18.84,18.53,N/A,N/A +2012,12,23,7,30,102070,100880,99720,83.31,0,6.91,8.2,8.76,9.24,9.67,10.040000000000001,10.370000000000001,10.66,11.14,179.07,179.64000000000001,180,180.1,180.06,179.93,179.71,179.49,179.09,19.62,19.56,19.48,19.35,19.22,19.080000000000002,18.93,18.79,18.48,N/A,N/A +2012,12,23,8,30,102030,100840,99690,82.16,0,7.07,8.3,8.790000000000001,9.18,9.49,9.74,9.92,10.08,10.28,179.77,179.66,179.63,179.61,179.63,179.67000000000002,179.82,179.98,180.68,19.76,19.75,19.68,19.57,19.44,19.3,19.14,18.990000000000002,18.66,N/A,N/A +2012,12,23,9,30,102000,100810,99660,84.88,0,6.72,8.08,8.69,9.27,9.77,10.22,10.61,10.97,11.51,184.55,185.31,185.94,186.71,187.43,188.14000000000001,188.81,189.44,190.54,19.740000000000002,19.75,19.7,19.62,19.53,19.42,19.3,19.19,18.91,N/A,N/A +2012,12,23,10,30,101960,100770,99620,85.35000000000001,0,6.96,8.39,9.02,9.6,10.09,10.53,10.89,11.22,11.74,185.89000000000001,186.70000000000002,187.26,187.84,188.35,188.83,189.25,189.63,190.23,19.78,19.81,19.79,19.72,19.64,19.55,19.44,19.32,19.05,N/A,N/A +2012,12,23,11,30,101940,100760,99610,85.56,0,6.92,8.370000000000001,9,9.6,10.120000000000001,10.58,10.98,11.35,11.92,190.11,190.79,191.31,191.89000000000001,192.44,192.98000000000002,193.54,194.06,195.18,19.85,19.900000000000002,19.87,19.81,19.73,19.64,19.53,19.42,19.150000000000002,N/A,N/A +2012,12,23,12,30,101920,100730,99580,86.44,0,6.44,7.83,8.46,9.06,9.59,10.09,10.540000000000001,10.96,11.68,190.01,191.23000000000002,192.15,193.20000000000002,194.16,195.08,195.91,196.67000000000002,197.92000000000002,19.81,19.86,19.84,19.78,19.71,19.62,19.52,19.42,19.18,N/A,N/A +2012,12,23,13,30,101890,100700,99550,85.74,0,6.65,8.08,8.700000000000001,9.290000000000001,9.790000000000001,10.25,10.67,11.040000000000001,11.69,192.45000000000002,192.95000000000002,193.33,193.76,194.15,194.52,194.93,195.32,196.3,19.89,19.94,19.92,19.85,19.77,19.68,19.57,19.47,19.21,N/A,N/A +2012,12,23,14,30,101880,100700,99550,86.69,0,6.61,8.05,8.69,9.28,9.8,10.26,10.69,11.08,11.71,193.69,194.39000000000001,194.91,195.54,196.1,196.63,197.13,197.59,198.36,19.91,19.97,19.95,19.88,19.81,19.72,19.61,19.51,19.26,N/A,N/A +2012,12,23,15,30,101860,100670,99520,87.74,0,6.3100000000000005,7.74,8.38,8.98,9.52,10.02,10.49,10.92,11.74,194.47,195.35,196,196.73000000000002,197.42000000000002,198.12,198.86,199.56,200.96,19.95,20.02,20.01,19.96,19.89,19.81,19.72,19.63,19.41,N/A,N/A +2012,12,23,16,30,101820,100640,99490,87.58,0,6.45,7.92,8.6,9.25,9.8,10.290000000000001,10.700000000000001,11.06,11.63,198.73000000000002,199.74,200.46,201.23000000000002,201.84,202.35,202.74,203.07,203.59,20.01,20.1,20.11,20.07,20.02,19.95,19.86,19.76,19.5,N/A,N/A +2012,12,23,17,30,101760,100580,99430,87.82000000000001,0,6.29,7.73,8.370000000000001,9,9.55,10.06,10.52,10.94,11.68,198.77,199.51,200.07,200.68,201.20000000000002,201.67000000000002,202.1,202.5,203.37,20.06,20.13,20.12,20.07,20.01,19.93,19.830000000000002,19.73,19.490000000000002,N/A,N/A +2012,12,23,18,30,101710,100530,99390,87.19,0,6.43,7.91,8.55,9.14,9.63,10.07,10.450000000000001,10.790000000000001,11.43,195.1,196.29,197.14000000000001,198.05,198.76,199.34,199.75,200.09,200.63,20.150000000000002,20.25,20.25,20.21,20.14,20.06,19.94,19.82,19.54,N/A,N/A +2012,12,23,19,30,101670,100490,99340,90.37,0,6.140000000000001,7.6000000000000005,8.27,8.92,9.5,10.040000000000001,10.52,10.97,11.73,195.47,197.29,198.56,199.89000000000001,201.01,201.98000000000002,202.76,203.45000000000002,204.47,20.07,20.14,20.14,20.09,20.04,19.97,19.89,19.8,19.580000000000002,N/A,N/A +2012,12,23,20,30,101610,100430,99280,88.63,0,6.65,8.18,8.870000000000001,9.53,10.11,10.63,11.09,11.51,12.23,199.09,200.02,200.70000000000002,201.44,202.1,202.71,203.3,203.84,204.85,20.14,20.240000000000002,20.240000000000002,20.21,20.16,20.09,20.01,19.92,19.69,N/A,N/A +2012,12,23,21,30,101560,100380,99230,89.01,0,7.22,8.78,9.48,10.14,10.700000000000001,11.200000000000001,11.65,12.05,12.75,202.36,202.78,203.1,203.45000000000002,203.74,204,204.25,204.49,205.07,20.150000000000002,20.26,20.27,20.23,20.18,20.12,20.03,19.94,19.7,N/A,N/A +2012,12,23,22,30,101510,100330,99190,88.81,0,7.33,8.950000000000001,9.67,10.34,10.93,11.47,11.94,12.36,13.030000000000001,199.95000000000002,200.66,201.22,201.9,202.51,203.07,203.54,203.96,204.57,20.17,20.3,20.32,20.29,20.25,20.19,20.11,20.02,19.79,N/A,N/A +2012,12,23,23,30,101490,100320,99170,89.96000000000001,0,7.0200000000000005,8.56,9.25,9.91,10.47,10.98,11.44,11.86,12.59,200.53,201.05,201.48000000000002,202.02,202.51,203,203.44,203.85,204.49,20.14,20.26,20.28,20.25,20.2,20.14,20.06,19.97,19.740000000000002,N/A,N/A +2012,12,24,0,30,101470,100290,99150,90.48,0,6.95,8.57,9.31,10.01,10.61,11.16,11.64,12.07,12.8,201.46,201.92000000000002,202.28,202.75,203.23000000000002,203.73000000000002,204.23000000000002,204.70000000000002,205.55,20.150000000000002,20.28,20.29,20.26,20.21,20.150000000000002,20.06,19.98,19.75,N/A,N/A +2012,12,24,1,30,101460,100280,99140,90.9,0,6.8,8.44,9.200000000000001,9.92,10.53,11.1,11.61,12.09,12.88,203.42000000000002,204.1,204.59,205.08,205.47,205.77,206.02,206.23000000000002,206.62,20.18,20.330000000000002,20.35,20.330000000000002,20.29,20.22,20.13,20.04,19.81,N/A,N/A +2012,12,24,2,30,101440,100260,99120,91.24,0,7.23,8.91,9.66,10.370000000000001,11,11.57,12.09,12.58,13.47,205.25,205.70000000000002,206.04,206.43,206.8,207.15,207.48000000000002,207.79,208.32,20.18,20.32,20.34,20.32,20.27,20.21,20.13,20.05,19.84,N/A,N/A +2012,12,24,3,30,101420,100240,99100,91.37,0,7.73,9.49,10.3,11.06,11.73,12.33,12.88,13.38,14.24,206.29,206.65,206.92000000000002,207.24,207.52,207.8,208.05,208.29,208.68,20.25,20.400000000000002,20.43,20.42,20.38,20.330000000000002,20.25,20.17,19.96,N/A,N/A +2012,12,24,4,30,101410,100230,99090,91.43,0,7.57,9.31,10.11,10.870000000000001,11.53,12.120000000000001,12.66,13.15,14.01,208.6,208.77,208.91,209.08,209.26,209.44,209.65,209.85,210.25,20.25,20.400000000000002,20.43,20.41,20.37,20.31,20.23,20.150000000000002,19.93,N/A,N/A +2012,12,24,5,30,101410,100230,99090,91.63,0,6.84,8.57,9.38,10.16,10.84,11.47,12.040000000000001,12.57,13.48,211.61,211.72,211.83,212,212.17000000000002,212.35,212.53,212.71,213.04,20.22,20.39,20.43,20.41,20.38,20.32,20.25,20.17,19.96,N/A,N/A +2012,12,24,6,30,101410,100240,99100,91.55,0,6.92,8.66,9.47,10.24,10.92,11.55,12.120000000000001,12.64,13.57,212.18,212.56,212.84,213.15,213.43,213.71,213.95000000000002,214.18,214.59,20.17,20.37,20.42,20.42,20.38,20.34,20.26,20.19,19.98,N/A,N/A +2012,12,24,7,30,101410,100230,99090,91.73,0,6.88,8.59,9.4,10.18,10.86,11.49,12.07,12.61,13.57,214.02,214.4,214.70000000000002,215.02,215.3,215.55,215.78,215.99,216.35,20.13,20.32,20.38,20.38,20.36,20.32,20.26,20.19,20.01,N/A,N/A +2012,12,24,8,30,101390,100210,99070,91.58,0,7.36,9.13,9.94,10.73,11.42,12.05,12.63,13.17,14.120000000000001,215.05,215.73000000000002,216.23000000000002,216.82,217.35,217.86,218.32,218.73000000000002,219.37,20.16,20.35,20.400000000000002,20.41,20.400000000000002,20.36,20.31,20.240000000000002,20.07,N/A,N/A +2012,12,24,9,30,101380,100200,99070,91.39,0,7.24,9.02,9.82,10.59,11.27,11.9,12.47,12.99,14,217.33,218,218.5,219.08,219.56,220,220.37,220.71,221.32,20.2,20.39,20.44,20.44,20.41,20.36,20.28,20.2,20,N/A,N/A +2012,12,24,10,30,101380,100210,99070,91.78,0,6.67,8.42,9.23,10.01,10.700000000000001,11.35,11.96,12.530000000000001,13.58,223.70000000000002,223.81,223.92000000000002,224.14000000000001,224.41,224.78,225.15,225.52,226.08,20.14,20.31,20.35,20.330000000000002,20.29,20.23,20.150000000000002,20.080000000000002,19.89,N/A,N/A +2012,12,24,11,30,101410,100230,99090,92.16,0,5.97,7.66,8.48,9.290000000000001,9.98,10.59,11.120000000000001,11.59,12.39,232.85,233.23000000000002,233.44,233.5,233.5,233.44,233.47,233.53,233.96,20.080000000000002,20.27,20.32,20.32,20.3,20.240000000000002,20.16,20.07,19.830000000000002,N/A,N/A +2012,12,24,12,30,101420,100250,99100,93.10000000000001,0,5,6.6000000000000005,7.32,7.99,8.56,9.05,9.49,9.88,10.61,247.66,247.6,247.54,247.41,247.21,246.94,246.6,246.25,245.58,19.91,20.09,20.12,20.09,20.03,19.94,19.830000000000002,19.73,19.48,N/A,N/A +2012,12,24,13,30,101430,100250,99110,93.95,0,4.48,5.98,6.66,7.2700000000000005,7.7700000000000005,8.19,8.700000000000001,9.23,9.99,252.81,253.8,254.43,254.84,255.01000000000002,254.98000000000002,254.57,254.01000000000002,252.34,19.75,19.91,19.95,19.91,19.84,19.77,19.69,19.61,19.42,N/A,N/A +2012,12,24,14,30,101440,100260,99120,94.67,0,4.1,5.53,6.22,6.94,7.66,8.44,9.08,9.65,10.14,245.06,248.77,251.19,252.45000000000002,253.12,253.29,253.15,252.91,252.65,19.59,19.87,19.97,19.95,19.93,19.91,19.89,19.88,19.76,N/A,N/A +2012,12,24,15,30,101430,100250,99110,96.10000000000001,0,3.2,4.47,5.2,6.37,7.26,7.8500000000000005,8.32,8.73,9.36,245.53,248.46,250.81,254.06,255.76000000000002,255.88,255.67000000000002,255.33,254.57,19.38,19.650000000000002,19.78,19.85,19.84,19.77,19.73,19.69,19.580000000000002,N/A,N/A +2012,12,24,16,30,101410,100230,99080,97.33,0,3.1,4.48,5.34,6.2700000000000005,6.92,7.2700000000000005,7.57,7.84,8.25,257.26,258.35,259.37,260.6,260.94,260.37,259.83,259.31,258.81,19.150000000000002,19.39,19.55,19.66,19.7,19.7,19.650000000000002,19.57,19.35,N/A,N/A +2012,12,24,17,30,101360,100180,99030,98.14,0,1.69,2.69,3.09,3.35,3.48,3.5100000000000002,3.46,3.41,3.36,267.04,269.61,271.99,275.97,280.07,284.28000000000003,288.13,291.5,294.82,19.22,19.31,19.330000000000002,19.31,19.28,19.22,19.14,19.05,18.93,N/A,N/A +2012,12,24,18,30,101330,100150,99000,99.28,0,1.61,2.11,2.33,2.25,2.11,1.93,1.93,1.97,2.4,346.12,340.67,335.94,330.28000000000003,324.61,319.21,311.14,302.87,291.35,18.64,18.66,18.75,18.91,18.95,18.91,18.91,18.91,18.830000000000002,N/A,N/A +2012,12,24,19,30,101310,100120,98980,94.54,0,1.96,2.29,2.48,2.66,2.71,2.67,2.45,2.23,1.7,14.82,7.45,2.68,358.35,352.98,346.91,340.27,334.55,318.90000000000003,19.03,18.8,18.68,18.56,18.51,18.52,18.6,18.7,18.66,N/A,N/A +2012,12,24,20,30,101250,100060,98920,91.22,0,2.2,2.35,2.41,2.5300000000000002,2.46,2.2600000000000002,1.95,1.67,0.89,50.980000000000004,47.08,42.67,34.31,28.04,23.62,21.72,20.72,20.02,19.02,18.77,18.68,18.68,18.7,18.73,18.73,18.72,18.66,N/A,N/A +2012,12,24,21,30,101210,100030,98880,91.74,0,1.57,1.59,1.59,1.61,1.53,1.36,1.11,0.89,0.56,83.88,76.88,69.73,55.7,47.31,43.300000000000004,47.64,52.92,93.39,19,18.78,18.73,18.830000000000002,18.87,18.88,18.86,18.830000000000002,18.69,N/A,N/A +2012,12,24,22,30,101150,99960,98820,95.43,0,2.74,2.71,2.61,2.46,2.32,2.17,2.05,1.96,1.83,112.13,106.04,100.89,93.71000000000001,89.28,86.59,89.84,94.04,109.09,18.91,18.830000000000002,18.85,18.92,18.96,18.97,18.94,18.89,18.72,N/A,N/A +2012,12,24,23,30,101120,99940,98800,94.58,0,2.8000000000000003,3.11,3.17,3.09,2.98,2.86,2.66,2.46,1.98,106.88,108.7,110.24000000000001,112.10000000000001,113.49000000000001,114.56,116.10000000000001,117.55,128.21,18.97,19.13,19.21,19.16,19.06,18.91,18.79,18.68,18.66,N/A,N/A +2012,12,25,0,30,101090,99910,98770,96.48,0,2.17,2.25,2.19,2.21,2.29,2.4,2.45,2.48,2.5,115.62,129.15,136.02,139.17000000000002,144.24,151,153.12,153.82,156.02,19.26,19.25,19.18,18.96,18.79,18.650000000000002,18.54,18.45,18.29,N/A,N/A +2012,12,25,1,30,101060,99880,98740,97.14,0,2.79,2.63,2.42,2.4,2.4,2.42,2.44,2.47,2.5100000000000002,110.47,123.31,129.45,132.52,137.89000000000001,145.25,147.98,149.05,151.25,19.2,19.38,19.400000000000002,19.18,19.01,18.86,18.75,18.67,18.48,N/A,N/A +2012,12,25,2,30,101020,99840,98700,97.03,0,2.64,2.95,2.9,2.91,2.9,2.87,2.92,2.98,3.43,130.34,137.97,141.84,143.89000000000001,144.92000000000002,145.27,146.67000000000002,148.27,157.26,19.25,19.55,19.62,19.43,19.25,19.07,18.97,18.900000000000002,19.47,N/A,N/A +2012,12,25,3,30,100970,99790,98650,97.98,0,3.63,4.24,4.38,4.37,4.41,4.49,4.61,4.72,4.87,116.4,120.55,124.51,130.3,134.88,138.75,143.1,147.27,155.81,18.89,18.87,18.900000000000002,18.96,19.07,19.22,19.46,19.71,19.91,N/A,N/A +2012,12,25,4,30,100860,99690,98550,98.59,0,5.44,6.16,6.36,6.390000000000001,6.390000000000001,6.36,6.390000000000001,6.42,6.69,116.91,122.72,130.83,145,152.73,156.83,160.38,163.48,169,18.73,18.64,18.86,19.44,19.830000000000002,20.12,20.17,20.17,20.1,N/A,N/A +2012,12,25,5,30,100850,99670,98540,94.97,14.3,5.48,7.29,8.25,9.21,10.4,11.9,12.81,13.450000000000001,13.4,149.4,153.02,156.61,162.81,169.72,177.77,182.36,185.46,186.32,19.47,19.53,19.6,19.77,19.900000000000002,20,20.09,20.18,20.080000000000002,N/A,N/A +2012,12,25,6,30,100850,99680,98550,91.95,0,5.95,7.74,8.55,9.33,10.05,10.74,11.38,11.96,12.58,182.46,181.85,182.20000000000002,183.83,186.09,188.76,190.78,192.54,193.77,19.73,19.77,19.77,19.830000000000002,20.01,20.26,20.34,20.37,20.240000000000002,N/A,N/A +2012,12,25,7,30,100800,99630,98500,93.92,0,6.38,8.2,9.19,10.34,11.46,12.58,13.31,13.86,14.51,188.37,189.14000000000001,189.75,190.67000000000002,191.54,192.39000000000001,193,193.5,194.16,19.27,19.19,19.28,19.67,20.02,20.330000000000002,20.43,20.46,20.32,N/A,N/A +2012,12,25,8,30,100730,99550,98420,97.93,0,2.61,4.39,5.69,7.25,8.53,9.540000000000001,10.46,11.33,12.76,202.35,197.47,194.1,192.67000000000002,191.74,191.24,191.09,191.05,191.13,18.490000000000002,18.85,19.14,19.52,19.7,19.76,19.89,20.02,20.16,N/A,N/A +2012,12,25,9,30,100700,99530,98400,90.07000000000001,0,7.16,9.09,10.040000000000001,11.02,11.86,12.620000000000001,13.17,13.61,14.040000000000001,183.94,184.88,185.51,185.84,186.06,186.16,186.59,187.11,188.09,20.06,20.63,20.900000000000002,21.080000000000002,21.16,21.17,21.17,21.17,21.1,N/A,N/A +2012,12,25,10,30,100630,99460,98330,93.23,0,4.2700000000000005,6.09,7.1000000000000005,8.36,9.58,10.8,11.91,12.950000000000001,14.42,173.18,177.71,180.35,181.72,182.71,183.39000000000001,184.02,184.61,186.19,19.48,19.87,20.02,20.09,20.150000000000002,20.21,20.26,20.3,20.34,N/A,N/A +2012,12,25,11,30,100660,99490,98360,90.4,0,9.09,11.05,11.950000000000001,12.84,13.63,14.39,15.11,15.790000000000001,16.94,185.36,186.6,187.5,188.52,189.36,190.08,190.61,191.03,191.70000000000002,19.990000000000002,20.22,20.29,20.35,20.38,20.400000000000002,20.39,20.38,20.31,N/A,N/A +2012,12,25,12,30,100490,99330,98190,92.93,0,3.27,4.96,5.72,6.5200000000000005,7.4,8.4,9.42,10.43,12.290000000000001,164.20000000000002,166.63,169.16,173,175.86,178.02,178.96,179.44,179.58,19.68,20.09,20.12,19.91,19.75,19.62,19.490000000000002,19.37,19.14,N/A,N/A +2012,12,25,13,30,100490,99330,98200,89.73,0,8.91,10.82,11.72,12.57,13.3,13.97,14.540000000000001,15.06,15.85,178.32,177.94,177.6,177.18,176.84,176.54,176.46,176.47,177.32,20.13,20.35,20.400000000000002,20.42,20.42,20.400000000000002,20.37,20.34,20.21,N/A,N/A +2012,12,25,14,30,100520,99350,98220,91.2,0,8.2,10.14,11.1,12.08,12.97,13.83,14.620000000000001,15.35,16.51,180.07,179.88,179.73,179.54,179.38,179.25,179.19,179.14000000000001,179.37,19.84,20.05,20.12,20.17,20.21,20.25,20.27,20.27,20.22,N/A,N/A +2012,12,25,15,30,100440,99270,98140,91.13,5.9,8.81,10.82,11.75,12.72,13.65,14.59,15.59,16.59,18.57,177.48,178.70000000000002,179.48,180.41,181.41,182.52,183.85,185.22,187.94,19.84,19.91,19.900000000000002,19.87,19.830000000000002,19.79,19.75,19.72,19.57,N/A,N/A +2012,12,25,16,30,100440,99270,98140,90.03,0,11.85,14.22,15.26,16.29,17.16,17.96,18.68,19.34,20.54,190.79,191.71,192.18,192.66,193.06,193.43,193.76,194.07,194.69,20.080000000000002,20.22,20.23,20.21,20.17,20.12,20.06,19.990000000000002,19.830000000000002,N/A,N/A +2012,12,25,17,30,100280,99120,97990,90.10000000000001,0,15.77,18.26,19.26,20.12,20.84,21.48,22.080000000000002,22.63,23.59,194.54,194.84,195.14000000000001,195.53,195.92000000000002,196.34,196.83,197.33,198.52,20.080000000000002,20.18,20.17,20.1,20.03,19.95,19.87,19.8,19.650000000000002,N/A,N/A +2012,12,25,18,30,100390,99220,98100,89.94,1.5,14.51,17.080000000000002,18.07,18.94,19.69,20.37,20.990000000000002,21.56,22.57,214.73000000000002,215.78,216.23000000000002,216.73000000000002,217.18,217.63,218.07,218.48000000000002,219.28,20.1,20.22,20.21,20.14,20.080000000000002,19.990000000000002,19.900000000000002,19.81,19.61,N/A,N/A +2012,12,25,19,30,100420,99250,98120,90.82000000000001,0,10.790000000000001,12.780000000000001,13.64,14.44,15.08,15.610000000000001,15.860000000000001,15.99,15.56,237.64000000000001,238.55,239.28,240.36,241.51,242.82,244.57,246.36,254.17000000000002,19.95,20.06,20.080000000000002,20.09,20.12,20.16,20.21,20.28,20.54,N/A,N/A +2012,12,25,20,30,100480,99310,98180,79.87,0,10.02,11.84,12.6,13.280000000000001,13.83,14.290000000000001,14.66,14.98,15.44,308.16,306.5,305.56,304.78000000000003,304.26,303.92,303.66,303.44,302.68,20.01,20.16,20.17,20.14,20.080000000000002,19.990000000000002,19.87,19.740000000000002,19.44,N/A,N/A +2012,12,25,21,30,100570,99390,98260,58.65,0,12.01,13.91,14.66,15.3,15.83,16.29,16.7,17.05,17.61,307.74,307.40000000000003,307.17,306.92,306.7,306.48,306.27,306.08,305.68,19.92,19.98,19.92,19.81,19.68,19.54,19.37,19.2,18.830000000000002,N/A,N/A +2012,12,25,22,30,100700,99520,98380,51.89,0,12.26,13.780000000000001,14.370000000000001,14.8,15.16,15.47,15.75,16,16.45,304.08,304.47,304.69,304.91,305.09000000000003,305.26,305.41,305.55,305.76,19.22,19.150000000000002,19.04,18.88,18.72,18.55,18.37,18.2,17.830000000000002,N/A,N/A +2012,12,25,23,30,100830,99640,98490,55.72,0,13.8,15.48,16.06,16.45,16.740000000000002,16.97,17.150000000000002,17.31,17.57,305.91,305.78000000000003,305.76,305.76,305.75,305.75,305.75,305.76,305.76,17.830000000000002,17.56,17.400000000000002,17.2,17.01,16.82,16.62,16.43,16.04,N/A,N/A +2012,12,26,0,30,100950,99750,98590,76.75,0,15.99,17.650000000000002,18.16,18.42,18.59,18.69,18.740000000000002,18.77,18.76,326.23,326.22,326.12,325.98,325.85,325.72,325.57,325.44,325.14,15.57,15.040000000000001,14.82,14.58,14.36,14.16,13.950000000000001,13.76,13.36,N/A,N/A +2012,12,26,1,30,101150,99940,98750,81.77,0,15.34,16.81,17.32,17.580000000000002,17.76,17.87,17.94,17.990000000000002,18.03,314.27,314.35,314.49,314.63,314.75,314.86,314.97,315.08,315.28000000000003,12.9,12.19,11.91,11.64,11.41,11.19,10.97,10.77,10.36,N/A,N/A +2012,12,26,2,30,101300,100070,98870,82.72,0,16.72,18.23,18.67,18.85,18.95,19,19.01,19,18.93,318.17,318.34000000000003,318.43,318.52,318.6,318.66,318.73,318.8,318.94,10.19,9.26,8.94,8.67,8.43,8.22,8,7.8,7.4,N/A,N/A +2012,12,26,3,30,101410,100180,98970,87.37,0,14.23,15.44,15.81,16.02,16.15,16.240000000000002,16.3,16.35,16.4,327.78000000000003,327.5,327.40000000000003,327.33,327.28000000000003,327.22,327.18,327.14,327.06,8.9,7.98,7.65,7.37,7.12,6.9,6.66,6.45,6.03,N/A,N/A +2012,12,26,4,30,101510,100270,99060,85.96000000000001,0,14.22,15.39,15.700000000000001,15.85,15.94,16,16.03,16.05,16.06,331.69,331.33,331.08,330.85,330.63,330.43,330.22,330.02,329.63,7.57,6.59,6.25,5.98,5.73,5.51,5.28,5.07,4.66,N/A,N/A +2012,12,26,5,30,101630,100380,99160,84.72,0,14.41,15.66,16,16.19,16.31,16.39,16.44,16.48,16.53,330.85,330.65000000000003,330.52,330.40000000000003,330.28000000000003,330.17,330.07,329.97,329.77,6.59,5.5600000000000005,5.22,4.94,4.69,4.46,4.23,4.0200000000000005,3.61,N/A,N/A +2012,12,26,6,30,101730,100470,99250,87.39,0,13.5,14.58,14.85,14.99,15.07,15.13,15.16,15.18,15.19,331.42,331.41,331.43,331.46,331.49,331.51,331.54,331.57,331.63,6.1000000000000005,5.05,4.7,4.42,4.16,3.94,3.71,3.49,3.08,N/A,N/A +2012,12,26,7,30,101820,100560,99340,86.99,0,13.48,14.55,14.81,14.950000000000001,15.030000000000001,15.09,15.120000000000001,15.14,15.15,334.24,334.2,334.16,334.13,334.1,334.07,334.04,334.02,333.97,5.74,4.69,4.34,4.0600000000000005,3.81,3.58,3.36,3.14,2.73,N/A,N/A +2012,12,26,8,30,101880,100620,99400,87.56,0,13.86,14.92,15.200000000000001,15.33,15.41,15.46,15.48,15.5,15.5,335.7,335.71,335.7,335.7,335.7,335.69,335.7,335.7,335.7,5.46,4.38,4.0200000000000005,3.73,3.48,3.25,3.0300000000000002,2.82,2.41,N/A,N/A +2012,12,26,9,30,101930,100670,99440,89.59,0,13.24,14.27,14.540000000000001,14.67,14.75,14.8,14.82,14.83,14.83,337.7,337.77,337.81,337.86,337.91,337.94,337.99,338.03000000000003,338.13,5.3100000000000005,4.24,3.88,3.6,3.34,3.12,2.89,2.68,2.27,N/A,N/A +2012,12,26,10,30,102000,100730,99510,90.25,0,12.32,13.22,13.44,13.55,13.6,13.64,13.65,13.65,13.63,339.02,339.09000000000003,339.13,339.17,339.21,339.24,339.28000000000003,339.32,339.40000000000003,5.18,4.16,3.81,3.54,3.29,3.06,2.84,2.63,2.23,N/A,N/A +2012,12,26,11,30,102060,100800,99570,90.38,0,11.65,12.46,12.65,12.74,12.780000000000001,12.81,12.81,12.81,12.780000000000001,340.64,340.71,340.76,340.81,340.85,340.88,340.93,340.97,341.05,5.08,4.08,3.74,3.47,3.22,3,2.7800000000000002,2.57,2.17,N/A,N/A +2012,12,26,12,30,102130,100860,99630,89.52,0,11.01,11.76,11.92,12,12.030000000000001,12.05,12.05,12.05,12.01,342.26,342.32,342.37,342.40000000000003,342.45,342.49,342.53000000000003,342.57,342.66,4.98,4.01,3.67,3.4,3.16,2.94,2.72,2.5100000000000002,2.11,N/A,N/A +2012,12,26,13,30,102180,100910,99680,89.71000000000001,0,10.370000000000001,11.05,11.200000000000001,11.27,11.290000000000001,11.31,11.31,11.3,11.27,344.2,344.38,344.49,344.59000000000003,344.68,344.77,344.86,344.95,345.14,4.9,3.96,3.64,3.38,3.13,2.92,2.7,2.49,2.09,N/A,N/A +2012,12,26,14,30,102240,100970,99740,90.66,0,9.72,10.31,10.43,10.48,10.5,10.5,10.49,10.48,10.44,345.47,345.65000000000003,345.75,345.84000000000003,345.94,346.02,346.11,346.2,346.37,4.97,4.0600000000000005,3.74,3.48,3.24,3.0300000000000002,2.81,2.61,2.21,N/A,N/A +2012,12,26,15,30,102220,100960,99730,90.81,0,10.76,11.450000000000001,11.59,11.66,11.68,11.69,11.68,11.67,11.63,346.11,346.21,346.28000000000003,346.34000000000003,346.40000000000003,346.46,346.52,346.59000000000003,346.71,5.3100000000000005,4.37,4.04,3.7800000000000002,3.54,3.3200000000000003,3.11,2.91,2.5100000000000002,N/A,N/A +2012,12,26,16,30,102240,100980,99750,89.26,0,9.73,10.33,10.46,10.52,10.540000000000001,10.55,10.55,10.540000000000001,10.5,346.16,346.25,346.32,346.37,346.42,346.47,346.51,346.56,346.65000000000003,5.7700000000000005,4.89,4.57,4.3100000000000005,4.08,3.86,3.65,3.45,3.0500000000000003,N/A,N/A +2012,12,26,17,30,102220,100960,99730,86.94,0,9.3,9.86,9.98,10.03,10.05,10.06,10.06,10.040000000000001,10.01,343.92,344.01,344.08,344.14,344.2,344.25,344.31,344.36,344.48,6.3500000000000005,5.5,5.2,4.95,4.71,4.5,4.29,4.09,3.69,N/A,N/A +2012,12,26,18,30,102240,100980,99760,83.05,0,8.43,8.92,9.01,9.05,9.07,9.07,9.07,9.05,9.02,342.49,342.62,342.72,342.8,342.88,342.95,343.03000000000003,343.11,343.26,7.03,6.23,5.94,5.7,5.46,5.26,5.05,4.84,4.45,N/A,N/A +2012,12,26,19,30,102220,100960,99750,79.55,0,8.69,9.200000000000001,9.31,9.35,9.36,9.370000000000001,9.36,9.34,9.31,343.35,343.52,343.62,343.72,343.82,343.90000000000003,344,344.09000000000003,344.27,7.74,6.95,6.67,6.43,6.2,6,5.78,5.58,5.19,N/A,N/A +2012,12,26,20,30,102160,100910,99700,76.2,0,8.9,9.44,9.540000000000001,9.58,9.6,9.6,9.6,9.58,9.540000000000001,345.27,345.44,345.55,345.66,345.76,345.85,345.96,346.06,346.28000000000003,8.45,7.68,7.4,7.16,6.93,6.73,6.5200000000000005,6.32,5.92,N/A,N/A +2012,12,26,21,30,102170,100920,99710,75.02,0,7.29,7.69,7.78,7.82,7.83,7.84,7.84,7.83,7.8100000000000005,348.47,348.76,348.93,349.08,349.23,349.37,349.51,349.65000000000003,349.92,9.13,8.43,8.17,7.930000000000001,7.71,7.51,7.3,7.1000000000000005,6.7,N/A,N/A +2012,12,26,22,30,102150,100910,99700,69.65,0,6.21,6.51,6.5600000000000005,6.57,6.57,6.5600000000000005,6.55,6.54,6.5,357.04,356.95,356.88,356.82,356.77,356.72,356.67,356.62,356.53000000000003,9.61,8.96,8.71,8.48,8.26,8.06,7.8500000000000005,7.65,7.26,N/A,N/A +2012,12,26,23,30,102140,100900,99690,68.98,0,6.32,6.61,6.65,6.65,6.640000000000001,6.62,6.6000000000000005,6.58,6.5200000000000005,3.7,3.8200000000000003,3.88,3.93,3.99,4.03,4.08,4.12,4.22,9.790000000000001,9.15,8.9,8.67,8.46,8.26,8.05,7.86,7.46,N/A,N/A +2012,12,27,0,30,102160,100920,99710,70.42,0,6.74,7.0600000000000005,7.1000000000000005,7.1000000000000005,7.09,7.07,7.04,7.01,6.94,16.240000000000002,16.34,16.4,16.44,16.490000000000002,16.53,16.580000000000002,16.63,16.73,9.72,9.07,8.81,8.58,8.36,8.16,7.95,7.76,7.36,N/A,N/A +2012,12,27,1,30,102160,100910,99700,70.47,0,6.61,6.9,6.93,6.93,6.91,6.890000000000001,6.8500000000000005,6.82,6.74,23.330000000000002,23.54,23.67,23.79,23.91,24.01,24.13,24.240000000000002,24.47,9.52,8.86,8.6,8.38,8.16,7.96,7.75,7.55,7.16,N/A,N/A +2012,12,27,2,30,102160,100910,99700,70.57000000000001,0,6.34,6.61,6.640000000000001,6.63,6.61,6.59,6.5600000000000005,6.5200000000000005,6.45,31.220000000000002,31.68,31.98,32.25,32.53,32.77,33.05,33.32,33.87,9.46,8.81,8.55,8.33,8.11,7.91,7.7,7.51,7.12,N/A,N/A +2012,12,27,3,30,102130,100890,99680,72.28,0,6.36,6.66,6.7,6.7,6.69,6.68,6.66,6.63,6.58,37.92,38.550000000000004,38.93,39.29,39.64,39.96,40.300000000000004,40.63,41.32,9.68,9.03,8.78,8.55,8.33,8.13,7.930000000000001,7.73,7.34,N/A,N/A +2012,12,27,4,30,102100,100860,99660,75.58,0,5.94,6.21,6.26,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.25,6.24,6.2,46.26,47.1,47.61,48.08,48.53,48.95,49.39,49.800000000000004,50.64,10.11,9.48,9.23,9.01,8.790000000000001,8.6,8.38,8.19,7.79,N/A,N/A +2012,12,27,5,30,102090,100850,99640,75.48,0,5.8500000000000005,6.11,6.15,6.16,6.15,6.140000000000001,6.13,6.11,6.08,54.43,55.39,56,56.56,57.09,57.57,58.1,58.59,59.58,10.450000000000001,9.84,9.6,9.38,9.16,8.96,8.75,8.56,8.17,N/A,N/A +2012,12,27,6,30,102070,100830,99630,75.92,0,5.13,5.4,5.46,5.49,5.5200000000000005,5.54,5.55,5.5600000000000005,5.58,65.2,66.58,67.41,68.18,68.89,69.52,70.19,70.81,72.03,11.08,10.52,10.290000000000001,10.08,9.86,9.67,9.46,9.26,8.870000000000001,N/A,N/A +2012,12,27,7,30,102050,100820,99630,77.75,0,5.04,5.24,5.26,5.26,5.25,5.24,5.22,5.2,5.16,81.8,82.59,83.17,83.71000000000001,84.23,84.71000000000001,85.23,85.72,86.72,11.56,11.01,10.78,10.57,10.35,10.16,9.950000000000001,9.76,9.36,N/A,N/A +2012,12,27,8,30,102020,100800,99600,82.68,0,5.7700000000000005,6.11,6.18,6.21,6.23,6.25,6.25,6.25,6.25,88.4,89.88,90.55,91.15,91.67,92.14,92.63,93.07000000000001,93.94,12.09,11.540000000000001,11.31,11.09,10.88,10.68,10.47,10.27,9.88,N/A,N/A +2012,12,27,9,30,101990,100760,99570,76.12,0,5.48,5.78,5.8500000000000005,5.88,5.9,5.92,5.92,5.93,5.93,104.87,105.59,106.03,106.43,106.8,107.12,107.46000000000001,107.77,108.38,12.64,12.11,11.88,11.67,11.450000000000001,11.26,11.05,10.85,10.450000000000001,N/A,N/A +2012,12,27,10,30,101910,100690,99500,77.64,0,6.41,6.78,6.86,6.9,6.92,6.93,6.94,6.95,6.95,97.53,97.93,98.22,98.48,98.75,98.99000000000001,99.25,99.51,100.03,13.01,12.48,12.26,12.040000000000001,11.83,11.64,11.43,11.24,10.85,N/A,N/A +2012,12,27,11,30,101880,100660,99480,78.19,0.4,5.93,6.3100000000000005,6.4,6.45,6.49,6.51,6.53,6.55,6.58,107.9,109.32000000000001,110.03,110.69,111.31,111.88,112.48,113.04,114.19,13.700000000000001,13.200000000000001,12.99,12.77,12.57,12.38,12.17,11.98,11.59,N/A,N/A +2012,12,27,12,30,101850,100630,99440,81.28,2.9000000000000004,7.46,7.9,8.01,8.06,8.08,8.09,8.1,8.1,8.08,89.47,90.47,91.13,91.76,92.34,92.86,93.41,93.92,94.99,13.66,13.13,12.91,12.700000000000001,12.5,12.3,12.1,11.91,11.53,N/A,N/A +2012,12,27,13,30,101790,100570,99390,81.19,0,7.55,8.1,8.23,8.3,8.34,8.370000000000001,8.39,8.4,8.4,104.92,105.35000000000001,105.57000000000001,105.77,105.97,106.14,106.33,106.5,106.85000000000001,14.17,13.66,13.43,13.22,13.01,12.81,12.6,12.4,12.01,N/A,N/A +2012,12,27,14,30,101780,100560,99380,80.68,0,8.1,8.69,8.84,8.91,8.96,8.99,9.01,9.02,9.02,103.02,103.60000000000001,103.9,104.16,104.42,104.65,104.89,105.11,105.58,14.59,14.08,13.870000000000001,13.65,13.44,13.25,13.040000000000001,12.85,12.46,N/A,N/A +2012,12,27,15,30,101750,100540,99360,83.73,0,8.32,8.92,9.09,9.17,9.23,9.27,9.31,9.33,9.36,95.58,96.41,96.83,97.21000000000001,97.54,97.84,98.14,98.42,98.98,14.83,14.33,14.120000000000001,13.9,13.69,13.5,13.3,13.1,12.71,N/A,N/A +2012,12,27,16,30,101700,100490,99320,82.71000000000001,0,8.91,9.61,9.8,9.89,9.950000000000001,9.99,10.02,10.03,10.040000000000001,99.08,99.16,99.24000000000001,99.33,99.41,99.5,99.58,99.66,99.85000000000001,15.120000000000001,14.620000000000001,14.41,14.19,13.98,13.790000000000001,13.58,13.39,13,N/A,N/A +2012,12,27,17,30,101630,100420,99250,85.02,0,9.82,10.69,10.92,11.05,11.14,11.200000000000001,11.25,11.28,11.33,99.58,100,100.26,100.52,100.75,100.97,101.19,101.4,101.82000000000001,15.43,14.94,14.72,14.51,14.31,14.11,13.91,13.72,13.33,N/A,N/A +2012,12,27,18,30,101580,100380,99210,86.29,1.1,10.92,11.91,12.16,12.3,12.38,12.44,12.47,12.5,12.52,102.68,103.08,103.31,103.52,103.72,103.9,104.10000000000001,104.28,104.65,15.66,15.17,14.96,14.74,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A +2012,12,27,19,30,101540,100340,99170,85.49,0,10.64,11.65,11.92,12.08,12.18,12.25,12.3,12.34,12.38,107.27,107.61,107.8,107.99000000000001,108.16,108.31,108.48,108.63,108.94,16.21,15.76,15.55,15.34,15.13,14.94,14.74,14.55,14.16,N/A,N/A +2012,12,27,20,30,101500,100300,99140,86.09,0,11.36,12.43,12.76,12.93,13.040000000000001,13.120000000000001,13.17,13.200000000000001,13.23,110.16,110.32000000000001,110.45,110.58,110.7,110.81,110.93,111.05,111.31,16.55,16.12,15.92,15.71,15.5,15.31,15.11,14.92,14.530000000000001,N/A,N/A +2012,12,27,21,30,101420,100220,99060,90.68,1.1,11.08,12.23,12.56,12.76,12.9,13,13.07,13.13,13.200000000000001,112.11,112.68,112.93,113.15,113.35000000000001,113.54,113.74000000000001,113.92,114.29,16.86,16.45,16.26,16.05,15.85,15.67,15.47,15.290000000000001,14.9,N/A,N/A +2012,12,27,22,30,101360,100170,99010,89.55,4.800000000000001,12.09,13.23,13.52,13.65,13.72,13.76,13.76,13.76,13.72,114.71000000000001,114.94,115.11,115.31,115.52,115.73,115.99000000000001,116.23,116.88,17.18,16.79,16.6,16.4,16.21,16.02,15.83,15.65,15.280000000000001,N/A,N/A +2012,12,27,23,30,101300,100110,98950,91.72,0,10.14,11.01,11.22,11.33,11.4,11.46,11.56,11.69,12.43,104.94,105.44,105.86,106.38,107.05,107.77,108.99000000000001,110.51,118.67,17.41,17.05,16.88,16.69,16.51,16.34,16.17,16.03,15.88,N/A,N/A +2012,12,28,0,30,101270,100080,98920,91.7,5.5,11.42,12.57,12.88,13.06,13.19,13.290000000000001,13.370000000000001,13.44,13.68,114.8,115.13,115.41,115.72,116.04,116.38,116.8,117.22,118.53,17.82,17.490000000000002,17.32,17.12,16.94,16.76,16.57,16.4,16.05,N/A,N/A +2012,12,28,1,30,101250,100060,98910,93.45,0.4,8.34,9.61,10.1,10.34,10.620000000000001,10.94,11.21,11.44,11.83,121.44,122.63,123.61,124.89,126.29,127.81,129.49,131.1,134.34,18.36,18.12,17.98,17.8,17.66,17.55,17.44,17.34,17.11,N/A,N/A +2012,12,28,2,30,101210,100020,98870,91.04,0,8.41,9.5,9.89,10.23,10.52,10.790000000000001,11.040000000000001,11.28,11.77,125.54,126.14,126.57000000000001,127.09,127.65,128.24,128.93,129.6,131.38,18.740000000000002,18.54,18.400000000000002,18.25,18.1,17.96,17.81,17.67,17.400000000000002,N/A,N/A +2012,12,28,3,30,101190,100010,98860,90.73,0.7000000000000001,8.3,9.51,9.97,10.36,10.71,11.02,11.31,11.58,12.11,140.37,140.91,141.43,142.13,142.88,143.69,144.64000000000001,145.56,147.66,19.06,18.94,18.86,18.740000000000002,18.63,18.52,18.41,18.3,18.07,N/A,N/A +2012,12,28,4,30,101150,99970,98820,91.99,0.4,8.27,9.63,10.17,10.64,11.08,11.47,11.86,12.21,12.86,145.22,145.79,146.38,147.1,147.83,148.56,149.28,149.95000000000002,151.17000000000002,19.25,19.16,19.080000000000002,18.96,18.85,18.73,18.6,18.48,18.22,N/A,N/A +2012,12,28,5,30,101100,99920,98780,93.36,1.8,7.58,9.03,9.68,10.38,11.05,11.72,12.39,13.030000000000001,14.24,154.92000000000002,155.61,156.20000000000002,156.92000000000002,157.64000000000001,158.37,159.1,159.78,160.96,19.19,19.11,19.04,18.95,18.86,18.78,18.68,18.6,18.43,N/A,N/A +2012,12,28,6,30,101080,99900,98760,90.46000000000001,0,9.18,10.89,11.67,12.42,13.08,13.68,14.24,14.74,15.59,154.75,155.35,155.76,156.16,156.5,156.8,157.11,157.4,158.21,19.73,19.73,19.68,19.6,19.52,19.44,19.34,19.25,19.04,N/A,N/A +2012,12,28,7,30,101030,99850,98710,88.51,0,10.17,12.1,12.92,13.69,14.370000000000001,15.01,15.6,16.15,17.150000000000002,159.67000000000002,160.17000000000002,160.59,161.09,161.56,162.04,162.49,162.9,163.61,20.14,20.22,20.2,20.16,20.11,20.05,19.97,19.900000000000002,19.71,N/A,N/A +2012,12,28,8,30,101020,99850,98710,90.46000000000001,0,9.84,11.57,12.33,13.02,13.61,14.17,14.69,15.17,16.080000000000002,163.79,164.18,164.48,164.92000000000002,165.35,165.83,166.31,166.78,167.78,20.13,20.240000000000002,20.25,20.22,20.18,20.12,20.05,19.97,19.77,N/A,N/A +2012,12,28,9,30,100960,99790,98650,91.27,0,9.31,11.14,11.94,12.69,13.34,13.94,14.51,15.030000000000001,16.03,164.71,165.20000000000002,165.66,166.32,166.98,167.68,168.42000000000002,169.12,170.47,20.17,20.28,20.29,20.26,20.23,20.18,20.13,20.07,19.92,N/A,N/A +2012,12,28,10,30,100940,99770,98630,89.97,0,9.09,10.94,11.76,12.530000000000001,13.200000000000001,13.81,14.370000000000001,14.89,15.81,166.65,167.23,167.72,168.31,168.86,169.41,169.94,170.44,171.39000000000001,20.36,20.5,20.51,20.48,20.43,20.36,20.29,20.21,20.03,N/A,N/A +2012,12,28,11,30,100890,99720,98580,90.36,0,10.27,12.19,13.01,13.77,14.44,15.05,15.620000000000001,16.15,17.13,171.84,172.18,172.45000000000002,172.81,173.18,173.57,173.96,174.35,175.14000000000001,20.37,20.51,20.53,20.5,20.46,20.41,20.34,20.27,20.1,N/A,N/A +2012,12,28,12,30,100870,99700,98570,89.8,0.7000000000000001,10.78,12.870000000000001,13.77,14.620000000000001,15.36,16.04,16.66,17.21,18.2,175.58,175.86,176,176.18,176.34,176.48,176.61,176.73,176.92000000000002,20.490000000000002,20.67,20.69,20.68,20.650000000000002,20.6,20.53,20.46,20.27,N/A,N/A +2012,12,28,13,30,100810,99640,98510,89.5,0.4,11.14,13.24,14.15,14.950000000000001,15.65,16.3,16.89,17.42,18.43,176.17000000000002,176.12,176.38,176.64000000000001,176.89000000000001,177.13,177.36,177.58,178.04,20.56,20.75,20.78,20.76,20.72,20.68,20.61,20.54,20.37,N/A,N/A +2012,12,28,14,30,100900,99730,98590,92.79,99.2,8.89,10.46,11.23,11.97,12.61,13.23,13.84,14.44,15.620000000000001,192.1,191.78,191.4,190.73,189.99,189.02,187.87,186.63,184,19.85,19.87,19.84,19.740000000000002,19.66,19.57,19.48,19.38,19.19,N/A,N/A +2012,12,28,15,30,100990,99820,98680,98.78,566.9,9.5,9.97,10.200000000000001,10.46,10.68,10.88,11.05,11.19,11.4,301.94,293.14,285.98,279.35,274.25,270.4,267.46,265.23,262.25,18.45,18.62,18.8,18.93,19,18.96,18.900000000000002,18.830000000000002,18.650000000000002,N/A,N/A +2012,12,28,16,30,101050,99850,98690,93.94,24.5,9.78,10.51,10.72,10.78,10.82,10.82,10.82,10.82,10.89,322.88,323.3,323.26,323.22,323.17,323.12,323.05,322.97,322.73,15.8,15.34,15.14,14.93,14.74,14.55,14.36,14.19,13.84,N/A,N/A +2012,12,28,17,30,101030,99820,98650,91.52,0,11.01,11.88,12.09,12.17,12.21,12.23,12.23,12.23,12.23,328.09000000000003,328.03000000000003,328.02,328,327.97,327.94,327.91,327.87,327.74,14.71,14.16,13.94,13.73,13.52,13.33,13.14,12.96,12.58,N/A,N/A +2012,12,28,18,30,101070,99860,98690,90.98,2.6,10.540000000000001,11.35,11.55,11.64,11.69,11.72,11.73,11.75,11.8,326.72,326.77,326.77,326.75,326.73,326.69,326.66,326.62,326.5,14.34,13.77,13.55,13.34,13.14,12.950000000000001,12.76,12.57,12.21,N/A,N/A +2012,12,28,19,30,101150,99940,98770,88.13,0,9.55,10.25,10.450000000000001,10.540000000000001,10.59,10.63,10.65,10.66,10.69,330.33,330.2,330.12,330.04,329.97,329.90000000000003,329.82,329.74,329.58,14.39,13.85,13.620000000000001,13.41,13.200000000000001,13.01,12.81,12.620000000000001,12.24,N/A,N/A +2012,12,28,20,30,101210,100000,98830,86.12,0,10.41,11.28,11.53,11.66,11.75,11.81,11.86,11.89,11.950000000000001,327.72,327.75,327.77,327.78000000000003,327.79,327.8,327.81,327.82,327.84000000000003,14.58,14.030000000000001,13.8,13.58,13.370000000000001,13.18,12.97,12.780000000000001,12.39,N/A,N/A +2012,12,28,21,30,101310,100100,98930,83.76,0,11.05,11.96,12.22,12.35,12.44,12.49,12.530000000000001,12.55,12.58,331.12,331.06,331.01,330.96,330.92,330.88,330.84000000000003,330.8,330.73,14.18,13.6,13.36,13.13,12.91,12.71,12.5,12.31,11.91,N/A,N/A +2012,12,28,22,30,101400,100190,99000,83.89,0,12.63,13.72,14.030000000000001,14.18,14.280000000000001,14.35,14.39,14.42,14.44,332.88,332.95,332.98,333.02,333.05,333.08,333.11,333.14,333.2,13.13,12.450000000000001,12.19,11.950000000000001,11.73,11.53,11.31,11.11,10.71,N/A,N/A +2012,12,28,23,30,101500,100280,99090,85.23,0,11.73,12.700000000000001,12.98,13.120000000000001,13.21,13.280000000000001,13.33,13.36,13.41,338.89,338.85,338.8,338.75,338.71,338.66,338.62,338.58,338.49,12.21,11.5,11.23,10.99,10.76,10.55,10.33,10.13,9.73,N/A,N/A +2012,12,29,0,30,101610,100380,99190,85.55,0,12.22,13.26,13.56,13.72,13.82,13.89,13.94,13.98,14.02,340.33,340.34000000000003,340.36,340.37,340.38,340.39,340.41,340.42,340.44,11.57,10.82,10.540000000000001,10.290000000000001,10.06,9.85,9.63,9.43,9.02,N/A,N/A +2012,12,29,1,30,101710,100480,99280,86.3,0,12.07,13.05,13.33,13.46,13.55,13.61,13.64,13.67,13.69,342.2,342.1,342.06,342.03000000000003,342.01,341.99,341.98,341.97,341.95,10.78,10,9.71,9.46,9.22,9.01,8.790000000000001,8.59,8.18,N/A,N/A +2012,12,29,2,30,101810,100570,99370,86.31,0,12.47,13.46,13.74,13.89,13.97,14.040000000000001,14.07,14.09,14.11,341.32,341.65000000000003,341.88,342.1,342.3,342.48,342.66,342.84000000000003,343.19,10.27,9.44,9.15,8.89,8.65,8.44,8.22,8.02,7.61,N/A,N/A +2012,12,29,3,30,101890,100650,99450,88.38,0,11.3,12.18,12.43,12.57,12.66,12.72,12.76,12.790000000000001,12.82,346.8,347.11,347.22,347.29,347.35,347.40000000000003,347.44,347.48,347.54,9.9,9.09,8.790000000000001,8.53,8.290000000000001,8.07,7.84,7.640000000000001,7.23,N/A,N/A +2012,12,29,4,30,101970,100730,99520,88.74,0,11.69,12.59,12.84,12.97,13.05,13.1,13.13,13.15,13.16,344.82,344.90000000000003,345.02,345.14,345.26,345.37,345.48,345.59000000000003,345.79,9.49,8.64,8.33,8.07,7.83,7.61,7.38,7.18,6.76,N/A,N/A +2012,12,29,5,30,102040,100790,99580,89.71000000000001,0,10.46,11.19,11.38,11.47,11.53,11.56,11.58,11.59,11.59,346.97,347.49,347.65000000000003,347.78000000000003,347.89,347.98,348.05,348.12,348.26,8.78,7.97,7.67,7.42,7.18,6.97,6.75,6.54,6.140000000000001,N/A,N/A +2012,12,29,6,30,102160,100900,99680,82.29,0,13.31,14.35,14.620000000000001,14.74,14.81,14.86,14.870000000000001,14.88,14.870000000000001,356.90000000000003,356.68,356.51,356.35,356.19,356.06,355.90000000000003,355.76,355.46,7.6000000000000005,6.63,6.3100000000000005,6.04,5.8,5.58,5.36,5.16,4.76,N/A,N/A +2012,12,29,7,30,102250,101000,99770,81.2,0,12.94,13.96,14.22,14.35,14.42,14.47,14.5,14.51,14.51,1.43,1.18,1.01,0.85,0.7000000000000001,0.56,0.41000000000000003,0.26,359.97,7.26,6.3,5.98,5.71,5.47,5.26,5.04,4.84,4.44,N/A,N/A +2012,12,29,8,30,102310,101050,99830,81.07000000000001,0,12.61,13.6,13.86,13.99,14.07,14.120000000000001,14.15,14.17,14.19,359.08,358.82,358.66,358.51,358.37,358.24,358.11,357.99,357.75,7.11,6.15,5.83,5.57,5.33,5.11,4.89,4.69,4.29,N/A,N/A +2012,12,29,9,30,102400,101140,99920,78.04,0,12.96,13.96,14.21,14.32,14.38,14.42,14.44,14.450000000000001,14.44,1.33,1.1400000000000001,1.01,0.88,0.76,0.66,0.55,0.44,0.23,6.8,5.82,5.49,5.22,4.98,4.7700000000000005,4.55,4.3500000000000005,3.95,N/A,N/A +2012,12,29,10,30,102510,101250,100020,75.41,0,13.01,13.99,14.25,14.370000000000001,14.43,14.47,14.48,14.49,14.47,1.8800000000000001,1.73,1.6300000000000001,1.53,1.44,1.36,1.27,1.19,1.02,6.5,5.51,5.17,4.9,4.66,4.45,4.23,4.03,3.63,N/A,N/A +2012,12,29,11,30,102600,101330,100100,70.18,0,12.89,13.870000000000001,14.120000000000001,14.23,14.290000000000001,14.33,14.35,14.36,14.35,2.24,2.21,2.18,2.15,2.13,2.1,2.07,2.04,1.97,6.21,5.2,4.87,4.6000000000000005,4.36,4.15,3.93,3.73,3.34,N/A,N/A +2012,12,29,12,30,102670,101400,100170,68.39,0,12.67,13.63,13.870000000000001,13.99,14.06,14.1,14.13,14.14,14.15,4.33,4.5,4.61,4.7,4.78,4.8500000000000005,4.92,4.97,5.08,5.97,4.98,4.64,4.38,4.13,3.92,3.7,3.5,3.11,N/A,N/A +2012,12,29,13,30,102760,101490,100250,69.11,0,12.55,13.5,13.74,13.86,13.93,13.97,14,14.01,14.01,4.8,4.94,5.04,5.11,5.19,5.24,5.3,5.3500000000000005,5.44,5.82,4.8100000000000005,4.48,4.21,3.96,3.75,3.5300000000000002,3.33,2.94,N/A,N/A +2012,12,29,14,30,102840,101570,100330,69.91,0,11.92,12.790000000000001,13.01,13.13,13.19,13.24,13.26,13.280000000000001,13.290000000000001,6.76,6.8500000000000005,6.92,6.97,7.01,7.05,7.09,7.12,7.19,5.57,4.59,4.25,3.99,3.74,3.5300000000000002,3.31,3.11,2.72,N/A,N/A +2012,12,29,15,30,102860,101590,100350,69.3,0,10.74,11.49,11.68,11.78,11.84,11.88,11.91,11.93,11.97,1.75,1.86,1.93,2,2.07,2.12,2.17,2.22,2.3000000000000003,5.67,4.75,4.44,4.18,3.95,3.74,3.5300000000000002,3.33,2.95,N/A,N/A +2012,12,29,16,30,102900,101630,100390,67.44,0,9.64,10.290000000000001,10.46,10.55,10.61,10.66,10.69,10.72,10.77,359.46,359.38,359.34000000000003,359.3,359.26,359.24,359.2,359.17,359.11,6.3,5.44,5.14,4.89,4.66,4.46,4.25,4.05,3.67,N/A,N/A +2012,12,29,17,30,102880,101620,100390,66.02,0,9.61,10.26,10.43,10.53,10.59,10.63,10.67,10.69,10.74,354.52,354.51,354.51,354.52,354.53000000000003,354.55,354.56,354.57,354.61,7,6.16,5.86,5.61,5.38,5.17,4.96,4.7700000000000005,4.37,N/A,N/A +2012,12,29,18,30,102890,101630,100400,63.79,0,9.49,10.14,10.31,10.4,10.46,10.51,10.540000000000001,10.57,10.61,350.05,349.99,349.95,349.91,349.89,349.86,349.85,349.84000000000003,349.82,7.86,7.0600000000000005,6.7700000000000005,6.5200000000000005,6.29,6.09,5.88,5.68,5.28,N/A,N/A +2012,12,29,19,30,102890,101640,100410,62,0,9.5,10.16,10.34,10.43,10.49,10.53,10.56,10.58,10.61,350.19,350.12,350.07,350.04,350,349.97,349.95,349.93,349.89,8.67,7.88,7.6000000000000005,7.36,7.13,6.93,6.71,6.51,6.11,N/A,N/A +2012,12,29,20,30,102890,101640,100420,59.93,0,9.040000000000001,9.65,9.8,9.88,9.93,9.96,9.99,10.01,10.03,349.95,349.92,349.90000000000003,349.88,349.88,349.87,349.86,349.85,349.85,9.27,8.53,8.26,8.02,7.8,7.59,7.38,7.18,6.78,N/A,N/A +2012,12,29,21,30,102900,101650,100430,57.59,0,8.53,9.09,9.23,9.31,9.35,9.39,9.41,9.42,9.44,352.24,352.17,352.12,352.07,352.03000000000003,352,351.96,351.93,351.88,9.75,9.040000000000001,8.78,8.540000000000001,8.31,8.11,7.890000000000001,7.7,7.29,N/A,N/A +2012,12,29,22,30,102910,101660,100440,55.89,0,8.52,9.07,9.200000000000001,9.26,9.3,9.33,9.34,9.35,9.36,350.57,350.53000000000003,350.52,350.5,350.49,350.47,350.47,350.46,350.45,10.05,9.36,9.09,8.86,8.64,8.44,8.22,8.02,7.62,N/A,N/A +2012,12,29,23,30,102930,101680,100460,56.03,0,8.51,9.06,9.19,9.25,9.290000000000001,9.31,9.32,9.33,9.34,356.35,356.45,356.5,356.54,356.58,356.62,356.67,356.7,356.79,10.13,9.43,9.18,8.94,8.72,8.52,8.3,8.1,7.7,N/A,N/A +2012,12,30,0,30,103000,101750,100530,56.47,0,8.8,9.36,9.49,9.55,9.58,9.6,9.61,9.61,9.61,3.3200000000000003,3.21,3.12,3.0300000000000002,2.95,2.88,2.8000000000000003,2.74,2.6,10.02,9.32,9.05,8.82,8.59,8.39,8.17,7.98,7.58,N/A,N/A +2012,12,30,1,30,103030,101770,100560,55.57,0,9.22,9.82,9.950000000000001,10,10.03,10.05,10.05,10.05,10.03,6.24,6.140000000000001,6.08,6.03,5.98,5.93,5.88,5.83,5.74,9.72,8.99,8.73,8.49,8.27,8.07,7.86,7.66,7.2700000000000005,N/A,N/A +2012,12,30,2,30,103060,101810,100590,59.34,0,9.02,9.6,9.72,9.78,9.81,9.83,9.84,9.84,9.83,8.97,9.26,9.44,9.6,9.75,9.89,10.040000000000001,10.17,10.450000000000001,9.49,8.76,8.49,8.25,8.03,7.83,7.61,7.41,7.01,N/A,N/A +2012,12,30,3,30,103080,101830,100610,59.22,0,9.13,9.72,9.84,9.9,9.93,9.950000000000001,9.950000000000001,9.950000000000001,9.93,17.06,17.12,17.16,17.19,17.23,17.27,17.31,17.35,17.44,9.38,8.64,8.38,8.14,7.91,7.71,7.5,7.3,6.9,N/A,N/A +2012,12,30,4,30,103060,101800,100580,59.33,0,9.59,10.22,10.36,10.42,10.450000000000001,10.47,10.47,10.46,10.450000000000001,20.82,20.94,21,21.06,21.12,21.18,21.240000000000002,21.3,21.42,9.28,8.52,8.25,8.01,7.78,7.58,7.37,7.17,6.7700000000000005,N/A,N/A +2012,12,30,5,30,103060,101800,100580,60.34,0,9.61,10.25,10.39,10.450000000000001,10.48,10.5,10.5,10.49,10.47,25.400000000000002,25.63,25.79,25.92,26.05,26.18,26.310000000000002,26.43,26.69,9.17,8.41,8.13,7.9,7.67,7.47,7.25,7.05,6.66,N/A,N/A +2012,12,30,6,30,103080,101830,100600,61.58,0,9.52,10.15,10.28,10.35,10.38,10.39,10.4,10.39,10.370000000000001,32.25,32.53,32.69,32.84,32.99,33.12,33.27,33.4,33.67,9.16,8.41,8.14,7.9,7.67,7.47,7.26,7.0600000000000005,6.66,N/A,N/A +2012,12,30,7,30,103100,101840,100620,61.51,0,9.53,10.16,10.3,10.36,10.39,10.41,10.41,10.41,10.39,37.7,38.09,38.33,38.550000000000004,38.76,38.95,39.15,39.33,39.72,9.18,8.43,8.17,7.930000000000001,7.7,7.5,7.29,7.09,6.69,N/A,N/A +2012,12,30,8,30,103100,101850,100630,65.35,0,8.84,9.41,9.53,9.6,9.63,9.65,9.65,9.65,9.64,44.4,44.97,45.300000000000004,45.61,45.910000000000004,46.18,46.45,46.7,47.230000000000004,9.38,8.65,8.38,8.15,7.92,7.72,7.51,7.3100000000000005,6.91,N/A,N/A +2012,12,30,9,30,103090,101840,100620,70.09,0,9,9.6,9.73,9.8,9.83,9.85,9.86,9.870000000000001,9.86,51.660000000000004,52.02,52.24,52.44,52.63,52.800000000000004,52.980000000000004,53.14,53.47,9.51,8.790000000000001,8.52,8.28,8.06,7.8500000000000005,7.640000000000001,7.44,7.03,N/A,N/A +2012,12,30,10,30,103080,101830,100610,61.75,0,9.200000000000001,9.8,9.92,9.98,10,10.02,10.01,10.01,9.98,56.85,57.11,57.27,57.410000000000004,57.54,57.67,57.800000000000004,57.92,58.17,9.65,8.92,8.65,8.42,8.19,7.98,7.7700000000000005,7.57,7.17,N/A,N/A +2012,12,30,11,30,103080,101830,100610,69.78,0,8.86,9.44,9.56,9.620000000000001,9.65,9.67,9.67,9.67,9.65,58.230000000000004,58.72,59.02,59.29,59.550000000000004,59.78,60.03,60.26,60.72,9.700000000000001,8.98,8.72,8.49,8.26,8.06,7.84,7.640000000000001,7.24,N/A,N/A +2012,12,30,12,30,103090,101840,100620,71.62,0,8.67,9.23,9.36,9.41,9.450000000000001,9.47,9.47,9.48,9.46,63.95,64.38,64.63,64.87,65.09,65.29,65.5,65.7,66.1,9.99,9.290000000000001,9.03,8.8,8.57,8.370000000000001,8.16,7.96,7.5600000000000005,N/A,N/A +2012,12,30,13,30,103090,101840,100620,67.2,0,8.42,8.950000000000001,9.06,9.11,9.14,9.15,9.15,9.15,9.13,71.4,71.65,71.81,71.95,72.09,72.21000000000001,72.34,72.46000000000001,72.7,10.34,9.67,9.41,9.18,8.96,8.76,8.540000000000001,8.34,7.94,N/A,N/A +2012,12,30,14,30,103110,101860,100640,69.19,0,8.33,8.85,8.96,9.01,9.03,9.040000000000001,9.040000000000001,9.040000000000001,9.02,72.96000000000001,73.28,73.48,73.66,73.84,74,74.17,74.34,74.67,10.39,9.72,9.47,9.24,9.02,8.82,8.6,8.4,8,N/A,N/A +2012,12,30,15,30,103100,101850,100630,71.87,0,8.2,8.72,8.82,8.870000000000001,8.9,8.91,8.91,8.91,8.9,76.29,76.69,76.93,77.15,77.37,77.57000000000001,77.76,77.95,78.33,10.66,10.01,9.76,9.53,9.3,9.11,8.89,8.69,8.290000000000001,N/A,N/A +2012,12,30,16,30,103060,101810,100600,73.94,0,7.72,8.19,8.290000000000001,8.34,8.370000000000001,8.39,8.4,8.4,8.39,79.76,80.17,80.42,80.65,80.87,81.07000000000001,81.27,81.47,81.85000000000001,10.950000000000001,10.31,10.07,9.84,9.620000000000001,9.43,9.21,9.01,8.61,N/A,N/A +2012,12,30,17,30,103020,101770,100560,71.73,0,7.23,7.65,7.73,7.7700000000000005,7.78,7.79,7.79,7.78,7.76,84.09,84.51,84.78,85.02,85.25,85.45,85.67,85.87,86.28,11.23,10.620000000000001,10.38,10.15,9.94,9.74,9.53,9.33,8.93,N/A,N/A +2012,12,30,18,30,102980,101740,100530,74.5,0,6.7700000000000005,7.16,7.23,7.2700000000000005,7.28,7.29,7.29,7.29,7.2700000000000005,84.32000000000001,84.94,85.32000000000001,85.66,85.98,86.27,86.58,86.87,87.44,11.51,10.92,10.68,10.46,10.25,10.05,9.84,9.64,9.25,N/A,N/A +2012,12,30,19,30,102950,101710,100500,75.72,0,6.63,7,7.07,7.1000000000000005,7.11,7.12,7.12,7.11,7.1000000000000005,82.71000000000001,83.38,83.79,84.16,84.51,84.83,85.16,85.47,86.08,11.78,11.200000000000001,10.97,10.76,10.540000000000001,10.34,10.13,9.94,9.540000000000001,N/A,N/A +2012,12,30,20,30,102890,101650,100440,76.62,0,6.53,6.9,6.98,7.0200000000000005,7.04,7.05,7.05,7.0600000000000005,7.05,85.09,85.65,86.01,86.33,86.64,86.92,87.21000000000001,87.48,88.03,12.05,11.49,11.26,11.040000000000001,10.82,10.63,10.42,10.22,9.83,N/A,N/A +2012,12,30,21,30,102830,101600,100390,79.41,0,6.8500000000000005,7.26,7.36,7.41,7.43,7.45,7.46,7.46,7.46,85.53,86.33,86.76,87.15,87.5,87.82000000000001,88.15,88.45,89.05,12.41,11.85,11.620000000000001,11.4,11.18,10.99,10.78,10.58,10.19,N/A,N/A +2012,12,30,22,30,102750,101520,100320,78.61,0,6.96,7.390000000000001,7.49,7.54,7.5600000000000005,7.58,7.6000000000000005,7.61,7.62,91.83,91.91,92.05,92.19,92.34,92.49,92.66,92.82000000000001,93.18,12.56,12,11.78,11.56,11.35,11.15,10.94,10.74,10.35,N/A,N/A +2012,12,30,23,30,102700,101460,100270,79.09,0,7.890000000000001,8.4,8.52,8.57,8.6,8.620000000000001,8.63,8.63,8.63,92.16,93.06,93.58,94.05,94.48,94.86,95.27,95.64,96.4,13.16,12.61,12.38,12.17,11.950000000000001,11.76,11.55,11.35,10.96,N/A,N/A +2012,12,31,0,30,102660,101430,100240,79.2,0,7.54,8.08,8.21,8.290000000000001,8.33,8.370000000000001,8.39,8.41,8.44,98.85000000000001,99.43,99.76,100.06,100.34,100.59,100.85000000000001,101.09,101.59,13.6,13.07,12.85,12.63,12.42,12.22,12.01,11.82,11.42,N/A,N/A +2012,12,31,1,30,102610,101380,100190,78.48,0,7.95,8.52,8.66,8.74,8.790000000000001,8.82,8.85,8.870000000000001,8.89,102.65,103.35000000000001,103.7,104.02,104.31,104.56,104.82000000000001,105.07000000000001,105.55,14.02,13.51,13.280000000000001,13.07,12.86,12.66,12.450000000000001,12.26,11.86,N/A,N/A +2012,12,31,2,30,102580,101360,100170,77.87,0,7.57,8.16,8.32,8.42,8.49,8.55,8.59,8.63,8.69,106.64,107.46000000000001,107.87,108.24000000000001,108.57000000000001,108.87,109.17,109.44,109.98,14.57,14.08,13.870000000000001,13.66,13.450000000000001,13.26,13.05,12.85,12.46,N/A,N/A +2012,12,31,3,30,102520,101300,100110,77.65,0,7.17,7.66,7.7700000000000005,7.82,7.8500000000000005,7.87,7.88,7.88,7.890000000000001,111.82000000000001,112.21000000000001,112.51,112.81,113.10000000000001,113.38,113.7,114,114.67,15.09,14.620000000000001,14.42,14.21,14.01,13.82,13.61,13.42,13.040000000000001,N/A,N/A +2012,12,31,4,30,102460,101250,100070,80.9,0,7.2,7.79,7.96,8.06,8.14,8.2,8.25,8.290000000000001,8.35,105.71000000000001,106.37,106.72,107.06,107.37,107.65,107.94,108.2,108.75,15.700000000000001,15.27,15.07,14.86,14.66,14.47,14.27,14.08,13.69,N/A,N/A +2012,12,31,5,30,102410,101200,100020,83.57000000000001,0,8.35,9.01,9.16,9.24,9.290000000000001,9.32,9.33,9.34,9.34,102.15,102.42,102.67,102.92,103.17,103.4,103.67,103.92,104.49000000000001,16.05,15.620000000000001,15.42,15.21,15.01,14.82,14.620000000000001,14.44,14.05,N/A,N/A +2012,12,31,6,30,102380,101170,99990,83.93,0,8.75,9.56,9.78,9.91,9.99,10.040000000000001,10.07,10.09,10.11,108.52,108.9,109.14,109.37,109.57000000000001,109.76,109.94,110.12,110.48,16.69,16.330000000000002,16.14,15.94,15.74,15.55,15.35,15.17,14.780000000000001,N/A,N/A +2012,12,31,7,30,102360,101150,99970,85.54,0,8.88,9.69,9.91,10.02,10.08,10.13,10.14,10.15,10.14,103.81,104.13,104.43,104.73,105.02,105.28,105.57000000000001,105.85000000000001,106.46000000000001,16.86,16.51,16.330000000000002,16.13,15.93,15.75,15.55,15.36,14.98,N/A,N/A +2012,12,31,8,30,102280,101070,99900,87.4,0,9.91,10.790000000000001,11,11.09,11.15,11.17,11.18,11.19,11.200000000000001,109.34,109.57000000000001,109.75,109.95,110.18,110.4,110.7,110.99000000000001,111.93,16.94,16.59,16.41,16.21,16.02,15.84,15.64,15.46,15.09,N/A,N/A +2012,12,31,9,30,102240,101030,99860,88.60000000000001,0,9.31,10.16,10.38,10.5,10.57,10.63,10.67,10.71,10.9,113.31,113.68,113.88,114.12,114.4,114.7,115.11,115.53,117.41,17.41,17.11,16.94,16.75,16.56,16.38,16.19,16.02,15.67,N/A,N/A +2012,12,31,10,30,102180,100980,99810,90.73,0,8.65,9.51,9.78,9.99,10.200000000000001,10.41,10.73,11.040000000000001,11.09,117.18,117.44,117.71000000000001,118.11,118.67,119.32000000000001,120.3,121.3,125.16,17.650000000000002,17.38,17.23,17.04,16.87,16.7,16.54,16.38,16.13,N/A,N/A +2012,12,31,11,30,102110,100910,99750,93.61,0,8,9.31,9.74,9.870000000000001,10.14,10.46,10.71,10.9,11.1,113.31,115.23,116.21000000000001,116.72,117.89,119.38,121.06,122.65,126.45,17.63,17.39,17.25,17.07,16.94,16.84,16.72,16.62,16.41,N/A,N/A +2012,12,31,12,30,102070,100870,99700,93.51,0,8.2,9.21,9.57,9.88,10.15,10.4,10.67,10.91,11.46,116.12,116.53,116.87,117.29,117.79,118.32000000000001,119.10000000000001,119.92,124.06,17.89,17.650000000000002,17.51,17.35,17.19,17.04,16.9,16.77,16.65,N/A,N/A +2012,12,31,13,30,102010,100820,99660,94.8,0,7.7,8.76,9.16,9.52,9.85,10.14,10.44,10.72,11.26,119.09,119.74000000000001,120.17,120.72,121.34,121.99000000000001,122.93,123.89,127.85000000000001,18.03,17.82,17.68,17.53,17.38,17.240000000000002,17.11,16.990000000000002,16.86,N/A,N/A +2012,12,31,14,30,102000,100810,99650,93.58,0,7.74,8.92,9.39,9.82,10.200000000000001,10.540000000000001,10.85,11.13,11.84,122.41,123.65,124.84,126.7,129.18,132.13,136.3,140.49,149,18.42,18.34,18.29,18.25,18.25,18.27,18.32,18.37,18.36,N/A,N/A +2012,12,31,15,30,101970,100780,99620,93.84,0,6.57,7.78,8.32,8.870000000000001,9.39,9.89,10.33,10.73,11.31,132.14000000000001,133.27,134.21,135.49,136.82,138.20000000000002,139.68,141.08,144.24,18.580000000000002,18.51,18.46,18.400000000000002,18.36,18.32,18.28,18.240000000000002,18.13,N/A,N/A +2012,12,31,16,30,101920,100730,99580,93.26,0,6.55,8.01,8.72,9.450000000000001,10.14,10.82,11.41,11.950000000000001,12.71,144.82,146.84,148.37,150.13,151.68,153.12,154.37,155.52,159.33,18.95,19.01,19.04,19.06,19.09,19.12,19.11,19.1,19,N/A,N/A +2012,12,31,17,30,101860,100670,99520,93.35000000000001,0,6.09,7.5600000000000005,8.27,9.040000000000001,9.78,10.5,11.18,11.82,12.75,150.49,151.82,152.81,153.94,155.03,156.11,157.33,158.52,160.97,19.06,19.13,19.16,19.18,19.19,19.21,19.2,19.19,19.080000000000002,N/A,N/A +2012,12,31,18,30,101810,100620,99470,92.16,0,6.890000000000001,8.44,9.13,9.82,10.48,11.13,11.8,12.44,13.51,153.79,155.1,156.19,157.63,159.02,160.39000000000001,161.5,162.49,163.72,19.31,19.43,19.46,19.48,19.5,19.5,19.490000000000002,19.48,19.37,N/A,N/A +2012,12,31,19,30,101780,100590,99440,93.09,0,6.5200000000000005,8.11,8.85,9.6,10.31,10.98,11.64,12.25,13.27,155.75,157.24,158.45000000000002,160.03,161.51,162.92000000000002,164.03,165.01,166.77,19.32,19.45,19.5,19.54,19.56,19.59,19.580000000000002,19.57,19.47,N/A,N/A +2012,12,31,20,30,101720,100530,99390,91.79,0,6.61,8.32,9.120000000000001,9.93,10.65,11.32,11.94,12.51,13.4,161.15,162.17000000000002,162.87,163.56,164.06,164.41,164.56,164.64000000000001,164.68,19.48,19.66,19.72,19.77,19.78,19.77,19.740000000000002,19.7,19.53,N/A,N/A +2012,12,31,21,30,101680,100500,99350,92.01,0,6.640000000000001,8.41,9.23,10.05,10.78,11.46,12.06,12.61,13.5,159.20000000000002,160.91,162.17000000000002,163.67000000000002,165,166.23,167.25,168.15,169.4,19.43,19.64,19.71,19.78,19.82,19.84,19.830000000000002,19.8,19.66,N/A,N/A +2012,12,31,22,30,101650,100460,99320,92.33,0,6,7.74,8.57,9.43,10.21,10.94,11.59,12.200000000000001,13.42,160.17000000000002,161.85,163.20000000000002,164.87,166.42000000000002,167.89000000000001,169.15,170.29,172.26,19.31,19.55,19.650000000000002,19.73,19.78,19.82,19.81,19.8,19.73,N/A,N/A +2012,12,31,23,30,101610,100430,99280,92.32000000000001,0,6.16,7.91,8.74,9.6,10.38,11.11,11.8,12.44,13.5,160.8,162.20000000000002,163.34,164.83,166.22,167.56,168.65,169.6,170.55,19.29,19.53,19.62,19.72,19.78,19.830000000000002,19.84,19.84,19.72,N/A,N/A From 6c4b4891a044e9496556aeb8a20b5f42a54d81dc Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Wed, 24 Sep 2025 18:01:45 -0600 Subject: [PATCH 19/79] Remove wind file --- .../29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv | 8762 ----------------- 1 file changed, 8762 deletions(-) delete mode 100644 resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv diff --git a/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv b/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv deleted file mode 100644 index d4a3ab279..000000000 --- a/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv +++ /dev/null @@ -1,8762 +0,0 @@ -SiteID,1379078,Site Timezone,-6,Data Timezone,0,Longitude,-94.593170166,Latitude,29.2054595947 -Year,Month,Day,Hour,Minute,surface air pressure (Pa),air pressure at 100m (Pa),air pressure at 200m (Pa),relative humidity at 2m (%),surface precipitation rate (mm/h),wind speed at 10m (m/s),wind speed at 40m (m/s),wind speed at 60m (m/s),wind speed at 80m (m/s),wind speed at 100m (m/s),wind speed at 120m (m/s),wind speed at 140m (m/s),wind speed at 160m (m/s),wind speed at 200m (m/s),wind direction at 10m (deg),wind direction at 40m (deg),wind direction at 60m (deg),wind direction at 80m (deg),wind direction at 100m (deg),wind direction at 120m (deg),wind direction at 140m (deg),wind direction at 160m (deg),wind direction at 200m (deg),air temperature at 10m (C),air temperature at 40m (C),air temperature at 60m (C),air temperature at 80m (C),air temperature at 100m (C),air temperature at 120m (C),air temperature at 140m (C),air temperature at 160m (C),air temperature at 200m (C),density - DEPRECATED,power - DEPRECATED -2012,1,1,0,30,101850,100660,99520,89.26,0,5.3100000000000005,7.38,8.3,9.21,10.06,10.870000000000001,11.53,12.1,12.77,188.64000000000001,188.75,189.61,191.37,193.81,196.68,200.71,204.78,212.06,19.45,19.82,19.91,19.98,19.98,19.95,19.88,19.81,20.27,N/A,N/A -2012,1,1,1,30,101870,100680,99540,89.31,0,5.8,7.99,9,9.99,10.86,11.63,12.17,12.61,13.01,184.22,185.72,186.99,188.65,190.47,192.37,194.85,197.33,202.28,19.36,19.7,19.77,19.78,19.76,19.71,19.72,19.740000000000002,19.89,N/A,N/A -2012,1,1,2,30,101910,100720,99570,90.13,0,5.19,7.41,8.45,9.5,10.39,11.15,11.82,12.41,12.9,186.20000000000002,187.37,188.1,188.73,189.94,191.51,193.34,195.12,199.28,19.23,19.580000000000002,19.650000000000002,19.650000000000002,19.62,19.580000000000002,19.44,19.29,19.88,N/A,N/A -2012,1,1,3,30,101920,100730,99590,89.62,0,5.6000000000000005,7.97,9.06,10.14,11.040000000000001,11.8,12.16,12.38,12.34,180.64000000000001,183.39000000000001,185.51,188.14000000000001,190.98,193.93,196.37,198.49,201.35,19.330000000000002,19.69,19.73,19.66,19.51,19.330000000000002,19.61,19.97,20.94,N/A,N/A -2012,1,1,4,30,101950,100760,99620,90.15,0.4,5.59,7.930000000000001,9.05,10.25,11.28,12.17,12.63,12.94,12.97,189.75,191.63,193.12,195.13,196.9,198.5,200.21,201.81,203.76,19.19,19.44,19.46,19.400000000000002,19.35,19.3,19.77,20.31,20.87,N/A,N/A -2012,1,1,5,30,101990,100800,99650,91.59,0.4,5.7,7.55,8.45,9.49,10.53,11.57,12.16,12.59,12.790000000000001,180.34,183.72,186.59,190.48,193.39000000000001,195.69,198.11,200.34,202.75,18.79,18.95,18.92,18.8,19.1,19.62,20.2,20.72,20.84,N/A,N/A -2012,1,1,6,30,102040,100850,99700,92.71000000000001,0.7000000000000001,4.64,6.62,7.68,8.99,10.25,11.5,12.040000000000001,12.370000000000001,12.44,189.88,191.34,192.58,194.31,196.61,199.33,202.24,204.92000000000002,207.91,18.92,19.13,19.03,18.67,19.080000000000002,19.95,20.53,20.98,21.05,N/A,N/A -2012,1,1,7,30,102110,100920,99770,92.46000000000001,0,4.32,6.22,7.15,8.21,9.3,10.42,10.97,11.32,11.57,194.88,195.43,196.03,197.04,198.74,200.95000000000002,204.18,207.4,211.05,19.01,19.25,19.23,19.06,19.27,19.7,20.240000000000002,20.740000000000002,21.03,N/A,N/A -2012,1,1,8,30,102170,100980,99830,93.10000000000001,0.4,3.34,5.18,5.94,6.71,7.57,8.53,9.5,10.450000000000001,11,211.8,209.43,208.4,208.71,209.26,209.96,212.24,214.86,218.57,19.080000000000002,19.41,19.45,19.41,19.3,19.16,19.23,19.35,20,N/A,N/A -2012,1,1,9,30,102240,101050,99900,93.13,0.4,2.59,4.45,5.41,6.46,7.32,8.02,8.26,8.34,8.45,233.77,232.8,231.59,229.9,229.86,231.21,231.70000000000002,231.88,233.37,19.19,19.73,19.84,19.8,19.75,19.71,19.63,19.56,19.41,N/A,N/A -2012,1,1,10,30,102310,101120,99970,90.32000000000001,12.8,4.63,6.49,7.0200000000000005,7.11,7.24,7.4,7.5600000000000005,7.72,8.03,255.67000000000002,256.07,256.03000000000003,255.6,255.86,256.56,256.77,256.85,256.76,19.62,20.06,20.14,20.14,20.16,20.19,20.14,20.080000000000002,19.91,N/A,N/A -2012,1,1,11,30,102380,101190,100040,92.89,0,4.42,6.23,6.96,7.390000000000001,7.61,7.69,7.79,7.9,8.06,275.26,272.61,272.82,277.35,280.37,282.41,283.61,284.52,284.63,18.900000000000002,19.34,19.55,19.73,19.8,19.8,19.830000000000002,19.86,19.77,N/A,N/A -2012,1,1,12,30,102450,101260,100100,90.89,0,4.45,6.74,7.71,8.41,9.07,9.71,10.18,10.59,10.97,290.21,291.44,292.46,293.83,294.79,295.5,296.09000000000003,296.59000000000003,296.59000000000003,19.48,19.740000000000002,19.71,19.55,19.53,19.580000000000002,19.61,19.62,19.44,N/A,N/A -2012,1,1,13,30,102560,101350,100170,86.29,0,10.73,11.86,12.19,12.450000000000001,12.72,12.98,13.42,13.89,14.82,350.6,351.06,351.35,351.69,352.11,352.53000000000003,353.19,353.84000000000003,354.42,16.89,16.580000000000002,16.41,16.22,16.04,15.88,15.73,15.620000000000001,15.71,N/A,N/A -2012,1,1,14,30,102700,101480,100300,79.41,0,10.540000000000001,11.64,11.96,12.19,12.38,12.540000000000001,12.73,12.92,13.46,3.3000000000000003,4,4.37,4.75,5.15,5.5200000000000005,6,6.48,7.73,15.77,15.370000000000001,15.18,15,14.81,14.63,14.450000000000001,14.280000000000001,13.950000000000001,N/A,N/A -2012,1,1,15,30,102760,101540,100350,69.58,0,10.8,11.82,12.06,12.200000000000001,12.3,12.36,12.41,12.46,12.56,5.6000000000000005,5.76,5.87,5.97,6.07,6.17,6.29,6.41,6.71,15.290000000000001,14.85,14.65,14.450000000000001,14.25,14.07,13.870000000000001,13.68,13.31,N/A,N/A -2012,1,1,16,30,102780,101560,100370,67.46000000000001,0,10.4,11.36,11.61,11.74,11.84,11.9,11.950000000000001,11.99,12.05,6.11,6.16,6.2,6.24,6.28,6.32,6.38,6.43,6.58,15.15,14.71,14.5,14.3,14.09,13.91,13.71,13.52,13.13,N/A,N/A -2012,1,1,17,30,102760,101540,100350,65.26,0,10.78,11.790000000000001,12.040000000000001,12.19,12.280000000000001,12.35,12.39,12.43,12.49,1.1500000000000001,1.22,1.25,1.29,1.32,1.36,1.41,1.46,1.57,15.44,15.01,14.82,14.61,14.41,14.23,14.02,13.84,13.450000000000001,N/A,N/A -2012,1,1,18,30,102810,101580,100400,60.13,0,10.18,11.17,11.43,11.58,11.69,11.77,11.83,11.870000000000001,11.94,0.41000000000000003,0.65,0.8200000000000001,0.98,1.1300000000000001,1.27,1.41,1.55,1.82,16,15.620000000000001,15.43,15.24,15.040000000000001,14.85,14.65,14.46,14.08,N/A,N/A -2012,1,1,19,30,102840,101620,100440,55.57,0,10.11,11.16,11.44,11.620000000000001,11.73,11.83,11.89,11.950000000000001,12.030000000000001,3.13,3.2600000000000002,3.35,3.46,3.5500000000000003,3.65,3.7600000000000002,3.86,4.07,16.54,16.21,16.03,15.84,15.64,15.46,15.26,15.07,14.69,N/A,N/A -2012,1,1,20,30,102840,101620,100440,53.34,0,10.71,11.89,12.200000000000001,12.4,12.540000000000001,12.65,12.72,12.790000000000001,12.88,0.5,0.64,0.74,0.8300000000000001,0.92,1.01,1.09,1.17,1.33,16.96,16.67,16.51,16.32,16.13,15.950000000000001,15.75,15.57,15.18,N/A,N/A -2012,1,1,21,30,102870,101650,100470,54.04,0,9.93,10.99,11.26,11.44,11.56,11.65,11.71,11.77,11.84,1.75,1.77,1.77,1.76,1.76,1.75,1.75,1.76,1.79,17.1,16.830000000000002,16.66,16.48,16.29,16.11,15.92,15.73,15.35,N/A,N/A -2012,1,1,22,30,102920,101700,100510,52.56,0,10.48,11.56,11.84,12,12.120000000000001,12.200000000000001,12.24,12.280000000000001,12.33,2.87,3.0500000000000003,3.15,3.25,3.35,3.44,3.54,3.63,3.8200000000000003,16.91,16.61,16.44,16.25,16.06,15.88,15.68,15.49,15.1,N/A,N/A -2012,1,1,23,30,103000,101770,100590,50.65,0,11.64,12.8,13.06,13.200000000000001,13.27,13.32,13.33,13.34,13.32,1.81,2.09,2.24,2.37,2.49,2.59,2.7,2.8000000000000003,3.02,16.23,15.870000000000001,15.68,15.49,15.290000000000001,15.1,14.9,14.71,14.32,N/A,N/A -2012,1,2,0,30,103110,101880,100680,53.27,0,11.88,13.07,13.370000000000001,13.55,13.66,13.75,13.8,13.85,13.91,4.83,4.94,5.0200000000000005,5.09,5.15,5.2,5.26,5.3100000000000005,5.42,15.44,15.01,14.81,14.61,14.4,14.22,14.01,13.82,13.42,N/A,N/A -2012,1,2,1,30,103160,101930,100730,54.76,0,12.32,13.57,13.9,14.09,14.22,14.32,14.4,14.450000000000001,14.540000000000001,7.83,7.9,7.96,8.01,8.06,8.1,8.15,8.19,8.28,14.8,14.32,14.11,13.9,13.700000000000001,13.51,13.3,13.11,12.72,N/A,N/A -2012,1,2,2,30,103210,101970,100770,57.27,0,12.51,13.77,14.1,14.3,14.43,14.530000000000001,14.6,14.66,14.75,9.06,9.290000000000001,9.4,9.52,9.63,9.73,9.84,9.94,10.16,14.18,13.66,13.44,13.23,13.02,12.83,12.620000000000001,12.43,12.040000000000001,N/A,N/A -2012,1,2,3,30,103260,102020,100810,59.64,0,12.780000000000001,14.05,14.38,14.58,14.72,14.83,14.91,14.98,15.09,10.790000000000001,11,11.13,11.26,11.39,11.51,11.64,11.77,12.040000000000001,13.52,12.950000000000001,12.72,12.5,12.290000000000001,12.1,11.9,11.71,11.33,N/A,N/A -2012,1,2,4,30,103270,102030,100820,61.47,0,12.700000000000001,13.950000000000001,14.27,14.47,14.61,14.71,14.790000000000001,14.86,14.98,14.41,14.59,14.71,14.82,14.94,15.05,15.18,15.3,15.56,13,12.4,12.16,11.950000000000001,11.73,11.540000000000001,11.34,11.15,10.77,N/A,N/A -2012,1,2,5,30,103290,102050,100840,61.690000000000005,0,12.8,14.030000000000001,14.35,14.540000000000001,14.66,14.76,14.84,14.91,15.040000000000001,15.6,15.790000000000001,15.92,16.05,16.18,16.3,16.45,16.580000000000002,16.89,12.61,11.98,11.74,11.52,11.31,11.13,10.92,10.74,10.370000000000001,N/A,N/A -2012,1,2,6,30,103340,102090,100880,63.25,0,13.030000000000001,14.26,14.58,14.76,14.88,14.98,15.05,15.120000000000001,15.25,18.400000000000002,18.580000000000002,18.69,18.8,18.92,19.02,19.150000000000002,19.28,19.55,12.24,11.56,11.32,11.1,10.88,10.700000000000001,10.5,10.31,9.94,N/A,N/A -2012,1,2,7,30,103400,102150,100940,64.03,0,13.25,14.5,14.81,14.99,15.120000000000001,15.21,15.290000000000001,15.36,15.5,20.35,20.51,20.63,20.740000000000002,20.85,20.96,21.09,21.22,21.52,11.92,11.22,10.97,10.75,10.540000000000001,10.35,10.15,9.97,9.61,N/A,N/A -2012,1,2,8,30,103430,102180,100970,63.31,0,13.67,14.97,15.3,15.49,15.610000000000001,15.700000000000001,15.780000000000001,15.85,15.99,23.13,23.32,23.43,23.55,23.67,23.78,23.91,24.04,24.36,11.65,10.93,10.68,10.46,10.24,10.06,9.86,9.68,9.32,N/A,N/A -2012,1,2,9,30,103470,102210,101000,64.3,0,13.46,14.700000000000001,15.02,15.19,15.31,15.4,15.47,15.540000000000001,15.68,24.5,24.67,24.78,24.88,24.990000000000002,25.080000000000002,25.2,25.310000000000002,25.57,11.27,10.53,10.27,10.040000000000001,9.83,9.65,9.450000000000001,9.27,8.92,N/A,N/A -2012,1,2,10,30,103500,102250,101030,63.71,0,13.21,14.41,14.71,14.870000000000001,14.99,15.07,15.14,15.200000000000001,15.33,26.93,27.1,27.21,27.3,27.400000000000002,27.490000000000002,27.59,27.69,27.91,10.950000000000001,10.200000000000001,9.94,9.72,9.5,9.31,9.120000000000001,8.94,8.58,N/A,N/A -2012,1,2,11,30,103560,102300,101080,63.25,0,12.83,13.97,14.26,14.42,14.52,14.6,14.66,14.71,14.81,29.580000000000002,29.740000000000002,29.830000000000002,29.91,29.990000000000002,30.07,30.150000000000002,30.23,30.400000000000002,10.73,9.97,9.71,9.48,9.27,9.08,8.88,8.700000000000001,8.33,N/A,N/A -2012,1,2,12,30,103620,102360,101140,63.5,0,12.620000000000001,13.73,14,14.16,14.26,14.33,14.39,14.44,14.530000000000001,30.69,30.82,30.92,31,31.09,31.16,31.25,31.32,31.48,10.540000000000001,9.790000000000001,9.52,9.290000000000001,9.08,8.89,8.69,8.51,8.14,N/A,N/A -2012,1,2,13,30,103670,102410,101190,63.4,0,12.44,13.530000000000001,13.790000000000001,13.93,14.030000000000001,14.1,14.15,14.200000000000001,14.290000000000001,30.8,30.94,31.03,31.1,31.18,31.25,31.32,31.39,31.53,10.38,9.620000000000001,9.36,9.13,8.92,8.73,8.53,8.35,7.98,N/A,N/A -2012,1,2,14,30,103730,102470,101250,64.26,0,11.44,12.36,12.57,12.69,12.76,12.81,12.84,12.870000000000001,12.92,31.080000000000002,31.240000000000002,31.330000000000002,31.41,31.490000000000002,31.55,31.62,31.68,31.8,10.13,9.38,9.120000000000001,8.9,8.68,8.49,8.3,8.11,7.75,N/A,N/A -2012,1,2,15,30,103750,102490,101260,62.65,0,10.24,11.03,11.22,11.33,11.4,11.46,11.51,11.55,11.63,30.68,30.82,30.91,30.990000000000002,31.060000000000002,31.13,31.2,31.27,31.39,10.13,9.42,9.16,8.94,8.73,8.540000000000001,8.34,8.15,7.79,N/A,N/A -2012,1,2,16,30,103730,102470,101240,59.47,0,9.22,9.91,10.09,10.19,10.26,10.32,10.370000000000001,10.42,10.51,24.69,24.78,24.85,24.91,24.97,25.03,25.09,25.150000000000002,25.27,10.38,9.700000000000001,9.46,9.24,9.02,8.83,8.63,8.44,8.06,N/A,N/A -2012,1,2,17,30,103700,102450,101230,55.49,0,7.62,8.15,8.28,8.36,8.42,8.46,8.5,8.53,8.59,14.72,14.790000000000001,14.84,14.88,14.93,14.96,15.01,15.05,15.15,10.83,10.22,9.98,9.76,9.55,9.36,9.15,8.96,8.57,N/A,N/A -2012,1,2,18,30,103680,102430,101210,49.9,0,7.36,7.88,8.01,8.09,8.15,8.2,8.24,8.27,8.33,7.2,7.21,7.22,7.22,7.23,7.23,7.23,7.24,7.26,11.68,11.1,10.88,10.66,10.44,10.25,10.040000000000001,9.85,9.450000000000001,N/A,N/A -2012,1,2,19,30,103660,102410,101200,48.18,0,6.94,7.390000000000001,7.51,7.58,7.62,7.66,7.69,7.71,7.74,357.68,357.79,357.88,357.96,358.05,358.13,358.2,358.28000000000003,358.42,12.51,11.98,11.76,11.55,11.33,11.14,10.93,10.73,10.33,N/A,N/A -2012,1,2,20,30,103610,102360,101150,46.36,0,7.01,7.48,7.58,7.65,7.69,7.72,7.74,7.76,7.78,345.68,346.11,346.40000000000003,346.66,346.92,347.15000000000003,347.39,347.62,348.06,13.02,12.51,12.290000000000001,12.08,11.870000000000001,11.68,11.47,11.27,10.88,N/A,N/A -2012,1,2,21,30,103570,102320,101110,46.29,0,7.8,8.34,8.46,8.53,8.56,8.59,8.6,8.61,8.620000000000001,343.08,343.58,343.89,344.17,344.44,344.68,344.92,345.14,345.59000000000003,13.24,12.73,12.51,12.3,12.09,11.89,11.69,11.49,11.1,N/A,N/A -2012,1,2,22,30,103530,102290,101080,45.93,0,7.74,8.27,8.38,8.44,8.47,8.5,8.51,8.52,8.52,340.56,341,341.28000000000003,341.53000000000003,341.76,341.97,342.19,342.39,342.79,13.31,12.8,12.58,12.370000000000001,12.16,11.97,11.76,11.57,11.17,N/A,N/A -2012,1,2,23,30,103530,102280,101080,49.15,0,7.46,7.97,8.09,8.15,8.19,8.22,8.24,8.26,8.27,342.72,342.90000000000003,343.01,343.1,343.2,343.28000000000003,343.37,343.45,343.61,13.31,12.8,12.58,12.370000000000001,12.16,11.96,11.75,11.56,11.16,N/A,N/A -2012,1,3,0,30,103550,102310,101100,51.47,0,8.35,8.93,9.05,9.11,9.13,9.16,9.16,9.16,9.15,342.81,343.28000000000003,343.56,343.81,344.05,344.27,344.49,344.69,345.09000000000003,13,12.46,12.24,12.030000000000001,11.81,11.620000000000001,11.41,11.21,10.81,N/A,N/A -2012,1,3,1,30,103580,102330,101120,50.76,0,8.44,9.02,9.14,9.200000000000001,9.22,9.23,9.23,9.23,9.21,350.6,350.65000000000003,350.67,350.69,350.71,350.73,350.74,350.76,350.79,12.57,12.01,11.78,11.57,11.35,11.16,10.950000000000001,10.75,10.36,N/A,N/A -2012,1,3,2,30,103600,102350,101140,49.25,0,8.51,9.1,9.23,9.3,9.33,9.35,9.36,9.36,9.35,353.62,353.59000000000003,353.57,353.55,353.52,353.5,353.48,353.46,353.41,12.370000000000001,11.8,11.57,11.35,11.14,10.950000000000001,10.74,10.540000000000001,10.15,N/A,N/A -2012,1,3,3,30,103600,102350,101130,49.28,0,8.91,9.53,9.65,9.71,9.73,9.75,9.75,9.74,9.72,357.1,356.82,356.65000000000003,356.5,356.35,356.23,356.11,355.99,355.77,12.01,11.42,11.19,10.97,10.76,10.57,10.36,10.17,9.78,N/A,N/A -2012,1,3,4,30,103600,102350,101140,49.14,0,8.41,8.97,9.08,9.13,9.15,9.16,9.15,9.15,9.13,1.6,1.46,1.36,1.26,1.16,1.07,0.96,0.85,0.62,11.67,11.07,10.84,10.63,10.41,10.23,10.02,9.83,9.450000000000001,N/A,N/A -2012,1,3,5,30,103620,102370,101150,53.28,0,8.45,8.99,9.09,9.14,9.15,9.16,9.15,9.14,9.11,4.74,4.8100000000000005,4.83,4.8500000000000005,4.86,4.8500000000000005,4.8500000000000005,4.83,4.7700000000000005,10.97,10.34,10.11,9.89,9.68,9.49,9.290000000000001,9.11,8.73,N/A,N/A -2012,1,3,6,30,103650,102390,101170,55.4,0,8.61,9.17,9.27,9.31,9.33,9.33,9.32,9.31,9.27,11.93,11.97,11.99,12,12,12.01,12.01,12.01,11.99,10.61,9.99,9.75,9.540000000000001,9.32,9.13,8.93,8.74,8.36,N/A,N/A -2012,1,3,7,30,103670,102410,101190,56,0,8.69,9.26,9.36,9.41,9.41,9.42,9.4,9.39,9.34,15.120000000000001,15.16,15.16,15.15,15.14,15.120000000000001,15.11,15.08,15,10.32,9.68,9.44,9.22,9.01,8.82,8.620000000000001,8.43,8.05,N/A,N/A -2012,1,3,8,30,103650,102390,101170,57.53,0,8.870000000000001,9.44,9.540000000000001,9.57,9.58,9.58,9.56,9.540000000000001,9.49,23.42,23.45,23.44,23.42,23.39,23.36,23.32,23.29,23.18,9.97,9.31,9.07,8.85,8.64,8.45,8.25,8.06,7.69,N/A,N/A -2012,1,3,9,30,103630,102370,101140,56.800000000000004,0,9.47,10.11,10.22,10.27,10.28,10.28,10.26,10.23,10.17,26.19,26.26,26.29,26.3,26.32,26.34,26.35,26.35,26.35,9.74,9.06,8.81,8.59,8.38,8.19,7.98,7.8,7.42,N/A,N/A -2012,1,3,10,30,103610,102350,101120,55.99,0,8.73,9.3,9.4,9.44,9.450000000000001,9.450000000000001,9.44,9.42,9.38,32.18,32.37,32.49,32.59,32.69,32.77,32.87,32.95,33.13,9.61,8.94,8.700000000000001,8.48,8.27,8.08,7.88,7.68,7.3,N/A,N/A -2012,1,3,11,30,103610,102350,101120,57.550000000000004,0,8.44,8.97,9.07,9.11,9.13,9.13,9.120000000000001,9.11,9.07,42.11,42.51,42.730000000000004,42.94,43.14,43.32,43.52,43.7,44.08,9.700000000000001,9.05,8.81,8.59,8.370000000000001,8.18,7.97,7.78,7.4,N/A,N/A -2012,1,3,12,30,103610,102350,101120,58.370000000000005,0,8.22,8.73,8.83,8.870000000000001,8.89,8.9,8.89,8.88,8.85,43.33,43.77,44.03,44.25,44.480000000000004,44.69,44.9,45.11,45.54,9.57,8.92,8.67,8.45,8.24,8.040000000000001,7.84,7.640000000000001,7.26,N/A,N/A -2012,1,3,13,30,103600,102340,101120,63.56,0,7.5,7.930000000000001,8.01,8.040000000000001,8.05,8.05,8.040000000000001,8.03,7.99,51.300000000000004,51.63,51.84,52.02,52.21,52.38,52.550000000000004,52.72,53.08,9.81,9.18,8.94,8.72,8.51,8.31,8.1,7.91,7.5200000000000005,N/A,N/A -2012,1,3,14,30,103600,102340,101120,57.94,0,7.72,8.18,8.26,8.290000000000001,8.31,8.31,8.3,8.290000000000001,8.25,55.730000000000004,56.03,56.21,56.370000000000005,56.53,56.68,56.83,56.980000000000004,57.28,9.99,9.36,9.120000000000001,8.9,8.69,8.49,8.28,8.09,7.7,N/A,N/A -2012,1,3,15,30,103580,102320,101100,59.93,0,7.01,7.41,7.48,7.51,7.5200000000000005,7.5200000000000005,7.5200000000000005,7.51,7.48,58.39,58.86,59.13,59.370000000000005,59.61,59.82,60.050000000000004,60.26,60.7,10.17,9.57,9.33,9.11,8.9,8.71,8.5,8.3,7.91,N/A,N/A -2012,1,3,16,30,103540,102280,101060,60.17,0,6.3100000000000005,6.66,6.73,6.76,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.75,66.15,66.57000000000001,66.8,67.02,67.24,67.43,67.63,67.82000000000001,68.22,10.47,9.9,9.66,9.450000000000001,9.24,9.040000000000001,8.83,8.64,8.24,N/A,N/A -2012,1,3,17,30,103490,102240,101020,60.4,0,5.8100000000000005,6.11,6.16,6.17,6.18,6.17,6.17,6.16,6.13,74.28,74.61,74.81,74.99,75.18,75.34,75.51,75.67,76.01,10.73,10.18,9.950000000000001,9.74,9.53,9.33,9.13,8.93,8.540000000000001,N/A,N/A -2012,1,3,18,30,103450,102200,100980,61.92,0,5.16,5.41,5.45,5.46,5.47,5.47,5.46,5.45,5.42,81.14,81.54,81.77,81.98,82.17,82.36,82.55,82.73,83.10000000000001,11.02,10.49,10.27,10.06,9.85,9.65,9.450000000000001,9.25,8.86,N/A,N/A -2012,1,3,19,30,103390,102140,100930,63.230000000000004,0,4.44,4.64,4.67,4.68,4.68,4.68,4.68,4.67,4.66,90.37,90.88,91.16,91.43,91.68,91.92,92.18,92.41,92.9,11.35,10.85,10.63,10.42,10.21,10.02,9.81,9.620000000000001,9.22,N/A,N/A -2012,1,3,20,30,103320,102070,100860,65.71000000000001,0,4.41,4.6000000000000005,4.63,4.64,4.64,4.63,4.62,4.61,4.59,104.02,104.47,104.7,104.93,105.15,105.36,105.57000000000001,105.77,106.19,11.59,11.09,10.88,10.67,10.46,10.27,10.06,9.86,9.47,N/A,N/A -2012,1,3,21,30,103250,102000,100790,62.93,0,3.91,4.09,4.13,4.15,4.16,4.16,4.17,4.17,4.17,119.45,120.08,120.44,120.77,121.09,121.38,121.68,121.96000000000001,122.56,11.950000000000001,11.47,11.26,11.06,10.85,10.66,10.450000000000001,10.26,9.86,N/A,N/A -2012,1,3,22,30,103170,101930,100720,65.42,0,4.05,4.25,4.28,4.3,4.3100000000000005,4.32,4.33,4.33,4.33,127.76,128.43,128.81,129.16,129.5,129.81,130.14000000000001,130.44,131.09,12.280000000000001,11.81,11.6,11.4,11.19,11,10.790000000000001,10.6,10.21,N/A,N/A -2012,1,3,23,30,103120,101880,100680,66.89,0,4.34,4.57,4.62,4.65,4.67,4.69,4.7,4.71,4.73,140.01,140.54,140.87,141.18,141.49,141.76,142.06,142.33,142.91,12.66,12.19,11.98,11.78,11.57,11.38,11.18,10.98,10.59,N/A,N/A -2012,1,4,0,30,103090,101850,100650,65.61,0,4.83,5.12,5.19,5.23,5.26,5.28,5.3,5.32,5.3500000000000005,152.18,152.69,152.98,153.25,153.52,153.75,154,154.24,154.73,13.15,12.69,12.48,12.280000000000001,12.07,11.89,11.68,11.49,11.09,N/A,N/A -2012,1,4,1,30,103030,101800,100600,67.44,0,5.44,5.78,5.86,5.91,5.95,5.97,5.99,6.01,6.04,159.29,159.76,160.03,160.28,160.53,160.75,160.98,161.21,161.66,13.61,13.16,12.96,12.76,12.55,12.36,12.15,11.96,11.57,N/A,N/A -2012,1,4,2,30,102970,101740,100550,71.66,0,6.34,6.79,6.9,6.97,7.01,7.05,7.07,7.1000000000000005,7.13,167.1,167.54,167.79,168.01,168.23,168.41,168.62,168.8,169.18,14.17,13.73,13.530000000000001,13.33,13.120000000000001,12.93,12.72,12.530000000000001,12.14,N/A,N/A -2012,1,4,3,30,102920,101690,100500,74.09,0,6.93,7.49,7.640000000000001,7.73,7.79,7.8500000000000005,7.890000000000001,7.930000000000001,7.99,172.3,172.8,173.08,173.33,173.57,173.78,174,174.19,174.6,14.67,14.24,14.040000000000001,13.84,13.63,13.450000000000001,13.24,13.05,12.66,N/A,N/A -2012,1,4,4,30,102840,101620,100430,74.82000000000001,0,7.13,7.76,7.930000000000001,8.040000000000001,8.120000000000001,8.19,8.24,8.28,8.36,179.02,179.51,179.76,179.99,180.20000000000002,180.38,180.59,180.77,181.13,15.290000000000001,14.89,14.700000000000001,14.5,14.290000000000001,14.11,13.9,13.71,13.32,N/A,N/A -2012,1,4,5,30,102800,101580,100390,75.15,0,7.48,8.08,8.24,8.34,8.4,8.45,8.49,8.53,8.58,194.38,193.78,193.46,193.16,192.88,192.63,192.39000000000001,192.17000000000002,191.74,15.83,15.450000000000001,15.26,15.06,14.86,14.67,14.47,14.27,13.88,N/A,N/A -2012,1,4,6,30,102760,101540,100360,73.16,0,8.66,9.52,9.74,9.86,9.94,9.99,10.03,10.06,10.09,191.12,191.66,192.06,192.44,192.81,193.14000000000001,193.48000000000002,193.79,194.43,16.57,16.26,16.080000000000002,15.88,15.68,15.5,15.3,15.11,14.72,N/A,N/A -2012,1,4,7,30,102740,101520,100340,75.86,0,8.08,8.9,9.14,9.3,9.42,9.52,9.6,9.67,9.790000000000001,194.12,195.02,195.42000000000002,195.78,196.11,196.4,196.66,196.9,197.35,16.81,16.52,16.36,16.16,15.97,15.790000000000001,15.59,15.4,15.01,N/A,N/A -2012,1,4,8,30,102680,101470,100290,76.06,0,7.140000000000001,7.94,8.18,8.36,8.5,8.620000000000001,8.72,8.81,8.98,196.08,196.23000000000002,196.39000000000001,196.55,196.70000000000002,196.85,197,197.13,197.38,17.12,16.88,16.72,16.55,16.36,16.18,15.99,15.8,15.42,N/A,N/A -2012,1,4,9,30,102670,101460,100280,77.18,0,7.88,8.78,9.06,9.25,9.4,9.52,9.61,9.700000000000001,9.83,196.23000000000002,196.59,196.83,197.07,197.31,197.54,197.78,198.01,198.49,17.43,17.240000000000002,17.09,16.92,16.740000000000002,16.57,16.38,16.2,15.82,N/A,N/A -2012,1,4,10,30,102630,101420,100250,80.32000000000001,0,6.08,7.01,7.34,7.62,7.8500000000000005,8.040000000000001,8.2,8.33,8.51,194.56,195.98000000000002,196.71,197.41,198,198.51,198.94,199.3,199.87,17.62,17.46,17.330000000000002,17.18,17.02,16.86,16.68,16.51,16.15,N/A,N/A -2012,1,4,11,30,102630,101420,100250,80.18,0,6.67,7.67,7.99,8.22,8.39,8.52,8.59,8.66,8.72,201.12,201.33,201.47,201.57,201.64000000000001,201.71,201.79,201.86,202.11,17.81,17.7,17.580000000000002,17.44,17.27,17.12,16.93,16.76,16.39,N/A,N/A -2012,1,4,12,30,102620,101420,100240,82.39,0,5.45,6.37,6.7,6.98,7.23,7.44,7.640000000000001,7.82,8.09,201.4,201.99,202.59,203.43,204.56,205.77,207.35,208.84,211.6,17.64,17.5,17.39,17.25,17.11,16.98,16.85,16.73,16.54,N/A,N/A -2012,1,4,13,30,102630,101420,100250,87.25,0,3.85,4.83,5.24,5.61,5.9,6.140000000000001,6.34,6.54,6.96,185.82,186.1,186.55,187.33,188.54,189.94,191.94,193.98000000000002,198.77,17.59,17.54,17.47,17.37,17.25,17.13,16.990000000000002,16.86,16.580000000000002,N/A,N/A -2012,1,4,14,30,102660,101450,100280,86.5,0,3.0100000000000002,3.92,4.2700000000000005,4.57,4.84,5.08,5.48,5.86,6.25,194.19,193.71,193.27,192.43,191.95000000000002,191.67000000000002,193.89000000000001,196.44,201.96,17.76,17.740000000000002,17.66,17.53,17.39,17.25,17.14,17.05,16.87,N/A,N/A -2012,1,4,15,30,102670,101470,100300,89.13,0,3.98,4.96,5.29,5.47,5.59,5.68,5.8100000000000005,5.93,6.16,177.04,180.06,182.84,186.78,191.43,196.32,199.15,201.32,203.46,17.740000000000002,17.76,17.740000000000002,17.67,17.580000000000002,17.48,17.37,17.26,17.03,N/A,N/A -2012,1,4,16,30,102640,101430,100260,90.55,0,2.6,3.56,4.01,4.48,4.84,5.11,5.29,5.41,5.37,173.52,176.18,178.70000000000002,182.21,185.8,189.31,192.4,195.22,201.26,17.72,17.77,17.77,17.73,17.67,17.59,17.52,17.45,17.31,N/A,N/A -2012,1,4,17,30,102600,101400,100230,89.10000000000001,0,3.71,4.46,4.76,5.04,5.37,5.7,5.92,6.11,6.36,178.14000000000001,179.75,181.57,184.45000000000002,187.93,191.6,193.94,195.86,198.68,17.85,17.75,17.7,17.650000000000002,17.6,17.54,17.48,17.42,17.23,N/A,N/A -2012,1,4,18,30,102600,101390,100230,90.87,0,2.87,3.4,3.69,4.09,4.45,4.79,4.88,4.91,4.93,165.25,168.43,172.01,177.83,184.43,191.39000000000001,195.82,199.4,205.89000000000001,17.900000000000002,17.75,17.69,17.66,17.69,17.740000000000002,17.75,17.740000000000002,17.59,N/A,N/A -2012,1,4,19,30,102590,101390,100220,89.68,0,3.02,3.62,3.9,4.23,4.42,4.53,4.39,4.24,3.98,162.8,164.53,165.74,167.35,170.18,173.48,179.55,185.04,192.77,18.04,17.84,17.72,17.59,17.5,17.43,17.400000000000002,17.36,17.240000000000002,N/A,N/A -2012,1,4,20,30,102560,101360,100190,90.32000000000001,0,3.69,4.32,4.54,4.66,4.71,4.71,4.7,4.7,4.58,177.43,181.4,185,189.86,193.27,195.75,198.01,199.99,203.25,18.19,18.19,18.22,18.28,18.28,18.25,18.16,18.080000000000002,17.830000000000002,N/A,N/A -2012,1,4,21,30,102530,101330,100170,91.69,0,3.21,3.9,4.09,4.1,4.05,3.95,3.87,3.8000000000000003,3.71,159.89000000000001,166.15,171.3,177.94,182.57,185.9,189.33,192.4,197.97,18.07,18.14,18.2,18.28,18.29,18.28,18.22,18.18,18,N/A,N/A -2012,1,4,22,30,102510,101310,100140,92.37,0,3.3200000000000003,4.21,4.51,4.69,4.79,4.83,4.92,5.01,5.26,165.42000000000002,171.97,177.98,185.74,190.84,194.28,197.91,201.25,206.07,18.04,18.18,18.25,18.29,18.32,18.330000000000002,18.36,18.38,18.3,N/A,N/A -2012,1,4,23,30,102500,101300,100140,93.82000000000001,0,4.4,5.5,5.92,6.2700000000000005,6.48,6.6000000000000005,6.71,6.8,6.92,172.87,176.14000000000001,179.8,185.72,189.24,191.29,192.41,193.28,195.38,17.97,18.03,18.13,18.32,18.41,18.44,18.39,18.330000000000002,18.13,N/A,N/A -2012,1,5,0,30,102530,101330,100170,95.24,0,3.86,5.11,5.66,6.2,6.51,6.67,6.78,6.87,6.91,173.47,180.98,186.24,191.56,194.49,195.97,197.26,198.41,200.89000000000001,17.84,18.16,18.35,18.57,18.69,18.76,18.75,18.73,18.57,N/A,N/A -2012,1,5,1,30,102540,101330,100170,95.24,0,3.81,5.32,5.97,6.44,6.7,6.8100000000000005,6.93,7.03,7.22,171.95000000000002,179.15,183.64000000000001,187.08,189.37,190.9,192.63,194.25,197.28,17.740000000000002,18.16,18.39,18.580000000000002,18.68,18.72,18.72,18.7,18.52,N/A,N/A -2012,1,5,2,30,102560,101360,100200,94.42,0,3.77,5.36,6.09,6.76,7.15,7.34,7.57,7.78,7.95,184.05,189.09,193.49,199.23000000000002,201.71,202.15,202.56,202.96,205.1,17.94,18.400000000000002,18.580000000000002,18.650000000000002,18.67,18.67,18.68,18.69,18.59,N/A,N/A -2012,1,5,3,30,102560,101360,100200,94.81,0,3.63,5.26,5.98,6.55,6.8,6.86,6.8500000000000005,6.84,6.74,192.54,195.6,197.8,200.05,202.35,204.56,206.9,209.03,213.31,17.85,18.18,18.35,18.53,18.66,18.76,18.830000000000002,18.87,18.78,N/A,N/A -2012,1,5,4,30,102550,101340,100180,94.5,0,4.51,5.99,6.5600000000000005,6.890000000000001,6.98,6.92,6.92,6.93,6.8500000000000005,198.23000000000002,199.11,200.84,204.29,207.51,210.42000000000002,213.07,215.43,220,17.900000000000002,18.16,18.32,18.53,18.6,18.59,18.66,18.73,18.71,N/A,N/A -2012,1,5,5,30,102550,101350,100190,94.7,0,4.01,5.54,6.16,6.57,6.76,6.82,6.83,6.82,6.67,210.15,211.70000000000002,214.1,218.62,221.78,224.05,226.47,228.69,232.92000000000002,17.86,18.21,18.41,18.63,18.77,18.86,18.96,19.04,19.02,N/A,N/A -2012,1,5,6,30,102580,101370,100210,96.59,0,2.17,3.44,4.0600000000000005,4.82,5.39,5.83,6.16,6.45,6.76,252.89000000000001,243.67000000000002,238.91,237.91,238.20000000000002,239.21,240.6,241.96,244.88,17.63,17.85,17.97,18.12,18.25,18.36,18.48,18.580000000000002,18.72,N/A,N/A -2012,1,5,7,30,102620,101410,100240,99.23,0,2.77,2.7800000000000002,2.8000000000000003,2.9,3.08,3.29,3.5500000000000003,3.8000000000000003,4.36,335.01,314.33,301.81,289.49,280.5,273.21,268.05,263.62,258.07,15.99,16.5,16.8,17,17.11,17.17,17.18,17.18,17.150000000000002,N/A,N/A -2012,1,5,8,30,102610,101400,100230,99.19,0,2.23,2.39,2.49,2.65,2.7800000000000002,2.91,3.09,3.31,4.18,320.53000000000003,307.54,298.78000000000003,289.18,283.03000000000003,278.8,272.17,265.44,251.83,16.71,16.59,16.55,16.53,16.47,16.38,16.36,16.43,17.31,N/A,N/A -2012,1,5,9,30,102610,101400,100230,99.31,0,2.37,2.59,2.66,2.72,2.7600000000000002,2.8000000000000003,2.82,2.84,2.97,292.03000000000003,288.99,287.25,285.77,284.31,282.93,281.96,281.2,278.46,16.96,16.77,16.68,16.580000000000002,16.47,16.37,16.26,16.15,16.01,N/A,N/A -2012,1,5,10,30,102620,101410,100240,99.3,0,3.54,3.71,3.73,3.72,3.68,3.63,3.5500000000000003,3.48,3.38,309.38,306.93,305.37,303.65000000000003,301.96,300.40000000000003,298.01,295.82,292.14,16.73,16.52,16.43,16.330000000000002,16.23,16.13,16.04,15.950000000000001,15.75,N/A,N/A -2012,1,5,11,30,102610,101400,100220,99.16,0,2.3000000000000003,2.57,2.69,2.8000000000000003,2.91,3,3.09,3.17,3.29,311.17,303.82,299.34000000000003,295.39,291.08,286.8,283.68,281.05,277.61,16.59,16.38,16.3,16.22,16.13,16.04,15.950000000000001,15.860000000000001,15.68,N/A,N/A -2012,1,5,12,30,102600,101390,100210,99.19,0,2.06,1.85,1.7,1.55,1.58,1.69,1.75,1.8,2.0100000000000002,341.03000000000003,332.25,320.17,301.43,286.26,272.38,267.07,263.64,266.9,15.91,15.72,15.67,15.65,15.64,15.620000000000001,15.540000000000001,15.450000000000001,15.33,N/A,N/A -2012,1,5,13,30,102600,101390,100210,99.26,0,1.25,1.11,0.97,0.81,0.8,0.85,1.1400000000000001,1.52,2.48,353.42,348.44,340.72,328.94,318.40000000000003,308.07,307.18,306.79,305.02,15.5,15.24,15.11,14.97,14.81,14.64,14.57,14.73,16.26,N/A,N/A -2012,1,5,14,30,102610,101390,100210,99.2,0,1.76,1.74,1.69,1.6300000000000001,1.57,1.52,1.9000000000000001,2.2600000000000002,2.34,18.53,21.900000000000002,24.62,27.96,32.93,37.96,25.09,9.84,344.16,14.84,14.530000000000001,14.36,14.18,13.9,13.61,15.030000000000001,16.240000000000002,17.03,N/A,N/A -2012,1,5,15,30,102600,101380,100200,99.17,0,0.88,0.84,0.81,0.77,0.74,0.72,1.24,1.84,2.04,52.18,53.79,54.39,54.800000000000004,50.57,45.09,17.82,345.11,326.39,14.72,14.41,14.25,14.07,13.8,13.52,15.610000000000001,17.150000000000002,17.42,N/A,N/A -2012,1,5,16,30,102570,101350,100180,99.2,0,1.8800000000000001,1.92,1.9100000000000001,1.8900000000000001,1.74,1.58,1.21,0.98,0.99,96.27,99.92,103.01,106.9,108.72,109.62,66.63,35.31,345.53000000000003,14.85,14.540000000000001,14.39,14.24,14.09,13.950000000000001,15.67,17.02,17.56,N/A,N/A -2012,1,5,17,30,102520,101300,100130,99.18,0,1.84,1.95,2,2.04,2.11,2.19,1.6400000000000001,1.21,0.61,99.62,102.71000000000001,105.3,108.51,114.31,120.91,112.28,101.74000000000001,48.71,15.46,15.19,15.05,14.89,14.64,14.38,15.41,16.34,17.17,N/A,N/A -2012,1,5,18,30,102480,101260,100090,98.41,0,1.12,1.17,1.19,1.23,1.52,2,1.86,1.6400000000000001,0.8,142.31,142.3,142.23,142.06,150.13,163.79,162.63,159.58,149.58,15.96,15.65,15.48,15.280000000000001,15.42,15.67,16.06,16.42,17.09,N/A,N/A -2012,1,5,19,30,102450,101240,100070,98.09,0,1.3900000000000001,1.52,1.58,1.6400000000000001,1.8,1.99,1.9000000000000001,1.8,1.42,154.83,154.24,153.52,152.45000000000002,152.24,152.38,158.07,162.92000000000002,169.11,16.42,16.11,15.97,15.84,15.57,15.280000000000001,15.860000000000001,16.43,17.34,N/A,N/A -2012,1,5,20,30,102400,101190,100030,97.85000000000001,0,0.6,0.78,1.02,1.54,2.05,2.57,3.02,3.38,3.2800000000000002,201.27,204.85,206.39000000000001,207.64000000000001,206.70000000000002,204.54,202.08,199.72,196.82,16.5,16.18,16.05,15.950000000000001,16.11,16.35,16.78,17.13,17.28,N/A,N/A -2012,1,5,21,30,102370,101160,99990,98.43,0,0.68,0.73,0.9500000000000001,1.61,2.16,2.61,3.02,3.41,3.85,176.29,174.70000000000002,175.34,178.4,181.16,183.55,186.26,188.81,192.27,16.7,16.42,16.31,16.23,16.37,16.580000000000002,16.88,17.12,17.32,N/A,N/A -2012,1,5,22,30,102320,101120,99950,97.3,0,1.97,2.32,2.62,3.06,3.43,3.73,3.89,4,4.08,133.98,141.08,146.78,154.34,158.54,160.92000000000002,163.78,166.71,175.18,17.1,16.88,16.94,17.2,17.34,17.43,17.47,17.51,17.57,N/A,N/A -2012,1,5,23,30,102290,101080,99920,97.41,0,3.94,4.59,4.75,4.86,4.89,4.89,4.91,4.93,5.03,151.42000000000002,151.56,151.78,152.20000000000002,154.29,156.93,160.62,164.05,170.61,17.73,17.53,17.46,17.45,17.59,17.77,17.85,17.91,17.87,N/A,N/A -2012,1,6,0,30,102270,101070,99910,97.04,0,4.86,5.69,5.93,6.09,6.04,5.91,5.87,5.84,5.96,158.93,159.41,160.34,162,164.38,166.81,169.52,172.01,177.23,17.66,17.52,17.5,17.55,17.69,17.85,17.95,18.03,18.12,N/A,N/A -2012,1,6,1,30,102250,101040,99890,99.26,0,5.19,5.5600000000000005,5.69,5.86,6.24,6.71,6.84,6.91,6.88,169.13,170.07,170.89000000000001,172.02,175.3,179.43,181.22,182.57,184.88,16.75,16.52,16.41,16.32,17.44,18.97,19.06,18.98,18.68,N/A,N/A -2012,1,6,2,30,102240,101030,99870,99.23,0,5.01,5.33,5.53,5.8500000000000005,6.25,6.68,6.98,7.22,7.38,161.57,162.98,165.24,169.02,174.14000000000001,179.65,183.1,185.92000000000002,189.15,16.65,16.39,16.27,16.16,17.11,18.400000000000002,18.79,19.01,18.8,N/A,N/A -2012,1,6,3,30,102210,101010,99850,99.24000000000001,0,4.79,5.29,5.58,6.0200000000000005,6.49,6.96,7.28,7.53,7.79,165.74,168.26,171.23,176.13,180.65,184.86,187.93,190.53,194.03,16.84,16.66,16.73,16.990000000000002,17.59,18.26,18.54,18.72,18.64,N/A,N/A -2012,1,6,4,30,102170,100970,99810,98.47,0,4.29,5.32,6.11,7.3100000000000005,7.8500000000000005,8.02,8.22,8.42,8.700000000000001,175.8,179.36,183.41,189.93,192.85,193.82,194.82,195.73000000000002,197.31,17.28,17.32,17.72,18.48,18.740000000000002,18.77,18.77,18.76,18.580000000000002,N/A,N/A -2012,1,6,5,30,102130,100940,99780,94.8,0,4.55,6.01,6.7,7.44,8.05,8.57,8.82,9.02,9.26,180.28,183.55,186.73,191.31,194.6,197.13,197.28,197.05,195.97,18,18.150000000000002,18.26,18.41,18.5,18.56,18.51,18.44,18.25,N/A,N/A -2012,1,6,6,30,102120,100920,99760,94.4,0,3.75,5.23,5.92,6.66,7.42,8.17,8.47,8.66,8.91,182.76,186.28,188.95000000000002,191.99,194.88,197.66,199.21,200.44,202.12,18.05,18.26,18.31,18.32,18.36,18.42,18.41,18.39,18.21,N/A,N/A -2012,1,6,7,30,102100,100910,99750,94.39,0,4.6000000000000005,6.11,6.76,7.3500000000000005,7.930000000000001,8.49,8.97,9.36,9.41,181.91,183.96,185.6,187.65,189.36,190.85,192.78,194.57,196.96,18.02,18.18,18.22,18.240000000000002,18.23,18.21,18.17,18.12,17.95,N/A,N/A -2012,1,6,8,30,102060,100860,99700,94.62,0,4.58,6.09,6.8,7.5600000000000005,8.21,8.790000000000001,9.3,9.73,10.08,178.93,181.92000000000002,184,186.31,188.89000000000001,191.52,195.03,198.13,199.63,17.97,18.1,18.150000000000002,18.19,18.26,18.330000000000002,18.400000000000002,18.44,18.28,N/A,N/A -2012,1,6,9,30,102020,100830,99670,93.27,0,5.45,7.1000000000000005,7.82,8.540000000000001,9.18,9.76,10.17,10.5,10.84,187.74,188.67000000000002,189.6,190.89000000000001,192.71,194.71,196.08,197.12,196.92000000000002,18.25,18.42,18.490000000000002,18.55,18.6,18.64,18.580000000000002,18.51,18.27,N/A,N/A -2012,1,6,10,30,102000,100810,99650,93.43,0,5.48,7.2,8,8.8,9.49,10.1,10.540000000000001,10.92,11.46,182.42000000000002,184.4,185.89000000000001,187.59,189.06,190.38,191.51,192.53,194.31,18.22,18.43,18.51,18.580000000000002,18.61,18.63,18.59,18.54,18.32,N/A,N/A -2012,1,6,11,30,101990,100790,99640,91.66,0,6.55,8.27,9,9.69,10.26,10.75,11.1,11.4,11.8,188.52,189.70000000000002,190.54,191.51,192.41,193.24,193.95000000000002,194.57,195.4,18.43,18.59,18.63,18.650000000000002,18.650000000000002,18.63,18.57,18.490000000000002,18.240000000000002,N/A,N/A -2012,1,6,12,30,101970,100770,99620,92.57000000000001,0,6.1000000000000005,7.71,8.41,9.11,9.74,10.31,10.77,11.19,11.84,192.59,193.64000000000001,194.46,195.41,196.01,196.41,196.52,196.59,197.01,18.41,18.57,18.63,18.68,18.71,18.73,18.67,18.6,18.34,N/A,N/A -2012,1,6,13,30,101950,100760,99600,91.37,0,6.63,8.24,8.870000000000001,9.44,9.91,10.32,10.620000000000001,10.870000000000001,11.19,197.18,197.98000000000002,198.62,199.35,199.97,200.51,200.72,200.83,200.12,18.5,18.61,18.6,18.54,18.47,18.37,18.240000000000002,18.12,17.85,N/A,N/A -2012,1,6,14,30,101980,100790,99630,90.29,0,6.93,8.57,9.24,9.85,10.290000000000001,10.63,10.75,10.83,11,196.31,197.45000000000002,198.29,199.24,199.84,200.22,199.98000000000002,199.65,198.8,18.48,18.61,18.64,18.66,18.69,18.72,18.72,18.7,18.48,N/A,N/A -2012,1,6,15,30,102000,100810,99650,91.88,0,6.74,8.3,8.98,9.65,10.28,10.88,11.4,11.85,12.32,198.4,199.46,200.33,201.48000000000002,202.86,204.3,205.6,206.70000000000002,207.22,18.330000000000002,18.39,18.37,18.34,18.29,18.25,18.19,18.13,17.97,N/A,N/A -2012,1,6,16,30,102000,100800,99640,80.48,0,11.53,13.68,14.58,15.39,16.09,16.7,17.22,17.68,18.27,225.3,224.45000000000002,223.93,223.4,222.85,222.31,221.73000000000002,221.19,220.33,18.18,18.19,18.16,18.13,18.1,18.09,18.080000000000002,18.07,17.98,N/A,N/A -2012,1,6,17,30,101920,100730,99570,86.8,0,4.74,5.93,6.47,7.01,7.55,8.07,8.51,8.88,9.36,220.72,218.14000000000001,216.64000000000001,215.26,214.42000000000002,213.85,213.34,212.87,211.97,17.96,17.98,17.98,18,18.06,18.14,18.2,18.240000000000002,18.16,N/A,N/A -2012,1,6,18,30,101890,100700,99540,89.29,0,4.21,5.49,6.11,6.74,7.19,7.53,7.7700000000000005,7.99,8.48,199.47,200.36,201.29,202.44,203.57,204.61,205.14000000000001,205.54,205.75,18.07,18.21,18.330000000000002,18.48,18.55,18.580000000000002,18.54,18.5,18.35,N/A,N/A -2012,1,6,19,30,101860,100660,99510,91.84,0,3.23,4.23,4.72,5.28,5.74,6.13,6.43,6.68,7.140000000000001,177.55,178.13,179.58,182.44,185.97,189.68,191.29,192.43,193.35,18.1,18.07,18.07,18.12,18.2,18.29,18.36,18.41,18.39,N/A,N/A -2012,1,6,20,30,101820,100630,99470,93.72,0,4.7700000000000005,5.87,6.41,7.0200000000000005,7.48,7.8500000000000005,8.040000000000001,8.19,8.540000000000001,160.58,163.01,165.62,169.75,174.53,179.39000000000001,181.69,183.41,185.86,18.21,18.21,18.27,18.41,18.53,18.650000000000002,18.650000000000002,18.64,18.46,N/A,N/A -2012,1,6,21,30,101770,100580,99430,94.61,0,4.7,6.04,6.640000000000001,7.2700000000000005,7.88,8.48,8.89,9.21,9.38,162.72,166.32,169.47,173.79,177.58,181.03,183.81,186.17000000000002,188.54,18.330000000000002,18.490000000000002,18.56,18.650000000000002,18.69,18.72,18.68,18.64,18.42,N/A,N/A -2012,1,6,22,30,101720,100530,99380,93.01,0,4.87,6.37,7.01,7.640000000000001,8.18,8.65,8.76,8.8,8.92,157.87,160.95000000000002,163.82,167.89000000000001,172.97,178.49,181.12,183.13,187.28,18.32,18.56,18.66,18.78,18.89,18.990000000000002,18.95,18.89,18.740000000000002,N/A,N/A -2012,1,6,23,30,101710,100510,99360,93.2,0,6.08,7.68,8.44,9.25,9.950000000000001,10.57,10.97,11.26,11.18,153.42000000000002,155.76,157.8,160.66,163.86,167.1,169.62,171.71,173.47,18.05,18.19,18.28,18.41,18.52,18.62,18.580000000000002,18.51,18.240000000000002,N/A,N/A -2012,1,7,0,30,101700,100510,99360,92.82000000000001,0,6.93,8.4,8.99,9.56,10.13,10.69,11.17,11.58,11.94,183.66,184.87,185.86,187.03,187.97,188.76,189.39000000000001,189.95000000000002,191.07,18.330000000000002,18.42,18.43,18.42,18.39,18.37,18.31,18.25,18.01,N/A,N/A -2012,1,7,1,30,101670,100480,99330,91.82000000000001,0,5.25,6.8100000000000005,7.5200000000000005,8.22,8.82,9.34,9.78,10.15,10.55,182.08,183.33,184.21,185.15,186.19,187.22,188.67000000000002,190.08,192.73000000000002,18.11,18.23,18.25,18.25,18.2,18.14,18.02,17.89,17.580000000000002,N/A,N/A -2012,1,7,2,30,101680,100480,99330,93.43,0,6.09,7.62,8.26,8.88,9.42,9.9,10.31,10.66,11.13,180.29,180.73,181.08,181.42000000000002,181.78,182.13,182.55,182.96,183.82,18.11,18.16,18.13,18.080000000000002,18.01,17.93,17.82,17.72,17.47,N/A,N/A -2012,1,7,3,30,101660,100470,99310,92.10000000000001,0,5.5200000000000005,6.88,7.46,8.03,8.53,8.98,9.27,9.5,9.700000000000001,179.9,180.93,181.79,182.86,184.02,185.17000000000002,186.5,187.81,191.52,17.96,17.96,17.93,17.87,17.79,17.71,17.61,17.51,17.28,N/A,N/A -2012,1,7,4,30,101660,100460,99310,91.62,0,5.92,7.36,7.97,8.55,9.06,9.53,9.96,10.35,11.03,187.08,187.34,187.5,187.65,187.75,187.83,187.91,188,188.81,18.11,18.16,18.14,18.09,18.01,17.93,17.830000000000002,17.73,17.5,N/A,N/A -2012,1,7,5,30,101620,100430,99280,92.02,0,6.18,7.76,8.45,9.11,9.69,10.22,10.69,11.11,11.66,188.58,189.62,190.31,190.98,191.44,191.78,191.79,191.73000000000002,191.24,18.23,18.330000000000002,18.34,18.32,18.29,18.240000000000002,18.17,18.09,17.830000000000002,N/A,N/A -2012,1,7,6,30,101630,100440,99290,92.5,0,5.32,6.69,7.25,7.7700000000000005,8.19,8.55,8.89,9.200000000000001,9.82,174.76,175.82,176.62,177.54,178.61,179.72,181.25,182.75,185.52,18.07,18.150000000000002,18.150000000000002,18.13,18.09,18.04,17.97,17.91,17.78,N/A,N/A -2012,1,7,7,30,101650,100460,99300,94.28,0,4.8500000000000005,6.2700000000000005,6.93,7.6000000000000005,8.2,8.76,9.290000000000001,9.77,10.34,176.20000000000002,178.1,179.61,181.43,183.18,184.86,186.6,188.28,192.01,18.02,18.14,18.17,18.19,18.18,18.16,18.11,18.07,17.94,N/A,N/A -2012,1,7,8,30,101630,100440,99290,94.68,0,4.16,5.5200000000000005,6.15,6.8100000000000005,7.58,8.42,8.790000000000001,9.05,9.52,173.78,177.95000000000002,181.36,185.65,190.05,194.55,196.42000000000002,197.68,199.69,17.94,18.1,18.17,18.240000000000002,18.31,18.39,18.35,18.3,18.17,N/A,N/A -2012,1,7,9,30,101630,100440,99290,94.64,0,4.23,5.67,6.3100000000000005,6.9,7.53,8.19,8.45,8.64,9.07,168.52,172.24,175.63,180.20000000000002,185.21,190.44,192.48000000000002,193.84,196.4,17.95,18.16,18.26,18.34,18.39,18.43,18.400000000000002,18.36,18.2,N/A,N/A -2012,1,7,10,30,101640,100450,99300,94.58,0,4.2,5.72,6.46,7.2700000000000005,7.97,8.6,8.89,9.09,9.44,173.47,176.93,180.24,185.42000000000002,189.6,193.12,194.63,195.58,197.31,17.97,18.2,18.330000000000002,18.5,18.61,18.7,18.71,18.7,18.57,N/A,N/A -2012,1,7,11,30,101660,100470,99320,95.33,0,4.69,6.08,6.7700000000000005,7.5200000000000005,7.92,8.1,8.2,8.290000000000001,8.55,157.68,159.32,161.1,164.01,171.14000000000001,180.46,184.02,186.19,189.79,17.79,17.87,17.94,18.07,18.23,18.400000000000002,18.43,18.43,18.34,N/A,N/A -2012,1,7,12,30,101670,100480,99330,96.76,0,4.5200000000000005,5.98,6.84,7.84,8.48,8.86,9.06,9.200000000000001,9.34,170.41,173.46,176.76,182.17000000000002,185.63,187.74,189.20000000000002,190.39000000000001,191.77,17.61,18.06,18.38,18.75,18.96,19.080000000000002,19.080000000000002,19.06,18.76,N/A,N/A -2012,1,7,13,30,101690,100500,99350,96.02,0,4.17,5.46,6.12,6.88,7.54,8.14,8.43,8.620000000000001,8.84,158.99,162.02,164.83,168.88,174.29,180.48,183.62,185.86,189.37,17.78,17.95,18.07,18.2,18.41,18.650000000000002,18.71,18.73,18.63,N/A,N/A -2012,1,7,14,30,101720,100530,99380,97.83,0.4,4.54,6.12,7.17,8.55,9.15,9.24,9.200000000000001,9.14,8.88,160.53,166.20000000000002,171.95000000000002,181.06,185.49,186.86,188.71,190.44,193.42000000000002,17.400000000000002,16.92,17.27,18.580000000000002,19.03,19.03,19.01,18.990000000000002,18.79,N/A,N/A -2012,1,7,15,30,101750,100560,99410,95.9,0,4.67,6.23,7.09,8.08,8.52,8.6,8.61,8.61,8.59,158.42000000000002,160.97,163.9,169.22,173.16,176.01,178.13,179.9,183.21,17.82,17.6,17.77,18.47,18.86,19.05,19.06,19.04,18.84,N/A,N/A -2012,1,7,16,30,101730,100540,99390,97.14,0,4.09,5.58,6.48,7.55,8.040000000000001,8.13,8.13,8.120000000000001,8.07,159.98,162.79,167.78,178.09,183.76,186.12,188.17000000000002,189.94,192.94,17.6,18,18.43,19.16,19.5,19.61,19.54,19.44,19.13,N/A,N/A -2012,1,7,17,30,101720,100530,99380,97.06,0,4.59,6.07,6.78,7.390000000000001,7.61,7.59,7.5600000000000005,7.54,7.47,159.36,162.49,167.57,177.36,182.71,185.13,187.48,189.57,193.99,17.7,18.14,18.59,19.32,19.61,19.650000000000002,19.59,19.51,19.28,N/A,N/A -2012,1,7,18,30,101730,100540,99400,95.92,0,4.66,6.34,7.05,7.29,7.33,7.26,7.18,7.12,7.0200000000000005,157.22,160.36,165.77,176.59,182.41,185.02,187.8,190.34,195.70000000000002,18,18.46,18.79,19.19,19.35,19.36,19.32,19.27,19.1,N/A,N/A -2012,1,7,19,30,101720,100530,99380,95.02,0,4.93,6.32,6.78,6.94,6.99,6.97,6.99,7.01,7.11,155.3,161,170.53,189.21,197.8,200.47,203.36,206.05,211.98000000000002,18.240000000000002,18.31,18.54,19.11,19.29,19.26,19.19,19.12,19.01,N/A,N/A -2012,1,7,20,30,101690,100510,99360,93.89,0,4.57,6.11,6.62,6.7700000000000005,6.84,6.86,6.890000000000001,6.92,7.12,181.6,185.77,191.9,203.11,209.08,211.88,215.09,218.07,223.18,18.51,18.86,19.07,19.330000000000002,19.43,19.44,19.46,19.490000000000002,19.43,N/A,N/A -2012,1,7,21,30,101690,100500,99360,93.19,0,4.92,6.44,6.92,6.98,7.04,7.1000000000000005,7.19,7.28,7.51,174,178.06,184.95000000000002,199.17000000000002,206.35,209.03,211.64000000000001,214.03,217.66,18.59,18.85,19.05,19.42,19.580000000000002,19.62,19.66,19.69,19.59,N/A,N/A -2012,1,7,22,30,101670,100480,99330,94.46000000000001,0,5.08,6.42,6.84,6.92,6.96,6.96,6.99,7.0200000000000005,7.12,168.63,175.13,181.44,190.83,195.67000000000002,197.5,199.5,201.35,204.4,18.14,18.2,18.5,19.330000000000002,19.68,19.69,19.66,19.62,19.43,N/A,N/A -2012,1,7,23,30,101680,100490,99340,94.56,0,5.07,6.82,7.53,7.82,7.930000000000001,7.91,7.91,7.92,7.890000000000001,167.09,172.44,176.89000000000001,182.15,185.07,186.37,187.93,189.4,192.29,18.080000000000002,18.22,18.61,19.53,19.84,19.73,19.66,19.59,19.36,N/A,N/A -2012,1,8,0,30,101690,100500,99350,95.55,0,5.51,7.15,7.82,8.21,8.34,8.32,8.33,8.35,8.34,164.44,168.73,172.6,177.89000000000001,180.71,182,183.63,185.17000000000002,188.25,17.85,18.09,18.56,19.55,19.86,19.77,19.7,19.63,19.41,N/A,N/A -2012,1,8,1,30,101690,100500,99360,96.16,0.4,5.05,6.7,7.48,8.13,8.38,8.4,8.39,8.370000000000001,8.32,164.82,168.38,172.14000000000001,178.26,181.71,183.43,184.78,185.94,188.14000000000001,17.740000000000002,17.37,17.76,19.16,19.78,19.96,19.900000000000002,19.8,19.51,N/A,N/A -2012,1,8,2,30,101700,100510,99370,96.83,0,4.7,6.28,7.04,7.61,7.9,8.02,8.09,8.15,8.23,166.88,172.22,177.05,183.6,187.29,189.17000000000002,190.6,191.81,194.01,17.6,17.2,17.66,19.3,19.98,20.1,20.02,19.91,19.61,N/A,N/A -2012,1,8,3,30,101720,100530,99380,97.35000000000001,0,4.8100000000000005,6.05,6.75,7.63,8.1,8.290000000000001,8.370000000000001,8.43,8.45,167.93,169.52,171.22,174.13,176.48,178.37,180.12,181.69,184.71,17.490000000000002,17.71,18.14,19.07,19.55,19.77,19.77,19.72,19.47,N/A,N/A -2012,1,8,4,30,101700,100510,99360,95.2,0,4.22,6.11,7.04,7.8100000000000005,8.19,8.31,8.33,8.34,8.22,150.6,158.41,164.68,171.99,175.95000000000002,177.6,178.83,179.84,181.47,17.98,18.5,18.96,19.67,19.97,20.04,19.98,19.89,19.62,N/A,N/A -2012,1,8,5,30,101710,100520,99380,95.51,0,4.44,6.17,7.29,8.85,9.65,9.88,10.05,10.200000000000001,10.27,162.3,166.24,171.58,181.85,187.47,189.49,191.3,192.9,195.46,17.900000000000002,17.900000000000002,18.25,19.18,19.64,19.830000000000002,19.87,19.87,19.66,N/A,N/A -2012,1,8,6,30,101720,100530,99390,95.62,0,4.64,6.38,7.46,8.88,9.77,10.28,10.44,10.5,10.46,160.47,164.9,168.74,174.54,179.68,184.13,186.16,187.49,189.85,18.01,17.88,18.1,18.86,19.36,19.71,19.73,19.69,19.5,N/A,N/A -2012,1,8,7,30,101750,100560,99410,93.78,0,5.08,6.8,7.84,9.36,10.55,11.44,11.71,11.78,11.69,170.11,172.20000000000002,174.08,177.1,180.34,183.77,185.53,186.66,188.23,18.41,18.43,18.55,19.01,19.5,20.03,20.13,20.11,19.81,N/A,N/A -2012,1,8,8,30,101720,100540,99390,92.67,0,5.12,7.13,8.16,9.3,10.27,11.13,11.41,11.55,11.61,161.61,164.70000000000002,167.33,171.13,175.11,179.18,181.4,182.99,185.77,18.68,18.85,19.05,19.56,19.89,20.12,20.13,20.1,19.92,N/A,N/A -2012,1,8,9,30,101690,100500,99360,92.42,0,5.93,8.08,9.13,10.13,11.02,11.84,12.67,13.46,13.81,158.49,161.83,164.4,167.29,170.76,174.61,177.89000000000001,180.87,183.38,18.69,18.85,18.97,19.23,19.45,19.63,19.81,19.97,19.92,N/A,N/A -2012,1,8,10,30,101700,100510,99360,92.16,0,7.33,9.13,9.99,10.93,11.89,12.89,13.55,14.08,14.13,168.52,170.45000000000002,172.22,174.52,176.59,178.55,180.43,182.16,185.70000000000002,18.72,18.88,19.01,19.240000000000002,19.53,19.84,19.96,20.03,19.87,N/A,N/A -2012,1,8,11,30,101720,100530,99390,92.19,0,5.95,7.71,8.51,9.34,10.14,10.89,11.63,12.31,13.31,176.66,177.24,177.58,177.94,178.36,178.81,179.53,180.31,183.62,18.740000000000002,18.94,19.01,19.09,19.17,19.240000000000002,19.3,19.35,19.39,N/A,N/A -2012,1,8,12,30,101740,100550,99400,91.92,7,5.86,7.68,8.53,9.39,10.19,10.97,11.67,12.33,13.450000000000001,191.11,189.29,188.36,187.75,187.47,187.41,187.72,188.11,189.35,18.82,18.95,18.97,19.01,19.080000000000002,19.17,19.22,19.27,19.23,N/A,N/A -2012,1,8,13,30,101750,100560,99410,91.99,0.4,5.9,7.7,8.53,9.44,10.32,11.17,11.98,12.72,13.97,187.6,186.41,185.77,185.39000000000001,185.27,185.32,185.8,186.35,187.93,18.81,18.94,18.97,19,19.080000000000002,19.2,19.3,19.39,19.47,N/A,N/A -2012,1,8,14,30,101780,100600,99450,92.23,0,6.54,8.4,9.25,10.15,11.01,11.85,12.67,13.450000000000001,13.88,185.22,185.36,185.5,185.78,186.31,187,188.78,190.75,194.44,18.73,19.09,19.25,19.38,19.51,19.63,19.8,19.96,20.04,N/A,N/A -2012,1,8,15,30,101780,100600,99450,90.58,0,7.2700000000000005,9.36,10.31,11.22,11.77,12.1,12.11,12.05,12.120000000000001,182.05,183.17000000000002,184.28,185.96,187.61,189.20000000000002,190.5,191.61,192.94,19.11,19.56,19.8,20.09,20.3,20.46,20.51,20.53,20.3,N/A,N/A -2012,1,8,16,30,101790,100610,99460,92.65,0,5.8,7.67,8.66,9.85,10.73,11.370000000000001,11.6,11.71,11.74,174.85,177.58,179.76,182.48,184.52,186.04,187.01,187.76,189.32,18.78,19.14,19.39,19.77,20.05,20.26,20.34,20.39,20.17,N/A,N/A -2012,1,8,17,30,101790,100600,99450,93.21000000000001,0,5.0600000000000005,6.94,7.94,9.09,9.870000000000001,10.39,10.59,10.71,10.93,170.29,172.9,175.25,178.41,180.65,182.22,183.04,183.61,185.06,18.79,19.18,19.44,19.8,20.02,20.150000000000002,20.2,20.23,20.07,N/A,N/A -2012,1,8,18,30,101790,100610,99460,94.13,0,4.68,6.41,7.36,8.56,9.47,10.15,10.39,10.51,10.67,163.44,166.54,169.19,172.87,175.81,178.18,179.23,179.86,181.16,18.740000000000002,19.06,19.29,19.64,19.89,20.09,20.16,20.2,20.03,N/A,N/A -2012,1,8,19,30,101800,100610,99460,95.43,0,4.5,6.19,7.17,8.43,9.27,9.78,10.08,10.3,10.55,156.67000000000002,160.96,164.22,168.21,170.9,172.62,173.75,174.66,176.28,18.46,18.93,19.25,19.650000000000002,19.88,20.01,20.07,20.12,19.97,N/A,N/A -2012,1,8,20,30,101780,100590,99440,94.02,0,4.72,6.49,7.41,8.47,9.3,9.94,10.19,10.32,10.56,150.74,153.49,156.03,159.77,163.02,165.88,167.32,168.29,170.19,18.72,19.06,19.27,19.54,19.740000000000002,19.900000000000002,19.96,20,19.91,N/A,N/A -2012,1,8,21,30,101750,100570,99420,94.88,0,4.53,6.18,7.09,8.13,8.92,9.53,9.8,9.96,10.23,144.05,147.73,150.82,154.70000000000002,158.81,162.98,165.15,166.68,169.5,18.41,18.82,19.080000000000002,19.37,19.61,19.81,19.93,20,20.05,N/A,N/A -2012,1,8,22,30,101730,100540,99400,95.75,0,4.41,6.29,7.390000000000001,8.6,9.21,9.4,9.620000000000001,9.82,9.99,141.05,145.75,150.37,157.29,161.31,163.27,165.27,167.11,169.88,18.05,18.79,19.26,19.75,19.990000000000002,20.09,20.17,20.25,20.16,N/A,N/A -2012,1,8,23,30,101740,100550,99400,95.4,0,5.15,6.83,7.8500000000000005,9.27,10.17,10.68,10.82,10.870000000000001,10.97,142.31,144.9,147.51,151.96,156.31,160.37,162.17000000000002,163.34,165.69,18.06,18.01,18.29,19.1,19.6,19.92,20.01,20.04,19.98,N/A,N/A -2012,1,9,0,30,101740,100550,99410,95.61,0.4,5.34,7.07,8.11,9.46,10.16,10.43,10.6,10.73,10.75,134.14000000000001,136.69,140.36,147.63,151.95000000000002,154.24,156.21,157.94,160.64000000000001,18,17.54,17.78,18.86,19.48,19.85,19.990000000000002,20.07,19.94,N/A,N/A -2012,1,9,1,30,101740,100540,99400,97.46000000000001,0.4,5.0600000000000005,6.63,7.72,9.35,10.19,10.47,10.61,10.69,10.73,125.52,128.07,132.47,142.48,148.01,150.36,152.29,153.96,156.83,17.62,17.14,17.400000000000002,18.61,19.36,19.86,20.02,20.1,20.01,N/A,N/A -2012,1,9,2,30,101740,100540,99400,98.64,0.7000000000000001,5.21,6.65,7.65,9.1,9.83,10.07,10.15,10.19,10.22,124.53,127.28,132.23,143.11,149.23,152.02,154.21,156.08,158.99,17.39,16.81,17.07,18.32,19.2,19.85,20.080000000000002,20.2,20.13,N/A,N/A -2012,1,9,3,30,101720,100530,99380,99.14,0.4,6.74,7.930000000000001,8.68,9.8,10.47,10.82,10.89,10.9,10.86,129.26,130.96,133.22,137.57,142.23,146.94,149.12,150.62,153.13,17.3,17.240000000000002,17.400000000000002,17.8,18.57,19.55,19.78,19.86,19.73,N/A,N/A -2012,1,9,4,30,101700,100510,99370,95.07000000000001,0,6,7.63,8.51,9.540000000000001,10.06,10.22,10.24,10.24,10.32,130.86,133.09,135.99,141.16,146.25,151.04,152.14000000000001,152.42000000000002,154.66,18.1,18.14,18.150000000000002,18.16,18.97,20.26,20.32,20.14,19.92,N/A,N/A -2012,1,9,5,30,101680,100480,99340,98.8,0.4,6.05,7.3,8.17,9.540000000000001,10.23,10.48,10.43,10.33,10.13,125.24000000000001,126.88000000000001,129.41,134.54,139.27,143.42000000000002,145.16,146.25,148.3,17.36,17.21,17.44,18.13,18.990000000000002,19.91,20.080000000000002,20.080000000000002,19.91,N/A,N/A -2012,1,9,6,30,101660,100470,99320,96.72,0,6.69,8.09,8.84,9.81,10.82,11.870000000000001,11.76,11.44,11.16,124.5,125.9,127.3,129.6,133.24,137.70000000000002,143.08,147.8,149.9,18.14,18.080000000000002,18.05,18.01,18.13,18.31,19.2,20.11,20.17,N/A,N/A -2012,1,9,7,30,101650,100460,99310,95.65,0,6.46,7.930000000000001,8.67,9.49,10.44,11.47,12.200000000000001,12.77,12.35,123.81,124.75,125.71000000000001,127.2,129.62,132.69,137.32,141.81,146.3,18.35,18.32,18.29,18.26,18.16,18.03,18.41,18.84,19.56,N/A,N/A -2012,1,9,8,30,101630,100440,99290,95.38,0,4.22,5.95,6.890000000000001,7.88,8.84,9.8,10.76,11.69,13.14,126.97,127,127.21000000000001,127.68,128.7,130.14000000000001,132.42000000000002,134.9,141.71,18.47,18.54,18.55,18.56,18.53,18.490000000000002,18.46,18.44,18.68,N/A,N/A -2012,1,9,9,30,101630,100450,99300,93.86,0,5.38,6.91,7.7,8.620000000000001,9.49,10.35,11.15,11.88,12.870000000000001,130.14000000000001,130.6,131.39000000000001,133.37,135.44,137.71,140.23,142.72,147.11,18.75,18.87,18.91,18.94,18.96,18.98,19.01,19.04,19.22,N/A,N/A -2012,1,9,10,30,101540,100350,99200,93.62,53.1,6.5600000000000005,8.38,9.200000000000001,10.040000000000001,10.94,11.82,12.700000000000001,13.48,14.27,97.86,101.14,104.21000000000001,108.09,113.04,118.16,123.11,127.5,132.61,18.79,18.85,18.900000000000002,18.96,19.04,19.12,19.2,19.27,19.37,N/A,N/A -2012,1,9,11,30,101540,100360,99210,92.58,169.60000000000002,6.51,8.4,9.38,10.24,11.03,11.78,12.56,13.32,14.84,75.94,80.66,84.68,89.35000000000001,93.87,98.48,103.27,107.95,116.58,18.990000000000002,19.150000000000002,19.17,19.11,19.04,18.97,18.92,18.89,18.85,N/A,N/A -2012,1,9,12,30,101580,100390,99250,91.57000000000001,2.6,6.29,8.34,9.24,10.07,10.790000000000001,11.44,11.99,12.49,13.23,164.70000000000002,163.54,162.5,160.92000000000002,159.72,158.77,158.35,158.08,158.11,19.27,19.41,19.43,19.43,19.42,19.41,19.39,19.36,19.26,N/A,N/A -2012,1,9,13,30,101570,100380,99240,91.95,0,7.26,9.13,9.97,10.81,11.57,12.280000000000001,12.98,13.64,14.950000000000001,150.76,151.32,151.88,152.75,153.65,154.59,155.54,156.46,158.11,19.150000000000002,19.26,19.27,19.28,19.28,19.27,19.32,19.37,19.400000000000002,N/A,N/A -2012,1,9,14,30,101590,100400,99260,92.76,0,7.140000000000001,8.97,9.81,10.700000000000001,11.55,12.370000000000001,13.22,14.040000000000001,15.530000000000001,150.99,152.13,152.93,153.86,154.71,155.52,156.36,157.16,158.56,18.98,19.04,19.07,19.13,19.21,19.3,19.39,19.47,19.5,N/A,N/A -2012,1,9,15,30,101550,100370,99230,92.28,0,7.41,9.3,10.21,11.15,12.030000000000001,12.9,13.76,14.58,15.85,149.02,150.24,151.15,152.14000000000001,153.07,153.96,154.76,155.51,156.75,19.07,19.23,19.29,19.34,19.39,19.44,19.48,19.51,19.47,N/A,N/A -2012,1,9,16,30,101520,100340,99200,92.84,0,7.34,9.15,10.05,11.05,12,12.93,13.85,14.72,16.54,144.3,145.77,146.9,148.26,149.56,150.84,152.34,153.84,156.87,18.96,19.03,19.080000000000002,19.27,19.400000000000002,19.5,19.6,19.7,19.89,N/A,N/A -2012,1,9,17,30,101500,100320,99170,93.31,0,6.84,8.56,9.39,10.27,11.1,11.89,12.67,13.4,14.59,137.36,139.20000000000002,140.6,142.28,143.85,145.36,146.79,148.13,150.26,18.900000000000002,19.06,19.12,19.14,19.18,19.22,19.240000000000002,19.26,19.240000000000002,N/A,N/A -2012,1,9,18,30,101440,100260,99110,93.07000000000001,0.4,7.51,9.24,10.1,11,11.85,12.700000000000001,13.48,14.200000000000001,15.32,129.34,131.2,132.74,134.75,136.69,138.67000000000002,140.66,142.56,147.23,18.95,19.02,19.05,19.13,19.2,19.26,19.35,19.42,19.63,N/A,N/A -2012,1,9,19,30,101450,100260,99120,92.63,0,6.62,8.47,9.36,10.290000000000001,11.14,11.93,12.63,13.27,14.290000000000001,123,126.04,128.32,130.92000000000002,133.5,136.09,139.18,142.19,148.25,19.07,19.16,19.2,19.28,19.39,19.52,19.66,19.79,20.01,N/A,N/A -2012,1,9,20,30,101430,100250,99100,93.09,0,6.6000000000000005,8.290000000000001,9.1,10,10.86,11.73,12.43,13.06,13.39,114.83,117.83,120.4,123.97,127.49000000000001,131.14000000000001,134.31,137.17000000000002,143.94,18.94,19.01,19.04,19.150000000000002,19.3,19.5,19.64,19.77,19.88,N/A,N/A -2012,1,9,21,30,101300,100120,98980,92.61,0,8.870000000000001,10.73,11.52,12.31,13.02,13.66,14.18,14.620000000000001,14.93,113.42,114.96000000000001,116.56,119.11,122.5,126.39,130.88,135.15,140.65,18.990000000000002,19.06,19.080000000000002,19.11,19.26,19.48,19.73,19.95,19.91,N/A,N/A -2012,1,9,22,30,101320,100140,98990,93.42,0,7.82,9.52,10.290000000000001,11.02,11.67,12.26,12.82,13.32,13.86,97.29,99.17,100.76,102.77,105.17,107.87,111.45,115.06,124.56,18.8,18.88,18.900000000000002,18.91,18.93,18.95,18.92,18.89,19.12,N/A,N/A -2012,1,9,23,30,101310,100130,98980,93.83,0,7.8500000000000005,9.52,10.27,11,11.71,12.4,13.08,13.72,14.780000000000001,109.77,110.63,111.39,112.61,114.16,115.9,118.56,121.29,133.54,18.71,18.76,18.77,18.78,18.79,18.81,18.82,18.830000000000002,18.98,N/A,N/A -2012,1,10,0,30,101300,100120,98980,93.15,6.6000000000000005,7.3,9.1,9.950000000000001,10.83,11.66,12.450000000000001,13.1,13.68,13.86,122.03,122.13,122.4,122.93,123.81,124.93,127.41,130.05,142.21,18.88,18.96,18.96,18.97,18.97,18.97,18.94,18.91,19.55,N/A,N/A -2012,1,10,1,30,101280,100100,98960,92.73,16.1,7.4,9.21,10.05,10.96,11.74,12.44,12.97,13.42,14.040000000000001,112.57000000000001,114.95,116.31,117.95,119.89,121.99000000000001,125.37,128.83,138.26,18.96,19.02,19.02,19.01,19,19.01,19.02,19.04,19.26,N/A,N/A -2012,1,10,2,30,101290,100110,98970,91.94,56,8.69,10.63,11.4,11.98,12.34,12.55,12.6,12.6,12.64,110.45,112.39,114.44,117.29,120.33,123.4,127.18,130.8,140.54,19.11,19.2,19.21,19.2,19.240000000000002,19.3,19.28,19.240000000000002,19.11,N/A,N/A -2012,1,10,3,30,101370,100190,99040,93.34,132.6,4.14,5.78,6.28,6.2700000000000005,6.2,6.0600000000000005,5.99,5.94,5.91,135.49,130.3,130.06,137.16,142.96,147.92000000000002,150.42000000000002,151.99,152.9,18.97,19.16,19.16,19.02,18.92,18.830000000000002,18.68,18.54,18.21,N/A,N/A -2012,1,10,4,30,101260,100080,98940,94.2,22.700000000000003,3.97,5.24,5.87,6.65,7.36,8.01,8.49,8.870000000000001,9.06,34.11,48.78,60.74,72.46000000000001,82.16,90.3,97.14,103.13,108.52,18.76,18.830000000000002,18.82,18.8,18.8,18.830000000000002,18.81,18.77,18.41,N/A,N/A -2012,1,10,5,30,101230,100050,98900,93.99,18.7,1.9100000000000001,2.88,3.27,3.8200000000000003,4.32,4.79,5.33,5.86,6.5200000000000005,84.97,105.67,116.42,124.34,130.37,135.11,140.21,145.24,151.22,19.09,19.11,18.990000000000002,18.830000000000002,18.72,18.63,18.54,18.45,18.28,N/A,N/A -2012,1,10,6,30,101230,100050,98910,91.39,0.4,4.99,6.0600000000000005,6.3100000000000005,6.48,6.57,6.61,6.62,6.61,6.59,222.1,228.45000000000002,232.65,236.94,240.47,243.48000000000002,246.57,249.41,255.68,19.47,19.89,19.98,19.91,19.85,19.78,19.72,19.67,19.55,N/A,N/A -2012,1,10,7,30,101300,100120,98970,94.92,0,7.25,8.6,9.15,9.64,10.01,10.28,10.32,10.290000000000001,9.58,280.89,281.76,282.46,283.29,283.99,284.61,285.28000000000003,285.90000000000003,287.51,18.63,18.6,18.53,18.43,18.28,18.12,17.92,17.73,17.47,N/A,N/A -2012,1,10,8,30,101340,100150,98990,93.44,0,9.450000000000001,10.34,10.58,10.71,10.8,10.870000000000001,10.950000000000001,11.03,11.36,289.21,289.65000000000003,289.95,290.33,290.75,291.19,291.81,292.44,294.65000000000003,17.36,17.06,16.89,16.7,16.51,16.330000000000002,16.15,15.97,15.63,N/A,N/A -2012,1,10,9,30,101350,100150,98990,91.67,0,10.25,11.09,11.28,11.36,11.39,11.41,11.42,11.44,11.64,291.24,291.44,291.6,291.76,291.94,292.12,292.37,292.62,293.64,16.35,15.96,15.77,15.57,15.38,15.200000000000001,15.01,14.84,14.5,N/A,N/A -2012,1,10,10,30,101370,100170,99000,91.26,0,9.540000000000001,10.28,10.46,10.53,10.56,10.58,10.59,10.59,10.61,293.01,293.21,293.32,293.43,293.55,293.66,293.79,293.92,294.28000000000003,15.200000000000001,14.74,14.530000000000001,14.33,14.13,13.94,13.74,13.55,13.17,N/A,N/A -2012,1,10,11,30,101400,100190,99010,90.54,0,10.14,10.93,11.11,11.18,11.22,11.23,11.23,11.23,11.23,289.73,289.83,289.91,289.98,290.05,290.12,290.21,290.3,290.55,14.19,13.66,13.44,13.23,13.030000000000001,12.84,12.64,12.46,12.08,N/A,N/A -2012,1,10,12,30,101440,100230,99040,90.62,0,10.51,11.34,11.540000000000001,11.64,11.69,11.73,11.74,11.76,11.8,287.08,287.19,287.27,287.35,287.44,287.52,287.63,287.75,288.06,13.14,12.55,12.32,12.1,11.89,11.71,11.5,11.32,10.94,N/A,N/A -2012,1,10,13,30,101460,100240,99060,87.91,0,8.870000000000001,9.51,9.67,9.76,9.81,9.86,9.89,9.91,9.96,287.58,287.76,287.91,288.04,288.19,288.31,288.47,288.61,288.94,12.8,12.24,12.01,11.790000000000001,11.58,11.39,11.19,11,10.620000000000001,N/A,N/A -2012,1,10,14,30,101490,100270,99080,87.88,0,9.83,10.55,10.72,10.8,10.85,10.870000000000001,10.89,10.9,10.9,288.72,288.95,289.09000000000003,289.23,289.36,289.49,289.63,289.76,290.08,12.05,11.42,11.18,10.950000000000001,10.74,10.55,10.34,10.15,9.77,N/A,N/A -2012,1,10,15,30,101480,100260,99070,86.71000000000001,0,8.85,9.48,9.65,9.74,9.8,9.84,9.870000000000001,9.9,9.94,292.05,292.25,292.36,292.46,292.57,292.66,292.78000000000003,292.89,293.13,11.86,11.25,11.01,10.790000000000001,10.57,10.38,10.17,9.98,9.6,N/A,N/A -2012,1,10,16,30,101460,100240,99050,84.57000000000001,0,7.8500000000000005,8.39,8.53,8.6,8.65,8.69,8.72,8.74,8.77,290.45,290.42,290.39,290.36,290.32,290.29,290.26,290.22,290.16,12.18,11.6,11.370000000000001,11.15,10.94,10.75,10.540000000000001,10.35,9.96,N/A,N/A -2012,1,10,17,30,101420,100200,99020,83.29,0,8.53,9.13,9.28,9.35,9.39,9.42,9.43,9.44,9.43,288.98,289.05,289.11,289.17,289.23,289.27,289.33,289.38,289.47,12.65,12.07,11.84,11.620000000000001,11.4,11.200000000000001,10.99,10.8,10.4,N/A,N/A -2012,1,10,18,30,101410,100200,99010,79.49,0,7.98,8.53,8.67,8.74,8.790000000000001,8.83,8.85,8.870000000000001,8.89,292.53000000000003,292.40000000000003,292.34000000000003,292.27,292.2,292.14,292.07,292.01,291.88,12.57,12.01,11.78,11.56,11.35,11.15,10.94,10.75,10.35,N/A,N/A -2012,1,10,19,30,101380,100160,98980,76.32000000000001,0,8.32,8.92,9.08,9.17,9.23,9.27,9.3,9.33,9.370000000000001,289.25,289.15000000000003,289.08,289.02,288.96,288.91,288.84000000000003,288.78000000000003,288.66,12.81,12.25,12.030000000000001,11.81,11.6,11.4,11.19,11,10.6,N/A,N/A -2012,1,10,20,30,101350,100140,98960,74.65,0,8.22,8.83,8.99,9.08,9.14,9.19,9.22,9.24,9.28,288.40000000000003,288.53000000000003,288.54,288.54,288.53000000000003,288.53000000000003,288.5,288.48,288.44,13.39,12.870000000000001,12.65,12.42,12.21,12.02,11.81,11.61,11.21,N/A,N/A -2012,1,10,21,30,101320,100110,98930,71.58,0,8.45,9.1,9.290000000000001,9.39,9.47,9.52,9.57,9.6,9.66,284.46,284.92,285.22,285.49,285.74,285.96,286.19,286.40000000000003,286.8,13.69,13.17,12.96,12.74,12.530000000000001,12.33,12.120000000000001,11.93,11.53,N/A,N/A -2012,1,10,22,30,101290,100080,98900,69.73,0,9.05,9.74,9.92,10.01,10.07,10.11,10.14,10.16,10.19,293.09000000000003,292.88,292.78000000000003,292.68,292.58,292.49,292.38,292.29,292.09000000000003,13.71,13.19,12.97,12.75,12.540000000000001,12.35,12.14,11.94,11.540000000000001,N/A,N/A -2012,1,10,23,30,101310,100100,98920,72.53,0,9.94,10.71,10.9,11,11.06,11.1,11.120000000000001,11.14,11.14,295.71,295.62,295.54,295.45,295.38,295.3,295.22,295.15000000000003,295,13.3,12.73,12.5,12.27,12.06,11.86,11.65,11.450000000000001,11.05,N/A,N/A -2012,1,11,0,30,101350,100130,98950,72.68,0,10.28,11.16,11.41,11.55,11.65,11.73,11.790000000000001,11.84,11.92,292.11,291.97,291.89,291.81,291.73,291.67,291.6,291.54,291.41,12.790000000000001,12.200000000000001,11.96,11.73,11.51,11.31,11.1,10.91,10.51,N/A,N/A -2012,1,11,1,30,101340,100120,98940,73.26,0,8.96,9.66,9.85,9.96,10.040000000000001,10.1,10.15,10.200000000000001,10.27,287.48,287.08,286.83,286.6,286.37,286.18,285.96,285.76,285.36,12.780000000000001,12.21,11.99,11.77,11.55,11.36,11.15,10.96,10.56,N/A,N/A -2012,1,11,2,30,101340,100120,98940,73.75,0,7.140000000000001,7.640000000000001,7.79,7.88,7.95,8.01,8.06,8.11,8.22,280.69,280.23,279.95,279.67,279.41,279.16,278.91,278.67,278.18,12.77,12.24,12.02,11.81,11.6,11.41,11.200000000000001,11.02,10.63,N/A,N/A -2012,1,11,3,30,101300,100090,98910,74.38,0,7.75,8.36,8.540000000000001,8.66,8.75,8.83,8.91,8.98,9.14,276.87,276.84000000000003,276.79,276.75,276.7,276.67,276.63,276.6,276.56,13.17,12.65,12.43,12.21,12.01,11.82,11.620000000000001,11.44,11.06,N/A,N/A -2012,1,11,4,30,101260,100040,98870,71.83,0,8.290000000000001,8.97,9.16,9.28,9.38,9.450000000000001,9.53,9.6,9.76,275.91,275.74,275.64,275.54,275.45,275.38,275.3,275.24,275.16,13.91,13.41,13.19,12.99,12.790000000000001,12.61,12.41,12.23,11.86,N/A,N/A -2012,1,11,5,30,101240,100030,98850,71.93,0,8.8,9.52,9.73,9.85,9.94,10.01,10.07,10.120000000000001,10.22,275.26,275.16,275.09000000000003,275.04,275,274.96,274.93,274.90000000000003,274.87,14.49,14.01,13.8,13.59,13.38,13.19,12.99,12.8,12.41,N/A,N/A -2012,1,11,6,30,101220,100010,98840,70.65,0,9.53,10.35,10.58,10.72,10.81,10.870000000000001,10.92,10.96,11.03,274.03000000000003,273.99,273.97,273.97,273.99,274,274.02,274.05,274.12,14.9,14.450000000000001,14.24,14.030000000000001,13.83,13.64,13.44,13.25,12.86,N/A,N/A -2012,1,11,7,30,101230,100020,98850,71.97,0,9.16,9.83,9.99,10.05,10.08,10.09,10.09,10.09,10.07,287.6,286.78000000000003,286.22,285.67,285.13,284.62,284.05,283.52,282.3,14.11,13.63,13.42,13.22,13.02,12.84,12.65,12.47,12.11,N/A,N/A -2012,1,11,8,30,101220,100010,98830,76.05,0,7.69,8.2,8.31,8.36,8.39,8.41,8.43,8.45,8.540000000000001,285.36,285.19,285.06,284.93,284.8,284.68,284.52,284.36,283.95,13.370000000000001,12.870000000000001,12.67,12.47,12.27,12.09,11.9,11.73,11.38,N/A,N/A -2012,1,11,9,30,101220,100010,98830,74.72,0,6.83,7.26,7.36,7.41,7.44,7.47,7.5,7.54,7.65,280.41,280.5,280.57,280.63,280.71,280.79,280.91,281.04,281.45,13.450000000000001,12.98,12.77,12.57,12.38,12.200000000000001,12.01,11.83,11.48,N/A,N/A -2012,1,11,10,30,101210,100000,98820,74.61,0,6.34,6.72,6.8100000000000005,6.86,6.890000000000001,6.92,6.95,6.98,7.1000000000000005,277.12,277.14,277.17,277.2,277.25,277.31,277.40000000000003,277.51,277.94,13.49,13.02,12.82,12.620000000000001,12.43,12.25,12.05,11.88,11.52,N/A,N/A -2012,1,11,11,30,101210,100000,98820,72.69,0,5.82,6.16,6.23,6.2700000000000005,6.29,6.3,6.3100000000000005,6.33,6.38,274.34000000000003,273.88,273.55,273.21,272.85,272.52,272.15,271.8,271.09000000000003,13.870000000000001,13.43,13.23,13.030000000000001,12.84,12.66,12.47,12.290000000000001,11.92,N/A,N/A -2012,1,11,12,30,101220,100010,98840,74.04,0,5.62,5.95,6.03,6.07,6.09,6.11,6.13,6.15,6.2,270.22,269.78000000000003,269.48,269.17,268.86,268.57,268.25,267.95,267.31,14.22,13.8,13.6,13.4,13.200000000000001,13.02,12.83,12.64,12.27,N/A,N/A -2012,1,11,13,30,101200,99990,98820,72.61,0,5.97,6.3500000000000005,6.44,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,6.63,269.57,269.21,268.95,268.7,268.44,268.18,267.89,267.62,266.96,14.59,14.17,13.98,13.780000000000001,13.58,13.4,13.200000000000001,13.02,12.65,N/A,N/A -2012,1,11,14,30,101220,100010,98840,70.85000000000001,0,6.22,6.61,6.69,6.73,6.75,6.76,6.7700000000000005,6.78,6.8100000000000005,268.96,268.57,268.31,268.05,267.78000000000003,267.53000000000003,267.23,266.94,266.25,14.71,14.290000000000001,14.1,13.9,13.71,13.52,13.33,13.15,12.780000000000001,N/A,N/A -2012,1,11,15,30,101200,100000,98820,66.62,0,6.01,6.36,6.42,6.45,6.46,6.46,6.46,6.46,6.5200000000000005,262.1,262.05,262.02,261.98,261.93,261.87,261.78000000000003,261.69,261.46,14.85,14.450000000000001,14.26,14.06,13.870000000000001,13.69,13.5,13.32,12.98,N/A,N/A -2012,1,11,16,30,101160,99960,98790,64.94,0,5.74,6.09,6.15,6.18,6.2,6.21,6.23,6.26,6.46,257.08,256.84000000000003,256.7,256.56,256.41,256.27,256.09000000000003,255.92000000000002,255.52,15.02,14.63,14.450000000000001,14.26,14.07,13.89,13.71,13.540000000000001,13.23,N/A,N/A -2012,1,11,17,30,101100,99900,98730,63.89,0,6.03,6.41,6.49,6.53,6.5600000000000005,6.57,6.6000000000000005,6.63,6.83,249.29,249.17000000000002,249.13,249.11,249.09,249.07,249.08,249.12,249.55,15.46,15.09,14.9,14.71,14.530000000000001,14.35,14.16,13.99,13.68,N/A,N/A -2012,1,11,18,30,101070,99870,98710,60.86,0,6.3100000000000005,6.7700000000000005,6.88,6.94,6.98,7,7.03,7.05,7.11,236.20000000000002,236.07,236,235.93,235.87,235.81,235.75,235.71,235.69,16.17,15.83,15.65,15.46,15.27,15.09,14.89,14.71,14.35,N/A,N/A -2012,1,11,19,30,101020,99830,98670,61.78,0,6.3,6.8100000000000005,6.92,6.97,7,7.0200000000000005,7.04,7.0600000000000005,7.140000000000001,233.98000000000002,233.97,233.99,234.02,234.05,234.08,234.16,234.26,234.74,16.9,16.6,16.43,16.240000000000002,16.05,15.870000000000001,15.68,15.5,15.15,N/A,N/A -2012,1,11,20,30,100960,99760,98610,69.98,0,7.43,8.120000000000001,8.28,8.36,8.4,8.43,8.44,8.45,8.47,226.9,227.06,227.21,227.37,227.54,227.72,227.93,228.14000000000001,228.72,17.43,17.17,17.01,16.830000000000002,16.64,16.47,16.27,16.1,15.73,N/A,N/A -2012,1,11,21,30,100900,99720,98560,74.60000000000001,0,8.8,9.69,9.93,10.08,10.17,10.25,10.290000000000001,10.33,10.370000000000001,220.73000000000002,220.88,220.99,221.11,221.23000000000002,221.35,221.5,221.63,222.01,17.6,17.37,17.22,17.04,16.85,16.68,16.48,16.31,15.94,N/A,N/A -2012,1,11,22,30,100850,99660,98510,75.53,0,8.83,9.870000000000001,10.200000000000001,10.46,10.68,10.88,11.09,11.290000000000001,11.76,219.43,219.79,220.06,220.39000000000001,220.79,221.22,221.86,222.5,224.41,17.82,17.62,17.490000000000002,17.330000000000002,17.16,17.01,16.86,16.72,16.47,N/A,N/A -2012,1,11,23,30,100840,99650,98500,79.19,0,8.73,9.85,10.23,10.53,10.76,10.96,11.13,11.28,11.55,222.76,223,223.16,223.32,223.49,223.64000000000001,223.84,224.05,224.63,18,17.82,17.69,17.53,17.36,17.2,17.02,16.85,16.51,N/A,N/A -2012,1,12,0,30,100830,99650,98500,82.28,0,8.26,9.38,9.8,10.13,10.41,10.64,10.870000000000001,11.07,11.53,221.94,222.14000000000001,222.3,222.5,222.72,222.97,223.3,223.64000000000001,224.57,18.14,18.01,17.900000000000002,17.76,17.62,17.48,17.330000000000002,17.2,16.94,N/A,N/A -2012,1,12,1,30,100820,99640,98490,82.11,0,7.87,9.1,9.58,9.98,10.34,10.67,11,11.33,12.11,219.03,219.33,219.58,219.9,220.23000000000002,220.58,220.98000000000002,221.37,222.33,18.32,18.25,18.16,18.04,17.92,17.8,17.67,17.55,17.31,N/A,N/A -2012,1,12,2,30,100840,99650,98510,80.24,0,8.24,9.63,10.18,10.68,11.11,11.51,11.870000000000001,12.21,12.81,220.70000000000002,221.03,221.28,221.58,221.89000000000001,222.19,222.53,222.85,223.6,18.54,18.51,18.44,18.330000000000002,18.22,18.1,17.98,17.86,17.6,N/A,N/A -2012,1,12,3,30,100850,99670,98520,80.4,0,8.57,10.02,10.6,11.120000000000001,11.56,11.96,12.33,12.66,13.280000000000001,224.70000000000002,225.08,225.37,225.73000000000002,226.11,226.5,226.96,227.39000000000001,228.5,18.64,18.62,18.56,18.46,18.35,18.23,18.11,18,17.76,N/A,N/A -2012,1,12,4,30,100880,99700,98560,80.86,0,8.620000000000001,10.1,10.71,11.25,11.71,12.13,12.52,12.88,13.55,233.21,233.55,233.8,234.11,234.44,234.8,235.24,235.66,236.82,18.69,18.69,18.64,18.55,18.46,18.36,18.25,18.150000000000002,17.96,N/A,N/A -2012,1,12,5,30,100920,99740,98590,79.96000000000001,0,8.59,10.08,10.700000000000001,11.26,11.73,12.16,12.56,12.92,13.57,240.98000000000002,241.15,241.28,241.45000000000002,241.65,241.85,242.15,242.45000000000002,243.48000000000002,18.76,18.8,18.77,18.7,18.62,18.54,18.47,18.39,18.29,N/A,N/A -2012,1,12,6,30,100990,99810,98660,83.37,0,7.66,9.28,9.96,10.6,11.14,11.61,12,12.34,12.89,247.53,247.89000000000001,248.14000000000001,248.52,248.93,249.36,249.81,250.24,251.19,18.45,18.6,18.62,18.580000000000002,18.53,18.46,18.35,18.25,18,N/A,N/A -2012,1,12,7,30,101110,99910,98740,73.63,0,10.040000000000001,10.93,11.17,11.3,11.42,11.52,11.69,11.88,12.86,295.16,295.7,296.04,296.46,296.96,297.47,298.26,299.11,302.27,15.64,15.290000000000001,15.11,14.92,14.73,14.56,14.38,14.22,13.96,N/A,N/A -2012,1,12,8,30,101210,100000,98830,74.25,0,13.32,14.59,14.91,15.06,15.15,15.21,15.23,15.25,15.27,318.85,318.92,318.97,319.01,319.07,319.12,319.19,319.26,319.46,14.4,13.91,13.700000000000001,13.49,13.290000000000001,13.1,12.9,12.71,12.34,N/A,N/A -2012,1,12,9,30,101370,100150,98960,79.08,0,13.97,15.290000000000001,15.63,15.81,15.92,15.99,16.03,16.06,16.080000000000002,337.54,337.73,337.84000000000003,337.94,338.05,338.15000000000003,338.26,338.37,338.61,12.48,11.85,11.6,11.370000000000001,11.15,10.950000000000001,10.74,10.55,10.16,N/A,N/A -2012,1,12,10,30,101500,100280,99080,79.96000000000001,0,13.780000000000001,15.040000000000001,15.370000000000001,15.52,15.610000000000001,15.67,15.700000000000001,15.71,15.71,339.83,340.09000000000003,340.24,340.37,340.5,340.62,340.76,340.89,341.16,11.13,10.42,10.15,9.91,9.69,9.49,9.28,9.09,8.700000000000001,N/A,N/A -2012,1,12,11,30,101660,100420,99220,80.43,0,14.51,15.88,16.26,16.47,16.6,16.7,16.76,16.8,16.86,348.87,348.79,348.72,348.65000000000003,348.58,348.52,348.45,348.39,348.26,9.93,9.120000000000001,8.83,8.58,8.35,8.14,7.92,7.72,7.32,N/A,N/A -2012,1,12,12,30,101770,100530,99320,78.75,0,16.14,17.7,18.12,18.34,18.48,18.59,18.650000000000002,18.7,18.77,349.93,349.93,349.91,349.89,349.86,349.84000000000003,349.81,349.79,349.74,8.96,8.05,7.74,7.48,7.24,7.03,6.8100000000000005,6.61,6.21,N/A,N/A -2012,1,12,13,30,101900,100660,99440,78.15,0,16.26,17.86,18.3,18.54,18.69,18.8,18.87,18.92,18.98,352.18,352.09000000000003,352.02,351.96,351.90000000000003,351.85,351.79,351.74,351.63,8.17,7.21,6.890000000000001,6.62,6.37,6.16,5.93,5.73,5.32,N/A,N/A -2012,1,12,14,30,102020,100760,99550,77.15,0,15.97,17.47,17.88,18.09,18.23,18.330000000000002,18.39,18.44,18.51,352.75,352.75,352.75,352.74,352.73,352.72,352.71,352.69,352.68,7.53,6.54,6.22,5.95,5.71,5.49,5.2700000000000005,5.07,4.67,N/A,N/A -2012,1,12,15,30,102090,100840,99620,74.92,0,14.6,15.89,16.240000000000002,16.42,16.54,16.62,16.68,16.72,16.78,349.77,349.81,349.84000000000003,349.86,349.88,349.89,349.91,349.93,349.96,7.38,6.43,6.11,5.8500000000000005,5.61,5.4,5.18,4.98,4.59,N/A,N/A -2012,1,12,16,30,102110,100860,99640,69.34,0,13.71,14.88,15.200000000000001,15.38,15.48,15.56,15.620000000000001,15.66,15.71,348.35,348.37,348.37,348.37,348.37,348.37,348.37,348.37,348.37,7.55,6.65,6.34,6.09,5.8500000000000005,5.64,5.42,5.22,4.83,N/A,N/A -2012,1,12,17,30,102150,100890,99680,63.480000000000004,0,12.41,13.44,13.73,13.88,13.98,14.06,14.11,14.15,14.21,346.73,346.72,346.71,346.7,346.7,346.69,346.68,346.68,346.67,8.06,7.22,6.93,6.68,6.44,6.23,6.01,5.8100000000000005,5.41,N/A,N/A -2012,1,12,18,30,102180,100930,99720,61.13,0,11.48,12.39,12.63,12.77,12.86,12.92,12.97,13,13.05,342.64,342.68,342.72,342.77,342.8,342.83,342.87,342.90000000000003,342.98,8.59,7.8100000000000005,7.53,7.28,7.05,6.84,6.62,6.42,6.0200000000000005,N/A,N/A -2012,1,12,19,30,102200,100950,99740,56.36,0,12.200000000000001,13.22,13.5,13.65,13.75,13.83,13.870000000000001,13.91,13.96,339.06,339.19,339.28000000000003,339.36,339.43,339.5,339.57,339.64,339.76,9.040000000000001,8.26,7.98,7.73,7.5,7.3,7.08,6.87,6.47,N/A,N/A -2012,1,12,20,30,102220,100970,99760,53.95,0,11.26,12.15,12.4,12.530000000000001,12.620000000000001,12.68,12.72,12.76,12.8,338.94,338.92,338.91,338.89,338.88,338.86,338.85,338.83,338.8,9.32,8.57,8.3,8.06,7.83,7.62,7.4,7.2,6.79,N/A,N/A -2012,1,12,21,30,102220,100970,99760,51.77,0,10.93,11.77,12,12.120000000000001,12.200000000000001,12.26,12.290000000000001,12.32,12.36,339.72,339.58,339.48,339.39,339.3,339.22,339.15000000000003,339.08,338.93,9.44,8.72,8.45,8.21,7.98,7.78,7.5600000000000005,7.36,6.95,N/A,N/A -2012,1,12,22,30,102210,100960,99750,51.44,0,10.540000000000001,11.34,11.55,11.66,11.73,11.78,11.81,11.83,11.84,334.63,334.79,334.90000000000003,335.01,335.1,335.19,335.28000000000003,335.36,335.53000000000003,9.49,8.78,8.51,8.27,8.040000000000001,7.84,7.62,7.41,7.01,N/A,N/A -2012,1,12,23,30,102280,101030,99820,50.47,0,9.92,10.63,10.82,10.92,10.98,11.03,11.05,11.07,11.09,340.22,339.93,339.75,339.58,339.41,339.26,339.11,338.98,338.71,9.450000000000001,8.76,8.5,8.26,8.03,7.83,7.61,7.41,7.01,N/A,N/A -2012,1,13,0,30,102350,101100,99880,46.25,0,10.56,11.33,11.53,11.620000000000001,11.68,11.72,11.74,11.76,11.77,339.74,339.69,339.61,339.54,339.47,339.40000000000003,339.33,339.26,339.13,9.18,8.46,8.19,7.95,7.73,7.5200000000000005,7.3100000000000005,7.11,6.71,N/A,N/A -2012,1,13,1,30,102390,101130,99920,50,0,9.89,10.58,10.75,10.83,10.88,10.91,10.93,10.94,10.94,340.40000000000003,340.3,340.21,340.13,340.04,339.97,339.88,339.8,339.65000000000003,8.89,8.18,7.91,7.68,7.45,7.25,7.03,6.83,6.43,N/A,N/A -2012,1,13,2,30,102440,101190,99970,51.85,0,9.49,10.13,10.290000000000001,10.370000000000001,10.42,10.450000000000001,10.47,10.48,10.49,342.01,341.71,341.51,341.34000000000003,341.19,341.04,340.89,340.76,340.49,8.61,7.9,7.63,7.390000000000001,7.16,6.96,6.74,6.54,6.140000000000001,N/A,N/A -2012,1,13,3,30,102480,101230,100010,50.27,0,9.6,10.25,10.41,10.48,10.53,10.56,10.57,10.58,10.59,344.85,344.65000000000003,344.54,344.43,344.33,344.25,344.16,344.08,343.92,8.290000000000001,7.5600000000000005,7.29,7.0600000000000005,6.83,6.62,6.4,6.2,5.8,N/A,N/A -2012,1,13,4,30,102510,101250,100030,52.86,0,8.5,9.03,9.16,9.22,9.25,9.28,9.290000000000001,9.3,9.3,345.12,345.24,345.31,345.35,345.40000000000003,345.45,345.49,345.53000000000003,345.6,8.11,7.41,7.140000000000001,6.9,6.68,6.47,6.26,6.05,5.65,N/A,N/A -2012,1,13,5,30,102540,101280,100060,54.75,0,8.08,8.55,8.66,8.71,8.73,8.74,8.74,8.74,8.73,352.81,352.64,352.53000000000003,352.44,352.35,352.27,352.19,352.12,351.97,7.96,7.2700000000000005,7.01,6.7700000000000005,6.54,6.34,6.12,5.92,5.5200000000000005,N/A,N/A -2012,1,13,6,30,102560,101300,100080,51.96,0,7.8,8.26,8.35,8.4,8.42,8.43,8.44,8.44,8.42,358.8,358.38,358.1,357.85,357.62,357.42,357.2,357.01,356.63,7.86,7.17,6.91,6.68,6.45,6.25,6.03,5.83,5.43,N/A,N/A -2012,1,13,7,30,102600,101340,100120,47.52,0,7.91,8.35,8.44,8.47,8.48,8.49,8.48,8.47,8.44,5.08,4.6000000000000005,4.2700000000000005,3.97,3.66,3.39,3.11,2.84,2.29,7.73,7.03,6.7700000000000005,6.54,6.32,6.12,5.91,5.71,5.3100000000000005,N/A,N/A -2012,1,13,8,30,102610,101350,100130,46.300000000000004,0,7.8,8.24,8.34,8.38,8.39,8.4,8.4,8.4,8.39,4.42,4.3100000000000005,4.24,4.16,4.08,4.01,3.93,3.84,3.66,7.61,6.92,6.66,6.43,6.21,6.01,5.8,5.6000000000000005,5.21,N/A,N/A -2012,1,13,9,30,102630,101370,100150,46.63,0,7.46,7.87,7.95,7.99,8,8.01,8,8,7.98,7.55,7.58,7.6000000000000005,7.61,7.62,7.62,7.62,7.62,7.6000000000000005,7.61,6.93,6.67,6.44,6.22,6.0200000000000005,5.8100000000000005,5.62,5.22,N/A,N/A -2012,1,13,10,30,102650,101390,100170,48.5,0,7.18,7.57,7.65,7.69,7.71,7.72,7.72,7.72,7.7,11.35,11.370000000000001,11.38,11.39,11.39,11.4,11.4,11.4,11.4,7.65,6.97,6.72,6.49,6.26,6.07,5.8500000000000005,5.66,5.26,N/A,N/A -2012,1,13,11,30,102670,101410,100190,47.69,0,7.15,7.53,7.61,7.640000000000001,7.65,7.66,7.65,7.65,7.63,13.01,12.950000000000001,12.9,12.870000000000001,12.83,12.790000000000001,12.74,12.700000000000001,12.61,7.7700000000000005,7.1000000000000005,6.84,6.61,6.390000000000001,6.2,5.99,5.79,5.4,N/A,N/A -2012,1,13,12,30,102700,101440,100220,47.37,0,6.62,6.96,7.0200000000000005,7.05,7.0600000000000005,7.0600000000000005,7.0600000000000005,7.05,7.03,14.24,14.19,14.16,14.120000000000001,14.09,14.06,14.02,13.99,13.92,7.91,7.26,7.01,6.79,6.57,6.37,6.16,5.97,5.58,N/A,N/A -2012,1,13,13,30,102710,101460,100230,47.42,0,6.25,6.55,6.6000000000000005,6.61,6.62,6.61,6.6000000000000005,6.59,6.5600000000000005,17.05,16.98,16.92,16.87,16.82,16.77,16.71,16.66,16.54,7.99,7.36,7.12,6.890000000000001,6.67,6.48,6.2700000000000005,6.07,5.68,N/A,N/A -2012,1,13,14,30,102770,101510,100290,46.410000000000004,0,5.69,5.95,5.98,5.99,5.99,5.98,5.97,5.95,5.92,24.79,24.77,24.75,24.740000000000002,24.72,24.71,24.68,24.66,24.62,8.120000000000001,7.51,7.26,7.04,6.83,6.63,6.42,6.23,5.84,N/A,N/A -2012,1,13,15,30,102780,101520,100300,44.71,0,5.25,5.47,5.5,5.51,5.51,5.5,5.48,5.47,5.44,25.76,25.84,25.900000000000002,25.94,25.98,26.02,26.060000000000002,26.1,26.16,8.3,7.7,7.46,7.24,7.03,6.84,6.63,6.43,6.04,N/A,N/A -2012,1,13,16,30,102770,101520,100290,43.95,0,5.03,5.24,5.26,5.2700000000000005,5.26,5.26,5.24,5.23,5.2,23.82,23.91,23.97,24.02,24.060000000000002,24.1,24.14,24.17,24.240000000000002,8.540000000000001,7.95,7.72,7.5,7.28,7.09,6.88,6.69,6.3,N/A,N/A -2012,1,13,17,30,102760,101510,100290,42.730000000000004,0,4.2700000000000005,4.43,4.45,4.46,4.45,4.44,4.43,4.43,4.4,22.56,22.5,22.47,22.43,22.39,22.35,22.3,22.27,22.18,8.81,8.25,8.02,7.8,7.59,7.4,7.19,6.99,6.6000000000000005,N/A,N/A -2012,1,13,18,30,102750,101500,100280,42.11,0,3.6,3.73,3.74,3.74,3.73,3.73,3.72,3.71,3.69,19.84,19.77,19.73,19.68,19.64,19.61,19.57,19.52,19.42,9.15,8.620000000000001,8.39,8.18,7.97,7.78,7.57,7.37,6.98,N/A,N/A -2012,1,13,19,30,102740,101490,100270,41.81,0,3.0700000000000003,3.16,3.16,3.15,3.14,3.13,3.12,3.1,3.08,8.24,8.22,8.23,8.25,8.25,8.24,8.22,8.21,8.15,9.49,8.97,8.75,8.540000000000001,8.33,8.14,7.930000000000001,7.74,7.3500000000000005,N/A,N/A -2012,1,13,20,30,102720,101470,100260,44.74,0,2.2800000000000002,2.38,2.4,2.41,2.43,2.44,2.45,2.46,2.48,4.8,3.17,2.15,1.21,0.34,359.54,358.75,358.02,356.63,9.88,9.39,9.17,8.96,8.75,8.56,8.35,8.16,7.76,N/A,N/A -2012,1,13,21,30,102710,101470,100250,39.92,0,2.89,3.0100000000000002,3.0300000000000002,3.04,3.0500000000000003,3.0500000000000003,3.06,3.06,3.0700000000000003,354.25,353.98,353.8,353.63,353.48,353.34000000000003,353.19,353.04,352.73,10.41,9.92,9.71,9.5,9.290000000000001,9.1,8.89,8.700000000000001,8.31,N/A,N/A -2012,1,13,22,30,102680,101440,100230,46.65,0,1.62,1.71,1.75,1.78,1.81,1.83,1.86,1.8800000000000001,1.93,333.59000000000003,333.1,332.77,332.45,332.14,331.87,331.59000000000003,331.33,330.82,10.71,10.25,10.040000000000001,9.83,9.63,9.44,9.23,9.040000000000001,8.65,N/A,N/A -2012,1,13,23,30,102710,101460,100250,46.18,0,2.89,2.98,2.98,2.97,2.97,2.96,2.95,2.94,2.91,339.51,339.71,339.82,339.91,340,340.08,340.17,340.26,340.44,11.120000000000001,10.65,10.44,10.23,10.02,9.83,9.620000000000001,9.43,9.03,N/A,N/A -2012,1,14,0,30,102730,101490,100280,45.89,0,2.82,2.9,2.89,2.88,2.87,2.86,2.84,2.83,2.79,338.11,338.24,338.26,338.29,338.33,338.36,338.38,338.41,338.5,11.33,10.88,10.67,10.46,10.25,10.06,9.86,9.66,9.27,N/A,N/A -2012,1,14,1,30,102770,101520,100320,44.57,0,2.41,2.48,2.47,2.46,2.45,2.44,2.43,2.42,2.39,349.40000000000003,349.12,348.92,348.72,348.53000000000003,348.36,348.18,348.02,347.69,11.57,11.13,10.92,10.71,10.51,10.32,10.11,9.92,9.53,N/A,N/A -2012,1,14,2,30,102780,101540,100340,41.97,0,1.94,2.0100000000000002,2.02,2.02,2.02,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,352.34000000000003,351.85,351.54,351.25,350.99,350.76,350.51,350.29,349.88,11.83,11.4,11.200000000000001,10.99,10.78,10.6,10.39,10.200000000000001,9.8,N/A,N/A -2012,1,14,3,30,102790,101550,100350,40.9,0,2.17,2.22,2.22,2.2,2.19,2.18,2.17,2.15,2.13,352.81,352.69,352.67,352.65000000000003,352.63,352.62,352.6,352.58,352.53000000000003,12,11.57,11.370000000000001,11.16,10.950000000000001,10.77,10.56,10.370000000000001,9.97,N/A,N/A -2012,1,14,4,30,102790,101550,100350,41.300000000000004,0,1.75,1.79,1.78,1.77,1.76,1.75,1.74,1.73,1.71,350.16,349.33,348.76,348.21,347.69,347.24,346.74,346.28000000000003,345.31,12.13,11.71,11.5,11.3,11.09,10.91,10.700000000000001,10.51,10.120000000000001,N/A,N/A -2012,1,14,5,30,102790,101550,100350,47.25,0,1.4000000000000001,1.43,1.43,1.42,1.42,1.42,1.41,1.41,1.41,338.79,336.65000000000003,335.3,334.01,332.79,331.67,330.51,329.44,327.22,12.21,11.790000000000001,11.59,11.38,11.18,10.99,10.790000000000001,10.59,10.200000000000001,N/A,N/A -2012,1,14,6,30,102810,101570,100370,45.76,0,2.99,3.02,2.97,2.92,2.87,2.82,2.7600000000000002,2.72,2.62,300.86,300.38,300.09000000000003,299.81,299.54,299.29,299.04,298.79,298.26,12.39,11.97,11.78,11.57,11.36,11.18,10.97,10.78,10.39,N/A,N/A -2012,1,14,7,30,102840,101600,100400,45.83,0,3.4,3.48,3.45,3.42,3.38,3.35,3.31,3.27,3.18,302.17,301.46,300.97,300.51,300.06,299.64,299.16,298.71,297.73,12.14,11.71,11.5,11.3,11.1,10.91,10.71,10.52,10.13,N/A,N/A -2012,1,14,8,30,102850,101610,100400,45.4,0,3.77,3.86,3.85,3.81,3.77,3.73,3.69,3.64,3.5500000000000003,291.56,290.94,290.54,290.14,289.74,289.38,288.97,288.58,287.7,12.1,11.66,11.46,11.26,11.06,10.870000000000001,10.66,10.48,10.09,N/A,N/A -2012,1,14,9,30,102870,101620,100420,42.27,0,3.54,3.66,3.66,3.64,3.63,3.61,3.59,3.56,3.52,297.59000000000003,296.87,296.41,295.97,295.53000000000003,295.13,294.66,294.22,293.26,12.040000000000001,11.6,11.39,11.19,10.99,10.8,10.6,10.41,10.03,N/A,N/A -2012,1,14,10,30,102880,101640,100430,44.24,0,3.38,3.48,3.47,3.45,3.43,3.41,3.38,3.35,3.3000000000000003,285.64,284.87,284.35,283.85,283.35,282.90000000000003,282.36,281.86,280.75,12,11.56,11.36,11.16,10.96,10.77,10.57,10.38,9.99,N/A,N/A -2012,1,14,11,30,102910,101660,100460,44.62,0,3.43,3.52,3.52,3.5,3.47,3.45,3.42,3.4,3.34,290.61,289.55,288.85,288.16,287.48,286.85,286.12,285.44,283.93,11.97,11.53,11.33,11.13,10.93,10.74,10.540000000000001,10.35,9.97,N/A,N/A -2012,1,14,12,30,102940,101690,100490,44.22,0,3.2800000000000002,3.37,3.36,3.34,3.3200000000000003,3.3000000000000003,3.27,3.25,3.2,289.28000000000003,288.32,287.69,287.08,286.47,285.91,285.24,284.62,283.23,12,11.56,11.36,11.16,10.96,10.78,10.57,10.38,10,N/A,N/A -2012,1,14,13,30,102960,101710,100510,44.35,0,3.34,3.44,3.43,3.42,3.4,3.38,3.35,3.33,3.2800000000000002,291.44,290.56,289.97,289.39,288.81,288.28000000000003,287.66,287.08,285.8,12.11,11.67,11.47,11.27,11.07,10.88,10.68,10.49,10.11,N/A,N/A -2012,1,14,14,30,102990,101750,100540,44.47,0,3.61,3.73,3.73,3.72,3.7,3.68,3.66,3.63,3.58,287.18,286.3,285.73,285.16,284.59000000000003,284.06,283.46,282.89,281.61,12.22,11.78,11.58,11.38,11.18,11,10.790000000000001,10.61,10.22,N/A,N/A -2012,1,14,15,30,103010,101770,100560,43.67,0,3.41,3.52,3.52,3.5,3.48,3.46,3.44,3.42,3.37,282.26,281.26,280.6,279.98,279.34000000000003,278.76,278.11,277.49,276.12,12.35,11.92,11.72,11.52,11.32,11.13,10.93,10.74,10.36,N/A,N/A -2012,1,14,16,30,103000,101760,100560,43.46,0,3.0300000000000002,3.13,3.14,3.13,3.13,3.12,3.1,3.09,3.06,284.51,283.56,282.93,282.32,281.73,281.18,280.54,279.95,278.68,12.5,12.08,11.88,11.68,11.48,11.3,11.09,10.91,10.52,N/A,N/A -2012,1,14,17,30,102980,101740,100540,43.92,0,2.86,2.96,2.98,2.98,2.98,2.97,2.97,2.96,2.95,276.41,275.59000000000003,275.04,274.5,273.95,273.45,272.87,272.32,271.07,12.72,12.31,12.11,11.91,11.71,11.53,11.32,11.13,10.75,N/A,N/A -2012,1,14,18,30,102980,101740,100540,43.33,0,2.57,2.68,2.69,2.7,2.71,2.71,2.71,2.72,2.72,271.37,270.72,270.32,269.91,269.49,269.1,268.64,268.21,267.26,13.01,12.61,12.41,12.21,12.01,11.83,11.620000000000001,11.43,11.05,N/A,N/A -2012,1,14,19,30,102960,101730,100530,43.410000000000004,0,2.19,2.2800000000000002,2.3000000000000003,2.31,2.32,2.33,2.33,2.34,2.35,256.86,257.17,257.4,257.6,257.77,257.92,258.03000000000003,258.12,258.2,13.31,12.92,12.73,12.530000000000001,12.33,12.15,11.94,11.75,11.36,N/A,N/A -2012,1,14,20,30,102920,101680,100480,44.35,0,2.5500000000000003,2.67,2.69,2.71,2.72,2.73,2.74,2.75,2.7600000000000002,244.9,245.06,245.23000000000002,245.39000000000001,245.55,245.69,245.88,246.05,246.44,13.59,13.21,13.02,12.82,12.620000000000001,12.44,12.24,12.05,11.66,N/A,N/A -2012,1,14,21,30,102880,101650,100450,41.980000000000004,0,3.0700000000000003,3.2,3.22,3.23,3.23,3.23,3.23,3.23,3.23,226.89000000000001,227.43,227.75,228.06,228.37,228.67000000000002,229.02,229.37,230.23000000000002,13.91,13.540000000000001,13.35,13.15,12.96,12.780000000000001,12.57,12.39,12,N/A,N/A -2012,1,14,22,30,102860,101630,100430,44.39,0,3.02,3.14,3.15,3.16,3.15,3.15,3.14,3.13,3.1,207.98000000000002,208.48000000000002,208.83,209.16,209.52,209.85,210.24,210.61,211.53,14.15,13.790000000000001,13.6,13.41,13.21,13.030000000000001,12.83,12.64,12.26,N/A,N/A -2012,1,14,23,30,102840,101610,100420,43.85,0,3.2600000000000002,3.4,3.41,3.41,3.41,3.4,3.38,3.37,3.33,204.8,205.24,205.6,205.94,206.3,206.64000000000001,207.03,207.42000000000002,208.37,14.41,14.05,13.870000000000001,13.67,13.48,13.290000000000001,13.09,12.9,12.52,N/A,N/A -2012,1,15,0,30,102860,101630,100440,45.15,0,3.17,3.31,3.3200000000000003,3.33,3.33,3.3200000000000003,3.31,3.31,3.2800000000000002,206.29,206.83,207.18,207.52,207.85,208.16,208.51,208.85,209.66,14.6,14.25,14.07,13.88,13.68,13.5,13.290000000000001,13.11,12.72,N/A,N/A -2012,1,15,1,30,102870,101640,100440,45.83,0,3.31,3.48,3.52,3.5300000000000002,3.5500000000000003,3.56,3.56,3.56,3.5700000000000003,210.05,210.45000000000002,210.71,210.94,211.19,211.41,211.65,211.88,212.41,14.83,14.48,14.3,14.11,13.91,13.73,13.52,13.33,12.950000000000001,N/A,N/A -2012,1,15,2,30,102870,101640,100450,45.88,0,3.18,3.36,3.4,3.43,3.45,3.46,3.47,3.48,3.5,214.99,215.45000000000002,215.69,215.92000000000002,216.13,216.32,216.54,216.73000000000002,217.18,15.040000000000001,14.71,14.530000000000001,14.34,14.14,13.950000000000001,13.75,13.56,13.17,N/A,N/A -2012,1,15,3,30,102870,101650,100460,48.68,0,3.3200000000000003,3.49,3.5300000000000002,3.5500000000000003,3.56,3.58,3.58,3.59,3.59,212.98000000000002,213.28,213.45000000000002,213.6,213.75,213.87,214.01,214.14000000000001,214.42000000000002,15.18,14.85,14.67,14.48,14.280000000000001,14.09,13.89,13.700000000000001,13.31,N/A,N/A -2012,1,15,4,30,102870,101650,100460,52.56,0,3.6,3.8000000000000003,3.84,3.87,3.88,3.89,3.9,3.9,3.91,212.73000000000002,212.97,213.13,213.28,213.42000000000002,213.55,213.67000000000002,213.79,214.03,15.21,14.88,14.700000000000001,14.5,14.31,14.120000000000001,13.92,13.73,13.34,N/A,N/A -2012,1,15,5,30,102870,101640,100450,58.64,0,3.86,4.08,4.13,4.16,4.17,4.18,4.19,4.19,4.19,211.11,211.43,211.64000000000001,211.83,212.02,212.19,212.36,212.53,212.87,15.15,14.82,14.63,14.44,14.24,14.06,13.85,13.66,13.27,N/A,N/A -2012,1,15,6,30,102880,101660,100470,63.86,0,4,4.24,4.29,4.32,4.33,4.34,4.34,4.34,4.34,208.88,209.28,209.5,209.70000000000002,209.88,210.06,210.25,210.42000000000002,210.76,15.11,14.780000000000001,14.6,14.41,14.21,14.02,13.82,13.63,13.24,N/A,N/A -2012,1,15,7,30,102900,101670,100480,64.88,0,4.0200000000000005,4.25,4.3,4.33,4.34,4.3500000000000005,4.3500000000000005,4.36,4.36,206.69,207.09,207.3,207.49,207.67000000000002,207.83,208.02,208.18,208.53,15.1,14.76,14.58,14.39,14.19,14.01,13.8,13.620000000000001,13.22,N/A,N/A -2012,1,15,8,30,102880,101650,100460,66.73,0,3.8200000000000003,4.05,4.09,4.11,4.13,4.13,4.14,4.14,4.14,201.89000000000001,202.55,202.95000000000002,203.32,203.67000000000002,203.98000000000002,204.32,204.64000000000001,205.31,15.11,14.780000000000001,14.6,14.41,14.21,14.02,13.82,13.63,13.24,N/A,N/A -2012,1,15,9,30,102880,101650,100460,69.24,0,3.65,3.87,3.92,3.95,3.96,3.98,3.99,3.99,4,196.24,196.67000000000002,196.96,197.22,197.47,197.71,197.96,198.20000000000002,198.68,15.14,14.81,14.63,14.44,14.24,14.05,13.85,13.66,13.27,N/A,N/A -2012,1,15,10,30,102870,101650,100460,71.13,0,3.7800000000000002,4,4.04,4.07,4.07,4.08,4.08,4.08,4.08,185.92000000000002,186.62,187.03,187.41,187.78,188.11,188.47,188.79,189.48,15.14,14.82,14.63,14.44,14.24,14.06,13.85,13.66,13.27,N/A,N/A -2012,1,15,11,30,102870,101650,100460,70.95,0,3.89,4.13,4.18,4.2,4.21,4.22,4.23,4.23,4.23,177.37,177.9,178.22,178.5,178.76,179,179.24,179.46,179.89000000000001,15.19,14.86,14.68,14.49,14.290000000000001,14.11,13.9,13.71,13.32,N/A,N/A -2012,1,15,12,30,102880,101660,100470,71.2,0,3.86,4.12,4.18,4.22,4.25,4.28,4.3,4.32,4.3500000000000005,170.26,170.53,170.74,170.93,171.11,171.27,171.44,171.6,171.94,15.290000000000001,14.96,14.790000000000001,14.59,14.39,14.21,14.01,13.82,13.43,N/A,N/A -2012,1,15,13,30,102890,101660,100470,73.53,0,4.25,4.55,4.63,4.67,4.7,4.73,4.75,4.76,4.79,156.1,156.55,156.86,157.14000000000001,157.41,157.65,157.92000000000002,158.16,158.66,15.35,15.030000000000001,14.85,14.65,14.450000000000001,14.27,14.07,13.88,13.49,N/A,N/A -2012,1,15,14,30,102910,101680,100500,75.61,0,4.7700000000000005,5.15,5.25,5.3100000000000005,5.3500000000000005,5.39,5.41,5.44,5.48,154.26,154.77,155.1,155.41,155.71,155.97,156.25,156.5,157.03,15.55,15.24,15.06,14.86,14.67,14.49,14.280000000000001,14.09,13.71,N/A,N/A -2012,1,15,15,30,102900,101680,100490,78.63,0,5.09,5.54,5.66,5.74,5.8,5.8500000000000005,5.88,5.92,5.98,146.27,146.95000000000002,147.38,147.77,148.14000000000001,148.48,148.85,149.18,149.89000000000001,15.780000000000001,15.48,15.3,15.11,14.92,14.74,14.540000000000001,14.35,13.96,N/A,N/A -2012,1,15,16,30,102880,101660,100470,80.11,0,5.48,6.0200000000000005,6.18,6.28,6.3500000000000005,6.41,6.47,6.51,6.59,146.05,146.55,146.85,147.13,147.4,147.63,147.88,148.1,148.56,16.1,15.82,15.65,15.46,15.27,15.09,14.89,14.700000000000001,14.31,N/A,N/A -2012,1,15,17,30,102850,101630,100450,79.93,0,5.82,6.390000000000001,6.54,6.63,6.7,6.74,6.78,6.8,6.83,147.73,148.20000000000002,148.51,148.8,149.09,149.34,149.61,149.86,150.41,16.39,16.13,15.97,15.790000000000001,15.6,15.42,15.22,15.040000000000001,14.66,N/A,N/A -2012,1,15,18,30,102820,101610,100430,79.83,0,5.55,6.16,6.34,6.48,6.59,6.7,6.8100000000000005,6.91,7.09,146.14000000000001,146.37,146.57,146.79,147.01,147.22,147.59,147.97,149.05,16.59,16.37,16.22,16.03,15.860000000000001,15.700000000000001,15.51,15.34,14.97,N/A,N/A -2012,1,15,19,30,102790,101580,100400,79.56,0,5.54,6.25,6.5200000000000005,6.74,6.93,7.1000000000000005,7.25,7.390000000000001,7.61,142.57,142.74,143.02,143.46,144,144.56,145.27,145.96,147.57,16.77,16.56,16.43,16.26,16.1,15.94,15.76,15.59,15.23,N/A,N/A -2012,1,15,20,30,102740,101520,100350,81.72,0,5.92,6.67,6.93,7.140000000000001,7.3100000000000005,7.45,7.57,7.68,7.88,138.94,139.63,140.17000000000002,140.8,141.46,142.11,142.85,143.54,145,16.830000000000002,16.64,16.51,16.35,16.19,16.03,15.860000000000001,15.700000000000001,15.36,N/A,N/A -2012,1,15,21,30,102670,101460,100290,83.44,0,5.93,6.84,7.17,7.46,7.71,7.930000000000001,8.13,8.32,8.68,136.73,137.62,138.31,139.14000000000001,140.04,140.94,141.96,142.92000000000002,144.94,16.89,16.740000000000002,16.63,16.5,16.36,16.22,16.080000000000002,15.94,15.64,N/A,N/A -2012,1,15,22,30,102610,101390,100220,85.08,0,6.390000000000001,7.44,7.86,8.26,8.61,8.94,9.23,9.5,9.92,135.75,136.53,137.14000000000001,137.92000000000002,138.78,139.67000000000002,140.65,141.57,143.47,16.92,16.8,16.7,16.59,16.48,16.37,16.240000000000002,16.12,15.860000000000001,N/A,N/A -2012,1,15,23,30,102570,101360,100190,87.21000000000001,0,6.3,7.42,7.9,8.34,8.76,9.15,9.540000000000001,9.89,10.52,139.51,140.46,141.21,142.13,143.14000000000001,144.16,145.31,146.4,148.48,17.06,16.98,16.91,16.81,16.72,16.63,16.53,16.44,16.23,N/A,N/A -2012,1,16,0,30,102560,101350,100180,87.23,0,6.8500000000000005,8.15,8.68,9.18,9.63,10.03,10.43,10.8,11.53,144.91,145.37,145.8,146.41,147.17000000000002,147.98,149.12,150.25,152.92000000000002,17.31,17.29,17.240000000000002,17.16,17.09,17.01,16.93,16.85,16.67,N/A,N/A -2012,1,16,1,30,102510,101300,100130,87.76,0,7.08,8.59,9.26,9.91,10.49,11.02,11.48,11.89,12.56,151.89000000000001,152.71,153.33,154.03,154.78,155.53,156.28,156.95000000000002,157.91,17.48,17.52,17.51,17.490000000000002,17.46,17.43,17.37,17.31,17.11,N/A,N/A -2012,1,16,2,30,102500,101300,100130,89.29,0,6.49,8.040000000000001,8.74,9.44,10.08,10.69,11.24,11.73,12.41,153.66,154.54,155.22,156.07,156.88,157.68,158.36,158.98,159.82,17.57,17.650000000000002,17.650000000000002,17.650000000000002,17.63,17.61,17.57,17.53,17.34,N/A,N/A -2012,1,16,3,30,102470,101270,100100,89.9,0,6.41,8,8.73,9.47,10.13,10.75,11.31,11.82,12.74,152.6,154.02,155.02,156.15,157.13,158,158.66,159.23,159.99,17.62,17.73,17.75,17.76,17.75,17.740000000000002,17.69,17.64,17.490000000000002,N/A,N/A -2012,1,16,4,30,102450,101250,100090,90.86,0,6.73,8.44,9.24,10.03,10.75,11.41,12,12.530000000000001,13.4,160.56,161.11,161.55,162.12,162.71,163.31,163.87,164.37,165.37,17.69,17.830000000000002,17.87,17.900000000000002,17.92,17.92,17.89,17.86,17.7,N/A,N/A -2012,1,16,5,30,102440,101230,100070,90.89,0,7.15,8.94,9.77,10.61,11.370000000000001,12.08,12.75,13.38,14.36,161.52,162.56,163.31,164.18,164.99,165.76,166.4,166.95000000000002,167.52,17.84,18.01,18.06,18.1,18.13,18.14,18.14,18.14,18.04,N/A,N/A -2012,1,16,6,30,102430,101230,100070,91.64,0,6.6000000000000005,8.42,9.28,10.16,10.950000000000001,11.69,12.290000000000001,12.81,13.56,164.94,165.59,166.1,166.65,167.21,167.77,168.3,168.79,169.86,17.79,17.990000000000002,18.07,18.14,18.2,18.25,18.27,18.27,18.13,N/A,N/A -2012,1,16,7,30,102430,101230,100070,92.11,0,6.33,8.15,9.05,9.97,10.8,11.57,12.27,12.92,14.08,162.03,163.36,164.41,165.73,166.94,168.07,169.01,169.86,171.07,17.69,17.96,18.080000000000002,18.2,18.29,18.36,18.37,18.37,18.3,N/A,N/A -2012,1,16,8,30,102400,101190,100040,92.28,0,6.13,7.9,8.77,9.700000000000001,10.540000000000001,11.33,12.08,12.780000000000001,13.73,161.34,162.56,163.64000000000001,165.11,166.76,168.52,170.03,171.36,172.56,17.66,17.92,18.05,18.19,18.34,18.48,18.55,18.6,18.490000000000002,N/A,N/A -2012,1,16,9,30,102370,101170,100010,92.41,0,5.96,7.83,8.77,9.78,10.69,11.540000000000001,12.290000000000001,12.97,14.11,160.62,162.48,164,165.97,167.88,169.75,171.47,173.05,175.34,17.63,17.95,18.11,18.3,18.45,18.580000000000002,18.64,18.67,18.68,N/A,N/A -2012,1,16,10,30,102340,101140,99980,92.46000000000001,0,6.04,7.890000000000001,8.84,9.9,10.97,12.040000000000001,12.97,13.790000000000001,14.23,159.48,161.08,162.47,164.33,166.33,168.41,171.08,173.65,175.72,17.63,17.92,18.07,18.26,18.48,18.7,18.88,19.02,18.94,N/A,N/A -2012,1,16,11,30,102310,101110,99960,92.03,0,6.36,8.26,9.16,10.11,11.07,12.030000000000001,12.98,13.870000000000001,15.08,157.37,159.28,160.71,162.3,163.88,165.44,167.1,168.71,172.08,17.72,18.03,18.18,18.32,18.48,18.650000000000002,18.79,18.900000000000002,18.88,N/A,N/A -2012,1,16,12,30,102310,101110,99950,91.18,0,7.13,9.19,10.200000000000001,11.24,12.21,13.120000000000001,13.93,14.65,15.530000000000001,160.76,162.04,162.98,164.08,165.29,166.57,168.11,169.61,172.92000000000002,17.91,18.22,18.36,18.5,18.62,18.73,18.82,18.900000000000002,18.89,N/A,N/A -2012,1,16,13,30,102290,101090,99940,90.98,0,7.54,9.56,10.5,11.450000000000001,12.31,13.11,13.85,14.52,15.44,161.09,162.18,163.12,164.47,165.97,167.55,169.18,170.71,173.68,17.95,18.26,18.41,18.57,18.71,18.84,18.94,19.01,18.97,N/A,N/A -2012,1,16,14,30,102300,101100,99940,91.9,0,6.84,8.790000000000001,9.72,10.73,11.69,12.620000000000001,13.48,14.26,15.35,158.75,160.68,162.21,164.20000000000002,165.95000000000002,167.56,168.99,170.32,173.46,17.79,18.06,18.21,18.39,18.56,18.71,18.830000000000002,18.92,18.93,N/A,N/A -2012,1,16,15,30,102290,101090,99930,91.22,0,7.22,9.17,10.07,10.97,11.82,12.620000000000001,13.370000000000001,14.06,15.32,162.32,163.49,164.43,165.56,166.81,168.11,169.5,170.83,173.5,17.97,18.240000000000002,18.34,18.44,18.54,18.64,18.73,18.8,18.85,N/A,N/A -2012,1,16,16,30,102270,101070,99920,91.28,0,7.3100000000000005,9.3,10.24,11.200000000000001,12.08,12.92,13.700000000000001,14.42,15.73,165.07,166.22,167.16,168.43,169.73,171.07,172.31,173.46,175.70000000000002,18.01,18.31,18.45,18.6,18.73,18.85,18.91,18.96,18.97,N/A,N/A -2012,1,16,17,30,102230,101030,99880,92.17,0,6.76,8.5,9.290000000000001,10.120000000000001,10.950000000000001,11.78,12.67,13.530000000000001,15.06,162.26,164.18,165.71,167.67000000000002,169.49,171.23,172.70000000000002,174.03,176.09,17.89,18.09,18.16,18.22,18.3,18.38,18.48,18.57,18.66,N/A,N/A -2012,1,16,18,30,102190,101000,99840,91.24,0,7.1000000000000005,9.02,9.92,10.82,11.66,12.48,13.280000000000001,14.040000000000001,15.36,168.36,169.36,170.22,171.34,172.45000000000002,173.56,174.57,175.5,177.12,18.12,18.400000000000002,18.52,18.62,18.72,18.8,18.87,18.92,18.92,N/A,N/A -2012,1,16,19,30,102150,100960,99810,90.46000000000001,0,7.38,9.450000000000001,10.43,11.44,12.41,13.35,14.3,15.19,16.48,170.85,171.8,172.47,173.27,174.06,174.84,175.58,176.28,177.82,18.25,18.54,18.67,18.79,18.92,19.04,19.16,19.26,19.32,N/A,N/A -2012,1,16,20,30,102110,100910,99760,90.72,0,6.97,8.98,9.93,10.870000000000001,11.700000000000001,12.450000000000001,13.07,13.63,14.73,166.89000000000001,167.56,168.24,169.20000000000002,170.25,171.36,172.58,173.74,176.51,18.16,18.490000000000002,18.62,18.73,18.830000000000002,18.900000000000002,18.91,18.91,18.84,N/A,N/A -2012,1,16,21,30,102050,100860,99700,90.87,0,6.7700000000000005,8.77,9.75,10.76,11.700000000000001,12.61,13.43,14.18,15.42,170.39000000000001,171.62,172.61,173.76,174.89000000000001,175.99,177.18,178.31,180.64000000000001,18.080000000000002,18.36,18.5,18.650000000000002,18.79,18.92,19.01,19.09,19.11,N/A,N/A -2012,1,16,22,30,102010,100820,99660,90.71000000000001,0,7.2700000000000005,9.31,10.24,11.17,12.01,12.790000000000001,13.540000000000001,14.24,15.56,167.44,168.52,169.41,170.58,171.86,173.19,174.58,175.9,178.65,18.07,18.400000000000002,18.55,18.71,18.81,18.89,18.94,18.990000000000002,19.02,N/A,N/A -2012,1,16,23,30,101970,100770,99620,91.44,0,7.78,9.84,10.81,11.870000000000001,12.82,13.71,14.49,15.19,16.240000000000002,167.78,169.06,170.06,171.38,172.72,174.08,175.46,176.76,179.34,17.89,18.1,18.27,18.63,18.87,19.03,19.12,19.19,19.150000000000002,N/A,N/A -2012,1,17,0,30,101950,100750,99600,91.66,0,7.57,9.53,10.49,11.48,12.46,13.47,14.48,15.44,16.96,165.65,167.01,168.08,169.49,170.95000000000002,172.49,174.02,175.47,178.39000000000001,17.82,17.89,17.94,18.1,18.31,18.57,18.79,18.98,19.2,N/A,N/A -2012,1,17,1,30,101910,100720,99570,91.10000000000001,0,8.620000000000001,10.65,11.620000000000001,12.620000000000001,13.540000000000001,14.4,15.200000000000001,15.91,17.06,169.07,170.05,170.8,171.81,172.88,173.97,175.13,176.23,178.22,17.92,18,18.05,18.21,18.400000000000002,18.62,18.75,18.85,18.81,N/A,N/A -2012,1,17,2,30,101910,100720,99560,91.11,0,8.32,10.35,11.33,12.39,13.33,14.200000000000001,14.94,15.6,16.64,167.79,168.52,169.19,170.23,171.29,172.4,173.62,174.78,179.14000000000001,17.94,18.07,18.16,18.41,18.61,18.8,18.91,18.990000000000002,19.2,N/A,N/A -2012,1,17,3,30,101890,100700,99540,91.25,0,7.28,9.32,10.290000000000001,11.33,12.32,13.27,14.16,14.97,16.12,161.97,164.12,165.78,167.83,169.74,171.57,173.22,174.73,177.23,17.93,18.03,18.04,18.04,18.16,18.35,18.54,18.72,18.81,N/A,N/A -2012,1,17,4,30,101880,100680,99530,91.14,0,7.5200000000000005,9.5,10.46,11.47,12.41,13.290000000000001,14.21,15.09,16.48,168.98,170.34,171.33,172.53,173.72,174.89000000000001,176.14000000000001,177.35,179.27,17.93,18.03,18.01,17.96,18.03,18.14,18.36,18.580000000000002,18.71,N/A,N/A -2012,1,17,5,30,101850,100660,99510,90.33,0,8.69,10.82,11.82,12.82,13.75,14.63,15.46,16.23,17.490000000000002,172.89000000000001,173.77,174.5,175.42000000000002,176.34,177.29,178.28,179.21,181.02,18.12,18.3,18.39,18.56,18.71,18.830000000000002,18.900000000000002,18.94,18.990000000000002,N/A,N/A -2012,1,17,6,30,101840,100650,99490,92.08,0,8.8,10.72,11.6,12.52,13.38,14.21,15.040000000000001,15.84,17.19,176.36,176.91,177.37,177.95000000000002,178.51,179.06,179.62,180.14000000000001,181.20000000000002,18.29,18.36,18.35,18.34,18.39,18.490000000000002,18.650000000000002,18.82,18.89,N/A,N/A -2012,1,17,7,30,101840,100650,99500,91.11,0,8.56,10.57,11.46,12.34,13.16,13.93,14.67,15.370000000000001,16.62,181.3,181.57,181.8,182.09,182.42000000000002,182.77,183.20000000000002,183.63,184.59,18.52,18.740000000000002,18.8,18.84,18.86,18.87,18.87,18.86,18.79,N/A,N/A -2012,1,17,8,30,101820,100630,99490,90.33,0,7.82,9.93,10.93,11.870000000000001,12.68,13.41,14.06,14.63,15.610000000000001,181.73,182.89000000000001,183.74,184.57,185.3,185.95000000000002,186.53,187.05,187.88,18.69,18.98,19.080000000000002,19.14,19.17,19.18,19.150000000000002,19.11,18.94,N/A,N/A -2012,1,17,9,30,101820,100630,99480,90.38,0,6.2,8.28,9.290000000000001,10.28,11.19,12.030000000000001,12.81,13.540000000000001,14.85,178.53,179.87,180.84,181.76,182.61,183.4,184.15,184.85,186.22,18.740000000000002,18.96,19.01,19.04,19.06,19.07,19.06,19.04,18.97,N/A,N/A -2012,1,17,10,30,101830,100640,99490,91.02,0,6,7.99,8.98,9.950000000000001,10.82,11.63,12.38,13.07,14.36,181.36,182.59,183.51,184.43,185.27,186.06,186.83,187.56,189.20000000000002,18.59,18.79,18.84,18.85,18.900000000000002,18.96,19.01,19.06,19.03,N/A,N/A -2012,1,17,11,30,101830,100650,99500,90.3,0,6.71,8.84,9.81,10.76,11.6,12.36,13.09,13.77,15.44,183.94,185.42000000000002,186.47,187.69,188.81,189.84,190.79,191.66,194.15,18.76,19.03,19.12,19.21,19.27,19.31,19.330000000000002,19.35,19.330000000000002,N/A,N/A -2012,1,17,12,30,101860,100670,99530,90.10000000000001,0,6.01,8.21,9.290000000000001,10.32,11.22,12.05,12.84,13.59,15,185.45000000000002,187,188.26,190,191.89000000000001,193.95000000000002,196.25,198.52,202.78,18.830000000000002,19.2,19.330000000000002,19.42,19.51,19.59,19.64,19.66,19.61,N/A,N/A -2012,1,17,13,30,101830,100640,99500,89.47,0,6.8,9.05,10.16,11.31,12.36,13.370000000000001,14.36,15.31,16.65,179.96,182.89000000000001,185.17000000000002,187.85,190.13,192.16,193.92000000000002,195.52,197.95000000000002,18.95,19.31,19.47,19.71,19.93,20.16,20.26,20.31,20.28,N/A,N/A -2012,1,17,14,30,101890,100700,99550,90.15,0,5.8100000000000005,7.8100000000000005,8.77,9.71,10.61,11.49,12.41,13.3,14.91,178.02,181.15,183.59,186.37,188.9,191.34,193.4,195.27,198.33,18.830000000000002,19.1,19.17,19.26,19.36,19.45,19.57,19.69,19.77,N/A,N/A -2012,1,17,15,30,101970,100780,99640,93.55,0,2.5,4.62,5.98,7.8500000000000005,9.19,9.99,10.64,11.22,12.21,165.84,176.79,185.22,192.9,197.84,200.09,201.8,203.25,205.83,18.45,18.97,19.21,19.52,19.79,20.02,20.18,20.3,20.31,N/A,N/A -2012,1,17,16,30,101950,100770,99620,91.42,0,4.96,7.4,8.84,10.43,11.450000000000001,11.97,12.31,12.57,13.06,174.73,186.02,194.03,200.06,203.64000000000001,205.02,205.88,206.52,207.96,18.650000000000002,19.23,19.580000000000002,20.05,20.34,20.490000000000002,20.51,20.48,20.330000000000002,N/A,N/A -2012,1,17,17,30,101960,100770,99620,92.11,0,3.96,6.25,7.5,8.81,9.9,10.81,11.34,11.72,12.280000000000001,179.6,190.37,197.86,203.03,206.46,208.47,209.63,210.43,211.79,18.650000000000002,19.07,19.26,19.51,19.77,20.04,20.16,20.23,20.16,N/A,N/A -2012,1,17,18,30,101950,100760,99620,92.61,4.800000000000001,3.86,5.78,6.76,7.79,8.45,8.76,9.05,9.32,9.8,184.36,197.06,206.15,213.21,217.25,218.37,219.12,219.71,220.35,18.59,19.13,19.400000000000002,19.71,19.88,19.94,19.96,19.97,19.900000000000002,N/A,N/A -2012,1,17,19,30,101910,100720,99580,92.4,0,4.29,5.88,6.62,7.5200000000000005,8.11,8.44,8.8,9.15,9.82,187.53,199.44,208.38,217.17000000000002,222.28,224.43,226.36,228.11,230.78,18.61,19.240000000000002,19.56,19.86,20.05,20.16,20.240000000000002,20.31,20.36,N/A,N/A -2012,1,17,20,30,101870,100690,99550,91.7,2.6,4.38,6.78,7.890000000000001,8.48,8.81,8.950000000000001,9.13,9.31,9.66,206.85,216.24,222.43,226.22,228.65,230.03,230.86,231.45000000000002,231.34,18.8,19.44,19.84,20.47,20.79,20.89,20.91,20.900000000000002,20.77,N/A,N/A -2012,1,17,21,30,101860,100670,99530,90.68,0,5.05,6.890000000000001,7.62,8.1,8.42,8.61,8.790000000000001,8.96,9.23,200.23000000000002,209.19,215.66,221.31,224.87,226.89000000000001,228.21,229.24,230.66,18.900000000000002,19.13,19.400000000000002,20.19,20.63,20.830000000000002,20.86,20.84,20.64,N/A,N/A -2012,1,17,22,30,101870,100680,99540,90.99,0,5.29,7.140000000000001,7.82,8.06,8.21,8.3,8.45,8.61,8.92,207.94,215.72,221.12,226.17000000000002,229.42000000000002,231.39000000000001,232.71,233.73000000000002,234.49,18.72,18.82,19.11,20.22,20.78,20.96,20.97,20.92,20.73,N/A,N/A -2012,1,17,23,30,101880,100690,99550,91.51,0.4,5.33,7.1000000000000005,7.82,8.27,8.48,8.52,8.540000000000001,8.55,8.8,202.62,211.42000000000002,217.87,224.39000000000001,228.16,229.85,230.21,230.13,229.06,18.54,18.580000000000002,18.830000000000002,19.900000000000002,20.72,21.37,21.39,21.2,20.900000000000002,N/A,N/A -2012,1,18,0,30,101980,100780,99630,92.59,0.4,3.2800000000000002,4.68,5.08,5.61,6.1000000000000005,6.5600000000000005,6.94,7.2700000000000005,7.72,287.94,279.25,273.84000000000003,271.65,271.17,271.96,272.86,273.76,273.85,18.68,18.62,18.45,18.330000000000002,18.28,18.27,18.29,18.330000000000002,18.42,N/A,N/A -2012,1,18,1,30,102010,100820,99660,92.23,4.4,6.3,7.8,8.09,7.88,7.79,7.76,7.68,7.61,7.44,335.8,338.24,339.83,341.62,342.97,344.05,345.03000000000003,345.90000000000003,348.51,18.330000000000002,18.7,18.8,18.78,18.71,18.61,18.490000000000002,18.37,18.150000000000002,N/A,N/A -2012,1,18,2,30,102090,100900,99730,92.78,3.7,5.87,7.65,8.48,9.15,9.620000000000001,9.950000000000001,10.120000000000001,10.24,10.38,12.17,17.490000000000002,20.900000000000002,23.41,24.6,24.810000000000002,24.2,23.46,21.35,18.18,18.47,18.5,18.330000000000002,18.17,18.01,17.88,17.75,17.54,N/A,N/A -2012,1,18,3,30,102150,100950,99780,88.95,14.3,8.52,10.05,10.72,11.31,11.790000000000001,12.19,12.4,12.51,11.91,0.47000000000000003,0.1,359.92,359.91,0.05,0.3,1.12,2.0300000000000002,5.25,17.31,17.12,16.97,16.78,16.59,16.38,16.18,16,15.74,N/A,N/A -2012,1,18,4,30,102220,101000,99820,67.98,0,13.59,14.94,15.280000000000001,15.450000000000001,15.540000000000001,15.6,15.620000000000001,15.63,15.65,15.8,15.97,16.11,16.27,16.45,16.62,16.85,17.09,17.72,15.530000000000001,15.14,14.950000000000001,14.75,14.56,14.38,14.18,14,13.620000000000001,N/A,N/A -2012,1,18,5,30,102280,101050,99870,69.41,0,12.38,13.57,13.88,14.05,14.16,14.24,14.280000000000001,14.32,14.370000000000001,20.81,21.11,21.3,21.490000000000002,21.68,21.85,22.04,22.22,22.62,14.57,14.11,13.9,13.69,13.48,13.290000000000001,13.08,12.9,12.51,N/A,N/A -2012,1,18,6,30,102330,101100,99910,68.65,0,13.32,14.61,14.94,15.120000000000001,15.24,15.32,15.370000000000001,15.41,15.450000000000001,26.75,27.02,27.19,27.36,27.52,27.68,27.86,28.03,28.43,13.48,12.91,12.68,12.47,12.25,12.06,11.85,11.66,11.28,N/A,N/A -2012,1,18,7,30,102390,101160,99960,70.46000000000001,0,12.780000000000001,13.94,14.24,14.4,14.49,14.55,14.58,14.61,14.620000000000001,29.7,30.04,30.26,30.47,30.66,30.85,31.05,31.25,31.67,12.700000000000001,12.1,11.85,11.63,11.42,11.22,11.02,10.83,10.44,N/A,N/A -2012,1,18,8,30,102410,101180,99980,71.5,0,12.75,13.88,14.16,14.31,14.39,14.44,14.47,14.48,14.47,31.86,32.17,32.37,32.56,32.75,32.92,33.12,33.3,33.7,12.05,11.4,11.16,10.93,10.71,10.52,10.31,10.120000000000001,9.74,N/A,N/A -2012,1,18,9,30,102440,101210,100000,72.12,0,12.41,13.47,13.73,13.86,13.93,13.97,13.99,14,13.98,34.72,35.04,35.25,35.44,35.64,35.81,36,36.18,36.59,11.52,10.84,10.59,10.370000000000001,10.15,9.96,9.75,9.56,9.17,N/A,N/A -2012,1,18,10,30,102450,101220,100010,73.07000000000001,0,11.91,12.9,13.14,13.25,13.32,13.35,13.370000000000001,13.370000000000001,13.35,38.07,38.410000000000004,38.63,38.83,39.04,39.230000000000004,39.44,39.63,40.06,11.15,10.47,10.22,9.99,9.77,9.58,9.370000000000001,9.18,8.8,N/A,N/A -2012,1,18,11,30,102490,101250,100050,74.56,0,11.450000000000001,12.36,12.58,12.68,12.74,12.77,12.780000000000001,12.780000000000001,12.76,41.08,41.5,41.78,42.03,42.29,42.52,42.78,43.03,43.56,10.97,10.290000000000001,10.040000000000001,9.82,9.6,9.41,9.200000000000001,9.01,8.63,N/A,N/A -2012,1,18,12,30,102520,101280,100070,75.31,0,11.06,11.94,12.16,12.280000000000001,12.34,12.39,12.41,12.42,12.42,45.03,45.46,45.730000000000004,45.980000000000004,46.230000000000004,46.44,46.68,46.9,47.35,11.120000000000001,10.46,10.21,9.99,9.77,9.58,9.370000000000001,9.18,8.8,N/A,N/A -2012,1,18,13,30,102530,101290,100090,72.55,0,11.01,11.86,12.07,12.16,12.21,12.24,12.24,12.24,12.21,50.7,50.86,50.95,51.03,51.120000000000005,51.19,51.28,51.36,51.53,11.03,10.36,10.11,9.88,9.67,9.47,9.26,9.07,8.69,N/A,N/A -2012,1,18,14,30,102550,101310,100100,74.41,0,9.85,10.540000000000001,10.700000000000001,10.77,10.8,10.82,10.81,10.8,10.76,54.04,54.31,54.480000000000004,54.65,54.81,54.96,55.13,55.28,55.65,10.91,10.26,10.01,9.790000000000001,9.58,9.39,9.18,8.99,8.6,N/A,N/A -2012,1,18,15,30,102540,101300,100100,76.31,0,8.99,9.6,9.74,9.81,9.84,9.86,9.86,9.85,9.83,55.92,56.27,56.5,56.72,56.93,57.120000000000005,57.34,57.54,57.99,11.1,10.49,10.26,10.040000000000001,9.83,9.63,9.43,9.24,8.85,N/A,N/A -2012,1,18,16,30,102520,101280,100080,75.35000000000001,0,8.22,8.74,8.870000000000001,8.92,8.94,8.96,8.950000000000001,8.950000000000001,8.92,59.160000000000004,59.5,59.730000000000004,59.95,60.17,60.36,60.57,60.77,61.21,11.5,10.92,10.69,10.47,10.26,10.07,9.870000000000001,9.68,9.290000000000001,N/A,N/A -2012,1,18,17,30,102480,101240,100040,75.33,0,7.19,7.6000000000000005,7.68,7.71,7.72,7.72,7.7,7.69,7.640000000000001,52.96,53.36,53.65,53.93,54.2,54.45,54.730000000000004,54.99,55.58,11.620000000000001,11.08,10.86,10.64,10.44,10.25,10.040000000000001,9.85,9.47,N/A,N/A -2012,1,18,18,30,102450,101210,100010,72.43,0,5.73,6.01,6.05,6.0600000000000005,6.0600000000000005,6.05,6.03,6.0200000000000005,5.97,53,53.46,53.78,54.09,54.39,54.68,55,55.31,56,11.81,11.3,11.09,10.88,10.68,10.49,10.290000000000001,10.1,9.72,N/A,N/A -2012,1,18,19,30,102420,101190,99990,69.98,0,4.55,4.74,4.7700000000000005,4.78,4.7700000000000005,4.7700000000000005,4.75,4.74,4.71,44.28,44.79,45.17,45.52,45.87,46.19,46.56,46.910000000000004,47.71,12.030000000000001,11.56,11.35,11.14,10.94,10.76,10.55,10.370000000000001,9.98,N/A,N/A -2012,1,18,20,30,102360,101120,99930,67.7,0,3.12,3.23,3.23,3.23,3.21,3.2,3.19,3.17,3.14,41.58,42.08,42.49,42.89,43.29,43.67,44.13,44.57,45.68,12.32,11.89,11.68,11.48,11.28,11.1,10.9,10.71,10.33,N/A,N/A -2012,1,18,21,30,102320,101100,99900,59.82,0,3.67,3.84,3.87,3.89,3.9,3.9,3.91,3.91,3.91,39.6,39.45,39.32,39.2,39.09,39,38.89,38.79,38.59,12.94,12.51,12.31,12.11,11.91,11.72,11.52,11.34,10.950000000000001,N/A,N/A -2012,1,18,22,30,102260,101030,99840,61.01,0,2.17,2.25,2.25,2.25,2.25,2.24,2.24,2.24,2.23,32.67,33,33.34,33.67,34,34.300000000000004,34.64,34.97,35.730000000000004,13.19,12.790000000000001,12.6,12.4,12.200000000000001,12.02,11.82,11.63,11.25,N/A,N/A -2012,1,18,23,30,102230,101000,99810,61.54,0,0.12,0.13,0.14,0.15,0.15,0.16,0.16,0.16,0.17,104.14,119.48,119.69,119.89,119.9,119.83,119.85000000000001,119.69,117.73,13.42,13.040000000000001,12.85,12.65,12.46,12.27,12.07,11.89,11.5,N/A,N/A -2012,1,19,0,30,102250,101030,99840,63.870000000000005,0,2.91,3.0100000000000002,3.02,3.0100000000000002,3.0100000000000002,3,2.99,2.98,2.96,31.36,31.43,31.48,31.52,31.55,31.580000000000002,31.62,31.66,31.75,13.69,13.3,13.11,12.9,12.71,12.52,12.32,12.13,11.74,N/A,N/A -2012,1,19,1,30,102200,100980,99790,64.14,0,1.67,1.74,1.75,1.75,1.75,1.75,1.76,1.76,1.76,79.91,79.44,79.85000000000001,80.2,80.53,80.82000000000001,81.14,81.44,82.14,13.88,13.5,13.32,13.120000000000001,12.92,12.74,12.540000000000001,12.35,11.96,N/A,N/A -2012,1,19,2,30,102160,100940,99750,64.45,0,1.79,1.85,1.86,1.86,1.86,1.86,1.86,1.85,1.85,91.82000000000001,92.78,93.29,93.8,94.3,94.77,95.35000000000001,95.9,97.3,14.05,13.68,13.5,13.3,13.1,12.92,12.72,12.530000000000001,12.15,N/A,N/A -2012,1,19,3,30,102120,100900,99710,63.33,0,2.58,2.69,2.71,2.72,2.73,2.73,2.74,2.75,2.7600000000000002,127.43,127.85000000000001,128.07,128.3,128.54,128.76,129.04,129.3,129.97,14.35,13.98,13.8,13.6,13.41,13.22,13.02,12.83,12.450000000000001,N/A,N/A -2012,1,19,4,30,102090,100870,99690,62.47,0,2.88,3,3.02,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.02,117.73,118.21000000000001,118.54,118.86,119.18,119.48,119.8,120.12,120.88,14.67,14.3,14.120000000000001,13.92,13.72,13.540000000000001,13.33,13.15,12.76,N/A,N/A -2012,1,19,5,30,102040,100820,99640,68.93,0,3,3.13,3.15,3.16,3.16,3.16,3.16,3.16,3.16,144.71,145.28,145.63,145.98,146.35,146.70000000000002,147.16,147.61,148.89000000000001,14.77,14.41,14.22,14.030000000000001,13.83,13.65,13.450000000000001,13.26,12.88,N/A,N/A -2012,1,19,6,30,102020,100810,99630,73.52,0,3.39,3.56,3.59,3.6,3.6,3.61,3.61,3.61,3.62,155.68,156.18,156.49,156.8,157.13,157.44,157.81,158.17000000000002,159.08,14.950000000000001,14.59,14.4,14.200000000000001,14.01,13.82,13.620000000000001,13.44,13.05,N/A,N/A -2012,1,19,7,30,101980,100770,99590,77.21000000000001,0,3.65,3.85,3.9,3.92,3.94,3.96,3.97,3.98,4.01,165.96,166.3,166.5,166.72,166.94,167.16,167.44,167.71,168.46,15.19,14.84,14.65,14.46,14.26,14.08,13.88,13.69,13.3,N/A,N/A -2012,1,19,8,30,101950,100740,99560,80.67,0,4.1,4.34,4.39,4.43,4.44,4.46,4.47,4.48,4.5,170.54,170.72,170.8,170.9,171.01,171.1,171.22,171.34,171.62,15.5,15.15,14.97,14.77,14.57,14.39,14.19,14,13.61,N/A,N/A -2012,1,19,9,30,101900,100690,99520,83.86,0,4.25,4.53,4.6000000000000005,4.64,4.67,4.69,4.71,4.73,4.78,177.78,177.91,177.99,178.08,178.18,178.28,178.41,178.54,178.95000000000002,15.790000000000001,15.450000000000001,15.27,15.07,14.88,14.69,14.49,14.31,13.92,N/A,N/A -2012,1,19,10,30,101880,100670,99500,86.57000000000001,0,4.7700000000000005,5.09,5.17,5.21,5.23,5.25,5.26,5.28,5.33,176.53,176.79,176.98,177.18,177.41,177.63,177.92000000000002,178.23,179.24,16.11,15.780000000000001,15.610000000000001,15.41,15.22,15.030000000000001,14.83,14.65,14.27,N/A,N/A -2012,1,19,11,30,101860,100650,99480,88.78,0,5.25,5.67,5.78,5.84,5.89,5.92,5.95,5.98,6.04,183.08,183.32,183.46,183.59,183.72,183.85,184,184.14000000000001,184.48,16.490000000000002,16.18,16.01,15.81,15.620000000000001,15.43,15.24,15.05,14.67,N/A,N/A -2012,1,19,12,30,101850,100640,99480,88.7,0,7.57,7.96,7.95,7.8500000000000005,7.74,7.640000000000001,7.54,7.46,7.3500000000000005,218.48000000000002,217.77,217.17000000000002,216.46,215.65,214.83,213.77,212.77,210.56,16.76,16.46,16.28,16.09,15.9,15.72,15.540000000000001,15.36,14.99,N/A,N/A -2012,1,19,13,30,101810,100620,99450,90.24,0,5.08,5.9,6.2,6.44,6.63,6.78,6.92,7.03,7.21,221.04,222.73000000000002,223.67000000000002,224.46,224.92000000000002,225.18,224.97,224.68,223.23000000000002,17.43,17.240000000000002,17.11,16.96,16.81,16.67,16.52,16.37,16.05,N/A,N/A -2012,1,19,14,30,101810,100610,99450,90.53,0,4.28,5.01,5.3100000000000005,5.58,5.84,6.07,6.32,6.5600000000000005,7.08,200.46,199.97,199.66,199.21,198.84,198.52,198.55,198.69,200.17000000000002,17.42,17.240000000000002,17.12,16.98,16.84,16.71,16.580000000000002,16.47,16.23,N/A,N/A -2012,1,19,15,30,101800,100600,99440,92.33,0,3.0100000000000002,3.81,4.21,4.69,5.25,5.87,6.43,6.96,7.82,194.16,197.53,200.11,203.27,205.65,207.6,208.25,208.63,209.67000000000002,17.41,17.32,17.27,17.2,17.11,17.03,16.91,16.8,16.68,N/A,N/A -2012,1,19,16,30,101750,100560,99400,90.45,0,3.8000000000000003,4.6000000000000005,4.99,5.4,5.86,6.33,6.83,7.28,7.78,202.53,203.92000000000002,205.03,206.48000000000002,207.70000000000002,208.8,208.58,208.11,206.96,17.64,17.5,17.42,17.34,17.29,17.25,17.240000000000002,17.240000000000002,17.16,N/A,N/A -2012,1,19,17,30,101700,100510,99350,92.49,0,4.41,5.11,5.41,5.73,6.05,6.37,6.890000000000001,7.45,8.790000000000001,187.41,188.54,189.46,190.61,191.83,193.09,194.95000000000002,196.95000000000002,202.23000000000002,17.75,17.55,17.43,17.3,17.18,17.07,17.04,17.03,17.19,N/A,N/A -2012,1,19,18,30,101680,100480,99330,93.38,0,5.11,6.03,6.43,6.84,7.21,7.58,7.97,8.34,9.32,190.87,191.59,192.11,192.73000000000002,193.39000000000001,194.05,195.02,196.1,201.15,18.03,17.87,17.76,17.64,17.53,17.42,17.330000000000002,17.25,17.25,N/A,N/A -2012,1,19,19,30,101650,100450,99300,94.73,0,4.61,5.61,6.05,6.5,6.890000000000001,7.25,7.62,7.98,8.94,188.5,189.21,189.76,190.35,190.92000000000002,191.46,192.68,194.06,203,18.080000000000002,17.98,17.900000000000002,17.8,17.7,17.61,17.53,17.46,17.46,N/A,N/A -2012,1,19,20,30,101580,100390,99240,96.03,0,4.79,5.91,6.41,6.94,7.53,8.18,8.8,9.38,9.71,192.82,193.77,194.99,197.19,200.32,204.01,207.41,210.47,212.64000000000001,18.23,18.2,18.18,18.16,18.17,18.2,18.240000000000002,18.26,18.18,N/A,N/A -2012,1,19,21,30,101540,100350,99200,95.91,0,3.91,5.0600000000000005,5.57,6.09,6.68,7.3500000000000005,8.25,9.19,9.78,188.31,190.78,192.75,195.16,197.67000000000002,200.34,204.18,208.21,210.20000000000002,18.18,18.17,18.14,18.09,18.07,18.07,18.14,18.23,18.18,N/A,N/A -2012,1,19,22,30,101510,100320,99170,95.79,0,3.61,4.76,5.2700000000000005,5.84,6.68,7.8100000000000005,8.45,8.92,9.75,186.12,190.65,193.6,196.26,200.34,205.84,208.31,209.85,212.83,18.14,18.16,18.14,18.1,18.18,18.34,18.35,18.32,18.400000000000002,N/A,N/A -2012,1,19,23,30,101480,100290,99150,94.72,0,3.5500000000000003,5.09,5.84,6.640000000000001,7.41,8.17,8.59,8.9,9.38,191.07,193.03,194.43,195.89000000000001,197.26,198.58,199.54,200.32,201.94,18.09,18.34,18.45,18.55,18.61,18.64,18.650000000000002,18.650000000000002,18.6,N/A,N/A -2012,1,20,0,30,101460,100280,99140,93.9,0,3.93,5.84,6.93,8.18,9.01,9.48,9.81,10.08,10.540000000000001,190.36,194.8,197.70000000000002,199.8,201.17000000000002,201.93,202.58,203.15,204.31,18.25,18.7,18.94,19.16,19.32,19.43,19.5,19.55,19.57,N/A,N/A -2012,1,20,1,30,101460,100280,99130,95.26,0,4.2,6.22,7.4,8.51,9.18,9.51,9.85,10.18,10.700000000000001,187.98,193.21,196.44,197.88,198.89000000000001,199.56,200.22,200.84,202.46,17.91,18.6,18.95,19.12,19.23,19.31,19.38,19.44,19.53,N/A,N/A -2012,1,20,2,30,101450,100270,99120,95.06,0,3.41,5.01,6.08,7.87,8.98,9.5,10.03,10.52,11.21,180.62,185.95000000000002,189.71,194.08,196.58,197.52,198.43,199.3,202,18.05,18.25,18.46,18.88,19.04,19.04,19.1,19.16,19.29,N/A,N/A -2012,1,20,3,30,101450,100260,99120,93.92,0.4,3.47,5.34,6.3100000000000005,7.4,8.51,9.69,10.53,11.23,11.99,178.4,190.18,197.31,200.92000000000002,202.85,203.53,204.56,205.63,206.77,18.36,18.73,18.900000000000002,19.07,19.150000000000002,19.19,19.17,19.14,18.98,N/A,N/A -2012,1,20,4,30,101440,100250,99110,91.10000000000001,0,4.67,7.390000000000001,8.85,10.21,11.22,11.96,12.09,12.05,12.88,202.47,205.07,207.16,209.58,211.15,212.07,210.52,208.53,205.21,18.97,19.28,19.330000000000002,19.29,19.26,19.22,19.23,19.26,19.27,N/A,N/A -2012,1,20,5,30,101430,100240,99100,91.96000000000001,0,4.0600000000000005,6.01,6.95,7.99,8.94,9.84,10.39,10.82,12,214.05,213.95000000000002,213.76,213.27,211.97,210.04,207.25,204.47,202.91,18.82,19.17,19.23,19.22,19.14,19.02,18.95,18.89,18.61,N/A,N/A -2012,1,20,6,30,101430,100250,99100,92.13,0,4.18,6.2,7.17,8.13,9.07,10.01,10.82,11.56,12.540000000000001,198.47,199.77,200.9,202.46,203.71,204.76,205.97,207.16,208.72,18.650000000000002,18.95,19.01,19.01,18.98,18.94,18.990000000000002,19.07,19.740000000000002,N/A,N/A -2012,1,20,7,30,101440,100250,99110,92.93,0,4.05,6.24,7.51,8.93,10.02,10.8,11.13,11.290000000000001,11.540000000000001,181.31,185.81,189.26,192.38,195.48000000000002,198.55,200.35,201.63,204.44,18.43,18.59,18.62,18.66,19.150000000000002,20.03,20.28,20.32,20.27,N/A,N/A -2012,1,20,8,30,101410,100220,99080,93.66,0,3.98,5.95,7.11,8.68,10.05,11.24,11.790000000000001,12.13,12.56,176.07,180.99,184.55,188.46,191.74,194.54,196.13,197.31,199.73000000000002,18.26,18.43,18.56,18.84,19.3,19.84,20.01,20.080000000000002,20,N/A,N/A -2012,1,20,9,30,101390,100210,99070,93.5,2.2,5.69,7.66,8.8,10.15,11.48,12.81,13.82,14.68,15.21,171.91,176.94,180.68,184.20000000000002,187.36,190.28,192.8,195.05,196.68,18.150000000000002,18.400000000000002,18.62,18.98,19.34,19.7,19.91,20.05,19.97,N/A,N/A -2012,1,20,10,30,101390,100210,99070,91.55,0.4,5.87,7.95,9.03,10.21,11.33,12.41,13.5,14.540000000000001,15.59,179.57,181.24,182.65,184.39000000000001,185.95000000000002,187.41,189.44,191.55,197.06,18.6,18.79,18.900000000000002,19.12,19.330000000000002,19.55,19.66,19.740000000000002,19.77,N/A,N/A -2012,1,20,11,30,101390,100210,99070,92.02,0,7.18,9.16,10.16,11.31,12.44,13.56,14.26,14.82,15.06,180.79,182.58,184.21,186.65,189.24,191.98000000000002,194.19,196.12,197.52,18.46,18.68,18.88,19.22,19.55,19.84,19.95,20,19.830000000000002,N/A,N/A -2012,1,20,12,30,101400,100220,99080,92.27,1.1,5.43,7.41,8.48,9.64,10.66,11.56,12.48,13.370000000000001,15.64,175.15,177.83,179.93,182.22,183.95000000000002,185.24,186.36,187.38,192.71,18.44,18.68,18.79,18.93,19.03,19.1,19.17,19.23,19.61,N/A,N/A -2012,1,20,13,30,101400,100220,99080,91.44,0,6.66,8.76,9.8,10.97,12.06,13.120000000000001,14.08,14.96,16.15,178.24,179.43,180.29,181.32,182.43,183.61,185.16,186.72,191.21,18.61,18.82,18.92,19.06,19.21,19.35,19.51,19.650000000000002,19.87,N/A,N/A -2012,1,20,14,30,101420,100240,99090,91.02,0,7.1000000000000005,9.16,10.14,11.17,12.1,12.950000000000001,13.68,14.33,14.88,183.29,184.03,184.72,185.77,187.08,188.54,190.77,193.04,197.27,18.67,19.03,19.21,19.43,19.61,19.77,19.89,20,20.05,N/A,N/A -2012,1,20,15,30,101430,100250,99100,92.33,0,6.19,8.040000000000001,8.98,9.99,10.99,12,13,13.96,14.42,177.8,179.21,180.46,182.09,184.20000000000002,186.72,189.81,192.93,195.64000000000001,18.44,18.740000000000002,18.92,19.16,19.38,19.59,19.79,19.98,20.07,N/A,N/A -2012,1,20,16,30,101410,100220,99080,92.02,0,5.98,7.98,9.02,10.15,11.24,12.31,13.15,13.89,14.39,175.92000000000002,178.02,179.73,181.81,184.31,187.15,190.04,192.77,195.45000000000002,18.54,18.740000000000002,18.900000000000002,19.19,19.47,19.75,19.94,20.09,20.17,N/A,N/A -2012,1,20,17,30,101390,100210,99060,92.11,0,6.94,8.77,9.65,10.67,11.700000000000001,12.77,13.620000000000001,14.36,14.8,177.26,178.09,179.04,180.86,183.43,186.6,189.67000000000002,192.54,195.38,18.53,18.64,18.72,18.91,19.26,19.72,19.990000000000002,20.18,20.26,N/A,N/A -2012,1,20,18,30,101380,100190,99050,91.89,0,6.96,8.91,9.86,10.92,11.93,12.93,13.700000000000001,14.35,14.64,175.44,176.41,177.75,180.54,183.6,186.88,189.52,191.83,193.62,18.56,18.68,18.87,19.37,19.73,20,20.150000000000002,20.25,20.22,N/A,N/A -2012,1,20,19,30,101370,100180,99040,92.4,0,5.84,7.66,8.58,9.620000000000001,10.700000000000001,11.85,12.94,13.98,14.4,169.07,171.5,173.62,176.65,179.64000000000001,182.68,185.86,188.96,191.20000000000002,18.5,18.580000000000002,18.7,19.07,19.36,19.59,19.77,19.94,19.93,N/A,N/A -2012,1,20,20,30,101350,100160,99020,92.5,0,5.39,7.33,8.33,9.46,10.5,11.5,12.67,13.870000000000001,14.69,171.71,174.9,177.07,179.21,181.1,182.83,185.97,189.46,192.72,18.53,18.66,18.77,19.04,19.26,19.47,19.740000000000002,20.02,20.11,N/A,N/A -2012,1,20,21,30,101310,100130,98990,92.61,0,5.71,7.58,8.55,9.56,10.61,11.74,13,14.280000000000001,14.98,174.57,176.89000000000001,178.69,180.70000000000002,182.37,183.82,186.97,190.55,193.16,18.42,18.77,18.95,19.12,19.32,19.54,19.87,20.2,20.23,N/A,N/A -2012,1,20,22,30,101280,100090,98950,92.63,0,5.9,7.7700000000000005,8.73,9.78,10.72,11.620000000000001,12.77,13.98,14.57,170.1,172.64000000000001,174.58,176.78,178.84,180.84,184.82,189.31,191.99,18.36,18.67,18.87,19.16,19.38,19.55,19.84,20.13,20.16,N/A,N/A -2012,1,20,23,30,101250,100070,98930,93.28,0,5.29,7.11,8.11,9.32,10.48,11.64,12.92,14.22,14.84,167.32,171.17000000000002,174.03,177.04,179.62,181.92000000000002,185.95000000000002,190.38,192.89000000000001,18.22,18.27,18.41,18.830000000000002,19.2,19.54,19.93,20.3,20.39,N/A,N/A -2012,1,21,0,30,101260,100080,98930,92.57000000000001,0,6.01,7.87,8.84,9.89,10.86,11.8,13.01,14.290000000000001,15.05,165.97,169.21,171.54,173.88,175.97,177.91,181.88,186.41,189.83,18.35,18.57,18.73,19,19.21,19.38,19.69,20.01,20.1,N/A,N/A -2012,1,21,1,30,101240,100060,98920,92.31,0,6.7,8.61,9.56,10.620000000000001,11.65,12.65,13.68,14.66,16.6,172.11,173.99,175.36,177,178.6,180.21,181.94,183.64000000000001,190.06,18.400000000000002,18.490000000000002,18.57,18.8,19.06,19.32,19.55,19.75,20.18,N/A,N/A -2012,1,21,2,30,101270,100080,98940,92.11,0,6.890000000000001,8.89,9.93,11.040000000000001,12.09,13.11,14.1,15.02,16.580000000000002,176.69,178.08,179.24,180.71,182.15,183.57,185.14000000000001,186.67000000000002,191.96,18.43,18.740000000000002,18.94,19.23,19.45,19.63,19.76,19.87,20.06,N/A,N/A -2012,1,21,3,30,101300,100120,98980,90.24,0,6.29,8.39,9.41,10.46,11.450000000000001,12.43,13.43,14.38,15.9,176.93,178.86,180.39000000000001,182.27,183.89000000000001,185.35,186.52,187.53,189.45000000000002,18.900000000000002,19.22,19.34,19.45,19.55,19.650000000000002,19.64,19.61,19.2,N/A,N/A -2012,1,21,4,30,101300,100120,98970,89.22,0,6.88,9.14,10.27,11.38,12.34,13.22,14.040000000000001,14.81,16.18,180.86,182.08,183.09,184.39000000000001,185.76,187.23,188.88,190.51,194.51,19.1,19.43,19.53,19.6,19.62,19.62,19.52,19.400000000000002,18.92,N/A,N/A -2012,1,21,5,30,101290,100110,98970,89.04,0,7.37,9.6,10.64,11.700000000000001,12.65,13.530000000000001,14.34,15.09,16.44,184.31,185.16,185.91,187.04,188.31,189.76,191.45000000000002,193.15,196.72,19.150000000000002,19.400000000000002,19.44,19.45,19.39,19.29,19.09,18.89,18.990000000000002,N/A,N/A -2012,1,21,6,30,101330,100150,99010,90.43,0,6.21,8.290000000000001,9.31,10.38,11.43,12.49,13.57,14.620000000000001,15.88,185.94,186.76,187.48,188.62,189.92000000000002,191.39000000000001,193.21,195.08,198.72,18.96,19.18,19.2,19.17,19.07,18.92,18.86,18.830000000000002,20.03,N/A,N/A -2012,1,21,7,30,101340,100160,99020,90.92,0,7.140000000000001,9.120000000000001,10.1,11.22,12.32,13.46,14.540000000000001,15.55,16.35,189.57,190.41,191.13,192.15,193.33,194.69,196.57,198.53,202.64000000000001,18.78,18.92,18.92,18.87,18.78,18.66,19.26,20,20.5,N/A,N/A -2012,1,21,8,30,101340,100160,99010,91.29,0,6.7700000000000005,8.75,9.72,10.790000000000001,11.85,12.92,14.01,15.05,15.71,187.85,188.73,189.51,190.68,192.29,194.28,197.67000000000002,201.33,206.67000000000002,18.73,18.86,18.85,18.79,18.73,18.68,19.38,20.240000000000002,20.71,N/A,N/A -2012,1,21,9,30,101360,100180,99030,91.61,0,5.44,7.4,8.39,9.5,10.66,11.9,12.94,13.88,14.34,186.8,188.62,190.14000000000001,192.16,194.61,197.52,201.15,204.83,208.22,18.72,18.88,18.87,18.8,18.740000000000002,18.68,19.240000000000002,19.91,20.55,N/A,N/A -2012,1,21,10,30,101360,100180,99040,92.23,0.4,5.15,6.91,7.82,8.84,9.98,11.25,12.31,13.280000000000001,13.73,180.46,183.25,185.58,188.44,191.86,195.87,200.52,205.18,208.42000000000002,18.57,18.69,18.580000000000002,18.18,18.240000000000002,18.59,19.32,20.1,20.54,N/A,N/A -2012,1,21,11,30,101420,100230,99090,93.43,0,3.73,5.61,6.62,7.82,8.870000000000001,9.790000000000001,10.47,11.02,11.540000000000001,177.06,180.71,184.32,190.16,195.33,199.97,203.4,206.26,209.37,18.43,18.6,18.55,18.36,18.36,18.52,19.02,19.57,20.13,N/A,N/A -2012,1,21,12,30,101440,100250,99110,95.28,0.4,1.97,3.94,5.3,6.95,8.11,8.78,9.31,9.76,10.31,194.70000000000002,192.36,193.1,200.75,205.66,208.06,209.49,210.58,212.04,18.18,18.07,17.93,17.85,17.98,18.240000000000002,18.73,19.240000000000002,19.78,N/A,N/A -2012,1,21,13,30,101450,100260,99110,95.95,0,1.73,3.18,4.17,5.63,6.6000000000000005,7.1000000000000005,7.75,8.43,9.09,227.57,221.43,218.51,220.89000000000001,222.05,222.13,221.24,220.13,217.9,18.02,18.09,18.05,17.990000000000002,17.95,17.91,18,18.1,18.26,N/A,N/A -2012,1,21,14,30,101490,100300,99150,95.97,0.4,1.21,2.5,3.54,5.22,6.44,7.12,7.47,7.71,7.82,238.52,229.13,223.91,225.94,227.42000000000002,228.23000000000002,228.01,227.57,227.18,18.03,18.17,18.19,18.23,18.28,18.32,18.28,18.22,18.04,N/A,N/A -2012,1,21,15,30,101510,100320,99170,95.4,0,2.0300000000000002,3.2,3.67,4.15,4.58,4.97,5.34,5.68,6.24,227.43,230.86,233.07,234.66,235.72,236.43,236.64000000000001,236.71,235.87,18.240000000000002,18.48,18.53,18.57,18.580000000000002,18.57,18.55,18.53,18.44,N/A,N/A -2012,1,21,16,30,101510,100330,99180,94.96000000000001,0,2.5300000000000002,3.85,4.3,4.72,5.0600000000000005,5.3500000000000005,5.62,5.86,6.3500000000000005,211.04,216.5,219.87,221.8,223.15,224.09,225,225.84,227.29,18.400000000000002,18.75,18.830000000000002,18.85,18.84,18.82,18.79,18.76,18.71,N/A,N/A -2012,1,21,17,30,101500,100320,99170,95.2,1.8,2.66,3.85,4.26,4.7,5.04,5.3100000000000005,5.5600000000000005,5.78,6.22,214.37,220.43,223.84,225.77,226.85,227.35,227.58,227.72,227.45000000000002,18.38,18.66,18.73,18.78,18.8,18.81,18.79,18.77,18.69,N/A,N/A -2012,1,21,18,30,101500,100310,99170,95.12,6.2,2.2,3.44,3.91,4.33,4.68,4.98,5.22,5.42,5.8,213.58,219.16,222.49,224.56,226.06,227.12,227.98000000000002,228.74,230.41,18.52,18.93,19.05,19.1,19.1,19.080000000000002,19.03,18.990000000000002,18.88,N/A,N/A -2012,1,21,19,30,101500,100320,99170,94.67,0.4,2.52,3.72,4.07,4.33,4.54,4.73,4.92,5.11,5.55,203.78,209.74,213.45000000000002,215.98000000000002,218.15,220.08,222.3,224.46,228.17000000000002,18.75,19.11,19.19,19.17,19.150000000000002,19.14,19.18,19.22,19.23,N/A,N/A -2012,1,21,20,30,101470,100290,99140,94.5,0,3.18,4.25,4.57,4.89,5.15,5.38,5.63,5.87,6.34,187.54,194.86,200.03,205.36,209.42000000000002,212.61,215.62,218.4,223.45000000000002,18.77,19.02,19.11,19.21,19.32,19.42,19.51,19.580000000000002,19.62,N/A,N/A -2012,1,21,21,30,101440,100260,99120,94.08,0,3.62,4.64,4.91,5.21,5.44,5.61,5.79,5.96,6.2700000000000005,179.82,188,195.01,206.64000000000001,214.03,218.41,222.06,225.26,230.12,18.81,18.96,19.12,19.6,19.93,20.14,20.25,20.31,20.240000000000002,N/A,N/A -2012,1,21,22,30,101420,100230,99090,93.10000000000001,0,4.8500000000000005,6.16,6.48,6.48,6.43,6.37,6.3100000000000005,6.26,6.22,175.93,182.53,188,194.76,199.35,202.54,205.65,208.47,213.55,18.63,18.5,18.6,19.09,19.43,19.66,19.8,19.900000000000002,19.88,N/A,N/A -2012,1,21,23,30,101400,100220,99080,92.77,0,4.39,5.75,6.1000000000000005,6.09,6.1000000000000005,6.13,6.17,6.21,6.21,170.94,180.83,187.61,193.48000000000002,198.01,201.71,204.73000000000002,207.33,211.84,18.57,18.61,18.86,19.66,20.14,20.42,20.5,20.51,20.36,N/A,N/A -2012,1,22,0,30,101410,100230,99080,93.79,0,3.81,5.1000000000000005,5.45,5.55,5.59,5.61,5.63,5.64,5.65,176.88,183.86,189.87,198.29,204.67000000000002,209.69,213.1,215.81,218.97,18.32,18.46,18.55,18.78,19.03,19.29,19.57,19.830000000000002,19.990000000000002,N/A,N/A -2012,1,22,1,30,101420,100230,99090,95.78,0,2.04,3.27,3.74,4.07,4.2700000000000005,4.38,4.49,4.58,4.79,190.18,195.08,200.07,207.68,213.05,216.85,220.02,222.75,224.63,18.07,18.14,18.13,18.16,18.240000000000002,18.330000000000002,18.400000000000002,18.47,18.7,N/A,N/A -2012,1,22,2,30,101430,100240,99090,96.23,0,2.08,3.27,3.65,3.8200000000000003,3.93,3.99,4.1,4.2,4.67,180.44,191.52,200.19,208.77,214.32,217.83,220.69,223.19,224.25,17.96,18.06,18.11,18.26,18.38,18.47,18.55,18.63,18.78,N/A,N/A -2012,1,22,3,30,101400,100210,99060,96.7,0,1.9100000000000001,3,3.35,3.5500000000000003,3.68,3.7800000000000002,4,4.25,4.99,161.84,180.03,192.07,202.12,208.79,213.34,215.3,216.51,212.69,17.85,17.97,18.02,18.11,18.150000000000002,18.18,18.29,18.42,18.79,N/A,N/A -2012,1,22,4,30,101380,100200,99050,96.66,0,2.07,3.66,4.34,4.7,5.08,5.48,5.8500000000000005,6.21,6.86,177.41,193.06,201.63,203.06,203.28,202.73000000000002,202.06,201.39000000000001,199.98000000000002,17.87,17.84,17.81,17.88,17.98,18.11,18.400000000000002,18.69,19.18,N/A,N/A -2012,1,22,5,30,101390,100200,99050,96.37,0,2.48,3.71,4.41,5.54,6.05,6.1000000000000005,6.3100000000000005,6.5600000000000005,7.34,155.93,169.11,177.87,185.75,189.17000000000002,189.38,189.28,189.1,188.73,17.87,18.11,18.21,18.26,18.22,18.12,18.080000000000002,18.06,18.56,N/A,N/A -2012,1,22,6,30,101370,100180,99040,96.13,0,2.6,4.03,4.92,6.3500000000000005,7.25,7.68,8.040000000000001,8.370000000000001,9.05,188.29,186.8,186.36,187.11,187.78,188.34,188.95000000000002,189.53,191.05,18.150000000000002,18.34,18.47,18.72,18.87,18.96,18.97,18.96,19,N/A,N/A -2012,1,22,7,30,101370,100180,99040,95.8,0,2.69,4.82,6.21,7.99,8.88,9.08,9.15,9.18,9.21,166.36,174.29,180.95000000000002,188.83,192.92000000000002,194,194.44,194.71,195.05,18.240000000000002,18.86,19.18,19.44,19.51,19.45,19.36,19.28,19.09,N/A,N/A -2012,1,22,8,30,101340,100150,99010,92.44,0,4.96,6.86,7.79,8.790000000000001,9.6,10.27,10.96,11.620000000000001,11.870000000000001,183.62,184.54,185.43,186.81,186.71,185.53,188.02,191.38,193.3,18.81,19.04,19.11,19.2,19.26,19.3,19.3,19.29,19.13,N/A,N/A -2012,1,22,9,30,101300,100120,98980,91.34,0,6.47,8.51,9.48,10.38,10.950000000000001,11.27,11.28,11.21,11.53,183.5,186.89000000000001,189.26,191.72,192.81,192.93,191.4,189.65,190.39000000000001,18.96,19.080000000000002,19.05,18.97,18.85,18.69,18.71,18.78,19.16,N/A,N/A -2012,1,22,10,30,101280,100100,98960,92.78,0,6.5200000000000005,8.08,8.67,9.14,9.620000000000001,10.11,10.540000000000001,10.93,10.86,171.17000000000002,173.57,175.47,178.09,181.03,184.25,187.3,190.11,196.34,18.64,18.7,18.7,18.7,18.69,18.66,18.650000000000002,18.64,18.68,N/A,N/A -2012,1,22,11,30,101270,100080,98940,93.36,0,6.0600000000000005,7.3,7.73,8.040000000000001,8.34,8.65,9.75,11.1,13.25,174.74,172.87,171.27,168.87,167.34,166.42000000000002,170.25,175.53,182.78,18.5,18.580000000000002,18.59,18.6,18.55,18.47,18.46,18.48,19.64,N/A,N/A -2012,1,22,12,30,101250,100070,98930,93.29,0,5.79,7.65,8.63,9.790000000000001,10.93,12.08,12.81,13.370000000000001,13.790000000000001,162.94,167.35,171.06,176.39000000000001,179.68,181.41,181.87,181.96,183.16,18.54,18.44,18.26,17.93,18.3,19.16,19.72,20.16,20.31,N/A,N/A -2012,1,22,13,30,101250,100060,98920,97.22,0.4,5.16,6.69,8.1,10.89,12.530000000000001,13.18,13.8,14.38,15.05,159.22,161.65,165.11,172.65,176.87,178.22,179.47,180.62,182.52,17.7,17.37,17.61,18.580000000000002,19.34,19.98,20.29,20.5,20.56,N/A,N/A -2012,1,22,14,30,101250,100060,98920,91.04,0,6.92,8.870000000000001,9.81,10.78,11.69,12.56,13.4,14.19,15.69,170.66,171.37,172.01,173,174.16,175.48,176.86,178.17000000000002,180.03,19.01,19.34,19.5,19.68,19.82,19.95,20.06,20.14,20.2,N/A,N/A -2012,1,22,15,30,101240,100060,98920,91.16,0,6.8100000000000005,8.700000000000001,9.620000000000001,10.61,11.56,12.5,13.370000000000001,14.19,15.63,166.32,167.71,168.88,170.49,172.01,173.51,174.72,175.8,178.52,19.02,19.35,19.51,19.7,19.86,20.02,20.12,20.2,20.35,N/A,N/A -2012,1,22,16,30,101220,100040,98900,91.37,0,6.67,8.5,9.41,10.43,11.4,12.36,13.27,14.13,15.42,164.85,166.44,167.67000000000002,169.24,170.56,171.72,172.71,173.61,175.62,19.02,19.330000000000002,19.48,19.64,19.79,19.93,20.06,20.17,20.22,N/A,N/A -2012,1,22,17,30,101220,100040,98900,91.86,0,5.12,6.92,7.8500000000000005,8.86,9.83,10.81,11.74,12.63,14.6,163.37,164.96,166.31,167.92000000000002,169.32,170.59,171.79,172.92000000000002,177.02,19.07,19.35,19.43,19.47,19.52,19.59,19.69,19.8,20.05,N/A,N/A -2012,1,22,18,30,101190,100010,98870,89.95,0,8.15,10.11,11.02,11.96,12.85,13.72,14.56,15.35,16.54,171.66,172.25,172.8,173.79,174.97,176.34,177.89000000000001,179.41,182.51,19.38,19.66,19.78,19.92,20.07,20.23,20.37,20.48,20.55,N/A,N/A -2012,1,22,19,30,101160,99980,98840,90.51,0,8.700000000000001,10.67,11.59,12.58,13.51,14.44,15.36,16.23,17.81,169.52,171.11,172.22,173.68,175.06,176.42000000000002,177.70000000000002,178.88,181.76,19.13,19.42,19.56,19.740000000000002,19.91,20.1,20.26,20.41,20.63,N/A,N/A -2012,1,22,20,30,101160,99990,98850,89.16,0,8.19,10.34,11.36,12.4,13.35,14.25,15.05,15.77,16.71,175.49,175.85,176.17000000000002,176.67000000000002,177.3,178.04,179.15,180.31,184.15,19.48,19.92,20.13,20.36,20.55,20.72,20.84,20.94,21,N/A,N/A -2012,1,22,21,30,101130,99950,98820,90.48,0,7.07,9.17,10.24,11.39,12.43,13.43,14.25,14.97,15.83,168.96,170.13,171.03,172.01,173.03,174.14000000000001,176.09,178.22,184.31,19.2,19.650000000000002,19.88,20.14,20.37,20.59,20.740000000000002,20.86,20.93,N/A,N/A -2012,1,22,22,30,101100,99920,98790,89.98,0,6.86,9.02,10.07,11.16,12.13,13.01,13.790000000000001,14.48,15.23,167.77,168.67000000000002,169.58,171.06,173,175.32,178.56,181.92000000000002,187.70000000000002,19.3,19.69,19.89,20.150000000000002,20.36,20.55,20.68,20.79,20.84,N/A,N/A -2012,1,22,23,30,101080,99900,98770,89.4,0,8.01,10.22,11.27,12.36,13.33,14.25,15.08,15.85,16.740000000000002,167.54,168.89000000000001,170.11,171.96,174.19,176.73,180.26,183.91,190.17000000000002,19.37,19.68,19.84,20.05,20.3,20.580000000000002,20.77,20.92,21.01,N/A,N/A -2012,1,23,0,30,101120,99950,98820,88.62,0,7.8500000000000005,10.08,11.22,12.41,13.47,14.46,15.21,15.83,16.31,174.43,175.42000000000002,176.41,178.19,180.46,183.36,186.91,190.49,195.91,19.54,19.87,19.990000000000002,20.150000000000002,20.38,20.68,20.97,21.23,21.35,N/A,N/A -2012,1,23,1,30,101130,99960,98820,88.07000000000001,0.4,7.61,10,11.22,12.5,13.620000000000001,14.64,15.4,16.02,16.69,178.51,179.21,179.82,180.87,182.21,183.88,186.66,189.71,198.45000000000002,19.69,20.04,20.16,20.27,20.31,20.31,20.580000000000002,20.93,21.240000000000002,N/A,N/A -2012,1,23,2,30,101170,100000,98870,87.46000000000001,0.4,8.02,10.44,11.620000000000001,12.790000000000001,13.73,14.51,14.950000000000001,15.24,15.26,185.19,185.94,186.73,188.21,190.42000000000002,193.32,197.8,202.55,210.32,19.830000000000002,20.14,20.22,20.29,20.53,20.900000000000002,21.19,21.44,21.54,N/A,N/A -2012,1,23,3,30,101240,100070,98930,88.37,0,6.6000000000000005,8.97,10.17,11.55,12.64,13.49,13.82,13.950000000000001,13.91,192.83,192.77,193.21,194.93,197.76,201.83,209.12,216.98000000000002,220.71,19.7,20.080000000000002,20.18,20.240000000000002,20.43,20.740000000000002,20.93,21.07,21.150000000000002,N/A,N/A -2012,1,23,4,30,101270,100090,98960,89.33,0,5.61,8.08,9.27,10.47,11.33,11.950000000000001,12.15,12.23,12.44,203.71,203.79,204.33,205.8,209.38,214.18,222.17000000000002,230.25,233.42000000000002,19.55,20,20.16,20.32,20.44,20.52,20.41,20.27,20.32,N/A,N/A -2012,1,23,5,30,101360,100180,99040,91.38,0.4,3.83,5.71,6.55,7.53,8.36,9.08,9.46,9.71,9.89,245.47,241.95000000000002,239,235.28,236.38,241.65,244.12,245.52,247.3,19.330000000000002,19.85,20.02,20.18,20.23,20.21,20.150000000000002,20.09,19.91,N/A,N/A -2012,1,23,6,30,101410,100230,99090,92.13,0,3.41,5.24,6.09,7.2700000000000005,8,8.31,8.63,8.93,9.65,236.05,239.26,242.78,249.34,252.54,252.66,252.73000000000002,252.79,252.29,19.3,19.91,20.09,20.17,20.19,20.17,20.14,20.11,20.05,N/A,N/A -2012,1,23,7,30,101480,100300,99160,92.94,0.4,3.12,5.54,6.72,7.61,8.120000000000001,8.32,8.370000000000001,8.370000000000001,8.370000000000001,247.48000000000002,249.70000000000002,252.56,257.98,260.88,261.64,261.77,261.69,261.55,19.150000000000002,19.8,20,20.03,19.990000000000002,19.88,19.78,19.69,19.51,N/A,N/A -2012,1,23,8,30,101520,100330,99190,91.72,0,4.57,6.46,7.2700000000000005,7.930000000000001,8.47,8.9,8.94,8.870000000000001,8.85,279.76,282.21,284.19,286.75,287.57,287.16,285.76,284.23,283.92,19.1,19.580000000000002,19.7,19.64,19.55,19.43,19.3,19.19,19.01,N/A,N/A -2012,1,23,9,30,101550,100360,99220,93.68,0.4,3.84,5.37,5.89,6.13,6.23,6.24,6.22,6.19,6.15,302.13,304,304.29,302.57,300.78000000000003,298.94,297.44,296.17,294.22,18.68,19.25,19.51,19.69,19.77,19.78,19.73,19.650000000000002,19.43,N/A,N/A -2012,1,23,10,30,101570,100380,99230,96.11,0,4.42,5.78,6.36,6.78,6.98,7.04,7,6.95,6.84,333.95,331.01,329.24,328.03000000000003,327.07,326.3,325.96,325.75,325.83,18.02,18.240000000000002,18.36,18.490000000000002,18.61,18.740000000000002,18.77,18.78,18.650000000000002,N/A,N/A -2012,1,23,11,30,101600,100410,99260,99.33,0,5.88,6.37,6.6000000000000005,6.91,7.01,6.95,6.98,7.04,6.82,352.92,355.31,357.61,0.96,2.2,1.83,1.3800000000000001,0.9400000000000001,0.6,16.68,16.01,16.7,18.72,19.490000000000002,19.34,19.26,19.19,18.94,N/A,N/A -2012,1,23,12,30,101660,100460,99290,69.17,0,9.42,10.27,10.47,10.61,10.83,11.08,11.55,11.870000000000001,11.200000000000001,359.15000000000003,359.07,359.04,359.02,359.03000000000003,359.06,359.45,359.87,0.59,16.88,16.59,16.44,16.27,16.13,16.01,16.1,16.3,17.25,N/A,N/A -2012,1,23,13,30,101710,100500,99330,69.98,0,8.15,8.74,8.870000000000001,8.950000000000001,9.14,9.370000000000001,10.200000000000001,10.92,10.55,12.09,12.370000000000001,12.56,12.790000000000001,13.23,13.75,15.22,16.56,16.8,16.11,15.780000000000001,15.620000000000001,15.44,15.3,15.17,15.39,15.68,16.75,N/A,N/A -2012,1,23,14,30,101740,100530,99360,72.82000000000001,0,8.66,9.18,9.290000000000001,9.39,9.89,10.59,10.81,10.9,10.32,12.25,12.77,13.06,13.5,14.57,15.94,16.91,17.56,16.88,15.75,15.42,15.27,15.13,15.19,15.35,16.17,16.85,17.18,N/A,N/A -2012,1,23,15,30,101780,100570,99400,74.69,0,7.5600000000000005,8.040000000000001,8.11,8.13,8.17,8.21,8.59,8.99,9.65,28.88,29.080000000000002,29.21,29.36,29.560000000000002,29.77,30.38,30.830000000000002,30.54,15.5,15.14,14.96,14.780000000000001,14.620000000000001,14.47,14.42,14.51,15.73,N/A,N/A -2012,1,23,16,30,101780,100570,99390,75.24,0,6.23,6.59,6.65,6.66,6.67,6.67,6.72,6.8500000000000005,7.79,26.900000000000002,27.01,27.080000000000002,27.150000000000002,27.240000000000002,27.32,27.490000000000002,27.64,27.84,15.56,15.19,15.01,14.82,14.64,14.47,14.290000000000001,14.19,14.82,N/A,N/A -2012,1,23,17,30,101790,100580,99410,72.96000000000001,0,5.19,5.5200000000000005,5.58,5.62,5.63,5.65,5.66,5.67,5.73,39.6,39.32,39.13,38.93,38.71,38.49,38.2,37.9,36.95,15.860000000000001,15.51,15.33,15.14,14.94,14.76,14.56,14.38,14.01,N/A,N/A -2012,1,23,18,30,101790,100580,99410,68.93,0,4.17,4.39,4.44,4.45,4.46,4.47,4.5,4.55,5.01,41.58,41.04,40.59,40.07,39.46,38.83,37.79,36.53,30.59,16.42,16.1,15.93,15.74,15.56,15.38,15.200000000000001,15.040000000000001,14.86,N/A,N/A -2012,1,23,19,30,101800,100590,99430,69.5,0,2.98,3.08,3.09,3.11,3.37,3.7800000000000002,4.0200000000000005,4.23,4.7,63.56,62.74,61.78,60.14,54.6,46.74,43.13,40.45,36.65,16.63,16.330000000000002,16.17,16.01,15.96,15.98,16.04,16.080000000000002,16.06,N/A,N/A -2012,1,23,20,30,101760,100560,99390,70.72,0,2.83,2.95,3.02,3.18,3.5300000000000002,4.01,4.28,4.48,4.83,63.57,62.9,62.050000000000004,60.46,56.89,52.03,48.64,45.71,40.35,16.85,16.56,16.43,16.32,16.4,16.57,16.71,16.82,16.84,N/A,N/A -2012,1,23,21,30,101730,100530,99370,73.91,0,2.45,2.5500000000000003,2.74,3.23,3.62,3.93,4.19,4.42,4.76,63.52,62.940000000000005,61.85,59.36,56.4,53.300000000000004,49.78,46.4,40.35,17.02,16.740000000000002,16.66,16.66,16.8,17.01,17.2,17.38,17.51,N/A,N/A -2012,1,23,22,30,101710,100510,99340,76.93,0,2.23,2.35,2.47,2.73,3.09,3.52,3.8000000000000003,4.04,4.46,79.16,77.7,76.14,73.26,69.54,65.23,62.31,59.64,53.160000000000004,17.080000000000002,16.81,16.68,16.580000000000002,16.6,16.69,16.830000000000002,16.96,17.25,N/A,N/A -2012,1,23,23,30,101710,100510,99350,79.32000000000001,0,2.27,2.3000000000000003,2.47,3.02,3.43,3.74,4.04,4.34,4.82,94.27,94.39,92.32000000000001,86.45,82.62,80.15,77.31,74.52,68.52,17.04,16.76,16.67,16.68,16.77,16.91,17.13,17.330000000000002,17.6,N/A,N/A -2012,1,24,0,30,101710,100510,99350,78.9,0,2.42,2.97,3.3200000000000003,3.7600000000000002,4.18,4.6000000000000005,4.97,5.32,5.88,89.61,88.48,87.21000000000001,85.10000000000001,82.67,80.04,77.55,75.21000000000001,70.84,17.16,17.06,17.13,17.330000000000002,17.6,17.87,18.07,18.240000000000002,18.36,N/A,N/A -2012,1,24,1,30,101710,100510,99360,75.05,0,2.62,3.46,3.99,4.53,5.04,5.53,5.9,6.21,6.65,65.41,66.97,67.64,67.61,67.22,66.63,65.59,64.53,62.14,17.54,17.740000000000002,17.92,18.19,18.45,18.71,18.86,18.97,18.96,N/A,N/A -2012,1,24,2,30,101710,100520,99360,72.33,0,3.27,4.19,4.79,5.48,5.92,6.21,6.47,6.7,7.07,63.27,65.97,67.26,67.57000000000001,67.18,66.45,65.65,64.89,63.42,17.71,17.82,18.04,18.490000000000002,18.740000000000002,18.88,18.92,18.93,18.79,N/A,N/A -2012,1,24,3,30,101710,100520,99360,77.31,0,3.69,4.23,4.61,5.21,5.5200000000000005,5.66,5.76,5.84,5.97,67.7,68.24,68.95,70.17,70.57000000000001,70.53,70.98,71.62,74.99,17.54,17.41,17.6,18.150000000000002,18.43,18.56,18.59,18.6,18.54,N/A,N/A -2012,1,24,4,30,101710,100510,99360,73.43,0,3.42,4.48,5.36,6.79,8.120000000000001,9.38,9.66,9.73,9.14,53.59,56.76,59.33,62.67,66.5,70.58,75.31,79.32000000000001,81.04,17.73,17.87,18,18.19,18.150000000000002,18.02,18.1,18.21,18.55,N/A,N/A -2012,1,24,5,30,101700,100500,99340,79.51,0,6.43,7.34,7.72,8.120000000000001,8.56,9.01,9.59,10.15,10.97,78.02,78.94,79.67,80.63,81.87,83.22,85.09,87,91.33,17.650000000000002,17.51,17.43,17.35,17.29,17.26,17.31,17.38,17.8,N/A,N/A -2012,1,24,6,30,101700,100500,99340,80.2,0,7.48,8.44,8.82,9.17,9.56,9.96,10.5,11.01,11.540000000000001,81.09,81.85000000000001,82.43,83.16,84.15,85.2,87.03,89.17,96.29,17.650000000000002,17.47,17.37,17.26,17.17,17.11,17.16,17.28,18.13,N/A,N/A -2012,1,24,7,30,101700,100510,99350,80.24,0,7.98,8.950000000000001,9.31,9.63,9.950000000000001,10.26,10.67,11.09,11.94,85.16,85.62,85.99,86.43,86.97,87.55,88.57000000000001,89.82000000000001,95.69,17.62,17.42,17.31,17.17,17.06,16.96,16.91,16.92,17.52,N/A,N/A -2012,1,24,8,30,101700,100500,99340,81.5,0,7.17,8.11,8.47,8.790000000000001,9.09,9.370000000000001,9.700000000000001,10.03,10.83,89.19,89.4,89.57000000000001,89.82000000000001,90.17,90.57000000000001,91.5,92.60000000000001,97.22,17.57,17.36,17.240000000000002,17.09,16.96,16.84,16.77,16.73,17.13,N/A,N/A -2012,1,24,9,30,101690,100490,99330,82.34,0,7.44,8.48,8.89,9.26,9.6,9.92,10.28,10.63,11.33,86.48,87.14,87.67,88.31,89.09,89.9,91.18,92.52,96.68,17.57,17.38,17.26,17.14,17.03,16.93,16.9,16.9,17.29,N/A,N/A -2012,1,24,10,30,101680,100480,99320,82.06,0,7.28,8.18,8.51,8.8,9.09,9.370000000000001,9.71,10.05,10.99,88.2,88.75,89.19,89.72,90.34,91,91.97,93.05,98.23,17.62,17.42,17.29,17.14,17.01,16.88,16.77,16.68,16.86,N/A,N/A -2012,1,24,11,30,101680,100490,99330,83.37,0,7.44,8.36,8.700000000000001,9,9.290000000000001,9.56,9.91,10.26,11.200000000000001,90.60000000000001,91.13,91.53,91.99,92.55,93.14,93.94,94.78,100.31,17.59,17.38,17.240000000000002,17.09,16.94,16.81,16.68,16.57,16.73,N/A,N/A -2012,1,24,12,30,101670,100480,99320,85.43,0,7.5200000000000005,8.47,8.84,9.18,9.540000000000001,9.91,10.43,10.86,10.75,90.17,90.66,91.08,91.61,92.39,93.27,95.49,98.69,112.61,17.64,17.43,17.31,17.16,17.05,16.95,17.01,17.18,18.330000000000002,N/A,N/A -2012,1,24,13,30,101690,100490,99330,88.46000000000001,0,7.32,8.290000000000001,8.66,9.03,9.44,9.85,10.23,10.53,10.43,87.73,88.38,88.98,89.8,91.26,92.94,101.75,109.73,114.44,17.63,17.43,17.32,17.2,17.13,17.09,17.66,18.16,18.2,N/A,N/A -2012,1,24,14,30,101710,100520,99360,90.17,0,7.17,8.16,8.55,8.94,9.38,9.81,10.28,10.66,10.63,92.79,93.3,93.84,94.68,96.34,98.4,107.28,116.39,128.26,17.73,17.56,17.45,17.35,17.29,17.26,17.42,17.59,17.89,N/A,N/A -2012,1,24,15,30,101720,100520,99370,94.56,0.7000000000000001,7.38,8.38,8.790000000000001,9.21,9.67,10.14,10.57,10.94,11.24,92.95,94.03,95.03,96.5,100.21000000000001,105.02,117.12,128.36,133.78,17.56,17.36,17.26,17.16,17.2,17.3,17.78,18.22,18.36,N/A,N/A -2012,1,24,16,30,101680,100490,99330,96.66,1.1,7.63,8.620000000000001,9,9.36,9.68,9.96,10.15,10.32,10.73,93.27,93.47,93.72,94.14,95.54,97.35000000000001,104.32000000000001,111.60000000000001,127.31,17.53,17.31,17.19,17.07,17.02,17.01,17.25,17.5,17.96,N/A,N/A -2012,1,24,17,30,101650,100460,99310,97.29,0,5.62,6.67,7.12,7.58,8.27,9.120000000000001,9.4,9.56,9.6,94.9,96.8,99.35000000000001,103.88,111.13,120.08,122.97,124.58,127.34,17.89,17.8,17.77,17.76,18.150000000000002,18.740000000000002,18.900000000000002,18.96,18.84,N/A,N/A -2012,1,24,18,30,101650,100460,99310,89.2,0,6.140000000000001,7.48,8.08,8.66,9,9.21,9.26,9.290000000000001,9.47,97,98.94,101.01,104.37,107.74000000000001,110.95,113.12,114.88,117.62,18.5,18.62,18.75,18.96,19.080000000000002,19.16,19.05,18.92,18.64,N/A,N/A -2012,1,24,19,30,101600,100410,99260,94.04,0,7.7700000000000005,9.15,9.78,10.46,11.11,11.72,11.96,12.08,11.620000000000001,92.06,92.61,93.21000000000001,94.21000000000001,96.10000000000001,98.45,104.85000000000001,111.37,121.53,18.14,18.06,18.01,17.97,17.97,17.990000000000002,18.2,18.42,18.51,N/A,N/A -2012,1,24,20,30,101550,100350,99200,94.7,0,8.040000000000001,9.41,10,10.61,11.22,11.83,12.280000000000001,12.620000000000001,12.39,88.38,89.45,90.32000000000001,91.42,92.83,94.34,99.24000000000001,105.12,125.19,17.97,17.84,17.76,17.68,17.63,17.6,17.82,18.06,18.67,N/A,N/A -2012,1,24,21,30,101520,100320,99170,94.07000000000001,0,8.790000000000001,10.06,10.55,11.02,11.51,11.99,12.26,12.46,12.59,91.35000000000001,91.55,91.82000000000001,92.23,93.29,94.64,107.56,119.83,128.02,17.79,17.6,17.48,17.36,17.28,17.23,17.82,18.38,18.62,N/A,N/A -2012,1,24,22,30,101480,100280,99140,92.87,0,8.28,9.63,10.25,10.93,11.56,12.13,12.52,12.84,13.09,92.8,93.33,93.77,94.35000000000001,96.34,99.06,117,134.37,137.57,17.85,17.68,17.57,17.46,17.52,17.66,18.56,19.400000000000002,19.22,N/A,N/A -2012,1,24,23,30,101430,100240,99100,96.27,0,9.13,10.53,11.120000000000001,11.73,12.41,13.120000000000001,13.39,13.57,13.86,96.67,97.04,97.36,97.84,98.85000000000001,100.12,115.4,130.34,135,17.77,17.59,17.48,17.36,17.3,17.27,18.39,19.490000000000002,19.78,N/A,N/A -2012,1,25,0,30,101440,100250,99100,96.82000000000001,0,9.49,10.98,11.57,12.16,12.75,13.34,13.84,14.3,15.370000000000001,101.34,102.06,102.75,103.82000000000001,105.88,108.39,117.65,126.95,139.14000000000001,17.91,17.77,17.71,17.7,17.77,17.89,18.39,18.89,19.580000000000002,N/A,N/A -2012,1,25,1,30,101430,100240,99090,94.81,0,9.32,11,11.72,12.43,13.14,13.83,14.56,15.25,16.15,105.89,106.35000000000001,106.75,107.3,108.14,109.10000000000001,111.58,114.58,133.51,18.31,18.29,18.26,18.23,18.21,18.21,18.29,18.42,19.26,N/A,N/A -2012,1,25,2,30,101430,100240,99100,91.81,0,9.59,11.65,12.55,13.46,14.23,14.91,15.370000000000001,15.74,16.28,107.5,109.5,111.17,113.47,116.2,119.14,122.85000000000001,126.42,135.16,18.94,19.12,19.22,19.34,19.48,19.63,19.740000000000002,19.82,19.71,N/A,N/A -2012,1,25,3,30,101420,100240,99100,91.06,0,7.930000000000001,9.98,10.870000000000001,11.76,12.5,13.15,13.68,14.14,15.33,110.05,112.21000000000001,113.95,116.21000000000001,118.67,121.2,124.03,126.73,132.58,19.13,19.35,19.45,19.56,19.67,19.77,19.78,19.77,19.37,N/A,N/A -2012,1,25,4,30,101350,100170,99030,90.15,0,9.200000000000001,11.22,12.08,12.96,13.780000000000001,14.55,15.44,16.31,17.82,114.24000000000001,115.13,115.84,117.03,118.53,120.18,122.48,124.85000000000001,129.49,19.32,19.46,19.490000000000002,19.52,19.54,19.55,19.56,19.57,19.5,N/A,N/A -2012,1,25,5,30,101320,100140,99000,90.31,0,8.93,11.11,12.09,13.08,13.99,14.85,15.67,16.43,17.69,118.57000000000001,119.46000000000001,120.18,121.10000000000001,122.08,123.08,124.19,125.26,128.12,19.27,19.400000000000002,19.42,19.43,19.43,19.42,19.39,19.36,19.25,N/A,N/A -2012,1,25,6,30,101350,100160,99020,92.07000000000001,0,7.58,9.48,10.370000000000001,11.27,12.120000000000001,12.93,13.77,14.57,16.07,111.16,112.92,114.43,116.43,118.60000000000001,120.9,123.52,126.10000000000001,131.88,19.11,19.21,19.22,19.23,19.22,19.22,19.19,19.17,19.2,N/A,N/A -2012,1,25,7,30,101330,100150,99010,93.13,0,7.3,9.040000000000001,9.84,10.66,11.46,12.23,12.96,13.64,14.96,107.38,109.54,111.22,113.34,115.38,117.35000000000001,119.60000000000001,121.78,126.61,18.89,18.96,18.96,18.94,18.900000000000002,18.86,18.8,18.75,18.95,N/A,N/A -2012,1,25,8,30,101300,100120,98980,93.64,0,6.99,8.73,9.55,10.42,11.22,11.98,12.700000000000001,13.370000000000001,14.93,111.23,113.22,114.82000000000001,116.87,119,121.16,123.55,125.87,133.09,18.79,18.88,18.91,18.93,18.93,18.93,18.95,18.98,19.46,N/A,N/A -2012,1,25,9,30,101210,100030,98890,91.95,6.2,11.26,13.290000000000001,14.08,14.85,15.59,16.31,17,17.650000000000002,18.47,110,111.99000000000001,113.94,116.88,120.08,123.36,126.47,129.3,132.56,19.13,19.29,19.35,19.42,19.64,19.93,20.11,20.25,20.23,N/A,N/A -2012,1,25,10,30,101180,100000,98860,92.46000000000001,3.7,10.25,12.07,12.74,13.33,13.97,14.620000000000001,15.530000000000001,16.45,18.39,107.38,109.12,110.87,113.62,116.91,120.5,124.33,127.99000000000001,133.89000000000001,19.01,19.080000000000002,19.11,19.14,19.22,19.31,19.41,19.51,19.73,N/A,N/A -2012,1,25,11,30,101100,99930,98790,90.44,2.2,11.8,14.120000000000001,15.040000000000001,15.91,16.71,17.47,18.18,18.84,20.06,118.79,120.36,121.49000000000001,122.87,124.41,126.03,127.82000000000001,129.51,133.39000000000001,19.45,19.57,19.59,19.6,19.61,19.62,19.6,19.59,19.75,N/A,N/A -2012,1,25,12,30,101200,100020,98880,90.8,0,7.22,9.23,10.13,10.99,11.77,12.52,13.24,13.91,15.31,128.54,128.7,129.07,129.78,130.86,132.18,133.85,135.49,139.18,19.41,19.54,19.54,19.51,19.490000000000002,19.47,19.47,19.47,19.46,N/A,N/A -2012,1,25,13,30,101190,100010,98870,90.92,0,8.03,10.08,11.02,11.97,12.85,13.69,14.52,15.31,16.67,135.99,137.02,137.82,138.76,139.68,140.59,141.48,142.31,143.78,19.37,19.47,19.48,19.48,19.48,19.48,19.490000000000002,19.5,19.47,N/A,N/A -2012,1,25,14,30,101190,100010,98870,90.98,0,6.99,9.1,10.08,11.07,11.98,12.82,13.63,14.370000000000001,15.700000000000001,144.88,145.28,145.66,146.13,146.69,147.31,148.09,148.85,150.57,19.39,19.490000000000002,19.490000000000002,19.48,19.51,19.56,19.63,19.69,19.740000000000002,N/A,N/A -2012,1,25,15,30,101210,100030,98890,91.95,0.4,6.8500000000000005,8.73,9.65,10.69,11.73,12.790000000000001,13.73,14.6,15.99,136.2,139.15,141.28,143.66,145.51,147.03,148.33,149.5,152.38,19.19,19.42,19.53,19.67,19.82,19.96,20.07,20.16,20.19,N/A,N/A -2012,1,25,16,30,101210,100030,98890,91.36,0.7000000000000001,6.8,8.790000000000001,9.73,10.72,11.66,12.59,13.530000000000001,14.43,16.17,137.15,140.17000000000002,142.39000000000001,144.94,147.39000000000001,149.8,152.09,154.25,157.69,19.330000000000002,19.56,19.650000000000002,19.740000000000002,19.830000000000002,19.900000000000002,19.97,20.02,20.07,N/A,N/A -2012,1,25,17,30,101160,99980,98850,91.05,0,8.290000000000001,10.31,11.22,12.16,13.06,13.93,14.8,15.620000000000001,17.04,135.32,137.75,139.62,142,144.4,146.81,149.15,151.33,155.21,19.37,19.580000000000002,19.650000000000002,19.72,19.79,19.86,19.91,19.97,19.95,N/A,N/A -2012,1,25,18,30,101090,99910,98780,90.92,0.7000000000000001,8.57,10.72,11.700000000000001,12.72,13.63,14.47,15.18,15.82,16.67,141.58,143.33,144.68,146.34,148.12,149.95000000000002,151.91,153.76,157.4,19.41,19.73,19.89,20.06,20.22,20.38,20.490000000000002,20.57,20.56,N/A,N/A -2012,1,25,19,30,100980,99800,98670,89.62,0,9.35,11.540000000000001,12.450000000000001,13.280000000000001,13.950000000000001,14.530000000000001,14.97,15.34,15.85,135.19,137.12,138.91,141.45000000000002,144.52,147.88,151.26,154.4,158.78,19.69,20.05,20.21,20.38,20.55,20.69,20.77,20.82,20.68,N/A,N/A -2012,1,25,20,30,100900,99720,98590,91.11,0,8.1,10.13,11.01,11.870000000000001,12.57,13.17,13.75,14.27,14.55,120.67,122.72,124.54,127.04,130.12,133.47,137.56,141.65,153.41,19.35,19.55,19.63,19.73,19.830000000000002,19.91,19.95,19.98,20.26,N/A,N/A -2012,1,25,21,30,101070,99890,98750,96.55,306.2,2.07,2.95,3.1,3.1,3.18,3.3000000000000003,3.43,3.5700000000000003,4.08,246.41,240.95000000000002,238.27,235.82,231.23000000000002,225.53,220.57,216.09,207.4,18.44,19.51,19.77,19.54,19.330000000000002,19.16,19,18.85,18.55,N/A,N/A -2012,1,25,22,30,100940,99760,98620,95.2,4,5.33,6.8,7.43,7.99,8.51,9,9.58,10.14,11.24,163.07,165.93,168.52,171.81,174.92000000000002,177.85,181.07,184.25,192.61,18.48,18.400000000000002,18.330000000000002,18.22,18.14,18.080000000000002,18.03,17.98,18.02,N/A,N/A -2012,1,25,23,30,100960,99780,98630,95.43,0,6.63,7.87,8.38,8.870000000000001,9.35,9.82,10.17,10.44,10.17,165.44,166.62,167.88,169.8,172.49,175.54,179.18,182.8,191.54,18.38,18.28,18.21,18.14,18.12,18.13,18.14,18.14,18.01,N/A,N/A -2012,1,26,0,30,101010,99830,98690,96.44,0,5.24,6.24,6.640000000000001,7.03,7.59,8.28,8.26,8.120000000000001,8.290000000000001,172.09,171.84,171.81,172.14000000000001,171.16,169.32,185.53,202.73000000000002,209.32,18.21,18.14,18.09,18.03,17.97,17.92,18,18.1,18,N/A,N/A -2012,1,26,1,30,101030,99850,98710,95.55,0,3.95,5.13,5.39,5.05,4.98,5.12,5.22,5.28,5.36,177.83,180.82,192.59,223.46,239.54,246.11,251.21,255.48000000000002,260.66,18.44,18.490000000000002,18.52,18.580000000000002,18.580000000000002,18.53,18.45,18.36,18.14,N/A,N/A -2012,1,26,2,30,101110,99930,98780,94.64,0,4.25,5,4.99,4.78,4.51,4.24,3.91,3.63,4.07,189.19,201.35,210.6,220.47,226.02,229.1,236.48000000000002,243.75,277.48,18.64,18.64,18.5,18.23,18.01,17.82,17.6,17.42,17.28,N/A,N/A -2012,1,26,3,30,101180,99990,98840,96.28,0,2.9,3.95,4.28,4.49,4.67,4.83,4.74,4.63,4.62,197.1,209.93,219.83,231.04,237.61,241.52,252.61,263.21,270.57,18.35,18.2,18.05,17.85,17.72,17.62,17.53,17.44,17.27,N/A,N/A -2012,1,26,4,30,101200,100000,98840,91.13,0,7.68,8.23,8.33,8.36,8.45,8.55,8.700000000000001,8.77,8.11,285.41,285.86,286.26,286.83,287.93,289.21,292.07,294.83,298.94,17.13,16.82,16.65,16.47,16.3,16.14,16.07,16.05,16.4,N/A,N/A -2012,1,26,5,30,101270,100070,98910,90.32000000000001,0,5.28,5.58,5.62,5.62,5.63,5.65,5.76,5.8500000000000005,5.68,292.37,292.65000000000003,292.81,292.96,293.22,293.5,294.35,295.11,294.63,16.85,16.53,16.36,16.17,15.98,15.81,15.700000000000001,15.620000000000001,15.72,N/A,N/A -2012,1,26,6,30,101310,100110,98950,90.92,0,6.9,7.32,7.37,7.34,7.29,7.23,7.140000000000001,7.04,6.5600000000000005,279.09000000000003,279.34000000000003,279.48,279.61,279.74,279.87,280.06,280.25,281.1,16.21,15.85,15.67,15.48,15.290000000000001,15.11,14.92,14.74,14.44,N/A,N/A -2012,1,26,7,30,101320,100120,98950,89.52,0,5.73,6.01,6.03,6,5.95,5.89,5.79,5.66,5.08,276.34000000000003,276.22,276.15000000000003,276.05,275.88,275.68,275.09000000000003,274.18,269.07,15.950000000000001,15.6,15.42,15.23,15.040000000000001,14.870000000000001,14.700000000000001,14.56,14.540000000000001,N/A,N/A -2012,1,26,8,30,101320,100120,98950,91.32000000000001,0,6.67,7.09,7.15,7.16,7.140000000000001,7.11,7.07,7.0200000000000005,6.890000000000001,266.04,265.88,265.74,265.59000000000003,265.41,265.23,265,264.77,264.05,15.780000000000001,15.4,15.21,15.01,14.82,14.63,14.43,14.25,13.870000000000001,N/A,N/A -2012,1,26,9,30,101340,100130,98960,86.67,0,6.95,7.37,7.44,7.46,7.45,7.43,7.41,7.390000000000001,7.3500000000000005,270.54,270.33,270.17,270,269.81,269.62,269.38,269.13,268.4,14.69,14.26,14.07,13.88,13.68,13.51,13.31,13.14,12.8,N/A,N/A -2012,1,26,10,30,101370,100160,98990,88.81,0,8.48,9.08,9.21,9.26,9.27,9.28,9.27,9.25,9.200000000000001,275.41,274.94,274.59000000000003,274.24,273.90000000000003,273.58,273.22,272.88,272.12,14.530000000000001,14.06,13.85,13.65,13.44,13.26,13.06,12.870000000000001,12.49,N/A,N/A -2012,1,26,11,30,101420,100200,99020,92.36,0,9.58,10.24,10.39,10.44,10.450000000000001,10.46,10.44,10.42,10.36,280.45,280.36,280.3,280.24,280.15000000000003,280.07,279.96,279.84000000000003,279.52,12.86,12.280000000000001,12.040000000000001,11.82,11.61,11.42,11.200000000000001,11.01,10.61,N/A,N/A -2012,1,26,12,30,101440,100220,99040,92,0,7.68,8.15,8.25,8.28,8.290000000000001,8.290000000000001,8.28,8.27,8.25,278.5,278.13,277.86,277.59000000000003,277.33,277.08,276.78000000000003,276.49,275.82,12.620000000000001,12.07,11.84,11.63,11.41,11.22,11,10.8,10.39,N/A,N/A -2012,1,26,13,30,101480,100260,99070,88.53,0,9.200000000000001,9.85,10,10.06,10.1,10.11,10.11,10.11,10.09,279.43,279.74,279.96,280.17,280.37,280.54,280.73,280.91,281.26,12.61,12.040000000000001,11.81,11.59,11.38,11.19,10.98,10.8,10.41,N/A,N/A -2012,1,26,14,30,101520,100300,99120,86.18,0,8.51,9.15,9.31,9.4,9.46,9.51,9.53,9.56,9.6,279.06,279.40000000000003,279.63,279.82,280.02,280.19,280.36,280.52,280.86,12.92,12.370000000000001,12.14,11.92,11.700000000000001,11.5,11.290000000000001,11.1,10.700000000000001,N/A,N/A -2012,1,26,15,30,101510,100290,99110,85.63,0,8.01,8.56,8.700000000000001,8.77,8.82,8.86,8.88,8.9,8.92,294.49,294.59000000000003,294.61,294.63,294.65000000000003,294.66,294.67,294.67,294.69,12.530000000000001,11.98,11.75,11.53,11.32,11.13,10.92,10.73,10.34,N/A,N/A -2012,1,26,16,30,101510,100290,99110,81.64,0,6.12,6.55,6.67,6.74,6.8100000000000005,6.86,6.91,6.95,7.04,286.85,286.88,286.89,286.91,286.93,286.96,286.99,287.02,287.09000000000003,13.21,12.73,12.52,12.31,12.1,11.92,11.71,11.53,11.14,N/A,N/A -2012,1,26,17,30,101520,100310,99130,76.95,0,7.0600000000000005,7.57,7.71,7.79,7.86,7.9,7.94,7.97,8.02,291.71,292.02,292.21,292.39,292.55,292.7,292.85,292.98,293.26,14.040000000000001,13.58,13.370000000000001,13.16,12.950000000000001,12.76,12.55,12.36,11.97,N/A,N/A -2012,1,26,18,30,101510,100300,99120,73.91,0,7.05,7.58,7.72,7.8,7.86,7.91,7.94,7.97,8.02,292.5,292.61,292.67,292.73,292.78000000000003,292.82,292.86,292.90000000000003,292.98,14.63,14.19,13.99,13.780000000000001,13.57,13.38,13.18,12.98,12.59,N/A,N/A -2012,1,26,19,30,101530,100320,99140,73.08,0,8.52,9.14,9.27,9.33,9.35,9.36,9.35,9.34,9.31,303.75,303.27,303.01,302.78000000000003,302.55,302.35,302.13,301.94,301.53000000000003,14.82,14.38,14.17,13.96,13.76,13.57,13.370000000000001,13.17,12.780000000000001,N/A,N/A -2012,1,26,20,30,101520,100310,99130,74.06,0,7.65,8.24,8.39,8.48,8.540000000000001,8.58,8.620000000000001,8.64,8.68,289.08,289.23,289.31,289.37,289.43,289.49,289.54,289.59000000000003,289.69,14.48,14.02,13.81,13.61,13.4,13.21,13,12.8,12.41,N/A,N/A -2012,1,26,21,30,101540,100330,99150,71.81,0,6.75,7.29,7.46,7.5600000000000005,7.640000000000001,7.71,7.7700000000000005,7.82,7.9,300.62,301.28000000000003,301.61,301.89,302.14,302.36,302.58,302.76,303.12,14.94,14.52,14.32,14.120000000000001,13.91,13.73,13.52,13.33,12.93,N/A,N/A -2012,1,26,22,30,101560,100350,99170,72.62,0,10.56,11.61,11.9,12.07,12.19,12.280000000000001,12.34,12.4,12.48,314.74,314.81,314.84000000000003,314.87,314.91,314.93,314.96,314.99,315.05,15.280000000000001,14.84,14.63,14.42,14.22,14.02,13.82,13.620000000000001,13.23,N/A,N/A -2012,1,26,23,30,101630,100420,99240,72.01,0,10.3,11.22,11.450000000000001,11.58,11.66,11.72,11.76,11.790000000000001,11.83,329.34000000000003,329.21,329.12,329.02,328.92,328.83,328.7,328.59000000000003,328.34000000000003,14.93,14.47,14.26,14.06,13.85,13.66,13.46,13.280000000000001,12.9,N/A,N/A -2012,1,27,0,30,101680,100470,99290,74,0,6.83,7.3100000000000005,7.43,7.49,7.53,7.5600000000000005,7.58,7.6000000000000005,7.65,322.21,321.82,321.57,321.32,321.04,320.78000000000003,320.45,320.13,319.32,14.94,14.52,14.32,14.13,13.93,13.75,13.55,13.370000000000001,12.99,N/A,N/A -2012,1,27,1,30,101710,100500,99320,74.69,0,5.54,5.8500000000000005,5.91,5.94,5.94,5.95,5.95,5.94,5.95,330.55,329.89,329.39,328.89,328.35,327.85,327.25,326.66,325.2,15.1,14.700000000000001,14.51,14.32,14.120000000000001,13.94,13.74,13.56,13.19,N/A,N/A -2012,1,27,2,30,101750,100530,99360,76.57000000000001,0,4.28,4.45,4.47,4.47,4.46,4.45,4.47,4.53,4.98,345.62,344.91,344.43,343.88,343.11,342.33,340.71,338.66,330.40000000000003,14.72,14.33,14.15,13.96,13.780000000000001,13.61,13.44,13.31,13.23,N/A,N/A -2012,1,27,3,30,101760,100550,99370,74.75,0,2.3000000000000003,2.4,2.42,2.45,2.54,2.64,3.21,3.7800000000000002,4.4,325.58,324.8,324.3,323.7,322.67,321.53000000000003,318.84000000000003,316.44,315.19,15.040000000000001,14.69,14.52,14.35,14.18,14.030000000000001,14.07,14.13,14.23,N/A,N/A -2012,1,27,4,30,101790,100580,99410,74.85000000000001,0,2.99,3.14,3.18,3.21,3.25,3.29,3.37,3.54,4.5,306.61,307.09000000000003,307.15000000000003,307.23,307.36,307.49,307.7,308.01,309.16,15.31,14.96,14.780000000000001,14.6,14.41,14.24,14.05,13.9,13.790000000000001,N/A,N/A -2012,1,27,5,30,101830,100620,99440,78.33,0,3.04,3.13,3.12,3.1,3.08,3.06,3.0300000000000002,3.0100000000000002,2.97,347.62,345.85,344.64,343.42,342.21,341.11,339.81,338.59000000000003,335.88,15.13,14.76,14.57,14.38,14.19,14.01,13.8,13.620000000000001,13.24,N/A,N/A -2012,1,27,6,30,101880,100660,99490,80.5,0,2.62,2.64,2.61,2.56,2.5100000000000002,2.46,2.4,2.33,2.18,38.01,37.45,36.99,36.49,35.93,35.39,34.62,33.83,31.470000000000002,14.530000000000001,14.15,13.96,13.77,13.57,13.39,13.19,13.01,12.620000000000001,N/A,N/A -2012,1,27,7,30,101920,100710,99520,81.99,0,1.79,1.77,1.73,1.68,1.6300000000000001,1.58,1.53,1.47,1.36,28.37,26.46,25.25,23.94,22.3,20.72,18.19,15.44,4.97,14.26,13.88,13.700000000000001,13.5,13.31,13.13,12.94,12.75,12.39,N/A,N/A -2012,1,27,8,30,101940,100720,99540,82.60000000000001,0,1.47,1.5,1.49,1.48,1.49,1.49,1.5,1.52,1.62,358.03000000000003,354.8,352.65000000000003,350.47,348.13,345.95,343.21,340.56,334.3,14.32,13.950000000000001,13.76,13.57,13.38,13.200000000000001,13,12.82,12.46,N/A,N/A -2012,1,27,9,30,101940,100720,99540,78.81,0,2.97,3.09,3.1,3.09,3.09,3.08,3.0700000000000003,3.06,3.0300000000000002,339.89,339.86,339.87,339.89,339.92,339.94,339.98,340.02,340.13,14.55,14.17,13.98,13.780000000000001,13.58,13.4,13.19,13,12.620000000000001,N/A,N/A -2012,1,27,10,30,101960,100740,99560,76.05,0,3.73,3.88,3.89,3.89,3.89,3.88,3.86,3.85,3.83,0.35000000000000003,0.68,0.88,1.07,1.27,1.46,1.68,1.9000000000000001,2.42,14.42,14.02,13.83,13.64,13.44,13.26,13.06,12.88,12.5,N/A,N/A -2012,1,27,11,30,101980,100760,99580,76.04,0,3.96,4.09,4.09,4.07,4.04,4.01,3.98,3.94,3.85,17.490000000000002,17.89,18.12,18.330000000000002,18.56,18.78,19.02,19.25,19.76,14.27,13.870000000000001,13.68,13.48,13.290000000000001,13.11,12.91,12.73,12.36,N/A,N/A -2012,1,27,12,30,101990,100770,99590,73.52,0,3.5700000000000003,3.69,3.69,3.68,3.65,3.63,3.6,3.5700000000000003,3.49,31.650000000000002,31.98,32.14,32.3,32.45,32.6,32.78,32.95,33.37,14.22,13.82,13.63,13.44,13.24,13.06,12.85,12.67,12.290000000000001,N/A,N/A -2012,1,27,13,30,102010,100790,99610,71.71000000000001,0,3.34,3.45,3.44,3.42,3.4,3.38,3.35,3.3200000000000003,3.25,60.99,61.83,62.35,62.88,63.42,63.9,64.48,65.04,66.38,14.200000000000001,13.81,13.620000000000001,13.42,13.22,13.040000000000001,12.84,12.65,12.27,N/A,N/A -2012,1,27,14,30,102020,100800,99620,72.29,0,3.65,3.79,3.81,3.8000000000000003,3.79,3.77,3.75,3.73,3.69,77.19,77.82000000000001,78.26,78.69,79.13,79.52,80.01,80.48,81.60000000000001,14.290000000000001,13.89,13.700000000000001,13.5,13.3,13.120000000000001,12.91,12.73,12.34,N/A,N/A -2012,1,27,15,30,102000,100780,99600,72.46000000000001,0,4.14,4.33,4.3500000000000005,4.36,4.3500000000000005,4.3500000000000005,4.33,4.32,4.28,91.09,91.60000000000001,91.94,92.27,92.60000000000001,92.91,93.28,93.64,94.48,14.46,14.06,13.870000000000001,13.67,13.47,13.280000000000001,13.08,12.9,12.51,N/A,N/A -2012,1,27,16,30,101970,100760,99570,72.19,0,4.48,4.7,4.74,4.75,4.75,4.75,4.74,4.73,4.7,102.58,103.05,103.31,103.55,103.8,104.04,104.33,104.60000000000001,105.25,14.700000000000001,14.3,14.11,13.91,13.71,13.530000000000001,13.32,13.14,12.75,N/A,N/A -2012,1,27,17,30,101940,100730,99550,72.21000000000001,0,4.67,4.93,4.97,5,5.01,5.01,5.01,5.01,5,115.32000000000001,115.67,115.91,116.15,116.38,116.60000000000001,116.85000000000001,117.08,117.64,14.950000000000001,14.56,14.36,14.16,13.97,13.780000000000001,13.58,13.39,13.01,N/A,N/A -2012,1,27,18,30,101910,100700,99520,71.7,0,5.08,5.38,5.44,5.48,5.49,5.51,5.51,5.51,5.51,124.32000000000001,124.59,124.77,124.95,125.12,125.27,125.45,125.62,126.01,15.22,14.83,14.64,14.44,14.24,14.06,13.86,13.67,13.280000000000001,N/A,N/A -2012,1,27,19,30,101890,100680,99500,71.59,0,5.55,5.93,6.01,6.0600000000000005,6.09,6.11,6.13,6.140000000000001,6.15,134.82,135.07,135.2,135.33,135.47,135.59,135.72,135.84,136.11,15.57,15.200000000000001,15.01,14.81,14.61,14.43,14.22,14.030000000000001,13.65,N/A,N/A -2012,1,27,20,30,101860,100650,99480,73.57000000000001,0,5.71,6.11,6.21,6.26,6.3,6.32,6.34,6.3500000000000005,6.37,145.05,145.3,145.45000000000002,145.59,145.73,145.87,146.01,146.14000000000001,146.44,15.81,15.44,15.26,15.06,14.86,14.67,14.47,14.280000000000001,13.89,N/A,N/A -2012,1,27,21,30,101840,100630,99450,73.98,0,5.82,6.25,6.36,6.41,6.45,6.48,6.5,6.5200000000000005,6.54,154.02,154.37,154.58,154.79,154.98,155.16,155.36,155.54,155.92000000000002,16.02,15.66,15.48,15.280000000000001,15.08,14.9,14.69,14.5,14.11,N/A,N/A -2012,1,27,22,30,101800,100590,99420,74.65,0,6.15,6.640000000000001,6.7700000000000005,6.84,6.890000000000001,6.93,6.96,6.98,7.0200000000000005,162.97,163.36,163.59,163.8,164.01,164.20000000000002,164.4,164.59,164.99,16.27,15.93,15.75,15.55,15.35,15.16,14.96,14.780000000000001,14.38,N/A,N/A -2012,1,27,23,30,101800,100600,99430,75,0,5.88,6.390000000000001,6.5200000000000005,6.6000000000000005,6.67,6.71,6.75,6.78,6.83,167.64000000000001,168.1,168.38,168.64000000000001,168.89000000000001,169.12,169.36,169.58,170.04,16.580000000000002,16.26,16.080000000000002,15.89,15.69,15.51,15.31,15.120000000000001,14.73,N/A,N/A -2012,1,28,0,30,101820,100610,99440,77.29,0,5.92,6.46,6.61,6.7,6.7700000000000005,6.82,6.86,6.890000000000001,6.95,172.36,172.72,172.94,173.15,173.35,173.53,173.70000000000002,173.87,174.23,16.830000000000002,16.53,16.35,16.16,15.97,15.780000000000001,15.58,15.39,15,N/A,N/A -2012,1,28,1,30,101840,100630,99470,79.10000000000001,0,6.01,6.59,6.76,6.86,6.93,6.99,7.03,7.07,7.140000000000001,176.35,176.74,176.97,177.18,177.38,177.55,177.73,177.9,178.23,17.080000000000002,16.79,16.62,16.43,16.240000000000002,16.06,15.860000000000001,15.67,15.280000000000001,N/A,N/A -2012,1,28,2,30,101860,100660,99490,78.92,0,5.21,5.73,5.88,5.98,6.0600000000000005,6.12,6.17,6.21,6.29,179.57,180.20000000000002,180.58,180.95000000000002,181.28,181.58,181.88,182.15,182.69,17.35,17.09,16.92,16.73,16.55,16.37,16.17,15.98,15.6,N/A,N/A -2012,1,28,3,30,101880,100680,99510,79.5,0,5,5.46,5.59,5.69,5.7700000000000005,5.84,5.9,5.96,6.09,199.9,198.85,198.25,197.63,197.05,196.51,195.97,195.47,194.47,17.41,17.16,17,16.81,16.62,16.45,16.25,16.07,15.69,N/A,N/A -2012,1,28,4,30,101890,100690,99530,79.05,0,6.3,6.98,7.17,7.24,7.28,7.32,7.3100000000000005,7.28,7.18,188.11,188.72,189.04,189.36,189.72,190.1,190.44,190.75,191.32,17.52,17.3,17.14,16.96,16.78,16.61,16.41,16.23,15.84,N/A,N/A -2012,1,28,5,30,101930,100730,99570,82.19,0,3.94,4.46,4.67,4.84,4.99,5.13,5.24,5.3500000000000005,5.5,184.62,185,185.34,185.74,186.11,186.47,186.8,187.09,187.52,17.48,17.26,17.11,16.94,16.77,16.6,16.43,16.26,15.9,N/A,N/A -2012,1,28,6,30,101980,100780,99620,83.46000000000001,0,3.0500000000000003,3.58,3.79,3.97,4.12,4.26,4.42,4.57,4.84,178,179.47,180.75,182.49,184.44,186.44,188.93,191.31,195.4,17.48,17.31,17.2,17.06,16.92,16.79,16.65,16.52,16.23,N/A,N/A -2012,1,28,7,30,102030,100830,99670,86.61,0,2.6,3.14,3.37,3.6,3.81,4.0200000000000005,4.22,4.41,4.75,176.70000000000002,178.49,179.66,180.73,181.55,182.20000000000002,182.68,183.14000000000001,184.88,17.38,17.21,17.09,16.95,16.8,16.66,16.5,16.36,16.080000000000002,N/A,N/A -2012,1,28,8,30,102060,100860,99690,86.31,0,2.84,3.44,3.73,3.99,4.19,4.34,4.34,4.3100000000000005,4.33,177.56,180.09,181.61,182.75,185.21,188.29,191.59,194.61,201.28,17.35,17.23,17.14,17.04,16.95,16.86,16.75,16.65,16.42,N/A,N/A -2012,1,28,9,30,102110,100910,99740,87.87,0,1.94,2.46,2.65,2.73,2.73,2.67,2.65,2.64,2.79,170.67000000000002,178.16,184.04,190.87,195.41,198.55,201.46,203.95000000000002,207.59,17.27,17.18,17.12,17.04,16.95,16.86,16.75,16.65,16.38,N/A,N/A -2012,1,28,10,30,102170,100970,99800,91.84,0,0.87,1.33,1.51,1.61,1.6,1.52,1.5,1.48,1.57,182.91,189.34,193.73000000000002,198.01,203.4,208.74,216.67000000000002,224.11,239.09,17.16,17.05,16.96,16.84,16.73,16.61,16.52,16.44,16.26,N/A,N/A -2012,1,28,11,30,102220,101010,99850,90.03,0,0.6,0.76,0.86,0.99,1.1,1.21,1.35,1.5,1.82,292.01,281.35,276.18,274.32,277.09000000000003,282.35,287.94,293.29,301.23,17.07,16.94,16.86,16.76,16.64,16.53,16.42,16.32,16.09,N/A,N/A -2012,1,28,12,30,102310,101100,99940,91.48,0,2.42,2.84,3.0100000000000002,3.1,3.17,3.23,3.36,3.5,3.85,331.46,328.91,326.95,324.85,322.78000000000003,320.81,319.81,319.2,321.27,16.94,16.85,16.79,16.68,16.56,16.44,16.31,16.2,15.96,N/A,N/A -2012,1,28,13,30,102400,101190,100010,97.51,0,8.16,8.66,8.72,8.69,8.64,8.57,8.48,8.38,8.03,346.65000000000003,346.71,346.67,346.6,346.49,346.37,346.13,345.90000000000003,345.77,15.34,14.950000000000001,14.77,14.6,14.44,14.290000000000001,14.16,14.030000000000001,13.8,N/A,N/A -2012,1,28,14,30,102500,101270,100080,93.74,0,10.68,11.53,11.71,11.78,11.8,11.81,11.8,11.8,11.82,13.93,14.05,14.08,14.120000000000001,14.17,14.21,14.27,14.33,14.530000000000001,14.02,13.51,13.3,13.09,12.9,12.72,12.530000000000001,12.36,12.01,N/A,N/A -2012,1,28,15,30,102540,101310,100120,78.75,0,11.200000000000001,12.09,12.280000000000001,12.36,12.39,12.41,12.41,12.42,12.5,20.35,20.41,20.46,20.52,20.57,20.62,20.69,20.76,20.990000000000002,13.64,13.1,12.88,12.68,12.48,12.3,12.11,11.93,11.6,N/A,N/A -2012,1,28,16,30,102560,101330,100140,70.02,0,10.64,11.5,11.69,11.77,11.81,11.83,11.84,11.85,11.88,21.09,21.23,21.330000000000002,21.43,21.56,21.67,21.81,21.96,22.38,13.700000000000001,13.18,12.96,12.76,12.56,12.38,12.18,12,11.65,N/A,N/A -2012,1,28,17,30,102600,101370,100180,65.59,0,9.94,10.78,10.98,11.08,11.15,11.200000000000001,11.22,11.25,11.28,21.080000000000002,21.25,21.37,21.48,21.59,21.69,21.81,21.93,22.2,14.14,13.65,13.43,13.23,13.02,12.83,12.63,12.44,12.05,N/A,N/A -2012,1,28,18,30,102630,101410,100220,61.99,0,9.09,9.88,10.08,10.19,10.27,10.33,10.370000000000001,10.4,10.46,21.55,21.7,21.78,21.86,21.93,22,22.07,22.14,22.28,14.77,14.33,14.120000000000001,13.91,13.71,13.52,13.32,13.13,12.74,N/A,N/A -2012,1,28,19,30,102660,101440,100250,59.18,0,8.77,9.55,9.76,9.88,9.97,10.03,10.08,10.120000000000001,10.18,22.28,22.400000000000002,22.46,22.51,22.55,22.59,22.63,22.66,22.73,15.46,15.06,14.870000000000001,14.67,14.46,14.27,14.07,13.88,13.49,N/A,N/A -2012,1,28,20,30,102660,101440,100260,56.31,0,8.69,9.48,9.68,9.81,9.9,9.96,10.01,10.05,10.11,21.84,21.89,21.93,21.96,21.98,22,22.02,22.04,22.07,15.91,15.540000000000001,15.36,15.16,14.96,14.77,14.56,14.38,13.98,N/A,N/A -2012,1,28,21,30,102690,101470,100290,54.01,0,8.53,9.32,9.53,9.65,9.74,9.81,9.85,9.89,9.950000000000001,21.54,21.650000000000002,21.72,21.78,21.84,21.89,21.94,21.98,22.07,16.2,15.860000000000001,15.68,15.48,15.280000000000001,15.1,14.89,14.700000000000001,14.31,N/A,N/A -2012,1,28,22,30,102710,101490,100310,51.31,0,8.89,9.700000000000001,9.91,10.03,10.11,10.17,10.200000000000001,10.23,10.26,19,19.27,19.45,19.61,19.77,19.91,20.05,20.18,20.45,16.19,15.84,15.65,15.46,15.26,15.07,14.870000000000001,14.68,14.290000000000001,N/A,N/A -2012,1,28,23,30,102770,101550,100360,49.93,0,9.33,10.17,10.39,10.5,10.58,10.63,10.66,10.69,10.71,21.990000000000002,21.88,21.81,21.740000000000002,21.68,21.62,21.56,21.5,21.39,15.870000000000001,15.5,15.31,15.11,14.91,14.72,14.52,14.33,13.93,N/A,N/A -2012,1,29,0,30,102850,101620,100430,52.21,0,10.3,11.200000000000001,11.42,11.53,11.59,11.63,11.64,11.65,11.64,19.06,19.37,19.55,19.71,19.87,20.01,20.16,20.29,20.56,15.13,14.700000000000001,14.5,14.3,14.09,13.9,13.700000000000001,13.51,13.11,N/A,N/A -2012,1,29,1,30,102890,101660,100470,55.29,0,10.47,11.38,11.6,11.72,11.790000000000001,11.84,11.86,11.88,11.88,21.46,21.76,21.95,22.13,22.31,22.47,22.64,22.8,23.14,14.33,13.85,13.64,13.43,13.22,13.030000000000001,12.82,12.63,12.24,N/A,N/A -2012,1,29,2,30,102930,101690,100500,57.57,0,10.4,11.28,11.49,11.61,11.67,11.72,11.74,11.76,11.77,28.650000000000002,28.92,29.080000000000002,29.23,29.38,29.51,29.66,29.8,30.11,13.82,13.3,13.08,12.870000000000001,12.66,12.47,12.27,12.08,11.69,N/A,N/A -2012,1,29,3,30,102950,101720,100520,58.74,0,10.58,11.450000000000001,11.66,11.76,11.82,11.86,11.870000000000001,11.88,11.870000000000001,35.18,35.4,35.54,35.660000000000004,35.79,35.9,36.03,36.160000000000004,36.42,13.450000000000001,12.91,12.69,12.48,12.27,12.08,11.870000000000001,11.68,11.3,N/A,N/A -2012,1,29,4,30,102950,101710,100510,60.47,0,9.98,10.77,10.96,11.06,11.11,11.15,11.16,11.17,11.18,40.08,40.37,40.54,40.71,40.87,41.02,41.19,41.35,41.71,13.290000000000001,12.75,12.530000000000001,12.32,12.11,11.92,11.72,11.53,11.15,N/A,N/A -2012,1,29,5,30,102950,101710,100510,63.1,0,9.31,10.02,10.18,10.26,10.31,10.34,10.35,10.35,10.34,43.61,43.980000000000004,44.22,44.45,44.660000000000004,44.86,45.07,45.27,45.7,13.3,12.77,12.55,12.34,12.13,11.94,11.74,11.55,11.17,N/A,N/A -2012,1,29,6,30,102980,101740,100540,66.63,0,8.870000000000001,9.53,9.69,9.77,9.82,9.85,9.870000000000001,9.88,9.88,48.64,49.02,49.24,49.44,49.63,49.79,49.980000000000004,50.15,50.51,13.22,12.69,12.47,12.26,12.05,11.86,11.65,11.46,11.07,N/A,N/A -2012,1,29,7,30,103010,101780,100580,61.27,0,9.59,10.33,10.51,10.6,10.66,10.69,10.71,10.72,10.71,52.64,52.86,52.99,53.11,53.230000000000004,53.33,53.45,53.550000000000004,53.79,13.36,12.82,12.6,12.39,12.18,11.99,11.78,11.59,11.200000000000001,N/A,N/A -2012,1,29,8,30,103010,101770,100570,62.88,0,8.44,9.05,9.19,9.26,9.3,9.33,9.34,9.34,9.34,56.44,56.800000000000004,57.02,57.22,57.410000000000004,57.59,57.78,57.96,58.34,13.38,12.86,12.65,12.44,12.23,12.040000000000001,11.84,11.65,11.26,N/A,N/A -2012,1,29,9,30,103020,101780,100580,63.72,0,9.040000000000001,9.700000000000001,9.85,9.92,9.96,9.97,9.97,9.97,9.94,51.65,52.04,52.29,52.52,52.74,52.94,53.15,53.36,53.78,13.24,12.71,12.48,12.27,12.06,11.870000000000001,11.66,11.47,11.08,N/A,N/A -2012,1,29,10,30,103030,101800,100600,63.74,0,9.200000000000001,9.89,10.05,10.13,10.17,10.200000000000001,10.21,10.21,10.200000000000001,53.17,53.410000000000004,53.59,53.76,53.92,54.07,54.22,54.370000000000005,54.69,13.26,12.72,12.5,12.290000000000001,12.08,11.89,11.68,11.49,11.1,N/A,N/A -2012,1,29,11,30,103050,101820,100610,62.75,0,8.83,9.49,9.64,9.72,9.76,9.790000000000001,9.8,9.8,9.8,59.120000000000005,59.370000000000005,59.550000000000004,59.72,59.89,60.04,60.2,60.35,60.660000000000004,13.33,12.8,12.58,12.370000000000001,12.16,11.97,11.76,11.57,11.18,N/A,N/A -2012,1,29,12,30,103080,101840,100640,62.5,0,8.38,8.99,9.14,9.22,9.27,9.3,9.31,9.32,9.33,61.57,61.79,61.92,62.04,62.160000000000004,62.26,62.370000000000005,62.46,62.660000000000004,13.41,12.89,12.67,12.46,12.25,12.06,11.85,11.66,11.27,N/A,N/A -2012,1,29,13,30,103090,101850,100650,66.75,0,8.36,8.96,9.1,9.18,9.22,9.24,9.25,9.26,9.26,61.68,61.92,62.06,62.18,62.29,62.39,62.5,62.6,62.81,13.27,12.75,12.530000000000001,12.32,12.1,11.92,11.71,11.52,11.13,N/A,N/A -2012,1,29,14,30,103130,101890,100690,62.03,0,8.45,9.06,9.200000000000001,9.27,9.31,9.34,9.35,9.36,9.35,63.39,63.51,63.58,63.63,63.68,63.730000000000004,63.77,63.82,63.9,13.32,12.790000000000001,12.58,12.36,12.15,11.96,11.76,11.56,11.17,N/A,N/A -2012,1,29,15,30,103150,101910,100710,58.13,0,8.35,8.94,9.08,9.15,9.18,9.200000000000001,9.21,9.21,9.200000000000001,65.87,66.06,66.19,66.3,66.42,66.52,66.63,66.73,66.95,13.41,12.9,12.68,12.47,12.26,12.07,11.86,11.67,11.28,N/A,N/A -2012,1,29,16,30,103140,101910,100700,55.870000000000005,0,7.71,8.24,8.36,8.42,8.45,8.47,8.47,8.47,8.46,66.44,66.71000000000001,66.86,67,67.14,67.27,67.4,67.53,67.8,13.450000000000001,12.950000000000001,12.74,12.530000000000001,12.32,12.14,11.93,11.74,11.35,N/A,N/A -2012,1,29,17,30,103130,101890,100690,59.7,0,7.11,7.57,7.67,7.72,7.74,7.75,7.75,7.75,7.73,65.12,65.45,65.67,65.87,66.06,66.23,66.41,66.58,66.95,13.52,13.040000000000001,12.83,12.620000000000001,12.41,12.23,12.02,11.83,11.44,N/A,N/A -2012,1,29,18,30,103130,101890,100690,57.44,0,6.46,6.8500000000000005,6.94,6.97,6.99,7,7,6.99,6.98,66.63,66.94,67.13,67.32000000000001,67.5,67.66,67.84,68,68.36,13.67,13.200000000000001,12.99,12.790000000000001,12.58,12.39,12.19,12,11.61,N/A,N/A -2012,1,29,19,30,103110,101880,100680,58.6,0,5.96,6.3,6.38,6.41,6.42,6.43,6.43,6.43,6.41,68.1,68.46000000000001,68.69,68.91,69.12,69.3,69.51,69.69,70.10000000000001,13.780000000000001,13.33,13.120000000000001,12.92,12.72,12.530000000000001,12.32,12.13,11.74,N/A,N/A -2012,1,29,20,30,103060,101830,100630,58.47,0,5.38,5.67,5.73,5.75,5.76,5.76,5.76,5.76,5.74,68.72,69.13,69.42,69.68,69.92,70.15,70.41,70.64,71.16,13.94,13.5,13.3,13.1,12.89,12.71,12.5,12.31,11.92,N/A,N/A -2012,1,29,21,30,103010,101780,100580,58.39,0,5,5.26,5.3100000000000005,5.33,5.34,5.34,5.34,5.33,5.32,70.58,70.93,71.13,71.31,71.5,71.68,71.87,72.05,72.46000000000001,14.1,13.67,13.48,13.27,13.07,12.89,12.68,12.49,12.11,N/A,N/A -2012,1,29,22,30,102960,101730,100530,59.6,0,4.74,4.98,5.03,5.04,5.05,5.0600000000000005,5.05,5.05,5.04,74.96000000000001,75.21000000000001,75.35000000000001,75.48,75.62,75.75,75.9,76.04,76.37,14.26,13.84,13.65,13.450000000000001,13.25,13.07,12.870000000000001,12.68,12.3,N/A,N/A -2012,1,29,23,30,102920,101700,100500,56.620000000000005,0,4.83,5.1000000000000005,5.15,5.17,5.19,5.19,5.2,5.2,5.21,78.97,79.07000000000001,79.11,79.16,79.22,79.26,79.32000000000001,79.37,79.48,14.56,14.16,13.97,13.77,13.58,13.4,13.200000000000001,13.01,12.64,N/A,N/A -2012,1,30,0,30,102920,101690,100500,54.63,0,4.97,5.26,5.32,5.3500000000000005,5.37,5.38,5.39,5.4,5.42,88.33,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.36,14.86,14.46,14.27,14.08,13.88,13.700000000000001,13.5,13.32,12.94,N/A,N/A -2012,1,30,1,30,102900,101670,100480,52.47,0,5.16,5.48,5.55,5.59,5.62,5.63,5.64,5.66,5.68,93.25,93.29,93.31,93.32000000000001,93.33,93.34,93.36,93.38,93.4,15.18,14.8,14.61,14.41,14.21,14.030000000000001,13.83,13.65,13.26,N/A,N/A -2012,1,30,2,30,102880,101660,100470,53.050000000000004,0,5.21,5.53,5.61,5.64,5.66,5.68,5.69,5.7,5.71,97.95,98.02,98.06,98.09,98.12,98.15,98.18,98.22,98.28,15.39,15.02,14.83,14.64,14.44,14.25,14.05,13.870000000000001,13.48,N/A,N/A -2012,1,30,3,30,102870,101640,100450,55.83,0,4.98,5.28,5.3500000000000005,5.39,5.41,5.43,5.44,5.44,5.45,102.54,102.66,102.75,102.82000000000001,102.91,102.98,103.06,103.14,103.31,15.49,15.120000000000001,14.94,14.74,14.540000000000001,14.36,14.15,13.97,13.58,N/A,N/A -2012,1,30,4,30,102840,101610,100430,58.92,0,4.95,5.2700000000000005,5.3500000000000005,5.39,5.42,5.44,5.46,5.47,5.49,105.55,105.87,106.07000000000001,106.26,106.43,106.59,106.77,106.93,107.28,15.67,15.31,15.13,14.93,14.73,14.55,14.34,14.16,13.77,N/A,N/A -2012,1,30,5,30,102820,101600,100410,59.58,0,5.12,5.47,5.55,5.6000000000000005,5.63,5.66,5.67,5.69,5.71,113.43,113.71000000000001,113.87,114.02,114.16,114.29,114.43,114.57000000000001,114.85000000000001,15.870000000000001,15.52,15.33,15.14,14.94,14.75,14.55,14.36,13.97,N/A,N/A -2012,1,30,6,30,102820,101600,100410,62.75,0,4.66,4.98,5.0600000000000005,5.11,5.14,5.16,5.18,5.2,5.22,116.06,116.32000000000001,116.51,116.68,116.85000000000001,117,117.17,117.33,117.67,15.96,15.620000000000001,15.44,15.25,15.05,14.870000000000001,14.67,14.48,14.09,N/A,N/A -2012,1,30,7,30,102820,101600,100410,61.95,0,4.89,5.25,5.34,5.39,5.43,5.46,5.48,5.5,5.53,114.61,115.05,115.31,115.55,115.78,115.99000000000001,116.21000000000001,116.42,116.85000000000001,16.25,15.93,15.75,15.56,15.36,15.18,14.98,14.790000000000001,14.4,N/A,N/A -2012,1,30,8,30,102800,101580,100390,62.2,0,4.8500000000000005,5.21,5.3,5.3500000000000005,5.38,5.41,5.43,5.44,5.46,121,121.39,121.59,121.78,121.95,122.09,122.25,122.4,122.7,16.4,16.080000000000002,15.91,15.72,15.52,15.33,15.13,14.950000000000001,14.56,N/A,N/A -2012,1,30,9,30,102770,101550,100370,63.82,0,4.42,4.72,4.79,4.83,4.8500000000000005,4.87,4.88,4.89,4.9,122.52,122.78,122.95,123.11,123.26,123.4,123.55,123.68,123.98,16.44,16.12,15.950000000000001,15.75,15.56,15.370000000000001,15.17,14.98,14.59,N/A,N/A -2012,1,30,10,30,102750,101530,100350,67.16,0,4.05,4.33,4.4,4.44,4.46,4.49,4.5,4.51,4.54,124.98,125.34,125.58,125.81,126.03,126.23,126.45,126.65,127.09,16.490000000000002,16.18,16,15.81,15.610000000000001,15.43,15.23,15.040000000000001,14.65,N/A,N/A -2012,1,30,11,30,102740,101520,100340,71.37,0,4.01,4.3100000000000005,4.39,4.43,4.47,4.5,4.5200000000000005,4.54,4.58,123.46000000000001,124.12,124.53,124.93,125.3,125.62,125.97,126.3,126.96000000000001,16.54,16.23,16.06,15.870000000000001,15.67,15.49,15.290000000000001,15.1,14.71,N/A,N/A -2012,1,30,12,30,102720,101510,100330,72.24,0,4.34,4.68,4.7700000000000005,4.82,4.86,4.89,4.92,4.94,4.98,122.95,123.56,123.95,124.32000000000001,124.67,125,125.33,125.64,126.29,16.69,16.39,16.22,16.03,15.83,15.65,15.450000000000001,15.27,14.88,N/A,N/A -2012,1,30,13,30,102700,101490,100310,71.83,0,4.33,4.7,4.79,4.8500000000000005,4.89,4.92,4.95,4.97,5,122.4,122.84,123.14,123.43,123.69,123.93,124.18,124.41,124.9,16.95,16.68,16.51,16.32,16.13,15.950000000000001,15.75,15.56,15.18,N/A,N/A -2012,1,30,14,30,102720,101500,100320,72.96000000000001,0,4.96,5.39,5.5,5.5600000000000005,5.6000000000000005,5.62,5.65,5.66,5.69,123.34,123.73,124,124.25,124.49000000000001,124.71000000000001,124.95,125.17,125.64,17.03,16.76,16.59,16.41,16.21,16.03,15.83,15.65,15.26,N/A,N/A -2012,1,30,15,30,102720,101500,100330,75.64,0,5.22,5.69,5.82,5.89,5.95,5.98,6.01,6.04,6.07,120.53,120.96000000000001,121.25,121.53,121.8,122.06,122.33,122.58,123.12,17.11,16.84,16.67,16.48,16.3,16.12,15.92,15.73,15.35,N/A,N/A -2012,1,30,16,30,102700,101490,100310,77.23,0,5.4,5.91,6.04,6.12,6.18,6.22,6.26,6.29,6.34,121.78,122.14,122.4,122.67,122.93,123.18,123.46000000000001,123.72,124.3,17.23,16.97,16.8,16.62,16.43,16.25,16.05,15.870000000000001,15.49,N/A,N/A -2012,1,30,17,30,102670,101460,100290,76.86,0,5.68,6.24,6.4,6.5,6.57,6.63,6.67,6.71,6.78,123.45,123.99000000000001,124.33,124.66,124.97,125.25,125.54,125.81,126.39,17.45,17.2,17.05,16.87,16.68,16.51,16.32,16.14,15.76,N/A,N/A -2012,1,30,18,30,102640,101430,100260,81.52,0,5.44,5.98,6.13,6.23,6.32,6.390000000000001,6.46,6.5200000000000005,6.67,121.46000000000001,122.04,122.42,122.82000000000001,123.23,123.63000000000001,124.11,124.55,125.62,17.46,17.21,17.06,16.88,16.69,16.52,16.330000000000002,16.15,15.790000000000001,N/A,N/A -2012,1,30,19,30,102610,101400,100230,83.66,0,5.4,5.93,6.1000000000000005,6.25,6.390000000000001,6.53,6.7,6.86,7.0200000000000005,121.53,121.88,122.17,122.54,122.97,123.44,123.95,124.42,125.22,17.51,17.26,17.11,16.94,16.77,16.6,16.42,16.26,15.88,N/A,N/A -2012,1,30,20,30,102540,101340,100170,84.32000000000001,0,5.29,5.95,6.21,6.47,6.67,6.83,7.0200000000000005,7.19,7.51,115.14,115.98,116.34,116.39,116.77,117.32000000000001,118.24000000000001,119.2,121.84,17.53,17.31,17.16,16.98,16.81,16.64,16.47,16.31,16,N/A,N/A -2012,1,30,21,30,102500,101290,100120,84.75,0,5.17,5.86,6.12,6.36,6.57,6.7700000000000005,6.95,7.12,7.42,114.98,115.92,116.60000000000001,117.35000000000001,118.08,118.79,119.54,120.25,122,17.62,17.42,17.29,17.14,16.98,16.830000000000002,16.66,16.51,16.19,N/A,N/A -2012,1,30,22,30,102460,101250,100080,86.23,0,5.23,6.04,6.37,6.67,6.94,7.19,7.44,7.66,8.08,115.34,116.19,116.87,117.74000000000001,118.71000000000001,119.71000000000001,120.88,122.01,124.34,17.59,17.43,17.32,17.19,17.06,16.92,16.79,16.66,16.37,N/A,N/A -2012,1,30,23,30,102420,101210,100040,87,0,5.5600000000000005,6.51,6.91,7.3,7.66,8,8.31,8.59,9.03,120.22,121.05,121.7,122.53,123.41,124.32000000000001,125.35000000000001,126.35000000000001,128.77,17.62,17.48,17.39,17.27,17.16,17.06,16.94,16.830000000000002,16.57,N/A,N/A -2012,1,31,0,30,102390,101180,100020,87.96000000000001,0,5.87,6.88,7.32,7.75,8.15,8.52,8.9,9.24,9.82,121.01,121.85000000000001,122.52,123.39,124.35000000000001,125.35000000000001,126.49000000000001,127.59,129.98,17.7,17.57,17.490000000000002,17.38,17.28,17.18,17.07,16.98,16.77,N/A,N/A -2012,1,31,1,30,102370,101170,100000,88.77,0,6.140000000000001,7.21,7.66,8.09,8.48,8.85,9.22,9.56,10.22,125.82000000000001,126.57000000000001,127.17,127.92,128.76,129.64000000000001,130.71,131.78,134.41,17.77,17.66,17.57,17.46,17.36,17.26,17.150000000000002,17.06,16.87,N/A,N/A -2012,1,31,2,30,102340,101130,99970,88.29,0,6.640000000000001,7.8500000000000005,8.370000000000001,8.86,9.3,9.72,10.13,10.51,11.16,128.49,129.19,129.81,130.64000000000001,131.64000000000001,132.73,134.11,135.47,138.04,17.91,17.84,17.78,17.71,17.64,17.580000000000002,17.51,17.45,17.27,N/A,N/A -2012,1,31,3,30,102310,101110,99940,89.96000000000001,0,6.2,7.44,7.98,8.51,9,9.450000000000001,9.870000000000001,10.26,10.950000000000001,131.79,132.54,133.21,134.18,135.34,136.58,138.02,139.39000000000001,142,17.92,17.88,17.84,17.79,17.740000000000002,17.69,17.63,17.56,17.37,N/A,N/A -2012,1,31,4,30,102270,101070,99910,90.51,0,6.22,7.55,8.16,8.790000000000001,9.39,9.98,10.56,11.09,11.96,136.71,137.9,138.85,140.04,141.27,142.51,143.76,144.93,146.91,18,17.97,17.94,17.91,17.87,17.84,17.81,17.78,17.63,N/A,N/A -2012,1,31,5,30,102250,101050,99890,90.94,0,6.2700000000000005,7.6000000000000005,8.21,8.84,9.43,10,10.57,11.1,12.02,141.86,142.84,143.61,144.58,145.58,146.61,147.68,148.69,150.44,18.09,18.080000000000002,18.05,18.02,17.98,17.95,17.91,17.87,17.73,N/A,N/A -2012,1,31,6,30,102240,101040,99880,92.18,0,5.98,7.37,8.01,8.65,9.26,9.84,10.44,11.01,12.07,147.68,148.37,148.93,149.61,150.39000000000001,151.21,152.26,153.29,155.28,18.16,18.16,18.14,18.1,18.07,18.03,18.01,17.990000000000002,17.92,N/A,N/A -2012,1,31,7,30,102230,101030,99880,93.26,0,5.8,7.26,7.95,8.68,9.34,9.97,10.53,11.03,11.75,149.31,150.38,151.18,152.14000000000001,153.02,153.84,154.59,155.27,156.72,18.2,18.25,18.25,18.25,18.240000000000002,18.23,18.19,18.14,17.98,N/A,N/A -2012,1,31,8,30,102200,101000,99850,93.77,0,5.46,7.1000000000000005,7.95,8.88,9.73,10.51,11.16,11.73,12.36,150.53,151.97,153.05,154.3,155.47,156.58,157.37,158.04,159.3,18.21,18.34,18.400000000000002,18.46,18.5,18.53,18.5,18.45,18.25,N/A,N/A -2012,1,31,9,30,102210,101010,99850,93.42,0,5.74,7.32,8.09,8.88,9.6,10.28,10.94,11.56,12.200000000000001,155.71,157.48,158.77,160.09,161.03,161.70000000000002,161.92000000000002,162,162.79,18.29,18.43,18.48,18.52,18.53,18.53,18.5,18.47,18.27,N/A,N/A -2012,1,31,10,30,102200,101000,99850,94.16,0,4.82,6.34,7.140000000000001,8.03,8.8,9.48,9.96,10.36,10.56,148.17000000000002,150.67000000000002,152.59,154.86,156.66,158.13,160.14000000000001,162.14000000000001,164.83,18.2,18.35,18.43,18.56,18.66,18.76,18.77,18.77,18.6,N/A,N/A -2012,1,31,11,30,102200,101000,99850,94.99,0,4.65,6.15,6.96,7.91,8.73,9.450000000000001,10.11,10.700000000000001,11.02,148,149.94,151.79,154.59,157.34,160.04,162.69,165.12,166.76,18.07,18.2,18.29,18.43,18.55,18.64,18.66,18.66,18.51,N/A,N/A -2012,1,31,12,30,102200,101010,99850,94.73,0,4.62,6.16,6.92,7.7,8.52,9.370000000000001,9.71,9.9,10.23,146.99,149.24,151.4,154.63,159.03,164.28,166.44,167.72,169.64000000000001,18.12,18.32,18.43,18.59,18.75,18.92,18.91,18.86,18.67,N/A,N/A -2012,1,31,13,30,102200,101010,99850,94.99,0,4.8100000000000005,6.5,7.45,8.61,9.35,9.78,9.97,10.08,10.33,146.29,150.29,154.02,159.89000000000001,163.95000000000002,166.66,167.71,168.29,169.53,18.06,18.38,18.6,18.89,19.02,19.06,19,18.91,18.67,N/A,N/A -2012,1,31,14,30,102230,101030,99870,95.09,0,4.86,6.41,7.26,8.28,9.08,9.72,9.950000000000001,10.06,10.3,141.62,145.37,149.14000000000001,155.1,160.22,164.70000000000002,166.46,167.45000000000002,168.94,18.09,18.3,18.47,18.740000000000002,18.92,19.05,19.04,19,18.8,N/A,N/A -2012,1,31,15,30,102230,101030,99880,96.04,0,4.21,5.51,6.36,7.66,8.55,9.120000000000001,9.53,9.870000000000001,10.46,142.78,145.31,150.17000000000002,160.89000000000001,167.91,172.05,173.98,175.23,177.09,18.01,18.05,18.27,18.79,19.080000000000002,19.21,19.29,19.34,19.330000000000002,N/A,N/A -2012,1,31,16,30,102210,101010,99860,96.16,0,4.5,5.89,6.73,7.88,8.84,9.67,10.03,10.24,10.6,144.4,147.21,151.03,158.71,164.5,168.88,170.19,170.64000000000001,171.35,18.14,18.240000000000002,18.43,18.86,19.150000000000002,19.35,19.37,19.36,19.17,N/A,N/A -2012,1,31,17,30,102190,100990,99840,96.26,0,4.46,5.8,6.62,7.78,8.78,9.64,10,10.21,10.450000000000001,145.03,148.38,151.74,157.20000000000002,162.32,167.16,169.16,170.38,172.38,18.31,18.39,18.53,18.82,19.080000000000002,19.32,19.35,19.34,19.18,N/A,N/A -2012,1,31,18,30,102160,100970,99820,96.14,0,4.88,6.25,7.05,8.13,9.03,9.81,10.03,10.1,10.38,145.35,147.78,150.82,156.70000000000002,162.3,167.63,169.71,170.88,172.85,18.52,18.61,18.75,19.06,19.31,19.51,19.5,19.45,19.3,N/A,N/A -2012,1,31,19,30,102140,100950,99800,95.96000000000001,0,4.93,6.24,6.92,7.76,8.61,9.5,9.86,10.08,10.35,145.22,147.14000000000001,149.26,152.89000000000001,158.4,165.22,168.1,169.89000000000001,172.21,18.66,18.69,18.76,18.91,19.150000000000002,19.44,19.51,19.52,19.42,N/A,N/A -2012,1,31,20,30,102100,100910,99760,95.37,0,4.83,6.25,7.0200000000000005,8,8.8,9.48,9.61,9.6,9.83,148.17000000000002,150.34,153.01,157.94,162.93,167.91,170.08,171.37,173.85,18.68,18.8,18.93,19.150000000000002,19.35,19.52,19.52,19.490000000000002,19.54,N/A,N/A -2012,1,31,21,30,102070,100880,99730,94.79,0,5.34,6.92,7.71,8.58,9.31,9.950000000000001,10.02,9.96,9.94,146.18,146.91,148.87,153.57,159.26,165.63,167.96,169.17000000000002,172.39000000000001,18.6,18.75,18.89,19.11,19.3,19.48,19.43,19.330000000000002,19.22,N/A,N/A -2012,1,31,22,30,102050,100850,99700,93.59,0,5.12,6.78,7.5600000000000005,8.36,8.97,9.450000000000001,9.66,9.790000000000001,10.11,144.08,146.34,149.44,155.44,161.06,166.35,168,168.75,170.67000000000002,18.57,18.84,19.04,19.37,19.580000000000002,19.73,19.73,19.69,19.72,N/A,N/A -2012,1,31,23,30,102040,100850,99700,97.36,0,5.33,6.92,7.8100000000000005,8.790000000000001,9.21,9.26,9.24,9.21,9.06,144.1,146.17000000000002,149.81,157.21,161.38,163.26,164.94,166.41,168.81,17.69,18.25,18.75,19.44,19.67,19.64,19.55,19.46,19.17,N/A,N/A -2012,2,1,0,30,102050,100860,99710,96.56,0.4,5.0200000000000005,6.79,7.83,9.07,9.51,9.44,9.290000000000001,9.14,9.05,139.42000000000002,142.95000000000002,147.75,156.65,161.11,162.53,163.96,165.23,167.21,17.85,17.45,17.900000000000002,19.39,19.94,19.94,19.85,19.740000000000002,19.52,N/A,N/A -2012,2,1,1,30,102060,100860,99710,97.81,0.7000000000000001,4.65,6.33,7.44,8.790000000000001,9.33,9.36,9.31,9.24,8.97,135.3,138.91,144.4,155.29,160.3,161.57,162.69,163.67000000000002,165.56,17.59,17.05,17.61,19.5,20.18,20.21,20.14,20.07,19.85,N/A,N/A -2012,2,1,2,30,102070,100870,99720,99.2,0.6000000000000001,5.5600000000000005,6.53,7.34,8.81,9.450000000000001,9.56,9.6,9.620000000000001,9.8,133.75,134.72,139.38,151.20000000000002,157.31,159.56,161.31,162.79,165.07,17.1,16.62,17.05,18.54,19.330000000000002,19.76,19.92,20.01,20.01,N/A,N/A -2012,2,1,3,30,102070,100870,99720,99.12,0.7000000000000001,5.51,6.16,6.95,8.69,9.540000000000001,9.78,9.86,9.91,9.94,135.69,137.56,142.1,152.78,158.6,160.95000000000002,162.98,164.76,167.78,16.92,16.53,16.95,18.3,19.17,19.77,19.96,20.06,20.04,N/A,N/A -2012,2,1,4,30,102080,100880,99730,98.8,0.4,5.43,6.1000000000000005,6.91,8.870000000000001,9.84,10.1,10.200000000000001,10.26,10.28,136.08,137.12,140.69,150.32,155.6,157.54,159.3,160.87,163.83,16.98,16.55,16.89,18.12,18.84,19.26,19.39,19.46,19.42,N/A,N/A -2012,2,1,5,30,102050,100850,99700,96.77,0.2,5.37,6.91,7.86,9.13,9.92,10.35,10.34,10.23,10.22,145.82,147.41,149.97,155.34,160.36,164.98,167.20000000000002,168.70000000000002,171.73,17.79,17.64,17.69,17.94,18.66,19.64,19.830000000000002,19.85,19.8,N/A,N/A -2012,2,1,6,30,102050,100850,99700,97.06,0.1,6.0600000000000005,7.43,8.25,9.39,10.05,10.36,10.38,10.34,10.35,154.54,155.4,157.06,160.78,164.20000000000002,167.32,169.31,170.87,173.68,18.01,17.87,17.94,18.26,18.92,19.79,19.96,19.98,19.89,N/A,N/A -2012,2,1,7,30,102050,100860,99710,97.26,0.1,6.34,7.65,8.45,9.620000000000001,10.41,10.96,10.97,10.870000000000001,10.81,159.88,160.51,161.8,164.6,167.77,171.1,172.87,174.14000000000001,176.91,17.97,17.86,17.990000000000002,18.37,19.06,19.92,20.05,20.04,19.95,N/A,N/A -2012,2,1,8,30,102050,100860,99700,96.25,0.1,5.55,6.890000000000001,7.65,8.61,9.6,10.63,11.08,11.33,11.15,166.07,166.11,166.48,167.37,169.25,171.87,175.92000000000002,179.9,183.28,18.18,18.12,18.080000000000002,18.02,18.06,18.14,18.67,19.25,19.61,N/A,N/A -2012,2,1,9,30,102050,100850,99700,94.77,0,5.11,6.7,7.58,8.67,9.77,10.88,11.36,11.67,11.57,161.69,164.04,165.88,168.18,170.68,173.37,176.54,179.56,183.35,18.5,18.59,18.63,18.7,18.82,18.96,18.94,18.900000000000002,18.87,N/A,N/A -2012,2,1,10,30,102030,100840,99690,93.46000000000001,0,4.91,6.79,7.71,8.58,9.370000000000001,10.120000000000001,10.36,10.46,10.02,154.62,157.33,160.05,164.32,168.49,172.56,174.63,176.05,179.32,18.82,19,19.04,19.03,19.05,19.080000000000002,19.1,19.12,19.080000000000002,N/A,N/A -2012,2,1,11,30,102030,100840,99690,92.78,0,4.7,6.8100000000000005,7.87,8.790000000000001,9.4,9.8,9.81,9.72,9.5,151.27,155.97,159.88,164.47,168.78,172.78,175.91,178.48,180.4,19,19.35,19.47,19.53,19.54,19.53,19.42,19.31,19.31,N/A,N/A -2012,2,1,12,30,102030,100840,99690,93.09,0,4.58,6.390000000000001,7.28,8.19,8.76,9.09,9.02,8.85,8.790000000000001,142.19,147.27,151.8,158.07,164.26,170.18,174.42000000000002,177.84,184.05,18.94,19.13,19.16,19.14,19.19,19.28,19.35,19.400000000000002,19.84,N/A,N/A -2012,2,1,13,30,102040,100850,99700,91.78,0.2,5.41,7.8,8.93,9.78,10.21,10.35,10.05,9.67,9.120000000000001,154.76,160.82,165.09,169.16,172.36,174.92000000000002,177.47,179.66,181.61,19.22,19.48,19.490000000000002,19.37,19.150000000000002,18.88,19.17,19.55,19.77,N/A,N/A -2012,2,1,14,30,102080,100890,99740,93.18,0,4.16,6.09,7.07,8.120000000000001,8.75,9.07,9,8.85,8.83,143.01,155.81,163.89000000000001,169.11,172.70000000000002,175.04,178.48,181.78,184.51,18.97,19.51,19.76,19.97,20.02,19.97,19.91,19.84,19.68,N/A,N/A -2012,2,1,15,30,102080,100890,99740,93.47,0,3.97,6.140000000000001,7.13,7.65,7.84,7.8,7.71,7.61,7.36,137.8,150.82,159.9,167.61,173.57,178.13,180.69,182.5,186.42000000000002,18.96,19.54,19.88,20.240000000000002,20.41,20.45,20.41,20.34,20.150000000000002,N/A,N/A -2012,2,1,16,30,102030,100850,99700,92.47,3.8000000000000003,3.77,5.19,5.61,5.8,5.98,6.13,6.28,6.43,6.65,153.64000000000001,156.74,160.46,167.66,172.03,174.51,176.25,177.67000000000002,179.33,19.34,19.94,20.17,20.31,20.37,20.38,20.32,20.25,20.01,N/A,N/A -2012,2,1,17,30,102020,100840,99690,93.14,2.1,3.17,4.8100000000000005,5.5,6.15,6.55,6.73,6.86,6.95,6.95,164.94,169.61,174.04,182.58,188.06,191.29,194.20000000000002,196.83,201.08,19.3,19.62,19.72,19.85,19.92,19.96,19.990000000000002,20.03,20.01,N/A,N/A -2012,2,1,18,30,102060,100870,99720,94.11,13.3,2.23,3.29,3.68,4.11,4.45,4.71,4.94,5.14,5.5200000000000005,175.68,190.79,200.13,208.09,213.08,215.92000000000002,218.06,219.88,222.71,19.31,19.59,19.62,19.64,19.64,19.62,19.6,19.59,19.6,N/A,N/A -2012,2,1,19,30,102040,100850,99700,95.11,1.2000000000000002,2.09,2.38,2.24,2.04,1.97,1.95,2.07,2.23,2.62,116.66,129.44,139.72,153.62,170.82,190,205.1,219.23000000000002,234.31,19.1,19.21,19.23,19.35,19.490000000000002,19.650000000000002,19.7,19.71,19.66,N/A,N/A -2012,2,1,20,30,102030,100840,99690,95.61,22.3,1.37,1.3,1.1500000000000001,1.07,1.11,1.24,1.41,1.6,1.94,95.64,90.65,81.06,57.1,40.53,332.67,323.12,315.73,306.24,19.02,19.38,19.46,19.37,19.28,19.21,19.14,19.09,18.94,N/A,N/A -2012,2,1,21,30,102050,100860,99700,96.2,264,1.29,1.23,1.05,0.97,1.04,1.31,1.59,1.8900000000000001,2.47,117.19,92.76,74.91,34.27,333.01,311.7,298.72,290.46,279.88,18.900000000000002,19.150000000000002,19.22,19.2,19.19,19.18,19.18,19.16,19.02,N/A,N/A -2012,2,1,22,30,101980,100790,99640,95.38,7.2,3.0300000000000002,3.4,3.36,3.46,3.6,3.74,3.89,4.0200000000000005,4.25,148.68,157.57,163.13,169.34,174.46,178.93,182.08,184.68,186.53,18.93,19.13,19.19,19.26,19.35,19.45,19.5,19.55,19.5,N/A,N/A -2012,2,1,23,30,101960,100770,99620,96.55,0,2.25,2.72,2.65,2.5500000000000003,2.49,2.45,2.52,2.62,3.17,130.18,141.96,149.19,156.03,162.82,169.54,179.35,189.07,203.04,18.62,18.92,19,19.02,19.01,18.96,19.07,19.2,19.44,N/A,N/A -2012,2,2,0,30,102000,100810,99660,94.73,0,3.56,4.34,4.43,4.45,4.46,4.45,4.49,4.53,4.59,153.54,158.42000000000002,161.70000000000002,165.22,168.51,171.61,174.54,177.19,182.77,18.85,19.02,19.2,19.59,19.75,19.77,19.68,19.59,19.35,N/A,N/A -2012,2,2,1,30,102000,100810,99660,92.88,8.4,5.18,6.55,6.8,6.51,6.37,6.3100000000000005,6.28,6.26,6.16,160.31,167.88,173.70000000000002,180.07,183.06,184.1,184.43,184.59,185.69,18.95,19.28,19.38,19.36,19.3,19.21,19.11,19.02,18.96,N/A,N/A -2012,2,2,2,30,102010,100810,99670,92.33,0,5.14,6.44,6.63,6.42,6.34,6.33,6.34,6.3500000000000005,6.54,175.98,179.54,182.24,185.36,187.1,188.06,189.89000000000001,191.78,193.13,19.1,19.32,19.3,19.14,18.94,18.73,19.07,19.52,19.93,N/A,N/A -2012,2,2,3,30,101990,100800,99650,92.98,0,4.62,5.98,6.29,6.25,6.18,6.1000000000000005,6.03,5.97,5.7,177.12,180.57,183.09,185.62,187.17000000000002,188.15,189.06,189.92000000000002,193.18,18.97,19.150000000000002,19.14,19,18.86,18.72,18.6,18.51,18.830000000000002,N/A,N/A -2012,2,2,4,30,101980,100790,99640,93.77,0.4,4.75,6.28,6.79,7.03,6.97,6.7700000000000005,6.71,6.68,6.7,177.73,178.04,179.43,182.88,188.48,194.71,197.08,198.47,198.81,18.75,18.88,18.92,18.97,19.03,19.080000000000002,19.04,18.98,18.81,N/A,N/A -2012,2,2,5,30,101990,100800,99640,94.56,0,4.18,5.41,5.79,5.99,6.08,6.11,6.0600000000000005,6.01,5.86,171.85,173.91,176.78,182.07,184.88,186.21,188.01,189.75,194.70000000000002,18.61,18.68,18.68,18.64,18.57,18.490000000000002,18.44,18.400000000000002,18.35,N/A,N/A -2012,2,2,6,30,102000,100800,99650,96.10000000000001,0,4.47,5.53,5.75,5.68,5.58,5.48,5.44,5.42,5.41,182.36,184.22,186.13,189,191.92000000000002,194.68,195.83,196.64000000000001,200.62,18.5,18.38,18.3,18.23,18.2,18.19,18.12,18.05,17.93,N/A,N/A -2012,2,2,7,30,102020,100820,99660,98.22,0,4.1,4.59,4.58,4.4,4.34,4.3500000000000005,4.37,4.38,4.43,164.74,171.75,180.59,194.97,199.83,199.96,200.18,200.4,200.89000000000001,18.06,18.02,18.05,18.150000000000002,18.13,18.04,17.95,17.86,17.66,N/A,N/A -2012,2,2,8,30,102000,100810,99650,97.75,0.4,2.48,3.1,3.14,2.96,2.9,2.89,2.9,2.91,2.92,144.11,155.54,170.72,195.39000000000001,202.62,201.41,200.99,200.74,200.45000000000002,18.2,18.09,18.080000000000002,18.14,18.1,18.01,17.91,17.82,17.6,N/A,N/A -2012,2,2,9,30,102000,100800,99650,98.93,0,2.34,2.33,2.22,2.15,2.13,2.15,2.16,2.17,2.19,153.37,167.78,176.74,186.16,194.56,202.28,204.29,205.27,206.41,17.93,17.98,18.02,18.03,18.01,17.97,17.88,17.79,17.6,N/A,N/A -2012,2,2,10,30,101990,100790,99640,99.2,0,2.1,2.2800000000000002,2.19,1.96,1.81,1.71,1.68,1.67,1.6600000000000001,173.41,189.31,198.22,204.71,210.13,214.78,216.59,217.65,219.5,17.88,17.84,17.830000000000002,17.81,17.75,17.67,17.59,17.51,17.34,N/A,N/A -2012,2,2,11,30,102010,100810,99650,99.29,0,2.82,2.7,2.5300000000000002,2.34,2.15,1.99,1.9100000000000001,1.84,1.41,128.37,128.37,128.72,129.48,130.61,131.81,132.27,132.87,138.79,17.69,17.59,17.54,17.48,17.41,17.34,17.25,17.18,17.12,N/A,N/A -2012,2,2,12,30,102010,100820,99650,99.24000000000001,0,3.13,3.3200000000000003,3.36,3.38,3.34,3.2800000000000002,3.2600000000000002,3.24,2.9,115.37,114.55,113.44,111.60000000000001,110.03,108.68,108.45,108.37,108.25,17.62,17.45,17.37,17.29,17.21,17.16,17.06,16.97,16.9,N/A,N/A -2012,2,2,13,30,102020,100820,99660,99.21000000000001,0,4.61,4.88,4.92,4.93,4.8,4.62,4.42,4.25,3.96,116.9,116.68,116.52,116.37,116.04,115.65,115.60000000000001,115.67,117.31,17.35,17.150000000000002,17.06,16.96,16.91,16.89,16.84,16.8,16.69,N/A,N/A -2012,2,2,14,30,102040,100840,99680,99.26,0,5.15,5.54,5.6000000000000005,5.62,5.62,5.62,5.47,5.29,4.61,123.92,124.05,124.11,124.14,124.15,124.16,124.28,124.36,123.76,17.42,17.21,17.11,17.02,16.92,16.82,16.76,16.71,16.81,N/A,N/A -2012,2,2,15,30,102040,100840,99670,97.26,0,4.99,5.29,5.42,5.64,5.76,5.83,5.65,5.48,5.26,120.38,120.29,120.3,120.34,120.56,120.86,121.5,122.06,122.85000000000001,17.43,17.13,16.98,16.830000000000002,16.72,16.64,16.54,16.44,16.21,N/A,N/A -2012,2,2,16,30,101990,100790,99630,96.49000000000001,0,4.93,5.22,5.34,5.54,5.66,5.73,5.65,5.5600000000000005,5.3,126.56,126.01,125.01,123.21000000000001,120.13,116.69,115.65,115.25,117.55,17.55,17.27,17.13,17,17.01,17.080000000000002,17.03,16.97,16.8,N/A,N/A -2012,2,2,17,30,101960,100760,99600,95.07000000000001,0,3.64,4.25,4.5600000000000005,4.88,5.11,5.29,5.38,5.44,5.39,109.14,108.24000000000001,108.04,108.24000000000001,109.48,111.16,113.42,115.63,121.19,17.89,17.71,17.67,17.66,17.63,17.6,17.56,17.54,17.66,N/A,N/A -2012,2,2,18,30,101940,100740,99580,95.85000000000001,0,4.42,4.78,5.11,5.8100000000000005,6.23,6.5,6.5600000000000005,6.59,6.58,106.33,106.55,106.64,106.74000000000001,107.32000000000001,108.09,109.99000000000001,111.89,116.21000000000001,18.03,17.77,17.71,17.740000000000002,17.78,17.82,17.78,17.73,17.7,N/A,N/A -2012,2,2,19,30,101910,100710,99550,96.41,0,4.16,4.54,4.9,5.6000000000000005,6.05,6.37,6.66,6.92,7.24,105.21000000000001,106.10000000000001,107.84,111.36,114.11,116.33,118.72,120.97,125.31,18.19,17.92,17.81,17.740000000000002,17.75,17.79,17.85,17.91,17.900000000000002,N/A,N/A -2012,2,2,20,30,101880,100680,99530,95.97,0,4.22,4.83,5.12,5.43,5.67,5.88,6.07,6.23,6.59,101.62,103.05,104.58,106.94,110.2,113.76,117.10000000000001,120.08,124.55,18.3,18.05,17.96,17.92,18,18.12,18.18,18.2,18.1,N/A,N/A -2012,2,2,21,30,101850,100660,99500,98.11,0,4.99,5.7700000000000005,6.0600000000000005,6.32,6.51,6.65,6.73,6.8100000000000005,7.140000000000001,98.91,99.82000000000001,100.81,102.33,104.81,107.7,111.77,115.55,121.08,18.34,18.14,18.03,17.92,17.8,17.7,17.55,17.41,17.31,N/A,N/A -2012,2,2,22,30,101850,100650,99490,97.83,0,5.48,6.3,6.55,6.7,6.8100000000000005,6.91,7.16,7.42,8.11,108.88,110.61,112.43,115.14,118.46000000000001,121.89,125.05,127.77,130.16,18.16,17.94,17.78,17.59,17.400000000000002,17.22,17.1,17.01,17.06,N/A,N/A -2012,2,2,23,30,101850,100650,99500,97.14,0,4.5200000000000005,5.67,6.23,6.8100000000000005,7.33,7.8100000000000005,8.19,8.53,8.950000000000001,110.10000000000001,111.11,112.11,113.56,115.69,118.13,122.39,126.63000000000001,133.78,18.27,18.16,18.11,18.07,18.03,17.990000000000002,17.92,17.84,17.51,N/A,N/A -2012,2,3,0,30,101850,100650,99500,95.09,1.5,5.82,6.73,7.04,7.3,7.53,7.75,7.930000000000001,8.08,8.3,120.32000000000001,121.43,121.91,122.01,122.14,122.28,123.67,125.2,129.65,18.39,18.28,18.2,18.11,18.05,18.02,18.07,18.14,18.52,N/A,N/A -2012,2,3,1,30,101810,100610,99460,97.16,0,6.75,7.9,8.38,8.870000000000001,9.3,9.69,9.85,9.96,9.93,94.61,95.86,97.16,99.2,102.33,105.89,110.44,114.55,119.13,18.240000000000002,18.1,18.03,17.97,17.96,17.96,18.02,18.080000000000002,18.42,N/A,N/A -2012,2,3,2,30,101790,100590,99440,97.87,0,7.74,8.88,9.36,9.870000000000001,10.25,10.55,10.74,10.870000000000001,10.66,95.96000000000001,97.86,100.10000000000001,103.85000000000001,108.05,112.28,116.34,119.81,121.97,18,17.85,17.85,17.98,18.42,18.98,19.92,20.75,20.57,N/A,N/A -2012,2,3,3,30,101790,100590,99440,96.11,0,7.8,8.98,9.450000000000001,9.93,10.47,11.01,11.3,11.51,11.620000000000001,108.32000000000001,108.15,108.13,108.25,109.52,111.33,113.94,116.32000000000001,118.29,18.23,18.080000000000002,18.02,17.990000000000002,18.18,18.48,19.080000000000002,19.63,19.75,N/A,N/A -2012,2,3,4,30,101790,100590,99440,96.71000000000001,0,6.88,8.07,8.56,9.05,9.52,9.98,10.44,10.84,10.93,124.03,123.52,123.09,122.56,122.01,121.46000000000001,120.89,120.43,121.34,18.3,18.14,18.05,17.95,17.88,17.82,17.77,17.73,17.77,N/A,N/A -2012,2,3,5,30,101740,100540,99390,98.21000000000001,0,7.45,8.48,8.86,9.21,9.57,9.92,10.370000000000001,10.83,11.75,116.10000000000001,116.54,117.02,117.74000000000001,118.88,120.2,122.63,125.18,130.94,18.04,17.94,17.89,17.82,17.78,17.740000000000002,17.72,17.7,17.54,N/A,N/A -2012,2,3,6,30,101710,100520,99360,97.53,0,8.55,9.81,10.28,10.73,11.16,11.58,11.950000000000001,12.280000000000001,12.56,115.10000000000001,115.89,116.71000000000001,117.94,119.82000000000001,121.97,125.35000000000001,128.68,135.38,18.43,18.28,18.22,18.18,18.16,18.16,18.16,18.17,18.1,N/A,N/A -2012,2,3,7,30,101710,100520,99370,96.10000000000001,0.4,6.34,7.6000000000000005,8.16,8.76,9.43,10.13,10.74,11.26,11.55,113.32000000000001,113.31,113.78,114.86,117.99000000000001,122.21000000000001,128.64000000000001,134.73,138.58,18.66,18.580000000000002,18.53,18.5,18.61,18.79,19.11,19.400000000000002,19.54,N/A,N/A -2012,2,3,8,30,101700,100510,99360,96.71000000000001,0.4,6.5,7.8,8.41,9.07,9.73,10.39,11.15,11.85,11.85,100.23,101.62,102.81,104.47,107.02,110.05,114.33,118.67,128.14000000000001,18.59,18.46,18.36,18.23,18.21,18.25,18.43,18.6,18.96,N/A,N/A -2012,2,3,9,30,101710,100520,99370,96.16,0,6.36,7.67,8.27,8.91,9.61,10.36,11.22,11.99,11.950000000000001,107.94,110.36,112.33,114.98,117.94,121.10000000000001,124.96000000000001,128.66,137.19,18.7,18.650000000000002,18.6,18.55,18.48,18.400000000000002,18.35,18.3,18.400000000000002,N/A,N/A -2012,2,3,10,30,101710,100520,99370,95.28,0,6.47,7.97,8.69,9.42,10.14,10.83,11.49,12.09,12.64,115.59,117.11,118.19,119.51,120.91,122.36,124.41,126.58,133.82,18.88,18.84,18.78,18.68,18.57,18.45,18.400000000000002,18.38,18.61,N/A,N/A -2012,2,3,11,30,101710,100520,99370,95.79,0,6.140000000000001,7.5200000000000005,8.14,8.78,9.39,9.99,10.53,11.05,12.15,123.58,124.19,124.53,124.86,125.31,125.82000000000001,127.3,128.94,136.54,18.78,18.73,18.68,18.61,18.54,18.45,18.39,18.35,18.43,N/A,N/A -2012,2,3,12,30,101740,100550,99400,96.12,0.7000000000000001,5.22,6.44,7.04,7.79,8.540000000000001,9.31,9.53,9.63,9.89,123.84,124.83,126.02,128.08,133.71,141.46,149.03,155.64000000000001,161.48,18.73,18.64,18.580000000000002,18.56,18.71,18.95,19.07,19.150000000000002,19.1,N/A,N/A -2012,2,3,13,30,101750,100560,99410,95.11,0,4.23,5.79,6.45,6.99,7.75,8.67,9.13,9.46,9.82,119.63,121.57000000000001,123.25,125.42,134.15,146.72,150.93,153.14000000000001,155.1,18.98,19.12,19.17,19.23,19.26,19.26,19.23,19.18,19.02,N/A,N/A -2012,2,3,14,30,101780,100590,99440,94.4,0,4.41,5.91,6.62,7.41,8.26,9.17,9.85,10.43,11.23,125.29,127.52,129.38,131.77,133.66,135.28,139.62,144.27,155.04,19.14,19.19,19.13,18.97,18.7,18.37,18.25,18.19,19.06,N/A,N/A -2012,2,3,15,30,101790,100600,99450,96.19,0,5.16,6.640000000000001,7.390000000000001,8.2,8.77,9.19,9.35,9.450000000000001,9.5,117.41,118.82000000000001,120.54,123.52,130.04,138.26,142.19,145.1,149.07,18.740000000000002,18.7,18.6,18.400000000000002,18.56,18.89,19.150000000000002,19.36,19.32,N/A,N/A -2012,2,3,16,30,101770,100580,99440,95.29,0,6.140000000000001,7.65,8.38,9.16,9.85,10.46,10.63,10.69,10.74,114.59,116.89,119.8,124.78,132.43,141.37,143.95000000000002,145.06,146.73,18.94,18.95,18.97,19.02,19.400000000000002,19.92,19.990000000000002,19.98,19.87,N/A,N/A -2012,2,3,17,30,101750,100560,99420,94.5,0,5.92,7.6000000000000005,8.41,9.34,10,10.47,10.290000000000001,10.02,9.82,117.16,118.83,120.52,123.47,129,136.08,141.3,145.44,149.29,19.16,19.18,19.2,19.28,19.45,19.67,19.73,19.76,19.76,N/A,N/A -2012,2,3,18,30,101730,100550,99400,95.71000000000001,0,5.83,7.23,7.890000000000001,8.63,9.32,9.96,10.44,10.85,11.19,116.46000000000001,117.69,118.78,120.41,123.75,128.04,136.21,144.25,149.31,18.94,18.92,18.92,18.94,19,19.080000000000002,19.07,19.080000000000002,19.81,N/A,N/A -2012,2,3,19,30,101740,100550,99410,95.7,0,6.2700000000000005,7.65,8.290000000000001,8.98,9.67,10.36,10.64,10.8,10.97,112.67,113.9,115.01,116.63,118.64,120.9,128.75,136.86,143.8,19.02,18.96,18.92,18.900000000000002,18.900000000000002,18.94,19.14,19.35,19.38,N/A,N/A -2012,2,3,20,30,101700,100510,99370,95.05,0,6.63,8.16,8.88,9.66,10.34,10.96,11.290000000000001,11.53,11.42,114.54,115.89,117.21000000000001,119.17,121.93,125.14,129.99,134.7,140.4,19.12,19.14,19.16,19.22,19.32,19.43,19.55,19.66,19.64,N/A,N/A -2012,2,3,21,30,101690,100500,99360,93.92,0,6.99,8.58,9.34,10.200000000000001,10.86,11.370000000000001,11.290000000000001,11.09,10.85,118.89,120.37,121.88,124.33,128.19,132.86,137.01,140.53,142.57,19.26,19.34,19.42,19.57,19.830000000000002,20.16,20.31,20.41,20.240000000000002,N/A,N/A -2012,2,3,22,30,101670,100480,99340,94.88,0,6.63,8.120000000000001,8.81,9.58,10.44,11.370000000000001,11.77,12.040000000000001,12.01,114.3,115.4,116.33,117.62,119.14,120.81,127.18,133.6,139.89000000000001,18.97,18.96,18.94,18.94,18.97,19.01,19.27,19.52,19.68,N/A,N/A -2012,2,3,23,30,101660,100470,99330,94.36,0,6.88,8.55,9.38,10.33,11.32,12.32,12.35,12.21,11.9,115.41,116.83,117.93,119.33,121.44,124.01,131.8,139.4,143.86,19.05,19.080000000000002,19.1,19.14,19.25,19.400000000000002,19.82,20.240000000000002,20.38,N/A,N/A -2012,2,4,0,30,101650,100470,99320,93.10000000000001,0,7.71,9.5,10.32,11.22,12.09,12.91,13.33,13.63,12.97,120.81,122.63,124.09,126.13000000000001,128.65,131.43,136.70000000000002,142,149.15,19.35,19.39,19.39,19.41,19.45,19.51,19.79,20.09,20.53,N/A,N/A -2012,2,4,1,30,101660,100480,99330,92.57000000000001,0,7.87,9.8,10.66,11.55,12.31,12.99,13.46,13.84,13.68,125.38000000000001,126.95,128.28,130.09,132.44,135.1,139.42000000000002,143.74,152.22,19.45,19.55,19.57,19.61,19.63,19.650000000000002,19.59,19.51,19.64,N/A,N/A -2012,2,4,2,30,101690,100500,99360,92.60000000000001,0,7.43,9.27,10.08,10.86,11.49,12.02,12.15,12.17,11.23,136.44,137.24,138.1,139.6,142.32,145.79,150.08,154.12,156.52,19.45,19.5,19.47,19.41,19.36,19.31,19.37,19.44,19.44,N/A,N/A -2012,2,4,3,30,101690,100500,99360,92.24,0,8.28,10.27,11.09,11.8,12.280000000000001,12.64,12.790000000000001,12.88,12.73,148.55,149.09,149.22,149.02,149.12,149.38,150.85,152.43,156.43,19.52,19.61,19.62,19.59,19.55,19.5,19.43,19.36,19.22,N/A,N/A -2012,2,4,4,30,101700,100520,99370,92.38,0,6.49,8.14,8.78,9.31,9.790000000000001,10.25,10.6,10.9,11.4,142.61,142.52,142.33,141.87,141.94,142.32,143.94,145.91,156.20000000000002,19.52,19.62,19.61,19.54,19.47,19.39,19.330000000000002,19.29,19.17,N/A,N/A -2012,2,4,5,30,101690,100510,99360,92.60000000000001,0,6.18,8.23,9.13,9.91,10.58,11.18,11.55,11.84,11.55,124.53,127.08,129.44,132.78,136.83,141.22,146.02,150.57,161.17000000000002,19.490000000000002,19.62,19.6,19.51,19.41,19.31,19.21,19.13,18.97,N/A,N/A -2012,2,4,6,30,101700,100510,99360,94.36,0,5.79,7.640000000000001,8.5,9.28,9.88,10.370000000000001,10.58,10.71,10.77,137.70000000000002,141.38,144.25,147.83,151.59,155.38,159.05,162.33,167.06,19.26,19.26,19.2,19.080000000000002,18.92,18.75,18.7,18.73,19.81,N/A,N/A -2012,2,4,7,30,101700,100510,99360,95.14,0.4,4.75,6.25,7.0200000000000005,7.9,8.870000000000001,9.93,10.32,10.53,10.55,142.16,143.05,144.04,145.72,148.5,152,159.39000000000001,166.79,172.86,19.12,19.11,19.07,19.01,18.72,18.330000000000002,18.76,19.330000000000002,20.71,N/A,N/A -2012,2,4,8,30,101710,100520,99380,95.47,0.4,4.8100000000000005,6.36,7.22,8.3,9.38,10.47,10.85,10.99,10.450000000000001,144.67000000000002,146.46,148.26,151.20000000000002,154.42000000000002,157.87,162.89000000000001,167.66,172.29,19.04,19.080000000000002,19.06,19,18.77,18.46,18.66,18.990000000000002,20.42,N/A,N/A -2012,2,4,9,30,101730,100540,99390,95.26,0.4,5.01,6.7,7.54,8.42,9.22,9.97,10.02,9.950000000000001,10.07,154.62,158.49,161.6,165.65,169.94,174.37,176.27,177.56,179.71,19.080000000000002,18.94,18.72,18.36,17.94,17.490000000000002,18.88,20.35,21.240000000000002,N/A,N/A -2012,2,4,10,30,101730,100540,99390,95.94,0.4,4.04,5.92,6.99,8.13,8.92,9.46,9.5,9.42,9.33,162.65,165.27,167.32,169.84,172.62,175.44,178.38,180.99,183.29,18.96,18.75,18.57,18.32,18.21,18.150000000000002,19.3,20.580000000000002,20.78,N/A,N/A -2012,2,4,11,30,101750,100560,99420,96.57000000000001,0,3.52,5.33,6.4,7.55,8.26,8.65,8.66,8.61,8.6,166.62,169.42000000000002,172.51,177.6,180.96,183.06,183.92000000000002,184.43,184.36,18.84,18.73,18.61,18.46,18.43,18.46,19.830000000000002,21.27,20.91,N/A,N/A -2012,2,4,12,30,101770,100580,99430,97.16,0.7000000000000001,3.6,5.26,6.140000000000001,6.890000000000001,7.49,7.97,8.290000000000001,8.56,8.83,175.91,182.21,186.19,189.32,191.99,194.32,195.24,195.84,196.87,18.7,18.43,18.03,17.31,17.82,18.95,19.86,20.61,20.8,N/A,N/A -2012,2,4,13,30,101820,100630,99470,97.64,0,0.51,1.29,1.8800000000000001,2.36,2.7600000000000002,3.09,3.5300000000000002,4.0200000000000005,5.58,191.85,179.20000000000002,173.23,179.83,185.20000000000002,189.6,193.17000000000002,196.56,203.51,18.75,18.68,18.580000000000002,18.47,18.35,18.23,18.14,18.080000000000002,18.67,N/A,N/A -2012,2,4,14,30,101900,100710,99550,98.32000000000001,0,1.12,1.48,1.52,1.54,1.6,1.67,1.82,1.98,2.46,290.03000000000003,281.81,277.2,273.75,270.73,267.94,262.21,255.98000000000002,243.31,18.61,18.580000000000002,18.54,18.47,18.39,18.31,18.240000000000002,18.18,18.07,N/A,N/A -2012,2,4,15,30,101940,100740,99590,98.87,0,0.8,0.86,0.7000000000000001,0.49,0.27,0.13,0.26,0.58,1.1,86.62,84.28,85.25,88.57000000000001,127.4,159.36,184.70000000000002,233.4,237.5,18.5,18.45,18.41,18.38,18.330000000000002,18.28,18.240000000000002,18.2,18.06,N/A,N/A -2012,2,4,16,30,101950,100750,99600,98.73,0,0.8,1.1300000000000001,1.28,1.56,1.81,2.0300000000000002,2.11,2.17,2.23,17.44,342.75,324.53000000000003,312.3,303.64,297.47,294.64,292.61,287.88,18.59,18.650000000000002,18.650000000000002,18.63,18.59,18.53,18.44,18.35,18.17,N/A,N/A -2012,2,4,17,30,101940,100750,99590,99.01,0,1.07,1.44,1.46,1.44,1.3800000000000001,1.3,1.27,1.24,1.21,33.3,21.28,13.34,5.5600000000000005,356.34000000000003,347.21,342.89,339.89,334.97,18.6,18.57,18.55,18.51,18.46,18.400000000000002,18.32,18.23,18.06,N/A,N/A -2012,2,4,18,30,101960,100760,99610,99.31,0,2.19,2.73,2.83,2.69,2.62,2.58,2.3000000000000003,2.04,1.6300000000000001,21.69,15.56,11.93,9.3,7.54,6.23,3.46,0.9,352.42,18.5,18.43,18.39,18.34,18.26,18.18,18.12,18.06,17.96,N/A,N/A -2012,2,4,19,30,101960,100760,99610,99.32000000000001,0,3.1,3.5100000000000002,3.67,3.7800000000000002,3.74,3.63,3.49,3.37,3.0500000000000003,14.32,14.6,14.31,13.44,12.530000000000001,11.66,11.02,10.450000000000001,8.120000000000001,18.42,18.26,18.26,18.330000000000002,18.28,18.18,18.080000000000002,18,17.85,N/A,N/A -2012,2,4,20,30,101930,100740,99580,99.33,0,2.4,3.0500000000000003,3.35,3.49,3.54,3.56,3.48,3.39,3.22,26.43,26.05,25.12,23.35,21.46,19.59,17.63,15.85,11.65,18.14,18.39,18.46,18.38,18.3,18.23,18.14,18.06,17.87,N/A,N/A -2012,2,4,21,30,101900,100710,99560,99.35000000000001,0,2.34,3.06,3.37,3.45,3.49,3.52,3.54,3.56,3.6,53.480000000000004,50.74,48.04,44.43,40.37,36.25,32.05,28.2,20.76,17.82,18.48,18.72,18.67,18.63,18.61,18.56,18.5,18.35,N/A,N/A -2012,2,4,22,30,101890,100690,99540,99.24000000000001,0,2.2600000000000002,2.7600000000000002,2.91,2.84,2.81,2.8000000000000003,2.8000000000000003,2.82,2.85,92.03,80.57000000000001,73.03,66.85,60.29,53.79,47,40.78,28.76,17.21,18.26,18.69,18.7,18.71,18.73,18.72,18.71,18.61,N/A,N/A -2012,2,4,23,30,101920,100720,99560,99.21000000000001,0,0.21,0.56,0.93,1.4000000000000001,1.83,2.19,2.52,2.82,3.33,44.12,42.54,38.15,20.26,8.43,1.24,356.81,353.06,348.23,17.02,16.84,17.05,17.66,17.94,18.06,18.03,17.97,17.71,N/A,N/A -2012,2,5,0,30,101970,100770,99600,98.93,0,4.26,5.25,5.75,6.21,6.5600000000000005,6.8500000000000005,7.04,7.21,7.3500000000000005,322.79,327.29,329.65000000000003,331.7,333.32,334.66,335.88,336.98,339.08,17.42,17.38,17.37,17.32,17.240000000000002,17.13,16.990000000000002,16.85,16.53,N/A,N/A -2012,2,5,1,30,102020,100810,99650,82.58,0,8.81,9.52,9.66,9.71,9.72,9.71,9.69,9.66,9.61,338.57,338.92,339.17,339.43,339.7,339.97,340.32,340.68,341.84000000000003,17.19,16.84,16.66,16.46,16.27,16.09,15.89,15.71,15.34,N/A,N/A -2012,2,5,2,30,102080,100880,99700,80.68,0,9.26,10.03,10.19,10.25,10.28,10.28,10.26,10.24,10.17,346.48,346.73,346.87,347.02,347.17,347.32,347.51,347.69,348.18,16.740000000000002,16.35,16.16,15.96,15.76,15.58,15.38,15.19,14.81,N/A,N/A -2012,2,5,3,30,102120,100910,99730,78.88,0,9.34,10.1,10.27,10.34,10.38,10.39,10.39,10.370000000000001,10.33,354.47,354.85,355.06,355.28000000000003,355.5,355.71,355.95,356.17,356.72,16.41,16,15.8,15.6,15.4,15.21,15.01,14.82,14.44,N/A,N/A -2012,2,5,4,30,102130,100920,99740,76.47,0,9.15,9.9,10.06,10.13,10.17,10.19,10.200000000000001,10.200000000000001,10.19,4.0600000000000005,4.15,4.21,4.26,4.33,4.4,4.49,4.59,4.87,16.11,15.68,15.47,15.27,15.07,14.89,14.69,14.5,14.11,N/A,N/A -2012,2,5,5,30,102130,100910,99740,74.07000000000001,0,8.43,9.1,9.25,9.33,9.38,9.41,9.43,9.450000000000001,9.48,7.51,7.73,7.86,7.98,8.1,8.22,8.370000000000001,8.5,8.84,16.06,15.63,15.43,15.23,15.030000000000001,14.85,14.65,14.46,14.07,N/A,N/A -2012,2,5,6,30,102170,100960,99790,73.51,0,8.370000000000001,9.05,9.21,9.290000000000001,9.33,9.36,9.370000000000001,9.38,9.38,358.57,358.81,358.99,359.18,359.35,359.52,359.69,359.86,0.24,16.15,15.73,15.530000000000001,15.33,15.13,14.94,14.73,14.540000000000001,14.15,N/A,N/A -2012,2,5,7,30,102210,101000,99820,74.22,0,8.36,9,9.14,9.21,9.24,9.27,9.27,9.26,9.24,356.79,356.89,356.98,357.09000000000003,357.2,357.3,357.42,357.53000000000003,357.78000000000003,15.81,15.370000000000001,15.17,14.96,14.75,14.56,14.36,14.17,13.780000000000001,N/A,N/A -2012,2,5,8,30,102220,101000,99820,83.66,0,10.06,10.86,11.040000000000001,11.13,11.16,11.18,11.18,11.16,11.11,2.87,3.16,3.3200000000000003,3.46,3.61,3.74,3.89,4.03,4.34,14.43,13.89,13.66,13.450000000000001,13.24,13.05,12.85,12.65,12.27,N/A,N/A -2012,2,5,9,30,102210,100990,99810,82.05,0.4,10.13,10.950000000000001,11.14,11.24,11.290000000000001,11.33,11.35,11.36,11.36,9.120000000000001,9.200000000000001,9.26,9.32,9.38,9.44,9.5,9.56,9.700000000000001,14.41,13.870000000000001,13.64,13.43,13.22,13.030000000000001,12.82,12.63,12.24,N/A,N/A -2012,2,5,10,30,102240,101020,99830,78.25,0,9.74,10.52,10.69,10.78,10.83,10.86,10.870000000000001,10.88,10.870000000000001,7.69,7.8500000000000005,7.96,8.06,8.17,8.27,8.38,8.49,8.72,14.33,13.790000000000001,13.57,13.35,13.14,12.950000000000001,12.74,12.55,12.16,N/A,N/A -2012,2,5,11,30,102300,101070,99880,73.63,0,10.02,10.790000000000001,10.96,11.040000000000001,11.07,11.09,11.09,11.09,11.06,0.48,0.8300000000000001,1.04,1.24,1.44,1.6300000000000001,1.83,2.0300000000000002,2.43,13.92,13.35,13.13,12.91,12.700000000000001,12.51,12.3,12.1,11.71,N/A,N/A -2012,2,5,12,30,102300,101070,99880,74.76,0,10.96,11.86,12.05,12.15,12.200000000000001,12.23,12.24,12.24,12.21,2.8000000000000003,3.0700000000000003,3.25,3.41,3.5700000000000003,3.71,3.86,4,4.28,13.31,12.700000000000001,12.46,12.24,12.02,11.82,11.61,11.42,11.03,N/A,N/A -2012,2,5,13,30,102330,101100,99900,72.05,0,11.51,12.46,12.67,12.76,12.81,12.83,12.83,12.82,12.77,8.68,8.89,9.01,9.120000000000001,9.23,9.33,9.44,9.55,9.790000000000001,12.73,12.08,11.83,11.61,11.39,11.200000000000001,10.99,10.8,10.41,N/A,N/A -2012,2,5,14,30,102390,101160,99960,73.54,0,10.08,10.83,11,11.08,11.13,11.16,11.17,11.17,11.16,7.05,6.94,6.88,6.82,6.75,6.7,6.63,6.57,6.45,12.5,11.870000000000001,11.620000000000001,11.4,11.18,10.99,10.78,10.59,10.19,N/A,N/A -2012,2,5,15,30,102410,101180,99980,71.28,0,11.15,12.05,12.26,12.370000000000001,12.43,12.47,12.48,12.49,12.49,8.38,8.48,8.56,8.63,8.700000000000001,8.76,8.83,8.9,9.05,12.11,11.43,11.18,10.950000000000001,10.73,10.53,10.32,10.120000000000001,9.73,N/A,N/A -2012,2,5,16,30,102420,101190,99980,72.48,0,10.05,10.76,10.9,10.950000000000001,10.97,10.97,10.950000000000001,10.93,10.86,3.06,3.38,3.5500000000000003,3.72,3.88,4.0200000000000005,4.19,4.3500000000000005,4.7,11.83,11.17,10.92,10.700000000000001,10.48,10.28,10.08,9.88,9.5,N/A,N/A -2012,2,5,17,30,102410,101180,99970,73.74,0,9.84,10.55,10.69,10.75,10.790000000000001,10.8,10.8,10.790000000000001,10.76,2.92,3.27,3.46,3.63,3.8000000000000003,3.95,4.12,4.2700000000000005,4.61,11.51,10.84,10.59,10.36,10.14,9.94,9.74,9.540000000000001,9.15,N/A,N/A -2012,2,5,18,30,102410,101180,99970,70.92,0,9.58,10.27,10.42,10.49,10.53,10.56,10.57,10.57,10.56,0.41000000000000003,0.5700000000000001,0.7000000000000001,0.8200000000000001,0.9400000000000001,1.05,1.16,1.27,1.51,11.67,11.01,10.76,10.540000000000001,10.32,10.120000000000001,9.91,9.72,9.32,N/A,N/A -2012,2,5,19,30,102430,101200,100000,67.17,0,8.55,9.15,9.290000000000001,9.370000000000001,9.41,9.450000000000001,9.46,9.48,9.49,359.81,359.95,0.16,0.33,0.49,0.63,0.76,0.9,1.16,12.120000000000001,11.51,11.27,11.05,10.83,10.64,10.43,10.23,9.84,N/A,N/A -2012,2,5,20,30,102360,101130,99940,64.04,0,8.66,9.31,9.47,9.56,9.620000000000001,9.67,9.700000000000001,9.72,9.76,358.49,358.66,358.76,358.86,358.97,359.07,359.19,359.3,359.53000000000003,13.18,12.61,12.38,12.17,11.950000000000001,11.75,11.540000000000001,11.35,10.950000000000001,N/A,N/A -2012,2,5,21,30,102320,101100,99900,61.06,0,9.38,10.07,10.21,10.27,10.3,10.32,10.32,10.32,10.290000000000001,357.02,357.45,357.68,357.89,358.1,358.29,358.49,358.68,359.08,13.77,13.22,12.99,12.780000000000001,12.57,12.370000000000001,12.16,11.97,11.58,N/A,N/A -2012,2,5,22,30,102310,101090,99900,61,0,9.290000000000001,10.01,10.17,10.27,10.32,10.36,10.38,10.39,10.4,0.86,0.97,1.08,1.18,1.27,1.36,1.44,1.53,1.69,13.950000000000001,13.41,13.18,12.96,12.75,12.55,12.34,12.15,11.75,N/A,N/A -2012,2,5,23,30,102390,101160,99970,56.77,0,9.34,10.05,10.200000000000001,10.27,10.31,10.33,10.34,10.34,10.33,354.63,354.76,354.87,354.96,355.04,355.12,355.21,355.3,355.5,13.84,13.290000000000001,13.06,12.85,12.64,12.450000000000001,12.24,12.05,11.65,N/A,N/A -2012,2,6,0,30,102390,101170,99970,62.4,0,10.18,10.94,11.08,11.13,11.14,11.14,11.120000000000001,11.1,11.03,357.7,358.18,358.46,358.73,358.99,359.24,359.5,359.75,0.29,13.56,12.98,12.75,12.530000000000001,12.32,12.13,11.92,11.73,11.34,N/A,N/A -2012,2,6,1,30,102430,101200,100000,63.15,0,11.1,12.02,12.22,12.32,12.38,12.41,12.43,12.44,12.43,5.61,5.72,5.7700000000000005,5.8100000000000005,5.86,5.89,5.94,5.98,6.08,13.05,12.42,12.18,11.96,11.74,11.540000000000001,11.33,11.13,10.74,N/A,N/A -2012,2,6,2,30,102460,101230,100030,65.19,0,11.28,12.26,12.51,12.65,12.74,12.81,12.85,12.88,12.92,13.81,13.700000000000001,13.620000000000001,13.540000000000001,13.450000000000001,13.38,13.3,13.23,13.08,12.98,12.34,12.1,11.870000000000001,11.65,11.450000000000001,11.24,11.040000000000001,10.65,N/A,N/A -2012,2,6,3,30,102460,101230,100030,63.34,0,11.290000000000001,12.24,12.47,12.59,12.67,12.72,12.75,12.780000000000001,12.8,14.08,14.13,14.16,14.200000000000001,14.24,14.280000000000001,14.33,14.370000000000001,14.47,13.030000000000001,12.39,12.15,11.93,11.71,11.51,11.3,11.1,10.71,N/A,N/A -2012,2,6,4,30,102440,101210,100010,63.45,0,11.26,12.22,12.43,12.55,12.620000000000001,12.66,12.69,12.700000000000001,12.71,18.92,18.98,19.01,19.03,19.07,19.09,19.13,19.17,19.25,13,12.36,12.120000000000001,11.9,11.68,11.48,11.27,11.07,10.67,N/A,N/A -2012,2,6,5,30,102450,101220,100020,64.78,0,10.450000000000001,11.28,11.47,11.57,11.620000000000001,11.66,11.68,11.69,11.69,21.830000000000002,22.09,22.21,22.31,22.42,22.52,22.62,22.73,22.93,12.74,12.120000000000001,11.88,11.65,11.44,11.24,11.03,10.83,10.44,N/A,N/A -2012,2,6,6,30,102480,101240,100040,66.19,0,9.64,10.370000000000001,10.53,10.620000000000001,10.67,10.700000000000001,10.71,10.72,10.72,24.01,24.29,24.46,24.62,24.77,24.900000000000002,25.04,25.18,25.44,12.5,11.89,11.65,11.43,11.21,11.01,10.8,10.61,10.21,N/A,N/A -2012,2,6,7,30,102480,101240,100040,68.1,0,10.07,10.81,10.96,11.03,11.06,11.08,11.07,11.06,11.02,25.26,25.51,25.68,25.810000000000002,25.95,26.080000000000002,26.21,26.34,26.59,12.05,11.4,11.16,10.94,10.72,10.52,10.31,10.11,9.72,N/A,N/A -2012,2,6,8,30,102490,101260,100050,68.13,0,9.32,9.98,10.120000000000001,10.19,10.22,10.24,10.24,10.23,10.200000000000001,22.830000000000002,23.12,23.31,23.48,23.64,23.79,23.94,24.080000000000002,24.38,11.82,11.19,10.94,10.72,10.5,10.3,10.09,9.9,9.5,N/A,N/A -2012,2,6,9,30,102480,101240,100040,68.91,0,9.370000000000001,10.03,10.16,10.23,10.26,10.27,10.27,10.27,10.24,27.42,27.61,27.75,27.87,27.990000000000002,28.1,28.22,28.34,28.580000000000002,11.64,10.99,10.74,10.52,10.3,10.11,9.9,9.700000000000001,9.31,N/A,N/A -2012,2,6,10,30,102490,101250,100050,70.08,0,8.66,9.24,9.35,9.4,9.42,9.43,9.42,9.41,9.38,29.55,29.77,29.91,30.03,30.150000000000002,30.26,30.38,30.490000000000002,30.72,11.6,10.97,10.73,10.51,10.290000000000001,10.09,9.89,9.69,9.3,N/A,N/A -2012,2,6,11,30,102500,101260,100060,72.69,0,8.77,9.33,9.43,9.47,9.48,9.48,9.46,9.44,9.39,25.490000000000002,25.92,26.2,26.44,26.69,26.91,27.150000000000002,27.38,27.84,11.36,10.71,10.47,10.25,10.03,9.83,9.63,9.43,9.040000000000001,N/A,N/A -2012,2,6,12,30,102500,101260,100050,74.76,0,8.47,9,9.09,9.120000000000001,9.120000000000001,9.120000000000001,9.09,9.07,9.01,22.34,22.71,22.96,23.19,23.41,23.62,23.830000000000002,24.04,24.48,11.17,10.53,10.290000000000001,10.07,9.85,9.65,9.450000000000001,9.25,8.86,N/A,N/A -2012,2,6,13,30,102520,101280,100070,77.34,0,8.620000000000001,9.15,9.24,9.27,9.28,9.27,9.25,9.23,9.17,20.580000000000002,20.89,21.080000000000002,21.26,21.43,21.59,21.76,21.92,22.26,10.59,9.93,9.68,9.450000000000001,9.23,9.03,8.82,8.63,8.24,N/A,N/A -2012,2,6,14,30,102540,101290,100090,77.36,0,8.64,9.18,9.28,9.31,9.32,9.32,9.31,9.290000000000001,9.23,20.8,21.07,21.240000000000002,21.400000000000002,21.54,21.68,21.830000000000002,21.97,22.27,10.49,9.82,9.57,9.35,9.13,8.93,8.72,8.53,8.14,N/A,N/A -2012,2,6,15,30,102540,101300,100090,76.38,0,7.640000000000001,8.08,8.16,8.19,8.19,8.19,8.18,8.16,8.11,22.26,22.43,22.54,22.650000000000002,22.76,22.86,22.97,23.080000000000002,23.31,10.49,9.85,9.61,9.39,9.17,8.98,8.77,8.58,8.2,N/A,N/A -2012,2,6,16,30,102530,101290,100080,75.64,0,6.9,7.28,7.3500000000000005,7.37,7.38,7.38,7.36,7.3500000000000005,7.32,20.41,20.5,20.55,20.61,20.67,20.72,20.79,20.85,21.01,10.74,10.13,9.89,9.68,9.46,9.27,9.06,8.870000000000001,8.48,N/A,N/A -2012,2,6,17,30,102490,101250,100040,72.99,0,6.3100000000000005,6.66,6.72,6.74,6.76,6.76,6.76,6.75,6.73,19.03,18.92,18.82,18.740000000000002,18.650000000000002,18.57,18.490000000000002,18.400000000000002,18.25,11.15,10.57,10.34,10.120000000000001,9.91,9.72,9.52,9.33,8.950000000000001,N/A,N/A -2012,2,6,18,30,102440,101210,100010,68.49,0,5.21,5.5,5.5600000000000005,5.6000000000000005,5.63,5.65,5.67,5.69,5.71,21.3,21.21,21.12,21.03,20.94,20.86,20.76,20.68,20.5,11.99,11.46,11.24,11.03,10.82,10.63,10.43,10.24,9.85,N/A,N/A -2012,2,6,19,30,102410,101170,99980,63.49,0,3.7,3.89,3.93,3.96,3.99,4.01,4.03,4.05,4.1,27.44,26.25,25.490000000000002,24.78,24.09,23.47,22.79,22.150000000000002,20.85,12.88,12.41,12.200000000000001,12,11.8,11.61,11.41,11.22,10.83,N/A,N/A -2012,2,6,20,30,102350,101120,99930,62.67,0,2.05,2.08,2.06,2.04,2.0300000000000002,2.0100000000000002,1.99,1.98,1.96,61.08,58.42,56.59,54.82,52.97,51.27,49.19,47.2,42.74,13.48,13.06,12.86,12.66,12.46,12.280000000000001,12.08,11.89,11.52,N/A,N/A -2012,2,6,21,30,102300,101080,99890,63.5,0,1.83,1.8,1.75,1.69,1.6400000000000001,1.58,1.52,1.47,1.36,91.5,89.55,88.14,86.65,84.9,83.28,80.83,78.32000000000001,70.94,13.950000000000001,13.540000000000001,13.34,13.15,12.950000000000001,12.77,12.58,12.39,12.030000000000001,N/A,N/A -2012,2,6,22,30,102260,101040,99860,61.86,0,0.5700000000000001,0.49,0.44,0.4,0.36,0.33,0.33,0.34,0.43,95.43,87.60000000000001,81.3,73.95,63.51,53.63,38.85,25.66,1.42,14.38,13.98,13.8,13.6,13.41,13.23,13.02,12.84,12.46,N/A,N/A -2012,2,6,23,30,102240,101020,99840,62.410000000000004,0,0.38,0.33,0.3,0.27,0.27,0.27,0.29,0.32,0.43,85.31,72.9,63.42,52.42,39.49,27.02,14.58,3.5300000000000002,347.17,14.700000000000001,14.32,14.13,13.94,13.74,13.56,13.36,13.17,12.790000000000001,N/A,N/A -2012,2,7,0,30,102240,101020,99840,63,0,0.9500000000000001,0.9,0.86,0.81,0.77,0.73,0.6900000000000001,0.66,0.6,93.74,90.17,87.76,85.13,81.88,78.83,74.11,69.23,54.480000000000004,14.950000000000001,14.58,14.39,14.200000000000001,14,13.82,13.620000000000001,13.43,13.06,N/A,N/A -2012,2,7,1,30,102220,101010,99820,62.690000000000005,0,0.84,0.85,0.85,0.85,0.86,0.87,0.89,0.91,1.01,55.980000000000004,50.81,47.51,44.17,40.68,37.4,33.55,29.87,21.7,15.21,14.85,14.66,14.47,14.27,14.09,13.9,13.71,13.34,N/A,N/A -2012,2,7,2,30,102230,101010,99830,58.5,0,2.36,2.5500000000000003,2.62,2.67,2.73,2.7800000000000002,2.83,2.88,2.99,21.42,22.19,22.650000000000002,23.09,23.52,23.91,24.35,24.76,25.69,15.51,15.14,14.950000000000001,14.76,14.56,14.370000000000001,14.17,13.98,13.59,N/A,N/A -2012,2,7,3,30,102240,101030,99840,64.35,0,3.86,4.05,4.09,4.1,4.11,4.11,4.11,4.11,4.1,37.18,37.7,38.04,38.36,38.67,38.94,39.230000000000004,39.49,40.03,15.540000000000001,15.15,14.96,14.76,14.56,14.370000000000001,14.16,13.98,13.58,N/A,N/A -2012,2,7,4,30,102240,101020,99840,61.76,0,5.3,5.53,5.54,5.5200000000000005,5.49,5.45,5.41,5.37,5.2700000000000005,33.59,34.12,34.45,34.77,35.09,35.38,35.71,36.02,36.67,15.290000000000001,14.88,14.68,14.49,14.280000000000001,14.1,13.89,13.700000000000001,13.32,N/A,N/A -2012,2,7,5,30,102220,101000,99810,63.190000000000005,0,5.04,5.29,5.32,5.32,5.3100000000000005,5.29,5.2700000000000005,5.25,5.2,32.39,33.14,33.61,34.05,34.49,34.88,35.33,35.75,36.62,15.09,14.67,14.47,14.27,14.07,13.89,13.68,13.49,13.11,N/A,N/A -2012,2,7,6,30,102240,101020,99830,67.86,0,5.0600000000000005,5.3100000000000005,5.34,5.34,5.33,5.32,5.29,5.2700000000000005,5.22,41.5,42.22,42.660000000000004,43.06,43.46,43.82,44.22,44.59,45.38,14.92,14.51,14.31,14.11,13.91,13.73,13.52,13.33,12.950000000000001,N/A,N/A -2012,2,7,7,30,102250,101030,99850,71.48,0,4.9,5.15,5.2,5.22,5.22,5.22,5.21,5.2,5.17,47.92,48.6,49.03,49.43,49.82,50.17,50.54,50.9,51.660000000000004,14.91,14.49,14.3,14.1,13.9,13.71,13.51,13.32,12.93,N/A,N/A -2012,2,7,8,30,102230,101010,99830,72.23,0,4.83,5.09,5.14,5.15,5.16,5.17,5.16,5.16,5.14,48.370000000000005,49.22,49.730000000000004,50.21,50.67,51.08,51.53,51.94,52.81,15.06,14.65,14.46,14.26,14.06,13.88,13.67,13.48,13.09,N/A,N/A -2012,2,7,9,30,102220,101000,99820,74.67,0,4.79,5.04,5.07,5.08,5.08,5.07,5.05,5.04,5,52.79,53.53,53.93,54.31,54.68,55.02,55.38,55.72,56.46,15.030000000000001,14.63,14.43,14.23,14.030000000000001,13.84,13.64,13.450000000000001,13.06,N/A,N/A -2012,2,7,10,30,102210,100990,99810,77.47,0,5.18,5.47,5.5200000000000005,5.54,5.54,5.54,5.54,5.53,5.5,62.21,62.99,63.440000000000005,63.870000000000005,64.27,64.64,65.04,65.41,66.21000000000001,14.98,14.57,14.370000000000001,14.17,13.97,13.780000000000001,13.58,13.39,13,N/A,N/A -2012,2,7,11,30,102220,101000,99820,76.09,0,4.88,5.14,5.19,5.21,5.22,5.22,5.22,5.21,5.19,63.95,64.33,64.58,64.81,65.02,65.21000000000001,65.42,65.61,66.01,15.07,14.66,14.46,14.26,14.06,13.88,13.67,13.48,13.09,N/A,N/A -2012,2,7,12,30,102220,101000,99820,76.12,0,5.26,5.5600000000000005,5.61,5.63,5.64,5.64,5.63,5.62,5.6000000000000005,65.98,66.24,66.38,66.51,66.64,66.75,66.88,67,67.24,15.120000000000001,14.71,14.52,14.31,14.11,13.93,13.72,13.530000000000001,13.14,N/A,N/A -2012,2,7,13,30,102240,101020,99840,74.49,0,4.99,5.26,5.3,5.32,5.32,5.3100000000000005,5.3,5.28,5.25,62.57,62.79,62.93,63.06,63.18,63.300000000000004,63.42,63.54,63.78,15.1,14.700000000000001,14.5,14.3,14.1,13.91,13.71,13.52,13.13,N/A,N/A -2012,2,7,14,30,102280,101060,99880,74.77,0,5.18,5.46,5.51,5.53,5.53,5.53,5.51,5.5,5.47,58.89,59.06,59.17,59.27,59.36,59.44,59.52,59.6,59.76,15.1,14.69,14.5,14.3,14.09,13.91,13.700000000000001,13.51,13.120000000000001,N/A,N/A -2012,2,7,15,30,102290,101070,99890,78.29,0,5.49,5.8,5.8500000000000005,5.86,5.87,5.86,5.8500000000000005,5.83,5.79,50.28,50.620000000000005,50.84,51.04,51.24,51.42,51.61,51.79,52.160000000000004,15.01,14.59,14.39,14.19,13.99,13.8,13.6,13.41,13.02,N/A,N/A -2012,2,7,16,30,102290,101070,99880,78.76,0,5.53,5.8,5.83,5.82,5.8,5.78,5.75,5.72,5.64,47.02,47.65,48.050000000000004,48.43,48.81,49.17,49.58,49.97,50.84,14.65,14.22,14.02,13.82,13.620000000000001,13.43,13.23,13.040000000000001,12.66,N/A,N/A -2012,2,7,17,30,102290,101070,99880,77.28,0,5.41,5.67,5.71,5.71,5.7,5.68,5.65,5.62,5.55,48.64,49.09,49.39,49.67,49.96,50.21,50.51,50.79,51.42,14.56,14.13,13.93,13.73,13.530000000000001,13.34,13.14,12.950000000000001,12.57,N/A,N/A -2012,2,7,18,30,102280,101060,99870,77.23,0,5.58,5.8500000000000005,5.88,5.87,5.8500000000000005,5.83,5.79,5.75,5.66,38.71,39.17,39.46,39.74,40.03,40.29,40.59,40.88,41.550000000000004,14.46,14.02,13.82,13.620000000000001,13.42,13.24,13.040000000000001,12.85,12.47,N/A,N/A -2012,2,7,19,30,102300,101080,99890,75.76,0,4.41,4.58,4.59,4.58,4.5600000000000005,4.54,4.5,4.46,4.38,37.12,37.47,37.71,37.93,38.160000000000004,38.37,38.61,38.84,39.36,14.43,14.01,13.81,13.620000000000001,13.42,13.23,13.040000000000001,12.85,12.47,N/A,N/A -2012,2,7,20,30,102280,101060,99870,70.22,0,4.09,4.2700000000000005,4.29,4.29,4.28,4.2700000000000005,4.26,4.24,4.2,30.29,30.38,30.46,30.52,30.580000000000002,30.63,30.69,30.740000000000002,30.830000000000002,14.55,14.14,13.94,13.74,13.540000000000001,13.36,13.15,12.97,12.58,N/A,N/A -2012,2,7,21,30,102270,101050,99860,65.13,0,4.53,4.73,4.76,4.76,4.75,4.75,4.73,4.71,4.67,25.04,25.16,25.21,25.27,25.32,25.36,25.41,25.46,25.57,14.77,14.36,14.16,13.96,13.76,13.58,13.370000000000001,13.19,12.8,N/A,N/A -2012,2,7,22,30,102280,101060,99880,65.43,0,5.16,5.39,5.42,5.41,5.39,5.37,5.34,5.3100000000000005,5.23,8.93,9.17,9.34,9.5,9.66,9.790000000000001,9.96,10.11,10.46,14.73,14.31,14.120000000000001,13.92,13.72,13.530000000000001,13.33,13.14,12.76,N/A,N/A -2012,2,7,23,30,102310,101090,99910,63.940000000000005,0,5.12,5.38,5.41,5.42,5.42,5.41,5.39,5.37,5.33,10.28,10.42,10.52,10.6,10.67,10.74,10.82,10.89,11.05,14.77,14.35,14.16,13.96,13.76,13.57,13.370000000000001,13.19,12.8,N/A,N/A -2012,2,8,0,30,102350,101130,99940,67.59,0,5.24,5.48,5.5,5.49,5.47,5.44,5.4,5.36,5.26,10.620000000000001,10.950000000000001,11.1,11.24,11.39,11.53,11.68,11.85,12.26,14.55,14.13,13.93,13.73,13.540000000000001,13.35,13.15,12.97,12.59,N/A,N/A -2012,2,8,1,30,102390,101170,99980,69.18,0,6.34,6.7,6.76,6.78,6.7700000000000005,6.76,6.73,6.71,6.640000000000001,20.830000000000002,21.03,21.13,21.23,21.330000000000002,21.42,21.52,21.62,21.89,14.42,13.98,13.780000000000001,13.58,13.370000000000001,13.19,12.99,12.81,12.43,N/A,N/A -2012,2,8,2,30,102440,101220,100030,67.2,0,7.49,7.98,8.08,8.120000000000001,8.13,8.14,8.13,8.120000000000001,8.09,19.98,20.27,20.44,20.59,20.76,20.92,21.11,21.29,21.75,14.51,14.05,13.85,13.65,13.450000000000001,13.26,13.06,12.88,12.5,N/A,N/A -2012,2,8,3,30,102490,101260,100070,70.65,0,7.8,8.34,8.46,8.51,8.540000000000001,8.55,8.55,8.55,8.53,17.66,17.830000000000002,17.98,18.11,18.240000000000002,18.36,18.5,18.63,18.93,14.27,13.790000000000001,13.58,13.370000000000001,13.17,12.98,12.780000000000001,12.6,12.22,N/A,N/A -2012,2,8,4,30,102490,101260,100070,73.39,0,8.18,8.73,8.84,8.88,8.89,8.89,8.870000000000001,8.85,8.8,20.89,20.97,21.02,21.06,21.11,21.150000000000002,21.19,21.240000000000002,21.34,14.1,13.6,13.39,13.19,12.99,12.8,12.6,12.42,12.040000000000001,N/A,N/A -2012,2,8,5,30,102520,101290,100100,76.25,0,8.07,8.61,8.72,8.76,8.78,8.790000000000001,8.78,8.77,8.75,22.09,22.13,22.16,22.19,22.21,22.23,22.26,22.29,22.36,13.84,13.34,13.120000000000001,12.92,12.72,12.530000000000001,12.33,12.14,11.77,N/A,N/A -2012,2,8,6,30,102570,101340,100150,78.8,0,8.57,9.17,9.290000000000001,9.34,9.36,9.370000000000001,9.36,9.36,9.34,18.91,19.05,19.12,19.2,19.28,19.35,19.43,19.51,19.72,13.56,13.030000000000001,12.82,12.61,12.41,12.22,12.02,11.84,11.47,N/A,N/A -2012,2,8,7,30,102620,101390,100190,76.24,0,8.78,9.41,9.55,9.61,9.64,9.67,9.67,9.67,9.67,23.2,23.39,23.51,23.63,23.740000000000002,23.85,23.97,24.09,24.38,13.47,12.94,12.72,12.51,12.3,12.120000000000001,11.92,11.73,11.35,N/A,N/A -2012,2,8,8,30,102630,101400,100210,76.19,0,8.74,9.370000000000001,9.51,9.57,9.6,9.620000000000001,9.63,9.63,9.64,23.54,23.77,23.900000000000002,24.02,24.150000000000002,24.27,24.41,24.560000000000002,24.89,13.36,12.82,12.6,12.39,12.19,12,11.8,11.61,11.23,N/A,N/A -2012,2,8,9,30,102650,101420,100220,76.22,0,8.93,9.59,9.74,9.81,9.85,9.88,9.89,9.9,9.9,20.87,21.080000000000002,21.23,21.37,21.51,21.64,21.79,21.93,22.25,13.3,12.76,12.530000000000001,12.32,12.11,11.92,11.71,11.53,11.14,N/A,N/A -2012,2,8,10,30,102680,101450,100250,75.8,0,9.17,9.86,10.02,10.11,10.16,10.19,10.21,10.23,10.25,19.46,19.68,19.81,19.94,20.07,20.2,20.35,20.48,20.81,12.99,12.42,12.19,11.98,11.77,11.58,11.38,11.19,10.8,N/A,N/A -2012,2,8,11,30,102730,101490,100290,73.57000000000001,0,9.26,9.96,10.13,10.22,10.27,10.31,10.34,10.36,10.4,23.01,23.22,23.36,23.51,23.650000000000002,23.79,23.95,24.1,24.48,12.92,12.36,12.13,11.92,11.71,11.53,11.32,11.14,10.76,N/A,N/A -2012,2,8,12,30,102760,101530,100330,71.31,0,9.78,10.53,10.71,10.790000000000001,10.85,10.88,10.9,10.91,10.93,24.84,25.060000000000002,25.19,25.32,25.46,25.580000000000002,25.72,25.86,26.16,12.71,12.120000000000001,11.89,11.68,11.47,11.290000000000001,11.09,10.9,10.53,N/A,N/A -2012,2,8,13,30,102780,101540,100340,73.42,0,10.07,10.84,11,11.08,11.120000000000001,11.15,11.15,11.15,11.14,25.68,25.88,26.01,26.13,26.25,26.35,26.48,26.6,26.86,12.34,11.73,11.49,11.28,11.07,10.88,10.68,10.5,10.13,N/A,N/A -2012,2,8,14,30,102820,101580,100370,73.49,0,9.16,9.82,9.96,10.03,10.06,10.08,10.09,10.09,10.09,30.16,30.42,30.580000000000002,30.71,30.86,30.98,31.13,31.26,31.57,12.19,11.6,11.36,11.15,10.950000000000001,10.76,10.56,10.370000000000001,10,N/A,N/A -2012,2,8,15,30,102820,101580,100380,70.73,0,9.05,9.700000000000001,9.85,9.92,9.97,9.99,10.01,10.03,10.040000000000001,30.64,30.89,31.060000000000002,31.21,31.37,31.5,31.66,31.810000000000002,32.14,12.290000000000001,11.700000000000001,11.47,11.26,11.05,10.870000000000001,10.66,10.48,10.1,N/A,N/A -2012,2,8,16,30,102800,101560,100360,65.64,0,8.93,9.6,9.76,9.85,9.9,9.94,9.97,10,10.040000000000001,24.97,25.13,25.23,25.330000000000002,25.43,25.52,25.63,25.73,25.97,12.73,12.16,11.94,11.72,11.51,11.32,11.120000000000001,10.93,10.55,N/A,N/A -2012,2,8,17,30,102760,101530,100330,57.46,0,8.51,9.18,9.36,9.46,9.53,9.59,9.63,9.66,9.72,26.94,26.85,26.79,26.73,26.68,26.62,26.57,26.52,26.42,13.780000000000001,13.26,13.05,12.84,12.63,12.44,12.23,12.040000000000001,11.65,N/A,N/A -2012,2,8,18,30,102740,101510,100320,53.71,0,7.58,8.2,8.370000000000001,8.47,8.55,8.61,8.66,8.700000000000001,8.77,29.26,28.93,28.72,28.52,28.32,28.150000000000002,27.96,27.79,27.44,14.700000000000001,14.25,14.05,13.84,13.64,13.450000000000001,13.24,13.05,12.66,N/A,N/A -2012,2,8,19,30,102710,101490,100300,52.61,0,6.72,7.25,7.4,7.5,7.57,7.62,7.67,7.71,7.7700000000000005,29.27,28.810000000000002,28.54,28.29,28.05,27.85,27.64,27.44,27.07,15.5,15.1,14.91,14.71,14.51,14.32,14.11,13.92,13.530000000000001,N/A,N/A -2012,2,8,20,30,102640,101420,100230,51.620000000000005,0,6.19,6.66,6.79,6.86,6.92,6.97,7,7.03,7.08,15.18,15.450000000000001,15.65,15.82,15.98,16.13,16.27,16.4,16.66,15.96,15.58,15.39,15.200000000000001,15,14.81,14.6,14.42,14.02,N/A,N/A -2012,2,8,21,30,102600,101380,100200,50.01,0,6.32,6.84,6.97,7.05,7.11,7.16,7.19,7.22,7.2700000000000005,11.02,11.39,11.63,11.84,12.030000000000001,12.200000000000001,12.370000000000001,12.530000000000001,12.84,16.41,16.06,15.870000000000001,15.68,15.48,15.290000000000001,15.09,14.9,14.51,N/A,N/A -2012,2,8,22,30,102570,101350,100170,50.68,0,6.74,7.3,7.44,7.5200000000000005,7.58,7.62,7.66,7.68,7.72,13.11,13.66,14.02,14.35,14.65,14.91,15.17,15.4,15.84,16.66,16.330000000000002,16.15,15.950000000000001,15.75,15.57,15.36,15.18,14.780000000000001,N/A,N/A -2012,2,8,23,30,102570,101350,100170,51.800000000000004,0,7.09,7.68,7.82,7.9,7.95,7.99,8.01,8.03,8.05,14.52,14.97,15.24,15.49,15.72,15.92,16.13,16.32,16.67,16.64,16.3,16.12,15.92,15.72,15.540000000000001,15.33,15.14,14.75,N/A,N/A -2012,2,9,0,30,102580,101370,100180,53.72,0,8.08,8.74,8.89,8.97,9.02,9.040000000000001,9.05,9.06,9.05,19.59,19.75,19.87,19.990000000000002,20.1,20.19,20.29,20.39,20.56,16.240000000000002,15.870000000000001,15.68,15.48,15.280000000000001,15.1,14.89,14.700000000000001,14.31,N/A,N/A -2012,2,9,1,30,102600,101380,100190,55.92,0,9.08,9.82,9.98,10.05,10.09,10.11,10.11,10.11,10.08,21.63,21.89,22.03,22.17,22.3,22.42,22.54,22.650000000000002,22.89,15.58,15.17,14.97,14.77,14.56,14.370000000000001,14.17,13.98,13.59,N/A,N/A -2012,2,9,2,30,102600,101380,100190,57.43,0,9.51,10.290000000000001,10.47,10.56,10.6,10.63,10.64,10.64,10.61,26.41,26.68,26.830000000000002,26.98,27.12,27.240000000000002,27.38,27.51,27.77,15.07,14.61,14.4,14.200000000000001,13.99,13.8,13.59,13.4,13.01,N/A,N/A -2012,2,9,3,30,102610,101390,100200,59.17,0,9,9.71,9.870000000000001,9.950000000000001,9.99,10.02,10.03,10.03,10.02,35.06,35.300000000000004,35.45,35.6,35.730000000000004,35.85,35.99,36.11,36.37,14.73,14.26,14.06,13.85,13.64,13.450000000000001,13.24,13.05,12.66,N/A,N/A -2012,2,9,4,30,102610,101390,100200,61.46,0,9.16,9.89,10.07,10.15,10.200000000000001,10.23,10.25,10.25,10.25,37.77,38.04,38.21,38.36,38.51,38.65,38.79,38.93,39.19,14.450000000000001,13.96,13.75,13.540000000000001,13.33,13.14,12.93,12.74,12.35,N/A,N/A -2012,2,9,5,30,102600,101370,100180,62.78,0,8.790000000000001,9.450000000000001,9.6,9.67,9.72,9.74,9.75,9.76,9.75,41.44,41.84,42.09,42.32,42.53,42.72,42.92,43.11,43.51,14.22,13.72,13.51,13.3,13.09,12.9,12.69,12.5,12.1,N/A,N/A -2012,2,9,6,30,102580,101360,100170,66.2,0,8.370000000000001,8.99,9.13,9.21,9.25,9.28,9.290000000000001,9.3,9.3,46.480000000000004,46.87,47.11,47.33,47.53,47.72,47.910000000000004,48.09,48.46,14.11,13.620000000000001,13.41,13.200000000000001,12.99,12.8,12.59,12.4,12.01,N/A,N/A -2012,2,9,7,30,102600,101370,100180,65.86,0,8.040000000000001,8.64,8.78,8.85,8.9,8.93,8.950000000000001,8.96,8.97,47.95,48.370000000000005,48.620000000000005,48.85,49.07,49.26,49.47,49.65,50.03,14.06,13.58,13.370000000000001,13.15,12.950000000000001,12.76,12.55,12.36,11.96,N/A,N/A -2012,2,9,8,30,102590,101360,100170,65.75,0,8.34,8.96,9.11,9.19,9.23,9.26,9.27,9.28,9.28,50.96,51.230000000000004,51.4,51.550000000000004,51.69,51.82,51.94,52.06,52.300000000000004,13.950000000000001,13.46,13.24,13.030000000000001,12.82,12.63,12.42,12.23,11.83,N/A,N/A -2012,2,9,9,30,102580,101350,100160,66.46000000000001,0,7.61,8.13,8.25,8.3,8.32,8.34,8.34,8.33,8.31,54.17,54.5,54.71,54.910000000000004,55.1,55.26,55.44,55.6,55.93,13.75,13.25,13.040000000000001,12.83,12.620000000000001,12.43,12.22,12.030000000000001,11.63,N/A,N/A -2012,2,9,10,30,102580,101350,100150,69.08,0,7.62,8.14,8.25,8.3,8.32,8.34,8.34,8.34,8.32,55.19,55.57,55.800000000000004,56.02,56.230000000000004,56.42,56.61,56.800000000000004,57.19,13.59,13.09,12.870000000000001,12.66,12.450000000000001,12.26,12.05,11.86,11.46,N/A,N/A -2012,2,9,11,30,102560,101330,100140,71.57000000000001,0,7.8,8.33,8.45,8.51,8.540000000000001,8.56,8.57,8.57,8.55,54.13,54.6,54.88,55.14,55.38,55.61,55.85,56.06,56.51,13.48,12.97,12.75,12.540000000000001,12.33,12.14,11.93,11.73,11.34,N/A,N/A -2012,2,9,12,30,102560,101330,100130,74.13,0,7.82,8.370000000000001,8.49,8.55,8.58,8.6,8.61,8.61,8.61,58.800000000000004,59.27,59.58,59.870000000000005,60.14,60.38,60.64,60.870000000000005,61.34,13.43,12.92,12.700000000000001,12.48,12.27,12.08,11.870000000000001,11.68,11.28,N/A,N/A -2012,2,9,13,30,102560,101330,100130,74.49,0,7.9,8.45,8.58,8.65,8.69,8.72,8.73,8.74,8.73,58.79,59.04,59.160000000000004,59.27,59.38,59.480000000000004,59.59,59.68,59.870000000000005,13.41,12.89,12.67,12.46,12.24,12.05,11.84,11.65,11.25,N/A,N/A -2012,2,9,14,30,102570,101340,100150,71.88,0,7.92,8.46,8.58,8.64,8.67,8.69,8.69,8.69,8.68,64.65,64.9,65.05,65.18,65.32000000000001,65.44,65.56,65.68,65.91,13.38,12.870000000000001,12.65,12.43,12.22,12.030000000000001,11.82,11.63,11.23,N/A,N/A -2012,2,9,15,30,102570,101340,100140,73.27,0,7.3,7.7700000000000005,7.86,7.91,7.930000000000001,7.94,7.94,7.94,7.92,63.2,63.57,63.81,64.03,64.23,64.41,64.6,64.78,65.14,13.31,12.8,12.59,12.38,12.17,11.97,11.76,11.57,11.18,N/A,N/A -2012,2,9,16,30,102560,101330,100130,75.65,0,7.23,7.68,7.78,7.82,7.84,7.8500000000000005,7.8500000000000005,7.84,7.82,63.690000000000005,64.22,64.5,64.77,65.02,65.26,65.5,65.72,66.18,13.25,12.74,12.52,12.31,12.1,11.91,11.700000000000001,11.5,11.11,N/A,N/A -2012,2,9,17,30,102530,101300,100110,76,0,6.57,6.96,7.04,7.08,7.1000000000000005,7.11,7.11,7.1000000000000005,7.09,67.34,67.71000000000001,67.97,68.22,68.46000000000001,68.67,68.89,69.10000000000001,69.52,13.34,12.85,12.64,12.43,12.21,12.030000000000001,11.82,11.620000000000001,11.23,N/A,N/A -2012,2,9,18,30,102480,101250,100050,75.88,0,6.43,6.8,6.87,6.9,6.92,6.92,6.92,6.92,6.890000000000001,65.52,65.95,66.17,66.37,66.57000000000001,66.74,66.94,67.11,67.48,13.39,12.9,12.68,12.47,12.26,12.07,11.86,11.67,11.28,N/A,N/A -2012,2,9,19,30,102470,101240,100050,75.22,0,5.53,5.83,5.89,5.91,5.93,5.93,5.93,5.92,5.91,70.71000000000001,71.17,71.43,71.67,71.9,72.12,72.34,72.55,72.99,13.540000000000001,13.07,12.86,12.65,12.450000000000001,12.26,12.05,11.86,11.47,N/A,N/A -2012,2,9,20,30,102410,101190,99990,74.59,0,4.86,5.1000000000000005,5.14,5.15,5.16,5.16,5.15,5.15,5.12,79.93,80.43,80.7,80.96000000000001,81.21000000000001,81.44,81.7,81.94,82.46000000000001,13.69,13.24,13.040000000000001,12.83,12.63,12.44,12.23,12.040000000000001,11.65,N/A,N/A -2012,2,9,21,30,102350,101130,99940,73.62,0,4.57,4.79,4.82,4.84,4.84,4.84,4.83,4.82,4.79,84.19,84.58,84.82000000000001,85.06,85.3,85.51,85.76,85.98,86.48,13.92,13.48,13.280000000000001,13.08,12.870000000000001,12.68,12.48,12.290000000000001,11.9,N/A,N/A -2012,2,9,22,30,102300,101080,99890,71.58,0,4.15,4.33,4.36,4.37,4.36,4.36,4.3500000000000005,4.34,4.3100000000000005,92.55,92.89,93.10000000000001,93.29,93.48,93.66,93.86,94.06,94.47,14.18,13.76,13.56,13.36,13.15,12.97,12.76,12.57,12.18,N/A,N/A -2012,2,9,23,30,102250,101030,99850,72.36,0,4.22,4.42,4.45,4.46,4.46,4.46,4.45,4.44,4.42,99.3,99.73,99.99000000000001,100.26,100.51,100.75,101.02,101.27,101.85000000000001,14.370000000000001,13.950000000000001,13.75,13.55,13.35,13.16,12.96,12.77,12.38,N/A,N/A -2012,2,10,0,30,102210,100990,99810,77.17,0,5.36,5.66,5.71,5.73,5.73,5.73,5.72,5.71,5.68,104.38,104.5,104.57000000000001,104.64,104.71000000000001,104.78,104.86,104.94,105.14,14.33,13.89,13.69,13.49,13.280000000000001,13.1,12.89,12.700000000000001,12.31,N/A,N/A -2012,2,10,1,30,102200,100980,99800,75.81,0.7000000000000001,4.5,4.7,4.73,4.73,4.72,4.71,4.69,4.67,4.62,112.46000000000001,112.82000000000001,113.07000000000001,113.31,113.54,113.76,114,114.23,114.75,14.35,13.93,13.73,13.52,13.33,13.14,12.94,12.75,12.36,N/A,N/A -2012,2,10,2,30,102190,100970,99780,74.98,0.4,4.04,4.22,4.25,4.25,4.25,4.24,4.22,4.2,4.16,108.58,108.93,109.17,109.41,109.64,109.84,110.08,110.3,110.81,14.38,13.97,13.77,13.57,13.370000000000001,13.19,12.98,12.790000000000001,12.4,N/A,N/A -2012,2,10,3,30,102170,100950,99760,74.92,0.7000000000000001,3.5700000000000003,3.72,3.74,3.74,3.74,3.73,3.71,3.7,3.66,105.49000000000001,105.98,106.33,106.68,107.02,107.34,107.7,108.03,108.79,14.58,14.17,13.98,13.780000000000001,13.58,13.39,13.19,13,12.61,N/A,N/A -2012,2,10,4,30,102140,100930,99740,74.7,0,3.61,3.8000000000000003,3.85,3.87,3.89,3.9,3.92,3.93,3.95,87.86,88.94,89.67,90.37,91.04,91.66,92.31,92.91,94.22,14.780000000000001,14.39,14.200000000000001,14,13.8,13.620000000000001,13.41,13.23,12.84,N/A,N/A -2012,2,10,5,30,102120,100910,99730,74.31,0,3.93,4.15,4.21,4.24,4.2700000000000005,4.28,4.3,4.3100000000000005,4.33,95.19,95.87,96.27,96.64,96.99000000000001,97.32000000000001,97.66,97.98,98.67,15.17,14.780000000000001,14.59,14.39,14.19,14,13.8,13.61,13.22,N/A,N/A -2012,2,10,6,30,102130,100910,99730,78.92,4.4,3.63,3.81,3.85,3.87,3.89,3.9,3.91,3.91,3.92,83.54,84.95,85.9,86.79,87.62,88.4,89.21000000000001,89.96000000000001,91.54,14.950000000000001,14.56,14.38,14.18,13.98,13.8,13.6,13.42,13.040000000000001,N/A,N/A -2012,2,10,7,30,102130,100910,99730,82.49,2.2,3.8200000000000003,4.03,4.08,4.11,4.13,4.14,4.15,4.16,4.18,71.31,72.3,72.94,73.54,74.08,74.57000000000001,75.08,75.55,76.55,14.93,14.540000000000001,14.36,14.16,13.96,13.77,13.57,13.39,13.01,N/A,N/A -2012,2,10,8,30,102090,100880,99690,82.98,5.5,5.01,5.25,5.28,5.28,5.2700000000000005,5.26,5.24,5.21,5.15,63.58,63.89,64.12,64.36,64.58,64.78,65.01,65.23,65.7,14.73,14.32,14.13,13.93,13.73,13.55,13.35,13.16,12.780000000000001,N/A,N/A -2012,2,10,9,30,102030,100820,99640,82.64,1.1,5.84,6.16,6.22,6.24,6.24,6.23,6.2,6.18,6.12,67.13,67.34,67.46000000000001,67.59,67.73,67.88,68.05,68.23,68.71000000000001,14.68,14.26,14.06,13.86,13.66,13.47,13.27,13.08,12.700000000000001,N/A,N/A -2012,2,10,10,30,102010,100790,99610,85.46000000000001,4.4,5.93,6.25,6.3100000000000005,6.32,6.3100000000000005,6.3,6.28,6.25,6.19,62.59,62.940000000000005,63.2,63.47,63.75,64.01,64.34,64.67,65.48,14.43,13.99,13.8,13.59,13.39,13.21,13.01,12.83,12.450000000000001,N/A,N/A -2012,2,10,11,30,102000,100780,99600,87.7,1.1,6.5200000000000005,6.91,6.99,7.01,7.01,7.01,6.99,6.97,6.92,57.24,57.46,57.64,57.82,58,58.17,58.410000000000004,58.63,59.230000000000004,14.27,13.83,13.620000000000001,13.42,13.22,13.040000000000001,12.84,12.65,12.280000000000001,N/A,N/A -2012,2,10,12,30,101970,100750,99570,92.05,5.9,6.42,6.82,6.9,6.93,6.94,6.94,6.93,6.92,6.88,53.32,53.49,53.59,53.7,53.81,53.92,54.07,54.2,54.58,14.26,13.81,13.620000000000001,13.41,13.22,13.040000000000001,12.85,12.67,12.31,N/A,N/A -2012,2,10,13,30,102000,100780,99600,94.89,6.2,7.66,8.05,8.1,8.09,8.05,8.01,7.95,7.890000000000001,7.75,16.13,17.17,17.76,18.38,19.02,19.62,20.37,21.12,23.01,13.39,12.89,12.68,12.49,12.3,12.13,11.950000000000001,11.78,11.450000000000001,N/A,N/A -2012,2,10,14,30,102010,100790,99600,92.65,2.6,7.26,7.67,7.75,7.76,7.75,7.73,7.69,7.640000000000001,7.54,29.36,29.7,29.91,30.13,30.37,30.59,30.89,31.2,32.01,13.23,12.72,12.51,12.31,12.1,11.92,11.73,11.55,11.18,N/A,N/A -2012,2,10,15,30,102030,100800,99620,92.75,22.700000000000003,8.1,8.59,8.67,8.69,8.67,8.65,8.61,8.56,8.45,20.080000000000002,20.41,20.61,20.81,21.02,21.22,21.46,21.7,22.29,13.15,12.63,12.42,12.21,12.02,11.84,11.64,11.46,11.11,N/A,N/A -2012,2,10,16,30,102060,100840,99660,91.72,15.4,8.1,8.66,8.78,8.83,8.85,8.86,8.85,8.84,8.8,7.390000000000001,7.17,7.23,7.28,7.32,7.36,7.41,7.45,7.53,13.32,12.8,12.58,12.370000000000001,12.16,11.98,11.78,11.59,11.21,N/A,N/A -2012,2,10,17,30,102020,100800,99610,93.11,27.5,6.97,7.3500000000000005,7.42,7.44,7.43,7.43,7.42,7.43,7.54,8.68,8.84,8.51,8.19,7.83,7.47,6.92,6.3,3.61,13.31,12.82,12.620000000000001,12.43,12.24,12.07,11.89,11.72,11.43,N/A,N/A -2012,2,10,18,30,102020,100800,99620,94.12,11.700000000000001,5.58,5.86,5.91,5.93,5.93,5.93,5.92,5.92,5.93,357.46,357.28000000000003,357.05,356.79,356.5,356.21,355.8,355.37,353.99,13.41,12.94,12.74,12.540000000000001,12.35,12.17,11.98,11.8,11.44,N/A,N/A -2012,2,10,19,30,102060,100840,99660,92.88,2.2,5.86,6.23,6.34,6.390000000000001,6.44,6.47,6.5,6.5200000000000005,6.57,340.3,339.65000000000003,339.17,338.71,338.27,337.86,337.41,336.98,336.07,13.76,13.3,13.09,12.88,12.68,12.5,12.31,12.13,11.76,N/A,N/A -2012,2,10,20,30,102000,100780,99600,90.99,1.1,4.89,5.16,5.22,5.25,5.2700000000000005,5.29,5.3100000000000005,5.33,5.39,341.06,341.36,341.42,341.48,341.54,341.59000000000003,341.63,341.67,341.71,13.72,13.280000000000001,13.08,12.88,12.68,12.5,12.3,12.11,11.73,N/A,N/A -2012,2,10,21,30,102030,100810,99630,87.41,0,6.36,6.8,6.92,7,7.05,7.1000000000000005,7.140000000000001,7.18,7.26,335.71,336.1,336.35,336.58,336.82,337.04,337.29,337.52,338.06,14.15,13.700000000000001,13.49,13.290000000000001,13.08,12.9,12.700000000000001,12.51,12.13,N/A,N/A -2012,2,10,22,30,102030,100810,99630,78.58,0,8.84,9.56,9.74,9.84,9.89,9.93,9.950000000000001,9.96,9.96,348.94,348.56,348.32,348.1,347.88,347.68,347.47,347.27,346.85,15.22,14.780000000000001,14.58,14.370000000000001,14.16,13.97,13.77,13.58,13.18,N/A,N/A -2012,2,10,23,30,102050,100840,99660,79.76,0,9,9.74,9.950000000000001,10.06,10.14,10.19,10.23,10.26,10.3,344,343.98,343.98,343.99,343.99,344,344,344.01,344.02,15.07,14.620000000000001,14.42,14.200000000000001,14,13.8,13.6,13.41,13.01,N/A,N/A -2012,2,11,0,30,102100,100880,99700,77,0,8.33,8.96,9.13,9.23,9.290000000000001,9.33,9.370000000000001,9.39,9.43,355.83,356.08,356.2,356.3,356.39,356.46,356.53000000000003,356.59000000000003,356.69,14.75,14.3,14.09,13.88,13.68,13.49,13.280000000000001,13.09,12.700000000000001,N/A,N/A -2012,2,11,1,30,102140,100920,99740,76.61,0,8.28,8.93,9.120000000000001,9.22,9.290000000000001,9.34,9.39,9.43,9.49,2.39,2.44,2.44,2.43,2.41,2.39,2.35,2.31,2.2,14.48,14.02,13.81,13.6,13.4,13.21,13.01,12.82,12.43,N/A,N/A -2012,2,11,2,30,102210,100980,99800,79.56,0,9.76,10.57,10.78,10.89,10.96,11.01,11.040000000000001,11.07,11.1,359.67,359.47,359.35,359.22,359.1,358.99,358.87,358.75,358.52,14.15,13.64,13.43,13.21,13,12.81,12.6,12.41,12.02,N/A,N/A -2012,2,11,3,30,102280,101050,99860,79.83,0,10.11,10.91,11.120000000000001,11.22,11.27,11.31,11.33,11.33,11.33,3.19,3.42,3.54,3.64,3.74,3.8200000000000003,3.89,3.96,4.09,13.73,13.200000000000001,12.98,12.76,12.55,12.36,12.15,11.96,11.56,N/A,N/A -2012,2,11,4,30,102350,101120,99920,81.14,0,10.4,11.24,11.46,11.57,11.64,11.69,11.72,11.75,11.77,3.3200000000000003,3.42,3.49,3.54,3.59,3.63,3.65,3.68,3.72,12.85,12.26,12.030000000000001,11.81,11.59,11.4,11.19,10.99,10.6,N/A,N/A -2012,2,11,5,30,102380,101150,99950,78.06,0,10.61,11.53,11.76,11.9,11.99,12.05,12.1,12.14,12.19,12.59,12.52,12.47,12.41,12.35,12.3,12.23,12.17,12.030000000000001,12.58,11.98,11.74,11.52,11.31,11.11,10.9,10.71,10.32,N/A,N/A -2012,2,11,6,30,102450,101220,100020,78.72,0,10.3,11.15,11.370000000000001,11.49,11.58,11.64,11.68,11.72,11.77,12.72,12.55,12.44,12.34,12.23,12.13,12.02,11.92,11.700000000000001,12.4,11.790000000000001,11.55,11.33,11.11,10.92,10.71,10.51,10.120000000000001,N/A,N/A -2012,2,11,7,30,102510,101280,100080,79.62,0,10.84,11.76,12.01,12.14,12.23,12.290000000000001,12.33,12.36,12.4,10.88,10.790000000000001,10.74,10.71,10.67,10.64,10.6,10.56,10.49,12.21,11.58,11.33,11.1,10.88,10.69,10.47,10.28,9.88,N/A,N/A -2012,2,11,8,30,102540,101300,100100,83.85000000000001,0,11.66,12.63,12.88,13,13.07,13.120000000000001,13.15,13.17,13.17,11.81,11.92,11.950000000000001,11.96,11.96,11.97,11.97,11.96,11.950000000000001,11.3,10.61,10.35,10.120000000000001,9.89,9.69,9.48,9.28,8.89,N/A,N/A -2012,2,11,9,30,102590,101340,100130,77,0,13.57,14.780000000000001,15.07,15.21,15.290000000000001,15.34,15.35,15.35,15.31,16.29,16.38,16.41,16.43,16.45,16.47,16.48,16.490000000000002,16.5,10.64,9.86,9.58,9.34,9.11,8.91,8.700000000000001,8.5,8.120000000000001,N/A,N/A -2012,2,11,10,30,102670,101420,100200,75.87,0,13,14.11,14.38,14.52,14.6,14.65,14.67,14.69,14.68,22.78,22.84,22.89,22.93,22.97,23.01,23.04,23.07,23.14,9.73,8.92,8.63,8.39,8.16,7.95,7.74,7.54,7.15,N/A,N/A -2012,2,11,11,30,102740,101490,100270,73.58,0,12.44,13.450000000000001,13.700000000000001,13.82,13.89,13.93,13.94,13.950000000000001,13.93,25.080000000000002,25.2,25.26,25.32,25.38,25.44,25.490000000000002,25.54,25.63,9.07,8.24,7.96,7.71,7.48,7.2700000000000005,7.0600000000000005,6.86,6.47,N/A,N/A -2012,2,11,12,30,102810,101550,100330,73.95,0,12.290000000000001,13.26,13.49,13.61,13.67,13.71,13.72,13.73,13.72,29.27,29.43,29.53,29.61,29.68,29.75,29.82,29.88,29.990000000000002,8.35,7.49,7.2,6.95,6.72,6.51,6.29,6.1000000000000005,5.7,N/A,N/A -2012,2,11,13,30,102880,101620,100390,75.81,0,12.32,13.280000000000001,13.51,13.620000000000001,13.68,13.71,13.72,13.73,13.71,31.66,31.92,32.08,32.230000000000004,32.37,32.49,32.61,32.730000000000004,32.980000000000004,7.8,6.92,6.62,6.37,6.140000000000001,5.93,5.71,5.5200000000000005,5.12,N/A,N/A -2012,2,11,14,30,102940,101680,100450,76.17,0,12.02,12.93,13.15,13.25,13.31,13.34,13.35,13.35,13.33,31.77,32.09,32.28,32.46,32.63,32.78,32.94,33.1,33.410000000000004,7.390000000000001,6.51,6.21,5.96,5.72,5.5200000000000005,5.3,5.1000000000000005,4.71,N/A,N/A -2012,2,11,15,30,102990,101720,100500,72.63,0,10.53,11.27,11.450000000000001,11.53,11.58,11.61,11.620000000000001,11.63,11.63,31.98,32.27,32.46,32.64,32.8,32.95,33.11,33.26,33.57,7.32,6.49,6.2,5.96,5.73,5.5200000000000005,5.3100000000000005,5.11,4.72,N/A,N/A -2012,2,11,16,30,103000,101740,100510,67.06,0,9.72,10.370000000000001,10.52,10.59,10.63,10.66,10.67,10.68,10.68,28.26,28.490000000000002,28.650000000000002,28.79,28.93,29.05,29.18,29.3,29.54,7.5,6.71,6.43,6.19,5.96,5.75,5.54,5.3500000000000005,4.95,N/A,N/A -2012,2,11,17,30,103010,101750,100520,65.65,0,8.99,9.59,9.72,9.8,9.84,9.870000000000001,9.89,9.9,9.91,21.64,21.7,21.75,21.79,21.830000000000002,21.86,21.900000000000002,21.93,22.01,7.92,7.17,6.890000000000001,6.66,6.43,6.23,6.0200000000000005,5.82,5.42,N/A,N/A -2012,2,11,18,30,103020,101760,100530,58.480000000000004,0,8.78,9.370000000000001,9.51,9.59,9.64,9.68,9.700000000000001,9.72,9.75,20.11,20.11,20.12,20.13,20.14,20.16,20.17,20.18,20.2,8.8,8.09,7.83,7.59,7.37,7.16,6.95,6.75,6.3500000000000005,N/A,N/A -2012,2,11,19,30,103030,101780,100560,55.46,0,8.35,8.91,9.05,9.120000000000001,9.16,9.200000000000001,9.22,9.24,9.26,16.69,16.79,16.86,16.92,16.990000000000002,17.04,17.1,17.16,17.27,9.49,8.82,8.56,8.33,8.1,7.9,7.69,7.48,7.08,N/A,N/A -2012,2,11,20,30,103010,101760,100550,52.14,0,8.28,8.84,8.98,9.06,9.120000000000001,9.16,9.18,9.200000000000001,9.23,15.82,15.85,15.88,15.9,15.92,15.94,15.950000000000001,15.97,16,10.23,9.58,9.34,9.11,8.89,8.69,8.47,8.27,7.87,N/A,N/A -2012,2,11,21,30,103010,101760,100550,48.46,0,8.61,9.21,9.36,9.44,9.49,9.53,9.55,9.57,9.59,15.09,15.25,15.35,15.44,15.52,15.6,15.68,15.74,15.89,10.84,10.21,9.97,9.74,9.52,9.32,9.1,8.9,8.5,N/A,N/A -2012,2,11,22,30,103020,101780,100560,48.58,0,8.8,9.4,9.55,9.63,9.67,9.700000000000001,9.72,9.74,9.75,21.48,21.29,21.14,21,20.87,20.75,20.62,20.51,20.29,11.02,10.4,10.15,9.93,9.700000000000001,9.5,9.290000000000001,9.09,8.68,N/A,N/A -2012,2,11,23,30,103060,101810,100600,51.34,0,9.4,10.06,10.200000000000001,10.28,10.32,10.34,10.35,10.35,10.35,15.33,15.63,15.82,15.99,16.16,16.3,16.45,16.580000000000002,16.85,10.81,10.15,9.91,9.68,9.450000000000001,9.25,9.03,8.83,8.43,N/A,N/A -2012,2,12,0,30,103120,101870,100650,51.72,0,10.05,10.76,10.91,10.98,11.01,11.03,11.03,11.02,10.99,17.36,17.64,17.8,17.95,18.1,18.23,18.36,18.490000000000002,18.740000000000002,10.19,9.5,9.24,9.01,8.78,8.58,8.36,8.16,7.76,N/A,N/A -2012,2,12,1,30,103170,101920,100690,53.79,0,10.370000000000001,11.13,11.3,11.39,11.43,11.46,11.47,11.48,11.47,22.48,22.69,22.82,22.93,23.04,23.150000000000002,23.25,23.35,23.54,9.71,8.99,8.72,8.49,8.26,8.05,7.84,7.63,7.23,N/A,N/A -2012,2,12,2,30,103220,101960,100740,55.59,0,11.28,12.14,12.34,12.450000000000001,12.5,12.540000000000001,12.55,12.56,12.56,26.92,27.150000000000002,27.29,27.41,27.53,27.63,27.740000000000002,27.85,28.05,9.25,8.47,8.2,7.95,7.73,7.5200000000000005,7.3,7.1000000000000005,6.7,N/A,N/A -2012,2,12,3,30,103250,101990,100760,57.61,0,11.49,12.38,12.59,12.69,12.74,12.780000000000001,12.8,12.81,12.8,32.49,32.76,32.94,33.09,33.24,33.37,33.51,33.64,33.9,8.9,8.1,7.82,7.58,7.34,7.13,6.92,6.71,6.3100000000000005,N/A,N/A -2012,2,12,4,30,103240,101980,100750,59.42,0,11.55,12.450000000000001,12.65,12.75,12.81,12.84,12.86,12.86,12.86,37.02,37.4,37.63,37.83,38.02,38.19,38.37,38.54,38.86,8.68,7.88,7.59,7.3500000000000005,7.12,6.91,6.69,6.49,6.08,N/A,N/A -2012,2,12,5,30,103270,102000,100770,61.9,0,11.620000000000001,12.52,12.72,12.83,12.89,12.93,12.950000000000001,12.96,12.96,40.9,41.34,41.61,41.85,42.08,42.29,42.5,42.7,43.1,8.41,7.59,7.3,7.05,6.82,6.61,6.390000000000001,6.18,5.78,N/A,N/A -2012,2,12,6,30,103300,102040,100810,66.23,0,11.700000000000001,12.620000000000001,12.84,12.96,13.030000000000001,13.08,13.1,13.120000000000001,13.13,49.36,49.46,49.52,49.57,49.620000000000005,49.67,49.7,49.75,49.83,8.23,7.390000000000001,7.1000000000000005,6.8500000000000005,6.61,6.4,6.18,5.97,5.5600000000000005,N/A,N/A -2012,2,12,7,30,103340,102080,100850,62.59,0,11.6,12.48,12.68,12.780000000000001,12.83,12.86,12.88,12.88,12.870000000000001,50.25,50.54,50.730000000000004,50.89,51.04,51.19,51.33,51.47,51.730000000000004,7.91,7.07,6.78,6.53,6.29,6.08,5.86,5.66,5.25,N/A,N/A -2012,2,12,8,30,103350,102080,100850,65.84,0,11.35,12.19,12.38,12.47,12.52,12.55,12.56,12.56,12.540000000000001,50.95,51.25,51.45,51.620000000000005,51.78,51.93,52.08,52.22,52.51,7.5,6.65,6.36,6.11,5.87,5.66,5.44,5.24,4.83,N/A,N/A -2012,2,12,9,30,103360,102090,100860,68.71000000000001,0,11.21,12.030000000000001,12.23,12.32,12.38,12.41,12.43,12.44,12.44,53.550000000000004,53.71,53.82,53.910000000000004,54,54.08,54.160000000000004,54.24,54.39,7.25,6.390000000000001,6.09,5.84,5.6000000000000005,5.39,5.17,4.97,4.5600000000000005,N/A,N/A -2012,2,12,10,30,103360,102090,100850,67.67,0,11.44,12.290000000000001,12.48,12.58,12.63,12.66,12.68,12.68,12.67,53.75,53.99,54.15,54.29,54.42,54.54,54.67,54.79,55.04,6.97,6.1000000000000005,5.8,5.54,5.3100000000000005,5.09,4.87,4.67,4.26,N/A,N/A -2012,2,12,11,30,103350,102080,100840,68.84,0,11.5,12.35,12.55,12.64,12.69,12.73,12.74,12.75,12.74,52.6,52.93,53.15,53.34,53.53,53.7,53.870000000000005,54.04,54.370000000000005,6.83,5.96,5.65,5.4,5.16,4.95,4.73,4.5200000000000005,4.12,N/A,N/A -2012,2,12,12,30,103360,102080,100850,70.72,0,11.52,12.38,12.58,12.68,12.73,12.77,12.780000000000001,12.790000000000001,12.790000000000001,53.77,54.18,54.44,54.67,54.910000000000004,55.11,55.32,55.53,55.93,6.8,5.92,5.62,5.37,5.13,4.91,4.7,4.49,4.09,N/A,N/A -2012,2,12,13,30,103330,102060,100820,73.15,0,11.76,12.65,12.85,12.950000000000001,13.01,13.05,13.06,13.07,13.06,54.49,55.03,55.36,55.65,55.93,56.19,56.44,56.7,57.18,6.890000000000001,6,5.7,5.45,5.21,5,4.78,4.57,4.17,N/A,N/A -2012,2,12,14,30,103320,102050,100820,74.89,0,12.08,13.02,13.23,13.35,13.4,13.450000000000001,13.46,13.47,13.47,55.050000000000004,55.51,55.79,56.04,56.28,56.5,56.730000000000004,56.94,57.36,7.16,6.2700000000000005,5.96,5.71,5.47,5.25,5.03,4.83,4.42,N/A,N/A -2012,2,12,15,30,103310,102040,100810,77.03,0,11.58,12.46,12.67,12.780000000000001,12.84,12.88,12.91,12.92,12.92,58.75,59.300000000000004,59.65,59.97,60.26,60.53,60.81,61.06,61.57,7.36,6.5,6.2,5.95,5.71,5.5,5.28,5.08,4.67,N/A,N/A -2012,2,12,16,30,103260,101990,100760,73.99,0,10.96,11.76,11.96,12.06,12.120000000000001,12.16,12.18,12.19,12.200000000000001,62.77,63.18,63.440000000000005,63.68,63.9,64.1,64.3,64.49,64.87,7.71,6.88,6.59,6.34,6.1000000000000005,5.89,5.67,5.47,5.0600000000000005,N/A,N/A -2012,2,12,17,30,103210,101950,100720,69.93,0,10.22,10.94,11.11,11.200000000000001,11.24,11.27,11.290000000000001,11.290000000000001,11.290000000000001,64.05,64.29,64.45,64.58,64.71000000000001,64.82000000000001,64.94,65.05,65.26,8.05,7.25,6.97,6.73,6.49,6.28,6.07,5.86,5.46,N/A,N/A -2012,2,12,18,30,103190,101930,100700,67.03,0,8.96,9.55,9.67,9.74,9.77,9.8,9.8,9.81,9.790000000000001,63.31,63.43,63.53,63.620000000000005,63.7,63.77,63.83,63.9,64.02,8.35,7.61,7.34,7.1000000000000005,6.87,6.66,6.45,6.25,5.84,N/A,N/A -2012,2,12,19,30,103110,101850,100630,64.13,0,8.950000000000001,9.53,9.65,9.71,9.74,9.76,9.77,9.77,9.75,68.89,68.95,69,69.03,69.07000000000001,69.11,69.14,69.17,69.23,8.73,8.01,7.74,7.51,7.28,7.07,6.86,6.66,6.26,N/A,N/A -2012,2,12,20,30,103050,101790,100570,62.67,0,8.08,8.58,8.69,8.74,8.77,8.790000000000001,8.8,8.8,8.790000000000001,70.64,70.81,70.91,71,71.08,71.16,71.24,71.32000000000001,71.47,9.120000000000001,8.44,8.18,7.95,7.73,7.5200000000000005,7.3100000000000005,7.11,6.71,N/A,N/A -2012,2,12,21,30,102990,101740,100520,64.05,0,7.53,7.99,8.09,8.15,8.18,8.2,8.21,8.22,8.22,74.17,74.61,74.85000000000001,75.07000000000001,75.28,75.46000000000001,75.65,75.83,76.18,9.63,8.99,8.73,8.51,8.28,8.08,7.87,7.67,7.2700000000000005,N/A,N/A -2012,2,12,22,30,102920,101670,100450,62,0,7.15,7.57,7.66,7.71,7.73,7.75,7.76,7.76,7.76,76.7,76.98,77.16,77.32000000000001,77.49,77.64,77.8,77.95,78.27,10.040000000000001,9.42,9.18,8.96,8.74,8.540000000000001,8.32,8.13,7.73,N/A,N/A -2012,2,12,23,30,102820,101570,100360,62.620000000000005,0,7.99,8.51,8.620000000000001,8.68,8.72,8.74,8.75,8.76,8.76,82.05,82.12,82.17,82.22,82.27,82.31,82.37,82.42,82.52,10.59,9.97,9.72,9.5,9.28,9.08,8.870000000000001,8.67,8.27,N/A,N/A -2012,2,13,0,30,102780,101540,100330,60.08,0,7.86,8.370000000000001,8.49,8.55,8.58,8.61,8.620000000000001,8.63,8.64,89.15,89.28,89.39,89.5,89.62,89.72,89.83,89.93,90.15,11.13,10.52,10.28,10.06,9.84,9.65,9.43,9.24,8.84,N/A,N/A -2012,2,13,1,30,102740,101500,100290,63.730000000000004,0,8.2,8.78,8.93,9.02,9.08,9.120000000000001,9.15,9.18,9.21,92.82000000000001,93.4,93.69,93.92,94.14,94.32000000000001,94.5,94.66,94.95,11.6,11.01,10.77,10.55,10.33,10.13,9.92,9.72,9.32,N/A,N/A -2012,2,13,2,30,102670,101430,100230,58.83,0,8.26,8.85,9,9.09,9.14,9.18,9.22,9.24,9.290000000000001,91.97,92.18,92.45,92.74,93.04,93.31,93.62,93.9,94.47,11.98,11.41,11.18,10.96,10.74,10.55,10.34,10.14,9.75,N/A,N/A -2012,2,13,3,30,102590,101360,100160,62.35,0,9.03,9.74,9.93,10.040000000000001,10.120000000000001,10.18,10.23,10.27,10.33,97.02,97.35000000000001,97.62,97.87,98.12,98.34,98.58,98.81,99.27,12.46,11.89,11.66,11.43,11.22,11.02,10.81,10.620000000000001,10.22,N/A,N/A -2012,2,13,4,30,102510,101280,100080,66.32000000000001,0,9.57,10.35,10.56,10.68,10.76,10.82,10.86,10.89,10.94,105.04,105.31,105.48,105.63,105.77,105.89,106.03,106.15,106.39,12.9,12.33,12.1,11.89,11.67,11.47,11.26,11.06,10.66,N/A,N/A -2012,2,13,5,30,102430,101200,100010,65.7,0,9.82,10.63,10.84,10.96,11.040000000000001,11.09,11.13,11.16,11.200000000000001,110.87,110.96000000000001,111.04,111.11,111.17,111.23,111.3,111.36,111.49000000000001,13.34,12.790000000000001,12.57,12.35,12.13,11.93,11.72,11.53,11.13,N/A,N/A -2012,2,13,6,30,102380,101150,99960,70.34,0,10.01,10.86,11.08,11.21,11.290000000000001,11.36,11.4,11.44,11.49,112.18,112.35000000000001,112.48,112.61,112.75,112.87,113,113.12,113.38,13.540000000000001,13.01,12.790000000000001,12.57,12.36,12.16,11.950000000000001,11.75,11.35,N/A,N/A -2012,2,13,7,30,102330,101100,99910,76.22,5.9,10.3,11.18,11.44,11.58,11.67,11.75,11.8,11.84,11.91,107.64,108.33,108.78,109.23,109.65,110.04,110.45,110.83,111.61,13.44,12.9,12.68,12.47,12.26,12.07,11.870000000000001,11.68,11.3,N/A,N/A -2012,2,13,8,30,102220,101000,99820,72.68,0,10.03,10.9,11.15,11.290000000000001,11.39,11.46,11.51,11.55,11.61,116.79,117.41,117.8,118.15,118.47,118.76,119.05,119.31,119.83,14.25,13.76,13.55,13.33,13.120000000000001,12.93,12.72,12.530000000000001,12.13,N/A,N/A -2012,2,13,9,30,102140,100920,99740,76.71000000000001,0,10.69,11.64,11.9,12.030000000000001,12.120000000000001,12.17,12.200000000000001,12.23,12.24,125.01,124.96000000000001,124.91,124.85000000000001,124.8,124.75,124.7,124.65,124.57000000000001,14.51,14.01,13.8,13.58,13.370000000000001,13.17,12.97,12.77,12.370000000000001,N/A,N/A -2012,2,13,10,30,102070,100860,99680,79.76,0,10.75,11.76,12.05,12.22,12.34,12.43,12.5,12.55,12.63,122.2,122.51,122.7,122.88,123.04,123.19,123.34,123.47,123.73,14.92,14.46,14.25,14.030000000000001,13.83,13.63,13.42,13.23,12.84,N/A,N/A -2012,2,13,11,30,102000,100790,99610,82.92,0,10.96,11.98,12.25,12.4,12.5,12.57,12.61,12.65,12.68,121.62,121.75,121.89,122.03,122.18,122.31,122.46000000000001,122.60000000000001,122.89,15.27,14.82,14.61,14.4,14.19,14,13.790000000000001,13.6,13.21,N/A,N/A -2012,2,13,12,30,101920,100710,99540,84.62,1.8,11.26,12.370000000000001,12.69,12.870000000000001,12.99,13.07,13.13,13.18,13.24,123.15,123.4,123.58,123.78,123.96000000000001,124.14,124.34,124.52,124.92,15.69,15.27,15.07,14.86,14.67,14.48,14.27,14.09,13.700000000000001,N/A,N/A -2012,2,13,13,30,101860,100650,99480,86.25,0.4,11.01,12.23,12.6,12.83,13,13.14,13.24,13.33,13.46,127.91,128.43,128.72,128.98,129.21,129.43,129.65,129.86,130.27,16.07,15.69,15.5,15.3,15.11,14.92,14.72,14.540000000000001,14.16,N/A,N/A -2012,2,13,14,30,101780,100580,99420,83.98,0,11.1,12.27,12.620000000000001,12.83,12.98,13.09,13.17,13.24,13.33,137.25,137.6,137.87,138.14000000000001,138.39000000000001,138.61,138.85,139.06,139.51,16.92,16.61,16.44,16.240000000000002,16.05,15.860000000000001,15.67,15.49,15.1,N/A,N/A -2012,2,13,15,30,101740,100540,99380,87.9,35.9,10.59,11.68,11.99,12.18,12.31,12.41,12.48,12.530000000000001,12.620000000000001,137.9,138.21,138.33,138.46,138.59,138.70000000000002,138.82,138.94,139.20000000000002,16.69,16.36,16.19,16,15.81,15.63,15.44,15.26,14.89,N/A,N/A -2012,2,13,16,30,101650,100450,99280,92.85000000000001,7,10.5,11.57,11.88,12.07,12.200000000000001,12.3,12.36,12.41,12.47,137.49,137.57,137.64000000000001,137.73,137.83,137.94,138.07,138.19,138.5,16.91,16.59,16.42,16.22,16.03,15.85,15.66,15.48,15.11,N/A,N/A -2012,2,13,17,30,101520,100330,99170,91.94,2.6,9.26,10.36,10.72,11.01,11.26,11.47,11.67,11.86,12.23,141.55,142.06,142.36,142.66,142.97,143.26,143.6,143.9,144.43,17.330000000000002,17.06,16.89,16.71,16.52,16.34,16.15,15.98,15.610000000000001,N/A,N/A -2012,2,13,18,30,101430,100240,99080,93.59,0.4,10.36,11.76,12.33,12.81,13.22,13.57,13.9,14.200000000000001,14.75,144.35,145.34,145.98,146.67000000000002,147.28,147.87,148.46,149,150.09,17.51,17.3,17.16,17,16.84,16.69,16.52,16.37,16.05,N/A,N/A -2012,2,13,19,30,101390,100200,99050,94.89,3.7,9.02,10.32,10.86,11.33,11.75,12.13,12.5,12.85,13.52,164.87,165.72,166.19,166.70000000000002,167.17000000000002,167.62,168.07,168.5,169.34,17.8,17.62,17.5,17.35,17.21,17.07,16.93,16.79,16.51,N/A,N/A -2012,2,13,20,30,101290,100100,98950,94.18,4.800000000000001,9.700000000000001,11.16,11.78,12.32,12.780000000000001,13.21,13.63,14.01,14.780000000000001,171.38,171.55,171.74,171.93,172.11,172.28,172.46,172.63,172.97,18.150000000000002,18.03,17.92,17.78,17.650000000000002,17.51,17.36,17.23,16.95,N/A,N/A -2012,2,13,21,30,101310,100120,98970,93.12,13.600000000000001,9.07,10.64,11.33,11.97,12.52,13.040000000000001,13.52,13.96,14.77,189.37,190.09,190.28,190.37,190.42000000000002,190.43,190.44,190.43,190.45000000000002,18.47,18.43,18.36,18.240000000000002,18.13,18.01,17.89,17.77,17.5,N/A,N/A -2012,2,13,22,30,101270,100080,98930,96.13,7.7,4.9,5.8100000000000005,6.15,6.44,6.7,6.92,7.13,7.34,8.22,248.87,247.14000000000001,245.65,243.82,242.14000000000001,240.53,238.97,237.5,234.4,18.09,17.98,17.88,17.75,17.650000000000002,17.580000000000002,17.5,17.42,17.240000000000002,N/A,N/A -2012,2,13,23,30,101240,100050,98900,96.72,0,3.86,4.82,5.24,5.62,5.94,6.21,6.5,6.78,7.4,248.83,249.84,251.03,253.51000000000002,256.69,260.44,263.72,266.7,270.45,17.98,17.92,17.86,17.78,17.69,17.59,17.48,17.37,17.19,N/A,N/A -2012,2,14,0,30,101260,100070,98910,95.46000000000001,0,4.33,5.11,5.42,5.69,5.97,6.24,6.49,6.72,7.1000000000000005,266.32,267.75,268.9,270.54,272.37,274.36,277.03000000000003,279.69,285.53000000000003,17.85,17.69,17.580000000000002,17.45,17.330000000000002,17.21,17.1,17,16.72,N/A,N/A -2012,2,14,1,30,101290,100100,98950,95.04,0,4.37,5.09,5.41,5.71,6.0200000000000005,6.34,6.6000000000000005,6.83,6.99,286.69,288.62,290.49,293.65000000000003,295.97,297.7,297.93,297.69,293.87,17.650000000000002,17.5,17.39,17.25,17.11,16.96,16.8,16.66,16.39,N/A,N/A -2012,2,14,2,30,101340,100150,98990,91.53,0,4.3100000000000005,4.96,5.24,5.39,5.59,5.84,6.0200000000000005,6.16,6.24,305.95,306.5,306.88,307.26,307.69,308.18,308.08,307.82,304.92,17.39,17.150000000000002,17,16.81,16.65,16.51,16.35,16.21,15.9,N/A,N/A -2012,2,14,3,30,101360,100160,99000,89.4,0,4.0600000000000005,4.39,4.5,4.61,4.8,5.05,5.44,5.83,6.1000000000000005,290.86,290.62,290.43,290.11,289.65000000000003,289.09000000000003,287.21,285.11,282.32,17.2,16.92,16.76,16.580000000000002,16.41,16.240000000000002,16.09,15.96,15.66,N/A,N/A -2012,2,14,4,30,101370,100180,99020,91.4,0,5.33,5.72,5.8100000000000005,5.84,5.86,5.87,5.88,5.89,5.96,307.35,307.3,307.24,307.12,306.97,306.81,306.56,306.3,305.07,16.89,16.59,16.41,16.22,16.03,15.85,15.65,15.48,15.120000000000001,N/A,N/A -2012,2,14,5,30,101400,100200,99040,91.5,0,5.74,6.0600000000000005,6.1000000000000005,6.08,6.05,6.01,5.95,5.89,5.69,306.64,306.62,306.57,306.51,306.43,306.35,306.21,306.04,304.56,16.27,15.92,15.74,15.55,15.36,15.17,14.98,14.8,14.44,N/A,N/A -2012,2,14,6,30,101440,100240,99070,90.02,0,4.83,5.0600000000000005,5.09,5.07,5.04,5.01,4.96,4.92,4.82,296.82,296.98,297.13,297.3,297.46,297.63,297.83,298,298.2,15.860000000000001,15.51,15.33,15.13,14.94,14.76,14.57,14.39,14.030000000000001,N/A,N/A -2012,2,14,7,30,101460,100260,99090,91.52,0,4.73,4.97,5,5,4.98,4.96,4.93,4.89,4.7700000000000005,302.28000000000003,302.91,303.33,303.8,304.29,304.78000000000003,305.45,306.17,310,15.75,15.4,15.22,15.030000000000001,14.83,14.65,14.450000000000001,14.27,13.91,N/A,N/A -2012,2,14,8,30,101470,100270,99100,89.54,0,3.1,3.2,3.19,3.16,3.13,3.09,3.0500000000000003,3,2.84,308.99,308.87,308.74,308.61,308.48,308.35,308.2,308.07,307.82,15.620000000000001,15.290000000000001,15.11,14.91,14.72,14.540000000000001,14.34,14.16,13.790000000000001,N/A,N/A -2012,2,14,9,30,101480,100270,99100,90.78,0,2.37,2.4,2.38,2.35,2.31,2.2600000000000002,2.21,2.15,1.97,308.46,307.32,306.52,305.63,304.64,303.66,302.23,300.74,294.90000000000003,15.36,15.02,14.83,14.63,14.44,14.25,14.040000000000001,13.85,13.46,N/A,N/A -2012,2,14,10,30,101500,100300,99130,89.89,0,1.09,1.07,1.04,1.01,0.97,0.9400000000000001,0.9,0.86,0.77,340.61,339.54,338.44,337.2,335.81,334.38,332.23,330.02,320.82,15.3,14.97,14.8,14.6,14.41,14.22,14.030000000000001,13.84,13.47,N/A,N/A -2012,2,14,11,30,101540,100330,99160,91.17,0,1.3800000000000001,1.28,1.2,1.12,1.06,1,0.9400000000000001,0.89,0.81,123.47,124.17,124.78,125.76,127.23,128.84,131.65,134.52,144.25,15.21,14.86,14.67,14.46,14.26,14.06,13.84,13.64,13.22,N/A,N/A -2012,2,14,12,30,101560,100350,99180,93.36,0,2.37,2.3000000000000003,2.22,2.14,2.09,2.06,2.05,2.06,2.21,76.53,82.52,86.93,92.2,97.89,103.57000000000001,110.58,117.38,135.05,14.75,14.39,14.22,14.02,13.84,13.66,13.48,13.31,13.09,N/A,N/A -2012,2,14,13,30,101580,100370,99200,92.96000000000001,0,2.09,2.14,2.15,2.16,2.19,2.23,2.29,2.36,2.47,87.26,93.74,98.03,102.93,107.93,112.83,118.09,123.09,135.91,14.9,14.56,14.38,14.19,14,13.82,13.63,13.47,13.23,N/A,N/A -2012,2,14,14,30,101600,100400,99220,92.05,0,3.04,3.16,3.18,3.18,3.19,3.19,3.2,3.2,3.21,148.14000000000001,147.95000000000002,147.96,147.93,147.86,147.79,147.74,147.70000000000002,147.65,15.13,14.76,14.58,14.38,14.19,14,13.8,13.620000000000001,13.26,N/A,N/A -2012,2,14,15,30,101620,100410,99240,92.07000000000001,0,2.85,2.96,2.97,2.98,2.98,2.99,3,3.0100000000000002,3.0700000000000003,97.22,100.31,102.32000000000001,104.43,106.52,108.52,110.81,112.99000000000001,118.7,15.030000000000001,14.67,14.49,14.290000000000001,14.1,13.92,13.73,13.55,13.200000000000001,N/A,N/A -2012,2,14,16,30,101610,100400,99230,93.59,0,3.02,3.12,3.12,3.1,3.08,3.06,3.0300000000000002,3.02,2.97,94.49,96.14,97.31,98.52,99.73,100.89,102.21000000000001,103.33,108.69,15.17,14.81,14.63,14.43,14.24,14.06,13.86,13.68,13.41,N/A,N/A -2012,2,14,17,30,101600,100390,99220,92.72,0,3.99,4.1,4.07,4.01,3.94,3.87,3.79,3.71,3.52,102.31,103.42,104.24000000000001,105.12,106.06,106.98,108.18,109.37,112.47,15.35,14.98,14.8,14.61,14.42,14.24,14.040000000000001,13.870000000000001,13.51,N/A,N/A -2012,2,14,18,30,101590,100390,99220,92.8,0,3.73,3.85,3.85,3.8200000000000003,3.79,3.7600000000000002,3.73,3.71,3.84,101.73,103.43,104.75,106.21000000000001,107.83,109.47,111.86,114.33,123.06,15.530000000000001,15.18,15,14.81,14.620000000000001,14.44,14.25,14.07,13.73,N/A,N/A -2012,2,14,19,30,101580,100380,99210,93.68,0,3.8200000000000003,4.05,4.12,4.16,4.19,4.22,4.26,4.29,4.45,98.64,99.93,100.79,101.69,102.60000000000001,103.48,104.55,105.61,110.17,15.69,15.34,15.16,14.96,14.77,14.59,14.39,14.21,13.93,N/A,N/A -2012,2,14,20,30,101550,100350,99180,93.9,0,4.39,4.7,4.78,4.83,4.88,4.91,4.94,4.97,5.08,100.12,101.17,101.7,102.2,102.67,103.12,103.57000000000001,103.97,105.89,16.12,15.780000000000001,15.6,15.4,15.21,15.030000000000001,14.83,14.66,14.36,N/A,N/A -2012,2,14,21,30,101530,100320,99160,92.91,0,4.42,4.66,4.72,4.74,4.78,4.82,4.93,5.0600000000000005,5.62,100.71000000000001,101.57000000000001,102.37,103.41,104.87,106.45,109.22,112.21000000000001,122.2,15.860000000000001,15.5,15.32,15.13,14.94,14.76,14.58,14.42,14.17,N/A,N/A -2012,2,14,22,30,101520,100320,99160,93.15,0,6.0600000000000005,6.46,6.53,6.53,6.51,6.48,6.42,6.3500000000000005,6.15,100.4,101.48,102.13,102.8,103.49000000000001,104.18,105.09,106,108.94,16.14,15.8,15.620000000000001,15.43,15.24,15.05,14.86,14.68,14.33,N/A,N/A -2012,2,14,23,30,101510,100310,99140,95.61,0,6.2,6.58,6.65,6.66,6.66,6.66,6.69,6.73,6.92,96.44,97.14,97.58,98.06,98.58,99.09,99.76,101.74000000000001,121.24000000000001,15.97,15.610000000000001,15.43,15.25,15.06,14.88,14.71,14.59,14.56,N/A,N/A -2012,2,15,0,30,101510,100310,99140,94.79,0,6.890000000000001,7.32,7.390000000000001,7.38,7.3500000000000005,7.3100000000000005,7.28,7.26,7.3500000000000005,104.15,104.71000000000001,105.07000000000001,105.52,106.16,106.85000000000001,108.28,110.38,122.14,16.25,15.91,15.73,15.540000000000001,15.36,15.18,15,14.85,14.71,N/A,N/A -2012,2,15,1,30,101530,100330,99170,94.18,0,5.88,6.2700000000000005,6.34,6.36,6.41,6.47,6.58,6.71,7.1000000000000005,106.36,107.31,108.15,109.33,111.72,114.69,119.43,123.99000000000001,131.08,16.7,16.4,16.23,16.05,15.88,15.72,15.56,15.42,15.1,N/A,N/A -2012,2,15,2,30,101540,100340,99180,95.63,0,6.1000000000000005,6.55,6.640000000000001,6.69,6.71,6.72,7.0200000000000005,7.32,7.69,113.41,113.79,114.10000000000001,114.43,114.77,115.10000000000001,117.7,120.42,124.8,16.7,16.4,16.22,16.03,15.83,15.65,15.530000000000001,15.43,15.280000000000001,N/A,N/A -2012,2,15,3,30,101530,100330,99170,96.91,0,6.47,7.390000000000001,7.78,8.15,8.48,8.78,9.09,9.39,10.02,113.77,115.95,117.46000000000001,119.21000000000001,120.8,122.27,123.72,125.09,128.26,17.06,16.81,16.69,16.57,16.47,16.37,16.27,16.19,16.080000000000002,N/A,N/A -2012,2,15,4,30,101520,100330,99170,97.12,0.4,6.87,7.83,8.22,8.59,8.93,9.25,9.58,9.9,10.74,115.48,116.28,116.9,117.75,118.74000000000001,119.83,121.46000000000001,123.18,129.97,17.5,17.3,17.18,17.05,16.93,16.830000000000002,16.77,16.740000000000002,16.78,N/A,N/A -2012,2,15,5,30,101490,100300,99150,97.04,0,7.7700000000000005,8.94,9.43,9.92,10.43,10.950000000000001,11.41,11.8,11.69,119.69,120.5,121.27,122.48,124.47,126.95,132.03,137.3,146.34,17.71,17.57,17.490000000000002,17.42,17.39,17.39,17.57,17.77,18.080000000000002,N/A,N/A -2012,2,15,6,30,101510,100320,99170,96.17,0,7.36,8.69,9.25,9.82,10.39,10.94,11.56,12.15,13.14,130.03,130.47,130.87,131.49,132.36,133.36,135.16,137.12,145.3,17.82,17.72,17.66,17.61,17.56,17.52,17.47,17.44,17.64,N/A,N/A -2012,2,15,7,30,101540,100350,99200,95.19,0,7.53,9.01,9.68,10.38,11.07,11.75,12.38,12.98,13.61,130.21,130.94,131.62,132.66,134,135.56,137.94,140.34,149.82,18.02,18,17.98,17.97,17.98,17.990000000000002,18,18.02,17.98,N/A,N/A -2012,2,15,8,30,101510,100320,99170,93.93,0,6.92,8.66,9.49,10.32,10.97,11.51,11.94,12.31,13.120000000000001,139.59,141.24,142.56,144.24,146.1,148.05,150.01,151.83,154.61,18.28,18.35,18.37,18.41,18.43,18.43,18.41,18.38,18.28,N/A,N/A -2012,2,15,9,30,101480,100300,99150,93.52,5.5,6.75,8.44,9.24,10.1,10.83,11.46,11.86,12.17,12.51,134.23,136.4,138.07,140.32,142.65,145.02,147.52,149.87,155.84,18.39,18.46,18.48,18.51,18.51,18.5,18.45,18.400000000000002,18.25,N/A,N/A -2012,2,15,10,30,101490,100300,99160,92.72,0,6.6000000000000005,8.35,9.14,9.92,10.55,11.1,11.58,12.01,12.780000000000001,144.44,146.93,148.64000000000001,150.45000000000002,151.52,152.06,153.07,154.15,165.35,18.57,18.72,18.76,18.82,18.84,18.85,18.85,18.84,18.92,N/A,N/A -2012,2,15,11,30,101480,100300,99150,91.56,0,6.37,8.38,9.44,10.57,11.43,12.08,12.33,12.44,13.08,142.58,144.97,147.01,149.63,153.26,157.81,163.42000000000002,168.89000000000001,175.3,18.830000000000002,19.09,19.2,19.3,19.37,19.400000000000002,19.47,19.54,19.59,N/A,N/A -2012,2,15,12,30,101470,100280,99140,92.35000000000001,0,5.99,8.06,9.120000000000001,10.15,10.97,11.66,12.31,12.92,13.790000000000001,127.47,132.85,136.35,138.97,141.48,143.92000000000002,147.85,152.03,160.05,18.66,18.98,19.12,19.19,19.23,19.26,19.3,19.330000000000002,19.400000000000002,N/A,N/A -2012,2,15,13,30,101470,100290,99140,92.05,0.4,5.0600000000000005,6.84,7.66,8.51,9.13,9.58,10.6,11.8,13.34,138.37,139.99,141.64000000000001,144.51,147.48,150.51,154.35,158.44,164.09,18.81,19.03,19.1,19.19,19.25,19.28,19.3,19.31,19.22,N/A,N/A -2012,2,15,14,30,101480,100300,99160,91.38,0.4,5.73,7.73,8.67,9.620000000000001,10.41,11.11,11.78,12.41,13.16,137.81,141.94,145.31,149.96,153.74,156.93,159.45000000000002,161.65,165,18.94,19.240000000000002,19.31,19.28,19.3,19.36,19.38,19.39,19.43,N/A,N/A -2012,2,15,15,30,101500,100320,99180,91.26,0,5.36,7.4,8.45,9.41,10.23,10.96,11.6,12.18,13.67,138.18,142.21,145.02,146.86,148.42000000000002,149.8,152.37,155.31,164.52,18.990000000000002,19.35,19.48,19.580000000000002,19.62,19.61,19.6,19.59,19.62,N/A,N/A -2012,2,15,16,30,101470,100290,99150,90.41,0,5.61,7.68,8.59,9.38,10,10.5,11.03,11.53,13.13,145.08,146.20000000000002,147.1,148.14000000000001,148.79,149.16,149.19,149.13,156.68,19.25,19.52,19.59,19.650000000000002,19.67,19.67,19.66,19.63,19.48,N/A,N/A -2012,2,15,17,30,101470,100290,99150,89.59,3.7,6.63,8.96,10.07,10.9,11.57,12.120000000000001,12.67,13.21,14.58,146.66,149.79,151.86,153.34,154.07,154.20000000000002,154.5,154.85,158.76,19.400000000000002,19.67,19.73,19.75,19.75,19.72,19.650000000000002,19.57,19.28,N/A,N/A -2012,2,15,18,30,101450,100270,99130,90.89,0,5.15,7.5,8.700000000000001,9.9,10.89,11.73,12.41,13.01,13.91,132.94,137.6,140.9,144,146.94,149.74,153.1,156.41,162.56,19.26,19.650000000000002,19.78,19.87,19.900000000000002,19.900000000000002,19.78,19.66,19.5,N/A,N/A -2012,2,15,19,30,101430,100250,99110,90.84,0,5.34,7.53,8.620000000000001,9.74,10.76,11.700000000000001,12.48,13.17,14.23,138.02,142.1,145.14000000000001,148.38,151.35,154.16,156.38,158.31,163.86,19.25,19.62,19.740000000000002,19.830000000000002,19.87,19.89,19.86,19.81,19.580000000000002,N/A,N/A -2012,2,15,20,30,101400,100220,99080,90.65,0,5.25,7.42,8.48,9.52,10.44,11.290000000000001,12.030000000000001,12.69,13.82,150.42000000000002,152.56,154.27,156.36,158.39000000000001,160.41,162.18,163.78,172.39000000000001,19.29,19.69,19.82,19.900000000000002,19.91,19.89,19.81,19.72,19.78,N/A,N/A -2012,2,15,21,30,101410,100230,99090,91.22,0,4.25,6.38,7.45,8.55,9.49,10.290000000000001,11.21,12.14,12.63,150.96,155,157.95000000000002,160.54,162.69,164.49,168.65,173.52,178.48,19.25,19.67,19.8,19.88,19.92,19.94,19.98,20.02,20.02,N/A,N/A -2012,2,15,22,30,101390,100210,99070,92.16,0.4,3.86,6,6.98,7.9,9.06,10.46,11.01,11.28,11.72,150.06,155.48,159.32,162.95000000000002,168.76,176.53,179.87,181.63,185.35,19.07,19.57,19.740000000000002,19.88,20.06,20.26,20.31,20.32,20.330000000000002,N/A,N/A -2012,2,15,23,30,101400,100220,99080,92.45,0,3.65,5.8500000000000005,7.04,8.43,9.450000000000001,10.16,10.620000000000001,10.97,11.24,157.41,162.78,167.59,174.45000000000002,179.8,183.82,187.15,190.03,194.31,18.97,19.56,19.830000000000002,20.150000000000002,20.34,20.44,20.53,20.62,20.71,N/A,N/A -2012,2,16,0,30,101410,100230,99090,91.21000000000001,0.4,4.45,6.8100000000000005,8.01,9.28,10.15,10.66,10.75,10.69,10.65,168.51,173.94,178.14000000000001,183.17000000000002,189.56,196.92000000000002,200.14000000000001,201.81,205.77,19.150000000000002,19.830000000000002,20.12,20.39,20.580000000000002,20.71,20.81,20.89,21.12,N/A,N/A -2012,2,16,1,30,101460,100280,99140,92.34,0,3.37,5.74,6.98,8.23,8.790000000000001,8.78,8.82,8.870000000000001,8.93,174.65,177.96,182.69,192.55,198.44,200.85,202.91,204.72,207.76,19.11,19.84,20.14,20.44,20.56,20.57,20.52,20.46,20.35,N/A,N/A -2012,2,16,2,30,101500,100320,99180,92.64,0.4,3.18,5.79,7,7.57,7.83,7.86,7.890000000000001,7.92,7.98,186.91,188.87,193.22,203.87,209.58,211.44,213.22,214.84,218.83,19.09,19.97,20.34,20.63,20.75,20.740000000000002,20.7,20.64,20.59,N/A,N/A -2012,2,16,3,30,101550,100370,99230,91.91,0,3.38,5.79,6.59,6.61,6.58,6.5200000000000005,6.49,6.48,6.49,196.47,201.65,208.85,222.89000000000001,229.8,231.72,233.43,234.94,238.84,19.330000000000002,20.29,20.6,20.71,20.740000000000002,20.7,20.64,20.59,20.5,N/A,N/A -2012,2,16,4,30,101580,100400,99260,92.48,0.4,2.63,3.81,4.14,4.38,4.59,4.79,4.97,5.13,5.39,248.23000000000002,252.05,254.93,258.51,261.28000000000003,263.54,264.61,265.29,265.9,19.14,19.66,19.8,19.900000000000002,19.96,20,20,19.990000000000002,19.900000000000002,N/A,N/A -2012,2,16,5,30,101600,100420,99280,92.66,0.4,2.58,3.62,3.79,3.77,3.7,3.6,3.5300000000000002,3.47,3.59,266.41,272.29,275.81,277.96,280.18,282.47,284.05,285.29,285.81,19.13,19.84,20.02,20.03,20.05,20.09,20.16,20.240000000000002,20.25,N/A,N/A -2012,2,16,6,30,101650,100470,99330,93.4,0,3.15,4.17,4.3500000000000005,4.58,4.83,5.08,5.34,5.58,6.08,292.82,303.23,309.08,313.69,316.97,319.39,321.02,322.36,324.51,19.06,19.59,19.75,19.82,19.85,19.86,19.830000000000002,19.8,19.77,N/A,N/A -2012,2,16,7,30,101690,100510,99370,93.19,0,2.77,4.13,4.44,4.51,4.58,4.66,4.78,4.9,5.22,321.68,327.97,331.85,335.13,337.76,339.99,341.7,343.16,344.48,19.17,19.6,19.64,19.53,19.69,20.03,20.23,20.38,20.150000000000002,N/A,N/A -2012,2,16,8,30,101740,100550,99400,93.28,0,3.59,4.72,4.98,5.14,5.19,5.18,5.51,5.91,6.640000000000001,333.27,340.43,345.57,351.09000000000003,354.35,356.05,356.49,356.58,353.96,18.900000000000002,19.150000000000002,19.11,18.88,18.64,18.39,18.52,18.72,19.95,N/A,N/A -2012,2,16,9,30,101770,100570,99420,96.04,0,3.73,4.8500000000000005,5.33,5.74,6.11,6.44,6.63,6.7700000000000005,7.03,347.04,349.65000000000003,351.91,354.90000000000003,356.76,357.85,358.6,359.23,0.15,18.12,17.96,17.76,17.42,17.35,17.45,18.28,19.2,20,N/A,N/A -2012,2,16,10,30,101800,100600,99450,99.16,0,4.08,4.83,5.26,5.8,6.28,6.74,6.96,7.12,7.6000000000000005,354.43,359.27,3.86,10.89,14.59,16.27,16.080000000000002,15.52,12.76,17.43,17.330000000000002,17.29,17.240000000000002,16.87,16.35,17.39,18.56,19.96,N/A,N/A -2012,2,16,11,30,101840,100640,99480,99.21000000000001,0,4.13,4.69,4.95,5.28,5.78,6.4,6.8500000000000005,7.25,8.18,5.93,9.9,12.46,15,17.740000000000002,20.67,22.95,24.82,24.16,17.42,17.32,17.27,17.19,16.96,16.66,16.32,16.12,18.28,N/A,N/A -2012,2,16,12,30,101870,100670,99510,99.26,0,5.51,5.82,5.97,6.25,6.78,7.43,7.930000000000001,8.38,9.120000000000001,14.69,15.24,16.26,18.330000000000002,20.98,23.98,26.17,27.92,28.2,16.51,16.23,16.080000000000002,15.89,16.1,16.490000000000002,17.6,18.67,19.84,N/A,N/A -2012,2,16,13,30,101930,100730,99560,99.23,0,5.15,5.37,5.41,5.48,5.91,6.57,7,7.390000000000001,8.17,26.82,26.77,26.77,26.830000000000002,28.080000000000002,30.04,31.67,33.04,34.19,16,15.68,15.52,15.32,15.34,15.46,16,16.55,17.75,N/A,N/A -2012,2,16,14,30,102000,100790,99630,99.23,0,4.96,5.19,5.22,5.21,5.23,5.26,6.19,7.21,8.14,25.27,26.75,27.830000000000002,29.16,31.17,33.36,37.33,41.18,42.31,16.1,15.82,15.69,15.55,15.33,15.08,15.36,15.76,17.19,N/A,N/A -2012,2,16,15,30,102010,100800,99630,98.52,0,5.44,5.71,5.74,5.75,5.9,6.11,6.86,7.57,8.28,19.37,19.62,19.92,20.38,22.13,24.32,30.54,36.09,39.17,15.63,15.26,15.09,14.94,14.74,14.55,15.3,16.01,17.12,N/A,N/A -2012,2,16,16,30,102030,100820,99650,96.89,0,4.89,5.16,5.25,5.36,5.87,6.59,7.140000000000001,7.62,8.32,26.42,26.73,27.18,27.93,30.35,33.65,36.02,38.11,41.53,15.77,15.43,15.26,15.09,15.01,14.98,15.18,15.43,16.26,N/A,N/A -2012,2,16,17,30,102010,100810,99640,93.12,0,5.76,6.13,6.24,6.38,6.8100000000000005,7.390000000000001,7.86,8.28,8.92,38.65,39.050000000000004,39.45,40.11,41.36,42.910000000000004,43.86,44.61,45.29,16.29,15.96,15.8,15.64,15.540000000000001,15.48,15.55,15.66,16.12,N/A,N/A -2012,2,16,18,30,102000,100790,99630,90.94,0,5.0200000000000005,5.33,5.4,5.48,6.03,6.88,7.28,7.6000000000000005,8.22,64.09,63.9,63.61,63.22,61.46,58.86,57.15,55.67,52.97,16.79,16.48,16.32,16.15,16.07,16.05,16.06,16.09,16.330000000000002,N/A,N/A -2012,2,16,19,30,102000,100790,99630,89.44,0,4.51,4.83,5.16,5.88,6.38,6.74,7.05,7.32,7.9,47.980000000000004,48.120000000000005,48.28,48.46,47.59,46.19,44.63,43.25,41.94,17.1,16.830000000000002,16.73,16.68,16.79,16.97,17.11,17.240000000000002,17.44,N/A,N/A -2012,2,16,20,30,101960,100760,99600,86.06,0,3.18,4.12,4.64,5.07,5.51,5.95,6.3500000000000005,6.71,7.33,64.47,62.83,61.85,60.870000000000005,59.79,58.660000000000004,57.54,56.49,54.58,17.47,17.37,17.39,17.490000000000002,17.650000000000002,17.830000000000002,17.96,18.06,18.18,N/A,N/A -2012,2,16,21,30,101980,100780,99620,83.39,0,1.76,1.97,2.21,2.82,3.29,3.62,3.94,4.25,4.7700000000000005,116.3,119.29,116.42,102.81,94.7,91,87.63,84.47,78.16,17.87,17.56,17.47,17.54,17.56,17.54,17.53,17.53,17.54,N/A,N/A -2012,2,16,22,30,101900,100710,99550,85.37,0,3.87,4.59,4.98,5.51,5.82,6.01,6.17,6.3100000000000005,6.47,101.63,99.5,97.31,93.52,90.67,88.46000000000001,86.43,84.58,80.84,17.84,17.73,17.71,17.740000000000002,17.77,17.79,17.900000000000002,18.01,18.05,N/A,N/A -2012,2,16,23,30,101910,100710,99560,88.58,0,3.13,4.22,4.8500000000000005,5.54,6.05,6.44,6.63,6.78,6.92,77.14,80.24,82.34,84.07000000000001,84.27,83.63,82.05,80.42,76.24,17.86,17.85,17.85,17.89,17.95,18.01,18.09,18.16,18.32,N/A,N/A -2012,2,17,0,30,101940,100740,99590,91.66,0,1.95,3.14,3.83,4.51,4.98,5.3100000000000005,5.63,5.92,6.3500000000000005,42.45,59,68.60000000000001,72.8,74.67,75.17,74.82000000000001,74.31,72.36,17.71,17.87,17.97,18.06,18.17,18.29,18.490000000000002,18.68,18.93,N/A,N/A -2012,2,17,1,30,101970,100770,99610,92.32000000000001,0,1.79,2.24,2.35,2.54,2.7600000000000002,3,3.2800000000000002,3.56,4.11,5.68,23.31,33.77,42.47,49.2,54.86,58.89,62.36,66.57000000000001,17.79,17.85,17.88,17.900000000000002,17.92,17.95,17.98,18.02,18.09,N/A,N/A -2012,2,17,2,30,101960,100770,99610,90.07000000000001,0,2.48,3.31,3.63,3.81,4.01,4.22,4.44,4.65,5.08,43.71,54.06,60,63.61,66.84,69.85000000000001,72.47,74.81,78.66,17.72,17.86,17.91,17.900000000000002,17.89,17.89,17.87,17.85,17.81,N/A,N/A -2012,2,17,3,30,101950,100750,99590,90.69,0,2.92,3.58,3.9,4.2,4.39,4.5,4.64,4.7700000000000005,5.11,30.92,35.72,40.68,48.44,53.44,56.65,59.620000000000005,62.300000000000004,67.1,17.6,17.57,17.6,17.69,17.71,17.7,17.66,17.62,17.54,N/A,N/A -2012,2,17,4,30,101880,100680,99520,89.74,0,4.0600000000000005,4.73,5.07,5.47,5.7700000000000005,6.01,6.2,6.37,6.78,54.17,55.24,57.47,62.31,66.58,70.39,72.67,74.52,77.67,17.56,17.46,17.45,17.51,17.53,17.54,17.51,17.47,17.36,N/A,N/A -2012,2,17,5,30,101880,100680,99520,91.08,0.7000000000000001,3.5300000000000002,4.16,4.49,4.8100000000000005,5.13,5.45,5.73,5.98,6.2700000000000005,41.51,47.63,52.24,57.75,62.22,66.08,68.78,71.06,74.35000000000001,17.35,17.23,17.2,17.19,17.18,17.17,17.11,17.04,16.75,N/A,N/A -2012,2,17,6,30,101860,100660,99500,87.63,0,4.25,4.9,5.24,5.66,6.03,6.38,6.61,6.8100000000000005,7.0600000000000005,46.2,50.35,53.85,58.61,63.7,68.68,71.09,72.79,73.31,17.52,17.35,17.27,17.23,17.21,17.19,17.080000000000002,16.95,16.6,N/A,N/A -2012,2,17,7,30,101840,100640,99470,87.98,0,6.6000000000000005,7.09,7.22,7.34,7.62,7.96,8.19,8.31,7.76,74.46000000000001,74.45,74.45,74.43,74.37,74.28,73.98,73.63,72.59,16.79,16.490000000000002,16.32,16.15,16.01,15.89,15.870000000000001,15.860000000000001,15.790000000000001,N/A,N/A -2012,2,17,8,30,101820,100610,99450,85.99,0,7.63,8.2,8.31,8.35,8.370000000000001,8.370000000000001,8.38,8.42,8.69,64.69,64.9,65.05,65.22,65.44,65.66,66.06,66.67,71.19,16.61,16.28,16.11,15.91,15.73,15.55,15.36,15.19,15,N/A,N/A -2012,2,17,9,30,101800,100600,99430,90.23,0,7.07,7.61,7.73,7.78,7.8,7.82,7.83,7.8500000000000005,8.08,62.39,62.660000000000004,62.85,63.08,63.34,63.6,63.980000000000004,64.38,66.51,16.57,16.23,16.05,15.860000000000001,15.67,15.49,15.3,15.120000000000001,14.780000000000001,N/A,N/A -2012,2,17,10,30,101790,100590,99420,87.98,0,7.5200000000000005,8.14,8.290000000000001,8.35,8.39,8.4,8.41,8.41,8.44,64.26,64.43,64.54,64.68,64.83,64.99,65.22,65.44,66.17,16.69,16.37,16.19,15.99,15.8,15.620000000000001,15.42,15.24,14.870000000000001,N/A,N/A -2012,2,17,11,30,101780,100570,99410,86.36,0,8.040000000000001,8.700000000000001,8.85,8.91,8.94,8.96,8.96,8.96,8.98,69.03,69.19,69.32000000000001,69.46000000000001,69.61,69.76,69.96000000000001,70.16,70.82000000000001,16.61,16.28,16.1,15.9,15.71,15.530000000000001,15.33,15.15,14.780000000000001,N/A,N/A -2012,2,17,12,30,101770,100570,99400,86.38,0.4,7.8500000000000005,8.51,8.67,8.74,8.77,8.790000000000001,8.790000000000001,8.790000000000001,8.78,69.5,69.73,69.89,70.07000000000001,70.27,70.46000000000001,70.72,70.97,71.7,16.5,16.16,15.98,15.790000000000001,15.59,15.41,15.21,15.030000000000001,14.66,N/A,N/A -2012,2,17,13,30,101770,100570,99400,87.32000000000001,0,7.98,8.620000000000001,8.75,8.8,8.82,8.83,8.82,8.8,8.78,64.95,65.24,65.43,65.62,65.82000000000001,66.01,66.26,66.51,67.26,16.4,16.05,15.870000000000001,15.67,15.48,15.290000000000001,15.1,14.92,14.540000000000001,N/A,N/A -2012,2,17,14,30,101790,100590,99420,88.04,0,7.84,8.46,8.61,8.67,8.69,8.71,8.700000000000001,8.69,8.68,74.75,75.02,75.19,75.37,75.57000000000001,75.77,76.03,76.29,77.07000000000001,16.4,16.05,15.870000000000001,15.68,15.48,15.3,15.1,14.92,14.55,N/A,N/A -2012,2,17,15,30,101800,100600,99430,88.42,0,7.33,7.9,8.02,8.08,8.1,8.1,8.1,8.09,8.08,74.12,74.35000000000001,74.54,74.74,74.95,75.14,75.4,75.65,76.44,16.5,16.16,15.98,15.780000000000001,15.59,15.41,15.21,15.030000000000001,14.65,N/A,N/A -2012,2,17,16,30,101770,100570,99400,89.53,0,7.25,7.79,7.9,7.930000000000001,7.94,7.94,7.930000000000001,7.930000000000001,7.96,79.62,79.85000000000001,80.03,80.22,80.43,80.65,80.98,81.34,83.65,16.51,16.18,16,15.8,15.610000000000001,15.43,15.24,15.06,14.75,N/A,N/A -2012,2,17,17,30,101760,100560,99390,90.69,0,6.87,7.4,7.5200000000000005,7.57,7.6000000000000005,7.61,7.61,7.61,7.61,72.71000000000001,73.06,73.32000000000001,73.59,73.86,74.13,74.44,74.74,75.60000000000001,16.6,16.27,16.09,15.89,15.700000000000001,15.52,15.32,15.14,14.76,N/A,N/A -2012,2,17,18,30,101730,100530,99360,91.04,0,7.62,8.22,8.36,8.41,8.44,8.44,8.44,8.42,8.38,67.43,67.84,68.11,68.41,68.71000000000001,69,69.35000000000001,69.69,70.58,16.56,16.22,16.04,15.84,15.65,15.47,15.27,15.09,14.71,N/A,N/A -2012,2,17,19,30,101730,100530,99360,91.09,0,7.44,8.02,8.15,8.2,8.22,8.22,8.21,8.19,8.14,68.14,68.53,68.79,69.07000000000001,69.35000000000001,69.63,69.97,70.31,71.31,16.55,16.21,16.03,15.83,15.64,15.46,15.26,15.08,14.700000000000001,N/A,N/A -2012,2,17,20,30,101690,100490,99320,91.24,0,7.68,8.25,8.35,8.370000000000001,8.370000000000001,8.34,8.3,8.27,8.18,64.83,65.21000000000001,65.54,65.9,66.28,66.67,67.18,67.71000000000001,69.57000000000001,16.32,15.97,15.790000000000001,15.59,15.4,15.22,15.030000000000001,14.85,14.49,N/A,N/A -2012,2,17,21,30,101660,100460,99290,88.94,0,7.3100000000000005,7.8500000000000005,7.96,7.99,8,7.99,7.97,7.96,7.930000000000001,66.51,66.69,66.78,66.89,67.02,67.16,67.39,67.64,69.35000000000001,16.35,16,15.82,15.620000000000001,15.43,15.25,15.05,14.870000000000001,14.5,N/A,N/A -2012,2,17,22,30,101630,100420,99260,88.83,0,7.43,7.95,8.05,8.08,8.09,8.08,8.06,8.040000000000001,8.040000000000001,69.34,69.53,69.7,69.89,70.09,70.31,70.63,70.96000000000001,72.51,16.39,16.04,15.860000000000001,15.67,15.47,15.290000000000001,15.1,14.91,14.540000000000001,N/A,N/A -2012,2,17,23,30,101600,100390,99230,89.57000000000001,0,7.5,8.06,8.16,8.2,8.2,8.19,8.17,8.15,8.11,65.84,66.14,66.35,66.56,66.81,67.05,67.43,67.84,69.99,16.46,16.11,15.94,15.74,15.55,15.370000000000001,15.17,15,14.65,N/A,N/A -2012,2,18,0,30,101610,100410,99250,89.55,0,7.5,8.07,8.17,8.2,8.21,8.21,8.21,8.21,8.2,67.73,67.93,68.06,68.22,68.44,68.67,69.10000000000001,69.64,73.27,16.59,16.26,16.080000000000002,15.89,15.700000000000001,15.52,15.32,15.15,14.88,N/A,N/A -2012,2,18,1,30,101630,100430,99260,90.11,0,7.04,7.57,7.67,7.7,7.72,7.72,7.74,7.7700000000000005,7.94,62.74,63.11,63.35,63.63,63.96,64.3,64.95,65.74,70.68,16.7,16.38,16.2,16.01,15.82,15.64,15.46,15.290000000000001,15.05,N/A,N/A -2012,2,18,2,30,101600,100400,99230,90.31,0,7.26,7.8,7.91,7.95,7.99,8.01,8.120000000000001,8.25,8.620000000000001,74.94,75.19,75.39,75.67,76.05,76.48,77.49,78.71000000000001,84.93,16.77,16.45,16.28,16.09,15.91,15.73,15.56,15.41,15.34,N/A,N/A -2012,2,18,3,30,101540,100350,99180,91.15,0,7.18,7.72,7.82,7.87,7.91,7.94,8.040000000000001,8.18,8.790000000000001,75.91,76.28,76.52,76.85000000000001,77.27,77.72,78.64,79.96000000000001,88.03,16.81,16.5,16.330000000000002,16.14,15.950000000000001,15.780000000000001,15.59,15.43,15.32,N/A,N/A -2012,2,18,4,30,101480,100290,99130,92.32000000000001,0,7.04,7.6000000000000005,7.73,7.83,7.97,8.120000000000001,8.5,8.85,9.120000000000001,78.25,78.74,79.16,79.69,80.54,81.5,84.27,87.02,91.56,16.85,16.55,16.38,16.19,16.02,15.860000000000001,15.72,15.620000000000001,15.540000000000001,N/A,N/A -2012,2,18,5,30,101430,100240,99080,93.34,0,6.67,7.2,7.3500000000000005,7.48,7.8,8.22,8.58,8.89,9.28,82.08,82.67,83.15,83.86,85.41,87.43,89.77,91.97,95.85000000000001,16.91,16.62,16.46,16.28,16.12,15.98,15.88,15.8,15.73,N/A,N/A -2012,2,18,6,30,101380,100190,99030,93.96000000000001,0,6.6000000000000005,7.26,7.58,8.07,8.44,8.73,9.02,9.28,9.69,91.57000000000001,92.32000000000001,93.05,94.26,95.7,97.24000000000001,98.92,100.5,103.65,17.080000000000002,16.81,16.66,16.5,16.35,16.21,16.1,16.01,15.8,N/A,N/A -2012,2,18,7,30,101310,100120,98960,94.9,0,6.46,7.3500000000000005,7.71,8,8.26,8.5,8.74,8.96,9.39,89.84,90.85000000000001,91.62,92.52,93.72,95.05,96.99000000000001,98.96000000000001,104.18,17.26,17.01,16.87,16.7,16.54,16.39,16.26,16.15,16.05,N/A,N/A -2012,2,18,8,30,101220,100030,98880,95.88,0,6.78,7.6000000000000005,7.92,8.2,8.47,8.73,9.03,9.31,9.83,82.39,83.14,83.81,84.82000000000001,86.31,88.09,91.41,94.96000000000001,105.44,17.28,17.04,16.9,16.740000000000002,16.61,16.5,16.47,16.46,16.54,N/A,N/A -2012,2,18,9,30,101140,99950,98800,96.41,0,7.18,8.03,8.35,8.63,8.91,9.17,9.49,9.81,10.67,85.10000000000001,85.99,86.61,87.46000000000001,88.53,89.73,91.55,93.41,100.58,17.36,17.13,16.990000000000002,16.830000000000002,16.69,16.56,16.490000000000002,16.45,16.48,N/A,N/A -2012,2,18,10,30,101080,99890,98740,97.57000000000001,0,7.13,8.120000000000001,8.51,8.89,9.26,9.61,10.01,10.39,11.46,99.22,99.62,99.96000000000001,100.41,100.98,101.61,102.54,103.48,109.27,17.52,17.3,17.18,17.06,16.97,16.91,16.86,16.82,16.9,N/A,N/A -2012,2,18,11,30,101050,99870,98720,97.37,0,6.91,8.17,8.78,9.44,10.06,10.65,11.03,11.34,11.68,100.91,102.03,103.10000000000001,104.7,107.29,110.55,116.87,123.34,133.9,17.72,17.64,17.6,17.57,17.57,17.6,17.64,17.69,17.73,N/A,N/A -2012,2,18,12,30,101030,99840,98700,96.67,0,6.12,7.33,7.930000000000001,8.6,9.28,9.98,10.59,11.14,11.1,101.19,102.74000000000001,104.37,107.18,110.8,115.04,122.9,131.15,140.70000000000002,17.86,17.82,17.82,17.85,17.89,17.95,18.04,18.14,18.16,N/A,N/A -2012,2,18,13,30,100970,99790,98650,96.23,78.4,4.67,5.7,6.3,7.0200000000000005,7.5,7.74,7.83,7.86,7.76,90.53,93.10000000000001,96.01,100.82000000000001,109.4,123.10000000000001,130.77,135.28,142.48,17.96,17.98,17.98,17.990000000000002,18.07,18.22,18.28,18.3,18.330000000000002,N/A,N/A -2012,2,18,14,30,100860,99680,98540,95.31,11.4,4.73,6.28,6.68,6.69,6.74,6.8100000000000005,6.96,7.11,7.41,115.93,120.61,126.28,134.62,138.70000000000002,140.84,142.65,144.24,147.39000000000001,18.17,18.61,18.87,19.14,19.240000000000002,19.26,19.23,19.19,19.1,N/A,N/A -2012,2,18,15,30,100860,99670,98530,99.33,16.1,7.51,7.75,7.44,6.57,5.72,4.94,4.14,3.49,2.31,25.150000000000002,27.88,29.87,31.76,33.26,34.45,36.31,37.96,48.26,16.39,16.59,16.84,17.27,17.56,17.78,17.900000000000002,18,18.06,N/A,N/A -2012,2,18,16,30,100850,99660,98520,98.56,28.900000000000002,6.140000000000001,5.55,5.01,4.36,3.68,3.06,2.36,1.81,0.8,52.81,56.07,58.13,59.9,59.92,59.19,54.42,49.59,4.93,16.79,16.98,17.12,17.19,17.27,17.35,17.400000000000002,17.44,17.52,N/A,N/A -2012,2,18,17,30,100760,99570,98430,98.2,133.3,4.43,3.52,2.74,2.0100000000000002,1.68,1.48,2.08,2.84,4.72,42.12,34.65,24.59,12.74,340.02,307.48,287.26,266.92,254.56,17.080000000000002,17.55,17.71,17.740000000000002,17.76,17.78,17.77,17.76,17.740000000000002,N/A,N/A -2012,2,18,18,30,100790,99610,98460,97.99000000000001,1.1,1.11,1.96,2.47,3.16,3.8200000000000003,4.45,5.05,5.62,6.7,165.55,195.32,213.9,224.3,231.21,235.39000000000001,238,240.15,242.93,17.76,17.71,17.66,17.57,17.5,17.45,17.42,17.400000000000002,17.42,N/A,N/A -2012,2,18,19,30,100810,99630,98480,98.03,0.4,3,3.33,3.43,3.48,3.49,3.49,3.5500000000000003,3.62,4.03,300.97,300.12,298.68,295.93,293.85,292.22,291.25,290.42,287.65000000000003,17.53,17.28,17.17,17.1,17.04,16.98,16.91,16.86,16.79,N/A,N/A -2012,2,18,20,30,100850,99660,98510,98.04,0.4,3.83,3.95,3.96,4.11,4.17,4.15,4.11,4.08,4.34,318.33,318.33,317.86,315.93,314.53000000000003,313.5,309.47,304.87,294.67,17.03,16.75,16.6,16.46,16.35,16.26,16.23,16.22,16.26,N/A,N/A -2012,2,18,21,30,100840,99640,98490,95.35000000000001,0,4.84,5.03,5.0200000000000005,4.97,4.9,4.82,4.64,4.5,4.41,329.87,329.81,329.69,329.51,328.73,327.74,322.88,318.1,308.62,16.41,16.080000000000002,15.91,15.72,15.52,15.34,15.35,15.38,15.59,N/A,N/A -2012,2,18,22,30,100880,99690,98530,94.34,0,3.7600000000000002,3.93,3.96,3.97,4.0200000000000005,4.11,4.43,4.78,5.25,318.81,318.59000000000003,318.31,317.82,316.46,314.65000000000003,309.62,304.49,299.3,16.490000000000002,16.17,16,15.8,15.620000000000001,15.44,15.33,15.25,15.15,N/A,N/A -2012,2,18,23,30,100900,99710,98550,94.33,0,4.9,5.19,5.2700000000000005,5.34,5.5600000000000005,5.87,6.5,7.140000000000001,7.72,312.69,311.85,311.02,309.64,306.92,303.29,298.1,293.03000000000003,289.76,16.34,16.02,15.85,15.67,15.51,15.370000000000001,15.290000000000001,15.21,15.11,N/A,N/A -2012,2,19,0,30,100980,99790,98630,94.43,0,6.37,6.8,6.9,6.95,6.98,7,7.05,7.09,7.42,296.96,295.91,295.26,294.51,293.72,292.90000000000003,291.83,290.76,286.87,16.11,15.780000000000001,15.6,15.4,15.22,15.040000000000001,14.85,14.68,14.370000000000001,N/A,N/A -2012,2,19,1,30,101030,99840,98670,90.99,3.3000000000000003,8.71,9.450000000000001,9.66,9.77,9.84,9.89,9.92,9.94,9.97,293.90000000000003,294.17,294.24,294.29,294.31,294.33,294.33,294.33,294.29,16.09,15.72,15.540000000000001,15.33,15.14,14.950000000000001,14.75,14.56,14.18,N/A,N/A -2012,2,19,2,30,101100,99900,98730,89.29,0,10.92,11.950000000000001,12.23,12.39,12.5,12.58,12.64,12.700000000000001,12.8,293.93,294,294.02,294.03000000000003,294.04,294.04,294.04,294.04,294.04,15.43,15,14.790000000000001,14.58,14.38,14.19,13.99,13.8,13.42,N/A,N/A -2012,2,19,3,30,101180,99980,98810,87.91,0,12.11,13.25,13.58,13.76,13.88,13.97,14.040000000000001,14.09,14.16,293.2,293.43,293.56,293.7,293.82,293.94,294.07,294.19,294.45,14.85,14.370000000000001,14.16,13.94,13.74,13.540000000000001,13.34,13.15,12.76,N/A,N/A -2012,2,19,4,30,101250,100040,98860,86.27,0,11.8,12.790000000000001,13.06,13.200000000000001,13.27,13.32,13.34,13.36,13.36,297.48,297.8,298.02,298.23,298.43,298.62,298.84000000000003,299.04,299.5,13.780000000000001,13.23,13,12.780000000000001,12.57,12.370000000000001,12.17,11.98,11.59,N/A,N/A -2012,2,19,5,30,101310,100100,98920,86.05,0,11.44,12.49,12.790000000000001,12.96,13.08,13.16,13.22,13.27,13.33,305.07,305.62,305.95,306.24,306.51,306.76,307.02,307.25,307.73,13.52,12.950000000000001,12.72,12.5,12.280000000000001,12.08,11.870000000000001,11.68,11.28,N/A,N/A -2012,2,19,6,30,101430,100210,99030,84.66,0,13.11,14.280000000000001,14.68,14.88,15.030000000000001,15.13,15.200000000000001,15.27,15.35,314.44,314.63,314.78000000000003,314.93,315.06,315.19,315.32,315.44,315.7,13.33,12.74,12.49,12.25,12.030000000000001,11.83,11.620000000000001,11.43,11.03,N/A,N/A -2012,2,19,7,30,101490,100270,99090,86.77,0,11.68,12.71,12.99,13.14,13.24,13.31,13.34,13.370000000000001,13.39,315.1,315.21,315.31,315.39,315.48,315.56,315.64,315.71,315.88,13.09,12.49,12.25,12.01,11.790000000000001,11.59,11.38,11.19,10.790000000000001,N/A,N/A -2012,2,19,8,30,101540,100320,99140,84.16,0,12.3,13.42,13.74,13.92,14.040000000000001,14.13,14.19,14.24,14.31,328.46,328.59000000000003,328.66,328.72,328.76,328.81,328.85,328.90000000000003,328.98,12.76,12.13,11.89,11.65,11.43,11.23,11.02,10.82,10.42,N/A,N/A -2012,2,19,9,30,101600,100380,99190,84.88,0,11.93,12.96,13.26,13.42,13.52,13.6,13.65,13.69,13.74,334.3,334.3,334.31,334.31,334.31,334.31,334.32,334.32,334.33,12.32,11.68,11.43,11.200000000000001,10.98,10.77,10.56,10.370000000000001,9.97,N/A,N/A -2012,2,19,10,30,101660,100440,99250,86.17,0,11.31,12.25,12.51,12.64,12.73,12.790000000000001,12.83,12.86,12.9,336.98,337.08,337.14,337.2,337.25,337.3,337.34000000000003,337.38,337.47,12.040000000000001,11.4,11.15,10.91,10.700000000000001,10.49,10.28,10.08,9.69,N/A,N/A -2012,2,19,11,30,101740,100510,99320,84.56,0,11.59,12.56,12.84,12.98,13.08,13.15,13.200000000000001,13.23,13.280000000000001,344.31,344.34000000000003,344.36,344.38,344.39,344.40000000000003,344.42,344.44,344.46,11.67,11,10.74,10.5,10.28,10.08,9.86,9.66,9.26,N/A,N/A -2012,2,19,12,30,101800,100570,99370,85.68,0,11.07,11.98,12.24,12.38,12.48,12.55,12.6,12.63,12.69,347.82,347.90000000000003,347.95,347.99,348.04,348.08,348.12,348.17,348.26,11.36,10.68,10.43,10.19,9.97,9.76,9.55,9.35,8.96,N/A,N/A -2012,2,19,13,30,101850,100610,99420,84.83,0,10.98,11.88,12.13,12.26,12.35,12.41,12.450000000000001,12.48,12.52,352.32,352.35,352.36,352.37,352.38,352.39,352.40000000000003,352.41,352.45,11.17,10.48,10.23,9.99,9.76,9.56,9.35,9.15,8.75,N/A,N/A -2012,2,19,14,30,101910,100680,99490,84.93,0,10.21,10.97,11.19,11.3,11.370000000000001,11.42,11.450000000000001,11.47,11.5,354.18,354.1,354.04,353.98,353.94,353.89,353.84000000000003,353.8,353.72,11.05,10.39,10.13,9.9,9.68,9.47,9.26,9.07,8.67,N/A,N/A -2012,2,19,15,30,101960,100720,99530,82.8,0,8.81,9.43,9.6,9.69,9.74,9.790000000000001,9.81,9.84,9.88,354.15000000000003,354.13,354.12,354.11,354.1,354.09000000000003,354.08,354.08,354.08,11.06,10.44,10.19,9.96,9.75,9.55,9.34,9.15,8.76,N/A,N/A -2012,2,19,16,30,101980,100750,99560,80.67,0,7.37,7.84,7.97,8.03,8.08,8.11,8.13,8.15,8.17,352.77,352.91,353.01,353.11,353.2,353.29,353.38,353.46,353.64,11.36,10.78,10.55,10.33,10.120000000000001,9.92,9.71,9.52,9.120000000000001,N/A,N/A -2012,2,19,17,30,101970,100740,99550,78.26,0,6.32,6.69,6.79,6.84,6.87,6.890000000000001,6.91,6.92,6.94,346.74,346.85,346.93,347,347.07,347.13,347.21,347.28000000000003,347.45,11.88,11.34,11.120000000000001,10.9,10.69,10.5,10.290000000000001,10.1,9.71,N/A,N/A -2012,2,19,18,30,101960,100740,99550,76.29,0,5.3,5.6000000000000005,5.69,5.73,5.7700000000000005,5.8,5.82,5.84,5.86,342.33,342.71,342.97,343.2,343.43,343.62,343.84000000000003,344.05,344.47,12.49,12,11.790000000000001,11.57,11.370000000000001,11.17,10.97,10.78,10.38,N/A,N/A -2012,2,19,19,30,101970,100750,99560,74.3,0,4.07,4.26,4.3100000000000005,4.34,4.36,4.37,4.39,4.39,4.41,334.6,335.72,336.48,337.2,337.85,338.46,339.06,339.63,340.78000000000003,13.08,12.64,12.43,12.22,12.02,11.83,11.63,11.44,11.05,N/A,N/A -2012,2,19,20,30,101940,100720,99530,73.97,0,3.5500000000000003,3.67,3.67,3.67,3.65,3.64,3.62,3.6,3.5700000000000003,319.14,320.37,321.18,321.98,322.72,323.40000000000003,324.15000000000003,324.85,326.35,13.41,12.98,12.780000000000001,12.57,12.370000000000001,12.19,11.98,11.790000000000001,11.4,N/A,N/A -2012,2,19,21,30,101920,100700,99520,72.4,0,3.11,3.24,3.27,3.2800000000000002,3.29,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,312.72,313.42,313.87,314.3,314.71,315.09000000000003,315.49,315.88,316.71,13.73,13.33,13.13,12.92,12.72,12.530000000000001,12.32,12.14,11.74,N/A,N/A -2012,2,19,22,30,101910,100690,99510,71.46000000000001,0,2.49,2.57,2.57,2.56,2.5500000000000003,2.54,2.52,2.5100000000000002,2.49,312.64,314.04,315.02,315.95,316.84000000000003,317.66,318.51,319.29,321.02,14.16,13.77,13.58,13.38,13.18,12.99,12.790000000000001,12.6,12.21,N/A,N/A -2012,2,19,23,30,101900,100680,99500,71.26,0,1.93,2,2.02,2.02,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,307.21,307.59000000000003,307.82,308.08,308.33,308.57,308.86,309.14,309.85,14.19,13.81,13.620000000000001,13.41,13.22,13.030000000000001,12.83,12.64,12.25,N/A,N/A -2012,2,20,0,30,101900,100680,99500,69.03,0,1.17,1.23,1.25,1.26,1.27,1.28,1.29,1.29,1.31,313.44,315.11,316.22,317.27,318.3,319.27,320.29,321.26,323.49,14.48,14.11,13.93,13.73,13.530000000000001,13.34,13.14,12.950000000000001,12.56,N/A,N/A -2012,2,20,1,30,101900,100680,99500,68.85000000000001,0,0.9400000000000001,1.01,1.04,1.07,1.1,1.12,1.1500000000000001,1.17,1.22,353.98,354.35,354.45,354.54,354.69,354.86,355.06,355.25,355.81,14.69,14.34,14.15,13.950000000000001,13.75,13.56,13.36,13.17,12.780000000000001,N/A,N/A -2012,2,20,2,30,101920,100700,99530,69.60000000000001,0,1.04,1.09,1.1,1.11,1.12,1.1300000000000001,1.1500000000000001,1.16,1.2,74.78,73.27,72.13,71.09,70.15,69.3,68.45,67.67,66.18,14.8,14.44,14.26,14.06,13.86,13.67,13.47,13.280000000000001,12.9,N/A,N/A -2012,2,20,3,30,101920,100700,99520,71.76,0,2.54,2.65,2.68,2.69,2.71,2.72,2.73,2.74,2.7600000000000002,91.4,90.73,90.29,89.87,89.47,89.10000000000001,88.71000000000001,88.34,87.56,14.75,14.38,14.19,13.99,13.790000000000001,13.61,13.4,13.22,12.83,N/A,N/A -2012,2,20,4,30,101910,100700,99520,72.33,0,2.58,2.7600000000000002,2.83,2.88,2.93,2.97,3.02,3.06,3.16,97.69,97.36,97.11,96.86,96.63,96.41,96.17,95.93,95.41,14.83,14.46,14.27,14.07,13.88,13.69,13.49,13.3,12.92,N/A,N/A -2012,2,20,5,30,101910,100700,99520,68.83,0,4.43,4.8,4.92,5,5.07,5.12,5.17,5.21,5.28,95.42,95.14,94.94,94.74,94.57000000000001,94.41,94.25,94.10000000000001,93.8,15.42,15.06,14.870000000000001,14.67,14.47,14.280000000000001,14.08,13.89,13.5,N/A,N/A -2012,2,20,6,30,101940,100730,99550,70.63,0,6.01,6.4,6.49,6.53,6.55,6.5600000000000005,6.57,6.57,6.5600000000000005,106.88,106.86,106.88,106.93,106.97,107.01,107.06,107.11,107.21000000000001,15.44,15.07,14.89,14.68,14.49,14.3,14.09,13.9,13.51,N/A,N/A -2012,2,20,7,30,101960,100750,99570,70.26,0,6.66,7.13,7.23,7.28,7.3,7.32,7.32,7.32,7.3,107.03,107.34,107.52,107.67,107.82000000000001,107.94,108.09,108.21000000000001,108.45,15.57,15.200000000000001,15.02,14.82,14.61,14.42,14.22,14.030000000000001,13.64,N/A,N/A -2012,2,20,8,30,101960,100740,99570,74.52,0,6.92,7.45,7.62,7.71,7.78,7.83,7.87,7.91,7.97,119.57000000000001,119.45,119.38,119.33,119.28,119.23,119.2,119.17,119.11,15.46,15.09,14.9,14.700000000000001,14.5,14.31,14.1,13.91,13.52,N/A,N/A -2012,2,20,9,30,101940,100730,99550,77.5,0,7.95,8.58,8.73,8.8,8.82,8.83,8.81,8.8,8.74,119.10000000000001,119.44,119.59,119.73,119.86,119.97,120.08,120.18,120.38,15.41,15.030000000000001,14.84,14.63,14.43,14.24,14.030000000000001,13.84,13.450000000000001,N/A,N/A -2012,2,20,10,30,101920,100710,99540,77.05,0,8.4,9.11,9.290000000000001,9.38,9.42,9.450000000000001,9.46,9.47,9.450000000000001,117.57000000000001,117.99000000000001,118.27,118.55,118.81,119.05,119.3,119.54,120.02,15.33,14.94,14.74,14.530000000000001,14.33,14.14,13.93,13.74,13.34,N/A,N/A -2012,2,20,11,30,101920,100710,99540,79.78,0,7.21,7.8100000000000005,8,8.11,8.19,8.26,8.3,8.34,8.4,117.13,117.23,117.3,117.37,117.43,117.49000000000001,117.54,117.58,117.67,15.44,15.06,14.870000000000001,14.66,14.46,14.27,14.06,13.88,13.48,N/A,N/A -2012,2,20,12,30,101920,100710,99530,78.45,0,7.57,8.18,8.35,8.44,8.5,8.55,8.58,8.61,8.65,112.2,112.60000000000001,112.92,113.23,113.52,113.79,114.07000000000001,114.33,114.87,15.47,15.09,14.89,14.69,14.49,14.31,14.1,13.91,13.52,N/A,N/A -2012,2,20,13,30,101930,100720,99540,79.44,0,7,7.54,7.69,7.7700000000000005,7.83,7.87,7.9,7.930000000000001,7.97,120.21000000000001,120.33,120.46000000000001,120.60000000000001,120.72,120.83,120.95,121.07000000000001,121.31,15.610000000000001,15.24,15.05,14.85,14.66,14.47,14.27,14.08,13.69,N/A,N/A -2012,2,20,14,30,101960,100750,99580,78.11,0,7.88,8.59,8.8,8.91,9,9.06,9.1,9.14,9.200000000000001,124.41,124.46000000000001,124.62,124.79,124.97,125.14,125.33,125.52,125.92,15.94,15.59,15.4,15.21,15.01,14.82,14.620000000000001,14.43,14.040000000000001,N/A,N/A -2012,2,20,15,30,101980,100770,99600,79.96000000000001,0,7.66,8.25,8.4,8.46,8.49,8.51,8.51,8.51,8.5,118.56,119.3,119.8,120.34,120.87,121.38,121.95,122.49000000000001,123.69,16.09,15.75,15.57,15.370000000000001,15.18,15,14.8,14.61,14.23,N/A,N/A -2012,2,20,16,30,101980,100780,99600,80.29,0,7.05,7.63,7.7700000000000005,7.84,7.88,7.91,7.92,7.930000000000001,7.92,128.2,128.29,128.45,128.62,128.79,128.96,129.15,129.34,129.76,16.43,16.1,15.93,15.73,15.540000000000001,15.35,15.15,14.96,14.57,N/A,N/A -2012,2,20,17,30,101980,100770,99600,82.13,0,7.45,8.09,8.26,8.34,8.39,8.42,8.44,8.45,8.45,126.75,127.10000000000001,127.37,127.65,127.92,128.17000000000002,128.45,128.7,129.26,16.52,16.2,16.03,15.83,15.64,15.450000000000001,15.25,15.07,14.68,N/A,N/A -2012,2,20,18,30,101980,100770,99600,82.49,0,7.2,7.890000000000001,8.08,8.19,8.27,8.32,8.36,8.39,8.43,130.85,131.22,131.47,131.7,131.91,132.11,132.32,132.52,132.93,16.88,16.59,16.42,16.22,16.03,15.85,15.65,15.47,15.08,N/A,N/A -2012,2,20,19,30,101980,100770,99610,83.84,0,6.84,7.47,7.640000000000001,7.72,7.78,7.82,7.84,7.86,7.88,131.91,132,132.17000000000002,132.39000000000001,132.65,132.93,133.25,133.56,134.38,17.02,16.740000000000002,16.580000000000002,16.39,16.2,16.02,15.82,15.64,15.26,N/A,N/A -2012,2,20,20,30,101950,100750,99580,85.59,0,7.13,7.75,7.9,7.98,8.03,8.06,8.09,8.11,8.23,126.9,127.03,127.21000000000001,127.46000000000001,127.75,128.07,128.52,128.99,130.89000000000001,17.02,16.75,16.580000000000002,16.39,16.21,16.03,15.83,15.66,15.31,N/A,N/A -2012,2,20,21,30,101940,100740,99570,86.07000000000001,0,5.71,6.45,6.7,6.78,6.95,7.16,7.32,7.47,7.71,124.63000000000001,125.23,125.71000000000001,126.26,127.38000000000001,128.86,130.69,132.44,135.95,17.2,16.97,16.82,16.64,16.490000000000002,16.35,16.19,16.05,15.74,N/A,N/A -2012,2,20,22,30,101900,100700,99540,87.48,0,5.82,6.5600000000000005,6.84,7.07,7.25,7.42,7.57,7.69,7.92,141.64000000000001,141.9,142.15,142.48,142.87,143.32,143.95000000000002,144.58,146.36,17.41,17.21,17.080000000000002,16.92,16.76,16.61,16.44,16.29,15.97,N/A,N/A -2012,2,20,23,30,101900,100710,99540,88.74,0,4.96,5.75,6.09,6.4,6.66,6.9,7.08,7.23,7.32,140.22,140.49,140.78,141.20000000000002,141.74,142.4,143.41,144.46,148.06,17.51,17.34,17.23,17.080000000000002,16.94,16.79,16.64,16.5,16.2,N/A,N/A -2012,2,21,0,30,101920,100720,99560,88.88,0,5.12,5.9,6.21,6.49,6.75,7,7.28,7.54,7.97,155.09,155.28,155.51,155.85,156.13,156.37,156.76,157.19,160.79,17.66,17.53,17.42,17.27,17.12,16.97,16.81,16.67,16.41,N/A,N/A -2012,2,21,1,30,101940,100740,99580,90.57000000000001,0,4.47,5.43,5.87,6.3100000000000005,6.75,7.21,7.68,8.13,8.24,154.19,155.97,157.38,159.21,160.65,161.83,162.88,163.88,169.5,17.66,17.61,17.56,17.490000000000002,17.400000000000002,17.29,17.17,17.07,16.85,N/A,N/A -2012,2,21,2,30,101950,100750,99590,92.05,0,5.13,6.0600000000000005,6.5,6.98,7.41,7.8100000000000005,8.09,8.3,8.28,146.18,147.94,149.38,151.32,153.34,155.48,158.25,160.97,164.45000000000002,17.64,17.580000000000002,17.54,17.5,17.47,17.44,17.37,17.3,17.04,N/A,N/A -2012,2,21,3,30,101960,100760,99610,92.16,0,4.78,5.83,6.33,6.86,7.33,7.76,8.01,8.19,8.22,149.18,150.17000000000002,150.98,151.98,153.36,155.05,159.66,164.59,168.74,17.72,17.66,17.62,17.56,17.53,17.5,17.48,17.46,17.22,N/A,N/A -2012,2,21,4,30,101990,100790,99630,92.55,0,3.91,4.96,5.5,6.12,6.5600000000000005,6.87,6.95,6.96,6.98,148.85,150.20000000000002,152.24,156.75,161.69,166.9,169.55,171.32,174.31,17.7,17.69,17.69,17.73,17.740000000000002,17.76,17.68,17.59,17.330000000000002,N/A,N/A -2012,2,21,5,30,102010,100810,99650,95.17,0,2.67,3.7800000000000002,4.39,5.18,5.59,5.69,5.78,5.87,6.1000000000000005,151.3,154.54,158.46,166.35,171.39000000000001,173.95000000000002,176.62,179.12,182.8,17.55,17.56,17.61,17.78,17.82,17.78,17.7,17.63,17.400000000000002,N/A,N/A -2012,2,21,6,30,102020,100830,99670,95.27,0,3.29,4.63,5.3100000000000005,5.89,6.17,6.23,6.38,6.55,6.95,166.33,169.29,173.64000000000001,183.33,188.84,191.22,193.18,194.9,196.68,17.56,17.75,17.87,18.02,18.03,17.97,17.93,17.900000000000002,17.75,N/A,N/A -2012,2,21,7,30,102070,100870,99710,95.81,0,2.45,3.8200000000000003,4.44,4.78,5.0600000000000005,5.3100000000000005,5.55,5.7700000000000005,6.13,176.13,182.33,188.33,196.88,201.22,202.43,203.18,203.75,204.47,17.64,18,18.13,18.14,18.14,18.150000000000002,18.14,18.13,17.97,N/A,N/A -2012,2,21,8,30,102060,100860,99700,96.06,0,2.86,3.81,4.14,4.38,4.63,4.9,5.17,5.42,5.83,187.05,194.06,198.81,202.8,205.57,207.52,208.66,209.53,210.33,17.63,17.86,17.96,18,18.06,18.13,18.14,18.150000000000002,17.98,N/A,N/A -2012,2,21,9,30,102060,100870,99710,96.78,0,2.22,2.97,3.18,3.41,3.63,3.84,4.05,4.25,4.55,187.24,194.5,198.98000000000002,202.25,204.87,207.09,208.95000000000002,210.61,213.66,17.56,17.82,17.92,17.96,17.990000000000002,18.01,18.01,18.01,17.85,N/A,N/A -2012,2,21,10,30,102070,100870,99720,97.11,0,0.88,1.36,1.57,1.82,2.06,2.29,2.52,2.74,3.1,207.43,219.62,226.93,229.68,231.57,232.8,233.57,234.19,235.20000000000002,17.48,17.75,17.86,17.91,17.95,17.97,17.98,17.98,17.85,N/A,N/A -2012,2,21,11,30,102080,100880,99720,97.55,0,0.9400000000000001,1.09,1.09,1.24,1.41,1.59,1.77,1.95,2.24,176.09,197.68,209.85,220.13,226.98000000000002,231.49,234.46,236.9,239.68,17.36,17.580000000000002,17.67,17.72,17.75,17.77,17.78,17.78,17.68,N/A,N/A -2012,2,21,12,30,102090,100890,99730,97.57000000000001,0,0.76,0.91,0.9400000000000001,1.1400000000000001,1.32,1.5,1.6500000000000001,1.79,2.0100000000000002,184.93,210.08,224.1,232.85,238.61,241.68,243.6,245.06,245.91,17.330000000000002,17.59,17.72,17.82,17.89,17.94,17.94,17.94,17.79,N/A,N/A -2012,2,21,13,30,102090,100890,99730,98.26,0,0.4,0.63,0.74,0.86,0.9500000000000001,1.03,1.08,1.1400000000000001,1.24,39.37,7.95,347.1,333.79,323.1,314.47,307.81,302.07,292.90000000000003,17.17,17.34,17.42,17.490000000000002,17.53,17.55,17.56,17.56,17.47,N/A,N/A -2012,2,21,14,30,102160,100950,99780,99.26,0,5.5600000000000005,5.61,5.48,5.28,4.92,4.51,4.05,3.65,2.82,4.95,5.19,5.57,6.44,8.03,9.83,12.07,14.05,18.23,15.94,15.69,15.610000000000001,15.57,15.620000000000001,15.72,15.82,15.9,16.02,N/A,N/A -2012,2,21,15,30,102180,100970,99800,99.22,0,4.91,5.01,4.92,4.76,4.3100000000000005,3.77,3.31,2.95,2.2600000000000002,19.89,19.91,19.89,19.79,20.38,21.240000000000002,24.47,27.7,38.35,15.76,15.49,15.38,15.27,15.32,15.46,15.6,15.71,15.75,N/A,N/A -2012,2,21,16,30,102170,100960,99790,99.23,0,4.93,5.05,5,4.91,4.54,4.07,3.61,3.22,2.46,29.94,29.66,29.150000000000002,28.14,27.03,26.02,28.35,31.080000000000002,42.160000000000004,15.75,15.48,15.36,15.23,15.25,15.35,15.44,15.530000000000001,15.610000000000001,N/A,N/A -2012,2,21,17,30,102160,100950,99780,99.24000000000001,0,5.08,5.22,5.17,5.08,4.78,4.38,3.91,3.5,2.65,36,35.980000000000004,35.89,35.65,35.550000000000004,35.550000000000004,37.52,39.63,48.11,15.8,15.52,15.4,15.290000000000001,15.290000000000001,15.35,15.47,15.6,15.76,N/A,N/A -2012,2,21,18,30,102130,100920,99750,99.31,0,4.3500000000000005,4.43,4.38,4.28,3.99,3.64,3.2800000000000002,2.97,2.44,40.800000000000004,40.89,41.160000000000004,41.77,43,44.42,47.18,49.69,54.46,16,15.75,15.64,15.540000000000001,15.530000000000001,15.58,15.63,15.66,15.58,N/A,N/A -2012,2,21,19,30,102130,100920,99750,99.24000000000001,0,3.72,3.77,3.7,3.59,3.38,3.12,2.87,2.66,2.57,58.06,58.4,58.88,59.92,61.31,62.77,64.83,66.59,68.4,16.19,15.94,15.82,15.69,15.610000000000001,15.540000000000001,15.47,15.39,15.19,N/A,N/A -2012,2,21,20,30,102080,100870,99710,99.25,0,3.29,3.27,3.16,2.98,2.9,2.85,2.71,2.58,2.5,65.82000000000001,67.18,69.69,75.26,77.98,79.18,83.11,86.83,91.87,16.330000000000002,16.1,15.99,15.870000000000001,15.77,15.68,15.6,15.530000000000001,15.34,N/A,N/A -2012,2,21,21,30,102030,100830,99660,98.26,0,2.63,2.65,2.6,2.52,2.45,2.4,2.39,2.38,2.44,79.66,80.65,82.54,86.98,92.26,97.96000000000001,99.94,101.2,111.14,16.52,16.23,16.09,15.950000000000001,15.85,15.77,15.68,15.6,15.43,N/A,N/A -2012,2,21,22,30,101960,100760,99590,97.91,0,3.0300000000000002,3.08,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.04,95.14,97.35000000000001,100.73,107.94,112.42,115.29,116.34,116.84,117.60000000000001,16.55,16.25,16.1,15.97,15.860000000000001,15.76,15.67,15.58,15.39,N/A,N/A -2012,2,21,23,30,101900,100700,99530,97.88,0,2.72,2.89,3.0500000000000003,3.45,3.71,3.86,3.92,3.96,4.03,112.15,115.27,118.60000000000001,124.61,127.76,128.88,129.36,129.67000000000002,130.3,16.61,16.3,16.15,16.01,15.89,15.780000000000001,15.68,15.59,15.39,N/A,N/A -2012,2,22,0,30,101870,100670,99510,98.38,0,3.67,3.89,4.1,4.63,4.87,4.91,4.94,4.97,5.0200000000000005,109.48,112.86,117.61,128.45,133.29,133.94,134.45,134.88,135.72,16.81,16.54,16.41,16.31,16.22,16.12,16.02,15.92,15.72,N/A,N/A -2012,2,22,1,30,101830,100630,99460,98.79,0,3.96,4.62,4.91,5.12,5.2700000000000005,5.37,5.4,5.42,5.47,128.66,130.98,132.74,134.79,136.79,138.72,140.69,142.49,146.24,17,16.84,16.740000000000002,16.63,16.51,16.4,16.29,16.19,15.92,N/A,N/A -2012,2,22,2,30,101810,100610,99450,97.39,0,3.8200000000000003,4.3100000000000005,4.58,4.97,5.23,5.41,5.58,5.74,5.96,131.53,134.47,137,140.94,143.43,144.94,146.68,148.36,152.18,17.14,16.88,16.73,16.580000000000002,16.46,16.36,16.26,16.16,15.83,N/A,N/A -2012,2,22,3,30,101780,100580,99420,99.27,0,3.7800000000000002,4.28,4.53,4.88,5.36,5.98,6.28,6.49,6.69,156,156.68,157.91,161.18,165.36,170.47,171.42000000000002,171.23,170.86,17.14,16.98,16.92,16.86,16.86,16.89,16.8,16.69,16.330000000000002,N/A,N/A -2012,2,22,4,30,101740,100550,99390,99.34,0,4.38,4.96,5.19,5.38,5.54,5.67,5.74,5.82,7,169.77,171.25,172.14000000000001,172.91,173.47,173.91,174.19,174.48,178.19,16.990000000000002,16.830000000000002,16.75,16.65,16.55,16.45,16.35,16.27,16.990000000000002,N/A,N/A -2012,2,22,5,30,101730,100530,99370,99.34,0,4.7700000000000005,5.26,5.44,5.57,5.8,6.13,6.59,7.0600000000000005,8.02,180.44,180,179.71,179.49,179.29,179.1,179.20000000000002,179.4,181.01,16.81,16.62,16.53,16.43,16.37,16.330000000000002,16.44,16.57,17.18,N/A,N/A -2012,2,22,6,30,101690,100500,99340,96.92,0,4.65,5.8100000000000005,6.47,7.3500000000000005,8.26,9.27,9.76,10.05,9.99,192.26,191.35,190.38,188.65,187.42000000000002,186.61,186.88,187.48,189.29,17.66,17.63,17.61,17.6,17.580000000000002,17.56,17.44,17.3,17.31,N/A,N/A -2012,2,22,7,30,101680,100490,99330,96.74000000000001,0,3.94,4.98,5.47,5.98,6.73,7.7700000000000005,8.75,9.69,10.33,194.12,193.84,193.72,193.73000000000002,194.13,194.88,195.24,195.49,196.08,17.71,17.64,17.57,17.47,17.17,16.73,16.92,17.240000000000002,18.080000000000002,N/A,N/A -2012,2,22,8,30,101630,100440,99280,97.91,0,3.2,4.19,4.7700000000000005,5.48,6.5200000000000005,7.96,8.92,9.68,9.91,199.95000000000002,199.35,198.85,198.18,197.19,195.79,195.47,195.51,196.74,17.48,17.43,17.38,17.28,17.240000000000002,17.25,17.44,17.67,18.3,N/A,N/A -2012,2,22,9,30,101580,100390,99240,96.76,0,2.8000000000000003,4.07,4.82,5.89,6.88,7.8,8.49,9.07,10.16,217.76,214.61,212.19,209.66,207.6,205.94,204.02,202.1,201.85,17.78,17.87,17.89,17.87,17.740000000000002,17.54,17.43,17.36,17.69,N/A,N/A -2012,2,22,10,30,101540,100350,99200,95.83,0.4,4.75,6.19,6.91,7.6000000000000005,8.120000000000001,8.53,9,9.450000000000001,10.26,197.47,198.57,199.62,201.35,203.22,205.21,206.41,207.31,207.91,17.900000000000002,17.84,17.77,17.66,17.53,17.39,17.12,16.84,17.45,N/A,N/A -2012,2,22,11,30,101530,100340,99190,96.96000000000001,0.4,2.2600000000000002,3.65,4.42,5.23,5.99,6.73,7.37,7.95,8.88,205.12,204.28,203.83,204.12,204.48000000000002,204.92000000000002,205.49,206.09,209.42000000000002,17.79,17.8,17.75,17.68,17.6,17.53,17.400000000000002,17.27,17.02,N/A,N/A -2012,2,22,12,30,101500,100310,99160,97.28,0,1.8800000000000001,3.06,3.8200000000000003,5.38,6.63,7.46,8.07,8.56,8.93,199.17000000000002,200.55,202.03,204.74,206.54,207.29,208.55,209.92000000000002,211.95000000000002,17.79,17.91,17.95,18.01,17.96,17.830000000000002,17.66,17.490000000000002,17.3,N/A,N/A -2012,2,22,13,30,101430,100240,99100,95.39,0,5.18,6.46,7.12,7.95,8.83,9.77,10.57,11.3,11.84,209.43,211.24,212.24,212.6,212.43,211.84,212.52,213.54,216.89000000000001,17.98,18.04,18.04,17.990000000000002,17.84,17.63,17.68,17.8,18.64,N/A,N/A -2012,2,22,14,30,101440,100260,99100,94.88,0,5.8100000000000005,7.21,7.95,8.870000000000001,9.81,10.8,11.63,12.38,12.75,210.89000000000001,210.89000000000001,211.16,212.32,214.25,217.03,220.05,223.02,225.33,18.080000000000002,18.14,18.150000000000002,18.16,18.09,17.96,17.79,17.63,18.31,N/A,N/A -2012,2,22,15,30,101400,100210,99060,92.88,0,7.44,9.16,9.98,10.82,11.55,12.22,12.74,13.16,13.39,210.96,211.77,212.62,214.22,216.46,219.43,222.96,226.54,231.07,18.5,18.57,18.57,18.52,18.44,18.330000000000002,18.14,17.93,17.72,N/A,N/A -2012,2,22,16,30,101390,100200,99050,94.29,0,7.5600000000000005,8.94,9.47,9.93,10.370000000000001,10.81,11.25,11.67,11.9,222.24,224.18,225.86,228.44,231.25,234.31,237.41,240.33,245.54,18.21,18.21,18.18,18.14,18.09,18.03,17.92,17.82,17.62,N/A,N/A -2012,2,22,17,30,101360,100170,99020,94.24,0,4.87,6.38,7.17,8.02,8.84,9.68,10.35,10.93,11.5,227.12,228.5,229.68,231.27,232.72,234.12,235.18,236.06,236.25,18.29,18.34,18.34,18.31,18.28,18.240000000000002,18.21,18.18,18.09,N/A,N/A -2012,2,22,18,30,101310,100130,98980,92.82000000000001,0,6.44,8.11,8.96,9.84,10.64,11.42,11.98,12.4,12.5,217.32,219.11,220.91,224.37,227.93,231.86,234.78,237.11,237.93,18.580000000000002,18.740000000000002,18.79,18.78,18.740000000000002,18.67,18.580000000000002,18.490000000000002,18.27,N/A,N/A -2012,2,22,19,30,101270,100090,98940,92.10000000000001,0,7.43,9.290000000000001,10.200000000000001,11.08,11.81,12.42,12.88,13.25,13.57,212.8,215.43,217.67000000000002,220.89000000000001,223.91,226.95000000000002,229.27,231.15,231.59,18.71,18.85,18.88,18.87,18.82,18.72,18.7,18.7,18.43,N/A,N/A -2012,2,22,20,30,101160,99980,98840,92.3,0,9.15,10.99,11.88,12.75,13.48,14.11,14.540000000000001,14.870000000000001,15.11,222.84,223.72,224.47,225.47,226.3,227.03,227.33,227.45000000000002,226.87,18.62,18.7,18.72,18.8,18.91,19.080000000000002,19.11,19.09,18.97,N/A,N/A -2012,2,22,21,30,101070,99890,98750,91.93,0,8.55,10.43,11.38,12.4,13.35,14.280000000000001,15,15.59,15.89,213.03,214.88,216.54,218.91,220.95000000000002,222.79,224.02,224.94,226.5,18.68,18.740000000000002,18.71,18.61,18.5,18.37,18.45,18.6,19.54,N/A,N/A -2012,2,22,22,30,101030,99850,98700,92.98,0,7.0200000000000005,8.69,9.51,10.39,11.21,12,12.74,13.42,14.66,215.27,216.46,217.45000000000002,218.77,220.17000000000002,221.68,223.46,225.24,227.87,18.46,18.5,18.47,18.41,18.330000000000002,18.22,18.04,17.85,18.1,N/A,N/A -2012,2,22,23,30,100990,99810,98660,93.09,0.7000000000000001,8.08,9.63,10.25,10.83,11.31,11.71,12.040000000000001,12.32,12.81,213.35,214.61,215.59,216.87,218.22,219.69,221.37,223.02,226.35,18.43,18.43,18.38,18.32,18.25,18.19,18.12,18.05,17.61,N/A,N/A -2012,2,23,0,30,100940,99760,98610,95.41,0,8.32,9.81,10.5,11.19,11.82,12.41,12.98,13.51,14.51,216.49,216.88,217.3,218.04,219.16,220.62,222.47,224.33,224.8,17.94,17.830000000000002,17.71,17.490000000000002,17.17,16.77,16.78,16.91,19.82,N/A,N/A -2012,2,23,1,30,100930,99750,98600,97.8,0.4,7.21,8.19,8.59,8.98,9.36,9.74,10.19,10.65,12.370000000000001,213.81,213.67000000000002,213.65,213.71,213.86,214.1,214.5,214.94,219.71,17.48,17.34,17.240000000000002,17.13,16.990000000000002,16.84,16.48,16.09,16.39,N/A,N/A -2012,2,23,2,30,100910,99720,98570,99.24000000000001,0,8.07,8.9,9.200000000000001,9.47,9.74,10.02,10.76,11.59,13.27,213.47,213.25,213.12,213.03,212.99,213,214.29,215.92000000000002,222,16.8,16.56,16.42,16.240000000000002,16.04,15.83,15.620000000000001,15.5,17.8,N/A,N/A -2012,2,23,3,30,100870,99680,98530,99.24000000000001,0,8.78,9.9,10.36,10.790000000000001,11.15,11.46,12.35,13.35,14.72,213.34,212.94,212.66,212.39000000000001,212.17000000000002,211.97,212.93,214.14000000000001,217.32,16.85,16.61,16.48,16.3,16.11,15.89,16.39,17.01,19.77,N/A,N/A -2012,2,23,4,30,100840,99650,98510,99.27,0,9.19,10.25,10.68,11.1,11.48,11.84,12.74,13.73,15.09,214.82,214.84,214.85,214.88,215.01,215.20000000000002,216.20000000000002,217.38,219.59,16.84,16.59,16.45,16.28,16.07,15.83,15.94,16.27,19.42,N/A,N/A -2012,2,23,5,30,100840,99650,98490,98.93,1.1,7.72,8.67,9.07,9.49,9.870000000000001,10.23,10.59,10.96,13.280000000000001,216.94,216.89000000000001,216.85,216.84,216.92000000000002,217.03,217.02,217.04,219.6,16.85,16.59,16.44,16.27,16.11,15.94,15.69,15.44,15.93,N/A,N/A -2012,2,23,6,30,100850,99660,98510,97.84,0.4,6.94,7.74,8.07,8.4,8.72,9.05,9.39,9.73,11.35,219.16,219.61,219.96,220.4,220.93,221.52,222.11,222.66,223.28,17.44,17.16,17,16.81,16.63,16.45,16.240000000000002,16.02,15.67,N/A,N/A -2012,2,23,7,30,100840,99650,98500,98.95,0,6.55,7.29,7.7700000000000005,8.69,9.290000000000001,9.64,9.97,10.27,10.93,221.73000000000002,221.73000000000002,221.65,221.38,221.06,220.72,220.52,220.39000000000001,220.21,17.11,16.85,16.71,16.56,16.44,16.330000000000002,16.21,16.11,15.92,N/A,N/A -2012,2,23,8,30,100790,99610,98460,97.87,0,8.22,9.33,9.85,10.48,11.1,11.73,11.98,12.120000000000001,12.23,220.16,220.1,220.12,220.3,220.46,220.6,220.63,220.65,220.67000000000002,17.46,17.19,17.03,16.84,16.66,16.5,16.37,16.240000000000002,16.03,N/A,N/A -2012,2,23,9,30,100750,99570,98420,98.16,0.4,9.09,10.27,10.72,11.09,11.42,11.71,12,12.26,12.84,220.16,220.16,220.13,220.06,219.97,219.87,219.75,219.63,219.5,17.77,17.59,17.48,17.39,17.29,17.19,17.080000000000002,16.97,16.64,N/A,N/A -2012,2,23,10,30,100720,99540,98400,96.21000000000001,0.4,9.27,10.75,11.35,11.92,12.42,12.88,13.290000000000001,13.67,14.15,213.95000000000002,213.9,213.92000000000002,214,214.13,214.31,214.65,215.01,216.44,18.14,18,17.89,17.740000000000002,17.63,17.54,17.44,17.35,17.12,N/A,N/A -2012,2,23,11,30,100690,99510,98360,95.64,0.4,11.5,13.08,13.63,14.040000000000001,14.370000000000001,14.64,14.82,14.96,15,214.62,215.05,215.32,215.64000000000001,216.02,216.45000000000002,217.13,217.84,220.28,18.05,17.85,17.71,17.52,17.330000000000002,17.13,16.93,16.75,16.46,N/A,N/A -2012,2,23,12,30,100660,99490,98340,95.69,0.4,8.16,9.370000000000001,9.83,10.24,10.58,10.870000000000001,11.14,11.370000000000001,11.75,213.37,213.13,213.03,212.97,212.99,213.08,213.32,213.6,214.58,18.25,18.13,18.04,17.96,17.88,17.8,17.72,17.650000000000002,17.490000000000002,N/A,N/A -2012,2,23,13,30,100660,99480,98340,95.83,0.4,9.99,11.41,11.950000000000001,12.4,12.8,13.17,13.6,14.030000000000001,15.030000000000001,216.46,217.55,218.27,219.18,219.95000000000002,220.63,220.94,221.11,219.35,18.22,18.04,17.94,17.85,17.76,17.650000000000002,17.53,17.42,17.12,N/A,N/A -2012,2,23,14,30,100690,99510,98360,95.99000000000001,0,8.24,9.41,9.85,10.22,10.53,10.790000000000001,11,11.19,11.43,224.41,224.35,224.26,224.07,223.83,223.52,223.09,222.64000000000001,221.28,18.19,18.04,17.93,17.81,17.72,17.650000000000002,17.57,17.51,17.39,N/A,N/A -2012,2,23,15,30,100680,99500,98350,95.62,0,8.700000000000001,10.13,10.73,11.3,11.790000000000001,12.24,12.59,12.89,13.02,223.08,222.92000000000002,222.8,222.6,222.33,221.99,221.35,220.68,217.71,18.27,18.14,18.04,17.89,17.77,17.66,17.57,17.5,17.42,N/A,N/A -2012,2,23,16,30,100660,99490,98340,95.48,0,8.42,9.91,10.56,11.18,11.72,12.21,12.61,12.97,13.56,218.23000000000002,218.46,218.61,218.73000000000002,218.79,218.8,218.76,218.71,218.55,18.35,18.240000000000002,18.150000000000002,18.02,17.900000000000002,17.79,17.67,17.57,17.28,N/A,N/A -2012,2,23,17,30,100640,99460,98320,95.07000000000001,0,7.78,9.16,9.74,10.290000000000001,10.76,11.17,11.540000000000001,11.870000000000001,12.370000000000001,221.83,221.9,221.92000000000002,221.86,221.68,221.41,220.9,220.35,218.56,18.44,18.36,18.29,18.2,18.13,18.07,18.01,17.96,17.79,N/A,N/A -2012,2,23,18,30,100620,99440,98310,94.41,0,7.97,9.56,10.32,11.13,11.9,12.67,13.4,14.08,15.290000000000001,222.18,222.57,222.8,222.96,222.82,222.45000000000002,221.35,220.07,217.87,18.6,18.57,18.51,18.45,18.37,18.28,18.17,18.06,17.93,N/A,N/A -2012,2,23,19,30,100610,99440,98300,94.18,0,7.47,8.91,9.52,10.08,10.59,11.08,11.58,12.06,13.16,217.33,217.29,217.23000000000002,217.07,216.82,216.5,216.07,215.64000000000001,215.64000000000001,18.62,18.62,18.59,18.55,18.53,18.5,18.48,18.46,18.21,N/A,N/A -2012,2,23,20,30,100560,99390,98250,92.7,0,7.87,9.63,10.41,11.16,11.81,12.39,12.99,13.57,15.17,213.33,213.68,214.01,214.55,215.27,216.16,217.29,218.43,219.47,18.92,18.97,18.95,18.900000000000002,18.84,18.76,18.650000000000002,18.53,18.76,N/A,N/A -2012,2,23,21,30,100520,99350,98220,92.63,0,7.5200000000000005,9.200000000000001,9.98,10.73,11.39,11.98,12.59,13.18,14.6,208.47,208.95000000000002,209.35,209.86,210.47,211.17000000000002,212.39000000000001,213.71,216.94,18.92,18.96,18.94,18.900000000000002,18.88,18.89,18.94,19,19.240000000000002,N/A,N/A -2012,2,23,22,30,100490,99320,98180,92.19,0,6.98,8.78,9.65,10.56,11.44,12.3,13.14,13.93,14.67,206.37,207.05,207.69,208.66,210,211.64000000000001,213.75,215.92000000000002,217.56,19.01,19.1,19.09,19.05,19.03,19.01,19.240000000000002,19.51,19.57,N/A,N/A -2012,2,23,23,30,100470,99300,98170,91.73,0,6.97,8.81,9.69,10.61,11.5,12.4,13.21,13.950000000000001,14.780000000000001,202.46,203.26,204.09,205.57,207.57,210.08,212.91,215.67000000000002,217.81,19.1,19.22,19.23,19.21,19.18,19.150000000000002,19.43,19.76,20.02,N/A,N/A -2012,2,24,0,30,100490,99320,98180,91.75,0,7.05,8.89,9.8,10.76,11.68,12.59,13.25,13.790000000000001,13.9,198.88,200.23000000000002,201.53,203.65,206.09,208.92000000000002,211.39000000000001,213.59,214.72,19.09,19.2,19.2,19.16,19.35,19.72,20.05,20.34,20.400000000000002,N/A,N/A -2012,2,24,1,30,100490,99320,98190,91.8,0,6.5600000000000005,8.48,9.43,10.53,11.620000000000001,12.74,13.66,14.46,14.700000000000001,195.75,196.9,198.01,199.86,202.08,204.62,206.83,208.82,210.70000000000002,19.11,19.27,19.29,19.28,19.44,19.72,20.06,20.400000000000002,20.63,N/A,N/A -2012,2,24,2,30,100490,99320,98190,89.82000000000001,0,6.99,9.07,10.05,11.040000000000001,12.01,12.98,13.84,14.61,14.620000000000001,198.18,198.4,198.72,199.35,200.5,202.14000000000001,205.29,208.81,215.95000000000002,19.56,19.84,19.92,20,19.990000000000002,19.900000000000002,19.63,19.32,20.78,N/A,N/A -2012,2,24,3,30,100490,99320,98190,89.96000000000001,0,6.72,8.44,9.24,10.01,10.77,11.59,12.780000000000001,14.13,17.05,199.21,199.71,200.28,200.9,201.8,203.03,205.63,208.82,216.4,19.51,19.77,19.830000000000002,19.84,19.8,19.7,19.57,19.43,21.03,N/A,N/A -2012,2,24,4,30,100500,99330,98200,88.92,0,7.55,9.76,10.84,12.07,13.280000000000001,14.540000000000001,15.370000000000001,16.01,16.37,200.59,200.94,201.26,201.78,202.37,203.06,204.58,206.29,212.70000000000002,19.76,20.04,20.12,20.19,20.18,20.11,19.900000000000002,19.67,19.64,N/A,N/A -2012,2,24,5,30,100520,99350,98220,88.79,0.4,7.34,9.5,10.5,11.4,12.18,12.88,13.68,14.48,15.92,204.57,205.19,205.66,206.08,206.69,207.47,208.83,210.34,214.53,19.79,20.11,20.21,20.29,20.31,20.29,20.16,20.01,19.51,N/A,N/A -2012,2,24,6,30,100560,99400,98270,89.45,0,7.390000000000001,9.540000000000001,10.5,11.39,12.14,12.790000000000001,13.59,14.42,16.25,207.44,208.64000000000001,209.58,210.92000000000002,212.36,213.93,215.45000000000002,216.9,217.77,19.7,19.97,20.05,20.14,20.2,20.23,20.19,20.11,19.7,N/A,N/A -2012,2,24,7,30,100720,99550,98420,91.11,0,4.1,5.87,6.7,7.71,8.68,9.67,10.35,10.870000000000001,11.83,252.95000000000002,246.55,240.87,236.95000000000002,234.26,232.67000000000002,233.12,234.33,238.21,19.6,19.94,20,20.04,20.06,20.06,20.02,19.97,19.68,N/A,N/A -2012,2,24,8,30,100850,99680,98540,90.82000000000001,0,6.32,8.13,8.82,9.36,9.78,10.14,10.42,10.67,11,304.8,301.55,299.09000000000003,296.39,293.54,290.56,287.44,284.52,279.41,19.42,19.62,19.63,19.56,19.48,19.39,19.3,19.22,19.02,N/A,N/A -2012,2,24,9,30,100880,99710,98570,94.62,0,3.73,5.96,6.95,7.22,7.5,7.8,8.11,8.39,8.93,296.95,294.75,293.43,293.08,293.16,293.54,294.03000000000003,294.51,295.82,18.650000000000002,19.86,20.3,20.18,20.080000000000002,19.98,19.87,19.77,19.53,N/A,N/A -2012,2,24,10,30,101070,99870,98720,69.26,0,13.35,15.15,15.81,16.37,16.830000000000002,17.23,17.5,17.72,17.93,6.25,7.58,8.32,9.01,9.59,10.08,11,11.91,13.67,17.72,17.52,17.39,17.240000000000002,17.080000000000002,16.93,16.77,16.61,16.29,N/A,N/A -2012,2,24,11,30,101270,100070,98900,62.74,0,12.27,13.55,13.9,14.120000000000001,14.280000000000001,14.4,14.48,14.56,14.68,15.1,15.46,15.74,16.01,16.28,16.53,16.78,17.01,17.5,16.52,16.16,15.97,15.77,15.57,15.38,15.18,14.99,14.6,N/A,N/A -2012,2,24,12,30,101400,100190,99020,61.47,0,14.530000000000001,16.080000000000002,16.5,16.740000000000002,16.91,17.03,17.11,17.18,17.28,13.74,13.98,14.16,14.32,14.49,14.65,14.82,14.98,15.33,15.18,14.69,14.47,14.26,14.05,13.85,13.65,13.450000000000001,13.06,N/A,N/A -2012,2,24,13,30,101550,100330,99150,59.65,0,16.14,17.93,18.43,18.72,18.92,19.07,19.17,19.26,19.39,16.88,17.12,17.25,17.38,17.5,17.62,17.740000000000002,17.86,18.1,14.370000000000001,13.790000000000001,13.56,13.33,13.120000000000001,12.92,12.71,12.51,12.120000000000001,N/A,N/A -2012,2,24,14,30,101680,100460,99280,56.78,0,14.86,16.4,16.830000000000002,17.080000000000002,17.25,17.38,17.47,17.55,17.66,16.17,16.21,16.240000000000002,16.29,16.32,16.35,16.39,16.43,16.5,13.92,13.33,13.09,12.870000000000001,12.65,12.450000000000001,12.24,12.05,11.65,N/A,N/A -2012,2,24,15,30,101780,100570,99380,56.53,0,14.17,15.610000000000001,16.01,16.23,16.38,16.5,16.57,16.64,16.73,16.4,16.54,16.64,16.740000000000002,16.82,16.9,16.990000000000002,17.06,17.23,13.92,13.34,13.1,12.870000000000001,12.66,12.46,12.25,12.06,11.66,N/A,N/A -2012,2,24,16,30,101870,100650,99460,52.58,0,13,14.280000000000001,14.620000000000001,14.83,14.96,15.06,15.13,15.18,15.26,13.59,13.75,13.86,13.950000000000001,14.040000000000001,14.120000000000001,14.200000000000001,14.27,14.43,14.19,13.65,13.42,13.200000000000001,12.99,12.790000000000001,12.58,12.39,11.99,N/A,N/A -2012,2,24,17,30,101900,100680,99500,50.09,0,12.56,13.83,14.19,14.41,14.56,14.67,14.75,14.81,14.91,12.41,12.58,12.69,12.790000000000001,12.870000000000001,12.950000000000001,13.02,13.09,13.22,14.84,14.35,14.14,13.92,13.71,13.52,13.31,13.120000000000001,12.72,N/A,N/A -2012,2,24,18,30,101980,100760,99580,46.99,0,12.23,13.49,13.84,14.05,14.200000000000001,14.31,14.39,14.46,14.55,13.21,13.4,13.51,13.620000000000001,13.72,13.81,13.9,13.99,14.16,15.51,15.08,14.88,14.67,14.46,14.27,14.06,13.870000000000001,13.48,N/A,N/A -2012,2,24,19,30,102030,100820,99640,45.28,0,11.82,13.06,13.4,13.61,13.75,13.86,13.950000000000001,14.01,14.11,12.72,12.94,13.1,13.24,13.370000000000001,13.49,13.61,13.72,13.950000000000001,16.1,15.72,15.530000000000001,15.33,15.13,14.94,14.73,14.540000000000001,14.15,N/A,N/A -2012,2,24,20,30,102060,100850,99670,43.33,0,11.700000000000001,12.950000000000001,13.290000000000001,13.5,13.64,13.75,13.83,13.9,14,12.27,12.51,12.67,12.82,12.96,13.08,13.21,13.32,13.540000000000001,16.41,16.06,15.870000000000001,15.68,15.47,15.290000000000001,15.08,14.89,14.5,N/A,N/A -2012,2,24,21,30,102080,100870,99690,42.14,0,11.52,12.73,13.06,13.26,13.39,13.5,13.57,13.63,13.71,11.13,11.35,11.51,11.65,11.78,11.9,12.02,12.13,12.34,16.57,16.23,16.05,15.85,15.65,15.47,15.26,15.07,14.68,N/A,N/A -2012,2,24,22,30,102140,100930,99750,42.89,0,10.58,11.65,11.94,12.13,12.25,12.35,12.42,12.48,12.56,14.27,14.450000000000001,14.57,14.69,14.8,14.91,15.02,15.120000000000001,15.32,16.62,16.28,16.1,15.9,15.700000000000001,15.52,15.31,15.120000000000001,14.73,N/A,N/A -2012,2,24,23,30,102270,101050,99870,40.63,0,9.950000000000001,10.94,11.21,11.36,11.47,11.55,11.61,11.65,11.72,18.85,18.740000000000002,18.68,18.61,18.55,18.48,18.41,18.35,18.22,16.46,16.11,15.93,15.73,15.530000000000001,15.34,15.14,14.950000000000001,14.56,N/A,N/A -2012,2,25,0,30,102290,101070,99890,41.09,0,12.49,13.72,14.02,14.18,14.27,14.34,14.370000000000001,14.4,14.4,19.25,19.400000000000002,19.5,19.6,19.71,19.8,19.91,20.01,20.23,16.04,15.65,15.46,15.26,15.05,14.870000000000001,14.66,14.47,14.08,N/A,N/A -2012,2,25,1,30,102440,101220,100030,42.550000000000004,0,10.72,11.74,12,12.15,12.24,12.31,12.36,12.39,12.43,24.43,24.76,24.93,25.1,25.25,25.400000000000002,25.55,25.7,25.98,15.73,15.32,15.13,14.92,14.72,14.530000000000001,14.32,14.13,13.74,N/A,N/A -2012,2,25,2,30,102440,101220,100040,43.03,0,11.74,12.9,13.21,13.38,13.5,13.6,13.66,13.72,13.790000000000001,28.01,28.21,28.330000000000002,28.44,28.53,28.61,28.69,28.75,28.88,15.35,14.9,14.700000000000001,14.49,14.280000000000001,14.09,13.88,13.69,13.3,N/A,N/A -2012,2,25,3,30,102530,101310,100120,42.980000000000004,0,11.97,13.17,13.5,13.700000000000001,13.84,13.950000000000001,14.030000000000001,14.09,14.19,30.27,30.42,30.490000000000002,30.55,30.61,30.66,30.71,30.76,30.84,15.120000000000001,14.65,14.450000000000001,14.24,14.030000000000001,13.84,13.63,13.44,13.040000000000001,N/A,N/A -2012,2,25,4,30,102570,101350,100160,46.22,0,12.05,13.21,13.52,13.700000000000001,13.82,13.91,13.97,14.02,14.08,31.76,31.92,32.04,32.14,32.230000000000004,32.31,32.39,32.46,32.6,14.75,14.26,14.05,13.84,13.63,13.44,13.23,13.040000000000001,12.64,N/A,N/A -2012,2,25,5,30,102590,101360,100170,48.59,0,12.01,13.15,13.47,13.65,13.77,13.86,13.93,13.98,14.05,30.88,31.05,31.16,31.26,31.36,31.44,31.53,31.61,31.79,14.35,13.83,13.620000000000001,13.4,13.19,13,12.790000000000001,12.61,12.22,N/A,N/A -2012,2,25,6,30,102620,101390,100200,49.730000000000004,0,12.17,13.34,13.66,13.84,13.97,14.06,14.120000000000001,14.18,14.26,32.26,32.5,32.65,32.8,32.96,33.1,33.26,33.42,33.74,14.22,13.68,13.46,13.25,13.040000000000001,12.85,12.64,12.450000000000001,12.07,N/A,N/A -2012,2,25,7,30,102680,101450,100250,50.050000000000004,0,12.08,13.24,13.540000000000001,13.72,13.83,13.93,13.99,14.040000000000001,14.13,34.08,34.480000000000004,34.730000000000004,34.97,35.21,35.43,35.67,35.89,36.35,14.1,13.55,13.33,13.120000000000001,12.91,12.73,12.52,12.34,11.96,N/A,N/A -2012,2,25,8,30,102680,101450,100250,52.84,0,11.9,12.99,13.27,13.43,13.530000000000001,13.6,13.66,13.700000000000001,13.77,36.54,36.87,37.08,37.28,37.480000000000004,37.660000000000004,37.87,38.050000000000004,38.45,13.64,13.07,12.84,12.63,12.42,12.23,12.030000000000001,11.84,11.46,N/A,N/A -2012,2,25,9,30,102740,101510,100310,55.550000000000004,0,11.03,11.96,12.19,12.31,12.38,12.44,12.48,12.51,12.56,33.24,33.660000000000004,33.92,34.160000000000004,34.410000000000004,34.63,34.88,35.11,35.61,13.23,12.64,12.41,12.200000000000001,11.99,11.81,11.61,11.42,11.05,N/A,N/A -2012,2,25,10,30,102780,101540,100340,56.550000000000004,0,10.620000000000001,11.5,11.700000000000001,11.81,11.870000000000001,11.92,11.950000000000001,11.98,12.02,34.160000000000004,34.52,34.76,34.980000000000004,35.21,35.410000000000004,35.64,35.86,36.34,12.98,12.39,12.16,11.950000000000001,11.74,11.56,11.36,11.18,10.81,N/A,N/A -2012,2,25,11,30,102870,101630,100430,55.11,0,9.38,10.07,10.21,10.28,10.32,10.35,10.36,10.38,10.4,29.25,29.68,29.95,30.2,30.46,30.7,30.96,31.21,31.76,12.96,12.4,12.18,11.97,11.77,11.58,11.38,11.200000000000001,10.83,N/A,N/A -2012,2,25,12,30,102810,101570,100370,54.870000000000005,0,10.11,10.94,11.14,11.26,11.33,11.39,11.44,11.48,11.56,39.03,39.480000000000004,39.76,40.01,40.27,40.49,40.74,40.97,41.47,12.96,12.38,12.15,11.94,11.73,11.55,11.35,11.17,10.8,N/A,N/A -2012,2,25,13,30,102830,101600,100390,53.56,0,10.06,10.92,11.15,11.28,11.370000000000001,11.44,11.5,11.540000000000001,11.620000000000001,43.08,43.45,43.67,43.88,44.07,44.25,44.45,44.63,44.980000000000004,13.06,12.48,12.25,12.040000000000001,11.83,11.64,11.43,11.24,10.86,N/A,N/A -2012,2,25,14,30,102880,101640,100440,54.34,0,9.42,10.16,10.34,10.44,10.51,10.56,10.59,10.620000000000001,10.65,42.01,42.56,42.92,43.24,43.550000000000004,43.82,44.11,44.38,44.910000000000004,13.06,12.49,12.27,12.05,11.84,11.64,11.44,11.24,10.85,N/A,N/A -2012,2,25,15,30,102890,101650,100450,54.86,0,8.42,9.01,9.15,9.22,9.26,9.290000000000001,9.3,9.31,9.32,39.04,39.75,40.19,40.58,40.97,41.300000000000004,41.660000000000004,41.99,42.660000000000004,12.91,12.36,12.13,11.92,11.71,11.51,11.31,11.11,10.72,N/A,N/A -2012,2,25,16,30,102880,101640,100440,54.27,0,7.51,8.05,8.17,8.24,8.290000000000001,8.33,8.35,8.370000000000001,8.4,45.62,46.22,46.57,46.9,47.2,47.480000000000004,47.76,48.03,48.56,13.030000000000001,12.5,12.280000000000001,12.06,11.85,11.66,11.450000000000001,11.26,10.870000000000001,N/A,N/A -2012,2,25,17,30,102880,101650,100450,48.120000000000005,0,6.45,6.9,7.01,7.08,7.13,7.16,7.19,7.21,7.25,56.58,56.84,56.97,57.09,57.2,57.300000000000004,57.39,57.480000000000004,57.65,13.3,12.8,12.59,12.38,12.17,11.98,11.77,11.58,11.18,N/A,N/A -2012,2,25,18,30,102840,101600,100400,43.410000000000004,0,7.1000000000000005,7.58,7.69,7.75,7.79,7.82,7.84,7.86,7.890000000000001,60.83,60.95,61.050000000000004,61.120000000000005,61.2,61.26,61.31,61.370000000000005,61.47,13.540000000000001,13.040000000000001,12.83,12.620000000000001,12.41,12.22,12.02,11.82,11.43,N/A,N/A -2012,2,25,19,30,102850,101610,100420,45.13,0,5.09,5.39,5.46,5.51,5.54,5.5600000000000005,5.58,5.6000000000000005,5.63,72.16,72.23,72.28,72.33,72.36,72.4,72.44,72.47,72.53,13.620000000000001,13.16,12.96,12.76,12.55,12.36,12.16,11.96,11.57,N/A,N/A -2012,2,25,20,30,102770,101540,100340,45.59,0,5.37,5.71,5.78,5.83,5.86,5.89,5.91,5.93,5.96,81.38,81.41,81.35000000000001,81.27,81.21000000000001,81.16,81.09,81.01,80.83,13.92,13.47,13.26,13.06,12.86,12.67,12.47,12.280000000000001,11.89,N/A,N/A -2012,2,25,21,30,102700,101470,100270,45.86,0,5.75,6.11,6.19,6.23,6.26,6.28,6.29,6.3,6.32,93.55,93.34,93.16,93.01,92.85000000000001,92.71000000000001,92.55,92.39,92.05,14.25,13.8,13.59,13.39,13.19,13,12.8,12.61,12.22,N/A,N/A -2012,2,25,22,30,102670,101440,100250,46.4,0,5.93,6.3,6.38,6.41,6.44,6.46,6.47,6.48,6.49,113.29,112.87,112.66,112.46000000000001,112.27,112.10000000000001,111.9,111.71000000000001,111.3,14.450000000000001,14,13.8,13.6,13.39,13.21,13,12.81,12.42,N/A,N/A -2012,2,25,23,30,102630,101400,100210,48.51,0,5.53,5.84,5.91,5.93,5.95,5.95,5.95,5.95,5.94,114.97,114.24000000000001,113.79,113.38,112.96000000000001,112.59,112.16,111.76,110.89,14.41,13.97,13.77,13.57,13.370000000000001,13.19,12.98,12.790000000000001,12.41,N/A,N/A -2012,2,26,0,30,102590,101370,100180,46.46,0,6.43,6.88,6.99,7.0600000000000005,7.11,7.15,7.18,7.21,7.26,103.57000000000001,103.11,102.78,102.47,102.16,101.88,101.57000000000001,101.28,100.68,14.790000000000001,14.36,14.16,13.96,13.76,13.57,13.370000000000001,13.18,12.790000000000001,N/A,N/A -2012,2,26,1,30,102570,101340,100150,49.050000000000004,0,4.75,5.03,5.1000000000000005,5.14,5.17,5.19,5.21,5.22,5.25,105.71000000000001,105.94,106.09,106.22,106.35000000000001,106.46000000000001,106.58,106.69,106.91,14.76,14.35,14.15,13.950000000000001,13.74,13.56,13.35,13.16,12.76,N/A,N/A -2012,2,26,2,30,102550,101330,100140,49.39,0,6.47,6.93,7.03,7.08,7.12,7.140000000000001,7.15,7.17,7.17,105.96000000000001,105.60000000000001,105.31,105.02,104.75,104.5,104.24000000000001,103.99000000000001,103.5,15.19,14.780000000000001,14.58,14.38,14.17,13.98,13.77,13.58,13.19,N/A,N/A -2012,2,26,3,30,102500,101280,100090,54.5,0,5.51,5.86,5.94,5.98,6.0200000000000005,6.04,6.0600000000000005,6.08,6.11,107.19,107.15,107.15,107.14,107.15,107.16,107.18,107.2,107.24000000000001,14.9,14.48,14.280000000000001,14.08,13.88,13.69,13.48,13.290000000000001,12.9,N/A,N/A -2012,2,26,4,30,102480,101260,100070,54.19,0,6.42,6.82,6.91,6.95,6.97,6.99,6.99,6.99,6.99,119.54,119.14,118.91,118.71000000000001,118.51,118.35000000000001,118.17,118,117.66,15.31,14.9,14.71,14.51,14.31,14.120000000000001,13.91,13.73,13.33,N/A,N/A -2012,2,26,5,30,102460,101240,100050,54.660000000000004,0,5.96,6.38,6.48,6.54,6.58,6.62,6.640000000000001,6.66,6.69,115.59,115.56,115.56,115.55,115.54,115.54,115.53,115.53,115.52,15.38,14.98,14.780000000000001,14.59,14.38,14.200000000000001,13.99,13.8,13.41,N/A,N/A -2012,2,26,6,30,102440,101220,100040,56.22,0,6.11,6.5600000000000005,6.66,6.72,6.76,6.79,6.8100000000000005,6.83,6.8500000000000005,113.38,113.49000000000001,113.55,113.61,113.67,113.73,113.79,113.85000000000001,113.96000000000001,15.44,15.07,14.88,14.68,14.48,14.3,14.09,13.9,13.51,N/A,N/A -2012,2,26,7,30,102440,101220,100040,59.46,0,5.44,5.83,5.92,5.98,6.0200000000000005,6.05,6.07,6.09,6.12,110.66,110.87,111.01,111.14,111.27,111.38,111.51,111.62,111.87,15.39,15.02,14.83,14.63,14.43,14.24,14.040000000000001,13.85,13.46,N/A,N/A -2012,2,26,8,30,102390,101170,99990,62.15,0,4.92,5.2700000000000005,5.36,5.42,5.46,5.5,5.5200000000000005,5.55,5.59,104.64,105.16,105.47,105.76,106.03,106.27,106.52,106.75,107.22,15.46,15.1,14.92,14.72,14.52,14.34,14.13,13.94,13.55,N/A,N/A -2012,2,26,9,30,102370,101150,99970,64.02,0,4.69,5.01,5.09,5.14,5.18,5.21,5.23,5.26,5.29,97.16,97.64,97.95,98.25,98.54,98.81,99.11,99.38,99.99000000000001,15.58,15.23,15.040000000000001,14.85,14.65,14.47,14.26,14.08,13.69,N/A,N/A -2012,2,26,10,30,102330,101110,99940,62.39,0,4.05,4.4,4.5200000000000005,4.6000000000000005,4.67,4.73,4.78,4.83,4.91,116.06,117.79,118.71000000000001,119.45,120.09,120.64,121.16,121.61,122.46000000000001,16.22,15.9,15.72,15.540000000000001,15.34,15.16,14.96,14.77,14.38,N/A,N/A -2012,2,26,11,30,102310,101100,99920,64.83,0,5.33,5.63,5.68,5.69,5.7,5.69,5.69,5.68,5.65,140.08,140.17000000000002,140.32,140.48,140.64000000000001,140.8,140.97,141.13,141.46,16.330000000000002,16,15.82,15.63,15.43,15.25,15.040000000000001,14.85,14.46,N/A,N/A -2012,2,26,12,30,102300,101090,99910,66.35,0,5.07,5.46,5.55,5.6000000000000005,5.64,5.66,5.67,5.68,5.69,133.33,133.66,133.8,133.89000000000001,133.96,134.02,134.06,134.11,134.17000000000002,16.3,15.98,15.8,15.610000000000001,15.41,15.23,15.030000000000001,14.84,14.450000000000001,N/A,N/A -2012,2,26,13,30,102300,101090,99910,69.74,0,5.4,5.8100000000000005,5.91,5.97,6.01,6.04,6.0600000000000005,6.07,6.09,124.19,124.42,124.58,124.73,124.87,125,125.12,125.24000000000001,125.46000000000001,16.22,15.9,15.72,15.52,15.32,15.14,14.93,14.74,14.35,N/A,N/A -2012,2,26,14,30,102310,101090,99920,70.7,0,4.43,4.76,4.84,4.89,4.92,4.95,4.97,4.99,5.0200000000000005,127.54,127.03,126.83,126.67,126.53,126.42,126.32000000000001,126.24000000000001,126.10000000000001,16.21,15.88,15.71,15.51,15.31,15.13,14.92,14.74,14.35,N/A,N/A -2012,2,26,15,30,102310,101100,99920,72.57000000000001,0,4.18,4.44,4.5,4.53,4.54,4.55,4.55,4.55,4.54,121.92,122.2,122.48,122.76,123.04,123.29,123.56,123.83,124.4,16.31,15.98,15.81,15.610000000000001,15.42,15.23,15.030000000000001,14.84,14.450000000000001,N/A,N/A -2012,2,26,16,30,102290,101080,99900,77.83,0,4.17,4.39,4.41,4.41,4.4,4.39,4.37,4.3500000000000005,4.3,125.32000000000001,126.02,126.42,126.81,127.19,127.54,127.94,128.32,129.16,16.32,15.99,15.81,15.620000000000001,15.42,15.24,15.040000000000001,14.85,14.46,N/A,N/A -2012,2,26,17,30,102260,101050,99870,78.57000000000001,0,3.75,3.99,4.04,4.0600000000000005,4.07,4.08,4.08,4.08,4.07,108.53,108.94,109.2,109.4,109.57000000000001,109.71000000000001,109.84,109.95,110.16,16.37,16.05,15.870000000000001,15.68,15.48,15.290000000000001,15.09,14.9,14.51,N/A,N/A -2012,2,26,18,30,102250,101040,99860,79.51,0,4.44,4.75,4.82,4.8500000000000005,4.87,4.89,4.89,4.9,4.9,110.86,110.78,110.76,110.76,110.76,110.77,110.8,110.82000000000001,110.92,16.46,16.14,15.96,15.77,15.57,15.39,15.18,15,14.61,N/A,N/A -2012,2,26,19,30,102200,100990,99820,84.47,0,4.34,4.66,4.75,4.8100000000000005,4.86,4.91,4.95,5,5.11,100.41,100.52,100.65,100.79,100.95,101.10000000000001,101.28,101.46000000000001,101.93,16.35,16.02,15.84,15.65,15.46,15.290000000000001,15.09,14.91,14.540000000000001,N/A,N/A -2012,2,26,20,30,102150,100950,99780,83.82000000000001,0,5.8500000000000005,6.37,6.49,6.5600000000000005,6.6000000000000005,6.63,6.65,6.66,6.66,115.85000000000001,116.39,116.72,117.02,117.31,117.57000000000001,117.84,118.09,118.60000000000001,16.84,16.54,16.36,16.17,15.98,15.790000000000001,15.59,15.41,15.02,N/A,N/A -2012,2,26,21,30,102130,100920,99750,84.48,0,6.41,6.91,7.01,7.05,7.0600000000000005,7.0600000000000005,7.04,7.0200000000000005,6.96,107.49000000000001,107.69,107.82000000000001,107.97,108.13,108.28,108.47,108.65,109.11,16.73,16.42,16.25,16.06,15.860000000000001,15.68,15.48,15.3,14.91,N/A,N/A -2012,2,26,22,30,102090,100880,99710,85.98,0,6.66,7.25,7.390000000000001,7.46,7.5,7.5200000000000005,7.5200000000000005,7.5200000000000005,7.5,106.94,107.05,107.13,107.2,107.27,107.34,107.43,107.5,107.7,16.76,16.45,16.28,16.09,15.9,15.72,15.51,15.33,14.950000000000001,N/A,N/A -2012,2,26,23,30,102060,100850,99680,88.66,0,6.72,7.3,7.44,7.51,7.55,7.58,7.59,7.6000000000000005,7.62,99.71000000000001,99.93,100.10000000000001,100.28,100.46000000000001,100.64,100.86,101.07000000000001,101.60000000000001,16.72,16.42,16.240000000000002,16.05,15.860000000000001,15.68,15.48,15.3,14.92,N/A,N/A -2012,2,27,0,30,102070,100860,99700,89.61,0,6.8100000000000005,7.49,7.68,7.8,7.890000000000001,7.96,8.02,8.07,8.17,104.66,104.88,105.01,105.16,105.31,105.46000000000001,105.63,105.79,106.17,16.93,16.65,16.490000000000002,16.3,16.11,15.93,15.73,15.55,15.18,N/A,N/A -2012,2,27,1,30,102050,100850,99680,92.78,0,7.1000000000000005,7.76,7.94,8.05,8.14,8.22,8.31,8.4,8.74,99.79,100.09,100.31,100.58,100.89,101.2,101.68,102.17,103.86,16.93,16.64,16.47,16.29,16.1,15.92,15.73,15.56,15.200000000000001,N/A,N/A -2012,2,27,2,30,102060,100860,99690,90.93,0,6.33,7.1000000000000005,7.36,7.59,7.79,7.97,8.15,8.31,8.66,105.66,105.97,106.16,106.36,106.55,106.75,106.95,107.15,107.59,17.240000000000002,16.98,16.830000000000002,16.66,16.48,16.31,16.12,15.950000000000001,15.59,N/A,N/A -2012,2,27,3,30,102080,100880,99710,93.56,0,5.59,6.24,6.47,6.66,6.83,6.99,7.15,7.3,7.63,106.99000000000001,107.31,107.56,107.87,108.2,108.53,108.92,109.28,110.06,17.2,16.94,16.79,16.61,16.44,16.27,16.09,15.92,15.57,N/A,N/A -2012,2,27,4,30,102090,100880,99720,94.14,0,5.55,6.33,6.63,6.92,7.18,7.43,7.68,7.92,8.41,102.59,102.85000000000001,103.08,103.34,103.62,103.9,104.27,104.64,105.67,17.240000000000002,17,16.85,16.69,16.52,16.36,16.19,16.03,15.71,N/A,N/A -2012,2,27,5,30,102080,100880,99710,94.10000000000001,0,5.93,6.73,7.03,7.3100000000000005,7.5600000000000005,7.8100000000000005,8.07,8.31,8.85,92.4,93.05,93.61,94.36,95.33,96.38,97.85000000000001,99.34,103.58,17.32,17.09,16.96,16.8,16.66,16.52,16.39,16.27,16.09,N/A,N/A -2012,2,27,6,30,102090,100890,99720,95.77,0,5.28,5.91,6.16,6.390000000000001,6.63,6.88,7.21,7.54,8.46,80.2,81.63,82.83,84.38,86.23,88.18,90.71000000000001,93.24,99.71000000000001,17.26,17.02,16.88,16.73,16.59,16.46,16.330000000000002,16.22,16.080000000000002,N/A,N/A -2012,2,27,7,30,102150,100950,99780,96.42,0,4.3500000000000005,5.05,5.37,5.72,6.07,6.44,6.84,7.23,8.03,82.99,84.58,85.94,87.72,89.72,91.82000000000001,94.14,96.41,103.17,17.38,17.16,17.04,16.91,16.78,16.66,16.55,16.44,16.3,N/A,N/A -2012,2,27,8,30,102140,100940,99780,96.48,0,4.25,5,5.3500000000000005,5.71,6.07,6.41,6.76,7.08,7.51,83.07000000000001,84.53,85.7,87.16,88.77,90.43,92.5,94.47,100.51,17.400000000000002,17.2,17.07,16.93,16.8,16.68,16.56,16.45,16.25,N/A,N/A -2012,2,27,9,30,102160,100960,99800,96.75,0,5.26,5.98,6.29,6.6000000000000005,6.9,7.2,7.51,7.78,8,68.32000000000001,69.66,70.92,72.75,75.23,78.13,83.17,88.37,100.18,17.35,17.13,17.01,16.88,16.77,16.67,16.62,16.59,16.54,N/A,N/A -2012,2,27,10,30,102180,100980,99810,97.32000000000001,0,5.38,6.03,6.3,6.5600000000000005,6.8,7.03,7.16,7.25,7.16,64.4,65.06,65.74,66.86,68.61,70.74,75.74,80.99,91.53,17.25,17.02,16.89,16.740000000000002,16.63,16.54,16.51,16.48,16.35,N/A,N/A -2012,2,27,11,30,102210,101010,99840,97.28,2.6,6.04,6.76,7.05,7.3100000000000005,7.55,7.78,8.040000000000001,8.28,8.44,60.88,61.550000000000004,62.14,63.01,64.23,65.65,68.49,71.66,82.89,17.23,17,16.87,16.72,16.6,16.5,16.44,16.39,16.36,N/A,N/A -2012,2,27,12,30,102210,101010,99840,97.38,0.7000000000000001,6.5600000000000005,7.6000000000000005,7.97,8.18,8.4,8.64,8.74,8.81,8.85,51.4,53.34,54.5,55.49,57.44,59.800000000000004,61.870000000000005,63.78,68.44,17.03,16.77,16.62,16.46,16.36,16.29,16.23,16.19,16.15,N/A,N/A -2012,2,27,13,30,102230,101020,99850,97,0.7000000000000001,7.62,8.370000000000001,8.65,8.950000000000001,9.21,9.44,9.700000000000001,9.91,9.99,55.69,56.15,56.59,57.2,57.88,58.56,60.33,62.11,65.87,16.84,16.55,16.39,16.22,16.06,15.91,15.92,15.950000000000001,15.99,N/A,N/A -2012,2,27,14,30,102280,101070,99900,96.11,0.4,8.41,9.06,9.21,9.34,9.6,9.91,10.27,10.57,10.68,49.03,49.42,49.76,50.24,51.17,52.300000000000004,54.04,55.76,59.86,16.62,16.3,16.14,15.96,15.82,15.69,15.71,15.76,16.16,N/A,N/A -2012,2,27,15,30,102300,101100,99920,95.8,0.4,8.18,8.84,8.98,9.05,9.13,9.21,9.52,9.85,10.66,55.160000000000004,55.33,55.47,55.660000000000004,55.96,56.28,57.120000000000005,58.1,61.620000000000005,16.47,16.14,15.96,15.780000000000001,15.59,15.42,15.25,15.120000000000001,15.11,N/A,N/A -2012,2,27,16,30,102310,101100,99930,95.64,0,8.19,8.83,8.97,9.05,9.13,9.21,9.620000000000001,10.05,10.93,51.99,52.21,52.410000000000004,52.65,53,53.38,54.6,55.93,59.59,16.43,16.09,15.92,15.73,15.55,15.38,15.23,15.11,15.18,N/A,N/A -2012,2,27,17,30,102310,101100,99930,95.13,0,7.8500000000000005,8.51,8.69,8.8,8.91,9.02,9.26,9.56,10.73,55.32,55.58,55.75,55.96,56.230000000000004,56.53,57.09,57.74,60.58,16.47,16.14,15.96,15.77,15.59,15.41,15.23,15.07,14.9,N/A,N/A -2012,2,27,18,30,102300,101090,99920,94.59,0,7.76,8.42,8.6,8.73,8.88,9.040000000000001,9.51,10.02,11.11,57.95,58.15,58.300000000000004,58.49,58.76,59.06,59.75,60.49,62.27,16.6,16.29,16.12,15.93,15.75,15.57,15.41,15.27,15.13,N/A,N/A -2012,2,27,19,30,102290,101080,99910,94.23,0,8.17,8.93,9.15,9.31,9.5,9.700000000000001,10.13,10.57,11.57,60.77,60.870000000000005,60.99,61.13,61.32,61.54,61.88,62.230000000000004,63.04,16.76,16.44,16.27,16.09,15.91,15.74,15.57,15.42,15.18,N/A,N/A -2012,2,27,20,30,102280,101070,99900,93.5,0,7.930000000000001,8.76,9.05,9.31,9.6,9.9,10.31,10.700000000000001,11.290000000000001,64.91,64.7,64.52,64.33,64.08,63.82,63.57,63.33,62.46,16.990000000000002,16.7,16.54,16.35,16.18,16.01,15.84,15.68,15.41,N/A,N/A -2012,2,27,21,30,102260,101050,99880,93.61,0,8.48,9.33,9.56,9.74,9.88,10.03,10.21,10.41,11.1,66.85,66.79,66.73,66.66,66.58,66.5,66.36,66.24,65.98,16.9,16.6,16.43,16.240000000000002,16.05,15.870000000000001,15.69,15.51,15.18,N/A,N/A -2012,2,27,22,30,102250,101050,99880,93.65,0,8.69,9.49,9.68,9.8,9.89,9.97,10.09,10.22,10.82,67.41,67.41,67.43,67.45,67.49,67.52,67.59,67.69,68.51,16.77,16.45,16.28,16.09,15.9,15.72,15.530000000000001,15.35,15.030000000000001,N/A,N/A -2012,2,27,23,30,102250,101040,99870,94.16,0,8.07,8.78,8.94,9.040000000000001,9.1,9.15,9.21,9.28,9.6,69.85000000000001,69.96000000000001,70.04,70.13,70.25,70.37,70.58,70.8,72.05,16.73,16.41,16.240000000000002,16.04,15.860000000000001,15.68,15.48,15.31,14.97,N/A,N/A -2012,2,28,0,30,102250,101040,99870,94.47,0,7.74,8.4,8.540000000000001,8.620000000000001,8.68,8.72,8.8,8.91,9.49,70.29,70.5,70.64,70.81,71.02,71.24,71.62,72.07000000000001,74.69,16.73,16.41,16.240000000000002,16.05,15.860000000000001,15.68,15.49,15.32,15.06,N/A,N/A -2012,2,28,1,30,102250,101040,99870,94.4,0,7.84,8.540000000000001,8.71,8.81,8.89,8.97,9.09,9.25,9.91,74.47,74.49,74.52,74.60000000000001,74.72,74.86,75.12,75.48,77.86,16.79,16.48,16.31,16.12,15.93,15.76,15.57,15.4,15.13,N/A,N/A -2012,2,28,2,30,102280,101070,99900,95.82000000000001,0,7.3500000000000005,7.930000000000001,8.08,8.15,8.22,8.3,8.48,8.69,9.35,78.3,78.52,78.68,78.89,79.15,79.44,80.16,81.05,85.01,16.67,16.36,16.19,16,15.81,15.64,15.47,15.33,15.16,N/A,N/A -2012,2,28,3,30,102260,101060,99880,95.82000000000001,0,7.04,7.640000000000001,7.79,7.890000000000001,8.01,8.120000000000001,8.46,8.8,9.38,80.8,81.15,81.37,81.65,82.03,82.44,83.66,85.01,89.07000000000001,16.8,16.490000000000002,16.32,16.13,15.94,15.77,15.6,15.450000000000001,15.31,N/A,N/A -2012,2,28,4,30,102230,101020,99860,96.16,0,6.08,6.640000000000001,6.9,7.25,7.6000000000000005,7.930000000000001,8.19,8.43,8.790000000000001,85.05,85.58,86.16,87.10000000000001,88.4,89.85000000000001,91.78,93.68,98.17,16.89,16.6,16.44,16.27,16.12,15.97,15.9,15.84,15.8,N/A,N/A -2012,2,28,5,30,102230,101020,99860,96.34,0,5.96,6.97,7.390000000000001,7.65,7.96,8.290000000000001,8.58,8.84,9.26,90.93,92.3,93.28,94.32000000000001,95.95,97.88,100.02,102.06,106.42,17.04,16.79,16.65,16.5,16.4,16.35,16.3,16.26,16.2,N/A,N/A -2012,2,28,6,30,102210,101010,99840,96.38,0,5.97,6.87,7.2700000000000005,7.640000000000001,7.95,8.2,8.370000000000001,8.5,8.51,97.3,98.78,100.15,102.2,104.63,107.2,110.16,112.93,118.29,17.330000000000002,17.12,17.02,16.95,16.93,16.95,17.03,17.11,17.22,N/A,N/A -2012,2,28,7,30,102220,101020,99850,96.85000000000001,0.4,5.74,6.5,6.79,7.0600000000000005,7.32,7.57,7.84,8.09,8.49,106.46000000000001,107.25,107.9,108.79,109.9,111.11,112.98,114.99000000000001,122.39,17.53,17.31,17.19,17.05,16.93,16.82,16.75,16.69,16.51,N/A,N/A -2012,2,28,8,30,102190,100990,99820,97.71000000000001,0,4.04,4.8,5.22,5.74,6.33,6.97,7.45,7.86,8.26,111.2,112.52,113.29,113.76,113.5,112.78,112.42,112.19,114.48,17.57,17.330000000000002,17.18,17.03,16.96,16.94,16.85,16.76,16.42,N/A,N/A -2012,2,28,9,30,102160,100960,99790,97.23,0,5.24,5.91,6.15,6.36,6.55,6.7,6.84,6.96,7.3100000000000005,127.23,128.13,128.63,129.15,129.56,129.88,129.91,129.84,128.26,17.54,17.3,17.16,16.990000000000002,16.85,16.73,16.61,16.51,16.27,N/A,N/A -2012,2,28,10,30,102150,100940,99780,96.03,0,4.93,5.49,5.71,5.93,6.18,6.44,6.8,7.15,7.7,112.83,113.55,114.17,115.02,116.13,117.39,119.36,121.3,123.58,17.400000000000002,17.13,16.96,16.76,16.59,16.45,16.330000000000002,16.240000000000002,16.01,N/A,N/A -2012,2,28,11,30,102120,100910,99750,95.34,0,5.3,5.8,5.94,6.03,6.09,6.13,6.17,6.21,6.3,119.33,121.12,122.25,123.45,124.96000000000001,126.56,129.42000000000002,132.27,138.55,17.29,16.990000000000002,16.82,16.62,16.41,16.22,16.05,15.9,15.540000000000001,N/A,N/A -2012,2,28,12,30,102120,100910,99740,99.22,0,5.51,5.8500000000000005,5.94,6.01,6.13,6.2700000000000005,6.7,7.15,8.01,130.92000000000002,131.41,131.85,132.43,133.43,134.6,137.37,140.49,149.72,16.04,15.72,15.56,15.38,15.18,14.97,14.75,14.780000000000001,17.47,N/A,N/A -2012,2,28,13,30,102120,100910,99740,99.22,0,6.390000000000001,6.86,6.93,6.93,6.88,6.8100000000000005,6.72,6.63,6.69,130.75,131.28,131.59,131.92000000000002,132.35,132.8,133.99,135.52,144.74,16.44,16.15,16.02,15.870000000000001,15.72,15.58,15.4,15.19,14.89,N/A,N/A -2012,2,28,14,30,102130,100930,99760,98.08,0.4,5.71,6.0600000000000005,6.3100000000000005,6.78,7.19,7.55,7.69,7.79,8.03,134.05,135.89000000000001,138.29,142.68,146,148.68,149.38,149.84,151.96,16.34,16.01,15.88,15.81,15.75,15.69,15.6,15.51,15.48,N/A,N/A -2012,2,28,15,30,102120,100920,99760,98.24000000000001,0,5.6000000000000005,6.48,6.99,7.640000000000001,8.040000000000001,8.26,8.41,8.540000000000001,8.68,144.81,146.44,148.19,150.98,152.78,153.92000000000002,154.82,155.58,156.53,17.150000000000002,16.89,16.79,16.72,16.64,16.56,16.47,16.38,16.19,N/A,N/A -2012,2,28,16,30,102110,100910,99750,97.9,0,6.01,7.05,7.51,7.98,8.36,8.67,8.85,8.99,9.200000000000001,143.27,145.56,147.31,149.58,152.06,154.57,158.37,162.21,171.61,17.740000000000002,17.53,17.41,17.31,17.240000000000002,17.18,17.14,17.11,16.98,N/A,N/A -2012,2,28,17,30,102080,100880,99730,97.67,0,4.46,5.46,5.97,6.59,7.18,7.75,8.38,9,10.59,136.49,138.59,140.69,144.15,147.63,151.07,153.01,154.69,162.4,17.92,17.8,17.740000000000002,17.7,17.66,17.62,17.63,17.64,17.86,N/A,N/A -2012,2,28,18,30,102060,100870,99710,97.26,0,4.73,5.8,6.29,6.8100000000000005,7.34,7.88,8.76,9.63,9.89,144.84,146.64000000000001,148.07,150.01,152.02,154.07,161.33,169.07,172.97,18.11,18.04,18.02,18.01,18.03,18.07,18.18,18.3,18.23,N/A,N/A -2012,2,28,19,30,102040,100850,99690,96.58,0,4.5,5.75,6.42,7.24,8.3,9.56,10.540000000000001,11.4,11.57,149.05,151.83,154.4,158.19,162.72,167.9,172.81,177.32,179.81,18.45,18.38,18.36,18.38,18.490000000000002,18.650000000000002,18.79,18.900000000000002,18.78,N/A,N/A -2012,2,28,20,30,101990,100800,99640,95.88,0,4.87,6.24,6.95,7.79,8.540000000000001,9.23,9.61,9.9,10.22,143.96,147.25,150.65,156.20000000000002,163.04,170.81,174.84,177.75,180.1,18.59,18.580000000000002,18.5,18.330000000000002,18.47,18.81,18.96,19.06,19.01,N/A,N/A -2012,2,28,21,30,101960,100770,99620,95.17,0,4.15,5.61,6.3,6.98,8,9.31,9.58,9.6,9.65,130.4,133.91,137.98,145.02,156.82,172.66,176.14000000000001,176.61,177.43,18.57,18.7,18.79,18.96,19.080000000000002,19.18,19.12,19.03,18.84,N/A,N/A -2012,2,28,22,30,101890,100700,99550,92.55,0,5.87,8.02,9.05,10.03,10.31,10.18,10.6,11.1,11.72,142.38,148.67000000000002,153.52,159.36,164.26,168.26,173.59,178.86,181.1,18.93,19.16,19.25,19.32,19.34,19.330000000000002,19.29,19.240000000000002,19.19,N/A,N/A -2012,2,28,23,30,101860,100670,99530,92.46000000000001,0,5.63,7.55,8.49,9.44,10.200000000000001,10.82,11.66,12.51,12.870000000000001,140.67000000000002,144.83,148.42000000000002,153.51,159.02,164.87,169.49,173.61,174.9,18.900000000000002,19.18,19.3,19.44,19.51,19.55,19.61,19.68,19.580000000000002,N/A,N/A -2012,3,1,0,30,101600,100410,99270,93.62,0.4,4.67,6.26,7,7.71,8.03,8.040000000000001,7.88,7.68,7.41,151.61,156.83,162.25,171.33,178.07,182.83,185.09,186.39000000000001,188.34,19.080000000000002,19.28,19.35,19.44,19.32,19.06,19.7,20.56,20.78,N/A,N/A -2012,3,1,1,30,101580,100400,99250,92.55,0,5.34,7.17,8.03,8.8,9.31,9.61,9.53,9.35,8.540000000000001,160.39000000000001,164.20000000000002,168.09,174.53,179.6,183.64000000000001,185.1,185.69,189.75,19.3,19.6,19.72,19.82,19.740000000000002,19.56,19.31,19.07,19.79,N/A,N/A -2012,3,1,2,30,101580,100400,99260,92.09,0,5.95,7.96,8.91,9.65,10.01,10.09,9.67,9.16,9.06,161.5,164.4,167.52,172.9,177.59,181.68,184.77,187.19,187.33,19.38,19.650000000000002,19.75,19.79,19.81,19.8,19.740000000000002,19.67,19.35,N/A,N/A -2012,3,1,3,30,101580,100400,99260,92.81,0.30000000000000004,5.15,7.04,7.9,8.59,8.950000000000001,9.06,9.16,9.27,9.3,178.63,179.08,180.44,184.24,187.13,189.28,190.94,192.3,192.26,19.25,19.31,19.25,19.13,19.29,19.69,19.95,20.150000000000002,19.8,N/A,N/A -2012,3,1,4,30,101570,100380,99230,93.73,0.6000000000000001,5.17,6.93,7.84,8.8,9.59,10.25,10.34,10.28,9.59,174.67000000000002,177.73,180.77,185.9,191.22,196.75,199.09,200.28,200.17000000000002,19.02,19.16,19.21,19.26,19.12,18.86,18.91,19.04,19.96,N/A,N/A -2012,3,1,5,30,101570,100390,99240,93.7,0.6000000000000001,4.71,6.25,6.98,7.7700000000000005,8.48,9.17,9.46,9.6,9.6,187.93,188,188,188.03,189.11,191.1,194.70000000000002,198.55,202.03,19.07,19.240000000000002,19.3,19.330000000000002,19.34,19.330000000000002,19.17,18.97,19.04,N/A,N/A -2012,3,1,6,30,101570,100390,99240,95.05,0.1,5.71,7.47,8.36,9.200000000000001,9.8,10.19,10.3,10.32,10.14,202.66,203.08,203.3,203.51,203.45000000000002,203.22,202.99,202.78,202.91,19.25,19.26,19.23,19.150000000000002,19.06,18.95,18.830000000000002,18.71,18.46,N/A,N/A -2012,3,1,7,30,101580,100390,99250,95.23,0,5.87,7.16,7.66,8.09,8.38,8.59,8.73,8.85,9.14,202.29,202.35,202.38,202.36,202.27,202.11,202.65,203.37,206.20000000000002,19.21,19.17,19.12,19.04,18.98,18.93,18.85,18.77,18.490000000000002,N/A,N/A -2012,3,1,8,30,101570,100380,99230,95.85000000000001,0.4,4.18,5.22,5.67,6.21,6.78,7.42,7.87,8.23,8.83,206.4,206.75,207.19,207.84,208.44,209.03,209.58,210.1,211.3,19.12,19.13,19.12,19.07,19.01,18.93,18.830000000000002,18.73,18.57,N/A,N/A -2012,3,1,9,30,101560,100370,99220,96.58,0,4.53,5.79,6.43,7.18,7.79,8.3,8.66,8.97,9.17,226.55,227.21,227.16,226.03,225.03,224.09,223.19,222.29,224.16,18.98,18.98,18.95,18.89,18.82,18.75,18.72,18.7,18.56,N/A,N/A -2012,3,1,10,30,101540,100360,99220,94.36,0,6.23,7.45,7.94,8.31,8.59,8.8,9.05,9.3,9.64,217.58,218.18,218.67000000000002,219.3,219.75,220.08,220.9,221.79,221.58,19.38,19.41,19.38,19.31,19.22,19.12,18.990000000000002,18.88,18.64,N/A,N/A -2012,3,1,11,30,101520,100340,99190,95.33,0,4.3100000000000005,5.69,6.34,6.97,7.4,7.68,8.040000000000001,8.4,8.700000000000001,215.29,216.34,216.63,215.38,214.38,213.54,214.02,214.91,215.05,19.16,19.32,19.39,19.46,19.45,19.39,19.34,19.29,19.1,N/A,N/A -2012,3,1,12,30,101530,100350,99200,96.45,0.4,3.42,4.83,5.5200000000000005,6.11,6.5600000000000005,6.93,7.19,7.4,7.78,203.38,205.98000000000002,208,210.28,211.93,213.07,213.15,212.89000000000001,212.74,19,19.07,19.11,19.13,19.16,19.19,19.150000000000002,19.080000000000002,18.92,N/A,N/A -2012,3,1,13,30,101520,100340,99190,96.31,0.4,2.84,4.25,5.01,5.98,6.68,7.12,7.46,7.74,8.39,186.78,196.81,203.57,209.34,212.29,212.96,213.06,212.99,213.34,19.11,19.23,19.27,19.3,19.330000000000002,19.34,19.32,19.3,19.31,N/A,N/A -2012,3,1,14,30,101540,100360,99210,96.39,0,2.91,4.04,4.67,5.62,6.3100000000000005,6.7700000000000005,7.21,7.62,8.32,167.99,174.05,181.16,195.83,204.05,206.55,207.52,207.94,210.52,19.1,19.16,19.2,19.27,19.26,19.2,19.18,19.19,19.26,N/A,N/A -2012,3,1,15,30,101520,100340,99190,95.91,0.30000000000000004,4.64,6.13,6.93,7.83,8.36,8.59,8.6,8.57,8.89,173.08,178.65,183.6,190.67000000000002,195.43,198.51,201.28,203.72,207.17000000000002,19.16,19.14,19.17,19.32,19.48,19.63,19.72,19.79,19.71,N/A,N/A -2012,3,1,16,30,101500,100320,99180,95.15,0,6.15,7.5200000000000005,8.06,8.42,8.74,9.05,9.14,9.18,9.21,179.48,181.83,183.96,187.20000000000002,192.13,198.5,201.59,203.53,206.09,19.32,19.39,19.400000000000002,19.400000000000002,19.490000000000002,19.64,19.73,19.81,19.72,N/A,N/A -2012,3,1,17,30,101450,100270,99130,97.09,0.30000000000000004,5.43,6.45,6.94,7.54,8.24,9.02,9.43,9.69,9.75,173.6,175.6,177.63,181.18,185.39000000000001,190.3,194.14000000000001,197.4,200.8,19.04,18.92,18.86,18.830000000000002,18.98,19.27,19.55,19.81,19.88,N/A,N/A -2012,3,1,18,30,101420,100240,99100,95.53,0,5.7700000000000005,7,7.61,8.370000000000001,9.02,9.6,9.85,9.98,10.120000000000001,180.15,181.96,184,187.82,192.12,196.79,199.54,201.47,203.51,19.400000000000002,19.43,19.51,19.76,20.02,20.3,20.37,20.39,20.2,N/A,N/A -2012,3,1,19,30,101400,100220,99070,95.01,0,5.36,6.54,7.08,7.7,8.44,9.34,10.26,11.17,11.700000000000001,180.28,181.59,183.03,185.70000000000002,188.87,192.66,195.52,198,199.91,19.46,19.46,19.46,19.490000000000002,19.57,19.71,19.89,20.07,20.22,N/A,N/A -2012,3,1,20,30,101330,100150,99020,95.08,0,4.74,5.95,6.5600000000000005,7.32,8.3,9.540000000000001,10.05,10.290000000000001,10.83,175.59,176.52,177.95000000000002,181.14000000000001,186.15,193.03,195.52,196.49,198.67000000000002,19.45,19.47,19.5,19.6,19.86,20.22,20.37,20.42,20.46,N/A,N/A -2012,3,1,21,30,101260,100090,98950,94.91,0,5.57,6.86,7.45,8.11,8.88,9.790000000000001,10.36,10.790000000000001,11.16,169.93,171.13,172.44,174.85,179.02,184.71,190.42000000000002,195.79,198.70000000000002,19.52,19.52,19.52,19.54,19.63,19.79,19.96,20.13,20.2,N/A,N/A -2012,3,1,22,30,101200,100020,98880,93.97,0,5.64,7.25,8.01,8.75,9.23,9.5,9.93,10.42,11.19,162.6,165.49,168.09,171.95000000000002,176.59,181.89000000000001,187.54,193.07,198.12,19.54,19.580000000000002,19.54,19.44,19.26,19.01,19.07,19.22,19.92,N/A,N/A -2012,3,1,23,30,101130,99950,98810,94.23,0,5.88,7.37,8.05,8.73,9.290000000000001,9.76,10.14,10.49,10.86,161.20000000000002,163.74,165.86,168.89000000000001,172.5,176.63,181.43,186.14000000000001,190.43,19.42,19.46,19.42,19.330000000000002,19.06,18.68,18.650000000000002,18.71,19.76,N/A,N/A -2012,3,2,0,30,101080,99910,98770,94.18,0,5.24,6.63,7.26,7.97,8.76,9.67,10.47,11.21,11.97,168.07,170.57,172.51,175.06,177.82,180.97,184.8,188.73,191.76,19.46,19.53,19.53,19.490000000000002,19.34,19.080000000000002,19.02,19.02,19.44,N/A,N/A -2012,3,2,1,30,101050,99870,98740,96.01,0.7000000000000001,6.390000000000001,7.79,8.51,9.370000000000001,10.32,11.39,12.23,12.98,13.22,171.22,172.38,173.49,175.25,177.41,180,182.91,185.78,188.72,19.04,18.96,18.89,18.78,18.61,18.39,18.93,19.63,20.59,N/A,N/A -2012,3,2,2,30,101020,99840,98700,95.14,0,6.82,8.27,8.98,9.77,10.58,11.450000000000001,12.32,13.15,14.15,166.77,167.65,168.46,169.85,171.70000000000002,174.08,178.01,182.36,189.21,19.21,19.19,19.16,19.1,19.01,18.89,18.72,18.56,20.79,N/A,N/A -2012,3,2,3,30,100980,99810,98660,93.87,0,8.57,10.43,11.34,12.31,13.13,13.84,14.24,14.51,15.1,173.74,174.99,175.97,177.4,179.19,181.39000000000001,184.71,188.15,193.43,19.46,19.39,19.28,19.05,18.78,18.46,18.29,18.18,18.96,N/A,N/A -2012,3,2,4,30,100940,99770,98630,93.99,0,7.5200000000000005,9.06,9.72,10.370000000000001,10.92,11.41,12.42,13.61,15.98,174.78,174.74,174.99,175.8,177.12,178.93,182.55,186.82,195.63,19.44,19.41,19.35,19.27,19.16,19.01,18.400000000000002,17.69,19.68,N/A,N/A -2012,3,2,5,30,100930,99750,98600,96.61,0,9.31,10.93,11.65,12.38,13.06,13.73,14.450000000000001,15.14,16.85,179.98,181.07,181.81,182.76,183.75,184.8,186.43,188.14000000000001,195.07,18.91,18.75,18.61,18.400000000000002,18.17,17.900000000000002,17.62,17.37,20.02,N/A,N/A -2012,3,2,6,30,100920,99740,98600,96.7,0.4,8.040000000000001,9.3,9.84,10.39,10.96,11.58,12.44,13.34,16.02,181.38,180.57,179.97,179.24,178.82,178.62,179.65,181.01,190.13,18.990000000000002,18.91,18.85,18.76,18.63,18.47,18.13,17.76,18.48,N/A,N/A -2012,3,2,7,30,100910,99730,98590,95.16,0,8.44,9.94,10.64,11.34,12.01,12.68,13.370000000000001,14.030000000000001,15.280000000000001,177.34,177.75,178.14000000000001,178.75,179.49,180.38,181.36,182.33,185.32,19.31,19.21,19.12,18.96,18.76,18.54,18.26,17.990000000000002,17.490000000000002,N/A,N/A -2012,3,2,8,30,100870,99700,98560,96.39,0,8.93,10.51,11.24,12.030000000000001,12.83,13.69,14.68,15.69,17.69,184.91,185.43,185.91,186.59,187.36,188.25,189.15,190.03,189.82,19.06,18.98,18.92,18.830000000000002,18.740000000000002,18.64,18.52,18.42,18.5,N/A,N/A -2012,3,2,9,30,100860,99690,98550,93.94,0,5.83,7.390000000000001,8.15,8.93,9.72,10.59,11.61,12.69,14.540000000000001,172.11,173.94,175.47,177.35,179.12,180.93,182.73,184.49,187.39000000000001,19.59,19.63,19.62,19.6,19.56,19.5,19.39,19.26,18.61,N/A,N/A -2012,3,2,10,30,100850,99680,98540,93.87,0,5.8,7.28,7.98,8.67,9.31,9.93,10.620000000000001,11.31,13.17,182.98,182.87,182.81,182.64000000000001,182.55,182.55,182.73,182.98,184.27,19.6,19.66,19.66,19.650000000000002,19.63,19.62,19.580000000000002,19.53,19.12,N/A,N/A -2012,3,2,11,30,100860,99690,98550,92.68,0.4,6.47,8.26,9.17,10.17,11.040000000000001,11.84,12.5,13.08,13.950000000000001,179.32,180.56,181.41,182.27,183.03,183.74,184.51,185.27,186.93,19.86,19.95,19.95,19.94,19.91,19.88,19.830000000000002,19.78,19.62,N/A,N/A -2012,3,2,12,30,100810,99630,98500,93.41,0,5.84,7.16,7.7,8.27,8.98,9.86,10.700000000000001,11.49,12.23,184.46,184.07,183.87,184.18,184.98,186.21,187.75,189.34,193.77,19.7,19.78,19.78,19.77,19.75,19.72,19.650000000000002,19.57,19.26,N/A,N/A -2012,3,2,13,30,100800,99630,98490,95.09,0.4,6.2,7.54,8.1,8.61,9.16,9.76,10.450000000000001,11.14,13.77,185.42000000000002,184.42000000000002,183.45000000000002,181.82,180.56,179.53,180.32,181.64000000000001,188.67000000000002,19.34,19.36,19.36,19.34,19.3,19.23,18.94,18.61,19.27,N/A,N/A -2012,3,2,14,30,100840,99670,98530,94.08,0,4.9,6.25,6.88,7.62,8.47,9.5,10.64,11.84,14.19,180.15,179.48,179.35,179.94,180.88,182.24,183.31,184.24,188,19.6,19.69,19.7,19.69,19.63,19.51,19.150000000000002,18.73,18.55,N/A,N/A -2012,3,2,15,30,100910,99730,98590,96.27,0,1.9100000000000001,3.33,4.12,5.12,5.97,6.67,7.26,7.8100000000000005,8.99,172.24,177.38,180.9,183.58,185.76,187.5,188.99,190.33,193.04,19.43,19.580000000000002,19.57,19.51,19.41,19.28,19.13,18.990000000000002,18.7,N/A,N/A -2012,3,2,16,30,100900,99730,98590,96.8,0,2.19,3.4,3.99,4.82,5.51,6.08,6.66,7.23,8.3,190.81,191.56,192.71,195.44,198.03,200.48000000000002,202.52,204.36,205.9,19.38,19.51,19.51,19.43,19.3,19.14,18.97,18.82,18.52,N/A,N/A -2012,3,2,17,30,100930,99750,98610,97.23,0,0.99,1.83,2.37,3.0500000000000003,3.66,4.2,4.88,5.65,7.0600000000000005,136.27,169.97,194.41,205.09,211.23000000000002,212.46,211.49,209.5,206.19,19.48,19.47,19.39,19.25,19.1,18.93,18.82,18.75,19.23,N/A,N/A -2012,3,2,18,30,100910,99740,98600,98.15,0,1.41,2.2600000000000002,2.73,3.5100000000000002,4.17,4.68,5.26,5.84,6.6000000000000005,134.02,172.56,197.08,205.49,209.88,209.97,209.21,208.16,207.25,19.51,19.37,19.240000000000002,19.04,18.95,18.92,19.18,19.5,19.77,N/A,N/A -2012,3,2,19,30,100930,99760,98620,99.33,0,1.72,1.72,1.76,2.32,2.84,3.3000000000000003,3.74,4.17,4.9,107.16,136.29,155.42000000000002,180.34,196.03,200.47,203.22,205.16,206.68,19.42,19.23,19.13,19.02,19.150000000000002,19.48,19.7,19.88,19.92,N/A,N/A -2012,3,2,20,30,100850,99670,98540,99.3,0,2.68,3.2600000000000002,3.67,4.23,4.71,5.14,5.54,5.91,6.6000000000000005,181.79,186.05,189.33,193.02,195.84,197.88,199.35,200.53,202.08,19.35,19.34,19.490000000000002,19.98,20.240000000000002,20.330000000000002,20.36,20.36,20.27,N/A,N/A -2012,3,2,21,30,100820,99650,98510,96,0,2.7800000000000002,3.38,3.7800000000000002,4.39,4.83,5.09,5.37,5.65,6.24,147.45000000000002,154.51,161.54,174.18,182.01,185.08,187.49,189.54,192.57,20.01,19.91,19.95,20.150000000000002,20.26,20.29,20.31,20.32,20.29,N/A,N/A -2012,3,2,22,30,100770,99600,98470,95.03,0,2.97,3.85,4.34,5.05,5.51,5.72,5.97,6.23,6.78,154.65,159.27,164.51,175.66,182.68,185.53,187.87,189.9,193.1,20.400000000000002,20.39,20.43,20.580000000000002,20.650000000000002,20.66,20.68,20.71,20.7,N/A,N/A -2012,3,2,23,30,100750,99580,98450,94.66,0,3.5100000000000002,4.8,5.39,6.0200000000000005,6.36,6.46,6.65,6.87,7.2700000000000005,151.02,156.06,161.15,170.16,175.51,177.62,179.33,180.82,183.76,20.38,20.63,20.75,20.87,20.91,20.89,20.89,20.88,20.82,N/A,N/A -2012,3,3,0,30,100750,99580,98450,96.33,0,2.22,3.81,4.64,5.57,6.11,6.3,6.48,6.640000000000001,7.03,130.25,143.1,154.66,169.99,178.71,181.12,183.05,184.71,187.31,19.84,20.22,20.45,20.78,20.94,20.96,20.97,20.96,20.89,N/A,N/A -2012,3,3,1,30,100760,99590,98460,96.32000000000001,0,2.21,3.85,4.74,5.6000000000000005,6.13,6.3100000000000005,6.49,6.67,7.03,132.25,145.64000000000001,157.85,173.24,182.12,184.26,186.07,187.66,190.26,19.75,20.04,20.240000000000002,20.68,20.92,21,21.07,21.14,21.16,N/A,N/A -2012,3,3,2,30,100790,99620,98490,95.31,0,1.81,2.73,3.09,3.5,3.9,4.3100000000000005,4.7,5.07,5.67,154.35,165,171.88,176.55,180.31,183.43,186.06,188.45000000000002,192.32,19.81,20.09,20.17,20.25,20.35,20.46,20.59,20.71,20.84,N/A,N/A -2012,3,3,3,30,100780,99610,98480,96.2,0.7000000000000001,2.87,3.7,3.98,4.33,4.66,4.99,5.3100000000000005,5.62,6.12,154.32,163.67000000000002,169.95000000000002,174.93,178.79,181.81,184.31,186.51,190.43,19.54,19.93,20.150000000000002,20.36,20.490000000000002,20.57,20.62,20.66,20.72,N/A,N/A -2012,3,3,4,30,100770,99590,98460,97.36,0,2.66,4.3500000000000005,5.21,5.66,5.91,6.0200000000000005,6.0200000000000005,5.98,5.7700000000000005,149.73,160.38,170.47,182.56,190.14000000000001,194.41,198.17000000000002,201.43,206.77,19.14,19.22,19.35,19.61,19.830000000000002,20.01,20.16,20.28,20.42,N/A,N/A -2012,3,3,5,30,100780,99600,98470,96.72,0,2.77,4.25,4.97,5.5,5.71,5.66,5.6000000000000005,5.54,5.48,167.94,178.45000000000002,187.22,197.85,205.28,209.88,213.95000000000002,217.51,222.81,19.22,19.330000000000002,19.400000000000002,19.53,19.68,19.85,20.1,20.35,20.59,N/A,N/A -2012,3,3,6,30,100780,99600,98470,96.85000000000001,0,1.8800000000000001,3.49,4.22,4.5600000000000005,4.65,4.58,4.5,4.42,4.46,157.34,176.79,191.44,202.91,210.72,215.82,221.07,225.8,233.49,19.39,19.400000000000002,19.39,19.46,19.55,19.64,19.78,19.91,20.150000000000002,N/A,N/A -2012,3,3,7,30,100820,99650,98510,97.09,2.9000000000000004,1.54,2.22,2.39,2.41,2.5500000000000003,2.81,3.02,3.19,3.39,170.49,193.48000000000002,209.53,222.51,231.23000000000002,237.21,242.35,246.89000000000001,256.4,19.34,19.35,19.32,19.32,19.31,19.29,19.3,19.32,19.48,N/A,N/A -2012,3,3,8,30,100800,99620,98480,97.27,5.5,0.33,0.52,0.67,0.92,1.18,1.42,1.68,1.93,2.35,185.66,242.20000000000002,273.97,280.25,285.88,290.75,294.22,297.17,299.44,19.29,19.330000000000002,19.29,19.23,19.17,19.12,19.09,19.07,19.080000000000002,N/A,N/A -2012,3,3,9,30,100900,99710,98560,80.17,6.2,11.370000000000001,12.33,12.540000000000001,12.59,12.59,12.57,12.52,12.47,12.4,31.32,31.29,31.3,31.3,31.29,31.28,31.27,31.27,31.35,17.56,17.2,17.02,16.82,16.63,16.45,16.26,16.09,15.75,N/A,N/A -2012,3,3,10,30,100930,99740,98580,65.57000000000001,0,12.09,13.32,13.65,13.83,13.950000000000001,14.040000000000001,14.1,14.15,14.23,32.25,32.53,32.7,32.87,33.04,33.2,33.38,33.56,34,17.93,17.61,17.43,17.240000000000002,17.04,16.85,16.66,16.47,16.080000000000002,N/A,N/A -2012,3,3,11,30,101000,99810,98650,64.78,0,12.59,13.870000000000001,14.22,14.42,14.55,14.63,14.69,14.73,14.780000000000001,31.34,31.580000000000002,31.76,31.94,32.12,32.27,32.45,32.62,33,17.5,17.14,16.95,16.75,16.55,16.37,16.17,15.98,15.6,N/A,N/A -2012,3,3,12,30,101090,99890,98730,63.99,0,12.55,13.77,14.120000000000001,14.31,14.43,14.51,14.56,14.6,14.64,30.150000000000002,30.35,30.490000000000002,30.650000000000002,30.82,30.98,31.16,31.32,31.7,16.87,16.46,16.26,16.05,15.85,15.66,15.450000000000001,15.27,14.88,N/A,N/A -2012,3,3,13,30,101150,99950,98790,65.2,0,12.83,14.040000000000001,14.35,14.5,14.59,14.65,14.69,14.71,14.73,28.89,29.1,29.240000000000002,29.38,29.53,29.66,29.82,29.98,30.330000000000002,16.240000000000002,15.77,15.57,15.35,15.15,14.96,14.76,14.57,14.18,N/A,N/A -2012,3,3,14,30,101260,100060,98890,65.2,0,11.870000000000001,12.99,13.31,13.48,13.6,13.68,13.73,13.77,13.81,27.6,27.86,28.01,28.14,28.27,28.38,28.5,28.61,28.85,15.9,15.42,15.200000000000001,14.99,14.780000000000001,14.59,14.38,14.19,13.8,N/A,N/A -2012,3,3,15,30,101340,100130,98960,64.33,0,11.1,12.09,12.38,12.52,12.620000000000001,12.68,12.72,12.75,12.780000000000001,23.89,24.02,24.09,24.17,24.23,24.29,24.34,24.400000000000002,24.53,15.64,15.14,14.93,14.71,14.51,14.31,14.1,13.91,13.52,N/A,N/A -2012,3,3,16,30,101370,100160,98990,58.01,0,10.620000000000001,11.57,11.85,12,12.1,12.18,12.23,12.27,12.33,26.25,26.12,26.04,25.95,25.86,25.77,25.67,25.580000000000002,25.38,16.13,15.68,15.47,15.26,15.06,14.870000000000001,14.66,14.47,14.08,N/A,N/A -2012,3,3,17,30,101420,100220,99050,53.910000000000004,0,9.76,10.63,10.89,11.03,11.13,11.200000000000001,11.25,11.290000000000001,11.35,10.4,10.75,10.98,11.200000000000001,11.38,11.56,11.73,11.89,12.200000000000001,16.73,16.34,16.15,15.94,15.74,15.55,15.35,15.16,14.76,N/A,N/A -2012,3,3,18,30,101450,100250,99080,49,0,10.05,11.01,11.290000000000001,11.44,11.540000000000001,11.620000000000001,11.67,11.71,11.77,7.82,7.94,8.01,8.05,8.09,8.120000000000001,8.15,8.17,8.21,17.42,17.07,16.89,16.69,16.5,16.31,16.11,15.92,15.530000000000001,N/A,N/A -2012,3,3,19,30,101480,100290,99120,48.68,0,9.07,9.93,10.19,10.35,10.46,10.540000000000001,10.6,10.66,10.74,0.52,0.48,0.45,0.42,0.38,0.34,0.3,0.27,0.2,17.92,17.62,17.45,17.25,17.06,16.87,16.67,16.48,16.09,N/A,N/A -2012,3,3,20,30,101500,100310,99140,48.4,0,9.09,9.97,10.22,10.36,10.46,10.53,10.58,10.620000000000001,10.68,348.1,348.63,349.01,349.35,349.65000000000003,349.92,350.18,350.41,350.87,18.18,17.92,17.75,17.56,17.37,17.18,16.98,16.8,16.41,N/A,N/A -2012,3,3,21,30,101540,100350,99180,48.07,0,10.41,11.38,11.66,11.8,11.89,11.94,11.98,12,12.02,339.37,340.08,340.61,341.15000000000003,341.63,342.08,342.53000000000003,342.94,343.78000000000003,17.95,17.67,17.51,17.31,17.13,16.95,16.75,16.57,16.19,N/A,N/A -2012,3,3,22,30,101590,100390,99230,45.65,0,10.56,11.57,11.85,12,12.09,12.16,12.200000000000001,12.23,12.25,338.35,338.85,339.2,339.53000000000003,339.83,340.12,340.41,340.66,341.18,17.73,17.42,17.25,17.05,16.86,16.67,16.47,16.29,15.9,N/A,N/A -2012,3,3,23,30,101660,100460,99290,43.59,0,11.14,12.23,12.530000000000001,12.700000000000001,12.8,12.88,12.93,12.97,13.02,343.94,344.14,344.26,344.37,344.46,344.54,344.61,344.67,344.79,17.54,17.2,17.02,16.82,16.63,16.44,16.23,16.05,15.65,N/A,N/A -2012,3,4,0,30,101790,100590,99420,42.6,0,10.370000000000001,11.31,11.57,11.69,11.78,11.83,11.86,11.89,11.91,354.15000000000003,354.08,354.05,354.01,353.98,353.95,353.90000000000003,353.86,353.78000000000003,17.14,16.78,16.59,16.39,16.19,16,15.790000000000001,15.610000000000001,15.21,N/A,N/A -2012,3,4,1,30,101900,100690,99520,44.14,0,10.24,11.200000000000001,11.47,11.620000000000001,11.73,11.81,11.86,11.91,11.97,356.71,356.12,355.8,355.5,355.23,354.98,354.75,354.53000000000003,354.13,16.75,16.36,16.17,15.96,15.76,15.57,15.36,15.17,14.780000000000001,N/A,N/A -2012,3,4,2,30,102020,100810,99630,43.86,0,10.07,10.97,11.23,11.38,11.48,11.55,11.61,11.66,11.72,352.63,352.63,352.62,352.61,352.59000000000003,352.57,352.56,352.54,352.5,16.53,16.12,15.93,15.72,15.51,15.32,15.120000000000001,14.93,14.530000000000001,N/A,N/A -2012,3,4,3,30,102110,100900,99720,45.32,0,10.36,11.31,11.620000000000001,11.8,11.92,12.02,12.09,12.15,12.23,356.76,356.63,356.53000000000003,356.43,356.35,356.27,356.2,356.13,356,16.3,15.89,15.69,15.47,15.27,15.08,14.870000000000001,14.68,14.280000000000001,N/A,N/A -2012,3,4,4,30,102160,100940,99760,44.46,0,9.33,10.18,10.44,10.6,10.72,10.81,10.88,10.94,11.040000000000001,354.48,354.23,354.08,353.94,353.82,353.7,353.59000000000003,353.5,353.3,16.11,15.68,15.48,15.27,15.07,14.88,14.67,14.48,14.09,N/A,N/A -2012,3,4,5,30,102240,101020,99840,43.410000000000004,0,8.85,9.56,9.78,9.9,9.98,10.040000000000001,10.09,10.120000000000001,10.17,354.06,353.75,353.54,353.35,353.17,353,352.84000000000003,352.69,352.39,16.04,15.620000000000001,15.42,15.21,15.01,14.82,14.620000000000001,14.43,14.030000000000001,N/A,N/A -2012,3,4,6,30,102280,101060,99880,42.730000000000004,0,6.79,7.23,7.34,7.390000000000001,7.43,7.45,7.47,7.48,7.5,0.16,359.98,359.84000000000003,359.7,359.56,359.42,359.28000000000003,359.14,358.85,15.68,15.25,15.06,14.86,14.66,14.48,14.280000000000001,14.09,13.71,N/A,N/A -2012,3,4,7,30,102330,101110,99930,41.34,0,5.59,5.94,6.03,6.08,6.12,6.15,6.17,6.19,6.22,352.67,352.33,352.12,351.92,351.73,351.56,351.39,351.23,350.89,15.700000000000001,15.290000000000001,15.1,14.89,14.69,14.5,14.3,14.11,13.73,N/A,N/A -2012,3,4,8,30,102330,101110,99930,39.71,0,5.91,6.3,6.4,6.45,6.49,6.51,6.53,6.55,6.57,356.56,356.33,356.18,356.04,355.91,355.78000000000003,355.65000000000003,355.53000000000003,355.29,15.870000000000001,15.47,15.27,15.07,14.870000000000001,14.68,14.48,14.290000000000001,13.89,N/A,N/A -2012,3,4,9,30,102350,101130,99950,39.97,0,5.36,5.66,5.73,5.76,5.79,5.8,5.8100000000000005,5.8100000000000005,5.82,354.01,353.54,353.24,352.96,352.71,352.49,352.26,352.05,351.64,15.76,15.35,15.16,14.96,14.75,14.56,14.36,14.17,13.77,N/A,N/A -2012,3,4,10,30,102360,101140,99960,40.35,0,4.45,4.7,4.76,4.79,4.82,4.83,4.8500000000000005,4.86,4.88,346.95,346.5,346.25,346.01,345.79,345.61,345.41,345.23,344.87,15.64,15.24,15.05,14.85,14.65,14.46,14.25,14.06,13.67,N/A,N/A -2012,3,4,11,30,102380,101160,99970,40.88,0,3.79,3.98,4.0200000000000005,4.04,4.0600000000000005,4.07,4.08,4.09,4.1,338.66,338.28000000000003,338.05,337.82,337.61,337.43,337.25,337.08,336.74,15.57,15.18,14.99,14.790000000000001,14.59,14.4,14.19,14,13.61,N/A,N/A -2012,3,4,12,30,102410,101190,100000,41.53,0,3.34,3.49,3.52,3.54,3.5500000000000003,3.56,3.56,3.5700000000000003,3.5700000000000003,318.82,318.33,318.08,317.85,317.64,317.45,317.25,317.08,316.73,15.58,15.19,15,14.8,14.6,14.41,14.200000000000001,14.01,13.620000000000001,N/A,N/A -2012,3,4,13,30,102430,101210,100030,42.74,0,3.75,3.89,3.9,3.89,3.87,3.85,3.83,3.81,3.77,296.93,297.05,297.13,297.21,297.3,297.38,297.47,297.56,297.78000000000003,15.450000000000001,15.06,14.86,14.66,14.46,14.27,14.07,13.88,13.49,N/A,N/A -2012,3,4,14,30,102480,101260,100080,39.910000000000004,0,3.39,3.5300000000000002,3.5500000000000003,3.5500000000000003,3.5500000000000003,3.5500000000000003,3.54,3.5300000000000002,3.52,280.31,280.27,280.28000000000003,280.28000000000003,280.29,280.29,280.33,280.36,280.46,15.5,15.11,14.92,14.71,14.52,14.33,14.120000000000001,13.93,13.540000000000001,N/A,N/A -2012,3,4,15,30,102510,101290,100100,40.61,0,3.96,4.14,4.18,4.19,4.19,4.19,4.19,4.18,4.17,274.51,274.45,274.43,274.39,274.36,274.34000000000003,274.32,274.29,274.26,15.64,15.25,15.06,14.85,14.65,14.47,14.27,14.08,13.69,N/A,N/A -2012,3,4,16,30,102510,101280,100100,43.800000000000004,0,4.54,4.7700000000000005,4.8100000000000005,4.83,4.83,4.84,4.83,4.83,4.8100000000000005,268.53000000000003,268.5,268.5,268.5,268.52,268.54,268.57,268.6,268.68,15.76,15.36,15.17,14.97,14.77,14.59,14.38,14.19,13.8,N/A,N/A -2012,3,4,17,30,102510,101290,100100,44.07,0,4.43,4.67,4.72,4.75,4.76,4.78,4.78,4.79,4.79,251.74,252.47,252.92000000000002,253.35,253.75,254.12,254.5,254.86,255.59,16.04,15.65,15.46,15.26,15.06,14.88,14.67,14.48,14.09,N/A,N/A -2012,3,4,18,30,102490,101270,100090,43.44,0,4.72,4.96,4.99,5.01,5.01,5,4.99,4.98,4.95,244.77,245.56,246.11,246.64000000000001,247.14000000000001,247.61,248.12,248.59,249.63,16.4,16.02,15.84,15.64,15.44,15.25,15.05,14.870000000000001,14.48,N/A,N/A -2012,3,4,19,30,102480,101270,100090,43.28,0,4.75,5,5.04,5.0600000000000005,5.0600000000000005,5.05,5.04,5.03,4.99,222.62,223.18,223.57,223.94,224.3,224.64000000000001,225.01,225.35,226.14000000000001,16.68,16.31,16.13,15.93,15.73,15.55,15.34,15.16,14.77,N/A,N/A -2012,3,4,20,30,102440,101230,100050,44.7,0,4.74,4.97,5,4.99,4.97,4.94,4.9,4.87,4.7700000000000005,209.46,210.03,210.42000000000002,210.83,211.25,211.65,212.19,212.71,214.20000000000002,17.01,16.67,16.490000000000002,16.3,16.11,15.93,15.73,15.55,15.19,N/A,N/A -2012,3,4,21,30,102400,101190,100010,48.67,0,5.91,6.29,6.36,6.38,6.390000000000001,6.390000000000001,6.38,6.36,6.32,208.72,209.03,209.21,209.38,209.55,209.71,209.89000000000001,210.06,210.49,17.05,16.69,16.51,16.31,16.12,15.93,15.73,15.55,15.16,N/A,N/A -2012,3,4,22,30,102380,101170,99990,50.14,0,6.74,7.26,7.38,7.43,7.46,7.49,7.5,7.5,7.5,210.08,210.32,210.47,210.61,210.75,210.86,210.99,211.1,211.34,17.330000000000002,16.98,16.8,16.6,16.4,16.22,16.01,15.83,15.43,N/A,N/A -2012,3,4,23,30,102360,101150,99980,52.39,0,7.5600000000000005,8.19,8.33,8.4,8.45,8.47,8.49,8.5,8.49,213.22,213.45000000000002,213.59,213.72,213.84,213.95000000000002,214.07,214.18,214.42000000000002,17.52,17.18,17,16.8,16.61,16.42,16.22,16.04,15.65,N/A,N/A -2012,3,5,0,30,102380,101170,99990,55.74,0,8.15,8.86,9.03,9.120000000000001,9.17,9.200000000000001,9.22,9.23,9.23,216.11,216.24,216.33,216.4,216.47,216.54,216.6,216.67000000000002,216.8,17.63,17.3,17.12,16.92,16.73,16.54,16.34,16.15,15.77,N/A,N/A -2012,3,5,1,30,102400,101190,100020,55.4,0,8.09,8.81,8.98,9.07,9.120000000000001,9.15,9.17,9.18,9.19,219.48000000000002,219.57,219.63,219.68,219.73000000000002,219.77,219.82,219.86,219.96,17.79,17.48,17.3,17.1,16.91,16.73,16.52,16.34,15.950000000000001,N/A,N/A -2012,3,5,2,30,102440,101230,100050,58.26,0,7.97,8.68,8.84,8.93,8.98,9.02,9.03,9.05,9.05,221.99,222.14000000000001,222.23000000000002,222.32,222.4,222.47,222.56,222.64000000000001,222.8,17.84,17.53,17.35,17.150000000000002,16.96,16.77,16.57,16.39,16,N/A,N/A -2012,3,5,3,30,102450,101240,100070,58.67,0,7.5,8.15,8.3,8.38,8.42,8.45,8.47,8.47,8.47,221.88,221.97,222.04,222.1,222.16,222.22,222.28,222.34,222.46,17.900000000000002,17.59,17.42,17.22,17.03,16.84,16.64,16.46,16.07,N/A,N/A -2012,3,5,4,30,102470,101260,100090,57.35,0,7.16,7.76,7.9,7.97,8.01,8.03,8.040000000000001,8.040000000000001,8.03,223.76,223.83,223.87,223.91,223.95000000000002,223.98000000000002,224.02,224.07,224.18,18.06,17.76,17.59,17.400000000000002,17.21,17.03,16.830000000000002,16.65,16.27,N/A,N/A -2012,3,5,5,30,102490,101290,100110,59.94,0,6.9,7.48,7.61,7.68,7.71,7.73,7.74,7.74,7.72,222.11,222.25,222.34,222.42000000000002,222.51,222.59,222.68,222.76,222.96,18.04,17.75,17.57,17.38,17.19,17,16.8,16.62,16.23,N/A,N/A -2012,3,5,6,30,102530,101320,100150,61.74,0,6.54,7.11,7.24,7.3,7.33,7.3500000000000005,7.36,7.36,7.3500000000000005,227.3,227.38,227.42000000000002,227.47,227.51,227.55,227.59,227.62,227.71,18,17.73,17.56,17.37,17.18,17,16.8,16.62,16.240000000000002,N/A,N/A -2012,3,5,7,30,102560,101350,100180,61.38,0,6.49,7.05,7.18,7.24,7.28,7.3,7.3100000000000005,7.32,7.3100000000000005,229.79,229.88,229.92000000000002,229.97,230.01,230.06,230.1,230.15,230.27,18.01,17.740000000000002,17.57,17.38,17.2,17.02,16.82,16.63,16.25,N/A,N/A -2012,3,5,8,30,102580,101370,100200,65.47,0,6.18,6.7,6.8100000000000005,6.87,6.91,6.92,6.93,6.93,6.93,231.35,231.39000000000001,231.41,231.43,231.45000000000002,231.46,231.46,231.46,231.46,17.92,17.650000000000002,17.48,17.29,17.1,16.92,16.72,16.54,16.15,N/A,N/A -2012,3,5,9,30,102590,101380,100200,64.16,0,5.57,6.04,6.140000000000001,6.19,6.22,6.24,6.25,6.25,6.25,234.54,234.59,234.63,234.66,234.70000000000002,234.72,234.75,234.78,234.85,17.92,17.650000000000002,17.48,17.29,17.1,16.92,16.73,16.54,16.16,N/A,N/A -2012,3,5,10,30,102620,101410,100240,65.79,0,5.24,5.67,5.7700000000000005,5.8100000000000005,5.84,5.8500000000000005,5.86,5.86,5.86,234.13,234.21,234.25,234.3,234.33,234.37,234.4,234.43,234.52,17.89,17.62,17.45,17.26,17.06,16.88,16.68,16.5,16.11,N/A,N/A -2012,3,5,11,30,102650,101440,100270,64.48,0,4.63,4.99,5.07,5.1000000000000005,5.12,5.13,5.14,5.14,5.14,240.16,240.15,240.14000000000001,240.12,240.09,240.05,240.01,239.98000000000002,239.87,17.900000000000002,17.63,17.46,17.27,17.080000000000002,16.9,16.7,16.52,16.14,N/A,N/A -2012,3,5,12,30,102690,101480,100310,64.35,0,3.84,4.12,4.17,4.2,4.21,4.22,4.23,4.23,4.23,232.12,232.17000000000002,232.21,232.24,232.27,232.31,232.35,232.38,232.47,17.89,17.62,17.45,17.26,17.07,16.88,16.69,16.5,16.12,N/A,N/A -2012,3,5,13,30,102740,101530,100350,66.05,0,3.85,4.13,4.18,4.21,4.23,4.24,4.25,4.26,4.28,228.9,228.75,228.65,228.55,228.44,228.34,228.23000000000002,228.11,227.84,17.830000000000002,17.55,17.38,17.19,17,16.82,16.62,16.43,16.05,N/A,N/A -2012,3,5,14,30,102810,101600,100420,64.25,0,3.18,3.41,3.45,3.47,3.49,3.49,3.5,3.5,3.5100000000000002,222.94,222.88,222.83,222.78,222.73000000000002,222.69,222.67000000000002,222.65,222.62,17.91,17.63,17.47,17.27,17.080000000000002,16.9,16.7,16.52,16.13,N/A,N/A -2012,3,5,15,30,102850,101630,100460,66.07000000000001,0,2.82,3,3.0300000000000002,3.0500000000000003,3.0500000000000003,3.06,3.06,3.0700000000000003,3.0700000000000003,215.76,215.83,215.86,215.89000000000001,215.89000000000001,215.89000000000001,215.89000000000001,215.88,215.83,17.87,17.580000000000002,17.41,17.21,17.02,16.84,16.64,16.45,16.07,N/A,N/A -2012,3,5,16,30,102860,101650,100480,64.52,0,2.42,2.5500000000000003,2.57,2.58,2.59,2.6,2.6,2.6,2.6,216.46,216.44,216.45000000000002,216.45000000000002,216.45000000000002,216.45000000000002,216.47,216.49,216.5,17.94,17.64,17.47,17.28,17.09,16.9,16.7,16.52,16.13,N/A,N/A -2012,3,5,17,30,102860,101650,100470,66.62,0,3.14,3.31,3.35,3.36,3.37,3.38,3.38,3.38,3.39,201.75,201.89000000000001,202,202.1,202.19,202.27,202.37,202.46,202.67000000000002,17.96,17.64,17.46,17.27,17.080000000000002,16.89,16.69,16.51,16.12,N/A,N/A -2012,3,5,18,30,102870,101660,100480,64.36,0,3.5700000000000003,3.77,3.81,3.8200000000000003,3.83,3.83,3.84,3.84,3.83,198.66,198.78,198.86,198.94,199.02,199.09,199.16,199.23000000000002,199.4,18.13,17.81,17.63,17.44,17.25,17.06,16.86,16.68,16.29,N/A,N/A -2012,3,5,19,30,102880,101660,100490,63.68,0,3.13,3.31,3.34,3.36,3.37,3.38,3.38,3.38,3.38,187.62,187.71,187.81,187.9,187.98,188.04,188.09,188.14000000000001,188.27,18.240000000000002,17.92,17.75,17.56,17.36,17.18,16.98,16.79,16.41,N/A,N/A -2012,3,5,20,30,102830,101620,100450,67.07000000000001,0,4.07,4.32,4.37,4.4,4.41,4.41,4.42,4.41,4.41,188.5,188.61,188.71,188.79,188.88,188.95000000000002,189.03,189.11,189.28,18.23,17.92,17.740000000000002,17.55,17.36,17.17,16.98,16.79,16.41,N/A,N/A -2012,3,5,21,30,102800,101590,100420,64.61,0,4.01,4.3100000000000005,4.37,4.4,4.42,4.43,4.44,4.44,4.45,184.36,184.54,184.64000000000001,184.75,184.84,184.93,185.02,185.09,185.26,18.34,18.06,17.89,17.7,17.5,17.32,17.12,16.94,16.55,N/A,N/A -2012,3,5,22,30,102770,101560,100380,66.21000000000001,0,4.07,4.38,4.44,4.47,4.49,4.5,4.51,4.51,4.5200000000000005,180.66,180.67000000000002,180.68,180.67000000000002,180.66,180.66,180.64000000000001,180.63,180.6,18.25,17.990000000000002,17.82,17.63,17.43,17.25,17.05,16.87,16.48,N/A,N/A -2012,3,5,23,30,102740,101530,100350,65.65,0,4.32,4.67,4.75,4.79,4.82,4.84,4.8500000000000005,4.86,4.87,174.3,174.49,174.64000000000001,174.76,174.87,174.97,175.07,175.17000000000002,175.33,18.22,17.96,17.8,17.62,17.43,17.25,17.05,16.87,16.490000000000002,N/A,N/A -2012,3,6,0,30,102710,101500,100320,67.13,0,4.87,5.28,5.37,5.41,5.44,5.47,5.48,5.49,5.51,175.33,175.4,175.45000000000002,175.5,175.54,175.59,175.63,175.67000000000002,175.78,18.14,17.88,17.72,17.53,17.34,17.16,16.97,16.78,16.41,N/A,N/A -2012,3,6,1,30,102700,101490,100320,67.06,0,5.2,5.66,5.76,5.8100000000000005,5.8500000000000005,5.87,5.89,5.9,5.92,170.8,170.88,170.94,170.97,171,171.02,171.05,171.07,171.11,18.11,17.85,17.69,17.5,17.32,17.13,16.94,16.76,16.37,N/A,N/A -2012,3,6,2,30,102700,101490,100320,69.42,0,5.46,5.94,6.05,6.12,6.16,6.19,6.21,6.22,6.25,166.99,167.07,167.12,167.16,167.21,167.25,167.3,167.34,167.45000000000002,18.07,17.81,17.64,17.45,17.26,17.080000000000002,16.88,16.7,16.32,N/A,N/A -2012,3,6,3,30,102690,101480,100310,67.56,0,6.3100000000000005,6.890000000000001,7.0200000000000005,7.1000000000000005,7.140000000000001,7.17,7.19,7.21,7.23,167.12,167.21,167.26,167.32,167.38,167.44,167.5,167.56,167.71,18.14,17.88,17.72,17.53,17.34,17.16,16.96,16.78,16.4,N/A,N/A -2012,3,6,4,30,102670,101470,100290,70.87,0,6.3,6.890000000000001,7.03,7.11,7.17,7.21,7.24,7.2700000000000005,7.3,163.77,163.86,163.92000000000002,163.99,164.05,164.11,164.17000000000002,164.22,164.35,18.080000000000002,17.82,17.650000000000002,17.46,17.28,17.09,16.9,16.72,16.330000000000002,N/A,N/A -2012,3,6,5,30,102650,101440,100270,70.35000000000001,0,6.65,7.29,7.46,7.55,7.62,7.66,7.7,7.73,7.7700000000000005,163.73,163.84,163.92000000000002,163.98,164.05,164.1,164.16,164.21,164.33,18.14,17.87,17.71,17.52,17.330000000000002,17.150000000000002,16.96,16.77,16.39,N/A,N/A -2012,3,6,6,30,102660,101450,100280,70.56,0,7.23,7.95,8.13,8.24,8.31,8.370000000000001,8.4,8.44,8.47,163.18,163.31,163.39000000000001,163.47,163.55,163.62,163.70000000000002,163.77,163.92000000000002,18.23,17.97,17.81,17.62,17.43,17.25,17.05,16.87,16.48,N/A,N/A -2012,3,6,7,30,102640,101430,100260,72.05,0,7.33,8.09,8.290000000000001,8.42,8.51,8.58,8.63,8.67,8.73,164.34,164.53,164.63,164.73,164.82,164.9,164.99,165.07,165.24,18.28,18.03,17.87,17.68,17.5,17.32,17.12,16.94,16.56,N/A,N/A -2012,3,6,8,30,102600,101400,100230,73.54,0,7.66,8.47,8.700000000000001,8.85,8.950000000000001,9.040000000000001,9.1,9.15,9.23,166.16,166.37,166.5,166.62,166.74,166.85,166.96,167.07,167.27,18.35,18.11,17.95,17.77,17.59,17.41,17.21,17.03,16.65,N/A,N/A -2012,3,6,9,30,102570,101360,100190,74.36,0,7.79,8.620000000000001,8.85,9,9.11,9.19,9.25,9.3,9.38,168.5,168.45000000000002,168.45000000000002,168.44,168.42000000000002,168.4,168.39000000000001,168.37,168.32,18.42,18.19,18.03,17.85,17.67,17.490000000000002,17.3,17.12,16.73,N/A,N/A -2012,3,6,10,30,102540,101330,100160,75.57000000000001,0,7.91,8.76,9,9.16,9.27,9.36,9.43,9.49,9.57,165.32,165.55,165.67000000000002,165.79,165.9,166.01,166.13,166.24,166.48,18.44,18.21,18.06,17.88,17.7,17.52,17.330000000000002,17.150000000000002,16.77,N/A,N/A -2012,3,6,11,30,102530,101320,100160,78.58,0,6.79,7.92,8.38,8.67,8.93,9.17,9.4,9.61,9.94,161.48,162.95000000000002,163.56,163.6,163.65,163.71,163.82,163.94,164.17000000000002,18.47,18.23,18.09,17.92,17.76,17.61,17.46,17.31,16.98,N/A,N/A -2012,3,6,12,30,102510,101310,100140,79.39,0,6.3500000000000005,7.25,7.62,7.930000000000001,8.24,8.53,8.81,9.06,9.4,156.33,157.26,157.81,158.17000000000002,158.46,158.70000000000002,158.95000000000002,159.19,159.72,18.45,18.22,18.080000000000002,17.93,17.79,17.66,17.54,17.42,17.12,N/A,N/A -2012,3,6,13,30,102520,101310,100150,77.16,0,7.44,8.38,8.700000000000001,8.96,9.18,9.370000000000001,9.53,9.68,9.950000000000001,156.02,156.37,156.71,157.09,157.48,157.85,158.24,158.61,159.42000000000002,18.68,18.5,18.38,18.22,18.07,17.91,17.740000000000002,17.59,17.25,N/A,N/A -2012,3,6,14,30,102550,101350,100180,75.75,0,7.9,8.93,9.27,9.540000000000001,9.77,9.96,10.120000000000001,10.27,10.53,153.57,153.49,153.48,153.46,153.44,153.43,153.42000000000002,153.43,153.47,18.81,18.64,18.51,18.35,18.18,18.02,17.84,17.67,17.32,N/A,N/A -2012,3,6,15,30,102560,101360,100190,75.86,0,7.37,8.41,8.790000000000001,9.1,9.370000000000001,9.61,9.84,10.040000000000001,10.42,153.04,153.42000000000002,153.69,153.98,154.26,154.54,154.86,155.15,155.79,18.92,18.77,18.66,18.51,18.36,18.22,18.06,17.900000000000002,17.57,N/A,N/A -2012,3,6,16,30,102560,101350,100190,78.63,0,7.08,8.05,8.4,8.69,8.94,9.15,9.36,9.540000000000001,9.88,148.95000000000002,149.42000000000002,149.74,150.09,150.45000000000002,150.8,151.18,151.54,152.29,18.89,18.73,18.61,18.46,18.3,18.150000000000002,17.990000000000002,17.830000000000002,17.5,N/A,N/A -2012,3,6,17,30,102520,101320,100150,80.11,0,7.2,8.18,8.53,8.82,9.07,9.3,9.51,9.700000000000001,10.07,144.02,144.47,144.83,145.25,145.68,146.12,146.61,147.07,148.08,18.94,18.78,18.650000000000002,18.5,18.36,18.21,18.04,17.89,17.57,N/A,N/A -2012,3,6,18,30,102490,101290,100130,81.56,0,6.92,7.87,8.21,8.5,8.75,8.96,9.16,9.33,9.67,142.36,142.79,143.11,143.5,143.89000000000001,144.27,144.70000000000002,145.1,145.98,18.990000000000002,18.830000000000002,18.7,18.56,18.400000000000002,18.25,18.09,17.94,17.62,N/A,N/A -2012,3,6,19,30,102460,101260,100090,82.61,0,6.93,7.91,8.27,8.58,8.85,9.09,9.32,9.52,9.91,136.83,137.36,137.72,138.13,138.53,138.92000000000002,139.33,139.71,140.5,19.01,18.86,18.740000000000002,18.59,18.45,18.3,18.14,18,17.67,N/A,N/A -2012,3,6,20,30,102400,101200,100040,83.01,0,7.2700000000000005,8.41,8.85,9.24,9.58,9.89,10.18,10.44,10.91,134.64000000000001,134.95,135.21,135.52,135.86,136.21,136.6,136.98,137.78,19.03,18.900000000000002,18.79,18.66,18.53,18.39,18.25,18.11,17.81,N/A,N/A -2012,3,6,21,30,102340,101140,99980,82.79,0,7.9,9.14,9.620000000000001,10.040000000000001,10.43,10.77,11.1,11.4,11.94,132.76,133.3,133.67000000000002,134.09,134.53,134.95,135.41,135.83,136.75,19.02,18.900000000000002,18.8,18.68,18.55,18.42,18.28,18.150000000000002,17.86,N/A,N/A -2012,3,6,22,30,102280,101080,99920,82.86,0,8.540000000000001,9.82,10.3,10.71,11.07,11.4,11.71,11.98,12.51,131.6,132,132.32,132.7,133.09,133.49,133.92000000000002,134.31,135.16,19.03,18.92,18.82,18.69,18.56,18.43,18.28,18.150000000000002,17.85,N/A,N/A -2012,3,6,23,30,102220,101030,99870,83.45,0,8.66,9.97,10.47,10.9,11.28,11.63,11.950000000000001,12.24,12.780000000000001,133.41,133.8,134.08,134.4,134.73,135.07,135.43,135.78,136.53,18.990000000000002,18.87,18.77,18.650000000000002,18.51,18.38,18.240000000000002,18.1,17.81,N/A,N/A -2012,3,7,0,30,102160,100960,99800,84.91,0,9.16,10.52,11.01,11.43,11.8,12.13,12.450000000000001,12.74,13.290000000000001,133.71,134.03,134.25,134.5,134.77,135.04,135.34,135.64000000000001,136.28,18.96,18.830000000000002,18.72,18.580000000000002,18.44,18.3,18.150000000000002,18.01,17.71,N/A,N/A -2012,3,7,1,30,102130,100930,99770,85.61,0,9.49,10.94,11.46,11.92,12.32,12.69,13.05,13.38,14,135.15,135.44,135.66,135.93,136.21,136.5,136.83,137.15,137.86,18.98,18.85,18.740000000000002,18.61,18.47,18.330000000000002,18.19,18.05,17.76,N/A,N/A -2012,3,7,2,30,102110,100910,99750,85.66,0,10.18,11.71,12.26,12.73,13.15,13.530000000000001,13.91,14.26,14.93,133.25,133.58,133.81,134.06,134.32,134.58,134.86,135.12,135.69,19.04,18.92,18.81,18.68,18.54,18.41,18.26,18.13,17.830000000000002,N/A,N/A -2012,3,7,3,30,102080,100890,99730,87.16,0,10.25,11.870000000000001,12.450000000000001,12.97,13.43,13.85,14.25,14.61,15.31,138.8,139.1,139.29,139.53,139.77,140,140.26,140.5,141.01,19.06,18.94,18.84,18.72,18.580000000000002,18.45,18.31,18.18,17.89,N/A,N/A -2012,3,7,4,30,102050,100860,99700,85.87,0,10.620000000000001,12.27,12.88,13.41,13.86,14.27,14.65,15,15.65,140.33,140.63,140.85,141.09,141.32,141.54,141.77,141.99,142.44,19.13,19.03,18.94,18.81,18.68,18.56,18.42,18.29,18.01,N/A,N/A -2012,3,7,5,30,102020,100830,99670,87.31,0,9.34,10.83,11.4,11.92,12.39,12.83,13.26,13.65,14.42,142.17000000000002,142.37,142.5,142.67000000000002,142.84,143.01,143.20000000000002,143.39000000000001,143.8,19.07,18.96,18.86,18.73,18.6,18.47,18.330000000000002,18.2,17.91,N/A,N/A -2012,3,7,6,30,102030,100830,99680,87.55,0,10,11.540000000000001,12.11,12.61,13.05,13.450000000000001,13.84,14.19,14.88,148.05,148.17000000000002,148.25,148.35,148.46,148.56,148.68,148.79,149.08,19.240000000000002,19.12,19.02,18.89,18.76,18.62,18.48,18.35,18.07,N/A,N/A -2012,3,7,7,30,102030,100830,99680,89.12,0,8.91,10.39,10.97,11.48,11.950000000000001,12.38,12.8,13.19,13.94,151.66,151.79,151.91,152.06,152.21,152.37,152.57,152.76,153.26,19.23,19.13,19.03,18.91,18.79,18.66,18.53,18.400000000000002,18.14,N/A,N/A -2012,3,7,8,30,102000,100810,99650,90.16,0,8.3,9.69,10.24,10.75,11.22,11.65,12.07,12.46,13.26,151.01,151.39000000000001,151.6,151.8,151.97,152.13,152.29,152.43,152.8,19.240000000000002,19.14,19.04,18.92,18.79,18.67,18.53,18.400000000000002,18.14,N/A,N/A -2012,3,7,9,30,102000,100810,99650,90.4,0,7.95,9.41,10,10.55,11.05,11.5,11.94,12.34,13.09,153.1,153.65,154.07,154.55,155.03,155.51,155.98,156.42000000000002,157.23,19.31,19.240000000000002,19.17,19.080000000000002,18.97,18.87,18.76,18.650000000000002,18.400000000000002,N/A,N/A -2012,3,7,10,30,101950,100760,99610,90.92,0,8.23,9.700000000000001,10.31,10.9,11.44,11.94,12.450000000000001,12.92,13.81,149.68,150.31,150.77,151.35,151.94,152.54,153.23,153.89000000000001,155.29,19.31,19.240000000000002,19.17,19.080000000000002,18.98,18.89,18.79,18.7,18.5,N/A,N/A -2012,3,7,11,30,101940,100750,99590,91.54,0,7.930000000000001,9.4,10,10.56,11.07,11.55,12,12.41,13.23,153.24,154.04,154.59,155.22,155.87,156.53,157.23,157.89000000000001,159.33,19.3,19.240000000000002,19.17,19.080000000000002,18.98,18.89,18.78,18.68,18.48,N/A,N/A -2012,3,7,12,30,101940,100750,99600,91.67,0,7.890000000000001,9.26,9.81,10.33,10.78,11.18,11.56,11.91,12.56,150.06,150.69,151.14000000000001,151.70000000000002,152.26,152.84,153.46,154.06,155.36,19.28,19.21,19.14,19.04,18.93,18.82,18.7,18.59,18.34,N/A,N/A -2012,3,7,13,30,101940,100750,99600,91.36,0,7.2700000000000005,8.72,9.33,9.94,10.5,11.02,11.55,12.030000000000001,12.950000000000001,146.28,147.41,148.26,149.27,150.26,151.23,152.15,153.02,154.49,19.330000000000002,19.3,19.26,19.19,19.13,19.06,18.990000000000002,18.91,18.72,N/A,N/A -2012,3,7,14,30,101990,100800,99650,92.12,0,7.140000000000001,8.52,9.13,9.71,10.26,10.78,11.31,11.81,12.780000000000001,144.04,144.46,144.84,145.42000000000002,146.17000000000002,147.03,148.18,149.33,151.92000000000002,19.34,19.3,19.240000000000002,19.17,19.09,19.02,18.94,18.88,18.740000000000002,N/A,N/A -2012,3,7,15,30,102010,100820,99660,92.36,0,6.94,8.36,8.98,9.620000000000001,10.23,10.82,11.41,11.98,12.99,143.41,144.38,145.13,146.1,147.17000000000002,148.31,149.58,150.81,153.29,19.45,19.42,19.39,19.34,19.3,19.26,19.240000000000002,19.22,19.16,N/A,N/A -2012,3,7,16,30,102000,100810,99660,92.27,0,6.84,8.17,8.73,9.3,9.84,10.36,10.91,11.43,12.5,137.04,138.34,139.33,140.56,141.85,143.15,144.6,145.99,149,19.46,19.42,19.38,19.32,19.25,19.19,19.12,19.06,18.94,N/A,N/A -2012,3,7,17,30,102000,100810,99660,91.53,0,6.93,8.25,8.790000000000001,9.33,9.81,10.27,10.73,11.17,12.1,136.73,137.72,138.48,139.49,140.61,141.79,143.21,144.6,147.92000000000002,19.580000000000002,19.54,19.490000000000002,19.42,19.35,19.28,19.22,19.150000000000002,19.03,N/A,N/A -2012,3,7,18,30,101980,100790,99640,91.56,0,6.66,7.98,8.57,9.13,9.64,10.120000000000001,10.57,10.98,11.84,131.08,132.1,132.98,134.21,135.65,137.25,139.20000000000002,141.09,145.89000000000001,19.61,19.59,19.56,19.51,19.47,19.43,19.39,19.34,19.25,N/A,N/A -2012,3,7,19,30,101970,100780,99630,92.89,2.6,7.16,8.540000000000001,9.11,9.66,10.17,10.66,11.16,11.63,12.58,127.87,128.39000000000001,128.96,129.79,130.79,131.91,133.24,134.53,137.68,19.52,19.490000000000002,19.45,19.38,19.31,19.240000000000002,19.17,19.11,18.990000000000002,N/A,N/A -2012,3,7,20,30,101900,100710,99560,94.26,0,7.15,8.63,9.290000000000001,9.98,10.63,11.26,11.91,12.540000000000001,13.73,130.4,130.69,131.01,131.53,132.21,132.99,134.03,135.08,137.93,19.490000000000002,19.44,19.39,19.32,19.27,19.22,19.2,19.18,19.17,N/A,N/A -2012,3,7,21,30,101820,100630,99480,94.93,0,6.98,8.52,9.200000000000001,9.9,10.540000000000001,11.14,11.75,12.32,13.5,123.18,124.26,125.03,125.95,126.99000000000001,128.08,129.47,130.83,134.07,19.44,19.44,19.41,19.37,19.32,19.27,19.21,19.150000000000002,19.05,N/A,N/A -2012,3,7,22,30,101780,100600,99450,93.95,0,9.49,11.18,11.89,12.58,13.22,13.83,14.450000000000001,15.040000000000001,16.23,128.48,129.09,129.53,130.2,130.97,131.82,132.9,133.99,136.98,19.55,19.54,19.51,19.45,19.400000000000002,19.35,19.31,19.28,19.25,N/A,N/A -2012,3,7,23,30,101720,100540,99390,94.32000000000001,0,9.22,10.99,11.72,12.43,13.13,13.81,14.530000000000001,15.21,16.61,127.7,128.46,129.09,129.91,130.88,131.93,133.21,134.48,137.67000000000002,19.48,19.47,19.44,19.39,19.35,19.32,19.29,19.26,19.27,N/A,N/A -2012,3,8,0,30,101700,100510,99370,93.32000000000001,22,9.57,11.370000000000001,12.120000000000001,12.83,13.5,14.16,14.84,15.49,16.81,130.44,130.96,131.41,131.99,132.57,133.16,133.81,134.43,136.02,19.69,19.72,19.71,19.68,19.64,19.59,19.54,19.48,19.400000000000002,N/A,N/A -2012,3,8,1,30,101690,100510,99360,92.59,0.4,9.67,11.72,12.61,13.5,14.290000000000001,15.030000000000001,15.74,16.39,17.67,136.81,137.51,138.07,138.76,139.48,140.20000000000002,141.04,141.84,143.99,19.84,19.89,19.88,19.87,19.86,19.84,19.830000000000002,19.82,19.81,N/A,N/A -2012,3,8,2,30,101710,100530,99390,91.21000000000001,2.6,9.81,11.98,13,14.01,14.91,15.75,16.46,17.09,17.81,145.8,147.66,148.9,150.46,151.95000000000002,153.41,154.62,155.68,156.52,20.13,20.240000000000002,20.26,20.25,20.23,20.21,20.16,20.12,19.94,N/A,N/A -2012,3,8,3,30,101680,100500,99360,92.13,0,7.61,9.55,10.35,11.11,11.790000000000001,12.41,12.96,13.46,14.3,145.36,145.79,146.05,146.18,146.25,146.29,146.4,146.52,146.89000000000001,19.98,20.07,20.080000000000002,20.07,20.06,20.03,19.990000000000002,19.96,19.84,N/A,N/A -2012,3,8,4,30,101650,100470,99330,92.53,4.4,10.040000000000001,11.78,12.4,12.94,13.38,13.75,14.08,14.370000000000001,14.92,156.70000000000002,156.55,156.39000000000001,156.14000000000001,155.83,155.51,155.13,154.77,154.04,19.86,19.87,19.830000000000002,19.78,19.73,19.67,19.61,19.56,19.45,N/A,N/A -2012,3,8,5,30,101660,100480,99330,92.31,9.5,10.81,12.56,13.19,13.74,14.21,14.65,15.09,15.51,16.47,153.58,153.3,153.15,152.9,152.58,152.21,151.79,151.37,150.70000000000002,19.900000000000002,19.92,19.89,19.830000000000002,19.77,19.7,19.64,19.580000000000002,19.46,N/A,N/A -2012,3,8,6,30,101660,100480,99340,92.88,0,9.14,10.97,11.73,12.46,13.11,13.72,14.32,14.86,15.98,156.19,156.81,157.20000000000002,157.64000000000001,158.03,158.38,158.73,159.05,160.02,19.94,19.96,19.94,19.900000000000002,19.87,19.84,19.81,19.79,19.76,N/A,N/A -2012,3,8,7,30,101730,100540,99400,93.62,0,9.23,11.15,12.01,12.88,13.71,14.52,15.34,16.13,17.59,160.45000000000002,160.63,160.82,161.06,161.32,161.6,161.82,162.01,161.63,19.8,19.82,19.79,19.73,19.68,19.62,19.56,19.5,19.400000000000002,N/A,N/A -2012,3,8,8,30,101740,100550,99410,91.32000000000001,0,11,13.07,13.86,14.51,15.040000000000001,15.47,15.82,16.11,16.580000000000002,157.36,157.57,157.78,158.03,158.3,158.57,158.89000000000001,159.20000000000002,160.06,20.28,20.36,20.34,20.27,20.18,20.080000000000002,19.95,19.82,19.53,N/A,N/A -2012,3,8,9,30,101710,100530,99380,93.8,0,7.18,8.8,9.49,10.18,10.85,11.52,12.21,12.870000000000001,13.94,160.38,160.67000000000002,160.99,161.44,161.9,162.38,162.79,163.16,163.32,19.78,19.82,19.81,19.76,19.69,19.62,19.52,19.42,19.25,N/A,N/A -2012,3,8,10,30,101690,100510,99360,93.79,0,6.44,8.48,9.6,10.99,12.540000000000001,14.25,15.63,16.84,17.36,147.46,149.47,151,152.89000000000001,154.65,156.37,157.55,158.51,159.67000000000002,19.81,19.86,19.87,19.91,20.06,20.29,20.46,20.59,20.25,N/A,N/A -2012,3,8,11,30,101720,100540,99390,94.16,0,6.24,7.73,8.38,9.01,9.59,10.14,10.74,11.33,12.83,146.8,147.41,148.01,148.78,149.68,150.70000000000002,152.09,153.51,157.18,19.68,19.73,19.73,19.7,19.66,19.62,19.580000000000002,19.54,19.53,N/A,N/A -2012,3,8,12,30,101730,100540,99400,94.10000000000001,0,6.03,7.62,8.41,9.23,9.96,10.64,11.21,11.71,13.16,136.37,139.20000000000002,141.71,145.27,149.12,153.27,157.39000000000001,161.28,166.96,19.72,19.77,19.77,19.740000000000002,19.66,19.53,19.35,19.16,19.38,N/A,N/A -2012,3,8,13,30,101710,100530,99380,94.26,0,7.43,9.200000000000001,10.02,10.86,11.59,12.27,12.89,13.450000000000001,14.44,143.04,144.08,144.82,145.67000000000002,146.42000000000002,147.12,147.69,148.20000000000002,149.05,19.68,19.66,19.61,19.52,19.41,19.3,19.14,18.98,18.94,N/A,N/A -2012,3,8,14,30,101720,100540,99400,93.46000000000001,0,6.7,8.47,9.3,10.13,10.86,11.52,12.040000000000001,12.49,13.14,142.54,144.07,145.32,146.79,147.89000000000001,148.74,148.64000000000001,148.3,146.77,19.87,19.94,19.95,19.96,19.96,19.94,19.92,19.89,19.76,N/A,N/A -2012,3,8,15,30,101740,100560,99420,92.83,0,9.14,11.11,11.91,12.68,13.32,13.89,14.34,14.74,15.32,147.12,148.23,149.13,150.39000000000001,151.85,153.45000000000002,155.43,157.36,161.69,20.01,20.02,19.98,19.93,19.85,19.77,19.63,19.48,19.1,N/A,N/A -2012,3,8,16,30,101760,100580,99440,93.27,0,5.71,7.45,8.27,9.120000000000001,9.92,10.69,11.52,12.34,14.33,137.11,139.06,140.67000000000002,142.82,144.96,147.14000000000001,149.73,152.34,158.05,20.01,20.11,20.11,20.09,20.05,19.990000000000002,19.91,19.830000000000002,19.55,N/A,N/A -2012,3,8,17,30,101770,100590,99450,93.55,0,5.2700000000000005,6.8100000000000005,7.47,8.13,8.76,9.38,10.03,10.65,11.82,130.09,133.02,135.3,137.95000000000002,140.5,143,145.08,146.95000000000002,150.6,20,20.1,20.12,20.13,20.11,20.09,20.04,19.98,19.740000000000002,N/A,N/A -2012,3,8,18,30,101780,100600,99460,93.57000000000001,0,5.13,6.72,7.43,8.17,8.89,9.620000000000001,10.35,11.06,12.5,128.93,131.4,133.33,135.84,138.53,141.47,144.56,147.58,153.19,20.07,20.2,20.240000000000002,20.25,20.26,20.240000000000002,20.19,20.13,19.79,N/A,N/A -2012,3,8,19,30,101770,100590,99450,93.27,0,5.37,6.91,7.58,8.25,8.9,9.55,10.23,10.9,12.11,120.76,123.92,126.37,129.43,132.47,135.59,138.47,141.16,146.55,20.14,20.29,20.32,20.34,20.34,20.32,20.18,20.01,19.75,N/A,N/A -2012,3,8,20,30,101740,100560,99420,92.64,0,5.87,7.55,8.290000000000001,8.99,9.63,10.23,10.8,11.34,13.040000000000001,121.67,124.64,127.10000000000001,130.35,133.44,136.5,139.92000000000002,143.29,152.62,20.19,20.34,20.37,20.37,20.36,20.34,20.31,20.28,20.06,N/A,N/A -2012,3,8,21,30,101720,100540,99400,92.9,0,5.41,7.05,7.76,8.41,8.950000000000001,9.43,10.14,10.89,12.870000000000001,125.9,127.98,129.69,131.83,134.19,136.71,141.6,147.05,157.44,20.1,20.25,20.28,20.3,20.31,20.32,20.330000000000002,20.34,20.17,N/A,N/A -2012,3,8,22,30,101730,100550,99410,92.93,0,5.0200000000000005,6.8,7.58,8.31,8.83,9.200000000000001,10.120000000000001,11.22,11.82,115.84,118.72,120.85000000000001,123.37,125.83,128.25,141.06,157.12,161.8,20.09,20.28,20.330000000000002,20.37,20.38,20.39,20.42,20.46,20.330000000000002,N/A,N/A -2012,3,8,23,30,101730,100550,99410,92.34,0,5.94,7.69,8.370000000000001,8.96,9.78,10.790000000000001,12.33,14.05,14.22,118.44,122.27,125.42,129.85,136.78,145.82,152.86,159.39000000000001,165.53,20.16,20.35,20.41,20.46,20.48,20.48,20.42,20.35,20.27,N/A,N/A -2012,3,9,0,30,101770,100590,99450,93.35000000000001,0,4.64,6.640000000000001,7.66,8.69,9.38,9.83,9.97,10.02,10.5,113.85000000000001,120.77,126.86,135.71,142.95000000000002,148.86,155.18,161.04,162.5,19.97,20.23,20.31,20.37,20.400000000000002,20.400000000000002,20.42,20.44,20.25,N/A,N/A -2012,3,9,1,30,101800,100620,99480,93.45,0,4.1,6.82,8.14,8.8,8.94,8.76,9.38,10.19,10.81,108.83,126.98,137.49,140.89000000000001,145.57,150.68,159.86,169.91,172.91,20.01,20.41,20.490000000000002,20.42,20.35,20.31,20.2,20.09,19.85,N/A,N/A -2012,3,9,2,30,101830,100650,99500,93.67,0,4.15,6.7700000000000005,8.23,9.53,10.38,10.91,10.290000000000001,9.56,9.25,125.83,136.12,142.48,146,149.48,152.79,161.55,169.85,175.55,19.95,20.11,20.14,20.13,20.1,20.080000000000002,20.12,20.17,20.04,N/A,N/A -2012,3,9,3,30,101870,100690,99540,92.43,0,6.32,7.98,8.19,7.57,7.04,6.58,6.55,6.63,6.75,141.56,146.94,152.65,161.43,170.46,179.4,181.25,181.26,184.22,20.12,20.34,20.45,20.580000000000002,20.56,20.45,20.34,20.22,19.97,N/A,N/A -2012,3,9,4,30,101880,100690,99550,93.39,0,4.83,6.7700000000000005,7.03,6.390000000000001,6.04,5.83,5.61,5.42,5.14,151.12,160.56,166.91,172.08,175.14000000000001,177.1,179.76,182.26,188.16,19.95,20.17,20.3,20.46,20.45,20.330000000000002,20.22,20.13,19.88,N/A,N/A -2012,3,9,5,30,101920,100740,99600,95.75,0,2.54,3.68,4.03,4.29,4.47,4.59,4.6000000000000005,4.58,4.39,126.49000000000001,152.32,168.94,180.98,188.99,193.85,196.76,198.79,201.29,19.66,19.93,20.03,20.150000000000002,20.23,20.28,20.27,20.23,20,N/A,N/A -2012,3,9,6,30,101950,100760,99620,96.06,0,1.9000000000000001,2.58,2.67,2.65,2.62,2.58,2.54,2.49,2.4,179.13,187.81,193.84,200.09,205.73000000000002,210.88,215.32,219.13,225.42000000000002,19.7,19.82,19.87,20.01,20.07,20.080000000000002,20.02,19.94,19.69,N/A,N/A -2012,3,9,7,30,101990,100800,99660,96.63,0,1.62,2.0100000000000002,1.97,1.86,1.67,1.46,1.29,1.1500000000000001,1.1300000000000001,177.67000000000002,187.83,194.11,199.53,204.93,209.96,218.56,226.8,248.29,19.55,20.06,20.26,20.31,20.28,20.19,20.09,19.990000000000002,19.76,N/A,N/A -2012,3,9,8,30,102000,100810,99670,96.60000000000001,0,1.75,1.76,1.51,1.24,1.01,0.81,0.58,0.41000000000000003,0.16,155.47,160.53,160.81,156.91,150.65,143.74,132.46,123.97,47.480000000000004,19.580000000000002,20.1,20.3,20.35,20.31,20.21,20.080000000000002,19.95,19.67,N/A,N/A -2012,3,9,9,30,102030,100850,99700,97.33,0,0.93,1.08,1.07,1.1300000000000001,1.1500000000000001,1.16,1.11,1.06,1.06,195.05,220.67000000000002,236.64000000000001,253.84,267.71,279.07,290.06,299.6,313.33,19.39,19.47,19.490000000000002,19.57,19.6,19.61,19.56,19.51,19.3,N/A,N/A -2012,3,9,10,30,102020,100830,99680,98.04,0,0.81,0.74,0.5700000000000001,0.39,0.38,0.44,0.53,0.63,0.73,188.99,211.21,231.54,260.73,286.71,319.08,331.79,338.76,338.09000000000003,19.22,19.330000000000002,19.37,19.39,19.36,19.3,19.2,19.1,18.98,N/A,N/A -2012,3,9,11,30,102050,100860,99710,98.25,0,0.9400000000000001,0.8,0.56,0.33,0.36,0.6,0.8300000000000001,1.07,1.56,200.59,201.21,228.53,286.11,302.09000000000003,302.96,305.98,310.09000000000003,315.61,19.18,19.21,19.34,19.72,19.830000000000002,19.75,19.63,19.51,19.29,N/A,N/A -2012,3,9,12,30,102100,100890,99730,93.45,0,8.2,8.78,8.88,8.89,8.88,8.86,8.86,8.84,8.23,332.75,332.99,333.09000000000003,333.21,333.35,333.5,333.8,334.26,337.75,17.67,17.32,17.14,16.95,16.77,16.59,16.41,16.26,16.32,N/A,N/A -2012,3,9,13,30,102180,100970,99790,92.2,0.7000000000000001,10.22,10.98,11.11,11.120000000000001,11.09,11.06,11.01,10.97,10.74,6.7700000000000005,6.99,7.11,7.23,7.34,7.47,7.66,7.91,9.51,16.490000000000002,16.05,15.860000000000001,15.66,15.47,15.3,15.11,14.94,14.86,N/A,N/A -2012,3,9,14,30,102280,101060,99880,90.35000000000001,0.4,11.17,12.030000000000001,12.19,12.23,12.23,12.200000000000001,12.15,12.11,12.030000000000001,23.25,23.6,23.84,24.07,24.32,24.57,24.92,25.29,26.57,15.24,14.71,14.5,14.290000000000001,14.1,13.92,13.73,13.55,13.22,N/A,N/A -2012,3,9,15,30,102320,101110,99920,90.28,0,10.52,11.34,11.51,11.58,11.61,11.620000000000001,11.6,11.58,11.540000000000001,32.25,32.410000000000004,32.53,32.64,32.76,32.88,33.03,33.19,33.59,14.780000000000001,14.23,14,13.790000000000001,13.59,13.41,13.200000000000001,13.02,12.65,N/A,N/A -2012,3,9,16,30,102330,101110,99930,89.39,0,10.32,11.120000000000001,11.290000000000001,11.36,11.39,11.4,11.4,11.39,11.36,37.45,37.660000000000004,37.79,37.910000000000004,38.050000000000004,38.17,38.32,38.47,38.87,14.700000000000001,14.15,13.93,13.72,13.51,13.33,13.120000000000001,12.94,12.57,N/A,N/A -2012,3,9,17,30,102340,101120,99940,89.60000000000001,0.4,10.83,11.72,11.9,11.98,12.02,12.030000000000001,12.030000000000001,12.02,12,39.78,39.94,40.08,40.230000000000004,40.38,40.53,40.72,40.910000000000004,41.43,14.98,14.43,14.21,14,13.8,13.620000000000001,13.41,13.23,12.86,N/A,N/A -2012,3,9,18,30,102400,101180,99990,87.4,0,10.370000000000001,11.23,11.43,11.53,11.58,11.620000000000001,11.620000000000001,11.620000000000001,11.61,31.6,31.82,31.98,32.14,32.28,32.410000000000004,32.55,32.7,33,15.040000000000001,14.5,14.27,14.06,13.85,13.66,13.450000000000001,13.26,12.870000000000001,N/A,N/A -2012,3,9,19,30,102450,101230,100040,87.42,0,10.35,11.18,11.36,11.44,11.48,11.51,11.5,11.49,11.450000000000001,22.080000000000002,22.400000000000002,22.61,22.8,23,23.17,23.36,23.55,23.96,14.69,14.13,13.9,13.68,13.47,13.280000000000001,13.07,12.88,12.49,N/A,N/A -2012,3,9,20,30,102410,101190,100000,87.67,0,11.32,12.26,12.47,12.56,12.61,12.63,12.63,12.620000000000001,12.57,34.51,34.76,34.910000000000004,35.06,35.22,35.37,35.54,35.72,36.13,13.99,13.38,13.14,12.92,12.71,12.52,12.31,12.120000000000001,11.74,N/A,N/A -2012,3,9,21,30,102410,101180,99990,87.95,0,11.4,12.32,12.52,12.61,12.66,12.68,12.68,12.68,12.64,36.54,36.730000000000004,36.86,37,37.14,37.28,37.45,37.62,38.02,13.66,13.02,12.780000000000001,12.56,12.35,12.15,11.950000000000001,11.76,11.370000000000001,N/A,N/A -2012,3,9,22,30,102420,101200,100010,88.09,0,11.5,12.46,12.69,12.8,12.86,12.91,12.92,12.93,12.950000000000001,41,41.21,41.37,41.52,41.67,41.82,41.99,42.14,42.550000000000004,14.120000000000001,13.51,13.280000000000001,13.06,12.85,12.66,12.46,12.27,11.89,N/A,N/A -2012,3,9,23,30,102430,101210,100020,87.65,0,10.32,11.11,11.290000000000001,11.370000000000001,11.41,11.43,11.43,11.43,11.41,32.87,33.25,33.54,33.83,34.14,34.42,34.76,35.08,35.84,14.31,13.73,13.5,13.290000000000001,13.08,12.89,12.68,12.5,12.120000000000001,N/A,N/A -2012,3,10,0,30,102460,101230,100040,89.86,0,10.48,11.27,11.44,11.5,11.52,11.53,11.51,11.49,11.43,32.58,32.99,33.21,33.43,33.67,33.9,34.17,34.45,35.15,13.41,12.790000000000001,12.55,12.34,12.13,11.94,11.74,11.56,11.19,N/A,N/A -2012,3,10,1,30,102470,101240,100050,92.02,0.4,11.16,12.07,12.26,12.35,12.39,12.42,12.41,12.41,12.39,40.17,40.57,40.81,41.050000000000004,41.300000000000004,41.52,41.800000000000004,42.07,42.7,13.31,12.67,12.43,12.21,12,11.82,11.61,11.43,11.05,N/A,N/A -2012,3,10,2,30,102520,101290,100100,90.22,0,10.35,11.200000000000001,11.4,11.51,11.57,11.6,11.620000000000001,11.63,11.620000000000001,45.800000000000004,46.12,46.29,46.45,46.61,46.76,46.94,47.09,47.47,13.69,13.08,12.84,12.620000000000001,12.41,12.21,12.01,11.82,11.43,N/A,N/A -2012,3,10,3,30,102490,101270,100080,89.01,0,10.9,11.82,12.040000000000001,12.16,12.23,12.27,12.3,12.31,12.31,48.230000000000004,48.57,48.79,48.980000000000004,49.17,49.34,49.53,49.71,50.08,14.38,13.790000000000001,13.56,13.34,13.13,12.94,12.73,12.540000000000001,12.14,N/A,N/A -2012,3,10,4,30,102480,101250,100070,87.69,0,10.49,11.36,11.56,11.67,11.73,11.76,11.78,11.790000000000001,11.78,53.9,54.050000000000004,54.13,54.21,54.300000000000004,54.38,54.480000000000004,54.57,54.800000000000004,14.48,13.9,13.67,13.46,13.25,13.05,12.85,12.65,12.27,N/A,N/A -2012,3,10,5,30,102470,101250,100060,88.46000000000001,0,9.32,10.01,10.16,10.23,10.26,10.28,10.28,10.28,10.25,46.2,46.78,47.19,47.58,47.97,48.31,48.71,49.08,49.89,14.44,13.89,13.66,13.450000000000001,13.24,13.05,12.85,12.66,12.280000000000001,N/A,N/A -2012,3,10,6,30,102450,101230,100040,89.89,0,9.92,10.69,10.86,10.94,10.97,11,11,10.99,10.96,45.33,45.76,46.01,46.24,46.46,46.67,46.910000000000004,47.13,47.64,14.08,13.49,13.26,13.040000000000001,12.83,12.64,12.44,12.25,11.86,N/A,N/A -2012,3,10,7,30,102430,101210,100020,88.45,0,10.17,10.950000000000001,11.11,11.19,11.22,11.23,11.22,11.21,11.16,56.75,56.93,57.03,57.14,57.25,57.34,57.47,57.59,57.88,14.15,13.55,13.32,13.11,12.89,12.700000000000001,12.5,12.31,11.92,N/A,N/A -2012,3,10,8,30,102390,101160,99980,87.33,0,9.81,10.6,10.78,10.870000000000001,10.92,10.950000000000001,10.96,10.97,10.96,67.68,67.98,68.17,68.35000000000001,68.53,68.7,68.9,69.09,69.53,14.700000000000001,14.14,13.92,13.71,13.5,13.31,13.1,12.92,12.530000000000001,N/A,N/A -2012,3,10,9,30,102330,101110,99930,83.98,0,9.99,10.82,11,11.09,11.14,11.16,11.17,11.17,11.15,74.95,75.14,75.26,75.38,75.52,75.64,75.79,75.93,76.3,15.57,15.06,14.84,14.63,14.42,14.24,14.030000000000001,13.84,13.46,N/A,N/A -2012,3,10,10,30,102330,101120,99940,82.96000000000001,0,9.450000000000001,10.25,10.44,10.540000000000001,10.6,10.64,10.66,10.68,10.68,77.77,77.99,78.12,78.24,78.36,78.46000000000001,78.58,78.69,78.93,16.01,15.530000000000001,15.32,15.1,14.9,14.71,14.5,14.31,13.92,N/A,N/A -2012,3,10,11,30,102310,101100,99930,81.5,0,9.620000000000001,10.44,10.63,10.73,10.78,10.82,10.83,10.83,10.82,75.68,75.93,76.05,76.16,76.26,76.36,76.46000000000001,76.56,76.79,16.4,15.94,15.73,15.530000000000001,15.32,15.13,14.92,14.74,14.35,N/A,N/A -2012,3,10,12,30,102320,101110,99930,81.31,0,9.69,10.540000000000001,10.74,10.84,10.9,10.94,10.950000000000001,10.96,10.950000000000001,78.97,79.15,79.25,79.35000000000001,79.45,79.54,79.65,79.75,79.98,16.54,16.09,15.88,15.67,15.47,15.280000000000001,15.07,14.88,14.49,N/A,N/A -2012,3,10,13,30,102310,101100,99930,81.43,0,9.94,10.85,11.07,11.19,11.26,11.31,11.33,11.35,11.36,81.64,81.77,81.86,81.95,82.04,82.12,82.21000000000001,82.3,82.5,16.830000000000002,16.39,16.19,15.98,15.780000000000001,15.59,15.38,15.19,14.8,N/A,N/A -2012,3,10,14,30,102300,101100,99920,82.89,0,10.200000000000001,11.14,11.370000000000001,11.48,11.55,11.6,11.620000000000001,11.64,11.65,82.63,82.95,83.15,83.34,83.53,83.71000000000001,83.92,84.11,84.56,17.06,16.64,16.44,16.240000000000002,16.04,15.85,15.65,15.47,15.08,N/A,N/A -2012,3,10,15,30,102280,101080,99910,83.51,0,10.290000000000001,11.32,11.58,11.74,11.84,11.91,11.96,12,12.05,88.61,89.02,89.26,89.49,89.71000000000001,89.91,90.13,90.34,90.77,17.66,17.29,17.1,16.9,16.7,16.52,16.32,16.13,15.74,N/A,N/A -2012,3,10,16,30,102250,101050,99880,82.63,0,10.15,11.19,11.47,11.63,11.73,11.81,11.86,11.9,11.950000000000001,90.62,91,91.23,91.46000000000001,91.68,91.89,92.11,92.31,92.74,17.94,17.59,17.41,17.21,17.02,16.830000000000002,16.63,16.44,16.06,N/A,N/A -2012,3,10,17,30,102200,101000,99830,82.18,0,10.1,11.11,11.370000000000001,11.51,11.59,11.66,11.69,11.71,11.73,89.96000000000001,90.25,90.46000000000001,90.66,90.86,91.05,91.25,91.44,91.86,18.1,17.76,17.580000000000002,17.38,17.19,17,16.8,16.62,16.23,N/A,N/A -2012,3,10,18,30,102170,100970,99800,83.98,0,9.88,10.86,11.11,11.24,11.33,11.39,11.43,11.450000000000001,11.47,90.60000000000001,90.75,90.84,90.93,91.01,91.09,91.17,91.25,91.43,18.14,17.81,17.63,17.43,17.23,17.05,16.84,16.66,16.27,N/A,N/A -2012,3,10,19,30,102130,100930,99770,86.77,0,9.66,10.58,10.8,10.93,11,11.06,11.09,11.11,11.13,88.65,88.98,89.2,89.42,89.65,89.87,90.12,90.36,90.95,17.98,17.63,17.45,17.25,17.06,16.88,16.68,16.5,16.13,N/A,N/A -2012,3,10,20,30,102080,100880,99720,88.25,0,9.540000000000001,10.44,10.66,10.78,10.85,10.9,10.92,10.94,10.97,89.57000000000001,90,90.24,90.5,90.77,91.01,91.3,91.57000000000001,92.26,18.04,17.7,17.52,17.32,17.13,16.95,16.740000000000002,16.56,16.18,N/A,N/A -2012,3,10,21,30,102050,100850,99680,90.13,0,9.89,10.83,11.040000000000001,11.15,11.22,11.26,11.28,11.3,11.35,90.35000000000001,90.61,90.8,91.01,91.24,91.46000000000001,91.76,92.04,92.85000000000001,18.04,17.69,17.51,17.32,17.12,16.94,16.75,16.57,16.19,N/A,N/A -2012,3,10,22,30,102010,100810,99650,91.3,0,9.65,10.58,10.790000000000001,10.91,10.99,11.05,11.1,11.14,11.3,90.9,91.17,91.35000000000001,91.57000000000001,91.82000000000001,92.08,92.45,92.81,94.02,18.23,17.900000000000002,17.72,17.53,17.34,17.16,16.97,16.79,16.43,N/A,N/A -2012,3,10,23,30,101970,100780,99620,91.66,0,9.21,10.27,10.61,10.9,11.19,11.47,11.82,12.13,12.34,90.98,91.55,91.98,92.51,93.12,93.76,94.55,95.23,95.79,18.68,18.400000000000002,18.240000000000002,18.07,17.89,17.73,17.55,17.39,17.01,N/A,N/A -2012,3,11,0,30,101940,100750,99590,92.02,1.5,8.8,10.1,10.64,11.18,11.43,11.53,11.73,11.950000000000001,12.43,97.39,97.55,97.59,97.55,97.63,97.76,98.2,98.67,99.92,18.8,18.54,18.38,18.2,18.01,17.830000000000002,17.650000000000002,17.48,17.16,N/A,N/A -2012,3,11,1,30,101930,100740,99580,91.45,0,10.040000000000001,11.33,11.75,12.09,12.38,12.63,12.870000000000001,13.08,13.5,101.69,101.99000000000001,102.23,102.48,102.75,103.02,103.34,103.65,104.37,19.01,18.77,18.62,18.45,18.28,18.11,17.93,17.77,17.43,N/A,N/A -2012,3,11,2,30,101870,100680,99530,92.73,0.4,11.26,12.77,13.290000000000001,13.71,14.06,14.370000000000001,14.67,14.94,15.47,106.07000000000001,106.36,106.55,106.77,107,107.23,107.5,107.76,108.43,19.09,18.87,18.73,18.57,18.400000000000002,18.240000000000002,18.07,17.91,17.580000000000002,N/A,N/A -2012,3,11,3,30,101880,100690,99530,94.58,0.4,10.08,11.55,12.09,12.56,12.97,13.35,13.71,14.040000000000001,14.71,112.56,112.94,113.17,113.42,113.68,113.94,114.24000000000001,114.54,115.28,19.240000000000002,19.04,18.900000000000002,18.740000000000002,18.580000000000002,18.43,18.26,18.11,17.82,N/A,N/A -2012,3,11,4,30,101880,100690,99540,95.46000000000001,0,9.74,11.200000000000001,11.74,12.23,12.67,13.08,13.5,13.89,14.71,118.61,118.71000000000001,118.81,118.94,119.08,119.23,119.44,119.63,120.23,19.330000000000002,19.14,19.01,18.86,18.72,18.57,18.43,18.29,18.03,N/A,N/A -2012,3,11,5,30,101850,100660,99510,96.29,0,9.38,10.88,11.450000000000001,11.96,12.44,12.88,13.33,13.76,14.67,120.03,120.22,120.35000000000001,120.52,120.75,120.99000000000001,121.31,121.64,122.51,19.42,19.26,19.16,19.03,18.900000000000002,18.79,18.67,18.57,18.400000000000002,N/A,N/A -2012,3,11,6,30,101830,100640,99490,96.17,4.800000000000001,7.67,9,9.56,10.09,10.6,11.08,11.57,12.040000000000001,13.030000000000001,117.64,117.49000000000001,117.47,117.49000000000001,117.61,117.78,118.12,118.49000000000001,119.51,19.41,19.3,19.22,19.12,19,18.89,18.81,18.740000000000002,18.580000000000002,N/A,N/A -2012,3,11,7,30,101830,100640,99490,95.29,115,9.49,11.15,11.82,12.46,13.040000000000001,13.57,14.07,14.52,15.26,130.7,130.15,129.95,129.82,129.86,130.02,130.55,131.15,133.89000000000001,19.59,19.5,19.42,19.32,19.25,19.19,19.13,19.07,18.97,N/A,N/A -2012,3,11,8,30,101770,100580,99440,95.37,5.1000000000000005,8.22,9.86,10.6,11.370000000000001,12.16,12.97,13.81,14.620000000000001,16.05,125.52,127.23,128.58,130.49,132.69,135.09,137.69,140.21,145.06,19.580000000000002,19.55,19.53,19.53,19.54,19.57,19.6,19.63,19.72,N/A,N/A -2012,3,11,9,30,101750,100570,99420,93.56,0.4,8.96,10.71,11.44,12.15,12.86,13.58,14.35,15.09,16.54,140.19,140.12,140.16,140.25,140.44,140.71,141.09,141.48,142.15,19.95,19.96,19.93,19.89,19.84,19.8,19.77,19.75,19.77,N/A,N/A -2012,3,11,10,30,101740,100560,99420,93.77,11.700000000000001,8.61,10.28,10.94,11.56,12.120000000000001,12.64,13.16,13.65,14.66,134.74,134.9,135.15,135.53,135.92000000000002,136.31,136.72,137.12,138.24,19.92,19.92,19.88,19.830000000000002,19.78,19.72,19.650000000000002,19.59,19.44,N/A,N/A -2012,3,11,11,30,101740,100560,99410,93.59,1.8,7.640000000000001,9.59,10.51,11.48,12.39,13.25,14.07,14.83,16.18,112.38,117.65,121.09,124.51,127.41,129.98,132.35,134.54,138.76,19.96,19.990000000000002,19.97,19.93,19.89,19.85,19.8,19.76,19.66,N/A,N/A -2012,3,11,12,30,101730,100550,99410,93.22,0.7000000000000001,9.49,11.36,12.120000000000001,12.84,13.49,14.09,14.620000000000001,15.09,15.88,146.31,146.97,147.39000000000001,147.89000000000001,148.33,148.74,149.14000000000001,149.51,150.79,20.02,20.04,20.01,19.98,19.94,19.900000000000002,19.84,19.79,19.650000000000002,N/A,N/A -2012,3,11,13,30,101730,100550,99400,93.22,0.7000000000000001,10.040000000000001,12.01,12.81,13.620000000000001,14.370000000000001,15.07,15.790000000000001,16.48,17.92,151.04,151.77,152.22,152.79,153.4,154.02,154.77,155.5,157.36,20.03,20.04,20.01,19.97,19.92,19.87,19.81,19.77,19.69,N/A,N/A -2012,3,11,14,30,101810,100630,99480,93.14,0.4,7.92,9.77,10.59,11.43,12.200000000000001,12.94,13.61,14.23,15.34,160.26,160.32,160.36,160.5,160.77,161.13,161.65,162.19,163.89000000000001,20.07,20.1,20.09,20.080000000000002,20.06,20.05,20.03,20.01,19.91,N/A,N/A -2012,3,11,15,30,101830,100650,99500,92.97,31.900000000000002,7.68,9.450000000000001,10.21,10.86,11.41,11.91,12.38,12.81,13.64,167.54,167.89000000000001,168.04,167.94,167.8,167.63,167.45000000000002,167.27,166.81,20.13,20.31,20.35,20.34,20.3,20.25,20.18,20.12,19.97,N/A,N/A -2012,3,11,16,30,101810,100630,99480,92.59,4.4,8.02,9.91,10.83,11.77,12.57,13.280000000000001,13.89,14.44,15.42,159.84,161,161.87,163.14000000000001,164.44,165.82,167.03,168.12,168.9,20.2,20.31,20.34,20.36,20.36,20.35,20.31,20.27,20.22,N/A,N/A -2012,3,11,17,30,101820,100640,99490,92.64,0.7000000000000001,8.290000000000001,10.21,11.07,11.93,12.74,13.540000000000001,14.34,15.11,16.64,166.29,166.86,167.24,167.69,168.17000000000002,168.67000000000002,169.22,169.75,170.96,20.23,20.29,20.29,20.26,20.240000000000002,20.2,20.150000000000002,20.1,20.080000000000002,N/A,N/A -2012,3,11,18,30,101800,100620,99470,92.69,0,8.44,10.23,10.950000000000001,11.620000000000001,12.22,12.76,13.280000000000001,13.77,14.73,169.71,170.47,171.07,171.85,172.63,173.42000000000002,174.09,174.70000000000002,175.42000000000002,20.22,20.27,20.26,20.23,20.2,20.16,20.12,20.07,19.96,N/A,N/A -2012,3,11,19,30,101780,100600,99450,93.11,0,7.5200000000000005,9.31,10.1,10.9,11.65,12.36,13.040000000000001,13.68,14.71,174.22,173.71,173.51,173.46,173.57,173.78,174.12,174.46,175.27,20.19,20.23,20.22,20.21,20.21,20.23,20.23,20.23,20.150000000000002,N/A,N/A -2012,3,11,20,30,101760,100570,99420,97.97,6.6000000000000005,3.69,4.2700000000000005,4.48,4.72,4.88,4.98,5.09,5.19,5.54,243.11,240.21,237.46,233.64000000000001,228.64000000000001,223.16,217.35,211.92000000000002,201.29,19.16,19.080000000000002,19.06,19.06,19.080000000000002,19.12,19.12,19.12,19.080000000000002,N/A,N/A -2012,3,11,21,30,101760,100570,99420,96.46000000000001,73.60000000000001,5.41,6.73,7.390000000000001,8.03,8.43,8.69,8.9,9.08,9.44,226.72,225.56,224.98000000000002,224.44,223.74,223,222.06,221.13,218.70000000000002,19.17,19.21,19.26,19.34,19.36,19.35,19.32,19.28,19.19,N/A,N/A -2012,3,11,22,30,101720,100530,99390,96.86,30,3.16,4.43,5.23,6.19,6.86,7.33,7.84,8.34,9.28,183.5,184.52,185.76,186.58,186.72,186.39000000000001,185.71,184.97,183.48,19.1,19.3,19.51,19.85,20.080000000000002,20.240000000000002,20.36,20.47,20.53,N/A,N/A -2012,3,11,23,30,101730,100540,99390,96.87,2.2,4.13,5.09,5.59,6.18,6.6000000000000005,6.9,7.09,7.24,7.69,211.67000000000002,212.8,213.46,214.01,213.81,213.08,211.84,210.59,207.92000000000002,19.21,19.150000000000002,19.16,19.22,19.22,19.19,19.13,19.07,18.98,N/A,N/A -2012,3,12,0,30,101710,100520,99370,94.99,0,3.3000000000000003,4.23,4.74,5.38,5.96,6.48,6.73,6.9,7.23,218.78,221.18,222.92000000000002,225.07,225.84,225.68,223.99,222.09,217.20000000000002,19.07,18.97,18.94,18.97,19.03,19.09,19.06,19.01,18.89,N/A,N/A -2012,3,12,1,30,101750,100560,99410,94.02,0,2.71,3.7600000000000002,4.3,4.8500000000000005,5.28,5.63,6.03,6.42,7.29,205.55,208.48000000000002,209.89000000000001,210.58,209.51,207.26,204.8,202.4,198.55,19.12,19.16,19.21,19.29,19.35,19.400000000000002,19.46,19.51,19.59,N/A,N/A -2012,3,12,2,30,101750,100560,99410,93.96000000000001,0,3.7,4.57,5.01,5.54,5.9,6.15,6.45,6.74,7.42,202.12,205.82,207.77,209.08,208.43,206.81,204.68,202.63,199.11,19.07,19.04,19.080000000000002,19.150000000000002,19.16,19.13,19.12,19.12,19.12,N/A,N/A -2012,3,12,3,30,101760,100570,99430,94.2,0,3.23,3.92,4.23,4.57,4.83,5.0600000000000005,5.3500000000000005,5.64,6.36,184.12,188.89000000000001,192.41,196.67000000000002,198.58,199.13,198.07,196.76,195.75,19.04,18.94,18.94,19,19.02,19.01,19.07,19.14,19.25,N/A,N/A -2012,3,12,4,30,101760,100570,99420,95.18,0.4,3.45,4.16,4.67,5.53,6.11,6.49,6.83,7.140000000000001,7.7700000000000005,198.74,200.23000000000002,201.31,202.53,203.41,204.04,203.56,202.89000000000001,200.81,18.91,18.75,18.77,18.92,19.04,19.150000000000002,19.21,19.25,19.17,N/A,N/A -2012,3,12,5,30,101750,100560,99410,95.76,0,2.79,3.58,4.21,5.3500000000000005,6.0600000000000005,6.43,6.86,7.28,8.27,192.93,192.57,192.63,193.54,193.32,192.38,190.88,189.34,186.5,19.02,18.92,18.96,19.13,19.17,19.14,19.080000000000002,19.03,19.080000000000002,N/A,N/A -2012,3,12,6,30,101770,100580,99440,96.15,9.200000000000001,2.46,3.74,4.83,6.69,8.03,8.86,9.26,9.52,9.83,197.70000000000002,198.70000000000002,197.17000000000002,190.15,185.76,183.75,183.26,183.19,184.44,19.11,19.13,19.23,19.42,19.55,19.64,19.650000000000002,19.64,19.57,N/A,N/A -2012,3,12,7,30,101780,100590,99450,97.59,4.4,2.16,2.33,2.9,5.22,7.03,7.92,8.42,8.78,9.21,179.22,178.34,178.4,180.07,181.44,182.22,183.62,185.07,187.77,19.03,18.84,18.87,19.12,19.29,19.41,19.43,19.43,19.37,N/A,N/A -2012,3,12,8,30,101790,100610,99460,94.39,1.5,5.24,6.61,7.24,7.96,8.61,9.23,10,10.790000000000001,11.870000000000001,191.45000000000002,188.8,186.93,185.11,184.04,183.42000000000002,182.96,182.55,184.94,19.88,19.93,19.94,19.94,19.92,19.89,19.81,19.740000000000002,19.55,N/A,N/A -2012,3,12,9,30,101810,100620,99470,98.8,0.7000000000000001,2.5100000000000002,3.98,4.79,5.26,5.69,6.09,6.46,6.8,7.37,262,232.14000000000001,214.88,209.85,206.26,203.59,201.98000000000002,200.69,197.96,19,19.31,19.47,19.54,19.6,19.64,19.64,19.62,19.54,N/A,N/A -2012,3,12,10,30,101840,100650,99500,97.21000000000001,0,2.17,2.84,3.23,3.72,4.04,4.25,4.48,4.72,5.25,251.9,247.45000000000002,243.06,235.81,230.23000000000002,225.9,221.61,217.6,212.12,18.97,18.84,18.78,18.73,18.78,18.89,19.01,19.12,19.21,N/A,N/A -2012,3,12,11,30,101870,100680,99530,96.71000000000001,0,1.86,2.43,2.7800000000000002,3.27,3.62,3.85,4.11,4.36,4.97,241.11,240.36,239.33,237.39000000000001,234.43,230.87,227.14000000000001,223.61,217.76,18.97,18.81,18.75,18.7,18.7,18.72,18.76,18.79,18.900000000000002,N/A,N/A -2012,3,12,12,30,101900,100710,99560,97.62,0,0.75,1.32,1.6300000000000001,2.0100000000000002,2.38,2.74,3.09,3.42,4.09,216.52,226.68,231.9,231.86,230.17000000000002,227.28,224.73000000000002,222.34,218.76,18.94,18.830000000000002,18.82,18.88,18.95,19.04,19.07,19.1,19.06,N/A,N/A -2012,3,12,13,30,101930,100740,99590,97.61,0,0.5700000000000001,1.04,1.31,1.57,1.78,1.96,2.14,2.32,2.7600000000000002,242.95000000000002,252.15,257.65,259.22,256.92,252.05,246.56,241.18,231.81,18.97,18.82,18.77,18.75,18.76,18.79,18.82,18.830000000000002,18.830000000000002,N/A,N/A -2012,3,12,14,30,101990,100790,99640,96.75,0,1.6600000000000001,1.51,1.34,1.18,1.18,1.27,1.45,1.6600000000000001,2.13,142.94,150.96,158.32,169.13,179.71,190.98,196.48000000000002,200.68,202.85,19.05,18.94,18.92,18.95,18.97,18.990000000000002,18.97,18.94,18.85,N/A,N/A -2012,3,12,15,30,102000,100810,99660,97.11,0,1.62,1.7,1.75,2,2.2600000000000002,2.56,2.83,3.09,3.5700000000000003,146.08,162.20000000000002,170.41,177.58,181.37,183,183.94,184.70000000000002,186.14000000000001,19.18,19.26,19.330000000000002,19.42,19.46,19.46,19.41,19.34,19.18,N/A,N/A -2012,3,12,16,30,102020,100830,99680,98.01,0,1.68,1.69,1.68,1.82,2.02,2.25,2.5300000000000002,2.81,3.38,122.46000000000001,135.83,143.69,151.93,157.44,161.44,164.06,166.3,169.56,19.23,19.26,19.27,19.27,19.25,19.22,19.2,19.19,19.16,N/A,N/A -2012,3,12,17,30,102010,100830,99680,98.36,2.2,1.6500000000000001,2.48,2.8000000000000003,3.06,3.2800000000000002,3.47,3.66,3.83,4.24,150.61,157.65,162.81,167.8,171.65,174.71,177.49,180.02,184.68,19.54,19.6,19.62,19.61,19.59,19.580000000000002,19.56,19.55,19.52,N/A,N/A -2012,3,12,18,30,102020,100830,99690,95.51,0,4.41,5.64,6.0200000000000005,6.09,5.95,5.69,5.53,5.41,5.51,153.69,158.43,162.77,169.07,176.02,182.91,186.04,188.01,193.15,20.18,20.12,20.06,20,19.96,19.92,19.85,19.78,19.63,N/A,N/A -2012,3,12,19,30,102020,100830,99690,94.84,0,5.18,6.5,6.8500000000000005,6.87,6.76,6.57,6.47,6.390000000000001,6.28,161.22,165.71,169.44,174.35,178.07,180.97,182.52,183.62,186.04,20.19,20.16,20.12,20.07,20.04,20.02,19.91,19.78,19.580000000000002,N/A,N/A -2012,3,12,20,30,101990,100810,99660,95.39,0,3.54,5.1000000000000005,5.65,5.84,5.86,5.78,5.79,5.8100000000000005,6.03,173.98,175.28,177.54,182.09,185.21,187.33,188.71,189.79,191.18,20.22,20.18,20.14,20.13,20.080000000000002,20.01,19.900000000000002,19.78,19.56,N/A,N/A -2012,3,12,21,30,101970,100790,99640,95.34,0,3.5300000000000002,4.99,5.5200000000000005,5.7,5.73,5.64,5.64,5.66,5.87,169.21,173.85,177.52,181.86,184.98,187.20000000000002,188.39000000000001,189.20000000000002,189.95000000000002,20.26,20.1,20.04,20.150000000000002,20.16,20.11,20,19.88,19.64,N/A,N/A -2012,3,12,22,30,101950,100770,99620,94.97,0,3.5100000000000002,5.08,5.53,5.47,5.39,5.3,5.28,5.2700000000000005,5.38,158.76,166.79,172.32,177.32,180.21,181.78,182.14000000000001,182.14000000000001,182.04,20.35,20.45,20.38,20.150000000000002,20.03,19.98,19.98,19.990000000000002,19.88,N/A,N/A -2012,3,12,23,30,101940,100750,99610,94.89,0,3.9,5.29,5.73,5.8500000000000005,5.8500000000000005,5.8,5.82,5.86,5.89,156.24,162.75,167.41,172.33,175.36,177.18,177.87,178.21,179.28,20.06,20.18,20.17,20.080000000000002,20,19.93,19.87,19.8,19.76,N/A,N/A -2012,3,13,0,30,101930,100750,99600,94.62,0,4.8500000000000005,6.1000000000000005,6.4,6.38,6.28,6.15,6,5.87,5.94,153.85,160.13,164.79,169.99,172.95000000000002,174.53,174.76,174.70000000000002,175.73,19.92,19.98,19.95,19.84,19.75,19.67,19.75,19.85,19.81,N/A,N/A -2012,3,13,1,30,101950,100760,99620,95.98,0,3.18,5.04,5.73,5.78,5.8,5.78,5.69,5.6000000000000005,5.48,161.16,165.15,168.65,172.78,174.32,174.29,175.1,176.03,175.45000000000002,19.66,20.13,20.25,20.150000000000002,20.05,19.96,20.02,20.11,20.37,N/A,N/A -2012,3,13,2,30,101980,100800,99650,93.69,0,4.68,6.63,7.33,7.55,7.33,6.88,6.79,6.79,6.79,151.58,154.74,157.43,160.96,164.72,168.34,169.18,169.34,169.61,20.11,20.29,20.330000000000002,20.36,20.240000000000002,20.04,19.92,19.84,19.650000000000002,N/A,N/A -2012,3,13,3,30,101990,100810,99660,94,0,3.86,5.5600000000000005,6.41,7.33,7.7700000000000005,7.8500000000000005,7.8500000000000005,7.82,7.7,153.57,154.45000000000002,156.89000000000001,162.33,166,168.21,168.51,168.24,168.17000000000002,20.09,20.35,20.42,20.45,20.34,20.14,20.01,19.900000000000002,20.01,N/A,N/A -2012,3,13,4,30,102000,100810,99670,94.68,0.4,3.56,5.23,5.98,6.68,7.22,7.640000000000001,7.97,8.24,8.22,154.09,156.49,158.81,162.39000000000001,164.57,165.78,165.92000000000002,165.81,165.96,19.95,20.1,19.94,19.41,19.21,19.2,19.89,20.650000000000002,20.85,N/A,N/A -2012,3,13,5,30,102000,100810,99660,95.13,0.7000000000000001,5.18,6.57,7.24,8,8.64,9.200000000000001,9.56,9.83,9.870000000000001,168.61,168.04,168,168.62,169.66,170.93,172.06,173.05,172.49,19.73,19.71,19.62,19.43,19.22,18.990000000000002,19.03,19.13,19.830000000000002,N/A,N/A -2012,3,13,6,30,102020,100830,99680,97.29,0.4,3.58,4.72,5.26,5.8100000000000005,6.32,6.8100000000000005,7.2,7.53,7.9,166.4,166.54,167.41,169.48,173,177.5,180.77,183.52,183.07,19.81,19.82,19.79,19.68,19.51,19.3,19.6,20.01,20.36,N/A,N/A -2012,3,13,7,30,102050,100860,99710,97.33,0,3.38,4.76,5.45,6.05,6.61,7.13,7.42,7.63,7.74,166.94,167.26,166.33,163.63,163.21,164.12,166.69,169.42000000000002,171.92000000000002,19.82,19.72,19.650000000000002,19.57,19.44,19.28,19.12,18.98,19.52,N/A,N/A -2012,3,13,8,30,102040,100850,99700,97.68,0,5.98,6.99,7.3500000000000005,7.6000000000000005,7.71,7.73,7.61,7.49,7.67,174.55,174.65,174.99,175.82,177.5,179.65,181.52,183.02,181.20000000000002,19.72,19.6,19.51,19.38,19.26,19.150000000000002,19.11,19.080000000000002,18.990000000000002,N/A,N/A -2012,3,13,9,30,102050,100860,99700,97.32000000000001,0,4.97,5.98,6.3100000000000005,6.45,6.54,6.61,6.65,6.69,6.74,184.54,184.81,184.65,184.08,183.47,182.83,181.93,181.07,179.83,19.79,19.64,19.53,19.37,19.240000000000002,19.13,19.02,18.92,18.71,N/A,N/A -2012,3,13,10,30,102050,100860,99710,97.71000000000001,0.4,3.1,3.85,4.11,4.3100000000000005,4.84,5.63,6.22,6.73,6.94,164.95000000000002,170.38,173.41,175.68,177.29,178.59,178.59,178.25,176.89000000000001,19.73,19.63,19.56,19.47,19.36,19.25,19.13,19.03,18.87,N/A,N/A -2012,3,13,11,30,102060,100880,99730,96.63,0.4,4.34,6.13,6.92,7.46,7.68,7.68,7.61,7.5200000000000005,7.44,185.20000000000002,185.76,186.05,186.1,185.83,185.36,184.70000000000002,184.09,183.47,19.95,19.92,19.87,19.77,19.66,19.56,19.44,19.330000000000002,19.11,N/A,N/A -2012,3,13,12,30,102080,100890,99740,97.71000000000001,0.4,3.65,4.7700000000000005,5.22,5.5200000000000005,5.62,5.6000000000000005,5.53,5.46,5.37,160.25,164.87,168.13,171.6,173.86,175.33,176.41,177.3,179.01,19.55,19.6,19.66,19.75,19.79,19.8,19.77,19.73,19.54,N/A,N/A -2012,3,13,13,30,102090,100900,99750,99.23,0,2.9,3.52,3.81,3.99,4.14,4.2700000000000005,4.43,4.59,4.82,148.86,158.52,165.87,174.31,179.28,182.12,183.22,183.83,182.06,19.2,18.57,18.46,18.72,19.3,20.06,20.18,20.17,19.95,N/A,N/A -2012,3,13,14,30,102150,100960,99810,99.27,0,3.29,3.6,3.72,3.85,3.92,3.95,4.12,4.32,4.82,151.17000000000002,153.71,155.23,156.63,157.20000000000002,157.33,162.31,167.79,174.85,19.17,18.91,18.77,18.63,18.51,18.41,18.67,18.98,19.740000000000002,N/A,N/A -2012,3,13,15,30,102180,100990,99830,99.32000000000001,0,3.81,4.16,4.26,4.32,4.37,4.42,4.48,4.55,4.93,158.74,158.41,158.17000000000002,157.97,157.69,157.36,157.56,157.91,159.67000000000002,19.2,19.05,18.97,18.88,18.79,18.71,18.63,18.55,18.42,N/A,N/A -2012,3,13,16,30,102190,101000,99850,99.13,0,1.94,2.99,3.64,4.3,4.78,5.13,5.51,5.88,6.47,143.96,147.62,151.63,157.63,161.87,164.89000000000001,167.22,169.27,170.84,19.54,19.580000000000002,19.650000000000002,19.73,19.73,19.68,19.66,19.650000000000002,19.490000000000002,N/A,N/A -2012,3,13,17,30,102190,101000,99850,99.06,0,2.0100000000000002,2.64,2.93,3.23,3.5,3.75,3.99,4.21,4.65,107.55,135.59,150.12,157.43,161,161.94,161.91,161.70000000000002,162.56,19.79,19.69,19.68,19.69,19.69,19.69,19.66,19.62,19.62,N/A,N/A -2012,3,13,18,30,102190,101000,99850,98.96000000000001,0,2.68,3.48,3.8000000000000003,4,4.05,4.01,3.98,3.96,4.05,100.46000000000001,104.62,111.29,124.32000000000001,130.97,133.62,135.57,137.19,144.27,20.03,19.96,19.91,19.82,19.73,19.64,19.55,19.47,19.39,N/A,N/A -2012,3,13,19,30,102170,100990,99840,98.99000000000001,0,2.91,3.62,3.89,4.05,4.3,4.61,4.89,5.13,5.5600000000000005,100.66,103.32000000000001,110.66,127.10000000000001,136.6,141.91,143.72,144.58,146.08,20.25,20.06,19.97,19.88,20.06,20.39,20.46,20.47,20.35,N/A,N/A -2012,3,13,20,30,102140,100950,99810,99.24000000000001,0,4.1,4.41,4.49,4.5600000000000005,4.71,4.91,5.14,5.36,5.69,106.49000000000001,108.21000000000001,109.55,111.3,116.22,122.87,128.56,133.66,140.91,20.06,19.88,19.8,19.71,19.82,20.02,20.18,20.31,20.32,N/A,N/A -2012,3,13,21,30,102110,100920,99780,99.25,0,3.91,4.4,4.74,5.3500000000000005,5.7700000000000005,6.05,6.22,6.3500000000000005,6.5200000000000005,113.95,114.18,115.8,120.19,124.11,127.62,130.12,132.19,136.27,20.06,19.830000000000002,19.81,19.97,20.06,20.11,20.09,20.06,19.91,N/A,N/A -2012,3,13,22,30,102060,100880,99730,96.35000000000001,0,4.49,5.5600000000000005,5.96,6.34,6.76,7.22,7.6000000000000005,7.930000000000001,8.01,112.53,114.42,116.38,119.61,125.16,132.22,138.34,143.84,147.02,20.43,20.36,20.31,20.25,20.240000000000002,20.26,20.28,20.3,20.04,N/A,N/A -2012,3,13,23,30,102040,100860,99710,95.54,0,4.89,6.21,6.79,7.36,7.890000000000001,8.39,8.58,8.68,8.6,114.21000000000001,116.93,119.84,124.63000000000001,129.7,134.96,139.79,144.09,146.97,20.26,20.25,20.19,20.09,19.86,19.57,19.76,20.05,20.150000000000002,N/A,N/A -2012,3,14,0,30,102020,100830,99680,94.27,0,6.09,7.63,8.31,8.98,9.32,9.450000000000001,9.36,9.24,9.040000000000001,123.29,129.62,134.03,138.88,141.98,143.85,145.18,146.24,148.52,20.43,20.400000000000002,20.3,20.09,19.87,19.64,19.45,19.29,19.01,N/A,N/A -2012,3,14,1,30,102030,100840,99690,96.03,0,7.140000000000001,8.620000000000001,9.11,9.33,9.4,9.4,9.39,9.370000000000001,9.5,133.64000000000001,137.17000000000002,139.06,140.52,141.54,142.28,142.82,143.27,144.23,20.04,19.89,19.79,19.66,19.54,19.43,19.28,19.13,18.830000000000002,N/A,N/A -2012,3,14,2,30,102040,100850,99700,95.64,0,7.3100000000000005,8.81,9.370000000000001,9.77,10,10.120000000000001,10.07,9.98,9.74,128.44,131.5,133.62,136.1,138.64000000000001,141.12,143.77,146.19,150.35,20.12,20.02,19.92,19.78,19.62,19.47,19.330000000000002,19.21,18.95,N/A,N/A -2012,3,14,3,30,102040,100850,99700,97.31,0,5.34,6.29,6.67,7.0600000000000005,7.43,7.79,8.17,8.53,9.11,136.71,138.81,140.38,142.32,143.83,145.08,146.20000000000002,147.23,150.27,19.79,19.66,19.56,19.42,19.28,19.150000000000002,19.150000000000002,19.19,19.18,N/A,N/A -2012,3,14,4,30,102030,100850,99700,97.17,0,6,7.03,7.38,7.66,7.8500000000000005,7.99,8.21,8.44,9.63,132.37,134.33,135.9,138.01,140.37,142.75,145.24,147.52,148.98,19.81,19.72,19.67,19.62,19.55,19.48,19.35,19.22,18.92,N/A,N/A -2012,3,14,5,30,102020,100830,99670,98.31,0,5.23,6.3100000000000005,6.87,7.54,8.28,9.08,9.71,10.26,10.870000000000001,136.38,135.83,135.97,136.83,139.22,142.62,147.92000000000002,153.31,159.96,19.59,19.490000000000002,19.400000000000002,19.240000000000002,18.98,18.67,18.3,17.96,18.48,N/A,N/A -2012,3,14,6,30,102040,100850,99700,99.26,0,7.4,8.41,8.75,8.93,9.06,9.15,9.21,9.26,9.35,170.6,169.44,168.43,167.14000000000001,165.76,164.38,163.14000000000001,162.05,160.28,19.150000000000002,18.93,18.830000000000002,18.740000000000002,18.66,18.580000000000002,18.490000000000002,18.41,18.21,N/A,N/A -2012,3,14,7,30,102070,100880,99730,98.85000000000001,0,5.92,6.74,7.05,7.34,7.62,7.9,8.18,8.45,9.040000000000001,159.97,159.32,159.02,158.78,158.71,158.74,158.88,159.02,159.62,19.66,19.51,19.43,19.330000000000002,19.23,19.13,19.01,18.900000000000002,18.61,N/A,N/A -2012,3,14,8,30,102040,100850,99700,97.99000000000001,0,4.86,5.69,6.07,6.47,6.93,7.43,7.91,8.36,8.700000000000001,155.8,157.49,159.20000000000002,162,165.04,168.23,169.71,170.68,170.05,19.82,19.68,19.61,19.54,19.57,19.650000000000002,19.75,19.85,19.66,N/A,N/A -2012,3,14,9,30,102040,100850,99700,99.05,0.7000000000000001,4.26,5.13,5.73,6.71,7.32,7.65,7.76,7.8100000000000005,8.01,123.88000000000001,128.73,132.72,138.37,142.16,144.56,147,149.18,152.49,19.6,19.27,19.04,18.73,18.96,19.490000000000002,19.85,20.13,20.150000000000002,N/A,N/A -2012,3,14,10,30,102040,100850,99700,99.05,1.8,4.04,4.74,5.18,5.79,6.74,7.99,9.07,10.07,10.73,114.59,117.60000000000001,120.60000000000001,125.3,131.61,139.41,144.73,149.35,152.20000000000002,19.52,19.330000000000002,19.23,19.150000000000002,19.21,19.34,19.66,19.990000000000002,20.21,N/A,N/A -2012,3,14,11,30,102050,100860,99720,98.88,1.5,4.95,5.73,6.25,7.07,7.72,8.26,8.55,8.76,9,127.34,130.44,133.61,138.77,142.51,145.31,147.20000000000002,148.74,152.27,19.51,19.35,19.36,19.48,19.71,19.98,20.03,20.03,19.990000000000002,N/A,N/A -2012,3,14,12,30,102070,100880,99740,98.45,0,3.77,4.87,5.58,6.55,7.5200000000000005,8.5,8.9,9.13,9.31,121.88,125.24000000000001,128.1,132.09,137.23,143.19,146.11,148.12,152.07,19.73,19.6,19.62,19.77,19.93,20.11,20.09,20.05,19.85,N/A,N/A -2012,3,14,13,30,102110,100920,99770,97.71000000000001,0.4,4.72,5.7700000000000005,6.3500000000000005,7.140000000000001,7.95,8.790000000000001,9.07,9.22,9.25,114.15,117.47,121.62,129.16,136.58,143.91,146.49,147.83,149.45000000000002,19.88,19.8,19.8,19.87,20.03,20.23,20.18,20.09,19.93,N/A,N/A -2012,3,14,14,30,102160,100970,99820,96.65,0,4.38,5.8,6.55,7.43,8.16,8.78,9.040000000000001,9.200000000000001,9.49,140.8,143.18,145.38,148.61,152.29,156.13,158.38,160.09,162.11,20.16,20.11,20.06,19.990000000000002,20,20.04,20.330000000000002,20.64,20.62,N/A,N/A -2012,3,14,15,30,102170,100980,99830,96.99000000000001,0,4.66,5.87,6.46,7.12,7.38,7.38,7.390000000000001,7.390000000000001,7.5600000000000005,118.74000000000001,120.49000000000001,122.18,124.75,131.84,141.44,145.77,148.57,154.05,20.13,20.09,20.07,20.04,20.09,20.19,20.18,20.150000000000002,20.14,N/A,N/A -2012,3,14,16,30,102200,101010,99860,98.57000000000001,0,4.97,5.88,6.23,6.51,6.69,6.8100000000000005,6.88,6.93,7.1000000000000005,106.72,108.86,112.22,119,127.48,136.69,140.98,143.96,149.13,19.98,19.82,19.76,19.73,19.78,19.87,19.96,20.04,20.16,N/A,N/A -2012,3,14,17,30,102190,101000,99850,98.14,0,4.64,5.59,6.01,6.42,6.65,6.7700000000000005,6.8,6.8100000000000005,6.96,106.87,111.01,115.78,123.68,132.89000000000001,142.5,146.06,147.9,151.92000000000002,20.16,20.07,20.02,19.97,20.07,20.26,20.32,20.35,20.25,N/A,N/A -2012,3,14,18,30,102190,101000,99850,97.43,0,5.18,6.2,6.62,7.04,7.3100000000000005,7.48,7.21,6.88,6.58,110.4,112.49000000000001,115.16,119.88,127.77,137.36,141.13,143.16,146.47,20.39,20.29,20.21,20.09,20.12,20.240000000000002,20.42,20.6,20.650000000000002,N/A,N/A -2012,3,14,19,30,102190,101010,99860,96.45,0,5.88,7.09,7.6000000000000005,8.120000000000001,8.49,8.76,8.75,8.68,8.370000000000001,118.97,119.9,120.86,122.41,126.87,132.85,136.87,140.04,141.93,20.5,20.400000000000002,20.330000000000002,20.22,20.2,20.240000000000002,20.27,20.31,20.19,N/A,N/A -2012,3,14,20,30,102160,100970,99830,96.51,0,5.22,6.45,6.99,7.57,7.87,8,7.9,7.76,7.44,115.85000000000001,117.74000000000001,120.35000000000001,125.07000000000001,131.87,139.62,142.19,143.43,145.69,20.43,20.35,20.27,20.14,20.330000000000002,20.67,20.650000000000002,20.54,20.47,N/A,N/A -2012,3,14,21,30,102140,100950,99800,96.22,0,5.36,6.6000000000000005,7.140000000000001,7.68,8.2,8.71,8.85,8.89,8.57,113.66,115.12,116.72,119.4,124.18,130.36,135.7,140.32,140.94,20.37,20.29,20.2,20.03,20.1,20.31,20.47,20.62,20.46,N/A,N/A -2012,3,14,22,30,102110,100920,99780,95.19,0,5.89,7.3500000000000005,8,8.65,9.23,9.74,10.01,10.19,9.86,112.33,113.76,114.89,116.33,118.39,120.8,125.85000000000001,131.09,140.99,20.44,20.45,20.45,20.44,20.400000000000002,20.36,20.12,19.86,19.580000000000002,N/A,N/A -2012,3,14,23,30,102110,100930,99780,94.9,0,6.97,8.78,9.51,10.03,10.26,10.32,10.26,10.17,10.06,122.39,125.04,126.86,128.88,131.05,133.24,135.6,137.76,140.61,20.45,20.38,20.28,20.12,19.96,19.81,19.66,19.52,19.14,N/A,N/A -2012,3,15,0,30,102080,100890,99750,94.78,0,6.67,8.42,9.15,9.77,10.1,10.26,10.17,10.040000000000001,9.56,115.92,119.18,121.75,125.16,128.75,132.35,135.66,138.59,145.03,20.48,20.42,20.330000000000002,20.18,20.06,19.95,19.95,19.97,19.91,N/A,N/A -2012,3,15,1,30,102090,100900,99760,95.37,0,4.7,5.95,6.49,7.07,7.59,8.09,8.44,8.73,9.620000000000001,122.27,119.83,118.71000000000001,118.16,118.85000000000001,120.31,123.10000000000001,126.01,135.94,20.38,20.38,20.330000000000002,20.25,20.16,20.07,19.95,19.84,19.46,N/A,N/A -2012,3,15,2,30,102100,100920,99770,95.86,0,5.9,7.140000000000001,7.68,8.19,8.700000000000001,9.21,9.88,10.56,11.27,124.46000000000001,124.15,124,123.97,124.63000000000001,125.73,129.73,134.21,140.24,20.240000000000002,20.150000000000002,20.04,19.87,19.61,19.31,18.97,18.68,19.830000000000002,N/A,N/A -2012,3,15,3,30,102100,100910,99760,97.89,0.4,5.82,6.94,7.49,8.120000000000001,8.83,9.6,10.53,11.44,11.86,123.57000000000001,124.14,124.72,125.64,127.38000000000001,129.64000000000001,133.98,138.53,145.24,19.830000000000002,19.650000000000002,19.51,19.29,19.01,18.69,18.94,19.25,20.53,N/A,N/A -2012,3,15,4,30,102090,100900,99750,98.4,0,5.97,7.01,7.5,8.05,8.700000000000001,9.41,10.32,11.22,12.02,127.4,127.98,128.53,129.31,130.66,132.36,136.06,140.02,148.29,19.740000000000002,19.59,19.490000000000002,19.36,19.18,18.97,18.92,18.92,20.490000000000002,N/A,N/A -2012,3,15,5,30,102090,100900,99750,98.34,0,5.91,6.99,7.51,8.13,8.85,9.64,10.61,11.58,12.540000000000001,131.66,132.53,133.27,134.35,135.81,137.5,140.36,143.44,150.48,19.75,19.59,19.48,19.35,19.2,19.06,19.48,19.96,20.34,N/A,N/A -2012,3,15,6,30,102090,100900,99750,96.64,0,6.16,7.140000000000001,7.57,8.01,8.48,8.96,9.56,10.17,11.67,137.04,137.63,138.11,138.78,139.6,140.52,141.84,143.21,148.18,20.21,20.02,19.91,19.8,19.7,19.62,19.580000000000002,19.56,19.75,N/A,N/A -2012,3,15,7,30,102110,100920,99770,95.94,0,6.140000000000001,7.15,7.57,8,8.42,8.84,9.33,9.8,11.06,138.81,139.38,139.84,140.45000000000002,141.16,141.93,142.97,144.02,147.70000000000002,20.34,20.16,20.04,19.91,19.8,19.69,19.61,19.54,19.57,N/A,N/A -2012,3,15,8,30,102090,100910,99760,96.06,0,5.73,6.75,7.18,7.63,8.07,8.52,9.02,9.52,10.64,140.28,140.9,141.37,141.98,142.71,143.5,144.55,145.61,149.33,20.34,20.16,20.06,19.93,19.82,19.72,19.64,19.580000000000002,19.59,N/A,N/A -2012,3,15,9,30,102110,100920,99770,95.57000000000001,0,5.57,6.62,7.08,7.5600000000000005,8.03,8.51,9.040000000000001,9.56,10.8,143.71,144.34,144.86,145.57,146.41,147.35,148.55,149.73,153.33,20.41,20.26,20.16,20.06,19.97,19.89,19.830000000000002,19.78,19.82,N/A,N/A -2012,3,15,10,30,102120,100930,99780,95.54,0,5.2700000000000005,6.29,6.74,7.21,7.67,8.14,8.63,9.1,10.1,139.15,140.07,140.82,141.78,142.88,144.05,145.4,146.73,150.25,20.400000000000002,20.25,20.16,20.06,19.97,19.88,19.81,19.75,19.68,N/A,N/A -2012,3,15,11,30,102160,100970,99820,95.32000000000001,0,5.14,6.18,6.640000000000001,7.140000000000001,7.65,8.15,8.72,9.27,10.33,138.11,139.28,140.26,141.56,143.05,144.65,146.65,148.67000000000002,153.9,20.43,20.31,20.23,20.150000000000002,20.080000000000002,20.02,19.990000000000002,19.98,20.02,N/A,N/A -2012,3,15,12,30,102180,100990,99840,95.44,0,4.84,5.88,6.37,6.890000000000001,7.42,7.94,8.51,9.06,9.97,135.02,136.33,137.45000000000002,139,140.81,142.79,145.63,148.56,157.03,20.43,20.32,20.26,20.19,20.150000000000002,20.11,20.12,20.14,20.2,N/A,N/A -2012,3,15,13,30,102220,101030,99880,95.37,0,4.96,5.99,6.47,6.99,7.5,8.02,8.540000000000001,9.03,9.65,130.01,131.52,132.76,134.52,136.5,138.61,141.36,144.17000000000002,153.34,20.46,20.34,20.28,20.21,20.16,20.12,20.1,20.09,20.09,N/A,N/A -2012,3,15,14,30,102260,101080,99930,95.7,0,5.18,6.22,6.69,7.21,7.71,8.2,8.65,9.05,9.6,131.53,133.01,134.28,136.03,138.02,140.17000000000002,142.84,145.49,152.76,20.54,20.42,20.35,20.27,20.21,20.16,20.11,20.05,19.95,N/A,N/A -2012,3,15,15,30,102280,101090,99940,97.15,0,5.41,6.41,6.84,7.3100000000000005,7.7700000000000005,8.25,8.73,9.200000000000001,9.91,135.21,136.37,137.34,138.73,140.44,142.37,144.89000000000001,147.4,153.85,20.61,20.45,20.35,20.25,20.17,20.09,20.04,20,19.91,N/A,N/A -2012,3,15,16,30,102300,101110,99960,96.87,0,5.49,6.44,6.84,7.25,7.66,8.05,8.47,8.86,9.63,139.99,141.04,141.86,142.96,144.19,145.47,147,148.48,151.84,20.740000000000002,20.56,20.45,20.32,20.2,20.09,19.990000000000002,19.89,19.7,N/A,N/A -2012,3,15,17,30,102310,101120,99970,96.25,0,5.28,6.1000000000000005,6.45,6.82,7.21,7.6000000000000005,8.09,8.58,9.57,143.47,144.5,145.38,146.64000000000001,148.20000000000002,149.98,152.32,154.72,160.05,20.88,20.67,20.56,20.44,20.330000000000002,20.240000000000002,20.17,20.12,20.080000000000002,N/A,N/A -2012,3,15,18,30,102280,101100,99950,94.13,0,5.5,6.26,6.54,6.8100000000000005,7.08,7.34,7.63,7.91,8.66,142.95000000000002,143.55,144.07,144.81,145.74,146.78,148.21,149.63,153.9,21.080000000000002,20.87,20.740000000000002,20.6,20.47,20.34,20.22,20.12,19.97,N/A,N/A -2012,3,15,19,30,102270,101090,99940,94.87,0,5.11,5.79,6.04,6.29,6.5200000000000005,6.76,7.03,7.29,8.01,136.61,137.17000000000002,137.64000000000001,138.26,139.01,139.85,141.1,142.36,148.62,21.12,20.89,20.75,20.59,20.44,20.3,20.16,20.04,19.91,N/A,N/A -2012,3,15,20,30,102250,101060,99910,96.46000000000001,0,5.0200000000000005,5.76,6.04,6.32,6.58,6.84,7.13,7.4,7.94,128.55,129.54,130.32,131.35,132.55,133.89000000000001,135.94,138.06,147.33,21.13,20.91,20.78,20.63,20.490000000000002,20.35,20.23,20.13,20.09,N/A,N/A -2012,3,15,21,30,102200,101010,99870,97.66,0,5.01,5.92,6.3,6.67,7.0200000000000005,7.34,7.65,7.930000000000001,8.38,131.63,132.52,133.21,134.2,135.38,136.70000000000002,138.57,140.47,146.68,21.18,21,20.900000000000002,20.77,20.66,20.54,20.44,20.35,20.2,N/A,N/A -2012,3,15,22,30,102140,100950,99810,95.65,0,5.24,6.5200000000000005,7.05,7.53,7.930000000000001,8.290000000000001,8.59,8.85,9.22,142,143.28,144.13,145.08,145.94,146.73,147.5,148.20000000000002,150.31,21.17,21.1,21.03,20.93,20.81,20.68,20.53,20.38,19.93,N/A,N/A -2012,3,15,23,30,102130,100940,99790,95.53,0,5.45,6.96,7.67,8.370000000000001,8.88,9.25,9.44,9.56,9.6,147.34,151.59,154.37,157.21,158.76,159.39000000000001,159.21,158.81,158.56,20.92,20.900000000000002,20.8,20.56,20.29,19.990000000000002,19.830000000000002,19.71,19.61,N/A,N/A -2012,3,16,0,30,102080,100900,99750,96.67,0,3.96,5.15,5.69,6.23,6.72,7.19,7.66,8.11,8.41,142.73,144.51,145.83,147.34,149.13,151.1,153.68,156.28,158.92000000000002,20.67,20.64,20.61,20.57,20.52,20.46,20.36,20.27,19.96,N/A,N/A -2012,3,16,1,30,102090,100900,99750,97.44,0,4.21,5.13,5.48,5.8,6.19,6.640000000000001,7.16,7.69,8.07,143.71,143.55,143.51,143.52,144.34,145.74,147.71,149.75,151.52,20.490000000000002,20.42,20.37,20.31,20.27,20.22,20.150000000000002,20.09,19.91,N/A,N/A -2012,3,16,2,30,102100,100910,99760,97.64,0,4.8500000000000005,5.97,6.5,7.12,7.72,8.32,8.81,9.25,9.43,135.26,137.4,138.99,141,142.99,145,147.35,149.65,155.15,20.45,20.34,20.28,20.2,20.16,20.150000000000002,20.150000000000002,20.16,20.080000000000002,N/A,N/A -2012,3,16,3,30,102100,100910,99770,97.3,0,4.82,5.93,6.45,7,7.53,8.05,8.55,9.01,9.78,137.42000000000002,138.73,139.73,140.87,141.99,143.1,144.39000000000001,145.65,149.20000000000002,20.51,20.38,20.3,20.21,20.12,20.04,19.95,19.88,19.73,N/A,N/A -2012,3,16,4,30,102100,100910,99760,97.22,0,5.66,6.76,7.25,7.78,8.28,8.78,9.290000000000001,9.77,10.63,140.88,141.84,142.53,143.41,144.3,145.19,146.14000000000001,147.06,149.27,20.44,20.3,20.22,20.12,20.02,19.94,19.85,19.78,19.62,N/A,N/A -2012,3,16,5,30,102080,100890,99740,97,0,5.51,6.63,7.140000000000001,7.67,8.2,8.73,9.28,9.8,10.71,148.76,149.52,150.12,150.9,151.76,152.68,153.76,154.82,157.71,20.46,20.34,20.25,20.16,20.07,19.990000000000002,19.92,19.85,19.77,N/A,N/A -2012,3,16,6,30,102110,100930,99780,96.73,0,6,6.87,7.21,7.55,7.88,8.2,8.57,8.92,9.71,144.19,144.85,145.35,145.99,146.68,147.41,148.28,149.13,151.11,20.580000000000002,20.37,20.240000000000002,20.09,19.96,19.830000000000002,19.7,19.59,19.38,N/A,N/A -2012,3,16,7,30,102110,100930,99780,96.33,0,5.59,6.49,6.84,7.18,7.51,7.82,8.15,8.47,9.19,156.19,156.42000000000002,156.59,156.83,157.14000000000001,157.48,157.94,158.41,159.67000000000002,20.72,20.5,20.37,20.22,20.07,19.92,19.78,19.650000000000002,19.36,N/A,N/A -2012,3,16,8,30,102110,100930,99780,96.78,0,5.4,6.2,6.5,6.78,7.04,7.29,7.55,7.79,8.34,168.16,168.51,168.74,169.01,169.26,169.51,169.75,169.97,170.3,20.650000000000002,20.43,20.29,20.14,19.98,19.830000000000002,19.71,19.61,19.36,N/A,N/A -2012,3,16,9,30,102140,100950,99800,95.82000000000001,0,4.5,5.57,6.08,6.59,6.98,7.29,7.47,7.61,7.8500000000000005,163.24,164.88,166.03,167.17000000000002,167.99,168.61,168.83,168.94,167.3,20.79,20.59,20.45,20.26,20.06,19.86,19.650000000000002,19.46,19.1,N/A,N/A -2012,3,16,10,30,102130,100940,99790,96.75,0,3.81,4.62,4.98,5.42,5.98,6.61,7.2700000000000005,7.9,8.36,143.27,146.02,148.59,152.72,156.71,160.70000000000002,163.31,165.46,166.56,20.7,20.54,20.46,20.38,20.31,20.25,20.17,20.09,19.89,N/A,N/A -2012,3,16,11,30,102130,100950,99800,93.60000000000001,0,6.41,7.41,7.76,8.05,8.25,8.4,8.48,8.53,8.59,150.56,150.95000000000002,151.3,151.75,152.33,152.98,153.97,154.96,158.25,20.8,20.61,20.490000000000002,20.34,20.2,20.05,19.91,19.78,19.53,N/A,N/A -2012,3,16,12,30,102150,100970,99820,91.72,0,5.37,6.37,6.8100000000000005,7.26,7.67,8.05,8.38,8.68,8.96,148.18,149.05,149.63,150.19,150.63,151.01,151.57,152.12,154.54,20.89,20.77,20.7,20.6,20.51,20.42,20.32,20.22,20.04,N/A,N/A -2012,3,16,13,30,102160,100970,99820,93.28,0,4.63,5.54,5.95,6.390000000000001,6.8,7.18,7.42,7.62,7.74,138.22,139.92000000000002,141.23,142.8,144.17000000000002,145.41,146.66,147.83,151.8,20.76,20.63,20.55,20.47,20.38,20.28,20.150000000000002,20.02,19.740000000000002,N/A,N/A -2012,3,16,14,30,102190,101010,99860,95.51,0,5.6000000000000005,6.45,6.78,7.09,7.37,7.640000000000001,7.930000000000001,8.19,8.81,140.94,141.67000000000002,142.26,143.07,144.07,145.18,146.67000000000002,148.16,152.01,20.72,20.51,20.38,20.240000000000002,20.1,19.97,19.84,19.72,19.5,N/A,N/A -2012,3,16,15,30,102190,101000,99850,94.56,0,4.93,5.73,6.08,6.44,6.78,7.11,7.43,7.74,8.5,146.82,148.06,148.9,149.95000000000002,150.97,151.98,153.23,154.46,158.53,20.830000000000002,20.63,20.52,20.39,20.26,20.14,20.02,19.91,19.740000000000002,N/A,N/A -2012,3,16,16,30,102190,101000,99850,93.98,0,4.2700000000000005,4.86,5.12,5.39,5.68,6,6.41,6.84,8.05,156.16,157.37,158.31,159.53,160.91,162.4,164.09,165.76,168.41,20.96,20.740000000000002,20.62,20.48,20.36,20.25,20.16,20.080000000000002,19.93,N/A,N/A -2012,3,16,17,30,102180,100990,99840,94.84,0,4.7700000000000005,5.23,5.44,5.72,5.97,6.19,6.4,6.59,7,141.95000000000002,142.74,143.51,144.72,146.02,147.36,148.76,150.07,152.98,21.03,20.76,20.61,20.45,20.3,20.16,20,19.86,19.6,N/A,N/A -2012,3,16,18,30,102140,100960,99810,95.10000000000001,0,4.04,4.32,4.4,4.48,4.7700000000000005,5.19,5.42,5.59,5.86,140.23,141.09,141.8,142.82,145.5,149.33,151.46,153.02,155.87,21.13,20.830000000000002,20.67,20.490000000000002,20.35,20.22,20.07,19.93,19.62,N/A,N/A -2012,3,16,19,30,102140,100950,99800,93.59,0,4.68,5.04,5.12,5.17,5.22,5.28,5.51,5.76,6.3,137.18,137.67000000000002,138.05,138.52,139.16,139.9,141.99,144.29,148.96,21.36,21.07,20.900000000000002,20.71,20.53,20.35,20.18,20.03,19.740000000000002,N/A,N/A -2012,3,16,20,30,102080,100900,99750,95.43,0,4.93,5.33,5.42,5.48,5.57,5.68,6.01,6.4,6.74,134.3,134.77,135.12,135.59,136.27,137.09,140.05,143.49,146.44,21.34,21.05,20.89,20.7,20.52,20.35,20.2,20.07,19.76,N/A,N/A -2012,3,16,21,30,102040,100860,99710,96.04,0,4.84,5.42,5.61,5.78,5.92,6.0600000000000005,6.21,6.34,6.69,139.9,140.5,140.97,141.59,142.34,143.16,144.26,145.35,148.5,21.34,21.09,20.93,20.76,20.59,20.43,20.27,20.12,19.85,N/A,N/A -2012,3,16,22,30,102010,100820,99680,96.02,0,4.3500000000000005,5.08,5.36,5.61,5.82,6.0200000000000005,6.22,6.41,6.92,139.37,140.09,140.67000000000002,141.45000000000002,142.38,143.41,144.84,146.27,151.03,21.25,21.04,20.91,20.76,20.61,20.47,20.330000000000002,20.2,20,N/A,N/A -2012,3,16,23,30,101980,100800,99650,96.2,0,5.58,6.63,7.0200000000000005,7.36,7.640000000000001,7.87,8.05,8.21,8.44,137.25,137.93,138.42000000000002,138.97,139.54,140.12,140.77,141.38,142.89000000000001,21.12,20.96,20.85,20.71,20.57,20.43,20.27,20.13,19.82,N/A,N/A -2012,3,17,0,30,101960,100780,99630,96.56,0,4.93,5.91,6.29,6.63,6.92,7.18,7.42,7.640000000000001,8.08,140.51,141.6,142.44,143.49,144.56,145.62,146.66,147.62,148.96,21.02,20.89,20.8,20.68,20.56,20.43,20.28,20.14,19.78,N/A,N/A -2012,3,17,1,30,101960,100770,99630,97.52,0,4.58,5.54,5.97,6.43,6.86,7.26,7.63,7.97,8.49,137.54,138.58,139.35,140.29,141.35,142.46,143.9,145.33,150.31,20.73,20.56,20.46,20.35,20.240000000000002,20.14,20.03,19.93,19.69,N/A,N/A -2012,3,17,2,30,101950,100770,99620,97.72,0,5.2,6.140000000000001,6.54,6.96,7.36,7.74,8.11,8.47,9.02,138.31,139.21,139.98,140.98,142.07,143.21,144.54,145.84,150.5,20.69,20.51,20.41,20.29,20.18,20.07,19.98,19.900000000000002,19.77,N/A,N/A -2012,3,17,3,30,101950,100770,99620,96.97,0,5.82,6.8500000000000005,7.28,7.7,8.11,8.52,8.96,9.38,10.17,137.88,139.31,140.44,141.89000000000001,143.4,144.93,146.33,147.61,149.25,20.84,20.67,20.56,20.43,20.3,20.16,20,19.85,19.55,N/A,N/A -2012,3,17,4,30,101930,100740,99600,94.29,0,6.390000000000001,7.43,7.8,8.11,8.370000000000001,8.6,8.9,9.200000000000001,10.11,145.63,147.42000000000002,148.58,149.91,151.14000000000001,152.3,153.33,154.26,155.9,20.85,20.650000000000002,20.51,20.330000000000002,20.16,19.98,19.84,19.72,19.73,N/A,N/A -2012,3,17,5,30,101900,100720,99570,96.93,0,5.55,6.55,6.97,7.390000000000001,7.8,8.2,8.620000000000001,9.03,9.88,144.58,145.55,146.28,147.26,148.36,149.54,150.93,152.28,155.24,20.76,20.59,20.490000000000002,20.37,20.25,20.150000000000002,20.06,19.97,19.84,N/A,N/A -2012,3,17,6,30,101890,100710,99560,96.44,0,6.32,7.3500000000000005,7.76,8.15,8.52,8.88,9.24,9.57,10.26,150.97,151.37,151.67000000000002,152.03,152.45000000000002,152.9,153.48,154.05,155.71,20.830000000000002,20.63,20.51,20.37,20.240000000000002,20.1,19.97,19.84,19.59,N/A,N/A -2012,3,17,7,30,101910,100730,99580,96.92,0,5.46,6.42,6.82,7.22,7.61,7.97,8.35,8.71,9.42,149.78,150.29,150.73,151.3,151.93,152.6,153.38,154.13,155.73,20.81,20.62,20.51,20.38,20.25,20.13,20.01,19.900000000000002,19.68,N/A,N/A -2012,3,17,8,30,101900,100720,99580,93.51,0,7.62,8.72,9.11,9.47,9.790000000000001,10.09,10.38,10.65,11.26,161.22,159.31,158.02,156.41,154.82,153.28,151.81,150.48,148.56,20.97,20.78,20.650000000000002,20.5,20.35,20.2,20.04,19.89,19.580000000000002,N/A,N/A -2012,3,17,9,30,101890,100710,99560,95.83,0,5.47,6.62,7.17,7.79,8.51,9.28,10.11,10.92,11.8,147.23,149.86,151.87,154.48,157.04,159.62,161.61,163.36,164.26,21.01,20.87,20.78,20.67,20.55,20.43,20.29,20.16,19.87,N/A,N/A -2012,3,17,10,30,101890,100710,99570,95.88,0,5.47,6.59,7.05,7.5,7.9,8.290000000000001,8.69,9.06,9.84,149.07,149.91,150.58,151.45000000000002,152.38,153.35,154.31,155.20000000000002,156.51,20.98,20.85,20.76,20.66,20.57,20.48,20.38,20.29,20.1,N/A,N/A -2012,3,17,11,30,101940,100760,99610,96.55,0,4.61,5.59,6.01,6.42,6.8,7.15,7.53,7.890000000000001,8.64,141.75,142.69,143.45000000000002,144.39000000000001,145.47,146.63,148.20000000000002,149.79,153.66,20.88,20.72,20.62,20.5,20.38,20.27,20.16,20.06,19.85,N/A,N/A -2012,3,17,12,30,101930,100750,99610,97.34,0,5.08,6.04,6.47,6.92,7.3500000000000005,7.78,8.23,8.65,9.46,130.38,132.54,134.17000000000002,136.2,138.26,140.36,142.3,144.1,147.94,20.93,20.77,20.67,20.55,20.400000000000002,20.25,20.080000000000002,19.93,19.52,N/A,N/A -2012,3,17,13,30,101960,100770,99630,97.11,0,5.3,6.38,6.8500000000000005,7.34,7.74,8.08,8.2,8.27,8.27,132.95,135.48,137.34,139.62,141.41,142.9,145.42000000000002,147.98,159.1,21,20.830000000000002,20.71,20.55,20.37,20.18,20,19.84,19.830000000000002,N/A,N/A -2012,3,17,14,30,101980,100790,99650,97.17,0,4.67,5.66,6.1000000000000005,6.57,6.98,7.3500000000000005,7.7,8.040000000000001,8.77,126.3,128.44,130.07,132.04,134,135.98,138.28,140.56,147.13,20.94,20.81,20.740000000000002,20.650000000000002,20.54,20.43,20.31,20.2,19.98,N/A,N/A -2012,3,17,15,30,101990,100800,99660,94.63,0,6.07,7.04,7.43,7.7700000000000005,8.05,8.3,8.47,8.620000000000001,8.74,147.81,148.73,149.28,149.86,150.37,150.82,151.31,151.78,153.37,21,20.82,20.71,20.57,20.43,20.3,20.14,20,19.86,N/A,N/A -2012,3,17,16,30,102000,100820,99670,96.83,0,3.8200000000000003,4.68,5.13,5.65,6.15,6.63,7.03,7.38,7.5,129.53,132.28,134.08,135.86,137.28,138.48,140.35,142.29,147.24,21.05,20.87,20.78,20.68,20.6,20.53,20.48,20.43,20.34,N/A,N/A -2012,3,17,17,30,101970,100780,99640,96.17,0,4.66,5.2700000000000005,5.51,5.7700000000000005,6.03,6.3100000000000005,6.59,6.86,7.12,131.52,132.31,133,133.94,135.19,136.63,139.06,141.55,148.34,21.2,20.96,20.82,20.68,20.55,20.43,20.330000000000002,20.240000000000002,20.12,N/A,N/A -2012,3,17,18,30,101960,100780,99640,96.23,0,4.03,4.74,5.05,5.34,5.59,5.8100000000000005,6.03,6.24,6.69,134.37,135.81,136.78,137.89000000000001,139.02,140.16,141.41,142.61,145.05,21.38,21.13,21,20.85,20.69,20.54,20.38,20.240000000000002,20,N/A,N/A -2012,3,17,19,30,101950,100770,99630,95.98,0,4.54,5.15,5.38,5.58,5.7700000000000005,5.94,6.13,6.3100000000000005,6.66,133.94,135.42000000000002,136.33,137.17000000000002,137.9,138.55,139.22,139.85,141.84,21.7,21.43,21.28,21.11,20.95,20.78,20.63,20.490000000000002,20.240000000000002,N/A,N/A -2012,3,17,20,30,101910,100730,99590,97.43,0,4.57,5.26,5.55,5.83,6.09,6.34,6.57,6.7700000000000005,7.04,122.98,124.13000000000001,125.01,126.19,127.68,129.38,131.27,133.12,136.84,21.73,21.47,21.330000000000002,21.17,21.03,20.92,20.81,20.7,20.42,N/A,N/A -2012,3,17,21,30,101860,100680,99540,97.51,0,4.75,5.54,5.84,6.11,6.37,6.6000000000000005,6.8500000000000005,7.07,7.66,126.74000000000001,127.2,127.63000000000001,128.19,128.86,129.6,130.68,131.76,136.67000000000002,21.68,21.47,21.34,21.18,21.06,20.95,20.85,20.75,20.56,N/A,N/A -2012,3,17,22,30,101850,100670,99530,96.82000000000001,0,4.13,5.11,5.48,5.8100000000000005,6.09,6.34,6.55,6.74,7.04,113.17,115.9,117.99000000000001,120.53,123.27,126.15,129.91,133.65,147.78,21.57,21.47,21.39,21.28,21.16,21.03,20.84,20.650000000000002,20.19,N/A,N/A -2012,3,17,23,30,101820,100640,99500,96.63,0,4.59,5.75,6.25,6.74,7.16,7.53,7.79,8,8.31,121.5,124.07000000000001,126.38000000000001,129.68,132.97,136.3,138.87,141.05,144.22,21.28,21.22,21.18,21.12,21.02,20.89,20.78,20.67,20.84,N/A,N/A -2012,3,18,0,30,101790,100620,99480,95.18,0.7000000000000001,4.37,5.53,5.9,6.13,6.38,6.65,6.8500000000000005,7.0200000000000005,7.390000000000001,136.2,139.18,141.07,142.53,144.47,146.75,149.04,151.15,153.96,21.51,21.72,21.73,21.59,21.46,21.34,21.2,21.07,20.72,N/A,N/A -2012,3,18,1,30,101770,100590,99450,95.79,0,6.51,7.9,8.46,8.98,9.46,9.9,10.35,10.77,11.66,140.98,141.56,142.01,142.63,143.41,144.29,145.70000000000002,147.16,151.07,21.32,21.240000000000002,21.18,21.09,21.01,20.94,20.84,20.75,20.44,N/A,N/A -2012,3,18,2,30,101790,100610,99470,96.03,0,6.63,7.98,8.55,9.11,9.63,10.120000000000001,10.64,11.120000000000001,11.96,133.42000000000002,134.51,135.25,135.97,136.58,137.11,138.12,139.22,142.75,21.26,21.18,21.13,21.07,21,20.94,20.85,20.75,20.42,N/A,N/A -2012,3,18,3,30,101790,100610,99470,96.15,0,6.3500000000000005,7.79,8.44,9.1,9.700000000000001,10.24,10.73,11.17,11.86,128.3,129.6,130.53,131.65,132.76,133.85,135.02,136.14000000000001,138.64000000000001,21.240000000000002,21.16,21.1,21.03,20.95,20.88,20.8,20.72,20.53,N/A,N/A -2012,3,18,4,30,101770,100590,99450,95.88,0,6.84,8.24,8.84,9.43,9.98,10.49,10.99,11.46,12.41,134.2,134.76,135.17000000000002,135.71,136.33,136.99,137.8,138.6,140.64000000000001,21.29,21.19,21.12,21.02,20.93,20.84,20.740000000000002,20.650000000000002,20.47,N/A,N/A -2012,3,18,5,30,101760,100590,99450,95.39,0,8.13,9.620000000000001,10.22,10.790000000000001,11.32,11.82,12.31,12.780000000000001,13.700000000000001,136.55,137.39000000000001,138.04,138.87,139.77,140.70000000000002,141.69,142.63,144.44,21.39,21.3,21.23,21.14,21.06,20.97,20.88,20.8,20.62,N/A,N/A -2012,3,18,6,30,101780,100600,99460,97.98,0,7.28,8.46,8.98,9.49,9.97,10.450000000000001,10.91,11.33,12.14,149.42000000000002,149.63,149.84,150.19,150.68,151.25,152.05,152.85,155,21.19,21.02,20.94,20.88,20.81,20.73,20.67,20.62,20.55,N/A,N/A -2012,3,18,7,30,101780,100600,99460,96.61,17.6,6.7,7.95,8.46,8.950000000000001,9.44,9.92,10.44,10.94,11.97,146.83,146.88,146.91,146.94,146.99,147.05,147.22,147.4,148.11,21.47,21.32,21.23,21.11,21,20.89,20.77,20.67,20.45,N/A,N/A -2012,3,18,8,30,101760,100580,99440,95.86,0.4,7.47,8.81,9.33,9.8,10.23,10.64,11.040000000000001,11.42,12.16,152.8,152.98,153.17000000000002,153.42000000000002,153.71,154.01,154.37,154.72,155.57,21.54,21.42,21.32,21.2,21.080000000000002,20.96,20.830000000000002,20.71,20.43,N/A,N/A -2012,3,18,9,30,101760,100580,99440,95.47,0,7.16,8.45,8.96,9.44,9.870000000000001,10.28,10.700000000000001,11.09,11.97,152.39000000000001,152.4,152.49,152.73,153.1,153.56,154.24,154.92000000000002,156.85,21.55,21.43,21.330000000000002,21.22,21.1,20.98,20.86,20.740000000000002,20.5,N/A,N/A -2012,3,18,10,30,101770,100590,99450,96.85000000000001,0,6.2700000000000005,7.4,7.86,8.31,8.74,9.17,9.64,10.1,11.05,145.82,146.8,147.61,148.71,149.95000000000002,151.28,152.73,154.14000000000001,156.81,21.35,21.21,21.11,21,20.88,20.78,20.67,20.57,20.35,N/A,N/A -2012,3,18,11,30,101750,100570,99430,96.49000000000001,0,6.83,8.09,8.6,9.1,9.58,10.05,10.58,11.09,12.24,149.8,150.75,151.55,152.6,153.85,155.22,156.94,158.65,162.04,21.43,21.29,21.21,21.1,21,20.91,20.81,20.73,20.55,N/A,N/A -2012,3,18,12,30,101770,100600,99460,95.38,0,7.45,8.86,9.46,10.08,10.67,11.26,11.85,12.41,13.44,150.34,151.15,151.72,152.41,153.07,153.69,154.21,154.67000000000002,155.39000000000001,21.52,21.41,21.32,21.22,21.13,21.03,20.92,20.82,20.6,N/A,N/A -2012,3,18,13,30,101790,100610,99470,96.61,0,6.87,8.09,8.56,9.01,9.42,9.8,10.18,10.540000000000001,11.42,138.79,139.66,140.3,141.11,142,142.94,144.07,145.16,147.72,21.43,21.29,21.19,21.07,20.96,20.84,20.71,20.6,20.37,N/A,N/A -2012,3,18,14,30,101830,100650,99510,96.44,0,7.13,8.39,8.89,9.370000000000001,9.81,10.23,10.65,11.05,11.84,144.53,145.3,145.9,146.69,147.56,148.46,149.44,150.38,152.24,21.490000000000002,21.36,21.26,21.150000000000002,21.04,20.94,20.830000000000002,20.73,20.51,N/A,N/A -2012,3,18,15,30,101840,100660,99520,95.42,0,7.34,8.71,9.26,9.8,10.290000000000001,10.75,11.22,11.67,12.6,143.3,144.09,144.70000000000002,145.43,146.16,146.88,147.67000000000002,148.42000000000002,150.26,21.7,21.59,21.51,21.400000000000002,21.3,21.19,21.07,20.96,20.71,N/A,N/A -2012,3,18,16,30,101860,100680,99540,95.72,0,7.36,8.67,9.18,9.66,10.1,10.51,10.93,11.32,12.15,141.44,142,142.46,143.01,143.62,144.25,145.01,145.73,147.66,21.73,21.61,21.52,21.400000000000002,21.28,21.17,21.05,20.93,20.7,N/A,N/A -2012,3,18,17,30,101860,100680,99540,95.88,0,6.91,8.2,8.73,9.24,9.71,10.15,10.58,10.99,11.88,141.45000000000002,142.26,142.83,143.55,144.31,145.1,146.02,146.92000000000002,149.27,21.76,21.63,21.54,21.43,21.32,21.2,21.080000000000002,20.97,20.75,N/A,N/A -2012,3,18,18,30,101840,100670,99530,95.66,0,7.37,8.67,9.18,9.66,10.08,10.48,10.86,11.22,11.9,138.71,139.27,139.72,140.27,140.86,141.47,142.19,142.9,144.79,21.84,21.71,21.62,21.5,21.39,21.27,21.150000000000002,21.04,20.81,N/A,N/A -2012,3,18,19,30,101830,100650,99520,96.03,0,7.75,9.13,9.67,10.19,10.66,11.11,11.57,11.99,12.86,132.05,132.89000000000001,133.55,134.41,135.38,136.42000000000002,137.66,138.88,141.74,21.85,21.73,21.650000000000002,21.54,21.44,21.34,21.240000000000002,21.150000000000002,20.96,N/A,N/A -2012,3,18,20,30,101790,100610,99470,95.99000000000001,0,7.9,9.31,9.86,10.370000000000001,10.84,11.27,11.68,12.040000000000001,12.68,131.18,131.76,132.22,132.81,133.46,134.17000000000002,134.98,135.76,137.58,21.79,21.68,21.59,21.48,21.37,21.27,21.150000000000002,21.05,20.81,N/A,N/A -2012,3,18,21,30,101740,100560,99420,95.67,0,8.19,9.66,10.24,10.78,11.27,11.74,12.18,12.58,13.32,131.66,132.26,132.71,133.3,133.96,134.68,135.54,136.37,138.61,21.75,21.650000000000002,21.56,21.46,21.36,21.26,21.150000000000002,21.05,20.85,N/A,N/A -2012,3,18,22,30,101700,100520,99380,95.45,0,8.82,10.36,10.96,11.540000000000001,12.06,12.540000000000001,13.01,13.44,14.280000000000001,135.66,136.09,136.42000000000002,136.87,137.38,137.94,138.67000000000002,139.39000000000001,141.37,21.72,21.62,21.54,21.43,21.330000000000002,21.22,21.11,21.02,20.830000000000002,N/A,N/A -2012,3,18,23,30,101640,100460,99320,95.55,0,9.13,10.67,11.26,11.83,12.34,12.81,13.290000000000001,13.73,14.63,134.95,135.35,135.67000000000002,136.11,136.62,137.18,137.93,138.68,140.91,21.67,21.56,21.48,21.37,21.27,21.17,21.080000000000002,20.990000000000002,20.85,N/A,N/A -2012,3,19,0,30,101570,100400,99260,95.51,0,9.63,11.21,11.82,12.370000000000001,12.88,13.36,13.86,14.33,15.34,137.38,137.71,137.97,138.33,138.76,139.24,139.88,140.52,142.07,21.650000000000002,21.54,21.45,21.34,21.240000000000002,21.14,21.04,20.96,20.8,N/A,N/A -2012,3,19,1,30,101550,100380,99240,95.27,0,9.71,11.31,11.93,12.49,13.01,13.49,13.96,14.4,15.33,139.82,140.16,140.43,140.78,141.17000000000002,141.6,142.15,142.68,144.27,21.63,21.51,21.42,21.3,21.19,21.07,20.96,20.86,20.69,N/A,N/A -2012,3,19,2,30,101550,100380,99240,93.96000000000001,0,9.89,11.55,12.17,12.76,13.31,13.82,14.35,14.84,15.83,142.96,143.38,143.71,144.09,144.48,144.86,145.27,145.64000000000001,146.46,21.67,21.57,21.490000000000002,21.38,21.28,21.18,21.07,20.98,20.79,N/A,N/A -2012,3,19,3,30,101570,100390,99250,92.66,0,9.71,11.38,12,12.57,13.1,13.59,14.08,14.530000000000001,15.48,146.04,146.17000000000002,146.33,146.51,146.70000000000002,146.9,147.15,147.39000000000001,148.16,21.740000000000002,21.650000000000002,21.56,21.45,21.34,21.240000000000002,21.12,21.02,20.81,N/A,N/A -2012,3,19,4,30,101510,100340,99200,92.14,0,9.540000000000001,11.15,11.76,12.33,12.870000000000001,13.39,13.94,14.47,15.610000000000001,144.46,145.14000000000001,145.62,146.19,146.74,147.29,147.8,148.27,148.84,21.72,21.64,21.57,21.48,21.39,21.3,21.22,21.14,20.94,N/A,N/A -2012,3,19,5,30,101510,100340,99200,90.75,0,9.92,11.55,12.16,12.700000000000001,13.200000000000001,13.66,14.13,14.58,15.52,149.72,149.9,150.02,150.21,150.45000000000002,150.73,151.08,151.43,152.17000000000002,21.81,21.72,21.64,21.53,21.42,21.32,21.2,21.09,20.84,N/A,N/A -2012,3,19,6,30,101500,100320,99190,90.74,0,10.200000000000001,11.89,12.51,13.09,13.61,14.09,14.56,14.98,15.84,147.8,148.11,148.33,148.58,148.84,149.1,149.37,149.63,150.20000000000002,21.73,21.64,21.55,21.44,21.32,21.2,21.07,20.95,20.68,N/A,N/A -2012,3,19,7,30,101500,100320,99190,91.88,0,10.51,12.24,12.86,13.43,13.93,14.39,14.84,15.25,16.04,151.37,151.87,152.17000000000002,152.52,152.88,153.24,153.63,154.01,154.78,21.740000000000002,21.650000000000002,21.55,21.44,21.32,21.2,21.07,20.94,20.67,N/A,N/A -2012,3,19,8,30,101440,100260,99130,93.61,0,10.35,12.02,12.64,13.200000000000001,13.700000000000001,14.15,14.620000000000001,15.040000000000001,15.92,149.61,150.03,150.33,150.69,151.11,151.54,152.09,152.62,153.91,21.69,21.580000000000002,21.48,21.36,21.240000000000002,21.12,21,20.88,20.63,N/A,N/A -2012,3,19,9,30,101410,100240,99100,93.48,0,11.33,13.09,13.72,14.280000000000001,14.77,15.22,15.66,16.06,16.84,149.85,150.02,150.23,150.49,150.79,151.12,151.52,151.91,152.89000000000001,21.66,21.54,21.44,21.32,21.19,21.07,20.93,20.81,20.56,N/A,N/A -2012,3,19,10,30,101360,100190,99060,93.29,0,12.17,14.05,14.71,15.26,15.74,16.18,16.61,17.01,17.82,151.14000000000001,151.61,151.96,152.39000000000001,152.87,153.38,154.01,154.6,156.04,21.75,21.66,21.57,21.45,21.34,21.22,21.11,21,20.78,N/A,N/A -2012,3,19,11,30,101280,100110,98980,92.28,0,15.72,18.09,18.88,19.53,20.080000000000002,20.55,20.98,21.38,22.09,148.41,149.03,149.42000000000002,149.87,150.31,150.75,151.22,151.67000000000002,152.64000000000001,21.81,21.72,21.64,21.53,21.42,21.3,21.19,21.080000000000002,20.86,N/A,N/A -2012,3,19,12,30,101250,100080,98950,92.24,0,15.97,18.38,19.150000000000002,19.77,20.29,20.75,21.16,21.52,22.150000000000002,144.69,145.18,145.43,145.73,146.06,146.39000000000001,146.78,147.15,148.02,21.79,21.7,21.61,21.490000000000002,21.37,21.26,21.14,21.03,20.81,N/A,N/A -2012,3,19,13,30,101300,100130,98990,91.64,0,14.24,16.46,17.23,17.88,18.43,18.92,19.37,19.77,20.490000000000002,149.65,149.56,149.52,149.51,149.54,149.58,149.68,149.79,150.15,21.830000000000002,21.740000000000002,21.650000000000002,21.53,21.400000000000002,21.27,21.14,21.01,20.75,N/A,N/A -2012,3,19,14,30,101370,100200,99060,91.29,0,11.46,13.34,14.040000000000001,14.65,15.19,15.67,16.14,16.57,17.32,155.6,155.19,154.97,154.74,154.51,154.3,154.11,153.95000000000002,153.76,21.75,21.650000000000002,21.55,21.42,21.29,21.16,21.02,20.89,20.61,N/A,N/A -2012,3,19,15,30,101370,100200,99070,92.38,0,11.75,13.57,14.21,14.74,15.200000000000001,15.6,15.98,16.32,16.95,134.12,134.14000000000001,134.21,134.36,134.6,134.9,135.37,135.84,137.35,21.740000000000002,21.63,21.54,21.42,21.3,21.18,21.07,20.96,20.75,N/A,N/A -2012,3,19,16,30,101350,100180,99040,90.82000000000001,0,10.82,12.27,12.74,13.08,13.35,13.56,13.72,13.86,14.11,122.25,122.67,123.11,123.73,124.55,125.49000000000001,126.92,128.35,133,21.52,21.38,21.28,21.150000000000002,21.04,20.94,20.85,20.78,20.71,N/A,N/A -2012,3,19,17,30,101320,100150,99010,89.26,0.4,12.200000000000001,13.780000000000001,14.26,14.620000000000001,14.92,15.19,15.44,15.66,16.09,115.38,116.34,116.96000000000001,117.68,118.44,119.23,120.16,121.03,123.22,21.22,21.03,20.900000000000002,20.75,20.61,20.47,20.34,20.21,19.97,N/A,N/A -2012,3,19,18,30,101320,100140,99000,95.9,0.7000000000000001,10.9,13,13.75,14.06,14.44,14.84,15.14,15.39,15.700000000000001,103.10000000000001,103.9,104.46000000000001,105.07000000000001,106.2,107.66,109.45,111.17,115.18,20.73,20.47,20.32,20.16,20.04,19.94,19.85,19.77,19.64,N/A,N/A -2012,3,19,19,30,101290,100120,98980,92.46000000000001,0,11.48,12.97,13.450000000000001,13.85,14.18,14.48,14.76,15.030000000000001,15.530000000000001,115.10000000000001,116.06,116.87,117.84,118.88,119.93,121.18,122.37,125.14,21.12,20.95,20.85,20.73,20.62,20.52,20.42,20.330000000000002,20.16,N/A,N/A -2012,3,19,20,30,101220,100040,98910,94.39,0,10.620000000000001,12.09,12.58,13,13.35,13.65,13.93,14.19,14.63,124.23,124.22,124.23,124.31,124.47,124.66,124.95,125.23,126.04,21.34,21.14,21.01,20.86,20.71,20.56,20.400000000000002,20.25,19.95,N/A,N/A -2012,3,19,21,30,101170,99990,98860,94.29,0,11.01,12.66,13.22,13.68,14.08,14.42,14.72,14.99,15.47,125.28,125.52,125.64,125.82000000000001,126.04,126.29,126.62,126.95,127.92,21.5,21.330000000000002,21.21,21.07,20.92,20.77,20.61,20.46,20.16,N/A,N/A -2012,3,19,22,30,101110,99930,98800,94.21000000000001,0,10.11,11.61,12.16,12.620000000000001,13.01,13.36,13.700000000000001,14.01,14.620000000000001,127.77,128.37,128.87,129.5,130.19,130.91,131.8,132.69,134.86,21.57,21.45,21.36,21.240000000000002,21.13,21.01,20.900000000000002,20.8,20.59,N/A,N/A -2012,3,19,23,30,101030,99860,98730,93.16,0,10.59,12.24,12.84,13.35,13.790000000000001,14.18,14.540000000000001,14.86,15.450000000000001,133.28,133.71,134.05,134.45,134.87,135.3,135.78,136.25,137.39000000000001,21.68,21.580000000000002,21.490000000000002,21.37,21.25,21.13,21,20.87,20.62,N/A,N/A -2012,3,20,0,30,100980,99810,98680,91.52,0,11.450000000000001,13.25,13.9,14.48,14.98,15.44,15.88,16.28,17.04,138.53,138.88,139.11,139.39000000000001,139.68,139.98,140.32,140.66,141.51,21.740000000000002,21.64,21.55,21.43,21.3,21.18,21.05,20.92,20.67,N/A,N/A -2012,3,20,1,30,100940,99770,98640,89.52,0,11.32,13.14,13.790000000000001,14.38,14.89,15.35,15.8,16.21,17.02,142.87,143.15,143.37,143.63,143.91,144.20000000000002,144.54,144.86,145.66,21.82,21.740000000000002,21.650000000000002,21.54,21.42,21.3,21.18,21.06,20.82,N/A,N/A -2012,3,20,2,30,100910,99740,98610,88.43,0,11.47,13.3,13.96,14.52,15.02,15.47,15.91,16.31,17.13,143.49,143.73,143.94,144.20000000000002,144.49,144.8,145.18,145.55,146.46,21.830000000000002,21.76,21.68,21.57,21.45,21.34,21.22,21.12,20.900000000000002,N/A,N/A -2012,3,20,3,30,100880,99710,98580,85.89,0,11.74,13.56,14.26,14.86,15.39,15.870000000000001,16.32,16.75,17.55,143.71,144.13,144.43,144.78,145.12,145.47,145.85,146.21,147.01,21.91,21.86,21.78,21.67,21.55,21.44,21.32,21.2,20.96,N/A,N/A -2012,3,20,4,30,100800,99640,98510,83.94,0,11.94,13.93,14.64,15.27,15.84,16.35,16.86,17.330000000000002,18.3,144.57,144.94,145.17000000000002,145.44,145.74,146.04,146.4,146.74,147.56,21.98,21.93,21.86,21.76,21.66,21.56,21.45,21.35,21.14,N/A,N/A -2012,3,20,5,30,100740,99580,98450,81.97,0,12.75,14.82,15.57,16.21,16.78,17.29,17.78,18.23,19.07,146.58,146.92000000000002,147.16,147.44,147.72,148.01,148.32,148.62,149.29,22.05,22.02,21.96,21.86,21.75,21.650000000000002,21.54,21.44,21.22,N/A,N/A -2012,3,20,6,30,100710,99550,98420,81.8,0,13.02,14.94,15.620000000000001,16.19,16.68,17.11,17.53,17.92,18.7,149.14000000000001,149.51,149.70000000000002,149.93,150.18,150.44,150.75,151.06,151.82,22.19,22.11,22.02,21.900000000000002,21.79,21.67,21.55,21.43,21.21,N/A,N/A -2012,3,20,7,30,100700,99530,98410,81.03,0,12.75,14.790000000000001,15.5,16.09,16.61,17.080000000000002,17.51,17.91,18.650000000000002,149.70000000000002,149.94,150.14000000000001,150.35,150.56,150.76,150.97,151.16,151.56,22.31,22.25,22.17,22.05,21.93,21.81,21.67,21.54,21.27,N/A,N/A -2012,3,20,8,30,100660,99500,98370,82.46000000000001,0,13.1,15.06,15.780000000000001,16.38,16.9,17.37,17.81,18.21,18.990000000000002,147.09,147.46,147.69,147.95000000000002,148.22,148.5,148.81,149.11,149.81,22.240000000000002,22.16,22.07,21.95,21.82,21.69,21.54,21.41,21.14,N/A,N/A -2012,3,20,9,30,100680,99510,98390,81.02,0,12.450000000000001,14.370000000000001,15.07,15.67,16.19,16.64,17.080000000000002,17.47,18.23,149.08,149.39000000000001,149.61,149.84,150.08,150.3,150.54,150.77,151.26,22.31,22.240000000000002,22.150000000000002,22.03,21.900000000000002,21.77,21.62,21.490000000000002,21.2,N/A,N/A -2012,3,20,10,30,100680,99520,98390,80.81,0,11.77,13.67,14.370000000000001,14.98,15.530000000000001,16.03,16.51,16.95,17.84,151.3,151.63,151.85,152.1,152.37,152.66,152.99,153.31,154.1,22.330000000000002,22.29,22.21,22.1,21.98,21.86,21.740000000000002,21.62,21.37,N/A,N/A -2012,3,20,11,30,100670,99510,98380,81.75,0,12.08,13.99,14.69,15.290000000000001,15.81,16.28,16.73,17.150000000000002,17.95,152.55,152.74,152.86,152.99,153.13,153.26,153.42000000000002,153.56,153.89000000000001,22.32,22.26,22.18,22.07,21.94,21.82,21.68,21.56,21.28,N/A,N/A -2012,3,20,12,30,100670,99500,98380,83.84,0,11.71,13.56,14.21,14.780000000000001,15.280000000000001,15.73,16.16,16.55,17.31,152.53,152.75,152.91,153.09,153.28,153.47,153.67000000000002,153.87,154.31,22.23,22.150000000000002,22.07,21.95,21.82,21.7,21.56,21.43,21.14,N/A,N/A -2012,3,20,13,30,100760,99590,98460,86.46000000000001,0,10.31,12.01,12.64,13.200000000000001,13.700000000000001,14.15,14.58,14.97,15.72,152.43,152.72,152.9,153.1,153.31,153.52,153.74,153.95000000000002,154.41,22.2,22.12,22.03,21.91,21.78,21.66,21.52,21.39,21.1,N/A,N/A -2012,3,20,14,30,100800,99630,98510,87.92,0,10.370000000000001,12.09,12.74,13.31,13.82,14.290000000000001,14.75,15.18,15.99,155.75,155.97,156.11,156.3,156.49,156.70000000000002,156.95000000000002,157.19,157.74,22.2,22.12,22.03,21.92,21.8,21.68,21.55,21.43,21.16,N/A,N/A -2012,3,20,15,30,100810,99650,98520,88.86,0,9.370000000000001,10.94,11.55,12.09,12.59,13.040000000000001,13.48,13.88,14.67,156.13,156.37,156.55,156.77,157,157.24,157.51,157.76,158.32,22.2,22.12,22.04,21.92,21.8,21.69,21.56,21.44,21.17,N/A,N/A -2012,3,20,16,30,100720,99560,98430,90.4,0,10.14,11.81,12.44,13.01,13.5,13.96,14.4,14.81,15.59,147.87,148.3,148.69,149.13,149.57,149.99,150.44,150.87,151.76,22.17,22.09,22.01,21.900000000000002,21.78,21.66,21.53,21.41,21.150000000000002,N/A,N/A -2012,3,20,17,30,100650,99480,98360,91.98,11.4,12.120000000000001,14.120000000000001,14.81,15.42,15.96,16.46,16.93,17.36,18.2,140.32,140.71,141.02,141.44,141.9,142.38,142.93,143.45000000000002,144.62,22.19,22.09,22,21.88,21.76,21.64,21.5,21.38,21.11,N/A,N/A -2012,3,20,18,30,100630,99480,98350,91.60000000000001,1.8,14.16,16.05,16.91,17.62,18.21,18.73,19.2,19.63,20.43,148.70000000000002,149,149.14000000000001,149.38,149.59,149.85,150.11,150.37,150.92000000000002,22.23,22.18,22.1,21.96,21.84,21.7,21.57,21.43,21.150000000000002,N/A,N/A -2012,3,20,19,30,100690,99520,98390,92.84,358.20000000000005,11.950000000000001,13.86,14.65,15.32,15.89,16.39,16.8,17.16,17.650000000000002,167.16,167.78,167.63,167.38,167.34,167.42000000000002,168.06,168.79,171.58,22.01,21.96,21.88,21.77,21.63,21.490000000000002,21.31,21.14,20.740000000000002,N/A,N/A -2012,3,20,20,30,100830,99660,98520,95.2,505,8.4,8.96,9.24,9.58,9.88,10.17,10.450000000000001,10.71,11.17,215.17000000000002,213.91,213.25,211.99,210.86,209.66,208.5,207.38,205.35,20.47,20.22,20.1,20.01,19.94,19.88,19.830000000000002,19.78,19.64,N/A,N/A -2012,3,20,21,30,100670,99490,98350,90.8,5.5,8.5,9.120000000000001,9.53,10.17,11.05,12.02,12.540000000000001,12.99,13.91,180.88,182.15,183.24,185.07,187.39000000000001,189.89000000000001,190.84,191.46,191.17000000000002,18.97,18.66,18.61,18.62,18.76,18.94,19.02,19.07,18.97,N/A,N/A -2012,3,20,22,30,100740,99570,98430,93.4,26,11.01,12.200000000000001,12.450000000000001,12.620000000000001,12.75,12.86,12.97,13.08,13.39,181.48,182.24,182.66,183.12,183.66,184.21,184.87,185.51,187.54,20.71,20.39,20.23,20.04,19.87,19.69,19.51,19.35,19.02,N/A,N/A -2012,3,20,23,30,100670,99500,98360,88.87,13.200000000000001,5.29,5.78,5.96,6.11,6.2700000000000005,6.44,6.68,6.92,7.74,224.83,223.93,223.5,223.01,222.47,221.94,221.3,220.68,219.39000000000001,20.66,20.35,20.18,19.990000000000002,19.81,19.64,19.45,19.29,18.96,N/A,N/A -2012,3,21,0,30,100690,99520,98380,89.55,20.5,1.78,1.84,1.87,1.9000000000000001,1.92,1.95,2,2.04,2.29,214.77,216.15,216.77,217.45000000000002,218.24,219.1,220.52,221.98000000000002,227.33,20.21,19.91,19.740000000000002,19.55,19.37,19.2,19.01,18.85,18.52,N/A,N/A -2012,3,21,1,30,100680,99500,98360,94.75,0.7000000000000001,6.38,6.88,6.92,6.9,6.86,6.8,6.72,6.640000000000001,6.45,341.64,342.12,342.45,342.8,343.15000000000003,343.49,343.89,344.27,345.39,19.86,19.490000000000002,19.31,19.12,18.93,18.75,18.57,18.400000000000002,18.16,N/A,N/A -2012,3,21,2,30,100710,99530,98380,93.36,24.200000000000003,9.57,10.21,10.290000000000001,10.28,10.23,10.17,10.08,9.99,9.74,344.83,344.98,344.85,344.68,344.42,344.14,343.54,342.88,340.23,19.1,18.68,18.5,18.32,18.150000000000002,18,17.85,17.72,17.580000000000002,N/A,N/A -2012,3,21,3,30,100850,99670,98530,82,0,8.700000000000001,9.540000000000001,9.74,9.88,9.99,10.08,10.18,10.28,10.57,348.41,348.65000000000003,348.67,348.67,348.66,348.66,348.64,348.63,348.61,19.18,18.78,18.6,18.42,18.23,18.06,17.89,17.73,17.42,N/A,N/A -2012,3,21,4,30,100910,99730,98580,78.73,0,7.47,8.11,8.290000000000001,8.39,8.47,8.52,8.58,8.63,8.75,350.1,350.12,350.17,350.21,350.23,350.24,350.27,350.29,350.35,19.38,18.990000000000002,18.81,18.61,18.42,18.240000000000002,18.05,17.88,17.53,N/A,N/A -2012,3,21,5,30,100920,99730,98590,76.8,0,8.53,9.24,9.41,9.5,9.56,9.6,9.63,9.66,9.700000000000001,338.33,338.31,338.3,338.29,338.28000000000003,338.28000000000003,338.28000000000003,338.29,338.32,19.37,18.97,18.79,18.580000000000002,18.39,18.21,18.01,17.84,17.46,N/A,N/A -2012,3,21,6,30,101000,99820,98670,74.98,0,7.11,7.640000000000001,7.76,7.82,7.87,7.9,7.930000000000001,7.96,8.03,339.56,339.72,339.75,339.77,339.8,339.83,339.89,339.94,340.1,19.25,18.87,18.68,18.490000000000002,18.29,18.11,17.92,17.740000000000002,17.38,N/A,N/A -2012,3,21,7,30,101140,99950,98800,72.96000000000001,0,5.66,6,6.11,6.17,6.21,6.25,6.2700000000000005,6.3,6.3500000000000005,322.94,324.18,325.17,326.06,326.89,327.64,328.44,329.17,330.7,18.8,18.42,18.23,18.04,17.86,17.68,17.490000000000002,17.32,16.96,N/A,N/A -2012,3,21,8,30,101080,99890,98730,64.41,2.2,7.03,7.47,7.57,7.61,7.640000000000001,7.66,7.66,7.67,7.66,7.15,7.1000000000000005,7,6.91,6.8,6.7,6.55,6.41,6.0200000000000005,17.45,16.98,16.77,16.57,16.36,16.18,15.97,15.790000000000001,15.41,N/A,N/A -2012,3,21,9,30,101180,99980,98810,73.5,2.6,6.7700000000000005,7.1000000000000005,7.140000000000001,7.140000000000001,7.12,7.1000000000000005,7.07,7.03,6.96,56.67,55.980000000000004,55.47,54.96,54.410000000000004,53.9,53.2,52.480000000000004,50.4,15.82,15.290000000000001,15.08,14.88,14.69,14.51,14.31,14.14,13.790000000000001,N/A,N/A -2012,3,21,10,30,101360,100150,98980,73.45,0.7000000000000001,4.09,4.21,4.21,4.19,4.16,4.12,4.07,4.0200000000000005,3.87,69.58,69.12,68.42,67.82000000000001,67.19,66.62,65.8,64.97,62.15,15.8,15.32,15.120000000000001,14.92,14.72,14.540000000000001,14.35,14.17,13.82,N/A,N/A -2012,3,21,11,30,101270,100070,98900,76.82000000000001,2.9000000000000004,4.53,4.59,4.6000000000000005,4.58,4.55,4.5200000000000005,4.47,4.43,4.33,30.43,29.39,28.82,28.21,27.48,26.8,25.85,24.86,22.17,15.74,15.25,15.05,14.85,14.65,14.47,14.27,14.09,13.72,N/A,N/A -2012,3,21,12,30,101290,100080,98920,77.06,11.4,4.23,4.4,4.41,4.4,4.38,4.3500000000000005,4.32,4.28,4.19,27.25,27.060000000000002,26.6,26.12,25.55,24.990000000000002,24.18,23.34,20.63,16.1,15.620000000000001,15.42,15.21,15.02,14.83,14.63,14.450000000000001,14.09,N/A,N/A -2012,3,21,13,30,101320,100110,98950,79.41,0.4,5.12,5.42,5.44,5.43,5.42,5.4,5.38,5.37,5.32,25.16,24.17,23.48,22.8,22.080000000000002,21.42,20.63,19.86,18.07,16.19,15.71,15.5,15.290000000000001,15.09,14.9,14.700000000000001,14.51,14.120000000000001,N/A,N/A -2012,3,21,14,30,101360,100160,99000,82.45,0,4.61,4.75,4.74,4.71,4.67,4.63,4.57,4.5200000000000005,4.39,64.16,63.660000000000004,63.29,62.93,62.57,62.230000000000004,61.800000000000004,61.39,60.300000000000004,16.28,15.8,15.6,15.39,15.19,15,14.81,14.620000000000001,14.25,N/A,N/A -2012,3,21,15,30,101390,100200,99030,76.46000000000001,0,4.42,4.62,4.62,4.6000000000000005,4.57,4.53,4.48,4.43,4.3100000000000005,68.72,68.05,68.07000000000001,68.08,68.1,68.11,68.11,68.12,68.09,16.85,16.41,16.2,16,15.8,15.610000000000001,15.41,15.23,14.85,N/A,N/A -2012,3,21,16,30,101400,100210,99040,70.04,0,3.59,3.66,3.64,3.6,3.5500000000000003,3.49,3.42,3.35,3.15,73.07000000000001,73.46000000000001,73.36,73.25,73.13,73,72.8,72.60000000000001,71.87,17.28,16.86,16.66,16.46,16.27,16.080000000000002,15.89,15.71,15.35,N/A,N/A -2012,3,21,17,30,101390,100190,99030,65.5,0,4.15,4.24,4.2,4.14,4.07,4.01,3.92,3.83,3.6,89.2,89.23,89.07000000000001,88.92,88.75,88.60000000000001,88.43,88.27,87.89,17.82,17.41,17.22,17.03,16.84,16.66,16.47,16.29,15.92,N/A,N/A -2012,3,21,18,30,101410,100210,99050,62.78,0,4.71,4.92,4.93,4.93,4.91,4.9,4.87,4.8500000000000005,4.8,123.16,123.69,124.03,124.34,124.64,124.92,125.23,125.51,126.15,18.2,17.79,17.6,17.400000000000002,17.2,17.01,16.81,16.62,16.23,N/A,N/A -2012,3,21,19,30,101380,100190,99030,59.03,0,5.12,5.37,5.4,5.4,5.4,5.38,5.36,5.33,5.28,143.87,144.28,144.49,144.72,144.94,145.16,145.4,145.63,146.17000000000002,18.61,18.21,18.02,17.82,17.62,17.43,17.23,17.04,16.65,N/A,N/A -2012,3,21,20,30,101350,100160,99000,56.19,0,5.67,6.0200000000000005,6.09,6.12,6.13,6.13,6.12,6.12,6.09,163.03,163.45000000000002,163.76,164.07,164.4,164.71,165.05,165.38,166.11,18.88,18.490000000000002,18.3,18.1,17.900000000000002,17.71,17.51,17.32,16.93,N/A,N/A -2012,3,21,21,30,101370,100180,99030,56.39,0,6.05,6.47,6.5600000000000005,6.61,6.640000000000001,6.66,6.67,6.68,6.69,163.98,164.64000000000001,165.03,165.41,165.78,166.12,166.48,166.81,167.52,19.12,18.740000000000002,18.56,18.36,18.16,17.97,17.77,17.580000000000002,17.19,N/A,N/A -2012,3,21,22,30,101380,100190,99030,56.61,0,6.0600000000000005,6.49,6.58,6.63,6.66,6.68,6.7,6.7,6.7,172.81,172.85,172.9,172.96,173.01,173.06,173.13,173.18,173.31,19.330000000000002,18.97,18.78,18.580000000000002,18.38,18.19,17.990000000000002,17.8,17.41,N/A,N/A -2012,3,21,23,30,101390,100200,99050,57.870000000000005,0,6.890000000000001,7.38,7.49,7.54,7.5600000000000005,7.57,7.57,7.57,7.55,164.78,165.07,165.23,165.39000000000001,165.54,165.67000000000002,165.83,165.97,166.29,19.47,19.1,18.92,18.72,18.52,18.330000000000002,18.14,17.95,17.56,N/A,N/A -2012,3,22,0,30,101390,100200,99050,58.83,0,6.8500000000000005,7.3500000000000005,7.47,7.54,7.57,7.6000000000000005,7.61,7.62,7.62,166.26,166.71,167.01,167.3,167.59,167.84,168.11,168.37,168.89000000000001,19.55,19.2,19.02,18.81,18.62,18.43,18.23,18.04,17.650000000000002,N/A,N/A -2012,3,22,1,30,101420,100240,99080,57.44,0,6.8,7.33,7.46,7.5200000000000005,7.57,7.6000000000000005,7.61,7.63,7.640000000000001,166.78,166.93,167,167.05,167.11,167.16,167.21,167.26,167.35,19.78,19.43,19.25,19.05,18.85,18.66,18.46,18.27,17.88,N/A,N/A -2012,3,22,2,30,101490,100300,99150,59.82,0,6.67,7.16,7.28,7.3500000000000005,7.38,7.41,7.42,7.43,7.43,170.24,170.54,170.74,170.94,171.11,171.28,171.45000000000002,171.61,171.94,19.75,19.41,19.23,19.03,18.84,18.650000000000002,18.45,18.26,17.87,N/A,N/A -2012,3,22,3,30,101510,100320,99170,59.34,0,6.55,7.03,7.13,7.18,7.21,7.22,7.23,7.23,7.21,168.9,169.03,169.15,169.27,169.38,169.47,169.58,169.67000000000002,169.89000000000001,19.84,19.5,19.32,19.12,18.93,18.740000000000002,18.54,18.36,17.96,N/A,N/A -2012,3,22,4,30,101510,100320,99170,62.160000000000004,0,6.7,7.2,7.3,7.34,7.36,7.38,7.38,7.38,7.3500000000000005,164.48,164.71,164.89000000000001,165.06,165.23,165.39000000000001,165.55,165.70000000000002,166.03,19.76,19.41,19.23,19.03,18.84,18.650000000000002,18.45,18.27,17.88,N/A,N/A -2012,3,22,5,30,101490,100300,99150,64.27,0,6.96,7.46,7.58,7.62,7.640000000000001,7.65,7.65,7.640000000000001,7.61,169.56,169.66,169.73,169.82,169.89000000000001,169.97,170.06,170.14000000000001,170.34,19.650000000000002,19.3,19.12,18.92,18.72,18.53,18.330000000000002,18.150000000000002,17.76,N/A,N/A -2012,3,22,6,30,101520,100330,99180,61.35,0,6.59,7.08,7.19,7.24,7.2700000000000005,7.28,7.28,7.28,7.2700000000000005,165.38,165.56,165.67000000000002,165.79,165.9,166.01,166.12,166.22,166.48,19.79,19.46,19.28,19.080000000000002,18.89,18.7,18.5,18.32,17.93,N/A,N/A -2012,3,22,7,30,101510,100320,99170,67.2,0,6.74,7.24,7.3500000000000005,7.390000000000001,7.4,7.41,7.4,7.390000000000001,7.36,165.6,165.65,165.68,165.71,165.74,165.77,165.81,165.84,165.94,19.69,19.35,19.17,18.97,18.78,18.59,18.39,18.21,17.82,N/A,N/A -2012,3,22,8,30,101480,100290,99140,72.04,0,6.4,6.82,6.9,6.92,6.91,6.9,6.87,6.84,6.76,170.1,170.13,170.18,170.23,170.29,170.34,170.4,170.46,170.70000000000002,19.56,19.22,19.04,18.85,18.650000000000002,18.47,18.28,18.1,17.740000000000002,N/A,N/A -2012,3,22,9,30,101480,100290,99140,73.16,0,7.3100000000000005,7.84,7.96,7.99,8.01,8.01,7.99,7.97,7.91,162.86,162.95000000000002,163.01,163.08,163.15,163.21,163.28,163.36,163.55,19.51,19.16,18.98,18.78,18.59,18.400000000000002,18.21,18.03,17.650000000000002,N/A,N/A -2012,3,22,10,30,101460,100270,99120,70.66,0,7.61,8.2,8.33,8.39,8.41,8.42,8.42,8.41,8.370000000000001,162.14000000000001,162.31,162.42000000000002,162.53,162.64000000000001,162.75,162.87,162.99,163.27,19.69,19.34,19.16,18.96,18.77,18.580000000000002,18.38,18.2,17.81,N/A,N/A -2012,3,22,11,30,101460,100280,99130,67.53,0,7.09,7.640000000000001,7.74,7.78,7.79,7.8,7.79,7.78,7.76,167.34,167.24,167.21,167.18,167.15,167.12,167.08,167.04,166.91,19.96,19.64,19.47,19.27,19.080000000000002,18.900000000000002,18.71,18.54,18.17,N/A,N/A -2012,3,22,12,30,101480,100300,99150,66.58,0,7.61,8.25,8.4,8.46,8.5,8.52,8.53,8.53,8.52,163.48,163.5,163.5,163.5,163.51,163.51,163.51,163.51,163.51,20.05,19.73,19.55,19.36,19.17,18.98,18.78,18.6,18.22,N/A,N/A -2012,3,22,13,30,101490,100300,99150,70.07000000000001,0,7.26,7.8500000000000005,7.98,8.03,8.06,8.07,8.06,8.05,8.01,165.17000000000002,165.3,165.4,165.52,165.63,165.74,165.86,165.98,166.24,20.02,19.7,19.52,19.330000000000002,19.13,18.95,18.75,18.57,18.18,N/A,N/A -2012,3,22,14,30,101530,100350,99200,67.36,0,7.76,8.46,8.63,8.72,8.78,8.82,8.84,8.86,8.870000000000001,160.75,160.74,160.75,160.76,160.76,160.77,160.77,160.78,160.79,20.240000000000002,19.93,19.76,19.57,19.37,19.19,18.990000000000002,18.81,18.43,N/A,N/A -2012,3,22,15,30,101530,100350,99200,66.59,0,6.97,7.55,7.69,7.75,7.79,7.8100000000000005,7.82,7.82,7.82,169.65,169.68,169.70000000000002,169.72,169.73,169.73,169.75,169.76,169.8,20.32,20.03,19.86,19.67,19.48,19.3,19.11,18.93,18.56,N/A,N/A -2012,3,22,16,30,101580,100390,99240,71.16,0,7.5,8.13,8.27,8.34,8.38,8.4,8.41,8.41,8.39,164.85,165.08,165.17000000000002,165.25,165.33,165.39000000000001,165.46,165.53,165.70000000000002,20.31,20.01,19.84,19.64,19.46,19.27,19.080000000000002,18.900000000000002,18.51,N/A,N/A -2012,3,22,17,30,101540,100350,99200,62.09,0,6.0200000000000005,6.53,6.65,6.7,6.74,6.7700000000000005,6.79,6.8100000000000005,6.83,184.47,184.3,184.16,184.01,183.86,183.72,183.56,183.41,183.09,20.71,20.44,20.27,20.09,19.900000000000002,19.72,19.52,19.35,18.97,N/A,N/A -2012,3,22,18,30,101560,100380,99230,64.43,0,5.13,5.55,5.64,5.68,5.71,5.73,5.73,5.73,5.73,186.93,187.01,187.05,187.08,187.1,187.14000000000001,187.18,187.23,187.37,20.72,20.44,20.27,20.080000000000002,19.89,19.71,19.51,19.330000000000002,18.94,N/A,N/A -2012,3,22,19,30,101540,100350,99210,64.33,0,5.21,5.65,5.74,5.8,5.84,5.87,5.9,5.92,5.96,193.45000000000002,193.18,192.99,192.78,192.57,192.36,192.13,191.92000000000002,191.44,20.81,20.52,20.35,20.16,19.97,19.79,19.59,19.41,19.03,N/A,N/A -2012,3,22,20,30,101510,100330,99180,66.39,0,4.93,5.3100000000000005,5.39,5.42,5.44,5.45,5.46,5.46,5.46,185.97,186.14000000000001,186.29,186.42000000000002,186.54,186.64000000000001,186.75,186.84,187.05,20.76,20.47,20.3,20.11,19.92,19.73,19.54,19.36,18.97,N/A,N/A -2012,3,22,21,30,101490,100310,99160,68.92,0,4.69,5.08,5.15,5.19,5.21,5.23,5.23,5.24,5.24,180.68,180.63,180.69,180.75,180.81,180.86,180.91,180.94,181.03,20.73,20.45,20.27,20.080000000000002,19.89,19.71,19.51,19.330000000000002,18.94,N/A,N/A -2012,3,22,22,30,101460,100280,99130,65,0,4.25,4.57,4.64,4.68,4.7,4.71,4.72,4.73,4.75,180.73,180.42000000000002,180.15,179.84,179.54,179.25,178.94,178.64000000000001,178.01,20.73,20.47,20.31,20.11,19.93,19.740000000000002,19.55,19.37,18.990000000000002,N/A,N/A -2012,3,22,23,30,101420,100240,99090,69.11,0,3.65,3.9,3.95,3.96,3.96,3.96,3.96,3.96,3.94,183.57,183.8,183.97,184.16,184.35,184.53,184.75,184.97,185.54,20.55,20.27,20.1,19.91,19.72,19.54,19.34,19.150000000000002,18.77,N/A,N/A -2012,3,23,0,30,101420,100240,99090,65.91,0,4.24,4.54,4.58,4.6000000000000005,4.6000000000000005,4.6000000000000005,4.59,4.59,4.58,166.74,166.91,166.96,167.01,167.05,167.07,167.11,167.15,167.19,20.53,20.26,20.09,19.900000000000002,19.71,19.53,19.34,19.16,18.79,N/A,N/A -2012,3,23,1,30,101440,100250,99110,67.73,0,5.04,5.43,5.51,5.54,5.55,5.5600000000000005,5.57,5.57,5.57,152.73,152.71,152.73,152.75,152.78,152.8,152.84,152.87,152.96,20.5,20.22,20.05,19.86,19.67,19.490000000000002,19.29,19.11,18.73,N/A,N/A -2012,3,23,2,30,101450,100260,99120,66.51,0,3.89,4.16,4.2,4.21,4.21,4.21,4.21,4.2,4.21,157.21,157.24,157.27,157.31,157.34,157.38,157.44,157.5,157.82,20.490000000000002,20.21,20.04,19.85,19.66,19.48,19.29,19.11,18.75,N/A,N/A -2012,3,23,3,30,101460,100280,99130,72.08,0,5.3100000000000005,5.7,5.76,5.79,5.8,5.8,5.79,5.78,5.7700000000000005,153.18,153.23,153.25,153.26,153.28,153.3,153.31,153.34,153.41,20.330000000000002,20.03,19.86,19.67,19.48,19.3,19.1,18.92,18.55,N/A,N/A -2012,3,23,4,30,101460,100270,99130,75.94,0,5.61,6.04,6.13,6.16,6.18,6.19,6.19,6.19,6.2,151.85,151.91,151.92000000000002,151.93,151.95000000000002,151.97,152,152.02,152.08,20.26,19.95,19.78,19.59,19.400000000000002,19.21,19.01,18.830000000000002,18.45,N/A,N/A -2012,3,23,5,30,101480,100300,99150,77.53,0,4.72,5.0200000000000005,5.07,5.07,5.07,5.0600000000000005,5.05,5.04,5.09,158,158,158.04,158.08,158.13,158.18,158.26,158.34,158.94,20.2,19.900000000000002,19.73,19.53,19.34,19.16,18.97,18.79,18.47,N/A,N/A -2012,3,23,6,30,101490,100300,99160,76.42,0,4.3500000000000005,4.61,4.64,4.64,4.64,4.62,4.61,4.6000000000000005,4.5600000000000005,164.3,164.38,164.4,164.43,164.49,164.55,164.65,164.76,166.18,20.2,19.89,19.72,19.52,19.330000000000002,19.150000000000002,18.95,18.78,18.54,N/A,N/A -2012,3,23,7,30,101510,100330,99180,78.71000000000001,0,4.53,4.8,4.8500000000000005,4.86,4.86,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.89,168.67000000000002,168.73,168.74,168.77,168.8,168.84,168.91,169,169.75,20.16,19.85,19.68,19.490000000000002,19.3,19.12,18.92,18.740000000000002,18.46,N/A,N/A -2012,3,23,8,30,101510,100330,99180,77.8,0,2.7,2.7800000000000002,2.7800000000000002,2.7600000000000002,2.7800000000000002,2.81,2.93,3.06,3.5,189.44,189.89000000000001,190.08,190.38,190.06,189.42000000000002,186,182.22,173.85,20.14,19.84,19.68,19.51,19.47,19.5,19.79,20.11,20.75,N/A,N/A -2012,3,23,9,30,101530,100340,99200,80.01,0,2.84,2.94,2.94,2.91,2.89,2.87,2.7800000000000002,2.69,2.73,178.23,178.42000000000002,178.47,178.55,178.86,179.28,179.97,180.63,182.41,20.080000000000002,19.78,19.62,19.44,19.29,19.150000000000002,19.34,19.580000000000002,20.45,N/A,N/A -2012,3,23,10,30,101530,100350,99200,84.33,0,2.15,2.2,2.19,2.16,2.12,2.07,1.82,1.59,1.52,195.87,196.22,196.37,196.58,197.36,198.39000000000001,203.6,208.35,210.47,19.89,19.580000000000002,19.41,19.22,19.080000000000002,18.97,19.25,19.6,20.95,N/A,N/A -2012,3,23,11,30,101560,100380,99230,88.19,0,1.82,1.86,1.85,1.84,1.82,1.8,1.68,1.54,1.07,196.86,196.95000000000002,196.99,197.07,197.21,197.38,199.74,202.58,219.33,19.72,19.400000000000002,19.23,19.04,18.85,18.67,18.56,18.490000000000002,19.04,N/A,N/A -2012,3,23,12,30,101640,100450,99300,87.69,0,1.43,1.47,1.47,1.46,1.46,1.45,1.45,1.44,1.42,326.67,326.71,326.79,326.88,326.97,327.07,327.19,327.31,327.76,19.66,19.34,19.17,18.97,18.78,18.59,18.39,18.21,17.830000000000002,N/A,N/A -2012,3,23,13,30,101650,100460,99310,84.52,0,3.45,3.59,3.59,3.56,3.54,3.5100000000000002,3.47,3.44,3.35,334.68,334.77,334.8,334.82,334.83,334.83,334.84000000000003,334.85,334.84000000000003,19.61,19.27,19.09,18.900000000000002,18.71,18.52,18.32,18.14,17.76,N/A,N/A -2012,3,23,14,30,101700,100510,99350,94.52,0,4.73,4.83,4.78,4.69,4.58,4.47,4.32,4.18,3.77,356.65000000000003,357.07,357.37,357.71,358.08,358.45,358.96,359.44,0.86,18.73,18.34,18.16,17.97,17.78,17.61,17.42,17.26,16.97,N/A,N/A -2012,3,23,15,30,101750,100550,99390,99.41,0,4.1,4.14,4.0600000000000005,3.95,3.75,3.5300000000000002,3.12,2.8000000000000003,2.67,4.94,5.28,5.53,5.8100000000000005,6.19,6.58,7.96,9.48,15.280000000000001,17.16,16.79,16.63,16.47,16.31,16.15,16.5,16.82,16.47,N/A,N/A -2012,3,23,16,30,101750,100550,99390,99.4,0,3.21,3.3000000000000003,3.29,3.27,3.25,3.24,3.3000000000000003,3.38,3.73,28.13,28.5,28.68,28.88,29.13,29.38,28.7,27.310000000000002,17.740000000000002,17.23,16.86,16.71,16.55,16.37,16.2,15.9,15.780000000000001,17.5,N/A,N/A -2012,3,23,17,30,101720,100520,99370,94.08,0,2.57,2.69,2.73,2.7800000000000002,2.92,3.12,3.58,4.01,3.71,36.01,35.26,34.7,34,32.69,31.09,28.7,26.36,24.7,17.79,17.43,17.26,17.1,17.01,16.95,17.400000000000002,17.830000000000002,17.98,N/A,N/A -2012,3,23,18,30,101720,100520,99370,84.05,0,2.48,2.56,2.59,2.63,2.85,3.17,3.45,3.67,3.58,36.24,35.83,35.36,34.660000000000004,32.76,30.14,27.77,25.68,23.67,18.89,18.55,18.400000000000002,18.26,18.240000000000002,18.29,18.47,18.63,18.51,N/A,N/A -2012,3,23,19,30,101700,100510,99360,79.81,0,1.82,1.87,1.87,1.8900000000000001,2.09,2.4,2.64,2.84,3.19,66.65,65.35,63.730000000000004,61.11,53.26,41.81,35.480000000000004,30.55,23.56,19.580000000000002,19.26,19.12,18.98,19.09,19.32,19.46,19.56,19.53,N/A,N/A -2012,3,23,20,30,101650,100460,99310,76.17,0,2.52,2.54,2.5,2.43,2.32,2.19,1.97,1.78,1.99,121.91,120.93,120.05,118.8,115.56,111.56,90.39,71.27,51.51,20.080000000000002,19.76,19.6,19.43,19.3,19.19,19.44,19.71,19.98,N/A,N/A -2012,3,23,21,30,101610,100430,99280,77.11,0,2.14,2.16,2.12,2.04,1.81,1.54,1.41,1.33,1.6400000000000001,139.26,138.53,137.51,135.71,124.4,110.42,93.08,77.57000000000001,49.1,20.31,20,19.86,19.72,19.81,20.02,20.3,20.56,20.81,N/A,N/A -2012,3,23,22,30,101580,100400,99250,78.63,0,2.3000000000000003,2.32,2.25,2.13,1.85,1.54,1.3900000000000001,1.3,1.4000000000000001,148.20000000000002,147.43,145.88,142.78,128.97,112.57000000000001,96.7,83.06,56.15,20.43,20.14,20.03,19.96,20.25,20.72,21.07,21.36,21.57,N/A,N/A -2012,3,23,23,30,101540,100360,99210,78.34,0,2.48,2.48,2.37,2.16,1.92,1.68,1.51,1.3800000000000001,1.5,144.29,143.41,139.93,132.58,122.83,112.88,97.91,84.47,56.97,20.490000000000002,20.22,20.240000000000002,20.47,20.89,21.42,21.73,21.97,22.22,N/A,N/A -2012,3,24,0,30,101510,100330,99190,79.12,0,2.39,2.37,2.15,1.78,1.45,1.18,1.05,0.97,1.3,159.32,157.61,151.66,140.51,127.12,114.38,91.94,71.46000000000001,36.45,20.46,20.31,20.54,21.16,21.740000000000002,22.28,22.61,22.86,23.2,N/A,N/A -2012,3,24,1,30,101520,100340,99200,84.69,0,4.49,4.61,4.53,4.4,4.0600000000000005,3.65,3.19,2.79,2.0300000000000002,158.24,157.9,156.77,154.29,150.9,147.4,142.77,138.65,123.95,20.330000000000002,20.06,20.01,20.06,20.45,21.01,21.490000000000002,21.92,22.54,N/A,N/A -2012,3,24,2,30,101520,100340,99200,83.09,0,3.56,3.68,3.68,3.71,3.52,3.22,2.92,2.66,2.19,163.13,162.65,160.48,155.57,150.97,146.98,142.26,138.05,127.02,20.45,20.240000000000002,20.43,21.07,21.67,22.23,22.48,22.650000000000002,22.900000000000002,N/A,N/A -2012,3,24,3,30,101520,100330,99190,84.13,0,4.04,4.18,4.26,4.47,4.39,4.16,3.8200000000000003,3.5300000000000002,2.93,169.05,168.89000000000001,167.84,165.48,162.34,159.1,156.51,154.35,147.52,20.44,20.19,20.240000000000002,20.52,21.14,21.900000000000002,22.19,22.38,22.54,N/A,N/A -2012,3,24,4,30,101510,100330,99190,84.64,0,3.92,4.08,4.17,4.39,4.3500000000000005,4.18,3.94,3.72,3.18,177.77,177.5,176.68,174.92000000000002,172.72,170.44,167.67000000000002,165.15,159,20.38,20.11,20.04,20.07,20.47,21.06,21.5,21.87,22.21,N/A,N/A -2012,3,24,5,30,101490,100310,99170,85.7,0,2.92,3,3.14,3.5500000000000003,3.79,3.92,3.71,3.49,3.0300000000000002,191.36,191.23000000000002,189.79,186.03,181.70000000000002,177.35,175.22,173.78,170.76,20.36,20.09,20.1,20.34,20.92,21.64,21.97,22.19,22.21,N/A,N/A -2012,3,24,6,30,101520,100330,99190,87.51,0,2.43,2.48,2.6,2.92,3.09,3.16,3.0700000000000003,2.95,2.62,208.63,208.59,206.97,202.84,197.68,192.16,187.41,183.49,179.14000000000001,20.35,20.080000000000002,20.11,20.38,20.95,21.66,22.080000000000002,22.39,22.46,N/A,N/A -2012,3,24,7,30,101540,100360,99220,86.66,0,2.66,2.71,2.73,2.81,2.8000000000000003,2.72,2.48,2.24,1.83,233.28,232.71,231.24,227.93,224.6,221.47,218.09,215.16,206.03,20.42,20.13,20.03,20,20.41,21.05,21.740000000000002,22.36,22.62,N/A,N/A -2012,3,24,8,30,101550,100360,99220,87.28,0,2.9,3.0100000000000002,3.02,3.0300000000000002,3.15,3.3200000000000003,3.49,3.63,3.7,225.44,225.02,224.52,223.67000000000002,220.95000000000002,217.23000000000002,214.22,211.57,207.67000000000002,20.43,20.13,19.98,19.81,19.85,20,20.25,20.490000000000002,20.92,N/A,N/A -2012,3,24,9,30,101580,100400,99250,88.87,0,3.08,3.23,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.2800000000000002,3.31,3.59,243.54,243.32,243.17000000000002,243.02,242.84,242.65,242.37,242.04,239.11,20.37,20.06,19.89,19.69,19.51,19.330000000000002,19.14,18.97,19.1,N/A,N/A -2012,3,24,10,30,101600,100420,99270,96.05,0,4.25,4.46,4.47,4.44,4.39,4.3500000000000005,4.2700000000000005,4.2,4.05,250.12,250.46,250.76000000000002,251.09,251.43,251.77,252.34,252.86,252.74,20.07,19.72,19.54,19.330000000000002,19.150000000000002,18.98,18.84,18.72,18.43,N/A,N/A -2012,3,24,11,30,101640,100450,99290,99.48,0,3.41,3.5500000000000003,3.5700000000000003,3.5700000000000003,3.56,3.56,3.56,3.56,3.42,241.96,242.95000000000002,243.56,244.28,245.22,246.18,247.79,249.5,257.14,17.84,17.47,17.31,17.16,17,16.84,16.63,16.43,16.240000000000002,N/A,N/A -2012,3,24,12,30,101660,100470,99310,99.34,0,3.98,4.19,4.25,4.2700000000000005,4.29,4.3100000000000005,4.32,4.34,4.3500000000000005,264.49,265.81,266.37,266.84000000000003,267.24,267.58,267.9,268.18,268.96,18.240000000000002,17.87,17.71,17.56,17.41,17.27,17.1,16.94,16.43,N/A,N/A -2012,3,24,13,30,101680,100490,99330,99.48,0,5.05,5.08,4.96,4.79,4.6000000000000005,4.42,4.17,3.95,3.33,301.19,299.88,299.04,298.13,297.07,296.06,294.42,292.73,285.18,17.8,17.400000000000002,17.240000000000002,17.12,17,16.89,16.77,16.65,16.4,N/A,N/A -2012,3,24,14,30,101730,100530,99370,99.48,0,5.01,5.0600000000000005,4.95,4.8100000000000005,4.64,4.47,4.26,4.0600000000000005,3.5100000000000002,306.57,306.53000000000003,306.46,306.36,306.17,305.96,305.5,304.98,302.52,17.650000000000002,17.26,17.11,16.98,16.85,16.73,16.62,16.5,16.18,N/A,N/A -2012,3,24,15,30,101730,100530,99370,96,0,4.88,5.01,4.97,4.9,4.82,4.76,4.7,4.66,4.68,323.56,322.71,322.12,321.48,320.78000000000003,320.1,320.17,321.11,330.97,17.3,16.87,16.68,16.490000000000002,16.3,16.13,16.02,16.07,17.72,N/A,N/A -2012,3,24,16,30,101720,100520,99360,95.72,0,4.2,4.33,4.32,4.28,4.24,4.19,4.14,4.09,4.1,336.83,336.85,336.84000000000003,336.83,336.83,336.82,336.79,337.36,346.38,17.86,17.45,17.26,17.07,16.88,16.69,16.47,16.34,17.400000000000002,N/A,N/A -2012,3,24,17,30,101700,100510,99350,93.04,0,1.78,1.83,1.83,1.83,1.83,1.83,1.82,1.83,2.3000000000000003,325.56,325.53000000000003,325.57,325.66,325.83,326.03000000000003,326.32,327.2,339.06,18.36,17.97,17.79,17.6,17.41,17.240000000000002,17.05,16.91,17.18,N/A,N/A -2012,3,24,18,30,101680,100490,99340,89.01,0,1.18,1.26,1.3,1.36,1.52,1.74,2.3000000000000003,2.98,3.63,332.09000000000003,333.18,333.96,334.97,336.92,339.45,343.31,347.82,353.73,19.01,18.650000000000002,18.48,18.31,18.19,18.1,18.32,18.580000000000002,19.45,N/A,N/A -2012,3,24,19,30,101650,100470,99320,86.75,0,1.8900000000000001,1.85,1.78,1.68,1.54,1.3900000000000001,1.07,0.87,1.72,184,184.76,185.42000000000002,186.26,187.86,189.58,265.28000000000003,321.91,339.37,19.69,19.34,19.16,18.98,18.8,18.64,18.7,18.8,19.28,N/A,N/A -2012,3,24,20,30,101610,100420,99280,84.51,0,3.47,3.45,3.2600000000000002,2.96,2.2600000000000002,1.61,1.36,1.21,1.54,195,195.64000000000001,196.77,198.73000000000002,211.3,224.19,250.19,272.95,310.31,20.02,19.69,19.55,19.42,19.46,19.59,19.8,20,20.75,N/A,N/A -2012,3,24,21,30,101570,100390,99240,80.98,0,2.95,2.8000000000000003,2.38,1.74,1.46,1.31,1.37,1.46,1.84,193.66,194.9,202.19,215,230.22,245.88,264.82,283.01,301.91,20.6,20.35,20.42,20.72,21.1,21.5,21.76,21.98,22.1,N/A,N/A -2012,3,24,22,30,101530,100350,99210,74.68,0,3.0300000000000002,2.85,2.2,1.28,0.79,0.52,0.5,0.54,1.1500000000000001,169.26,169.74,172.73,177.38,194.01,210.13,251.91,295.2,323.32,21.18,21.05,21.28,21.900000000000002,22.26,22.490000000000002,22.54,22.55,22.56,N/A,N/A -2012,3,24,23,30,101510,100330,99200,71.47,0,3.63,3.5500000000000003,3.2600000000000002,2.82,2.36,1.95,1.53,1.21,0.7000000000000001,178.01,177.32,177.14000000000001,177.25,178.99,181.15,187.25,192.8,221.72,21.5,21.84,22.150000000000002,22.59,22.86,23.02,23.1,23.150000000000002,23.04,N/A,N/A -2012,3,25,0,30,101500,100320,99180,77.82000000000001,0,3.74,3.95,3.77,3.38,2.96,2.58,2.16,1.83,1.1500000000000001,183.31,183.64000000000001,183.82,184.04,184.66,185.37,187.23,188.99,198.06,21.38,21.61,22.06,22.88,23.27,23.43,23.44,23.42,23.17,N/A,N/A -2012,3,25,1,30,101530,100350,99210,70.16,0,4.5,4.9,4.89,4.73,4.43,4.1,3.65,3.25,2.38,193.08,192.96,192.49,191.59,191.35,191.44,191.85,192.26,194.13,21.55,21.42,21.55,21.92,22.19,22.41,22.68,22.92,23.04,N/A,N/A -2012,3,25,2,30,101550,100370,99230,73.59,0,4.05,4.41,4.58,4.83,4.71,4.42,4.0600000000000005,3.74,2.93,205.16,204.6,203.39000000000001,200.98000000000002,199.64000000000001,198.96,198.23000000000002,197.61,196.75,21.42,21.31,21.41,21.73,22.01,22.26,22.43,22.56,22.75,N/A,N/A -2012,3,25,3,30,101560,100380,99250,77.47,0,2.91,3.12,3.2,3.35,3.24,3.0100000000000002,2.7,2.43,1.83,226.08,225.53,223.68,219.74,216.19,213.21,212.17000000000002,211.73000000000002,215.05,21.25,21.150000000000002,21.38,21.990000000000002,22.47,22.85,22.990000000000002,23.06,22.98,N/A,N/A -2012,3,25,4,30,101580,100400,99260,78.85000000000001,0,2.98,3.11,3.22,3.5,3.6,3.6,3.38,3.16,2.62,228.78,228.71,227.83,225.69,222.54,219.02,216.88,215.33,214.17000000000002,21.19,20.990000000000002,21.1,21.52,21.990000000000002,22.47,22.68,22.82,22.72,N/A,N/A -2012,3,25,5,30,101590,100410,99270,84.07000000000001,0,3.23,3.37,3.46,3.7,3.81,3.84,3.62,3.38,2.74,235.42000000000002,235.51,235.58,235.76,234.15,231.76,229.97,228.6,227.94,21.01,20.76,20.73,20.84,21.13,21.5,21.88,22.22,22.62,N/A,N/A -2012,3,25,6,30,101610,100430,99290,86.89,0,3.18,3.38,3.64,4.2700000000000005,4.51,4.53,4.2700000000000005,4,3.59,254.02,252.71,250.28,245.22,241.75,239.47,239,238.92000000000002,237.77,21.05,20.830000000000002,20.92,21.28,21.72,22.18,22.18,22.080000000000002,21.900000000000002,N/A,N/A -2012,3,25,7,30,101630,100450,99310,89.05,0,3.36,3.5,3.5100000000000002,3.52,3.33,3.0300000000000002,3.09,3.21,3.22,246.47,246.79,247.39000000000001,248.61,251.64000000000001,255.51000000000002,256.08,255.75,250.66,21.04,20.78,20.66,20.580000000000002,20.47,20.35,20.51,20.740000000000002,21.89,N/A,N/A -2012,3,25,8,30,101640,100460,99320,91.17,0,3.52,3.63,3.67,3.8000000000000003,3.96,4.14,4.08,3.98,3.3200000000000003,256.98,256.95,256.89,256.75,257.12,257.75,259.42,261.05,263.98,21.02,20.72,20.59,20.47,20.650000000000002,20.98,21.35,21.68,21.85,N/A,N/A -2012,3,25,9,30,101640,100460,99320,94.44,0,3.18,3.27,3.27,3.2600000000000002,3.18,3.0700000000000003,2.97,2.87,2.4,270.15,270.17,270.24,270.37,271.76,273.72,273.46,272.83,272.53000000000003,20.89,20.59,20.42,20.240000000000002,20.240000000000002,20.35,21.02,21.72,22.48,N/A,N/A -2012,3,25,10,30,101660,100480,99340,95.42,0,3.21,3.35,3.38,3.39,3.49,3.63,3.5500000000000003,3.42,2.96,263.91,263.58,263.43,263.33,263.6,264.08,266.98,270.06,279.75,20.740000000000002,20.42,20.240000000000002,20.05,19.86,19.68,20,20.41,21.35,N/A,N/A -2012,3,25,11,30,101700,100510,99360,99.44,0,3.58,3.6,3.52,3.4,3.18,2.94,2.75,2.63,2.95,258.74,259.98,261.07,262.57,267.38,273.1,288.78000000000003,302.28000000000003,307.2,18.77,18.42,18.25,18.07,17.77,17.44,18.34,19.400000000000002,22.22,N/A,N/A -2012,3,25,12,30,101720,100530,99380,99.32000000000001,0,3.12,3.2,3.19,3.16,3.12,3.0700000000000003,3,2.94,2.98,282.90000000000003,281.76,280.67,279.26,277.33,275.31,287.21,299,309.29,18.86,18.52,18.35,18.150000000000002,17.79,17.37,19.28,21.18,21.37,N/A,N/A -2012,3,25,13,30,101750,100560,99410,99.34,0.4,3.19,3.25,3.23,3.19,3.16,3.13,3.08,3.06,3.45,276.67,275.88,275.3,274.61,273.29,271.79,282.17,292.88,310.38,18.75,18.41,18.26,18.09,17.8,17.490000000000002,18.1,18.8,20.240000000000002,N/A,N/A -2012,3,25,14,30,101790,100600,99450,99.45,0,1.58,1.61,1.59,1.57,1.55,1.54,1.84,2.21,3.0500000000000003,285.59000000000003,286.55,287.05,287.48,287.44,287.21,300.85,316.3,326.82,18.35,18,17.85,17.7,17.52,17.35,17.89,18.5,19.82,N/A,N/A -2012,3,25,15,30,101800,100610,99460,99.31,0,1.72,1.76,1.76,1.75,1.77,1.79,1.95,2.18,3.37,285.5,288.48,290.83,293.73,297.25,300.91,308.7,316.84000000000003,332.81,18.62,18.29,18.150000000000002,18.02,17.88,17.740000000000002,17.53,17.56,20.04,N/A,N/A -2012,3,25,16,30,101790,100600,99450,99.28,0,2.4,2.46,2.44,2.42,2.37,2.33,2.46,2.63,3.45,280.72,282.16,282.97,283.66,284.45,285.24,298.54,313.03000000000003,331.99,19.16,18.87,18.75,18.61,18.48,18.36,18.080000000000002,17.89,19.48,N/A,N/A -2012,3,25,17,30,101790,100600,99450,99.32000000000001,0,2.24,2.27,2.23,2.19,2.16,2.15,2.23,2.34,3,261,263.23,265.47,268.63,275.29,283.40000000000003,297.11,310.31,326.96,19.02,18.71,18.57,18.43,18.28,18.13,18.25,18.46,20.01,N/A,N/A -2012,3,25,18,30,101760,100570,99430,95.54,0,2,2.0100000000000002,2,2.0100000000000002,2.2,2.5100000000000002,2.81,3.09,3.39,261.17,264.15,268.13,274.97,286.36,301.17,307.88,312.66,315.5,19.67,19.330000000000002,19.2,19.11,19.37,19.81,20.37,20.87,20.81,N/A,N/A -2012,3,25,19,30,101740,100560,99410,91.3,0,2.17,2.12,2.0100000000000002,1.86,1.86,1.92,2.07,2.22,2.38,222.6,224.72,233.26,250.55,265.11,278.63,287.09000000000003,294.09000000000003,298.57,20.63,20.330000000000002,20.330000000000002,20.490000000000002,20.77,21.11,21.25,21.35,21.42,N/A,N/A -2012,3,25,20,30,101680,100500,99360,87.8,0,3.0300000000000002,3.02,2.92,2.79,2.66,2.5500000000000003,2.5300000000000002,2.52,2.57,210.62,211.48000000000002,214.15,219.61,225.04,230.21,233.61,236.36,240.53,21.35,21.09,21.13,21.39,21.63,21.84,21.88,21.87,21.830000000000002,N/A,N/A -2012,3,25,21,30,101640,100470,99330,85.38,0,3.54,3.58,3.54,3.52,3.43,3.3200000000000003,3.21,3.12,2.86,202.48000000000002,202.92000000000002,204.49,207.83,212.14000000000001,216.71,220.78,224.28,232.21,21.82,21.55,21.53,21.67,21.89,22.13,22.14,22.1,22.01,N/A,N/A -2012,3,25,22,30,101620,100440,99300,84.52,0,4.75,4.96,4.93,4.9,4.75,4.54,4.2700000000000005,4.03,3.48,193.97,194.13,194.47,195.15,197.35,200.22,202.51,204.37,207.31,21.94,21.68,21.580000000000002,21.54,21.73,22.05,22.19,22.28,22.22,N/A,N/A -2012,3,25,23,30,101610,100430,99300,83.76,0,4.4,4.75,4.84,4.95,4.8,4.54,4.25,4,3.45,187.65,188.08,189.35,192.01,194.32,196.27,196.78,196.95000000000002,195.72,21.8,21.63,21.740000000000002,22.12,22.45,22.740000000000002,22.77,22.740000000000002,22.72,N/A,N/A -2012,3,26,0,30,101600,100420,99290,85.84,0,4.07,4.79,5.04,5.19,5.08,4.8500000000000005,4.6000000000000005,4.37,3.86,189.64000000000001,190.37,191.66,194.15,195.82,196.94,197.04,196.92000000000002,195.02,21.650000000000002,21.7,21.93,22.400000000000002,22.67,22.84,22.84,22.8,22.76,N/A,N/A -2012,3,26,1,30,101610,100440,99300,86.03,0,3.96,4.28,4.42,4.65,4.67,4.58,4.37,4.16,3.74,184.43,184.72,185.66,187.76,190.52,193.45000000000002,195.01,196.04,193.99,21.61,21.400000000000002,21.47,21.81,22.19,22.59,22.71,22.76,22.650000000000002,N/A,N/A -2012,3,26,2,30,101640,100460,99320,86.85000000000001,0,3.31,3.58,3.74,4.0200000000000005,4.08,4.0200000000000005,3.87,3.71,3.33,188.58,188.81,189.73,191.81,194.99,198.56,201.67000000000002,204.24,204.6,21.56,21.36,21.42,21.71,22.04,22.400000000000002,22.55,22.64,22.53,N/A,N/A -2012,3,26,3,30,101650,100470,99330,87.65,0,3.6,3.81,3.94,4.22,4.39,4.48,4.43,4.34,3.97,205.62,205.63,205.49,205.22,205.64000000000001,206.42000000000002,207.95000000000002,209.43,211.03,21.48,21.240000000000002,21.18,21.21,21.41,21.69,21.89,22.05,22.11,N/A,N/A -2012,3,26,4,30,101650,100470,99330,88.66,0,3.42,3.6,3.64,3.72,3.88,4.08,4.2,4.28,3.92,224.34,224.18,223.92000000000002,223.47,222.56,221.39000000000001,220.83,220.47,220.6,21.37,21.1,20.95,20.8,20.830000000000002,20.96,21.27,21.57,21.92,N/A,N/A -2012,3,26,5,30,101650,100470,99330,88.37,0,3.8200000000000003,4.01,4.04,4.1,4.3100000000000005,4.61,4.75,4.8500000000000005,4.54,234.65,234.68,234.6,234.43,233.54,232.24,231.21,230.39000000000001,232.03,21.29,21.01,20.86,20.72,20.71,20.78,21.01,21.25,21.64,N/A,N/A -2012,3,26,6,30,101680,100500,99360,87.47,0,3.49,3.63,3.64,3.66,3.9,4.28,4.49,4.64,4.17,239.82,239.74,239.65,239.5,238.56,237.14000000000001,236.19,235.46,237.24,21.330000000000002,21.04,20.89,20.73,20.78,20.95,21.36,21.75,21.94,N/A,N/A -2012,3,26,7,30,101700,100520,99380,85.21000000000001,0,3.33,3.48,3.52,3.58,3.9,4.38,4.48,4.49,4.18,249.14000000000001,248.91,248.66,248.25,246.53,243.98000000000002,243.07,242.62,243.20000000000002,21.45,21.17,21.03,20.89,21.06,21.38,21.68,21.93,21.98,N/A,N/A -2012,3,26,8,30,101700,100520,99380,84.98,0,2.89,3,3,2.99,3.2,3.5700000000000003,3.84,4.07,3.99,255.96,255.88,255.74,255.51000000000002,253.5,250.3,248.3,246.73000000000002,248.05,21.44,21.14,20.98,20.81,20.82,20.93,21.22,21.51,21.7,N/A,N/A -2012,3,26,9,30,101720,100530,99390,84.73,0,2.48,2.61,2.63,2.65,2.73,2.83,3.19,3.59,3.8000000000000003,250.18,249.86,249.62,249.27,248.47,247.45000000000002,244.78,241.88,241.57,21.41,21.12,20.96,20.78,20.63,20.5,20.61,20.77,21.14,N/A,N/A -2012,3,26,10,30,101730,100550,99410,84.85000000000001,0,2.85,3,3.02,3.0300000000000002,3.0500000000000003,3.08,3.21,3.38,3.99,252.47,252.19,252.02,251.79,251.46,251.09,249.94,248.68,245.74,21.37,21.07,20.900000000000002,20.72,20.54,20.38,20.25,20.150000000000002,20.490000000000002,N/A,N/A -2012,3,26,11,30,101750,100570,99430,84.73,0,2.42,2.5300000000000002,2.54,2.54,2.54,2.54,2.5500000000000003,2.58,2.96,249.3,249.39000000000001,249.42000000000002,249.43,249.44,249.45000000000002,249.31,249.16,248.01000000000002,21.31,21,20.830000000000002,20.650000000000002,20.46,20.29,20.11,19.96,19.900000000000002,N/A,N/A -2012,3,26,12,30,101780,100600,99460,85.76,0,1.9100000000000001,1.99,1.99,1.99,1.98,1.97,1.96,1.94,1.9100000000000001,246.07,246.17000000000002,246.31,246.43,246.57,246.71,246.88,247.06,248.03,21.22,20.900000000000002,20.73,20.54,20.35,20.16,19.97,19.79,19.44,N/A,N/A -2012,3,26,13,30,101810,100630,99480,87.28,0,1.77,1.83,1.82,1.81,1.8,1.79,1.78,1.76,1.75,246.12,245.87,245.75,245.6,245.41,245.22,244.93,244.63,243.28,21.13,20.81,20.64,20.45,20.25,20.07,19.88,19.7,19.35,N/A,N/A -2012,3,26,14,30,101850,100670,99520,90.03,0,1.47,1.51,1.5,1.49,1.48,1.46,1.45,1.43,1.4000000000000001,268.74,267.41,266.52,265.6,264.64,263.71,262.59000000000003,261.49,257.36,21.03,20.7,20.53,20.34,20.14,19.96,19.77,19.59,19.22,N/A,N/A -2012,3,26,15,30,101870,100680,99530,93.11,0,1.61,1.6,1.57,1.54,1.5,1.47,1.44,1.41,1.35,285.8,282.58,280.51,278.36,276.09000000000003,273.87,271.1,268.5,260.92,20.88,20.53,20.35,20.16,19.97,19.78,19.580000000000002,19.39,19.03,N/A,N/A -2012,3,26,16,30,101860,100680,99530,92.29,0,1.6400000000000001,1.62,1.58,1.54,1.49,1.44,1.3800000000000001,1.32,1.18,276.29,275.1,274.23,273.22,271.97,270.68,268.69,266.76,259.47,20.73,20.37,20.19,19.990000000000002,19.79,19.6,19.39,19.2,18.77,N/A,N/A -2012,3,26,17,30,101840,100650,99510,93.91,0,1.51,1.3900000000000001,1.29,1.18,1.05,0.93,0.76,0.63,0.38,278.79,279.69,280.29,280.99,282.31,283.71,289.34000000000003,294.57,295.78000000000003,20.48,20.13,19.96,19.78,19.6,19.44,19.28,19.14,19.080000000000002,N/A,N/A -2012,3,26,18,30,101820,100640,99490,94.83,0,1.78,1.75,1.69,1.62,1.51,1.4000000000000001,1.02,0.73,0.28,265.99,265.63,265.5,265.37,264.88,264.3,257.8,251.27,223.81,20.5,20.150000000000002,19.97,19.79,19.63,19.48,19.45,19.47,20.06,N/A,N/A -2012,3,26,19,30,101810,100630,99490,89.9,0,1.22,1.21,1.19,1.1500000000000001,1.11,1.07,1.01,0.93,0.5,206.57,204.95000000000002,203.78,202.17000000000002,198.37,193.76,181.53,170.07,154.98,20.990000000000002,20.650000000000002,20.490000000000002,20.31,20.19,20.1,20.31,20.56,20.94,N/A,N/A -2012,3,26,20,30,101770,100590,99440,87.77,0,1.74,1.77,1.75,1.73,1.7,1.6600000000000001,1.57,1.49,1.16,196.36,195.08,194.1,192.82,190.20000000000002,187.05,176.41,166.01,147.92000000000002,21.36,21.02,20.85,20.68,20.54,20.43,20.64,20.89,21.42,N/A,N/A -2012,3,26,21,30,101730,100550,99410,83.31,0,2.42,2.49,2.48,2.45,2.43,2.4,2.38,2.35,2.18,180.47,179.66,179.05,178.25,176.61,174.61,166.13,157.37,145.03,21.79,21.46,21.29,21.12,20.98,20.86,21.080000000000002,21.34,21.7,N/A,N/A -2012,3,26,22,30,101670,100490,99350,80.11,0,2.97,3.08,3.0700000000000003,3.0500000000000003,3.04,3.02,3.02,3.0100000000000002,2.91,177.25,176.57,176.06,175.4,174.12,172.57,166.76,160.70000000000002,150.26,22.04,21.73,21.57,21.39,21.25,21.13,21.25,21.41,21.75,N/A,N/A -2012,3,26,23,30,101650,100480,99340,82.32000000000001,0,3.22,3.38,3.4,3.39,3.41,3.44,3.5700000000000003,3.71,3.71,168.41,167.89000000000001,167.49,166.97,165.9,164.57,159.91,154.87,147.98,22.02,21.73,21.57,21.39,21.25,21.13,21.240000000000002,21.39,21.740000000000002,N/A,N/A -2012,3,27,0,30,101640,100460,99320,82.21000000000001,0,3.17,3.36,3.37,3.37,3.38,3.41,3.56,3.72,3.73,169.27,169.02,168.83,168.55,167.94,167.17000000000002,162.72,157.8,150.26,22.01,21.73,21.57,21.400000000000002,21.240000000000002,21.1,21.2,21.330000000000002,21.72,N/A,N/A -2012,3,27,1,30,101630,100450,99310,81.58,0,3.58,3.79,3.8000000000000003,3.79,3.8200000000000003,3.86,3.99,4.13,4.12,172.92000000000002,172.75,172.58,172.35,171.66,170.73,166.85,162.67000000000002,156.12,21.94,21.67,21.52,21.34,21.19,21.07,21.18,21.32,21.69,N/A,N/A -2012,3,27,2,30,101650,100470,99330,82.41,0,4.12,4.37,4.4,4.4,4.47,4.57,4.74,4.89,4.88,172.19,172.07,171.96,171.8,171.29,170.62,168.06,165.29,159.94,21.86,21.59,21.43,21.26,21.14,21.04,21.17,21.330000000000002,21.7,N/A,N/A -2012,3,27,3,30,101650,100470,99330,83.28,0,4.36,4.64,4.66,4.67,4.75,4.87,5.1000000000000005,5.33,5.34,169.56,169.45000000000002,169.38,169.27,168.95000000000002,168.52,166.85,164.99,160.26,21.76,21.48,21.32,21.150000000000002,21.03,20.94,21.1,21.29,21.68,N/A,N/A -2012,3,27,4,30,101650,100470,99320,83.92,0,4.37,4.65,4.68,4.68,4.69,4.7,4.9,5.13,5.48,167.82,167.76,167.68,167.6,167.46,167.31,166.5,165.59,162.14000000000001,21.650000000000002,21.36,21.2,21.01,20.84,20.67,20.61,20.59,21.22,N/A,N/A -2012,3,27,5,30,101650,100470,99330,84.92,0,4.5200000000000005,4.8,4.84,4.84,4.84,4.84,4.91,5,5.55,169,168.98,168.97,168.95000000000002,168.93,168.9,168.87,168.84,168.16,21.54,21.25,21.080000000000002,20.89,20.71,20.54,20.400000000000002,20.29,20.68,N/A,N/A -2012,3,27,6,30,101670,100490,99350,84.2,0,4.34,4.6000000000000005,4.64,4.64,4.65,4.65,4.69,4.73,5.18,170.29,170.29,170.28,170.27,170.25,170.24,170.24,170.25,170.82,21.53,21.21,21.04,20.86,20.68,20.51,20.35,20.2,20.31,N/A,N/A -2012,3,27,7,30,101720,100530,99390,83.72,0,4,4.24,4.28,4.3,4.3100000000000005,4.32,4.3500000000000005,4.39,4.84,175.51,175.47,175.45000000000002,175.42000000000002,175.4,175.37,175.34,175.31,175.78,21.56,21.25,21.080000000000002,20.89,20.71,20.53,20.36,20.2,20.16,N/A,N/A -2012,3,27,8,30,101710,100530,99380,84.42,0,4.01,4.24,4.2700000000000005,4.28,4.28,4.2700000000000005,4.2700000000000005,4.26,4.36,174.78,174.86,174.89000000000001,174.93,175,175.07,175.18,175.3,176.20000000000002,21.51,21.19,21.02,20.830000000000002,20.64,20.46,20.27,20.09,19.84,N/A,N/A -2012,3,27,9,30,101720,100540,99390,84.46000000000001,0,4.18,4.44,4.49,4.5,4.5,4.5,4.5,4.5,4.5600000000000005,180.08,179.99,179.98,179.97,179.96,179.96,179.95000000000002,179.95000000000002,180.03,21.5,21.18,21,20.81,20.62,20.44,20.25,20.07,19.740000000000002,N/A,N/A -2012,3,27,10,30,101740,100560,99420,83.74,0,4.04,4.29,4.34,4.36,4.37,4.37,4.38,4.38,4.4,186.27,186.18,186.14000000000001,186.09,186.03,185.97,185.9,185.83,185.66,21.5,21.18,21,20.81,20.62,20.44,20.25,20.07,19.71,N/A,N/A -2012,3,27,11,30,101770,100590,99450,84.82000000000001,0,3.7600000000000002,3.98,4.03,4.04,4.04,4.05,4.04,4.03,4.0200000000000005,185.05,185.06,185.06,185.07,185.08,185.09,185.1,185.11,185.17000000000002,21.43,21.1,20.93,20.740000000000002,20.54,20.36,20.16,19.98,19.6,N/A,N/A -2012,3,27,12,30,101800,100620,99470,84.86,0,3.41,3.62,3.66,3.67,3.68,3.69,3.69,3.69,3.69,179.01,178.99,179,179.01,179.03,179.04,179.06,179.08,179.14000000000001,21.39,21.07,20.89,20.7,20.5,20.32,20.12,19.94,19.55,N/A,N/A -2012,3,27,13,30,101830,100650,99510,85.54,0,3.47,3.68,3.71,3.74,3.74,3.75,3.75,3.7600000000000002,3.75,177.8,177.71,177.66,177.61,177.56,177.5,177.43,177.37,177.23,21.36,21.03,20.85,20.650000000000002,20.46,20.27,20.080000000000002,19.89,19.51,N/A,N/A -2012,3,27,14,30,101880,100700,99550,85.74,0,3.25,3.44,3.48,3.49,3.5100000000000002,3.5100000000000002,3.52,3.52,3.52,166.79,166.77,166.76,166.74,166.72,166.71,166.68,166.66,166.6,21.35,21.02,20.84,20.650000000000002,20.45,20.27,20.07,19.89,19.5,N/A,N/A -2012,3,27,15,30,101900,100720,99570,85.36,0,3.56,3.7600000000000002,3.81,3.84,3.85,3.87,3.88,3.89,3.91,158.21,158.25,158.24,158.21,158.19,158.16,158.11,158.08,157.97,21.43,21.09,20.92,20.72,20.53,20.35,20.150000000000002,19.97,19.580000000000002,N/A,N/A -2012,3,27,16,30,101900,100720,99570,84.67,0,3.85,4.11,4.17,4.21,4.24,4.26,4.28,4.3,4.33,159.13,158.97,158.9,158.83,158.77,158.72,158.65,158.59,158.47,21.54,21.2,21.02,20.82,20.63,20.44,20.240000000000002,20.06,19.67,N/A,N/A -2012,3,27,17,30,101900,100720,99580,82.28,0,4.28,4.58,4.66,4.71,4.74,4.7700000000000005,4.8,4.82,4.87,160.88,160.85,160.79,160.73,160.66,160.61,160.55,160.49,160.34,21.71,21.36,21.19,20.990000000000002,20.8,20.61,20.41,20.23,19.84,N/A,N/A -2012,3,27,18,30,101910,100730,99580,83.25,0,4.74,5.08,5.16,5.21,5.24,5.26,5.2700000000000005,5.29,5.3,161.92000000000002,161.74,161.66,161.59,161.52,161.47,161.41,161.36,161.28,21.78,21.43,21.25,21.05,20.86,20.67,20.47,20.29,19.900000000000002,N/A,N/A -2012,3,27,19,30,101900,100720,99580,82.86,0,4.64,4.97,5.04,5.09,5.12,5.14,5.16,5.18,5.2,161.38,161.22,161.15,161.07,160.99,160.92000000000002,160.85,160.78,160.64000000000001,21.86,21.52,21.34,21.150000000000002,20.95,20.77,20.57,20.38,20,N/A,N/A -2012,3,27,20,30,101890,100710,99570,82.3,0,4.36,4.69,4.7700000000000005,4.82,4.8500000000000005,4.88,4.9,4.92,4.94,153.14000000000001,153.22,153.3,153.38,153.46,153.53,153.62,153.69,153.87,21.95,21.61,21.44,21.240000000000002,21.05,20.86,20.66,20.48,20.09,N/A,N/A -2012,3,27,21,30,101870,100690,99540,82.45,0,3.89,4.15,4.22,4.26,4.29,4.32,4.34,4.36,4.4,155.16,155.18,155.18,155.18,155.18,155.18,155.19,155.19,155.21,22,21.68,21.5,21.31,21.12,20.93,20.740000000000002,20.56,20.17,N/A,N/A -2012,3,27,22,30,101840,100660,99520,82.33,0,4.3100000000000005,4.62,4.7,4.74,4.76,4.78,4.8,4.8100000000000005,4.82,146.44,147.18,147.62,148.02,148.39000000000001,148.72,149.06,149.36,149.97,21.98,21.66,21.490000000000002,21.3,21.1,20.92,20.72,20.54,20.150000000000002,N/A,N/A -2012,3,27,23,30,101820,100640,99490,84.23,0,4.13,4.43,4.5,4.54,4.57,4.59,4.61,4.63,4.67,146.67000000000002,146.58,146.46,146.31,146.16,146,145.82,145.65,145.22,21.88,21.57,21.400000000000002,21.21,21.01,20.830000000000002,20.63,20.45,20.07,N/A,N/A -2012,3,28,0,30,101790,100610,99470,85.35000000000001,0,5.36,5.83,5.94,5.99,6.03,6.05,6.0600000000000005,6.0600000000000005,6.05,147.13,147.53,147.70000000000002,147.86,147.98,148.1,148.20000000000002,148.29,148.48,21.92,21.62,21.45,21.25,21.06,20.88,20.68,20.490000000000002,20.1,N/A,N/A -2012,3,28,1,30,101800,100620,99470,86.96000000000001,0,5.19,5.63,5.74,5.8,5.8500000000000005,5.89,5.93,5.96,6.0200000000000005,139.53,139.46,139.41,139.35,139.29,139.23,139.17000000000002,139.11,138.98,21.82,21.5,21.330000000000002,21.14,20.95,20.76,20.57,20.38,20,N/A,N/A -2012,3,28,2,30,101810,100630,99480,87.14,0,6.25,6.78,6.9,6.96,7,7.03,7.04,7.0600000000000005,7.07,139.28,139.38,139.44,139.49,139.55,139.6,139.65,139.70000000000002,139.81,21.830000000000002,21.51,21.34,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A -2012,3,28,3,30,101810,100630,99490,87.31,0,6.66,7.25,7.4,7.48,7.53,7.57,7.59,7.61,7.63,139.49,139.56,139.67000000000002,139.77,139.88,139.98,140.1,140.21,140.48,21.8,21.490000000000002,21.32,21.12,20.93,20.740000000000002,20.54,20.36,19.98,N/A,N/A -2012,3,28,4,30,101810,100630,99480,85.67,0,6.51,7.08,7.19,7.24,7.26,7.2700000000000005,7.26,7.25,7.23,141.74,141.76,141.87,142.02,142.21,142.41,142.68,142.95000000000002,143.76,21.93,21.62,21.45,21.26,21.07,20.89,20.69,20.52,20.14,N/A,N/A -2012,3,28,5,30,101770,100590,99450,87.53,0,7.11,7.75,7.9,7.98,8.040000000000001,8.08,8.1,8.120000000000001,8.15,145.01,145.05,145.1,145.16,145.23,145.29,145.37,145.45000000000002,145.64000000000001,21.8,21.48,21.3,21.11,20.92,20.73,20.53,20.35,19.97,N/A,N/A -2012,3,28,6,30,101820,100640,99490,88.9,0,7.25,7.97,8.15,8.25,8.32,8.370000000000001,8.39,8.41,8.43,154.08,154.6,154.81,154.99,155.15,155.27,155.4,155.5,155.69,21.88,21.56,21.39,21.19,21,20.81,20.61,20.43,20.04,N/A,N/A -2012,3,28,7,30,101800,100620,99480,87.66,0,6.98,7.59,7.73,7.8100000000000005,7.86,7.890000000000001,7.91,7.92,7.930000000000001,152.99,153.14000000000001,153.21,153.27,153.34,153.41,153.48,153.54,153.70000000000002,21.86,21.54,21.37,21.17,20.98,20.8,20.6,20.42,20.03,N/A,N/A -2012,3,28,8,30,101790,100610,99470,88.33,0,6.54,7.12,7.25,7.32,7.37,7.4,7.41,7.43,7.43,156.13,156.19,156.21,156.25,156.28,156.31,156.36,156.4,156.52,21.85,21.54,21.36,21.17,20.98,20.79,20.59,20.41,20.03,N/A,N/A -2012,3,28,9,30,101760,100590,99440,86.32000000000001,0,7.03,7.63,7.76,7.82,7.86,7.88,7.890000000000001,7.9,7.92,155.06,155.3,155.47,155.66,155.87,156.09,156.37,156.64000000000001,157.5,21.92,21.61,21.44,21.25,21.06,20.88,20.69,20.52,20.150000000000002,N/A,N/A -2012,3,28,10,30,101770,100590,99450,87.24,0,6.24,6.7700000000000005,6.9,6.97,7.0200000000000005,7.0600000000000005,7.08,7.11,7.15,162.13,162.21,162.28,162.34,162.4,162.45000000000002,162.51,162.57,162.72,21.88,21.57,21.39,21.2,21,20.81,20.62,20.44,20.05,N/A,N/A -2012,3,28,11,30,101770,100590,99440,87.55,0,5.6000000000000005,6.17,6.33,6.44,6.5200000000000005,6.59,6.65,6.7,6.79,159.88,159.65,159.59,159.53,159.48,159.43,159.37,159.31,159.19,21.84,21.52,21.35,21.150000000000002,20.96,20.78,20.580000000000002,20.39,20.01,N/A,N/A -2012,3,28,12,30,101770,100600,99450,87.69,0,5.98,6.47,6.59,6.66,6.7,6.73,6.75,6.7700000000000005,6.8,166.18,166.32,166.38,166.43,166.47,166.5,166.54,166.57,166.70000000000002,21.94,21.64,21.47,21.28,21.09,20.91,20.72,20.54,20.17,N/A,N/A -2012,3,28,13,30,101790,100620,99470,88.46000000000001,0,6.6000000000000005,7.16,7.28,7.33,7.36,7.38,7.38,7.37,7.34,163.07,163.67000000000002,163.91,164.13,164.32,164.5,164.68,164.86,165.22,21.87,21.55,21.38,21.18,20.990000000000002,20.8,20.6,20.42,20.03,N/A,N/A -2012,3,28,14,30,101820,100640,99500,86.95,0,5.97,6.47,6.57,6.62,6.65,6.67,6.67,6.67,6.67,162.11,161.94,161.88,161.82,161.77,161.73,161.69,161.66,161.64000000000001,21.96,21.650000000000002,21.48,21.28,21.09,20.91,20.71,20.53,20.150000000000002,N/A,N/A -2012,3,28,15,30,101850,100670,99530,87.31,0,5.3500000000000005,5.78,5.87,5.92,5.95,5.97,5.98,5.98,5.98,165.03,165.06,165.07,165.06,165.06,165.05,165.04,165.03,165.02,21.96,21.64,21.47,21.27,21.080000000000002,20.89,20.7,20.52,20.13,N/A,N/A -2012,3,28,16,30,101860,100680,99530,87.23,0,5.0200000000000005,5.4,5.49,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,165.44,165.55,165.6,165.65,165.67000000000002,165.70000000000002,165.72,165.74,165.78,22,21.68,21.5,21.31,21.11,20.93,20.73,20.55,20.16,N/A,N/A -2012,3,28,17,30,101830,100650,99510,86.23,0,4.8100000000000005,5.16,5.24,5.29,5.32,5.34,5.36,5.38,5.41,169.18,169.03,168.98,168.94,168.9,168.86,168.82,168.78,168.71,22.04,21.71,21.54,21.34,21.150000000000002,20.96,20.76,20.580000000000002,20.2,N/A,N/A -2012,3,28,18,30,101800,100630,99480,87.01,0,4.7700000000000005,5.11,5.19,5.22,5.25,5.2700000000000005,5.28,5.29,5.3100000000000005,164.45000000000002,164.51,164.58,164.65,164.73,164.81,164.9,165,165.24,22.05,21.72,21.54,21.35,21.150000000000002,20.96,20.77,20.59,20.2,N/A,N/A -2012,3,28,19,30,101790,100610,99470,86,0,4.65,4.97,5.04,5.07,5.08,5.09,5.09,5.1000000000000005,5.09,170.68,170.66,170.63,170.6,170.56,170.52,170.47,170.44,170.36,22.13,21.8,21.62,21.43,21.240000000000002,21.05,20.85,20.67,20.29,N/A,N/A -2012,3,28,20,30,101730,100550,99410,86.79,0,5.15,5.5,5.57,5.6000000000000005,5.61,5.62,5.61,5.6000000000000005,5.58,166.31,166.35,166.39000000000001,166.42000000000002,166.44,166.47,166.48,166.49,166.54,22.1,21.77,21.6,21.400000000000002,21.21,21.02,20.82,20.64,20.25,N/A,N/A -2012,3,28,21,30,101690,100510,99370,87.24,0,5.24,5.64,5.73,5.78,5.8100000000000005,5.84,5.8500000000000005,5.86,5.87,166.91,167.13,167.23,167.36,167.48,167.61,167.76,167.9,168.22,22.09,21.77,21.6,21.400000000000002,21.21,21.02,20.830000000000002,20.64,20.26,N/A,N/A -2012,3,28,22,30,101620,100450,99310,87.56,0,4.7,5.04,5.12,5.17,5.2,5.22,5.23,5.25,5.29,177.70000000000002,177.49,177.36,177.20000000000002,177.06,176.91,176.73,176.55,176.11,21.97,21.66,21.490000000000002,21.29,21.1,20.92,20.72,20.54,20.16,N/A,N/A -2012,3,28,23,30,101580,100400,99260,87.2,0,5.26,5.68,5.7700000000000005,5.8100000000000005,5.84,5.86,5.87,5.87,5.88,171.07,172.04,172.65,173.27,173.86,174.44,175.05,175.61,176.84,21.97,21.67,21.5,21.3,21.11,20.93,20.73,20.55,20.17,N/A,N/A -2012,3,29,0,30,101540,100360,99220,89.37,0,5.07,5.48,5.57,5.63,5.67,5.7,5.72,5.74,5.78,162.96,162.86,162.81,162.72,162.64000000000001,162.55,162.44,162.33,162.1,21.77,21.46,21.28,21.09,20.900000000000002,20.71,20.51,20.330000000000002,19.95,N/A,N/A -2012,3,29,1,30,101560,100380,99240,89.67,0,5.79,6.26,6.38,6.43,6.47,6.5,6.51,6.5200000000000005,6.53,160.05,159.98,159.92000000000002,159.86,159.81,159.76,159.71,159.67000000000002,159.58,21.73,21.41,21.240000000000002,21.04,20.85,20.66,20.46,20.28,19.89,N/A,N/A -2012,3,29,2,30,101590,100410,99270,87.99,0,4.91,5.29,5.38,5.44,5.48,5.51,5.54,5.5600000000000005,5.6000000000000005,171.14000000000001,171.66,171.86,172.03,172.18,172.31,172.42000000000002,172.52,172.73,21.79,21.47,21.29,21.09,20.900000000000002,20.71,20.51,20.32,19.92,N/A,N/A -2012,3,29,3,30,101570,100390,99250,87.71000000000001,0,3.34,3.71,3.84,3.95,4.05,4.14,4.22,4.3,4.46,183.54,181.43,180.46,179.62,178.87,178.21,177.59,177.02,175.92000000000002,21.57,21.25,21.080000000000002,20.89,20.69,20.51,20.31,20.13,19.740000000000002,N/A,N/A -2012,3,29,4,30,101550,100370,99230,88.07000000000001,0,5.2,5.61,5.7,5.76,5.8,5.82,5.84,5.8500000000000005,5.86,172.12,172.24,172.32,172.39000000000001,172.44,172.48,172.52,172.56,172.59,21.63,21.3,21.13,20.93,20.740000000000002,20.55,20.35,20.17,19.78,N/A,N/A -2012,3,29,5,30,101500,100320,99180,88.49,0,4.64,4.92,4.96,4.97,4.97,4.97,4.95,4.94,4.92,166.34,166.46,166.51,166.58,166.67000000000002,166.77,166.92000000000002,167.06,167.5,21.51,21.18,21,20.81,20.61,20.42,20.22,20.04,19.650000000000002,N/A,N/A -2012,3,29,6,30,101510,100330,99190,90.5,0,5.62,6.05,6.15,6.2,6.23,6.25,6.26,6.2700000000000005,6.28,162.51,162.56,162.62,162.66,162.70000000000002,162.74,162.78,162.82,162.94,21.490000000000002,21.14,20.96,20.77,20.57,20.38,20.19,20.01,19.62,N/A,N/A -2012,3,29,7,30,101500,100320,99180,90.39,0,5.5600000000000005,5.98,6.0600000000000005,6.1000000000000005,6.12,6.13,6.13,6.12,6.08,153.37,153.58,153.66,153.74,153.8,153.87,153.93,154,154.13,21.580000000000002,21.240000000000002,21.07,20.87,20.67,20.490000000000002,20.29,20.1,19.72,N/A,N/A -2012,3,29,8,30,101500,100320,99180,90.10000000000001,0,5.37,5.7700000000000005,5.86,5.91,5.94,5.95,5.97,5.97,5.98,164.82,165.03,165.05,165.09,165.14000000000001,165.20000000000002,165.27,165.34,165.54,21.66,21.32,21.14,20.94,20.75,20.56,20.36,20.18,19.8,N/A,N/A -2012,3,29,9,30,101510,100330,99190,87.92,0,5.13,5.45,5.5200000000000005,5.54,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,171.47,171.52,171.64000000000001,171.75,171.86,171.97,172.11,172.24,172.61,21.7,21.38,21.2,21.01,20.82,20.63,20.44,20.26,19.88,N/A,N/A -2012,3,29,10,30,101460,100280,99140,88.32000000000001,0,4.08,4.32,4.36,4.38,4.39,4.39,4.39,4.39,4.46,153.02,153.18,153.32,153.48,153.66,153.85,154.14000000000001,154.42000000000002,155.99,21.650000000000002,21.32,21.150000000000002,20.96,20.77,20.59,20.400000000000002,20.23,19.91,N/A,N/A -2012,3,29,11,30,101460,100280,99140,87.93,0,4.36,4.68,4.75,4.78,4.8100000000000005,4.82,4.83,4.84,4.8500000000000005,149.8,150.03,150.22,150.39000000000001,150.54,150.68,150.85,151,151.42000000000002,21.75,21.42,21.25,21.05,20.86,20.67,20.48,20.29,19.91,N/A,N/A -2012,3,29,12,30,101450,100270,99130,84.3,0,4.91,5.29,5.37,5.42,5.45,5.48,5.51,5.54,5.66,144.99,145.53,145.86,146.22,146.58,146.96,147.45000000000002,147.92000000000002,149.58,21.91,21.6,21.43,21.240000000000002,21.05,20.87,20.68,20.5,20.150000000000002,N/A,N/A -2012,3,29,13,30,101460,100290,99150,87.69,0,5.2700000000000005,5.67,5.76,5.8100000000000005,5.83,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,146.62,146.91,147.06,147.22,147.39000000000001,147.55,147.77,147.97,148.56,21.85,21.53,21.36,21.17,20.98,20.8,20.6,20.43,20.06,N/A,N/A -2012,3,29,14,30,101500,100330,99190,86.24,0,5.26,5.63,5.69,5.71,5.7,5.68,5.66,5.62,5.55,145.05,145.15,145.14000000000001,145.1,145.02,144.95000000000002,144.85,144.77,144.64000000000001,21.95,21.63,21.46,21.27,21.080000000000002,20.89,20.7,20.51,20.13,N/A,N/A -2012,3,29,15,30,101500,100330,99190,87.17,0,5.28,5.64,5.71,5.73,5.74,5.74,5.73,5.72,5.68,143.26,143.51,143.66,143.79,143.92000000000002,144.04,144.18,144.31,144.66,21.82,21.490000000000002,21.32,21.13,20.94,20.75,20.56,20.38,20.01,N/A,N/A -2012,3,29,16,30,101500,100320,99180,82.72,0,4.97,5.32,5.39,5.42,5.44,5.44,5.44,5.43,5.4,142.69,142.93,143.13,143.33,143.53,143.72,143.95000000000002,144.17000000000002,144.76,22.06,21.75,21.57,21.38,21.2,21.01,20.82,20.64,20.27,N/A,N/A -2012,3,29,17,30,101460,100290,99150,84.99,0,5.0600000000000005,5.43,5.51,5.55,5.58,5.59,5.59,5.59,5.57,134.72,135.09,135.27,135.43,135.56,135.69,135.81,135.93,136.19,22.05,21.72,21.54,21.35,21.150000000000002,20.97,20.77,20.59,20.21,N/A,N/A -2012,3,29,18,30,101420,100250,99110,85.59,0,5.71,6.13,6.23,6.2700000000000005,6.3,6.3100000000000005,6.32,6.33,6.32,141.09,141.26,141.35,141.45000000000002,141.54,141.63,141.73,141.82,142.04,22.06,21.73,21.55,21.36,21.17,20.98,20.79,20.61,20.23,N/A,N/A -2012,3,29,19,30,101380,100210,99070,81.37,0,6.0600000000000005,6.5600000000000005,6.67,6.74,6.78,6.8100000000000005,6.84,6.86,6.9,144.19,144.44,144.62,144.8,144.98,145.14000000000001,145.33,145.49,145.89000000000001,22.28,21.96,21.79,21.61,21.42,21.240000000000002,21.05,20.87,20.5,N/A,N/A -2012,3,29,20,30,101330,100160,99020,80.27,0,6.44,7.0200000000000005,7.15,7.22,7.2700000000000005,7.3,7.3100000000000005,7.32,7.3,149.24,149.46,149.49,149.52,149.54,149.56,149.57,149.57,149.55,22.43,22.14,21.97,21.78,21.59,21.41,21.22,21.04,20.66,N/A,N/A -2012,3,29,21,30,101390,100210,99060,95,232.9,10.68,11.33,11.46,11.49,11.5,11.5,11.51,11.51,11.540000000000001,235.14000000000001,236.19,236.94,237.70000000000002,238.45000000000002,239.18,240.01,240.78,242.34,19.98,19.55,19.39,19.23,19.09,18.95,18.81,18.68,18.39,N/A,N/A -2012,3,29,22,30,101350,100160,99020,92.81,26.700000000000003,8.14,8.49,8.46,8.33,8.16,7.96,7.65,7.3500000000000005,6.74,337.09000000000003,338.54,339.66,341.17,343.37,345.87,351.41,356.90000000000003,11.63,20.04,19.62,19.45,19.27,19.12,18.97,18.86,18.77,18.67,N/A,N/A -2012,3,29,23,30,101330,100150,99000,91.05,0.4,2.79,2.87,2.87,2.86,2.84,2.81,2.79,2.7600000000000002,2.88,31.900000000000002,34.89,36.9,39.27,42.21,45.42,50.910000000000004,56.44,72.02,20.35,19.990000000000002,19.82,19.63,19.45,19.28,19.1,18.94,18.63,N/A,N/A -2012,3,30,0,30,101280,100100,98960,88.36,0,4.29,4.43,4.4,4.34,4.24,4.13,3.88,3.62,2.73,217.34,217.19,217.09,216.94,216.66,216.33,215,213.28,198.64000000000001,19.990000000000002,19.61,19.43,19.23,19.05,18.88,18.71,18.57,18.62,N/A,N/A -2012,3,30,1,30,101190,100010,98870,86.28,0,7.37,7.75,7.76,7.71,7.72,7.7700000000000005,7.61,7.43,6.72,178.26,178.31,178.36,178.45000000000002,178.68,178.96,179.77,180.63,183.33,20.25,19.88,19.73,19.59,19.580000000000002,19.63,20.01,20.39,20.94,N/A,N/A -2012,3,30,2,30,101240,100060,98920,84.82000000000001,0,6.0200000000000005,6.390000000000001,6.46,6.49,6.51,6.5200000000000005,6.55,6.6000000000000005,7.140000000000001,186.70000000000002,186.68,186.59,186.53,186.47,186.43,186.38,186.34,187.25,20.91,20.55,20.37,20.19,20.01,19.84,19.69,19.55,19.69,N/A,N/A -2012,3,30,3,30,101230,100050,98910,85.15,0,6.51,6.96,7.04,7.07,7.07,7.0600000000000005,7.03,7.01,7.05,192.24,192.20000000000002,192.22,192.24,192.28,192.32,192.4,192.49,193.39000000000001,21.07,20.7,20.53,20.330000000000002,20.150000000000002,19.97,19.79,19.62,19.36,N/A,N/A -2012,3,30,4,30,101210,100030,98890,84.81,0,7.3500000000000005,7.8100000000000005,7.87,7.88,7.92,7.97,8.24,8.53,8.11,185.93,185.99,186.07,186.18,186.39000000000001,186.65,187.53,188.48,189.55,21.35,21.01,20.85,20.68,20.54,20.42,20.57,20.77,21.32,N/A,N/A -2012,3,30,5,30,101190,100010,98880,79.35000000000001,0,4.29,4.48,4.75,5.5200000000000005,6.01,6.2700000000000005,6.43,6.54,6.74,198.71,198.71,198.4,197.54,196.33,194.94,193.64000000000001,192.48000000000002,190.52,21.89,21.62,21.6,21.77,21.91,22.04,21.97,21.86,21.54,N/A,N/A -2012,3,30,6,30,101190,100020,98880,83.17,0,4.2,4.46,4.5,4.5200000000000005,4.55,4.59,5.0600000000000005,5.62,6.42,181.87,181.72,181.64000000000001,181.56,181.52,181.5,182.63,183.99,187.38,21.72,21.41,21.25,21.06,20.89,20.72,20.68,20.67,20.96,N/A,N/A -2012,3,30,7,30,101210,100040,98900,85.27,0,3.94,4.2,4.32,4.54,5.21,6.23,6.69,6.98,7.63,182.76,182.98,183.39000000000001,184.17000000000002,186.17000000000002,189.22,190.58,191.45000000000002,193.77,21.67,21.38,21.240000000000002,21.1,21.080000000000002,21.14,21.17,21.19,21.27,N/A,N/A -2012,3,30,8,30,101220,100050,98920,87.14,0,3.37,3.5100000000000002,3.8000000000000003,4.75,5.38,5.71,6.05,6.37,7.0200000000000005,164.24,165.04,168.18,177.35,182.45000000000002,184.09,185.56,186.91,189.23,21.96,21.67,21.580000000000002,21.59,21.54,21.46,21.38,21.31,21.150000000000002,N/A,N/A -2012,3,30,9,30,101200,100020,98890,90.61,0,4.28,4.55,4.87,5.69,6.17,6.42,6.67,6.890000000000001,7.33,153.08,154.55,158.08,166.4,171.05,173.07,174.91,176.57,179.52,22,21.72,21.64,21.64,21.6,21.53,21.45,21.37,21.16,N/A,N/A -2012,3,30,10,30,101210,100040,98910,89.07000000000001,0,4.46,5.26,5.64,6.0200000000000005,6.3500000000000005,6.63,6.91,7.18,7.71,178.28,178.95000000000002,179.37,179.9,180.39000000000001,180.87,181.42000000000002,181.95000000000002,183.32,22.28,22.07,21.96,21.85,21.73,21.61,21.48,21.37,21.14,N/A,N/A -2012,3,30,11,30,101210,100040,98910,91.22,0,4.92,5.83,6.23,6.57,6.87,7.140000000000001,7.4,7.65,8.120000000000001,170,171.32,172.17000000000002,173.02,173.81,174.57,175.38,176.15,178.07,22.25,22.03,21.91,21.79,21.66,21.53,21.39,21.26,21.02,N/A,N/A -2012,3,30,12,30,101210,100040,98910,92.91,0,5.43,6.3500000000000005,6.74,7.0600000000000005,7.34,7.58,7.82,8.05,8.43,170.01,170.68,171.12,171.55,172.01,172.49,173.11,173.72,175.58,22.28,22.04,21.91,21.76,21.61,21.45,21.29,21.150000000000002,20.87,N/A,N/A -2012,3,30,13,30,101250,100080,98950,94.83,0,5.51,6.390000000000001,6.75,7.05,7.3,7.53,7.74,7.930000000000001,8.26,174.07,174.29,174.42000000000002,174.53,174.67000000000002,174.82,175.12,175.43,177.06,22.27,22.05,21.92,21.75,21.580000000000002,21.41,21.240000000000002,21.080000000000002,20.78,N/A,N/A -2012,3,30,14,30,101300,100130,98990,95.44,0,6.99,7.48,7.5600000000000005,7.59,7.6000000000000005,7.6000000000000005,7.62,7.65,7.72,176.5,176.54,176.45000000000002,176.31,176.19,176.08,176.22,176.41,180.11,21.400000000000002,21.05,20.87,20.67,20.46,20.27,20.04,19.82,19.59,N/A,N/A -2012,3,30,15,30,101330,100150,99010,97.17,0,5.55,5.86,5.91,5.93,6.08,6.28,6.55,6.8,6.94,187.72,186.55,185.68,184.52,182.37,179.65,176.93,174.39000000000001,172.9,21.1,20.76,20.59,20.41,20.3,20.23,20.16,20.09,19.89,N/A,N/A -2012,3,30,16,30,101310,100130,99000,96.14,0,6.12,6.53,6.6000000000000005,6.640000000000001,6.69,6.74,7.09,7.48,7.97,185.87,185,184.49,183.89000000000001,183.16,182.37,180.71,178.97,178.41,21.5,21.16,20.990000000000002,20.8,20.62,20.46,20.34,20.25,20.01,N/A,N/A -2012,3,30,17,30,101290,100120,98980,96.08,0,5.64,6.0600000000000005,6.16,6.23,6.3100000000000005,6.4,6.61,6.84,7.29,177.39000000000001,177.56,177.70000000000002,177.89000000000001,178.19,178.56,179.74,181.04,186.06,21.86,21.54,21.37,21.18,21.01,20.84,20.68,20.54,20.330000000000002,N/A,N/A -2012,3,30,18,30,101260,100090,98960,96.54,0,4.68,5,5.07,5.12,5.19,5.26,5.68,6.18,6.6000000000000005,178.52,178.73,178.91,179.15,179.47,179.82,182.41,185.58,189.27,22.27,21.95,21.78,21.59,21.43,21.28,21.14,21.02,20.8,N/A,N/A -2012,3,30,19,30,101250,100080,98950,94.88,0,5.26,5.7,5.8100000000000005,5.87,5.91,5.94,5.97,6,6.08,188.17000000000002,188.64000000000001,188.9,189.21,189.54,189.88,190.33,190.78,192.28,22.62,22.31,22.14,21.95,21.76,21.580000000000002,21.39,21.21,20.87,N/A,N/A -2012,3,30,20,30,101190,100020,98890,92.99,0,5.44,5.88,5.98,6.0200000000000005,6.04,6.05,6.0600000000000005,6.07,6.08,194.76,194.97,195.11,195.27,195.45000000000002,195.65,195.92000000000002,196.19,197.16,22.650000000000002,22.34,22.18,21.98,21.8,21.61,21.42,21.25,20.88,N/A,N/A -2012,3,30,21,30,101150,99980,98850,94,0,6.29,6.86,6.99,7.0600000000000005,7.11,7.140000000000001,7.15,7.17,7.2,195.23000000000002,195.36,195.44,195.52,195.6,195.68,195.8,195.9,196.27,22.57,22.28,22.12,21.93,21.740000000000002,21.56,21.37,21.19,20.82,N/A,N/A -2012,3,30,22,30,101120,99950,98820,95.45,0,6.41,7.140000000000001,7.36,7.54,7.69,7.8100000000000005,7.92,8.02,8.19,198.8,198.97,199.1,199.25,199.4,199.57,199.78,200,200.61,22.44,22.16,22,21.82,21.64,21.46,21.27,21.09,20.72,N/A,N/A -2012,3,30,23,30,101110,99940,98810,95.59,0,6.16,7.11,7.46,7.69,7.890000000000001,8.08,8.27,8.44,8.75,199.47,199.74,199.81,199.77,199.86,200.05,200.38,200.74,201.59,22.27,22.01,21.85,21.66,21.48,21.3,21.12,20.96,20.66,N/A,N/A -2012,3,31,0,30,101110,99940,98810,94.60000000000001,0,7.46,8.23,8.43,8.55,8.63,8.68,8.71,8.73,8.72,200,200.48000000000002,200.72,200.97,201.24,201.51,201.88,202.24,203.59,22.23,21.94,21.78,21.580000000000002,21.38,21.19,20.97,20.78,20.38,N/A,N/A -2012,3,31,1,30,101110,99940,98810,94.4,0,7.57,8.39,8.65,8.89,9.120000000000001,9.34,9.47,9.55,9.93,203.56,202.59,202.12,201.59,201.06,200.52,200.3,200.17000000000002,200.79,22.2,21.92,21.76,21.580000000000002,21.400000000000002,21.23,21.04,20.87,20.63,N/A,N/A -2012,3,31,2,30,101140,99970,98840,94.57000000000001,0,7.68,8.32,8.47,8.57,8.68,8.81,8.99,9.17,9.66,209.21,208.74,208.51,208.24,207.98000000000002,207.73000000000002,207.61,207.54,208.03,22,21.7,21.54,21.36,21.2,21.04,20.91,20.78,20.6,N/A,N/A -2012,3,31,3,30,101180,100010,98880,94.43,0,6.15,6.82,7.1000000000000005,7.46,7.83,8.22,8.6,8.950000000000001,9.56,200.3,200.64000000000001,201.12,201.92000000000002,203.07,204.51,206.03,207.49,210.35,22.11,21.86,21.740000000000002,21.61,21.54,21.490000000000002,21.45,21.41,21.39,N/A,N/A -2012,3,31,4,30,101170,100000,98870,93.73,0,7.140000000000001,7.9,8.1,8.28,8.46,8.66,8.89,9.120000000000001,9.46,208.86,209.52,209.76,210.08,210.39000000000001,210.69,210.77,210.8,210.16,21.900000000000002,21.61,21.44,21.25,21.080000000000002,20.91,20.73,20.57,20.2,N/A,N/A -2012,3,31,5,30,101180,100010,98880,89.53,0,5.84,6.98,7.55,8.14,8.63,9.06,9.41,9.73,10.11,204.91,205.74,206.55,207.89000000000001,209.06,210.12,210.95000000000002,211.67000000000002,212.25,22.330000000000002,22.21,22.16,22.12,22.03,21.92,21.77,21.63,21.26,N/A,N/A -2012,3,31,6,30,101210,100040,98910,87.06,0,6.2700000000000005,7.16,7.53,7.890000000000001,8.2,8.49,8.76,9.01,9.48,201.53,201.86,202.07,202.24,202.71,203.41,204.08,204.71,205.85,22.46,22.23,22.1,21.93,21.77,21.61,21.45,21.3,20.97,N/A,N/A -2012,3,31,7,30,101220,100050,98910,89.41,0,5.78,6.32,6.5,6.73,7.21,7.88,8.26,8.540000000000001,9.07,209.19,209.41,209.58,209.82,210.26,210.86,211.37,211.81,212.82,22.26,21.990000000000002,21.84,21.68,21.54,21.43,21.3,21.19,20.98,N/A,N/A -2012,3,31,8,30,101210,100040,98910,91.23,0,5.45,5.9,6.04,6.19,6.74,7.59,8.07,8.4,9.05,212.21,212.36,212.49,212.70000000000002,213.26,214.11,214.55,214.83,215.32,22.11,21.830000000000002,21.67,21.5,21.38,21.3,21.2,21.1,20.94,N/A,N/A -2012,3,31,9,30,101230,100060,98930,90.28,0,5.08,5.51,5.63,5.7700000000000005,6.22,6.92,7.3500000000000005,7.69,8.26,202.58,202.93,203.23000000000002,203.66,204.75,206.36,207.29,207.96,209.13,22.17,21.89,21.73,21.55,21.43,21.32,21.21,21.11,20.92,N/A,N/A -2012,3,31,10,30,101260,100090,98950,90.7,0,3.97,4.2700000000000005,4.36,4.49,5.0200000000000005,5.9,6.33,6.6000000000000005,7.16,198.91,199.3,199.73000000000002,200.39000000000001,202.54,206.02,207.48000000000002,208.26,209.69,22.150000000000002,21.87,21.71,21.54,21.44,21.39,21.29,21.2,21.05,N/A,N/A -2012,3,31,11,30,101270,100100,98960,91.37,0,4.09,4.43,4.78,5.64,6.2,6.49,6.8,7.08,7.69,206.46,207.08,207.99,209.97,211.14000000000001,211.66,212.13,212.56,213.31,22.12,21.85,21.740000000000002,21.67,21.580000000000002,21.490000000000002,21.400000000000002,21.32,21.17,N/A,N/A -2012,3,31,12,30,101310,100140,99000,91.72,0,3.74,4.03,4.3,4.97,5.42,5.7,5.97,6.22,6.72,204.26,204.61,205.26,206.74,207.73000000000002,208.35,208.98000000000002,209.58,210.82,22.16,21.89,21.76,21.650000000000002,21.54,21.44,21.330000000000002,21.23,21.03,N/A,N/A -2012,3,31,13,30,101340,100170,99040,92.28,0,3.5700000000000003,3.81,4.1,4.8,5.24,5.47,5.7,5.91,6.3100000000000005,193.44,193.95000000000002,195.37,198.59,200.57,201.56,202.59,203.56,205.52,22.14,21.86,21.740000000000002,21.66,21.57,21.45,21.330000000000002,21.22,21.01,N/A,N/A -2012,3,31,14,30,101390,100220,99080,93.03,0,3.15,3.3000000000000003,3.58,4.32,4.8,5.0600000000000005,5.3,5.5200000000000005,5.94,197.92000000000002,198.24,199.24,201.68,203.25,204.1,205.05,205.97,208,22.150000000000002,21.87,21.76,21.71,21.63,21.54,21.43,21.34,21.16,N/A,N/A -2012,3,31,15,30,101380,100210,99070,93.61,0,3.56,3.79,3.97,4.3500000000000005,4.76,5.19,5.44,5.61,5.9,187.39000000000001,188.13,189.23,191.37,193.33,195.19,196.49,197.53,200.06,22.21,21.91,21.77,21.63,21.54,21.47,21.37,21.27,21.11,N/A,N/A -2012,3,31,16,30,101380,100210,99080,93.92,0,3.77,3.99,4.04,4.08,4.18,4.32,4.79,5.3500000000000005,5.8,184,184.49,184.87,185.38,186.28,187.43,190.63,194.4,198.98000000000002,22.32,22,21.84,21.650000000000002,21.48,21.32,21.27,21.25,21.2,N/A,N/A -2012,3,31,17,30,101380,100210,99070,94.21000000000001,0,3.88,4.12,4.17,4.2,4.21,4.21,4.21,4.21,4.29,177.91,178.32,178.59,178.84,179.07,179.3,179.53,179.75,181.4,22.41,22.080000000000002,21.900000000000002,21.71,21.52,21.330000000000002,21.14,20.96,20.62,N/A,N/A -2012,3,31,18,30,101320,100150,99020,93.99,0,5.23,5.58,5.64,5.66,5.68,5.68,5.71,5.73,6,177.61,177.87,178.13,178.46,178.89000000000001,179.37,180.16,180.98,184.95000000000002,22.48,22.150000000000002,21.98,21.79,21.61,21.43,21.26,21.1,20.84,N/A,N/A -2012,3,31,19,30,101290,100130,98990,93.21000000000001,0,5.84,6.3,6.38,6.42,6.45,6.45,6.45,6.45,6.46,174.42000000000002,174.84,175.02,175.19,175.37,175.57,175.85,176.12,177.24,22.48,22.16,21.98,21.79,21.6,21.41,21.22,21.04,20.67,N/A,N/A -2012,3,31,20,30,101280,100110,98980,88.73,0,5.05,5.44,5.53,5.57,5.6000000000000005,5.62,5.66,5.7,5.91,171.05,171.75,172.27,172.86,173.54,174.26,175.28,176.29,179.88,22.6,22.3,22.14,21.95,21.77,21.6,21.42,21.25,20.94,N/A,N/A -2012,3,31,21,30,101250,100080,98950,88.3,0,4.64,5.04,5.14,5.2,5.24,5.28,5.32,5.3500000000000005,5.48,169.84,171.03,171.73,172.51,173.3,174.09,175.08,176.04,178.59,22.63,22.35,22.19,22,21.82,21.64,21.46,21.28,20.93,N/A,N/A -2012,3,31,22,30,101210,100050,98910,90.57000000000001,0,5.25,5.76,5.87,5.95,6.01,6.0600000000000005,6.12,6.18,6.37,176.49,176.35,176.29,176.22,176.18,176.15,176.15,176.16,176.36,22.47,22.18,22.01,21.82,21.64,21.46,21.27,21.1,20.75,N/A,N/A -2012,3,31,23,30,101190,100020,98880,85.79,0,5.19,5.65,5.75,5.83,5.92,6.0200000000000005,6.21,6.4,6.69,170.08,170.58,171.1,171.89000000000001,173.11,174.52,176.73,178.93,182.17000000000002,22.490000000000002,22.25,22.1,21.94,21.79,21.650000000000002,21.51,21.39,21.07,N/A,N/A -2012,4,1,0,30,101170,100000,98870,88.97,0,5.84,6.3500000000000005,6.47,6.57,6.69,6.84,6.95,7.05,7.2,169.14000000000001,169.57,170,170.65,171.66,172.91,174.49,176.02,179.34,22.31,22.06,21.91,21.75,21.6,21.47,21.32,21.18,20.96,N/A,N/A -2012,4,1,1,30,101180,100000,98870,89.78,0,6.4,6.95,7.07,7.140000000000001,7.21,7.29,7.42,7.55,7.84,175.09,174.92000000000002,174.85,174.77,174.69,174.63,174.79,174.97,175.95000000000002,22.23,21.95,21.79,21.61,21.43,21.27,21.12,20.98,20.76,N/A,N/A -2012,4,1,2,30,101180,100010,98880,89.68,0,5.66,6.54,6.95,7.34,7.68,7.98,8.16,8.290000000000001,8.19,173.39000000000001,174.41,175.1,175.96,176.87,177.82,178.68,179.43,181,22.32,22.150000000000002,22.07,21.990000000000002,21.94,21.89,21.81,21.72,21.43,N/A,N/A -2012,4,1,3,30,101180,100010,98880,93.14,0,6.3,6.8500000000000005,6.95,6.99,7.03,7.08,7.17,7.2700000000000005,7.76,177.23,177.28,177.4,177.54,177.77,178.03,178.6,179.20000000000002,181.55,22.1,21.81,21.64,21.45,21.26,21.080000000000002,20.91,20.75,20.6,N/A,N/A -2012,4,1,4,30,101170,100000,98870,94.51,0,6.22,6.7700000000000005,6.91,7.01,7.12,7.23,7.43,7.640000000000001,8.46,175.71,176.06,176.3,176.61,177,177.44,178.26,179.09,182.17000000000002,22.05,21.75,21.580000000000002,21.400000000000002,21.22,21.04,20.87,20.72,20.47,N/A,N/A -2012,4,1,5,30,101150,99970,98840,95.96000000000001,0,5.94,6.48,6.62,6.71,6.79,6.87,6.97,7.0600000000000005,7.46,177.12,177.31,177.42000000000002,177.54,177.70000000000002,177.86,178.08,178.3,179.18,21.85,21.5,21.3,21.09,20.91,20.77,20.61,20.47,20.13,N/A,N/A -2012,4,1,6,30,101140,99970,98830,95.67,0,6.82,7.44,7.59,7.7,7.79,7.87,7.99,8.11,8.5,187.35,186.54,186.13,185.73,185.34,184.97,184.56,184.17000000000002,183.75,21.69,21.35,21.17,20.98,20.82,20.67,20.53,20.41,20.080000000000002,N/A,N/A -2012,4,1,7,30,101160,99980,98850,93.91,0,6.21,6.78,6.93,7.0200000000000005,7.11,7.18,7.28,7.37,7.72,192.75,192.55,192.52,192.49,192.46,192.44,192.4,192.36,192.09,21.77,21.43,21.25,21.05,20.86,20.67,20.47,20.28,19.900000000000002,N/A,N/A -2012,4,1,8,30,101130,99960,98830,93.39,0,5.12,5.57,5.68,5.7700000000000005,5.86,5.95,6.09,6.24,6.91,192.77,193.01,193.15,193.31,193.48000000000002,193.65,193.9,194.14000000000001,194.88,22.02,21.71,21.53,21.34,21.150000000000002,20.96,20.78,20.6,20.27,N/A,N/A -2012,4,1,9,30,101130,99960,98820,94.38,0,4.32,4.66,4.74,4.8,4.84,4.87,4.91,4.95,5.18,183.24,183.27,183.31,183.35,183.41,183.48,183.62,183.76,184.79,22.04,21.72,21.54,21.35,21.150000000000002,20.97,20.76,20.580000000000002,20.27,N/A,N/A -2012,4,1,10,30,101130,99960,98820,93.7,0,4.22,4.57,4.66,4.72,4.7700000000000005,4.82,4.88,4.94,5.24,185.37,185.76,186.01,186.27,186.52,186.77,187.05,187.33,188.19,22.07,21.75,21.580000000000002,21.39,21.2,21.02,20.830000000000002,20.650000000000002,20.26,N/A,N/A -2012,4,1,11,30,101120,99950,98820,93.41,0,4.03,4.3500000000000005,4.42,4.47,4.5200000000000005,4.55,4.6000000000000005,4.65,4.91,177.9,178.33,178.6,178.89000000000001,179.21,179.54,180,180.44,182.28,22.080000000000002,21.77,21.6,21.41,21.22,21.03,20.84,20.650000000000002,20.29,N/A,N/A -2012,4,1,12,30,101150,99980,98850,92.91,0,4.13,4.47,4.55,4.6000000000000005,4.64,4.68,4.76,4.82,5.25,170.52,170.85,171.1,171.39000000000001,171.73,172.08,172.64000000000001,173.20000000000002,175.98,22.13,21.830000000000002,21.66,21.47,21.28,21.1,20.91,20.740000000000002,20.41,N/A,N/A -2012,4,1,13,30,101140,99970,98840,93.02,0,4.05,4.38,4.47,4.55,4.66,4.8,5.07,5.3500000000000005,5.75,169.58,170.04,170.4,170.82,171.37,171.98,172.9,173.84,175.87,22.14,21.84,21.68,21.490000000000002,21.31,21.150000000000002,20.98,20.84,20.54,N/A,N/A -2012,4,1,14,30,101180,100010,98880,93.69,0,4.32,4.7,4.79,4.87,4.97,5.07,5.25,5.42,5.61,168.96,169.28,169.64000000000001,170.13,170.76,171.46,172.3,173.12,174.49,22.26,21.95,21.78,21.59,21.41,21.240000000000002,21.06,20.89,20.54,N/A,N/A -2012,4,1,15,30,101180,100010,98880,89.85000000000001,0,4.19,4.6000000000000005,4.72,4.8,4.88,4.97,5.08,5.2,5.7700000000000005,178.21,178.16,178.11,178.08,178.1,178.16,178.47,178.82,180.08,22.53,22.23,22.07,21.89,21.7,21.53,21.35,21.19,20.88,N/A,N/A -2012,4,1,16,30,101180,100010,98880,90.84,0,4.43,4.8100000000000005,4.91,4.97,5.03,5.07,5.12,5.17,5.4,168.44,168.65,168.78,168.9,169.04,169.18,169.4,169.6,170.58,22.52,22.21,22.04,21.85,21.66,21.48,21.29,21.11,20.75,N/A,N/A -2012,4,1,17,30,101140,99980,98840,90.66,0,4.45,4.8,4.88,4.92,4.95,4.98,5,5.0200000000000005,5.08,170.02,169.67000000000002,169.56,169.46,169.37,169.28,169.20000000000002,169.13,168.96,22.64,22.32,22.150000000000002,21.95,21.76,21.580000000000002,21.38,21.2,20.82,N/A,N/A -2012,4,1,18,30,101120,99960,98830,90.35000000000001,0,4.95,5.3500000000000005,5.43,5.47,5.5,5.53,5.54,5.57,5.66,161.25,161.62,161.89000000000001,162.22,162.57,162.95000000000002,163.48,164,165.74,22.79,22.47,22.3,22.11,21.92,21.740000000000002,21.56,21.38,21.03,N/A,N/A -2012,4,1,19,30,101100,99940,98810,90.33,0,5.23,5.7,5.8100000000000005,5.88,5.94,5.98,6.0200000000000005,6.0600000000000005,6.18,165.88,166.19,166.4,166.64000000000001,166.88,167.11,167.4,167.66,168.35,22.87,22.57,22.400000000000002,22.21,22.02,21.84,21.64,21.47,21.09,N/A,N/A -2012,4,1,20,30,101040,99880,98750,92.21000000000001,0,5.07,5.5,5.59,5.64,5.69,5.72,5.76,5.8100000000000005,6.01,158.18,158.59,158.89000000000001,159.23,159.61,159.99,160.5,160.99,162.55,22.88,22.6,22.43,22.25,22.07,21.89,21.7,21.53,21.2,N/A,N/A -2012,4,1,21,30,100990,99830,98700,90.82000000000001,0,5.76,6.3,6.42,6.5,6.54,6.5600000000000005,6.59,6.6000000000000005,6.62,158.38,158.62,158.77,158.91,159.05,159.19,159.32,159.47,159.81,22.990000000000002,22.71,22.55,22.36,22.18,22,21.81,21.63,21.26,N/A,N/A -2012,4,1,22,30,100960,99800,98670,92.71000000000001,0,5.7,6.3,6.47,6.57,6.66,6.73,6.78,6.84,6.92,153.02,153.20000000000002,153.32,153.46,153.57,153.67000000000002,153.76,153.86,154.13,22.81,22.55,22.39,22.21,22.02,21.85,21.650000000000002,21.48,21.11,N/A,N/A -2012,4,1,23,30,100930,99770,98640,94.37,0,5.29,5.93,6.140000000000001,6.32,6.48,6.62,6.7700000000000005,6.91,7.21,146.47,146.97,147.3,147.68,148.05,148.43,148.87,149.29,150.33,22.66,22.400000000000002,22.25,22.080000000000002,21.900000000000002,21.72,21.54,21.36,21,N/A,N/A -2012,4,2,0,30,100900,99730,98610,94.3,0,4.87,5.59,5.87,6.16,6.44,6.71,6.99,7.2700000000000005,7.76,157.70000000000002,158.33,158.79,159.3,159.76,160.19,160.56,160.89000000000001,161.18,22.72,22.48,22.35,22.2,22.05,21.900000000000002,21.740000000000002,21.59,21.26,N/A,N/A -2012,4,2,1,30,100880,99720,98590,92.67,0,6.49,7.33,7.59,7.8,7.98,8.120000000000001,8.24,8.34,8.49,148.58,148.85,149.14000000000001,149.51,149.93,150.37,150.93,151.47,152.86,22.75,22.51,22.36,22.18,22.01,21.84,21.66,21.5,21.150000000000002,N/A,N/A -2012,4,2,2,30,100880,99720,98590,94.12,0,6.51,7.390000000000001,7.69,7.95,8.19,8.4,8.620000000000001,8.82,9.25,142.93,143.95000000000002,144.61,145.33,146.08,146.82,147.67000000000002,148.47,150.31,22.72,22.48,22.34,22.18,22.02,21.86,21.7,21.55,21.25,N/A,N/A -2012,4,2,3,30,100870,99710,98580,93.93,0,6.41,7.28,7.58,7.8500000000000005,8.09,8.32,8.56,8.78,9.3,148.24,148.37,148.48,148.64000000000001,148.85,149.1,149.48,149.87,151.25,22.69,22.45,22.31,22.150000000000002,22,21.85,21.7,21.57,21.3,N/A,N/A -2012,4,2,4,30,100830,99660,98540,95.42,0,6.69,7.6000000000000005,7.930000000000001,8.2,8.44,8.66,8.89,9.1,9.65,149.46,149.99,150.43,150.9,151.4,151.89000000000001,152.46,153,154.49,22.53,22.27,22.11,21.93,21.75,21.57,21.39,21.22,20.900000000000002,N/A,N/A -2012,4,2,5,30,100780,99610,98490,94.39,0,6.66,7.58,7.890000000000001,8.14,8.35,8.53,8.69,8.84,9.23,146.59,146.11,145.86,145.62,145.4,145.22,145.08,144.96,145.28,22.62,22.36,22.2,22.02,21.84,21.66,21.47,21.29,21.01,N/A,N/A -2012,4,2,6,30,100810,99650,98520,93.43,0,6.55,7.36,7.640000000000001,7.87,8.09,8.290000000000001,8.49,8.68,9.13,149.43,149.68,149.87,150.12,150.38,150.65,150.96,151.25,151.93,22.66,22.41,22.27,22.09,21.92,21.75,21.57,21.41,21.07,N/A,N/A -2012,4,2,7,30,100780,99620,98490,94.32000000000001,0,6.78,7.62,7.890000000000001,8.11,8.290000000000001,8.45,8.6,8.73,9.05,158.12,158.5,158.77,158.97,159.16,159.35,159.51,159.66,160.01,22.64,22.36,22.2,22.02,21.830000000000002,21.66,21.46,21.28,20.93,N/A,N/A -2012,4,2,8,30,100750,99580,98460,91.85000000000001,0,8.58,9.78,10.18,10.5,10.77,11,11.19,11.36,11.64,161.48,162.18,162.61,163.06,163.45000000000002,163.82,164.15,164.44,164.9,22.84,22.62,22.48,22.32,22.150000000000002,22,21.830000000000002,21.67,21.330000000000002,N/A,N/A -2012,4,2,9,30,100810,99640,98500,87.28,0,12.61,13.86,14.17,14.35,14.48,14.58,14.67,14.76,15.040000000000001,179.86,179.99,180,180.03,180.06,180.09,180.14000000000001,180.19,180.38,20.75,20.32,20.13,19.93,19.75,19.57,19.39,19.22,18.900000000000002,N/A,N/A -2012,4,2,10,30,100650,99480,98350,79.23,0,7.36,7.96,8.11,8.25,8.56,8.93,9.53,10.1,10.72,179.57,179.26,179.03,178.72,178.06,177.28,175.72,174.13,170.93,21.92,21.61,21.47,21.32,21.240000000000002,21.19,21.28,21.39,21.66,N/A,N/A -2012,4,2,11,30,100690,99520,98390,80.02,0,8.91,9.700000000000001,9.93,10.19,10.51,10.88,11.35,11.82,12.69,211.56,211.33,211.03,210.56,209.98000000000002,209.35,208.59,207.84,206.38,22.44,22.17,22.04,21.89,21.78,21.68,21.64,21.62,21.63,N/A,N/A -2012,4,2,12,30,100750,99580,98450,83.79,21.6,9.59,10.4,10.58,10.67,10.76,10.84,10.93,11,10.65,163.93,163.65,163.64000000000001,163.66,163.84,164.12,164.93,165.82,169.35,21.68,21.36,21.2,21.04,20.91,20.79,20.72,20.67,20.62,N/A,N/A -2012,4,2,13,30,100750,99590,98460,83.07000000000001,0,7.48,8.08,8.22,8.28,8.34,8.39,8.51,8.63,9.120000000000001,152.52,152.43,152.35,152.27,152.20000000000002,152.14000000000001,152.17000000000002,152.21,153.42000000000002,22.080000000000002,21.77,21.61,21.43,21.26,21.09,20.94,20.8,20.59,N/A,N/A -2012,4,2,14,30,100780,99610,98480,81.73,0,8.620000000000001,9.41,9.55,9.620000000000001,9.65,9.67,9.68,9.69,9.83,147.02,147.07,147.11,147.16,147.23,147.31,147.44,147.57,148.31,22.32,22.02,21.85,21.66,21.47,21.3,21.11,20.93,20.6,N/A,N/A -2012,4,2,15,30,100780,99620,98490,84.21000000000001,0,7.98,8.73,9.01,9.36,9.89,10.55,10.93,11.22,11.700000000000001,151.46,152.29,153.20000000000002,154.67000000000002,157.26,160.62,162.77,164.46,167.72,22.56,22.32,22.19,22.07,22,21.97,21.92,21.87,21.72,N/A,N/A -2012,4,2,16,30,100820,99660,98530,84.36,0,8.75,9.57,9.73,9.81,9.86,9.89,10.08,10.290000000000001,10.73,137.6,137.66,137.93,138.31,138.78,139.33,141.28,143.48,149.19,22.48,22.2,22.05,21.86,21.7,21.53,21.400000000000002,21.29,21.150000000000002,N/A,N/A -2012,4,2,17,30,100820,99650,98520,87.16,0,10.21,11.14,11.33,11.4,11.44,11.450000000000001,11.43,11.42,11.36,114.12,114.16,114.27,114.38,114.51,114.64,114.82000000000001,114.99000000000001,115.57000000000001,21.56,21.19,21.01,20.81,20.62,20.44,20.25,20.07,19.71,N/A,N/A -2012,4,2,18,30,100830,99660,98530,83.93,0,8.35,9.07,9.23,9.3,9.34,9.370000000000001,9.4,9.42,9.59,124.78,125.19,125.48,125.82000000000001,126.2,126.60000000000001,127.19,127.75,130.24,21.94,21.62,21.45,21.26,21.080000000000002,20.900000000000002,20.72,20.56,20.25,N/A,N/A -2012,4,2,19,30,100840,99670,98540,84.31,0,8.19,8.94,9.11,9.200000000000001,9.26,9.31,9.36,9.41,10.11,128.03,128.72,128.81,128.96,129.16,129.4,129.74,130.07,133.22,22.13,21.81,21.650000000000002,21.46,21.28,21.1,20.93,20.76,20.57,N/A,N/A -2012,4,2,20,30,100760,99600,98470,84.17,0,8.72,9.49,9.65,9.75,9.94,10.17,10.73,11.34,11.86,111.16,111.57000000000001,112.06,112.73,113.92,115.4,118.41,121.61,125.28,22.31,22.02,21.86,21.69,21.54,21.41,21.36,21.330000000000002,21.28,N/A,N/A -2012,4,2,21,30,100720,99560,98430,89.55,0,9.35,10.22,10.42,10.57,10.82,11.13,11.75,12.4,12.99,115.8,116.22,116.58,117.08,117.9,118.9,122.05,125.53,129.34,22.34,22.04,21.89,21.71,21.54,21.39,21.330000000000002,21.29,21.22,N/A,N/A -2012,4,2,22,30,100690,99520,98400,90.4,0,8.74,9.59,9.81,10,10.39,10.9,11.290000000000001,11.620000000000001,12.01,116.32000000000001,116.75,117.13,117.72,118.78,120.17,122.74000000000001,125.45,129.42000000000002,22.45,22.17,22.01,21.84,21.69,21.57,21.48,21.42,21.34,N/A,N/A -2012,4,2,23,30,100670,99500,98380,92.57000000000001,0,7.930000000000001,9.09,9.540000000000001,9.96,10.32,10.620000000000001,10.89,11.120000000000001,11.55,122.68,124.12,125.25,126.78,128.41,130.09,131.84,133.48,136.81,22.76,22.57,22.48,22.38,22.29,22.2,22.080000000000002,21.96,21.64,N/A,N/A -2012,4,3,0,30,100670,99510,98390,96.88,0,8.620000000000001,9.82,10.24,10.58,10.89,11.17,11.44,11.68,12.19,127.2,127.46000000000001,127.65,127.88000000000001,128.14000000000001,128.42000000000002,128.78,129.13,130.01,22.89,22.66,22.52,22.35,22.22,22.12,22.04,21.97,21.84,N/A,N/A -2012,4,3,1,30,100670,99510,98390,94.54,0,9.42,10.77,11.24,11.66,12,12.3,12.58,12.84,13.31,137.47,136.83,136.65,136.54,136.6,136.78,137.29,137.89000000000001,140.45000000000002,23.3,23.13,23.02,22.87,22.73,22.59,22.45,22.32,22.06,N/A,N/A -2012,4,3,2,30,100680,99530,98400,95.18,0,7.65,8.8,9.16,9.46,9.700000000000001,9.91,10.1,10.26,10.64,135.39000000000001,135.46,135.62,135.84,136.15,136.49,137.03,137.58,139.66,23.2,23.05,22.95,22.82,22.69,22.55,22.400000000000002,22.26,21.96,N/A,N/A -2012,4,3,3,30,100700,99540,98420,94.60000000000001,0.4,8.620000000000001,10.03,10.58,11.1,11.52,11.89,12.13,12.3,12.16,133.1,133.87,134.52,135.41,136.39000000000001,137.48,138.77,140.04,143.33,23.17,22.98,22.86,22.69,22.52,22.34,22.150000000000002,21.97,21.64,N/A,N/A -2012,4,3,4,30,100710,99550,98430,95.81,0,7.33,8.46,8.870000000000001,9.25,9.6,9.94,10.28,10.6,11.290000000000001,143.6,144.07,144.38,144.79,145.26,145.78,146.41,147.03,148.55,22.97,22.76,22.62,22.47,22.32,22.17,22.01,21.87,21.57,N/A,N/A -2012,4,3,5,30,100730,99570,98450,94.94,0,6.68,7.74,8.15,8.540000000000001,8.9,9.25,9.61,9.94,10.65,147.94,148.27,148.52,148.83,149.15,149.49,149.87,150.25,151.17000000000002,22.92,22.71,22.580000000000002,22.42,22.27,22.12,21.97,21.830000000000002,21.53,N/A,N/A -2012,4,3,6,30,100800,99640,98510,93.47,0,7.04,8.01,8.370000000000001,8.700000000000001,8.99,9.27,9.56,9.83,10.41,149.22,149.48,149.67000000000002,149.89000000000001,150.12,150.34,150.6,150.85,151.46,23.080000000000002,22.85,22.71,22.55,22.39,22.23,22.06,21.91,21.6,N/A,N/A -2012,4,3,7,30,100810,99650,98520,91.78,0,7.67,8.74,9.120000000000001,9.47,9.78,10.08,10.39,10.67,11.3,155.53,155.67000000000002,155.77,155.88,155.99,156.11,156.25,156.39000000000001,156.75,23.18,22.96,22.82,22.66,22.51,22.35,22.19,22.04,21.73,N/A,N/A -2012,4,3,8,30,100810,99650,98530,90.31,0,7.84,8.94,9.32,9.67,9.98,10.27,10.57,10.85,11.46,151.62,151.84,152.02,152.23,152.45000000000002,152.68,152.95000000000002,153.21,153.88,23.22,23.02,22.88,22.72,22.57,22.41,22.26,22.11,21.81,N/A,N/A -2012,4,3,9,30,100850,99690,98560,88.85000000000001,0,7.86,8.97,9.370000000000001,9.72,10.040000000000001,10.34,10.63,10.91,11.48,148.36,148.64000000000001,148.86,149.11,149.36,149.63,149.92000000000002,150.20000000000002,150.86,23.27,23.07,22.95,22.79,22.63,22.48,22.32,22.17,21.86,N/A,N/A -2012,4,3,10,30,100820,99660,98540,86.85000000000001,0,8.27,9.46,9.870000000000001,10.25,10.58,10.89,11.21,11.51,12.15,149.89000000000001,150.11,150.32,150.57,150.84,151.11,151.43,151.74,152.47,23.34,23.150000000000002,23.02,22.87,22.73,22.580000000000002,22.43,22.29,22,N/A,N/A -2012,4,3,11,30,100860,99700,98580,86.06,0,8.41,9.61,10.05,10.44,10.790000000000001,11.1,11.43,11.73,12.38,145.83,146.34,146.65,147.02,147.39000000000001,147.76,148.18,148.59,149.53,23.37,23.19,23.07,22.92,22.77,22.62,22.48,22.330000000000002,22.04,N/A,N/A -2012,4,3,12,30,100880,99720,98590,85.17,0,7.9,9.05,9.450000000000001,9.81,10.13,10.43,10.74,11.040000000000001,11.69,145.56,145.96,146.24,146.6,146.99,147.4,147.89000000000001,148.36,149.52,23.38,23.21,23.09,22.95,22.8,22.66,22.52,22.39,22.12,N/A,N/A -2012,4,3,13,30,100920,99760,98640,83.62,0,9.02,10.27,10.71,11.08,11.42,11.73,12.05,12.34,12.99,147.51,147.81,147.97,148.18,148.4,148.64000000000001,148.94,149.23,149.97,23.46,23.3,23.19,23.05,22.91,22.77,22.62,22.490000000000002,22.23,N/A,N/A -2012,4,3,14,30,100930,99770,98650,83.67,0,8.91,10.16,10.59,10.97,11.31,11.63,11.950000000000001,12.25,12.93,144.36,144.81,145.13,145.5,145.9,146.3,146.77,147.22,148.31,23.51,23.35,23.240000000000002,23.1,22.96,22.830000000000002,22.69,22.57,22.330000000000002,N/A,N/A -2012,4,3,15,30,100990,99830,98710,84.02,0,8.01,9.16,9.59,9.96,10.290000000000001,10.6,10.91,11.19,11.8,142.68,143.22,143.58,144.01,144.46,144.94,145.49,146.03,147.4,23.56,23.39,23.27,23.13,22.98,22.84,22.69,22.56,22.3,N/A,N/A -2012,4,3,16,30,101020,99850,98730,84.7,0,7.7700000000000005,8.85,9.24,9.6,9.91,10.21,10.53,10.82,11.51,138.46,138.98,139.35,139.82,140.33,140.88,141.55,142.22,144,23.56,23.39,23.27,23.13,22.990000000000002,22.85,22.71,22.59,22.36,N/A,N/A -2012,4,3,17,30,101000,99840,98710,85.79,0,8.120000000000001,9.24,9.620000000000001,9.96,10.27,10.55,10.83,11.1,11.67,147.47,147.62,147.74,147.88,148.03,148.20000000000002,148.41,148.62,149.19,23.54,23.35,23.22,23.06,22.91,22.76,22.6,22.45,22.14,N/A,N/A -2012,4,3,18,30,101040,99880,98760,86.94,0,6.11,6.91,7.21,7.46,7.7,7.930000000000001,8.16,8.39,8.88,142.54,143.04,143.36,143.73,144.13,144.53,144.99,145.43,146.48,23.54,23.32,23.18,23.02,22.86,22.7,22.53,22.38,22.06,N/A,N/A -2012,4,3,19,30,101030,99870,98750,89.66,0,6.19,6.91,7.23,7.66,7.95,8.16,8.42,8.69,9.26,141.91,142.6,143.26,144.3,145.13,145.82,146.69,147.56,149.44,23.47,23.22,23.080000000000002,22.92,22.75,22.57,22.400000000000002,22.25,21.94,N/A,N/A -2012,4,3,20,30,101040,99880,98760,91.01,0,5.2,6.05,6.390000000000001,6.640000000000001,6.88,7.11,7.36,7.59,8.1,131.99,133.8,135.15,136.73,138.04,139.18,140.35,141.47,143.81,23.48,23.23,23.07,22.89,22.72,22.55,22.37,22.21,21.87,N/A,N/A -2012,4,3,21,30,100960,99800,98680,92.25,0,5.99,6.82,7.11,7.36,7.59,7.8,8.02,8.22,8.66,130.6,131.25,131.71,132.31,132.98,133.67000000000002,134.53,135.38,137.56,23.38,23.16,23.03,22.87,22.7,22.55,22.38,22.22,21.900000000000002,N/A,N/A -2012,4,3,22,30,100880,99730,98600,93.08,0,7.3,8.35,8.72,9.06,9.370000000000001,9.66,9.94,10.21,10.73,130.99,131.83,132.39000000000001,133.16,134.05,135.03,136.19,137.32,140,23.400000000000002,23.21,23.09,22.95,22.8,22.66,22.51,22.37,22.05,N/A,N/A -2012,4,3,23,30,100900,99740,98620,94.10000000000001,0,6.28,7.2700000000000005,7.640000000000001,7.98,8.290000000000001,8.59,8.88,9.16,9.78,130.8,131.64000000000001,132.26,133.05,133.92000000000002,134.86,136.03,137.20000000000002,140.65,23.330000000000002,23.12,22.990000000000002,22.84,22.69,22.55,22.400000000000002,22.27,22.02,N/A,N/A -2012,4,4,0,30,100890,99730,98600,95.27,0.4,5.98,6.92,7.28,7.640000000000001,7.99,8.32,8.69,9.06,10,127.97,129.21,130.19,131.55,133.14000000000001,134.88,137.07,139.28,145.74,23.29,23.09,22.97,22.830000000000002,22.7,22.57,22.45,22.35,22.19,N/A,N/A -2012,4,4,1,30,100900,99730,98610,96.31,0.4,6.59,7.6000000000000005,7.98,8.36,8.73,9.1,9.49,9.85,10.71,128.12,129.08,129.88,131.04,132.77,134.84,138.66,142.74,156.05,23.25,23.05,22.95,22.830000000000002,22.73,22.64,22.59,22.56,22.62,N/A,N/A -2012,4,4,2,30,100960,99800,98680,97.16,0.4,6.11,7.17,7.61,8.01,8.370000000000001,8.700000000000001,8.98,9.23,9.65,142.99,144.1,144.93,145.96,147.07,148.26,149.73,151.18,156.01,23.26,23.09,22.98,22.86,22.740000000000002,22.63,22.51,22.39,22.23,N/A,N/A -2012,4,4,3,30,100960,99800,98680,96.38,0,6.68,7.78,8.21,8.64,9,9.33,9.55,9.73,9.91,149.5,149.74,150.12,150.81,151.96,153.45000000000002,156.31,159.38,168.79,23.32,23.16,23.06,22.95,22.86,22.78,22.75,22.740000000000002,22.95,N/A,N/A -2012,4,4,4,30,101010,99850,98730,97.24000000000001,0,4.96,5.8100000000000005,6.15,6.49,6.8100000000000005,7.12,7.46,7.8,7.890000000000001,137.78,138.82,139.8,141.21,143.22,145.74,150.02,154.73,163.8,23.22,23.01,22.89,22.740000000000002,22.61,22.490000000000002,22.35,22.22,22.080000000000002,N/A,N/A -2012,4,4,5,30,101040,99880,98760,97.72,0,4.3100000000000005,5.05,5.3500000000000005,5.65,5.93,6.2,6.46,6.7,7.43,141.23,141.85,142.42000000000002,143.34,144.77,146.59,150.12,153.93,164.26,23.14,22.91,22.78,22.64,22.54,22.47,22.37,22.27,22.11,N/A,N/A -2012,4,4,6,30,101070,99910,98780,97.8,0,4.69,5.47,5.78,6.09,6.390000000000001,6.7,7.1000000000000005,7.54,8.38,143.44,144.94,146.16,147.93,149.89000000000001,152.09,155.01,158.14000000000001,166.07,23.13,22.93,22.81,22.67,22.54,22.42,22.240000000000002,22.06,22.3,N/A,N/A -2012,4,4,7,30,101030,99870,98740,98.29,0,4.96,5.76,6.12,6.53,7,7.53,8.09,8.64,9,152.28,153.6,154.64000000000001,156.11,158,160.3,163.24,166.36,170.23,22.94,22.68,22.54,22.39,22.26,22.150000000000002,22.28,22.490000000000002,22.69,N/A,N/A -2012,4,4,8,30,101030,99870,98750,96.88,0,5.16,6.04,6.44,6.9,7.390000000000001,7.91,8.08,8.15,7.8100000000000005,151.51,152.65,153.8,155.64000000000001,158.3,161.51,163.8,165.62,166.17000000000002,23.02,22.82,22.73,22.650000000000002,22.66,22.73,22.87,23.03,23.09,N/A,N/A -2012,4,4,9,30,101030,99860,98740,97.98,0,3.95,4.6000000000000005,4.9,5.22,5.75,6.43,7.07,7.67,7.96,150.82,151.34,151.89000000000001,152.76,155.85,160.61,164.17000000000002,167.23,169.1,22.86,22.62,22.490000000000002,22.37,22.35,22.400000000000002,22.63,22.89,23.080000000000002,N/A,N/A -2012,4,4,10,30,101070,99910,98790,97.38,0,2.84,3.5500000000000003,3.92,4.44,4.91,5.3500000000000005,5.68,5.94,6.2,142.82,145.84,148.66,153.13,158.06,163.45000000000002,166.69,169.01,173.51,22.990000000000002,22.830000000000002,22.75,22.71,22.68,22.66,22.75,22.87,22.990000000000002,N/A,N/A -2012,4,4,11,30,101060,99890,98770,98.79,0.4,3.46,3.98,4.21,4.49,4.8500000000000005,5.29,5.62,5.91,6.19,143.5,144.70000000000002,145.73,147.4,150.53,154.81,157.48,159.56,161.86,22.82,22.59,22.48,22.39,22.51,22.77,22.97,23.13,23.080000000000002,N/A,N/A -2012,4,4,12,30,101080,99910,98780,97.29,0,5.5600000000000005,5.78,5.53,4.98,4.7,4.5600000000000005,4.57,4.63,4.97,73.81,75.15,80.26,90.91,100.18,108.8,117.37,125.33,137.66,22.13,21.8,21.7,21.68,21.68,21.68,21.68,21.68,21.6,N/A,N/A -2012,4,4,13,30,101110,99940,98810,96.43,0,6.07,6.2700000000000005,6.12,5.8,5.58,5.4,5.29,5.21,5.25,88.23,89.97,92.82000000000001,98.06,103.21000000000001,108.28,113.33,117.88,127.46000000000001,22.2,21.92,21.84,21.85,21.84,21.830000000000002,21.78,21.72,21.61,N/A,N/A -2012,4,4,14,30,101150,99980,98850,96.21000000000001,2.2,5.46,5.58,5.37,4.9,4.63,4.48,4.38,4.3100000000000005,4.39,92.18,93.11,96.89,106.42,113.28,118.7,124.54,130.04,140.24,22.34,22.07,21.97,21.95,21.900000000000002,21.85,21.79,21.740000000000002,21.59,N/A,N/A -2012,4,4,15,30,101140,99980,98850,96.95,0,3.91,3.95,3.89,3.88,3.9,3.95,4.0600000000000005,4.17,4.57,97.2,105.64,111.4,118.35000000000001,124.76,130.92000000000002,136.67000000000002,141.98,150.12,22.63,22.42,22.330000000000002,22.23,22.13,22.03,21.93,21.84,21.650000000000002,N/A,N/A -2012,4,4,16,30,101110,99950,98820,97.31,0,3.56,3.69,3.71,3.77,3.86,3.97,4.11,4.24,4.6000000000000005,113.06,117.69,124.32000000000001,137,145.53,151.53,155.15,157.94,161.6,22.79,22.51,22.37,22.25,22.150000000000002,22.07,21.96,21.85,21.580000000000002,N/A,N/A -2012,4,4,17,30,101110,99950,98820,97.15,0,2.66,2.99,3.1,3.19,3.3200000000000003,3.5,3.69,3.87,4.05,137.21,142.68,145.75,148.68,152.06,155.98,159.14000000000001,161.89000000000001,163.55,23.06,22.78,22.62,22.45,22.32,22.22,22.080000000000002,21.93,21.72,N/A,N/A -2012,4,4,18,30,101090,99930,98800,94.25,0,3.68,4.01,4.09,4.14,4.18,4.21,4.23,4.26,4.36,150.91,151.42000000000002,151.71,152.01,152.3,152.6,152.97,153.34,154.57,23.29,23.03,22.87,22.68,22.5,22.31,22.12,21.95,21.59,N/A,N/A -2012,4,4,19,30,101070,99900,98780,93.01,0,3.25,3.5500000000000003,3.63,3.68,3.73,3.7800000000000002,3.84,3.9,4.08,154.19,154.25,154.35,154.39000000000001,154.42000000000002,154.43,154.4,154.36,154.26,23.35,23.09,22.93,22.740000000000002,22.56,22.38,22.19,22.02,21.66,N/A,N/A -2012,4,4,20,30,100970,99810,98690,92.22,0,3.88,4.2,4.2700000000000005,4.3100000000000005,4.34,4.36,4.38,4.4,4.46,147.19,147.55,147.78,147.98,148.19,148.39000000000001,148.63,148.88,149.63,23.43,23.14,22.98,22.79,22.61,22.43,22.240000000000002,22.06,21.69,N/A,N/A -2012,4,4,21,30,100890,99730,98600,94.10000000000001,0,4.21,4.5200000000000005,4.5600000000000005,4.5600000000000005,4.54,4.51,4.47,4.43,4.39,133.78,133.78,133.96,134.07,134.13,134.14000000000001,134.07,133.98,133.61,23.31,23.03,22.87,22.68,22.5,22.32,22.14,21.97,21.63,N/A,N/A -2012,4,4,22,30,100980,99830,98700,95.42,2.9000000000000004,3.71,4.19,4.39,4.57,4.72,4.8500000000000005,4.96,5.04,5.14,92.11,94.49,95.91,97.51,98.89,100.19,101.35000000000001,102.4,104.99000000000001,23.13,22.900000000000002,22.77,22.580000000000002,22.41,22.240000000000002,22.06,21.89,21.61,N/A,N/A -2012,4,4,23,30,101000,99820,98680,89.08,19.400000000000002,9.700000000000001,10.43,10.540000000000001,10.59,10.58,10.56,10.52,10.47,10.39,338.67,337.62,337.59000000000003,337.53000000000003,337.47,337.41,337.31,337.22,336.72,20.05,19.59,19.39,19.19,19,18.82,18.64,18.47,18.12,N/A,N/A -2012,4,5,0,30,100790,99620,98500,84.01,103.30000000000001,3.66,4.34,4.74,5.24,5.5,5.61,5.5,5.36,4.69,41.59,36.65,33.21,31.59,31.11,31.27,32.04,32.83,35.27,20.35,21.06,21.73,22.68,23.32,23.78,24.07,24.310000000000002,24.53,N/A,N/A -2012,4,5,1,30,100750,99580,98460,83.45,0,1.55,1.46,1.29,1.07,1.1400000000000001,1.46,1.87,2.34,3.3000000000000003,190.14000000000001,198.96,199.89000000000001,193.62,181.64000000000001,160.15,149.69,143.64000000000001,138.17000000000002,21.2,21.32,21.650000000000002,22.39,22.830000000000002,23.05,23.1,23.09,23.07,N/A,N/A -2012,4,5,2,30,100820,99650,98530,85.66,0,3.2,3.29,3.35,3.59,3.83,4.07,4.34,4.6000000000000005,5.14,238.36,234.21,228.11,214.12,204.73000000000002,198.42000000000002,193.51,189.25,183.66,21.830000000000002,21.62,21.68,22.04,22.27,22.43,22.45,22.43,22.23,N/A,N/A -2012,4,5,3,30,100810,99640,98520,91.53,0,5.79,6.51,6.74,6.99,7.13,7.21,7.17,7.12,6.87,211.95000000000002,209.49,207.46,204.82,202.43,200.28,199.09,198.22,198.13,22.06,21.91,21.94,22.07,22.21,22.34,22.41,22.46,22.38,N/A,N/A -2012,4,5,4,30,100870,99700,98580,88.37,0,2.29,2.45,2.68,3.2,3.58,3.86,4.13,4.37,4.83,184.14000000000001,183.18,182.53,181.43,180.82,180.58,180.67000000000002,180.85,181.88,22.22,21.96,21.89,21.89,21.87,21.85,21.79,21.740000000000002,21.56,N/A,N/A -2012,4,5,5,30,100890,99720,98590,88.10000000000001,0,1.59,1.6,1.59,1.62,1.72,1.8800000000000001,2.04,2.2,2.59,88.42,91.89,97.89,112.82000000000001,124.62,135.08,143.06,149.85,160.49,22.26,21.98,21.85,21.75,21.650000000000002,21.55,21.44,21.34,21.13,N/A,N/A -2012,4,5,6,30,100930,99760,98630,87.82000000000001,0,2.33,2.4,2.38,2.33,2.15,1.87,1.67,1.51,1.56,69.34,69.52,69.63,69.8,74.58,82.34,98.48,115.3,138.94,22.39,22.09,21.92,21.73,21.56,21.400000000000002,21.27,21.150000000000002,20.93,N/A,N/A -2012,4,5,7,30,100960,99790,98660,87.97,0,2.34,2.41,2.4,2.35,2.2800000000000002,2.19,1.97,1.76,1.87,104.44,104.87,105.21000000000001,105.93,107.08,108.56,116.34,124.74000000000001,166.45000000000002,22.52,22.22,22.06,21.86,21.68,21.490000000000002,21.32,21.150000000000002,20.91,N/A,N/A -2012,4,5,8,30,100940,99770,98640,89.69,0,2.6,2.67,2.64,2.58,2.48,2.35,2.38,2.46,2.69,133.86,134.75,135.65,137.26,142.19,149.56,161.69,175.24,185.91,22.53,22.23,22.06,21.87,21.7,21.53,21.38,21.25,21.02,N/A,N/A -2012,4,5,9,30,100910,99750,98620,91.29,0,2.33,2.42,2.47,2.6,2.85,3.2,3.41,3.5500000000000003,3.84,181.59,183.63,185.98,191.01,196.79,203.65,206.74,208.20000000000002,211.6,22.41,22.12,21.97,21.82,21.71,21.650000000000002,21.56,21.47,21.28,N/A,N/A -2012,4,5,10,30,100910,99740,98620,93.69,0,3.5,3.72,3.83,4.0600000000000005,4.4,4.86,5.11,5.25,5.45,206.99,207.89000000000001,208.8,210.63,212.98000000000002,216.01,217.66,218.67000000000002,220.18,22.38,22.09,21.94,21.79,21.69,21.64,21.56,21.47,21.25,N/A,N/A -2012,4,5,11,30,100910,99750,98620,94.03,0,5.16,5.55,5.65,5.7,5.75,5.79,5.86,5.95,6.390000000000001,214.92000000000002,215.37,215.62,215.9,216.14000000000001,216.35,216.83,217.39000000000001,217.78,22.43,22.12,21.95,21.75,21.57,21.39,21.2,21.03,20.75,N/A,N/A -2012,4,5,12,30,100930,99760,98630,94.71000000000001,0,6.140000000000001,6.51,6.5600000000000005,6.55,6.5200000000000005,6.49,6.45,6.4,6.32,224.21,224.08,223.93,223.74,223.56,223.39000000000001,223.21,223.05,222.88,22.07,21.7,21.51,21.29,21.07,20.85,20.67,20.5,20.2,N/A,N/A -2012,4,5,13,30,100950,99790,98650,97.96000000000001,0,6.7700000000000005,7.21,7.2700000000000005,7.26,7.24,7.2,7.17,7.15,7.2,228.01,227.75,227.45000000000002,227.02,226.53,225.99,225.23000000000002,224.46,222.20000000000002,21.55,21.12,20.93,20.8,20.68,20.56,20.42,20.3,20.01,N/A,N/A -2012,4,5,14,30,101040,99880,98750,95.64,0,4.75,4.97,4.99,4.97,4.95,4.92,4.88,4.83,4.82,246.56,247.35,248.05,248.97,250.01000000000002,251.16,252.93,254.79,259.04,21.97,21.64,21.47,21.28,21.09,20.91,20.77,20.650000000000002,20.45,N/A,N/A -2012,4,5,15,30,101070,99900,98770,93.08,2.6,5.26,5.51,5.53,5.51,5.53,5.59,5.64,5.7,5.82,295.34000000000003,295.23,294.82,294.09000000000003,292.68,290.67,287.81,284.76,279.34000000000003,22.39,22.080000000000002,21.93,21.76,21.62,21.5,21.42,21.35,21.1,N/A,N/A -2012,4,5,16,30,101090,99920,98790,93.23,2.2,5.61,5.96,6.0200000000000005,6.03,6.03,6.01,5.99,5.97,5.95,316.08,315.68,315.41,315.07,314.69,314.27,313.68,313.08,310.25,21.92,21.57,21.39,21.2,21.01,20.830000000000002,20.64,20.47,20.14,N/A,N/A -2012,4,5,17,30,101100,99930,98790,92.93,0,5.61,5.93,5.98,5.98,5.96,5.94,5.9,5.87,5.8,322.72,322.5,322.28000000000003,321.96,321.59000000000003,321.16,320.5,319.82,316.73,21.94,21.59,21.42,21.22,21.03,20.85,20.67,20.5,20.17,N/A,N/A -2012,4,5,18,30,101090,99930,98800,90.64,0,4.09,4.3100000000000005,4.36,4.37,4.38,4.39,4.39,4.39,4.41,321.54,320.12,319.08,317.95,316.87,315.78000000000003,314.58,313.43,310.7,22.32,21.990000000000002,21.82,21.63,21.44,21.26,21.07,20.900000000000002,20.54,N/A,N/A -2012,4,5,19,30,101090,99930,98800,88.83,0,1.68,1.84,1.9100000000000001,1.98,2.05,2.12,2.21,2.3000000000000003,2.6,327.53000000000003,327.3,327.2,327.09000000000003,326.97,326.86,326.71,326.55,325.74,22.66,22.35,22.18,21.98,21.79,21.61,21.42,21.25,20.89,N/A,N/A -2012,4,5,20,30,101060,99890,98760,85.79,0,1.27,1.33,1.36,1.37,1.3800000000000001,1.3900000000000001,1.41,1.42,1.45,0.64,359.57,358.87,358.18,357.54,356.89,356.18,355.5,353.88,23.02,22.71,22.54,22.34,22.150000000000002,21.96,21.77,21.580000000000002,21.2,N/A,N/A -2012,4,5,21,30,101000,99840,98710,84.54,0,2.88,3.09,3.21,3.46,3.83,4.37,4.69,4.89,5.12,339.71,339.64,339.65000000000003,339.65000000000003,339.7,339.8,339.52,339.06,336.57,23.28,22.990000000000002,22.85,22.72,22.63,22.580000000000002,22.490000000000002,22.39,22.16,N/A,N/A -2012,4,5,22,30,100980,99820,98700,85.62,0,1.7,1.67,1.45,0.93,0.92,1.32,1.74,2.18,2.99,190.83,191.5,213.72,277.61,305.48,323.29,332.8,336.89,340.24,23.39,23.09,23,23.05,23.03,22.93,22.87,22.830000000000002,22.71,N/A,N/A -2012,4,5,23,30,100960,99800,98680,86.68,0,1.12,0.31,0.22,0.5700000000000001,1.08,1.59,2.04,2.46,3.24,167.88,160.86,148.06,68.32000000000001,356.89,353.08,350.5,348.74,345.86,23.37,23.39,23.43,23.43,23.52,23.68,23.69,23.64,23.5,N/A,N/A -2012,4,6,0,30,100950,99800,98680,82.93,0,0.89,0.59,0.55,0.87,1.22,1.6,1.97,2.32,2.97,149.64000000000001,84.34,57.65,31.98,13.38,7.19,3.11,0.3,356.78000000000003,23.91,24.240000000000002,24.44,24.560000000000002,24.62,24.64,24.61,24.580000000000002,24.43,N/A,N/A -2012,4,6,1,30,100980,99830,98710,83.09,0,2,1.6,1.25,0.89,0.76,0.74,0.93,1.27,2.0300000000000002,167.93,157.62,147.64000000000001,131.22,106.54,71.42,51.42,33.79,21.47,24.28,24.830000000000002,25.05,25.07,25.060000000000002,25.04,25.02,25.01,24.91,N/A,N/A -2012,4,6,2,30,101030,99880,98760,88.55,0,2.5300000000000002,1.6600000000000001,0.99,0.33,0.33,0.78,1.28,1.79,2.59,194.83,193.3,175.48,144.34,122.22,62.64,31.26,28.1,25.86,23.69,24.13,24.45,24.84,25.1,25.28,25.34,25.35,25.19,N/A,N/A -2012,4,6,3,30,101080,99920,98800,90.87,0,1.41,0.67,0.5,0.7000000000000001,1.02,1.56,2.08,2.58,3.38,218.46,246.67000000000002,267.68,328.39,5.51,12.98,17.23,19.34,21.51,23.53,23.93,24.16,24.330000000000002,24.46,24.57,24.63,24.66,24.560000000000002,N/A,N/A -2012,4,6,4,30,101120,99960,98840,91.77,0,1.07,1.79,2.11,2.49,2.83,3.16,3.42,3.65,4.05,334.8,350.1,359.35,3.36,6.11,7.61,8.67,9.49,12.700000000000001,23.66,24.13,24.36,24.5,24.57,24.61,24.560000000000002,24.47,24.25,N/A,N/A -2012,4,6,5,30,101140,99980,98850,93.07000000000001,0,1.9000000000000001,2.19,2.32,2.46,2.62,2.7800000000000002,2.96,3.13,3.48,305.78000000000003,318.87,327.17,334.84000000000003,340.75,345.49,349.25,352.46,357.93,23.22,23.59,23.84,24.05,24.18,24.26,24.26,24.23,24.060000000000002,N/A,N/A -2012,4,6,6,30,101220,100050,98920,72.61,0,5.04,5.39,5.42,5.36,5.26,5.16,5.08,5.01,5.09,15.9,15.63,15.610000000000001,15.82,16.35,17.13,18.23,19.36,24.28,23.93,23.81,23.72,23.61,23.5,23.37,23.22,23.06,22.77,N/A,N/A -2012,4,6,7,30,101240,100080,98950,75.53,0,5.34,5.76,5.84,5.88,5.96,6.05,6.37,6.75,7.88,43.81,44.34,44.660000000000004,45.07,45.59,46.19,47.69,49.42,52.86,23.22,22.96,22.81,22.63,22.46,22.3,22.17,22.07,22.21,N/A,N/A -2012,4,6,8,30,101270,100100,98960,74.43,0,7.3500000000000005,7.99,8.13,8.19,8.22,8.24,8.25,8.26,8.31,56.38,56.53,56.63,56.74,56.83,56.93,57.050000000000004,57.17,57.52,23.11,22.830000000000002,22.67,22.490000000000002,22.3,22.13,21.94,21.77,21.43,N/A,N/A -2012,4,6,9,30,101290,100120,98980,67.87,0,7.640000000000001,8.290000000000001,8.41,8.47,8.49,8.51,8.52,8.540000000000001,8.74,58.14,58.33,58.44,58.57,58.71,58.86,59.06,59.27,60.28,23.04,22.76,22.61,22.42,22.240000000000002,22.07,21.89,21.73,21.47,N/A,N/A -2012,4,6,10,30,101310,100140,99010,70.81,0,6.91,7.49,7.61,7.66,7.69,7.7,7.72,7.72,7.76,65.31,65.56,65.71000000000001,65.87,66.02,66.18,66.36,66.54,67.02,22.830000000000002,22.53,22.37,22.18,22,21.82,21.63,21.46,21.11,N/A,N/A -2012,4,6,11,30,101340,100170,99030,71.2,0,6.83,7.390000000000001,7.51,7.5600000000000005,7.59,7.61,7.61,7.61,7.61,66.12,66.36,66.51,66.66,66.8,66.94,67.1,67.25,67.62,22.73,22.42,22.25,22.06,21.87,21.68,21.490000000000002,21.32,20.94,N/A,N/A -2012,4,6,12,30,101390,100210,99070,70.96000000000001,0,7.46,8.09,8.22,8.290000000000001,8.32,8.34,8.35,8.35,8.34,71.55,71.64,71.7,71.76,71.82000000000001,71.87,71.93,71.98,72.12,22.6,22.28,22.11,21.91,21.72,21.54,21.35,21.17,20.79,N/A,N/A -2012,4,6,13,30,101420,100250,99110,71.4,0,7.63,8.26,8.4,8.46,8.5,8.52,8.53,8.53,8.540000000000001,72.56,72.81,72.95,73.09,73.23,73.35000000000001,73.5,73.64,74,22.41,22.080000000000002,21.900000000000002,21.71,21.52,21.34,21.14,20.96,20.59,N/A,N/A -2012,4,6,14,30,101500,100320,99180,72.44,0,6.78,7.32,7.44,7.49,7.5200000000000005,7.54,7.55,7.55,7.55,78.55,78.72,78.85000000000001,78.96000000000001,79.08,79.19,79.32000000000001,79.44,79.75,22.5,22.18,22,21.81,21.62,21.43,21.240000000000002,21.06,20.68,N/A,N/A -2012,4,6,15,30,101540,100370,99230,73.26,0,6.79,7.34,7.46,7.53,7.5600000000000005,7.58,7.59,7.6000000000000005,7.6000000000000005,80.58,80.73,80.83,80.93,81.03,81.13,81.24,81.34,81.58,22.53,22.19,22.02,21.830000000000002,21.63,21.45,21.25,21.07,20.69,N/A,N/A -2012,4,6,16,30,101560,100380,99240,73.52,0,6.82,7.36,7.48,7.54,7.57,7.59,7.59,7.6000000000000005,7.58,80.36,80.57000000000001,80.69,80.82000000000001,80.94,81.05,81.17,81.28,81.54,22.46,22.12,21.94,21.75,21.55,21.37,21.17,20.990000000000002,20.61,N/A,N/A -2012,4,6,17,30,101580,100400,99260,70.89,0,6.32,6.8,6.9,6.94,6.97,6.98,6.98,6.98,6.96,86.15,86.42,86.56,86.72,86.87,87.01,87.17,87.32000000000001,87.66,22.48,22.14,21.97,21.77,21.580000000000002,21.39,21.2,21.01,20.63,N/A,N/A -2012,4,6,18,30,101590,100410,99270,70.29,0,6.2,6.67,6.76,6.8,6.82,6.83,6.83,6.83,6.8100000000000005,90.93,91.21000000000001,91.38,91.56,91.72,91.88,92.05,92.2,92.55,22.52,22.19,22.01,21.82,21.62,21.44,21.240000000000002,21.06,20.68,N/A,N/A -2012,4,6,19,30,101590,100420,99280,67.78,0,6.2,6.67,6.76,6.8,6.82,6.82,6.82,6.8100000000000005,6.78,107.72,107.84,107.89,107.94,108,108.06,108.13,108.19,108.36,22.7,22.38,22.21,22.01,21.830000000000002,21.64,21.45,21.27,20.89,N/A,N/A -2012,4,6,20,30,101550,100380,99240,64.94,0,5.76,6.18,6.26,6.29,6.3,6.29,6.28,6.2700000000000005,6.21,116.58,116.58,116.56,116.54,116.51,116.5,116.49000000000001,116.48,116.47,22.88,22.57,22.400000000000002,22.21,22.02,21.84,21.650000000000002,21.47,21.1,N/A,N/A -2012,4,6,21,30,101530,100360,99220,65.64,0,5.2,5.58,5.64,5.66,5.66,5.66,5.65,5.63,5.58,122.51,122.48,122.46000000000001,122.44,122.41,122.39,122.36,122.34,122.27,22.93,22.63,22.46,22.27,22.080000000000002,21.900000000000002,21.7,21.52,21.14,N/A,N/A -2012,4,6,22,30,101530,100360,99220,68.52,0,5.29,5.68,5.74,5.76,5.7700000000000005,5.7700000000000005,5.75,5.73,5.68,123.56,123.65,123.69,123.73,123.78,123.82000000000001,123.87,123.92,124.06,22.85,22.55,22.38,22.19,22,21.82,21.63,21.45,21.07,N/A,N/A -2012,4,6,23,30,101530,100360,99220,72.12,0,4.69,4.99,5.04,5.04,5.04,5.0200000000000005,5,4.97,4.9,128.74,128.8,128.83,128.87,128.89000000000001,128.91,128.92000000000002,128.93,128.92000000000002,22.73,22.42,22.25,22.06,21.88,21.69,21.5,21.330000000000002,20.96,N/A,N/A -2012,4,7,0,30,101550,100370,99240,68.79,0,4.2700000000000005,4.55,4.59,4.6000000000000005,4.6000000000000005,4.59,4.57,4.5600000000000005,4.51,128.84,128.79,128.77,128.75,128.7,128.66,128.58,128.51,128.13,22.82,22.53,22.36,22.17,21.990000000000002,21.81,21.62,21.45,21.11,N/A,N/A -2012,4,7,1,30,101550,100370,99230,70.93,0,4.32,4.6000000000000005,4.64,4.64,4.64,4.64,4.62,4.61,4.58,129.84,129.79,129.76,129.7,129.64000000000001,129.57,129.45,129.34,128.81,22.72,22.41,22.240000000000002,22.05,21.87,21.69,21.5,21.32,20.98,N/A,N/A -2012,4,7,2,30,101590,100410,99270,70.02,0,4.24,4.51,4.55,4.5600000000000005,4.5600000000000005,4.55,4.54,4.53,4.51,129.82,129.71,129.59,129.46,129.31,129.16,128.94,128.74,127.9,22.78,22.48,22.31,22.12,21.93,21.75,21.57,21.39,21.05,N/A,N/A -2012,4,7,3,30,101610,100440,99300,66.21000000000001,0,4.14,4.43,4.49,4.51,4.53,4.54,4.5600000000000005,4.58,4.68,120.86,120.74000000000001,120.65,120.54,120.41,120.28,120.08,119.9,119.16,22.92,22.63,22.47,22.28,22.09,21.92,21.73,21.56,21.22,N/A,N/A -2012,4,7,4,30,101660,100490,99350,65.86,0,4.17,4.48,4.54,4.57,4.58,4.6000000000000005,4.61,4.62,4.66,127.25,127.2,127.10000000000001,126.99000000000001,126.89,126.79,126.66,126.54,126.16,22.94,22.66,22.490000000000002,22.3,22.11,21.93,21.740000000000002,21.56,21.19,N/A,N/A -2012,4,7,5,30,101660,100490,99350,64.92,0,4.08,4.39,4.44,4.47,4.49,4.51,4.5200000000000005,4.54,4.59,119.77,119.75,119.73,119.71000000000001,119.66,119.61,119.53,119.45,119.22,22.95,22.66,22.490000000000002,22.3,22.12,21.93,21.740000000000002,21.57,21.2,N/A,N/A -2012,4,7,6,30,101720,100540,99400,65.05,0,4.39,4.72,4.78,4.82,4.84,4.86,4.87,4.88,4.91,122.25,122.22,122.2,122.17,122.14,122.11,122.07000000000001,122.03,121.92,22.990000000000002,22.7,22.53,22.34,22.150000000000002,21.96,21.77,21.59,21.21,N/A,N/A -2012,4,7,7,30,101760,100580,99440,65.43,0,4.3500000000000005,4.67,4.73,4.76,4.78,4.79,4.8,4.8100000000000005,4.83,119.84,119.88,119.89,119.89,119.89,119.88,119.88,119.87,119.82000000000001,23.03,22.740000000000002,22.57,22.38,22.19,22.01,21.81,21.63,21.25,N/A,N/A -2012,4,7,8,30,101770,100590,99450,66.02,0,4.14,4.44,4.5,4.53,4.54,4.5600000000000005,4.57,4.58,4.61,114.18,114.24000000000001,114.27,114.31,114.33,114.36,114.4,114.44,114.54,22.96,22.66,22.490000000000002,22.3,22.11,21.93,21.73,21.56,21.18,N/A,N/A -2012,4,7,9,30,101800,100620,99480,66.28,0,4.25,4.57,4.63,4.67,4.69,4.71,4.72,4.73,4.76,115.94,116.07000000000001,116.13,116.2,116.27,116.34,116.41,116.49000000000001,116.67,22.97,22.67,22.5,22.31,22.12,21.93,21.740000000000002,21.56,21.18,N/A,N/A -2012,4,7,10,30,101810,100630,99490,67.24,0,4.78,5.14,5.21,5.24,5.2700000000000005,5.28,5.29,5.3,5.32,106.60000000000001,106.75,106.82000000000001,106.89,106.96000000000001,107.02,107.08,107.14,107.29,22.92,22.62,22.45,22.26,22.07,21.88,21.68,21.5,21.12,N/A,N/A -2012,4,7,11,30,101850,100670,99530,68.11,0,5.29,5.71,5.8,5.8500000000000005,5.88,5.9,5.92,5.93,5.95,111.16,111.17,111.21000000000001,111.24000000000001,111.27,111.29,111.32000000000001,111.34,111.39,22.88,22.57,22.400000000000002,22.21,22.02,21.830000000000002,21.63,21.45,21.06,N/A,N/A -2012,4,7,12,30,101870,100690,99550,67.82000000000001,0,5.18,5.57,5.65,5.69,5.71,5.73,5.73,5.74,5.74,99.75,99.94,100.07000000000001,100.2,100.31,100.42,100.54,100.66,100.9,22.830000000000002,22.51,22.34,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,4,7,13,30,101900,100730,99580,69.88,0,5.26,5.66,5.73,5.7700000000000005,5.8,5.8100000000000005,5.82,5.82,5.82,101.33,101.52,101.60000000000001,101.68,101.76,101.84,101.91,101.99000000000001,102.16,22.7,22.37,22.2,22.01,21.82,21.63,21.43,21.25,20.86,N/A,N/A -2012,4,7,14,30,101960,100780,99630,70.96000000000001,0,5.12,5.51,5.59,5.64,5.67,5.69,5.7,5.72,5.74,102.09,102.06,102.06,102.04,102.03,102.03,102.02,102,102,22.73,22.400000000000002,22.23,22.04,21.85,21.66,21.46,21.28,20.89,N/A,N/A -2012,4,7,15,30,101990,100810,99670,73.52,0,5.38,5.8,5.88,5.93,5.95,5.97,5.98,5.99,5.99,96.49000000000001,96.63,96.73,96.81,96.9,96.97,97.06,97.13,97.3,22.740000000000002,22.42,22.240000000000002,22.04,21.85,21.67,21.47,21.29,20.900000000000002,N/A,N/A -2012,4,7,16,30,102010,100830,99690,77.95,0,5.46,5.87,5.96,6.01,6.05,6.07,6.09,6.1000000000000005,6.11,99.63,99.84,99.96000000000001,100.08,100.2,100.31,100.43,100.53,100.78,22.67,22.330000000000002,22.16,21.96,21.77,21.580000000000002,21.38,21.2,20.81,N/A,N/A -2012,4,7,17,30,102030,100850,99710,77.41,0,5.47,5.87,5.95,5.99,6.0200000000000005,6.03,6.04,6.05,6.05,105.04,105.21000000000001,105.33,105.46000000000001,105.57000000000001,105.68,105.79,105.89,106.11,22.81,22.47,22.3,22.1,21.91,21.72,21.52,21.34,20.95,N/A,N/A -2012,4,7,18,30,102030,100860,99710,76.86,0,5,5.36,5.44,5.49,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,105.22,105.38,105.48,105.58,105.66,105.73,105.81,105.88,106.03,22.87,22.54,22.36,22.16,21.97,21.79,21.59,21.400000000000002,21.02,N/A,N/A -2012,4,7,19,30,102060,100880,99730,75.56,0,4.61,4.94,5.01,5.05,5.08,5.11,5.12,5.14,5.15,116.26,116.37,116.43,116.48,116.54,116.58,116.64,116.68,116.8,23.01,22.68,22.5,22.3,22.11,21.92,21.72,21.54,21.150000000000002,N/A,N/A -2012,4,7,20,30,102040,100860,99720,76.4,0,5.04,5.41,5.49,5.54,5.57,5.59,5.61,5.62,5.63,118.91,119.04,119.09,119.14,119.19,119.24000000000001,119.3,119.36,119.47,23.03,22.69,22.52,22.32,22.13,21.94,21.740000000000002,21.56,21.17,N/A,N/A -2012,4,7,21,30,102030,100860,99720,78,0,5.17,5.5600000000000005,5.65,5.69,5.72,5.74,5.75,5.76,5.7700000000000005,125.07000000000001,125.09,125.13000000000001,125.2,125.26,125.32000000000001,125.4,125.47,125.62,22.990000000000002,22.67,22.490000000000002,22.3,22.11,21.92,21.72,21.54,21.150000000000002,N/A,N/A -2012,4,7,22,30,102010,100840,99700,74.92,0,4.9,5.3,5.39,5.44,5.48,5.51,5.53,5.55,5.58,130.58,130.62,130.63,130.64000000000001,130.65,130.65,130.66,130.68,130.69,23.02,22.71,22.54,22.35,22.16,21.97,21.77,21.59,21.2,N/A,N/A -2012,4,7,23,30,102020,100840,99700,78.19,0,5.7700000000000005,6.24,6.33,6.37,6.390000000000001,6.4,6.390000000000001,6.38,6.3500000000000005,134.09,134.2,134.21,134.21,134.21,134.2,134.19,134.17000000000002,134.14000000000001,22.84,22.52,22.35,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,4,8,0,30,102020,100840,99700,77.04,0,5.62,6.05,6.140000000000001,6.18,6.2,6.2,6.2,6.2,6.17,136.48,136.49,136.49,136.48,136.47,136.45,136.44,136.44,136.41,22.75,22.43,22.26,22.06,21.87,21.68,21.48,21.3,20.91,N/A,N/A -2012,4,8,1,30,102040,100860,99710,79.92,0,5.7,6.17,6.2700000000000005,6.33,6.36,6.38,6.390000000000001,6.4,6.4,132.58,132.58,132.59,132.58,132.58,132.57,132.56,132.54,132.52,22.61,22.28,22.1,21.900000000000002,21.71,21.52,21.32,21.14,20.75,N/A,N/A -2012,4,8,2,30,102070,100890,99750,80.07000000000001,0,5.68,6.13,6.23,6.29,6.33,6.36,6.38,6.390000000000001,6.41,132.53,132.54,132.5,132.48,132.45,132.43,132.41,132.39000000000001,132.35,22.56,22.22,22.05,21.85,21.66,21.47,21.27,21.09,20.7,N/A,N/A -2012,4,8,3,30,102090,100910,99760,78.85000000000001,0,5.39,5.8,5.89,5.94,5.97,5.99,6.01,6.0200000000000005,6.04,128.9,128.88,128.87,128.86,128.86,128.86,128.87,128.87,128.88,22.55,22.21,22.04,21.84,21.650000000000002,21.46,21.26,21.080000000000002,20.7,N/A,N/A -2012,4,8,4,30,102120,100940,99790,80.07000000000001,0,5.5200000000000005,5.94,6.04,6.09,6.12,6.140000000000001,6.15,6.16,6.16,125.87,125.75,125.7,125.65,125.61,125.57000000000001,125.52,125.48,125.39,22.490000000000002,22.150000000000002,21.97,21.78,21.580000000000002,21.39,21.2,21.01,20.63,N/A,N/A -2012,4,8,5,30,102130,100950,99810,75.47,0,4.45,4.79,4.87,4.93,4.97,5.01,5.04,5.07,5.13,130.45,130.55,130.62,130.68,130.71,130.74,130.77,130.79,130.79,22.62,22.3,22.13,21.93,21.75,21.56,21.37,21.19,20.81,N/A,N/A -2012,4,8,6,30,102180,101000,99850,74.4,0,4.62,4.97,5.05,5.1000000000000005,5.13,5.15,5.17,5.19,5.21,129.12,129.24,129.22,129.21,129.2,129.19,129.18,129.17000000000002,129.14000000000001,22.64,22.3,22.13,21.93,21.740000000000002,21.55,21.35,21.17,20.78,N/A,N/A -2012,4,8,7,30,102200,101020,99870,72.78,0,4.19,4.43,4.47,4.48,4.48,4.48,4.48,4.47,4.45,128.47,128.38,128.31,128.22,128.13,128.05,127.96000000000001,127.87,127.67,22.650000000000002,22.32,22.14,21.95,21.75,21.57,21.37,21.19,20.8,N/A,N/A -2012,4,8,8,30,102240,101050,99910,71.42,0,3.44,3.64,3.68,3.7,3.71,3.72,3.72,3.72,3.72,127.26,127.09,127.03,126.96000000000001,126.87,126.79,126.7,126.63000000000001,126.43,22.68,22.35,22.18,21.98,21.79,21.6,21.400000000000002,21.22,20.830000000000002,N/A,N/A -2012,4,8,9,30,102240,101060,99910,72.58,0,3.5,3.71,3.7600000000000002,3.7800000000000002,3.8000000000000003,3.81,3.8200000000000003,3.8200000000000003,3.8200000000000003,125.45,125.49000000000001,125.57000000000001,125.64,125.7,125.75,125.8,125.84,125.91,22.63,22.3,22.12,21.93,21.73,21.54,21.34,21.16,20.77,N/A,N/A -2012,4,8,10,30,102270,101090,99940,72.46000000000001,0,2.98,3.16,3.21,3.23,3.2600000000000002,3.2800000000000002,3.29,3.31,3.33,113.94,114.13,114.23,114.31,114.36,114.41,114.45,114.49000000000001,114.54,22.59,22.26,22.09,21.89,21.7,21.51,21.31,21.13,20.740000000000002,N/A,N/A -2012,4,8,11,30,102300,101120,99970,73.63,0,2.67,2.79,2.81,2.82,2.82,2.82,2.81,2.81,2.8000000000000003,99.42,98.89,98.62,98.35000000000001,98.11,97.87,97.64,97.44,97.01,22.54,22.21,22.04,21.84,21.650000000000002,21.46,21.26,21.07,20.68,N/A,N/A -2012,4,8,12,30,102320,101140,99990,75.73,0,2.11,2.22,2.25,2.27,2.2800000000000002,2.29,2.31,2.32,2.34,61.44,61.480000000000004,61.58,61.68,61.79,61.9,62.01,62.120000000000005,62.38,22.490000000000002,22.150000000000002,21.98,21.78,21.59,21.400000000000002,21.2,21.02,20.63,N/A,N/A -2012,4,8,13,30,102350,101160,100010,79.97,0,2.71,2.96,3.0500000000000003,3.12,3.17,3.22,3.27,3.31,3.39,86.04,85.28,84.92,84.54,84.18,83.82000000000001,83.45,83.11,82.35000000000001,22.29,21.95,21.77,21.580000000000002,21.39,21.2,21,20.82,20.44,N/A,N/A -2012,4,8,14,30,102370,101190,100040,80.07000000000001,0,3.13,3.2600000000000002,3.27,3.2800000000000002,3.29,3.29,3.29,3.3000000000000003,3.31,71.32000000000001,74.23,75.97,77.64,79.18,80.59,82.01,83.3,85.88,22.32,21.98,21.81,21.61,21.42,21.240000000000002,21.04,20.86,20.47,N/A,N/A -2012,4,8,15,30,102390,101200,100060,78.03,0,3.43,3.61,3.64,3.65,3.66,3.66,3.66,3.66,3.66,80.78,81.60000000000001,81.97,82.26,82.5,82.71000000000001,82.91,83.09,83.43,22.51,22.16,21.98,21.79,21.59,21.41,21.21,21.02,20.63,N/A,N/A -2012,4,8,16,30,102390,101200,100050,78.62,0,3.99,4.18,4.21,4.2,4.2,4.18,4.17,4.16,4.12,95.67,95.5,95.4,95.29,95.18,95.07000000000001,94.97,94.88,94.67,22.55,22.19,22.01,21.81,21.61,21.43,21.23,21.04,20.66,N/A,N/A -2012,4,8,17,30,102360,101180,100030,79.03,0,3.61,3.8200000000000003,3.87,3.89,3.91,3.92,3.93,3.94,3.95,101.08,101.17,101.19,101.17,101.12,101.06,100.97,100.89,100.69,22.580000000000002,22.22,22.04,21.84,21.64,21.45,21.25,21.07,20.67,N/A,N/A -2012,4,8,18,30,102350,101170,100020,78.33,0,3.69,3.88,3.91,3.93,3.94,3.94,3.94,3.94,3.94,114.57000000000001,113.94,113.55,113.17,112.83,112.51,112.2,111.92,111.33,22.61,22.25,22.07,21.87,21.67,21.48,21.28,21.1,20.71,N/A,N/A -2012,4,8,19,30,102330,101140,100000,78.35000000000001,0,3.9,4.13,4.17,4.2,4.21,4.22,4.23,4.23,4.23,123.87,124.3,124.52,124.74000000000001,124.94,125.14,125.33,125.51,125.9,22.69,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.18,20.79,N/A,N/A -2012,4,8,20,30,102270,101090,99940,76.69,0,4.07,4.32,4.37,4.39,4.41,4.42,4.43,4.44,4.45,137.94,137.95000000000002,137.93,137.92000000000002,137.93,137.94,137.95000000000002,137.97,137.99,22.69,22.330000000000002,22.150000000000002,21.96,21.76,21.580000000000002,21.38,21.2,20.81,N/A,N/A -2012,4,8,21,30,102240,101060,99920,78.64,0,4.29,4.54,4.59,4.61,4.62,4.62,4.62,4.61,4.59,147.36,147.42000000000002,147.46,147.52,147.57,147.62,147.67000000000002,147.72,147.83,22.71,22.36,22.18,21.98,21.79,21.6,21.400000000000002,21.21,20.82,N/A,N/A -2012,4,8,22,30,102220,101030,99890,73.68,0,3.41,3.6,3.64,3.67,3.68,3.69,3.69,3.7,3.7,156.16,156.13,156.09,156.07,156.06,156.05,156.03,156.02,155.99,22.76,22.42,22.25,22.05,21.86,21.67,21.47,21.29,20.900000000000002,N/A,N/A -2012,4,8,23,30,102200,101020,99870,78.87,0,3.47,3.66,3.69,3.7,3.7,3.7,3.69,3.69,3.67,165.20000000000002,165.01,164.9,164.79,164.68,164.59,164.49,164.41,164.21,22.580000000000002,22.240000000000002,22.07,21.87,21.68,21.490000000000002,21.29,21.1,20.71,N/A,N/A -2012,4,9,0,30,102180,100990,99850,77.4,0,3.65,3.85,3.89,3.9,3.91,3.91,3.91,3.91,3.91,175.17000000000002,175.18,175.15,175.14000000000001,175.12,175.11,175.09,175.08,175.03,22.54,22.21,22.03,21.830000000000002,21.64,21.45,21.26,21.07,20.69,N/A,N/A -2012,4,9,1,30,102170,100990,99840,75.10000000000001,0,3.65,3.85,3.88,3.89,3.9,3.9,3.89,3.89,3.88,174.14000000000001,174.13,174.14000000000001,174.15,174.16,174.16,174.17000000000002,174.18,174.18,22.580000000000002,22.25,22.080000000000002,21.88,21.69,21.5,21.3,21.12,20.740000000000002,N/A,N/A -2012,4,9,2,30,102180,101000,99850,79.18,0,3.56,3.74,3.7600000000000002,3.77,3.7600000000000002,3.75,3.74,3.73,3.7,177.17000000000002,177.08,177.11,177.12,177.13,177.13,177.12,177.1,177.05,22.42,22.080000000000002,21.91,21.71,21.52,21.330000000000002,21.14,20.96,20.57,N/A,N/A -2012,4,9,3,30,102180,101000,99850,77.61,0,3.61,3.8000000000000003,3.83,3.83,3.83,3.83,3.8200000000000003,3.81,3.79,174.88,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.91,174.87,22.44,22.1,21.93,21.73,21.54,21.35,21.150000000000002,20.97,20.59,N/A,N/A -2012,4,9,4,30,102140,100960,99810,76.8,0,3.35,3.52,3.5500000000000003,3.56,3.5700000000000003,3.5700000000000003,3.56,3.56,3.5500000000000003,181.75,181.69,181.64000000000001,181.58,181.53,181.48,181.42000000000002,181.36,181.18,22.41,22.080000000000002,21.900000000000002,21.7,21.51,21.32,21.13,20.94,20.56,N/A,N/A -2012,4,9,5,30,102110,100930,99780,78.11,0,3.58,3.7600000000000002,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.77,3.75,3.74,3.71,188.29,188.22,188.19,188.14000000000001,188.1,188.05,187.98,187.91,187.70000000000002,22.36,22.02,21.85,21.650000000000002,21.46,21.27,21.07,20.89,20.51,N/A,N/A -2012,4,9,6,30,102110,100930,99790,77.74,0,3.22,3.38,3.4,3.4,3.4,3.4,3.39,3.38,3.36,191.71,191.72,191.66,191.61,191.56,191.51,191.45000000000002,191.4,191.23000000000002,22.38,22.04,21.86,21.67,21.47,21.29,21.09,20.91,20.53,N/A,N/A -2012,4,9,7,30,102110,100930,99790,79.85000000000001,0,2.82,2.94,2.95,2.96,2.95,2.95,2.94,2.94,2.91,201.81,201.74,201.66,201.58,201.5,201.41,201.3,201.20000000000002,200.9,22.27,21.93,21.76,21.56,21.37,21.18,20.98,20.8,20.42,N/A,N/A -2012,4,9,8,30,102120,100930,99790,79.77,0,2.77,2.89,2.91,2.92,2.92,2.92,2.91,2.91,2.89,211.71,211.58,211.49,211.39000000000001,211.29,211.19,211.06,210.94,210.61,22.27,21.93,21.76,21.56,21.37,21.18,20.98,20.8,20.41,N/A,N/A -2012,4,9,9,30,102090,100910,99760,78.74,0,2.73,2.84,2.86,2.86,2.85,2.85,2.84,2.83,2.8000000000000003,230.71,230.6,230.52,230.41,230.3,230.19,230.05,229.91,229.51,22.29,21.95,21.78,21.580000000000002,21.39,21.2,21.01,20.82,20.44,N/A,N/A -2012,4,9,10,30,102100,100920,99780,77.96000000000001,0,2.43,2.52,2.54,2.5300000000000002,2.5300000000000002,2.52,2.5100000000000002,2.5100000000000002,2.48,240.95000000000002,240.82,240.69,240.55,240.41,240.27,240.11,239.95000000000002,239.54,22.32,21.990000000000002,21.81,21.61,21.42,21.240000000000002,21.04,20.86,20.47,N/A,N/A -2012,4,9,11,30,102150,100960,99820,78.11,0,2.2,2.29,2.31,2.31,2.31,2.31,2.3000000000000003,2.3000000000000003,2.29,282.59000000000003,282.84000000000003,282.89,282.96,283.04,283.12,283.2,283.27,283.47,22.32,21.990000000000002,21.81,21.61,21.42,21.23,21.03,20.85,20.46,N/A,N/A -2012,4,9,12,30,102160,100980,99830,86.04,0,4.3100000000000005,4.44,4.42,4.36,4.3,4.24,4.17,4.1,3.93,332.41,332.47,332.45,332.40000000000003,332.34000000000003,332.28000000000003,332.2,332.12,331.87,21.91,21.55,21.37,21.17,20.98,20.8,20.6,20.42,20.04,N/A,N/A -2012,4,9,13,30,102190,101000,99860,86.29,0,3.58,3.73,3.74,3.73,3.71,3.7,3.67,3.64,3.58,346.64,347.09000000000003,347.33,347.58,347.82,348.05,348.3,348.54,349.08,21.7,21.34,21.150000000000002,20.96,20.76,20.57,20.38,20.19,19.81,N/A,N/A -2012,4,9,14,30,102210,101030,99880,85.7,0,3.86,4.04,4.0600000000000005,4.0600000000000005,4.0600000000000005,4.04,4.03,4.01,3.97,357.47,357.67,357.71,357.77,357.82,357.87,357.92,357.96,358.07,21.77,21.39,21.21,21.01,20.82,20.63,20.43,20.25,19.86,N/A,N/A -2012,4,9,15,30,102210,101030,99880,85.96000000000001,0,2.97,3.1,3.12,3.13,3.13,3.13,3.13,3.12,3.11,10.120000000000001,9.75,9.51,9.28,9.040000000000001,8.8,8.53,8.26,7.53,21.69,21.32,21.14,20.94,20.75,20.56,20.36,20.18,19.8,N/A,N/A -2012,4,9,16,30,102210,101020,99880,82.9,0,1.68,1.74,1.75,1.75,1.75,1.75,1.75,1.75,1.75,17.51,17.63,17.66,17.69,17.69,17.68,17.64,17.6,17.42,21.95,21.6,21.42,21.21,21.02,20.84,20.64,20.46,20.080000000000002,N/A,N/A -2012,4,9,17,30,102180,101000,99860,80.75,0,0.28,0.27,0.25,0.24,0.22,0.21,0.19,0.18,0.21,109.98,108.44,106.46000000000001,103.8,100.14,96.04,87.99,80.10000000000001,44.18,22.21,21.86,21.68,21.48,21.3,21.11,20.92,20.75,20.43,N/A,N/A -2012,4,9,18,30,102160,100980,99830,79.17,0,1.8900000000000001,1.92,1.9000000000000001,1.87,1.83,1.79,1.73,1.67,1.33,187.09,187.58,187.89000000000001,188.27,188.68,189.11,189.81,190.49,197.04,22.53,22.18,22.01,21.82,21.63,21.46,21.28,21.13,20.93,N/A,N/A -2012,4,9,19,30,102130,100950,99800,78.48,0,2.7600000000000002,2.84,2.83,2.8000000000000003,2.77,2.74,2.69,2.65,2.49,195.47,195.85,196.07,196.33,196.58,196.85,197.19,197.53,198.75,22.77,22.41,22.23,22.04,21.86,21.68,21.5,21.330000000000002,21.01,N/A,N/A -2012,4,9,20,30,102090,100910,99760,75.79,0,2.63,2.71,2.7,2.68,2.66,2.63,2.59,2.5500000000000003,2.45,201.13,201.35,201.53,201.73000000000002,201.93,202.14000000000001,202.4,202.65,203.48000000000002,23.02,22.67,22.5,22.31,22.12,21.94,21.75,21.580000000000002,21.23,N/A,N/A -2012,4,9,21,30,102030,100850,99710,74.83,0,3.9,4.07,4.07,4.0600000000000005,4.03,4,3.96,3.92,3.7800000000000002,197.70000000000002,197.74,197.79,197.84,197.88,197.89000000000001,197.91,197.92000000000002,197.9,23.19,22.84,22.67,22.48,22.3,22.11,21.93,21.75,21.41,N/A,N/A -2012,4,9,22,30,101990,100810,99670,77.07000000000001,0,4.3100000000000005,4.54,4.57,4.5600000000000005,4.55,4.5200000000000005,4.49,4.46,4.3500000000000005,192.65,192.61,192.58,192.54,192.48000000000002,192.42000000000002,192.33,192.24,191.9,23.09,22.77,22.6,22.400000000000002,22.22,22.03,21.85,21.67,21.31,N/A,N/A -2012,4,9,23,30,101950,100770,99630,77.11,0,4.25,4.48,4.51,4.5,4.49,4.47,4.44,4.41,4.29,194.18,194.22,194.21,194.19,194.16,194.12,194.03,193.94,193.28,23.04,22.73,22.57,22.38,22.19,22.01,21.830000000000002,21.66,21.36,N/A,N/A -2012,4,10,0,30,101900,100720,99580,77.65,0,4.19,4.42,4.44,4.43,4.4,4.37,4.33,4.29,4.08,194.66,194.57,194.51,194.45000000000002,194.36,194.26,194.08,193.89000000000001,192.37,22.95,22.650000000000002,22.48,22.29,22.11,21.94,21.76,21.6,21.37,N/A,N/A -2012,4,10,1,30,101880,100710,99570,79.33,0,3.92,4.12,4.14,4.13,4.11,4.08,4.05,4.0200000000000005,3.88,194.53,194.5,194.46,194.4,194.32,194.22,194.04,193.85,192.07,22.830000000000002,22.51,22.35,22.16,21.98,21.8,21.63,21.47,21.25,N/A,N/A -2012,4,10,2,30,101880,100700,99560,79.24,0,3.89,4.09,4.11,4.1,4.09,4.07,4.04,4.0200000000000005,3.93,197.96,197.81,197.73000000000002,197.63,197.51,197.37,197.15,196.92000000000002,195.44,22.81,22.5,22.330000000000002,22.14,21.96,21.78,21.59,21.42,21.13,N/A,N/A -2012,4,10,3,30,101860,100680,99540,80.52,0,3.2600000000000002,3.4,3.42,3.41,3.39,3.37,3.34,3.3200000000000003,3.22,203.17000000000002,203.06,203,202.9,202.78,202.65,202.43,202.20000000000002,200.75,22.7,22.39,22.22,22.02,21.84,21.66,21.47,21.3,20.990000000000002,N/A,N/A -2012,4,10,4,30,101860,100690,99540,81.13,0,3.1,3.24,3.2600000000000002,3.2600000000000002,3.25,3.24,3.22,3.2,3.16,207.33,207.37,207.3,207.21,207.13,207.03,206.89000000000001,206.74,206.08,22.63,22.32,22.150000000000002,21.95,21.76,21.580000000000002,21.39,21.21,20.86,N/A,N/A -2012,4,10,5,30,101840,100660,99520,82.46000000000001,0,2.71,2.81,2.82,2.8000000000000003,2.79,2.77,2.75,2.72,2.6,210.92000000000002,210.72,210.59,210.4,210.16,209.9,209.44,208.98000000000002,205.26,22.51,22.19,22.03,21.84,21.650000000000002,21.48,21.3,21.14,20.92,N/A,N/A -2012,4,10,6,30,101890,100710,99570,80.87,0,1.75,1.79,1.79,1.78,1.76,1.74,1.72,1.69,1.61,223.88,223.92000000000002,223.9,223.87,223.81,223.74,223.61,223.46,222.37,22.52,22.2,22.03,21.830000000000002,21.650000000000002,21.47,21.27,21.1,20.75,N/A,N/A -2012,4,10,7,30,101920,100740,99600,79.48,0,1.62,1.67,1.67,1.6600000000000001,1.6400000000000001,1.6300000000000001,1.62,1.6,1.54,241.71,242.14000000000001,242.27,242.42000000000002,242.56,242.70000000000002,242.83,242.95000000000002,242.99,22.55,22.23,22.06,21.87,21.68,21.5,21.31,21.13,20.78,N/A,N/A -2012,4,10,8,30,101910,100730,99590,78.82000000000001,0,1.3800000000000001,1.42,1.42,1.41,1.4000000000000001,1.3900000000000001,1.37,1.36,1.33,259.8,259.9,259.97,260.03000000000003,260.07,260.07,260.09000000000003,260.12,260.07,22.54,22.22,22.05,21.86,21.67,21.490000000000002,21.29,21.12,20.740000000000002,N/A,N/A -2012,4,10,9,30,101920,100750,99600,79.24,0,1.3800000000000001,1.42,1.42,1.41,1.4000000000000001,1.3900000000000001,1.3900000000000001,1.37,1.35,295.22,295.6,295.91,296.23,296.55,296.85,297.17,297.46,298.26,22.490000000000002,22.17,22,21.8,21.61,21.43,21.23,21.05,20.67,N/A,N/A -2012,4,10,10,30,101950,100770,99630,77.73,0,1.27,1.32,1.32,1.32,1.33,1.33,1.32,1.32,1.32,292.85,293.49,293.93,294.37,294.81,295.24,295.7,296.12,297.21,22.53,22.21,22.04,21.84,21.650000000000002,21.47,21.27,21.09,20.71,N/A,N/A -2012,4,10,11,30,101970,100790,99650,81.7,0,1.19,1.18,1.16,1.1300000000000001,1.1,1.08,1.05,1.03,0.98,296.01,294.96,294.15000000000003,293.32,292.54,291.8,291.04,290.34000000000003,288.73,22.36,22.04,21.86,21.67,21.48,21.29,21.09,20.91,20.53,N/A,N/A -2012,4,10,12,30,102010,100830,99680,84.9,0,1.3900000000000001,1.37,1.32,1.27,1.23,1.18,1.1300000000000001,1.09,0.99,300.7,300.28000000000003,299.92,299.5,299.02,298.54,297.88,297.25,295.32,22.1,21.76,21.59,21.39,21.2,21.02,20.82,20.64,20.25,N/A,N/A -2012,4,10,13,30,102040,100860,99710,86.24,0,1.59,1.58,1.54,1.5,1.46,1.42,1.3800000000000001,1.34,1.25,306.02,306.65000000000003,306.93,307.21,307.52,307.83,308.15000000000003,308.43,309.18,21.97,21.63,21.45,21.25,21.06,20.87,20.67,20.490000000000002,20.11,N/A,N/A -2012,4,10,14,30,102060,100880,99740,86.34,0,1.44,1.4000000000000001,1.35,1.29,1.25,1.2,1.1400000000000001,1.1,0.99,303.13,303.82,304.22,304.62,305.04,305.45,305.90000000000003,306.29,307.31,21.900000000000002,21.56,21.38,21.18,20.990000000000002,20.8,20.6,20.42,20.04,N/A,N/A -2012,4,10,15,30,102060,100880,99740,86.60000000000001,0,1.48,1.47,1.43,1.3900000000000001,1.35,1.32,1.27,1.23,1.1400000000000001,302.67,304.28000000000003,305.24,306.25,307.28000000000003,308.3,309.49,310.59000000000003,313.43,21.84,21.490000000000002,21.31,21.11,20.92,20.73,20.53,20.35,19.96,N/A,N/A -2012,4,10,16,30,102050,100870,99720,86.4,0,0.87,0.87,0.86,0.85,0.8300000000000001,0.81,0.78,0.76,0.7000000000000001,307.01,308.52,309.57,310.64,311.7,312.74,314.05,315.3,319.14,21.91,21.55,21.37,21.17,20.97,20.79,20.59,20.41,20.02,N/A,N/A -2012,4,10,17,30,102040,100860,99720,84.8,0,0.67,0.67,0.65,0.63,0.62,0.6,0.58,0.56,0.52,307.08,307.62,308.07,308.57,309.05,309.53000000000003,310.09000000000003,310.6,312.31,22.09,21.72,21.54,21.34,21.150000000000002,20.96,20.76,20.580000000000002,20.2,N/A,N/A -2012,4,10,18,30,102010,100830,99690,82.32000000000001,0,0.86,0.87,0.87,0.86,0.85,0.85,0.85,0.85,0.85,179.17000000000002,177.20000000000002,175.96,174.64000000000001,173.3,171.95000000000002,170.44,169.02,165.36,22.31,21.94,21.76,21.56,21.37,21.18,20.990000000000002,20.81,20.43,N/A,N/A -2012,4,10,19,30,101990,100810,99670,80.61,0,1.6400000000000001,1.71,1.72,1.74,1.75,1.75,1.77,1.78,1.8,160.39000000000001,159.56,159.05,158.56,158.09,157.65,157.16,156.70000000000002,155.64000000000001,22.53,22.16,21.98,21.78,21.59,21.41,21.21,21.03,20.650000000000002,N/A,N/A -2012,4,10,20,30,101950,100770,99630,80.44,0,1.97,2.09,2.12,2.15,2.18,2.2,2.23,2.25,2.31,144.38,143.94,143.61,143.3,143.02,142.78,142.54,142.32,141.9,22.75,22.38,22.2,22,21.81,21.62,21.43,21.25,20.87,N/A,N/A -2012,4,10,21,30,101900,100720,99580,72.64,0,2.69,2.82,2.84,2.86,2.86,2.87,2.87,2.88,2.89,161.14000000000001,161.08,160.96,160.86,160.78,160.72,160.65,160.58,160.47,23.11,22.76,22.580000000000002,22.39,22.19,22.01,21.81,21.63,21.25,N/A,N/A -2012,4,10,22,30,101870,100690,99550,71.9,0,3.7,3.9,3.94,3.95,3.96,3.96,3.96,3.95,3.94,168.63,168.55,168.54,168.53,168.52,168.52,168.52,168.52,168.52,23.17,22.84,22.67,22.47,22.28,22.09,21.900000000000002,21.72,21.330000000000002,N/A,N/A -2012,4,10,23,30,101840,100670,99530,71.91,0,3.16,3.34,3.36,3.37,3.38,3.38,3.38,3.37,3.36,161.42000000000002,161.43,161.43,161.42000000000002,161.42000000000002,161.41,161.41,161.41,161.42000000000002,23.09,22.77,22.61,22.41,22.22,22.03,21.84,21.66,21.27,N/A,N/A -2012,4,11,0,30,101810,100640,99500,72.24,0,3.43,3.63,3.66,3.67,3.68,3.68,3.67,3.67,3.66,163.41,163.31,163.26,163.22,163.17000000000002,163.14000000000001,163.09,163.05,162.95000000000002,22.990000000000002,22.68,22.51,22.32,22.13,21.94,21.75,21.57,21.18,N/A,N/A -2012,4,11,1,30,101830,100660,99520,74.03,0,3.9,4.14,4.18,4.2,4.2,4.2,4.2,4.2,4.18,167.21,167.18,167.12,167.07,167.04,167,166.97,166.94,166.88,22.900000000000002,22.580000000000002,22.41,22.21,22.02,21.84,21.64,21.46,21.07,N/A,N/A -2012,4,11,2,30,101840,100660,99520,74.82000000000001,0,4.18,4.44,4.49,4.5,4.51,4.51,4.51,4.5,4.49,170,169.96,169.94,169.93,169.91,169.9,169.9,169.89000000000001,169.89000000000001,22.82,22.5,22.32,22.13,21.94,21.75,21.56,21.38,21,N/A,N/A -2012,4,11,3,30,101840,100660,99520,75.42,0,4.75,5.07,5.12,5.15,5.16,5.17,5.17,5.17,5.15,167.13,167.12,167.11,167.11,167.1,167.1,167.09,167.07,167.07,22.77,22.44,22.27,22.080000000000002,21.89,21.7,21.5,21.32,20.94,N/A,N/A -2012,4,11,4,30,101820,100650,99510,75.55,0,4.72,5.03,5.09,5.11,5.12,5.13,5.12,5.12,5.1000000000000005,176.14000000000001,176.17000000000002,176.17000000000002,176.18,176.19,176.19,176.20000000000002,176.22,176.26,22.740000000000002,22.41,22.240000000000002,22.04,21.86,21.67,21.47,21.29,20.91,N/A,N/A -2012,4,11,5,30,101840,100660,99520,75.04,0,4.65,4.96,5.0200000000000005,5.04,5.05,5.0600000000000005,5.0600000000000005,5.0600000000000005,5.05,183.37,183.41,183.39000000000001,183.39000000000001,183.39000000000001,183.4,183.41,183.42000000000002,183.46,22.75,22.42,22.25,22.05,21.86,21.68,21.48,21.3,20.92,N/A,N/A -2012,4,11,6,30,101870,100700,99560,76.59,0,4.66,4.95,5.01,5.04,5.0600000000000005,5.0600000000000005,5.07,5.07,5.0600000000000005,187.05,187.05,187.05,187.06,187.06,187.05,187.05,187.05,187.06,22.73,22.39,22.21,22.01,21.82,21.63,21.44,21.25,20.87,N/A,N/A -2012,4,11,7,30,101900,100720,99580,78.19,0,4.74,5.05,5.11,5.14,5.16,5.17,5.17,5.17,5.17,188.93,189,189,189.01,189.01,189.01,189.01,189.02,189.02,22.69,22.34,22.16,21.96,21.77,21.580000000000002,21.38,21.2,20.81,N/A,N/A -2012,4,11,8,30,101900,100720,99580,79.56,0,4.19,4.43,4.49,4.51,4.5200000000000005,4.53,4.53,4.53,4.53,196.86,196.85,196.86,196.88,196.88,196.89000000000001,196.89000000000001,196.9,196.92000000000002,22.63,22.28,22.1,21.900000000000002,21.71,21.52,21.32,21.14,20.75,N/A,N/A -2012,4,11,9,30,101910,100730,99590,80.63,0,4.1,4.34,4.39,4.41,4.42,4.43,4.43,4.43,4.43,204.78,204.85,204.88,204.9,204.92000000000002,204.93,204.95000000000002,204.97,205.01,22.580000000000002,22.23,22.05,21.85,21.66,21.47,21.27,21.09,20.7,N/A,N/A -2012,4,11,10,30,101920,100750,99600,80.51,0,3.17,3.33,3.37,3.38,3.38,3.39,3.39,3.39,3.38,206.16,206.14000000000001,206.13,206.12,206.1,206.08,206.07,206.05,206.01,22.57,22.22,22.04,21.85,21.650000000000002,21.47,21.27,21.080000000000002,20.7,N/A,N/A -2012,4,11,11,30,101950,100770,99630,82.21000000000001,0,2.82,2.96,2.98,3,3,3.0100000000000002,3.0100000000000002,3.0100000000000002,3.0100000000000002,201.76,201.75,201.74,201.72,201.71,201.70000000000002,201.68,201.67000000000002,201.66,22.490000000000002,22.14,21.97,21.77,21.57,21.39,21.19,21,20.62,N/A,N/A -2012,4,11,12,30,101960,100780,99640,82.98,0,2.81,2.94,2.96,2.97,2.97,2.98,2.97,2.97,2.97,202.16,202.14000000000001,202.12,202.09,202.08,202.06,202.04,202.02,201.97,22.44,22.1,21.92,21.72,21.53,21.34,21.14,20.96,20.57,N/A,N/A -2012,4,11,13,30,101970,100790,99650,83.72,0,2.22,2.32,2.34,2.34,2.35,2.35,2.35,2.35,2.35,193.07,193.01,192.98000000000002,192.93,192.88,192.83,192.78,192.73000000000002,192.6,22.400000000000002,22.06,21.88,21.68,21.490000000000002,21.3,21.1,20.92,20.53,N/A,N/A -2012,4,11,14,30,102000,100830,99680,84.52,0,2.69,2.81,2.83,2.84,2.84,2.84,2.84,2.84,2.84,189.83,189.77,189.73,189.69,189.65,189.61,189.56,189.53,189.43,22.41,22.06,21.89,21.68,21.490000000000002,21.3,21.1,20.92,20.53,N/A,N/A -2012,4,11,15,30,102020,100840,99700,85.11,0,2.32,2.41,2.42,2.42,2.43,2.42,2.42,2.42,2.41,173.47,173.21,173.09,172.97,172.85,172.73,172.61,172.5,172.27,22.44,22.080000000000002,21.900000000000002,21.7,21.51,21.32,21.12,20.94,20.55,N/A,N/A -2012,4,11,16,30,102020,100840,99700,83.19,0,2.45,2.49,2.46,2.42,2.38,2.34,2.31,2.27,2.2,147.47,148.57,149.16,149.79,150.42000000000002,151.05,151.76,152.41,154.02,22.54,22.18,22,21.79,21.6,21.41,21.21,21.03,20.64,N/A,N/A -2012,4,11,17,30,102010,100830,99680,83.45,0,2.39,2.48,2.49,2.49,2.49,2.49,2.48,2.48,2.47,174.35,173.83,173.52,173.22,172.92000000000002,172.63,172.34,172.07,171.46,22.61,22.240000000000002,22.06,21.86,21.67,21.48,21.28,21.1,20.71,N/A,N/A -2012,4,11,18,30,102000,100820,99680,84.26,0,2.72,2.84,2.86,2.87,2.88,2.88,2.88,2.88,2.88,167.01,166.68,166.5,166.33,166.16,165.99,165.81,165.65,165.26,22.7,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.18,20.79,N/A,N/A -2012,4,11,19,30,101980,100800,99660,82.4,0,3.34,3.49,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5,3.49,3.48,158.43,158.51,158.55,158.58,158.61,158.65,158.69,158.71,158.8,22.85,22.48,22.3,22.09,21.900000000000002,21.71,21.52,21.330000000000002,20.95,N/A,N/A -2012,4,11,20,30,101940,100760,99620,82.83,0,3.47,3.63,3.66,3.67,3.67,3.67,3.66,3.66,3.64,163.88,164.02,164.05,164.08,164.11,164.14000000000001,164.18,164.21,164.32,22.91,22.54,22.36,22.16,21.97,21.78,21.580000000000002,21.400000000000002,21.02,N/A,N/A -2012,4,11,21,30,101910,100740,99600,84.02,0,4.14,4.38,4.42,4.44,4.45,4.46,4.46,4.46,4.45,167.78,167.79,167.79,167.79,167.8,167.8,167.8,167.81,167.83,22.94,22.57,22.39,22.19,22,21.81,21.61,21.43,21.04,N/A,N/A -2012,4,11,22,30,101860,100690,99550,81.60000000000001,0,4.5600000000000005,4.82,4.87,4.89,4.89,4.89,4.89,4.88,4.86,171.4,171.46,171.47,171.49,171.5,171.51,171.52,171.53,171.58,22.95,22.61,22.43,22.23,22.04,21.85,21.66,21.47,21.09,N/A,N/A -2012,4,11,23,30,101820,100640,99500,81.47,0,5.72,6.1000000000000005,6.18,6.2,6.22,6.22,6.22,6.21,6.19,172.9,172.8,172.71,172.62,172.54,172.46,172.38,172.29,172.1,22.89,22.55,22.37,22.17,21.98,21.79,21.6,21.42,21.04,N/A,N/A -2012,4,12,0,30,101800,100620,99480,82.42,0,5.8,6.21,6.29,6.32,6.33,6.33,6.32,6.3100000000000005,6.2700000000000005,171.18,171.08,171.07,171.07,171.07,171.07,171.08,171.1,171.13,22.830000000000002,22.48,22.3,22.1,21.91,21.72,21.53,21.35,20.96,N/A,N/A -2012,4,12,1,30,101770,100600,99460,77.69,0,5.91,6.32,6.41,6.43,6.44,6.43,6.41,6.390000000000001,6.3,165.29,165.41,165.47,165.53,165.59,165.66,165.74,165.82,166.08,22.98,22.650000000000002,22.48,22.28,22.09,21.900000000000002,21.7,21.52,21.13,N/A,N/A -2012,4,12,2,30,101790,100610,99480,78.22,0,5.23,5.64,5.74,5.8,5.8500000000000005,5.88,5.92,5.95,6.04,174.69,174.15,173.85,173.57,173.29,173.02,172.70000000000002,172.4,171.55,22.98,22.650000000000002,22.47,22.28,22.09,21.900000000000002,21.71,21.53,21.17,N/A,N/A -2012,4,12,3,30,101800,100620,99480,75.73,0,5.22,5.62,5.72,5.79,5.83,5.87,5.91,5.95,6.0600000000000005,167.13,167.04,166.98,166.91,166.84,166.78,166.71,166.65,166.49,23.11,22.79,22.62,22.43,22.240000000000002,22.06,21.87,21.7,21.35,N/A,N/A -2012,4,12,4,30,101790,100620,99480,78.89,0,5.45,5.83,5.91,5.94,5.95,5.94,5.93,5.92,5.87,168.05,168.09,168.11,168.12,168.13,168.15,168.16,168.16,168.17000000000002,22.98,22.64,22.46,22.26,22.07,21.88,21.68,21.5,21.11,N/A,N/A -2012,4,12,5,30,101780,100610,99470,79.48,0,5.64,6.05,6.140000000000001,6.18,6.21,6.23,6.24,6.25,6.26,167.18,167.27,167.29,167.3,167.32,167.32,167.33,167.33,167.35,22.88,22.54,22.36,22.16,21.97,21.79,21.59,21.41,21.03,N/A,N/A -2012,4,12,6,30,101800,100620,99480,80.19,0,5.24,5.62,5.69,5.72,5.74,5.75,5.75,5.75,5.74,167.39000000000001,167.43,167.47,167.51,167.55,167.59,167.64000000000001,167.68,167.79,22.88,22.53,22.35,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,4,12,7,30,101800,100630,99490,83.24,0,5.14,5.47,5.54,5.58,5.6000000000000005,5.61,5.62,5.62,5.65,175.74,175.8,175.81,175.84,175.86,175.89000000000001,175.92000000000002,175.96,176.06,22.72,22.36,22.19,21.990000000000002,21.79,21.61,21.42,21.23,20.86,N/A,N/A -2012,4,12,8,30,101800,100630,99490,83.93,0,5.21,5.5600000000000005,5.64,5.68,5.7,5.71,5.72,5.72,5.72,170.21,170.23,170.27,170.3,170.33,170.35,170.37,170.39000000000001,170.43,22.72,22.37,22.19,21.990000000000002,21.8,21.61,21.41,21.23,20.85,N/A,N/A -2012,4,12,9,30,101810,100630,99490,84.06,0,4.23,4.49,4.54,4.57,4.59,4.6000000000000005,4.61,4.61,4.62,155.81,155.92000000000002,156,156.08,156.15,156.21,156.28,156.35,156.48,22.7,22.35,22.17,21.97,21.78,21.59,21.39,21.21,20.82,N/A,N/A -2012,4,12,10,30,101790,100620,99480,84.35000000000001,0,4.43,4.71,4.7700000000000005,4.79,4.82,4.83,4.83,4.84,4.84,127.42,127.73,127.85000000000001,127.97,128.09,128.2,128.31,128.42000000000002,128.65,22.69,22.330000000000002,22.150000000000002,21.95,21.76,21.57,21.37,21.18,20.79,N/A,N/A -2012,4,12,11,30,101800,100620,99480,85.83,0,5.68,6.12,6.22,6.2700000000000005,6.3100000000000005,6.33,6.34,6.36,6.37,134.51,134.65,134.65,134.65,134.66,134.66,134.66,134.66,134.67000000000002,22.7,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.17,20.78,N/A,N/A -2012,4,12,12,30,101830,100660,99520,84.57000000000001,0,5.67,6.13,6.25,6.32,6.37,6.41,6.43,6.45,6.48,141.74,142.07,142.28,142.46,142.62,142.77,142.91,143.03,143.29,22.63,22.27,22.080000000000002,21.88,21.68,21.5,21.29,21.11,20.72,N/A,N/A -2012,4,12,13,30,101850,100670,99530,82.74,0,5.32,5.72,5.82,5.87,5.92,5.96,5.99,6.01,6.07,138.81,138.73,138.66,138.57,138.5,138.43,138.36,138.29,138.17000000000002,22.6,22.240000000000002,22.06,21.86,21.67,21.490000000000002,21.29,21.11,20.740000000000002,N/A,N/A -2012,4,12,14,30,101850,100680,99530,83.33,0,6.0200000000000005,6.48,6.6000000000000005,6.66,6.71,6.74,6.7700000000000005,6.79,6.83,135.38,135.48,135.5,135.5,135.5,135.49,135.48,135.47,135.43,22.75,22.38,22.2,22,21.81,21.62,21.42,21.240000000000002,20.85,N/A,N/A -2012,4,12,15,30,101880,100710,99570,83.26,0,5.89,6.33,6.43,6.49,6.5200000000000005,6.55,6.5600000000000005,6.58,6.59,138.20000000000002,138.16,138.16,138.17000000000002,138.18,138.21,138.25,138.28,138.36,22.82,22.45,22.27,22.07,21.88,21.68,21.490000000000002,21.3,20.91,N/A,N/A -2012,4,12,16,30,101900,100730,99590,81.34,0,6.2700000000000005,6.71,6.8100000000000005,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,6.890000000000001,132.53,132.76,132.88,132.99,133.07,133.15,133.23,133.31,133.48,22.94,22.57,22.39,22.19,22,21.81,21.62,21.43,21.05,N/A,N/A -2012,4,12,17,30,101870,100700,99560,80.27,0,5.98,6.42,6.53,6.58,6.62,6.640000000000001,6.66,6.68,6.7,141.23,141.26,141.27,141.27,141.27,141.28,141.28,141.29,141.32,23.080000000000002,22.72,22.54,22.34,22.150000000000002,21.96,21.76,21.580000000000002,21.19,N/A,N/A -2012,4,12,18,30,101870,100690,99550,82.01,0,6.36,6.82,6.93,6.99,7.03,7.05,7.07,7.08,7.1000000000000005,143.28,143.58,143.76,143.92000000000002,144.06,144.20000000000002,144.34,144.46,144.73,23.080000000000002,22.72,22.54,22.330000000000002,22.14,21.95,21.75,21.57,21.18,N/A,N/A -2012,4,12,19,30,101860,100680,99540,80.52,0,6.76,7.3,7.43,7.5,7.54,7.57,7.59,7.61,7.63,148.5,148.70000000000002,148.83,148.94,149.03,149.12,149.21,149.29,149.46,23.2,22.85,22.67,22.47,22.28,22.09,21.900000000000002,21.71,21.32,N/A,N/A -2012,4,12,20,30,101820,100640,99510,81.36,0,6.84,7.390000000000001,7.51,7.57,7.6000000000000005,7.61,7.62,7.62,7.61,149.08,149.23,149.29,149.34,149.37,149.4,149.42000000000002,149.45000000000002,149.49,23.16,22.8,22.63,22.43,22.23,22.04,21.84,21.66,21.27,N/A,N/A -2012,4,12,21,30,101780,100610,99470,79.46000000000001,0,6.47,7.05,7.2,7.29,7.3500000000000005,7.4,7.43,7.46,7.5,150.74,150.58,150.54,150.5,150.47,150.44,150.41,150.39000000000001,150.35,23.22,22.88,22.7,22.5,22.31,22.12,21.92,21.740000000000002,21.35,N/A,N/A -2012,4,12,22,30,101760,100580,99450,80.03,0,7.29,7.94,8.120000000000001,8.23,8.32,8.39,8.45,8.5,8.58,144.22,144.96,145.34,145.72,146.06,146.39000000000001,146.70000000000002,147,147.61,23.31,22.990000000000002,22.82,22.63,22.45,22.27,22.080000000000002,21.900000000000002,21.54,N/A,N/A -2012,4,12,23,30,101710,100530,99400,78.87,0,7.32,7.98,8.15,8.24,8.31,8.36,8.39,8.42,8.47,148.48,148.57,148.6,148.62,148.64000000000001,148.67000000000002,148.68,148.69,148.72,23.23,22.89,22.71,22.52,22.330000000000002,22.14,21.94,21.76,21.37,N/A,N/A -2012,4,13,0,30,101680,100510,99370,79.71000000000001,0,8.53,9.3,9.48,9.56,9.61,9.64,9.65,9.65,9.63,147.19,147.31,147.36,147.42000000000002,147.47,147.51,147.56,147.6,147.67000000000002,23.19,22.84,22.66,22.46,22.26,22.080000000000002,21.87,21.69,21.3,N/A,N/A -2012,4,13,1,30,101640,100470,99330,77.61,0,7.84,8.55,8.73,8.84,8.91,8.97,9.02,9.06,9.13,150.58,150.64000000000001,150.66,150.66,150.65,150.63,150.61,150.59,150.53,23.22,22.88,22.7,22.51,22.31,22.13,21.93,21.75,21.37,N/A,N/A -2012,4,13,2,30,101660,100490,99350,79.21000000000001,0,8.47,9.32,9.53,9.66,9.74,9.8,9.84,9.88,9.91,146.99,147.16,147.26,147.35,147.44,147.51,147.58,147.64000000000001,147.78,23.27,22.93,22.75,22.55,22.35,22.16,21.96,21.78,21.39,N/A,N/A -2012,4,13,3,30,101650,100480,99340,77.2,0,8.52,9.26,9.450000000000001,9.55,9.620000000000001,9.67,9.71,9.74,9.8,152.94,152.36,152.12,151.9,151.71,151.55,151.41,151.28,151.06,23.330000000000002,23.01,22.84,22.650000000000002,22.46,22.28,22.09,21.91,21.54,N/A,N/A -2012,4,13,4,30,101640,100470,99330,76.13,0,9.33,10.22,10.43,10.53,10.6,10.64,10.66,10.68,10.68,156.69,156.53,156.42000000000002,156.31,156.20000000000002,156.1,155.99,155.9,155.69,23.34,22.990000000000002,22.82,22.62,22.43,22.240000000000002,22.04,21.86,21.47,N/A,N/A -2012,4,13,5,30,101630,100460,99320,79.98,0,9.27,10.16,10.39,10.52,10.61,10.67,10.72,10.75,10.790000000000001,151.13,151.29,151.4,151.5,151.59,151.68,151.77,151.85,152.01,23.22,22.87,22.7,22.490000000000002,22.3,22.11,21.91,21.72,21.330000000000002,N/A,N/A -2012,4,13,6,30,101620,100450,99310,72.22,0,9.11,9.98,10.18,10.3,10.38,10.43,10.47,10.5,10.540000000000001,162,161.70000000000002,161.59,161.49,161.41,161.33,161.26,161.19,161.05,23.48,23.150000000000002,22.97,22.77,22.580000000000002,22.39,22.19,22.01,21.62,N/A,N/A -2012,4,13,7,30,101640,100460,99330,73.36,0,9.32,10.28,10.52,10.66,10.76,10.83,10.89,10.93,10.99,166.75,166.1,165.82,165.56,165.33,165.12,164.91,164.72,164.34,23.44,23.1,22.92,22.72,22.53,22.34,22.150000000000002,21.96,21.57,N/A,N/A -2012,4,13,8,30,101600,100430,99300,77.52,0,9.28,10.15,10.370000000000001,10.49,10.57,10.620000000000001,10.66,10.69,10.72,158.58,158.86,159.05,159.26,159.44,159.62,159.8,159.97,160.32,23.31,22.95,22.78,22.580000000000002,22.39,22.2,22.01,21.82,21.44,N/A,N/A -2012,4,13,9,30,101600,100430,99290,79.21000000000001,0,9.55,10.5,10.75,10.88,10.97,11.03,11.07,11.1,11.120000000000001,158.09,157.99,158.02,158.06,158.1,158.15,158.20000000000002,158.25,158.36,23.18,22.830000000000002,22.650000000000002,22.44,22.25,22.06,21.86,21.68,21.29,N/A,N/A -2012,4,13,10,30,101580,100410,99280,80.49,0,8.950000000000001,9.870000000000001,10.120000000000001,10.27,10.39,10.47,10.53,10.59,10.67,163.95000000000002,163.70000000000002,163.57,163.45000000000002,163.34,163.25,163.14000000000001,163.05,162.86,23.21,22.86,22.68,22.48,22.28,22.09,21.89,21.71,21.32,N/A,N/A -2012,4,13,11,30,101570,100400,99270,78.15,0,8.94,9.82,10.05,10.18,10.28,10.34,10.39,10.44,10.5,162.65,162.49,162.45000000000002,162.43,162.42000000000002,162.41,162.41,162.41,162.43,23.28,22.93,22.75,22.55,22.35,22.16,21.97,21.78,21.39,N/A,N/A -2012,4,13,12,30,101590,100420,99290,79.49,0,8.48,9.370000000000001,9.620000000000001,9.78,9.91,10,10.08,10.14,10.24,163.18,163.34,163.4,163.44,163.46,163.48,163.49,163.49,163.49,23.47,23.14,22.96,22.76,22.57,22.38,22.18,22,21.61,N/A,N/A -2012,4,13,13,30,101620,100450,99320,79.38,0,8.370000000000001,9.27,9.52,9.69,9.81,9.91,9.99,10.06,10.17,165.67000000000002,165.49,165.35,165.22,165.09,164.96,164.83,164.71,164.47,23.59,23.26,23.09,22.89,22.7,22.51,22.31,22.13,21.75,N/A,N/A -2012,4,13,14,30,101670,100500,99370,79.31,0,8.790000000000001,9.67,9.870000000000001,9.98,10.05,10.1,10.14,10.16,10.17,158.92000000000002,159.19,159.25,159.29,159.33,159.36,159.38,159.41,159.47,23.71,23.38,23.21,23.01,22.82,22.63,22.44,22.25,21.86,N/A,N/A -2012,4,13,15,30,101710,100530,99400,82.22,0,7.9,8.64,8.82,8.93,9,9.05,9.09,9.120000000000001,9.17,159.42000000000002,159.70000000000002,159.82,159.94,160.04,160.14000000000001,160.23,160.32,160.5,23.71,23.39,23.22,23.02,22.830000000000002,22.650000000000002,22.45,22.27,21.89,N/A,N/A -2012,4,13,16,30,101730,100560,99430,82.52,0,7.42,8.13,8.32,8.44,8.51,8.58,8.620000000000001,8.66,8.72,163.71,164.38,164.68,164.96,165.20000000000002,165.42000000000002,165.62,165.81,166.17000000000002,23.88,23.57,23.400000000000002,23.2,23.02,22.830000000000002,22.63,22.45,22.07,N/A,N/A -2012,4,13,17,30,101720,100550,99420,85.31,0,8.36,9.200000000000001,9.4,9.52,9.6,9.66,9.69,9.71,9.73,159.94,160.29,160.5,160.73,160.94,161.14000000000001,161.34,161.54,161.93,23.85,23.53,23.35,23.16,22.96,22.77,22.580000000000002,22.400000000000002,22.01,N/A,N/A -2012,4,13,18,30,101730,100560,99430,82.25,0,8.51,9.38,9.6,9.73,9.81,9.870000000000001,9.91,9.94,9.97,157.43,157.70000000000002,157.81,157.91,157.98,158.05,158.11,158.16,158.25,23.97,23.66,23.490000000000002,23.29,23.1,22.91,22.72,22.54,22.150000000000002,N/A,N/A -2012,4,13,19,30,101710,100540,99410,84.17,0,7.86,8.620000000000001,8.81,8.92,8.99,9.040000000000001,9.08,9.1,9.14,153.62,153.58,153.6,153.62,153.64000000000001,153.66,153.69,153.71,153.77,23.97,23.66,23.490000000000002,23.3,23.11,22.92,22.72,22.54,22.150000000000002,N/A,N/A -2012,4,13,20,30,101670,100500,99370,86.34,0,8.370000000000001,9.22,9.43,9.56,9.64,9.69,9.73,9.75,9.78,143.36,143.52,143.66,143.82,143.96,144.1,144.23,144.36,144.64000000000001,23.96,23.650000000000002,23.490000000000002,23.29,23.1,22.91,22.72,22.53,22.150000000000002,N/A,N/A -2012,4,13,21,30,101630,100470,99330,86.88,0,9.74,10.77,11.040000000000001,11.21,11.32,11.39,11.44,11.48,11.53,143.65,143.81,143.89000000000001,143.99,144.06,144.14000000000001,144.22,144.28,144.43,23.96,23.650000000000002,23.490000000000002,23.29,23.1,22.91,22.72,22.54,22.16,N/A,N/A -2012,4,13,22,30,101590,100420,99290,85.46000000000001,0,9.75,10.82,11.11,11.28,11.41,11.5,11.57,11.63,11.700000000000001,147.06,147.17000000000002,147.26,147.34,147.41,147.48,147.54,147.6,147.72,23.95,23.650000000000002,23.48,23.29,23.1,22.91,22.72,22.53,22.150000000000002,N/A,N/A -2012,4,13,23,30,101570,100400,99270,87.33,0,10.25,11.38,11.66,11.84,11.97,12.06,12.120000000000001,12.17,12.24,147.57,147.72,147.81,147.9,147.98,148.05,148.12,148.18,148.31,23.85,23.53,23.36,23.17,22.98,22.79,22.59,22.41,22.03,N/A,N/A -2012,4,14,0,30,101530,100360,99230,87.7,0,10.39,11.55,11.86,12.05,12.19,12.290000000000001,12.370000000000001,12.43,12.51,143.11,143.28,143.35,143.41,143.46,143.51,143.56,143.6,143.69,23.84,23.53,23.35,23.16,22.97,22.78,22.59,22.400000000000002,22.01,N/A,N/A -2012,4,14,1,30,101510,100340,99210,85.64,0,11.18,12.41,12.700000000000001,12.88,13.01,13.09,13.15,13.19,13.24,144.36,144.52,144.59,144.66,144.73,144.8,144.88,144.95000000000002,145.11,23.82,23.5,23.330000000000002,23.13,22.94,22.76,22.56,22.38,21.990000000000002,N/A,N/A -2012,4,14,2,30,101530,100370,99230,86.14,0,11.57,12.870000000000001,13.21,13.41,13.55,13.65,13.73,13.790000000000001,13.86,149.61,149.64000000000001,149.67000000000002,149.69,149.72,149.74,149.75,149.77,149.81,23.8,23.48,23.31,23.11,22.91,22.73,22.53,22.35,21.96,N/A,N/A -2012,4,14,3,30,101540,100380,99250,85.58,0,11.3,12.57,12.9,13.1,13.25,13.35,13.43,13.49,13.57,150.6,150.61,150.64000000000001,150.67000000000002,150.70000000000002,150.74,150.77,150.81,150.89000000000001,23.75,23.42,23.25,23.05,22.86,22.67,22.47,22.29,21.900000000000002,N/A,N/A -2012,4,14,4,30,101540,100370,99240,85.33,0,11.35,12.55,12.870000000000001,13.05,13.18,13.280000000000001,13.35,13.41,13.49,150.5,150.97,151.17000000000002,151.35,151.51,151.66,151.8,151.93,152.20000000000002,23.72,23.39,23.22,23.02,22.82,22.63,22.43,22.25,21.86,N/A,N/A -2012,4,14,5,30,101510,100340,99210,83.65,0,12.040000000000001,13.4,13.75,13.96,14.1,14.21,14.280000000000001,14.33,14.4,155.98,155.87,155.8,155.71,155.64000000000001,155.55,155.47,155.4,155.23,23.69,23.35,23.18,22.98,22.79,22.6,22.400000000000002,22.22,21.830000000000002,N/A,N/A -2012,4,14,6,30,101520,100350,99220,84.08,0,11.76,13.19,13.59,13.85,14.05,14.21,14.33,14.44,14.6,155.85,155.8,155.76,155.71,155.65,155.58,155.51,155.44,155.27,23.650000000000002,23.38,23.23,23.04,22.86,22.69,22.5,22.32,21.95,N/A,N/A -2012,4,14,7,30,101540,100370,99240,85.32000000000001,0,11.38,12.73,13.1,13.33,13.51,13.64,13.74,13.82,13.94,151.32,151.47,151.56,151.65,151.75,151.83,151.92000000000002,152,152.17000000000002,23.580000000000002,23.3,23.13,22.95,22.76,22.580000000000002,22.38,22.2,21.82,N/A,N/A -2012,4,14,8,30,101520,100350,99220,85.67,0,11.96,13.370000000000001,13.75,14.01,14.200000000000001,14.35,14.48,14.59,14.8,156.97,157.05,157.09,157.11,157.13,157.14000000000001,157.14000000000001,157.14000000000001,157.13,23.5,23.21,23.05,22.87,22.68,22.5,22.31,22.13,21.76,N/A,N/A -2012,4,14,9,30,101510,100350,99210,86.04,0,11.39,12.75,13.120000000000001,13.36,13.540000000000001,13.68,13.780000000000001,13.870000000000001,14,154.24,154.13,154.14000000000001,154.18,154.21,154.26,154.31,154.37,154.51,23.44,23.14,22.98,22.79,22.6,22.42,22.22,22.04,21.66,N/A,N/A -2012,4,14,10,30,101520,100350,99220,86.06,0,11.41,12.700000000000001,13.06,13.290000000000001,13.46,13.6,13.71,13.81,14,155.78,155.76,155.78,155.8,155.82,155.83,155.85,155.87,155.9,23.41,23.11,22.95,22.76,22.580000000000002,22.39,22.2,22.03,21.650000000000002,N/A,N/A -2012,4,14,11,30,101520,100350,99220,87.16,0,12.11,13.49,13.85,14.06,14.21,14.32,14.39,14.450000000000001,14.51,154.99,155.06,155.1,155.15,155.19,155.22,155.25,155.29,155.35,23.26,22.94,22.77,22.57,22.37,22.19,21.990000000000002,21.8,21.41,N/A,N/A -2012,4,14,12,30,101530,100360,99230,87.32000000000001,0,12.17,13.6,13.98,14.22,14.4,14.540000000000001,14.63,14.72,14.83,152.8,152.88,152.95000000000002,153.01,153.07,153.13,153.19,153.25,153.38,23.29,22.97,22.8,22.6,22.41,22.22,22.03,21.84,21.46,N/A,N/A -2012,4,14,13,30,101550,100380,99250,86.85000000000001,0,11.64,12.96,13.31,13.530000000000001,13.700000000000001,13.83,13.950000000000001,14.05,14.25,152.31,152.51,152.6,152.70000000000002,152.8,152.9,153.01,153.12,153.36,23.31,23,22.84,22.650000000000002,22.46,22.28,22.09,21.92,21.55,N/A,N/A -2012,4,14,14,30,101580,100410,99280,86.02,0,11.47,12.69,13.030000000000001,13.24,13.41,13.540000000000001,13.67,13.790000000000001,14.08,154.12,154.45000000000002,154.6,154.76,154.92000000000002,155.08,155.25,155.42000000000002,155.82,23.41,23.12,22.96,22.77,22.6,22.42,22.240000000000002,22.07,21.73,N/A,N/A -2012,4,14,15,30,101600,100430,99300,86.44,0,12.11,13.51,13.89,14.120000000000001,14.290000000000001,14.42,14.52,14.61,14.74,152.28,152.53,152.64000000000001,152.75,152.86,152.96,153.07,153.17000000000002,153.4,23.41,23.11,22.95,22.75,22.57,22.39,22.2,22.02,21.650000000000002,N/A,N/A -2012,4,14,16,30,101590,100420,99280,84.75,0,10.98,12.21,12.540000000000001,12.75,12.9,13.02,13.11,13.200000000000001,13.34,154.15,154.31,154.37,154.45000000000002,154.52,154.6,154.69,154.77,154.97,23.490000000000002,23.2,23.04,22.85,22.66,22.48,22.29,22.11,21.73,N/A,N/A -2012,4,14,17,30,101580,100410,99280,82.73,0,11.19,12.41,12.73,12.93,13.07,13.17,13.25,13.32,13.43,153.93,154.03,154.08,154.13,154.17000000000002,154.21,154.26,154.31,154.43,23.55,23.27,23.11,22.92,22.73,22.55,22.37,22.19,21.82,N/A,N/A -2012,4,14,18,30,101570,100400,99270,81.85000000000001,0,11.290000000000001,12.65,13.01,13.25,13.42,13.540000000000001,13.63,13.71,13.81,150.85,150.61,150.55,150.51,150.47,150.44,150.41,150.39000000000001,150.36,23.63,23.34,23.18,22.990000000000002,22.8,22.61,22.42,22.23,21.85,N/A,N/A -2012,4,14,19,30,101550,100390,99250,81.73,0,11.89,13.21,13.56,13.77,13.91,14.01,14.08,14.13,14.19,148.36,148.34,148.39000000000001,148.42000000000002,148.46,148.49,148.52,148.56,148.63,23.63,23.36,23.2,23.01,22.82,22.64,22.45,22.27,21.900000000000002,N/A,N/A -2012,4,14,20,30,101500,100330,99200,81.73,0,11.34,12.6,12.94,13.16,13.32,13.450000000000001,13.56,13.65,13.84,148.78,149.18,149.35,149.53,149.70000000000002,149.86,150.04,150.22,150.6,23.6,23.330000000000002,23.17,22.98,22.81,22.63,22.44,22.27,21.91,N/A,N/A -2012,4,14,21,30,101450,100280,99150,82.18,0,11.21,12.56,12.92,13.17,13.35,13.5,13.63,13.74,13.94,150.3,150.38,150.45000000000002,150.53,150.6,150.67000000000002,150.74,150.81,150.98,23.580000000000002,23.31,23.150000000000002,22.96,22.78,22.6,22.41,22.23,21.86,N/A,N/A -2012,4,14,22,30,101400,100230,99100,83.08,0,11.3,12.65,13.01,13.26,13.46,13.61,13.75,13.88,14.13,149.64000000000001,149.85,149.97,150.09,150.22,150.34,150.47,150.59,150.89000000000001,23.52,23.240000000000002,23.080000000000002,22.900000000000002,22.72,22.54,22.35,22.18,21.81,N/A,N/A -2012,4,14,23,30,101350,100190,99060,83.53,0,11.94,13.44,13.84,14.13,14.35,14.530000000000001,14.67,14.8,15.01,148.63,148.66,148.71,148.76,148.82,148.87,148.92000000000002,148.97,149.08,23.47,23.19,23.02,22.830000000000002,22.650000000000002,22.47,22.27,22.09,21.72,N/A,N/A -2012,4,15,0,30,101290,100130,99000,83.85000000000001,0,11.78,13.290000000000001,13.700000000000001,14,14.23,14.43,14.6,14.75,15.02,148.75,148.95000000000002,149.07,149.18,149.29,149.4,149.51,149.62,149.85,23.46,23.17,23.01,22.82,22.64,22.46,22.27,22.09,21.72,N/A,N/A -2012,4,15,1,30,101250,100080,98950,84.37,0,13.21,14.870000000000001,15.32,15.63,15.85,16.02,16.15,16.25,16.41,148.41,148.29,148.28,148.28,148.29,148.29,148.31,148.32,148.36,23.43,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.01,21.63,N/A,N/A -2012,4,15,2,30,101230,100070,98940,84.38,0,12.790000000000001,14.32,14.74,15.030000000000001,15.24,15.4,15.540000000000001,15.66,15.870000000000001,148.67000000000002,148.82,148.92000000000002,149.03,149.13,149.23,149.33,149.43,149.65,23.45,23.16,22.990000000000002,22.8,22.62,22.44,22.240000000000002,22.07,21.69,N/A,N/A -2012,4,15,3,30,101200,100040,98910,86.22,0,13.030000000000001,14.56,14.96,15.23,15.42,15.58,15.700000000000001,15.81,16,148.44,148.59,148.68,148.78,148.88,148.98,149.09,149.20000000000002,149.46,23.34,23.03,22.87,22.67,22.490000000000002,22.3,22.11,21.93,21.56,N/A,N/A -2012,4,15,4,30,101170,100010,98880,87.37,0,13.48,15.11,15.55,15.84,16.05,16.21,16.34,16.45,16.62,150.97,151.04,151.08,151.13,151.18,151.23,151.28,151.34,151.46,23.26,22.95,22.78,22.580000000000002,22.39,22.21,22.01,21.830000000000002,21.46,N/A,N/A -2012,4,15,5,30,101150,99980,98850,87.91,0,13.290000000000001,14.89,15.32,15.6,15.81,15.98,16.11,16.22,16.42,154.05,154.16,154.23,154.3,154.36,154.43,154.49,154.56,154.73,23.25,22.93,22.76,22.57,22.38,22.19,22,21.82,21.44,N/A,N/A -2012,4,15,6,30,101140,99980,98850,89.04,0,13.07,14.59,15,15.27,15.46,15.610000000000001,15.73,15.84,16.02,155.13,155.24,155.3,155.38,155.45000000000002,155.52,155.6,155.68,155.87,23.23,22.91,22.73,22.54,22.35,22.16,21.97,21.79,21.42,N/A,N/A -2012,4,15,7,30,101120,99960,98830,90.39,0,13.47,15.09,15.52,15.8,16.01,16.17,16.3,16.4,16.57,157.41,157.57,157.65,157.73,157.81,157.88,157.97,158.05,158.24,23.22,22.89,22.71,22.51,22.32,22.13,21.94,21.75,21.37,N/A,N/A -2012,4,15,8,30,101100,99930,98800,90.98,0,13.42,15.040000000000001,15.47,15.76,15.97,16.14,16.27,16.38,16.55,161.84,161.76,161.76,161.75,161.76,161.76,161.78,161.8,161.84,23.240000000000002,22.91,22.73,22.54,22.34,22.16,21.96,21.78,21.39,N/A,N/A -2012,4,15,9,30,101110,99940,98810,89.89,0,13.73,15.39,15.85,16.16,16.39,16.56,16.7,16.82,17.02,162.26,162.43,162.49,162.55,162.6,162.64000000000001,162.69,162.73,162.83,23.27,22.95,22.78,22.580000000000002,22.39,22.2,22.01,21.830000000000002,21.44,N/A,N/A -2012,4,15,10,30,101060,99900,98770,91.04,0,13.93,15.56,16,16.29,16.5,16.68,16.82,16.95,17.2,159.98,160.17000000000002,160.26,160.36,160.46,160.56,160.68,160.79,161.08,23.28,22.96,22.79,22.59,22.400000000000002,22.22,22.03,21.85,21.48,N/A,N/A -2012,4,15,11,30,101090,99920,98800,91.33,0,12.700000000000001,14.280000000000001,14.72,15.040000000000001,15.290000000000001,15.5,15.700000000000001,15.870000000000001,16.23,159.70000000000002,159.87,159.98,160.1,160.22,160.34,160.48,160.61,160.92000000000002,23.35,23.05,22.88,22.69,22.5,22.32,22.13,21.96,21.59,N/A,N/A -2012,4,15,12,30,101100,99940,98810,90.96000000000001,0,12.16,13.68,14.09,14.4,14.65,14.870000000000001,15.07,15.25,15.66,161.41,161.51,161.6,161.70000000000002,161.8,161.89000000000001,162.01,162.12,162.38,23.42,23.12,22.95,22.76,22.580000000000002,22.400000000000002,22.21,22.04,21.67,N/A,N/A -2012,4,15,13,30,101120,99960,98840,88.99,0,12.25,13.82,14.34,14.780000000000001,15.19,15.58,16.04,16.490000000000002,17.650000000000002,161.47,161.75,161.93,162.12,162.32,162.52,162.75,162.97,163.53,23.59,23.32,23.17,23,22.84,22.67,22.51,22.36,22.06,N/A,N/A -2012,4,15,14,30,101170,100000,98880,85.85000000000001,0,11.790000000000001,13.3,13.790000000000001,14.21,14.59,14.97,15.38,15.77,16.64,157.88,158.22,158.48,158.78,159.1,159.45000000000002,159.86,160.26,161.16,23.81,23.57,23.43,23.26,23.1,22.94,22.77,22.62,22.3,N/A,N/A -2012,4,15,15,30,101160,100000,98870,87.2,0,12.08,13.620000000000001,14.09,14.47,14.81,15.11,15.42,15.72,16.44,157.96,158.20000000000002,158.35,158.54,158.74,158.96,159.22,159.47,160.11,23.78,23.52,23.37,23.19,23.02,22.84,22.67,22.5,22.16,N/A,N/A -2012,4,15,16,30,101180,100020,98900,86.16,0,10.15,11.97,12.780000000000001,13.58,14.08,14.38,14.77,15.17,15.88,160.08,160.57,161.06,161.83,162.28,162.49,162.62,162.71,163.01,23.95,23.740000000000002,23.6,23.43,23.25,23.080000000000002,22.91,22.77,22.44,N/A,N/A -2012,4,15,17,30,101230,100070,98940,85.46000000000001,0,11.28,12.790000000000001,13.280000000000001,13.67,13.99,14.27,14.530000000000001,14.76,15.200000000000001,163.53,163.67000000000002,163.78,163.89000000000001,164,164.11,164.23,164.34,164.6,24.14,23.93,23.79,23.62,23.45,23.29,23.11,22.95,22.6,N/A,N/A -2012,4,15,18,30,101230,100070,98950,87.96000000000001,0,10.76,12.16,12.620000000000001,12.98,13.280000000000001,13.55,13.790000000000001,14,14.42,161.53,161.66,161.81,161.97,162.12,162.27,162.43,162.58,162.91,24.07,23.85,23.71,23.53,23.37,23.2,23.02,22.85,22.5,N/A,N/A -2012,4,15,19,30,101240,100080,98950,90.34,0,11.16,12.6,13.06,13.43,13.72,13.99,14.23,14.450000000000001,14.870000000000001,165.27,165.52,165.62,165.77,165.91,166.06,166.23,166.39000000000001,166.77,24.02,23.79,23.650000000000002,23.47,23.3,23.13,22.95,22.79,22.44,N/A,N/A -2012,4,15,20,30,101200,100040,98920,91.57000000000001,0,10.71,12.16,12.64,13.040000000000001,13.36,13.65,13.91,14.15,14.6,165.42000000000002,165.55,165.67000000000002,165.8,165.93,166.06,166.20000000000002,166.34,166.64000000000001,24.04,23.82,23.68,23.5,23.34,23.17,22.990000000000002,22.82,22.48,N/A,N/A -2012,4,15,21,30,101200,100040,98910,91.95,0,9.86,11.16,11.59,11.94,12.23,12.49,12.74,12.97,13.41,163.6,163.94,164.12,164.32,164.54,164.77,165.03,165.28,165.9,23.990000000000002,23.76,23.62,23.45,23.29,23.12,22.95,22.79,22.47,N/A,N/A -2012,4,15,22,30,101180,100020,98890,91.83,0,10.450000000000001,11.8,12.23,12.57,12.86,13.11,13.34,13.56,13.97,163.93,164.33,164.51,164.72,164.94,165.16,165.42000000000002,165.67000000000002,166.28,23.93,23.69,23.54,23.37,23.2,23.03,22.86,22.69,22.35,N/A,N/A -2012,4,15,23,30,101190,100030,98910,90.91,0,9.71,10.97,11.4,11.74,12.030000000000001,12.280000000000001,12.52,12.73,13.14,163.52,163.65,163.78,163.93,164.08,164.24,164.41,164.57,164.95000000000002,23.92,23.68,23.54,23.36,23.2,23.02,22.85,22.68,22.330000000000002,N/A,N/A -2012,4,16,0,30,101180,100020,98890,91.73,0,9.09,10.44,10.96,11.39,11.75,12.06,12.34,12.59,13.030000000000001,162.53,162.8,162.99,163.17000000000002,163.36,163.57,163.8,164.03,164.54,23.82,23.580000000000002,23.44,23.27,23.1,22.94,22.76,22.59,22.25,N/A,N/A -2012,4,16,1,30,101190,100030,98910,91.87,0,8.97,10.66,11.370000000000001,11.91,12.32,12.66,12.97,13.25,13.76,158.97,160.26,160.9,161.08,161.22,161.33,161.5,161.66,162.08,23.81,23.55,23.41,23.26,23.11,22.95,22.77,22.61,22.26,N/A,N/A -2012,4,16,2,30,101210,100040,98920,92.29,0,9.27,11.18,11.84,12.07,12.4,12.8,13.16,13.49,14.07,161.69,162.52,162.94,163.16,163.4,163.67000000000002,163.88,164.07,164.55,23.740000000000002,23.5,23.35,23.16,23,22.85,22.68,22.53,22.19,N/A,N/A -2012,4,16,3,30,101210,100050,98930,92.65,0,9.71,11.040000000000001,11.58,12.21,12.72,13.16,13.33,13.4,14.11,162.68,163.09,163.44,163.91,164.3,164.62,164.76,164.83,165.61,23.66,23.400000000000002,23.25,23.09,22.92,22.75,22.57,22.39,22.080000000000002,N/A,N/A -2012,4,16,4,30,101260,100090,98970,92.38,0,9.14,10.24,10.6,10.93,11.24,11.55,11.94,12.35,13.24,162.79,163.03,163.20000000000002,163.43,163.68,163.95000000000002,164.31,164.67000000000002,165.4,23.62,23.35,23.19,23.01,22.84,22.66,22.490000000000002,22.330000000000002,21.990000000000002,N/A,N/A -2012,4,16,5,30,101270,100110,98980,91.8,0,8.92,9.94,10.26,10.52,10.77,11.02,11.33,11.64,12.71,165.83,166.01,166.15,166.32,166.5,166.70000000000002,166.96,167.22,168.01,23.59,23.31,23.150000000000002,22.97,22.79,22.62,22.44,22.28,21.96,N/A,N/A -2012,4,16,6,30,101320,100150,99020,90.28,0,9.01,9.99,10.27,10.49,10.68,10.86,11.07,11.28,12,169.88,169.94,170,170.09,170.19,170.3,170.44,170.58,171.08,23.68,23.39,23.23,23.04,22.87,22.69,22.51,22.35,22.03,N/A,N/A -2012,4,16,7,30,101370,100210,99080,89.4,0,7.98,8.83,9.07,9.25,9.4,9.540000000000001,9.700000000000001,9.86,10.38,173.70000000000002,173.78,173.8,173.84,173.89000000000001,173.94,174.01,174.09,174.32,23.73,23.45,23.28,23.09,22.91,22.740000000000002,22.55,22.38,22.04,N/A,N/A -2012,4,16,8,30,101410,100240,99110,90.19,0,6.8,7.44,7.61,7.72,7.8100000000000005,7.9,7.99,8.09,8.51,181.38,181.36,181.35,181.33,181.31,181.29,181.27,181.26,181.22,23.69,23.39,23.23,23.04,22.86,22.67,22.490000000000002,22.31,21.97,N/A,N/A -2012,4,16,9,30,101470,100310,99180,90.7,0,4.3100000000000005,4.67,4.7700000000000005,4.83,4.89,4.95,5.04,5.15,6.03,198.54,198.36,198.17000000000002,198,197.83,197.66,197.39000000000001,197.1,195.12,23.7,23.41,23.25,23.06,22.87,22.69,22.5,22.330000000000002,22.01,N/A,N/A -2012,4,16,10,30,101510,100350,99220,91.68,0,3.52,3.7600000000000002,3.81,3.83,3.84,3.85,3.85,3.85,5.72,198.31,198.33,198.35,198.36,198.34,198.31,198.31,198.31,194.76,23.67,23.38,23.21,23.02,22.830000000000002,22.64,22.45,22.27,22.05,N/A,N/A -2012,4,16,11,30,101580,100410,99280,92.14,0.7000000000000001,2.64,2.8000000000000003,2.84,2.87,3.22,3.9,4.33,4.64,5.1000000000000005,215.9,215.29,215.06,214.73000000000002,213,209.71,208.36,207.86,206.51,23.7,23.41,23.240000000000002,23.05,22.89,22.76,22.61,22.47,22.17,N/A,N/A -2012,4,16,12,30,101610,100440,99310,92.83,0.7000000000000001,2.24,2.45,2.62,3.06,3.37,3.5500000000000003,3.75,3.94,4.33,162.70000000000002,165.22,167.71,172.45000000000002,175.41,176.65,177.79,178.86,180.54,23.6,23.34,23.21,23.09,22.96,22.830000000000002,22.69,22.57,22.3,N/A,N/A -2012,4,16,13,30,101650,100480,99350,92.87,0,0.09,0.18,0.31,0.8200000000000001,1.32,1.54,1.78,2.02,2.52,138.62,163.83,179.74,188.9,196.3,197.08,197.78,198.45000000000002,199.37,23.6,23.31,23.18,23.06,22.93,22.79,22.66,22.53,22.28,N/A,N/A -2012,4,16,14,30,101710,100540,99410,93.01,0,1.93,2.0100000000000002,2,1.98,1.97,1.97,2.0100000000000002,2.04,2.18,91.69,93.91,95.55,97.91,102.3,108.16,115.37,122.52,133.86,23.66,23.36,23.2,23.01,22.84,22.67,22.51,22.35,22.07,N/A,N/A -2012,4,16,15,30,101710,100540,99410,94.17,0,0.64,0.58,0.48,0.34,0.34,0.43,0.61,0.87,1.41,62.22,63,70.75,87.04,112.5,152.32,167.96,176.64000000000001,179.85,23.52,23.240000000000002,23.13,23.06,22.990000000000002,22.92,22.84,22.76,22.580000000000002,N/A,N/A -2012,4,16,16,30,101690,100520,99390,94.29,0,1.17,1.19,1.18,1.17,1.16,1.16,1.17,1.19,1.33,77.13,81.73,84.85000000000001,88.59,92.66,97.05,103.04,109.22,126.10000000000001,23.6,23.28,23.12,22.93,22.75,22.580000000000002,22.400000000000002,22.240000000000002,21.94,N/A,N/A -2012,4,16,17,30,101660,100490,99360,91.8,1.1,0.93,0.92,0.9,0.88,0.85,0.84,0.81,0.8,0.75,41.63,45.21,47.34,49.660000000000004,52,54.34,57.04,59.58,66.3,23.79,23.47,23.3,23.1,22.91,22.73,22.54,22.36,21.98,N/A,N/A -2012,4,16,18,30,101690,100530,99400,92.07000000000001,0,1.33,1.3900000000000001,1.42,1.44,1.46,1.48,1.5,1.52,1.56,105.43,107.43,108.58,109.63,110.53,111.37,112.18,112.95,114.66,24.07,23.740000000000002,23.56,23.37,23.18,23,22.81,22.63,22.26,N/A,N/A -2012,4,16,19,30,101620,100460,99330,88.21000000000001,0,2.5100000000000002,2.66,2.72,2.7600000000000002,2.81,2.86,2.92,2.98,3.15,118.17,118.36,118.72,119.10000000000001,119.49000000000001,119.89,120.36,120.83,122.22,24.25,23.91,23.73,23.54,23.35,23.16,22.97,22.79,22.41,N/A,N/A -2012,4,16,20,30,101650,100490,99360,86.93,0,2.35,2.44,2.46,2.47,2.47,2.47,2.47,2.47,2.47,115.27,115.59,115.83,116.10000000000001,116.35000000000001,116.58,116.84,117.09,117.63,24.5,24.17,23.990000000000002,23.8,23.61,23.42,23.23,23.05,22.68,N/A,N/A -2012,4,16,21,30,101690,100520,99390,89.05,0,3.75,3.98,4.0200000000000005,4.03,4.0200000000000005,4.01,3.99,3.97,3.91,179.12,178.95000000000002,178.73,178.54,178.38,178.23,178.07,177.91,177.51,24.43,24.11,23.94,23.740000000000002,23.56,23.37,23.17,22.990000000000002,22.62,N/A,N/A -2012,4,16,22,30,101690,100520,99400,88.73,0,4.11,4.43,4.49,4.51,4.53,4.53,4.53,4.5200000000000005,4.5,244.24,244.75,244.89000000000001,245.05,245.20000000000002,245.34,245.5,245.65,246.01000000000002,24.46,24.16,24,23.8,23.61,23.43,23.240000000000002,23.06,22.68,N/A,N/A -2012,4,16,23,30,101630,100450,99320,85.44,0,7.21,7.5600000000000005,7.73,8.13,8.46,8.74,8.620000000000001,8.4,7.79,326.34000000000003,326.44,326.03000000000003,325.05,323.2,320.7,317.29,314.01,309.23,21.85,21.57,21.59,21.86,22.42,23.18,23.67,24.04,23.87,N/A,N/A -2012,4,17,0,30,101630,100450,99310,91.63,0,11.86,12.870000000000001,13.06,13.11,13.11,13.09,13.030000000000001,12.97,12.67,68.73,68.88,68.85000000000001,68.81,68.75,68.68,68.55,68.43,67.77,21.71,21.27,21.09,20.900000000000002,20.73,20.57,20.42,20.28,20.1,N/A,N/A -2012,4,17,1,30,101630,100460,99320,92.27,0,8.46,9.11,9.23,9.27,9.28,9.27,9.23,9.19,9.09,83.22,83.14,83.22,83.28,83.32000000000001,83.34,83.37,83.39,83.52,21.98,21.57,21.37,21.17,20.98,20.8,20.6,20.42,20.05,N/A,N/A -2012,4,17,2,30,101790,100610,99470,90.26,0,5.41,5.75,5.82,5.84,5.8500000000000005,5.8500000000000005,5.84,5.83,5.8,47.93,48.35,48.64,48.94,49.22,49.49,49.78,50.06,50.68,22.080000000000002,21.7,21.51,21.31,21.11,20.92,20.73,20.55,20.17,N/A,N/A -2012,4,17,3,30,101800,100620,99480,86.26,0,5.92,6.34,6.45,6.51,6.55,6.58,6.61,6.63,6.65,50.870000000000005,50.51,50.4,50.300000000000004,50.230000000000004,50.17,50.14,50.11,50.18,22.37,22,21.81,21.61,21.41,21.21,21.02,20.830000000000002,20.43,N/A,N/A -2012,4,17,4,30,101760,100590,99440,90.71000000000001,0,7.54,8.13,8.27,8.34,8.39,8.42,8.44,8.45,8.46,51.24,51.75,52.03,52.300000000000004,52.53,52.75,52.96,53.15,53.550000000000004,22,21.59,21.39,21.19,20.990000000000002,20.8,20.6,20.42,20.04,N/A,N/A -2012,4,17,5,30,101760,100590,99450,87.11,0,8.120000000000001,8.76,8.91,8.97,9,9.02,9.02,9.02,8.99,61.160000000000004,60.94,60.85,60.77,60.69,60.620000000000005,60.56,60.5,60.4,22.16,21.75,21.56,21.36,21.16,20.97,20.78,20.59,20.21,N/A,N/A -2012,4,17,6,30,101840,100660,99520,86.71000000000001,0,7.13,7.66,7.78,7.83,7.86,7.88,7.88,7.890000000000001,7.87,75.13,75.06,74.91,74.78,74.64,74.52,74.39,74.27,74.01,22.240000000000002,21.85,21.67,21.47,21.27,21.080000000000002,20.89,20.71,20.32,N/A,N/A -2012,4,17,7,30,101880,100690,99550,90.74,71.8,6.29,6.76,6.87,6.92,6.96,6.98,6.99,7,7,78.43,77.98,77.59,77.23,76.9,76.60000000000001,76.29,76,75.43,21.63,21.240000000000002,21.06,20.87,20.69,20.53,20.35,20.18,19.84,N/A,N/A -2012,4,17,8,30,101870,100690,99550,91.66,8.4,6.5200000000000005,7.04,7.15,7.21,7.24,7.2700000000000005,7.28,7.28,7.29,52.69,52.99,53.19,53.370000000000005,53.550000000000004,53.71,53.89,54.050000000000004,54.410000000000004,21.82,21.42,21.23,21.04,20.85,20.67,20.47,20.3,19.93,N/A,N/A -2012,4,17,9,30,101870,100690,99540,91.42,0,7.32,7.7700000000000005,7.82,7.8100000000000005,7.7700000000000005,7.72,7.65,7.58,7.390000000000001,24.12,24.34,24.53,24.740000000000002,24.96,25.19,25.490000000000002,25.79,26.7,21.3,20.87,20.67,20.47,20.28,20.1,19.91,19.740000000000002,19.38,N/A,N/A -2012,4,17,10,30,101890,100710,99560,91.85000000000001,47.2,7.46,7.94,8.05,8.09,8.11,8.11,8.1,8.09,8.08,24.62,25.16,25.490000000000002,25.86,26.25,26.650000000000002,27.16,27.66,29.26,21.13,20.69,20.5,20.3,20.12,19.94,19.75,19.580000000000002,19.22,N/A,N/A -2012,4,17,11,30,101850,100670,99520,94.06,11.4,6.88,7.36,7.47,7.53,7.58,7.61,7.640000000000001,7.66,7.73,82.26,81.55,81.07000000000001,80.54,80.01,79.49,78.94,78.42,77.27,21.17,20.740000000000002,20.55,20.35,20.16,19.98,19.79,19.61,19.22,N/A,N/A -2012,4,17,12,30,101940,100750,99600,89.69,0,4.39,4.59,4.63,4.64,4.65,4.64,4.64,4.63,4.61,91.41,91.5,91.63,91.74,91.83,91.91,92,92.07000000000001,92.21000000000001,20.990000000000002,20.580000000000002,20.39,20.18,19.990000000000002,19.8,19.61,19.43,19.05,N/A,N/A -2012,4,17,13,30,101920,100730,99580,93.03,30.400000000000002,8.64,9.370000000000001,9.48,9.53,9.55,9.540000000000001,9.52,9.49,9.4,17.67,18.06,18.25,18.44,18.66,18.86,19.11,19.35,19.96,20.54,20.06,19.85,19.650000000000002,19.45,19.27,19.07,18.89,18.53,N/A,N/A -2012,4,17,14,30,102010,100830,99670,91.16,0,9.5,10.21,10.36,10.41,10.43,10.42,10.39,10.36,10.27,16.56,16.84,16.96,17.07,17.18,17.29,17.41,17.53,17.85,20.580000000000002,20.080000000000002,19.88,19.67,19.47,19.29,19.09,18.92,18.56,N/A,N/A -2012,4,17,15,30,102070,100890,99740,88.59,0,8.35,8.96,9.11,9.17,9.200000000000001,9.22,9.23,9.23,9.21,25.02,25.04,25.01,24.96,24.92,24.87,24.82,24.78,24.68,21.01,20.55,20.35,20.14,19.95,19.76,19.56,19.38,19,N/A,N/A -2012,4,17,16,30,102080,100900,99750,83.55,0,7.07,7.62,7.76,7.84,7.9,7.930000000000001,7.96,7.99,8.01,36.71,36.38,36.13,35.89,35.67,35.45,35.24,35.04,34.61,21.79,21.38,21.19,20.98,20.78,20.59,20.39,20.21,19.82,N/A,N/A -2012,4,17,17,30,102060,100880,99730,79.61,0,5.49,5.89,6,6.0600000000000005,6.11,6.15,6.18,6.21,6.25,39.75,39.58,39.34,39.1,38.89,38.68,38.46,38.26,37.82,22.34,21.97,21.79,21.59,21.39,21.2,21,20.82,20.43,N/A,N/A -2012,4,17,18,30,102050,100870,99720,78.28,0,5.39,5.7700000000000005,5.86,5.91,5.94,5.97,5.98,5.99,6.01,76.49,75.96000000000001,75.52,75.12,74.75,74.41,74.06,73.73,73.02,22.75,22.39,22.22,22.01,21.82,21.63,21.43,21.25,20.87,N/A,N/A -2012,4,17,19,30,102060,100890,99740,79.86,0,4.75,5.05,5.14,5.19,5.22,5.24,5.26,5.2700000000000005,5.28,69.67,69.49,69.41,69.29,69.17,69.03,68.88,68.72,68.35000000000001,22.69,22.330000000000002,22.150000000000002,21.95,21.76,21.57,21.37,21.18,20.8,N/A,N/A -2012,4,17,20,30,101990,100810,99670,79.69,0,5.29,5.67,5.73,5.74,5.75,5.75,5.74,5.73,5.72,58.59,58.94,59.300000000000004,59.660000000000004,60,60.33,60.65,60.95,61.58,22.82,22.48,22.3,22.11,21.92,21.73,21.54,21.36,21,N/A,N/A -2012,4,17,21,30,101960,100780,99640,78.93,0,3.8000000000000003,4.09,4.18,4.25,4.32,4.38,4.46,4.5200000000000005,4.71,46.67,48.18,48.910000000000004,49.63,50.34,51.02,51.81,52.550000000000004,54.370000000000005,22.53,22.18,22,21.81,21.62,21.44,21.25,21.080000000000002,20.72,N/A,N/A -2012,4,17,22,30,101940,100770,99630,77.68,0,2.19,2.41,2.5100000000000002,2.6,2.68,2.75,2.83,2.91,3.08,73.85000000000001,73.93,73.92,73.87,73.8,73.73,73.61,73.49,73.17,22.97,22.650000000000002,22.48,22.29,22.1,21.92,21.73,21.55,21.18,N/A,N/A -2012,4,17,23,30,101920,100740,99610,74.23,0,3.23,3.54,3.64,3.73,3.79,3.85,3.91,3.96,4.05,80.96000000000001,81.10000000000001,81.10000000000001,81.05,81,80.93,80.84,80.75,80.51,23.39,23.080000000000002,22.91,22.72,22.53,22.34,22.150000000000002,21.97,21.580000000000002,N/A,N/A -2012,4,18,0,30,101900,100730,99590,70.55,0,4.34,4.94,5.15,5.34,5.5200000000000005,5.68,5.91,6.13,6.9,57.32,54.84,53.81,52.76,51.79,50.870000000000005,49.44,47.94,43.78,24.14,23.93,23.79,23.63,23.46,23.3,23.13,22.98,22.67,N/A,N/A -2012,4,18,1,30,101920,100750,99610,57.84,0,8.94,9.8,10,10.1,10.17,10.200000000000001,10.21,10.22,10.21,39.99,40.18,40.32,40.49,40.660000000000004,40.83,41.02,41.2,41.6,24.28,24.080000000000002,23.94,23.76,23.580000000000002,23.400000000000002,23.22,23.04,22.66,N/A,N/A -2012,4,18,2,30,101970,100790,99650,71.2,0,9.950000000000001,10.9,11.120000000000001,11.23,11.290000000000001,11.33,11.34,11.35,11.33,57.910000000000004,57.82,57.730000000000004,57.64,57.56,57.480000000000004,57.38,57.300000000000004,57.13,22.96,22.62,22.44,22.240000000000002,22.05,21.86,21.66,21.47,21.080000000000002,N/A,N/A -2012,4,18,3,30,102010,100830,99680,75.64,0,10.17,11.09,11.31,11.4,11.47,11.5,11.51,11.52,11.5,59.59,59.410000000000004,59.31,59.19,59.08,58.97,58.84,58.72,58.44,22.05,21.64,21.45,21.240000000000002,21.04,20.85,20.650000000000002,20.47,20.080000000000002,N/A,N/A -2012,4,18,4,30,102000,100820,99670,74.38,0,9.59,10.47,10.67,10.78,10.86,10.91,10.94,10.96,10.99,55.38,55.300000000000004,55.27,55.24,55.21,55.19,55.15,55.13,55.050000000000004,21.650000000000002,21.21,21.02,20.81,20.61,20.42,20.22,20.04,19.650000000000002,N/A,N/A -2012,4,18,5,30,102010,100830,99680,74.41,0,9.72,10.540000000000001,10.73,10.83,10.89,10.93,10.94,10.96,10.96,56.56,56.49,56.46,56.43,56.4,56.370000000000005,56.33,56.300000000000004,56.230000000000004,21.11,20.64,20.44,20.23,20.03,19.84,19.63,19.45,19.06,N/A,N/A -2012,4,18,6,30,102040,100850,99700,75.49,0,9.02,9.74,9.91,9.99,10.040000000000001,10.07,10.09,10.1,10.1,58.56,58.61,58.65,58.68,58.71,58.730000000000004,58.75,58.77,58.81,20.68,20.18,19.97,19.76,19.55,19.36,19.150000000000002,18.97,18.57,N/A,N/A -2012,4,18,7,30,102070,100880,99730,75.95,0,8.620000000000001,9.27,9.41,9.48,9.52,9.55,9.56,9.57,9.56,57.81,57.88,57.94,58,58.06,58.11,58.160000000000004,58.21,58.300000000000004,20.25,19.740000000000002,19.52,19.31,19.11,18.91,18.71,18.52,18.13,N/A,N/A -2012,4,18,8,30,102060,100870,99710,73,0,8.22,8.81,8.94,9,9.03,9.05,9.06,9.06,9.05,52.33,52.49,52.58,52.660000000000004,52.75,52.82,52.9,52.980000000000004,53.14,20.03,19.52,19.31,19.09,18.89,18.7,18.490000000000002,18.31,17.92,N/A,N/A -2012,4,18,9,30,102060,100860,99700,72.39,0,8.26,8.85,8.97,9.03,9.06,9.08,9.09,9.09,9.07,50.59,50.75,50.85,50.93,51.02,51.1,51.19,51.27,51.45,19.69,19.17,18.95,18.740000000000002,18.53,18.34,18.14,17.95,17.56,N/A,N/A -2012,4,18,10,30,102070,100870,99710,73.4,0,7.5600000000000005,8.05,8.15,8.19,8.22,8.22,8.22,8.22,8.19,49.14,49.32,49.44,49.54,49.65,49.74,49.85,49.94,50.14,19.5,18.97,18.76,18.54,18.34,18.150000000000002,17.94,17.75,17.37,N/A,N/A -2012,4,18,11,30,102080,100880,99720,74,0,7.48,7.96,8.05,8.09,8.11,8.11,8.11,8.1,8.07,47.26,47.38,47.46,47.52,47.58,47.64,47.7,47.75,47.870000000000005,19.26,18.72,18.51,18.29,18.09,17.89,17.69,17.5,17.11,N/A,N/A -2012,4,18,12,30,102090,100890,99730,76.66,0,7.26,7.72,7.8,7.83,7.8500000000000005,7.8500000000000005,7.84,7.83,7.79,44.800000000000004,44.980000000000004,45.11,45.22,45.32,45.410000000000004,45.51,45.61,45.800000000000004,18.97,18.43,18.21,18,17.79,17.6,17.400000000000002,17.21,16.82,N/A,N/A -2012,4,18,13,30,102100,100900,99740,79.10000000000001,0,7.03,7.46,7.53,7.5600000000000005,7.57,7.57,7.57,7.5600000000000005,7.5200000000000005,45.42,45.61,45.72,45.81,45.9,45.980000000000004,46.06,46.14,46.300000000000004,18.75,18.21,17.990000000000002,17.77,17.56,17.37,17.17,16.98,16.59,N/A,N/A -2012,4,18,14,30,102150,100950,99780,83.05,0,6.15,6.48,6.53,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.55,6.54,6.5200000000000005,39.24,39.660000000000004,39.93,40.17,40.4,40.61,40.82,41.02,41.44,18.47,17.93,17.71,17.5,17.29,17.1,16.9,16.71,16.32,N/A,N/A -2012,4,18,15,30,102140,100940,99770,81.53,0,5.7,5.98,6.01,6.0200000000000005,6.01,5.99,5.97,5.95,5.9,34.53,34.93,35.160000000000004,35.39,35.61,35.81,36.03,36.22,36.65,18.52,18,17.78,17.57,17.36,17.17,16.97,16.78,16.39,N/A,N/A -2012,4,18,16,30,102130,100930,99760,73.96000000000001,0,5.19,5.44,5.48,5.49,5.5,5.49,5.49,5.48,5.45,26.42,26.54,26.64,26.740000000000002,26.830000000000002,26.92,27.01,27.1,27.3,18.75,18.25,18.04,17.830000000000002,17.63,17.44,17.240000000000002,17.05,16.67,N/A,N/A -2012,4,18,17,30,102100,100900,99740,69.92,0,4.07,4.2700000000000005,4.3100000000000005,4.33,4.3500000000000005,4.36,4.37,4.38,4.39,37.79,37.52,37.31,37.09,36.87,36.67,36.45,36.24,35.78,19.37,18.91,18.7,18.5,18.3,18.11,17.91,17.72,17.34,N/A,N/A -2012,4,18,18,30,102050,100860,99700,68.16,0,2.48,2.58,2.6,2.62,2.63,2.64,2.65,2.66,2.68,40.99,40.01,39.38,38.76,38.13,37.5,36.81,36.15,34.59,19.91,19.48,19.28,19.080000000000002,18.88,18.7,18.5,18.32,17.93,N/A,N/A -2012,4,18,19,30,102000,100810,99650,66.6,0,1.62,1.68,1.7,1.7,1.71,1.72,1.73,1.74,1.79,70.15,68.72,67.66,66.56,65.35,64.14,62.54,60.94,56.09,20.44,20.03,19.84,19.650000000000002,19.46,19.28,19.09,18.91,18.56,N/A,N/A -2012,4,18,20,30,101920,100730,99580,65.08,0,0.38,0.42,0.44,0.45,0.48,0.5,0.52,0.55,0.62,24.17,17.48,13.530000000000001,9.950000000000001,6.76,3.85,1.09,358.54,353.73,20.900000000000002,20.51,20.330000000000002,20.13,19.93,19.75,19.55,19.37,18.98,N/A,N/A -2012,4,18,21,30,101860,100670,99520,64.19,0,0.37,0.34,0.31,0.28,0.26,0.23,0.2,0.18,0.16,144.89000000000001,140.04,136.89000000000001,133.17000000000002,128.06,122.64,112.71000000000001,103.27,64.37,21.2,20.82,20.64,20.44,20.25,20.07,19.87,19.69,19.32,N/A,N/A -2012,4,18,22,30,101800,100610,99470,62.870000000000005,0,1.6600000000000001,1.6500000000000001,1.61,1.56,1.5,1.45,1.36,1.29,0.99,128.56,127.71000000000001,127.13000000000001,126.5,125.79,125.07000000000001,123.95,122.86,115.37,21.53,21.16,20.98,20.79,20.6,20.42,20.23,20.06,19.72,N/A,N/A -2012,4,18,23,30,101750,100570,99420,62.36,0,1.78,1.77,1.72,1.67,1.6,1.54,1.44,1.36,0.97,136.17000000000002,135.84,135.6,135.28,134.86,134.4,133.55,132.7,119.44,21.73,21.38,21.2,21.01,20.82,20.64,20.46,20.29,19.96,N/A,N/A -2012,4,19,0,30,101710,100530,99380,63.050000000000004,0,1.94,1.95,1.92,1.87,1.81,1.75,1.6,1.45,0.81,122.57000000000001,122.09,121.83,121.5,121.07000000000001,120.59,119.04,116.57000000000001,62.910000000000004,21.89,21.54,21.37,21.18,21,20.82,20.66,20.52,20.61,N/A,N/A -2012,4,19,1,30,101680,100500,99350,62.13,0,2.19,2.21,2.18,2.13,2.06,1.98,1.78,1.59,1.46,125.61,124.84,124.26,123.54,122.42,121.16,115.7,109.14,45.17,22.13,21.8,21.63,21.45,21.27,21.11,21,20.93,21.25,N/A,N/A -2012,4,19,2,30,101690,100510,99370,56.63,0,2.57,2.63,2.62,2.59,2.5500000000000003,2.52,2.48,2.44,2.32,112.61,112.09,111.7,111.25,110.73,110.19,109.42,108.67,105.66,22.51,22.19,22.01,21.830000000000002,21.64,21.46,21.28,21.11,20.78,N/A,N/A -2012,4,19,3,30,101680,100500,99360,63.980000000000004,0,2.93,3.02,3.02,3,2.98,2.96,2.93,2.91,2.84,125.74000000000001,125.29,124.95,124.57000000000001,124.16,123.75,123.18,122.64,120.8,22.1,21.740000000000002,21.57,21.37,21.18,21,20.81,20.63,20.26,N/A,N/A -2012,4,19,4,30,101670,100490,99350,64.14,0,2.37,2.46,2.47,2.47,2.46,2.46,2.45,2.44,2.44,127.85000000000001,127.2,126.75,126.26,125.7,125.11,124.28,123.47,120.56,22.1,21.75,21.57,21.38,21.19,21.01,20.82,20.650000000000002,20.29,N/A,N/A -2012,4,19,5,30,101650,100480,99330,62.02,0,1.41,1.47,1.49,1.51,1.53,1.54,1.57,1.59,1.7,125.45,124.42,123.81,123.16,122.45,121.72,120.8,119.9,116.97,22.32,21.98,21.81,21.62,21.43,21.25,21.06,20.88,20.53,N/A,N/A -2012,4,19,6,30,101660,100490,99340,62.95,0,1.6500000000000001,1.71,1.71,1.71,1.71,1.71,1.71,1.71,1.71,129.96,128.49,127.63000000000001,126.74000000000001,125.89,125.07000000000001,124.16,123.31,121.37,22.36,22.02,21.84,21.650000000000002,21.45,21.27,21.07,20.89,20.5,N/A,N/A -2012,4,19,7,30,101680,100500,99360,62.85,0,1.9100000000000001,2.02,2.04,2.07,2.08,2.11,2.13,2.15,2.19,141.54,140.56,139.95000000000002,139.37,138.81,138.29,137.75,137.26,136.25,22.36,22.01,21.84,21.64,21.45,21.26,21.06,20.88,20.490000000000002,N/A,N/A -2012,4,19,8,30,101660,100480,99340,65.49,0,2.27,2.36,2.37,2.38,2.38,2.38,2.38,2.39,2.39,146.76,145.49,144.69,143.94,143.26,142.62,141.98,141.4,140.21,22.2,21.86,21.68,21.47,21.28,21.09,20.89,20.71,20.31,N/A,N/A -2012,4,19,9,30,101640,100460,99320,66.64,0,1.86,1.9100000000000001,1.9100000000000001,1.9000000000000001,1.9000000000000001,1.8900000000000001,1.8900000000000001,1.8800000000000001,1.87,170.89000000000001,169.45000000000002,168.49,167.57,166.73,165.94,165.13,164.39000000000001,162.9,22.07,21.72,21.54,21.34,21.14,20.96,20.76,20.57,20.18,N/A,N/A -2012,4,19,10,30,101630,100450,99300,67.74,0,2.0300000000000002,2.07,2.06,2.04,2.0300000000000002,2.0100000000000002,2,1.98,1.95,182.74,181.29,180.33,179.41,178.54,177.71,176.88,176.13,174.47,21.91,21.55,21.37,21.17,20.97,20.78,20.580000000000002,20.400000000000002,20.01,N/A,N/A -2012,4,19,11,30,101620,100440,99290,67.44,0,1.77,1.82,1.82,1.82,1.82,1.82,1.82,1.82,1.82,190.17000000000002,187.84,186.45000000000002,185.11,183.88,182.72,181.53,180.44,178.22,21.81,21.45,21.27,21.07,20.88,20.69,20.490000000000002,20.31,19.91,N/A,N/A -2012,4,19,12,30,101600,100420,99280,66.76,0,1.49,1.6,1.6400000000000001,1.68,1.71,1.74,1.77,1.8,1.86,168.02,166.39000000000001,165.41,164.51,163.73,163.03,162.35,161.73,160.54,21.79,21.43,21.25,21.05,20.85,20.66,20.46,20.28,19.89,N/A,N/A -2012,4,19,13,30,101600,100420,99280,66.16,0,1.86,1.97,2,2.0300000000000002,2.05,2.07,2.09,2.11,2.14,169.45000000000002,167.66,166.54,165.51,164.6,163.76,162.92000000000002,162.16,160.63,21.84,21.48,21.3,21.1,20.91,20.72,20.52,20.34,19.95,N/A,N/A -2012,4,19,14,30,101620,100440,99290,63.89,0,1.33,1.47,1.53,1.58,1.6300000000000001,1.68,1.73,1.77,1.86,165.08,162.48,161.03,159.81,158.8,157.92000000000002,157.15,156.47,155.22,22.03,21.68,21.5,21.31,21.11,20.92,20.73,20.54,20.150000000000002,N/A,N/A -2012,4,19,15,30,101600,100420,99280,60.7,0,1.98,2.15,2.2,2.25,2.2800000000000002,2.32,2.35,2.38,2.43,141.36,141.85,142.24,142.59,142.9,143.18,143.46,143.72,144.22,22.150000000000002,21.79,21.61,21.41,21.21,21.03,20.82,20.64,20.240000000000002,N/A,N/A -2012,4,19,16,30,101590,100410,99270,63.74,0,2.88,3.0300000000000002,3.0700000000000003,3.1,3.13,3.15,3.17,3.18,3.22,157.9,157.55,157.3,157.07,156.85,156.65,156.46,156.29,155.92000000000002,22.150000000000002,21.79,21.6,21.400000000000002,21.2,21.01,20.81,20.62,20.23,N/A,N/A -2012,4,19,17,30,101550,100380,99230,62.7,0,2.84,2.96,2.98,3,3,3.0100000000000002,3.0100000000000002,3.0100000000000002,3.02,157.99,158.02,158.12,158.24,158.35,158.45000000000002,158.57,158.68,158.92000000000002,22.2,21.830000000000002,21.650000000000002,21.44,21.25,21.06,20.86,20.67,20.28,N/A,N/A -2012,4,19,18,30,101520,100350,99210,68.3,0,3.49,3.66,3.69,3.7,3.71,3.72,3.72,3.73,3.73,166.8,166.57,166.4,166.22,166.06,165.9,165.74,165.6,165.31,22.17,21.79,21.61,21.400000000000002,21.21,21.02,20.81,20.63,20.240000000000002,N/A,N/A -2012,4,19,19,30,101490,100310,99170,69.58,0,2.98,3.16,3.21,3.25,3.2800000000000002,3.31,3.34,3.36,3.4,167.33,167.24,167.3,167.35,167.39000000000001,167.43,167.47,167.5,167.57,22.17,21.79,21.61,21.400000000000002,21.21,21.01,20.81,20.63,20.23,N/A,N/A -2012,4,19,20,30,101410,100240,99100,70.9,0,3.94,4.12,4.14,4.14,4.14,4.13,4.12,4.11,4.09,167.56,168.09,168.45000000000002,168.78,169.06,169.3,169.53,169.73,170.07,22.1,21.72,21.53,21.330000000000002,21.13,20.94,20.740000000000002,20.56,20.16,N/A,N/A -2012,4,19,21,30,101350,100180,99040,71.02,0,4.65,4.9,4.93,4.95,4.95,4.95,4.95,4.94,4.93,170.34,169.99,169.76,169.53,169.31,169.11,168.89000000000001,168.69,168.27,22.13,21.75,21.57,21.36,21.17,20.98,20.78,20.59,20.2,N/A,N/A -2012,4,19,22,30,101280,100110,98970,66.61,0,5.23,5.53,5.58,5.59,5.6000000000000005,5.6000000000000005,5.59,5.58,5.5600000000000005,161.41,161.78,161.96,162.11,162.25,162.38,162.5,162.61,162.83,22.25,21.88,21.69,21.490000000000002,21.29,21.1,20.900000000000002,20.72,20.32,N/A,N/A -2012,4,19,23,30,101230,100060,98920,71.8,0,5.13,5.5,5.58,5.64,5.68,5.71,5.73,5.75,5.78,160.68,160.93,161.02,161.07,161.12,161.16,161.19,161.22,161.26,22.12,21.73,21.55,21.34,21.14,20.96,20.75,20.56,20.17,N/A,N/A -2012,4,20,0,30,101170,100000,98860,72.21000000000001,0,5.84,6.25,6.34,6.4,6.43,6.46,6.48,6.49,6.5200000000000005,166.95000000000002,166.35,166,165.69,165.4,165.14000000000001,164.87,164.63,164.12,22.080000000000002,21.69,21.5,21.29,21.1,20.91,20.71,20.52,20.13,N/A,N/A -2012,4,20,1,30,101130,99960,98820,72.02,0,6.32,6.7,6.76,6.78,6.78,6.78,6.7700000000000005,6.76,6.74,175.6,174.59,174,173.42000000000002,172.87,172.35,171.83,171.34,170.32,21.98,21.57,21.39,21.18,20.990000000000002,20.79,20.59,20.41,20.02,N/A,N/A -2012,4,20,2,30,101140,99960,98830,71.97,0,7.55,8.120000000000001,8.24,8.290000000000001,8.31,8.31,8.31,8.3,8.27,154.97,155.34,155.63,155.93,156.21,156.47,156.75,157.02,157.57,22.12,21.72,21.53,21.32,21.12,20.93,20.73,20.54,20.150000000000002,N/A,N/A -2012,4,20,3,30,101110,99930,98800,72.01,0,7.930000000000001,8.51,8.620000000000001,8.66,8.69,8.69,8.69,8.69,8.66,171.83,171.37,171.18,171.01,170.86,170.72,170.58,170.45000000000002,170.19,22.05,21.650000000000002,21.46,21.25,21.05,20.86,20.66,20.48,20.09,N/A,N/A -2012,4,20,4,30,101100,99930,98790,79.19,0,6.48,6.96,7.07,7.13,7.17,7.19,7.21,7.22,7.22,176.44,176.14000000000001,175.98,175.84,175.72,175.61,175.49,175.39000000000001,175.19,21.96,21.55,21.36,21.16,20.96,20.77,20.56,20.38,19.98,N/A,N/A -2012,4,20,5,30,101070,99900,98760,75.7,0,8.15,8.88,9.06,9.18,9.26,9.33,9.38,9.41,9.48,169.52,170.88,171.46,171.97,172.4,172.77,173.12,173.44,174.02,22.28,21.88,21.69,21.490000000000002,21.28,21.09,20.89,20.7,20.31,N/A,N/A -2012,4,20,6,30,101060,99890,98750,75.60000000000001,0,8.33,9.040000000000001,9.22,9.32,9.39,9.450000000000001,9.49,9.52,9.59,180.58,180.68,180.78,180.87,180.94,181.01,181.07,181.12,181.22,22.25,21.830000000000002,21.650000000000002,21.44,21.240000000000002,21.05,20.85,20.67,20.28,N/A,N/A -2012,4,20,7,30,101060,99890,98750,76.09,0,8.25,8.91,9.07,9.14,9.19,9.22,9.23,9.24,9.23,186.47,186.70000000000002,186.73,186.71,186.69,186.65,186.6,186.56,186.45000000000002,22.38,21.97,21.78,21.57,21.38,21.18,20.98,20.79,20.400000000000002,N/A,N/A -2012,4,20,8,30,101030,99860,98730,75.19,0,8.33,9.06,9.24,9.34,9.41,9.46,9.49,9.52,9.56,185.17000000000002,185.19,185.17000000000002,185.13,185.08,185.03,184.98,184.92000000000002,184.82,22.38,21.98,21.79,21.59,21.39,21.2,21,20.81,20.42,N/A,N/A -2012,4,20,9,30,101040,99870,98740,74.14,0,8.26,8.9,9.040000000000001,9.1,9.14,9.16,9.17,9.17,9.16,189.29,189.38,189.6,189.86,190.09,190.32,190.56,190.78,191.24,22.62,22.22,22.04,21.830000000000002,21.63,21.44,21.240000000000002,21.05,20.66,N/A,N/A -2012,4,20,10,30,101030,99860,98730,76.22,0,6.62,7.13,7.26,7.34,7.4,7.44,7.48,7.51,7.5600000000000005,184.04,184.24,184.29,184.33,184.37,184.41,184.44,184.48,184.58,22.41,22.02,21.84,21.64,21.44,21.25,21.05,20.87,20.48,N/A,N/A -2012,4,20,11,30,101030,99870,98730,74.56,0,7.47,8.11,8.24,8.31,8.35,8.370000000000001,8.370000000000001,8.370000000000001,8.36,190.96,191.19,191.34,191.46,191.56,191.66,191.75,191.83,191.99,22.66,22.27,22.080000000000002,21.88,21.68,21.490000000000002,21.28,21.1,20.71,N/A,N/A -2012,4,20,12,30,101030,99860,98730,72.12,0,6.82,7.3100000000000005,7.43,7.48,7.5200000000000005,7.54,7.5600000000000005,7.57,7.58,189.11,188.99,188.92000000000002,188.88,188.84,188.8,188.77,188.74,188.69,22.41,22.02,21.830000000000002,21.63,21.44,21.25,21.05,20.86,20.48,N/A,N/A -2012,4,20,13,30,101140,99970,98830,71.5,0,3.29,3.52,3.59,3.63,3.67,3.7,3.73,3.75,3.8000000000000003,218.27,217.73000000000002,217.49,217.25,217.01,216.78,216.54,216.32,215.83,22.42,22.06,21.88,21.68,21.48,21.29,21.09,20.91,20.51,N/A,N/A -2012,4,20,14,30,101090,99920,98780,71.39,0,5.73,5.97,5.96,5.91,5.8500000000000005,5.8,5.74,5.69,5.57,188.33,187.78,187.48,187.18,186.9,186.64000000000001,186.36,186.11,185.6,22.39,22.01,21.830000000000002,21.63,21.43,21.240000000000002,21.04,20.86,20.47,N/A,N/A -2012,4,20,15,30,101110,99940,98810,71.81,0,5.16,5.49,5.57,5.61,5.63,5.65,5.66,5.67,5.69,179.73,179.6,179.62,179.65,179.70000000000002,179.74,179.8,179.86,180,22.51,22.14,21.95,21.75,21.55,21.36,21.16,20.98,20.59,N/A,N/A -2012,4,20,16,30,101130,99960,98830,72.69,0,4.36,4.65,4.74,4.8,4.84,4.87,4.9,4.92,4.96,186.3,186.22,186.11,186.01,185.91,185.81,185.71,185.62,185.4,22.66,22.3,22.11,21.91,21.72,21.52,21.32,21.14,20.740000000000002,N/A,N/A -2012,4,20,17,30,101190,100020,98890,71.45,0,2.7600000000000002,2.91,2.95,2.98,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.09,214.08,214.18,214.11,214.04,213.97,213.92000000000002,213.84,213.78,213.66,22.77,22.41,22.23,22.03,21.84,21.650000000000002,21.45,21.26,20.87,N/A,N/A -2012,4,20,18,30,101170,100000,98870,68.64,0,2.56,2.66,2.68,2.68,2.68,2.68,2.67,2.67,2.66,214.39000000000001,213.5,212.95000000000002,212.43,211.96,211.52,211.06,210.66,209.82,22.900000000000002,22.54,22.36,22.16,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,4,20,19,30,101090,99920,98790,69.82000000000001,0,2.95,3.1,3.14,3.17,3.19,3.21,3.22,3.24,3.27,176.64000000000001,177.75,178.42000000000002,179.02,179.53,179.99,180.43,180.84,181.6,22.89,22.52,22.34,22.13,21.94,21.75,21.55,21.36,20.97,N/A,N/A -2012,4,20,20,30,101040,99880,98750,73.31,0,4.01,4.24,4.29,4.32,4.33,4.3500000000000005,4.3500000000000005,4.36,4.37,180.87,180.69,180.58,180.48,180.38,180.27,180.18,180.09,179.9,22.92,22.55,22.37,22.17,21.97,21.78,21.580000000000002,21.39,21,N/A,N/A -2012,4,20,21,30,101030,99860,98730,68.97,0,3.43,3.61,3.65,3.67,3.67,3.68,3.68,3.69,3.68,179.97,180.64000000000001,181,181.35,181.67000000000002,181.98,182.31,182.61,183.27,23.04,22.69,22.51,22.31,22.12,21.93,21.73,21.55,21.17,N/A,N/A -2012,4,20,22,30,100950,99780,98650,68.57000000000001,0,3.95,4.17,4.21,4.23,4.24,4.24,4.24,4.23,4.22,180.48,180.92000000000002,181.02,181.13,181.24,181.35,181.47,181.58,181.83,23.11,22.76,22.59,22.39,22.19,22.01,21.81,21.63,21.240000000000002,N/A,N/A -2012,4,20,23,30,101130,99950,98800,87.69,22.3,15.16,16.28,16.46,16.45,16.37,16.27,16.1,15.94,15.48,306.59000000000003,306.08,305.68,305.2,304.64,304.07,303.3,302.55,300.36,19.91,19.3,19.1,18.94,18.8,18.67,18.56,18.47,18.32,N/A,N/A -2012,4,21,0,30,101020,99840,98690,85.01,7,5.51,5.86,5.97,6.05,6.12,6.18,6.26,6.33,6.6000000000000005,343.54,343.17,342.83,342.49,342.13,341.78000000000003,341.36,340.96,339.89,19.77,19.3,19.1,18.91,18.72,18.54,18.36,18.2,17.89,N/A,N/A -2012,4,21,1,30,100980,99800,98660,82.10000000000001,0,1.56,1.72,1.78,1.84,1.9100000000000001,1.98,2.08,2.19,2.7600000000000002,314.47,314.83,315.65000000000003,316.5,317.43,318.39,319.65000000000003,320.92,325.75,20.57,20.19,20.01,19.82,19.64,19.47,19.3,19.14,18.94,N/A,N/A -2012,4,21,2,30,101060,99890,98740,82.91,0,5.3,5.65,5.73,5.79,5.84,5.87,5.91,5.94,6.01,279.03000000000003,279.15000000000003,279.26,279.41,279.56,279.71,279.90000000000003,280.07,280.47,20.490000000000002,20.04,19.84,19.63,19.43,19.240000000000002,19.04,18.86,18.48,N/A,N/A -2012,4,21,3,30,101100,99920,98780,73.69,0,9.59,10.31,10.46,10.52,10.55,10.56,10.56,10.55,10.52,331.28000000000003,331.26,331.18,331.11,331.04,330.98,330.92,330.87,330.79,21,20.5,20.29,20.07,19.87,19.67,19.47,19.28,18.89,N/A,N/A -2012,4,21,4,30,101090,99910,98760,84.67,0,9.4,10.22,10.42,10.53,10.61,10.66,10.69,10.72,10.74,344.79,345.11,345.13,345.13,345.12,345.11,345.09000000000003,345.07,345.03000000000003,20.11,19.56,19.34,19.11,18.900000000000002,18.7,18.490000000000002,18.3,17.900000000000002,N/A,N/A -2012,4,21,5,30,101090,99900,98760,85.69,0,10.950000000000001,11.92,12.15,12.280000000000001,12.36,12.41,12.450000000000001,12.48,12.5,346.26,346.54,346.62,346.67,346.71,346.74,346.76,346.77,346.78000000000003,19.66,19.07,18.84,18.61,18.400000000000002,18.21,18,17.81,17.42,N/A,N/A -2012,4,21,6,30,101110,99920,98770,81.02,0,12.86,14.16,14.51,14.72,14.870000000000001,14.98,15.07,15.15,15.26,354.8,355.04,355.16,355.26,355.36,355.46,355.55,355.63,355.81,19.35,18.71,18.47,18.240000000000002,18.02,17.82,17.61,17.42,17.03,N/A,N/A -2012,4,21,7,30,101150,99970,98810,80,0,13.73,15.15,15.55,15.8,15.98,16.13,16.240000000000002,16.34,16.52,358.11,358.29,358.40000000000003,358.51,358.6,358.69,358.79,358.88,359.08,19,18.32,18.07,17.84,17.62,17.42,17.21,17.02,16.63,N/A,N/A -2012,4,21,8,30,101130,99940,98790,79.32000000000001,0,14.43,15.96,16.37,16.62,16.8,16.94,17.04,17.14,17.27,357,357.05,357.09000000000003,357.12,357.15000000000003,357.18,357.21,357.23,357.29,18.93,18.240000000000002,17.990000000000002,17.75,17.53,17.32,17.1,16.91,16.5,N/A,N/A -2012,4,21,9,30,101160,99970,98810,81.19,0,14.32,15.780000000000001,16.17,16.4,16.56,16.68,16.76,16.84,16.93,357.49,357.40000000000003,357.37,357.36,357.36,357.36,357.36,357.36,357.39,18.59,17.88,17.62,17.38,17.150000000000002,16.94,16.73,16.52,16.12,N/A,N/A -2012,4,21,10,30,101190,100000,98840,81.93,0,14.21,15.63,15.99,16.2,16.34,16.44,16.5,16.56,16.63,359.41,359.62,359.71,359.8,359.88,359.96,0.04,0.12,0.28,18.03,17.28,17.02,16.77,16.55,16.34,16.12,15.92,15.52,N/A,N/A -2012,4,21,11,30,101200,100010,98850,81.87,0,14.36,15.8,16.15,16.35,16.490000000000002,16.59,16.66,16.71,16.78,357.44,357.61,357.72,357.83,357.94,358.04,358.15000000000003,358.26,358.48,17.51,16.740000000000002,16.47,16.22,15.99,15.790000000000001,15.57,15.370000000000001,14.97,N/A,N/A -2012,4,21,12,30,101210,100010,98850,81.58,0,14.370000000000001,15.8,16.15,16.35,16.48,16.580000000000002,16.65,16.71,16.78,359.3,359.53000000000003,359.65000000000003,359.76,359.88,359.98,0.1,0.21,0.45,17.12,16.32,16.04,15.8,15.57,15.370000000000001,15.15,14.96,14.56,N/A,N/A -2012,4,21,13,30,101230,100030,98870,80.36,0,13.540000000000001,14.82,15.13,15.3,15.42,15.51,15.57,15.620000000000001,15.700000000000001,359.88,0.16,0.32,0.48,0.64,0.78,0.93,1.07,1.36,16.67,15.870000000000001,15.6,15.36,15.14,14.93,14.72,14.530000000000001,14.14,N/A,N/A -2012,4,21,14,30,101280,100080,98910,77.5,0,12.26,13.34,13.59,13.74,13.83,13.9,13.950000000000001,13.99,14.040000000000001,353.92,354.08,354.19,354.29,354.39,354.47,354.57,354.67,354.85,16.6,15.84,15.57,15.33,15.11,14.9,14.69,14.49,14.09,N/A,N/A -2012,4,21,15,30,101330,100130,98960,75.14,0,11.28,12.22,12.43,12.56,12.63,12.69,12.72,12.75,12.790000000000001,351.90000000000003,352.1,352.23,352.36,352.47,352.58,352.69,352.79,353,16.71,15.98,15.72,15.48,15.25,15.040000000000001,14.83,14.63,14.23,N/A,N/A -2012,4,21,16,30,101330,100130,98960,71.28,0,11.15,12.08,12.290000000000001,12.4,12.48,12.530000000000001,12.56,12.59,12.620000000000001,347.29,347.55,347.72,347.88,348.02,348.16,348.3,348.43,348.68,17.3,16.6,16.35,16.11,15.89,15.69,15.47,15.27,14.870000000000001,N/A,N/A -2012,4,21,17,30,101330,100130,98970,66.38,0,11.33,12.33,12.57,12.71,12.8,12.870000000000001,12.92,12.96,13.02,348.02,348.1,348.16,348.2,348.24,348.29,348.34000000000003,348.39,348.49,18.34,17.69,17.45,17.22,17,16.8,16.580000000000002,16.39,15.99,N/A,N/A -2012,4,21,18,30,101310,100120,98970,61.730000000000004,0,11.27,12.31,12.56,12.700000000000001,12.8,12.88,12.93,12.98,13.040000000000001,345.45,345.7,345.85,345.98,346.11,346.22,346.34000000000003,346.44,346.66,19.400000000000002,18.81,18.580000000000002,18.36,18.14,17.95,17.740000000000002,17.54,17.14,N/A,N/A -2012,4,21,19,30,101310,100120,98970,59.050000000000004,0,10.78,11.78,12.030000000000001,12.18,12.290000000000001,12.370000000000001,12.43,12.48,12.56,344.58,344.98,345.22,345.45,345.65000000000003,345.84000000000003,346.02,346.2,346.53000000000003,20.31,19.77,19.55,19.34,19.13,18.93,18.72,18.53,18.13,N/A,N/A -2012,4,21,20,30,101280,100090,98950,56.26,0,10.71,11.72,11.98,12.13,12.24,12.33,12.39,12.44,12.52,344.56,344.92,345.14,345.34000000000003,345.54,345.71,345.88,346.02,346.32,21.07,20.580000000000002,20.37,20.16,19.95,19.76,19.55,19.36,18.96,N/A,N/A -2012,4,21,21,30,101270,100090,98950,54.410000000000004,0,10.5,11.5,11.76,11.92,12.040000000000001,12.120000000000001,12.19,12.25,12.33,344.56,344.96,345.2,345.43,345.63,345.81,345.99,346.15000000000003,346.46,21.61,21.16,20.96,20.740000000000002,20.54,20.35,20.14,19.95,19.55,N/A,N/A -2012,4,21,22,30,101270,100090,98950,55.230000000000004,0,10.18,11.14,11.38,11.53,11.63,11.71,11.77,11.82,11.89,344,344.44,344.71,344.97,345.2,345.42,345.62,345.82,346.18,21.96,21.53,21.330000000000002,21.13,20.92,20.73,20.53,20.34,19.94,N/A,N/A -2012,4,21,23,30,101270,100090,98950,52.97,0,10.63,11.68,11.94,12.09,12.19,12.26,12.32,12.36,12.42,349.40000000000003,349.44,349.46,349.49,349.51,349.54,349.56,349.59000000000003,349.65000000000003,22.1,21.68,21.48,21.28,21.07,20.88,20.68,20.490000000000002,20.09,N/A,N/A -2012,4,22,0,30,101300,100120,98980,53.4,0,10.290000000000001,11.28,11.52,11.67,11.77,11.84,11.9,11.94,12.01,352.40000000000003,352.22,352.13,352.05,351.98,351.92,351.86,351.81,351.72,21.96,21.53,21.330000000000002,21.13,20.92,20.73,20.53,20.34,19.94,N/A,N/A -2012,4,22,1,30,101360,100180,99030,54.410000000000004,0,10.38,11.34,11.56,11.69,11.77,11.84,11.870000000000001,11.91,11.94,355.73,355.79,355.79,355.79,355.79,355.79,355.78000000000003,355.76,355.75,21.53,21.07,20.87,20.66,20.45,20.26,20.05,19.86,19.46,N/A,N/A -2012,4,22,2,30,101410,100230,99080,54.03,0,10.36,11.33,11.56,11.69,11.78,11.84,11.89,11.93,11.98,359.18,359.18,359.15000000000003,359.13,359.1,359.08,359.06,359.03000000000003,358.98,21.38,20.91,20.71,20.5,20.29,20.1,19.89,19.7,19.3,N/A,N/A -2012,4,22,3,30,101450,100270,99120,54.22,0,9.31,10.14,10.35,10.47,10.55,10.620000000000001,10.67,10.72,10.790000000000001,5.8,5.74,5.69,5.63,5.5600000000000005,5.5,5.43,5.36,5.21,21.32,20.86,20.66,20.45,20.25,20.06,19.86,19.67,19.28,N/A,N/A -2012,4,22,4,30,101470,100290,99140,56.14,0,8.8,9.55,9.74,9.84,9.92,9.98,10.03,10.07,10.15,8.43,8.33,8.26,8.19,8.120000000000001,8.05,7.98,7.9,7.74,21.13,20.67,20.46,20.26,20.06,19.88,19.67,19.490000000000002,19.11,N/A,N/A -2012,4,22,5,30,101500,100320,99170,55.730000000000004,0,9.33,10.120000000000001,10.31,10.41,10.48,10.53,10.56,10.59,10.620000000000001,11.1,11.120000000000001,11.120000000000001,11.120000000000001,11.11,11.1,11.09,11.07,11.040000000000001,21.04,20.57,20.37,20.16,19.96,19.77,19.57,19.38,19,N/A,N/A -2012,4,22,6,30,101540,100350,99200,58.120000000000005,0,8.69,9.42,9.59,9.69,9.76,9.81,9.85,9.88,9.94,15.83,15.89,15.92,15.94,15.96,15.97,15.97,15.97,15.96,20.67,20.22,20.02,19.82,19.62,19.44,19.240000000000002,19.06,18.68,N/A,N/A -2012,4,22,7,30,101580,100390,99240,58.2,0,8.69,9.39,9.56,9.65,9.71,9.75,9.78,9.81,9.85,21.63,21.66,21.67,21.66,21.66,21.66,21.650000000000002,21.64,21.63,20.42,19.96,19.76,19.55,19.35,19.17,18.97,18.79,18.41,N/A,N/A -2012,4,22,8,30,101580,100390,99240,59.63,0,8.33,8.97,9.11,9.18,9.23,9.25,9.27,9.290000000000001,9.3,20.32,20.43,20.48,20.53,20.57,20.61,20.650000000000002,20.68,20.740000000000002,20.1,19.62,19.42,19.21,19.01,18.830000000000002,18.62,18.44,18.06,N/A,N/A -2012,4,22,9,30,101620,100430,99270,60.97,0,7.140000000000001,7.62,7.72,7.76,7.79,7.8100000000000005,7.8100000000000005,7.82,7.82,22.82,22.91,22.97,23.03,23.080000000000002,23.12,23.17,23.2,23.27,19.78,19.31,19.11,18.900000000000002,18.7,18.51,18.32,18.13,17.75,N/A,N/A -2012,4,22,10,30,101640,100450,99290,62.08,0,6.72,7.140000000000001,7.23,7.2700000000000005,7.29,7.3,7.3100000000000005,7.3100000000000005,7.32,25.02,25.07,25.1,25.13,25.16,25.19,25.23,25.25,25.3,19.59,19.11,18.900000000000002,18.7,18.5,18.32,18.12,17.93,17.56,N/A,N/A -2012,4,22,11,30,101680,100490,99330,62.06,0,5.95,6.3,6.37,6.4,6.42,6.44,6.45,6.45,6.46,19.02,19.09,19.16,19.22,19.28,19.330000000000002,19.39,19.44,19.56,19.490000000000002,19.02,18.82,18.61,18.41,18.23,18.03,17.84,17.46,N/A,N/A -2012,4,22,12,30,101710,100510,99350,61.800000000000004,0,5.93,6.2700000000000005,6.33,6.36,6.37,6.38,6.38,6.38,6.38,16.9,17.05,17.150000000000002,17.240000000000002,17.330000000000002,17.41,17.51,17.6,17.79,19.39,18.92,18.71,18.51,18.31,18.12,17.92,17.740000000000002,17.36,N/A,N/A -2012,4,22,13,30,101730,100540,99380,63.08,0,5.84,6.16,6.2,6.22,6.22,6.22,6.21,6.2,6.18,13.540000000000001,13.700000000000001,13.81,13.93,14.040000000000001,14.13,14.26,14.370000000000001,14.63,19.2,18.72,18.52,18.32,18.12,17.94,17.740000000000002,17.56,17.18,N/A,N/A -2012,4,22,14,30,101800,100600,99440,62.1,0,4.67,4.9,4.93,4.95,4.96,4.96,4.96,4.96,4.96,10.35,10.47,10.56,10.65,10.74,10.83,10.93,11.02,11.26,19.31,18.86,18.66,18.46,18.26,18.080000000000002,17.88,17.7,17.32,N/A,N/A -2012,4,22,15,30,101820,100630,99470,59.9,0,3.64,3.81,3.85,3.86,3.88,3.88,3.89,3.9,3.92,358.94,358.84000000000003,358.8,358.78000000000003,358.76,358.74,358.74,358.74,358.79,19.650000000000002,19.22,19.03,18.830000000000002,18.63,18.45,18.25,18.07,17.68,N/A,N/A -2012,4,22,16,30,101820,100630,99480,56.300000000000004,0,3.8000000000000003,4.01,4.05,4.08,4.1,4.13,4.15,4.17,4.21,348.15000000000003,348.09000000000003,348.06,348.03000000000003,347.99,347.94,347.88,347.82,347.68,20.32,19.92,19.73,19.53,19.330000000000002,19.150000000000002,18.95,18.77,18.39,N/A,N/A -2012,4,22,17,30,101800,100610,99460,56.620000000000005,0,3.81,4.0600000000000005,4.12,4.17,4.2,4.23,4.25,4.28,4.32,318.25,318.59000000000003,318.83,319.04,319.26,319.45,319.67,319.87,320.34000000000003,21.22,20.84,20.650000000000002,20.45,20.26,20.07,19.88,19.69,19.3,N/A,N/A -2012,4,22,18,30,101780,100600,99450,53.160000000000004,0,5.21,5.55,5.62,5.66,5.67,5.68,5.68,5.68,5.67,310.2,310.71,311.02,311.31,311.58,311.83,312.11,312.37,312.98,22.1,21.75,21.57,21.37,21.18,21,20.8,20.62,20.240000000000002,N/A,N/A -2012,4,22,19,30,101750,100570,99430,53.92,0,6.05,6.5,6.59,6.63,6.65,6.67,6.68,6.69,6.76,305.93,306.63,307.1,307.57,308.07,308.57,309.2,309.81,311.72,22.72,22.400000000000002,22.23,22.04,21.86,21.68,21.5,21.32,20.98,N/A,N/A -2012,4,22,20,30,101680,100510,99370,52.910000000000004,0,6.73,7.3100000000000005,7.42,7.48,7.54,7.59,7.7,7.8100000000000005,8.27,304.17,304.63,304.95,305.35,305.85,306.41,307.46,308.56,313.42,23.64,23.42,23.27,23.1,22.94,22.79,22.64,22.51,22.31,N/A,N/A -2012,4,22,21,30,101640,100470,99340,53.88,0,5.87,6.78,7.17,7.55,7.8500000000000005,8.1,8.23,8.33,8.43,303.22,304.69,305.63,306.53000000000003,307.22,307.77,308.18,308.51,309.76,24.38,24.400000000000002,24.38,24.29,24.18,24.060000000000002,23.88,23.7,23.35,N/A,N/A -2012,4,22,22,30,101620,100450,99320,53.34,0,6.2700000000000005,7.43,7.890000000000001,8.27,8.57,8.8,8.97,9.11,9.27,316.99,317.45,317.74,318.11,318.45,318.76,318.96,319.12,319.11,25.19,25.330000000000002,25.34,25.28,25.19,25.080000000000002,24.93,24.78,24.42,N/A,N/A -2012,4,22,23,30,101620,100450,99320,71.32000000000001,0,6.33,6.640000000000001,6.63,6.6000000000000005,6.4,6.08,5.87,5.7,5.59,250.18,250.22,250.13,249.81,252.06,255.93,260.53000000000003,264.86,273,23.13,22.86,22.72,22.59,22.8,23.25,23.57,23.830000000000002,23.650000000000002,N/A,N/A -2012,4,23,0,30,101650,100470,99340,75.12,0,6.55,6.88,6.88,6.82,6.640000000000001,6.38,6.11,5.86,5.59,245.46,245.8,246.08,246.5,249.36,253.71,258.86,263.61,273.66,22.94,22.66,22.51,22.37,22.43,22.64,23.01,23.39,23.38,N/A,N/A -2012,4,23,1,30,101670,100500,99360,76.91,0,6.2700000000000005,6.49,6.390000000000001,6.15,5.7700000000000005,5.32,5.18,5.13,5.24,245.4,246.67000000000002,249.31,255.82,262.59000000000003,269.32,275.56,281.19,293.45,22.990000000000002,22.740000000000002,22.66,22.66,22.89,23.27,23.330000000000002,23.29,23.2,N/A,N/A -2012,4,23,2,30,101690,100520,99390,76.38,0,5.4,5.44,5.2,4.8,4.7700000000000005,4.99,5.2700000000000005,5.55,6.25,241.82,245.11,256.68,284.40000000000003,298.3,304.18,309.21,313.76,320.76,23.31,23.150000000000002,23.27,23.740000000000002,23.94,23.94,23.96,23.990000000000002,23.98,N/A,N/A -2012,4,23,3,30,101720,100550,99420,76.59,0,3.69,3.8000000000000003,3.85,4.09,4.39,4.75,5.21,5.69,6.74,274.16,289.13,298.63,309.05,316.82,322.94,327.48,331.36,336.12,23.69,23.81,23.88,23.92,23.96,23.98,24.02,24.05,24.14,N/A,N/A -2012,4,23,4,30,101770,100600,99460,62.36,0,7.78,8.91,9.32,9.67,9.97,10.23,10.47,10.69,11.11,8.69,8.09,7.72,7.3100000000000005,6.92,6.55,6.18,5.84,5.23,24.580000000000002,24.51,24.42,24.29,24.16,24.02,23.87,23.72,23.39,N/A,N/A -2012,4,23,5,30,101830,100640,99500,55.980000000000004,0,11.58,12.780000000000001,13.08,13.25,13.38,13.48,13.57,13.65,13.870000000000001,21.27,21.240000000000002,21.22,21.2,21.18,21.16,21.14,21.11,21.05,22.81,22.5,22.330000000000002,22.14,21.96,21.78,21.59,21.42,21.07,N/A,N/A -2012,4,23,6,30,101880,100700,99550,54.34,0,12.450000000000001,13.77,14.11,14.31,14.450000000000001,14.56,14.65,14.74,14.950000000000001,23.650000000000002,23.72,23.75,23.78,23.81,23.84,23.86,23.87,23.900000000000002,21.73,21.38,21.2,21.01,20.82,20.64,20.45,20.28,19.93,N/A,N/A -2012,4,23,7,30,101930,100740,99580,56.370000000000005,0,13.59,14.98,15.32,15.5,15.63,15.73,15.81,15.88,16.06,28.71,28.7,28.68,28.66,28.63,28.6,28.55,28.51,28.36,20.76,20.32,20.13,19.93,19.740000000000002,19.56,19.37,19.21,18.87,N/A,N/A -2012,4,23,8,30,101960,100760,99610,56.980000000000004,0,13.9,15.3,15.63,15.81,15.93,16.01,16.07,16.12,16.22,28.830000000000002,28.900000000000002,28.93,28.96,28.97,28.98,28.98,28.98,28.93,20.22,19.740000000000002,19.53,19.330000000000002,19.14,18.96,18.77,18.6,18.26,N/A,N/A -2012,4,23,9,30,101990,100790,99630,58.45,0,13.33,14.65,14.97,15.15,15.26,15.33,15.38,15.42,15.46,31.560000000000002,31.7,31.77,31.830000000000002,31.88,31.92,31.95,31.98,32.02,19.72,19.2,18.990000000000002,18.78,18.57,18.39,18.19,18.01,17.64,N/A,N/A -2012,4,23,10,30,102030,100830,99670,60.31,0,13.1,14.35,14.65,14.81,14.91,14.97,15,15.030000000000001,15.040000000000001,33.44,33.59,33.660000000000004,33.730000000000004,33.78,33.83,33.87,33.910000000000004,33.97,19.01,18.43,18.21,17.990000000000002,17.78,17.59,17.39,17.21,16.830000000000002,N/A,N/A -2012,4,23,11,30,102090,100890,99720,63.27,0,12.19,13.290000000000001,13.55,13.68,13.76,13.82,13.84,13.86,13.86,37.32,37.49,37.6,37.68,37.77,37.85,37.92,37.99,38.12,18.41,17.81,17.580000000000002,17.36,17.150000000000002,16.95,16.75,16.56,16.18,N/A,N/A -2012,4,23,12,30,102140,100940,99770,63.38,0,11.41,12.4,12.63,12.74,12.81,12.85,12.870000000000001,12.88,12.88,36.42,36.57,36.67,36.77,36.85,36.92,37,37.07,37.2,18.01,17.400000000000002,17.16,16.94,16.73,16.53,16.330000000000002,16.14,15.75,N/A,N/A -2012,4,23,13,30,102180,100970,99800,62.34,0,10.4,11.25,11.44,11.540000000000001,11.6,11.64,11.66,11.67,11.67,36.52,36.62,36.68,36.730000000000004,36.78,36.83,36.87,36.910000000000004,36.980000000000004,17.67,17.07,16.830000000000002,16.61,16.4,16.2,15.99,15.8,15.41,N/A,N/A -2012,4,23,14,30,102230,101020,99850,60.44,0,9.4,10.1,10.26,10.34,10.39,10.42,10.43,10.44,10.43,35.93,36.09,36.17,36.25,36.32,36.38,36.44,36.5,36.61,17.54,16.95,16.72,16.5,16.29,16.09,15.88,15.69,15.3,N/A,N/A -2012,4,23,15,30,102240,101030,99860,59.51,0,7.94,8.47,8.59,8.65,8.68,8.700000000000001,8.700000000000001,8.71,8.700000000000001,35.27,35.43,35.54,35.63,35.71,35.78,35.86,35.93,36.06,17.53,16.97,16.75,16.53,16.32,16.12,15.92,15.72,15.33,N/A,N/A -2012,4,23,16,30,102230,101020,99850,57.76,0,6.13,6.51,6.6000000000000005,6.640000000000001,6.67,6.7,6.71,6.73,6.74,36.2,35.96,35.83,35.71,35.59,35.480000000000004,35.35,35.24,35,17.72,17.2,16.98,16.77,16.56,16.37,16.16,15.97,15.57,N/A,N/A -2012,4,23,17,30,102220,101010,99840,52.83,0,4.79,5.07,5.15,5.19,5.23,5.26,5.29,5.3100000000000005,5.3500000000000005,31.95,31.37,31,30.67,30.35,30.05,29.76,29.490000000000002,28.93,18.31,17.84,17.63,17.42,17.22,17.02,16.82,16.63,16.23,N/A,N/A -2012,4,23,18,30,102170,100970,99800,48.99,0,3.56,3.81,3.9,3.96,4.03,4.08,4.13,4.18,4.28,29.09,27.87,27.11,26.41,25.77,25.19,24.61,24.080000000000002,23.04,19.05,18.62,18.43,18.23,18.03,17.84,17.64,17.45,17.06,N/A,N/A -2012,4,23,19,30,102130,100930,99770,44.61,0,2.27,2.47,2.5500000000000003,2.63,2.69,2.7600000000000002,2.82,2.88,3,29.38,26.55,24.84,23.32,22.01,20.85,19.73,18.72,16.85,19.93,19.55,19.36,19.16,18.97,18.78,18.580000000000002,18.39,18.01,N/A,N/A -2012,4,23,20,30,102060,100870,99710,44.82,0,2.6,2.87,2.98,3.0700000000000003,3.15,3.22,3.29,3.34,3.45,339.36,339.19,339.27,339.40000000000003,339.53000000000003,339.66,339.82,339.97,340.31,20.73,20.38,20.2,20.01,19.81,19.63,19.43,19.25,18.86,N/A,N/A -2012,4,23,21,30,102000,100810,99660,46.96,0,3.94,4.2,4.26,4.3,4.33,4.36,4.38,4.4,4.43,326.94,328.29,329.08,329.82,330.48,331.08,331.68,332.21,333.28000000000003,21.05,20.7,20.52,20.32,20.12,19.94,19.73,19.55,19.16,N/A,N/A -2012,4,23,22,30,101930,100740,99590,46.96,0,4.67,5.0200000000000005,5.11,5.16,5.21,5.24,5.2700000000000005,5.29,5.33,335.40000000000003,335.71,335.91,336.09000000000003,336.27,336.44,336.61,336.77,337.15000000000003,21.61,21.28,21.1,20.900000000000002,20.71,20.53,20.32,20.14,19.75,N/A,N/A -2012,4,23,23,30,101880,100700,99550,48.230000000000004,0,5.63,6.07,6.16,6.21,6.24,6.26,6.2700000000000005,6.2700000000000005,6.28,336.52,336.71,336.84000000000003,336.98,337.1,337.23,337.37,337.49,337.8,21.97,21.66,21.48,21.29,21.1,20.91,20.71,20.53,20.14,N/A,N/A -2012,4,24,0,30,101860,100670,99520,49.03,0,5.83,6.3,6.41,6.46,6.5,6.53,6.55,6.5600000000000005,6.58,335.81,336.89,337.55,338.19,338.78000000000003,339.35,339.92,340.44,341.56,22.16,21.86,21.69,21.5,21.31,21.13,20.93,20.75,20.36,N/A,N/A -2012,4,24,1,30,101840,100660,99510,49.050000000000004,0,2.95,3.23,3.33,3.44,3.54,3.64,3.75,3.85,4.07,49.47,45.04,42.35,39.93,37.83,35.93,34.18,32.59,29.8,21.84,21.55,21.39,21.21,21.03,20.85,20.67,20.490000000000002,20.13,N/A,N/A -2012,4,24,2,30,101870,100680,99530,63.77,0,2.73,2.67,2.57,2.47,2.36,2.2600000000000002,2.16,2.07,1.92,130.78,128.07,126.11,123.79,121.13,118.42,114.74000000000001,111.24000000000001,102.06,20.78,20.44,20.26,20.07,19.88,19.7,19.51,19.330000000000002,18.96,N/A,N/A -2012,4,24,3,30,101870,100680,99530,56.75,0,2.73,2.85,2.87,2.88,2.89,2.9,2.91,2.92,2.95,91.73,88.5,86.49,84.54,82.75,81.11,79.44,77.91,74.81,21.04,20.71,20.53,20.35,20.16,19.98,19.78,19.6,19.22,N/A,N/A -2012,4,24,4,30,101840,100650,99500,51.660000000000004,0,2.9,3.06,3.09,3.11,3.12,3.13,3.13,3.13,3.13,73.43,72.08,71.34,70.72,70.19,69.74,69.34,68.99,68.38,21.19,20.85,20.68,20.48,20.29,20.1,19.91,19.72,19.330000000000002,N/A,N/A -2012,4,24,5,30,101830,100650,99490,50.730000000000004,0,2.81,2.92,2.93,2.92,2.91,2.9,2.88,2.87,2.83,68.1,68.45,68.61,68.75,68.88,68.97,69.06,69.13,69.22,21.150000000000002,20.81,20.63,20.43,20.240000000000002,20.05,19.85,19.67,19.28,N/A,N/A -2012,4,24,6,30,101850,100660,99510,51.56,0,2.31,2.37,2.36,2.35,2.33,2.31,2.29,2.27,2.23,91.46000000000001,91.52,91.5,91.48,91.46000000000001,91.44,91.4,91.36,91.29,21.080000000000002,20.740000000000002,20.56,20.37,20.17,19.98,19.79,19.6,19.21,N/A,N/A -2012,4,24,7,30,101850,100660,99510,53.76,0,2.23,2.31,2.31,2.31,2.3000000000000003,2.29,2.2800000000000002,2.27,2.25,109.78,109.35000000000001,109.05,108.74000000000001,108.42,108.13,107.78,107.46000000000001,106.7,21.03,20.68,20.5,20.31,20.11,19.92,19.72,19.54,19.14,N/A,N/A -2012,4,24,8,30,101850,100660,99500,54.93,0,2,2.04,2.0300000000000002,2.02,2,1.98,1.96,1.94,1.9000000000000001,128.27,129.02,129.42000000000002,129.81,130.19,130.54,130.92000000000002,131.27,132,20.93,20.59,20.41,20.21,20.01,19.830000000000002,19.62,19.44,19.05,N/A,N/A -2012,4,24,9,30,101860,100670,99520,58.06,0,2.27,2.35,2.36,2.36,2.35,2.35,2.34,2.33,2.32,161.92000000000002,162.17000000000002,162.21,162.25,162.29,162.33,162.36,162.39000000000001,162.48,20.88,20.53,20.35,20.14,19.95,19.76,19.56,19.37,18.98,N/A,N/A -2012,4,24,10,30,101860,100670,99520,59.67,0,2.2800000000000002,2.38,2.4,2.4,2.41,2.42,2.42,2.42,2.42,183.78,183.98,184.07,184.14000000000001,184.20000000000002,184.24,184.27,184.29,184.27,20.78,20.42,20.240000000000002,20.04,19.84,19.66,19.45,19.27,18.88,N/A,N/A -2012,4,24,11,30,101850,100660,99510,61.02,0,2.57,2.67,2.68,2.69,2.69,2.68,2.68,2.68,2.66,174.69,175.61,176.16,176.71,177.21,177.68,178.18,178.64000000000001,179.59,20.81,20.45,20.27,20.07,19.87,19.68,19.48,19.3,18.900000000000002,N/A,N/A -2012,4,24,12,30,101880,100690,99540,68.88,0,3.68,3.85,3.85,3.85,3.84,3.83,3.81,3.8000000000000003,3.77,196.27,195.64000000000001,195.19,194.75,194.32,193.91,193.48000000000002,193.08,192.24,20.7,20.330000000000002,20.14,19.94,19.740000000000002,19.55,19.35,19.17,18.77,N/A,N/A -2012,4,24,13,30,101890,100700,99550,69.46000000000001,0,4,4.19,4.21,4.22,4.21,4.21,4.19,4.18,4.15,184.94,185.55,185.94,186.28,186.6,186.88,187.17000000000002,187.43,187.95000000000002,20.7,20.32,20.13,19.93,19.73,19.55,19.34,19.150000000000002,18.76,N/A,N/A -2012,4,24,14,30,101930,100740,99580,67.3,0,3.69,3.9,3.94,3.96,3.98,4,4.01,4.0200000000000005,4.03,193.21,192.66,192.33,192.01,191.72,191.44,191.15,190.89000000000001,190.33,20.79,20.42,20.23,20.03,19.84,19.650000000000002,19.44,19.26,18.86,N/A,N/A -2012,4,24,15,30,101930,100750,99590,67.02,0,3.95,4.16,4.19,4.21,4.23,4.24,4.24,4.24,4.25,189.74,189.09,188.68,188.29,187.93,187.6,187.27,186.97,186.37,20.87,20.490000000000002,20.31,20.11,19.91,19.72,19.52,19.330000000000002,18.94,N/A,N/A -2012,4,24,16,30,101920,100740,99580,64.4,0,3.85,4.0600000000000005,4.09,4.11,4.12,4.13,4.13,4.14,4.14,179.04,179.32,179.53,179.75,179.95000000000002,180.14000000000001,180.35,180.54,180.94,20.95,20.580000000000002,20.39,20.19,19.990000000000002,19.81,19.6,19.42,19.03,N/A,N/A -2012,4,24,17,30,101900,100710,99560,63.85,0,4.78,5.04,5.08,5.08,5.08,5.08,5.07,5.05,5.03,171.97,172.77,173.21,173.61,173.98,174.33,174.68,174.99,175.65,21.06,20.68,20.490000000000002,20.29,20.09,19.91,19.7,19.51,19.12,N/A,N/A -2012,4,24,18,30,101870,100680,99530,64.43,0,4.45,4.7,4.75,4.78,4.79,4.8,4.8,4.8100000000000005,4.8100000000000005,181.54,181.6,181.53,181.42000000000002,181.31,181.19,181.05,180.91,180.6,21.14,20.77,20.580000000000002,20.38,20.18,19.990000000000002,19.79,19.61,19.21,N/A,N/A -2012,4,24,19,30,101830,100640,99500,70.73,0,5.9,6.29,6.37,6.41,6.42,6.43,6.44,6.44,6.43,181.53,181.92000000000002,182.11,182.3,182.47,182.62,182.77,182.92000000000002,183.21,21.080000000000002,20.69,20.51,20.31,20.11,19.92,19.72,19.53,19.14,N/A,N/A -2012,4,24,20,30,101780,100600,99450,71.2,0,5.88,6.2700000000000005,6.34,6.36,6.37,6.38,6.37,6.36,6.33,179.79,179.96,180.07,180.20000000000002,180.31,180.42000000000002,180.53,180.64000000000001,180.85,21.12,20.73,20.54,20.34,20.14,19.95,19.75,19.57,19.17,N/A,N/A -2012,4,24,21,30,101730,100550,99400,68.41,0,6.23,6.68,6.78,6.82,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,182.69,182.98,183.16,183.33,183.49,183.64000000000001,183.8,183.94,184.23,21.25,20.88,20.69,20.490000000000002,20.3,20.11,19.91,19.72,19.330000000000002,N/A,N/A -2012,4,24,22,30,101680,100500,99350,69.97,0,6.53,7.0200000000000005,7.13,7.18,7.22,7.24,7.26,7.2700000000000005,7.28,183.99,184.02,184.03,184.05,184.07,184.1,184.14000000000001,184.17000000000002,184.27,21.25,20.87,20.69,20.490000000000002,20.29,20.1,19.900000000000002,19.72,19.330000000000002,N/A,N/A -2012,4,24,23,30,101640,100460,99310,73.73,0,7.09,7.66,7.78,7.8500000000000005,7.9,7.930000000000001,7.94,7.96,7.96,184.74,185.04,185.18,185.3,185.4,185.48,185.55,185.61,185.72,21.3,20.92,20.740000000000002,20.53,20.34,20.150000000000002,19.94,19.76,19.36,N/A,N/A -2012,4,25,0,30,101600,100420,99270,72.01,0,7.21,7.8,7.930000000000001,8,8.05,8.08,8.1,8.11,8.120000000000001,185.22,185.16,185.11,185.04,184.98,184.91,184.84,184.77,184.63,21.400000000000002,21.03,20.84,20.64,20.44,20.25,20.05,19.87,19.48,N/A,N/A -2012,4,25,1,30,101570,100390,99240,70.32000000000001,0,7.59,8.24,8.38,8.45,8.49,8.52,8.540000000000001,8.55,8.55,186.75,186.6,186.53,186.46,186.41,186.36,186.31,186.27,186.20000000000002,21.5,21.13,20.95,20.75,20.55,20.37,20.16,19.98,19.59,N/A,N/A -2012,4,25,2,30,101570,100390,99240,75.34,0,8.040000000000001,8.75,8.91,9,9.05,9.09,9.1,9.120000000000001,9.120000000000001,188.25,188.24,188.26,188.29,188.32,188.34,188.38,188.42000000000002,188.49,21.5,21.12,20.93,20.73,20.53,20.35,20.14,19.96,19.56,N/A,N/A -2012,4,25,3,30,101540,100360,99220,70.2,0,7.9,8.61,8.77,8.86,8.92,8.96,8.99,9.02,9.05,186.85,186.81,186.82,186.84,186.87,186.89000000000001,186.92000000000002,186.95000000000002,187.03,21.650000000000002,21.29,21.11,20.92,20.72,20.53,20.330000000000002,20.150000000000002,19.77,N/A,N/A -2012,4,25,4,30,101520,100350,99200,71.18,0,8.67,9.450000000000001,9.63,9.73,9.790000000000001,9.84,9.870000000000001,9.89,9.92,189.6,189.83,189.92000000000002,189.99,190.06,190.12,190.19,190.25,190.36,21.69,21.330000000000002,21.150000000000002,20.95,20.75,20.57,20.37,20.18,19.8,N/A,N/A -2012,4,25,5,30,101500,100320,99180,78.93,0,9.02,9.85,10.03,10.120000000000001,10.17,10.200000000000001,10.21,10.21,10.19,188.22,188.20000000000002,188.26,188.33,188.4,188.48,188.56,188.64000000000001,188.81,21.63,21.26,21.080000000000002,20.88,20.68,20.490000000000002,20.29,20.11,19.72,N/A,N/A -2012,4,25,6,30,101520,100340,99200,75.27,0,9.42,10.31,10.53,10.64,10.72,10.76,10.790000000000001,10.81,10.83,192.93,193.09,193.16,193.22,193.26,193.3,193.34,193.38,193.46,21.85,21.51,21.330000000000002,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A -2012,4,25,7,30,101520,100340,99200,77.55,0,8.85,9.76,9.99,10.13,10.23,10.3,10.36,10.4,10.46,196.39000000000001,196.38,196.39000000000001,196.39000000000001,196.39000000000001,196.4,196.4,196.4,196.39000000000001,21.900000000000002,21.55,21.36,21.17,20.97,20.78,20.580000000000002,20.39,20,N/A,N/A -2012,4,25,8,30,101510,100330,99190,80.75,0,8.82,9.73,9.950000000000001,10.09,10.18,10.25,10.290000000000001,10.33,10.38,194.53,195.05,195.25,195.44,195.6,195.75,195.89000000000001,196.03,196.3,21.89,21.54,21.36,21.16,20.97,20.78,20.580000000000002,20.400000000000002,20.01,N/A,N/A -2012,4,25,9,30,101510,100330,99190,79.23,0,9.02,9.98,10.21,10.36,10.47,10.540000000000001,10.59,10.63,10.67,202.13,202.34,202.38,202.39000000000001,202.39000000000001,202.38,202.36,202.33,202.25,22.05,21.71,21.53,21.330000000000002,21.14,20.95,20.75,20.56,20.17,N/A,N/A -2012,4,25,10,30,101490,100320,99180,81.76,0,8.48,9.31,9.5,9.61,9.69,9.74,9.77,9.8,9.83,196.63,196.67000000000002,196.72,196.78,196.85,196.91,196.99,197.06,197.24,21.97,21.63,21.46,21.26,21.07,20.88,20.68,20.5,20.11,N/A,N/A -2012,4,25,11,30,101490,100310,99170,81.4,0,8.38,9.22,9.41,9.52,9.6,9.65,9.68,9.72,9.77,195,195.11,195.14000000000001,195.16,195.18,195.19,195.22,195.24,195.3,22.07,21.740000000000002,21.57,21.37,21.18,21,20.8,20.62,20.240000000000002,N/A,N/A -2012,4,25,12,30,101500,100320,99180,81.52,0,8.91,9.82,10.03,10.15,10.24,10.290000000000001,10.33,10.370000000000001,10.4,195.47,195.63,195.68,195.72,195.75,195.78,195.82,195.84,195.91,22.17,21.84,21.67,21.47,21.28,21.09,20.89,20.71,20.330000000000002,N/A,N/A -2012,4,25,13,30,101540,100370,99230,82.06,0,8.950000000000001,9.86,10.1,10.24,10.33,10.4,10.450000000000001,10.49,10.540000000000001,196.56,196.57,196.58,196.58,196.59,196.59,196.59,196.59,196.58,22.240000000000002,21.92,21.75,21.55,21.36,21.17,20.97,20.79,20.400000000000002,N/A,N/A -2012,4,25,14,30,101560,100390,99250,84.23,0,8.55,9.31,9.49,9.57,9.620000000000001,9.64,9.65,9.66,9.65,194.31,194.22,194.24,194.28,194.33,194.37,194.42000000000002,194.47,194.63,22.26,21.94,21.77,21.57,21.38,21.2,21.01,20.830000000000002,20.45,N/A,N/A -2012,4,25,15,30,101570,100390,99250,84.24,0,8.39,9.23,9.42,9.540000000000001,9.61,9.67,9.71,9.74,9.81,194.26,194.49,194.57,194.65,194.73000000000002,194.81,194.9,194.99,195.21,22.38,22.07,21.900000000000002,21.71,21.52,21.34,21.14,20.97,20.59,N/A,N/A -2012,4,25,16,30,101600,100420,99290,84.78,0,8.55,9.47,9.69,9.83,9.93,10,10.05,10.1,10.16,193.6,193.82,193.94,194.05,194.16,194.27,194.39000000000001,194.49,194.73000000000002,22.48,22.17,22,21.81,21.62,21.43,21.240000000000002,21.06,20.67,N/A,N/A -2012,4,25,17,30,101580,100400,99270,84.66,0,8.59,9.51,9.74,9.88,9.98,10.06,10.120000000000001,10.16,10.24,197.42000000000002,197.58,197.69,197.8,197.91,198.02,198.12,198.22,198.44,22.56,22.26,22.1,21.900000000000002,21.72,21.53,21.34,21.16,20.77,N/A,N/A -2012,4,25,18,30,101580,100400,99270,86.44,0,8.82,9.74,9.97,10.11,10.21,10.27,10.31,10.33,10.35,197.69,197.6,197.6,197.61,197.62,197.63,197.63,197.64000000000001,197.64000000000001,22.6,22.3,22.13,21.93,21.740000000000002,21.55,21.36,21.17,20.78,N/A,N/A -2012,4,25,19,30,101580,100410,99270,86.37,0,8.17,8.99,9.19,9.3,9.370000000000001,9.42,9.450000000000001,9.47,9.49,195.55,195.6,195.67000000000002,195.74,195.8,195.86,195.92000000000002,195.97,196.09,22.66,22.36,22.19,22,21.81,21.63,21.43,21.25,20.87,N/A,N/A -2012,4,25,20,30,101530,100360,99220,86.83,0,8.42,9.290000000000001,9.51,9.63,9.72,9.790000000000001,9.83,9.870000000000001,9.91,194.51,194.69,194.78,194.87,194.96,195.04,195.12,195.21,195.4,22.68,22.39,22.22,22.03,21.84,21.66,21.46,21.28,20.900000000000002,N/A,N/A -2012,4,25,21,30,101490,100320,99180,87.45,0,9.27,10.28,10.540000000000001,10.700000000000001,10.81,10.9,10.950000000000001,11,11.05,192.84,192.95000000000002,193.02,193.1,193.17000000000002,193.24,193.31,193.38,193.52,22.68,22.400000000000002,22.23,22.04,21.85,21.67,21.47,21.29,20.900000000000002,N/A,N/A -2012,4,25,22,30,101470,100300,99160,87.47,0,8.86,9.82,10.08,10.24,10.35,10.44,10.5,10.55,10.620000000000001,189.56,189.55,189.61,189.66,189.72,189.77,189.83,189.88,190,22.68,22.400000000000002,22.23,22.04,21.86,21.67,21.48,21.3,20.92,N/A,N/A -2012,4,25,23,30,101430,100260,99130,87.85000000000001,0,9.1,10.09,10.32,10.48,10.58,10.66,10.72,10.78,10.86,188.14000000000001,188.21,188.25,188.29,188.33,188.37,188.42000000000002,188.47,188.59,22.650000000000002,22.36,22.2,22.01,21.82,21.64,21.45,21.27,20.89,N/A,N/A -2012,4,26,0,30,101390,100220,99080,88.10000000000001,0,9.540000000000001,10.620000000000001,10.89,11.07,11.200000000000001,11.290000000000001,11.36,11.41,11.49,187.76,187.77,187.81,187.86,187.91,187.95000000000002,188.01,188.05,188.17000000000002,22.6,22.31,22.14,21.95,21.76,21.580000000000002,21.39,21.21,20.82,N/A,N/A -2012,4,26,1,30,101360,100190,99060,86.26,0,10,11.08,11.370000000000001,11.55,11.68,11.78,11.86,11.92,12.030000000000001,186.67000000000002,186.47,186.42000000000002,186.37,186.34,186.33,186.32,186.32,186.36,22.67,22.400000000000002,22.240000000000002,22.05,21.87,21.69,21.5,21.32,20.95,N/A,N/A -2012,4,26,2,30,101350,100180,99050,85.7,0,10.19,11.41,11.73,11.96,12.14,12.280000000000001,12.41,12.530000000000001,12.76,185.78,185.97,186.04,186.11,186.19,186.26,186.33,186.4,186.55,22.7,22.44,22.28,22.09,21.91,21.740000000000002,21.55,21.38,21.01,N/A,N/A -2012,4,26,3,30,101330,100160,99030,85.24,0,9.620000000000001,10.63,10.93,11.16,11.4,11.64,11.950000000000001,12.27,13.030000000000001,186.38,186.62,186.78,186.97,187.19,187.43,187.73,188.04,188.6,22.73,22.490000000000002,22.35,22.19,22.03,21.89,21.75,21.62,21.35,N/A,N/A -2012,4,26,4,30,101320,100150,99010,85.54,0,11.35,12.75,13.13,13.39,13.61,13.780000000000001,13.93,14.06,14.290000000000001,184.54,184.88,185.06,185.26,185.45000000000002,185.63,185.8,185.95000000000002,186.3,22.72,22.46,22.3,22.12,21.93,21.76,21.57,21.39,21.02,N/A,N/A -2012,4,26,5,30,101320,100150,99020,84.51,0,11.120000000000001,12.5,12.870000000000001,13.14,13.34,13.49,13.61,13.700000000000001,13.89,189.42000000000002,188.95000000000002,188.81,188.66,188.55,188.44,188.34,188.25,188.07,22.81,22.55,22.39,22.2,22.02,21.830000000000002,21.64,21.46,21.07,N/A,N/A -2012,4,26,6,30,101330,100160,99020,85.54,0,11.6,13.05,13.44,13.71,13.9,14.040000000000001,14.13,14.21,14.290000000000001,188.9,188.71,188.66,188.61,188.59,188.56,188.56,188.56,188.59,22.84,22.55,22.38,22.19,22,21.81,21.61,21.43,21.04,N/A,N/A -2012,4,26,7,30,101340,100170,99030,86.01,0,10.78,11.94,12.26,12.47,12.63,12.77,12.9,13.030000000000001,13.46,189.59,189.49,189.5,189.5,189.51,189.52,189.54,189.57,189.87,22.91,22.64,22.48,22.3,22.13,21.96,21.79,21.63,21.36,N/A,N/A -2012,4,26,8,30,101330,100160,99020,88.12,0,11.28,12.63,13.01,13.27,13.46,13.61,13.72,13.81,13.950000000000001,192.33,192.27,192.24,192.22,192.22,192.22,192.23000000000002,192.26,192.35,22.830000000000002,22.55,22.38,22.19,22,21.82,21.63,21.45,21.07,N/A,N/A -2012,4,26,9,30,101320,100160,99020,88.81,0,11.11,12.34,12.67,12.91,13.11,13.280000000000001,13.46,13.64,14.13,192,192.5,192.71,192.94,193.18,193.43,193.72,194.01,194.78,22.81,22.54,22.38,22.2,22.03,21.86,21.68,21.53,21.21,N/A,N/A -2012,4,26,10,30,101330,100160,99030,88.73,0,9.96,11.01,11.28,11.450000000000001,11.58,11.69,11.8,11.91,12.31,190.05,190.29,190.44,190.61,190.79,190.99,191.24,191.48000000000002,192.16,22.81,22.53,22.37,22.19,22.02,21.85,21.67,21.51,21.22,N/A,N/A -2012,4,26,11,30,101350,100180,99050,90.36,0,10.41,11.57,11.91,12.120000000000001,12.290000000000001,12.42,12.540000000000001,12.65,12.85,186.98,187.06,187.17000000000002,187.28,187.38,187.48,187.59,187.70000000000002,187.94,22.75,22.46,22.29,22.11,21.92,21.740000000000002,21.55,21.38,21.02,N/A,N/A -2012,4,26,12,30,101390,100220,99090,89.14,0,10.18,11.34,11.67,11.91,12.08,12.23,12.35,12.46,12.67,187.76,187.94,188.06,188.19,188.31,188.42000000000002,188.55,188.66,188.94,22.82,22.54,22.38,22.19,22.01,21.830000000000002,21.64,21.46,21.09,N/A,N/A -2012,4,26,13,30,101430,100260,99130,90.45,0,9.93,11.03,11.31,11.5,11.65,11.76,11.86,11.94,12.1,189.56,189.76,189.88,190,190.14000000000001,190.26,190.41,190.55,190.9,22.79,22.5,22.330000000000002,22.150000000000002,21.96,21.78,21.580000000000002,21.41,21.03,N/A,N/A -2012,4,26,14,30,101510,100340,99200,90,0,9.13,10.120000000000001,10.42,10.64,10.81,10.950000000000001,11.08,11.19,11.42,187.66,187.88,188.06,188.25,188.42000000000002,188.58,188.75,188.89000000000001,189.22,22.900000000000002,22.63,22.48,22.29,22.11,21.93,21.75,21.57,21.21,N/A,N/A -2012,4,26,15,30,101540,100370,99240,88.29,0,9.21,10.370000000000001,10.700000000000001,10.97,11.200000000000001,11.4,11.61,11.8,12.23,186.99,187.66,187.94,188.25,188.56,188.88,189.23,189.56,190.39000000000001,23.05,22.79,22.64,22.46,22.28,22.11,21.93,21.76,21.41,N/A,N/A -2012,4,26,16,30,101560,100390,99260,89.13,0,8.620000000000001,9.56,9.83,10.03,10.18,10.31,10.43,10.53,10.78,185.45000000000002,185.71,185.95000000000002,186.24,186.55,186.88,187.27,187.66,188.70000000000002,23.02,22.76,22.6,22.42,22.240000000000002,22.07,21.89,21.72,21.36,N/A,N/A -2012,4,26,17,30,101570,100400,99270,88.21000000000001,0,9.16,10.17,10.46,10.66,10.81,10.93,11.03,11.120000000000001,11.28,187.6,187.75,187.91,188.09,188.26,188.43,188.62,188.79,189.17000000000002,23.09,22.830000000000002,22.68,22.490000000000002,22.31,22.13,21.94,21.77,21.39,N/A,N/A -2012,4,26,18,30,101570,100400,99260,87.93,0,8.8,9.76,10.03,10.21,10.35,10.47,10.57,10.65,10.81,189.84,189.92000000000002,190.02,190.14000000000001,190.25,190.35,190.48,190.59,190.85,23.12,22.86,22.7,22.52,22.34,22.16,21.97,21.8,21.43,N/A,N/A -2012,4,26,19,30,101570,100400,99270,86.96000000000001,0,9.09,10.120000000000001,10.39,10.58,10.72,10.82,10.9,10.98,11.09,185.36,185.55,185.67000000000002,185.82,185.96,186.1,186.25,186.39000000000001,186.73,23.13,22.87,22.71,22.53,22.35,22.17,21.98,21.8,21.43,N/A,N/A -2012,4,26,20,30,101520,100350,99220,87.5,0,8.77,9.71,9.96,10.120000000000001,10.25,10.34,10.42,10.49,10.620000000000001,184.91,185,185.09,185.19,185.29,185.39000000000001,185.51,185.62,185.9,23.080000000000002,22.82,22.66,22.48,22.3,22.13,21.94,21.77,21.41,N/A,N/A -2012,4,26,21,30,101490,100320,99190,86.91,0,8.71,9.700000000000001,9.96,10.14,10.28,10.39,10.46,10.53,10.64,184.64000000000001,184.73,184.78,184.85,184.92000000000002,184.99,185.08,185.16,185.34,23.09,22.82,22.66,22.48,22.3,22.12,21.92,21.75,21.37,N/A,N/A -2012,4,26,22,30,101460,100290,99160,85.57000000000001,0,8.58,9.55,9.83,10.03,10.18,10.3,10.41,10.51,10.69,186.58,187.05,187.3,187.55,187.79,188.01,188.26,188.49,189,23.06,22.81,22.67,22.490000000000002,22.31,22.14,21.95,21.78,21.41,N/A,N/A -2012,4,26,23,30,101420,100250,99120,85.8,0,8.92,9.9,10.17,10.35,10.47,10.57,10.65,10.71,10.81,184.05,184.07,184.15,184.24,184.32,184.4,184.49,184.58,184.76,23,22.740000000000002,22.59,22.400000000000002,22.22,22.04,21.86,21.68,21.31,N/A,N/A -2012,4,27,0,30,101390,100220,99080,85.14,0,9.02,9.94,10.18,10.32,10.42,10.49,10.55,10.6,10.71,180.54,180.64000000000001,180.76,180.89000000000001,181.04,181.20000000000002,181.39000000000001,181.58,182.1,22.94,22.68,22.53,22.35,22.17,22,21.81,21.650000000000002,21.29,N/A,N/A -2012,4,27,1,30,101370,100200,99070,83.03,0,9.47,10.49,10.77,10.950000000000001,11.07,11.16,11.23,11.290000000000001,11.39,184.15,184.31,184.41,184.5,184.58,184.64000000000001,184.69,184.74,184.84,22.98,22.73,22.57,22.39,22.22,22.04,21.86,21.69,21.34,N/A,N/A -2012,4,27,2,30,101360,100190,99060,80.42,0,9.21,10.25,10.55,10.76,10.94,11.09,11.22,11.35,11.61,184.53,184.81,184.91,185,185.08,185.15,185.22,185.27,185.36,23.03,22.79,22.650000000000002,22.47,22.3,22.13,21.95,21.78,21.43,N/A,N/A -2012,4,27,3,30,101340,100170,99040,81.43,0,10.19,11.3,11.58,11.74,11.85,11.93,11.98,12.01,12.040000000000001,179.37,179.29,179.31,179.34,179.38,179.42000000000002,179.48,179.54,179.68,22.95,22.68,22.52,22.34,22.150000000000002,21.97,21.78,21.61,21.23,N/A,N/A -2012,4,27,4,30,101300,100130,99000,78.82000000000001,0,8.73,9.65,9.93,10.17,10.42,10.68,11.06,11.44,12.13,181.25,181.66,181.96,182.33,182.8,183.32,184.04,184.76,185.69,23.01,22.8,22.67,22.52,22.38,22.25,22.14,22.03,21.75,N/A,N/A -2012,4,27,5,30,101300,100130,99000,80.24,0,10.23,11.3,11.59,11.77,11.93,12.05,12.19,12.31,12.63,179.57,180.18,180.41,180.63,180.85,181.06,181.29,181.5,181.98,22.96,22.72,22.580000000000002,22.400000000000002,22.240000000000002,22.07,21.900000000000002,21.740000000000002,21.41,N/A,N/A -2012,4,27,6,30,101310,100140,99000,81.74,0,9.85,10.8,11.03,11.16,11.25,11.31,11.38,11.44,11.66,180.4,180.54,180.59,180.63,180.66,180.68,180.71,180.74,180.91,22.95,22.650000000000002,22.490000000000002,22.31,22.14,21.97,21.79,21.64,21.330000000000002,N/A,N/A -2012,4,27,7,30,101330,100160,99030,79.13,0,9.53,10.75,11.09,11.35,11.55,11.72,11.85,11.97,12.14,181.97,181.70000000000002,181.68,181.66,181.65,181.63,181.62,181.6,181.57,23.26,22.98,22.82,22.63,22.45,22.26,22.07,21.89,21.5,N/A,N/A -2012,4,27,8,30,101320,100150,99020,77.84,0,8.99,10.1,10.43,10.72,11,11.27,11.58,11.89,12.58,182.87,183.1,183.24,183.38,183.53,183.67000000000002,183.82,183.96,184.18,23.41,23.18,23.04,22.88,22.73,22.57,22.42,22.27,21.95,N/A,N/A -2012,4,27,9,30,101320,100160,99020,81.82000000000001,0,9.61,10.68,10.950000000000001,11.13,11.26,11.370000000000001,11.47,11.56,11.76,179.61,179.57,179.63,179.71,179.8,179.88,180,180.1,180.47,23.2,22.93,22.77,22.59,22.400000000000002,22.23,22.04,21.87,21.52,N/A,N/A -2012,4,27,10,30,101310,100150,99010,83.74,0,10.71,11.9,12.19,12.36,12.48,12.56,12.61,12.66,12.700000000000001,176.56,176.74,176.87,177.01,177.15,177.3,177.45000000000002,177.59,177.93,23.18,22.900000000000002,22.73,22.54,22.36,22.18,21.990000000000002,21.81,21.43,N/A,N/A -2012,4,27,11,30,101320,100160,99020,83.17,0,10.55,11.68,11.98,12.17,12.31,12.41,12.5,12.57,12.72,183.08,183.26,183.34,183.42000000000002,183.51,183.6,183.70000000000002,183.8,184.04,23.19,22.92,22.76,22.580000000000002,22.400000000000002,22.22,22.04,21.87,21.51,N/A,N/A -2012,4,27,12,30,101350,100180,99050,81.36,0,10.39,11.65,11.99,12.25,12.450000000000001,12.61,12.76,12.88,13.1,175.95000000000002,176.67000000000002,176.95000000000002,177.23,177.5,177.74,177.99,178.23,178.69,23.38,23.12,22.97,22.79,22.61,22.44,22.25,22.07,21.7,N/A,N/A -2012,4,27,13,30,101350,100190,99050,80.99,0,12.120000000000001,13.6,13.98,14.25,14.43,14.57,14.68,14.76,14.870000000000001,179.38,179.66,179.77,179.87,179.96,180.03,180.09,180.14000000000001,180.21,23.28,23,22.830000000000002,22.64,22.45,22.26,22.07,21.88,21.490000000000002,N/A,N/A -2012,4,27,14,30,101390,100230,99090,85.10000000000001,0,11.56,12.91,13.26,13.49,13.64,13.76,13.85,13.92,14,178.63,178.48,178.47,178.47,178.47,178.47,178.48,178.48,178.49,23.080000000000002,22.78,22.61,22.41,22.22,22.04,21.84,21.650000000000002,21.27,N/A,N/A -2012,4,27,15,30,101420,100260,99120,85.96000000000001,0,11.47,12.81,13.19,13.43,13.6,13.74,13.83,13.91,14.02,176.61,176.81,176.93,177.04,177.15,177.24,177.33,177.41,177.57,23.14,22.85,22.69,22.490000000000002,22.3,22.12,21.92,21.740000000000002,21.36,N/A,N/A -2012,4,27,16,30,101450,100290,99150,82.99,0,10.51,11.72,12.05,12.27,12.43,12.55,12.64,12.72,12.83,176.99,176.79,176.78,176.77,176.78,176.78,176.79,176.8,176.85,23.28,23,22.84,22.650000000000002,22.47,22.29,22.09,21.91,21.54,N/A,N/A -2012,4,27,17,30,101460,100290,99160,81.42,0,10.41,11.6,11.93,12.14,12.3,12.42,12.52,12.6,12.73,180.36,180.85,181.07,181.29,181.49,181.67000000000002,181.85,182.01,182.32,23.29,23.02,22.86,22.67,22.48,22.3,22.11,21.93,21.55,N/A,N/A -2012,4,27,18,30,101480,100310,99180,83.69,0,10.03,11.25,11.6,11.83,12,12.13,12.22,12.31,12.42,181.32,181.52,181.59,181.65,181.71,181.76,181.8,181.84,181.9,23.27,22.98,22.82,22.63,22.44,22.26,22.06,21.88,21.490000000000002,N/A,N/A -2012,4,27,19,30,101470,100300,99160,79.54,0,9.34,10.26,10.49,10.61,10.69,10.74,10.76,10.78,10.78,172.87,172.51,172.53,172.58,172.67000000000002,172.77,172.94,173.1,173.72,23.34,23.07,22.91,22.73,22.55,22.37,22.19,22.01,21.66,N/A,N/A -2012,4,27,20,30,101450,100280,99150,80.16,0,9.13,10.14,10.42,10.6,10.72,10.8,10.870000000000001,10.92,10.98,171.9,171.92000000000002,172.03,172.12,172.20000000000002,172.26,172.31,172.36,172.43,23.36,23.09,22.93,22.740000000000002,22.56,22.37,22.18,22,21.62,N/A,N/A -2012,4,27,21,30,101410,100240,99110,79.38,0,9.19,10.25,10.540000000000001,10.73,10.870000000000001,10.98,11.06,11.13,11.22,175.06,175.29,175.4,175.49,175.57,175.64000000000001,175.70000000000002,175.76,175.87,23.37,23.11,22.95,22.76,22.580000000000002,22.400000000000002,22.2,22.02,21.64,N/A,N/A -2012,4,27,22,30,101360,100200,99060,78.2,0,8.99,9.97,10.23,10.41,10.540000000000001,10.64,10.73,10.8,10.91,171.1,171.49,171.68,171.88,172.08,172.28,172.49,172.68,173.09,23.38,23.13,22.97,22.78,22.6,22.42,22.23,22.05,21.68,N/A,N/A -2012,4,27,23,30,101320,100150,99020,76.83,0,9.15,10.17,10.43,10.6,10.72,10.82,10.89,10.950000000000001,11.040000000000001,167.73,167.96,168.09,168.22,168.34,168.46,168.58,168.69,168.93,23.35,23.09,22.94,22.75,22.57,22.39,22.2,22.02,21.650000000000002,N/A,N/A -2012,4,28,0,30,101280,100110,98980,76.81,0,9.32,10.290000000000001,10.55,10.72,10.86,10.96,11.06,11.14,11.32,170.93,171.36,171.6,171.84,172.07,172.31,172.56,172.79,173.32,23.330000000000002,23.080000000000002,22.93,22.76,22.59,22.41,22.23,22.07,21.72,N/A,N/A -2012,4,28,1,30,101260,100090,98960,75.26,0,10.35,11.51,11.83,12.040000000000001,12.19,12.3,12.39,12.47,12.59,169.66,169.85,169.92000000000002,169.99,170.04,170.07,170.11,170.14000000000001,170.19,23.330000000000002,23.080000000000002,22.92,22.73,22.55,22.37,22.18,22,21.63,N/A,N/A -2012,4,28,2,30,101270,100100,98970,76.36,0,9.64,10.72,11.03,11.24,11.4,11.53,11.63,11.73,11.9,168.59,168.45000000000002,168.39000000000001,168.33,168.29,168.26,168.24,168.23,168.24,23.29,23.05,22.900000000000002,22.72,22.54,22.37,22.18,22.01,21.650000000000002,N/A,N/A -2012,4,28,3,30,101250,100080,98940,78.42,0,10.76,12.02,12.35,12.57,12.74,12.86,12.96,13.05,13.18,169.88,170.41,170.57,170.71,170.82,170.92000000000002,171,171.08,171.20000000000002,23.150000000000002,22.87,22.7,22.51,22.330000000000002,22.150000000000002,21.95,21.77,21.39,N/A,N/A -2012,4,28,4,30,101220,100050,98920,77.28,0,10.1,11.35,11.69,11.94,12.120000000000001,12.26,12.38,12.49,12.66,167.27,167.69,167.88,168.05,168.21,168.35,168.49,168.62,168.87,23.3,23.03,22.87,22.69,22.5,22.32,22.13,21.95,21.57,N/A,N/A -2012,4,28,5,30,101200,100030,98900,83.43,0,11.35,12.68,13.030000000000001,13.25,13.41,13.530000000000001,13.61,13.68,13.77,166.91,167.02,167.09,167.16,167.22,167.29,167.35,167.41,167.53,23.02,22.71,22.54,22.35,22.150000000000002,21.97,21.77,21.59,21.2,N/A,N/A -2012,4,28,6,30,101230,100060,98930,82.91,0,12.200000000000001,13.59,13.96,14.17,14.31,14.41,14.47,14.52,14.56,164.69,165.34,165.61,165.85,166.06,166.25,166.43,166.59,166.88,23.1,22.78,22.61,22.41,22.22,22.04,21.84,21.650000000000002,21.27,N/A,N/A -2012,4,28,7,30,101220,100050,98920,84.42,0,11.19,12.39,12.68,12.85,12.97,13.05,13.1,13.15,13.21,164.45000000000002,164.27,164.27,164.27,164.3,164.33,164.38,164.44,164.6,23.16,22.84,22.67,22.47,22.29,22.1,21.91,21.73,21.36,N/A,N/A -2012,4,28,8,30,101230,100070,98940,86.59,0,11.14,12.44,12.780000000000001,13.01,13.19,13.32,13.42,13.5,13.620000000000001,171.51,171.22,171.16,171.14000000000001,171.14000000000001,171.16,171.19,171.23,171.35,23.25,22.93,22.76,22.56,22.37,22.18,21.98,21.8,21.41,N/A,N/A -2012,4,28,9,30,101240,100070,98940,88.71000000000001,0,9.77,10.790000000000001,11.06,11.22,11.33,11.41,11.47,11.53,11.6,170.05,170.21,170.36,170.51,170.65,170.79,170.94,171.07,171.37,23.29,22.98,22.81,22.61,22.42,22.240000000000002,22.04,21.86,21.47,N/A,N/A -2012,4,28,10,30,101240,100080,98950,89.82000000000001,0,10.34,11.43,11.72,11.89,12.01,12.09,12.15,12.200000000000001,12.25,164.79,164.89000000000001,165.01,165.15,165.28,165.42000000000002,165.57,165.72,166.06,23.19,22.87,22.7,22.5,22.31,22.12,21.93,21.740000000000002,21.36,N/A,N/A -2012,4,28,11,30,101260,100090,98960,89.34,0,10.3,11.4,11.700000000000001,11.9,12.040000000000001,12.14,12.23,12.3,12.41,169.92000000000002,170.14000000000001,170.23,170.34,170.45000000000002,170.56,170.69,170.82,171.14000000000001,23.3,22.990000000000002,22.830000000000002,22.64,22.45,22.26,22.080000000000002,21.900000000000002,21.52,N/A,N/A -2012,4,28,12,30,101280,100120,98990,88.54,0,9.370000000000001,10.39,10.64,10.790000000000001,10.9,10.98,11.040000000000001,11.08,11.17,171.62,172.07,172.24,172.41,172.56,172.69,172.84,172.98,173.29,23.35,23.06,22.89,22.7,22.51,22.330000000000002,22.14,21.96,21.59,N/A,N/A -2012,4,28,13,30,101310,100150,99020,88.37,0,9.040000000000001,9.97,10.200000000000001,10.33,10.42,10.48,10.51,10.53,10.55,168.71,168.99,169.17000000000002,169.35,169.5,169.65,169.79,169.93,170.21,23.52,23.23,23.06,22.87,22.69,22.51,22.31,22.14,21.76,N/A,N/A -2012,4,28,14,30,101370,100200,99070,87.76,0,8.97,9.870000000000001,10.09,10.21,10.28,10.33,10.370000000000001,10.39,10.42,159.95000000000002,159.76,159.81,159.85,159.9,159.95000000000002,160.02,160.09,160.26,23.31,23,22.830000000000002,22.64,22.45,22.26,22.07,21.89,21.51,N/A,N/A -2012,4,28,15,30,101400,100240,99110,87.7,0,9.040000000000001,9.98,10.200000000000001,10.34,10.43,10.5,10.55,10.58,10.64,160,160.23,160.39000000000001,160.56,160.72,160.88,161.05,161.20000000000002,161.55,23.36,23.05,22.88,22.69,22.5,22.32,22.12,21.94,21.56,N/A,N/A -2012,4,28,16,30,101420,100250,99120,86.48,0,8.63,9.52,9.74,9.870000000000001,9.96,10.03,10.08,10.13,10.21,158,158.42000000000002,158.62,158.82,159,159.17000000000002,159.36,159.54,159.93,23.32,23.01,22.84,22.650000000000002,22.46,22.28,22.080000000000002,21.900000000000002,21.52,N/A,N/A -2012,4,28,17,30,101440,100280,99140,83.8,0,8.35,9.23,9.44,9.57,9.67,9.73,9.78,9.81,9.86,156.16,156.09,156.09,156.09,156.09,156.1,156.11,156.12,156.15,23.490000000000002,23.18,23.02,22.82,22.63,22.44,22.25,22.06,21.68,N/A,N/A -2012,4,28,18,30,101450,100280,99150,84.19,0,8.36,9.21,9.42,9.540000000000001,9.63,9.69,9.73,9.76,9.8,149.24,149.61,149.81,150,150.17000000000002,150.33,150.48,150.63,150.92000000000002,23.44,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.01,21.63,N/A,N/A -2012,4,28,19,30,101450,100280,99150,81.41,0,7.98,8.82,9.03,9.16,9.26,9.33,9.38,9.43,9.49,148.47,148.67000000000002,148.79,148.9,149.01,149.1,149.19,149.28,149.45000000000002,23.56,23.27,23.1,22.91,22.72,22.54,22.34,22.150000000000002,21.77,N/A,N/A -2012,4,28,20,30,101430,100260,99130,82.49,0,7.76,8.6,8.82,8.97,9.07,9.15,9.22,9.27,9.36,147.44,147.83,148.02,148.19,148.35,148.48,148.62,148.74,148.98,23.62,23.330000000000002,23.17,22.98,22.79,22.61,22.41,22.23,21.85,N/A,N/A -2012,4,28,21,30,101400,100230,99100,82,0,7.71,8.55,8.77,8.92,9.03,9.120000000000001,9.19,9.25,9.34,149.14000000000001,149.44,149.62,149.8,149.96,150.1,150.24,150.37,150.64000000000001,23.7,23.42,23.26,23.080000000000002,22.89,22.71,22.51,22.34,21.96,N/A,N/A -2012,4,28,22,30,101360,100200,99070,85.89,0,8.16,8.98,9.18,9.31,9.39,9.450000000000001,9.49,9.52,9.56,144.4,144.78,144.98,145.18,145.36,145.53,145.71,145.87,146.22,23.55,23.27,23.11,22.92,22.73,22.55,22.36,22.18,21.79,N/A,N/A -2012,4,28,23,30,101340,100180,99050,88.16,0,7.57,8.31,8.5,8.61,8.69,8.74,8.78,8.82,8.870000000000001,140.33,140.59,140.73,140.9,141.07,141.24,141.44,141.63,142.12,23.5,23.21,23.05,22.86,22.67,22.490000000000002,22.3,22.12,21.740000000000002,N/A,N/A -2012,4,29,0,30,101340,100180,99050,88.87,0,6.91,7.62,7.83,7.99,8.13,8.27,8.44,8.620000000000001,9.16,145.77,146.1,146.29,146.53,146.8,147.08,147.45000000000002,147.81,148.8,23.53,23.27,23.12,22.94,22.77,22.6,22.43,22.26,21.95,N/A,N/A -2012,4,29,1,30,101340,100170,99040,91.09,0,7.7700000000000005,8.61,8.82,8.97,9.07,9.16,9.23,9.28,9.39,146.41,146.88,147.11,147.35,147.6,147.85,148.12,148.37,148.99,23.54,23.25,23.09,22.900000000000002,22.71,22.53,22.34,22.16,21.78,N/A,N/A -2012,4,29,2,30,101350,100190,99060,91.37,0,7.07,7.8,7.98,8.09,8.17,8.23,8.28,8.32,8.39,143.36,143.46,143.55,143.64000000000001,143.72,143.8,143.89000000000001,143.97,144.17000000000002,23.44,23.14,22.97,22.78,22.59,22.41,22.21,22.03,21.650000000000002,N/A,N/A -2012,4,29,3,30,101370,100200,99080,93.08,0,8.06,8.71,8.84,8.88,8.89,8.89,8.92,8.950000000000001,9.13,137.76,138.22,138.56,139.01,139.56,140.18,141.11,142.08,144.54,23.38,23.09,22.93,22.75,22.580000000000002,22.42,22.26,22.12,21.85,N/A,N/A -2012,4,29,4,30,101350,100190,99060,93.04,0,7.5600000000000005,8.34,8.55,8.700000000000001,8.82,8.93,9.05,9.16,9.52,143.54,143.86,144.09,144.35,144.64000000000001,144.94,145.33,145.71,146.86,23.52,23.23,23.07,22.88,22.7,22.52,22.330000000000002,22.16,21.81,N/A,N/A -2012,4,29,5,30,101350,100180,99050,91.85000000000001,0,7.95,8.89,9.19,9.46,9.74,10.02,10.35,10.69,11,148.64000000000001,148.84,149.02,149.24,149.49,149.77,150.15,150.53,150.9,23.580000000000002,23.32,23.16,22.990000000000002,22.82,22.66,22.48,22.330000000000002,21.97,N/A,N/A -2012,4,29,6,30,101360,100200,99070,92.17,0,8.81,9.77,10.03,10.200000000000001,10.34,10.46,10.57,10.67,10.93,145.99,146.06,146.12,146.19,146.26,146.33,146.4,146.47,146.66,23.61,23.32,23.16,22.97,22.79,22.6,22.41,22.240000000000002,21.87,N/A,N/A -2012,4,29,7,30,101400,100230,99110,92.54,0,8.6,9.56,9.82,9.99,10.13,10.23,10.32,10.39,10.52,145.78,145.91,146.01,146.12,146.23,146.34,146.46,146.57,146.81,23.56,23.27,23.1,22.91,22.73,22.54,22.35,22.17,21.79,N/A,N/A -2012,4,29,8,30,101390,100230,99100,92.93,0,8.32,9.200000000000001,9.41,9.56,9.67,9.75,9.82,9.89,10.040000000000001,149.72,149.67000000000002,149.70000000000002,149.73,149.76,149.79,149.82,149.85,149.9,23.490000000000002,23.19,23.02,22.830000000000002,22.64,22.46,22.27,22.09,21.72,N/A,N/A -2012,4,29,9,30,101420,100260,99130,87.4,0,8.96,9.93,10.18,10.33,10.44,10.51,10.56,10.61,10.66,151.25,150.85,150.77,150.72,150.68,150.66,150.66,150.67000000000002,150.73,23.71,23.42,23.25,23.06,22.87,22.68,22.48,22.3,21.91,N/A,N/A -2012,4,29,10,30,101430,100260,99130,88,0,8.45,9.44,9.700000000000001,9.86,9.98,10.06,10.11,10.15,10.16,145.95000000000002,146,146.07,146.14000000000001,146.19,146.23,146.25,146.27,146.26,23.6,23.31,23.150000000000002,22.95,22.77,22.580000000000002,22.39,22.21,21.82,N/A,N/A -2012,4,29,11,30,101430,100260,99130,86.26,0,8.34,9.290000000000001,9.56,9.76,9.94,10.11,10.290000000000001,10.46,10.92,144.79,145.13,145.37,145.64000000000001,145.92000000000002,146.21,146.52,146.83,147.58,23.64,23.38,23.22,23.04,22.87,22.69,22.51,22.35,22,N/A,N/A -2012,4,29,12,30,101460,100290,99160,87.18,0,8.38,9.13,9.31,9.44,9.56,9.67,9.84,10.03,10.76,143.61,143.54,143.58,143.68,143.83,144.02,144.35,144.72,146.04,23.650000000000002,23.38,23.240000000000002,23.06,22.900000000000002,22.740000000000002,22.59,22.45,22.21,N/A,N/A -2012,4,29,13,30,101490,100320,99190,88.77,0,9.09,10.08,10.33,10.5,10.64,10.74,10.83,10.92,11.11,142.4,142.78,143.02,143.29,143.55,143.8,144.08,144.36,145.02,23.580000000000002,23.29,23.13,22.94,22.75,22.57,22.37,22.2,21.830000000000002,N/A,N/A -2012,4,29,14,30,101570,100400,99270,90.77,0,7.86,8.63,8.82,8.94,9.02,9.09,9.15,9.200000000000001,9.33,136.16,136.43,136.62,136.84,137.06,137.28,137.53,137.77,138.39000000000001,23.57,23.28,23.12,22.93,22.740000000000002,22.56,22.37,22.19,21.830000000000002,N/A,N/A -2012,4,29,15,30,101620,100450,99320,89.59,0,8.23,9.1,9.32,9.47,9.57,9.65,9.71,9.77,9.88,136.08,136.24,136.34,136.44,136.53,136.62,136.72,136.82,137.05,23.66,23.37,23.2,23.01,22.830000000000002,22.64,22.45,22.27,21.900000000000002,N/A,N/A -2012,4,29,16,30,101640,100470,99340,90.14,0,7.67,8.44,8.63,8.75,8.83,8.89,8.94,8.98,9.06,140.49,140.62,140.68,140.76,140.84,140.94,141.04,141.15,141.43,23.68,23.39,23.22,23.03,22.84,22.66,22.46,22.28,21.91,N/A,N/A -2012,4,29,17,30,101660,100490,99360,91.37,0,7.44,8.18,8.36,8.47,8.540000000000001,8.59,8.620000000000001,8.65,8.69,131.69,131.86,131.99,132.12,132.25,132.38,132.52,132.65,132.97,23.7,23.39,23.22,23.02,22.84,22.650000000000002,22.46,22.27,21.900000000000002,N/A,N/A -2012,4,29,18,30,101660,100490,99360,91.62,0,7.1000000000000005,7.75,7.91,8,8.07,8.11,8.15,8.17,8.23,128.75,129.04,129.25,129.46,129.66,129.86,130.09,130.31,130.86,23.71,23.400000000000002,23.240000000000002,23.04,22.86,22.67,22.48,22.3,21.93,N/A,N/A -2012,4,29,19,30,101650,100480,99350,92.10000000000001,0,7.25,7.930000000000001,8.08,8.17,8.22,8.26,8.290000000000001,8.32,8.370000000000001,125.47,125.86,126.10000000000001,126.39,126.68,126.98,127.35000000000001,127.71000000000001,128.71,23.740000000000002,23.44,23.27,23.080000000000002,22.900000000000002,22.71,22.52,22.34,21.97,N/A,N/A -2012,4,29,20,30,101620,100460,99330,93.17,0,7.45,8.16,8.33,8.43,8.49,8.53,8.56,8.58,8.620000000000001,122.45,122.63,122.78,122.95,123.12,123.29,123.5,123.7,124.23,23.73,23.43,23.26,23.07,22.88,22.7,22.51,22.330000000000002,21.95,N/A,N/A -2012,4,29,21,30,101600,100440,99310,94.17,0,7.44,8.17,8.35,8.45,8.53,8.59,8.64,8.69,8.81,118.32000000000001,118.62,118.83,119.06,119.31,119.56,119.88,120.2,121.18,23.71,23.42,23.26,23.06,22.88,22.69,22.51,22.330000000000002,21.96,N/A,N/A -2012,4,29,22,30,101580,100420,99290,95.59,0,7.38,8.1,8.28,8.4,8.5,8.59,8.72,8.85,9.540000000000001,116.35000000000001,116.72,116.97,117.31,117.71000000000001,118.16,118.85000000000001,119.57000000000001,122.95,23.68,23.39,23.23,23.04,22.86,22.68,22.490000000000002,22.32,22,N/A,N/A -2012,4,29,23,30,101560,100390,99270,96.11,0,6.86,7.67,8,8.41,8.64,8.72,8.91,9.120000000000001,9.5,118.99000000000001,119.82000000000001,120.55,121.77,122.52,122.93,124.08,125.43,127.99000000000001,23.7,23.43,23.28,23.11,22.94,22.76,22.59,22.44,22.11,N/A,N/A -2012,4,30,0,30,101550,100380,99260,95.95,0,7.11,8.03,8.32,8.57,8.77,8.94,9.1,9.24,9.48,121.83,122.03,122.23,122.49000000000001,122.79,123.11,123.56,124.01,125.45,23.81,23.56,23.42,23.25,23.080000000000002,22.92,22.76,22.61,22.3,N/A,N/A -2012,4,30,1,30,101550,100380,99250,94.33,0,8.13,9.15,9.48,9.77,10,10.21,10.41,10.59,10.950000000000001,132.32,132.74,133.05,133.43,133.78,134.11,134.47,134.8,135.58,23.85,23.61,23.46,23.29,23.12,22.95,22.78,22.62,22.29,N/A,N/A -2012,4,30,2,30,101570,100400,99270,95.32000000000001,0,7.38,8.33,8.66,8.94,9.19,9.42,9.64,9.86,10.3,130.77,131.27,131.59,131.94,132.29,132.65,133.07,133.48,134.47,23.79,23.53,23.38,23.2,23.03,22.85,22.68,22.51,22.17,N/A,N/A -2012,4,30,3,30,101590,100420,99290,94.16,0,7.67,8.99,9.52,9.98,10.36,10.69,10.98,11.24,11.66,137.99,139.56,140.39000000000001,141.11,141.72,142.27,142.73,143.13,143.65,23.830000000000002,23.57,23.44,23.29,23.13,22.98,22.81,22.650000000000002,22.31,N/A,N/A -2012,4,30,4,30,101570,100410,99280,94.42,0,7.3,8.52,8.950000000000001,9.15,9.38,9.66,9.9,10.120000000000001,10.52,144.1,144.86,145.41,145.99,146.37,146.62,146.79,146.93,146.92000000000002,23.82,23.55,23.400000000000002,23.2,23.03,22.86,22.69,22.53,22.22,N/A,N/A -2012,4,30,5,30,101580,100410,99280,94.29,0,6.96,7.98,8.36,8.700000000000001,8.99,9.25,9.49,9.71,10.11,142.49,142.99,143.32,143.67000000000002,143.97,144.24,144.5,144.74,145.13,23.79,23.54,23.400000000000002,23.23,23.07,22.91,22.73,22.57,22.22,N/A,N/A -2012,4,30,6,30,101590,100420,99300,93.41,0,7.61,8.56,8.88,9.15,9.38,9.57,9.76,9.93,10.28,144.81,145.07,145.27,145.47,145.66,145.84,146.04,146.23,146.70000000000002,23.81,23.56,23.400000000000002,23.22,23.04,22.86,22.68,22.51,22.150000000000002,N/A,N/A -2012,4,30,7,30,101610,100440,99310,91.43,0,7.65,8.66,9.01,9.28,9.49,9.66,9.8,9.92,10.14,159.42000000000002,159.47,159.47,159.47,159.47,159.46,159.44,159.43,159.34,23.86,23.62,23.48,23.31,23.150000000000002,22.98,22.82,22.66,22.34,N/A,N/A -2012,4,30,8,30,101590,100420,99290,92.79,0,7.1000000000000005,8.07,8.43,8.75,8.98,9.16,9.38,9.59,9.88,161.89000000000001,162.21,162.45000000000002,162.81,162.97,162.98,162.95000000000002,162.89000000000001,162.05,23.740000000000002,23.490000000000002,23.34,23.16,22.990000000000002,22.830000000000002,22.67,22.53,22.22,N/A,N/A -2012,4,30,9,30,101590,100420,99290,94.62,0,6.46,7.07,7.25,7.43,7.58,7.73,7.86,7.99,8.26,152.51,152.9,153.21,153.75,154.29,154.86,155.79,156.78,159.88,23.59,23.31,23.16,22.98,22.8,22.63,22.47,22.31,22.06,N/A,N/A -2012,4,30,10,30,101600,100430,99300,93.58,0,6.5,7.22,7.46,7.68,7.91,8.13,8.33,8.51,8.8,145.88,146.23,146.51,146.9,147.33,147.82,148.28,148.70000000000002,149.95000000000002,23.7,23.43,23.27,23.09,22.92,22.75,22.57,22.400000000000002,22.07,N/A,N/A -2012,4,30,11,30,101640,100470,99340,94.11,0,6.2700000000000005,7.03,7.28,7.5,7.69,7.87,8.07,8.25,8.700000000000001,145.20000000000002,145.25,145.4,145.64000000000001,145.96,146.33,146.82,147.31,148.61,23.64,23.37,23.21,23.02,22.84,22.66,22.47,22.3,21.93,N/A,N/A -2012,4,30,12,30,101650,100490,99360,90.08,0,7.5,8.66,9.05,9.22,9.450000000000001,9.700000000000001,9.76,9.76,9.69,150.33,152.3,153.41,154.34,155.84,157.76,159.04,160.03,160.1,23.8,23.61,23.5,23.38,23.31,23.27,23.150000000000002,23.02,22.67,N/A,N/A -2012,4,30,13,30,101710,100540,99410,93.60000000000001,0,6.59,7.15,7.29,7.38,7.46,7.54,7.67,7.79,8.13,144.1,144.23,144.39000000000001,144.61,144.88,145.18,145.70000000000002,146.24,148.63,23.38,23.080000000000002,22.92,22.73,22.55,22.38,22.21,22.05,21.76,N/A,N/A -2012,4,30,14,30,101760,100590,99460,93.53,0,6.03,6.5600000000000005,6.69,6.76,6.82,6.87,6.93,6.99,7.34,149.11,149.47,149.69,149.89000000000001,150.08,150.26,150.53,150.8,152.01,23.51,23.21,23.05,22.86,22.68,22.5,22.31,22.14,21.81,N/A,N/A -2012,4,30,15,30,101800,100630,99500,93.76,0,5.28,5.71,5.83,5.9,5.97,6.04,6.16,6.3,6.890000000000001,150.74,150.93,150.91,150.87,150.81,150.74,150.67000000000002,150.61,150.59,23.57,23.27,23.1,22.91,22.73,22.55,22.37,22.21,21.95,N/A,N/A -2012,4,30,16,30,101860,100690,99550,92.35000000000001,0,5.62,6.04,6.12,6.15,6.16,6.17,6.18,6.19,6.3100000000000005,131.58,132.16,132.59,133.1,133.66,134.28,135.11,135.94,139.14000000000001,23.67,23.36,23.19,23,22.82,22.64,22.45,22.28,21.94,N/A,N/A -2012,4,30,17,30,101840,100670,99540,91.4,0,5.26,5.66,5.74,5.78,5.8,5.8100000000000005,5.82,5.82,5.84,138.17000000000002,138.70000000000002,139.08,139.51,139.96,140.43,141.03,141.62,143.47,23.79,23.48,23.31,23.12,22.93,22.75,22.56,22.38,22.03,N/A,N/A -2012,4,30,18,30,101820,100650,99520,91.02,0,4.47,4.7700000000000005,4.83,4.86,4.87,4.88,4.89,4.89,4.91,123.29,123.81,124.17,124.57000000000001,124.97,125.37,125.86,126.32000000000001,127.58,23.77,23.45,23.27,23.080000000000002,22.89,22.71,22.52,22.34,21.97,N/A,N/A -2012,4,30,19,30,101780,100610,99480,91.62,0,6.390000000000001,6.91,7.0200000000000005,7.07,7.09,7.1000000000000005,7.1000000000000005,7.09,7.07,123.62,123.95,124.15,124.38000000000001,124.61,124.83,125.09,125.35000000000001,126.04,23.740000000000002,23.41,23.240000000000002,23.04,22.85,22.66,22.47,22.29,21.91,N/A,N/A -2012,4,30,20,30,101710,100540,99410,88.68,0,7.24,7.890000000000001,8.040000000000001,8.11,8.15,8.19,8.21,8.23,8.290000000000001,130.14000000000001,130.37,130.49,130.65,130.81,130.99,131.21,131.43,132.09,23.79,23.5,23.34,23.150000000000002,22.97,22.79,22.6,22.43,22.080000000000002,N/A,N/A -2012,4,30,21,30,101660,100490,99350,90.21000000000001,0,7.62,8.33,8.47,8.55,8.58,8.59,8.58,8.57,8.51,128.45,128.78,128.99,129.2,129.41,129.6,129.82,130.03,130.52,23.62,23.32,23.16,22.97,22.78,22.59,22.400000000000002,22.22,21.84,N/A,N/A -2012,4,30,22,30,101620,100450,99320,91.02,0,6.55,7.16,7.3100000000000005,7.390000000000001,7.45,7.48,7.5,7.51,7.53,131.58,131.7,131.78,131.87,131.98,132.1,132.25,132.39000000000001,132.76,23.54,23.240000000000002,23.080000000000002,22.89,22.7,22.51,22.32,22.14,21.76,N/A,N/A -2012,4,30,23,30,101580,100420,99280,90.87,0,5.79,6.32,6.44,6.51,6.5600000000000005,6.59,6.63,6.65,6.74,133.34,133.54,133.65,133.8,133.95,134.13,134.34,134.57,135.28,23.5,23.21,23.05,22.86,22.67,22.490000000000002,22.3,22.12,21.75,N/A,N/A -2012,5,1,0,30,101530,100370,99240,91.94,0,5.66,6.140000000000001,6.25,6.3100000000000005,6.3500000000000005,6.38,6.41,6.44,6.62,140.88,140.91,140.99,141.11,141.23,141.38,141.58,141.79,142.64000000000001,23.45,23.150000000000002,22.990000000000002,22.8,22.61,22.43,22.240000000000002,22.06,21.72,N/A,N/A -2012,5,1,1,30,101500,100330,99200,92.59,0,5.69,6.19,6.3100000000000005,6.41,6.53,6.66,6.94,7.26,7.99,136.8,137.01,137.1,137.22,137.35,137.52,137.72,137.92000000000002,138.82,23.46,23.17,23.01,22.830000000000002,22.66,22.5,22.35,22.22,21.990000000000002,N/A,N/A -2012,5,1,2,30,101530,100360,99230,94.15,0,7.0200000000000005,7.68,7.84,7.95,8.03,8.1,8.17,8.24,8.45,140.79,141.04,141.12,141.23,141.34,141.48,141.66,141.86,142.52,23.41,23.11,22.95,22.76,22.57,22.39,22.2,22.03,21.67,N/A,N/A -2012,5,1,3,30,101540,100380,99240,93.01,0,6.72,7.32,7.47,7.5600000000000005,7.63,7.69,7.75,7.82,8.09,150.86,151.04,151.11,151.18,151.24,151.3,151.39000000000001,151.47,151.79,23.37,23.07,22.900000000000002,22.71,22.52,22.34,22.150000000000002,21.97,21.61,N/A,N/A -2012,5,1,4,30,101510,100350,99210,94.45,0,7.65,8.370000000000001,8.540000000000001,8.64,8.71,8.77,8.85,8.92,9.290000000000001,147.82,147.83,147.87,147.91,147.94,147.98,148.05,148.11,148.4,23.34,23.03,22.86,22.67,22.48,22.29,22.1,21.92,21.61,N/A,N/A -2012,5,1,5,30,101490,100330,99200,93.57000000000001,0,8.14,8.9,9.06,9.16,9.22,9.27,9.36,9.43,9.8,147.64000000000001,147.88,148.01,148.17000000000002,148.34,148.52,148.75,148.96,149.64000000000001,23.36,23.06,22.89,22.7,22.53,22.35,22.17,22,21.7,N/A,N/A -2012,5,1,6,30,101540,100380,99240,93.72,0,7.33,7.99,8.15,8.23,8.3,8.35,8.4,8.45,8.63,151.54,151.57,151.64000000000001,151.72,151.81,151.9,152.02,152.13,152.46,23.35,23.04,22.87,22.67,22.490000000000002,22.31,22.12,21.94,21.580000000000002,N/A,N/A -2012,5,1,7,30,101590,100420,99290,95.14,0,7.18,7.7700000000000005,7.930000000000001,8,8.05,8.09,8.120000000000001,8.15,8.22,156.73,157.11,157.28,157.48,157.68,157.9,158.15,158.41,159.11,23.29,22.96,22.79,22.59,22.400000000000002,22.22,22.02,21.84,21.52,N/A,N/A -2012,5,1,8,30,101570,100400,99270,94.31,0,5.74,6.18,6.28,6.34,6.390000000000001,6.44,6.55,6.68,7.3,167.23,166.56,166.18,165.73,165.20000000000002,164.61,163.63,162.61,161.02,23.09,22.77,22.6,22.41,22.240000000000002,22.06,21.89,21.740000000000002,21.51,N/A,N/A -2012,5,1,9,30,101560,100390,99260,93.76,0,5.16,5.53,5.6000000000000005,5.64,5.67,5.68,5.71,5.74,6.04,160.91,161.17000000000002,161.3,161.43,161.55,161.65,161.74,161.82,161.70000000000002,23.27,22.96,22.79,22.6,22.41,22.23,22.04,21.87,21.56,N/A,N/A -2012,5,1,10,30,101560,100390,99250,94.42,0,4.6000000000000005,4.94,5.0200000000000005,5.08,5.13,5.18,5.26,5.33,6.2,155.96,155.68,155.5,155.32,155.13,154.94,154.75,154.56,154.6,22.990000000000002,22.650000000000002,22.47,22.28,22.09,21.89,21.7,21.52,21.31,N/A,N/A -2012,5,1,11,30,101570,100400,99270,94.66,0,4.96,5.3100000000000005,5.39,5.43,5.46,5.47,5.5,5.5200000000000005,5.64,160.74,159.72,159.09,158.4,157.69,156.97,156.14000000000001,155.33,153.17000000000002,22.95,22.6,22.42,22.21,22.02,21.82,21.62,21.43,21.13,N/A,N/A -2012,5,1,12,30,101550,100380,99250,94.37,0,4.9,5.17,5.21,5.21,5.22,5.24,5.29,5.34,5.46,132.41,132.13,132.12,132.22,132.57,133.06,134.1,135.2,137.12,22.97,22.650000000000002,22.48,22.31,22.150000000000002,22,21.89,21.79,21.61,N/A,N/A -2012,5,1,13,30,101580,100410,99270,91.61,0,4.89,5.2,5.26,5.3,5.37,5.47,5.71,5.97,6.140000000000001,122.67,123.74000000000001,124.60000000000001,125.75,127.46000000000001,129.57,133.1,136.84,142.1,22.97,22.650000000000002,22.48,22.3,22.13,21.990000000000002,21.87,21.79,21.63,N/A,N/A -2012,5,1,14,30,101580,100410,99270,91.67,0,6.13,6.6000000000000005,6.67,6.69,6.7,6.71,6.73,6.75,6.890000000000001,121.41,122.05,122.49000000000001,123.03,123.66,124.32000000000001,125.44,126.61,130.67000000000002,23.2,22.87,22.7,22.5,22.32,22.14,21.96,21.8,21.52,N/A,N/A -2012,5,1,15,30,101560,100390,99260,91.8,0,6.82,7.41,7.55,7.62,7.66,7.68,7.69,7.7,7.7,127.68,127.8,127.82000000000001,127.87,127.92,127.98,128.06,128.14000000000001,128.44,23.400000000000002,23.080000000000002,22.91,22.72,22.53,22.34,22.16,21.98,21.62,N/A,N/A -2012,5,1,16,30,101560,100390,99260,90.87,0,6.75,7.3100000000000005,7.44,7.5,7.54,7.5600000000000005,7.5600000000000005,7.57,7.55,124.19,124.38000000000001,124.5,124.60000000000001,124.71000000000001,124.82000000000001,124.94,125.07000000000001,125.39,23.44,23.11,22.93,22.740000000000002,22.55,22.36,22.17,21.990000000000002,21.61,N/A,N/A -2012,5,1,17,30,101570,100400,99270,90.28,0,5.7,6.18,6.28,6.34,6.38,6.4,6.41,6.42,6.42,126.21000000000001,126.17,126.22,126.26,126.29,126.33,126.38000000000001,126.42,126.54,23.52,23.2,23.02,22.830000000000002,22.64,22.45,22.26,22.07,21.69,N/A,N/A -2012,5,1,18,30,101550,100380,99250,89.19,0,5.49,5.9,5.99,6.03,6.0600000000000005,6.07,6.08,6.09,6.09,124.63000000000001,124.8,124.9,125.02,125.14,125.25,125.39,125.52,125.87,23.580000000000002,23.25,23.080000000000002,22.89,22.7,22.51,22.32,22.13,21.75,N/A,N/A -2012,5,1,19,30,101520,100350,99220,87.23,0,5.95,6.41,6.51,6.5600000000000005,6.58,6.59,6.59,6.59,6.57,122.62,122.78,122.88,122.98,123.08,123.18,123.29,123.39,123.64,23.67,23.34,23.17,22.97,22.78,22.6,22.400000000000002,22.22,21.84,N/A,N/A -2012,5,1,20,30,101480,100320,99190,86.19,0,6.37,6.890000000000001,7,7.05,7.08,7.1000000000000005,7.1000000000000005,7.1000000000000005,7.09,118.44,118.54,118.63,118.71000000000001,118.78,118.86,118.93,119.01,119.16,23.650000000000002,23.330000000000002,23.16,22.97,22.78,22.59,22.400000000000002,22.21,21.830000000000002,N/A,N/A -2012,5,1,21,30,101420,100250,99120,85.9,0,6.42,6.95,7.0600000000000005,7.12,7.16,7.17,7.19,7.2,7.2,124.26,124.23,124.26,124.31,124.37,124.43,124.51,124.58,124.75,23.56,23.25,23.09,22.89,22.7,22.52,22.32,22.14,21.76,N/A,N/A -2012,5,1,22,30,101390,100220,99090,86.32000000000001,0,6.12,6.66,6.78,6.84,6.88,6.9,6.91,6.92,6.91,118.24000000000001,118.43,118.54,118.64,118.73,118.8,118.87,118.94,119.08,23.53,23.22,23.05,22.85,22.66,22.47,22.27,22.09,21.71,N/A,N/A -2012,5,1,23,30,101350,100190,99060,87.53,0,6.21,6.7,6.8,6.84,6.86,6.87,6.87,6.87,6.84,120.92,120.97,120.99000000000001,121.02,121.07000000000001,121.11,121.17,121.23,121.41,23.41,23.09,22.93,22.73,22.54,22.36,22.16,21.98,21.61,N/A,N/A -2012,5,2,0,30,101360,100190,99060,87.81,0,5.4,5.94,6.09,6.18,6.25,6.3100000000000005,6.3500000000000005,6.38,6.44,120.17,120.39,120.46000000000001,120.55,120.62,120.69,120.75,120.82000000000001,120.95,23.41,23.1,22.93,22.73,22.54,22.35,22.150000000000002,21.97,21.580000000000002,N/A,N/A -2012,5,2,1,30,101310,100140,99010,88.42,0,6.55,7.15,7.3,7.390000000000001,7.46,7.51,7.55,7.59,7.67,124.48,124.92,125.19,125.47,125.72,125.97,126.23,126.47,127.01,23.38,23.07,22.91,22.71,22.53,22.34,22.150000000000002,21.97,21.6,N/A,N/A -2012,5,2,2,30,101290,100120,99000,90.71000000000001,0,7.04,7.67,7.83,7.91,7.96,7.99,8.01,8.02,8.040000000000001,130.45,130.79,130.88,130.94,130.99,131.04,131.07,131.1,131.15,23.31,22.990000000000002,22.81,22.61,22.42,22.23,22.03,21.85,21.46,N/A,N/A -2012,5,2,3,30,101310,100140,99010,92.45,0,6.9,7.53,7.67,7.75,7.8,7.82,7.84,7.8500000000000005,7.83,129.08,129.02,128.99,128.95,128.92000000000002,128.88,128.86,128.83,128.79,23.31,22.98,22.81,22.62,22.42,22.23,22.03,21.84,21.45,N/A,N/A -2012,5,2,4,30,101290,100120,99000,93.3,0,6.16,6.6000000000000005,6.68,6.7,6.71,6.73,6.79,6.87,7.28,135.41,135.34,135.27,135.21,135.16,135.11,135.21,135.36,137.91,23.29,22.98,22.81,22.62,22.44,22.26,22.11,21.96,21.85,N/A,N/A -2012,5,2,5,30,101280,100110,98980,93.88,0,6.3,6.8500000000000005,6.99,7.08,7.140000000000001,7.19,7.24,7.29,7.43,145.51,144.79,144.28,143.73,143.20000000000002,142.68,142.09,141.52,140.12,23.150000000000002,22.82,22.650000000000002,22.44,22.25,22.06,21.86,21.67,21.27,N/A,N/A -2012,5,2,6,30,101270,100100,98970,94.62,0,5.88,6.36,6.48,6.55,6.6000000000000005,6.640000000000001,6.68,6.72,6.96,155.88,155.71,155.51,155.24,154.94,154.63,154.17000000000002,153.71,151.83,23.150000000000002,22.830000000000002,22.66,22.46,22.27,22.09,21.900000000000002,21.72,21.42,N/A,N/A -2012,5,2,7,30,101280,100110,98990,94.83,0,5.01,5.47,5.58,5.65,5.69,5.72,5.78,5.86,6.16,146.52,146.9,147.11,147.34,147.55,147.72,148.13,148.59,150.78,23.48,23.18,23.02,22.82,22.63,22.43,22.23,22.05,21.79,N/A,N/A -2012,5,2,8,30,101240,100080,98950,92.25,0,4.68,5.12,5.3,5.61,5.88,6.140000000000001,6.38,6.6000000000000005,6.99,136.2,136.69,137.48,138.95000000000002,140.39000000000001,141.84,143.1,144.23,145.42000000000002,23.55,23.29,23.16,23.02,22.91,22.84,22.78,22.72,22.56,N/A,N/A -2012,5,2,9,30,101250,100080,98960,96.76,0,5.03,5.37,5.43,5.45,5.48,5.51,5.64,5.8,6.55,130.53,131.07,131.44,131.97,132.72,133.66,136.03,138.72,148.44,23.25,22.93,22.75,22.55,22.38,22.23,22.04,21.86,21.97,N/A,N/A -2012,5,2,10,30,101270,100100,98980,96.89,0,4.65,4.92,4.96,4.97,5.07,5.21,5.4,5.58,5.76,138.82,139.12,139.43,139.86,141.15,143.06,145.84,148.71,151.54,23.23,22.92,22.76,22.56,22.41,22.29,22.14,22.01,21.77,N/A,N/A -2012,5,2,11,30,101270,100100,98970,97.15,0,5.51,5.82,5.87,5.89,5.8,5.63,5.47,5.32,5.0200000000000005,138.82,139.01,139.28,139.83,140.13,140.28,140.72,141.19,143.32,22.57,22.52,22.59,22.75,22.69,22.5,22.32,22.17,21.91,N/A,N/A -2012,5,2,12,30,101290,100130,99000,95.04,0,4.34,4.58,4.61,4.61,4.61,4.63,4.68,4.72,4.82,134.72,135.01,135.27,135.63,136.07,136.58,137.44,138.36,141.73,23.22,22.92,22.77,22.59,22.43,22.28,22.13,22,21.75,N/A,N/A -2012,5,2,13,30,101310,100140,99020,91.95,0,4.51,4.8100000000000005,4.8500000000000005,4.86,4.8500000000000005,4.84,4.82,4.8100000000000005,4.69,125.94,126.19,126.37,126.62,126.96000000000001,127.37,128.41,129.53,136.42000000000002,23.34,23.03,22.87,22.68,22.490000000000002,22.31,22.13,21.97,21.72,N/A,N/A -2012,5,2,14,30,101350,100190,99060,93.56,0,4.0600000000000005,4.3,4.33,4.34,4.34,4.34,4.38,4.42,4.7,132.17000000000002,132.3,132.43,132.61,132.88,133.23,134.26,135.43,143.14000000000001,23.32,23.01,22.84,22.650000000000002,22.47,22.29,22.12,21.96,21.8,N/A,N/A -2012,5,2,15,30,101380,100210,99080,92.95,0,3.5500000000000003,3.74,3.77,3.77,3.7600000000000002,3.74,3.73,3.71,3.65,129.65,129.86,130,130.17000000000002,130.37,130.61,131.04,131.49,135.13,23.45,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.03,21.69,N/A,N/A -2012,5,2,16,30,101400,100230,99100,93.58,0,3.75,3.96,3.99,4,4,3.99,3.98,3.96,3.93,143.14000000000001,143.39000000000001,143.49,143.63,143.79,143.96,144.23,144.5,145.75,23.53,23.2,23.02,22.830000000000002,22.64,22.45,22.26,22.080000000000002,21.72,N/A,N/A -2012,5,2,17,30,101380,100210,99080,93.62,0,3.56,3.75,3.7800000000000002,3.79,3.7800000000000002,3.7800000000000002,3.7600000000000002,3.75,3.71,146.01,146.4,146.64000000000001,146.9,147.16,147.42000000000002,147.75,148.08,149.12,23.66,23.31,23.14,22.94,22.75,22.57,22.37,22.19,21.85,N/A,N/A -2012,5,2,18,30,101370,100210,99080,92.55,0,4.0600000000000005,4.2700000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.2700000000000005,4.25,4.17,155.57,155.9,156.03,156.20000000000002,156.39000000000001,156.59,156.86,157.14000000000001,158.15,23.81,23.47,23.29,23.1,22.91,22.73,22.53,22.36,21.990000000000002,N/A,N/A -2012,5,2,19,30,101350,100190,99060,92.65,0,3.7,3.85,3.86,3.83,3.8000000000000003,3.7600000000000002,3.71,3.66,3.43,162.31,162.75,162.99,163.28,163.59,163.92000000000002,164.44,164.97,167.63,23.89,23.55,23.38,23.18,23,22.81,22.63,22.46,22.19,N/A,N/A -2012,5,2,20,30,101300,100140,99010,91.10000000000001,0,4.92,5.22,5.26,5.2700000000000005,5.26,5.25,5.22,5.2,5.12,169.83,170.03,170.17000000000002,170.32,170.46,170.62,170.83,171.04,171.77,24.05,23.72,23.54,23.34,23.16,22.97,22.78,22.6,22.240000000000002,N/A,N/A -2012,5,2,21,30,101270,100110,98980,91.44,0,4.97,5.3,5.3500000000000005,5.36,5.36,5.34,5.33,5.3100000000000005,5.29,175.79,175.88,175.96,176.05,176.15,176.28,176.46,176.67000000000002,177.97,24.09,23.78,23.61,23.42,23.23,23.05,22.86,22.69,22.400000000000002,N/A,N/A -2012,5,2,22,30,101240,100080,98950,91.52,0,5.3500000000000005,5.7700000000000005,5.84,5.86,5.86,5.84,5.8100000000000005,5.79,5.71,177.81,177.84,177.79,177.75,177.70000000000002,177.67000000000002,177.62,177.57,177.39000000000001,24.1,23.82,23.66,23.46,23.27,23.09,22.900000000000002,22.71,22.35,N/A,N/A -2012,5,2,23,30,101240,100080,98950,92.45,0,4.74,5.15,5.26,5.34,5.39,5.4,5.41,5.42,5.32,182.29,182.17000000000002,182.08,181.88,181.65,181.36,180.34,179.12,176.67000000000002,23.97,23.71,23.56,23.39,23.21,23.03,22.89,22.77,22.7,N/A,N/A -2012,5,3,0,30,101230,100070,98950,92.93,0,5.4,6,6.18,6.32,6.44,6.54,6.63,6.7,6.83,176.32,176.33,176.24,176.15,176.06,175.97,175.89000000000001,175.82,175.56,23.830000000000002,23.580000000000002,23.43,23.25,23.080000000000002,22.91,22.73,22.56,22.26,N/A,N/A -2012,5,3,1,30,101210,100050,98930,94.74,0,5.24,5.88,6.1000000000000005,6.26,6.38,6.48,6.55,6.61,6.65,186.22,186.25,186.08,185.70000000000002,185.19,184.56,183.78,182.99,180.01,23.68,23.44,23.29,23.11,22.93,22.75,22.56,22.39,22.16,N/A,N/A -2012,5,3,2,30,101260,100100,98970,94.03,0,5.29,6.1000000000000005,6.43,6.68,6.890000000000001,7.07,7.24,7.390000000000001,7.43,181.63,181.55,181.54,181.51,181.49,181.51,181.6,181.73,182.18,23.64,23.45,23.330000000000002,23.17,23.01,22.86,22.71,22.59,22.59,N/A,N/A -2012,5,3,3,30,101320,100160,99030,94.23,0,4.59,5.36,5.7,6,6.26,6.51,6.74,6.95,7.29,176.92000000000002,177.32,177.59,177.76,177.89000000000001,177.99,178.18,178.39000000000001,179.37,23.64,23.47,23.37,23.23,23.1,22.97,22.87,22.78,22.69,N/A,N/A -2012,5,3,4,30,101280,100110,98990,95.88,0,4.83,5.6000000000000005,5.93,6.22,6.47,6.68,6.9,7.1000000000000005,7.46,187.81,187.87,187.82,187.65,187.47,187.31,187.22,187.16,187.23,23.55,23.34,23.22,23.07,22.92,22.78,22.66,22.56,22.59,N/A,N/A -2012,5,3,5,30,101300,100140,99010,94.96000000000001,0,4.8,5.51,5.78,6,6.24,6.5,6.74,6.95,7.36,183.1,183.61,183.94,184.37,184.76,185.14000000000001,185.38,185.56,185.71,23.54,23.3,23.16,23.01,22.87,22.76,22.64,22.53,22.38,N/A,N/A -2012,5,3,6,30,101290,100130,99000,95.24,0,4.93,5.28,5.37,5.46,5.71,6.09,6.46,6.82,7.26,188.55,188.87,189.1,189.46,190.29,191.51,193.12,194.8,196.05,23.61,23.3,23.14,22.96,22.81,22.68,22.64,22.62,22.7,N/A,N/A -2012,5,3,7,30,101330,100170,99040,93.91,0,4.3500000000000005,4.63,4.68,4.69,4.7,4.71,4.73,4.7700000000000005,5.33,193.66,193.73000000000002,193.78,193.86,193.98000000000002,194.13,194.43,194.73000000000002,198.01,23.67,23.35,23.18,22.990000000000002,22.81,22.62,22.44,22.28,22.1,N/A,N/A -2012,5,3,8,30,101310,100140,99010,94.14,0,5.42,5.8100000000000005,5.88,5.9,5.91,5.91,5.89,5.88,5.9,200.53,200.51,200.48000000000002,200.45000000000002,200.4,200.35,200.28,200.20000000000002,199.9,23.59,23.26,23.09,22.900000000000002,22.71,22.52,22.330000000000002,22.150000000000002,21.8,N/A,N/A -2012,5,3,9,30,101330,100160,99030,93.82000000000001,0,4.96,5.3100000000000005,5.37,5.4,5.41,5.41,5.42,5.42,5.44,201.92000000000002,201.99,201.99,201.99,202,202,202.02,202.03,202.1,23.55,23.22,23.05,22.85,22.66,22.48,22.28,22.09,21.73,N/A,N/A -2012,5,3,10,30,101350,100180,99050,95.2,0,4.72,5.07,5.17,5.22,5.26,5.3,5.33,5.36,5.43,194.17000000000002,194.47,194.71,194.95000000000002,195.19,195.44,195.70000000000002,195.96,196.58,23.41,23.06,22.87,22.66,22.46,22.26,22.1,21.96,21.7,N/A,N/A -2012,5,3,11,30,101420,100250,99120,93.21000000000001,0,2.75,2.94,3,3.04,3.09,3.13,3.2,3.27,3.62,193.24,191.48000000000002,190.48,189.51,188.61,187.75,186.93,186.17000000000002,184.53,23.46,23.14,22.98,22.78,22.6,22.42,22.23,22.06,21.740000000000002,N/A,N/A -2012,5,3,12,30,101420,100260,99130,88.87,0,2.35,2.5100000000000002,2.5500000000000003,2.58,2.6,2.62,2.64,2.66,2.7600000000000002,188.62,188.35,188.09,187.81,187.51,187.20000000000002,186.81,186.43,185.14000000000001,23.79,23.490000000000002,23.32,23.13,22.95,22.76,22.57,22.39,22.03,N/A,N/A -2012,5,3,13,30,101450,100280,99150,92.88,0,5.16,5.51,5.57,5.57,5.5600000000000005,5.54,5.51,5.48,5.41,181.21,181.20000000000002,181.15,181.09,181.04,181.01,180.99,180.99,181.15,23.580000000000002,23.25,23.080000000000002,22.88,22.69,22.5,22.3,22.12,21.75,N/A,N/A -2012,5,3,14,30,101520,100350,99220,89.96000000000001,0,3.2800000000000002,3.47,3.52,3.54,3.56,3.58,3.61,3.63,3.83,196.28,196.15,196.27,196.38,196.5,196.61,196.76,196.91,197.72,23.6,23.28,23.11,22.91,22.73,22.54,22.35,22.17,21.81,N/A,N/A -2012,5,3,15,30,101550,100390,99260,90.2,0,2.86,2.99,3.02,3.0300000000000002,3.04,3.04,3.04,3.0500000000000003,3.06,160.48,161.26,161.78,162.31,162.83,163.36,163.95000000000002,164.52,165.99,23.68,23.35,23.18,22.98,22.79,22.6,22.41,22.22,21.84,N/A,N/A -2012,5,3,16,30,101570,100400,99270,91.34,0,3.58,3.7800000000000002,3.8200000000000003,3.84,3.85,3.85,3.86,3.86,3.86,164.8,165.01,165.23,165.44,165.66,165.89000000000001,166.15,166.42000000000002,167.13,23.740000000000002,23.39,23.22,23.02,22.830000000000002,22.64,22.44,22.26,21.88,N/A,N/A -2012,5,3,17,30,101560,100400,99270,90.7,0,3.08,3.24,3.27,3.2800000000000002,3.3000000000000003,3.3000000000000003,3.31,3.31,3.33,156.18,156.70000000000002,157.03,157.35,157.66,157.98,158.35,158.70000000000002,159.63,23.85,23.5,23.330000000000002,23.13,22.94,22.75,22.56,22.37,22,N/A,N/A -2012,5,3,18,30,101580,100420,99290,90.95,0,3.56,3.7800000000000002,3.83,3.87,3.89,3.92,3.93,3.95,3.99,144.06,144.34,144.52,144.69,144.85,145.01,145.20000000000002,145.38,145.91,24.04,23.7,23.52,23.32,23.13,22.95,22.76,22.57,22.2,N/A,N/A -2012,5,3,19,30,101580,100420,99290,87.78,0,4.28,4.49,4.51,4.5,4.48,4.45,4.42,4.39,4.33,157.17000000000002,157.1,157.05,157.02,156.98,156.96,156.96,156.95000000000002,157.02,24.34,24,23.830000000000002,23.63,23.45,23.27,23.07,22.900000000000002,22.53,N/A,N/A -2012,5,3,20,30,101540,100370,99250,88.99,0,4.79,5.11,5.17,5.2,5.21,5.22,5.22,5.21,5.19,146.22,146.35,146.46,146.57,146.67000000000002,146.77,146.88,146.99,147.25,24.21,23.87,23.7,23.5,23.31,23.12,22.92,22.740000000000002,22.36,N/A,N/A -2012,5,3,21,30,101520,100350,99230,86.87,0,4.58,4.89,4.94,4.96,4.97,4.97,4.96,4.95,4.93,146.12,146.13,146.11,146.07,146.03,146,145.97,145.94,145.9,24.43,24.11,23.94,23.740000000000002,23.56,23.37,23.17,22.990000000000002,22.62,N/A,N/A -2012,5,3,22,30,101500,100340,99210,87.76,0,4.97,5.39,5.47,5.51,5.5200000000000005,5.53,5.53,5.5200000000000005,5.5,136.66,137.09,137.34,137.58,137.8,138.01,138.23,138.45000000000002,138.99,24.39,24.09,23.92,23.72,23.53,23.35,23.150000000000002,22.97,22.59,N/A,N/A -2012,5,3,23,30,101450,100290,99160,89.32000000000001,0,5.05,5.48,5.5600000000000005,5.6000000000000005,5.62,5.63,5.63,5.63,5.62,148.61,148.02,147.67000000000002,147.3,146.94,146.59,146.23,145.88,145.14000000000001,24.2,23.91,23.740000000000002,23.55,23.36,23.17,22.98,22.79,22.41,N/A,N/A -2012,5,4,0,30,101430,100270,99140,88.89,0,4.59,5.01,5.11,5.19,5.2700000000000005,5.34,5.45,5.5600000000000005,5.87,132.81,133.19,133.47,133.83,134.24,134.69,135.31,135.97,138.05,24.150000000000002,23.89,23.740000000000002,23.56,23.39,23.22,23.05,22.900000000000002,22.6,N/A,N/A -2012,5,4,1,30,101400,100230,99100,90.84,0,5.01,5.42,5.5,5.54,5.5600000000000005,5.58,5.59,5.6000000000000005,5.66,148.11,147.84,147.67000000000002,147.5,147.33,147.15,146.94,146.74,146.14000000000001,23.830000000000002,23.52,23.35,23.16,22.97,22.79,22.59,22.41,22.04,N/A,N/A -2012,5,4,2,30,101480,100320,99190,92.04,0,5.63,6.05,6.13,6.16,6.17,6.16,6.16,6.140000000000001,6.12,147.52,147.75,147.9,148.12,148.34,148.58,148.88,149.17000000000002,149.93,23.84,23.52,23.35,23.150000000000002,22.96,22.77,22.56,22.37,21.97,N/A,N/A -2012,5,4,3,30,101530,100370,99240,89.76,0,5.68,6.05,6.11,6.1000000000000005,6.09,6.0600000000000005,6.05,6.03,6.13,158.55,158.53,158.49,158.45000000000002,158.41,158.36,158.34,158.33,158.6,23.740000000000002,23.43,23.27,23.07,22.89,22.71,22.53,22.36,22.05,N/A,N/A -2012,5,4,4,30,101510,100350,99220,90.71000000000001,0,4.25,4.55,4.61,4.63,4.65,4.66,4.66,4.67,5.49,160.63,161.05,161.36,161.73,162.12,162.55,163.09,163.63,170.97,23.8,23.5,23.34,23.14,22.96,22.77,22.59,22.400000000000002,22.23,N/A,N/A -2012,5,4,5,30,101500,100330,99200,93.45,0,5.12,5.49,5.57,5.6000000000000005,5.63,5.66,5.7,5.76,6.24,163.32,163.6,163.77,163.98,164.23,164.5,164.95000000000002,165.42000000000002,168.29,23.650000000000002,23.330000000000002,23.16,22.98,22.79,22.61,22.43,22.26,21.97,N/A,N/A -2012,5,4,6,30,101510,100340,99210,94.61,0,5.16,5.5600000000000005,5.65,5.7,5.73,5.75,5.76,5.7700000000000005,5.82,170.17000000000002,170.19,170.22,170.26,170.32,170.38,170.45000000000002,170.52,170.8,23.67,23.330000000000002,23.150000000000002,22.95,22.76,22.57,22.37,22.19,21.93,N/A,N/A -2012,5,4,7,30,101580,100410,99280,94.39,0,3.92,4.16,4.22,4.28,4.33,4.4,4.5200000000000005,4.64,5.33,189.27,186.58,184.88,183.04,181.25,179.45000000000002,177.63,175.9,175.09,23.59,23.26,23.1,22.91,22.740000000000002,22.57,22.400000000000002,22.25,21.990000000000002,N/A,N/A -2012,5,4,8,30,101550,100380,99250,93.79,0,4.68,4.92,4.95,4.94,4.97,5.0200000000000005,5.22,5.46,5.84,171.5,172.89000000000001,173.85,175.19,176.91,178.91,181.52,184.22,187.70000000000002,23.66,23.34,23.17,22.990000000000002,22.84,22.69,22.6,22.54,22.45,N/A,N/A -2012,5,4,9,30,101550,100390,99260,93.2,0,3.98,4.25,4.33,4.39,4.47,4.57,4.8100000000000005,5.09,5.67,180.05,180.63,181.07,181.59,182.20000000000002,182.92000000000002,184.11,185.43,188.39000000000001,23.740000000000002,23.43,23.27,23.09,22.91,22.75,22.61,22.48,22.240000000000002,N/A,N/A -2012,5,4,10,30,101570,100400,99270,92.87,0,4.73,5.0600000000000005,5.14,5.17,5.19,5.2,5.21,5.21,5.22,178.92000000000002,179.12,179.3,179.52,179.73,179.95000000000002,180.18,180.41,180.98,23.85,23.54,23.37,23.17,22.990000000000002,22.8,22.62,22.44,22.07,N/A,N/A -2012,5,4,11,30,101550,100390,99260,91.34,0,3.87,4.1,4.13,4.14,4.14,4.15,4.19,4.24,4.88,169.71,170.33,170.78,171.35,172.11,173,174.75,176.65,186.26,23.8,23.48,23.31,23.12,22.95,22.77,22.6,22.45,22.32,N/A,N/A -2012,5,4,12,30,101580,100410,99280,91.86,0,3.87,4.12,4.18,4.22,4.24,4.25,4.2700000000000005,4.28,4.29,181.45000000000002,181.85,182.13,182.46,182.8,183.15,183.55,183.94,184.88,23.81,23.490000000000002,23.32,23.12,22.93,22.75,22.55,22.37,21.990000000000002,N/A,N/A -2012,5,4,13,30,101610,100450,99320,90.14,0,3.87,4.1,4.15,4.17,4.17,4.17,4.17,4.16,4.14,182.25,182.61,182.75,182.94,183.14000000000001,183.35,183.59,183.83,184.47,23.86,23.54,23.37,23.17,22.98,22.8,22.6,22.42,22.04,N/A,N/A -2012,5,4,14,30,101660,100490,99360,89.08,0,3.62,3.88,3.95,4,4.03,4.07,4.1,4.12,4.18,190.84,190.95000000000002,191,191.05,191.1,191.14000000000001,191.18,191.23000000000002,191.38,23.900000000000002,23.580000000000002,23.41,23.21,23.02,22.84,22.64,22.45,22.07,N/A,N/A -2012,5,4,15,30,101640,100470,99340,88.97,0,4.1,4.32,4.36,4.36,4.36,4.3500000000000005,4.34,4.33,4.3100000000000005,161.6,162.09,162.42000000000002,162.76,163.1,163.44,163.82,164.20000000000002,165.23,23.92,23.59,23.42,23.23,23.04,22.85,22.66,22.48,22.11,N/A,N/A -2012,5,4,16,30,101670,100500,99370,89.65,0,4.32,4.68,4.76,4.82,4.86,4.89,4.91,4.94,4.97,149.37,149.85,150.04,150.22,150.36,150.5,150.63,150.75,151.02,24.03,23.7,23.52,23.32,23.13,22.94,22.740000000000002,22.56,22.18,N/A,N/A -2012,5,4,17,30,101660,100490,99360,88.44,0,4.23,4.51,4.57,4.6000000000000005,4.63,4.64,4.66,4.67,4.71,163.70000000000002,163.78,163.89000000000001,163.98,164.07,164.15,164.26,164.37,164.64000000000001,24.080000000000002,23.740000000000002,23.57,23.37,23.18,22.990000000000002,22.8,22.62,22.240000000000002,N/A,N/A -2012,5,4,18,30,101650,100480,99350,86.97,0,4.23,4.51,4.57,4.59,4.61,4.62,4.62,4.62,4.62,166.84,167.15,167.35,167.57,167.77,167.96,168.17000000000002,168.37,168.81,24.28,23.94,23.76,23.56,23.37,23.18,22.98,22.8,22.41,N/A,N/A -2012,5,4,19,30,101630,100470,99340,86.92,0,4.17,4.44,4.5,4.53,4.5600000000000005,4.58,4.61,4.63,4.68,155.70000000000002,155.33,155.16,154.98,154.79,154.61,154.44,154.28,154,24.330000000000002,23.990000000000002,23.81,23.62,23.43,23.240000000000002,23.05,22.87,22.490000000000002,N/A,N/A -2012,5,4,20,30,101590,100430,99300,86.33,0,4.86,5.22,5.3100000000000005,5.3500000000000005,5.39,5.41,5.44,5.46,5.5,150.65,150.70000000000002,150.65,150.62,150.59,150.58,150.58,150.57,150.57,24.36,24.03,23.85,23.650000000000002,23.46,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A -2012,5,4,21,30,101550,100380,99260,86.84,0,5.58,6,6.09,6.13,6.16,6.17,6.18,6.18,6.18,166,166.02,166.14000000000001,166.26,166.38,166.5,166.66,166.82,167.24,24.34,24.02,23.85,23.650000000000002,23.46,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A -2012,5,4,22,30,101500,100340,99210,88.02,0,5.89,6.390000000000001,6.51,6.57,6.61,6.640000000000001,6.65,6.67,6.68,174.12,174.41,174.59,174.78,174.95000000000002,175.13,175.34,175.53,176.01,24.37,24.07,23.900000000000002,23.7,23.52,23.330000000000002,23.13,22.95,22.57,N/A,N/A -2012,5,4,23,30,101490,100320,99200,90.44,0,4.6000000000000005,5,5.09,5.15,5.19,5.23,5.26,5.28,5.34,159.47,159.44,159.48,159.48,159.46,159.43,159.37,159.31,159.11,24.25,23.94,23.78,23.580000000000002,23.39,23.21,23.02,22.84,22.46,N/A,N/A -2012,5,5,0,30,101460,100290,99170,90.5,0,6.15,6.66,6.76,6.8,6.8100000000000005,6.8100000000000005,6.79,6.7700000000000005,6.7,148.47,148.78,149.01,149.28,149.54,149.83,150.15,150.47,151.32,24.3,24,23.84,23.650000000000002,23.46,23.28,23.09,22.91,22.55,N/A,N/A -2012,5,5,1,30,101440,100280,99150,90.71000000000001,0,4.71,5.09,5.17,5.22,5.24,5.26,5.2700000000000005,5.2700000000000005,5.28,146.78,147.3,147.61,147.89000000000001,148.14000000000001,148.37,148.62,148.84,149.36,24.26,23.96,23.8,23.6,23.42,23.23,23.04,22.86,22.48,N/A,N/A -2012,5,5,2,30,101390,100220,99100,92.23,0,4.83,5.25,5.34,5.38,5.41,5.41,5.41,5.4,5.36,168.12,167.96,167.87,167.8,167.78,167.78,167.81,167.85,168.06,24.29,23.990000000000002,23.830000000000002,23.63,23.45,23.27,23.080000000000002,22.900000000000002,22.53,N/A,N/A -2012,5,5,3,30,101370,100200,99080,92.43,0,5.79,6.23,6.3100000000000005,6.33,6.34,6.33,6.3100000000000005,6.3,6.25,155.58,155.61,155.68,155.76,155.85,155.94,156.05,156.16,156.45000000000002,24.13,23.82,23.650000000000002,23.45,23.27,23.080000000000002,22.89,22.71,22.330000000000002,N/A,N/A -2012,5,5,4,30,101410,100250,99120,92.26,0,6.68,7.17,7.24,7.24,7.22,7.18,7.13,7.08,6.93,159.38,159.92000000000002,160.27,160.66,161.07,161.49,162.01,162.53,163.93,23.93,23.6,23.42,23.22,23.03,22.84,22.64,22.45,22.05,N/A,N/A -2012,5,5,5,30,101430,100270,99140,89.12,0,4.83,5.24,5.33,5.39,5.43,5.46,5.48,5.5,5.53,178.82,179.19,179.38,179.52,179.63,179.71,179.79,179.86,179.99,24.13,23.82,23.650000000000002,23.46,23.27,23.080000000000002,22.89,22.7,22.32,N/A,N/A -2012,5,5,6,30,101440,100280,99150,89.60000000000001,0,6.3500000000000005,6.8500000000000005,6.96,7.0200000000000005,7.05,7.07,7.07,7.08,7.08,177.41,177.65,177.8,177.96,178.12,178.27,178.43,178.59,178.95000000000002,24.23,23.89,23.71,23.52,23.330000000000002,23.14,22.95,22.76,22.38,N/A,N/A -2012,5,5,7,30,101410,100250,99120,89.23,0,6.09,6.5600000000000005,6.66,6.7,6.73,6.74,6.74,6.74,6.73,182.91,182.83,182.79,182.73,182.68,182.63,182.58,182.53,182.42000000000002,24.11,23.77,23.59,23.39,23.2,23.02,22.82,22.64,22.27,N/A,N/A -2012,5,5,8,30,101450,100290,99160,85.96000000000001,0,4.75,5.07,5.14,5.17,5.19,5.19,5.2,5.2,5.19,197.44,197.5,197.55,197.59,197.62,197.65,197.68,197.71,197.79,24.21,23.88,23.7,23.5,23.31,23.12,22.93,22.740000000000002,22.36,N/A,N/A -2012,5,5,9,30,101490,100320,99200,86.08,0,5.2700000000000005,5.63,5.7,5.73,5.74,5.74,5.74,5.74,5.74,204.87,205.38,205.69,205.97,206.23000000000002,206.47,206.71,206.94,207.4,24.16,23.82,23.64,23.44,23.25,23.06,22.86,22.67,22.29,N/A,N/A -2012,5,5,10,30,101430,100270,99140,86.66,0,6.83,7.4,7.54,7.61,7.65,7.68,7.7,7.72,7.73,202.61,202.65,202.65,202.63,202.61,202.58,202.54,202.51,202.45000000000002,24.21,23.87,23.69,23.490000000000002,23.3,23.11,22.91,22.73,22.34,N/A,N/A -2012,5,5,11,30,101460,100300,99170,85.13,0,6.6000000000000005,7.12,7.23,7.28,7.3100000000000005,7.32,7.32,7.32,7.3,202.86,202.86,202.84,202.82,202.8,202.78,202.76,202.75,202.71,24.29,23.96,23.79,23.59,23.400000000000002,23.21,23.02,22.830000000000002,22.45,N/A,N/A -2012,5,5,12,30,101440,100270,99150,84.60000000000001,0,6.17,6.6000000000000005,6.69,6.72,6.72,6.72,6.7,6.68,6.63,213.64000000000001,214.11,214.29,214.5,214.71,214.91,215.13,215.34,215.82,24.28,23.95,23.78,23.580000000000002,23.39,23.21,23.02,22.84,22.46,N/A,N/A -2012,5,5,13,30,101390,100230,99100,86.83,0,5.0600000000000005,5.44,5.53,5.58,5.62,5.65,5.67,5.69,5.72,198.51,198.44,198.45000000000002,198.46,198.47,198.47,198.48000000000002,198.49,198.49,24.310000000000002,23.97,23.8,23.6,23.41,23.22,23.02,22.84,22.45,N/A,N/A -2012,5,5,14,30,101370,100210,99090,89.34,0,6.36,6.88,7.01,7.08,7.12,7.16,7.18,7.2,7.22,171.27,171.5,171.61,171.72,171.8,171.88,171.96,172.05,172.22,24.39,24.060000000000002,23.89,23.69,23.5,23.31,23.12,22.93,22.55,N/A,N/A -2012,5,5,15,30,101380,100220,99090,89.51,0,6.68,7.25,7.38,7.45,7.5,7.53,7.55,7.5600000000000005,7.58,168.62,168.77,168.8,168.84,168.88,168.92000000000002,168.96,169,169.07,24.46,24.12,23.94,23.740000000000002,23.55,23.36,23.17,22.98,22.6,N/A,N/A -2012,5,5,16,30,101430,100270,99140,88.01,0,6.47,7.0200000000000005,7.15,7.21,7.25,7.28,7.3,7.3100000000000005,7.3100000000000005,182.8,182.37,182.21,182.08,181.98,181.89000000000001,181.81,181.75,181.63,24.69,24.37,24.2,24,23.81,23.62,23.42,23.240000000000002,22.86,N/A,N/A -2012,5,5,17,30,101420,100260,99130,88.33,0,6.33,6.9,7.03,7.11,7.16,7.19,7.21,7.23,7.25,179.36,179.58,179.65,179.70000000000002,179.74,179.77,179.81,179.84,179.9,24.75,24.43,24.25,24.060000000000002,23.86,23.68,23.48,23.3,22.91,N/A,N/A -2012,5,5,18,30,101420,100260,99130,89.13,0,5.29,5.7700000000000005,5.9,5.98,6.04,6.08,6.12,6.140000000000001,6.18,181.73,181.64000000000001,181.6,181.59,181.58,181.57,181.57,181.58,181.59,24.830000000000002,24.51,24.34,24.14,23.95,23.76,23.56,23.38,22.990000000000002,N/A,N/A -2012,5,5,19,30,101410,100250,99130,89.69,0,5.96,6.45,6.5600000000000005,6.61,6.640000000000001,6.66,6.67,6.67,6.67,168.03,168.13,168.21,168.28,168.34,168.4,168.44,168.48,168.56,24.89,24.560000000000002,24.39,24.19,24,23.81,23.61,23.43,23.05,N/A,N/A -2012,5,5,20,30,101370,100210,99090,90.51,0,6.36,6.93,7.07,7.140000000000001,7.19,7.22,7.23,7.24,7.24,157.88,158.06,158.22,158.38,158.54,158.69,158.83,158.96,159.24,24.79,24.46,24.29,24.09,23.91,23.72,23.52,23.34,22.96,N/A,N/A -2012,5,5,21,30,101330,100170,99050,91.45,0,5.62,6.1000000000000005,6.22,6.3,6.3500000000000005,6.4,6.43,6.46,6.53,165.53,165.96,166.22,166.49,166.75,167.01,167.28,167.56,168.21,24.88,24.57,24.400000000000002,24.2,24.02,23.830000000000002,23.64,23.46,23.09,N/A,N/A -2012,5,5,22,30,101310,100150,99030,91.57000000000001,0,6.63,7.25,7.390000000000001,7.47,7.5200000000000005,7.55,7.5600000000000005,7.57,7.5600000000000005,174,174.28,174.32,174.35,174.37,174.38,174.39000000000001,174.39000000000001,174.37,24.88,24.57,24.41,24.21,24.02,23.84,23.64,23.46,23.080000000000002,N/A,N/A -2012,5,5,23,30,101270,100120,99000,90.02,0,6.78,7.37,7.49,7.55,7.58,7.59,7.59,7.59,7.57,168.21,168.22,168.33,168.49,168.66,168.85,169.08,169.3,169.89000000000001,24.87,24.57,24.400000000000002,24.21,24.02,23.84,23.64,23.46,23.09,N/A,N/A -2012,5,6,0,30,101250,100090,98970,92.14,0,6.65,7.25,7.4,7.48,7.54,7.57,7.6000000000000005,7.63,7.67,160.45000000000002,160.65,160.74,160.84,160.94,161.03,161.14000000000001,161.23,161.49,24.72,24.41,24.240000000000002,24.05,23.86,23.67,23.48,23.3,22.91,N/A,N/A -2012,5,6,1,30,101210,100060,98930,91.61,0,6.75,7.34,7.48,7.55,7.6000000000000005,7.640000000000001,7.67,7.7,7.79,163.04,163.32,163.53,163.76,163.99,164.23,164.53,164.82,165.65,24.63,24.32,24.150000000000002,23.95,23.77,23.580000000000002,23.39,23.2,22.830000000000002,N/A,N/A -2012,5,6,2,30,101240,100080,98960,92.06,0,7.03,7.640000000000001,7.78,7.83,7.86,7.87,7.86,7.8500000000000005,7.8,163.72,164.02,164.18,164.37,164.55,164.73,164.93,165.14000000000001,165.65,24.64,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.39,23.2,22.830000000000002,N/A,N/A -2012,5,6,3,30,101270,100110,98990,91.82000000000001,0,7.19,7.8500000000000005,8.02,8.11,8.17,8.21,8.23,8.25,8.28,170.22,170.11,170.07,170.05,170.04,170.03,170.04,170.04,170.07,24.67,24.35,24.18,23.98,23.79,23.6,23.41,23.22,22.84,N/A,N/A -2012,5,6,4,30,101240,100080,98960,88.94,0,7.87,8.67,8.870000000000001,8.98,9.06,9.11,9.14,9.16,9.17,167.41,167.99,168.21,168.4,168.57,168.72,168.86,168.99,169.27,24.79,24.48,24.32,24.12,23.94,23.75,23.56,23.38,22.990000000000002,N/A,N/A -2012,5,6,5,30,101270,100110,98980,88.7,0,8.14,8.93,9.120000000000001,9.200000000000001,9.25,9.28,9.28,9.27,9.22,182.33,182.19,182.09,182.01,181.93,181.87,181.81,181.75,181.63,24.76,24.45,24.28,24.09,23.900000000000002,23.71,23.52,23.34,22.95,N/A,N/A -2012,5,6,6,30,101270,100110,98980,87.11,0,7.57,8.290000000000001,8.49,8.59,8.67,8.72,8.76,8.790000000000001,8.82,189.32,189.45000000000002,189.53,189.61,189.68,189.76,189.83,189.89000000000001,190.04,24.71,24.400000000000002,24.23,24.03,23.85,23.66,23.46,23.28,22.900000000000002,N/A,N/A -2012,5,6,7,30,101300,100140,99020,88.46000000000001,0,6.87,7.48,7.62,7.7,7.76,7.79,7.82,7.83,7.86,184.8,184.86,184.89000000000001,184.93,184.99,185.05,185.12,185.18,185.36,24.6,24.28,24.1,23.91,23.72,23.53,23.330000000000002,23.150000000000002,22.76,N/A,N/A -2012,5,6,8,30,101290,100130,99010,89.46000000000001,0,6.7,7.3100000000000005,7.46,7.54,7.6000000000000005,7.640000000000001,7.67,7.69,7.72,192.74,193.02,193.20000000000002,193.39000000000001,193.58,193.76,193.95000000000002,194.13,194.56,24.61,24.28,24.11,23.91,23.72,23.54,23.34,23.16,22.78,N/A,N/A -2012,5,6,9,30,101290,100130,99010,88.27,0,6.22,6.79,6.93,7.01,7.07,7.1000000000000005,7.140000000000001,7.17,7.21,201.67000000000002,201.84,201.89000000000001,201.96,202.03,202.11,202.19,202.27,202.45000000000002,24.71,24.400000000000002,24.23,24.04,23.85,23.66,23.47,23.28,22.900000000000002,N/A,N/A -2012,5,6,10,30,101250,100090,98970,88.78,0,6.7,7.28,7.41,7.48,7.5200000000000005,7.55,7.57,7.58,7.6000000000000005,209.13,209.18,209.22,209.27,209.31,209.36,209.41,209.46,209.58,24.66,24.34,24.18,23.98,23.79,23.6,23.41,23.22,22.84,N/A,N/A -2012,5,6,11,30,101250,100090,98970,88.46000000000001,0,5.99,6.5200000000000005,6.65,6.72,6.78,6.8100000000000005,6.84,6.86,6.9,201.44,201.53,201.6,201.67000000000002,201.73000000000002,201.79,201.85,201.91,202.06,24.67,24.35,24.18,23.990000000000002,23.8,23.61,23.41,23.23,22.85,N/A,N/A -2012,5,6,12,30,101310,100150,99020,88.63,0,4.51,4.84,4.92,4.95,4.98,4.99,5,5,5,171.63,172.08,172.4,172.66,172.9,173.11,173.31,173.5,173.9,24.64,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.38,23.2,22.82,N/A,N/A -2012,5,6,13,30,101350,100190,99060,88.22,0,4.04,4.3500000000000005,4.42,4.46,4.49,4.5,4.5200000000000005,4.53,4.54,181.59,181.85,181.9,181.99,182.08,182.18,182.29,182.39000000000001,182.64000000000001,24.64,24.330000000000002,24.16,23.96,23.77,23.580000000000002,23.39,23.2,22.82,N/A,N/A -2012,5,6,14,30,101340,100180,99060,88.82000000000001,0,4.83,5.18,5.26,5.3,5.32,5.34,5.3500000000000005,5.3500000000000005,5.36,183.93,184.09,184.22,184.37,184.5,184.65,184.8,184.94,185.31,24.6,24.28,24.11,23.91,23.72,23.53,23.34,23.150000000000002,22.77,N/A,N/A -2012,5,6,15,30,101330,100170,99050,88.28,0,5.1000000000000005,5.48,5.5600000000000005,5.61,5.63,5.65,5.66,5.67,5.68,170.87,171.45000000000002,171.8,172.16,172.48,172.79,173.13,173.45000000000002,174.17000000000002,24.68,24.35,24.18,23.990000000000002,23.8,23.61,23.42,23.240000000000002,22.86,N/A,N/A -2012,5,6,16,30,101390,100230,99100,89.26,0,5.28,5.69,5.8,5.8500000000000005,5.9,5.93,5.95,5.97,6,160.52,161.05,161.32,161.59,161.83,162.06,162.3,162.53,162.99,24.71,24.37,24.2,24,23.81,23.62,23.43,23.240000000000002,22.86,N/A,N/A -2012,5,6,17,30,101400,100240,99110,86.47,0,5.51,5.9,5.98,6,6.0200000000000005,6.0200000000000005,6.01,6,5.97,171.67000000000002,171.94,172.04,172.14000000000001,172.25,172.35,172.46,172.56,172.79,24.8,24.46,24.29,24.09,23.900000000000002,23.71,23.52,23.34,22.95,N/A,N/A -2012,5,6,18,30,101380,100220,99090,87.96000000000001,0,5.26,5.64,5.71,5.75,5.7700000000000005,5.79,5.8,5.8,5.8,158.78,158.85,158.94,159.07,159.21,159.35,159.5,159.66,160.04,24.7,24.35,24.18,23.98,23.78,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A -2012,5,6,19,30,101350,100190,99070,88.98,0,6.3,6.88,7.0200000000000005,7.11,7.18,7.22,7.25,7.2700000000000005,7.3,158.97,158.98,159.03,159.08,159.13,159.18,159.22,159.27,159.36,24.79,24.45,24.28,24.080000000000002,23.89,23.7,23.5,23.32,22.93,N/A,N/A -2012,5,6,20,30,101320,100160,99040,88.8,0,6.390000000000001,6.95,7.08,7.140000000000001,7.19,7.21,7.23,7.25,7.25,163.94,163.79,163.79,163.82,163.85,163.89000000000001,163.94,163.99,164.12,24.72,24.39,24.22,24.02,23.830000000000002,23.64,23.45,23.26,22.88,N/A,N/A -2012,5,6,21,30,101290,100130,99000,87.52,0,6.63,7.19,7.3100000000000005,7.37,7.41,7.43,7.44,7.45,7.44,164.03,164.36,164.5,164.62,164.73,164.82,164.9,164.98,165.12,24.7,24.38,24.2,24,23.81,23.63,23.43,23.240000000000002,22.86,N/A,N/A -2012,5,6,22,30,101200,100040,98920,85.83,0,7.46,8.16,8.33,8.42,8.48,8.52,8.55,8.58,8.620000000000001,171.31,171.57,171.74,171.93,172.11,172.29,172.5,172.69,173.19,24.75,24.45,24.28,24.09,23.900000000000002,23.72,23.53,23.35,22.98,N/A,N/A -2012,5,6,23,30,101200,100040,98920,85.93,0,7.09,7.76,7.930000000000001,8.02,8.08,8.11,8.13,8.14,8.120000000000001,173.47,173.18,173.09,173.06,173.04,173.04,173.06,173.08,173.17000000000002,24.79,24.48,24.310000000000002,24.11,23.92,23.73,23.54,23.35,22.97,N/A,N/A -2012,5,7,0,30,101160,100000,98880,87.10000000000001,0,6.53,7.1000000000000005,7.22,7.28,7.32,7.32,7.32,7.3100000000000005,7.2700000000000005,177.62,177.56,177.59,177.64000000000001,177.70000000000002,177.76,177.84,177.9,178.07,24.67,24.35,24.18,23.98,23.79,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A -2012,5,7,1,30,101260,100100,98980,86.79,0,4.34,4.67,4.76,4.8100000000000005,4.8500000000000005,4.87,4.88,4.89,4.9,189.68,189.28,189.12,189.01,188.95000000000002,188.92000000000002,188.93,188.96,189.09,24.650000000000002,24.34,24.17,23.97,23.78,23.59,23.39,23.2,22.82,N/A,N/A -2012,5,7,2,30,101340,100180,99050,82.06,0,3.13,3.35,3.39,3.41,3.42,3.42,3.42,3.42,3.42,233.32,232.8,232.59,232.44,232.31,232.20000000000002,232.09,232,231.82,24.86,24.57,24.400000000000002,24.21,24.02,23.84,23.64,23.46,23.07,N/A,N/A -2012,5,7,3,30,101300,100140,99020,81.03,0,0.99,1.01,1.01,1,0.99,0.98,0.97,0.97,0.9500000000000001,235.32,235.73000000000002,235.97,236.21,236.45000000000002,236.68,236.95000000000002,237.21,237.89000000000001,24.77,24.47,24.3,24.11,23.92,23.740000000000002,23.54,23.36,22.98,N/A,N/A -2012,5,7,4,30,101260,100100,98980,83.69,0,4.88,5.19,5.21,5.19,5.17,5.15,5.12,5.08,5,139.13,139.5,139.55,139.71,139.92000000000002,140.14000000000001,140.61,141.1,144.12,24.62,24.3,24.13,23.94,23.75,23.57,23.38,23.22,22.93,N/A,N/A -2012,5,7,5,30,101200,100040,98910,84.55,0,5.74,6.17,6.2700000000000005,6.3100000000000005,6.33,6.34,6.34,6.34,6.32,169.02,169.07,169.13,169.21,169.32,169.43,169.58,169.73,170.16,24.560000000000002,24.240000000000002,24.07,23.88,23.69,23.5,23.31,23.13,22.75,N/A,N/A -2012,5,7,6,30,101230,100070,98950,85.61,0,4.34,4.64,4.71,4.74,4.76,4.7700000000000005,4.78,4.78,4.79,178.62,178.71,178.92000000000002,179.12,179.31,179.51,179.73,179.93,180.47,24.52,24.2,24.03,23.830000000000002,23.64,23.45,23.26,23.080000000000002,22.7,N/A,N/A -2012,5,7,7,30,101200,100040,98910,84.64,0,4.36,4.66,4.72,4.75,4.78,4.79,4.8,4.8100000000000005,4.82,174.23,174.5,174.65,174.82,174.98,175.15,175.33,175.51,175.97,24.51,24.19,24.02,23.82,23.63,23.45,23.25,23.07,22.69,N/A,N/A -2012,5,7,8,30,101180,100020,98900,84.47,0,4.73,5.04,5.1000000000000005,5.13,5.14,5.15,5.15,5.15,5.14,180.68,180.93,181.08,181.24,181.4,181.56,181.75,181.94,182.44,24.5,24.17,24,23.8,23.61,23.42,23.23,23.05,22.66,N/A,N/A -2012,5,7,9,30,101180,100020,98890,86.98,0,5.19,5.57,5.65,5.69,5.71,5.73,5.74,5.75,5.76,191.31,191.49,191.63,191.77,191.91,192.04,192.20000000000002,192.34,192.74,24.48,24.150000000000002,23.98,23.78,23.59,23.400000000000002,23.21,23.02,22.64,N/A,N/A -2012,5,7,10,30,101160,100000,98880,86.26,0,4.5200000000000005,4.82,4.87,4.9,4.91,4.92,4.92,4.92,4.91,189.67000000000002,189.79,189.87,189.97,190.08,190.19,190.32,190.45000000000002,190.8,24.5,24.17,24,23.8,23.61,23.42,23.23,23.05,22.66,N/A,N/A -2012,5,7,11,30,101150,99990,98870,88.59,0,4.19,4.44,4.48,4.49,4.48,4.48,4.46,4.45,4.41,178.32,178.48,178.67000000000002,178.84,179.01,179.16,179.34,179.51,179.95000000000002,24.42,24.080000000000002,23.91,23.71,23.53,23.34,23.14,22.96,22.580000000000002,N/A,N/A -2012,5,7,12,30,101160,100000,98880,89.7,0,4.36,4.63,4.69,4.71,4.72,4.73,4.73,4.73,4.72,176.94,177.15,177.29,177.43,177.57,177.70000000000002,177.86,178.01,178.36,24.39,24.05,23.88,23.68,23.490000000000002,23.3,23.1,22.92,22.54,N/A,N/A -2012,5,7,13,30,101190,100030,98910,90.67,0,5.11,5.48,5.55,5.6000000000000005,5.63,5.65,5.66,5.67,5.69,180.77,180.83,180.8,180.76,180.73,180.70000000000002,180.69,180.68,180.70000000000002,24.47,24.14,23.96,23.76,23.57,23.38,23.18,22.990000000000002,22.61,N/A,N/A -2012,5,7,14,30,101250,100090,98970,89.02,0,4.28,4.48,4.5,4.5,4.49,4.47,4.45,4.43,4.38,176.68,177,177.39000000000001,177.94,178.57,179.29,180.38,181.55,185.64000000000001,24.580000000000002,24.26,24.09,23.900000000000002,23.71,23.53,23.35,23.17,22.84,N/A,N/A -2012,5,7,15,30,101280,100120,99000,89.66,0,4.63,4.91,4.96,4.96,4.96,4.95,4.93,4.91,4.87,180.27,180.48,180.54,180.61,180.68,180.76,180.86,180.96,181.25,24.62,24.29,24.12,23.92,23.740000000000002,23.55,23.36,23.18,22.830000000000002,N/A,N/A -2012,5,7,16,30,101280,100120,99000,88.63,0,4.79,5.1000000000000005,5.16,5.18,5.19,5.19,5.19,5.18,5.15,179.20000000000002,179.78,180.14000000000001,180.52,180.87,181.21,181.59,181.95000000000002,182.81,24.75,24.41,24.23,24.03,23.85,23.66,23.46,23.28,22.900000000000002,N/A,N/A -2012,5,7,17,30,101300,100140,99020,87.54,0,4.23,4.49,4.54,4.5600000000000005,4.57,4.58,4.58,4.58,4.58,180.8,181.05,181.19,181.33,181.46,181.59,181.73,181.86,182.19,24.86,24.51,24.34,24.14,23.95,23.76,23.56,23.38,22.990000000000002,N/A,N/A -2012,5,7,18,30,101300,100140,99020,87.62,0,4.48,4.74,4.79,4.8,4.8,4.8,4.79,4.7700000000000005,4.74,172.89000000000001,173.02,173.14000000000001,173.29,173.44,173.61,173.83,174.04,174.62,24.96,24.61,24.43,24.240000000000002,24.05,23.86,23.66,23.48,23.1,N/A,N/A -2012,5,7,19,30,101270,100110,98990,88.16,0,4.57,4.83,4.87,4.87,4.87,4.86,4.84,4.82,4.7700000000000005,187.88,187.43,187.14000000000001,186.82,186.51,186.20000000000002,185.86,185.54,184.79,25.1,24.75,24.580000000000002,24.38,24.19,24,23.8,23.62,23.240000000000002,N/A,N/A -2012,5,7,20,30,101230,100070,98950,89.37,0,5.36,5.76,5.86,5.92,5.95,5.98,5.99,6.01,6.0200000000000005,158.4,159.05,159.53,159.99,160.41,160.79,161.18,161.54,162.3,25.12,24.78,24.61,24.41,24.22,24.03,23.84,23.650000000000002,23.27,N/A,N/A -2012,5,7,21,30,101140,99990,98870,89.37,0,5.8100000000000005,6.23,6.3100000000000005,6.33,6.34,6.33,6.32,6.3100000000000005,6.28,174.8,175.02,175.09,175.22,175.37,175.55,175.78,176.02,176.72,24.93,24.61,24.44,24.240000000000002,24.05,23.87,23.67,23.490000000000002,23.13,N/A,N/A -2012,5,7,22,30,101110,99960,98840,89.42,0,5.15,5.53,5.59,5.62,5.63,5.63,5.63,5.62,5.6000000000000005,151.9,152.33,152.6,152.87,153.12,153.36,153.62,153.86,154.42000000000002,24.93,24.61,24.44,24.240000000000002,24.05,23.86,23.67,23.48,23.1,N/A,N/A -2012,5,7,23,30,101070,99910,98790,88.81,0,6.13,6.61,6.71,6.75,6.7700000000000005,6.78,6.78,6.7700000000000005,6.75,149.06,149.03,149.06,149.09,149.12,149.15,149.20000000000002,149.24,149.36,24.91,24.6,24.43,24.23,24.04,23.85,23.66,23.48,23.09,N/A,N/A -2012,5,8,0,30,101060,99910,98790,88.76,0,5.09,5.5,5.58,5.63,5.65,5.66,5.67,5.67,5.66,160.63,160.77,160.77,160.79,160.8,160.81,160.83,160.85,160.88,24.87,24.560000000000002,24.39,24.2,24.01,23.82,23.63,23.44,23.06,N/A,N/A -2012,5,8,1,30,101060,99910,98790,89.28,0,4.89,5.26,5.33,5.37,5.39,5.4,5.41,5.41,5.4,164.79,164.92000000000002,164.9,164.87,164.83,164.78,164.72,164.66,164.49,24.830000000000002,24.52,24.35,24.150000000000002,23.96,23.78,23.580000000000002,23.400000000000002,23.02,N/A,N/A -2012,5,8,2,30,101100,99950,98830,89.44,0,4.74,5.08,5.15,5.18,5.19,5.19,5.19,5.18,5.15,167.35,167.46,167.49,167.5,167.52,167.54,167.55,167.56,167.58,24.76,24.45,24.28,24.080000000000002,23.900000000000002,23.71,23.52,23.330000000000002,22.95,N/A,N/A -2012,5,8,3,30,101150,99990,98870,89.69,0,4.61,4.93,5,5.03,5.04,5.05,5.05,5.04,5.03,156.85,156.83,156.92000000000002,156.99,157.05,157.1,157.15,157.20000000000002,157.28,24.740000000000002,24.42,24.25,24.05,23.86,23.67,23.48,23.29,22.91,N/A,N/A -2012,5,8,4,30,101170,100010,98890,90.13,0,3.84,4.1,4.16,4.18,4.19,4.19,4.19,4.19,4.18,146.89000000000001,146.77,146.95000000000002,147.14000000000001,147.32,147.51,147.71,147.91,148.4,24.68,24.36,24.19,23.990000000000002,23.81,23.62,23.42,23.240000000000002,22.86,N/A,N/A -2012,5,8,5,30,101170,100010,98890,87.31,0,4.78,5.13,5.18,5.19,5.19,5.17,5.15,5.13,5.0600000000000005,161.93,161.74,161.64000000000001,161.53,161.42000000000002,161.32,161.22,161.12,160.93,24.76,24.45,24.27,24.080000000000002,23.89,23.7,23.5,23.32,22.93,N/A,N/A -2012,5,8,6,30,101270,100110,98990,87.58,0,3.56,3.72,3.74,3.73,3.71,3.69,3.66,3.63,3.54,171.66,171.99,172.23,172.5,172.74,172.99,173.27,173.54,174.23,24.71,24.39,24.23,24.04,23.85,23.67,23.48,23.3,22.94,N/A,N/A -2012,5,8,7,30,101280,100120,99000,87.83,0,1.73,1.81,1.82,1.83,1.83,1.82,1.82,1.81,1.79,173.01,173.68,174.02,174.54,175.09,175.70000000000002,176.44,177.19,179.1,24.69,24.38,24.21,24.01,23.81,23.63,23.43,23.240000000000002,22.86,N/A,N/A -2012,5,8,8,30,101260,100100,98970,84.44,0,1.33,1.22,1.1400000000000001,1.06,0.98,0.91,0.8300000000000001,0.76,0.62,93.7,94.44,94.94,95.23,95.13,94.82000000000001,93.72,92.52,85.73,24.650000000000002,24.330000000000002,24.16,23.96,23.77,23.580000000000002,23.38,23.2,22.81,N/A,N/A -2012,5,8,9,30,101250,100090,98960,82.57000000000001,0,1.4000000000000001,1.44,1.44,1.44,1.45,1.46,1.48,1.5,1.56,39.49,37.72,36.61,35.35,34.09,32.8,31.330000000000002,29.88,26.59,24.64,24.330000000000002,24.16,23.96,23.78,23.59,23.400000000000002,23.21,22.84,N/A,N/A -2012,5,8,10,30,101260,100100,98980,84.89,0,2.6,2.72,2.73,2.74,2.74,2.74,2.74,2.73,2.73,18.080000000000002,18.19,18.2,18.23,18.25,18.28,18.35,18.41,18.64,24.5,24.17,24,23.8,23.61,23.42,23.23,23.04,22.66,N/A,N/A -2012,5,8,11,30,101240,100080,98950,84.8,0,2.65,2.7800000000000002,2.8000000000000003,2.81,2.81,2.81,2.81,2.81,2.8000000000000003,31.36,31.66,31.77,31.89,32,32.09,32.19,32.27,32.46,24.41,24.080000000000002,23.91,23.71,23.52,23.330000000000002,23.14,22.95,22.57,N/A,N/A -2012,5,8,12,30,101250,100090,98960,90.99,0,5.55,5.86,5.9,5.89,5.87,5.83,5.79,5.74,5.63,45.660000000000004,45.980000000000004,46.14,46.300000000000004,46.46,46.63,46.83,47.02,47.5,23.86,23.48,23.3,23.1,22.91,22.72,22.52,22.330000000000002,21.96,N/A,N/A -2012,5,8,13,30,101260,100100,98970,92.07000000000001,0,5.07,5.34,5.38,5.38,5.37,5.3500000000000005,5.3100000000000005,5.2700000000000005,5.18,50.7,51.550000000000004,52.09,52.65,53.19,53.71,54.29,54.83,56.1,23.53,23.13,22.95,22.75,22.56,22.37,22.18,22,21.62,N/A,N/A -2012,5,8,14,30,101300,100130,99010,91.69,0,4.45,4.63,4.65,4.64,4.62,4.6000000000000005,4.57,4.54,4.46,45.69,47.31,48.35,49.35,50.27,51.14,52.02,52.83,54.52,23.38,23,22.82,22.62,22.43,22.25,22.05,21.87,21.5,N/A,N/A -2012,5,8,15,30,101320,100150,99020,97.81,0,5.83,6.05,6.05,5.98,5.9,5.8,5.68,5.5600000000000005,5.18,36.24,36.81,37.25,37.78,38.4,39.07,40.09,41.12,46.21,22.64,22.21,22.02,21.830000000000002,21.68,21.57,21.45,21.34,21.11,N/A,N/A -2012,5,8,16,30,101340,100180,99050,93.99,0,4.25,4.42,4.43,4.42,4.39,4.36,4.32,4.28,4.13,40.09,41.27,42.1,43.02,43.99,45.01,46.38,47.74,53.19,23.11,22.72,22.54,22.35,22.17,21.990000000000002,21.81,21.64,21.31,N/A,N/A -2012,5,8,17,30,101320,100160,99030,89.72,0,4.1,4.3100000000000005,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,4.29,61.14,61.730000000000004,62.1,62.49,62.85,63.21,63.61,63.99,64.92,23.66,23.28,23.09,22.89,22.7,22.51,22.32,22.13,21.75,N/A,N/A -2012,5,8,18,30,101340,100180,99050,86.09,0,2.57,2.68,2.7,2.7,2.7,2.7,2.7,2.7,2.68,99.96000000000001,100.35000000000001,100.61,100.93,101.3,101.72,102.3,102.91,105.34,24.16,23.81,23.63,23.44,23.25,23.07,22.89,22.71,22.38,N/A,N/A -2012,5,8,19,30,101280,100120,99000,84.33,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,3,112.54,113.24000000000001,113.58,114.01,114.47,114.98,115.66,116.37,118.74000000000001,24.46,24.11,23.93,23.740000000000002,23.55,23.37,23.18,23.01,22.66,N/A,N/A -2012,5,8,20,30,101240,100080,98960,86.96000000000001,0,4.58,4.82,4.86,4.86,4.8500000000000005,4.84,4.82,4.8,4.75,143.9,144.54,144.84,145.17000000000002,145.52,145.89000000000001,146.34,146.78,148.02,24.6,24.23,24.05,23.85,23.67,23.48,23.29,23.12,22.76,N/A,N/A -2012,5,8,21,30,101220,100060,98940,86.11,0,5.11,5.42,5.47,5.48,5.48,5.48,5.47,5.45,5.42,172.12,172.45000000000002,172.61,172.84,173.1,173.4,173.8,174.22,175.83,24.84,24.5,24.330000000000002,24.13,23.95,23.76,23.57,23.39,23.04,N/A,N/A -2012,5,8,22,30,101180,100020,98900,84.74,0,4.29,4.57,4.61,4.61,4.61,4.6000000000000005,4.58,4.5600000000000005,4.51,179.36,179.62,179.74,179.88,180.02,180.18,180.38,180.59,181.25,25.03,24.72,24.55,24.35,24.16,23.97,23.78,23.6,23.23,N/A,N/A -2012,5,8,23,30,101200,100050,98930,84.73,0,4.13,4.4,4.46,4.47,4.47,4.46,4.45,4.43,4.38,196.55,196.89000000000001,197.19,197.51,197.83,198.16,198.55,198.92000000000002,199.94,25.1,24.8,24.63,24.43,24.25,24.060000000000002,23.87,23.69,23.31,N/A,N/A -2012,5,9,0,30,101210,100050,98930,86.09,0,3.84,4.09,4.14,4.15,4.15,4.15,4.14,4.13,4.1,221.25,221.57,221.73000000000002,221.94,222.16,222.42000000000002,222.76,223.12,224.3,24.98,24.68,24.52,24.32,24.13,23.94,23.75,23.57,23.2,N/A,N/A -2012,5,9,1,30,101210,100050,98930,87.11,0,3.95,4.2,4.24,4.26,4.2700000000000005,4.2700000000000005,4.2700000000000005,4.26,4.25,258.34000000000003,259.07,259.41,259.77,260.11,260.47,260.87,261.26,262.27,24.86,24.55,24.38,24.18,24,23.81,23.62,23.43,23.06,N/A,N/A -2012,5,9,2,30,101250,100090,98970,84.41,0,4.44,4.74,4.79,4.8100000000000005,4.82,4.82,4.82,4.8100000000000005,4.78,305.47,306.31,306.51,306.64,306.73,306.8,306.86,306.90000000000003,306.93,24.95,24.64,24.47,24.28,24.09,23.900000000000002,23.71,23.52,23.13,N/A,N/A -2012,5,9,3,30,101280,100120,98990,83.11,0,5.78,6.140000000000001,6.22,6.24,6.25,6.24,6.23,6.21,6.15,350.40000000000003,350.38,350.41,350.45,350.48,350.52,350.58,350.64,350.79,24.04,23.69,23.51,23.31,23.13,22.95,22.76,22.59,22.240000000000002,N/A,N/A -2012,5,9,4,30,101260,100100,98970,83.43,0,4.94,5.26,5.32,5.3500000000000005,5.37,5.39,5.43,5.48,5.84,2.69,2.89,2.99,3.1,3.22,3.35,3.5500000000000003,3.7800000000000002,5.0200000000000005,24.150000000000002,23.8,23.63,23.43,23.25,23.07,22.88,22.71,22.400000000000002,N/A,N/A -2012,5,9,5,30,101280,100120,98990,81.78,0,5.65,6.01,6.09,6.13,6.17,6.22,6.33,6.45,7.9,5.22,5.45,5.5600000000000005,5.72,5.91,6.140000000000001,6.53,6.97,9.44,23.92,23.56,23.39,23.2,23.02,22.85,22.69,22.54,22.5,N/A,N/A -2012,5,9,6,30,101310,100140,99020,81.84,0,6.6000000000000005,7.0600000000000005,7.16,7.2,7.24,7.2700000000000005,7.3100000000000005,7.36,7.65,359.81,359.83,359.87,359.93,359.99,0.07,0.18,0.29,0.77,23.990000000000002,23.62,23.45,23.25,23.06,22.88,22.7,22.52,22.2,N/A,N/A -2012,5,9,7,30,101340,100180,99040,82.21000000000001,0,7.49,8.040000000000001,8.17,8.23,8.28,8.33,8.41,8.5,9.06,0.44,0.51,0.63,0.77,0.9400000000000001,1.12,1.41,1.72,3.36,23.67,23.27,23.1,22.91,22.73,22.55,22.38,22.22,22,N/A,N/A -2012,5,9,8,30,101340,100180,99050,84.56,0,7.82,8.38,8.51,8.55,8.58,8.59,8.6,8.61,8.67,357.11,357.33,357.48,357.64,357.82,358.03000000000003,358.3,358.58,359.58,23.57,23.16,22.98,22.77,22.59,22.400000000000002,22.22,22.04,21.7,N/A,N/A -2012,5,9,9,30,101340,100180,99050,85.18,0,6.72,7.19,7.29,7.34,7.38,7.390000000000001,7.41,7.43,7.48,17.86,18.05,18.14,18.23,18.330000000000002,18.42,18.54,18.66,19.01,23.53,23.13,22.95,22.740000000000002,22.55,22.37,22.17,21.990000000000002,21.62,N/A,N/A -2012,5,9,10,30,101390,100230,99090,85.98,0,5.98,6.34,6.41,6.43,6.44,6.43,6.42,6.41,6.38,21.03,21.2,21.330000000000002,21.45,21.57,21.68,21.81,21.93,22.240000000000002,23.36,22.96,22.77,22.56,22.37,22.19,21.990000000000002,21.81,21.44,N/A,N/A -2012,5,9,11,30,101480,100310,99170,86.27,0,5.29,5.59,5.64,5.66,5.66,5.66,5.64,5.63,5.59,359.61,359.72,359.93,0.14,0.32,0.49,0.68,0.86,1.29,23.150000000000002,22.740000000000002,22.55,22.35,22.150000000000002,21.97,21.77,21.59,21.21,N/A,N/A -2012,5,9,12,30,101460,100290,99150,89.39,0,6.03,6.37,6.43,6.45,6.44,6.43,6.41,6.390000000000001,6.34,6.61,6.7700000000000005,6.9,7.05,7.2,7.36,7.5600000000000005,7.76,8.290000000000001,22.5,22.06,21.86,21.66,21.47,21.28,21.09,20.91,20.53,N/A,N/A -2012,5,9,13,30,101420,100250,99110,88.19,0,5.48,5.79,5.8500000000000005,5.87,5.87,5.88,5.88,5.87,5.88,33.88,34.31,34.47,34.660000000000004,34.84,35.03,35.26,35.480000000000004,36.07,22.580000000000002,22.150000000000002,21.96,21.76,21.57,21.38,21.19,21.01,20.64,N/A,N/A -2012,5,9,14,30,101480,100310,99180,84.51,0,6.390000000000001,6.7700000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,6.84,13.61,13.85,14.02,14.19,14.35,14.52,14.69,14.86,15.26,22.94,22.51,22.32,22.12,21.92,21.73,21.54,21.36,20.990000000000002,N/A,N/A -2012,5,9,15,30,101490,100320,99180,81.27,0,5.09,5.39,5.45,5.49,5.51,5.5200000000000005,5.53,5.54,5.55,15.83,15.91,15.88,15.84,15.82,15.8,15.780000000000001,15.76,15.73,23.13,22.73,22.54,22.330000000000002,22.14,21.95,21.75,21.57,21.19,N/A,N/A -2012,5,9,16,30,101470,100310,99170,77.89,0,2.92,3.08,3.13,3.17,3.2,3.23,3.27,3.31,3.39,22.05,21.84,21.75,21.650000000000002,21.55,21.45,21.32,21.19,20.900000000000002,23.7,23.34,23.16,22.96,22.77,22.580000000000002,22.39,22.21,21.84,N/A,N/A -2012,5,9,17,30,101460,100300,99170,76.19,0,0.51,0.54,0.56,0.5700000000000001,0.59,0.61,0.64,0.66,0.73,50.910000000000004,47.01,43.75,40.58,37.76,35.03,32.33,29.75,24.37,24.080000000000002,23.740000000000002,23.56,23.36,23.17,22.98,22.79,22.6,22.22,N/A,N/A -2012,5,9,18,30,101430,100260,99140,76.21000000000001,0,0.8,0.78,0.75,0.72,0.6900000000000001,0.66,0.62,0.59,0.52,183.65,186.43,188.04,190.1,192.35,194.89000000000001,198.44,202.11,214.86,24.310000000000002,23.96,23.78,23.580000000000002,23.39,23.2,23.02,22.830000000000002,22.47,N/A,N/A -2012,5,9,19,30,101400,100240,99110,76.03,0,1.95,1.97,1.94,1.8900000000000001,1.84,1.79,1.72,1.6500000000000001,1.43,192.99,193.84,194.51,195.43,196.5,197.78,199.79,201.93,212.86,24.580000000000002,24.22,24.05,23.85,23.67,23.48,23.3,23.12,22.78,N/A,N/A -2012,5,9,20,30,101350,100190,99060,75.42,0,3.16,3.22,3.19,3.13,3.06,2.99,2.91,2.82,2.57,170.06,170.25,170.39000000000001,170.57,170.77,171,171.34,171.71,173.31,24.78,24.43,24.25,24.05,23.86,23.68,23.490000000000002,23.31,22.95,N/A,N/A -2012,5,9,21,30,101290,100130,99010,73.89,0,4.3100000000000005,4.4,4.34,4.21,4.07,3.9,3.63,3.36,2.2800000000000002,172.81,173.09,173.38,173.76,174.25,174.84,175.96,177.14000000000001,188.07,25.04,24.71,24.55,24.36,24.19,24.02,23.85,23.7,23.45,N/A,N/A -2012,5,9,22,30,101250,100090,98970,72.2,0,4.46,4.63,4.59,4.48,4.32,4.11,3.5,2.88,1.49,154.01,153.87,153.70000000000002,153.42000000000002,152.91,152.20000000000002,149.38,146.42000000000002,136.46,25.27,24.98,24.830000000000002,24.650000000000002,24.5,24.37,24.34,24.36,24.32,N/A,N/A -2012,5,9,23,30,101250,100090,98970,74.52,0,4.51,4.71,4.69,4.63,4.57,4.51,3.64,2.74,1.9000000000000001,166.88,166.86,166.83,166.78,166.75,166.72,163.5,160.08,155.48,25.26,24.97,24.810000000000002,24.62,24.45,24.28,24.310000000000002,24.43,24.45,N/A,N/A -2012,5,10,0,30,101260,100100,98980,74.39,0,4.44,4.68,4.7,4.67,4.63,4.59,4.55,4.51,2.54,180.18,180.25,180.22,180.20000000000002,180.20000000000002,180.20000000000002,180.25,180.3,178.34,25.22,24.94,24.78,24.580000000000002,24.400000000000002,24.21,24.02,23.84,23.94,N/A,N/A -2012,5,10,1,30,101240,100080,98960,75.68,0,4.65,4.94,4.98,4.97,4.96,4.93,4.89,4.8500000000000005,4.72,184.64000000000001,184.52,184.44,184.37,184.3,184.21,184.11,184.02,183.72,25.11,24.810000000000002,24.650000000000002,24.45,24.26,24.080000000000002,23.89,23.71,23.35,N/A,N/A -2012,5,10,2,30,101280,100120,99000,74.24,0,3.36,3.5100000000000002,3.52,3.49,3.46,3.42,3.36,3.3000000000000003,2.92,192.72,192.17000000000002,191.8,191.36,190.87,190.31,189.36,188.33,177.6,25.16,24.87,24.71,24.52,24.34,24.16,23.98,23.81,23.6,N/A,N/A -2012,5,10,3,30,101270,100110,98990,73.92,0,1.57,1.6,1.59,1.56,1.54,1.5,1.45,1.3900000000000001,1.01,198.37,197.56,197.03,196.44,195.83,195.18,194.27,193.38,172.76,25.080000000000002,24.79,24.62,24.43,24.25,24.07,23.89,23.72,23.51,N/A,N/A -2012,5,10,4,30,101270,100110,98990,73.60000000000001,0,0.64,0.64,0.62,0.6,0.5700000000000001,0.54,0.64,0.8200000000000001,1.98,286.16,289.99,293.11,297.96,306.69,318.52,340.41,10.66,42.03,25.060000000000002,24.77,24.62,24.43,24.27,24.11,24,23.91,23.85,N/A,N/A -2012,5,10,5,30,101270,100110,98990,74.44,0,1.72,1.79,1.8,1.79,1.79,1.79,1.79,1.78,1.77,335.99,337.49,338.36,339.3,340.19,341.07,342.05,343.01,346.04,25.03,24.72,24.560000000000002,24.36,24.18,23.990000000000002,23.79,23.61,23.240000000000002,N/A,N/A -2012,5,10,6,30,101280,100120,98990,73.11,0,2.61,2.7600000000000002,2.8000000000000003,2.82,2.84,2.86,2.89,2.91,2.97,15.02,16.12,16.77,17.47,18.17,18.89,19.73,20.55,22.650000000000002,25.150000000000002,24.84,24.67,24.47,24.28,24.1,23.91,23.73,23.36,N/A,N/A -2012,5,10,7,30,101290,100130,99010,75.38,0,3.75,3.99,4.05,4.08,4.11,4.13,4.14,4.16,4.18,41.47,41.83,41.96,42.1,42.230000000000004,42.35,42.49,42.62,42.92,25.13,24.8,24.63,24.43,24.240000000000002,24.05,23.85,23.67,23.28,N/A,N/A -2012,5,10,8,30,101250,100090,98970,73.99,0,4.54,4.86,4.93,4.97,5,5.0200000000000005,5.04,5.0600000000000005,5.09,62.25,62.59,62.81,63,63.2,63.39,63.6,63.79,64.24,25.18,24.85,24.68,24.48,24.29,24.1,23.91,23.72,23.34,N/A,N/A -2012,5,10,9,30,101270,100110,98990,71.25,0,6.28,6.82,6.97,7.05,7.11,7.16,7.2,7.23,7.28,80.83,81.11,81.24,81.36,81.47,81.58,81.68,81.77,81.97,25.43,25.12,24.94,24.75,24.560000000000002,24.37,24.17,23.990000000000002,23.6,N/A,N/A -2012,5,10,10,30,101270,100110,98980,70.82000000000001,0,7.640000000000001,8.3,8.46,8.53,8.58,8.6,8.620000000000001,8.620000000000001,8.620000000000001,84.9,85.04,85.14,85.24,85.33,85.42,85.5,85.57000000000001,85.72,25.490000000000002,25.18,25.01,24.8,24.61,24.43,24.23,24.04,23.66,N/A,N/A -2012,5,10,11,30,101280,100120,99000,71.99,0,7.96,8.65,8.8,8.88,8.94,8.97,8.98,8.99,9,87,87.27,87.4,87.54,87.66,87.78,87.9,88.01,88.23,25.240000000000002,24.900000000000002,24.73,24.53,24.330000000000002,24.14,23.95,23.76,23.37,N/A,N/A -2012,5,10,12,30,101280,100120,99000,73.60000000000001,0,7.15,7.7700000000000005,7.92,8,8.06,8.1,8.13,8.15,8.18,89.69,90.08,90.3,90.53,90.73,90.93,91.12,91.3,91.68,25.2,24.86,24.69,24.490000000000002,24.29,24.1,23.91,23.72,23.34,N/A,N/A -2012,5,10,13,30,101310,100150,99030,72.13,0,7.68,8.36,8.540000000000001,8.63,8.700000000000001,8.74,8.78,8.8,8.84,96.41,96.7,96.85000000000001,97,97.13,97.25,97.38,97.5,97.73,25.32,24.990000000000002,24.82,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A -2012,5,10,14,30,101300,100150,99020,74.02,0,7.94,8.64,8.81,8.91,8.97,9.01,9.040000000000001,9.06,9.09,100.33,100.58,100.78,100.97,101.14,101.3,101.46000000000001,101.61,101.91,25.310000000000002,24.97,24.8,24.6,24.41,24.22,24.02,23.830000000000002,23.45,N/A,N/A -2012,5,10,15,30,101320,100160,99030,72.18,0,7.03,7.61,7.75,7.8100000000000005,7.86,7.890000000000001,7.9,7.91,7.92,115.35000000000001,115.05,114.9,114.76,114.61,114.48,114.34,114.22,113.96000000000001,25.44,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A -2012,5,10,16,30,101320,100160,99040,73.89,0,7.01,7.59,7.72,7.79,7.83,7.86,7.88,7.890000000000001,7.9,109.56,109.64,109.69,109.72,109.74000000000001,109.75,109.76,109.77,109.78,25.39,25.060000000000002,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A -2012,5,10,17,30,101280,100130,99000,74.76,0,6.73,7.29,7.43,7.51,7.57,7.61,7.640000000000001,7.66,7.69,108.67,109.23,109.51,109.72,109.89,110.03,110.15,110.26,110.43,25.42,25.080000000000002,24.91,24.71,24.52,24.330000000000002,24.13,23.94,23.56,N/A,N/A -2012,5,10,18,30,101310,100150,99030,74.98,0,7.32,7.94,8.08,8.15,8.2,8.23,8.25,8.27,8.28,111.12,111.26,111.4,111.56,111.72,111.89,112.06,112.22,112.56,25.39,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.91,23.53,N/A,N/A -2012,5,10,19,30,101250,100100,98970,78.32000000000001,0,6.92,7.55,7.71,7.8,7.86,7.9,7.930000000000001,7.95,7.97,109.77,110.01,110.03,110.03,110.01,109.99000000000001,109.96000000000001,109.93,109.86,25.36,25.02,24.85,24.650000000000002,24.46,24.26,24.07,23.88,23.490000000000002,N/A,N/A -2012,5,10,20,30,101160,100000,98880,76.73,0,8.92,9.75,9.96,10.07,10.14,10.18,10.21,10.22,10.24,110.81,111,111.16,111.31,111.43,111.55,111.66,111.76,111.97,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.81,23.43,N/A,N/A -2012,5,10,21,30,101130,99980,98860,78.26,0,8.05,8.8,8.99,9.1,9.18,9.24,9.28,9.31,9.36,117.21000000000001,117.33,117.4,117.47,117.54,117.60000000000001,117.65,117.7,117.81,25.44,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A -2012,5,10,22,30,101030,99880,98760,81.18,0,8.69,9.52,9.73,9.85,9.93,9.98,10.03,10.06,10.11,110.04,110.28,110.43,110.57000000000001,110.7,110.83,110.95,111.08,111.33,25.400000000000002,25.060000000000002,24.89,24.68,24.490000000000002,24.3,24.11,23.92,23.54,N/A,N/A -2012,5,10,23,30,101030,99880,98760,82.74,0,9.56,10.49,10.75,10.89,10.98,11.040000000000001,11.08,11.11,11.13,114.4,114.37,114.35000000000001,114.3,114.26,114.2,114.14,114.09,113.96000000000001,25.37,25.04,24.86,24.650000000000002,24.46,24.27,24.07,23.89,23.5,N/A,N/A -2012,5,11,0,30,101010,99860,98740,83.82000000000001,0,8.4,9.23,9.47,9.61,9.71,9.8,9.86,9.92,10.01,122.79,122.89,122.89,122.88,122.87,122.86,122.85000000000001,122.84,122.81,25.330000000000002,25,24.830000000000002,24.62,24.43,24.240000000000002,24.05,23.86,23.48,N/A,N/A -2012,5,11,1,30,101000,99850,98730,82.92,0,8.05,8.81,9.040000000000001,9.16,9.25,9.3,9.34,9.38,9.41,119.53,119.23,119.24000000000001,119.31,119.38,119.46000000000001,119.56,119.67,119.91,25.580000000000002,25.26,25.1,24.89,24.71,24.51,24.32,24.13,23.75,N/A,N/A -2012,5,11,2,30,100980,99830,98710,82.78,0,9.040000000000001,9.870000000000001,10.07,10.17,10.24,10.290000000000001,10.32,10.34,10.38,126.28,126.33,126.42,126.49000000000001,126.57000000000001,126.64,126.72,126.8,127.04,25.61,25.29,25.12,24.93,24.740000000000002,24.560000000000002,24.37,24.19,23.830000000000002,N/A,N/A -2012,5,11,3,30,100960,99810,98690,83,0,9.88,10.950000000000001,11.22,11.38,11.49,11.57,11.620000000000001,11.66,11.72,131.92000000000002,132.15,132.27,132.38,132.48,132.56,132.64000000000001,132.71,132.86,25.68,25.36,25.18,24.98,24.79,24.61,24.41,24.22,23.84,N/A,N/A -2012,5,11,4,30,100930,99780,98660,83.94,0,9.56,10.540000000000001,10.790000000000001,10.93,11.03,11.1,11.14,11.18,11.22,134.97,135.03,135.04,135.04,135.04,135.03,135.02,135.01,134.99,25.6,25.28,25.11,24.91,24.72,24.53,24.34,24.150000000000002,23.78,N/A,N/A -2012,5,11,5,30,100980,99830,98710,85.58,0,7.79,8.66,8.91,9.08,9.21,9.31,9.38,9.450000000000001,9.56,159.96,159.70000000000002,159.53,159.4,159.3,159.21,159.14000000000001,159.08,159,25.67,25.36,25.2,25,24.82,24.63,24.44,24.26,23.88,N/A,N/A -2012,5,11,6,30,100960,99810,98700,82.41,0,8.3,9.11,9.31,9.42,9.5,9.55,9.59,9.61,9.63,153.01,153.18,153.24,153.29,153.32,153.35,153.37,153.39000000000001,153.42000000000002,25.67,25.38,25.21,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.89,N/A,N/A -2012,5,11,7,30,100980,99820,98700,85.64,85,6.19,7.05,7.21,7.34,7.43,7.51,7.5600000000000005,7.6000000000000005,7.65,154.57,155,154.70000000000002,154.45000000000002,154.15,153.89000000000001,153.61,153.35,152.8,25.04,24.73,24.53,24.36,24.150000000000002,23.97,23.78,23.59,23.22,N/A,N/A -2012,5,11,8,30,101070,99900,98760,88.84,2.2,6.41,6.49,6.390000000000001,6.19,5.96,5.69,5.3,4.92,3.93,37.87,38.47,38.95,39.62,40.49,41.59,43.92,46.37,55.34,21.830000000000002,21.38,21.2,21.03,20.88,20.75,20.66,20.59,20.69,N/A,N/A -2012,5,11,9,30,101050,99890,98760,89.76,0,5,5.1000000000000005,5.04,4.93,4.65,4.25,4,3.8200000000000003,3.52,63.870000000000005,64.67,65.44,66.99,76.60000000000001,92.41,101.83,108.28,120.91,22.73,22.35,22.19,22.03,22.12,22.42,22.6,22.72,22.54,N/A,N/A -2012,5,11,10,30,101030,99870,98740,85.92,0,6.6000000000000005,6.96,6.98,6.93,6.87,6.8,6.7,6.6000000000000005,6.32,97.11,97.9,98.23,98.68,99.19,99.76,100.63,101.52,105.83,23.64,23.23,23.05,22.85,22.67,22.490000000000002,22.3,22.14,21.81,N/A,N/A -2012,5,11,11,30,101010,99850,98730,88.10000000000001,0,6.04,6.36,6.36,6.3100000000000005,6.25,6.17,6.07,5.97,5.7,106.64,108.83,110.14,111.56,112.93,114.33,115.89,117.41,122.09,24.2,23.82,23.64,23.44,23.25,23.06,22.86,22.68,22.3,N/A,N/A -2012,5,11,12,30,101070,99910,98800,83.92,0.7000000000000001,6.96,7.59,7.73,7.8,7.8500000000000005,7.87,7.890000000000001,7.9,7.9,174.11,173.91,173.86,173.84,173.82,173.81,173.81,173.82,173.86,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.52,24.32,24.14,23.76,N/A,N/A -2012,5,11,13,30,101130,99970,98860,82.94,0,7.8,8.55,8.73,8.84,8.9,8.950000000000001,8.98,9,9.03,174.41,174.16,174.17000000000002,174.16,174.13,174.11,174.08,174.05,173.97,25.67,25.37,25.2,25.01,24.82,24.63,24.44,24.25,23.88,N/A,N/A -2012,5,11,14,30,101210,100060,98940,82.76,0,7.26,7.91,8.07,8.15,8.2,8.23,8.25,8.26,8.27,166.74,166.98,167.1,167.18,167.24,167.3,167.35,167.39000000000001,167.45000000000002,25.71,25.42,25.26,25.060000000000002,24.87,24.68,24.490000000000002,24.310000000000002,23.93,N/A,N/A -2012,5,11,15,30,101260,100110,98990,81.88,0,7.7,8.46,8.66,8.78,8.870000000000001,8.93,8.98,9.01,9.07,170.88,170.93,170.93,170.93,170.94,170.94,170.94,170.94,170.95000000000002,25.740000000000002,25.44,25.28,25.080000000000002,24.900000000000002,24.71,24.52,24.330000000000002,23.95,N/A,N/A -2012,5,11,16,30,101270,100110,98990,84.06,0,7.82,8.57,8.76,8.86,8.93,8.97,9,9.02,9.040000000000001,162.9,162.8,162.84,162.9,162.97,163.04,163.12,163.20000000000002,163.38,25.62,25.310000000000002,25.14,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A -2012,5,11,17,30,101280,100120,99000,83.88,0,7.3500000000000005,8.07,8.25,8.36,8.44,8.5,8.540000000000001,8.58,8.63,168.24,168.58,168.72,168.84,168.94,169.02,169.09,169.15,169.26,25.7,25.400000000000002,25.23,25.03,24.85,24.66,24.46,24.28,23.900000000000002,N/A,N/A -2012,5,11,18,30,101300,100140,99020,83.04,0,8.370000000000001,9.21,9.42,9.53,9.620000000000001,9.67,9.71,9.74,9.77,172.56,172.49,172.51,172.53,172.57,172.61,172.65,172.69,172.79,25.76,25.46,25.3,25.1,24.91,24.72,24.53,24.35,23.97,N/A,N/A -2012,5,11,19,30,101330,100180,99060,81.21000000000001,0,8.6,9.47,9.68,9.790000000000001,9.870000000000001,9.92,9.950000000000001,9.97,9.99,173.02,173.1,173.19,173.28,173.36,173.44,173.52,173.61,173.78,25.84,25.55,25.39,25.19,25.01,24.82,24.62,24.44,24.060000000000002,N/A,N/A -2012,5,11,20,30,101260,100100,98980,80.48,0,8.36,9.23,9.46,9.59,9.69,9.76,9.81,9.85,9.9,171.8,171.92000000000002,172,172.05,172.1,172.13,172.16,172.19,172.22,25.900000000000002,25.62,25.46,25.27,25.080000000000002,24.900000000000002,24.7,24.52,24.14,N/A,N/A -2012,5,11,21,30,101220,100070,98950,81.86,0,8.870000000000001,9.77,10.02,10.15,10.24,10.3,10.35,10.38,10.41,168.22,168.36,168.45000000000002,168.52,168.6,168.66,168.72,168.77,168.87,25.82,25.54,25.38,25.18,25,24.810000000000002,24.62,24.43,24.060000000000002,N/A,N/A -2012,5,11,22,30,101160,100010,98890,81.95,0,9.27,10.25,10.5,10.64,10.75,10.82,10.86,10.9,10.94,167.87,168,168.07,168.15,168.21,168.27,168.33,168.39000000000001,168.5,25.8,25.52,25.36,25.17,24.990000000000002,24.8,24.61,24.43,24.05,N/A,N/A -2012,5,11,23,30,101160,100010,98890,81.02,0,10.01,11.1,11.4,11.58,11.700000000000001,11.790000000000001,11.85,11.9,11.950000000000001,171.48,171.66,171.74,171.83,171.9,171.97,172.04,172.11,172.23,25.830000000000002,25.57,25.41,25.22,25.04,24.85,24.66,24.47,24.1,N/A,N/A -2012,5,12,0,30,101180,100030,98910,76.01,0,7.99,8.81,9.040000000000001,9.18,9.28,9.35,9.41,9.450000000000001,9.52,177.21,177.21,177.21,177.18,177.14000000000001,177.09,177.04,177,176.89000000000001,25.97,25.72,25.560000000000002,25.37,25.19,25.01,24.82,24.64,24.27,N/A,N/A -2012,5,12,1,30,101210,100050,98940,80.94,0,7.5600000000000005,8.36,8.59,8.74,8.84,8.92,8.98,9.03,9.09,162.36,162.59,162.77,162.91,163.03,163.12,163.21,163.28,163.42000000000002,25.86,25.6,25.45,25.26,25.080000000000002,24.89,24.7,24.51,24.14,N/A,N/A -2012,5,12,2,30,101350,100200,99080,79.45,0,5.86,6.48,6.66,6.78,6.88,6.95,7.01,7.07,7.140000000000001,170.53,170.51,170.51,170.52,170.55,170.57,170.61,170.63,170.71,25.990000000000002,25.73,25.57,25.38,25.2,25.01,24.82,24.63,24.25,N/A,N/A -2012,5,12,3,30,101360,100210,99090,81.05,0,6.12,6.640000000000001,6.75,6.8100000000000005,6.8500000000000005,6.87,6.890000000000001,6.91,6.93,182.56,183,183.16,183.29,183.4,183.5,183.58,183.65,183.76,25.900000000000002,25.63,25.48,25.28,25.1,24.92,24.73,24.54,24.17,N/A,N/A -2012,5,12,4,30,101420,100270,99150,79.98,0.4,6.7,7.32,7.46,7.54,7.58,7.61,7.63,7.640000000000001,7.640000000000001,212.21,211.84,211.71,211.67000000000002,211.65,211.67000000000002,211.71,211.76,211.89000000000001,26.01,25.76,25.6,25.400000000000002,25.22,25.04,24.85,24.66,24.29,N/A,N/A -2012,5,12,5,30,101350,100170,99030,89.82000000000001,200,9.82,10.32,10.35,10.31,10.25,10.19,10.1,9.99,9.5,15.88,12.4,10.85,9.120000000000001,7.11,5.17,2.62,0.19,354.28000000000003,21.23,20.69,20.5,20.330000000000002,20.17,20.02,19.88,19.76,19.56,N/A,N/A -2012,5,12,6,30,101400,100230,99090,83.35000000000001,0,1.75,1.86,1.9100000000000001,1.96,2.0100000000000002,2.05,2.82,4.08,5.51,192.1,191.68,191.78,191.89000000000001,192.31,192.96,191.67000000000002,189.31,184.58,22.53,22.16,21.990000000000002,21.79,21.6,21.400000000000002,21.56,21.79,22.47,N/A,N/A -2012,5,12,7,30,101510,100340,99210,83.96000000000001,0,2.11,2.14,2.13,2.11,2.08,2.06,2.04,2.0300000000000002,2.56,120.72,121.63,122.47,123.53,124.8,126.24000000000001,129.49,133.07,158.36,22.93,22.56,22.38,22.19,22,21.81,21.63,21.47,21.47,N/A,N/A -2012,5,12,8,30,101520,100350,99220,84.35000000000001,0,0.6900000000000001,0.67,0.64,0.6,0.5700000000000001,0.52,0.81,1.49,2.36,64.38,66.35,68.54,71.67,77.9,86.42,110.13,157.99,166.57,23.29,22.95,22.78,22.59,22.41,22.240000000000002,22.23,22.29,22.45,N/A,N/A -2012,5,12,9,30,101530,100370,99240,84.39,0,0.99,0.97,0.9400000000000001,0.9,0.86,0.81,1,1.3800000000000001,2.13,66.06,68.53,70.62,74,80.98,91.05,114.57000000000001,150.93,169.33,23.6,23.26,23.09,22.91,22.73,22.57,22.51,22.490000000000002,22.44,N/A,N/A -2012,5,12,10,30,101580,100410,99280,85.28,0,1.58,1.6,1.58,1.55,1.51,1.46,1.33,1.19,0.8300000000000001,42.31,42.46,42.58,42.800000000000004,43.18,43.7,46.300000000000004,49.21,146.85,23.740000000000002,23.41,23.240000000000002,23.04,22.85,22.67,22.490000000000002,22.330000000000002,22.25,N/A,N/A -2012,5,12,11,30,101580,100420,99290,85.8,0,0.26,0.27,0.28,0.3,0.35000000000000003,0.43,0.6,0.86,2.13,105.94,117.28,125.41,135.5,145.19,155.91,164.9,175.06,186.22,23.88,23.55,23.38,23.19,23.01,22.84,22.68,22.53,22.56,N/A,N/A -2012,5,12,12,30,101680,100520,99380,86.02,0,1.31,1.33,1.31,1.29,1.27,1.25,1.22,1.19,1.09,6.16,5.68,5.42,5.13,4.83,4.5,4.13,3.7600000000000002,2.43,24.07,23.740000000000002,23.56,23.36,23.17,22.98,22.79,22.61,22.23,N/A,N/A -2012,5,12,13,30,101700,100530,99400,85.68,0,3.23,3.31,3.29,3.25,3.21,3.16,3.11,3.0500000000000003,2.93,317.19,317.15000000000003,317.1,317.03000000000003,316.96,316.89,316.79,316.7,316.42,24.05,23.71,23.53,23.330000000000002,23.14,22.95,22.75,22.57,22.19,N/A,N/A -2012,5,12,14,30,101760,100590,99460,85.36,0,2.38,2.4,2.38,2.34,2.3000000000000003,2.2600000000000002,2.2,2.15,2,300.94,300.5,300.25,299.95,299.63,299.27,298.79,298.3,296.64,23.900000000000002,23.55,23.38,23.18,22.990000000000002,22.8,22.61,22.42,22.05,N/A,N/A -2012,5,12,15,30,101750,100590,99450,85.39,0,1.79,1.82,1.82,1.8,1.79,1.77,1.77,1.77,2.04,275.29,274.38,273.68,272.77,271.71,270.45,268.24,265.77,252.76000000000002,23.990000000000002,23.650000000000002,23.48,23.29,23.1,22.92,22.740000000000002,22.57,22.34,N/A,N/A -2012,5,12,16,30,101740,100580,99450,84.76,0,2.29,2.4,2.42,2.42,2.43,2.44,2.44,2.44,2.46,300.45,300.57,300.63,300.75,300.90000000000003,301.08,301.34000000000003,301.62,302.43,24.25,23.91,23.740000000000002,23.54,23.35,23.17,22.98,22.8,22.44,N/A,N/A -2012,5,12,17,30,101760,100600,99470,77.38,0,2.83,2.87,2.84,2.8000000000000003,2.7600000000000002,2.72,2.67,2.63,2.5300000000000002,344.02,344.12,344.09000000000003,344.03000000000003,343.98,343.94,343.89,343.83,343.69,24.47,24.11,23.93,23.73,23.53,23.34,23.14,22.96,22.57,N/A,N/A -2012,5,12,18,30,101740,100570,99440,74.23,0,0.74,0.74,0.72,0.7000000000000001,0.68,0.66,0.64,0.61,0.56,58.67,58.660000000000004,58.5,58.26,57.99,57.67,57.19,56.68,54.81,24.64,24.29,24.12,23.92,23.72,23.53,23.34,23.16,22.78,N/A,N/A -2012,5,12,19,30,101720,100560,99430,73.86,0,1.28,1.29,1.27,1.24,1.22,1.19,1.1500000000000001,1.12,1.03,124.26,124.19,123.87,123.48,123.03,122.53,121.85000000000001,121.18,118.83,24.85,24.5,24.32,24.12,23.93,23.740000000000002,23.55,23.37,23,N/A,N/A -2012,5,12,20,30,101690,100530,99400,75.60000000000001,0,3.15,3.23,3.2,3.14,3.08,3.0100000000000002,2.9,2.7800000000000002,2.19,160.6,160.87,160.99,161.14000000000001,161.33,161.55,161.9,162.27,164.1,25.05,24.7,24.53,24.330000000000002,24.16,23.97,23.8,23.63,23.36,N/A,N/A -2012,5,12,21,30,101660,100500,99370,76.62,0,3.5300000000000002,3.64,3.62,3.58,3.52,3.46,3.37,3.2800000000000002,2.99,165.57,165.82,165.96,166.13,166.29,166.46,166.67000000000002,166.88,167.47,25.240000000000002,24.900000000000002,24.73,24.54,24.36,24.17,23.990000000000002,23.81,23.47,N/A,N/A -2012,5,12,22,30,101640,100480,99350,74.38,0,3.7,3.84,3.83,3.7800000000000002,3.73,3.67,3.6,3.5300000000000002,3.31,193.78,194.54,195.04,195.66,196.34,197.1,198.13,199.19,203.08,25.46,25.150000000000002,24.98,24.79,24.6,24.42,24.240000000000002,24.060000000000002,23.72,N/A,N/A -2012,5,12,23,30,101650,100490,99370,75.91,0,4.42,4.68,4.68,4.64,4.59,4.53,4.45,4.37,4.21,198.12,198.47,198.74,199.14000000000001,199.54,199.98000000000002,200.49,201,202.08,25.44,25.150000000000002,24.990000000000002,24.79,24.61,24.42,24.22,24.03,23.64,N/A,N/A -2012,5,13,0,30,101620,100460,99330,76.47,0,4.74,5.0200000000000005,5.04,5.01,4.97,4.92,4.8500000000000005,4.76,4.32,213.87,214.29,214.49,214.73000000000002,215,215.31,215.82,216.39000000000001,220.4,25.3,25.02,24.86,24.67,24.490000000000002,24.310000000000002,24.13,23.96,23.68,N/A,N/A -2012,5,13,1,30,101630,100470,99340,78.71000000000001,0,5.39,5.64,5.59,5.44,5.2,4.86,4.45,4.07,3.96,235.88,236.47,237.06,238.20000000000002,240.93,245.17000000000002,254.43,264.6,275.67,25.17,24.900000000000002,24.76,24.61,24.5,24.44,24.400000000000002,24.37,24.09,N/A,N/A -2012,5,13,2,30,101710,100540,99420,80.18,0,4.9,5.29,5.39,5.48,5.55,5.62,5.69,5.76,5.9,280.95,283.85,285.6,287.58,289.41,291.24,293.04,294.73,297.40000000000003,25.12,24.830000000000002,24.67,24.48,24.29,24.11,23.92,23.740000000000002,23.36,N/A,N/A -2012,5,13,3,30,101750,100590,99460,79.28,0,5.03,5.33,5.3500000000000005,5.32,5.28,5.23,5.18,5.13,5.2700000000000005,282.19,282.98,283.61,284.6,285.95,287.64,295.63,305.57,315.31,25.22,24.95,24.8,24.62,24.46,24.32,24.34,24.43,24.310000000000002,N/A,N/A -2012,5,13,4,30,101760,100600,99470,68.79,0,3.94,4.16,4.17,4.16,4.14,4.13,4.11,4.1,4.1,358.99,359.06,359.17,359.29,359.40000000000003,359.51,359.68,359.85,0.44,25.36,25.09,24.94,24.75,24.57,24.39,24.2,24.03,23.67,N/A,N/A -2012,5,13,5,30,101780,100620,99490,71.11,0,4.04,4.32,4.3500000000000005,4.36,4.36,4.36,4.3500000000000005,4.34,4.3100000000000005,345.40000000000003,345.59000000000003,345.72,345.88,346.02,346.18,346.39,346.59000000000003,347.07,25,24.7,24.54,24.34,24.16,23.97,23.78,23.6,23.23,N/A,N/A -2012,5,13,6,30,101820,100650,99510,78.3,0,5.32,5.63,5.69,5.71,5.71,5.71,5.71,5.7,5.69,15.860000000000001,15.84,15.82,15.8,15.790000000000001,15.780000000000001,15.77,15.76,15.69,23.76,23.39,23.22,23.02,22.830000000000002,22.64,22.45,22.28,21.91,N/A,N/A -2012,5,13,7,30,101840,100670,99540,78.98,0,5.39,5.7,5.75,5.76,5.75,5.74,5.72,5.69,5.64,15.84,15.91,15.88,15.84,15.790000000000001,15.73,15.66,15.58,15.33,23.71,23.34,23.16,22.96,22.78,22.59,22.400000000000002,22.22,21.86,N/A,N/A -2012,5,13,8,30,101820,100650,99520,79.31,0,5.47,5.7700000000000005,5.8100000000000005,5.8100000000000005,5.8,5.79,5.76,5.73,5.67,19.92,20.07,20.13,20.18,20.22,20.25,20.25,20.25,20.18,23.6,23.21,23.03,22.84,22.650000000000002,22.46,22.27,22.09,21.72,N/A,N/A -2012,5,13,9,30,101850,100680,99540,82.14,0,5.68,6.01,6.0600000000000005,6.08,6.08,6.07,6.05,6.03,5.98,20,20.04,20.07,20.080000000000002,20.09,20.11,20.09,20.080000000000002,19.98,23.02,22.62,22.43,22.23,22.04,21.85,21.66,21.48,21.11,N/A,N/A -2012,5,13,10,30,101880,100710,99560,84.01,0,5.99,6.3100000000000005,6.34,6.33,6.3100000000000005,6.2700000000000005,6.23,6.18,6.0600000000000005,23.98,24.13,24.21,24.29,24.34,24.400000000000002,24.45,24.490000000000002,24.560000000000002,22.53,22.1,21.91,21.7,21.51,21.32,21.13,20.95,20.57,N/A,N/A -2012,5,13,11,30,101920,100740,99590,86.59,0,6.12,6.45,6.5,6.5,6.49,6.47,6.45,6.41,6.34,22.94,22.93,22.92,22.91,22.900000000000002,22.87,22.85,22.82,22.740000000000002,22.01,21.55,21.35,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A -2012,5,13,12,30,101950,100760,99620,84.79,0,6.87,7.2700000000000005,7.34,7.3500000000000005,7.34,7.32,7.3,7.2700000000000005,7.18,24.060000000000002,24.12,24.17,24.2,24.22,24.240000000000002,24.25,24.26,24.25,21.650000000000002,21.16,20.95,20.740000000000002,20.54,20.35,20.16,19.98,19.6,N/A,N/A -2012,5,13,13,30,101980,100800,99650,82.01,0,6.76,7.15,7.22,7.24,7.24,7.23,7.21,7.19,7.12,19.1,19.17,19.2,19.240000000000002,19.26,19.28,19.29,19.3,19.29,21.62,21.13,20.93,20.72,20.52,20.330000000000002,20.13,19.95,19.580000000000002,N/A,N/A -2012,5,13,14,30,102000,100820,99670,79.94,0,5.8,6.12,6.18,6.21,6.22,6.22,6.22,6.21,6.2,9.9,9.89,9.92,9.93,9.950000000000001,9.950000000000001,9.950000000000001,9.94,9.9,21.75,21.28,21.09,20.88,20.68,20.490000000000002,20.3,20.12,19.740000000000002,N/A,N/A -2012,5,13,15,30,102020,100840,99690,75.42,0,4.72,5,5.07,5.11,5.15,5.17,5.19,5.21,5.24,5.78,5.33,5.0600000000000005,4.8100000000000005,4.57,4.3500000000000005,4.12,3.91,3.49,22.32,21.89,21.69,21.48,21.28,21.09,20.89,20.71,20.31,N/A,N/A -2012,5,13,16,30,102010,100830,99690,72.36,0,4.41,4.66,4.72,4.75,4.78,4.79,4.8,4.82,4.83,350.19,350.74,351.06,351.35,351.62,351.87,352.12,352.35,352.82,22.79,22.38,22.19,21.98,21.78,21.59,21.39,21.21,20.81,N/A,N/A -2012,5,13,17,30,101980,100800,99660,71.36,0,4.13,4.37,4.42,4.46,4.48,4.5,4.51,4.53,4.55,336.01,336.49,336.87,337.22,337.55,337.86,338.17,338.46,339.05,23.28,22.89,22.7,22.5,22.3,22.11,21.91,21.72,21.330000000000002,N/A,N/A -2012,5,13,18,30,101950,100770,99630,67.39,0,4.34,4.6000000000000005,4.65,4.69,4.71,4.73,4.74,4.75,4.7700000000000005,319.92,320.65000000000003,321.1,321.55,321.95,322.33,322.72,323.07,323.83,23.69,23.31,23.13,22.93,22.73,22.54,22.34,22.16,21.77,N/A,N/A -2012,5,13,19,30,101910,100740,99610,64.82000000000001,0,5.13,5.44,5.5,5.5200000000000005,5.54,5.54,5.54,5.54,5.5200000000000005,309.69,310.42,310.91,311.37,311.79,312.18,312.58,312.94,313.7,24.21,23.86,23.68,23.48,23.29,23.09,22.900000000000002,22.71,22.330000000000002,N/A,N/A -2012,5,13,20,30,101850,100670,99540,65.71000000000001,0,5.67,6.04,6.1000000000000005,6.13,6.13,6.140000000000001,6.13,6.12,6.09,306.29,306.91,307.3,307.69,308.06,308.42,308.81,309.18,310.04,24.44,24.1,23.92,23.73,23.54,23.36,23.17,22.990000000000002,22.62,N/A,N/A -2012,5,13,21,30,101810,100640,99510,65.13,0,5.43,5.8100000000000005,5.88,5.91,5.91,5.91,5.91,5.9,5.86,309.94,310.55,310.91,311.26,311.57,311.88,312.19,312.49,313.16,24.810000000000002,24.5,24.330000000000002,24.13,23.94,23.76,23.56,23.38,23.01,N/A,N/A -2012,5,13,22,30,101760,100590,99460,64.58,0,5.3100000000000005,5.76,5.8500000000000005,5.9,5.93,5.95,5.96,5.97,5.98,310.85,311.65000000000003,312.18,312.71,313.2,313.66,314.14,314.59000000000003,315.58,25.23,24.95,24.79,24.6,24.42,24.23,24.04,23.87,23.5,N/A,N/A -2012,5,13,23,30,101720,100550,99420,64.49,0,5.5200000000000005,6,6.09,6.140000000000001,6.18,6.2,6.23,6.25,6.3100000000000005,306.93,307.8,308.34000000000003,308.90000000000003,309.43,309.96,310.55,311.13,312.6,25.48,25.23,25.080000000000002,24.89,24.71,24.53,24.35,24.17,23.82,N/A,N/A -2012,5,14,0,30,101710,100550,99420,64.89,0,5.86,6.4,6.53,6.6000000000000005,6.65,6.69,6.72,6.75,6.8,323.6,324.22,324.61,324.99,325.35,325.69,326.06,326.41,327.16,25.76,25.53,25.39,25.2,25.02,24.84,24.650000000000002,24.48,24.11,N/A,N/A -2012,5,14,1,30,101700,100540,99410,66.73,0,5.47,5.97,6.09,6.16,6.21,6.26,6.3,6.3500000000000005,6.49,330.45,331.11,331.51,331.96,332.42,332.92,333.51,334.1,335.87,25.69,25.47,25.32,25.14,24.96,24.79,24.61,24.44,24.1,N/A,N/A -2012,5,14,2,30,101710,100550,99420,64.55,0,5.2700000000000005,5.66,5.73,5.75,5.76,5.7700000000000005,5.7700000000000005,5.76,5.75,6.03,7.16,7.71,8.22,8.700000000000001,9.14,9.59,10.01,10.9,25.87,25.650000000000002,25.5,25.310000000000002,25.14,24.96,24.77,24.59,24.22,N/A,N/A -2012,5,14,3,30,101740,100570,99450,66.62,0,5.71,6.23,6.36,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,27.990000000000002,27.84,27.740000000000002,27.650000000000002,27.580000000000002,27.52,27.46,27.400000000000002,27.3,25.51,25.25,25.09,24.900000000000002,24.71,24.53,24.34,24.16,23.78,N/A,N/A -2012,5,14,4,30,101720,100560,99430,65.33,0,5.09,5.5200000000000005,5.61,5.66,5.7,5.72,5.74,5.75,5.76,27.900000000000002,28.11,28.23,28.310000000000002,28.38,28.43,28.47,28.490000000000002,28.5,25.36,25.09,24.93,24.740000000000002,24.55,24.37,24.18,24,23.62,N/A,N/A -2012,5,14,5,30,101700,100540,99410,65.34,0,4.72,5.08,5.15,5.18,5.2,5.21,5.22,5.22,5.21,36.95,36.46,36.160000000000004,35.85,35.58,35.32,35.06,34.83,34.36,25.25,24.97,24.810000000000002,24.61,24.43,24.240000000000002,24.05,23.87,23.48,N/A,N/A -2012,5,14,6,30,101730,100560,99430,64.94,0,4.09,4.39,4.44,4.47,4.49,4.5,4.51,4.5200000000000005,4.53,53.18,52.85,52.64,52.43,52.25,52.07,51.870000000000005,51.7,51.32,25.16,24.87,24.7,24.51,24.32,24.13,23.94,23.75,23.37,N/A,N/A -2012,5,14,7,30,101720,100550,99420,66.22,0,3.72,3.95,3.99,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,50.38,50.370000000000005,50.35,50.31,50.28,50.24,50.19,50.15,50.04,25.02,24.72,24.55,24.35,24.16,23.97,23.78,23.6,23.21,N/A,N/A -2012,5,14,8,30,101700,100530,99400,66.09,0,3.87,4.12,4.17,4.19,4.2,4.21,4.22,4.22,4.23,44.21,44.050000000000004,43.96,43.86,43.75,43.660000000000004,43.550000000000004,43.45,43.22,24.92,24.61,24.44,24.25,24.060000000000002,23.87,23.67,23.490000000000002,23.1,N/A,N/A -2012,5,14,9,30,101710,100540,99410,67.95,0,3.61,3.8000000000000003,3.83,3.83,3.83,3.8200000000000003,3.81,3.8000000000000003,3.7800000000000002,42.82,42.86,42.89,42.9,42.9,42.89,42.88,42.86,42.800000000000004,24.76,24.44,24.28,24.080000000000002,23.89,23.7,23.5,23.32,22.94,N/A,N/A -2012,5,14,10,30,101730,100560,99430,68.55,0,3.59,3.79,3.83,3.85,3.86,3.87,3.87,3.87,3.87,48.97,48.92,48.89,48.85,48.800000000000004,48.75,48.7,48.660000000000004,48.54,24.59,24.27,24.1,23.900000000000002,23.71,23.52,23.32,23.14,22.75,N/A,N/A -2012,5,14,11,30,101760,100590,99460,67.71000000000001,0,2.87,3.02,3.0500000000000003,3.06,3.0700000000000003,3.0700000000000003,3.0700000000000003,3.08,3.08,45.75,45.56,45.46,45.35,45.25,45.160000000000004,45.04,44.92,44.68,24.580000000000002,24.26,24.09,23.89,23.7,23.51,23.31,23.13,22.740000000000002,N/A,N/A -2012,5,14,12,30,101780,100610,99470,67.58,0,3.04,3.18,3.2,3.21,3.21,3.21,3.21,3.21,3.2,43.9,43.75,43.69,43.62,43.550000000000004,43.5,43.42,43.36,43.22,24.5,24.17,24,23.8,23.61,23.42,23.23,23.04,22.66,N/A,N/A -2012,5,14,13,30,101800,100640,99500,68.21000000000001,0,2.77,2.91,2.94,2.95,2.96,2.96,2.97,2.97,2.97,37.27,37.38,37.44,37.49,37.53,37.58,37.62,37.660000000000004,37.74,24.46,24.13,23.96,23.76,23.56,23.38,23.18,22.990000000000002,22.61,N/A,N/A -2012,5,14,14,30,101830,100660,99530,69.37,0,3.16,3.29,3.3000000000000003,3.29,3.29,3.27,3.2600000000000002,3.25,3.23,18.22,18.52,18.75,18.96,19.16,19.34,19.53,19.7,20.07,24.38,24.05,23.87,23.67,23.490000000000002,23.3,23.1,22.92,22.54,N/A,N/A -2012,5,14,15,30,101840,100670,99530,68.43,0,3.04,3.17,3.18,3.17,3.17,3.16,3.15,3.13,3.11,12.85,13.07,13.18,13.3,13.43,13.55,13.68,13.8,14.11,24.34,23.990000000000002,23.82,23.63,23.44,23.25,23.06,22.87,22.490000000000002,N/A,N/A -2012,5,14,16,30,101830,100660,99530,66.23,0,2.52,2.63,2.65,2.66,2.67,2.67,2.68,2.68,2.69,46.480000000000004,46.51,46.43,46.35,46.27,46.2,46.13,46.06,45.92,24.44,24.1,23.92,23.73,23.54,23.35,23.150000000000002,22.97,22.59,N/A,N/A -2012,5,14,17,30,101790,100620,99490,63.72,0,1.77,1.81,1.81,1.8,1.79,1.78,1.76,1.75,1.72,93.64,93.07000000000001,92.62,92.16,91.71000000000001,91.26,90.76,90.29,89.19,24.560000000000002,24.22,24.04,23.85,23.650000000000002,23.47,23.27,23.09,22.71,N/A,N/A -2012,5,14,18,30,101760,100600,99460,62.97,0,1.73,1.75,1.73,1.71,1.69,1.6600000000000001,1.6400000000000001,1.61,1.56,129.16,129.05,128.92000000000002,128.79,128.65,128.51,128.35,128.19,127.76,24.650000000000002,24.3,24.13,23.92,23.740000000000002,23.55,23.35,23.17,22.78,N/A,N/A -2012,5,14,19,30,101730,100570,99430,61.86,0,2.07,2.1,2.07,2.04,2.0100000000000002,1.98,1.94,1.9100000000000001,1.84,149.18,149.39000000000001,149.48,149.59,149.70000000000002,149.79,149.92000000000002,150.05,150.34,24.77,24.42,24.25,24.04,23.85,23.67,23.47,23.28,22.900000000000002,N/A,N/A -2012,5,14,20,30,101650,100490,99350,63.370000000000005,0,3.89,4.05,4.05,4.03,4.01,3.99,3.96,3.92,3.86,144.8,144.75,144.76,144.76,144.77,144.76,144.75,144.75,144.73,24.77,24.41,24.23,24.03,23.84,23.650000000000002,23.45,23.27,22.88,N/A,N/A -2012,5,14,21,30,101600,100440,99310,64.32000000000001,0,4.72,4.97,4.99,4.98,4.97,4.95,4.93,4.9,4.83,146.87,146.98,147.02,147.06,147.09,147.12,147.14000000000001,147.17000000000002,147.18,24.71,24.37,24.19,23.990000000000002,23.8,23.62,23.42,23.240000000000002,22.85,N/A,N/A -2012,5,14,22,30,101550,100390,99260,63.870000000000005,0,4.6000000000000005,4.8500000000000005,4.87,4.87,4.8500000000000005,4.83,4.8,4.7700000000000005,4.7,156,156.01,156,155.99,155.97,155.94,155.91,155.88,155.8,24.650000000000002,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.38,23.2,22.82,N/A,N/A -2012,5,14,23,30,101540,100370,99240,64.01,0,4.69,4.94,4.96,4.95,4.93,4.9,4.86,4.82,4.71,157.34,157.27,157.22,157.15,157.07,156.99,156.86,156.73,156.3,24.64,24.32,24.150000000000002,23.95,23.77,23.580000000000002,23.39,23.21,22.84,N/A,N/A -2012,5,15,0,30,101500,100330,99200,62.79,0,4.71,4.98,5.01,5.01,4.99,4.98,4.95,4.92,4.8500000000000005,163.17000000000002,163.04,162.98,162.91,162.82,162.73,162.61,162.48,162.06,24.67,24.35,24.18,23.98,23.8,23.61,23.42,23.240000000000002,22.87,N/A,N/A -2012,5,15,1,30,101480,100310,99180,64.8,0,4.9,5.19,5.23,5.24,5.23,5.21,5.19,5.16,5.09,164.67000000000002,164.6,164.5,164.4,164.29,164.18,164.03,163.87,163.42000000000002,24.59,24.26,24.09,23.900000000000002,23.71,23.53,23.330000000000002,23.16,22.78,N/A,N/A -2012,5,15,2,30,101500,100340,99210,65.75,0,4.46,4.7,4.74,4.74,4.73,4.72,4.69,4.67,4.61,169.57,169.31,169.15,168.98,168.79,168.6,168.37,168.15,167.49,24.560000000000002,24.23,24.060000000000002,23.87,23.68,23.490000000000002,23.3,23.12,22.75,N/A,N/A -2012,5,15,3,30,101530,100360,99230,65.73,0,4.21,4.43,4.46,4.45,4.44,4.42,4.4,4.38,4.3100000000000005,174.97,174.81,174.71,174.59,174.47,174.34,174.18,174.02,173.51,24.57,24.25,24.080000000000002,23.89,23.7,23.51,23.32,23.14,22.76,N/A,N/A -2012,5,15,4,30,101520,100350,99220,65.6,0,3.61,3.7800000000000002,3.8000000000000003,3.8000000000000003,3.79,3.7800000000000002,3.75,3.74,3.68,172.52,172.3,172.14000000000001,171.95000000000002,171.74,171.52,171.23,170.94,169.91,24.57,24.25,24.080000000000002,23.89,23.7,23.52,23.330000000000002,23.150000000000002,22.79,N/A,N/A -2012,5,15,5,30,101520,100360,99220,65.17,0,3.97,4.17,4.2,4.2,4.19,4.18,4.16,4.14,4.09,166.12,166.05,165.96,165.87,165.76,165.66,165.52,165.38,164.96,24.57,24.240000000000002,24.07,23.87,23.69,23.5,23.31,23.13,22.75,N/A,N/A -2012,5,15,6,30,101520,100350,99220,64.73,0,3.31,3.45,3.47,3.47,3.46,3.45,3.43,3.42,3.37,177.45000000000002,177.29,177.12,176.92000000000002,176.71,176.51,176.24,175.98,175.22,24.57,24.25,24.07,23.88,23.69,23.5,23.31,23.13,22.75,N/A,N/A -2012,5,15,7,30,101560,100390,99260,63.09,0,2.65,2.7600000000000002,2.77,2.77,2.7600000000000002,2.7600000000000002,2.75,2.73,2.71,178.61,178.43,178.20000000000002,177.96,177.71,177.47,177.18,176.9,176.13,24.650000000000002,24.330000000000002,24.16,23.96,23.78,23.59,23.39,23.21,22.830000000000002,N/A,N/A -2012,5,15,8,30,101560,100390,99260,64.43,0,2.2600000000000002,2.34,2.34,2.34,2.33,2.32,2.3000000000000003,2.29,2.2600000000000002,177.35,177.07,176.87,176.67000000000002,176.45000000000002,176.23,175.96,175.69,174.98,24.6,24.27,24.1,23.91,23.71,23.53,23.330000000000002,23.150000000000002,22.77,N/A,N/A -2012,5,15,9,30,101570,100400,99270,64.86,0,1.68,1.73,1.72,1.72,1.71,1.69,1.68,1.67,1.6400000000000001,198.23000000000002,197.88,197.70000000000002,197.52,197.3,197.07,196.82,196.57,195.87,24.560000000000002,24.23,24.07,23.87,23.68,23.490000000000002,23.29,23.11,22.73,N/A,N/A -2012,5,15,10,30,101600,100430,99300,65.06,0,1.2,1.22,1.21,1.2,1.19,1.18,1.16,1.1500000000000001,1.12,217.01,217.24,217.32,217.37,217.43,217.48000000000002,217.51,217.54,217.56,24.55,24.22,24.05,23.85,23.66,23.48,23.28,23.09,22.71,N/A,N/A -2012,5,15,11,30,101610,100450,99310,65.22,0,1.3,1.32,1.32,1.31,1.3,1.29,1.28,1.26,1.24,220.11,220.22,220.38,220.51,220.62,220.71,220.8,220.89000000000001,221.01,24.54,24.21,24.04,23.85,23.650000000000002,23.46,23.27,23.080000000000002,22.7,N/A,N/A -2012,5,15,12,30,101630,100460,99330,65.44,0,0.74,0.76,0.76,0.76,0.76,0.76,0.76,0.75,0.75,287.04,288.38,289.28000000000003,290.2,291.06,291.89,292.7,293.44,295.23,24.53,24.2,24.03,23.830000000000002,23.64,23.45,23.25,23.07,22.68,N/A,N/A -2012,5,15,13,30,101650,100480,99350,65.92,0,0.74,0.78,0.78,0.78,0.79,0.79,0.79,0.79,0.8,306.36,307.14,307.76,308.34000000000003,308.88,309.43,309.94,310.40000000000003,311.36,24.560000000000002,24.23,24.060000000000002,23.86,23.67,23.48,23.28,23.09,22.71,N/A,N/A -2012,5,15,14,30,101690,100520,99390,65.72,0,1.51,1.57,1.58,1.59,1.6,1.61,1.61,1.61,1.62,318.29,318.74,318.83,318.92,319.01,319.12,319.21,319.28000000000003,319.53000000000003,24.64,24.310000000000002,24.14,23.94,23.75,23.56,23.36,23.18,22.79,N/A,N/A -2012,5,15,15,30,101710,100550,99410,69.64,0,3.04,3.13,3.12,3.09,3.0700000000000003,3.04,3.0100000000000002,2.98,2.92,336.75,336.57,336.43,336.31,336.2,336.1,336.01,335.93,335.8,24.47,24.13,23.95,23.75,23.56,23.37,23.17,22.990000000000002,22.6,N/A,N/A -2012,5,15,16,30,101710,100550,99410,75.48,0,3.97,4.13,4.13,4.11,4.09,4.07,4.03,4.01,3.94,326.44,327.42,327.97,328.5,328.98,329.42,329.88,330.3,331.16,24.41,24.05,23.87,23.67,23.47,23.28,23.080000000000002,22.900000000000002,22.51,N/A,N/A -2012,5,15,17,30,101690,100520,99390,71.56,0,2.62,2.71,2.71,2.7,2.69,2.67,2.65,2.63,2.59,329.68,329.89,330.03000000000003,330.18,330.33,330.48,330.64,330.8,331.17,24.51,24.150000000000002,23.97,23.77,23.580000000000002,23.38,23.19,23,22.62,N/A,N/A -2012,5,15,18,30,101670,100510,99380,68.31,0,2.2,2.31,2.32,2.33,2.33,2.34,2.34,2.34,2.34,328.64,328.92,329.05,329.17,329.28000000000003,329.40000000000003,329.52,329.64,329.91,24.82,24.47,24.29,24.09,23.89,23.71,23.51,23.32,22.94,N/A,N/A -2012,5,15,19,30,101670,100500,99370,69.71000000000001,0,3.71,3.9,3.94,3.95,3.96,3.96,3.96,3.96,3.94,324.16,323.86,323.7,323.54,323.38,323.22,323.06,322.90000000000003,322.54,24.79,24.43,24.25,24.05,23.86,23.67,23.47,23.29,22.900000000000002,N/A,N/A -2012,5,15,20,30,101660,100490,99350,82.69,0.4,7.1000000000000005,7.54,7.62,7.640000000000001,7.65,7.640000000000001,7.63,7.61,7.5600000000000005,329.08,329.94,330.3,330.62,330.91,331.17,331.42,331.64,332.09000000000003,23.2,22.77,22.57,22.36,22.16,21.97,21.76,21.580000000000002,21.19,N/A,N/A -2012,5,15,21,30,101590,100410,99280,80.81,0,4.7,4.92,4.95,4.95,4.94,4.93,4.91,4.89,4.8500000000000005,355.90000000000003,355.40000000000003,355.08,354.69,354.21,353.69,352.92,352.17,349.26,22.66,22.23,22.05,21.85,21.66,21.47,21.28,21.11,20.76,N/A,N/A -2012,5,15,22,30,101590,100420,99280,75.16,0,4.38,4.63,4.68,4.7,4.72,4.73,4.74,4.75,4.76,340.82,340.47,340.25,339.99,339.72,339.45,339.13,338.82,337.96,23.27,22.87,22.69,22.490000000000002,22.3,22.11,21.92,21.740000000000002,21.36,N/A,N/A -2012,5,15,23,30,101580,100410,99280,77.11,0,4.82,5.12,5.18,5.21,5.23,5.25,5.26,5.26,5.2700000000000005,343.64,343.5,343.47,343.42,343.36,343.31,343.24,343.17,342.99,23.45,23.05,22.86,22.66,22.47,22.28,22.080000000000002,21.900000000000002,21.52,N/A,N/A -2012,5,16,0,30,101600,100430,99290,72.78,0,6.46,6.890000000000001,6.98,7.01,7.0200000000000005,7.0200000000000005,7.0200000000000005,7.01,6.98,343.56,343.99,344.22,344.44,344.65000000000003,344.85,345.06,345.26,345.66,23.66,23.26,23.07,22.87,22.67,22.48,22.29,22.1,21.72,N/A,N/A -2012,5,16,1,30,101580,100410,99280,75.3,0,7.08,7.5600000000000005,7.65,7.67,7.68,7.68,7.66,7.640000000000001,7.59,5.59,5.36,5.08,4.78,4.49,4.21,3.92,3.64,3.0300000000000002,23.44,23.02,22.830000000000002,22.62,22.42,22.23,22.03,21.85,21.46,N/A,N/A -2012,5,16,2,30,101660,100480,99340,79.05,0,8.64,9.28,9.42,9.47,9.5,9.51,9.51,9.51,9.49,10.870000000000001,11.17,11.32,11.48,11.63,11.77,11.93,12.07,12.41,22.55,22.06,21.86,21.650000000000002,21.45,21.26,21.06,20.88,20.490000000000002,N/A,N/A -2012,5,16,3,30,101670,100490,99350,83.64,0,8.4,9.01,9.15,9.21,9.25,9.27,9.28,9.3,9.33,9.99,10.040000000000001,10.13,10.21,10.290000000000001,10.36,10.450000000000001,10.540000000000001,10.77,21.97,21.47,21.26,21.06,20.86,20.67,20.490000000000002,20.31,19.95,N/A,N/A -2012,5,16,4,30,101650,100470,99320,86.61,0,7.78,8.290000000000001,8.39,8.43,8.45,8.46,8.47,8.47,8.52,7.8500000000000005,8.08,8.18,8.27,8.370000000000001,8.46,8.56,8.66,8.92,21.75,21.25,21.04,20.84,20.66,20.48,20.29,20.13,19.8,N/A,N/A -2012,5,16,5,30,101630,100450,99310,86.86,0,7.82,8.33,8.43,8.47,8.48,8.48,8.47,8.46,8.44,16.43,16.76,16.91,17.07,17.23,17.39,17.580000000000002,17.76,18.3,21.67,21.16,20.96,20.75,20.56,20.37,20.18,20,19.64,N/A,N/A -2012,5,16,6,30,101660,100480,99340,87.73,0,7.48,7.98,8.08,8.120000000000001,8.14,8.15,8.15,8.15,8.15,30.47,30.67,30.8,30.94,31.080000000000002,31.2,31.36,31.5,31.89,21.66,21.16,20.95,20.740000000000002,20.54,20.35,20.16,19.98,19.6,N/A,N/A -2012,5,16,7,30,101670,100490,99340,86.69,0,6.6000000000000005,7.01,7.08,7.11,7.13,7.140000000000001,7.140000000000001,7.13,7.140000000000001,32.13,32.44,32.62,32.81,33,33.18,33.39,33.59,34.12,21.86,21.38,21.18,20.97,20.78,20.59,20.400000000000002,20.22,19.85,N/A,N/A -2012,5,16,8,30,101660,100490,99350,86.3,0,5.65,5.96,6.01,6.0200000000000005,6.03,6.0200000000000005,6.0200000000000005,6.01,6,32.31,32.67,32.9,33.15,33.4,33.65,33.93,34.21,34.94,21.97,21.52,21.32,21.12,20.92,20.740000000000002,20.55,20.37,20,N/A,N/A -2012,5,16,9,30,101650,100480,99340,83.54,0,5.08,5.3500000000000005,5.39,5.4,5.41,5.41,5.41,5.41,5.45,27.11,27.29,27.37,27.47,27.57,27.66,27.79,27.91,28.3,22.3,21.87,21.68,21.48,21.29,21.12,20.93,20.76,20.43,N/A,N/A -2012,5,16,10,30,101670,100490,99350,81.51,0,4.72,4.97,5.01,5.0200000000000005,5.03,5.03,5.0200000000000005,5.0200000000000005,5.01,32.97,32.83,32.75,32.65,32.55,32.45,32.33,32.21,31.89,22.650000000000002,22.23,22.04,21.84,21.650000000000002,21.46,21.26,21.080000000000002,20.71,N/A,N/A -2012,5,16,11,30,101700,100530,99390,82.74,0,6.75,7.16,7.22,7.23,7.23,7.21,7.19,7.16,7.09,24.03,24.42,24.71,25.02,25.3,25.57,25.85,26.12,26.72,22.54,22.080000000000002,21.88,21.67,21.47,21.28,21.080000000000002,20.900000000000002,20.51,N/A,N/A -2012,5,16,12,30,101710,100530,99390,86.43,0,7.34,7.8100000000000005,7.890000000000001,7.92,7.930000000000001,7.930000000000001,7.92,7.91,7.88,23.26,23.34,23.42,23.51,23.580000000000002,23.66,23.75,23.84,24.060000000000002,21.55,21.04,20.830000000000002,20.62,20.42,20.23,20.04,19.86,19.48,N/A,N/A -2012,5,16,13,30,101720,100530,99390,85.23,0,6.32,6.67,6.73,6.74,6.74,6.74,6.72,6.71,6.68,24.6,24.75,24.85,24.95,25.060000000000002,25.150000000000002,25.27,25.38,25.68,21.45,20.96,20.76,20.55,20.36,20.17,19.98,19.8,19.43,N/A,N/A -2012,5,16,14,30,101730,100550,99410,82.97,0,5.3,5.59,5.64,5.66,5.66,5.67,5.66,5.66,5.66,21.5,21.830000000000002,22.03,22.240000000000002,22.45,22.650000000000002,22.88,23.1,23.68,21.88,21.43,21.23,21.03,20.830000000000002,20.650000000000002,20.45,20.28,19.91,N/A,N/A -2012,5,16,15,30,101750,100570,99430,81.60000000000001,0,3.7,3.88,3.91,3.92,3.92,3.93,3.93,3.94,3.95,22.8,22.95,23.09,23.240000000000002,23.400000000000002,23.56,23.75,23.93,24.51,22.32,21.900000000000002,21.71,21.51,21.32,21.14,20.94,20.76,20.39,N/A,N/A -2012,5,16,16,30,101720,100550,99410,75.51,0,2.73,2.87,2.9,2.93,2.95,2.96,2.98,3,3.0500000000000003,7.0600000000000005,7.41,7.61,7.82,8.02,8.22,8.45,8.68,9.25,23.06,22.67,22.490000000000002,22.29,22.1,21.91,21.72,21.54,21.16,N/A,N/A -2012,5,16,17,30,101700,100530,99390,74.15,0,1.61,1.69,1.72,1.74,1.76,1.79,1.82,1.85,1.95,329.02,329.72,330.34000000000003,330.97,331.58,332.19,332.90000000000003,333.57,335.31,23.46,23.080000000000002,22.900000000000002,22.71,22.52,22.34,22.150000000000002,21.97,21.61,N/A,N/A -2012,5,16,18,30,101660,100490,99350,72.28,0,2.15,2.2600000000000002,2.29,2.31,2.33,2.34,2.36,2.37,2.41,270.75,272.27,273.25,274.22,275.12,276,276.93,277.81,279.86,24.060000000000002,23.68,23.5,23.31,23.11,22.92,22.73,22.55,22.16,N/A,N/A -2012,5,16,19,30,101630,100460,99330,68.27,0,3.3000000000000003,3.52,3.58,3.62,3.66,3.69,3.72,3.75,3.8200000000000003,329.93,330.06,330.25,330.43,330.61,330.78000000000003,330.96,331.14,331.56,24.7,24.34,24.16,23.96,23.78,23.59,23.400000000000002,23.22,22.84,N/A,N/A -2012,5,16,20,30,101570,100400,99270,67.91,0,5.26,5.57,5.61,5.61,5.61,5.6000000000000005,5.59,5.59,5.36,358.03000000000003,357.93,357.84000000000003,357.72,357.5,357.2,356.45,355.62,352.5,24.38,24.04,23.88,23.71,23.56,23.42,23.330000000000002,23.26,23,N/A,N/A -2012,5,16,21,30,101560,100390,99260,65.54,0,5.58,5.83,5.83,5.78,5.72,5.65,5.5600000000000005,5.48,5.24,19.13,19.28,19.27,19.26,19.22,19.17,19.080000000000002,18.990000000000002,18.52,24.740000000000002,24.41,24.240000000000002,24.060000000000002,23.87,23.7,23.52,23.34,23.01,N/A,N/A -2012,5,16,22,30,101540,100370,99240,66.61,0,4.79,5.08,5.12,5.13,5.13,5.12,5.11,5.09,5.01,30.32,29.78,29.48,29.13,28.740000000000002,28.330000000000002,27.69,27.07,23.64,24.75,24.43,24.26,24.080000000000002,23.900000000000002,23.740000000000002,23.57,23.42,23.2,N/A,N/A -2012,5,16,23,30,101540,100380,99250,65.87,0,3.06,3.23,3.2600000000000002,3.2800000000000002,3.29,3.31,3.3200000000000003,3.33,3.39,18.16,18.06,18.12,18.17,18.23,18.28,18.31,18.34,17.94,24.810000000000002,24.5,24.32,24.14,23.95,23.77,23.59,23.41,23.080000000000002,N/A,N/A -2012,5,17,0,30,101550,100390,99260,67.51,0,3.13,3.3000000000000003,3.33,3.33,3.33,3.33,3.33,3.3200000000000003,3.31,3.89,3.36,3.09,2.77,2.45,2.13,1.77,1.43,0.62,24.990000000000002,24.68,24.51,24.310000000000002,24.12,23.93,23.740000000000002,23.55,23.17,N/A,N/A -2012,5,17,1,30,101520,100360,99230,69.16,0,4.3100000000000005,4.57,4.6000000000000005,4.61,4.6000000000000005,4.59,4.57,4.5600000000000005,4.51,307.85,308.44,308.87,309.32,309.76,310.19,310.66,311.1,312.1,24.96,24.64,24.47,24.28,24.09,23.900000000000002,23.71,23.53,23.14,N/A,N/A -2012,5,17,2,30,101550,100390,99260,70.85000000000001,0,2.89,3.02,3.0300000000000002,3.0300000000000002,3.02,3.0100000000000002,3,2.98,2.95,329.69,331.06,331.7,332.36,332.98,333.59000000000003,334.24,334.85,336.22,24.82,24.5,24.32,24.13,23.94,23.75,23.55,23.37,22.98,N/A,N/A -2012,5,17,3,30,101580,100410,99280,69.72,0,1.96,2.02,2.02,2.0100000000000002,2,1.98,1.97,1.96,1.93,350.57,351.16,351.5,351.84000000000003,352.19,352.55,352.97,353.36,354.37,24.75,24.43,24.25,24.060000000000002,23.87,23.68,23.490000000000002,23.31,22.93,N/A,N/A -2012,5,17,4,30,101560,100400,99270,69.51,0,2.7600000000000002,2.89,2.9,2.9,2.9,2.9,2.89,2.89,2.88,350.77,351.19,351.35,351.52,351.69,351.85,352.03000000000003,352.2,352.62,24.73,24.400000000000002,24.23,24.04,23.85,23.66,23.47,23.29,22.91,N/A,N/A -2012,5,17,5,30,101590,100420,99290,72.43,0,4.17,4.4,4.43,4.43,4.43,4.42,4.4,4.39,4.3500000000000005,17.16,17.13,17.02,16.91,16.82,16.73,16.66,16.580000000000002,16.46,24.64,24.3,24.13,23.93,23.740000000000002,23.55,23.35,23.17,22.78,N/A,N/A -2012,5,17,6,30,101570,100400,99270,67.88,0,2.85,2.97,2.97,2.96,2.95,2.93,2.91,2.9,2.86,1.44,1.86,2.08,2.34,2.62,2.91,3.27,3.61,4.65,24.62,24.3,24.13,23.94,23.75,23.56,23.37,23.19,22.82,N/A,N/A -2012,5,17,7,30,101590,100430,99290,66.64,0,1.99,2.04,2.04,2.0100000000000002,1.99,1.97,1.94,1.9100000000000001,1.83,357.5,358.04,358.42,358.83,359.27,359.73,0.33,0.9,2.79,24.59,24.27,24.09,23.900000000000002,23.71,23.52,23.330000000000002,23.14,22.76,N/A,N/A -2012,5,17,8,30,101590,100420,99290,67.71000000000001,0,1.96,2.02,2.0100000000000002,2,1.99,1.97,1.95,1.93,1.8800000000000001,7.34,7.84,8.040000000000001,8.26,8.53,8.82,9.19,9.55,10.61,24.54,24.22,24.05,23.85,23.66,23.48,23.28,23.1,22.71,N/A,N/A -2012,5,17,9,30,101580,100410,99280,70.59,0,1.72,1.77,1.78,1.77,1.77,1.76,1.76,1.75,1.74,9.950000000000001,10.53,10.98,11.43,11.88,12.32,12.84,13.34,14.67,24.43,24.11,23.94,23.740000000000002,23.55,23.36,23.17,22.990000000000002,22.61,N/A,N/A -2012,5,17,10,30,101590,100420,99290,74.62,0,2.08,2.18,2.19,2.2,2.21,2.21,2.22,2.22,2.24,12.48,13.39,13.870000000000001,14.35,14.82,15.26,15.75,16.22,17.34,24.36,24.03,23.85,23.66,23.47,23.28,23.09,22.91,22.52,N/A,N/A -2012,5,17,11,30,101600,100430,99300,74.69,0,1.61,1.68,1.69,1.69,1.69,1.7,1.7,1.7,1.7,39.5,39.47,39.43,39.4,39.35,39.300000000000004,39.27,39.24,39.160000000000004,24.400000000000002,24.07,23.900000000000002,23.7,23.51,23.32,23.13,22.94,22.55,N/A,N/A -2012,5,17,12,30,101620,100450,99320,74.47,0,1.84,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9000000000000001,23.900000000000002,24.25,24.43,24.62,24.810000000000002,24.990000000000002,25.19,25.38,25.79,24.39,24.07,23.89,23.7,23.5,23.32,23.12,22.94,22.55,N/A,N/A -2012,5,17,13,30,101630,100470,99340,75.2,0,2.8000000000000003,2.92,2.93,2.93,2.92,2.91,2.91,2.9,2.88,16.86,17.2,17.38,17.55,17.73,17.89,18.080000000000002,18.26,18.68,24.330000000000002,23.990000000000002,23.82,23.63,23.44,23.25,23.05,22.87,22.490000000000002,N/A,N/A -2012,5,17,14,30,101650,100490,99350,73.5,0,3.21,3.36,3.38,3.37,3.37,3.36,3.35,3.34,3.31,20.79,21.07,21.240000000000002,21.400000000000002,21.57,21.740000000000002,21.93,22.11,22.61,24.36,24.02,23.85,23.650000000000002,23.46,23.27,23.080000000000002,22.900000000000002,22.52,N/A,N/A -2012,5,17,15,30,101660,100490,99360,71.14,0,3.4,3.5700000000000003,3.59,3.6,3.6,3.59,3.59,3.58,3.5700000000000003,27.38,27.62,27.75,27.88,28.02,28.150000000000002,28.310000000000002,28.46,28.87,24.400000000000002,24.060000000000002,23.89,23.69,23.5,23.31,23.12,22.94,22.56,N/A,N/A -2012,5,17,16,30,101670,100500,99370,70.69,0,2.99,3.12,3.14,3.15,3.15,3.14,3.14,3.14,3.14,45.25,45.47,45.57,45.69,45.800000000000004,45.910000000000004,46.050000000000004,46.19,46.54,24.51,24.16,23.990000000000002,23.79,23.6,23.42,23.22,23.04,22.67,N/A,N/A -2012,5,17,17,30,101640,100470,99340,70.81,0,2.63,2.7600000000000002,2.77,2.7800000000000002,2.79,2.8000000000000003,2.8000000000000003,2.81,2.85,73.02,73.09,73.01,72.91,72.82000000000001,72.73,72.60000000000001,72.47,72.03,24.650000000000002,24.3,24.13,23.93,23.75,23.57,23.38,23.21,22.86,N/A,N/A -2012,5,17,18,30,101600,100440,99310,71.63,0,2.59,2.69,2.69,2.69,2.68,2.68,2.67,2.66,2.66,115.84,115.63,115.43,115.2,114.95,114.7,114.33,113.96000000000001,112.59,24.75,24.400000000000002,24.23,24.04,23.85,23.67,23.490000000000002,23.31,22.98,N/A,N/A -2012,5,17,19,30,101590,100420,99290,74.47,0,4.43,4.67,4.69,4.7,4.69,4.68,4.67,4.66,4.63,150.17000000000002,150.08,149.98,149.88,149.77,149.65,149.5,149.35,148.76,24.86,24.51,24.34,24.14,23.96,23.78,23.59,23.42,23.080000000000002,N/A,N/A -2012,5,17,20,30,101530,100360,99240,75.63,0,3.97,4.19,4.22,4.23,4.23,4.22,4.21,4.21,4.18,164.57,164.38,164.22,164.05,163.89000000000001,163.73,163.51,163.29,162.65,24.95,24.61,24.44,24.240000000000002,24.060000000000002,23.88,23.69,23.51,23.16,N/A,N/A -2012,5,17,21,30,101510,100340,99220,74.51,0,3.5500000000000003,3.74,3.77,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.74,179.81,179.63,179.51,179.36,179.23,179.08,178.91,178.74,178.32,25.12,24.78,24.61,24.42,24.23,24.04,23.85,23.67,23.3,N/A,N/A -2012,5,17,22,30,101470,100310,99180,71.60000000000001,0,3.6,3.8000000000000003,3.83,3.84,3.85,3.84,3.84,3.83,3.8200000000000003,183.4,183.22,183.1,182.97,182.85,182.71,182.57,182.42000000000002,182.04,25.240000000000002,24.92,24.75,24.560000000000002,24.37,24.19,23.990000000000002,23.81,23.44,N/A,N/A -2012,5,17,23,30,101440,100280,99150,71.84,0,4.3,4.58,4.62,4.64,4.64,4.63,4.62,4.61,4.58,184.86,184.68,184.58,184.47,184.35,184.23,184.08,183.94,183.55,25.19,24.89,24.72,24.53,24.34,24.16,23.96,23.78,23.41,N/A,N/A -2012,5,18,0,30,101430,100260,99140,73.94,0,4.2700000000000005,4.55,4.6000000000000005,4.61,4.61,4.61,4.61,4.6000000000000005,4.57,182.53,182.36,182.27,182.16,182.06,181.94,181.81,181.69,181.35,25.01,24.7,24.54,24.34,24.150000000000002,23.97,23.77,23.59,23.21,N/A,N/A -2012,5,18,1,30,101380,100220,99090,74.96000000000001,0,4.14,4.38,4.41,4.42,4.41,4.4,4.39,4.37,4.32,186.34,186.36,186.36,186.36,186.36,186.36,186.34,186.33,186.26,24.830000000000002,24.52,24.35,24.16,23.97,23.78,23.59,23.41,23.04,N/A,N/A -2012,5,18,2,30,101400,100240,99110,75.23,0,4.41,4.67,4.71,4.72,4.71,4.7,4.69,4.67,4.62,187.87,187.86,187.81,187.76,187.71,187.66,187.6,187.54,187.33,24.77,24.46,24.28,24.09,23.900000000000002,23.71,23.52,23.34,22.97,N/A,N/A -2012,5,18,3,30,101410,100250,99120,76.26,0,4.28,4.54,4.58,4.59,4.59,4.59,4.58,4.57,4.53,191.81,191.76,191.73000000000002,191.71,191.67000000000002,191.62,191.56,191.5,191.29,24.7,24.38,24.21,24.01,23.82,23.64,23.45,23.27,22.89,N/A,N/A -2012,5,18,4,30,101410,100250,99120,76.81,0,4.55,4.82,4.86,4.87,4.87,4.86,4.8500000000000005,4.83,4.79,188.89000000000001,188.84,188.81,188.76,188.71,188.65,188.58,188.5,188.28,24.63,24.3,24.13,23.93,23.75,23.56,23.37,23.2,22.830000000000002,N/A,N/A -2012,5,18,5,30,101410,100250,99120,75.08,0,4.34,4.6000000000000005,4.64,4.66,4.66,4.66,4.65,4.64,4.62,191.42000000000002,191.42000000000002,191.42000000000002,191.4,191.39000000000001,191.36,191.33,191.31,191.16,24.62,24.29,24.12,23.93,23.740000000000002,23.56,23.37,23.19,22.830000000000002,N/A,N/A -2012,5,18,6,30,101430,100270,99140,74.89,0,3.96,4.2,4.24,4.25,4.26,4.26,4.25,4.25,4.23,193.89000000000001,193.85,193.84,193.84,193.82,193.79,193.76,193.72,193.59,24.59,24.27,24.1,23.91,23.73,23.54,23.35,23.17,22.8,N/A,N/A -2012,5,18,7,30,101450,100280,99150,76.21000000000001,0,3.91,4.13,4.16,4.17,4.17,4.16,4.15,4.14,4.1,204.73000000000002,204.75,204.71,204.68,204.64000000000001,204.59,204.54,204.49,204.32,24.48,24.16,23.990000000000002,23.8,23.62,23.43,23.240000000000002,23.07,22.71,N/A,N/A -2012,5,18,8,30,101450,100290,99160,74.47,0,3.8000000000000003,4.01,4.04,4.05,4.05,4.04,4.03,4.0200000000000005,3.98,204.71,204.65,204.61,204.56,204.51,204.45000000000002,204.38,204.31,204.09,24.490000000000002,24.17,24,23.81,23.62,23.44,23.240000000000002,23.06,22.7,N/A,N/A -2012,5,18,9,30,101430,100270,99140,74.06,0,3.42,3.6,3.63,3.63,3.63,3.63,3.63,3.62,3.6,207.62,207.45000000000002,207.36,207.25,207.15,207.04,206.91,206.79,206.4,24.45,24.13,23.96,23.77,23.580000000000002,23.400000000000002,23.2,23.02,22.66,N/A,N/A -2012,5,18,10,30,101450,100280,99150,72.34,0,2.7800000000000002,2.92,2.94,2.95,2.95,2.95,2.95,2.94,2.93,203.83,203.73000000000002,203.64000000000001,203.54,203.43,203.31,203.17000000000002,203.03,202.62,24.48,24.16,23.990000000000002,23.8,23.61,23.42,23.23,23.05,22.68,N/A,N/A -2012,5,18,11,30,101450,100290,99160,73.56,0,2.37,2.48,2.5,2.5,2.5,2.5,2.5,2.5,2.5,184.46,184.35,184.3,184.23,184.15,184.06,183.95000000000002,183.85,183.49,24.37,24.060000000000002,23.89,23.69,23.5,23.32,23.13,22.95,22.580000000000002,N/A,N/A -2012,5,18,12,30,101460,100300,99170,74.69,0,2.39,2.49,2.5,2.5,2.5,2.5,2.49,2.49,2.48,183.4,183.22,183.15,183.07,182.99,182.9,182.79,182.68,182.36,24.29,23.96,23.79,23.6,23.41,23.23,23.03,22.85,22.48,N/A,N/A -2012,5,18,13,30,101490,100320,99190,75.5,0,1.81,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.9000000000000001,174.33,174.16,174.13,174.08,174.03,173.98,173.91,173.84,173.62,24.23,23.91,23.740000000000002,23.54,23.35,23.17,22.98,22.8,22.43,N/A,N/A -2012,5,18,14,30,101530,100360,99230,75.82000000000001,0,1.76,1.83,1.84,1.84,1.84,1.84,1.84,1.85,1.85,156.85,156.77,156.71,156.65,156.59,156.52,156.44,156.36,156.19,24.27,23.94,23.77,23.57,23.38,23.2,23,22.82,22.45,N/A,N/A -2012,5,18,15,30,101540,100370,99240,77.39,0,3.1,3.2600000000000002,3.2800000000000002,3.29,3.29,3.29,3.29,3.29,3.2800000000000002,159.33,159.36,159.35,159.35,159.33,159.31,159.3,159.3,159.26,24.29,23.95,23.77,23.57,23.38,23.19,22.990000000000002,22.81,22.43,N/A,N/A -2012,5,18,16,30,101530,100370,99240,78.64,0,3.11,3.25,3.27,3.2800000000000002,3.2800000000000002,3.2800000000000002,3.27,3.27,3.25,171.74,171.77,171.76,171.73,171.71,171.69,171.66,171.64000000000001,171.58,24.28,23.93,23.75,23.55,23.36,23.17,22.98,22.79,22.41,N/A,N/A -2012,5,18,17,30,101530,100370,99240,78.49,0,2.46,2.57,2.58,2.58,2.59,2.59,2.59,2.58,2.58,163.33,163.15,163.08,163,162.93,162.87,162.79,162.72,162.54,24.36,23.990000000000002,23.81,23.62,23.42,23.240000000000002,23.04,22.85,22.47,N/A,N/A -2012,5,18,18,30,101540,100370,99240,78.33,0,2.94,3.08,3.1,3.11,3.11,3.11,3.12,3.11,3.11,157.65,157.58,157.55,157.52,157.49,157.46,157.43,157.39000000000001,157.32,24.48,24.11,23.93,23.73,23.54,23.35,23.150000000000002,22.97,22.59,N/A,N/A -2012,5,18,19,30,101520,100360,99230,77.08,0,3.21,3.37,3.4,3.41,3.42,3.42,3.43,3.43,3.43,154.58,154.49,154.47,154.43,154.39000000000001,154.36,154.31,154.27,154.18,24.62,24.26,24.080000000000002,23.88,23.69,23.5,23.3,23.12,22.740000000000002,N/A,N/A -2012,5,18,20,30,101490,100330,99200,76.98,0,3.56,3.75,3.7800000000000002,3.8000000000000003,3.81,3.8200000000000003,3.8200000000000003,3.8200000000000003,3.83,155.25,155.17000000000002,155.13,155.08,155.04,155.01,154.96,154.91,154.8,24.67,24.310000000000002,24.14,23.93,23.740000000000002,23.55,23.36,23.17,22.79,N/A,N/A -2012,5,18,21,30,101440,100280,99150,76.26,0,3.5700000000000003,3.7600000000000002,3.8000000000000003,3.81,3.83,3.83,3.84,3.84,3.85,153.70000000000002,153.66,153.66,153.65,153.63,153.62,153.6,153.58,153.52,24.72,24.37,24.19,23.990000000000002,23.8,23.61,23.42,23.23,22.85,N/A,N/A -2012,5,18,22,30,101420,100260,99130,76.62,0,3.77,3.99,4.03,4.0600000000000005,4.07,4.08,4.08,4.09,4.09,151.44,151.44,151.43,151.42000000000002,151.41,151.41,151.4,151.39000000000001,151.41,24.71,24.37,24.2,24,23.81,23.62,23.42,23.240000000000002,22.85,N/A,N/A -2012,5,18,23,30,101400,100240,99110,78.03,0,4.1,4.38,4.43,4.46,4.48,4.5,4.5,4.51,4.5200000000000005,145.47,145.44,145.43,145.42000000000002,145.41,145.41,145.41,145.41,145.42000000000002,24.63,24.3,24.13,23.93,23.740000000000002,23.56,23.36,23.18,22.79,N/A,N/A -2012,5,19,0,30,101360,100200,99070,79.23,0,4.13,4.4,4.45,4.47,4.49,4.5,4.5,4.5,4.5,147.29,147.33,147.33,147.34,147.35,147.37,147.39000000000001,147.41,147.46,24.5,24.18,24,23.81,23.62,23.43,23.240000000000002,23.05,22.67,N/A,N/A -2012,5,19,1,30,101340,100180,99050,81.14,0,4.7,5.01,5.0600000000000005,5.09,5.1000000000000005,5.11,5.11,5.11,5.11,150.59,150.63,150.64000000000001,150.65,150.67000000000002,150.68,150.70000000000002,150.72,150.76,24.36,24.03,23.85,23.66,23.47,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A -2012,5,19,2,30,101350,100190,99060,82.84,0,5.39,5.7700000000000005,5.84,5.88,5.9,5.91,5.91,5.91,5.91,155.48,155.43,155.44,155.44,155.44,155.44,155.44,155.44,155.43,24.28,23.93,23.76,23.56,23.37,23.18,22.98,22.8,22.42,N/A,N/A -2012,5,19,3,30,101350,100190,99060,84.2,0,4.95,5.26,5.32,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.34,158.24,158.27,158.28,158.28,158.29,158.3,158.31,158.33,158.35,24.18,23.830000000000002,23.66,23.46,23.27,23.09,22.89,22.71,22.34,N/A,N/A -2012,5,19,4,30,101340,100180,99050,85.43,0,5.15,5.5,5.57,5.6000000000000005,5.62,5.62,5.62,5.62,5.62,163.53,163.45000000000002,163.44,163.43,163.43,163.42000000000002,163.4,163.4,163.38,24.11,23.76,23.580000000000002,23.38,23.19,23.01,22.81,22.63,22.25,N/A,N/A -2012,5,19,5,30,101340,100180,99050,86.54,0,5.26,5.62,5.69,5.72,5.73,5.74,5.75,5.75,5.75,167.89000000000001,167.89000000000001,167.85,167.83,167.8,167.77,167.74,167.71,167.63,24.060000000000002,23.7,23.52,23.32,23.13,22.95,22.75,22.57,22.19,N/A,N/A -2012,5,19,6,30,101360,100200,99070,87.06,0,5.2,5.5200000000000005,5.59,5.62,5.63,5.64,5.65,5.65,5.66,169.02,169.01,168.99,168.97,168.95000000000002,168.91,168.89000000000001,168.87,168.77,24.1,23.72,23.54,23.34,23.150000000000002,22.96,22.77,22.59,22.21,N/A,N/A -2012,5,19,7,30,101390,100230,99100,87.57000000000001,0,5.29,5.64,5.71,5.74,5.76,5.7700000000000005,5.78,5.79,5.79,170.6,170.6,170.59,170.58,170.56,170.54,170.52,170.5,170.45000000000002,24.14,23.76,23.580000000000002,23.38,23.19,23,22.8,22.62,22.240000000000002,N/A,N/A -2012,5,19,8,30,101370,100210,99080,87.82000000000001,0,5.39,5.74,5.82,5.8500000000000005,5.87,5.89,5.9,5.91,5.91,169.96,169.97,169.97,169.96,169.96,169.95000000000002,169.95000000000002,169.94,169.91,24.16,23.78,23.6,23.39,23.2,23.01,22.82,22.63,22.25,N/A,N/A -2012,5,19,9,30,101390,100220,99100,88.31,0,5.25,5.59,5.67,5.7,5.73,5.74,5.74,5.75,5.74,168.70000000000002,168.87,168.9,168.93,168.96,169,169.04,169.08,169.16,24.12,23.740000000000002,23.55,23.35,23.16,22.97,22.77,22.59,22.2,N/A,N/A -2012,5,19,10,30,101410,100250,99120,88.4,0,4.64,4.92,4.98,5.01,5.0200000000000005,5.04,5.04,5.05,5.07,158.82,158.83,158.85,158.86,158.87,158.87,158.87,158.86,158.83,24.1,23.72,23.54,23.34,23.150000000000002,22.96,22.77,22.59,22.21,N/A,N/A -2012,5,19,11,30,101430,100270,99140,87.27,0,4.9,5.17,5.22,5.23,5.23,5.23,5.22,5.2,5.15,154.28,154.49,154.63,154.76,154.88,155,155.13,155.24,155.53,24.16,23.79,23.61,23.41,23.21,23.02,22.830000000000002,22.64,22.26,N/A,N/A -2012,5,19,12,30,101460,100300,99170,86.3,0,4.46,4.76,4.83,4.87,4.9,4.92,4.93,4.94,4.96,155.41,155.43,155.43,155.42000000000002,155.41,155.4,155.38,155.37,155.32,24.19,23.81,23.63,23.43,23.240000000000002,23.05,22.85,22.66,22.28,N/A,N/A -2012,5,19,13,30,101500,100330,99200,81.4,0,4.66,4.93,4.99,5.01,5.01,5.01,4.99,4.98,4.93,151.99,152.29,152.42000000000002,152.56,152.67000000000002,152.79,152.9,153.01,153.26,24.42,24.060000000000002,23.88,23.68,23.490000000000002,23.3,23.11,22.92,22.54,N/A,N/A -2012,5,19,14,30,101520,100360,99230,82.4,0,4.13,4.32,4.3500000000000005,4.3500000000000005,4.34,4.33,4.3100000000000005,4.3,4.25,152.37,152.43,152.49,152.53,152.57,152.61,152.65,152.68,152.76,24.400000000000002,24.04,23.86,23.67,23.47,23.29,23.09,22.91,22.54,N/A,N/A -2012,5,19,15,30,101570,100410,99280,79.53,0,4.91,5.19,5.24,5.26,5.26,5.26,5.26,5.25,5.22,147.62,147.67000000000002,147.69,147.70000000000002,147.72,147.72,147.72,147.72,147.71,24.650000000000002,24.28,24.11,23.91,23.71,23.53,23.330000000000002,23.14,22.76,N/A,N/A -2012,5,19,16,30,101600,100440,99310,64.7,0,3.96,4.3,4.42,4.51,4.6000000000000005,4.68,4.7700000000000005,4.8500000000000005,5.03,141.6,141.75,141.76,141.74,141.72,141.68,141.63,141.57,141.43,25.51,25.22,25.060000000000002,24.88,24.7,24.53,24.35,24.18,23.82,N/A,N/A -2012,5,19,17,30,101590,100430,99300,67.09,0,4.24,4.57,4.64,4.68,4.72,4.75,4.76,4.78,4.79,139.93,139.83,139.85,139.87,139.88,139.89000000000001,139.9,139.92000000000002,139.94,25.38,25.05,24.87,24.67,24.48,24.29,24.09,23.91,23.52,N/A,N/A -2012,5,19,18,30,101600,100430,99310,71.68,0,4.71,5.04,5.12,5.16,5.19,5.21,5.22,5.23,5.25,126.52,126.85000000000001,127.11,127.36,127.58,127.78,127.98,128.16,128.53,25.3,24.96,24.78,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A -2012,5,19,19,30,101600,100440,99310,75.92,0,4.89,5.22,5.3,5.34,5.37,5.39,5.4,5.41,5.42,123.3,123.47,123.53,123.57000000000001,123.59,123.62,123.64,123.64,123.66,25.12,24.77,24.59,24.39,24.2,24.01,23.81,23.62,23.240000000000002,N/A,N/A -2012,5,19,20,30,101570,100400,99280,75.54,0,4.44,4.72,4.79,4.82,4.8500000000000005,4.86,4.88,4.9,4.91,118.91,119.3,119.55,119.79,120.02,120.24000000000001,120.46000000000001,120.67,121.13,25.080000000000002,24.73,24.560000000000002,24.36,24.17,23.98,23.79,23.6,23.22,N/A,N/A -2012,5,19,21,30,101550,100380,99260,77.69,0,5.0600000000000005,5.39,5.44,5.47,5.48,5.48,5.47,5.46,5.43,123.43,123.4,123.37,123.34,123.31,123.28,123.25,123.23,123.16,25.04,24.7,24.52,24.32,24.13,23.94,23.740000000000002,23.56,23.18,N/A,N/A -2012,5,19,22,30,101530,100360,99240,73.28,0,4.69,5.09,5.19,5.25,5.29,5.33,5.3500000000000005,5.38,5.42,125.98,126.08,126.11,126.14,126.16,126.18,126.2,126.21000000000001,126.24000000000001,25.21,24.87,24.7,24.5,24.310000000000002,24.12,23.92,23.740000000000002,23.35,N/A,N/A -2012,5,19,23,30,101520,100360,99230,75.27,0,5.12,5.48,5.57,5.61,5.65,5.67,5.69,5.71,5.75,125.83,125.11,124.74000000000001,124.4,124.10000000000001,123.83,123.57000000000001,123.33,122.88,25.16,24.85,24.68,24.490000000000002,24.3,24.11,23.92,23.740000000000002,23.36,N/A,N/A -2012,5,20,0,30,101490,100330,99210,77.08,0,5.24,5.66,5.76,5.8100000000000005,5.8500000000000005,5.88,5.9,5.92,5.95,120.09,120.66,120.91,121.16,121.38,121.58,121.77,121.95,122.3,25.1,24.77,24.6,24.400000000000002,24.21,24.02,23.82,23.63,23.25,N/A,N/A -2012,5,20,1,30,101490,100320,99200,73.7,0,5.87,6.38,6.51,6.59,6.65,6.7,6.74,6.78,6.8500000000000005,130.27,130.19,130.14000000000001,130.09,130.05,130.02,129.98,129.95,129.9,25.27,24.96,24.79,24.6,24.41,24.23,24.03,23.85,23.47,N/A,N/A -2012,5,20,2,30,101500,100340,99210,77.16,0,6.34,6.88,6.99,7.0600000000000005,7.1000000000000005,7.13,7.16,7.17,7.2,137.35,137.35,137.37,137.4,137.42000000000002,137.44,137.47,137.49,137.53,25.04,24.7,24.52,24.32,24.13,23.94,23.740000000000002,23.56,23.17,N/A,N/A -2012,5,20,3,30,101520,100360,99230,77.37,0,6.21,6.72,6.8500000000000005,6.92,6.98,7.0200000000000005,7.0600000000000005,7.08,7.13,137.53,137.51,137.51,137.5,137.49,137.47,137.45000000000002,137.43,137.38,25.01,24.67,24.5,24.3,24.11,23.92,23.73,23.54,23.16,N/A,N/A -2012,5,20,4,30,101530,100370,99240,72.46000000000001,0,6.8,7.41,7.55,7.63,7.69,7.73,7.76,7.78,7.82,137.71,137.74,137.79,137.84,137.89000000000001,137.94,137.99,138.04,138.15,25.17,24.84,24.67,24.47,24.28,24.1,23.900000000000002,23.71,23.330000000000002,N/A,N/A -2012,5,20,5,30,101540,100380,99250,72.88,0,6.33,6.890000000000001,7.03,7.12,7.18,7.23,7.28,7.3100000000000005,7.38,140.69,140.57,140.51,140.45000000000002,140.39000000000001,140.33,140.27,140.22,140.1,25.080000000000002,24.75,24.57,24.38,24.19,24,23.8,23.62,23.23,N/A,N/A -2012,5,20,6,30,101550,100390,99260,75.10000000000001,0,7.15,7.78,7.930000000000001,8.02,8.08,8.120000000000001,8.16,8.18,8.22,147.94,147.96,147.92000000000002,147.88,147.84,147.79,147.73,147.68,147.58,24.98,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A -2012,5,20,7,30,101610,100440,99310,73.95,0,7.63,8.27,8.4,8.46,8.49,8.51,8.51,8.51,8.49,145.1,145.17000000000002,145.21,145.25,145.28,145.32,145.34,145.37,145.41,25,24.650000000000002,24.48,24.28,24.080000000000002,23.89,23.69,23.51,23.12,N/A,N/A -2012,5,20,8,30,101590,100430,99300,70.62,0,7.13,7.75,7.9,7.98,8.040000000000001,8.08,8.11,8.13,8.15,150.11,150.20000000000002,150.28,150.35,150.42000000000002,150.48,150.56,150.62,150.76,25.02,24.69,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.150000000000002,N/A,N/A -2012,5,20,9,30,101630,100470,99340,66.52,0,6.0600000000000005,6.58,6.71,6.79,6.8500000000000005,6.9,6.93,6.96,7.01,158.61,158.04,157.79,157.57,157.37,157.19,157.03,156.87,156.59,25.12,24.8,24.62,24.43,24.23,24.04,23.84,23.66,23.27,N/A,N/A -2012,5,20,10,30,101680,100510,99380,69.91,0,5.21,5.64,5.75,5.82,5.87,5.92,5.96,5.99,6.05,146.91,147.16,147.27,147.37,147.45000000000002,147.51,147.57,147.62,147.70000000000002,24.93,24.6,24.42,24.22,24.03,23.84,23.64,23.45,23.07,N/A,N/A -2012,5,20,11,30,101650,100490,99360,75.01,0,5.73,6.12,6.19,6.21,6.22,6.21,6.2,6.19,6.15,153.27,153.18,153.09,152.98,152.87,152.75,152.63,152.51,152.25,24.67,24.32,24.14,23.94,23.75,23.56,23.36,23.17,22.78,N/A,N/A -2012,5,20,12,30,101720,100550,99420,72.74,0,4.13,4.39,4.46,4.49,4.51,4.54,4.55,4.5600000000000005,4.59,139.75,140.01,140.14000000000001,140.26,140.36,140.45000000000002,140.55,140.63,140.81,24.69,24.35,24.18,23.98,23.79,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A -2012,5,20,13,30,101770,100610,99470,69.97,0,3.92,4.14,4.18,4.2,4.21,4.22,4.23,4.24,4.24,130.98,130.66,130.49,130.32,130.16,130.01,129.86,129.72,129.43,24.76,24.43,24.25,24.060000000000002,23.86,23.67,23.48,23.29,22.900000000000002,N/A,N/A -2012,5,20,14,30,101810,100640,99510,74.29,0,3.59,3.72,3.72,3.7,3.67,3.65,3.62,3.59,3.5300000000000002,131.23,130.24,129.65,129.07,128.51,127.95,127.38000000000001,126.86,125.64,24.57,24.22,24.04,23.84,23.650000000000002,23.46,23.26,23.080000000000002,22.69,N/A,N/A -2012,5,20,15,30,101860,100690,99560,70.54,0,2.88,3.04,3.0700000000000003,3.09,3.1,3.12,3.13,3.13,3.15,86.9,87.85000000000001,88.43,88.98,89.49,89.98,90.48,90.94,91.91,24.79,24.46,24.28,24.080000000000002,23.89,23.7,23.51,23.32,22.94,N/A,N/A -2012,5,20,16,30,101890,100730,99590,67.8,0,3.52,3.74,3.79,3.8200000000000003,3.85,3.86,3.88,3.89,3.91,79.44,80.10000000000001,80.38,80.63,80.83,80.99,81.15,81.29,81.52,25.05,24.71,24.54,24.34,24.14,23.96,23.76,23.57,23.18,N/A,N/A -2012,5,20,17,30,101890,100720,99590,68.42,0,3.5100000000000002,3.72,3.77,3.8000000000000003,3.81,3.83,3.84,3.85,3.86,90.51,90.66,90.71000000000001,90.75,90.78,90.8,90.83,90.85000000000001,90.87,25.080000000000002,24.73,24.55,24.35,24.16,23.97,23.77,23.59,23.2,N/A,N/A -2012,5,20,18,30,101890,100720,99590,66.38,0,3.72,3.96,4.0200000000000005,4.0600000000000005,4.09,4.11,4.13,4.15,4.18,89.77,89.85000000000001,89.88,89.92,89.97,90.02,90.09,90.15,90.29,25.26,24.91,24.73,24.54,24.35,24.16,23.96,23.78,23.39,N/A,N/A -2012,5,20,19,30,101880,100710,99580,67.54,0,3.36,3.5500000000000003,3.59,3.61,3.62,3.63,3.63,3.64,3.65,87.10000000000001,87.38,87.57000000000001,87.77,87.95,88.12,88.29,88.46000000000001,88.8,25.35,25.01,24.830000000000002,24.63,24.44,24.25,24.060000000000002,23.87,23.490000000000002,N/A,N/A -2012,5,20,20,30,101850,100680,99550,66.44,0,3.7800000000000002,4,4.04,4.07,4.08,4.09,4.1,4.1,4.12,103.21000000000001,103.03,102.91,102.79,102.69,102.59,102.48,102.39,102.21000000000001,25.490000000000002,25.150000000000002,24.98,24.79,24.59,24.41,24.21,24.03,23.650000000000002,N/A,N/A -2012,5,20,21,30,101800,100640,99510,67.08,0,4.38,4.65,4.69,4.71,4.72,4.73,4.73,4.74,4.75,137.17000000000002,137.02,136.93,136.84,136.76,136.67000000000002,136.57,136.48,136.22,25.52,25.19,25.02,24.830000000000002,24.64,24.46,24.26,24.080000000000002,23.71,N/A,N/A -2012,5,20,22,30,101770,100610,99480,68,0,3.74,3.97,4.01,4.03,4.04,4.05,4.05,4.05,4.0600000000000005,151.65,151.34,151.12,150.88,150.65,150.42000000000002,150.17000000000002,149.92000000000002,149.27,25.490000000000002,25.18,25.01,24.82,24.63,24.44,24.25,24.07,23.69,N/A,N/A -2012,5,20,23,30,101750,100590,99460,71.82000000000001,0,3.2600000000000002,3.46,3.49,3.5100000000000002,3.52,3.52,3.5300000000000002,3.5300000000000002,3.5300000000000002,163.15,162.82,162.56,162.3,162.05,161.82,161.54,161.28,160.67000000000002,25.330000000000002,25.03,24.86,24.66,24.47,24.29,24.1,23.92,23.54,N/A,N/A -2012,5,21,0,30,101730,100560,99430,70.77,0,2.92,3.09,3.12,3.13,3.13,3.14,3.14,3.14,3.16,173.70000000000002,173.16,172.81,172.42000000000002,172.01,171.58,171.06,170.56,169.07,25.32,25.01,24.85,24.650000000000002,24.46,24.28,24.09,23.91,23.54,N/A,N/A -2012,5,21,1,30,101730,100570,99440,72.71000000000001,0,2.74,2.9,2.93,2.95,2.96,2.97,2.97,2.98,2.99,168.58,168.12,167.83,167.52,167.21,166.9,166.54,166.21,165.29,25.21,24.900000000000002,24.740000000000002,24.54,24.35,24.17,23.97,23.79,23.42,N/A,N/A -2012,5,21,2,30,101760,100590,99460,73.01,0,1.95,2.04,2.06,2.06,2.07,2.07,2.07,2.08,2.09,180.47,179.69,179.26,178.8,178.36,177.91,177.39000000000001,176.9,175.56,25.150000000000002,24.84,24.68,24.48,24.29,24.1,23.91,23.73,23.35,N/A,N/A -2012,5,21,3,30,101770,100600,99470,74.56,0,2.14,2.24,2.25,2.2600000000000002,2.2600000000000002,2.25,2.25,2.25,2.25,196.56,196.23000000000002,196.04,195.82,195.59,195.36,195.06,194.76,193.75,25.080000000000002,24.76,24.59,24.400000000000002,24.21,24.02,23.830000000000002,23.650000000000002,23.27,N/A,N/A -2012,5,21,4,30,101790,100620,99490,75.64,0,1.9100000000000001,1.99,2,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.02,197.05,196.33,195.78,195.16,194.51,193.82,192.96,192.11,189.5,25.01,24.69,24.52,24.330000000000002,24.14,23.96,23.77,23.59,23.22,N/A,N/A -2012,5,21,5,30,101790,100620,99500,75.2,0,1.45,1.5,1.51,1.5,1.5,1.5,1.5,1.5,1.51,215.23000000000002,214.14000000000001,213.43,212.62,211.8,210.97,209.82,208.66,204.18,25,24.68,24.52,24.32,24.14,23.95,23.76,23.59,23.240000000000002,N/A,N/A -2012,5,21,6,30,101820,100650,99520,74.59,0,1.78,1.84,1.85,1.85,1.84,1.84,1.83,1.83,1.82,217.55,216.78,216.39000000000001,215.94,215.42000000000002,214.86,214.1,213.35,210.33,25.060000000000002,24.73,24.57,24.37,24.19,24,23.81,23.64,23.29,N/A,N/A -2012,5,21,7,30,101860,100700,99570,73.17,0,1.46,1.52,1.52,1.52,1.52,1.51,1.51,1.5,1.5,213.96,213.72,213.38,213.01,212.62,212.21,211.69,211.17000000000002,209.46,25.14,24.830000000000002,24.650000000000002,24.46,24.28,24.09,23.900000000000002,23.72,23.36,N/A,N/A -2012,5,21,8,30,101850,100690,99560,73.37,0,1.57,1.6300000000000001,1.62,1.62,1.61,1.6,1.59,1.58,1.56,228.23000000000002,227.87,227.66,227.41,227.15,226.89000000000001,226.52,226.17000000000002,224.99,25.11,24.79,24.62,24.43,24.240000000000002,24.060000000000002,23.86,23.68,23.31,N/A,N/A -2012,5,21,9,30,101890,100720,99590,72.78,0,1.57,1.61,1.61,1.6,1.59,1.57,1.56,1.54,1.5,269.51,269.18,269.1,269.01,268.88,268.71,268.49,268.26,267.34000000000003,25.14,24.830000000000002,24.650000000000002,24.46,24.27,24.09,23.900000000000002,23.72,23.36,N/A,N/A -2012,5,21,10,30,101910,100740,99610,72.01,0,1.93,2.0100000000000002,2.0100000000000002,2.0100000000000002,2,1.99,1.98,1.97,1.94,293.85,294.01,294.06,294.11,294.16,294.21,294.23,294.25,294.27,25.2,24.88,24.71,24.52,24.330000000000002,24.14,23.95,23.77,23.400000000000002,N/A,N/A -2012,5,21,11,30,101930,100760,99630,76.73,0,3.2800000000000002,3.37,3.34,3.3000000000000003,3.25,3.2,3.15,3.1,2.98,323.76,323.77,323.71,323.64,323.56,323.49,323.39,323.29,323.06,25.01,24.68,24.51,24.310000000000002,24.13,23.94,23.75,23.57,23.19,N/A,N/A -2012,5,21,12,30,101950,100780,99650,80.69,0,4.17,4.36,4.36,4.3500000000000005,4.32,4.28,4.24,4.2,4.09,332.35,332.6,332.8,333.02,333.23,333.43,333.67,333.90000000000003,334.48,24.52,24.16,23.98,23.78,23.59,23.41,23.21,23.04,22.66,N/A,N/A -2012,5,21,13,30,101990,100820,99690,78.22,0,3.74,3.92,3.93,3.92,3.91,3.89,3.87,3.85,3.7800000000000002,339.16,339.56,339.77,339.98,340.19,340.39,340.62,340.84000000000003,341.37,24.63,24.28,24.1,23.91,23.71,23.53,23.34,23.150000000000002,22.78,N/A,N/A -2012,5,21,14,30,102000,100840,99700,75.32000000000001,0,3.88,4.08,4.11,4.12,4.12,4.11,4.11,4.1,4.08,344.88,344.42,344.14,343.85,343.57,343.29,342.98,342.68,341.94,24.91,24.57,24.39,24.19,24,23.82,23.63,23.45,23.07,N/A,N/A -2012,5,21,15,30,102010,100840,99710,70.05,0,3.45,3.66,3.7,3.72,3.74,3.75,3.77,3.7800000000000002,3.81,343.15000000000003,342.87,342.68,342.49,342.3,342.12,341.92,341.72,341.21,25.27,24.94,24.77,24.57,24.39,24.2,24.01,23.830000000000002,23.46,N/A,N/A -2012,5,21,16,30,102000,100840,99710,64.13,0,3.08,3.27,3.31,3.34,3.36,3.38,3.41,3.43,3.52,334.66,334.93,335.14,335.35,335.55,335.76,336.01,336.24,336.83,25.82,25.51,25.34,25.150000000000002,24.97,24.79,24.6,24.42,24.07,N/A,N/A -2012,5,21,17,30,101970,100810,99680,62.17,0,2.77,2.96,3.0100000000000002,3.04,3.06,3.09,3.11,3.14,3.21,312.85,313.88,314.57,315.26,315.93,316.61,317.35,318.05,319.89,26.39,26.09,25.93,25.740000000000002,25.55,25.37,25.18,25,24.64,N/A,N/A -2012,5,21,18,30,101940,100780,99650,61.31,0,2.59,2.75,2.7800000000000002,2.8000000000000003,2.82,2.85,2.9,2.96,3.3200000000000003,275.19,276.67,277.7,278.88,280.15000000000003,281.53000000000003,283.59000000000003,285.77,294.90000000000003,26.71,26.41,26.25,26.060000000000002,25.88,25.71,25.54,25.39,25.18,N/A,N/A -2012,5,21,19,30,101910,100750,99620,61.08,0,2.5100000000000002,2.59,2.57,2.5300000000000002,2.49,2.44,2.4,2.36,3.0100000000000002,227.78,229.4,230.65,232.26,234.39000000000001,236.98000000000002,243.36,250.58,286.07,26.96,26.67,26.51,26.32,26.16,25.990000000000002,25.86,25.740000000000002,25.84,N/A,N/A -2012,5,21,20,30,101860,100700,99580,65.67,0,3.93,4.05,4,3.9,3.7,3.44,2.68,1.97,1.71,193.75,194.08,194.35,194.79,196.1,198.08,211.47,224.8,238.5,26.810000000000002,26.51,26.36,26.18,26.060000000000002,25.96,26.02,26.14,26,N/A,N/A -2012,5,21,21,30,101770,100610,99490,69.01,0,5.5200000000000005,5.86,5.87,5.8100000000000005,5.74,5.66,5.51,5.34,4.05,190.1,190.15,190.23,190.32,190.43,190.55,190.88,191.25,198.4,26.78,26.5,26.35,26.16,25.990000000000002,25.82,25.66,25.53,25.84,N/A,N/A -2012,5,21,22,30,101710,100560,99440,69.76,0,6.42,6.84,6.8500000000000005,6.8,6.72,6.61,6.16,5.62,4.88,192.03,192.01,191.99,191.96,191.9,191.82,192.19,192.71,195.34,26.650000000000002,26.45,26.330000000000002,26.18,26.09,26.02,26.09,26.22,26.28,N/A,N/A -2012,5,21,23,30,101680,100520,99400,69.26,0,6.5,6.9,6.93,6.93,6.8100000000000005,6.5600000000000005,6.22,5.87,5.23,195.34,195.38,195.36,195.33,195.41,195.6,196.37,197.31,200.3,26.57,26.41,26.32,26.27,26.310000000000002,26.42,26.560000000000002,26.7,26.61,N/A,N/A -2012,5,22,0,30,101620,100470,99350,71.33,0,6.5600000000000005,7.01,7.05,7.04,7.07,7.12,7.0600000000000005,6.96,6.5200000000000005,207.83,207.91,207.95000000000002,207.99,208.03,208.07,208.55,209.15,211.84,26.41,26.2,26.07,25.91,25.8,25.71,25.79,25.91,26.19,N/A,N/A -2012,5,22,1,30,101630,100470,99340,74.26,0,7.11,7.69,7.78,7.8,7.8,7.79,7.7700000000000005,7.75,7.73,228.32,228.29,228.25,228.21,228.17000000000002,228.11,228.03,227.93,227.42000000000002,26.18,25.92,25.77,25.59,25.42,25.25,25.080000000000002,24.93,24.76,N/A,N/A -2012,5,22,2,30,101640,100480,99360,75.22,0,7.390000000000001,8.01,8.11,8.14,8.15,8.14,8.120000000000001,8.11,8.07,241.11,241.06,240.99,240.93,240.87,240.81,240.72,240.63,240.05,26.080000000000002,25.810000000000002,25.66,25.47,25.3,25.12,24.94,24.78,24.54,N/A,N/A -2012,5,22,3,30,101650,100490,99370,75.64,0,6.26,6.79,6.890000000000001,6.93,6.95,6.96,6.95,6.95,6.95,242.67000000000002,242.76,242.81,242.83,242.84,242.84,242.83,242.83,242.79,26.05,25.77,25.62,25.43,25.25,25.07,24.89,24.72,24.38,N/A,N/A -2012,5,22,4,30,101640,100480,99360,76.06,0,5.92,6.390000000000001,6.47,6.49,6.51,6.51,6.5200000000000005,6.5200000000000005,6.6000000000000005,247.94,247.89000000000001,247.9,247.93,247.97,248.02,248.09,248.15,248.45000000000002,25.94,25.66,25.5,25.310000000000002,25.13,24.95,24.77,24.6,24.310000000000002,N/A,N/A -2012,5,22,5,30,101640,100480,99360,76.27,0,5.45,5.87,5.94,5.97,5.98,5.98,5.97,5.97,5.98,253.15,253.25,253.32,253.4,253.48000000000002,253.57,253.68,253.8,254.26000000000002,25.91,25.63,25.48,25.28,25.1,24.92,24.740000000000002,24.560000000000002,24.22,N/A,N/A -2012,5,22,6,30,101660,100500,99370,76.57000000000001,0,5.5600000000000005,5.97,6.04,6.0600000000000005,6.07,6.07,6.0600000000000005,6.05,6.04,261.88,261.91,261.89,261.88,261.88,261.87,261.87,261.86,261.88,25.98,25.66,25.5,25.3,25.12,24.93,24.75,24.57,24.22,N/A,N/A -2012,5,22,7,30,101640,100480,99350,75.42,0,6.09,6.5200000000000005,6.59,6.6000000000000005,6.6000000000000005,6.59,6.58,6.5600000000000005,6.5600000000000005,267.22,267.17,267.09000000000003,266.99,266.9,266.79,266.67,266.55,266.17,25.94,25.63,25.47,25.27,25.09,24.92,24.740000000000002,24.57,24.26,N/A,N/A -2012,5,22,8,30,101620,100460,99340,76.63,0,6.45,6.890000000000001,6.96,6.97,6.97,6.96,6.94,6.92,6.890000000000001,270.58,270.28000000000003,270.05,269.79,269.54,269.27,268.96,268.65,267.81,25.53,25.19,25.02,24.830000000000002,24.64,24.46,24.28,24.1,23.75,N/A,N/A -2012,5,22,9,30,101650,100490,99360,79.03,0,5.9,6.28,6.3500000000000005,6.37,6.38,6.37,6.3500000000000005,6.34,6.29,265.1,265.1,265.08,265.03000000000003,264.98,264.93,264.85,264.76,264.53000000000003,25.17,24.810000000000002,24.63,24.43,24.25,24.060000000000002,23.87,23.69,23.32,N/A,N/A -2012,5,22,10,30,101630,100460,99340,79.56,0,6.37,6.76,6.83,6.84,6.84,6.82,6.8100000000000005,6.79,6.74,261.6,261.74,261.81,261.88,261.94,261.99,262.03000000000003,262.05,262.06,24.97,24.61,24.43,24.23,24.05,23.86,23.67,23.5,23.14,N/A,N/A -2012,5,22,11,30,101650,100480,99350,80.98,0,6.15,6.5600000000000005,6.640000000000001,6.67,6.69,6.69,6.69,6.69,6.69,266.43,266.23,266.11,265.98,265.84000000000003,265.71,265.54,265.39,264.96,24.78,24.39,24.21,24.01,23.830000000000002,23.64,23.45,23.27,22.91,N/A,N/A -2012,5,22,12,30,101640,100480,99350,81.52,0,6.66,7.11,7.2,7.24,7.25,7.26,7.2700000000000005,7.2700000000000005,7.28,271.26,271.13,271.03000000000003,270.91,270.78000000000003,270.63,270.45,270.27,269.73,24.64,24.240000000000002,24.060000000000002,23.86,23.67,23.490000000000002,23.3,23.12,22.77,N/A,N/A -2012,5,22,13,30,101630,100470,99340,79.03,0,6.6000000000000005,7.05,7.140000000000001,7.18,7.21,7.22,7.24,7.25,7.3100000000000005,273.46,273.14,273,272.85,272.71,272.56,272.38,272.2,271.68,24.57,24.18,24,23.81,23.62,23.44,23.26,23.09,22.77,N/A,N/A -2012,5,22,14,30,101650,100490,99360,76.75,0,5.99,6.4,6.49,6.53,6.5600000000000005,6.59,6.62,6.65,6.79,265.98,265.8,265.7,265.58,265.46,265.34000000000003,265.2,265.06,264.65,24.73,24.35,24.18,23.98,23.8,23.62,23.44,23.27,22.95,N/A,N/A -2012,5,22,15,30,101630,100470,99340,74.54,0,5.72,6.08,6.15,6.18,6.2,6.21,6.22,6.24,6.3500000000000005,261.92,261.94,262.02,262.1,262.21,262.32,262.53000000000003,262.74,263.89,25.12,24.76,24.59,24.400000000000002,24.22,24.05,23.88,23.71,23.43,N/A,N/A -2012,5,22,16,30,101620,100460,99330,73.48,0,5.42,5.75,5.79,5.79,5.78,5.76,5.74,5.72,5.68,244.48000000000002,245.18,245.62,246.11,246.6,247.12,247.77,248.4,250.69,25.55,25.21,25.04,24.85,24.66,24.490000000000002,24.3,24.13,23.82,N/A,N/A -2012,5,22,17,30,101570,100410,99280,74.10000000000001,0,5.53,5.84,5.87,5.86,5.83,5.8,5.7700000000000005,5.74,5.58,231.53,232.05,232.45000000000002,232.99,233.76,234.72,237.33,240.31,255.18,25.91,25.580000000000002,25.43,25.25,25.080000000000002,24.93,24.86,24.810000000000002,25.16,N/A,N/A -2012,5,22,18,30,101520,100370,99250,76.69,0,5.43,5.74,5.76,5.74,5.7,5.65,5.58,5.5,4.98,230.23000000000002,230.57,230.81,231.14000000000001,231.62,232.21,233.94,235.96,253.01000000000002,26.2,25.89,25.73,25.55,25.39,25.240000000000002,25.150000000000002,25.080000000000002,25.560000000000002,N/A,N/A -2012,5,22,19,30,101490,100330,99210,78.54,0,5.32,5.64,5.67,5.65,5.62,5.57,5.5,5.42,4.64,218.4,218.48000000000002,218.57,218.67000000000002,218.79,218.92000000000002,219.16,219.41,223.8,26.310000000000002,25.990000000000002,25.82,25.63,25.45,25.28,25.11,24.95,24.94,N/A,N/A -2012,5,22,20,30,101430,100270,99150,77.23,0,6.51,6.96,7.0200000000000005,7.01,6.98,6.93,6.8500000000000005,6.7700000000000005,6.45,212.1,212.23000000000002,212.32,212.42000000000002,212.51,212.61,212.73000000000002,212.86,213.34,26.34,26.03,25.87,25.68,25.5,25.32,25.14,24.98,24.69,N/A,N/A -2012,5,22,21,30,101370,100220,99100,79,0,6.79,7.28,7.34,7.33,7.3,7.26,7.2,7.140000000000001,6.83,216.09,216,215.94,215.87,215.79,215.70000000000002,215.56,215.42000000000002,214.6,26.27,25.97,25.810000000000002,25.62,25.44,25.26,25.09,24.93,24.68,N/A,N/A -2012,5,22,22,30,101300,100150,99030,78.76,0,7.71,8.34,8.45,8.47,8.47,8.45,8.41,8.370000000000001,8.27,213.19,213.19,213.18,213.16,213.13,213.09,213.03,212.97,212.73000000000002,26.23,25.92,25.76,25.57,25.38,25.2,25.02,24.85,24.5,N/A,N/A -2012,5,22,23,30,101250,100090,98980,77.22,0,8.19,8.870000000000001,8.99,9.02,9.01,8.99,8.950000000000001,8.91,8.77,216.98000000000002,216.99,216.97,216.94,216.9,216.85,216.78,216.70000000000002,216.26,26.27,25.98,25.82,25.63,25.46,25.29,25.12,24.96,24.72,N/A,N/A -2012,5,23,0,30,101210,100060,98940,75.67,0,7.17,7.75,7.8500000000000005,7.87,7.87,7.86,7.84,7.82,7.7700000000000005,216.72,216.74,216.74,216.72,216.68,216.62,216.53,216.41,215.76,26.330000000000002,26.05,25.89,25.7,25.53,25.35,25.18,25.02,24.75,N/A,N/A -2012,5,23,1,30,101170,100010,98900,75.68,0,7.0600000000000005,7.63,7.73,7.75,7.76,7.76,7.75,7.73,7.7,219.06,219.07,219.06,219.04,219,218.97,218.91,218.84,218.51,26.240000000000002,25.94,25.78,25.59,25.41,25.23,25.05,24.88,24.55,N/A,N/A -2012,5,23,2,30,101150,100000,98890,76.78,0,7.24,7.82,7.91,7.930000000000001,7.930000000000001,7.91,7.88,7.8500000000000005,7.8,226.67000000000002,226.59,226.53,226.46,226.37,226.28,226.17000000000002,226.05,225.6,26.26,25.96,25.8,25.62,25.44,25.27,25.09,24.93,24.66,N/A,N/A -2012,5,23,3,30,101150,100000,98880,73.3,0,6.6000000000000005,7.15,7.25,7.29,7.3100000000000005,7.32,7.32,7.32,7.33,222.6,222.53,222.52,222.52,222.52,222.52,222.51,222.49,222.3,26.37,26.09,25.93,25.740000000000002,25.560000000000002,25.38,25.2,25.04,24.71,N/A,N/A -2012,5,23,4,30,101110,99960,98840,75.16,0,7.12,7.69,7.79,7.82,7.84,7.83,7.8100000000000005,7.78,7.69,221.61,221.52,221.52,221.51,221.5,221.48000000000002,221.44,221.4,221.25,26.21,25.91,25.75,25.560000000000002,25.38,25.2,25.02,24.84,24.490000000000002,N/A,N/A -2012,5,23,5,30,101100,99950,98830,76.55,0,6.58,7.15,7.2700000000000005,7.33,7.37,7.38,7.38,7.38,7.34,217.69,217.79,217.83,217.84,217.84,217.83,217.8,217.77,217.64000000000001,26.1,25.8,25.63,25.43,25.240000000000002,25.05,24.86,24.67,24.28,N/A,N/A -2012,5,23,6,30,101100,99950,98830,71.14,0,7.01,7.640000000000001,7.79,7.87,7.930000000000001,7.97,8.01,8.040000000000001,8.11,214.70000000000002,214.66,214.72,214.8,214.88,214.96,215.05,215.15,215.34,26.310000000000002,26.03,25.88,25.69,25.51,25.330000000000002,25.150000000000002,24.98,24.62,N/A,N/A -2012,5,23,7,30,101090,99940,98820,73.02,0,6.82,7.390000000000001,7.54,7.62,7.68,7.73,7.78,7.82,7.930000000000001,215.58,215.56,215.55,215.52,215.49,215.46,215.42000000000002,215.37,215.26,26.09,25.79,25.62,25.43,25.25,25.07,24.88,24.71,24.35,N/A,N/A -2012,5,23,8,30,101080,99920,98800,72.32000000000001,0,7.33,8.03,8.19,8.28,8.34,8.39,8.42,8.46,8.53,217.62,217.47,217.38,217.28,217.18,217.09,216.98000000000002,216.88,216.65,26.150000000000002,25.84,25.67,25.48,25.29,25.11,24.92,24.740000000000002,24.38,N/A,N/A -2012,5,23,9,30,101080,99920,98800,75.48,0,7.68,8.34,8.48,8.540000000000001,8.58,8.6,8.6,8.6,8.58,210.44,210.5,210.54,210.61,210.69,210.76,210.86,210.94,211.14000000000001,25.92,25.59,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A -2012,5,23,10,30,101090,99940,98820,72.23,0,7.19,7.82,7.98,8.07,8.14,8.19,8.22,8.26,8.3,210.69,210.4,210.25,210.1,209.97,209.84,209.71,209.59,209.36,25.990000000000002,25.69,25.53,25.330000000000002,25.150000000000002,24.96,24.77,24.580000000000002,24.21,N/A,N/A -2012,5,23,11,30,101060,99900,98790,69.27,0,7.03,7.66,7.82,7.92,7.99,8.05,8.11,8.16,8.25,203.75,203.72,203.76,203.81,203.86,203.91,203.95000000000002,203.99,204.09,26.02,25.7,25.53,25.34,25.150000000000002,24.97,24.77,24.59,24.22,N/A,N/A -2012,5,23,12,30,101070,99920,98800,68.48,0,6.69,7.2700000000000005,7.42,7.51,7.57,7.62,7.67,7.71,7.78,206.22,206.23000000000002,206.25,206.3,206.35,206.4,206.46,206.51,206.64000000000001,25.990000000000002,25.67,25.51,25.310000000000002,25.12,24.94,24.740000000000002,24.560000000000002,24.18,N/A,N/A -2012,5,23,13,30,101090,99930,98820,67.91,0,6.8,7.36,7.49,7.55,7.6000000000000005,7.62,7.640000000000001,7.65,7.67,193.4,193.73000000000002,193.93,194.12,194.29,194.45000000000002,194.6,194.74,195.01,25.98,25.67,25.5,25.310000000000002,25.12,24.93,24.740000000000002,24.560000000000002,24.18,N/A,N/A -2012,5,23,14,30,101070,99920,98800,70.42,0,7,7.63,7.76,7.84,7.890000000000001,7.92,7.94,7.96,7.97,199.23000000000002,199.41,199.39000000000001,199.34,199.27,199.19,199.1,199.01,198.79,25.85,25.52,25.34,25.150000000000002,24.96,24.77,24.57,24.39,24,N/A,N/A -2012,5,23,15,30,101110,99950,98830,67.95,0,6.51,7.09,7.21,7.29,7.34,7.37,7.4,7.42,7.45,191.38,191.6,191.61,191.6,191.59,191.55,191.52,191.49,191.4,25.94,25.61,25.44,25.240000000000002,25.04,24.86,24.66,24.47,24.09,N/A,N/A -2012,5,23,16,30,101070,99920,98800,63.690000000000005,0,7.25,7.87,8.02,8.11,8.19,8.24,8.290000000000001,8.33,8.39,192.87,192.91,192.9,192.88,192.86,192.84,192.81,192.78,192.72,26.09,25.78,25.62,25.42,25.240000000000002,25.05,24.86,24.68,24.29,N/A,N/A -2012,5,23,17,30,101060,99910,98790,66.86,0,7.72,8.34,8.48,8.540000000000001,8.58,8.61,8.63,8.64,8.66,192.77,192.78,192.77,192.75,192.73000000000002,192.70000000000002,192.67000000000002,192.65,192.6,25.96,25.64,25.47,25.27,25.09,24.900000000000002,24.71,24.53,24.150000000000002,N/A,N/A -2012,5,23,18,30,101020,99870,98750,64.45,0,7.48,8.15,8.31,8.4,8.47,8.52,8.56,8.59,8.65,180.74,180.92000000000002,181.14000000000001,181.36,181.57,181.77,181.98,182.17000000000002,182.57,26.14,25.84,25.68,25.490000000000002,25.3,25.12,24.93,24.75,24.37,N/A,N/A -2012,5,23,19,30,101000,99850,98730,68.34,0,7.72,8.47,8.64,8.75,8.82,8.870000000000001,8.91,8.94,8.98,187.81,188.38,188.52,188.62,188.69,188.74,188.78,188.81,188.82,26.09,25.76,25.59,25.39,25.19,25,24.8,24.61,24.22,N/A,N/A -2012,5,23,20,30,100970,99820,98700,68.83,0,8.69,9.41,9.58,9.65,9.69,9.71,9.72,9.72,9.71,189.4,189.52,189.6,189.67000000000002,189.73,189.78,189.83,189.87,189.93,25.97,25.650000000000002,25.48,25.29,25.1,24.91,24.71,24.53,24.14,N/A,N/A -2012,5,23,21,30,100910,99750,98640,70.44,0,8.83,9.64,9.81,9.9,9.950000000000001,9.98,9.99,10,10,185.5,185.1,184.81,184.53,184.27,184.04,183.81,183.6,183.19,25.94,25.61,25.44,25.240000000000002,25.05,24.86,24.66,24.48,24.09,N/A,N/A -2012,5,23,22,30,100850,99700,98590,68.8,0,8.28,9.18,9.41,9.55,9.66,9.74,9.8,9.85,9.93,177.12,177.70000000000002,177.92000000000002,178.11,178.27,178.41,178.53,178.64000000000001,178.84,26.04,25.71,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A -2012,5,23,23,30,100830,99680,98560,72.54,0,8.39,9.24,9.450000000000001,9.59,9.68,9.76,9.81,9.86,9.93,179.79,180.27,180.44,180.58,180.69,180.79,180.88,180.96,181.08,25.86,25.52,25.35,25.150000000000002,24.96,24.77,24.57,24.38,23.990000000000002,N/A,N/A -2012,5,24,0,30,100780,99630,98510,77.04,0,8.86,9.78,10,10.14,10.24,10.31,10.36,10.4,10.450000000000001,173.35,172.69,172.55,172.42000000000002,172.33,172.24,172.17000000000002,172.1,171.99,25.73,25.37,25.19,24.990000000000002,24.79,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A -2012,5,24,1,30,100750,99600,98480,78.29,0,9.17,10.09,10.32,10.46,10.55,10.620000000000001,10.67,10.71,10.77,168.26,168.72,168.88,169,169.11,169.21,169.3,169.38,169.54,25.57,25.21,25.03,24.830000000000002,24.64,24.45,24.25,24.07,23.68,N/A,N/A -2012,5,24,2,30,100750,99600,98490,79.57000000000001,0,9.75,10.72,10.96,11.11,11.200000000000001,11.28,11.33,11.370000000000001,11.44,171.11,171.05,171.07,171.09,171.11,171.12,171.14000000000001,171.16,171.19,25.490000000000002,25.12,24.94,24.740000000000002,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A -2012,5,24,3,30,100740,99590,98470,80.63,0,10.85,11.98,12.27,12.42,12.530000000000001,12.59,12.64,12.67,12.69,166.65,166.74,166.83,166.91,166.98,167.05,167.12,167.18,167.3,25.51,25.13,24.95,24.740000000000002,24.55,24.35,24.150000000000002,23.97,23.580000000000002,N/A,N/A -2012,5,24,4,30,100720,99570,98460,81.4,0,10.17,11.26,11.540000000000001,11.72,11.84,11.94,12.01,12.07,12.15,174.28,174.31,174.28,174.24,174.20000000000002,174.17000000000002,174.12,174.08,174,25.580000000000002,25.21,25.02,24.82,24.62,24.43,24.23,24.04,23.650000000000002,N/A,N/A -2012,5,24,5,30,100700,99550,98440,82.24,0,10.77,11.88,12.16,12.34,12.46,12.540000000000001,12.6,12.65,12.71,169.33,169.85,170.17000000000002,170.5,170.8,171.08,171.36,171.62,172.16,25.8,25.44,25.27,25.060000000000002,24.87,24.68,24.48,24.3,23.91,N/A,N/A -2012,5,24,6,30,100700,99550,98430,82.3,0,10.93,12.07,12.38,12.56,12.68,12.780000000000001,12.85,12.9,12.99,176.57,176.67000000000002,176.64000000000001,176.61,176.57,176.52,176.47,176.43,176.32,25.72,25.330000000000002,25.150000000000002,24.94,24.75,24.55,24.36,24.17,23.78,N/A,N/A -2012,5,24,7,30,100700,99550,98430,83.77,0,10.96,12.120000000000001,12.4,12.58,12.700000000000001,12.780000000000001,12.85,12.89,12.96,173.01,173.19,173.28,173.39000000000001,173.48,173.58,173.68,173.78,173.98,25.71,25.32,25.14,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A -2012,5,24,8,30,100680,99530,98410,85.76,0,11.41,12.65,12.96,13.16,13.3,13.4,13.48,13.55,13.64,176.52,176.25,176.15,176.08,176.02,175.97,175.93,175.89000000000001,175.84,25.59,25.19,25.01,24.8,24.61,24.41,24.21,24.03,23.64,N/A,N/A -2012,5,24,9,30,100680,99530,98420,83.18,0,11.44,12.71,13.040000000000001,13.25,13.39,13.51,13.6,13.67,13.77,175.72,175.76,175.79,175.81,175.84,175.86,175.87,175.89000000000001,175.93,25.82,25.44,25.26,25.060000000000002,24.86,24.67,24.47,24.28,23.900000000000002,N/A,N/A -2012,5,24,10,30,100710,99560,98450,82.94,0,11.5,12.75,13.09,13.3,13.46,13.58,13.67,13.75,13.870000000000001,171.36,171.61,171.69,171.78,171.86,171.94,172.02,172.1,172.25,25.82,25.45,25.27,25.060000000000002,24.87,24.68,24.48,24.29,23.91,N/A,N/A -2012,5,24,11,30,100710,99570,98450,79.89,0,11.77,13.14,13.5,13.75,13.92,14.05,14.15,14.24,14.35,175.25,174.89000000000001,174.82,174.78,174.75,174.74,174.73,174.73,174.74,25.97,25.6,25.41,25.21,25.01,24.82,24.62,24.43,24.04,N/A,N/A -2012,5,24,12,30,100750,99600,98480,81.84,0,11.870000000000001,13.18,13.51,13.72,13.86,13.96,14.030000000000001,14.08,14.15,174.36,174.42000000000002,174.5,174.59,174.68,174.75,174.84,174.92000000000002,175.08,25.95,25.580000000000002,25.400000000000002,25.19,25,24.8,24.61,24.42,24.03,N/A,N/A -2012,5,24,13,30,100780,99630,98520,79.81,0,11.65,12.96,13.32,13.540000000000001,13.700000000000001,13.81,13.9,13.96,14.05,180.1,180.44,180.59,180.71,180.81,180.9,180.96,181.02,181.12,26.150000000000002,25.79,25.61,25.400000000000002,25.21,25.01,24.82,24.63,24.240000000000002,N/A,N/A -2012,5,24,14,30,100840,99690,98580,81.25,0,11,12.19,12.49,12.68,12.81,12.91,12.99,13.040000000000001,13.13,182.74,182.11,181.92000000000002,181.74,181.58,181.44,181.31,181.20000000000002,180.98,26.13,25.78,25.6,25.400000000000002,25.21,25.02,24.82,24.63,24.25,N/A,N/A -2012,5,24,15,30,100870,99720,98610,76.85000000000001,0,11.68,13.030000000000001,13.36,13.56,13.69,13.780000000000001,13.84,13.89,13.93,178.02,178.61,178.81,178.97,179.1,179.20000000000002,179.28,179.35,179.46,26.42,26.09,25.91,25.71,25.52,25.330000000000002,25.13,24.95,24.560000000000002,N/A,N/A -2012,5,24,16,30,100890,99740,98630,77.53,0,11.09,12.31,12.63,12.82,12.96,13.06,13.14,13.200000000000001,13.290000000000001,178.78,178.77,178.81,178.87,178.92000000000002,178.97,179.03,179.08,179.18,26.45,26.14,25.97,25.78,25.59,25.41,25.22,25.04,24.66,N/A,N/A -2012,5,24,17,30,100920,99770,98660,77.63,0,10.1,11.14,11.42,11.6,11.74,11.84,11.94,12.02,12.16,179.3,179.73,179.91,180.1,180.29,180.46,180.62,180.77,181.06,26.47,26.16,25.990000000000002,25.8,25.62,25.44,25.25,25.07,24.69,N/A,N/A -2012,5,24,18,30,100950,99800,98690,77.21000000000001,0,10.5,11.73,12.05,12.23,12.370000000000001,12.46,12.52,12.57,12.63,178.51,178.79,178.9,179.01,179.09,179.16,179.23,179.29,179.4,26.560000000000002,26.240000000000002,26.060000000000002,25.86,25.67,25.48,25.28,25.09,24.71,N/A,N/A -2012,5,24,19,30,100930,99780,98670,75.73,0,10.8,11.92,12.21,12.370000000000001,12.47,12.55,12.6,12.65,12.700000000000001,174.89000000000001,175.37,175.59,175.76,175.9,176.02,176.12,176.20000000000002,176.35,26.67,26.38,26.23,26.03,25.85,25.67,25.48,25.3,24.92,N/A,N/A -2012,5,24,20,30,100890,99740,98630,76.21000000000001,0,9.34,10.34,10.58,10.74,10.85,10.93,10.99,11.040000000000001,11.11,168.71,169.09,169.34,169.6,169.84,170.06,170.28,170.49,170.91,26.64,26.34,26.17,25.98,25.79,25.61,25.41,25.23,24.85,N/A,N/A -2012,5,24,21,30,100880,99740,98620,73.01,0,9.49,10.540000000000001,10.8,10.97,11.09,11.19,11.27,11.33,11.44,168.72,168.96,169.01,169.05,169.08,169.11,169.14000000000001,169.17000000000002,169.23,26.72,26.44,26.28,26.09,25.91,25.73,25.54,25.36,24.990000000000002,N/A,N/A -2012,5,24,22,30,100870,99720,98610,76.82000000000001,0,9.72,10.85,11.13,11.32,11.450000000000001,11.55,11.63,11.69,11.790000000000001,170.98,170.66,170.55,170.44,170.34,170.25,170.18,170.1,169.96,26.55,26.23,26.060000000000002,25.86,25.67,25.48,25.29,25.1,24.71,N/A,N/A -2012,5,24,23,30,100860,99720,98600,74.68,0,10.08,11.31,11.64,11.85,12.01,12.14,12.23,12.31,12.42,169.61,169.41,169.36,169.32,169.28,169.24,169.22,169.19,169.15,26.73,26.43,26.27,26.07,25.88,25.69,25.490000000000002,25.3,24.91,N/A,N/A -2012,5,25,0,30,100840,99690,98580,77.14,0,10.370000000000001,11.540000000000001,11.81,11.97,12.09,12.16,12.22,12.26,12.3,162.34,162.46,162.57,162.69,162.79,162.89000000000001,162.99,163.09,163.28,26.57,26.26,26.09,25.89,25.7,25.52,25.32,25.14,24.75,N/A,N/A -2012,5,25,1,30,100810,99660,98550,74.89,0,11.31,12.61,12.92,13.11,13.24,13.33,13.39,13.44,13.5,162.9,163,163.05,163.11,163.16,163.21,163.25,163.29,163.37,26.7,26.400000000000002,26.240000000000002,26.04,25.86,25.67,25.48,25.3,24.91,N/A,N/A -2012,5,25,2,30,100840,99700,98590,70.12,0,10.5,11.61,11.91,12.1,12.25,12.36,12.46,12.540000000000001,12.700000000000001,161.58,161.97,162.22,162.49,162.76,163.02,163.29,163.55,164.12,26.900000000000002,26.67,26.52,26.34,26.18,26.01,25.830000000000002,25.66,25.32,N/A,N/A -2012,5,25,3,30,100870,99730,98620,65.15,0,11.06,12.39,12.77,13.02,13.21,13.35,13.47,13.57,13.74,164.84,164.87,164.87,164.87,164.87,164.86,164.86,164.86,164.86,27.18,26.95,26.810000000000002,26.63,26.46,26.28,26.1,25.92,25.560000000000002,N/A,N/A -2012,5,25,4,30,100890,99740,98630,71.46000000000001,0,11.91,13.31,13.67,13.89,14.040000000000001,14.14,14.200000000000001,14.25,14.290000000000001,164.31,164.23,164.23,164.23,164.23,164.23,164.23,164.23,164.24,26.94,26.66,26.5,26.3,26.12,25.93,25.73,25.54,25.16,N/A,N/A -2012,5,25,5,30,100890,99740,98630,72.5,0,10.68,12,12.31,12.52,12.67,12.790000000000001,12.88,12.96,13.09,161.53,161.76,161.92000000000002,162.09,162.26,162.42000000000002,162.59,162.75,163.1,26.85,26.580000000000002,26.42,26.23,26.05,25.87,25.68,25.5,25.13,N/A,N/A -2012,5,25,6,30,100940,99790,98680,73.88,0,11.26,12.41,12.74,12.96,13.14,13.31,13.47,13.63,13.89,166.77,167.28,167.52,167.8,168.09,168.4,168.73,169.04,169.59,26.68,26.52,26.400000000000002,26.26,26.12,25.98,25.830000000000002,25.69,25.39,N/A,N/A -2012,5,25,7,30,100980,99830,98720,77.21000000000001,0,11.72,12.99,13.32,13.51,13.64,13.73,13.8,13.86,13.950000000000001,166.04,166.07,166.15,166.24,166.33,166.43,166.54,166.65,166.89000000000001,26.55,26.32,26.18,26.01,25.84,25.66,25.490000000000002,25.32,24.97,N/A,N/A -2012,5,25,8,30,101000,99850,98740,80,0,11.9,13.26,13.59,13.780000000000001,13.89,13.96,14,14.030000000000001,14.01,167.55,167.95000000000002,168.11,168.26,168.4,168.53,168.66,168.77,169.01,26.310000000000002,26.02,25.86,25.66,25.48,25.29,25.09,24.91,24.53,N/A,N/A -2012,5,25,9,30,101050,99900,98780,80.79,0,10.55,11.700000000000001,11.99,12.17,12.3,12.39,12.47,12.540000000000001,12.69,166.15,165.88,165.8,165.73,165.67000000000002,165.63,165.61,165.59,165.59,26.23,25.96,25.810000000000002,25.63,25.46,25.29,25.11,24.93,24.59,N/A,N/A -2012,5,25,10,30,101080,99930,98820,79.43,0,9.75,10.97,11.31,11.56,11.76,11.93,12.09,12.23,12.51,169.46,170.02,170.25,170.46,170.65,170.82,170.98,171.13,171.42000000000002,26.310000000000002,26.05,25.900000000000002,25.73,25.55,25.37,25.19,25.02,24.66,N/A,N/A -2012,5,25,11,30,101150,99990,98880,80.29,0,10.21,11.48,11.81,12.030000000000001,12.200000000000001,12.31,12.41,12.48,12.58,167.78,167.88,167.95000000000002,168.03,168.11,168.18,168.27,168.35,168.5,26.21,25.92,25.76,25.560000000000002,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A -2012,5,25,12,30,101210,100050,98940,77.78,0,9.97,11.040000000000001,11.3,11.450000000000001,11.540000000000001,11.6,11.64,11.66,11.68,171.29,170.52,170.22,169.93,169.69,169.47,169.29,169.12,168.85,26.38,26.11,25.95,25.77,25.580000000000002,25.400000000000002,25.2,25.02,24.650000000000002,N/A,N/A -2012,5,25,13,30,101300,100150,99030,79.14,0,8.5,9.39,9.620000000000001,9.76,9.86,9.94,10,10.05,10.14,172.07,172.17000000000002,172.18,172.18,172.17000000000002,172.15,172.13,172.11,172.08,26.330000000000002,26.080000000000002,25.92,25.740000000000002,25.560000000000002,25.38,25.2,25.02,24.66,N/A,N/A -2012,5,25,14,30,101370,100210,99090,79.42,0,8.38,9.34,9.57,9.72,9.82,9.89,9.94,9.98,10,170.44,170.36,170.38,170.41,170.45000000000002,170.48,170.52,170.56,170.64000000000001,26.41,26.13,25.97,25.78,25.59,25.41,25.22,25.04,24.650000000000002,N/A,N/A -2012,5,25,15,30,101410,100250,99130,78.72,0,6.55,7.2700000000000005,7.45,7.57,7.67,7.75,7.82,7.88,8.01,162,162.27,162.47,162.65,162.83,163,163.20000000000002,163.38,163.78,26.39,26.12,25.96,25.78,25.59,25.42,25.23,25.05,24.68,N/A,N/A -2012,5,25,16,30,101460,100300,99190,77.01,0,6.53,7.26,7.44,7.57,7.67,7.75,7.82,7.88,7.99,155.97,156.65,157.04,157.42000000000002,157.78,158.11,158.45000000000002,158.77,159.41,26.62,26.36,26.2,26.02,25.84,25.66,25.47,25.3,24.93,N/A,N/A -2012,5,25,17,30,101490,100340,99220,79.4,0,7.44,8.2,8.39,8.5,8.58,8.63,8.68,8.71,8.76,150.58,150.96,151.18,151.4,151.61,151.82,152.03,152.24,152.69,26.43,26.150000000000002,25.990000000000002,25.8,25.62,25.44,25.25,25.07,24.69,N/A,N/A -2012,5,25,18,30,101510,100360,99240,78.59,0,7.32,8.07,8.25,8.370000000000001,8.45,8.51,8.56,8.6,8.67,149.84,150.39000000000001,150.67000000000002,150.93,151.18,151.41,151.64000000000001,151.85,152.28,26.44,26.16,26,25.810000000000002,25.62,25.44,25.25,25.07,24.69,N/A,N/A -2012,5,25,19,30,101530,100370,99260,79.37,0,7.390000000000001,8.1,8.26,8.35,8.41,8.46,8.49,8.52,8.56,146.38,146.72,146.94,147.16,147.36,147.55,147.75,147.94,148.34,26.39,26.1,25.94,25.75,25.57,25.38,25.19,25.01,24.63,N/A,N/A -2012,5,25,20,30,101530,100370,99250,82.28,0,7.88,8.69,8.870000000000001,8.98,9.040000000000001,9.09,9.11,9.13,9.13,142.27,142.33,142.38,142.45000000000002,142.52,142.58,142.66,142.72,142.87,26.27,25.98,25.810000000000002,25.62,25.43,25.240000000000002,25.04,24.86,24.48,N/A,N/A -2012,5,25,21,30,101520,100360,99240,81.63,0,7.640000000000001,8.47,8.67,8.8,8.89,8.96,9.02,9.06,9.13,143.64000000000001,143.78,143.86,143.94,144.01,144.08,144.14000000000001,144.19,144.3,26.240000000000002,25.95,25.78,25.59,25.400000000000002,25.21,25.01,24.830000000000002,24.45,N/A,N/A -2012,5,25,22,30,101510,100350,99230,81.14,0,8.02,8.83,9.02,9.13,9.200000000000001,9.26,9.3,9.32,9.36,140.39000000000001,140.57,140.70000000000002,140.82,140.92000000000002,141.02,141.11,141.20000000000002,141.37,26.19,25.91,25.75,25.55,25.37,25.19,24.990000000000002,24.810000000000002,24.43,N/A,N/A -2012,5,25,23,30,101490,100330,99210,79.65,0,7.92,8.72,8.91,9.03,9.120000000000001,9.18,9.23,9.27,9.34,139.1,139.33,139.45000000000002,139.57,139.69,139.81,139.93,140.05,140.31,26.18,25.900000000000002,25.740000000000002,25.55,25.37,25.18,24.990000000000002,24.810000000000002,24.44,N/A,N/A -2012,5,26,0,30,101480,100330,99210,82.16,0,8.06,8.86,9.05,9.17,9.25,9.32,9.370000000000001,9.42,9.5,140.29,140.38,140.44,140.51,140.59,140.67000000000002,140.76,140.84,141.05,26.05,25.77,25.61,25.42,25.240000000000002,25.060000000000002,24.87,24.69,24.330000000000002,N/A,N/A -2012,5,26,1,30,101490,100330,99210,79.31,0,8.09,8.94,9.17,9.31,9.42,9.52,9.6,9.67,9.83,144.05,144.15,144.18,144.19,144.19,144.18,144.16,144.15,144.08,26.19,25.92,25.77,25.59,25.41,25.23,25.05,24.87,24.51,N/A,N/A -2012,5,26,2,30,101500,100340,99220,85.56,0,8.22,9.1,9.3,9.42,9.51,9.58,9.63,9.67,9.74,143.93,144.24,144.4,144.55,144.68,144.8,144.92000000000002,145.02,145.24,26.02,25.71,25.55,25.35,25.17,24.98,24.79,24.61,24.240000000000002,N/A,N/A -2012,5,26,3,30,101540,100380,99270,86.5,0,9.23,10.23,10.47,10.620000000000001,10.73,10.8,10.86,10.92,11,145.88,145.73,145.67000000000002,145.63,145.6,145.57,145.54,145.51,145.47,25.98,25.68,25.52,25.330000000000002,25.14,24.96,24.77,24.59,24.22,N/A,N/A -2012,5,26,4,30,101510,100350,99230,87.5,0,9.49,10.57,10.81,10.950000000000001,11.05,11.11,11.15,11.18,11.19,143.73,143.76,143.77,143.78,143.78,143.79,143.79,143.79,143.79,25.84,25.5,25.32,25.12,24.93,24.740000000000002,24.54,24.35,23.96,N/A,N/A -2012,5,26,5,30,101560,100410,99290,84.25,0,8.72,9.63,9.82,9.94,10.01,10.05,10.07,10.08,10.07,153.21,153.07,152.98,152.87,152.76,152.66,152.54,152.43,152.20000000000002,25.98,25.650000000000002,25.48,25.28,25.09,24.900000000000002,24.7,24.52,24.13,N/A,N/A -2012,5,26,6,30,101570,100410,99290,84.69,0,8.3,9.21,9.43,9.57,9.67,9.74,9.81,9.86,9.96,142.49,142.55,142.64000000000001,142.74,142.86,142.98,143.12,143.26,143.61,25.900000000000002,25.59,25.42,25.23,25.05,24.87,24.68,24.5,24.14,N/A,N/A -2012,5,26,7,30,101630,100470,99340,86.29,0,8.91,9.78,9.97,10.07,10.120000000000001,10.15,10.16,10.16,10.13,145.53,145.79,145.92000000000002,146.06,146.18,146.3,146.42000000000002,146.53,146.79,25.75,25.41,25.240000000000002,25.04,24.85,24.67,24.47,24.29,23.91,N/A,N/A -2012,5,26,8,30,101640,100480,99360,87.84,0,8.790000000000001,9.620000000000001,9.82,9.93,10.01,10.07,10.120000000000001,10.16,10.23,151.74,152.28,152.53,152.79,153.02,153.25,153.48,153.70000000000002,154.18,25.62,25.29,25.12,24.92,24.73,24.54,24.35,24.17,23.79,N/A,N/A -2012,5,26,9,30,101630,100470,99350,85.5,0,8.86,9.870000000000001,10.11,10.27,10.39,10.47,10.53,10.58,10.64,156.5,156.4,156.33,156.26,156.19,156.13,156.07,156,155.85,25.73,25.400000000000002,25.22,25.02,24.830000000000002,24.64,24.44,24.26,23.87,N/A,N/A -2012,5,26,10,30,101660,100500,99370,85.64,0,7.87,8.63,8.8,8.9,8.97,9.02,9.05,9.08,9.120000000000001,156.13,156.19,156.24,156.29,156.35,156.4,156.47,156.53,156.71,25.66,25.330000000000002,25.150000000000002,24.96,24.77,24.59,24.39,24.21,23.84,N/A,N/A -2012,5,26,11,30,101680,100520,99400,83.27,0,6.4,7.01,7.18,7.29,7.37,7.44,7.5,7.55,7.66,159.72,160.15,160.29,160.41,160.5,160.59,160.66,160.73,160.84,25.75,25.43,25.26,25.07,24.88,24.69,24.5,24.32,23.94,N/A,N/A -2012,5,26,12,30,101740,100570,99450,86.85000000000001,0,5.86,6.3,6.4,6.45,6.48,6.5,6.5200000000000005,6.53,6.55,152.85,153.24,153.44,153.66,153.88,154.1,154.33,154.55,155.04,25.55,25.21,25.03,24.830000000000002,24.64,24.45,24.25,24.060000000000002,23.67,N/A,N/A -2012,5,26,13,30,101760,100600,99480,83.06,0,5.24,5.66,5.73,5.7700000000000005,5.79,5.8,5.8100000000000005,5.8100000000000005,5.8,150.74,151.17000000000002,151.43,151.68,151.9,152.11,152.31,152.51,152.9,25.7,25.37,25.19,25,24.810000000000002,24.62,24.43,24.240000000000002,23.86,N/A,N/A -2012,5,26,14,30,101790,100630,99510,85.19,0,5.0600000000000005,5.45,5.53,5.57,5.6000000000000005,5.61,5.62,5.62,5.62,145.26,145.51,145.64000000000001,145.76,145.86,145.95000000000002,146.03,146.11,146.23,25.67,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.39,24.2,23.81,N/A,N/A -2012,5,26,15,30,101830,100660,99540,85.07000000000001,0,4.33,4.65,4.72,4.7700000000000005,4.8,4.83,4.86,4.88,4.92,134.12,134.58,134.86,135.1,135.32,135.53,135.73,135.93,136.36,25.59,25.26,25.080000000000002,24.89,24.7,24.51,24.310000000000002,24.13,23.75,N/A,N/A -2012,5,26,16,30,101820,100650,99530,84.22,0,5.42,5.78,5.84,5.84,5.84,5.82,5.79,5.76,5.67,133.99,134.44,134.69,134.94,135.17000000000002,135.41,135.66,135.91,136.5,25.57,25.22,25.04,24.85,24.66,24.47,24.27,24.09,23.71,N/A,N/A -2012,5,26,17,30,101810,100650,99530,85.42,0,5.82,6.2,6.24,6.24,6.23,6.2,6.16,6.13,6.0200000000000005,125.85000000000001,125.9,126.01,126.12,126.24000000000001,126.35000000000001,126.48,126.60000000000001,126.88000000000001,25.67,25.32,25.14,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A -2012,5,26,18,30,101790,100630,99510,84.61,0,5.58,5.96,6.03,6.05,6.07,6.07,6.07,6.0600000000000005,6.04,114.04,114.52,114.81,115.08,115.33,115.57000000000001,115.83,116.06,116.56,25.68,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A -2012,5,26,19,30,101770,100610,99490,82.41,0,5.98,6.47,6.5600000000000005,6.61,6.65,6.67,6.68,6.69,6.7,121.58,121.59,121.59,121.58,121.57000000000001,121.56,121.55,121.53,121.5,25.84,25.490000000000002,25.310000000000002,25.12,24.93,24.740000000000002,24.54,24.36,23.98,N/A,N/A -2012,5,26,20,30,101730,100570,99450,82.64,0,6.3500000000000005,6.9,7.01,7.08,7.12,7.15,7.17,7.18,7.19,117,117.02,117.12,117.23,117.33,117.44,117.56,117.67,117.89,26.01,25.67,25.5,25.3,25.11,24.92,24.72,24.54,24.150000000000002,N/A,N/A -2012,5,26,21,30,101700,100540,99420,81.87,0,6.8100000000000005,7.42,7.53,7.59,7.62,7.640000000000001,7.640000000000001,7.63,7.6000000000000005,125.08,124.84,124.75,124.65,124.57000000000001,124.49000000000001,124.41,124.34,124.19,26,25.67,25.5,25.3,25.11,24.92,24.73,24.54,24.16,N/A,N/A -2012,5,26,22,30,101660,100500,99380,79.13,0,6.61,7.24,7.38,7.46,7.5200000000000005,7.57,7.6000000000000005,7.63,7.68,121.5,121.53,121.55,121.57000000000001,121.59,121.62,121.65,121.68,121.74000000000001,26.14,25.84,25.68,25.48,25.3,25.12,24.92,24.740000000000002,24.36,N/A,N/A -2012,5,26,23,30,101620,100470,99340,80.43,0,6.8,7.44,7.58,7.66,7.71,7.75,7.7700000000000005,7.79,7.8100000000000005,126.42,126.39,126.37,126.36,126.35000000000001,126.32000000000001,126.3,126.28,126.21000000000001,26.04,25.73,25.57,25.37,25.18,25,24.8,24.62,24.23,N/A,N/A -2012,5,27,0,30,101600,100440,99320,82.59,0,7.07,7.76,7.930000000000001,8.03,8.11,8.16,8.21,8.26,8.33,123.44,123.46000000000001,123.5,123.51,123.52,123.52,123.52,123.52,123.5,25.94,25.64,25.48,25.29,25.1,24.92,24.72,24.54,24.17,N/A,N/A -2012,5,27,1,30,101560,100400,99280,83.09,0,7.88,8.67,8.84,8.94,9,9.03,9.05,9.06,9.05,125.39,125.36,125.36,125.36,125.36,125.36,125.36,125.37,125.37,25.97,25.66,25.490000000000002,25.3,25.11,24.92,24.73,24.54,24.16,N/A,N/A -2012,5,27,2,30,101560,100400,99280,79.29,0,7.96,8.790000000000001,8.96,9.06,9.120000000000001,9.16,9.18,9.19,9.200000000000001,130.23,130,129.93,129.87,129.82,129.79,129.76,129.74,129.71,26.04,25.72,25.55,25.35,25.16,24.97,24.78,24.6,24.22,N/A,N/A -2012,5,27,3,30,101540,100380,99260,81.47,0,8.39,9.15,9.34,9.43,9.5,9.55,9.58,9.61,9.67,127.87,128.4,128.62,128.84,129.03,129.21,129.4,129.58,129.94,25.79,25.490000000000002,25.330000000000002,25.14,24.96,24.79,24.6,24.43,24.07,N/A,N/A -2012,5,27,4,30,101520,100360,99240,81.78,0,7.83,8.69,8.9,9.03,9.120000000000001,9.19,9.24,9.290000000000001,9.34,132.19,132.05,132.03,132.03,132.04,132.05,132.08,132.1,132.16,25.740000000000002,25.41,25.23,25.04,24.84,24.650000000000002,24.46,24.27,23.89,N/A,N/A -2012,5,27,5,30,101510,100350,99230,81.28,0,7.140000000000001,7.83,8,8.1,8.17,8.23,8.27,8.3,8.370000000000001,138.17000000000002,138.41,138.6,138.81,139.01,139.21,139.43,139.62,140.06,25.77,25.45,25.28,25.09,24.900000000000002,24.72,24.53,24.35,23.97,N/A,N/A -2012,5,27,6,30,101510,100350,99230,82.5,0,7.15,7.72,7.87,7.95,8,8.040000000000001,8.08,8.1,8.16,141.09,141.4,141.51,141.61,141.73,141.84,141.97,142.1,142.43,25.69,25.36,25.19,24.990000000000002,24.8,24.62,24.43,24.25,23.89,N/A,N/A -2012,5,27,7,30,101530,100370,99250,86.05,0,7.08,7.73,7.890000000000001,7.98,8.05,8.1,8.15,8.18,8.23,141.68,141.87,141.96,142.05,142.14000000000001,142.23,142.32,142.4,142.58,25.560000000000002,25.21,25.03,24.830000000000002,24.64,24.45,24.26,24.07,23.69,N/A,N/A -2012,5,27,8,30,101520,100360,99240,84.17,0,6.92,7.51,7.640000000000001,7.71,7.76,7.79,7.82,7.83,7.86,145.29,145.43,145.53,145.63,145.72,145.8,145.89000000000001,145.97,146.14000000000001,25.64,25.29,25.12,24.92,24.72,24.54,24.34,24.16,23.77,N/A,N/A -2012,5,27,9,30,101510,100350,99230,83.56,0,6.13,6.6000000000000005,6.7,6.75,6.78,6.8100000000000005,6.83,6.8500000000000005,6.88,145.85,145.72,145.70000000000002,145.67000000000002,145.63,145.6,145.58,145.57,145.57,25.57,25.22,25.05,24.86,24.67,24.48,24.29,24.11,23.740000000000002,N/A,N/A -2012,5,27,10,30,101530,100370,99250,85.9,0,6.13,6.65,6.78,6.86,6.91,6.95,6.99,7.01,7.05,147.83,148.1,148.25,148.4,148.54,148.68,148.82,148.96,149.25,25.66,25.32,25.14,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A -2012,5,27,11,30,101530,100370,99250,85.4,0,6.58,7.12,7.24,7.29,7.33,7.3500000000000005,7.36,7.36,7.36,139.42000000000002,139.56,139.70000000000002,139.85,140.01,140.16,140.34,140.51,140.94,25.72,25.38,25.2,25.01,24.82,24.63,24.44,24.26,23.88,N/A,N/A -2012,5,27,12,30,101550,100390,99270,85.92,0,5.95,6.43,6.54,6.6000000000000005,6.640000000000001,6.67,6.69,6.7,6.72,132.27,132.44,132.54,132.63,132.71,132.78,132.85,132.92000000000002,133.07,25.7,25.36,25.19,24.990000000000002,24.8,24.61,24.41,24.23,23.85,N/A,N/A -2012,5,27,13,30,101550,100390,99270,84.87,0,5.7700000000000005,6.2700000000000005,6.38,6.44,6.48,6.51,6.54,6.5600000000000005,6.58,133.69,133.8,133.83,133.87,133.91,133.96,134.02,134.06,134.2,25.86,25.52,25.35,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.01,N/A,N/A -2012,5,27,14,30,101580,100430,99300,85.57000000000001,0,5.89,6.3500000000000005,6.45,6.5,6.53,6.54,6.5600000000000005,6.5600000000000005,6.5600000000000005,130.91,131.29,131.5,131.69,131.86,132.02,132.18,132.32,132.64000000000001,25.810000000000002,25.47,25.3,25.1,24.91,24.72,24.52,24.34,23.96,N/A,N/A -2012,5,27,15,30,101570,100410,99290,87.13,0,5.91,6.38,6.48,6.5200000000000005,6.55,6.5600000000000005,6.57,6.57,6.55,124.8,125.19,125.26,125.3,125.34,125.36,125.37,125.37,125.39,25.76,25.41,25.240000000000002,25.04,24.85,24.66,24.46,24.28,23.89,N/A,N/A -2012,5,27,16,30,101570,100420,99290,86.57000000000001,0,5.89,6.3100000000000005,6.390000000000001,6.43,6.45,6.46,6.46,6.45,6.43,123.62,123.89,123.98,124.09,124.19,124.28,124.37,124.47,124.67,25.82,25.47,25.3,25.1,24.91,24.72,24.52,24.34,23.96,N/A,N/A -2012,5,27,17,30,101540,100390,99260,85.71000000000001,0,5.3,5.66,5.73,5.76,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.75,119.22,119.47,119.61,119.73,119.84,119.95,120.06,120.16,120.38,25.84,25.490000000000002,25.310000000000002,25.12,24.92,24.73,24.54,24.35,23.97,N/A,N/A -2012,5,27,18,30,101520,100370,99240,84.73,0,5.5200000000000005,5.91,5.99,6.0200000000000005,6.04,6.05,6.0600000000000005,6.0600000000000005,6.05,122.18,122.35000000000001,122.46000000000001,122.57000000000001,122.67,122.77,122.87,122.96000000000001,123.16,25.91,25.560000000000002,25.38,25.18,24.990000000000002,24.8,24.6,24.42,24.03,N/A,N/A -2012,5,27,19,30,101490,100330,99210,84.08,0,6.24,6.74,6.84,6.88,6.91,6.93,6.93,6.93,6.92,126.09,126.26,126.36,126.46000000000001,126.55,126.64,126.73,126.82000000000001,127.02,25.98,25.650000000000002,25.47,25.27,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A -2012,5,27,20,30,101460,100300,99180,82.33,0,6.61,7.16,7.28,7.34,7.37,7.390000000000001,7.4,7.4,7.390000000000001,129.51,129.63,129.68,129.73,129.79,129.85,129.92000000000002,129.98,130.14000000000001,26.09,25.77,25.6,25.400000000000002,25.21,25.02,24.830000000000002,24.650000000000002,24.26,N/A,N/A -2012,5,27,21,30,101430,100270,99150,79.61,0,6.5,7.08,7.21,7.29,7.33,7.36,7.38,7.4,7.41,131.54,131.79,131.88,131.98,132.07,132.16,132.26,132.36,132.57,26.2,25.89,25.72,25.53,25.34,25.150000000000002,24.95,24.77,24.39,N/A,N/A -2012,5,27,22,30,101400,100250,99130,76.29,0,6.66,7.25,7.37,7.43,7.47,7.5,7.5,7.51,7.51,136.59,136.8,136.9,137,137.1,137.20000000000002,137.29,137.38,137.58,26.35,26.05,25.89,25.69,25.51,25.32,25.12,24.94,24.55,N/A,N/A -2012,5,27,23,30,101360,100210,99090,77.28,0,6.3500000000000005,6.88,6.98,7.0200000000000005,7.04,7.05,7.04,7.03,7,133.39000000000001,133.65,133.77,133.87,133.97,134.06,134.16,134.25,134.43,26.21,25.91,25.740000000000002,25.55,25.36,25.17,24.98,24.79,24.41,N/A,N/A -2012,5,28,0,30,101340,100180,99060,79.21000000000001,0,6,6.49,6.59,6.63,6.66,6.67,6.68,6.68,6.66,130.71,130.79,130.87,130.94,131.02,131.08,131.15,131.21,131.36,26,25.69,25.52,25.32,25.13,24.95,24.75,24.57,24.19,N/A,N/A -2012,5,28,1,30,101310,100150,99030,78.74,0,5.68,6.140000000000001,6.24,6.28,6.3100000000000005,6.32,6.32,6.32,6.3100000000000005,137.93,138,138.03,138.05,138.07,138.1,138.12,138.15,138.21,26.05,25.73,25.57,25.37,25.18,24.990000000000002,24.8,24.61,24.23,N/A,N/A -2012,5,28,2,30,101310,100150,99030,77.15,0,5.92,6.43,6.53,6.59,6.63,6.65,6.67,6.68,6.69,139.35,139.67000000000002,139.88,140.1,140.31,140.5,140.71,140.89000000000001,141.31,26.150000000000002,25.84,25.67,25.48,25.29,25.1,24.91,24.72,24.34,N/A,N/A -2012,5,28,3,30,101310,100160,99040,78.49,0,6.55,7.13,7.25,7.3100000000000005,7.3500000000000005,7.37,7.38,7.38,7.38,145.55,145.6,145.63,145.66,145.69,145.71,145.73,145.75,145.8,26.150000000000002,25.830000000000002,25.66,25.47,25.28,25.09,24.900000000000002,24.71,24.330000000000002,N/A,N/A -2012,5,28,4,30,101270,100120,99000,76.89,0,6.3100000000000005,6.8500000000000005,6.96,7,7.03,7.03,7.03,7.03,7,151.53,151.64000000000001,151.69,151.75,151.8,151.85,151.9,151.95000000000002,152.08,26.1,25.79,25.62,25.43,25.240000000000002,25.05,24.86,24.67,24.29,N/A,N/A -2012,5,28,5,30,101260,100110,98990,79.69,0,6.3500000000000005,6.9,7.01,7.07,7.1000000000000005,7.12,7.12,7.12,7.11,153.69,153.72,153.70000000000002,153.67000000000002,153.64000000000001,153.6,153.56,153.52,153.41,26.07,25.76,25.59,25.39,25.2,25.02,24.82,24.64,24.26,N/A,N/A -2012,5,28,6,30,101250,100100,98980,77.87,0,6.55,7.13,7.25,7.3100000000000005,7.3500000000000005,7.37,7.37,7.37,7.3500000000000005,157.19,157.17000000000002,157.20000000000002,157.25,157.31,157.37,157.46,157.54,157.76,26.21,25.89,25.71,25.52,25.330000000000002,25.14,24.94,24.76,24.37,N/A,N/A -2012,5,28,7,30,101270,100120,99000,78.33,0,6.55,7.1000000000000005,7.22,7.28,7.32,7.3500000000000005,7.36,7.38,7.38,161.66,161.8,161.85,161.9,161.94,161.99,162.03,162.08,162.17000000000002,26.25,25.93,25.76,25.57,25.38,25.19,25,24.810000000000002,24.43,N/A,N/A -2012,5,28,8,30,101250,100100,98980,74.28,0,6.25,6.82,6.96,7.04,7.1000000000000005,7.140000000000001,7.17,7.2,7.24,171.55,171.75,171.83,171.9,171.96,172.01,172.07,172.12,172.22,26.490000000000002,26.2,26.03,25.84,25.66,25.48,25.28,25.1,24.72,N/A,N/A -2012,5,28,9,30,101260,100110,98990,72.99,0,5.84,6.38,6.5,6.58,6.640000000000001,6.68,6.72,6.75,6.8100000000000005,172.14000000000001,172.24,172.24,172.22,172.20000000000002,172.19,172.17000000000002,172.14000000000001,172.11,26.650000000000002,26.36,26.2,26.01,25.82,25.64,25.45,25.27,24.89,N/A,N/A -2012,5,28,10,30,101280,100130,99010,76.74,0,5.61,6.1000000000000005,6.21,6.28,6.32,6.36,6.38,6.4,6.44,168.32,168.46,168.52,168.6,168.67000000000002,168.74,168.82,168.89000000000001,169.06,26.51,26.21,26.05,25.85,25.66,25.48,25.29,25.1,24.72,N/A,N/A -2012,5,28,11,30,101300,100150,99030,75.49,0,4.84,5.28,5.38,5.43,5.47,5.5,5.5200000000000005,5.54,5.58,174.13,174.19,174.19,174.18,174.18,174.17000000000002,174.17000000000002,174.16,174.14000000000001,26.7,26.41,26.25,26.05,25.87,25.68,25.490000000000002,25.310000000000002,24.93,N/A,N/A -2012,5,28,12,30,101330,100170,99060,75.89,0,5.4,5.9,6,6.0600000000000005,6.1000000000000005,6.12,6.13,6.140000000000001,6.140000000000001,170.28,170.13,170.08,170.03,169.96,169.89000000000001,169.82,169.75,169.6,26.77,26.48,26.310000000000002,26.11,25.93,25.740000000000002,25.54,25.36,24.97,N/A,N/A -2012,5,28,13,30,101340,100190,99070,77.51,0,5.89,6.38,6.47,6.51,6.5200000000000005,6.53,6.5200000000000005,6.5200000000000005,6.48,172.58,172.42000000000002,172.4,172.37,172.34,172.31,172.29,172.27,172.21,26.63,26.34,26.17,25.98,25.79,25.61,25.41,25.23,24.85,N/A,N/A -2012,5,28,14,30,101360,100210,99090,78.98,0,5.19,5.5600000000000005,5.62,5.65,5.66,5.66,5.65,5.64,5.61,164.88,165.22,165.49,165.75,166,166.24,166.5,166.76,167.37,26.35,26.04,25.87,25.68,25.5,25.310000000000002,25.12,24.94,24.57,N/A,N/A -2012,5,28,15,30,101380,100230,99110,81.48,0,4.86,5.22,5.29,5.33,5.3500000000000005,5.36,5.37,5.37,5.37,168.70000000000002,168.29,168.04,167.77,167.51,167.27,167.01,166.76,166.21,26.310000000000002,25.990000000000002,25.82,25.62,25.44,25.25,25.060000000000002,24.87,24.5,N/A,N/A -2012,5,28,16,30,101390,100230,99110,86.3,0,5.34,5.64,5.67,5.67,5.66,5.63,5.61,5.59,5.57,159.49,158.63,158.15,157.65,157.17000000000002,156.69,156.18,155.71,154.82,25.62,25.28,25.11,24.92,24.740000000000002,24.57,24.39,24.23,23.91,N/A,N/A -2012,5,28,17,30,101360,100200,99080,86.56,0,5.11,5.43,5.49,5.5200000000000005,5.54,5.54,5.55,5.55,5.55,160.88,161.37,161.72,162.08,162.43,162.79,163.21,163.62,164.72,25.68,25.32,25.150000000000002,24.95,24.76,24.57,24.38,24.2,23.84,N/A,N/A -2012,5,28,18,30,101350,100190,99070,88.23,5.9,6.03,6.5200000000000005,6.63,6.7,6.74,6.7700000000000005,6.8,6.8100000000000005,6.8500000000000005,167.9,167.92000000000002,167.84,167.77,167.69,167.62,167.56,167.5,167.45000000000002,25.77,25.42,25.240000000000002,25.04,24.86,24.68,24.48,24.310000000000002,23.94,N/A,N/A -2012,5,28,19,30,101350,100200,99080,87.35000000000001,0,5.14,5.49,5.57,5.61,5.63,5.65,5.66,5.67,5.68,195.75,195.67000000000002,195.61,195.52,195.41,195.28,195.12,194.96,194.5,25.7,25.35,25.17,24.97,24.79,24.6,24.41,24.22,23.85,N/A,N/A -2012,5,28,20,30,101300,100140,99020,82.98,0,5.1000000000000005,5.44,5.51,5.54,5.5600000000000005,5.57,5.57,5.58,5.59,183.03,182.92000000000002,182.87,182.83,182.8,182.79,182.79,182.81,182.91,25.87,25.53,25.36,25.16,24.98,24.79,24.6,24.42,24.060000000000002,N/A,N/A -2012,5,28,21,30,101260,100110,98990,84.75,0,4.89,5.22,5.29,5.32,5.34,5.3500000000000005,5.36,5.36,5.36,175.91,176.43,176.75,177.08,177.41,177.75,178.13,178.51,179.63,25.830000000000002,25.48,25.310000000000002,25.11,24.92,24.73,24.54,24.36,23.990000000000002,N/A,N/A -2012,5,28,22,30,101240,100090,98970,87.28,0,4.25,4.51,4.57,4.59,4.61,4.61,4.62,4.62,4.63,179.36,179.82,180.09,180.36,180.64000000000001,180.93,181.26,181.57,182.4,25.86,25.52,25.34,25.150000000000002,24.95,24.76,24.57,24.39,24,N/A,N/A -2012,5,28,23,30,101210,100060,98940,87.15,0,4.91,5.23,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3,5.29,5.26,183.76,184.19,184.45000000000002,184.74,185.02,185.3,185.61,185.92000000000002,186.65,26.07,25.73,25.560000000000002,25.37,25.18,24.990000000000002,24.8,24.61,24.240000000000002,N/A,N/A -2012,5,29,0,30,101190,100040,98920,86.54,0,5.1000000000000005,5.49,5.58,5.62,5.66,5.68,5.69,5.71,5.73,181.57,181.62,181.64000000000001,181.68,181.73,181.79,181.86,181.93,182.13,26.09,25.76,25.59,25.39,25.2,25.01,24.82,24.63,24.25,N/A,N/A -2012,5,29,1,30,101170,100010,98900,84.57000000000001,0,5.69,6.140000000000001,6.23,6.2700000000000005,6.3,6.32,6.33,6.34,6.34,189.56,189.65,189.76,189.86,189.96,190.07,190.18,190.29,190.56,26.240000000000002,25.92,25.75,25.560000000000002,25.37,25.18,24.990000000000002,24.810000000000002,24.43,N/A,N/A -2012,5,29,2,30,101180,100030,98910,83.62,0,6.36,6.890000000000001,7.01,7.0600000000000005,7.1000000000000005,7.12,7.13,7.140000000000001,7.140000000000001,184.18,184.32,184.42000000000002,184.5,184.59,184.67000000000002,184.75,184.83,185.02,26.310000000000002,26,25.830000000000002,25.63,25.44,25.26,25.060000000000002,24.88,24.5,N/A,N/A -2012,5,29,3,30,101190,100040,98920,79.41,0,6.83,7.43,7.55,7.6000000000000005,7.640000000000001,7.65,7.66,7.66,7.65,187.02,187.02,187.06,187.12,187.16,187.21,187.26,187.31,187.42000000000002,26.48,26.18,26.01,25.82,25.63,25.44,25.25,25.07,24.69,N/A,N/A -2012,5,29,4,30,101200,100050,98930,76.37,0,6.48,7.05,7.17,7.23,7.2700000000000005,7.29,7.3100000000000005,7.32,7.33,192.91,193.1,193.24,193.37,193.48000000000002,193.6,193.71,193.81,194.03,26.53,26.240000000000002,26.07,25.87,25.69,25.51,25.310000000000002,25.13,24.75,N/A,N/A -2012,5,29,5,30,101190,100030,98920,78.52,0,6.61,7.17,7.3,7.36,7.4,7.43,7.45,7.47,7.5,197.55,197.59,197.69,197.83,197.97,198.12,198.29,198.45000000000002,198.84,26.38,26.07,25.900000000000002,25.71,25.52,25.34,25.150000000000002,24.97,24.6,N/A,N/A -2012,5,29,6,30,101240,100090,98970,78.34,0,6.69,7.24,7.33,7.38,7.390000000000001,7.4,7.390000000000001,7.38,7.34,203.79,203.70000000000002,203.62,203.55,203.47,203.41,203.34,203.27,203.12,26.41,26.07,25.89,25.69,25.5,25.310000000000002,25.12,24.93,24.55,N/A,N/A -2012,5,29,7,30,101280,100120,99010,74.51,0,6.640000000000001,7.19,7.3100000000000005,7.36,7.390000000000001,7.4,7.4,7.4,7.38,206.91,207.01,207.03,207.03,207.02,207.02,207,206.98000000000002,206.94,26.560000000000002,26.240000000000002,26.07,25.87,25.68,25.490000000000002,25.29,25.11,24.72,N/A,N/A -2012,5,29,8,30,101300,100150,99030,73.69,0,6.13,6.65,6.78,6.8500000000000005,6.91,6.95,6.98,7,7.04,209.02,209.13,209.12,209.09,209.07,209.03,208.99,208.95000000000002,208.86,26.52,26.19,26.02,25.82,25.63,25.44,25.25,25.060000000000002,24.68,N/A,N/A -2012,5,29,9,30,101280,100130,99010,74.31,0,6.34,6.9,7.03,7.11,7.17,7.21,7.25,7.2700000000000005,7.32,207.22,207.41,207.54,207.66,207.76,207.86,207.96,208.04,208.21,26.51,26.18,26.01,25.810000000000002,25.62,25.43,25.23,25.04,24.66,N/A,N/A -2012,5,29,10,30,101290,100140,99020,76.07000000000001,0,6.69,7.28,7.42,7.5,7.55,7.59,7.61,7.63,7.65,218.09,217.94,217.85,217.76,217.67000000000002,217.59,217.51,217.44,217.29,26.44,26.11,25.93,25.73,25.54,25.35,25.150000000000002,24.97,24.580000000000002,N/A,N/A -2012,5,29,11,30,101300,100150,99030,77.12,0,7.28,7.84,7.96,8.01,8.040000000000001,8.05,8.040000000000001,8.040000000000001,8.01,215.72,215.59,215.43,215.25,215.07,214.89000000000001,214.71,214.54,214.17000000000002,26.34,26.01,25.84,25.63,25.44,25.25,25.05,24.86,24.48,N/A,N/A -2012,5,29,12,30,101310,100150,99040,75.68,0,6.44,6.96,7.09,7.17,7.22,7.26,7.3,7.33,7.38,218.65,218.6,218.57,218.55,218.52,218.5,218.48000000000002,218.46,218.41,26.37,26.04,25.86,25.66,25.48,25.29,25.09,24.91,24.53,N/A,N/A -2012,5,29,13,30,101340,100190,99070,78.38,0,6.43,6.98,7.11,7.18,7.24,7.28,7.3,7.33,7.36,219.57,219.53,219.52,219.51,219.5,219.49,219.48000000000002,219.48000000000002,219.47,26.34,25.990000000000002,25.82,25.62,25.42,25.23,25.03,24.85,24.46,N/A,N/A -2012,5,29,14,30,101370,100220,99100,78.52,0,6.7,7.26,7.390000000000001,7.46,7.5,7.53,7.55,7.5600000000000005,7.5600000000000005,223.46,223.35,223.29,223.23000000000002,223.17000000000002,223.12,223.07,223.02,222.91,26.45,26.12,25.95,25.740000000000002,25.55,25.36,25.16,24.98,24.59,N/A,N/A -2012,5,29,15,30,101400,100240,99130,78.15,0,6.36,6.88,7,7.0600000000000005,7.1000000000000005,7.140000000000001,7.15,7.17,7.19,222,221.81,221.78,221.74,221.72,221.70000000000002,221.68,221.66,221.64000000000001,26.490000000000002,26.16,25.990000000000002,25.79,25.6,25.41,25.21,25.03,24.64,N/A,N/A -2012,5,29,16,30,101390,100230,99120,77.51,0,5.82,6.28,6.4,6.46,6.51,6.55,6.58,6.61,6.65,225.27,225.31,225.36,225.42000000000002,225.47,225.53,225.59,225.66,225.81,26.55,26.22,26.05,25.85,25.66,25.48,25.29,25.1,24.73,N/A,N/A -2012,5,29,17,30,101400,100250,99130,79.79,0,6.09,6.54,6.63,6.67,6.7,6.71,6.71,6.71,6.7,219.24,219.32,219.41,219.49,219.56,219.62,219.68,219.75,219.87,26.53,26.19,26.02,25.82,25.63,25.44,25.240000000000002,25.060000000000002,24.68,N/A,N/A -2012,5,29,18,30,101370,100220,99110,79.73,0,6.41,6.9,7,7.05,7.07,7.09,7.09,7.09,7.07,208.38,208.71,208.88,209.03,209.16,209.29,209.41,209.52,209.73000000000002,26.68,26.34,26.17,25.97,25.77,25.59,25.39,25.2,24.82,N/A,N/A -2012,5,29,19,30,101340,100190,99070,78.4,0,6.6000000000000005,7.15,7.26,7.32,7.36,7.38,7.390000000000001,7.4,7.4,204.85,205.04,205.15,205.25,205.34,205.43,205.52,205.6,205.78,26.740000000000002,26.41,26.23,26.04,25.85,25.66,25.46,25.28,24.900000000000002,N/A,N/A -2012,5,29,20,30,101300,100150,99040,78.10000000000001,0,6.91,7.49,7.62,7.68,7.71,7.73,7.74,7.74,7.72,202.52,202.76,202.87,202.95000000000002,203.02,203.08,203.12,203.15,203.22,26.8,26.48,26.310000000000002,26.11,25.92,25.73,25.54,25.35,24.97,N/A,N/A -2012,5,29,21,30,101260,100110,99000,78.17,0,6.79,7.37,7.49,7.55,7.58,7.6000000000000005,7.61,7.61,7.6000000000000005,201.18,201.29,201.34,201.37,201.4,201.43,201.46,201.47,201.52,26.810000000000002,26.490000000000002,26.32,26.12,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A -2012,5,29,22,30,101210,100060,98950,77.75,0,7.16,7.78,7.91,7.97,8.01,8.03,8.040000000000001,8.040000000000001,8.02,204.21,204.32,204.4,204.47,204.53,204.6,204.67000000000002,204.73000000000002,204.87,26.810000000000002,26.5,26.34,26.14,25.95,25.77,25.57,25.39,25.01,N/A,N/A -2012,5,29,23,30,101170,100030,98910,78.74,0,7.43,8.09,8.23,8.290000000000001,8.33,8.34,8.35,8.35,8.33,205.83,205.93,205.98000000000002,206.04,206.09,206.14000000000001,206.20000000000002,206.25,206.38,26.78,26.47,26.3,26.11,25.92,25.73,25.54,25.36,24.98,N/A,N/A -2012,5,30,0,30,101140,99990,98880,81,0,7.67,8.33,8.48,8.540000000000001,8.58,8.6,8.6,8.6,8.58,202.61,202.68,202.68,202.70000000000002,202.71,202.72,202.73000000000002,202.75,202.79,26.67,26.35,26.18,25.98,25.8,25.61,25.41,25.23,24.86,N/A,N/A -2012,5,30,1,30,101130,99980,98870,82.82000000000001,0,7.5,8.16,8.290000000000001,8.36,8.4,8.41,8.42,8.42,8.4,199.44,199.49,199.53,199.58,199.62,199.66,199.71,199.75,199.87,26.57,26.240000000000002,26.07,25.87,25.68,25.490000000000002,25.3,25.11,24.73,N/A,N/A -2012,5,30,2,30,101140,99990,98880,82.44,0,7.54,8.18,8.32,8.38,8.41,8.43,8.43,8.43,8.4,201.67000000000002,201.64000000000001,201.67000000000002,201.69,201.72,201.74,201.76,201.79,201.84,26.59,26.26,26.09,25.89,25.7,25.51,25.32,25.14,24.77,N/A,N/A -2012,5,30,3,30,101170,100020,98900,83.92,0,7.6000000000000005,8.27,8.41,8.47,8.52,8.540000000000001,8.540000000000001,8.540000000000001,8.52,201.33,201.37,201.4,201.42000000000002,201.45000000000002,201.47,201.51,201.54,201.61,26.51,26.17,26,25.8,25.62,25.43,25.23,25.05,24.67,N/A,N/A -2012,5,30,4,30,101160,100010,98900,82.75,0,7.25,7.87,8.01,8.07,8.11,8.120000000000001,8.13,8.13,8.11,205.20000000000002,205.24,205.27,205.3,205.33,205.35,205.38,205.41,205.46,26.580000000000002,26.26,26.09,25.89,25.7,25.51,25.32,25.14,24.76,N/A,N/A -2012,5,30,5,30,101140,99990,98870,83.86,0,7.15,7.74,7.87,7.930000000000001,7.97,7.99,8,8,7.99,204.87,204.79,204.78,204.77,204.77,204.77,204.78,204.79,204.82,26.490000000000002,26.150000000000002,25.98,25.78,25.6,25.41,25.22,25.04,24.66,N/A,N/A -2012,5,30,6,30,101160,100010,98890,85.98,0,7.33,7.97,8.11,8.19,8.23,8.26,8.27,8.28,8.27,199.26,199.29,199.29,199.28,199.27,199.25,199.23000000000002,199.20000000000002,199.15,26.39,26.04,25.87,25.66,25.48,25.28,25.09,24.900000000000002,24.52,N/A,N/A -2012,5,30,7,30,101190,100040,98930,84.2,0,6.91,7.54,7.68,7.76,7.82,7.8500000000000005,7.87,7.890000000000001,7.9,207.3,207.47,207.54,207.62,207.70000000000002,207.77,207.84,207.91,208.05,26.560000000000002,26.23,26.060000000000002,25.86,25.67,25.48,25.28,25.09,24.71,N/A,N/A -2012,5,30,8,30,101130,99980,98860,85.10000000000001,0,7.3100000000000005,7.92,8.06,8.13,8.18,8.2,8.22,8.23,8.22,204.87,204.77,204.67000000000002,204.58,204.52,204.47,204.42000000000002,204.38,204.3,26.3,25.95,25.77,25.57,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A -2012,5,30,9,30,101170,100020,98910,86.35000000000001,0,5.9,6.38,6.5,6.57,6.63,6.66,6.69,6.71,6.75,203.49,203.66,203.74,203.81,203.86,203.9,203.93,203.97,204.02,26.29,25.93,25.76,25.560000000000002,25.37,25.17,24.97,24.79,24.400000000000002,N/A,N/A -2012,5,30,10,30,101160,100010,98890,80.33,0,6.1000000000000005,6.6000000000000005,6.73,6.8100000000000005,6.87,6.92,6.97,7.01,7.1000000000000005,206.23000000000002,205.81,205.62,205.45000000000002,205.31,205.19,205.09,204.99,204.86,26.32,25.97,25.8,25.6,25.41,25.23,25.03,24.85,24.48,N/A,N/A -2012,5,30,11,30,101200,100040,98930,80.02,0,5.32,5.73,5.83,5.88,5.91,5.94,5.95,5.97,5.98,210.05,210.11,210.13,210.13,210.13,210.11,210.09,210.06,209.97,26.490000000000002,26.150000000000002,25.98,25.78,25.59,25.400000000000002,25.2,25.02,24.64,N/A,N/A -2012,5,30,12,30,101220,100070,98950,83.36,0,5.73,6.2,6.3100000000000005,6.38,6.42,6.45,6.48,6.49,6.51,206.96,207.06,207.1,207.13,207.16,207.18,207.20000000000002,207.21,207.24,26.310000000000002,25.97,25.8,25.6,25.400000000000002,25.21,25.02,24.830000000000002,24.44,N/A,N/A -2012,5,30,13,30,101250,100100,98980,81.53,0,4.58,4.91,5,5.05,5.09,5.12,5.15,5.17,5.21,216.33,216.03,215.8,215.56,215.35,215.14000000000001,214.93,214.73000000000002,214.33,26.32,25.98,25.810000000000002,25.61,25.42,25.22,25.03,24.84,24.46,N/A,N/A -2012,5,30,14,30,101290,100140,99030,79.29,0,4.93,5.3,5.38,5.42,5.45,5.47,5.48,5.49,5.5,207.68,207.71,207.81,207.91,207.98000000000002,208.04,208.1,208.16,208.28,26.55,26.22,26.05,25.85,25.66,25.47,25.27,25.080000000000002,24.7,N/A,N/A -2012,5,30,15,30,101330,100180,99060,77.92,0,1.76,1.87,1.9000000000000001,1.9100000000000001,1.92,1.93,1.94,1.95,1.96,222.36,221.35,220.9,220.46,220.06,219.68,219.31,218.96,218.27,26.560000000000002,26.23,26.060000000000002,25.86,25.67,25.48,25.28,25.1,24.72,N/A,N/A -2012,5,30,16,30,101330,100180,99060,76.72,0,1.75,1.84,1.84,1.85,1.85,1.84,1.84,1.84,1.83,222.1,221.67000000000002,221.63,221.6,221.56,221.54,221.51,221.49,221.44,26.62,26.28,26.11,25.91,25.72,25.52,25.330000000000002,25.14,24.76,N/A,N/A -2012,5,30,17,30,101270,100120,99000,80.11,0,3.08,3.25,3.29,3.31,3.33,3.34,3.35,3.36,3.38,206.75,206.38,206.26,206.13,206.02,205.91,205.81,205.71,205.52,26.560000000000002,26.2,26.02,25.82,25.63,25.44,25.25,25.060000000000002,24.68,N/A,N/A -2012,5,30,18,30,101260,100110,99000,80.36,0,3.4,3.5700000000000003,3.6,3.6,3.6,3.6,3.6,3.6,3.59,202.86,202.9,202.97,203.02,203.06,203.1,203.14000000000001,203.18,203.26,26.650000000000002,26.29,26.11,25.91,25.71,25.52,25.330000000000002,25.14,24.75,N/A,N/A -2012,5,30,19,30,101220,100070,98950,79.3,0,3.62,3.8000000000000003,3.83,3.84,3.85,3.85,3.84,3.84,3.83,189,189.4,189.66,189.9,190.11,190.3,190.49,190.67000000000002,191.01,26.7,26.330000000000002,26.16,25.95,25.76,25.57,25.37,25.19,24.8,N/A,N/A -2012,5,30,20,30,101140,99990,98880,79.2,0,4.33,4.59,4.63,4.64,4.65,4.65,4.65,4.64,4.63,190.14000000000001,190.14000000000001,190.13,190.12,190.12,190.11,190.1,190.09,190.04,26.69,26.330000000000002,26.150000000000002,25.95,25.76,25.57,25.37,25.19,24.8,N/A,N/A -2012,5,30,21,30,101080,99930,98810,79.05,0,5.34,5.71,5.79,5.82,5.84,5.8500000000000005,5.86,5.86,5.8500000000000005,190.49,190.38,190.29,190.19,190.1,190,189.9,189.81,189.61,26.68,26.34,26.17,25.97,25.77,25.59,25.39,25.2,24.82,N/A,N/A -2012,5,30,22,30,101010,99860,98740,79.33,0,5.86,6.3100000000000005,6.41,6.46,6.5,6.53,6.55,6.5600000000000005,6.59,195.75,195.72,195.72,195.72,195.73000000000002,195.74,195.75,195.76,195.78,26.66,26.32,26.16,25.95,25.77,25.580000000000002,25.38,25.2,24.82,N/A,N/A -2012,5,30,23,30,100970,99820,98700,79.45,0,7.140000000000001,7.73,7.86,7.92,7.95,7.97,7.98,7.98,7.96,200.11,200.07,200.06,200.03,200.01,199.99,199.97,199.95000000000002,199.91,26.62,26.29,26.12,25.92,25.73,25.54,25.35,25.16,24.78,N/A,N/A -2012,5,31,0,30,100930,99790,98670,82.96000000000001,0,7.01,7.61,7.75,7.8100000000000005,7.86,7.890000000000001,7.9,7.91,7.91,196.99,197.19,197.27,197.32,197.35,197.39000000000001,197.4,197.42000000000002,197.44,26.490000000000002,26.150000000000002,25.98,25.78,25.59,25.400000000000002,25.2,25.01,24.63,N/A,N/A -2012,5,31,1,30,100910,99760,98650,79.15,0,6.5600000000000005,7.1000000000000005,7.23,7.3,7.34,7.37,7.390000000000001,7.4,7.41,186.88,187.1,187.24,187.33,187.39000000000001,187.43,187.46,187.48,187.49,26.53,26.2,26.03,25.830000000000002,25.64,25.45,25.26,25.07,24.69,N/A,N/A -2012,5,31,2,30,100880,99740,98630,79.53,0,7.21,7.83,7.97,8.05,8.1,8.13,8.15,8.17,8.19,189.76,189.61,189.55,189.5,189.47,189.43,189.4,189.37,189.32,26.490000000000002,26.150000000000002,25.98,25.77,25.59,25.400000000000002,25.2,25.02,24.64,N/A,N/A -2012,5,31,3,30,100920,99770,98660,77.64,0,7.390000000000001,8.040000000000001,8.19,8.27,8.32,8.35,8.370000000000001,8.39,8.41,185.15,185.25,185.37,185.47,185.55,185.63,185.71,185.78,185.92000000000002,26.560000000000002,26.240000000000002,26.060000000000002,25.87,25.68,25.490000000000002,25.3,25.11,24.73,N/A,N/A -2012,5,31,4,30,100920,99770,98660,81.02,0,7.38,8.05,8.21,8.3,8.36,8.4,8.43,8.45,8.47,191.58,191.84,191.89000000000001,191.91,191.93,191.94,191.95000000000002,191.96,191.96,26.43,26.09,25.91,25.71,25.51,25.32,25.13,24.94,24.55,N/A,N/A -2012,5,31,5,30,100860,99710,98600,81.41,0,8.33,9.1,9.27,9.36,9.42,9.46,9.49,9.5,9.52,179.13,179.75,179.97,180.15,180.3,180.44,180.58,180.69,180.93,26.37,26.02,25.84,25.64,25.44,25.25,25.060000000000002,24.87,24.490000000000002,N/A,N/A -2012,5,31,6,30,100890,99740,98630,79.51,0,8.61,9.31,9.48,9.55,9.59,9.6,9.61,9.61,9.59,178.75,179.21,179.5,179.75,179.97,180.17000000000002,180.37,180.55,180.94,26.45,26.11,25.94,25.73,25.55,25.36,25.17,24.98,24.61,N/A,N/A -2012,5,31,7,30,100890,99750,98630,80.61,0,7.99,8.74,8.94,9.06,9.15,9.22,9.27,9.32,9.39,177.42000000000002,177.94,178.22,178.49,178.73,178.95000000000002,179.15,179.35,179.71,26.42,26.07,25.900000000000002,25.69,25.5,25.3,25.11,24.92,24.53,N/A,N/A -2012,5,31,8,30,100920,99780,98660,82.27,0,7.3,7.97,8.14,8.25,8.33,8.39,8.44,8.48,8.540000000000001,189.26,188.67000000000002,188.48,188.31,188.15,188.02,187.89000000000001,187.78,187.56,26.43,26.09,25.91,25.7,25.51,25.32,25.12,24.93,24.55,N/A,N/A -2012,5,31,9,30,100880,99740,98630,79.42,0,7.98,8.69,8.88,8.98,9.05,9.1,9.13,9.16,9.21,188.06,188.17000000000002,188.16,188.11,188.06,187.99,187.9,187.82,187.61,26.51,26.17,26,25.8,25.61,25.42,25.23,25.04,24.67,N/A,N/A -2012,5,31,10,30,100910,99760,98650,80.76,0,7.32,7.94,8.09,8.15,8.19,8.22,8.22,8.23,8.21,186.41,186.56,186.70000000000002,186.83,186.94,187.04,187.15,187.25,187.47,26.48,26.14,25.96,25.76,25.57,25.38,25.19,25,24.61,N/A,N/A -2012,5,31,11,30,100920,99770,98660,77.7,0,6.42,6.93,7.07,7.140000000000001,7.2,7.23,7.26,7.29,7.33,195.69,195.36,195.25,195.17000000000002,195.11,195.06,195.02,194.99,194.95000000000002,26.72,26.400000000000002,26.240000000000002,26.04,25.85,25.66,25.47,25.29,24.91,N/A,N/A -2012,5,31,12,30,100940,99790,98680,78.2,0,6.2700000000000005,6.84,6.99,7.09,7.16,7.21,7.26,7.29,7.3500000000000005,196.78,196.76,196.73000000000002,196.70000000000002,196.66,196.62,196.57,196.52,196.43,26.72,26.400000000000002,26.23,26.03,25.84,25.650000000000002,25.45,25.27,24.88,N/A,N/A -2012,5,31,13,30,100960,99820,98700,80.59,0,6.65,7.2,7.33,7.41,7.46,7.5,7.53,7.5600000000000005,7.6000000000000005,204.19,204.42000000000002,204.46,204.48000000000002,204.5,204.52,204.53,204.53,204.54,26.63,26.310000000000002,26.13,25.93,25.740000000000002,25.55,25.36,25.17,24.79,N/A,N/A -2012,5,31,14,30,100970,99830,98710,80.74,0,6.17,6.8100000000000005,6.98,7.08,7.16,7.21,7.25,7.29,7.33,202.5,202.15,202.06,202,201.95000000000002,201.91,201.89000000000001,201.86,201.84,26.82,26.490000000000002,26.32,26.13,25.94,25.75,25.55,25.37,24.98,N/A,N/A -2012,5,31,15,30,101030,99880,98770,80.07000000000001,0,5.04,5.45,5.5600000000000005,5.63,5.68,5.71,5.74,5.76,5.79,210.55,210.64000000000001,210.70000000000002,210.75,210.78,210.82,210.85,210.87,210.92000000000002,26.830000000000002,26.51,26.34,26.14,25.95,25.76,25.560000000000002,25.38,25,N/A,N/A -2012,5,31,16,30,101050,99910,98790,80.60000000000001,0,5.34,5.76,5.86,5.91,5.94,5.96,5.97,5.97,5.97,212.39000000000001,212.37,212.31,212.27,212.25,212.22,212.21,212.20000000000002,212.17000000000002,26.97,26.64,26.48,26.27,26.09,25.89,25.7,25.51,25.13,N/A,N/A -2012,5,31,17,30,101040,99890,98780,80.2,0,5.91,6.36,6.47,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.61,6.62,199.98000000000002,199.83,199.68,199.53,199.39000000000001,199.25,199.12,198.98000000000002,198.73000000000002,27.03,26.71,26.54,26.34,26.150000000000002,25.96,25.77,25.580000000000002,25.2,N/A,N/A -2012,5,31,18,30,101060,99910,98800,80.45,0,4.7700000000000005,5.12,5.2,5.25,5.28,5.3,5.32,5.33,5.34,205.01,204.96,204.98000000000002,204.99,204.99,204.99,204.98000000000002,204.98000000000002,204.96,27.07,26.740000000000002,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.22,N/A,N/A -2012,5,31,19,30,100990,99850,98740,77.37,0,5.74,6.16,6.23,6.26,6.2700000000000005,6.2700000000000005,6.26,6.25,6.22,191.92000000000002,191.92000000000002,191.9,191.85,191.79,191.73000000000002,191.66,191.59,191.4,27.17,26.85,26.68,26.48,26.29,26.1,25.91,25.72,25.34,N/A,N/A -2012,5,31,20,30,100890,99750,98640,81.57000000000001,0,7.25,7.87,8,8.06,8.1,8.120000000000001,8.14,8.15,8.15,188.1,188.43,188.58,188.73,188.87,189,189.14000000000001,189.26,189.53,27.09,26.76,26.59,26.39,26.2,26.01,25.82,25.63,25.25,N/A,N/A -2012,5,31,21,30,100890,99750,98640,81.85000000000001,0,5.53,5.96,6.05,6.09,6.11,6.12,6.13,6.13,6.12,209.45000000000002,209.13,209.08,209.14000000000001,209.22,209.32,209.45000000000002,209.58,209.88,27.07,26.76,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A -2012,5,31,22,30,100950,99810,98700,82.45,0.7000000000000001,10.08,11.03,11.23,11.33,11.39,11.43,11.46,11.48,11.49,236.65,236.70000000000002,236.53,236.39000000000001,236.28,236.20000000000002,236.11,236.04,235.91,26.96,26.650000000000002,26.48,26.28,26.09,25.91,25.71,25.53,25.150000000000002,N/A,N/A -2012,5,31,23,30,101070,99910,98780,79.10000000000001,0,14.41,15.74,16.1,16.29,16.45,16.580000000000002,16.75,16.93,17.7,285.21,285.22,285.05,284.87,284.68,284.47,284.22,283.98,283.32,24.32,23.81,23.61,23.42,23.25,23.1,22.95,22.830000000000002,22.69,N/A,N/A -2012,6,1,0,30,100990,99840,98710,75.10000000000001,0,11.92,12.92,13.14,13.21,13.24,13.24,13.22,13.200000000000001,13.14,331.6,331.21,330.92,330.65000000000003,330.39,330.15000000000003,329.91,329.69,329.22,24.66,24.17,23.96,23.75,23.56,23.37,23.18,23,22.64,N/A,N/A -2012,6,1,1,30,100810,99660,98550,75.12,0,2.75,2.85,2.82,2.79,2.69,2.57,2.52,2.5,2.66,329.33,329.57,330.21,331.59000000000003,335.57,341.43,339.62,335.7,317.78000000000003,25.25,24.93,24.77,24.59,24.75,25.17,25.830000000000002,26.53,27.13,N/A,N/A -2012,6,1,2,30,100990,99840,98720,71.47,0,3.02,3.14,3.13,3.1,3.0500000000000003,2.99,2.88,2.77,2.49,66.57000000000001,67.03,67.04,67.05,67.03,66.99,67.38,67.91,68.54,26.080000000000002,25.76,25.6,25.42,25.26,25.11,24.990000000000002,24.900000000000002,24.79,N/A,N/A -2012,6,1,3,30,101000,99850,98730,77.78,0,3.09,3.2,3.21,3.2,3.19,3.17,3.14,3.11,3.0300000000000002,102.99000000000001,103.3,102.56,101.85000000000001,101.12,100.39,99.46000000000001,98.56,94.7,25.72,25.38,25.21,25.02,24.830000000000002,24.64,24.46,24.28,23.93,N/A,N/A -2012,6,1,4,30,101070,99920,98800,77.16,0,3.48,3.63,3.65,3.65,3.63,3.62,3.59,3.5700000000000003,3.52,181.71,181.56,181.54,181.52,181.51,181.51,181.51,181.51,181.54,25.82,25.47,25.3,25.09,24.91,24.71,24.52,24.330000000000002,23.95,N/A,N/A -2012,6,1,5,30,101090,99940,98820,70.58,0,2.45,2.61,2.66,2.69,2.72,2.74,2.7600000000000002,2.79,2.84,185.43,186.74,187.35,187.96,188.55,189.13,189.75,190.34,191.67000000000002,26.35,26.03,25.86,25.66,25.47,25.29,25.1,24.93,24.560000000000002,N/A,N/A -2012,6,1,6,30,101140,99990,98870,74.3,0,2.52,2.67,2.71,2.73,2.75,2.77,2.79,2.81,2.85,209.39000000000001,210.57,211.25,211.98000000000002,212.70000000000002,213.45000000000002,214.3,215.13,217.29,26.35,26.02,25.85,25.650000000000002,25.46,25.27,25.080000000000002,24.900000000000002,24.54,N/A,N/A -2012,6,1,7,30,101180,100030,98910,72.45,0,2.56,2.69,2.72,2.72,2.73,2.74,2.74,2.75,2.74,223.81,224.74,225.28,225.83,226.3,226.75,227.21,227.63,228.49,26.54,26.21,26.04,25.85,25.66,25.47,25.28,25.09,24.71,N/A,N/A -2012,6,1,8,30,101200,100050,98930,75.91,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.0500000000000003,3.04,3.0300000000000002,3.0100000000000002,2.97,233.19,233.5,233.66,233.84,234.01,234.19,234.38,234.56,234.98000000000002,26.42,26.080000000000002,25.91,25.71,25.52,25.330000000000002,25.14,24.96,24.57,N/A,N/A -2012,6,1,9,30,101210,100060,98950,78.91,0,2.93,3.11,3.15,3.17,3.19,3.19,3.21,3.21,3.22,227.77,228.66,229.07,229.48000000000002,229.86,230.23000000000002,230.6,230.94,231.67000000000002,26.38,26.05,25.88,25.68,25.490000000000002,25.310000000000002,25.11,24.93,24.54,N/A,N/A -2012,6,1,10,30,101240,100090,98970,82.09,0.7000000000000001,3.96,4.24,4.29,4.3100000000000005,4.33,4.33,4.33,4.33,4.32,257.99,258.93,259.23,259.5,259.73,259.93,260.11,260.29,260.61,26.26,25.91,25.740000000000002,25.54,25.35,25.16,24.96,24.78,24.39,N/A,N/A -2012,6,1,11,30,101290,100140,99020,77.52,0,4.91,5.19,5.24,5.25,5.25,5.24,5.22,5.21,5.16,289.85,290,290.02,290.06,290.09000000000003,290.13,290.17,290.22,290.34000000000003,26.23,25.87,25.7,25.5,25.310000000000002,25.12,24.92,24.740000000000002,24.36,N/A,N/A -2012,6,1,12,30,101330,100170,99050,81.82000000000001,0,3.83,4.03,4.07,4.08,4.08,4.08,4.08,4.08,4.0600000000000005,314.59000000000003,315.27,315.81,316.34000000000003,316.84000000000003,317.31,317.81,318.28000000000003,319.32,26.05,25.69,25.51,25.32,25.12,24.94,24.740000000000002,24.560000000000002,24.18,N/A,N/A -2012,6,1,13,30,101390,100230,99110,83.56,0,4.05,4.26,4.29,4.3,4.29,4.29,4.28,4.26,4.24,326.08,327.53000000000003,328.35,329.2,329.98,330.76,331.55,332.31,333.91,26.16,25.810000000000002,25.63,25.44,25.25,25.060000000000002,24.87,24.68,24.310000000000002,N/A,N/A -2012,6,1,14,30,101410,100250,99130,84.60000000000001,0,5.25,5.55,5.6000000000000005,5.62,5.62,5.61,5.6000000000000005,5.59,5.5600000000000005,32.62,32.06,31.84,31.62,31.42,31.220000000000002,31,30.79,30.3,25.34,24.94,24.76,24.560000000000002,24.36,24.18,23.990000000000002,23.8,23.43,N/A,N/A -2012,6,1,15,30,101420,100260,99140,79.34,0,6.41,6.82,6.890000000000001,6.9,6.890000000000001,6.87,6.84,6.8,6.71,37.81,37.97,38.02,38.07,38.08,38.09,38.09,38.08,37.97,25.54,25.13,24.95,24.75,24.55,24.37,24.17,23.990000000000002,23.62,N/A,N/A -2012,6,1,16,30,101430,100270,99150,73.82000000000001,0,5.65,5.99,6.0600000000000005,6.08,6.09,6.09,6.08,6.07,6.0600000000000005,62.120000000000005,62.04,61.92,61.800000000000004,61.67,61.54,61.36,61.18,60.620000000000005,25.91,25.54,25.36,25.17,24.98,24.8,24.61,24.44,24.080000000000002,N/A,N/A -2012,6,1,17,30,101440,100280,99160,74.12,0,5.29,5.6000000000000005,5.64,5.64,5.62,5.6000000000000005,5.5600000000000005,5.54,5.44,101.3,101.14,101.03,100.9,100.79,100.66,100.5,100.34,99.83,26.12,25.76,25.59,25.39,25.2,25.02,24.84,24.66,24.3,N/A,N/A -2012,6,1,18,30,101410,100260,99140,73.81,0,4.67,4.92,4.95,4.95,4.93,4.9,4.87,4.83,4.73,125.51,125.25,125.11,124.97,124.82000000000001,124.66,124.45,124.23,123.49000000000001,26.330000000000002,25.98,25.8,25.61,25.43,25.25,25.05,24.88,24.53,N/A,N/A -2012,6,1,19,30,101380,100220,99110,74,0,4.16,4.36,4.38,4.36,4.34,4.32,4.28,4.23,4.12,127.42,127.26,127.19,127.11,127.01,126.89,126.75,126.60000000000001,126.06,26.580000000000002,26.23,26.060000000000002,25.86,25.68,25.5,25.310000000000002,25.14,24.79,N/A,N/A -2012,6,1,20,30,101320,100170,99050,75.21000000000001,0,3.5300000000000002,3.68,3.69,3.68,3.66,3.63,3.6,3.5700000000000003,3.47,137.34,137.27,137.22,137.15,137.07,137,136.88,136.77,136.41,26.73,26.37,26.2,26,25.82,25.63,25.44,25.26,24.900000000000002,N/A,N/A -2012,6,1,21,30,101270,100120,99010,74.71000000000001,0,3.46,3.62,3.63,3.62,3.61,3.59,3.56,3.54,3.48,145.82,145.81,145.74,145.68,145.61,145.54,145.44,145.33,145.03,26.88,26.54,26.37,26.17,25.98,25.8,25.61,25.43,25.060000000000002,N/A,N/A -2012,6,1,22,30,101240,100090,98980,75.85000000000001,0,4.04,4.25,4.2700000000000005,4.2700000000000005,4.25,4.24,4.22,4.2,4.14,145.77,145.61,145.49,145.34,145.17000000000002,144.99,144.74,144.46,143.45000000000002,26.94,26.6,26.43,26.240000000000002,26.060000000000002,25.88,25.69,25.52,25.19,N/A,N/A -2012,6,1,23,30,101230,100080,98960,78.16,0,4.74,5.03,5.07,5.07,5.0600000000000005,5.04,5.0200000000000005,5,4.94,147.25,147.12,147.03,146.93,146.82,146.69,146.53,146.37,145.82,26.86,26.54,26.38,26.18,26,25.810000000000002,25.62,25.45,25.09,N/A,N/A -2012,6,2,0,30,101200,100050,98930,77.68,0,4.65,4.94,4.97,4.97,4.97,4.95,4.93,4.9,4.83,154.17000000000002,153.99,153.87,153.73,153.55,153.36,153.08,152.78,151.41,26.87,26.55,26.39,26.19,26.01,25.830000000000002,25.64,25.47,25.13,N/A,N/A -2012,6,2,1,30,101180,100030,98920,78.67,0,5.0600000000000005,5.38,5.41,5.41,5.4,5.38,5.36,5.33,5.28,145.66,145.47,145.33,145.15,144.94,144.69,144.3,143.88,141.37,26.830000000000002,26.52,26.35,26.16,25.98,25.8,25.62,25.45,25.18,N/A,N/A -2012,6,2,2,30,101220,100070,98960,79.35000000000001,0,5.28,5.62,5.67,5.68,5.67,5.66,5.64,5.61,5.5600000000000005,152.26,151.99,151.82,151.62,151.38,151.11,150.71,150.3,148.62,26.810000000000002,26.5,26.330000000000002,26.14,25.96,25.78,25.6,25.43,25.1,N/A,N/A -2012,6,2,3,30,101250,100100,98980,79.9,0,4.96,5.26,5.3100000000000005,5.3100000000000005,5.3,5.28,5.26,5.23,5.16,162.22,162.09,161.97,161.82,161.65,161.45000000000002,161.14000000000001,160.82,159.20000000000002,26.78,26.46,26.3,26.11,25.92,25.740000000000002,25.560000000000002,25.39,25.07,N/A,N/A -2012,6,2,4,30,101260,100110,98990,79.64,0,5.3100000000000005,5.66,5.71,5.72,5.71,5.7,5.68,5.66,5.62,167.32,167.15,167.02,166.84,166.65,166.42000000000002,166.1,165.76,164.20000000000002,26.82,26.5,26.34,26.14,25.96,25.78,25.6,25.43,25.12,N/A,N/A -2012,6,2,5,30,101300,100150,99040,80,0,4.91,5.24,5.3,5.32,5.33,5.34,5.34,5.33,5.33,169.23,168.95000000000002,168.78,168.58,168.37,168.15,167.87,167.57,166.71,26.8,26.48,26.32,26.13,25.95,25.76,25.580000000000002,25.400000000000002,25.060000000000002,N/A,N/A -2012,6,2,6,30,101360,100210,99100,80.71000000000001,0,5.3500000000000005,5.7,5.76,5.7700000000000005,5.78,5.7700000000000005,5.75,5.73,5.67,174.25,174.23,174.26,174.28,174.3,174.3,174.3,174.3,174.29,26.78,26.44,26.27,26.060000000000002,25.88,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A -2012,6,2,7,30,101410,100260,99140,79.88,0,4.75,5.05,5.11,5.15,5.17,5.19,5.21,5.22,5.26,182.78,182.64000000000001,182.48,182.29,182.09,181.88,181.65,181.43,180.86,26.810000000000002,26.47,26.310000000000002,26.11,25.93,25.740000000000002,25.55,25.37,25.01,N/A,N/A -2012,6,2,8,30,101380,100230,99110,81.33,0,3.88,4.15,4.22,4.2700000000000005,4.3,4.33,4.36,4.38,4.43,178.62,178.56,178.57,178.58,178.58,178.57,178.56,178.53,178.45000000000002,26.71,26.37,26.2,26,25.810000000000002,25.62,25.43,25.240000000000002,24.86,N/A,N/A -2012,6,2,9,30,101390,100240,99130,81.3,0,4.97,5.26,5.3,5.3100000000000005,5.3100000000000005,5.3,5.29,5.2700000000000005,5.24,203.87,202.81,202.26,201.67000000000002,201.12,200.58,200.02,199.47,198.33,26.740000000000002,26.400000000000002,26.23,26.03,25.84,25.650000000000002,25.45,25.27,24.89,N/A,N/A -2012,6,2,10,30,101390,100240,99120,81.01,0,4.74,5.08,5.17,5.22,5.25,5.28,5.3,5.32,5.3500000000000005,193.45000000000002,193.26,193.13,193,192.88,192.75,192.63,192.51,192.27,26.72,26.38,26.2,26,25.810000000000002,25.62,25.43,25.25,24.86,N/A,N/A -2012,6,2,11,30,101400,100240,99130,83.3,0,4,4.23,4.28,4.29,4.3100000000000005,4.3100000000000005,4.32,4.32,4.32,190.29,190.69,190.96,191.23000000000002,191.46,191.70000000000002,191.94,192.16,192.62,26.580000000000002,26.240000000000002,26.060000000000002,25.86,25.67,25.48,25.28,25.1,24.72,N/A,N/A -2012,6,2,12,30,101460,100310,99190,82.96000000000001,0,4.2,4.5,4.57,4.62,4.66,4.69,4.72,4.73,4.7700000000000005,220.89000000000001,220.23000000000002,219.8,219.43,219.11,218.8,218.52,218.27,217.75,26.84,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A -2012,6,2,13,30,101430,100270,99160,83.34,0,2.87,3.0500000000000003,3.1,3.14,3.17,3.2,3.23,3.25,3.31,196.41,196.56,196.64000000000001,196.74,196.82,196.89000000000001,196.96,197.04,197.20000000000002,26.76,26.42,26.25,26.05,25.86,25.67,25.48,25.29,24.91,N/A,N/A -2012,6,2,14,30,101480,100330,99220,84.07000000000001,0,3.56,3.73,3.7600000000000002,3.77,3.77,3.7600000000000002,3.7600000000000002,3.75,3.74,203.46,203.63,203.69,203.73000000000002,203.79,203.84,203.89000000000001,203.94,204.09,26.76,26.42,26.240000000000002,26.04,25.85,25.66,25.47,25.29,24.900000000000002,N/A,N/A -2012,6,2,15,30,101520,100370,99250,84.67,0,3.6,3.84,3.91,3.96,4,4.03,4.0600000000000005,4.09,4.15,211.36,212.52,212.94,213.29,213.6,213.88,214.14000000000001,214.38,214.84,26.89,26.560000000000002,26.38,26.19,26,25.810000000000002,25.62,25.43,25.060000000000002,N/A,N/A -2012,6,2,16,30,101500,100350,99230,83.63,0,4.37,4.64,4.7,4.73,4.75,4.76,4.7700000000000005,4.78,4.78,211.28,211.26,211.24,211.21,211.17000000000002,211.13,211.08,211.03,210.91,27.02,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A -2012,6,2,17,30,101500,100350,99240,85.39,0,3.79,4.03,4.09,4.12,4.15,4.17,4.19,4.21,4.23,214.99,214.97,214.97,214.96,214.95000000000002,214.94,214.93,214.91,214.89000000000001,27,26.650000000000002,26.47,26.27,26.080000000000002,25.89,25.69,25.51,25.12,N/A,N/A -2012,6,2,18,30,101480,100330,99210,84.09,0,4.67,4.98,5.0600000000000005,5.1000000000000005,5.13,5.15,5.17,5.19,5.22,220.44,220.24,220.11,219.96,219.83,219.68,219.52,219.36,218.99,27.04,26.69,26.51,26.310000000000002,26.12,25.93,25.740000000000002,25.55,25.17,N/A,N/A -2012,6,2,19,30,101470,100320,99200,82.9,0,4.66,4.95,5.01,5.04,5.05,5.0600000000000005,5.0600000000000005,5.07,5.07,220.54,220.32,220.17000000000002,220.01,219.85,219.68,219.5,219.32,218.87,27.1,26.740000000000002,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.22,N/A,N/A -2012,6,2,20,30,101430,100280,99170,84.09,0,3.5300000000000002,3.8000000000000003,3.88,3.94,3.99,4.03,4.07,4.11,4.18,217.93,217.36,217.09,216.83,216.6,216.38,216.16,215.94,215.5,27.150000000000002,26.8,26.62,26.42,26.23,26.04,25.84,25.66,25.28,N/A,N/A -2012,6,2,21,30,101390,100240,99130,83.99,0,3.42,3.64,3.71,3.7600000000000002,3.8000000000000003,3.83,3.86,3.89,3.96,215.37,215.35,215.29,215.22,215.16,215.11,215.05,215,214.9,27.14,26.79,26.62,26.42,26.23,26.03,25.84,25.650000000000002,25.27,N/A,N/A -2012,6,2,22,30,101370,100220,99110,83.72,0,4.7700000000000005,5.11,5.19,5.23,5.26,5.28,5.3,5.3100000000000005,5.33,203.86,203.6,203.43,203.23000000000002,203.04,202.86,202.67000000000002,202.48000000000002,202.09,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A -2012,6,2,23,30,101330,100190,99070,81.42,0,5.48,5.88,5.96,5.99,6.0200000000000005,6.03,6.03,6.04,6.04,184.62,184.59,184.58,184.54,184.48,184.42000000000002,184.33,184.23,183.97,27.22,26.900000000000002,26.73,26.53,26.35,26.16,25.97,25.78,25.41,N/A,N/A -2012,6,3,0,30,101310,100160,99050,82.12,0,4.88,5.24,5.32,5.36,5.39,5.41,5.42,5.43,5.45,179.16,179.25,179.33,179.4,179.46,179.52,179.57,179.61,179.72,27.12,26.79,26.62,26.42,26.240000000000002,26.05,25.85,25.67,25.29,N/A,N/A -2012,6,3,1,30,101270,100120,99010,84.36,0,4.8500000000000005,5.2,5.2700000000000005,5.3100000000000005,5.33,5.3500000000000005,5.37,5.38,5.4,175.91,175.87,175.87,175.87,175.9,175.92000000000002,175.94,175.96,176.04,26.93,26.59,26.42,26.22,26.03,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A -2012,6,3,2,30,101290,100140,99030,84.79,0,5.44,5.8500000000000005,5.95,6,6.04,6.0600000000000005,6.08,6.09,6.11,171.96,172,172.13,172.28,172.43,172.59,172.77,172.94,173.31,26.98,26.64,26.47,26.27,26.080000000000002,25.88,25.69,25.5,25.12,N/A,N/A -2012,6,3,3,30,101300,100160,99040,83.79,0,6.91,7.49,7.62,7.68,7.72,7.75,7.76,7.7700000000000005,7.7700000000000005,175.79,175.82,175.76,175.69,175.62,175.54,175.47,175.39000000000001,175.24,26.94,26.59,26.42,26.22,26.03,25.84,25.64,25.45,25.07,N/A,N/A -2012,6,3,4,30,101310,100160,99050,85.22,0,6.94,7.5200000000000005,7.65,7.72,7.7700000000000005,7.8,7.82,7.84,7.8500000000000005,181.25,181.09,180.98,180.88,180.8,180.73,180.66,180.6,180.48,26.89,26.54,26.36,26.16,25.97,25.77,25.580000000000002,25.39,25.01,N/A,N/A -2012,6,3,5,30,101320,100180,99060,85.75,0,7.2,7.82,7.97,8.05,8.11,8.15,8.17,8.19,8.2,181.59,182.39000000000001,182.72,183.01,183.25,183.46,183.65,183.82,184.13,26.97,26.62,26.45,26.240000000000002,26.05,25.86,25.66,25.48,25.1,N/A,N/A -2012,6,3,6,30,101360,100210,99090,84.27,0,6.86,7.46,7.61,7.7,7.76,7.8100000000000005,7.84,7.87,7.91,189.68,188.98,188.64000000000001,188.33,188.07,187.83,187.6,187.38,186.97,26.92,26.560000000000002,26.38,26.18,25.990000000000002,25.8,25.6,25.41,25.03,N/A,N/A -2012,6,3,7,30,101400,100250,99140,83.13,0,8.47,9.24,9.42,9.51,9.56,9.6,9.61,9.620000000000001,9.6,203.43,202.76,202.43,202.12,201.85,201.61,201.37,201.16,200.76,27,26.64,26.47,26.26,26.07,25.87,25.68,25.490000000000002,25.1,N/A,N/A -2012,6,3,8,30,101390,100240,99130,84.19,0,7.82,8.52,8.700000000000001,8.8,8.86,8.91,8.94,8.97,9,203.45000000000002,203.32,203.31,203.31,203.32,203.34,203.35,203.36,203.39000000000001,26.92,26.560000000000002,26.38,26.17,25.98,25.8,25.6,25.41,25.04,N/A,N/A -2012,6,3,9,30,101390,100240,99130,84.63,0,6.09,6.6000000000000005,6.74,6.82,6.88,6.93,6.98,7.01,7.08,205.04,205.04,204.95000000000002,204.85,204.76,204.68,204.59,204.51,204.34,26.91,26.560000000000002,26.38,26.18,25.990000000000002,25.8,25.61,25.43,25.05,N/A,N/A -2012,6,3,10,30,101410,100260,99140,81.32000000000001,0,7.82,8.46,8.6,8.66,8.68,8.69,8.68,8.66,8.6,203.70000000000002,203.52,203.48000000000002,203.43,203.38,203.34,203.29,203.25,203.16,27.09,26.75,26.580000000000002,26.38,26.19,26,25.810000000000002,25.62,25.25,N/A,N/A -2012,6,3,11,30,101430,100280,99160,83.28,0,7.32,7.95,8.1,8.18,8.23,8.26,8.290000000000001,8.31,8.33,198.23000000000002,198.05,197.99,197.91,197.83,197.74,197.64000000000001,197.55,197.33,27.02,26.67,26.490000000000002,26.29,26.1,25.91,25.72,25.54,25.16,N/A,N/A -2012,6,3,12,30,101430,100280,99160,83.38,0,6.47,6.96,7.07,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.13,7.11,182.81,183.35,183.68,183.98,184.25,184.5,184.75,184.98,185.44,27.04,26.7,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.18,N/A,N/A -2012,6,3,13,30,101460,100310,99190,82.68,0,6.01,6.49,6.6000000000000005,6.66,6.7,6.74,6.76,6.78,6.8,187.14000000000001,187.01,186.97,186.92000000000002,186.86,186.8,186.73,186.66,186.5,27.09,26.76,26.59,26.38,26.2,26.01,25.810000000000002,25.62,25.25,N/A,N/A -2012,6,3,14,30,101510,100350,99240,83.83,0,5.92,6.390000000000001,6.49,6.55,6.59,6.61,6.63,6.640000000000001,6.66,184.95000000000002,184.82,184.75,184.65,184.55,184.45000000000002,184.34,184.24,184,27.02,26.67,26.5,26.310000000000002,26.12,25.92,25.73,25.55,25.17,N/A,N/A -2012,6,3,15,30,101480,100330,99220,82.91,0,6.74,7.25,7.34,7.38,7.4,7.4,7.390000000000001,7.390000000000001,7.3500000000000005,182.54,182.9,183.09,183.28,183.44,183.59,183.73,183.87,184.12,27.11,26.76,26.580000000000002,26.38,26.2,26,25.810000000000002,25.62,25.240000000000002,N/A,N/A -2012,6,3,16,30,101490,100330,99220,82.91,0,6.36,6.88,7.01,7.09,7.140000000000001,7.17,7.2,7.22,7.26,181.25,181.19,181.22,181.26,181.3,181.32,181.36,181.39000000000001,181.46,27.12,26.77,26.6,26.39,26.2,26.01,25.810000000000002,25.62,25.240000000000002,N/A,N/A -2012,6,3,17,30,101480,100330,99210,84.04,0,6.2700000000000005,6.8,6.94,7.03,7.08,7.13,7.16,7.19,7.22,180.12,180.32,180.43,180.55,180.65,180.75,180.86,180.96,181.16,27.21,26.87,26.7,26.5,26.310000000000002,26.12,25.92,25.73,25.35,N/A,N/A -2012,6,3,18,30,101520,100370,99260,79.23,0,5.23,5.63,5.72,5.76,5.8,5.82,5.83,5.84,5.86,187.48,187.41,187.34,187.25,187.16,187.08,186.98,186.89000000000001,186.70000000000002,27.42,27.09,26.92,26.72,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,6,3,19,30,101440,100290,99170,81.9,0,6.63,7.21,7.3500000000000005,7.44,7.5,7.55,7.59,7.62,7.67,182.6,182.78,182.77,182.75,182.71,182.66,182.61,182.57,182.44,27.29,26.95,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A -2012,6,3,20,30,101420,100280,99160,82.96000000000001,0,6.03,6.6000000000000005,6.75,6.8500000000000005,6.93,6.99,7.04,7.09,7.16,179.77,179.99,180.09,180.19,180.27,180.35,180.42000000000002,180.49,180.62,27.240000000000002,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.75,25.37,N/A,N/A -2012,6,3,21,30,101380,100230,99120,82.11,0,7.1000000000000005,7.7,7.84,7.9,7.930000000000001,7.95,7.96,7.96,7.94,178.33,178.46,178.56,178.63,178.70000000000002,178.76,178.81,178.85,178.92000000000002,27.36,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,6,3,22,30,101340,100200,99080,83.01,0,6.5,7.03,7.16,7.22,7.2700000000000005,7.3,7.32,7.34,7.36,174.39000000000001,174.6,174.64000000000001,174.65,174.65,174.64000000000001,174.63,174.62,174.58,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.88,25.69,25.32,N/A,N/A -2012,6,3,23,30,101320,100170,99060,81.81,0,6.22,6.69,6.8,6.8500000000000005,6.890000000000001,6.91,6.92,6.93,6.94,170.78,170.85,170.93,170.98,171.03,171.07,171.11,171.16,171.24,27.12,26.79,26.62,26.42,26.23,26.04,25.85,25.66,25.29,N/A,N/A -2012,6,4,0,30,101290,100140,99030,81.5,0,5.59,6,6.09,6.140000000000001,6.17,6.2,6.22,6.24,6.28,170.43,170.52,170.56,170.61,170.66,170.71,170.76,170.81,170.93,27.11,26.78,26.61,26.42,26.23,26.04,25.85,25.67,25.3,N/A,N/A -2012,6,4,1,30,101270,100120,99010,82.32000000000001,0,6.38,6.87,6.98,7.03,7.07,7.09,7.1000000000000005,7.11,7.12,166.64000000000001,167.26,167.55,167.83,168.06,168.27,168.48,168.67000000000002,169.04,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A -2012,6,4,2,30,101280,100130,99020,81.71000000000001,0,7,7.61,7.74,7.8,7.8500000000000005,7.87,7.88,7.890000000000001,7.890000000000001,165.51,165.55,165.59,165.63,165.68,165.72,165.77,165.81,165.89000000000001,27.28,26.94,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A -2012,6,4,3,30,101270,100130,99020,81.06,0,8.26,9.05,9.23,9.33,9.39,9.42,9.44,9.46,9.46,167.26,167.39000000000001,167.52,167.68,167.82,167.97,168.12,168.26,168.56,27.37,27.05,26.88,26.68,26.490000000000002,26.3,26.1,25.91,25.53,N/A,N/A -2012,6,4,4,30,101250,100100,98990,79.58,0,8.45,9.32,9.52,9.64,9.72,9.78,9.83,9.86,9.91,181.81,181.43,181.26,181.09,180.94,180.8,180.66,180.54,180.29,27.42,27.09,26.92,26.72,26.53,26.34,26.14,25.95,25.57,N/A,N/A -2012,6,4,5,30,101270,100120,99010,79.27,0,8.93,9.83,10.03,10.13,10.200000000000001,10.24,10.26,10.27,10.27,180.88,181.14000000000001,181.28,181.42000000000002,181.54,181.65,181.76,181.87,182.08,27.55,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.29,26.11,25.72,N/A,N/A -2012,6,4,6,30,101260,100120,99010,79.74,0,7.45,8.16,8.33,8.42,8.49,8.540000000000001,8.57,8.6,8.65,191.15,190.96,190.83,190.68,190.54,190.39000000000001,190.25,190.11,189.82,27.46,27.14,26.98,26.78,26.59,26.400000000000002,26.2,26.02,25.64,N/A,N/A -2012,6,4,7,30,101290,100140,99030,83.55,0,7.33,7.99,8.16,8.25,8.32,8.370000000000001,8.4,8.42,8.46,191.70000000000002,191.54,191.52,191.55,191.59,191.63,191.69,191.75,191.89000000000001,27.27,26.94,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A -2012,6,4,8,30,101230,100080,98970,83.84,0,8.31,9.120000000000001,9.32,9.44,9.52,9.59,9.63,9.67,9.72,191.17000000000002,191.21,191.22,191.22,191.22,191.22,191.22,191.22,191.23000000000002,27.35,27.02,26.85,26.650000000000002,26.47,26.28,26.080000000000002,25.900000000000002,25.52,N/A,N/A -2012,6,4,9,30,101220,100080,98970,84.13,0,7.54,8.27,8.44,8.55,8.620000000000001,8.67,8.700000000000001,8.73,8.78,196.54,196.73000000000002,196.84,196.94,197.02,197.11,197.18,197.26,197.42000000000002,27.42,27.1,26.94,26.740000000000002,26.55,26.37,26.17,25.990000000000002,25.62,N/A,N/A -2012,6,4,10,30,101210,100070,98960,85.79,0,6.97,7.61,7.7700000000000005,7.87,7.94,7.99,8.02,8.05,8.1,193.41,193.45000000000002,193.43,193.42000000000002,193.43,193.44,193.45000000000002,193.47,193.53,27.400000000000002,27.080000000000002,26.91,26.71,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,6,4,11,30,101230,100080,98970,86.82000000000001,0,6.49,7.05,7.19,7.2700000000000005,7.33,7.36,7.390000000000001,7.42,7.44,194.06,194.31,194.44,194.59,194.74,194.89000000000001,195.04,195.19,195.52,27.36,27.04,26.87,26.67,26.48,26.29,26.1,25.91,25.54,N/A,N/A -2012,6,4,12,30,101250,100110,99000,85.89,0,4.79,5.17,5.2700000000000005,5.32,5.36,5.39,5.42,5.44,5.47,196.55,196.76,196.88,196.97,197.06,197.14000000000001,197.22,197.3,197.45000000000002,27.330000000000002,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A -2012,6,4,13,30,101260,100110,99010,85.9,0,6.44,6.99,7.1000000000000005,7.16,7.19,7.21,7.21,7.21,7.2,193.38,193.57,193.68,193.79,193.9,193.99,194.1,194.20000000000002,194.41,27.47,27.150000000000002,26.98,26.78,26.6,26.41,26.22,26.03,25.66,N/A,N/A -2012,6,4,14,30,101260,100110,99000,85,0,6.84,7.44,7.57,7.640000000000001,7.68,7.71,7.72,7.73,7.73,190.92000000000002,191.12,191.25,191.34,191.43,191.5,191.57,191.63,191.76,27.59,27.28,27.11,26.92,26.73,26.54,26.35,26.17,25.79,N/A,N/A -2012,6,4,15,30,101290,100150,99040,84.84,0,5.84,6.3100000000000005,6.41,6.45,6.47,6.48,6.48,6.47,6.45,196.61,196.63,196.65,196.68,196.71,196.75,196.79,196.84,196.94,27.59,27.28,27.11,26.92,26.73,26.55,26.35,26.17,25.8,N/A,N/A -2012,6,4,16,30,101280,100130,99020,84.04,0,5.15,5.55,5.63,5.67,5.7,5.73,5.74,5.75,5.7700000000000005,181.86,182.03,182.22,182.42000000000002,182.6,182.78,182.96,183.14000000000001,183.52,27.6,27.28,27.12,26.92,26.73,26.54,26.35,26.17,25.8,N/A,N/A -2012,6,4,17,30,101280,100130,99020,82.98,0,3.98,4.28,4.3500000000000005,4.39,4.42,4.45,4.46,4.48,4.5,191.32,191.56,191.76,191.93,192.07,192.19,192.3,192.39000000000001,192.55,27.62,27.29,27.12,26.92,26.740000000000002,26.54,26.35,26.16,25.79,N/A,N/A -2012,6,4,18,30,101240,100100,98990,84.64,0,3.8000000000000003,4.04,4.09,4.12,4.14,4.16,4.17,4.18,4.2,188.74,188.48,188.27,188.03,187.81,187.6,187.38,187.16,186.74,27.61,27.27,27.1,26.900000000000002,26.71,26.52,26.32,26.13,25.75,N/A,N/A -2012,6,4,19,30,101240,100100,98990,82.74,0,6.08,6.5600000000000005,6.65,6.69,6.71,6.72,6.71,6.71,6.68,196.74,196.69,196.68,196.66,196.66,196.64000000000001,196.64000000000001,196.63,196.63,27.66,27.330000000000002,27.17,26.96,26.78,26.59,26.39,26.2,25.82,N/A,N/A -2012,6,4,20,30,101200,100050,98940,82.14,0,6.45,6.97,7.09,7.13,7.16,7.17,7.17,7.17,7.140000000000001,189.82,189.82,189.83,189.83,189.84,189.84,189.84,189.84,189.87,27.61,27.29,27.12,26.92,26.73,26.54,26.35,26.16,25.78,N/A,N/A -2012,6,4,21,30,101120,99970,98860,81.36,0,7.46,8.11,8.24,8.290000000000001,8.32,8.33,8.33,8.32,8.290000000000001,190.81,190.94,191,191.07,191.13,191.20000000000002,191.26,191.32,191.44,27.51,27.19,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A -2012,6,4,22,30,101080,99930,98820,78.26,0,7.34,7.99,8.120000000000001,8.18,8.22,8.24,8.24,8.24,8.22,189.58,189.63,189.63,189.62,189.6,189.58,189.55,189.51,189.42000000000002,27.55,27.240000000000002,27.080000000000002,26.88,26.69,26.5,26.310000000000002,26.13,25.75,N/A,N/A -2012,6,4,23,30,101050,99900,98790,79.56,0,7.3500000000000005,8,8.13,8.2,8.24,8.26,8.27,8.28,8.27,188.4,188.29,188.19,188.08,187.97,187.86,187.75,187.64000000000001,187.41,27.43,27.11,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A -2012,6,5,0,30,100980,99840,98730,76.75,0,7.63,8.33,8.48,8.55,8.6,8.63,8.65,8.66,8.67,188.76,188.66,188.59,188.51,188.43,188.36,188.27,188.20000000000002,188.02,27.41,27.1,26.92,26.73,26.54,26.35,26.16,25.97,25.59,N/A,N/A -2012,6,5,1,30,100940,99790,98680,74.5,0,7.98,8.73,8.9,8.99,9.05,9.1,9.13,9.15,9.17,190.87,190.52,190.31,190.1,189.9,189.72,189.53,189.36,188.99,27.43,27.12,26.95,26.75,26.560000000000002,26.37,26.18,25.990000000000002,25.61,N/A,N/A -2012,6,5,2,30,100970,99820,98710,75.56,0,7.18,7.87,8.040000000000001,8.14,8.21,8.25,8.290000000000001,8.31,8.34,193.02,192.94,192.94,192.95000000000002,192.98000000000002,193.01,193.04,193.07,193.16,27.38,27.060000000000002,26.89,26.68,26.490000000000002,26.3,26.11,25.92,25.54,N/A,N/A -2012,6,5,3,30,100990,99850,98740,71.53,0,7.18,7.84,7.97,8.05,8.1,8.14,8.16,8.18,8.2,193.94,193.73000000000002,193.57,193.4,193.23000000000002,193.06,192.89000000000001,192.73000000000002,192.39000000000001,27.45,27.14,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A -2012,6,5,4,30,101000,99850,98740,72.16,0,6.4,7,7.140000000000001,7.22,7.28,7.32,7.3500000000000005,7.37,7.390000000000001,192.95000000000002,192.84,192.82,192.79,192.76,192.73000000000002,192.70000000000002,192.68,192.62,27.41,27.1,26.92,26.73,26.54,26.35,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,6,5,5,30,100970,99830,98720,70.57000000000001,0,6.55,7.12,7.24,7.3100000000000005,7.36,7.390000000000001,7.41,7.43,7.44,192.24,192.68,192.87,193.03,193.17000000000002,193.3,193.43,193.55,193.78,27.38,27.060000000000002,26.89,26.69,26.490000000000002,26.310000000000002,26.11,25.92,25.53,N/A,N/A -2012,6,5,6,30,101020,99870,98760,66.75,0,6.0600000000000005,6.54,6.63,6.67,6.69,6.71,6.71,6.72,6.72,197.79,198.27,198.53,198.78,199.01,199.22,199.42000000000002,199.61,199.99,27.46,27.16,26.990000000000002,26.79,26.6,26.42,26.22,26.03,25.650000000000002,N/A,N/A -2012,6,5,7,30,101010,99870,98760,68.01,0,5.92,6.4,6.49,6.53,6.5600000000000005,6.57,6.57,6.57,6.5600000000000005,211.75,211.42000000000002,211.16,210.91,210.67000000000002,210.44,210.22,210.01,209.57,27.39,27.080000000000002,26.91,26.71,26.52,26.34,26.14,25.95,25.57,N/A,N/A -2012,6,5,8,30,101020,99870,98760,67.01,0,5.4,5.86,5.96,6.0200000000000005,6.07,6.1000000000000005,6.13,6.15,6.19,216.9,216.65,216.56,216.49,216.43,216.38,216.34,216.3,216.25,27.39,27.080000000000002,26.91,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A -2012,6,5,9,30,100990,99850,98730,71.64,0,6.22,6.73,6.84,6.890000000000001,6.93,6.95,6.96,6.97,6.97,220.41,220.28,220.15,220.04,219.93,219.84,219.75,219.66,219.49,27.18,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.71,25.330000000000002,N/A,N/A -2012,6,5,10,30,101010,99860,98750,69.58,0,5.74,6.16,6.2700000000000005,6.32,6.3500000000000005,6.38,6.4,6.41,6.42,233.92000000000002,233.98000000000002,233.93,233.9,233.86,233.83,233.81,233.79,233.75,27.2,26.88,26.71,26.52,26.330000000000002,26.14,25.94,25.76,25.38,N/A,N/A -2012,6,5,11,30,101030,99890,98770,70.51,0,4.43,4.75,4.8100000000000005,4.83,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.83,240.82,240.6,240.49,240.4,240.32,240.26,240.19,240.13,240.04,27.21,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.75,25.37,N/A,N/A -2012,6,5,12,30,101030,99880,98770,72.68,0,4.79,5.13,5.21,5.25,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,250.23000000000002,250.27,250.28,250.3,250.32,250.34,250.36,250.38,250.41,27.09,26.76,26.59,26.38,26.2,26.01,25.810000000000002,25.62,25.240000000000002,N/A,N/A -2012,6,5,13,30,101050,99910,98790,70.52,0,4.07,4.36,4.43,4.47,4.5,4.53,4.54,4.5600000000000005,4.58,256.07,255.4,255.06,254.75,254.48000000000002,254.23000000000002,253.98000000000002,253.75,253.32,27.18,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.72,25.330000000000002,N/A,N/A -2012,6,5,14,30,101080,99930,98820,75.65,0,3.09,3.22,3.23,3.23,3.23,3.23,3.23,3.23,3.24,277.6,274.83,273.16,271.49,269.95,268.47,266.99,265.61,262.75,26.810000000000002,26.48,26.310000000000002,26.12,25.93,25.75,25.55,25.37,25,N/A,N/A -2012,6,5,15,30,101070,99920,98810,77.92,0,3.0300000000000002,3.14,3.15,3.15,3.14,3.13,3.12,3.1,3.08,256.46,256.01,255.63,255.25,254.88,254.51000000000002,254.09,253.70000000000002,252.78,26.68,26.330000000000002,26.150000000000002,25.95,25.77,25.580000000000002,25.39,25.21,24.830000000000002,N/A,N/A -2012,6,5,16,30,101050,99900,98790,75.07000000000001,0,2.89,3.06,3.09,3.12,3.13,3.15,3.17,3.19,3.23,234.02,233.79,233.75,233.69,233.63,233.56,233.49,233.41,233.21,26.88,26.53,26.36,26.16,25.97,25.79,25.6,25.42,25.05,N/A,N/A -2012,6,5,17,30,101030,99880,98770,72.25,0,2.67,2.82,2.86,2.88,2.91,2.92,2.94,2.96,3,202.91,203.25,203.61,203.97,204.32,204.66,205.01,205.35,206.14000000000001,27.080000000000002,26.740000000000002,26.57,26.38,26.2,26.02,25.830000000000002,25.66,25.3,N/A,N/A -2012,6,5,18,30,100980,99830,98720,71.63,0,4.19,4.41,4.43,4.43,4.43,4.41,4.39,4.37,4.3100000000000005,189.54,189.59,189.66,189.71,189.76,189.79,189.82,189.85,189.89000000000001,27.310000000000002,26.96,26.79,26.6,26.41,26.23,26.04,25.87,25.51,N/A,N/A -2012,6,5,19,30,100930,99780,98670,67.93,0,4.9,5.21,5.25,5.26,5.26,5.26,5.25,5.23,5.18,189.61,189.98,190.20000000000002,190.43,190.65,190.87,191.1,191.33,191.83,27.560000000000002,27.240000000000002,27.080000000000002,26.89,26.71,26.54,26.36,26.19,25.86,N/A,N/A -2012,6,5,20,30,100880,99730,98630,66.49,0,5.98,6.41,6.47,6.49,6.49,6.47,6.45,6.42,6.3500000000000005,186.56,186.75,186.87,187,187.12,187.24,187.36,187.48,187.73,27.71,27.400000000000002,27.240000000000002,27.060000000000002,26.88,26.7,26.52,26.35,26.01,N/A,N/A -2012,6,5,21,30,100850,99710,98600,66.92,0,6.17,6.63,6.7,6.71,6.7,6.68,6.65,6.61,6.5200000000000005,193.94,193.73000000000002,193.62,193.49,193.34,193.19,193,192.81,192.3,27.71,27.41,27.25,27.05,26.87,26.68,26.490000000000002,26.310000000000002,25.93,N/A,N/A -2012,6,5,22,30,100790,99650,98540,73.56,0,5.84,6.26,6.32,6.33,6.32,6.3100000000000005,6.28,6.26,6.19,195.43,195.6,195.69,195.81,195.93,196.04,196.17000000000002,196.29,196.6,27.47,27.16,26.990000000000002,26.810000000000002,26.62,26.44,26.26,26.080000000000002,25.73,N/A,N/A -2012,6,5,23,30,100770,99620,98520,75.86,0,6.18,6.62,6.69,6.7,6.7,6.68,6.65,6.62,6.51,198.21,198.16,198.16,198.17000000000002,198.18,198.19,198.19,198.18,198.08,27.36,27.04,26.87,26.67,26.48,26.29,26.09,25.900000000000002,25.5,N/A,N/A -2012,6,6,0,30,100790,99650,98540,69.24,0,5.84,6.32,6.41,6.46,6.49,6.51,6.5200000000000005,6.54,6.5600000000000005,197.9,197.78,197.70000000000002,197.6,197.5,197.39000000000001,197.27,197.16,196.95000000000002,27.69,27.400000000000002,27.240000000000002,27.05,26.87,26.69,26.51,26.330000000000002,25.98,N/A,N/A -2012,6,6,1,30,100760,99620,98510,74.58,0,6.7700000000000005,7.3100000000000005,7.41,7.45,7.47,7.47,7.47,7.46,7.43,200.8,200.56,200.45000000000002,200.34,200.24,200.15,200.05,199.96,199.74,27.39,27.07,26.900000000000002,26.71,26.52,26.34,26.14,25.96,25.59,N/A,N/A -2012,6,6,2,30,100790,99640,98540,74.7,0,6.43,6.94,7.03,7.07,7.09,7.1000000000000005,7.1000000000000005,7.09,7.07,195.19,195.35,195.53,195.70000000000002,195.85,196,196.16,196.3,196.65,27.37,27.05,26.88,26.69,26.5,26.32,26.13,25.95,25.580000000000002,N/A,N/A -2012,6,6,3,30,100840,99690,98580,71.92,0,6.05,6.54,6.640000000000001,6.68,6.71,6.73,6.74,6.74,6.74,191.39000000000001,191.48000000000002,191.46,191.45000000000002,191.44,191.42000000000002,191.41,191.39000000000001,191.37,27.44,27.13,26.96,26.77,26.580000000000002,26.400000000000002,26.2,26.02,25.64,N/A,N/A -2012,6,6,4,30,100860,99710,98600,74.63,0,5.91,6.37,6.45,6.48,6.49,6.5,6.5,6.49,6.47,197.61,197.58,197.53,197.49,197.44,197.4,197.35,197.31,197.21,27.29,26.96,26.79,26.6,26.41,26.22,26.03,25.85,25.47,N/A,N/A -2012,6,6,5,30,100870,99720,98610,74.43,0,5.25,5.65,5.73,5.76,5.79,5.8,5.8100000000000005,5.82,5.82,204.57,204.59,204.58,204.56,204.56,204.55,204.54,204.54,204.53,27.240000000000002,26.91,26.740000000000002,26.54,26.35,26.16,25.97,25.78,25.400000000000002,N/A,N/A -2012,6,6,6,30,100830,99680,98570,76.60000000000001,0,6.28,6.74,6.84,6.87,6.890000000000001,6.9,6.9,6.890000000000001,6.88,214.18,214.1,214.05,214,213.96,213.93,213.88,213.83,213.73000000000002,27.080000000000002,26.740000000000002,26.57,26.37,26.19,26,25.810000000000002,25.62,25.25,N/A,N/A -2012,6,6,7,30,100850,99710,98600,75.65,0,5.33,5.71,5.7700000000000005,5.79,5.8,5.8,5.8,5.8,5.7700000000000005,217.07,216.89000000000001,216.77,216.66,216.55,216.45000000000002,216.34,216.24,216.03,27.080000000000002,26.740000000000002,26.57,26.38,26.19,26,25.8,25.62,25.240000000000002,N/A,N/A -2012,6,6,8,30,100850,99700,98590,72.5,0,4.86,5.21,5.28,5.3100000000000005,5.33,5.3500000000000005,5.36,5.37,5.38,222.94,223,223,223.02,223.04,223.06,223.08,223.11,223.17000000000002,27.150000000000002,26.830000000000002,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.71,25.330000000000002,N/A,N/A -2012,6,6,9,30,100870,99720,98610,73.14,0,4.95,5.2700000000000005,5.32,5.33,5.34,5.34,5.33,5.32,5.3,220.75,220.78,220.83,220.88,220.94,220.99,221.04,221.08,221.19,27.1,26.77,26.6,26.41,26.22,26.03,25.830000000000002,25.650000000000002,25.27,N/A,N/A -2012,6,6,10,30,100900,99750,98640,73.48,0,3.64,3.85,3.89,3.9,3.91,3.91,3.91,3.9,3.89,208.88,208.93,208.91,208.87,208.83,208.79,208.75,208.70000000000002,208.61,27.04,26.72,26.54,26.34,26.16,25.97,25.77,25.59,25.2,N/A,N/A -2012,6,6,11,30,100920,99770,98660,71.49,0,3.24,3.43,3.46,3.47,3.48,3.49,3.49,3.49,3.5,215.56,215.33,215.1,214.88,214.68,214.5,214.31,214.12,213.76,27.080000000000002,26.76,26.59,26.39,26.2,26.01,25.810000000000002,25.63,25.240000000000002,N/A,N/A -2012,6,6,12,30,100950,99810,98690,73.74,0,2.85,2.98,2.99,3,2.99,2.99,2.98,2.98,2.96,207.14000000000001,207.11,207.07,207.02,206.97,206.92000000000002,206.85,206.79,206.65,27,26.67,26.490000000000002,26.3,26.1,25.91,25.72,25.53,25.150000000000002,N/A,N/A -2012,6,6,13,30,100990,99840,98730,72.91,0,2.5100000000000002,2.62,2.63,2.64,2.64,2.64,2.64,2.64,2.63,227.56,227.3,227.07,226.85,226.63,226.42000000000002,226.20000000000002,226,225.58,27.02,26.69,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.17,N/A,N/A -2012,6,6,14,30,101040,99890,98780,73.27,0,1.8,1.8800000000000001,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,230.43,229.64000000000001,229.07,228.52,228.02,227.53,227.04,226.59,225.68,27.03,26.7,26.52,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A -2012,6,6,15,30,101070,99920,98810,73.39,0,1.6500000000000001,1.7,1.7,1.69,1.69,1.68,1.67,1.6600000000000001,1.6500000000000001,252.97,252.4,251.97,251.55,251.17000000000002,250.81,250.45000000000002,250.11,249.42000000000002,27.09,26.75,26.57,26.37,26.18,25.990000000000002,25.8,25.61,25.22,N/A,N/A -2012,6,6,16,30,101070,99920,98810,74.4,0,1.45,1.52,1.53,1.54,1.54,1.55,1.56,1.56,1.57,197.68,196.99,196.62,196.26,195.93,195.61,195.3,195.03,194.4,27.080000000000002,26.73,26.560000000000002,26.36,26.16,25.97,25.78,25.59,25.2,N/A,N/A -2012,6,6,17,30,101070,99930,98810,75.41,0,1.3800000000000001,1.42,1.43,1.43,1.43,1.42,1.42,1.42,1.41,201.47,201.69,201.70000000000002,201.70000000000002,201.71,201.72,201.72,201.72,201.67000000000002,27.14,26.78,26.61,26.41,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A -2012,6,6,18,30,101050,99910,98800,77.22,0,3.56,3.72,3.74,3.74,3.73,3.72,3.71,3.7,3.67,186.55,186.08,185.83,185.58,185.33,185.1,184.83,184.58,184.02,27.21,26.830000000000002,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.3,N/A,N/A -2012,6,6,19,30,101050,99900,98790,76.59,0,4.0200000000000005,4.22,4.25,4.25,4.25,4.25,4.24,4.24,4.21,176.23,176.16,176.08,176,175.9,175.81,175.70000000000002,175.59,175.34,27.32,26.95,26.78,26.57,26.38,26.19,26,25.810000000000002,25.44,N/A,N/A -2012,6,6,20,30,101010,99860,98750,78.06,0,4.65,4.91,4.95,4.96,4.97,4.97,4.96,4.95,4.93,181.55,181.38,181.28,181.18,181.08,180.98,180.86,180.74,180.44,27.36,27,26.830000000000002,26.63,26.44,26.25,26.05,25.87,25.5,N/A,N/A -2012,6,6,21,30,100950,99810,98700,78.17,0,5.01,5.33,5.38,5.4,5.4,5.4,5.4,5.39,5.38,180.55,180.41,180.36,180.3,180.22,180.12,179.99,179.86,179.44,27.42,27.07,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.96,25.59,N/A,N/A -2012,6,6,22,30,100920,99770,98670,80.75,0,5.18,5.54,5.61,5.64,5.65,5.66,5.66,5.66,5.66,179.48,179.18,178.99,178.77,178.56,178.35,178.11,177.87,177.29,27.35,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.900000000000002,25.53,N/A,N/A -2012,6,6,23,30,100890,99740,98640,79.92,0,5.3100000000000005,5.69,5.75,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,5.75,5.72,181.27,181.07,180.95000000000002,180.82,180.70000000000002,180.58,180.44,180.31,179.96,27.41,27.09,26.92,26.72,26.54,26.35,26.16,25.98,25.6,N/A,N/A -2012,6,7,0,30,100900,99760,98650,82.17,0,5.34,5.75,5.82,5.8500000000000005,5.87,5.88,5.87,5.87,5.8500000000000005,173.16,172.89000000000001,172.84,172.79,172.73,172.67000000000002,172.6,172.53,172.37,27.34,27.02,26.85,26.650000000000002,26.46,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,6,7,1,30,100940,99800,98690,82.86,0,4.88,5.22,5.29,5.32,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,171.75,171.5,171.33,171.14000000000001,170.97,170.8,170.6,170.4,169.93,27.25,26.93,26.76,26.560000000000002,26.38,26.19,26,25.810000000000002,25.44,N/A,N/A -2012,6,7,2,30,100990,99850,98740,80.59,0,4.91,5.25,5.3100000000000005,5.34,5.3500000000000005,5.36,5.3500000000000005,5.3500000000000005,5.34,162.75,162.56,162.45000000000002,162.32,162.20000000000002,162.08,161.93,161.78,161.41,27.32,27,26.830000000000002,26.63,26.45,26.26,26.07,25.88,25.51,N/A,N/A -2012,6,7,3,30,101070,99920,98810,80.66,0,4.84,5.18,5.24,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,5.32,110.95,110.67,110.68,110.66,110.64,110.60000000000001,110.55,110.51,110.4,27.36,27.04,26.87,26.67,26.490000000000002,26.3,26.11,25.92,25.55,N/A,N/A -2012,6,7,4,30,101070,99930,98820,82.29,0,6.21,6.7700000000000005,6.890000000000001,6.95,6.99,7.01,7.03,7.03,7.03,100.68,100.38,100.36,100.35000000000001,100.34,100.33,100.31,100.3,100.29,27.38,27.05,26.88,26.68,26.490000000000002,26.3,26.1,25.92,25.54,N/A,N/A -2012,6,7,5,30,101070,99920,98810,83.26,0,6.91,7.390000000000001,7.46,7.48,7.47,7.45,7.42,7.390000000000001,7.2700000000000005,103.73,103.46000000000001,103.27,103.05,102.78,102.49000000000001,102.07000000000001,101.65,99.99000000000001,26.650000000000002,26.28,26.11,25.93,25.75,25.580000000000002,25.41,25.26,25,N/A,N/A -2012,6,7,6,30,101080,99930,98820,83.39,0,4.36,4.57,4.6000000000000005,4.6000000000000005,4.58,4.57,4.54,4.5200000000000005,4.46,108.65,108.81,108.93,109.05,109.17,109.28,109.41,109.54,109.84,26.62,26.26,26.09,25.900000000000002,25.71,25.53,25.34,25.17,24.82,N/A,N/A -2012,6,7,7,30,101080,99930,98820,84.36,0,2.84,2.98,3,3.0100000000000002,3.02,3.02,3.02,3.02,3.0100000000000002,98.13,99.35000000000001,100.06,100.77,101.43,102.08,102.79,103.48,105.06,26.67,26.32,26.150000000000002,25.95,25.76,25.57,25.38,25.2,24.82,N/A,N/A -2012,6,7,8,30,101070,99920,98810,84.18,0,2.73,2.85,2.87,2.86,2.86,2.85,2.84,2.83,2.8000000000000003,85.01,85.45,85.89,86.28,86.64,86.98,87.33,87.68,88.39,26.78,26.44,26.27,26.07,25.88,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A -2012,6,7,9,30,101090,99950,98830,82.8,0,4.8100000000000005,5.19,5.29,5.3500000000000005,5.4,5.44,5.47,5.5,5.5600000000000005,54.49,54.32,54.24,54.160000000000004,54.08,53.99,53.910000000000004,53.83,53.67,26.82,26.47,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A -2012,6,7,10,30,101100,99940,98830,86.96000000000001,0,7.37,7.84,7.9,7.91,7.890000000000001,7.8500000000000005,7.79,7.74,7.57,36.550000000000004,36.910000000000004,37.17,37.46,37.77,38.1,38.51,38.92,40.25,25.39,24.95,24.75,24.55,24.36,24.18,23.990000000000002,23.81,23.45,N/A,N/A -2012,6,7,11,30,101130,99970,98850,86.18,0,6.51,6.93,7,7.0200000000000005,7.01,7,6.97,6.94,6.8500000000000005,51.59,51.95,52.19,52.47,52.74,53.03,53.38,53.730000000000004,54.69,25.75,25.330000000000002,25.14,24.93,24.740000000000002,24.55,24.36,24.18,23.81,N/A,N/A -2012,6,7,12,30,101130,99980,98860,86.14,0,6.03,6.4,6.46,6.47,6.47,6.45,6.43,6.41,6.34,55.28,55.63,55.870000000000005,56.120000000000005,56.36,56.6,56.88,57.160000000000004,57.83,25.830000000000002,25.41,25.23,25.02,24.830000000000002,24.64,24.44,24.26,23.88,N/A,N/A -2012,6,7,13,30,101200,100050,98930,85.39,0,5.87,6.25,6.32,6.34,6.3500000000000005,6.34,6.33,6.32,6.2700000000000005,50.660000000000004,50.85,51,51.15,51.300000000000004,51.44,51.6,51.75,52.1,26.07,25.67,25.48,25.28,25.080000000000002,24.900000000000002,24.7,24.51,24.13,N/A,N/A -2012,6,7,14,30,101190,100030,98920,83.63,0,5.68,6.03,6.09,6.1000000000000005,6.1000000000000005,6.09,6.07,6.05,5.99,74.07000000000001,74.25,74.41,74.58,74.75,74.92,75.13,75.32000000000001,75.86,26.2,25.810000000000002,25.63,25.43,25.240000000000002,25.05,24.86,24.67,24.29,N/A,N/A -2012,6,7,15,30,101280,100130,99010,81.92,0,5.11,5.41,5.47,5.49,5.49,5.49,5.48,5.47,5.44,64.99,65.18,65.18,65.21000000000001,65.24,65.29,65.34,65.4,65.57000000000001,26.35,25.97,25.79,25.580000000000002,25.39,25.2,25.01,24.82,24.44,N/A,N/A -2012,6,7,16,30,101240,100080,98970,79.64,0,4.03,4.22,4.23,4.22,4.21,4.18,4.15,4.12,4.0200000000000005,75.49,75.59,75.63,75.68,75.74,75.82000000000001,75.92,76.03,76.43,26.55,26.18,26,25.8,25.61,25.43,25.23,25.05,24.69,N/A,N/A -2012,6,7,17,30,101240,100090,98970,81.9,0,5.11,5.4,5.45,5.46,5.46,5.44,5.43,5.41,5.3500000000000005,88.39,88.42,88.47,88.53,88.59,88.65,88.71000000000001,88.77,88.92,26.67,26.3,26.12,25.92,25.73,25.55,25.35,25.17,24.8,N/A,N/A -2012,6,7,18,30,101210,100060,98950,83.7,0,5.1000000000000005,5.39,5.41,5.4,5.38,5.36,5.32,5.28,5.14,117.14,117.27,117.3,117.37,117.45,117.54,117.67,117.8,118.37,26.91,26.54,26.37,26.17,25.98,25.8,25.62,25.44,25.11,N/A,N/A -2012,6,7,19,30,101150,100010,98900,83.9,0,4.86,5.14,5.19,5.19,5.18,5.16,5.14,5.11,5.03,129.88,129.93,129.96,129.98,130,130.02,130.04,130.08,130.19,27.150000000000002,26.8,26.62,26.42,26.240000000000002,26.05,25.86,25.68,25.32,N/A,N/A -2012,6,7,20,30,101140,100000,98890,83.94,0,2.73,2.85,2.86,2.86,2.86,2.85,2.84,2.83,2.8000000000000003,133.1,133.25,133.23,133.23,133.24,133.25,133.28,133.32,133.43,27.310000000000002,26.96,26.78,26.580000000000002,26.39,26.2,26.01,25.830000000000002,25.45,N/A,N/A -2012,6,7,21,30,101130,99980,98870,84.01,0,2.15,2.23,2.24,2.24,2.24,2.24,2.23,2.22,2.21,136.98,137.04,137.07,137.1,137.12,137.14000000000001,137.15,137.15,137.16,27.41,27.060000000000002,26.89,26.69,26.5,26.310000000000002,26.12,25.93,25.55,N/A,N/A -2012,6,7,22,30,101120,99970,98870,84.98,0,2.59,2.69,2.69,2.68,2.67,2.66,2.65,2.63,2.6,152.88,153.06,153.13,153.21,153.29,153.36,153.45000000000002,153.53,153.75,27.46,27.11,26.93,26.740000000000002,26.55,26.36,26.16,25.98,25.6,N/A,N/A -2012,6,7,23,30,101120,99970,98860,84.48,0,1.26,1.3,1.31,1.31,1.31,1.31,1.31,1.31,1.3,196.9,196.41,196.04,195.67000000000002,195.34,195.04,194.72,194.44,193.86,27.5,27.150000000000002,26.98,26.78,26.59,26.400000000000002,26.21,26.02,25.64,N/A,N/A -2012,6,8,0,30,101140,99990,98890,84.08,0,1.31,1.3900000000000001,1.42,1.43,1.45,1.46,1.48,1.49,1.52,112.83,113.17,113.32000000000001,113.44,113.53,113.60000000000001,113.66,113.7,113.77,27.5,27.17,27,26.8,26.62,26.42,26.23,26.04,25.66,N/A,N/A -2012,6,8,1,30,101110,99970,98860,84.89,0,2.38,2.5100000000000002,2.54,2.56,2.57,2.58,2.6,2.61,2.62,97.3,96.97,96.89,96.8,96.72,96.64,96.56,96.47,96.31,27.43,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.6,N/A,N/A -2012,6,8,2,30,101190,100050,98940,86.08,0,4.79,5.15,5.23,5.28,5.3100000000000005,5.33,5.3500000000000005,5.36,5.38,55.6,55.68,55.800000000000004,55.910000000000004,56,56.08,56.15,56.21,56.32,27.52,27.19,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A -2012,6,8,3,30,101200,100050,98930,84.47,1.1,10.06,11,11.22,11.35,11.44,11.51,11.56,11.6,11.65,71.72,72.36,72.61,72.85000000000001,73.08,73.28,73.5,73.69,74.11,25.88,25.44,25.25,25.05,24.85,24.67,24.47,24.29,23.92,N/A,N/A -2012,6,8,4,30,101190,100040,98920,84.84,0,7.29,7.86,7.99,8.05,8.1,8.120000000000001,8.15,8.16,8.19,83.41,84.15,84.62,85.12,85.60000000000001,86.08,86.59,87.07000000000001,88.16,25.84,25.43,25.240000000000002,25.04,24.85,24.67,24.48,24.3,23.93,N/A,N/A -2012,6,8,5,30,101180,100030,98910,84.06,0,6.97,7.5600000000000005,7.71,7.8,7.88,7.930000000000001,7.98,8.03,8.11,92.28,93.16,93.73,94.29,94.81,95.31,95.81,96.29,97.29,26.2,25.8,25.62,25.42,25.23,25.05,24.86,24.67,24.3,N/A,N/A -2012,6,8,6,30,101180,100030,98920,81.11,0,4.63,4.96,5.03,5.07,5.1000000000000005,5.11,5.12,5.13,5.14,102.12,102.16,102.22,102.25,102.26,102.27,102.27,102.26,102.24000000000001,26.560000000000002,26.19,26.01,25.810000000000002,25.62,25.43,25.23,25.04,24.66,N/A,N/A -2012,6,8,7,30,101180,100030,98920,82.57000000000001,0,3.13,3.2800000000000002,3.3000000000000003,3.31,3.31,3.31,3.31,3.3000000000000003,3.3000000000000003,123.7,123.55,123.53,123.52,123.49000000000001,123.46000000000001,123.45,123.44,123.39,26.52,26.17,25.990000000000002,25.79,25.6,25.41,25.22,25.04,24.66,N/A,N/A -2012,6,8,8,30,101180,100030,98920,78.39,0,2.04,2.15,2.17,2.19,2.21,2.22,2.23,2.24,2.2600000000000002,79.27,80.58,81.32000000000001,82.02,82.64,83.2,83.75,84.25,85.25,26.78,26.44,26.26,26.060000000000002,25.87,25.68,25.48,25.3,24.91,N/A,N/A -2012,6,8,9,30,101190,100030,98920,76.36,0,3.49,3.71,3.7600000000000002,3.8000000000000003,3.83,3.85,3.88,3.9,3.94,78.98,77.27,76.29,75.32000000000001,74.45,73.61,72.79,72.01,70.48,26.71,26.36,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A -2012,6,8,10,30,101190,100040,98920,78.36,0,2.64,2.7600000000000002,2.79,2.8000000000000003,2.82,2.83,2.83,2.84,2.85,94.47,95.37,95.94,96.43,96.86,97.26,97.68,98.06,98.93,26.52,26.16,25.98,25.79,25.6,25.41,25.21,25.03,24.650000000000002,N/A,N/A -2012,6,8,11,30,101210,100060,98940,79.63,0,4.99,5.0600000000000005,4.95,4.79,4.6000000000000005,4.4,4.16,3.93,3.37,139.21,139.04,138.83,138.61,138.31,137.97,137.34,136.71,133.98,25.810000000000002,25.44,25.27,25.09,24.92,24.76,24.59,24.43,24.1,N/A,N/A -2012,6,8,12,30,101260,100100,98980,82.60000000000001,0,2.98,3.13,3.13,3.11,3.1,3.09,3.0700000000000003,3.0500000000000003,3.02,66.56,65.57000000000001,65.06,64.5,63.980000000000004,63.47,62.940000000000005,62.440000000000005,61.34,25.87,25.5,25.32,25.11,24.92,24.73,24.53,24.35,23.96,N/A,N/A -2012,6,8,13,30,101260,100100,98980,82.35000000000001,0,5.69,5.8100000000000005,5.79,5.75,5.7700000000000005,5.84,5.92,6,6.11,68.77,69.34,69.89,70.62,71.54,72.58,73.4,74.09,75.32000000000001,24.7,24.330000000000002,24.22,24.14,24.18,24.29,24.44,24.59,24.61,N/A,N/A -2012,6,8,14,30,101230,100070,98950,82.75,0,4.13,4.25,4.25,4.21,4.17,4.13,4.07,4.0200000000000005,3.9,63.29,62.15,61.5,60.78,60.03,59.26,58.32,57.44,55.31,25,24.59,24.41,24.23,24.060000000000002,23.89,23.73,23.580000000000002,23.330000000000002,N/A,N/A -2012,6,8,15,30,101230,100070,98960,73.28,0,3.7800000000000002,3.94,3.94,3.93,3.91,3.88,3.85,3.83,3.77,39.33,38.480000000000004,38,37.52,37.09,36.68,36.28,35.9,35.21,26.27,25.900000000000002,25.73,25.54,25.36,25.18,25,24.830000000000002,24.48,N/A,N/A -2012,6,8,16,30,101270,100110,98990,88.91,379.40000000000003,4,4.11,4.16,4.23,4.34,4.46,4.62,4.79,5.15,109.96000000000001,103.73,99.85000000000001,95.63,91.7,87.96000000000001,84.10000000000001,80.44,73.48,24.650000000000002,24.25,24.1,23.95,23.830000000000002,23.71,23.63,23.56,23.48,N/A,N/A -2012,6,8,17,30,101220,100060,98940,92.48,87.2,1.28,1.46,1.62,1.9000000000000001,2.2,2.54,2.88,3.21,3.75,157.20000000000002,129.18,114.89,104.89,97.07000000000001,90.60000000000001,86.01,82.18,77.69,24.42,24.25,24.21,24.18,24.14,24.11,24.1,24.09,24,N/A,N/A -2012,6,8,18,30,101180,100030,98920,76.43,5.9,1.42,1.56,1.62,1.67,1.72,1.76,1.8,1.84,1.9100000000000001,101.19,99.9,99.08,98.36,97.72,97.11,96.53,95.99000000000001,94.86,26.330000000000002,25.98,25.810000000000002,25.61,25.42,25.240000000000002,25.04,24.86,24.48,N/A,N/A -2012,6,8,19,30,101140,99990,98880,70.87,0,4.55,4.86,4.91,4.94,4.96,4.97,4.98,4.98,4.99,74.4,74.32000000000001,74.17,74.01,73.87,73.73,73.57000000000001,73.41,73.06,27.080000000000002,26.73,26.55,26.35,26.16,25.98,25.78,25.6,25.22,N/A,N/A -2012,6,8,20,30,101110,99960,98850,73.14,0,4.16,4.39,4.43,4.45,4.46,4.46,4.46,4.46,4.45,101.29,100.42,100.01,99.56,99.13,98.69,98.22,97.76,96.72,27.23,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.77,25.400000000000002,N/A,N/A -2012,6,8,21,30,101090,99950,98830,76.17,0,4.22,4.45,4.48,4.49,4.49,4.49,4.48,4.47,4.45,117.10000000000001,116.54,116.24000000000001,115.94,115.64,115.34,115.02,114.72,113.99000000000001,27.17,26.82,26.64,26.45,26.26,26.07,25.87,25.69,25.32,N/A,N/A -2012,6,8,22,30,101060,99910,98800,72.59,0,3.72,3.92,3.95,3.96,3.95,3.95,3.93,3.92,3.88,116.09,116.02,116.04,116.04,116.03,116.02,115.97,115.92,115.74000000000001,27.22,26.88,26.71,26.51,26.32,26.13,25.93,25.75,25.36,N/A,N/A -2012,6,8,23,30,101050,99900,98790,76.44,0,4.25,4.49,4.5200000000000005,4.53,4.53,4.5200000000000005,4.51,4.5,4.48,130.05,129.54,129.3,129.07,128.86,128.65,128.45,128.26,127.86,27.13,26.79,26.62,26.42,26.23,26.04,25.84,25.66,25.27,N/A,N/A -2012,6,9,0,30,101030,99880,98770,75.28,0,3.15,3.3200000000000003,3.35,3.37,3.38,3.38,3.38,3.38,3.38,120.51,119.88,119.51,119.17,118.85000000000001,118.55,118.25,117.97,117.34,27.07,26.73,26.560000000000002,26.36,26.17,25.98,25.78,25.59,25.21,N/A,N/A -2012,6,9,1,30,101030,99880,98770,78.93,0,1.8900000000000001,1.98,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.02,2.02,2.02,117.8,117.29,117.05,116.79,116.56,116.32000000000001,116.07000000000001,115.83,115.34,26.93,26.6,26.42,26.22,26.03,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A -2012,6,9,2,30,101040,99890,98780,80.99,0,2.02,2.14,2.17,2.19,2.2,2.22,2.23,2.24,2.2600000000000002,75.64,75.77,75.96000000000001,76.13,76.28,76.43,76.58,76.7,76.97,26.91,26.57,26.400000000000002,26.2,26.01,25.82,25.62,25.43,25.05,N/A,N/A -2012,6,9,3,30,101080,99920,98800,93.83,0,13.64,15.18,15.4,15.49,15.49,15.450000000000001,15.36,15.26,14.950000000000001,61.19,61.15,61.34,61.58,61.83,62.09,62.4,62.68,63.43,24.650000000000002,24.02,23.77,23.53,23.31,23.1,22.87,22.67,22.400000000000002,N/A,N/A -2012,6,9,4,30,101050,99880,98760,84.46000000000001,27.1,7.0600000000000005,7.54,7.640000000000001,7.72,7.79,7.86,7.97,8.09,8.49,68.95,69.36,69.75,70.18,70.7,71.22,71.95,72.7,75.34,23.91,23.46,23.3,23.150000000000002,23.02,22.900000000000002,22.8,22.72,22.66,N/A,N/A -2012,6,9,5,30,101040,99880,98760,80.85000000000001,0,3.81,3.89,3.87,3.83,3.79,3.7600000000000002,3.72,3.7,3.7,131.57,129.92000000000002,128.99,128.05,127.17,126.33,125.48,124.7,124.02,25.060000000000002,24.67,24.490000000000002,24.310000000000002,24.14,23.97,23.8,23.64,23.35,N/A,N/A -2012,6,9,6,30,101000,99850,98730,78.58,0,3.16,3.2800000000000002,3.29,3.29,3.29,3.2800000000000002,3.2800000000000002,3.2800000000000002,3.33,118.69,118.60000000000001,118.57000000000001,118.55,118.53,118.52,118.54,118.56,118.89,25.29,24.900000000000002,24.72,24.53,24.34,24.16,23.98,23.82,23.52,N/A,N/A -2012,6,9,7,30,101020,99870,98750,80.02,0,4.74,5.04,5.1000000000000005,5.14,5.17,5.19,5.21,5.22,5.26,93.05,93.44,93.67,93.89,94.10000000000001,94.3,94.52,94.72,95.17,25.86,25.45,25.27,25.07,24.88,24.69,24.490000000000002,24.310000000000002,23.93,N/A,N/A -2012,6,9,8,30,100980,99830,98720,76.73,0,3.3200000000000003,3.5700000000000003,3.63,3.69,3.74,3.7800000000000002,3.8200000000000003,3.86,3.95,97.03,96.8,96.77,96.74000000000001,96.71000000000001,96.68,96.66,96.63,96.58,26.310000000000002,25.94,25.76,25.560000000000002,25.37,25.18,24.98,24.79,24.41,N/A,N/A -2012,6,9,9,30,101030,99870,98750,89.57000000000001,184.9,4.21,4.32,4.3100000000000005,4.25,4.19,4.11,4.04,3.98,3.98,76.93,80.45,82.7,85.48,88.39,91.49,94.64,97.56,102.31,24.22,23.87,23.77,23.71,23.72,23.77,23.81,23.84,23.740000000000002,N/A,N/A -2012,6,9,10,30,100990,99830,98710,84.98,9.200000000000001,2.44,2.35,2.24,2.11,2.09,2.11,2.08,2.0300000000000002,2,19.56,24.73,29.990000000000002,38.67,51.9,67.9,79.19,88.03,106.55,24.25,23.91,23.8,23.72,23.740000000000002,23.82,23.79,23.73,23.43,N/A,N/A -2012,6,9,11,30,100990,99840,98720,85.95,1.8,0.11,0.16,0.2,0.25,0.31,0.36,0.42,0.49,0.67,59.69,84.72,99.45,105.99000000000001,110.21000000000001,112.58,113.74000000000001,114.46000000000001,113.16,25.27,24.900000000000002,24.72,24.53,24.34,24.16,23.98,23.81,23.46,N/A,N/A -2012,6,9,12,30,100990,99840,98720,85.58,0,1.6,1.6300000000000001,1.62,1.61,1.59,1.58,1.56,1.54,1.48,305.24,307.19,308.31,309.54,310.85,312.2,313.91,315.59000000000003,321.02,25.6,25.23,25.05,24.85,24.66,24.47,24.28,24.1,23.740000000000002,N/A,N/A -2012,6,9,13,30,101020,99870,98750,84.3,0,2.11,2.24,2.27,2.3000000000000003,2.32,2.35,2.37,2.39,2.43,6.92,9.49,10.72,11.89,12.97,14,15.02,15.97,17.96,26.11,25.740000000000002,25.560000000000002,25.36,25.17,24.98,24.79,24.6,24.22,N/A,N/A -2012,6,9,14,30,101030,99880,98770,79.84,0,4.62,4.84,4.86,4.8500000000000005,4.83,4.8100000000000005,4.79,4.76,4.7,32.980000000000004,33.51,33.86,34.18,34.480000000000004,34.75,35.02,35.27,35.77,26.36,25.98,25.8,25.6,25.41,25.22,25.02,24.84,24.46,N/A,N/A -2012,6,9,15,30,101060,99900,98780,90.07000000000001,0,4.42,4.51,4.46,4.4,4.33,4.2700000000000005,4.2,4.14,4.03,124.05,121.38,119.61,117.67,115.82000000000001,114.01,112.13,110.38,105.77,25.13,24.72,24.53,24.34,24.150000000000002,23.98,23.79,23.62,23.27,N/A,N/A -2012,6,9,16,30,101020,99860,98740,86.4,0,2.63,2.66,2.62,2.56,2.5100000000000002,2.45,2.38,2.31,2.11,138.8,136.97,135.62,134.15,132.55,130.89000000000001,128.57,126.25,116.47,25.32,24.92,24.740000000000002,24.54,24.35,24.17,23.98,23.81,23.45,N/A,N/A -2012,6,9,17,30,101010,99860,98740,84.58,0,2.07,2.04,2,1.94,1.9000000000000001,1.85,1.8,1.76,1.69,111.65,108.59,106.66,104.53,102.31,100.04,97.29,94.64,87.8,25.490000000000002,25.09,24.91,24.71,24.52,24.34,24.14,23.96,23.59,N/A,N/A -2012,6,9,18,30,100990,99840,98720,84.28,0,2.95,3.08,3.09,3.09,3.08,3.08,3.0700000000000003,3.0700000000000003,3.06,68.26,67.29,66.62,65.96000000000001,65.32000000000001,64.67,63.980000000000004,63.31,61.83,25.79,25.38,25.19,24.990000000000002,24.79,24.61,24.41,24.22,23.84,N/A,N/A -2012,6,9,19,30,100980,99830,98710,78.4,0,3.88,4.12,4.18,4.22,4.25,4.28,4.3,4.32,4.3500000000000005,97.51,97.24000000000001,97.09,96.95,96.81,96.69,96.56,96.45,96.2,26.35,25.96,25.77,25.57,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A -2012,6,9,20,30,100910,99760,98650,79.97,0,4.5600000000000005,4.79,4.83,4.84,4.83,4.82,4.8100000000000005,4.79,4.75,129.76,129.38,129.21,129.02,128.82,128.62,128.4,128.18,127.65,26.43,26.05,25.87,25.67,25.48,25.29,25.09,24.91,24.54,N/A,N/A -2012,6,9,21,30,100900,99760,98650,79.77,0,3.92,4.17,4.23,4.2700000000000005,4.3,4.32,4.34,4.36,4.39,106,106.12,106.19,106.24000000000001,106.3,106.35000000000001,106.39,106.43,106.51,26.66,26.28,26.1,25.900000000000002,25.71,25.52,25.32,25.13,24.75,N/A,N/A -2012,6,9,22,30,100890,99740,98630,80.06,0,6.0600000000000005,6.48,6.5600000000000005,6.59,6.61,6.62,6.62,6.62,6.61,119.23,119.34,119.39,119.45,119.51,119.56,119.63,119.69,119.82000000000001,26.73,26.36,26.17,25.97,25.78,25.59,25.39,25.2,24.82,N/A,N/A -2012,6,9,23,30,100850,99710,98600,83.72,0,4.79,5.07,5.11,5.13,5.14,5.14,5.13,5.13,5.11,136.67000000000002,137.17000000000002,137.4,137.64000000000001,137.86,138.08,138.3,138.51,138.96,26.66,26.29,26.12,25.91,25.72,25.53,25.34,25.150000000000002,24.77,N/A,N/A -2012,6,10,0,30,100810,99670,98560,81.65,0,4.26,4.5200000000000005,4.5600000000000005,4.58,4.59,4.6000000000000005,4.6000000000000005,4.6000000000000005,4.59,143.6,143.44,143.34,143.24,143.15,143.07,142.97,142.89000000000001,142.68,26.71,26.35,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A -2012,6,10,1,30,100800,99650,98540,85.45,0,6.45,6.88,6.94,6.96,6.96,6.95,6.93,6.91,6.8500000000000005,145.1,145.16,145.13,145.11,145.1,145.08,145.06,145.05,145,26.52,26.13,25.95,25.75,25.560000000000002,25.37,25.17,24.990000000000002,24.61,N/A,N/A -2012,6,10,2,30,100820,99670,98570,85.02,0,5.51,5.88,5.95,5.98,6,6.01,6.01,6.01,5.99,155.44,155.36,155.31,155.25,155.18,155.11,155.03,154.95000000000002,154.77,26.650000000000002,26.28,26.1,25.900000000000002,25.71,25.51,25.32,25.14,24.75,N/A,N/A -2012,6,10,3,30,100850,99700,98590,84.31,0,5.59,5.96,6.04,6.07,6.09,6.09,6.09,6.09,6.08,152.65,152.83,152.95000000000002,153.07,153.18,153.27,153.38,153.47,153.66,26.73,26.36,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A -2012,6,10,4,30,100830,99690,98580,83.22,0,5.12,5.46,5.5200000000000005,5.55,5.5600000000000005,5.57,5.57,5.57,5.55,162.5,162.47,162.47,162.45000000000002,162.44,162.43,162.41,162.39000000000001,162.34,26.740000000000002,26.37,26.19,25.990000000000002,25.8,25.61,25.41,25.23,24.84,N/A,N/A -2012,6,10,5,30,100820,99670,98560,84.21000000000001,0,5.59,5.98,6.05,6.08,6.09,6.1000000000000005,6.1000000000000005,6.09,6.07,163.59,163.72,163.77,163.81,163.84,163.88,163.91,163.94,164.01,26.72,26.34,26.16,25.96,25.77,25.580000000000002,25.38,25.19,24.810000000000002,N/A,N/A -2012,6,10,6,30,100830,99690,98580,84.32000000000001,0,5.59,6,6.09,6.13,6.16,6.19,6.2,6.21,6.22,176.73,176.9,177,177.09,177.18,177.26,177.35,177.42000000000002,177.58,26.73,26.36,26.18,25.98,25.79,25.59,25.400000000000002,25.21,24.830000000000002,N/A,N/A -2012,6,10,7,30,100850,99710,98600,84.06,0,5.48,5.88,5.97,6.01,6.04,6.05,6.0600000000000005,6.07,6.0600000000000005,193.37,193.6,193.65,193.67000000000002,193.66,193.65,193.63,193.61,193.54,26.82,26.46,26.28,26.080000000000002,25.88,25.69,25.5,25.310000000000002,24.93,N/A,N/A -2012,6,10,8,30,100850,99700,98590,82.41,0,5.96,6.43,6.54,6.6000000000000005,6.65,6.68,6.7,6.72,6.74,205.98000000000002,205.86,205.74,205.59,205.46,205.34,205.20000000000002,205.08,204.82,27.02,26.67,26.490000000000002,26.29,26.09,25.91,25.71,25.52,25.14,N/A,N/A -2012,6,10,9,30,100840,99700,98590,81.54,0,6.46,6.94,7.05,7.1000000000000005,7.13,7.140000000000001,7.15,7.15,7.15,204.52,204.77,204.9,205.01,205.11,205.20000000000002,205.3,205.38,205.55,27.11,26.76,26.580000000000002,26.38,26.19,26,25.8,25.62,25.23,N/A,N/A -2012,6,10,10,30,100840,99690,98580,82.55,0,5.84,6.29,6.38,6.43,6.46,6.48,6.49,6.5,6.5,223.58,223.31,223.12,222.94,222.76,222.59,222.42000000000002,222.25,221.91,27.080000000000002,26.73,26.55,26.35,26.16,25.97,25.78,25.59,25.22,N/A,N/A -2012,6,10,11,30,100860,99720,98610,82.43,0,5.96,6.44,6.54,6.6000000000000005,6.63,6.65,6.66,6.67,6.67,223.19,222.64000000000001,222.42000000000002,222.22,222.05,221.9,221.75,221.62,221.35,27.23,26.88,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A -2012,6,10,12,30,100900,99750,98650,81.75,0,5.63,6.11,6.22,6.29,6.34,6.38,6.41,6.44,6.49,215.81,215.57,215.44,215.31,215.20000000000002,215.09,214.97,214.86,214.65,27.36,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A -2012,6,10,13,30,100940,99800,98690,83.35000000000001,0,5.61,6.04,6.13,6.19,6.22,6.24,6.26,6.2700000000000005,6.29,211.64000000000001,211.82,211.93,212.04,212.14000000000001,212.24,212.34,212.44,212.67000000000002,27.38,27.04,26.88,26.67,26.490000000000002,26.3,26.1,25.92,25.54,N/A,N/A -2012,6,10,14,30,100990,99850,98740,83.19,0,5.05,5.5,5.63,5.72,5.79,5.84,5.89,5.93,6.01,219.23000000000002,219.48000000000002,219.59,219.68,219.76,219.83,219.89000000000001,219.95000000000002,220.07,27.57,27.25,27.080000000000002,26.88,26.69,26.5,26.310000000000002,26.12,25.740000000000002,N/A,N/A -2012,6,10,15,30,101010,99870,98760,80.4,0,6.96,7.5600000000000005,7.68,7.75,7.79,7.82,7.8500000000000005,7.86,7.890000000000001,223.97,224.27,224.4,224.53,224.66,224.79,224.92000000000002,225.04,225.3,27.830000000000002,27.52,27.36,27.16,26.98,26.79,26.6,26.42,26.05,N/A,N/A -2012,6,10,16,30,101060,99920,98810,83.68,0,6.7700000000000005,7.43,7.59,7.7,7.7700000000000005,7.83,7.87,7.91,7.97,220.06,220.37,220.49,220.61,220.70000000000002,220.79,220.88,220.95000000000002,221.1,27.79,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,6,10,17,30,101090,99950,98840,78.19,0,7.34,8.040000000000001,8.19,8.28,8.33,8.370000000000001,8.39,8.41,8.42,210.24,210.28,210.3,210.31,210.32,210.33,210.35,210.35,210.37,28.09,27.8,27.64,27.44,27.26,27.07,26.88,26.7,26.32,N/A,N/A -2012,6,10,18,30,101110,99970,98860,77.09,0,6.890000000000001,7.59,7.75,7.8500000000000005,7.92,7.97,8.01,8.040000000000001,8.08,208.8,209.02,209.12,209.20000000000002,209.25,209.3,209.35,209.38,209.44,28.12,27.830000000000002,27.66,27.46,27.28,27.09,26.900000000000002,26.71,26.330000000000002,N/A,N/A -2012,6,10,19,30,101130,99990,98880,71.45,0,7.16,7.91,8.07,8.17,8.24,8.290000000000001,8.32,8.35,8.38,198.55,198.54,198.56,198.58,198.59,198.61,198.63,198.65,198.69,28.44,28.16,28,27.8,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A -2012,6,10,20,30,101110,99960,98860,74.82000000000001,0,7.76,8.55,8.71,8.81,8.870000000000001,8.91,8.94,8.950000000000001,8.96,195.21,195.34,195.38,195.4,195.4,195.4,195.4,195.39000000000001,195.36,28.21,27.93,27.77,27.580000000000002,27.39,27.21,27.01,26.830000000000002,26.45,N/A,N/A -2012,6,10,21,30,101110,99970,98860,79.92,0,7.36,8.05,8.2,8.28,8.33,8.36,8.38,8.39,8.4,189.15,189.16,189.17000000000002,189.20000000000002,189.24,189.27,189.32,189.36,189.47,28.01,27.71,27.55,27.35,27.17,26.98,26.79,26.6,26.23,N/A,N/A -2012,6,10,22,30,101090,99940,98840,84.64,0,7.21,7.86,8,8.07,8.120000000000001,8.16,8.18,8.2,8.23,182.94,183.1,183.20000000000002,183.32,183.45000000000002,183.59,183.74,183.89000000000001,184.25,27.87,27.560000000000002,27.400000000000002,27.2,27.02,26.830000000000002,26.64,26.46,26.080000000000002,N/A,N/A -2012,6,10,23,30,101090,99950,98840,85.51,0,7.94,8.73,8.9,8.99,9.05,9.09,9.120000000000001,9.14,9.16,189.52,189.45000000000002,189.37,189.28,189.18,189.09,188.98,188.88,188.63,27.93,27.63,27.47,27.27,27.09,26.900000000000002,26.71,26.53,26.16,N/A,N/A -2012,6,11,0,30,101090,99950,98850,87.05,0,7.79,8.56,8.75,8.85,8.91,8.950000000000001,8.98,9,9.02,181.74,181.85,181.91,181.96,182,182.03,182.05,182.07,182.09,27.900000000000002,27.61,27.44,27.25,27.060000000000002,26.88,26.68,26.5,26.13,N/A,N/A -2012,6,11,1,30,101080,99940,98830,87.79,0,8.55,9.42,9.63,9.74,9.82,9.870000000000001,9.9,9.92,9.94,183.42000000000002,183.44,183.49,183.55,183.61,183.67000000000002,183.73,183.79,183.93,27.830000000000002,27.51,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.02,N/A,N/A -2012,6,11,2,30,101110,99970,98860,84.85000000000001,0,9.38,10.34,10.57,10.68,10.76,10.82,10.85,10.870000000000001,10.89,181.02,181.23,181.38,181.53,181.66,181.79,181.92000000000002,182.04,182.29,27.89,27.580000000000002,27.42,27.22,27.03,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,6,11,3,30,101130,99980,98880,84.63,0,8.83,9.73,9.96,10.1,10.200000000000001,10.27,10.33,10.38,10.44,184.17000000000002,184.39000000000001,184.46,184.49,184.51,184.52,184.5,184.49,184.43,27.78,27.46,27.29,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,6,11,4,30,101120,99980,98870,82.69,0,8.76,9.72,9.97,10.120000000000001,10.24,10.32,10.39,10.46,10.55,183.36,183.72,183.87,183.97,184.04,184.09,184.13,184.16,184.19,27.740000000000002,27.42,27.25,27.05,26.86,26.67,26.48,26.3,25.91,N/A,N/A -2012,6,11,5,30,101130,99980,98870,83.67,0,9.35,10.33,10.57,10.72,10.82,10.89,10.93,10.97,11.02,187.88,187.9,187.86,187.8,187.75,187.70000000000002,187.64000000000001,187.58,187.45000000000002,27.68,27.36,27.19,26.990000000000002,26.8,26.61,26.42,26.23,25.85,N/A,N/A -2012,6,11,6,30,101170,100030,98920,78.88,0,8.870000000000001,9.93,10.200000000000001,10.38,10.51,10.61,10.69,10.76,10.85,186.57,186.71,186.8,186.87,186.94,187,187.05,187.1,187.19,27.96,27.68,27.51,27.32,27.13,26.94,26.75,26.57,26.19,N/A,N/A -2012,6,11,7,30,101190,100040,98940,77.31,0,9.200000000000001,10.22,10.49,10.66,10.78,10.870000000000001,10.94,11,11.09,190.85,190.77,190.74,190.73,190.73,190.73,190.73,190.73,190.74,28.14,27.88,27.72,27.53,27.35,27.17,26.97,26.79,26.42,N/A,N/A -2012,6,11,8,30,101210,100060,98950,79.60000000000001,0,9.290000000000001,10.27,10.5,10.64,10.74,10.81,10.86,10.91,10.99,192.51,192.77,192.77,192.75,192.72,192.67000000000002,192.62,192.56,192.42000000000002,28.01,27.740000000000002,27.59,27.400000000000002,27.22,27.04,26.86,26.68,26.32,N/A,N/A -2012,6,11,9,30,101230,100090,98980,77.59,0,8.790000000000001,9.870000000000001,10.17,10.4,10.57,10.72,10.85,10.96,11.15,197.89000000000001,197.83,197.81,197.78,197.75,197.73000000000002,197.69,197.66,197.6,28.16,27.91,27.76,27.57,27.400000000000002,27.22,27.03,26.85,26.490000000000002,N/A,N/A -2012,6,11,10,30,101270,100120,99010,81.89,0,8.040000000000001,8.9,9.120000000000001,9.25,9.35,9.43,9.49,9.55,9.64,191.76,192.08,192.20000000000002,192.29,192.38,192.46,192.54,192.61,192.75,27.97,27.68,27.53,27.330000000000002,27.150000000000002,26.97,26.78,26.6,26.23,N/A,N/A -2012,6,11,11,30,101300,100150,99050,83.99,0,8.28,9.11,9.290000000000001,9.38,9.450000000000001,9.48,9.51,9.52,9.55,187.95000000000002,188.31,188.44,188.58,188.71,188.84,188.99,189.13,189.48,27.91,27.62,27.46,27.27,27.09,26.91,26.73,26.55,26.2,N/A,N/A -2012,6,11,12,30,101370,100230,99120,82.45,0,7.94,8.77,8.98,9.120000000000001,9.22,9.31,9.38,9.450000000000001,9.61,190.61,190.62,190.55,190.48,190.43,190.37,190.33,190.31,190.26,28.13,27.86,27.71,27.52,27.35,27.17,26.990000000000002,26.810000000000002,26.46,N/A,N/A -2012,6,11,13,30,101400,100250,99140,83.81,0,8.22,8.99,9.17,9.26,9.32,9.370000000000001,9.42,9.46,9.59,188.71,188.62,188.61,188.6,188.59,188.59,188.58,188.58,188.59,28.03,27.76,27.61,27.43,27.26,27.080000000000002,26.91,26.740000000000002,26.42,N/A,N/A -2012,6,11,14,30,101470,100330,99220,82.16,0,8.93,10.05,10.34,10.540000000000001,10.69,10.790000000000001,10.870000000000001,10.93,10.99,192.02,192.14000000000001,192.16,192.17000000000002,192.16,192.15,192.13,192.11,192.05,28.22,27.95,27.79,27.59,27.400000000000002,27.21,27.02,26.830000000000002,26.44,N/A,N/A -2012,6,11,15,30,101530,100380,99270,83.01,0,8.15,8.92,9.1,9.18,9.23,9.26,9.27,9.28,9.28,186.86,186.93,186.99,187.06,187.14000000000001,187.22,187.33,187.44,187.75,27.98,27.69,27.53,27.34,27.16,26.98,26.79,26.61,26.240000000000002,N/A,N/A -2012,6,11,16,30,101540,100400,99290,85.35000000000001,0,7.97,8.74,8.92,9.02,9.09,9.13,9.15,9.17,9.19,184.5,184.91,185.11,185.31,185.48,185.64000000000001,185.8,185.95000000000002,186.25,27.79,27.48,27.310000000000002,27.11,26.92,26.73,26.54,26.35,25.97,N/A,N/A -2012,6,11,17,30,101560,100410,99300,86.86,0,6.78,7.45,7.62,7.73,7.8100000000000005,7.87,7.92,7.96,8.02,184.70000000000002,184.52,184.45000000000002,184.41,184.38,184.36,184.35,184.35,184.36,27.77,27.45,27.28,27.080000000000002,26.89,26.7,26.51,26.32,25.94,N/A,N/A -2012,6,11,18,30,101550,100400,99290,85.11,0,7.03,7.640000000000001,7.79,7.86,7.9,7.930000000000001,7.95,7.96,7.97,182.65,182.71,182.77,182.83,182.89000000000001,182.96,183.03,183.11,183.3,27.7,27.37,27.21,27.01,26.82,26.63,26.44,26.25,25.88,N/A,N/A -2012,6,11,19,30,101560,100410,99300,84.02,0,7.38,8.05,8.21,8.290000000000001,8.35,8.39,8.41,8.44,8.47,184.55,184.53,184.54,184.56,184.56,184.57,184.58,184.59,184.61,27.76,27.44,27.27,27.07,26.88,26.69,26.5,26.310000000000002,25.94,N/A,N/A -2012,6,11,20,30,101540,100400,99280,83.41,0,6.95,7.58,7.72,7.79,7.8500000000000005,7.88,7.91,7.930000000000001,7.95,176.68,176.92000000000002,177.07,177.20000000000002,177.33,177.46,177.59,177.71,177.95000000000002,27.810000000000002,27.48,27.32,27.12,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A -2012,6,11,21,30,101520,100370,99260,80.79,0,6.74,7.38,7.5200000000000005,7.59,7.640000000000001,7.68,7.71,7.72,7.74,178.19,178.26,178.34,178.42000000000002,178.49,178.56,178.64000000000001,178.71,178.87,27.96,27.66,27.490000000000002,27.3,27.11,26.92,26.73,26.54,26.16,N/A,N/A -2012,6,11,22,30,101520,100370,99260,78.93,0,6.8500000000000005,7.51,7.66,7.74,7.8,7.84,7.86,7.890000000000001,7.92,172.88,172.94,172.99,173.03,173.07,173.12,173.16,173.19,173.27,28.04,27.75,27.59,27.400000000000002,27.21,27.03,26.830000000000002,26.650000000000002,26.27,N/A,N/A -2012,6,11,23,30,101510,100360,99250,79.51,0,7.48,8.2,8.35,8.43,8.48,8.51,8.52,8.53,8.53,169.34,169.67000000000002,169.78,169.89000000000001,169.97,170.06,170.13,170.21,170.35,27.94,27.650000000000002,27.490000000000002,27.3,27.11,26.92,26.73,26.55,26.17,N/A,N/A -2012,6,12,0,30,101480,100330,99220,83.45,0,7.57,8.28,8.44,8.52,8.58,8.61,8.63,8.65,8.66,172.68,172.84,172.91,172.98,173.03,173.09,173.14000000000001,173.18,173.28,27.69,27.38,27.21,27.01,26.830000000000002,26.64,26.45,26.26,25.88,N/A,N/A -2012,6,12,1,30,101470,100320,99210,86.9,0,7.54,8.27,8.45,8.55,8.620000000000001,8.67,8.71,8.73,8.77,175.01,174.91,174.9,174.88,174.87,174.86,174.85,174.85,174.83,27.490000000000002,27.16,26.98,26.78,26.6,26.400000000000002,26.21,26.02,25.64,N/A,N/A -2012,6,12,2,30,101490,100350,99230,87.02,0,7.3500000000000005,8.03,8.18,8.26,8.32,8.36,8.38,8.4,8.43,171.95000000000002,172.06,172.1,172.14000000000001,172.18,172.21,172.24,172.27,172.34,27.490000000000002,27.16,26.990000000000002,26.79,26.6,26.41,26.22,26.03,25.650000000000002,N/A,N/A -2012,6,12,3,30,101510,100360,99250,86.05,0,7.53,8.23,8.38,8.46,8.51,8.55,8.57,8.58,8.58,173.31,173.3,173.33,173.36,173.41,173.45000000000002,173.5,173.55,173.66,27.57,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.29,26.11,25.73,N/A,N/A -2012,6,12,4,30,101500,100350,99240,85.05,0,7.43,8.14,8.31,8.4,8.47,8.51,8.540000000000001,8.56,8.59,179.87,179.8,179.79,179.79,179.78,179.78,179.77,179.77,179.77,27.61,27.28,27.11,26.91,26.72,26.53,26.34,26.150000000000002,25.77,N/A,N/A -2012,6,12,5,30,101520,100370,99260,83.58,0,6.82,7.48,7.63,7.72,7.78,7.82,7.86,7.890000000000001,7.930000000000001,178.56,178.46,178.43,178.4,178.37,178.35,178.32,178.3,178.25,27.64,27.32,27.150000000000002,26.95,26.76,26.57,26.38,26.2,25.810000000000002,N/A,N/A -2012,6,12,6,30,101530,100380,99270,79.89,0,6.95,7.61,7.75,7.83,7.88,7.92,7.94,7.96,7.98,181.66,181.72,181.76,181.8,181.84,181.88,181.93,181.97,182.07,27.78,27.48,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A -2012,6,12,7,30,101550,100400,99290,76.69,0,6.83,7.5,7.640000000000001,7.72,7.78,7.82,7.8500000000000005,7.88,7.92,185.99,186.02,185.99,185.96,185.93,185.89000000000001,185.85,185.81,185.73,27.94,27.650000000000002,27.490000000000002,27.29,27.11,26.92,26.73,26.55,26.17,N/A,N/A -2012,6,12,8,30,101590,100440,99320,75.07000000000001,0,5.55,6.07,6.19,6.2700000000000005,6.33,6.38,6.43,6.47,6.58,185.06,185.41,185.58,185.77,185.95000000000002,186.13,186.32,186.52,186.93,28.02,27.75,27.59,27.41,27.23,27.05,26.86,26.69,26.330000000000002,N/A,N/A -2012,6,12,9,30,101620,100470,99360,75.63,0,5.95,6.51,6.63,6.7,6.74,6.78,6.8,6.8100000000000005,6.83,180.19,180.41,180.47,180.52,180.58,180.63,180.68,180.72,180.81,28.060000000000002,27.79,27.63,27.44,27.26,27.07,26.89,26.7,26.330000000000002,N/A,N/A -2012,6,12,10,30,101650,100500,99390,77.86,0,5.7700000000000005,6.29,6.390000000000001,6.45,6.49,6.5200000000000005,6.53,6.55,6.5600000000000005,184.47,184.3,184.28,184.25,184.22,184.19,184.16,184.13,184.07,27.93,27.63,27.47,27.28,27.09,26.91,26.71,26.53,26.16,N/A,N/A -2012,6,12,11,30,101690,100540,99420,84.06,0,5.97,6.44,6.5200000000000005,6.5600000000000005,6.57,6.58,6.57,6.5600000000000005,6.5200000000000005,179.24,179.36,179.42000000000002,179.5,179.58,179.65,179.74,179.81,179.98,27.52,27.19,27.02,26.82,26.63,26.44,26.240000000000002,26.060000000000002,25.68,N/A,N/A -2012,6,12,12,30,101720,100560,99450,84.44,0,5.26,5.71,5.8100000000000005,5.88,5.94,5.98,6.0200000000000005,6.05,6.1000000000000005,173.99,174.24,174.47,174.68,174.88,175.06,175.24,175.41,175.76,27.39,27.07,26.900000000000002,26.71,26.52,26.330000000000002,26.13,25.95,25.57,N/A,N/A -2012,6,12,13,30,101740,100590,99470,82.98,0,4.95,5.3500000000000005,5.44,5.49,5.5200000000000005,5.55,5.5600000000000005,5.58,5.59,173.13,173.53,173.8,174.04,174.25,174.44,174.63,174.79,175.12,27.45,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.6,N/A,N/A -2012,6,12,14,30,101770,100620,99500,84.39,0,4.94,5.28,5.34,5.37,5.38,5.39,5.39,5.38,5.36,185.93,185.67000000000002,185.44,185.15,184.88,184.61,184.33,184.05,183.5,27.53,27.21,27.03,26.84,26.650000000000002,26.46,26.27,26.080000000000002,25.7,N/A,N/A -2012,6,12,15,30,101790,100630,99520,83.41,0,4.5,4.79,4.8500000000000005,4.88,4.89,4.89,4.89,4.89,4.87,167.87,168.08,168.28,168.48,168.66,168.84,169.02,169.19,169.56,27.5,27.17,27,26.8,26.61,26.42,26.22,26.04,25.66,N/A,N/A -2012,6,12,16,30,101770,100620,99500,81.37,0,4.48,4.78,4.84,4.87,4.9,4.91,4.93,4.94,4.95,168.21,168.67000000000002,168.94,169.18,169.39000000000001,169.61,169.81,170,170.4,27.560000000000002,27.22,27.05,26.85,26.67,26.48,26.28,26.1,25.72,N/A,N/A -2012,6,12,17,30,101760,100610,99490,80.68,0,4.01,4.24,4.28,4.29,4.3,4.3,4.3,4.29,4.28,165.37,165.56,165.73,165.89000000000001,166.03,166.16,166.28,166.4,166.64000000000001,27.57,27.22,27.04,26.85,26.66,26.46,26.27,26.09,25.7,N/A,N/A -2012,6,12,18,30,101730,100580,99460,80.87,0,4.36,4.62,4.68,4.7,4.72,4.74,4.75,4.76,4.79,162.98,163.33,163.45000000000002,163.57,163.70000000000002,163.83,163.96,164.1,164.38,27.560000000000002,27.21,27.04,26.85,26.66,26.47,26.28,26.09,25.72,N/A,N/A -2012,6,12,19,30,101730,100570,99460,81.65,0,5.04,5.37,5.44,5.45,5.47,5.47,5.46,5.45,5.43,159.09,159.52,159.75,159.97,160.15,160.33,160.52,160.69,161.04,27.6,27.25,27.07,26.88,26.69,26.5,26.3,26.12,25.740000000000002,N/A,N/A -2012,6,12,20,30,101690,100540,99420,79.73,0,4.86,5.15,5.21,5.23,5.24,5.24,5.23,5.22,5.2,169.68,169.74,169.72,169.68,169.65,169.61,169.57,169.54,169.47,27.580000000000002,27.240000000000002,27.07,26.86,26.68,26.490000000000002,26.29,26.11,25.73,N/A,N/A -2012,6,12,21,30,101640,100490,99370,80.13,0,5.03,5.38,5.45,5.48,5.5,5.51,5.51,5.51,5.51,165.71,165.81,165.85,165.89000000000001,165.93,165.96,166,166.03,166.12,27.560000000000002,27.22,27.04,26.85,26.66,26.46,26.27,26.080000000000002,25.7,N/A,N/A -2012,6,12,22,30,101610,100460,99350,81.17,0,5.91,6.3500000000000005,6.44,6.48,6.51,6.5200000000000005,6.54,6.54,6.55,156.8,156.77,156.83,156.88,156.94,157,157.07,157.13,157.27,27.41,27.07,26.900000000000002,26.7,26.51,26.32,26.13,25.95,25.57,N/A,N/A -2012,6,12,23,30,101590,100440,99320,79.21000000000001,0,5.89,6.38,6.49,6.55,6.6000000000000005,6.640000000000001,6.68,6.71,6.7700000000000005,161.37,161.52,161.55,161.57,161.6,161.62,161.65,161.67000000000002,161.72,27.47,27.150000000000002,26.98,26.79,26.6,26.41,26.22,26.04,25.67,N/A,N/A -2012,6,13,0,30,101610,100460,99340,79.27,0,6.22,6.73,6.84,6.9,6.95,6.97,6.99,7.01,7.03,166.69,166.74,166.76,166.8,166.84,166.89000000000001,166.94,166.99,167.11,27.43,27.1,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A -2012,6,13,1,30,101560,100410,99300,78.15,0,6.2,6.69,6.79,6.84,6.87,6.890000000000001,6.9,6.9,6.9,170.01,170.06,170.12,170.18,170.24,170.3,170.36,170.41,170.55,27.37,27.05,26.88,26.68,26.490000000000002,26.3,26.11,25.93,25.55,N/A,N/A -2012,6,13,2,30,101600,100440,99330,77.84,0,5.84,6.3100000000000005,6.41,6.47,6.5,6.53,6.54,6.55,6.5600000000000005,171.74,171.83,171.81,171.8,171.79,171.78,171.77,171.76,171.74,27.36,27.03,26.86,26.67,26.48,26.29,26.09,25.91,25.53,N/A,N/A -2012,6,13,3,30,101590,100440,99320,80.13,0,6.2700000000000005,6.76,6.86,6.91,6.94,6.96,6.97,6.97,6.97,178.8,178.92000000000002,178.96,178.99,179.02,179.04,179.07,179.09,179.13,27.19,26.85,26.67,26.48,26.29,26.1,25.900000000000002,25.72,25.34,N/A,N/A -2012,6,13,4,30,101530,100380,99270,78.8,0,7.16,7.75,7.890000000000001,7.95,7.99,8.02,8.03,8.040000000000001,8.03,171.74,171.68,171.64000000000001,171.59,171.54,171.49,171.42000000000002,171.36,171.23,27.18,26.84,26.66,26.46,26.27,26.09,25.89,25.71,25.330000000000002,N/A,N/A -2012,6,13,5,30,101510,100350,99240,80.63,0,6.79,7.34,7.47,7.53,7.57,7.6000000000000005,7.61,7.62,7.62,178,178.09,178.12,178.14000000000001,178.15,178.16,178.17000000000002,178.18,178.19,27.060000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A -2012,6,13,6,30,101520,100360,99250,81.48,0,6.8,7.3500000000000005,7.46,7.5200000000000005,7.5600000000000005,7.58,7.59,7.59,7.59,173.12,173.35,173.46,173.56,173.65,173.74,173.83,173.9,174.07,27.02,26.650000000000002,26.48,26.27,26.080000000000002,25.89,25.69,25.5,25.12,N/A,N/A -2012,6,13,7,30,101550,100390,99280,82.95,0,6.5600000000000005,7.01,7.1000000000000005,7.140000000000001,7.16,7.17,7.17,7.16,7.15,175.08,175.35,175.55,175.75,175.94,176.12,176.3,176.47,176.82,27.03,26.67,26.490000000000002,26.29,26.1,25.91,25.72,25.54,25.16,N/A,N/A -2012,6,13,8,30,101540,100380,99270,83.01,0,6.37,6.88,6.99,7.04,7.07,7.1000000000000005,7.1000000000000005,7.11,7.1000000000000005,184.92000000000002,184.89000000000001,184.89000000000001,184.89000000000001,184.89000000000001,184.91,184.91,184.92000000000002,184.94,27,26.63,26.45,26.25,26.05,25.86,25.66,25.48,25.09,N/A,N/A -2012,6,13,9,30,101580,100430,99310,82.62,0,4.44,4.78,4.86,4.91,4.95,4.98,5.01,5.03,5.0600000000000005,197.86,197.78,197.76,197.74,197.74,197.73000000000002,197.73000000000002,197.73000000000002,197.73000000000002,27.03,26.67,26.490000000000002,26.29,26.1,25.91,25.71,25.52,25.14,N/A,N/A -2012,6,13,10,30,101580,100430,99310,83.31,0,3.73,3.94,3.98,4,4.01,4.0200000000000005,4.03,4.04,4.07,187.78,188.38,188.64000000000001,188.87,189.1,189.32,189.54,189.75,190.20000000000002,26.92,26.560000000000002,26.39,26.18,25.990000000000002,25.8,25.6,25.41,25.02,N/A,N/A -2012,6,13,11,30,101580,100430,99310,80.33,0,3.62,3.83,3.88,3.91,3.93,3.95,3.97,3.99,4.03,191.62,192.43,192.85,193.23000000000002,193.55,193.85,194.14000000000001,194.41,194.94,27.02,26.68,26.51,26.310000000000002,26.12,25.94,25.75,25.560000000000002,25.19,N/A,N/A -2012,6,13,12,30,101580,100430,99310,81.55,0,2.81,2.99,3.04,3.08,3.11,3.15,3.18,3.2,3.2600000000000002,195.82,196.41,196.8,197.11,197.37,197.6,197.79,197.96,198.19,26.98,26.64,26.46,26.26,26.080000000000002,25.89,25.69,25.51,25.13,N/A,N/A -2012,6,13,13,30,101600,100440,99330,81.81,0,2.95,3.13,3.18,3.21,3.24,3.2600000000000002,3.29,3.31,3.35,189.63,188.87,188.44,187.99,187.58,187.18,186.76,186.34,185.48,27,26.66,26.48,26.29,26.1,25.91,25.72,25.53,25.16,N/A,N/A -2012,6,13,14,30,101630,100470,99360,81.21000000000001,0,2.0100000000000002,2.13,2.16,2.18,2.19,2.2,2.22,2.23,2.25,182.25,181.46,181.26,181.12,180.99,180.9,180.82,180.75,180.65,27.11,26.77,26.59,26.39,26.2,26.01,25.810000000000002,25.63,25.240000000000002,N/A,N/A -2012,6,13,15,30,101660,100500,99390,80.33,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.0500000000000003,3.04,3.02,3,2.96,158.56,158.78,158.95000000000002,159.1,159.25,159.39000000000001,159.54,159.69,160.02,27.23,26.89,26.71,26.51,26.32,26.13,25.93,25.740000000000002,25.36,N/A,N/A -2012,6,13,16,30,101590,100440,99320,80.65,0,2.74,2.87,2.9,2.91,2.92,2.92,2.92,2.93,2.93,163.38,163.62,163.83,164.04,164.23,164.43,164.63,164.82,165.26,27.22,26.86,26.69,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A -2012,6,13,17,30,101550,100400,99290,80.19,0,4.22,4.46,4.49,4.5,4.5,4.5,4.5,4.49,4.47,151.07,151.15,151.23,151.29,151.34,151.39000000000001,151.43,151.48,151.58,27.330000000000002,26.96,26.78,26.580000000000002,26.39,26.2,26,25.810000000000002,25.43,N/A,N/A -2012,6,13,18,30,101540,100390,99270,82.02,0,4.53,4.79,4.84,4.8500000000000005,4.86,4.86,4.86,4.86,4.84,144.33,144.87,145.17000000000002,145.46,145.72,145.96,146.21,146.44,146.9,27.37,26.990000000000002,26.810000000000002,26.61,26.42,26.22,26.02,25.84,25.45,N/A,N/A -2012,6,13,19,30,101540,100390,99270,81.62,0,5.65,6.0200000000000005,6.09,6.11,6.13,6.13,6.13,6.12,6.09,167.57,167.67000000000002,167.72,167.78,167.84,167.91,167.98,168.05,168.22,27.37,27,26.82,26.62,26.42,26.23,26.04,25.85,25.47,N/A,N/A -2012,6,13,20,30,101460,100310,99200,77.99,0,5.62,6,6.05,6.07,6.08,6.08,6.07,6.0600000000000005,6.03,175.12,175.04,175,174.96,174.92000000000002,174.89000000000001,174.84,174.8,174.72,27.51,27.16,26.98,26.78,26.59,26.400000000000002,26.2,26.02,25.63,N/A,N/A -2012,6,13,21,30,101450,100300,99180,79.03,0,6.3,6.76,6.86,6.9,6.93,6.94,6.94,6.94,6.92,177.53,177.59,177.64000000000001,177.69,177.72,177.75,177.78,177.81,177.86,27.46,27.11,26.94,26.740000000000002,26.55,26.35,26.16,25.97,25.59,N/A,N/A -2012,6,13,22,30,101390,100240,99130,81.17,0,6.76,7.29,7.4,7.45,7.48,7.5,7.5,7.51,7.5,187.51,187.42000000000002,187.47,187.5,187.54,187.58,187.62,187.66,187.75,27.36,27.01,26.830000000000002,26.63,26.44,26.25,26.05,25.87,25.48,N/A,N/A -2012,6,13,23,30,101400,100250,99140,81.64,0,6.43,6.95,7.0600000000000005,7.12,7.17,7.19,7.21,7.22,7.24,182.38,182.41,182.41,182.41,182.41,182.42000000000002,182.43,182.43,182.46,27.39,27.05,26.88,26.67,26.48,26.29,26.1,25.91,25.53,N/A,N/A -2012,6,14,0,30,101400,100260,99140,79.89,0,6.36,6.83,6.93,6.97,7,7.01,7.01,7,6.98,179.06,179.6,179.83,180.02,180.20000000000002,180.35,180.51,180.64000000000001,180.92000000000002,27.46,27.12,26.95,26.740000000000002,26.55,26.36,26.16,25.98,25.59,N/A,N/A -2012,6,14,1,30,101350,100200,99090,84.77,0,6.32,6.8100000000000005,6.92,6.97,7,7.0200000000000005,7.03,7.04,7.04,188.21,188.20000000000002,188.16,188.11,188.08,188.05,188.01,187.99,187.94,27.27,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A -2012,6,14,2,30,101330,100180,99070,85.55,0,8.6,9.36,9.52,9.6,9.66,9.68,9.700000000000001,9.71,9.71,195.24,195.3,195.33,195.36,195.4,195.44,195.49,195.53,195.62,27.3,26.94,26.77,26.560000000000002,26.37,26.18,25.98,25.8,25.42,N/A,N/A -2012,6,14,3,30,101370,100220,99110,84.92,0,6.47,7.0200000000000005,7.16,7.23,7.29,7.32,7.3500000000000005,7.36,7.38,180.21,180.37,180.49,180.59,180.67000000000002,180.74,180.81,180.86,180.97,27.36,27.02,26.85,26.64,26.45,26.26,26.060000000000002,25.88,25.5,N/A,N/A -2012,6,14,4,30,101380,100230,99120,82.53,0,6.4,6.93,7.0600000000000005,7.13,7.17,7.2,7.22,7.24,7.25,180.14000000000001,180.19,180.21,180.24,180.27,180.3,180.32,180.36,180.42000000000002,27.44,27.1,26.93,26.72,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,6,14,5,30,101370,100220,99110,84.28,0,7.11,7.7,7.83,7.890000000000001,7.930000000000001,7.95,7.97,7.97,7.97,185.77,185.87,185.9,185.91,185.92000000000002,185.92000000000002,185.92000000000002,185.92000000000002,185.91,27.330000000000002,26.98,26.810000000000002,26.6,26.41,26.22,26.02,25.84,25.46,N/A,N/A -2012,6,14,6,30,101400,100250,99140,82.19,0,6.3100000000000005,6.82,6.95,7.01,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.17,186.88,186.91,186.93,186.95000000000002,186.98,187,187.02,187.04,187.08,27.400000000000002,27.04,26.86,26.66,26.47,26.28,26.080000000000002,25.900000000000002,25.51,N/A,N/A -2012,6,14,7,30,101410,100260,99150,80.11,0,6.63,7.140000000000001,7.26,7.32,7.36,7.390000000000001,7.4,7.42,7.44,187.48,187.41,187.31,187.20000000000002,187.09,186.97,186.84,186.71,186.41,27.46,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A -2012,6,14,8,30,101400,100250,99140,80.98,0,6.11,6.63,6.75,6.83,6.88,6.92,6.95,6.97,7.0200000000000005,195.44,195.07,194.97,194.88,194.81,194.74,194.69,194.65,194.57,27.44,27.080000000000002,26.91,26.7,26.51,26.32,26.13,25.94,25.560000000000002,N/A,N/A -2012,6,14,9,30,101390,100240,99130,77.16,0,6.76,7.32,7.43,7.49,7.5200000000000005,7.54,7.55,7.55,7.54,192.09,192.08,192.07,192.05,192.02,192,191.98000000000002,191.95000000000002,191.9,27.6,27.25,27.080000000000002,26.88,26.69,26.490000000000002,26.3,26.11,25.73,N/A,N/A -2012,6,14,10,30,101400,100250,99140,74.5,0,7.43,8.07,8.2,8.26,8.290000000000001,8.31,8.32,8.32,8.290000000000001,192.27,192.28,192.32,192.36,192.39000000000001,192.42000000000002,192.45000000000002,192.48000000000002,192.52,27.84,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A -2012,6,14,11,30,101410,100260,99140,69.82000000000001,0,6.1000000000000005,6.59,6.71,6.78,6.84,6.88,6.92,6.94,6.99,187.69,188.15,188.39000000000001,188.62,188.81,188.99,189.17000000000002,189.33,189.63,27.94,27.63,27.46,27.27,27.09,26.900000000000002,26.71,26.52,26.150000000000002,N/A,N/A -2012,6,14,12,30,101400,100260,99140,73.06,0,6.53,7.03,7.140000000000001,7.19,7.22,7.24,7.25,7.25,7.25,193.88,193.91,193.98000000000002,194.06,194.13,194.22,194.3,194.38,194.55,27.82,27.5,27.34,27.14,26.96,26.77,26.580000000000002,26.39,26.02,N/A,N/A -2012,6,14,13,30,101450,100300,99190,67.98,0,4.67,5.01,5.08,5.11,5.14,5.16,5.18,5.2,5.22,194.43,194.79,194.95000000000002,195.08,195.20000000000002,195.32,195.41,195.5,195.68,27.97,27.66,27.5,27.3,27.11,26.92,26.73,26.55,26.17,N/A,N/A -2012,6,14,14,30,101490,100340,99220,67.75,0,5.15,5.55,5.65,5.7,5.75,5.78,5.8100000000000005,5.84,5.89,183.76,184.23,184.39000000000001,184.55,184.68,184.81,184.93,185.04,185.24,28.03,27.72,27.55,27.36,27.17,26.98,26.78,26.6,26.22,N/A,N/A -2012,6,14,15,30,101510,100360,99240,67.89,0,4.84,5.18,5.24,5.2700000000000005,5.29,5.29,5.29,5.3,5.29,179.75,179.82,179.91,180,180.09,180.18,180.29,180.38,180.6,28.02,27.71,27.54,27.34,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A -2012,6,14,16,30,101540,100390,99270,67.09,0,5.1000000000000005,5.44,5.51,5.54,5.5600000000000005,5.57,5.58,5.59,5.6000000000000005,184.43,184.27,184.16,184.05,183.97,183.89000000000001,183.82,183.77,183.68,28.04,27.72,27.560000000000002,27.36,27.17,26.98,26.79,26.6,26.22,N/A,N/A -2012,6,14,17,30,101520,100370,99250,71.03,0,5.2700000000000005,5.66,5.73,5.7700000000000005,5.79,5.8,5.8,5.8100000000000005,5.8,167.96,168.19,168.3,168.41,168.52,168.62,168.72,168.82,169.01,27.96,27.62,27.45,27.25,27.05,26.86,26.67,26.48,26.09,N/A,N/A -2012,6,14,18,30,101520,100370,99250,68.82000000000001,0,4.78,5.13,5.22,5.2700000000000005,5.3100000000000005,5.34,5.37,5.4,5.44,173.21,173.28,173.31,173.33,173.35,173.38,173.4,173.42000000000002,173.46,28.04,27.71,27.54,27.34,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A -2012,6,14,19,30,101520,100370,99260,73.3,0,5.73,6.15,6.24,6.28,6.32,6.34,6.3500000000000005,6.36,6.37,171.46,171.85,172.05,172.22,172.36,172.47,172.58,172.67000000000002,172.84,27.92,27.580000000000002,27.41,27.21,27.02,26.830000000000002,26.63,26.44,26.060000000000002,N/A,N/A -2012,6,14,20,30,101470,100320,99210,70.68,0,5.26,5.7,5.8,5.87,5.92,5.96,5.99,6.0200000000000005,6.0600000000000005,171.78,172.41,172.67000000000002,172.88,173.05,173.20000000000002,173.34,173.46,173.69,27.98,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.7,26.51,26.13,N/A,N/A -2012,6,14,21,30,101440,100300,99180,71.67,0,5.9,6.34,6.44,6.48,6.51,6.53,6.54,6.55,6.5600000000000005,169.17000000000002,169.07,169.01,168.95000000000002,168.89000000000001,168.84,168.79,168.74,168.65,27.93,27.61,27.44,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A -2012,6,14,22,30,101430,100280,99170,70.64,0,6.42,6.93,7.04,7.09,7.13,7.15,7.16,7.17,7.17,166.66,166.63,166.65,166.65,166.65,166.65,166.65,166.65,166.65,27.96,27.64,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,6,14,23,30,101390,100240,99130,74.14,0,6.8500000000000005,7.42,7.54,7.61,7.65,7.68,7.7,7.72,7.74,175.12,175.11,175.08,175.01,174.95000000000002,174.87,174.8,174.72,174.56,27.8,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,6,15,0,30,101350,100200,99090,71.89,0,6.78,7.37,7.51,7.59,7.65,7.7,7.74,7.7700000000000005,7.82,176.47,176.57,176.61,176.62,176.63,176.64000000000001,176.64000000000001,176.64000000000001,176.64000000000001,27.85,27.52,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A -2012,6,15,1,30,101360,100210,99100,73.72,0,6.66,7.22,7.34,7.4,7.44,7.47,7.48,7.49,7.49,169.59,169.69,169.82,169.95000000000002,170.06,170.17000000000002,170.28,170.38,170.6,27.79,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,6,15,2,30,101350,100200,99090,69.95,0,6.98,7.57,7.69,7.75,7.79,7.82,7.83,7.84,7.8500000000000005,175.13,174.84,174.65,174.45000000000002,174.26,174.08,173.88,173.69,173.3,27.91,27.580000000000002,27.42,27.21,27.03,26.830000000000002,26.64,26.45,26.07,N/A,N/A -2012,6,15,3,30,101410,100260,99150,73.69,0,7.21,7.84,7.98,8.06,8.1,8.13,8.15,8.15,8.15,170.1,170.18,170.17000000000002,170.14000000000001,170.1,170.04,169.98,169.92000000000002,169.78,27.82,27.490000000000002,27.32,27.12,26.92,26.73,26.54,26.35,25.97,N/A,N/A -2012,6,15,4,30,101360,100220,99100,68.32000000000001,0,6.38,6.9,7.0200000000000005,7.09,7.140000000000001,7.17,7.21,7.24,7.29,169.4,169.95000000000002,170.21,170.47,170.71,170.93,171.15,171.35,171.77,27.990000000000002,27.68,27.52,27.330000000000002,27.150000000000002,26.96,26.77,26.59,26.22,N/A,N/A -2012,6,15,5,30,101390,100240,99130,77.42,0,6.48,6.97,7.0600000000000005,7.09,7.1000000000000005,7.11,7.1000000000000005,7.09,7.0600000000000005,164.84,164.5,164.41,164.33,164.27,164.22,164.17000000000002,164.13,164.05,27.52,27.17,27,26.8,26.61,26.42,26.22,26.04,25.66,N/A,N/A -2012,6,15,6,30,101390,100240,99130,71.4,0,5.72,6.24,6.37,6.45,6.5200000000000005,6.57,6.61,6.65,6.71,169.67000000000002,169.53,169.5,169.44,169.39000000000001,169.33,169.27,169.21,169.08,27.830000000000002,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.39,26,N/A,N/A -2012,6,15,7,30,101380,100230,99120,76.47,0,7.62,8.290000000000001,8.43,8.51,8.55,8.58,8.6,8.61,8.620000000000001,166.15,166.38,166.48,166.58,166.67000000000002,166.75,166.83,166.9,167.04,27.580000000000002,27.25,27.080000000000002,26.88,26.69,26.5,26.3,26.12,25.73,N/A,N/A -2012,6,15,8,30,101400,100250,99140,75.68,0,6.66,7.29,7.45,7.54,7.61,7.67,7.71,7.74,7.79,168.6,168.42000000000002,168.34,168.28,168.23,168.18,168.14000000000001,168.1,168.03,27.67,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.82,N/A,N/A -2012,6,15,9,30,101460,100310,99200,76.3,0,5.94,6.42,6.54,6.61,6.67,6.7,6.73,6.76,6.8,170.68,170.64000000000001,170.6,170.54,170.48,170.42000000000002,170.35,170.29,170.14000000000001,27.6,27.28,27.1,26.91,26.72,26.52,26.330000000000002,26.14,25.76,N/A,N/A -2012,6,15,10,30,101450,100300,99190,77.93,0,5.71,6.18,6.28,6.34,6.38,6.41,6.43,6.44,6.46,159.93,159.97,160.05,160.13,160.19,160.26,160.33,160.4,160.54,27.59,27.27,27.1,26.900000000000002,26.71,26.52,26.32,26.13,25.75,N/A,N/A -2012,6,15,11,30,101490,100340,99220,79.46000000000001,0,5.57,6,6.09,6.140000000000001,6.17,6.19,6.2,6.2,6.2,161.28,161.5,161.64000000000001,161.77,161.87,161.97,162.06,162.14000000000001,162.3,27.47,27.14,26.96,26.77,26.57,26.38,26.19,26,25.62,N/A,N/A -2012,6,15,12,30,101520,100370,99250,81.13,0,5.0200000000000005,5.42,5.5200000000000005,5.58,5.63,5.67,5.7,5.73,5.78,176.47,176.09,175.91,175.73,175.57,175.42000000000002,175.27,175.12,174.85,27.32,26.98,26.810000000000002,26.6,26.41,26.22,26.02,25.84,25.45,N/A,N/A -2012,6,15,13,30,101560,100410,99300,81.07000000000001,0,4.23,4.46,4.5,4.51,4.5200000000000005,4.5200000000000005,4.51,4.51,4.5,167.17000000000002,166.77,166.55,166.33,166.15,165.98,165.81,165.64000000000001,165.33,27.44,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A -2012,6,15,14,30,101590,100440,99330,81.49,0,3.88,4.11,4.15,4.17,4.18,4.18,4.18,4.17,4.15,166.31,165.31,164.77,164.25,163.79,163.34,162.9,162.51,161.69,27.5,27.16,26.990000000000002,26.79,26.6,26.41,26.21,26.03,25.650000000000002,N/A,N/A -2012,6,15,15,30,101590,100440,99320,82.72,0,3.75,3.95,3.99,4,4,4,4,4,3.99,159.23,159.41,159.61,159.79,159.95000000000002,160.11,160.27,160.42000000000002,160.76,27.48,27.14,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A -2012,6,15,16,30,101600,100450,99340,83.26,0,3.44,3.66,3.71,3.74,3.77,3.79,3.81,3.83,3.86,148.13,148.64000000000001,149.11,149.58,150.01,150.44,150.86,151.27,152.15,27.57,27.22,27.05,26.85,26.66,26.47,26.27,26.09,25.71,N/A,N/A -2012,6,15,17,30,101590,100440,99320,86.33,2.2,5.12,5.58,5.75,5.87,5.96,6.04,6.12,6.19,6.33,182.79,185.61,186.95000000000002,188.33,189.59,190.85,192.16,193.43,195.92000000000002,27.310000000000002,26.97,26.810000000000002,26.62,26.45,26.27,26.09,25.92,25.57,N/A,N/A -2012,6,15,18,30,101580,100430,99310,81.09,0,5.25,5.62,5.69,5.72,5.73,5.74,5.74,5.73,5.72,185.47,185.31,185.24,185.15,185.08,185,184.93,184.86,184.71,27.72,27.38,27.21,27.01,26.82,26.63,26.44,26.25,25.87,N/A,N/A -2012,6,15,19,30,101560,100420,99300,80.17,0,4.8500000000000005,5.18,5.24,5.2700000000000005,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3100000000000005,182.55,182.51,182.44,182.38,182.32,182.26,182.20000000000002,182.14000000000001,182.03,27.76,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.91,N/A,N/A -2012,6,15,20,30,101530,100380,99270,77.86,0,5.55,5.97,6.07,6.13,6.16,6.19,6.21,6.23,6.26,169,168.99,168.94,168.89000000000001,168.84,168.8,168.75,168.70000000000002,168.62,27.87,27.53,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.02,N/A,N/A -2012,6,15,21,30,101540,100390,99280,76.81,0,6.140000000000001,6.61,6.71,6.75,6.78,6.79,6.8,6.8,6.79,157.49,157.5,157.58,157.63,157.67000000000002,157.70000000000002,157.72,157.75,157.79,27.830000000000002,27.5,27.330000000000002,27.13,26.94,26.75,26.55,26.37,25.98,N/A,N/A -2012,6,15,22,30,101500,100350,99240,76.57000000000001,0,5.84,6.28,6.36,6.390000000000001,6.41,6.41,6.41,6.4,6.37,159.36,159.31,159.32,159.32,159.31,159.3,159.28,159.26,159.21,27.78,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,6,15,23,30,101440,100290,99180,77.96000000000001,0,6.13,6.640000000000001,6.74,6.79,6.8100000000000005,6.83,6.83,6.83,6.8100000000000005,170.11,170.02,169.95000000000002,169.89000000000001,169.84,169.79,169.75,169.71,169.63,27.650000000000002,27.32,27.150000000000002,26.95,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A -2012,6,16,0,30,101470,100320,99210,74.19,0,4.86,5.26,5.36,5.41,5.45,5.48,5.51,5.53,5.5600000000000005,170.67000000000002,170.5,170.46,170.4,170.35,170.31,170.25,170.19,170.06,27.740000000000002,27.43,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.3,25.92,N/A,N/A -2012,6,16,1,30,101510,100360,99250,71.79,0,5.48,5.95,6.0600000000000005,6.12,6.17,6.2,6.23,6.26,6.3,146.6,146.9,147.06,147.19,147.29,147.38,147.46,147.53,147.64000000000001,27.8,27.490000000000002,27.32,27.13,26.94,26.75,26.560000000000002,26.38,26,N/A,N/A -2012,6,16,2,30,101490,100340,99230,74.43,0,6.98,7.65,7.8100000000000005,7.9,7.97,8.02,8.06,8.09,8.13,146.67000000000002,146.54,146.44,146.34,146.24,146.14000000000001,146.05,145.96,145.77,27.71,27.38,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A -2012,6,16,3,30,101500,100350,99230,67.86,0,6.62,7.28,7.44,7.53,7.6000000000000005,7.66,7.7,7.74,7.8100000000000005,142.04,142.24,142.32,142.38,142.44,142.49,142.55,142.6,142.70000000000002,27.990000000000002,27.69,27.52,27.32,27.14,26.95,26.75,26.57,26.19,N/A,N/A -2012,6,16,4,30,101460,100300,99190,66.33,0,7.42,8.14,8.290000000000001,8.38,8.44,8.49,8.52,8.55,8.6,151.95000000000002,151.75,151.67000000000002,151.59,151.53,151.46,151.39000000000001,151.33,151.20000000000002,27.990000000000002,27.68,27.51,27.32,27.13,26.95,26.75,26.57,26.19,N/A,N/A -2012,6,16,5,30,101510,100360,99250,68.83,0,7.71,8.42,8.57,8.65,8.69,8.72,8.73,8.74,8.73,146.29,146.39000000000001,146.52,146.64000000000001,146.75,146.86,146.96,147.06,147.24,27.87,27.57,27.41,27.21,27.03,26.84,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,6,16,6,30,101510,100360,99250,71.67,0,6.86,7.5200000000000005,7.66,7.74,7.79,7.82,7.84,7.86,7.87,153.12,153.01,153.01,153.01,153.01,153.02,153.04,153.06,153.09,27.78,27.46,27.28,27.080000000000002,26.89,26.7,26.5,26.32,25.93,N/A,N/A -2012,6,16,7,30,101530,100380,99270,60.97,0,6.8,7.42,7.57,7.65,7.72,7.78,7.82,7.86,7.930000000000001,149.11,149.54,149.70000000000002,149.84,149.96,150.07,150.18,150.27,150.44,28.2,27.93,27.77,27.580000000000002,27.39,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,6,16,8,30,101570,100420,99300,63.93,0,6.05,6.6000000000000005,6.71,6.7700000000000005,6.8100000000000005,6.84,6.86,6.87,6.88,145.8,146.06,146.12,146.18,146.23,146.27,146.31,146.35,146.44,28.17,27.88,27.72,27.53,27.34,27.150000000000002,26.96,26.78,26.39,N/A,N/A -2012,6,16,9,30,101590,100440,99320,60.83,0,5,5.39,5.48,5.5200000000000005,5.55,5.58,5.6000000000000005,5.61,5.64,149.97,150.11,150.17000000000002,150.20000000000002,150.23,150.25,150.26,150.27,150.28,28.26,27.990000000000002,27.830000000000002,27.63,27.45,27.26,27.07,26.89,26.51,N/A,N/A -2012,6,16,10,30,101610,100460,99340,67.18,0,5.08,5.5200000000000005,5.6000000000000005,5.63,5.66,5.66,5.67,5.66,5.65,153.45000000000002,153.31,153.31,153.3,153.27,153.25,153.21,153.18,153.09,27.98,27.68,27.52,27.32,27.13,26.94,26.75,26.560000000000002,26.18,N/A,N/A -2012,6,16,11,30,101620,100470,99350,65.19,0,4.17,4.5200000000000005,4.6000000000000005,4.65,4.7,4.74,4.7700000000000005,4.8,4.86,144.88,145.05,145.13,145.22,145.29,145.36,145.42000000000002,145.49,145.61,27.94,27.64,27.47,27.28,27.09,26.900000000000002,26.7,26.52,26.13,N/A,N/A -2012,6,16,12,30,101670,100520,99400,71.82000000000001,0,4.2700000000000005,4.55,4.6000000000000005,4.61,4.62,4.63,4.62,4.62,4.61,145.41,145.65,145.74,145.81,145.88,145.93,145.97,146.02,146.1,27.63,27.310000000000002,27.14,26.94,26.75,26.560000000000002,26.37,26.18,25.8,N/A,N/A -2012,6,16,13,30,101700,100550,99430,70.2,0,3.65,3.84,3.85,3.83,3.8200000000000003,3.8000000000000003,3.7800000000000002,3.7600000000000002,3.71,138.74,138.67000000000002,138.62,138.56,138.51,138.45000000000002,138.39000000000001,138.33,138.20000000000002,27.61,27.28,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.76,N/A,N/A -2012,6,16,14,30,101760,100600,99480,71.54,0,2.92,3.04,3.0500000000000003,3.04,3.02,3.0100000000000002,2.99,2.98,2.94,135.55,135.12,135.02,134.91,134.81,134.71,134.6,134.49,134.27,27.53,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.68,N/A,N/A -2012,6,16,15,30,101780,100620,99510,76.69,0,2.94,3.0700000000000003,3.09,3.09,3.09,3.09,3.08,3.0700000000000003,3.06,124.73,124.57000000000001,124.47,124.36,124.26,124.17,124.08,123.99000000000001,123.8,27.41,27.07,26.89,26.69,26.5,26.310000000000002,26.11,25.92,25.54,N/A,N/A -2012,6,16,16,30,101750,100600,99480,75.06,0,2.07,2.19,2.21,2.22,2.23,2.24,2.25,2.2600000000000002,2.27,127.44,127.28,127.2,127.12,127.05,126.98,126.9,126.81,126.67,27.51,27.16,26.990000000000002,26.78,26.6,26.41,26.21,26.02,25.64,N/A,N/A -2012,6,16,17,30,101760,100610,99490,77.37,0,1.97,2.0300000000000002,2.04,2.0300000000000002,2.0300000000000002,2.02,2.0100000000000002,2.0100000000000002,1.99,121.35000000000001,120.74000000000001,120.5,120.27,120.07000000000001,119.89,119.71000000000001,119.55,119.22,27.51,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.19,26.01,25.62,N/A,N/A -2012,6,16,18,30,101750,100600,99480,75.71000000000001,0,3.0700000000000003,3.24,3.27,3.29,3.31,3.3200000000000003,3.33,3.34,3.35,99.15,98.91,98.91,98.91,98.9,98.89,98.89,98.87,98.87,27.68,27.32,27.14,26.94,26.75,26.560000000000002,26.36,26.18,25.8,N/A,N/A -2012,6,16,19,30,101770,100620,99500,80.34,0,4.7700000000000005,4.93,4.93,4.9,4.8500000000000005,4.8,4.75,4.7,4.58,93.71000000000001,92.62,91.94,91.28,90.68,90.09,89.41,88.72,86.99,27.2,26.86,26.7,26.52,26.35,26.18,26.01,25.84,25.52,N/A,N/A -2012,6,16,20,30,101710,100560,99440,76.12,0,5.24,5.51,5.53,5.51,5.49,5.45,5.4,5.3500000000000005,5.21,87.36,87.69,88,88.34,88.69,89.05,89.48,89.9,91.07000000000001,26.7,26.32,26.14,25.95,25.77,25.580000000000002,25.400000000000002,25.22,24.88,N/A,N/A -2012,6,16,21,30,101670,100510,99400,79.14,0,3.69,3.9,3.95,3.97,3.99,4.01,4.0200000000000005,4.03,4.05,108.69,108.55,108.55,108.51,108.45,108.38,108.27,108.16,107.77,26.77,26.41,26.23,26.03,25.84,25.66,25.47,25.29,24.92,N/A,N/A -2012,6,16,22,30,101600,100450,99330,78.38,0,4.96,5.2700000000000005,5.32,5.34,5.36,5.37,5.37,5.37,5.38,106,106.07000000000001,106.11,106.15,106.19,106.22,106.26,106.3,106.36,27.01,26.650000000000002,26.47,26.27,26.09,25.900000000000002,25.71,25.53,25.16,N/A,N/A -2012,6,16,23,30,101580,100430,99320,78.71000000000001,0,5.48,5.91,6.0200000000000005,6.08,6.13,6.16,6.19,6.22,6.26,89.29,89.2,89.14,89.09,89.04,88.98,88.93,88.88,88.77,27.25,26.900000000000002,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A -2012,6,17,0,30,101550,100400,99280,80.65,0,6.2,6.67,6.76,6.8,6.82,6.83,6.83,6.83,6.8100000000000005,98.08,98.06,98.18,98.32000000000001,98.46000000000001,98.59,98.73,98.86,99.13,27.11,26.740000000000002,26.560000000000002,26.36,26.16,25.98,25.78,25.59,25.21,N/A,N/A -2012,6,17,1,30,101560,100410,99290,82.93,0,5.62,6.0200000000000005,6.12,6.17,6.2,6.22,6.24,6.25,6.26,103.69,104.16,104.4,104.61,104.79,104.96000000000001,105.11,105.26,105.56,26.8,26.43,26.25,26.05,25.86,25.67,25.47,25.29,24.91,N/A,N/A -2012,6,17,2,30,101530,100380,99260,81.79,0,6.46,6.97,7.09,7.16,7.2,7.23,7.25,7.2700000000000005,7.29,107.43,107.57000000000001,107.67,107.76,107.86,107.94,108.03,108.11,108.27,27.13,26.77,26.6,26.39,26.2,26.02,25.82,25.64,25.26,N/A,N/A -2012,6,17,3,30,101530,100380,99260,84.85000000000001,0,7.17,7.78,7.930000000000001,8.02,8.08,8.120000000000001,8.16,8.19,8.22,117.71000000000001,117.46000000000001,117.32000000000001,117.16,117.02,116.9,116.77,116.65,116.4,26.98,26.6,26.42,26.21,26.02,25.82,25.62,25.44,25.05,N/A,N/A -2012,6,17,4,30,101500,100350,99230,84.81,0,7.09,7.66,7.79,7.8500000000000005,7.890000000000001,7.92,7.930000000000001,7.930000000000001,7.930000000000001,116.83,117.16,117.29,117.4,117.49000000000001,117.56,117.63,117.69,117.79,27.13,26.76,26.580000000000002,26.38,26.19,25.990000000000002,25.8,25.61,25.23,N/A,N/A -2012,6,17,5,30,101510,100360,99250,82.03,0,7.21,7.82,7.94,8.01,8.040000000000001,8.05,8.06,8.06,8.040000000000001,119.58,119.49000000000001,119.45,119.41,119.39,119.37,119.35000000000001,119.34,119.33,27.150000000000002,26.79,26.61,26.41,26.22,26.03,25.830000000000002,25.650000000000002,25.26,N/A,N/A -2012,6,17,6,30,101550,100400,99280,80.78,0,6.390000000000001,7.01,7.16,7.26,7.33,7.38,7.41,7.44,7.48,116.77,117.38,117.57000000000001,117.7,117.8,117.88,117.94,117.99000000000001,118.04,27.36,27,26.82,26.62,26.43,26.240000000000002,26.04,25.85,25.46,N/A,N/A -2012,6,17,7,30,101560,100410,99300,79.67,0,6.13,6.61,6.72,6.78,6.82,6.8500000000000005,6.87,6.890000000000001,6.91,114.04,114.14,114.24000000000001,114.34,114.42,114.51,114.59,114.66,114.79,27.330000000000002,26.98,26.8,26.6,26.41,26.22,26.02,25.84,25.45,N/A,N/A -2012,6,17,8,30,101560,100400,99290,76.93,0,5.55,5.94,6.01,6.05,6.07,6.08,6.08,6.09,6.08,97.52,97.65,97.78,97.9,98.02,98.14,98.25,98.36,98.59,27.400000000000002,27.060000000000002,26.89,26.69,26.5,26.310000000000002,26.12,25.93,25.55,N/A,N/A -2012,6,17,9,30,101580,100420,99310,73.79,0,5.7,6.15,6.25,6.3100000000000005,6.36,6.4,6.43,6.45,6.5,103.45,103.8,104.02,104.21000000000001,104.38,104.54,104.68,104.81,105.05,27.54,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.69,N/A,N/A -2012,6,17,10,30,101570,100420,99300,71.88,0,6.140000000000001,6.61,6.69,6.73,6.75,6.76,6.76,6.75,6.74,97.12,96.78,96.58,96.4,96.24000000000001,96.08,95.92,95.78,95.49,27.48,27.14,26.96,26.77,26.57,26.38,26.19,26,25.61,N/A,N/A -2012,6,17,11,30,101580,100430,99310,71.22,0,6.08,6.51,6.58,6.6000000000000005,6.61,6.61,6.6000000000000005,6.59,6.5600000000000005,85.77,86.17,86.34,86.48,86.59,86.7,86.79,86.88,87.05,27.54,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.68,N/A,N/A -2012,6,17,12,30,101610,100450,99340,63.35,0,6.2700000000000005,6.78,6.87,6.92,6.95,6.96,6.97,6.98,6.98,82.73,82.93,82.97,82.99,83,83,83,83,83,27.830000000000002,27.51,27.34,27.150000000000002,26.96,26.77,26.57,26.39,26,N/A,N/A -2012,6,17,13,30,101640,100480,99370,61.61,0,6.29,6.82,6.92,6.97,7.01,7.03,7.04,7.05,7.05,72.28,72.37,72.44,72.51,72.58,72.64,72.7,72.76,72.89,27.830000000000002,27.53,27.36,27.16,26.97,26.79,26.59,26.41,26.02,N/A,N/A -2012,6,17,14,30,101620,100460,99350,57.04,0,6.7700000000000005,7.4,7.5200000000000005,7.59,7.63,7.66,7.67,7.68,7.68,65.71000000000001,65.6,65.62,65.66,65.69,65.73,65.78,65.82000000000001,65.9,27.88,27.57,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.060000000000002,N/A,N/A -2012,6,17,15,30,101610,100450,99330,56.53,0,7.32,8,8.14,8.2,8.24,8.26,8.27,8.27,8.24,60.89,60.870000000000005,60.94,61.02,61.1,61.17,61.26,61.33,61.5,27.85,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.02,N/A,N/A -2012,6,17,16,30,101620,100460,99340,61.58,0,7.57,8.19,8.3,8.35,8.38,8.4,8.4,8.4,8.370000000000001,74.59,74.9,75.07000000000001,75.25,75.4,75.56,75.7,75.84,76.13,27.38,27.03,26.85,26.66,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A -2012,6,17,17,30,101580,100420,99300,63.82,0,6.55,6.99,7.0600000000000005,7.07,7.07,7.07,7.0600000000000005,7.04,7,72.58,73.28,73.64,73.97,74.28,74.56,74.85000000000001,75.11,75.67,27.07,26.71,26.54,26.34,26.150000000000002,25.96,25.77,25.580000000000002,25.2,N/A,N/A -2012,6,17,18,30,101530,100370,99250,64.59,0,6.04,6.51,6.62,6.68,6.72,6.76,6.79,6.82,6.86,87.62,87.54,87.5,87.44,87.39,87.33,87.25,87.18,87.01,27,26.63,26.45,26.26,26.07,25.88,25.69,25.51,25.13,N/A,N/A -2012,6,17,19,30,101490,100330,99210,66.39,0,6.01,6.49,6.58,6.640000000000001,6.69,6.72,6.74,6.7700000000000005,6.8,96.79,96.03,95.68,95.34,95.02,94.73,94.42,94.15,93.55,27.060000000000002,26.68,26.5,26.310000000000002,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A -2012,6,17,20,30,101410,100250,99140,68.33,0,6.17,6.640000000000001,6.73,6.7700000000000005,6.8,6.82,6.83,6.84,6.8500000000000005,96.73,96.37,96.17,95.95,95.75,95.55,95.35000000000001,95.17,94.8,27.07,26.7,26.52,26.330000000000002,26.14,25.96,25.77,25.59,25.22,N/A,N/A -2012,6,17,21,30,101350,100200,99080,67.77,0,6.05,6.5,6.6000000000000005,6.640000000000001,6.68,6.7,6.71,6.72,6.74,95.56,95.76,95.81,95.85000000000001,95.88,95.9,95.91,95.91,95.91,27.28,26.94,26.76,26.57,26.38,26.19,26,25.82,25.44,N/A,N/A -2012,6,17,22,30,101300,100150,99040,68.64,0,3.2600000000000002,3.48,3.54,3.58,3.61,3.64,3.68,3.7,3.7800000000000002,101.58,101.45,101.36,101.26,101.15,101.04,100.91,100.78,100.43,27.3,26.96,26.79,26.59,26.400000000000002,26.21,26.02,25.84,25.46,N/A,N/A -2012,6,17,23,30,101270,100120,99010,72.21000000000001,0,4.0200000000000005,4.3100000000000005,4.39,4.43,4.48,4.5200000000000005,4.55,4.59,4.66,96.55,96.35000000000001,96.23,96.09,95.97,95.85000000000001,95.72,95.59,95.33,27.28,26.94,26.76,26.560000000000002,26.38,26.19,25.990000000000002,25.810000000000002,25.43,N/A,N/A -2012,6,18,0,30,101230,100080,98960,75.32000000000001,0,4.03,4.32,4.39,4.44,4.48,4.5200000000000005,4.55,4.57,4.63,90.24,90.15,90.13,90.11,90.09,90.06,90.03,90.01,89.95,27.27,26.93,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.42,N/A,N/A -2012,6,18,1,30,101180,100040,98920,77.34,0,5.38,5.79,5.88,5.94,5.98,6.01,6.03,6.05,6.08,92.28,92.16,92.11,92.06,92.02,91.98,91.94,91.9,91.82000000000001,27.35,26.990000000000002,26.82,26.62,26.43,26.240000000000002,26.04,25.86,25.47,N/A,N/A -2012,6,18,2,30,101140,99990,98880,76.54,0,5.22,5.57,5.63,5.66,5.67,5.68,5.69,5.69,5.69,97.14,96.3,95.82000000000001,95.35000000000001,94.91,94.5,94.09,93.71000000000001,92.91,27.29,26.94,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A -2012,6,18,3,30,101130,99980,98870,80.46000000000001,0,6.15,6.62,6.72,6.78,6.8100000000000005,6.84,6.8500000000000005,6.86,6.88,95.33,94.98,94.82000000000001,94.68,94.56,94.46000000000001,94.34,94.23,94.01,27.17,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.86,25.67,25.29,N/A,N/A -2012,6,18,4,30,101100,99950,98840,79.54,0,6.18,6.68,6.79,6.86,6.9,6.93,6.95,6.97,6.99,107.88,107.89,107.89,107.89,107.89,107.91,107.92,107.94,107.97,27.18,26.82,26.64,26.44,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,6,18,5,30,101060,99920,98800,82.73,0,6.19,6.63,6.74,6.79,6.83,6.86,6.88,6.9,6.93,115.27,115.23,115.3,115.39,115.48,115.57000000000001,115.68,115.78,116,27.1,26.740000000000002,26.560000000000002,26.35,26.16,25.97,25.78,25.59,25.21,N/A,N/A -2012,6,18,6,30,101070,99920,98810,83.83,0,6.65,7.15,7.25,7.3100000000000005,7.34,7.36,7.37,7.37,7.37,130.55,130.9,131,131.09,131.16,131.24,131.3,131.37,131.48,26.73,26.330000000000002,26.150000000000002,25.94,25.740000000000002,25.55,25.35,25.17,24.78,N/A,N/A -2012,6,18,7,30,101050,99900,98790,83.35000000000001,0,5.8,6.21,6.3,6.3500000000000005,6.38,6.4,6.41,6.43,6.44,144.96,145.27,145.4,145.53,145.65,145.75,145.86,145.96,146.14000000000001,27.01,26.63,26.45,26.25,26.060000000000002,25.87,25.67,25.48,25.1,N/A,N/A -2012,6,18,8,30,101020,99870,98760,82.58,0,7.37,7.97,8.09,8.15,8.18,8.19,8.19,8.18,8.14,180.96,180.96,181,181.07,181.13,181.20000000000002,181.29,181.37,181.57,27.2,26.830000000000002,26.650000000000002,26.45,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,6,18,9,30,101030,99880,98770,82.18,0,5.83,6.2700000000000005,6.36,6.41,6.45,6.47,6.49,6.5,6.5200000000000005,181.92000000000002,181.75,181.62,181.49,181.36,181.24,181.12,181,180.75,27.150000000000002,26.78,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A -2012,6,18,10,30,101040,99900,98780,79.71000000000001,0,6.3100000000000005,6.7700000000000005,6.88,6.92,6.96,6.97,6.98,6.99,6.99,208.36,208.08,207.88,207.68,207.49,207.3,207.1,206.92000000000002,206.54,27.19,26.830000000000002,26.66,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A -2012,6,18,11,30,101010,99860,98750,79.35000000000001,0,4.84,5.15,5.2,5.23,5.24,5.24,5.24,5.24,5.23,214.18,214.16,214.04,213.92000000000002,213.81,213.70000000000002,213.58,213.47,213.22,27.09,26.73,26.55,26.35,26.16,25.97,25.77,25.59,25.21,N/A,N/A -2012,6,18,12,30,101040,99900,98790,80.5,0,4.05,4.2700000000000005,4.3100000000000005,4.32,4.33,4.33,4.33,4.33,4.33,201.5,201.66,201.68,201.70000000000002,201.73000000000002,201.74,201.76,201.77,201.81,27.05,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A -2012,6,18,13,30,101110,99960,98840,91.08,5.1000000000000005,10.47,11.09,11.040000000000001,10.83,10.6,10.32,10.01,9.71,9.05,140.81,140.98,141.34,141.88,142.43,143.01,143.68,144.34,145.83,25.240000000000002,24.79,24.63,24.47,24.330000000000002,24.19,24.05,23.92,23.63,N/A,N/A -2012,6,18,14,30,101160,100000,98880,82.79,30,3.23,3.31,3.29,3.27,3.25,3.22,3.16,3.09,2.7600000000000002,127.84,132.26,134.95,137.89000000000001,141.06,144.3,147.81,151.01,156.17000000000002,24.96,24.57,24.41,24.25,24.1,23.98,23.88,23.8,23.650000000000002,N/A,N/A -2012,6,18,15,30,101140,99980,98850,88.79,39.900000000000006,3.92,3.85,3.69,3.5,3.37,3.2800000000000002,3.45,3.65,4.18,90.38,90.81,92.22,94.47,102.48,112.25,119.26,125.41,133.41,23.72,23.35,23.240000000000002,23.16,23.22,23.32,23.36,23.38,23.19,N/A,N/A -2012,6,18,16,30,101200,100040,98930,81.16,2.2,4.5200000000000005,4.91,5.01,5.09,5.15,5.2,5.24,5.28,5.33,142.73,144.52,145.08,145.55,145.94,146.28,146.59,146.86,147.33,26.16,25.77,25.59,25.38,25.19,25,24.8,24.62,24.240000000000002,N/A,N/A -2012,6,18,17,30,101140,99990,98870,86.68,0.4,6.33,6.75,6.84,6.890000000000001,6.92,6.94,6.96,6.98,7.05,155.48,155.29,155.16,155.04,154.92000000000002,154.8,154.64000000000001,154.5,154.12,26,25.580000000000002,25.400000000000002,25.2,25.02,24.84,24.650000000000002,24.48,24.14,N/A,N/A -2012,6,18,18,30,101170,100020,98900,89.11,4.4,8.11,8.61,8.68,8.69,8.67,8.65,8.6,8.56,8.46,147.57,148.22,148.77,149.3,149.81,150.28,150.78,151.23,152.23,25.55,25.09,24.900000000000002,24.7,24.52,24.34,24.150000000000002,23.98,23.63,N/A,N/A -2012,6,18,19,30,101190,100030,98910,83.7,0.4,8.33,8.93,9.03,9.05,9.06,9.05,9.03,9.01,8.94,175.26,174.63,174.3,173.95000000000002,173.6,173.25,172.88,172.52,171.71,25.76,25.3,25.11,24.900000000000002,24.71,24.52,24.32,24.14,23.77,N/A,N/A -2012,6,18,20,30,101160,100000,98890,80.2,0,7.11,7.63,7.74,7.78,7.8100000000000005,7.82,7.83,7.83,7.82,159.67000000000002,159.75,159.79,159.82,159.84,159.86,159.87,159.89000000000001,159.92000000000002,26.29,25.87,25.68,25.48,25.28,25.09,24.89,24.71,24.32,N/A,N/A -2012,6,18,21,30,101130,99980,98870,74.98,0,6.5,7.0200000000000005,7.140000000000001,7.22,7.28,7.33,7.37,7.4,7.46,156.03,156.01,156.04,156.05,156.07,156.07,156.07,156.08,156.07,26.82,26.45,26.27,26.060000000000002,25.87,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A -2012,6,18,22,30,101080,99930,98810,77.73,0,7.55,8.19,8.33,8.41,8.47,8.51,8.540000000000001,8.56,8.59,146.85,146.88,146.95000000000002,147.03,147.09,147.16,147.23,147.3,147.44,26.990000000000002,26.6,26.42,26.22,26.02,25.830000000000002,25.63,25.45,25.060000000000002,N/A,N/A -2012,6,18,23,30,101110,99960,98850,83.62,0,8.64,9.43,9.59,9.67,9.72,9.74,9.76,9.76,9.75,141.64000000000001,141.67000000000002,141.70000000000002,141.73,141.77,141.8,141.84,141.87,141.94,26.900000000000002,26.5,26.310000000000002,26.1,25.91,25.72,25.51,25.330000000000002,24.94,N/A,N/A -2012,6,19,0,30,101100,99950,98840,77.86,0,8.620000000000001,9.41,9.6,9.700000000000001,9.78,9.83,9.86,9.88,9.92,154,153.87,153.84,153.82,153.79,153.77,153.75,153.74,153.71,27.13,26.75,26.57,26.37,26.17,25.98,25.78,25.6,25.21,N/A,N/A -2012,6,19,1,30,101070,99920,98810,83.08,0,9.15,10.07,10.28,10.42,10.51,10.58,10.64,10.68,10.75,150.67000000000002,150.64000000000001,150.61,150.58,150.56,150.53,150.51,150.48,150.44,27.09,26.71,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.18,N/A,N/A -2012,6,19,2,30,101080,99930,98820,81.92,0,8.94,9.72,9.88,9.950000000000001,9.99,10.01,10.01,10.01,9.98,146.09,146.13,146.14000000000001,146.12,146.1,146.07,146.02,145.98,145.85,27.18,26.8,26.61,26.42,26.22,26.03,25.84,25.66,25.28,N/A,N/A -2012,6,19,3,30,101110,99960,98850,84.93,0,9.55,10.46,10.65,10.74,10.790000000000001,10.82,10.83,10.83,10.81,135.98,136.06,136.12,136.17000000000002,136.21,136.24,136.27,136.3,136.36,27.03,26.63,26.44,26.240000000000002,26.05,25.85,25.66,25.47,25.09,N/A,N/A -2012,6,19,4,30,101110,99960,98850,75.44,0,10.88,11.93,12.16,12.27,12.35,12.4,12.43,12.450000000000001,12.46,149,148.9,148.89000000000001,148.89000000000001,148.91,148.93,148.96,148.98,149.06,27.35,26.98,26.79,26.59,26.39,26.2,26.01,25.82,25.43,N/A,N/A -2012,6,19,5,30,101090,99950,98840,80.2,0,9.05,9.93,10.13,10.25,10.33,10.39,10.43,10.46,10.5,155.42000000000002,155.4,155.4,155.4,155.41,155.43,155.44,155.46,155.51,27.27,26.89,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A -2012,6,19,6,30,101140,100000,98890,82.64,0,9.67,10.67,10.92,11.06,11.17,11.25,11.31,11.370000000000001,11.44,155.82,156.04,156.13,156.21,156.29,156.35,156.41,156.47,156.57,27.27,26.89,26.71,26.51,26.310000000000002,26.12,25.92,25.740000000000002,25.35,N/A,N/A -2012,6,19,7,30,101180,100030,98920,83.37,0,9.84,10.88,11.15,11.32,11.44,11.540000000000001,11.620000000000001,11.68,11.790000000000001,163.86,164.06,164.11,164.15,164.18,164.20000000000002,164.22,164.23,164.26,27.39,27.02,26.84,26.64,26.45,26.25,26.060000000000002,25.87,25.490000000000002,N/A,N/A -2012,6,19,8,30,101200,100060,98950,84.05,0,9.23,10.18,10.42,10.57,10.67,10.75,10.81,10.86,10.93,160.1,159.99,159.92000000000002,159.85,159.78,159.71,159.65,159.58,159.44,27.45,27.080000000000002,26.900000000000002,26.7,26.51,26.32,26.12,25.94,25.55,N/A,N/A -2012,6,19,9,30,101200,100060,98950,82.7,0,9.370000000000001,10.290000000000001,10.52,10.64,10.73,10.790000000000001,10.82,10.86,10.89,158.37,158.27,158.35,158.43,158.52,158.59,158.67000000000002,158.76,158.93,27.6,27.25,27.080000000000002,26.88,26.7,26.51,26.310000000000002,26.13,25.76,N/A,N/A -2012,6,19,10,30,101230,100080,98960,85.57000000000001,5.5,9.44,10.09,10.31,10.46,10.58,10.700000000000001,10.82,10.92,11.15,136.31,136.69,137.49,138.35,139.18,140.02,140.95000000000002,141.85,143.95000000000002,26.23,25.87,25.740000000000002,25.59,25.44,25.3,25.150000000000002,25.01,24.72,N/A,N/A -2012,6,19,11,30,101180,100030,98910,86.52,0.4,13.620000000000001,14.84,14.97,14.96,14.94,14.91,14.8,14.69,14.41,161.14000000000001,161.23,161.38,161.59,161.79,161.98,162.07,162.13,162.36,25.43,24.97,24.82,24.71,24.64,24.61,24.63,24.650000000000002,24.67,N/A,N/A -2012,6,19,12,30,101350,100190,99060,86.07000000000001,43.900000000000006,12.89,13.83,13.950000000000001,13.94,13.93,13.9,13.93,13.96,14.120000000000001,142.17000000000002,142.96,143.63,144.46,145.48,146.57,148.1,149.58,152.87,24.25,23.73,23.57,23.46,23.39,23.34,23.35,23.37,23.51,N/A,N/A -2012,6,19,13,30,101310,100150,99030,81.92,0,2.52,2.7800000000000002,2.9,3.02,3.16,3.3000000000000003,3.49,3.68,4.48,157.13,160.38,162.17000000000002,163.93,165.63,167.31,169.02,170.66,174.37,25.93,25.57,25.41,25.23,25.07,24.91,24.75,24.61,24.47,N/A,N/A -2012,6,19,14,30,101380,100230,99120,77.05,0,8.36,9.290000000000001,9.52,9.66,9.77,9.85,9.9,9.94,10,162.03,161.83,161.67000000000002,161.54,161.42000000000002,161.31,161.21,161.1,160.91,27.88,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.02,N/A,N/A -2012,6,19,15,30,101410,100270,99150,77.27,0,8.370000000000001,9.17,9.35,9.450000000000001,9.51,9.55,9.57,9.59,9.6,165.62,165.46,165.43,165.39000000000001,165.37,165.34,165.32,165.3,165.27,27.830000000000002,27.5,27.330000000000002,27.13,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A -2012,6,19,16,30,101440,100290,99180,80.59,0,9.09,9.96,10.16,10.28,10.35,10.39,10.42,10.44,10.450000000000001,160.09,160.26,160.33,160.37,160.39000000000001,160.41,160.42000000000002,160.42000000000002,160.43,27.19,26.810000000000002,26.62,26.42,26.22,26.03,25.830000000000002,25.650000000000002,25.26,N/A,N/A -2012,6,19,17,30,101420,100270,99150,83.25,0,10.55,11.53,11.73,11.83,11.88,11.91,11.91,11.91,11.870000000000001,171.22,171.17000000000002,171.18,171.19,171.21,171.22,171.23,171.24,171.27,26.78,26.35,26.16,25.96,25.77,25.580000000000002,25.38,25.2,24.830000000000002,N/A,N/A -2012,6,19,18,30,101490,100330,99210,88.08,11,8.09,8.790000000000001,8.93,9.01,9.06,9.09,9.11,9.13,9.14,148.03,148.22,148.3,148.39000000000001,148.48,148.56,148.67000000000002,148.76,149.04,25.55,25.080000000000002,24.89,24.68,24.490000000000002,24.3,24.11,23.93,23.56,N/A,N/A -2012,6,19,19,30,101430,100270,99140,87.01,2.9000000000000004,6.92,7.44,7.5600000000000005,7.65,7.7700000000000005,7.9,8.2,8.52,9.63,153.34,153.35,153.51,153.70000000000002,153.95000000000002,154.23,154.68,155.15,156.53,25.3,24.88,24.71,24.54,24.400000000000002,24.28,24.22,24.18,24.57,N/A,N/A -2012,6,19,20,30,101430,100270,99140,93.3,289.7,4.97,5.12,5.18,5.22,5.3500000000000005,5.48,5.7,5.9,6.29,248.23000000000002,246.11,243.35,240.11,235.81,231.48000000000002,227.34,223.61,218,24.560000000000002,24.240000000000002,24.18,24.16,24.22,24.29,24.330000000000002,24.36,24.29,N/A,N/A -2012,6,19,21,30,101470,100310,99180,84.58,0,3.54,3.63,3.64,3.65,3.7,3.7600000000000002,4.0600000000000005,4.43,4.8,231.65,229.67000000000002,228.22,226.20000000000002,221.79,215.66,207.31,198.23000000000002,185.88,25.12,24.73,24.57,24.39,24.26,24.150000000000002,24.13,24.14,24.05,N/A,N/A -2012,6,19,22,30,101410,100250,99130,90.77,0,3.45,3.58,3.5700000000000003,3.54,3.5,3.47,3.45,3.44,4.88,59.14,60.75,61.68,62.81,64.27,65.9,68.16,70.44,115.2,25.18,24.77,24.59,24.400000000000002,24.22,24.05,23.87,23.7,24.16,N/A,N/A -2012,6,19,23,30,101360,100210,99090,90.36,0,5.1000000000000005,5.37,5.42,5.43,5.43,5.42,5.41,5.4,5.37,110.54,111.27,111.86,112.48,113.09,113.68,114.35000000000001,114.99000000000001,116.54,26.240000000000002,25.84,25.66,25.46,25.27,25.080000000000002,24.89,24.71,24.34,N/A,N/A -2012,6,20,0,30,101370,100220,99100,83.74,0,8.21,8.950000000000001,9.13,9.22,9.28,9.32,9.34,9.36,9.370000000000001,134.08,134.3,134.39000000000001,134.48,134.55,134.61,134.69,134.75,134.91,27.37,27,26.82,26.62,26.43,26.240000000000002,26.04,25.85,25.47,N/A,N/A -2012,6,20,1,30,101330,100180,99060,81.9,0,8.81,9.790000000000001,10.03,10.18,10.3,10.38,10.450000000000001,10.5,10.58,135.19,134.84,134.76,134.7,134.64000000000001,134.6,134.57,134.54,134.5,27.490000000000002,27.13,26.95,26.75,26.560000000000002,26.37,26.17,25.98,25.59,N/A,N/A -2012,6,20,2,30,101340,100190,99080,81.5,0,9.46,10.48,10.74,10.89,11,11.09,11.15,11.200000000000001,11.28,135.91,135.93,135.92000000000002,135.89000000000001,135.87,135.84,135.82,135.78,135.72,27.62,27.27,27.09,26.89,26.7,26.5,26.310000000000002,26.12,25.740000000000002,N/A,N/A -2012,6,20,3,30,101330,100180,99070,80.18,0,9.78,10.76,11.01,11.16,11.26,11.34,11.4,11.450000000000001,11.53,144.35,144.04,143.9,143.77,143.65,143.54,143.44,143.34,143.15,27.900000000000002,27.59,27.43,27.240000000000002,27.060000000000002,26.88,26.7,26.52,26.16,N/A,N/A -2012,6,20,4,30,101350,100190,99080,89.69,0,10.97,12.05,12.33,12.49,12.6,12.68,12.74,12.81,12.98,130.42000000000002,131.57,132.02,132.44,132.85,133.25,133.71,134.15,135.36,25.87,25.38,25.18,24.98,24.79,24.61,24.43,24.27,23.96,N/A,N/A -2012,6,20,5,30,101300,100150,99040,84.71000000000001,0,13.15,14.76,15.1,15.31,15.44,15.52,15.56,15.58,15.56,148.57,148.22,148.23,148.28,148.34,148.41,148.51,148.6,148.82,26.900000000000002,26.45,26.25,26.04,25.830000000000002,25.63,25.43,25.240000000000002,24.85,N/A,N/A -2012,6,20,6,30,101330,100180,99070,80.62,0,10.28,11.34,11.59,11.75,11.86,11.94,12,12.05,12.13,152.62,152.34,152.17000000000002,152,151.82,151.67000000000002,151.5,151.34,151.01,27.07,26.68,26.5,26.3,26.11,25.93,25.740000000000002,25.560000000000002,25.19,N/A,N/A -2012,6,20,7,30,101360,100210,99100,78.9,0,9.67,10.83,11.13,11.33,11.47,11.57,11.64,11.69,11.76,139.76,139.65,139.70000000000002,139.79,139.89000000000001,139.99,140.1,140.21,140.45000000000002,28.01,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.16,N/A,N/A -2012,6,20,8,30,101330,100180,99070,76.51,0,9.75,10.81,11.06,11.200000000000001,11.290000000000001,11.36,11.4,11.44,11.48,141.09,140.79,140.70000000000002,140.61,140.54,140.47,140.4,140.34,140.21,27.95,27.63,27.46,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A -2012,6,20,9,30,101350,100200,99090,78.85000000000001,0,8.870000000000001,9.82,10.05,10.200000000000001,10.31,10.39,10.44,10.49,10.55,138.41,138.4,138.45000000000002,138.5,138.55,138.6,138.65,138.70000000000002,138.82,27.84,27.5,27.32,27.12,26.93,26.740000000000002,26.54,26.35,25.96,N/A,N/A -2012,6,20,10,30,101360,100210,99100,79.35000000000001,0,7.68,8.370000000000001,8.51,8.59,8.63,8.66,8.68,8.69,8.69,147.94,147.64000000000001,147.47,147.29,147.11,146.94,146.75,146.58,146.20000000000002,27.650000000000002,27.32,27.14,26.95,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A -2012,6,20,11,30,101360,100210,99100,79.46000000000001,0,6.890000000000001,7.5600000000000005,7.73,7.84,7.930000000000001,7.99,8.05,8.09,8.17,142.72,142.37,142.26,142.17000000000002,142.09,142.03,141.98,141.94,141.88,27.77,27.45,27.28,27.080000000000002,26.89,26.7,26.51,26.32,25.94,N/A,N/A -2012,6,20,12,30,101380,100230,99120,78.89,0,7.24,7.92,8.07,8.16,8.22,8.27,8.3,8.33,8.36,140.92000000000002,141.32,141.53,141.73,141.91,142.08,142.24,142.4,142.70000000000002,27.77,27.44,27.27,27.07,26.88,26.69,26.5,26.310000000000002,25.93,N/A,N/A -2012,6,20,13,30,101410,100260,99140,81.84,5.5,8.15,8.82,8.96,9.01,9.040000000000001,9.040000000000001,9.02,8.99,8.91,147.13,146.31,145.81,145.33,144.89000000000001,144.47,144.04,143.62,142.65,26.28,25.86,25.67,25.48,25.29,25.11,24.92,24.75,24.400000000000002,N/A,N/A -2012,6,20,14,30,101480,100320,99190,93.03,59.300000000000004,5.91,6.34,6.44,6.51,6.5600000000000005,6.6000000000000005,6.65,6.7,6.86,175.67000000000002,174.72,174.26,173.78,173.28,172.78,172.12,171.47,169.06,24.88,24.43,24.25,24.05,23.87,23.7,23.53,23.37,23.07,N/A,N/A -2012,6,20,15,30,101450,100290,99170,81.78,0,7.59,8.16,8.28,8.33,8.36,8.370000000000001,8.370000000000001,8.36,8.33,165.46,165.43,165.42000000000002,165.42000000000002,165.43,165.45000000000002,165.49,165.52,165.64000000000001,26.28,25.86,25.67,25.46,25.27,25.080000000000002,24.88,24.7,24.32,N/A,N/A -2012,6,20,16,30,101540,100390,99270,81.89,0,6.17,6.67,6.78,6.8500000000000005,6.9,6.94,6.97,6.99,7.04,142.75,142.71,142.65,142.58,142.5,142.41,142.33,142.23,142,26.95,26.57,26.39,26.19,26,25.810000000000002,25.62,25.43,25.05,N/A,N/A -2012,6,20,17,30,101460,100300,99190,81.33,0,6.59,7.1000000000000005,7.21,7.26,7.29,7.3100000000000005,7.32,7.33,7.32,153.56,153.25,153.09,152.95000000000002,152.8,152.65,152.49,152.35,152,26.88,26.490000000000002,26.310000000000002,26.11,25.91,25.73,25.53,25.34,24.97,N/A,N/A -2012,6,20,18,30,101500,100340,99220,80.37,0,6.04,6.51,6.62,6.69,6.74,6.78,6.8100000000000005,6.84,6.890000000000001,149.08,149.19,149.17000000000002,149.14000000000001,149.1,149.06,149.01,148.96,148.84,26.84,26.45,26.27,26.07,25.88,25.69,25.5,25.32,24.94,N/A,N/A -2012,6,20,19,30,101470,100320,99200,79.7,0,4.98,5.33,5.4,5.44,5.47,5.49,5.51,5.53,5.5600000000000005,132.76,132.69,132.65,132.6,132.55,132.49,132.42000000000002,132.34,132.14000000000001,27.080000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.75,25.57,25.19,N/A,N/A -2012,6,20,20,30,101430,100280,99170,85.01,0,6.01,6.46,6.57,6.63,6.67,6.7,6.73,6.75,6.79,126.34,125.82000000000001,125.51,125.2,124.92,124.64,124.35000000000001,124.07000000000001,123.47,27.080000000000002,26.7,26.52,26.32,26.13,25.95,25.75,25.57,25.2,N/A,N/A -2012,6,20,21,30,101410,100260,99140,83.11,0,6.29,6.73,6.8,6.83,6.8500000000000005,6.86,6.86,6.86,6.86,126.48,126.18,125.98,125.77,125.54,125.31,125.03,124.76,124.06,26.75,26.36,26.18,25.98,25.79,25.61,25.42,25.240000000000002,24.88,N/A,N/A -2012,6,20,22,30,101410,100260,99150,81.31,0,6.83,7.47,7.65,7.7700000000000005,7.87,7.95,8.02,8.08,8.2,98.79,99.48,99.82000000000001,100.14,100.42,100.68,100.92,101.15,101.57000000000001,27.41,27.060000000000002,26.89,26.69,26.51,26.32,26.13,25.94,25.57,N/A,N/A -2012,6,20,23,30,101360,100210,99100,76.46000000000001,0,7.86,8.57,8.73,8.81,8.870000000000001,8.9,8.92,8.93,8.94,104.88,104.91,104.92,104.94,104.97,104.99000000000001,105.02,105.05,105.13,27.69,27.36,27.18,26.98,26.79,26.6,26.41,26.22,25.84,N/A,N/A -2012,6,21,0,30,101350,100200,99080,78.05,0,7.22,7.9,8.05,8.14,8.21,8.26,8.290000000000001,8.33,8.370000000000001,111.23,111.82000000000001,112.04,112.21000000000001,112.36,112.48,112.59,112.68,112.85000000000001,27.740000000000002,27.41,27.23,27.03,26.84,26.650000000000002,26.45,26.27,25.88,N/A,N/A -2012,6,21,1,30,101350,100200,99080,80.9,0,7.18,7.8100000000000005,7.94,8.01,8.06,8.08,8.1,8.11,8.120000000000001,121.60000000000001,121.27,121.08,120.92,120.79,120.66,120.54,120.42,120.19,27.560000000000002,27.21,27.04,26.84,26.650000000000002,26.46,26.26,26.080000000000002,25.69,N/A,N/A -2012,6,21,2,30,101350,100200,99090,87.2,0,8.78,9.48,9.6,9.64,9.65,9.63,9.61,9.58,9.49,117.16,116.99000000000001,116.95,116.9,116.85000000000001,116.8,116.75,116.7,116.58,26.86,26.46,26.28,26.09,25.900000000000002,25.72,25.54,25.37,25.02,N/A,N/A -2012,6,21,3,30,101360,100210,99100,81.12,0,7.28,7.930000000000001,8.1,8.19,8.27,8.33,8.370000000000001,8.41,8.47,119.91,119.93,119.97,120.01,120.06,120.10000000000001,120.14,120.18,120.27,27.07,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.17,N/A,N/A -2012,6,21,4,30,101340,100190,99080,81.38,0,6.71,7.25,7.3500000000000005,7.4,7.44,7.46,7.47,7.47,7.48,127.15,126.51,126.12,125.73,125.36,125.02,124.67,124.33,123.62,27.29,26.93,26.76,26.560000000000002,26.37,26.18,25.990000000000002,25.810000000000002,25.44,N/A,N/A -2012,6,21,5,30,101350,100200,99080,81.77,0,5.98,6.49,6.62,6.7,6.76,6.8100000000000005,6.8500000000000005,6.88,6.94,126.74000000000001,126.56,126.55,126.53,126.51,126.49000000000001,126.47,126.46000000000001,126.41,27.25,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A -2012,6,21,6,30,101360,100210,99100,81.12,0,6.140000000000001,6.62,6.72,6.7700000000000005,6.8,6.83,6.84,6.8500000000000005,6.87,115.05,115.38,115.60000000000001,115.84,116.06,116.29,116.52,116.75,117.22,27.44,27.09,26.91,26.71,26.52,26.330000000000002,26.13,25.95,25.560000000000002,N/A,N/A -2012,6,21,7,30,101340,100190,99080,81.42,0,7.4,8.03,8.17,8.24,8.290000000000001,8.31,8.33,8.34,8.33,120.41,120.56,120.65,120.73,120.81,120.88,120.94,121,121.13,27.45,27.09,26.92,26.72,26.52,26.34,26.14,25.95,25.57,N/A,N/A -2012,6,21,8,30,101380,100230,99120,79.38,0,5.73,6.22,6.34,6.42,6.49,6.54,6.59,6.63,6.7,122.12,122.46000000000001,122.67,122.85000000000001,123,123.13000000000001,123.24000000000001,123.34,123.52,27.62,27.28,27.1,26.91,26.72,26.53,26.34,26.16,25.77,N/A,N/A -2012,6,21,9,30,101390,100240,99130,80.74,4.4,5.3500000000000005,5.76,5.86,5.93,5.98,6.0200000000000005,6.0600000000000005,6.09,6.13,120.85000000000001,120.03,119.64,119.29,118.99000000000001,118.73,118.48,118.25,117.83,27.48,27.14,26.97,26.77,26.580000000000002,26.400000000000002,26.2,26.02,25.64,N/A,N/A -2012,6,21,10,30,101390,100240,99130,83.12,6.6000000000000005,4.89,5.24,5.32,5.37,5.41,5.44,5.47,5.49,5.53,110.12,109.8,109.52,109.21000000000001,108.94,108.69,108.44,108.21000000000001,107.77,27.21,26.86,26.68,26.490000000000002,26.3,26.11,25.91,25.73,25.35,N/A,N/A -2012,6,21,11,30,101420,100270,99150,76.85000000000001,0,4.48,4.92,5.04,5.13,5.2,5.26,5.3,5.34,5.39,91.94,91.45,91.38,91.35000000000001,91.36,91.39,91.45,91.52,91.71000000000001,27.57,27.240000000000002,27.07,26.88,26.69,26.5,26.310000000000002,26.13,25.740000000000002,N/A,N/A -2012,6,21,12,30,101440,100290,99170,77.24,0,5.58,6.03,6.13,6.19,6.22,6.25,6.26,6.2700000000000005,6.29,84.22,84.60000000000001,84.78,84.93,85.06,85.18,85.28,85.38,85.59,27.61,27.26,27.09,26.89,26.7,26.51,26.310000000000002,26.13,25.740000000000002,N/A,N/A -2012,6,21,13,30,101440,100290,99170,70.31,0,6.13,6.6000000000000005,6.68,6.71,6.73,6.73,6.73,6.73,6.71,80.22,80.13,80.01,79.87,79.74,79.62,79.49,79.37,79.14,27.92,27.6,27.43,27.23,27.04,26.85,26.66,26.48,26.09,N/A,N/A -2012,6,21,14,30,101510,100360,99240,70.26,0,6.47,7.0200000000000005,7.13,7.2,7.24,7.2700000000000005,7.29,7.3,7.32,82.21000000000001,81.86,81.76,81.66,81.59,81.52,81.45,81.39,81.28,27.97,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.52,26.14,N/A,N/A -2012,6,21,15,30,101550,100400,99290,65.27,0,6.1000000000000005,6.58,6.66,6.69,6.7,6.7,6.7,6.7,6.68,74.64,74.63,74.7,74.78,74.85000000000001,74.93,75.02,75.11,75.3,28.14,27.830000000000002,27.67,27.47,27.28,27.1,26.900000000000002,26.71,26.330000000000002,N/A,N/A -2012,6,21,16,30,101530,100380,99270,72,0,7.17,7.74,7.84,7.890000000000001,7.9,7.91,7.9,7.890000000000001,7.86,74.67,74.84,74.91,74.97,75.04,75.11,75.19,75.26,75.45,27.68,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.830000000000002,N/A,N/A -2012,6,21,17,30,101510,100360,99240,71.42,0,6.44,6.91,6.99,7.0200000000000005,7.04,7.04,7.03,7.03,6.99,69.04,69.18,69.3,69.41,69.51,69.61,69.7,69.78,69.96000000000001,27.53,27.18,27,26.810000000000002,26.61,26.42,26.23,26.04,25.66,N/A,N/A -2012,6,21,18,30,101490,100340,99220,68.18,0,5.29,5.62,5.66,5.66,5.64,5.62,5.58,5.55,5.46,73.44,73.22,73.16,73.07000000000001,72.97,72.85000000000001,72.7,72.55,72.04,27.66,27.34,27.17,26.98,26.8,26.62,26.43,26.26,25.92,N/A,N/A -2012,6,21,19,30,101440,100290,99170,60.94,0,6.18,6.67,6.76,6.8,6.83,6.8500000000000005,6.86,6.88,6.91,78.52,78.32000000000001,78.2,78.07000000000001,77.92,77.76,77.57000000000001,77.38,76.8,28.07,27.77,27.61,27.42,27.240000000000002,27.060000000000002,26.88,26.71,26.37,N/A,N/A -2012,6,21,20,30,101390,100240,99130,55.57,0,4.95,5.37,5.45,5.51,5.59,5.67,5.8100000000000005,5.97,6.88,90.25,89.85000000000001,89.57000000000001,89.28,88.94,88.58,88.05,87.49,85.47,28.32,28.05,27.89,27.71,27.54,27.37,27.21,27.07,26.900000000000002,N/A,N/A -2012,6,21,21,30,101340,100190,99080,61.120000000000005,0,5.18,5.57,5.64,5.67,5.7,5.73,5.78,5.82,6.1000000000000005,107.76,107.33,107.04,106.72,106.36,105.97,105.41,104.85000000000001,102.51,28.2,27.91,27.75,27.57,27.39,27.22,27.05,26.89,26.64,N/A,N/A -2012,6,21,22,30,101320,100170,99060,63.22,0,4.44,4.76,4.8100000000000005,4.84,4.86,4.87,4.9,4.92,5.03,122.05,121.71000000000001,121.47,121.2,120.91,120.61,120.19,119.77,118.21000000000001,28.19,27.900000000000002,27.740000000000002,27.560000000000002,27.38,27.21,27.03,26.87,26.580000000000002,N/A,N/A -2012,6,21,23,30,101290,100140,99030,62.96,0,4.49,4.83,4.88,4.91,4.94,4.96,5,5.04,5.22,126.98,126.58,126.3,125.98,125.63000000000001,125.24000000000001,124.7,124.16,121.92,28.3,28.02,27.86,27.67,27.490000000000002,27.32,27.13,26.96,26.66,N/A,N/A -2012,6,22,0,30,101260,100110,99000,67,0,3.31,3.54,3.5700000000000003,3.59,3.62,3.65,3.71,3.79,4.51,137.56,136.81,136.26,135.58,134.78,133.84,132.24,130.52,120.47,28.16,27.87,27.72,27.53,27.36,27.19,27.04,26.900000000000002,26.87,N/A,N/A -2012,6,22,1,30,101230,100080,98970,67.86,0,2.35,2.5,2.5300000000000002,2.5500000000000003,2.58,2.6,2.66,2.72,3.18,138.46,137.39000000000001,136.66,135.81,134.81,133.67000000000002,131.99,130.21,122.13,28.14,27.86,27.69,27.51,27.330000000000002,27.16,26.990000000000002,26.84,26.650000000000002,N/A,N/A -2012,6,22,2,30,101260,100110,99000,67.94,0,0.62,0.67,0.7000000000000001,0.72,0.76,0.8,0.9,1.02,2.93,138.6,136.27,134.47,132.46,130.21,127.73,124.08,119.89,102.12,28.18,27.88,27.72,27.53,27.35,27.17,27,26.84,26.900000000000002,N/A,N/A -2012,6,22,3,30,101240,100100,98980,67.93,0,0.75,0.76,0.74,0.72,0.7000000000000001,0.68,0.67,0.67,0.91,343.21,347,349.58,352.93,357.36,2.57,11.34,20.67,53.29,28.18,27.89,27.73,27.54,27.36,27.18,27,26.830000000000002,26.53,N/A,N/A -2012,6,22,4,30,101240,100090,98980,67.5,0,1.07,1.1,1.09,1.08,1.07,1.05,1.04,1.04,1.08,347.42,350.93,352.85,355.04,357.40000000000003,359.86,3.15,6.47,19.25,28.22,27.93,27.77,27.57,27.39,27.21,27.02,26.85,26.51,N/A,N/A -2012,6,22,5,30,101220,100080,98970,68.65,0,1.85,1.93,1.93,1.93,1.92,1.9100000000000001,1.9100000000000001,1.9000000000000001,1.94,356.29,357.82,358.88,0.14,1.53,3.06,5.19,7.390000000000001,15.69,28.16,27.87,27.71,27.52,27.34,27.16,26.97,26.8,26.48,N/A,N/A -2012,6,22,6,30,101250,100110,99000,68.05,0,2.35,2.49,2.5,2.5,2.5,2.5,2.5,2.5,2.52,1.99,2.68,3.14,3.7,4.3500000000000005,5.08,6.13,7.22,11.65,28.23,27.95,27.79,27.6,27.42,27.240000000000002,27.060000000000002,26.89,26.560000000000002,N/A,N/A -2012,6,22,7,30,101250,100100,98990,69.25,0,3.11,3.3000000000000003,3.31,3.3000000000000003,3.29,3.2800000000000002,3.27,3.2600000000000002,3.33,2.68,3.14,3.44,3.8000000000000003,4.2,4.63,5.3100000000000005,6.03,10.63,28.17,27.88,27.72,27.53,27.35,27.17,26.990000000000002,26.82,26.560000000000002,N/A,N/A -2012,6,22,8,30,101220,100070,98960,69.43,0,4.5,4.8100000000000005,4.8500000000000005,4.86,4.86,4.87,4.89,4.91,5.17,2.64,3.16,3.46,3.8000000000000003,4.22,4.7,5.47,6.2700000000000005,10.36,28.17,27.900000000000002,27.740000000000002,27.55,27.38,27.21,27.05,26.900000000000002,26.73,N/A,N/A -2012,6,22,9,30,101220,100070,98960,68.72,0,5.79,6.24,6.3,6.33,6.34,6.3500000000000005,6.38,6.42,6.7700000000000005,357.04,357.1,357.17,357.26,357.42,357.64,358.07,358.55,2.45,28.150000000000002,27.86,27.71,27.53,27.35,27.18,27.02,26.87,26.72,N/A,N/A -2012,6,22,10,30,101210,100070,98960,74.18,0,5.98,6.4,6.45,6.45,6.45,6.43,6.41,6.38,6.37,357.61,357.87,358.06,358.26,358.5,358.76,359.15000000000003,359.55,1.46,27.830000000000002,27.53,27.36,27.18,27,26.830000000000002,26.66,26.5,26.240000000000002,N/A,N/A -2012,6,22,11,30,101220,100070,98960,70.35000000000001,0,6.32,6.75,6.8,6.8100000000000005,6.8100000000000005,6.8,6.8100000000000005,6.82,7.07,4.9,4.96,5.0200000000000005,5.13,5.3100000000000005,5.55,6.13,6.76,11.39,27.72,27.41,27.25,27.07,26.900000000000002,26.740000000000002,26.580000000000002,26.44,26.34,N/A,N/A -2012,6,22,12,30,101230,100080,98960,71.54,0,7.65,8.2,8.28,8.28,8.27,8.25,8.23,8.22,8.32,6.84,7.0200000000000005,7.11,7.23,7.42,7.62,7.97,8.34,10.33,27.32,26.98,26.82,26.63,26.46,26.3,26.14,25.990000000000002,25.8,N/A,N/A -2012,6,22,13,30,101220,100070,98960,73.68,0,6.91,7.4,7.48,7.51,7.5200000000000005,7.53,7.53,7.54,7.68,17.53,17.79,17.96,18.150000000000002,18.37,18.6,18.92,19.240000000000002,20.73,27.07,26.71,26.54,26.35,26.17,26,25.830000000000002,25.66,25.41,N/A,N/A -2012,6,22,14,30,101240,100090,98970,74.25,0,6.4,6.8,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.84,6.8500000000000005,6.86,7.26,21.16,21.63,21.97,22.37,22.88,23.45,24.5,25.61,32.96,26.94,26.580000000000002,26.41,26.23,26.05,25.89,25.73,25.6,25.6,N/A,N/A -2012,6,22,15,30,101250,100100,98990,72.73,0,5.54,5.9,5.96,5.99,6.01,6.04,6.1000000000000005,6.18,6.93,30.64,31.080000000000002,31.37,31.73,32.19,32.71,33.68,34.730000000000004,41.18,27.34,27,26.84,26.66,26.490000000000002,26.32,26.17,26.03,26.060000000000002,N/A,N/A -2012,6,22,16,30,101260,100110,99000,71.38,0,4.48,4.75,4.8,4.82,4.84,4.86,4.9,4.95,5.39,32.83,33.3,33.59,33.93,34.31,34.75,35.410000000000004,36.1,39.37,27.73,27.41,27.25,27.060000000000002,26.88,26.71,26.53,26.37,26.2,N/A,N/A -2012,6,22,17,30,101240,100090,98980,68.82000000000001,0,3.5,3.75,3.81,3.86,3.93,4.0200000000000005,4.2,4.42,5.43,66.52,66.37,66.15,65.88,65.55,65.16,64.4,63.52,59.370000000000005,28.23,27.93,27.78,27.6,27.44,27.28,27.17,27.07,27.19,N/A,N/A -2012,6,22,18,30,101210,100060,98960,60.69,0,3.91,4.25,4.32,4.37,4.42,4.46,4.5,4.54,4.65,91.49,90.85000000000001,90.44,90.01,89.59,89.16,88.66,88.18,86.86,29.03,28.76,28.61,28.43,28.26,28.09,27.92,27.75,27.44,N/A,N/A -2012,6,22,19,30,101180,100030,98920,59.26,0,3.45,3.69,3.72,3.73,3.74,3.74,3.74,3.75,3.7600000000000002,114.52,114.10000000000001,113.78,113.45,113.12,112.79,112.4,112.02,110.99000000000001,29.05,28.76,28.6,28.41,28.22,28.04,27.85,27.67,27.310000000000002,N/A,N/A -2012,6,22,20,30,101120,99980,98870,55.800000000000004,0,2.43,2.6,2.63,2.65,2.66,2.67,2.67,2.68,2.69,126.52,125.51,124.84,124.18,123.55,122.94,122.28,121.63,120.15,29.35,29.080000000000002,28.92,28.73,28.55,28.37,28.18,28,27.63,N/A,N/A -2012,6,22,21,30,101070,99920,98820,56.26,0,1.2,1.25,1.23,1.22,1.21,1.19,1.18,1.17,1.1500000000000001,160.98,159.43,158.51,157.54,156.54,155.51,154.26,153.04,149.89000000000001,29.26,28.97,28.8,28.61,28.42,28.240000000000002,28.04,27.86,27.490000000000002,N/A,N/A -2012,6,22,22,30,101040,99900,98790,57.68,0,2.16,2.2600000000000002,2.25,2.23,2.22,2.2,2.18,2.17,2.13,166.8,166.06,165.54,164.95000000000002,164.31,163.64000000000001,162.76,161.88,159.24,29.13,28.830000000000002,28.66,28.47,28.29,28.1,27.91,27.73,27.37,N/A,N/A -2012,6,22,23,30,101020,99870,98770,58.26,0,1.6,1.6400000000000001,1.61,1.58,1.55,1.51,1.47,1.43,1.32,210.08,209.51,208.9,208.19,207.33,206.4,204.98000000000002,203.55,197.91,29.01,28.740000000000002,28.580000000000002,28.39,28.21,28.03,27.84,27.66,27.310000000000002,N/A,N/A -2012,6,23,0,30,101000,99860,98750,59.28,0,1.17,1.23,1.23,1.23,1.23,1.22,1.22,1.22,1.22,168.3,167.12,166.39000000000001,165.66,164.9,164.12,163.16,162.21,159.16,28.87,28.59,28.43,28.240000000000002,28.05,27.87,27.68,27.5,27.13,N/A,N/A -2012,6,23,1,30,100970,99830,98720,61.96,0,1.44,1.5,1.5,1.49,1.48,1.47,1.45,1.44,1.42,186.85,186.77,186.64000000000001,186.42000000000002,186.13,185.78,185.09,184.36,179.24,28.61,28.34,28.18,27.990000000000002,27.810000000000002,27.63,27.44,27.26,26.91,N/A,N/A -2012,6,23,2,30,100960,99820,98710,63.27,0,1.04,1.03,0.99,0.91,0.74,0.56,0.8200000000000001,1.45,1.87,241.15,240.44,239.28,237.15,222.93,205.84,175.04,117.68,105.31,28.46,28.21,28.060000000000002,27.900000000000002,27.79,27.7,27.72,27.79,27.55,N/A,N/A -2012,6,23,3,30,100970,99820,98720,62.910000000000004,0,1.95,1.96,1.8900000000000001,1.79,1.61,1.4000000000000001,1.46,1.6,1.94,311.52,313.90000000000003,315.88,318.85,328.08,340.13,7.67,41.32,51.21,28.48,28.23,28.09,27.93,27.82,27.73,27.73,27.76,27.68,N/A,N/A -2012,6,23,4,30,100970,99830,98720,63.4,0,1.34,1.36,1.34,1.32,1.37,1.49,1.75,2.09,2.47,338.62,342.06,345.05,349.53000000000003,2.25,21.2,35.78,49.64,56.86,28.5,28.25,28.11,27.95,27.88,27.86,27.830000000000002,27.8,27.69,N/A,N/A -2012,6,23,5,30,100960,99820,98710,63.92,0,1.31,1.4000000000000001,1.43,1.46,1.5,1.56,1.77,2.05,2.7800000000000002,46.72,48.27,49.13,50.29,52.01,54.17,59.160000000000004,65.45,75.52,28.490000000000002,28.22,28.07,27.900000000000002,27.73,27.580000000000002,27.47,27.38,27.37,N/A,N/A -2012,6,23,6,30,100990,99850,98740,64.45,0,1.93,2.04,2.05,2.06,2.08,2.1,2.18,2.2800000000000002,2.88,39.730000000000004,40.09,40.61,41.28,42.31,43.6,46.94,50.89,64.62,28.55,28.26,28.11,27.92,27.75,27.6,27.490000000000002,27.400000000000002,27.52,N/A,N/A -2012,6,23,7,30,100990,99850,98740,65.36,0,2.27,2.4,2.4,2.4,2.4,2.4,2.57,2.79,3.25,23.990000000000002,24.94,25.53,26.3,27.400000000000002,28.72,34.9,42.77,49.86,28.61,28.330000000000002,28.17,27.990000000000002,27.830000000000002,27.67,27.650000000000002,27.67,27.82,N/A,N/A -2012,6,23,8,30,101000,99860,98750,65.85,0,2.4,2.5300000000000002,2.54,2.5300000000000002,2.5300000000000002,2.52,2.52,2.52,2.72,11.85,12.540000000000001,12.98,13.52,14.18,14.94,16.21,17.56,27.86,28.68,28.400000000000002,28.240000000000002,28.05,27.88,27.71,27.54,27.39,27.3,N/A,N/A -2012,6,23,9,30,101010,99870,98760,67.57000000000001,0,3.25,3.45,3.47,3.47,3.46,3.46,3.45,3.44,3.42,10.33,10.57,10.73,10.9,11.09,11.3,11.59,11.88,12.99,28.63,28.34,28.18,27.990000000000002,27.810000000000002,27.63,27.45,27.27,26.95,N/A,N/A -2012,6,23,10,30,101020,99880,98770,65.72,0,4.76,5.04,5.05,5.03,5,4.97,4.92,4.87,4.75,358.51,358.42,358.37,358.32,358.29,358.27,358.3,358.35,359.42,28.34,28.04,27.88,27.7,27.52,27.35,27.18,27.02,26.79,N/A,N/A -2012,6,23,11,30,101020,99870,98770,69.34,0,5.15,5.4,5.4,5.36,5.33,5.29,5.3,5.32,5.38,4.71,5.0600000000000005,5.3100000000000005,5.61,6.0600000000000005,6.59,8.23,10.07,18.79,27.63,27.3,27.14,26.97,26.82,26.68,26.67,26.69,27.36,N/A,N/A -2012,6,23,12,30,101060,99910,98800,72.10000000000001,0,5.0600000000000005,5.34,5.37,5.37,5.3500000000000005,5.33,5.3100000000000005,5.29,5.29,23.79,24.2,24.46,24.76,25.1,25.46,25.96,26.46,28.86,27.48,27.13,26.96,26.78,26.59,26.42,26.240000000000002,26.07,25.810000000000002,N/A,N/A -2012,6,23,13,30,101080,99940,98830,75.61,0,5.47,5.75,5.76,5.73,5.7,5.66,5.6000000000000005,5.55,5.4,19.42,20.150000000000002,20.53,20.96,21.46,22.01,22.86,23.72,28.900000000000002,27.28,26.92,26.740000000000002,26.560000000000002,26.38,26.2,26.02,25.86,25.66,N/A,N/A -2012,6,23,14,30,101080,99930,98820,78.53,0,5.39,5.7,5.73,5.72,5.71,5.69,5.68,5.67,5.86,32.12,32.84,33.26,33.72,34.26,34.84,35.75,36.68,44.2,27.47,27.12,26.95,26.76,26.580000000000002,26.41,26.240000000000002,26.09,26.14,N/A,N/A -2012,6,23,15,30,101110,99960,98850,83,0,5.33,5.69,5.76,5.79,5.8100000000000005,5.83,5.8500000000000005,5.87,5.96,47.7,48.35,48.7,49.09,49.480000000000004,49.88,50.410000000000004,50.93,52.660000000000004,27.8,27.45,27.27,27.080000000000002,26.89,26.71,26.52,26.34,25.98,N/A,N/A -2012,6,23,16,30,101130,99990,98890,83.21000000000001,0,5.5200000000000005,5.97,6.05,6.11,6.140000000000001,6.17,6.19,6.21,6.24,56.33,56.64,56.83,57,57.160000000000004,57.32,57.47,57.61,57.94,28.28,27.93,27.76,27.560000000000002,27.37,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A -2012,6,23,17,30,101130,99990,98880,82.76,0,6.2700000000000005,6.79,6.9,6.96,7,7.03,7.0600000000000005,7.08,7.11,69.73,69.9,69.89,69.88,69.87,69.85000000000001,69.83,69.81,69.76,28.41,28.080000000000002,27.91,27.71,27.53,27.34,27.150000000000002,26.97,26.61,N/A,N/A -2012,6,23,18,30,101140,100000,98900,79.10000000000001,0,5.3100000000000005,5.7700000000000005,5.87,5.94,6,6.05,6.1000000000000005,6.15,6.2700000000000005,98.63,98.23,98.01,97.77,97.52,97.27,96.97,96.68,95.92,28.59,28.27,28.1,27.91,27.73,27.55,27.36,27.19,26.84,N/A,N/A -2012,6,23,19,30,101100,99960,98850,79.49,0,5.69,6.13,6.22,6.26,6.29,6.3100000000000005,6.32,6.33,6.36,105.96000000000001,105.62,105.42,105.19,104.97,104.74000000000001,104.46000000000001,104.18,103.41,28.580000000000002,28.25,28.080000000000002,27.89,27.71,27.53,27.34,27.16,26.810000000000002,N/A,N/A -2012,6,23,20,30,101080,99940,98840,77.95,0,4.88,5.25,5.32,5.3500000000000005,5.37,5.39,5.4,5.41,5.44,114.04,113.7,113.51,113.3,113.09,112.88,112.63,112.38,111.74000000000001,28.71,28.39,28.23,28.04,27.85,27.67,27.48,27.3,26.94,N/A,N/A -2012,6,23,21,30,101050,99910,98800,79,0,4.65,5,5.0600000000000005,5.09,5.11,5.12,5.13,5.14,5.15,125.32000000000001,124.96000000000001,124.76,124.56,124.34,124.12,123.87,123.63000000000001,122.97,28.68,28.36,28.19,27.990000000000002,27.810000000000002,27.62,27.43,27.25,26.88,N/A,N/A -2012,6,23,22,30,101060,99910,98810,80.24,0,6.22,6.76,6.86,6.91,6.94,6.96,6.96,6.97,6.97,121.63,121.39,121.25,121.11,120.98,120.85000000000001,120.71000000000001,120.57000000000001,120.26,28.66,28.35,28.18,27.990000000000002,27.8,27.62,27.43,27.240000000000002,26.87,N/A,N/A -2012,6,23,23,30,101080,99940,98840,79.69,0,4.45,4.8,4.87,4.9,4.92,4.93,4.94,4.95,4.96,122.37,122.25,122.19,122.09,121.98,121.85000000000001,121.69,121.52,121.05,28.6,28.3,28.14,27.95,27.76,27.580000000000002,27.39,27.21,26.84,N/A,N/A -2012,6,24,0,30,101070,99930,98830,80.99,0,4.8100000000000005,5.18,5.25,5.28,5.3,5.3100000000000005,5.32,5.32,5.33,122.42,122.56,122.51,122.44,122.36,122.27,122.16,122.05,121.74000000000001,28.51,28.2,28.04,27.85,27.66,27.47,27.28,27.1,26.73,N/A,N/A -2012,6,24,1,30,101090,99940,98840,79.78,0,2.58,2.79,2.83,2.86,2.88,2.91,2.92,2.94,2.98,108.96000000000001,109.24000000000001,109.3,109.34,109.37,109.39,109.41,109.42,109.44,28.48,28.18,28.01,27.82,27.63,27.44,27.25,27.07,26.69,N/A,N/A -2012,6,24,2,30,101100,99950,98850,80.31,0,3.19,3.4,3.43,3.45,3.46,3.48,3.49,3.5100000000000002,3.5500000000000003,114.25,113.74000000000001,113.55,113.35000000000001,113.15,112.95,112.75,112.55,112.10000000000001,28.44,28.13,27.97,27.77,27.59,27.400000000000002,27.21,27.03,26.67,N/A,N/A -2012,6,24,3,30,101090,99950,98840,80.36,0,2.56,2.71,2.74,2.7600000000000002,2.77,2.79,2.81,2.83,2.89,123.08,122.94,122.8,122.64,122.48,122.34,122.17,122.01,121.64,28.41,28.1,27.93,27.740000000000002,27.55,27.37,27.18,27,26.64,N/A,N/A -2012,6,24,4,30,101080,99940,98840,77.94,0,3,3.14,3.15,3.13,3.11,3.09,3.06,3.04,2.98,136.3,136.03,135.77,135.51,135.23,134.93,134.56,134.21,133.15,28.51,28.21,28.04,27.85,27.67,27.48,27.29,27.11,26.75,N/A,N/A -2012,6,24,5,30,101110,99960,98860,79.4,0,1.72,1.8,1.8,1.8,1.79,1.79,1.78,1.77,1.75,137.93,137.58,137.31,137.02,136.72,136.41,136.02,135.63,134.47,28.330000000000002,28.01,27.84,27.650000000000002,27.46,27.28,27.080000000000002,26.900000000000002,26.53,N/A,N/A -2012,6,24,6,30,101120,99980,98870,79.28,0,2.09,2.19,2.19,2.19,2.18,2.18,2.17,2.16,2.15,156.48,156.22,156,155.76,155.5,155.22,154.83,154.43,153.06,28.29,27.98,27.810000000000002,27.62,27.43,27.25,27.060000000000002,26.88,26.51,N/A,N/A -2012,6,24,7,30,101170,100020,98920,79.35000000000001,0,1.26,1.3,1.3,1.29,1.28,1.28,1.26,1.25,1.23,179.36,179.21,179,178.77,178.53,178.29,177.98,177.69,177.06,28.26,27.95,27.78,27.59,27.400000000000002,27.21,27.02,26.84,26.46,N/A,N/A -2012,6,24,8,30,101160,100020,98910,79.77,0,1.25,1.29,1.28,1.27,1.26,1.25,1.23,1.21,1.1400000000000001,247.84,248.28,248.47,248.67000000000002,248.84,249.01000000000002,249.22,249.42000000000002,249.76000000000002,28.19,27.88,27.71,27.52,27.330000000000002,27.150000000000002,26.96,26.78,26.41,N/A,N/A -2012,6,24,9,30,101180,100030,98930,80.61,0,1.95,2.02,2.02,2.0100000000000002,1.99,1.97,1.95,1.92,1.81,288.39,288.88,289.16,289.48,289.84000000000003,290.23,290.82,291.44,294.81,28.17,27.86,27.69,27.5,27.310000000000002,27.13,26.94,26.76,26.42,N/A,N/A -2012,6,24,10,30,101200,100060,98950,81.79,0,2.19,2.27,2.27,2.2600000000000002,2.25,2.23,2.21,2.19,2.1,293.67,294.23,294.5,294.81,295.15000000000003,295.52,296.04,296.57,298.72,28.150000000000002,27.830000000000002,27.66,27.47,27.28,27.1,26.91,26.73,26.37,N/A,N/A -2012,6,24,11,30,101220,100070,98960,83.07000000000001,0,2.48,2.59,2.6,2.6,2.59,2.58,2.57,2.56,2.54,319.16,319.71,319.95,320.22,320.51,320.81,321.2,321.6,323.06,28.11,27.79,27.62,27.43,27.25,27.060000000000002,26.87,26.69,26.32,N/A,N/A -2012,6,24,12,30,101240,100100,98990,86.52,0,3.14,3.3200000000000003,3.35,3.36,3.37,3.37,3.37,3.37,3.37,331.29,331.84000000000003,332.15000000000003,332.48,332.81,333.15000000000003,333.58,334,335.26,28,27.67,27.5,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.19,N/A,N/A -2012,6,24,13,30,101280,100140,99030,87.97,0,3.81,4.0200000000000005,4.05,4.05,4.05,4.04,4.04,4.03,4.04,333.37,333.75,334.04,334.35,334.68,335.02,335.43,335.84000000000003,337.16,28,27.67,27.5,27.3,27.12,26.93,26.740000000000002,26.560000000000002,26.21,N/A,N/A -2012,6,24,14,30,101290,100150,99040,83.76,0,4.4,4.75,4.82,4.87,4.9,4.92,4.94,4.96,5.01,344.55,344.67,344.72,344.77,344.82,344.88,344.95,345.03000000000003,345.23,28.5,28.19,28.02,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.72,N/A,N/A -2012,6,24,15,30,101280,100140,99030,80.57000000000001,0,4.5,4.87,4.94,4.98,5.0200000000000005,5.04,5.08,5.11,5.22,336.85,337.15000000000003,337.33,337.52,337.71,337.89,338.1,338.32,338.97,28.900000000000002,28.61,28.44,28.25,28.07,27.89,27.7,27.52,27.16,N/A,N/A -2012,6,24,16,30,101270,100130,99030,77.49,0,4.8100000000000005,5.23,5.3100000000000005,5.3500000000000005,5.38,5.41,5.44,5.47,5.58,331.79,332.68,333.26,333.91,334.55,335.21,336,336.79,339.13,29.55,29.310000000000002,29.16,28.98,28.810000000000002,28.64,28.46,28.3,27.97,N/A,N/A -2012,6,24,17,30,101230,100100,99000,77.33,0,3.64,3.9,4.14,4.72,5.09,5.26,5.43,5.59,5.86,321.82,323.27,325.56,330.33,333.66,335.71,337.85,339.98,343.91,29.93,29.73,29.68,29.72,29.69,29.61,29.52,29.42,29.21,N/A,N/A -2012,6,24,18,30,101200,100070,98970,77.15,0,2.48,3.13,3.45,3.72,3.92,4.05,4.11,4.13,4.12,300.85,310.16,315.27,318.83,322.15000000000003,325.38,328.57,331.59000000000003,337.43,30.43,30.59,30.66,30.66,30.62,30.55,30.44,30.32,30.060000000000002,N/A,N/A -2012,6,24,19,30,101160,100030,98930,73.66,0,1.9100000000000001,2.4,2.63,2.84,2.96,3.02,3.0100000000000002,2.98,2.83,292.7,301.64,306.82,311.58,315.32,318.28000000000003,320.81,322.98,326.67,31.01,31.240000000000002,31.32,31.29,31.2,31.060000000000002,30.91,30.75,30.42,N/A,N/A -2012,6,24,20,30,101110,99980,98880,70,0,1.94,1.69,1.48,1.24,1.08,0.97,0.89,0.84,0.79,191.48000000000002,195.24,198.33,202.54,206.34,210.03,215.12,220.45000000000002,234.77,31.46,31.71,31.78,31.71,31.6,31.48,31.330000000000002,31.19,30.88,N/A,N/A -2012,6,24,21,30,101090,99960,98870,69.43,0,2.79,2.7,2.43,2,1.74,1.57,1.41,1.28,1.05,176.20000000000002,174.78,171.99,166.5,164.55,164.75,167.75,171.58,186.65,31.470000000000002,31.34,31.36,31.53,31.55,31.45,31.32,31.19,30.900000000000002,N/A,N/A -2012,6,24,22,30,101030,99910,98810,69.84,0,3.5100000000000002,3.43,3.14,2.63,2.31,2.09,1.86,1.6600000000000001,1.2,174.46,171.94,168.75,163.13,162.3,164.73,167.12,169.22,174,31.48,31.45,31.54,31.830000000000002,31.92,31.84,31.740000000000002,31.64,31.43,N/A,N/A -2012,6,24,23,30,100990,99860,98770,75.55,0,3.74,3.67,3.39,2.9,2.48,2.09,1.76,1.49,0.99,201.5,198.67000000000002,195.94,191.46,187.82,184.70000000000002,183.61,183.45000000000002,192,30.96,31.07,31.2,31.46,31.67,31.87,31.91,31.86,31.66,N/A,N/A -2012,6,25,0,30,100980,99850,98760,77.59,0,3.66,4.2,4.01,3.27,2.7600000000000002,2.37,2.0100000000000002,1.71,1.22,206.94,204.68,201.67000000000002,196.71,194.5,193.99,196.53,199.9,216.28,30.57,30.85,31.060000000000002,31.400000000000002,31.63,31.79,31.86,31.87,31.740000000000002,N/A,N/A -2012,6,25,1,30,100970,99840,98750,87.06,0,5.18,5.93,6.05,5.87,5.55,5.13,4.68,4.26,3.49,242.57,242.27,241.13,238.44,235.91,233.46,232.05,231.26,232.43,29.54,29.5,29.580000000000002,29.830000000000002,30.05,30.26,30.55,30.87,31.05,N/A,N/A -2012,6,25,2,30,100990,99860,98760,91.16,0,5.26,6.11,6.2700000000000005,6.12,5.84,5.46,5.08,4.73,4.14,258.9,258.78000000000003,258.26,257.07,257.08,258.04,260.16,262.62,270.76,28.96,28.89,29.02,29.400000000000002,29.72,30.02,30.21,30.36,30.59,N/A,N/A -2012,6,25,3,30,101010,99870,98780,90.53,0,5.44,6.22,6.45,6.55,6.41,6.07,5.78,5.53,5.18,268.6,268.14,268.39,269.6,271.93,275.13,279.24,283.42,293.31,28.810000000000002,28.67,28.810000000000002,29.3,29.64,29.89,30.060000000000002,30.19,30.32,N/A,N/A -2012,6,25,4,30,101000,99870,98770,80.39,0,5.36,6.11,6.44,6.91,7.08,7.01,6.88,6.72,6.41,275.02,275.14,275.49,276.41,280.14,286.2,289.84000000000003,292.16,297.22,29.45,29.42,29.52,29.810000000000002,30.240000000000002,30.79,30.92,30.85,30.63,N/A,N/A -2012,6,25,5,30,100990,99850,98760,78.02,0,5.68,6.45,6.7700000000000005,7.21,7.6000000000000005,7.97,7.87,7.59,7.07,282.73,282.98,283.34000000000003,284.13,286.07,289.02,291.39,293.28000000000003,297.95,29.53,29.48,29.52,29.68,30.080000000000002,30.67,30.84,30.82,30.72,N/A,N/A -2012,6,25,6,30,101010,99880,98780,78.68,0,5.69,6.68,7.11,7.55,7.79,7.86,7.76,7.58,7.19,285.44,286.05,286.6,287.47,289.15000000000003,291.54,294.15000000000003,296.68,301.1,29.42,29.44,29.57,29.900000000000002,30.16,30.39,30.55,30.68,30.650000000000002,N/A,N/A -2012,6,25,7,30,101000,99870,98770,78.29,0,6.22,6.91,7.32,8.09,8.58,8.81,8.73,8.53,8.120000000000001,290.67,290.78000000000003,290.86,291.02,292,293.66,295.74,297.84000000000003,301.23,29.29,29.18,29.23,29.45,29.78,30.21,30.400000000000002,30.490000000000002,30.34,N/A,N/A -2012,6,25,8,30,101020,99890,98790,79.09,0,6.57,7.12,7.37,7.86,8.44,9.11,9.35,9.38,8.84,289.55,289.88,290.22,290.85,291.53000000000003,292.29,293.98,295.93,298.25,29.14,28.93,28.84,28.79,28.92,29.2,29.61,30.060000000000002,30.13,N/A,N/A -2012,6,25,9,30,101010,99870,98780,78.58,0,6.69,7.26,7.5600000000000005,8.18,8.72,9.21,9.290000000000001,9.200000000000001,8.75,295.78000000000003,296.2,296.69,297.65000000000003,298.63,299.68,301.49,303.46,305.18,29.080000000000002,28.86,28.79,28.78,29.02,29.44,29.82,30.16,30.080000000000002,N/A,N/A -2012,6,25,10,30,101020,99880,98790,79.24,0,6.55,7.0600000000000005,7.3500000000000005,7.99,8.55,9.08,9.24,9.23,8.870000000000001,301.98,302.33,302.76,303.67,304.87,306.34000000000003,308.18,310.05,312.24,29.01,28.79,28.72,28.71,28.98,29.46,29.84,30.150000000000002,30.150000000000002,N/A,N/A -2012,6,25,11,30,101040,99900,98810,80.34,0,6.390000000000001,6.890000000000001,7.03,7.23,7.72,8.46,8.91,9.200000000000001,9.31,313.27,313.78000000000003,314.26,315.07,316.65000000000003,318.95,320.88,322.51,325.39,28.85,28.580000000000002,28.45,28.32,28.34,28.48,28.73,29.03,29.310000000000002,N/A,N/A -2012,6,25,12,30,101060,99920,98820,84.24,0,6.55,7.03,7.1000000000000005,7.13,7.28,7.5200000000000005,8.01,8.6,9.3,319.71,320.21,320.59000000000003,321.1,322.04,323.36,324.26,324.95,325.09000000000003,28.71,28.43,28.28,28.12,28.02,27.96,28.150000000000002,28.44,29.32,N/A,N/A -2012,6,25,13,30,101060,99920,98820,76.25,0,6.5200000000000005,7.07,7.15,7.2,7.28,7.37,7.8500000000000005,8.48,9.08,321.74,321.88,322.01,322.18,322.41,322.69,323.56,324.64,327.45,29.16,28.91,28.77,28.61,28.46,28.330000000000002,28.35,28.44,29.23,N/A,N/A -2012,6,25,14,30,101070,99930,98830,70.9,0,6.5600000000000005,7.13,7.22,7.2700000000000005,7.32,7.37,7.54,7.76,8.370000000000001,331.05,331.07,331.06,331.04,331.02,330.98,330.93,330.89,331.08,29.54,29.34,29.21,29.05,28.91,28.76,28.66,28.59,28.7,N/A,N/A -2012,6,25,15,30,101060,99920,98820,67.65,0,6.37,6.91,7.01,7.08,7.21,7.38,7.6000000000000005,7.82,8.14,331.48,331.55,331.63,331.73,331.96,332.27,333.01,333.86,336.76,29.85,29.69,29.580000000000002,29.45,29.35,29.27,29.22,29.2,29.400000000000002,N/A,N/A -2012,6,25,16,30,101050,99920,98820,67.11,0,5.0600000000000005,5.92,6.26,6.5600000000000005,6.78,6.94,7.0600000000000005,7.16,7.33,325.18,327.07,328.41,330.04,331.76,333.6,335.47,337.24,341.05,30.22,30.3,30.330000000000002,30.330000000000002,30.3,30.25,30.19,30.11,30.04,N/A,N/A -2012,6,25,17,30,101010,99870,98780,59.18,0,4.72,5.49,5.8,6.15,6.43,6.67,6.73,6.71,6.54,318.38,319.95,321.22,322.91,324.74,326.71,329.19,331.68,334.97,31.34,31.46,31.48,31.48,31.45,31.41,31.310000000000002,31.19,30.830000000000002,N/A,N/A -2012,6,25,18,30,100930,99800,98710,58.22,0,4.91,5.66,5.91,6.13,6.34,6.54,6.6000000000000005,6.6000000000000005,6.62,297.51,300.33,302.90000000000003,306.94,311.09000000000003,315.48,317.36,318.04,321.43,31.79,32.01,32.08,32.15,32.15,32.09,31.92,31.73,31.44,N/A,N/A -2012,6,25,19,30,100880,99750,98670,57.76,0,4.84,5.98,6.3500000000000005,6.57,6.73,6.84,6.91,6.96,7.1000000000000005,289.37,294.08,297.29,301.09000000000003,304.48,307.67,309.27,310.13,313.11,32.39,32.87,32.99,32.980000000000004,32.89,32.74,32.56,32.37,32.05,N/A,N/A -2012,6,25,20,30,100810,99690,98610,59.96,0,4.67,6.09,6.59,6.88,7.07,7.17,7.2,7.21,7.21,293.97,299.29,302.61,305.86,308.41,310.42,311.86,312.96,315.55,32.78,33.45,33.63,33.6,33.51,33.37,33.2,33.03,32.74,N/A,N/A -2012,6,25,21,30,100750,99630,98550,67.36,0,2.5,4.37,5.33,5.9,6.26,6.43,6.53,6.58,6.66,271.85,289.77,300.01,304.34000000000003,307.42,309.42,311.2,312.79,315.86,32.42,33.31,33.67,33.9,33.980000000000004,33.94,33.83,33.68,33.37,N/A,N/A -2012,6,25,22,30,100700,99580,98500,64.17,0,3.33,5.22,5.97,6.22,6.38,6.47,6.5600000000000005,6.640000000000001,6.76,299.84000000000003,307.81,312.1,314.49,316.23,317.5,318.75,319.94,322.34000000000003,33.05,34.4,34.83,34.84,34.77,34.62,34.47,34.33,34.04,N/A,N/A -2012,6,25,23,30,100670,99560,98480,62.300000000000004,0,4.13,5.98,6.51,6.55,6.6000000000000005,6.66,6.76,6.88,6.99,303.41,311.77,315.61,316.54,317.39,318.24,319.62,321.3,325.01,33.6,35.32,35.78,35.63,35.45,35.25,35.06,34.89,34.58,N/A,N/A -2012,6,26,0,30,100650,99540,98460,61.84,0,5.09,6.47,6.6000000000000005,6.2,5.9,5.65,5.42,5.22,5.01,313.05,321.01,325.69,329.86,331.98,332.65000000000003,333.57,334.58,338.46,33.46,35.230000000000004,35.76,35.730000000000004,35.65,35.550000000000004,35.43,35.32,35.06,N/A,N/A -2012,6,26,1,30,100680,99550,98470,82.81,0,4.9,5.68,5.58,4.92,4.91,5.39,6,6.7,8.03,261.03000000000003,266.91,279.92,306.23,321.6,331.58,338.5,343.73,350.22,30.21,30.67,31.19,32.11,32.7,33.03,33.3,33.53,33.88,N/A,N/A -2012,6,26,2,30,100670,99550,98470,74.76,0,2.13,4.2700000000000005,5.41,6.66,7.67,8.44,8.950000000000001,9.290000000000001,9.5,312.39,342.03000000000003,357.36,2.35,5.94,8.14,9.57,10.55,10.81,31.86,33.02,33.480000000000004,33.94,34.37,34.800000000000004,35.07,35.26,35.15,N/A,N/A -2012,6,26,3,30,100680,99560,98490,70.63,0,3.1,5.84,7.13,8.02,8.55,8.76,8.8,8.76,8.61,356.85,7.42,13.24,16.080000000000002,17.6,17.92,17.31,16.28,14.47,31.53,33.44,34.28,34.95,35.34,35.5,35.52,35.480000000000004,35.08,N/A,N/A -2012,6,26,4,30,100670,99540,98470,71.25,0,3.65,3.88,4.03,4.63,5.25,5.89,6.45,6.95,7.2700000000000005,292.14,335.26,352.15000000000003,0.29,6.16,10.43,13.49,15.85,16.84,30.92,31.77,32.21,32.71,33.24,33.78,34.26,34.69,34.75,N/A,N/A -2012,6,26,5,30,100670,99540,98460,74.52,0,2.21,2.73,2.97,3.42,3.87,4.3100000000000005,4.7,5.0600000000000005,5.48,302.37,325.21,337.6,348.7,356.92,2.87,6.92,9.92,13.120000000000001,30.400000000000002,31.34,31.900000000000002,32.56,33.14,33.67,34.05,34.34,34.49,N/A,N/A -2012,6,26,6,30,100670,99540,98460,72.88,0,2.37,1.84,1.6600000000000001,1.6400000000000001,1.79,2.11,2.49,2.93,3.74,281.12,297.83,309.93,328.22,342.05,354.66,2.48,8.2,13.700000000000001,30.22,31.060000000000002,31.44,31.67,31.91,32.17,32.45,32.72,33.12,N/A,N/A -2012,6,26,7,30,100690,99560,98470,80.39,0,3.79,3.9,3.83,3.73,3.68,3.66,3.73,3.8200000000000003,4.16,298.91,308.66,314.31,320.36,326.36,332.56,339.05,345.43,357.19,29.66,30.310000000000002,30.6,30.76,30.900000000000002,31,31.16,31.330000000000002,31.720000000000002,N/A,N/A -2012,6,26,8,30,100690,99560,98470,78.7,0,3.54,4.0600000000000005,4.25,4.41,4.42,4.32,4.25,4.19,4.3,305.65000000000003,306.17,307.41,310.09000000000003,312.98,315.99,320.03000000000003,324.21,333.84000000000003,29.7,29.78,29.900000000000002,30.09,30.26,30.400000000000002,30.580000000000002,30.77,31.080000000000002,N/A,N/A -2012,6,26,9,30,100690,99560,98470,78.18,0,3.54,4.12,4.32,4.43,4.46,4.42,4.39,4.37,4.32,308.24,311.05,313.49,317,320.54,324.1,328.16,332.15000000000003,340.09000000000003,29.650000000000002,29.87,30.060000000000002,30.310000000000002,30.6,30.91,31.220000000000002,31.5,31.79,N/A,N/A -2012,6,26,10,30,100690,99560,98470,77.76,0,3.92,4.09,4.21,4.53,4.8,5.0200000000000005,5.03,4.95,4.5600000000000005,327.36,327.57,328.46,330.59000000000003,333.01,335.71,338.05,340.04,341.66,29.61,29.43,29.48,29.73,30.16,30.72,31.19,31.580000000000002,32.02,N/A,N/A -2012,6,26,11,30,100730,99590,98500,78.12,0,3.79,4,4.0600000000000005,4.18,4.32,4.48,4.51,4.49,4.38,335.82,335.79,335.64,335.31,336.36,338.44,342.04,345.97,352.81,29.54,29.32,29.23,29.150000000000002,29.35,29.740000000000002,30.25,30.79,31.51,N/A,N/A -2012,6,26,12,30,100750,99620,98530,77.59,0,2.81,2.95,2.96,2.96,3.0300000000000002,3.15,3.23,3.2800000000000002,3.29,348.82,348.85,348.84000000000003,348.83,349.82,351.55,355.69,0.52,8.52,29.37,29.11,28.98,28.84,28.89,29.07,29.53,30.07,30.82,N/A,N/A -2012,6,26,13,30,100780,99650,98550,71.43,0,3.67,3.8000000000000003,3.7600000000000002,3.7,3.64,3.56,3.47,3.39,3.44,351.79,352.12,352.47,353.06,353.91,354.96,357,359.23,6.16,29.35,29.11,29.02,28.96,29.2,29.68,30.09,30.46,31.02,N/A,N/A -2012,6,26,14,30,100800,99670,98570,72.96000000000001,0,3.2,3.34,3.33,3.34,3.4,3.49,3.42,3.3000000000000003,3.29,2.2600000000000002,2.33,2.5,2.79,3.8200000000000003,5.42,7.86,10.33,13.82,29.330000000000002,29.09,29.02,29.02,29.400000000000002,30.060000000000002,30.42,30.650000000000002,30.87,N/A,N/A -2012,6,26,15,30,100810,99680,98590,69.10000000000001,0,2.5100000000000002,2.68,2.8000000000000003,3.06,3.16,3.14,3.15,3.18,3.2,341.78000000000003,342.40000000000003,344.55,349.63,354.52,359.08,2.69,5.73,13.34,29.91,29.82,30.03,30.6,30.96,31.17,31.35,31.490000000000002,31.76,N/A,N/A -2012,6,26,16,30,100800,99670,98580,65.76,0,1.97,2.05,2.16,2.47,2.68,2.81,2.91,3,3.22,356.17,356.87,358.95,3.93,8.67,13.120000000000001,17.18,20.86,25.97,30.490000000000002,30.310000000000002,30.44,30.87,31.150000000000002,31.34,31.43,31.48,31.57,N/A,N/A -2012,6,26,17,30,100800,99670,98580,63.22,0,0.65,0.73,0.88,1.35,1.75,2.04,2.29,2.52,2.88,48.46,42.08,38.730000000000004,34.52,31.400000000000002,29.92,29.16,28.77,28.63,30.94,30.84,31.01,31.580000000000002,31.88,32.01,32.06,32.07,32.06,N/A,N/A -2012,6,26,18,30,100760,99640,98550,61.9,0,1.93,1.92,1.92,2.0300000000000002,2.1,2.15,2.17,2.19,2.12,133.86,126.56,118.57000000000001,104.46000000000001,94.51,87.49,81.86,77.12,69.53,31.3,31.41,31.69,32.27,32.55,32.64,32.660000000000004,32.64,32.56,N/A,N/A -2012,6,26,19,30,100760,99630,98540,66.35,0,3.31,3.4,3.38,3.4,3.31,3.14,2.92,2.69,2.44,155.62,153.99,150.39000000000001,141.81,135.95,132.13,130.98,131.08,134.27,31.220000000000002,31.04,31.13,31.54,31.91,32.26,32.4,32.44,32.39,N/A,N/A -2012,6,26,20,30,100710,99590,98500,66.33,0,3.81,3.98,3.95,3.93,3.7600000000000002,3.47,3.3200000000000003,3.24,3.17,158.39000000000001,157.52,155.75,151.57,149.68,149.53,150.92000000000002,152.85,154.66,31.45,31.29,31.38,31.8,32.160000000000004,32.5,32.57,32.52,32.39,N/A,N/A -2012,6,26,21,30,100680,99550,98470,66.51,0,4.49,4.68,4.63,4.55,4.37,4.11,3.93,3.79,3.52,167.48,167.16,166.72,165.82,164.53,162.95000000000002,163.75,165.41,168.04,31.57,31.41,31.41,31.55,31.87,32.33,32.47,32.46,32.34,N/A,N/A -2012,6,26,22,30,100670,99540,98460,69.67,0,4,4.3100000000000005,4.34,4.32,4.18,3.96,3.7800000000000002,3.65,3.42,178.95000000000002,178.44,177.69,176.04,175.15,174.85,175.86,177.38,180.24,31.310000000000002,31.29,31.39,31.7,32.04,32.42,32.56,32.57,32.46,N/A,N/A -2012,6,26,23,30,100610,99480,98400,73.13,0,5.19,5.91,6.0200000000000005,5.98,5.7700000000000005,5.48,5.28,5.12,4.86,173.86,173.88,173.16,171.57,170.67000000000002,170.23,171.03,172.23,174.89000000000001,30.970000000000002,31.12,31.400000000000002,31.96,32.37,32.69,32.76,32.730000000000004,32.63,N/A,N/A -2012,6,27,0,30,100670,99540,98450,76.12,0,4.58,5.38,5.62,5.68,5.57,5.2700000000000005,5.0600000000000005,4.9,4.74,194.12,194.16,193.52,191.57,190.1,188.99,189.67000000000002,191.31,195.44,30.57,30.67,30.93,31.68,32.19,32.52,32.64,32.63,32.54,N/A,N/A -2012,6,27,1,30,100740,99610,98520,81.34,0,8.22,9.27,9.540000000000001,9.75,9.89,9.98,10.01,9.99,9.83,260.79,261.33,261.31,261.23,261.04,260.75,260.19,259.5,257.53000000000003,30.04,29.86,29.740000000000002,29.59,29.44,29.29,29.13,28.98,28.76,N/A,N/A -2012,6,27,2,30,100700,99570,98480,73.45,0,4.2,5.22,5.73,6.22,6.59,6.84,6.92,6.92,6.87,259.05,259.72,260.27,260.79,261.34000000000003,261.92,262.77,263.68,265.05,30,30.38,30.63,30.92,31.09,31.17,31.16,31.11,30.93,N/A,N/A -2012,6,27,3,30,100740,99610,98520,75.08,0,3.06,3.89,4.33,4.74,5.05,5.28,5.43,5.5200000000000005,5.33,243.55,244.65,245.17000000000002,245,244.81,244.58,244.98000000000002,245.70000000000002,248.88,30.09,30.990000000000002,31.470000000000002,31.85,32.07,32.15,32.17,32.160000000000004,32.03,N/A,N/A -2012,6,27,4,30,100750,99620,98530,83.22,0,1.51,1.99,2.22,2.41,2.57,2.71,2.88,3.0500000000000003,3.46,276.98,272.88,269.23,263.88,258.14,251.95000000000002,246.62,241.8,236.66,29.560000000000002,30.19,30.52,30.79,31.07,31.35,31.61,31.86,32.08,N/A,N/A -2012,6,27,5,30,100760,99630,98540,80.79,0,1.1300000000000001,1.53,1.73,1.86,1.95,2.0100000000000002,2.14,2.2800000000000002,2.5100000000000002,237.24,241.8,243.09,240.95000000000002,237.5,232.77,228.43,224.3,221.44,29.71,30.490000000000002,30.85,31.04,31.17,31.25,31.42,31.61,31.84,N/A,N/A -2012,6,27,6,30,100800,99670,98580,82.43,0,0.75,1.07,1.28,1.52,1.7,1.83,1.9100000000000001,1.96,2,254.43,248.07,245.52,247.14000000000001,247.99,248.08,247.22,245.9,241.98000000000002,29.69,30.330000000000002,30.68,30.96,31.1,31.150000000000002,31.17,31.19,31.18,N/A,N/A -2012,6,27,7,30,100820,99690,98600,75.7,0,1.3800000000000001,1.68,1.76,1.73,1.69,1.6400000000000001,1.6400000000000001,1.67,1.81,180.69,192.75,200.81,209.25,216.12,222.02,226.82,230.97,237.16,30.21,31.12,31.51,31.67,31.740000000000002,31.76,31.77,31.76,31.720000000000002,N/A,N/A -2012,6,27,8,30,100860,99730,98640,80.07000000000001,0,1.3900000000000001,1.72,1.84,1.85,1.77,1.62,1.46,1.31,1.1400000000000001,166.09,174.64000000000001,180.47,187.39000000000001,193.62,199.17000000000002,206.37,213.41,231.46,29.98,30.580000000000002,30.88,31.04,31.14,31.19,31.21,31.23,31.16,N/A,N/A -2012,6,27,9,30,100910,99770,98680,76.39,0,1.55,1.58,1.61,1.73,1.8,1.82,1.74,1.6300000000000001,1.31,177.03,176.65,178.37,183.37,188.12,192.72,197.64000000000001,202.17000000000002,213.46,30.13,29.91,29.88,30,30.12,30.240000000000002,30.310000000000002,30.36,30.32,N/A,N/A -2012,6,27,10,30,100950,99810,98720,78.58,0,1.32,1.3800000000000001,1.37,1.36,1.3900000000000001,1.46,1.45,1.3900000000000001,1.1500000000000001,168.35,169.19,169.82,170.82,173.99,179.21,184.9,190.26,200.92000000000002,29.900000000000002,29.66,29.53,29.39,29.39,29.5,29.6,29.67,29.7,N/A,N/A -2012,6,27,11,30,100980,99850,98750,78.53,0,0.9500000000000001,0.99,0.98,0.96,0.98,1.02,0.97,0.89,0.62,198.38,198.47,198.8,199.39000000000001,201.97,206.47,212.43,218.21,236.91,29.8,29.54,29.400000000000002,29.23,29.2,29.26,29.330000000000002,29.41,29.45,N/A,N/A -2012,6,27,12,30,101060,99930,98830,76.56,0,1.28,1.35,1.35,1.34,1.33,1.33,1.29,1.23,1.06,152.9,152.68,152.74,152.81,152.87,152.9,152.42000000000002,151.74,138.6,29.86,29.6,29.46,29.29,29.13,28.990000000000002,28.94,28.93,29,N/A,N/A -2012,6,27,13,30,101110,99970,98870,76.16,0,2,2.13,2.14,2.14,2.15,2.15,2.15,2.15,2.18,147.28,147.35,147.35,147.34,147.33,147.31,147.27,147.20000000000002,146.74,29.86,29.59,29.44,29.26,29.09,28.92,28.75,28.59,28.330000000000002,N/A,N/A -2012,6,27,14,30,101180,100040,98940,76.38,0,2.04,2.19,2.21,2.22,2.23,2.25,2.2600000000000002,2.2800000000000002,2.34,151.63,151.4,151.21,151.02,150.81,150.6,150.33,150.03,149.22,29.88,29.6,29.43,29.240000000000002,29.060000000000002,28.88,28.69,28.51,28.16,N/A,N/A -2012,6,27,15,30,101220,100080,98980,69.72,0,2.45,2.62,2.65,2.67,2.69,2.71,2.74,2.7800000000000002,2.94,152.75,152.68,152.62,152.53,152.42000000000002,152.28,152.04,151.77,150.31,30.26,29.990000000000002,29.830000000000002,29.650000000000002,29.47,29.3,29.13,28.96,28.68,N/A,N/A -2012,6,27,16,30,101260,100120,99020,71.41,0,2.7,2.88,2.91,2.92,2.94,2.95,2.96,2.97,2.99,165.53,165.09,164.83,164.55,164.27,163.98,163.64000000000001,163.28,162.36,30.22,29.92,29.76,29.57,29.39,29.2,29.02,28.84,28.48,N/A,N/A -2012,6,27,17,30,101280,100140,99040,70.83,0,2.39,2.5300000000000002,2.56,2.58,2.6,2.61,2.63,2.65,2.69,167.1,166.98,166.89000000000001,166.79,166.71,166.62,166.51,166.42000000000002,166.15,30.25,29.94,29.78,29.580000000000002,29.400000000000002,29.21,29.02,28.84,28.48,N/A,N/A -2012,6,27,18,30,101310,100170,99070,69.45,0,3.06,3.21,3.23,3.23,3.23,3.22,3.22,3.22,3.21,159.75,159.8,159.76,159.70000000000002,159.63,159.55,159.46,159.37,159.09,30.46,30.14,29.98,29.78,29.6,29.41,29.22,29.04,28.67,N/A,N/A -2012,6,27,19,30,101310,100180,99080,66.24,0,4.22,4.48,4.5,4.5,4.49,4.48,4.46,4.44,4.39,158.67000000000002,158.84,158.93,159.02,159.11,159.21,159.3,159.39000000000001,159.6,30.69,30.39,30.22,30.02,29.84,29.650000000000002,29.45,29.27,28.89,N/A,N/A -2012,6,27,20,30,101300,100160,99060,70.34,0,4.6000000000000005,4.94,4.98,5,5,4.99,4.98,4.97,4.94,155.83,155.86,155.92000000000002,155.97,156.01,156.03,156.06,156.08,156.09,30.53,30.23,30.060000000000002,29.87,29.68,29.490000000000002,29.3,29.12,28.75,N/A,N/A -2012,6,27,21,30,101300,100160,99060,71.35000000000001,0,4.88,5.25,5.29,5.3100000000000005,5.3,5.29,5.2700000000000005,5.25,5.19,156.59,156.61,156.68,156.77,156.87,156.97,157.1,157.23,157.54,30.400000000000002,30.13,29.97,29.78,29.59,29.41,29.21,29.03,28.66,N/A,N/A -2012,6,27,22,30,101270,100130,99030,73.95,0,4.69,5.07,5.14,5.17,5.19,5.21,5.23,5.25,5.32,157.72,157.77,157.77,157.76,157.75,157.72,157.68,157.63,157.47,30.23,29.97,29.810000000000002,29.63,29.45,29.27,29.09,28.92,28.59,N/A,N/A -2012,6,27,23,30,101270,100130,99030,77.81,0,4.83,5.21,5.2700000000000005,5.3,5.3100000000000005,5.32,5.32,5.32,5.33,153.66,153.8,153.88,153.93,153.97,154,154.02,154.03,154.05,29.990000000000002,29.73,29.580000000000002,29.39,29.21,29.04,28.85,28.68,28.330000000000002,N/A,N/A -2012,6,28,0,30,101280,100140,99040,81.01,0,4.43,4.83,4.91,4.97,5.0200000000000005,5.0600000000000005,5.12,5.17,5.3500000000000005,152.52,152.37,152.31,152.25,152.18,152.09,152,151.9,151.57,29.75,29.48,29.32,29.13,28.96,28.78,28.6,28.43,28.09,N/A,N/A -2012,6,28,1,30,101250,100110,99010,83.9,0,6.3,6.86,6.95,6.97,6.97,6.95,6.91,6.86,6.7,152.24,152.38,152.45000000000002,152.53,152.62,152.71,152.83,152.95000000000002,153.31,29.55,29.25,29.080000000000002,28.89,28.7,28.51,28.32,28.13,27.73,N/A,N/A -2012,6,28,2,30,101290,100160,99050,82.31,0,6.03,6.5600000000000005,6.66,6.71,6.75,6.78,6.83,6.87,7.07,158.94,158.85,158.74,158.59,158.42000000000002,158.23,157.99,157.73,156.87,29.59,29.310000000000002,29.150000000000002,28.97,28.79,28.62,28.44,28.28,27.990000000000002,N/A,N/A -2012,6,28,3,30,101320,100190,99080,84.88,0,6.53,7.1000000000000005,7.22,7.28,7.34,7.390000000000001,7.45,7.51,7.75,159.43,159.17000000000002,158.99,158.76,158.5,158.21,157.85,157.45000000000002,156.26,29.400000000000002,29.1,28.94,28.75,28.580000000000002,28.400000000000002,28.23,28.07,27.79,N/A,N/A -2012,6,28,4,30,101340,100200,99090,86.4,0,6.99,7.61,7.74,7.79,7.82,7.84,7.84,7.83,7.79,153.66,153.77,153.8,153.84,153.86,153.89000000000001,153.93,153.97,154.11,29.26,28.95,28.78,28.580000000000002,28.400000000000002,28.22,28.02,27.84,27.46,N/A,N/A -2012,6,28,5,30,101360,100220,99120,87.94,0,7.2700000000000005,7.88,8.01,8.05,8.08,8.09,8.08,8.07,8.01,154.34,154.36,154.34,154.31,154.29,154.25,154.23,154.21,154.20000000000002,29.080000000000002,28.75,28.580000000000002,28.38,28.2,28.01,27.82,27.63,27.25,N/A,N/A -2012,6,28,6,30,101410,100270,99160,88.84,0,6.24,6.73,6.82,6.86,6.890000000000001,6.9,6.9,6.9,6.890000000000001,155.78,155.85,155.91,156,156.08,156.18,156.29,156.39000000000001,156.63,29,28.650000000000002,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A -2012,6,28,7,30,101470,100330,99220,88.53,0,6.21,6.7,6.8,6.84,6.86,6.87,6.87,6.86,6.84,157.99,158.1,158.20000000000002,158.28,158.36,158.43,158.5,158.57,158.71,29,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A -2012,6,28,8,30,101490,100340,99240,85.27,0,5.97,6.49,6.61,6.68,6.73,6.7700000000000005,6.8,6.83,6.88,164.31,163.87,163.66,163.47,163.29,163.12,162.95000000000002,162.78,162.42000000000002,29.14,28.8,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A -2012,6,28,9,30,101520,100380,99270,85.85000000000001,0,6.59,7.11,7.21,7.24,7.25,7.25,7.23,7.21,7.140000000000001,162.21,162.46,162.59,162.73,162.87,163.01,163.17000000000002,163.32,163.71,29,28.66,28.48,28.28,28.080000000000002,27.89,27.69,27.5,27.11,N/A,N/A -2012,6,28,10,30,101530,100390,99280,83.22,0,6.68,7.25,7.37,7.43,7.46,7.48,7.48,7.48,7.46,160.52,160.78,160.96,161.17000000000002,161.37,161.57,161.78,161.99,162.43,29.14,28.8,28.62,28.42,28.22,28.03,27.830000000000002,27.63,27.240000000000002,N/A,N/A -2012,6,28,11,30,101580,100440,99330,85.24,0,5.2700000000000005,5.69,5.8,5.88,5.94,5.98,6.03,6.07,6.140000000000001,161.15,162.35,163.03,163.68,164.26,164.81,165.33,165.84,166.79,29.13,28.8,28.64,28.44,28.26,28.07,27.88,27.69,27.32,N/A,N/A -2012,6,28,12,30,101610,100470,99360,84.06,0,5.12,5.55,5.66,5.73,5.79,5.84,5.88,5.91,5.98,167.36,167.27,167.23,167.18,167.13,167.08,167.02,166.97,166.84,29.060000000000002,28.72,28.55,28.35,28.16,27.97,27.78,27.59,27.21,N/A,N/A -2012,6,28,13,30,101650,100510,99400,83.28,0,4.0200000000000005,4.26,4.3100000000000005,4.33,4.3500000000000005,4.36,4.36,4.37,4.38,155.91,155.82,155.83,155.83,155.84,155.86,155.88,155.93,156.06,29.17,28.85,28.68,28.48,28.3,28.11,27.92,27.740000000000002,27.37,N/A,N/A -2012,6,28,14,30,101720,100570,99460,83.08,0,3.7800000000000002,4.0600000000000005,4.12,4.16,4.2,4.22,4.25,4.2700000000000005,4.32,154.34,154.31,154.36,154.42000000000002,154.47,154.52,154.58,154.64000000000001,154.77,29.27,28.94,28.77,28.57,28.39,28.19,28,27.82,27.44,N/A,N/A -2012,6,28,15,30,101720,100580,99470,82.09,0,3.61,3.8000000000000003,3.83,3.84,3.84,3.84,3.84,3.83,3.81,128.51,129.29,129.73,130.13,130.51,130.88,131.26,131.62,132.4,29.310000000000002,28.98,28.810000000000002,28.61,28.43,28.240000000000002,28.04,27.86,27.48,N/A,N/A -2012,6,28,16,30,101710,100570,99460,82.39,0,3.56,3.7600000000000002,3.8000000000000003,3.8200000000000003,3.83,3.85,3.85,3.86,3.87,129.46,130.76,131.41,132.07,132.67000000000002,133.26,133.85,134.41,135.54,29.36,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.52,N/A,N/A -2012,6,28,17,30,101750,100610,99490,84.71000000000001,0,4.66,4.92,4.96,4.97,4.97,4.96,4.95,4.94,4.9,115.73,116.12,116.28,116.39,116.48,116.54,116.60000000000001,116.65,116.72,29.34,29,28.830000000000002,28.62,28.44,28.240000000000002,28.05,27.86,27.490000000000002,N/A,N/A -2012,6,28,18,30,101730,100590,99480,82.98,0,4.38,4.66,4.69,4.7,4.69,4.69,4.68,4.66,4.62,113.10000000000001,113.9,114.12,114.33,114.5,114.67,114.84,115.01,115.37,29.48,29.13,28.96,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A -2012,6,28,19,30,101800,100660,99540,84.11,0,6.96,7.44,7.53,7.5600000000000005,7.58,7.58,7.58,7.58,7.5600000000000005,158.93,159.01,159.05,159.13,159.20000000000002,159.31,159.43,159.56,159.87,29.490000000000002,29.16,28.990000000000002,28.79,28.6,28.41,28.22,28.03,27.66,N/A,N/A -2012,6,28,20,30,101690,100540,99430,82.64,0,5.86,6.140000000000001,6.17,6.16,6.15,6.140000000000001,6.15,6.17,6.3,218.53,217.75,217.08,216.20000000000002,215,213.51,210.66,207.39000000000001,197.17000000000002,27.54,27.150000000000002,26.98,26.810000000000002,26.68,26.560000000000002,26.53,26.53,26.76,N/A,N/A -2012,6,28,21,30,101690,100540,99430,80.86,0,6.09,6.48,6.55,6.57,6.58,6.59,6.58,6.58,6.57,191.55,191.19,191.04,190.86,190.66,190.44,190.15,189.84,188.87,27.89,27.5,27.32,27.12,26.93,26.75,26.560000000000002,26.39,26.04,N/A,N/A -2012,6,28,22,30,101660,100510,99400,77.99,0,3.37,3.54,3.5700000000000003,3.59,3.61,3.64,3.71,3.79,4.3500000000000005,163.92000000000002,163.14000000000001,162.65,162.05,161.37,160.61,159.44,158.17000000000002,153.17000000000002,28.080000000000002,27.72,27.55,27.36,27.18,27.01,26.84,26.68,26.52,N/A,N/A -2012,6,28,23,30,101650,100510,99400,76.09,0,2.64,2.8000000000000003,2.84,2.87,2.91,2.96,3.0500000000000003,3.16,3.77,130.71,130.93,131.09,131.32,131.61,131.98,132.7,133.56,138.24,28.53,28.2,28.04,27.85,27.68,27.51,27.36,27.21,27.14,N/A,N/A -2012,6,29,0,30,101610,100460,99350,76.32000000000001,0,5.09,5.44,5.5,5.53,5.5600000000000005,5.58,5.6000000000000005,5.62,5.68,143.79,143.66,143.61,143.55,143.49,143.41,143.33,143.25,143,28.7,28.35,28.18,27.98,27.79,27.61,27.42,27.240000000000002,26.87,N/A,N/A -2012,6,29,1,30,101590,100450,99340,78.7,0,6.3500000000000005,6.8100000000000005,6.91,6.95,6.98,6.99,7,7,7.01,143.51,143.62,143.69,143.77,143.84,143.91,144,144.1,144.32,28.8,28.45,28.28,28.080000000000002,27.900000000000002,27.72,27.53,27.35,26.990000000000002,N/A,N/A -2012,6,29,2,30,101590,100440,99330,80.10000000000001,0,5.89,6.3500000000000005,6.46,6.53,6.57,6.61,6.640000000000001,6.67,6.71,139.44,139.84,140.06,140.29,140.51,140.74,140.98,141.21,141.74,28.8,28.44,28.27,28.07,27.89,27.7,27.51,27.32,26.95,N/A,N/A -2012,6,29,3,30,101590,100440,99330,80.88,0,6.29,6.8,6.92,6.98,7.03,7.0600000000000005,7.09,7.11,7.140000000000001,147.55,147.68,147.77,147.87,147.95000000000002,148.03,148.12,148.19,148.36,28.84,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A -2012,6,29,4,30,101590,100440,99330,83.27,0,6.0600000000000005,6.5200000000000005,6.63,6.68,6.72,6.74,6.75,6.7700000000000005,6.78,149.26,149.37,149.4,149.43,149.45000000000002,149.47,149.5,149.52,149.57,28.77,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.900000000000002,N/A,N/A -2012,6,29,5,30,101570,100430,99320,80.49,0,6.3100000000000005,6.78,6.88,6.92,6.94,6.95,6.95,6.95,6.93,161.89000000000001,161.42000000000002,161.18,160.93,160.72,160.5,160.29,160.08,159.66,29.01,28.67,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A -2012,6,29,6,30,101610,100470,99360,79.81,0,5.91,6.3500000000000005,6.45,6.49,6.5200000000000005,6.54,6.5600000000000005,6.5600000000000005,6.57,168.45000000000002,168.51,168.49,168.46,168.44,168.41,168.39000000000001,168.38,168.34,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A -2012,6,29,7,30,101600,100450,99340,79.56,0,6.0200000000000005,6.45,6.5200000000000005,6.55,6.5600000000000005,6.5600000000000005,6.55,6.54,6.5200000000000005,167.9,168.08,168.26,168.45000000000002,168.65,168.85,169.06,169.26,169.71,28.94,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,6,29,8,30,101620,100480,99370,77.62,0,4.66,4.97,5.04,5.07,5.08,5.09,5.09,5.08,5.07,171.22,172.11,172.45000000000002,172.75,173.01,173.25,173.47,173.68,174.08,29.080000000000002,28.75,28.580000000000002,28.39,28.2,28.01,27.82,27.63,27.26,N/A,N/A -2012,6,29,9,30,101600,100450,99340,78.58,0,4.57,4.88,4.94,4.98,5.01,5.03,5.04,5.05,5.08,180.93,181.1,181.23,181.37,181.49,181.61,181.74,181.85,182.09,28.91,28.57,28.400000000000002,28.21,28.02,27.830000000000002,27.650000000000002,27.46,27.09,N/A,N/A -2012,6,29,10,30,101610,100470,99360,80.12,0,3.5100000000000002,3.67,3.68,3.68,3.67,3.66,3.64,3.63,3.6,201.64000000000001,201.55,201.28,200.96,200.63,200.27,199.86,199.45000000000002,198.36,28.77,28.44,28.28,28.080000000000002,27.900000000000002,27.72,27.54,27.36,27.01,N/A,N/A -2012,6,29,11,30,101580,100430,99320,79.22,0,3.2,3.38,3.41,3.42,3.43,3.43,3.44,3.44,3.43,202.33,203.16,203.57,203.97,204.34,204.70000000000002,205.06,205.4,206.08,28.72,28.38,28.21,28.01,27.82,27.63,27.44,27.25,26.87,N/A,N/A -2012,6,29,12,30,101580,100440,99330,80.15,3.3000000000000003,2.93,3.1,3.11,3.11,3.11,3.11,3.1,3.09,3.08,216.55,215.65,215.47,215.28,215.1,214.92000000000002,214.75,214.59,214.25,28.59,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,6,29,13,30,101610,100450,99330,93.26,51.6,9.89,10.93,11.07,11.16,11.200000000000001,11.21,11.19,11.17,11.07,112.60000000000001,112,111.96000000000001,111.95,112,112.06,112.17,112.27,112.55,26.18,25.67,25.45,25.240000000000002,25.03,24.84,24.64,24.45,24.080000000000002,N/A,N/A -2012,6,29,14,30,101680,100520,99400,83.35000000000001,0,7.33,7.76,7.8100000000000005,7.82,7.8,7.78,7.76,7.75,7.71,109.55,109.51,109.76,110.04,110.36,110.7,111.22,111.75,113.37,25.84,25.37,25.19,25.02,24.86,24.71,24.580000000000002,24.46,24.330000000000002,N/A,N/A -2012,6,29,15,30,101680,100530,99400,78.61,0,5.63,5.98,6.05,6.07,6.09,6.09,6.09,6.08,6.0600000000000005,96.53,97.23,97.51,97.79,98.07000000000001,98.35000000000001,98.67,98.97,99.74000000000001,26.59,26.16,25.97,25.77,25.580000000000002,25.400000000000002,25.22,25.04,24.7,N/A,N/A -2012,6,29,16,30,101670,100520,99400,77.7,0,6.2700000000000005,6.67,6.74,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.74,6.72,6.640000000000001,93.72,93.84,93.88,93.92,93.95,93.99,94.02,94.06,94.16,27.29,26.88,26.7,26.5,26.32,26.14,25.95,25.78,25.44,N/A,N/A -2012,6,29,17,30,101650,100500,99380,82.52,0,6.2,6.54,6.58,6.57,6.55,6.5200000000000005,6.48,6.44,6.34,113.64,113.76,113.83,113.92,114,114.09,114.19,114.29,114.54,27.47,27.060000000000002,26.88,26.68,26.490000000000002,26.310000000000002,26.13,25.95,25.6,N/A,N/A -2012,6,29,18,30,101570,100430,99310,83.31,0,5.8100000000000005,6.19,6.22,6.21,6.19,6.16,6.12,6.08,5.99,113.7,113.87,113.82000000000001,113.75,113.67,113.59,113.5,113.41,113.21000000000001,27.92,27.51,27.330000000000002,27.13,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A -2012,6,29,19,30,101550,100410,99300,76.85000000000001,0,6.7,7.18,7.25,7.2700000000000005,7.2700000000000005,7.26,7.24,7.21,7.15,143.71,143.68,143.72,143.76,143.82,143.88,143.95000000000002,144.02,144.19,28.37,27.990000000000002,27.810000000000002,27.61,27.43,27.240000000000002,27.05,26.87,26.5,N/A,N/A -2012,6,29,20,30,101500,100350,99240,83.41,0,6.47,6.8500000000000005,6.91,6.9,6.87,6.83,6.7700000000000005,6.7,6.51,144.9,144.95000000000002,144.91,144.9,144.91,144.94,145.02,145.12,145.54,27.900000000000002,27.51,27.330000000000002,27.13,26.95,26.77,26.580000000000002,26.400000000000002,26.05,N/A,N/A -2012,6,29,21,30,101440,100290,99170,77.42,0,8.16,8.77,8.88,8.92,8.93,8.93,8.92,8.91,8.91,134.79,134.89000000000001,134.85,134.81,134.76,134.71,134.65,134.6,134.51,27.95,27.560000000000002,27.39,27.2,27.03,26.86,26.69,26.54,26.29,N/A,N/A -2012,6,29,22,30,101380,100230,99120,78.24,0,6.42,6.84,6.890000000000001,6.890000000000001,6.87,6.83,6.78,6.73,6.57,157.79,157.58,157.59,157.61,157.64000000000001,157.67000000000002,157.72,157.78,157.98,28.27,27.900000000000002,27.72,27.53,27.34,27.150000000000002,26.96,26.78,26.42,N/A,N/A -2012,6,29,23,30,101390,100240,99130,85.22,0,5.89,6.26,6.32,6.34,6.34,6.34,6.32,6.3100000000000005,6.2700000000000005,143.04,143.01,142.91,142.81,142.71,142.61,142.5,142.39000000000001,142.17000000000002,27.8,27.400000000000002,27.22,27.02,26.830000000000002,26.64,26.44,26.26,25.88,N/A,N/A -2012,6,30,0,30,101340,100190,99080,77.31,0,5.15,5.46,5.5200000000000005,5.55,5.57,5.57,5.57,5.57,5.57,150.15,150.26,150.3,150.33,150.36,150.4,150.45000000000002,150.49,150.58,28.07,27.69,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.17,N/A,N/A -2012,6,30,1,30,101280,100130,99030,81.52,0,4.91,5.28,5.38,5.44,5.49,5.53,5.5600000000000005,5.59,5.64,137.32,137.44,137.52,137.6,137.67000000000002,137.73,137.79,137.86,137.98,28.07,27.69,27.52,27.310000000000002,27.12,26.93,26.73,26.55,26.16,N/A,N/A -2012,6,30,2,30,101280,100140,99030,82.5,0,5.5200000000000005,5.9,5.97,6,6.0200000000000005,6.04,6.05,6.05,6.05,147.85,147.89000000000001,147.91,147.93,147.95000000000002,147.98,148.01,148.03,148.1,28.2,27.830000000000002,27.650000000000002,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A -2012,6,30,3,30,101250,100100,99000,81.05,0,5.46,5.88,5.98,6.03,6.07,6.1000000000000005,6.12,6.140000000000001,6.17,153.20000000000002,153.21,153.14000000000001,153.08,153.02,152.97,152.91,152.87,152.78,28.47,28.11,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,6,30,4,30,101240,100090,98990,84.32000000000001,0,7.01,7.5200000000000005,7.61,7.640000000000001,7.640000000000001,7.640000000000001,7.62,7.6000000000000005,7.54,149.72,150.36,150.62,150.87,151.09,151.3,151.5,151.70000000000002,152.09,28.29,27.91,27.73,27.53,27.330000000000002,27.14,26.95,26.76,26.39,N/A,N/A -2012,6,30,5,30,101220,100080,98970,84.58,0,7.03,7.58,7.69,7.75,7.79,7.8,7.8100000000000005,7.8100000000000005,7.8,153.31,153.58,153.82,154.04,154.24,154.42000000000002,154.6,154.76,155.09,28.32,27.94,27.76,27.560000000000002,27.36,27.17,26.97,26.79,26.41,N/A,N/A -2012,6,30,6,30,101260,100110,99010,81.89,0,5.8,6.23,6.32,6.37,6.41,6.43,6.45,6.47,6.5,172.51,172.45000000000002,172.44,172.42000000000002,172.41,172.39000000000001,172.38,172.36,172.33,28.37,28.01,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A -2012,6,30,7,30,101250,100110,99010,82.37,0,7.2,7.78,7.890000000000001,7.94,7.97,7.97,7.97,7.96,7.92,167.63,167.8,167.99,168.17000000000002,168.34,168.5,168.67000000000002,168.83,169.15,28.45,28.1,27.92,27.72,27.53,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,6,30,8,30,101250,100100,99000,80.31,0,6.640000000000001,7.140000000000001,7.23,7.26,7.28,7.29,7.29,7.29,7.2700000000000005,170.88,170.95000000000002,170.93,170.9,170.88,170.86,170.84,170.83,170.81,28.43,28.080000000000002,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A -2012,6,30,9,30,101240,100090,98990,79.04,0,6.75,7.3100000000000005,7.43,7.5,7.54,7.58,7.61,7.62,7.65,182.91,183.02,183.09,183.15,183.21,183.25,183.3,183.35,183.42000000000002,28.46,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,6,30,10,30,101240,100100,98990,77.08,0,6.16,6.61,6.69,6.72,6.74,6.75,6.75,6.74,6.73,180.92000000000002,181.27,181.45000000000002,181.62,181.77,181.91,182.04,182.17000000000002,182.43,28.45,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A -2012,6,30,11,30,101240,100100,98990,78.54,0,5.26,5.65,5.73,5.78,5.8100000000000005,5.84,5.8500000000000005,5.86,5.86,190.01,189.66,189.38,189.11,188.85,188.61,188.36,188.14000000000001,187.67000000000002,28.400000000000002,28.05,27.87,27.67,27.48,27.29,27.09,26.900000000000002,26.52,N/A,N/A -2012,6,30,12,30,101250,100110,99000,78.54,0,5.84,6.24,6.3100000000000005,6.34,6.36,6.37,6.37,6.37,6.36,188.09,187.65,187.36,187.06,186.79,186.54,186.28,186.04,185.56,28.34,27.990000000000002,27.810000000000002,27.61,27.42,27.23,27.03,26.85,26.46,N/A,N/A -2012,6,30,13,30,101290,100140,99040,78.06,0,3.13,3.33,3.38,3.41,3.44,3.46,3.48,3.5,3.5300000000000002,185.59,185.3,185.17000000000002,185.03,184.91,184.8,184.69,184.58,184.35,28.310000000000002,27.97,27.79,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,6,30,14,30,101400,100250,99130,88.8,98.5,2.44,2.34,2.27,2.27,2.32,2.44,2.61,2.82,3.2600000000000002,64.71000000000001,75.19,82.19,91.13,98.61,105.68,111.28,116.02,121.81,26.51,26.2,26.080000000000002,25.96,25.85,25.76,25.67,25.6,25.42,N/A,N/A -2012,6,30,15,30,101380,100230,99100,92.29,1.1,8.370000000000001,8.83,8.86,8.8,8.700000000000001,8.57,8.4,8.24,7.72,49.42,49.480000000000004,49.620000000000005,49.81,50.050000000000004,50.34,50.74,51.14,52.75,25.3,24.79,24.59,24.400000000000002,24.22,24.05,23.89,23.740000000000002,23.47,N/A,N/A -2012,6,30,16,30,101390,100230,99110,89.8,127.10000000000001,6.91,7.28,7.36,7.390000000000001,7.4,7.4,7.38,7.36,7.3,17.490000000000002,17.6,17.75,17.87,17.94,17.990000000000002,18.01,18.02,17.97,26.03,25.560000000000002,25.37,25.17,24.97,24.79,24.61,24.43,24.080000000000002,N/A,N/A -2012,6,30,17,30,101400,100240,99120,92.99,21.200000000000003,6.38,6.62,6.6000000000000005,6.55,6.49,6.42,6.34,6.26,6.09,300.2,300.21,300.63,301.11,301.58,302.07,302.64,303.19,304.45,25.1,24.61,24.42,24.22,24.03,23.85,23.66,23.490000000000002,23.13,N/A,N/A -2012,6,30,18,30,101360,100200,99080,87.89,0,4.15,4.18,4.08,3.93,3.64,3.31,2.66,2.11,1.25,6.34,7.69,8.51,9.57,11.32,13.24,16.01,18.240000000000002,24.93,25.69,25.3,25.16,25.03,24.97,24.93,24.98,25.04,25.02,N/A,N/A -2012,6,30,19,30,101340,100190,99080,83.24,0,0.64,0.52,0.48,0.48,0.51,0.59,0.7000000000000001,0.8300000000000001,1.1500000000000001,64.3,86.15,99.97,118.51,133.76,148.58,159.21,168.58,179.25,26.86,26.47,26.29,26.09,25.900000000000002,25.72,25.52,25.34,24.97,N/A,N/A -2012,6,30,20,30,101320,100170,99050,84.14,0,2.22,2.34,2.38,2.41,2.44,2.47,2.5100000000000002,2.54,2.63,173.45000000000002,171.99,170.92000000000002,169.86,168.89000000000001,167.93,166.98,166.07,164.25,27.080000000000002,26.68,26.5,26.3,26.11,25.92,25.73,25.55,25.18,N/A,N/A -2012,6,30,21,30,101260,100110,99000,80.72,0,3.64,3.94,4.03,4.1,4.17,4.23,4.28,4.34,4.45,152.8,152.32,152.03,151.75,151.5,151.26,151.03,150.81,150.4,27.59,27.21,27.03,26.830000000000002,26.64,26.45,26.26,26.07,25.7,N/A,N/A -2012,6,30,22,30,101230,100080,98970,69.59,0,6.38,6.94,7.0600000000000005,7.12,7.16,7.19,7.21,7.22,7.24,148.32,148.28,148.32,148.37,148.43,148.48,148.55,148.6,148.73,28.55,28.2,28.03,27.830000000000002,27.64,27.45,27.25,27.07,26.68,N/A,N/A -2012,6,30,23,30,101230,100080,98980,76.38,0,5.78,6.26,6.390000000000001,6.47,6.53,6.57,6.61,6.65,6.7,144.08,144.39000000000001,144.62,144.83,145,145.15,145.29,145.42000000000002,145.68,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,1,0,30,101210,100060,98960,75.59,0,6.23,6.68,6.78,6.83,6.87,6.9,6.91,6.93,6.95,150.51,150.66,150.75,150.85,150.93,151.02,151.09,151.17000000000002,151.33,28.48,28.14,27.96,27.76,27.57,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,1,1,30,101200,100060,98950,81.41,0,6.2700000000000005,6.8100000000000005,6.93,6.99,7.04,7.07,7.09,7.11,7.12,143.62,143.99,144.08,144.13,144.17000000000002,144.19,144.20000000000002,144.20000000000002,144.19,28.3,27.93,27.76,27.55,27.37,27.17,26.98,26.79,26.41,N/A,N/A -2012,7,1,2,30,101200,100060,98950,80.21000000000001,0,7.4,8.01,8.14,8.21,8.25,8.28,8.290000000000001,8.3,8.3,154.01,154.21,154.26,154.29,154.34,154.37,154.41,154.45000000000002,154.52,28.1,27.72,27.54,27.34,27.150000000000002,26.96,26.76,26.580000000000002,26.2,N/A,N/A -2012,7,1,3,30,101220,100070,98970,80.33,0,7.16,7.7700000000000005,7.9,7.97,8.03,8.07,8.1,8.13,8.16,158.98,159.22,159.4,159.57,159.73,159.88,160.05,160.20000000000002,160.51,28.19,27.82,27.64,27.44,27.25,27.060000000000002,26.86,26.68,26.29,N/A,N/A -2012,7,1,4,30,101220,100080,98970,82.21000000000001,0,7.73,8.46,8.63,8.74,8.82,8.88,8.94,8.98,9.05,151.20000000000002,151.56,151.73,151.88,152.02,152.16,152.28,152.4,152.63,28.23,27.86,27.68,27.48,27.29,27.1,26.900000000000002,26.71,26.330000000000002,N/A,N/A -2012,7,1,5,30,101250,100110,99000,80.87,0,7.94,8.72,8.89,9.01,9.08,9.13,9.17,9.200000000000001,9.24,162.20000000000002,162.08,162.07,162.07,162.07,162.07,162.08,162.08,162.09,28.41,28.04,27.86,27.66,27.46,27.27,27.07,26.88,26.5,N/A,N/A -2012,7,1,6,30,101280,100140,99030,76.58,0,8.13,8.94,9.13,9.24,9.32,9.38,9.43,9.46,9.51,168.37,168.38,168.4,168.41,168.41,168.42000000000002,168.42000000000002,168.42000000000002,168.43,28.580000000000002,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,1,7,30,101350,100210,99100,80.86,19.6,8.84,9.44,9.52,9.48,9.4,9.3,9.18,9.06,8.85,185.41,185.33,185.49,185.77,186.05,186.32,186.35,186.3,185.64000000000001,27.82,27.52,27.39,27.27,27.150000000000002,27.02,26.88,26.73,26.39,N/A,N/A -2012,7,1,8,30,101380,100230,99110,81.66,8.1,7.49,8.18,8.35,8.48,8.58,8.68,8.78,8.88,9.13,190.67000000000002,189.68,189.13,188.55,187.94,187.34,186.62,185.92000000000002,183.71,27.27,26.89,26.72,26.52,26.34,26.150000000000002,25.97,25.8,25.48,N/A,N/A -2012,7,1,9,30,101390,100230,99120,82.44,0,5.86,6.34,6.46,6.53,6.58,6.62,6.66,6.69,6.74,166.03,165.93,165.9,165.89000000000001,165.87,165.85,165.83,165.82,165.77,27.310000000000002,26.93,26.76,26.560000000000002,26.36,26.17,25.98,25.8,25.42,N/A,N/A -2012,7,1,10,30,101400,100240,99140,81.58,0,6.91,7.49,7.61,7.68,7.73,7.75,7.7700000000000005,7.78,7.79,160.48,160.54,160.58,160.63,160.68,160.74,160.81,160.87,161.03,27.71,27.330000000000002,27.14,26.94,26.740000000000002,26.55,26.36,26.17,25.79,N/A,N/A -2012,7,1,11,30,101450,100300,99180,79.8,0,6.03,6.47,6.57,6.62,6.65,6.67,6.69,6.7,6.73,159.42000000000002,159.69,159.83,159.96,160.08,160.20000000000002,160.33,160.47,160.85,27.86,27.5,27.330000000000002,27.13,26.94,26.75,26.560000000000002,26.38,26.01,N/A,N/A -2012,7,1,12,30,101470,100320,99210,79.43,0,6.68,7.19,7.3,7.36,7.390000000000001,7.41,7.41,7.41,7.390000000000001,150.28,150.55,150.66,150.78,150.89000000000001,151,151.11,151.22,151.49,27.95,27.59,27.42,27.22,27.04,26.85,26.66,26.48,26.12,N/A,N/A -2012,7,1,13,30,101510,100370,99260,81.59,0,5.82,6.16,6.21,6.2,6.18,6.15,6.12,6.08,6.0200000000000005,148.79,149.31,149.85,150.48,151.15,151.86,152.75,153.65,156.26,28.05,27.7,27.53,27.330000000000002,27.150000000000002,26.97,26.79,26.62,26.29,N/A,N/A -2012,7,1,14,30,101570,100430,99310,81.43,0,5.67,6.13,6.18,6.19,6.19,6.16,6.12,6.08,5.99,130.54,131.99,132.39000000000001,132.78,133.15,133.52,133.93,134.32,135.31,27.900000000000002,27.53,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.03,N/A,N/A -2012,7,1,15,30,101700,100540,99420,86.15,35.300000000000004,9.73,10.61,10.81,10.9,10.97,11.01,11.03,11.06,11.11,179.72,179.36,179.25,179.14000000000001,179.05,178.97,178.91,178.86,178.81,26.59,26.11,25.91,25.7,25.52,25.330000000000002,25.14,24.96,24.6,N/A,N/A -2012,7,1,16,30,101750,100590,99460,82.63,2.4000000000000004,6.93,7.3500000000000005,7.43,7.45,7.47,7.46,7.46,7.46,7.43,181.88,182.09,182.21,182.33,182.46,182.59,182.74,182.89000000000001,183.24,25.85,25.38,25.18,24.98,24.78,24.6,24.41,24.23,23.86,N/A,N/A -2012,7,1,17,30,101760,100590,99460,89.81,43.5,2.85,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0100000000000002,3,2.99,2.98,2.94,277.92,277.09000000000003,278.02,278.93,279.83,280.66,281.72,282.7,285.29,24.91,24.47,24.29,24.09,23.900000000000002,23.72,23.53,23.37,23.01,N/A,N/A -2012,7,1,18,30,101780,100610,99480,89.7,74.3,5.74,6.03,6.05,6.04,6.0200000000000005,5.98,5.93,5.88,5.75,256.47,255.57,255.70000000000002,255.79,255.89000000000001,255.98000000000002,256.08,256.19,256.49,24.78,24.3,24.1,23.91,23.72,23.54,23.35,23.19,22.84,N/A,N/A -2012,7,1,19,30,101770,100600,99470,84.75,0,2.11,2.23,2.24,2.2600000000000002,2.2800000000000002,2.31,2.34,2.36,2.47,281.5,279.18,277.48,275.68,273.89,272.09000000000003,269.98,267.91,261.91,25.11,24.69,24.51,24.310000000000002,24.12,23.94,23.76,23.580000000000002,23.240000000000002,N/A,N/A -2012,7,1,20,30,101700,100540,99420,82.82000000000001,0,1.27,1.3900000000000001,1.45,1.52,1.6300000000000001,1.8,2.19,2.7800000000000002,3.39,208.20000000000002,206.76,206.9,206.85,206.37,205.49,202.71,198.39000000000001,185.64000000000001,26.04,25.67,25.51,25.34,25.19,25.07,25.14,25.27,25.67,N/A,N/A -2012,7,1,21,30,101680,100530,99410,81.78,0,3.93,4.14,4.18,4.2,4.22,4.23,4.25,4.28,4.39,126.27,126.92,127.38000000000001,127.87,128.41,128.98,129.72,130.46,132.7,26.78,26.39,26.21,26.01,25.82,25.64,25.46,25.29,24.95,N/A,N/A -2012,7,1,22,30,101650,100490,99370,83.36,0,4.87,5.18,5.25,5.28,5.3100000000000005,5.34,5.36,5.38,5.43,112.58,113.10000000000001,113.4,113.74000000000001,114.06,114.38,114.76,115.14,116.11,26.88,26.48,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A -2012,7,1,23,30,101590,100440,99330,82.5,0,5.73,6.09,6.16,6.18,6.19,6.19,6.18,6.18,6.15,124.19,124.54,124.66,124.78,124.88000000000001,124.97,125.06,125.16,125.37,27.54,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.19,26,25.62,N/A,N/A -2012,7,2,0,30,101560,100410,99290,84.51,0,5.99,6.4,6.48,6.5200000000000005,6.53,6.54,6.53,6.53,6.5,136.4,136.64000000000001,136.75,136.86,136.98,137.1,137.23,137.36,137.67000000000002,27.580000000000002,27.2,27.02,26.82,26.63,26.44,26.240000000000002,26.05,25.68,N/A,N/A -2012,7,2,1,30,101560,100410,99300,86,0,6.32,6.8,6.9,6.95,6.99,7.01,7.0200000000000005,7.0200000000000005,7.03,141.28,141.48,141.57,141.66,141.75,141.84,141.93,142.02,142.23,27.61,27.23,27.05,26.84,26.650000000000002,26.46,26.27,26.080000000000002,25.7,N/A,N/A -2012,7,2,2,30,101540,100390,99280,86.5,0,7.29,7.890000000000001,8.01,8.08,8.120000000000001,8.14,8.16,8.17,8.18,144.81,144.88,144.95000000000002,145.02,145.07,145.13,145.18,145.24,145.35,27.740000000000002,27.35,27.17,26.97,26.77,26.580000000000002,26.38,26.2,25.82,N/A,N/A -2012,7,2,3,30,101550,100400,99290,87.92,0,7,7.55,7.67,7.72,7.75,7.76,7.76,7.76,7.73,143.16,143.43,143.63,143.85,144.07,144.28,144.51,144.74,145.24,27.7,27.310000000000002,27.12,26.91,26.72,26.52,26.330000000000002,26.14,25.75,N/A,N/A -2012,7,2,4,30,101550,100410,99300,85.15,0,6.71,7.26,7.38,7.44,7.49,7.5200000000000005,7.54,7.55,7.57,148,148.17000000000002,148.29,148.42000000000002,148.54,148.66,148.79,148.91,149.18,28,27.63,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.1,N/A,N/A -2012,7,2,5,30,101560,100420,99300,86.52,0,6.5200000000000005,7.04,7.16,7.23,7.2700000000000005,7.3,7.32,7.33,7.3500000000000005,158.67000000000002,158.94,159.05,159.17000000000002,159.28,159.38,159.49,159.6,159.83,28.04,27.68,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A -2012,7,2,6,30,101580,100430,99320,84.91,0,6.32,6.82,6.92,6.96,6.99,7,7.01,7.01,7.01,160.76,160.77,160.95000000000002,161.18,161.43,161.69,162,162.32,163.12,28.12,27.77,27.6,27.41,27.22,27.03,26.85,26.67,26.310000000000002,N/A,N/A -2012,7,2,7,30,101630,100480,99370,86.03,0,6.16,6.68,6.8,6.87,6.92,6.95,6.98,7,7.03,160.43,161.07,161.32,161.54,161.73,161.89000000000001,162.04,162.18,162.44,28.14,27.79,27.62,27.42,27.23,27.04,26.85,26.67,26.29,N/A,N/A -2012,7,2,8,30,101630,100480,99370,85.75,0,5.87,6.3500000000000005,6.45,6.51,6.54,6.5600000000000005,6.57,6.58,6.59,163.33,163.75,163.97,164.23,164.48,164.72,164.98,165.22,165.74,28.14,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A -2012,7,2,9,30,101680,100530,99420,84.28,0,5.26,5.66,5.73,5.76,5.79,5.8,5.8,5.8,5.8,158.88,159.33,159.68,160.04,160.39000000000001,160.73,161.08,161.42000000000002,162.14000000000001,28.240000000000002,27.91,27.740000000000002,27.54,27.35,27.17,26.97,26.79,26.42,N/A,N/A -2012,7,2,10,30,101710,100560,99450,84.98,0,4.72,5.12,5.21,5.2700000000000005,5.32,5.36,5.4,5.43,5.5200000000000005,152.92000000000002,153.36,153.65,153.93,154.21,154.48,154.79,155.08,155.82,28.13,27.8,27.64,27.45,27.27,27.09,26.91,26.740000000000002,26.400000000000002,N/A,N/A -2012,7,2,11,30,101770,100620,99510,85.79,0,4.6000000000000005,4.94,5.0200000000000005,5.07,5.11,5.13,5.15,5.17,5.2,153.13,153.86,154.26,154.67000000000002,155.05,155.42000000000002,155.8,156.15,156.9,28.17,27.830000000000002,27.66,27.46,27.27,27.080000000000002,26.89,26.7,26.32,N/A,N/A -2012,7,2,12,30,101800,100650,99540,85.78,0,5.15,5.55,5.63,5.67,5.69,5.7,5.71,5.71,5.7,166.58,166.39000000000001,166.34,166.31,166.28,166.27,166.25,166.23,166.21,28.27,27.94,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A -2012,7,2,13,30,101830,100680,99570,86.99,0,5.23,5.62,5.69,5.73,5.75,5.76,5.76,5.76,5.76,156.19,156.58,156.78,156.96,157.11,157.26,157.41,157.55,157.86,28.150000000000002,27.82,27.64,27.44,27.25,27.07,26.87,26.69,26.310000000000002,N/A,N/A -2012,7,2,14,30,101870,100720,99610,85.76,0,4.38,4.73,4.8100000000000005,4.86,4.9,4.93,4.96,4.97,5.01,153.45000000000002,153.28,153.32,153.37,153.41,153.45000000000002,153.49,153.54,153.64000000000001,28.240000000000002,27.900000000000002,27.73,27.54,27.35,27.150000000000002,26.96,26.77,26.39,N/A,N/A -2012,7,2,15,30,101880,100730,99620,85.93,0,4.97,5.29,5.3500000000000005,5.37,5.38,5.38,5.37,5.37,5.3500000000000005,162.12,162.09,162.03,161.97,161.91,161.84,161.78,161.72,161.58,28.26,27.92,27.75,27.55,27.36,27.18,26.98,26.8,26.42,N/A,N/A -2012,7,2,16,30,101890,100740,99620,84.94,0,6.15,6.6000000000000005,6.68,6.71,6.73,6.74,6.74,6.74,6.72,147.69,147.81,147.88,147.94,148,148.05,148.11,148.16,148.3,28.26,27.92,27.75,27.55,27.36,27.18,26.990000000000002,26.810000000000002,26.44,N/A,N/A -2012,7,2,17,30,101840,100690,99580,87.18,0,5.75,6.18,6.2700000000000005,6.32,6.3500000000000005,6.37,6.38,6.38,6.38,148.55,148.74,148.89000000000001,149.05,149.20000000000002,149.34,149.48,149.62,149.91,28.2,27.84,27.67,27.46,27.28,27.080000000000002,26.89,26.7,26.32,N/A,N/A -2012,7,2,18,30,101820,100670,99560,83.74,0,5.5,5.87,5.94,5.96,5.97,5.97,5.96,5.95,5.91,160.12,160.19,160.22,160.27,160.33,160.38,160.44,160.5,160.61,28.19,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,7,2,19,30,101800,100650,99540,83.21000000000001,0,4.99,5.32,5.37,5.39,5.4,5.4,5.39,5.39,5.36,155.59,155.63,155.74,155.85,155.96,156.05,156.16,156.25,156.47,28.16,27.8,27.62,27.42,27.23,27.04,26.85,26.66,26.28,N/A,N/A -2012,7,2,20,30,101770,100620,99510,81.91,0,4.76,5.08,5.13,5.15,5.16,5.16,5.16,5.15,5.14,151.32,151.59,151.78,151.96,152.13,152.29,152.46,152.62,152.95000000000002,28.17,27.810000000000002,27.64,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A -2012,7,2,21,30,101780,100630,99520,79.15,0,4.28,4.5600000000000005,4.62,4.65,4.67,4.69,4.7,4.71,4.73,157.73,157.57,157.5,157.44,157.38,157.32,157.27,157.21,157.1,28.26,27.91,27.740000000000002,27.54,27.35,27.16,26.96,26.78,26.400000000000002,N/A,N/A -2012,7,2,22,30,101710,100560,99450,81.11,0,5.11,5.47,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,5.6000000000000005,161.33,160.99,160.86,160.71,160.59,160.47,160.33,160.21,159.99,28.150000000000002,27.8,27.62,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A -2012,7,2,23,30,101730,100580,99470,84.37,0,5.62,6.08,6.17,6.22,6.25,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.2700000000000005,158.05,158.49,158.75,159.01,159.26,159.5,159.75,159.98,160.48,28.11,27.77,27.59,27.39,27.2,27.01,26.810000000000002,26.63,26.240000000000002,N/A,N/A -2012,7,3,0,30,101710,100560,99440,81.36,0,5.04,5.42,5.5,5.54,5.5600000000000005,5.58,5.6000000000000005,5.61,5.62,165.96,165.92000000000002,165.91,165.89000000000001,165.86,165.84,165.81,165.78,165.73,28.11,27.77,27.6,27.400000000000002,27.21,27.02,26.82,26.64,26.26,N/A,N/A -2012,7,3,1,30,101650,100500,99380,83,0,5.48,5.86,5.94,5.97,5.99,6,6,6,5.99,160.78,160.85,160.88,160.92000000000002,160.97,161.02,161.08,161.13,161.25,27.900000000000002,27.55,27.37,27.17,26.98,26.79,26.6,26.42,26.03,N/A,N/A -2012,7,3,2,30,101660,100510,99400,84.15,0,5.9,6.37,6.46,6.51,6.55,6.57,6.58,6.59,6.6000000000000005,157.51,157.37,157.27,157.16,157.05,156.96,156.85,156.74,156.52,27.82,27.46,27.28,27.07,26.89,26.69,26.490000000000002,26.310000000000002,25.92,N/A,N/A -2012,7,3,3,30,101670,100520,99410,86.51,0,6.43,7.03,7.16,7.24,7.3,7.34,7.37,7.4,7.43,169.18,168.93,168.79,168.66,168.54,168.43,168.32,168.21,168.01,27.75,27.38,27.2,27,26.8,26.61,26.42,26.23,25.84,N/A,N/A -2012,7,3,4,30,101660,100510,99400,82.28,0,6.19,6.67,6.78,6.83,6.87,6.890000000000001,6.91,6.92,6.94,171.67000000000002,171.25,171.06,170.88,170.73,170.6,170.46,170.34,170.08,27.73,27.37,27.19,26.990000000000002,26.8,26.6,26.41,26.22,25.84,N/A,N/A -2012,7,3,5,30,101680,100530,99420,80.8,0,6.42,6.9,7,7.04,7.07,7.08,7.08,7.09,7.09,179.37,178.56,178.03,177.49,177.01,176.54,176.07,175.62,174.70000000000002,27.95,27.6,27.42,27.22,27.03,26.85,26.650000000000002,26.47,26.09,N/A,N/A -2012,7,3,6,30,101670,100520,99410,83.9,0,6.34,6.86,6.99,7.0600000000000005,7.11,7.15,7.17,7.2,7.23,177.3,177.17000000000002,177.14000000000001,177.11,177.07,177.04,177,176.97,176.88,27.68,27.310000000000002,27.14,26.93,26.740000000000002,26.55,26.35,26.16,25.78,N/A,N/A -2012,7,3,7,30,101680,100530,99420,77.68,0,6.44,6.95,7.07,7.140000000000001,7.19,7.23,7.26,7.29,7.3500000000000005,183.09,182.68,182.37,182.04,181.73,181.43,181.13,180.85,180.26,27.990000000000002,27.650000000000002,27.48,27.29,27.1,26.92,26.73,26.55,26.18,N/A,N/A -2012,7,3,8,30,101720,100570,99450,78.63,0,5.26,5.68,5.7700000000000005,5.83,5.87,5.91,5.94,5.97,6.0200000000000005,188.81,188.22,187.9,187.58,187.27,186.97,186.65,186.35,185.70000000000002,27.92,27.57,27.400000000000002,27.21,27.03,26.84,26.650000000000002,26.48,26.11,N/A,N/A -2012,7,3,9,30,101740,100590,99470,77.43,0,5.6000000000000005,6.09,6.2,6.28,6.33,6.38,6.41,6.44,6.49,178.45000000000002,178.17000000000002,178.07,177.98,177.9,177.82,177.75,177.69,177.56,27.93,27.580000000000002,27.400000000000002,27.21,27.01,26.82,26.63,26.44,26.05,N/A,N/A -2012,7,3,10,30,101750,100590,99480,79.95,0,5.8500000000000005,6.32,6.41,6.47,6.5,6.5200000000000005,6.54,6.55,6.5600000000000005,179.71,179.63,179.58,179.52,179.46,179.41,179.35,179.29,179.18,27.75,27.39,27.22,27.02,26.82,26.63,26.43,26.25,25.86,N/A,N/A -2012,7,3,11,30,101750,100600,99480,76.93,0,4.95,5.33,5.42,5.48,5.53,5.5600000000000005,5.59,5.61,5.65,179.79,179.57,179.5,179.45000000000002,179.4,179.37,179.35,179.32,179.32,27.740000000000002,27.39,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A -2012,7,3,12,30,101790,100640,99530,72.04,0,5.04,5.42,5.51,5.5600000000000005,5.6000000000000005,5.63,5.66,5.68,5.71,186.58,186.38,186.27,186.16,186.06,185.97,185.88,185.8,185.63,27.96,27.63,27.46,27.26,27.07,26.88,26.68,26.5,26.12,N/A,N/A -2012,7,3,13,30,101800,100640,99530,77.11,0,4.67,4.91,4.93,4.92,4.9,4.87,4.84,4.8100000000000005,4.75,176.11,176.36,176.57,176.79,177,177.20000000000002,177.42000000000002,177.62,178.06,27.68,27.330000000000002,27.150000000000002,26.96,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A -2012,7,3,14,30,101820,100660,99550,69.66,0,3.27,3.52,3.59,3.64,3.68,3.72,3.7600000000000002,3.79,3.86,178.59,178.16,177.97,177.81,177.68,177.57,177.47,177.39000000000001,177.24,27.900000000000002,27.57,27.400000000000002,27.21,27.02,26.830000000000002,26.63,26.45,26.07,N/A,N/A -2012,7,3,15,30,101830,100680,99560,68.22,0,3.48,3.65,3.67,3.68,3.68,3.68,3.68,3.68,3.68,173.31,172.98,172.71,172.41,172.12,171.84,171.53,171.24,170.6,28.080000000000002,27.75,27.580000000000002,27.39,27.2,27.02,26.830000000000002,26.650000000000002,26.27,N/A,N/A -2012,7,3,16,30,101820,100670,99550,68.25,0,3.9,4.03,4.01,3.97,3.93,3.89,3.85,3.81,3.71,167.3,167.48,167.56,167.63,167.71,167.77,167.84,167.9,168.05,28.060000000000002,27.72,27.55,27.35,27.16,26.97,26.78,26.59,26.21,N/A,N/A -2012,7,3,17,30,101810,100650,99540,67.71000000000001,0,4.09,4.29,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.28,4.25,168.98,169.11,169.21,169.32,169.42000000000002,169.52,169.62,169.71,169.9,28.17,27.82,27.650000000000002,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A -2012,7,3,18,30,101800,100640,99530,66.89,0,4.2700000000000005,4.5,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.51,4.5,4.49,4.46,160.83,161.64000000000001,162.13,162.61,163.04,163.43,163.84,164.22,164.97,28.34,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A -2012,7,3,19,30,101760,100610,99490,72.04,0,3.9,4.14,4.19,4.22,4.24,4.25,4.26,4.2700000000000005,4.2700000000000005,162.83,162.84,162.82,162.78,162.74,162.70000000000002,162.66,162.61,162.53,28.17,27.810000000000002,27.63,27.43,27.240000000000002,27.05,26.85,26.66,26.27,N/A,N/A -2012,7,3,20,30,101720,100570,99450,63.58,0,4.41,4.7,4.75,4.78,4.79,4.8100000000000005,4.82,4.82,4.82,161.37,161.42000000000002,161.4,161.37,161.36,161.35,161.36,161.36,161.41,28.580000000000002,28.26,28.080000000000002,27.89,27.7,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,3,21,30,101650,100500,99390,62.61,0,4.74,5.12,5.2,5.24,5.2700000000000005,5.29,5.3100000000000005,5.32,5.33,163.35,163.1,163.03,162.96,162.9,162.84,162.79,162.75,162.68,28.66,28.35,28.18,27.98,27.79,27.61,27.41,27.23,26.84,N/A,N/A -2012,7,3,22,30,101620,100470,99360,64.65,0,4.66,5.03,5.1000000000000005,5.14,5.17,5.19,5.2,5.22,5.24,172.55,172.51,172.44,172.38,172.31,172.25,172.19,172.14000000000001,172.02,28.53,28.23,28.060000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A -2012,7,3,23,30,101560,100420,99300,71.5,0,5.25,5.65,5.73,5.76,5.79,5.8,5.8100000000000005,5.82,5.82,173.13,173.06,173.07,173.1,173.13,173.17000000000002,173.20000000000002,173.24,173.32,28.26,27.93,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A -2012,7,4,0,30,101530,100380,99270,72.55,0,5.09,5.45,5.5200000000000005,5.55,5.57,5.58,5.58,5.58,5.58,169.4,169.61,169.79,169.95000000000002,170.08,170.19,170.31,170.43,170.63,28.01,27.68,27.51,27.32,27.13,26.94,26.75,26.560000000000002,26.19,N/A,N/A -2012,7,4,1,30,101530,100380,99270,74.41,0,4.93,5.28,5.34,5.37,5.39,5.39,5.4,5.4,5.39,167.58,167.76,167.81,167.87,167.91,167.96,168.02,168.06,168.16,27.830000000000002,27.490000000000002,27.310000000000002,27.11,26.92,26.73,26.53,26.35,25.96,N/A,N/A -2012,7,4,2,30,101530,100380,99270,74.11,0,5.46,5.8500000000000005,5.92,5.95,5.97,5.98,5.99,5.99,5.99,159.49,159.55,159.6,159.66,159.71,159.76,159.81,159.87,159.99,27.8,27.46,27.28,27.09,26.900000000000002,26.71,26.52,26.34,25.96,N/A,N/A -2012,7,4,3,30,101540,100390,99280,71.96000000000001,0,5.41,5.84,5.93,5.98,6.01,6.03,6.04,6.05,6.04,168.01,167.89000000000001,167.88,167.87,167.85,167.84,167.83,167.81,167.78,27.88,27.54,27.36,27.17,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A -2012,7,4,4,30,101540,100390,99270,68.15,0,5.91,6.38,6.49,6.5600000000000005,6.6000000000000005,6.640000000000001,6.67,6.69,6.72,170.94,171.02,171.01,170.99,170.97,170.95000000000002,170.93,170.91,170.88,27.98,27.650000000000002,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.12,N/A,N/A -2012,7,4,5,30,101560,100410,99290,71.36,0,5.64,6.09,6.2,6.28,6.34,6.390000000000001,6.44,6.48,6.5600000000000005,168.69,168.77,168.78,168.79,168.79,168.79,168.78,168.78,168.76,27.86,27.53,27.36,27.16,26.97,26.79,26.6,26.42,26.04,N/A,N/A -2012,7,4,6,30,101610,100460,99350,78.25,0,6.54,7.03,7.12,7.15,7.17,7.17,7.15,7.140000000000001,7.09,164.25,164.45000000000002,164.5,164.53,164.54,164.55,164.54,164.53,164.49,27.650000000000002,27.28,27.1,26.900000000000002,26.71,26.51,26.310000000000002,26.13,25.740000000000002,N/A,N/A -2012,7,4,7,30,101620,100470,99350,79.45,0,6.41,6.92,7.03,7.09,7.13,7.15,7.17,7.18,7.19,173.39000000000001,173.33,173.27,173.21,173.14000000000001,173.08,173.02,172.96,172.83,27.64,27.26,27.080000000000002,26.88,26.69,26.5,26.3,26.12,25.73,N/A,N/A -2012,7,4,8,30,101610,100450,99340,78.47,0,6.68,7.21,7.3,7.3500000000000005,7.37,7.38,7.38,7.38,7.3500000000000005,165.45000000000002,165.43,165.43,165.42000000000002,165.42000000000002,165.42000000000002,165.42000000000002,165.42000000000002,165.41,27.77,27.39,27.21,27.01,26.82,26.63,26.43,26.240000000000002,25.85,N/A,N/A -2012,7,4,9,30,101630,100480,99370,71.33,0,5.89,6.41,6.54,6.640000000000001,6.71,6.7700000000000005,6.82,6.87,6.96,176.51,176.3,176.20000000000002,176.11,176.02,175.95000000000002,175.87,175.81,175.69,28.150000000000002,27.810000000000002,27.64,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A -2012,7,4,10,30,101660,100510,99390,72.55,0,6.19,6.68,6.8,6.86,6.91,6.95,6.97,7,7.03,171.53,171.61,171.62,171.63,171.62,171.62,171.61,171.6,171.58,28.19,27.85,27.68,27.48,27.29,27.1,26.91,26.72,26.34,N/A,N/A -2012,7,4,11,30,101660,100510,99400,75.29,0,5.09,5.45,5.53,5.58,5.61,5.64,5.66,5.67,5.69,176.4,176.54,176.65,176.76,176.87,176.97,177.07,177.17000000000002,177.37,27.97,27.63,27.46,27.26,27.07,26.88,26.69,26.5,26.13,N/A,N/A -2012,7,4,12,30,101670,100520,99410,81.73,0,4.69,5.07,5.15,5.22,5.26,5.29,5.32,5.34,5.37,170.37,169.91,169.82,169.74,169.69,169.65,169.62,169.6,169.56,27.580000000000002,27.21,27.03,26.82,26.63,26.43,26.23,26.04,25.66,N/A,N/A -2012,7,4,13,30,101690,100540,99420,80.61,0,4.6000000000000005,4.93,5.01,5.0600000000000005,5.09,5.12,5.15,5.17,5.21,168.64000000000001,168.29,168.13,167.98,167.85,167.74,167.63,167.54,167.35,27.67,27.310000000000002,27.13,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A -2012,7,4,14,30,101730,100570,99460,81.29,0,5.21,5.51,5.5600000000000005,5.57,5.57,5.57,5.5600000000000005,5.55,5.51,155.8,155.94,156.06,156.18,156.28,156.38,156.49,156.59,156.8,27.78,27.41,27.23,27.03,26.84,26.650000000000002,26.45,26.26,25.88,N/A,N/A -2012,7,4,15,30,101730,100580,99460,79.78,0,4.8100000000000005,5.16,5.24,5.29,5.33,5.36,5.39,5.41,5.44,155.96,156.32,156.52,156.70000000000002,156.86,157.02,157.16,157.29,157.55,27.93,27.560000000000002,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A -2012,7,4,16,30,101730,100580,99470,78.9,0,4.4,4.65,4.69,4.7,4.71,4.71,4.7,4.7,4.68,153.03,153.26,153.45000000000002,153.65,153.86,154.08,154.3,154.52,155.02,28.07,27.71,27.54,27.34,27.14,26.96,26.76,26.57,26.19,N/A,N/A -2012,7,4,17,30,101740,100590,99480,78.33,0,4.12,4.36,4.4,4.42,4.43,4.43,4.43,4.43,4.42,138.65,138.73,138.88,139.04,139.20000000000002,139.37,139.54,139.70000000000002,140.08,28.16,27.810000000000002,27.64,27.43,27.240000000000002,27.05,26.85,26.67,26.29,N/A,N/A -2012,7,4,18,30,101720,100570,99460,79.79,0,4.7700000000000005,5.11,5.2,5.25,5.29,5.32,5.3500000000000005,5.37,5.42,151.58,151.8,151.91,152.05,152.18,152.32,152.47,152.62,152.91,28.2,27.84,27.67,27.46,27.28,27.080000000000002,26.89,26.7,26.32,N/A,N/A -2012,7,4,19,30,101670,100520,99410,81.63,0,6.21,6.68,6.78,6.82,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,136.73,137.21,137.42000000000002,137.6,137.76,137.92000000000002,138.07,138.22,138.51,28.23,27.87,27.69,27.490000000000002,27.3,27.11,26.91,26.73,26.34,N/A,N/A -2012,7,4,20,30,101660,100510,99400,81.17,0,5.8,6.26,6.36,6.42,6.46,6.5,6.5200000000000005,6.54,6.57,139.45000000000002,139.37,139.47,139.6,139.73,139.86,140,140.13,140.44,28.29,27.93,27.76,27.560000000000002,27.37,27.18,26.98,26.8,26.42,N/A,N/A -2012,7,4,21,30,101620,100470,99360,74.86,0,5.62,6.04,6.12,6.16,6.19,6.2,6.21,6.21,6.22,166.98,167.11,167.18,167.24,167.29,167.34,167.4,167.44,167.55,28.51,28.18,28.01,27.810000000000002,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A -2012,7,4,22,30,101650,100500,99390,81.10000000000001,0,5.23,5.61,5.7,5.74,5.7700000000000005,5.8,5.8100000000000005,5.82,5.84,179.20000000000002,179.34,179.35,179.38,179.41,179.45000000000002,179.5,179.54,179.64000000000001,28.27,27.92,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A -2012,7,4,23,30,101610,100460,99350,80.02,0,5.21,5.57,5.63,5.66,5.67,5.67,5.67,5.66,5.64,186.46,186.22,186.20000000000002,186.20000000000002,186.19,186.19,186.19,186.18,186.19,28.330000000000002,27.990000000000002,27.82,27.61,27.43,27.23,27.04,26.85,26.47,N/A,N/A -2012,7,5,0,30,101550,100400,99290,81.01,0,5.22,5.59,5.66,5.69,5.71,5.72,5.73,5.73,5.73,171.97,172.44,172.75,173.04,173.28,173.51,173.73,173.94,174.34,28.21,27.86,27.68,27.490000000000002,27.29,27.1,26.91,26.72,26.34,N/A,N/A -2012,7,5,1,30,101520,100370,99260,83.53,0,4.7700000000000005,5.1000000000000005,5.17,5.22,5.25,5.2700000000000005,5.29,5.3,5.32,175.75,176.5,176.61,176.67000000000002,176.70000000000002,176.70000000000002,176.69,176.68,176.61,28.14,27.79,27.62,27.42,27.23,27.04,26.84,26.66,26.27,N/A,N/A -2012,7,5,2,30,101530,100390,99280,79.34,0,6.57,7.07,7.16,7.21,7.23,7.24,7.24,7.23,7.21,182.97,183.29,183.42000000000002,183.55,183.67000000000002,183.78,183.89000000000001,183.99,184.20000000000002,28.080000000000002,27.72,27.54,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A -2012,7,5,3,30,101560,100410,99300,76.01,0,5.33,5.73,5.82,5.86,5.89,5.91,5.92,5.93,5.94,190.53,190.61,190.65,190.67000000000002,190.68,190.68,190.68,190.68,190.67000000000002,28.14,27.8,27.62,27.43,27.23,27.04,26.85,26.66,26.27,N/A,N/A -2012,7,5,4,30,101560,100410,99300,77.41,0,5.29,5.65,5.71,5.74,5.75,5.76,5.75,5.75,5.73,179.13,179.44,179.59,179.72,179.83,179.93,180.03,180.12,180.31,28.01,27.650000000000002,27.48,27.28,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,7,5,5,30,101560,100420,99300,76.08,0,5.17,5.54,5.61,5.64,5.67,5.68,5.69,5.7,5.7,175.58,175.91,176.13,176.32,176.49,176.65,176.8,176.94,177.21,28,27.650000000000002,27.47,27.27,27.080000000000002,26.89,26.69,26.51,26.12,N/A,N/A -2012,7,5,6,30,101550,100400,99290,73.83,0,5.0200000000000005,5.38,5.46,5.5,5.53,5.55,5.57,5.58,5.61,178.1,177.93,177.88,177.85,177.81,177.79,177.76,177.74,177.71,27.990000000000002,27.64,27.46,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A -2012,7,5,7,30,101610,100460,99350,71.89,0,5.64,6.05,6.140000000000001,6.18,6.21,6.23,6.24,6.25,6.25,178.8,178.9,178.9,178.91,178.92000000000002,178.93,178.96,178.98,179.03,28.11,27.76,27.59,27.39,27.2,27.01,26.810000000000002,26.62,26.240000000000002,N/A,N/A -2012,7,5,8,30,101630,100480,99360,68.19,0,5.4,5.79,5.86,5.89,5.91,5.93,5.94,5.95,5.95,195.13,194.77,194.56,194.37,194.18,194.01,193.84,193.68,193.36,28.22,27.88,27.71,27.51,27.32,27.13,26.93,26.75,26.36,N/A,N/A -2012,7,5,9,30,101600,100450,99330,67.14,0,5.84,6.28,6.37,6.41,6.44,6.45,6.47,6.48,6.48,186.17000000000002,186.46,186.59,186.70000000000002,186.79,186.87,186.93,186.99,187.1,28.21,27.87,27.7,27.5,27.310000000000002,27.12,26.92,26.740000000000002,26.36,N/A,N/A -2012,7,5,10,30,101650,100500,99380,68.31,0,5.3,5.69,5.76,5.8,5.82,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,185.82,185.74,185.66,185.58,185.51,185.44,185.38,185.32,185.23,28.21,27.87,27.7,27.5,27.310000000000002,27.12,26.93,26.740000000000002,26.36,N/A,N/A -2012,7,5,11,30,101700,100550,99430,68.66,0,4.83,5.15,5.21,5.23,5.24,5.24,5.24,5.23,5.22,189.65,190.01,190.17000000000002,190.32,190.45000000000002,190.56,190.67000000000002,190.77,190.97,28.150000000000002,27.810000000000002,27.63,27.44,27.25,27.060000000000002,26.86,26.67,26.29,N/A,N/A -2012,7,5,12,30,101710,100560,99440,70.09,0,4.37,4.66,4.72,4.76,4.79,4.82,4.84,4.86,4.9,190.47,190.9,191.03,191.11,191.17000000000002,191.23000000000002,191.27,191.29,191.33,27.95,27.6,27.42,27.22,27.03,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,7,5,13,30,101760,100610,99490,75.88,0,4.16,4.42,4.47,4.5,4.51,4.53,4.54,4.54,4.55,197.57,196.91,196.62,196.35,196.12,195.9,195.70000000000002,195.51,195.15,27.740000000000002,27.39,27.21,27,26.810000000000002,26.62,26.42,26.240000000000002,25.85,N/A,N/A -2012,7,5,14,30,101780,100630,99510,76.28,0,3.7800000000000002,3.98,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,3.99,197.19,196.72,196.42000000000002,196.12,195.85,195.6,195.34,195.11,194.61,27.76,27.400000000000002,27.22,27.02,26.830000000000002,26.64,26.44,26.26,25.87,N/A,N/A -2012,7,5,15,30,101800,100640,99530,71.79,0,3.29,3.43,3.45,3.45,3.44,3.44,3.43,3.42,3.4,189.56,189.75,189.89000000000001,190.01,190.12,190.22,190.3,190.37,190.51,27.94,27.59,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.060000000000002,N/A,N/A -2012,7,5,16,30,101800,100650,99530,70.5,0,2.35,2.45,2.47,2.48,2.49,2.49,2.5,2.5,2.5,192.53,192.31,192.08,191.84,191.62,191.42000000000002,191.20000000000002,191,190.57,28.04,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.17,N/A,N/A -2012,7,5,17,30,101790,100630,99520,69.8,0,3.0500000000000003,3.2,3.21,3.22,3.23,3.23,3.23,3.23,3.22,176.66,176.96,177.08,177.20000000000002,177.32,177.43,177.57,177.69,177.95000000000002,28.11,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A -2012,7,5,18,30,101760,100600,99490,67.8,0,3.5,3.69,3.72,3.74,3.7600000000000002,3.77,3.7800000000000002,3.7800000000000002,3.8000000000000003,181.21,181.25,181.28,181.33,181.39000000000001,181.45000000000002,181.52,181.58,181.70000000000002,28.310000000000002,27.95,27.78,27.580000000000002,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A -2012,7,5,19,30,101750,100590,99480,69.58,0,3.79,4.01,4.04,4.07,4.08,4.08,4.09,4.09,4.09,183.38,182.5,182.08,181.68,181.32,180.99,180.66,180.36,179.76,28.32,27.95,27.77,27.57,27.38,27.18,26.990000000000002,26.8,26.41,N/A,N/A -2012,7,5,20,30,101690,100540,99430,66.82000000000001,0,4.38,4.61,4.63,4.63,4.62,4.61,4.6000000000000005,4.58,4.54,177.89000000000001,178.04,178.20000000000002,178.35,178.48,178.6,178.73,178.85,179.09,28.45,28.09,27.92,27.72,27.53,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,7,5,21,30,101660,100510,99400,67.41,0,4.26,4.57,4.63,4.66,4.69,4.72,4.73,4.75,4.78,182.58,182.41,182.29,182.16,182.05,181.95000000000002,181.85,181.75,181.56,28.43,28.09,27.91,27.72,27.52,27.330000000000002,27.14,26.95,26.560000000000002,N/A,N/A -2012,7,5,22,30,101640,100490,99380,68.08,0,4.45,4.75,4.79,4.82,4.83,4.83,4.83,4.83,4.82,176.42000000000002,176.46,176.45000000000002,176.42000000000002,176.41,176.4,176.38,176.37,176.34,28.38,28.04,27.87,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A -2012,7,5,23,30,101610,100460,99350,65.77,0,5.05,5.4,5.46,5.5,5.5200000000000005,5.53,5.54,5.55,5.5600000000000005,182.28,182.35,182.36,182.37,182.38,182.4,182.41,182.42000000000002,182.44,28.42,28.09,27.93,27.73,27.54,27.36,27.16,26.98,26.6,N/A,N/A -2012,7,6,0,30,101600,100450,99330,68.37,0,4.83,5.19,5.26,5.29,5.32,5.33,5.3500000000000005,5.3500000000000005,5.36,176.17000000000002,176.13,176.15,176.18,176.20000000000002,176.22,176.25,176.27,176.31,28.3,27.96,27.79,27.59,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,7,6,1,30,101550,100400,99290,65.77,0,5.5200000000000005,5.88,5.94,5.95,5.96,5.95,5.95,5.93,5.9,177.61,178.02,178.31,178.6,178.88,179.14000000000001,179.42000000000002,179.68,180.23,28.28,27.95,27.77,27.57,27.39,27.19,27,26.810000000000002,26.43,N/A,N/A -2012,7,6,2,30,101580,100420,99310,66.97,0,5.34,5.71,5.7700000000000005,5.79,5.8,5.8,5.79,5.78,5.75,183.26,183.33,183.34,183.35,183.35,183.35,183.35,183.35,183.34,28.240000000000002,27.900000000000002,27.73,27.54,27.34,27.150000000000002,26.96,26.77,26.38,N/A,N/A -2012,7,6,3,30,101580,100430,99320,62.22,0,4.99,5.37,5.44,5.49,5.5200000000000005,5.55,5.57,5.58,5.61,182.75,182.61,182.51,182.43,182.36,182.29,182.22,182.17000000000002,182.05,28.36,28.03,27.86,27.67,27.48,27.29,27.09,26.91,26.53,N/A,N/A -2012,7,6,4,30,101590,100430,99320,67.27,0,5.41,5.7700000000000005,5.83,5.8500000000000005,5.86,5.86,5.84,5.83,5.8,177.93,177.95000000000002,177.95000000000002,177.95000000000002,177.94,177.93,177.92000000000002,177.91,177.89000000000001,28.18,27.84,27.67,27.47,27.28,27.09,26.89,26.71,26.32,N/A,N/A -2012,7,6,5,30,101590,100440,99320,59.300000000000004,0,4.66,5.04,5.13,5.19,5.24,5.28,5.3100000000000005,5.34,5.4,188.15,187.77,187.53,187.28,187.05,186.83,186.6,186.38,185.9,28.490000000000002,28.17,28,27.810000000000002,27.62,27.43,27.23,27.05,26.67,N/A,N/A -2012,7,6,6,30,101610,100460,99350,60.57,0,6.16,6.5600000000000005,6.63,6.640000000000001,6.640000000000001,6.640000000000001,6.63,6.61,6.58,186.08,186.31,186.41,186.52,186.6,186.69,186.78,186.87,187.08,28.44,28.080000000000002,27.91,27.71,27.51,27.32,27.12,26.94,26.55,N/A,N/A -2012,7,6,7,30,101610,100460,99340,63,0,4.95,5.29,5.34,5.37,5.39,5.4,5.4,5.4,5.4,192.38,192.29,192.31,192.33,192.37,192.4,192.43,192.46,192.52,28.46,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,7,6,8,30,101630,100470,99360,60.120000000000005,0,5.04,5.42,5.5,5.54,5.58,5.6000000000000005,5.62,5.64,5.66,195.95000000000002,195.53,195.32,195.13,194.96,194.79,194.64000000000001,194.5,194.21,28.63,28.29,28.11,27.91,27.72,27.54,27.34,27.16,26.77,N/A,N/A -2012,7,6,9,30,101650,100490,99380,58.09,0,4.19,4.46,4.51,4.54,4.5600000000000005,4.57,4.59,4.6000000000000005,4.61,205.62,205,204.70000000000002,204.43,204.19,203.96,203.74,203.53,203.12,28.71,28.37,28.2,28.01,27.810000000000002,27.62,27.43,27.240000000000002,26.85,N/A,N/A -2012,7,6,10,30,101680,100530,99420,55.92,0,3.92,4.17,4.21,4.23,4.25,4.25,4.26,4.2700000000000005,4.2700000000000005,206.13,206.17000000000002,206.08,206.01,205.93,205.85,205.78,205.71,205.57,28.8,28.47,28.3,28.1,27.91,27.72,27.53,27.34,26.96,N/A,N/A -2012,7,6,11,30,101670,100520,99410,55.99,0,3.61,3.86,3.92,3.95,3.98,4,4.0200000000000005,4.03,4.07,214.37,214.1,213.99,213.9,213.81,213.73000000000002,213.65,213.58,213.44,28.82,28.48,28.310000000000002,28.12,27.93,27.740000000000002,27.54,27.36,26.97,N/A,N/A -2012,7,6,12,30,101690,100540,99420,55.31,0,3.5700000000000003,3.8000000000000003,3.85,3.87,3.89,3.91,3.92,3.93,3.94,227.06,226.37,225.99,225.63,225.32,225.03,224.75,224.49,223.99,28.82,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.96,N/A,N/A -2012,7,6,13,30,101750,100590,99480,56.43,0,2.75,2.9,2.92,2.94,2.95,2.95,2.96,2.96,2.97,240.58,239.89000000000001,239.48000000000002,239.09,238.72,238.37,238.02,237.69,237.03,28.73,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.45,27.27,26.88,N/A,N/A -2012,7,6,14,30,101740,100590,99470,62.59,0,2.98,3.11,3.12,3.12,3.11,3.1,3.09,3.08,3.0500000000000003,238.38,238.9,239.22,239.54,239.83,240.11,240.38,240.64000000000001,241.16,28.490000000000002,28.14,27.97,27.77,27.57,27.39,27.19,27,26.61,N/A,N/A -2012,7,6,15,30,101780,100620,99510,60.14,0,2.29,2.38,2.39,2.38,2.38,2.37,2.37,2.36,2.34,232.24,232.49,232.79,233.07,233.33,233.59,233.86,234.1,234.61,28.580000000000002,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A -2012,7,6,16,30,101760,100610,99500,62.72,0,1.9100000000000001,2,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2,241.32,241.98000000000002,242.29,242.61,242.92000000000002,243.21,243.49,243.74,244.3,28.5,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27,26.61,N/A,N/A -2012,7,6,17,30,101770,100610,99500,58.68,0,1.53,1.59,1.61,1.62,1.62,1.6300000000000001,1.6400000000000001,1.6400000000000001,1.6600000000000001,229.39000000000001,230.19,230.59,230.95000000000002,231.23000000000002,231.48000000000002,231.71,231.91,232.20000000000002,28.66,28.310000000000002,28.13,27.93,27.740000000000002,27.55,27.36,27.18,26.79,N/A,N/A -2012,7,6,18,30,101730,100570,99460,60.36,0,2.42,2.5100000000000002,2.5,2.48,2.47,2.45,2.44,2.42,2.39,181.37,181.13,180.97,180.8,180.64000000000001,180.48,180.31,180.14000000000001,179.79,28.67,28.32,28.14,27.94,27.76,27.57,27.38,27.2,26.82,N/A,N/A -2012,7,6,19,30,101700,100550,99430,60.050000000000004,0,3.09,3.22,3.23,3.23,3.22,3.21,3.2,3.19,3.16,175.91,176.11,176.26,176.4,176.54,176.69,176.85,177,177.37,28.79,28.44,28.27,28.080000000000002,27.89,27.71,27.52,27.34,26.98,N/A,N/A -2012,7,6,20,30,101630,100480,99370,59.34,0,4.6000000000000005,4.83,4.84,4.82,4.79,4.76,4.72,4.68,4.57,191.63,191.69,191.76,191.85,191.94,192.04,192.14000000000001,192.24,192.52,28.95,28.62,28.45,28.26,28.080000000000002,27.900000000000002,27.71,27.54,27.18,N/A,N/A -2012,7,6,21,30,101630,100480,99360,56.410000000000004,0,4.61,4.8500000000000005,4.86,4.84,4.82,4.78,4.74,4.7,4.6000000000000005,189.23,189.36,189.48,189.61,189.75,189.88,190.03,190.17000000000002,190.49,29.18,28.87,28.7,28.51,28.330000000000002,28.150000000000002,27.96,27.78,27.42,N/A,N/A -2012,7,6,22,30,101590,100440,99330,59.81,0,3.7,3.94,3.97,3.99,4,4,4.01,4.01,4.01,198.55,198.47,198.48000000000002,198.5,198.55,198.61,198.69,198.77,199.06,29.1,28.8,28.64,28.46,28.28,28.11,27.93,27.75,27.41,N/A,N/A -2012,7,6,23,30,101580,100430,99320,55.550000000000004,0,4.15,4.43,4.45,4.46,4.46,4.45,4.44,4.43,4.39,194.71,194.56,194.5,194.41,194.33,194.23000000000002,194.12,194.02,193.77,29.330000000000002,29.04,28.87,28.68,28.5,28.32,28.13,27.95,27.580000000000002,N/A,N/A -2012,7,7,0,30,101510,100360,99250,56.21,0,4.67,5,5.04,5.05,5.0600000000000005,5.05,5.05,5.04,5.01,191.96,191.88,191.85,191.81,191.77,191.72,191.67000000000002,191.62,191.51,29.3,29,28.84,28.650000000000002,28.47,28.29,28.1,27.93,27.560000000000002,N/A,N/A -2012,7,7,1,30,101500,100350,99240,56.410000000000004,0,4.96,5.33,5.38,5.39,5.4,5.4,5.4,5.39,5.37,194.25,193.91,193.78,193.64000000000001,193.5,193.37,193.21,193.07,192.77,29.310000000000002,29.02,28.85,28.67,28.48,28.3,28.11,27.94,27.57,N/A,N/A -2012,7,7,2,30,101530,100390,99270,55.17,0,4.6000000000000005,4.9,4.92,4.91,4.9,4.88,4.8500000000000005,4.82,4.7700000000000005,193.6,192.71,192.16,191.6,191.04,190.5,189.9,189.34,188.08,29.32,29.02,28.85,28.66,28.47,28.28,28.080000000000002,27.900000000000002,27.52,N/A,N/A -2012,7,7,3,30,101580,100430,99310,55.34,0,4.55,4.89,4.93,4.95,4.96,4.96,4.96,4.95,4.94,184.74,184.54,184.43,184.33,184.24,184.15,184.05,183.96,183.76,29.37,29.07,28.91,28.71,28.52,28.330000000000002,28.13,27.95,27.560000000000002,N/A,N/A -2012,7,7,4,30,101520,100370,99260,54.06,0,5.03,5.43,5.5,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.61,196.25,196.05,195.88,195.72,195.56,195.41,195.24,195.09,194.73000000000002,29.35,29.05,28.89,28.69,28.51,28.32,28.12,27.94,27.560000000000002,N/A,N/A -2012,7,7,5,30,101560,100410,99300,56.07,0,4.89,5.26,5.32,5.3500000000000005,5.37,5.38,5.38,5.39,5.39,202.81,202.5,202.31,202.11,201.91,201.73000000000002,201.52,201.32,200.89000000000001,29.240000000000002,28.93,28.77,28.57,28.38,28.2,28,27.82,27.44,N/A,N/A -2012,7,7,6,30,101590,100440,99330,59.74,0,4.96,5.28,5.32,5.33,5.34,5.33,5.33,5.32,5.29,205.14000000000001,205.72,206.07,206.42000000000002,206.74,207.05,207.37,207.66,208.27,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A -2012,7,7,7,30,101610,100460,99350,60.77,0,4.54,4.84,4.88,4.89,4.9,4.9,4.89,4.88,4.86,209.94,210.16,210.26,210.33,210.39000000000001,210.44,210.49,210.53,210.6,28.87,28.55,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A -2012,7,7,8,30,101610,100460,99350,62.730000000000004,0,4.92,5.2700000000000005,5.36,5.41,5.45,5.49,5.5200000000000005,5.55,5.6000000000000005,219.82,219.89000000000001,219.94,220,220.05,220.1,220.15,220.19,220.29,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.91,N/A,N/A -2012,7,7,9,30,101600,100450,99340,64.97,0,5.12,5.47,5.5200000000000005,5.54,5.55,5.55,5.55,5.55,5.53,234.14000000000001,233.68,233.42000000000002,233.13,232.87,232.62,232.36,232.12,231.62,28.62,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.740000000000002,N/A,N/A -2012,7,7,10,30,101630,100480,99370,69.62,0,4.5600000000000005,4.93,5.0200000000000005,5.09,5.15,5.19,5.23,5.2700000000000005,5.34,236.26,236.01,235.83,235.66,235.51,235.37,235.22,235.09,234.82,28.42,28.060000000000002,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,7,11,30,101650,100500,99390,69.4,0,5.57,5.91,5.96,5.97,5.98,5.98,5.97,5.96,5.94,232.02,232.32,232.52,232.71,232.89000000000001,233.05,233.21,233.35,233.63,28.5,28.14,27.97,27.77,27.57,27.39,27.19,27,26.62,N/A,N/A -2012,7,7,12,30,101650,100500,99390,75.57000000000001,0,4.76,5.12,5.2,5.25,5.28,5.3,5.32,5.33,5.34,224.16,224.69,225.07,225.45000000000002,225.8,226.14000000000001,226.47,226.78,227.41,28.26,27.89,27.71,27.51,27.32,27.12,26.92,26.740000000000002,26.35,N/A,N/A -2012,7,7,13,30,101660,100510,99390,70.22,0,4.92,5.26,5.32,5.36,5.39,5.41,5.42,5.44,5.46,260.98,260.52,260.19,259.87,259.59000000000003,259.32,259.07,258.85,258.39,28.53,28.17,28,27.8,27.61,27.42,27.23,27.04,26.66,N/A,N/A -2012,7,7,14,30,101690,100540,99430,76.37,0,4.61,4.83,4.8500000000000005,4.84,4.82,4.8,4.7700000000000005,4.75,4.69,282.63,281.49,280.91,280.31,279.75,279.2,278.63,278.09000000000003,276.95,28.1,27.73,27.55,27.35,27.17,26.98,26.78,26.6,26.22,N/A,N/A -2012,7,7,15,30,101700,100550,99430,75.03,0,4.17,4.38,4.4,4.41,4.4,4.4,4.39,4.38,4.3500000000000005,274.77,274.52,274.39,274.26,274.13,274.01,273.88,273.74,273.44,28.14,27.76,27.580000000000002,27.38,27.19,27,26.8,26.62,26.240000000000002,N/A,N/A -2012,7,7,16,30,101720,100560,99450,74.14,0,3.39,3.56,3.59,3.6,3.61,3.61,3.61,3.62,3.62,245.04,245.61,245.88,246.14000000000001,246.37,246.58,246.79,246.98000000000002,247.35,28.310000000000002,27.94,27.76,27.560000000000002,27.37,27.18,26.98,26.79,26.41,N/A,N/A -2012,7,7,17,30,101690,100540,99430,74.29,0,3.63,3.8200000000000003,3.85,3.86,3.88,3.88,3.89,3.89,3.9,209.23000000000002,209.68,209.99,210.31,210.61,210.93,211.27,211.61,212.47,28.36,27.990000000000002,27.810000000000002,27.62,27.43,27.25,27.05,26.87,26.51,N/A,N/A -2012,7,7,18,30,101690,100540,99430,73.91,0,2.94,3.06,3.08,3.08,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,184.07,184.54,184.9,185.27,185.63,185.97,186.36,186.74,187.6,28.57,28.21,28.04,27.84,27.650000000000002,27.46,27.27,27.09,26.72,N/A,N/A -2012,7,7,19,30,101640,100490,99380,69.81,0,4.53,4.8100000000000005,4.8500000000000005,4.86,4.87,4.87,4.87,4.87,4.8500000000000005,180.58,180.81,180.94,181.06,181.17000000000002,181.27,181.37,181.48,181.69,28.89,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A -2012,7,7,20,30,101590,100440,99330,67.85,0,5.38,5.73,5.79,5.82,5.83,5.84,5.84,5.84,5.82,179.83,180.07,180.20000000000002,180.34,180.49,180.64000000000001,180.8,180.96,181.31,28.97,28.62,28.45,28.26,28.07,27.88,27.68,27.5,27.13,N/A,N/A -2012,7,7,21,30,101530,100390,99280,72.96000000000001,0,6.13,6.5600000000000005,6.640000000000001,6.67,6.68,6.68,6.68,6.67,6.640000000000001,193.45000000000002,193.26,193.1,192.93,192.77,192.6,192.43,192.27,191.9,28.79,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,7,7,22,30,101530,100380,99270,75.85000000000001,0,6.82,7.38,7.49,7.55,7.58,7.61,7.62,7.62,7.62,197.62,197.64000000000001,197.62,197.59,197.56,197.54,197.51,197.48000000000002,197.42000000000002,28.73,28.37,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A -2012,7,7,23,30,101520,100370,99260,71.48,0,6.19,6.67,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.86,6.87,6.88,6.88,200.09,200.05,200.01,199.98000000000002,199.97,199.95000000000002,199.95000000000002,199.95000000000002,199.95000000000002,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.6,27.42,27.04,N/A,N/A -2012,7,8,0,30,101530,100380,99270,71.9,0,5.84,6.3,6.4,6.46,6.5,6.53,6.5600000000000005,6.57,6.6000000000000005,203.37,203.46,203.46,203.46,203.46,203.46,203.46,203.47,203.47,28.86,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A -2012,7,8,1,30,101560,100420,99310,74.61,0,6.05,6.51,6.6000000000000005,6.65,6.68,6.7,6.71,6.72,6.71,219.83,219.72,219.56,219.39000000000001,219.24,219.09,218.93,218.78,218.5,28.72,28.37,28.19,27.990000000000002,27.79,27.6,27.400000000000002,27.22,26.830000000000002,N/A,N/A -2012,7,8,2,30,101580,100430,99320,69.92,0,5.97,6.41,6.5,6.54,6.5600000000000005,6.58,6.59,6.59,6.59,214.61,214.70000000000002,214.87,215.05,215.21,215.37,215.54,215.69,216.01,28.84,28.5,28.32,28.12,27.93,27.740000000000002,27.55,27.36,26.98,N/A,N/A -2012,7,8,3,30,101550,100400,99290,70.10000000000001,0,6.49,7,7.1000000000000005,7.16,7.2,7.23,7.25,7.26,7.2700000000000005,210.45000000000002,210.3,210.27,210.24,210.20000000000002,210.17000000000002,210.13,210.1,210.02,28.78,28.43,28.25,28.05,27.86,27.67,27.47,27.29,26.900000000000002,N/A,N/A -2012,7,8,4,30,101570,100420,99310,66.98,0,6.41,6.92,7.03,7.08,7.12,7.140000000000001,7.16,7.17,7.19,205.73000000000002,205.82,205.89000000000001,205.96,206.01,206.05,206.1,206.15,206.23000000000002,28.87,28.53,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A -2012,7,8,5,30,101540,100390,99280,64.81,0,6.63,7.18,7.29,7.3500000000000005,7.390000000000001,7.42,7.43,7.45,7.46,203.88,204.53,204.78,205,205.19,205.35,205.49,205.63,205.88,28.92,28.580000000000002,28.400000000000002,28.21,28.01,27.830000000000002,27.63,27.44,27.05,N/A,N/A -2012,7,8,6,30,101580,100430,99320,60.88,0,6.3100000000000005,6.7700000000000005,6.84,6.87,6.890000000000001,6.9,6.9,6.9,6.88,212.96,212.76,212.65,212.54,212.44,212.34,212.25,212.15,211.98000000000002,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,7,8,7,30,101610,100460,99350,64.29,0,6.71,7.2700000000000005,7.390000000000001,7.46,7.5,7.53,7.55,7.57,7.59,204.13,204.37,204.46,204.51,204.56,204.59,204.61,204.63,204.65,28.900000000000002,28.560000000000002,28.38,28.19,27.990000000000002,27.8,27.61,27.42,27.03,N/A,N/A -2012,7,8,8,30,101640,100490,99380,59.980000000000004,0,6.82,7.34,7.43,7.46,7.48,7.49,7.48,7.48,7.45,200.89000000000001,201.08,201.17000000000002,201.24,201.29,201.34,201.39000000000001,201.43,201.5,29.03,28.69,28.52,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.18,N/A,N/A -2012,7,8,9,30,101630,100480,99370,59.99,0,6.2700000000000005,6.75,6.84,6.88,6.91,6.93,6.94,6.95,6.95,196.96,197.03,197.16,197.3,197.43,197.56,197.70000000000002,197.83,198.08,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.18,N/A,N/A -2012,7,8,10,30,101650,100500,99390,59.34,0,5.92,6.34,6.4,6.42,6.42,6.41,6.4,6.38,6.34,210.47,210.6,210.55,210.48000000000002,210.39000000000001,210.31,210.21,210.12,209.92000000000002,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.18,N/A,N/A -2012,7,8,11,30,101670,100520,99410,60,0,5.57,6,6.08,6.12,6.140000000000001,6.16,6.16,6.16,6.16,210.15,210.4,210.45000000000002,210.47,210.49,210.5,210.5,210.49,210.49,29.03,28.71,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.18,N/A,N/A -2012,7,8,12,30,101700,100550,99440,59.160000000000004,0,6.1000000000000005,6.55,6.62,6.65,6.67,6.67,6.67,6.67,6.65,214.06,214.09,214.12,214.17000000000002,214.21,214.25,214.29,214.32,214.4,29.09,28.76,28.59,28.39,28.2,28.01,27.82,27.63,27.240000000000002,N/A,N/A -2012,7,8,13,30,101710,100560,99450,54.32,0,4.26,4.65,4.73,4.79,4.84,4.88,4.92,4.95,5,212.08,212.43,212.64000000000001,212.82,212.98000000000002,213.11,213.25,213.37,213.6,29.28,28.96,28.79,28.6,28.400000000000002,28.22,28.02,27.830000000000002,27.45,N/A,N/A -2012,7,8,14,30,101740,100590,99470,53.9,0,4.43,4.73,4.79,4.82,4.8500000000000005,4.86,4.88,4.89,4.91,230.74,230.32,230.03,229.75,229.5,229.26,229.03,228.81,228.36,29.25,28.94,28.77,28.580000000000002,28.39,28.2,28,27.82,27.43,N/A,N/A -2012,7,8,15,30,101770,100620,99500,58.29,0,4.62,4.92,4.98,5.01,5.04,5.05,5.07,5.08,5.1000000000000005,219.97,219.77,219.65,219.54,219.43,219.32,219.23000000000002,219.13,218.96,29.01,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,7,8,16,30,101770,100620,99500,56.46,0,4.37,4.61,4.65,4.66,4.67,4.67,4.67,4.66,4.65,223.3,223.13,223.13,223.11,223.1,223.08,223.06,223.03,222.99,29.1,28.77,28.6,28.400000000000002,28.21,28.02,27.830000000000002,27.64,27.25,N/A,N/A -2012,7,8,17,30,101750,100600,99480,64.17,0,3.85,4.09,4.12,4.14,4.14,4.14,4.14,4.14,4.12,215.81,215.68,215.62,215.55,215.49,215.43,215.36,215.29,215.16,28.84,28.490000000000002,28.310000000000002,28.11,27.92,27.73,27.53,27.34,26.96,N/A,N/A -2012,7,8,18,30,101700,100550,99440,65.07000000000001,0,4.0200000000000005,4.21,4.22,4.21,4.19,4.17,4.15,4.13,4.07,202.17000000000002,201.73000000000002,201.47,201.17000000000002,200.87,200.59,200.28,199.98000000000002,199.32,28.830000000000002,28.47,28.29,28.09,27.900000000000002,27.71,27.5,27.32,26.93,N/A,N/A -2012,7,8,19,30,101680,100530,99420,67.15,0,4.5,4.76,4.8,4.82,4.82,4.82,4.82,4.82,4.8100000000000005,177.27,177.48,177.58,177.67000000000002,177.74,177.8,177.87,177.92000000000002,178.06,28.82,28.47,28.29,28.09,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A -2012,7,8,20,30,101640,100490,99380,66.17,0,4.55,4.84,4.9,4.93,4.95,4.97,4.97,4.98,5,172.37,172.64000000000001,172.86,173.11,173.35,173.61,173.9,174.17000000000002,174.84,28.87,28.54,28.37,28.18,27.990000000000002,27.810000000000002,27.62,27.44,27.07,N/A,N/A -2012,7,8,21,30,101600,100450,99340,70.12,0,5.32,5.76,5.86,5.92,5.97,6,6.03,6.05,6.08,175.17000000000002,176.3,176.73,177.11,177.43,177.70000000000002,177.96,178.19,178.62,28.84,28.48,28.3,28.1,27.900000000000002,27.72,27.52,27.330000000000002,26.94,N/A,N/A -2012,7,8,22,30,101530,100390,99280,75.31,0,6.26,6.72,6.8100000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.87,169.15,169.4,169.61,169.84,170.07,170.3,170.55,170.8,171.33,28.64,28.28,28.11,27.91,27.72,27.54,27.34,27.16,26.79,N/A,N/A -2012,7,8,23,30,101520,100370,99260,75.58,0,6.53,7.04,7.15,7.21,7.26,7.28,7.3,7.32,7.33,173.95000000000002,174.14000000000001,174.24,174.34,174.43,174.52,174.62,174.71,174.9,28.62,28.26,28.080000000000002,27.88,27.68,27.490000000000002,27.29,27.11,26.72,N/A,N/A -2012,7,9,0,30,101500,100350,99240,75.62,0,7.2,7.7700000000000005,7.9,7.96,8,8.03,8.05,8.07,8.08,179.1,179.1,179.11,179.14000000000001,179.17000000000002,179.21,179.25,179.29,179.37,28.6,28.23,28.060000000000002,27.86,27.66,27.47,27.28,27.1,26.72,N/A,N/A -2012,7,9,1,30,101470,100320,99210,73.04,0,7.3,7.88,7.99,8.040000000000001,8.07,8.08,8.08,8.08,8.05,177.31,177.42000000000002,177.56,177.69,177.82,177.95000000000002,178.07,178.19,178.45000000000002,28.62,28.25,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A -2012,7,9,2,30,101500,100350,99240,70.36,0,6.890000000000001,7.45,7.57,7.62,7.66,7.69,7.71,7.72,7.72,176.86,176.91,176.96,177.01,177.04,177.08,177.12,177.16,177.25,28.77,28.42,28.25,28.04,27.86,27.66,27.47,27.28,26.900000000000002,N/A,N/A -2012,7,9,3,30,101520,100370,99260,70.58,0,7.17,7.7700000000000005,7.91,7.98,8.03,8.06,8.09,8.11,8.13,178.9,178.76,178.67000000000002,178.59,178.51,178.42000000000002,178.35,178.27,178.13,28.810000000000002,28.46,28.29,28.09,27.900000000000002,27.71,27.51,27.32,26.94,N/A,N/A -2012,7,9,4,30,101500,100350,99240,73.5,0,7.71,8.370000000000001,8.5,8.56,8.6,8.620000000000001,8.63,8.63,8.620000000000001,174.01,174.12,174.22,174.33,174.42000000000002,174.53,174.63,174.73,174.94,28.73,28.37,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A -2012,7,9,5,30,101540,100390,99280,68.88,0,6.99,7.5600000000000005,7.68,7.74,7.7700000000000005,7.8,7.8100000000000005,7.82,7.83,175.81,176.03,176.18,176.34,176.48,176.63,176.79,176.94,177.25,28.95,28.62,28.44,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,7,9,6,30,101520,100380,99270,70.62,0,6.72,7.3,7.43,7.5,7.55,7.58,7.61,7.62,7.640000000000001,186.61,186.73,186.81,186.91,187,187.09,187.19,187.28,187.47,28.91,28.55,28.38,28.18,27.98,27.79,27.59,27.41,27.02,N/A,N/A -2012,7,9,7,30,101540,100390,99280,74.17,0,6.88,7.44,7.5600000000000005,7.63,7.67,7.69,7.71,7.72,7.72,194.26,194.41,194.48000000000002,194.55,194.61,194.67000000000002,194.73000000000002,194.79,194.89000000000001,28.79,28.43,28.26,28.05,27.86,27.67,27.47,27.28,26.900000000000002,N/A,N/A -2012,7,9,8,30,101530,100390,99280,72.99,0,6.5200000000000005,7.0600000000000005,7.18,7.24,7.29,7.32,7.34,7.3500000000000005,7.37,203.24,203.24,203.26,203.29,203.31,203.34,203.37,203.4,203.47,28.82,28.47,28.3,28.1,27.91,27.72,27.52,27.330000000000002,26.95,N/A,N/A -2012,7,9,9,30,101530,100390,99280,73.72,0,6.78,7.2700000000000005,7.38,7.43,7.47,7.5,7.51,7.53,7.5600000000000005,205.49,205.67000000000002,205.76,205.86,205.95000000000002,206.04,206.14000000000001,206.24,206.44,28.8,28.45,28.28,28.09,27.900000000000002,27.72,27.52,27.34,26.97,N/A,N/A -2012,7,9,10,30,101550,100400,99290,76.26,0,5.91,6.28,6.36,6.4,6.43,6.45,6.46,6.47,6.5,210.83,211.20000000000002,211.44,211.68,211.91,212.13,212.35,212.56,213.01,28.75,28.400000000000002,28.240000000000002,28.04,27.86,27.67,27.48,27.3,26.93,N/A,N/A -2012,7,9,11,30,101560,100420,99300,78.93,0,5.79,6.23,6.33,6.38,6.43,6.45,6.48,6.49,6.51,217.16,217.23000000000002,217.34,217.48000000000002,217.6,217.72,217.85,217.98000000000002,218.23000000000002,28.77,28.42,28.25,28.05,27.86,27.67,27.48,27.29,26.91,N/A,N/A -2012,7,9,12,30,101560,100410,99300,71.47,0,5.12,5.63,5.75,5.83,5.88,5.93,5.96,5.99,6.03,226.14000000000001,226.34,226.58,226.83,227.07,227.31,227.54,227.76,228.22,29.29,28.96,28.8,28.6,28.41,28.22,28.03,27.85,27.47,N/A,N/A -2012,7,9,13,30,101530,100380,99270,78.17,0,5.71,6.04,6.08,6.07,6.05,6.0200000000000005,5.98,5.95,5.87,239.71,239.73000000000002,239.78,239.82,239.85,239.88,239.92000000000002,239.94,240.02,28.8,28.45,28.27,28.07,27.89,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,7,9,14,30,101550,100400,99290,75.98,0,5.07,5.51,5.62,5.69,5.75,5.79,5.82,5.8500000000000005,5.9,241.79,242.35,242.75,243.17000000000002,243.56,243.93,244.29,244.63,245.32,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A -2012,7,9,15,30,101560,100420,99310,77.29,0,5.73,6.2,6.3100000000000005,6.38,6.42,6.46,6.48,6.51,6.54,266.67,266.12,265.64,265.14,264.7,264.29,263.91,263.55,262.89,29,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A -2012,7,9,16,30,101530,100380,99270,78.66,1.1,3.48,3.97,4.21,4.43,4.63,4.83,5.03,5.21,5.58,235.96,234.92000000000002,234.46,234.07,233.86,233.77,233.92000000000002,234.17000000000002,235.19,28.22,27.92,27.79,27.64,27.5,27.37,27.240000000000002,27.12,26.86,N/A,N/A -2012,7,9,17,30,101490,100350,99240,72.48,0,5.55,5.92,5.97,5.98,5.98,5.96,5.94,5.92,5.86,220.63,220.56,220.6,220.61,220.61,220.61,220.6,220.59,220.55,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,7,9,18,30,101440,100300,99190,74.78,0,6.49,6.99,7.08,7.11,7.13,7.140000000000001,7.13,7.13,7.1000000000000005,221.63,221.70000000000002,221.75,221.79,221.83,221.86,221.9,221.94,222.02,29.23,28.89,28.72,28.51,28.330000000000002,28.14,27.94,27.76,27.38,N/A,N/A -2012,7,9,19,30,101420,100280,99170,74.03,0,7.92,8.64,8.8,8.870000000000001,8.93,8.97,8.99,9,9.02,222.78,222.89000000000001,223.02,223.14000000000001,223.24,223.33,223.41,223.49,223.64000000000001,29.32,28.990000000000002,28.82,28.62,28.44,28.25,28.05,27.87,27.490000000000002,N/A,N/A -2012,7,9,20,30,101410,100270,99160,73.85000000000001,0,8.07,8.75,8.88,8.94,8.97,8.99,8.99,8.99,8.97,235.59,235.4,235.17000000000002,234.92000000000002,234.68,234.43,234.17000000000002,233.91,233.34,29.05,28.71,28.54,28.34,28.16,27.97,27.79,27.61,27.25,N/A,N/A -2012,7,9,21,30,101350,100210,99100,73.18,0,6.3,6.84,6.99,7.09,7.17,7.24,7.3,7.36,7.47,220.89000000000001,220.61,220.61,220.62,220.63,220.65,220.68,220.71,220.8,29.04,28.71,28.55,28.36,28.18,28,27.810000000000002,27.64,27.28,N/A,N/A -2012,7,9,22,30,101350,100210,99100,72.71000000000001,0,5.57,6.04,6.15,6.21,6.26,6.29,6.3100000000000005,6.34,6.37,202.95000000000002,203.3,203.54,203.77,203.97,204.17000000000002,204.36,204.54,204.91,29.32,29,28.830000000000002,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A -2012,7,9,23,30,101330,100190,99090,74.65,0,5.72,6.19,6.29,6.3500000000000005,6.4,6.43,6.46,6.49,6.53,200.03,200.26,200.44,200.64000000000001,200.83,201.02,201.22,201.41,201.84,29.18,28.85,28.69,28.5,28.310000000000002,28.12,27.93,27.75,27.38,N/A,N/A -2012,7,10,0,30,101290,100150,99040,74.82000000000001,0,6.87,7.43,7.55,7.61,7.65,7.67,7.69,7.7,7.72,202.8,202.81,202.82,202.86,202.91,202.96,203.03,203.09,203.25,29.240000000000002,28.92,28.76,28.560000000000002,28.38,28.19,28,27.82,27.45,N/A,N/A -2012,7,10,1,30,101310,100170,99060,73.2,0,6.65,7.19,7.3,7.3500000000000005,7.38,7.390000000000001,7.4,7.4,7.390000000000001,203.42000000000002,203.74,203.97,204.18,204.36,204.53,204.69,204.84,205.13,29.080000000000002,28.740000000000002,28.57,28.37,28.18,27.990000000000002,27.79,27.61,27.23,N/A,N/A -2012,7,10,2,30,101290,100150,99040,76.91,0,7.6000000000000005,8.31,8.47,8.57,8.63,8.67,8.700000000000001,8.72,8.74,215.54,215.68,215.72,215.73000000000002,215.74,215.75,215.73000000000002,215.71,215.67000000000002,28.94,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A -2012,7,10,3,30,101320,100180,99070,77.07000000000001,0,7.25,7.84,7.98,8.06,8.13,8.18,8.22,8.25,8.31,210.9,210.87,210.95000000000002,211.06,211.16,211.27,211.38,211.48000000000002,211.70000000000002,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.62,27.43,27.05,N/A,N/A -2012,7,10,4,30,101340,100190,99090,74.96000000000001,0,9.28,10.09,10.25,10.32,10.35,10.370000000000001,10.370000000000001,10.370000000000001,10.35,216.99,216.4,216.22,216.06,215.94,215.84,215.77,215.70000000000002,215.61,29.150000000000002,28.810000000000002,28.64,28.44,28.26,28.07,27.88,27.7,27.32,N/A,N/A -2012,7,10,5,30,101290,100150,99040,74.72,0,9.05,9.870000000000001,10.06,10.16,10.22,10.26,10.290000000000001,10.32,10.34,214.28,214.38,214.39000000000001,214.38,214.37,214.33,214.29,214.25,214.15,29,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A -2012,7,10,6,30,101310,100170,99060,75.8,0,9.46,10.5,10.76,10.92,11.040000000000001,11.120000000000001,11.18,11.22,11.290000000000001,211.63,212.03,212.18,212.3,212.39000000000001,212.47,212.53,212.59,212.67000000000002,28.91,28.580000000000002,28.41,28.2,28.01,27.82,27.63,27.44,27.05,N/A,N/A -2012,7,10,7,30,101290,100140,99040,67.84,0,8.97,9.870000000000001,10.07,10.18,10.27,10.32,10.370000000000001,10.4,10.450000000000001,218.38,218.58,218.67000000000002,218.76,218.84,218.91,218.99,219.06,219.19,29.16,28.85,28.68,28.48,28.3,28.11,27.91,27.73,27.35,N/A,N/A -2012,7,10,8,30,101280,100140,99030,71.28,0,9.02,9.98,10.21,10.35,10.46,10.53,10.59,10.64,10.71,222.78,223.04,223.17000000000002,223.28,223.38,223.46,223.53,223.6,223.72,29.09,28.77,28.59,28.400000000000002,28.2,28.01,27.82,27.63,27.25,N/A,N/A -2012,7,10,9,30,101320,100180,99070,67.76,0,8.98,9.85,10.05,10.17,10.25,10.3,10.34,10.370000000000001,10.41,228.03,228.23000000000002,228.32,228.41,228.49,228.57,228.64000000000001,228.71,228.85,29.19,28.88,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,7,10,10,30,101310,100170,99060,66.8,0,7.930000000000001,8.75,8.94,9.07,9.16,9.24,9.3,9.35,9.43,228.55,228.91,229.1,229.28,229.45000000000002,229.6,229.75,229.89000000000001,230.15,29.22,28.91,28.740000000000002,28.55,28.36,28.17,27.97,27.79,27.400000000000002,N/A,N/A -2012,7,10,11,30,101350,100210,99100,72.49,0,9.16,10.16,10.41,10.56,10.66,10.73,10.78,10.81,10.86,234.1,234.35,234.47,234.57,234.65,234.72,234.78,234.85,234.95000000000002,29.02,28.69,28.52,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.17,N/A,N/A -2012,7,10,12,30,101360,100220,99110,71.85000000000001,0,8.4,9.27,9.47,9.59,9.67,9.73,9.77,9.81,9.85,231.8,231.97,232.11,232.23000000000002,232.32,232.41,232.48000000000002,232.55,232.66,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.560000000000002,27.18,N/A,N/A -2012,7,10,13,30,101380,100230,99130,73.73,0,7.86,8.620000000000001,8.82,8.94,9.02,9.08,9.13,9.17,9.23,228.84,229.47,229.78,230.07,230.34,230.58,230.82,231.03,231.46,28.96,28.64,28.47,28.27,28.080000000000002,27.89,27.69,27.51,27.13,N/A,N/A -2012,7,10,14,30,101390,100230,99120,77.2,12.8,11.91,12.81,12.96,13.01,13.030000000000001,13.02,13.02,13.01,13.02,266.42,265.61,265.49,265.23,264.87,264.45,263.87,263.28000000000003,261.83,26.75,26.310000000000002,26.16,26.02,25.88,25.76,25.64,25.53,25.310000000000002,N/A,N/A -2012,7,10,15,30,101400,100250,99130,83.36,0.4,9.040000000000001,9.69,9.82,9.86,9.88,9.88,9.88,9.870000000000001,9.91,227.33,228.64000000000001,229.48000000000002,230.4,231.3,232.24,233.37,234.52,238.05,26.78,26.330000000000002,26.16,25.98,25.810000000000002,25.66,25.51,25.37,25.150000000000002,N/A,N/A -2012,7,10,16,30,101350,100190,99080,81.65,0,9.85,10.68,10.82,10.870000000000001,10.870000000000001,10.85,10.8,10.75,10.620000000000001,226.15,226.29,226.56,226.85,227.18,227.51,227.93,228.35,229.63,26.88,26.41,26.22,26.03,25.84,25.67,25.5,25.34,25.03,N/A,N/A -2012,7,10,17,30,101320,100170,99050,81.4,0,10.81,11.71,11.870000000000001,11.92,11.94,11.92,11.88,11.83,11.700000000000001,207.9,207.82,207.73000000000002,207.58,207.42000000000002,207.25,207.05,206.86,206.43,27.060000000000002,26.580000000000002,26.38,26.17,25.98,25.79,25.59,25.41,25.04,N/A,N/A -2012,7,10,18,30,101400,100240,99130,81.77,0,11.02,12.07,12.290000000000001,12.4,12.47,12.51,12.52,12.530000000000001,12.52,225.84,226.05,226.16,226.3,226.43,226.57,226.72,226.86,227.20000000000002,26.8,26.29,26.09,25.87,25.68,25.48,25.29,25.11,24.740000000000002,N/A,N/A -2012,7,10,19,30,101460,100300,99180,88.43,0,10.13,10.950000000000001,11.14,11.23,11.290000000000001,11.33,11.36,11.38,11.4,231.01,231.26,231.46,231.68,231.9,232.12,232.35,232.58,233.1,26.080000000000002,25.55,25.330000000000002,25.12,24.92,24.73,24.53,24.35,23.97,N/A,N/A -2012,7,10,20,30,101410,100250,99120,89.81,37.7,9.99,10.86,11.09,11.22,11.32,11.4,11.46,11.52,11.620000000000001,235.03,234.95000000000002,234.94,234.94,234.94,234.94,234.96,234.98000000000002,235.04,25.3,24.76,24.560000000000002,24.36,24.18,24,23.830000000000002,23.67,23.35,N/A,N/A -2012,7,10,21,30,101360,100210,99080,76.82000000000001,2.2,8.99,9.74,9.950000000000001,10.07,10.17,10.25,10.32,10.39,10.53,232.38,232.58,232.70000000000002,232.81,232.92000000000002,233.02,233.14000000000001,233.25,233.49,26.150000000000002,25.650000000000002,25.45,25.25,25.05,24.87,24.68,24.5,24.14,N/A,N/A -2012,7,10,22,30,101290,100140,99020,65.93,0,5.34,5.7,5.79,5.84,5.88,5.91,5.93,5.95,5.99,238.92000000000002,239.25,239.49,239.71,239.92000000000002,240.1,240.29,240.47,240.84,27.46,27.060000000000002,26.88,26.67,26.48,26.29,26.09,25.91,25.53,N/A,N/A -2012,7,10,23,30,101240,100090,98980,75.72,0,4.57,4.82,4.86,4.89,4.9,4.91,4.92,4.93,4.94,194.73000000000002,195.31,195.69,196.08,196.47,196.86,197.29,197.68,198.63,26.990000000000002,26.59,26.400000000000002,26.2,26.01,25.82,25.63,25.44,25.07,N/A,N/A -2012,7,11,0,30,101240,100090,98980,78.06,0,5.32,5.68,5.7700000000000005,5.82,5.86,5.89,5.91,5.93,5.96,196.27,196.57,196.76,196.94,197.1,197.25,197.41,197.56,197.89000000000001,27.25,26.84,26.650000000000002,26.45,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,7,11,1,30,101240,100090,98980,80.39,0,5.54,5.91,5.98,6.01,6.03,6.05,6.05,6.0600000000000005,6.07,190.5,190.97,191.25,191.54,191.81,192.08,192.37,192.64000000000001,193.24,27.43,27.03,26.85,26.64,26.45,26.26,26.07,25.88,25.5,N/A,N/A -2012,7,11,2,30,101230,100080,98970,78.58,0,6.01,6.38,6.45,6.49,6.5,6.51,6.51,6.51,6.49,190.64000000000001,190.82,190.98,191.17000000000002,191.35,191.54,191.77,191.99,192.55,27.71,27.32,27.14,26.94,26.75,26.57,26.38,26.2,25.84,N/A,N/A -2012,7,11,3,30,101290,100140,99030,72.72,0,7.0600000000000005,7.75,7.91,8.01,8.09,8.15,8.2,8.24,8.290000000000001,199.78,200.15,200.3,200.42000000000002,200.51,200.59,200.64000000000001,200.69,200.75,28.34,27.97,27.79,27.580000000000002,27.39,27.19,26.990000000000002,26.810000000000002,26.42,N/A,N/A -2012,7,11,4,30,101280,100140,99030,68.06,0,6.18,6.78,6.94,7.04,7.13,7.19,7.25,7.3,7.38,198.63,199.16,199.33,199.48000000000002,199.62,199.74,199.85,199.95000000000002,200.14000000000001,28.82,28.48,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A -2012,7,11,5,30,101280,100140,99030,66.25,0,7.22,7.9,8.040000000000001,8.120000000000001,8.18,8.21,8.23,8.25,8.26,200.83,200.69,200.65,200.62,200.59,200.57,200.54,200.52,200.48000000000002,29.09,28.77,28.6,28.400000000000002,28.21,28.02,27.82,27.64,27.25,N/A,N/A -2012,7,11,6,30,101320,100170,99060,64.79,0,6.75,7.390000000000001,7.55,7.640000000000001,7.71,7.76,7.8,7.84,7.890000000000001,206.42000000000002,206.27,206.19,206.12,206.05,205.99,205.93,205.88,205.77,29.18,28.89,28.73,28.53,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,7,11,7,30,101340,100200,99090,65.41,0,7.45,8.13,8.27,8.35,8.4,8.44,8.47,8.49,8.52,206.22,206.24,206.25,206.28,206.3,206.33,206.36,206.38,206.44,29.1,28.8,28.64,28.44,28.26,28.07,27.87,27.69,27.310000000000002,N/A,N/A -2012,7,11,8,30,101350,100210,99100,65,0,7.01,7.73,7.9,8.01,8.09,8.15,8.19,8.23,8.290000000000001,208.55,208.63,208.64000000000001,208.62,208.6,208.57,208.54,208.5,208.43,29.2,28.91,28.740000000000002,28.55,28.36,28.18,27.98,27.8,27.42,N/A,N/A -2012,7,11,9,30,101370,100230,99120,67.97,0,6.93,7.6000000000000005,7.75,7.83,7.9,7.94,7.98,8.01,8.040000000000001,199.57,199.62,199.64000000000001,199.66,199.68,199.69,199.70000000000002,199.70000000000002,199.72,28.990000000000002,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,7,11,10,30,101400,100260,99150,69.66,0,7.3,7.99,8.14,8.23,8.290000000000001,8.33,8.36,8.38,8.41,209.02,208.75,208.54,208.33,208.15,207.98000000000002,207.81,207.66,207.35,28.94,28.62,28.45,28.26,28.07,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,7,11,11,30,101390,100250,99140,69.79,0,7.49,8.26,8.44,8.55,8.63,8.69,8.73,8.76,8.790000000000001,207.53,208.04,208.18,208.26,208.32,208.36,208.37,208.39000000000001,208.38,29.01,28.7,28.54,28.34,28.150000000000002,27.96,27.76,27.580000000000002,27.2,N/A,N/A -2012,7,11,12,30,101390,100250,99140,68.81,0,6.3500000000000005,6.94,7.07,7.15,7.21,7.26,7.3,7.33,7.390000000000001,208.24,208.11,208.09,208.08,208.08,208.07,208.08,208.08,208.09,29,28.69,28.52,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.18,N/A,N/A -2012,7,11,13,30,101380,100230,99130,71.81,0,5.9,6.42,6.55,6.63,6.68,6.73,6.76,6.79,6.8500000000000005,212.95000000000002,212.95000000000002,212.91,212.88,212.85,212.82,212.8,212.78,212.75,28.88,28.560000000000002,28.39,28.19,28.01,27.82,27.62,27.43,27.05,N/A,N/A -2012,7,11,14,30,101390,100250,99130,79.37,0.4,7.55,8.02,8.07,8.05,8.01,7.97,7.91,7.8500000000000005,7.73,232.46,232.22,231.92000000000002,231.59,231.24,230.87,230.43,230.01,228.94,27.810000000000002,27.42,27.240000000000002,27.05,26.87,26.68,26.5,26.32,25.97,N/A,N/A -2012,7,11,15,30,101410,100270,99160,75.36,0,5.13,5.49,5.5600000000000005,5.58,5.59,5.6000000000000005,5.59,5.59,5.5600000000000005,236.4,236.07,236.07,236.05,236.03,235.99,235.93,235.86,235.66,28.32,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.830000000000002,26.45,N/A,N/A -2012,7,11,16,30,101400,100260,99150,76.71000000000001,0,3.91,4.12,4.16,4.19,4.2,4.21,4.21,4.22,4.22,214.82,216.37,217.1,217.76,218.32,218.84,219.34,219.82,220.70000000000002,28.29,27.95,27.78,27.57,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A -2012,7,11,17,30,101470,100310,99190,88.29,5.5,16.48,18.05,18.39,18.54,18.62,18.650000000000002,18.64,18.62,18.52,207.69,207.68,207.73000000000002,207.83,207.96,208.1,208.29,208.47,208.97,25.82,25.2,24.98,24.76,24.560000000000002,24.38,24.19,24.02,23.68,N/A,N/A -2012,7,11,18,30,101430,100270,99150,86.77,1.1,12.97,14.22,14.51,14.66,14.75,14.8,14.83,14.84,14.83,226.78,226.84,226.83,226.8,226.78,226.75,226.73000000000002,226.70000000000002,226.66,25.72,25.150000000000002,24.93,24.72,24.53,24.34,24.16,23.990000000000002,23.64,N/A,N/A -2012,7,11,19,30,101420,100260,99140,87.11,0,9.81,10.72,10.94,11.08,11.17,11.24,11.3,11.35,11.43,229.66,229.47,229.37,229.26,229.15,229.03,228.91,228.8,228.54,26.17,25.67,25.46,25.25,25.05,24.86,24.66,24.48,24.1,N/A,N/A -2012,7,11,20,30,101410,100260,99140,84.16,0,11.21,12.27,12.530000000000001,12.67,12.780000000000001,12.84,12.89,12.93,12.99,229.67000000000002,229.79,229.84,229.88,229.93,229.97,230.01,230.04,230.11,26.73,26.240000000000002,26.03,25.810000000000002,25.61,25.42,25.22,25.03,24.650000000000002,N/A,N/A -2012,7,11,21,30,101370,100220,99110,79.61,0,11.450000000000001,12.61,12.91,13.09,13.21,13.31,13.38,13.43,13.51,228.21,228.53,228.74,228.92000000000002,229.07,229.21,229.34,229.45000000000002,229.67000000000002,27.29,26.830000000000002,26.63,26.42,26.21,26.02,25.82,25.63,25.240000000000002,N/A,N/A -2012,7,11,22,30,101350,100200,99080,84.41,0,8.25,8.97,9.16,9.28,9.370000000000001,9.44,9.5,9.56,9.65,211.64000000000001,211.71,211.78,211.84,211.9,211.95000000000002,212.01,212.06,212.18,26.34,25.87,25.67,25.47,25.27,25.080000000000002,24.89,24.71,24.330000000000002,N/A,N/A -2012,7,11,23,30,101280,100130,99020,83.91,0,5.04,5.48,5.62,5.73,5.83,5.91,5.98,6.05,6.18,226.12,225.16,224.72,224.32,223.96,223.62,223.3,223.01,222.44,26.990000000000002,26.59,26.41,26.2,26.02,25.830000000000002,25.63,25.45,25.080000000000002,N/A,N/A -2012,7,12,0,30,101250,100100,98990,79.27,0,4.78,5.08,5.14,5.17,5.19,5.2,5.21,5.21,5.22,213.94,214.04,214.06,214.1,214.13,214.16,214.20000000000002,214.25,214.37,27.55,27.17,26.990000000000002,26.78,26.6,26.400000000000002,26.21,26.03,25.650000000000002,N/A,N/A -2012,7,12,1,30,101230,100080,98970,78.8,0,3.99,4.22,4.2700000000000005,4.3,4.32,4.34,4.36,4.38,4.42,225.28,225.55,225.71,225.86,226.02,226.18,226.34,226.51,226.9,27.87,27.51,27.330000000000002,27.14,26.95,26.76,26.57,26.39,26.03,N/A,N/A -2012,7,12,2,30,101250,100100,98990,74.60000000000001,0,4.53,4.84,4.92,4.97,5,5.03,5.0600000000000005,5.08,5.13,232.3,232.27,232.34,232.4,232.45000000000002,232.5,232.54,232.59,232.68,28.21,27.86,27.69,27.490000000000002,27.3,27.11,26.92,26.740000000000002,26.36,N/A,N/A -2012,7,12,3,30,101320,100170,99060,73.88,0,4.7700000000000005,5.1000000000000005,5.17,5.2,5.23,5.25,5.26,5.2700000000000005,5.29,211.36,211.12,210.99,210.87,210.76,210.66,210.56,210.47,210.28,28.42,28.080000000000002,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A -2012,7,12,4,30,101320,100170,99060,72.34,0,4.46,4.73,4.78,4.8,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8,181.32,181.46,181.59,181.71,181.82,181.92000000000002,182.02,182.11,182.3,28.43,28.09,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A -2012,7,12,5,30,101310,100160,99050,74.13,0,5.3,5.68,5.76,5.8,5.82,5.84,5.8500000000000005,5.86,5.87,173.07,173.18,173.23,173.28,173.32,173.36,173.41,173.46,173.57,28.490000000000002,28.150000000000002,27.98,27.78,27.6,27.400000000000002,27.21,27.03,26.650000000000002,N/A,N/A -2012,7,12,6,30,101310,100160,99050,78.51,0,7.640000000000001,8.3,8.44,8.52,8.56,8.59,8.61,8.620000000000001,8.620000000000001,172.31,172.3,172.31,172.32,172.33,172.34,172.35,172.35,172.38,28.37,28.02,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A -2012,7,12,7,30,101350,100210,99100,77.8,0,7.88,8.58,8.76,8.84,8.91,8.94,8.97,8.99,9.01,170.96,171.13,171.19,171.25,171.3,171.36,171.4,171.45000000000002,171.55,28.45,28.11,27.94,27.740000000000002,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,7,12,8,30,101350,100200,99100,79.04,0,7.7700000000000005,8.48,8.66,8.76,8.83,8.88,8.93,8.96,9.01,175.06,175.18,175.24,175.28,175.32,175.36,175.4,175.43,175.5,28.43,28.09,27.92,27.72,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A -2012,7,12,9,30,101310,100170,99060,78.93,0,8.83,9.67,9.870000000000001,9.98,10.06,10.11,10.14,10.17,10.200000000000001,179.13,179.19,179.22,179.25,179.29,179.32,179.35,179.37,179.44,28.47,28.13,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,7,12,10,30,101300,100160,99050,82.55,0,8.88,9.75,9.96,10.08,10.17,10.23,10.28,10.31,10.35,176.55,176.59,176.64000000000001,176.69,176.73,176.76,176.79,176.82,176.89000000000001,28.36,28,27.830000000000002,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A -2012,7,12,11,30,101290,100150,99040,76.94,0,10.34,11.33,11.57,11.69,11.77,11.82,11.86,11.89,11.93,177,177.62,177.85,178.06,178.23,178.39000000000001,178.55,178.70000000000002,179,28.61,28.28,28.11,27.92,27.73,27.54,27.36,27.17,26.8,N/A,N/A -2012,7,12,12,30,101270,100120,99020,80.39,0,8.67,9.51,9.72,9.85,9.94,10,10.05,10.09,10.14,175.85,175.74,175.62,175.54,175.48,175.44,175.41,175.39000000000001,175.36,28.51,28.17,28,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,7,12,13,30,101450,100290,99160,92.35000000000001,52.400000000000006,17.52,19.23,19.59,19.81,19.94,20.04,20.09,20.13,20.17,216.41,217.68,218.15,218.56,218.91,219.21,219.49,219.74,220.19,25.01,24.36,24.12,23.89,23.68,23.490000000000002,23.29,23.11,22.740000000000002,N/A,N/A -2012,7,12,14,30,101520,100360,99230,95.51,124.5,9,10.02,10.32,10.56,10.76,10.94,11.120000000000001,11.28,11.68,219.35,219.77,219.99,220.21,220.41,220.62,220.84,221.05,221.57,24.42,23.87,23.67,23.47,23.29,23.12,22.95,22.79,22.47,N/A,N/A -2012,7,12,15,30,101550,100390,99270,94.07000000000001,41.400000000000006,8.59,9.34,9.5,9.58,9.63,9.66,9.68,9.69,9.69,218.35,218.17000000000002,218.12,218.07,218.01,217.96,217.89000000000001,217.82,217.66,24.990000000000002,24.46,24.25,24.04,23.85,23.67,23.48,23.3,22.95,N/A,N/A -2012,7,12,16,30,101540,100370,99250,89.66,14.600000000000001,8.63,9.26,9.38,9.44,9.48,9.49,9.51,9.51,9.52,206.68,206.9,207.02,207.14000000000001,207.26,207.38,207.51,207.64000000000001,207.94,24.87,24.330000000000002,24.13,23.92,23.73,23.54,23.36,23.18,22.84,N/A,N/A -2012,7,12,17,30,101510,100350,99220,87.49,0,7.44,7.930000000000001,8.040000000000001,8.08,8.11,8.13,8.15,8.16,8.18,187.42000000000002,187.73,187.91,188.11,188.32,188.53,188.79,189.05,189.76,24.830000000000002,24.310000000000002,24.1,23.89,23.7,23.51,23.32,23.150000000000002,22.79,N/A,N/A -2012,7,12,18,30,101460,100300,99180,86.82000000000001,1.5,6.26,6.67,6.75,6.79,6.8100000000000005,6.82,6.82,6.83,6.84,173.59,173.70000000000002,173.8,173.9,174.02,174.14000000000001,174.29,174.45000000000002,174.89000000000001,25.55,25.080000000000002,24.89,24.68,24.490000000000002,24.310000000000002,24.12,23.94,23.59,N/A,N/A -2012,7,12,19,30,101440,100290,99170,82.53,0,4.0600000000000005,4.28,4.32,4.3500000000000005,4.37,4.39,4.4,4.41,4.43,194.39000000000001,194.93,195.17000000000002,195.44,195.73000000000002,196.04,196.4,196.75,197.71,26.25,25.84,25.650000000000002,25.44,25.25,25.060000000000002,24.87,24.69,24.32,N/A,N/A -2012,7,12,20,30,101460,100300,99190,79.9,0,3.31,3.48,3.52,3.5500000000000003,3.5700000000000003,3.6,3.61,3.63,3.66,236.41,235.22,234.55,233.88,233.27,232.69,232.1,231.54,230.42000000000002,26.98,26.6,26.42,26.21,26.02,25.830000000000002,25.63,25.45,25.07,N/A,N/A -2012,7,12,21,30,101430,100280,99170,78.19,0,2.24,2.32,2.33,2.33,2.34,2.33,2.33,2.33,2.33,199.49,200.62,201.32,202.01,202.62,203.20000000000002,203.76,204.28,205.31,27.330000000000002,26.96,26.78,26.580000000000002,26.38,26.19,25.990000000000002,25.810000000000002,25.42,N/A,N/A -2012,7,12,22,30,101430,100280,99170,79.19,0,3.54,3.7,3.71,3.7,3.69,3.68,3.67,3.65,3.62,181.29,181.63,181.88,182.16,182.41,182.64000000000001,182.89000000000001,183.13,183.64000000000001,27.400000000000002,27.03,26.85,26.64,26.45,26.26,26.060000000000002,25.88,25.490000000000002,N/A,N/A -2012,7,12,23,30,101480,100330,99210,80.67,0,11.9,13.06,13.25,13.3,13.3,13.26,13.200000000000001,13.14,12.96,224.74,225.6,225.68,225.65,225.59,225.5,225.39000000000001,225.27,224.99,26.93,26.44,26.240000000000002,26.02,25.82,25.63,25.43,25.25,24.87,N/A,N/A -2012,7,13,0,30,101350,100190,99060,85.11,0,8.72,9.31,9.41,9.44,9.450000000000001,9.450000000000001,9.450000000000001,9.450000000000001,9.58,223.4,223.58,223.75,223.92000000000002,224.11,224.31,224.58,224.86,226.02,25.12,24.61,24.41,24.22,24.04,23.88,23.72,23.57,23.35,N/A,N/A -2012,7,13,1,30,101250,100100,98980,75.97,0,7.71,8.22,8.31,8.34,8.36,8.36,8.370000000000001,8.38,8.58,184.17000000000002,184.25,184.44,184.70000000000002,185.02,185.37,185.91,186.48,189.92000000000002,26.78,26.36,26.18,26,25.830000000000002,25.66,25.51,25.37,25.19,N/A,N/A -2012,7,13,2,30,101250,100100,98990,80.18,0,4.57,4.75,4.76,4.73,4.69,4.65,4.6000000000000005,4.54,4.4,146.38,146.85,147.21,147.62,148.07,148.57,149.25,149.96,153.16,26.71,26.310000000000002,26.13,25.94,25.75,25.57,25.39,25.22,24.900000000000002,N/A,N/A -2012,7,13,3,30,101310,100160,99050,78.08,0,3.77,3.92,3.93,3.92,3.9,3.88,3.85,3.8200000000000003,3.7600000000000002,154,154.67000000000002,155.08,155.55,156.09,156.68,157.48,158.32,161.72,27.29,26.92,26.75,26.560000000000002,26.38,26.19,26.01,25.84,25.53,N/A,N/A -2012,7,13,4,30,101320,100170,99060,81,0,6.1000000000000005,6.5600000000000005,6.65,6.7,6.72,6.73,6.74,6.74,6.72,169.73,169.75,169.81,169.88,169.94,170,170.08,170.15,170.34,27.8,27.42,27.25,27.04,26.85,26.66,26.47,26.28,25.91,N/A,N/A -2012,7,13,5,30,101340,100190,99080,81.47,0,6.59,7.1000000000000005,7.21,7.2700000000000005,7.3,7.32,7.33,7.34,7.34,168.85,169.15,169.3,169.49,169.66,169.84,170.02,170.21,170.63,27.95,27.580000000000002,27.400000000000002,27.2,27.01,26.82,26.63,26.44,26.060000000000002,N/A,N/A -2012,7,13,6,30,101380,100230,99130,84.26,0,6.0600000000000005,6.5200000000000005,6.63,6.69,6.73,6.75,6.7700000000000005,6.78,6.8,163.09,163.21,163.28,163.36,163.43,163.5,163.58,163.66,163.82,27.94,27.580000000000002,27.41,27.21,27.02,26.82,26.63,26.44,26.060000000000002,N/A,N/A -2012,7,13,7,30,101420,100270,99160,84.13,0,5.71,6.16,6.26,6.33,6.38,6.41,6.44,6.46,6.5,170.78,170.88,170.91,170.93,170.95000000000002,170.97,170.99,171.01,171.05,28.09,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A -2012,7,13,8,30,101430,100280,99170,84.8,0,6.3500000000000005,6.91,7.03,7.11,7.16,7.2,7.22,7.24,7.25,181.59,181.52,181.52,181.54,181.56,181.59,181.62,181.64000000000001,181.71,28.240000000000002,27.89,27.72,27.51,27.32,27.13,26.93,26.740000000000002,26.36,N/A,N/A -2012,7,13,9,30,101400,100260,99150,73.91,0,6.87,7.73,7.99,8.19,8.370000000000001,8.52,8.67,8.8,9.040000000000001,218.38,217.21,216.56,216.05,215.64000000000001,215.3,215.03,214.8,214.46,28.52,28.22,28.05,27.87,27.68,27.5,27.32,27.14,26.78,N/A,N/A -2012,7,13,10,30,101420,100270,99160,79.32000000000001,0,9.34,10.27,10.49,10.620000000000001,10.71,10.78,10.82,10.86,10.91,216.41,216.85,217.03,217.22,217.39000000000001,217.55,217.71,217.86,218.16,28.37,28.04,27.87,27.67,27.48,27.29,27.1,26.91,26.53,N/A,N/A -2012,7,13,11,30,101420,100270,99170,78.54,0,8.83,9.77,9.99,10.13,10.22,10.290000000000001,10.34,10.38,10.42,232.29,232.13,232.07,232.02,231.97,231.92000000000002,231.88,231.85,231.78,28.580000000000002,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.75,N/A,N/A -2012,7,13,12,30,101430,100280,99170,72.83,0,9.16,10.09,10.28,10.39,10.46,10.5,10.53,10.540000000000001,10.56,239.99,239.95000000000002,239.89000000000001,239.83,239.78,239.74,239.70000000000002,239.66,239.59,28.73,28.43,28.26,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,7,13,13,30,101500,100360,99240,76.63,0,7.8,8.55,8.75,8.86,8.94,9,9.040000000000001,9.08,9.120000000000001,239.53,239.56,239.64000000000001,239.72,239.79,239.86,239.93,239.99,240.1,28.6,28.3,28.14,27.94,27.76,27.57,27.38,27.19,26.810000000000002,N/A,N/A -2012,7,13,14,30,101510,100360,99250,73.68,0,7.57,8.36,8.540000000000001,8.66,8.75,8.82,8.870000000000001,8.92,9,249.24,249.01000000000002,248.88,248.73000000000002,248.58,248.43,248.28,248.13,247.82,28.92,28.63,28.47,28.27,28.09,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A -2012,7,13,15,30,101510,100360,99250,74.99,0,8.07,8.870000000000001,9.05,9.16,9.23,9.290000000000001,9.33,9.36,9.4,242.87,243.35,243.62,243.88,244.1,244.32,244.53,244.73000000000002,245.12,28.77,28.46,28.3,28.1,27.91,27.72,27.53,27.34,26.96,N/A,N/A -2012,7,13,16,30,101540,100390,99280,77.04,0,5.63,6.11,6.24,6.33,6.390000000000001,6.45,6.49,6.53,6.61,260.74,260,259.53000000000003,259.04,258.59000000000003,258.17,257.75,257.36,256.56,28.6,28.29,28.12,27.93,27.740000000000002,27.560000000000002,27.36,27.18,26.810000000000002,N/A,N/A -2012,7,13,17,30,101490,100340,99240,74.59,0,6.38,6.91,7.0200000000000005,7.0600000000000005,7.09,7.1000000000000005,7.1000000000000005,7.1000000000000005,7.08,215.95000000000002,216.5,216.78,217.03,217.24,217.43,217.62,217.79,218.13,28.87,28.560000000000002,28.39,28.2,28.01,27.830000000000002,27.63,27.45,27.07,N/A,N/A -2012,7,13,18,30,101490,100350,99240,76.19,0,6.07,6.6000000000000005,6.7,6.75,6.7700000000000005,6.78,6.78,6.78,6.75,211.56,211.77,211.94,212.08,212.20000000000002,212.3,212.39000000000001,212.48000000000002,212.66,28.93,28.62,28.46,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A -2012,7,13,19,30,101530,100380,99270,82.64,0.4,5.04,5.4,5.2700000000000005,5.11,4.94,4.78,4.6000000000000005,4.43,4.08,1.25,0.9400000000000001,0.44,359.78000000000003,359.01,358.2,357.18,356.22,353.7,27.46,27.080000000000002,26.91,26.73,26.560000000000002,26.38,26.21,26.05,25.72,N/A,N/A -2012,7,13,20,30,101650,100480,99340,92.01,142.8,10.120000000000001,10.89,11.040000000000001,11.07,11.07,11.040000000000001,10.99,10.93,10.75,35.01,34.660000000000004,34.230000000000004,33.76,33.28,32.8,32.230000000000004,31.7,30.34,23.69,23.06,22.84,22.62,22.42,22.23,22.04,21.87,21.51,N/A,N/A -2012,7,13,21,30,101600,100430,99300,89.31,0,7.59,8.07,8.18,8.23,8.26,8.27,8.27,8.28,8.290000000000001,31.61,30.86,30.52,30.11,29.67,29.21,28.64,28.080000000000002,26.54,23.92,23.37,23.16,22.96,22.77,22.59,22.41,22.25,21.93,N/A,N/A -2012,7,13,22,30,101570,100410,99280,88.32000000000001,23.400000000000002,4.98,5.36,5.51,5.65,5.84,6.05,6.47,6.92,7.59,298.96,300.48,301.56,302.76,304.31,306.06,308.7,311.5,313.79,24.11,23.66,23.490000000000002,23.330000000000002,23.2,23.1,23.1,23.13,23.55,N/A,N/A -2012,7,13,23,30,101460,100300,99180,82.22,0.7000000000000001,7.04,7.3500000000000005,7.36,7.3100000000000005,7.25,7.19,7.13,7.08,6.94,216.33,217.14000000000001,217.55,218.09,218.78,219.55,220.95000000000002,222.39000000000001,228.32,24.89,24.42,24.240000000000002,24.07,23.91,23.77,23.67,23.6,23.900000000000002,N/A,N/A -2012,7,14,0,30,101330,100170,99050,73.87,0,6.61,7.0200000000000005,7.12,7.16,7.19,7.21,7.24,7.26,7.3,240.12,239.84,239.65,239.41,239.12,238.8,238.3,237.76,236.14000000000001,26.51,26.11,25.95,25.78,25.63,25.490000000000002,25.37,25.26,25.16,N/A,N/A -2012,7,14,1,30,101340,100190,99070,78.60000000000001,0,1.6300000000000001,1.79,1.84,1.9000000000000001,1.95,2,2.06,2.11,2.35,256.56,257.32,257.87,258.44,258.98,259.51,260.08,260.65,262.4,26.76,26.39,26.22,26.02,25.830000000000002,25.64,25.44,25.26,24.87,N/A,N/A -2012,7,14,2,30,101410,100260,99140,77.4,0,3.36,3.5500000000000003,3.59,3.62,3.63,3.65,3.66,3.67,3.69,283.72,283.44,283.27,283.13,283.03000000000003,282.96,282.94,282.95,282.93,27.54,27.18,27,26.8,26.61,26.42,26.22,26.04,25.650000000000002,N/A,N/A -2012,7,14,3,30,101390,100240,99130,75.28,0,0.99,0.97,0.9500000000000001,0.92,0.92,0.92,1.01,1.1500000000000001,1.82,327.23,319.56,314.63,308.03000000000003,300.18,290.93,278.28000000000003,263.47,242.82,27.69,27.37,27.21,27.02,26.85,26.68,26.52,26.38,26.13,N/A,N/A -2012,7,14,4,30,101400,100260,99150,73.78,0,2.92,3.0700000000000003,3.09,3.09,3.08,3.0700000000000003,3.0700000000000003,3.06,3.04,202.17000000000002,201.63,201.45000000000002,201.25,201.08,200.91,200.74,200.58,200.23000000000002,27.990000000000002,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.52,26.13,N/A,N/A -2012,7,14,5,30,101420,100270,99150,75.72,0,4.07,4.2,4.17,4.12,4.07,4.0200000000000005,3.96,3.91,3.79,169.35,168.44,168,167.54,167.09,166.64000000000001,166.16,165.71,164.73,27.650000000000002,27.3,27.13,26.94,26.75,26.560000000000002,26.37,26.19,25.82,N/A,N/A -2012,7,14,6,30,101410,100260,99150,79.33,0,4.05,4.3500000000000005,4.43,4.49,4.53,4.5600000000000005,4.59,4.61,4.65,163.43,164.07,164.34,164.57,164.77,164.94,165.1,165.25,165.53,27.53,27.18,27,26.8,26.61,26.42,26.22,26.03,25.650000000000002,N/A,N/A -2012,7,14,7,30,101450,100310,99190,84.63,0,4.74,5.0600000000000005,5.13,5.16,5.19,5.2,5.21,5.22,5.22,170.11,170.46,170.69,170.91,171.1,171.28,171.47,171.64000000000001,171.99,27.5,27.14,26.96,26.76,26.57,26.38,26.18,25.990000000000002,25.61,N/A,N/A -2012,7,14,8,30,101490,100340,99230,83.86,0,3.98,4.28,4.3500000000000005,4.41,4.45,4.49,4.5200000000000005,4.54,4.59,182.58,182.83,182.96,183.07,183.16,183.25,183.33,183.41,183.57,27.63,27.29,27.12,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A -2012,7,14,9,30,101500,100350,99240,79.39,0,4.58,4.9,4.97,5,5.0200000000000005,5.03,5.04,5.05,5.0600000000000005,202.79,202.92000000000002,202.9,202.85,202.8,202.75,202.69,202.63,202.48000000000002,27.85,27.52,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.01,N/A,N/A -2012,7,14,10,30,101520,100370,99260,73.83,0,4.5600000000000005,4.84,4.89,4.91,4.92,4.92,4.92,4.92,4.91,202.87,203.6,204.02,204.42000000000002,204.8,205.15,205.51,205.84,206.51,28.1,27.78,27.61,27.41,27.23,27.04,26.84,26.66,26.28,N/A,N/A -2012,7,14,11,30,101560,100410,99290,82.3,0,4.1,4.37,4.43,4.47,4.5,4.51,4.53,4.54,4.5600000000000005,214.58,214.08,213.89000000000001,213.73000000000002,213.6,213.48000000000002,213.38,213.29,213.12,27.75,27.42,27.25,27.05,26.86,26.67,26.48,26.29,25.91,N/A,N/A -2012,7,14,12,30,101590,100430,99310,87.03,0,8.870000000000001,9.4,9.41,9.34,9.24,9.120000000000001,8.97,8.82,8.43,228.72,229.25,229.25,229.21,229.15,229.09,229,228.91,228.71,25.69,25.22,25.03,24.830000000000002,24.650000000000002,24.48,24.3,24.14,23.82,N/A,N/A -2012,7,14,13,30,101580,100420,99300,75.28,0,2.88,3.0100000000000002,3.31,4.17,4.73,5.08,5.37,5.65,6.09,270.82,266.33,260.79,249.34,243.83,242.69,241.84,241.14000000000001,240.37,26.35,26.060000000000002,26.080000000000002,26.330000000000002,26.39,26.35,26.240000000000002,26.13,25.87,N/A,N/A -2012,7,14,14,30,101640,100490,99370,82.16,0,1.54,1.6,1.62,1.67,1.83,2.14,2.49,2.87,3.45,312.49,308.24,305.3,300.79,293.99,283.86,277.85,274.03000000000003,273.56,26.42,26.07,25.91,25.73,25.62,25.560000000000002,25.52,25.490000000000002,25.44,N/A,N/A -2012,7,14,15,30,101640,100490,99370,81.48,0,2.05,2.21,2.25,2.2800000000000002,2.32,2.35,2.38,2.41,2.48,260.28000000000003,259.86,259.71,259.55,259.38,259.21,259.01,258.8,258.22,26.990000000000002,26.62,26.45,26.25,26.060000000000002,25.87,25.67,25.490000000000002,25.12,N/A,N/A -2012,7,14,16,30,101630,100480,99360,79.21000000000001,0,0.43,0.45,0.47000000000000003,0.48,0.5,0.53,0.58,0.65,0.98,351.08,350.67,349.79,348.6,346.91,344.68,341.15000000000003,336.99,322.8,27.22,26.87,26.7,26.51,26.34,26.16,26,25.86,25.68,N/A,N/A -2012,7,14,17,30,101610,100460,99350,80.99,0,1.4000000000000001,1.42,1.4000000000000001,1.3800000000000001,1.36,1.33,1.31,1.28,1.21,57.53,58.49,58.69,58.9,59.13,59.370000000000005,59.620000000000005,59.88,60.53,27.41,27.05,26.87,26.67,26.48,26.29,26.1,25.92,25.54,N/A,N/A -2012,7,14,18,30,101580,100420,99310,79.23,0,2.08,2.14,2.14,2.13,2.11,2.1,2.08,2.07,2.04,123.60000000000001,124.95,125.73,126.58,127.42,128.27,129.26,130.21,132.61,27.66,27.29,27.11,26.92,26.73,26.54,26.34,26.16,25.79,N/A,N/A -2012,7,14,19,30,101580,100430,99320,76.66,0,1.72,1.8,1.81,1.81,1.82,1.82,1.82,1.83,1.83,166.55,167.84,168.66,169.5,170.29,171.07,171.9,172.69,174.52,27.97,27.6,27.43,27.22,27.03,26.84,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,7,14,20,30,101520,100370,99260,77.24,0,3.66,3.88,3.92,3.95,3.97,3.99,4,4.0200000000000005,4.04,184.24,185.19,185.70000000000002,186.20000000000002,186.64000000000001,187.06,187.48,187.87,188.66,28.16,27.8,27.62,27.42,27.23,27.03,26.84,26.650000000000002,26.27,N/A,N/A -2012,7,14,21,30,101490,100340,99230,78.9,0,3.63,3.85,3.89,3.91,3.92,3.93,3.94,3.94,3.95,198.07,198.41,198.63,198.83,198.99,199.15,199.29,199.41,199.64000000000001,28.19,27.830000000000002,27.66,27.46,27.27,27.080000000000002,26.88,26.7,26.310000000000002,N/A,N/A -2012,7,14,22,30,101470,100320,99210,81.12,0,4.17,4.43,4.47,4.49,4.5,4.5,4.5,4.5,4.5,184.88,185.56,186.14000000000001,186.70000000000002,187.20000000000002,187.67000000000002,188.15,188.61,189.53,28.09,27.75,27.580000000000002,27.38,27.19,27,26.8,26.62,26.240000000000002,N/A,N/A -2012,7,14,23,30,101440,100290,99180,81.26,0,4.1,4.37,4.42,4.44,4.46,4.47,4.48,4.48,4.49,168.20000000000002,168.57,168.78,168.98,169.18,169.38,169.6,169.8,170.29,28.09,27.76,27.59,27.39,27.2,27.01,26.82,26.63,26.25,N/A,N/A -2012,7,15,0,30,101450,100310,99200,80.72,0,3.33,3.5500000000000003,3.6,3.63,3.65,3.66,3.67,3.68,3.7,173.12,173.52,173.68,173.84,173.97,174.1,174.23,174.36,174.65,28.22,27.91,27.740000000000002,27.54,27.36,27.17,26.97,26.79,26.41,N/A,N/A -2012,7,15,1,30,101430,100290,99180,81.07000000000001,0,3.71,3.95,3.99,4,4.01,4.01,4.01,4,3.99,182.12,182.21,182.35,182.52,182.69,182.86,183.05,183.25,183.68,28.19,27.88,27.71,27.52,27.330000000000002,27.14,26.95,26.76,26.38,N/A,N/A -2012,7,15,2,30,101480,100330,99220,80.72,0,3.5,3.72,3.77,3.79,3.8000000000000003,3.81,3.81,3.81,3.81,175.1,175.59,175.88,176.17000000000002,176.42000000000002,176.67000000000002,176.9,177.12,177.56,28.17,27.86,27.69,27.490000000000002,27.3,27.11,26.92,26.73,26.35,N/A,N/A -2012,7,15,3,30,101490,100340,99230,83.93,0,3.04,3.2,3.22,3.22,3.22,3.21,3.2,3.19,3.17,200.4,200,199.74,199.45000000000002,199.16,198.88,198.59,198.31,197.69,27.98,27.650000000000002,27.48,27.28,27.1,26.91,26.71,26.52,26.14,N/A,N/A -2012,7,15,4,30,101470,100320,99210,84.01,0,3.67,3.89,3.93,3.95,3.96,3.97,3.97,3.97,3.97,177.02,177.48,177.68,177.88,178.06,178.24,178.41,178.57,178.91,27.88,27.55,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A -2012,7,15,5,30,101480,100330,99220,83.98,0,3.98,4.24,4.29,4.3100000000000005,4.33,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,165.39000000000001,165.87,166.02,166.18,166.33,166.48,166.64000000000001,166.79,167.1,27.85,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A -2012,7,15,6,30,101480,100330,99220,85.29,0,3.27,3.48,3.5300000000000002,3.5700000000000003,3.6,3.62,3.64,3.67,3.72,169.9,170.82,171.55,172.26,172.9,173.52,174.14000000000001,174.74,175.99,27.830000000000002,27.5,27.34,27.14,26.96,26.77,26.59,26.41,26.04,N/A,N/A -2012,7,15,7,30,101540,100390,99280,84.65,0,3.79,4.04,4.08,4.1,4.11,4.11,4.11,4.11,4.1,192.22,192.61,192.85,193.07,193.27,193.44,193.62,193.78,194.1,27.97,27.63,27.46,27.26,27.07,26.88,26.68,26.5,26.12,N/A,N/A -2012,7,15,8,30,101520,100370,99260,85.14,0,4.61,4.96,5.05,5.11,5.16,5.2,5.24,5.2700000000000005,5.33,192.38,193.63,194.38,195.1,195.71,196.27,196.8,197.28,198.18,27.95,27.62,27.46,27.26,27.080000000000002,26.89,26.7,26.52,26.14,N/A,N/A -2012,7,15,9,30,101540,100390,99280,84.47,0,5.29,5.66,5.73,5.76,5.78,5.8,5.8,5.8,5.8,207.98000000000002,207.83,207.87,207.96,208.06,208.17000000000002,208.29,208.41,208.66,27.89,27.55,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.04,N/A,N/A -2012,7,15,10,30,101570,100420,99310,82.69,0,5.73,6.15,6.23,6.2700000000000005,6.29,6.3,6.3,6.3,6.28,215.33,215.82,216.09,216.35,216.6,216.83,217.06,217.27,217.73000000000002,27.96,27.61,27.44,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A -2012,7,15,11,30,101610,100460,99350,82.65,0,5.37,5.7700000000000005,5.87,5.91,5.94,5.96,5.97,5.98,5.98,233.39000000000001,233.35,233.34,233.31,233.27,233.24,233.20000000000002,233.16,233.07,27.96,27.62,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.1,N/A,N/A -2012,7,15,12,30,101630,100480,99370,79.58,0,4.76,5.08,5.15,5.19,5.22,5.24,5.26,5.2700000000000005,5.3,217.06,217.78,218.19,218.61,218.99,219.35,219.72,220.06,220.74,28.03,27.7,27.53,27.34,27.150000000000002,26.96,26.78,26.59,26.22,N/A,N/A -2012,7,15,13,30,101690,100540,99430,78.93,0,3.0500000000000003,3.24,3.2800000000000002,3.31,3.33,3.34,3.36,3.37,3.39,235.39000000000001,235.91,236.16,236.41,236.64000000000001,236.86,237.07,237.26,237.64000000000001,28.03,27.7,27.52,27.330000000000002,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A -2012,7,15,14,30,101700,100550,99430,74.75,0,4.25,4.47,4.49,4.48,4.46,4.45,4.43,4.4,4.3500000000000005,248.78,248.41,248.18,247.94,247.72,247.51000000000002,247.29,247.07,246.61,28.16,27.830000000000002,27.66,27.46,27.27,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,7,15,15,30,101710,100560,99440,74.68,0,2.67,2.85,2.9,2.93,2.96,2.99,3.0100000000000002,3.0300000000000002,3.0700000000000003,250.5,250,249.72,249.46,249.22,248.99,248.77,248.56,248.16,28.12,27.79,27.62,27.42,27.240000000000002,27.04,26.85,26.67,26.28,N/A,N/A -2012,7,15,16,30,101690,100540,99430,73.56,0,2.47,2.59,2.61,2.63,2.64,2.65,2.65,2.66,2.67,262.15,261.96,261.75,261.55,261.37,261.2,261.01,260.82,260.44,28.22,27.88,27.7,27.5,27.32,27.13,26.93,26.740000000000002,26.36,N/A,N/A -2012,7,15,17,30,101680,100530,99420,72.95,0,1.61,1.7,1.72,1.74,1.75,1.77,1.78,1.79,1.82,248.54,249.49,250.06,250.59,251.04,251.46,251.87,252.25,252.98000000000002,28.26,27.91,27.740000000000002,27.54,27.35,27.16,26.97,26.78,26.400000000000002,N/A,N/A -2012,7,15,18,30,101650,100500,99390,74.07000000000001,0,2.47,2.52,2.5100000000000002,2.48,2.45,2.42,2.39,2.36,2.29,188.8,188.22,188.01,187.78,187.58,187.37,187.16,186.96,186.51,28.26,27.900000000000002,27.73,27.53,27.34,27.150000000000002,26.96,26.77,26.39,N/A,N/A -2012,7,15,19,30,101650,100500,99390,67.37,0,2.29,2.38,2.39,2.38,2.37,2.36,2.35,2.34,2.31,173.70000000000002,173.83,173.91,173.97,174.02,174.07,174.09,174.11,174.11,28.6,28.26,28.09,27.89,27.7,27.52,27.32,27.14,26.77,N/A,N/A -2012,7,15,20,30,101610,100460,99350,71.29,0,3.36,3.52,3.54,3.54,3.54,3.5300000000000002,3.52,3.52,3.5,166.74,166.84,166.84,166.85,166.87,166.89000000000001,166.93,166.96,167.06,28.46,28.11,27.94,27.740000000000002,27.55,27.37,27.18,26.990000000000002,26.62,N/A,N/A -2012,7,15,21,30,101540,100400,99290,71.61,0,4.68,4.98,5.03,5.05,5.07,5.07,5.07,5.07,5.05,171.8,171.89000000000001,172,172.08,172.16,172.24,172.31,172.38,172.5,28.46,28.13,27.96,27.77,27.580000000000002,27.39,27.2,27.02,26.64,N/A,N/A -2012,7,15,22,30,101520,100370,99260,71.08,0,5.3100000000000005,5.71,5.79,5.82,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,5.84,165.46,165.61,165.64000000000001,165.66,165.68,165.69,165.70000000000002,165.71,165.73,28.44,28.13,27.97,27.78,27.59,27.400000000000002,27.21,27.03,26.650000000000002,N/A,N/A -2012,7,15,23,30,101510,100360,99250,73.38,0,5.33,5.74,5.8100000000000005,5.8500000000000005,5.87,5.89,5.9,5.9,5.9,164.81,164.8,164.84,164.87,164.89000000000001,164.9,164.91,164.92000000000002,164.95000000000002,28.29,27.98,27.810000000000002,27.61,27.43,27.240000000000002,27.04,26.86,26.48,N/A,N/A -2012,7,16,0,30,101530,100380,99270,77.27,0,5.08,5.48,5.57,5.62,5.65,5.67,5.69,5.7,5.72,163.1,163.36,163.47,163.57,163.67000000000002,163.77,163.86,163.95000000000002,164.14000000000001,28.12,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.29,N/A,N/A -2012,7,16,1,30,101530,100380,99270,74.79,0,5.48,5.92,6,6.05,6.08,6.1000000000000005,6.12,6.13,6.140000000000001,166.73,166.67000000000002,166.66,166.66,166.65,166.63,166.63,166.62,166.59,28.23,27.91,27.75,27.55,27.36,27.17,26.98,26.79,26.41,N/A,N/A -2012,7,16,2,30,101520,100370,99260,74.87,0,4.87,5.25,5.33,5.38,5.42,5.44,5.47,5.49,5.5200000000000005,168.74,168.87,168.91,168.95000000000002,168.99,169.02,169.05,169.07,169.13,28.2,27.88,27.72,27.52,27.330000000000002,27.14,26.95,26.77,26.39,N/A,N/A -2012,7,16,3,30,101560,100410,99300,81.44,0,5.67,6.13,6.22,6.2700000000000005,6.3100000000000005,6.33,6.34,6.3500000000000005,6.36,157.76,157.8,157.86,157.95000000000002,158.03,158.11,158.20000000000002,158.29,158.47,28.02,27.68,27.51,27.310000000000002,27.12,26.93,26.73,26.55,26.16,N/A,N/A -2012,7,16,4,30,101550,100400,99290,84.93,0,5.61,6.05,6.16,6.22,6.26,6.3,6.32,6.34,6.37,156.71,157.19,157.43,157.68,157.89000000000001,158.1,158.31,158.49,158.88,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A -2012,7,16,5,30,101550,100410,99300,85.39,0,5.18,5.59,5.69,5.74,5.78,5.8100000000000005,5.83,5.8500000000000005,5.88,162.28,162.6,162.73,162.86,162.98,163.08,163.19,163.29,163.49,27.86,27.52,27.34,27.14,26.95,26.76,26.57,26.38,26,N/A,N/A -2012,7,16,6,30,101590,100440,99330,79.16,0,4.03,4.34,4.41,4.45,4.49,4.5200000000000005,4.54,4.5600000000000005,4.6000000000000005,180.56,180.66,180.73,180.81,180.89000000000001,180.98,181.07,181.15,181.35,28.03,27.69,27.52,27.32,27.13,26.94,26.75,26.560000000000002,26.18,N/A,N/A -2012,7,16,7,30,101610,100460,99340,81.22,0,4.69,4.97,5.0200000000000005,5.04,5.05,5.05,5.05,5.04,5.03,192.88,192.48000000000002,192.24,192,191.78,191.57,191.34,191.13,190.70000000000002,27.97,27.63,27.45,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.11,N/A,N/A -2012,7,16,8,30,101590,100450,99330,81.99,0,4.5200000000000005,4.8500000000000005,4.92,4.96,4.98,5.01,5.0200000000000005,5.04,5.0600000000000005,186.52,186.43,186.43,186.44,186.44,186.44,186.45000000000002,186.47,186.51,27.94,27.6,27.42,27.22,27.03,26.84,26.64,26.46,26.080000000000002,N/A,N/A -2012,7,16,9,30,101610,100460,99350,81.68,0,4.25,4.5200000000000005,4.58,4.62,4.64,4.66,4.68,4.69,4.71,185.11,184.92000000000002,184.87,184.81,184.76,184.72,184.67000000000002,184.63,184.52,27.95,27.61,27.43,27.240000000000002,27.05,26.86,26.66,26.48,26.1,N/A,N/A -2012,7,16,10,30,101610,100460,99340,77.48,0.7000000000000001,4.5,4.83,4.9,4.93,4.96,4.98,5,5.01,5.0200000000000005,182.07,182.11,182.14000000000001,182.14000000000001,182.13,182.11,182.07,182.03,181.93,28.16,27.830000000000002,27.66,27.46,27.27,27.09,26.89,26.71,26.32,N/A,N/A -2012,7,16,11,30,101620,100470,99360,78.66,0,4.91,5.23,5.29,5.3100000000000005,5.32,5.33,5.32,5.32,5.29,180.93,181.04,181.01,180.96,180.9,180.84,180.79,180.73,180.63,28.07,27.72,27.55,27.35,27.16,26.97,26.78,26.59,26.21,N/A,N/A -2012,7,16,12,30,101650,100500,99390,76.86,0,3.63,3.84,3.87,3.87,3.88,3.87,3.87,3.86,3.84,185.27,184.62,184.34,184.04,183.77,183.52,183.26,183.02,182.54,28.13,27.8,27.63,27.43,27.240000000000002,27.05,26.86,26.67,26.29,N/A,N/A -2012,7,16,13,30,101660,100510,99400,78.02,0,2.89,3.0500000000000003,3.09,3.12,3.13,3.15,3.16,3.16,3.18,176.87,176.76,176.67000000000002,176.62,176.58,176.56,176.55,176.56,176.57,28.01,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.17,N/A,N/A -2012,7,16,14,30,101690,100540,99420,76.98,0,2.61,2.71,2.72,2.72,2.71,2.7,2.69,2.69,2.67,199.02,199.05,198.92000000000002,198.8,198.69,198.58,198.46,198.34,198.06,28.09,27.75,27.580000000000002,27.39,27.2,27.01,26.810000000000002,26.63,26.25,N/A,N/A -2012,7,16,15,30,101680,100530,99420,77.36,0,3.02,3.16,3.17,3.17,3.17,3.16,3.15,3.15,3.13,177.79,176.96,176.58,176.18,175.81,175.47,175.11,174.78,174.09,28.11,27.76,27.59,27.39,27.19,27,26.810000000000002,26.62,26.240000000000002,N/A,N/A -2012,7,16,16,30,101680,100530,99410,81.18,0,2.73,2.79,2.7800000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7800000000000002,2.7800000000000002,166.05,163.03,160.96,158.62,156.21,153.65,150.81,148.03,141.85,27.41,27.07,26.900000000000002,26.72,26.55,26.38,26.22,26.060000000000002,25.75,N/A,N/A -2012,7,16,17,30,101640,100490,99380,80.69,0,2.49,2.65,2.69,2.73,2.7600000000000002,2.79,2.82,2.84,2.9,150.03,148.14000000000001,147.07,146.04,145.11,144.22,143.33,142.48,140.79,27.84,27.48,27.3,27.1,26.92,26.73,26.53,26.35,25.98,N/A,N/A -2012,7,16,18,30,101590,100440,99330,76.58,0,3.63,3.8200000000000003,3.85,3.86,3.87,3.88,3.88,3.88,3.88,133.28,133.38,133.28,133.19,133.1,133.02,132.92000000000002,132.84,132.66,28.16,27.8,27.62,27.42,27.23,27.04,26.84,26.66,26.27,N/A,N/A -2012,7,16,19,30,101570,100420,99310,77.4,0,3.33,3.5,3.5300000000000002,3.5500000000000003,3.56,3.56,3.56,3.5700000000000003,3.5700000000000003,139.49,139.63,139.63,139.65,139.66,139.67000000000002,139.68,139.71,139.76,28.23,27.87,27.69,27.490000000000002,27.3,27.11,26.91,26.73,26.35,N/A,N/A -2012,7,16,20,30,101530,100380,99270,77.57000000000001,0,3.33,3.52,3.5500000000000003,3.58,3.59,3.61,3.62,3.63,3.65,141.99,141.88,141.78,141.67000000000002,141.57,141.46,141.35,141.26,141.02,28.35,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.04,26.86,26.47,N/A,N/A -2012,7,16,21,30,101530,100380,99270,79.08,0,3.62,3.8200000000000003,3.85,3.86,3.87,3.87,3.87,3.86,3.85,144.51,144.32,144.11,143.93,143.77,143.62,143.47,143.34,143.06,28.44,28.09,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.560000000000002,N/A,N/A -2012,7,16,22,30,101530,100380,99270,79.25,0,3.09,3.2800000000000002,3.33,3.35,3.38,3.39,3.4,3.42,3.43,139.41,139.87,140.15,140.4,140.62,140.82,141,141.17000000000002,141.49,28.43,28.1,27.93,27.73,27.54,27.36,27.16,26.97,26.59,N/A,N/A -2012,7,16,23,30,101510,100370,99260,79.87,0,5.13,5.5,5.5600000000000005,5.59,5.6000000000000005,5.61,5.61,5.6000000000000005,5.58,139.01,138.89000000000001,138.99,139.06,139.11,139.15,139.17000000000002,139.20000000000002,139.23,28.44,28.11,27.94,27.75,27.55,27.36,27.17,26.98,26.6,N/A,N/A -2012,7,17,0,30,101500,100360,99250,76.08,0,4.32,4.61,4.66,4.68,4.68,4.69,4.68,4.68,4.67,153.05,152.99,152.88,152.78,152.68,152.59,152.5,152.42000000000002,152.26,28.46,28.150000000000002,27.98,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A -2012,7,17,1,30,101430,100280,99170,85.56,0,6.05,6.36,6.3500000000000005,6.29,6.22,6.140000000000001,6.05,5.95,5.71,143.22,143.55,143.73,143.93,144.12,144.31,144.52,144.73,145.22,27.47,27.09,26.92,26.72,26.54,26.35,26.17,25.990000000000002,25.64,N/A,N/A -2012,7,17,2,30,101430,100280,99170,78.22,0,4.96,5.26,5.28,5.2700000000000005,5.26,5.23,5.19,5.15,5.0600000000000005,140.48,140.67000000000002,140.8,140.95000000000002,141.1,141.26,141.46,141.65,142.18,27.77,27.42,27.240000000000002,27.05,26.86,26.67,26.48,26.3,25.92,N/A,N/A -2012,7,17,3,30,101460,100310,99200,80.94,0,5.5200000000000005,5.87,5.93,5.94,5.94,5.93,5.91,5.89,5.84,154.32,154.31,154.25,154.17000000000002,154.09,153.99,153.88,153.77,153.45000000000002,27.71,27.35,27.18,26.98,26.79,26.6,26.42,26.240000000000002,25.87,N/A,N/A -2012,7,17,4,30,101410,100270,99150,82.13,0,5.2,5.5200000000000005,5.57,5.58,5.58,5.58,5.5600000000000005,5.55,5.51,153.17000000000002,153.35,153.44,153.54,153.66,153.78,153.92000000000002,154.07,154.49,27.71,27.36,27.18,26.990000000000002,26.8,26.62,26.43,26.26,25.900000000000002,N/A,N/A -2012,7,17,5,30,101430,100280,99170,78.53,0,3.69,3.92,3.96,3.99,4,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,137.78,137.76,137.81,137.86,137.9,137.94,137.98,138.02,138.11,27.96,27.62,27.45,27.25,27.07,26.88,26.68,26.5,26.13,N/A,N/A -2012,7,17,6,30,101440,100290,99180,80.16,0,4.18,4.43,4.47,4.49,4.5,4.5,4.5,4.5,4.5,147.84,148.28,148.57,148.86,149.13,149.38,149.65,149.92000000000002,150.49,27.93,27.59,27.41,27.21,27.02,26.84,26.64,26.45,26.07,N/A,N/A -2012,7,17,7,30,101460,100310,99200,81.78,0,4.13,4.4,4.45,4.47,4.49,4.5,4.51,4.51,4.5200000000000005,151.57,151.58,151.54,151.51,151.48,151.46,151.44,151.42000000000002,151.36,27.990000000000002,27.64,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,7,17,8,30,101470,100330,99220,82.65,0,5.24,5.59,5.65,5.68,5.69,5.7,5.71,5.71,5.71,153.43,153.3,153.11,152.94,152.79,152.64000000000001,152.51,152.39000000000001,152.15,28.04,27.7,27.52,27.32,27.14,26.95,26.75,26.560000000000002,26.19,N/A,N/A -2012,7,17,9,30,101470,100330,99210,82.72,0,5.01,5.33,5.37,5.4,5.41,5.42,5.43,5.43,5.43,159.94,159.72,159.56,159.4,159.26,159.13,158.99,158.86,158.58,28.02,27.67,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A -2012,7,17,10,30,101460,100310,99200,82.95,0,3.97,4.22,4.2700000000000005,4.29,4.3,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,165.21,164.94,164.93,164.9,164.88,164.86,164.84,164.82,164.78,28,27.650000000000002,27.47,27.28,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,7,17,11,30,101510,100360,99250,82.5,0,4.51,4.8100000000000005,4.87,4.9,4.92,4.93,4.93,4.93,4.93,171.74,171.77,171.77,171.75,171.74,171.73,171.71,171.69,171.65,28.080000000000002,27.740000000000002,27.560000000000002,27.36,27.17,26.98,26.79,26.6,26.22,N/A,N/A -2012,7,17,12,30,101540,100390,99280,79.42,0,3.08,3.27,3.31,3.34,3.35,3.37,3.38,3.39,3.42,176.04,176.33,176.42000000000002,176.54,176.67000000000002,176.79,176.93,177.07,177.36,28.21,27.88,27.71,27.51,27.32,27.13,26.94,26.75,26.37,N/A,N/A -2012,7,17,13,30,101520,100370,99260,80.02,0,3.2600000000000002,3.54,3.61,3.66,3.71,3.75,3.7800000000000002,3.8200000000000003,3.89,170.08,169.48,169.34,169.23,169.16,169.1,169.08,169.08,169.21,28.17,27.830000000000002,27.66,27.47,27.28,27.1,26.91,26.73,26.36,N/A,N/A -2012,7,17,14,30,101550,100400,99290,78.54,0,3.33,3.5100000000000002,3.5300000000000002,3.54,3.54,3.54,3.54,3.54,3.52,187.58,187.51,187.43,187.36,187.29,187.23,187.17000000000002,187.12,187.01,28.3,27.97,27.79,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,7,17,15,30,101590,100440,99320,82.94,0,3.39,3.47,3.43,3.37,3.31,3.24,3.17,3.11,2.96,204.88,203.49,202.63,201.61,200.56,199.47,198.18,196.91,193.67000000000002,27.830000000000002,27.47,27.310000000000002,27.11,26.93,26.75,26.560000000000002,26.39,26.03,N/A,N/A -2012,7,17,16,30,101580,100430,99320,83.86,0,2.39,2.46,2.47,2.46,2.45,2.44,2.43,2.42,2.4,185.88,184.61,183.89000000000001,183.11,182.31,181.47,180.47,179.49,176.9,27.86,27.5,27.32,27.13,26.94,26.75,26.560000000000002,26.38,26,N/A,N/A -2012,7,17,17,30,101550,100400,99290,84.77,0,1.04,1.11,1.1400000000000001,1.17,1.2,1.23,1.27,1.3,1.3800000000000001,174.17000000000002,169.83,167.57,165.31,163.31,161.38,159.49,157.66,154.15,28.01,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.53,26.150000000000002,N/A,N/A -2012,7,17,18,30,101530,100380,99270,80.57000000000001,0,2.31,2.37,2.36,2.34,2.32,2.29,2.27,2.24,2.19,148.17000000000002,148.47,148.86,149.25,149.62,149.97,150.34,150.68,151.43,28.42,28.060000000000002,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,17,19,30,101480,100330,99220,80.77,0,2.45,2.59,2.62,2.63,2.65,2.66,2.67,2.68,2.69,142.25,142.11,142.1,142.09,142.09,142.09,142.09,142.1,142.16,28.51,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,17,20,30,101500,100350,99240,82.71000000000001,0,3.2800000000000002,3.46,3.49,3.52,3.5300000000000002,3.54,3.56,3.5700000000000003,3.59,167.52,167.37,167.22,167.1,167,166.9,166.82,166.74,166.61,28.61,28.240000000000002,28.07,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A -2012,7,17,21,30,101450,100310,99200,80.66,0,3.44,3.6,3.62,3.62,3.62,3.62,3.61,3.61,3.6,168.38,168.19,168.07,167.95000000000002,167.86,167.77,167.67000000000002,167.59,167.4,28.72,28.36,28.19,27.98,27.79,27.61,27.41,27.23,26.85,N/A,N/A -2012,7,17,22,30,101430,100290,99180,81.54,0,4.19,4.41,4.42,4.42,4.4,4.38,4.36,4.34,4.29,179.78,179.56,179.43,179.29,179.15,179.02,178.87,178.73,178.4,28.72,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.86,N/A,N/A -2012,7,17,23,30,101400,100260,99150,82.81,0,3.7800000000000002,4.0200000000000005,4.07,4.09,4.1,4.11,4.12,4.12,4.12,170.05,170.23,170.43,170.62,170.8,170.97,171.16,171.34,171.73,28.61,28.28,28.11,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A -2012,7,18,0,30,101410,100260,99160,82.13,0,2.05,2.18,2.21,2.22,2.23,2.24,2.25,2.25,2.2600000000000002,159.14000000000001,159.20000000000002,159.18,159.15,159.12,159.08,159.04,159,158.96,28.59,28.28,28.11,27.91,27.72,27.54,27.34,27.16,26.78,N/A,N/A -2012,7,18,1,30,101400,100250,99150,82.62,0,2.57,2.74,2.7800000000000002,2.8000000000000003,2.82,2.83,2.85,2.86,2.88,139.93,139.6,139.57,139.53,139.47,139.4,139.32,139.24,139.06,28.53,28.21,28.04,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A -2012,7,18,2,30,101410,100270,99160,82.36,0,2.43,2.58,2.6,2.61,2.62,2.62,2.63,2.63,2.64,144.78,145.32,145.75,146.17000000000002,146.55,146.91,147.29,147.63,148.36,28.51,28.2,28.03,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.71,N/A,N/A -2012,7,18,3,30,101450,100300,99190,83.41,0,4.64,5.03,5.11,5.17,5.21,5.24,5.26,5.28,5.3100000000000005,154.03,154.29,154.35,154.42000000000002,154.48,154.54,154.61,154.68,154.81,28.6,28.29,28.12,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A -2012,7,18,4,30,101430,100280,99170,84.37,0,6.2700000000000005,6.5,6.44,6.3,6.15,6,5.86,5.75,5.61,168.45000000000002,167.12,166.03,164.43,162.49,160.28,157.85,155.49,150.98,27.86,27.54,27.400000000000002,27.25,27.11,26.97,26.830000000000002,26.7,26.39,N/A,N/A -2012,7,18,5,30,101450,100300,99200,86.61,0,5.28,5.73,5.84,5.92,5.98,6.03,6.08,6.11,6.19,166.35,165.95000000000002,165.66,165.37,165.1,164.85,164.61,164.37,163.87,28.34,28.01,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.900000000000002,26.52,N/A,N/A -2012,7,18,6,30,101470,100320,99210,87.56,0,5.95,6.5,6.62,6.69,6.75,6.78,6.8100000000000005,6.84,6.87,164.15,163.93,163.88,163.83,163.78,163.75,163.72,163.70000000000002,163.64000000000001,28.330000000000002,28,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A -2012,7,18,7,30,101540,100390,99280,85.84,0,5.5,5.93,6.01,6.05,6.08,6.09,6.09,6.1000000000000005,6.1000000000000005,175.32,175.04,174.86,174.67000000000002,174.48,174.3,174.11,173.92000000000002,173.53,28.38,28.05,27.88,27.68,27.5,27.310000000000002,27.11,26.93,26.55,N/A,N/A -2012,7,18,8,30,101540,100400,99290,86.43,0,4.86,5.24,5.32,5.37,5.4,5.43,5.45,5.47,5.51,175.37,175.46,175.53,175.61,175.68,175.75,175.83,175.9,176.08,28.330000000000002,28,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.88,26.5,N/A,N/A -2012,7,18,9,30,101540,100390,99280,85.42,0,5.17,5.63,5.74,5.8100000000000005,5.87,5.91,5.95,5.98,6.05,178.08,178.20000000000002,178.29,178.37,178.44,178.51,178.59,178.67000000000002,178.85,28.42,28.11,27.94,27.75,27.560000000000002,27.38,27.18,27,26.63,N/A,N/A -2012,7,18,10,30,101540,100390,99280,85.48,0,4.96,5.33,5.41,5.45,5.48,5.5,5.51,5.5200000000000005,5.53,188.76,188.75,188.71,188.66,188.62,188.59,188.55,188.51,188.44,28.37,28.04,27.87,27.67,27.48,27.29,27.1,26.91,26.53,N/A,N/A -2012,7,18,11,30,101580,100440,99330,85.66,0,4.39,4.69,4.74,4.76,4.78,4.78,4.79,4.79,4.79,202.81,202.45000000000002,202.25,202.05,201.85,201.64000000000001,201.41,201.17000000000002,200.59,28.310000000000002,27.990000000000002,27.830000000000002,27.64,27.45,27.27,27.080000000000002,26.900000000000002,26.54,N/A,N/A -2012,7,18,12,30,101630,100490,99370,83.76,0,4.29,4.61,4.68,4.73,4.76,4.78,4.8,4.82,4.84,194.67000000000002,195.32,195.8,196.27,196.68,197.08,197.45000000000002,197.79,198.45000000000002,28.43,28.11,27.95,27.75,27.57,27.39,27.2,27.01,26.64,N/A,N/A -2012,7,18,13,30,101640,100490,99380,82.09,0,4.98,5.3100000000000005,5.36,5.36,5.36,5.3500000000000005,5.33,5.3100000000000005,5.2700000000000005,192.33,192.73000000000002,192.95000000000002,193.16,193.35,193.54,193.74,193.93,194.36,28.43,28.1,27.93,27.740000000000002,27.55,27.36,27.17,26.990000000000002,26.61,N/A,N/A -2012,7,18,14,30,101730,100580,99470,82.74,0,3.52,3.75,3.8000000000000003,3.8200000000000003,3.84,3.85,3.85,3.85,3.86,205.58,205.53,205.46,205.37,205.29,205.20000000000002,205.1,205.02,204.82,28.39,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A -2012,7,18,15,30,101740,100590,99480,79.52,0,3.3200000000000003,3.52,3.56,3.5700000000000003,3.59,3.59,3.6,3.6,3.6,188.69,188.84,188.95000000000002,189.05,189.12,189.19,189.26,189.31,189.43,28.53,28.2,28.03,27.830000000000002,27.64,27.45,27.25,27.07,26.69,N/A,N/A -2012,7,18,16,30,101750,100600,99490,80.42,0,3.96,4.21,4.25,4.2700000000000005,4.28,4.29,4.29,4.3,4.3,202.59,202.31,202.21,202.11,202.02,201.93,201.85,201.77,201.61,28.59,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,18,17,30,101750,100600,99490,78.36,0,4.57,4.8500000000000005,4.89,4.91,4.91,4.91,4.91,4.9,4.88,205.66,205.73000000000002,205.77,205.81,205.84,205.87,205.9,205.93,205.97,28.61,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.740000000000002,N/A,N/A -2012,7,18,18,30,101720,100570,99450,75.62,0,4.38,4.66,4.7,4.71,4.71,4.71,4.7,4.69,4.67,210.39000000000001,210.35,210.36,210.35,210.32,210.29,210.25,210.20000000000002,210.11,28.64,28.3,28.12,27.93,27.740000000000002,27.55,27.35,27.17,26.78,N/A,N/A -2012,7,18,19,30,101710,100560,99450,70.54,0,3.91,4.15,4.19,4.21,4.22,4.23,4.23,4.24,4.24,202.42000000000002,202.73000000000002,202.91,203.08,203.24,203.4,203.55,203.69,203.96,28.78,28.44,28.28,28.080000000000002,27.89,27.7,27.51,27.32,26.95,N/A,N/A -2012,7,18,20,30,101660,100520,99410,72.46000000000001,0,4.46,4.75,4.8100000000000005,4.83,4.8500000000000005,4.86,4.87,4.88,4.88,199.63,200,200.19,200.37,200.53,200.70000000000002,200.86,201.01,201.33,28.73,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,7,18,21,30,101640,100490,99380,71.83,0,4.38,4.68,4.74,4.7700000000000005,4.79,4.8,4.8100000000000005,4.82,4.83,211.02,210.95000000000002,210.98000000000002,211,211.01,211.02,211.02,211.02,211.01,28.77,28.45,28.28,28.080000000000002,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A -2012,7,18,22,30,101640,100490,99380,75.10000000000001,0,4.2700000000000005,4.59,4.64,4.68,4.7,4.71,4.72,4.73,4.75,201.69,201.83,201.91,202,202.07,202.14000000000001,202.22,202.28,202.41,28.62,28.3,28.13,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A -2012,7,18,23,30,101650,100500,99390,75.99,0,4.3,4.62,4.67,4.69,4.71,4.71,4.71,4.71,4.7,187.06,187.5,187.68,187.84,187.99,188.11,188.25,188.37,188.61,28.57,28.26,28.09,27.900000000000002,27.71,27.52,27.32,27.14,26.76,N/A,N/A -2012,7,19,0,30,101610,100470,99350,73.83,0,4.89,5.26,5.3100000000000005,5.33,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,179.94,179.88,179.82,179.75,179.67000000000002,179.58,179.49,179.41,179.21,28.57,28.27,28.11,27.91,27.72,27.54,27.35,27.16,26.79,N/A,N/A -2012,7,19,1,30,101630,100480,99370,78.66,0,5.2,5.58,5.66,5.69,5.72,5.73,5.73,5.74,5.73,178.03,177.94,177.97,177.99,178,178.01,178.02,178.03,178.06,28.38,28.060000000000002,27.89,27.69,27.5,27.32,27.12,26.93,26.560000000000002,N/A,N/A -2012,7,19,2,30,101650,100500,99390,80.55,0,5.17,5.5600000000000005,5.64,5.69,5.71,5.73,5.74,5.75,5.76,175.24,175.27,175.31,175.33,175.35,175.36,175.37,175.38,175.4,28.27,27.94,27.77,27.57,27.39,27.2,27,26.82,26.44,N/A,N/A -2012,7,19,3,30,101670,100520,99410,81.98,0,5.8,6.26,6.3500000000000005,6.4,6.43,6.45,6.46,6.47,6.47,178.09,178.39000000000001,178.52,178.65,178.78,178.89000000000001,179.01,179.12,179.35,28.22,27.89,27.72,27.52,27.330000000000002,27.14,26.95,26.77,26.38,N/A,N/A -2012,7,19,4,30,101660,100510,99400,83.63,0,6.13,6.62,6.71,6.76,6.8,6.82,6.83,6.84,6.8500000000000005,186.81,186.92000000000002,186.95000000000002,186.99,187.02,187.05,187.08,187.11,187.18,28.150000000000002,27.810000000000002,27.64,27.44,27.25,27.060000000000002,26.86,26.68,26.3,N/A,N/A -2012,7,19,5,30,101700,100550,99440,85.69,0,4.88,5.24,5.32,5.36,5.39,5.41,5.43,5.44,5.46,188.62,188.70000000000002,188.71,188.75,188.77,188.8,188.84,188.88,188.97,28.1,27.76,27.580000000000002,27.39,27.2,27.01,26.810000000000002,26.63,26.25,N/A,N/A -2012,7,19,6,30,101750,100610,99490,84.96000000000001,0,5.25,5.61,5.68,5.7,5.72,5.72,5.72,5.71,5.69,189.04,189.49,189.70000000000002,189.91,190.1,190.29,190.48,190.67000000000002,191.07,28.28,27.93,27.76,27.560000000000002,27.37,27.18,26.98,26.79,26.41,N/A,N/A -2012,7,19,7,30,101790,100640,99520,87.04,0,4.92,5.26,5.33,5.37,5.39,5.4,5.41,5.42,5.42,195.83,195.84,195.77,195.71,195.66,195.61,195.55,195.5,195.43,28.150000000000002,27.79,27.62,27.42,27.23,27.04,26.84,26.66,26.28,N/A,N/A -2012,7,19,8,30,101800,100650,99540,85.26,0,4.89,5.22,5.29,5.32,5.34,5.3500000000000005,5.36,5.36,5.36,207.58,207.54,207.49,207.45000000000002,207.41,207.37,207.33,207.29,207.20000000000002,28.19,27.84,27.66,27.46,27.27,27.080000000000002,26.89,26.7,26.32,N/A,N/A -2012,7,19,9,30,101820,100670,99560,84.85000000000001,0,5.0200000000000005,5.37,5.44,5.47,5.49,5.5,5.51,5.51,5.51,214.47,214.38,214.33,214.27,214.23000000000002,214.19,214.15,214.11,214.03,28.150000000000002,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A -2012,7,19,10,30,101850,100700,99590,84.26,0,4.1,4.41,4.48,4.53,4.57,4.6000000000000005,4.62,4.65,4.69,224,224.08,224.07,224.05,224.03,224.01,223.99,223.95000000000002,223.89000000000001,28.13,27.78,27.61,27.41,27.22,27.03,26.830000000000002,26.650000000000002,26.27,N/A,N/A -2012,7,19,11,30,101900,100750,99630,82.47,0,5.47,5.8500000000000005,5.92,5.94,5.94,5.94,5.92,5.9,5.8500000000000005,224.03,224.03,223.96,223.87,223.77,223.66,223.55,223.44,223.19,28.22,27.87,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.35,N/A,N/A -2012,7,19,12,30,101910,100760,99640,80.15,0,4.32,4.65,4.73,4.7700000000000005,4.8,4.83,4.8500000000000005,4.87,4.9,231.41,231.48000000000002,231.52,231.58,231.63,231.68,231.74,231.8,231.9,28.28,27.95,27.77,27.57,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A -2012,7,19,13,30,101940,100780,99670,75.36,0,4.19,4.5,4.57,4.62,4.65,4.68,4.69,4.71,4.74,241.66,241.43,241.31,241.20000000000002,241.11,241.03,240.95000000000002,240.87,240.73000000000002,28.490000000000002,28.17,28,27.8,27.61,27.43,27.23,27.04,26.66,N/A,N/A -2012,7,19,14,30,101960,100800,99690,71.57000000000001,0,4.74,5.07,5.13,5.15,5.17,5.18,5.18,5.19,5.19,243.32,243.15,243.06,242.95000000000002,242.84,242.73000000000002,242.62,242.51,242.27,28.64,28.330000000000002,28.16,27.96,27.77,27.580000000000002,27.39,27.2,26.82,N/A,N/A -2012,7,19,15,30,101980,100830,99710,71.67,0,4,4.2700000000000005,4.32,4.3500000000000005,4.37,4.38,4.39,4.4,4.41,244.73000000000002,244.71,244.78,244.84,244.89000000000001,244.95000000000002,245,245.05,245.14000000000001,28.63,28.3,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.8,N/A,N/A -2012,7,19,16,30,101980,100830,99710,69.23,0,4.3100000000000005,4.63,4.69,4.73,4.76,4.79,4.8,4.82,4.8500000000000005,248.3,248.11,248.01000000000002,247.89000000000001,247.78,247.67000000000002,247.56,247.46,247.22,28.69,28.37,28.19,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A -2012,7,19,17,30,101990,100840,99720,72.33,0,3.89,4.13,4.17,4.19,4.2,4.21,4.21,4.21,4.21,235.46,235.36,235.33,235.3,235.28,235.26,235.25,235.24,235.23000000000002,28.6,28.26,28.09,27.900000000000002,27.71,27.51,27.32,27.14,26.75,N/A,N/A -2012,7,19,18,30,101960,100810,99700,69.65,0,3.5700000000000003,3.7600000000000002,3.8000000000000003,3.8200000000000003,3.83,3.84,3.85,3.85,3.88,218.20000000000002,218.29,218.39000000000001,218.51,218.63,218.77,218.94,219.11,219.58,28.77,28.44,28.28,28.09,27.900000000000002,27.72,27.53,27.36,26.990000000000002,N/A,N/A -2012,7,19,19,30,101920,100770,99650,68.31,0,4.37,4.67,4.73,4.7700000000000005,4.79,4.82,4.84,4.87,4.93,207.22,207.82,208.20000000000002,208.61,209.03,209.46,209.94,210.41,211.59,28.990000000000002,28.67,28.51,28.32,28.14,27.96,27.77,27.6,27.25,N/A,N/A -2012,7,19,20,30,101900,100750,99640,70.55,0,4.4,4.72,4.7700000000000005,4.8,4.83,4.84,4.86,4.88,4.92,191.72,192.41,192.87,193.33,193.79,194.27,194.83,195.39000000000001,196.86,28.96,28.64,28.48,28.28,28.1,27.92,27.73,27.55,27.2,N/A,N/A -2012,7,19,21,30,101850,100700,99590,73.92,0,5.18,5.53,5.58,5.58,5.57,5.55,5.53,5.5,5.42,200.42000000000002,200.39000000000001,200.26,200.09,199.91,199.71,199.47,199.22,198.64000000000001,28.810000000000002,28.490000000000002,28.32,28.12,27.93,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,7,19,22,30,101810,100670,99550,72.85000000000001,0,4.65,5,5.0600000000000005,5.09,5.11,5.12,5.13,5.13,5.14,201.37,201.48000000000002,201.58,201.68,201.79,201.9,202.02,202.15,202.48000000000002,28.89,28.580000000000002,28.42,28.23,28.05,27.86,27.68,27.5,27.14,N/A,N/A -2012,7,19,23,30,101790,100640,99530,74.44,0,5.49,5.92,5.99,6.0200000000000005,6.04,6.04,6.03,6.03,6,201.78,201.9,201.95000000000002,201.98000000000002,202.02,202.04,202.07,202.09,202.14000000000001,28.810000000000002,28.51,28.34,28.150000000000002,27.97,27.78,27.59,27.400000000000002,27.03,N/A,N/A -2012,7,20,0,30,101750,100600,99490,75.76,0,5.82,6.3100000000000005,6.390000000000001,6.43,6.46,6.48,6.49,6.49,6.49,201.54,201.76,201.84,201.92000000000002,202,202.08,202.18,202.28,202.53,28.740000000000002,28.43,28.26,28.07,27.88,27.7,27.51,27.330000000000002,26.96,N/A,N/A -2012,7,20,1,30,101720,100570,99460,77.41,0,5.87,6.34,6.43,6.47,6.5,6.51,6.5200000000000005,6.53,6.54,201.89000000000001,202,202.13,202.29,202.45000000000002,202.6,202.79,202.97,203.42000000000002,28.6,28.28,28.11,27.92,27.740000000000002,27.55,27.36,27.18,26.810000000000002,N/A,N/A -2012,7,20,2,30,101750,100600,99490,80.57000000000001,0,6.45,6.98,7.08,7.13,7.15,7.17,7.17,7.18,7.17,199.53,199.74,199.84,199.95000000000002,200.04,200.13,200.24,200.34,200.57,28.490000000000002,28.16,28,27.8,27.61,27.42,27.23,27.05,26.67,N/A,N/A -2012,7,20,3,30,101760,100610,99500,82.13,0,6.55,7.07,7.18,7.23,7.26,7.28,7.29,7.29,7.28,203.98000000000002,204.13,204.20000000000002,204.29,204.37,204.46,204.57,204.67000000000002,204.91,28.48,28.150000000000002,27.97,27.78,27.59,27.400000000000002,27.21,27.03,26.66,N/A,N/A -2012,7,20,4,30,101760,100610,99500,84.42,0,6.69,7.25,7.37,7.43,7.47,7.5,7.5200000000000005,7.53,7.54,204.48000000000002,204.65,204.75,204.86,204.96,205.06,205.16,205.27,205.52,28.400000000000002,28.060000000000002,27.89,27.69,27.51,27.32,27.13,26.94,26.57,N/A,N/A -2012,7,20,5,30,101770,100620,99500,85.77,0,6.5600000000000005,7.140000000000001,7.26,7.32,7.36,7.390000000000001,7.4,7.41,7.41,209.23000000000002,209.46,209.51,209.55,209.59,209.62,209.65,209.68,209.73000000000002,28.35,28,27.830000000000002,27.63,27.44,27.25,27.05,26.87,26.490000000000002,N/A,N/A -2012,7,20,6,30,101800,100650,99540,85.98,0,6.86,7.38,7.49,7.54,7.5600000000000005,7.57,7.57,7.57,7.55,221.94,221.98000000000002,221.96,221.95000000000002,221.94,221.93,221.91,221.9,221.86,28.37,28.01,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A -2012,7,20,7,30,101790,100640,99530,85.41,0,8.1,8.84,8.99,9.06,9.11,9.13,9.13,9.13,9.1,225.1,225.19,225.23000000000002,225.24,225.25,225.25,225.24,225.23000000000002,225.18,28.43,28.07,27.89,27.69,27.5,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,20,8,30,101810,100660,99550,82.81,0,6.9,7.51,7.68,7.79,7.87,7.930000000000001,7.99,8.040000000000001,8.14,237.81,237.71,237.63,237.56,237.52,237.47,237.43,237.39000000000001,237.32,28.51,28.17,27.990000000000002,27.79,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,7,20,9,30,101820,100680,99560,80.46000000000001,0,7.61,8.27,8.42,8.49,8.540000000000001,8.56,8.58,8.59,8.59,231.82,231.98000000000002,232.13,232.27,232.4,232.51,232.62,232.72,232.92000000000002,28.580000000000002,28.240000000000002,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A -2012,7,20,10,30,101810,100660,99550,64.82000000000001,0,7.8,8.52,8.67,8.75,8.8,8.82,8.84,8.85,8.85,238.47,238.41,238.33,238.24,238.15,238.06,237.98000000000002,237.89000000000001,237.73000000000002,29.26,28.98,28.82,28.63,28.44,28.26,28.060000000000002,27.88,27.5,N/A,N/A -2012,7,20,11,30,101810,100660,99550,66.38,0,7.23,7.97,8.14,8.24,8.32,8.38,8.42,8.46,8.53,249.22,249.18,249.18,249.18,249.18,249.18,249.18,249.19,249.19,29.150000000000002,28.85,28.68,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A -2012,7,20,12,30,101860,100710,99600,66.04,0,7.3,7.98,8.13,8.21,8.26,8.290000000000001,8.31,8.32,8.32,253.4,253.70000000000002,253.81,253.92000000000002,254.03,254.13,254.23000000000002,254.33,254.53,29.14,28.85,28.69,28.490000000000002,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A -2012,7,20,13,30,101870,100710,99600,67.21000000000001,0,6.8,7.32,7.42,7.46,7.48,7.49,7.49,7.48,7.47,265.12,264.58,264.14,263.67,263.23,262.81,262.36,261.92,261.02,28.8,28.490000000000002,28.330000000000002,28.14,27.95,27.77,27.580000000000002,27.400000000000002,27.03,N/A,N/A -2012,7,20,14,30,101900,100750,99640,64.98,0,6.23,6.73,6.8100000000000005,6.84,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.83,6.8,271.3,270.95,270.73,270.51,270.29,270.09000000000003,269.88,269.67,269.22,28.82,28.5,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.38,27,N/A,N/A -2012,7,20,15,30,101900,100750,99630,62.93,0,6.46,6.92,7.01,7.04,7.07,7.08,7.09,7.1000000000000005,7.13,270.63,270.09000000000003,269.7,269.25,268.82,268.38,267.92,267.48,266.55,28.77,28.48,28.32,28.13,27.96,27.78,27.6,27.43,27.080000000000002,N/A,N/A -2012,7,20,16,30,101870,100720,99600,61.27,0,5.38,5.82,5.91,5.96,6,6.03,6.05,6.08,6.12,264.1,264.47,264.71,264.93,265.15,265.36,265.58,265.78000000000003,266.25,29.01,28.71,28.55,28.36,28.18,27.990000000000002,27.8,27.63,27.26,N/A,N/A -2012,7,20,17,30,101860,100710,99590,61.410000000000004,0,5.26,5.64,5.7,5.72,5.73,5.73,5.73,5.73,5.72,234.58,235.1,235.46,235.85,236.24,236.64000000000001,237.12,237.6,238.83,29.21,28.91,28.75,28.55,28.37,28.19,28.01,27.830000000000002,27.47,N/A,N/A -2012,7,20,18,30,101810,100660,99550,62.550000000000004,0,5.38,5.75,5.79,5.79,5.78,5.76,5.73,5.69,5.61,217.32,217.82,218.16,218.54,218.95000000000002,219.39000000000001,219.96,220.56,222.51,29.29,28.990000000000002,28.830000000000002,28.64,28.46,28.29,28.1,27.93,27.61,N/A,N/A -2012,7,20,19,30,101780,100640,99520,63.43,0,4.8500000000000005,5.21,5.26,5.2700000000000005,5.2700000000000005,5.26,5.25,5.23,5.18,214.14000000000001,214.47,214.70000000000002,214.93,215.18,215.43,215.72,216.01,216.79,29.400000000000002,29.1,28.94,28.75,28.560000000000002,28.38,28.19,28.01,27.650000000000002,N/A,N/A -2012,7,20,20,30,101730,100580,99470,65.8,0,5.87,6.32,6.38,6.390000000000001,6.390000000000001,6.37,6.3500000000000005,6.32,6.24,211.06,211.16,211.28,211.4,211.51,211.63,211.75,211.88,212.21,29.310000000000002,29.01,28.85,28.66,28.48,28.29,28.1,27.92,27.560000000000002,N/A,N/A -2012,7,20,21,30,101710,100560,99450,67.55,0,5.96,6.45,6.53,6.5600000000000005,6.58,6.58,6.57,6.5600000000000005,6.5200000000000005,206,206.16,206.31,206.45000000000002,206.58,206.71,206.85,206.99,207.33,29.29,28.990000000000002,28.830000000000002,28.64,28.46,28.28,28.09,27.91,27.55,N/A,N/A -2012,7,20,22,30,101650,100510,99400,71.64,0,6.73,7.29,7.390000000000001,7.43,7.45,7.45,7.43,7.42,7.37,208.49,208.6,208.71,208.82,208.93,209.04,209.17000000000002,209.3,209.61,29.080000000000002,28.78,28.62,28.43,28.240000000000002,28.060000000000002,27.88,27.7,27.34,N/A,N/A -2012,7,20,23,30,101630,100490,99380,73.33,0,6.99,7.57,7.68,7.72,7.74,7.74,7.73,7.72,7.68,209.24,209.4,209.48000000000002,209.57,209.65,209.74,209.83,209.92000000000002,210.13,29.02,28.72,28.55,28.36,28.18,27.990000000000002,27.8,27.62,27.26,N/A,N/A -2012,7,21,0,30,101590,100440,99330,75.85000000000001,0,7.390000000000001,8.03,8.15,8.2,8.23,8.25,8.25,8.25,8.24,210.76,210.94,211.05,211.16,211.28,211.41,211.55,211.70000000000002,212.07,28.93,28.62,28.45,28.26,28.080000000000002,27.89,27.71,27.53,27.17,N/A,N/A -2012,7,21,1,30,101550,100410,99300,77.84,0,7.41,8.06,8.19,8.24,8.27,8.28,8.28,8.27,8.24,214.14000000000001,214.3,214.41,214.52,214.62,214.72,214.83,214.93,215.18,28.900000000000002,28.57,28.41,28.21,28.03,27.84,27.66,27.48,27.11,N/A,N/A -2012,7,21,2,30,101560,100410,99300,81.21000000000001,0,7.61,8.28,8.4,8.46,8.49,8.5,8.5,8.5,8.47,215.03,215.20000000000002,215.28,215.36,215.44,215.51,215.6,215.68,215.88,28.75,28.41,28.240000000000002,28.05,27.86,27.68,27.490000000000002,27.3,26.94,N/A,N/A -2012,7,21,3,30,101550,100410,99300,81.68,0,7.83,8.52,8.65,8.72,8.75,8.77,8.78,8.790000000000001,8.790000000000001,223.39000000000001,223.55,223.63,223.73000000000002,223.84,223.96,224.09,224.22,224.57,28.77,28.43,28.27,28.07,27.89,27.71,27.52,27.34,26.98,N/A,N/A -2012,7,21,4,30,101550,100410,99300,83.26,0,7.54,8.2,8.33,8.4,8.43,8.45,8.45,8.45,8.44,230.16,230.29,230.36,230.46,230.54,230.64000000000001,230.75,230.86,231.13,28.73,28.39,28.22,28.02,27.84,27.650000000000002,27.46,27.28,26.91,N/A,N/A -2012,7,21,5,30,101550,100400,99290,85.23,0,7.78,8.47,8.61,8.68,8.72,8.74,8.75,8.74,8.72,229.59,229.73000000000002,229.8,229.86,229.92000000000002,229.97,230.03,230.09,230.22,28.63,28.28,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.78,N/A,N/A -2012,7,21,6,30,101550,100400,99300,84.85000000000001,0,7.79,8.46,8.61,8.67,8.72,8.74,8.75,8.76,8.75,236.05,236.11,236.15,236.19,236.23000000000002,236.28,236.33,236.38,236.5,28.67,28.310000000000002,28.14,27.94,27.75,27.57,27.37,27.19,26.82,N/A,N/A -2012,7,21,7,30,101590,100440,99330,85.95,0,7.76,8.43,8.57,8.63,8.67,8.69,8.700000000000001,8.700000000000001,8.69,231.93,232.12,232.20000000000002,232.28,232.35,232.42000000000002,232.49,232.56,232.71,28.63,28.27,28.09,27.89,27.7,27.52,27.32,27.14,26.77,N/A,N/A -2012,7,21,8,30,101570,100420,99310,87.46000000000001,0,7.87,8.56,8.71,8.78,8.82,8.84,8.85,8.85,8.84,240.56,240.62,240.67000000000002,240.72,240.76,240.81,240.87,240.92000000000002,241.03,28.53,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A -2012,7,21,9,30,101570,100430,99320,88.03,0,7.97,8.69,8.85,8.93,8.98,9.01,9.02,9.02,9.01,243.58,243.65,243.66,243.69,243.71,243.74,243.78,243.81,243.9,28.5,28.13,27.95,27.75,27.55,27.36,27.17,26.98,26.6,N/A,N/A -2012,7,21,10,30,101610,100470,99360,86.18,0,7.99,8.73,8.88,8.950000000000001,8.99,9.01,9,8.99,8.93,249.97,249.94,249.98000000000002,250.04,250.11,250.18,250.27,250.35,250.56,28.650000000000002,28.29,28.11,27.91,27.72,27.52,27.32,27.14,26.75,N/A,N/A -2012,7,21,11,30,101600,100460,99350,82.34,0,7.96,8.51,8.620000000000001,8.65,8.66,8.66,8.66,8.65,8.61,252.74,253.11,253.31,253.51000000000002,253.69,253.87,254.04,254.21,254.54,28.63,28.27,28.1,27.91,27.72,27.54,27.35,27.17,26.810000000000002,N/A,N/A -2012,7,21,12,30,101640,100490,99380,84.32000000000001,0,7.5200000000000005,8.14,8.27,8.33,8.36,8.38,8.38,8.38,8.370000000000001,267.01,266.78000000000003,266.59000000000003,266.37,266.17,265.97,265.76,265.56,265.14,28.38,28,27.82,27.62,27.43,27.23,27.04,26.85,26.47,N/A,N/A -2012,7,21,13,30,101640,100500,99380,81.65,0,7.25,7.88,8.01,8.09,8.14,8.17,8.19,8.2,8.22,267.33,267.17,267.07,266.96,266.86,266.76,266.66,266.56,266.36,28.29,27.91,27.73,27.53,27.34,27.150000000000002,26.96,26.77,26.39,N/A,N/A -2012,7,21,14,30,101660,100510,99390,83.11,0,7.54,8.14,8.26,8.32,8.35,8.370000000000001,8.38,8.39,8.39,271.46,271.11,271,270.88,270.77,270.66,270.55,270.44,270.2,27.98,27.580000000000002,27.400000000000002,27.2,27,26.810000000000002,26.62,26.43,26.060000000000002,N/A,N/A -2012,7,21,15,30,101650,100500,99390,77.33,0,6.19,6.63,6.71,6.74,6.76,6.76,6.76,6.75,6.74,262.58,263.08,263.42,263.73,264.02,264.29,264.58,264.85,265.45,28.34,27.98,27.8,27.61,27.42,27.23,27.04,26.86,26.490000000000002,N/A,N/A -2012,7,21,16,30,101650,100510,99400,71.87,0,4.92,5.28,5.36,5.41,5.44,5.47,5.49,5.51,5.55,255.6,256.28000000000003,256.73,257.19,257.62,258.05,258.51,258.96,260.04,28.93,28.61,28.44,28.25,28.07,27.88,27.69,27.52,27.150000000000002,N/A,N/A -2012,7,21,17,30,101610,100470,99360,68.63,0,4.11,4.36,4.39,4.4,4.4,4.4,4.39,4.39,4.38,243.68,244.86,245.58,246.34,247.1,247.86,248.74,249.61,251.81,29.29,28.98,28.82,28.63,28.45,28.27,28.080000000000002,27.91,27.560000000000002,N/A,N/A -2012,7,21,18,30,101610,100470,99360,68.62,0,3.8000000000000003,3.99,3.99,3.97,3.94,3.91,3.86,3.8200000000000003,3.73,215.79,216.73000000000002,217.32,217.96,218.6,219.29,220.1,220.91,223.06,29.5,29.19,29.03,28.84,28.66,28.48,28.29,28.12,27.77,N/A,N/A -2012,7,21,19,30,101610,100470,99360,71.45,0,3.83,4.03,4.05,4.05,4.04,4.0200000000000005,4,3.98,3.92,209.74,210.06,210.31,210.55,210.78,211,211.24,211.47,211.99,29.37,29.04,28.87,28.67,28.490000000000002,28.3,28.11,27.93,27.560000000000002,N/A,N/A -2012,7,21,20,30,101560,100420,99310,74.88,0,4.48,4.73,4.75,4.75,4.74,4.72,4.69,4.66,4.58,205.85,205.96,205.99,206.02,206.04,206.07,206.09,206.12,206.19,29.23,28.89,28.72,28.52,28.34,28.150000000000002,27.96,27.78,27.42,N/A,N/A -2012,7,21,21,30,101520,100370,99270,74.47,0,4.07,4.28,4.29,4.28,4.26,4.24,4.21,4.17,4.09,196.57,196.8,196.88,196.97,197.07,197.16,197.27,197.38,197.63,29.22,28.89,28.72,28.53,28.35,28.16,27.98,27.8,27.45,N/A,N/A -2012,7,21,22,30,101490,100350,99240,76.45,0,5.2700000000000005,5.63,5.68,5.69,5.68,5.67,5.65,5.63,5.58,186.59,186.58,186.6,186.61,186.61,186.61,186.6,186.59,186.53,29.150000000000002,28.830000000000002,28.66,28.47,28.29,28.1,27.91,27.73,27.37,N/A,N/A -2012,7,21,23,30,101450,100300,99200,75.73,0,7.04,7.640000000000001,7.75,7.8,7.82,7.83,7.83,7.83,7.8100000000000005,179.42000000000002,179.62,179.71,179.81,179.9,179.99,180.09,180.18,180.37,29.16,28.85,28.68,28.490000000000002,28.3,28.11,27.92,27.740000000000002,27.36,N/A,N/A -2012,7,22,0,30,101430,100290,99180,74.38,0,7.32,7.94,8.05,8.1,8.120000000000001,8.13,8.13,8.13,8.1,182.42000000000002,182.59,182.66,182.72,182.79,182.85,182.92000000000002,182.98,183.13,29.150000000000002,28.84,28.67,28.47,28.29,28.1,27.900000000000002,27.72,27.34,N/A,N/A -2012,7,22,1,30,101390,100250,99140,86.87,0,7.66,8.26,8.370000000000001,8.4,8.41,8.41,8.39,8.370000000000001,8.31,185.09,185.52,185.8,186.09,186.38,186.69,187.04,187.39000000000001,188.21,28.29,27.91,27.73,27.54,27.35,27.17,26.98,26.8,26.44,N/A,N/A -2012,7,22,2,30,101430,100280,99170,87.52,0,7.21,7.7700000000000005,7.890000000000001,7.930000000000001,7.96,7.97,7.97,7.97,7.94,188.69,188.95000000000002,189.09,189.22,189.33,189.42000000000002,189.53,189.62,189.84,28.21,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.32,N/A,N/A -2012,7,22,3,30,101430,100290,99180,86.08,0,6.890000000000001,7.41,7.51,7.55,7.57,7.57,7.57,7.5600000000000005,7.5200000000000005,198.89000000000001,198.92000000000002,198.94,198.96,198.98000000000002,199,199.03,199.06,199.13,28.35,27.98,27.8,27.6,27.41,27.22,27.03,26.85,26.47,N/A,N/A -2012,7,22,4,30,101420,100280,99170,85.4,0,6.2700000000000005,6.73,6.8100000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,197.81,197.94,198.03,198.14000000000001,198.24,198.34,198.45000000000002,198.55,198.79,28.34,27.98,27.8,27.6,27.41,27.23,27.03,26.85,26.48,N/A,N/A -2012,7,22,5,30,101420,100270,99170,83.53,0,6.32,6.7700000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,6.82,193.54,193.63,193.66,193.70000000000002,193.73000000000002,193.76,193.78,193.81,193.87,28.34,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.830000000000002,26.45,N/A,N/A -2012,7,22,6,30,101440,100300,99190,80.58,0,6.61,7.1000000000000005,7.21,7.25,7.2700000000000005,7.28,7.29,7.28,7.2700000000000005,190.72,190.67000000000002,190.6,190.54,190.48,190.43,190.38,190.34,190.27,28.39,28.03,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.5,N/A,N/A -2012,7,22,7,30,101460,100310,99210,78.86,0,5.87,6.3100000000000005,6.390000000000001,6.42,6.44,6.45,6.45,6.45,6.44,187.73,187.84,187.94,188.03,188.11,188.20000000000002,188.28,188.37,188.56,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,22,8,30,101500,100350,99240,80.79,0,6.38,6.88,6.98,7.03,7.0600000000000005,7.07,7.08,7.08,7.07,192.38,192.55,192.56,192.56,192.57,192.57,192.58,192.59,192.63,28.47,28.11,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.59,N/A,N/A -2012,7,22,9,30,101520,100380,99270,84.94,0,5.68,6.1000000000000005,6.19,6.23,6.2700000000000005,6.28,6.3,6.3100000000000005,6.3100000000000005,197.39000000000001,197.46,197.48000000000002,197.51,197.54,197.57,197.61,197.64000000000001,197.74,28.32,27.96,27.78,27.580000000000002,27.39,27.2,27,26.82,26.44,N/A,N/A -2012,7,22,10,30,101570,100430,99320,82.95,0,4.7700000000000005,5.11,5.19,5.22,5.25,5.26,5.2700000000000005,5.28,5.28,197.97,198.66,198.82,198.94,199.01,199.07,199.11,199.14000000000001,199.18,28.62,28.28,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.77,N/A,N/A -2012,7,22,11,30,101600,100460,99350,81.47,0,4.83,5.1000000000000005,5.15,5.16,5.16,5.15,5.13,5.12,5.07,201.07,200.78,200.52,200.27,200.05,199.83,199.61,199.41,199,28.44,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.97,26.59,N/A,N/A -2012,7,22,12,30,101630,100480,99370,80.99,0,4.97,5.28,5.33,5.34,5.34,5.34,5.33,5.32,5.29,215.5,215.5,215.48000000000002,215.45000000000002,215.42000000000002,215.39000000000001,215.37,215.33,215.27,28.42,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A -2012,7,22,13,30,101640,100490,99380,81.10000000000001,0,2.84,3.02,3.0500000000000003,3.08,3.11,3.13,3.14,3.16,3.19,221.03,220.95000000000002,220.85,220.76,220.68,220.62,220.55,220.5,220.38,28.39,28.05,27.88,27.68,27.490000000000002,27.3,27.11,26.92,26.54,N/A,N/A -2012,7,22,14,30,101680,100530,99420,82.86,0,1.36,1.41,1.42,1.42,1.43,1.43,1.43,1.43,1.43,245.07,244.48000000000002,244.07,243.67000000000002,243.28,242.89000000000001,242.48000000000002,242.08,241.25,28.36,28.02,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A -2012,7,22,15,30,101710,100570,99460,82.07000000000001,0,0.35000000000000003,0.39,0.41000000000000003,0.42,0.44,0.45,0.47000000000000003,0.49,0.52,236.58,234.55,233.38,232.37,231.46,230.58,229.82,229.13,227.8,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.01,26.63,N/A,N/A -2012,7,22,16,30,101720,100580,99470,82.01,0,0.81,0.85,0.86,0.87,0.88,0.89,0.9,0.91,0.93,161.47,163.68,164.82,165.99,167.05,168.05,169.12,170.15,172.27,28.61,28.26,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,22,17,30,101720,100570,99460,83.10000000000001,0,2.31,2.44,2.47,2.49,2.5100000000000002,2.52,2.5300000000000002,2.5500000000000003,2.57,117.72,118.79,119.36,119.91,120.42,120.92,121.42,121.9,122.89,28.75,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,7,22,18,30,101720,100570,99460,81.85000000000001,0,5.46,5.8,5.8500000000000005,5.87,5.87,5.87,5.86,5.86,5.83,118.63,118.75,118.96000000000001,119.17,119.34,119.51,119.67,119.81,120.11,28.95,28.580000000000002,28.400000000000002,28.19,28,27.810000000000002,27.61,27.42,27.04,N/A,N/A -2012,7,22,19,30,101740,100580,99470,87.74,0,7.7700000000000005,8.290000000000001,8.39,8.41,8.42,8.41,8.4,8.39,8.33,154.26,155.4,155.93,156.46,156.95000000000002,157.42000000000002,157.89000000000001,158.34,159.43,27.63,27.22,27.04,26.85,26.67,26.5,26.32,26.150000000000002,25.830000000000002,N/A,N/A -2012,7,22,20,30,101700,100540,99430,80.87,0,7.0200000000000005,7.44,7.47,7.44,7.4,7.33,7.25,7.17,6.94,158.26,158.55,158.73,158.94,159.17000000000002,159.42000000000002,159.75,160.09,160.89000000000001,27.57,27.16,26.98,26.78,26.59,26.41,26.22,26.04,25.67,N/A,N/A -2012,7,22,21,30,101720,100570,99450,80.64,0,8.44,9.08,9.17,9.200000000000001,9.19,9.16,9.120000000000001,9.08,8.950000000000001,183.36,183.53,183.46,183.37,183.27,183.19,183.09,182.99,182.75,27.52,27.1,26.92,26.71,26.52,26.330000000000002,26.14,25.96,25.59,N/A,N/A -2012,7,22,22,30,101720,100570,99450,82.43,0,9.82,10.57,10.700000000000001,10.72,10.72,10.68,10.63,10.58,10.44,194.39000000000001,194.17000000000002,193.9,193.61,193.32,193.03,192.71,192.4,191.72,27.29,26.84,26.64,26.44,26.240000000000002,26.05,25.86,25.68,25.310000000000002,N/A,N/A -2012,7,22,23,30,101720,100570,99450,86.69,0,9.14,9.870000000000001,10.02,10.08,10.11,10.13,10.120000000000001,10.11,10.06,181.34,181.38,181.4,181.42000000000002,181.44,181.46,181.48,181.49,181.53,27.16,26.71,26.52,26.310000000000002,26.11,25.92,25.72,25.54,25.16,N/A,N/A -2012,7,23,0,30,101700,100550,99430,83.96000000000001,0,7.23,7.73,7.82,7.8500000000000005,7.86,7.86,7.8500000000000005,7.84,7.8,187.12,186.95000000000002,186.83,186.71,186.59,186.45000000000002,186.31,186.17000000000002,185.83,26.92,26.48,26.29,26.09,25.89,25.7,25.51,25.32,24.94,N/A,N/A -2012,7,23,1,30,101660,100510,99390,80.81,0,5.44,5.78,5.84,5.86,5.87,5.88,5.89,5.89,5.91,175.39000000000001,175.22,175.09,174.95000000000002,174.8,174.65,174.46,174.26,173.69,27.22,26.810000000000002,26.63,26.43,26.240000000000002,26.060000000000002,25.87,25.69,25.330000000000002,N/A,N/A -2012,7,23,2,30,101730,100570,99460,78.97,0,5.37,5.73,5.8,5.83,5.8500000000000005,5.86,5.87,5.87,5.88,156.15,156.09,156.17000000000002,156.22,156.26,156.29,156.3,156.3,156.28,27.63,27.25,27.07,26.87,26.68,26.490000000000002,26.3,26.12,25.740000000000002,N/A,N/A -2012,7,23,3,30,101710,100560,99440,79.19,0,6,6.45,6.55,6.6000000000000005,6.63,6.66,6.68,6.7,6.72,158.27,158.12,158.08,158.02,157.97,157.91,157.84,157.78,157.64000000000001,27.97,27.59,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.07,N/A,N/A -2012,7,23,4,30,101720,100570,99450,82.21000000000001,0,7.24,7.83,7.95,8.02,8.06,8.08,8.09,8.1,8.1,160.37,160.32,160.32,160.32,160.32,160.32,160.32,160.32,160.32,28.07,27.69,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A -2012,7,23,5,30,101710,100560,99450,80.09,0,7,7.53,7.640000000000001,7.7,7.72,7.74,7.75,7.75,7.73,159.27,159.29,159.32,159.37,159.41,159.45000000000002,159.49,159.54,159.63,28.12,27.75,27.57,27.37,27.18,26.990000000000002,26.79,26.6,26.23,N/A,N/A -2012,7,23,6,30,101750,100600,99480,79.39,0,6.5200000000000005,7.03,7.15,7.21,7.25,7.2700000000000005,7.29,7.3,7.32,163.86,163.98,164.01,164.04,164.07,164.1,164.12,164.14000000000001,164.17000000000002,28.18,27.810000000000002,27.63,27.43,27.240000000000002,27.04,26.85,26.66,26.28,N/A,N/A -2012,7,23,7,30,101780,100630,99510,77.47,0,5.32,5.7,5.78,5.82,5.8500000000000005,5.87,5.88,5.89,5.9,167.13,167.09,167.08,167.08,167.08,167.09,167.09,167.1,167.11,28.28,27.92,27.740000000000002,27.54,27.35,27.16,26.96,26.78,26.39,N/A,N/A -2012,7,23,8,30,101780,100630,99520,79.42,0,4.97,5.3100000000000005,5.39,5.42,5.45,5.46,5.47,5.48,5.48,177.02,176.94,176.92000000000002,176.88,176.85,176.82,176.79,176.75,176.67000000000002,28.19,27.830000000000002,27.650000000000002,27.45,27.25,27.060000000000002,26.86,26.68,26.29,N/A,N/A -2012,7,23,9,30,101810,100660,99540,78.27,0,5.36,5.7,5.75,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,5.75,5.72,171.36,171.59,171.70000000000002,171.81,171.92000000000002,172.02,172.13,172.23,172.45000000000002,28.2,27.84,27.66,27.46,27.27,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,7,23,10,30,101820,100670,99550,77.23,0,4.4,4.69,4.75,4.7700000000000005,4.79,4.79,4.79,4.79,4.78,190.17000000000002,189.99,189.87,189.76,189.65,189.55,189.44,189.35,189.15,28.36,28.01,27.830000000000002,27.63,27.44,27.25,27.05,26.86,26.48,N/A,N/A -2012,7,23,11,30,101850,100700,99590,75.10000000000001,0,4.69,5.03,5.1000000000000005,5.14,5.17,5.19,5.21,5.23,5.25,189.59,189.43,189.42000000000002,189.42000000000002,189.42000000000002,189.42000000000002,189.42000000000002,189.43,189.44,28.41,28.07,27.900000000000002,27.69,27.5,27.32,27.12,26.93,26.55,N/A,N/A -2012,7,23,12,30,101860,100710,99600,75.31,0,3.7600000000000002,3.96,3.99,3.99,3.99,3.99,3.98,3.97,3.94,183.66,183.76,183.77,183.8,183.82,183.84,183.87,183.91,184,28.37,28.02,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.5,N/A,N/A -2012,7,23,13,30,101890,100740,99630,75.16,0,2.99,3.15,3.17,3.19,3.19,3.2,3.2,3.2,3.2,183.05,183.18,183.23,183.26,183.28,183.3,183.3,183.31,183.3,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.11,26.92,26.54,N/A,N/A -2012,7,23,14,30,101910,100760,99650,76.18,0,2.31,2.41,2.42,2.42,2.42,2.42,2.42,2.41,2.4,190.99,190.79,190.76,190.70000000000002,190.62,190.55,190.45000000000002,190.35,190.12,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A -2012,7,23,15,30,101950,100800,99690,77.05,0,1.74,1.85,1.8900000000000001,1.92,1.94,1.96,1.99,2.0100000000000002,2.04,174.33,174.16,174.03,173.92000000000002,173.84,173.78,173.73,173.69,173.61,28.45,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,7,23,16,30,101910,100750,99640,79.8,0,3.47,3.54,3.5,3.46,3.42,3.37,3.3200000000000003,3.27,3.18,153.4,154.55,155.3,156.04,156.75,157.39000000000001,158.07,158.67000000000002,159.95000000000002,28.26,27.900000000000002,27.72,27.53,27.34,27.16,26.96,26.78,26.41,N/A,N/A -2012,7,23,17,30,101960,100800,99690,85.31,0,3.0500000000000003,2.54,2.13,1.6400000000000001,1.25,0.93,0.85,0.8300000000000001,1.33,17.22,20.55,24.47,30.5,43.300000000000004,57.26,82.82000000000001,110.33,142.54,27.3,26.990000000000002,26.87,26.75,26.62,26.490000000000002,26.37,26.25,26.05,N/A,N/A -2012,7,23,18,30,101910,100750,99640,82.64,0,2.19,2.42,2.5100000000000002,2.59,2.66,2.71,2.7600000000000002,2.8000000000000003,2.88,123.62,128.27,130.44,132.32,133.85,135.17000000000002,136.3,137.28,139.09,27.95,27.580000000000002,27.41,27.21,27.03,26.84,26.650000000000002,26.47,26.1,N/A,N/A -2012,7,23,19,30,101930,100780,99670,74.19,0,3.7,3.89,3.92,3.94,3.95,3.95,3.95,3.95,3.94,155.73,155.52,155.4,155.28,155.16,155.05,154.94,154.84,154.63,28.73,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.85,N/A,N/A -2012,7,23,20,30,101910,100760,99650,74.03,0,3.45,3.67,3.72,3.74,3.77,3.7800000000000002,3.79,3.8000000000000003,3.81,134.71,134.81,134.94,135.04,135.12,135.2,135.26,135.32,135.4,28.900000000000002,28.54,28.37,28.16,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A -2012,7,23,21,30,101890,100740,99630,71.73,0,4.19,4.45,4.49,4.5,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.5200000000000005,143.07,142.93,142.85,142.75,142.66,142.57,142.47,142.38,142.19,28.94,28.6,28.42,28.22,28.03,27.84,27.650000000000002,27.46,27.07,N/A,N/A -2012,7,23,22,30,101890,100740,99620,78.01,0,3.35,3.56,3.61,3.64,3.66,3.67,3.69,3.7,3.71,146.23,146.19,146.29,146.38,146.47,146.56,146.65,146.74,146.92000000000002,28.66,28.32,28.150000000000002,27.94,27.75,27.560000000000002,27.37,27.18,26.8,N/A,N/A -2012,7,23,23,30,101870,100720,99610,79.63,0,3.64,3.88,3.93,3.97,3.99,4.0200000000000005,4.03,4.05,4.09,145.9,145.78,145.78,145.78,145.78,145.77,145.75,145.74,145.71,28.61,28.27,28.1,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.76,N/A,N/A -2012,7,24,0,30,101830,100680,99560,79.92,0,3.91,4.17,4.23,4.2700000000000005,4.3,4.33,4.3500000000000005,4.38,4.42,133.99,134.26,134.5,134.7,134.86,135.02,135.15,135.27,135.48,28.66,28.32,28.150000000000002,27.96,27.76,27.57,27.38,27.2,26.810000000000002,N/A,N/A -2012,7,24,1,30,101810,100660,99550,78.05,0,4.09,4.36,4.43,4.47,4.5,4.5200000000000005,4.54,4.5600000000000005,4.59,137.01,137.55,137.72,137.82,137.86,137.87,137.85,137.82,137.68,28.87,28.55,28.39,28.19,28.01,27.830000000000002,27.63,27.45,27.080000000000002,N/A,N/A -2012,7,24,2,30,101800,100650,99540,78.53,0,5.12,5.49,5.57,5.62,5.65,5.67,5.69,5.71,5.73,141.82,141.67000000000002,141.67000000000002,141.69,141.72,141.76,141.81,141.87,141.99,28.71,28.38,28.21,28.02,27.830000000000002,27.64,27.45,27.27,26.89,N/A,N/A -2012,7,24,3,30,101810,100670,99560,79.01,0,5.86,6.33,6.42,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,161.81,161.51,161.32,161.14000000000001,160.97,160.8,160.64000000000001,160.48,160.17000000000002,28.740000000000002,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,7,24,4,30,101810,100660,99550,79.54,0,5.51,5.9,5.96,5.99,6.01,6.0200000000000005,6.0200000000000005,6.01,6,148.43,148.68,148.78,148.88,148.97,149.07,149.16,149.25,149.44,28.5,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,24,5,30,101800,100650,99540,79.07000000000001,0,5.63,6.04,6.11,6.15,6.17,6.18,6.18,6.18,6.18,152.68,152.59,152.63,152.67000000000002,152.70000000000002,152.74,152.77,152.8,152.87,28.330000000000002,27.97,27.8,27.6,27.41,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,7,24,6,30,101830,100680,99570,72.74,0,5.33,5.73,5.8,5.83,5.84,5.8500000000000005,5.84,5.84,5.8100000000000005,146.95000000000002,147.11,147.18,147.25,147.3,147.35,147.4,147.45000000000002,147.55,28.54,28.2,28.03,27.84,27.650000000000002,27.46,27.26,27.07,26.69,N/A,N/A -2012,7,24,7,30,101840,100690,99580,67.15,0,5.74,6.15,6.2,6.22,6.21,6.2,6.18,6.16,6.1000000000000005,155.26,155.57,155.67000000000002,155.76,155.83,155.91,155.97,156.04,156.16,28.85,28.55,28.39,28.19,28,27.810000000000002,27.62,27.43,27.05,N/A,N/A -2012,7,24,8,30,101830,100680,99570,73.42,0,5.92,6.390000000000001,6.48,6.53,6.5600000000000005,6.59,6.61,6.62,6.640000000000001,173.14000000000001,173.16,173.18,173.20000000000002,173.23,173.26,173.29,173.32,173.39000000000001,28.55,28.21,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A -2012,7,24,9,30,101860,100710,99600,79.78,0,5.14,5.5,5.58,5.62,5.66,5.69,5.71,5.73,5.7700000000000005,171.29,171.72,171.85,171.93,171.99,172.03,172.06,172.08,172.1,28.32,27.98,27.810000000000002,27.61,27.42,27.23,27.04,26.85,26.48,N/A,N/A -2012,7,24,10,30,101890,100730,99620,80.28,0,3.81,4.07,4.12,4.16,4.2,4.22,4.25,4.2700000000000005,4.32,176.5,176.81,176.98,177.15,177.3,177.45000000000002,177.58,177.71,177.95000000000002,28.32,27.98,27.810000000000002,27.61,27.42,27.240000000000002,27.04,26.86,26.48,N/A,N/A -2012,7,24,11,30,101870,100720,99610,78.72,0,4.48,4.83,4.92,4.97,5.01,5.05,5.08,5.1000000000000005,5.15,173.9,174.15,174.24,174.3,174.34,174.37,174.39000000000001,174.4,174.41,28.43,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A -2012,7,24,12,30,101890,100740,99630,79.09,0,3.7800000000000002,4.0600000000000005,4.12,4.15,4.17,4.19,4.2,4.21,4.22,174.59,174.07,173.91,173.74,173.59,173.45000000000002,173.31,173.18,172.91,28.45,28.11,27.94,27.740000000000002,27.55,27.36,27.17,26.98,26.6,N/A,N/A -2012,7,24,13,30,101920,100770,99660,76.88,0,4.41,4.74,4.8100000000000005,4.8500000000000005,4.87,4.89,4.91,4.92,4.93,167.94,168.28,168.51,168.72,168.9,169.08,169.27,169.43,169.77,28.560000000000002,28.23,28.060000000000002,27.86,27.67,27.48,27.29,27.1,26.72,N/A,N/A -2012,7,24,14,30,101940,100790,99670,77.89,0,3.92,4.16,4.2,4.22,4.22,4.23,4.22,4.22,4.21,179.01,178.84,178.75,178.67000000000002,178.59,178.52,178.44,178.36,178.21,28.47,28.13,27.96,27.76,27.57,27.38,27.18,27,26.62,N/A,N/A -2012,7,24,15,30,101910,100760,99650,78.45,0,3.36,3.5500000000000003,3.58,3.6,3.61,3.62,3.62,3.63,3.63,185.04,185.56,185.91,186.26,186.58,186.88,187.19,187.49,188.08,28.41,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A -2012,7,24,16,30,101880,100730,99620,75.34,0,2.97,3.09,3.1,3.1,3.09,3.09,3.08,3.0700000000000003,3.04,197.02,197.19,197.23000000000002,197.26,197.27,197.28,197.28,197.28,197.24,28.44,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,7,24,17,30,101870,100720,99610,76.15,0,2.4,2.5100000000000002,2.52,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.52,2.52,192.68,191.52,190.89000000000001,190.25,189.65,189.07,188.5,187.97,186.8,28.37,28.02,27.84,27.64,27.45,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A -2012,7,24,18,30,101810,100660,99540,75.22,0,1.9000000000000001,1.95,1.95,1.94,1.93,1.92,1.9100000000000001,1.9000000000000001,1.8800000000000001,156.94,157.41,157.63,157.82,157.99,158.14000000000001,158.26,158.37,158.52,28.43,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A -2012,7,24,19,30,101780,100630,99520,74.69,0,2.4,2.52,2.54,2.5500000000000003,2.56,2.57,2.58,2.58,2.59,160.78,160.32,159.88,159.45000000000002,159.09,158.75,158.39000000000001,158.05,157.39000000000001,28.51,28.14,27.96,27.76,27.57,27.38,27.18,27,26.62,N/A,N/A -2012,7,24,20,30,101730,100580,99470,76.18,0,3.62,3.8200000000000003,3.85,3.87,3.89,3.89,3.9,3.9,3.91,170.11,169.94,169.81,169.69,169.59,169.51,169.43,169.35,169.22,28.57,28.21,28.03,27.830000000000002,27.64,27.45,27.26,27.07,26.7,N/A,N/A -2012,7,24,21,30,101710,100570,99450,75.18,0,3.64,3.85,3.88,3.89,3.9,3.91,3.91,3.92,3.92,162.20000000000002,162.54,162.73,162.93,163.12,163.31,163.51,163.71,164.14000000000001,28.69,28.34,28.16,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A -2012,7,24,22,30,101690,100540,99430,75.92,0,4.5,4.82,4.87,4.9,4.92,4.93,4.93,4.94,4.95,158.76,158.63,158.57,158.52,158.49,158.46,158.44,158.42000000000002,158.38,28.77,28.44,28.27,28.080000000000002,27.89,27.7,27.51,27.330000000000002,26.95,N/A,N/A -2012,7,24,23,30,101640,100500,99390,77.49,0,5.14,5.5,5.55,5.57,5.58,5.58,5.57,5.55,5.5200000000000005,150.23,150.43,150.58,150.72,150.84,150.97,151.11,151.24,151.54,28.68,28.35,28.18,27.990000000000002,27.8,27.61,27.42,27.240000000000002,26.86,N/A,N/A -2012,7,25,0,30,101650,100500,99390,78.29,0,5.8,6.26,6.36,6.41,6.45,6.48,6.49,6.51,6.5200000000000005,161.59,161.68,161.73,161.78,161.82,161.87,161.92000000000002,161.97,162.09,28.69,28.37,28.2,28.01,27.82,27.63,27.44,27.25,26.88,N/A,N/A -2012,7,25,1,30,101610,100470,99360,79.92,0,5.86,6.33,6.42,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,155.18,155.07,155.09,155.13,155.15,155.19,155.22,155.26,155.33,28.650000000000002,28.310000000000002,28.150000000000002,27.95,27.76,27.57,27.38,27.2,26.82,N/A,N/A -2012,7,25,2,30,101610,100460,99350,74.63,0,6.07,6.6000000000000005,6.72,6.78,6.83,6.86,6.890000000000001,6.91,6.95,149.98,149.95000000000002,149.94,149.91,149.87,149.83,149.78,149.72,149.57,29.03,28.73,28.57,28.38,28.2,28.01,27.82,27.64,27.27,N/A,N/A -2012,7,25,3,30,101610,100470,99360,81.83,0,7.5,8.17,8.33,8.42,8.49,8.540000000000001,8.58,8.620000000000001,8.67,160.66,160.8,160.8,160.77,160.73,160.68,160.63,160.56,160.41,28.830000000000002,28.51,28.36,28.16,27.98,27.79,27.61,27.43,27.060000000000002,N/A,N/A -2012,7,25,4,30,101560,100410,99300,86.60000000000001,0,6.86,7.44,7.5600000000000005,7.62,7.65,7.68,7.68,7.69,7.68,171.20000000000002,171.24,171.27,171.29,171.3,171.32,171.34,171.36,171.39000000000001,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,25,5,30,101560,100420,99310,84.24,0,7.07,7.67,7.8,7.86,7.91,7.930000000000001,7.95,7.96,7.97,181.61,181.69,181.74,181.78,181.81,181.83,181.85,181.86,181.87,28.55,28.2,28.03,27.830000000000002,27.650000000000002,27.46,27.26,27.080000000000002,26.7,N/A,N/A -2012,7,25,6,30,101580,100440,99330,85.37,0,7.43,8.07,8.22,8.3,8.36,8.39,8.41,8.43,8.44,197.53,197.41,197.32,197.22,197.13,197.03,196.95000000000002,196.86,196.68,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A -2012,7,25,7,30,101600,100460,99350,83.92,0,7.29,7.99,8.16,8.26,8.33,8.370000000000001,8.41,8.44,8.46,196.78,196.85,196.91,196.95000000000002,196.97,196.99,197,197,197.01,28.76,28.43,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A -2012,7,25,8,30,101610,100460,99350,79.94,0,7.390000000000001,8.05,8.2,8.28,8.33,8.36,8.370000000000001,8.39,8.4,201.84,201.93,201.87,201.79,201.70000000000002,201.61,201.5,201.4,201.16,28.72,28.38,28.21,28.01,27.830000000000002,27.64,27.44,27.26,26.88,N/A,N/A -2012,7,25,9,30,101600,100450,99340,80.31,0,7.18,7.83,7.99,8.08,8.14,8.18,8.22,8.24,8.28,203.98000000000002,204.03,204.04,204.06,204.07,204.08,204.1,204.12,204.15,28.62,28.28,28.11,27.91,27.72,27.53,27.330000000000002,27.150000000000002,26.77,N/A,N/A -2012,7,25,10,30,101610,100460,99350,79.18,0,7.08,7.72,7.87,7.95,8.01,8.040000000000001,8.07,8.09,8.11,204.73000000000002,204.58,204.63,204.69,204.76,204.83,204.91,204.98000000000002,205.13,28.69,28.35,28.17,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A -2012,7,25,11,30,101650,100500,99390,74.13,0,6.59,7.2,7.36,7.46,7.53,7.59,7.640000000000001,7.68,7.75,209.56,209.33,209.17000000000002,208.99,208.83,208.67000000000002,208.51,208.36,208.06,28.85,28.53,28.36,28.16,27.97,27.78,27.59,27.400000000000002,27.02,N/A,N/A -2012,7,25,12,30,101630,100490,99380,77.79,0,7.08,7.71,7.8500000000000005,7.930000000000001,7.97,8.01,8.02,8.03,8.040000000000001,201.87,202.20000000000002,202.41,202.61,202.79,202.96,203.13,203.29,203.59,28.63,28.3,28.13,27.93,27.740000000000002,27.54,27.35,27.16,26.78,N/A,N/A -2012,7,25,13,30,101700,100550,99440,77.01,0,6.46,6.97,7.07,7.11,7.140000000000001,7.15,7.15,7.140000000000001,7.12,200.54,200.86,201.01,201.16,201.28,201.39000000000001,201.48000000000002,201.57,201.74,28.650000000000002,28.310000000000002,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.79,N/A,N/A -2012,7,25,14,30,101700,100550,99440,70.62,0,5.99,6.43,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.61,6.61,6.61,211.5,211.46,211.42000000000002,211.37,211.33,211.28,211.23000000000002,211.17000000000002,211.06,28.85,28.54,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A -2012,7,25,15,30,101720,100580,99460,71.87,0,5.29,5.73,5.82,5.87,5.91,5.93,5.95,5.96,5.97,206.76,206.42000000000002,206.24,206.08,205.93,205.79,205.64000000000001,205.51,205.24,28.87,28.54,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A -2012,7,25,16,30,101670,100520,99410,71.74,0,5.62,6.08,6.19,6.25,6.29,6.33,6.3500000000000005,6.38,6.41,207.99,208.07,208.12,208.17000000000002,208.21,208.25,208.29,208.32,208.38,28.84,28.51,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A -2012,7,25,17,30,101660,100510,99400,76.24,0,5.32,5.72,5.8,5.84,5.87,5.9,5.91,5.93,5.95,200.98000000000002,201.29,201.43,201.59,201.73000000000002,201.86,201.99,202.11,202.37,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A -2012,7,25,18,30,101680,100530,99420,78.86,0,5.3100000000000005,5.74,5.84,5.91,5.96,6.01,6.04,6.07,6.13,190.73,191.12,191.31,191.49,191.65,191.81,191.96,192.11,192.39000000000001,28.71,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A -2012,7,25,19,30,101620,100470,99360,78.57000000000001,0,6.5200000000000005,6.99,7.09,7.13,7.16,7.17,7.18,7.18,7.17,194.51,194.75,194.9,195.06,195.21,195.34,195.49,195.64000000000001,195.95000000000002,28.77,28.42,28.25,28.05,27.86,27.67,27.48,27.29,26.92,N/A,N/A -2012,7,25,20,30,101580,100440,99330,80.43,0,5.73,6.16,6.26,6.3100000000000005,6.34,6.36,6.37,6.38,6.390000000000001,193.46,193.52,193.57,193.62,193.67000000000002,193.72,193.77,193.81,193.92000000000002,28.71,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.23,26.85,N/A,N/A -2012,7,25,21,30,101530,100390,99280,80.04,0,5.91,6.37,6.47,6.5200000000000005,6.5600000000000005,6.59,6.61,6.62,6.65,191.92000000000002,192.09,192.22,192.35,192.48000000000002,192.6,192.74,192.87,193.13,28.64,28.29,28.12,27.92,27.73,27.54,27.34,27.16,26.78,N/A,N/A -2012,7,25,22,30,101520,100370,99260,81.78,0,5.5200000000000005,5.95,6.04,6.09,6.13,6.16,6.18,6.2,6.22,184.56,184.94,185.20000000000002,185.44,185.65,185.86,186.05,186.22,186.58,28.59,28.25,28.080000000000002,27.87,27.68,27.490000000000002,27.3,27.11,26.73,N/A,N/A -2012,7,25,23,30,101470,100330,99220,80.61,0,5.79,6.22,6.3100000000000005,6.36,6.390000000000001,6.41,6.42,6.43,6.44,187.3,187.51,187.64000000000001,187.75,187.83,187.92000000000002,188,188.08,188.24,28.6,28.26,28.09,27.89,27.71,27.51,27.32,27.13,26.75,N/A,N/A -2012,7,26,0,30,101460,100310,99200,82.91,0,6.49,6.99,7.1000000000000005,7.140000000000001,7.17,7.19,7.2,7.2,7.19,185.4,185.32,185.35,185.39000000000001,185.43,185.47,185.52,185.56,185.66,28.740000000000002,28.41,28.25,28.04,27.86,27.67,27.48,27.29,26.91,N/A,N/A -2012,7,26,1,30,101380,100230,99130,82.21000000000001,0,6.5,7,7.09,7.12,7.13,7.13,7.11,7.1000000000000005,7.0600000000000005,182.97,182.99,183.11,183.26,183.41,183.56,183.72,183.87,184.21,28.560000000000002,28.22,28.05,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A -2012,7,26,2,30,101380,100240,99130,81.77,0,6.71,7.29,7.43,7.5,7.5600000000000005,7.59,7.61,7.63,7.65,184.37,184.82,185,185.15,185.28,185.39000000000001,185.5,185.6,185.81,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.63,N/A,N/A -2012,7,26,3,30,101360,100220,99110,81.73,0,6.96,7.57,7.7,7.78,7.84,7.88,7.91,7.930000000000001,7.97,191.59,191.33,191.31,191.3,191.29,191.28,191.28,191.27,191.25,28.44,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,7,26,4,30,101360,100220,99110,80.3,0,7.45,8.03,8.16,8.22,8.27,8.3,8.32,8.33,8.36,196.64000000000001,196.23000000000002,196.11,195.96,195.81,195.66,195.49,195.32,194.94,28.490000000000002,28.150000000000002,27.98,27.78,27.59,27.41,27.21,27.03,26.66,N/A,N/A -2012,7,26,5,30,101350,100210,99100,84.24,0,7.640000000000001,8.39,8.56,8.66,8.73,8.78,8.81,8.84,8.86,193.6,193.39000000000001,193.31,193.24,193.19,193.14000000000001,193.1,193.06,193,28.34,27.98,27.8,27.6,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A -2012,7,26,6,30,101380,100240,99130,82.75,0,8.18,8.99,9.18,9.28,9.35,9.4,9.43,9.450000000000001,9.46,199.23000000000002,199.18,199.07,198.96,198.85,198.74,198.63,198.52,198.29,28.45,28.1,27.93,27.72,27.53,27.34,27.14,26.96,26.57,N/A,N/A -2012,7,26,7,30,101370,100230,99120,79.13,0,8.97,9.82,10.03,10.14,10.22,10.27,10.32,10.35,10.39,192.15,192.22,192.24,192.25,192.26,192.26,192.26,192.26,192.24,28.66,28.330000000000002,28.17,27.97,27.78,27.6,27.400000000000002,27.22,26.85,N/A,N/A -2012,7,26,8,30,101400,100250,99140,79.14,0,9.01,9.84,10.05,10.16,10.23,10.290000000000001,10.33,10.36,10.41,197.91,197.44,197.28,197.16,197.06,196.99,196.92000000000002,196.87,196.79,28.59,28.25,28.080000000000002,27.88,27.7,27.51,27.32,27.13,26.76,N/A,N/A -2012,7,26,9,30,101430,100280,99180,76.18,0,8.61,9.52,9.74,9.870000000000001,9.96,10.02,10.06,10.09,10.120000000000001,202.23000000000002,202.42000000000002,202.43,202.4,202.37,202.32,202.27,202.22,202.08,28.72,28.39,28.22,28.01,27.82,27.63,27.43,27.25,26.86,N/A,N/A -2012,7,26,10,30,101420,100280,99170,75.77,0,7.640000000000001,8.4,8.59,8.700000000000001,8.78,8.84,8.89,8.93,8.99,198.05,198.51,198.72,198.92000000000002,199.09,199.26,199.43,199.59,199.91,28.76,28.43,28.26,28.07,27.88,27.7,27.5,27.32,26.94,N/A,N/A -2012,7,26,11,30,101470,100330,99220,78.43,0,7.91,8.58,8.71,8.76,8.78,8.790000000000001,8.790000000000001,8.78,8.74,197.41,197.44,197.49,197.53,197.57,197.62,197.66,197.70000000000002,197.79,28.62,28.3,28.13,27.93,27.740000000000002,27.55,27.36,27.18,26.8,N/A,N/A -2012,7,26,12,30,101500,100350,99240,71.92,0,7.42,8.11,8.290000000000001,8.4,8.48,8.55,8.6,8.65,8.73,206.89000000000001,206.51,206.31,206.14000000000001,205.99,205.86,205.73000000000002,205.6,205.37,29,28.71,28.55,28.36,28.18,27.990000000000002,27.8,27.62,27.25,N/A,N/A -2012,7,26,13,30,101540,100400,99290,72.81,0,6.34,6.86,6.98,7.05,7.1000000000000005,7.140000000000001,7.18,7.21,7.26,199.57,199.49,199.51,199.57,199.64000000000001,199.71,199.79,199.87,200.07,28.93,28.63,28.48,28.28,28.1,27.92,27.73,27.55,27.18,N/A,N/A -2012,7,26,14,30,101560,100420,99310,71.27,0,5.18,5.71,5.84,5.92,6,6.0600000000000005,6.11,6.16,6.26,197.69,198.17000000000002,198.45000000000002,198.72,198.97,199.22,199.46,199.68,200.14000000000001,29.05,28.75,28.580000000000002,28.39,28.21,28.02,27.830000000000002,27.650000000000002,27.27,N/A,N/A -2012,7,26,15,30,101590,100440,99330,73.7,0,6.2700000000000005,6.82,6.93,6.99,7.0200000000000005,7.04,7.05,7.0600000000000005,7.0600000000000005,191.46,191.46,191.46,191.49,191.51,191.53,191.55,191.57,191.61,28.97,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A -2012,7,26,16,30,101600,100450,99340,70.81,0,6.0200000000000005,6.47,6.5600000000000005,6.6000000000000005,6.62,6.63,6.640000000000001,6.640000000000001,6.65,190.13,190.07,190.04,190.01,190,189.98,189.98,189.97,189.98,29.09,28.79,28.62,28.43,28.25,28.060000000000002,27.87,27.68,27.310000000000002,N/A,N/A -2012,7,26,17,30,101550,100410,99300,71.08,0,5.91,6.44,6.55,6.62,6.67,6.7,6.74,6.76,6.8,185.52,185.63,185.70000000000002,185.75,185.8,185.85,185.9,185.94,186.03,29.14,28.830000000000002,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,7,26,18,30,101560,100420,99310,68.74,0,5.46,5.93,6.03,6.09,6.13,6.16,6.19,6.21,6.24,188.03,188.16,188.21,188.26,188.31,188.36,188.4,188.44,188.52,29.34,29.04,28.87,28.68,28.490000000000002,28.3,28.11,27.92,27.54,N/A,N/A -2012,7,26,19,30,101540,100400,99290,69.96000000000001,0,6.11,6.6000000000000005,6.69,6.73,6.75,6.76,6.76,6.75,6.74,180.98,181.14000000000001,181.24,181.3,181.35,181.38,181.42000000000002,181.46,181.53,29.3,29,28.830000000000002,28.63,28.45,28.26,28.060000000000002,27.88,27.5,N/A,N/A -2012,7,26,20,30,101510,100370,99260,71.12,0,6.18,6.67,6.75,6.78,6.78,6.78,6.78,6.76,6.73,178.02,177.83,177.75,177.70000000000002,177.67000000000002,177.64000000000001,177.63,177.63,177.66,29.23,28.93,28.77,28.57,28.39,28.2,28.01,27.82,27.44,N/A,N/A -2012,7,26,21,30,101470,100330,99220,73.88,0,6.68,7.25,7.36,7.41,7.44,7.45,7.46,7.46,7.45,169.95000000000002,169.89000000000001,169.85,169.8,169.77,169.73,169.70000000000002,169.67000000000002,169.6,29.080000000000002,28.77,28.61,28.41,28.22,28.04,27.85,27.66,27.28,N/A,N/A -2012,7,26,22,30,101450,100310,99200,74.75,0,6.67,7.22,7.32,7.37,7.390000000000001,7.4,7.41,7.41,7.390000000000001,169.49,169.58,169.67000000000002,169.73,169.78,169.82,169.86,169.9,169.99,28.96,28.650000000000002,28.490000000000002,28.29,28.11,27.92,27.73,27.54,27.17,N/A,N/A -2012,7,26,23,30,101440,100290,99180,80.31,0,7.21,7.84,7.97,8.040000000000001,8.08,8.11,8.120000000000001,8.13,8.13,171.35,171.48,171.54,171.6,171.64000000000001,171.68,171.72,171.76,171.84,28.740000000000002,28.41,28.25,28.05,27.86,27.67,27.48,27.29,26.92,N/A,N/A -2012,7,27,0,30,101400,100260,99150,82.09,0,6.19,6.75,6.890000000000001,6.98,7.05,7.1000000000000005,7.15,7.19,7.26,172.70000000000002,173.29,173.39000000000001,173.45000000000002,173.49,173.51,173.52,173.52,173.5,28.650000000000002,28.32,28.150000000000002,27.95,27.76,27.57,27.37,27.19,26.810000000000002,N/A,N/A -2012,7,27,1,30,101410,100270,99160,84.99,0,7.79,8.43,8.55,8.61,8.65,8.67,8.68,8.68,8.67,169.69,170.15,170.32,170.49,170.64000000000001,170.79,170.93,171.07,171.35,28.490000000000002,28.14,27.96,27.76,27.57,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,7,27,2,30,101400,100260,99150,87.37,0,8,8.77,8.950000000000001,9.06,9.13,9.18,9.21,9.24,9.27,168.06,167.98,167.97,167.98,167.99,168.01,168.04,168.06,168.12,28.43,28.07,27.89,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,27,3,30,101420,100270,99170,84.04,0,7.61,8.32,8.48,8.57,8.63,8.67,8.69,8.71,8.73,170.94,170.99,170.97,170.96,170.95000000000002,170.95000000000002,170.95000000000002,170.95000000000002,170.95000000000002,28.45,28.1,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A -2012,7,27,4,30,101430,100290,99180,82.07000000000001,0,7.49,8.21,8.38,8.48,8.55,8.6,8.64,8.67,8.72,174.96,175.02,175,174.97,174.95000000000002,174.92000000000002,174.89000000000001,174.85,174.79,28.53,28.18,28.01,27.810000000000002,27.61,27.42,27.23,27.04,26.66,N/A,N/A -2012,7,27,5,30,101450,100310,99200,83.46000000000001,0,7.37,8.06,8.22,8.32,8.38,8.41,8.44,8.45,8.45,174.39000000000001,174.29,174.31,174.35,174.41,174.47,174.54,174.61,174.76,28.48,28.12,27.95,27.75,27.55,27.36,27.16,26.97,26.59,N/A,N/A -2012,7,27,6,30,101490,100350,99240,82.53,0,8.120000000000001,8.89,9.07,9.17,9.24,9.290000000000001,9.32,9.34,9.370000000000001,176.19,176.01,175.96,175.91,175.87,175.83,175.79,175.76,175.67000000000002,28.51,28.16,27.990000000000002,27.79,27.6,27.41,27.21,27.03,26.650000000000002,N/A,N/A -2012,7,27,7,30,101520,100370,99260,82.4,0,7.25,7.930000000000001,8.08,8.16,8.22,8.26,8.28,8.290000000000001,8.290000000000001,174.89000000000001,174.91,174.92000000000002,174.95000000000002,174.98,175.01,175.05,175.08,175.15,28.53,28.19,28.01,27.810000000000002,27.62,27.43,27.23,27.05,26.66,N/A,N/A -2012,7,27,8,30,101520,100380,99270,80.83,0,6.75,7.34,7.48,7.55,7.59,7.62,7.640000000000001,7.65,7.65,175.6,175.76,175.84,175.93,176.02,176.1,176.19,176.29,176.47,28.67,28.35,28.18,27.98,27.79,27.6,27.400000000000002,27.21,26.830000000000002,N/A,N/A -2012,7,27,9,30,101560,100420,99310,81.86,0,5.94,6.44,6.55,6.6000000000000005,6.640000000000001,6.67,6.69,6.7,6.72,168.71,168.82,168.88,168.94,168.99,169.04,169.08,169.13,169.21,28.71,28.38,28.21,28.01,27.830000000000002,27.64,27.44,27.25,26.87,N/A,N/A -2012,7,27,10,30,101560,100410,99300,84.01,0,6.98,7.57,7.69,7.74,7.78,7.8,7.8100000000000005,7.82,7.82,164.14000000000001,164.31,164.42000000000002,164.53,164.63,164.72,164.8,164.88,165.06,28.64,28.310000000000002,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.8,N/A,N/A -2012,7,27,11,30,101610,100460,99350,82.83,0,5.6000000000000005,6.09,6.2,6.2700000000000005,6.3100000000000005,6.3500000000000005,6.38,6.4,6.43,169.23,169.51,169.68,169.84,169.99,170.13,170.28,170.41,170.71,28.8,28.47,28.3,28.11,27.92,27.73,27.53,27.35,26.97,N/A,N/A -2012,7,27,12,30,101620,100480,99370,84.06,0,5.72,6.18,6.28,6.33,6.37,6.38,6.4,6.4,6.4,163.32,163.20000000000002,163.15,163.11,163.07,163.03,162.99,162.95000000000002,162.87,28.8,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A -2012,7,27,13,30,101660,100510,99400,84.56,0,4.07,4.36,4.43,4.49,4.53,4.5600000000000005,4.59,4.61,4.65,174.56,172.96,171.99,171.06,170.29,169.59,168.96,168.39000000000001,167.33,28.69,28.37,28.21,28.01,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A -2012,7,27,14,30,101870,100700,99570,93.51,244.3,9.77,10.35,10.41,10.32,10.21,10.07,9.9,9.74,9.44,196.45000000000002,197.6,198.56,199.73000000000002,200.86,202.03,203.51,205.02,210.20000000000002,24.45,23.88,23.68,23.490000000000002,23.32,23.16,23.01,22.87,22.62,N/A,N/A -2012,7,27,15,30,101860,100690,99550,93.28,146.1,7.08,7.11,6.94,6.69,6.3500000000000005,6,5.47,4.98,4.3,163.87,164.24,164.77,165.45000000000002,166.27,167.1,168.36,169.52,172.88,23.81,23.32,23.150000000000002,23.02,22.91,22.82,22.76,22.71,22.68,N/A,N/A -2012,7,27,16,30,101720,100550,99430,81.25,4.800000000000001,3.36,3.33,3.23,3.1,3.0100000000000002,2.95,2.85,2.7600000000000002,2.79,190.94,188.37,185.95000000000002,182.27,176.31,169.15,166.21,164.55,152.05,24.77,24.43,24.37,24.39,24.68,25.13,25.43,25.66,26.03,N/A,N/A -2012,7,27,17,30,101730,100570,99450,79.48,0,4.71,4.76,4.67,4.53,4.29,4.01,3.46,2.95,2.29,185.70000000000002,185.36,185.32,185.34,185.84,186.63,189.88,193.14000000000001,203.81,25.75,25.37,25.22,25.07,25,24.98,25.240000000000002,25.560000000000002,26.060000000000002,N/A,N/A -2012,7,27,18,30,101760,100600,99480,72.35000000000001,0,3.0100000000000002,2.99,2.89,2.75,2.37,1.93,1.55,1.27,0.9400000000000001,108.34,108.65,109.16,109.95,111.88,114.11,116,117.43,124.11,27.18,26.85,26.7,26.55,26.61,26.810000000000002,26.990000000000002,27.150000000000002,27.07,N/A,N/A -2012,7,27,19,30,101750,100600,99480,74.37,0,5.37,5.59,5.59,5.54,5.49,5.43,5.36,5.28,5.08,179.79,180.36,180.73,181.15,181.59,182.04,182.58,183.12,184.6,27.27,26.89,26.71,26.53,26.35,26.18,26.01,25.86,25.580000000000002,N/A,N/A -2012,7,27,20,30,101750,100590,99470,72.10000000000001,0,2.98,3.06,3.0500000000000003,3.0100000000000002,2.97,2.93,2.87,2.8000000000000003,2.58,181.73,181.45000000000002,181.13,180.74,180.24,179.66,178.92000000000002,178.20000000000002,176.49,27.03,26.66,26.490000000000002,26.310000000000002,26.14,25.97,25.82,25.68,25.48,N/A,N/A -2012,7,27,21,30,101750,100600,99480,73.02,0,3.3200000000000003,3.44,3.45,3.43,3.42,3.4,3.38,3.36,3.33,147.07,147.95000000000002,148.59,149.28,149.98,150.69,151.53,152.35,154.62,27.53,27.17,26.990000000000002,26.810000000000002,26.63,26.45,26.27,26.11,25.84,N/A,N/A -2012,7,27,22,30,101720,100570,99450,72.23,0,2.05,2.12,2.12,2.11,2.1,2.09,2.07,2.05,1.97,128.23,128.49,128.64000000000001,128.78,128.96,129.17000000000002,129.53,129.91,132.67000000000002,27.8,27.46,27.29,27.1,26.92,26.740000000000002,26.57,26.41,26.2,N/A,N/A -2012,7,27,23,30,101680,100530,99420,80.16,0,3.15,3.29,3.31,3.31,3.31,3.31,3.3000000000000003,3.3000000000000003,3.27,170.09,170.41,170.58,170.78,171,171.24,171.52,171.8,172.73,27.94,27.59,27.42,27.23,27.04,26.86,26.67,26.490000000000002,26.150000000000002,N/A,N/A -2012,7,28,0,30,101620,100470,99360,78.78,0,3.18,3.34,3.36,3.37,3.38,3.37,3.37,3.37,3.37,205.54,205.51,205.52,205.53,205.55,205.59,205.64000000000001,205.71,205.99,28.18,27.84,27.68,27.48,27.3,27.11,26.93,26.75,26.41,N/A,N/A -2012,7,28,1,30,101600,100450,99340,77.56,0,4.2,4.45,4.48,4.49,4.49,4.49,4.48,4.47,4.43,188.04,188.19,188.29,188.4,188.53,188.65,188.78,188.92000000000002,189.25,28.28,27.94,27.77,27.57,27.38,27.19,27,26.810000000000002,26.44,N/A,N/A -2012,7,28,2,30,101630,100480,99370,78.49,0,4.96,5.2700000000000005,5.32,5.32,5.32,5.3,5.29,5.26,5.21,179.85,179.97,180.01,180.06,180.11,180.16,180.22,180.27,180.42000000000002,28.36,28.01,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A -2012,7,28,3,30,101680,100540,99420,74.99,0,4.71,5.0200000000000005,5.07,5.09,5.1000000000000005,5.1000000000000005,5.09,5.08,5.05,179.5,179.56,179.57,179.6,179.63,179.66,179.70000000000002,179.74,179.86,28.560000000000002,28.23,28.060000000000002,27.87,27.68,27.5,27.3,27.12,26.740000000000002,N/A,N/A -2012,7,28,4,30,101710,100560,99450,74.98,0,4.65,4.94,4.99,5,5,4.99,4.97,4.96,4.91,175.43,175.61,175.72,175.82,175.92000000000002,176.03,176.14000000000001,176.26,176.54,28.55,28.22,28.060000000000002,27.86,27.68,27.490000000000002,27.3,27.12,26.740000000000002,N/A,N/A -2012,7,28,5,30,101720,100570,99460,79.17,0,5.58,6.01,6.09,6.13,6.16,6.17,6.18,6.18,6.18,182.91,183.03,183.08,183.13,183.18,183.23,183.28,183.32,183.42000000000002,28.43,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.59,N/A,N/A -2012,7,28,6,30,101750,100600,99490,79.93,0,6.37,6.88,6.99,7.04,7.08,7.1000000000000005,7.11,7.11,7.11,186.76,186.72,186.70000000000002,186.68,186.66,186.63,186.61,186.59,186.54,28.43,28.07,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A -2012,7,28,7,30,101750,100600,99480,81.22,0,7.25,7.87,8.01,8.08,8.120000000000001,8.15,8.17,8.18,8.19,194.82,194.79,194.74,194.68,194.63,194.58,194.53,194.47,194.37,28.45,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.59,N/A,N/A -2012,7,28,8,30,101790,100640,99530,81.23,0,6.25,6.78,6.9,6.97,7.0200000000000005,7.05,7.07,7.09,7.1000000000000005,209.52,209.48000000000002,209.39000000000001,209.3,209.21,209.11,209.02,208.94,208.76,28.47,28.11,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.59,N/A,N/A -2012,7,28,9,30,101810,100660,99550,77.63,0,5.69,6.12,6.2,6.24,6.2700000000000005,6.28,6.29,6.3,6.3,219.04,219.06,219,218.94,218.89000000000001,218.83,218.78,218.73000000000002,218.65,28.52,28.18,28,27.8,27.61,27.43,27.23,27.04,26.66,N/A,N/A -2012,7,28,10,30,101810,100660,99550,82.04,0,5.08,5.44,5.51,5.55,5.58,5.6000000000000005,5.61,5.62,5.63,235.64000000000001,235.39000000000001,235.24,235.08,234.93,234.77,234.61,234.47,234.12,28.36,28.01,27.84,27.64,27.45,27.26,27.07,26.88,26.5,N/A,N/A -2012,7,28,11,30,101800,100650,99540,82.57000000000001,0,3.86,4.09,4.14,4.16,4.17,4.18,4.19,4.2,4.21,254.54,254.28,254.04,253.8,253.59,253.39000000000001,253.18,252.97,252.56,28.29,27.94,27.76,27.57,27.37,27.18,26.990000000000002,26.8,26.42,N/A,N/A -2012,7,28,12,30,101820,100670,99560,83.10000000000001,0,3.96,4.17,4.2,4.21,4.21,4.21,4.2,4.18,4.16,285.19,284.76,284.40000000000003,284.05,283.73,283.41,283.09000000000003,282.8,282.18,28.21,27.85,27.68,27.47,27.28,27.09,26.89,26.71,26.32,N/A,N/A -2012,7,28,13,30,101860,100700,99590,84.71000000000001,0,3.75,3.87,3.86,3.83,3.79,3.74,3.69,3.64,3.5100000000000002,329.22,328.85,328.72,328.55,328.34000000000003,328.11,327.78000000000003,327.44,326.29,27.72,27.35,27.17,26.97,26.79,26.6,26.41,26.23,25.86,N/A,N/A -2012,7,28,14,30,101940,100790,99670,84.41,0,4.1,4.3500000000000005,4.4,4.43,4.46,4.47,4.49,4.51,4.55,279.86,279.37,279.04,278.73,278.42,278.09000000000003,277.74,277.39,276.58,27.78,27.41,27.23,27.03,26.84,26.650000000000002,26.46,26.27,25.900000000000002,N/A,N/A -2012,7,28,15,30,102010,100850,99720,90.16,0,11.03,11.950000000000001,12.16,12.24,12.280000000000001,12.3,12.290000000000001,12.27,12.22,220.76,220.91,221,221.11,221.21,221.32,221.44,221.56,221.89000000000001,26.1,25.57,25.37,25.150000000000002,24.96,24.77,24.580000000000002,24.400000000000002,24.05,N/A,N/A -2012,7,28,16,30,101960,100800,99680,86.82000000000001,0,8.1,8.700000000000001,8.8,8.84,8.85,8.85,8.83,8.81,8.75,220.66,220.8,220.85,220.91,220.96,221.01,221.07,221.13,221.31,26.6,26.13,25.93,25.73,25.53,25.34,25.150000000000002,24.97,24.59,N/A,N/A -2012,7,28,17,30,101950,100790,99670,80.21000000000001,0,5.76,6.1000000000000005,6.16,6.17,6.18,6.18,6.17,6.16,6.140000000000001,219.61,220.20000000000002,220.61,221.04,221.47,221.9,222.38,222.85,224.02,27.16,26.75,26.57,26.37,26.18,25.990000000000002,25.8,25.62,25.25,N/A,N/A -2012,7,28,18,30,101900,100740,99620,80.11,0,4.29,4.5,4.5200000000000005,4.5200000000000005,4.51,4.5,4.49,4.47,4.43,222.68,223.49,223.92000000000002,224.38,224.84,225.31,225.86,226.4,227.86,27.19,26.8,26.61,26.42,26.23,26.04,25.85,25.67,25.3,N/A,N/A -2012,7,28,19,30,101860,100700,99580,79.28,0,4.21,4.42,4.44,4.45,4.45,4.44,4.43,4.43,4.46,229.71,230.09,230.49,230.92000000000002,231.4,231.91,232.62,233.32,236.45000000000002,27.52,27.13,26.96,26.76,26.580000000000002,26.400000000000002,26.22,26.05,25.75,N/A,N/A -2012,7,28,20,30,101810,100660,99540,77.86,0,4.58,4.8,4.8,4.78,4.75,4.71,4.66,4.61,4.34,218.71,219.27,219.6,220,220.5,221.07,222.14000000000001,223.31,231.38,27.990000000000002,27.63,27.45,27.26,27.080000000000002,26.91,26.740000000000002,26.59,26.47,N/A,N/A -2012,7,28,21,30,101810,100660,99550,80.97,0,8.03,8.66,8.77,8.8,8.8,8.8,8.77,8.74,8.66,201,201.11,201.20000000000002,201.29,201.37,201.46,201.56,201.65,201.9,28.25,27.88,27.71,27.51,27.32,27.13,26.94,26.76,26.39,N/A,N/A -2012,7,28,22,30,101750,100600,99490,81.91,0,8.33,9.02,9.13,9.17,9.18,9.17,9.15,9.13,9.040000000000001,206.35,206.54,206.61,206.68,206.75,206.82,206.91,206.98000000000002,207.19,28.27,27.900000000000002,27.72,27.52,27.330000000000002,27.150000000000002,26.96,26.78,26.41,N/A,N/A -2012,7,28,23,30,101730,100580,99470,78.78,0,8.05,8.73,8.85,8.9,8.92,8.93,8.92,8.9,8.85,209.24,209.26,209.28,209.3,209.31,209.31,209.32,209.32,209.32,28.38,28.02,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A -2012,7,29,0,30,101690,100540,99430,78.96000000000001,0,7.37,7.91,8,8.01,8.01,8,7.97,7.930000000000001,7.84,210.16,210.37,210.44,210.52,210.62,210.72,210.86,210.99,211.39000000000001,28.29,27.93,27.75,27.560000000000002,27.38,27.19,27,26.830000000000002,26.48,N/A,N/A -2012,7,29,1,30,101670,100530,99410,75.9,0,6.26,6.7,6.76,6.78,6.78,6.7700000000000005,6.75,6.73,6.66,212.84,213.17000000000002,213.31,213.47,213.64000000000001,213.82,214.04,214.25,214.88,28.41,28.060000000000002,27.89,27.7,27.51,27.330000000000002,27.14,26.96,26.6,N/A,N/A -2012,7,29,2,30,101680,100530,99420,75.58,0,5.82,6.21,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.25,6.23,6.2,6.140000000000001,205.08,205.23000000000002,205.41,205.59,205.78,205.97,206.21,206.44,207.16,28.53,28.2,28.03,27.830000000000002,27.650000000000002,27.47,27.28,27.11,26.76,N/A,N/A -2012,7,29,3,30,101660,100510,99400,78.55,0,5.74,6.13,6.18,6.2,6.19,6.18,6.16,6.140000000000001,6.08,212.70000000000002,212.89000000000001,213,213.14000000000001,213.27,213.41,213.6,213.8,214.4,28.44,28.1,27.93,27.740000000000002,27.55,27.37,27.18,27,26.650000000000002,N/A,N/A -2012,7,29,4,30,101630,100480,99370,78.87,0,6.3,6.78,6.8500000000000005,6.88,6.890000000000001,6.890000000000001,6.88,6.88,6.8500000000000005,223.31,223.51,223.61,223.72,223.84,223.95000000000002,224.09,224.23000000000002,224.6,28.5,28.150000000000002,27.98,27.79,27.61,27.42,27.23,27.05,26.69,N/A,N/A -2012,7,29,5,30,101650,100500,99390,80.03,0,6.13,6.59,6.66,6.69,6.71,6.71,6.7,6.7,6.67,226.34,226.45000000000002,226.55,226.67000000000002,226.78,226.9,227.03,227.16,227.48000000000002,28.44,28.1,27.93,27.73,27.54,27.36,27.17,26.990000000000002,26.62,N/A,N/A -2012,7,29,6,30,101680,100540,99420,80.22,0,6.15,6.63,6.72,6.7700000000000005,6.8,6.82,6.83,6.84,6.84,225.37,225.63,225.73000000000002,225.83,225.92000000000002,226.02,226.12,226.21,226.43,28.48,28.13,27.96,27.76,27.57,27.38,27.19,27,26.63,N/A,N/A -2012,7,29,7,30,101690,100540,99430,78.83,0,5.82,6.26,6.3500000000000005,6.390000000000001,6.41,6.42,6.43,6.43,6.41,232.09,232.21,232.28,232.35,232.42000000000002,232.49,232.57,232.64000000000001,232.8,28.6,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.13,26.740000000000002,N/A,N/A -2012,7,29,8,30,101710,100560,99450,80.34,0,5.65,6.0600000000000005,6.140000000000001,6.17,6.19,6.2,6.2,6.2,6.19,234.1,234.24,234.31,234.38,234.44,234.49,234.55,234.6,234.72,28.51,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A -2012,7,29,9,30,101720,100580,99460,80.35000000000001,0,5.91,6.37,6.45,6.5,6.5200000000000005,6.54,6.55,6.55,6.55,244.99,245.08,245.12,245.16,245.21,245.24,245.29,245.33,245.43,28.5,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,29,10,30,101740,100590,99480,78.02,0,5.25,5.62,5.69,5.73,5.75,5.76,5.76,5.76,5.75,250.03,250.28,250.36,250.45000000000002,250.52,250.59,250.67000000000002,250.73000000000002,250.87,28.580000000000002,28.240000000000002,28.060000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A -2012,7,29,11,30,101760,100610,99500,80.22,0,5.32,5.63,5.67,5.67,5.67,5.65,5.63,5.61,5.5600000000000005,270.55,269.74,269.21,268.65,268.12,267.61,267.06,266.55,265.47,28.41,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A -2012,7,29,12,30,101790,100640,99530,81.52,0,5.23,5.53,5.57,5.57,5.57,5.55,5.53,5.51,5.45,281.96,280.98,280.43,279.86,279.32,278.8,278.25,277.73,276.58,27.92,27.54,27.36,27.17,26.97,26.79,26.6,26.41,26.04,N/A,N/A -2012,7,29,13,30,101800,100650,99530,80.92,0,4.98,5.28,5.33,5.34,5.34,5.34,5.34,5.33,5.32,285.09000000000003,284.63,284.36,284.07,283.77,283.48,283.13,282.79,281.91,27.72,27.34,27.16,26.96,26.78,26.59,26.400000000000002,26.22,25.85,N/A,N/A -2012,7,29,14,30,101840,100690,99570,76.67,0,4.08,4.32,4.36,4.38,4.39,4.4,4.4,4.41,4.42,285.56,285.95,286.13,286.31,286.49,286.65000000000003,286.82,286.98,287.3,28.04,27.68,27.5,27.3,27.11,26.93,26.740000000000002,26.560000000000002,26.19,N/A,N/A -2012,7,29,15,30,101810,100660,99550,73.8,0,3.3200000000000003,3.52,3.56,3.58,3.6,3.62,3.63,3.65,3.68,287.69,287.38,287.23,287.08,286.94,286.81,286.67,286.54,286.3,28.36,28.01,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.900000000000002,26.52,N/A,N/A -2012,7,29,16,30,101810,100660,99540,74.58,0,2.18,2.2800000000000002,2.29,2.29,2.29,2.29,2.3000000000000003,2.3000000000000003,2.3000000000000003,248.56,250.07,251,251.94,252.85,253.75,254.74,255.68,257.87,28.55,28.2,28.03,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.71,N/A,N/A -2012,7,29,17,30,101780,100630,99520,73.02,0,1.1,1.11,1.11,1.1,1.09,1.08,1.07,1.06,1.03,231.87,233.24,234.25,235.33,236.45000000000002,237.59,239.05,240.51,244.44,28.78,28.44,28.26,28.07,27.88,27.69,27.5,27.32,26.95,N/A,N/A -2012,7,29,18,30,101770,100620,99510,73.02,0,0.72,0.74,0.73,0.72,0.71,0.7000000000000001,0.68,0.67,0.63,160.41,161.89000000000001,162.65,163.48,164.36,165.29,166.37,167.41,170.55,28.98,28.63,28.45,28.26,28.07,27.88,27.69,27.51,27.14,N/A,N/A -2012,7,29,19,30,101740,100590,99480,71.03,0,4.43,4.66,4.67,4.65,4.63,4.61,4.57,4.54,4.44,184.33,184.48,184.54,184.61,184.69,184.75,184.83,184.92000000000002,185.19,29.35,28.990000000000002,28.82,28.62,28.44,28.25,28.05,27.87,27.5,N/A,N/A -2012,7,29,20,30,101650,100500,99400,71.54,0,4.1,4.3,4.3,4.2700000000000005,4.24,4.2,4.14,4.07,3.79,190.28,190.31,190.34,190.38,190.41,190.45000000000002,190.5,190.57,191.04,29.38,29.04,28.87,28.69,28.5,28.32,28.14,27.97,27.68,N/A,N/A -2012,7,29,21,30,101640,100500,99390,72.33,0,4.87,5.18,5.21,5.19,5.17,5.15,5.1000000000000005,5.0600000000000005,4.91,195.62,195.68,195.73000000000002,195.8,195.88,195.96,196.1,196.23000000000002,196.75,29.6,29.29,29.13,28.94,28.76,28.580000000000002,28.400000000000002,28.22,27.91,N/A,N/A -2012,7,29,22,30,101610,100460,99350,76.36,0,6.25,6.7700000000000005,6.84,6.86,6.86,6.86,6.84,6.82,6.76,207.59,207.6,207.62,207.63,207.64000000000001,207.65,207.65,207.65,207.65,29.42,29.12,28.96,28.77,28.580000000000002,28.400000000000002,28.22,28.04,27.68,N/A,N/A -2012,7,29,23,30,101580,100430,99320,80.61,0,6.75,7.3100000000000005,7.41,7.45,7.46,7.46,7.46,7.44,7.390000000000001,210.26,210.24,210.22,210.19,210.16,210.12,210.08,210.04,209.93,29.03,28.7,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A -2012,7,30,0,30,101510,100370,99260,80.3,0,5.89,6.36,6.43,6.46,6.48,6.49,6.49,6.49,6.49,209.05,209.05,209.04,209.02,209,208.99,208.97,208.94,208.88,29.02,28.7,28.54,28.35,28.17,27.990000000000002,27.8,27.63,27.29,N/A,N/A -2012,7,30,1,30,101490,100340,99230,81.79,0,6.13,6.59,6.66,6.67,6.67,6.66,6.640000000000001,6.62,6.55,219.85,219.87,219.85,219.83,219.79,219.76,219.72,219.68,219.55,28.830000000000002,28.5,28.330000000000002,28.13,27.95,27.76,27.57,27.39,27.01,N/A,N/A -2012,7,30,2,30,101490,100350,99240,81.32000000000001,0,6.8100000000000005,7.3500000000000005,7.44,7.48,7.49,7.49,7.48,7.47,7.43,218.34,218.29,218.3,218.29,218.28,218.26,218.23000000000002,218.21,218.13,28.830000000000002,28.5,28.330000000000002,28.13,27.95,27.76,27.57,27.39,27.02,N/A,N/A -2012,7,30,3,30,101490,100350,99240,81.05,0,6.69,7.2,7.28,7.3,7.3,7.29,7.2700000000000005,7.24,7.17,216.01,216,216.02,216.03,216.04,216.04,216.04,216.04,216.01,28.79,28.45,28.28,28.09,27.900000000000002,27.72,27.53,27.35,26.98,N/A,N/A -2012,7,30,4,30,101490,100340,99230,81.93,0,6.73,7.25,7.32,7.3500000000000005,7.3500000000000005,7.3500000000000005,7.32,7.3,7.24,211.04,211.13,211.14000000000001,211.15,211.15,211.14000000000001,211.13,211.1,211.02,28.78,28.44,28.27,28.080000000000002,27.89,27.71,27.52,27.34,26.990000000000002,N/A,N/A -2012,7,30,5,30,101480,100340,99230,84.49,0,6.7,7.22,7.3100000000000005,7.3500000000000005,7.36,7.36,7.3500000000000005,7.33,7.29,215.72,215.6,215.55,215.49,215.43,215.37,215.29,215.21,215.04,28.64,28.3,28.12,27.93,27.73,27.55,27.36,27.17,26.8,N/A,N/A -2012,7,30,6,30,101500,100360,99250,86.71000000000001,0,6.55,7.07,7.18,7.23,7.25,7.2700000000000005,7.2700000000000005,7.2700000000000005,7.26,216.62,216.61,216.59,216.56,216.54,216.51,216.49,216.46,216.39000000000001,28.48,28.13,27.96,27.76,27.57,27.38,27.19,27,26.63,N/A,N/A -2012,7,30,7,30,101530,100380,99280,85.84,0,6.04,6.51,6.6000000000000005,6.65,6.68,6.7,6.7,6.7,6.7,222.53,222.65,222.67000000000002,222.69,222.71,222.74,222.77,222.8,222.85,28.48,28.13,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,7,30,8,30,101540,100390,99290,82.97,0,6.08,6.5600000000000005,6.66,6.72,6.75,6.78,6.79,6.8,6.8100000000000005,232.5,232.5,232.49,232.48000000000002,232.46,232.44,232.42000000000002,232.4,232.34,28.54,28.19,28.01,27.82,27.63,27.44,27.240000000000002,27.060000000000002,26.67,N/A,N/A -2012,7,30,9,30,101570,100430,99320,79.68,0,7.07,7.640000000000001,7.75,7.8,7.83,7.86,7.86,7.87,7.86,233.05,233.06,233.02,232.97,232.92000000000002,232.86,232.8,232.74,232.59,28.6,28.26,28.080000000000002,27.89,27.69,27.51,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,30,10,30,101590,100450,99340,80.44,0,6.15,6.67,6.7700000000000005,6.83,6.87,6.890000000000001,6.91,6.93,6.94,242.11,242.21,242.26,242.29,242.33,242.35,242.38,242.4,242.45000000000002,28.61,28.27,28.09,27.900000000000002,27.71,27.52,27.32,27.14,26.75,N/A,N/A -2012,7,30,11,30,101640,100490,99380,78.26,0,5.88,6.41,6.53,6.6000000000000005,6.640000000000001,6.68,6.7,6.72,6.74,245.6,245.51,245.47,245.43,245.4,245.39000000000001,245.37,245.34,245.3,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.91,N/A,N/A -2012,7,30,12,30,101660,100510,99400,78.27,0,5.8100000000000005,6.28,6.38,6.45,6.5,6.53,6.5600000000000005,6.57,6.6000000000000005,263.53000000000003,262.8,262.41,262.01,261.65,261.3,260.96,260.64,260,28.73,28.39,28.22,28.03,27.84,27.650000000000002,27.45,27.27,26.89,N/A,N/A -2012,7,30,13,30,101680,100530,99420,78.26,0,5.5200000000000005,5.95,6.04,6.08,6.11,6.13,6.15,6.16,6.16,272.69,272.15,271.83,271.52,271.22,270.94,270.65,270.39,269.84000000000003,28.5,28.16,27.98,27.79,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A -2012,7,30,14,30,101730,100580,99460,78.65,0,5.32,5.71,5.79,5.83,5.86,5.87,5.89,5.9,5.9,269.17,268.62,268.31,267.99,267.7,267.42,267.14,266.87,266.32,28.38,28.03,27.85,27.66,27.46,27.28,27.080000000000002,26.900000000000002,26.52,N/A,N/A -2012,7,30,15,30,101740,100590,99470,76.10000000000001,0,5.01,5.36,5.43,5.46,5.49,5.5,5.51,5.5200000000000005,5.53,254.98000000000002,254.97,254.97,254.95000000000002,254.92000000000002,254.87,254.82,254.78,254.62,28.5,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.66,N/A,N/A -2012,7,30,16,30,101730,100580,99460,76.03,0,4.57,4.88,4.94,4.97,4.99,5.01,5.01,5.0200000000000005,5.04,240.05,239.82,239.76,239.69,239.61,239.54,239.45000000000002,239.38,239.24,28.560000000000002,28.22,28.04,27.85,27.66,27.47,27.28,27.1,26.72,N/A,N/A -2012,7,30,17,30,101650,100500,99390,71.87,0,4.8,5.13,5.19,5.21,5.23,5.23,5.24,5.24,5.23,226.4,226.58,226.74,226.9,227.04,227.18,227.33,227.48000000000002,227.85,28.88,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.61,27.43,27.060000000000002,N/A,N/A -2012,7,30,18,30,101640,100490,99380,71.15,0,5.54,5.93,5.98,5.99,5.99,5.98,5.96,5.93,5.86,215.98000000000002,216.03,216.06,216.07,216.08,216.09,216.09,216.09,216.09,29.04,28.71,28.54,28.34,28.150000000000002,27.97,27.77,27.59,27.21,N/A,N/A -2012,7,30,19,30,101610,100460,99350,70.68,0,5.22,5.58,5.63,5.64,5.63,5.62,5.6000000000000005,5.58,5.5200000000000005,212.67000000000002,212.76,212.78,212.8,212.82,212.84,212.86,212.88,212.93,29.1,28.78,28.61,28.42,28.23,28.04,27.85,27.67,27.29,N/A,N/A -2012,7,30,20,30,101580,100430,99320,71.45,0,5.8500000000000005,6.28,6.34,6.36,6.37,6.36,6.34,6.32,6.26,207.88,207.92000000000002,207.91,207.88,207.85,207.81,207.77,207.72,207.62,29.14,28.82,28.650000000000002,28.45,28.27,28.080000000000002,27.89,27.7,27.32,N/A,N/A -2012,7,30,21,30,101540,100390,99280,67.73,0,6.140000000000001,6.67,6.75,6.78,6.8,6.8100000000000005,6.8100000000000005,6.8,6.7700000000000005,209.88,209.94,210.01,210.07,210.13,210.17000000000002,210.21,210.25,210.32,29.28,28.98,28.82,28.62,28.44,28.25,28.060000000000002,27.88,27.5,N/A,N/A -2012,7,30,22,30,101500,100360,99250,67.43,0,6.47,7.03,7.12,7.16,7.18,7.18,7.18,7.17,7.12,210.67000000000002,210.81,210.87,210.92000000000002,210.95000000000002,210.98000000000002,210.99,211,210.96,29.29,29,28.84,28.650000000000002,28.46,28.28,28.080000000000002,27.900000000000002,27.53,N/A,N/A -2012,7,30,23,30,101480,100330,99220,69.09,0,7.36,8,8.09,8.13,8.14,8.14,8.120000000000001,8.1,8.040000000000001,206.9,206.79,206.73000000000002,206.65,206.57,206.48000000000002,206.4,206.31,206.13,29.17,28.87,28.71,28.52,28.330000000000002,28.150000000000002,27.96,27.78,27.41,N/A,N/A -2012,7,31,0,30,101480,100330,99220,66.73,0,7.73,8.43,8.55,8.61,8.63,8.64,8.63,8.620000000000001,8.58,209.39000000000001,209.32,209.3,209.26,209.22,209.17000000000002,209.1,209.03,208.83,29.240000000000002,28.95,28.8,28.6,28.42,28.23,28.04,27.86,27.490000000000002,N/A,N/A -2012,7,31,1,30,101450,100300,99190,64.59,0,7.16,7.8100000000000005,7.930000000000001,7.99,8.040000000000001,8.06,8.08,8.1,8.120000000000001,211.96,212.06,212.14000000000001,212.23000000000002,212.31,212.4,212.48000000000002,212.56,212.71,29.310000000000002,29.04,28.88,28.69,28.51,28.330000000000002,28.14,27.97,27.61,N/A,N/A -2012,7,31,2,30,101500,100350,99240,63.35,0,6.92,7.55,7.68,7.76,7.8100000000000005,7.8500000000000005,7.890000000000001,7.91,7.95,211.01,211.3,211.52,211.72,211.89000000000001,212.06,212.21,212.36,212.63,29.42,29.150000000000002,28.990000000000002,28.8,28.62,28.44,28.25,28.07,27.69,N/A,N/A -2012,7,31,3,30,101510,100370,99260,64.63,0,6.96,7.6000000000000005,7.72,7.78,7.82,7.8500000000000005,7.86,7.87,7.87,212.35,212.36,212.37,212.38,212.39000000000001,212.4,212.41,212.41,212.4,29.38,29.11,28.95,28.76,28.580000000000002,28.39,28.2,28.02,27.650000000000002,N/A,N/A -2012,7,31,4,30,101500,100360,99250,69.06,0,6.82,7.42,7.5200000000000005,7.5600000000000005,7.57,7.58,7.57,7.55,7.5,215.39000000000001,215.27,215.20000000000002,215.12,215.03,214.93,214.82,214.71,214.44,29.05,28.740000000000002,28.580000000000002,28.38,28.2,28.01,27.810000000000002,27.63,27.240000000000002,N/A,N/A -2012,7,31,5,30,101520,100370,99260,61.07,0,6.78,7.38,7.49,7.55,7.59,7.61,7.62,7.63,7.640000000000001,212.99,213.04,213.1,213.17000000000002,213.26,213.34,213.42000000000002,213.5,213.64000000000001,29.44,29.17,29.01,28.82,28.63,28.44,28.25,28.07,27.68,N/A,N/A -2012,7,31,6,30,101540,100390,99290,65.54,0,7.47,8.14,8.26,8.32,8.35,8.36,8.35,8.34,8.290000000000001,214.97,215.12,215.22,215.31,215.38,215.43,215.46,215.49,215.49,29.25,28.96,28.79,28.6,28.41,28.22,28.03,27.84,27.45,N/A,N/A -2012,7,31,7,30,101550,100400,99300,67.11,0,6.95,7.61,7.74,7.8100000000000005,7.8500000000000005,7.88,7.9,7.91,7.92,219.24,219.21,219.15,219.09,219.02,218.96,218.9,218.84,218.71,29.310000000000002,29,28.84,28.64,28.45,28.27,28.07,27.89,27.51,N/A,N/A -2012,7,31,8,30,101570,100420,99310,69.93,0,7.21,7.83,7.96,8.03,8.08,8.11,8.13,8.15,8.16,221.23000000000002,221.41,221.55,221.71,221.85,221.98000000000002,222.12,222.24,222.51,29.07,28.75,28.580000000000002,28.39,28.2,28.02,27.82,27.64,27.26,N/A,N/A -2012,7,31,9,30,101560,100410,99300,70.42,0,6.8500000000000005,7.46,7.58,7.65,7.7,7.74,7.7700000000000005,7.79,7.82,227.1,227.24,227.32,227.4,227.47,227.54,227.61,227.68,227.84,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A -2012,7,31,10,30,101600,100450,99340,73.03,0,6.49,7.04,7.16,7.23,7.28,7.3100000000000005,7.34,7.36,7.4,233.07,232.9,232.8,232.70000000000002,232.6,232.51,232.41,232.31,232.13,28.86,28.53,28.36,28.17,27.98,27.79,27.6,27.42,27.04,N/A,N/A -2012,7,31,11,30,101620,100470,99360,76.74,0,6.22,6.71,6.82,6.87,6.91,6.93,6.95,6.96,6.98,234.14000000000001,234.18,234.13,234.07,234.02,233.97,233.92000000000002,233.87,233.76,28.7,28.36,28.18,27.98,27.79,27.61,27.41,27.22,26.84,N/A,N/A -2012,7,31,12,30,101610,100470,99360,79.74,0,5.7700000000000005,6.22,6.3100000000000005,6.37,6.4,6.42,6.44,6.45,6.46,238.48000000000002,238.45000000000002,238.43,238.41,238.39000000000001,238.38,238.37,238.36,238.33,28.580000000000002,28.22,28.05,27.85,27.66,27.47,27.27,27.080000000000002,26.7,N/A,N/A -2012,7,31,13,30,101650,100500,99390,79.41,0,5.62,6.07,6.16,6.21,6.24,6.2700000000000005,6.28,6.29,6.29,243.95000000000002,243.97,243.97,243.98000000000002,243.99,243.99,244.01,244.02,244.06,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A -2012,7,31,14,30,101680,100530,99420,76.37,0,4.42,4.74,4.82,4.88,4.92,4.96,5,5.03,5.1000000000000005,249.89000000000001,249.86,249.89000000000001,249.91,249.93,249.95000000000002,249.96,249.96,249.99,28.68,28.34,28.17,27.97,27.78,27.59,27.400000000000002,27.21,26.84,N/A,N/A -2012,7,31,15,30,101700,100550,99440,78.23,0,4.96,5.26,5.3100000000000005,5.33,5.34,5.34,5.33,5.33,5.3,249.07,248.78,248.63,248.5,248.37,248.24,248.12,248,247.77,28.72,28.37,28.2,28,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,7,31,16,30,101690,100540,99430,78.73,0,3.97,4.2,4.24,4.26,4.28,4.28,4.29,4.3,4.3100000000000005,246.22,245.83,245.59,245.35,245.15,244.96,244.76,244.57,244.22,28.69,28.34,28.17,27.97,27.79,27.6,27.400000000000002,27.22,26.84,N/A,N/A -2012,7,31,17,30,101630,100480,99370,77.23,0,3.96,4.21,4.25,4.2700000000000005,4.29,4.3,4.3,4.3100000000000005,4.32,213.27,213.78,214.1,214.4,214.68,214.97,215.26,215.55,216.22,28.87,28.52,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A -2012,7,31,18,30,101610,100460,99350,79.36,0,4.36,4.61,4.65,4.67,4.67,4.67,4.66,4.65,4.63,198.94,199.13,199.36,199.58,199.78,199.98000000000002,200.19,200.4,200.87,28.97,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.490000000000002,27.11,N/A,N/A -2012,7,31,19,30,101610,100460,99350,80.59,0,4.55,4.82,4.86,4.88,4.89,4.88,4.88,4.87,4.84,183.93,184.37,184.61,184.85,185.09,185.32,185.57,185.82,186.38,28.97,28.62,28.44,28.240000000000002,28.060000000000002,27.87,27.68,27.490000000000002,27.12,N/A,N/A -2012,7,31,20,30,101550,100410,99300,80.86,0,4.54,4.8500000000000005,4.9,4.93,4.94,4.95,4.95,4.96,4.95,183.20000000000002,183.61,183.86,184.08,184.28,184.47,184.65,184.82,185.17000000000002,29.02,28.67,28.5,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A -2012,7,31,21,30,101540,100400,99290,79.94,0,5.2700000000000005,5.66,5.73,5.76,5.78,5.79,5.79,5.79,5.78,188.12,188.37,188.5,188.64000000000001,188.78,188.92000000000002,189.05,189.21,189.54,29.13,28.79,28.62,28.43,28.240000000000002,28.05,27.86,27.67,27.3,N/A,N/A -2012,7,31,22,30,101510,100370,99260,77.39,0,5.93,6.41,6.49,6.53,6.55,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.54,188.51,188.53,188.5,188.45000000000002,188.41,188.36,188.29,188.23,188.11,29.28,28.96,28.8,28.6,28.42,28.23,28.04,27.85,27.48,N/A,N/A -2012,7,31,23,30,101500,100360,99250,79.81,0,7.390000000000001,8.040000000000001,8.16,8.22,8.25,8.26,8.27,8.27,8.26,187.4,187.38,187.41,187.44,187.46,187.49,187.52,187.55,187.62,29.16,28.84,28.68,28.48,28.3,28.11,27.92,27.740000000000002,27.37,N/A,N/A -2012,8,1,0,30,101460,100320,99210,79.83,0,7.0600000000000005,7.67,7.8,7.8500000000000005,7.890000000000001,7.9,7.91,7.91,7.890000000000001,193.76,193.85,193.84,193.82,193.79,193.76,193.73000000000002,193.70000000000002,193.63,29.1,28.78,28.61,28.41,28.23,28.04,27.85,27.67,27.29,N/A,N/A -2012,8,1,1,30,101450,100300,99200,79.72,0,6.91,7.49,7.6000000000000005,7.66,7.7,7.71,7.72,7.72,7.71,191.33,191.41,191.45000000000002,191.48000000000002,191.52,191.54,191.57,191.6,191.63,29.02,28.69,28.52,28.330000000000002,28.150000000000002,27.96,27.77,27.580000000000002,27.2,N/A,N/A -2012,8,1,2,30,101450,100310,99200,78.87,0,6.65,7.2,7.3,7.3500000000000005,7.38,7.390000000000001,7.390000000000001,7.4,7.38,194.08,194.09,194.1,194.1,194.1,194.09,194.1,194.09,194.1,29,28.67,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,8,1,3,30,101460,100320,99210,81.59,0,6.53,7.0600000000000005,7.16,7.21,7.24,7.26,7.26,7.26,7.26,193.64000000000001,193.64000000000001,193.66,193.70000000000002,193.74,193.78,193.83,193.87,193.98000000000002,28.88,28.54,28.36,28.17,27.98,27.79,27.59,27.41,27.03,N/A,N/A -2012,8,1,4,30,101440,100300,99190,80.62,0,6.57,7.13,7.25,7.3100000000000005,7.3500000000000005,7.38,7.390000000000001,7.41,7.42,201.31,201.27,201.24,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.6,27.42,27.04,N/A,N/A -2012,8,1,5,30,101450,100310,99200,79.93,0,7.32,7.94,8.06,8.11,8.14,8.16,8.16,8.15,8.14,203.44,203.59,203.70000000000002,203.83,203.95000000000002,204.07,204.20000000000002,204.34,204.62,28.95,28.61,28.44,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,8,1,6,30,101470,100320,99210,81.39,0,6.890000000000001,7.42,7.5200000000000005,7.5600000000000005,7.57,7.58,7.57,7.5600000000000005,7.5200000000000005,211.81,212.01,212.04,212.07,212.08,212.09,212.1,212.11,212.11,28.76,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.900000000000002,N/A,N/A -2012,8,1,7,30,101490,100340,99230,81.93,0,6.4,6.91,7.0200000000000005,7.08,7.12,7.15,7.16,7.18,7.19,213.83,213.87,213.9,213.92000000000002,213.95000000000002,213.97,214,214.02,214.07,28.69,28.330000000000002,28.150000000000002,27.95,27.76,27.560000000000002,27.37,27.18,26.8,N/A,N/A -2012,8,1,8,30,101500,100350,99240,81.76,0,6.7700000000000005,7.32,7.45,7.51,7.55,7.58,7.6000000000000005,7.61,7.63,218.28,218.21,218.19,218.18,218.17000000000002,218.16,218.15,218.14000000000001,218.13,28.73,28.36,28.19,27.990000000000002,27.8,27.61,27.42,27.23,26.85,N/A,N/A -2012,8,1,9,30,101510,100360,99250,83.07000000000001,0,7.13,7.7700000000000005,7.9,7.98,8.02,8.06,8.07,8.09,8.1,220.03,220.13,220.15,220.16,220.17000000000002,220.18,220.20000000000002,220.20000000000002,220.22,28.71,28.34,28.16,27.96,27.77,27.57,27.38,27.19,26.8,N/A,N/A -2012,8,1,10,30,101500,100360,99250,83.09,0,7.18,7.79,7.92,7.98,8.02,8.040000000000001,8.05,8.05,8.05,224.95000000000002,225.08,225.14000000000001,225.21,225.28,225.35,225.41,225.47,225.6,28.61,28.240000000000002,28.060000000000002,27.86,27.67,27.47,27.28,27.09,26.71,N/A,N/A -2012,8,1,11,30,101530,100380,99270,78.71000000000001,0,6.9,7.42,7.53,7.58,7.62,7.640000000000001,7.66,7.67,7.68,231.3,231.26,231.22,231.17000000000002,231.12,231.08,231.03,230.98000000000002,230.87,28.75,28.400000000000002,28.22,28.02,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A -2012,8,1,12,30,101530,100390,99280,79.26,0,6.71,7.26,7.38,7.44,7.48,7.51,7.53,7.54,7.55,230.42000000000002,230.61,230.74,230.86,230.96,231.06,231.16,231.25,231.43,28.87,28.52,28.34,28.14,27.95,27.76,27.560000000000002,27.37,26.990000000000002,N/A,N/A -2012,8,1,13,30,101580,100430,99330,78.88,0,5.91,6.4,6.51,6.57,6.62,6.66,6.68,6.71,6.74,237.95000000000002,237.91,237.93,237.96,237.98000000000002,238,238.02,238.05,238.11,28.86,28.51,28.34,28.14,27.95,27.77,27.57,27.38,27,N/A,N/A -2012,8,1,14,30,101590,100440,99330,78.32000000000001,0,5.43,5.87,5.97,6.04,6.08,6.11,6.140000000000001,6.16,6.19,236.68,236.77,236.77,236.76,236.75,236.74,236.73000000000002,236.72,236.70000000000002,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.53,27.14,N/A,N/A -2012,8,1,15,30,101580,100440,99330,78.29,0,5.97,6.38,6.45,6.48,6.48,6.48,6.47,6.45,6.41,239.91,240.13,240.25,240.37,240.48000000000002,240.59,240.70000000000002,240.81,241.04,29.01,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A -2012,8,1,16,30,101590,100440,99340,79.91,0,4.28,4.59,4.66,4.7,4.74,4.7700000000000005,4.79,4.82,4.8500000000000005,237.01,236.65,236.5,236.33,236.18,236.03,235.89000000000001,235.75,235.48000000000002,29.060000000000002,28.71,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.2,N/A,N/A -2012,8,1,17,30,101550,100410,99310,78.67,0,4.36,4.66,4.74,4.7700000000000005,4.8100000000000005,4.82,4.8500000000000005,4.86,4.88,225.12,224.99,224.93,224.85,224.77,224.69,224.6,224.52,224.34,29.19,28.84,28.66,28.46,28.27,28.080000000000002,27.89,27.7,27.32,N/A,N/A -2012,8,1,18,30,101540,100400,99290,80.62,0,4.62,4.9,4.94,4.96,4.96,4.96,4.95,4.93,4.9,211.6,211.64000000000001,211.71,211.75,211.8,211.83,211.87,211.91,211.97,29.2,28.85,28.67,28.47,28.28,28.09,27.900000000000002,27.71,27.34,N/A,N/A -2012,8,1,19,30,101510,100370,99270,80.42,0,5.01,5.33,5.39,5.42,5.43,5.44,5.44,5.44,5.42,198.65,198.69,198.78,198.87,198.95000000000002,199.03,199.11,199.19,199.36,29.26,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.78,27.400000000000002,N/A,N/A -2012,8,1,20,30,101460,100320,99220,79.27,0,5.62,6.0200000000000005,6.09,6.11,6.13,6.13,6.12,6.11,6.08,191,191.1,191.14000000000001,191.18,191.22,191.26,191.29,191.33,191.42000000000002,29.3,28.96,28.79,28.59,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A -2012,8,1,21,30,101430,100290,99180,81.09,0,5.53,5.94,6.0200000000000005,6.0600000000000005,6.09,6.11,6.12,6.12,6.12,187.9,188.08,188.21,188.35,188.46,188.57,188.69,188.8,189.04,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,1,22,30,101390,100250,99150,79.24,0,5.21,5.61,5.68,5.72,5.74,5.76,5.76,5.76,5.76,192.20000000000002,192.33,192.39000000000001,192.44,192.49,192.52,192.55,192.58,192.65,29.330000000000002,29.01,28.84,28.650000000000002,28.46,28.27,28.080000000000002,27.89,27.52,N/A,N/A -2012,8,1,23,30,101350,100210,99110,84.87,0,6.24,6.75,6.8500000000000005,6.9,6.93,6.95,6.96,6.97,6.97,193.20000000000002,193.38,193.44,193.49,193.52,193.54,193.57,193.58,193.61,29.05,28.7,28.53,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.19,N/A,N/A -2012,8,2,0,30,101330,100190,99080,80.85000000000001,0,6.76,7.3100000000000005,7.42,7.46,7.49,7.5,7.5,7.5,7.47,188.82,188.83,188.82,188.81,188.79,188.78,188.76,188.73,188.66,29.12,28.78,28.61,28.41,28.22,28.03,27.84,27.650000000000002,27.28,N/A,N/A -2012,8,2,1,30,101310,100170,99070,78.53,0,6.88,7.47,7.59,7.65,7.68,7.71,7.72,7.73,7.75,191.22,191.43,191.55,191.67000000000002,191.78,191.9,192.02,192.14000000000001,192.4,29.22,28.900000000000002,28.73,28.53,28.35,28.16,27.97,27.79,27.42,N/A,N/A -2012,8,2,2,30,101330,100190,99080,81.21000000000001,0,6.62,7.17,7.28,7.33,7.37,7.390000000000001,7.4,7.4,7.41,196.32,196.36,196.36,196.36,196.37,196.38,196.38,196.39000000000001,196.4,29.060000000000002,28.72,28.55,28.35,28.17,27.98,27.79,27.6,27.23,N/A,N/A -2012,8,2,3,30,101290,100150,99040,82.93,0,7.5,8.14,8.27,8.34,8.38,8.4,8.42,8.43,8.43,198.24,198.38,198.39000000000001,198.42000000000002,198.45000000000002,198.48000000000002,198.51,198.55,198.63,28.94,28.59,28.42,28.22,28.03,27.84,27.650000000000002,27.46,27.09,N/A,N/A -2012,8,2,4,30,101280,100140,99030,83.99,0,7.5,8.15,8.290000000000001,8.370000000000001,8.41,8.44,8.46,8.47,8.47,201.06,201.15,201.19,201.23000000000002,201.27,201.31,201.35,201.39000000000001,201.47,28.89,28.54,28.37,28.16,27.97,27.78,27.59,27.400000000000002,27.02,N/A,N/A -2012,8,2,5,30,101250,100110,99010,84.68,0,7.45,8.11,8.26,8.34,8.4,8.44,8.47,8.48,8.51,203.76,203.70000000000002,203.68,203.67000000000002,203.65,203.63,203.62,203.6,203.58,28.86,28.5,28.330000000000002,28.12,27.93,27.740000000000002,27.55,27.36,26.98,N/A,N/A -2012,8,2,6,30,101270,100130,99030,85.22,0,7.71,8.370000000000001,8.51,8.59,8.63,8.66,8.68,8.69,8.700000000000001,211.98000000000002,211.84,211.75,211.67000000000002,211.59,211.52,211.45000000000002,211.38,211.25,28.8,28.44,28.27,28.07,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A -2012,8,2,7,30,101280,100140,99030,83.76,0,7.86,8.58,8.74,8.82,8.88,8.92,8.94,8.96,8.98,215.17000000000002,214.88,214.74,214.6,214.48000000000002,214.36,214.25,214.14000000000001,213.92000000000002,28.82,28.46,28.29,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A -2012,8,2,8,30,101280,100140,99030,82.11,0,7.74,8.43,8.58,8.65,8.700000000000001,8.73,8.75,8.76,8.75,219.09,218.9,218.74,218.58,218.42000000000002,218.27,218.11,217.95000000000002,217.62,28.89,28.53,28.35,28.150000000000002,27.96,27.77,27.57,27.38,27,N/A,N/A -2012,8,2,9,30,101300,100160,99060,83.67,0,7.75,8.4,8.53,8.58,8.61,8.620000000000001,8.61,8.6,8.56,222.13,222.27,222.33,222.39000000000001,222.44,222.49,222.52,222.57,222.64000000000001,28.75,28.38,28.21,28.01,27.82,27.62,27.43,27.240000000000002,26.86,N/A,N/A -2012,8,2,10,30,101320,100180,99070,81.55,0,7.21,7.7700000000000005,7.9,7.96,8.01,8.040000000000001,8.06,8.08,8.11,226.65,226.59,226.56,226.5,226.44,226.37,226.29,226.21,226.01,28.8,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.94,N/A,N/A -2012,8,2,11,30,101330,100190,99080,83.69,0,6.0600000000000005,6.6000000000000005,6.71,6.8,6.8500000000000005,6.9,6.93,6.96,7,229,229.14000000000001,229.11,229.07,229.02,228.97,228.91,228.85,228.72,28.72,28.36,28.18,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A -2012,8,2,12,30,101370,100220,99120,81.12,0,6.3100000000000005,6.8500000000000005,6.98,7.05,7.1000000000000005,7.13,7.16,7.17,7.2,228.49,228.59,228.62,228.64000000000001,228.65,228.65,228.65,228.65,228.62,28.75,28.400000000000002,28.22,28.02,27.830000000000002,27.64,27.44,27.25,26.87,N/A,N/A -2012,8,2,13,30,101410,100260,99160,79.03,0,5.33,5.73,5.83,5.89,5.93,5.96,5.98,6,6.03,227.02,227.14000000000001,227.24,227.32,227.39000000000001,227.45000000000002,227.52,227.57,227.68,28.8,28.45,28.28,28.080000000000002,27.88,27.69,27.5,27.310000000000002,26.92,N/A,N/A -2012,8,2,14,30,101430,100290,99180,77.56,0,5.6000000000000005,6.03,6.13,6.17,6.21,6.23,6.25,6.26,6.2700000000000005,226.23000000000002,226.07,226.01,225.94,225.87,225.81,225.74,225.68,225.55,28.89,28.54,28.37,28.17,27.98,27.79,27.59,27.400000000000002,27.02,N/A,N/A -2012,8,2,15,30,101450,100310,99200,76.54,0,5.11,5.5,5.6000000000000005,5.66,5.69,5.73,5.75,5.7700000000000005,5.8,225.61,225.72,225.71,225.68,225.66,225.62,225.58,225.55,225.46,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.04,N/A,N/A -2012,8,2,16,30,101470,100320,99210,73.79,0,4.68,5.01,5.08,5.12,5.15,5.18,5.19,5.21,5.24,220.66,220.64000000000001,220.65,220.67000000000002,220.68,220.68,220.69,220.70000000000002,220.71,29,28.66,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A -2012,8,2,17,30,101430,100290,99180,71.66,0,4.86,5.19,5.25,5.28,5.29,5.3,5.3,5.3,5.29,223.45000000000002,223.44,223.38,223.3,223.22,223.14000000000001,223.06,223,222.83,29.16,28.810000000000002,28.64,28.44,28.25,28.060000000000002,27.86,27.68,27.29,N/A,N/A -2012,8,2,18,30,101400,100250,99150,69.17,0,5.3500000000000005,5.72,5.7700000000000005,5.79,5.8,5.8,5.8,5.79,5.7700000000000005,206.63,206.44,206.33,206.21,206.09,205.98000000000002,205.87,205.76,205.55,29.27,28.93,28.76,28.560000000000002,28.37,28.19,27.990000000000002,27.810000000000002,27.43,N/A,N/A -2012,8,2,19,30,101380,100240,99130,72.03,0,5.54,5.95,6.0200000000000005,6.0600000000000005,6.08,6.09,6.09,6.1000000000000005,6.09,196.97,196.89000000000001,196.86,196.83,196.8,196.77,196.74,196.72,196.66,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.94,27.76,27.38,N/A,N/A -2012,8,2,20,30,101340,100200,99100,68.71000000000001,0,6.3500000000000005,6.84,6.92,6.95,6.96,6.97,6.96,6.95,6.92,197.8,197.65,197.61,197.54,197.48000000000002,197.42000000000002,197.35,197.29,197.14000000000001,29.36,29.04,28.88,28.68,28.490000000000002,28.310000000000002,28.11,27.93,27.55,N/A,N/A -2012,8,2,21,30,101300,100160,99050,71.13,0,5.99,6.44,6.51,6.54,6.55,6.55,6.55,6.54,6.51,194.21,193.99,193.88,193.78,193.69,193.6,193.51,193.43,193.26,29.240000000000002,28.92,28.75,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.43,N/A,N/A -2012,8,2,22,30,101260,100120,99010,71.74,0,6.59,7.12,7.21,7.25,7.28,7.28,7.28,7.28,7.26,197.95000000000002,197.84,197.79,197.72,197.65,197.58,197.5,197.42000000000002,197.24,29.21,28.89,28.73,28.53,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,2,23,30,101220,100080,98970,69.66,0,5.8,6.23,6.3100000000000005,6.34,6.3500000000000005,6.3500000000000005,6.3500000000000005,6.34,6.32,192.59,192.8,192.93,193.05,193.16,193.27,193.39000000000001,193.5,193.74,29.25,28.94,28.77,28.580000000000002,28.39,28.21,28.01,27.830000000000002,27.46,N/A,N/A -2012,8,3,0,30,101200,100060,98950,73.85000000000001,0,5.92,6.37,6.46,6.51,6.53,6.55,6.5600000000000005,6.5600000000000005,6.5600000000000005,191.73000000000002,191.74,191.76,191.8,191.84,191.88,191.93,191.97,192.09,29.060000000000002,28.740000000000002,28.57,28.38,28.19,28.01,27.82,27.63,27.26,N/A,N/A -2012,8,3,1,30,101170,100030,98920,70.71000000000001,0,5.83,6.26,6.34,6.37,6.390000000000001,6.4,6.41,6.41,6.4,190.93,191.08,191.21,191.35,191.49,191.62,191.77,191.9,192.22,29.150000000000002,28.830000000000002,28.66,28.47,28.28,28.1,27.900000000000002,27.72,27.35,N/A,N/A -2012,8,3,2,30,101180,100040,98940,71.12,0,6.47,7.01,7.12,7.17,7.2,7.23,7.24,7.25,7.26,193.79,193.58,193.43,193.28,193.16,193.04,192.92000000000002,192.81,192.59,29.16,28.84,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,8,3,3,30,101180,100040,98930,79.33,0,6.12,6.61,6.72,6.78,6.82,6.8500000000000005,6.88,6.9,6.93,198.74,198.44,198.27,198.09,197.92000000000002,197.77,197.61,197.45000000000002,197.13,28.79,28.44,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.92,N/A,N/A -2012,8,3,4,30,101170,100040,98930,80.41,0,6.140000000000001,6.57,6.68,6.74,6.78,6.8100000000000005,6.83,6.8500000000000005,6.890000000000001,200.94,200.06,199.67000000000002,199.35,199.08,198.84,198.63,198.44,198.12,28.830000000000002,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.37,27,N/A,N/A -2012,8,3,5,30,101140,100000,98900,78.60000000000001,0,7.29,7.890000000000001,8.01,8.06,8.09,8.11,8.11,8.11,8.09,194.43,194.47,194.52,194.57,194.61,194.66,194.69,194.73000000000002,194.8,28.91,28.560000000000002,28.38,28.18,27.990000000000002,27.79,27.6,27.41,27.03,N/A,N/A -2012,8,3,6,30,101140,100000,98900,80.36,0,7.07,7.69,7.83,7.91,7.97,8.01,8.040000000000001,8.06,8.1,194.75,194.69,194.67000000000002,194.65,194.63,194.62,194.62,194.62,194.61,28.86,28.51,28.330000000000002,28.13,27.94,27.75,27.55,27.36,26.98,N/A,N/A -2012,8,3,7,30,101150,100010,98910,82.65,0,6.84,7.43,7.57,7.640000000000001,7.7,7.74,7.7700000000000005,7.79,7.83,204.92000000000002,204.9,204.86,204.81,204.76,204.70000000000002,204.65,204.59,204.46,28.82,28.46,28.29,28.09,27.900000000000002,27.71,27.51,27.32,26.94,N/A,N/A -2012,8,3,8,30,101190,100050,98950,81.35000000000001,0,7.01,7.61,7.73,7.79,7.84,7.86,7.88,7.9,7.91,195.1,195.35,195.45000000000002,195.56,195.67000000000002,195.78,195.89000000000001,196,196.23000000000002,28.87,28.52,28.34,28.14,27.95,27.76,27.57,27.38,27,N/A,N/A -2012,8,3,9,30,101180,100040,98940,85.12,0,7.3,7.99,8.16,8.26,8.33,8.39,8.44,8.47,8.540000000000001,199.36,199.42000000000002,199.42000000000002,199.44,199.44,199.45000000000002,199.46,199.46,199.48000000000002,28.84,28.48,28.310000000000002,28.11,27.92,27.73,27.53,27.34,26.96,N/A,N/A -2012,8,3,10,30,101180,100040,98940,83.62,0,7.3500000000000005,8.040000000000001,8.17,8.24,8.28,8.3,8.32,8.32,8.31,205.91,205.98000000000002,205.99,205.98000000000002,205.94,205.9,205.84,205.79,205.64000000000001,29.18,28.84,28.66,28.47,28.27,28.09,27.89,27.71,27.32,N/A,N/A -2012,8,3,11,30,101260,100120,99020,83.46000000000001,0,7.75,8.49,8.66,8.75,8.81,8.85,8.88,8.9,8.93,209.74,209.87,209.94,210,210.05,210.09,210.13,210.16,210.22,29.14,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.68,27.3,N/A,N/A -2012,8,3,12,30,101290,100150,99040,81.42,0,7.43,8.1,8.26,8.36,8.42,8.46,8.49,8.51,8.540000000000001,205.19,205.31,205.37,205.41,205.45000000000002,205.48000000000002,205.51,205.53,205.58,29.150000000000002,28.810000000000002,28.650000000000002,28.44,28.26,28.07,27.87,27.68,27.310000000000002,N/A,N/A -2012,8,3,13,30,101320,100180,99080,80.84,0,6.79,7.42,7.5600000000000005,7.640000000000001,7.7,7.74,7.7700000000000005,7.79,7.82,199.34,199.3,199.35,199.4,199.45000000000002,199.5,199.56,199.61,199.72,29.14,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A -2012,8,3,14,30,101350,100210,99110,80.72,0,6.17,6.72,6.84,6.91,6.96,6.99,7.0200000000000005,7.04,7.07,207.57,207.48000000000002,207.49,207.5,207.51,207.53,207.54,207.54,207.57,29.19,28.85,28.68,28.490000000000002,28.3,28.11,27.91,27.73,27.35,N/A,N/A -2012,8,3,15,30,101380,100240,99130,82.16,0,5.44,5.92,6.05,6.13,6.21,6.2700000000000005,6.32,6.37,6.45,213.32,214.88,215.57,216.16,216.65,217.09,217.48000000000002,217.82,218.43,29.09,28.75,28.580000000000002,28.39,28.2,28.01,27.82,27.64,27.26,N/A,N/A -2012,8,3,16,30,101400,100260,99160,77.01,0,7.01,7.57,7.65,7.68,7.68,7.66,7.640000000000001,7.61,7.53,221.83,222,222.1,222.21,222.3,222.38,222.46,222.53,222.67000000000002,29.310000000000002,28.990000000000002,28.82,28.62,28.43,28.240000000000002,28.05,27.86,27.48,N/A,N/A -2012,8,3,17,30,101420,100280,99170,76.8,0,5.96,6.41,6.5,6.54,6.57,6.59,6.6000000000000005,6.6000000000000005,6.6000000000000005,223.84,223.9,223.92000000000002,223.95000000000002,223.96,223.97,223.99,224.01,224.03,29.23,28.89,28.72,28.52,28.330000000000002,28.150000000000002,27.95,27.76,27.39,N/A,N/A -2012,8,3,18,30,101380,100240,99140,76.94,0,4.91,5.2700000000000005,5.3500000000000005,5.39,5.42,5.45,5.47,5.49,5.53,221.88,221.79,221.8,221.8,221.78,221.76,221.73000000000002,221.70000000000002,221.63,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,3,19,30,101390,100250,99140,74.69,0,4.84,5.22,5.29,5.34,5.37,5.4,5.43,5.44,5.48,214.33,214.42000000000002,214.43,214.44,214.44,214.44,214.44,214.44,214.42000000000002,29.310000000000002,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A -2012,8,3,20,30,101330,100190,99080,73.61,0,5.26,5.65,5.73,5.76,5.79,5.8100000000000005,5.82,5.84,5.8500000000000005,205.18,205.20000000000002,205.24,205.25,205.27,205.28,205.29,205.3,205.31,29.35,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A -2012,8,3,21,30,101330,100190,99080,75.65,0,4.98,5.34,5.41,5.44,5.46,5.47,5.48,5.48,5.49,200.44,200.54,200.56,200.58,200.61,200.63,200.65,200.68,200.74,29.27,28.94,28.77,28.57,28.38,28.19,28,27.82,27.44,N/A,N/A -2012,8,3,22,30,101320,100180,99070,74.94,0,4.41,4.71,4.76,4.78,4.79,4.8,4.8,4.8,4.79,195.48000000000002,195.27,195.12,194.96,194.8,194.63,194.46,194.3,193.95000000000002,29.32,29,28.830000000000002,28.64,28.45,28.26,28.060000000000002,27.88,27.5,N/A,N/A -2012,8,3,23,30,101270,100130,99020,74.64,0,4.8100000000000005,5.15,5.21,5.23,5.24,5.25,5.25,5.25,5.24,183.36,182.76,182.44,182.13,181.83,181.53,181.21,180.93,180.29,29.29,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A -2012,8,4,0,30,101200,100060,98960,76.22,0,5.14,5.54,5.61,5.65,5.67,5.69,5.7,5.71,5.72,188.86,188.70000000000002,188.63,188.58,188.51,188.45000000000002,188.39000000000001,188.34,188.21,29.16,28.830000000000002,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,8,4,1,30,101190,100050,98940,79.44,0,5.1000000000000005,5.48,5.55,5.58,5.6000000000000005,5.62,5.63,5.64,5.65,181.37,181.16,181.02,180.86,180.70000000000002,180.55,180.39000000000001,180.24,179.93,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,8,4,2,30,101260,100110,99010,79.10000000000001,0,5.58,6.01,6.09,6.13,6.16,6.17,6.18,6.19,6.19,168.09,168.26,168.33,168.41,168.49,168.56,168.63,168.70000000000002,168.84,29.12,28.79,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A -2012,8,4,3,30,101260,100120,99010,80.41,0,5.21,5.6000000000000005,5.67,5.71,5.74,5.76,5.7700000000000005,5.78,5.8,168.48,168.32,168.28,168.22,168.17000000000002,168.12,168.06,168,167.88,29.05,28.71,28.54,28.34,28.150000000000002,27.97,27.77,27.580000000000002,27.2,N/A,N/A -2012,8,4,4,30,101230,100090,98990,82.06,0,5.67,6.13,6.23,6.29,6.33,6.36,6.390000000000001,6.41,6.45,170.67000000000002,170.61,170.48,170.36,170.27,170.17000000000002,170.07,169.99,169.8,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A -2012,8,4,5,30,101270,100130,99020,82.82000000000001,0,6.5,7.1000000000000005,7.23,7.32,7.38,7.43,7.46,7.5,7.54,176.08,175.94,175.91,175.88,175.85,175.81,175.78,175.75,175.69,29.05,28.72,28.54,28.34,28.150000000000002,27.97,27.77,27.580000000000002,27.2,N/A,N/A -2012,8,4,6,30,101290,100150,99050,79.96000000000001,0,7.3,7.96,8.08,8.15,8.19,8.22,8.23,8.24,8.24,189.57,189.62,189.61,189.61,189.6,189.59,189.57,189.56,189.54,29.09,28.75,28.580000000000002,28.39,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A -2012,8,4,7,30,101350,100200,99100,83.73,0,6.49,7.05,7.18,7.25,7.3100000000000005,7.3500000000000005,7.38,7.41,7.45,184.88,184.84,184.9,184.96,185.01,185.05,185.1,185.15,185.24,28.89,28.54,28.37,28.17,27.98,27.79,27.6,27.41,27.03,N/A,N/A -2012,8,4,8,30,101350,100210,99110,79.35000000000001,0,7.48,8.13,8.26,8.3,8.33,8.34,8.34,8.33,8.3,191.72,191.54,191.4,191.26,191.12,190.99,190.85,190.71,190.42000000000002,29.12,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.29,N/A,N/A -2012,8,4,9,30,101360,100220,99110,78.58,0,6.640000000000001,7.25,7.390000000000001,7.47,7.54,7.58,7.61,7.640000000000001,7.69,193.17000000000002,193.54,193.66,193.75,193.83,193.9,193.95000000000002,194.01,194.1,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.2,N/A,N/A -2012,8,4,10,30,101410,100270,99160,77.88,0,6.44,6.99,7.09,7.15,7.18,7.21,7.22,7.23,7.24,197.8,197.77,197.72,197.64000000000001,197.57,197.49,197.41,197.33,197.16,29.03,28.69,28.52,28.330000000000002,28.14,27.95,27.75,27.560000000000002,27.18,N/A,N/A -2012,8,4,11,30,101440,100300,99190,78.60000000000001,0,5.98,6.46,6.5600000000000005,6.61,6.640000000000001,6.67,6.68,6.69,6.7,200.22,199.96,199.82,199.69,199.57,199.46,199.35,199.24,199.03,28.97,28.64,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A -2012,8,4,12,30,101490,100350,99240,78.42,0,4.95,5.32,5.39,5.43,5.46,5.48,5.49,5.51,5.5200000000000005,203.82,203.63,203.47,203.3,203.13,202.97,202.8,202.64000000000001,202.3,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,8,4,13,30,101510,100370,99260,77.12,0,4.73,5.09,5.16,5.19,5.22,5.23,5.25,5.26,5.2700000000000005,208.85,208.84,208.77,208.70000000000002,208.64000000000001,208.59,208.53,208.48000000000002,208.36,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.72,27.54,27.150000000000002,N/A,N/A -2012,8,4,14,30,101590,100440,99330,76.46000000000001,0,3.3200000000000003,3.5500000000000003,3.59,3.61,3.63,3.64,3.65,3.66,3.67,210.81,210.19,209.81,209.42000000000002,209.08,208.74,208.4,208.08,207.42000000000002,29.060000000000002,28.73,28.560000000000002,28.37,28.18,27.98,27.79,27.6,27.22,N/A,N/A -2012,8,4,15,30,101580,100430,99320,76.84,0,3.11,3.2800000000000002,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,3.31,212.56,212.31,212.1,211.89000000000001,211.69,211.49,211.3,211.12,210.75,29.02,28.69,28.51,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.17,N/A,N/A -2012,8,4,16,30,101610,100460,99350,75.59,0,2.25,2.36,2.37,2.38,2.39,2.4,2.4,2.4,2.41,202.63,202.61,202.6,202.58,202.55,202.52,202.48000000000002,202.45000000000002,202.34,29.080000000000002,28.73,28.560000000000002,28.36,28.17,27.98,27.79,27.6,27.22,N/A,N/A -2012,8,4,17,30,101610,100470,99360,75.53,0,1.82,1.9000000000000001,1.9100000000000001,1.9100000000000001,1.92,1.92,1.92,1.93,1.93,188.16,187.76,187.54,187.3,187.09,186.88,186.68,186.48,186.08,29.14,28.79,28.62,28.42,28.23,28.04,27.84,27.66,27.27,N/A,N/A -2012,8,4,18,30,101590,100440,99330,75.66,0,2.68,2.82,2.84,2.85,2.86,2.87,2.87,2.88,2.89,170.25,169.93,169.82,169.71,169.62,169.53,169.44,169.36,169.17000000000002,29.22,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,8,4,19,30,101600,100460,99350,75.78,0,2.66,2.7800000000000002,2.8000000000000003,2.82,2.83,2.84,2.84,2.84,2.85,164.34,163.78,163.44,163.12,162.82,162.53,162.23,161.95000000000002,161.38,29.310000000000002,28.95,28.77,28.57,28.38,28.19,28,27.810000000000002,27.43,N/A,N/A -2012,8,4,20,30,101570,100420,99320,75.02,0,3.73,3.94,3.97,3.98,3.99,3.99,3.99,3.99,3.99,154.63,154.88,154.98,155.09,155.20000000000002,155.31,155.43,155.53,155.76,29.41,29.05,28.88,28.68,28.490000000000002,28.3,28.1,27.91,27.53,N/A,N/A -2012,8,4,21,30,101570,100420,99320,76.5,0,4.47,4.72,4.75,4.75,4.75,4.75,4.74,4.73,4.71,150.01,150.78,151.13,151.49,151.81,152.13,152.45000000000002,152.74,153.34,29.28,28.93,28.76,28.560000000000002,28.37,28.18,27.990000000000002,27.8,27.42,N/A,N/A -2012,8,4,22,30,101550,100410,99300,77.78,0,5.53,5.92,5.99,6.03,6.05,6.07,6.07,6.08,6.08,155.23,155.44,155.51,155.57,155.63,155.70000000000002,155.77,155.83,155.97,29.18,28.85,28.68,28.48,28.3,28.1,27.91,27.72,27.35,N/A,N/A -2012,8,4,23,30,101530,100390,99280,78.43,0,5.11,5.62,5.73,5.8,5.86,5.9,5.92,5.95,5.98,156.08,155.93,155.91,155.87,155.85,155.83,155.82,155.81,155.79,29.330000000000002,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A -2012,8,5,0,30,101510,100370,99260,78.37,0,6.26,6.8100000000000005,6.92,6.99,7.03,7.07,7.09,7.1000000000000005,7.13,149.47,149.35,149.31,149.27,149.24,149.21,149.19,149.16,149.11,29.19,28.87,28.7,28.51,28.32,28.13,27.94,27.75,27.37,N/A,N/A -2012,8,5,1,30,101520,100370,99260,79.9,0,6.3100000000000005,6.8500000000000005,6.96,7.03,7.07,7.09,7.11,7.12,7.140000000000001,152.79,152.87,152.97,153.06,153.15,153.23,153.31,153.38,153.54,29.07,28.740000000000002,28.57,28.37,28.18,27.990000000000002,27.79,27.61,27.22,N/A,N/A -2012,8,5,2,30,101600,100450,99340,78.23,0,5.53,6.01,6.12,6.18,6.23,6.2700000000000005,6.3,6.32,6.36,148.35,148.25,148.25,148.25,148.25,148.25,148.26,148.26,148.27,29.12,28.79,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A -2012,8,5,3,30,101620,100480,99370,77.96000000000001,0,5.42,5.82,5.88,5.9,5.91,5.91,5.9,5.89,5.86,137.77,137.85,137.86,137.86,137.85,137.84,137.83,137.83,137.82,29.02,28.69,28.52,28.330000000000002,28.14,27.94,27.75,27.560000000000002,27.18,N/A,N/A -2012,8,5,4,30,101630,100490,99380,74.83,0,3.92,4.14,4.16,4.17,4.16,4.15,4.14,4.13,4.1,140.29,140.27,140.21,140.15,140.09,140.04,139.98,139.92000000000002,139.81,29,28.67,28.5,28.310000000000002,28.11,27.93,27.73,27.54,27.16,N/A,N/A -2012,8,5,5,30,101660,100510,99400,76.14,0,3.2800000000000002,3.48,3.52,3.54,3.5500000000000003,3.56,3.56,3.56,3.56,138.09,138.46,138.70000000000002,138.92000000000002,139.12,139.32,139.5,139.67000000000002,140.03,28.93,28.6,28.43,28.23,28.04,27.86,27.66,27.47,27.09,N/A,N/A -2012,8,5,6,30,101660,100510,99400,76.4,0,4.58,4.86,4.91,4.92,4.92,4.91,4.9,4.89,4.86,146.8,146.69,146.65,146.6,146.54,146.49,146.42000000000002,146.36,146.24,28.87,28.54,28.37,28.17,27.98,27.79,27.59,27.400000000000002,27.02,N/A,N/A -2012,8,5,7,30,101660,100510,99400,78.01,0,5.7700000000000005,6.23,6.3100000000000005,6.36,6.390000000000001,6.4,6.41,6.41,6.41,152.45000000000002,152.59,152.68,152.76,152.84,152.91,152.97,153.04,153.17000000000002,28.8,28.45,28.28,28.080000000000002,27.89,27.69,27.5,27.310000000000002,26.92,N/A,N/A -2012,8,5,8,30,101680,100530,99420,75.63,0,4.21,4.46,4.5200000000000005,4.55,4.57,4.59,4.6000000000000005,4.61,4.62,156.52,156.52,156.46,156.38,156.31,156.22,156.13,156.03,155.84,28.76,28.42,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A -2012,8,5,9,30,101720,100570,99460,77.39,0,3.74,3.96,3.98,3.99,4,3.99,3.99,3.98,3.96,160.67000000000002,160.8,160.89000000000001,160.98,161.07,161.15,161.24,161.32,161.51,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A -2012,8,5,10,30,101750,100600,99490,71.73,0,2.6,2.7800000000000002,2.81,2.83,2.85,2.86,2.87,2.89,2.91,169.46,169.29,169.23,169.15,169.06,168.98,168.89000000000001,168.82,168.62,28.86,28.54,28.37,28.17,27.98,27.79,27.59,27.41,27.02,N/A,N/A -2012,8,5,11,30,101770,100620,99510,76.67,0,2.27,2.37,2.37,2.36,2.36,2.35,2.34,2.33,2.3000000000000003,153.58,154.04,154.33,154.6,154.85,155.07,155.29,155.48,155.85,28.63,28.3,28.12,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A -2012,8,5,12,30,101810,100660,99550,75.58,0,1.19,1.24,1.24,1.25,1.25,1.25,1.24,1.24,1.24,99.37,100.99000000000001,101.99000000000001,102.95,103.8,104.59,105.38,106.12,107.58,28.64,28.310000000000002,28.13,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A -2012,8,5,13,30,101850,100700,99580,75.69,0,1.37,1.3900000000000001,1.3900000000000001,1.37,1.36,1.35,1.34,1.32,1.3,56.29,57.550000000000004,58.27,59,59.7,60.370000000000005,61.050000000000004,61.67,63.09,28.61,28.28,28.1,27.900000000000002,27.72,27.53,27.330000000000002,27.14,26.76,N/A,N/A -2012,8,5,14,30,101870,100720,99610,75.74,0,2.21,2.2800000000000002,2.27,2.2600000000000002,2.25,2.23,2.22,2.2,2.17,60.27,60.17,60.14,60.1,60.07,60.03,59.980000000000004,59.92,59.77,28.62,28.28,28.1,27.900000000000002,27.71,27.52,27.32,27.14,26.75,N/A,N/A -2012,8,5,15,30,101910,100760,99640,75,0,2.83,2.95,2.96,2.96,2.95,2.95,2.94,2.93,2.9,54.54,54.96,55.08,55.2,55.300000000000004,55.410000000000004,55.51,55.61,55.79,28.68,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.37,27.18,26.8,N/A,N/A -2012,8,5,16,30,101940,100790,99680,75.73,0,3.44,3.59,3.6,3.6,3.59,3.58,3.56,3.5500000000000003,3.52,67.85,68.16,68.23,68.31,68.39,68.47,68.55,68.63,68.81,28.69,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.38,27.19,26.810000000000002,N/A,N/A -2012,8,5,17,30,101920,100760,99650,73.27,0,2.95,3.11,3.13,3.14,3.15,3.15,3.15,3.15,3.14,95.19,95.84,96.08,96.33,96.58,96.82000000000001,97.08,97.32000000000001,97.85000000000001,28.79,28.43,28.26,28.060000000000002,27.86,27.68,27.48,27.29,26.91,N/A,N/A -2012,8,5,18,30,101890,100740,99620,74.22,0,4.0600000000000005,4.29,4.33,4.3500000000000005,4.36,4.37,4.38,4.38,4.38,111.49000000000001,111.75,111.91,112.08,112.24000000000001,112.39,112.56,112.72,113.05,28.85,28.48,28.310000000000002,28.11,27.92,27.73,27.53,27.35,26.97,N/A,N/A -2012,8,5,19,30,101870,100720,99610,77.29,0,3.7600000000000002,3.95,3.96,3.96,3.95,3.93,3.92,3.9,3.86,133.37,133.52,133.59,133.65,133.7,133.75,133.8,133.85,133.95,28.8,28.44,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A -2012,8,5,20,30,101850,100700,99590,76.4,0,2.81,2.93,2.94,2.94,2.93,2.91,2.9,2.88,2.85,132.29,131.97,131.76,131.55,131.35,131.14000000000001,130.92000000000002,130.72,130.26,28.86,28.5,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A -2012,8,5,21,30,101830,100680,99560,73.73,0,3.63,3.83,3.86,3.87,3.88,3.89,3.89,3.89,3.88,147.06,147.14000000000001,147.12,147.13,147.13,147.14000000000001,147.16,147.18,147.23,28.96,28.6,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.080000000000002,N/A,N/A -2012,8,5,22,30,101780,100630,99520,71.92,0,3.5700000000000003,3.7800000000000002,3.8200000000000003,3.84,3.85,3.86,3.86,3.87,3.87,171.99,171.56,171.18,170.83,170.49,170.17000000000002,169.84,169.54,168.89000000000001,28.98,28.64,28.48,28.28,28.09,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A -2012,8,5,23,30,101750,100600,99490,72.99,0,3.46,3.66,3.68,3.69,3.69,3.69,3.69,3.68,3.67,183.64000000000001,183.92000000000002,184.1,184.28,184.45000000000002,184.6,184.75,184.89000000000001,185.15,28.900000000000002,28.57,28.400000000000002,28.21,28.02,27.84,27.650000000000002,27.47,27.1,N/A,N/A -2012,8,6,0,30,101720,100570,99460,72.81,0,3.5100000000000002,3.7,3.72,3.72,3.72,3.71,3.7,3.69,3.66,172.67000000000002,172.4,172.18,171.96,171.74,171.53,171.28,171.05,170.45000000000002,28.86,28.53,28.36,28.17,27.98,27.8,27.61,27.43,27.060000000000002,N/A,N/A -2012,8,6,1,30,101700,100550,99440,67.92,0,2.49,2.63,2.65,2.66,2.67,2.67,2.68,2.68,2.69,183.83,183.65,183.35,183.01,182.64000000000001,182.26,181.74,181.22,179.75,29.080000000000002,28.77,28.61,28.42,28.240000000000002,28.060000000000002,27.87,27.7,27.35,N/A,N/A -2012,8,6,2,30,101710,100560,99450,70.99,0,3.2,3.37,3.38,3.39,3.38,3.38,3.38,3.37,3.35,191.92000000000002,191.06,190.64000000000001,190.21,189.77,189.33,188.83,188.36,187.22,28.95,28.63,28.46,28.27,28.080000000000002,27.900000000000002,27.71,27.54,27.17,N/A,N/A -2012,8,6,3,30,101730,100580,99460,70.67,0,3.3000000000000003,3.48,3.5,3.5100000000000002,3.52,3.52,3.52,3.52,3.5100000000000002,183.18,182.84,182.58,182.3,182.01,181.70000000000002,181.35,181,180.09,28.91,28.59,28.42,28.23,28.04,27.86,27.67,27.48,27.11,N/A,N/A -2012,8,6,4,30,101720,100570,99460,71.2,0,3.08,3.24,3.27,3.27,3.2800000000000002,3.27,3.27,3.27,3.2600000000000002,186.02,185.5,185.23,184.94,184.64000000000001,184.33,183.98,183.65,182.82,28.87,28.55,28.38,28.19,28,27.810000000000002,27.62,27.44,27.07,N/A,N/A -2012,8,6,5,30,101720,100570,99460,66.73,0,2.92,3.11,3.13,3.15,3.16,3.17,3.17,3.18,3.2,189.54,189.29,189.08,188.87,188.65,188.42000000000002,188.15,187.88,187.18,29.1,28.79,28.62,28.43,28.25,28.060000000000002,27.87,27.69,27.32,N/A,N/A -2012,8,6,6,30,101720,100570,99460,69.28,0,2.43,2.52,2.52,2.52,2.5100000000000002,2.5,2.49,2.48,2.44,199.67000000000002,199.44,199.22,198.99,198.76,198.53,198.25,197.99,197.3,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.17,N/A,N/A -2012,8,6,7,30,101720,100570,99460,67.98,0,2.38,2.49,2.5,2.5,2.5,2.49,2.49,2.48,2.47,206.05,205.77,205.62,205.46,205.27,205.08,204.85,204.64000000000001,204.08,29.02,28.69,28.52,28.330000000000002,28.13,27.95,27.75,27.57,27.19,N/A,N/A -2012,8,6,8,30,101750,100600,99490,70.35000000000001,0,2.23,2.3000000000000003,2.3000000000000003,2.29,2.29,2.27,2.2600000000000002,2.25,2.22,241.22,241.06,240.89000000000001,240.70000000000002,240.54,240.38,240.20000000000002,240.03,239.66,28.89,28.560000000000002,28.39,28.2,28.01,27.82,27.63,27.44,27.060000000000002,N/A,N/A -2012,8,6,9,30,101750,100600,99480,69.21000000000001,0,2.65,2.7600000000000002,2.77,2.77,2.77,2.77,2.7600000000000002,2.75,2.73,236.76,236.45000000000002,236.35,236.25,236.14000000000001,236.03,235.92000000000002,235.82,235.57,28.92,28.580000000000002,28.41,28.22,28.03,27.84,27.650000000000002,27.46,27.080000000000002,N/A,N/A -2012,8,6,10,30,101750,100600,99490,72.48,0,2.5500000000000003,2.65,2.66,2.65,2.64,2.63,2.62,2.61,2.58,243.42000000000002,243.4,243.32,243.24,243.16,243.09,243,242.92000000000002,242.75,28.71,28.37,28.2,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A -2012,8,6,11,30,101770,100620,99510,80.41,0,3.63,3.63,3.54,3.43,3.33,3.23,3.12,3.0300000000000002,2.83,301,299.82,298.96,298.04,297.1,296.18,295.15000000000003,294.2,291.87,28.16,27.8,27.63,27.44,27.26,27.080000000000002,26.89,26.71,26.35,N/A,N/A -2012,8,6,12,30,101780,100620,99510,81.25,0,3.7800000000000002,3.88,3.85,3.79,3.74,3.67,3.6,3.5300000000000002,3.35,319.28000000000003,319.57,319.69,319.8,319.90000000000003,320,320.07,320.13,320.17,27.79,27.400000000000002,27.22,27.03,26.84,26.650000000000002,26.46,26.28,25.91,N/A,N/A -2012,8,6,13,30,101810,100660,99540,82.07000000000001,0,3.77,3.91,3.92,3.9,3.88,3.86,3.83,3.8000000000000003,3.73,322.84000000000003,322.95,323.05,323.15000000000003,323.24,323.33,323.41,323.49,323.63,27.71,27.32,27.13,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A -2012,8,6,14,30,101830,100680,99560,78.75,0,3.24,3.37,3.38,3.37,3.36,3.34,3.33,3.31,3.27,329.44,329.79,329.99,330.18,330.37,330.55,330.74,330.90000000000003,331.27,27.92,27.54,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.02,N/A,N/A -2012,8,6,15,30,101810,100660,99550,76.29,0,2.2800000000000002,2.35,2.35,2.35,2.34,2.33,2.32,2.31,2.29,322.96,324,324.56,325.11,325.64,326.16,326.7,327.23,328.35,28.1,27.73,27.55,27.36,27.16,26.97,26.78,26.6,26.21,N/A,N/A -2012,8,6,16,30,101810,100660,99540,75.06,0,1.42,1.47,1.47,1.47,1.46,1.46,1.46,1.46,1.45,312.07,314.03000000000003,315.15000000000003,316.27,317.32,318.32,319.38,320.38,322.43,28.32,27.95,27.77,27.57,27.38,27.19,27,26.810000000000002,26.43,N/A,N/A -2012,8,6,17,30,101750,100600,99480,73.95,0,0.6,0.59,0.5700000000000001,0.56,0.54,0.52,0.51,0.49,0.44,229.72,230.76,231.02,231.36,231.68,231.98000000000002,232.43,232.88,234.63,28.51,28.150000000000002,27.98,27.79,27.6,27.42,27.23,27.05,26.7,N/A,N/A -2012,8,6,18,30,101730,100580,99470,71.96000000000001,0,2.15,2.19,2.17,2.15,2.12,2.09,2.05,2.0100000000000002,1.92,206.04,206.16,206.29,206.43,206.6,206.8,207.09,207.4,208.45000000000002,28.84,28.48,28.310000000000002,28.11,27.93,27.75,27.560000000000002,27.39,27.04,N/A,N/A -2012,8,6,19,30,101670,100520,99410,71.81,0,3.0300000000000002,3.12,3.1,3.0700000000000003,3.0300000000000002,2.98,2.94,2.88,2.75,200.83,201.13,201.33,201.56,201.79,202.03,202.33,202.62,203.47,29.02,28.650000000000002,28.48,28.29,28.11,27.93,27.740000000000002,27.57,27.23,N/A,N/A -2012,8,6,20,30,101590,100450,99340,70.24,0,4.16,4.33,4.33,4.3,4.2700000000000005,4.23,4.17,4.13,3.98,191.70000000000002,191.96,191.96,191.95000000000002,191.95000000000002,191.94,191.93,191.92000000000002,191.86,29.23,28.87,28.7,28.51,28.330000000000002,28.150000000000002,27.97,27.79,27.46,N/A,N/A -2012,8,6,21,30,101540,100390,99290,70.61,0,4.42,4.63,4.64,4.61,4.58,4.54,4.49,4.43,4.2700000000000005,192.13,192.03,191.95000000000002,191.84,191.70000000000002,191.52,191.29,191.06,190.21,29.27,28.94,28.77,28.580000000000002,28.39,28.21,28.03,27.86,27.51,N/A,N/A -2012,8,6,22,30,101550,100400,99300,70.82000000000001,0,4.71,4.95,4.95,4.92,4.87,4.82,4.74,4.66,4.38,193.78,193.58,193.45000000000002,193.27,193.06,192.83,192.48000000000002,192.11,190.67000000000002,29.35,29.03,28.87,28.68,28.5,28.32,28.14,27.97,27.650000000000002,N/A,N/A -2012,8,6,23,30,101490,100340,99230,72.93,0,5.28,5.57,5.58,5.55,5.49,5.43,5.33,5.24,4.8500000000000005,196.26,195.96,195.79,195.6,195.37,195.13,194.74,194.35,192.5,29.25,28.93,28.76,28.580000000000002,28.400000000000002,28.22,28.04,27.88,27.59,N/A,N/A -2012,8,7,0,30,101500,100360,99250,72.45,0,4.66,4.93,4.94,4.92,4.89,4.86,4.8,4.75,4.59,196.82,196.52,196.37,196.19,195.98000000000002,195.75,195.43,195.1,193.88,29.310000000000002,28.990000000000002,28.82,28.63,28.44,28.26,28.080000000000002,27.900000000000002,27.55,N/A,N/A -2012,8,7,1,30,101440,100300,99190,72.49,0,4.04,4.25,4.2700000000000005,4.25,4.22,4.19,4.15,4.11,3.99,203.36,203.18,202.98000000000002,202.75,202.49,202.22,201.83,201.43,200.08,29.27,28.95,28.78,28.59,28.400000000000002,28.22,28.03,27.85,27.5,N/A,N/A -2012,8,7,2,30,101480,100330,99230,73.28,0,3.67,3.86,3.88,3.87,3.86,3.84,3.81,3.79,3.71,212.21,212.15,212.1,212.01,211.9,211.77,211.58,211.38,210.72,29.23,28.91,28.75,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.44,N/A,N/A -2012,8,7,3,30,101460,100320,99210,74.18,0,3.9,4.13,4.16,4.17,4.17,4.16,4.15,4.14,4.1,211.06,211.08,210.97,210.87,210.76,210.64000000000001,210.5,210.37,210.01,29.18,28.85,28.68,28.48,28.3,28.11,27.91,27.73,27.35,N/A,N/A -2012,8,7,4,30,101430,100290,99180,74.89,0,2.36,2.45,2.46,2.45,2.45,2.44,2.43,2.42,2.39,217.43,217.27,216.96,216.62,216.27,215.93,215.53,215.15,214.21,29.07,28.740000000000002,28.57,28.38,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A -2012,8,7,5,30,101420,100270,99170,76.3,0,2.93,3.06,3.0700000000000003,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,2.99,242.3,242.11,242.08,242.05,242.02,241.99,241.96,241.93,241.84,28.96,28.63,28.46,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A -2012,8,7,6,30,101440,100300,99190,75.38,0,2.19,2.2600000000000002,2.2600000000000002,2.24,2.23,2.22,2.2,2.19,2.15,222.01,221.73000000000002,221.67000000000002,221.58,221.48000000000002,221.38,221.24,221.11,220.82,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,8,7,7,30,101420,100280,99170,73.92,0,2.05,2.14,2.15,2.14,2.14,2.14,2.13,2.13,2.11,255.02,254.88,254.89000000000001,254.89000000000001,254.87,254.85,254.81,254.78,254.67000000000002,28.95,28.62,28.45,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A -2012,8,7,8,30,101430,100280,99180,73.45,0,1.54,1.61,1.61,1.61,1.61,1.61,1.61,1.61,1.61,246.77,246.95000000000002,247.1,247.22,247.35,247.47,247.58,247.68,247.93,28.97,28.64,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A -2012,8,7,9,30,101450,100300,99190,74.64,0,1.47,1.52,1.52,1.51,1.51,1.5,1.49,1.49,1.47,249.27,249.34,249.56,249.76000000000002,249.93,250.08,250.24,250.39000000000001,250.66,28.900000000000002,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A -2012,8,7,10,30,101460,100310,99210,75.29,0,1.71,1.78,1.78,1.78,1.78,1.78,1.78,1.77,1.76,238.27,237.8,237.63,237.46,237.3,237.14000000000001,236.99,236.86,236.58,28.85,28.51,28.34,28.150000000000002,27.96,27.77,27.57,27.39,27,N/A,N/A -2012,8,7,11,30,101450,100300,99190,76.64,0,1.96,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.02,2.0100000000000002,2.0100000000000002,2,1.98,257.26,257.3,257.3,257.29,257.3,257.32,257.32,257.32,257.32,28.72,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,8,7,12,30,101470,100320,99210,78.57000000000001,0,1.6400000000000001,1.68,1.68,1.67,1.6600000000000001,1.6500000000000001,1.6400000000000001,1.6300000000000001,1.61,309.82,309.82,309.66,309.51,309.35,309.19,309.03000000000003,308.88,308.56,28.650000000000002,28.310000000000002,28.13,27.94,27.75,27.560000000000002,27.36,27.18,26.79,N/A,N/A -2012,8,7,13,30,101480,100340,99230,81.87,0,2.5500000000000003,2.5300000000000002,2.47,2.4,2.33,2.2600000000000002,2.2,2.13,2,319.27,319.7,319.87,320.06,320.25,320.44,320.67,320.89,321.40000000000003,28.34,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.05,26.86,26.490000000000002,N/A,N/A -2012,8,7,14,30,101510,100360,99250,81.79,0,1.68,1.68,1.6600000000000001,1.6300000000000001,1.6,1.57,1.54,1.5,1.44,303.3,303.02,302.96,302.89,302.83,302.77,302.69,302.62,302.45,28.29,27.93,27.75,27.560000000000002,27.36,27.18,26.98,26.8,26.42,N/A,N/A -2012,8,7,15,30,101510,100370,99260,81.92,0,1.3800000000000001,1.37,1.34,1.3,1.27,1.24,1.2,1.17,1.09,304.74,305.27,305.58,305.91,306.22,306.51,306.85,307.18,307.96,28.3,27.93,27.75,27.560000000000002,27.36,27.18,26.98,26.8,26.42,N/A,N/A -2012,8,7,16,30,101510,100360,99260,81.13,0,1.1400000000000001,1.1500000000000001,1.1400000000000001,1.12,1.1,1.09,1.07,1.05,1.01,293.96,294.03000000000003,294.11,294.21,294.3,294.38,294.44,294.49,294.52,28.45,28.09,27.91,27.72,27.52,27.330000000000002,27.14,26.96,26.580000000000002,N/A,N/A -2012,8,7,17,30,101480,100340,99230,80.64,0,1.25,1.27,1.25,1.24,1.23,1.21,1.2,1.18,1.1500000000000001,235.61,235.39000000000001,235.13,234.86,234.55,234.22,233.83,233.44,232.36,28.64,28.27,28.09,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.77,N/A,N/A -2012,8,7,18,30,101470,100320,99220,79.29,0,2.42,2.5,2.49,2.48,2.46,2.44,2.41,2.39,2.33,212.72,212.29,212.1,211.89000000000001,211.66,211.41,211.11,210.82,210,28.88,28.52,28.34,28.150000000000002,27.96,27.78,27.59,27.41,27.05,N/A,N/A -2012,8,7,19,30,101430,100290,99180,78,0,2.82,2.92,2.92,2.91,2.89,2.87,2.85,2.83,2.77,209.67000000000002,209.33,209.05,208.74,208.44,208.15,207.8,207.44,206.63,29.09,28.72,28.55,28.35,28.16,27.97,27.78,27.6,27.23,N/A,N/A -2012,8,7,20,30,101400,100260,99160,77.74,0,3.46,3.61,3.62,3.62,3.61,3.6,3.59,3.5700000000000003,3.5300000000000002,197.8,197.41,197.22,197,196.78,196.56,196.31,196.06,195.46,29.22,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.35,N/A,N/A -2012,8,7,21,30,101350,100210,99100,77.15,0,3.0100000000000002,3.15,3.16,3.16,3.16,3.15,3.14,3.13,3.11,201.54,201.01,200.63,200.22,199.83,199.46,199.03,198.62,197.65,29.27,28.92,28.75,28.55,28.36,28.17,27.98,27.8,27.42,N/A,N/A -2012,8,7,22,30,101330,100190,99080,78.72,0,4.0600000000000005,4.28,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.28,4.25,196.77,196.51,196.34,196.16,195.97,195.78,195.56,195.35,194.85,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.78,27.400000000000002,N/A,N/A -2012,8,7,23,30,101290,100150,99040,77.60000000000001,0,3.94,4.15,4.17,4.18,4.17,4.16,4.14,4.13,4.08,184.65,184.77,184.8,184.82,184.82,184.81,184.79,184.76,184.63,29.23,28.91,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,8,0,30,101290,100150,99040,79.03,0,4.55,4.83,4.86,4.87,4.87,4.86,4.8500000000000005,4.84,4.8100000000000005,175.74,175.70000000000002,175.70000000000002,175.67000000000002,175.61,175.53,175.41,175.29,174.84,29.14,28.810000000000002,28.650000000000002,28.45,28.26,28.080000000000002,27.89,27.71,27.34,N/A,N/A -2012,8,8,1,30,101260,100120,99020,79.03,0,3.88,4.1,4.14,4.15,4.15,4.14,4.14,4.13,4.11,180.56,180.08,179.8,179.51,179.21,178.92000000000002,178.58,178.26,177.52,29.05,28.73,28.55,28.36,28.17,27.98,27.79,27.61,27.23,N/A,N/A -2012,8,8,2,30,101300,100160,99050,79.85000000000001,0,3.95,4.18,4.22,4.24,4.24,4.24,4.24,4.24,4.23,176.96,177.15,177.23,177.29,177.32,177.35,177.36,177.37,177.31,29.02,28.69,28.52,28.330000000000002,28.14,27.95,27.75,27.57,27.19,N/A,N/A -2012,8,8,3,30,101320,100170,99070,78.61,0,3.5500000000000003,3.7600000000000002,3.79,3.81,3.81,3.81,3.8200000000000003,3.8200000000000003,3.81,162.04,162.31,162.47,162.62,162.75,162.86,162.97,163.08,163.27,29.03,28.7,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.580000000000002,27.2,N/A,N/A -2012,8,8,4,30,101310,100170,99060,80.47,0,4.12,4.39,4.43,4.46,4.47,4.48,4.48,4.48,4.48,179.16,178.84,178.67000000000002,178.51,178.35,178.21,178.07,177.93,177.66,28.94,28.6,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A -2012,8,8,5,30,101320,100180,99070,79.74,0,3.85,4.09,4.14,4.16,4.17,4.18,4.18,4.19,4.19,169.46,169.53,169.5,169.49,169.47,169.46,169.45000000000002,169.43,169.41,28.92,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.64,27.45,27.07,N/A,N/A -2012,8,8,6,30,101340,100200,99090,80.93,0,3.38,3.56,3.6,3.61,3.62,3.63,3.63,3.63,3.64,182.07,182.11,182.13,182.13,182.13,182.13,182.13,182.12,182.09,28.84,28.5,28.32,28.12,27.93,27.75,27.55,27.36,26.990000000000002,N/A,N/A -2012,8,8,7,30,101400,100250,99150,81.52,0,2.88,3.0700000000000003,3.11,3.14,3.16,3.18,3.2,3.22,3.25,187.11,186.02,185.42000000000002,184.83,184.31,183.8,183.31,182.86,181.93,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,8,8,8,30,101390,100250,99140,80.65,0,3.0100000000000002,3.18,3.21,3.22,3.23,3.24,3.25,3.25,3.2600000000000002,177.42000000000002,177.14000000000001,177,176.87,176.75,176.63,176.53,176.43,176.22,28.86,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A -2012,8,8,9,30,101420,100270,99170,79.69,0,2.29,2.4,2.41,2.42,2.42,2.42,2.43,2.43,2.42,177.33,177.33,177.29,177.24,177.19,177.14000000000001,177.07,177.01,176.91,28.86,28.52,28.35,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.01,N/A,N/A -2012,8,8,10,30,101450,100300,99200,80.15,0,0.9,0.92,0.93,0.93,0.9400000000000001,0.9400000000000001,0.9400000000000001,0.9500000000000001,0.96,202.48000000000002,201.92000000000002,201.41,200.91,200.46,200.03,199.61,199.21,198.29,28.8,28.46,28.29,28.09,27.900000000000002,27.72,27.52,27.330000000000002,26.96,N/A,N/A -2012,8,8,11,30,101480,100330,99230,80.53,0,0.89,0.91,0.9,0.89,0.87,0.86,0.85,0.8300000000000001,0.81,287.72,287.89,288.15000000000003,288.32,288.39,288.39,288.37,288.33,288.12,28.78,28.45,28.28,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A -2012,8,8,12,30,101450,100300,99190,86.24,19.400000000000002,4.66,4.6000000000000005,4.38,4.14,3.93,3.7600000000000002,3.66,3.59,3.5,196.35,197.46,198.13,198.86,199.45000000000002,199.92000000000002,199.9,199.83,198.92000000000002,27.09,26.8,26.72,26.66,26.63,26.6,26.52,26.45,26.23,N/A,N/A -2012,8,8,13,30,101530,100380,99270,79.23,0,1.83,1.85,1.83,1.79,1.8,1.84,1.8800000000000001,1.93,1.96,205.09,207.72,209.95000000000002,213.34,217.74,223.29,225.73000000000002,226.77,224.06,28.18,27.88,27.75,27.62,27.580000000000002,27.6,27.54,27.45,27.23,N/A,N/A -2012,8,8,14,30,101550,100400,99290,86.58,0,4.57,4.54,4.37,4.14,3.85,3.52,3.12,2.75,2.15,208.46,208.74,208.88,209.12,209.67000000000002,210.43,212.81,215.4,223.33,27.52,27.150000000000002,26.990000000000002,26.830000000000002,26.69,26.560000000000002,26.45,26.35,26.17,N/A,N/A -2012,8,8,15,30,101540,100390,99280,77.13,0,2.69,2.6,2.48,2.31,2.1,1.87,1.47,1.1300000000000001,0.12,209.1,208.48000000000002,208.09,207.57,206.79,205.92000000000002,203.99,202.27,55.76,28.3,27.93,27.75,27.55,27.36,27.17,26.98,26.8,26.53,N/A,N/A -2012,8,8,16,30,101550,100410,99300,76.91,0,1.58,1.61,1.58,1.55,1.53,1.5,1.48,1.45,1.41,175.97,174.81,174.07,173.22,172.3,171.32,170.16,169.02,166.04,28.7,28.35,28.17,27.97,27.79,27.6,27.400000000000002,27.22,26.84,N/A,N/A -2012,8,8,17,30,101550,100400,99290,78.65,0,2.05,2.16,2.19,2.2,2.22,2.23,2.25,2.2600000000000002,2.29,149.20000000000002,149.91,150.34,150.77,151.18,151.6,152.06,152.52,153.53,28.8,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.94,N/A,N/A -2012,8,8,18,30,101530,100390,99280,78.9,0,2.13,2.22,2.23,2.24,2.24,2.24,2.24,2.23,2.23,146.74,146.61,146.55,146.5,146.46,146.41,146.38,146.34,146.29,28.96,28.59,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A -2012,8,8,19,30,101520,100380,99270,79.73,0,2.99,3.12,3.14,3.15,3.15,3.16,3.16,3.16,3.15,142.83,142.65,142.54,142.41,142.3,142.19,142.08,141.98,141.74,29.05,28.68,28.5,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A -2012,8,8,20,30,101450,100300,99200,79.74,0,2.45,2.5500000000000003,2.57,2.57,2.58,2.58,2.58,2.57,2.57,164.14000000000001,163.49,163.16,162.81,162.5,162.19,161.87,161.57,160.93,29.080000000000002,28.71,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.19,N/A,N/A -2012,8,8,21,30,101400,100260,99160,73.01,0,3.14,3.29,3.31,3.31,3.31,3.31,3.3000000000000003,3.29,3.2800000000000002,156.98,157.31,157.46,157.61,157.76,157.89000000000001,158.03,158.16,158.44,29.45,29.1,28.93,28.73,28.54,28.35,28.150000000000002,27.97,27.59,N/A,N/A -2012,8,8,22,30,101400,100260,99160,79.16,0,4.11,4.42,4.49,4.54,4.58,4.61,4.64,4.66,4.7,163.74,163.85,163.89000000000001,163.94,163.98,164.04,164.1,164.15,164.27,29.29,28.95,28.78,28.580000000000002,28.39,28.2,28,27.810000000000002,27.43,N/A,N/A -2012,8,8,23,30,101380,100230,99130,78.24,0,4.93,5.2700000000000005,5.33,5.37,5.39,5.4,5.42,5.43,5.44,169.89000000000001,169.67000000000002,169.52,169.35,169.20000000000002,169.04,168.88,168.72,168.38,29.310000000000002,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A -2012,8,9,0,30,101360,100210,99110,79.78,0,4.62,4.94,5.01,5.04,5.0600000000000005,5.08,5.08,5.09,5.09,170.66,170.61,170.68,170.73,170.77,170.8,170.83,170.86,170.9,29.16,28.82,28.650000000000002,28.45,28.26,28.080000000000002,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,9,1,30,101330,100190,99090,77.92,0,4.47,4.7700000000000005,4.82,4.84,4.8500000000000005,4.86,4.86,4.86,4.8500000000000005,169.31,169.16,169.08,169.02,168.97,168.91,168.86,168.8,168.68,29.19,28.87,28.69,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.36,N/A,N/A -2012,8,9,2,30,101350,100210,99110,81.29,0,4.5600000000000005,4.86,4.93,4.96,4.98,5,5.01,5.0200000000000005,5.03,169.97,170.05,170.06,170.07,170.08,170.08,170.07,170.07,170.06,28.96,28.62,28.45,28.26,28.07,27.88,27.69,27.5,27.13,N/A,N/A -2012,8,9,3,30,101350,100200,99100,82.54,0,5.46,5.8100000000000005,5.87,5.88,5.88,5.87,5.8500000000000005,5.84,5.79,176.46,176.06,175.78,175.49,175.24,174.99,174.75,174.52,174.08,28.93,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.62,27.43,27.05,N/A,N/A -2012,8,9,4,30,101340,100190,99090,83.95,0,5.17,5.45,5.48,5.48,5.47,5.44,5.42,5.39,5.33,169.06,169.89000000000001,170.33,170.75,171.14000000000001,171.54,171.95000000000002,172.34,173.21,28.8,28.46,28.28,28.09,27.900000000000002,27.72,27.53,27.36,26.990000000000002,N/A,N/A -2012,8,9,5,30,101370,100230,99120,85.13,0,4.65,4.96,5.03,5.0600000000000005,5.09,5.11,5.12,5.13,5.14,179.07,178.87,178.74,178.61,178.48,178.35,178.23,178.11,177.87,28.7,28.35,28.17,27.97,27.78,27.59,27.39,27.2,26.82,N/A,N/A -2012,8,9,6,30,101390,100250,99140,84.51,0,4.89,5.19,5.24,5.25,5.26,5.25,5.24,5.22,5.19,183.19,183.31,183.33,183.34,183.35,183.35,183.33,183.32,183.3,28.86,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,8,9,7,30,101410,100260,99160,82.32000000000001,0,3.89,4.13,4.17,4.2,4.21,4.22,4.22,4.23,4.23,193.52,193.45000000000002,193.43,193.43,193.43,193.43,193.45000000000002,193.49,193.56,28.92,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.62,27.44,27.060000000000002,N/A,N/A -2012,8,9,8,30,101430,100290,99180,76.7,0,3.46,3.68,3.73,3.7600000000000002,3.79,3.81,3.83,3.85,3.88,199.67000000000002,198.96,198.59,198.25,197.96,197.68,197.42000000000002,197.19,196.74,29.14,28.810000000000002,28.64,28.44,28.25,28.060000000000002,27.87,27.68,27.3,N/A,N/A -2012,8,9,9,30,101450,100310,99200,78.55,0,3.8200000000000003,4.08,4.14,4.18,4.21,4.23,4.25,4.2700000000000005,4.29,206.44,206.31,206.1,205.91,205.73000000000002,205.57,205.4,205.24,204.93,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,8,9,10,30,101450,100310,99200,80.81,0,4.51,4.79,4.8500000000000005,4.87,4.89,4.9,4.91,4.92,4.92,210.43,210.31,210.19,210.07,209.96,209.85,209.74,209.64000000000001,209.42000000000002,28.91,28.560000000000002,28.39,28.19,28,27.8,27.61,27.42,27.04,N/A,N/A -2012,8,9,11,30,101490,100350,99240,83.35000000000001,0,3.93,4.17,4.23,4.26,4.29,4.3100000000000005,4.32,4.33,4.3500000000000005,228.98000000000002,228.44,228.05,227.68,227.35,227.04,226.73000000000002,226.44,225.85,28.86,28.51,28.34,28.14,27.95,27.76,27.560000000000002,27.38,26.990000000000002,N/A,N/A -2012,8,9,12,30,101490,100350,99240,81.38,0,3.81,3.99,4.03,4.04,4.05,4.05,4.0600000000000005,4.0600000000000005,4.0600000000000005,253.22,252.07,251.29,250.52,249.82,249.13,248.44,247.75,246.36,28.98,28.66,28.490000000000002,28.29,28.11,27.92,27.73,27.55,27.18,N/A,N/A -2012,8,9,13,30,101530,100380,99270,88.97,7,9.38,9.88,9.85,9.72,9.58,9.42,9.24,9.07,8.72,259.72,259.27,258.87,258.26,257.53000000000003,256.69,255.63,254.57,252.02,27.72,27.3,27.14,26.97,26.810000000000002,26.67,26.52,26.39,26.12,N/A,N/A -2012,8,9,14,30,101560,100410,99300,84.53,0,2.47,2.66,2.75,2.87,3.0300000000000002,3.24,3.49,3.7600000000000002,4.1,270.38,265.53000000000003,262.8,259.43,255.46,250.91,245.74,240.39000000000001,232.73000000000002,27.85,27.51,27.36,27.21,27.1,27,26.94,26.900000000000002,26.740000000000002,N/A,N/A -2012,8,9,15,30,101550,100400,99300,82.8,2.2,2.04,2.29,2.42,2.57,2.75,2.95,3.17,3.4,3.8200000000000003,262.25,257.49,254.74,251.94,249.24,246.44,243.55,240.66,235.48000000000002,28.22,27.89,27.740000000000002,27.57,27.43,27.29,27.150000000000002,27.02,26.740000000000002,N/A,N/A -2012,8,9,16,30,101530,100380,99270,88.42,0,5.32,5.43,5.38,5.2700000000000005,5.17,5.07,4.98,4.91,4.74,244.69,244,243.38,242.55,241.59,240.47,238.94,237.31,233.34,27.42,27.04,26.89,26.740000000000002,26.61,26.490000000000002,26.400000000000002,26.32,26.17,N/A,N/A -2012,8,9,17,30,101540,100390,99290,79.06,0,2.16,2.32,2.38,2.45,2.54,2.64,2.8000000000000003,2.99,3.7600000000000002,223.54,222.88,222.76,222.57,222.32,221.99,221.39000000000001,220.65,217.53,28.48,28.12,27.95,27.76,27.59,27.41,27.25,27.1,26.89,N/A,N/A -2012,8,9,18,30,101500,100360,99250,80.99,0,3.34,3.52,3.56,3.59,3.61,3.64,3.67,3.7,3.81,218.18,218.31,218.3,218.32,218.35,218.4,218.49,218.59,218.93,28.830000000000002,28.46,28.29,28.09,27.900000000000002,27.72,27.53,27.35,26.990000000000002,N/A,N/A -2012,8,9,19,30,101480,100340,99230,81.52,0,4.33,4.63,4.7,4.75,4.79,4.82,4.8500000000000005,4.87,4.92,204.45000000000002,204.65,204.79,204.93,205.05,205.16,205.29,205.41,205.66,29.19,28.830000000000002,28.66,28.45,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,9,20,30,101410,100270,99170,79.10000000000001,0,6.34,6.84,6.93,6.98,7.01,7.03,7.04,7.04,7.05,203.09,203.21,203.29,203.36,203.43,203.49,203.55,203.62,203.75,29.44,29.09,28.92,28.72,28.54,28.34,28.150000000000002,27.97,27.59,N/A,N/A -2012,8,9,21,30,101360,100230,99120,81.45,0,6.83,7.38,7.5,7.5600000000000005,7.59,7.61,7.63,7.640000000000001,7.640000000000001,201.87,201.85,201.89000000000001,201.95000000000002,202,202.07,202.15,202.23000000000002,202.45000000000002,29.41,29.080000000000002,28.92,28.72,28.54,28.35,28.16,27.98,27.61,N/A,N/A -2012,8,9,22,30,101330,100190,99080,81,0,6.5,7.01,7.1000000000000005,7.140000000000001,7.16,7.17,7.16,7.15,7.11,202.01,202.02,202.11,202.19,202.26,202.32,202.39000000000001,202.45000000000002,202.59,29.36,29.03,28.86,28.66,28.48,28.29,28.1,27.92,27.55,N/A,N/A -2012,8,9,23,30,101330,100190,99090,81.94,0,5.45,5.8500000000000005,5.93,5.97,5.99,6,6.01,6,5.99,183.21,183.42000000000002,183.57,183.68,183.75,183.81,183.86,183.89000000000001,183.96,29.29,28.95,28.78,28.580000000000002,28.400000000000002,28.21,28.01,27.830000000000002,27.45,N/A,N/A -2012,8,10,0,30,101250,100110,99010,83.81,0,5.14,5.5,5.55,5.57,5.58,5.58,5.58,5.57,5.5600000000000005,205.53,205.68,205.71,205.77,205.83,205.9,205.97,206.04,206.24,29.14,28.8,28.63,28.44,28.25,28.060000000000002,27.88,27.7,27.34,N/A,N/A -2012,8,10,1,30,101230,100090,98990,83.21000000000001,0,7.13,7.71,7.82,7.87,7.890000000000001,7.9,7.9,7.9,7.87,205.41,205.56,205.63,205.71,205.78,205.86,205.96,206.05,206.29,29.26,28.92,28.75,28.55,28.37,28.19,27.990000000000002,27.810000000000002,27.45,N/A,N/A -2012,8,10,2,30,101230,100100,98990,82.96000000000001,0,6.72,7.2700000000000005,7.38,7.43,7.46,7.47,7.48,7.48,7.46,207.37,207.43,207.49,207.55,207.61,207.68,207.76,207.83,208.02,29.310000000000002,28.98,28.810000000000002,28.62,28.43,28.25,28.060000000000002,27.88,27.51,N/A,N/A -2012,8,10,3,30,101250,100110,99010,82.95,0,6.3100000000000005,6.84,6.94,6.99,7.03,7.04,7.04,7.04,7.03,204.70000000000002,204.92000000000002,205.04,205.14000000000001,205.22,205.29,205.35,205.4,205.52,29.330000000000002,28.990000000000002,28.830000000000002,28.63,28.44,28.25,28.060000000000002,27.87,27.5,N/A,N/A -2012,8,10,4,30,101230,100090,98990,80.83,0,5.25,5.68,5.76,5.8100000000000005,5.84,5.8500000000000005,5.86,5.87,5.89,225.81,225.93,225.94,225.94,225.94,225.93,225.93,225.94,226,29.400000000000002,29.07,28.900000000000002,28.71,28.52,28.330000000000002,28.14,27.96,27.580000000000002,N/A,N/A -2012,8,10,5,30,101240,100100,98990,83.74,0,6.6000000000000005,7.11,7.18,7.2,7.19,7.16,7.12,7.07,6.94,217.67000000000002,217.66,217.61,217.54,217.47,217.39000000000001,217.28,217.18,216.93,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.95,27.76,27.38,N/A,N/A -2012,8,10,6,30,101220,100090,98980,75.09,0,6.5200000000000005,7.08,7.18,7.22,7.24,7.25,7.25,7.24,7.23,219.24,219.35,219.4,219.43,219.46,219.5,219.53,219.57,219.67000000000002,29.76,29.44,29.28,29.080000000000002,28.900000000000002,28.71,28.52,28.34,27.97,N/A,N/A -2012,8,10,7,30,101230,100090,98990,74.52,0,7.78,8.49,8.63,8.700000000000001,8.75,8.77,8.790000000000001,8.8,8.82,220.74,220.66,220.62,220.6,220.6,220.61,220.63,220.66,220.72,29.78,29.47,29.3,29.11,28.92,28.73,28.54,28.35,27.97,N/A,N/A -2012,8,10,8,30,101250,100110,99010,74.17,0,7.15,7.8,7.930000000000001,8,8.05,8.08,8.11,8.13,8.17,223.11,222.83,222.73000000000002,222.64000000000001,222.59,222.55,222.52,222.51,222.5,29.85,29.55,29.39,29.2,29.02,28.830000000000002,28.650000000000002,28.47,28.1,N/A,N/A -2012,8,10,9,30,101230,100090,98990,74.76,0,7.67,8.36,8.5,8.56,8.6,8.620000000000001,8.63,8.63,8.620000000000001,230.95000000000002,230.98000000000002,230.97,230.93,230.88,230.82,230.75,230.68,230.51,29.67,29.35,29.19,28.990000000000002,28.8,28.61,28.41,28.23,27.84,N/A,N/A -2012,8,10,10,30,101240,100110,99000,75.83,0,6.92,7.57,7.7,7.7700000000000005,7.82,7.84,7.86,7.86,7.8500000000000005,231.35,231.51,231.55,231.58,231.59,231.61,231.61,231.6,231.58,29.63,29.310000000000002,29.150000000000002,28.95,28.76,28.57,28.38,28.19,27.810000000000002,N/A,N/A -2012,8,10,11,30,101280,100140,99030,76.49,0,6.7,7.28,7.41,7.47,7.51,7.54,7.55,7.5600000000000005,7.5600000000000005,235.85,235.82,235.77,235.71,235.65,235.6,235.54,235.48000000000002,235.37,29.53,29.21,29.04,28.84,28.66,28.47,28.27,28.09,27.71,N/A,N/A -2012,8,10,12,30,101270,100130,99030,74.82000000000001,0,6.82,7.45,7.58,7.66,7.71,7.74,7.76,7.78,7.79,245.62,245.32,245.18,245.04,244.9,244.77,244.64000000000001,244.51,244.27,29.63,29.330000000000002,29.16,28.97,28.78,28.59,28.400000000000002,28.21,27.830000000000002,N/A,N/A -2012,8,10,13,30,101310,100170,99070,73.48,0,6.41,6.99,7.1000000000000005,7.17,7.21,7.24,7.26,7.2700000000000005,7.28,248.28,248.23000000000002,248.17000000000002,248.1,248.04,247.98000000000002,247.93,247.87,247.76000000000002,29.77,29.46,29.3,29.1,28.91,28.72,28.52,28.34,27.96,N/A,N/A -2012,8,10,14,30,101350,100210,99110,72.77,0,6.1000000000000005,6.61,6.72,6.78,6.83,6.86,6.890000000000001,6.91,6.94,248.83,248.78,248.75,248.73000000000002,248.73000000000002,248.72,248.73000000000002,248.74,248.77,29.68,29.37,29.2,29.01,28.82,28.63,28.44,28.26,27.88,N/A,N/A -2012,8,10,15,30,101350,100210,99110,77.06,0,6.98,7.53,7.63,7.67,7.69,7.7,7.7,7.7,7.68,244.05,244.15,244.28,244.4,244.52,244.64000000000001,244.76,244.87,245.08,29.45,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A -2012,8,10,16,30,101360,100220,99120,73.46000000000001,0,6.16,6.69,6.8100000000000005,6.88,6.92,6.96,6.99,7.0200000000000005,7.07,233.82,233.89000000000001,233.93,233.97,234,234.02,234.05,234.09,234.16,29.740000000000002,29.42,29.26,29.060000000000002,28.88,28.69,28.5,28.32,27.94,N/A,N/A -2012,8,10,17,30,101330,100190,99080,75.02,0,6.78,7.34,7.44,7.48,7.51,7.5200000000000005,7.51,7.51,7.48,219.68,219.91,220.07,220.21,220.33,220.46,220.58,220.69,220.94,29.75,29.43,29.27,29.07,28.88,28.69,28.5,28.32,27.94,N/A,N/A -2012,8,10,18,30,101290,100150,99050,76.52,0,7.390000000000001,8.01,8.13,8.18,8.21,8.22,8.22,8.21,8.19,212.41,212.69,212.87,213.05,213.23000000000002,213.4,213.59,213.77,214.16,29.650000000000002,29.32,29.16,28.96,28.77,28.59,28.400000000000002,28.22,27.84,N/A,N/A -2012,8,10,19,30,101270,100140,99030,75.45,0,8.19,8.94,9.1,9.17,9.22,9.24,9.25,9.25,9.23,206.08,206.25,206.37,206.49,206.62,206.73000000000002,206.86,206.99,207.3,29.78,29.46,29.29,29.1,28.91,28.73,28.54,28.36,27.990000000000002,N/A,N/A -2012,8,10,20,30,101220,100080,98980,77.01,0,8.31,9.07,9.22,9.290000000000001,9.33,9.34,9.34,9.34,9.3,213.17000000000002,213.24,213.31,213.39000000000001,213.45000000000002,213.53,213.6,213.67000000000002,213.85,29.64,29.32,29.150000000000002,28.96,28.77,28.580000000000002,28.400000000000002,28.21,27.84,N/A,N/A -2012,8,10,21,30,101180,100040,98940,77.05,0,8.71,9.53,9.700000000000001,9.78,9.82,9.85,9.85,9.85,9.83,213.19,213.33,213.43,213.51,213.6,213.69,213.77,213.84,214.04,29.650000000000002,29.330000000000002,29.16,28.97,28.78,28.59,28.400000000000002,28.22,27.85,N/A,N/A -2012,8,10,22,30,101150,100010,98910,76.42,0,8.5,9.3,9.47,9.55,9.6,9.620000000000001,9.63,9.64,9.620000000000001,210.58,210.61,210.67000000000002,210.71,210.74,210.76,210.77,210.77,210.76,29.66,29.34,29.18,28.98,28.8,28.61,28.42,28.23,27.86,N/A,N/A -2012,8,10,23,30,101100,99960,98860,74.36,0,8.94,9.8,9.97,10.05,10.09,10.11,10.11,10.1,10.06,212.23000000000002,212.33,212.37,212.39000000000001,212.42000000000002,212.43,212.45000000000002,212.47,212.49,29.76,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.98,N/A,N/A -2012,8,11,0,30,101100,99960,98860,74.95,0,8.36,9.120000000000001,9.27,9.34,9.38,9.39,9.39,9.38,9.35,212.32,212.33,212.38,212.43,212.48000000000002,212.53,212.59,212.65,212.8,29.7,29.400000000000002,29.240000000000002,29.04,28.86,28.67,28.490000000000002,28.310000000000002,27.94,N/A,N/A -2012,8,11,1,30,101070,99930,98830,69.76,0,8.76,9.57,9.74,9.8,9.84,9.84,9.83,9.81,9.74,208.9,208.9,208.88,208.84,208.8,208.75,208.67000000000002,208.58,208.32,29.94,29.67,29.51,29.32,29.13,28.95,28.76,28.580000000000002,28.2,N/A,N/A -2012,8,11,2,30,101090,99960,98850,72.52,0,8.06,8.77,8.9,8.94,8.97,8.97,8.96,8.950000000000001,8.9,212.95000000000002,212.92000000000002,212.85,212.79,212.73000000000002,212.68,212.62,212.56,212.42000000000002,29.87,29.59,29.43,29.240000000000002,29.060000000000002,28.88,28.69,28.51,28.16,N/A,N/A -2012,8,11,3,30,101110,99970,98870,74.96000000000001,0,8.69,9.47,9.63,9.68,9.71,9.72,9.700000000000001,9.69,9.63,208.57,208.63,208.59,208.55,208.5,208.46,208.4,208.34,208.19,29.73,29.43,29.27,29.080000000000002,28.89,28.71,28.52,28.34,27.97,N/A,N/A -2012,8,11,4,30,101130,100000,98890,72.44,0,7.84,8.51,8.64,8.69,8.72,8.73,8.72,8.700000000000001,8.66,210.42000000000002,210.17000000000002,210.06,209.93,209.81,209.67000000000002,209.53,209.38,209.03,29.79,29.51,29.35,29.150000000000002,28.97,28.79,28.6,28.41,28.04,N/A,N/A -2012,8,11,5,30,101110,99980,98880,70.11,0,8.23,9.02,9.17,9.25,9.290000000000001,9.31,9.32,9.32,9.3,198.49,198.74,198.84,198.92000000000002,198.98000000000002,199.04,199.09,199.14000000000001,199.24,29.89,29.6,29.44,29.25,29.060000000000002,28.88,28.69,28.51,28.14,N/A,N/A -2012,8,11,6,30,101160,100030,98920,65.78,0,8.2,8.96,9.120000000000001,9.19,9.23,9.26,9.27,9.28,9.27,213.70000000000002,213.71,213.78,213.88,213.97,214.06,214.16,214.26,214.45000000000002,30.02,29.75,29.6,29.41,29.23,29.04,28.85,28.66,28.29,N/A,N/A -2012,8,11,7,30,101220,100080,98980,73.56,0,7.05,7.72,7.86,7.94,7.99,8.03,8.05,8.07,8.08,214.84,214.83,214.82,214.79,214.76,214.72,214.67000000000002,214.64000000000001,214.55,29.59,29.28,29.11,28.91,28.73,28.54,28.34,28.16,27.78,N/A,N/A -2012,8,11,8,30,101230,100090,98980,72.27,0,6.98,7.59,7.72,7.78,7.82,7.8500000000000005,7.86,7.88,7.88,221.27,221.22,221.21,221.21,221.21,221.21,221.20000000000002,221.20000000000002,221.21,29.560000000000002,29.25,29.09,28.89,28.7,28.52,28.330000000000002,28.14,27.76,N/A,N/A -2012,8,11,9,30,101220,100080,98980,76.60000000000001,0,6.99,7.61,7.73,7.8,7.8500000000000005,7.87,7.890000000000001,7.9,7.91,222.95000000000002,223.14000000000001,223.27,223.39000000000001,223.49,223.59,223.68,223.77,223.94,29.38,29.05,28.88,28.68,28.490000000000002,28.3,28.11,27.92,27.54,N/A,N/A -2012,8,11,10,30,101240,100100,99000,79.9,0,7.4,8.05,8.19,8.27,8.32,8.35,8.370000000000001,8.38,8.39,233.05,232.86,232.73000000000002,232.59,232.46,232.32,232.19,232.07,231.79,29.19,28.84,28.67,28.47,28.28,28.09,27.89,27.71,27.32,N/A,N/A -2012,8,11,11,30,101290,100150,99050,80.60000000000001,0,6.57,7.12,7.24,7.3100000000000005,7.3500000000000005,7.390000000000001,7.41,7.43,7.45,236.83,237.16,237.23000000000002,237.27,237.3,237.31,237.32,237.31,237.28,29.150000000000002,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A -2012,8,11,12,30,101320,100180,99080,79.96000000000001,0,5.74,6.24,6.3500000000000005,6.43,6.48,6.5200000000000005,6.55,6.57,6.6000000000000005,243.88,243.85,243.89000000000001,243.93,243.96,244,244.04,244.07,244.15,29.150000000000002,28.8,28.62,28.42,28.22,28.03,27.830000000000002,27.64,27.26,N/A,N/A -2012,8,11,13,30,101340,100200,99090,78.10000000000001,0,6.38,6.82,6.890000000000001,6.91,6.91,6.9,6.88,6.86,6.8,256.87,257.03000000000003,257.12,257.18,257.25,257.31,257.38,257.45,257.62,29.19,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.330000000000002,N/A,N/A -2012,8,11,14,30,101380,100240,99140,83.09,0,5.53,5.89,5.95,5.97,5.98,5.98,5.98,5.98,5.97,271.59000000000003,270.69,270.11,269.52,269,268.5,268.01,267.57,266.69,29,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.7,27.52,27.14,N/A,N/A -2012,8,11,15,30,101400,100260,99150,81.05,0,5.2,5.53,5.59,5.62,5.63,5.64,5.64,5.63,5.62,266.12,265.73,265.52,265.31,265.12,264.94,264.77,264.6,264.26,28.96,28.61,28.44,28.240000000000002,28.060000000000002,27.87,27.68,27.5,27.13,N/A,N/A -2012,8,11,16,30,101410,100270,99160,78.88,0,4.5200000000000005,4.84,4.91,4.95,4.98,5.01,5.04,5.0600000000000005,5.11,245.66,245.45000000000002,245.48000000000002,245.48000000000002,245.46,245.45000000000002,245.43,245.41,245.36,29.09,28.75,28.580000000000002,28.38,28.2,28.01,27.82,27.64,27.28,N/A,N/A -2012,8,11,17,30,101370,100230,99120,79.57000000000001,0,4.43,4.7,4.75,4.7700000000000005,4.79,4.79,4.78,4.7700000000000005,4.75,234.1,234.51,234.68,234.88,235.1,235.33,235.63,235.96,236.92000000000002,29.23,28.89,28.72,28.53,28.35,28.17,27.990000000000002,27.810000000000002,27.48,N/A,N/A -2012,8,11,18,30,101350,100210,99110,75.78,0,3.48,3.65,3.67,3.66,3.64,3.62,3.59,3.5500000000000003,3.45,215.43,215.89000000000001,216.16,216.45000000000002,216.74,217.04,217.38,217.72,218.64000000000001,29.64,29.310000000000002,29.150000000000002,28.95,28.77,28.59,28.41,28.23,27.89,N/A,N/A -2012,8,11,19,30,101340,100200,99100,76.61,0,3.63,3.75,3.74,3.69,3.64,3.59,3.52,3.46,3.29,213.48000000000002,213.42000000000002,213.44,213.45000000000002,213.44,213.42000000000002,213.39000000000001,213.36,213.21,29.73,29.39,29.23,29.03,28.85,28.66,28.48,28.3,27.95,N/A,N/A -2012,8,11,20,30,101330,100200,99090,77.47,0,4.61,4.87,4.89,4.88,4.86,4.84,4.8,4.7700000000000005,4.69,182.12,181.98,181.77,181.53,181.3,181.05,180.76,180.48,179.76,29.8,29.47,29.3,29.11,28.92,28.740000000000002,28.55,28.37,28,N/A,N/A -2012,8,11,21,30,101260,100120,99020,79.15,0,6.34,6.8,6.87,6.88,6.88,6.87,6.8500000000000005,6.82,6.75,195.11,195.07,195.02,194.95000000000002,194.9,194.84,194.77,194.71,194.54,29.63,29.310000000000002,29.14,28.94,28.76,28.57,28.38,28.19,27.830000000000002,N/A,N/A -2012,8,11,22,30,101240,100100,98990,79.83,0,6.48,6.97,7.0600000000000005,7.08,7.09,7.08,7.0600000000000005,7.04,6.97,206.03,206.02,205.94,205.84,205.75,205.65,205.54,205.43,205.16,29.54,29.22,29.060000000000002,28.86,28.67,28.48,28.3,28.11,27.740000000000002,N/A,N/A -2012,8,11,23,30,101200,100060,98960,81.32000000000001,0,6.890000000000001,7.44,7.54,7.57,7.58,7.58,7.57,7.55,7.49,209.75,209.68,209.65,209.61,209.57,209.52,209.46,209.4,209.26,29.42,29.09,28.92,28.72,28.54,28.35,28.150000000000002,27.97,27.59,N/A,N/A -2012,8,12,0,30,101250,100110,99010,80.88,0,6.16,6.640000000000001,6.72,6.75,6.76,6.76,6.75,6.74,6.7,200.85,200.82,200.76,200.68,200.59,200.51,200.39000000000001,200.28,199.98000000000002,29.400000000000002,29.07,28.91,28.71,28.52,28.34,28.150000000000002,27.97,27.6,N/A,N/A -2012,8,12,1,30,101210,100070,98960,79.59,0,6.5600000000000005,7.07,7.16,7.18,7.19,7.19,7.17,7.140000000000001,7.08,209.51,209.49,209.41,209.32,209.22,209.13,209.02,208.9,208.6,29.39,29.07,28.900000000000002,28.71,28.52,28.34,28.150000000000002,27.97,27.61,N/A,N/A -2012,8,12,2,30,101280,100140,99030,80.71000000000001,0,6.23,6.72,6.8100000000000005,6.8500000000000005,6.86,6.87,6.87,6.86,6.84,204.77,204.65,204.6,204.54,204.47,204.39000000000001,204.3,204.20000000000002,203.97,29.34,29.01,28.84,28.64,28.46,28.27,28.080000000000002,27.900000000000002,27.53,N/A,N/A -2012,8,12,3,30,101270,100130,99030,81.7,0,6.95,7.51,7.61,7.66,7.68,7.69,7.69,7.68,7.65,199.75,199.66,199.58,199.51,199.45000000000002,199.38,199.31,199.23000000000002,199.08,29.240000000000002,28.900000000000002,28.73,28.53,28.35,28.16,27.97,27.79,27.42,N/A,N/A -2012,8,12,4,30,101240,100100,98990,79.89,0,6.58,7.12,7.23,7.28,7.3100000000000005,7.33,7.34,7.34,7.34,202.26,202.16,202.13,202.1,202.07,202.03,201.99,201.95000000000002,201.84,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.97,27.78,27.41,N/A,N/A -2012,8,12,5,30,101270,100130,99030,83.14,0,6.92,7.48,7.59,7.63,7.66,7.67,7.67,7.66,7.640000000000001,200.89000000000001,200.9,200.89000000000001,200.88,200.87,200.85,200.83,200.81,200.75,29.060000000000002,28.72,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A -2012,8,12,6,30,101290,100150,99050,81.03,0,6.24,6.72,6.8100000000000005,6.86,6.890000000000001,6.9,6.92,6.92,6.92,192.34,192.38,192.48000000000002,192.57,192.65,192.73000000000002,192.82,192.89000000000001,193.04,29.13,28.76,28.580000000000002,28.38,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A -2012,8,12,7,30,101360,100220,99110,82.51,0,6.29,6.78,6.88,6.94,6.98,7,7.0200000000000005,7.03,7.04,187.1,186.94,186.89000000000001,186.83,186.78,186.74,186.70000000000002,186.65,186.57,29.1,28.73,28.55,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A -2012,8,12,8,30,101360,100220,99120,76.38,0,6.92,7.32,7.37,7.37,7.3500000000000005,7.33,7.3,7.2700000000000005,7.21,190.68,191.20000000000002,191.46,191.72,191.94,192.15,192.32,192.47,192.71,29.28,28.93,28.76,28.560000000000002,28.38,28.2,28.01,27.830000000000002,27.46,N/A,N/A -2012,8,12,9,30,101410,100270,99160,80.37,0,5.5600000000000005,5.95,6.03,6.0600000000000005,6.08,6.09,6.09,6.09,6.09,197.14000000000001,197.11,197.16,197.23000000000002,197.3,197.38,197.45000000000002,197.53,197.68,29.09,28.72,28.55,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A -2012,8,12,10,30,101420,100280,99170,78.53,0,5.19,5.57,5.65,5.69,5.72,5.74,5.76,5.76,5.78,197.91,198.46,198.72,198.97,199.20000000000002,199.41,199.62,199.8,200.18,29.17,28.810000000000002,28.64,28.44,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A -2012,8,12,11,30,101430,100290,99190,77.74,0,4.89,5.2,5.26,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3100000000000005,5.3100000000000005,210.86,211.21,211.47,211.74,211.99,212.23000000000002,212.48000000000002,212.71,213.21,29.22,28.86,28.69,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A -2012,8,12,12,30,101460,100320,99220,79.25,0,4.59,4.9,4.95,4.97,4.98,4.98,4.98,4.97,4.95,225.11,225.11,225.06,225.01,224.96,224.9,224.85,224.79,224.69,29.21,28.85,28.68,28.48,28.28,28.09,27.89,27.71,27.32,N/A,N/A -2012,8,12,13,30,101470,100330,99220,77.69,0,3.73,3.99,4.05,4.08,4.11,4.13,4.15,4.16,4.19,227.06,227.6,227.93,228.26,228.55,228.81,229.07,229.31,229.79,29.330000000000002,28.98,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A -2012,8,12,14,30,101470,100330,99220,80.62,0,2.59,2.73,2.74,2.75,2.75,2.75,2.75,2.75,2.75,258.63,257.5,256.85,256.13,255.46,254.79,254.12,253.47,252.13,29.240000000000002,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,8,12,15,30,101590,100440,99330,82.22,2.6,3.13,3.22,3.2,3.18,3.16,3.14,3.13,3.13,3.16,260.78000000000003,261.06,261.1,261.04,260.91,260.7,260.41,260.08,259.07,28.740000000000002,28.39,28.23,28.04,27.87,27.7,27.53,27.37,27.04,N/A,N/A -2012,8,12,16,30,101520,100370,99270,77.05,0,3.59,3.7800000000000002,3.81,3.8200000000000003,3.83,3.83,3.83,3.83,3.8200000000000003,250.42000000000002,251.02,251.14000000000001,251.28,251.41,251.54,251.68,251.8,252.08,29.39,29.04,28.86,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A -2012,8,12,17,30,101540,100400,99290,75.54,0,3.5300000000000002,3.7,3.73,3.74,3.75,3.74,3.74,3.73,3.71,214.89000000000001,214.58,214.58,214.55,214.52,214.48000000000002,214.44,214.4,214.32,29.490000000000002,29.13,28.96,28.76,28.57,28.37,28.18,27.990000000000002,27.61,N/A,N/A -2012,8,12,18,30,101580,100440,99330,80.44,0,4.79,5.04,5.07,5.07,5.07,5.0600000000000005,5.05,5.05,5.04,162.55,164.56,165.74,167,168.19,169.38,170.63,171.85,174.56,28.72,28.35,28.17,27.98,27.8,27.62,27.43,27.26,26.900000000000002,N/A,N/A -2012,8,12,19,30,101520,100380,99270,81.14,0,4.16,4.36,4.39,4.39,4.39,4.38,4.36,4.3500000000000005,4.3100000000000005,173.8,174.44,174.89000000000001,175.37,175.83,176.31,176.85,177.39000000000001,178.70000000000002,28.990000000000002,28.62,28.44,28.240000000000002,28.05,27.87,27.68,27.490000000000002,27.12,N/A,N/A -2012,8,12,20,30,101460,100310,99210,80.86,0,4.86,5.17,5.23,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.25,188.48,188.67000000000002,188.87,189.05,189.22,189.39000000000001,189.57,189.75,190.12,29.11,28.740000000000002,28.560000000000002,28.36,28.17,27.98,27.79,27.6,27.22,N/A,N/A -2012,8,12,21,30,101450,100310,99200,85.41,0,5.97,6.3100000000000005,6.3500000000000005,6.3500000000000005,6.33,6.3,6.25,6.21,6.09,191.29,191.44,191.46,191.47,191.49,191.5,191.51,191.51,191.52,28.41,28,27.830000000000002,27.62,27.44,27.25,27.07,26.89,26.53,N/A,N/A -2012,8,12,22,30,101420,100280,99180,80.79,0,5.2,5.53,5.59,5.61,5.62,5.62,5.61,5.6000000000000005,5.57,193.69,193.79,193.85,193.9,193.95000000000002,193.99,194.02,194.06,194.12,28.86,28.490000000000002,28.310000000000002,28.11,27.92,27.73,27.54,27.36,26.98,N/A,N/A -2012,8,12,23,30,101400,100260,99150,79.41,0,4.87,5.19,5.25,5.28,5.29,5.3100000000000005,5.3100000000000005,5.32,5.33,196.97,197.03,197.11,197.18,197.25,197.31,197.37,197.42000000000002,197.54,28.92,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.42,27.05,N/A,N/A -2012,8,13,0,30,101380,100240,99130,78.62,0,5.69,6.0600000000000005,6.13,6.15,6.16,6.16,6.16,6.15,6.13,178.17000000000002,178.21,178.3,178.37,178.45000000000002,178.51,178.58,178.65,178.78,29.02,28.650000000000002,28.48,28.28,28.080000000000002,27.900000000000002,27.71,27.52,27.150000000000002,N/A,N/A -2012,8,13,1,30,101350,100210,99110,75.83,0,7,7.58,7.7,7.76,7.8100000000000005,7.83,7.8500000000000005,7.86,7.87,172.81,172.94,172.97,173.01,173.03,173.06,173.09,173.11,173.17000000000002,29.310000000000002,28.95,28.78,28.580000000000002,28.39,28.2,28.01,27.82,27.44,N/A,N/A -2012,8,13,2,30,101350,100210,99100,75.35000000000001,0,6.79,7.33,7.43,7.49,7.5200000000000005,7.54,7.5600000000000005,7.57,7.57,175.75,175.94,176.02,176.11,176.18,176.26,176.34,176.42000000000002,176.6,29.36,29,28.830000000000002,28.63,28.44,28.26,28.060000000000002,27.88,27.5,N/A,N/A -2012,8,13,3,30,101370,100230,99130,76.74,0,7.23,7.83,7.96,8.03,8.07,8.1,8.120000000000001,8.14,8.16,182.5,182.43,182.42000000000002,182.42000000000002,182.42000000000002,182.43,182.43,182.44,182.46,29.26,28.900000000000002,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,8,13,4,30,101410,100270,99160,78.5,0,7.46,8.1,8.25,8.33,8.39,8.43,8.46,8.48,8.51,182.39000000000001,182.58,182.65,182.70000000000002,182.74,182.76,182.8,182.82,182.86,29.27,28.91,28.73,28.52,28.330000000000002,28.14,27.94,27.76,27.37,N/A,N/A -2012,8,13,5,30,101430,100290,99180,77.45,0,7.42,8.09,8.24,8.33,8.4,8.45,8.48,8.51,8.56,187.11,187.14000000000001,187.16,187.18,187.20000000000002,187.22,187.24,187.26,187.3,29.35,28.990000000000002,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A -2012,8,13,6,30,101520,100380,99270,80.69,0,7.72,8.41,8.57,8.66,8.73,8.77,8.8,8.82,8.84,192.02,192.11,192.11,192.09,192.06,192.02,191.98000000000002,191.94,191.85,29.310000000000002,28.93,28.75,28.55,28.36,28.16,27.97,27.78,27.39,N/A,N/A -2012,8,13,7,30,101550,100410,99300,78.92,0,6.1000000000000005,6.59,6.7,6.7700000000000005,6.82,6.86,6.890000000000001,6.92,6.96,203.34,202.83,202.73000000000002,202.65,202.59,202.56,202.53,202.52,202.52,29.490000000000002,29.14,28.96,28.77,28.580000000000002,28.38,28.19,28.01,27.62,N/A,N/A -2012,8,13,8,30,101550,100410,99310,79.28,0,6.3500000000000005,6.92,7.08,7.17,7.25,7.3100000000000005,7.3500000000000005,7.4,7.47,213.14000000000001,212.25,211.73000000000002,211.27,210.88,210.54,210.21,209.92000000000002,209.37,29.52,29.17,29,28.8,28.61,28.42,28.23,28.05,27.67,N/A,N/A -2012,8,13,9,30,101550,100410,99300,78.27,0,6.93,7.53,7.67,7.75,7.8,7.84,7.87,7.890000000000001,7.930000000000001,202.01,201.92000000000002,201.83,201.76,201.69,201.63,201.58,201.53,201.44,29.560000000000002,29.2,29.02,28.82,28.63,28.44,28.240000000000002,28.05,27.67,N/A,N/A -2012,8,13,10,30,101580,100440,99340,78.11,0,6.1000000000000005,6.5600000000000005,6.65,6.7,6.74,6.76,6.78,6.79,6.8,216.88,217.01,217.09,217.19,217.29,217.39000000000001,217.49,217.6,217.81,29.51,29.16,28.98,28.78,28.59,28.400000000000002,28.21,28.02,27.64,N/A,N/A -2012,8,13,11,30,101570,100430,99330,78.66,0,5.94,6.48,6.61,6.69,6.75,6.8,6.83,6.86,6.9,210.43,210.95000000000002,211.17000000000002,211.38,211.55,211.72,211.89000000000001,212.04,212.33,29.580000000000002,29.23,29.05,28.85,28.66,28.47,28.27,28.080000000000002,27.7,N/A,N/A -2012,8,13,12,30,101600,100460,99350,76.64,0,6.63,7.2,7.32,7.390000000000001,7.43,7.46,7.48,7.49,7.5,231.22,230.69,230.37,230.06,229.8,229.54,229.31,229.08,228.63,29.71,29.36,29.18,28.98,28.79,28.59,28.400000000000002,28.21,27.830000000000002,N/A,N/A -2012,8,13,13,30,101620,100470,99370,73.99,0,6.66,7.19,7.29,7.34,7.37,7.390000000000001,7.390000000000001,7.4,7.390000000000001,221.18,221.18,221.13,221.07,221.02,220.97,220.91,220.86,220.76,29.73,29.38,29.21,29.02,28.830000000000002,28.63,28.44,28.25,27.87,N/A,N/A -2012,8,13,14,30,101640,100490,99390,72.47,0,6.640000000000001,7.19,7.3,7.36,7.4,7.43,7.45,7.46,7.49,216.38,216.74,216.98000000000002,217.22,217.44,217.65,217.85,218.05,218.45000000000002,29.810000000000002,29.48,29.310000000000002,29.11,28.92,28.73,28.53,28.34,27.96,N/A,N/A -2012,8,13,15,30,101660,100520,99410,68.37,0,7.42,8.040000000000001,8.16,8.22,8.26,8.290000000000001,8.31,8.33,8.34,225.48000000000002,225.64000000000001,225.75,225.87,225.98000000000002,226.09,226.20000000000002,226.3,226.49,29.96,29.63,29.46,29.27,29.07,28.88,28.69,28.5,28.11,N/A,N/A -2012,8,13,16,30,101700,100550,99440,74.15,0,6.38,6.9,7.03,7.12,7.19,7.24,7.28,7.32,7.390000000000001,241.51,240.22,239.37,238.54,237.84,237.23000000000002,236.66,236.13,235.19,29.67,29.34,29.18,28.98,28.8,28.62,28.43,28.25,27.88,N/A,N/A -2012,8,13,17,30,101670,100520,99420,70.19,0,6.24,6.79,6.92,7,7.07,7.11,7.15,7.18,7.22,230.46,230.18,230.02,229.88,229.76,229.64000000000001,229.53,229.43,229.24,29.87,29.53,29.36,29.16,28.98,28.78,28.59,28.400000000000002,28.02,N/A,N/A -2012,8,13,18,30,101660,100520,99410,70.36,0,5.99,6.5,6.61,6.68,6.73,6.7700000000000005,6.79,6.82,6.8500000000000005,217.99,218.12,218.20000000000002,218.24,218.28,218.32,218.34,218.35,218.39000000000001,29.92,29.59,29.42,29.21,29.02,28.830000000000002,28.64,28.45,28.07,N/A,N/A -2012,8,13,19,30,101610,100470,99360,69.56,0,6.71,7.26,7.36,7.41,7.43,7.45,7.46,7.46,7.45,208.58,208.49,208.49,208.47,208.43,208.4,208.35,208.3,208.18,29.95,29.62,29.45,29.26,29.07,28.88,28.69,28.51,28.14,N/A,N/A -2012,8,13,20,30,101560,100420,99310,69.93,0,7,7.59,7.7,7.75,7.7700000000000005,7.79,7.79,7.78,7.76,205.88,205.65,205.56,205.46,205.35,205.25,205.14000000000001,205.04,204.8,29.95,29.62,29.45,29.26,29.07,28.88,28.69,28.51,28.14,N/A,N/A -2012,8,13,21,30,101530,100390,99280,68.93,0,7.22,7.84,7.96,8.01,8.040000000000001,8.05,8.05,8.05,8.02,197.26,197.08,197.03,196.97,196.9,196.84,196.78,196.71,196.57,30.01,29.7,29.53,29.330000000000002,29.150000000000002,28.96,28.77,28.580000000000002,28.21,N/A,N/A -2012,8,13,22,30,101530,100390,99290,73.04,0,6.78,7.36,7.5,7.57,7.62,7.640000000000001,7.66,7.67,7.68,192.12,192.17000000000002,192.18,192.17000000000002,192.15,192.14000000000001,192.12,192.1,192.06,29.85,29.52,29.36,29.16,28.97,28.78,28.59,28.400000000000002,28.02,N/A,N/A -2012,8,13,23,30,101470,100330,99220,74.54,0,7.83,8.51,8.65,8.73,8.78,8.81,8.82,8.84,8.84,194,193.96,193.94,193.91,193.89000000000001,193.86,193.83,193.8,193.74,29.79,29.45,29.27,29.080000000000002,28.89,28.69,28.5,28.310000000000002,27.93,N/A,N/A -2012,8,14,0,30,101400,100260,99150,70.54,0,8.53,9.31,9.47,9.55,9.6,9.63,9.65,9.66,9.66,196.48000000000002,196.46,196.44,196.41,196.4,196.38,196.35,196.33,196.3,29.89,29.560000000000002,29.39,29.2,29.01,28.82,28.63,28.45,28.080000000000002,N/A,N/A -2012,8,14,1,30,101400,100260,99150,72.82000000000001,0,8.55,9.31,9.47,9.540000000000001,9.58,9.6,9.6,9.6,9.57,197.09,196.98000000000002,196.89000000000001,196.82,196.74,196.67000000000002,196.6,196.53,196.36,29.78,29.44,29.27,29.080000000000002,28.89,28.7,28.51,28.330000000000002,27.95,N/A,N/A -2012,8,14,2,30,101450,100310,99210,69.77,0,7.98,8.71,8.870000000000001,8.96,9.03,9.07,9.1,9.120000000000001,9.15,193.15,193.58,193.78,193.96,194.12,194.26,194.39000000000001,194.52,194.76,29.85,29.52,29.35,29.150000000000002,28.96,28.77,28.580000000000002,28.39,28.01,N/A,N/A -2012,8,14,3,30,101460,100320,99220,70.71000000000001,0,8,8.69,8.83,8.9,8.94,8.950000000000001,8.96,8.96,8.94,199.92000000000002,199.91,199.86,199.78,199.71,199.63,199.56,199.48000000000002,199.33,29.88,29.55,29.38,29.19,29,28.810000000000002,28.62,28.43,28.05,N/A,N/A -2012,8,14,4,30,101430,100290,99190,67.73,0,8.23,8.99,9.15,9.22,9.27,9.290000000000001,9.3,9.31,9.290000000000001,202.41,202.53,202.58,202.62,202.66,202.69,202.72,202.75,202.79,30,29.69,29.52,29.32,29.14,28.95,28.75,28.57,28.19,N/A,N/A -2012,8,14,5,30,101430,100290,99190,69.66,0,8.25,9.03,9.21,9.3,9.370000000000001,9.41,9.450000000000001,9.47,9.51,206.82,206.92000000000002,206.98000000000002,207.06,207.14000000000001,207.21,207.29,207.37,207.53,29.89,29.560000000000002,29.400000000000002,29.2,29.01,28.82,28.63,28.44,28.07,N/A,N/A -2012,8,14,6,30,101460,100320,99220,67.23,0,8.28,9.08,9.26,9.35,9.41,9.44,9.46,9.47,9.47,218.13,218.1,218.04,217.96,217.88,217.81,217.72,217.65,217.48000000000002,30.09,29.810000000000002,29.650000000000002,29.46,29.27,29.09,28.900000000000002,28.71,28.330000000000002,N/A,N/A -2012,8,14,7,30,101480,100340,99230,72.93,0,6.98,7.62,7.75,7.8100000000000005,7.86,7.890000000000001,7.92,7.930000000000001,7.97,220.19,219.97,219.89000000000001,219.81,219.74,219.67000000000002,219.6,219.52,219.4,29.830000000000002,29.51,29.34,29.150000000000002,28.96,28.77,28.580000000000002,28.400000000000002,28.04,N/A,N/A -2012,8,14,8,30,101470,100330,99220,75.45,0,6.82,7.45,7.6000000000000005,7.7,7.7700000000000005,7.83,7.890000000000001,7.930000000000001,8.02,219.25,219.33,219.35,219.4,219.43,219.47,219.51,219.55,219.63,29.63,29.310000000000002,29.14,28.95,28.76,28.57,28.38,28.2,27.830000000000002,N/A,N/A -2012,8,14,9,30,101470,100330,99220,79.72,0,6.95,7.47,7.6000000000000005,7.66,7.71,7.75,7.7700000000000005,7.8,7.83,225.43,225.67000000000002,225.73000000000002,225.77,225.81,225.85,225.88,225.91,225.98000000000002,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.89,27.51,N/A,N/A -2012,8,14,10,30,101510,100360,99260,80.16,0,7.79,8.52,8.68,8.77,8.83,8.86,8.89,8.9,8.91,227.89000000000001,227.9,227.87,227.83,227.78,227.73000000000002,227.67000000000002,227.61,227.48000000000002,29.46,29.11,28.93,28.73,28.54,28.34,28.150000000000002,27.96,27.580000000000002,N/A,N/A -2012,8,14,11,30,101520,100370,99270,80.31,0,6.12,6.65,6.78,6.87,6.94,7,7.05,7.09,7.16,233.82,233.57,233.41,233.26,233.14000000000001,233.03,232.93,232.84,232.66,29.39,29.05,28.88,28.68,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A -2012,8,14,12,30,101530,100390,99290,78.93,0,6.82,7.3500000000000005,7.47,7.54,7.58,7.62,7.640000000000001,7.67,7.71,241.04,240.84,240.73000000000002,240.62,240.51,240.4,240.29,240.19,239.98000000000002,29.37,29.03,28.86,28.66,28.48,28.29,28.1,27.92,27.54,N/A,N/A -2012,8,14,13,30,101570,100430,99320,79.89,0,6.36,6.9,7.0200000000000005,7.08,7.12,7.15,7.17,7.18,7.19,232.93,232.79,232.8,232.81,232.83,232.85,232.87,232.9,232.94,29.35,29,28.830000000000002,28.62,28.43,28.240000000000002,28.04,27.85,27.47,N/A,N/A -2012,8,14,14,30,101580,100440,99330,74.21000000000001,0,6.63,7.21,7.34,7.41,7.46,7.49,7.51,7.53,7.5600000000000005,239.70000000000002,239.77,239.78,239.78,239.77,239.76,239.73000000000002,239.71,239.65,29.62,29.29,29.12,28.92,28.73,28.54,28.35,28.16,27.78,N/A,N/A -2012,8,14,15,30,101560,100420,99320,77.01,0,6.74,7.29,7.4,7.45,7.48,7.5,7.5,7.5,7.49,241.53,241.4,241.39000000000001,241.4,241.41,241.42000000000002,241.44,241.46,241.5,29.52,29.17,29,28.8,28.61,28.41,28.22,28.03,27.650000000000002,N/A,N/A -2012,8,14,16,30,101580,100430,99330,78.59,0,5.22,5.6000000000000005,5.69,5.73,5.76,5.78,5.79,5.8,5.82,234.94,234.92000000000002,234.94,234.96,234.97,234.98000000000002,234.99,235.01,235.03,29.47,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A -2012,8,14,17,30,101550,100400,99300,79.13,0,5.8,6.25,6.3500000000000005,6.41,6.45,6.47,6.49,6.51,6.54,217.07,217.23000000000002,217.34,217.44,217.53,217.61,217.70000000000002,217.77,217.94,29.46,29.11,28.94,28.73,28.55,28.36,28.16,27.98,27.6,N/A,N/A -2012,8,14,18,30,101510,100370,99260,78.17,0,6,6.49,6.6000000000000005,6.67,6.73,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.92,205.32,205.82,206.07,206.32,206.57,206.81,207.08,207.33,207.93,29.63,29.29,29.12,28.93,28.740000000000002,28.560000000000002,28.37,28.19,27.830000000000002,N/A,N/A -2012,8,14,19,30,101500,100360,99260,78.86,0,7.61,8.28,8.44,8.52,8.58,8.63,8.66,8.69,8.73,203.88,204.08,204.24,204.38,204.51,204.64000000000001,204.76,204.88,205.13,29.62,29.27,29.1,28.900000000000002,28.72,28.53,28.330000000000002,28.150000000000002,27.77,N/A,N/A -2012,8,14,20,30,101450,100310,99210,79.35000000000001,0,8.35,9.1,9.26,9.34,9.4,9.43,9.450000000000001,9.46,9.46,211.97,212.12,212.17000000000002,212.22,212.27,212.32,212.37,212.42000000000002,212.53,29.5,29.150000000000002,28.98,28.78,28.59,28.400000000000002,28.21,28.02,27.64,N/A,N/A -2012,8,14,21,30,101390,100250,99150,81.29,0,8.23,8.98,9.14,9.23,9.28,9.32,9.34,9.35,9.35,210.70000000000002,210.59,210.58,210.57,210.55,210.54,210.53,210.51,210.48000000000002,29.39,29.03,28.86,28.66,28.47,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A -2012,8,14,22,30,101390,100250,99150,79.72,0,8.290000000000001,9.03,9.200000000000001,9.290000000000001,9.35,9.39,9.41,9.43,9.44,206.25,206.32,206.35,206.35,206.36,206.36,206.36,206.35,206.34,29.37,29.01,28.84,28.63,28.44,28.25,28.060000000000002,27.87,27.490000000000002,N/A,N/A -2012,8,14,23,30,101360,100220,99110,75.46000000000001,0,8.52,9.27,9.43,9.51,9.55,9.58,9.59,9.59,9.58,206.14000000000001,206.21,206.24,206.25,206.26,206.27,206.27,206.27,206.26,29.47,29.13,28.95,28.75,28.560000000000002,28.37,28.18,28,27.62,N/A,N/A -2012,8,15,0,30,101330,100190,99080,66.24,0,8.56,9.32,9.49,9.58,9.63,9.67,9.69,9.700000000000001,9.72,206.19,206.24,206.35,206.48000000000002,206.6,206.71,206.83,206.95000000000002,207.18,29.82,29.52,29.35,29.16,28.98,28.79,28.59,28.41,28.04,N/A,N/A -2012,8,15,1,30,101290,100140,99040,66.75,0,8.1,8.84,8.99,9.08,9.14,9.18,9.21,9.23,9.27,203.97,204.02,204.12,204.24,204.34,204.45000000000002,204.57,204.67000000000002,204.92000000000002,29.71,29.400000000000002,29.240000000000002,29.04,28.86,28.67,28.48,28.3,27.93,N/A,N/A -2012,8,15,2,30,101300,100160,99050,73.60000000000001,0,8.05,8.77,8.94,9.02,9.08,9.120000000000001,9.14,9.16,9.18,205.41,205.49,205.53,205.56,205.59,205.63,205.66,205.70000000000002,205.78,29.34,28.990000000000002,28.810000000000002,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A -2012,8,15,3,30,101310,100170,99070,76.76,0,7.6000000000000005,8.26,8.4,8.48,8.53,8.56,8.58,8.59,8.6,203.92000000000002,204.06,204.15,204.26,204.36,204.45000000000002,204.55,204.64000000000001,204.84,29.240000000000002,28.88,28.71,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.36,N/A,N/A -2012,8,15,4,30,101320,100180,99070,74.68,0,8.040000000000001,8.74,8.91,8.98,9.040000000000001,9.07,9.09,9.11,9.120000000000001,198.92000000000002,199,199.01,199.03,199.05,199.06,199.07,199.09,199.12,29.34,28.98,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A -2012,8,15,5,30,101300,100160,99050,80.48,0,7.91,8.63,8.8,8.9,8.97,9.01,9.05,9.08,9.11,195.99,195.95000000000002,195.96,195.98000000000002,196,196.02,196.06,196.08,196.16,29.18,28.810000000000002,28.63,28.43,28.23,28.04,27.85,27.66,27.27,N/A,N/A -2012,8,15,6,30,101260,100130,99020,81.82000000000001,0,8.18,8.94,9.120000000000001,9.22,9.290000000000001,9.34,9.370000000000001,9.39,9.43,199.27,199.39000000000001,199.45000000000002,199.5,199.55,199.61,199.66,199.71,199.83,29.12,28.77,28.59,28.39,28.2,28.01,27.82,27.63,27.25,N/A,N/A -2012,8,15,7,30,101290,100160,99050,82.81,0,8.51,9.32,9.52,9.63,9.71,9.76,9.81,9.84,9.88,200,199.98000000000002,199.97,199.97,199.97,199.98000000000002,199.99,200,200.04,29.18,28.830000000000002,28.66,28.45,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,15,8,30,101300,100170,99060,78.72,0,8.39,9.24,9.44,9.55,9.63,9.69,9.73,9.76,9.790000000000001,206.22,206.24,206.24,206.23000000000002,206.22,206.20000000000002,206.19,206.17000000000002,206.13,29.44,29.11,28.94,28.740000000000002,28.55,28.36,28.17,27.98,27.6,N/A,N/A -2012,8,15,9,30,101330,100190,99090,80.49,0,8.46,9.26,9.450000000000001,9.55,9.620000000000001,9.66,9.700000000000001,9.72,9.74,207.12,207.32,207.42000000000002,207.51,207.59,207.66,207.72,207.8,207.93,29.25,28.91,28.73,28.53,28.34,28.150000000000002,27.96,27.77,27.39,N/A,N/A -2012,8,15,10,30,101350,100210,99100,82.29,0,7.6000000000000005,8.3,8.47,8.58,8.66,8.72,8.76,8.790000000000001,8.84,210.88,210.69,210.65,210.62,210.6,210.6,210.6,210.6,210.63,29.17,28.82,28.64,28.44,28.25,28.05,27.86,27.67,27.28,N/A,N/A -2012,8,15,11,30,101380,100240,99130,81.47,0,7.21,7.86,8.02,8.11,8.19,8.24,8.28,8.32,8.370000000000001,214.95000000000002,214.76,214.58,214.41,214.26,214.11,213.96,213.82,213.54,29.17,28.82,28.650000000000002,28.45,28.26,28.07,27.87,27.69,27.310000000000002,N/A,N/A -2012,8,15,12,30,101380,100240,99130,79.51,0,7.95,8.69,8.870000000000001,8.96,9.03,9.07,9.1,9.13,9.15,221.78,221.59,221.46,221.32,221.19,221.06,220.93,220.8,220.54,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A -2012,8,15,13,30,101430,100290,99190,75.76,0,7.8100000000000005,8.45,8.59,8.65,8.69,8.72,8.73,8.74,8.75,218.61,218.55,218.52,218.46,218.41,218.35,218.29,218.23000000000002,218.11,29.38,29.060000000000002,28.900000000000002,28.7,28.51,28.32,28.13,27.95,27.57,N/A,N/A -2012,8,15,14,30,101450,100310,99200,76.5,0,6.21,6.79,6.93,7.0200000000000005,7.08,7.13,7.17,7.2,7.25,217.06,217.33,217.42000000000002,217.51,217.6,217.67000000000002,217.75,217.82,217.98000000000002,29.400000000000002,29.07,28.900000000000002,28.7,28.51,28.32,28.12,27.93,27.55,N/A,N/A -2012,8,15,15,30,101460,100320,99220,77.26,0,6.47,6.99,7.09,7.13,7.15,7.16,7.16,7.15,7.13,209.31,209.6,209.75,209.93,210.09,210.26,210.43,210.59,210.92000000000002,29.38,29.04,28.87,28.67,28.48,28.3,28.1,27.91,27.54,N/A,N/A -2012,8,15,16,30,101470,100330,99220,76.91,0,6.94,7.51,7.640000000000001,7.7,7.74,7.76,7.78,7.79,7.79,205.99,205.9,205.93,205.96,205.99,206.02,206.04,206.07,206.13,29.3,28.96,28.79,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.44,N/A,N/A -2012,8,15,17,30,101470,100320,99220,77.85000000000001,0,5.82,6.3,6.41,6.48,6.53,6.57,6.6000000000000005,6.63,6.68,211.33,211.23000000000002,211.19,211.13,211.06,210.99,210.93,210.86,210.72,29.27,28.94,28.77,28.560000000000002,28.38,28.19,27.990000000000002,27.8,27.42,N/A,N/A -2012,8,15,18,30,101470,100330,99220,73.93,0,5.66,6.13,6.25,6.34,6.4,6.45,6.49,6.53,6.6000000000000005,205.43,205.65,205.73000000000002,205.79,205.85,205.9,205.94,205.98000000000002,206.05,29.490000000000002,29.16,28.990000000000002,28.79,28.6,28.41,28.22,28.04,27.66,N/A,N/A -2012,8,15,19,30,101440,100300,99190,74.76,0,5.11,5.48,5.57,5.61,5.64,5.66,5.68,5.69,5.72,207.01,206.95000000000002,206.94,206.94,206.94,206.93,206.93,206.93,206.94,29.42,29.09,28.92,28.72,28.53,28.34,28.150000000000002,27.96,27.580000000000002,N/A,N/A -2012,8,15,20,30,101400,100260,99160,79.65,0,5.58,5.99,6.09,6.13,6.17,6.2,6.21,6.23,6.25,190.88,191.13,191.23000000000002,191.32,191.39000000000001,191.47,191.54,191.61,191.73000000000002,29.32,28.98,28.8,28.6,28.41,28.22,28.02,27.84,27.46,N/A,N/A -2012,8,15,21,30,101340,100200,99100,81.74,0,6.28,6.71,6.79,6.82,6.8500000000000005,6.8500000000000005,6.86,6.86,6.8500000000000005,204.36,203.63,203.04,202.37,201.78,201.20000000000002,200.62,200.07,198.96,29.35,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.53,N/A,N/A -2012,8,15,22,30,101340,100200,99090,81.02,0,5.93,6.44,6.5600000000000005,6.63,6.68,6.71,6.74,6.76,6.8,185.89000000000001,186.08,186.22,186.34,186.46,186.58,186.68,186.78,186.98,29.44,29.11,28.94,28.740000000000002,28.55,28.36,28.17,27.98,27.6,N/A,N/A -2012,8,15,23,30,101300,100160,99050,78.21000000000001,0,5.84,6.33,6.43,6.48,6.51,6.53,6.55,6.5600000000000005,6.57,190.27,190.44,190.49,190.56,190.62,190.68,190.74,190.79,190.91,29.45,29.13,28.96,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A -2012,8,16,0,30,101260,100120,99020,80.56,0,6.13,6.6000000000000005,6.7,6.75,6.78,6.8,6.8100000000000005,6.8100000000000005,6.8100000000000005,179.79,179.79,179.8,179.77,179.75,179.72,179.68,179.65,179.57,29.25,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,8,16,1,30,101270,100130,99030,83.19,0,6.37,6.91,7.03,7.11,7.16,7.2,7.23,7.25,7.29,175.89000000000001,175.86,175.88,175.89000000000001,175.91,175.91,175.92000000000002,175.93,175.94,29.19,28.84,28.67,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,8,16,2,30,101290,100150,99040,83.04,0,7.46,8.09,8.23,8.290000000000001,8.34,8.36,8.370000000000001,8.38,8.38,170.77,170.78,170.72,170.64000000000001,170.56,170.46,170.37,170.28,170.07,29.25,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.77,27.39,N/A,N/A -2012,8,16,3,30,101340,100200,99100,82.36,0,7.79,8.51,8.68,8.77,8.83,8.870000000000001,8.9,8.92,8.950000000000001,172.11,172.09,172.05,172,171.96,171.91,171.87,171.83,171.75,29.25,28.91,28.73,28.54,28.35,28.150000000000002,27.96,27.78,27.39,N/A,N/A -2012,8,16,4,30,101350,100210,99110,82.88,0,8.44,9.25,9.450000000000001,9.56,9.63,9.68,9.72,9.75,9.790000000000001,175.07,175.06,175.06,175.07,175.07,175.08,175.1,175.11,175.14000000000001,29.27,28.92,28.75,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,8,16,5,30,101390,100250,99140,82.85000000000001,0,8.17,8.96,9.16,9.27,9.35,9.41,9.450000000000001,9.49,9.540000000000001,178.94,178.76,178.68,178.6,178.52,178.45000000000002,178.37,178.3,178.16,29.22,28.87,28.7,28.5,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A -2012,8,16,6,30,101410,100270,99170,82.89,0,8.38,9.31,9.53,9.68,9.78,9.86,9.92,9.97,10.040000000000001,178.08,178.3,178.32,178.3,178.29,178.26,178.23,178.20000000000002,178.14000000000001,29.400000000000002,29.07,28.900000000000002,28.71,28.52,28.330000000000002,28.14,27.95,27.580000000000002,N/A,N/A -2012,8,16,7,30,101470,100330,99220,81.9,0,8.53,9.370000000000001,9.6,9.73,9.82,9.89,9.950000000000001,9.99,10.06,175.96,176.41,176.71,177.02,177.29,177.56,177.81,178.06,178.55,29.27,28.95,28.79,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A -2012,8,16,8,30,101470,100320,99220,80.82000000000001,0,8.19,8.93,9.08,9.15,9.200000000000001,9.22,9.23,9.23,9.23,172.92000000000002,173.03,173.18,173.36,173.55,173.73,173.95000000000002,174.16,174.67000000000002,29.14,28.8,28.64,28.44,28.26,28.080000000000002,27.89,27.71,27.34,N/A,N/A -2012,8,16,9,30,101480,100340,99230,73.12,0,7.68,8.42,8.58,8.67,8.74,8.78,8.82,8.84,8.88,182.07,182.33,182.41,182.47,182.53,182.57,182.6,182.64000000000001,182.69,29.44,29.13,28.96,28.77,28.580000000000002,28.39,28.2,28.01,27.64,N/A,N/A -2012,8,16,10,30,101510,100370,99260,69.05,0,7.21,7.92,8.08,8.17,8.23,8.28,8.31,8.33,8.370000000000001,188.1,188.23,188.23,188.25,188.26,188.27,188.29,188.31,188.36,29.64,29.35,29.19,28.990000000000002,28.8,28.62,28.42,28.240000000000002,27.86,N/A,N/A -2012,8,16,11,30,101500,100360,99250,70.58,0,6.76,7.33,7.43,7.48,7.5,7.51,7.51,7.51,7.49,183.97,184.42000000000002,184.6,184.77,184.92000000000002,185.05,185.19,185.32,185.56,29.43,29.12,28.95,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A -2012,8,16,12,30,101530,100390,99280,71.76,0,6.68,7.24,7.3500000000000005,7.4,7.43,7.45,7.46,7.46,7.46,187.38,187.67000000000002,187.8,187.91,188,188.08,188.15,188.22,188.33,29.39,29.080000000000002,28.91,28.71,28.52,28.330000000000002,28.14,27.95,27.57,N/A,N/A -2012,8,16,13,30,101590,100440,99340,67.76,0,5.32,5.76,5.8500000000000005,5.9,5.93,5.96,5.98,6,6.03,183.25,183.77,184.03,184.25,184.43,184.59,184.73,184.85,185.06,29.46,29.16,28.990000000000002,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A -2012,8,16,14,30,101600,100450,99350,70.41,0,4.6000000000000005,4.94,5.01,5.04,5.0600000000000005,5.08,5.09,5.1000000000000005,5.11,185.13,185.3,185.43,185.55,185.68,185.8,185.92000000000002,186.04,186.3,29.39,29.07,28.91,28.71,28.52,28.330000000000002,28.13,27.95,27.57,N/A,N/A -2012,8,16,15,30,101610,100460,99350,72.44,0,3.68,3.93,3.98,4,4.0200000000000005,4.03,4.04,4.04,4.05,181.45000000000002,181.74,181.92000000000002,182.09,182.25,182.41,182.56,182.70000000000002,182.99,29.28,28.95,28.79,28.59,28.400000000000002,28.21,28.01,27.830000000000002,27.44,N/A,N/A -2012,8,16,16,30,101620,100480,99370,72.8,0,3.0700000000000003,3.25,3.2800000000000002,3.31,3.3200000000000003,3.33,3.34,3.34,3.35,187.89000000000001,187.74,187.67000000000002,187.61,187.55,187.48,187.42000000000002,187.36,187.23,29.28,28.95,28.78,28.580000000000002,28.39,28.2,28.01,27.82,27.43,N/A,N/A -2012,8,16,17,30,101640,100500,99390,71.44,0,3.25,3.42,3.46,3.48,3.49,3.5,3.5100000000000002,3.5100000000000002,3.52,183.04,183.20000000000002,183.26,183.31,183.35,183.39000000000001,183.42000000000002,183.45000000000002,183.44,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A -2012,8,16,18,30,101620,100480,99370,73.99,0,2.41,2.52,2.52,2.52,2.5100000000000002,2.5100000000000002,2.49,2.48,2.46,169.05,169.58,169.93,170.3,170.62,170.93,171.25,171.56,172.19,29.34,28.990000000000002,28.82,28.61,28.42,28.23,28.04,27.85,27.46,N/A,N/A -2012,8,16,19,30,101580,100440,99330,72.65,0,3.6,3.7800000000000002,3.81,3.81,3.81,3.81,3.81,3.8000000000000003,3.79,168.37,168.41,168.48,168.55,168.63,168.73,168.84,168.96,169.28,29.47,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A -2012,8,16,20,30,101520,100380,99270,72.4,0,3.35,3.5500000000000003,3.6,3.62,3.64,3.66,3.67,3.69,3.71,166.15,166.02,165.88,165.74,165.63,165.53,165.43,165.34,165.17000000000002,29.57,29.23,29.060000000000002,28.86,28.68,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A -2012,8,16,21,30,101490,100350,99250,74.2,0,3.97,4.21,4.24,4.26,4.26,4.2700000000000005,4.26,4.26,4.25,164.92000000000002,165.18,165.31,165.44,165.55,165.67000000000002,165.79,165.92000000000002,166.17000000000002,29.580000000000002,29.25,29.080000000000002,28.88,28.69,28.5,28.310000000000002,28.12,27.75,N/A,N/A -2012,8,16,22,30,101480,100340,99230,72.01,0,5.15,5.55,5.62,5.65,5.67,5.68,5.69,5.69,5.7,162.61,162.73,162.78,162.82,162.87,162.92000000000002,162.97,163.01,163.14000000000001,29.73,29.43,29.27,29.07,28.89,28.7,28.51,28.330000000000002,27.95,N/A,N/A -2012,8,16,23,30,101490,100350,99240,75.5,0,4.8,5.18,5.25,5.28,5.3,5.32,5.33,5.33,5.34,162.37,162.5,162.6,162.70000000000002,162.78,162.88,162.97,163.06,163.24,29.6,29.3,29.13,28.94,28.75,28.560000000000002,28.37,28.19,27.810000000000002,N/A,N/A -2012,8,17,0,30,101450,100310,99200,77.94,0,4.83,5.2,5.26,5.29,5.32,5.33,5.34,5.34,5.3500000000000005,150.32,150.43,150.46,150.5,150.53,150.58,150.64000000000001,150.69,150.81,29.48,29.17,29,28.8,28.62,28.43,28.240000000000002,28.05,27.67,N/A,N/A -2012,8,17,1,30,101450,100310,99200,80.85000000000001,0,5.44,5.88,5.96,6,6.03,6.05,6.07,6.08,6.09,146.83,146.8,146.79,146.8,146.8,146.8,146.8,146.81,146.83,29.41,29.09,28.93,28.73,28.54,28.35,28.16,27.97,27.6,N/A,N/A -2012,8,17,2,30,101420,100290,99180,83.53,0,5.08,5.46,5.55,5.58,5.61,5.63,5.63,5.64,5.64,163.53,163.16,162.86,162.54,162.25,161.97,161.67000000000002,161.39000000000001,160.82,29.35,29.03,28.86,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A -2012,8,17,3,30,101460,100320,99210,82.77,0,5.69,6.140000000000001,6.23,6.2700000000000005,6.3,6.32,6.32,6.33,6.32,165.84,165.92000000000002,165.94,165.94,165.95000000000002,165.94,165.94,165.93,165.91,29.28,28.95,28.78,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A -2012,8,17,4,30,101470,100330,99220,81.83,0,5.86,6.33,6.43,6.48,6.51,6.53,6.55,6.5600000000000005,6.5600000000000005,174.76,174.75,174.70000000000002,174.67000000000002,174.64000000000001,174.61,174.59,174.58,174.55,29.32,28.990000000000002,28.830000000000002,28.62,28.44,28.25,28.060000000000002,27.87,27.5,N/A,N/A -2012,8,17,5,30,101470,100320,99220,81.93,0,5.7,6.13,6.21,6.24,6.26,6.26,6.25,6.24,6.2,170.9,171.13,171.3,171.48,171.64000000000001,171.8,171.97,172.13,172.46,29.26,28.93,28.76,28.560000000000002,28.37,28.18,27.98,27.79,27.41,N/A,N/A -2012,8,17,6,30,101500,100360,99250,85.27,0,6.59,7.140000000000001,7.2700000000000005,7.33,7.38,7.4,7.42,7.43,7.43,180.25,180.25,180.27,180.27,180.29,180.29,180.29,180.29,180.29,29.12,28.77,28.6,28.400000000000002,28.21,28.01,27.82,27.63,27.25,N/A,N/A -2012,8,17,7,30,101530,100390,99280,82.75,0,6.2,6.7,6.8100000000000005,6.87,6.92,6.94,6.96,6.98,6.99,186.15,186.19,186.22,186.25,186.28,186.3,186.32,186.34,186.39000000000001,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,8,17,8,30,101510,100370,99260,84.11,0,5.89,6.32,6.4,6.43,6.43,6.43,6.41,6.4,6.3500000000000005,187.66,187.98,188.19,188.41,188.61,188.81,189.01,189.21,189.67000000000002,29.2,28.87,28.7,28.5,28.310000000000002,28.12,27.93,27.75,27.37,N/A,N/A -2012,8,17,9,30,101540,100400,99300,84.27,0,5.51,5.89,5.97,6,6.0200000000000005,6.03,6.03,6.03,6.0200000000000005,202.73000000000002,202.70000000000002,202.70000000000002,202.72,202.75,202.78,202.82,202.86,202.96,29.21,28.87,28.7,28.51,28.32,28.13,27.93,27.75,27.37,N/A,N/A -2012,8,17,10,30,101550,100410,99300,79.8,0,5.76,6.23,6.33,6.37,6.4,6.42,6.43,6.43,6.43,202.61,202.25,202.06,201.89000000000001,201.74,201.58,201.43,201.3,201.02,29.44,29.12,28.95,28.76,28.57,28.38,28.19,28.01,27.63,N/A,N/A -2012,8,17,11,30,101560,100410,99310,81.15,0,6.51,7.0600000000000005,7.17,7.22,7.25,7.26,7.2700000000000005,7.26,7.25,200.02,200.23000000000002,200.35,200.48000000000002,200.61,200.73000000000002,200.85,200.97,201.21,29.38,29.05,28.89,28.69,28.5,28.310000000000002,28.11,27.93,27.55,N/A,N/A -2012,8,17,12,30,101570,100430,99320,76.52,0,6,6.45,6.53,6.5600000000000005,6.57,6.58,6.57,6.5600000000000005,6.53,199.62,200.12,200.48000000000002,200.86,201.19,201.52,201.86,202.18,202.84,29.5,29.18,29.02,28.82,28.63,28.44,28.25,28.060000000000002,27.68,N/A,N/A -2012,8,17,13,30,101570,100430,99320,78.48,0,5.8500000000000005,6.29,6.37,6.4,6.42,6.43,6.43,6.42,6.4,210.95000000000002,211.04,211.06,211.08,211.1,211.13,211.15,211.17000000000002,211.21,29.32,28.990000000000002,28.830000000000002,28.62,28.44,28.25,28.05,27.86,27.48,N/A,N/A -2012,8,17,14,30,101550,100400,99300,77.9,0,5.9,6.38,6.48,6.54,6.58,6.6000000000000005,6.62,6.63,6.640000000000001,212.97,212.95000000000002,212.92000000000002,212.89000000000001,212.86,212.82,212.78,212.74,212.67000000000002,29.3,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A -2012,8,17,15,30,101600,100460,99350,78.78,0,5.89,6.33,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.57,6.58,224.03,224.32,224.44,224.56,224.66,224.75,224.84,224.92000000000002,225.08,29.310000000000002,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A -2012,8,17,16,30,101560,100420,99310,77.54,0,5.33,5.71,5.78,5.8,5.82,5.82,5.82,5.82,5.8,215.66,216.16,216.33,216.51,216.68,216.85,217.02,217.18,217.56,29.330000000000002,28.990000000000002,28.830000000000002,28.62,28.44,28.240000000000002,28.05,27.86,27.490000000000002,N/A,N/A -2012,8,17,17,30,101540,100400,99290,78.08,0,4.82,5.17,5.24,5.28,5.3100000000000005,5.33,5.34,5.36,5.37,227.72,227.93,228.13,228.3,228.45000000000002,228.58,228.71,228.84,229.07,29.400000000000002,29.060000000000002,28.89,28.69,28.5,28.310000000000002,28.12,27.93,27.55,N/A,N/A -2012,8,17,18,30,101470,100330,99220,81.87,0,6.26,6.69,6.76,6.78,6.79,6.79,6.79,6.78,6.75,223.79,224.07,224.14000000000001,224.24,224.32,224.41,224.51,224.6,224.81,29.28,28.94,28.77,28.57,28.38,28.19,28.01,27.82,27.46,N/A,N/A -2012,8,17,19,30,101470,100330,99220,81.72,0,5.98,6.44,6.54,6.6000000000000005,6.63,6.65,6.67,6.67,6.68,225.11,225.39000000000001,225.44,225.46,225.5,225.52,225.55,225.56,225.58,29.34,29,28.82,28.62,28.44,28.25,28.05,27.86,27.490000000000002,N/A,N/A -2012,8,17,20,30,101480,100340,99230,83.16,0,6.59,7.15,7.2700000000000005,7.33,7.36,7.37,7.36,7.3500000000000005,7.3100000000000005,219.94,220.01,220.02,220.03,220.04,220.05,220.06,220.06,220.06,29.37,29.04,28.87,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A -2012,8,17,21,30,101470,100330,99220,80.08,0,7.65,8.36,8.53,8.620000000000001,8.69,8.73,8.75,8.77,8.790000000000001,242.84,242.97,242.88,242.82,242.78,242.76,242.74,242.73000000000002,242.72,29.52,29.2,29.03,28.830000000000002,28.650000000000002,28.45,28.26,28.07,27.69,N/A,N/A -2012,8,17,22,30,101400,100260,99160,79.17,0,7.13,7.75,7.87,7.930000000000001,7.96,7.98,7.98,7.98,7.97,237.85,237.83,237.84,237.85,237.84,237.83,237.82,237.81,237.76,29.51,29.19,29.02,28.82,28.64,28.45,28.26,28.07,27.69,N/A,N/A -2012,8,17,23,30,101360,100220,99110,83.55,0,5.18,5.5200000000000005,5.59,5.63,5.65,5.67,5.7,5.73,5.8500000000000005,245.27,243.84,243.02,242.05,241.09,240.03,238.86,237.66,234.70000000000002,28.75,28.41,28.26,28.07,27.900000000000002,27.740000000000002,27.57,27.42,27.12,N/A,N/A -2012,8,18,0,30,101320,100180,99080,76.46000000000001,0,5.21,5.66,5.75,5.8,5.84,5.87,5.9,5.92,5.95,221.3,221.55,221.56,221.56,221.57,221.59,221.61,221.63,221.69,29.490000000000002,29.17,29,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A -2012,8,18,1,30,101320,100180,99080,75.46000000000001,0,5.59,6.04,6.11,6.140000000000001,6.16,6.16,6.15,6.140000000000001,6.1000000000000005,216.03,216.03,216.05,216.03,216,215.97,215.93,215.88,215.77,29.48,29.16,29,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A -2012,8,18,2,30,101320,100180,99080,74.63,0,5.51,5.91,5.99,6.03,6.05,6.07,6.08,6.09,6.12,207.29,207.24,207.24,207.27,207.3,207.33,207.38,207.44,207.59,29.42,29.12,28.95,28.76,28.580000000000002,28.39,28.21,28.03,27.67,N/A,N/A -2012,8,18,3,30,101320,100180,99070,72.06,0,5.9,6.41,6.5200000000000005,6.57,6.61,6.640000000000001,6.67,6.69,6.73,199.34,199.53,199.65,199.77,199.87,199.98000000000002,200.09,200.20000000000002,200.46,29.6,29.3,29.14,28.94,28.76,28.57,28.38,28.2,27.830000000000002,N/A,N/A -2012,8,18,4,30,101330,100190,99080,74.82000000000001,0,5.62,6.05,6.140000000000001,6.17,6.19,6.2,6.19,6.19,6.16,203.25,203.09,202.91,202.71,202.53,202.35,202.17000000000002,201.98000000000002,201.64000000000001,29.42,29.11,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.62,N/A,N/A -2012,8,18,5,30,101320,100180,99080,77.24,0,6.390000000000001,6.87,6.93,6.94,6.94,6.92,6.890000000000001,6.86,6.79,206.86,206.48000000000002,206.29,206.07,205.87,205.66,205.45000000000002,205.25,204.81,29.240000000000002,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,18,6,30,101350,100210,99100,75.64,0,5.98,6.45,6.53,6.57,6.6000000000000005,6.61,6.61,6.6000000000000005,6.58,203.82,203.92000000000002,203.98000000000002,204.04,204.09,204.12,204.15,204.18,204.20000000000002,29.29,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A -2012,8,18,7,30,101370,100230,99120,78.36,0,6.890000000000001,7.42,7.53,7.58,7.61,7.63,7.640000000000001,7.65,7.66,200.69,200.63,200.64000000000001,200.68,200.72,200.76,200.81,200.85,200.97,29.14,28.810000000000002,28.64,28.44,28.26,28.080000000000002,27.89,27.7,27.330000000000002,N/A,N/A -2012,8,18,8,30,101330,100190,99080,80.37,0,6.61,7.17,7.29,7.3500000000000005,7.4,7.43,7.44,7.46,7.46,212,211.97,211.9,211.82,211.75,211.67000000000002,211.6,211.53,211.36,29,28.66,28.48,28.28,28.09,27.900000000000002,27.7,27.51,27.13,N/A,N/A -2012,8,18,9,30,101340,100200,99100,80.74,0,7.37,8,8.14,8.22,8.26,8.290000000000001,8.32,8.33,8.34,212.55,212.6,212.62,212.64000000000001,212.65,212.66,212.67000000000002,212.67000000000002,212.68,29,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A -2012,8,18,10,30,101350,100210,99100,81.31,0,6.78,7.33,7.46,7.53,7.57,7.6000000000000005,7.61,7.63,7.640000000000001,210.89000000000001,210.86,210.87,210.87,210.87,210.87,210.86,210.85,210.83,28.96,28.62,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,8,18,11,30,101360,100220,99110,83.08,0,6.44,6.95,7.07,7.13,7.17,7.21,7.23,7.25,7.2700000000000005,217.87,217.86,217.87,217.88,217.9,217.91,217.93,217.94,217.99,28.89,28.53,28.36,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.02,N/A,N/A -2012,8,18,12,30,101370,100230,99130,85.04,0,6.36,6.8500000000000005,6.97,7.03,7.08,7.11,7.13,7.140000000000001,7.17,218.19,218.18,218.18,218.17000000000002,218.15,218.14000000000001,218.12,218.11,218.09,28.830000000000002,28.47,28.3,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.95,N/A,N/A -2012,8,18,13,30,101360,100220,99120,86.89,0,6.390000000000001,7,7.140000000000001,7.22,7.28,7.32,7.3500000000000005,7.36,7.38,220.4,220.17000000000002,220.1,220.05,220.02,220,219.99,219.99,219.99,28.830000000000002,28.46,28.29,28.080000000000002,27.89,27.7,27.5,27.310000000000002,26.92,N/A,N/A -2012,8,18,14,30,101380,100240,99140,85.18,0,6.91,7.42,7.53,7.57,7.59,7.6000000000000005,7.6000000000000005,7.6000000000000005,7.58,226.46,226.79,226.85,226.88,226.9,226.91,226.91,226.92000000000002,226.94,28.87,28.51,28.34,28.14,27.95,27.76,27.57,27.39,27.02,N/A,N/A -2012,8,18,15,30,101370,100230,99130,79.11,0,7.5600000000000005,8.25,8.41,8.5,8.56,8.6,8.63,8.65,8.68,235.14000000000001,235.16,235.15,235.14000000000001,235.13,235.12,235.11,235.1,235.08,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,8,18,16,30,101380,100240,99140,76.85000000000001,0,7.09,7.73,7.890000000000001,7.98,8.040000000000001,8.09,8.13,8.17,8.22,229.39000000000001,229.69,229.83,229.97,230.1,230.23000000000002,230.34,230.45000000000002,230.66,29.36,29.02,28.86,28.66,28.47,28.28,28.080000000000002,27.900000000000002,27.52,N/A,N/A -2012,8,18,17,30,101350,100210,99100,77.47,0,7.75,8.38,8.540000000000001,8.61,8.67,8.700000000000001,8.73,8.76,8.790000000000001,227.81,228.08,228.21,228.34,228.44,228.53,228.62,228.70000000000002,228.85,29.27,28.94,28.78,28.580000000000002,28.400000000000002,28.21,28.02,27.84,27.47,N/A,N/A -2012,8,18,18,30,101300,100160,99050,76.46000000000001,0,8.26,9.09,9.290000000000001,9.41,9.48,9.53,9.56,9.58,9.59,224.57,224.92000000000002,225.09,225.23000000000002,225.34,225.44,225.52,225.59,225.72,29.43,29.11,28.95,28.75,28.560000000000002,28.37,28.18,28,27.61,N/A,N/A -2012,8,18,19,30,101240,100100,98990,80.52,0,8.99,9.85,10.02,10.1,10.14,10.15,10.15,10.15,10.11,217.09,217.28,217.35,217.4,217.45000000000002,217.48000000000002,217.51,217.54,217.62,29.2,28.85,28.68,28.48,28.29,28.1,27.91,27.72,27.35,N/A,N/A -2012,8,18,20,30,101210,100070,98960,69.68,0,9.71,10.700000000000001,10.94,11.08,11.17,11.22,11.26,11.290000000000001,11.3,218.20000000000002,218.31,218.47,218.62,218.76,218.88,219,219.1,219.3,29.98,29.72,29.57,29.39,29.21,29.03,28.85,28.67,28.310000000000002,N/A,N/A -2012,8,18,21,30,101170,100030,98930,72.19,0,9.06,9.96,10.17,10.290000000000001,10.38,10.450000000000001,10.52,10.58,10.75,214.61,214.55,214.6,214.68,214.77,214.87,215,215.14000000000001,215.55,29.88,29.6,29.44,29.26,29.080000000000002,28.91,28.73,28.57,28.25,N/A,N/A -2012,8,18,22,30,101130,99990,98890,75.16,0,8.43,9.24,9.39,9.46,9.51,9.53,9.540000000000001,9.55,9.57,210.52,210.8,210.91,211,211.1,211.21,211.33,211.47,211.87,29.64,29.34,29.17,28.98,28.8,28.62,28.44,28.26,27.91,N/A,N/A -2012,8,18,23,30,101090,99960,98850,82.32000000000001,0,9.200000000000001,10.05,10.21,10.27,10.3,10.290000000000001,10.27,10.23,10.14,211.46,211.4,211.37,211.33,211.3,211.27,211.25,211.22,211.22,29.14,28.79,28.62,28.42,28.23,28.04,27.86,27.67,27.310000000000002,N/A,N/A -2012,8,19,0,30,101080,99940,98840,76.48,0,9.13,9.96,10.16,10.25,10.31,10.34,10.35,10.35,10.33,207.36,207.47,207.59,207.71,207.81,207.91,208,208.09,208.22,29.36,29.05,28.88,28.69,28.51,28.32,28.13,27.95,27.580000000000002,N/A,N/A -2012,8,19,1,30,101060,99920,98820,79.69,0,7.67,8.290000000000001,8.41,8.46,8.48,8.48,8.47,8.46,8.41,204.19,204.26,204.32,204.4,204.46,204.54,204.62,204.70000000000002,204.89000000000001,29.09,28.75,28.59,28.39,28.2,28.01,27.830000000000002,27.64,27.28,N/A,N/A -2012,8,19,2,30,101090,99960,98850,81.3,0,7.46,8.09,8.22,8.290000000000001,8.33,8.35,8.36,8.36,8.35,194.01,194.11,194.14000000000001,194.16,194.18,194.21,194.23000000000002,194.26,194.33,28.98,28.63,28.46,28.26,28.07,27.88,27.69,27.51,27.14,N/A,N/A -2012,8,19,3,30,101100,99960,98860,84.69,0,6.73,7.28,7.4,7.45,7.49,7.5,7.51,7.51,7.5,196.63,196.85,196.94,197,197.04,197.08,197.11,197.13,197.18,28.78,28.41,28.240000000000002,28.03,27.84,27.650000000000002,27.45,27.26,26.88,N/A,N/A -2012,8,19,4,30,101100,99960,98860,81.42,0,7.7700000000000005,8.41,8.56,8.63,8.68,8.71,8.72,8.73,8.73,196.51,196.22,196.12,196.04,195.96,195.9,195.84,195.78,195.66,28.78,28.42,28.25,28.04,27.85,27.66,27.47,27.28,26.91,N/A,N/A -2012,8,19,5,30,101120,99990,98880,81.13,0,6.9,7.48,7.61,7.68,7.73,7.76,7.78,7.79,7.8,193.98000000000002,194.11,194.24,194.41,194.56,194.73000000000002,194.9,195.07,195.44,28.85,28.490000000000002,28.310000000000002,28.11,27.92,27.72,27.53,27.34,26.96,N/A,N/A -2012,8,19,6,30,101160,100020,98910,75.75,0,7.79,8.45,8.6,8.67,8.71,8.74,8.75,8.76,8.76,189.94,190.28,190.37,190.42000000000002,190.45000000000002,190.46,190.47,190.48,190.47,28.990000000000002,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.12,N/A,N/A -2012,8,19,7,30,101180,100040,98930,72.33,0,7.36,7.99,8.14,8.22,8.28,8.32,8.34,8.370000000000001,8.4,196.86,196.88,196.83,196.76,196.70000000000002,196.64000000000001,196.58,196.52,196.39000000000001,29.13,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.68,27.3,N/A,N/A -2012,8,19,8,30,101180,100040,98940,68.56,0,7.26,7.9,8.05,8.13,8.19,8.23,8.26,8.28,8.32,200.66,200.48000000000002,200.31,200.14000000000001,199.98000000000002,199.84,199.69,199.55,199.28,29.28,28.96,28.8,28.59,28.41,28.22,28.02,27.84,27.46,N/A,N/A -2012,8,19,9,30,101190,100050,98940,69.14,0,7.33,7.95,8.09,8.16,8.2,8.23,8.25,8.26,8.27,197.19,197.45000000000002,197.59,197.73000000000002,197.86,197.99,198.11,198.23000000000002,198.47,29.3,28.98,28.82,28.62,28.43,28.240000000000002,28.04,27.86,27.48,N/A,N/A -2012,8,19,10,30,101230,100090,98980,73.56,0,6.7,7.29,7.43,7.5,7.5600000000000005,7.6000000000000005,7.63,7.65,7.68,208.55,208.5,208.49,208.48000000000002,208.47,208.47,208.46,208.45000000000002,208.43,29.17,28.84,28.67,28.46,28.28,28.080000000000002,27.89,27.7,27.32,N/A,N/A -2012,8,19,11,30,101230,100090,98980,72.22,0,6.42,6.96,7.07,7.13,7.17,7.19,7.2,7.21,7.21,203.12,203.32,203.46,203.6,203.73000000000002,203.87,204.01,204.14000000000001,204.4,29.150000000000002,28.82,28.650000000000002,28.45,28.26,28.060000000000002,27.87,27.68,27.29,N/A,N/A -2012,8,19,12,30,101250,100100,99000,72.38,0,5.7,6.140000000000001,6.23,6.28,6.3100000000000005,6.34,6.3500000000000005,6.3500000000000005,6.36,221.33,221.24,221.22,221.23000000000002,221.23000000000002,221.25,221.27,221.29,221.34,29.13,28.8,28.63,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A -2012,8,19,13,30,101290,100150,99040,71.67,0,4.99,5.33,5.4,5.44,5.46,5.48,5.49,5.5,5.51,236.74,236.62,236.45000000000002,236.27,236.1,235.93,235.76,235.6,235.27,29.19,28.86,28.69,28.5,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A -2012,8,19,14,30,101330,100190,99080,70.5,0,4.76,5.01,5.04,5.04,5.03,5.01,5,4.98,4.94,246.07,245.93,245.72,245.48000000000002,245.25,245.02,244.79,244.57,244.11,29.17,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.330000000000002,N/A,N/A -2012,8,19,15,30,101350,100210,99100,75.25,0,3.96,4.05,4.01,3.94,3.88,3.81,3.75,3.69,3.5700000000000003,313.5,312.22,311.25,310.13,309.08,307.99,306.87,305.78000000000003,303.41,28.78,28.44,28.27,28.07,27.89,27.7,27.51,27.32,26.95,N/A,N/A -2012,8,19,16,30,101340,100190,99090,71.9,0,2.66,2.7800000000000002,2.79,2.79,2.79,2.79,2.79,2.7800000000000002,2.77,313.27,312.27,311.65000000000003,311.04,310.5,309.98,309.47,309,308.04,28.92,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A -2012,8,19,17,30,101300,100160,99050,72.34,0,2.58,2.71,2.74,2.7600000000000002,2.7800000000000002,2.79,2.8000000000000003,2.81,2.82,349.82,348.86,348.35,347.87,347.42,346.97,346.51,346.07,345.13,28.84,28.490000000000002,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A -2012,8,19,18,30,101320,100180,99080,70.53,0,1.9100000000000001,2.0100000000000002,2.05,2.08,2.11,2.13,2.15,2.17,2.21,8.36,7.23,6.47,5.78,5.17,4.5600000000000005,3.99,3.46,2.38,29.27,28.93,28.76,28.55,28.37,28.18,27.98,27.79,27.41,N/A,N/A -2012,8,19,19,30,101230,100090,98990,70.18,0,1.69,1.6600000000000001,1.62,1.57,1.52,1.47,1.43,1.3900000000000001,1.3,132.64000000000001,130.55,129.15,127.59,126.02,124.42,122.56,120.77,116.37,29.34,28.98,28.810000000000002,28.62,28.43,28.240000000000002,28.05,27.87,27.5,N/A,N/A -2012,8,19,20,30,101350,100190,99070,94.15,444.6,6.12,6.43,6.51,6.57,6.6000000000000005,6.63,6.66,6.67,6.71,260.96,259.36,258.52,257.73,256.89,256.14,255.38,254.71,253.42000000000002,25.73,25.27,25.080000000000002,24.900000000000002,24.72,24.55,24.38,24.21,23.89,N/A,N/A -2012,8,19,21,30,101340,100180,99060,84.18,0,4.0200000000000005,4.0600000000000005,4.0200000000000005,3.93,3.84,3.74,3.58,3.43,2.97,50.42,49.57,48.95,48.17,47.21,46.12,44.32,42.46,34.28,25.400000000000002,24.97,24.8,24.62,24.47,24.330000000000002,24.2,24.09,23.95,N/A,N/A -2012,8,19,22,30,101290,100130,99020,78.19,0,2.94,3,2.98,2.94,2.9,2.85,2.8000000000000003,2.74,2.58,147.12,147.34,147.39000000000001,147.44,147.48,147.52,147.51,147.5,147.13,26.43,26.02,25.84,25.64,25.45,25.27,25.09,24.92,24.59,N/A,N/A -2012,8,19,23,30,101270,100120,99000,80.67,0,6.32,6.63,6.65,6.62,6.57,6.51,6.43,6.3500000000000005,6.09,171.23,171.56,171.79,172.09,172.46,172.89000000000001,173.51,174.14000000000001,176.61,26.48,26.02,25.82,25.62,25.43,25.25,25.060000000000002,24.89,24.54,N/A,N/A -2012,8,20,0,30,101220,100070,98950,84.98,0,5.63,5.93,5.98,5.98,5.98,5.96,5.94,5.91,5.8500000000000005,170.58,170.72,170.73,170.75,170.77,170.79,170.83,170.85,170.97,26.72,26.28,26.09,25.89,25.7,25.51,25.32,25.14,24.78,N/A,N/A -2012,8,20,1,30,101200,100050,98940,84.02,0,3.99,4.16,4.17,4.16,4.14,4.11,4.08,4.04,3.96,195.54,195.54,195.46,195.37,195.28,195.18,195.07,194.96,194.68,27.11,26.7,26.52,26.310000000000002,26.13,25.94,25.740000000000002,25.560000000000002,25.19,N/A,N/A -2012,8,20,2,30,101190,100040,98930,82.94,0,3.92,4.08,4.09,4.08,4.0600000000000005,4.03,4.01,3.98,3.9,210.05,209.91,209.8,209.67000000000002,209.57,209.45000000000002,209.33,209.22,208.97,27.3,26.900000000000002,26.71,26.51,26.32,26.13,25.94,25.75,25.38,N/A,N/A -2012,8,20,3,30,101180,100040,98930,81.2,0,2.86,2.96,2.97,2.96,2.95,2.93,2.91,2.89,2.84,228.04,228.21,228.3,228.37,228.43,228.51,228.56,228.61,228.73000000000002,27.52,27.14,26.96,26.76,26.57,26.38,26.2,26.01,25.64,N/A,N/A -2012,8,20,4,30,101170,100020,98910,80.15,0,2.59,2.69,2.7,2.7,2.7,2.69,2.69,2.68,2.66,224.99,225.26,225.39000000000001,225.52,225.63,225.75,225.86,225.97,226.20000000000002,27.72,27.35,27.17,26.97,26.78,26.580000000000002,26.39,26.2,25.82,N/A,N/A -2012,8,20,5,30,101190,100050,98940,77.35000000000001,0,2.67,2.77,2.7800000000000002,2.77,2.7600000000000002,2.75,2.74,2.72,2.69,249.29,249.36,249.41,249.46,249.51000000000002,249.56,249.61,249.64000000000001,249.76000000000002,27.900000000000002,27.54,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A -2012,8,20,6,30,101210,100060,98960,75.46000000000001,0,2.74,2.85,2.86,2.86,2.86,2.85,2.85,2.84,2.82,248.12,248.35,248.39000000000001,248.44,248.49,248.53,248.6,248.66,248.77,28.04,27.69,27.51,27.310000000000002,27.12,26.93,26.73,26.55,26.17,N/A,N/A -2012,8,20,7,30,101260,100110,99010,75.26,0,2.58,2.68,2.69,2.69,2.68,2.67,2.66,2.66,2.63,237.22,237.14000000000001,237.07,237,236.92000000000002,236.83,236.74,236.65,236.46,28.080000000000002,27.73,27.560000000000002,27.36,27.17,26.97,26.78,26.59,26.21,N/A,N/A -2012,8,20,8,30,101260,100110,99010,75.86,0,2.66,2.7600000000000002,2.77,2.77,2.77,2.7600000000000002,2.7600000000000002,2.75,2.73,250.79,250.86,250.85,250.85,250.85,250.85,250.85,250.85,250.86,28.04,27.68,27.51,27.3,27.11,26.92,26.73,26.54,26.16,N/A,N/A -2012,8,20,9,30,101280,100130,99020,79.5,0,3.17,3.33,3.36,3.37,3.38,3.38,3.38,3.38,3.37,258.42,258.54,258.59000000000003,258.64,258.69,258.75,258.8,258.85,258.97,27.96,27.59,27.42,27.21,27.03,26.830000000000002,26.64,26.45,26.07,N/A,N/A -2012,8,20,10,30,101280,100140,99030,80.95,0,3.48,3.66,3.69,3.7,3.7,3.7,3.7,3.69,3.68,263.88,264.18,264.26,264.36,264.45,264.54,264.63,264.72,264.91,27.88,27.5,27.330000000000002,27.12,26.93,26.740000000000002,26.54,26.35,25.97,N/A,N/A -2012,8,20,11,30,101280,100130,99020,84.35000000000001,0,4.82,5.04,5.05,5.04,5.01,4.98,4.95,4.91,4.83,293.74,293.37,293.14,292.92,292.71,292.51,292.32,292.13,291.75,27.580000000000002,27.19,27.01,26.810000000000002,26.63,26.44,26.25,26.07,25.7,N/A,N/A -2012,8,20,12,30,101300,100150,99040,79.5,0,4.65,4.86,4.87,4.8500000000000005,4.83,4.8,4.7700000000000005,4.73,4.66,310.76,310.94,311.08,311.21,311.36,311.52,311.69,311.85,312.28000000000003,27.46,27.07,26.89,26.69,26.5,26.310000000000002,26.12,25.94,25.57,N/A,N/A -2012,8,20,13,30,101320,100170,99060,79.5,0,4.73,4.96,4.98,4.98,4.97,4.96,4.94,4.92,4.87,312.72,313.64,314.19,314.75,315.26,315.76,316.27,316.76,317.79,27.310000000000002,26.91,26.73,26.52,26.330000000000002,26.14,25.95,25.76,25.39,N/A,N/A -2012,8,20,14,30,101380,100230,99120,83.21000000000001,0,3.93,4.12,4.15,4.16,4.16,4.16,4.16,4.15,4.14,314.94,315.83,316.38,316.92,317.40000000000003,317.86,318.33,318.79,319.72,27.19,26.79,26.6,26.400000000000002,26.2,26.01,25.82,25.63,25.25,N/A,N/A -2012,8,20,15,30,101370,100220,99110,82.95,0,4.07,4.28,4.32,4.33,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.3500000000000005,310.36,311.61,312.36,313.11,313.8,314.48,315.17,315.83,317.23,27.39,26.990000000000002,26.810000000000002,26.61,26.42,26.23,26.03,25.84,25.47,N/A,N/A -2012,8,20,16,30,101390,100240,99130,75.98,0,3.45,3.61,3.64,3.66,3.66,3.67,3.67,3.67,3.67,343.56,342.73,342.26,341.8,341.39,340.99,340.62,340.27,339.6,28,27.62,27.44,27.240000000000002,27.05,26.85,26.66,26.47,26.09,N/A,N/A -2012,8,20,17,30,101360,100210,99100,72.93,0,2.95,3.12,3.16,3.19,3.21,3.23,3.25,3.27,3.3000000000000003,315.59000000000003,316.18,316.56,316.93,317.25,317.56,317.89,318.2,318.83,28.35,27.990000000000002,27.82,27.61,27.42,27.23,27.04,26.85,26.47,N/A,N/A -2012,8,20,18,30,101320,100170,99060,70.4,0,2.64,2.84,2.9,2.96,3.02,3.08,3.15,3.21,3.39,292.26,294.16,295.40000000000003,296.61,297.71,298.83,299.98,301.11,303.63,28.84,28.5,28.330000000000002,28.14,27.96,27.77,27.580000000000002,27.41,27.05,N/A,N/A -2012,8,20,19,30,101300,100160,99050,70.03,0,2.7600000000000002,2.7800000000000002,2.73,2.67,2.62,2.58,2.54,2.5,2.45,219.96,223.5,226.02,228.88,231.49,234.20000000000002,236.95000000000002,239.63,245.27,29.29,28.97,28.810000000000002,28.62,28.44,28.26,28.07,27.900000000000002,27.54,N/A,N/A -2012,8,20,20,30,101240,100100,98990,72.49,0,3.41,3.49,3.45,3.39,3.3200000000000003,3.25,3.16,3.0700000000000003,2.82,181.8,181.84,181.88,181.91,181.91,181.91,181.92000000000002,181.93,182.23,29.13,28.79,28.62,28.44,28.26,28.09,27.92,27.75,27.46,N/A,N/A -2012,8,20,21,30,101200,100060,98950,78.37,0,4.54,4.75,4.76,4.72,4.67,4.61,4.5600000000000005,4.5,4.26,191.28,191.72,192.02,192.4,192.79,193.24,193.74,194.26,195.6,28.810000000000002,28.46,28.3,28.1,27.91,27.73,27.54,27.36,26.990000000000002,N/A,N/A -2012,8,20,22,30,101170,100030,98930,77.02,0,5.26,5.57,5.59,5.57,5.54,5.5,5.44,5.38,5.22,185.61,185.79,185.92000000000002,186.09,186.26,186.44,186.67000000000002,186.9,187.51,29.060000000000002,28.73,28.57,28.37,28.19,28.01,27.82,27.64,27.27,N/A,N/A -2012,8,20,23,30,101160,100020,98910,77.10000000000001,0,5.73,6.12,6.18,6.19,6.18,6.17,6.140000000000001,6.11,6.04,201.8,201.79,201.83,201.86,201.88,201.9,201.92000000000002,201.95000000000002,202.02,28.990000000000002,28.66,28.5,28.3,28.11,27.93,27.740000000000002,27.55,27.18,N/A,N/A -2012,8,21,0,30,101160,100020,98920,76.04,0,5.48,5.86,5.93,5.95,5.96,5.96,5.95,5.94,5.91,200.26,200.47,200.58,200.67000000000002,200.74,200.81,200.87,200.92000000000002,201.02,28.93,28.6,28.43,28.23,28.04,27.85,27.66,27.47,27.09,N/A,N/A -2012,8,21,1,30,101170,100030,98930,74.54,0,4.6000000000000005,4.89,4.93,4.95,4.96,4.95,4.95,4.94,4.91,204.42000000000002,204.3,204.25,204.20000000000002,204.16,204.12,204.07,204.03,203.95000000000002,28.98,28.650000000000002,28.48,28.28,28.1,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A -2012,8,21,2,30,101210,100070,98960,72.66,0,2.81,2.95,2.98,2.98,2.99,2.98,2.98,2.98,2.96,204.4,204.32,204.24,204.14000000000001,204.06,203.96,203.85,203.74,203.49,29,28.69,28.52,28.32,28.14,27.95,27.76,27.580000000000002,27.21,N/A,N/A -2012,8,21,3,30,101220,100080,98970,72.3,0,2.43,2.52,2.52,2.5100000000000002,2.5,2.49,2.48,2.46,2.43,242.72,242.28,241.98000000000002,241.67000000000002,241.39000000000001,241.1,240.79,240.5,239.86,28.990000000000002,28.68,28.51,28.310000000000002,28.13,27.94,27.75,27.57,27.19,N/A,N/A -2012,8,21,4,30,101220,100070,98970,73.46000000000001,0,1.67,1.7,1.7,1.68,1.67,1.6500000000000001,1.6400000000000001,1.62,1.58,292.24,292.87,293.03000000000003,293.24,293.46,293.71,293.98,294.25,294.95,28.85,28.53,28.37,28.17,27.98,27.8,27.61,27.42,27.05,N/A,N/A -2012,8,21,5,30,101240,100100,99000,74.04,0,1.27,1.31,1.31,1.31,1.31,1.3,1.29,1.29,1.27,349.47,350.97,351.66,352.38,353.05,353.72,354.45,355.17,356.84000000000003,28.8,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.36,26.990000000000002,N/A,N/A -2012,8,21,6,30,101280,100140,99030,69.16,0,2.5100000000000002,2.61,2.61,2.59,2.58,2.56,2.5500000000000003,2.5300000000000002,2.5,49.36,50.07,50.47,50.9,51.27,51.63,51.980000000000004,52.31,53.03,29.01,28.69,28.52,28.32,28.13,27.94,27.75,27.560000000000002,27.18,N/A,N/A -2012,8,21,7,30,101300,100160,99050,70.8,0,2.23,2.35,2.37,2.4,2.41,2.43,2.44,2.46,2.49,40.43,40.42,40.5,40.59,40.68,40.78,40.86,40.95,41.18,28.78,28.45,28.28,28.080000000000002,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A -2012,8,21,8,30,101310,100160,99050,66.84,0,3.5700000000000003,3.73,3.74,3.73,3.71,3.7,3.68,3.66,3.61,54.97,55.39,55.63,55.85,56.04,56.21,56.38,56.550000000000004,56.86,28.85,28.51,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27,N/A,N/A -2012,8,21,9,30,101340,100190,99080,67.98,0,3.24,3.42,3.45,3.46,3.47,3.47,3.47,3.47,3.46,60.39,60.76,60.9,61.04,61.160000000000004,61.27,61.370000000000005,61.47,61.660000000000004,28.8,28.47,28.3,28.1,27.91,27.72,27.52,27.330000000000002,26.95,N/A,N/A -2012,8,21,10,30,101370,100220,99120,66.52,0,2.71,2.84,2.85,2.85,2.85,2.85,2.85,2.85,2.84,71.33,70.51,70.03,69.55,69.13,68.74,68.35000000000001,67.97,67.22,28.810000000000002,28.490000000000002,28.32,28.12,27.93,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,8,21,11,30,101380,100230,99130,68.92,0,3.65,3.7800000000000002,3.7600000000000002,3.73,3.7,3.66,3.63,3.59,3.52,74.82000000000001,75.15,75.45,75.74,76.02,76.3,76.57000000000001,76.84,77.41,28.7,28.37,28.2,28.01,27.82,27.64,27.45,27.26,26.89,N/A,N/A -2012,8,21,12,30,101410,100260,99150,68.88,0,3.12,3.2800000000000002,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,75.01,74.98,74.96000000000001,74.92,74.89,74.84,74.79,74.74,74.64,28.54,28.19,28.02,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A -2012,8,21,13,30,101440,100300,99190,72.76,0,4.24,4.45,4.48,4.49,4.49,4.48,4.47,4.46,4.42,86.64,86.75,86.81,86.87,86.92,86.96000000000001,87,87.04,87.14,28.44,28.09,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,8,21,14,30,101490,100350,99230,69.12,0,2.95,3.14,3.19,3.23,3.25,3.27,3.29,3.31,3.34,91.33,92.66,93.4,94.12,94.75,95.33,95.89,96.4,97.37,28.57,28.240000000000002,28.07,27.87,27.69,27.5,27.310000000000002,27.13,26.76,N/A,N/A -2012,8,21,15,30,101500,100350,99240,73.54,0,4.51,4.79,4.8500000000000005,4.88,4.9,4.92,4.93,4.94,4.94,83.69,83.96000000000001,84.05,84.14,84.22,84.29,84.37,84.44,84.58,28.44,28.080000000000002,27.91,27.71,27.52,27.32,27.13,26.94,26.560000000000002,N/A,N/A -2012,8,21,16,30,101520,100370,99260,74.66,0,3.95,4.16,4.19,4.2,4.21,4.21,4.2,4.2,4.18,64.36,64.76,65.11,65.44,65.73,66,66.25,66.49,66.93,28.41,28.05,27.87,27.67,27.48,27.28,27.09,26.900000000000002,26.52,N/A,N/A -2012,8,21,17,30,101520,100380,99270,74.49,0,4.63,4.87,4.9,4.9,4.9,4.89,4.88,4.86,4.83,61.42,61.63,61.71,61.79,61.86,61.93,62,62.06,62.17,28.34,27.97,27.79,27.580000000000002,27.39,27.19,27,26.810000000000002,26.42,N/A,N/A -2012,8,21,18,30,101530,100390,99270,77.08,0,5.79,6.140000000000001,6.2,6.21,6.21,6.2,6.18,6.16,6.1000000000000005,78.14,78.3,78.32000000000001,78.35000000000001,78.38,78.41,78.43,78.46000000000001,78.52,28.18,27.79,27.61,27.400000000000002,27.21,27.02,26.82,26.63,26.25,N/A,N/A -2012,8,21,19,30,101510,100370,99250,74.67,0,6.25,6.61,6.66,6.66,6.63,6.6000000000000005,6.55,6.5,6.37,100.60000000000001,100.54,100.51,100.46000000000001,100.43,100.39,100.35000000000001,100.31,100.21000000000001,28.17,27.79,27.61,27.41,27.23,27.04,26.85,26.67,26.3,N/A,N/A -2012,8,21,20,30,101500,100350,99240,73.4,0,5.7700000000000005,6.07,6.09,6.0600000000000005,6.0200000000000005,5.98,5.92,5.86,5.72,107.72,107.3,107.02,106.72,106.43,106.14,105.84,105.54,104.88,28.22,27.85,27.68,27.48,27.3,27.11,26.92,26.740000000000002,26.38,N/A,N/A -2012,8,21,21,30,101470,100330,99220,67.48,0,4.7,4.97,5.01,5.01,5,4.99,4.97,4.95,4.9,114.03,113.81,113.60000000000001,113.39,113.19,113,112.8,112.61,112.2,28.52,28.18,28.01,27.82,27.63,27.45,27.26,27.080000000000002,26.71,N/A,N/A -2012,8,21,22,30,101470,100330,99210,66.34,0,4.9,5.21,5.25,5.2700000000000005,5.28,5.28,5.2700000000000005,5.26,5.24,119.71000000000001,119.62,119.48,119.32000000000001,119.17,119.01,118.85000000000001,118.69,118.35000000000001,28.7,28.36,28.19,27.990000000000002,27.8,27.62,27.43,27.240000000000002,26.87,N/A,N/A -2012,8,21,23,30,101470,100330,99210,68.96000000000001,0,4.05,4.3100000000000005,4.38,4.41,4.44,4.47,4.49,4.5,4.54,116.54,116.23,116.03,115.84,115.67,115.49000000000001,115.32000000000001,115.16,114.81,28.61,28.27,28.1,27.900000000000002,27.72,27.53,27.34,27.16,26.79,N/A,N/A -2012,8,22,0,30,101450,100310,99200,71.24,0,3.92,4.15,4.19,4.21,4.22,4.23,4.23,4.23,4.23,122,121.53,121.29,121.03,120.79,120.54,120.27,120,119.41,28.6,28.26,28.09,27.900000000000002,27.71,27.52,27.330000000000002,27.150000000000002,26.78,N/A,N/A -2012,8,22,1,30,101440,100300,99190,73.98,0,4.54,4.83,4.89,4.91,4.93,4.93,4.94,4.94,4.93,123.49000000000001,123.35000000000001,123.24000000000001,123.11,122.99000000000001,122.87,122.74000000000001,122.61,122.32000000000001,28.560000000000002,28.21,28.04,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.7,N/A,N/A -2012,8,22,2,30,101460,100320,99210,73.81,0,4.84,5.18,5.25,5.29,5.32,5.33,5.3500000000000005,5.36,5.37,123.23,123.31,123.41,123.5,123.58,123.65,123.73,123.8,123.92,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A -2012,8,22,3,30,101490,100350,99240,70.26,0,4.3500000000000005,4.64,4.71,4.75,4.7700000000000005,4.79,4.8100000000000005,4.82,4.8500000000000005,118.47,118.46000000000001,118.45,118.41,118.38,118.35000000000001,118.3,118.27,118.16,28.82,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A -2012,8,22,4,30,101480,100340,99230,69.02,0,3.72,3.96,4.01,4.04,4.0600000000000005,4.08,4.09,4.1,4.13,103.53,103.39,103.35000000000001,103.3,103.25,103.19,103.13,103.07000000000001,102.95,28.900000000000002,28.57,28.400000000000002,28.2,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A -2012,8,22,5,30,101500,100350,99240,69.41,0,4.5,4.8100000000000005,4.87,4.9,4.93,4.94,4.96,4.97,4.98,102.35000000000001,101.79,101.47,101.17,100.9,100.64,100.39,100.15,99.68,28.91,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A -2012,8,22,6,30,101520,100380,99270,68.38,0,5.04,5.4,5.48,5.5200000000000005,5.55,5.57,5.59,5.6000000000000005,5.62,100.76,100.62,100.56,100.5,100.43,100.36,100.3,100.24000000000001,100.12,28.990000000000002,28.66,28.48,28.28,28.1,27.900000000000002,27.71,27.52,27.14,N/A,N/A -2012,8,22,7,30,101550,100400,99290,64.6,0,4.64,4.97,5.04,5.09,5.12,5.14,5.16,5.17,5.19,98.93,99.37,99.56,99.74000000000001,99.89,100.03,100.17,100.3,100.53,29.2,28.88,28.71,28.51,28.32,28.13,27.93,27.75,27.36,N/A,N/A -2012,8,22,8,30,101560,100410,99300,65.41,0,5.13,5.51,5.58,5.62,5.65,5.67,5.68,5.69,5.71,109.48,109.5,109.49000000000001,109.49000000000001,109.5,109.51,109.52,109.54,109.56,29.150000000000002,28.82,28.66,28.46,28.26,28.080000000000002,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,22,9,30,101560,100410,99300,67.34,0,4.64,4.95,5.01,5.04,5.0600000000000005,5.08,5.09,5.09,5.1000000000000005,98.96000000000001,99.13,99.24000000000001,99.32000000000001,99.4,99.46000000000001,99.52,99.57000000000001,99.64,29.04,28.71,28.54,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.19,N/A,N/A -2012,8,22,10,30,101560,100410,99300,82.32000000000001,0,6.74,7.08,7.07,7.01,6.94,6.86,6.7700000000000005,6.68,6.5,71.29,72.5,73.39,74.4,75.35000000000001,76.33,77.35000000000001,78.34,80.56,27.89,27.5,27.34,27.150000000000002,26.98,26.810000000000002,26.63,26.47,26.13,N/A,N/A -2012,8,22,11,30,101570,100420,99310,86.89,0,8.35,8.97,9.11,9.16,9.19,9.200000000000001,9.200000000000001,9.18,9.14,56.84,57.1,57.32,57.54,57.75,57.94,58.160000000000004,58.370000000000005,58.84,27.35,26.900000000000002,26.7,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A -2012,8,22,12,30,101620,100470,99350,87.43,53.1,6.63,7.07,7.17,7.21,7.24,7.25,7.26,7.26,7.25,65.75,66.51,66.91,67.28,67.61,67.91,68.21000000000001,68.48,69.02,27.02,26.580000000000002,26.39,26.19,26,25.810000000000002,25.62,25.45,25.080000000000002,N/A,N/A -2012,8,22,13,30,101680,100510,99380,92.46000000000001,14.3,8.3,8.75,8.84,8.86,8.870000000000001,8.870000000000001,8.85,8.83,8.74,192.61,191.65,191.23000000000002,190.77,190.31,189.87,189.38,188.93,187.83,24.54,23.98,23.78,23.59,23.41,23.240000000000002,23.07,22.91,22.59,N/A,N/A -2012,8,22,14,30,101670,100500,99370,89.62,1.5,9.96,10.58,10.66,10.65,10.620000000000001,10.57,10.49,10.42,10.22,189.84,189.6,189.64000000000001,189.70000000000002,189.78,189.87,189.98,190.08,190.31,24.25,23.64,23.43,23.23,23.05,22.89,22.72,22.57,22.3,N/A,N/A -2012,8,22,15,30,101730,100560,99430,84.54,0.4,3.2800000000000002,3.35,3.34,3.31,3.2800000000000002,3.25,3.21,3.18,3.1,155.74,153.75,153.33,152.82,152.21,151.56,150.72,149.92000000000002,147.45000000000002,25.060000000000002,24.61,24.42,24.23,24.05,23.88,23.71,23.55,23.26,N/A,N/A -2012,8,22,16,30,101720,100550,99420,87.28,13.600000000000001,4.17,4.38,4.42,4.47,4.5600000000000005,4.68,5.04,5.47,6.49,36.11,38.79,40.93,43.52,46.62,50.04,55.59,61.74,68.68,24.77,24.330000000000002,24.16,24,23.87,23.75,23.71,23.69,24.05,N/A,N/A -2012,8,22,17,30,101650,100500,99380,73.62,0,2.3000000000000003,2.37,2.38,2.42,2.5500000000000003,2.79,3.15,3.5700000000000003,4.19,51.57,53.03,54.230000000000004,56.11,58.88,62.79,65.65,68.05,69.47,26.69,26.35,26.23,26.12,26.11,26.18,26.3,26.42,26.29,N/A,N/A -2012,8,22,18,30,101680,100530,99410,74.99,0,5.09,5.33,5.33,5.3100000000000005,5.28,5.24,5.2,5.16,5.07,117.68,117.11,116.77,116.4,116.04,115.68,115.29,114.92,114.11,27.25,26.84,26.650000000000002,26.45,26.26,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A -2012,8,22,19,30,101700,100550,99430,84.34,0,5.62,5.96,6.01,6.03,6.03,6.03,6.0200000000000005,6,5.96,150.8,151.18,151.41,151.63,151.83,152.03,152.21,152.37,152.72,26.830000000000002,26.38,26.18,25.97,25.77,25.57,25.37,25.18,24.79,N/A,N/A -2012,8,22,20,30,101640,100480,99370,77.18,0,4.79,5.1000000000000005,5.15,5.18,5.2,5.21,5.21,5.22,5.22,132.48,132.59,132.71,132.82,132.91,133,133.09,133.16,133.32,27.330000000000002,26.92,26.73,26.52,26.32,26.13,25.93,25.740000000000002,25.35,N/A,N/A -2012,8,22,21,30,101590,100430,99320,77.16,0,4.68,4.97,5.03,5.0600000000000005,5.08,5.09,5.1000000000000005,5.1000000000000005,5.11,119.48,119.83,120.07000000000001,120.29,120.47,120.65,120.82000000000001,120.97,121.29,27.5,27.1,26.91,26.7,26.51,26.310000000000002,26.12,25.93,25.55,N/A,N/A -2012,8,22,22,30,101560,100410,99290,77.92,0,3.97,4.19,4.24,4.2700000000000005,4.29,4.3,4.3100000000000005,4.32,4.34,112.23,112.11,112.05,111.97,111.89,111.83,111.76,111.68,111.54,27.5,27.1,26.92,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A -2012,8,22,23,30,101540,100390,99280,80.31,0,4.45,4.68,4.7,4.7,4.69,4.68,4.67,4.66,4.63,115.51,114.76,114.25,113.74000000000001,113.27,112.81,112.34,111.9,111.01,27.39,26.990000000000002,26.8,26.6,26.400000000000002,26.21,26.01,25.830000000000002,25.44,N/A,N/A -2012,8,23,0,30,101530,100380,99260,79.3,0,4.29,4.54,4.59,4.61,4.63,4.64,4.64,4.65,4.66,124.43,124.34,124.25,124.14,124.03,123.92,123.8,123.69,123.44,27.32,26.92,26.73,26.53,26.330000000000002,26.14,25.95,25.76,25.37,N/A,N/A -2012,8,23,1,30,101510,100360,99250,80.04,0,4.88,5.2,5.2700000000000005,5.3100000000000005,5.34,5.36,5.37,5.37,5.37,120.83,121.15,121.32000000000001,121.47,121.59,121.69,121.79,121.88,122.03,27.34,26.93,26.740000000000002,26.53,26.34,26.14,25.95,25.76,25.37,N/A,N/A -2012,8,23,2,30,101510,100360,99250,77.27,0,5.84,6.21,6.28,6.32,6.34,6.3500000000000005,6.36,6.36,6.36,119.72,119.56,119.45,119.35000000000001,119.27,119.18,119.11,119.04,118.9,27.62,27.21,27.02,26.82,26.62,26.43,26.240000000000002,26.05,25.66,N/A,N/A -2012,8,23,3,30,101520,100370,99260,75.86,0,5.6000000000000005,6.01,6.1000000000000005,6.16,6.2,6.23,6.25,6.2700000000000005,6.3100000000000005,124.08,124.26,124.33,124.39,124.44,124.49000000000001,124.54,124.59,124.68,27.75,27.35,27.16,26.96,26.76,26.57,26.37,26.18,25.8,N/A,N/A -2012,8,23,4,30,101520,100370,99260,74.55,0,6.12,6.59,6.7,6.7700000000000005,6.82,6.8500000000000005,6.88,6.91,6.94,133.38,132.78,132.57,132.39000000000001,132.25,132.13,132.03,131.93,131.77,28.11,27.72,27.54,27.34,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A -2012,8,23,5,30,101510,100360,99240,77.48,0,5.89,6.32,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.58,131.38,131.46,131.47,131.46,131.45,131.43,131.41,131.4,131.34,27.94,27.54,27.35,27.14,26.95,26.75,26.55,26.36,25.98,N/A,N/A -2012,8,23,6,30,101540,100390,99280,75.23,0,6.05,6.48,6.57,6.61,6.640000000000001,6.66,6.67,6.67,6.68,146.17000000000002,146.28,146.33,146.38,146.42000000000002,146.45000000000002,146.49,146.52,146.58,28.02,27.64,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.09,N/A,N/A -2012,8,23,7,30,101540,100400,99280,74.61,0,5.19,5.57,5.66,5.73,5.7700000000000005,5.8100000000000005,5.84,5.87,5.92,147.01,146.76,146.70000000000002,146.64000000000001,146.58,146.53,146.48,146.44,146.35,28.19,27.810000000000002,27.63,27.43,27.240000000000002,27.05,26.85,26.66,26.28,N/A,N/A -2012,8,23,8,30,101550,100400,99290,74.88,0,4.87,5.23,5.32,5.37,5.41,5.45,5.48,5.5,5.55,147.91,148.18,148.33,148.45000000000002,148.56,148.67000000000002,148.75,148.84,149.01,28.3,27.93,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A -2012,8,23,9,30,101540,100390,99280,77.13,0,4.0200000000000005,4.23,4.28,4.3,4.3100000000000005,4.32,4.33,4.34,4.3500000000000005,121.42,122.04,122.52,123.04,123.51,123.97,124.43,124.88000000000001,125.79,28.22,27.86,27.68,27.48,27.28,27.09,26.89,26.71,26.32,N/A,N/A -2012,8,23,10,30,101550,100400,99290,76.68,0,5.14,5.51,5.58,5.62,5.65,5.67,5.69,5.7,5.72,136.75,136.9,136.97,137.05,137.12,137.20000000000002,137.29,137.37,137.55,28.400000000000002,28.04,27.86,27.66,27.47,27.28,27.080000000000002,26.900000000000002,26.51,N/A,N/A -2012,8,23,11,30,101560,100410,99290,89.5,0,11.59,12.620000000000001,12.83,12.91,12.950000000000001,12.950000000000001,12.94,12.91,12.83,203.73000000000002,203.43,203.20000000000002,202.96,202.75,202.53,202.31,202.1,201.63,26.38,25.830000000000002,25.61,25.39,25.2,25.01,24.82,24.64,24.28,N/A,N/A -2012,8,23,12,30,101570,100420,99300,85.57000000000001,0.4,6.93,7.390000000000001,7.48,7.5200000000000005,7.54,7.54,7.54,7.5200000000000005,7.48,166.65,167.36,167.76,168.15,168.58,169.01,169.58,170.13,171.75,26.41,25.94,25.75,25.55,25.35,25.17,24.98,24.810000000000002,24.46,N/A,N/A -2012,8,23,13,30,101610,100450,99340,79.06,0,5.18,5.5,5.5600000000000005,5.6000000000000005,5.62,5.64,5.66,5.67,5.69,182.26,182.69,182.77,182.88,182.98,183.08,183.20000000000002,183.33,183.62,27.5,27.1,26.92,26.71,26.52,26.330000000000002,26.13,25.95,25.57,N/A,N/A -2012,8,23,14,30,101610,100460,99350,77.13,0,4.94,5.28,5.37,5.42,5.47,5.5,5.53,5.55,5.6000000000000005,169.44,169.89000000000001,170.21,170.49,170.73,170.95000000000002,171.16,171.36,171.73,28.13,27.75,27.580000000000002,27.37,27.18,26.990000000000002,26.79,26.6,26.22,N/A,N/A -2012,8,23,15,30,101630,100480,99370,74.71000000000001,0,5.57,5.99,6.09,6.15,6.2,6.23,6.2700000000000005,6.29,6.34,188.36,188.59,188.67000000000002,188.77,188.86,188.95000000000002,189.05,189.14000000000001,189.32,28.35,27.98,27.8,27.6,27.41,27.22,27.02,26.84,26.45,N/A,N/A -2012,8,23,16,30,101620,100470,99360,73.10000000000001,0,4.95,5.3100000000000005,5.4,5.45,5.49,5.53,5.55,5.58,5.62,184.87,185.1,185.22,185.35,185.45000000000002,185.55,185.65,185.73,185.89000000000001,28.64,28.29,28.11,27.91,27.72,27.53,27.330000000000002,27.14,26.76,N/A,N/A -2012,8,23,17,30,101630,100480,99370,77.51,0.7000000000000001,6.4,6.76,6.8100000000000005,6.83,6.83,6.83,6.83,6.82,6.82,200.92000000000002,201.69,202.01,202.28,202.51,202.70000000000002,202.87,203.01,203.17000000000002,28.03,27.650000000000002,27.47,27.28,27.1,26.91,26.73,26.55,26.2,N/A,N/A -2012,8,23,18,30,101620,100470,99360,75.51,0,6.2700000000000005,6.72,6.78,6.8100000000000005,6.82,6.82,6.8100000000000005,6.8,6.78,218.61,217.76,217.28,216.8,216.38,215.98000000000002,215.59,215.21,214.48000000000002,28.51,28.14,27.97,27.77,27.57,27.39,27.19,27,26.62,N/A,N/A -2012,8,23,19,30,101650,100500,99380,80.9,0.4,3.42,3.5,3.49,3.46,3.42,3.37,3.29,3.22,2.96,248.15,247.66,247.39000000000001,247.12,246.85,246.57,246.21,245.84,244.34,27.1,26.7,26.51,26.310000000000002,26.13,25.95,25.76,25.580000000000002,25.240000000000002,N/A,N/A -2012,8,23,20,30,101590,100430,99320,82.65,0,1.28,1.17,1.11,1.07,1.05,1.04,1.06,1.08,1.18,328.82,318.48,311.97,304.37,297.13,289.91,282.67,275.76,262.89,27.2,26.830000000000002,26.66,26.47,26.29,26.11,25.92,25.75,25.400000000000002,N/A,N/A -2012,8,23,21,30,101530,100380,99270,80,0,1.8900000000000001,2.17,2.29,2.41,2.52,2.62,2.71,2.8000000000000003,2.96,159.26,163.17000000000002,165.14000000000001,166.68,167.93,168.97,169.86,170.65,171.96,27.92,27.57,27.39,27.2,27.01,26.82,26.63,26.45,26.080000000000002,N/A,N/A -2012,8,23,22,30,101520,100370,99260,74.43,0,3.67,3.96,4.04,4.11,4.17,4.22,4.2700000000000005,4.32,4.41,169.13,168.97,168.91,168.88,168.84,168.8,168.77,168.73,168.67000000000002,28.39,28.04,27.87,27.67,27.48,27.3,27.1,26.92,26.55,N/A,N/A -2012,8,23,23,30,101470,100330,99220,71.49,0,3.5500000000000003,3.86,3.97,4.0600000000000005,4.14,4.21,4.28,4.34,4.46,175.86,175.23,174.96,174.74,174.56,174.4,174.25,174.11,173.86,28.67,28.34,28.18,27.98,27.8,27.61,27.42,27.240000000000002,26.86,N/A,N/A -2012,8,24,0,30,101440,100290,99180,61.75,0,5.22,5.61,5.66,5.69,5.71,5.72,5.72,5.72,5.72,160.03,160.11,160.20000000000002,160.25,160.27,160.3,160.31,160.31,160.3,29.13,28.82,28.650000000000002,28.45,28.27,28.080000000000002,27.88,27.7,27.32,N/A,N/A -2012,8,24,1,30,101440,100300,99190,61.95,0,6,6.55,6.66,6.73,6.78,6.8100000000000005,6.8500000000000005,6.87,6.91,159.69,159.61,159.61,159.6,159.6,159.59,159.58,159.56,159.54,29.1,28.78,28.61,28.41,28.22,28.03,27.84,27.650000000000002,27.26,N/A,N/A -2012,8,24,2,30,101430,100280,99170,66.46000000000001,0,6.8100000000000005,7.3500000000000005,7.46,7.5200000000000005,7.55,7.57,7.58,7.59,7.59,156.34,156.21,156.16,156.14000000000001,156.12,156.11,156.1,156.09,156.08,28.89,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.04,N/A,N/A -2012,8,24,3,30,101410,100270,99160,65.3,0,6.2,6.72,6.86,6.95,7.03,7.09,7.140000000000001,7.19,7.29,161.19,160.49,160.11,159.72,159.39000000000001,159.07,158.77,158.48,157.94,28.93,28.61,28.44,28.25,28.060000000000002,27.87,27.68,27.5,27.12,N/A,N/A -2012,8,24,4,30,101380,100240,99130,66.05,0,5.49,5.98,6.11,6.21,6.28,6.3500000000000005,6.41,6.46,6.5600000000000005,158.19,158.29,158.26,158.21,158.15,158.09,158.02,157.96,157.81,28.94,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,8,24,5,30,101380,100240,99130,72.33,0,5.4,5.84,5.94,6.01,6.0600000000000005,6.09,6.13,6.15,6.2,163.57,163.09,162.76,162.45000000000002,162.19,161.94,161.71,161.5,161.09,28.8,28.46,28.29,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.96,N/A,N/A -2012,8,24,6,30,101380,100240,99130,80.44,0,6.78,7.34,7.46,7.53,7.58,7.61,7.63,7.65,7.67,168.66,168.58,168.54,168.5,168.46,168.43,168.39000000000001,168.35,168.28,28.330000000000002,27.96,27.78,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.42,N/A,N/A -2012,8,24,7,30,101400,100260,99150,75.81,0,5.6000000000000005,6.12,6.25,6.36,6.45,6.5200000000000005,6.58,6.640000000000001,6.75,176.03,176.38,176.64000000000001,176.9,177.12,177.32,177.51,177.68,177.99,28.66,28.32,28.150000000000002,27.96,27.77,27.59,27.400000000000002,27.22,26.85,N/A,N/A -2012,8,24,8,30,101410,100260,99160,75.91,0,6.07,6.5200000000000005,6.63,6.69,6.74,6.78,6.8100000000000005,6.83,6.88,192.02,192.57,192.85,193.12,193.37,193.59,193.81,194.02,194.43,28.64,28.29,28.12,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A -2012,8,24,9,30,101420,100270,99160,76.99,0,6.5,6.99,7.1000000000000005,7.15,7.18,7.2,7.21,7.21,7.2,211.31,210.52,209.97,209.43,208.97,208.53,208.11,207.72,206.98000000000002,28.69,28.35,28.17,27.97,27.78,27.580000000000002,27.39,27.2,26.810000000000002,N/A,N/A -2012,8,24,10,30,101410,100270,99160,74.97,0,6.93,7.57,7.71,7.79,7.8500000000000005,7.88,7.91,7.930000000000001,7.94,199.58,199.26,199.14000000000001,199.05,198.98000000000002,198.92000000000002,198.88,198.83,198.76,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.1,N/A,N/A -2012,8,24,11,30,101430,100290,99180,73.41,0,6.26,6.8,6.94,7.0200000000000005,7.08,7.13,7.17,7.2,7.25,198.59,198.51,198.55,198.6,198.65,198.70000000000002,198.75,198.81,198.92000000000002,28.97,28.650000000000002,28.48,28.28,28.1,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A -2012,8,24,12,30,101420,100270,99170,74.65,0,5.61,6.05,6.16,6.22,6.2700000000000005,6.3,6.33,6.3500000000000005,6.38,206.37,206.13,206.03,205.92000000000002,205.83,205.74,205.65,205.57,205.41,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.36,26.98,N/A,N/A -2012,8,24,13,30,101420,100280,99170,76.3,0,5.2700000000000005,5.69,5.79,5.8500000000000005,5.9,5.93,5.96,5.98,6.01,211.24,211.37,211.42000000000002,211.47,211.52,211.57,211.63,211.69,211.81,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A -2012,8,24,14,30,101470,100320,99220,75.15,0,5.07,5.42,5.47,5.5,5.51,5.51,5.5,5.49,5.47,214.16,214.16,214.27,214.38,214.47,214.55,214.64000000000001,214.71,214.86,28.79,28.45,28.29,28.080000000000002,27.900000000000002,27.7,27.51,27.32,26.94,N/A,N/A -2012,8,24,15,30,101450,100310,99200,70.08,0,5.1000000000000005,5.43,5.5,5.53,5.55,5.5600000000000005,5.58,5.58,5.6000000000000005,234.08,233.74,233.52,233.31,233.13,232.96,232.79,232.63,232.33,28.990000000000002,28.67,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.560000000000002,27.18,N/A,N/A -2012,8,24,16,30,101460,100320,99210,74.06,0,3.17,3.36,3.4,3.42,3.44,3.46,3.47,3.49,3.5100000000000002,221.4,220.94,220.6,220.27,219.96,219.65,219.35,219.08,218.51,28.77,28.43,28.25,28.05,27.86,27.68,27.48,27.29,26.91,N/A,N/A -2012,8,24,17,30,101450,100310,99200,73.47,0,3.12,3.31,3.36,3.39,3.42,3.44,3.46,3.47,3.5,198.54,198.72,198.78,198.84,198.9,198.96,199.02,199.08,199.22,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,8,24,18,30,101490,100340,99220,83.93,0,11.09,12.13,12.32,12.4,12.43,12.43,12.4,12.370000000000001,12.25,164.44,164.68,164.70000000000002,164.71,164.72,164.74,164.76,164.77,164.82,27.36,26.89,26.68,26.47,26.27,26.080000000000002,25.88,25.7,25.330000000000002,N/A,N/A -2012,8,24,19,30,101450,100290,99170,87.06,0,9.91,10.67,10.8,10.83,10.83,10.81,10.76,10.71,10.55,173.06,173.56,173.83,174.12,174.41,174.70000000000002,175.06,175.4,176.34,26.57,26.080000000000002,25.88,25.68,25.490000000000002,25.310000000000002,25.13,24.96,24.64,N/A,N/A -2012,8,24,20,30,101420,100270,99160,77.05,0,8.75,9.46,9.620000000000001,9.700000000000001,9.76,9.790000000000001,9.82,9.84,9.870000000000001,187.31,187.48,187.59,187.72,187.85,187.99,188.16,188.33,188.78,27.42,26.990000000000002,26.810000000000002,26.61,26.43,26.25,26.060000000000002,25.89,25.55,N/A,N/A -2012,8,24,21,30,101390,100240,99120,83.03,0,7.78,8.39,8.52,8.59,8.64,8.67,8.69,8.71,8.73,179.75,180.05,180.27,180.49,180.71,180.93,181.15,181.36,181.86,27.29,26.85,26.66,26.45,26.26,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,8,24,22,30,101390,100240,99130,77.34,0,8.6,9.32,9.48,9.56,9.620000000000001,9.66,9.68,9.700000000000001,9.71,194.70000000000002,194.65,194.59,194.53,194.47,194.43,194.37,194.32,194.19,27.96,27.560000000000002,27.38,27.18,26.98,26.79,26.6,26.41,26.03,N/A,N/A -2012,8,24,23,30,101350,100210,99100,72.91,0,6.49,6.99,7.1000000000000005,7.16,7.2,7.23,7.26,7.28,7.3100000000000005,184.79,184.67000000000002,184.64000000000001,184.59,184.55,184.51,184.47,184.42000000000002,184.31,28.35,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.05,26.87,26.490000000000002,N/A,N/A -2012,8,25,0,30,101310,100170,99060,71.49,0,6.5600000000000005,7.1000000000000005,7.21,7.28,7.32,7.3500000000000005,7.38,7.4,7.43,172.97,173,173.06,173.11,173.16,173.19,173.24,173.28,173.35,28.52,28.17,27.990000000000002,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A -2012,8,25,1,30,101270,100130,99020,76.45,0,6.24,6.75,6.87,6.94,6.99,7.03,7.07,7.1000000000000005,7.15,157.76,157.71,157.71,157.71,157.70000000000002,157.69,157.67000000000002,157.66,157.64000000000001,28.43,28.060000000000002,27.89,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,8,25,2,30,101280,100140,99030,81.33,0,6.99,7.5600000000000005,7.68,7.74,7.78,7.8100000000000005,7.83,7.8500000000000005,7.86,150.28,150.93,151.31,151.67000000000002,152,152.31,152.62,152.91,153.49,28.25,27.88,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.35,N/A,N/A -2012,8,25,3,30,101270,100130,99020,80.71000000000001,0,7.390000000000001,8.03,8.17,8.26,8.31,8.36,8.38,8.41,8.44,155.5,155.57,155.62,155.67000000000002,155.72,155.77,155.82,155.87,155.97,28.310000000000002,27.93,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A -2012,8,25,4,30,101290,100150,99040,78.93,0,7.11,7.74,7.92,8.040000000000001,8.13,8.21,8.28,8.34,8.46,151.84,152.51,152.78,153.03,153.25,153.46,153.65,153.84,154.19,28.55,28.21,28.04,27.84,27.66,27.47,27.28,27.1,26.73,N/A,N/A -2012,8,25,5,30,101280,100140,99040,75.63,0,8.21,9.02,9.22,9.34,9.43,9.5,9.55,9.59,9.66,157.46,157.97,158.15,158.29,158.4,158.49,158.57,158.63,158.72,29.05,28.73,28.57,28.37,28.19,28,27.8,27.62,27.240000000000002,N/A,N/A -2012,8,25,6,30,101260,100120,99010,75.67,0,7.04,7.8,7.99,8.11,8.21,8.290000000000001,8.35,8.4,8.49,162.13,162.29,162.4,162.52,162.62,162.72,162.82,162.9,163.08,29.1,28.8,28.63,28.44,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,25,7,30,101300,100160,99050,79.4,0,8.42,9.17,9.35,9.450000000000001,9.52,9.57,9.61,9.65,9.72,161.32,161.47,161.53,161.6,161.69,161.76,161.86,161.95000000000002,162.17000000000002,28.44,28.1,27.93,27.740000000000002,27.560000000000002,27.38,27.19,27.02,26.67,N/A,N/A -2012,8,25,8,30,101320,100170,99060,83.19,0,8.46,9.27,9.46,9.57,9.64,9.700000000000001,9.73,9.76,9.8,170.34,170.51,170.58,170.66,170.71,170.76,170.81,170.86,170.95000000000002,28.28,27.92,27.740000000000002,27.54,27.35,27.150000000000002,26.96,26.78,26.39,N/A,N/A -2012,8,25,9,30,101340,100200,99090,83.29,0,8.13,8.870000000000001,9.040000000000001,9.14,9.200000000000001,9.24,9.27,9.290000000000001,9.31,167.79,168.18,168.39000000000001,168.59,168.77,168.94,169.1,169.25,169.55,28.51,28.16,27.990000000000002,27.79,27.6,27.400000000000002,27.21,27.02,26.64,N/A,N/A -2012,8,25,10,30,101320,100180,99070,83.25,0,6.46,7,7.12,7.19,7.24,7.28,7.3,7.33,7.37,170.18,170.39000000000001,170.5,170.6,170.68,170.75,170.83,170.9,171.06,28.44,28.09,27.92,27.72,27.54,27.35,27.16,26.97,26.6,N/A,N/A -2012,8,25,11,30,101330,100190,99080,83.28,0,8.07,8.81,8.96,9.03,9.09,9.120000000000001,9.14,9.16,9.17,160.28,160.36,160.48,160.6,160.72,160.85,160.98,161.1,161.38,28.51,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.650000000000002,N/A,N/A -2012,8,25,12,30,101360,100220,99110,78.97,0,7.5200000000000005,8.21,8.38,8.48,8.55,8.61,8.65,8.69,8.75,158.6,159.13,159.41,159.69,159.93,160.16,160.39000000000001,160.6,161.02,28.79,28.47,28.3,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A -2012,8,25,13,30,101370,100230,99120,80.31,0,6.83,7.6000000000000005,7.8100000000000005,7.96,8.08,8.17,8.25,8.31,8.42,164.25,164.26,164.26,164.28,164.29,164.32,164.36,164.39000000000001,164.48,28.8,28.490000000000002,28.32,28.13,27.94,27.75,27.560000000000002,27.38,27,N/A,N/A -2012,8,25,14,30,101390,100250,99140,80.04,0,6.92,7.59,7.76,7.87,7.96,8.02,8.08,8.13,8.21,165.44,165.5,165.47,165.43,165.38,165.33,165.27,165.22,165.1,28.79,28.47,28.3,28.1,27.91,27.72,27.53,27.35,26.97,N/A,N/A -2012,8,25,15,30,101390,100240,99140,79.82000000000001,0,7.5200000000000005,8.24,8.4,8.5,8.57,8.620000000000001,8.66,8.69,8.73,163.03,162.96,162.93,162.91,162.89000000000001,162.88,162.88,162.88,162.87,28.900000000000002,28.580000000000002,28.41,28.21,28.03,27.84,27.64,27.46,27.080000000000002,N/A,N/A -2012,8,25,16,30,101430,100280,99180,78.47,0,7.21,7.86,8.01,8.09,8.15,8.19,8.23,8.26,8.3,159.69,159.92000000000002,160,160.08,160.14000000000001,160.19,160.23,160.28,160.36,28.98,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A -2012,8,25,17,30,101410,100260,99160,79.2,0,7.5600000000000005,8.31,8.5,8.61,8.69,8.75,8.8,8.84,8.9,161.65,161.47,161.43,161.39000000000001,161.35,161.32,161.28,161.25,161.20000000000002,28.96,28.63,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A -2012,8,25,18,30,101380,100240,99140,80.86,0,8,8.74,8.9,8.98,9.040000000000001,9.07,9.09,9.1,9.11,157.96,158.08,158.09,158.11,158.14000000000001,158.17000000000002,158.21,158.25,158.35,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.5,27.12,N/A,N/A -2012,8,25,19,30,101390,100250,99140,80.27,0,9.27,10.16,10.38,10.48,10.55,10.58,10.61,10.61,10.61,149.46,149.59,149.65,149.67000000000002,149.68,149.68,149.67000000000002,149.67000000000002,149.65,28.93,28.62,28.45,28.25,28.07,27.88,27.69,27.5,27.13,N/A,N/A -2012,8,25,20,30,101360,100220,99110,82.2,0,8.98,9.89,10.1,10.23,10.31,10.36,10.4,10.43,10.450000000000001,162.47,162.56,162.56,162.57,162.58,162.6,162.62,162.64000000000001,162.69,28.87,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.43,27.04,N/A,N/A -2012,8,25,21,30,101380,100240,99130,81.23,0,9.07,9.88,10.05,10.13,10.18,10.21,10.22,10.22,10.23,165.85,165.79,165.78,165.75,165.73,165.71,165.71,165.71,165.68,28.87,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A -2012,8,25,22,30,101440,100290,99170,87.60000000000001,0,9.63,10.28,10.47,10.52,10.55,10.56,10.57,10.6,10.84,208.42000000000002,207.88,207.65,207.25,206.82,206.27,205.59,204.84,202.44,26.13,25.67,25.490000000000002,25.310000000000002,25.17,25.03,24.92,24.82,24.78,N/A,N/A -2012,8,25,23,30,101410,100260,99140,86.60000000000001,0,5.86,6.3100000000000005,6.41,6.49,6.5600000000000005,6.65,6.78,6.92,7.79,178.8,178.53,178.72,178.87,179.01,179.14000000000001,179.3,179.47,179.84,26.6,26.2,26.02,25.84,25.67,25.51,25.37,25.23,25.18,N/A,N/A -2012,8,26,0,30,101350,100200,99090,87.36,0,7.2700000000000005,7.75,7.82,7.84,7.83,7.8100000000000005,7.78,7.74,7.66,157.52,158.02,158.48,158.98,159.48,159.98,160.57,161.14000000000001,162.58,27.03,26.61,26.42,26.22,26.03,25.84,25.650000000000002,25.48,25.11,N/A,N/A -2012,8,26,1,30,101390,100240,99130,77.10000000000001,0,5.13,5.49,5.58,5.63,5.67,5.7,5.73,5.7700000000000005,5.8500000000000005,138.96,139.29,139.45000000000002,139.62,139.79,139.96,140.17000000000002,140.39000000000001,141,27.84,27.48,27.3,27.1,26.92,26.73,26.54,26.36,25.990000000000002,N/A,N/A -2012,8,26,2,30,101400,100250,99130,90.89,0,9.01,9.69,9.76,9.75,9.700000000000001,9.64,9.55,9.46,9.23,109.60000000000001,110.33,110.68,111.03,111.38,111.72,112.08,112.42,113.19,27.01,26.560000000000002,26.37,26.17,25.98,25.8,25.61,25.44,25.080000000000002,N/A,N/A -2012,8,26,3,30,101390,100240,99130,89.02,0,7.890000000000001,8.45,8.540000000000001,8.56,8.56,8.55,8.51,8.48,8.39,139.34,139.79,140.04,140.31,140.59,140.88,141.23,141.56,142.5,27.07,26.63,26.45,26.25,26.07,25.89,25.7,25.53,25.19,N/A,N/A -2012,8,26,4,30,101410,100270,99160,85.77,0,7.94,8.61,8.76,8.84,8.89,8.93,8.950000000000001,8.97,8.99,134.22,134.42000000000002,134.59,134.77,134.94,135.11,135.3,135.46,135.83,27.72,27.32,27.13,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A -2012,8,26,5,30,101420,100270,99160,85.43,0,8.38,9.14,9.33,9.44,9.52,9.57,9.620000000000001,9.65,9.700000000000001,137.6,137.88,137.95000000000002,138.03,138.1,138.17000000000002,138.23,138.29,138.43,27.98,27.6,27.41,27.21,27.01,26.82,26.63,26.44,26.05,N/A,N/A -2012,8,26,6,30,101420,100270,99160,82.02,0,9.6,10.34,10.41,10.4,10.35,10.290000000000001,10.200000000000001,10.1,9.89,164.75,164.59,164.18,163.70000000000002,163.22,162.72,162.17000000000002,161.64000000000001,160.43,27.64,27.22,27.04,26.85,26.67,26.490000000000002,26.310000000000002,26.14,25.8,N/A,N/A -2012,8,26,7,30,101490,100340,99230,86.48,0,7.46,8.07,8.21,8.290000000000001,8.35,8.4,8.43,8.46,8.52,141.23,141.22,141.17000000000002,141.11,141.04,140.98,140.9,140.82,140.65,27.76,27.37,27.19,26.990000000000002,26.79,26.61,26.42,26.23,25.86,N/A,N/A -2012,8,26,8,30,101440,100300,99190,79.58,0,6.7700000000000005,7.32,7.44,7.51,7.55,7.58,7.6000000000000005,7.61,7.63,137.54,137.44,137.4,137.37,137.33,137.31,137.28,137.25,137.23,28.29,27.93,27.76,27.560000000000002,27.36,27.18,26.98,26.79,26.41,N/A,N/A -2012,8,26,9,30,101470,100330,99220,80.57000000000001,0,6.9,7.49,7.63,7.7,7.76,7.8,7.82,7.8500000000000005,7.87,137.23,137.37,137.46,137.54,137.61,137.68,137.76,137.82,137.96,28.39,28.04,27.86,27.66,27.47,27.28,27.080000000000002,26.89,26.51,N/A,N/A -2012,8,26,10,30,101510,100360,99260,82.52,0,6.51,7.1000000000000005,7.24,7.33,7.390000000000001,7.44,7.48,7.5,7.55,133.06,133.03,133,132.98,132.96,132.94,132.92000000000002,132.91,132.87,28.45,28.1,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A -2012,8,26,11,30,101540,100390,99290,78.71000000000001,0,7.38,8.06,8.22,8.32,8.38,8.43,8.46,8.49,8.52,129.76,129.96,130.08,130.2,130.31,130.4,130.49,130.58,130.75,28.71,28.38,28.21,28.01,27.810000000000002,27.62,27.43,27.240000000000002,26.85,N/A,N/A -2012,8,26,12,30,101540,100390,99290,77.65,0,7.3100000000000005,7.94,8.07,8.120000000000001,8.16,8.18,8.19,8.19,8.17,133.74,134.04,134.17000000000002,134.31,134.43,134.55,134.67000000000002,134.78,135,28.7,28.37,28.2,28,27.810000000000002,27.62,27.42,27.240000000000002,26.85,N/A,N/A -2012,8,26,13,30,101620,100470,99360,71.67,0,6.0600000000000005,6.5600000000000005,6.67,6.73,6.7700000000000005,6.8,6.8100000000000005,6.83,6.8500000000000005,138.04,137.84,137.77,137.70000000000002,137.65,137.59,137.54,137.5,137.41,28.95,28.64,28.47,28.27,28.080000000000002,27.900000000000002,27.7,27.51,27.13,N/A,N/A -2012,8,26,14,30,101640,100490,99380,71.32000000000001,0,5.5600000000000005,6.0200000000000005,6.12,6.17,6.2,6.23,6.25,6.2700000000000005,6.29,141.57,141.16,140.98,140.81,140.66,140.51,140.38,140.24,139.99,28.93,28.61,28.44,28.25,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,8,26,15,30,101690,100540,99430,73.01,0,4.7700000000000005,5.1000000000000005,5.15,5.17,5.17,5.17,5.17,5.16,5.13,130.14000000000001,130.24,130.32,130.4,130.48,130.56,130.64000000000001,130.71,130.86,28.830000000000002,28.5,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.37,26.990000000000002,N/A,N/A -2012,8,26,16,30,101690,100540,99430,67.27,0,4.54,4.78,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8,4.78,4.7700000000000005,4.74,120.37,120.52,120.7,120.88,121.02,121.16,121.3,121.42,121.64,29,28.68,28.51,28.310000000000002,28.11,27.93,27.73,27.54,27.16,N/A,N/A -2012,8,26,17,30,101680,100530,99420,69.72,0,3.5700000000000003,3.83,3.89,3.93,3.96,3.98,3.99,4.01,4.03,112.96000000000001,113.32000000000001,113.49000000000001,113.64,113.76,113.85000000000001,113.95,114.04,114.21000000000001,28.96,28.63,28.46,28.26,28.07,27.88,27.68,27.5,27.11,N/A,N/A -2012,8,26,18,30,101680,100540,99420,68.11,0,3.58,3.8000000000000003,3.84,3.86,3.88,3.89,3.9,3.9,3.91,116.06,116.21000000000001,116.35000000000001,116.49000000000001,116.60000000000001,116.72,116.82000000000001,116.91,117.12,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A -2012,8,26,19,30,101680,100530,99420,64.57000000000001,0,2.82,3.02,3.08,3.13,3.16,3.19,3.22,3.24,3.29,117.01,117.10000000000001,117.22,117.33,117.42,117.5,117.58,117.66,117.83,29.19,28.87,28.69,28.5,28.3,28.11,27.92,27.73,27.35,N/A,N/A -2012,8,26,20,30,101620,100480,99370,71.79,0,3.91,4.21,4.28,4.33,4.37,4.41,4.44,4.46,4.51,121.22,121.37,121.5,121.63,121.77,121.89,122.02,122.14,122.39,28.94,28.59,28.42,28.22,28.03,27.84,27.64,27.45,27.07,N/A,N/A -2012,8,26,21,30,101580,100430,99320,70.38,0,3.73,4,4.0600000000000005,4.1,4.13,4.15,4.17,4.18,4.21,115.34,115.8,115.94,116.06,116.18,116.28,116.37,116.44,116.60000000000001,28.98,28.66,28.490000000000002,28.29,28.1,27.91,27.71,27.53,27.14,N/A,N/A -2012,8,26,22,30,101540,100390,99280,72.95,0,4.93,5.26,5.3,5.3100000000000005,5.32,5.32,5.3100000000000005,5.3,5.2700000000000005,123.55,122.96000000000001,122.69,122.4,122.14,121.89,121.63,121.4,120.91,28.92,28.59,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A -2012,8,26,23,30,101540,100390,99280,72.41,0,3.87,4.15,4.2,4.23,4.25,4.26,4.2700000000000005,4.28,4.29,109.62,109.71000000000001,109.77,109.83,109.89,109.94,110,110.06,110.19,28.91,28.6,28.43,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,8,27,0,30,101540,100390,99280,77.98,0,5.36,5.7700000000000005,5.8500000000000005,5.89,5.92,5.93,5.94,5.94,5.94,105.86,106.57000000000001,106.9,107.22,107.5,107.76,108,108.24000000000001,108.68,28.7,28.37,28.2,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,8,27,1,30,101480,100330,99220,78.68,0,4.5,4.8100000000000005,4.87,4.9,4.91,4.92,4.93,4.93,4.92,113.2,113.31,113.39,113.46000000000001,113.53,113.59,113.65,113.71000000000001,113.82000000000001,28.52,28.19,28.01,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A -2012,8,27,2,30,101510,100360,99250,79.67,0,5.29,5.65,5.71,5.74,5.75,5.75,5.75,5.74,5.72,124.59,124.52,124.47,124.42,124.38000000000001,124.34,124.29,124.25,124.18,28.46,28.12,27.94,27.75,27.560000000000002,27.36,27.17,26.98,26.6,N/A,N/A -2012,8,27,3,30,101500,100350,99240,81.74,0,4.74,5.07,5.13,5.16,5.18,5.19,5.19,5.19,5.19,120.54,120.69,120.77,120.84,120.89,120.92,120.96000000000001,121.01,121.08,28.36,28.01,27.84,27.64,27.45,27.26,27.07,26.88,26.5,N/A,N/A -2012,8,27,4,30,101490,100350,99240,78.78,0,4.3,4.58,4.64,4.66,4.68,4.69,4.7,4.7,4.7,119.59,119.89,120.05,120.2,120.34,120.48,120.61,120.74000000000001,120.99000000000001,28.400000000000002,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A -2012,8,27,5,30,101490,100340,99230,79.81,0,3.64,3.85,3.89,3.9,3.9,3.9,3.89,3.89,3.86,122.83,122.86,122.81,122.74000000000001,122.68,122.61,122.54,122.47,122.31,28.330000000000002,27.98,27.810000000000002,27.61,27.42,27.23,27.03,26.85,26.46,N/A,N/A -2012,8,27,6,30,101510,100360,99250,78.32000000000001,0,2.41,2.54,2.56,2.57,2.57,2.58,2.58,2.58,2.58,109.71000000000001,110.22,110.36,110.5,110.62,110.73,110.84,110.94,111.15,28.3,27.95,27.78,27.580000000000002,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A -2012,8,27,7,30,101530,100380,99270,74.06,0,2.24,2.38,2.41,2.44,2.46,2.48,2.49,2.5100000000000002,2.54,97.24000000000001,98.03,98.55,99.04,99.49000000000001,99.9,100.32000000000001,100.71000000000001,101.48,28.37,28.03,27.86,27.66,27.47,27.28,27.080000000000002,26.900000000000002,26.52,N/A,N/A -2012,8,27,8,30,101550,100400,99290,71.2,0,2.4,2.5,2.5,2.49,2.49,2.48,2.47,2.46,2.44,117.21000000000001,116.60000000000001,116.25,115.88,115.54,115.2,114.85000000000001,114.53,113.83,28.43,28.09,27.92,27.72,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,8,27,9,30,101550,100400,99290,71.3,0,1.3900000000000001,1.49,1.51,1.54,1.56,1.58,1.6,1.61,1.6500000000000001,103.74000000000001,103.82000000000001,103.92,104.05,104.15,104.23,104.31,104.39,104.57000000000001,28.39,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A -2012,8,27,10,30,101560,100410,99300,68.41,0,0.99,1.04,1.05,1.06,1.07,1.08,1.08,1.09,1.1,45.75,44.57,44.27,43.980000000000004,43.71,43.46,43.21,42.99,42.51,28.51,28.18,28.01,27.810000000000002,27.62,27.43,27.23,27.05,26.66,N/A,N/A -2012,8,27,11,30,101570,100420,99310,66.78,0,1.8900000000000001,1.94,1.94,1.93,1.92,1.9100000000000001,1.9000000000000001,1.8900000000000001,1.86,40.08,40.89,41.49,42.07,42.61,43.14,43.68,44.19,45.29,28.53,28.2,28.03,27.84,27.650000000000002,27.46,27.26,27.080000000000002,26.69,N/A,N/A -2012,8,27,12,30,101590,100440,99330,66.7,0,2.95,3.09,3.11,3.11,3.11,3.11,3.1,3.1,3.09,25.310000000000002,24.900000000000002,24.71,24.53,24.37,24.23,24.080000000000002,23.94,23.68,28.61,28.28,28.11,27.92,27.73,27.54,27.34,27.16,26.77,N/A,N/A -2012,8,27,13,30,101610,100460,99350,79.92,0,4.75,4.99,5.0200000000000005,5.01,5,4.98,4.96,4.93,4.87,25.150000000000002,25.34,25.51,25.68,25.84,26,26.17,26.34,26.71,27.830000000000002,27.45,27.27,27.07,26.88,26.69,26.490000000000002,26.310000000000002,25.93,N/A,N/A -2012,8,27,14,30,101640,100480,99370,79.53,0,4.46,4.68,4.69,4.68,4.67,4.64,4.62,4.59,4.53,19.79,19.77,19.8,19.830000000000002,19.85,19.87,19.89,19.900000000000002,19.93,27.69,27.32,27.14,26.94,26.740000000000002,26.560000000000002,26.36,26.18,25.8,N/A,N/A -2012,8,27,15,30,101620,100470,99360,77.95,0,4.14,4.36,4.39,4.4,4.4,4.39,4.38,4.37,4.3500000000000005,13.540000000000001,13.35,13.24,13.120000000000001,13,12.88,12.74,12.61,12.3,27.77,27.39,27.21,27.02,26.82,26.63,26.44,26.26,25.88,N/A,N/A -2012,8,27,16,30,101620,100470,99360,72.28,0,3.74,3.97,4.0200000000000005,4.0600000000000005,4.08,4.1,4.12,4.13,4.16,16.81,16.45,16.17,15.89,15.620000000000001,15.35,15.07,14.8,14.18,28.2,27.85,27.67,27.48,27.29,27.1,26.900000000000002,26.72,26.34,N/A,N/A -2012,8,27,17,30,101570,100420,99310,68.86,0,2.4,2.5300000000000002,2.56,2.58,2.6,2.62,2.64,2.66,2.7,26.09,24.8,24.09,23.38,22.72,22.080000000000002,21.43,20.830000000000002,19.56,28.57,28.23,28.060000000000002,27.86,27.67,27.490000000000002,27.29,27.11,26.740000000000002,N/A,N/A -2012,8,27,18,30,101510,100360,99250,68.04,0,1.17,1.24,1.27,1.28,1.31,1.32,1.35,1.37,1.42,11.82,9.96,8.9,7.9,7,6.16,5.3100000000000005,4.49,2.89,28.78,28.44,28.27,28.07,27.88,27.7,27.5,27.32,26.95,N/A,N/A -2012,8,27,19,30,101470,100330,99220,67.17,0,1.02,1.06,1.07,1.07,1.08,1.09,1.1,1.11,1.1400000000000001,245.58,249.66,252.03,254.53,256.92,259.29,261.87,264.4,270.24,29.05,28.71,28.54,28.35,28.16,27.97,27.79,27.61,27.240000000000002,N/A,N/A -2012,8,27,20,30,101390,100250,99140,67.34,0,1.92,1.94,1.92,1.8900000000000001,1.85,1.82,1.78,1.73,1.6300000000000001,220.66,222,222.89000000000001,223.91,225.01,226.16,227.71,229.29,234.49,29.19,28.85,28.68,28.48,28.3,28.11,27.92,27.75,27.39,N/A,N/A -2012,8,27,21,30,101310,100170,99070,66.58,0,1.34,1.3,1.25,1.19,1.12,1.06,0.97,0.88,0.89,196.77,199.56,201.51,204.02,207.32,211.08,218.47,226.23000000000002,272.33,29.42,29.09,28.93,28.740000000000002,28.57,28.400000000000002,28.23,28.080000000000002,27.86,N/A,N/A -2012,8,27,22,30,101280,100140,99040,66.86,0,1.93,2.15,2.24,2.33,2.41,2.49,2.58,2.66,2.81,276.2,280.06,282.1,283.99,285.67,287.25,288.72,290.1,292.66,29.67,29.35,29.19,28.990000000000002,28.8,28.62,28.42,28.23,27.85,N/A,N/A -2012,8,27,23,30,101220,100080,98980,72.2,0,2.34,2.57,2.63,2.69,2.73,2.7800000000000002,2.83,2.87,2.96,300.98,303.15000000000003,304.39,305.48,306.44,307.31,308.15000000000003,308.95,310.42,29.75,29.46,29.3,29.11,28.93,28.740000000000002,28.55,28.37,28,N/A,N/A -2012,8,28,0,30,101200,100060,98960,75.64,0,6.83,7.3500000000000005,7.37,7.32,7.25,7.17,7.0600000000000005,6.95,6.69,335.29,335.31,335.25,335.16,335.05,334.93,334.78000000000003,334.63,334.21,29.37,29.07,28.92,28.73,28.560000000000002,28.38,28.2,28.03,27.69,N/A,N/A -2012,8,28,1,30,101190,100050,98950,73.8,0,6.67,7.2,7.28,7.3100000000000005,7.3500000000000005,7.41,7.66,7.98,8.11,331.96,332.36,332.65000000000003,333.02,333.51,334.12,335.42,336.98,338.43,29.55,29.3,29.16,29,28.85,28.72,28.67,28.66,28.51,N/A,N/A -2012,8,28,2,30,101180,100040,98940,72.92,0,6.13,6.63,6.71,6.74,6.7700000000000005,6.79,6.84,6.9,7.6000000000000005,336.85,337.13,337.27,337.46,337.71,338.02,338.64,339.33,347.63,29.38,29.1,28.95,28.77,28.61,28.44,28.3,28.16,28.29,N/A,N/A -2012,8,28,3,30,101150,100010,98910,75.08,0,6.0200000000000005,6.5,6.58,6.61,6.65,6.68,6.78,6.88,7.84,348.14,348.56,348.85,349.22,349.67,350.2,351.13,352.17,359.22,29.29,29,28.85,28.67,28.5,28.330000000000002,28.19,28.05,28.150000000000002,N/A,N/A -2012,8,28,4,30,101130,99990,98890,75.87,0,6.01,6.5200000000000005,6.62,6.67,6.71,6.74,6.78,6.82,6.97,348.59000000000003,349.13,349.49,349.88,350.29,350.72,351.29,351.86,353.84000000000003,29.18,28.88,28.73,28.54,28.37,28.19,28.01,27.85,27.54,N/A,N/A -2012,8,28,5,30,101130,99990,98880,75.65,0,6.5,7.05,7.140000000000001,7.19,7.22,7.25,7.28,7.33,7.55,357.78000000000003,358.27,358.55,358.91,359.31,359.77,0.44,1.1500000000000001,3.8000000000000003,29.14,28.84,28.68,28.490000000000002,28.310000000000002,28.14,27.96,27.79,27.5,N/A,N/A -2012,8,28,6,30,101120,99980,98870,76.56,0,6.58,7.140000000000001,7.24,7.28,7.32,7.3500000000000005,7.37,7.4,7.5,357.39,358.14,358.54,358.99,359.45,359.93,0.54,1.16,3.08,29.01,28.7,28.54,28.35,28.17,27.990000000000002,27.810000000000002,27.64,27.3,N/A,N/A -2012,8,28,7,30,101110,99970,98870,77.03,0,6.8100000000000005,7.33,7.42,7.45,7.47,7.48,7.5200000000000005,7.5600000000000005,7.96,4.17,4.69,5.04,5.45,5.92,6.45,7.24,8.07,11.92,28.8,28.490000000000002,28.330000000000002,28.150000000000002,27.990000000000002,27.830000000000002,27.68,27.54,27.39,N/A,N/A -2012,8,28,8,30,101080,99940,98840,76.04,0,6.29,6.75,6.82,6.8500000000000005,6.88,6.9,6.95,7.01,7.5200000000000005,3.74,4.2700000000000005,4.66,5.11,5.67,6.32,7.33,8.42,13.43,28.71,28.400000000000002,28.25,28.080000000000002,27.91,27.76,27.62,27.5,27.5,N/A,N/A -2012,8,28,9,30,101090,99950,98840,77.22,0,6.94,7.47,7.57,7.61,7.66,7.7,7.8,7.930000000000001,9.02,6.54,7,7.3100000000000005,7.65,8.05,8.52,9.290000000000001,10.14,14.96,28.47,28.14,27.98,27.8,27.63,27.47,27.330000000000002,27.21,27.330000000000002,N/A,N/A -2012,8,28,10,30,101060,99920,98820,74.24,0,7.09,7.66,7.7700000000000005,7.84,7.9,7.95,8.06,8.18,9.11,11.94,12.31,12.58,12.9,13.280000000000001,13.71,14.38,15.11,18.89,28.6,28.28,28.12,27.95,27.79,27.63,27.5,27.38,27.45,N/A,N/A -2012,8,28,11,30,101080,99940,98830,74.41,0,7.03,7.55,7.640000000000001,7.68,7.7,7.72,7.74,7.76,7.91,358.56,359.27,359.73,0.25,0.8200000000000001,1.42,2.22,3.04,5.83,28.29,27.94,27.78,27.59,27.41,27.240000000000002,27.07,26.91,26.62,N/A,N/A -2012,8,28,12,30,101070,99920,98820,74.51,0,7.99,8.66,8.78,8.84,8.88,8.91,8.93,8.950000000000001,9.02,0.16,0.85,1.27,1.72,2.2,2.7,3.31,3.9,5.57,28.17,27.8,27.63,27.44,27.25,27.080000000000002,26.89,26.72,26.38,N/A,N/A -2012,8,28,13,30,101060,99910,98800,76.98,0,7.47,8.02,8.11,8.15,8.18,8.2,8.23,8.27,8.61,9.040000000000001,9.47,9.75,10.05,10.4,10.77,11.33,11.91,14.72,27.76,27.38,27.2,27.01,26.84,26.66,26.490000000000002,26.330000000000002,26.12,N/A,N/A -2012,8,28,14,30,101080,99930,98820,75.81,0,7.05,7.57,7.65,7.7,7.73,7.75,7.8100000000000005,7.87,8.370000000000001,2.25,2.68,2.97,3.31,3.72,4.19,4.91,5.68,9.71,28.02,27.66,27.490000000000002,27.3,27.12,26.95,26.78,26.63,26.45,N/A,N/A -2012,8,28,15,30,101050,99910,98810,72.37,0,6.67,7.19,7.28,7.32,7.36,7.4,7.49,7.58,8.56,351.75,352.3,352.72,353.23,353.86,354.57,355.85,357.28000000000003,7.45,28.78,28.47,28.310000000000002,28.13,27.96,27.8,27.66,27.53,27.59,N/A,N/A -2012,8,28,16,30,101030,99890,98790,68.5,0,6.62,7.19,7.29,7.33,7.3500000000000005,7.36,7.37,7.38,7.43,344.95,345.5,345.86,346.29,346.77,347.29,347.99,348.71,351.19,29.54,29.28,29.13,28.95,28.78,28.61,28.44,28.29,28,N/A,N/A -2012,8,28,17,30,100970,99840,98750,65.19,0,4.53,4.96,5.07,5.18,5.29,5.41,5.57,5.73,6.17,355.8,356.71,357.40000000000003,358.23,359.18,0.26,1.52,2.81,5.41,30.66,30.52,30.42,30.28,30.14,30,29.87,29.75,29.51,N/A,N/A -2012,8,28,18,30,100900,99770,98680,57.15,0,8.21,9.27,9.56,9.74,9.86,9.92,9.94,9.94,9.88,346.68,347.24,347.63,348.09000000000003,348.54,349,349.47,349.94,350.92,31.64,31.67,31.61,31.5,31.37,31.220000000000002,31.07,30.91,30.580000000000002,N/A,N/A -2012,8,28,19,30,100840,99720,98630,61.54,0,5.79,6.74,7.07,7.36,7.61,7.84,8.06,8.25,8.6,349.01,350.24,351.13,352.32,353.52,354.8,356.04,357.21,359.15000000000003,31.62,31.77,31.78,31.75,31.69,31.61,31.51,31.400000000000002,31.12,N/A,N/A -2012,8,28,20,30,100760,99640,98550,63.190000000000005,0,5.96,7.11,7.53,7.92,8.25,8.53,8.78,8.99,9.3,349.98,350.83,351.45,352.19,352.93,353.7,354.5,355.26,356.69,31.84,32,32.02,31.990000000000002,31.94,31.87,31.77,31.67,31.41,N/A,N/A -2012,8,28,21,30,100710,99580,98500,59.82,0,7.9,9.44,9.98,10.5,10.92,11.290000000000001,11.58,11.84,12.22,1.32,2.36,2.98,3.5500000000000003,3.99,4.3500000000000005,4.6000000000000005,4.8,4.98,32.230000000000004,32.5,32.55,32.56,32.54,32.49,32.42,32.33,32.1,N/A,N/A -2012,8,28,22,30,100630,99510,98420,61.71,0,6.95,8.46,9.02,9.55,9.98,10.36,10.68,10.97,11.43,0.84,2.02,2.67,3.31,3.8200000000000003,4.26,4.6000000000000005,4.87,5.14,32.05,32.36,32.44,32.47,32.46,32.42,32.36,32.28,32.07,N/A,N/A -2012,8,28,23,30,100610,99480,98400,63.53,0,6.3100000000000005,7.78,8.34,8.870000000000001,9.33,9.74,10.11,10.450000000000001,11.03,352.55,353.91,354.74,355.59000000000003,356.32,357.01,357.56,358.02,358.61,31.91,32.32,32.44,32.52,32.54,32.52,32.45,32.37,32.12,N/A,N/A -2012,8,29,0,30,100600,99480,98400,61.17,0,7.86,9.32,9.790000000000001,10.17,10.47,10.72,10.950000000000001,11.16,11.56,4.88,5.14,5.36,5.7700000000000005,6.24,6.7700000000000005,7.2700000000000005,7.73,8.33,32.13,32.480000000000004,32.56,32.59,32.57,32.51,32.410000000000004,32.3,32,N/A,N/A -2012,8,29,1,30,100620,99490,98410,60.22,0,7.91,9.450000000000001,10.03,10.58,11.08,11.55,12.02,12.47,13.39,2.21,3.21,3.97,4.97,5.97,7.01,8.06,9.07,10.88,31.900000000000002,32.14,32.18,32.15,32.09,31.990000000000002,31.87,31.740000000000002,31.43,N/A,N/A -2012,8,29,2,30,100620,99500,98410,63.52,0,8.66,10.14,10.700000000000001,11.25,11.75,12.23,12.700000000000001,13.16,14,5.34,6.390000000000001,7.13,8.06,8.98,9.92,10.92,11.91,13.83,31.45,31.55,31.55,31.5,31.44,31.36,31.28,31.19,30.98,N/A,N/A -2012,8,29,3,30,100620,99490,98400,64.43,0,9.57,10.98,11.46,11.89,12.27,12.63,12.99,13.33,14.01,7.15,7.82,8.3,8.88,9.44,10.040000000000001,10.67,11.290000000000001,12.59,31.17,31.19,31.13,31.04,30.93,30.82,30.71,30.59,30.35,N/A,N/A -2012,8,29,4,30,100590,99460,98370,65.81,0,10.28,11.84,12.38,12.89,13.33,13.75,14.16,14.540000000000001,15.27,358.85,359.3,359.69,0.16,0.64,1.1500000000000001,1.7,2.2600000000000002,3.52,30.91,30.900000000000002,30.85,30.75,30.66,30.560000000000002,30.46,30.36,30.14,N/A,N/A -2012,8,29,5,30,100540,99410,98320,71.01,0,9.69,11.55,12.34,13.13,13.73,14.18,14.61,15.02,15.8,354.86,356.43,357.2,357.68,358.44,359.48,0.5700000000000001,1.6300000000000001,3.72,30.35,30.32,30.25,30.07,29.95,29.86,29.76,29.66,29.42,N/A,N/A -2012,8,29,6,30,100550,99420,98330,71.54,0,9.61,10.65,10.9,11.05,11.17,11.25,11.32,11.38,11.49,8.92,8.82,8.84,8.86,8.88,8.9,8.93,8.97,9.07,29.95,29.71,29.57,29.39,29.21,29.03,28.85,28.67,28.310000000000002,N/A,N/A -2012,8,29,7,30,100540,99400,98310,73.66,0,9.32,10.25,10.450000000000001,10.56,10.63,10.69,10.75,10.8,10.98,357.87,358.33,358.56,358.81,359.09000000000003,359.37,359.74,0.12,1.24,29.54,29.27,29.11,28.92,28.740000000000002,28.57,28.38,28.21,27.87,N/A,N/A -2012,8,29,8,30,100540,99400,98310,74,0,9.05,9.94,10.14,10.25,10.33,10.39,10.44,10.49,10.6,357.98,358.68,359.06,359.46,359.83,0.2,0.62,1.04,2.06,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.93,27.73,27.55,27.18,N/A,N/A -2012,8,29,9,30,100530,99400,98300,75.95,0,10.09,11.14,11.38,11.52,11.64,11.73,11.8,11.88,12.05,356.67,356.93,357.09000000000003,357.25,357.42,357.59000000000003,357.79,357.99,358.52,28.63,28.27,28.1,27.900000000000002,27.72,27.53,27.34,27.16,26.8,N/A,N/A -2012,8,29,10,30,100540,99400,98300,76.75,0,10.040000000000001,11,11.22,11.33,11.41,11.46,11.5,11.52,11.56,353.93,354.23,354.45,354.67,354.87,355.07,355.29,355.5,355.99,28.23,27.84,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.32,N/A,N/A -2012,8,29,11,30,100540,99400,98300,77.91,0,10.69,11.81,12.08,12.25,12.370000000000001,12.450000000000001,12.52,12.59,12.68,354.69,355.13,355.41,355.68,355.95,356.2,356.47,356.73,357.31,28.11,27.71,27.52,27.32,27.13,26.94,26.740000000000002,26.560000000000002,26.17,N/A,N/A -2012,8,29,12,30,100510,99370,98270,78.92,0,10.65,11.69,11.93,12.06,12.15,12.21,12.26,12.290000000000001,12.32,347.45,347.82,348.07,348.31,348.53000000000003,348.74,348.96,349.17,349.63,27.85,27.43,27.240000000000002,27.03,26.84,26.64,26.45,26.26,25.88,N/A,N/A -2012,8,29,13,30,100510,99370,98270,78.9,0,11.16,12.290000000000001,12.56,12.71,12.81,12.89,12.94,12.98,13.030000000000001,346.71,346.93,347.07,347.21,347.34000000000003,347.48,347.62,347.76,348.07,27.830000000000002,27.400000000000002,27.21,26.990000000000002,26.8,26.6,26.41,26.22,25.84,N/A,N/A -2012,8,29,14,30,100520,99380,98280,78.65,0,10.43,11.450000000000001,11.69,11.84,11.93,12,12.05,12.09,12.15,341.81,342,342.12,342.25,342.36,342.47,342.6,342.72,342.99,27.92,27.5,27.310000000000002,27.1,26.91,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,8,29,15,30,100500,99370,98270,77.54,0,9.92,10.9,11.120000000000001,11.25,11.34,11.4,11.44,11.48,11.52,338.3,338.6,338.8,338.99,339.17,339.36,339.54,339.72,340.1,28.330000000000002,27.95,27.77,27.57,27.37,27.18,26.990000000000002,26.8,26.42,N/A,N/A -2012,8,29,16,30,100450,99320,98220,74.69,0,10.55,11.68,11.94,12.09,12.200000000000001,12.27,12.33,12.370000000000001,12.41,331.87,332.34000000000003,332.6,332.87,333.12,333.35,333.59000000000003,333.81,334.29,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A -2012,8,29,17,30,100430,99300,98200,69.82000000000001,0,11.01,12.31,12.64,12.85,13,13.11,13.200000000000001,13.27,13.370000000000001,334.37,334.78000000000003,335.01,335.25,335.47,335.68,335.89,336.09000000000003,336.5,29.95,29.71,29.57,29.38,29.21,29.03,28.84,28.66,28.3,N/A,N/A -2012,8,29,18,30,100410,99280,98190,68.15,0,9.92,11.03,11.32,11.52,11.67,11.8,11.91,12,12.16,333.84000000000003,334.32,334.64,335.02,335.40000000000003,335.79,336.21,336.63,337.53000000000003,30.63,30.5,30.400000000000002,30.240000000000002,30.09,29.93,29.76,29.6,29.25,N/A,N/A -2012,8,29,19,30,100370,99240,98160,66.45,0,9.64,10.83,11.18,11.43,11.63,11.790000000000001,11.93,12.040000000000001,12.23,335.06,335.69,336.1,336.59000000000003,337.05,337.52,337.99,338.46,339.39,31.14,31.09,31.01,30.87,30.73,30.580000000000002,30.43,30.27,29.93,N/A,N/A -2012,8,29,20,30,100310,99190,98110,66.45,0,9.51,10.93,11.39,11.77,12.09,12.36,12.58,12.780000000000001,13.1,334.42,335.28000000000003,335.82,336.44,337,337.57,338.13,338.65000000000003,339.69,31.5,31.54,31.490000000000002,31.39,31.28,31.16,31.02,30.88,30.57,N/A,N/A -2012,8,29,21,30,100280,99160,98080,64.01,0,11.14,12.85,13.35,13.72,13.98,14.15,14.25,14.3,14.290000000000001,349.34000000000003,349.66,349.82,349.97,350.09000000000003,350.21,350.31,350.40000000000003,350.57,31.8,31.89,31.86,31.77,31.67,31.54,31.400000000000002,31.25,30.92,N/A,N/A -2012,8,29,22,30,100290,99170,98090,66.22,0,7.91,9.11,9.52,9.88,10.200000000000001,10.51,10.82,11.120000000000001,11.74,347.66,346.77,346.26,345.54,344.84000000000003,344.11,343.47,342.89,342.09000000000003,31.53,31.61,31.580000000000002,31.5,31.400000000000002,31.29,31.150000000000002,31.01,30.7,N/A,N/A -2012,8,29,23,30,100290,99170,98080,68.68,0,8,9.19,9.58,9.92,10.200000000000001,10.44,10.66,10.86,11.21,344.76,345.33,345.67,346.09000000000003,346.5,346.91,347.34000000000003,347.76,348.54,31.44,31.48,31.43,31.34,31.240000000000002,31.11,30.98,30.85,30.55,N/A,N/A -2012,8,30,0,30,100320,99190,98110,72.74,2.9000000000000004,8.63,9.43,9.77,10.33,10.96,11.69,12.370000000000001,13,14.17,16.32,15.02,13.81,11.78,9.9,8.01,6.73,5.7700000000000005,4.59,29.87,29.71,29.67,29.67,29.7,29.76,29.77,29.75,29.64,N/A,N/A -2012,8,30,1,30,100390,99260,98160,80.58,0,12.99,14.290000000000001,14.59,14.72,14.8,14.84,14.84,14.84,14.780000000000001,27.96,27,26.62,26.25,25.92,25.6,25.29,24.990000000000002,24.38,28.29,27.89,27.71,27.5,27.310000000000002,27.13,26.93,26.75,26.39,N/A,N/A -2012,8,30,2,30,100420,99280,98180,78.24,0,12.92,14.31,14.65,14.83,14.96,15.05,15.11,15.15,15.21,3.27,3.65,3.84,4.0200000000000005,4.19,4.34,4.49,4.64,4.95,28.03,27.6,27.400000000000002,27.19,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A -2012,8,30,3,30,100420,99280,98180,76.61,0,9.93,10.91,11.14,11.27,11.370000000000001,11.44,11.49,11.53,11.61,359.8,0.27,0.56,0.8300000000000001,1.09,1.33,1.58,1.82,2.32,27.96,27.55,27.36,27.150000000000002,26.96,26.76,26.560000000000002,26.37,25.990000000000002,N/A,N/A -2012,8,30,4,30,100420,99280,98180,78.47,0,9.540000000000001,10.53,10.790000000000001,10.96,11.09,11.19,11.27,11.35,11.48,357.63,357.96,358.13,358.29,358.43,358.58,358.71,358.84000000000003,359.12,27.63,27.2,27.01,26.8,26.6,26.41,26.21,26.02,25.64,N/A,N/A -2012,8,30,5,30,100400,99260,98150,78.37,0,9.5,10.370000000000001,10.59,10.72,10.8,10.870000000000001,10.92,10.96,11.03,351.35,351.6,351.78000000000003,351.94,352.08,352.22,352.36,352.5,352.8,27.38,26.93,26.740000000000002,26.53,26.34,26.150000000000002,25.95,25.77,25.39,N/A,N/A -2012,8,30,6,30,100430,99290,98180,78.34,0,10.14,11.11,11.35,11.48,11.58,11.64,11.69,11.72,11.76,346.26,346.57,346.71,346.82,346.91,346.98,347.04,347.1,347.2,27.37,26.93,26.73,26.52,26.32,26.13,25.92,25.73,25.35,N/A,N/A -2012,8,30,7,30,100430,99290,98180,77.85000000000001,0,9.71,10.61,10.82,10.93,11.01,11.07,11.1,11.13,11.15,339.54,339.62,339.67,339.72,339.76,339.8,339.83,339.87,339.94,27.18,26.73,26.53,26.32,26.12,25.92,25.72,25.53,25.150000000000002,N/A,N/A -2012,8,30,8,30,100390,99250,98150,79.06,0,9.370000000000001,10.18,10.35,10.44,10.49,10.52,10.53,10.540000000000001,10.53,332.71,333.02,333.12,333.19,333.25,333.3,333.34000000000003,333.38,333.46,27.18,26.73,26.53,26.32,26.12,25.93,25.73,25.54,25.150000000000002,N/A,N/A -2012,8,30,9,30,100430,99290,98180,77.25,0,9.89,10.82,11.06,11.200000000000001,11.3,11.370000000000001,11.42,11.46,11.52,330.39,330.29,330.29,330.29,330.28000000000003,330.28000000000003,330.27,330.26,330.25,27.19,26.740000000000002,26.55,26.330000000000002,26.14,25.94,25.740000000000002,25.55,25.17,N/A,N/A -2012,8,30,10,30,100440,99300,98190,77.96000000000001,0,9.3,10.14,10.34,10.450000000000001,10.53,10.58,10.61,10.64,10.66,330.24,330.13,330.12,330.1,330.08,330.07,330.06,330.04,330.02,27.07,26.62,26.42,26.21,26.01,25.810000000000002,25.62,25.43,25.04,N/A,N/A -2012,8,30,11,30,100450,99310,98200,79.72,0,9.05,9.78,9.94,10.02,10.06,10.08,10.08,10.08,10.06,330.09000000000003,330.18,330.22,330.25,330.27,330.28000000000003,330.29,330.3,330.31,26.72,26.25,26.05,25.84,25.64,25.45,25.25,25.060000000000002,24.68,N/A,N/A -2012,8,30,12,30,100470,99320,98220,78.01,0,9.75,10.56,10.73,10.81,10.85,10.870000000000001,10.870000000000001,10.870000000000001,10.83,325.26,325.25,325.25,325.23,325.21,325.18,325.14,325.11,325.03000000000003,26.78,26.310000000000002,26.11,25.900000000000002,25.7,25.5,25.3,25.12,24.740000000000002,N/A,N/A -2012,8,30,13,30,100530,99380,98280,77.69,0,8.58,9.27,9.43,9.51,9.56,9.6,9.620000000000001,9.63,9.64,326.22,326.02,325.90000000000003,325.78000000000003,325.67,325.56,325.44,325.33,325.09000000000003,26.63,26.16,25.96,25.75,25.55,25.36,25.16,24.97,24.59,N/A,N/A -2012,8,30,14,30,100560,99420,98310,75.96000000000001,0,7.95,8.57,8.72,8.790000000000001,8.84,8.870000000000001,8.9,8.91,8.93,318.51,318.56,318.59000000000003,318.6,318.62,318.64,318.65000000000003,318.66,318.69,26.900000000000002,26.45,26.26,26.05,25.85,25.66,25.46,25.27,24.89,N/A,N/A -2012,8,30,15,30,100580,99430,98320,75.41,0,7.44,7.99,8.11,8.16,8.19,8.2,8.21,8.21,8.2,307.04,307.3,307.43,307.54,307.65000000000003,307.75,307.86,307.97,308.2,27.060000000000002,26.63,26.44,26.23,26.04,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A -2012,8,30,16,30,100610,99470,98370,71.9,0,5.97,6.36,6.44,6.48,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,310.35,309.18,308.48,307.73,307.04,306.36,305.67,304.99,303.57,27.8,27.43,27.25,27.05,26.86,26.68,26.490000000000002,26.310000000000002,25.93,N/A,N/A -2012,8,30,17,30,100620,99480,98380,68.9,0,3.71,3.94,3.99,4.03,4.0600000000000005,4.09,4.13,4.16,4.23,302.56,300.05,298.56,297.13,295.83,294.59000000000003,293.38,292.25,290.03000000000003,28.67,28.35,28.18,27.990000000000002,27.810000000000002,27.62,27.44,27.26,26.89,N/A,N/A -2012,8,30,18,30,100640,99510,98410,67.32000000000001,0,1.45,1.51,1.53,1.55,1.58,1.61,1.6500000000000001,1.69,1.79,310.09000000000003,303.36,299.35,295.23,291.61,288.17,284.87,281.76,275.96,29.16,28.85,28.69,28.5,28.32,28.13,27.95,27.77,27.400000000000002,N/A,N/A -2012,8,30,19,30,100650,99520,98420,67.3,0,3.56,3.83,3.9,3.95,3.98,4,4.0200000000000005,4.03,4.05,225.9,226.66,227.14000000000001,227.63,228.09,228.56,229.03,229.49,230.48000000000002,29.8,29.5,29.34,29.14,28.96,28.77,28.580000000000002,28.400000000000002,28.02,N/A,N/A -2012,8,30,20,30,100660,99520,98420,75.27,0,6.72,7.26,7.36,7.390000000000001,7.41,7.4,7.38,7.3500000000000005,7.26,194.34,194.65,194.84,195.02,195.19,195.37,195.56,195.75,196.29,29.11,28.78,28.62,28.42,28.240000000000002,28.05,27.86,27.68,27.32,N/A,N/A -2012,8,30,21,30,100640,99510,98410,77.35000000000001,0,7.930000000000001,8.61,8.73,8.76,8.77,8.76,8.74,8.71,8.65,200.25,200.47,200.63,200.82,201.01,201.22,201.49,201.77,202.71,29.12,28.82,28.66,28.47,28.3,28.12,27.94,27.77,27.46,N/A,N/A -2012,8,30,22,30,100640,99500,98410,78.43,0,8.64,9.42,9.57,9.63,9.66,9.66,9.66,9.65,9.67,200.55,200.8,200.94,201.1,201.28,201.47,201.73000000000002,202.01,203.02,29.23,28.94,28.79,28.6,28.43,28.25,28.080000000000002,27.92,27.64,N/A,N/A -2012,8,30,23,30,100660,99530,98430,78.69,0,9.09,9.92,10.09,10.15,10.19,10.200000000000001,10.22,10.23,10.34,199.58,199.75,199.86,200.01,200.17000000000002,200.36,200.61,200.89000000000001,202.03,29.36,29.09,28.94,28.76,28.59,28.41,28.25,28.09,27.84,N/A,N/A -2012,8,31,0,30,100690,99560,98460,79.93,0,9.34,10.24,10.41,10.49,10.52,10.53,10.53,10.51,10.47,195.81,196.01,196.08,196.17000000000002,196.26,196.35,196.46,196.57,196.95000000000002,29.46,29.2,29.05,28.86,28.69,28.52,28.35,28.18,27.88,N/A,N/A -2012,8,31,1,30,100720,99590,98490,78.83,0,9.68,10.6,10.790000000000001,10.86,10.9,10.91,10.9,10.88,10.82,197.23000000000002,197.4,197.47,197.55,197.63,197.72,197.84,197.96,198.45000000000002,29.66,29.42,29.28,29.1,28.94,28.77,28.61,28.45,28.17,N/A,N/A -2012,8,31,2,30,100790,99660,98560,74.07000000000001,0,9.120000000000001,10.13,10.46,10.82,11.06,11.19,11.39,11.63,12.02,201.53,201.27,201.19,201.1,201.17000000000002,201.42000000000002,202.08,202.94,205.31,30.21,30.12,30.060000000000002,29.98,29.88,29.72,29.67,29.68,29.69,N/A,N/A -2012,8,31,3,30,100860,99730,98630,74.64,0,8.44,9.67,10.11,10.4,10.700000000000001,11.05,11.38,11.69,11.9,198.55,199.34,199.83,200.06,200.70000000000002,201.75,202.94,204.20000000000002,206.42000000000002,30.240000000000002,30.21,30.150000000000002,29.990000000000002,29.89,29.87,29.85,29.84,29.68,N/A,N/A -2012,8,31,4,30,100920,99790,98690,80.11,0,9.08,10.09,10.41,10.75,11,11.19,11.42,11.66,12.200000000000001,196.37,196.57,196.76,196.94,197.21,197.6,198.09,198.67000000000002,200,29.990000000000002,29.86,29.77,29.63,29.52,29.39,29.27,29.16,29.02,N/A,N/A -2012,8,31,5,30,100960,99820,98720,81.29,0,9.69,10.77,11.07,11.28,11.450000000000001,11.6,11.75,11.89,12.25,197.66,197.96,198.15,198.35,198.54,198.74,198.94,199.14000000000001,199.61,29.86,29.650000000000002,29.52,29.35,29.19,29.02,28.86,28.7,28.400000000000002,N/A,N/A -2012,8,31,6,30,101030,99900,98800,80.99,0,11.43,12.72,13.06,13.280000000000001,13.450000000000001,13.58,13.700000000000001,13.8,14,201.49,201.36,201.31,201.27,201.25,201.24,201.24,201.25,201.31,29.97,29.76,29.63,29.46,29.3,29.13,28.97,28.810000000000002,28.48,N/A,N/A -2012,8,31,7,30,101090,99960,98860,82.97,0,11.450000000000001,12.780000000000001,13.120000000000001,13.35,13.52,13.64,13.74,13.82,13.950000000000001,200.72,200.81,200.83,200.85,200.87,200.89000000000001,200.91,200.93,200.96,29.94,29.7,29.560000000000002,29.38,29.2,29.03,28.85,28.67,28.310000000000002,N/A,N/A -2012,8,31,8,30,101140,100010,98910,84.24,0,11.1,12.49,12.83,13.06,13.24,13.36,13.46,13.540000000000001,13.65,196.62,197,197.11,197.20000000000002,197.28,197.34,197.39000000000001,197.44,197.5,29.77,29.490000000000002,29.330000000000002,29.14,28.96,28.77,28.580000000000002,28.39,28.01,N/A,N/A -2012,8,31,9,30,101200,100060,98960,81.07000000000001,0,11.4,12.77,13.09,13.31,13.46,13.57,13.64,13.71,13.780000000000001,197.86,198.12,198.17000000000002,198.19,198.20000000000002,198.19,198.18,198.16,198.1,29.91,29.64,29.48,29.29,29.11,28.92,28.73,28.55,28.17,N/A,N/A -2012,8,31,10,30,101270,100130,99030,78.62,0,11.34,12.55,12.86,13.040000000000001,13.17,13.26,13.34,13.39,13.49,194.69,194.8,194.91,195.07,195.22,195.39000000000001,195.56,195.74,196.14000000000001,29.900000000000002,29.67,29.53,29.35,29.18,29.01,28.830000000000002,28.650000000000002,28.3,N/A,N/A -2012,8,31,11,30,101320,100190,99080,77.37,0,10.3,11.42,11.71,11.89,12.02,12.120000000000001,12.200000000000001,12.27,12.39,193.67000000000002,194,194.27,194.59,194.9,195.22,195.56,195.9,196.63,29.98,29.75,29.62,29.44,29.28,29.11,28.93,28.76,28.42,N/A,N/A -2012,8,31,12,30,101370,100230,99130,78.73,0,10.84,12.120000000000001,12.43,12.63,12.780000000000001,12.88,12.96,13.02,13.09,194.24,194.41,194.49,194.56,194.62,194.68,194.73000000000002,194.78,194.86,29.71,29.43,29.27,29.07,28.89,28.7,28.51,28.32,27.94,N/A,N/A -2012,8,31,13,30,101450,100310,99200,77.16,0,10.33,11.43,11.700000000000001,11.85,11.96,12.02,12.07,12.1,12.13,191.74,192.02,192.18,192.35,192.49,192.62,192.74,192.87,193.1,29.71,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.98,N/A,N/A -2012,8,31,14,30,101490,100350,99240,76.2,0,9.24,10.28,10.52,10.66,10.76,10.83,10.88,10.92,10.96,193.9,193.98000000000002,194.01,194.05,194.08,194.11,194.13,194.15,194.19,29.73,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.97,N/A,N/A -2012,8,31,15,30,101550,100410,99300,77.55,0,8.31,9.17,9.370000000000001,9.49,9.57,9.63,9.67,9.700000000000001,9.74,187.75,187.97,188.14000000000001,188.31,188.45000000000002,188.6,188.75,188.89000000000001,189.16,29.69,29.41,29.25,29.05,28.87,28.68,28.490000000000002,28.3,27.92,N/A,N/A -2012,8,31,16,30,101570,100430,99330,74.17,0,7.59,8.35,8.53,8.63,8.71,8.76,8.790000000000001,8.82,8.85,192.95000000000002,192.85,192.81,192.77,192.73000000000002,192.70000000000002,192.67000000000002,192.65,192.6,29.86,29.59,29.44,29.25,29.060000000000002,28.88,28.69,28.5,28.13,N/A,N/A -2012,8,31,17,30,101590,100450,99340,77.62,0,7.6000000000000005,8.4,8.59,8.700000000000001,8.78,8.84,8.89,8.93,8.99,187.49,187.70000000000002,187.8,187.87,187.93,187.99,188.03,188.08,188.15,29.77,29.490000000000002,29.32,29.13,28.94,28.75,28.560000000000002,28.37,28,N/A,N/A -2012,8,31,18,30,101590,100450,99340,79.58,0,7.53,8.27,8.42,8.51,8.56,8.6,8.620000000000001,8.64,8.66,181.73,181.98,182.09,182.18,182.27,182.36,182.45000000000002,182.54,182.72,29.82,29.53,29.37,29.18,28.990000000000002,28.810000000000002,28.62,28.43,28.060000000000002,N/A,N/A -2012,8,31,19,30,101580,100440,99330,82.62,0,7.83,8.64,8.81,8.92,9,9.040000000000001,9.08,9.1,9.11,182.22,182.46,182.53,182.58,182.62,182.65,182.68,182.69,182.71,29.73,29.42,29.26,29.060000000000002,28.88,28.69,28.5,28.310000000000002,27.93,N/A,N/A -2012,8,31,20,30,101560,100420,99320,82.22,0,8.49,9.370000000000001,9.57,9.68,9.76,9.82,9.86,9.89,9.92,178.85,178.79,178.73,178.65,178.57,178.48,178.4,178.31,178.14000000000001,29.560000000000002,29.25,29.09,28.89,28.7,28.51,28.32,28.13,27.75,N/A,N/A -2012,8,31,21,30,101540,100400,99300,79.27,0,8.44,9.290000000000001,9.48,9.59,9.67,9.72,9.75,9.78,9.82,174.23,174.22,174.22,174.22,174.20000000000002,174.20000000000002,174.19,174.18,174.16,29.59,29.3,29.13,28.94,28.75,28.560000000000002,28.37,28.18,27.8,N/A,N/A -2012,8,31,22,30,101530,100390,99290,77.96000000000001,0,8.63,9.5,9.69,9.790000000000001,9.86,9.9,9.92,9.93,9.94,172.61,172.76,172.82,172.87,172.91,172.95000000000002,172.99,173.01,173.07,29.560000000000002,29.27,29.11,28.92,28.73,28.55,28.36,28.17,27.79,N/A,N/A -2012,8,31,23,30,101510,100360,99260,79.34,0,9.03,9.96,10.17,10.290000000000001,10.38,10.44,10.48,10.52,10.57,170.6,170.59,170.55,170.5,170.45000000000002,170.4,170.35,170.3,170.19,29.51,29.21,29.05,28.86,28.67,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A -2012,9,1,0,30,101510,100370,99260,84.9,0,9.790000000000001,10.89,11.16,11.32,11.44,11.52,11.57,11.620000000000001,11.66,166.70000000000002,166.66,166.68,166.70000000000002,166.73,166.75,166.77,166.79,166.84,29.240000000000002,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,9,1,1,30,101540,100400,99290,82.66,0,9.58,10.61,10.86,11.02,11.13,11.200000000000001,11.26,11.31,11.370000000000001,173.53,173.77,173.83,173.89000000000001,173.92000000000002,173.96,173.97,173.99,174,29.240000000000002,28.91,28.75,28.55,28.36,28.17,27.97,27.79,27.400000000000002,N/A,N/A -2012,9,1,2,30,101570,100430,99320,83.74,0,9.89,11,11.26,11.43,11.55,11.64,11.69,11.75,11.8,171.17000000000002,171,170.98,170.96,170.97,171,171.03,171.07,171.15,29.23,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,9,1,3,30,101610,100470,99360,81.95,0,9.36,10.34,10.59,10.74,10.83,10.91,10.97,11.01,11.08,172.3,172.46,172.51,172.53,172.54,172.55,172.54,172.53,172.49,29.34,29.04,28.87,28.68,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A -2012,9,1,4,30,101630,100480,99380,76.09,0,9.86,10.88,11.11,11.23,11.32,11.370000000000001,11.4,11.43,11.46,174.45000000000002,174.6,174.66,174.70000000000002,174.72,174.73,174.74,174.74,174.72,29.5,29.2,29.04,28.85,28.66,28.47,28.28,28.1,27.72,N/A,N/A -2012,9,1,5,30,101640,100490,99390,77.77,0,9.52,10.51,10.74,10.88,10.98,11.040000000000001,11.09,11.120000000000001,11.17,172.64000000000001,172.76,172.85,172.96,173.06,173.17000000000002,173.28,173.38,173.6,29.42,29.11,28.95,28.75,28.560000000000002,28.37,28.18,28,27.62,N/A,N/A -2012,9,1,6,30,101680,100540,99430,75.48,0,9.38,10.41,10.66,10.81,10.92,10.99,11.05,11.1,11.16,178.42000000000002,178.38,178.32,178.25,178.19,178.13,178.07,178.02,177.91,29.490000000000002,29.22,29.07,28.87,28.69,28.5,28.310000000000002,28.13,27.75,N/A,N/A -2012,9,1,7,30,101710,100560,99450,77.27,0,9.23,10.25,10.5,10.65,10.76,10.84,10.9,10.950000000000001,11.03,179.91,180.13,180.19,180.23,180.26,180.29,180.32,180.34,180.38,29.43,29.150000000000002,28.98,28.79,28.61,28.42,28.23,28.05,27.67,N/A,N/A -2012,9,1,8,30,101720,100580,99470,74.81,0,8.58,9.53,9.75,9.9,10.01,10.09,10.15,10.200000000000001,10.28,181.38,181.35,181.35,181.37,181.39000000000001,181.41,181.44,181.47,181.51,29.54,29.27,29.11,28.92,28.73,28.54,28.35,28.17,27.79,N/A,N/A -2012,9,1,9,30,101750,100600,99490,75.10000000000001,0,8.790000000000001,9.72,9.950000000000001,10.09,10.19,10.26,10.32,10.370000000000001,10.44,182.57,182.72,182.8,182.87,182.93,182.99,183.04,183.1,183.20000000000002,29.48,29.21,29.04,28.86,28.68,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A -2012,9,1,10,30,101760,100610,99500,73.8,0,8.64,9.55,9.76,9.89,9.98,10.05,10.1,10.14,10.18,188.41,188.24,188.19,188.15,188.12,188.09,188.06,188.03,187.99,29.52,29.25,29.1,28.91,28.73,28.54,28.35,28.17,27.8,N/A,N/A -2012,9,1,11,30,101790,100640,99530,74.39,0,7.75,8.620000000000001,8.85,9.02,9.14,9.24,9.32,9.39,9.51,190.38,190.3,190.28,190.27,190.25,190.25,190.25,190.24,190.26,29.490000000000002,29.22,29.060000000000002,28.87,28.69,28.5,28.310000000000002,28.12,27.75,N/A,N/A -2012,9,1,12,30,101810,100660,99550,76.94,0,8.18,9,9.17,9.26,9.32,9.36,9.38,9.4,9.41,189.62,189.45000000000002,189.4,189.35,189.31,189.28,189.24,189.21,189.14000000000001,29.330000000000002,29.04,28.88,28.69,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A -2012,9,1,13,30,101860,100710,99600,75.98,0,7.22,7.930000000000001,8.1,8.2,8.27,8.32,8.36,8.39,8.43,188.85,188.98,189.08,189.19,189.3,189.41,189.55,189.67000000000002,189.97,29.34,29.05,28.900000000000002,28.7,28.52,28.34,28.150000000000002,27.97,27.59,N/A,N/A -2012,9,1,14,30,101890,100750,99640,77.93,0,7.22,7.94,8.120000000000001,8.22,8.290000000000001,8.35,8.39,8.42,8.46,186.89000000000001,187.66,187.93,188.16,188.35,188.5,188.65,188.78,189,29.26,28.96,28.8,28.61,28.42,28.23,28.04,27.85,27.48,N/A,N/A -2012,9,1,15,30,101920,100770,99660,76.49,0,6.38,6.96,7.09,7.17,7.23,7.2700000000000005,7.3,7.34,7.390000000000001,188.55,188.6,188.62,188.65,188.67000000000002,188.70000000000002,188.73,188.76,188.85,29.27,28.97,28.82,28.63,28.44,28.26,28.07,27.88,27.52,N/A,N/A -2012,9,1,16,30,101920,100770,99660,78.14,0,6.42,6.97,7.09,7.140000000000001,7.19,7.21,7.22,7.23,7.24,189.92000000000002,189.71,189.64000000000001,189.59,189.55,189.52,189.49,189.47,189.44,29.16,28.84,28.67,28.48,28.29,28.1,27.91,27.72,27.34,N/A,N/A -2012,9,1,17,30,101920,100770,99660,76.34,0,6.05,6.58,6.69,6.76,6.82,6.8500000000000005,6.87,6.9,6.93,191.06,191.37,191.51,191.63,191.75,191.86,191.96,192.07,192.26,29.21,28.900000000000002,28.73,28.54,28.35,28.16,27.96,27.78,27.400000000000002,N/A,N/A -2012,9,1,18,30,101910,100760,99650,76.72,0,6.29,6.83,6.93,6.99,7.03,7.05,7.0600000000000005,7.07,7.08,191.04,191.08,191.12,191.16,191.19,191.20000000000002,191.21,191.24,191.26,29.18,28.86,28.69,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A -2012,9,1,19,30,101900,100750,99640,73.12,0,5.51,5.96,6.0600000000000005,6.1000000000000005,6.140000000000001,6.17,6.18,6.21,6.24,192.95000000000002,193.21,193.37,193.55,193.71,193.88,194.05,194.22,194.58,29.32,29.02,28.85,28.66,28.48,28.29,28.1,27.91,27.54,N/A,N/A -2012,9,1,20,30,101870,100720,99610,75.86,0,5.86,6.3100000000000005,6.4,6.44,6.46,6.47,6.48,6.47,6.46,189.47,189.63,189.76,189.89000000000001,190.02,190.14000000000001,190.26,190.39000000000001,190.62,29.21,28.89,28.73,28.53,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,9,1,21,30,101840,100700,99590,74.26,0,5.79,6.29,6.4,6.46,6.5,6.54,6.57,6.59,6.62,187.79,187.84,187.9,187.96,188.01,188.06,188.12,188.17000000000002,188.28,29.26,28.96,28.8,28.61,28.42,28.23,28.04,27.85,27.48,N/A,N/A -2012,9,1,22,30,101800,100650,99540,73.29,0,6.11,6.61,6.69,6.72,6.74,6.74,6.73,6.72,6.69,183.24,183.67000000000002,183.88,184.09,184.28,184.46,184.64000000000001,184.82,185.19,29.22,28.92,28.77,28.57,28.39,28.2,28,27.82,27.44,N/A,N/A -2012,9,1,23,30,101780,100630,99520,75.83,0,5.62,6.08,6.17,6.21,6.24,6.26,6.28,6.28,6.28,182.35,182.49,182.64000000000001,182.78,182.9,183.01,183.12,183.23,183.47,29.07,28.77,28.6,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.28,N/A,N/A -2012,9,2,0,30,101750,100600,99490,75.9,0,6.0200000000000005,6.49,6.57,6.6000000000000005,6.61,6.62,6.61,6.6000000000000005,6.57,175.89000000000001,176.47,176.68,176.9,177.11,177.31,177.54,177.76,178.25,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.71,27.53,27.14,N/A,N/A -2012,9,2,1,30,101730,100580,99470,78,0,6.3500000000000005,6.890000000000001,7,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.140000000000001,7.15,178.51,178.42000000000002,178.42000000000002,178.42000000000002,178.41,178.4,178.39000000000001,178.37,178.32,28.830000000000002,28.5,28.330000000000002,28.14,27.95,27.76,27.560000000000002,27.38,27,N/A,N/A -2012,9,2,2,30,101730,100590,99470,77.88,0,6.3100000000000005,6.8,6.890000000000001,6.92,6.94,6.95,6.94,6.93,6.9,170.62,170.86,170.98,171.07,171.16,171.24,171.32,171.39000000000001,171.55,28.77,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,9,2,3,30,101720,100580,99460,78.41,0,5.95,6.46,6.5600000000000005,6.63,6.67,6.7,6.72,6.73,6.76,169.70000000000002,169.55,169.55,169.55,169.56,169.57,169.59,169.61,169.65,28.75,28.42,28.25,28.05,27.86,27.68,27.48,27.3,26.92,N/A,N/A -2012,9,2,4,30,101690,100540,99430,79.04,0,6.18,6.65,6.76,6.8100000000000005,6.8500000000000005,6.88,6.9,6.91,6.93,169.82,169.86,169.84,169.8,169.77,169.72,169.67000000000002,169.62,169.51,28.66,28.32,28.150000000000002,27.96,27.77,27.580000000000002,27.39,27.2,26.82,N/A,N/A -2012,9,2,5,30,101710,100560,99450,75.75,0,7.13,7.74,7.88,7.95,8,8.03,8.06,8.08,8.120000000000001,171.16,171.39000000000001,171.47,171.55,171.61,171.67000000000002,171.73,171.79,171.91,28.88,28.57,28.400000000000002,28.2,28.02,27.830000000000002,27.64,27.45,27.080000000000002,N/A,N/A -2012,9,2,6,30,101710,100560,99450,82.2,0,6.69,7.25,7.36,7.41,7.44,7.45,7.45,7.44,7.4,177.23,177.29,177.32,177.36,177.39000000000001,177.41,177.45000000000002,177.48,177.53,28.580000000000002,28.23,28.060000000000002,27.86,27.67,27.47,27.28,27.09,26.7,N/A,N/A -2012,9,2,7,30,101720,100580,99470,80.72,0,7.21,7.82,7.96,8.03,8.08,8.11,8.13,8.14,8.15,180.47,180.9,181.13,181.36,181.55,181.73,181.9,182.05,182.36,28.740000000000002,28.41,28.240000000000002,28.04,27.86,27.67,27.48,27.29,26.91,N/A,N/A -2012,9,2,8,30,101730,100580,99470,81.76,0,6.12,6.67,6.8,6.88,6.93,6.98,7.01,7.04,7.08,188.27,188.22,188.23,188.27,188.32,188.37,188.43,188.49,188.64000000000001,28.78,28.46,28.29,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.95,N/A,N/A -2012,9,2,9,30,101730,100590,99470,78.62,0,6.76,7.36,7.5,7.5600000000000005,7.6000000000000005,7.63,7.640000000000001,7.65,7.65,198.25,198.33,198.31,198.3,198.28,198.27,198.24,198.21,198.12,28.94,28.62,28.46,28.26,28.07,27.88,27.69,27.5,27.13,N/A,N/A -2012,9,2,10,30,101750,100600,99490,79.69,0,6.49,7.09,7.23,7.32,7.38,7.43,7.46,7.49,7.54,202.62,202.35,202.20000000000002,202.03,201.87,201.70000000000002,201.53,201.36,201.01,28.84,28.52,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A -2012,9,2,11,30,101750,100600,99490,83.17,0,5.94,6.390000000000001,6.49,6.53,6.5600000000000005,6.59,6.6000000000000005,6.61,6.62,200.87,201.20000000000002,201.36,201.51,201.64000000000001,201.77,201.9,202.01,202.23000000000002,28.63,28.29,28.12,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A -2012,9,2,12,30,101770,100630,99520,80.19,0,5.71,6.2,6.32,6.38,6.42,6.46,6.48,6.5,6.53,199.9,200.32,200.49,200.64000000000001,200.78,200.9,201.02,201.14000000000001,201.37,28.86,28.53,28.37,28.17,27.98,27.79,27.6,27.41,27.03,N/A,N/A -2012,9,2,13,30,101790,100640,99530,81.05,0,5.15,5.51,5.58,5.61,5.63,5.64,5.65,5.65,5.65,205.76,205.62,205.57,205.53,205.5,205.47,205.45000000000002,205.42000000000002,205.35,28.740000000000002,28.41,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.91,N/A,N/A -2012,9,2,14,30,101810,100660,99550,81.69,0,4.39,4.68,4.75,4.78,4.8,4.8100000000000005,4.82,4.82,4.83,219.17000000000002,219.32,219.4,219.48000000000002,219.54,219.61,219.67000000000002,219.74,219.84,28.71,28.38,28.21,28.01,27.82,27.63,27.44,27.25,26.87,N/A,N/A -2012,9,2,15,30,101820,100670,99560,81.9,0,3.5100000000000002,3.71,3.7600000000000002,3.7800000000000002,3.79,3.8000000000000003,3.81,3.81,3.81,224.99,224.48000000000002,224.18,223.86,223.58,223.3,223.02,222.77,222.22,28.75,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.89,N/A,N/A -2012,9,2,16,30,101810,100670,99560,81.66,0,3.19,3.39,3.44,3.47,3.5,3.52,3.54,3.56,3.59,217.9,217.45000000000002,217.17000000000002,216.91,216.68,216.47,216.26,216.06,215.69,28.77,28.42,28.25,28.05,27.86,27.67,27.47,27.28,26.900000000000002,N/A,N/A -2012,9,2,17,30,101800,100650,99540,79.10000000000001,0,2.66,2.81,2.84,2.86,2.88,2.89,2.91,2.91,2.94,215.21,215.1,215.06,215.01,214.96,214.9,214.84,214.78,214.65,28.84,28.490000000000002,28.32,28.11,27.93,27.73,27.54,27.36,26.97,N/A,N/A -2012,9,2,18,30,101770,100620,99510,81.98,0,3.15,3.33,3.36,3.38,3.4,3.41,3.42,3.43,3.45,192.85,192.94,193.05,193.16,193.26,193.35,193.45000000000002,193.54,193.73000000000002,28.84,28.48,28.310000000000002,28.11,27.92,27.72,27.53,27.35,26.96,N/A,N/A -2012,9,2,19,30,101750,100610,99500,83.45,0,3.4,3.6,3.64,3.67,3.69,3.71,3.73,3.75,3.79,184.14000000000001,183.42000000000002,182.99,182.56,182.18,181.8,181.43,181.08,180.43,28.93,28.57,28.39,28.19,28.01,27.82,27.62,27.44,27.060000000000002,N/A,N/A -2012,9,2,20,30,101710,100560,99450,84.97,0,5.0200000000000005,5.4,5.48,5.53,5.5600000000000005,5.59,5.61,5.63,5.66,181.13,181.37,181.46,181.55,181.63,181.70000000000002,181.77,181.84,181.99,28.98,28.62,28.45,28.25,28.060000000000002,27.86,27.67,27.490000000000002,27.1,N/A,N/A -2012,9,2,21,30,101650,100500,99390,85.51,0,6.2,6.65,6.73,6.75,6.76,6.75,6.74,6.72,6.68,174.44,174.84,175.07,175.31,175.52,175.74,175.97,176.19,176.71,28.830000000000002,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.36,26.98,N/A,N/A -2012,9,2,22,30,101600,100460,99350,85.89,0,6.57,7.11,7.21,7.26,7.29,7.3,7.3,7.3,7.28,176.46,176.67000000000002,176.76,176.89000000000001,177.01,177.15,177.32,177.48,177.89000000000001,28.740000000000002,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,9,2,23,30,101580,100430,99320,84.65,0,5.9,6.3500000000000005,6.45,6.49,6.51,6.5200000000000005,6.5200000000000005,6.51,6.49,180.44,180.63,180.73,180.84,180.93,181.03,181.13,181.22,181.42000000000002,28.71,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,9,3,0,30,101550,100400,99290,85.06,0,6.8500000000000005,7.41,7.53,7.59,7.63,7.65,7.66,7.66,7.65,182.03,182.16,182.24,182.32,182.4,182.47,182.55,182.62,182.76,28.66,28.32,28.150000000000002,27.94,27.75,27.560000000000002,27.37,27.18,26.8,N/A,N/A -2012,9,3,1,30,101530,100380,99270,86.54,0,6.4,6.94,7.0600000000000005,7.140000000000001,7.19,7.22,7.25,7.2700000000000005,7.29,190.14000000000001,190,190,190.02,190.04,190.07,190.1,190.13,190.21,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A -2012,9,3,2,30,101530,100390,99280,85.18,0,6.38,6.890000000000001,7.01,7.07,7.12,7.15,7.17,7.19,7.21,185.70000000000002,186.09,186.27,186.45000000000002,186.61,186.76,186.91,187.04,187.32,28.57,28.22,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A -2012,9,3,3,30,101530,100390,99280,84.35000000000001,0,6.93,7.48,7.58,7.61,7.63,7.62,7.61,7.59,7.53,193.37,192.83,192.61,192.41,192.24,192.1,191.95000000000002,191.82,191.55,28.740000000000002,28.400000000000002,28.23,28.04,27.85,27.66,27.47,27.29,26.92,N/A,N/A -2012,9,3,4,30,101510,100370,99260,83.78,0,6.66,7.2,7.32,7.38,7.42,7.44,7.46,7.47,7.48,192.55,192.67000000000002,192.73000000000002,192.77,192.8,192.84,192.86,192.88,192.92000000000002,28.55,28.19,28.02,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A -2012,9,3,5,30,101530,100380,99280,82,0,6.37,6.88,6.99,7.04,7.07,7.1000000000000005,7.11,7.12,7.13,188.28,188.24,188.27,188.32,188.38,188.45000000000002,188.54,188.62,188.82,28.72,28.38,28.21,28.01,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A -2012,9,3,6,30,101540,100390,99280,86.42,0,6.41,6.95,7.08,7.15,7.2,7.24,7.2700000000000005,7.29,7.32,190.78,191.03,191.11,191.18,191.23000000000002,191.27,191.32,191.36,191.44,28.52,28.150000000000002,27.98,27.78,27.59,27.39,27.2,27.01,26.63,N/A,N/A -2012,9,3,7,30,101550,100400,99290,84.33,0,6.2,6.7,6.8100000000000005,6.87,6.91,6.94,6.97,6.99,7.03,194.64000000000001,194.85,194.95000000000002,195.06,195.17000000000002,195.27,195.38,195.49,195.73000000000002,28.62,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.76,N/A,N/A -2012,9,3,8,30,101550,100410,99300,84.64,0,7.17,7.79,7.930000000000001,8.01,8.06,8.1,8.13,8.15,8.17,200.72,201.03,201.12,201.22,201.3,201.38,201.45000000000002,201.52,201.66,28.740000000000002,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,9,3,9,30,101560,100410,99310,84.56,0,6.24,6.75,6.8500000000000005,6.92,6.96,6.99,7.0200000000000005,7.04,7.07,216.9,215.61,214.99,214.39000000000001,213.84,213.34,212.83,212.36,211.42000000000002,28.77,28.41,28.240000000000002,28.04,27.85,27.67,27.47,27.29,26.92,N/A,N/A -2012,9,3,10,30,101560,100410,99310,84,0,5.93,6.36,6.45,6.49,6.5200000000000005,6.54,6.55,6.5600000000000005,6.5600000000000005,215.82,215.93,216,216.04,216.06,216.07,216.07,216.07,216.05,28.76,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.900000000000002,N/A,N/A -2012,9,3,11,30,101600,100450,99340,83.73,0,5.88,6.33,6.43,6.49,6.5200000000000005,6.54,6.5600000000000005,6.57,6.59,227.34,227.06,226.82,226.56,226.32,226.07,225.83,225.59,225.09,28.73,28.37,28.2,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A -2012,9,3,12,30,101630,100480,99370,82.23,0,5.91,6.36,6.45,6.5,6.53,6.55,6.5600000000000005,6.57,6.58,222.14000000000001,222.24,222.19,222.14000000000001,222.08,222.01,221.94,221.86,221.69,28.650000000000002,28.29,28.12,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A -2012,9,3,13,30,101650,100500,99390,81.4,0,5.09,5.44,5.51,5.55,5.58,5.59,5.6000000000000005,5.61,5.62,221.69,221.65,221.62,221.58,221.56,221.54,221.51,221.49,221.43,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A -2012,9,3,14,30,101670,100530,99420,82.3,0,4.64,4.97,5.04,5.09,5.12,5.15,5.17,5.19,5.22,217.27,218.19,218.66,219.12,219.54,219.94,220.34,220.71,221.45000000000002,28.78,28.44,28.26,28.060000000000002,27.88,27.68,27.490000000000002,27.310000000000002,26.93,N/A,N/A -2012,9,3,15,30,101690,100550,99440,81.25,0,4.37,4.71,4.79,4.83,4.88,4.91,4.94,4.97,5.0200000000000005,253.59,252.51000000000002,251.94,251.35,250.82,250.3,249.77,249.27,248.22,28.89,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.43,27.05,N/A,N/A -2012,9,3,16,30,101680,100530,99420,80.64,0,4.74,5.04,5.08,5.09,5.1000000000000005,5.1000000000000005,5.09,5.08,5.0600000000000005,228.51,228.31,228.24,228.16,228.08,228.01,227.92000000000002,227.84,227.67000000000002,28.88,28.53,28.36,28.16,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A -2012,9,3,17,30,101650,100510,99400,81.43,0,4.28,4.55,4.61,4.64,4.67,4.68,4.69,4.71,4.72,235.03,235.04,235.1,235.15,235.21,235.26,235.32,235.38,235.5,28.84,28.48,28.310000000000002,28.11,27.92,27.72,27.53,27.35,26.97,N/A,N/A -2012,9,3,18,30,101650,100500,99400,80.96000000000001,0,4.5600000000000005,4.87,4.93,4.96,4.98,5,5.01,5.01,5.0200000000000005,216.77,216.94,217.03,217.1,217.16,217.21,217.27,217.32,217.39000000000001,28.98,28.63,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,9,3,19,30,101610,100470,99360,83.29,0,5.6000000000000005,6.0200000000000005,6.11,6.16,6.2,6.23,6.25,6.26,6.29,200.09,200.67000000000002,200.97,201.27,201.53,201.79,202.05,202.3,202.8,29,28.64,28.46,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A -2012,9,3,20,30,101570,100430,99320,83.42,0,5.83,6.25,6.33,6.36,6.37,6.38,6.38,6.37,6.34,202.84,202.74,202.70000000000002,202.65,202.59,202.53,202.46,202.39000000000001,202.23000000000002,28.95,28.6,28.43,28.22,28.03,27.84,27.650000000000002,27.46,27.080000000000002,N/A,N/A -2012,9,3,21,30,101520,100380,99270,79.05,0,6.8500000000000005,7.37,7.46,7.5,7.51,7.51,7.5,7.49,7.46,194.45000000000002,194.37,194.35,194.3,194.24,194.17000000000002,194.07,193.98000000000002,193.70000000000002,29.04,28.7,28.53,28.330000000000002,28.150000000000002,27.96,27.77,27.59,27.22,N/A,N/A -2012,9,3,22,30,101470,100330,99220,78.4,0,6.36,6.8500000000000005,6.94,6.97,6.99,7,6.99,6.99,6.96,198.23000000000002,198.16,198.1,198.03,197.96,197.89000000000001,197.81,197.74,197.56,29.04,28.71,28.54,28.34,28.16,27.97,27.78,27.6,27.23,N/A,N/A -2012,9,3,23,30,101450,100310,99200,76,0,6.38,6.890000000000001,6.98,7.03,7.05,7.0600000000000005,7.0600000000000005,7.0600000000000005,7.04,196.16,196.11,196.1,196.08,196.06,196.04,196.01,195.99,195.92000000000002,29.1,28.78,28.62,28.42,28.23,28.04,27.85,27.67,27.3,N/A,N/A -2012,9,4,0,30,101410,100270,99160,81.38,0,6.98,7.5600000000000005,7.68,7.73,7.7700000000000005,7.79,7.8100000000000005,7.8100000000000005,7.82,194.44,194.45000000000002,194.46,194.47,194.47,194.47,194.46,194.45000000000002,194.43,28.85,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,9,4,1,30,101410,100270,99160,80.83,0,6.51,7.03,7.13,7.17,7.2,7.21,7.22,7.22,7.21,202.38,202.15,202.04,201.93,201.84,201.74,201.64000000000001,201.54,201.34,28.8,28.45,28.28,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A -2012,9,4,2,30,101430,100290,99180,78.71000000000001,0,6.5600000000000005,7.09,7.19,7.25,7.28,7.3,7.3100000000000005,7.32,7.32,200.36,200.5,200.53,200.57,200.6,200.63,200.65,200.68,200.72,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.61,27.43,27.05,N/A,N/A -2012,9,4,3,30,101460,100310,99200,84.43,0,7.15,7.73,7.8500000000000005,7.91,7.94,7.96,7.97,7.97,7.96,202.25,202.26,202.23000000000002,202.21,202.18,202.15,202.13,202.12,202.07,28.59,28.22,28.05,27.85,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A -2012,9,4,4,30,101440,100300,99190,85.42,0,7.2,7.86,8.01,8.09,8.15,8.2,8.23,8.25,8.27,202.25,202.47,202.55,202.63,202.69,202.74,202.8,202.84,202.92000000000002,28.560000000000002,28.19,28.01,27.8,27.61,27.42,27.22,27.03,26.650000000000002,N/A,N/A -2012,9,4,5,30,101460,100320,99210,83.74,0,8.11,8.8,8.950000000000001,9.03,9.08,9.120000000000001,9.13,9.15,9.16,200.42000000000002,200.41,200.45000000000002,200.52,200.58,200.65,200.74,200.82,201,28.57,28.19,28.01,27.810000000000002,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A -2012,9,4,6,30,101460,100320,99210,84.26,0,8.540000000000001,9.32,9.5,9.59,9.66,9.700000000000001,9.73,9.75,9.76,208.28,208.3,208.3,208.3,208.3,208.31,208.31,208.31,208.32,28.490000000000002,28.1,27.92,27.72,27.52,27.330000000000002,27.13,26.94,26.560000000000002,N/A,N/A -2012,9,4,7,30,101490,100340,99240,80.2,0,8.69,9.49,9.67,9.77,9.84,9.89,9.92,9.950000000000001,9.98,217.46,217.66,217.70000000000002,217.72,217.73000000000002,217.74,217.75,217.75,217.75,28.560000000000002,28.19,28.01,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,9,4,8,30,101470,100320,99210,82.37,0,7.930000000000001,8.66,8.83,8.94,9.01,9.07,9.11,9.15,9.200000000000001,222.17000000000002,222.25,222.29,222.32,222.33,222.35,222.36,222.38,222.4,28.5,28.12,27.94,27.740000000000002,27.54,27.35,27.16,26.97,26.59,N/A,N/A -2012,9,4,9,30,101460,100320,99210,81.63,0,7.5200000000000005,8.22,8.38,8.48,8.55,8.6,8.64,8.67,8.72,223.83,223.3,223.08,222.87,222.68,222.51,222.34,222.18,221.87,28.740000000000002,28.38,28.2,28,27.810000000000002,27.62,27.42,27.240000000000002,26.86,N/A,N/A -2012,9,4,10,30,101480,100330,99220,82.51,0,7.37,7.97,8.120000000000001,8.2,8.25,8.28,8.31,8.33,8.35,220.61,220.59,220.6,220.6,220.61,220.62,220.63,220.65,220.68,28.59,28.23,28.05,27.85,27.66,27.46,27.27,27.09,26.71,N/A,N/A -2012,9,4,11,30,101500,100360,99240,82.14,0,8.08,8.77,8.93,9,9.040000000000001,9.06,9.07,9.07,9.05,219.04,219.03,219.06,219.1,219.13,219.18,219.22,219.27,219.37,28.67,28.310000000000002,28.13,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A -2012,9,4,12,30,101490,100340,99230,77.78,0,6.99,7.61,7.75,7.83,7.88,7.91,7.94,7.95,7.97,222.8,223.1,223.25,223.4,223.54,223.67000000000002,223.81,223.94,224.22,28.810000000000002,28.46,28.29,28.080000000000002,27.900000000000002,27.7,27.51,27.32,26.94,N/A,N/A -2012,9,4,13,30,101510,100370,99260,75.71000000000001,0,6.66,7.23,7.3500000000000005,7.42,7.46,7.49,7.51,7.53,7.54,226.33,226.36,226.35,226.35,226.35,226.36,226.38,226.4,226.44,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.05,N/A,N/A -2012,9,4,14,30,101540,100390,99290,77.58,0,5.62,6.140000000000001,6.2700000000000005,6.37,6.45,6.51,6.5600000000000005,6.6000000000000005,6.68,226.67000000000002,227.07,227.28,227.46,227.61,227.74,227.86,227.96,228.16,28.91,28.57,28.400000000000002,28.2,28.01,27.82,27.62,27.43,27.05,N/A,N/A -2012,9,4,15,30,101560,100420,99310,75.42,0,5.7,6.16,6.2700000000000005,6.33,6.38,6.41,6.44,6.46,6.5,230.3,230.15,230.15,230.17000000000002,230.19,230.22,230.25,230.29,230.36,28.96,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,9,4,16,30,101540,100390,99290,78.42,0,5.63,6.01,6.09,6.13,6.16,6.17,6.19,6.2,6.22,227.36,227.53,227.64000000000001,227.76,227.87,227.98000000000002,228.09,228.20000000000002,228.45000000000002,28.810000000000002,28.46,28.29,28.09,27.900000000000002,27.72,27.53,27.34,26.97,N/A,N/A -2012,9,4,17,30,101530,100380,99280,80.14,0,5.79,6.19,6.25,6.2700000000000005,6.28,6.28,6.2700000000000005,6.26,6.23,217.19,217.38,217.48000000000002,217.57,217.65,217.71,217.77,217.82,217.92000000000002,28.8,28.44,28.26,28.060000000000002,27.87,27.68,27.48,27.29,26.91,N/A,N/A -2012,9,4,18,30,101520,100370,99270,79.59,0,5.17,5.5200000000000005,5.6000000000000005,5.64,5.66,5.68,5.69,5.7,5.71,208.86,208.9,208.97,209.01,209.05,209.09,209.13,209.17000000000002,209.25,28.78,28.42,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A -2012,9,4,19,30,101490,100340,99240,80.12,0,5.97,6.4,6.49,6.5200000000000005,6.54,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.54,201.29,201.42000000000002,201.47,201.51,201.54,201.58,201.6,201.62,201.68,28.78,28.41,28.240000000000002,28.04,27.85,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,9,4,20,30,101420,100280,99170,79.52,0,6.45,6.96,7.0600000000000005,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.140000000000001,7.11,200.68,200.84,200.9,200.96,201.01,201.04,201.09,201.13,201.23000000000002,28.810000000000002,28.45,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,9,4,21,30,101380,100230,99130,76.34,0,7.18,7.76,7.87,7.92,7.94,7.95,7.95,7.95,7.92,201.09,201.08,201.09,201.12,201.14000000000001,201.18,201.20000000000002,201.23000000000002,201.29,28.88,28.54,28.36,28.17,27.98,27.79,27.6,27.42,27.05,N/A,N/A -2012,9,4,22,30,101350,100210,99100,78.87,0,6.3500000000000005,6.88,6.99,7.05,7.1000000000000005,7.13,7.16,7.18,7.21,202.49,202.62,202.71,202.8,202.89000000000001,202.98000000000002,203.08,203.17000000000002,203.4,28.84,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.37,27,N/A,N/A -2012,9,4,23,30,101290,100140,99040,81.57000000000001,0,6.84,7.390000000000001,7.51,7.57,7.6000000000000005,7.62,7.640000000000001,7.640000000000001,7.640000000000001,192.45000000000002,192.70000000000002,192.84,192.99,193.11,193.23000000000002,193.36,193.48000000000002,193.74,28.61,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A -2012,9,5,0,30,101290,100150,99040,80.77,0,7.03,7.59,7.7,7.75,7.79,7.8,7.8100000000000005,7.8100000000000005,7.8,197.02,197.18,197.26,197.33,197.38,197.43,197.47,197.52,197.6,28.68,28.32,28.14,27.94,27.75,27.560000000000002,27.37,27.18,26.810000000000002,N/A,N/A -2012,9,5,1,30,101260,100120,99010,79.17,0,6.92,7.47,7.58,7.640000000000001,7.67,7.69,7.7,7.7,7.69,198.54,198.62,198.66,198.70000000000002,198.74,198.78,198.81,198.85,198.93,28.7,28.34,28.16,27.96,27.77,27.580000000000002,27.39,27.21,26.830000000000002,N/A,N/A -2012,9,5,2,30,101260,100110,99010,80.7,0,6.7700000000000005,7.3100000000000005,7.41,7.47,7.5,7.5200000000000005,7.54,7.55,7.5600000000000005,196.32,196.28,196.35,196.44,196.53,196.62,196.73000000000002,196.82,197.06,28.54,28.17,28,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,9,5,3,30,101260,100120,99010,82.05,0,8,8.68,8.83,8.9,8.94,8.97,8.98,8.99,8.98,197.27,197.34,197.41,197.48000000000002,197.55,197.62,197.70000000000002,197.78,197.94,28.51,28.13,27.95,27.75,27.560000000000002,27.37,27.17,26.990000000000002,26.61,N/A,N/A -2012,9,5,4,30,101250,100110,99000,84.15,0,8.03,8.74,8.89,8.97,9.02,9.05,9.06,9.07,9.07,206.43,206.57,206.55,206.52,206.47,206.41,206.33,206.26,206.08,28.39,27.990000000000002,27.810000000000002,27.6,27.41,27.21,27.02,26.830000000000002,26.44,N/A,N/A -2012,9,5,5,30,101240,100090,98990,82.27,0,8.08,8.81,8.96,9.05,9.11,9.15,9.18,9.200000000000001,9.22,212.1,211.79,211.72,211.67000000000002,211.63,211.6,211.57,211.55,211.53,28.52,28.13,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.580000000000002,N/A,N/A -2012,9,5,6,30,101280,100140,99030,84.59,0,7.74,8.38,8.52,8.58,8.63,8.65,8.67,8.67,8.67,205.87,205.94,206.05,206.18,206.29,206.4,206.51,206.61,206.82,28.39,28.01,27.830000000000002,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A -2012,9,5,7,30,101300,100160,99050,83.28,0,7.67,8.4,8.58,8.68,8.75,8.8,8.84,8.870000000000001,8.9,212.6,213.08,213.25,213.41,213.54,213.66,213.77,213.86,214.04,28.55,28.18,28,27.8,27.61,27.41,27.22,27.03,26.64,N/A,N/A -2012,9,5,8,30,101280,100140,99030,83.36,0,7.49,8.23,8.41,8.52,8.6,8.66,8.71,8.75,8.8,215.46,215.53,215.57,215.63,215.68,215.74,215.79,215.84,215.95000000000002,28.55,28.17,27.990000000000002,27.79,27.6,27.400000000000002,27.21,27.02,26.63,N/A,N/A -2012,9,5,9,30,101280,100140,99040,80.13,0,7.92,8.59,8.73,8.8,8.85,8.870000000000001,8.89,8.9,8.91,215.51,216.08,216.39000000000001,216.70000000000002,216.98000000000002,217.24,217.51,217.76,218.27,28.8,28.45,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,9,5,10,30,101310,100170,99060,82.8,0,7.33,7.930000000000001,8.06,8.120000000000001,8.16,8.19,8.2,8.2,8.2,228.62,228.46,228.4,228.35,228.32,228.29,228.28,228.26,228.25,28.580000000000002,28.21,28.03,27.830000000000002,27.64,27.44,27.25,27.060000000000002,26.68,N/A,N/A -2012,9,5,11,30,101290,100150,99040,81.51,0,6.95,7.53,7.66,7.73,7.78,7.8100000000000005,7.83,7.8500000000000005,7.88,223.41,223.63,223.78,223.9,224.02,224.14000000000001,224.25,224.36,224.58,28.580000000000002,28.22,28.04,27.830000000000002,27.64,27.45,27.25,27.07,26.69,N/A,N/A -2012,9,5,12,30,101290,100150,99050,81.72,0,6.2700000000000005,6.8500000000000005,6.99,7.09,7.17,7.23,7.28,7.32,7.4,229.48000000000002,230.08,230.38,230.68,230.95000000000002,231.21,231.47,231.71,232.20000000000002,28.650000000000002,28.29,28.11,27.91,27.72,27.53,27.330000000000002,27.150000000000002,26.77,N/A,N/A -2012,9,5,13,30,101320,100180,99070,79.23,0,6.66,7.16,7.25,7.28,7.29,7.3,7.29,7.28,7.25,243.41,243.18,243.12,243.1,243.07,243.06,243.06,243.06,243.09,28.77,28.42,28.25,28.05,27.86,27.67,27.47,27.29,26.91,N/A,N/A -2012,9,5,14,30,101340,100200,99090,77.15,0,6.51,7.05,7.16,7.23,7.2700000000000005,7.3,7.32,7.34,7.36,241.96,242.49,242.76,243.01,243.24,243.45000000000002,243.66,243.84,244.20000000000002,28.87,28.53,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A -2012,9,5,15,30,101350,100210,99100,79.33,0,6.55,7.01,7.09,7.11,7.12,7.12,7.11,7.1000000000000005,7.0600000000000005,243.39000000000001,243.18,243.06,242.93,242.81,242.70000000000002,242.57,242.46,242.21,28.63,28.27,28.1,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.76,N/A,N/A -2012,9,5,16,30,101360,100210,99110,75.76,0,5.61,6.08,6.18,6.24,6.29,6.32,6.34,6.36,6.390000000000001,243.32,242.96,242.75,242.54,242.35,242.17000000000002,242,241.83,241.49,28.89,28.54,28.37,28.17,27.97,27.79,27.59,27.400000000000002,27.02,N/A,N/A -2012,9,5,17,30,101350,100210,99100,74.93,0,5.33,5.69,5.7700000000000005,5.8100000000000005,5.83,5.8500000000000005,5.86,5.87,5.87,233.07,233.31,233.52,233.72,233.92000000000002,234.1,234.3,234.49,234.87,28.91,28.57,28.400000000000002,28.21,28.02,27.830000000000002,27.64,27.46,27.080000000000002,N/A,N/A -2012,9,5,18,30,101320,100180,99070,79.22,0,5.99,6.46,6.5600000000000005,6.6000000000000005,6.63,6.65,6.66,6.67,6.66,226.37,226.58,226.70000000000002,226.82,226.92000000000002,227.01,227.11,227.19,227.39000000000001,28.73,28.37,28.2,28,27.8,27.61,27.42,27.23,26.85,N/A,N/A -2012,9,5,19,30,101280,100140,99030,79.22,0,6.53,7.04,7.140000000000001,7.19,7.21,7.22,7.23,7.22,7.21,217.47,217.56,217.61,217.65,217.70000000000002,217.74,217.79,217.84,217.95000000000002,28.810000000000002,28.45,28.28,28.080000000000002,27.89,27.7,27.51,27.330000000000002,26.95,N/A,N/A -2012,9,5,20,30,101250,100110,99000,80.21000000000001,0,6.93,7.53,7.640000000000001,7.69,7.72,7.74,7.74,7.73,7.71,213.34,213.49,213.58,213.64000000000001,213.70000000000002,213.75,213.79,213.84,213.94,28.78,28.42,28.240000000000002,28.04,27.86,27.67,27.47,27.29,26.91,N/A,N/A -2012,9,5,21,30,101230,100090,98990,80.2,0,7.29,7.92,8.040000000000001,8.09,8.120000000000001,8.13,8.120000000000001,8.11,8.06,211.92000000000002,212,212,211.97,211.93,211.88,211.81,211.73000000000002,211.55,28.77,28.41,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A -2012,9,5,22,30,101210,100070,98970,77.35000000000001,0,6.68,7.22,7.34,7.390000000000001,7.43,7.45,7.47,7.48,7.49,209.42000000000002,209.54,209.61,209.70000000000002,209.77,209.85,209.93,210.02,210.23000000000002,28.82,28.48,28.3,28.11,27.92,27.740000000000002,27.55,27.37,27,N/A,N/A -2012,9,5,23,30,101200,100050,98950,75.21000000000001,0,6.78,7.34,7.45,7.5,7.54,7.5600000000000005,7.57,7.58,7.59,212.16,212.33,212.44,212.54,212.63,212.72,212.82,212.91,213.1,28.87,28.52,28.35,28.16,27.97,27.79,27.59,27.42,27.05,N/A,N/A -2012,9,6,0,30,101170,100030,98920,73.81,0,7.390000000000001,8,8.13,8.18,8.22,8.23,8.24,8.24,8.22,207.71,207.71,207.74,207.79,207.83,207.88,207.92000000000002,207.95000000000002,208.02,28.810000000000002,28.47,28.3,28.1,27.92,27.73,27.53,27.35,26.97,N/A,N/A -2012,9,6,1,30,101150,100010,98910,74.02,0,7.21,7.8,7.91,7.97,8,8.02,8.040000000000001,8.05,8.08,208.41,208.38,208.38,208.39000000000001,208.39000000000001,208.4,208.42000000000002,208.44,208.52,28.810000000000002,28.47,28.3,28.11,27.93,27.75,27.560000000000002,27.39,27.03,N/A,N/A -2012,9,6,2,30,101180,100030,98930,78.13,0,6.95,7.5,7.59,7.62,7.640000000000001,7.640000000000001,7.63,7.61,7.57,215.29,215.14000000000001,215.04,214.92000000000002,214.78,214.65,214.49,214.34,213.98000000000002,28.55,28.19,28.02,27.82,27.63,27.45,27.25,27.07,26.7,N/A,N/A -2012,9,6,3,30,101190,100050,98940,70.07000000000001,0,6.37,6.93,7.05,7.11,7.16,7.19,7.21,7.22,7.24,213.09,213.42000000000002,213.56,213.67000000000002,213.77,213.86,213.94,214.01,214.14000000000001,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A -2012,9,6,4,30,101190,100050,98940,69.78,0,7.0200000000000005,7.57,7.7,7.78,7.84,7.890000000000001,7.930000000000001,7.97,8.05,219.5,219.42000000000002,219.44,219.46,219.48000000000002,219.5,219.51,219.52,219.48000000000002,28.87,28.55,28.39,28.2,28.02,27.84,27.66,27.48,27.13,N/A,N/A -2012,9,6,5,30,101190,100040,98940,72.63,0,7.41,8,8.1,8.13,8.14,8.13,8.11,8.08,8,221.15,221.08,221.01,220.95000000000002,220.89000000000001,220.83,220.77,220.70000000000002,220.55,28.75,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.45,27.27,26.88,N/A,N/A -2012,9,6,6,30,101250,100100,99000,75.87,0,7.48,8.1,8.21,8.25,8.27,8.26,8.25,8.22,8.15,223.71,223.73000000000002,223.72,223.68,223.65,223.61,223.57,223.52,223.42000000000002,28.580000000000002,28.22,28.04,27.84,27.650000000000002,27.46,27.26,27.07,26.69,N/A,N/A -2012,9,6,7,30,101280,100130,99030,74.92,0,6.55,7.07,7.17,7.22,7.25,7.2700000000000005,7.28,7.28,7.28,227.38,227.41,227.4,227.39000000000001,227.37,227.35,227.34,227.31,227.26,28.57,28.22,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.71,N/A,N/A -2012,9,6,8,30,101310,100170,99060,77.77,0,6.84,7.33,7.41,7.44,7.45,7.45,7.44,7.43,7.38,235.63,235.76,235.82,235.88,235.93,235.97,236.01,236.04,236.11,28.330000000000002,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A -2012,9,6,9,30,101320,100180,99070,76.57000000000001,0,6.18,6.68,6.78,6.84,6.88,6.91,6.93,6.94,6.96,237.81,237.91,237.97,238.03,238.09,238.15,238.20000000000002,238.26,238.37,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.2,27.02,26.63,N/A,N/A -2012,9,6,10,30,101340,100190,99080,79.63,0,6.44,6.9,6.98,7.01,7.0200000000000005,7.0200000000000005,7.01,6.99,6.96,243.8,243.81,243.81,243.83,243.84,243.86,243.88,243.9,243.95000000000002,28.28,27.91,27.73,27.53,27.34,27.150000000000002,26.95,26.76,26.38,N/A,N/A -2012,9,6,11,30,101350,100200,99090,80.22,0,5.49,5.86,5.93,5.97,6,6.0200000000000005,6.04,6.05,6.0600000000000005,243.72,243.52,243.33,243.1,242.87,242.62,242.38,242.14000000000001,241.62,28.19,27.830000000000002,27.650000000000002,27.46,27.26,27.07,26.88,26.7,26.32,N/A,N/A -2012,9,6,12,30,101380,100240,99130,82.21000000000001,0,5.3100000000000005,5.65,5.7,5.73,5.74,5.75,5.74,5.74,5.72,258.96,258.4,257.99,257.58,257.21,256.85,256.49,256.16,255.51000000000002,28.21,27.84,27.66,27.46,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,9,6,13,30,101410,100260,99150,82.65,0,5.24,5.51,5.5200000000000005,5.51,5.49,5.46,5.43,5.4,5.33,277.23,275.47,274.6,273.72,272.94,272.2,271.47,270.79,269.46,27.98,27.61,27.43,27.23,27.04,26.85,26.66,26.47,26.09,N/A,N/A -2012,9,6,14,30,101450,100300,99190,86.18,0,3.7,3.84,3.85,3.83,3.8000000000000003,3.7800000000000002,3.75,3.72,3.65,294.72,293.86,293.37,292.81,292.26,291.68,291,290.32,288.49,27.47,27.09,26.92,26.72,26.53,26.34,26.150000000000002,25.97,25.6,N/A,N/A -2012,9,6,15,30,101450,100310,99190,84.63,0,2.5,2.61,2.63,2.65,2.66,2.68,2.71,2.74,2.86,276.72,275.28000000000003,274.34000000000003,273.28000000000003,272.16,270.95,269.52,268.07,264.23,27.67,27.3,27.13,26.94,26.76,26.580000000000002,26.400000000000002,26.23,25.900000000000002,N/A,N/A -2012,9,6,16,30,101470,100320,99210,83.61,0,2.84,3,3.0300000000000002,3.0500000000000003,3.0700000000000003,3.09,3.1,3.12,3.15,266.96,266.43,266.23,266.02,265.84000000000003,265.66,265.47,265.27,264.86,27.87,27.5,27.32,27.12,26.92,26.740000000000002,26.54,26.35,25.98,N/A,N/A -2012,9,6,17,30,101440,100290,99180,82.24,0,2.93,3.12,3.17,3.21,3.25,3.2800000000000002,3.31,3.34,3.39,242.77,242.84,242.9,242.96,243,243.04,243.07,243.1,243.12,28.11,27.740000000000002,27.560000000000002,27.36,27.17,26.98,26.78,26.6,26.22,N/A,N/A -2012,9,6,18,30,101420,100280,99170,82.67,0,3.48,3.67,3.7,3.73,3.75,3.77,3.79,3.81,3.88,214.37,214.9,215.25,215.65,216.07,216.52,217.07,217.64000000000001,219.25,28.22,27.85,27.68,27.48,27.3,27.12,26.93,26.75,26.41,N/A,N/A -2012,9,6,19,30,101380,100230,99120,80.43,0,3.92,4.15,4.2,4.22,4.23,4.24,4.24,4.25,4.25,208.05,208.46,208.68,208.9,209.12,209.34,209.59,209.83,210.42000000000002,28.55,28.19,28.01,27.810000000000002,27.63,27.44,27.25,27.060000000000002,26.69,N/A,N/A -2012,9,6,20,30,101350,100200,99100,78.91,0,4.96,5.26,5.29,5.3,5.29,5.28,5.26,5.23,5.17,215.42000000000002,215.41,215.4,215.38,215.37,215.35,215.33,215.31,215.28,28.71,28.36,28.18,27.98,27.79,27.6,27.41,27.22,26.84,N/A,N/A -2012,9,6,21,30,101310,100170,99060,81.15,0,5.34,5.65,5.69,5.69,5.68,5.66,5.62,5.59,5.5,209.9,209.78,209.67000000000002,209.57,209.47,209.36,209.24,209.11,208.81,28.54,28.18,28.01,27.8,27.61,27.42,27.23,27.04,26.66,N/A,N/A -2012,9,6,22,30,101280,100140,99030,80.17,0,5.5600000000000005,5.93,5.99,6,6.01,6,5.98,5.96,5.91,213.17000000000002,213.27,213.26,213.26,213.26,213.26,213.25,213.25,213.21,28.55,28.21,28.04,27.84,27.650000000000002,27.46,27.28,27.09,26.73,N/A,N/A -2012,9,6,23,30,101250,100110,99010,79.73,0,6.48,6.94,7.01,7.03,7.03,7.0200000000000005,7,6.98,6.92,215.23000000000002,215.28,215.27,215.24,215.21,215.18,215.14000000000001,215.09,214.96,28.560000000000002,28.21,28.04,27.84,27.650000000000002,27.46,27.28,27.09,26.72,N/A,N/A -2012,9,7,0,30,101210,100070,98960,79.91,0,7.25,7.78,7.86,7.87,7.86,7.82,7.78,7.72,7.58,219.78,219.75,219.75,219.73000000000002,219.71,219.68,219.63,219.57,219.39000000000001,28.5,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.02,26.650000000000002,N/A,N/A -2012,9,7,1,30,101220,100070,98970,78.26,0,6.7700000000000005,7.2700000000000005,7.36,7.38,7.390000000000001,7.37,7.3500000000000005,7.32,7.23,221,221.01,221.02,221.01,221.01,221.01,220.99,220.97,220.88,28.580000000000002,28.240000000000002,28.07,27.87,27.68,27.5,27.310000000000002,27.13,26.76,N/A,N/A -2012,9,7,2,30,101200,100060,98950,79.11,0,6,6.44,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.6000000000000005,6.61,6.62,219.5,219.62,219.67000000000002,219.72,219.76,219.79,219.83,219.86,219.93,28.53,28.18,28.01,27.810000000000002,27.63,27.45,27.26,27.09,26.740000000000002,N/A,N/A -2012,9,7,3,30,101210,100060,98960,76.74,0,6.45,6.91,6.99,7.01,7.0200000000000005,7.01,6.99,6.97,6.91,226.51,226.51,226.49,226.47,226.46,226.44,226.42000000000002,226.41,226.38,28.53,28.19,28.01,27.82,27.63,27.45,27.26,27.080000000000002,26.71,N/A,N/A -2012,9,7,4,30,101210,100060,98960,77.85000000000001,0,6.29,6.74,6.8,6.82,6.82,6.8100000000000005,6.79,6.7700000000000005,6.71,228.69,228.69,228.69,228.68,228.66,228.63,228.6,228.56,228.47,28.47,28.12,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,9,7,5,30,101220,100070,98960,74.14,0,6.41,6.88,6.97,7,7.0200000000000005,7.0200000000000005,7.01,7,6.96,232.47,232.58,232.61,232.64000000000001,232.66,232.69,232.70000000000002,232.71,232.69,28.6,28.26,28.09,27.89,27.7,27.51,27.32,27.14,26.76,N/A,N/A -2012,9,7,6,30,101240,100100,98990,71.85000000000001,0,5.98,6.43,6.5200000000000005,6.5600000000000005,6.59,6.61,6.62,6.63,6.65,237.59,237.73000000000002,237.8,237.87,237.93,237.99,238.06,238.12,238.26,28.77,28.44,28.28,28.080000000000002,27.900000000000002,27.72,27.53,27.35,26.98,N/A,N/A -2012,9,7,7,30,101260,100120,99010,75.32000000000001,0,6.2700000000000005,6.71,6.78,6.79,6.78,6.76,6.73,6.69,6.6000000000000005,238,238.16,238.22,238.29,238.35,238.41,238.47,238.51,238.64000000000001,28.57,28.22,28.05,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A -2012,9,7,8,30,101250,100100,99000,71.67,0,6.38,6.88,6.97,7.01,7.03,7.03,7.0200000000000005,7,6.96,244.59,244.65,244.74,244.86,244.97,245.08,245.19,245.31,245.57,28.73,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,9,7,9,30,101280,100140,99030,75.78,0,5.97,6.390000000000001,6.46,6.49,6.5,6.5,6.49,6.48,6.45,243.57,243.87,243.96,244.05,244.12,244.20000000000002,244.28,244.34,244.49,28.44,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,9,7,10,30,101270,100130,99020,78.99,0,6.24,6.68,6.76,6.79,6.8,6.8,6.78,6.7700000000000005,6.72,251.02,251.33,251.54,251.75,251.95000000000002,252.13,252.31,252.49,252.84,28.25,27.88,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.34,N/A,N/A -2012,9,7,11,30,101300,100160,99050,80.66,0,5.74,6.11,6.17,6.18,6.19,6.18,6.17,6.15,6.11,267.18,266.66,266.39,266.11,265.88,265.64,265.41,265.19,264.74,28.02,27.650000000000002,27.47,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A -2012,9,7,12,30,101300,100150,99040,82.64,0,5.75,6.11,6.17,6.2,6.2,6.2,6.19,6.17,6.140000000000001,266.83,266.42,266.18,265.94,265.71,265.49,265.26,265.05,264.6,27.69,27.3,27.12,26.92,26.73,26.53,26.34,26.150000000000002,25.77,N/A,N/A -2012,9,7,13,30,101320,100170,99060,80.97,0,5.17,5.49,5.55,5.57,5.58,5.58,5.58,5.57,5.55,267.73,267.17,266.84000000000003,266.5,266.19,265.88,265.57,265.26,264.63,27.7,27.32,27.14,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A -2012,9,7,14,30,101340,100190,99080,81.88,0,4.98,5.26,5.3100000000000005,5.32,5.32,5.32,5.3,5.29,5.26,274.17,273.89,273.69,273.49,273.3,273.12,272.91,272.72,272.26,27.48,27.09,26.91,26.71,26.51,26.32,26.13,25.94,25.560000000000002,N/A,N/A -2012,9,7,15,30,101330,100180,99070,81.07000000000001,0,4.69,4.99,5.05,5.09,5.11,5.13,5.15,5.15,5.17,269.71,269.2,268.94,268.69,268.46,268.26,268.05,267.85,267.44,27.57,27.18,26.990000000000002,26.79,26.6,26.41,26.21,26.03,25.650000000000002,N/A,N/A -2012,9,7,16,30,101350,100200,99090,78.33,0,4.57,4.86,4.93,4.96,4.98,5,5.01,5.0200000000000005,5.03,259.71,259.68,259.72,259.77,259.82,259.87,259.93,259.99,260.1,27.86,27.48,27.3,27.1,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,9,7,17,30,101320,100170,99060,78.36,0,3.98,4.21,4.25,4.26,4.2700000000000005,4.28,4.28,4.29,4.29,234.28,234.26,234.29,234.32,234.37,234.43,234.52,234.62,235.05,28,27.63,27.46,27.27,27.09,26.91,26.73,26.560000000000002,26.23,N/A,N/A -2012,9,7,18,30,101260,100120,99010,74.74,0,4.51,4.75,4.7700000000000005,4.7700000000000005,4.76,4.74,4.71,4.68,4.61,211.70000000000002,212.01,212.25,212.49,212.73000000000002,212.97,213.24,213.51,214.23000000000002,28.39,28.03,27.86,27.67,27.490000000000002,27.3,27.12,26.95,26.6,N/A,N/A -2012,9,7,19,30,101260,100120,99010,73.24,0,4.05,4.2700000000000005,4.3,4.3,4.29,4.28,4.25,4.23,4.15,211.36,211.66,211.8,211.94,212.09,212.23000000000002,212.39000000000001,212.53,212.9,28.62,28.27,28.1,27.91,27.72,27.54,27.36,27.18,26.82,N/A,N/A -2012,9,7,20,30,101190,100040,98940,73.86,0,5.18,5.48,5.51,5.51,5.49,5.47,5.43,5.39,5.29,209.8,209.86,209.9,209.93,209.96,209.98000000000002,210,210.02,210.02,28.64,28.29,28.12,27.93,27.740000000000002,27.55,27.36,27.19,26.82,N/A,N/A -2012,9,7,21,30,101170,100030,98920,76.16,0,5.64,6,6.05,6.05,6.04,6.0200000000000005,5.98,5.95,5.87,210.92000000000002,210.95000000000002,210.95000000000002,210.95000000000002,210.95000000000002,210.93,210.91,210.88,210.81,28.51,28.16,27.990000000000002,27.79,27.6,27.41,27.22,27.03,26.66,N/A,N/A -2012,9,7,22,30,101130,99990,98880,77.47,0,6.23,6.67,6.74,6.75,6.76,6.75,6.74,6.71,6.66,207.74,207.8,207.83,207.86,207.87,207.89000000000001,207.91,207.92000000000002,207.93,28.45,28.1,27.93,27.73,27.54,27.36,27.16,26.98,26.6,N/A,N/A -2012,9,7,23,30,101090,99950,98840,76.38,0,6.11,6.5600000000000005,6.65,6.68,6.7,6.71,6.7,6.7,6.67,210.29,210.35,210.37,210.39000000000001,210.4,210.41,210.4,210.38,210.33,28.53,28.19,28.02,27.82,27.63,27.44,27.25,27.07,26.7,N/A,N/A -2012,9,8,0,30,101070,99930,98820,76.34,0,5.8100000000000005,6.22,6.3,6.32,6.33,6.33,6.32,6.3100000000000005,6.2700000000000005,217.57,217.65,217.71,217.76,217.81,217.85,217.89000000000001,217.94,218.02,28.490000000000002,28.150000000000002,27.97,27.77,27.59,27.39,27.2,27.02,26.64,N/A,N/A -2012,9,8,1,30,101060,99910,98810,76.92,0,5.83,6.25,6.32,6.3500000000000005,6.36,6.36,6.3500000000000005,6.34,6.3,217.58,217.59,217.63,217.67000000000002,217.69,217.70000000000002,217.71,217.71,217.70000000000002,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.02,26.64,N/A,N/A -2012,9,8,2,30,101040,99900,98790,78.62,0,6.4,6.87,6.95,6.98,6.99,6.99,6.98,6.96,6.92,222.39000000000001,222.44,222.47,222.5,222.51,222.53,222.53,222.54,222.54,28.43,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.96,26.580000000000002,N/A,N/A -2012,9,8,3,30,101030,99890,98790,77.63,0,6.68,7.19,7.28,7.3100000000000005,7.32,7.32,7.3100000000000005,7.29,7.24,227.73000000000002,227.81,227.85,227.88,227.91,227.94,227.97,228,228.07,28.46,28.11,27.94,27.740000000000002,27.55,27.36,27.17,26.990000000000002,26.61,N/A,N/A -2012,9,8,4,30,101020,99880,98780,78.4,0,6.79,7.28,7.36,7.390000000000001,7.390000000000001,7.38,7.36,7.33,7.2700000000000005,229.75,229.74,229.75,229.75,229.74,229.74,229.72,229.70000000000002,229.67000000000002,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A -2012,9,8,5,30,101040,99900,98790,78.41,0,7.01,7.57,7.69,7.74,7.78,7.79,7.8,7.8100000000000005,7.8,231.19,231.27,231.31,231.34,231.37,231.4,231.42000000000002,231.45000000000002,231.5,28.48,28.13,27.95,27.75,27.57,27.38,27.18,27,26.63,N/A,N/A -2012,9,8,6,30,101060,99920,98810,76.59,0,6.3100000000000005,6.78,6.87,6.9,6.92,6.93,6.92,6.92,6.890000000000001,243.48000000000002,243.43,243.41,243.39000000000001,243.37,243.34,243.32,243.3,243.27,28.54,28.19,28.01,27.82,27.63,27.44,27.25,27.060000000000002,26.69,N/A,N/A -2012,9,8,7,30,101090,99950,98850,75.59,0,6.51,7,7.1000000000000005,7.140000000000001,7.16,7.17,7.18,7.18,7.17,235.15,235.24,235.3,235.36,235.43,235.49,235.57,235.64000000000001,235.8,28.68,28.330000000000002,28.16,27.96,27.77,27.59,27.39,27.21,26.84,N/A,N/A -2012,9,8,8,30,101150,100010,98900,76.28,0,5.98,6.45,6.53,6.58,6.6000000000000005,6.61,6.61,6.61,6.59,243.22,243.32,243.38,243.44,243.5,243.56,243.63,243.71,243.86,28.62,28.27,28.09,27.900000000000002,27.71,27.51,27.32,27.13,26.75,N/A,N/A -2012,9,8,9,30,101150,100010,98900,76.25,0,6.68,7.22,7.33,7.390000000000001,7.42,7.44,7.45,7.45,7.45,248.96,249.07,249.14000000000001,249.23000000000002,249.31,249.4,249.49,249.57,249.76000000000002,28.64,28.29,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.77,N/A,N/A -2012,9,8,10,30,101180,100040,98930,76.78,0,6.83,7.390000000000001,7.51,7.5600000000000005,7.6000000000000005,7.62,7.62,7.63,7.61,250.81,250.77,250.79,250.81,250.85,250.9,250.94,250.99,251.11,28.6,28.25,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A -2012,9,8,11,30,101230,100080,98980,77.15,0,6.04,6.5,6.6000000000000005,6.65,6.69,6.71,6.73,6.75,6.7700000000000005,267.33,266.81,266.5,266.17,265.88,265.58,265.28000000000003,264.98,264.36,28.52,28.17,27.990000000000002,27.79,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,9,8,12,30,101300,100150,99040,77.46000000000001,0,7.62,8.23,8.35,8.4,8.44,8.45,8.45,8.44,8.42,284.79,284.40000000000003,284.14,283.87,283.63,283.39,283.15000000000003,282.92,282.45,28.19,27.810000000000002,27.63,27.42,27.23,27.04,26.85,26.66,26.28,N/A,N/A -2012,9,8,13,30,101340,100190,99070,79.51,0,8.13,8.76,8.89,8.950000000000001,8.98,9,9,9,8.98,290.81,290.77,290.7,290.63,290.56,290.49,290.42,290.34000000000003,290.18,27.37,26.94,26.75,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,8,14,30,101360,100210,99090,79.12,0,6.92,7.41,7.51,7.5600000000000005,7.59,7.61,7.62,7.62,7.63,295.89,296.09000000000003,296.22,296.36,296.49,296.61,296.74,296.86,297.13,27.060000000000002,26.63,26.44,26.240000000000002,26.04,25.86,25.66,25.48,25.11,N/A,N/A -2012,9,8,15,30,101360,100210,99100,75.24,0,5.69,6.09,6.18,6.24,6.28,6.3100000000000005,6.34,6.36,6.390000000000001,307.97,308.11,308.19,308.24,308.29,308.33,308.35,308.37,308.38,27.59,27.2,27.01,26.810000000000002,26.62,26.43,26.23,26.05,25.67,N/A,N/A -2012,9,8,16,30,101340,100200,99090,67.99,0,5.86,6.25,6.32,6.34,6.3500000000000005,6.34,6.34,6.33,6.32,318.75,317.99,317.54,317.08,316.66,316.25,315.82,315.41,314.56,28.38,28.04,27.87,27.68,27.5,27.32,27.13,26.96,26.6,N/A,N/A -2012,9,8,17,30,101340,100190,99080,67.33,0,5.57,6.03,6.13,6.2,6.26,6.3,6.33,6.36,6.41,320.74,321.46,321.85,322.23,322.57,322.89,323.19,323.47,324.02,28.91,28.580000000000002,28.42,28.22,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A -2012,9,8,18,30,101320,100180,99070,63.28,0,4.96,5.42,5.53,5.61,5.67,5.72,5.76,5.8,5.88,318.38,319.09000000000003,319.53000000000003,319.92,320.27,320.6,320.91,321.21,321.79,29.63,29.35,29.2,29,28.82,28.63,28.44,28.26,27.88,N/A,N/A -2012,9,8,19,30,101280,100140,99040,60.980000000000004,0,5,5.48,5.6000000000000005,5.68,5.74,5.79,5.83,5.87,5.94,331.31,331.13,331.03000000000003,330.92,330.83,330.74,330.65000000000003,330.57,330.37,30.240000000000002,30,29.85,29.67,29.490000000000002,29.310000000000002,29.12,28.94,28.57,N/A,N/A -2012,9,8,20,30,101250,100110,99010,60,0,4.48,4.93,5.05,5.13,5.2,5.26,5.32,5.37,5.49,332.79,332.71,332.71,332.69,332.67,332.66,332.64,332.63,332.64,30.68,30.490000000000002,30.36,30.18,30.01,29.84,29.66,29.490000000000002,29.14,N/A,N/A -2012,9,8,21,30,101210,100080,98980,60.58,0,4.78,5.24,5.3500000000000005,5.43,5.5,5.57,5.67,5.79,6.12,325.66,326.01,326.26,326.54,326.85,327.23,327.83,328.51,331.28000000000003,31.060000000000002,30.93,30.82,30.67,30.52,30.37,30.23,30.1,29.84,N/A,N/A -2012,9,8,22,30,101200,100070,98970,72.62,0,8.51,9.47,9.69,9.81,9.89,9.93,9.950000000000001,9.96,9.92,351.63,352.3,352.55,352.78000000000003,352.97,353.15000000000003,353.32,353.48,353.76,30.48,30.29,30.16,29.98,29.810000000000002,29.64,29.46,29.29,28.94,N/A,N/A -2012,9,8,23,30,101230,100100,99000,71.16,0,8.2,9.06,9.26,9.370000000000001,9.44,9.48,9.49,9.5,9.49,357.81,358.08,358.23,358.37,358.49,358.6,358.7,358.8,358.99,30.330000000000002,30.13,29.990000000000002,29.810000000000002,29.64,29.46,29.28,29.1,28.73,N/A,N/A -2012,9,9,0,30,101280,100140,99040,70.10000000000001,0,8.49,9.34,9.540000000000001,9.66,9.74,9.790000000000001,9.83,9.86,9.89,3.62,3.74,3.77,3.8000000000000003,3.8200000000000003,3.83,3.85,3.86,3.88,29.93,29.68,29.53,29.34,29.16,28.97,28.78,28.6,28.22,N/A,N/A -2012,9,9,1,30,101350,100210,99100,73.2,0,10.61,11.65,11.88,12,12.08,12.13,12.15,12.17,12.17,11.85,12.22,12.42,12.61,12.77,12.93,13.08,13.22,13.49,28.62,28.26,28.080000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A -2012,9,9,2,30,101390,100240,99130,75.16,0,11.43,12.530000000000001,12.790000000000001,12.91,12.99,13.040000000000001,13.07,13.08,13.07,17.62,17.69,17.72,17.75,17.78,17.8,17.830000000000002,17.85,17.900000000000002,27.580000000000002,27.14,26.94,26.73,26.53,26.330000000000002,26.13,25.95,25.560000000000002,N/A,N/A -2012,9,9,3,30,101440,100290,99170,75.16,0,10.34,11.290000000000001,11.5,11.620000000000001,11.69,11.74,11.77,11.8,11.81,27.7,27.91,27.990000000000002,28.07,28.14,28.21,28.27,28.330000000000002,28.45,27.27,26.810000000000002,26.62,26.41,26.2,26.01,25.810000000000002,25.62,25.23,N/A,N/A -2012,9,9,4,30,101470,100310,99190,72.96000000000001,0,10.13,11.05,11.27,11.39,11.47,11.52,11.56,11.59,11.620000000000001,33.06,33.22,33.29,33.36,33.42,33.480000000000004,33.54,33.59,33.69,27.19,26.73,26.53,26.32,26.12,25.92,25.72,25.53,25.14,N/A,N/A -2012,9,9,5,30,101470,100310,99200,71.68,0,10.32,11.27,11.5,11.61,11.69,11.74,11.78,11.8,11.83,33.6,33.79,33.94,34.07,34.18,34.29,34.4,34.5,34.7,27.11,26.650000000000002,26.45,26.23,26.03,25.84,25.63,25.44,25.05,N/A,N/A -2012,9,9,6,30,101530,100370,99250,73.63,0,9.71,10.53,10.72,10.82,10.870000000000001,10.91,10.93,10.950000000000001,10.950000000000001,39.32,39.71,39.93,40.15,40.34,40.51,40.69,40.85,41.18,26.830000000000002,26.35,26.16,25.94,25.740000000000002,25.54,25.34,25.150000000000002,24.76,N/A,N/A -2012,9,9,7,30,101570,100410,99290,70.78,0,9.31,10.09,10.25,10.34,10.39,10.43,10.44,10.46,10.46,38.54,39,39.28,39.56,39.800000000000004,40.04,40.27,40.47,40.89,26.740000000000002,26.26,26.05,25.84,25.64,25.44,25.240000000000002,25.05,24.66,N/A,N/A -2012,9,9,8,30,101600,100440,99320,69.11,0,9.94,10.81,11,11.11,11.19,11.24,11.27,11.290000000000001,11.32,47.15,47.25,47.31,47.36,47.39,47.42,47.44,47.46,47.480000000000004,26.47,25.97,25.76,25.55,25.34,25.14,24.93,24.740000000000002,24.35,N/A,N/A -2012,9,9,9,30,101630,100470,99340,65.8,0,9.6,10.38,10.55,10.64,10.700000000000001,10.73,10.75,10.76,10.77,45.06,45.19,45.27,45.34,45.4,45.46,45.52,45.57,45.68,26.16,25.650000000000002,25.45,25.23,25.02,24.830000000000002,24.62,24.43,24.04,N/A,N/A -2012,9,9,10,30,101650,100490,99360,68.41,0,9.32,10.06,10.23,10.31,10.36,10.4,10.42,10.43,10.44,44.85,45.03,45.13,45.230000000000004,45.31,45.39,45.47,45.54,45.68,25.73,25.2,24.98,24.76,24.560000000000002,24.36,24.150000000000002,23.96,23.56,N/A,N/A -2012,9,9,11,30,101710,100540,99410,67.95,0,8.82,9.46,9.59,9.64,9.67,9.69,9.700000000000001,9.700000000000001,9.68,39.46,39.95,40.25,40.54,40.79,41.03,41.26,41.480000000000004,41.92,25.35,24.82,24.6,24.38,24.18,23.98,23.78,23.59,23.19,N/A,N/A -2012,9,9,12,30,101750,100580,99450,65.11,0,8.44,9.02,9.13,9.17,9.19,9.200000000000001,9.19,9.18,9.14,38.160000000000004,38.6,38.86,39.11,39.33,39.54,39.76,39.95,40.35,25.04,24.5,24.28,24.07,23.86,23.66,23.46,23.27,22.88,N/A,N/A -2012,9,9,13,30,101760,100590,99460,64.32000000000001,0,8.55,9.14,9.25,9.290000000000001,9.31,9.32,9.31,9.3,9.27,35.68,36.06,36.28,36.49,36.68,36.85,37.03,37.19,37.52,24.79,24.240000000000002,24.02,23.81,23.6,23.400000000000002,23.2,23.01,22.62,N/A,N/A -2012,9,9,14,30,101810,100640,99500,62.28,0,8.07,8.6,8.69,8.73,8.74,8.75,8.74,8.73,8.700000000000001,34.93,35.29,35.51,35.71,35.89,36.050000000000004,36.22,36.37,36.67,24.62,24.060000000000002,23.85,23.63,23.42,23.23,23.02,22.84,22.44,N/A,N/A -2012,9,9,15,30,101820,100650,99520,58.69,0,7.87,8.41,8.51,8.55,8.58,8.59,8.59,8.59,8.58,34.77,35.01,35.15,35.29,35.410000000000004,35.52,35.62,35.72,35.93,24.75,24.21,23.990000000000002,23.78,23.57,23.38,23.17,22.98,22.59,N/A,N/A -2012,9,9,16,30,101840,100670,99530,53.72,0,6.93,7.390000000000001,7.49,7.54,7.57,7.6000000000000005,7.61,7.62,7.640000000000001,35.11,35.21,35.28,35.33,35.37,35.4,35.43,35.46,35.51,25.060000000000002,24.55,24.34,24.13,23.92,23.73,23.53,23.34,22.94,N/A,N/A -2012,9,9,17,30,101810,100640,99500,50.15,0,5.03,5.36,5.44,5.49,5.53,5.57,5.6000000000000005,5.62,5.67,37.97,37.5,37.22,36.96,36.71,36.47,36.230000000000004,36.01,35.54,25.53,25.07,24.87,24.66,24.46,24.27,24.060000000000002,23.88,23.490000000000002,N/A,N/A -2012,9,9,18,30,101780,100620,99490,48.01,0,4.12,4.4,4.47,4.54,4.58,4.63,4.67,4.71,4.79,43.7,42.230000000000004,41.37,40.57,39.85,39.19,38.56,37.980000000000004,36.82,26.240000000000002,25.810000000000002,25.63,25.42,25.23,25.04,24.84,24.650000000000002,24.26,N/A,N/A -2012,9,9,19,30,101760,100600,99470,45.87,0,3.19,3.35,3.38,3.41,3.43,3.45,3.48,3.5,3.5500000000000003,63.76,60.5,58.53,56.74,55.13,53.65,52.230000000000004,50.93,48.42,26.93,26.55,26.37,26.17,25.98,25.8,25.6,25.42,25.03,N/A,N/A -2012,9,9,20,30,101710,100550,99420,49.910000000000004,0,3.29,3.42,3.42,3.41,3.39,3.38,3.36,3.35,3.31,82.82000000000001,81.82000000000001,81.13,80.43,79.75,79.09,78.36,77.69,76.09,26.79,26.400000000000002,26.22,26.02,25.830000000000002,25.64,25.44,25.26,24.88,N/A,N/A -2012,9,9,21,30,101680,100520,99390,49.46,0,2.75,2.86,2.87,2.87,2.86,2.85,2.85,2.84,2.82,83.19,82.17,81.58,80.96000000000001,80.37,79.82000000000001,79.21000000000001,78.64,77.35000000000001,27.04,26.66,26.48,26.28,26.09,25.900000000000002,25.7,25.52,25.13,N/A,N/A -2012,9,9,22,30,101650,100490,99360,48.39,0,2.05,2.16,2.18,2.2,2.22,2.23,2.24,2.2600000000000002,2.29,79.57000000000001,78.42,77.7,76.99,76.31,75.65,74.97,74.33,72.84,27.34,26.97,26.79,26.59,26.400000000000002,26.21,26.02,25.830000000000002,25.45,N/A,N/A -2012,9,9,23,30,101640,100480,99360,47.95,0,1.1500000000000001,1.21,1.24,1.25,1.28,1.29,1.31,1.33,1.3800000000000001,96.27,94.27,93.15,92.06,91.03,90.04,88.99,87.99,85.83,27.580000000000002,27.23,27.05,26.85,26.66,26.47,26.28,26.09,25.71,N/A,N/A -2012,9,10,0,30,101640,100480,99360,48.82,0,0.99,1.11,1.17,1.23,1.28,1.34,1.4000000000000001,1.45,1.57,350.34000000000003,352.13,353.2,354.13,354.94,355.65000000000003,356.32,356.93,358.08,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.34,25.95,N/A,N/A -2012,9,10,1,30,101640,100490,99370,47.54,0,6.8100000000000005,7.2,7.22,7.2,7.17,7.13,7.08,7.03,6.93,28.54,28.44,28.39,28.35,28.32,28.3,28.29,28.27,28.28,28.14,27.78,27.6,27.400000000000002,27.21,27.02,26.82,26.64,26.25,N/A,N/A -2012,9,10,2,30,101660,100510,99380,51.81,0,7.17,7.66,7.74,7.7700000000000005,7.78,7.78,7.7700000000000005,7.76,7.72,26.63,26.85,26.93,27.02,27.09,27.150000000000002,27.22,27.29,27.42,27.51,27.11,26.92,26.72,26.52,26.34,26.13,25.95,25.560000000000002,N/A,N/A -2012,9,10,3,30,101700,100540,99420,51.81,0,6.69,7.13,7.21,7.24,7.25,7.25,7.24,7.24,7.21,35.22,35.36,35.43,35.5,35.56,35.62,35.68,35.74,35.87,27.3,26.89,26.71,26.5,26.310000000000002,26.11,25.91,25.73,25.34,N/A,N/A -2012,9,10,4,30,101680,100520,99400,53.64,0,5.72,6.05,6.11,6.13,6.13,6.140000000000001,6.13,6.13,6.1000000000000005,40.38,40.67,40.85,41.01,41.17,41.300000000000004,41.45,41.57,41.84,27.14,26.740000000000002,26.55,26.34,26.150000000000002,25.96,25.76,25.57,25.18,N/A,N/A -2012,9,10,5,30,101690,100530,99410,54.730000000000004,0,5.36,5.68,5.73,5.76,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,48.89,49.17,49.32,49.47,49.59,49.71,49.83,49.94,50.15,27.14,26.73,26.54,26.34,26.14,25.95,25.75,25.560000000000002,25.17,N/A,N/A -2012,9,10,6,30,101700,100540,99420,54.65,0,5.2,5.5,5.55,5.5600000000000005,5.57,5.57,5.57,5.57,5.55,55.63,55.88,56.06,56.24,56.39,56.54,56.7,56.83,57.11,27.02,26.62,26.44,26.240000000000002,26.04,25.85,25.650000000000002,25.46,25.07,N/A,N/A -2012,9,10,7,30,101720,100560,99430,54.03,0,5.63,5.97,6.03,6.05,6.0600000000000005,6.0600000000000005,6.0600000000000005,6.0600000000000005,6.04,63.24,63.03,62.89,62.76,62.63,62.52,62.4,62.300000000000004,62.1,27.01,26.61,26.42,26.22,26.02,25.830000000000002,25.63,25.44,25.05,N/A,N/A -2012,9,10,8,30,101720,100560,99430,54.61,0,5.25,5.55,5.6000000000000005,5.62,5.62,5.62,5.61,5.61,5.59,49.6,50.09,50.43,50.76,51.06,51.34,51.620000000000005,51.88,52.4,26.88,26.48,26.29,26.09,25.89,25.7,25.5,25.310000000000002,24.92,N/A,N/A -2012,9,10,9,30,101730,100570,99440,54.27,0,4.89,5.15,5.19,5.21,5.22,5.22,5.22,5.22,5.21,72.93,72,71.41,70.84,70.31,69.82000000000001,69.33,68.88,67.96000000000001,26.76,26.35,26.16,25.96,25.76,25.57,25.37,25.18,24.78,N/A,N/A -2012,9,10,10,30,101740,100580,99450,56.980000000000004,0,5.83,6.16,6.21,6.23,6.23,6.23,6.22,6.2,6.17,49.67,49.92,50.08,50.22,50.35,50.47,50.59,50.7,50.92,26.61,26.19,26,25.79,25.59,25.400000000000002,25.2,25.01,24.61,N/A,N/A -2012,9,10,11,30,101750,100590,99460,56.88,0,5.3500000000000005,5.64,5.67,5.68,5.68,5.68,5.67,5.66,5.63,66.8,66.22,65.83,65.44,65.08,64.75,64.41,64.11,63.480000000000004,26.44,26.02,25.830000000000002,25.62,25.42,25.22,25.02,24.830000000000002,24.44,N/A,N/A -2012,9,10,12,30,101790,100620,99490,54.59,0,3.96,4.19,4.23,4.25,4.2700000000000005,4.28,4.29,4.29,4.3,46.01,46.92,47.52,48.09,48.620000000000005,49.120000000000005,49.61,50.07,51,26.26,25.85,25.66,25.45,25.26,25.060000000000002,24.86,24.67,24.28,N/A,N/A -2012,9,10,13,30,101800,100630,99500,57.1,0,4.94,5.08,5.04,4.98,4.92,4.86,4.8100000000000005,4.75,4.65,75.13,74.51,74.05,73.58,73.14,72.72,72.28,71.86,71.01,26.13,25.7,25.51,25.310000000000002,25.11,24.92,24.72,24.53,24.14,N/A,N/A -2012,9,10,14,30,101840,100670,99550,59.18,0,4.89,5.18,5.24,5.28,5.3,5.32,5.34,5.3500000000000005,5.37,65.02,65.33,65.31,65.25,65.17,65.08,64.98,64.88,64.65,26.080000000000002,25.650000000000002,25.46,25.25,25.05,24.85,24.650000000000002,24.46,24.07,N/A,N/A -2012,9,10,15,30,101850,100690,99560,60.160000000000004,0,4.96,5.24,5.29,5.32,5.34,5.36,5.37,5.38,5.4,74.96000000000001,73.77,73.10000000000001,72.48,71.94,71.45,70.97,70.55,69.71000000000001,26.05,25.61,25.42,25.21,25.01,24.82,24.61,24.43,24.03,N/A,N/A -2012,9,10,16,30,101870,100700,99570,60.85,0,5.6000000000000005,5.91,5.96,5.98,5.98,5.98,5.98,5.97,5.95,65.65,65.5,65.41,65.33,65.25,65.17,65.1,65.03,64.89,25.96,25.51,25.32,25.11,24.91,24.71,24.51,24.32,23.92,N/A,N/A -2012,9,10,17,30,101850,100690,99560,64.04,0,6.43,6.82,6.890000000000001,6.91,6.92,6.93,6.93,6.92,6.91,50.02,50.85,51.32,51.77,52.2,52.59,52.980000000000004,53.35,54.1,25.76,25.3,25.1,24.89,24.68,24.490000000000002,24.29,24.1,23.71,N/A,N/A -2012,9,10,18,30,101830,100670,99540,63.85,0,5.04,5.29,5.32,5.33,5.33,5.32,5.3,5.29,5.26,72.15,72.75,73.04,73.31,73.54,73.76,73.98,74.17,74.54,25.84,25.400000000000002,25.2,25,24.8,24.6,24.400000000000002,24.21,23.82,N/A,N/A -2012,9,10,19,30,101820,100660,99530,59.31,0,4.38,4.59,4.62,4.63,4.63,4.63,4.62,4.61,4.59,98.14,97.95,97.85000000000001,97.74000000000001,97.63,97.53,97.42,97.31,97.07000000000001,26.060000000000002,25.64,25.45,25.25,25.05,24.86,24.66,24.47,24.080000000000002,N/A,N/A -2012,9,10,20,30,101770,100600,99480,60,0,4.44,4.69,4.74,4.7700000000000005,4.79,4.8,4.8100000000000005,4.82,4.82,101.8,101.44,101.23,101.02,100.82000000000001,100.65,100.47,100.3,99.94,26.14,25.72,25.53,25.32,25.12,24.93,24.73,24.54,24.16,N/A,N/A -2012,9,10,21,30,101750,100580,99460,57.84,0,4.25,4.49,4.54,4.5600000000000005,4.57,4.59,4.6000000000000005,4.6000000000000005,4.61,104.92,104.63,104.46000000000001,104.3,104.15,103.99000000000001,103.84,103.69,103.38,26.36,25.95,25.76,25.560000000000002,25.36,25.17,24.97,24.78,24.39,N/A,N/A -2012,9,10,22,30,101720,100550,99430,55.82,0,4.73,5.0200000000000005,5.07,5.11,5.13,5.15,5.16,5.17,5.19,103.63,103.26,103.04,102.82000000000001,102.61,102.41,102.19,101.99000000000001,101.56,26.560000000000002,26.150000000000002,25.96,25.76,25.560000000000002,25.37,25.17,24.990000000000002,24.6,N/A,N/A -2012,9,10,23,30,101720,100560,99430,54.84,0,5.64,6.0200000000000005,6.1000000000000005,6.15,6.18,6.2,6.22,6.23,6.25,113.9,113.4,113.13,112.85000000000001,112.60000000000001,112.36,112.10000000000001,111.87,111.36,26.78,26.38,26.19,25.990000000000002,25.79,25.6,25.400000000000002,25.22,24.830000000000002,N/A,N/A -2012,9,11,0,30,101690,100530,99400,56.04,0,5.55,5.93,6.01,6.05,6.08,6.1000000000000005,6.12,6.13,6.16,112.23,111.77,111.49000000000001,111.22,110.97,110.73,110.48,110.26,109.76,26.87,26.46,26.28,26.080000000000002,25.88,25.69,25.490000000000002,25.310000000000002,24.92,N/A,N/A -2012,9,11,1,30,101680,100520,99400,54.19,0,6.140000000000001,6.59,6.69,6.74,6.78,6.8100000000000005,6.84,6.86,6.890000000000001,110.82000000000001,110.33,110.06,109.81,109.58,109.35000000000001,109.13,108.92,108.47,27.05,26.650000000000002,26.46,26.26,26.060000000000002,25.87,25.67,25.490000000000002,25.1,N/A,N/A -2012,9,11,2,30,101700,100540,99420,56.6,0,6.5200000000000005,7,7.1000000000000005,7.16,7.2,7.23,7.25,7.2700000000000005,7.29,108.75,108.4,108.2,108,107.82000000000001,107.64,107.46000000000001,107.3,106.95,27.080000000000002,26.68,26.490000000000002,26.29,26.09,25.900000000000002,25.7,25.52,25.13,N/A,N/A -2012,9,11,3,30,101690,100530,99410,58.46,0,6.15,6.58,6.67,6.72,6.76,6.79,6.8100000000000005,6.82,6.8500000000000005,105.26,105,104.82000000000001,104.65,104.48,104.32000000000001,104.16,104.01,103.69,27.01,26.6,26.42,26.21,26.02,25.82,25.62,25.44,25.04,N/A,N/A -2012,9,11,4,30,101700,100540,99420,62.02,0,6.2,6.65,6.74,6.8,6.84,6.87,6.890000000000001,6.91,6.93,105.98,106.06,106.02,105.95,105.88,105.81,105.72,105.65,105.48,26.900000000000002,26.490000000000002,26.3,26.09,25.89,25.69,25.490000000000002,25.3,24.91,N/A,N/A -2012,9,11,5,30,101700,100540,99420,61.04,0,6.390000000000001,6.8500000000000005,6.96,7.03,7.07,7.11,7.140000000000001,7.16,7.2,105.68,105.61,105.55,105.49000000000001,105.44,105.38,105.33,105.28,105.19,26.88,26.46,26.27,26.060000000000002,25.87,25.67,25.47,25.28,24.89,N/A,N/A -2012,9,11,6,30,101710,100550,99420,59.36,0,6.09,6.640000000000001,6.78,6.890000000000001,6.97,7.03,7.09,7.140000000000001,7.22,102.73,103.62,103.98,104.26,104.49000000000001,104.69,104.86,105.01,105.26,26.97,26.57,26.39,26.19,25.990000000000002,25.8,25.6,25.41,25.02,N/A,N/A -2012,9,11,7,30,101720,100560,99440,58.43,0,7.390000000000001,7.92,7.99,8.02,8.02,8.02,8,7.98,7.930000000000001,117.26,117.25,117.23,117.21000000000001,117.19,117.18,117.16,117.13,117.08,27.07,26.68,26.490000000000002,26.29,26.09,25.900000000000002,25.69,25.51,25.12,N/A,N/A -2012,9,11,8,30,101730,100570,99440,55.77,0,4.51,4.82,4.9,4.96,5.01,5.0600000000000005,5.1000000000000005,5.13,5.21,109.91,110.18,110.39,110.58,110.75,110.9,111.06,111.21000000000001,111.48,26.73,26.34,26.150000000000002,25.95,25.75,25.560000000000002,25.36,25.17,24.77,N/A,N/A -2012,9,11,9,30,101740,100580,99450,61.93,0,5.48,5.78,5.8100000000000005,5.8100000000000005,5.8,5.78,5.76,5.74,5.69,126.92,126.9,126.9,126.9,126.9,126.9,126.91,126.91,126.91,26.54,26.13,25.94,25.73,25.53,25.34,25.14,24.95,24.560000000000002,N/A,N/A -2012,9,11,10,30,101760,100600,99470,59.78,0,5.57,5.84,5.87,5.87,5.86,5.8500000000000005,5.83,5.8100000000000005,5.7700000000000005,125.37,124.75,124.43,124.13000000000001,123.85000000000001,123.61,123.36,123.14,122.7,26.59,26.18,26,25.79,25.59,25.400000000000002,25.2,25.01,24.62,N/A,N/A -2012,9,11,11,30,101770,100610,99480,58.160000000000004,0,3.99,4.26,4.34,4.4,4.45,4.5,4.54,4.58,4.65,125.81,125.27,125.01,124.78,124.57000000000001,124.4,124.23,124.07000000000001,123.78,26.77,26.38,26.2,26,25.8,25.61,25.41,25.22,24.830000000000002,N/A,N/A -2012,9,11,12,30,101790,100630,99510,62.15,0,4.69,4.96,5.01,5.03,5.05,5.0600000000000005,5.07,5.08,5.09,109.08,109.4,109.60000000000001,109.78,109.94,110.10000000000001,110.25,110.39,110.67,26.78,26.38,26.2,25.990000000000002,25.8,25.61,25.400000000000002,25.22,24.830000000000002,N/A,N/A -2012,9,11,13,30,101790,100630,99500,64.64,0,4.66,4.92,4.96,4.97,4.98,4.99,4.99,4.98,4.97,105.83,105.5,105.31,105.08,104.87,104.67,104.46000000000001,104.26,103.86,26.92,26.54,26.35,26.150000000000002,25.95,25.76,25.560000000000002,25.37,24.98,N/A,N/A -2012,9,11,14,30,101830,100670,99550,66.08,0,4.47,4.76,4.82,4.86,4.89,4.91,4.93,4.94,4.97,85.53,86.79,87.5,88.18,88.78,89.35000000000001,89.9,90.41,91.43,26.98,26.59,26.41,26.21,26.01,25.82,25.62,25.43,25.04,N/A,N/A -2012,9,11,15,30,101840,100680,99560,68.42,0,5.23,5.5200000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,100.73,100.60000000000001,100.65,100.74000000000001,100.84,100.95,101.07000000000001,101.19,101.45,27.080000000000002,26.69,26.51,26.3,26.11,25.91,25.72,25.53,25.14,N/A,N/A -2012,9,11,16,30,101810,100650,99530,71.47,0,5.25,5.6000000000000005,5.67,5.7,5.73,5.74,5.75,5.76,5.7700000000000005,82.46000000000001,82.84,83.11,83.37,83.61,83.84,84.09,84.32000000000001,84.8,27.12,26.740000000000002,26.55,26.35,26.16,25.96,25.76,25.580000000000002,25.19,N/A,N/A -2012,9,11,17,30,101790,100640,99520,72.27,0,5.94,6.38,6.48,6.53,6.57,6.6000000000000005,6.62,6.640000000000001,6.67,90.2,89.76,89.47,89.17,88.89,88.63,88.38,88.14,87.69,27.240000000000002,26.85,26.67,26.46,26.27,26.080000000000002,25.88,25.69,25.310000000000002,N/A,N/A -2012,9,11,18,30,101800,100650,99530,71.87,0,7.58,8.2,8.34,8.43,8.49,8.540000000000001,8.57,8.6,8.64,94.93,94.7,94.63,94.60000000000001,94.60000000000001,94.62,94.66,94.7,94.83,27.38,26.98,26.8,26.59,26.400000000000002,26.2,26,25.810000000000002,25.42,N/A,N/A -2012,9,11,19,30,101770,100620,99500,73.10000000000001,0,8.19,8.870000000000001,9.02,9.08,9.120000000000001,9.14,9.16,9.16,9.16,92.56,93.14,93.46000000000001,93.78,94.07000000000001,94.33,94.60000000000001,94.84,95.31,27.39,26.990000000000002,26.810000000000002,26.6,26.400000000000002,26.21,26.01,25.82,25.43,N/A,N/A -2012,9,11,20,30,101760,100610,99490,75.28,0,7.68,8.32,8.46,8.55,8.61,8.66,8.69,8.71,8.74,100.75,101.17,101.37,101.55,101.71000000000001,101.86,101.99000000000001,102.13,102.36,27.38,26.990000000000002,26.810000000000002,26.6,26.400000000000002,26.2,26.01,25.82,25.43,N/A,N/A -2012,9,11,21,30,101730,100580,99460,76.26,0,8.44,9.200000000000001,9.370000000000001,9.48,9.55,9.6,9.64,9.67,9.71,100.79,101.12,101.32000000000001,101.53,101.71000000000001,101.89,102.07000000000001,102.24000000000001,102.57000000000001,27.46,27.060000000000002,26.88,26.67,26.47,26.28,26.080000000000002,25.89,25.51,N/A,N/A -2012,9,11,22,30,101690,100540,99420,76.08,0,7.47,8.09,8.23,8.31,8.370000000000001,8.41,8.44,8.45,8.48,102.14,102.38,102.51,102.62,102.72,102.81,102.9,102.98,103.13,27.5,27.12,26.93,26.73,26.53,26.34,26.14,25.95,25.57,N/A,N/A -2012,9,11,23,30,101720,100560,99450,75.7,0,8.56,9.32,9.5,9.6,9.67,9.71,9.74,9.77,9.790000000000001,110.28,110.26,110.23,110.19,110.15,110.11,110.07000000000001,110.03,109.94,27.67,27.29,27.11,26.900000000000002,26.71,26.51,26.32,26.13,25.740000000000002,N/A,N/A -2012,9,12,0,30,101670,100510,99400,77.62,0,8.05,8.76,8.91,9.01,9.06,9.11,9.14,9.16,9.19,107.41,107.77,107.97,108.15,108.31,108.45,108.60000000000001,108.74000000000001,109,27.62,27.23,27.05,26.85,26.650000000000002,26.46,26.26,26.07,25.69,N/A,N/A -2012,9,12,1,30,101640,100490,99370,79.37,0,7.7700000000000005,8.45,8.620000000000001,8.71,8.77,8.81,8.84,8.870000000000001,8.9,109.49000000000001,109.43,109.35000000000001,109.26,109.18,109.09,109.01,108.92,108.75,27.73,27.35,27.17,26.96,26.77,26.580000000000002,26.38,26.19,25.8,N/A,N/A -2012,9,12,2,30,101650,100500,99390,80.28,0,8.25,8.96,9.13,9.21,9.26,9.290000000000001,9.31,9.32,9.32,106.99000000000001,107.44,107.73,107.99000000000001,108.22,108.45,108.67,108.88,109.29,27.78,27.400000000000002,27.22,27.02,26.82,26.63,26.44,26.25,25.87,N/A,N/A -2012,9,12,3,30,101660,100510,99400,78.19,0,8.370000000000001,9.13,9.31,9.41,9.47,9.52,9.56,9.58,9.61,112.53,112.49000000000001,112.49000000000001,112.5,112.53,112.54,112.56,112.59,112.65,27.89,27.52,27.34,27.14,26.94,26.75,26.560000000000002,26.37,25.98,N/A,N/A -2012,9,12,4,30,101610,100460,99350,79.88,0,8.040000000000001,8.8,8.98,9.09,9.16,9.22,9.26,9.290000000000001,9.34,117.13,117.31,117.36,117.4,117.42,117.44,117.45,117.46000000000001,117.47,27.98,27.61,27.43,27.23,27.04,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,9,12,5,30,101620,100470,99350,82.60000000000001,0,6.99,7.58,7.72,7.79,7.84,7.87,7.9,7.91,7.930000000000001,132.26,132.4,132.46,132.51,132.57,132.63,132.69,132.75,132.88,27.900000000000002,27.53,27.36,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A -2012,9,12,6,30,101610,100460,99350,84.77,0,6.3500000000000005,6.82,6.91,6.96,6.98,6.99,6.99,6.99,6.99,136.21,136.70000000000002,136.97,137.23,137.48,137.72,137.97,138.20000000000002,138.67000000000002,27.89,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.03,N/A,N/A -2012,9,12,7,30,101650,100500,99380,85.2,0,4.39,4.7,4.79,4.86,4.91,4.97,5.0200000000000005,5.07,5.18,159.37,161.34,162.15,162.86,163.49,164.07,164.62,165.13,166.12,27.6,27.26,27.09,26.900000000000002,26.72,26.54,26.35,26.18,25.82,N/A,N/A -2012,9,12,8,30,101640,100490,99380,81.93,0,6.23,6.7700000000000005,6.9,6.98,7.03,7.07,7.09,7.11,7.15,180.54,180.97,181.22,181.47,181.69,181.9,182.1,182.29,182.67000000000002,28.11,27.77,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.64,26.26,N/A,N/A -2012,9,12,9,30,101610,100470,99350,82.13,0,5.37,5.83,5.93,6,6.0600000000000005,6.11,6.15,6.2,6.28,188.61,189.21,189.4,189.53,189.63,189.71,189.79,189.86,190,28.17,27.85,27.69,27.5,27.32,27.14,26.96,26.78,26.42,N/A,N/A -2012,9,12,10,30,101660,100510,99400,81.9,0,6.2,6.78,6.93,7.01,7.07,7.12,7.15,7.18,7.21,184.87,184.89000000000001,184.93,184.97,184.99,185.02,185.04,185.05,185.09,28.27,27.95,27.79,27.580000000000002,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A -2012,9,12,11,30,101650,100510,99390,79.91,0,6.86,7.5,7.65,7.73,7.79,7.83,7.86,7.88,7.9,190.46,190.78,190.88,190.92000000000002,190.94,190.93,190.9,190.87,190.78,28.26,27.94,27.77,27.57,27.38,27.19,27,26.810000000000002,26.43,N/A,N/A -2012,9,12,12,30,101680,100530,99420,83.73,0,6.08,6.59,6.7,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.87,6.88,6.91,194.63,194.6,194.66,194.70000000000002,194.74,194.78,194.81,194.84,194.91,28.150000000000002,27.82,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,9,12,13,30,101640,100480,99370,86.27,0,9.61,10.39,10.43,10.38,10.290000000000001,10.18,10.040000000000001,9.91,9.61,244.51,244.06,243.31,242.43,241.47,240.53,239.44,238.43,236.17000000000002,27.16,26.79,26.64,26.490000000000002,26.34,26.2,26.05,25.91,25.6,N/A,N/A -2012,9,12,14,30,101730,100580,99460,81.72,8.8,4.66,5.19,5.4,5.58,5.72,5.8500000000000005,5.97,6.08,6.3,214.29,214.57,214.86,215.25,215.61,216.01,216.44,216.86,217.77,27.85,27.53,27.37,27.18,27,26.82,26.64,26.47,26.11,N/A,N/A -2012,9,12,15,30,101800,100650,99540,79.44,0,6.16,6.71,6.83,6.9,6.94,6.97,6.99,7,7,216.9,216.79,216.69,216.6,216.53,216.46,216.4,216.34,216.23000000000002,28.44,28.13,27.96,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,9,12,16,30,101790,100620,99490,91.81,0.4,11.08,12.030000000000001,12.17,12.23,12.25,12.25,12.23,12.200000000000001,12.040000000000001,98.11,98.56,98.84,99.10000000000001,99.37,99.63,99.94,100.23,101.09,24.900000000000002,24.34,24.12,23.92,23.72,23.54,23.36,23.19,22.87,N/A,N/A -2012,9,12,17,30,101860,100690,99560,93.15,47.6,12.99,14.22,14.46,14.58,14.65,14.69,14.71,14.72,14.71,85.97,86.09,86.23,86.36,86.46000000000001,86.55,86.64,86.71000000000001,86.85000000000001,24.38,23.77,23.54,23.34,23.14,22.96,22.78,22.61,22.28,N/A,N/A -2012,9,12,18,30,101860,100700,99580,81.32000000000001,0,10.19,10.86,10.93,10.88,10.81,10.72,10.63,10.55,10.540000000000001,81.47,81.86,82.15,82.58,83.18,83.96000000000001,85.84,88.06,97.35000000000001,26.28,25.86,25.7,25.55,25.42,25.32,25.34,25.400000000000002,26.01,N/A,N/A -2012,9,12,19,30,101810,100650,99530,73.88,0,4.65,4.93,4.99,5.0200000000000005,5.04,5.0600000000000005,5.15,5.26,6.19,121.79,122.4,122.63,122.91,123.11,123.25,123.83,124.58,129.27,27.23,26.87,26.71,26.52,26.34,26.16,26.03,25.91,26.34,N/A,N/A -2012,9,12,20,30,101730,100570,99460,77.9,0.7000000000000001,4.14,4.4,4.49,4.64,4.93,5.34,5.59,5.76,5.5600000000000005,197.1,196.3,195.55,194.49,193.4,192.22,192.77,193.87,198.4,26.91,26.59,26.47,26.37,26.41,26.53,26.62,26.69,26.34,N/A,N/A -2012,9,12,21,30,101770,100620,99510,79.8,0,4.79,5.03,5.03,5.01,4.98,4.94,4.9,4.86,4.7700000000000005,275.84000000000003,274.27,273.14,271.94,270.83,269.73,268.62,267.57,265.35,27.62,27.28,27.11,26.92,26.740000000000002,26.560000000000002,26.37,26.19,25.830000000000002,N/A,N/A -2012,9,12,22,30,101660,100500,99380,79.69,0,1.6400000000000001,1.83,1.8800000000000001,1.94,1.99,2.04,2.09,2.14,2.24,93.82000000000001,94.69,95.3,95.9,96.46000000000001,97.01,97.62,98.22,99.58,26.82,26.46,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A -2012,9,12,23,30,101640,100490,99380,75.34,0,6.43,6.97,7.09,7.16,7.2,7.23,7.25,7.26,7.28,110.82000000000001,110.87,110.88,110.9,110.92,110.94,110.96000000000001,110.97,111,28.26,27.93,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A -2012,9,13,0,30,101640,100490,99370,88.04,0,7.6000000000000005,8.17,8.27,8.31,8.32,8.32,8.31,8.290000000000001,8.24,127.52,127.79,127.93,128.11,128.28,128.46,128.65,128.84,129.26,27.240000000000002,26.84,26.66,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A -2012,9,13,1,30,101620,100470,99350,83.95,0,7.04,7.61,7.73,7.79,7.83,7.8500000000000005,7.86,7.87,7.87,133.02,133.28,133.42000000000002,133.55,133.69,133.81,133.95,134.09,134.38,27.580000000000002,27.21,27.03,26.830000000000002,26.63,26.45,26.25,26.060000000000002,25.69,N/A,N/A -2012,9,13,2,30,101660,100510,99400,83.57000000000001,0,7.94,8.66,8.83,8.92,8.98,9.02,9.05,9.07,9.09,137.1,137.18,137.23,137.29,137.35,137.4,137.47,137.53,137.67000000000002,27.89,27.54,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A -2012,9,13,3,30,101710,100560,99440,84.99,0,8.26,8.98,9.15,9.22,9.27,9.290000000000001,9.3,9.3,9.290000000000001,138.98,139.13,139.22,139.31,139.39000000000001,139.48,139.56,139.65,139.82,27.78,27.41,27.240000000000002,27.03,26.84,26.650000000000002,26.46,26.27,25.89,N/A,N/A -2012,9,13,4,30,101710,100560,99440,86.02,0,9.67,10.6,10.8,10.9,10.97,11,11.01,11.02,10.99,142.69,142.72,142.78,142.87,142.96,143.07,143.18,143.29,143.51,27.740000000000002,27.36,27.18,26.97,26.78,26.580000000000002,26.38,26.19,25.8,N/A,N/A -2012,9,13,5,30,101710,100550,99440,84.55,0,8.59,9.36,9.53,9.620000000000001,9.67,9.71,9.73,9.74,9.75,141.94,141.91,141.92000000000002,141.93,141.94,141.95000000000002,141.96,141.98,142.02,27.63,27.25,27.07,26.87,26.68,26.490000000000002,26.29,26.1,25.72,N/A,N/A -2012,9,13,6,30,101740,100590,99470,84.69,0,7.640000000000001,8.32,8.47,8.55,8.61,8.65,8.67,8.69,8.700000000000001,138.54,138.68,138.76,138.84,138.92000000000002,138.99,139.07,139.14000000000001,139.28,27.68,27.310000000000002,27.13,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A -2012,9,13,7,30,101760,100610,99490,83.52,0,7.37,7.98,8.120000000000001,8.19,8.23,8.26,8.28,8.290000000000001,8.3,141.05,141.48,141.72,141.96,142.19,142.43,142.67000000000002,142.9,143.39000000000001,27.68,27.32,27.14,26.94,26.740000000000002,26.560000000000002,26.36,26.17,25.8,N/A,N/A -2012,9,13,8,30,101760,100610,99500,84.68,0,6.49,7,7.11,7.17,7.2,7.22,7.24,7.25,7.25,135.22,135.42000000000002,135.55,135.68,135.8,135.91,136.03,136.15,136.39000000000001,27.6,27.240000000000002,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A -2012,9,13,9,30,101780,100630,99520,84.34,0,6.88,7.43,7.5600000000000005,7.62,7.66,7.68,7.7,7.71,7.71,135.13,135.27,135.36,135.44,135.52,135.6,135.67000000000002,135.74,135.89000000000001,27.650000000000002,27.28,27.11,26.900000000000002,26.71,26.52,26.32,26.14,25.75,N/A,N/A -2012,9,13,10,30,101800,100650,99530,85.25,0,6.67,7.25,7.4,7.5,7.57,7.63,7.68,7.72,7.8,136.1,136.31,136.45,136.6,136.73,136.86,136.99,137.12,137.36,27.650000000000002,27.29,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.77,N/A,N/A -2012,9,13,11,30,101820,100670,99550,81.88,0,7.04,7.61,7.73,7.7700000000000005,7.8,7.8100000000000005,7.8100000000000005,7.8,7.7700000000000005,136.54,136.85,137.01,137.17000000000002,137.31,137.44,137.58,137.70000000000002,137.97,27.810000000000002,27.46,27.28,27.080000000000002,26.89,26.7,26.5,26.32,25.94,N/A,N/A -2012,9,13,12,30,101820,100670,99550,82.63,0,6.28,6.7700000000000005,6.88,6.94,6.98,7,7.03,7.04,7.07,127.07000000000001,127.23,127.3,127.39,127.48,127.57000000000001,127.66,127.75,127.95,27.73,27.38,27.2,27,26.810000000000002,26.62,26.43,26.240000000000002,25.86,N/A,N/A -2012,9,13,13,30,101860,100710,99590,80.5,0,6.49,7.0200000000000005,7.13,7.19,7.23,7.25,7.2700000000000005,7.2700000000000005,7.28,124,124.17,124.26,124.35000000000001,124.43,124.5,124.57000000000001,124.64,124.78,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A -2012,9,13,14,30,101880,100720,99610,81.5,0,5.96,6.43,6.5200000000000005,6.58,6.61,6.640000000000001,6.66,6.67,6.69,122.9,123.19,123.29,123.39,123.48,123.56,123.64,123.72,123.88000000000001,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,9,13,15,30,101870,100720,99610,80.72,0,5.88,6.34,6.44,6.49,6.53,6.55,6.5600000000000005,6.58,6.58,119.71000000000001,119.94,120.06,120.18,120.29,120.39,120.49000000000001,120.58,120.77,27.91,27.57,27.39,27.19,27,26.810000000000002,26.62,26.43,26.05,N/A,N/A -2012,9,13,16,30,101900,100740,99630,81.04,0,4.63,4.95,5.0200000000000005,5.05,5.08,5.09,5.1000000000000005,5.1000000000000005,5.1000000000000005,129.32,129.26,129.26,129.25,129.23,129.2,129.16,129.13,129.05,27.96,27.62,27.45,27.25,27.060000000000002,26.87,26.67,26.490000000000002,26.11,N/A,N/A -2012,9,13,17,30,101910,100760,99650,79.38,0,3.68,3.92,3.97,3.99,4.01,4.03,4.03,4.04,4.04,167.83,167.26,167.01,166.85,166.73,166.63,166.57,166.52,166.45000000000002,28.080000000000002,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A -2012,9,13,18,30,101930,100760,99630,91.65,123.4,9.3,9.94,10.02,9.97,9.88,9.75,9.540000000000001,9.34,8.61,270.88,271.02,271.04,271.1,271.21,271.34000000000003,271.57,271.8,272.69,24.95,24.43,24.240000000000002,24.05,23.87,23.71,23.55,23.400000000000002,23.16,N/A,N/A -2012,9,13,19,30,101910,100740,99600,88.74,79.80000000000001,3.12,3.15,3.13,3.11,2.98,2.81,2.49,2.2,2.45,243.42000000000002,241.86,240.9,239.95000000000002,237.13,233.70000000000002,221.49,209.98000000000002,166.39000000000001,24.34,23.91,23.72,23.54,23.36,23.2,23.080000000000002,22.98,23.18,N/A,N/A -2012,9,13,20,30,101870,100710,99580,79.53,0,1.17,1.25,1.28,1.33,1.43,1.56,1.85,2.24,2.8000000000000003,188.94,189.27,189.17000000000002,188.88,187.93,186.36,184.09,181.35,180.46,25.76,25.400000000000002,25.240000000000002,25.080000000000002,24.96,24.87,24.91,24.98,25.09,N/A,N/A -2012,9,13,21,30,101870,100710,99590,79.84,0,3.7600000000000002,3.89,3.89,3.88,3.86,3.85,3.85,3.86,4.09,178.19,178.59,178.76,178.99,179.3,179.66,180.32,181.06,183.89000000000001,26.48,26.1,25.94,25.75,25.580000000000002,25.41,25.27,25.14,25.09,N/A,N/A -2012,9,13,22,30,101830,100670,99550,79.86,0,1.61,1.6500000000000001,1.6600000000000001,1.6500000000000001,1.6500000000000001,1.6500000000000001,1.6600000000000001,1.67,1.77,160.59,160.91,161.14000000000001,161.44,161.82,162.26,163.01,163.81,165.93,26.53,26.17,25.990000000000002,25.8,25.62,25.44,25.27,25.12,24.95,N/A,N/A -2012,9,13,23,30,101840,100690,99570,78.37,0,0.9500000000000001,0.9400000000000001,0.92,0.91,0.89,0.88,0.86,0.85,0.8300000000000001,153.41,151.43,150.08,148.47,146.84,145.14000000000001,143,140.88,134.91,26.8,26.45,26.27,26.07,25.88,25.7,25.51,25.32,24.95,N/A,N/A -2012,9,14,0,30,101830,100670,99550,76.65,0,1.83,1.96,1.99,2.0300000000000002,2.05,2.08,2.11,2.14,2.2,48.03,48.96,49.36,49.76,50.14,50.52,50.910000000000004,51.300000000000004,52.160000000000004,27.07,26.72,26.55,26.35,26.16,25.97,25.78,25.6,25.22,N/A,N/A -2012,9,14,1,30,101830,100680,99560,74.17,0,3.46,3.66,3.69,3.71,3.73,3.74,3.75,3.77,3.8200000000000003,65.12,64.9,64.76,64.62,64.51,64.41,64.33,64.25,64.2,27.37,27.02,26.84,26.64,26.45,26.26,26.07,25.88,25.5,N/A,N/A -2012,9,14,2,30,101850,100690,99580,83.23,0,4.66,4.95,5.01,5.03,5.05,5.0600000000000005,5.07,5.07,5.08,63.68,63.95,64.11,64.3,64.49,64.69,64.91,65.12,65.66,27.29,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,14,3,30,101860,100710,99590,80.67,0,3.84,4.14,4.23,4.29,4.34,4.39,4.43,4.48,4.57,92.16,91.96000000000001,91.8,91.58,91.37,91.12,90.86,90.60000000000001,89.97,27.69,27.36,27.19,26.990000000000002,26.810000000000002,26.63,26.44,26.26,25.89,N/A,N/A -2012,9,14,4,30,101860,100710,99590,79.93,0,6.34,6.82,6.92,6.96,6.99,7,7.01,7.01,7.01,99.9,100.25,100.39,100.52,100.63,100.74000000000001,100.84,100.93,101.10000000000001,27.900000000000002,27.55,27.38,27.18,26.990000000000002,26.8,26.61,26.42,26.04,N/A,N/A -2012,9,14,5,30,101850,100690,99580,81.56,0,5.59,6,6.08,6.12,6.13,6.15,6.15,6.15,6.140000000000001,109.08,109.22,109.33,109.46000000000001,109.58,109.7,109.83,109.95,110.2,27.830000000000002,27.48,27.310000000000002,27.11,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A -2012,9,14,6,30,101900,100750,99630,84.49,71,6.32,6.78,6.92,7,7.07,7.12,7.18,7.24,7.36,121.08,119.74000000000001,119.03,118.34,117.73,117.13,116.52,115.94,114.76,27.16,26.810000000000002,26.650000000000002,26.46,26.3,26.13,25.97,25.810000000000002,25.5,N/A,N/A -2012,9,14,7,30,101870,100710,99600,78.68,1.1,7.04,7.61,7.72,7.76,7.8,7.82,7.83,7.83,7.84,107.28,107.43,107.47,107.53,107.58,107.64,107.7,107.76,107.89,27.900000000000002,27.54,27.37,27.17,26.98,26.79,26.6,26.41,26.03,N/A,N/A -2012,9,14,8,30,101930,100780,99660,75.69,0,5.4,5.8,5.89,5.94,5.97,5.99,6,6.01,6.0200000000000005,95,95.18,95.19,95.19,95.19,95.18,95.16,95.14,95.09,27.97,27.63,27.45,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.11,N/A,N/A -2012,9,14,9,30,101940,100790,99670,73.11,0,2.82,2.98,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.0700000000000003,3.08,3.09,97.98,98.06,98.11,98.15,98.2,98.26,98.31,98.36,98.46000000000001,27.91,27.580000000000002,27.400000000000002,27.21,27.02,26.82,26.63,26.44,26.060000000000002,N/A,N/A -2012,9,14,10,30,101910,100760,99640,75.84,0,3.21,3.4,3.43,3.45,3.45,3.45,3.45,3.45,3.44,104.38,104.69,104.83,104.96000000000001,105.08,105.2,105.31,105.43,105.64,27.76,27.42,27.25,27.05,26.85,26.67,26.47,26.28,25.89,N/A,N/A -2012,9,14,11,30,101880,100720,99610,75.34,0,3.48,3.67,3.7,3.71,3.72,3.72,3.72,3.71,3.71,91.71000000000001,91.79,91.95,92.08,92.21000000000001,92.32000000000001,92.44,92.55,92.75,27.72,27.38,27.21,27,26.810000000000002,26.62,26.43,26.240000000000002,25.86,N/A,N/A -2012,9,14,12,30,101900,100740,99620,83.27,0,8.57,9.120000000000001,9.13,9.06,8.97,8.85,8.700000000000001,8.56,8.19,85.97,85.99,86.08,86.2,86.33,86.49,86.7,86.9,87.5,26.330000000000002,25.88,25.7,25.51,25.32,25.150000000000002,24.97,24.8,24.47,N/A,N/A -2012,9,14,13,30,101920,100760,99630,77.10000000000001,0,5.4,5.65,5.67,5.65,5.62,5.57,5.51,5.45,5.37,46.83,47.42,47.75,48.120000000000005,48.57,49.07,50.04,51.04,58.95,25.75,25.330000000000002,25.16,24.98,24.82,24.67,24.54,24.43,24.490000000000002,N/A,N/A -2012,9,14,14,30,101980,100820,99690,74.01,0,3.29,3.47,3.5100000000000002,3.5300000000000002,3.54,3.5500000000000003,3.56,3.5700000000000003,3.61,73.65,74.5,74.94,75.48,76.08,76.72,77.63,78.58,81.99,26.89,26.51,26.34,26.13,25.94,25.75,25.560000000000002,25.37,24.990000000000002,N/A,N/A -2012,9,14,15,30,101990,100830,99710,79.83,5.5,7.12,7.54,7.54,7.48,7.390000000000001,7.3,7.18,7.07,6.8100000000000005,105.58,105.2,105.04,104.82000000000001,104.59,104.33,104,103.68,102.81,26.36,25.94,25.77,25.57,25.39,25.21,25.03,24.86,24.52,N/A,N/A -2012,9,14,16,30,102020,100850,99720,79.43,8.8,4.28,4.4,4.38,4.32,4.25,4.18,4.07,3.96,3.63,109.15,108.46000000000001,108.27,108.02,107.69,107.32000000000001,106.79,106.28,105.5,24.8,24.37,24.2,24.03,23.86,23.71,23.57,23.45,23.330000000000002,N/A,N/A -2012,9,14,17,30,102020,100850,99720,84.04,0,6.48,6.8,6.82,6.8,6.76,6.71,6.65,6.59,6.46,92.13,92.3,92.46000000000001,92.64,92.84,93.03,93.29,93.54,94.24,24.69,24.21,24.02,23.82,23.64,23.47,23.29,23.13,22.82,N/A,N/A -2012,9,14,18,30,101980,100810,99680,77.09,0,6.0200000000000005,6.38,6.44,6.46,6.48,6.49,6.49,6.49,6.22,93.55,93.62,93.72,93.87,94.12,94.42,95.10000000000001,95.82000000000001,99.7,25.64,25.240000000000002,25.09,24.93,24.810000000000002,24.7,24.64,24.59,24.69,N/A,N/A -2012,9,14,19,30,101960,100800,99680,61.17,0,4.22,4.5200000000000005,4.59,4.66,4.76,4.87,5.0600000000000005,5.2700000000000005,5.5200000000000005,104.88,104.52,104.31,104.05,103.69,103.27,102.57000000000001,101.81,100.35000000000001,27.63,27.32,27.18,27.02,26.88,26.76,26.7,26.650000000000002,26.46,N/A,N/A -2012,9,14,20,30,101890,100730,99610,79.14,0,4.97,5.25,5.3,5.3100000000000005,5.32,5.32,5.33,5.33,5.36,80.02,80.16,80.22,80.29,80.36,80.44,80.55,80.66,80.99,27.19,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.88,25.7,25.34,N/A,N/A -2012,9,14,21,30,101890,100740,99620,83.49,0,3.99,4.22,4.26,4.28,4.3,4.32,4.33,4.34,4.37,61.9,62.32,62.550000000000004,62.78,63.01,63.24,63.5,63.74,64.38,27.080000000000002,26.7,26.52,26.32,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A -2012,9,14,22,30,101880,100720,99610,84.8,0,4.19,4.5,4.59,4.66,4.72,4.76,4.8100000000000005,4.8500000000000005,4.93,70.59,71.73,72.38,73.02,73.59,74.14,74.69,75.2,76.26,27.22,26.85,26.68,26.48,26.29,26.1,25.91,25.73,25.35,N/A,N/A -2012,9,14,23,30,101880,100720,99610,80.09,0,4.15,4.39,4.43,4.45,4.46,4.46,4.46,4.46,4.45,88.52,88.77,88.88,88.98,89.07000000000001,89.16,89.24,89.32000000000001,89.49,27.5,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A -2012,9,15,0,30,101870,100710,99590,79.92,0,4.3,4.53,4.5600000000000005,4.57,4.5600000000000005,4.5600000000000005,4.54,4.54,4.51,88.65,88.59,88.51,88.44,88.36,88.28,88.18,88.09,87.88,27.47,27.11,26.93,26.740000000000002,26.54,26.35,26.16,25.97,25.59,N/A,N/A -2012,9,15,1,30,101880,100720,99600,77.5,0,3.5700000000000003,3.7800000000000002,3.81,3.83,3.85,3.85,3.86,3.86,3.87,99.45,99.02,98.76,98.5,98.25,98.01,97.76,97.53,97.06,27.54,27.19,27.01,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.67,N/A,N/A -2012,9,15,2,30,101920,100760,99640,72.53,0,2.73,2.91,2.95,2.98,3,3.02,3.04,3.06,3.09,110.4,110.42,110.44,110.43,110.43,110.43,110.43,110.42,110.4,27.75,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.900000000000002,N/A,N/A -2012,9,15,3,30,101920,100770,99650,66.95,0,1.87,1.99,2.02,2.05,2.07,2.09,2.11,2.14,2.18,64.76,66.47,67.55,68.63,69.60000000000001,70.51,71.44,72.32000000000001,74.04,27.97,27.650000000000002,27.490000000000002,27.3,27.11,26.92,26.740000000000002,26.55,26.18,N/A,N/A -2012,9,15,4,30,101940,100780,99660,69.58,0,3.0300000000000002,3.1,3.06,3.02,2.97,2.93,2.88,2.84,2.77,28.29,30.080000000000002,31.35,32.69,33.93,35.13,36.35,37.5,39.84,27.79,27.47,27.310000000000002,27.12,26.94,26.76,26.57,26.39,26.02,N/A,N/A -2012,9,15,5,30,101940,100780,99660,85.04,0,5.61,5.88,5.9,5.87,5.83,5.79,5.73,5.66,5.51,21.400000000000002,21.88,22.13,22.41,22.71,23.01,23.37,23.73,24.68,26.52,26.11,25.92,25.73,25.53,25.35,25.16,24.98,24.61,N/A,N/A -2012,9,15,6,30,101950,100790,99660,85.32000000000001,0,6.23,6.57,6.61,6.59,6.5600000000000005,6.5200000000000005,6.47,6.42,6.29,21.13,21.41,21.580000000000002,21.77,21.95,22.13,22.34,22.55,23.07,26.28,25.86,25.67,25.47,25.27,25.09,24.900000000000002,24.71,24.34,N/A,N/A -2012,9,15,7,30,101960,100800,99680,80.54,0,6.19,6.55,6.6000000000000005,6.6000000000000005,6.59,6.57,6.53,6.5,6.41,25.92,26.19,26.37,26.57,26.76,26.96,27.18,27.400000000000002,27.94,26.27,25.84,25.650000000000002,25.45,25.26,25.07,24.87,24.69,24.32,N/A,N/A -2012,9,15,8,30,101940,100780,99650,78.39,0,6.18,6.53,6.57,6.57,6.55,6.5200000000000005,6.48,6.44,6.33,21.64,21.84,21.98,22.14,22.29,22.45,22.62,22.79,23.23,26.32,25.91,25.72,25.51,25.330000000000002,25.14,24.94,24.76,24.39,N/A,N/A -2012,9,15,9,30,101950,100780,99660,82.37,0,6.51,6.87,6.91,6.9,6.88,6.84,6.79,6.75,6.63,25.66,25.98,26.17,26.38,26.59,26.810000000000002,27.080000000000002,27.34,28.080000000000002,26.04,25.61,25.42,25.23,25.04,24.86,24.68,24.5,24.16,N/A,N/A -2012,9,15,10,30,101980,100810,99690,80.56,0,4.45,4.68,4.74,4.7700000000000005,4.79,4.8100000000000005,4.83,4.8500000000000005,4.89,71.75,70.58,69.97,69.39,68.92,68.53,68.27,68.07000000000001,68.06,26.03,25.62,25.44,25.240000000000002,25.05,24.87,24.68,24.5,24.14,N/A,N/A -2012,9,15,11,30,101950,100790,99660,75.32000000000001,0,2.47,2.5,2.48,2.45,2.43,2.41,2.4,2.38,2.35,34.03,32.660000000000004,31.92,31.09,30.28,29.48,28.61,27.8,26.03,26.19,25.810000000000002,25.63,25.44,25.25,25.07,24.88,24.7,24.330000000000002,N/A,N/A -2012,9,15,12,30,101950,100790,99660,86.72,0,5.23,5.42,5.4,5.36,5.3100000000000005,5.25,5.19,5.14,5.01,19.36,20.580000000000002,21.34,22.12,22.85,23.57,24.330000000000002,25.04,26.6,25.86,25.44,25.25,25.04,24.85,24.66,24.47,24.29,23.91,N/A,N/A -2012,9,15,13,30,101970,100810,99680,88.08,0,4.6000000000000005,4.76,4.75,4.71,4.66,4.61,4.54,4.48,4.32,17.59,18.07,18.330000000000002,18.61,18.89,19.19,19.53,19.86,20.79,25.400000000000002,24.97,24.78,24.57,24.38,24.2,24,23.82,23.45,N/A,N/A -2012,9,15,14,30,101970,100810,99680,87.18,0,4.78,4.98,4.98,4.96,4.93,4.9,4.8500000000000005,4.8,4.68,13.32,13.51,13.63,13.77,13.89,14.02,14.17,14.31,14.68,25.37,24.93,24.740000000000002,24.54,24.34,24.16,23.96,23.78,23.42,N/A,N/A -2012,9,15,15,30,101980,100820,99690,85.85000000000001,0,4.46,4.66,4.67,4.66,4.64,4.62,4.59,4.5600000000000005,4.49,17.91,18.26,18.46,18.68,18.89,19.09,19.330000000000002,19.56,20.14,25.47,25.04,24.85,24.650000000000002,24.46,24.27,24.080000000000002,23.900000000000002,23.53,N/A,N/A -2012,9,15,16,30,101950,100790,99660,83.93,0,3.7,3.87,3.89,3.89,3.88,3.88,3.86,3.85,3.8200000000000003,17.78,18.09,18.3,18.51,18.71,18.900000000000002,19.11,19.31,19.77,25.91,25.5,25.32,25.12,24.93,24.740000000000002,24.54,24.36,23.990000000000002,N/A,N/A -2012,9,15,17,30,101930,100770,99650,81.39,0,3.22,3.37,3.38,3.39,3.39,3.39,3.39,3.39,3.38,25.18,25.17,25.21,25.25,25.29,25.32,25.36,25.41,25.46,26.37,25.97,25.79,25.59,25.400000000000002,25.21,25.01,24.830000000000002,24.46,N/A,N/A -2012,9,15,18,30,101930,100770,99650,77.98,0,1.6,1.6600000000000001,1.67,1.68,1.69,1.69,1.7,1.71,1.75,42.74,41.88,41.43,40.94,40.46,39.96,39.39,38.83,37.42,26.810000000000002,26.45,26.27,26.07,25.88,25.7,25.51,25.330000000000002,24.98,N/A,N/A -2012,9,15,19,30,101890,100730,99610,76.47,0,0.93,0.97,0.97,0.97,0.97,0.98,0.98,0.99,1,61.480000000000004,60.76,60.26,59.72,59.21,58.69,58.11,57.550000000000004,56.160000000000004,27.13,26.76,26.59,26.39,26.2,26.02,25.82,25.650000000000002,25.28,N/A,N/A -2012,9,15,20,30,101850,100700,99580,75.36,0,0.75,0.78,0.79,0.8,0.81,0.81,0.8200000000000001,0.8300000000000001,0.86,46.94,45.94,45.410000000000004,44.83,44.22,43.59,42.88,42.19,40.29,27.36,27,26.82,26.63,26.44,26.25,26.060000000000002,25.88,25.52,N/A,N/A -2012,9,15,21,30,101840,100680,99570,72.75,0,2.02,2.13,2.15,2.18,2.19,2.22,2.23,2.2600000000000002,2.31,57.56,55.72,54.7,53.61,52.58,51.54,50.43,49.35,46.85,27.68,27.32,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.21,25.84,N/A,N/A -2012,9,15,22,30,101790,100630,99510,76.29,0,1.45,1.46,1.43,1.41,1.3800000000000001,1.36,1.33,1.31,1.26,34.57,35.07,35.36,35.660000000000004,35.94,36.21,36.49,36.74,37.22,27.46,27.12,26.95,26.75,26.57,26.38,26.2,26.02,25.650000000000002,N/A,N/A -2012,9,15,23,30,101780,100630,99510,75.55,0,3.2,3.27,3.23,3.18,3.13,3.0700000000000003,3.0100000000000002,2.95,2.8000000000000003,17.28,17.84,18.12,18.44,18.75,19.07,19.45,19.81,20.75,27.34,26.990000000000002,26.810000000000002,26.62,26.43,26.240000000000002,26.05,25.87,25.5,N/A,N/A -2012,9,16,0,30,101730,100570,99460,72.64,0,1.54,1.6,1.6,1.59,1.58,1.58,1.57,1.57,1.56,36.62,36.5,36.34,36.17,35.95,35.67,35.32,34.95,33.54,27.48,27.150000000000002,26.98,26.79,26.6,26.42,26.240000000000002,26.060000000000002,25.72,N/A,N/A -2012,9,16,1,30,101740,100590,99470,70.69,0,1.32,1.36,1.36,1.36,1.35,1.35,1.35,1.35,1.35,72.68,71.75,71.12,70.39,69.63,68.83,67.77,66.67,62.99,27.67,27.35,27.18,26.990000000000002,26.810000000000002,26.63,26.44,26.27,25.94,N/A,N/A -2012,9,16,2,30,101750,100600,99480,68.52,0,1.03,1.09,1.1,1.11,1.12,1.1400000000000001,1.1500000000000001,1.17,1.24,44.94,43.38,42.32,41.24,40.17,39.04,37.74,36.43,32.89,27.87,27.560000000000002,27.39,27.2,27.02,26.830000000000002,26.650000000000002,26.47,26.13,N/A,N/A -2012,9,16,3,30,101750,100600,99490,66.21000000000001,0,2.2,2.35,2.38,2.4,2.43,2.44,2.46,2.47,2.49,9.82,9.61,9.540000000000001,9.48,9.42,9.370000000000001,9.32,9.27,9.18,28.150000000000002,27.84,27.67,27.47,27.29,27.1,26.900000000000002,26.72,26.34,N/A,N/A -2012,9,16,4,30,101730,100580,99460,72.65,0,3.96,4.14,4.14,4.13,4.11,4.09,4.0600000000000005,4.03,3.97,13.18,13.52,13.73,13.94,14.13,14.32,14.5,14.68,15.05,27.57,27.23,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A -2012,9,16,5,30,101710,100560,99440,72.99,0,3.69,3.8200000000000003,3.8200000000000003,3.79,3.77,3.74,3.7,3.66,3.58,28.92,29.560000000000002,29.96,30.36,30.740000000000002,31.13,31.53,31.92,32.8,27.26,26.91,26.740000000000002,26.53,26.34,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,16,6,30,101700,100550,99430,75.64,0,3.14,3.24,3.23,3.21,3.18,3.15,3.12,3.09,3.02,31.53,32.17,32.52,32.87,33.2,33.53,33.88,34.21,34.97,27.150000000000002,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.68,25.3,N/A,N/A -2012,9,16,7,30,101710,100560,99440,73.37,0,2.27,2.38,2.4,2.42,2.43,2.44,2.44,2.45,2.46,33.92,34.93,35.46,36,36.480000000000004,36.95,37.44,37.9,38.95,27.32,26.98,26.810000000000002,26.61,26.42,26.240000000000002,26.04,25.86,25.48,N/A,N/A -2012,9,16,8,30,101690,100540,99420,75.94,0,3.2600000000000002,3.37,3.36,3.34,3.31,3.2800000000000002,3.25,3.22,3.15,43.26,44.480000000000004,45.21,45.95,46.64,47.33,48.03,48.71,50.2,27.21,26.87,26.7,26.490000000000002,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A -2012,9,16,9,30,101670,100520,99400,75.09,0,2.89,3.02,3.02,3.02,3.02,3.0100000000000002,2.99,2.98,2.95,49.45,49.620000000000005,49.71,49.800000000000004,49.9,50,50.120000000000005,50.24,50.51,27.25,26.91,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,16,10,30,101650,100500,99380,79.29,0,3.7800000000000002,3.9,3.88,3.84,3.8000000000000003,3.75,3.7,3.65,3.54,36.39,37.07,37.53,38,38.45,38.89,39.35,39.79,40.76,27.05,26.69,26.52,26.32,26.13,25.95,25.75,25.57,25.2,N/A,N/A -2012,9,16,11,30,101650,100490,99370,79.2,0,4.3500000000000005,4.54,4.55,4.54,4.51,4.49,4.45,4.42,4.34,31.78,32.09,32.28,32.47,32.64,32.81,33,33.18,33.56,26.85,26.48,26.3,26.1,25.91,25.72,25.53,25.34,24.96,N/A,N/A -2012,9,16,12,30,101650,100500,99380,79.65,0,4.37,4.54,4.54,4.5,4.46,4.41,4.3500000000000005,4.29,4.14,27.69,28.060000000000002,28.29,28.53,28.77,29.02,29.32,29.63,30.490000000000002,26.42,26.04,25.86,25.66,25.47,25.29,25.09,24.92,24.55,N/A,N/A -2012,9,16,13,30,101660,100500,99380,80.09,0,4.43,4.61,4.61,4.59,4.5600000000000005,4.5200000000000005,4.47,4.42,4.29,29.310000000000002,29.77,30.02,30.28,30.55,30.82,31.14,31.44,32.27,26.3,25.91,25.73,25.53,25.34,25.16,24.97,24.79,24.43,N/A,N/A -2012,9,16,14,30,101670,100510,99390,80.56,0,4.04,4.21,4.21,4.19,4.16,4.13,4.09,4.05,3.93,32.53,33,33.32,33.65,33.980000000000004,34.31,34.68,35.050000000000004,36.08,26.3,25.91,25.73,25.54,25.35,25.17,24.98,24.8,24.45,N/A,N/A -2012,9,16,15,30,101650,100490,99370,80.33,0,3.61,3.77,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.74,3.73,3.69,41.22,42,42.39,42.83,43.24,43.67,44.160000000000004,44.63,45.83,26.53,26.16,25.98,25.78,25.59,25.400000000000002,25.21,25.03,24.66,N/A,N/A -2012,9,16,16,30,101640,100490,99370,80.77,0,2.95,3.09,3.12,3.13,3.14,3.15,3.15,3.16,3.16,62.14,62.93,63.440000000000005,63.940000000000005,64.39,64.84,65.29,65.73,66.67,26.87,26.5,26.32,26.12,25.93,25.740000000000002,25.55,25.37,24.990000000000002,N/A,N/A -2012,9,16,17,30,101600,100450,99330,76.02,0,2.54,2.68,2.71,2.74,2.7600000000000002,2.77,2.7800000000000002,2.8000000000000003,2.83,73.87,74.35000000000001,74.62,74.89,75.14,75.38,75.63,75.87,76.4,27.27,26.91,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,16,18,30,101580,100430,99310,75.37,0,2.65,2.8000000000000003,2.84,2.86,2.88,2.9,2.91,2.92,2.95,98.25,98.5,98.59,98.68,98.76,98.85000000000001,98.95,99.04,99.23,27.55,27.2,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A -2012,9,16,19,30,101530,100380,99270,74.99,0,2.96,3.13,3.16,3.19,3.21,3.22,3.23,3.24,3.2600000000000002,107.72,107.58,107.53,107.48,107.44,107.41,107.37,107.33,107.27,27.75,27.39,27.21,27.01,26.82,26.63,26.44,26.25,25.87,N/A,N/A -2012,9,16,20,30,101460,100310,99200,70.18,0,3.61,3.85,3.9,3.93,3.96,3.98,4,4.01,4.04,118.22,118.03,117.91,117.8,117.71000000000001,117.61,117.53,117.45,117.29,28.02,27.69,27.52,27.32,27.14,26.95,26.75,26.57,26.2,N/A,N/A -2012,9,16,21,30,101420,100270,99160,68.22,0,4.7,5.0200000000000005,5.08,5.11,5.13,5.14,5.15,5.15,5.16,127.95,127.87,127.83,127.8,127.77,127.75,127.73,127.71000000000001,127.68,28.13,27.82,27.650000000000002,27.45,27.26,27.07,26.88,26.7,26.310000000000002,N/A,N/A -2012,9,16,22,30,101350,100200,99090,69.47,0,4.04,4.3100000000000005,4.3500000000000005,4.37,4.38,4.39,4.39,4.39,4.39,122.62,122.73,122.79,122.85000000000001,122.91,122.96000000000001,123.02,123.08,123.19,27.95,27.64,27.47,27.27,27.09,26.900000000000002,26.71,26.52,26.14,N/A,N/A -2012,9,16,23,30,101320,100170,99060,70.87,0,3.63,3.86,3.91,3.93,3.95,3.96,3.96,3.97,3.98,135.16,135.12,135.11,135.1,135.09,135.08,135.08,135.07,135.06,27.82,27.5,27.330000000000002,27.14,26.95,26.76,26.57,26.38,26,N/A,N/A -2012,9,17,0,30,101310,100160,99050,70.44,0,4.03,4.28,4.32,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,143.76,143.95000000000002,144.04,144.13,144.21,144.29,144.36,144.44,144.6,27.84,27.52,27.35,27.150000000000002,26.96,26.78,26.580000000000002,26.39,26.01,N/A,N/A -2012,9,17,1,30,101290,100140,99030,74.71000000000001,0,3.62,3.8200000000000003,3.86,3.87,3.88,3.88,3.87,3.87,3.85,145.58,145.58,145.59,145.58,145.58,145.57,145.56,145.54,145.51,27.6,27.27,27.1,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.76,N/A,N/A -2012,9,17,2,30,101300,100150,99040,73.99,0,3.08,3.25,3.2800000000000002,3.3000000000000003,3.31,3.31,3.31,3.3200000000000003,3.31,158.34,158.04,157.78,157.54,157.34,157.15,156.96,156.79,156.43,27.59,27.26,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A -2012,9,17,3,30,101290,100150,99030,72.52,0,2.73,2.85,2.87,2.87,2.87,2.87,2.86,2.85,2.84,152.13,151.92000000000002,151.81,151.69,151.57,151.45000000000002,151.32,151.19,150.91,27.61,27.28,27.11,26.92,26.73,26.54,26.35,26.16,25.79,N/A,N/A -2012,9,17,4,30,101250,100100,98990,72.74,0,2.2600000000000002,2.33,2.33,2.32,2.31,2.29,2.2800000000000002,2.27,2.24,145.21,145.17000000000002,145.16,145.16,145.14000000000001,145.12,145.08,145.05,144.95000000000002,27.53,27.2,27.03,26.830000000000002,26.64,26.45,26.26,26.07,25.69,N/A,N/A -2012,9,17,5,30,101250,100090,98970,88.03,0,6.11,6.390000000000001,6.41,6.36,6.3,6.23,6.12,6.01,5.58,23.21,23.32,23.39,23.490000000000002,23.62,23.78,24.02,24.29,25.85,25.66,25.23,25.05,24.85,24.67,24.490000000000002,24.32,24.16,23.96,N/A,N/A -2012,9,17,6,30,101200,100050,98930,87.12,0,6.83,7.22,7.2700000000000005,7.25,7.22,7.17,7.11,7.05,6.88,19.6,19.95,20.14,20.36,20.57,20.79,21.02,21.26,21.830000000000002,25.55,25.11,24.91,24.71,24.52,24.330000000000002,24.14,23.96,23.6,N/A,N/A -2012,9,17,7,30,101160,100010,98890,86.2,0,6.88,7.28,7.34,7.34,7.32,7.3,7.26,7.22,7.12,13.57,13.93,14.13,14.34,14.55,14.74,14.96,15.17,15.65,25.38,24.92,24.73,24.52,24.330000000000002,24.14,23.96,23.78,23.41,N/A,N/A -2012,9,17,8,30,101150,99990,98870,86.65,0,6.98,7.390000000000001,7.44,7.44,7.42,7.390000000000001,7.3500000000000005,7.3100000000000005,7.18,8.98,9.1,9.18,9.26,9.32,9.38,9.44,9.49,9.6,25.23,24.76,24.57,24.37,24.18,23.990000000000002,23.81,23.63,23.28,N/A,N/A -2012,9,17,9,30,101130,99970,98850,88.57000000000001,38.5,7.140000000000001,7.57,7.62,7.62,7.61,7.58,7.54,7.5,7.41,348.33,348.54,348.71,348.87,349.01,349.14,349.28000000000003,349.40000000000003,349.66,24.740000000000002,24.26,24.07,23.86,23.67,23.490000000000002,23.31,23.13,22.78,N/A,N/A -2012,9,17,10,30,101080,99920,98790,86.55,7.300000000000001,6.640000000000001,7,7.04,7.04,7.0200000000000005,6.99,6.95,6.91,6.8100000000000005,344.54,344.59000000000003,344.67,344.72,344.77,344.81,344.84000000000003,344.87,344.90000000000003,23.95,23.44,23.240000000000002,23.03,22.830000000000002,22.64,22.45,22.27,21.900000000000002,N/A,N/A -2012,9,17,11,30,101120,99950,98820,86.83,79.5,6.99,7.4,7.47,7.5,7.51,7.51,7.51,7.5,7.48,330.67,331.40000000000003,331.83,332.23,332.6,332.95,333.32,333.66,334.41,23.19,22.66,22.45,22.240000000000002,22.05,21.87,21.68,21.5,21.14,N/A,N/A -2012,9,17,12,30,101090,99920,98800,82.32000000000001,0,5.53,5.8,5.84,5.84,5.83,5.82,5.8,5.78,5.73,349.5,349.88,350.14,350.41,350.67,350.92,351.22,351.48,352.16,23.51,23,22.8,22.59,22.39,22.19,22,21.82,21.43,N/A,N/A -2012,9,17,13,30,101110,99950,98820,79.23,2.6,5.75,6.05,6.1000000000000005,6.12,6.12,6.12,6.11,6.1000000000000005,6.07,8.42,8.43,8.42,8.38,8.35,8.31,8.27,8.23,8.16,23.86,23.36,23.150000000000002,22.94,22.740000000000002,22.55,22.35,22.16,21.77,N/A,N/A -2012,9,17,14,30,101110,99950,98820,78.63,0,6.23,6.6000000000000005,6.66,6.69,6.7,6.71,6.71,6.71,6.7,9.98,10.31,10.5,10.69,10.86,11.02,11.18,11.34,11.71,23.96,23.46,23.25,23.04,22.84,22.650000000000002,22.45,22.26,21.88,N/A,N/A -2012,9,17,15,30,101100,99940,98810,74.73,0,5.7700000000000005,6.07,6.12,6.13,6.13,6.12,6.11,6.1000000000000005,6.07,9.51,9.31,9.200000000000001,9.1,9.01,8.94,8.89,8.84,8.8,24.18,23.69,23.490000000000002,23.28,23.080000000000002,22.89,22.69,22.51,22.13,N/A,N/A -2012,9,17,16,30,101070,99910,98790,72.95,0,4.2,4.38,4.4,4.4,4.4,4.39,4.37,4.36,4.33,357.11,357,356.98,356.95,356.92,356.89,356.85,356.81,356.69,24.47,24.02,23.830000000000002,23.62,23.43,23.240000000000002,23.05,22.87,22.490000000000002,N/A,N/A -2012,9,17,17,30,101040,99890,98760,72.85000000000001,0,3.44,3.6,3.62,3.63,3.64,3.65,3.65,3.65,3.66,338.08,337.3,336.87,336.42,335.99,335.54,335.08,334.65000000000003,333.63,24.900000000000002,24.47,24.28,24.07,23.87,23.68,23.490000000000002,23.3,22.91,N/A,N/A -2012,9,17,18,30,101010,99850,98730,74.2,0,3.46,3.65,3.69,3.72,3.74,3.7600000000000002,3.77,3.7800000000000002,3.81,310.36,310.25,310.2,310.15000000000003,310.09000000000003,310.05,309.99,309.94,309.82,25.44,25.02,24.830000000000002,24.63,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A -2012,9,17,19,30,100970,99820,98700,69.7,0,4.69,4.97,5.04,5.07,5.09,5.11,5.12,5.14,5.15,316.44,316.53000000000003,316.55,316.55,316.54,316.53000000000003,316.5,316.48,316.39,26.03,25.63,25.45,25.240000000000002,25.05,24.86,24.66,24.48,24.1,N/A,N/A -2012,9,17,20,30,100920,99770,98660,66.28,0,3.9,4.16,4.23,4.28,4.32,4.3500000000000005,4.39,4.42,4.49,322.67,322.47,322.32,322.16,322,321.85,321.69,321.53000000000003,321.19,26.52,26.14,25.96,25.77,25.580000000000002,25.39,25.19,25.01,24.64,N/A,N/A -2012,9,17,21,30,100860,99720,98600,64.94,0,3.64,3.87,3.93,3.97,4.01,4.04,4.07,4.1,4.17,323.26,322.65000000000003,322.31,321.96,321.63,321.3,320.96,320.63,319.91,26.95,26.6,26.42,26.22,26.04,25.85,25.66,25.48,25.11,N/A,N/A -2012,9,17,22,30,100840,99700,98590,63.910000000000004,0,3.14,3.36,3.42,3.47,3.5100000000000002,3.54,3.58,3.61,3.68,322.41,321.97,321.63,321.3,321,320.72,320.44,320.18,319.65000000000003,27.330000000000002,27.01,26.84,26.64,26.45,26.26,26.07,25.89,25.51,N/A,N/A -2012,9,17,23,30,100850,99700,98590,71.58,0,6,6.36,6.42,6.44,6.44,6.44,6.42,6.41,6.38,325.44,326.90000000000003,327.91,328.90000000000003,329.8,330.67,331.53000000000003,332.35,334.04,26.650000000000002,26.27,26.1,25.900000000000002,25.72,25.54,25.35,25.18,24.82,N/A,N/A -2012,9,18,0,30,100890,99740,98630,72.14,0,4.5200000000000005,4.75,4.78,4.79,4.79,4.79,4.79,4.79,4.7700000000000005,297.17,298.39,299.17,299.88,300.5,301.09000000000003,301.66,302.18,303.25,26.67,26.3,26.12,25.92,25.73,25.53,25.330000000000002,25.150000000000002,24.76,N/A,N/A -2012,9,18,1,30,100880,99730,98610,79.05,0,4.55,4.79,4.84,4.86,4.88,4.89,4.89,4.9,4.9,297.57,298.88,299.58,300.25,300.83,301.38,301.92,302.42,303.64,26.01,25.61,25.43,25.22,25.03,24.84,24.650000000000002,24.46,24.080000000000002,N/A,N/A -2012,9,18,2,30,100910,99770,98650,70.05,0,3.3200000000000003,3.46,3.47,3.47,3.47,3.46,3.45,3.45,3.43,305.98,307.56,308.52,309.48,310.33,311.14,311.93,312.67,314.14,26.63,26.27,26.1,25.89,25.7,25.51,25.32,25.13,24.75,N/A,N/A -2012,9,18,3,30,100940,99790,98680,68.26,0,4.24,4.48,4.5200000000000005,4.53,4.53,4.53,4.5200000000000005,4.51,4.49,344.53000000000003,344.85,344.99,345.12,345.24,345.34000000000003,345.44,345.53000000000003,345.7,26.89,26.52,26.34,26.14,25.95,25.75,25.55,25.37,24.98,N/A,N/A -2012,9,18,4,30,100970,99820,98710,70.22,0,5.32,5.5600000000000005,5.57,5.54,5.51,5.48,5.44,5.4,5.33,2.85,1.99,1.4000000000000001,0.78,0.21,359.66,359.08,358.54,357.37,26.41,26.02,25.84,25.64,25.44,25.26,25.060000000000002,24.87,24.490000000000002,N/A,N/A -2012,9,18,5,30,101020,99870,98750,71.35000000000001,0,3.5100000000000002,3.64,3.64,3.63,3.62,3.61,3.59,3.5700000000000003,3.54,5.14,3.97,3.2,2.37,1.58,0.77,359.88,359.02,357,26.04,25.66,25.48,25.27,25.080000000000002,24.89,24.7,24.52,24.14,N/A,N/A -2012,9,18,6,30,101060,99910,98790,70.31,0,3.7600000000000002,3.97,4.01,4.03,4.05,4.07,4.08,4.09,4.11,353.53000000000003,352.66,352.16,351.64,351.15000000000003,350.67,350.18,349.71,348.69,26.09,25.71,25.53,25.330000000000002,25.13,24.94,24.740000000000002,24.560000000000002,24.17,N/A,N/A -2012,9,18,7,30,101110,99950,98830,73.12,0,4.94,5.21,5.26,5.28,5.29,5.29,5.28,5.28,5.26,335.09000000000003,334.11,333.54,332.98,332.48,332.02,331.56,331.13,330.28000000000003,25.87,25.47,25.28,25.080000000000002,24.88,24.69,24.490000000000002,24.3,23.91,N/A,N/A -2012,9,18,8,30,101140,99980,98860,76.55,0,5.11,5.41,5.47,5.5,5.51,5.5200000000000005,5.53,5.54,5.55,340.94,340.44,340.11,339.75,339.42,339.1,338.76,338.43,337.73,25.48,25.07,24.88,24.67,24.47,24.28,24.080000000000002,23.89,23.51,N/A,N/A -2012,9,18,9,30,101180,100020,98900,74.67,0,6,6.3500000000000005,6.41,6.42,6.42,6.41,6.4,6.38,6.34,332.59000000000003,332.15000000000003,331.90000000000003,331.64,331.40000000000003,331.17,330.95,330.73,330.28000000000003,25.650000000000002,25.22,25.04,24.830000000000002,24.63,24.44,24.240000000000002,24.05,23.67,N/A,N/A -2012,9,18,10,30,101200,100040,98920,77.25,0,6.33,6.74,6.82,6.86,6.88,6.890000000000001,6.9,6.9,6.9,327.01,326.76,326.6,326.43,326.28000000000003,326.12,325.96,325.82,325.5,25.3,24.86,24.66,24.45,24.26,24.07,23.87,23.68,23.3,N/A,N/A -2012,9,18,11,30,101260,100100,98980,75.55,0,6.92,7.390000000000001,7.49,7.53,7.5600000000000005,7.57,7.58,7.58,7.57,339.03000000000003,338.89,338.78000000000003,338.66,338.55,338.45,338.34000000000003,338.24,338.02,25.26,24.8,24.61,24.400000000000002,24.2,24.01,23.81,23.62,23.240000000000002,N/A,N/A -2012,9,18,12,30,101290,100130,99010,80.66,0,7.0600000000000005,7.5200000000000005,7.61,7.65,7.67,7.68,7.68,7.68,7.66,339.86,339.58,339.39,339.19,339,338.82,338.64,338.47,338.09000000000003,24.87,24.400000000000002,24.2,23.990000000000002,23.79,23.59,23.39,23.21,22.82,N/A,N/A -2012,9,18,13,30,101330,100170,99040,81.15,0,7.34,7.86,7.99,8.05,8.09,8.120000000000001,8.13,8.15,8.16,338.24,338.28000000000003,338.29,338.3,338.31,338.31,338.32,338.32,338.35,24.79,24.310000000000002,24.11,23.900000000000002,23.7,23.51,23.31,23.13,22.740000000000002,N/A,N/A -2012,9,18,14,30,101400,100240,99110,81.98,0,7.09,7.57,7.68,7.74,7.7700000000000005,7.79,7.8,7.8100000000000005,7.8100000000000005,348.24,347.89,347.66,347.45,347.25,347.06,346.88,346.7,346.33,24.66,24.18,23.98,23.77,23.57,23.38,23.18,22.990000000000002,22.61,N/A,N/A -2012,9,18,15,30,101430,100270,99150,79.83,0,7.2,7.72,7.86,7.930000000000001,7.97,8.01,8.03,8.05,8.08,345.05,345.07,345.09000000000003,345.1,345.12,345.15000000000003,345.18,345.21,345.27,24.98,24.51,24.310000000000002,24.1,23.900000000000002,23.71,23.51,23.32,22.94,N/A,N/A -2012,9,18,16,30,101480,100320,99190,73.72,0,7.21,7.75,7.88,7.95,8,8.03,8.06,8.08,8.11,352.16,352.05,351.99,351.92,351.87,351.81,351.77,351.72,351.64,25.45,25.01,24.82,24.6,24.41,24.21,24.01,23.830000000000002,23.44,N/A,N/A -2012,9,18,17,30,101490,100330,99200,69.34,0,6.73,7.24,7.36,7.44,7.49,7.53,7.5600000000000005,7.59,7.62,348.13,348.28000000000003,348.38,348.47,348.56,348.65000000000003,348.74,348.83,349.02,25.96,25.55,25.36,25.150000000000002,24.96,24.76,24.57,24.38,23.990000000000002,N/A,N/A -2012,9,18,18,30,101490,100330,99210,65.61,0,6,6.45,6.55,6.61,6.65,6.68,6.7,6.72,6.74,341.58,342.06,342.39,342.72,343.04,343.34000000000003,343.66,343.96,344.61,26.62,26.25,26.07,25.86,25.67,25.48,25.28,25.1,24.71,N/A,N/A -2012,9,18,19,30,101480,100320,99200,62.410000000000004,0,4.92,5.34,5.46,5.54,5.61,5.67,5.72,5.7700000000000005,5.8500000000000005,339.41,340.04,340.43,340.79,341.12,341.44,341.74,342.02,342.59000000000003,27.330000000000002,27,26.830000000000002,26.63,26.45,26.26,26.060000000000002,25.88,25.5,N/A,N/A -2012,9,18,20,30,101460,100310,99190,64.97,0,5.04,5.43,5.51,5.5600000000000005,5.59,5.62,5.64,5.66,5.69,332.35,333.75,334.6,335.43,336.16,336.85,337.52,338.15000000000003,339.39,27.82,27.52,27.36,27.16,26.98,26.79,26.6,26.42,26.04,N/A,N/A -2012,9,18,21,30,101450,100300,99180,67.25,0,3.8000000000000003,3.99,4.0200000000000005,4.01,4,3.98,3.93,3.88,3.5500000000000003,73.49,74.22,74.46000000000001,74.63,74.67,74.62,74.14,73.53,69.02,26.97,26.64,26.48,26.29,26.13,25.96,25.810000000000002,25.69,25.55,N/A,N/A -2012,9,18,22,30,101420,100270,99160,65.41,0,2.0100000000000002,2.04,2.02,1.98,1.94,1.9000000000000001,1.85,1.8,1.68,72.55,71.96000000000001,71.51,70.95,70.37,69.7,68.9,68.07000000000001,64.93,27.490000000000002,27.18,27.01,26.810000000000002,26.63,26.44,26.25,26.080000000000002,25.72,N/A,N/A -2012,9,18,23,30,101420,100270,99150,65.34,0,0.75,0.85,0.89,0.93,1,1.09,1.24,1.42,2.17,37.7,33.22,30.240000000000002,27.04,23.37,18.77,13.52,7.7,357.64,27.73,27.43,27.28,27.09,26.91,26.740000000000002,26.580000000000002,26.44,26.23,N/A,N/A -2012,9,19,0,30,101440,100290,99180,66.52,0,1.68,1.99,2.12,2.2600000000000002,2.37,2.49,2.6,2.71,2.98,21.37,17.78,15.89,14.3,13,11.870000000000001,10.870000000000001,9.97,8.34,28.05,27.79,27.63,27.45,27.27,27.1,26.91,26.740000000000002,26.37,N/A,N/A -2012,9,19,1,30,101450,100300,99190,65.22,0,6.79,7.41,7.54,7.61,7.67,7.7,7.72,7.74,7.78,355.2,355.93,356.37,356.86,357.32,357.78000000000003,358.28000000000003,358.75,359.81,28.400000000000002,28.150000000000002,28,27.82,27.64,27.46,27.27,27.1,26.73,N/A,N/A -2012,9,19,2,30,101510,100360,99240,65.41,0,6.68,7.28,7.42,7.48,7.53,7.5600000000000005,7.57,7.58,7.59,20.46,20.75,20.86,20.96,21.04,21.12,21.2,21.26,21.400000000000002,28.28,28.02,27.86,27.67,27.490000000000002,27.3,27.11,26.92,26.55,N/A,N/A -2012,9,19,3,30,101530,100380,99270,66.46000000000001,0,7.01,7.6000000000000005,7.72,7.76,7.79,7.8,7.8,7.79,7.7700000000000005,31.470000000000002,31.45,31.44,31.41,31.38,31.34,31.3,31.26,31.150000000000002,27.87,27.57,27.41,27.22,27.03,26.85,26.650000000000002,26.47,26.09,N/A,N/A -2012,9,19,4,30,101550,100400,99280,70.04,0,7.79,8.39,8.5,8.53,8.540000000000001,8.53,8.51,8.48,8.41,28.810000000000002,29.32,29.68,30.03,30.35,30.66,30.970000000000002,31.26,31.87,27.23,26.89,26.72,26.52,26.330000000000002,26.150000000000002,25.95,25.77,25.400000000000002,N/A,N/A -2012,9,19,5,30,101560,100410,99290,74.07000000000001,0,7.54,8.11,8.22,8.26,8.290000000000001,8.290000000000001,8.290000000000001,8.28,8.25,36.480000000000004,36.95,37.22,37.49,37.730000000000004,37.97,38.21,38.44,38.93,26.7,26.32,26.150000000000002,25.95,25.76,25.57,25.38,25.2,24.830000000000002,N/A,N/A -2012,9,19,6,30,101590,100440,99320,75.37,0,7.79,8.370000000000001,8.49,8.540000000000001,8.56,8.57,8.56,8.55,8.51,46.58,46.83,47,47.17,47.32,47.47,47.62,47.76,48.06,26.52,26.12,25.93,25.73,25.53,25.34,25.150000000000002,24.96,24.580000000000002,N/A,N/A -2012,9,19,7,30,101620,100460,99340,76.27,0,8.27,8.96,9.11,9.19,9.23,9.26,9.27,9.28,9.27,49.660000000000004,49.95,50.1,50.26,50.4,50.52,50.65,50.77,51.01,26.44,26.02,25.84,25.63,25.43,25.240000000000002,25.04,24.86,24.47,N/A,N/A -2012,9,19,8,30,101640,100480,99360,79.12,0,8.16,8.8,8.94,9.01,9.05,9.07,9.08,9.08,9.07,55.19,55.45,55.61,55.76,55.88,55.99,56.1,56.21,56.410000000000004,26.13,25.69,25.5,25.29,25.09,24.89,24.69,24.5,24.12,N/A,N/A -2012,9,19,9,30,101670,100510,99380,79.49,0,8.26,8.88,9.01,9.07,9.1,9.11,9.11,9.11,9.08,60.25,60.42,60.52,60.61,60.69,60.77,60.84,60.92,61.050000000000004,25.830000000000002,25.38,25.19,24.97,24.77,24.57,24.38,24.19,23.8,N/A,N/A -2012,9,19,10,30,101700,100540,99410,78.78,0,8.76,9.450000000000001,9.59,9.65,9.69,9.71,9.72,9.72,9.700000000000001,57.59,57.870000000000005,58.050000000000004,58.22,58.38,58.53,58.69,58.83,59.120000000000005,25.42,24.95,24.740000000000002,24.53,24.330000000000002,24.13,23.93,23.740000000000002,23.35,N/A,N/A -2012,9,19,11,30,101740,100570,99450,79.46000000000001,0,8.73,9.39,9.540000000000001,9.6,9.65,9.67,9.68,9.68,9.66,65,64.92,64.92,64.93,64.93,64.94,64.94,64.95,64.96000000000001,25.240000000000002,24.75,24.54,24.32,24.12,23.92,23.72,23.53,23.13,N/A,N/A -2012,9,19,12,30,101770,100600,99470,76.87,0,8.36,8.97,9.1,9.16,9.200000000000001,9.22,9.22,9.22,9.200000000000001,60.85,60.910000000000004,60.980000000000004,61.050000000000004,61.11,61.160000000000004,61.22,61.26,61.36,25.03,24.54,24.330000000000002,24.12,23.91,23.72,23.51,23.32,22.93,N/A,N/A -2012,9,19,13,30,101830,100660,99530,72.68,0,7.68,8.22,8.32,8.36,8.38,8.38,8.38,8.370000000000001,8.33,59.53,59.620000000000005,59.72,59.800000000000004,59.88,59.94,60.01,60.07,60.2,24.94,24.46,24.26,24.04,23.84,23.650000000000002,23.45,23.26,22.87,N/A,N/A -2012,9,19,14,30,101880,100710,99570,71.88,0,7.82,8.370000000000001,8.47,8.52,8.55,8.56,8.56,8.56,8.53,62.980000000000004,63.18,63.31,63.42,63.51,63.6,63.7,63.78,63.940000000000005,24.8,24.310000000000002,24.1,23.89,23.69,23.490000000000002,23.29,23.1,22.7,N/A,N/A -2012,9,19,15,30,101860,100690,99550,71.43,0,7.34,7.8100000000000005,7.9,7.930000000000001,7.94,7.94,7.930000000000001,7.92,7.88,58.53,58.51,58.49,58.47,58.45,58.42,58.39,58.36,58.300000000000004,24.62,24.13,23.92,23.71,23.5,23.31,23.1,22.91,22.52,N/A,N/A -2012,9,19,16,30,101870,100700,99560,68.47,0,6.5200000000000005,6.91,6.98,7.01,7.0200000000000005,7.0200000000000005,7.01,7,6.97,61.480000000000004,61.79,61.96,62.13,62.28,62.42,62.57,62.7,62.980000000000004,24.650000000000002,24.17,23.96,23.75,23.55,23.35,23.150000000000002,22.97,22.57,N/A,N/A -2012,9,19,17,30,101860,100690,99550,67.84,0,5.91,6.24,6.29,6.3100000000000005,6.32,6.3100000000000005,6.3100000000000005,6.29,6.26,63.15,63.18,63.22,63.24,63.25,63.26,63.27,63.28,63.28,24.66,24.19,23.990000000000002,23.78,23.580000000000002,23.38,23.18,22.990000000000002,22.6,N/A,N/A -2012,9,19,18,30,101880,100710,99570,67.59,0,5.05,5.3,5.33,5.34,5.33,5.32,5.3,5.28,5.24,77.32000000000001,77.19,77.10000000000001,77.01,76.91,76.81,76.7,76.59,76.35000000000001,24.76,24.310000000000002,24.12,23.91,23.71,23.52,23.31,23.13,22.740000000000002,N/A,N/A -2012,9,19,19,30,101840,100680,99540,64.94,0,3.6,3.74,3.75,3.75,3.74,3.73,3.71,3.7,3.67,74.87,74.38,74.11,73.83,73.56,73.28,72.99,72.72,72.07000000000001,24.990000000000002,24.57,24.38,24.17,23.97,23.78,23.580000000000002,23.39,23.01,N/A,N/A -2012,9,19,20,30,101810,100640,99510,63.18,0,2.94,3.04,3.0300000000000002,3.0100000000000002,2.99,2.98,2.95,2.93,2.88,93.08,92.60000000000001,92.24,91.86,91.51,91.16,90.79,90.45,89.68,25.22,24.82,24.63,24.43,24.23,24.04,23.84,23.650000000000002,23.27,N/A,N/A -2012,9,19,21,30,101770,100600,99470,61.31,0,1.71,1.75,1.75,1.74,1.72,1.72,1.7,1.69,1.6600000000000001,96.33,95.57000000000001,95.06,94.54,94.03,93.54,92.99,92.47,91.22,25.39,25,24.810000000000002,24.61,24.41,24.22,24.03,23.84,23.45,N/A,N/A -2012,9,19,22,30,101750,100580,99450,61.31,0,1.83,1.8800000000000001,1.87,1.86,1.85,1.83,1.82,1.81,1.78,104.74000000000001,104.26,103.92,103.58,103.26,102.93,102.60000000000001,102.29,101.55,25.57,25.19,25,24.8,24.61,24.42,24.21,24.03,23.64,N/A,N/A -2012,9,19,23,30,101740,100570,99440,61.08,0,2.2800000000000002,2.36,2.36,2.35,2.34,2.33,2.32,2.3000000000000003,2.27,104.52,104.19,103.95,103.68,103.42,103.15,102.86,102.59,101.93,25.72,25.34,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A -2012,9,20,0,30,101710,100550,99420,61.07,0,2.8000000000000003,2.89,2.89,2.88,2.87,2.86,2.84,2.83,2.8000000000000003,111.39,111.14,111,110.83,110.67,110.51,110.34,110.18,109.81,25.86,25.48,25.3,25.09,24.900000000000002,24.71,24.51,24.32,23.93,N/A,N/A -2012,9,20,1,30,101740,100570,99450,60.34,0,3.2,3.33,3.34,3.34,3.34,3.34,3.33,3.33,3.31,99.29,99.12,98.99000000000001,98.87,98.75,98.64,98.52,98.41,98.18,25.94,25.560000000000002,25.38,25.17,24.98,24.79,24.59,24.400000000000002,24.01,N/A,N/A -2012,9,20,2,30,101750,100580,99460,58.95,0,3.29,3.45,3.48,3.49,3.5,3.5,3.5,3.5100000000000002,3.5100000000000002,76.32000000000001,76.23,76.22,76.19,76.16,76.12,76.07000000000001,76.03,75.9,26.01,25.63,25.44,25.25,25.05,24.86,24.66,24.47,24.09,N/A,N/A -2012,9,20,3,30,101740,100580,99450,55.82,0,3.68,3.9,3.95,3.98,4,4.0200000000000005,4.04,4.05,4.07,59.550000000000004,59.01,58.72,58.45,58.21,57.99,57.77,57.58,57.2,26.16,25.78,25.6,25.400000000000002,25.2,25.01,24.810000000000002,24.63,24.240000000000002,N/A,N/A -2012,9,20,4,30,101720,100560,99430,56.56,0,3.74,3.94,3.97,3.99,4,4.01,4.01,4.0200000000000005,4.0200000000000005,63.39,63.800000000000004,63.95,64.09,64.22,64.34,64.45,64.55,64.76,26.11,25.73,25.55,25.35,25.150000000000002,24.96,24.76,24.57,24.18,N/A,N/A -2012,9,20,5,30,101720,100550,99420,50.33,0,3.65,3.85,3.88,3.9,3.92,3.93,3.94,3.95,3.96,55.57,56.07,56.31,56.52,56.7,56.88,57.04,57.17,57.45,26.330000000000002,25.96,25.78,25.580000000000002,25.39,25.19,24.990000000000002,24.810000000000002,24.42,N/A,N/A -2012,9,20,6,30,101740,100580,99450,55.49,0,4.5,4.71,4.73,4.73,4.72,4.71,4.69,4.68,4.63,45.17,45.65,45.83,46,46.15,46.300000000000004,46.46,46.61,46.95,25.89,25.5,25.32,25.12,24.92,24.73,24.54,24.35,23.96,N/A,N/A -2012,9,20,7,30,101730,100570,99440,51.35,0,3.02,3.16,3.18,3.19,3.19,3.2,3.2,3.2,3.2,50.49,51.43,51.980000000000004,52.49,52.97,53.410000000000004,53.85,54.25,55.07,25.990000000000002,25.62,25.44,25.240000000000002,25.04,24.85,24.650000000000002,24.47,24.07,N/A,N/A -2012,9,20,8,30,101760,100600,99470,51.52,0,3.34,3.52,3.56,3.58,3.59,3.6,3.61,3.61,3.62,55.93,56.56,56.980000000000004,57.36,57.7,58.02,58.33,58.61,59.160000000000004,26.17,25.810000000000002,25.63,25.43,25.23,25.04,24.84,24.650000000000002,24.26,N/A,N/A -2012,9,20,9,30,101770,100600,99470,49.84,0,2.59,2.7,2.71,2.72,2.73,2.73,2.73,2.73,2.74,57.6,58.38,58.9,59.410000000000004,59.88,60.33,60.800000000000004,61.230000000000004,62.13,26.12,25.76,25.580000000000002,25.38,25.19,24.990000000000002,24.79,24.61,24.22,N/A,N/A -2012,9,20,10,30,101740,100580,99450,54.2,0,3.16,3.2600000000000002,3.25,3.23,3.21,3.19,3.16,3.14,3.09,44.45,45.19,45.68,46.15,46.59,47,47.42,47.800000000000004,48.61,25.94,25.560000000000002,25.38,25.18,24.98,24.79,24.59,24.41,24.02,N/A,N/A -2012,9,20,11,30,101760,100590,99460,54.86,0,3.29,3.38,3.37,3.34,3.31,3.29,3.2600000000000002,3.24,3.19,79.5,78.83,78.35000000000001,77.86,77.41,76.98,76.54,76.14,75.3,25.810000000000002,25.43,25.25,25.04,24.85,24.66,24.46,24.27,23.88,N/A,N/A -2012,9,20,12,30,101770,100600,99470,56.34,0,3.37,3.46,3.44,3.41,3.38,3.35,3.3200000000000003,3.29,3.23,65.91,66.01,66.07000000000001,66.15,66.2,66.24,66.29,66.33,66.41,25.61,25.22,25.04,24.830000000000002,24.64,24.45,24.25,24.060000000000002,23.67,N/A,N/A -2012,9,20,13,30,101780,100610,99480,59.31,0,3.83,3.99,3.99,3.99,3.97,3.96,3.94,3.92,3.89,70.38,70.23,70.05,69.88,69.73,69.59,69.44,69.3,69.04,25.490000000000002,25.09,24.900000000000002,24.7,24.5,24.310000000000002,24.11,23.92,23.53,N/A,N/A -2012,9,20,14,30,101800,100640,99500,58.410000000000004,0,3.52,3.66,3.66,3.65,3.64,3.63,3.61,3.59,3.56,72.11,71.62,71.35000000000001,71.09,70.85000000000001,70.62,70.38,70.17,69.73,25.37,24.97,24.78,24.580000000000002,24.38,24.19,23.990000000000002,23.8,23.41,N/A,N/A -2012,9,20,15,30,101800,100630,99500,57.480000000000004,0,3.84,3.99,4,3.99,3.97,3.96,3.94,3.92,3.88,60.17,60.28,60.410000000000004,60.52,60.63,60.72,60.82,60.910000000000004,61.08,25.330000000000002,24.93,24.740000000000002,24.54,24.34,24.14,23.94,23.76,23.37,N/A,N/A -2012,9,20,16,30,101780,100610,99480,56.28,0,3.88,4.04,4.05,4.05,4.03,4.03,4.01,3.99,3.96,55.910000000000004,55.97,55.97,55.980000000000004,55.980000000000004,55.980000000000004,55.99,56,55.99,25.310000000000002,24.900000000000002,24.72,24.51,24.32,24.12,23.92,23.740000000000002,23.34,N/A,N/A -2012,9,20,17,30,101770,100600,99470,55.08,0,3.8200000000000003,3.98,3.99,3.98,3.97,3.95,3.94,3.92,3.88,60.160000000000004,60.17,60.09,60.01,59.93,59.870000000000005,59.79,59.72,59.58,25.29,24.88,24.69,24.490000000000002,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A -2012,9,20,18,30,101730,100560,99430,53.58,0,3.13,3.23,3.23,3.21,3.2,3.19,3.17,3.15,3.12,65.85,65.18,64.8,64.41,64.04,63.690000000000005,63.31,62.96,62.21,25.32,24.92,24.73,24.53,24.34,24.150000000000002,23.95,23.77,23.38,N/A,N/A -2012,9,20,19,30,101690,100530,99400,52.92,0,2.5300000000000002,2.6,2.6,2.58,2.57,2.5500000000000003,2.54,2.52,2.48,73.59,73.02,72.65,72.27,71.92,71.59,71.22,70.86,70.08,25.37,24.98,24.79,24.59,24.400000000000002,24.21,24.01,23.82,23.44,N/A,N/A -2012,9,20,20,30,101660,100490,99360,52.14,0,2.73,2.81,2.8000000000000003,2.79,2.77,2.7600000000000002,2.74,2.72,2.68,88.07000000000001,87.73,87.48,87.21000000000001,86.95,86.7,86.43,86.17,85.55,25.48,25.09,24.91,24.71,24.51,24.330000000000002,24.13,23.94,23.56,N/A,N/A -2012,9,20,21,30,101630,100460,99330,53.57,0,2.5300000000000002,2.61,2.61,2.59,2.58,2.56,2.54,2.52,2.48,98.18,97.9,97.65,97.42,97.19,96.97,96.73,96.51,95.98,25.51,25.12,24.94,24.740000000000002,24.54,24.36,24.16,23.97,23.580000000000002,N/A,N/A -2012,9,20,22,30,101590,100420,99300,54.03,0,2.33,2.4,2.4,2.39,2.38,2.37,2.36,2.35,2.32,89.62,89.04,88.74,88.43,88.13,87.85000000000001,87.52,87.21000000000001,86.51,25.580000000000002,25.2,25.02,24.82,24.63,24.44,24.240000000000002,24.060000000000002,23.67,N/A,N/A -2012,9,20,23,30,101590,100420,99290,54.24,0,3.15,3.2800000000000002,3.29,3.29,3.29,3.2800000000000002,3.2800000000000002,3.27,3.25,103.55,103.06,102.85000000000001,102.63,102.41,102.18,101.93,101.7,101.14,25.67,25.29,25.11,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A -2012,9,21,0,30,101550,100390,99260,56.480000000000004,0,3.52,3.7,3.73,3.75,3.7600000000000002,3.77,3.7800000000000002,3.7800000000000002,3.79,104.2,104.08,103.96000000000001,103.83,103.72,103.61,103.49000000000001,103.38,103.13,25.67,25.29,25.1,24.900000000000002,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A -2012,9,21,1,30,101550,100390,99260,52.620000000000005,0,2.8000000000000003,2.96,2.99,3.0100000000000002,3.0300000000000002,3.04,3.0500000000000003,3.0700000000000003,3.09,102.47,102.31,102.18,102.04,101.92,101.79,101.65,101.52,101.23,25.91,25.54,25.36,25.16,24.97,24.78,24.580000000000002,24.400000000000002,24.01,N/A,N/A -2012,9,21,2,30,101560,100400,99270,53.2,0,3.96,4.18,4.21,4.22,4.23,4.23,4.24,4.24,4.23,105.2,104.94,104.76,104.58,104.41,104.25,104.08,103.93,103.56,26.05,25.68,25.5,25.3,25.1,24.91,24.72,24.53,24.14,N/A,N/A -2012,9,21,3,30,101550,100390,99260,53.39,0,3.63,3.81,3.85,3.86,3.87,3.87,3.88,3.88,3.88,103.72,103.18,102.84,102.51,102.19,101.89,101.58,101.3,100.68,26.07,25.7,25.52,25.32,25.13,24.94,24.740000000000002,24.55,24.17,N/A,N/A -2012,9,21,4,30,101520,100360,99230,53.92,0,3.62,3.83,3.87,3.89,3.91,3.92,3.94,3.95,3.96,95.65,95.36,95.19,95.01,94.85000000000001,94.69,94.52,94.35000000000001,94.02,26.09,25.72,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A -2012,9,21,5,30,101550,100390,99260,54.32,0,4.28,4.5200000000000005,4.57,4.59,4.6000000000000005,4.61,4.62,4.62,4.62,97.06,96.73,96.53,96.36,96.19,96.02,95.86,95.72,95.39,26.14,25.77,25.59,25.39,25.19,25,24.8,24.62,24.23,N/A,N/A -2012,9,21,6,30,101550,100380,99260,54.04,0,3.92,4.15,4.2,4.23,4.25,4.2700000000000005,4.28,4.29,4.3100000000000005,88.44,88.62,88.7,88.75,88.8,88.85000000000001,88.88,88.92,88.98,26.12,25.75,25.57,25.37,25.18,24.990000000000002,24.79,24.6,24.21,N/A,N/A -2012,9,21,7,30,101560,100400,99270,54.85,0,3.49,3.69,3.74,3.77,3.79,3.8000000000000003,3.8200000000000003,3.83,3.85,88.46000000000001,88.46000000000001,88.46000000000001,88.45,88.43,88.4,88.37,88.33,88.23,26.05,25.68,25.5,25.3,25.1,24.91,24.71,24.53,24.14,N/A,N/A -2012,9,21,8,30,101540,100380,99250,54.96,0,3.3200000000000003,3.46,3.47,3.47,3.46,3.46,3.45,3.45,3.44,85.49,85.05,84.83,84.62,84.44,84.27,84.11,83.97,83.69,25.94,25.57,25.39,25.19,25,24.810000000000002,24.61,24.43,24.03,N/A,N/A -2012,9,21,9,30,101560,100400,99270,59.09,0,3.74,3.91,3.93,3.94,3.94,3.94,3.94,3.93,3.92,83.99,84.8,85.32000000000001,85.76,86.11,86.4,86.64,86.84,87.16,25.87,25.490000000000002,25.310000000000002,25.11,24.91,24.72,24.52,24.330000000000002,23.94,N/A,N/A -2012,9,21,10,30,101570,100400,99280,60.67,0,4.32,4.58,4.62,4.65,4.66,4.68,4.68,4.69,4.71,88.57000000000001,88.11,87.78,87.44,87.15,86.89,86.62,86.38,85.94,25.740000000000002,25.36,25.17,24.97,24.78,24.59,24.39,24.2,23.81,N/A,N/A -2012,9,21,11,30,101550,100390,99270,61.7,0,3.75,4.01,4.08,4.13,4.17,4.21,4.24,4.26,4.3100000000000005,74.78,74.53,74.5,74.46000000000001,74.43,74.4,74.37,74.35000000000001,74.32000000000001,25.76,25.37,25.19,24.990000000000002,24.79,24.6,24.400000000000002,24.21,23.82,N/A,N/A -2012,9,21,12,30,101540,100380,99260,62.74,0,4.17,4.4,4.45,4.48,4.5,4.51,4.53,4.54,4.55,64.48,64.8,64.94,65.07000000000001,65.18,65.29,65.4,65.51,65.72,25.82,25.43,25.25,25.05,24.85,24.66,24.46,24.28,23.89,N/A,N/A -2012,9,21,13,30,101540,100370,99250,61.44,0,3.7,3.88,3.9,3.91,3.92,3.92,3.92,3.91,3.9,73.08,73.47,73.69,73.88,74.04,74.2,74.34,74.46000000000001,74.7,26.02,25.64,25.46,25.26,25.060000000000002,24.87,24.67,24.490000000000002,24.1,N/A,N/A -2012,9,21,14,30,101540,100380,99260,66.83,0,3.43,3.62,3.67,3.69,3.71,3.72,3.74,3.74,3.7600000000000002,65.84,66.66,67.19,67.68,68.11,68.51,68.92,69.29,70.03,25.96,25.59,25.41,25.2,25.01,24.82,24.62,24.43,24.04,N/A,N/A -2012,9,21,15,30,101570,100410,99280,76.77,0,5.82,6.04,6.0200000000000005,5.96,5.89,5.82,5.75,5.68,5.54,33.37,34.97,36.04,37.14,38.17,39.17,40.19,41.15,43.22,25.580000000000002,25.18,25,24.8,24.61,24.43,24.23,24.05,23.68,N/A,N/A -2012,9,21,16,30,101550,100390,99270,76.08,0,3.92,4.15,4.21,4.24,4.2700000000000005,4.28,4.3,4.3100000000000005,4.33,60.46,61.34,61.730000000000004,62.04,62.28,62.49,62.67,62.83,63.08,26.02,25.64,25.45,25.25,25.05,24.86,24.66,24.48,24.09,N/A,N/A -2012,9,21,17,30,101490,100330,99210,77.99,0,5.0200000000000005,5.32,5.37,5.4,5.41,5.42,5.42,5.42,5.41,47.980000000000004,48.4,48.660000000000004,48.910000000000004,49.13,49.35,49.56,49.76,50.18,25.93,25.53,25.34,25.14,24.94,24.75,24.55,24.37,23.98,N/A,N/A -2012,9,21,18,30,101480,100330,99210,80.08,0,5.68,6.05,6.12,6.15,6.16,6.17,6.17,6.18,6.16,55.77,56.03,56.14,56.24,56.31,56.39,56.45,56.52,56.64,25.990000000000002,25.59,25.400000000000002,25.19,25,24.8,24.61,24.42,24.03,N/A,N/A -2012,9,21,19,30,101470,100310,99190,81.95,0,5.8500000000000005,6.24,6.32,6.3500000000000005,6.37,6.38,6.38,6.38,6.36,61.050000000000004,61.27,61.46,61.64,61.800000000000004,61.95,62.11,62.26,62.59,25.96,25.55,25.36,25.16,24.96,24.77,24.57,24.39,24.01,N/A,N/A -2012,9,21,20,30,101450,100290,99170,84.32000000000001,0,6.5,6.98,7.1000000000000005,7.15,7.19,7.22,7.24,7.26,7.28,71.02,71.13,71.22,71.3,71.37,71.44,71.51,71.58,71.73,26.12,25.71,25.53,25.330000000000002,25.13,24.94,24.75,24.560000000000002,24.18,N/A,N/A -2012,9,21,21,30,101460,100310,99190,81.62,0,7.05,7.62,7.75,7.82,7.87,7.9,7.930000000000001,7.94,7.96,83.15,83.3,83.37,83.45,83.53,83.60000000000001,83.69,83.76,83.94,26.52,26.14,25.96,25.75,25.560000000000002,25.37,25.18,24.990000000000002,24.61,N/A,N/A -2012,9,21,22,30,101410,100260,99140,80.04,0,6.36,6.84,6.94,6.98,7,7,7,6.99,6.97,92.63,92.66,92.74,92.82000000000001,92.89,92.96000000000001,93.04,93.10000000000001,93.26,26.77,26.400000000000002,26.22,26.02,25.830000000000002,25.64,25.45,25.26,24.88,N/A,N/A -2012,9,21,23,30,101410,100260,99150,79.35000000000001,0,5.0600000000000005,5.39,5.45,5.48,5.49,5.5,5.5,5.49,5.47,105.11,105.39,105.42,105.41,105.38,105.33,105.27,105.21000000000001,105.07000000000001,26.96,26.61,26.43,26.23,26.04,25.85,25.650000000000002,25.47,25.080000000000002,N/A,N/A -2012,9,22,0,30,101430,100270,99160,80.65,0,6.08,6.53,6.63,6.67,6.69,6.7,6.7,6.7,6.68,99.02,99.01,98.92,98.81,98.7,98.58,98.46000000000001,98.34,98.07000000000001,26.84,26.48,26.3,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A -2012,9,22,1,30,101450,100300,99180,79.28,0,5.71,6.12,6.19,6.23,6.25,6.26,6.26,6.26,6.25,98.17,98.12,98.09,98.07000000000001,98.04,98.02,98.01,98.01,98,26.82,26.46,26.29,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A -2012,9,22,2,30,101470,100320,99200,80.04,0,5.34,5.71,5.78,5.82,5.84,5.8500000000000005,5.8500000000000005,5.86,5.8500000000000005,98.63,98.55,98.55,98.56,98.56,98.56,98.56,98.56,98.54,26.78,26.42,26.240000000000002,26.04,25.85,25.66,25.46,25.28,24.89,N/A,N/A -2012,9,22,3,30,101480,100330,99210,80.83,0,6.05,6.5200000000000005,6.640000000000001,6.7,6.74,6.7700000000000005,6.79,6.8100000000000005,6.84,107.47,107.49000000000001,107.5,107.51,107.53,107.55,107.57000000000001,107.59,107.65,26.82,26.46,26.28,26.080000000000002,25.89,25.69,25.5,25.310000000000002,24.93,N/A,N/A -2012,9,22,4,30,101450,100300,99180,82.46000000000001,0,4.55,4.86,4.93,4.97,4.99,5.01,5.03,5.04,5.0600000000000005,125.38000000000001,125.74000000000001,125.96000000000001,126.17,126.36,126.54,126.73,126.89,127.25,26.740000000000002,26.38,26.21,26.01,25.82,25.62,25.43,25.240000000000002,24.86,N/A,N/A -2012,9,22,5,30,101490,100340,99220,81.18,0,5.14,5.51,5.58,5.63,5.66,5.67,5.69,5.7,5.71,125.60000000000001,125.8,125.87,125.93,126,126.06,126.12,126.17,126.29,26.87,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A -2012,9,22,6,30,101500,100350,99230,79.23,0,4.49,4.7700000000000005,4.82,4.8500000000000005,4.86,4.87,4.88,4.88,4.87,128.35,128.54,128.63,128.71,128.79,128.86,128.92000000000002,128.98,129.11,26.86,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.98,N/A,N/A -2012,9,22,7,30,101520,100370,99250,79.86,0,3.8200000000000003,4.08,4.14,4.17,4.2,4.22,4.24,4.25,4.28,136.46,136.93,137.14000000000001,137.33,137.53,137.71,137.9,138.07,138.43,26.89,26.54,26.36,26.16,25.97,25.78,25.59,25.400000000000002,25.01,N/A,N/A -2012,9,22,8,30,101540,100390,99280,80.10000000000001,0,4.1,4.37,4.43,4.47,4.5,4.51,4.53,4.54,4.5600000000000005,131.99,132.32,132.56,132.79,133,133.21,133.43,133.64000000000001,134.1,26.89,26.53,26.36,26.16,25.97,25.78,25.59,25.400000000000002,25.02,N/A,N/A -2012,9,22,9,30,101560,100400,99290,81.33,0,3.68,3.87,3.89,3.89,3.89,3.88,3.86,3.85,3.8200000000000003,153.69,153.17000000000002,152.98,152.8,152.63,152.47,152.3,152.15,151.81,26.87,26.52,26.34,26.150000000000002,25.96,25.77,25.57,25.38,25,N/A,N/A -2012,9,22,10,30,101600,100450,99330,78.73,0,3.71,3.93,3.96,3.98,3.99,3.99,4,4,3.99,134.43,134.47,134.55,134.63,134.69,134.75,134.81,134.85,134.97,26.91,26.560000000000002,26.39,26.19,26,25.810000000000002,25.61,25.42,25.04,N/A,N/A -2012,9,22,11,30,101640,100480,99360,79.99,0,3.84,4.04,4.07,4.08,4.08,4.08,4.07,4.0600000000000005,4.03,132.49,132.5,132.51,132.52,132.52,132.52,132.52,132.52,132.51,26.84,26.490000000000002,26.310000000000002,26.11,25.92,25.73,25.53,25.35,24.96,N/A,N/A -2012,9,22,12,30,101660,100500,99390,79.56,0,2.67,2.82,2.84,2.86,2.87,2.89,2.9,2.9,2.91,114.44,115.01,115.34,115.65,115.93,116.18,116.43,116.65,117.11,26.810000000000002,26.47,26.3,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.94,N/A,N/A -2012,9,22,13,30,101700,100550,99430,80.41,0,2.49,2.61,2.63,2.65,2.66,2.66,2.66,2.66,2.67,105.53,106.24000000000001,106.65,107.02,107.34,107.64,107.93,108.2,108.74000000000001,26.77,26.42,26.25,26.05,25.86,25.67,25.47,25.28,24.900000000000002,N/A,N/A -2012,9,22,14,30,101760,100600,99480,79.07000000000001,0,2.15,2.24,2.25,2.25,2.25,2.24,2.24,2.24,2.23,90.51,91.16,91.65,92.13,92.57000000000001,92.99,93.43,93.85000000000001,94.68,26.8,26.46,26.29,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A -2012,9,22,15,30,101770,100620,99500,80.60000000000001,0,2.67,2.7800000000000002,2.79,2.79,2.79,2.7800000000000002,2.77,2.77,2.75,70.74,71.13,71.39,71.64,71.86,72.06,72.27,72.48,72.87,26.79,26.44,26.26,26.060000000000002,25.87,25.68,25.490000000000002,25.3,24.92,N/A,N/A -2012,9,22,16,30,101790,100630,99510,79.71000000000001,0,3.31,3.47,3.49,3.5,3.5,3.5,3.5,3.49,3.48,66.73,67.12,67.28,67.45,67.61,67.77,67.93,68.08,68.41,26.88,26.52,26.34,26.14,25.95,25.76,25.560000000000002,25.37,24.990000000000002,N/A,N/A -2012,9,22,17,30,101790,100630,99510,79.51,0,3.52,3.71,3.74,3.74,3.75,3.75,3.74,3.74,3.73,70.92,70.94,71,71.06,71.11,71.16,71.22,71.28,71.38,26.93,26.57,26.39,26.19,26,25.810000000000002,25.61,25.43,25.04,N/A,N/A -2012,9,22,18,30,101780,100630,99510,80.03,0,3.73,3.92,3.94,3.95,3.95,3.94,3.94,3.93,3.91,81.98,82.01,82,81.99,81.98,81.96000000000001,81.94,81.93,81.92,27.04,26.68,26.5,26.3,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A -2012,9,22,19,30,101790,100640,99520,82.41,0,4.22,4.46,4.5,4.51,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.51,4.49,105.44,105.57000000000001,105.67,105.79,105.91,106.02,106.15,106.27,106.56,27.080000000000002,26.71,26.53,26.34,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A -2012,9,22,20,30,101760,100610,99490,82.39,0,4.8100000000000005,5.08,5.12,5.13,5.12,5.11,5.08,5.0600000000000005,5,115.85000000000001,116.01,116.05,116.10000000000001,116.16,116.22,116.3,116.39,116.60000000000001,27.07,26.7,26.52,26.330000000000002,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A -2012,9,22,21,30,101750,100600,99480,81.77,0,4.79,5.08,5.13,5.14,5.14,5.13,5.11,5.09,5.04,132.16,132.37,132.41,132.46,132.5,132.54,132.59,132.64000000000001,132.75,27.17,26.82,26.64,26.45,26.26,26.07,25.88,25.7,25.330000000000002,N/A,N/A -2012,9,22,22,30,101750,100600,99480,80.3,0,3.89,4.1,4.13,4.13,4.13,4.11,4.1,4.08,4.03,137.34,137.42000000000002,137.43,137.45000000000002,137.47,137.48,137.49,137.5,137.5,27.21,26.88,26.71,26.51,26.330000000000002,26.14,25.95,25.77,25.400000000000002,N/A,N/A -2012,9,22,23,30,101750,100590,99480,81.22,0,3.69,3.9,3.92,3.92,3.92,3.91,3.9,3.88,3.85,146.25,146.43,146.46,146.51,146.56,146.61,146.66,146.69,146.8,27.17,26.830000000000002,26.66,26.47,26.28,26.09,25.900000000000002,25.72,25.34,N/A,N/A -2012,9,23,0,30,101750,100600,99480,80.91,0,4,4.22,4.26,4.26,4.26,4.25,4.24,4.22,4.18,155.75,155.81,155.86,155.92000000000002,155.97,156.02,156.07,156.12,156.23,27.14,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.68,25.3,N/A,N/A -2012,9,23,1,30,101770,100620,99500,80.47,0,3.47,3.64,3.66,3.66,3.66,3.65,3.63,3.62,3.58,156.87,156.91,156.94,156.98,157.02,157.07,157.1,157.14000000000001,157.21,27.11,26.78,26.61,26.42,26.23,26.04,25.85,25.66,25.29,N/A,N/A -2012,9,23,2,30,101780,100630,99510,79.07000000000001,0,3.34,3.52,3.54,3.54,3.54,3.54,3.52,3.5100000000000002,3.48,152.4,152.35,152.34,152.31,152.29,152.25,152.19,152.13,151.93,27.14,26.810000000000002,26.63,26.44,26.25,26.07,25.87,25.69,25.32,N/A,N/A -2012,9,23,3,30,101800,100640,99520,76.61,0,3.74,3.96,3.99,4,4,4,3.99,3.99,3.97,162.4,162.34,162.25,162.16,162.06,161.97,161.86,161.76,161.49,27.240000000000002,26.91,26.740000000000002,26.55,26.36,26.18,25.98,25.8,25.43,N/A,N/A -2012,9,23,4,30,101800,100640,99520,75.25,0,3.63,3.84,3.87,3.88,3.88,3.88,3.88,3.87,3.86,165.12,164.96,164.88,164.79,164.71,164.63,164.53,164.44,164.18,27.29,26.96,26.8,26.6,26.41,26.23,26.03,25.85,25.48,N/A,N/A -2012,9,23,5,30,101820,100660,99540,78.16,0,2.85,3.02,3.06,3.08,3.09,3.1,3.1,3.11,3.12,153.21,153.31,153.35,153.38,153.4,153.42000000000002,153.43,153.43,153.43,27.14,26.810000000000002,26.64,26.44,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,9,23,6,30,101860,100700,99580,77.62,0,2.88,3.0100000000000002,3.02,3.0300000000000002,3.0300000000000002,3.02,3.02,3.02,3.0100000000000002,154.56,154.4,154.24,154.08,153.92000000000002,153.75,153.57,153.38,152.95000000000002,27.14,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A -2012,9,23,7,30,101880,100720,99600,78.39,0,2.07,2.15,2.17,2.18,2.19,2.19,2.19,2.19,2.2,161.33,161.06,160.86,160.66,160.45000000000002,160.25,160.03,159.81,159.34,27.060000000000002,26.72,26.55,26.35,26.16,25.97,25.77,25.59,25.21,N/A,N/A -2012,9,23,8,30,101890,100740,99610,79.43,0,1.75,1.82,1.83,1.83,1.83,1.83,1.83,1.83,1.83,159.54,159.37,159.25,159.13,159.01,158.89000000000001,158.75,158.61,158.28,27.01,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A -2012,9,23,9,30,101920,100770,99650,80.02,0,1.44,1.5,1.51,1.52,1.53,1.54,1.54,1.55,1.57,150.84,150.28,150.05,149.79,149.55,149.33,149.09,148.84,148.28,26.990000000000002,26.650000000000002,26.48,26.28,26.09,25.900000000000002,25.71,25.52,25.14,N/A,N/A -2012,9,23,10,30,101930,100780,99660,79.76,0,1.37,1.43,1.44,1.44,1.45,1.45,1.46,1.46,1.47,131.74,131.75,131.79,131.82,131.85,131.87,131.86,131.85,131.77,26.98,26.64,26.47,26.27,26.080000000000002,25.89,25.7,25.51,25.13,N/A,N/A -2012,9,23,11,30,101960,100800,99680,78.06,0,1.2,1.26,1.27,1.28,1.29,1.3,1.31,1.32,1.34,111.32000000000001,110.97,110.88,110.82000000000001,110.76,110.68,110.61,110.55,110.46000000000001,27.01,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A -2012,9,23,12,30,101990,100830,99710,77.34,0,1.8800000000000001,1.96,1.97,1.97,1.97,1.97,1.97,1.97,1.97,107.28,107.10000000000001,107.03,106.97,106.91,106.85000000000001,106.78,106.72,106.63,27.01,26.67,26.5,26.3,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A -2012,9,23,13,30,102010,100850,99730,77.23,0,1.86,1.95,1.96,1.97,1.98,1.99,1.99,2,2.0100000000000002,87.39,87.73,88.03,88.34,88.59,88.81,89.04,89.27,89.68,26.97,26.63,26.46,26.26,26.07,25.88,25.68,25.5,25.12,N/A,N/A -2012,9,23,14,30,102040,100880,99760,77.18,0,1.8900000000000001,1.97,1.98,1.98,1.99,1.99,1.99,1.99,1.99,87.04,87.23,87.31,87.39,87.46000000000001,87.54,87.64,87.73,87.92,26.97,26.63,26.46,26.26,26.07,25.88,25.68,25.5,25.11,N/A,N/A -2012,9,23,15,30,102080,100920,99790,78.28,0,2.31,2.42,2.44,2.44,2.45,2.46,2.46,2.47,2.47,97.94,97.76,97.75,97.73,97.71000000000001,97.69,97.67,97.64,97.62,26.98,26.63,26.46,26.26,26.07,25.87,25.68,25.490000000000002,25.11,N/A,N/A -2012,9,23,16,30,102050,100890,99770,76.86,0,2.15,2.25,2.2600000000000002,2.27,2.27,2.2800000000000002,2.2800000000000002,2.2800000000000002,2.29,95.16,95.48,95.58,95.68,95.78,95.86,95.98,96.09,96.31,27.04,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A -2012,9,23,17,30,102060,100900,99780,76.31,0,2.39,2.5100000000000002,2.5300000000000002,2.54,2.5500000000000003,2.56,2.57,2.58,2.59,77.52,77.74,77.82000000000001,77.9,77.98,78.05,78.13,78.2,78.35000000000001,27.14,26.78,26.6,26.400000000000002,26.21,26.02,25.82,25.64,25.25,N/A,N/A -2012,9,23,18,30,102060,100900,99780,76.01,0,2.67,2.8000000000000003,2.82,2.83,2.84,2.84,2.85,2.85,2.85,110.97,110.7,110.56,110.41,110.28,110.15,110.01,109.88,109.62,27.22,26.86,26.68,26.48,26.28,26.09,25.900000000000002,25.71,25.330000000000002,N/A,N/A -2012,9,23,19,30,102040,100880,99760,76.64,0,2.7800000000000002,2.9,2.91,2.92,2.92,2.92,2.92,2.91,2.9,109.07000000000001,108.56,108.14,107.71000000000001,107.34,106.98,106.61,106.27,105.58,27.25,26.89,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A -2012,9,23,20,30,102010,100850,99730,76.45,0,2.42,2.52,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.52,2.52,2.5100000000000002,2.5100000000000002,100.61,100.03,99.69,99.36,99.07000000000001,98.81,98.57000000000001,98.35000000000001,97.97,27.28,26.92,26.740000000000002,26.54,26.34,26.16,25.96,25.77,25.39,N/A,N/A -2012,9,23,21,30,102000,100840,99720,78.45,0,3.92,4.11,4.14,4.14,4.13,4.12,4.11,4.1,4.07,145.72,145.51,145.34,145.18,145.03,144.9,144.78,144.66,144.41,27.3,26.94,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A -2012,9,23,22,30,102000,100850,99720,78.61,0,4.36,4.63,4.68,4.71,4.72,4.73,4.74,4.74,4.75,149.76,149.8,149.87,149.95000000000002,150.02,150.11,150.19,150.27,150.46,27.28,26.93,26.76,26.560000000000002,26.37,26.18,25.990000000000002,25.8,25.43,N/A,N/A -2012,9,23,23,30,101990,100840,99720,80.43,0,4.2,4.46,4.5200000000000005,4.54,4.5600000000000005,4.57,4.57,4.58,4.58,157.65,157.72,157.78,157.85,157.91,157.96,158.03,158.09,158.22,27.21,26.87,26.7,26.5,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A -2012,9,24,0,30,102000,100840,99720,80.59,0,3.33,3.52,3.5500000000000003,3.5700000000000003,3.58,3.59,3.6,3.6,3.61,156.44,156.55,156.53,156.53,156.53,156.54,156.56,156.57,156.6,27.17,26.830000000000002,26.650000000000002,26.45,26.27,26.080000000000002,25.88,25.7,25.32,N/A,N/A -2012,9,24,1,30,101980,100820,99700,79.88,0,3.0700000000000003,3.23,3.25,3.25,3.25,3.25,3.24,3.23,3.22,173.9,173.5,173.28,173.06,172.86,172.67000000000002,172.46,172.25,171.73,27.14,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.86,25.68,25.3,N/A,N/A -2012,9,24,2,30,102020,100860,99740,79.42,0,3.36,3.5300000000000002,3.56,3.5700000000000003,3.58,3.58,3.58,3.58,3.58,177.59,177.47,177.31,177.14000000000001,176.99,176.82,176.64000000000001,176.45000000000002,175.97,27.22,26.89,26.71,26.52,26.330000000000002,26.14,25.95,25.77,25.39,N/A,N/A -2012,9,24,3,30,102010,100850,99730,81.03,0,4.67,4.98,5.04,5.07,5.09,5.11,5.12,5.12,5.13,171.71,171.58,171.48,171.38,171.29,171.19,171.1,171,170.8,27.18,26.830000000000002,26.650000000000002,26.45,26.27,26.080000000000002,25.88,25.69,25.32,N/A,N/A -2012,9,24,4,30,101980,100830,99710,82.19,0,3.98,4.21,4.25,4.26,4.2700000000000005,4.2700000000000005,4.2700000000000005,4.26,4.25,171.24,171.02,170.9,170.78,170.67000000000002,170.55,170.43,170.3,170.01,27.080000000000002,26.73,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.23,N/A,N/A -2012,9,24,5,30,101990,100830,99710,82.38,0,4.01,4.25,4.29,4.3,4.3100000000000005,4.32,4.32,4.32,4.3100000000000005,170.43,170.32,170.26,170.19,170.13,170.07,169.99,169.91,169.73,27.080000000000002,26.73,26.560000000000002,26.36,26.16,25.98,25.78,25.6,25.22,N/A,N/A -2012,9,24,6,30,102000,100840,99720,83.35000000000001,0,4.75,5.05,5.1000000000000005,5.13,5.14,5.15,5.15,5.15,5.14,172.55,172.52,172.48,172.42000000000002,172.38,172.32,172.27,172.22,172.09,27.07,26.71,26.53,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A -2012,9,24,7,30,102010,100850,99730,83.56,0,4.18,4.45,4.5,4.54,4.5600000000000005,4.57,4.58,4.59,4.6000000000000005,176.53,176.42000000000002,176.37,176.32,176.26,176.21,176.14000000000001,176.07,175.93,27.07,26.71,26.53,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A -2012,9,24,8,30,101990,100830,99710,83.89,0,3.11,3.27,3.31,3.3200000000000003,3.34,3.35,3.35,3.36,3.38,178.98,178.99,178.95000000000002,178.89000000000001,178.84,178.77,178.69,178.61,178.4,27,26.650000000000002,26.47,26.27,26.09,25.900000000000002,25.7,25.52,25.14,N/A,N/A -2012,9,24,9,30,102000,100840,99720,81.97,0,2.92,3.0700000000000003,3.1,3.11,3.12,3.13,3.13,3.13,3.13,167.88,167.95000000000002,168.01,168.07,168.11,168.14000000000001,168.17000000000002,168.19,168.22,27.07,26.72,26.55,26.35,26.16,25.97,25.77,25.580000000000002,25.2,N/A,N/A -2012,9,24,10,30,102000,100840,99720,83.31,0,2.95,3.12,3.16,3.19,3.2,3.22,3.24,3.25,3.2800000000000002,170.17000000000002,170.3,170.39000000000001,170.45000000000002,170.51,170.57,170.62,170.66,170.74,26.990000000000002,26.64,26.46,26.26,26.07,25.88,25.68,25.5,25.11,N/A,N/A -2012,9,24,11,30,102000,100840,99720,81.46000000000001,0,3.0100000000000002,3.18,3.22,3.24,3.2600000000000002,3.27,3.2800000000000002,3.29,3.31,164.22,164.08,163.97,163.87,163.79,163.71,163.64000000000001,163.56,163.45000000000002,27.060000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.75,25.57,25.18,N/A,N/A -2012,9,24,12,30,102010,100850,99730,79.69,0,2.81,2.99,3.02,3.0500000000000003,3.08,3.11,3.13,3.15,3.2,173.8,173.25,173.03,172.79,172.54,172.28,171.98,171.68,171.02,27.11,26.77,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.650000000000002,25.26,N/A,N/A -2012,9,24,13,30,102010,100850,99730,81.09,0,2.81,2.97,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.08,3.09,3.1,162.35,162.28,162.28,162.27,162.26,162.24,162.21,162.18,162.11,27,26.64,26.47,26.27,26.080000000000002,25.88,25.69,25.5,25.12,N/A,N/A -2012,9,24,14,30,102030,100870,99750,79.82000000000001,0,2.02,2.13,2.15,2.16,2.17,2.18,2.19,2.2,2.21,145.73,145.54,145.47,145.41,145.35,145.29,145.24,145.19,145.07,27.03,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A -2012,9,24,15,30,102030,100870,99750,79.64,0,2.05,2.15,2.17,2.18,2.19,2.2,2.21,2.22,2.24,133.74,133.72,133.76,133.81,133.85,133.88,133.92000000000002,133.96,134.04,27.03,26.68,26.51,26.310000000000002,26.12,25.92,25.73,25.54,25.16,N/A,N/A -2012,9,24,16,30,102010,100850,99730,79.37,0,2.29,2.4,2.42,2.44,2.44,2.45,2.45,2.46,2.47,128.43,128.57,128.63,128.69,128.76,128.83,128.88,128.92000000000002,129.04,27.060000000000002,26.7,26.52,26.330000000000002,26.13,25.94,25.75,25.560000000000002,25.18,N/A,N/A -2012,9,24,17,30,101980,100820,99700,78,0,2.82,2.96,2.98,3,3.0100000000000002,3.0100000000000002,3.02,3.02,3.02,127.22,127.54,127.72,127.88000000000001,128.03,128.17000000000002,128.31,128.45,128.72,27.17,26.8,26.63,26.42,26.23,26.04,25.84,25.66,25.27,N/A,N/A -2012,9,24,18,30,101950,100790,99670,77.65,0,3.0300000000000002,3.18,3.21,3.22,3.23,3.23,3.24,3.24,3.24,132.92000000000002,133.09,133.21,133.33,133.44,133.55,133.66,133.76,133.97,27.240000000000002,26.86,26.68,26.48,26.29,26.1,25.900000000000002,25.71,25.330000000000002,N/A,N/A -2012,9,24,19,30,101930,100770,99650,76.87,0,3.6,3.7800000000000002,3.81,3.83,3.84,3.85,3.85,3.85,3.85,136.79,136.91,136.97,137.02,137.08,137.13,137.19,137.25,137.36,27.29,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A -2012,9,24,20,30,101890,100730,99610,76.77,0,4.28,4.5600000000000005,4.62,4.65,4.67,4.68,4.69,4.69,4.69,142.37,142.46,142.52,142.57,142.61,142.65,142.68,142.71,142.79,27.36,26.990000000000002,26.810000000000002,26.61,26.41,26.22,26.02,25.84,25.45,N/A,N/A -2012,9,24,21,30,101850,100700,99580,75.32000000000001,0,3.91,4.12,4.16,4.18,4.19,4.21,4.21,4.22,4.23,147.70000000000002,147.89000000000001,147.96,148.05,148.13,148.21,148.29,148.36,148.52,27.37,27.03,26.85,26.650000000000002,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,9,24,22,30,101840,100690,99570,72.83,0,4.53,4.79,4.8500000000000005,4.88,4.9,4.91,4.92,4.93,4.95,150.51,150.67000000000002,150.72,150.75,150.77,150.79,150.8,150.8,150.81,27.48,27.16,26.98,26.79,26.6,26.42,26.22,26.04,25.66,N/A,N/A -2012,9,24,23,30,101810,100660,99540,71.86,0,5.15,5.5200000000000005,5.58,5.6000000000000005,5.61,5.61,5.6000000000000005,5.6000000000000005,5.57,150.29,150.22,150.24,150.28,150.32,150.37,150.41,150.46,150.58,27.57,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.3,26.11,25.73,N/A,N/A -2012,9,25,0,30,101780,100630,99510,66.19,0,5.45,5.87,5.95,6,6.03,6.0600000000000005,6.08,6.09,6.12,155.14000000000001,154.84,154.58,154.32,154.07,153.83,153.59,153.36,152.9,27.79,27.48,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A -2012,9,25,1,30,101790,100640,99520,73.24,0,5.72,6.16,6.24,6.2700000000000005,6.3,6.3100000000000005,6.3100000000000005,6.3100000000000005,6.29,146.4,146.55,146.70000000000002,146.86,147.01,147.15,147.3,147.45000000000002,147.75,27.52,27.18,27.01,26.810000000000002,26.62,26.43,26.240000000000002,26.05,25.67,N/A,N/A -2012,9,25,2,30,101800,100650,99530,68.03,0,6.57,7.11,7.23,7.28,7.3100000000000005,7.33,7.34,7.34,7.32,152.12,152.3,152.41,152.51,152.6,152.69,152.78,152.87,153.05,27.79,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.95,N/A,N/A -2012,9,25,3,30,101790,100640,99520,69.51,0,6.98,7.59,7.71,7.7700000000000005,7.8100000000000005,7.82,7.83,7.83,7.82,156.01,156.14000000000001,156.19,156.25,156.29,156.33,156.38,156.42000000000002,156.51,27.8,27.48,27.310000000000002,27.11,26.92,26.73,26.53,26.35,25.96,N/A,N/A -2012,9,25,4,30,101770,100620,99500,65.87,0,6.98,7.59,7.74,7.82,7.88,7.930000000000001,7.97,8,8.05,160.73,160.81,160.83,160.83,160.83,160.83,160.82,160.81,160.78,27.91,27.6,27.43,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A -2012,9,25,5,30,101770,100610,99490,65.7,0,7.32,7.95,8.09,8.16,8.22,8.25,8.28,8.3,8.33,161.17000000000002,161.36,161.5,161.64000000000001,161.76,161.89000000000001,162.01,162.12,162.37,27.94,27.63,27.46,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,9,25,6,30,101760,100610,99490,65.28,0,7.32,8.02,8.19,8.28,8.36,8.41,8.45,8.49,8.55,167.4,167.54,167.61,167.66,167.71,167.76,167.79,167.83,167.91,28.05,27.76,27.6,27.41,27.22,27.03,26.84,26.650000000000002,26.27,N/A,N/A -2012,9,25,7,30,101770,100620,99500,71.39,0,7.5,8.22,8.38,8.46,8.51,8.55,8.57,8.58,8.58,169.41,169.53,169.62,169.72,169.82,169.93,170.03,170.13,170.35,27.830000000000002,27.52,27.36,27.16,26.97,26.78,26.580000000000002,26.39,26.01,N/A,N/A -2012,9,25,8,30,101750,100600,99480,68.11,0,6.3,6.92,7.0600000000000005,7.15,7.22,7.28,7.32,7.36,7.42,180.5,179.88,179.66,179.45000000000002,179.27,179.09,178.93,178.78,178.48,27.990000000000002,27.69,27.52,27.32,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A -2012,9,25,9,30,101750,100600,99480,72.17,0,7,7.66,7.79,7.87,7.930000000000001,7.96,7.99,8.01,8.02,172.70000000000002,172.67000000000002,172.73,172.82,172.9,172.99,173.08,173.16,173.34,27.84,27.53,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.01,N/A,N/A -2012,9,25,10,30,101730,100580,99460,71.22,0,6.45,6.98,7.1000000000000005,7.17,7.21,7.25,7.28,7.3100000000000005,7.3500000000000005,178.1,178.09,177.95000000000002,177.78,177.6,177.42000000000002,177.24,177.06,176.68,27.79,27.48,27.32,27.12,26.94,26.75,26.560000000000002,26.37,25.990000000000002,N/A,N/A -2012,9,25,11,30,101730,100570,99460,74.27,0,6.34,6.94,7.08,7.17,7.23,7.28,7.32,7.3500000000000005,7.390000000000001,172.99,172.57,172.41,172.28,172.18,172.08,172.01,171.94,171.81,27.7,27.37,27.2,27,26.810000000000002,26.62,26.42,26.23,25.84,N/A,N/A -2012,9,25,12,30,101730,100580,99460,76.51,0,6.3100000000000005,6.88,7.0200000000000005,7.1000000000000005,7.17,7.21,7.25,7.28,7.33,167.77,168.05,168.27,168.47,168.65,168.82,168.98,169.13,169.44,27.61,27.28,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.76,N/A,N/A -2012,9,25,13,30,101750,100590,99480,76.19,0,6.19,6.73,6.86,6.94,6.99,7.04,7.07,7.1000000000000005,7.15,171.66,171.47,171.39000000000001,171.32,171.26,171.21,171.17000000000002,171.12,171.05,27.52,27.19,27.02,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.66,N/A,N/A -2012,9,25,14,30,101770,100620,99500,75.72,0,5.95,6.42,6.53,6.58,6.62,6.640000000000001,6.66,6.68,6.7,170.33,170.46,170.49,170.51,170.52,170.54,170.55,170.56,170.57,27.61,27.28,27.11,26.92,26.73,26.54,26.34,26.16,25.78,N/A,N/A -2012,9,25,15,30,101770,100610,99500,75.49,0,5.44,5.83,5.9,5.93,5.95,5.97,5.98,5.98,6,174.33,173.51,173.03,172.52,172.06,171.62,171.17000000000002,170.76,169.91,27.650000000000002,27.32,27.150000000000002,26.96,26.77,26.580000000000002,26.38,26.2,25.82,N/A,N/A -2012,9,25,16,30,101750,100600,99480,76.59,0,6.22,6.65,6.72,6.74,6.74,6.74,6.72,6.7,6.66,158.54,159.20000000000002,159.56,159.9,160.20000000000002,160.47,160.75,161.02,161.53,27.61,27.27,27.1,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.76,N/A,N/A -2012,9,25,17,30,101750,100590,99480,77.32000000000001,0,5.29,5.74,5.84,5.91,5.96,6,6.03,6.05,6.09,163.16,163.15,163.12,163.09,163.05,163.01,162.98,162.94,162.86,27.650000000000002,27.310000000000002,27.14,26.94,26.75,26.560000000000002,26.37,26.18,25.8,N/A,N/A -2012,9,25,18,30,101720,100570,99450,76.7,0,4.89,5.26,5.36,5.42,5.47,5.5,5.53,5.5600000000000005,5.6000000000000005,159.56,160.28,160.55,160.78,160.97,161.14000000000001,161.28,161.41,161.64000000000001,27.72,27.39,27.22,27.02,26.830000000000002,26.64,26.45,26.26,25.88,N/A,N/A -2012,9,25,19,30,101700,100550,99430,73.57000000000001,0,5.94,6.390000000000001,6.48,6.5200000000000005,6.55,6.57,6.58,6.59,6.6000000000000005,158.09,158.16,158.14000000000001,158.1,158.07,158.02,157.98,157.94,157.86,27.79,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,9,25,20,30,101660,100510,99390,74.33,0,5.61,6.07,6.18,6.24,6.3,6.33,6.37,6.390000000000001,6.44,156.42000000000002,156.3,156.20000000000002,156.1,156.01,155.91,155.82,155.73,155.55,27.79,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.95,N/A,N/A -2012,9,25,21,30,101640,100490,99380,75.47,0,6.67,7.24,7.3500000000000005,7.4,7.44,7.45,7.46,7.46,7.46,151.05,150.93,150.85,150.77,150.69,150.62,150.55,150.48,150.36,27.740000000000002,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.900000000000002,N/A,N/A -2012,9,25,22,30,101630,100480,99370,76.21000000000001,0,7.34,7.96,8.08,8.14,8.17,8.18,8.18,8.18,8.15,151.76,151.62,151.51,151.38,151.26,151.15,151.03,150.92000000000002,150.69,27.71,27.39,27.21,27.02,26.830000000000002,26.63,26.44,26.25,25.87,N/A,N/A -2012,9,25,23,30,101600,100450,99330,74.98,0,6.69,7.29,7.44,7.53,7.6000000000000005,7.640000000000001,7.68,7.71,7.76,144.18,144.08,144.08,144.08,144.07,144.07,144.06,144.05,144.03,27.63,27.3,27.13,26.93,26.740000000000002,26.55,26.35,26.16,25.78,N/A,N/A -2012,9,26,0,30,101580,100430,99320,77.11,0,7.34,8,8.17,8.26,8.33,8.38,8.42,8.45,8.49,140.73,140.88,140.99,141.09,141.17000000000002,141.26,141.33,141.41,141.56,27.53,27.19,27.02,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.67,N/A,N/A -2012,9,26,1,30,101580,100430,99320,78.35000000000001,0,8.22,8.94,9.09,9.17,9.22,9.25,9.27,9.27,9.26,141.19,141.39000000000001,141.52,141.65,141.77,141.88,142,142.1,142.32,27.46,27.11,26.93,26.73,26.54,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,9,26,2,30,101580,100430,99310,77.01,0,8.18,8.89,9.06,9.15,9.21,9.25,9.28,9.3,9.33,140.42000000000002,140.74,140.87,140.97,141.05,141.12,141.17000000000002,141.22,141.29,27.39,27.04,26.87,26.67,26.47,26.28,26.09,25.900000000000002,25.51,N/A,N/A -2012,9,26,3,30,101570,100420,99310,76.39,0,7.92,8.68,8.870000000000001,8.99,9.08,9.15,9.200000000000001,9.25,9.32,143.69,143.71,143.73,143.75,143.77,143.79,143.8,143.83,143.87,27.46,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A -2012,9,26,4,30,101550,100400,99280,79.12,0,8.39,9.16,9.35,9.46,9.540000000000001,9.6,9.64,9.68,9.73,136.43,136.65,136.82,136.98,137.13,137.27,137.4,137.54,137.8,27.330000000000002,26.97,26.8,26.6,26.41,26.21,26.02,25.830000000000002,25.45,N/A,N/A -2012,9,26,5,30,101550,100400,99280,78.3,0,8.17,9.02,9.22,9.35,9.44,9.51,9.56,9.6,9.66,148.03,147.84,147.75,147.68,147.62,147.56,147.5,147.46,147.37,27.47,27.13,26.95,26.75,26.560000000000002,26.36,26.16,25.98,25.59,N/A,N/A -2012,9,26,6,30,101570,100420,99310,77.37,0,8.23,8.950000000000001,9.120000000000001,9.19,9.23,9.25,9.26,9.26,9.24,153.1,153.1,153.06,153.01,152.96,152.91,152.86,152.8,152.70000000000002,27.47,27.14,26.97,26.77,26.580000000000002,26.38,26.19,26,25.62,N/A,N/A -2012,9,26,7,30,101610,100450,99340,77.57000000000001,0,7.2700000000000005,7.96,8.14,8.25,8.33,8.39,8.44,8.48,8.55,143.58,143.91,144.13,144.34,144.54,144.73,144.92000000000002,145.1,145.46,27.53,27.2,27.03,26.82,26.63,26.45,26.25,26.060000000000002,25.68,N/A,N/A -2012,9,26,8,30,101570,100420,99310,79.49,0,7.86,8.59,8.76,8.85,8.91,8.94,8.96,8.98,8.98,154.53,154.96,155.14000000000001,155.3,155.44,155.56,155.68,155.79,155.99,27.41,27.07,26.900000000000002,26.7,26.51,26.32,26.12,25.94,25.55,N/A,N/A -2012,9,26,9,30,101590,100430,99320,76.25,0,6.67,7.25,7.390000000000001,7.47,7.53,7.57,7.6000000000000005,7.63,7.67,151.12,151.29,151.41,151.52,151.63,151.72,151.81,151.89000000000001,152.05,27.43,27.09,26.91,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A -2012,9,26,10,30,101610,100460,99350,77.78,0,7.41,8.05,8.19,8.27,8.33,8.370000000000001,8.39,8.41,8.44,147.22,147.70000000000002,147.92000000000002,148.13,148.31,148.48,148.64000000000001,148.79,149.08,27.38,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.51,N/A,N/A -2012,9,26,11,30,101630,100470,99360,78.59,0,6.97,7.57,7.71,7.79,7.84,7.88,7.9,7.92,7.94,145.53,145.73,145.9,146.08,146.25,146.41,146.57,146.74,147.08,27.28,26.93,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A -2012,9,26,12,30,101610,100460,99340,77.02,0,6.58,7.140000000000001,7.25,7.3100000000000005,7.34,7.3500000000000005,7.36,7.36,7.3500000000000005,162.08,161.66,161.48,161.31,161.17000000000002,161.05,160.93,160.81,160.6,27.560000000000002,27.23,27.060000000000002,26.85,26.67,26.48,26.28,26.09,25.71,N/A,N/A -2012,9,26,13,30,101640,100490,99370,76.63,0,6.72,7.29,7.42,7.48,7.51,7.54,7.55,7.5600000000000005,7.5600000000000005,155.55,155.37,155.27,155.19,155.12,155.05,154.99,154.94,154.85,27.560000000000002,27.240000000000002,27.07,26.88,26.69,26.5,26.310000000000002,26.13,25.75,N/A,N/A -2012,9,26,14,30,101670,100520,99410,76.60000000000001,0,5.8100000000000005,6.2700000000000005,6.37,6.42,6.46,6.49,6.5,6.5200000000000005,6.53,148.58,148.77,148.93,149.09,149.23,149.37,149.51,149.64000000000001,149.91,27.580000000000002,27.25,27.080000000000002,26.89,26.7,26.51,26.310000000000002,26.13,25.75,N/A,N/A -2012,9,26,15,30,101700,100540,99430,77.97,0,7,7.63,7.7700000000000005,7.84,7.890000000000001,7.92,7.94,7.96,7.96,145.77,145.63,145.6,145.58,145.56,145.54,145.52,145.51,145.49,27.560000000000002,27.23,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A -2012,9,26,16,30,101700,100550,99430,77.66,0,5.8500000000000005,6.3100000000000005,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.58,146.07,146.52,146.75,146.96,147.13,147.28,147.42000000000002,147.55,147.78,27.61,27.28,27.11,26.92,26.73,26.53,26.34,26.150000000000002,25.77,N/A,N/A -2012,9,26,17,30,101680,100530,99410,75.02,0,5.21,5.67,5.8,5.9,5.97,6.03,6.08,6.13,6.21,147.38,147.78,148.07,148.33,148.53,148.70000000000002,148.85,148.98,149.22,27.59,27.26,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A -2012,9,26,18,30,101690,100540,99430,74.95,0,6.83,7.42,7.55,7.61,7.66,7.68,7.69,7.7,7.69,146.34,146.43,146.52,146.62,146.70000000000002,146.79,146.88,146.96,147.12,27.77,27.45,27.28,27.07,26.89,26.69,26.5,26.310000000000002,25.92,N/A,N/A -2012,9,26,19,30,101690,100530,99420,74.11,0,6.83,7.42,7.55,7.62,7.67,7.7,7.72,7.74,7.75,146.28,146.23,146.18,146.13,146.08,146.04,146,145.97,145.9,27.68,27.36,27.19,26.990000000000002,26.8,26.61,26.42,26.23,25.85,N/A,N/A -2012,9,26,20,30,101650,100500,99380,71.82000000000001,0,6.83,7.4,7.5200000000000005,7.59,7.63,7.66,7.68,7.69,7.71,146.18,145.8,145.67000000000002,145.54,145.44,145.34,145.24,145.16,145,27.69,27.36,27.19,26.990000000000002,26.810000000000002,26.61,26.42,26.23,25.85,N/A,N/A -2012,9,26,21,30,101660,100500,99390,74.45,0,7.13,7.73,7.88,7.95,8.01,8.040000000000001,8.07,8.09,8.120000000000001,146.92000000000002,146.85,146.72,146.58,146.46,146.34,146.22,146.1,145.85,27.54,27.21,27.04,26.84,26.650000000000002,26.46,26.26,26.080000000000002,25.69,N/A,N/A -2012,9,26,22,30,101650,100500,99380,76.46000000000001,0,6.92,7.51,7.65,7.73,7.78,7.82,7.8500000000000005,7.87,7.9,143.95000000000002,143.73,143.57,143.41,143.27,143.14000000000001,143.01,142.89000000000001,142.66,27.45,27.11,26.94,26.740000000000002,26.55,26.36,26.16,25.97,25.59,N/A,N/A -2012,9,26,23,30,101650,100500,99380,73.2,0,7.32,7.9,8.01,8.05,8.07,8.08,8.07,8.05,8.01,135.5,135.78,135.97,136.15,136.32,136.47,136.62,136.76,137.04,27.46,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.98,25.6,N/A,N/A -2012,9,27,0,30,101660,100510,99390,72.07000000000001,0,7.67,8.290000000000001,8.42,8.47,8.5,8.51,8.51,8.51,8.48,138.84,138.97,139.05,139.13,139.20000000000002,139.25,139.31,139.36,139.45000000000002,27.38,27.03,26.86,26.66,26.47,26.28,26.080000000000002,25.89,25.51,N/A,N/A -2012,9,27,1,30,101650,100500,99380,68.07000000000001,0,6.88,7.46,7.6000000000000005,7.67,7.72,7.7700000000000005,7.8,7.82,7.87,133.84,134.17000000000002,134.39000000000001,134.6,134.78,134.95,135.11,135.27,135.56,27.46,27.13,26.96,26.76,26.57,26.38,26.18,26,25.62,N/A,N/A -2012,9,27,2,30,101680,100520,99400,72.62,0,7.390000000000001,8.01,8.15,8.22,8.27,8.3,8.32,8.34,8.35,130.92000000000002,131.43,131.73,132.03,132.28,132.53,132.77,133,133.43,27.23,26.88,26.7,26.490000000000002,26.3,26.11,25.91,25.72,25.34,N/A,N/A -2012,9,27,3,30,101680,100520,99400,71.05,0,7.09,7.7,7.84,7.91,7.97,8.01,8.03,8.05,8.08,138.28,138.4,138.41,138.41,138.41,138.4,138.39000000000001,138.39000000000001,138.37,27.240000000000002,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.76,25.37,N/A,N/A -2012,9,27,4,30,101700,100540,99430,71.63,0,7.2700000000000005,7.79,7.9,7.94,7.96,7.97,7.97,7.97,7.95,137.49,137.89000000000001,138.19,138.49,138.76,139.02,139.27,139.51,139.98,27.18,26.84,26.66,26.46,26.27,26.080000000000002,25.88,25.69,25.310000000000002,N/A,N/A -2012,9,27,5,30,101700,100550,99430,72.79,0,5.5200000000000005,6,6.11,6.18,6.23,6.2700000000000005,6.3,6.32,6.3500000000000005,143.41,143.20000000000002,143.11,143.04,142.97,142.91,142.85,142.8,142.69,27.21,26.86,26.69,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A -2012,9,27,6,30,101700,100550,99430,75.45,0,6.0600000000000005,6.6000000000000005,6.72,6.79,6.84,6.88,6.91,6.93,6.96,146.43,146.18,146.09,146.03,145.99,145.95000000000002,145.93,145.92000000000002,145.89000000000001,27.21,26.86,26.68,26.48,26.29,26.09,25.900000000000002,25.71,25.32,N/A,N/A -2012,9,27,7,30,101740,100590,99470,73.43,0,5.6000000000000005,6.01,6.1000000000000005,6.15,6.18,6.2,6.21,6.23,6.24,137.89000000000001,138.16,138.31,138.45000000000002,138.58,138.70000000000002,138.81,138.92000000000002,139.12,27.32,26.98,26.810000000000002,26.61,26.42,26.23,26.04,25.85,25.47,N/A,N/A -2012,9,27,8,30,101770,100610,99490,76.02,0,4.46,4.79,4.89,4.95,5.01,5.05,5.1000000000000005,5.14,5.22,135.15,136.11,136.6,137.02,137.37,137.68,137.97,138.22,138.68,27.330000000000002,27.01,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.900000000000002,25.52,N/A,N/A -2012,9,27,9,30,101780,100620,99510,74.78,0,3.85,4.09,4.14,4.17,4.19,4.21,4.22,4.23,4.25,123.37,123.57000000000001,123.69,123.82000000000001,123.92,124.02,124.11,124.2,124.36,27.43,27.11,26.94,26.740000000000002,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A -2012,9,27,10,30,101770,100610,99500,78.10000000000001,0,4.28,4.5200000000000005,4.5600000000000005,4.58,4.59,4.59,4.59,4.6000000000000005,4.6000000000000005,87.88,88.89,89.73,90.62,91.43,92.22,93.02,93.78,95.4,27.38,27.05,26.89,26.69,26.5,26.310000000000002,26.12,25.94,25.560000000000002,N/A,N/A -2012,9,27,11,30,101770,100620,99500,78.24,0,3.9,4.11,4.15,4.17,4.17,4.17,4.17,4.17,4.16,108.94,109.16,109.3,109.43,109.54,109.64,109.73,109.82000000000001,110,27.35,27.03,26.85,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,9,27,12,30,101770,100610,99500,78.49,0,2.88,3.06,3.1,3.13,3.14,3.16,3.17,3.19,3.21,95.02,94.96000000000001,95.10000000000001,95.2,95.3,95.4,95.5,95.60000000000001,95.81,27.36,27.03,26.86,26.67,26.48,26.29,26.1,25.91,25.53,N/A,N/A -2012,9,27,13,30,101770,100610,99500,78.34,0,3.33,3.5300000000000002,3.5700000000000003,3.59,3.6,3.62,3.62,3.63,3.64,97.10000000000001,97.45,97.63,97.8,97.96000000000001,98.12,98.28,98.44,98.76,27.36,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,9,27,14,30,101790,100630,99520,79.98,0,3.5500000000000003,3.79,3.86,3.9,3.93,3.96,3.99,4.01,4.05,86.42,86.49,86.53,86.55,86.55,86.55,86.53,86.52,86.47,27.330000000000002,26.990000000000002,26.830000000000002,26.63,26.44,26.240000000000002,26.05,25.86,25.48,N/A,N/A -2012,9,27,15,30,101800,100650,99530,82.87,0,4.47,4.75,4.8,4.82,4.84,4.84,4.84,4.84,4.82,80.24,80.4,80.44,80.48,80.5,80.52,80.54,80.57000000000001,80.60000000000001,27.23,26.89,26.71,26.51,26.32,26.13,25.93,25.75,25.36,N/A,N/A -2012,9,27,16,30,101810,100660,99540,83.88,0,6.17,6.66,6.76,6.79,6.8100000000000005,6.8,6.79,6.78,6.72,65.21000000000001,65.27,65.29,65.3,65.32000000000001,65.32000000000001,65.32000000000001,65.31,65.3,27.27,26.92,26.75,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A -2012,9,27,17,30,101760,100610,99490,84.66,0,6.49,6.93,7,7.0200000000000005,7.0200000000000005,7.01,6.99,6.97,6.91,82.11,81.8,81.57000000000001,81.31,81.05,80.8,80.55,80.31,79.8,27.14,26.78,26.61,26.41,26.22,26.02,25.830000000000002,25.650000000000002,25.27,N/A,N/A -2012,9,27,18,30,101730,100570,99460,80.04,0,5.96,6.4,6.5,6.55,6.58,6.6000000000000005,6.61,6.62,6.62,85.55,85.36,85.29,85.21000000000001,85.12,85.04,84.95,84.86,84.69,27.22,26.87,26.7,26.490000000000002,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A -2012,9,27,19,30,101730,100580,99460,85.67,0,6.17,6.58,6.65,6.67,6.68,6.68,6.67,6.65,6.62,105.39,105.16,104.88,104.62,104.37,104.14,103.91,103.7,103.28,27.07,26.71,26.53,26.330000000000002,26.13,25.94,25.75,25.560000000000002,25.18,N/A,N/A -2012,9,27,20,30,101670,100510,99400,82.81,0,4.67,4.94,4.98,4.99,4.99,4.99,4.98,4.96,4.93,115.28,114.88,114.68,114.46000000000001,114.26,114.05,113.84,113.64,113.15,26.91,26.55,26.38,26.18,25.990000000000002,25.8,25.62,25.43,25.07,N/A,N/A -2012,9,27,21,30,101680,100520,99410,81.37,0,4.19,4.43,4.48,4.5,4.5,4.5,4.5,4.5,4.47,100.86,100.97,101.03,101.09,101.14,101.18,101.22,101.26,101.37,27.09,26.740000000000002,26.57,26.37,26.18,25.990000000000002,25.79,25.61,25.23,N/A,N/A -2012,9,27,22,30,101690,100530,99420,79.44,0,3.54,3.73,3.77,3.7800000000000002,3.79,3.79,3.79,3.79,3.7800000000000002,106.98,107.17,107.21000000000001,107.26,107.32000000000001,107.4,107.47,107.54,107.7,27.2,26.86,26.69,26.490000000000002,26.3,26.11,25.91,25.73,25.35,N/A,N/A -2012,9,27,23,30,101650,100500,99380,79.83,0,4.1,4.3500000000000005,4.41,4.44,4.46,4.47,4.48,4.49,4.5,109.68,109.93,110.01,110.12,110.22,110.32000000000001,110.42,110.52,110.73,27.22,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A -2012,9,28,0,30,101620,100470,99360,77.59,0,3.68,3.9,3.95,3.97,3.99,3.99,4,4.01,4.01,108.69,108.72,108.78,108.84,108.89,108.93,108.98,109.02,109.11,27.32,26.990000000000002,26.82,26.62,26.43,26.240000000000002,26.04,25.86,25.48,N/A,N/A -2012,9,28,1,30,101630,100470,99360,84.37,0,4.21,4.46,4.5200000000000005,4.55,4.57,4.58,4.59,4.59,4.59,113.44,113.16,113.10000000000001,113.04,112.98,112.93,112.87,112.8,112.64,26.95,26.6,26.43,26.23,26.04,25.85,25.66,25.47,25.09,N/A,N/A -2012,9,28,2,30,101630,100470,99350,84.28,0,5.0600000000000005,5.4,5.48,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,5.62,111.43,110.99000000000001,110.81,110.62,110.45,110.28,110.10000000000001,109.93,109.54,26.97,26.62,26.45,26.240000000000002,26.05,25.87,25.67,25.490000000000002,25.11,N/A,N/A -2012,9,28,3,30,101630,100470,99360,79.92,0,4.8,5.1000000000000005,5.16,5.18,5.2,5.2,5.21,5.21,5.2,124.8,124.84,124.88000000000001,124.92,124.95,124.97,125,125.01,125.06,27.12,26.78,26.61,26.41,26.22,26.04,25.84,25.66,25.29,N/A,N/A -2012,9,28,4,30,101600,100450,99330,86.48,0,4.44,4.74,4.8100000000000005,4.86,4.89,4.91,4.93,4.95,4.98,130.38,130.36,130.32,130.29,130.25,130.21,130.16,130.12,130.02,26.94,26.59,26.41,26.21,26.02,25.830000000000002,25.64,25.45,25.080000000000002,N/A,N/A -2012,9,28,5,30,101600,100450,99330,84.84,0,4.86,5.18,5.25,5.28,5.29,5.3,5.3,5.3,5.29,124.96000000000001,125.28,125.41,125.51,125.59,125.67,125.74000000000001,125.8,125.93,27.19,26.85,26.67,26.47,26.28,26.09,25.89,25.7,25.310000000000002,N/A,N/A -2012,9,28,6,30,101630,100480,99360,85.13,0,4.68,5,5.07,5.11,5.13,5.14,5.15,5.16,5.16,155.92000000000002,156.05,155.94,155.8,155.66,155.49,155.31,155.13,154.71,27.19,26.86,26.69,26.490000000000002,26.310000000000002,26.12,25.93,25.740000000000002,25.37,N/A,N/A -2012,9,28,7,30,101660,100510,99390,83.82000000000001,0,4.5200000000000005,4.84,4.92,4.98,5.0200000000000005,5.05,5.08,5.11,5.17,159.13,159.28,159.31,159.35,159.39000000000001,159.45000000000002,159.49,159.54,159.63,27.04,26.7,26.53,26.330000000000002,26.14,25.95,25.77,25.580000000000002,25.21,N/A,N/A -2012,9,28,8,30,101630,100480,99360,83.03,0,4.29,4.57,4.64,4.68,4.7,4.72,4.74,4.75,4.7700000000000005,161.78,162.03,162.16,162.29,162.4,162.5,162.6,162.70000000000002,162.91,27.18,26.830000000000002,26.66,26.46,26.27,26.080000000000002,25.89,25.7,25.32,N/A,N/A -2012,9,28,9,30,101640,100490,99370,82.83,0,4.78,5.19,5.3,5.37,5.41,5.45,5.48,5.5,5.54,195.74,195.58,195.49,195.4,195.31,195.23000000000002,195.14000000000001,195.06,194.87,27.34,27,26.830000000000002,26.63,26.44,26.25,26.060000000000002,25.87,25.490000000000002,N/A,N/A -2012,9,28,10,30,101630,100470,99360,82.13,0,4.1,4.41,4.49,4.54,4.57,4.61,4.63,4.65,4.68,200.73000000000002,199.62,199.11,198.63,198.20000000000002,197.81,197.45000000000002,197.12,196.57,27.44,27.1,26.93,26.73,26.54,26.35,26.16,25.97,25.580000000000002,N/A,N/A -2012,9,28,11,30,101630,100480,99370,80.39,9.5,4.42,5,5.2,5.36,5.5,5.62,5.72,5.79,5.88,188.72,189.87,190.55,191.06,191.35,191.5,191.63,191.74,191.87,27.46,27.16,27.01,26.82,26.64,26.46,26.27,26.09,25.71,N/A,N/A -2012,9,28,12,30,101660,100510,99400,77.57000000000001,7.300000000000001,4.96,5.38,5.48,5.54,5.58,5.6000000000000005,5.61,5.62,5.61,207.58,207.64000000000001,207.74,207.86,207.97,208.08,208.22,208.37,208.65,27.66,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.830000000000002,N/A,N/A -2012,9,28,13,30,101650,100500,99380,81.11,0,4.37,4.68,4.76,4.82,4.88,4.94,5.01,5.08,5.22,241.82,237.71,235.19,232.66,230.4,228.20000000000002,226.05,224.01,220.26,27.25,26.95,26.8,26.63,26.47,26.310000000000002,26.14,25.98,25.66,N/A,N/A -2012,9,28,14,30,101650,100500,99390,77.27,0,5,5.43,5.51,5.55,5.57,5.58,5.58,5.58,5.55,212.6,212.84,212.89000000000001,212.94,212.99,213.05,213.12,213.18,213.34,27.78,27.47,27.3,27.1,26.92,26.73,26.53,26.34,25.96,N/A,N/A -2012,9,28,15,30,101640,100490,99360,89.84,0.4,4.57,4.69,4.66,4.59,4.5,4.41,3.72,3,1.6400000000000001,327.04,326.7,326.52,326.25,325.91,325.53000000000003,323.21,320.81,298.79,25.67,25.28,25.11,24.91,24.72,24.54,24.490000000000002,24.5,24.45,N/A,N/A -2012,9,28,16,30,101650,100490,99370,89.48,33,2.21,2.17,2.1,2,1.78,1.51,1.43,1.4000000000000001,1.83,343.62,340.29,337.87,334.54,325.02,313.26,277.73,238.57,216.08,25.73,25.37,25.2,25.04,24.91,24.8,24.78,24.78,24.68,N/A,N/A -2012,9,28,17,30,101640,100480,99350,90.12,15,2.9,2.57,2.18,1.67,1.23,0.88,0.54,0.33,0.44,28.98,30.240000000000002,31.53,33.8,38.25,43.1,64.93,81.58,168.92000000000002,24.650000000000002,24.35,24.32,24.39,24.43,24.45,24.45,24.44,24.36,N/A,N/A -2012,9,28,18,30,101640,100470,99350,88.03,0,4.24,4.14,4,3.8000000000000003,3.6,3.38,3.13,2.9,2.4,93.63,94.67,95.07000000000001,95.37,95.62,95.83,96.44,97.12,101.28,25.37,24.98,24.810000000000002,24.63,24.46,24.3,24.150000000000002,24.01,23.75,N/A,N/A -2012,9,28,19,30,101570,100420,99300,82.67,0,1.92,1.94,1.93,1.92,1.92,1.92,1.99,2.09,3.12,129.68,134.34,137.45000000000002,141.38,145.89000000000001,151.19,159.52,169.11,190.76,26.310000000000002,25.95,25.79,25.6,25.43,25.26,25.11,24.97,24.85,N/A,N/A -2012,9,28,20,30,101520,100370,99250,82.01,0,3.14,3.33,3.38,3.42,3.45,3.49,3.54,3.59,3.77,138.26,139.55,140.31,141.21,142.18,143.29,144.75,146.29,151.08,26.8,26.44,26.27,26.060000000000002,25.88,25.69,25.51,25.330000000000002,24.98,N/A,N/A -2012,9,28,21,30,101490,100340,99220,80.13,0,2.27,2.5100000000000002,2.63,2.73,2.82,2.91,2.99,3.0700000000000003,3.23,155.24,157.47,158.59,159.58,160.43,161.22,161.95000000000002,162.64000000000001,163.95000000000002,27.330000000000002,27,26.830000000000002,26.64,26.45,26.27,26.080000000000002,25.900000000000002,25.53,N/A,N/A -2012,9,28,22,30,101470,100320,99210,76.68,0,3.75,4.01,4.07,4.1,4.13,4.15,4.16,4.17,4.19,187.92000000000002,188.08,188.19,188.29,188.39000000000001,188.47,188.55,188.64000000000001,188.78,27.69,27.37,27.2,27,26.810000000000002,26.62,26.42,26.23,25.85,N/A,N/A -2012,9,28,23,30,101450,100310,99190,75.79,0,3.83,4.11,4.17,4.2,4.23,4.25,4.26,4.2700000000000005,4.29,176.69,176.92000000000002,177.18,177.42000000000002,177.63,177.82,178.01,178.17000000000002,178.49,27.69,27.38,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A -2012,9,29,0,30,101460,100310,99190,77.91,0,3.6,3.79,3.81,3.8000000000000003,3.79,3.7800000000000002,3.7600000000000002,3.74,3.71,157.84,158.35,158.72,159.12,159.48,159.82,160.16,160.49,161.16,27.57,27.25,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A -2012,9,29,1,30,101440,100290,99170,77.99,0,2.7600000000000002,2.91,2.94,2.95,2.96,2.97,2.98,2.99,3,148.48,149.69,150.36,151.06,151.67000000000002,152.25,152.84,153.4,154.53,27.5,27.18,27.02,26.810000000000002,26.63,26.44,26.240000000000002,26.060000000000002,25.67,N/A,N/A -2012,9,29,2,30,101440,100290,99180,82.24,0,3.63,3.71,3.67,3.6,3.5500000000000003,3.49,3.42,3.37,3.25,150.93,152.12,152.86,153.64000000000001,154.37,155.08,155.81,156.51,157.98,27.26,26.93,26.77,26.580000000000002,26.39,26.21,26.02,25.84,25.47,N/A,N/A -2012,9,29,3,30,101440,100290,99180,82.95,0,3.48,3.62,3.63,3.61,3.6,3.5700000000000003,3.5500000000000003,3.52,3.45,136.97,136.96,136.95000000000002,136.93,136.92000000000002,136.9,136.89000000000001,136.88,136.84,27.14,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.67,25.29,N/A,N/A -2012,9,29,4,30,101410,100260,99150,82.22,0,3.34,3.5300000000000002,3.58,3.6,3.62,3.63,3.65,3.66,3.68,147.84,148.16,148.23,148.31,148.38,148.46,148.55,148.64000000000001,148.85,27.2,26.87,26.7,26.5,26.32,26.13,25.94,25.75,25.37,N/A,N/A -2012,9,29,5,30,101410,100260,99150,84.49,5.1000000000000005,4.54,4.82,4.89,4.93,4.95,4.97,4.98,4.99,5,164.18,164.14000000000001,164.13,164.12,164.13,164.14000000000001,164.16,164.19,164.27,27.14,26.8,26.63,26.43,26.25,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A -2012,9,29,6,30,101400,100250,99130,83.52,0,4.3500000000000005,4.62,4.67,4.69,4.7,4.71,4.71,4.71,4.7,174.41,174.31,174.15,173.99,173.84,173.69,173.54,173.4,173.09,27.2,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.72,25.330000000000002,N/A,N/A -2012,9,29,7,30,101390,100240,99130,82.65,0,4.83,5.19,5.2700000000000005,5.32,5.36,5.38,5.4,5.41,5.43,181.51,181.34,181.26,181.19,181.13,181.09,181.04,181,180.93,27.310000000000002,26.96,26.79,26.59,26.400000000000002,26.21,26.01,25.830000000000002,25.44,N/A,N/A -2012,9,29,8,30,101380,100230,99120,81.13,0,6.99,7.65,7.82,7.92,7.99,8.03,8.06,8.09,8.120000000000001,171.6,171.56,171.57,171.61,171.64000000000001,171.68,171.73,171.77,171.86,27.580000000000002,27.26,27.09,26.89,26.71,26.51,26.32,26.13,25.76,N/A,N/A -2012,9,29,9,30,101370,100220,99110,77.2,0,6.49,7.05,7.18,7.25,7.29,7.32,7.34,7.3500000000000005,7.36,181.19,181.36,181.45000000000002,181.52,181.58,181.63,181.68,181.73,181.82,27.77,27.45,27.28,27.080000000000002,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A -2012,9,29,10,30,101350,100200,99090,76.81,0,6.57,7.16,7.29,7.36,7.41,7.45,7.47,7.49,7.5,188.51,188.26,188.15,188.06,187.98,187.9,187.83,187.76,187.64000000000001,27.78,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,9,29,11,30,101360,100210,99100,73.53,0,6.5200000000000005,7.09,7.22,7.28,7.33,7.3500000000000005,7.37,7.390000000000001,7.4,184.24,184.36,184.32,184.24,184.14000000000001,184.03,183.91,183.79,183.53,27.89,27.59,27.43,27.23,27.04,26.85,26.650000000000002,26.47,26.09,N/A,N/A -2012,9,29,12,30,101350,100210,99090,74.17,0,6.34,6.890000000000001,7.01,7.09,7.140000000000001,7.17,7.19,7.21,7.24,186.77,186.75,186.72,186.67000000000002,186.63,186.58,186.52,186.47,186.36,27.93,27.62,27.46,27.26,27.07,26.89,26.69,26.5,26.12,N/A,N/A -2012,9,29,13,30,101360,100210,99100,72.37,0,5.97,6.53,6.67,6.75,6.8100000000000005,6.8500000000000005,6.890000000000001,6.92,6.96,187.15,186.84,186.72,186.59,186.48,186.36,186.24,186.13,185.89000000000001,28.01,27.72,27.55,27.36,27.17,26.98,26.78,26.6,26.21,N/A,N/A -2012,9,29,14,30,101360,100210,99100,71.06,0,5.5200000000000005,5.99,6.09,6.16,6.2,6.23,6.26,6.28,6.32,176.38,176.77,177.06,177.36,177.65,177.93,178.24,178.52,179.15,28.09,27.8,27.64,27.45,27.26,27.080000000000002,26.89,26.71,26.330000000000002,N/A,N/A -2012,9,29,15,30,101340,100190,99080,69.81,0,5.17,5.61,5.7,5.76,5.8,5.82,5.84,5.86,5.89,172.16,172.94,173.39000000000001,173.79,174.16,174.5,174.83,175.14000000000001,175.73,28.19,27.91,27.75,27.560000000000002,27.38,27.19,27,26.810000000000002,26.44,N/A,N/A -2012,9,29,16,30,101290,100140,99030,66.92,0,5.2,5.6000000000000005,5.68,5.72,5.74,5.75,5.76,5.7700000000000005,5.7700000000000005,167.8,168.06,168.34,168.66,168.96,169.27,169.6,169.91,170.56,28.310000000000002,28.05,27.900000000000002,27.71,27.53,27.34,27.16,26.97,26.6,N/A,N/A -2012,9,29,17,30,101220,100070,98960,66.78,0,5.68,6.16,6.2700000000000005,6.34,6.38,6.41,6.44,6.46,6.49,157.37,157.72,157.94,158.16,158.34,158.51,158.68,158.84,159.14000000000001,28.36,28.1,27.95,27.75,27.57,27.39,27.2,27.01,26.64,N/A,N/A -2012,9,29,18,30,101160,100020,98910,67.85,0,5.3500000000000005,5.76,5.8500000000000005,5.89,5.92,5.94,5.96,5.97,5.99,155.33,155.69,155.99,156.3,156.58,156.86,157.14000000000001,157.4,157.92000000000002,28.330000000000002,28.060000000000002,27.900000000000002,27.71,27.53,27.34,27.150000000000002,26.97,26.59,N/A,N/A -2012,9,29,19,30,101110,99970,98860,70.25,0,5.3500000000000005,5.78,5.87,5.91,5.94,5.96,5.98,5.99,6.01,150.46,150.33,150.3,150.33,150.36,150.42000000000002,150.5,150.58,150.81,28.26,27.990000000000002,27.830000000000002,27.64,27.46,27.27,27.080000000000002,26.900000000000002,26.53,N/A,N/A -2012,9,29,20,30,101060,99920,98810,72.81,0,5.74,6.23,6.34,6.4,6.43,6.46,6.47,6.49,6.5,156.03,156.27,156.41,156.54,156.67000000000002,156.79,156.92000000000002,157.03,157.26,28.240000000000002,27.96,27.8,27.61,27.42,27.23,27.04,26.85,26.48,N/A,N/A -2012,9,29,21,30,101050,99900,98780,89.29,91.9,11.620000000000001,12.59,12.790000000000001,12.88,12.91,12.92,12.9,12.88,12.81,155.47,156.76,157.64000000000001,158.6,159.6,160.59,161.78,162.93,165.76,24.86,24.38,24.2,24.04,23.89,23.75,23.61,23.48,23.2,N/A,N/A -2012,9,29,22,30,101040,99890,98770,87.22,2.9000000000000004,6.8500000000000005,7.33,7.44,7.5,7.53,7.55,7.5600000000000005,7.5600000000000005,7.55,161.41,161.86,162.03,162.19,162.32,162.45000000000002,162.58,162.70000000000002,162.95000000000002,25.18,24.72,24.53,24.32,24.13,23.94,23.740000000000002,23.56,23.19,N/A,N/A -2012,9,29,23,30,100990,99830,98710,83.83,20.5,7.390000000000001,7.94,8.06,8.120000000000001,8.16,8.18,8.19,8.19,8.19,143.43,143.73,143.73,143.72,143.71,143.69,143.67000000000002,143.66,143.6,25.150000000000002,24.69,24.5,24.29,24.09,23.900000000000002,23.71,23.53,23.150000000000002,N/A,N/A -2012,9,30,0,30,100930,99780,98660,91.15,15,7.54,8.3,8.49,8.620000000000001,8.73,8.82,8.91,8.99,9.18,147.84,148.79,149.05,149.26,149.47,149.67000000000002,149.89000000000001,150.08,150.63,24.61,24.13,23.93,23.73,23.54,23.36,23.17,23,22.650000000000002,N/A,N/A -2012,9,30,1,30,100880,99730,98610,88.81,0,8.27,8.89,9.040000000000001,9.1,9.14,9.16,9.17,9.17,9.17,142.47,142.58,142.72,142.87,143.02,143.18,143.36,143.54,143.99,25.400000000000002,24.94,24.740000000000002,24.53,24.34,24.150000000000002,23.95,23.77,23.400000000000002,N/A,N/A -2012,9,30,2,30,100880,99720,98610,90.79,0,9.39,10.11,10.28,10.34,10.38,10.39,10.4,10.41,10.41,138.77,138.99,139.23,139.5,139.78,140.07,140.42000000000002,140.76,141.68,25.29,24.8,24.6,24.39,24.2,24.01,23.82,23.64,23.28,N/A,N/A -2012,9,30,3,30,100840,99690,98580,88.79,0.7000000000000001,9.61,10.51,10.76,10.91,11.02,11.09,11.15,11.200000000000001,11.27,143.56,143.74,143.91,144.08,144.25,144.41,144.58,144.74,145.09,26.29,25.86,25.67,25.45,25.26,25.07,24.87,24.68,24.3,N/A,N/A -2012,9,30,4,30,100750,99610,98500,88.48,0.7000000000000001,11.99,13.200000000000001,13.5,13.66,13.76,13.82,13.85,13.870000000000001,13.870000000000001,163.49,163.78,163.84,163.93,164,164.08,164.17000000000002,164.26,164.47,27.05,26.66,26.47,26.26,26.07,25.87,25.68,25.490000000000002,25.11,N/A,N/A -2012,9,30,5,30,100690,99550,98450,92.17,0,10.38,11.33,11.58,11.71,11.8,11.86,11.9,11.93,11.98,166.95000000000002,167.51,167.85,168.18,168.49,168.79,169.11,169.43,170.17000000000002,27,26.62,26.45,26.25,26.07,25.89,25.71,25.54,25.19,N/A,N/A -2012,9,30,6,30,100550,99420,98320,86.05,7.300000000000001,10.9,12.200000000000001,12.49,12.68,12.82,12.92,13,13.07,13.19,174.5,175.19,175.57,175.93,176.28,176.59,176.92000000000002,177.23,177.88,27.73,27.41,27.240000000000002,27.04,26.85,26.67,26.48,26.3,25.92,N/A,N/A -2012,9,30,7,30,100610,99480,98380,75.18,0,11.38,12.71,13.1,13.36,13.57,13.72,13.84,13.94,14.09,210.86,210.99,211.04,211.11,211.16,211.22,211.27,211.33,211.43,28.740000000000002,28.560000000000002,28.43,28.26,28.09,27.92,27.740000000000002,27.57,27.21,N/A,N/A -2012,9,30,8,30,100600,99460,98360,72.2,0,11.16,12.49,12.89,13.17,13.39,13.55,13.68,13.8,13.98,213.86,213.99,214.03,214.08,214.11,214.14000000000001,214.17000000000002,214.19,214.22,28.8,28.62,28.490000000000002,28.310000000000002,28.14,27.96,27.78,27.6,27.23,N/A,N/A -2012,9,30,9,30,100550,99420,98320,73.55,0,11.52,12.86,13.26,13.52,13.71,13.86,13.97,14.07,14.21,219.67000000000002,219.74,219.79,219.83,219.87,219.9,219.93,219.95000000000002,220,28.71,28.52,28.38,28.2,28.03,27.85,27.67,27.490000000000002,27.12,N/A,N/A -2012,9,30,10,30,100470,99340,98240,79.4,0,11.08,12.4,12.8,13.05,13.24,13.370000000000001,13.47,13.55,13.66,210.65,210.71,210.81,210.89000000000001,210.95000000000002,210.99,211.03,211.06,211.1,28.400000000000002,28.17,28.02,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.71,N/A,N/A -2012,9,30,11,30,100470,99320,98210,86.58,1.8,9.99,10.950000000000001,11.23,11.4,11.53,11.620000000000001,11.700000000000001,11.76,11.86,271.19,270.32,269.87,269.41,269.01,268.62,268.26,267.92,267.24,26.080000000000002,25.66,25.47,25.26,25.07,24.87,24.68,24.5,24.13,N/A,N/A -2012,9,30,12,30,100430,99280,98170,83.46000000000001,0,9.51,10.33,10.540000000000001,10.65,10.72,10.77,10.81,10.83,10.86,268.87,268.87,268.81,268.73,268.66,268.59000000000003,268.5,268.41,268.21,25.69,25.240000000000002,25.04,24.830000000000002,24.63,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,9,30,13,30,100430,99280,98170,80.53,0,9.09,9.88,10.08,10.19,10.26,10.31,10.35,10.38,10.42,265.29,265.19,265.06,264.94,264.82,264.71,264.6,264.49,264.26,25.79,25.34,25.150000000000002,24.94,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A -2012,9,30,14,30,100430,99280,98160,93.52,0,9.44,10.14,10.3,10.370000000000001,10.41,10.43,10.43,10.43,10.42,273.66,273.41,273.24,273.06,272.9,272.73,272.56,272.39,272,24.01,23.47,23.25,23.03,22.830000000000002,22.64,22.44,22.26,21.88,N/A,N/A -2012,9,30,15,30,100450,99300,98180,89.3,0,8.84,9.49,9.64,9.700000000000001,9.74,9.76,9.76,9.76,9.73,281.35,281.34000000000003,281.31,281.24,281.14,281.03000000000003,280.87,280.71,280.23,24.29,23.77,23.56,23.34,23.150000000000002,22.95,22.76,22.580000000000002,22.22,N/A,N/A -2012,9,30,16,30,100460,99310,98180,89.64,0.4,8.08,8.63,8.75,8.81,8.84,8.86,8.870000000000001,8.870000000000001,8.870000000000001,280.03000000000003,280.35,280.53000000000003,280.7,280.85,280.99,281.15000000000003,281.29,281.61,23.34,22.79,22.580000000000002,22.36,22.150000000000002,21.96,21.76,21.580000000000002,21.2,N/A,N/A -2012,9,30,17,30,100470,99320,98190,88.95,5.5,9.93,10.700000000000001,10.88,10.950000000000001,11,11.02,11.03,11.040000000000001,11.02,286.86,287.15000000000003,287.33,287.49,287.65000000000003,287.8,287.95,288.1,288.42,23.31,22.72,22.490000000000002,22.26,22.06,21.86,21.66,21.48,21.1,N/A,N/A -2012,9,30,18,30,100490,99330,98200,87.48,0.7000000000000001,10.92,11.84,12.07,12.17,12.25,12.290000000000001,12.32,12.34,12.34,299.18,299.57,299.81,300.05,300.27,300.49,300.71,300.91,301.38,23.07,22.44,22.21,21.98,21.77,21.57,21.36,21.18,20.79,N/A,N/A -2012,9,30,19,30,100500,99340,98220,86.49,0.4,11.84,12.88,13.15,13.290000000000001,13.39,13.450000000000001,13.49,13.52,13.540000000000001,300.19,300.63,300.87,301.1,301.29,301.49,301.67,301.84000000000003,302.2,23.18,22.54,22.3,22.07,21.85,21.650000000000002,21.44,21.25,20.86,N/A,N/A -2012,9,30,20,30,100510,99350,98220,88.83,1.1,12.99,14.17,14.47,14.64,14.76,14.83,14.870000000000001,14.91,14.94,325.86,325.62,325.43,325.22,325.02,324.83,324.63,324.44,324.04,22.55,21.85,21.59,21.34,21.12,20.91,20.7,20.51,20.11,N/A,N/A -2012,9,30,21,30,100550,99390,98250,86.76,1.1,14.84,16.15,16.45,16.57,16.62,16.64,16.62,16.6,16.5,320.73,321.07,321.25,321.40000000000003,321.53000000000003,321.65000000000003,321.76,321.86,322.07,21.67,20.88,20.6,20.35,20.13,19.92,19.71,19.52,19.13,N/A,N/A -2012,9,30,22,30,100560,99400,98260,87.58,1.8,13.14,14.35,14.65,14.82,14.93,15.01,15.06,15.1,15.15,330.47,330.52,330.57,330.62,330.66,330.7,330.74,330.78000000000003,330.86,21.27,20.51,20.240000000000002,20,19.77,19.57,19.36,19.16,18.77,N/A,N/A -2012,9,30,23,30,100610,99450,98310,87,1.5,12.42,13.5,13.780000000000001,13.92,14.01,14.08,14.11,14.14,14.16,331.35,331.55,331.7,331.84000000000003,331.97,332.09000000000003,332.21,332.32,332.57,21.23,20.47,20.21,19.96,19.740000000000002,19.53,19.32,19.12,18.73,N/A,N/A -2012,10,1,0,30,100630,99460,98320,85.96000000000001,1.5,12.44,13.52,13.8,13.950000000000001,14.05,14.120000000000001,14.16,14.200000000000001,14.23,341.8,341.6,341.46,341.31,341.17,341.05,340.91,340.79,340.54,21.13,20.38,20.11,19.87,19.650000000000002,19.44,19.23,19.04,18.64,N/A,N/A -2012,10,1,1,30,100680,99500,98360,86.60000000000001,1.1,12.6,13.68,13.94,14.07,14.15,14.21,14.24,14.26,14.27,337.52,337.54,337.54,337.52,337.5,337.46,337.43,337.41,337.35,20.51,19.71,19.44,19.19,18.97,18.76,18.55,18.35,17.96,N/A,N/A -2012,10,1,2,30,100710,99530,98390,87,0.5,12.790000000000001,13.870000000000001,14.13,14.26,14.35,14.4,14.43,14.450000000000001,14.46,336.07,336.11,336.12,336.14,336.15000000000003,336.16,336.17,336.17,336.19,19.79,18.95,18.67,18.41,18.18,17.97,17.75,17.55,17.150000000000002,N/A,N/A -2012,10,1,3,30,100750,99570,98420,87.09,0.4,12.46,13.51,13.77,13.91,14.01,14.07,14.11,14.14,14.17,343.1,343.21,343.25,343.28000000000003,343.31,343.34000000000003,343.37,343.40000000000003,343.44,19.31,18.46,18.17,17.91,17.68,17.46,17.240000000000002,17.04,16.64,N/A,N/A -2012,10,1,4,30,100760,99580,98430,84.05,0,12.09,13.07,13.32,13.46,13.56,13.61,13.66,13.69,13.72,349.07,348.96,348.86,348.78000000000003,348.7,348.62,348.55,348.48,348.35,19.330000000000002,18.5,18.21,17.96,17.73,17.51,17.3,17.1,16.69,N/A,N/A -2012,10,1,5,30,100760,99580,98430,87.16,0,11.450000000000001,12.35,12.57,12.67,12.74,12.790000000000001,12.81,12.82,12.84,341.64,341.8,341.84000000000003,341.88,341.90000000000003,341.93,341.95,341.97,342,19.34,18.53,18.240000000000002,17.98,17.75,17.54,17.32,17.13,16.72,N/A,N/A -2012,10,1,6,30,100830,99640,98490,84.95,0,12.030000000000001,13,13.23,13.34,13.41,13.450000000000001,13.47,13.49,13.49,348.21,348.11,348.03000000000003,347.96,347.89,347.82,347.75,347.69,347.55,18.900000000000002,18.07,17.78,17.53,17.3,17.09,16.87,16.67,16.27,N/A,N/A -2012,10,1,7,30,100840,99660,98510,85.06,0,11.82,12.77,13.02,13.15,13.24,13.290000000000001,13.33,13.36,13.38,346.84000000000003,346.78000000000003,346.75,346.72,346.7,346.68,346.65000000000003,346.63,346.59000000000003,19.06,18.240000000000002,17.95,17.7,17.47,17.26,17.04,16.84,16.43,N/A,N/A -2012,10,1,8,30,100850,99670,98520,83,0,11.67,12.620000000000001,12.86,12.99,13.07,13.120000000000001,13.16,13.19,13.22,349.37,349.48,349.54,349.57,349.6,349.62,349.64,349.67,349.71,19.27,18.46,18.18,17.92,17.7,17.48,17.27,17.07,16.67,N/A,N/A -2012,10,1,9,30,100860,99680,98530,81.99,0,11.47,12.43,12.67,12.8,12.89,12.96,13.01,13.05,13.11,347.95,348.09000000000003,348.2,348.28000000000003,348.37,348.44,348.52,348.59000000000003,348.73,19.54,18.75,18.490000000000002,18.240000000000002,18.01,17.8,17.580000000000002,17.39,16.990000000000002,N/A,N/A -2012,10,1,10,30,100900,99720,98570,80.06,0,11.25,12.19,12.42,12.55,12.64,12.71,12.76,12.8,12.85,351.08,351.11,351.12,351.12,351.12,351.12,351.11,351.11,351.11,19.81,19.04,18.77,18.53,18.31,18.1,17.89,17.69,17.29,N/A,N/A -2012,10,1,11,30,100920,99740,98590,77.59,0,12.14,13.22,13.51,13.69,13.81,13.91,13.98,14.040000000000001,14.14,343.16,343.17,343.18,343.18,343.18,343.19,343.19,343.2,343.21,20.240000000000002,19.47,19.2,18.95,18.72,18.51,18.3,18.11,17.7,N/A,N/A -2012,10,1,12,30,100950,99770,98630,74.47,0,12.24,13.3,13.58,13.72,13.82,13.89,13.94,13.98,14.030000000000001,346.89,346.68,346.56,346.45,346.34000000000003,346.25,346.15000000000003,346.06,345.88,20.66,19.900000000000002,19.64,19.39,19.17,18.96,18.75,18.55,18.150000000000002,N/A,N/A -2012,10,1,13,30,100950,99770,98630,77.14,0,10.43,11.26,11.47,11.58,11.67,11.73,11.78,11.81,11.870000000000001,337.05,337.14,337.2,337.27,337.34000000000003,337.41,337.49,337.56,337.75,20.82,20.12,19.87,19.63,19.41,19.21,19,18.81,18.41,N/A,N/A -2012,10,1,14,30,100990,99820,98680,76.57000000000001,0,8.98,9.63,9.78,9.86,9.91,9.94,9.96,9.98,10,331.12,331.59000000000003,331.91,332.21,332.48,332.74,333.02,333.27,333.81,21.04,20.39,20.150000000000002,19.92,19.7,19.5,19.29,19.1,18.71,N/A,N/A -2012,10,1,15,30,100980,99810,98670,73.75,0,8.55,9.19,9.34,9.43,9.5,9.55,9.58,9.620000000000001,9.67,330.03000000000003,330.39,330.62,330.84000000000003,331.05,331.24,331.43,331.61,331.98,21.61,21,20.76,20.54,20.32,20.13,19.92,19.73,19.34,N/A,N/A -2012,10,1,16,30,100970,99790,98660,68.61,0,9.14,9.870000000000001,10.06,10.17,10.25,10.3,10.35,10.4,10.47,329.99,329.96,329.95,329.95,329.95,329.95,329.95,329.95,329.96,22.39,21.79,21.56,21.330000000000002,21.12,20.92,20.71,20.52,20.12,N/A,N/A -2012,10,1,17,30,100950,99780,98640,68.49,0,9.49,10.27,10.47,10.58,10.66,10.72,10.77,10.81,10.88,319.24,319.58,319.8,320.01,320.2,320.38,320.56,320.73,321.08,22.94,22.36,22.13,21.91,21.7,21.5,21.29,21.11,20.71,N/A,N/A -2012,10,1,18,30,100940,99770,98640,64.26,0,9.34,10.14,10.35,10.47,10.56,10.63,10.68,10.73,10.8,318.96,319.14,319.25,319.35,319.45,319.53000000000003,319.61,319.7,319.86,23.82,23.29,23.07,22.85,22.650000000000002,22.45,22.240000000000002,22.05,21.66,N/A,N/A -2012,10,1,19,30,100920,99760,98630,60.96,0,9.66,10.540000000000001,10.78,10.92,11.03,11.120000000000001,11.19,11.24,11.33,321.14,321.25,321.29,321.32,321.35,321.37,321.39,321.41,321.46,24.69,24.21,24,23.78,23.580000000000002,23.38,23.18,22.990000000000002,22.6,N/A,N/A -2012,10,1,20,30,100900,99740,98620,57.88,0,9.72,10.61,10.86,11.01,11.120000000000001,11.200000000000001,11.27,11.33,11.41,323.59000000000003,323.47,323.39,323.31,323.25,323.18,323.12,323.07,322.95,25.37,24.92,24.73,24.52,24.32,24.12,23.92,23.73,23.34,N/A,N/A -2012,10,1,21,30,100880,99720,98600,54.57,0,9.66,10.57,10.81,10.950000000000001,11.06,11.13,11.19,11.24,11.32,326.85,326.69,326.57,326.47,326.36,326.26,326.16,326.06,325.87,25.990000000000002,25.59,25.400000000000002,25.19,24.990000000000002,24.8,24.6,24.41,24.02,N/A,N/A -2012,10,1,22,30,100860,99710,98590,53.33,0,9.52,10.42,10.64,10.77,10.86,10.93,10.98,11.02,11.08,328.92,328.62,328.42,328.21,328.04,327.86,327.68,327.52,327.2,26.39,26.02,25.84,25.64,25.44,25.25,25.05,24.86,24.47,N/A,N/A -2012,10,1,23,30,100870,99720,98600,50.97,0,9.72,10.65,10.870000000000001,11,11.08,11.14,11.19,11.22,11.26,331.85,331.51,331.31,331.12,330.94,330.78000000000003,330.62,330.47,330.16,26.61,26.25,26.080000000000002,25.87,25.68,25.490000000000002,25.29,25.1,24.72,N/A,N/A -2012,10,2,0,30,100900,99750,98630,54.5,0,8.08,8.78,8.950000000000001,9.06,9.14,9.200000000000001,9.24,9.28,9.34,329.89,330.26,330.37,330.46,330.53000000000003,330.59000000000003,330.64,330.69,330.75,26.5,26.14,25.96,25.76,25.560000000000002,25.37,25.17,24.98,24.59,N/A,N/A -2012,10,2,1,30,100920,99760,98640,52.980000000000004,0,8.02,8.73,8.91,9.02,9.09,9.15,9.200000000000001,9.24,9.3,335.85,335.75,335.66,335.56,335.47,335.38,335.3,335.22,335.06,26.48,26.12,25.95,25.740000000000002,25.55,25.35,25.150000000000002,24.97,24.580000000000002,N/A,N/A -2012,10,2,2,30,100940,99790,98670,51.71,0,7.84,8.57,8.76,8.88,8.98,9.05,9.11,9.16,9.24,335.43,335.35,335.3,335.26,335.23,335.2,335.17,335.14,335.1,26.64,26.29,26.12,25.91,25.73,25.53,25.330000000000002,25.150000000000002,24.76,N/A,N/A -2012,10,2,3,30,100940,99790,98670,51.2,0,7.63,8.33,8.52,8.64,8.73,8.8,8.85,8.91,8.99,328.18,328.46,328.66,328.86,329.05,329.23,329.41,329.57,329.91,26.77,26.44,26.27,26.07,25.88,25.69,25.490000000000002,25.310000000000002,24.92,N/A,N/A -2012,10,2,4,30,100960,99810,98690,55.89,0,6.66,7.17,7.28,7.34,7.38,7.41,7.43,7.45,7.46,317.08,317.40000000000003,317.62,317.83,318.02,318.2,318.39,318.56,318.93,26.54,26.19,26.02,25.810000000000002,25.62,25.43,25.240000000000002,25.05,24.67,N/A,N/A -2012,10,2,5,30,100970,99820,98700,58.11,0,6.5200000000000005,6.97,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.15,7.15,7.17,304.72,305.56,306.16,306.75,307.31,307.84000000000003,308.40000000000003,308.92,310.09000000000003,26.13,25.76,25.59,25.39,25.21,25.02,24.830000000000002,24.66,24.3,N/A,N/A -2012,10,2,6,30,101020,99860,98740,58.33,0,5.88,6.28,6.36,6.4,6.43,6.45,6.47,6.49,6.54,310.87,311.73,312.27,312.85,313.42,314,314.62,315.21,316.61,25.72,25.36,25.19,25,24.82,24.64,24.45,24.28,23.93,N/A,N/A -2012,10,2,7,30,101040,99880,98760,58.84,0,6.72,7.19,7.28,7.32,7.36,7.38,7.4,7.42,7.49,311.49,312.58,313.28000000000003,314.03000000000003,314.75,315.47,316.26,317,318.77,25.52,25.150000000000002,24.98,24.79,24.61,24.43,24.25,24.080000000000002,23.740000000000002,N/A,N/A -2012,10,2,8,30,101060,99900,98770,62.84,0,6.65,7.13,7.24,7.3,7.3500000000000005,7.390000000000001,7.43,7.46,7.58,312.78000000000003,313.8,314.44,315.1,315.74,316.38,317.08,317.75,319.38,25,24.61,24.43,24.240000000000002,24.05,23.88,23.7,23.53,23.2,N/A,N/A -2012,10,2,9,30,101050,99890,98760,62.31,0,7.11,7.61,7.72,7.76,7.79,7.8100000000000005,7.82,7.82,7.83,322.18,322.64,322.92,323.21,323.49,323.76,324.07,324.36,325.07,25.17,24.77,24.59,24.39,24.2,24.01,23.82,23.650000000000002,23.29,N/A,N/A -2012,10,2,10,30,101090,99930,98800,62.43,0,6.96,7.44,7.53,7.57,7.58,7.59,7.58,7.58,7.55,328.79,329.16,329.39,329.62,329.83,330.05,330.28000000000003,330.48,330.97,25.11,24.7,24.52,24.310000000000002,24.12,23.93,23.740000000000002,23.56,23.19,N/A,N/A -2012,10,2,11,30,101120,99960,98840,59.550000000000004,0,6.53,6.96,7.03,7.0600000000000005,7.07,7.07,7.0600000000000005,7.05,7.0200000000000005,338.97,338.8,338.69,338.58,338.48,338.40000000000003,338.31,338.24,338.08,25.01,24.61,24.43,24.22,24.03,23.85,23.650000000000002,23.47,23.1,N/A,N/A -2012,10,2,12,30,101140,99980,98850,61.730000000000004,0,5.5600000000000005,5.86,5.9,5.91,5.91,5.89,5.87,5.8500000000000005,5.8,342.24,341.98,341.81,341.62,341.45,341.29,341.11,340.95,340.56,24.59,24.17,23.990000000000002,23.78,23.59,23.41,23.21,23.03,22.66,N/A,N/A -2012,10,2,13,30,101190,100030,98900,66.16,0,5.95,6.2700000000000005,6.32,6.32,6.3100000000000005,6.3,6.2700000000000005,6.25,6.19,340.7,340.42,340.21,339.99,339.79,339.59000000000003,339.38,339.18,338.75,24.11,23.67,23.48,23.27,23.07,22.88,22.69,22.5,22.12,N/A,N/A -2012,10,2,14,30,101230,100060,98930,68.56,0,4.96,5.18,5.2,5.2,5.19,5.16,5.14,5.11,5.04,343.77,343.63,343.53000000000003,343.42,343.29,343.17,343.04,342.91,342.56,23.740000000000002,23.3,23.1,22.900000000000002,22.71,22.52,22.330000000000002,22.150000000000002,21.78,N/A,N/A -2012,10,2,15,30,101250,100080,98950,64.79,0,4.26,4.43,4.43,4.41,4.38,4.3500000000000005,4.32,4.28,4.2,355.35,354.98,354.76,354.52,354.29,354.07,353.81,353.58,353,23.89,23.47,23.28,23.080000000000002,22.88,22.69,22.5,22.32,21.94,N/A,N/A -2012,10,2,16,30,101260,100100,98960,61.33,0,4.11,4.28,4.3,4.3,4.29,4.28,4.26,4.24,4.2,354.73,354.83,354.91,354.98,355.04,355.1,355.16,355.21,355.31,24.14,23.72,23.53,23.330000000000002,23.14,22.95,22.76,22.57,22.19,N/A,N/A -2012,10,2,17,30,101280,100110,98980,60.27,0,4.03,4.21,4.22,4.21,4.21,4.19,4.17,4.16,4.12,344.62,344.93,345.04,345.15000000000003,345.24,345.33,345.42,345.51,345.67,24.43,24.02,23.84,23.63,23.44,23.25,23.05,22.87,22.48,N/A,N/A -2012,10,2,18,30,101280,100110,98990,60.89,0,3.73,3.93,3.97,3.99,4,4.01,4.01,4.0200000000000005,4.03,344.18,343.6,343.3,343.01,342.75,342.5,342.25,342.01,341.51,24.76,24.37,24.19,23.990000000000002,23.79,23.6,23.41,23.22,22.84,N/A,N/A -2012,10,2,19,30,101280,100120,98990,57.2,0,3.7800000000000002,3.99,4.04,4.07,4.08,4.1,4.11,4.12,4.14,327.7,328.14,328.44,328.72,328.96,329.19,329.42,329.64,330.09000000000003,25.26,24.88,24.7,24.5,24.310000000000002,24.12,23.92,23.73,23.35,N/A,N/A -2012,10,2,20,30,101250,100090,98960,55.51,0,4.08,4.32,4.37,4.4,4.42,4.44,4.45,4.46,4.49,333.42,334.08,334.47,334.84000000000003,335.18,335.51,335.83,336.14,336.78000000000003,25.59,25.240000000000002,25.060000000000002,24.86,24.67,24.48,24.28,24.1,23.72,N/A,N/A -2012,10,2,21,30,101240,100080,98960,56.02,0,3.16,3.37,3.42,3.46,3.5,3.5300000000000002,3.56,3.59,3.64,333.98,334.89,335.42,335.91,336.36,336.79,337.22,337.61,338.43,25.79,25.45,25.27,25.07,24.88,24.7,24.5,24.32,23.93,N/A,N/A -2012,10,2,22,30,101250,100090,98960,51.550000000000004,0,2.4,2.58,2.64,2.69,2.74,2.7800000000000002,2.82,2.86,2.94,333.74,333.89,333.96,334.02,334.07,334.12,334.16,334.2,334.25,26.07,25.740000000000002,25.57,25.37,25.18,24.990000000000002,24.79,24.61,24.22,N/A,N/A -2012,10,2,23,30,101250,100090,98970,50.72,0,3.04,3.2,3.23,3.24,3.25,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.27,326.79,327.24,327.5,327.75,327.97,328.17,328.36,328.53000000000003,328.89,26.39,26.080000000000002,25.91,25.72,25.53,25.34,25.150000000000002,24.96,24.580000000000002,N/A,N/A -2012,10,3,0,30,101280,100120,99000,49.29,0,2.44,2.59,2.63,2.65,2.67,2.69,2.71,2.72,2.75,345.3,345.73,345.95,346.16,346.35,346.52,346.68,346.83,347.12,26.44,26.13,25.96,25.76,25.57,25.39,25.19,25.01,24.62,N/A,N/A -2012,10,3,1,30,101320,100160,99040,51.45,0,3.9,4.04,4.03,3.99,3.95,3.91,3.87,3.83,3.73,332.28000000000003,332.49,332.62,332.73,332.84000000000003,332.93,333.04,333.14,333.37,26.09,25.76,25.59,25.400000000000002,25.21,25.02,24.830000000000002,24.650000000000002,24.26,N/A,N/A -2012,10,3,2,30,101370,100210,99080,50.15,0,3.81,3.93,3.91,3.88,3.85,3.8200000000000003,3.79,3.7600000000000002,3.71,305.61,308.25,309.82,311.45,312.96,314.41,315.90000000000003,317.28000000000003,320.13,26.14,25.82,25.650000000000002,25.46,25.27,25.080000000000002,24.89,24.71,24.330000000000002,N/A,N/A -2012,10,3,3,30,101400,100240,99110,47.980000000000004,0,3.45,3.5700000000000003,3.56,3.5300000000000002,3.5,3.47,3.43,3.4,3.33,16.34,16.79,17.07,17.34,17.59,17.830000000000002,18.06,18.27,18.740000000000002,26.12,25.79,25.62,25.42,25.23,25.04,24.84,24.650000000000002,24.27,N/A,N/A -2012,10,3,4,30,101410,100250,99120,47.81,0,3.33,3.44,3.43,3.4,3.38,3.36,3.33,3.31,3.25,23.26,24.01,24.52,25.02,25.490000000000002,25.93,26.38,26.79,27.650000000000002,25.95,25.61,25.43,25.23,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A -2012,10,3,5,30,101420,100260,99140,49.38,0,3,3.08,3.0700000000000003,3.04,3.0100000000000002,2.99,2.96,2.93,2.87,45.47,46.35,46.84,47.31,47.74,48.14,48.54,48.910000000000004,49.660000000000004,25.82,25.48,25.3,25.11,24.91,24.72,24.53,24.34,23.95,N/A,N/A -2012,10,3,6,30,101450,100280,99160,50.51,0,2.47,2.5300000000000002,2.52,2.5,2.48,2.46,2.44,2.41,2.37,62.65,62.980000000000004,63.160000000000004,63.34,63.51,63.67,63.84,64,64.34,25.73,25.400000000000002,25.22,25.03,24.830000000000002,24.650000000000002,24.44,24.26,23.87,N/A,N/A -2012,10,3,7,30,101480,100310,99190,53.21,0,1.77,1.82,1.82,1.82,1.81,1.8,1.79,1.79,1.77,58.44,59.82,60.77,61.690000000000005,62.54,63.36,64.19,64.94,66.51,25.59,25.26,25.080000000000002,24.89,24.69,24.5,24.3,24.12,23.73,N/A,N/A -2012,10,3,8,30,101480,100310,99190,55.65,0,1.58,1.6,1.59,1.57,1.56,1.54,1.53,1.51,1.48,70.29,70.83,71.17,71.5,71.81,72.12,72.45,72.75,73.42,25.48,25.14,24.97,24.77,24.57,24.39,24.18,24,23.61,N/A,N/A -2012,10,3,9,30,101500,100330,99200,55.92,0,1.52,1.53,1.5,1.47,1.45,1.42,1.3900000000000001,1.37,1.33,75.04,76.66,77.55,78.43,79.24,80,80.79,81.51,83,25.45,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.97,23.580000000000002,N/A,N/A -2012,10,3,10,30,101500,100330,99210,57.07,0,1.1,1.1,1.07,1.05,1.03,1.01,0.99,0.97,0.93,91.43,93.02,93.88,94.81,95.69,96.55,97.48,98.36,100.29,25.37,25.04,24.86,24.66,24.47,24.28,24.080000000000002,23.89,23.5,N/A,N/A -2012,10,3,11,30,101530,100370,99240,58.08,0,1.23,1.23,1.2,1.17,1.1500000000000001,1.1300000000000001,1.1,1.08,1.03,100.41,101.61,102.32000000000001,103.09,103.84,104.58,105.35000000000001,106.05,107.7,25.330000000000002,24.990000000000002,24.810000000000002,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A -2012,10,3,12,30,101540,100380,99250,58.79,0,0.62,0.68,0.7000000000000001,0.73,0.75,0.77,0.78,0.8,0.8300000000000001,155.37,156.82,157.4,157.89000000000001,158.37,158.86,159.32,159.75,160.67000000000002,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A -2012,10,3,13,30,101590,100430,99300,60.370000000000005,0,1.46,1.36,1.27,1.17,1.09,1.02,0.9500000000000001,0.88,0.75,324.87,325.49,325.89,326.41,326.94,327.46,328.1,328.7,330.17,25.240000000000002,24.89,24.72,24.52,24.330000000000002,24.14,23.94,23.75,23.37,N/A,N/A -2012,10,3,14,30,101620,100450,99320,60.83,0,1.93,1.85,1.78,1.69,1.61,1.54,1.46,1.3900000000000001,1.24,319.16,319.29,319.48,319.71,319.97,320.26,320.63,320.98,321.88,25.11,24.76,24.580000000000002,24.39,24.19,24,23.81,23.63,23.240000000000002,N/A,N/A -2012,10,3,15,30,101650,100480,99350,61.370000000000005,0,0.56,0.49,0.45,0.4,0.36,0.33,0.29,0.26,0.2,323.27,324.74,326.06,327.94,330.29,332.87,337.06,340.98,355.8,25.17,24.82,24.650000000000002,24.45,24.25,24.07,23.87,23.68,23.3,N/A,N/A -2012,10,3,16,30,101650,100480,99350,62.04,0,0.6,0.5700000000000001,0.55,0.53,0.52,0.51,0.5,0.49,0.49,4.86,12.72,17.490000000000002,22.490000000000002,27.2,31.78,36.56,41,50.14,25.26,24.91,24.73,24.54,24.34,24.150000000000002,23.96,23.77,23.38,N/A,N/A -2012,10,3,17,30,101650,100490,99360,62.07,0,0.79,0.8200000000000001,0.8300000000000001,0.8300000000000001,0.84,0.84,0.84,0.85,0.86,45.87,50.7,53.5,56.2,58.730000000000004,61.18,63.660000000000004,65.96000000000001,70.74,25.37,25.02,24.84,24.64,24.45,24.26,24.060000000000002,23.88,23.490000000000002,N/A,N/A -2012,10,3,18,30,101640,100480,99350,64.47,0,1.75,1.68,1.6,1.54,1.47,1.42,1.3800000000000001,1.33,1.26,68.28,72.23,74.69,77.43,80.04,82.57000000000001,85.3,87.83,93.38,25.38,25.03,24.85,24.650000000000002,24.46,24.28,24.080000000000002,23.89,23.51,N/A,N/A -2012,10,3,19,30,101660,100490,99370,61.690000000000005,0,1.31,1.42,1.46,1.5,1.53,1.56,1.6,1.6300000000000001,1.68,140.22,144.66,146.98,148.96,150.58,151.96,153.19,154.3,156.21,25.650000000000002,25.3,25.12,24.92,24.72,24.54,24.34,24.150000000000002,23.76,N/A,N/A -2012,10,3,20,30,101660,100500,99370,61.09,0,2.16,2.27,2.3000000000000003,2.32,2.34,2.35,2.37,2.37,2.4,151.78,152.17000000000002,152.5,152.85,153.19,153.52,153.85,154.16,154.85,25.73,25.38,25.2,25,24.8,24.61,24.41,24.23,23.84,N/A,N/A -2012,10,3,21,30,101650,100490,99360,63,0,2.74,2.86,2.88,2.88,2.89,2.89,2.89,2.89,2.89,145.41,146.46,147.12,147.76,148.34,148.87,149.41,149.9,150.88,25.73,25.39,25.21,25.01,24.82,24.63,24.43,24.25,23.85,N/A,N/A -2012,10,3,22,30,101660,100500,99370,64.24,0,3.0100000000000002,3.22,3.27,3.3000000000000003,3.33,3.36,3.38,3.4,3.43,154.59,154.65,154.78,154.9,155.02,155.14000000000001,155.26,155.36,155.6,25.78,25.44,25.27,25.07,24.87,24.68,24.490000000000002,24.3,23.91,N/A,N/A -2012,10,3,23,30,101660,100500,99370,63.92,0,3.93,4.14,4.17,4.18,4.18,4.18,4.18,4.17,4.16,161.76,161.9,162,162.1,162.20000000000002,162.29,162.38,162.45000000000002,162.64000000000001,25.84,25.51,25.330000000000002,25.14,24.94,24.75,24.560000000000002,24.37,23.98,N/A,N/A -2012,10,4,0,30,101670,100510,99380,66.28,0,3.72,3.96,4.01,4.04,4.07,4.08,4.1,4.11,4.14,150.97,151.75,152.29,152.81,153.26,153.69,154.11,154.51,155.3,25.77,25.43,25.25,25.05,24.86,24.67,24.47,24.28,23.900000000000002,N/A,N/A -2012,10,4,1,30,101700,100530,99410,66.98,0,4.43,4.71,4.76,4.79,4.8,4.82,4.82,4.83,4.83,152.42000000000002,153.19,153.67000000000002,154.15,154.58,154.98,155.37,155.74,156.5,25.77,25.44,25.26,25.060000000000002,24.87,24.68,24.48,24.29,23.91,N/A,N/A -2012,10,4,2,30,101720,100560,99430,64.15,0,4.21,4.49,4.55,4.59,4.62,4.64,4.66,4.67,4.69,169.26,169.55,169.56,169.54,169.5,169.46,169.41,169.36,169.24,26.01,25.68,25.51,25.3,25.12,24.92,24.72,24.54,24.150000000000002,N/A,N/A -2012,10,4,3,30,101740,100580,99450,59.09,0,4.53,4.82,4.88,4.91,4.93,4.95,4.96,4.97,4.98,176.08,175.41,175.02,174.64000000000001,174.31,174,173.69,173.42000000000002,172.88,26.13,25.810000000000002,25.64,25.44,25.25,25.060000000000002,24.86,24.68,24.29,N/A,N/A -2012,10,4,4,30,101740,100580,99450,62.57,0,4.46,4.79,4.87,4.92,4.95,4.97,5,5.01,5.04,165.52,166.04,166.18,166.27,166.33,166.36,166.37,166.38,166.36,26.05,25.73,25.55,25.35,25.16,24.97,24.77,24.59,24.2,N/A,N/A -2012,10,4,5,30,101770,100600,99480,59.01,0,4.91,5.24,5.29,5.3100000000000005,5.32,5.32,5.32,5.3100000000000005,5.3,161.45000000000002,161.82,162.05,162.29,162.5,162.70000000000002,162.9,163.1,163.49,26.13,25.810000000000002,25.64,25.44,25.25,25.060000000000002,24.86,24.68,24.29,N/A,N/A -2012,10,4,6,30,101800,100630,99510,60.03,0,4.67,5.0200000000000005,5.1000000000000005,5.15,5.19,5.22,5.24,5.26,5.29,164.65,164.86,164.94,165.02,165.08,165.13,165.17000000000002,165.22,165.3,26.080000000000002,25.76,25.59,25.39,25.2,25.01,24.810000000000002,24.63,24.240000000000002,N/A,N/A -2012,10,4,7,30,101840,100680,99550,63,0,4.94,5.29,5.3500000000000005,5.39,5.41,5.42,5.43,5.44,5.44,173.45000000000002,173.36,173.29,173.19,173.11,173.03,172.95000000000002,172.88,172.73,26.01,25.68,25.51,25.310000000000002,25.12,24.93,24.73,24.55,24.16,N/A,N/A -2012,10,4,8,30,101860,100690,99570,67.77,0,5.5600000000000005,5.95,6.0200000000000005,6.05,6.07,6.08,6.08,6.08,6.0600000000000005,159.58,160.31,160.72,161.12,161.47,161.8,162.12,162.42000000000002,163,25.900000000000002,25.57,25.39,25.19,25,24.810000000000002,24.61,24.43,24.04,N/A,N/A -2012,10,4,9,30,101880,100710,99590,62.85,0,5.43,5.7700000000000005,5.83,5.84,5.8500000000000005,5.84,5.84,5.83,5.8,173.35,173.18,173.12,173.05,173,172.95000000000002,172.9,172.86,172.8,26.04,25.71,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A -2012,10,4,10,30,101920,100750,99620,64.72,0,5.22,5.63,5.72,5.7700000000000005,5.8100000000000005,5.84,5.87,5.89,5.92,163.1,163.78,164.16,164.51,164.83,165.13,165.43,165.70000000000002,166.26,26.080000000000002,25.76,25.59,25.39,25.2,25.01,24.82,24.63,24.240000000000002,N/A,N/A -2012,10,4,11,30,101930,100770,99640,67.1,0,5.45,5.8500000000000005,5.93,5.98,6.01,6.03,6.05,6.0600000000000005,6.08,160.8,160.83,160.88,160.93,160.97,161.02,161.06,161.11,161.21,26.03,25.7,25.53,25.330000000000002,25.14,24.95,24.75,24.57,24.18,N/A,N/A -2012,10,4,12,30,101980,100810,99680,67.86,0,5.55,6,6.1000000000000005,6.15,6.19,6.22,6.24,6.25,6.2700000000000005,148.56,148.9,149.18,149.45000000000002,149.69,149.92000000000002,150.15,150.36,150.8,26.04,25.71,25.53,25.330000000000002,25.14,24.95,24.75,24.57,24.18,N/A,N/A -2012,10,4,13,30,102010,100850,99720,68.71000000000001,0,5.34,5.74,5.82,5.86,5.88,5.9,5.91,5.92,5.92,157.11,157.14000000000001,157.08,156.99,156.89000000000001,156.79,156.67000000000002,156.56,156.32,26.03,25.69,25.52,25.32,25.13,24.94,24.75,24.560000000000002,24.17,N/A,N/A -2012,10,4,14,30,102060,100890,99760,69.86,0,5.5600000000000005,6,6.09,6.140000000000001,6.18,6.2,6.22,6.23,6.25,151.43,151.82,152,152.15,152.28,152.39000000000001,152.49,152.58,152.73,26.05,25.72,25.55,25.35,25.150000000000002,24.97,24.77,24.580000000000002,24.2,N/A,N/A -2012,10,4,15,30,102070,100900,99770,69.03,0,5.8,6.25,6.3500000000000005,6.4,6.44,6.46,6.48,6.5,6.5200000000000005,152.59,152.41,152.28,152.13,152,151.86,151.73,151.62,151.37,26.07,25.73,25.560000000000002,25.36,25.17,24.98,24.78,24.6,24.21,N/A,N/A -2012,10,4,16,30,102080,100910,99780,70.49,0,5.58,6.01,6.1000000000000005,6.15,6.18,6.2,6.21,6.22,6.23,148.92000000000002,149.12,149.24,149.35,149.46,149.57,149.69,149.79,150.04,26.01,25.67,25.5,25.3,25.11,24.92,24.72,24.54,24.150000000000002,N/A,N/A -2012,10,4,17,30,102080,100910,99780,71.79,0,5.25,5.67,5.76,5.82,5.87,5.91,5.93,5.96,6,145.77,146.4,146.8,147.18,147.52,147.84,148.16,148.44,149.02,26.02,25.68,25.5,25.3,25.11,24.92,24.72,24.54,24.14,N/A,N/A -2012,10,4,18,30,102070,100900,99770,70.29,0,5.59,6.03,6.13,6.18,6.22,6.25,6.2700000000000005,6.29,6.32,146.97,147.9,148.41,148.9,149.34,149.74,150.14000000000001,150.5,151.24,26.07,25.72,25.55,25.35,25.16,24.97,24.77,24.59,24.2,N/A,N/A -2012,10,4,19,30,102080,100920,99790,68.97,0,4.74,5.0600000000000005,5.13,5.17,5.2,5.22,5.23,5.24,5.26,160.99,160.61,160.41,160.22,160.06,159.91,159.76,159.63,159.35,26.19,25.86,25.69,25.490000000000002,25.3,25.11,24.91,24.72,24.34,N/A,N/A -2012,10,4,20,30,102040,100880,99750,73.43,0,5.42,5.8,5.87,5.9,5.92,5.93,5.94,5.94,5.93,153.36,154.08,154.48,154.87,155.21,155.54,155.86,156.16,156.75,26.13,25.78,25.61,25.41,25.22,25.03,24.830000000000002,24.64,24.25,N/A,N/A -2012,10,4,21,30,102040,100870,99740,71.99,0,4.46,4.76,4.82,4.8500000000000005,4.86,4.87,4.88,4.89,4.89,154.47,154.36,154.31,154.26,154.21,154.17000000000002,154.13,154.08,154,26.17,25.84,25.67,25.47,25.28,25.09,24.900000000000002,24.71,24.32,N/A,N/A -2012,10,4,22,30,102030,100870,99740,74.01,0,4.14,4.43,4.51,4.55,4.59,4.62,4.64,4.67,4.71,148.38,148.78,149.03,149.25,149.46,149.65,149.84,150.02,150.37,26.060000000000002,25.740000000000002,25.560000000000002,25.37,25.18,24.990000000000002,24.79,24.6,24.22,N/A,N/A -2012,10,4,23,30,102010,100850,99720,71.95,0,4.01,4.2700000000000005,4.32,4.34,4.3500000000000005,4.36,4.36,4.36,4.36,147.91,148.14000000000001,148.33,148.5,148.66,148.82,148.98,149.13,149.46,26.11,25.79,25.62,25.42,25.23,25.04,24.84,24.66,24.27,N/A,N/A -2012,10,5,0,30,101990,100830,99700,74.01,0,4.04,4.3,4.3500000000000005,4.39,4.4,4.42,4.43,4.44,4.45,144.93,145.38,145.68,145.97,146.23,146.48,146.72,146.94,147.4,25.98,25.64,25.47,25.27,25.080000000000002,24.89,24.69,24.51,24.12,N/A,N/A -2012,10,5,1,30,101990,100830,99700,75.69,0,4.19,4.44,4.48,4.5,4.51,4.51,4.51,4.51,4.5,142.84,143.07,143.23,143.38,143.52,143.65,143.78,143.9,144.16,25.87,25.53,25.36,25.16,24.97,24.78,24.580000000000002,24.39,24.01,N/A,N/A -2012,10,5,2,30,101990,100830,99700,72.36,0,4.19,4.46,4.51,4.54,4.55,4.57,4.57,4.58,4.58,148.91,148.81,148.8,148.79,148.78,148.77,148.77,148.77,148.78,25.92,25.59,25.42,25.22,25.03,24.84,24.64,24.46,24.07,N/A,N/A -2012,10,5,3,30,101960,100800,99670,76.52,0,4.3500000000000005,4.63,4.69,4.72,4.74,4.76,4.7700000000000005,4.78,4.79,143.27,143.63,143.85,144.06,144.26,144.45000000000002,144.64000000000001,144.83,145.22,25.7,25.35,25.18,24.97,24.78,24.59,24.39,24.21,23.82,N/A,N/A -2012,10,5,4,30,101950,100780,99650,75.86,0,4.62,4.93,5,5.04,5.0600000000000005,5.08,5.09,5.1000000000000005,5.11,146.26,146.31,146.36,146.41,146.46,146.5,146.56,146.6,146.70000000000002,25.68,25.330000000000002,25.16,24.96,24.76,24.57,24.38,24.19,23.81,N/A,N/A -2012,10,5,5,30,101930,100770,99640,74.97,0,4.26,4.55,4.61,4.64,4.67,4.69,4.7,4.72,4.74,149.11,149.06,149.03,148.99,148.96,148.92000000000002,148.88,148.84,148.76,25.650000000000002,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A -2012,10,5,6,30,101930,100760,99630,73.33,0,4.49,4.79,4.86,4.89,4.92,4.94,4.96,4.97,4.99,149.17000000000002,149.12,149.13,149.14000000000001,149.15,149.16,149.17000000000002,149.17000000000002,149.17000000000002,25.67,25.32,25.14,24.94,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A -2012,10,5,7,30,101940,100780,99650,79.78,0,4.89,5.21,5.2700000000000005,5.3,5.32,5.33,5.33,5.33,5.33,146.85,147.02,147.15,147.28,147.41,147.52,147.64000000000001,147.75,148,25.44,25.080000000000002,24.900000000000002,24.7,24.5,24.310000000000002,24.11,23.93,23.54,N/A,N/A -2012,10,5,8,30,101950,100780,99660,79.55,0,5.73,6.12,6.17,6.19,6.19,6.17,6.15,6.13,6.0600000000000005,148.83,149.05,149.19,149.33,149.45000000000002,149.56,149.68,149.79,150.01,25.5,25.13,24.95,24.75,24.55,24.36,24.16,23.97,23.580000000000002,N/A,N/A -2012,10,5,9,30,101940,100770,99640,78.19,0,4.01,4.3,4.38,4.43,4.48,4.5200000000000005,4.55,4.58,4.63,151.9,151.96,151.97,151.98,151.98,151.98,151.97,151.96,151.94,25.5,25.14,24.97,24.76,24.57,24.38,24.18,23.990000000000002,23.6,N/A,N/A -2012,10,5,10,30,101940,100780,99650,74.58,0,4.76,5.08,5.14,5.18,5.2,5.22,5.23,5.24,5.24,160.65,160.25,160.03,159.82,159.62,159.43,159.25,159.08,158.71,25.61,25.26,25.080000000000002,24.88,24.68,24.490000000000002,24.3,24.11,23.72,N/A,N/A -2012,10,5,11,30,101950,100780,99650,76.52,0,4.01,4.26,4.3100000000000005,4.34,4.36,4.37,4.38,4.39,4.4,162.87,162.37,162.06,161.76,161.48,161.22,160.95000000000002,160.70000000000002,160.21,25.59,25.23,25.060000000000002,24.86,24.66,24.47,24.27,24.080000000000002,23.7,N/A,N/A -2012,10,5,12,30,101940,100780,99650,73.9,0,3.41,3.63,3.69,3.72,3.75,3.7800000000000002,3.8000000000000003,3.8200000000000003,3.87,146.52,146.77,146.99,147.23,147.46,147.68,147.92000000000002,148.15,148.62,25.61,25.27,25.09,24.89,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A -2012,10,5,13,30,101940,100780,99650,75.06,0,3.38,3.56,3.6,3.63,3.64,3.65,3.66,3.67,3.67,157.28,157.47,157.57,157.65,157.71,157.77,157.81,157.85,157.89000000000001,25.68,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.19,23.8,N/A,N/A -2012,10,5,14,30,101950,100790,99660,74.86,0,3.12,3.31,3.35,3.38,3.4,3.42,3.43,3.45,3.47,161.95000000000002,162.01,162.02,162.02,162.02,162.01,162,161.98,161.93,25.560000000000002,25.22,25.04,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A -2012,10,5,15,30,101960,100800,99670,76.13,0,2.8000000000000003,2.94,2.97,2.98,2.99,3.0100000000000002,3.0100000000000002,3.02,3.0300000000000002,148.07,148.74,149.11,149.45000000000002,149.75,150.03,150.3,150.55,151.05,25.580000000000002,25.23,25.05,24.85,24.66,24.47,24.27,24.09,23.7,N/A,N/A -2012,10,5,16,30,101920,100760,99630,75.8,0,2.37,2.5100000000000002,2.5500000000000003,2.58,2.61,2.63,2.65,2.67,2.7,167.41,166.58,166.04,165.52,165.07,164.66,164.25,163.87,163.14000000000001,25.71,25.36,25.18,24.98,24.79,24.6,24.400000000000002,24.21,23.82,N/A,N/A -2012,10,5,17,30,101890,100730,99600,74.14,0,3.5100000000000002,3.65,3.65,3.63,3.62,3.6,3.5700000000000003,3.5500000000000003,3.5,154.20000000000002,154.43,154.62,154.84,155.04,155.24,155.46,155.66,156.08,25.77,25.42,25.240000000000002,25.04,24.85,24.66,24.46,24.28,23.89,N/A,N/A -2012,10,5,18,30,101840,100670,99550,75.76,0,2.43,2.5100000000000002,2.5100000000000002,2.5,2.49,2.48,2.47,2.46,2.44,137.34,138.51,139.31,140.11,140.87,141.59,142.34,143.04,144.52,25.66,25.3,25.12,24.93,24.73,24.54,24.34,24.16,23.77,N/A,N/A -2012,10,5,19,30,101820,100660,99530,76.04,0,3.0300000000000002,3.15,3.15,3.14,3.13,3.12,3.1,3.09,3.0500000000000003,152.09,152.51,152.73,152.95000000000002,153.15,153.34,153.53,153.71,154.08,25.69,25.330000000000002,25.150000000000002,24.95,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A -2012,10,5,20,30,101760,100600,99470,75.44,0,2.22,2.3000000000000003,2.3000000000000003,2.3000000000000003,2.29,2.29,2.2800000000000002,2.27,2.25,149.81,150.58,150.99,151.41,151.82,152.22,152.65,153.05,153.95000000000002,25.62,25.26,25.080000000000002,24.88,24.68,24.5,24.3,24.11,23.72,N/A,N/A -2012,10,5,21,30,101730,100570,99440,74.17,0,2.72,2.86,2.89,2.9,2.91,2.92,2.93,2.93,2.94,149.78,150.46,150.86,151.26,151.62,151.98,152.34,152.67000000000002,153.38,25.69,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A -2012,10,5,22,30,101700,100530,99410,74.47,0,2.84,2.95,2.96,2.96,2.96,2.95,2.95,2.94,2.92,147.26,147.59,147.77,147.95000000000002,148.13,148.3,148.49,148.67000000000002,149.07,25.64,25.3,25.12,24.92,24.73,24.54,24.34,24.16,23.77,N/A,N/A -2012,10,5,23,30,101670,100510,99380,73.17,0,2.86,3,3.02,3.02,3.0300000000000002,3.0300000000000002,3.02,3.02,3.0100000000000002,153.86,153.69,153.61,153.54,153.48,153.43,153.39000000000001,153.36,153.3,25.64,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A -2012,10,6,0,30,101640,100480,99350,73.72,0,3.2800000000000002,3.45,3.47,3.49,3.49,3.49,3.49,3.49,3.49,156.6,156.88,156.98,157.09,157.19,157.28,157.37,157.47,157.65,25.61,25.26,25.080000000000002,24.89,24.69,24.5,24.310000000000002,24.12,23.73,N/A,N/A -2012,10,6,1,30,101640,100480,99360,72.82000000000001,0,4.04,4.2700000000000005,4.3100000000000005,4.32,4.33,4.34,4.34,4.34,4.33,155.01,155,155.01,155.02,155.03,155.03,155.04,155.05,155.07,25.63,25.28,25.11,24.900000000000002,24.71,24.52,24.32,24.14,23.75,N/A,N/A -2012,10,6,2,30,101630,100470,99340,73.26,0,4.1,4.3100000000000005,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,4.3,159.31,159.45000000000002,159.56,159.66,159.77,159.88,160,160.11,160.34,25.57,25.22,25.04,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A -2012,10,6,3,30,101610,100450,99320,76.93,0,4.0200000000000005,4.25,4.29,4.3100000000000005,4.33,4.34,4.34,4.3500000000000005,4.3500000000000005,153.18,153.68,154.03,154.36,154.66,154.94,155.22,155.48,156.02,25.42,25.07,24.89,24.69,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A -2012,10,6,4,30,101590,100430,99310,76.83,0,4.05,4.28,4.3100000000000005,4.32,4.33,4.33,4.32,4.3100000000000005,4.29,158,158.22,158.39000000000001,158.56,158.72,158.88,159.04,159.17000000000002,159.49,25.39,25.03,24.85,24.650000000000002,24.45,24.26,24.07,23.88,23.490000000000002,N/A,N/A -2012,10,6,5,30,101600,100430,99310,77.19,0,4.03,4.28,4.32,4.3500000000000005,4.37,4.38,4.38,4.39,4.39,159.85,159.74,159.71,159.69,159.67000000000002,159.66,159.65,159.65,159.63,25.37,25.01,24.830000000000002,24.63,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A -2012,10,6,6,30,101600,100440,99310,74.48,0,3.48,3.69,3.75,3.7800000000000002,3.81,3.83,3.85,3.87,3.91,163.3,163.20000000000002,163.11,163.02,162.94,162.86,162.78,162.70000000000002,162.55,25.44,25.080000000000002,24.91,24.71,24.51,24.32,24.13,23.94,23.56,N/A,N/A -2012,10,6,7,30,101610,100450,99330,77.53,0,3.3000000000000003,3.46,3.49,3.5,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5,157.78,158.13,158.38,158.66,158.93,159.19,159.45000000000002,159.70000000000002,160.24,25.330000000000002,24.98,24.8,24.6,24.400000000000002,24.21,24.01,23.830000000000002,23.44,N/A,N/A -2012,10,6,8,30,101600,100440,99320,77.44,0,3.38,3.5100000000000002,3.5100000000000002,3.49,3.48,3.45,3.43,3.41,3.36,155.18,155.29,155.31,155.31,155.32,155.33,155.34,155.35,155.37,25.240000000000002,24.88,24.7,24.5,24.310000000000002,24.12,23.92,23.73,23.34,N/A,N/A -2012,10,6,9,30,101620,100460,99330,79.48,0,2.67,2.83,2.87,2.9,2.92,2.94,2.95,2.97,2.99,158.74,158.99,159.14000000000001,159.27,159.38,159.48,159.58,159.67000000000002,159.84,25.23,24.88,24.7,24.5,24.3,24.11,23.91,23.72,23.34,N/A,N/A -2012,10,6,10,30,101630,100470,99340,79.41,0,2.49,2.58,2.58,2.58,2.57,2.56,2.5500000000000003,2.5500000000000003,2.52,155.37,156.75,157.6,158.44,159.22,159.97,160.72,161.43,162.94,25.2,24.85,24.67,24.47,24.28,24.09,23.89,23.71,23.32,N/A,N/A -2012,10,6,11,30,101650,100490,99360,78.25,0,2.16,2.24,2.24,2.23,2.22,2.22,2.2,2.19,2.18,182.79,181.18,180.08,178.98,177.99,177.06,176.11,175.22,173.42000000000002,25.22,24.87,24.69,24.490000000000002,24.3,24.11,23.91,23.72,23.34,N/A,N/A -2012,10,6,12,30,101650,100480,99360,73.35000000000001,0,1.12,1.17,1.19,1.2,1.21,1.23,1.24,1.25,1.27,168.49,170.04,170.99,171.86,172.64000000000001,173.37,174.06,174.69,176,25.26,24.92,24.75,24.55,24.36,24.17,23.97,23.78,23.400000000000002,N/A,N/A -2012,10,6,13,30,101670,100500,99370,76.94,0,0.8200000000000001,0.8200000000000001,0.81,0.8,0.79,0.78,0.77,0.75,0.73,64.11,64.72,65.29,65.92,66.51,67.08,67.72,68.31,69.63,25.14,24.79,24.61,24.41,24.22,24.03,23.830000000000002,23.64,23.25,N/A,N/A -2012,10,6,14,30,101690,100530,99400,76.85000000000001,0,0.89,0.91,0.91,0.91,0.91,0.91,0.91,0.91,0.9,81.52,79.53,78.43,77.42,76.56,75.78,75.04,74.35000000000001,73.07000000000001,25.12,24.77,24.59,24.39,24.2,24.01,23.81,23.63,23.240000000000002,N/A,N/A -2012,10,6,15,30,101680,100510,99390,77.26,0,0.87,0.91,0.92,0.92,0.93,0.93,0.9400000000000001,0.9500000000000001,0.96,32.96,33.67,34.12,34.58,34.95,35.29,35.65,36.01,36.6,25.14,24.79,24.61,24.41,24.22,24.03,23.830000000000002,23.64,23.25,N/A,N/A -2012,10,6,16,30,101660,100490,99370,77.59,0,1.94,1.96,1.93,1.9000000000000001,1.8800000000000001,1.85,1.83,1.8,1.75,32.52,33.33,33.71,34.12,34.49,34.83,35.21,35.56,36.27,25.13,24.77,24.59,24.39,24.19,24,23.8,23.62,23.23,N/A,N/A -2012,10,6,17,30,101640,100480,99350,77.21000000000001,0,1.81,1.84,1.82,1.8,1.79,1.77,1.75,1.73,1.68,53.64,53.53,53.45,53.35,53.24,53.13,53.01,52.88,52.550000000000004,25.14,24.77,24.59,24.39,24.19,24,23.8,23.62,23.23,N/A,N/A -2012,10,6,18,30,101610,100440,99320,79.57000000000001,0,1.98,2.05,2.06,2.06,2.06,2.05,2.05,2.04,2.04,54.620000000000005,54.97,55.18,55.370000000000005,55.57,55.76,55.94,56.1,56.46,25.13,24.75,24.57,24.37,24.18,23.990000000000002,23.79,23.6,23.22,N/A,N/A -2012,10,6,19,30,101590,100420,99300,80.81,0,2,2.04,2.0300000000000002,2.0100000000000002,1.99,1.97,1.95,1.93,1.8800000000000001,73.5,73.24,73.05,72.86,72.67,72.48,72.27,72.07000000000001,71.61,25.18,24.8,24.62,24.42,24.22,24.03,23.830000000000002,23.650000000000002,23.26,N/A,N/A -2012,10,6,20,30,101540,100370,99250,81.60000000000001,0,1.84,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.8900000000000001,1.8900000000000001,1.8800000000000001,1.87,1.85,79.22,78.98,78.7,78.41,78.11,77.8,77.48,77.16,76.43,25.240000000000002,24.86,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.34,N/A,N/A -2012,10,6,21,30,101530,100370,99240,78.86,0,2.0100000000000002,2.07,2.07,2.06,2.05,2.04,2.0300000000000002,2.02,2,92.06,91.65,91.34,91,90.64,90.27,89.82000000000001,89.36,88.17,25.37,25.01,24.84,24.64,24.45,24.26,24.07,23.89,23.52,N/A,N/A -2012,10,6,22,30,101510,100350,99230,80.05,0,2.45,2.54,2.5500000000000003,2.54,2.54,2.5300000000000002,2.52,2.5100000000000002,2.48,101.69,101.43,101.26,101.07000000000001,100.87,100.67,100.43,100.2,99.59,25.38,25.03,24.85,24.650000000000002,24.46,24.28,24.080000000000002,23.900000000000002,23.52,N/A,N/A -2012,10,6,23,30,101510,100350,99220,79.36,0,2.56,2.66,2.66,2.66,2.66,2.65,2.63,2.62,2.6,99.97,99.79,99.65,99.52,99.37,99.22,99.02,98.81,98.23,25.38,25.03,24.86,24.66,24.47,24.28,24.09,23.91,23.53,N/A,N/A -2012,10,7,0,30,101510,100350,99230,78.54,0,2.77,2.9,2.92,2.92,2.92,2.92,2.92,2.91,2.91,106.2,105.95,105.78,105.59,105.38,105.15,104.87,104.60000000000001,103.77,25.39,25.04,24.87,24.67,24.48,24.29,24.1,23.92,23.55,N/A,N/A -2012,10,7,1,30,101530,100370,99240,77.05,0,2.52,2.63,2.65,2.66,2.66,2.67,2.67,2.67,2.68,96.69,96.5,96.48,96.42,96.36,96.28,96.18,96.07000000000001,95.77,25.45,25.12,24.94,24.740000000000002,24.560000000000002,24.37,24.18,23.990000000000002,23.62,N/A,N/A -2012,10,7,2,30,101530,100370,99250,75.68,0,3.0700000000000003,3.22,3.24,3.25,3.25,3.25,3.25,3.25,3.25,101.15,101.08,101,100.91,100.81,100.7,100.57000000000001,100.44,100.07000000000001,25.53,25.19,25.02,24.82,24.64,24.45,24.26,24.080000000000002,23.71,N/A,N/A -2012,10,7,3,30,101610,100430,99290,83.27,0,12.11,13.09,13.24,13.26,13.23,13.17,13.08,12.99,12.73,29.39,29.93,30.17,30.41,30.650000000000002,30.88,31.150000000000002,31.400000000000002,32.05,22.68,22.080000000000002,21.86,21.650000000000002,21.45,21.27,21.080000000000002,20.900000000000002,20.55,N/A,N/A -2012,10,7,4,30,101650,100470,99330,84.58,0,11.1,11.950000000000001,12.11,12.16,12.16,12.15,12.11,12.07,11.94,37.2,37.550000000000004,37.800000000000004,38.050000000000004,38.29,38.52,38.79,39.03,39.63,21.740000000000002,21.1,20.87,20.650000000000002,20.45,20.26,20.06,19.88,19.51,N/A,N/A -2012,10,7,5,30,101680,100490,99340,84.47,0,10.39,11.13,11.27,11.31,11.32,11.31,11.28,11.24,11.15,31.5,31.92,32.2,32.47,32.74,33,33.29,33.56,34.21,20.82,20.16,19.92,19.7,19.5,19.3,19.1,18.92,18.55,N/A,N/A -2012,10,7,6,30,101730,100540,99390,83.09,0,9.99,10.69,10.83,10.88,10.9,10.9,10.88,10.86,10.8,28.88,29.32,29.61,29.900000000000002,30.17,30.44,30.73,31,31.61,20.32,19.650000000000002,19.400000000000002,19.17,18.96,18.76,18.56,18.37,17.990000000000002,N/A,N/A -2012,10,7,7,30,101790,100600,99440,81.89,0,10.6,11.370000000000001,11.53,11.59,11.620000000000001,11.620000000000001,11.61,11.6,11.540000000000001,24.76,25.01,25.16,25.310000000000002,25.45,25.59,25.75,25.900000000000002,26.25,19.56,18.84,18.580000000000002,18.35,18.13,17.93,17.72,17.53,17.14,N/A,N/A -2012,10,7,8,30,101840,100640,99480,82.52,0,10.11,10.82,10.96,11.01,11.040000000000001,11.040000000000001,11.03,11.02,10.96,23.77,24.09,24.310000000000002,24.52,24.72,24.91,25.13,25.32,25.77,19.06,18.330000000000002,18.07,17.84,17.62,17.42,17.22,17.03,16.64,N/A,N/A -2012,10,7,9,30,101870,100670,99500,85.05,0,11.21,12.030000000000001,12.19,12.26,12.290000000000001,12.3,12.290000000000001,12.27,12.22,25.25,25.43,25.55,25.67,25.79,25.900000000000002,26.02,26.13,26.400000000000002,18.21,17.42,17.14,16.9,16.68,16.48,16.27,16.080000000000002,15.69,N/A,N/A -2012,10,7,10,30,101930,100730,99560,85.89,0,10.35,11.08,11.23,11.290000000000001,11.31,11.32,11.31,11.290000000000001,11.24,25.740000000000002,25.85,25.94,26.03,26.13,26.22,26.330000000000002,26.43,26.66,17.82,17.03,16.75,16.51,16.29,16.09,15.88,15.68,15.290000000000001,N/A,N/A -2012,10,7,11,30,101940,100740,99570,86.60000000000001,0,10.66,11.4,11.540000000000001,11.59,11.620000000000001,11.620000000000001,11.61,11.6,11.55,19.35,19.56,19.69,19.81,19.94,20.05,20.18,20.3,20.580000000000002,17.41,16.6,16.32,16.080000000000002,15.860000000000001,15.66,15.450000000000001,15.26,14.870000000000001,N/A,N/A -2012,10,7,12,30,101990,100780,99610,86.69,0,10.27,10.97,11.11,11.17,11.19,11.200000000000001,11.19,11.19,11.14,21.18,21.330000000000002,21.42,21.51,21.61,21.7,21.8,21.89,22.12,17.04,16.22,15.94,15.700000000000001,15.48,15.280000000000001,15.07,14.870000000000001,14.48,N/A,N/A -2012,10,7,13,30,102030,100820,99650,86.4,0,10.43,11.13,11.25,11.3,11.31,11.31,11.290000000000001,11.27,11.200000000000001,22.8,23,23.12,23.240000000000002,23.37,23.48,23.61,23.740000000000002,24.02,16.38,15.540000000000001,15.26,15.01,14.780000000000001,14.58,14.370000000000001,14.18,13.790000000000001,N/A,N/A -2012,10,7,14,30,102050,100840,99660,85.3,0,10.6,11.32,11.44,11.49,11.5,11.5,11.48,11.46,11.39,19.79,20.01,20.150000000000002,20.29,20.42,20.54,20.68,20.81,21.11,16.11,15.25,14.97,14.72,14.5,14.3,14.09,13.89,13.5,N/A,N/A -2012,10,7,15,30,102040,100830,99650,82.82000000000001,0,10.200000000000001,10.88,11,11.040000000000001,11.06,11.06,11.040000000000001,11.03,10.97,16.740000000000002,16.990000000000002,17.16,17.32,17.490000000000002,17.63,17.8,17.96,18.3,16.19,15.36,15.07,14.83,14.61,14.41,14.200000000000001,14,13.61,N/A,N/A -2012,10,7,16,30,102040,100830,99650,79.66,0,9.52,10.14,10.25,10.3,10.32,10.33,10.32,10.32,10.27,16.88,17.27,17.5,17.73,17.95,18.16,18.38,18.580000000000002,19.02,16.61,15.81,15.530000000000001,15.290000000000001,15.07,14.86,14.65,14.46,14.06,N/A,N/A -2012,10,7,17,30,101990,100790,99610,75.38,0,9.27,9.88,9.99,10.05,10.07,10.08,10.07,10.06,10.03,17.740000000000002,17.89,18.01,18.12,18.23,18.32,18.43,18.53,18.75,17.2,16.43,16.16,15.93,15.700000000000001,15.5,15.290000000000001,15.1,14.700000000000001,N/A,N/A -2012,10,7,18,30,101990,100780,99620,72.68,0,8.05,8.56,8.67,8.72,8.75,8.76,8.77,8.77,8.76,22.53,22.67,22.79,22.900000000000002,23,23.1,23.2,23.29,23.490000000000002,18.25,17.55,17.29,17.06,16.830000000000002,16.63,16.42,16.22,15.82,N/A,N/A -2012,10,7,19,30,101950,100760,99590,70.03,0,7.6000000000000005,8.07,8.16,8.21,8.23,8.25,8.26,8.26,8.25,22.79,22.81,22.82,22.82,22.82,22.81,22.81,22.81,22.81,19.14,18.490000000000002,18.25,18.02,17.8,17.6,17.39,17.2,16.8,N/A,N/A -2012,10,7,20,30,101910,100710,99560,67.08,0,7.29,7.74,7.84,7.9,7.930000000000001,7.95,7.96,7.97,7.97,19.580000000000002,19.830000000000002,19.92,20.02,20.11,20.2,20.3,20.39,20.57,20.02,19.400000000000002,19.16,18.94,18.72,18.52,18.31,18.12,17.72,N/A,N/A -2012,10,7,21,30,101850,100660,99510,67.04,0,7.61,8.1,8.2,8.25,8.28,8.290000000000001,8.3,8.31,8.31,11.14,11.55,11.83,12.09,12.31,12.52,12.73,12.92,13.3,20.64,20.05,19.81,19.59,19.37,19.17,18.97,18.77,18.37,N/A,N/A -2012,10,7,22,30,101880,100690,99540,65.34,0,7.29,7.75,7.84,7.88,7.91,7.92,7.930000000000001,7.930000000000001,7.92,16.5,17.11,17.44,17.75,18.05,18.34,18.63,18.89,19.45,20.94,20.37,20.14,19.91,19.7,19.51,19.3,19.11,18.71,N/A,N/A -2012,10,7,23,30,101890,100710,99550,66.77,0,7.26,7.69,7.7700000000000005,7.8,7.8100000000000005,7.8100000000000005,7.8100000000000005,7.8,7.7700000000000005,21.25,21.73,22.01,22.27,22.52,22.75,22.98,23.19,23.650000000000002,21,20.43,20.2,19.98,19.77,19.57,19.36,19.16,18.76,N/A,N/A -2012,10,8,0,30,101900,100710,99550,68.09,0,7.9,8.370000000000001,8.44,8.46,8.46,8.44,8.42,8.4,8.33,14.98,15.24,15.4,15.56,15.71,15.84,15.99,16.13,16.41,20.63,20.02,19.79,19.56,19.35,19.150000000000002,18.94,18.75,18.36,N/A,N/A -2012,10,8,1,30,101950,100750,99600,71.60000000000001,0,8.91,9.47,9.57,9.6,9.6,9.6,9.57,9.55,9.48,14.07,14.43,14.63,14.83,15.02,15.21,15.4,15.57,15.96,19.84,19.18,18.93,18.7,18.48,18.28,18.07,17.88,17.490000000000002,N/A,N/A -2012,10,8,2,30,101990,100790,99630,72.48,0,8.92,9.49,9.61,9.65,9.66,9.67,9.65,9.64,9.59,22.95,23.19,23.34,23.48,23.62,23.740000000000002,23.87,24,24.27,19.32,18.63,18.38,18.150000000000002,17.93,17.73,17.52,17.330000000000002,16.93,N/A,N/A -2012,10,8,3,30,101980,100780,99620,73.56,0,9.34,9.96,10.08,10.120000000000001,10.14,10.14,10.120000000000001,10.1,10.05,24.45,24.77,24.96,25.13,25.3,25.46,25.63,25.78,26.12,19.22,18.52,18.27,18.04,17.82,17.62,17.41,17.22,16.82,N/A,N/A -2012,10,8,4,30,101960,100760,99600,74.87,0,9.63,10.27,10.39,10.44,10.46,10.46,10.44,10.42,10.36,26.13,26.44,26.650000000000002,26.84,27.02,27.19,27.37,27.53,27.87,19.04,18.32,18.07,17.830000000000002,17.61,17.41,17.2,17.01,16.61,N/A,N/A -2012,10,8,5,30,101970,100780,99610,75.71000000000001,0,9.5,10.13,10.25,10.290000000000001,10.31,10.31,10.290000000000001,10.28,10.22,30.11,30.53,30.8,31.05,31.29,31.51,31.740000000000002,31.95,32.410000000000004,19.01,18.29,18.04,17.8,17.580000000000002,17.38,17.17,16.98,16.59,N/A,N/A -2012,10,8,6,30,102000,100800,99640,75.71000000000001,0,9.46,10.08,10.200000000000001,10.24,10.25,10.25,10.24,10.22,10.17,29.47,29.900000000000002,30.18,30.44,30.7,30.93,31.17,31.39,31.86,18.89,18.17,17.92,17.68,17.46,17.26,17.05,16.85,16.46,N/A,N/A -2012,10,8,7,30,102030,100830,99670,74.98,0,9.1,9.67,9.78,9.81,9.82,9.81,9.8,9.78,9.71,31.330000000000002,31.84,32.14,32.410000000000004,32.67,32.92,33.17,33.4,33.89,18.650000000000002,17.93,17.68,17.44,17.23,17.02,16.81,16.62,16.22,N/A,N/A -2012,10,8,8,30,102040,100840,99670,76.14,0,8.53,9.040000000000001,9.13,9.15,9.15,9.14,9.120000000000001,9.09,9.02,28.62,28.990000000000002,29.22,29.43,29.64,29.830000000000002,30.02,30.2,30.580000000000002,18.5,17.81,17.56,17.32,17.11,16.91,16.7,16.51,16.11,N/A,N/A -2012,10,8,9,30,102050,100850,99690,75.16,0,7.890000000000001,8.33,8.4,8.42,8.41,8.4,8.38,8.36,8.290000000000001,29.6,30.02,30.32,30.59,30.84,31.07,31.310000000000002,31.53,31.98,18.6,17.93,17.68,17.45,17.240000000000002,17.03,16.82,16.63,16.240000000000002,N/A,N/A -2012,10,8,10,30,102100,100890,99730,74.77,0,8.120000000000001,8.56,8.620000000000001,8.63,8.620000000000001,8.61,8.58,8.55,8.47,24.310000000000002,24.900000000000002,25.3,25.67,26.02,26.35,26.7,27.01,27.69,18.45,17.76,17.51,17.28,17.06,16.86,16.65,16.46,16.06,N/A,N/A -2012,10,8,11,30,102130,100920,99750,73.69,0,8.16,8.59,8.65,8.65,8.63,8.6,8.56,8.52,8.41,19.53,19.87,20.09,20.31,20.52,20.7,20.92,21.12,21.54,17.72,17.01,16.75,16.51,16.3,16.1,15.89,15.700000000000001,15.31,N/A,N/A -2012,10,8,12,30,102140,100930,99760,74.53,0,8.38,8.84,8.9,8.91,8.89,8.870000000000001,8.83,8.8,8.71,18.27,18.45,18.57,18.68,18.79,18.89,18.990000000000002,19.080000000000002,19.29,17.35,16.62,16.35,16.12,15.9,15.700000000000001,15.49,15.3,14.9,N/A,N/A -2012,10,8,13,30,102180,100970,99800,74.46000000000001,0,9.17,9.71,9.8,9.81,9.81,9.78,9.75,9.71,9.620000000000001,17.580000000000002,17.71,17.77,17.84,17.900000000000002,17.96,18.02,18.080000000000002,18.2,16.91,16.14,15.860000000000001,15.620000000000001,15.4,15.19,14.98,14.790000000000001,14.39,N/A,N/A -2012,10,8,14,30,102210,101000,99830,74.16,0,8.01,8.44,8.51,8.52,8.51,8.5,8.47,8.44,8.370000000000001,26.29,26.5,26.64,26.77,26.88,26.990000000000002,27.09,27.19,27.38,17.03,16.3,16.03,15.790000000000001,15.57,15.370000000000001,15.16,14.96,14.57,N/A,N/A -2012,10,8,15,30,102210,101000,99830,73.02,0,7.04,7.43,7.49,7.51,7.5200000000000005,7.5200000000000005,7.51,7.5,7.46,33.6,33.8,33.92,34.03,34.12,34.22,34.32,34.4,34.58,17.7,17.02,16.76,16.52,16.3,16.1,15.89,15.69,15.3,N/A,N/A -2012,10,8,16,30,102200,100990,99820,73.81,0,6.79,7.1000000000000005,7.12,7.11,7.08,7.0600000000000005,7.0200000000000005,6.98,6.890000000000001,19.91,20.48,20.830000000000002,21.18,21.5,21.8,22.11,22.400000000000002,23.01,17.77,17.11,16.86,16.62,16.41,16.2,16,15.8,15.41,N/A,N/A -2012,10,8,17,30,102140,100940,99770,70.78,0,6.8,7.12,7.16,7.15,7.140000000000001,7.12,7.08,7.05,6.98,16.78,17.080000000000002,17.27,17.46,17.63,17.79,17.97,18.13,18.48,17.85,17.19,16.94,16.71,16.5,16.3,16.09,15.9,15.5,N/A,N/A -2012,10,8,18,30,102140,100930,99760,68,0,5.5600000000000005,5.83,5.87,5.89,5.9,5.9,5.89,5.89,5.87,19.63,19.68,19.72,19.75,19.79,19.82,19.85,19.88,19.95,18.28,17.66,17.42,17.2,16.98,16.78,16.57,16.38,15.98,N/A,N/A -2012,10,8,19,30,102090,100890,99720,67.52,0,5.46,5.74,5.8,5.83,5.8500000000000005,5.86,5.87,5.87,5.88,17.59,17.55,17.56,17.57,17.580000000000002,17.580000000000002,17.59,17.6,17.61,19.05,18.46,18.23,18,17.78,17.580000000000002,17.37,17.18,16.78,N/A,N/A -2012,10,8,20,30,102030,100840,99680,64.81,0,4.96,5.19,5.22,5.23,5.24,5.24,5.23,5.22,5.21,16.73,16.9,17.04,17.18,17.3,17.41,17.53,17.64,17.86,19.54,18.98,18.75,18.53,18.32,18.12,17.91,17.72,17.32,N/A,N/A -2012,10,8,21,30,102010,100820,99660,64.42,0,3.72,3.89,3.92,3.94,3.96,3.96,3.97,3.97,3.98,26.25,26.71,26.97,27.22,27.45,27.66,27.87,28.060000000000002,28.46,20,19.48,19.26,19.04,18.830000000000002,18.63,18.43,18.23,17.830000000000002,N/A,N/A -2012,10,8,22,30,101990,100790,99640,64.28,0,3.45,3.6,3.62,3.63,3.64,3.65,3.65,3.65,3.66,39.02,38.68,38.37,38.06,37.79,37.54,37.28,37.04,36.58,20.45,19.95,19.73,19.51,19.3,19.11,18.900000000000002,18.71,18.31,N/A,N/A -2012,10,8,23,30,101950,100760,99600,61.92,0,4.04,4.19,4.21,4.2,4.19,4.18,4.17,4.15,4.12,50.01,49.09,48.51,47.94,47.410000000000004,46.910000000000004,46.36,45.86,44.800000000000004,20.78,20.27,20.06,19.84,19.64,19.44,19.240000000000002,19.05,18.66,N/A,N/A -2012,10,9,0,30,101920,100730,99580,61.46,0,3.7800000000000002,3.95,3.97,3.98,3.98,3.98,3.98,3.97,3.96,40.89,40.82,40.72,40.63,40.53,40.44,40.33,40.230000000000004,39.980000000000004,21.07,20.580000000000002,20.37,20.150000000000002,19.95,19.76,19.55,19.36,18.97,N/A,N/A -2012,10,9,1,30,101930,100740,99590,63.17,0,3.7600000000000002,3.92,3.94,3.94,3.93,3.93,3.92,3.91,3.89,36.94,37.35,37.61,37.87,38.1,38.31,38.54,38.75,39.19,21.29,20.8,20.6,20.38,20.17,19.98,19.77,19.59,19.19,N/A,N/A -2012,10,9,2,30,101940,100750,99600,64.84,0,4.32,4.48,4.48,4.47,4.45,4.43,4.41,4.39,4.34,49.18,49.64,49.980000000000004,50.32,50.64,50.94,51.26,51.550000000000004,52.2,21.330000000000002,20.84,20.63,20.41,20.21,20.01,19.81,19.62,19.22,N/A,N/A -2012,10,9,3,30,101910,100730,99580,68.07000000000001,0,4.72,4.91,4.93,4.93,4.91,4.9,4.88,4.86,4.82,49.51,50.34,50.89,51.43,51.92,52.38,52.86,53.300000000000004,54.19,21.32,20.81,20.6,20.38,20.18,19.98,19.78,19.59,19.19,N/A,N/A -2012,10,9,4,30,101880,100690,99540,69.57000000000001,0,4.62,4.82,4.84,4.84,4.84,4.83,4.82,4.8,4.7700000000000005,57.97,58.77,59.25,59.71,60.120000000000005,60.51,60.910000000000004,61.28,62.04,21.400000000000002,20.900000000000002,20.69,20.47,20.27,20.07,19.87,19.68,19.28,N/A,N/A -2012,10,9,5,30,101850,100670,99520,71.76,0,4.14,4.29,4.3100000000000005,4.3,4.29,4.28,4.2700000000000005,4.25,4.22,67.73,68.53,69.01,69.47,69.89,70.28,70.67,71.03,71.79,21.54,21.05,20.84,20.62,20.42,20.22,20.02,19.830000000000002,19.44,N/A,N/A -2012,10,9,6,30,101850,100670,99520,70.85000000000001,0,3.59,3.72,3.73,3.72,3.7,3.69,3.67,3.66,3.63,93.17,93.43,93.53,93.62,93.71000000000001,93.78,93.85000000000001,93.91,94.03,21.82,21.37,21.18,20.96,20.76,20.56,20.36,20.17,19.78,N/A,N/A -2012,10,9,7,30,101860,100680,99530,70.78,0,3.42,3.58,3.61,3.63,3.65,3.66,3.67,3.68,3.7,99.87,100.25,100.59,100.91,101.2,101.47,101.76,102.03,102.59,21.93,21.490000000000002,21.3,21.09,20.89,20.69,20.490000000000002,20.3,19.91,N/A,N/A -2012,10,9,8,30,101850,100670,99520,75.14,0,3.79,3.98,4.0200000000000005,4.04,4.05,4.07,4.07,4.08,4.09,105.31,106.10000000000001,106.46000000000001,106.8,107.11,107.41,107.7,107.97,108.53,22.14,21.7,21.5,21.29,21.09,20.89,20.69,20.5,20.11,N/A,N/A -2012,10,9,9,30,101840,100660,99520,73.39,0,3.71,3.86,3.87,3.87,3.87,3.86,3.85,3.85,3.8200000000000003,132.95,133.37,133.56,133.74,133.89000000000001,134.04,134.19,134.33,134.61,22.42,21.98,21.79,21.580000000000002,21.38,21.18,20.98,20.79,20.400000000000002,N/A,N/A -2012,10,9,10,30,101840,100660,99520,73.8,0,3.85,3.99,3.99,3.98,3.96,3.94,3.92,3.9,3.85,129.42000000000002,130.21,130.69,131.18,131.62,132.04,132.48,132.88,133.75,22.64,22.22,22.02,21.81,21.61,21.42,21.21,21.03,20.63,N/A,N/A -2012,10,9,11,30,101860,100680,99540,74.13,0,2.77,2.96,3.02,3.06,3.09,3.13,3.15,3.17,3.2,118.09,120.3,121.59,122.77,123.78,124.69,125.58,126.4,128.01,22.830000000000002,22.43,22.240000000000002,22.03,21.830000000000002,21.64,21.44,21.25,20.86,N/A,N/A -2012,10,9,12,30,101850,100670,99530,73.17,0,3.43,3.59,3.62,3.64,3.65,3.66,3.66,3.67,3.67,151.6,152.04,152.20000000000002,152.35,152.49,152.62,152.76,152.89000000000001,153.14000000000001,23.19,22.78,22.59,22.39,22.19,22,21.79,21.61,21.22,N/A,N/A -2012,10,9,13,30,101840,100660,99520,70.38,0,1.45,1.53,1.56,1.59,1.62,1.6400000000000001,1.67,1.69,1.75,147.9,149.36,150.29,151.13,151.86,152.52,153.16,153.75,154.86,23.41,23.04,22.85,22.650000000000002,22.46,22.27,22.07,21.89,21.5,N/A,N/A -2012,10,9,14,30,101820,100640,99510,74.08,0,3.24,3.37,3.38,3.37,3.35,3.34,3.33,3.31,3.2800000000000002,126.29,127.11,127.52,127.89,128.23,128.54,128.84,129.1,129.62,23.580000000000002,23.19,23,22.8,22.6,22.41,22.21,22.03,21.64,N/A,N/A -2012,10,9,15,30,101850,100680,99540,79.52,0,4,4.14,4.15,4.13,4.11,4.09,4.0600000000000005,4.03,3.98,133.97,134.72,135.21,135.71,136.19,136.65,137.13,137.57,138.55,23.330000000000002,22.92,22.740000000000002,22.53,22.34,22.150000000000002,21.95,21.76,21.38,N/A,N/A -2012,10,9,16,30,101810,100640,99500,79.39,0,3.22,3.36,3.39,3.4,3.41,3.42,3.42,3.43,3.44,117.07000000000001,118.86,119.99000000000001,121.08,122.07000000000001,123.02,123.97,124.84,126.67,23.5,23.11,22.92,22.72,22.52,22.330000000000002,22.13,21.94,21.56,N/A,N/A -2012,10,9,17,30,101780,100610,99470,76.60000000000001,0,3.63,3.8000000000000003,3.83,3.85,3.86,3.87,3.87,3.88,3.88,146.27,147.13,147.72,148.27,148.76,149.24,149.71,150.14000000000001,151.01,23.830000000000002,23.45,23.26,23.06,22.86,22.67,22.47,22.29,21.900000000000002,N/A,N/A -2012,10,9,18,30,101740,100570,99440,79.74,0,4.1,4.33,4.37,4.39,4.4,4.41,4.41,4.41,4.41,140.44,141.12,141.49,141.82,142.11,142.36,142.61,142.85,143.29,23.95,23.56,23.37,23.16,22.97,22.77,22.57,22.39,22,N/A,N/A -2012,10,9,19,30,101720,100550,99420,79.58,0,5.42,5.76,5.82,5.8500000000000005,5.87,5.88,5.88,5.88,5.87,139.6,140.11,140.42000000000002,140.72,140.98,141.23,141.49,141.73,142.24,24.07,23.67,23.48,23.27,23.080000000000002,22.89,22.69,22.5,22.11,N/A,N/A -2012,10,9,20,30,101670,100500,99370,79.24,0,5.08,5.36,5.41,5.43,5.44,5.44,5.43,5.43,5.41,145.27,145.68,145.94,146.18,146.4,146.61,146.81,147.01,147.41,24.2,23.81,23.62,23.42,23.22,23.03,22.830000000000002,22.650000000000002,22.26,N/A,N/A -2012,10,9,21,30,101630,100470,99330,77.77,0,4.92,5.18,5.21,5.21,5.19,5.18,5.15,5.13,5.08,165.56,165.37,165.28,165.20000000000002,165.12,165.05,164.99,164.94,164.82,24.400000000000002,24.03,23.85,23.64,23.45,23.26,23.06,22.87,22.48,N/A,N/A -2012,10,9,22,30,101610,100450,99320,79.83,0,5.48,5.86,5.95,6,6.03,6.05,6.07,6.08,6.09,151.23,151.39000000000001,151.48,151.57,151.66,151.74,151.82,151.91,152.08,24.38,24,23.82,23.61,23.42,23.23,23.03,22.84,22.45,N/A,N/A -2012,10,9,23,30,101580,100420,99290,78.19,0,4.29,4.57,4.64,4.67,4.7,4.72,4.74,4.75,4.7700000000000005,165.07,165.33,165.61,165.88,166.13,166.38,166.62,166.85,167.34,24.44,24.080000000000002,23.89,23.69,23.5,23.31,23.11,22.92,22.53,N/A,N/A -2012,10,10,0,30,101570,100410,99280,79.15,0,5.38,5.71,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8,5.8,5.76,161.03,161.35,161.72,162.11,162.48,162.85,163.25,163.62,164.45000000000002,24.6,24.23,24.060000000000002,23.85,23.66,23.47,23.27,23.09,22.7,N/A,N/A -2012,10,10,1,30,101580,100410,99280,79.73,0.4,6.05,6.49,6.58,6.63,6.65,6.66,6.67,6.67,6.65,166.62,166.65,166.81,167.01,167.22,167.43,167.67000000000002,167.9,168.46,24.66,24.29,24.11,23.91,23.71,23.53,23.330000000000002,23.150000000000002,22.77,N/A,N/A -2012,10,10,2,30,101600,100440,99310,76.67,0,6.45,6.890000000000001,6.98,7.01,7.03,7.04,7.03,7.03,7.01,171.49,171.36,171.33,171.32,171.3,171.28,171.27,171.25,171.27,24.91,24.55,24.38,24.18,23.98,23.79,23.6,23.41,23.03,N/A,N/A -2012,10,10,3,30,101590,100430,99300,77.16,0,7.32,7.8100000000000005,7.87,7.87,7.84,7.79,7.74,7.68,7.5600000000000005,177.81,177.98,178.02,178.03,178.03,178.02,178,177.97,177.87,25.03,24.68,24.51,24.310000000000002,24.12,23.93,23.740000000000002,23.55,23.17,N/A,N/A -2012,10,10,4,30,101590,100430,99300,79.68,0,6.3500000000000005,6.88,7.01,7.08,7.13,7.17,7.19,7.21,7.23,173.51,173.94,174.11,174.24,174.34,174.41,174.47,174.52,174.59,25,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A -2012,10,10,5,30,101610,100450,99320,77.99,0,7,7.54,7.68,7.73,7.7700000000000005,7.79,7.8,7.8,7.79,177.6,178.25,178.48,178.67000000000002,178.81,178.93,179.04,179.14000000000001,179.3,25.19,24.86,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A -2012,10,10,6,30,101630,100470,99340,77.65,0,6.54,7.09,7.21,7.26,7.29,7.3100000000000005,7.3100000000000005,7.3,7.2700000000000005,177.17000000000002,177.36,177.4,177.42000000000002,177.43,177.42000000000002,177.4,177.39000000000001,177.34,25.28,24.94,24.76,24.560000000000002,24.36,24.17,23.97,23.78,23.39,N/A,N/A -2012,10,10,7,30,101670,100510,99380,75.66,0,5.75,6.2,6.3100000000000005,6.38,6.42,6.46,6.48,6.51,6.54,176.19,176.73,177.03,177.28,177.48,177.68,177.85,178.02,178.34,25.400000000000002,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.54,N/A,N/A -2012,10,10,8,30,101710,100550,99430,76.63,0,4.87,5.21,5.28,5.32,5.34,5.36,5.37,5.37,5.38,180.11,180.75,181.11,181.43,181.70000000000002,181.96,182.18,182.38,182.76,25.48,25.150000000000002,24.98,24.78,24.59,24.39,24.2,24.01,23.62,N/A,N/A -2012,10,10,9,30,101760,100590,99470,73.81,0,4.14,4.5,4.61,4.69,4.76,4.82,4.88,4.93,5.0200000000000005,170.66,171.85,172.52,173.06,173.52,173.93,174.3,174.64000000000001,175.3,25.490000000000002,25.18,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,10,10,30,101790,100630,99500,72.86,0,3.3200000000000003,3.56,3.63,3.67,3.71,3.74,3.7600000000000002,3.79,3.83,178.53,178.65,178.68,178.64000000000001,178.57,178.48,178.37,178.27,177.99,25.59,25.27,25.1,24.900000000000002,24.72,24.53,24.330000000000002,24.150000000000002,23.76,N/A,N/A -2012,10,10,11,30,101820,100660,99530,75,0,2.59,2.7600000000000002,2.8000000000000003,2.83,2.85,2.86,2.88,2.89,2.91,155.73,157.36,158.31,159.21,160,160.76,161.49,162.17000000000002,163.53,25.560000000000002,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A -2012,10,10,12,30,101870,100710,99580,75.73,0,3.67,3.89,3.92,3.93,3.93,3.92,3.92,3.91,3.89,157.16,157.64000000000001,157.91,158.15,158.36,158.56,158.75,158.93,159.28,25.580000000000002,25.26,25.09,24.900000000000002,24.71,24.51,24.32,24.13,23.740000000000002,N/A,N/A -2012,10,10,13,30,101920,100750,99630,76.60000000000001,0,3.2800000000000002,3.49,3.5300000000000002,3.56,3.58,3.6,3.61,3.62,3.64,136.17000000000002,137.22,137.82,138.37,138.85,139.29,139.73,140.13,140.89000000000001,25.51,25.2,25.03,24.830000000000002,24.64,24.45,24.25,24.07,23.68,N/A,N/A -2012,10,10,14,30,101950,100780,99660,76.69,0,3.48,3.67,3.7,3.72,3.72,3.73,3.72,3.72,3.71,121.18,121.62,121.9,122.19,122.46000000000001,122.71000000000001,122.97,123.22,123.76,25.47,25.150000000000002,24.98,24.79,24.6,24.41,24.21,24.03,23.64,N/A,N/A -2012,10,10,15,30,101960,100800,99670,74.5,0,3.68,3.91,3.96,3.98,4,4.0200000000000005,4.03,4.03,4.05,131.68,132.15,132.4,132.65,132.88,133.11,133.35,133.56,134.05,25.54,25.22,25.05,24.85,24.66,24.47,24.28,24.09,23.71,N/A,N/A -2012,10,10,16,30,101950,100780,99650,76.84,0,3.74,3.96,4,4.0200000000000005,4.03,4.04,4.05,4.05,4.05,117.19,117.4,117.61,117.81,117.99000000000001,118.17,118.35000000000001,118.52,118.88,25.5,25.17,25,24.8,24.61,24.42,24.22,24.03,23.650000000000002,N/A,N/A -2012,10,10,17,30,101920,100760,99630,80.72,0,4.38,4.65,4.71,4.73,4.75,4.75,4.75,4.75,4.75,123.5,123.91,124.12,124.32000000000001,124.48,124.64,124.8,124.95,125.23,25.42,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.55,N/A,N/A -2012,10,10,18,30,101890,100730,99600,79.86,0,3.92,4.15,4.2,4.21,4.23,4.24,4.24,4.24,4.24,110.24000000000001,110.44,110.58,110.71000000000001,110.82000000000001,110.92,111.01,111.11,111.3,25.43,25.09,24.91,24.71,24.52,24.330000000000002,24.13,23.95,23.56,N/A,N/A -2012,10,10,19,30,101880,100710,99580,80.74,0,4.8500000000000005,5.16,5.23,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,5.32,108.34,108.5,108.62,108.74000000000001,108.83,108.93,109.02,109.10000000000001,109.29,25.45,25.1,24.93,24.73,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A -2012,10,10,20,30,101850,100690,99560,80.89,0,5.14,5.51,5.58,5.62,5.64,5.65,5.66,5.66,5.66,108.12,108.21000000000001,108.25,108.26,108.27,108.27,108.27,108.27,108.25,25.46,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A -2012,10,10,21,30,101870,100700,99570,81.39,0,5.78,6.21,6.3100000000000005,6.3500000000000005,6.38,6.4,6.41,6.41,6.42,110.78,111.01,111.19,111.37,111.54,111.7,111.87,112.04,112.39,25.42,25.080000000000002,24.91,24.71,24.52,24.330000000000002,24.13,23.95,23.56,N/A,N/A -2012,10,10,22,30,101880,100710,99580,82,0,6.36,6.8500000000000005,6.96,7.0200000000000005,7.05,7.07,7.07,7.07,7.07,118.19,118.33,118.4,118.47,118.52,118.58,118.62,118.67,118.75,25.400000000000002,25.060000000000002,24.89,24.68,24.5,24.3,24.11,23.92,23.54,N/A,N/A -2012,10,10,23,30,101880,100720,99590,84.43,0,6.41,6.91,7.0200000000000005,7.07,7.1000000000000005,7.12,7.12,7.12,7.11,122.73,122.91,123.02,123.14,123.26,123.38000000000001,123.51,123.62,123.89,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24.01,23.82,23.44,N/A,N/A -2012,10,11,0,30,101890,100730,99600,81.83,0,6.640000000000001,7.2,7.33,7.4,7.44,7.47,7.5,7.51,7.54,133.53,133.6,133.67000000000002,133.76,133.83,133.9,133.98,134.05,134.2,25.39,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A -2012,10,11,1,30,101880,100710,99590,81.76,0,6.24,6.72,6.84,6.890000000000001,6.93,6.95,6.96,6.97,6.98,122.98,123,123.06,123.10000000000001,123.12,123.14,123.15,123.16,123.16,25.37,25.04,24.86,24.67,24.48,24.29,24.09,23.91,23.53,N/A,N/A -2012,10,11,2,30,101940,100770,99650,81.45,0,6.09,6.6000000000000005,6.73,6.8,6.8500000000000005,6.88,6.91,6.93,6.96,137.63,137.76,137.83,137.9,137.97,138.05,138.12,138.19,138.34,25.42,25.09,24.92,24.72,24.52,24.330000000000002,24.14,23.95,23.57,N/A,N/A -2012,10,11,3,30,101930,100770,99640,78.65,0,5.8500000000000005,6.36,6.49,6.57,6.63,6.68,6.72,6.76,6.84,131.05,131.16,131.24,131.32,131.41,131.49,131.57,131.65,131.85,25.52,25.2,25.03,24.830000000000002,24.650000000000002,24.46,24.26,24.080000000000002,23.71,N/A,N/A -2012,10,11,4,30,101890,100720,99600,79.17,0,5.86,6.3500000000000005,6.47,6.54,6.6000000000000005,6.640000000000001,6.67,6.71,6.7700000000000005,130.19,130.27,130.32,130.4,130.46,130.53,130.61,130.69,130.87,25.47,25.14,24.97,24.77,24.580000000000002,24.400000000000002,24.2,24.02,23.64,N/A,N/A -2012,10,11,5,30,101900,100740,99610,78.49,0,6.01,6.51,6.63,6.71,6.76,6.8100000000000005,6.8500000000000005,6.890000000000001,6.97,131.4,131.58,131.72,131.87,132,132.14000000000001,132.3,132.44,132.77,25.54,25.22,25.05,24.86,24.67,24.490000000000002,24.3,24.12,23.76,N/A,N/A -2012,10,11,6,30,101910,100750,99620,78.53,0,6.92,7.49,7.61,7.67,7.7,7.72,7.73,7.73,7.72,133.45,133.74,133.88,134.01,134.12,134.23,134.32,134.41,134.57,25.66,25.36,25.2,25.01,24.82,24.64,24.45,24.27,23.900000000000002,N/A,N/A -2012,10,11,7,30,101950,100790,99660,80.42,0,7.12,7.78,7.930000000000001,8.02,8.08,8.11,8.13,8.14,8.15,135.97,136.06,136.14000000000001,136.21,136.28,136.33,136.39000000000001,136.44,136.55,25.61,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A -2012,10,11,8,30,101960,100800,99670,80.58,0,6.97,7.68,7.8500000000000005,7.96,8.040000000000001,8.09,8.120000000000001,8.15,8.18,131.87,131.94,132.03,132.12,132.2,132.27,132.34,132.41,132.53,25.64,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.39,24.2,23.81,N/A,N/A -2012,10,11,9,30,101970,100810,99680,78.62,0,6.63,7.29,7.44,7.53,7.59,7.63,7.66,7.68,7.7,129.81,129.77,129.82,129.9,129.97,130.04,130.12,130.2,130.37,25.73,25.42,25.25,25.060000000000002,24.87,24.68,24.48,24.3,23.91,N/A,N/A -2012,10,11,10,30,101990,100820,99690,79.46000000000001,0,6.54,7.0600000000000005,7.17,7.21,7.25,7.26,7.28,7.28,7.3,130.5,130.93,131.18,131.45,131.72,132.01,132.32,132.63,133.34,25.71,25.42,25.26,25.07,24.89,24.71,24.52,24.34,23.98,N/A,N/A -2012,10,11,11,30,102010,100850,99720,78.05,0,5.97,6.5200000000000005,6.66,6.74,6.8100000000000005,6.86,6.92,6.97,7.08,134.46,134.81,135.04,135.28,135.51,135.73,135.98,136.22,136.76,25.8,25.51,25.35,25.150000000000002,24.97,24.79,24.6,24.43,24.060000000000002,N/A,N/A -2012,10,11,12,30,102040,100880,99750,79.42,0,6.79,7.3500000000000005,7.5,7.57,7.62,7.66,7.68,7.71,7.75,128.39000000000001,128.64000000000001,128.81,128.98,129.14000000000001,129.29,129.45,129.6,129.92000000000002,25.73,25.43,25.27,25.07,24.89,24.7,24.51,24.330000000000002,23.96,N/A,N/A -2012,10,11,13,30,102050,100890,99760,79.22,0,6.7,7.25,7.38,7.45,7.49,7.51,7.53,7.54,7.5600000000000005,124.97,125.2,125.35000000000001,125.51,125.66,125.81,125.95,126.09,126.4,25.71,25.41,25.25,25.05,24.86,24.68,24.490000000000002,24.3,23.93,N/A,N/A -2012,10,11,14,30,102090,100920,99790,80.43,0,6.67,7.2700000000000005,7.42,7.5,7.55,7.58,7.6000000000000005,7.62,7.63,123.3,123.48,123.57000000000001,123.67,123.75,123.83,123.9,123.97,124.12,25.67,25.36,25.2,25,24.810000000000002,24.62,24.43,24.240000000000002,23.85,N/A,N/A -2012,10,11,15,30,102090,100930,99800,79.64,0,6.82,7.44,7.59,7.68,7.73,7.7700000000000005,7.8,7.82,7.84,120.07000000000001,120.28,120.37,120.46000000000001,120.54,120.62,120.69,120.76,120.89,25.69,25.38,25.21,25.01,24.830000000000002,24.64,24.44,24.26,23.87,N/A,N/A -2012,10,11,16,30,102090,100930,99800,80.41,0,6.73,7.34,7.48,7.5600000000000005,7.61,7.65,7.68,7.69,7.71,119.86,120.04,120.15,120.25,120.34,120.42,120.51,120.58,120.73,25.67,25.36,25.19,24.990000000000002,24.8,24.61,24.42,24.23,23.85,N/A,N/A -2012,10,11,17,30,102090,100930,99800,80.15,0,6.97,7.61,7.75,7.84,7.9,7.930000000000001,7.96,7.98,8.01,122.58,122.7,122.77,122.83,122.9,122.96000000000001,123.02,123.08,123.2,25.7,25.38,25.21,25.01,24.82,24.63,24.44,24.25,23.87,N/A,N/A -2012,10,11,18,30,102110,100940,99810,79.86,0,7.13,7.78,7.930000000000001,8.01,8.07,8.11,8.13,8.15,8.17,122.78,122.94,123,123.07000000000001,123.13000000000001,123.2,123.27,123.34,123.48,25.71,25.39,25.22,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.88,N/A,N/A -2012,10,11,19,30,102070,100910,99780,80.91,0,6.99,7.61,7.75,7.83,7.88,7.92,7.94,7.96,7.97,117.22,117.52,117.66,117.78,117.9,118,118.11,118.2,118.39,25.64,25.32,25.150000000000002,24.95,24.76,24.57,24.37,24.19,23.81,N/A,N/A -2012,10,11,20,30,102050,100880,99750,80.06,0,6.73,7.34,7.48,7.57,7.62,7.65,7.68,7.7,7.72,119.89,119.99000000000001,120.06,120.14,120.23,120.31,120.4,120.48,120.66,25.650000000000002,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.38,24.2,23.81,N/A,N/A -2012,10,11,21,30,102040,100870,99740,78.41,0,6.6000000000000005,7.18,7.32,7.390000000000001,7.43,7.47,7.49,7.5,7.5200000000000005,122.18,122.28,122.36,122.43,122.5,122.56,122.63,122.7,122.84,25.650000000000002,25.34,25.17,24.97,24.78,24.59,24.400000000000002,24.21,23.830000000000002,N/A,N/A -2012,10,11,22,30,102030,100860,99740,80.15,0,6.49,7.0600000000000005,7.2,7.2700000000000005,7.32,7.36,7.390000000000001,7.4,7.42,122.59,122.66,122.7,122.74000000000001,122.78,122.81,122.84,122.87,122.94,25.61,25.29,25.12,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A -2012,10,11,23,30,102010,100850,99720,82.60000000000001,0,7.34,8.01,8.17,8.26,8.32,8.36,8.39,8.41,8.44,127.03,127.14,127.19,127.23,127.28,127.31,127.36,127.4,127.48,25.51,25.19,25.01,24.82,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,12,0,30,101990,100830,99700,81.69,0,7.05,7.66,7.8,7.86,7.91,7.930000000000001,7.94,7.95,7.94,121.09,121.35000000000001,121.62,121.9,122.17,122.42,122.69,122.94,123.49000000000001,25.63,25.3,25.13,24.94,24.75,24.560000000000002,24.37,24.19,23.81,N/A,N/A -2012,10,12,1,30,102000,100840,99710,81.22,0,7.12,7.8100000000000005,7.96,8.040000000000001,8.09,8.11,8.13,8.13,8.120000000000001,120.05,120.48,120.71000000000001,120.95,121.16,121.36,121.58,121.79,122.2,25.75,25.44,25.28,25.080000000000002,24.900000000000002,24.71,24.52,24.34,23.96,N/A,N/A -2012,10,12,2,30,102020,100850,99720,83.94,0,7.34,7.97,8.11,8.18,8.22,8.24,8.24,8.24,8.22,121.29,121.64,121.84,122.03,122.22,122.4,122.58,122.76,123.13000000000001,25.41,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.55,N/A,N/A -2012,10,12,3,30,102030,100860,99730,83.44,0,6.890000000000001,7.49,7.640000000000001,7.72,7.78,7.82,7.84,7.86,7.890000000000001,129.13,129.41,129.56,129.71,129.85,129.98,130.1,130.21,130.42000000000002,25.580000000000002,25.25,25.080000000000002,24.87,24.68,24.490000000000002,24.3,24.11,23.72,N/A,N/A -2012,10,12,4,30,102020,100850,99720,84.89,0,7.16,7.75,7.88,7.94,7.98,8.01,8.01,8.02,8.01,120.11,120.45,120.72,120.99000000000001,121.24000000000001,121.49000000000001,121.73,121.97,122.44,25.47,25.14,24.97,24.78,24.59,24.400000000000002,24.2,24.02,23.64,N/A,N/A -2012,10,12,5,30,102000,100840,99710,82.82000000000001,0,7.48,8.17,8.32,8.39,8.44,8.46,8.46,8.46,8.44,121.55,121.73,121.86,122.01,122.17,122.32000000000001,122.48,122.64,123,25.63,25.32,25.150000000000002,24.95,24.76,24.57,24.38,24.2,23.81,N/A,N/A -2012,10,12,6,30,102010,100850,99720,84.32000000000001,0,7.29,7.92,8.05,8.11,8.15,8.17,8.18,8.18,8.17,122.48,122.84,123.05,123.25,123.44,123.61,123.8,123.97,124.33,25.59,25.26,25.09,24.89,24.7,24.51,24.32,24.14,23.75,N/A,N/A -2012,10,12,7,30,102030,100870,99740,83.9,0,7.28,7.98,8.15,8.25,8.32,8.370000000000001,8.4,8.42,8.45,121.67,122.22,122.5,122.76,122.99000000000001,123.21000000000001,123.42,123.61,124,25.78,25.46,25.29,25.09,24.900000000000002,24.72,24.52,24.330000000000002,23.95,N/A,N/A -2012,10,12,8,30,102030,100870,99740,81.48,0,6.51,7.0600000000000005,7.19,7.25,7.28,7.3100000000000005,7.32,7.32,7.32,123.2,123.61,123.87,124.14,124.39,124.63000000000001,124.88000000000001,125.11,125.62,25.830000000000002,25.52,25.36,25.16,24.98,24.79,24.6,24.42,24.04,N/A,N/A -2012,10,12,9,30,102040,100880,99750,84.73,0,6.51,7.07,7.2,7.28,7.33,7.37,7.390000000000001,7.41,7.44,118.67,118.95,119.18,119.43,119.67,119.9,120.14,120.38,120.89,25.61,25.28,25.11,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A -2012,10,12,10,30,102050,100890,99760,81.27,0,6.05,6.57,6.7,6.7700000000000005,6.82,6.86,6.88,6.91,6.94,126.23,126.4,126.52,126.64,126.76,126.87,126.99000000000001,127.11,127.36,25.77,25.45,25.28,25.080000000000002,24.89,24.71,24.51,24.32,23.94,N/A,N/A -2012,10,12,11,30,102070,100900,99780,84.48,0,4.63,4.97,5.05,5.1000000000000005,5.14,5.16,5.19,5.2,5.24,121.79,121.66,121.62,121.58,121.54,121.5,121.47,121.45,121.44,25.59,25.26,25.09,24.900000000000002,24.71,24.52,24.32,24.14,23.76,N/A,N/A -2012,10,12,12,30,102100,100930,99800,85.24,0,5.46,5.8500000000000005,5.93,5.97,5.98,5.99,6,6,5.98,126.37,126.99000000000001,127.36,127.73,128.08,128.42000000000002,128.78,129.12,129.89000000000001,25.55,25.22,25.05,24.86,24.67,24.48,24.29,24.11,23.73,N/A,N/A -2012,10,12,13,30,102110,100950,99820,82.02,0,5.07,5.45,5.54,5.58,5.61,5.63,5.64,5.66,5.67,127.09,127.39,127.59,127.8,128.01,128.22,128.45,128.66,129.17000000000002,25.77,25.46,25.29,25.1,24.91,24.72,24.53,24.35,23.97,N/A,N/A -2012,10,12,14,30,102140,100970,99850,84.06,0,5.09,5.49,5.57,5.62,5.64,5.66,5.67,5.68,5.68,110.06,110.28,110.42,110.56,110.69,110.83,110.98,111.12,111.44,25.67,25.34,25.17,24.97,24.79,24.6,24.400000000000002,24.22,23.84,N/A,N/A -2012,10,12,15,30,102140,100970,99840,83.29,0,4.8,5.12,5.18,5.2,5.2,5.2,5.19,5.18,5.15,103.53,103.91,104.18,104.5,104.82000000000001,105.15,105.54,105.91,106.84,25.73,25.400000000000002,25.23,25.04,24.85,24.66,24.47,24.29,23.91,N/A,N/A -2012,10,12,16,30,102150,100980,99850,87.86,29.3,5.12,5.57,5.72,5.84,5.93,6.01,6.09,6.15,6.29,119.01,118.12,117.51,116.98,116.55,116.19,115.94,115.73,115.61,25.400000000000002,25.07,24.91,24.73,24.55,24.38,24.2,24.03,23.67,N/A,N/A -2012,10,12,17,30,102130,100960,99830,84.94,0,3.24,3.66,3.87,4.13,4.42,4.75,5.0200000000000005,5.26,5.64,105.24000000000001,109.77,112.55,115.46000000000001,118.05,120.51,122.42,124.04,126.03,25.5,25.22,25.080000000000002,24.93,24.79,24.66,24.51,24.36,24.02,N/A,N/A -2012,10,12,18,30,102150,100980,99850,81.85000000000001,0,6.45,7.01,7.13,7.19,7.23,7.25,7.26,7.2700000000000005,7.2700000000000005,123.51,123.37,123.33,123.31,123.31,123.32000000000001,123.33,123.35000000000001,123.39,26.05,25.740000000000002,25.580000000000002,25.38,25.19,25,24.8,24.62,24.240000000000002,N/A,N/A -2012,10,12,19,30,102130,100960,99840,81.16,0,5.7700000000000005,6.22,6.32,6.36,6.390000000000001,6.41,6.41,6.42,6.41,106.45,106.72,106.88,107.05,107.22,107.38,107.54,107.69,108,26.01,25.7,25.53,25.330000000000002,25.14,24.95,24.76,24.57,24.19,N/A,N/A -2012,10,12,20,30,102090,100930,99800,82.36,0,6.05,6.55,6.66,6.71,6.75,6.7700000000000005,6.78,6.79,6.79,108,108.34,108.57000000000001,108.81,109.02,109.23,109.45,109.66,110.11,25.96,25.64,25.47,25.27,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A -2012,10,12,21,30,102070,100910,99780,84.63,0,6.55,7.11,7.22,7.28,7.3100000000000005,7.33,7.33,7.33,7.3100000000000005,104.04,104.46000000000001,104.68,104.88,105.06,105.21000000000001,105.36,105.49000000000001,105.76,25.91,25.59,25.43,25.23,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A -2012,10,12,22,30,102060,100890,99770,85.44,0,7.25,7.91,8.05,8.13,8.17,8.19,8.2,8.21,8.19,105.14,105.3,105.36,105.41,105.46000000000001,105.49000000000001,105.54,105.58,105.66,25.8,25.48,25.310000000000002,25.12,24.92,24.73,24.54,24.36,23.97,N/A,N/A -2012,10,12,23,30,102070,100910,99780,85.76,0,7.5200000000000005,8.19,8.34,8.41,8.45,8.48,8.49,8.49,8.48,106.77,106.79,106.85000000000001,106.91,106.98,107.04,107.13,107.2,107.38,25.72,25.39,25.21,25.01,24.830000000000002,24.64,24.44,24.26,23.88,N/A,N/A -2012,10,13,0,30,102050,100880,99760,87.65,0,7.96,8.69,8.870000000000001,8.97,9.03,9.07,9.1,9.13,9.16,99.7,100.07000000000001,100.28,100.51,100.71000000000001,100.92,101.14,101.36,101.82000000000001,25.66,25.330000000000002,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.2,23.82,N/A,N/A -2012,10,13,1,30,102030,100870,99740,87.26,0,8.88,9.790000000000001,10,10.120000000000001,10.200000000000001,10.26,10.290000000000001,10.32,10.34,112.04,112.46000000000001,112.61,112.75,112.87,112.97,113.07000000000001,113.17,113.38,25.830000000000002,25.5,25.330000000000002,25.13,24.93,24.75,24.55,24.37,23.98,N/A,N/A -2012,10,13,2,30,102030,100870,99750,87.47,0,8.21,9.040000000000001,9.23,9.34,9.4,9.44,9.450000000000001,9.46,9.44,120.32000000000001,120.68,120.85000000000001,121,121.14,121.27,121.4,121.52,121.8,25.94,25.63,25.46,25.26,25.080000000000002,24.89,24.7,24.52,24.14,N/A,N/A -2012,10,13,3,30,102010,100850,99730,87.12,0,8.26,8.99,9.15,9.21,9.26,9.28,9.290000000000001,9.31,9.370000000000001,122.13,122.04,122.06,122.13,122.24000000000001,122.37,122.59,122.83,123.8,25.810000000000002,25.5,25.330000000000002,25.150000000000002,24.97,24.79,24.62,24.45,24.14,N/A,N/A -2012,10,13,4,30,101990,100830,99700,89.56,6.2,7.8500000000000005,8.67,8.91,9.07,9.19,9.290000000000001,9.370000000000001,9.44,9.55,125.71000000000001,126.2,126.43,126.69,126.93,127.17,127.41,127.64,128.07,25.72,25.400000000000002,25.240000000000002,25.05,24.87,24.69,24.5,24.32,23.96,N/A,N/A -2012,10,13,5,30,101960,100800,99670,87.89,0,8.9,9.76,9.950000000000001,10.05,10.11,10.15,10.18,10.200000000000001,10.24,125.09,125.31,125.47,125.66,125.86,126.09,126.36,126.63000000000001,127.38000000000001,25.93,25.62,25.46,25.26,25.080000000000002,24.89,24.7,24.53,24.16,N/A,N/A -2012,10,13,6,30,101960,100800,99680,87.82000000000001,0,8.44,9.290000000000001,9.5,9.620000000000001,9.700000000000001,9.75,9.790000000000001,9.82,9.85,134.45,134.69,134.85,135.03,135.19,135.36,135.54,135.71,136.1,26.03,25.73,25.560000000000002,25.36,25.18,24.990000000000002,24.79,24.61,24.23,N/A,N/A -2012,10,13,7,30,101950,100790,99670,85.53,0,7.78,8.57,8.76,8.870000000000001,8.950000000000001,9.01,9.05,9.09,9.15,149.28,149.19,149.18,149.17000000000002,149.17000000000002,149.16,149.17000000000002,149.19,149.27,26.38,26.11,25.95,25.76,25.580000000000002,25.400000000000002,25.21,25.03,24.66,N/A,N/A -2012,10,13,8,30,101920,100760,99630,83.04,0,8.4,9.27,9.47,9.6,9.68,9.73,9.77,9.8,9.82,155.88,156.02,156.11,156.20000000000002,156.28,156.36,156.44,156.52,156.68,26.5,26.240000000000002,26.09,25.900000000000002,25.72,25.54,25.35,25.17,24.8,N/A,N/A -2012,10,13,9,30,101920,100760,99640,84.8,0,7.87,8.75,8.99,9.15,9.27,9.36,9.44,9.5,9.59,159.69,160,160.1,160.20000000000002,160.27,160.34,160.39000000000001,160.44,160.53,26.5,26.240000000000002,26.09,25.91,25.73,25.54,25.35,25.17,24.8,N/A,N/A -2012,10,13,10,30,101900,100740,99620,81.91,0,9.040000000000001,10.02,10.27,10.43,10.540000000000001,10.63,10.69,10.74,10.82,161.13,161.38,161.54,161.70000000000002,161.86,162.02,162.18,162.33,162.67000000000002,26.63,26.39,26.240000000000002,26.060000000000002,25.88,25.7,25.52,25.34,24.98,N/A,N/A -2012,10,13,11,30,101900,100740,99620,83.26,0,8.78,9.76,10.03,10.200000000000001,10.32,10.42,10.49,10.55,10.64,164.42000000000002,164.46,164.48,164.49,164.5,164.5,164.5,164.5,164.49,26.59,26.34,26.2,26.01,25.830000000000002,25.650000000000002,25.47,25.29,24.92,N/A,N/A -2012,10,13,12,30,101880,100720,99600,84.76,0,9.41,10.46,10.75,10.96,11.11,11.22,11.31,11.38,11.49,165.88,165.16,164.91,164.69,164.51,164.36,164.23,164.12,163.95000000000002,26.580000000000002,26.32,26.16,25.97,25.79,25.61,25.41,25.23,24.85,N/A,N/A -2012,10,13,13,30,101910,100750,99630,84.06,0,10.08,11.21,11.51,11.700000000000001,11.83,11.92,11.99,12.040000000000001,12.1,161.44,161.32,161.33,161.36,161.39000000000001,161.42000000000002,161.46,161.5,161.59,26.48,26.23,26.07,25.88,25.7,25.52,25.330000000000002,25.150000000000002,24.77,N/A,N/A -2012,10,13,14,30,101910,100750,99630,80.69,0,9.57,10.620000000000001,10.870000000000001,11.03,11.13,11.21,11.26,11.3,11.36,162.33,162.42000000000002,162.45000000000002,162.47,162.47,162.47,162.47,162.47,162.45000000000002,26.46,26.2,26.04,25.85,25.67,25.48,25.29,25.11,24.73,N/A,N/A -2012,10,13,15,30,101920,100760,99640,78.56,0,9.93,11.02,11.3,11.47,11.6,11.69,11.76,11.82,11.9,159.35,159.53,159.61,159.70000000000002,159.78,159.86,159.93,160,160.14000000000001,26.44,26.18,26.02,25.84,25.66,25.47,25.28,25.1,24.72,N/A,N/A -2012,10,13,16,30,101890,100730,99600,78.74,0,8.89,9.85,10.08,10.23,10.34,10.42,10.48,10.53,10.6,160.77,161.23,161.45000000000002,161.65,161.83,161.99,162.14000000000001,162.27,162.53,26.48,26.21,26.05,25.86,25.67,25.490000000000002,25.3,25.11,24.73,N/A,N/A -2012,10,13,17,30,101870,100710,99590,79.17,0,9.33,10.32,10.57,10.72,10.82,10.89,10.93,10.97,11.01,154.84,155.25,155.49,155.74,155.96,156.17000000000002,156.37,156.55,156.93,26.41,26.150000000000002,25.990000000000002,25.8,25.62,25.43,25.240000000000002,25.060000000000002,24.68,N/A,N/A -2012,10,13,18,30,101820,100670,99540,78.12,0,8.63,9.540000000000001,9.77,9.91,10.01,10.08,10.13,10.17,10.23,162.05,162.44,162.6,162.76,162.9,163.03,163.15,163.26,163.49,26.490000000000002,26.23,26.07,25.88,25.7,25.52,25.330000000000002,25.150000000000002,24.77,N/A,N/A -2012,10,13,19,30,101790,100640,99520,79.11,0,9.620000000000001,10.69,10.950000000000001,11.11,11.22,11.290000000000001,11.33,11.370000000000001,11.39,160.22,160.45000000000002,160.62,160.79,160.94,161.09,161.23,161.37,161.65,26.52,26.27,26.11,25.92,25.73,25.55,25.36,25.18,24.8,N/A,N/A -2012,10,13,20,30,101730,100570,99450,80.53,0,9.18,10.23,10.52,10.73,10.88,11,11.09,11.17,11.290000000000001,166.39000000000001,166.68,166.79,166.89000000000001,166.98,167.04,167.1,167.15,167.23,26.54,26.29,26.14,25.95,25.77,25.59,25.400000000000002,25.22,24.84,N/A,N/A -2012,10,13,21,30,101700,100540,99420,79.79,0,9.02,9.99,10.25,10.42,10.540000000000001,10.64,10.72,10.78,10.89,168.76,169.25,169.45000000000002,169.63,169.77,169.88,169.98,170.06,170.19,26.57,26.330000000000002,26.19,26,25.830000000000002,25.650000000000002,25.47,25.29,24.92,N/A,N/A -2012,10,13,22,30,101670,100510,99390,80.5,0,9.42,10.450000000000001,10.72,10.89,11.01,11.09,11.15,11.200000000000001,11.27,169.96,169.88,169.84,169.81,169.77,169.74,169.71,169.68,169.62,26.6,26.36,26.2,26.02,25.84,25.66,25.47,25.29,24.92,N/A,N/A -2012,10,13,23,30,101610,100460,99340,80.2,0,9.370000000000001,10.31,10.55,10.69,10.8,10.870000000000001,10.93,10.98,11.07,164.09,164.20000000000002,164.32,164.49,164.66,164.85,165.07,165.27,165.78,26.650000000000002,26.42,26.28,26.11,25.94,25.77,25.59,25.42,25.07,N/A,N/A -2012,10,14,0,30,101620,100470,99350,82.16,0,9.96,11.05,11.36,11.55,11.700000000000001,11.81,11.9,11.97,12.09,169.68,169.78,169.8,169.81,169.81,169.8,169.79,169.77,169.73,26.63,26.400000000000002,26.25,26.07,25.89,25.71,25.53,25.35,24.990000000000002,N/A,N/A -2012,10,14,1,30,101610,100460,99340,80.44,0,9.63,10.700000000000001,10.98,11.19,11.34,11.47,11.56,11.65,11.790000000000001,173.47,173,172.81,172.61,172.43,172.26,172.1,171.94,171.64000000000001,26.84,26.63,26.490000000000002,26.310000000000002,26.14,25.97,25.79,25.61,25.25,N/A,N/A -2012,10,14,2,30,101620,100470,99350,82.72,0,9.75,10.86,11.18,11.4,11.56,11.69,11.790000000000001,11.870000000000001,11.99,170.84,170.99,171.04,171.08,171.11,171.14000000000001,171.17000000000002,171.19,171.23,26.76,26.54,26.39,26.21,26.04,25.86,25.67,25.490000000000002,25.12,N/A,N/A -2012,10,14,3,30,101600,100450,99330,84.66,0,10.38,11.55,11.870000000000001,12.09,12.25,12.370000000000001,12.47,12.55,12.67,164.07,164.34,164.53,164.72,164.9,165.09,165.27,165.44,165.78,26.560000000000002,26.32,26.17,25.98,25.810000000000002,25.63,25.44,25.26,24.900000000000002,N/A,N/A -2012,10,14,4,30,101580,100420,99310,79.94,0,10.950000000000001,12.27,12.64,12.89,13.08,13.22,13.34,13.44,13.59,167.1,167.24,167.34,167.45000000000002,167.55,167.65,167.74,167.83,168.02,26.64,26.41,26.26,26.080000000000002,25.900000000000002,25.72,25.53,25.35,24.98,N/A,N/A -2012,10,14,5,30,101570,100410,99290,81.26,0,10.44,11.68,12.040000000000001,12.290000000000001,12.47,12.620000000000001,12.74,12.84,12.99,172.47,172.85,173.01,173.17000000000002,173.3,173.42000000000002,173.52,173.61,173.77,26.6,26.36,26.21,26.02,25.84,25.66,25.48,25.3,24.92,N/A,N/A -2012,10,14,6,30,101600,100450,99330,79.15,0,10.85,12.09,12.44,12.65,12.8,12.9,12.98,13.030000000000001,13.1,176.26,176.5,176.64000000000001,176.79,176.92000000000002,177.06,177.19,177.31,177.58,26.580000000000002,26.32,26.16,25.97,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A -2012,10,14,7,30,101600,100450,99330,79.03,0,10.18,11.3,11.620000000000001,11.83,11.98,12.09,12.18,12.26,12.370000000000001,181.59,181.87,181.96,182.02,182.05,182.07,182.07,182.07,182.04,26.57,26.310000000000002,26.150000000000002,25.96,25.78,25.59,25.400000000000002,25.21,24.830000000000002,N/A,N/A -2012,10,14,8,30,101570,100410,99290,75.07000000000001,0,11.22,12.46,12.76,12.93,13.040000000000001,13.120000000000001,13.18,13.22,13.26,186.37,186.39000000000001,186.36,186.31,186.24,186.17000000000002,186.1,186.03,185.88,26.650000000000002,26.39,26.23,26.04,25.86,25.67,25.48,25.3,24.92,N/A,N/A -2012,10,14,9,30,101620,100470,99350,72.62,0,9.41,10.43,10.71,10.88,11,11.09,11.15,11.21,11.28,188.97,188.9,188.93,188.97,189.01,189.05,189.1,189.14000000000001,189.23,26.72,26.47,26.32,26.13,25.95,25.76,25.57,25.38,25,N/A,N/A -2012,10,14,10,30,101620,100460,99340,73.71000000000001,0,10.21,11.290000000000001,11.57,11.72,11.83,11.89,11.94,11.96,11.99,194.18,194.12,194.08,194.02,193.96,193.89000000000001,193.82,193.75,193.6,26.7,26.46,26.310000000000002,26.12,25.94,25.76,25.57,25.39,25.02,N/A,N/A -2012,10,14,11,30,101650,100500,99380,75.25,0,9.73,10.77,11.07,11.25,11.38,11.48,11.56,11.620000000000001,11.72,193.4,192.98000000000002,192.81,192.65,192.52,192.4,192.3,192.21,192.04,26.64,26.39,26.240000000000002,26.04,25.86,25.68,25.48,25.3,24.92,N/A,N/A -2012,10,14,12,30,101700,100540,99420,73.56,0,7.74,8.5,8.700000000000001,8.82,8.9,8.96,9.01,9.040000000000001,9.09,199.25,198.92000000000002,198.78,198.61,198.45000000000002,198.3,198.16,198.03,197.77,26.72,26.490000000000002,26.34,26.150000000000002,25.97,25.78,25.59,25.41,25.04,N/A,N/A -2012,10,14,13,30,101720,100570,99450,74.05,0,7.72,8.53,8.76,8.89,8.99,9.06,9.11,9.15,9.200000000000001,199.34,199.65,199.77,199.9,200.02,200.14000000000001,200.26,200.37,200.59,26.740000000000002,26.5,26.34,26.150000000000002,25.97,25.78,25.59,25.400000000000002,25.02,N/A,N/A -2012,10,14,14,30,101750,100600,99480,74.73,0,6.71,7.390000000000001,7.57,7.69,7.7700000000000005,7.83,7.88,7.91,7.96,198.81,198.77,198.84,198.95000000000002,199.05,199.16,199.27,199.37,199.59,26.76,26.52,26.37,26.17,25.990000000000002,25.8,25.61,25.43,25.05,N/A,N/A -2012,10,14,15,30,101770,100610,99490,72,0,6.0600000000000005,6.59,6.72,6.78,6.82,6.8500000000000005,6.87,6.88,6.88,203.92000000000002,204.17000000000002,204.32,204.45000000000002,204.56,204.67000000000002,204.76,204.85,205.03,26.810000000000002,26.57,26.42,26.23,26.05,25.86,25.67,25.490000000000002,25.11,N/A,N/A -2012,10,14,16,30,101740,100580,99460,73.01,0,5.66,6.15,6.26,6.3100000000000005,6.3500000000000005,6.37,6.38,6.390000000000001,6.390000000000001,207.4,207.46,207.46,207.44,207.43,207.42000000000002,207.41,207.41,207.38,26.73,26.490000000000002,26.330000000000002,26.14,25.96,25.77,25.580000000000002,25.400000000000002,25.03,N/A,N/A -2012,10,14,17,30,101740,100580,99460,75.83,0,6.17,6.72,6.8500000000000005,6.92,6.96,6.98,6.99,6.99,6.98,210.86,210.83,210.82,210.77,210.73000000000002,210.68,210.62,210.56,210.42000000000002,26.69,26.43,26.27,26.080000000000002,25.89,25.7,25.51,25.330000000000002,24.95,N/A,N/A -2012,10,14,18,30,101700,100550,99420,74.96000000000001,0,5.75,6.24,6.34,6.4,6.43,6.45,6.47,6.48,6.49,211.27,211.3,211.31,211.32,211.33,211.34,211.34,211.36,211.36,26.66,26.39,26.23,26.03,25.85,25.66,25.47,25.29,24.91,N/A,N/A -2012,10,14,19,30,101700,100550,99420,77.07000000000001,0,5.51,5.98,6.09,6.140000000000001,6.17,6.2,6.21,6.21,6.22,207.8,208.05,208.09,208.14000000000001,208.20000000000002,208.25,208.32,208.38,208.52,26.71,26.43,26.27,26.07,25.89,25.69,25.5,25.32,24.94,N/A,N/A -2012,10,14,20,30,101690,100530,99410,77.62,0,6.05,6.57,6.7,6.76,6.8,6.82,6.83,6.84,6.82,206.52,206.56,206.54,206.52,206.51,206.49,206.48000000000002,206.47,206.43,26.740000000000002,26.490000000000002,26.330000000000002,26.13,25.95,25.77,25.57,25.39,25.01,N/A,N/A -2012,10,14,21,30,101750,100590,99450,76.46000000000001,7.7,7.23,7.72,7.82,7.8500000000000005,7.87,7.88,7.890000000000001,7.9,7.94,207.11,208.09,208.68,209.34,210.05,210.78,211.71,212.6,215.32,24.71,24.34,24.17,23.990000000000002,23.82,23.66,23.490000000000002,23.34,23.05,N/A,N/A -2012,10,14,22,30,101670,100510,99380,81.16,1.5,6.38,6.82,6.93,6.99,7.04,7.1000000000000005,7.23,7.37,7.9,254.35,253.36,252.81,252.11,251.3,250.36,248.84,247.17000000000002,240.94,24.76,24.41,24.25,24.07,23.91,23.76,23.64,23.53,23.56,N/A,N/A -2012,10,14,23,30,101600,100440,99310,71.18,0,4.22,4.37,4.36,4.3,4.26,4.23,4.22,4.21,4.09,225.55,224.69,224.17000000000002,223.4,222.06,220.03,216.55,212.53,204.56,25.42,25.12,24.97,24.79,24.66,24.54,24.490000000000002,24.48,24.57,N/A,N/A -2012,10,15,0,30,101580,100420,99300,66.81,0,1.21,1.6300000000000001,1.93,2.32,2.68,3.0500000000000003,3.37,3.66,4.12,249.56,232.66,221.79,215.72,211.66,209.72,208.75,208.32,208.26,26.39,26.560000000000002,26.69,26.84,26.86,26.77,26.63,26.46,26.080000000000002,N/A,N/A -2012,10,15,1,30,101630,100470,99350,72.77,0,2.2600000000000002,2.38,2.42,2.54,2.7800000000000002,3.22,3.61,3.94,4.47,234.92000000000002,234.04,233.26,231.81,230.21,228.05,226.59,225.64000000000001,224.62,26.42,26.16,26.03,25.89,25.86,25.96,25.98,25.97,25.78,N/A,N/A -2012,10,15,2,30,101630,100470,99350,81.91,0,1.68,1.8,1.83,1.86,1.9000000000000001,1.95,2.09,2.2800000000000002,2.95,227.3,227.14000000000001,227.07,227.02,227.15,227.44,228.23000000000002,229.24,231.68,26.26,25.97,25.8,25.61,25.43,25.25,25.09,24.95,24.77,N/A,N/A -2012,10,15,3,30,101630,100480,99360,84.01,0,3.49,3.75,3.81,3.84,3.86,3.88,3.89,3.9,3.99,270.05,269.51,269.01,268.53000000000003,268.16,267.89,267.64,267.39,266.75,26.330000000000002,26.05,25.89,25.69,25.51,25.330000000000002,25.150000000000002,24.97,24.61,N/A,N/A -2012,10,15,4,30,101650,100490,99370,82.07000000000001,0,2.14,2.29,2.34,2.4,2.5,2.63,2.84,3.09,3.52,283.74,281.49,279.45,276.79,273.72,269.85,266.28000000000003,262.84000000000003,258.72,26.13,25.830000000000002,25.67,25.48,25.3,25.11,24.93,24.76,24.41,N/A,N/A -2012,10,15,5,30,101650,100490,99370,83.23,0,2.35,2.48,2.5100000000000002,2.58,2.75,3.0100000000000002,3.31,3.63,3.99,290.81,289.17,287.88,285.78000000000003,282.75,278.5,274.40000000000003,270.38,268.88,25.900000000000002,25.6,25.44,25.27,25.13,25.01,24.91,24.830000000000002,24.62,N/A,N/A -2012,10,15,6,30,101660,100500,99380,84.09,0,3.8200000000000003,3.98,3.98,3.96,3.93,3.91,3.88,3.86,3.86,311.11,310.43,309.98,309.43,308.87,308.24,307.46,306.63,304.2,25.62,25.3,25.14,24.94,24.76,24.57,24.39,24.21,23.85,N/A,N/A -2012,10,15,7,30,101700,100540,99410,81.29,0,3.93,4.11,4.14,4.14,4.13,4.12,4.12,4.12,4.17,319.49,319.38,319.31,319.2,319.07,318.90000000000003,318.62,318.33,317,25.38,25.05,24.88,24.68,24.5,24.32,24.13,23.96,23.61,N/A,N/A -2012,10,15,8,30,101710,100550,99420,83.43,0,4.44,4.7,4.76,4.78,4.8,4.8100000000000005,4.82,4.83,4.86,320.11,320.3,320.45,320.61,320.75,320.89,321.02,321.15000000000003,321.40000000000003,25.2,24.85,24.68,24.48,24.29,24.1,23.91,23.73,23.35,N/A,N/A -2012,10,15,9,30,101700,100530,99410,83.8,0,3.67,3.99,4.1,4.18,4.25,4.3100000000000005,4.37,4.42,4.51,335.2,335.82,336.03000000000003,336.16,336.22,336.25,336.24,336.2,336.03000000000003,25,24.650000000000002,24.48,24.28,24.09,23.900000000000002,23.71,23.52,23.14,N/A,N/A -2012,10,15,10,30,101710,100550,99420,72.45,0,6.01,6.4,6.48,6.51,6.51,6.51,6.49,6.48,6.44,12.73,12.8,12.870000000000001,12.93,13,13.06,13.13,13.19,13.35,24.84,24.47,24.3,24.1,23.91,23.72,23.53,23.35,22.98,N/A,N/A -2012,10,15,11,30,101690,100530,99390,70.41,0,7.88,8.46,8.57,8.61,8.63,8.64,8.64,8.64,8.64,25.740000000000002,25.96,26.13,26.310000000000002,26.490000000000002,26.67,26.87,27.080000000000002,27.580000000000002,24.54,24.150000000000002,23.97,23.78,23.59,23.41,23.23,23.06,22.72,N/A,N/A -2012,10,15,12,30,101720,100550,99420,69.10000000000001,0,8.24,8.84,8.97,9.01,9.03,9.03,9.02,9.01,8.97,26.41,26.63,26.75,26.88,27.01,27.13,27.26,27.39,27.69,24.27,23.86,23.67,23.47,23.28,23.1,22.91,22.73,22.37,N/A,N/A -2012,10,15,13,30,101730,100550,99410,72.12,0,8.05,8.6,8.71,8.74,8.76,8.76,8.75,8.74,8.71,29.44,29.7,29.87,30.04,30.2,30.36,30.52,30.67,31.05,23.330000000000002,22.87,22.68,22.48,22.28,22.1,21.91,21.740000000000002,21.39,N/A,N/A -2012,10,15,14,30,101750,100580,99440,73.53,0,7.47,7.99,8.1,8.15,8.18,8.2,8.22,8.23,8.27,34.03,34.28,34.43,34.59,34.730000000000004,34.87,35.03,35.18,35.54,23.150000000000002,22.69,22.490000000000002,22.29,22.1,21.91,21.72,21.55,21.2,N/A,N/A -2012,10,15,15,30,101740,100570,99430,69.09,0,7.54,8.08,8.19,8.25,8.28,8.3,8.31,8.32,8.34,42.78,43,43.160000000000004,43.300000000000004,43.44,43.58,43.72,43.85,44.18,23.400000000000002,22.95,22.75,22.55,22.35,22.17,21.97,21.79,21.43,N/A,N/A -2012,10,15,16,30,101720,100540,99400,64.55,0,6.87,7.33,7.44,7.49,7.5200000000000005,7.54,7.55,7.5600000000000005,7.58,36.75,36.96,37.11,37.25,37.39,37.53,37.68,37.82,38.17,23.740000000000002,23.31,23.12,22.92,22.73,22.54,22.35,22.17,21.81,N/A,N/A -2012,10,15,17,30,101680,100510,99370,60.84,0,6.11,6.53,6.63,6.68,6.72,6.74,6.7700000000000005,6.79,6.83,30.11,30.09,30.12,30.14,30.150000000000002,30.16,30.18,30.2,30.25,24.19,23.79,23.61,23.41,23.22,23.03,22.84,22.66,22.28,N/A,N/A -2012,10,15,18,30,101660,100490,99360,55.870000000000005,0,4.89,5.22,5.3,5.34,5.38,5.41,5.43,5.45,5.49,41.08,40.63,40.29,39.95,39.65,39.35,39.04,38.75,38.13,24.84,24.48,24.3,24.1,23.92,23.73,23.53,23.35,22.97,N/A,N/A -2012,10,15,19,30,101640,100470,99340,53.29,0,3.5100000000000002,3.72,3.77,3.8000000000000003,3.8200000000000003,3.84,3.85,3.86,3.89,57.910000000000004,57.02,56.42,55.84,55.300000000000004,54.78,54.25,53.74,52.660000000000004,25.150000000000002,24.82,24.650000000000002,24.45,24.26,24.07,23.88,23.69,23.31,N/A,N/A -2012,10,15,20,30,101590,100420,99290,53.660000000000004,0,3.06,3.18,3.19,3.18,3.17,3.16,3.15,3.13,3.1,76.14,75.3,74.7,74.11,73.54,73,72.4,71.83,70.56,25.23,24.900000000000002,24.72,24.53,24.330000000000002,24.14,23.95,23.77,23.38,N/A,N/A -2012,10,15,21,30,101560,100390,99260,52.76,0,1.86,1.92,1.93,1.93,1.92,1.92,1.9100000000000001,1.9000000000000001,1.8800000000000001,89.03,88.18,87.73,87.24,86.76,86.27,85.69,85.14,83.68,25.35,25.03,24.86,24.66,24.47,24.28,24.09,23.91,23.53,N/A,N/A -2012,10,15,22,30,101510,100350,99220,51.9,0,1.8,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,82.74,81.91,81.32000000000001,80.72,80.12,79.5,78.79,78.12,76.35000000000001,25.47,25.16,24.990000000000002,24.79,24.6,24.42,24.22,24.04,23.66,N/A,N/A -2012,10,15,23,30,101510,100340,99220,51.7,0,1.1,1.1300000000000001,1.1300000000000001,1.1300000000000001,1.1300000000000001,1.12,1.12,1.11,1.1,119.47,118.45,117.69,116.9,116.13,115.37,114.53,113.74000000000001,111.84,25.55,25.240000000000002,25.07,24.87,24.68,24.5,24.3,24.12,23.740000000000002,N/A,N/A -2012,10,16,0,30,101500,100340,99210,51.910000000000004,0,1.1,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,125.18,123.89,123.09,122.28,121.5,120.74000000000001,119.92,119.17,117.4,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.53,24.330000000000002,24.14,23.76,N/A,N/A -2012,10,16,1,30,101500,100340,99210,52.050000000000004,0,0.49,0.52,0.53,0.54,0.55,0.56,0.5700000000000001,0.58,0.61,91.67,88.09,86.26,84.5,82.83,81.2,79.59,78.09,74.94,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.52,24.330000000000002,24.14,23.76,N/A,N/A -2012,10,16,2,30,101510,100350,99220,53.51,0,1.2,1.27,1.29,1.31,1.32,1.34,1.35,1.36,1.3900000000000001,58.77,57.47,56.82,56.2,55.64,55.120000000000005,54.59,54.1,53.13,25.560000000000002,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.73,N/A,N/A -2012,10,16,3,30,101500,100340,99210,53.14,0,4.25,4.5,4.5,4.48,4.45,4.42,4.38,4.34,4.25,40.79,41.13,41.32,41.52,41.7,41.87,42.050000000000004,42.22,42.51,25.66,25.35,25.18,24.98,24.79,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A -2012,10,16,4,30,101480,100310,99190,52.21,0,5.87,6.2700000000000005,6.34,6.36,6.37,6.37,6.36,6.3500000000000005,6.3100000000000005,52.14,52.65,52.94,53.21,53.46,53.68,53.910000000000004,54.120000000000005,54.550000000000004,25.51,25.19,25.02,24.82,24.63,24.44,24.25,24.060000000000002,23.67,N/A,N/A -2012,10,16,5,30,101460,100290,99160,52.34,0,5.89,6.2700000000000005,6.33,6.34,6.34,6.33,6.3100000000000005,6.29,6.24,62.18,62.38,62.49,62.61,62.72,62.82,62.93,63.02,63.24,25.38,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A -2012,10,16,6,30,101460,100300,99170,57.28,0,5.22,5.57,5.65,5.68,5.7,5.72,5.73,5.73,5.73,69.42,70.25,70.75,71.22,71.64,72.03,72.42,72.78,73.51,25.28,24.96,24.79,24.59,24.39,24.21,24.01,23.82,23.44,N/A,N/A -2012,10,16,7,30,101440,100280,99150,57.07,0,5.37,5.73,5.8,5.83,5.8500000000000005,5.86,5.86,5.86,5.8500000000000005,81,81.77,82.17,82.55,82.88,83.19,83.5,83.78,84.34,25.25,24.91,24.740000000000002,24.54,24.35,24.16,23.96,23.77,23.38,N/A,N/A -2012,10,16,8,30,101430,100270,99140,57.74,0,5.28,5.66,5.74,5.78,5.8100000000000005,5.83,5.8500000000000005,5.86,5.87,90.98,91.49,91.81,92.13,92.43,92.71000000000001,92.99,93.24,93.78,25.23,24.900000000000002,24.72,24.52,24.330000000000002,24.14,23.94,23.76,23.37,N/A,N/A -2012,10,16,9,30,101410,100250,99120,59.67,0,5.04,5.38,5.46,5.5,5.53,5.55,5.57,5.58,5.6000000000000005,101.17,101.58,101.87,102.18,102.45,102.72,102.99000000000001,103.24000000000001,103.76,25.09,24.75,24.57,24.37,24.18,23.990000000000002,23.79,23.61,23.22,N/A,N/A -2012,10,16,10,30,101390,100230,99100,59.870000000000005,0,5.07,5.4,5.47,5.5,5.5200000000000005,5.53,5.54,5.54,5.54,111.53,112,112.27,112.53,112.76,112.98,113.2,113.4,113.81,25.12,24.78,24.6,24.400000000000002,24.21,24.02,23.82,23.63,23.240000000000002,N/A,N/A -2012,10,16,11,30,101390,100220,99100,60.56,0,4.86,5.18,5.23,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.26,117.05,117.34,117.5,117.65,117.79,117.93,118.06,118.19,118.48,25.03,24.68,24.51,24.310000000000002,24.11,23.92,23.72,23.54,23.150000000000002,N/A,N/A -2012,10,16,12,30,101380,100210,99090,62.6,0,4.64,4.94,5,5.03,5.05,5.0600000000000005,5.07,5.08,5.08,123.66,124.09,124.36,124.63000000000001,124.86,125.08,125.3,125.51,125.93,25.03,24.69,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.150000000000002,N/A,N/A -2012,10,16,13,30,101350,100190,99060,64.24,0,4.3,4.6000000000000005,4.68,4.72,4.76,4.8,4.82,4.8500000000000005,4.89,131.75,131.93,132.08,132.24,132.38,132.52,132.66,132.8,133.09,24.95,24.6,24.42,24.22,24.03,23.84,23.64,23.45,23.06,N/A,N/A -2012,10,16,14,30,101370,100200,99080,66.73,0,4.82,5.11,5.17,5.19,5.21,5.22,5.22,5.22,5.21,137.8,138.4,138.77,139.11,139.42000000000002,139.71,139.99,140.26,140.77,24.97,24.62,24.44,24.240000000000002,24.05,23.85,23.66,23.47,23.080000000000002,N/A,N/A -2012,10,16,15,30,101340,100180,99050,68.11,0,3.96,4.23,4.3,4.3500000000000005,4.38,4.41,4.43,4.46,4.49,147.44,147.23,147.08,146.96,146.85,146.75,146.67000000000002,146.59,146.44,24.98,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A -2012,10,16,16,30,101310,100150,99030,68.77,0,3.95,4.18,4.23,4.26,4.28,4.29,4.3100000000000005,4.32,4.32,148.13,148.67000000000002,148.96,149.24,149.48,149.70000000000002,149.91,150.11,150.48,25.05,24.7,24.53,24.32,24.13,23.94,23.740000000000002,23.56,23.16,N/A,N/A -2012,10,16,17,30,101290,100130,99010,69,0,3.35,3.5700000000000003,3.64,3.68,3.72,3.75,3.7800000000000002,3.81,3.85,155.19,155.18,155.18,155.18,155.18,155.19,155.20000000000002,155.22,155.25,25.07,24.73,24.55,24.35,24.16,23.96,23.77,23.580000000000002,23.19,N/A,N/A -2012,10,16,18,30,101240,100090,98960,67.9,0,3.11,3.29,3.34,3.37,3.4,3.42,3.44,3.45,3.48,160.49,160.58,160.69,160.81,160.93,161.05,161.17000000000002,161.28,161.55,25.21,24.87,24.69,24.490000000000002,24.3,24.1,23.91,23.72,23.34,N/A,N/A -2012,10,16,19,30,101220,100060,98940,69.11,0,2.92,3.08,3.12,3.14,3.16,3.17,3.18,3.19,3.2,156.37,156.66,156.94,157.21,157.47,157.72,157.98,158.21,158.71,25.22,24.89,24.71,24.51,24.32,24.13,23.93,23.740000000000002,23.36,N/A,N/A -2012,10,16,20,30,101150,100000,98870,69.39,0,2.07,2.21,2.2600000000000002,2.29,2.33,2.35,2.38,2.4,2.45,161.76,162.32,162.68,163,163.27,163.51,163.75,163.98,164.38,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A -2012,10,16,21,30,101120,99960,98840,69.21000000000001,0,2.48,2.61,2.64,2.66,2.67,2.68,2.69,2.7,2.72,164.66,165.53,166.03,166.47,166.84,167.19,167.51,167.8,168.33,25.310000000000002,24.98,24.810000000000002,24.61,24.42,24.22,24.03,23.84,23.45,N/A,N/A -2012,10,16,22,30,101090,99940,98820,70.59,0,2.94,3.04,3.04,3.02,3,2.98,2.96,2.94,2.9,145.52,146.23,146.69,147.16,147.59,148.01,148.44,148.84,149.65,25.32,25,24.830000000000002,24.62,24.43,24.240000000000002,24.05,23.86,23.47,N/A,N/A -2012,10,16,23,30,101080,99920,98800,70.63,0,2.15,2.22,2.23,2.22,2.22,2.22,2.21,2.2,2.19,124.29,125.5,126.36,127.21000000000001,127.97,128.7,129.42000000000002,130.1,131.44,25.3,24.98,24.810000000000002,24.6,24.41,24.22,24.02,23.84,23.45,N/A,N/A -2012,10,17,0,30,101060,99910,98780,72.17,0.7000000000000001,2.04,2.09,2.08,2.07,2.05,2.04,2.02,2,1.96,85.85000000000001,86.11,86.29,86.5,86.7,86.9,87.12,87.34,87.84,24.97,24.64,24.46,24.26,24.07,23.88,23.69,23.5,23.12,N/A,N/A -2012,10,17,1,30,101070,99910,98790,74.87,0.4,2.9,2.88,2.7800000000000002,2.66,2.5500000000000003,2.44,2.34,2.24,2.06,10.9,12.13,13.35,14.84,16.32,17.86,19.580000000000002,21.2,25.01,24.52,24.18,24.02,23.84,23.66,23.48,23.3,23.13,22.77,N/A,N/A -2012,10,17,2,30,101090,99930,98800,87.8,0.7000000000000001,5.5,5.65,5.61,5.5,5.37,5.22,5.01,4.8,3.93,0.54,1.31,1.86,2.54,3.29,4.13,5.4,6.72,15.18,22.96,22.53,22.34,22.14,21.97,21.79,21.62,21.47,21.26,N/A,N/A -2012,10,17,3,30,101080,99910,98780,82.68,3.3000000000000003,6.19,6.47,6.49,6.46,6.41,6.36,6.29,6.22,6.0200000000000005,15.55,15.92,16.22,16.54,16.87,17.21,17.62,18.02,19.23,22.73,22.27,22.07,21.87,21.68,21.490000000000002,21.3,21.12,20.76,N/A,N/A -2012,10,17,4,30,101060,99900,98760,78.69,2.6,3.2600000000000002,3.35,3.35,3.33,3.3000000000000003,3.27,3.23,3.19,3.08,28.19,29.03,29.63,30.26,30.900000000000002,31.59,32.43,33.25,35.84,22.78,22.37,22.18,21.98,21.79,21.6,21.41,21.23,20.86,N/A,N/A -2012,10,17,5,30,100970,99810,98680,80.09,0.4,3.73,3.94,3.98,4,4.03,4.05,4.07,4.1,4.19,132.09,133.17000000000002,133.67000000000002,134.26,134.86,135.49,136.25,136.99,139.15,22.94,22.53,22.34,22.14,21.95,21.76,21.57,21.39,21.04,N/A,N/A -2012,10,17,6,30,100920,99760,98630,78.53,0,6.75,7.32,7.48,7.58,7.66,7.73,7.79,7.84,7.930000000000001,162.74,162.69,162.64000000000001,162.6,162.56,162.54,162.51,162.5,162.47,24.03,23.63,23.44,23.240000000000002,23.05,22.85,22.66,22.48,22.09,N/A,N/A -2012,10,17,7,30,100920,99770,98640,80.43,0,8.040000000000001,8.69,8.86,8.94,9,9.03,9.06,9.08,9.09,180.78,180.75,180.75,180.74,180.75,180.75,180.77,180.79,180.86,24.03,23.61,23.42,23.21,23.02,22.830000000000002,22.63,22.45,22.07,N/A,N/A -2012,10,17,8,30,100890,99730,98610,61.92,0,7.32,7.94,8.08,8.15,8.19,8.23,8.25,8.26,8.27,179.88,179.51,179.43,179.37,179.3,179.24,179.18,179.13,179.01,25.23,24.89,24.71,24.51,24.32,24.13,23.93,23.740000000000002,23.36,N/A,N/A -2012,10,17,9,30,100900,99740,98620,79.39,0,8.46,9.16,9.32,9.38,9.42,9.43,9.43,9.43,9.4,174.75,174.98,175.18,175.38,175.57,175.76,175.95000000000002,176.14000000000001,176.54,24.66,24.27,24.080000000000002,23.87,23.68,23.490000000000002,23.29,23.1,22.72,N/A,N/A -2012,10,17,10,30,100890,99730,98610,67.89,0,7.67,8.27,8.41,8.47,8.51,8.53,8.540000000000001,8.55,8.57,189.08,189.25,189.29,189.36,189.44,189.52,189.62,189.72,189.99,25.16,24.82,24.650000000000002,24.46,24.27,24.09,23.900000000000002,23.73,23.37,N/A,N/A -2012,10,17,11,30,100890,99740,98620,69.15,0,7.8,8.46,8.6,8.67,8.71,8.74,8.76,8.77,8.790000000000001,172.35,172.57,172.73,172.91,173.09,173.28,173.48,173.69,174.21,25.240000000000002,24.900000000000002,24.73,24.53,24.34,24.150000000000002,23.96,23.78,23.400000000000002,N/A,N/A -2012,10,17,12,30,100890,99740,98620,79.39,0,8.32,9.15,9.38,9.53,9.64,9.73,9.8,9.85,9.950000000000001,176.72,176.85,176.95000000000002,177.06,177.17000000000002,177.26,177.37,177.48,177.70000000000002,25.55,25.23,25.060000000000002,24.86,24.67,24.48,24.29,24.1,23.72,N/A,N/A -2012,10,17,13,30,100860,99710,98590,75.99,0,8.56,9.450000000000001,9.67,9.81,9.9,9.97,10.02,10.05,10.1,187.77,187.6,187.51,187.45000000000002,187.41,187.38,187.36,187.34,187.34,26.1,25.82,25.66,25.47,25.28,25.09,24.900000000000002,24.72,24.330000000000002,N/A,N/A -2012,10,17,14,30,100870,99720,98610,77.29,0,9.47,10.43,10.69,10.82,10.91,10.97,11,11.03,11.040000000000001,189.82,189.9,189.98,190.06,190.14000000000001,190.20000000000002,190.27,190.32,190.43,26.23,25.97,25.810000000000002,25.62,25.44,25.25,25.060000000000002,24.87,24.5,N/A,N/A -2012,10,17,15,30,100850,99700,98590,78.51,0,8.99,9.950000000000001,10.18,10.32,10.42,10.48,10.53,10.56,10.6,191.49,191.51,191.5,191.48000000000002,191.45000000000002,191.43,191.39000000000001,191.35,191.28,26.21,25.94,25.78,25.580000000000002,25.400000000000002,25.21,25.02,24.830000000000002,24.45,N/A,N/A -2012,10,17,16,30,100820,99680,98560,81.47,0,9.28,10.27,10.53,10.69,10.8,10.88,10.94,10.99,11.06,189.14000000000001,189.31,189.39000000000001,189.48,189.56,189.64000000000001,189.71,189.78,189.93,26.17,25.900000000000002,25.740000000000002,25.54,25.36,25.17,24.97,24.79,24.41,N/A,N/A -2012,10,17,17,30,100760,99610,98500,82.92,0,9.49,10.5,10.77,10.92,11.03,11.11,11.17,11.21,11.27,192.39000000000001,192.36,192.35,192.34,192.33,192.31,192.28,192.27,192.22,26.27,26,25.84,25.650000000000002,25.46,25.28,25.080000000000002,24.900000000000002,24.52,N/A,N/A -2012,10,17,18,30,100730,99580,98470,87.60000000000001,0,9.31,10.32,10.58,10.74,10.85,10.92,10.97,11.01,11.05,199.16,199.19,199.22,199.24,199.26,199.27,199.28,199.29,199.31,26.26,25.98,25.82,25.62,25.44,25.25,25.060000000000002,24.87,24.490000000000002,N/A,N/A -2012,10,17,19,30,100720,99570,98470,88.35000000000001,0,8.700000000000001,9.71,10.040000000000001,10.32,10.56,10.76,10.96,11.15,11.51,197.12,198.06,198.53,199.02,199.46,199.89000000000001,200.3,200.69,201.46,26.42,26.2,26.07,25.900000000000002,25.740000000000002,25.57,25.41,25.240000000000002,24.92,N/A,N/A -2012,10,17,20,30,100660,99520,98410,83.59,0,9.4,10.46,10.790000000000001,11.02,11.200000000000001,11.34,11.46,11.56,11.72,204.17000000000002,204.18,204.18,204.17000000000002,204.17000000000002,204.18,204.21,204.25,204.29,26.64,26.43,26.29,26.11,25.94,25.76,25.580000000000002,25.400000000000002,25.04,N/A,N/A -2012,10,17,21,30,100610,99470,98360,83.8,0,8.55,9.94,10.5,10.83,11.09,11.3,11.46,11.59,11.82,206.76,206.06,205.77,206.07,206.29,206.42000000000002,206.51,206.57,206.66,26.69,26.47,26.330000000000002,26.17,26.02,25.86,25.68,25.51,25.150000000000002,N/A,N/A -2012,10,17,22,30,100590,99450,98340,83.3,0,8.33,9.66,10.22,10.59,10.89,11.13,11.33,11.5,11.790000000000001,202.32,202.05,201.96,202.28,202.54,202.74,202.91,203.06,203.35,26.69,26.490000000000002,26.36,26.21,26.07,25.91,25.75,25.580000000000002,25.240000000000002,N/A,N/A -2012,10,17,23,30,100560,99420,98310,85.66,0,8.16,9.200000000000001,9.55,9.85,10.09,10.32,10.53,10.73,11.11,203.1,203.15,203.23000000000002,203.31,203.39000000000001,203.48000000000002,203.57,203.66,203.86,26.71,26.52,26.400000000000002,26.240000000000002,26.09,25.92,25.76,25.6,25.27,N/A,N/A -2012,10,18,0,30,100570,99430,98320,87.32000000000001,0,8.66,9.88,10.34,10.540000000000001,10.73,10.93,11.09,11.22,11.5,196.1,196.09,196.20000000000002,196.39000000000001,196.57,196.75,196.9,197.02,197.33,26.55,26.330000000000002,26.19,26.02,25.87,25.69,25.52,25.35,25,N/A,N/A -2012,10,18,1,30,100570,99430,98320,88.04,0,8.48,9.59,9.98,10.32,10.6,10.85,11.08,11.31,11.72,200.94,201,201.07,201.18,201.31,201.47,201.68,201.92000000000002,202.54,26.7,26.51,26.38,26.22,26.060000000000002,25.900000000000002,25.73,25.57,25.240000000000002,N/A,N/A -2012,10,18,2,30,100610,99470,98370,91.41,0,8.14,9.23,9.61,9.93,10.21,10.450000000000001,10.68,10.88,11.25,207.63,207.87,208.01,208.21,208.42000000000002,208.64000000000001,208.88,209.14000000000001,209.70000000000002,26.740000000000002,26.54,26.41,26.240000000000002,26.080000000000002,25.91,25.740000000000002,25.57,25.23,N/A,N/A -2012,10,18,3,30,100610,99470,98370,93.58,0,7.33,8.35,8.700000000000001,9.03,9.31,9.56,9.8,10.040000000000001,10.48,222.12,222.49,222.73000000000002,223.04,223.35,223.69,224.06,224.45000000000002,225.31,26.740000000000002,26.55,26.43,26.27,26.13,25.97,25.82,25.67,25.37,N/A,N/A -2012,10,18,4,30,100630,99490,98390,94.19,0,5.7700000000000005,6.7,7.0600000000000005,7.4,7.7,7.97,8.23,8.47,8.92,209.85,210.02,210.20000000000002,210.43,210.67000000000002,210.95000000000002,211.25,211.57,212.26,26.71,26.52,26.39,26.23,26.080000000000002,25.92,25.76,25.6,25.27,N/A,N/A -2012,10,18,5,30,100640,99500,98390,94.2,0,4.74,5.53,5.8500000000000005,6.17,6.46,6.73,6.98,7.21,7.62,224.06,223.62,223.37,223.24,223.18,223.19,223.24,223.33,223.56,26.66,26.46,26.330000000000002,26.17,26.02,25.85,25.69,25.53,25.2,N/A,N/A -2012,10,18,6,30,100650,99510,98400,93.34,0,5.5600000000000005,6.73,7.25,7.7700000000000005,8.24,8.71,9.19,9.67,10.57,218.94,218.65,218.57,218.68,219.02,219.63,220.6,221.76,224.69,26.67,26.52,26.41,26.27,26.12,25.97,25.810000000000002,25.650000000000002,25.32,N/A,N/A -2012,10,18,7,30,100700,99560,98460,94.43,0,5.0600000000000005,5.97,6.34,6.74,7.12,7.49,7.83,8.15,8.6,225.51,225.88,226.31,227.07,227.82,228.66,229.34,229.91,230.63,26.61,26.44,26.330000000000002,26.19,26.05,25.900000000000002,25.75,25.6,25.28,N/A,N/A -2012,10,18,8,30,100720,99570,98470,93.92,0,5.9,6.69,6.96,7.18,7.3500000000000005,7.49,7.6000000000000005,7.69,7.8,233.89000000000001,234.41,234.86,235.45000000000002,236.06,236.76,237.67000000000002,238.67000000000002,241.53,26.490000000000002,26.28,26.16,26,25.86,25.72,25.59,25.47,25.240000000000002,N/A,N/A -2012,10,18,9,30,100830,99680,98560,92.47,37,8.76,9.47,9.63,9.68,9.700000000000001,9.68,9.65,9.6,9.46,326.85,328,328.19,328.18,328.14,327.97,327.76,327.46,326.65000000000003,25.61,25.3,25.14,24.93,24.75,24.55,24.37,24.19,23.830000000000002,N/A,N/A -2012,10,18,10,30,100860,99700,98580,80.25,0,12.16,13.34,13.61,13.73,13.8,13.84,13.85,13.85,13.81,30.64,30.84,30.93,31,31.080000000000002,31.14,31.2,31.26,31.38,24.21,23.76,23.57,23.36,23.16,22.98,22.78,22.6,22.23,N/A,N/A -2012,10,18,11,30,100930,99770,98640,65.09,0,13,14.26,14.56,14.700000000000001,14.790000000000001,14.84,14.85,14.86,14.85,34.89,35.14,35.29,35.44,35.58,35.72,35.87,36,36.33,23.830000000000002,23.36,23.16,22.95,22.76,22.57,22.37,22.19,21.82,N/A,N/A -2012,10,18,12,30,100980,99810,98680,66.79,0,12.33,13.49,13.76,13.89,13.97,14.02,14.05,14.06,14.07,42.300000000000004,42.56,42.74,42.92,43.1,43.27,43.46,43.64,44.07,23.29,22.79,22.580000000000002,22.37,22.18,21.990000000000002,21.79,21.62,21.25,N/A,N/A -2012,10,18,13,30,101020,99850,98720,68.64,0,11.65,12.68,12.94,13.06,13.13,13.17,13.19,13.200000000000001,13.19,45.7,46.01,46.230000000000004,46.46,46.67,46.89,47.11,47.33,47.81,23.01,22.5,22.29,22.080000000000002,21.88,21.68,21.490000000000002,21.31,20.93,N/A,N/A -2012,10,18,14,30,101080,99910,98770,66.6,0,12.23,13.36,13.65,13.790000000000001,13.88,13.94,13.97,13.99,14,46.28,46.43,46.53,46.62,46.7,46.78,46.86,46.94,47.11,23.05,22.53,22.32,22.1,21.900000000000002,21.71,21.51,21.330000000000002,20.95,N/A,N/A -2012,10,18,15,30,101110,99940,98800,63.64,0,11.540000000000001,12.58,12.84,12.96,13.040000000000001,13.09,13.120000000000001,13.14,13.14,48.74,48.82,48.870000000000005,48.910000000000004,48.95,48.980000000000004,49.02,49.050000000000004,49.13,22.990000000000002,22.48,22.27,22.05,21.85,21.66,21.46,21.28,20.89,N/A,N/A -2012,10,18,16,30,101160,99990,98850,63.52,0,10.22,11.08,11.290000000000001,11.4,11.47,11.51,11.53,11.55,11.56,46.730000000000004,46.77,46.81,46.85,46.88,46.92,46.96,47,47.08,22.990000000000002,22.5,22.3,22.080000000000002,21.88,21.69,21.490000000000002,21.31,20.92,N/A,N/A -2012,10,18,17,30,101180,100010,98880,58.89,0,9.71,10.52,10.72,10.82,10.89,10.93,10.96,10.98,10.99,45.59,45.65,45.69,45.730000000000004,45.76,45.79,45.81,45.84,45.89,23.28,22.81,22.61,22.400000000000002,22.19,22,21.8,21.61,21.23,N/A,N/A -2012,10,18,18,30,101200,100040,98900,55.35,0,8.620000000000001,9.3,9.47,9.55,9.61,9.65,9.67,9.69,9.700000000000001,47.31,47.13,47.02,46.910000000000004,46.800000000000004,46.69,46.58,46.47,46.24,23.72,23.3,23.1,22.89,22.69,22.5,22.3,22.11,21.72,N/A,N/A -2012,10,18,19,30,101220,100050,98920,51.870000000000005,0,7.68,8.27,8.42,8.49,8.540000000000001,8.58,8.6,8.61,8.63,51.57,51.230000000000004,50.99,50.75,50.53,50.31,50.08,49.870000000000005,49.410000000000004,24.29,23.91,23.73,23.52,23.330000000000002,23.14,22.94,22.76,22.37,N/A,N/A -2012,10,18,20,30,101200,100030,98900,48.43,0,7.29,7.86,8,8.06,8.1,8.13,8.14,8.15,8.16,57.67,57.31,57.07,56.82,56.58,56.35,56.11,55.89,55.39,24.78,24.43,24.26,24.060000000000002,23.86,23.67,23.48,23.29,22.91,N/A,N/A -2012,10,18,21,30,101180,100020,98890,46.79,0,6.86,7.42,7.55,7.61,7.66,7.68,7.71,7.72,7.74,60,59.72,59.52,59.31,59.11,58.910000000000004,58.7,58.5,58.06,25.240000000000002,24.93,24.75,24.560000000000002,24.37,24.18,23.98,23.8,23.41,N/A,N/A -2012,10,18,22,30,101180,100030,98900,46.050000000000004,0,6.7,7.26,7.390000000000001,7.46,7.51,7.54,7.57,7.58,7.61,59.74,59.47,59.32,59.160000000000004,59,58.85,58.69,58.52,58.17,25.63,25.34,25.18,24.98,24.79,24.61,24.41,24.23,23.85,N/A,N/A -2012,10,18,23,30,101190,100030,98910,44.34,0,6.57,7.140000000000001,7.28,7.3500000000000005,7.390000000000001,7.43,7.46,7.48,7.5,58.160000000000004,57.94,57.79,57.64,57.5,57.36,57.21,57.07,56.77,25.93,25.67,25.51,25.32,25.13,24.94,24.75,24.57,24.18,N/A,N/A -2012,10,19,0,30,101220,100060,98940,45.94,0,6.82,7.42,7.55,7.63,7.69,7.73,7.76,7.78,7.8100000000000005,44.33,44.050000000000004,43.97,43.910000000000004,43.86,43.82,43.79,43.75,43.7,25.98,25.72,25.560000000000002,25.36,25.18,24.990000000000002,24.79,24.61,24.22,N/A,N/A -2012,10,19,1,30,101270,100110,98980,45.84,0,8.38,9.07,9.22,9.27,9.31,9.32,9.32,9.31,9.27,35.99,36.54,36.88,37.22,37.53,37.82,38.12,38.39,38.96,25.240000000000002,24.92,24.75,24.55,24.36,24.17,23.98,23.79,23.41,N/A,N/A -2012,10,19,2,30,101300,100130,99000,47.43,0,8.4,9.07,9.22,9.28,9.31,9.32,9.32,9.31,9.28,40.660000000000004,41.02,41.28,41.54,41.77,42,42.230000000000004,42.44,42.9,24.76,24.400000000000002,24.23,24.03,23.830000000000002,23.64,23.45,23.27,22.88,N/A,N/A -2012,10,19,3,30,101320,100150,99020,50.18,0,8.49,9.16,9.31,9.370000000000001,9.41,9.43,9.43,9.43,9.4,43.47,43.910000000000004,44.19,44.46,44.7,44.94,45.18,45.4,45.85,24.5,24.12,23.94,23.740000000000002,23.54,23.35,23.150000000000002,22.97,22.580000000000002,N/A,N/A -2012,10,19,4,30,101330,100160,99030,52.94,0,7.930000000000001,8.52,8.65,8.700000000000001,8.73,8.74,8.75,8.74,8.72,43.65,44.21,44.57,44.93,45.25,45.56,45.86,46.14,46.72,24.21,23.830000000000002,23.64,23.44,23.240000000000002,23.05,22.86,22.67,22.29,N/A,N/A -2012,10,19,5,30,101340,100170,99040,53.61,0,7.640000000000001,8.19,8.3,8.35,8.38,8.4,8.4,8.4,8.370000000000001,44.02,44.53,44.86,45.17,45.46,45.730000000000004,46,46.25,46.79,23.94,23.54,23.35,23.150000000000002,22.95,22.76,22.56,22.38,21.990000000000002,N/A,N/A -2012,10,19,6,30,101390,100220,99080,53.79,0,7.42,7.930000000000001,8.040000000000001,8.09,8.11,8.120000000000001,8.120000000000001,8.11,8.09,42.160000000000004,42.6,42.89,43.17,43.44,43.69,43.95,44.19,44.7,23.81,23.400000000000002,23.21,23,22.81,22.62,22.42,22.240000000000002,21.85,N/A,N/A -2012,10,19,7,30,101440,100270,99130,53.83,0,7.5200000000000005,8.05,8.17,8.22,8.25,8.27,8.27,8.28,8.27,40.69,41.15,41.45,41.74,42.02,42.28,42.550000000000004,42.800000000000004,43.34,23.57,23.150000000000002,22.96,22.76,22.57,22.38,22.18,22,21.62,N/A,N/A -2012,10,19,8,30,101460,100290,99150,52.63,0,7.97,8.55,8.68,8.73,8.77,8.790000000000001,8.8,8.8,8.790000000000001,40.300000000000004,40.78,41.1,41.43,41.730000000000004,42.02,42.33,42.61,43.230000000000004,23.37,22.93,22.740000000000002,22.54,22.34,22.150000000000002,21.96,21.78,21.400000000000002,N/A,N/A -2012,10,19,9,30,101470,100300,99150,53.34,0,7.53,8.040000000000001,8.15,8.2,8.23,8.25,8.26,8.26,8.27,35.04,35.38,35.61,35.86,36.1,36.33,36.6,36.85,37.47,22.91,22.46,22.27,22.07,21.88,21.69,21.5,21.330000000000002,20.97,N/A,N/A -2012,10,19,10,30,101500,100330,99190,55.870000000000005,0,7.18,7.65,7.74,7.78,7.79,7.8,7.8,7.8,7.8,38.6,38.980000000000004,39.24,39.53,39.800000000000004,40.08,40.4,40.69,41.45,22.78,22.330000000000002,22.14,21.94,21.75,21.57,21.39,21.22,20.87,N/A,N/A -2012,10,19,11,30,101510,100340,99190,55.61,0,7.33,7.79,7.87,7.9,7.9,7.9,7.88,7.86,7.82,37.92,38.29,38.54,38.79,39.04,39.28,39.57,39.84,40.53,22.7,22.240000000000002,22.05,21.85,21.66,21.48,21.3,21.13,20.78,N/A,N/A -2012,10,19,12,30,101540,100370,99220,54.17,0,7.24,7.7,7.79,7.82,7.84,7.84,7.83,7.82,7.79,41.95,42.32,42.56,42.800000000000004,43.03,43.26,43.51,43.74,44.27,22.72,22.26,22.07,21.87,21.68,21.5,21.31,21.13,20.77,N/A,N/A -2012,10,19,13,30,101550,100370,99230,53.67,0,6.71,7.11,7.18,7.21,7.21,7.21,7.2,7.18,7.15,40.57,40.88,41.06,41.25,41.44,41.61,41.81,41.99,42.4,22.61,22.150000000000002,21.96,21.76,21.57,21.39,21.2,21.02,20.66,N/A,N/A -2012,10,19,14,30,101580,100400,99260,51.76,0,5.98,6.3100000000000005,6.37,6.38,6.390000000000001,6.38,6.37,6.36,6.33,41.63,41.85,42.01,42.17,42.32,42.46,42.61,42.74,43.03,22.81,22.37,22.18,21.98,21.79,21.61,21.42,21.240000000000002,20.88,N/A,N/A -2012,10,19,15,30,101590,100420,99280,48.300000000000004,0,4.87,5.12,5.16,5.17,5.17,5.17,5.16,5.15,5.11,39.17,39.27,39.38,39.47,39.550000000000004,39.62,39.69,39.75,39.85,23.1,22.69,22.51,22.31,22.12,21.94,21.75,21.57,21.21,N/A,N/A -2012,10,19,16,30,101600,100420,99280,42.96,0,4.2,4.39,4.42,4.42,4.41,4.4,4.39,4.38,4.34,33.74,33.75,33.78,33.81,33.82,33.83,33.83,33.84,33.81,23.48,23.09,22.91,22.71,22.52,22.330000000000002,22.14,21.96,21.57,N/A,N/A -2012,10,19,17,30,101580,100410,99270,41.04,0,3.62,3.77,3.79,3.79,3.79,3.7800000000000002,3.7800000000000002,3.77,3.74,27.79,27.79,27.78,27.78,27.76,27.73,27.69,27.650000000000002,27.53,23.61,23.23,23.05,22.85,22.66,22.47,22.27,22.09,21.71,N/A,N/A -2012,10,19,18,30,101560,100390,99250,39.31,0,2.54,2.64,2.66,2.67,2.67,2.68,2.68,2.68,2.69,14.120000000000001,13.75,13.49,13.22,12.96,12.700000000000001,12.41,12.15,11.5,23.740000000000002,23.38,23.2,23,22.8,22.62,22.42,22.240000000000002,21.86,N/A,N/A -2012,10,19,19,30,101540,100360,99230,38.94,0,1.44,1.54,1.57,1.61,1.6500000000000001,1.68,1.72,1.76,1.84,2.11,0.46,359.38,358.34000000000003,357.37,356.45,355.51,354.63,352.82,23.89,23.54,23.36,23.16,22.97,22.78,22.59,22.400000000000002,22.02,N/A,N/A -2012,10,19,20,30,101510,100340,99200,35.29,0,1.71,1.76,1.77,1.77,1.77,1.77,1.77,1.77,1.78,319.09000000000003,318.84000000000003,318.95,319.05,319.15000000000003,319.23,319.33,319.43,319.67,24.5,24.16,23.990000000000002,23.79,23.6,23.41,23.21,23.03,22.64,N/A,N/A -2012,10,19,21,30,101470,100300,99170,35.6,0,2.7800000000000002,2.93,2.96,2.97,2.98,2.99,3,3.0100000000000002,3.02,313.88,314.11,314.27,314.41,314.54,314.65000000000003,314.77,314.87,315.11,24.92,24.6,24.43,24.23,24.04,23.85,23.66,23.47,23.080000000000002,N/A,N/A -2012,10,19,22,30,101440,100270,99140,36.9,0,2.81,3.0100000000000002,3.0500000000000003,3.09,3.11,3.14,3.16,3.18,3.2,310.3,311.31,311.88,312.38,312.81,313.19,313.56,313.89,314.5,25.29,24.98,24.810000000000002,24.62,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A -2012,10,19,23,30,101400,100240,99110,37.74,0,3.3200000000000003,3.52,3.5500000000000003,3.56,3.5700000000000003,3.5700000000000003,3.5700000000000003,3.56,3.5500000000000003,326.66,327,327.17,327.33,327.47,327.61,327.75,327.88,328.18,25.47,25.17,25,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,20,0,30,101400,100240,99110,38.51,0,2.91,3.1,3.12,3.13,3.13,3.13,3.12,3.11,3.09,339.27,339.56,339.71,339.86,340,340.14,340.29,340.43,340.73,25.62,25.330000000000002,25.16,24.97,24.78,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A -2012,10,20,1,30,101410,100250,99120,38.44,0,2.63,2.77,2.77,2.77,2.7600000000000002,2.74,2.73,2.71,2.67,2.02,2.3000000000000003,2.39,2.5100000000000002,2.63,2.77,2.93,3.08,3.48,25.69,25.41,25.25,25.060000000000002,24.87,24.69,24.5,24.310000000000002,23.94,N/A,N/A -2012,10,20,2,30,101420,100260,99130,39.09,0,1.58,1.6400000000000001,1.6300000000000001,1.62,1.61,1.6,1.58,1.57,1.54,42.71,43.660000000000004,44.2,44.75,45.300000000000004,45.83,46.410000000000004,46.95,48.18,25.650000000000002,25.37,25.2,25.01,24.82,24.64,24.44,24.26,23.87,N/A,N/A -2012,10,20,3,30,101400,100230,99100,38.85,0,1.51,1.57,1.56,1.55,1.54,1.52,1.51,1.5,1.47,60.99,61.34,61.52,61.72,61.92,62.120000000000005,62.34,62.550000000000004,63.03,25.59,25.3,25.13,24.94,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A -2012,10,20,4,30,101390,100230,99100,39.22,0,1.33,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3800000000000001,1.37,100.72,101.02,101.08,101.14,101.2,101.28,101.35000000000001,101.42,101.59,25.51,25.22,25.05,24.86,24.67,24.48,24.28,24.1,23.71,N/A,N/A -2012,10,20,5,30,101400,100230,99100,39.78,0,1.48,1.55,1.55,1.54,1.54,1.54,1.54,1.53,1.52,127.71000000000001,127.73,127.64,127.57000000000001,127.48,127.4,127.3,127.21000000000001,127.02,25.43,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A -2012,10,20,6,30,101400,100240,99110,44.7,0,2.0100000000000002,2.0100000000000002,1.97,1.92,1.87,1.83,1.78,1.74,1.6600000000000001,180.48,179.41,178.65,177.87,177.13,176.41,175.64000000000001,174.94,173.31,25.150000000000002,24.85,24.68,24.490000000000002,24.3,24.11,23.92,23.73,23.35,N/A,N/A -2012,10,20,7,30,101420,100260,99120,44.99,0,1.96,2.05,2.06,2.07,2.07,2.07,2.07,2.07,2.06,166.74,167.01,167.23,167.41,167.58,167.73,167.86,167.98,168.17000000000002,24.98,24.67,24.5,24.3,24.11,23.92,23.73,23.54,23.16,N/A,N/A -2012,10,20,8,30,101410,100250,99120,46.54,0,1.96,2.04,2.05,2.05,2.05,2.04,2.04,2.04,2.02,173.47,173.20000000000002,173.12,173.01,172.93,172.85,172.74,172.63,172.41,24.900000000000002,24.59,24.42,24.22,24.03,23.85,23.650000000000002,23.46,23.080000000000002,N/A,N/A -2012,10,20,9,30,101420,100250,99120,47.31,0,2.39,2.49,2.49,2.48,2.48,2.47,2.46,2.45,2.43,162.34,162.66,162.83,163.01,163.18,163.36,163.51,163.66,164.02,24.91,24.59,24.42,24.23,24.03,23.85,23.650000000000002,23.47,23.080000000000002,N/A,N/A -2012,10,20,10,30,101420,100250,99120,49.82,0,2.74,2.88,2.9,2.91,2.91,2.91,2.91,2.91,2.91,158.64000000000001,158.97,159.17000000000002,159.37,159.55,159.72,159.88,160.04,160.38,24.86,24.54,24.37,24.17,23.98,23.79,23.59,23.41,23.02,N/A,N/A -2012,10,20,11,30,101430,100270,99140,50.47,0,3.12,3.2800000000000002,3.3000000000000003,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,152.59,152.99,153.24,153.49,153.71,153.92000000000002,154.14000000000001,154.35,154.8,24.85,24.53,24.36,24.16,23.97,23.78,23.59,23.400000000000002,23.02,N/A,N/A -2012,10,20,12,30,101450,100280,99150,53.050000000000004,0,4.34,4.6000000000000005,4.64,4.66,4.67,4.68,4.68,4.68,4.67,151.22,151.51,151.70000000000002,151.89000000000001,152.06,152.21,152.39000000000001,152.55,152.88,24.84,24.51,24.34,24.14,23.95,23.76,23.57,23.38,23,N/A,N/A -2012,10,20,13,30,101440,100280,99150,54.72,0,4.74,5.07,5.13,5.17,5.19,5.21,5.22,5.23,5.25,152.05,152.37,152.53,152.69,152.84,152.98,153.12,153.25,153.53,24.89,24.560000000000002,24.39,24.19,24,23.81,23.61,23.43,23.05,N/A,N/A -2012,10,20,14,30,101460,100290,99160,55.550000000000004,0,5.37,5.76,5.84,5.88,5.91,5.92,5.93,5.94,5.95,151.18,151.42000000000002,151.57,151.71,151.85,151.97,152.1,152.22,152.47,25.01,24.69,24.51,24.32,24.13,23.94,23.740000000000002,23.56,23.17,N/A,N/A -2012,10,20,15,30,101460,100300,99170,55.49,0,6.24,6.74,6.8500000000000005,6.91,6.95,6.97,6.99,7.01,7.03,148.66,148.96,149.12,149.28,149.43,149.57,149.71,149.84,150.11,25.16,24.85,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A -2012,10,20,16,30,101450,100280,99150,57.11,0,6.61,7.17,7.29,7.36,7.41,7.44,7.47,7.49,7.5200000000000005,152.32,152.52,152.64000000000001,152.77,152.88,152.99,153.1,153.20000000000002,153.41,25.25,24.93,24.76,24.57,24.38,24.19,23.990000000000002,23.81,23.42,N/A,N/A -2012,10,20,17,30,101410,100250,99120,59.230000000000004,0,6.68,7.25,7.38,7.46,7.51,7.55,7.58,7.6000000000000005,7.63,155.01,155.20000000000002,155.31,155.43,155.53,155.64000000000001,155.75,155.85,156.07,25.310000000000002,24.990000000000002,24.830000000000002,24.63,24.44,24.25,24.05,23.87,23.48,N/A,N/A -2012,10,20,18,30,101390,100220,99100,59.21,0,6.67,7.2700000000000005,7.4,7.47,7.53,7.5600000000000005,7.59,7.61,7.640000000000001,152.62,152.65,152.78,152.91,153.04,153.18,153.31,153.45000000000002,153.72,25.43,25.12,24.95,24.75,24.560000000000002,24.37,24.18,23.990000000000002,23.6,N/A,N/A -2012,10,20,19,30,101360,100190,99070,59.88,0,6.78,7.41,7.5600000000000005,7.65,7.72,7.76,7.8,7.83,7.890000000000001,158.98,159.09,159.20000000000002,159.31,159.41,159.5,159.6,159.69,159.89000000000001,25.5,25.2,25.03,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A -2012,10,20,20,30,101340,100180,99050,62.88,0,7.46,8.17,8.33,8.43,8.49,8.540000000000001,8.57,8.59,8.620000000000001,159.07,159.34,159.47,159.59,159.68,159.77,159.84,159.92000000000002,160.05,25.560000000000002,25.27,25.1,24.91,24.72,24.53,24.34,24.150000000000002,23.76,N/A,N/A -2012,10,20,21,30,101310,100150,99030,63.85,0,7.7,8.43,8.6,8.69,8.76,8.8,8.83,8.85,8.88,154.4,154.93,155.25,155.56,155.84,156.1,156.37,156.61,157.09,25.59,25.3,25.13,24.93,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A -2012,10,20,22,30,101290,100140,99010,65.21000000000001,0,7.75,8.52,8.71,8.82,8.9,8.96,9.01,9.040000000000001,9.09,159.68,159.97,160.15,160.35,160.54,160.72,160.91,161.09,161.45000000000002,25.67,25.38,25.22,25.02,24.830000000000002,24.64,24.45,24.26,23.88,N/A,N/A -2012,10,20,23,30,101270,100120,98990,66.27,0,8.11,8.91,9.1,9.21,9.290000000000001,9.34,9.38,9.41,9.450000000000001,165.26,165.38,165.42000000000002,165.45000000000002,165.48,165.5,165.52,165.54,165.56,25.78,25.5,25.34,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.01,N/A,N/A -2012,10,21,0,30,101270,100110,98990,64.07000000000001,0,8.56,9.43,9.63,9.74,9.82,9.86,9.89,9.92,9.93,168.12,168.13,168.1,168.04,167.98,167.91,167.84,167.77,167.63,25.93,25.67,25.51,25.32,25.13,24.95,24.75,24.57,24.19,N/A,N/A -2012,10,21,1,30,101280,100120,99000,67.05,0,8.950000000000001,9.870000000000001,10.09,10.21,10.28,10.33,10.36,10.39,10.4,163.35,163.42000000000002,163.5,163.6,163.68,163.77,163.87,163.96,164.15,25.85,25.580000000000002,25.41,25.22,25.03,24.85,24.650000000000002,24.47,24.09,N/A,N/A -2012,10,21,2,30,101270,100110,98990,69.83,0,8.81,9.75,9.98,10.120000000000001,10.22,10.3,10.35,10.4,10.47,169.57,169.39000000000001,169.36,169.36,169.37,169.38,169.41,169.44,169.5,25.86,25.580000000000002,25.42,25.22,25.04,24.85,24.66,24.47,24.09,N/A,N/A -2012,10,21,3,30,101280,100130,99010,68.07000000000001,0,9.24,10.19,10.43,10.56,10.66,10.72,10.77,10.8,10.85,172.98,173.02,173.01,172.98,172.95000000000002,172.9,172.86,172.81,172.72,25.990000000000002,25.73,25.57,25.38,25.19,25.01,24.810000000000002,24.63,24.25,N/A,N/A -2012,10,21,4,30,101280,100130,99000,69.56,0,9.67,10.69,10.94,11.08,11.17,11.23,11.27,11.3,11.34,172.56,172.46,172.45000000000002,172.46,172.47,172.49,172.52,172.55,172.62,25.91,25.650000000000002,25.490000000000002,25.3,25.11,24.93,24.73,24.55,24.17,N/A,N/A -2012,10,21,5,30,101280,100130,99010,69.31,0,8.98,9.94,10.18,10.32,10.43,10.51,10.57,10.620000000000001,10.69,174.61,174.56,174.53,174.51,174.47,174.44,174.4,174.36,174.29,26.02,25.76,25.6,25.400000000000002,25.22,25.04,24.84,24.66,24.28,N/A,N/A -2012,10,21,6,30,101310,100160,99030,71.16,0,9.06,10.040000000000001,10.28,10.43,10.540000000000001,10.61,10.67,10.72,10.78,174.4,174.25,174.19,174.13,174.07,174.02,173.98,173.95000000000002,173.86,25.98,25.71,25.55,25.36,25.18,24.990000000000002,24.79,24.61,24.23,N/A,N/A -2012,10,21,7,30,101340,100190,99060,73.4,0,9.52,10.49,10.75,10.9,11,11.09,11.15,11.21,11.290000000000001,175.53,175.86,176.01,176.15,176.27,176.38,176.48,176.58,176.76,25.89,25.62,25.46,25.26,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A -2012,10,21,8,30,101350,100190,99070,77.47,0,9.15,10.16,10.42,10.59,10.71,10.790000000000001,10.86,10.91,10.97,177.70000000000002,177.82,177.87,177.9,177.93,177.96,177.97,177.99,178.02,25.86,25.59,25.43,25.240000000000002,25.05,24.87,24.68,24.490000000000002,24.11,N/A,N/A -2012,10,21,9,30,101370,100210,99090,71.88,0,9.6,10.64,10.91,11.06,11.17,11.24,11.290000000000001,11.33,11.38,175.88,176.22,176.32,176.39000000000001,176.45000000000002,176.48,176.52,176.55,176.59,25.98,25.73,25.57,25.38,25.2,25.01,24.82,24.64,24.26,N/A,N/A -2012,10,21,10,30,101410,100250,99130,74.21000000000001,0,9.21,10.23,10.48,10.63,10.73,10.8,10.85,10.89,10.93,174.15,174.48,174.62,174.74,174.85,174.94,175.03,175.12,175.28,25.900000000000002,25.64,25.48,25.28,25.1,24.91,24.72,24.54,24.150000000000002,N/A,N/A -2012,10,21,11,30,101420,100260,99140,76.27,0,8.64,9.540000000000001,9.76,9.89,9.97,10.03,10.07,10.1,10.120000000000001,173.68,174.21,174.49,174.76,175,175.21,175.42000000000002,175.61,176,25.85,25.580000000000002,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A -2012,10,21,12,30,101470,100310,99190,76.11,0,9.32,10.31,10.55,10.68,10.77,10.81,10.83,10.84,10.82,169.8,170.04,170.28,170.59,170.89000000000001,171.19,171.51,171.8,172.44,25.810000000000002,25.54,25.38,25.19,25.01,24.82,24.62,24.44,24.060000000000002,N/A,N/A -2012,10,21,13,30,101500,100340,99220,71.18,0,7.930000000000001,8.77,8.98,9.120000000000001,9.22,9.290000000000001,9.34,9.39,9.46,168.13,168.28,168.44,168.62,168.78,168.95000000000002,169.12,169.27,169.61,26.04,25.78,25.62,25.43,25.25,25.060000000000002,24.87,24.69,24.310000000000002,N/A,N/A -2012,10,21,14,30,101540,100380,99260,75.97,0,7.3,8.05,8.24,8.370000000000001,8.46,8.52,8.57,8.620000000000001,8.68,172.81,172.98,173.07,173.17000000000002,173.25,173.32,173.4,173.46,173.6,25.94,25.67,25.51,25.32,25.14,24.95,24.75,24.57,24.19,N/A,N/A -2012,10,21,15,30,101560,100410,99280,76.56,0,7.7700000000000005,8.55,8.73,8.85,8.94,9,9.040000000000001,9.08,9.13,172.36,172.9,173.11,173.29,173.43,173.55,173.64000000000001,173.73,173.86,25.900000000000002,25.63,25.47,25.28,25.09,24.900000000000002,24.71,24.53,24.14,N/A,N/A -2012,10,21,16,30,101570,100410,99290,75.56,0,8.05,8.82,8.99,9.06,9.1,9.120000000000001,9.120000000000001,9.11,9.07,165.84,166.06,166.22,166.39000000000001,166.55,166.70000000000002,166.84,166.98,167.26,25.85,25.580000000000002,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.09,N/A,N/A -2012,10,21,17,30,101570,100410,99280,69.77,0,7.1000000000000005,7.78,7.95,8.040000000000001,8.11,8.16,8.2,8.23,8.28,170.38,170.33,170.29,170.24,170.19,170.14000000000001,170.1,170.06,169.96,26.04,25.79,25.63,25.44,25.26,25.07,24.88,24.7,24.32,N/A,N/A -2012,10,21,18,30,101570,100410,99290,73.27,0,7.1000000000000005,7.8100000000000005,7.98,8.08,8.15,8.2,8.24,8.27,8.3,170.17000000000002,169.99,169.92000000000002,169.86,169.82,169.77,169.74,169.71,169.66,25.990000000000002,25.72,25.560000000000002,25.37,25.18,24.990000000000002,24.8,24.61,24.23,N/A,N/A -2012,10,21,19,30,101560,100400,99280,72.43,0,7.17,7.91,8.1,8.22,8.31,8.38,8.44,8.48,8.540000000000001,163.59,164.07,164.34,164.57,164.76,164.93,165.08,165.21,165.45000000000002,26.09,25.830000000000002,25.67,25.48,25.29,25.11,24.91,24.73,24.35,N/A,N/A -2012,10,21,20,30,101560,100400,99270,75,0,7.2700000000000005,7.98,8.16,8.25,8.32,8.370000000000001,8.4,8.42,8.44,156.18,156.3,156.42000000000002,156.55,156.67000000000002,156.79,156.9,157.01,157.24,25.91,25.650000000000002,25.490000000000002,25.29,25.11,24.92,24.72,24.54,24.16,N/A,N/A -2012,10,21,21,30,101530,100370,99250,72.72,0,7.5600000000000005,8.290000000000001,8.47,8.57,8.65,8.700000000000001,8.74,8.77,8.81,160.32,160.45000000000002,160.5,160.52,160.53,160.52,160.5,160.48,160.43,25.990000000000002,25.73,25.57,25.38,25.2,25.01,24.82,24.64,24.25,N/A,N/A -2012,10,21,22,30,101530,100370,99250,75.23,0,7.72,8.55,8.76,8.89,8.98,9.05,9.1,9.14,9.19,154.62,154.73,154.84,154.95000000000002,155.05,155.16,155.26,155.35,155.54,25.93,25.66,25.5,25.3,25.12,24.93,24.740000000000002,24.55,24.17,N/A,N/A -2012,10,21,23,30,101510,100350,99230,74.12,0,8.85,9.76,9.97,10.09,10.17,10.23,10.26,10.28,10.290000000000001,157.33,157.66,157.78,157.89000000000001,157.97,158.04,158.1,158.16,158.26,25.89,25.62,25.46,25.27,25.080000000000002,24.900000000000002,24.7,24.52,24.14,N/A,N/A -2012,10,22,0,30,101520,100360,99240,75.60000000000001,0,9.19,10.25,10.51,10.68,10.790000000000001,10.86,10.9,10.94,10.97,153.56,153.59,153.62,153.63,153.64000000000001,153.64000000000001,153.64000000000001,153.64000000000001,153.62,25.8,25.52,25.36,25.16,24.97,24.79,24.59,24.400000000000002,24.02,N/A,N/A -2012,10,22,1,30,101520,100360,99230,73.12,0,7.57,8.33,8.540000000000001,8.68,8.78,8.86,8.93,8.98,9.08,155.23,155.25,155.23,155.20000000000002,155.16,155.13,155.09,155.05,154.97,25.810000000000002,25.54,25.38,25.18,25,24.810000000000002,24.62,24.43,24.05,N/A,N/A -2012,10,22,2,30,101530,100370,99240,72.5,0,9.41,10.39,10.64,10.790000000000001,10.89,10.96,11.01,11.05,11.09,153.71,153.9,154.01,154.11,154.20000000000002,154.28,154.36,154.44,154.58,25.830000000000002,25.560000000000002,25.41,25.21,25.03,24.84,24.650000000000002,24.47,24.09,N/A,N/A -2012,10,22,3,30,101520,100360,99240,70.77,0,8.65,9.5,9.71,9.82,9.9,9.96,9.99,10.02,10.06,154.35,154.29,154.29,154.3,154.31,154.32,154.34,154.35,154.38,25.8,25.53,25.37,25.18,25,24.810000000000002,24.61,24.43,24.05,N/A,N/A -2012,10,22,4,30,101500,100340,99220,66.78,0,8.5,9.35,9.58,9.72,9.81,9.89,9.950000000000001,10,10.07,164.33,163.99,163.8,163.61,163.45000000000002,163.29,163.14000000000001,163,162.73,25.91,25.66,25.51,25.310000000000002,25.13,24.95,24.75,24.57,24.2,N/A,N/A -2012,10,22,5,30,101500,100340,99220,68.55,0,8.96,9.77,9.950000000000001,10.03,10.08,10.11,10.13,10.14,10.14,161.92000000000002,162.07,162.03,161.94,161.83,161.71,161.58,161.44,161.15,25.82,25.55,25.39,25.2,25.01,24.830000000000002,24.63,24.45,24.060000000000002,N/A,N/A -2012,10,22,6,30,101520,100360,99230,69.76,0,9.290000000000001,10.21,10.44,10.56,10.65,10.72,10.76,10.8,10.85,157.21,157.97,158.37,158.76,159.13,159.45000000000002,159.79,160.1,160.71,25.84,25.57,25.400000000000002,25.22,25.03,24.84,24.650000000000002,24.46,24.080000000000002,N/A,N/A -2012,10,22,7,30,101540,100380,99250,73.07000000000001,0,8.78,9.76,10.03,10.200000000000001,10.32,10.42,10.5,10.57,10.67,162.9,163.25,163.39000000000001,163.51,163.61,163.70000000000002,163.79,163.87,164,25.73,25.44,25.28,25.09,24.900000000000002,24.71,24.52,24.330000000000002,23.95,N/A,N/A -2012,10,22,8,30,101540,100380,99250,75.65,0,8.98,9.88,10.08,10.18,10.24,10.27,10.28,10.290000000000001,10.27,158.93,158.97,159,159.02,159.03,159.04,159.04,159.03,159.02,25.59,25.3,25.14,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A -2012,10,22,9,30,101560,100400,99280,75.3,0,7.86,8.700000000000001,8.91,9.040000000000001,9.13,9.200000000000001,9.25,9.290000000000001,9.34,160.38,159.8,159.67000000000002,159.59,159.56,159.55,159.56,159.58,159.67000000000002,25.67,25.37,25.2,25.01,24.810000000000002,24.62,24.43,24.240000000000002,23.85,N/A,N/A -2012,10,22,10,30,101580,100420,99290,75.03,0,7.98,8.790000000000001,8.99,9.1,9.18,9.23,9.27,9.290000000000001,9.33,158.9,158.47,158.3,158.14000000000001,158.01,157.88,157.76,157.65,157.43,25.560000000000002,25.26,25.09,24.89,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A -2012,10,22,11,30,101620,100450,99330,78.12,0,7.49,8.22,8.39,8.5,8.58,8.63,8.67,8.71,8.76,154.4,154.35,154.36,154.37,154.4,154.42000000000002,154.45000000000002,154.48,154.54,25.5,25.19,25.02,24.82,24.63,24.44,24.240000000000002,24.060000000000002,23.67,N/A,N/A -2012,10,22,12,30,101620,100460,99340,78.8,0,7.37,8.08,8.25,8.34,8.4,8.45,8.47,8.5,8.52,152.73,152.73,152.84,152.96,153.07,153.19,153.32,153.45000000000002,153.71,25.45,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A -2012,10,22,13,30,101670,100510,99380,74.89,0,6.92,7.63,7.82,7.96,8.06,8.14,8.22,8.28,8.4,150.29,150.43,150.53,150.62,150.70000000000002,150.78,150.86,150.93,151.09,25.57,25.28,25.12,24.93,24.75,24.560000000000002,24.37,24.19,23.81,N/A,N/A -2012,10,22,14,30,101680,100520,99390,77.98,0,6.99,7.7,7.87,7.97,8.040000000000001,8.1,8.14,8.17,8.22,152.42000000000002,152.23,152.08,151.92000000000002,151.77,151.62,151.47,151.32,151.02,25.54,25.240000000000002,25.07,24.87,24.68,24.5,24.3,24.12,23.73,N/A,N/A -2012,10,22,15,30,101690,100530,99400,75.39,0,6.87,7.48,7.62,7.7,7.75,7.78,7.8,7.82,7.8500000000000005,149.31,149.20000000000002,149.18,149.14000000000001,149.1,149.06,149.02,148.97,148.87,25.55,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A -2012,10,22,16,30,101690,100530,99400,78.3,0,6.32,6.95,7.11,7.21,7.29,7.3500000000000005,7.4,7.44,7.51,138.89000000000001,139.46,139.78,140.07,140.33,140.57,140.8,141.01,141.41,25.57,25.26,25.09,24.900000000000002,24.71,24.52,24.32,24.14,23.75,N/A,N/A -2012,10,22,17,30,101690,100520,99400,77.60000000000001,0,6.03,6.55,6.67,6.74,6.79,6.83,6.86,6.88,6.91,134.13,134.34,134.54,134.74,134.93,135.11,135.31,135.49,135.86,25.580000000000002,25.28,25.11,24.91,24.72,24.53,24.34,24.150000000000002,23.77,N/A,N/A -2012,10,22,18,30,101670,100510,99380,77.35000000000001,0,5.79,6.24,6.33,6.36,6.38,6.38,6.37,6.37,6.34,138.19,138.64000000000001,138.9,139.18,139.44,139.68,139.94,140.19,140.71,25.61,25.3,25.13,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A -2012,10,22,19,30,101660,100500,99380,75.56,0,6.69,7.2700000000000005,7.390000000000001,7.44,7.46,7.48,7.48,7.47,7.45,132.36,132.82,133.04,133.24,133.42000000000002,133.59,133.75,133.9,134.21,25.740000000000002,25.44,25.28,25.080000000000002,24.89,24.7,24.5,24.32,23.93,N/A,N/A -2012,10,22,20,30,101650,100490,99360,77.51,0,5.72,6.21,6.32,6.38,6.42,6.45,6.46,6.48,6.49,139.94,139.37,139.17000000000002,139.03,138.9,138.81,138.72,138.65,138.53,25.650000000000002,25.34,25.18,24.98,24.79,24.6,24.41,24.22,23.84,N/A,N/A -2012,10,22,21,30,101640,100480,99350,77.15,0,5.16,5.61,5.72,5.79,5.84,5.88,5.91,5.94,5.98,138.20000000000002,138.03,137.98,137.95000000000002,137.94,137.93,137.92000000000002,137.91,137.92000000000002,25.63,25.330000000000002,25.17,24.97,24.78,24.6,24.400000000000002,24.21,23.830000000000002,N/A,N/A -2012,10,22,22,30,101620,100450,99330,77.05,0,5.0200000000000005,5.48,5.58,5.65,5.7,5.73,5.76,5.78,5.8100000000000005,126.88000000000001,127.68,128.15,128.6,129.02,129.41,129.8,130.16,130.91,25.57,25.27,25.1,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A -2012,10,22,23,30,101600,100440,99320,79.14,0,6.18,6.75,6.88,6.96,7.01,7.04,7.07,7.08,7.1000000000000005,127.19,127.63000000000001,127.84,128.03,128.2,128.35,128.49,128.61,128.84,25.400000000000002,25.080000000000002,24.91,24.72,24.53,24.34,24.14,23.95,23.57,N/A,N/A -2012,10,23,0,30,101590,100430,99300,76.01,0,6.55,7.1000000000000005,7.22,7.28,7.33,7.3500000000000005,7.37,7.390000000000001,7.4,130.29,130.74,130.99,131.23,131.45,131.66,131.86,132.04,132.43,25.34,25.03,24.86,24.66,24.47,24.28,24.09,23.900000000000002,23.52,N/A,N/A -2012,10,23,1,30,101590,100420,99300,75.42,0,7.07,7.61,7.72,7.7700000000000005,7.8,7.8100000000000005,7.82,7.82,7.83,137.88,137.51,137.38,137.28,137.21,137.14000000000001,137.09,137.04,136.97,25.28,24.96,24.79,24.6,24.41,24.22,24.03,23.84,23.46,N/A,N/A -2012,10,23,2,30,101570,100410,99280,74.05,0,5.83,6.36,6.5,6.58,6.65,6.7,6.74,6.78,6.8500000000000005,132.27,132.5,132.69,132.88,133.06,133.25,133.44,133.61,133.98,25.28,24.96,24.79,24.59,24.400000000000002,24.21,24.02,23.830000000000002,23.45,N/A,N/A -2012,10,23,3,30,101580,100420,99290,74.82000000000001,0,6.5600000000000005,7.16,7.32,7.43,7.51,7.57,7.63,7.67,7.75,135.18,135.14000000000001,135.14000000000001,135.14000000000001,135.15,135.17000000000002,135.19,135.2,135.25,25.18,24.85,24.68,24.48,24.28,24.1,23.900000000000002,23.71,23.32,N/A,N/A -2012,10,23,4,30,101550,100390,99270,78.76,0,7.3,7.94,8.1,8.17,8.22,8.26,8.28,8.290000000000001,8.3,131.49,131.77,131.92000000000002,132.06,132.18,132.29,132.39000000000001,132.48,132.66,25.02,24.68,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.16,N/A,N/A -2012,10,23,5,30,101530,100370,99250,75.14,0,6.88,7.51,7.68,7.78,7.8500000000000005,7.9,7.95,7.98,8.040000000000001,141.1,140.78,140.68,140.61,140.56,140.52,140.49,140.46,140.43,25.23,24.900000000000002,24.73,24.54,24.35,24.16,23.96,23.78,23.39,N/A,N/A -2012,10,23,6,30,101520,100360,99230,72.87,0,6.8100000000000005,7.49,7.67,7.78,7.86,7.92,7.97,8.02,8.08,143.11,142.61,142.38,142.19,142.02,141.87,141.72,141.6,141.35,25.3,24.98,24.810000000000002,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A -2012,10,23,7,30,101530,100370,99250,75.13,0,7.58,8.32,8.51,8.63,8.73,8.8,8.85,8.9,8.98,142.68,143.63,144.1,144.51,144.86,145.18,145.47,145.75,146.24,25.26,24.96,24.79,24.6,24.41,24.23,24.03,23.85,23.47,N/A,N/A -2012,10,23,8,30,101540,100380,99250,76.61,0,7.13,7.75,7.9,7.97,8.03,8.06,8.08,8.1,8.11,143.01,143.21,143.37,143.56,143.74,143.91,144.1,144.27,144.64000000000001,25.2,24.88,24.71,24.51,24.32,24.13,23.93,23.75,23.36,N/A,N/A -2012,10,23,9,30,101520,100360,99240,75.84,0,6.0200000000000005,6.61,6.76,6.8500000000000005,6.92,6.97,7.01,7.04,7.09,147.21,146.99,146.99,147.02,147.06,147.11,147.17000000000002,147.23,147.37,25.22,24.900000000000002,24.72,24.52,24.330000000000002,24.14,23.94,23.76,23.37,N/A,N/A -2012,10,23,10,30,101540,100380,99260,72.93,0,6.29,6.8500000000000005,6.98,7.05,7.1000000000000005,7.140000000000001,7.17,7.2,7.24,150.18,150.03,149.95000000000002,149.86,149.78,149.71,149.64000000000001,149.58,149.47,25.400000000000002,25.1,24.93,24.73,24.54,24.36,24.16,23.97,23.59,N/A,N/A -2012,10,23,11,30,101550,100380,99260,73.14,0,5.82,6.2700000000000005,6.3500000000000005,6.390000000000001,6.41,6.42,6.42,6.42,6.41,151.19,151.41,151.58,151.75,151.91,152.06,152.20000000000002,152.34,152.62,25.36,25.05,24.89,24.69,24.5,24.32,24.12,23.93,23.55,N/A,N/A -2012,10,23,12,30,101570,100410,99290,71.2,0,5.66,6.1000000000000005,6.19,6.22,6.24,6.24,6.25,6.25,6.24,158.37,157.82,157.47,157.1,156.76,156.44,156.13,155.83,155.25,25.47,25.17,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,23,13,30,101570,100410,99280,71.95,0,4.8,5.26,5.37,5.44,5.49,5.54,5.57,5.6000000000000005,5.64,156.88,156.53,156.36,156.20000000000002,156.07,155.94,155.82,155.71,155.49,25.43,25.13,24.96,24.77,24.580000000000002,24.39,24.19,24.01,23.62,N/A,N/A -2012,10,23,14,30,101600,100430,99310,73.18,0,4.66,5.0200000000000005,5.09,5.13,5.15,5.17,5.18,5.19,5.2,151.76,151.96,152.05,152.1,152.15,152.19,152.22,152.24,152.27,25.39,25.080000000000002,24.92,24.72,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A -2012,10,23,15,30,101600,100430,99310,72.76,0,3.67,3.94,4,4.04,4.0600000000000005,4.08,4.1,4.11,4.13,159.13,158.25,157.70000000000002,157.18,156.71,156.27,155.84,155.44,154.63,25.45,25.150000000000002,24.990000000000002,24.79,24.61,24.42,24.22,24.04,23.650000000000002,N/A,N/A -2012,10,23,16,30,101610,100450,99320,72.83,0,3.47,3.73,3.79,3.84,3.87,3.9,3.92,3.95,3.99,137.89000000000001,138.47,138.81,139.1,139.34,139.57,139.77,139.95000000000002,140.3,25.44,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A -2012,10,23,17,30,101600,100440,99310,72.32000000000001,0,3.61,3.88,3.95,3.99,4.0200000000000005,4.05,4.07,4.09,4.12,129.41,129.7,129.91,130.09,130.25,130.41,130.56,130.7,130.98,25.5,25.18,25.01,24.82,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,23,18,30,101580,100420,99290,74,0,3.43,3.66,3.7,3.73,3.75,3.77,3.7800000000000002,3.79,3.81,125.5,126.37,126.87,127.34,127.75,128.13,128.5,128.85,129.53,25.51,25.18,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,23,19,30,101560,100400,99280,74.73,0,3.31,3.5,3.54,3.56,3.5700000000000003,3.58,3.58,3.59,3.59,123.38000000000001,123.61,123.78,123.94,124.08,124.22,124.35000000000001,124.48,124.76,25.45,25.12,24.95,24.75,24.560000000000002,24.37,24.17,23.990000000000002,23.6,N/A,N/A -2012,10,23,20,30,101540,100380,99250,74.67,0,2.99,3.18,3.22,3.25,3.27,3.2800000000000002,3.3000000000000003,3.31,3.34,115.51,115.57000000000001,115.66,115.74000000000001,115.82000000000001,115.9,115.98,116.05,116.22,25.47,25.14,24.97,24.77,24.580000000000002,24.39,24.19,24,23.62,N/A,N/A -2012,10,23,21,30,101530,100370,99250,75.47,0,3.18,3.37,3.42,3.44,3.46,3.47,3.48,3.49,3.5100000000000002,117.26,117.63,117.88,118.11,118.32000000000001,118.52,118.72,118.9,119.26,25.490000000000002,25.17,25,24.8,24.61,24.42,24.23,24.04,23.66,N/A,N/A -2012,10,23,22,30,101520,100360,99230,77.97,0,3.58,3.8200000000000003,3.87,3.91,3.93,3.94,3.96,3.97,3.98,116.22,116.49000000000001,116.7,116.91,117.11,117.3,117.5,117.68,118.06,25.400000000000002,25.09,24.92,24.72,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A -2012,10,23,23,30,101490,100330,99200,79.47,0,3.77,4.0200000000000005,4.07,4.09,4.11,4.12,4.12,4.13,4.13,106.91,107.32000000000001,107.54,107.77,107.99000000000001,108.2,108.43,108.65,109.16,-23.150000000000002,24.89,24.72,24.52,24.330000000000002,24.14,23.95,23.76,23.38,N/A,N/A -2012,10,24,0,30,101500,100340,99210,80.66,0,4.09,4.36,4.4,4.42,4.43,4.43,4.43,4.42,4.4,112.77,112.65,112.63,112.64,112.65,112.68,112.71000000000001,112.75,112.82000000000001,25.16,24.84,24.67,24.47,24.28,24.1,23.900000000000002,23.71,23.330000000000002,N/A,N/A -2012,10,24,1,30,101500,100340,99210,82.59,0,4.4,4.72,4.79,4.83,4.86,4.88,4.9,4.91,4.93,108.09,108.24000000000001,108.32000000000001,108.41,108.48,108.56,108.65,108.74000000000001,108.93,25.060000000000002,24.73,24.560000000000002,24.36,24.18,23.990000000000002,23.79,23.6,23.22,N/A,N/A -2012,10,24,2,30,101490,100330,99210,83.91,0,4.21,4.5,4.57,4.61,4.64,4.66,4.67,4.68,4.69,111.62,112.16,112.39,112.59,112.77,112.94,113.12,113.28,113.64,25.07,24.75,24.580000000000002,24.38,24.19,24,23.81,23.63,23.240000000000002,N/A,N/A -2012,10,24,3,30,101490,100330,99200,83.49,0,4.49,4.82,4.89,4.93,4.96,4.98,5,5.0200000000000005,5.04,119.32000000000001,119.49000000000001,119.56,119.63,119.71000000000001,119.78,119.86,119.94,120.13,25.150000000000002,24.830000000000002,24.66,24.46,24.27,24.09,23.89,23.71,23.330000000000002,N/A,N/A -2012,10,24,4,30,101470,100310,99190,83.84,0,5,5.44,5.55,5.62,5.66,5.7,5.74,5.76,5.8100000000000005,126.93,127.14,127.25,127.36,127.46000000000001,127.55,127.64,127.73,127.93,25.28,24.96,24.79,24.6,24.41,24.22,24.02,23.84,23.45,N/A,N/A -2012,10,24,5,30,101480,100320,99190,83.58,0,5.3500000000000005,5.8,5.91,5.97,6.01,6.05,6.07,6.09,6.13,130.91,131.44,131.75,132.05,132.32,132.59,132.86,133.11,133.65,25.32,25,24.84,24.64,24.45,24.26,24.07,23.89,23.5,N/A,N/A -2012,10,24,6,30,101480,100320,99190,83.53,0,4.65,5.03,5.11,5.17,5.2,5.23,5.26,5.2700000000000005,5.3100000000000005,135.8,136.07,136.2,136.3,136.38,136.47,136.54,136.61,136.76,25.48,25.17,25,24.810000000000002,24.62,24.43,24.23,24.05,23.67,N/A,N/A -2012,10,24,7,30,101500,100340,99210,84.38,0,5.4,5.89,6.01,6.09,6.140000000000001,6.19,6.23,6.26,6.3100000000000005,138.12,138.32,138.43,138.54,138.65,138.75,138.84,138.94,139.14000000000001,25.52,25.22,25.05,24.85,24.67,24.48,24.28,24.1,23.71,N/A,N/A -2012,10,24,8,30,101490,100330,99200,84.54,0,5.82,6.36,6.49,6.5600000000000005,6.61,6.65,6.67,6.7,6.73,152.29,152.13,152.01,151.88,151.75,151.63,151.51,151.39000000000001,151.14000000000001,25.52,25.21,25.04,24.85,24.66,24.47,24.28,24.1,23.72,N/A,N/A -2012,10,24,9,30,101490,100330,99210,85.59,0,5.79,6.3100000000000005,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.57,145.89000000000001,146.20000000000002,146.37,146.54,146.69,146.83,146.97,147.09,147.35,25.57,25.26,25.09,24.900000000000002,24.71,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A -2012,10,24,10,30,101500,100340,99220,84.23,0,5.66,6.23,6.38,6.49,6.58,6.65,6.71,6.76,6.8500000000000005,147.58,148.55,148.94,149.29,149.59,149.86,150.11,150.34,150.76,25.73,25.45,25.29,25.1,24.92,24.73,24.54,24.36,23.98,N/A,N/A -2012,10,24,11,30,101510,100350,99230,86.53,0,4.18,4.61,4.75,4.86,4.94,5.01,5.08,5.14,5.25,160.28,160.03,159.79,159.57,159.39000000000001,159.22,159.07,158.92000000000002,158.67000000000002,25.560000000000002,25.25,25.080000000000002,24.89,24.7,24.51,24.32,24.14,23.75,N/A,N/A -2012,10,24,12,30,101540,100380,99260,84.52,0,4.95,5.5200000000000005,5.69,5.82,5.93,6.0200000000000005,6.12,6.21,6.37,150.07,150.13,150.18,150.25,150.37,150.52,150.66,150.79,150.97,25.71,25.43,25.27,25.080000000000002,24.900000000000002,24.72,24.54,24.36,24,N/A,N/A -2012,10,24,13,30,101540,100380,99260,80.92,0,6.62,7.2,7.33,7.390000000000001,7.42,7.44,7.46,7.46,7.49,141.96,141.94,142.04,142.13,142.23,142.32,142.43,142.52,142.77,25.91,25.64,25.490000000000002,25.3,25.12,24.93,24.75,24.57,24.21,N/A,N/A -2012,10,24,14,30,101570,100410,99290,84.36,0,7.11,7.83,8.01,8.11,8.19,8.23,8.27,8.3,8.33,141.46,141.67000000000002,141.77,141.84,141.9,141.94,141.98,142,142.04,25.77,25.48,25.32,25.13,24.94,24.75,24.560000000000002,24.38,23.990000000000002,N/A,N/A -2012,10,24,15,30,101570,100410,99290,85.16,0,6.5600000000000005,7.19,7.33,7.41,7.46,7.5,7.53,7.55,7.57,136.3,136.26,136.28,136.32,136.36,136.4,136.45,136.49,136.59,25.71,25.41,25.240000000000002,25.04,24.86,24.67,24.47,24.29,23.900000000000002,N/A,N/A -2012,10,24,16,30,101560,100400,99280,85.34,0,6.2,6.75,6.890000000000001,6.96,7.01,7.04,7.07,7.08,7.1000000000000005,135.66,135.81,135.87,135.93,135.98,136.03,136.09,136.14000000000001,136.22,25.650000000000002,25.34,25.17,24.98,24.79,24.6,24.41,24.22,23.84,N/A,N/A -2012,10,24,17,30,101530,100370,99250,83.91,0,5.2700000000000005,5.69,5.78,5.82,5.8500000000000005,5.86,5.87,5.87,5.86,140.56,140.63,140.70000000000002,140.77,140.82,140.87,140.93,140.98,141.08,25.68,25.37,25.2,25,24.810000000000002,24.62,24.43,24.240000000000002,23.86,N/A,N/A -2012,10,24,18,30,101510,100350,99230,81.60000000000001,0,5.41,5.86,5.95,5.99,6.0200000000000005,6.03,6.03,6.03,6.0200000000000005,136.95000000000002,136.98,137.08,137.17000000000002,137.25,137.33,137.42000000000002,137.51,137.70000000000002,25.740000000000002,25.43,25.26,25.060000000000002,24.87,24.68,24.48,24.3,23.92,N/A,N/A -2012,10,24,19,30,101490,100340,99210,81.8,0,4.91,5.2700000000000005,5.34,5.37,5.39,5.4,5.41,5.41,5.41,132.63,132.92000000000002,133.06,133.19,133.28,133.36,133.44,133.51,133.64000000000001,25.650000000000002,25.330000000000002,25.16,24.97,24.78,24.59,24.400000000000002,24.21,23.830000000000002,N/A,N/A -2012,10,24,20,30,101470,100310,99190,84.06,0,4.86,5.26,5.34,5.38,5.41,5.43,5.44,5.44,5.44,129.79,129.95,130,130.02,130.03,130.04,130.03,130.02,129.98,25.580000000000002,25.26,25.080000000000002,24.89,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A -2012,10,24,21,30,101440,100280,99160,84.18,0,5.13,5.53,5.62,5.67,5.7,5.72,5.74,5.75,5.76,120.87,121.36,121.67,121.93,122.16,122.37,122.56,122.74000000000001,123.06,25.48,25.17,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,24,22,30,101420,100260,99140,82.97,0,4.95,5.36,5.46,5.5200000000000005,5.57,5.6000000000000005,5.63,5.66,5.72,124.89,124.87,124.9,124.94,124.98,125.02,125.07000000000001,125.13000000000001,125.27,25.57,25.26,25.1,24.900000000000002,24.72,24.54,24.34,24.16,23.78,N/A,N/A -2012,10,24,23,30,101390,100230,99110,86.43,0,5.09,5.46,5.53,5.5600000000000005,5.58,5.58,5.58,5.58,5.5600000000000005,127.56,127.26,127.09,126.92,126.75,126.60000000000001,126.45,126.3,125.98,25.43,25.11,24.95,24.75,24.560000000000002,24.37,24.18,23.990000000000002,23.61,N/A,N/A -2012,10,25,0,30,101360,100210,99080,86.16,0,4.86,5.25,5.33,5.38,5.42,5.44,5.47,5.49,5.55,128.05,128.26,128.37,128.49,128.62,128.74,128.88,129.03,129.43,25.44,25.13,24.97,24.77,24.59,24.400000000000002,24.21,24.03,23.66,N/A,N/A -2012,10,25,1,30,101370,100210,99090,84.07000000000001,0,7.94,8.63,8.78,8.85,8.9,8.92,8.93,8.94,8.94,133.36,133.58,133.72,133.88,134.04,134.19,134.36,134.51,134.84,25.75,25.46,25.3,25.1,24.92,24.73,24.54,24.36,23.98,N/A,N/A -2012,10,25,2,30,101340,100180,99060,87.94,0,7.55,8.27,8.44,8.53,8.59,8.63,8.65,8.66,8.66,132.56,132.73,132.8,132.86,132.9,132.93,132.96,132.98,133.01,25.490000000000002,25.18,25.01,24.82,24.63,24.44,24.25,24.07,23.69,N/A,N/A -2012,10,25,3,30,101330,100180,99060,87.54,0,8.23,9.05,9.24,9.34,9.41,9.450000000000001,9.48,9.49,9.49,133.56,133.65,133.7,133.75,133.8,133.84,133.88,133.93,134.03,25.53,25.22,25.05,24.85,24.66,24.48,24.28,24.1,23.71,N/A,N/A -2012,10,25,4,30,101290,100130,99010,88.71000000000001,0,8.59,9.52,9.75,9.9,10,10.08,10.14,10.19,10.26,135.61,135.97,136.11,136.25,136.38,136.49,136.61,136.71,136.92000000000002,25.61,25.3,25.13,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A -2012,10,25,5,30,101260,100100,98990,86.03,0,8.870000000000001,9.83,10.06,10.19,10.290000000000001,10.35,10.4,10.43,10.48,136.15,136.37,136.5,136.62,136.73,136.83,136.93,137.01,137.20000000000002,25.67,25.37,25.21,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.89,N/A,N/A -2012,10,25,6,30,101250,100090,98970,83.26,0,9.84,10.9,11.14,11.27,11.35,11.4,11.43,11.450000000000001,11.44,139.98,139.95000000000002,139.97,140,140.03,140.06,140.11,140.16,140.28,25.72,25.44,25.28,25.09,24.900000000000002,24.72,24.53,24.35,23.97,N/A,N/A -2012,10,25,7,30,101260,100110,98990,81.69,0,9.46,10.5,10.77,10.94,11.07,11.15,11.22,11.28,11.35,145.88,145.99,146.03,146.08,146.13,146.18,146.24,146.29,146.4,25.71,25.44,25.28,25.09,24.91,24.72,24.53,24.35,23.97,N/A,N/A -2012,10,25,8,30,101220,100070,98950,85.08,0,9.52,10.56,10.82,10.98,11.1,11.18,11.24,11.28,11.34,147.41,147.47,147.52,147.56,147.59,147.62,147.64000000000001,147.67000000000002,147.72,25.57,25.28,25.12,24.92,24.73,24.54,24.35,24.16,23.78,N/A,N/A -2012,10,25,9,30,101210,100050,98930,81.5,0,9.49,10.53,10.790000000000001,10.950000000000001,11.06,11.14,11.19,11.23,11.27,153.45000000000002,153.75,153.87,153.98,154.07,154.16,154.24,154.31,154.45000000000002,25.69,25.42,25.26,25.080000000000002,24.89,24.71,24.52,24.34,23.96,N/A,N/A -2012,10,25,10,30,101200,100050,98930,78.3,0,9.02,10.01,10.25,10.39,10.5,10.57,10.620000000000001,10.66,10.71,155.45000000000002,155.26,155.26,155.28,155.31,155.34,155.38,155.43,155.53,25.8,25.54,25.38,25.19,25,24.82,24.62,24.44,24.07,N/A,N/A -2012,10,25,11,30,101210,100050,98930,77.58,0,8.9,9.88,10.120000000000001,10.26,10.36,10.43,10.47,10.51,10.55,158.56,158.67000000000002,158.74,158.81,158.88,158.94,159.02,159.08,159.21,25.8,25.53,25.36,25.17,24.990000000000002,24.8,24.61,24.43,24.04,N/A,N/A -2012,10,25,12,30,101220,100060,98940,75.93,0,9.120000000000001,10.15,10.42,10.59,10.72,10.81,10.88,10.93,11.01,163.23,163.53,163.62,163.71,163.77,163.83,163.88,163.93,164.03,26.01,25.78,25.63,25.44,25.26,25.09,24.900000000000002,24.72,24.34,N/A,N/A -2012,10,25,13,30,101240,100080,98960,79.01,0,9.14,10.17,10.46,10.64,10.77,10.870000000000001,10.950000000000001,11.01,11.1,166.55,166.74,166.79,166.83,166.85,166.88,166.9,166.91,166.95000000000002,25.87,25.63,25.48,25.3,25.12,24.93,24.75,24.57,24.19,N/A,N/A -2012,10,25,14,30,101290,100130,99020,80.72,0,7.94,8.74,8.950000000000001,9.07,9.16,9.22,9.26,9.3,9.35,163.6,163.77,163.87,163.99,164.1,164.21,164.33,164.45000000000002,164.69,25.830000000000002,25.57,25.42,25.23,25.04,24.86,24.67,24.490000000000002,24.12,N/A,N/A -2012,10,25,15,30,101300,100140,99020,82.04,0,7.140000000000001,7.82,7.97,8.05,8.1,8.13,8.14,8.15,8.14,156.6,157.03,157.25,157.46,157.65,157.83,158.02,158.20000000000002,158.6,25.75,25.48,25.330000000000002,25.14,24.96,24.77,24.580000000000002,24.400000000000002,24.03,N/A,N/A -2012,10,25,16,30,101280,100130,99010,79.49,0,5.97,6.5600000000000005,6.72,6.8100000000000005,6.890000000000001,6.94,6.99,7.0200000000000005,7.08,162.69,162.56,162.51,162.47,162.42000000000002,162.38,162.34,162.31,162.22,25.91,25.650000000000002,25.5,25.310000000000002,25.12,24.94,24.75,24.57,24.19,N/A,N/A -2012,10,25,17,30,101280,100120,99000,79.21000000000001,0,5.53,6.03,6.140000000000001,6.2,6.25,6.28,6.3,6.32,6.37,157.75,158.08,158.26,158.42000000000002,158.56,158.70000000000002,158.83,158.96,159.27,25.94,25.67,25.51,25.330000000000002,25.150000000000002,24.96,24.78,24.6,24.23,N/A,N/A -2012,10,25,18,30,101290,100140,99020,80.7,0,5.28,5.73,5.83,5.87,5.91,5.93,5.94,5.95,5.96,156.31,156.46,156.54,156.63,156.71,156.8,156.88,156.97,157.16,25.91,25.63,25.47,25.28,25.09,24.900000000000002,24.72,24.53,24.150000000000002,N/A,N/A -2012,10,25,19,30,101300,100150,99030,81.10000000000001,0,4.6000000000000005,4.97,5.05,5.09,5.11,5.13,5.13,5.14,5.14,152.99,153.03,153.09,153.16,153.23,153.31,153.4,153.47,153.66,25.93,25.650000000000002,25.48,25.28,25.1,24.91,24.72,24.53,24.150000000000002,N/A,N/A -2012,10,25,20,30,101270,100110,99000,80.98,0,4.25,4.57,4.63,4.66,4.68,4.7,4.71,4.72,4.73,148.23,148.5,148.69,148.89000000000001,149.06,149.22,149.39000000000001,149.56,149.89000000000001,25.92,25.62,25.46,25.26,25.07,24.89,24.69,24.5,24.12,N/A,N/A -2012,10,25,21,30,101250,100090,98980,81.27,0,4.8500000000000005,5.25,5.33,5.38,5.4,5.43,5.44,5.45,5.47,145.5,145.77,145.91,146.04,146.16,146.27,146.38,146.47,146.66,25.900000000000002,25.62,25.45,25.26,25.07,24.88,24.69,24.5,24.12,N/A,N/A -2012,10,25,22,30,101220,100060,98950,80.21000000000001,0,4.07,4.4,4.47,4.5,4.53,4.54,4.55,4.5600000000000005,4.57,145.94,145.8,145.69,145.57,145.45000000000002,145.33,145.21,145.1,144.83,25.85,25.59,25.43,25.23,25.05,24.86,24.67,24.48,24.1,N/A,N/A -2012,10,25,23,30,101240,100090,98970,83.06,0,3.91,4.24,4.32,4.37,4.4,4.43,4.45,4.46,4.49,138.42000000000002,138.70000000000002,138.94,139.16,139.35,139.53,139.70000000000002,139.87,140.20000000000002,25.73,25.45,25.3,25.1,24.92,24.73,24.54,24.35,23.97,N/A,N/A -2012,10,26,0,30,101260,100110,98990,84.74,0,4.32,4.68,4.76,4.8,4.82,4.84,4.86,4.87,4.89,141.84,142.06,142.18,142.29,142.39000000000001,142.5,142.6,142.68,142.89000000000001,25.61,25.330000000000002,25.17,24.98,24.79,24.61,24.41,24.23,23.85,N/A,N/A -2012,10,26,1,30,101260,100110,98990,84.9,0,4.86,5.28,5.36,5.4,5.43,5.44,5.45,5.46,5.47,140.45000000000002,140.78,140.94,141.07,141.17000000000002,141.26,141.33,141.39000000000001,141.46,25.650000000000002,25.36,25.2,25.01,24.82,24.63,24.44,24.26,23.88,N/A,N/A -2012,10,26,2,30,101290,100140,99020,84.7,0,5.92,6.45,6.5600000000000005,6.61,6.640000000000001,6.65,6.66,6.66,6.63,139.06,139.21,139.36,139.52,139.66,139.81,139.95000000000002,140.09,140.35,25.7,25.42,25.26,25.07,24.89,24.7,24.5,24.32,23.94,N/A,N/A -2012,10,26,3,30,101300,100150,99030,84.55,0,5.46,5.96,6.07,6.140000000000001,6.18,6.21,6.22,6.23,6.23,135.94,136.53,136.92000000000002,137.33,137.70000000000002,138.06,138.43,138.77,139.47,25.67,25.39,25.23,25.04,24.86,24.67,24.48,24.29,23.92,N/A,N/A -2012,10,26,4,30,101310,100160,99030,84.3,0,4.9,5.32,5.41,5.46,5.5,5.5200000000000005,5.53,5.54,5.55,137.51,137.55,137.58,137.6,137.61,137.62,137.63,137.64000000000001,137.67000000000002,25.5,25.21,25.04,24.85,24.66,24.48,24.28,24.1,23.72,N/A,N/A -2012,10,26,5,30,101310,100150,99030,84.7,0,4.32,4.64,4.72,4.75,4.78,4.8,4.8100000000000005,4.82,4.83,134.29,134.48,134.51,134.55,134.59,134.64000000000001,134.69,134.73,134.85,25.37,25.07,24.900000000000002,24.7,24.51,24.330000000000002,24.13,23.95,23.56,N/A,N/A -2012,10,26,6,30,101330,100170,99050,87.56,0,4.72,5.05,5.11,5.13,5.14,5.15,5.14,5.13,5.11,139.02,139.34,139.51,139.70000000000002,139.88,140.07,140.28,140.48,140.96,25.22,24.900000000000002,24.72,24.53,24.34,24.150000000000002,23.96,23.78,23.39,N/A,N/A -2012,10,26,7,30,101360,100200,99080,87.97,0,4.0600000000000005,4.3100000000000005,4.3500000000000005,4.36,4.37,4.37,4.36,4.36,4.34,138.39000000000001,138.59,138.74,138.91,139.08,139.27,139.49,139.71,140.29,25.13,24.810000000000002,24.64,24.44,24.25,24.07,23.87,23.69,23.31,N/A,N/A -2012,10,26,8,30,101380,100220,99100,85.71000000000001,0,2.5500000000000003,2.66,2.66,2.66,2.65,2.64,2.62,2.61,2.58,151.68,151.83,152.03,152.24,152.45000000000002,152.65,152.88,153.1,153.63,25.17,24.86,24.69,24.5,24.310000000000002,24.12,23.93,23.740000000000002,23.36,N/A,N/A -2012,10,26,9,30,101390,100230,99100,86.64,0,2.58,2.71,2.74,2.75,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.77,160.59,161.15,161.46,161.81,162.17000000000002,162.54,162.97,163.39000000000001,164.42000000000002,25.080000000000002,24.76,24.59,24.39,24.21,24.02,23.82,23.64,23.26,N/A,N/A -2012,10,26,10,30,101420,100260,99140,86.53,0,1.68,1.77,1.79,1.81,1.82,1.83,1.84,1.85,1.87,170.59,171.88,172.53,173.17000000000002,173.75,174.33,174.93,175.51,176.8,25.1,24.79,24.62,24.43,24.240000000000002,24.05,23.85,23.67,23.29,N/A,N/A -2012,10,26,11,30,101450,100290,99170,84.85000000000001,0,1.1,1.18,1.2,1.23,1.25,1.27,1.29,1.31,1.36,218.71,219.07,219.43,219.76,220.05,220.35,220.61,220.84,221.38,25.19,24.88,24.71,24.52,24.330000000000002,24.14,23.95,23.77,23.39,N/A,N/A -2012,10,26,12,30,101490,100340,99210,83.92,0,0.8300000000000001,0.87,0.88,0.89,0.9,0.91,0.93,0.9400000000000001,0.98,304.59000000000003,300.74,298.45,296.13,294.05,292.04,290.08,288.23,284.54,25.23,24.93,24.76,24.57,24.38,24.19,24,23.81,23.43,N/A,N/A -2012,10,26,13,30,101520,100360,99230,85.34,0,1.78,1.83,1.82,1.8,1.78,1.77,1.75,1.73,1.69,358.69,357.17,356.18,355.15000000000003,354.16,353.18,352.12,351.12,348.86,25.150000000000002,24.84,24.67,24.47,24.29,24.1,23.91,23.72,23.34,N/A,N/A -2012,10,26,14,30,101590,100410,99280,99.42,0,9.89,10.44,10.46,10.33,10.09,9.78,9.14,8.49,7.19,337.75,337.8,337.77,337.66,337.36,336.93,335.93,334.90000000000003,333.05,21.96,21.490000000000002,21.330000000000002,21.21,21.14,21.12,21.19,21.29,21.53,N/A,N/A -2012,10,26,15,30,101600,100420,99280,94.03,1.5,10.620000000000001,11.41,11.540000000000001,11.58,11.57,11.55,11.5,11.450000000000001,11.3,350.74,350.79,350.74,350.69,350.63,350.57,350.5,350.42,350.17,21.16,20.57,20.35,20.13,19.93,19.75,19.55,19.38,19.02,N/A,N/A -2012,10,26,16,30,101650,100470,99320,92.8,0,9.39,10.040000000000001,10.17,10.22,10.24,10.24,10.22,10.21,10.15,1.3,1.36,1.4000000000000001,1.44,1.51,1.57,1.6500000000000001,1.74,1.97,20.490000000000002,19.89,19.67,19.45,19.25,19.06,18.86,18.68,18.31,N/A,N/A -2012,10,26,17,30,101610,100430,99280,90.5,0,10.48,11.23,11.35,11.38,11.370000000000001,11.35,11.31,11.26,11.15,353.19,353.55,353.73,353.91,354.12,354.31,354.57,354.82,355.57,20.32,19.7,19.47,19.26,19.07,18.88,18.69,18.52,18.17,N/A,N/A -2012,10,26,18,30,101650,100470,99320,86.25,0,10.11,10.86,11,11.06,11.08,11.08,11.06,11.040000000000001,10.96,355.90000000000003,356.08,356.18,356.3,356.42,356.54,356.69,356.83,357.2,20.490000000000002,19.87,19.64,19.41,19.21,19.01,18.81,18.63,18.240000000000002,N/A,N/A -2012,10,26,19,30,101670,100490,99330,84.37,0,10.74,11.57,11.73,11.790000000000001,11.82,11.83,11.81,11.790000000000001,11.72,352.38,352.85,353.14,353.43,353.71,353.97,354.25,354.52,355.11,20.29,19.650000000000002,19.41,19.19,18.98,18.79,18.580000000000002,18.39,18.01,N/A,N/A -2012,10,26,20,30,101690,100500,99350,83.2,0,10.98,11.84,12.01,12.09,12.120000000000001,12.13,12.13,12.120000000000001,12.06,359.35,359.51,359.6,359.69,359.77,359.85,359.93,0.01,0.17,19.84,19.17,18.92,18.69,18.47,18.28,18.07,17.88,17.48,N/A,N/A -2012,10,26,21,30,101730,100530,99380,84.36,0,11.28,12.16,12.35,12.44,12.49,12.52,12.52,12.51,12.47,355.69,355.84000000000003,355.94,356.03000000000003,356.12,356.2,356.29,356.37,356.53000000000003,19.11,18.39,18.13,17.89,17.67,17.47,17.26,17.06,16.67,N/A,N/A -2012,10,26,22,30,101750,100550,99390,85.19,0,11.84,12.780000000000001,12.99,13.08,13.120000000000001,13.15,13.15,13.15,13.11,356.28000000000003,356.40000000000003,356.47,356.54,356.62,356.68,356.75,356.82,356.98,18.43,17.67,17.400000000000002,17.16,16.94,16.73,16.52,16.330000000000002,15.93,N/A,N/A -2012,10,26,23,30,101780,100580,99410,86.53,0,12.76,13.85,14.1,14.22,14.290000000000001,14.34,14.36,14.370000000000001,14.36,0.9,0.97,0.97,0.97,0.96,0.96,0.96,0.96,0.96,17.78,16.95,16.67,16.43,16.19,15.99,15.77,15.58,15.18,N/A,N/A -2012,10,27,0,30,101830,100630,99460,85.27,0,12.19,13.15,13.35,13.43,13.46,13.47,13.450000000000001,13.43,13.370000000000001,358.47,358.63,358.71,358.79,358.87,358.95,359.04,359.13,359.32,17.09,16.26,15.98,15.74,15.51,15.31,15.1,14.9,14.51,N/A,N/A -2012,10,27,1,30,101890,100680,99500,86.32000000000001,0,12.67,13.69,13.92,14.030000000000001,14.1,14.14,14.16,14.17,14.16,6.54,6.69,6.78,6.86,6.94,7,7.08,7.15,7.3100000000000005,16.51,15.64,15.34,15.09,14.86,14.65,14.43,14.24,13.84,N/A,N/A -2012,10,27,2,30,101930,100720,99540,86.77,0,13.030000000000001,14.11,14.35,14.47,14.540000000000001,14.59,14.61,14.620000000000001,14.61,6.18,6.43,6.5600000000000005,6.69,6.8100000000000005,6.92,7.05,7.16,7.41,15.94,15.02,14.72,14.46,14.23,14.02,13.8,13.6,13.200000000000001,N/A,N/A -2012,10,27,3,30,101960,100740,99570,87.68,0,12.05,13.01,13.23,13.35,13.42,13.46,13.49,13.51,13.52,9.86,9.950000000000001,10.02,10.07,10.13,10.18,10.23,10.28,10.38,15.68,14.790000000000001,14.49,14.24,14,13.790000000000001,13.57,13.370000000000001,12.97,N/A,N/A -2012,10,27,4,30,101930,100720,99540,86.9,0,12.32,13.280000000000001,13.5,13.620000000000001,13.68,13.73,13.75,13.76,13.77,5.61,5.74,5.83,5.92,5.99,6.0600000000000005,6.140000000000001,6.21,6.36,15.42,14.51,14.21,13.950000000000001,13.72,13.51,13.290000000000001,13.09,12.69,N/A,N/A -2012,10,27,5,30,101940,100730,99550,85.67,0,12.49,13.51,13.75,13.88,13.950000000000001,14.01,14.040000000000001,14.06,14.07,7.72,7.99,8.13,8.27,8.4,8.53,8.65,8.77,9.03,15.13,14.200000000000001,13.89,13.63,13.39,13.18,12.96,12.76,12.36,N/A,N/A -2012,10,27,6,30,101930,100710,99530,83.76,0,13.120000000000001,14.23,14.49,14.63,14.72,14.77,14.8,14.83,14.84,10.49,10.64,10.73,10.82,10.9,10.98,11.06,11.15,11.31,15.1,14.15,13.84,13.58,13.33,13.120000000000001,12.9,12.700000000000001,12.290000000000001,N/A,N/A -2012,10,27,7,30,101980,100760,99580,77.46000000000001,0,13.280000000000001,14.4,14.66,14.8,14.88,14.94,14.97,14.99,15,13.51,13.66,13.76,13.84,13.91,13.99,14.06,14.13,14.280000000000001,15.09,14.13,13.82,13.56,13.32,13.11,12.89,12.68,12.290000000000001,N/A,N/A -2012,10,27,8,30,101960,100740,99560,73.72,0,13.38,14.51,14.780000000000001,14.91,15,15.05,15.08,15.11,15.120000000000001,12.31,12.48,12.56,12.64,12.71,12.780000000000001,12.85,12.91,13.05,15.030000000000001,14.08,13.76,13.5,13.26,13.05,12.83,12.620000000000001,12.22,N/A,N/A -2012,10,27,9,30,101980,100760,99570,70.74,0,13.42,14.55,14.8,14.94,15.02,15.07,15.1,15.120000000000001,15.13,11.120000000000001,11.26,11.35,11.43,11.51,11.59,11.67,11.74,11.9,14.700000000000001,13.73,13.41,13.15,12.91,12.69,12.47,12.27,11.870000000000001,N/A,N/A -2012,10,27,10,30,102010,100790,99600,70.87,0,14.32,15.56,15.85,15.99,16.080000000000002,16.14,16.16,16.18,16.18,17.86,18.02,18.12,18.22,18.3,18.37,18.45,18.52,18.67,14.1,13.07,12.74,12.47,12.23,12.01,11.790000000000001,11.59,11.19,N/A,N/A -2012,10,27,11,30,102080,100850,99660,71.93,0,14.14,15.34,15.620000000000001,15.76,15.84,15.9,15.92,15.94,15.94,19.05,19.2,19.31,19.400000000000002,19.490000000000002,19.57,19.650000000000002,19.73,19.89,13.75,12.71,12.370000000000001,12.1,11.85,11.64,11.42,11.21,10.81,N/A,N/A -2012,10,27,12,30,102130,100900,99710,71.75,0,13.52,14.63,14.88,15.02,15.09,15.14,15.16,15.17,15.17,17.72,17.900000000000002,18.01,18.11,18.2,18.29,18.38,18.47,18.650000000000002,13.370000000000001,12.33,12,11.73,11.49,11.27,11.05,10.84,10.44,N/A,N/A -2012,10,27,13,30,102130,100900,99710,73.27,0,13.66,14.77,15.02,15.15,15.21,15.26,15.27,15.280000000000001,15.27,16.16,16.32,16.4,16.47,16.55,16.61,16.68,16.740000000000002,16.88,13.05,12.01,11.68,11.41,11.16,10.950000000000001,10.73,10.52,10.120000000000001,N/A,N/A -2012,10,27,14,30,102150,100920,99720,74.09,0,12.61,13.57,13.790000000000001,13.89,13.950000000000001,13.99,14,14,13.99,14.02,14.17,14.26,14.34,14.42,14.49,14.57,14.63,14.780000000000001,12.870000000000001,11.86,11.53,11.27,11.03,10.81,10.59,10.4,10,N/A,N/A -2012,10,27,15,30,102160,100930,99740,73.01,0,10.96,11.73,11.9,11.98,12.02,12.040000000000001,12.05,12.05,12.040000000000001,10.32,10.42,10.49,10.55,10.620000000000001,10.67,10.74,10.8,10.93,13.09,12.16,11.85,11.59,11.35,11.15,10.93,10.73,10.34,N/A,N/A -2012,10,27,16,30,102120,100900,99710,69.99,0,10.47,11.200000000000001,11.35,11.43,11.47,11.5,11.51,11.52,11.52,6.3,6.390000000000001,6.46,6.5200000000000005,6.58,6.63,6.69,6.75,6.8500000000000005,13.700000000000001,12.82,12.52,12.26,12.030000000000001,11.82,11.6,11.41,11.01,N/A,N/A -2012,10,27,17,30,102080,100860,99670,65.51,0,9.66,10.31,10.46,10.53,10.58,10.61,10.620000000000001,10.64,10.64,1.35,1.5,1.6,1.7,1.79,1.87,1.96,2.04,2.2,14.52,13.69,13.4,13.14,12.91,12.700000000000001,12.48,12.280000000000001,11.88,N/A,N/A -2012,10,27,18,30,102040,100820,99640,60.71,0,9.15,9.76,9.89,9.96,10,10.03,10.040000000000001,10.05,10.05,359.33,359.45,359.52,359.59000000000003,359.65000000000003,359.71,359.77,359.83,359.95,15.33,14.55,14.27,14.030000000000001,13.8,13.6,13.38,13.18,12.780000000000001,N/A,N/A -2012,10,27,19,30,101990,100770,99590,58.79,0,9.43,10.07,10.22,10.3,10.35,10.38,10.4,10.42,10.43,355.04,355.07,355.11,355.14,355.18,355.21,355.24,355.28000000000003,355.35,16.18,15.42,15.15,14.9,14.67,14.46,14.24,14.040000000000001,13.64,N/A,N/A -2012,10,27,20,30,101930,100720,99540,56.5,0,9.21,9.83,9.97,10.05,10.09,10.13,10.14,10.16,10.17,353.47,353.69,353.84000000000003,353.98,354.12,354.25,354.37,354.49,354.73,16.89,16.16,15.9,15.65,15.43,15.22,15,14.8,14.39,N/A,N/A -2012,10,27,21,30,101910,100700,99530,54.5,0,9.21,9.84,9.98,10.07,10.120000000000001,10.15,10.17,10.19,10.200000000000001,354.7,354.91,355.04,355.15000000000003,355.26,355.36,355.46,355.56,355.74,17.37,16.66,16.4,16.15,15.93,15.72,15.5,15.3,14.89,N/A,N/A -2012,10,27,22,30,101900,100700,99530,53.65,0,9.17,9.8,9.94,10.02,10.07,10.1,10.11,10.13,10.14,356.06,356.19,356.28000000000003,356.37,356.46,356.54,356.62,356.7,356.86,17.56,16.85,16.59,16.35,16.12,15.92,15.700000000000001,15.5,15.09,N/A,N/A -2012,10,27,23,30,101920,100710,99540,50.050000000000004,0,9.870000000000001,10.55,10.68,10.74,10.77,10.790000000000001,10.790000000000001,10.790000000000001,10.78,0.46,0.23,0.04,359.84000000000003,359.64,359.46,359.27,359.09000000000003,358.74,17.42,16.69,16.43,16.2,15.98,15.780000000000001,15.56,15.36,14.97,N/A,N/A -2012,10,28,0,30,101960,100750,99570,55.01,0,10.59,11.34,11.51,11.58,11.620000000000001,11.65,11.65,11.65,11.63,1.6600000000000001,1.59,1.53,1.48,1.42,1.37,1.32,1.27,1.18,17,16.23,15.950000000000001,15.71,15.48,15.27,15.05,14.85,14.450000000000001,N/A,N/A -2012,10,28,1,30,101990,100780,99600,55.410000000000004,0,10.69,11.47,11.63,11.71,11.75,11.77,11.78,11.78,11.77,3.18,3.3000000000000003,3.37,3.43,3.49,3.54,3.6,3.65,3.75,16.44,15.64,15.370000000000001,15.13,14.9,14.69,14.48,14.280000000000001,13.88,N/A,N/A -2012,10,28,2,30,102040,100820,99640,57.93,0,10.81,11.61,11.78,11.86,11.91,11.94,11.950000000000001,11.96,11.950000000000001,10.14,10.16,10.16,10.17,10.17,10.17,10.17,10.16,10.16,16.12,15.31,15.030000000000001,14.780000000000001,14.55,14.34,14.120000000000001,13.92,13.51,N/A,N/A -2012,10,28,3,30,102060,100850,99670,58.1,0,11.08,11.9,12.08,12.17,12.22,12.25,12.27,12.27,12.27,14.39,14.4,14.41,14.42,14.42,14.43,14.42,14.41,14.41,15.83,14.99,14.71,14.46,14.22,14.01,13.790000000000001,13.59,13.18,N/A,N/A -2012,10,28,4,30,102080,100860,99680,59.35,0,11.08,11.89,12.07,12.16,12.21,12.23,12.25,12.25,12.24,18.51,18.55,18.55,18.56,18.56,18.56,18.57,18.57,18.57,15.47,14.620000000000001,14.33,14.08,13.85,13.64,13.42,13.22,12.81,N/A,N/A -2012,10,28,5,30,102110,100890,99700,58.1,0,11.26,12.08,12.26,12.34,12.39,12.42,12.42,12.43,12.41,21.23,21.330000000000002,21.39,21.43,21.47,21.51,21.54,21.580000000000002,21.650000000000002,15.23,14.370000000000001,14.07,13.82,13.59,13.370000000000001,13.15,12.950000000000001,12.55,N/A,N/A -2012,10,28,6,30,102120,100900,99710,58.9,0,11.35,12.19,12.38,12.47,12.52,12.540000000000001,12.55,12.55,12.530000000000001,21.57,21.78,21.89,21.98,22.07,22.150000000000002,22.23,22.3,22.45,14.96,14.120000000000001,13.83,13.58,13.35,13.14,12.92,12.72,12.32,N/A,N/A -2012,10,28,7,30,102150,100930,99740,58.79,0,11.11,11.93,12.11,12.200000000000001,12.24,12.27,12.280000000000001,12.290000000000001,12.27,24.91,25.080000000000002,25.16,25.240000000000002,25.310000000000002,25.37,25.43,25.490000000000002,25.6,14.68,13.84,13.55,13.3,13.07,12.86,12.64,12.44,12.040000000000001,N/A,N/A -2012,10,28,8,30,102170,100950,99760,58.7,0,10.72,11.49,11.66,11.74,11.790000000000001,11.82,11.82,11.83,11.81,27.32,27.48,27.59,27.68,27.76,27.830000000000002,27.91,27.98,28.11,14.56,13.72,13.44,13.19,12.950000000000001,12.75,12.530000000000001,12.33,11.92,N/A,N/A -2012,10,28,9,30,102170,100950,99760,58.72,0,10.790000000000001,11.57,11.73,11.81,11.85,11.88,11.88,11.88,11.86,26.19,26.37,26.48,26.57,26.66,26.740000000000002,26.82,26.900000000000002,27.05,14.36,13.52,13.24,12.99,12.76,12.55,12.33,12.13,11.73,N/A,N/A -2012,10,28,10,30,102190,100970,99780,58.39,0,10.76,11.52,11.69,11.76,11.8,11.82,11.83,11.83,11.81,25.740000000000002,25.92,26.02,26.12,26.2,26.28,26.36,26.43,26.580000000000002,14.18,13.33,13.040000000000001,12.790000000000001,12.56,12.35,12.14,11.94,11.540000000000001,N/A,N/A -2012,10,28,11,30,102210,100980,99790,58.96,0,10.620000000000001,11.36,11.51,11.58,11.61,11.63,11.620000000000001,11.620000000000001,11.59,24.96,25.18,25.3,25.42,25.52,25.62,25.71,25.810000000000002,25.990000000000002,14.06,13.21,12.92,12.67,12.44,12.23,12.02,11.82,11.42,N/A,N/A -2012,10,28,12,30,102230,101010,99820,58.9,0,10.32,11.03,11.18,11.24,11.28,11.290000000000001,11.3,11.290000000000001,11.27,23.79,23.990000000000002,24.12,24.240000000000002,24.35,24.45,24.560000000000002,24.650000000000002,24.84,13.98,13.14,12.85,12.61,12.370000000000001,12.17,11.950000000000001,11.75,11.36,N/A,N/A -2012,10,28,13,30,102260,101030,99840,59.96,0,10.3,10.99,11.13,11.19,11.21,11.22,11.21,11.200000000000001,11.16,23.07,23.29,23.42,23.54,23.66,23.76,23.87,23.98,24.18,13.71,12.86,12.57,12.32,12.09,11.89,11.67,11.48,11.08,N/A,N/A -2012,10,28,14,30,102300,101070,99870,59.92,0,9.74,10.38,10.51,10.56,10.59,10.6,10.6,10.6,10.57,22.990000000000002,23.150000000000002,23.26,23.36,23.45,23.53,23.62,23.69,23.85,13.66,12.83,12.55,12.3,12.07,11.870000000000001,11.65,11.450000000000001,11.06,N/A,N/A -2012,10,28,15,30,102300,101070,99880,59,0,9.35,9.950000000000001,10.07,10.13,10.15,10.17,10.17,10.17,10.15,20.19,20.330000000000002,20.400000000000002,20.46,20.51,20.57,20.62,20.67,20.77,13.84,13.030000000000001,12.75,12.51,12.280000000000001,12.08,11.86,11.67,11.27,N/A,N/A -2012,10,28,16,30,102290,101060,99870,57.01,0,8.75,9.3,9.41,9.47,9.49,9.51,9.52,9.52,9.51,17.31,17.36,17.400000000000002,17.43,17.46,17.48,17.51,17.53,17.580000000000002,14.25,13.47,13.200000000000001,12.96,12.73,12.530000000000001,12.32,12.120000000000001,11.72,N/A,N/A -2012,10,28,17,30,102270,101050,99860,54.230000000000004,0,8.040000000000001,8.540000000000001,8.65,8.700000000000001,8.74,8.76,8.77,8.78,8.790000000000001,11.540000000000001,11.620000000000001,11.67,11.72,11.77,11.8,11.84,11.870000000000001,11.94,14.8,14.06,13.8,13.56,13.34,13.14,12.92,12.73,12.33,N/A,N/A -2012,10,28,18,30,102240,101020,99840,50.44,0,7.96,8.47,8.58,8.65,8.69,8.72,8.73,8.75,8.77,7.930000000000001,7.84,7.8,7.76,7.72,7.69,7.66,7.63,7.58,15.540000000000001,14.84,14.58,14.35,14.13,13.92,13.71,13.51,13.11,N/A,N/A -2012,10,28,19,30,102220,101000,99820,47.63,0,7.74,8.23,8.35,8.42,8.47,8.5,8.52,8.540000000000001,8.57,5.25,5.11,5.04,4.98,4.92,4.88,4.84,4.8,4.72,16.46,15.790000000000001,15.540000000000001,15.3,15.08,14.870000000000001,14.66,14.46,14.06,N/A,N/A -2012,10,28,20,30,102170,100960,99780,45.980000000000004,0,7.46,7.930000000000001,8.040000000000001,8.09,8.13,8.16,8.18,8.19,8.22,0.58,0.76,0.87,0.97,1.05,1.12,1.2,1.27,1.41,17.07,16.44,16.19,15.96,15.74,15.540000000000001,15.33,15.13,14.73,N/A,N/A -2012,10,28,21,30,102150,100940,99770,44.37,0,7.57,8.040000000000001,8.14,8.21,8.25,8.27,8.290000000000001,8.31,8.33,3.19,3.12,3.0700000000000003,3,2.96,2.92,2.88,2.85,2.79,17.63,17.01,16.77,16.54,16.32,16.12,15.9,15.700000000000001,15.3,N/A,N/A -2012,10,28,22,30,102140,100930,99760,41.21,0,8.17,8.68,8.78,8.83,8.85,8.86,8.86,8.86,8.85,2.86,2.77,2.72,2.68,2.63,2.59,2.5500000000000003,2.5300000000000002,2.47,17.81,17.19,16.95,16.73,16.51,16.31,16.1,15.9,15.5,N/A,N/A -2012,10,28,23,30,102160,100950,99780,42.050000000000004,0,8.22,8.72,8.81,8.84,8.85,8.85,8.84,8.83,8.8,7.24,7.28,7.28,7.28,7.28,7.2700000000000005,7.26,7.25,7.21,17.78,17.150000000000002,16.91,16.69,16.47,16.28,16.07,15.870000000000001,15.47,N/A,N/A -2012,10,29,0,30,102180,100970,99800,45.13,0,8.4,8.94,9.040000000000001,9.09,9.1,9.120000000000001,9.11,9.11,9.09,6.8100000000000005,6.97,7.0600000000000005,7.140000000000001,7.21,7.28,7.34,7.41,7.53,17.490000000000002,16.84,16.6,16.37,16.15,15.96,15.74,15.55,15.15,N/A,N/A -2012,10,29,1,30,102200,100990,99820,49.56,0,8.66,9.22,9.34,9.39,9.42,9.44,9.44,9.44,9.43,13.55,13.71,13.790000000000001,13.88,13.950000000000001,14.01,14.08,14.14,14.27,17.23,16.56,16.31,16.080000000000002,15.860000000000001,15.66,15.44,15.25,14.85,N/A,N/A -2012,10,29,2,30,102230,101020,99840,50.2,0,8.32,8.85,8.97,9.02,9.05,9.06,9.07,9.07,9.06,19.48,19.5,19.5,19.51,19.51,19.51,19.51,19.52,19.52,17.05,16.38,16.14,15.9,15.68,15.48,15.27,15.07,14.67,N/A,N/A -2012,10,29,3,30,102240,101030,99850,50.44,0,8.31,8.83,8.93,8.98,9,9.01,9.01,9.01,8.99,22.37,22.47,22.52,22.57,22.62,22.650000000000002,22.69,22.740000000000002,22.82,16.95,16.28,16.04,15.8,15.58,15.39,15.17,14.98,14.58,N/A,N/A -2012,10,29,4,30,102240,101030,99850,51.51,0,8.57,9.11,9.22,9.26,9.28,9.290000000000001,9.290000000000001,9.290000000000001,9.26,24.18,24.28,24.32,24.37,24.41,24.45,24.490000000000002,24.53,24.6,16.84,16.16,15.92,15.68,15.47,15.26,15.05,14.85,14.46,N/A,N/A -2012,10,29,5,30,102260,101040,99860,51.15,0,8.32,8.83,8.93,8.98,8.99,9,9,8.99,8.97,26.44,26.650000000000002,26.77,26.88,26.98,27.07,27.17,27.26,27.44,16.78,16.11,15.860000000000001,15.63,15.41,15.21,14.99,14.8,14.4,N/A,N/A -2012,10,29,6,30,102280,101060,99880,52.31,0,8.8,9.36,9.47,9.51,9.53,9.540000000000001,9.540000000000001,9.53,9.5,25.66,25.900000000000002,26.04,26.18,26.310000000000002,26.42,26.54,26.650000000000002,26.88,16.6,15.91,15.66,15.43,15.200000000000001,15,14.790000000000001,14.59,14.200000000000001,N/A,N/A -2012,10,29,7,30,102320,101100,99920,52.85,0,8.53,9.05,9.15,9.18,9.200000000000001,9.200000000000001,9.19,9.18,9.13,27.73,28.03,28.2,28.37,28.53,28.66,28.810000000000002,28.94,29.21,16.45,15.76,15.51,15.280000000000001,15.06,14.86,14.65,14.450000000000001,14.06,N/A,N/A -2012,10,29,8,30,102330,101110,99930,54.300000000000004,0,8.46,8.97,9.06,9.09,9.1,9.1,9.09,9.07,9.02,29.19,29.53,29.740000000000002,29.92,30.09,30.25,30.42,30.560000000000002,30.87,16.28,15.59,15.34,15.1,14.89,14.68,14.47,14.280000000000001,13.88,N/A,N/A -2012,10,29,9,30,102350,101130,99950,54.6,0,8.45,8.950000000000001,9.040000000000001,9.07,9.08,9.08,9.06,9.05,9,30.55,30.94,31.17,31.38,31.580000000000002,31.76,31.95,32.13,32.49,16.1,15.41,15.15,14.92,14.700000000000001,14.5,14.290000000000001,14.09,13.700000000000001,N/A,N/A -2012,10,29,10,30,102360,101150,99960,55.46,0,8.36,8.85,8.94,8.97,8.97,8.97,8.950000000000001,8.94,8.88,31.76,32.21,32.480000000000004,32.730000000000004,32.96,33.17,33.39,33.6,34.01,16.080000000000002,15.39,15.13,14.9,14.68,14.48,14.27,14.07,13.68,N/A,N/A -2012,10,29,11,30,102390,101170,99990,56.46,0,8.55,9.05,9.13,9.16,9.16,9.16,9.13,9.11,9.05,33.43,33.85,34.11,34.35,34.58,34.78,35,35.2,35.6,15.98,15.27,15.02,14.790000000000001,14.56,14.36,14.15,13.96,13.56,N/A,N/A -2012,10,29,12,30,102400,101180,100000,60.31,0,8.57,9.07,9.16,9.19,9.19,9.18,9.16,9.14,9.08,33.28,33.74,34.02,34.28,34.53,34.75,34.980000000000004,35.19,35.64,15.72,15,14.74,14.51,14.290000000000001,14.09,13.88,13.68,13.280000000000001,N/A,N/A -2012,10,29,13,30,102420,101200,100020,59.44,0,8.2,8.66,8.73,8.74,8.74,8.73,8.700000000000001,8.68,8.61,33.45,33.95,34.25,34.53,34.79,35.04,35.29,35.53,36,15.71,15,14.75,14.52,14.3,14.1,13.89,13.69,13.3,N/A,N/A -2012,10,29,14,30,102450,101230,100050,60.88,0,7.5600000000000005,7.97,8.03,8.040000000000001,8.040000000000001,8.040000000000001,8.01,7.99,7.94,35.81,36.34,36.68,36.980000000000004,37.27,37.53,37.81,38.06,38.57,15.73,15.05,14.8,14.57,14.35,14.15,13.94,13.74,13.35,N/A,N/A -2012,10,29,15,30,102440,101220,100040,60.77,0,7.3500000000000005,7.73,7.79,7.8,7.79,7.78,7.76,7.74,7.68,34.22,34.69,34.980000000000004,35.230000000000004,35.480000000000004,35.7,35.94,36.160000000000004,36.6,15.84,15.17,14.92,14.69,14.47,14.27,14.06,13.870000000000001,13.48,N/A,N/A -2012,10,29,16,30,102420,101200,100020,58.550000000000004,0,6.91,7.26,7.3100000000000005,7.3100000000000005,7.3100000000000005,7.29,7.2700000000000005,7.25,7.2,33.84,34.22,34.45,34.660000000000004,34.86,35.04,35.230000000000004,35.410000000000004,35.77,15.950000000000001,15.290000000000001,15.05,14.82,14.6,14.41,14.200000000000001,14,13.61,N/A,N/A -2012,10,29,17,30,102390,101170,99990,52.93,0,6.49,6.8100000000000005,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.84,6.82,6.8,6.74,28.48,28.72,28.88,29.03,29.18,29.3,29.43,29.55,29.8,16.18,15.540000000000001,15.290000000000001,15.07,14.85,14.66,14.450000000000001,14.26,13.86,N/A,N/A -2012,10,29,18,30,102350,101140,99960,49.08,0,5.5,5.76,5.8,5.82,5.82,5.82,5.82,5.8100000000000005,5.8,22.52,22.73,22.86,22.98,23.09,23.19,23.29,23.39,23.580000000000002,16.55,15.96,15.72,15.5,15.290000000000001,15.09,14.89,14.69,14.3,N/A,N/A -2012,10,29,19,30,102320,101110,99930,46.660000000000004,0,4.8100000000000005,5.04,5.08,5.11,5.12,5.13,5.13,5.14,5.14,21.86,21.7,21.6,21.51,21.42,21.35,21.26,21.19,21.04,17.19,16.63,16.4,16.18,15.97,15.77,15.56,15.370000000000001,14.97,N/A,N/A -2012,10,29,20,30,102260,101050,99870,43.88,0,4.48,4.71,4.75,4.78,4.8,4.82,4.83,4.84,4.86,14.71,14.75,14.790000000000001,14.82,14.85,14.88,14.91,14.94,15,17.78,17.240000000000002,17.02,16.81,16.6,16.4,16.19,16,15.6,N/A,N/A -2012,10,29,21,30,102210,101010,99830,41.09,0,4.49,4.73,4.78,4.8,4.82,4.84,4.8500000000000005,4.86,4.88,12.35,12.46,12.530000000000001,12.59,12.63,12.67,12.69,12.71,12.74,18.37,17.85,17.63,17.42,17.22,17.02,16.81,16.62,16.23,N/A,N/A -2012,10,29,22,30,102160,100960,99790,41.04,0,4.62,4.87,4.92,4.95,4.98,4.99,5.01,5.0200000000000005,5.04,6.61,6.88,7.05,7.21,7.3500000000000005,7.48,7.61,7.72,7.97,18.8,18.29,18.080000000000002,17.87,17.67,17.47,17.27,17.07,16.68,N/A,N/A -2012,10,29,23,30,102150,100950,99780,42.6,0,5.23,5.5,5.55,5.5600000000000005,5.57,5.57,5.57,5.57,5.55,11.19,11.27,11.290000000000001,11.33,11.35,11.38,11.4,11.43,11.49,19.19,18.69,18.47,18.26,18.05,17.85,17.650000000000002,17.45,17.06,N/A,N/A -2012,10,30,0,30,102130,100930,99770,46.230000000000004,0,5.73,6.04,6.09,6.12,6.13,6.140000000000001,6.140000000000001,6.140000000000001,6.13,14.86,15.120000000000001,15.24,15.36,15.47,15.57,15.66,15.74,15.92,19.22,18.7,18.48,18.27,18.06,17.86,17.650000000000002,17.46,17.06,N/A,N/A -2012,10,30,1,30,102140,100940,99770,45.230000000000004,0,6.03,6.33,6.37,6.37,6.37,6.3500000000000005,6.34,6.3100000000000005,6.2700000000000005,21.740000000000002,21.91,22,22.09,22.17,22.240000000000002,22.32,22.400000000000002,22.55,19.06,18.53,18.31,18.1,17.89,17.7,17.490000000000002,17.3,16.9,N/A,N/A -2012,10,30,2,30,102150,100950,99780,46.11,0,5.34,5.58,5.61,5.61,5.6000000000000005,5.58,5.5600000000000005,5.55,5.5,29.86,30.03,30.11,30.19,30.27,30.35,30.42,30.490000000000002,30.650000000000002,18.94,18.42,18.21,17.990000000000002,17.78,17.59,17.38,17.19,16.8,N/A,N/A -2012,10,30,3,30,102130,100930,99760,48.65,0,5.28,5.51,5.54,5.54,5.53,5.51,5.5,5.48,5.43,34.04,34.31,34.47,34.62,34.76,34.89,35.03,35.15,35.42,18.86,18.330000000000002,18.12,17.91,17.7,17.5,17.3,17.1,16.71,N/A,N/A -2012,10,30,4,30,102110,100910,99740,51.32,0,5.32,5.54,5.55,5.54,5.5200000000000005,5.5,5.47,5.44,5.37,40.57,40.85,41.02,41.18,41.34,41.480000000000004,41.63,41.77,42.07,18.7,18.17,17.96,17.740000000000002,17.53,17.34,17.13,16.95,16.55,N/A,N/A -2012,10,30,5,30,102090,100890,99720,51.550000000000004,0,4.25,4.42,4.43,4.43,4.42,4.4,4.39,4.37,4.33,43.12,43.61,43.9,44.18,44.45,44.69,44.95,45.19,45.7,18.78,18.28,18.06,17.85,17.64,17.45,17.25,17.06,16.66,N/A,N/A -2012,10,30,6,30,102080,100880,99710,51.94,0,4.12,4.2700000000000005,4.28,4.2700000000000005,4.26,4.25,4.23,4.21,4.17,47.61,48.17,48.5,48.82,49.120000000000005,49.39,49.69,49.96,50.53,18.89,18.400000000000002,18.2,17.990000000000002,17.78,17.59,17.38,17.19,16.8,N/A,N/A -2012,10,30,7,30,102070,100870,99700,52.67,0,3.54,3.66,3.66,3.64,3.63,3.61,3.59,3.5700000000000003,3.52,51.300000000000004,51.86,52.18,52.49,52.78,53.04,53.33,53.59,54.14,18.94,18.47,18.26,18.06,17.85,17.66,17.45,17.26,16.87,N/A,N/A -2012,10,30,8,30,102050,100850,99680,53.93,0,2.94,3.02,3.02,3.0100000000000002,2.99,2.98,2.96,2.94,2.9,54.54,55.31,55.81,56.300000000000004,56.76,57.160000000000004,57.6,58,58.85,19,18.54,18.330000000000002,18.13,17.92,17.73,17.52,17.330000000000002,16.94,N/A,N/A -2012,10,30,9,30,102040,100840,99680,58.1,0,2.91,2.98,2.97,2.95,2.93,2.91,2.89,2.87,2.82,60.36,61.15,61.65,62.13,62.59,63.02,63.46,63.88,64.76,18.990000000000002,18.53,18.330000000000002,18.12,17.91,17.72,17.52,17.330000000000002,16.93,N/A,N/A -2012,10,30,10,30,102020,100820,99660,59.370000000000005,0,2.38,2.42,2.41,2.39,2.37,2.35,2.33,2.31,2.27,61.730000000000004,62.93,63.64,64.32000000000001,64.96000000000001,65.55,66.18,66.75,67.95,19.07,18.62,18.41,18.21,18,17.81,17.6,17.41,17.02,N/A,N/A -2012,10,30,11,30,102000,100810,99640,59.59,0,2.2,2.23,2.22,2.2,2.18,2.16,2.14,2.12,2.08,77.05,77.97,78.52,79.03,79.52,79.97,80.44,80.88,81.8,19.2,18.75,18.55,18.34,18.13,17.94,17.740000000000002,17.54,17.150000000000002,N/A,N/A -2012,10,30,12,30,102000,100800,99640,59.94,0,1.9000000000000001,1.93,1.9100000000000001,1.8900000000000001,1.87,1.85,1.83,1.81,1.77,79.04,80.26,81.08,81.88,82.64,83.34,84.09,84.78,86.26,19.28,18.830000000000002,18.63,18.43,18.22,18.03,17.82,17.63,17.240000000000002,N/A,N/A -2012,10,30,13,30,101990,100800,99640,60.02,0,1.76,1.79,1.77,1.75,1.74,1.72,1.71,1.69,1.67,63.050000000000004,64.78,65.93,67.06,68.16,69.18,70.27,71.26,73.4,19.39,18.95,18.75,18.54,18.34,18.150000000000002,17.94,17.75,17.36,N/A,N/A -2012,10,30,14,30,102010,100810,99650,61.04,0,1.78,1.82,1.81,1.8,1.79,1.78,1.77,1.76,1.74,85.15,87.58,88.98,90.32000000000001,91.54,92.66,93.82000000000001,94.88,97.03,19.6,19.17,18.97,18.76,18.56,18.37,18.16,17.97,17.57,N/A,N/A -2012,10,30,15,30,101990,100790,99630,60.99,0,1.27,1.3,1.3,1.3,1.3,1.3,1.3,1.31,1.32,85.96000000000001,89.26,91.38,93.42,95.3,97.03,98.78,100.37,103.60000000000001,19.73,19.31,19.11,18.900000000000002,18.7,18.51,18.31,18.12,17.72,N/A,N/A -2012,10,30,16,30,101960,100760,99600,62.74,0,2.04,2.06,2.04,2.0100000000000002,1.98,1.96,1.94,1.92,1.8800000000000001,118.5,120.34,121.42,122.5,123.52,124.47,125.48,126.4,128.36,19.89,19.47,19.27,19.06,18.86,18.67,18.46,18.28,17.88,N/A,N/A -2012,10,30,17,30,101920,100720,99570,63.42,0,1.37,1.44,1.46,1.48,1.49,1.5,1.52,1.54,1.56,149.06,151.42000000000002,152.79,154.05,155.18,156.20000000000002,157.19,158.08,159.91,20.01,19.59,19.39,19.19,18.990000000000002,18.79,18.59,18.400000000000002,18.01,N/A,N/A -2012,10,30,18,30,101890,100700,99550,66.21000000000001,0,2.16,2.22,2.21,2.2,2.19,2.18,2.17,2.16,2.15,146.39000000000001,148.5,149.76,150.97,152.08,153.1,154.14000000000001,155.09,157.04,20.16,19.740000000000002,19.55,19.34,19.14,18.95,18.740000000000002,18.56,18.16,N/A,N/A -2012,10,30,19,30,101860,100670,99520,65.89,0,2.02,2.13,2.17,2.19,2.22,2.24,2.2600000000000002,2.2800000000000002,2.32,173.20000000000002,174.18,174.79,175.35,175.87,176.35,176.82,177.25,178.12,20.38,19.97,19.78,19.57,19.37,19.18,18.97,18.79,18.39,N/A,N/A -2012,10,30,20,30,101800,100620,99460,67.15,0,2.59,2.69,2.7,2.71,2.72,2.73,2.73,2.73,2.75,167.95000000000002,170.12,171.41,172.63,173.74,174.73,175.74,176.65,178.49,20.56,20.150000000000002,19.95,19.75,19.55,19.36,19.150000000000002,18.97,18.580000000000002,N/A,N/A -2012,10,30,21,30,101770,100580,99430,67.35,0,2.58,2.73,2.77,2.8000000000000003,2.82,2.84,2.85,2.87,2.89,185.21,186.31,186.8,187.25,187.65,188.01,188.37,188.70000000000002,189.34,20.93,20.53,20.34,20.14,19.94,19.75,19.54,19.36,18.96,N/A,N/A -2012,10,30,22,30,101740,100550,99400,68.29,0,3.16,3.3000000000000003,3.3200000000000003,3.33,3.34,3.34,3.34,3.35,3.36,162.39000000000001,164.07,165.07,166.02,166.9,167.72,168.56,169.33,170.92000000000002,20.94,20.53,20.34,20.14,19.94,19.75,19.55,19.36,18.97,N/A,N/A -2012,10,30,23,30,101720,100540,99390,69.13,0,2.79,2.98,3.04,3.08,3.12,3.16,3.19,3.22,3.27,162.06,163.52,164.36,165.11,165.78,166.4,167,167.55,168.66,21.26,20.87,20.68,20.48,20.28,20.09,19.89,19.7,19.31,N/A,N/A -2012,10,31,0,30,101710,100530,99380,68.95,0,3.59,3.77,3.8000000000000003,3.8200000000000003,3.83,3.84,3.85,3.85,3.86,167.94,170.36,171.65,172.85,173.9,174.86,175.82,176.69,178.38,21.61,21.23,21.04,20.84,20.64,20.45,20.25,20.07,19.68,N/A,N/A -2012,10,31,1,30,101700,100520,99380,68.59,0,3.09,3.31,3.38,3.44,3.5,3.5500000000000003,3.6,3.65,3.74,167.61,169.41,170.46,171.41,172.25,173.02,173.79,174.5,175.84,21.7,21.32,21.14,20.94,20.740000000000002,20.56,20.36,20.17,19.78,N/A,N/A -2012,10,31,2,30,101710,100530,99380,68.31,0,3.62,3.87,3.95,4.01,4.05,4.09,4.13,4.17,4.23,192.04,192.95000000000002,193.44,193.87,194.23000000000002,194.56,194.86,195.13,195.68,22.04,21.67,21.490000000000002,21.28,21.09,20.900000000000002,20.7,20.51,20.12,N/A,N/A -2012,10,31,3,30,101700,100520,99370,67.29,0,4.33,4.62,4.7,4.75,4.8,4.84,4.87,4.9,4.96,208.4,208.85,209.1,209.32,209.53,209.72,209.9,210.06,210.4,22.21,21.84,21.650000000000002,21.45,21.26,21.07,20.86,20.68,20.29,N/A,N/A -2012,10,31,4,30,101680,100500,99360,65.49,0,5.5600000000000005,5.8500000000000005,5.9,5.91,5.91,5.91,5.89,5.88,5.8500000000000005,230.83,230.84,230.91,230.98000000000002,231.05,231.12,231.20000000000002,231.26,231.41,22.5,22.12,21.94,21.740000000000002,21.54,21.36,21.16,20.97,20.580000000000002,N/A,N/A -2012,10,31,5,30,101670,100490,99350,66.71000000000001,0,6.0200000000000005,6.46,6.53,6.55,6.5600000000000005,6.55,6.54,6.5200000000000005,6.48,237.65,237.85,237.81,237.74,237.66,237.58,237.49,237.39000000000001,237.18,22.62,22.25,22.07,21.86,21.67,21.47,21.27,21.09,20.69,N/A,N/A -2012,10,31,6,30,101670,100500,99360,68.27,0,5.13,5.5200000000000005,5.62,5.68,5.72,5.75,5.78,5.8,5.84,223.4,223.75,223.96,224.15,224.31,224.46,224.61,224.74,225.01,22.56,22.23,22.05,21.86,21.66,21.47,21.27,21.09,20.7,N/A,N/A -2012,10,31,7,30,101680,100510,99360,69.55,0,5.03,5.43,5.5200000000000005,5.58,5.62,5.66,5.68,5.7,5.73,228.33,228.69,228.89000000000001,229.07,229.23000000000002,229.37,229.52,229.66,229.93,22.68,22.35,22.18,21.98,21.79,21.6,21.400000000000002,21.21,20.82,N/A,N/A -2012,10,31,8,30,101670,100490,99350,69.59,0,4.09,4.54,4.69,4.8100000000000005,4.91,5,5.08,5.15,5.28,237.42000000000002,238.04,238.24,238.38,238.5,238.61,238.70000000000002,238.77,238.91,22.82,22.51,22.34,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,10,31,9,30,101670,100500,99360,70.45,0,3.95,4.24,4.32,4.37,4.41,4.44,4.48,4.5,4.5600000000000005,224.6,225.25,225.69,226.13,226.52,226.89000000000001,227.25,227.58,228.26,22.84,22.53,22.36,22.16,21.97,21.79,21.59,21.400000000000002,21.02,N/A,N/A -2012,10,31,10,30,101670,100500,99360,71.09,0,4.51,4.94,5.0600000000000005,5.15,5.22,5.2700000000000005,5.32,5.36,5.43,245.13,245.73000000000002,245.87,245.97,246.05,246.09,246.12,246.15,246.18,23.05,22.75,22.580000000000002,22.38,22.19,22.01,21.81,21.62,21.23,N/A,N/A -2012,10,31,11,30,101690,100510,99370,72.49,0,4.07,4.3500000000000005,4.4,4.43,4.46,4.48,4.49,4.5,4.53,258.92,257.64,256.74,255.86,255.07,254.32,253.59,252.92000000000002,251.58,22.89,22.580000000000002,22.41,22.22,22.03,21.84,21.650000000000002,21.46,21.07,N/A,N/A -2012,10,31,12,30,101700,100530,99390,72.94,0,3.46,3.67,3.71,3.73,3.75,3.7600000000000002,3.77,3.77,3.7800000000000002,265.48,263.8,262.68,261.53000000000003,260.47,259.49,258.49,257.57,255.81,22.87,22.57,22.400000000000002,22.21,22.02,21.830000000000002,21.64,21.46,21.07,N/A,N/A -2012,10,31,13,30,101710,100540,99400,77.49,0,2.98,3.13,3.15,3.16,3.16,3.16,3.17,3.17,3.2,283,280.93,279.54,278.17,276.86,275.61,274.23,272.95,269.85,22.51,22.19,22.02,21.830000000000002,21.650000000000002,21.47,21.27,21.1,20.72,N/A,N/A -2012,10,31,14,30,101740,100570,99430,77.24,0,2.09,2.22,2.2600000000000002,2.29,2.33,2.36,2.4,2.43,2.5300000000000002,263.78000000000003,262.11,261.09000000000003,260.11,259.19,258.3,257.29,256.33,254.17000000000002,22.5,22.18,22.01,21.82,21.63,21.45,21.25,21.07,20.71,N/A,N/A -2012,10,31,15,30,101740,100570,99430,76.32000000000001,0,1.99,2.09,2.11,2.14,2.15,2.17,2.19,2.21,2.27,268.38,266.4,265.07,263.77,262.53000000000003,261.33,260.09000000000003,258.93,256.23,22.63,22.31,22.14,21.94,21.76,21.57,21.38,21.2,20.82,N/A,N/A -2012,10,31,16,30,101740,100570,99430,77.57000000000001,0,1.96,2.08,2.12,2.15,2.18,2.21,2.25,2.2800000000000002,2.4,228.57,227.57,227.04,226.51,226,225.48000000000002,224.94,224.42000000000002,223.44,22.64,22.32,22.14,21.95,21.76,21.57,21.38,21.2,20.830000000000002,N/A,N/A -2012,10,31,17,30,101710,100540,99400,77.59,0,1.95,2.06,2.09,2.12,2.14,2.17,2.2,2.23,2.36,227.85,227.62,227.53,227.46,227.42000000000002,227.4,227.46,227.54,228.34,22.79,22.47,22.3,22.1,21.91,21.73,21.54,21.36,21,N/A,N/A -2012,10,31,18,30,101690,100520,99380,77.23,0,3.35,3.5500000000000003,3.59,3.61,3.63,3.65,3.67,3.68,3.74,202.47,202.6,202.68,202.76,202.85,202.95000000000002,203.1,203.27,204.63,23.06,22.73,22.55,22.36,22.17,21.990000000000002,21.79,21.61,21.25,N/A,N/A -2012,10,31,19,30,101660,100490,99350,76.77,0,4.3500000000000005,4.63,4.68,4.71,4.72,4.73,4.73,4.73,4.73,202.69,202.96,203.09,203.20000000000002,203.32,203.44,203.58,203.73000000000002,204.12,23.32,23,22.830000000000002,22.63,22.44,22.26,22.06,21.88,21.5,N/A,N/A -2012,10,31,20,30,101630,100460,99320,77.28,0,5.16,5.53,5.59,5.61,5.61,5.6000000000000005,5.59,5.57,5.5200000000000005,200.17000000000002,200.31,200.44,200.57,200.70000000000002,200.82,200.98000000000002,201.13,201.58,23.42,23.11,22.94,22.75,22.56,22.37,22.18,22,21.61,N/A,N/A -2012,10,31,21,30,101610,100440,99310,78.92,0,4.86,5.24,5.32,5.34,5.36,5.36,5.36,5.36,5.34,200,200.28,200.44,200.61,200.78,200.94,201.14000000000001,201.34,201.87,23.41,23.12,22.96,22.76,22.57,22.39,22.19,22.01,21.64,N/A,N/A -2012,10,31,22,30,101590,100420,99290,79.91,0,5.15,5.61,5.71,5.76,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8,200.23000000000002,200.5,200.64000000000001,200.79,200.92000000000002,201.03,201.15,201.27,201.52,23.42,23.14,22.98,22.79,22.6,22.42,22.22,22.04,21.66,N/A,N/A -2012,10,31,23,30,101590,100420,99290,81.61,0,4.99,5.42,5.51,5.5600000000000005,5.58,5.6000000000000005,5.61,5.61,5.61,206.70000000000002,206.93,207.06,207.20000000000002,207.32,207.44,207.57,207.70000000000002,208.02,23.41,23.13,22.97,22.78,22.59,22.41,22.21,22.03,21.650000000000002,N/A,N/A -2012,11,1,0,30,101600,100430,99300,82.33,0,5.99,6.55,6.69,6.76,6.8100000000000005,6.8500000000000005,6.87,6.88,6.9,209.02,209.23000000000002,209.36,209.49,209.61,209.73000000000002,209.85,209.96,210.20000000000002,23.490000000000002,23.22,23.06,22.87,22.68,22.5,22.3,22.12,21.740000000000002,N/A,N/A -2012,11,1,1,30,101620,100450,99320,83.35000000000001,0,6.1000000000000005,6.66,6.79,6.86,6.91,6.93,6.94,6.95,6.95,213.79,213.95000000000002,214.03,214.11,214.20000000000002,214.28,214.38,214.47,214.71,23.53,23.27,23.11,22.92,22.73,22.55,22.36,22.18,21.8,N/A,N/A -2012,11,1,2,30,101630,100470,99330,84.67,0,6.19,6.76,6.9,6.97,7.0200000000000005,7.05,7.0600000000000005,7.07,7.07,219.08,219.28,219.37,219.45000000000002,219.53,219.6,219.68,219.74,219.91,23.55,23.29,23.13,22.94,22.75,22.57,22.38,22.19,21.82,N/A,N/A -2012,11,1,3,30,101640,100470,99340,85.81,0,6.2700000000000005,6.86,7.01,7.07,7.12,7.16,7.18,7.2,7.21,222.72,222.85,222.91,222.99,223.05,223.11,223.18,223.24,223.39000000000001,23.56,23.29,23.13,22.94,22.76,22.57,22.38,22.2,21.82,N/A,N/A -2012,11,1,4,30,101640,100470,99340,86.24,0,6.37,6.98,7.12,7.2,7.24,7.2700000000000005,7.29,7.3100000000000005,7.32,224.98000000000002,225.04,225.11,225.17000000000002,225.24,225.31,225.39000000000001,225.46,225.65,23.59,23.32,23.16,22.97,22.79,22.6,22.41,22.23,21.85,N/A,N/A -2012,11,1,5,30,101650,100480,99350,87.25,0,6.0600000000000005,6.62,6.74,6.8100000000000005,6.86,6.9,6.92,6.93,6.95,228.37,228.47,228.53,228.58,228.64000000000001,228.70000000000002,228.77,228.84,229.02,23.59,23.330000000000002,23.17,22.98,22.79,22.61,22.42,22.240000000000002,21.86,N/A,N/A -2012,11,1,6,30,101670,100500,99370,88.43,0,6.0600000000000005,6.640000000000001,6.78,6.8500000000000005,6.9,6.93,6.95,6.97,6.99,230.68,230.82,230.89000000000001,230.96,231.03,231.1,231.17000000000002,231.23000000000002,231.39000000000001,23.63,23.35,23.19,22.990000000000002,22.81,22.62,22.43,22.240000000000002,21.86,N/A,N/A -2012,11,1,7,30,101710,100540,99410,88.92,0,5.88,6.42,6.5600000000000005,6.63,6.68,6.71,6.73,6.75,6.78,235.93,236.05,236.1,236.17000000000002,236.22,236.28,236.33,236.4,236.54,23.69,23.42,23.26,23.07,22.88,22.69,22.5,22.32,21.93,N/A,N/A -2012,11,1,8,30,101710,100540,99410,89.74,0,5.83,6.390000000000001,6.54,6.62,6.68,6.72,6.75,6.7700000000000005,6.8,239.32,239.41,239.45000000000002,239.51,239.56,239.61,239.66,239.71,239.82,23.72,23.45,23.29,23.1,22.91,22.72,22.53,22.35,21.97,N/A,N/A -2012,11,1,9,30,101710,100540,99410,89.52,0,5.41,5.92,6.05,6.12,6.17,6.19,6.22,6.23,6.26,245.35,245.43,245.46,245.5,245.54,245.57,245.6,245.63,245.71,23.71,23.44,23.28,23.080000000000002,22.900000000000002,22.71,22.52,22.34,21.95,N/A,N/A -2012,11,1,10,30,101730,100560,99430,89.52,0,5.25,5.73,5.8500000000000005,5.91,5.96,5.98,6,6.01,6.0200000000000005,243.46,243.65,243.78,243.94,244.08,244.23000000000002,244.4,244.56,244.97,23.79,23.52,23.35,23.16,22.97,22.78,22.580000000000002,22.39,21.990000000000002,N/A,N/A -2012,11,1,11,30,101740,100580,99440,89.05,0,4.47,4.91,5.03,5.1000000000000005,5.15,5.19,5.23,5.26,5.3100000000000005,249.21,249.61,249.92000000000002,250.22,250.53,250.83,251.14000000000001,251.45000000000002,252.16,23.73,23.44,23.27,23.06,22.87,22.67,22.46,22.26,21.84,N/A,N/A -2012,11,1,12,30,101750,100570,99440,94.45,0,3.94,4.0600000000000005,4.07,4.1,4.14,4.19,4.24,4.28,4.41,269.05,267.92,265.29,259.39,255.9,253.86,252.41,251.23000000000002,249.58,23.04,22.78,22.68,22.62,22.55,22.46,22.31,22.150000000000002,21.8,N/A,N/A -2012,11,1,13,30,101780,100600,99460,98.76,0,3.58,3.63,3.6,3.58,3.62,3.69,3.87,4.0600000000000005,4.3100000000000005,292.12,291.32,288.99,283.55,277.64,271.36,264.07,256.86,250.1,22.21,21.900000000000002,21.77,21.64,21.54,21.44,21.54,21.69,21.59,N/A,N/A -2012,11,1,14,30,101800,100620,99480,99.33,0,3.5,3.65,3.68,3.69,3.9,4.26,4.53,4.78,4.8100000000000005,286.89,285.83,285.07,284.13,280.81,275.67,270.19,264.91,260.07,21.87,21.57,21.43,21.28,21.16,21.080000000000002,21.17,21.28,21.19,N/A,N/A -2012,11,1,15,30,101800,100620,99480,99.37,0,3.35,3.49,3.5100000000000002,3.52,3.56,3.61,3.86,4.17,4.55,296.81,294.40000000000003,292.68,290.61,287.53000000000003,283.86,276.45,268.12,261.84000000000003,21.63,21.32,21.18,21.03,20.85,20.66,20.650000000000002,20.69,21.12,N/A,N/A -2012,11,1,16,30,101790,100610,99470,97.64,0,3.11,3.24,3.25,3.25,3.25,3.2600000000000002,3.27,3.29,3.5300000000000002,278.01,278.24,278.39,278.53000000000003,278.49,278.37,277.18,275.8,269.23,21.97,21.63,21.46,21.27,21.13,21.01,20.85,20.69,20.69,N/A,N/A -2012,11,1,17,30,101770,100590,99460,97.59,0.5,2.06,2.1,2.08,2.06,2.0300000000000002,2.0100000000000002,2.09,2.18,3.0700000000000003,287.29,285.18,283.79,282.13,280.15000000000003,278.02,272.93,267.2,255.17000000000002,22.02,21.69,21.53,21.36,21.22,21.1,20.93,20.77,20.8,N/A,N/A -2012,11,1,18,30,101750,100570,99440,95.97,0,2.61,2.59,2.5,2.38,2.25,2.15,2.17,2.21,2.72,295.3,293.65000000000003,292.24,290.16,286.84000000000003,283.03000000000003,280.27,277.93,262.5,22.19,21.87,21.72,21.57,21.46,21.36,21.23,21.09,20.98,N/A,N/A -2012,11,1,19,30,101720,100550,99410,95.28,0,1.8900000000000001,1.87,1.82,1.76,1.71,1.67,1.6500000000000001,1.6400000000000001,1.98,268.28000000000003,263.86,260.75,256.94,251.74,245.85,237.48000000000002,229.38,239.52,22.330000000000002,22.01,21.84,21.68,21.54,21.42,21.31,21.2,20.98,N/A,N/A -2012,11,1,20,30,101700,100530,99390,95.68,0,1.3900000000000001,1.43,1.44,1.45,1.5,1.57,1.87,2.29,3.0700000000000003,191.83,192.92000000000002,193.85,195.21,197.19,199.69,205.22,212.26,220.34,22.43,22.09,21.92,21.740000000000002,21.580000000000002,21.41,21.32,21.25,21.55,N/A,N/A -2012,11,1,21,30,101670,100500,99360,93.82000000000001,0,3.02,3.15,3.15,3.14,3.13,3.11,3.11,3.1,3.2800000000000002,180.27,180.56,180.77,181.03,181.4,181.86,183.72,185.84,205.38,22.86,22.51,22.34,22.150000000000002,21.97,21.8,21.63,21.48,21.73,N/A,N/A -2012,11,1,22,30,101660,100490,99350,96.05,0,4.36,4.54,4.54,4.5,4.47,4.43,4.43,4.42,4.09,174.08,174.28,174.49,174.86,175.70000000000002,176.86,181.1,186,195.99,22.57,22.23,22.05,21.86,21.68,21.53,21.45,21.42,21.97,N/A,N/A -2012,11,1,23,30,101630,100460,99330,94.54,0,4.25,4.47,4.49,4.51,4.61,4.7700000000000005,5.12,5.5,5.34,181.43,181.58,181.74,181.97,182.65,183.62,185.79,188.27,192.71,22.81,22.490000000000002,22.330000000000002,22.150000000000002,22.02,21.91,21.94,22.02,22.04,N/A,N/A -2012,11,2,0,30,101670,100500,99370,91.01,0,5.63,6.13,6.26,6.34,6.390000000000001,6.43,6.46,6.49,6.54,194.21,194.82,195.12,195.41,195.70000000000002,196.01,196.34,196.66,197.45000000000002,23.45,23.14,22.97,22.76,22.57,22.37,22.16,21.97,21.52,N/A,N/A -2012,11,2,1,30,101660,100490,99360,90.06,0,5.47,5.95,6.05,6.1000000000000005,6.13,6.15,6.15,6.16,6.15,203.20000000000002,203.42000000000002,203.57,203.74,203.91,204.08,204.28,204.47,204.97,23.56,23.27,23.1,22.900000000000002,22.71,22.52,22.330000000000002,22.14,21.75,N/A,N/A -2012,11,2,2,30,101660,100490,99360,90.08,0,5.17,5.64,5.75,5.8100000000000005,5.8500000000000005,5.88,5.9,5.92,5.96,198.78,199.14000000000001,199.36,199.59,199.8,200,200.21,200.41,200.9,23.63,23.34,23.18,22.990000000000002,22.8,22.62,22.43,22.240000000000002,21.86,N/A,N/A -2012,11,2,3,30,101660,100490,99360,90.55,0,5.61,6.12,6.23,6.28,6.32,6.34,6.36,6.38,6.4,197.01,197.18,197.31,197.46,197.61,197.77,197.94,198.12,198.56,23.64,23.37,23.2,23.01,22.830000000000002,22.64,22.45,22.26,21.89,N/A,N/A -2012,11,2,4,30,101640,100480,99340,89.89,0,5.12,5.58,5.69,5.74,5.78,5.8,5.82,5.84,5.88,198.6,198.66,198.74,198.84,198.95000000000002,199.07,199.23000000000002,199.38,199.85,23.68,23.41,23.25,23.06,22.87,22.69,22.490000000000002,22.31,21.94,N/A,N/A -2012,11,2,5,30,101650,100480,99350,89.52,0,6.05,6.61,6.74,6.8100000000000005,6.86,6.890000000000001,6.91,6.92,6.93,201.22,201.29,201.34,201.41,201.48000000000002,201.56,201.66,201.75,202,23.740000000000002,23.47,23.31,23.12,22.93,22.75,22.55,22.37,21.990000000000002,N/A,N/A -2012,11,2,6,30,101660,100490,99360,89.88,0,5.8500000000000005,6.38,6.51,6.57,6.61,6.63,6.65,6.66,6.66,205.13,205.22,205.29,205.37,205.45000000000002,205.52,205.61,205.69,205.92000000000002,23.76,23.490000000000002,23.330000000000002,23.13,22.95,22.76,22.57,22.39,22.01,N/A,N/A -2012,11,2,7,30,101670,100500,99370,88.23,0,5.64,6.16,6.28,6.3500000000000005,6.390000000000001,6.42,6.44,6.45,6.47,211.77,211.87,211.93,211.99,212.06,212.12,212.19,212.25,212.4,23.740000000000002,23.46,23.3,23.11,22.92,22.740000000000002,22.54,22.36,21.98,N/A,N/A -2012,11,2,8,30,101670,100510,99370,89.35000000000001,0,6.13,6.73,6.87,6.96,7.0200000000000005,7.0600000000000005,7.09,7.12,7.15,215.5,215.57,215.62,215.67000000000002,215.72,215.76,215.79,215.82,215.91,23.73,23.45,23.28,23.09,22.900000000000002,22.72,22.52,22.34,21.96,N/A,N/A -2012,11,2,9,30,101680,100510,99380,88.71000000000001,0,6.29,6.91,7.0600000000000005,7.15,7.22,7.26,7.3,7.32,7.36,216.66,216.77,216.82,216.88,216.93,216.99,217.05,217.1,217.22,23.78,23.51,23.35,23.16,22.97,22.78,22.59,22.41,22.02,N/A,N/A -2012,11,2,10,30,101690,100520,99390,87.15,0,5.99,6.58,6.73,6.83,6.9,6.95,6.99,7.0200000000000005,7.08,223.9,224.06,224.14000000000001,224.21,224.25,224.27,224.27,224.26,224.18,23.91,23.66,23.5,23.32,23.14,22.96,22.77,22.59,22.22,N/A,N/A -2012,11,2,11,30,101690,100520,99390,86.68,0,5.89,6.48,6.62,6.71,6.78,6.82,6.86,6.88,6.93,224.02,224.12,224.17000000000002,224.21,224.24,224.28,224.31,224.35,224.42000000000002,23.91,23.650000000000002,23.490000000000002,23.3,23.12,22.94,22.740000000000002,22.56,22.19,N/A,N/A -2012,11,2,12,30,101710,100540,99410,86.94,0,6.5200000000000005,7.17,7.34,7.44,7.51,7.5600000000000005,7.6000000000000005,7.62,7.65,223.72,223.77,223.79,223.81,223.83,223.84,223.84,223.85,223.85,23.89,23.63,23.47,23.28,23.09,22.91,22.72,22.53,22.150000000000002,N/A,N/A -2012,11,2,13,30,101720,100550,99420,86.94,0,4.88,5.37,5.49,5.57,5.64,5.69,5.74,5.78,5.88,224.16,223.87,223.78,223.67000000000002,223.56,223.45000000000002,223.32,223.19,222.89000000000001,23.89,23.62,23.46,23.28,23.09,22.91,22.72,22.55,22.17,N/A,N/A -2012,11,2,14,30,101740,100580,99440,85.17,0,4.37,4.82,4.93,5.0200000000000005,5.09,5.15,5.2,5.25,5.3500000000000005,224.86,224.85,224.86,224.85,224.83,224.8,224.77,224.73000000000002,224.63,23.96,23.7,23.54,23.36,23.17,22.990000000000002,22.8,22.62,22.240000000000002,N/A,N/A -2012,11,2,15,30,101760,100590,99460,85.55,0,5.01,5.46,5.57,5.63,5.66,5.69,5.7,5.71,5.72,222.99,223.15,223.25,223.34,223.41,223.47,223.53,223.58,223.67000000000002,23.96,23.7,23.54,23.35,23.16,22.98,22.78,22.6,22.22,N/A,N/A -2012,11,2,16,30,101760,100590,99460,85.06,0,4.89,5.33,5.44,5.51,5.55,5.59,5.62,5.64,5.68,221.16,221.34,221.4,221.45000000000002,221.49,221.51,221.54,221.56,221.57,23.990000000000002,23.72,23.56,23.37,23.18,22.990000000000002,22.8,22.62,22.23,N/A,N/A -2012,11,2,17,30,101740,100570,99440,84.65,0,4.08,4.42,4.49,4.5200000000000005,4.55,4.57,4.57,4.58,4.59,211.6,212.11,212.5,212.9,213.28,213.64000000000001,214.01,214.35,215.07,24.1,23.81,23.650000000000002,23.45,23.27,23.080000000000002,22.89,22.7,22.32,N/A,N/A -2012,11,2,18,30,101730,100560,99430,81.32000000000001,0,4.67,5.13,5.25,5.3100000000000005,5.36,5.39,5.41,5.43,5.46,206.65,207.27,207.63,207.97,208.3,208.62,208.96,209.27,209.98000000000002,24.39,24.13,23.97,23.78,23.6,23.42,23.23,23.05,22.67,N/A,N/A -2012,11,2,19,30,101710,100540,99410,83.61,0,4.3500000000000005,4.68,4.73,4.75,4.75,4.76,4.7700000000000005,4.78,4.88,176.31,176.24,176.31,176.37,176.46,176.54,176.71,176.9,177.75,24.23,23.94,23.78,23.59,23.400000000000002,23.22,23.03,22.86,22.52,N/A,N/A -2012,11,2,20,30,101680,100510,99380,84.18,0,5.15,5.61,5.71,5.7700000000000005,5.8,5.83,5.84,5.8500000000000005,5.8500000000000005,179.66,180.04,180.28,180.52,180.75,180.96,181.19,181.39000000000001,181.87,24.3,24.03,23.87,23.68,23.490000000000002,23.31,23.12,22.94,22.55,N/A,N/A -2012,11,2,21,30,101670,100500,99380,83.71000000000001,0,5.58,6.1000000000000005,6.23,6.3100000000000005,6.36,6.4,6.43,6.46,6.51,173.93,174.45000000000002,174.79,175.16,175.52,175.86,176.23,176.58,177.34,24.3,24.060000000000002,23.91,23.73,23.55,23.37,23.18,23,22.63,N/A,N/A -2012,11,2,22,30,101670,100500,99370,84.88,0,5.48,6.09,6.25,6.37,6.46,6.5200000000000005,6.57,6.62,6.67,173.56,174.19,174.61,175.1,175.58,176.06,176.56,177.03,178.01,24.27,24.060000000000002,23.92,23.740000000000002,23.57,23.39,23.21,23.03,22.66,N/A,N/A -2012,11,2,23,30,101670,100500,99370,85.43,0,5.3100000000000005,5.93,6.12,6.24,6.34,6.41,6.45,6.5,6.5600000000000005,176.79,176.93,177.01,177.01,176.97,176.9,176.75,176.58,176.03,24.11,23.900000000000002,23.76,23.59,23.42,23.240000000000002,23.06,22.89,22.52,N/A,N/A -2012,11,3,0,30,101690,100520,99390,82.11,0,6.140000000000001,6.92,7.17,7.3500000000000005,7.48,7.57,7.63,7.68,7.78,180.6,180.55,180.53,180.49,180.44,180.4,180.34,180.27,180.24,24.18,23.98,23.85,23.69,23.53,23.35,23.17,23,22.64,N/A,N/A -2012,11,3,1,30,101680,100510,99380,81.96000000000001,0,6.75,7.42,7.58,7.68,7.74,7.78,7.8100000000000005,7.82,7.83,173.20000000000002,173.4,173.51,173.62,173.72,173.81,173.9,173.99,174.18,24.11,23.88,23.73,23.55,23.37,23.2,23,22.830000000000002,22.45,N/A,N/A -2012,11,3,2,30,101680,100510,99380,80.69,0,7.1000000000000005,7.82,7.98,8.08,8.14,8.18,8.21,8.22,8.23,171.08,171.28,171.39000000000001,171.5,171.6,171.71,171.81,171.91,172.13,24.09,23.85,23.71,23.53,23.34,23.16,22.98,22.8,22.42,N/A,N/A -2012,11,3,3,30,101680,100510,99380,82.60000000000001,0,7.34,8.09,8.28,8.39,8.46,8.51,8.53,8.55,8.56,169.78,170,170.12,170.25,170.38,170.51,170.63,170.74,171.01,23.97,23.72,23.57,23.38,23.2,23.02,22.830000000000002,22.650000000000002,22.27,N/A,N/A -2012,11,3,4,30,101680,100520,99380,81.03,0,7.7700000000000005,8.58,8.78,8.91,8.98,9.040000000000001,9.08,9.11,9.13,171.9,172.01,172.07,172.12,172.17000000000002,172.22,172.27,172.3,172.39000000000001,23.990000000000002,23.740000000000002,23.59,23.41,23.22,23.04,22.85,22.67,22.3,N/A,N/A -2012,11,3,5,30,101680,100510,99370,78.85000000000001,0,7.68,8.48,8.68,8.8,8.88,8.950000000000001,8.99,9.03,9.09,175.67000000000002,175.63,175.65,175.68,175.71,175.73,175.76,175.79,175.86,24.05,23.8,23.650000000000002,23.46,23.28,23.1,22.91,22.73,22.35,N/A,N/A -2012,11,3,6,30,101700,100530,99390,77.82000000000001,0,8.13,9.01,9.24,9.38,9.49,9.56,9.620000000000001,9.66,9.73,179.34,179.52,179.61,179.69,179.76,179.82,179.88,179.95000000000002,180.05,24.150000000000002,23.91,23.75,23.57,23.38,23.2,23.01,22.830000000000002,22.45,N/A,N/A -2012,11,3,7,30,101720,100550,99420,76.54,0,7.9,8.77,8.99,9.14,9.24,9.32,9.38,9.43,9.49,182.68,182.74,182.75,182.74,182.74,182.74,182.74,182.73,182.73,24.3,24.060000000000002,23.91,23.73,23.55,23.37,23.18,23,22.62,N/A,N/A -2012,11,3,8,30,101730,100560,99430,76.33,0,7.68,8.51,8.73,8.88,8.98,9.06,9.13,9.18,9.25,181.97,181.79,181.74,181.70000000000002,181.67000000000002,181.66,181.65,181.65,181.66,24.37,24.14,23.98,23.8,23.62,23.43,23.240000000000002,23.06,22.68,N/A,N/A -2012,11,3,9,30,101750,100580,99450,77.01,0,8.22,9.08,9.28,9.39,9.46,9.5,9.52,9.53,9.52,182.61,183.08,183.31,183.52,183.72,183.91,184.09,184.26,184.61,24.37,24.150000000000002,24.01,23.830000000000002,23.650000000000002,23.47,23.28,23.1,22.72,N/A,N/A -2012,11,3,10,30,101760,100600,99460,74.94,0,7.1000000000000005,7.82,8,8.120000000000001,8.2,8.26,8.3,8.34,8.39,189.3,189.19,189.18,189.18,189.17000000000002,189.16,189.16,189.16,189.15,24.490000000000002,24.28,24.13,23.96,23.78,23.6,23.41,23.240000000000002,22.87,N/A,N/A -2012,11,3,11,30,101790,100630,99490,78.35000000000001,0,6.96,7.71,7.91,8.06,8.16,8.25,8.31,8.36,8.44,185.12,185.56,185.72,185.85,185.96,186.05,186.12,186.19,186.27,24.42,24.2,24.05,23.87,23.7,23.52,23.330000000000002,23.16,22.78,N/A,N/A -2012,11,3,12,30,101820,100650,99520,78.88,0,5.72,6.42,6.65,6.79,6.91,7.01,7.08,7.140000000000001,7.22,183.97,183.8,183.72,183.66,183.6,183.55,183.5,183.46,183.37,24.44,24.22,24.080000000000002,23.91,23.75,23.580000000000002,23.39,23.22,22.85,N/A,N/A -2012,11,3,13,30,101850,100680,99550,76.14,0,6.34,7.08,7.29,7.390000000000001,7.46,7.5200000000000005,7.54,7.54,7.53,186.89000000000001,187.04,187.14000000000001,187.3,187.46,187.63,187.79,187.93,188.21,24.55,24.37,24.25,24.07,23.91,23.740000000000002,23.55,23.38,23,N/A,N/A -2012,11,3,14,30,101890,100720,99590,78.66,0,4.63,5.18,5.36,5.48,5.58,5.67,5.74,5.79,5.88,186.39000000000001,186.18,186.14000000000001,186.20000000000002,186.22,186.21,186.20000000000002,186.19,186.17000000000002,24.46,24.240000000000002,24.1,23.93,23.77,23.6,23.41,23.240000000000002,22.87,N/A,N/A -2012,11,3,15,30,101900,100730,99600,81.7,0,3.96,4.29,4.38,4.49,4.58,4.65,4.72,4.78,4.9,167.46,168.19,168.76,169.66,170.36,170.94,171.66,172.38,173.75,24.400000000000002,24.18,24.05,23.89,23.73,23.56,23.38,23.22,22.87,N/A,N/A -2012,11,3,16,30,101880,100720,99580,78.42,0,4.07,4.47,4.57,4.65,4.7,4.75,4.78,4.8100000000000005,4.87,174.53,174.98,175.3,175.63,175.95000000000002,176.25,176.59,176.91,177.69,24.57,24.34,24.2,24.02,23.84,23.67,23.48,23.31,22.94,N/A,N/A -2012,11,3,17,30,101870,100700,99570,75.18,0,3.87,4.2,4.2700000000000005,4.3100000000000005,4.34,4.36,4.38,4.39,4.41,176.19,176.25,176.34,176.42000000000002,176.5,176.57,176.63,176.69,176.81,24.740000000000002,24.5,24.34,24.150000000000002,23.97,23.79,23.6,23.42,23.04,N/A,N/A -2012,11,3,18,30,101840,100670,99540,78.34,0,3.85,4.14,4.2,4.23,4.24,4.25,4.25,4.25,4.25,165.71,165.92000000000002,166.06,166.21,166.34,166.46,166.58,166.70000000000002,166.93,24.63,24.36,24.2,24.01,23.82,23.63,23.44,23.26,22.88,N/A,N/A -2012,11,3,19,30,101830,100670,99540,79.39,0,5.0200000000000005,5.47,5.5600000000000005,5.61,5.64,5.66,5.68,5.69,5.7,165.53,165.74,165.88,166.03,166.16,166.28,166.42000000000002,166.54,166.81,24.63,24.36,24.19,24,23.81,23.63,23.43,23.25,22.87,N/A,N/A -2012,11,3,20,30,101820,100650,99510,82,0,7.55,8.13,8.26,8.36,8.55,8.83,9.16,9.48,9.61,181.66,180.98,180.74,180.46,180.02,179.43,178.97,178.56,179.86,22.830000000000002,22.5,22.34,22.17,22.03,21.92,21.89,21.89,21.98,N/A,N/A -2012,11,3,21,30,101810,100640,99510,72.61,0,4.5200000000000005,4.8,4.88,4.98,4.98,4.87,4.68,4.47,4.13,171.22,171.08,170.69,170.02,169.79,169.93,172.20000000000002,175.02,183.78,23.42,23.17,23.07,23.01,22.98,22.97,22.95,22.94,23.25,N/A,N/A -2012,11,3,22,30,101870,100700,99560,77.96000000000001,0,2.62,2.6,2.54,2.47,2.43,2.41,2.4,2.41,2.46,274,269.78000000000003,266.31,261.72,257.01,251.84,246.84,242.22,233.64000000000001,23.22,22.94,22.8,22.63,22.48,22.330000000000002,22.17,22.02,21.69,N/A,N/A -2012,11,3,23,30,101880,100700,99560,80.14,0,1.72,1.7,1.68,1.6500000000000001,1.6300000000000001,1.61,1.68,1.78,2.59,270.18,266.64,263.7,259.86,255.29,249.77,241.45000000000002,232.23000000000002,213.83,22.67,22.35,22.19,22.01,21.830000000000002,21.67,21.51,21.36,21.09,N/A,N/A -2012,11,4,0,30,101810,100630,99500,82.17,0,2.08,2.2600000000000002,2.37,2.5300000000000002,2.84,3.27,3.68,4.07,4.43,237.89000000000001,236.70000000000002,235.47,233.49,229.99,225.18,221.54,218.31,213.25,22.78,22.46,22.3,22.13,21.98,21.85,21.73,21.63,21.36,N/A,N/A -2012,11,4,1,30,101810,100640,99500,81.82000000000001,0,1.04,1.05,1.04,1.03,1.02,1.02,1.31,1.77,2.3000000000000003,290.53000000000003,287.08,284.42,280.6,274.35,266.76,244.52,212.69,202.94,22.84,22.52,22.35,22.16,21.98,21.8,21.7,21.62,21.43,N/A,N/A -2012,11,4,2,30,101850,100680,99540,82.94,0,1.8800000000000001,1.86,1.8,1.72,1.6500000000000001,1.58,1.5,1.42,1.18,48.31,50.77,52.53,54.68,57.15,59.92,63.84,67.74,101.02,23,22.69,22.53,22.330000000000002,22.150000000000002,21.97,21.79,21.61,21.29,N/A,N/A -2012,11,4,3,30,101830,100650,99510,84.54,0,2.98,3.0100000000000002,2.97,2.9,2.83,2.7600000000000002,2.69,2.62,2.45,72.81,74.92,76.32000000000001,78,79.78,81.66,84.08,86.44,94.37,22.92,22.6,22.44,22.25,22.06,21.88,21.7,21.53,21.18,N/A,N/A -2012,11,4,4,30,101820,100650,99510,86.37,0,2.73,2.84,2.84,2.84,2.82,2.81,2.7800000000000002,2.7600000000000002,2.66,90.67,90.93,91.11,91.34,91.66,92.06,92.46000000000001,92.84,95.33,22.84,22.51,22.34,22.14,21.95,21.76,21.57,21.39,21.02,N/A,N/A -2012,11,4,5,30,101800,100620,99490,86.12,0,2.17,2.27,2.29,2.31,2.31,2.32,2.33,2.33,2.4,132.95,134.38,135.27,136.25,137.23,138.25,139.51,140.79,147.02,22.98,22.66,22.490000000000002,22.3,22.11,21.92,21.73,21.55,21.2,N/A,N/A -2012,11,4,6,30,101790,100620,99480,84.78,0,3.61,3.8000000000000003,3.84,3.85,3.85,3.85,3.85,3.84,3.8200000000000003,156.66,157.05,157.26,157.48,157.70000000000002,157.93,158.21,158.47,159.25,23.11,22.78,22.61,22.41,22.22,22.04,21.84,21.66,21.28,N/A,N/A -2012,11,4,7,30,101810,100640,99500,87.08,0,3.45,3.65,3.68,3.7,3.7,3.71,3.71,3.71,3.73,152.70000000000002,153.07,153.29,153.56,153.86,154.20000000000002,154.69,155.20000000000002,158.16,23.14,22.82,22.650000000000002,22.45,22.27,22.080000000000002,21.89,21.71,21.36,N/A,N/A -2012,11,4,8,30,101830,100660,99520,87.64,0,3.62,3.84,3.89,3.92,3.94,3.96,3.97,3.99,4.05,180.46,180.70000000000002,180.79,180.88,180.99,181.12,181.3,181.48,182.23,23.29,22.98,22.81,22.61,22.42,22.23,22.04,21.86,21.490000000000002,N/A,N/A -2012,11,4,9,30,101840,100670,99530,85.74,0,4.07,4.36,4.42,4.44,4.46,4.46,4.49,4.5200000000000005,4.59,217.54,217.5,217.46,217.41,217.36,217.31,217.23000000000002,217.16,218.48000000000002,23.67,23.39,23.23,23.04,22.87,22.69,22.53,22.38,22.150000000000002,N/A,N/A -2012,11,4,10,30,101860,100690,99550,86.65,0,3.09,3.27,3.29,3.29,3.29,3.29,3.29,3.29,3.38,220.63,220.96,221.11,221.33,221.57,221.86,222.3,222.78,225.85,23.61,23.32,23.16,22.97,22.78,22.6,22.41,22.240000000000002,21.97,N/A,N/A -2012,11,4,11,30,101870,100700,99560,86.76,0,2.72,2.88,2.91,2.91,2.92,2.92,2.92,2.93,2.97,214.96,215.4,215.64000000000001,215.95000000000002,216.28,216.66,217.15,217.66,220.28,23.56,23.27,23.1,22.91,22.72,22.53,22.34,22.16,21.79,N/A,N/A -2012,11,4,12,30,101870,100690,99560,85.17,0,3.0100000000000002,3.2,3.24,3.27,3.2800000000000002,3.3000000000000003,3.3200000000000003,3.33,3.38,234.07,234.33,234.45000000000002,234.58,234.70000000000002,234.84,234.99,235.15,235.72,23.57,23.28,23.11,22.91,22.73,22.54,22.34,22.16,21.78,N/A,N/A -2012,11,4,13,30,101890,100720,99580,84.92,0,3.16,3.43,3.5100000000000002,3.56,3.61,3.65,3.7,3.74,3.83,254.03,252.97,252.33,251.74,251.23000000000002,250.75,250.29,249.86,248.92000000000002,23.66,23.38,23.21,23.02,22.830000000000002,22.64,22.45,22.27,21.89,N/A,N/A -2012,11,4,14,30,101930,100760,99620,86.46000000000001,0,2.61,2.68,2.67,2.64,2.61,2.58,2.56,2.5500000000000003,2.56,295.62,293.74,291.88,289.53000000000003,287.28000000000003,284.94,281.87,278.65000000000003,272.23,23.5,23.21,23.06,22.86,22.69,22.51,22.330000000000002,22.150000000000002,21.81,N/A,N/A -2012,11,4,15,30,101920,100750,99610,94.58,0,4.28,4.41,4.39,4.33,4.2700000000000005,4.19,4.08,3.96,3.48,349.79,349.18,348.6,347.86,347,346,343.99,341.8,333.02,22.51,22.17,22,21.81,21.64,21.48,21.34,21.21,21.17,N/A,N/A -2012,11,4,16,30,101910,100730,99590,99.29,0,4.46,4.59,4.5600000000000005,4.49,4.39,4.28,4.0600000000000005,3.81,3.23,348.16,348.06,348.05,348.01,347.95,347.88,346.35,344.5,336.03000000000003,21.31,20.95,20.8,20.66,20.51,20.36,20.17,19.97,20.77,N/A,N/A -2012,11,4,17,30,101880,100700,99560,94.72,0,2.67,2.73,2.73,2.7,2.68,2.65,2.63,2.62,2.75,349.93,350.04,350.06,350.07,350,349.87,348.61,347.04,333,21.52,21.16,20.98,20.78,20.6,20.42,20.240000000000002,20.06,20.490000000000002,N/A,N/A -2012,11,4,18,30,101850,100680,99530,92.75,0,1.51,1.57,1.59,1.62,1.6500000000000001,1.7,1.87,2.08,3.35,359.35,358.11,357.18,356.01,354.63,352.96,350.33,347.27,341.72,21.85,21.5,21.330000000000002,21.14,20.97,20.8,20.68,20.59,21.09,N/A,N/A -2012,11,4,19,30,101810,100640,99500,89,0,0.52,0.54,0.55,0.56,0.59,0.63,0.8,1.07,2.0100000000000002,240.16,247.29,252.57,259.3,267.39,277.61,291.76,310.58,329.36,22.400000000000002,22.07,21.900000000000002,21.71,21.54,21.38,21.27,21.18,21.490000000000002,N/A,N/A -2012,11,4,20,30,101800,100620,99490,82.79,0,0.8300000000000001,0.8300000000000001,0.81,0.79,0.78,0.78,0.87,1.02,2.23,216.04,220.96,224.58,229.76,236.75,245.79,261.81,282.12,314.84000000000003,22.96,22.63,22.47,22.28,22.1,21.93,21.79,21.67,21.77,N/A,N/A -2012,11,4,21,30,101770,100600,99460,82.13,0,1.8,1.84,1.84,1.83,1.82,1.81,1.82,1.83,2.57,229.72,231.1,232.05,233.31,234.75,236.35,239.76,243.54,300.22,23.22,22.89,22.72,22.53,22.35,22.18,22.03,21.89,22.150000000000002,N/A,N/A -2012,11,4,22,30,101760,100590,99460,75.2,0,2.85,2.96,2.96,2.93,2.89,2.83,2.67,2.49,1.54,194.8,194.94,195.12,195.44,196.02,196.88,199.74,203.04,249.15,23.67,23.37,23.2,23,22.82,22.63,22.45,22.29,22.19,N/A,N/A -2012,11,4,23,30,101780,100610,99470,75.7,0,2.73,2.83,2.8000000000000003,2.75,2.62,2.42,1.84,1.32,0.87,190.07,190.71,191.11,191.63,192.77,194.49,204.38,213.87,248.02,23.740000000000002,23.45,23.29,23.1,22.95,22.81,22.77,22.75,22.57,N/A,N/A -2012,11,5,0,30,101800,100630,99500,79.42,0,3.06,3.22,3.22,3.19,3.16,3.13,3.06,2.98,2.35,212.73000000000002,213.27,213.61,213.99,214.34,214.68,215.20000000000002,215.76,223.21,23.68,23.400000000000002,23.240000000000002,23.04,22.86,22.67,22.48,22.3,22.07,N/A,N/A -2012,11,5,1,30,101820,100650,99510,81.64,0,2.58,2.7,2.71,2.7,2.69,2.67,2.65,2.62,2.57,232.70000000000002,232.32,232.09,231.77,231.41,231.01,230.52,230.02,228.55,23.61,23.32,23.16,22.96,22.78,22.59,22.400000000000002,22.21,21.830000000000002,N/A,N/A -2012,11,5,2,30,101820,100650,99510,82.3,0,2.05,2.15,2.16,2.16,2.16,2.16,2.15,2.14,2.12,238.34,238.1,237.95000000000002,237.8,237.66,237.52,237.35,237.19,236.62,23.47,23.17,23.01,22.81,22.62,22.43,22.240000000000002,22.05,21.67,N/A,N/A -2012,11,5,3,30,101810,100640,99510,78.88,0,2.06,2.2,2.24,2.2600000000000002,2.27,2.29,2.3000000000000003,2.32,2.35,243.24,244.41,244.99,245.62,246.23000000000002,246.86,247.55,248.22,249.8,23.650000000000002,23.36,23.2,23,22.81,22.62,22.43,22.25,21.86,N/A,N/A -2012,11,5,4,30,101790,100620,99480,77.95,0,2.17,2.35,2.4,2.44,2.48,2.5100000000000002,2.54,2.57,2.62,241.51,243.20000000000002,244.32,245.38,246.32,247.22,248.11,248.95000000000002,250.71,23.8,23.53,23.37,23.17,22.990000000000002,22.8,22.61,22.43,22.04,N/A,N/A -2012,11,5,5,30,101780,100610,99480,78.11,0,2.3000000000000003,2.47,2.5100000000000002,2.5300000000000002,2.5500000000000003,2.56,2.57,2.58,2.59,270.03000000000003,269.93,269.72,269.44,269.17,268.89,268.58,268.27,267.6,23.89,23.63,23.47,23.27,23.09,22.900000000000002,22.71,22.52,22.150000000000002,N/A,N/A -2012,11,5,6,30,101800,100630,99490,77.29,0,2.42,2.5500000000000003,2.58,2.6,2.61,2.62,2.63,2.64,2.65,262.13,261.41,260.96,260.48,260,259.49,258.88,258.25,256.48,23.63,23.330000000000002,23.16,22.96,22.77,22.59,22.39,22.21,21.830000000000002,N/A,N/A -2012,11,5,7,30,101800,100630,99490,78.28,0,3.15,3.34,3.39,3.41,3.43,3.44,3.45,3.45,3.47,262.08,261.44,260.98,260.52,260.09000000000003,259.67,259.22,258.8,257.86,23.66,23.35,23.19,22.990000000000002,22.8,22.61,22.41,22.23,21.84,N/A,N/A -2012,11,5,8,30,101770,100600,99460,80.07000000000001,0,3.81,4.05,4.09,4.11,4.12,4.13,4.13,4.13,4.13,268.07,267.49,267.11,266.72,266.36,266.01,265.65,265.31,264.56,23.580000000000002,23.27,23.09,22.900000000000002,22.71,22.52,22.32,22.14,21.75,N/A,N/A -2012,11,5,9,30,101770,100600,99460,82.66,0,4.44,4.7,4.75,4.7700000000000005,4.78,4.78,4.78,4.7700000000000005,4.75,273,272.16,271.6,271.02,270.48,269.95,269.39,268.85,267.7,23.41,23.09,22.92,22.72,22.53,22.34,22.150000000000002,21.96,21.580000000000002,N/A,N/A -2012,11,5,10,30,101770,100590,99460,83.5,0,4.22,4.45,4.48,4.49,4.49,4.48,4.46,4.45,4.41,275.86,274.84000000000003,274.16,273.42,272.72,272.02,271.26,270.51,268.74,23.12,22.78,22.61,22.41,22.22,22.04,21.84,21.66,21.29,N/A,N/A -2012,11,5,11,30,101780,100610,99470,84.47,0,3.98,4.16,4.17,4.16,4.14,4.12,4.1,4.07,4.05,289.32,288.67,288.2,287.64,287.05,286.41,285.57,284.72,281.71,22.67,22.32,22.14,21.95,21.76,21.580000000000002,21.39,21.22,20.89,N/A,N/A -2012,11,5,12,30,101780,100610,99470,85.79,0,4.51,4.72,4.74,4.73,4.71,4.68,4.64,4.61,4.5600000000000005,292.76,292.43,292.18,291.90000000000003,291.6,291.29,290.88,290.47,289.1,22.42,22.06,21.88,21.68,21.5,21.32,21.13,20.96,20.61,N/A,N/A -2012,11,5,13,30,101780,100600,99460,87.85000000000001,0,4.03,4.21,4.22,4.21,4.19,4.17,4.15,4.14,4.18,297.54,297.11,296.8,296.46,296.07,295.65000000000003,295.08,294.5,291.99,22.11,21.740000000000002,21.56,21.36,21.18,21,20.81,20.650000000000002,20.36,N/A,N/A -2012,11,5,14,30,101800,100620,99480,86.94,0,4.25,4.43,4.46,4.44,4.43,4.42,4.42,4.42,4.7,294.64,294.45,294.3,294.11,293.90000000000003,293.66,293.24,292.79,289.76,22.12,21.75,21.57,21.38,21.2,21.02,20.86,20.71,20.66,N/A,N/A -2012,11,5,15,30,101780,100600,99460,87.54,0,4.37,4.5600000000000005,4.58,4.57,4.5600000000000005,4.54,4.55,4.5600000000000005,4.88,295.51,295.28000000000003,295.12,294.93,294.71,294.46,294.03000000000003,293.57,290.98,22.150000000000002,21.78,21.61,21.42,21.240000000000002,21.07,20.91,20.77,20.76,N/A,N/A -2012,11,5,16,30,101760,100590,99450,87,0,3.88,4.05,4.07,4.07,4.07,4.07,4.07,4.08,4.23,294.51,294.42,294.36,294.29,294.21,294.13,294.01,293.89,293.29,22.240000000000002,21.87,21.69,21.490000000000002,21.31,21.13,20.95,20.78,20.490000000000002,N/A,N/A -2012,11,5,17,30,101730,100560,99420,86.68,0,3.63,3.77,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.7600000000000002,3.75,3.88,282.93,283.3,283.56,283.88,284.22,284.61,285.14,285.68,287.96,22.34,21.97,21.79,21.6,21.41,21.23,21.05,20.88,20.6,N/A,N/A -2012,11,5,18,30,101690,100510,99380,86.35000000000001,0,3.25,3.37,3.38,3.38,3.37,3.36,3.37,3.39,3.66,263.23,264.2,264.93,265.79,266.77,267.87,269.66,271.56,280.29,22.55,22.19,22.01,21.82,21.64,21.46,21.29,21.14,20.96,N/A,N/A -2012,11,5,19,30,101650,100480,99350,85.5,0,3.81,3.97,3.99,3.98,3.98,3.99,4.05,4.12,4.3500000000000005,238.79,239.38,239.94,240.84,242.33,244.52,249.05,254.36,263.97,22.95,22.62,22.46,22.28,22.14,22.03,22,22.02,22.07,N/A,N/A -2012,11,5,20,30,101560,100400,99270,82.66,0,4.9,5.13,5.15,5.13,5.15,5.2,5.34,5.53,5.8100000000000005,224.53,225.05,225.67000000000002,226.73000000000002,228.76,231.67000000000002,235.86,240.42000000000002,247.12,23.650000000000002,23.34,23.19,23.03,22.92,22.85,22.84,22.84,22.73,N/A,N/A -2012,11,5,21,30,101550,100390,99260,83.38,0,7.12,7.7,7.84,7.9,7.94,7.95,7.96,7.96,7.94,238.07,239.07,239.83,240.73000000000002,241.54,242.39000000000001,243.32,244.28,246.39000000000001,24.19,23.93,23.79,23.6,23.43,23.25,23.07,22.900000000000002,22.56,N/A,N/A -2012,11,5,22,30,101500,100340,99210,79.2,0,6.55,7.01,7.0600000000000005,7.05,7.0200000000000005,6.97,6.94,6.92,6.74,249.47,250.25,250.78,251.52,252.35,253.29,254.89000000000001,256.62,266.12,24.310000000000002,24.05,23.91,23.73,23.57,23.41,23.27,23.16,23.2,N/A,N/A -2012,11,5,23,30,101510,100340,99210,79.14,0,4.63,4.91,4.93,4.91,4.9,4.92,4.78,4.61,4.43,250.61,250.97,251.25,251.70000000000002,252.63,254.01000000000002,259.55,266.05,273.96,24.3,24.04,23.89,23.72,23.59,23.48,23.46,23.490000000000002,23.32,N/A,N/A -2012,11,6,0,30,101510,100350,99220,77.65,0,4.08,4.33,4.36,4.36,4.39,4.45,4.5,4.55,4.57,249.39000000000001,249.67000000000002,249.89000000000001,250.21,251.32,253.01000000000002,256.76,260.88,267.82,24.44,24.19,24.04,23.86,23.71,23.57,23.51,23.48,23.38,N/A,N/A -2012,11,6,1,30,101680,100500,99350,90.66,203.60000000000002,11.88,12.77,12.98,13.05,13.09,13.1,13.1,13.09,13.13,354.72,354.05,353.90000000000003,353.76,353.63,353.52,353.35,353.19,352.75,20.73,20.16,19.95,19.740000000000002,19.55,19.37,19.19,19.03,18.7,N/A,N/A -2012,11,6,2,30,101600,100430,99290,84.45,0,3.1,3.33,3.45,3.67,4.43,5.96,6.8500000000000005,7.44,8.2,327.52,328.29,328.83,329.7,331.58,334.96,336.66,337.6,339.39,21.71,21.37,21.22,21.07,21.18,21.5,21.82,22.1,22.400000000000002,N/A,N/A -2012,11,6,3,30,101590,100420,99280,72.41,0,6.88,7.390000000000001,7.5200000000000005,7.57,7.63,7.68,7.75,7.8100000000000005,7.94,9.040000000000001,9.38,9.26,9.06,8.89,8.75,8.68,8.63,8.57,23.400000000000002,23.150000000000002,23.02,22.88,22.740000000000002,22.6,22.45,22.31,22.01,N/A,N/A -2012,11,6,4,30,101610,100440,99300,70.43,0,6.67,7.2700000000000005,7.45,7.57,7.66,7.73,7.8100000000000005,7.87,8.01,1.53,2.04,2.39,2.7600000000000002,3.11,3.46,3.83,4.17,4.95,23.34,23,22.830000000000002,22.64,22.45,22.26,22.07,21.89,21.52,N/A,N/A -2012,11,6,5,30,101590,100420,99280,62.410000000000004,0,10.34,11.3,11.52,11.63,11.69,11.72,11.73,11.74,11.71,13.780000000000001,13.93,14.05,14.16,14.26,14.35,14.46,14.55,14.74,23.05,22.69,22.51,22.31,22.13,21.94,21.76,21.580000000000002,21.22,N/A,N/A -2012,11,6,6,30,101670,100490,99340,66.06,0,10.72,11.620000000000001,11.84,11.93,11.98,12,12.01,12.01,11.98,19.78,19.85,19.89,19.93,19.96,20,20.03,20.06,20.11,21.75,21.31,21.11,20.91,20.71,20.53,20.34,20.16,19.8,N/A,N/A -2012,11,6,7,30,101710,100530,99370,64.22,0,10.39,11.25,11.450000000000001,11.540000000000001,11.6,11.63,11.65,11.66,11.69,22.42,22.44,22.47,22.5,22.51,22.52,22.51,22.51,22.46,20.990000000000002,20.5,20.3,20.1,19.91,19.73,19.54,19.37,19.02,N/A,N/A -2012,11,6,8,30,101760,100570,99410,62.82,0,9.85,10.63,10.81,10.9,10.94,10.97,10.98,10.99,10.99,22.97,22.94,22.92,22.900000000000002,22.86,22.82,22.76,22.7,22.53,20.63,20.13,19.92,19.72,19.52,19.34,19.150000000000002,18.97,18.62,N/A,N/A -2012,11,6,9,30,101790,100600,99450,63.86,0,9.73,10.47,10.64,10.71,10.74,10.76,10.75,10.75,10.71,19.6,19.59,19.57,19.54,19.51,19.48,19.44,19.39,19.28,20.09,19.55,19.34,19.13,18.93,18.740000000000002,18.54,18.36,18,N/A,N/A -2012,11,6,10,30,101830,100630,99470,66.54,0,10,10.72,10.86,10.9,10.91,10.91,10.88,10.85,10.77,18.27,18.27,18.26,18.240000000000002,18.2,18.16,18.1,18.04,17.84,19.22,18.63,18.41,18.2,18,17.82,17.63,17.45,17.1,N/A,N/A -2012,11,6,11,30,101870,100670,99510,69.60000000000001,0,9.58,10.25,10.39,10.43,10.46,10.46,10.44,10.43,10.370000000000001,21.7,21.740000000000002,21.75,21.75,21.740000000000002,21.73,21.71,21.68,21.580000000000002,18.43,17.81,17.580000000000002,17.36,17.16,16.97,16.77,16.59,16.22,N/A,N/A -2012,11,6,12,30,101910,100710,99540,70.28,0,9.1,9.69,9.8,9.83,9.83,9.82,9.8,9.77,9.700000000000001,20.17,20.14,20.12,20.080000000000002,20.04,19.990000000000002,19.93,19.87,19.69,18.080000000000002,17.47,17.240000000000002,17.02,16.82,16.63,16.44,16.26,15.9,N/A,N/A -2012,11,6,13,30,101960,100760,99590,71.49,0,8.07,8.56,8.65,8.68,8.68,8.67,8.64,8.620000000000001,8.540000000000001,21.51,21.490000000000002,21.47,21.45,21.42,21.39,21.35,21.31,21.2,17.81,17.2,16.97,16.76,16.55,16.36,16.16,15.98,15.610000000000001,N/A,N/A -2012,11,6,14,30,101990,100780,99610,71.77,0,8.07,8.52,8.59,8.6,8.59,8.57,8.53,8.49,8.39,19.2,19.2,19.19,19.17,19.14,19.11,19.07,19.02,18.900000000000002,17.330000000000002,16.71,16.47,16.26,16.05,15.860000000000001,15.67,15.48,15.120000000000001,N/A,N/A -2012,11,6,15,30,102030,100820,99650,71.27,0,6.75,7.09,7.140000000000001,7.140000000000001,7.140000000000001,7.12,7.09,7.07,7,19.29,19.25,19.22,19.17,19.12,19.080000000000002,19.02,18.96,18.8,17.11,16.51,16.28,16.06,15.860000000000001,15.67,15.47,15.280000000000001,14.9,N/A,N/A -2012,11,6,16,30,102010,100810,99630,68.41,0,5.62,5.9,5.95,5.96,5.96,5.96,5.95,5.95,5.92,8.03,7.890000000000001,7.82,7.75,7.67,7.59,7.49,7.4,7.17,17.23,16.66,16.44,16.22,16.01,15.83,15.620000000000001,15.44,15.05,N/A,N/A -2012,11,6,17,30,101970,100770,99600,65.89,0,5.15,5.42,5.48,5.51,5.53,5.54,5.55,5.5600000000000005,5.58,356.67,356.18,355.87,355.58,355.31,355.07,354.82,354.59000000000003,354.13,17.68,17.14,16.91,16.7,16.490000000000002,16.3,16.1,15.91,15.52,N/A,N/A -2012,11,6,18,30,101990,100790,99620,57.22,0,5.09,5.3500000000000005,5.4,5.43,5.44,5.45,5.45,5.45,5.45,346.72,347.09000000000003,347.3,347.51,347.71,347.89,348.07,348.24,348.61,18.43,17.92,17.7,17.490000000000002,17.28,17.09,16.89,16.7,16.31,N/A,N/A -2012,11,6,19,30,101950,100750,99590,57.620000000000005,0,4.82,5.09,5.15,5.19,5.22,5.24,5.26,5.28,5.3100000000000005,334.98,334.98,335.02,335.07,335.11,335.15000000000003,335.19,335.23,335.32,19.080000000000002,18.59,18.38,18.17,17.96,17.77,17.56,17.37,16.98,N/A,N/A -2012,11,6,20,30,101920,100730,99570,56.26,0,6.44,6.83,6.9,6.93,6.95,6.96,6.96,6.96,6.95,332.37,332.71,332.93,333.13,333.33,333.51,333.71,333.89,334.28000000000003,19.52,19.02,18.8,18.59,18.39,18.2,17.990000000000002,17.8,17.41,N/A,N/A -2012,11,6,21,30,101900,100710,99550,53.9,0,6.87,7.32,7.42,7.46,7.49,7.51,7.5200000000000005,7.5200000000000005,7.5200000000000005,333.33,333.59000000000003,333.75,333.91,334.06,334.2,334.36,334.51,334.84000000000003,20.04,19.55,19.34,19.13,18.93,18.740000000000002,18.54,18.35,17.96,N/A,N/A -2012,11,6,22,30,101880,100690,99530,52.15,0,7.140000000000001,7.640000000000001,7.75,7.8,7.84,7.87,7.890000000000001,7.9,7.92,336.13,336.22,336.28000000000003,336.33,336.39,336.44,336.49,336.55,336.67,20.57,20.1,19.900000000000002,19.69,19.490000000000002,19.3,19.09,18.900000000000002,18.51,N/A,N/A -2012,11,6,23,30,101900,100710,99560,51.410000000000004,0,6.95,7.43,7.54,7.6000000000000005,7.63,7.66,7.68,7.69,7.71,341.53000000000003,341.56,341.57,341.58,341.58,341.58,341.59000000000003,341.59000000000003,341.6,20.92,20.47,20.27,20.06,19.86,19.67,19.46,19.28,18.88,N/A,N/A -2012,11,7,0,30,101910,100720,99570,53.08,0,6.390000000000001,6.8,6.88,6.92,6.95,6.97,6.98,6.98,6.99,346.90000000000003,346.67,346.54,346.41,346.28000000000003,346.17,346.05,345.93,345.71,20.97,20.53,20.330000000000002,20.13,19.92,19.73,19.53,19.34,18.95,N/A,N/A -2012,11,7,1,30,101920,100730,99570,51.95,0,5.8500000000000005,6.19,6.26,6.29,6.3,6.3100000000000005,6.3100000000000005,6.3,6.29,350.33,350.42,350.46,350.5,350.54,350.57,350.6,350.63,350.69,20.900000000000002,20.46,20.27,20.06,19.86,19.67,19.47,19.28,18.89,N/A,N/A -2012,11,7,2,30,101950,100760,99600,51.620000000000005,0,5.29,5.58,5.63,5.66,5.66,5.67,5.67,5.67,5.66,1.42,0.99,0.71,0.43,0.18,359.95,359.7,359.47,359.01,20.88,20.45,20.25,20.05,19.85,19.66,19.45,19.27,18.88,N/A,N/A -2012,11,7,3,30,101940,100750,99600,51.64,0,4.29,4.49,4.5200000000000005,4.53,4.53,4.53,4.5200000000000005,4.5200000000000005,4.5,2.97,2.27,1.82,1.37,0.9400000000000001,0.53,0.09,359.68,358.79,20.82,20.41,20.22,20.01,19.81,19.63,19.43,19.240000000000002,18.86,N/A,N/A -2012,11,7,4,30,101940,100750,99600,53.59,0,3.6,3.74,3.7600000000000002,3.7600000000000002,3.7600000000000002,3.75,3.74,3.74,3.72,5.14,4.21,3.62,3.04,2.48,1.96,1.41,0.9,359.79,20.82,20.42,20.22,20.02,19.830000000000002,19.64,19.44,19.25,18.87,N/A,N/A -2012,11,7,5,30,101940,100750,99590,55.99,0,3.67,3.8200000000000003,3.84,3.85,3.85,3.84,3.84,3.83,3.8200000000000003,357.96,357.01,356.40000000000003,355.79,355.2,354.65000000000003,354.07,353.52,352.32,20.85,20.44,20.25,20.04,19.85,19.66,19.46,19.28,18.89,N/A,N/A -2012,11,7,6,30,101950,100760,99600,57.910000000000004,0,3.13,3.27,3.29,3.29,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,349.16,348.51,348.12,347.73,347.38,347.05,346.7,346.38,345.63,20.89,20.51,20.32,20.12,19.93,19.740000000000002,19.54,19.36,18.97,N/A,N/A -2012,11,7,7,30,101970,100780,99630,58.86,0,2.97,3.11,3.13,3.14,3.15,3.15,3.16,3.16,3.17,339.5,339.03000000000003,338.76,338.48,338.22,337.97,337.69,337.44,336.85,20.96,20.580000000000002,20.39,20.19,19.990000000000002,19.81,19.61,19.42,19.04,N/A,N/A -2012,11,7,8,30,101990,100800,99650,58.35,0,2.5500000000000003,2.66,2.67,2.68,2.69,2.69,2.69,2.69,2.7,338.02,337.37,336.96,336.56,336.18,335.82,335.43,335.07,334.3,21.06,20.68,20.5,20.3,20.1,19.91,19.71,19.53,19.14,N/A,N/A -2012,11,7,9,30,101990,100800,99650,58.24,0,3.16,3.3000000000000003,3.3200000000000003,3.33,3.33,3.33,3.33,3.33,3.33,341.71,340.91,340.39,339.89,339.41,338.95,338.48,338.04,337.06,21.13,20.75,20.57,20.37,20.17,19.98,19.78,19.6,19.21,N/A,N/A -2012,11,7,10,30,102000,100810,99660,60.22,0,3.68,3.84,3.86,3.86,3.86,3.86,3.85,3.85,3.83,345.40000000000003,344.56,344.01,343.49,342.98,342.51,342.01,341.55,340.52,21.09,20.7,20.52,20.31,20.12,19.93,19.73,19.54,19.150000000000002,N/A,N/A -2012,11,7,11,30,102030,100840,99690,64.48,0,3.62,3.7600000000000002,3.77,3.77,3.7600000000000002,3.74,3.73,3.71,3.67,343.42,342.88,342.5,342.14,341.8,341.49,341.16,340.86,340.2,20.84,20.45,20.26,20.06,19.86,19.67,19.47,19.29,18.900000000000002,N/A,N/A -2012,11,7,12,30,102050,100860,99700,68.63,0,4.07,4.22,4.23,4.22,4.21,4.19,4.17,4.15,4.11,344.62,344.2,343.92,343.64,343.37,343.11,342.84000000000003,342.58,341.99,20.47,20.06,19.87,19.67,19.48,19.29,19.09,18.91,18.53,N/A,N/A -2012,11,7,13,30,102070,100880,99720,71.83,0,4.42,4.6000000000000005,4.6000000000000005,4.59,4.57,4.54,4.5200000000000005,4.49,4.43,357.13,356.64,356.31,355.99,355.67,355.36,355.02,354.7,353.95,20.080000000000002,19.650000000000002,19.46,19.26,19.06,18.88,18.68,18.5,18.13,N/A,N/A -2012,11,7,14,30,102090,100900,99740,66.47,0,4.1,4.26,4.28,4.2700000000000005,4.25,4.24,4.21,4.19,4.15,359.71,359.12,358.71,358.31,357.92,357.54,357.15000000000003,356.78000000000003,355.92,19.98,19.55,19.36,19.16,18.97,18.78,18.59,18.41,18.04,N/A,N/A -2012,11,7,15,30,102110,100910,99750,63.61,0,3.87,4.0200000000000005,4.03,4.0200000000000005,4.01,3.99,3.98,3.96,3.95,6.5,6.32,6.2,6.0600000000000005,5.91,5.74,5.5200000000000005,5.3,4.66,19.97,19.55,19.36,19.16,18.97,18.79,18.61,18.43,18.080000000000002,N/A,N/A -2012,11,7,16,30,102090,100890,99740,61.59,0,4.17,4.37,4.41,4.42,4.43,4.44,4.45,4.46,4.5,5.8,5.8100000000000005,5.8,5.8,5.78,5.78,5.76,5.74,5.67,20.27,19.86,19.67,19.48,19.29,19.11,18.91,18.740000000000002,18.38,N/A,N/A -2012,11,7,17,30,102060,100870,99710,57.620000000000005,0,3.73,3.92,3.96,3.98,3.99,4.01,4.0200000000000005,4.03,4.04,11.59,11.49,11.43,11.370000000000001,11.32,11.27,11.22,11.17,11.07,20.6,20.2,20.01,19.81,19.62,19.43,19.23,19.05,18.67,N/A,N/A -2012,11,7,18,30,102030,100840,99690,52.42,0,2.82,2.93,2.95,2.95,2.95,2.95,2.95,2.94,2.94,21.35,20.78,20.41,20.03,19.67,19.330000000000002,18.91,18.52,17.57,20.97,20.59,20.400000000000002,20.2,20.01,19.82,19.62,19.44,19.06,N/A,N/A -2012,11,7,19,30,102000,100810,99660,50.88,0,1.29,1.37,1.4000000000000001,1.43,1.46,1.48,1.51,1.54,1.6,11.31,10.28,9.68,9.01,8.370000000000001,7.74,7.01,6.32,4.65,21.21,20.85,20.67,20.47,20.27,20.09,19.89,19.7,19.32,N/A,N/A -2012,11,7,20,30,101960,100780,99620,52.4,0,0.54,0.68,0.77,0.86,0.9400000000000001,1.02,1.1,1.18,1.36,319.99,321.07,321.87,322.44,322.90000000000003,323.3,323.65000000000003,323.96,324.6,21.56,21.21,21.04,20.84,20.650000000000002,20.47,20.28,20.1,19.72,N/A,N/A -2012,11,7,21,30,101940,100760,99610,51.160000000000004,0,1.47,1.55,1.57,1.59,1.61,1.62,1.6400000000000001,1.6500000000000001,1.68,289.59000000000003,291.62,292.89,294.11,295.24,296.3,297.43,298.47,300.78000000000003,22.09,21.75,21.580000000000002,21.38,21.19,21,20.81,20.62,20.240000000000002,N/A,N/A -2012,11,7,22,30,101940,100750,99610,52.39,0,1.3900000000000001,1.5,1.54,1.59,1.6400000000000001,1.68,1.72,1.76,1.85,272.04,277.64,280.93,283.85,286.32,288.5,290.53000000000003,292.37,295.77,22.36,22.04,21.87,21.68,21.490000000000002,21.3,21.11,20.93,20.54,N/A,N/A -2012,11,7,23,30,101940,100760,99610,48.9,0,1.98,2.05,2.06,2.06,2.05,2.05,2.04,2.04,2.0300000000000002,302.2,303.53000000000003,304.38,305.22,306.01,306.77,307.58,308.32,309.97,22.7,22.39,22.22,22.03,21.84,21.650000000000002,21.45,21.27,20.89,N/A,N/A -2012,11,8,0,30,101960,100780,99630,49.29,0,1.12,1.16,1.17,1.17,1.18,1.18,1.19,1.19,1.21,279.58,281.34000000000003,282.5,283.7,284.87,285.99,287.26,288.45,291.2,22.76,22.45,22.28,22.09,21.900000000000002,21.71,21.51,21.330000000000002,20.95,N/A,N/A -2012,11,8,1,30,101980,100800,99650,51.300000000000004,0,1.59,1.69,1.72,1.75,1.78,1.8,1.84,1.87,1.96,335.67,336.54,337.13,337.75,338.39,339.04,339.82,340.56,342.57,22.79,22.48,22.31,22.12,21.93,21.75,21.55,21.37,20.990000000000002,N/A,N/A -2012,11,8,2,30,101970,100790,99650,47.86,0,2.92,3.09,3.09,3.08,3.06,3.04,3.0100000000000002,2.99,2.92,41.77,42.18,42.33,42.46,42.58,42.69,42.82,42.92,43.12,23.32,23.04,22.87,22.69,22.5,22.31,22.12,21.93,21.55,N/A,N/A -2012,11,8,3,30,101980,100800,99650,49.13,0,3.73,3.94,3.95,3.94,3.92,3.9,3.87,3.85,3.7800000000000002,71.31,71.83,72.08,72.34,72.59,72.83,73.08,73.31,73.81,23.14,22.85,22.68,22.490000000000002,22.3,22.12,21.93,21.75,21.37,N/A,N/A -2012,11,8,4,30,101980,100800,99650,53.39,0,3.83,4.01,4.03,4.01,3.99,3.97,3.95,3.92,3.85,84.04,84.78,85.2,85.63,86.06,86.47,86.93,87.35000000000001,88.4,22.77,22.45,22.28,22.09,21.900000000000002,21.72,21.53,21.35,20.97,N/A,N/A -2012,11,8,5,30,101990,100810,99660,57.76,0,4.0200000000000005,4.21,4.23,4.22,4.21,4.19,4.17,4.15,4.1,95.86,96.59,97.02,97.46000000000001,97.87,98.25,98.67,99.06,99.91,22.46,22.12,21.95,21.75,21.56,21.38,21.18,21,20.61,N/A,N/A -2012,11,8,6,30,102000,100820,99670,56.76,0,3.87,4.08,4.12,4.13,4.13,4.13,4.12,4.11,4.09,111,111.08,111.12,111.16,111.2,111.24000000000001,111.28,111.33,111.43,22.31,21.98,21.81,21.61,21.42,21.23,21.03,20.85,20.46,N/A,N/A -2012,11,8,7,30,102030,100840,99690,52.050000000000004,0,4.11,4.34,4.37,4.38,4.38,4.37,4.36,4.3500000000000005,4.32,104.18,104.47,104.66,104.84,105.02,105.18,105.36,105.53,105.89,22.400000000000002,22.080000000000002,21.91,21.72,21.52,21.34,21.14,20.95,20.56,N/A,N/A -2012,11,8,8,30,102040,100860,99710,54.89,0,4.43,4.68,4.71,4.72,4.71,4.71,4.69,4.68,4.65,105.08,105.5,105.78,106.05,106.31,106.55,106.81,107.04,107.55,22.22,21.89,21.72,21.52,21.330000000000002,21.14,20.94,20.76,20.37,N/A,N/A -2012,11,8,9,30,102050,100860,99710,55.44,0,4.82,5.11,5.15,5.17,5.17,5.17,5.16,5.15,5.12,106.2,106.49000000000001,106.66,106.83,106.99000000000001,107.14,107.31,107.47,107.83,22.12,21.78,21.6,21.400000000000002,21.21,21.02,20.82,20.63,20.240000000000002,N/A,N/A -2012,11,8,10,30,102060,100870,99720,56.07,0,5.17,5.48,5.54,5.55,5.5600000000000005,5.5600000000000005,5.55,5.54,5.51,107.07000000000001,107.47,107.71000000000001,107.95,108.18,108.39,108.62,108.83,109.3,22.01,21.66,21.48,21.28,21.09,20.900000000000002,20.7,20.52,20.13,N/A,N/A -2012,11,8,11,30,102090,100900,99750,60.68,0,5.69,6.05,6.12,6.140000000000001,6.15,6.16,6.15,6.140000000000001,6.12,114.26,114.63,114.84,115.05,115.25,115.44,115.64,115.83,116.22,21.75,21.38,21.2,21,20.81,20.62,20.42,20.23,19.84,N/A,N/A -2012,11,8,12,30,102100,100920,99760,62.04,0,5.73,6.09,6.16,6.19,6.2,6.2,6.2,6.19,6.17,114.65,115.02,115.26,115.49000000000001,115.71000000000001,115.91,116.12,116.33,116.76,21.69,21.32,21.13,20.93,20.740000000000002,20.55,20.35,20.16,19.77,N/A,N/A -2012,11,8,13,30,102130,100940,99790,61.84,0,5.99,6.390000000000001,6.47,6.51,6.5200000000000005,6.53,6.53,6.5200000000000005,6.51,121.59,122,122.24000000000001,122.46000000000001,122.68,122.87,123.08,123.28,123.7,21.73,21.36,21.17,20.97,20.78,20.59,20.39,20.2,19.81,N/A,N/A -2012,11,8,14,30,102170,100980,99830,64.1,0,6.390000000000001,6.83,6.91,6.95,6.97,6.98,6.98,6.98,6.96,122.36,122.82000000000001,123.10000000000001,123.37,123.63000000000001,123.87,124.13000000000001,124.36,124.85000000000001,21.64,21.25,21.07,20.87,20.67,20.48,20.28,20.09,19.7,N/A,N/A -2012,11,8,15,30,102180,100990,99840,66.14,0,6.53,7,7.1000000000000005,7.140000000000001,7.17,7.19,7.19,7.2,7.19,125.97,126.36,126.59,126.81,127.01,127.19,127.39,127.57000000000001,127.95,21.6,21.21,21.03,20.82,20.63,20.44,20.240000000000002,20.05,19.66,N/A,N/A -2012,11,8,16,30,102150,100970,99820,65.24,0,6.34,6.78,6.87,6.92,6.94,6.95,6.96,6.96,6.95,125.04,125.37,125.57000000000001,125.76,125.95,126.12,126.3,126.47,126.83,21.650000000000002,21.27,21.080000000000002,20.88,20.68,20.490000000000002,20.29,20.1,19.71,N/A,N/A -2012,11,8,17,30,102130,100950,99790,64.62,0,6.29,6.73,6.82,6.86,6.890000000000001,6.9,6.91,6.91,6.9,127.25,127.57000000000001,127.75,127.92,128.09,128.24,128.41,128.56,128.88,21.7,21.32,21.13,20.93,20.73,20.54,20.34,20.16,19.77,N/A,N/A -2012,11,8,18,30,102120,100930,99780,67.04,0,6.13,6.57,6.67,6.72,6.76,6.78,6.8,6.8100000000000005,6.82,133.5,133.66,133.77,133.87,133.98,134.08,134.17000000000002,134.26,134.47,21.75,21.37,21.18,20.98,20.78,20.59,20.39,20.21,19.81,N/A,N/A -2012,11,8,19,30,102100,100910,99760,66.86,0,6.34,6.8,6.9,6.95,6.98,6.99,7.01,7.01,7.01,130.98,131.52,131.83,132.13,132.41,132.67000000000002,132.93,133.17000000000002,133.69,21.86,21.490000000000002,21.31,21.1,20.91,20.72,20.52,20.34,19.95,N/A,N/A -2012,11,8,20,30,102050,100870,99720,66.43,0,6.28,6.74,6.8500000000000005,6.9,6.93,6.95,6.96,6.97,6.98,134.1,134.56,134.84,135.12,135.37,135.61,135.86,136.08,136.55,21.89,21.52,21.34,21.14,20.94,20.75,20.56,20.37,19.98,N/A,N/A -2012,11,8,21,30,102040,100850,99700,68.33,0,6.49,6.96,7.07,7.12,7.15,7.17,7.19,7.2,7.2,137.17000000000002,137.67000000000002,137.98,138.27,138.55,138.81,139.07,139.31,139.82,21.89,21.52,21.330000000000002,21.13,20.93,20.740000000000002,20.55,20.36,19.97,N/A,N/A -2012,11,8,22,30,102030,100840,99690,70.8,0,6.8,7.3100000000000005,7.42,7.48,7.51,7.53,7.54,7.55,7.55,136.42000000000002,136.89000000000001,137.18,137.46,137.71,137.95000000000002,138.20000000000002,138.42000000000002,138.89000000000001,21.85,21.48,21.29,21.09,20.900000000000002,20.71,20.51,20.32,19.93,N/A,N/A -2012,11,8,23,30,102010,100820,99680,72.05,0,7.25,7.82,7.96,8.03,8.08,8.11,8.120000000000001,8.14,8.15,139.45000000000002,139.85,140.09,140.31,140.51,140.70000000000002,140.89000000000001,141.07,141.44,21.88,21.51,21.32,21.12,20.92,20.73,20.53,20.35,19.95,N/A,N/A -2012,11,9,0,30,102010,100830,99680,72.34,0,7.58,8.21,8.36,8.44,8.5,8.53,8.56,8.58,8.6,140.01,140.43,140.68,140.93,141.16,141.37,141.59,141.79,142.20000000000002,21.95,21.580000000000002,21.39,21.19,21,20.8,20.6,20.42,20.03,N/A,N/A -2012,11,9,1,30,102010,100830,99680,73.03,0,8.11,8.8,8.97,9.06,9.11,9.15,9.18,9.200000000000001,9.21,142.69,143.03,143.24,143.45000000000002,143.64000000000001,143.82,144,144.17000000000002,144.53,21.98,21.6,21.41,21.21,21.01,20.82,20.62,20.44,20.05,N/A,N/A -2012,11,9,2,30,102000,100820,99670,74.21000000000001,0,8.3,9.03,9.200000000000001,9.3,9.36,9.41,9.44,9.46,9.48,145.53,145.76,145.9,146.03,146.16,146.28,146.4,146.51,146.75,22.01,21.63,21.45,21.25,21.05,20.86,20.66,20.47,20.080000000000002,N/A,N/A -2012,11,9,3,30,102000,100820,99670,74.3,0,8.42,9.17,9.36,9.450000000000001,9.52,9.57,9.6,9.620000000000001,9.64,148.22,148.48,148.64000000000001,148.81,148.96,149.11,149.25,149.38,149.67000000000002,22.13,21.76,21.57,21.37,21.18,20.990000000000002,20.78,20.6,20.21,N/A,N/A -2012,11,9,4,30,102000,100810,99670,74.27,0,8.58,9.35,9.540000000000001,9.65,9.71,9.76,9.790000000000001,9.81,9.83,149.91,150.16,150.31,150.47,150.62,150.75,150.89000000000001,151.02,151.3,22.23,21.86,21.68,21.48,21.28,21.1,20.89,20.71,20.32,N/A,N/A -2012,11,9,5,30,101990,100810,99660,75.10000000000001,0,8.68,9.48,9.68,9.790000000000001,9.870000000000001,9.92,9.96,9.99,10.03,152.46,152.84,153.06,153.27,153.47,153.66,153.85,154.03,154.39000000000001,22.28,21.92,21.740000000000002,21.54,21.34,21.150000000000002,20.95,20.77,20.38,N/A,N/A -2012,11,9,6,30,101990,100810,99670,75.23,0,8.48,9.26,9.450000000000001,9.57,9.65,9.700000000000001,9.74,9.78,9.82,156.3,156.64000000000001,156.85,157.05,157.24,157.42000000000002,157.59,157.76,158.09,22.45,22.1,21.92,21.72,21.53,21.330000000000002,21.14,20.95,20.56,N/A,N/A -2012,11,9,7,30,102010,100830,99680,74.97,0,8.43,9.23,9.43,9.55,9.63,9.69,9.73,9.77,9.81,159.16,159.5,159.69,159.87,160.03,160.17000000000002,160.32,160.46,160.72,22.64,22.3,22.12,21.92,21.73,21.54,21.34,21.150000000000002,20.76,N/A,N/A -2012,11,9,8,30,102010,100830,99680,72.9,0,8.56,9.370000000000001,9.58,9.69,9.77,9.82,9.870000000000001,9.9,9.94,160.39000000000001,160.8,161.02,161.22,161.42000000000002,161.6,161.78,161.95000000000002,162.31,22.77,22.44,22.26,22.06,21.87,21.68,21.48,21.3,20.91,N/A,N/A -2012,11,9,9,30,101990,100820,99670,74.35000000000001,0,8.2,8.99,9.200000000000001,9.33,9.41,9.48,9.53,9.57,9.63,163.61,163.82,163.94,164.05,164.15,164.24,164.33,164.4,164.56,22.87,22.55,22.37,22.18,21.98,21.79,21.6,21.41,21.02,N/A,N/A -2012,11,9,10,30,102010,100830,99690,73.43,0,8.34,9.16,9.370000000000001,9.5,9.59,9.66,9.71,9.76,9.83,163.76,163.86,163.97,164.1,164.21,164.33,164.44,164.55,164.79,22.95,22.63,22.46,22.26,22.07,21.88,21.68,21.5,21.11,N/A,N/A -2012,11,9,11,30,102010,100830,99690,71.76,0,8.72,9.6,9.81,9.93,10.02,10.07,10.11,10.14,10.16,160.62,160.94,161.09,161.23,161.36,161.48,161.59,161.70000000000002,161.92000000000002,23.04,22.73,22.56,22.37,22.17,21.98,21.79,21.6,21.21,N/A,N/A -2012,11,9,12,30,102010,100840,99690,73.42,0,8.42,9.26,9.47,9.59,9.67,9.73,9.78,9.81,9.85,158.05,158,158.01,158.03,158.05,158.07,158.1,158.12,158.19,23.04,22.73,22.55,22.36,22.16,21.97,21.78,21.59,21.2,N/A,N/A -2012,11,9,13,30,102020,100850,99700,73.67,0,8.39,9.22,9.43,9.55,9.64,9.700000000000001,9.75,9.790000000000001,9.85,157.78,157.83,157.91,158,158.1,158.19,158.29,158.38,158.58,23.06,22.76,22.59,22.39,22.19,22.01,21.81,21.63,21.240000000000002,N/A,N/A -2012,11,9,14,30,102050,100880,99730,73.83,0,8.53,9.39,9.61,9.73,9.81,9.870000000000001,9.91,9.93,9.96,152.55,152.81,152.97,153.12,153.25,153.38,153.5,153.62,153.85,23.07,22.77,22.6,22.400000000000002,22.21,22.02,21.830000000000002,21.64,21.25,N/A,N/A -2012,11,9,15,30,102060,100890,99740,72.84,0,8.02,8.84,9.05,9.17,9.26,9.33,9.370000000000001,9.41,9.46,153.52,153.49,153.53,153.59,153.65,153.71,153.77,153.84,153.97,23.17,22.87,22.7,22.51,22.32,22.13,21.93,21.75,21.36,N/A,N/A -2012,11,9,16,30,102060,100880,99740,73.68,0,7.95,8.74,8.94,9.05,9.120000000000001,9.17,9.200000000000001,9.23,9.25,150.01,150.24,150.41,150.57,150.72,150.85,150.99,151.12,151.37,23.17,22.88,22.71,22.52,22.330000000000002,22.14,21.94,21.76,21.37,N/A,N/A -2012,11,9,17,30,102040,100860,99720,74.97,0,7.390000000000001,8.11,8.290000000000001,8.4,8.47,8.53,8.57,8.61,8.66,149.95000000000002,150.11,150.18,150.24,150.29,150.34,150.38,150.42000000000002,150.5,23.16,22.86,22.69,22.5,22.31,22.12,21.92,21.740000000000002,21.35,N/A,N/A -2012,11,9,18,30,102020,100850,99700,74.37,0,6.97,7.68,7.86,7.98,8.08,8.14,8.2,8.25,8.32,151.49,152.03,152.32,152.59,152.82,153.04,153.24,153.43,153.77,23.28,23,22.830000000000002,22.64,22.45,22.26,22.07,21.88,21.5,N/A,N/A -2012,11,9,19,30,102020,100840,99700,75.4,0,6.76,7.42,7.58,7.68,7.76,7.8100000000000005,7.8500000000000005,7.88,7.92,153.63,153.68,153.72,153.76,153.79,153.82,153.85,153.88,153.93,23.31,23.02,22.85,22.650000000000002,22.46,22.28,22.080000000000002,21.900000000000002,21.51,N/A,N/A -2012,11,9,20,30,101980,100800,99660,76.52,0,6.67,7.32,7.48,7.58,7.65,7.71,7.75,7.78,7.82,144.85,145.17000000000002,145.44,145.72,145.97,146.22,146.46,146.69,147.16,23.27,22.97,22.8,22.61,22.42,22.23,22.04,21.85,21.47,N/A,N/A -2012,11,9,21,30,101970,100790,99650,76.18,0,7.01,7.640000000000001,7.79,7.87,7.92,7.95,7.97,7.99,8,140.69,141.16,141.49,141.83,142.13,142.42000000000002,142.72,142.99,143.56,23.22,22.92,22.76,22.56,22.37,22.19,21.990000000000002,21.81,21.42,N/A,N/A -2012,11,9,22,30,101930,100760,99620,77.63,0,6.76,7.3500000000000005,7.5,7.59,7.65,7.7,7.74,7.7700000000000005,7.8100000000000005,147.17000000000002,147.67000000000002,147.91,148.14000000000001,148.34,148.51,148.69,148.85,149.16,23.2,22.91,22.740000000000002,22.55,22.36,22.18,21.98,21.8,21.41,N/A,N/A -2012,11,9,23,30,101910,100740,99600,77.55,0,7.28,8.03,8.22,8.33,8.4,8.46,8.51,8.540000000000001,8.59,144.35,144.51,144.65,144.8,144.94,145.07,145.21,145.33,145.6,23.23,22.93,22.76,22.57,22.38,22.19,21.990000000000002,21.81,21.42,N/A,N/A -2012,11,10,0,30,101920,100740,99600,75.12,0,7.53,8.26,8.44,8.540000000000001,8.61,8.67,8.71,8.74,8.78,146.38,146.35,146.42000000000002,146.53,146.64000000000001,146.75,146.88,147,147.27,23.26,22.97,22.8,22.61,22.42,22.23,22.03,21.85,21.46,N/A,N/A -2012,11,10,1,30,101920,100740,99600,74.9,0,7.98,8.73,8.91,8.99,9.05,9.09,9.120000000000001,9.14,9.16,143.86,144.19,144.39000000000001,144.58,144.76,144.93,145.1,145.25,145.57,23.27,22.990000000000002,22.82,22.63,22.44,22.25,22.06,21.87,21.490000000000002,N/A,N/A -2012,11,10,2,30,101910,100740,99600,75.42,0,8.950000000000001,9.85,10.07,10.19,10.28,10.34,10.38,10.41,10.450000000000001,141.61,142.13,142.43,142.72,142.99,143.23,143.49,143.71,144.17000000000002,23.34,23.05,22.89,22.69,22.51,22.32,22.12,21.94,21.55,N/A,N/A -2012,11,10,3,30,101900,100730,99590,75.22,0,8.790000000000001,9.74,9.98,10.13,10.24,10.33,10.39,10.450000000000001,10.540000000000001,139.57,139.99,140.24,140.5,140.73,140.96,141.18,141.39000000000001,141.79,23.38,23.11,22.95,22.76,22.57,22.39,22.19,22.01,21.63,N/A,N/A -2012,11,10,4,30,101900,100720,99580,74.01,0,8.98,9.92,10.17,10.31,10.4,10.47,10.52,10.55,10.59,146.22,146.38,146.47,146.56,146.64000000000001,146.71,146.79,146.86,147.01,23.45,23.19,23.03,22.84,22.650000000000002,22.46,22.27,22.080000000000002,21.7,N/A,N/A -2012,11,10,5,30,101900,100720,99590,75.39,0,8.98,9.91,10.16,10.31,10.41,10.48,10.540000000000001,10.58,10.64,146.32,146.56,146.66,146.75,146.84,146.91,146.99,147.05,147.19,23.52,23.27,23.11,22.92,22.73,22.55,22.36,22.17,21.79,N/A,N/A -2012,11,10,6,30,101890,100720,99580,81.78,0,7.8,8.78,9.08,9.32,9.51,9.66,9.790000000000001,9.91,10.09,150.68,150.85,150.91,151,151.08,151.17000000000002,151.26,151.36,151.57,23.32,23.09,22.94,22.76,22.580000000000002,22.400000000000002,22.22,22.04,21.67,N/A,N/A -2012,11,10,7,30,101890,100710,99580,79.18,0,7.51,8.370000000000001,8.67,8.97,9.16,9.290000000000001,9.450000000000001,9.63,9.86,146.58,147.31,147.85,148.58,149.18,149.70000000000002,150.62,151.6,153.15,23.400000000000002,23.2,23.07,22.91,22.740000000000002,22.57,22.400000000000002,22.26,21.92,N/A,N/A -2012,11,10,8,30,101860,100690,99550,79.87,0,8.63,9.57,9.85,10.05,10.21,10.35,10.46,10.55,10.700000000000001,152.48,152.71,152.93,153.17000000000002,153.44,153.73,154.01,154.27,154.84,23.48,23.27,23.13,22.95,22.79,22.62,22.44,22.26,21.91,N/A,N/A -2012,11,10,9,30,101850,100680,99550,80.54,0,7.3100000000000005,8.57,9.03,9.3,9.56,9.8,10.01,10.19,10.49,158.67000000000002,160,160.66,160.9,161.1,161.27,161.41,161.53,161.72,23.53,23.31,23.17,22.990000000000002,22.84,22.68,22.51,22.36,22.01,N/A,N/A -2012,11,10,10,30,101840,100660,99530,81.15,0,7.58,8.59,8.92,9.18,9.39,9.58,9.78,9.97,10.32,149.57,149.8,150.07,150.56,150.91,151.20000000000002,151.62,152.04,152.91,23.45,23.26,23.13,22.95,22.78,22.61,22.44,22.29,21.95,N/A,N/A -2012,11,10,11,30,101830,100660,99520,82.67,0,7.42,8.33,8.6,8.8,8.94,9.040000000000001,9.13,9.200000000000001,9.34,154.11,154.29,154.49,154.74,154.97,155.19,155.37,155.52,156.02,23.41,23.2,23.06,22.88,22.7,22.53,22.34,22.16,21.8,N/A,N/A -2012,11,10,12,30,101850,100670,99540,83.4,0,6.5200000000000005,7.640000000000001,8.09,8.45,8.74,8.98,9.22,9.43,9.81,152.59,153.86,154.70000000000002,155.49,156.04,156.43,156.79,157.11,157.70000000000002,23.45,23.240000000000002,23.1,22.93,22.77,22.6,22.43,22.27,21.93,N/A,N/A -2012,11,10,13,30,101830,100660,99530,85.32000000000001,0,5.94,6.86,7.23,7.5600000000000005,7.86,8.13,8.39,8.620000000000001,8.99,148.8,151.70000000000002,153.54,155.38,157.01,158.49,159.97,161.33,164.22,23.36,23.16,23.05,22.92,22.79,22.67,22.54,22.43,22.19,N/A,N/A -2012,11,10,14,30,101870,100700,99570,82.3,0,7.11,8,8.3,8.52,8.67,8.76,8.81,8.84,8.88,158.22,159.06,159.5,159.84,160.21,160.6,161.07,161.53,162.58,23.56,23.39,23.27,23.12,22.97,22.81,22.64,22.48,22.13,N/A,N/A -2012,11,10,15,30,101870,100700,99560,83.09,0,7.5200000000000005,8.23,8.44,8.620000000000001,8.78,8.91,9.01,9.09,8.91,158.53,159.02,159.32,159.69,160.05,160.4,160.70000000000002,160.95000000000002,160.76,23.3,23.09,22.97,22.830000000000002,22.69,22.55,22.42,22.3,21.98,N/A,N/A -2012,11,10,16,30,101860,100690,99550,84.48,0,6.61,7.46,7.72,7.82,7.94,8.08,8.2,8.3,8.51,158.68,159.27,159.59,159.76,159.92000000000002,160.08,160.3,160.52,161.70000000000002,23.48,23.28,23.14,22.95,22.78,22.63,22.46,22.3,21.990000000000002,N/A,N/A -2012,11,10,17,30,101840,100660,99530,86.9,0,6.07,6.71,6.88,6.96,7.07,7.21,7.37,7.53,7.96,149.69,151.17000000000002,152.03,152.67000000000002,154.12,156.24,158.38,160.41,163.56,23.42,23.22,23.09,22.91,22.77,22.66,22.55,22.44,22.22,N/A,N/A -2012,11,10,18,30,101820,100650,99520,77.75,0,7.11,8.01,8.3,8.53,8.72,8.88,9.02,9.14,9.36,165.56,165.79,165.97,166.17000000000002,166.36,166.55,166.74,166.91,167.24,24.01,23.85,23.73,23.56,23.400000000000002,23.240000000000002,23.06,22.89,22.54,N/A,N/A -2012,11,10,19,30,101800,100630,99490,84.94,0,8.39,9.11,9.34,9.61,9.84,10.040000000000001,10.200000000000001,10.33,10.42,150.11,150.52,151.05,151.94,153.05,154.34,155.94,157.53,160.31,23.09,22.87,22.75,22.650000000000002,22.55,22.46,22.38,22.31,22.04,N/A,N/A -2012,11,10,20,30,101760,100600,99460,86.96000000000001,0,8.040000000000001,8.94,9.290000000000001,9.66,9.94,10.14,10.38,10.620000000000001,11.15,157.02,157.19,157.42000000000002,157.78,158.14000000000001,158.5,159.02,159.55,160.95000000000002,23.34,23.11,22.98,22.84,22.68,22.5,22.35,22.21,21.97,N/A,N/A -2012,11,10,21,30,101740,100570,99430,90,0,7.61,8.35,8.56,8.75,9.13,9.68,10.06,10.36,10.94,141.43,141.85,142.22,142.72,143.63,144.93,145.83,146.53,148.29,23.080000000000002,22.81,22.66,22.490000000000002,22.34,22.22,22.07,21.93,21.7,N/A,N/A -2012,11,10,22,30,101700,100530,99400,83.73,0,9.09,10.28,10.67,10.99,11.26,11.48,11.69,11.88,12.22,150.18,150.18,150.25,150.34,150.42000000000002,150.52,150.64000000000001,150.76,151.07,23.68,23.5,23.37,23.2,23.04,22.88,22.71,22.55,22.2,N/A,N/A -2012,11,10,23,30,101670,100500,99370,83.69,0,9.89,11.15,11.57,11.88,12.13,12.34,12.530000000000001,12.69,12.98,151.48,151.89000000000001,152.15,152.43,152.70000000000002,152.98,153.26,153.53,154.1,23.72,23.55,23.42,23.26,23.1,22.93,22.76,22.59,22.25,N/A,N/A -2012,11,11,0,30,101660,100490,99360,81.99,0,9.09,10.3,10.71,11.040000000000001,11.32,11.56,11.790000000000001,11.99,12.370000000000001,151.04,151.36,151.57,151.81,152.03,152.25,152.47,152.68,153.08,23.85,23.7,23.59,23.43,23.28,23.13,22.97,22.81,22.48,N/A,N/A -2012,11,11,1,30,101630,100470,99330,80.9,0,10.26,11.63,12.08,12.43,12.72,12.96,13.19,13.39,13.76,152.73,152.97,153.13,153.3,153.46,153.62,153.78,153.93,154.25,23.86,23.71,23.59,23.43,23.27,23.11,22.94,22.78,22.43,N/A,N/A -2012,11,11,2,30,101640,100470,99340,80.65,0,10.72,12.200000000000001,12.700000000000001,13.09,13.41,13.68,13.93,14.14,14.51,152.76,153.07,153.26,153.47,153.66,153.85,154.04,154.23,154.6,23.92,23.78,23.66,23.51,23.36,23.2,23.03,22.88,22.54,N/A,N/A -2012,11,11,3,30,101600,100430,99300,80.76,0,10.94,12.41,12.9,13.290000000000001,13.61,13.89,14.14,14.370000000000001,14.8,153.71,154.01,154.21,154.42000000000002,154.63,154.82,155.02,155.20000000000002,155.56,23.95,23.81,23.7,23.54,23.39,23.23,23.06,22.91,22.57,N/A,N/A -2012,11,11,4,30,101580,100410,99280,80.85000000000001,0,11.540000000000001,13.120000000000001,13.65,14.07,14.41,14.71,14.97,15.21,15.63,156.74,156.96,157.09,157.24,157.39000000000001,157.54,157.70000000000002,157.85,158.16,23.98,23.84,23.73,23.57,23.42,23.27,23.1,22.94,22.6,N/A,N/A -2012,11,11,5,30,101560,100390,99260,79.92,0,12.02,13.66,14.17,14.56,14.88,15.15,15.38,15.59,15.94,162.01,162.39000000000001,162.6,162.82,163.01,163.20000000000002,163.37,163.53,163.82,24.080000000000002,23.95,23.84,23.68,23.53,23.37,23.19,23.03,22.67,N/A,N/A -2012,11,11,6,30,101550,100380,99250,80.09,0,11.88,13.43,13.950000000000001,14.33,14.65,14.91,15.14,15.35,15.71,163.20000000000002,163.25,163.3,163.36,163.41,163.47,163.53,163.59,163.73,24.09,23.94,23.81,23.650000000000002,23.490000000000002,23.32,23.150000000000002,22.98,22.63,N/A,N/A -2012,11,11,7,30,101530,100360,99230,81.2,0,11.58,13.15,13.67,14.08,14.41,14.69,14.950000000000001,15.17,15.59,164.6,164.71,164.79,164.88,164.96,165.05,165.12,165.20000000000002,165.35,24.11,23.97,23.85,23.69,23.53,23.37,23.2,23.04,22.69,N/A,N/A -2012,11,11,8,30,101480,100320,99190,80.75,0,11.82,13.42,13.93,14.34,14.66,14.93,15.18,15.4,15.780000000000001,163.12,163.36,163.5,163.66,163.8,163.94,164.08,164.21,164.48,24.14,24,23.88,23.73,23.57,23.41,23.240000000000002,23.07,22.73,N/A,N/A -2012,11,11,9,30,101470,100310,99180,82.67,0,11.06,12.61,13.13,13.55,13.89,14.19,14.450000000000001,14.69,15.11,166.86,167.1,167.23,167.35,167.45000000000002,167.54,167.6,167.66,167.73,24.16,24.02,23.900000000000002,23.75,23.6,23.44,23.27,23.11,22.77,N/A,N/A -2012,11,11,10,30,101460,100290,99170,83.11,0,11.06,12.69,13.25,13.72,14.120000000000001,14.47,14.81,15.120000000000001,15.71,166.96,167.34,167.52,167.71,167.89000000000001,168.06,168.23,168.38,168.66,24.22,24.1,23.990000000000002,23.85,23.71,23.56,23.41,23.26,22.95,N/A,N/A -2012,11,11,11,30,101450,100290,99160,85.46000000000001,0,10.35,11.83,12.36,12.780000000000001,13.14,13.450000000000001,13.72,13.97,14.41,166.01,165.81,165.81,165.81,165.83,165.86,165.9,165.95000000000002,166.09,24.19,24.060000000000002,23.95,23.8,23.650000000000002,23.5,23.34,23.19,22.86,N/A,N/A -2012,11,11,12,30,101470,100300,99170,91.9,17.6,9.620000000000001,10.77,11.24,11.73,12.16,12.540000000000001,12.96,13.38,14.26,158.74,159.32,159.78,160.48,161.19,161.95000000000002,162.98,164.05,166.34,23.34,23.1,22.96,22.8,22.66,22.52,22.42,22.34,22.19,N/A,N/A -2012,11,11,13,30,101440,100280,99150,85.7,0,10.32,11.76,12.24,12.620000000000001,12.94,13.22,13.47,13.700000000000001,14.11,159.36,159.59,159.71,159.82,159.92000000000002,159.99,160.04,160.09,160.13,24.17,24.03,23.91,23.76,23.61,23.45,23.28,23.13,22.79,N/A,N/A -2012,11,11,14,30,101450,100290,99160,90.58,0,10,11.42,11.89,12.290000000000001,12.63,12.93,13.23,13.5,14.01,149.26,149.78,150.1,150.43,150.75,151.04,151.34,151.61,152.13,23.78,23.57,23.44,23.28,23.12,22.97,22.8,22.650000000000002,22.330000000000002,N/A,N/A -2012,11,11,15,30,101480,100310,99180,92.2,0,9.68,11.15,11.72,12.21,12.64,13.030000000000001,13.4,13.74,14.35,158.75,159.43,159.95000000000002,160.57,161.17000000000002,161.81,162.5,163.20000000000002,164.71,23.8,23.63,23.51,23.36,23.21,23.07,22.93,22.79,22.51,N/A,N/A -2012,11,11,16,30,101470,100300,99180,89.14,0,9,10.31,10.74,11.1,11.38,11.61,11.790000000000001,11.93,12.08,171.03,170.94,170.99,171.11,171.3,171.57,171.97,172.39000000000001,173.69,24.150000000000002,23.990000000000002,23.87,23.72,23.56,23.41,23.25,23.09,22.78,N/A,N/A -2012,11,11,17,30,101450,100290,99170,94.68,0,6.38,7.390000000000001,7.72,7.96,8.120000000000001,8.22,8.31,8.39,8.700000000000001,177.58,178.26,178.8,179.51,180.41,181.47,182.89000000000001,184.35,187.81,23.990000000000002,23.84,23.740000000000002,23.62,23.5,23.38,23.25,23.13,22.87,N/A,N/A -2012,11,11,18,30,101470,100310,99180,94.61,0,4.6000000000000005,5.5600000000000005,5.99,6.46,6.890000000000001,7.33,7.74,8.120000000000001,8.78,186.92000000000002,188.47,189.55,190.75,191.72,192.55,193.20000000000002,193.74,194.56,24.21,24.1,24.03,23.92,23.82,23.71,23.59,23.47,23.2,N/A,N/A -2012,11,11,19,30,101460,100300,99170,93.11,0,4.78,5.8,6.23,6.67,7.0600000000000005,7.44,7.8,8.15,8.86,190.98,191.87,192.52,193.24,193.84,194.35,194.73000000000002,195.04,195.41,24.44,24.330000000000002,24.25,24.14,24.03,23.91,23.78,23.650000000000002,23.39,N/A,N/A -2012,11,11,20,30,101460,100300,99170,88.37,0,7.95,9.17,9.65,10.09,10.48,10.86,11.25,11.63,12.450000000000001,194.43,194.46,194.47,194.45000000000002,194.41,194.35,194.29,194.22,194.13,24.25,24.14,24.060000000000002,23.93,23.81,23.68,23.55,23.42,23.18,N/A,N/A -2012,11,11,21,30,101480,100320,99200,84.31,0.4,12.200000000000001,14.030000000000001,14.69,15.23,15.67,16.03,16.330000000000002,16.57,16.92,181.57,181.99,182.26,182.55,182.82,183.09,183.36,183.61,184.18,24.32,24.21,24.1,23.96,23.82,23.68,23.53,23.400000000000002,23.13,N/A,N/A -2012,11,11,22,30,101460,100300,99170,88.42,0,7.69,8.97,9.5,10.03,10.52,11.01,11.49,11.93,12.64,182.22,182.97,183.52,184.29,185.05,185.87,186.72,187.55,189.33,24.34,24.3,24.25,24.17,24.09,24.02,23.94,23.87,23.68,N/A,N/A -2012,11,11,23,30,101470,100310,99190,90.26,0,6.3100000000000005,7.66,8.23,8.78,9.26,9.700000000000001,10.13,10.52,11.23,190.77,190.42000000000002,190.25,190.16,190.18,190.29,190.52,190.8,191.6,24.45,24.43,24.39,24.3,24.21,24.1,23.990000000000002,23.89,23.650000000000002,N/A,N/A -2012,11,12,0,30,101530,100370,99250,81.53,10.3,6.61,7.94,8.620000000000001,9.33,9.93,10.47,10.89,11.23,11.65,194.04,196.59,198.16,200.04,201.54,202.76,203.6,204.24,204.93,24.29,24.48,24.580000000000002,24.650000000000002,24.67,24.650000000000002,24.57,24.46,24.19,N/A,N/A -2012,11,12,1,30,101590,100430,99300,87.61,0,6.62,7.49,7.8100000000000005,8.08,8.31,8.52,8.700000000000001,8.84,8.94,182.87,183.04,183.22,183.5,183.88,184.37,185.19,186.1,189.95000000000002,23.94,23.79,23.69,23.56,23.45,23.35,23.26,23.18,23.05,N/A,N/A -2012,11,12,2,30,101640,100480,99350,91.38,0,4.8100000000000005,5.69,6.0200000000000005,6.25,6.38,6.43,6.54,6.68,7.05,190.62,192.49,194.33,197.51,201.52,206.54,210.44,213.68,216.39000000000001,23.93,23.87,23.830000000000002,23.8,23.76,23.71,23.61,23.5,23.240000000000002,N/A,N/A -2012,11,12,3,30,101680,100520,99390,94.2,0,3.31,4.2,4.57,5.01,5.55,6.24,6.61,6.82,7.28,199.59,204.37,207.54,210.64000000000001,212.26,212.53,212.5,212.33,212.56,23.96,23.98,23.96,23.92,23.87,23.830000000000002,23.71,23.57,23.31,N/A,N/A -2012,11,12,4,30,101730,100570,99440,95.61,0,2.36,3.64,4.28,4.91,5.37,5.66,5.84,5.97,6.09,221.44,220.76,220.29,220.22,220.62,221.49,222.16,222.72,223.27,23.88,23.990000000000002,24.03,24.03,23.990000000000002,23.900000000000002,23.77,23.63,23.29,N/A,N/A -2012,11,12,5,30,101780,100610,99480,95.14,0,2.46,3.92,4.55,4.79,4.9,4.9,4.92,4.94,5.0600000000000005,248.75,242.46,238.97,239.42000000000002,239.65,239.69,239.73000000000002,239.78,239.76,23.94,24.240000000000002,24.32,24.2,24.05,23.86,23.66,23.48,23.12,N/A,N/A -2012,11,12,6,30,101840,100670,99540,95.52,0,2.22,3.2,3.5300000000000002,3.79,3.99,4.13,4.28,4.42,4.7,269.72,264.77,261.59000000000003,259.92,258.91,258.47,258.01,257.55,256.63,23.830000000000002,24.04,24.07,23.96,23.84,23.71,23.57,23.43,23.13,N/A,N/A -2012,11,12,7,30,102000,100800,99650,92.08,0,13.83,14.94,15.14,15.16,15.120000000000001,15.040000000000001,14.93,14.82,14.36,343.21,343.03000000000003,342.95,342.84000000000003,342.71,342.56,342.32,342.06,340.81,19.25,18.66,18.44,18.25,18.07,17.92,17.78,17.66,17.63,N/A,N/A -2012,11,12,8,30,102030,100830,99670,69.97,0,13.41,14.69,15,15.16,15.27,15.34,15.39,15.44,15.57,351.56,351.62,351.67,351.74,351.82,351.89,351.99,352.08,352.31,19.66,19.11,18.89,18.68,18.490000000000002,18.31,18.13,17.96,17.63,N/A,N/A -2012,11,12,9,30,102080,100880,99720,68.82000000000001,0,13.67,14.97,15.27,15.43,15.52,15.58,15.620000000000001,15.65,15.700000000000001,0.65,0.8300000000000001,0.91,0.97,1.03,1.08,1.1300000000000001,1.16,1.23,19.05,18.45,18.22,18.01,17.81,17.62,17.43,17.26,16.91,N/A,N/A -2012,11,12,10,30,102140,100940,99770,70.33,0,14.08,15.41,15.75,15.93,16.04,16.11,16.15,16.18,16.21,10.59,10.620000000000001,10.620000000000001,10.61,10.59,10.56,10.53,10.5,10.42,18.64,18,17.76,17.53,17.32,17.12,16.92,16.740000000000002,16.36,N/A,N/A -2012,11,12,11,30,102240,101030,99860,74.08,0,13.38,14.66,14.96,15.120000000000001,15.22,15.290000000000001,15.33,15.36,15.39,19.580000000000002,19.47,19.41,19.34,19.29,19.23,19.17,19.12,18.98,17.85,17.16,16.91,16.68,16.46,16.26,16.05,15.860000000000001,15.47,N/A,N/A -2012,11,12,12,30,102360,101150,99970,73.24,0,13.82,15.1,15.41,15.57,15.67,15.74,15.780000000000001,15.81,15.84,9.76,9.77,9.88,9.96,10.040000000000001,10.1,10.16,10.22,10.32,17.16,16.43,16.16,15.93,15.71,15.51,15.3,15.11,14.72,N/A,N/A -2012,11,12,13,30,102470,101260,100080,73.84,0,12.71,13.86,14.15,14.31,14.42,14.49,14.540000000000001,14.58,14.64,15.39,15.51,15.57,15.65,15.71,15.77,15.84,15.9,16.04,16.59,15.84,15.58,15.34,15.120000000000001,14.92,14.71,14.52,14.13,N/A,N/A -2012,11,12,14,30,102530,101320,100130,72.52,0,12.290000000000001,13.35,13.61,13.75,13.83,13.9,13.94,13.97,14.01,18.54,18.66,18.7,18.740000000000002,18.78,18.81,18.86,18.900000000000002,18.98,16.18,15.43,15.16,14.92,14.700000000000001,14.5,14.280000000000001,14.09,13.700000000000001,N/A,N/A -2012,11,12,15,30,102570,101350,100170,70.13,0,12.120000000000001,13.14,13.39,13.52,13.6,13.66,13.69,13.72,13.76,20.09,20.21,20.29,20.37,20.44,20.51,20.57,20.63,20.76,16.04,15.290000000000001,15.02,14.780000000000001,14.56,14.36,14.15,13.96,13.57,N/A,N/A -2012,11,12,16,30,102630,101410,100230,63.46,0,11.26,12.200000000000001,12.44,12.58,12.67,12.73,12.780000000000001,12.82,12.88,18.45,18.59,18.68,18.78,18.86,18.95,19.03,19.11,19.29,16.44,15.74,15.48,15.25,15.030000000000001,14.83,14.620000000000001,14.43,14.040000000000001,N/A,N/A -2012,11,12,17,30,102660,101440,100260,55.08,0,11.040000000000001,11.96,12.19,12.32,12.4,12.46,12.51,12.540000000000001,12.59,18.29,18.52,18.68,18.830000000000002,18.96,19.080000000000002,19.2,19.330000000000002,19.56,16.89,16.22,15.97,15.74,15.52,15.32,15.1,14.91,14.51,N/A,N/A -2012,11,12,18,30,102680,101470,100290,49.370000000000005,0,10.67,11.56,11.78,11.91,11.99,12.06,12.1,12.14,12.19,18.47,18.66,18.78,18.89,18.98,19.080000000000002,19.17,19.25,19.42,17.400000000000002,16.76,16.52,16.3,16.080000000000002,15.870000000000001,15.66,15.47,15.07,N/A,N/A -2012,11,12,19,30,102700,101490,100310,47.75,0,10.66,11.55,11.78,11.9,11.98,12.05,12.09,12.13,12.18,15.64,15.85,15.99,16.11,16.22,16.32,16.42,16.51,16.7,17.78,17.16,16.92,16.69,16.48,16.28,16.07,15.870000000000001,15.47,N/A,N/A -2012,11,12,20,30,102710,101500,100320,47,0,10.44,11.32,11.540000000000001,11.66,11.75,11.81,11.85,11.89,11.93,16.53,16.75,16.87,16.990000000000002,17.11,17.21,17.32,17.42,17.62,18.01,17.41,17.17,16.95,16.73,16.53,16.32,16.12,15.72,N/A,N/A -2012,11,12,21,30,102690,101480,100300,47.74,0,10.790000000000001,11.69,11.91,12.02,12.1,12.15,12.18,12.21,12.24,14.71,14.93,15.06,15.19,15.3,15.41,15.51,15.610000000000001,15.8,17.95,17.330000000000002,17.09,16.87,16.65,16.45,16.240000000000002,16.04,15.64,N/A,N/A -2012,11,12,22,30,102710,101500,100320,49.52,0,10.69,11.55,11.75,11.85,11.91,11.950000000000001,11.97,11.98,11.98,16.92,17.17,17.32,17.46,17.59,17.71,17.84,17.96,18.19,17.66,17.03,16.8,16.57,16.35,16.15,15.94,15.74,15.34,N/A,N/A -2012,11,12,23,30,102750,101530,100350,51.45,0,11.22,12.13,12.34,12.450000000000001,12.52,12.56,12.58,12.6,12.6,16.25,16.51,16.67,16.830000000000002,16.97,17.11,17.240000000000002,17.37,17.62,17.21,16.55,16.3,16.07,15.85,15.65,15.43,15.24,14.84,N/A,N/A -2012,11,13,0,30,102810,101590,100410,55.45,0,11.69,12.65,12.870000000000001,12.99,13.06,13.11,13.13,13.15,13.15,19.29,19.48,19.59,19.7,19.79,19.88,19.97,20.05,20.22,16.39,15.67,15.41,15.18,14.950000000000001,14.75,14.530000000000001,14.33,13.93,N/A,N/A -2012,11,13,1,30,102860,101630,100440,58.44,0,12.43,13.49,13.73,13.86,13.94,14,14.030000000000001,14.05,14.06,27.09,27.330000000000002,27.46,27.580000000000002,27.7,27.810000000000002,27.93,28.04,28.27,15.620000000000001,14.84,14.57,14.33,14.1,13.89,13.67,13.47,13.07,N/A,N/A -2012,11,13,2,30,102890,101660,100470,59.74,0,12.8,13.89,14.15,14.290000000000001,14.38,14.44,14.47,14.49,14.51,32.89,33.17,33.34,33.5,33.65,33.78,33.92,34.05,34.31,15.200000000000001,14.39,14.11,13.870000000000001,13.64,13.43,13.21,13.01,12.6,N/A,N/A -2012,11,13,3,30,102900,101670,100470,60.18,0,12.72,13.81,14.08,14.21,14.290000000000001,14.36,14.39,14.41,14.43,37.45,37.74,37.9,38.050000000000004,38.18,38.31,38.44,38.56,38.800000000000004,15.030000000000001,14.22,13.94,13.700000000000001,13.46,13.26,13.040000000000001,12.83,12.43,N/A,N/A -2012,11,13,4,30,102910,101680,100480,64.34,0,12.4,13.43,13.67,13.790000000000001,13.86,13.91,13.93,13.950000000000001,13.950000000000001,40.09,40.45,40.67,40.88,41.07,41.24,41.43,41.6,41.93,14.83,14.02,13.74,13.49,13.26,13.05,12.83,12.63,12.23,N/A,N/A -2012,11,13,5,30,102900,101670,100470,67.02,0,11.89,12.870000000000001,13.1,13.23,13.32,13.370000000000001,13.41,13.43,13.46,42.61,43.04,43.29,43.51,43.72,43.910000000000004,44.1,44.28,44.63,14.790000000000001,13.98,13.71,13.46,13.23,13.02,12.8,12.6,12.200000000000001,N/A,N/A -2012,11,13,6,30,102920,101690,100490,60.730000000000004,0,12.82,13.93,14.21,14.36,14.450000000000001,14.52,14.56,14.59,14.63,47.71,47.81,47.89,47.95,48.01,48.06,48.11,48.160000000000004,48.26,14.84,14,13.71,13.46,13.23,13.02,12.8,12.59,12.19,N/A,N/A -2012,11,13,7,30,102950,101720,100520,64.41,0,12.42,13.48,13.74,13.89,13.99,14.06,14.11,14.15,14.19,44.410000000000004,44.81,45.050000000000004,45.27,45.47,45.660000000000004,45.84,46.02,46.36,14.65,13.82,13.530000000000001,13.280000000000001,13.040000000000001,12.83,12.61,12.41,12.01,N/A,N/A -2012,11,13,8,30,102940,101710,100520,64.09,0,12.68,13.77,14.040000000000001,14.19,14.280000000000001,14.35,14.39,14.43,14.47,44.44,44.81,45.02,45.22,45.410000000000004,45.58,45.75,45.910000000000004,46.24,14.51,13.66,13.370000000000001,13.120000000000001,12.89,12.68,12.46,12.25,11.85,N/A,N/A -2012,11,13,9,30,102970,101740,100540,62.190000000000005,0,13.16,14.33,14.63,14.8,14.91,15,15.05,15.09,15.15,46.76,47.11,47.31,47.51,47.68,47.84,48,48.15,48.45,14.5,13.63,13.34,13.08,12.84,12.63,12.41,12.21,11.8,N/A,N/A -2012,11,13,10,30,102990,101750,100550,56.9,0,14.3,15.620000000000001,15.950000000000001,16.13,16.240000000000002,16.32,16.37,16.4,16.44,52.33,52.42,52.480000000000004,52.53,52.58,52.620000000000005,52.660000000000004,52.7,52.79,14.57,13.67,13.370000000000001,13.11,12.870000000000001,12.66,12.43,12.23,11.82,N/A,N/A -2012,11,13,11,30,102990,101750,100550,56.7,0,14.22,15.52,15.84,16,16.11,16.18,16.22,16.25,16.28,52.52,52.69,52.800000000000004,52.89,52.980000000000004,53.06,53.15,53.230000000000004,53.4,14.39,13.49,13.19,12.93,12.69,12.47,12.25,12.05,11.64,N/A,N/A -2012,11,13,12,30,103000,101770,100570,57.99,0,14.07,15.33,15.63,15.790000000000001,15.89,15.96,15.99,16.02,16.04,53.19,53.410000000000004,53.54,53.660000000000004,53.78,53.88,53.99,54.09,54.300000000000004,14.26,13.36,13.06,12.8,12.56,12.35,12.120000000000001,11.92,11.51,N/A,N/A -2012,11,13,13,30,103000,101770,100570,59.74,0,13.83,15.05,15.34,15.5,15.59,15.65,15.69,15.71,15.73,52.88,53.15,53.31,53.46,53.59,53.71,53.84,53.96,54.2,14.14,13.23,12.94,12.68,12.44,12.23,12,11.8,11.39,N/A,N/A -2012,11,13,14,30,103000,101760,100570,61.03,0,13.47,14.65,14.92,15.07,15.16,15.22,15.25,15.27,15.290000000000001,52.46,52.75,52.93,53.09,53.25,53.38,53.53,53.660000000000004,53.93,14.13,13.23,12.94,12.68,12.44,12.23,12.01,11.8,11.4,N/A,N/A -2012,11,13,15,30,102990,101750,100550,61.25,0,13.19,14.32,14.58,14.72,14.81,14.870000000000001,14.89,14.91,14.92,52.75,53.02,53.18,53.33,53.480000000000004,53.6,53.74,53.870000000000005,54.13,14.1,13.22,12.93,12.68,12.43,12.22,12,11.8,11.39,N/A,N/A -2012,11,13,16,30,102950,101720,100520,58.68,0,12.08,13.05,13.27,13.38,13.450000000000001,13.49,13.51,13.52,13.52,50.06,50.29,50.44,50.57,50.69,50.800000000000004,50.92,51.03,51.25,14.120000000000001,13.27,12.98,12.73,12.5,12.290000000000001,12.07,11.870000000000001,11.46,N/A,N/A -2012,11,13,17,30,102910,101670,100480,56.76,0,10.870000000000001,11.68,11.870000000000001,11.950000000000001,12.01,12.05,12.06,12.07,12.07,49.74,49.9,49.99,50.08,50.17,50.24,50.32,50.39,50.54,14.27,13.48,13.200000000000001,12.950000000000001,12.72,12.52,12.3,12.1,11.69,N/A,N/A -2012,11,13,18,30,102860,101630,100430,54.36,0,10.08,10.82,10.98,11.06,11.11,11.14,11.16,11.17,11.17,46.49,46.53,46.56,46.58,46.6,46.62,46.63,46.64,46.68,14.67,13.91,13.64,13.4,13.17,12.97,12.75,12.55,12.14,N/A,N/A -2012,11,13,19,30,102830,101600,100410,56.92,0,9.11,9.74,9.88,9.96,10.01,10.040000000000001,10.06,10.07,10.08,43.65,43.79,43.9,44,44.08,44.160000000000004,44.230000000000004,44.300000000000004,44.45,15.06,14.35,14.09,13.85,13.620000000000001,13.42,13.200000000000001,13,12.6,N/A,N/A -2012,11,13,20,30,102760,101540,100340,50.09,0,8.07,8.58,8.700000000000001,8.76,8.8,8.82,8.84,8.85,8.86,38.19,38.26,38.33,38.38,38.44,38.480000000000004,38.53,38.57,38.660000000000004,15.540000000000001,14.870000000000001,14.620000000000001,14.39,14.17,13.97,13.75,13.55,13.15,N/A,N/A -2012,11,13,21,30,102720,101500,100310,46.6,0,7.32,7.7700000000000005,7.87,7.930000000000001,7.96,7.98,8,8.01,8.02,38.58,38.33,38.17,38.01,37.88,37.76,37.62,37.51,37.27,16.080000000000002,15.46,15.22,14.99,14.77,14.57,14.36,14.16,13.76,N/A,N/A -2012,11,13,22,30,102690,101470,100280,45.74,0,7.42,7.87,7.96,7.99,8.01,8.02,8.02,8.02,8.01,29.3,29.63,29.85,30.05,30.240000000000002,30.41,30.580000000000002,30.75,31.060000000000002,16.41,15.790000000000001,15.56,15.33,15.120000000000001,14.92,14.71,14.51,14.11,N/A,N/A -2012,11,13,23,30,102670,101450,100260,47.28,0,7.71,8.17,8.25,8.28,8.290000000000001,8.290000000000001,8.290000000000001,8.28,8.25,24.7,25.080000000000002,25.34,25.57,25.79,25.990000000000002,26.2,26.38,26.76,16.37,15.74,15.5,15.280000000000001,15.06,14.86,14.65,14.450000000000001,14.05,N/A,N/A -2012,11,14,0,30,102690,101460,100280,49.68,0,8.39,8.91,9,9.03,9.040000000000001,9.05,9.03,9.02,8.98,24.97,25.34,25.55,25.76,25.95,26.12,26.3,26.46,26.8,16.04,15.38,15.14,14.91,14.69,14.49,14.27,14.08,13.68,N/A,N/A -2012,11,14,1,30,102680,101460,100270,52.800000000000004,0,8.77,9.31,9.41,9.450000000000001,9.46,9.46,9.44,9.43,9.38,26.35,26.77,27.03,27.27,27.51,27.71,27.92,28.12,28.53,15.66,14.98,14.74,14.5,14.280000000000001,14.08,13.870000000000001,13.67,13.27,N/A,N/A -2012,11,14,2,30,102680,101460,100270,54.75,0,8.81,9.370000000000001,9.48,9.52,9.540000000000001,9.540000000000001,9.53,9.52,9.49,32.69,33.05,33.28,33.49,33.69,33.86,34.05,34.22,34.58,15.5,14.81,14.56,14.33,14.11,13.91,13.69,13.5,13.1,N/A,N/A -2012,11,14,3,30,102690,101470,100280,56.7,0,8.98,9.56,9.68,9.74,9.76,9.77,9.76,9.76,9.73,35.93,36.28,36.51,36.72,36.92,37.1,37.28,37.45,37.81,15.43,14.73,14.48,14.25,14.02,13.82,13.61,13.41,13.01,N/A,N/A -2012,11,14,4,30,102680,101450,100260,60.07,0,8.88,9.450000000000001,9.56,9.61,9.63,9.64,9.64,9.63,9.61,39.18,39.67,39.96,40.24,40.5,40.730000000000004,40.97,41.19,41.64,15.370000000000001,14.68,14.42,14.19,13.97,13.77,13.55,13.36,12.96,N/A,N/A -2012,11,14,5,30,102660,101430,100250,64.36,0,8.89,9.47,9.6,9.65,9.68,9.700000000000001,9.700000000000001,9.700000000000001,9.69,40.58,40.99,41.25,41.49,41.7,41.89,42.09,42.28,42.64,15.36,14.67,14.41,14.17,13.950000000000001,13.75,13.530000000000001,13.33,12.93,N/A,N/A -2012,11,14,6,30,102700,101480,100290,65.44,0,8.69,9.25,9.36,9.41,9.43,9.450000000000001,9.450000000000001,9.44,9.42,39.62,40.15,40.46,40.75,41.02,41.26,41.51,41.74,42.19,15.17,14.49,14.23,14,13.780000000000001,13.58,13.36,13.16,12.76,N/A,N/A -2012,11,14,7,30,102710,101480,100290,65.94,0,8.78,9.34,9.450000000000001,9.49,9.51,9.52,9.52,9.51,9.48,35.62,36.17,36.49,36.79,37.06,37.31,37.57,37.81,38.28,14.91,14.21,13.950000000000001,13.72,13.5,13.3,13.08,12.88,12.48,N/A,N/A -2012,11,14,8,30,102690,101470,100280,66.38,0,8.9,9.46,9.56,9.61,9.63,9.63,9.620000000000001,9.61,9.57,35.84,36.22,36.47,36.7,36.910000000000004,37.11,37.31,37.49,37.86,14.74,14.030000000000001,13.77,13.540000000000001,13.31,13.11,12.9,12.700000000000001,12.3,N/A,N/A -2012,11,14,9,30,102740,101510,100320,62.81,0,8.35,8.84,8.92,8.950000000000001,8.96,8.950000000000001,8.93,8.91,8.86,35.33,35.68,35.910000000000004,36.12,36.32,36.5,36.68,36.85,37.21,14.63,13.94,13.68,13.450000000000001,13.23,13.030000000000001,12.81,12.620000000000001,12.22,N/A,N/A -2012,11,14,10,30,102740,101510,100320,62.58,0,8.28,8.77,8.86,8.89,8.91,8.91,8.9,8.88,8.84,32.62,33.09,33.4,33.69,33.96,34.2,34.45,34.68,35.160000000000004,14.530000000000001,13.84,13.59,13.35,13.13,12.93,12.72,12.52,12.13,N/A,N/A -2012,11,14,11,30,102740,101510,100320,62.28,0,8.07,8.53,8.6,8.620000000000001,8.61,8.6,8.58,8.55,8.49,31.01,31.5,31.8,32.07,32.34,32.58,32.83,33.06,33.54,14.47,13.780000000000001,13.52,13.3,13.08,12.88,12.66,12.47,12.07,N/A,N/A -2012,11,14,12,30,102760,101530,100340,62.43,0,8.26,8.73,8.8,8.81,8.81,8.790000000000001,8.76,8.73,8.66,31.75,32.2,32.480000000000004,32.75,33,33.22,33.47,33.69,34.160000000000004,14.24,13.540000000000001,13.290000000000001,13.05,12.83,12.64,12.43,12.23,11.84,N/A,N/A -2012,11,14,13,30,102790,101560,100360,60.85,0,8.06,8.51,8.57,8.59,8.58,8.57,8.540000000000001,8.51,8.44,30.63,30.98,31.23,31.46,31.69,31.89,32.1,32.31,32.72,14.15,13.450000000000001,13.19,12.97,12.75,12.55,12.34,12.15,11.76,N/A,N/A -2012,11,14,14,30,102800,101570,100370,60.96,0,8.31,8.77,8.84,8.85,8.84,8.83,8.790000000000001,8.76,8.68,30.82,31.240000000000002,31.490000000000002,31.73,31.95,32.160000000000004,32.38,32.58,33,13.92,13.200000000000001,12.950000000000001,12.72,12.5,12.3,12.09,11.9,11.51,N/A,N/A -2012,11,14,15,30,102820,101580,100390,58.61,0,7.94,8.39,8.46,8.48,8.48,8.47,8.46,8.44,8.38,31.560000000000002,31.94,32.18,32.39,32.59,32.77,32.97,33.15,33.53,13.9,13.19,12.93,12.71,12.48,12.290000000000001,12.08,11.89,11.5,N/A,N/A -2012,11,14,16,30,102800,101570,100370,56.410000000000004,0,7.48,7.87,7.930000000000001,7.95,7.95,7.94,7.92,7.9,7.84,23.1,23.36,23.52,23.67,23.81,23.95,24.080000000000002,24.21,24.47,14.07,13.38,13.13,12.9,12.68,12.49,12.280000000000001,12.09,11.700000000000001,N/A,N/A -2012,11,14,17,30,102770,101540,100340,51.95,0,7.18,7.57,7.640000000000001,7.66,7.66,7.66,7.640000000000001,7.63,7.59,19.400000000000002,19.53,19.61,19.68,19.76,19.82,19.89,19.96,20.09,14.530000000000001,13.870000000000001,13.620000000000001,13.4,13.18,12.98,12.77,12.58,12.19,N/A,N/A -2012,11,14,18,30,102730,101510,100310,49.63,0,6.63,6.99,7.07,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.15,7.140000000000001,17.1,17.14,17.16,17.17,17.18,17.19,17.21,17.22,17.240000000000002,15,14.370000000000001,14.13,13.9,13.69,13.49,13.280000000000001,13.08,12.68,N/A,N/A -2012,11,14,19,30,102710,101490,100300,44.29,0,5.73,6.07,6.140000000000001,6.19,6.22,6.24,6.26,6.28,6.3,13.06,13.18,13.26,13.34,13.4,13.46,13.530000000000001,13.58,13.68,15.85,15.27,15.040000000000001,14.82,14.61,14.41,14.200000000000001,14.01,13.61,N/A,N/A -2012,11,14,20,30,102660,101440,100260,41.230000000000004,0,6.2,6.5600000000000005,6.640000000000001,6.67,6.7,6.72,6.73,6.74,6.75,7.01,7.19,7.3,7.390000000000001,7.48,7.55,7.640000000000001,7.71,7.86,16.6,16.03,15.81,15.59,15.38,15.18,14.98,14.780000000000001,14.38,N/A,N/A -2012,11,14,21,30,102630,101410,100230,39.28,0,6.44,6.82,6.890000000000001,6.93,6.95,6.96,6.96,6.97,6.96,7.91,7.88,7.86,7.84,7.83,7.82,7.82,7.8100000000000005,7.82,17.18,16.63,16.41,16.2,15.99,15.790000000000001,15.59,15.39,15,N/A,N/A -2012,11,14,22,30,102600,101380,100210,40.18,0,6.3,6.66,6.73,6.76,6.78,6.78,6.79,6.79,6.78,13.73,13.56,13.44,13.33,13.22,13.14,13.05,12.97,12.81,17.45,16.91,16.69,16.48,16.27,16.080000000000002,15.870000000000001,15.67,15.280000000000001,N/A,N/A -2012,11,14,23,30,102620,101400,100220,43.94,0,6.32,6.67,6.74,6.76,6.78,6.78,6.78,6.78,6.76,12.09,12.49,12.71,12.92,13.120000000000001,13.290000000000001,13.48,13.65,13.98,17.45,16.91,16.69,16.47,16.26,16.06,15.85,15.66,15.26,N/A,N/A -2012,11,15,0,30,102610,101400,100220,46.730000000000004,0,7.08,7.46,7.53,7.54,7.54,7.53,7.51,7.49,7.44,18.34,18.36,18.37,18.37,18.37,18.37,18.38,18.38,18.38,17.11,16.54,16.32,16.1,15.89,15.69,15.48,15.290000000000001,14.89,N/A,N/A -2012,11,15,1,30,102620,101400,100220,48.21,0,7.0200000000000005,7.390000000000001,7.45,7.46,7.46,7.45,7.43,7.41,7.3500000000000005,21.75,21.92,22,22.07,22.13,22.19,22.26,22.32,22.46,16.66,16.080000000000002,15.84,15.63,15.41,15.22,15.01,14.81,14.42,N/A,N/A -2012,11,15,2,30,102620,101410,100220,50.25,0,6.71,7.0600000000000005,7.11,7.12,7.12,7.11,7.09,7.07,7.01,26.23,26.39,26.5,26.59,26.69,26.77,26.86,26.93,27.09,16.41,15.83,15.6,15.38,15.17,14.97,14.76,14.57,14.17,N/A,N/A -2012,11,15,3,30,102600,101380,100190,53.620000000000005,0,6.97,7.34,7.390000000000001,7.4,7.390000000000001,7.390000000000001,7.36,7.34,7.28,27.12,27.35,27.490000000000002,27.63,27.77,27.88,28.01,28.13,28.37,16.11,15.5,15.27,15.05,14.84,14.64,14.43,14.24,13.84,N/A,N/A -2012,11,15,4,30,102590,101370,100180,53.19,0,6.79,7.15,7.2,7.21,7.21,7.2,7.18,7.16,7.11,37.9,38.26,38.49,38.71,38.93,39.11,39.31,39.5,39.88,16.14,15.55,15.32,15.1,14.88,14.69,14.48,14.280000000000001,13.89,N/A,N/A -2012,11,15,5,30,102550,101340,100150,51.83,0,6.75,7.09,7.140000000000001,7.140000000000001,7.140000000000001,7.12,7.1000000000000005,7.08,7.0200000000000005,35.54,35.94,36.18,36.42,36.64,36.84,37.06,37.26,37.68,16.16,15.57,15.34,15.120000000000001,14.91,14.71,14.5,14.31,13.92,N/A,N/A -2012,11,15,6,30,102530,101320,100130,59.33,0,6.25,6.57,6.61,6.62,6.61,6.6000000000000005,6.58,6.5600000000000005,6.51,38.46,39.03,39.33,39.62,39.89,40.14,40.4,40.65,41.15,16.05,15.5,15.280000000000001,15.07,14.85,14.66,14.450000000000001,14.26,13.870000000000001,N/A,N/A -2012,11,15,7,30,102540,101320,100140,61.120000000000005,0,6.5200000000000005,6.8500000000000005,6.9,6.91,6.91,6.9,6.88,6.86,6.8100000000000005,44.230000000000004,44.84,45.19,45.53,45.85,46.13,46.45,46.730000000000004,47.31,15.93,15.370000000000001,15.14,14.92,14.71,14.52,14.31,14.120000000000001,13.73,N/A,N/A -2012,11,15,8,30,102520,101300,100120,63.06,0,6.43,6.76,6.8,6.8100000000000005,6.8100000000000005,6.8,6.78,6.76,6.7,44.58,45.050000000000004,45.34,45.62,45.88,46.11,46.36,46.59,47.07,15.88,15.32,15.09,14.870000000000001,14.66,14.47,14.26,14.07,13.67,N/A,N/A -2012,11,15,9,30,102520,101300,100120,61.32,0,6.37,6.69,6.73,6.74,6.73,6.72,6.7,6.68,6.62,44.660000000000004,45.24,45.63,46,46.35,46.65,46.980000000000004,47.29,47.92,15.860000000000001,15.3,15.08,14.870000000000001,14.65,14.46,14.25,14.06,13.67,N/A,N/A -2012,11,15,10,30,102520,101300,100120,61.61,0,6.08,6.37,6.4,6.41,6.390000000000001,6.38,6.36,6.34,6.28,47.65,48.27,48.65,49,49.34,49.64,49.95,50.24,50.85,15.870000000000001,15.32,15.1,14.88,14.67,14.48,14.27,14.08,13.68,N/A,N/A -2012,11,15,11,30,102530,101320,100130,62.07,0,5.97,6.25,6.28,6.28,6.2700000000000005,6.25,6.23,6.2,6.140000000000001,47.84,48.32,48.59,48.85,49.09,49.31,49.56,49.78,50.24,15.83,15.27,15.05,14.83,14.620000000000001,14.43,14.22,14.030000000000001,13.63,N/A,N/A -2012,11,15,12,30,102540,101320,100130,64.18,0,6.44,6.76,6.79,6.8,6.78,6.7700000000000005,6.74,6.71,6.65,46.18,46.71,47.03,47.33,47.62,47.88,48.15,48.410000000000004,48.93,15.67,15.1,14.88,14.66,14.450000000000001,14.26,14.05,13.85,13.46,N/A,N/A -2012,11,15,13,30,102540,101320,100130,65.43,0,6.83,7.17,7.22,7.22,7.21,7.19,7.16,7.13,7.0600000000000005,43.52,43.95,44.230000000000004,44.5,44.76,44.980000000000004,45.230000000000004,45.45,45.910000000000004,15.46,14.88,14.65,14.43,14.22,14.030000000000001,13.82,13.63,13.24,N/A,N/A -2012,11,15,14,30,102550,101330,100140,66.07000000000001,0,6.97,7.33,7.37,7.37,7.3500000000000005,7.33,7.3,7.26,7.17,40.410000000000004,40.77,41,41.21,41.42,41.6,41.800000000000004,41.980000000000004,42.38,15.3,14.71,14.47,14.26,14.040000000000001,13.85,13.64,13.450000000000001,13.06,N/A,N/A -2012,11,15,15,30,102570,101350,100160,64.13,0,6.7700000000000005,7.12,7.16,7.17,7.16,7.140000000000001,7.12,7.09,7.0200000000000005,46.980000000000004,47.29,47.49,47.67,47.85,48.01,48.17,48.32,48.64,15.25,14.66,14.43,14.21,14,13.8,13.59,13.41,13.01,N/A,N/A -2012,11,15,16,30,102560,101340,100160,63.07,0,6.49,6.8100000000000005,6.8500000000000005,6.8500000000000005,6.84,6.82,6.79,6.76,6.69,45.69,45.94,46.12,46.28,46.42,46.56,46.71,46.85,47.12,15.200000000000001,14.61,14.38,14.16,13.950000000000001,13.76,13.55,13.36,12.97,N/A,N/A -2012,11,15,17,30,102550,101330,100140,59.81,0,5.92,6.2,6.23,6.23,6.22,6.2,6.18,6.16,6.09,44.160000000000004,44.4,44.53,44.64,44.76,44.86,44.97,45.07,45.27,15.370000000000001,14.81,14.58,14.36,14.15,13.96,13.75,13.56,13.17,N/A,N/A -2012,11,15,18,30,102510,101290,100110,59.07,0,5.5600000000000005,5.8,5.83,5.83,5.8100000000000005,5.8,5.7700000000000005,5.75,5.69,36.99,37.07,37.160000000000004,37.230000000000004,37.300000000000004,37.37,37.43,37.49,37.59,15.49,14.93,14.71,14.5,14.290000000000001,14.1,13.89,13.700000000000001,13.31,N/A,N/A -2012,11,15,19,30,102510,101290,100110,48.5,0,4.57,4.78,4.8,4.8100000000000005,4.8100000000000005,4.8,4.79,4.78,4.76,39.910000000000004,39.9,39.87,39.83,39.800000000000004,39.77,39.730000000000004,39.69,39.61,16.01,15.49,15.27,15.07,14.86,14.67,14.46,14.27,13.88,N/A,N/A -2012,11,15,20,30,102470,101250,100070,47.480000000000004,0,4.17,4.36,4.39,4.4,4.41,4.41,4.41,4.41,4.4,39.38,39.19,39.06,38.95,38.82,38.71,38.58,38.45,38.17,16.4,15.9,15.69,15.48,15.280000000000001,15.09,14.88,14.69,14.3,N/A,N/A -2012,11,15,21,30,102450,101230,100050,46.76,0,3.69,3.85,3.88,3.89,3.89,3.89,3.89,3.89,3.89,51.730000000000004,51.14,50.77,50.42,50.08,49.76,49.410000000000004,49.09,48.39,16.79,16.31,16.1,15.9,15.69,15.5,15.3,15.1,14.71,N/A,N/A -2012,11,15,22,30,102440,101220,100050,46.13,0,3.45,3.61,3.64,3.66,3.67,3.69,3.69,3.7,3.71,55.99,55.300000000000004,54.88,54.49,54.11,53.76,53.38,53.03,52.28,17.150000000000002,16.69,16.490000000000002,16.28,16.080000000000002,15.89,15.68,15.5,15.1,N/A,N/A -2012,11,15,23,30,102450,101240,100060,45.37,0,3.73,3.91,3.95,3.97,3.99,4,4.0200000000000005,4.03,4.05,60.36,59.28,58.550000000000004,57.88,57.24,56.67,56.050000000000004,55.480000000000004,54.34,17.580000000000002,17.13,16.93,16.73,16.52,16.34,16.13,15.94,15.55,N/A,N/A -2012,11,16,0,30,102450,101240,100070,39.46,0,4.7,4.93,4.95,4.96,4.95,4.94,4.93,4.91,4.87,32.69,32.52,32.53,32.55,32.58,32.6,32.62,32.65,32.71,18.330000000000002,17.89,17.69,17.48,17.28,17.09,16.88,16.69,16.29,N/A,N/A -2012,11,16,1,30,102480,101270,100100,43.85,0,5.87,6.15,6.18,6.17,6.16,6.13,6.11,6.08,6.01,31.27,31.810000000000002,32.14,32.44,32.72,32.99,33.26,33.5,34.04,17.82,17.35,17.14,16.94,16.73,16.54,16.330000000000002,16.15,15.75,N/A,N/A -2012,11,16,2,30,102500,101280,100100,47.58,0,6.3,6.61,6.65,6.65,6.63,6.62,6.59,6.5600000000000005,6.48,30.150000000000002,30.59,30.87,31.13,31.37,31.6,31.84,32.06,32.53,17.36,16.86,16.65,16.44,16.23,16.04,15.84,15.65,15.26,N/A,N/A -2012,11,16,3,30,102490,101270,100100,49.88,0,6.18,6.5,6.54,6.55,6.54,6.53,6.51,6.49,6.43,35.01,35.44,35.68,35.92,36.13,36.33,36.54,36.730000000000004,37.14,17.14,16.63,16.42,16.21,16,15.81,15.610000000000001,15.42,15.030000000000001,N/A,N/A -2012,11,16,4,30,102470,101260,100080,53.17,0,6.42,6.76,6.8100000000000005,6.82,6.82,6.8100000000000005,6.78,6.76,6.7,33.7,34.09,34.33,34.550000000000004,34.76,34.94,35.14,35.33,35.7,16.97,16.45,16.23,16.02,15.82,15.620000000000001,15.42,15.23,14.84,N/A,N/A -2012,11,16,5,30,102500,101280,100100,56.5,0,6.69,7.07,7.140000000000001,7.16,7.17,7.17,7.15,7.140000000000001,7.1000000000000005,40.51,40.84,41.06,41.26,41.45,41.62,41.800000000000004,41.97,42.31,16.85,16.32,16.1,15.88,15.67,15.48,15.27,15.08,14.68,N/A,N/A -2012,11,16,6,30,102500,101290,100110,59.83,0,7.16,7.57,7.640000000000001,7.65,7.66,7.65,7.63,7.61,7.5600000000000005,40.35,40.800000000000004,41.08,41.35,41.6,41.83,42.07,42.29,42.74,16.57,16.02,15.8,15.58,15.370000000000001,15.18,14.97,14.780000000000001,14.39,N/A,N/A -2012,11,16,7,30,102520,101300,100120,61.51,0,7.07,7.46,7.5200000000000005,7.54,7.54,7.53,7.51,7.49,7.43,38.480000000000004,38.83,39.06,39.28,39.480000000000004,39.67,39.85,40.03,40.39,16.32,15.77,15.55,15.33,15.120000000000001,14.93,14.72,14.530000000000001,14.14,N/A,N/A -2012,11,16,8,30,102520,101300,100120,62.09,0,7.43,7.86,7.930000000000001,7.95,7.95,7.94,7.92,7.9,7.84,37.97,38.33,38.550000000000004,38.75,38.94,39.11,39.300000000000004,39.47,39.82,16.12,15.56,15.33,15.11,14.9,14.71,14.5,14.31,13.92,N/A,N/A -2012,11,16,9,30,102530,101310,100120,63.96,0,7.3500000000000005,7.76,7.83,7.8500000000000005,7.84,7.83,7.8100000000000005,7.79,7.72,37.29,37.67,37.910000000000004,38.13,38.35,38.54,38.74,38.94,39.33,15.81,15.23,15,14.780000000000001,14.57,14.38,14.17,13.98,13.6,N/A,N/A -2012,11,16,10,30,102540,101320,100130,66.97,0,7.8500000000000005,8.31,8.39,8.41,8.41,8.4,8.370000000000001,8.35,8.290000000000001,36,36.4,36.65,36.88,37.1,37.300000000000004,37.51,37.71,38.12,15.530000000000001,14.92,14.69,14.47,14.26,14.06,13.86,13.67,13.280000000000001,N/A,N/A -2012,11,16,11,30,102580,101350,100170,67.9,0,8.05,8.52,8.6,8.63,8.63,8.620000000000001,8.6,8.58,8.51,36.22,36.62,36.88,37.12,37.34,37.550000000000004,37.77,37.97,38.39,15.14,14.51,14.27,14.06,13.84,13.65,13.44,13.25,12.86,N/A,N/A -2012,11,16,12,30,102590,101360,100170,70.12,0,8.46,8.98,9.07,9.1,9.1,9.09,9.07,9.05,8.98,33.62,33.980000000000004,34.21,34.43,34.63,34.82,35.02,35.21,35.61,14.700000000000001,14.05,13.8,13.58,13.370000000000001,13.17,12.97,12.780000000000001,12.4,N/A,N/A -2012,11,16,13,30,102600,101380,100180,69.5,0,8.46,8.96,9.05,9.07,9.07,9.05,9.02,8.99,8.91,30.47,30.830000000000002,31.060000000000002,31.28,31.490000000000002,31.69,31.89,32.09,32.5,14.34,13.67,13.43,13.200000000000001,12.99,12.8,12.59,12.4,12.030000000000001,N/A,N/A -2012,11,16,14,30,102640,101410,100210,70.03,0,8.42,8.91,8.99,9.01,9.01,9,8.97,8.94,8.86,30.22,30.6,30.84,31.07,31.29,31.490000000000002,31.71,31.91,32.36,14.1,13.43,13.18,12.96,12.75,12.55,12.35,12.16,11.78,N/A,N/A -2012,11,16,15,30,102630,101400,100210,71.32000000000001,0,8.47,8.98,9.07,9.09,9.1,9.09,9.07,9.040000000000001,8.98,30.04,30.37,30.580000000000002,30.76,30.95,31.11,31.3,31.470000000000002,31.82,14.030000000000001,13.36,13.11,12.89,12.67,12.48,12.280000000000001,12.09,11.71,N/A,N/A -2012,11,16,16,30,102640,101410,100220,69.97,0,7.8100000000000005,8.28,8.370000000000001,8.4,8.41,8.42,8.41,8.4,8.36,33.5,33.76,33.94,34.1,34.25,34.38,34.53,34.660000000000004,34.93,14.19,13.540000000000001,13.3,13.08,12.86,12.67,12.46,12.27,11.88,N/A,N/A -2012,11,16,17,30,102620,101400,100210,67.42,0,7.44,7.88,7.97,8,8.02,8.03,8.03,8.02,8.01,29.43,29.650000000000002,29.8,29.93,30.060000000000002,30.17,30.29,30.39,30.62,14.55,13.92,13.68,13.46,13.24,13.05,12.84,12.65,12.25,N/A,N/A -2012,11,16,18,30,102610,101380,100190,62.78,0,6.58,6.97,7.0600000000000005,7.1000000000000005,7.13,7.15,7.17,7.18,7.19,31.240000000000002,31.32,31.37,31.41,31.44,31.470000000000002,31.5,31.53,31.580000000000002,15.1,14.51,14.280000000000001,14.06,13.84,13.65,13.44,13.25,12.85,N/A,N/A -2012,11,16,19,30,102580,101360,100180,59.33,0,5.94,6.3100000000000005,6.4,6.45,6.49,6.5200000000000005,6.54,6.5600000000000005,6.6000000000000005,33.83,33.58,33.410000000000004,33.25,33.09,32.94,32.79,32.65,32.35,15.75,15.21,14.98,14.77,14.56,14.36,14.16,13.96,13.57,N/A,N/A -2012,11,16,20,30,102560,101340,100160,56.08,0,5.33,5.66,5.75,5.8100000000000005,5.8500000000000005,5.89,5.92,5.95,6,36.980000000000004,36.39,36.04,35.72,35.4,35.12,34.83,34.56,34.03,16.47,15.96,15.74,15.530000000000001,15.32,15.13,14.92,14.73,14.34,N/A,N/A -2012,11,16,21,30,102540,101320,100140,54.660000000000004,0,5.25,5.57,5.64,5.69,5.72,5.75,5.7700000000000005,5.79,5.83,43.480000000000004,42.83,42.410000000000004,42.02,41.660000000000004,41.33,40.97,40.660000000000004,40.02,17.09,16.61,16.4,16.19,15.98,15.790000000000001,15.58,15.39,15,N/A,N/A -2012,11,16,22,30,102530,101320,100140,52.94,0,5.54,5.9,5.98,6.04,6.09,6.12,6.15,6.17,6.22,39.44,38.84,38.480000000000004,38.15,37.86,37.6,37.34,37.11,36.660000000000004,17.68,17.21,17.01,16.8,16.59,16.4,16.19,16,15.6,N/A,N/A -2012,11,16,23,30,102540,101330,100150,51.660000000000004,0,5.87,6.24,6.32,6.37,6.41,6.43,6.45,6.47,6.49,36.5,35.96,35.72,35.5,35.31,35.13,34.96,34.800000000000004,34.49,17.93,17.46,17.25,17.05,16.84,16.65,16.44,16.240000000000002,15.85,N/A,N/A -2012,11,17,0,30,102570,101360,100180,52.21,0,7.07,7.48,7.54,7.5600000000000005,7.5600000000000005,7.5600000000000005,7.54,7.53,7.48,22.330000000000002,22.76,23.02,23.26,23.490000000000002,23.71,23.93,24.14,24.57,17.64,17.14,16.93,16.72,16.51,16.32,16.11,15.92,15.530000000000001,N/A,N/A -2012,11,17,1,30,102600,101380,100210,56.26,0,7.54,8.02,8.11,8.14,8.15,8.16,8.15,8.14,8.1,27.11,27.38,27.57,27.75,27.91,28.060000000000002,28.21,28.35,28.64,17.28,16.76,16.54,16.330000000000002,16.12,15.92,15.71,15.52,15.120000000000001,N/A,N/A -2012,11,17,2,30,102620,101400,100220,59.54,0,8.14,8.68,8.78,8.83,8.84,8.85,8.85,8.84,8.81,29,29.51,29.82,30.11,30.39,30.64,30.900000000000002,31.150000000000002,31.64,16.96,16.41,16.19,15.98,15.76,15.57,15.36,15.17,14.77,N/A,N/A -2012,11,17,3,30,102630,101410,100230,62.13,0,8.41,8.98,9.09,9.14,9.16,9.16,9.16,9.15,9.11,34.75,35.09,35.29,35.480000000000004,35.660000000000004,35.82,35.99,36.15,36.480000000000004,16.61,16.04,15.81,15.6,15.38,15.19,14.98,14.780000000000001,14.39,N/A,N/A -2012,11,17,4,30,102620,101400,100220,63.6,0,8.07,8.59,8.69,8.73,8.74,8.74,8.74,8.73,8.69,38.2,38.71,39.02,39.31,39.58,39.83,40.1,40.34,40.85,16.57,16,15.780000000000001,15.56,15.35,15.15,14.94,14.75,14.36,N/A,N/A -2012,11,17,5,30,102630,101410,100230,66.15,0,7.930000000000001,8.45,8.56,8.61,8.63,8.65,8.66,8.66,8.64,44.35,44.85,45.14,45.410000000000004,45.660000000000004,45.89,46.13,46.34,46.79,16.580000000000002,16.02,15.790000000000001,15.57,15.36,15.17,14.96,14.76,14.370000000000001,N/A,N/A -2012,11,17,6,30,102640,101420,100240,64.28,0,7.6000000000000005,8.09,8.19,8.24,8.26,8.27,8.27,8.27,8.25,47.38,47.65,47.81,47.96,48.1,48.22,48.35,48.47,48.71,16.53,15.99,15.77,15.55,15.34,15.15,14.94,14.74,14.35,N/A,N/A -2012,11,17,7,30,102660,101440,100260,63.27,0,7.99,8.53,8.64,8.69,8.71,8.73,8.72,8.72,8.700000000000001,48.56,48.94,49.18,49.410000000000004,49.620000000000005,49.81,50.02,50.2,50.59,16.42,15.870000000000001,15.65,15.43,15.22,15.030000000000001,14.82,14.63,14.23,N/A,N/A -2012,11,17,8,30,102650,101440,100250,63.21,0,7.640000000000001,8.14,8.23,8.27,8.290000000000001,8.3,8.3,8.3,8.27,51.47,51.870000000000005,52.120000000000005,52.35,52.550000000000004,52.74,52.94,53.13,53.5,16.39,15.84,15.620000000000001,15.41,15.200000000000001,15,14.790000000000001,14.6,14.200000000000001,N/A,N/A -2012,11,17,9,30,102650,101430,100250,60.92,0,7.43,7.9,7.98,8.02,8.040000000000001,8.040000000000001,8.040000000000001,8.03,8,50.85,51.17,51.370000000000005,51.550000000000004,51.72,51.870000000000005,52.04,52.19,52.49,16.35,15.81,15.59,15.38,15.17,14.97,14.76,14.57,14.18,N/A,N/A -2012,11,17,10,30,102670,101450,100260,61.54,0,6.97,7.38,7.45,7.48,7.49,7.49,7.49,7.48,7.45,52.33,52.76,53.03,53.27,53.51,53.71,53.94,54.14,54.57,16.2,15.66,15.44,15.23,15.02,14.83,14.620000000000001,14.43,14.030000000000001,N/A,N/A -2012,11,17,11,30,102660,101450,100260,65.25,0,6.73,7.11,7.18,7.21,7.22,7.22,7.21,7.21,7.18,51.89,52.410000000000004,52.72,53.01,53.28,53.52,53.79,54.03,54.53,16.09,15.56,15.34,15.13,14.92,14.72,14.51,14.32,13.93,N/A,N/A -2012,11,17,12,30,102690,101470,100290,67.5,0,6.48,6.8500000000000005,6.91,6.93,6.94,6.94,6.93,6.92,6.88,51.52,52.19,52.59,52.97,53.33,53.64,53.99,54.31,54.97,16.080000000000002,15.55,15.33,15.120000000000001,14.91,14.71,14.51,14.31,13.92,N/A,N/A -2012,11,17,13,30,102690,101470,100290,68.8,0,6.41,6.76,6.8100000000000005,6.83,6.84,6.83,6.82,6.8100000000000005,6.78,48.980000000000004,49.74,50.2,50.63,51.03,51.4,51.79,52.14,52.870000000000005,16.03,15.5,15.280000000000001,15.07,14.86,14.67,14.46,14.27,13.88,N/A,N/A -2012,11,17,14,30,102720,101500,100320,70.69,0,6.74,7.12,7.18,7.21,7.21,7.21,7.2,7.19,7.15,49.74,50.58,51.09,51.57,52.02,52.42,52.85,53.24,54.03,16.01,15.47,15.25,15.030000000000001,14.82,14.63,14.42,14.23,13.84,N/A,N/A -2012,11,17,15,30,102740,101520,100330,72.2,0,6.5200000000000005,6.88,6.93,6.95,6.95,6.95,6.93,6.92,6.88,49.57,50.53,51.11,51.64,52.15,52.61,53.1,53.550000000000004,54.47,15.98,15.44,15.22,15.01,14.8,14.61,14.4,14.21,13.82,N/A,N/A -2012,11,17,16,30,102730,101510,100320,72.13,0,6.11,6.42,6.47,6.48,6.48,6.47,6.45,6.44,6.4,46.980000000000004,47.95,48.52,49.050000000000004,49.56,50.02,50.52,50.980000000000004,51.93,15.97,15.44,15.22,15.02,14.81,14.620000000000001,14.41,14.22,13.83,N/A,N/A -2012,11,17,17,30,102720,101500,100310,72.55,0,5.66,5.95,5.99,6.01,6.01,6.01,6,5.99,5.96,46.74,47.75,48.36,48.92,49.47,49.96,50.480000000000004,50.96,51.96,16.15,15.64,15.42,15.21,15.01,14.82,14.61,14.42,14.030000000000001,N/A,N/A -2012,11,17,18,30,102710,101490,100310,71.59,0,5.28,5.53,5.57,5.58,5.58,5.57,5.5600000000000005,5.55,5.51,48.14,49.01,49.52,50.01,50.47,50.88,51.33,51.75,52.6,16.3,15.8,15.59,15.38,15.18,14.99,14.780000000000001,14.59,14.200000000000001,N/A,N/A -2012,11,17,19,30,102700,101480,100300,67.65,0,4.79,5.01,5.04,5.05,5.05,5.05,5.04,5.03,5.01,49.63,50.27,50.660000000000004,51.02,51.38,51.7,52.06,52.39,53.1,16.51,16.03,15.82,15.610000000000001,15.41,15.22,15.01,14.82,14.43,N/A,N/A -2012,11,17,20,30,102660,101440,100260,63.02,0,4.0200000000000005,4.2,4.23,4.24,4.24,4.25,4.24,4.24,4.23,52.32,52.67,52.85,53.02,53.18,53.33,53.51,53.660000000000004,54.02,16.84,16.37,16.17,15.97,15.76,15.57,15.370000000000001,15.18,14.790000000000001,N/A,N/A -2012,11,17,21,30,102650,101430,100250,58.9,0,3.83,4.01,4.04,4.0600000000000005,4.07,4.07,4.07,4.07,4.07,69.72,69.83,69.84,69.84,69.84,69.84,69.84,69.85000000000001,69.86,17.26,16.82,16.62,16.43,16.22,16.04,15.84,15.65,15.27,N/A,N/A -2012,11,17,22,30,102620,101410,100230,55.25,0,3.75,3.92,3.96,3.97,3.98,3.98,3.98,3.98,3.99,89.08,88.75,88.52,88.29,88.05,87.82000000000001,87.53,87.25,86.55,17.68,17.26,17.07,16.87,16.67,16.490000000000002,16.3,16.12,15.75,N/A,N/A -2012,11,17,23,30,102610,101400,100220,51.800000000000004,0,3.24,3.4,3.42,3.44,3.45,3.46,3.46,3.47,3.48,74.84,74.41,74.14,73.87,73.61,73.36,73.08,72.82000000000001,72.2,18.1,17.69,17.5,17.3,17.1,16.92,16.72,16.53,16.14,N/A,N/A -2012,11,18,0,30,102610,101400,100220,52.32,0,3.37,3.5500000000000003,3.58,3.6,3.62,3.63,3.64,3.65,3.66,61.730000000000004,61.64,61.56,61.47,61.38,61.31,61.22,61.13,60.93,18.36,17.96,17.77,17.57,17.37,17.18,16.98,16.79,16.4,N/A,N/A -2012,11,18,1,30,102590,101390,100210,53.21,0,3.93,4.16,4.21,4.25,4.2700000000000005,4.29,4.3100000000000005,4.32,4.3500000000000005,53.04,53.17,53.24,53.28,53.33,53.38,53.410000000000004,53.44,53.51,18.54,18.14,17.95,17.75,17.55,17.36,17.16,16.97,16.580000000000002,N/A,N/A -2012,11,18,2,30,102590,101380,100210,52.300000000000004,0,4.93,5.24,5.3,5.34,5.37,5.39,5.4,5.41,5.43,55.53,55.63,55.67,55.71,55.75,55.78,55.82,55.85,55.910000000000004,18.78,18.37,18.18,17.98,17.78,17.6,17.39,17.2,16.81,N/A,N/A -2012,11,18,3,30,102580,101380,100210,49.06,0,5.68,6.0600000000000005,6.13,6.17,6.2,6.21,6.22,6.23,6.23,51.27,51.79,52.15,52.49,52.83,53.13,53.44,53.730000000000004,54.32,19.06,18.66,18.47,18.27,18.07,17.88,17.68,17.490000000000002,17.09,N/A,N/A -2012,11,18,4,30,102570,101360,100190,54.81,0,5.67,5.97,6.01,6.0200000000000005,6.01,6,5.98,5.96,5.91,39.25,40.18,40.75,41.300000000000004,41.84,42.34,42.910000000000004,43.44,44.64,18.400000000000002,17.97,17.78,17.580000000000002,17.38,17.2,17,16.81,16.43,N/A,N/A -2012,11,18,5,30,102550,101350,100180,51.410000000000004,0,5.96,6.36,6.45,6.49,6.53,6.55,6.5600000000000005,6.58,6.59,67.65,68.13,68.45,68.74,69.02,69.27,69.53,69.78,70.27,19,18.6,18.41,18.21,18.01,17.82,17.61,17.42,17.03,N/A,N/A -2012,11,18,6,30,102540,101340,100160,53.36,0,6.91,7.38,7.48,7.53,7.55,7.57,7.57,7.57,7.5600000000000005,77.45,77.63,77.74,77.84,77.92,78.01,78.09,78.16,78.32000000000001,18.85,18.43,18.240000000000002,18.04,17.830000000000002,17.64,17.44,17.25,16.86,N/A,N/A -2012,11,18,7,30,102560,101350,100180,55.550000000000004,0,7.04,7.53,7.640000000000001,7.68,7.72,7.73,7.74,7.74,7.73,82.15,82.37,82.48,82.59,82.68,82.77,82.86,82.94,83.10000000000001,18.650000000000002,18.22,18.02,17.82,17.62,17.43,17.22,17.03,16.64,N/A,N/A -2012,11,18,8,30,102540,101330,100160,57.58,0,6.61,7.0600000000000005,7.15,7.2,7.22,7.24,7.25,7.25,7.25,84.64,84.85000000000001,84.99,85.12,85.25,85.37,85.49,85.60000000000001,85.82000000000001,18.51,18.080000000000002,17.88,17.67,17.47,17.28,17.080000000000002,16.89,16.490000000000002,N/A,N/A -2012,11,18,9,30,102530,101320,100150,58.910000000000004,0,6.18,6.58,6.66,6.7,6.72,6.74,6.74,6.74,6.74,86.4,86.55,86.65,86.75,86.84,86.92,87.01,87.09,87.26,18.43,18,17.81,17.6,17.400000000000002,17.21,17.01,16.82,16.42,N/A,N/A -2012,11,18,10,30,102540,101330,100160,59.050000000000004,0,6.0600000000000005,6.44,6.5200000000000005,6.55,6.5600000000000005,6.58,6.58,6.57,6.5600000000000005,90.21000000000001,90.35000000000001,90.43,90.52,90.60000000000001,90.68,90.77,90.85000000000001,91.03,18.47,18.04,17.84,17.64,17.43,17.240000000000002,17.04,16.85,16.45,N/A,N/A -2012,11,18,11,30,102530,101330,100160,60.15,0,6.19,6.58,6.66,6.7,6.72,6.74,6.74,6.75,6.74,89.24,89.45,89.57000000000001,89.7,89.8,89.9,90,90.10000000000001,90.3,18.41,17.98,17.78,17.580000000000002,17.38,17.19,16.98,16.79,16.4,N/A,N/A -2012,11,18,12,30,102540,101330,100160,61.34,0,5.86,6.23,6.3100000000000005,6.3500000000000005,6.38,6.4,6.41,6.41,6.42,90.71000000000001,90.78,90.85000000000001,90.92,91,91.07000000000001,91.15,91.22,91.39,18.400000000000002,17.97,17.77,17.57,17.37,17.18,16.97,16.78,16.39,N/A,N/A -2012,11,18,13,30,102540,101330,100160,59.730000000000004,0,5.14,5.44,5.51,5.54,5.5600000000000005,5.58,5.58,5.59,5.6000000000000005,101.84,101.01,100.55,100.15,99.78,99.45,99.12,98.81,98.24000000000001,18.47,18.05,17.85,17.650000000000002,17.45,17.26,17.06,16.87,16.47,N/A,N/A -2012,11,18,14,30,102560,101360,100180,61.730000000000004,0,5.09,5.4,5.48,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,5.62,94.82000000000001,94.9,94.88,94.83,94.78,94.74,94.71000000000001,94.67,94.63,18.5,18.09,17.900000000000002,17.7,17.490000000000002,17.3,17.1,16.91,16.51,N/A,N/A -2012,11,18,15,30,102570,101360,100190,64.01,0,5.07,5.32,5.36,5.36,5.36,5.36,5.3500000000000005,5.34,5.32,91.18,91.73,92.01,92.24,92.46000000000001,92.66,92.89,93.10000000000001,93.54,18.45,18.04,17.84,17.64,17.45,17.26,17.06,16.87,16.48,N/A,N/A -2012,11,18,16,30,102550,101350,100180,62.95,0,4.3500000000000005,4.61,4.67,4.7,4.73,4.75,4.76,4.78,4.8,98.59,97.55,96.99000000000001,96.51,96.09,95.73,95.39,95.08,94.52,18.59,18.18,17.990000000000002,17.79,17.59,17.400000000000002,17.19,17,16.61,N/A,N/A -2012,11,18,17,30,102540,101340,100170,66.34,0,4.89,5.14,5.18,5.19,5.19,5.19,5.18,5.17,5.14,85.45,86.04,86.44,86.8,87.14,87.44,87.74,88.02,88.59,18.5,18.09,17.89,17.69,17.490000000000002,17.3,17.09,16.9,16.51,N/A,N/A -2012,11,18,18,30,102540,101330,100160,64.99,0,4.62,4.88,4.93,4.96,4.97,4.99,4.99,5,5,90.44,90.15,90.03,89.94,89.87,89.82000000000001,89.77,89.72,89.64,18.54,18.14,17.94,17.740000000000002,17.53,17.35,17.14,16.95,16.56,N/A,N/A -2012,11,18,19,30,102520,101310,100140,63.86,0,4.68,4.93,4.97,4.98,4.99,4.99,4.98,4.98,4.96,82.43,82.81,83.02,83.21000000000001,83.39,83.55,83.73,83.89,84.25,18.53,18.12,17.93,17.73,17.53,17.34,17.13,16.95,16.55,N/A,N/A -2012,11,18,20,30,102500,101290,100120,64.63,0,4.86,5.11,5.14,5.15,5.15,5.14,5.12,5.11,5.07,84.44,84.83,85.05,85.25,85.45,85.63,85.82000000000001,86,86.37,18.490000000000002,18.080000000000002,17.89,17.68,17.490000000000002,17.3,17.09,16.91,16.51,N/A,N/A -2012,11,18,21,30,102470,101270,100100,63.4,0,4.91,5.15,5.19,5.19,5.19,5.18,5.16,5.14,5.1000000000000005,84.29,84.61,84.77,84.93,85.08,85.21000000000001,85.37,85.51,85.83,18.41,18,17.8,17.6,17.400000000000002,17.21,17.01,16.82,16.43,N/A,N/A -2012,11,18,22,30,102460,101260,100090,61.550000000000004,0,5.17,5.44,5.48,5.49,5.49,5.48,5.47,5.45,5.4,91.92,92.02,92.06,92.09,92.12,92.15,92.18,92.21000000000001,92.27,18.45,18.03,17.84,17.64,17.44,17.26,17.06,16.87,16.48,N/A,N/A -2012,11,18,23,30,102450,101250,100080,55.22,0,5.0600000000000005,5.33,5.37,5.39,5.39,5.39,5.38,5.37,5.34,97.96000000000001,97.89,97.83,97.75,97.69,97.62,97.53,97.45,97.23,18.650000000000002,18.25,18.06,17.86,17.67,17.48,17.28,17.1,16.72,N/A,N/A -2012,11,19,0,30,102450,101240,100070,52.42,0,5.45,5.78,5.8500000000000005,5.88,5.9,5.91,5.92,5.92,5.92,95.78,95.56,95.44,95.31,95.18,95.06,94.91,94.77,94.45,18.78,18.38,18.19,17.990000000000002,17.79,17.61,17.41,17.22,16.830000000000002,N/A,N/A -2012,11,19,1,30,102450,101240,100070,49.32,0,6.07,6.48,6.57,6.61,6.640000000000001,6.67,6.68,6.69,6.7,94.88,94.74,94.64,94.53,94.43,94.34,94.23,94.12,93.87,18.98,18.580000000000002,18.39,18.2,18,17.81,17.61,17.42,17.03,N/A,N/A -2012,11,19,2,30,102450,101250,100080,51.660000000000004,0,5.91,6.3100000000000005,6.390000000000001,6.43,6.45,6.47,6.48,6.49,6.49,92,91.94,91.88,91.82000000000001,91.76,91.71000000000001,91.65,91.59,91.47,19.03,18.63,18.45,18.25,18.05,17.86,17.66,17.47,17.080000000000002,N/A,N/A -2012,11,19,3,30,102460,101250,100080,52.94,0,6.08,6.49,6.58,6.62,6.65,6.67,6.68,6.69,6.69,93.58,93.65,93.68,93.71000000000001,93.73,93.75,93.78,93.8,93.83,19.06,18.66,18.47,18.27,18.07,17.88,17.68,17.490000000000002,17.1,N/A,N/A -2012,11,19,4,30,102440,101230,100070,54.29,0,5.46,5.83,5.91,5.95,5.98,6,6.0200000000000005,6.03,6.05,96.01,96.26,96.4,96.52,96.63,96.72,96.82000000000001,96.91,97.08,19.06,18.68,18.490000000000002,18.28,18.09,17.900000000000002,17.69,17.51,17.11,N/A,N/A -2012,11,19,5,30,102430,101230,100060,56.2,0,5.25,5.59,5.67,5.72,5.75,5.78,5.8,5.8100000000000005,5.83,106.25,106.01,105.84,105.68,105.54,105.42,105.3,105.19,104.97,19.17,18.79,18.6,18.400000000000002,18.2,18.01,17.8,17.62,17.22,N/A,N/A -2012,11,19,6,30,102440,101230,100070,52.88,0,4.8500000000000005,5.14,5.2,5.22,5.24,5.25,5.26,5.26,5.26,106.47,106.48,106.53,106.59,106.64,106.67,106.71000000000001,106.75,106.81,19.25,18.87,18.69,18.490000000000002,18.29,18.1,17.900000000000002,17.71,17.32,N/A,N/A -2012,11,19,7,30,102450,101250,100080,56.22,0,4.22,4.47,4.53,4.5600000000000005,4.59,4.61,4.63,4.64,4.67,110.37,110.39,110.45,110.54,110.61,110.69,110.77,110.84,111.02,19.17,18.8,18.62,18.42,18.22,18.03,17.830000000000002,17.64,17.25,N/A,N/A -2012,11,19,8,30,102440,101230,100070,63.4,0,4.25,4.5200000000000005,4.58,4.62,4.65,4.67,4.69,4.7,4.72,113.85000000000001,113.96000000000001,114.03,114.09,114.14,114.19,114.23,114.27,114.36,19.14,18.76,18.580000000000002,18.38,18.18,17.990000000000002,17.79,17.6,17.2,N/A,N/A -2012,11,19,9,30,102430,101230,100070,63.53,0,4.15,4.39,4.45,4.48,4.5,4.51,4.5200000000000005,4.5200000000000005,4.53,110.11,110.4,110.52,110.60000000000001,110.67,110.73,110.77,110.8,110.86,19.22,18.85,18.66,18.46,18.26,18.07,17.87,17.68,17.29,N/A,N/A -2012,11,19,10,30,102420,101210,100050,59.46,0,4.04,4.25,4.28,4.3,4.32,4.32,4.32,4.33,4.33,112.99000000000001,113.16,113.3,113.43,113.55,113.66,113.78,113.9,114.12,19.29,18.93,18.740000000000002,18.54,18.34,18.16,17.95,17.77,17.38,N/A,N/A -2012,11,19,11,30,102420,101220,100060,62.26,0,3.5500000000000003,3.74,3.79,3.81,3.83,3.85,3.86,3.87,3.88,111.17,111.41,111.56,111.72,111.86,111.98,112.12,112.26,112.53,19.31,18.95,18.77,18.57,18.37,18.18,17.98,17.8,17.400000000000002,N/A,N/A -2012,11,19,12,30,102420,101220,100050,68.56,0,3.5100000000000002,3.68,3.71,3.73,3.74,3.74,3.74,3.74,3.74,111.74000000000001,112.10000000000001,112.3,112.48,112.63,112.77,112.92,113.04,113.3,19.22,18.86,18.67,18.47,18.27,18.09,17.88,17.7,17.31,N/A,N/A -2012,11,19,13,30,102420,101220,100050,72.36,0,3.95,4.15,4.19,4.21,4.22,4.22,4.22,4.22,4.22,93.39,94.27,94.83,95.36,95.86,96.31,96.76,97.18,98.03,19.2,18.830000000000002,18.650000000000002,18.44,18.25,18.06,17.86,17.67,17.28,N/A,N/A -2012,11,19,14,30,102450,101250,100080,66.86,0,3.98,4.2,4.25,4.2700000000000005,4.29,4.3,4.3100000000000005,4.3100000000000005,4.32,117.52,117.04,116.8,116.58,116.4,116.24000000000001,116.09,115.96000000000001,115.68,19.38,19.02,18.84,18.64,18.44,18.25,18.05,17.86,17.47,N/A,N/A -2012,11,19,15,30,102440,101240,100070,72.56,0,3.75,3.94,3.97,3.99,3.99,3.99,3.99,3.98,3.96,102.62,102.96000000000001,103.25,103.53,103.79,104.03,104.29,104.51,105,19.25,18.88,18.69,18.5,18.3,18.11,17.91,17.72,17.330000000000002,N/A,N/A -2012,11,19,16,30,102440,101240,100070,75.72,0,3.74,3.9,3.92,3.92,3.91,3.9,3.88,3.87,3.83,98.83,99.09,99.24000000000001,99.4,99.54,99.67,99.8,99.92,100.19,19.14,18.77,18.59,18.38,18.19,18,17.79,17.61,17.22,N/A,N/A -2012,11,19,17,30,102430,101230,100070,75.86,0,3.3200000000000003,3.48,3.52,3.54,3.56,3.56,3.5700000000000003,3.58,3.59,87.54,88.09,88.42,88.7,88.95,89.17,89.38,89.57000000000001,89.98,19.12,18.75,18.56,18.36,18.16,17.97,17.77,17.580000000000002,17.19,N/A,N/A -2012,11,19,18,30,102420,101220,100050,76.16,0,3.23,3.38,3.41,3.42,3.43,3.44,3.44,3.44,3.44,83.83,83.78,83.82000000000001,83.83,83.83,83.81,83.77,83.72,83.63,19.12,18.75,18.57,18.36,18.17,17.98,17.78,17.59,17.2,N/A,N/A -2012,11,19,19,30,102390,101190,100030,76,0,2.8000000000000003,2.91,2.93,2.93,2.93,2.92,2.92,2.91,2.89,83.58,83.45,83.39,83.38,83.39,83.41,83.44,83.48,83.67,19.13,18.76,18.580000000000002,18.38,18.18,18,17.79,17.61,17.22,N/A,N/A -2012,11,19,20,30,102340,101150,99980,78.15,0,3.31,3.48,3.5100000000000002,3.52,3.5300000000000002,3.5300000000000002,3.5300000000000002,3.5300000000000002,3.5300000000000002,92.84,92.97,93.08,93.19,93.3,93.4,93.5,93.59,93.79,19.17,18.79,18.61,18.41,18.21,18.02,17.82,17.63,17.240000000000002,N/A,N/A -2012,11,19,21,30,102330,101130,99960,80.89,0,3.66,3.8200000000000003,3.84,3.83,3.8200000000000003,3.81,3.79,3.7800000000000002,3.73,97.52,97.75,97.91,98.08,98.25,98.41,98.59,98.77,99.18,19.07,18.7,18.51,18.31,18.11,17.92,17.72,17.54,17.150000000000002,N/A,N/A -2012,11,19,22,30,102290,101100,99930,79.84,0,3.42,3.59,3.62,3.63,3.64,3.64,3.64,3.63,3.62,103.43,103.79,103.99000000000001,104.21000000000001,104.44,104.65,104.89,105.11,105.66,19.13,18.77,18.580000000000002,18.39,18.19,18,17.8,17.62,17.23,N/A,N/A -2012,11,19,23,30,102270,101070,99910,77.08,0,3.56,3.72,3.75,3.7600000000000002,3.7600000000000002,3.75,3.74,3.73,3.7,119.26,119.38,119.49000000000001,119.58,119.68,119.78,119.89,119.99000000000001,120.22,19.36,19,18.82,18.62,18.43,18.240000000000002,18.04,17.85,17.47,N/A,N/A -2012,11,20,0,30,102280,101090,99930,79.16,0,3.15,3.3000000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,3.31,3.29,120.97,121.18,121.34,121.48,121.62,121.75,121.88,122,122.27,19.39,19.03,18.85,18.650000000000002,18.46,18.27,18.07,17.89,17.5,N/A,N/A -2012,11,20,1,30,102270,101070,99910,79.79,0,2.66,2.7600000000000002,2.7800000000000002,2.7800000000000002,2.7800000000000002,2.77,2.7600000000000002,2.7600000000000002,2.74,119.21000000000001,119.53,119.78,120,120.22,120.43,120.65,120.85000000000001,121.3,19.39,19.04,18.86,18.66,18.47,18.28,18.080000000000002,17.89,17.51,N/A,N/A -2012,11,20,2,30,102280,101080,99920,79.89,0,2.36,2.44,2.44,2.44,2.43,2.42,2.41,2.39,2.36,119.4,119.64,119.82000000000001,119.99000000000001,120.15,120.29,120.45,120.59,120.87,19.400000000000002,19.05,18.87,18.68,18.48,18.29,18.1,17.91,17.53,N/A,N/A -2012,11,20,3,30,102260,101060,99900,78.52,0,1.95,2.0100000000000002,2.02,2.02,2.0100000000000002,2.0100000000000002,2,1.99,1.97,109.97,110.61,110.96000000000001,111.3,111.62,111.94,112.26,112.56,113.24000000000001,19.41,19.07,18.900000000000002,18.7,18.5,18.32,18.12,17.93,17.55,N/A,N/A -2012,11,20,4,30,102240,101050,99890,76.77,0,1.77,1.83,1.83,1.82,1.82,1.81,1.8,1.79,1.77,111.9,112,112.07000000000001,112.14,112.19,112.23,112.27,112.3,112.36,19.45,19.12,18.94,18.740000000000002,18.55,18.36,18.16,17.98,17.59,N/A,N/A -2012,11,20,5,30,102240,101040,99880,75.4,0,1.74,1.79,1.79,1.79,1.79,1.78,1.77,1.77,1.75,104.37,104.82000000000001,105.06,105.3,105.53,105.74000000000001,105.96000000000001,106.16,106.63,19.47,19.13,18.95,18.75,18.56,18.37,18.17,17.990000000000002,17.6,N/A,N/A -2012,11,20,6,30,102240,101050,99890,77.19,0,1.53,1.57,1.57,1.56,1.55,1.54,1.54,1.53,1.5,79.82000000000001,79.94,80.05,80.15,80.24,80.33,80.42,80.5,80.7,19.42,19.09,18.91,18.71,18.52,18.330000000000002,18.13,17.95,17.56,N/A,N/A -2012,11,20,7,30,102240,101040,99880,75.88,0,1.21,1.22,1.21,1.2,1.19,1.17,1.16,1.1500000000000001,1.12,86.9,87.10000000000001,87.31,87.54,87.74,87.93,88.16,88.38,88.89,19.43,19.1,18.92,18.72,18.53,18.34,18.14,17.96,17.57,N/A,N/A -2012,11,20,8,30,102230,101030,99870,75.06,0,1.78,1.82,1.81,1.79,1.78,1.76,1.74,1.72,1.68,88.18,88.49,88.68,88.88,89.07000000000001,89.24,89.43,89.61,90.02,19.41,19.080000000000002,18.900000000000002,18.7,18.5,18.32,18.12,17.94,17.55,N/A,N/A -2012,11,20,9,30,102240,101040,99880,74.45,0,1.35,1.36,1.35,1.32,1.3,1.28,1.26,1.24,1.18,76.29,76.99,77.46000000000001,77.93,78.39,78.83,79.31,79.76,80.83,19.400000000000002,19.07,18.89,18.69,18.5,18.31,18.11,17.93,17.54,N/A,N/A -2012,11,20,10,30,102240,101040,99880,73.79,0,1.31,1.32,1.31,1.29,1.28,1.26,1.24,1.22,1.17,77.87,77.7,77.66,77.62,77.58,77.54,77.52,77.49,77.43,19.400000000000002,19.07,18.89,18.69,18.5,18.32,18.12,17.94,17.55,N/A,N/A -2012,11,20,11,30,102260,101060,99900,75.23,0,1.23,1.25,1.24,1.22,1.2,1.19,1.17,1.1500000000000001,1.1,72.5,72.92,73.14,73.36,73.56,73.75,73.93,74.09,74.37,19.39,19.06,18.88,18.68,18.490000000000002,18.31,18.11,17.92,17.54,N/A,N/A -2012,11,20,12,30,102260,101070,99900,74.74,0,2.06,2.12,2.12,2.11,2.09,2.08,2.06,2.04,2,62.52,62.49,62.54,62.58,62.61,62.620000000000005,62.61,62.59,62.5,19.44,19.1,18.93,18.73,18.53,18.35,18.150000000000002,17.96,17.580000000000002,N/A,N/A -2012,11,20,13,30,102290,101090,99930,75.41,0,2.11,2.17,2.17,2.15,2.14,2.12,2.11,2.09,2.04,60.17,60.18,60.17,60.15,60.11,60.08,60.01,59.94,59.64,19.43,19.09,18.91,18.72,18.52,18.34,18.14,17.96,17.57,N/A,N/A -2012,11,20,14,30,102280,101090,99920,76.09,0,1.49,1.51,1.5,1.48,1.46,1.44,1.42,1.3900000000000001,1.32,84.66,85.4,85.8,86.23,86.65,87.05,87.5,87.91,88.82000000000001,19.39,19.06,18.89,18.69,18.5,18.31,18.11,17.93,17.56,N/A,N/A -2012,11,20,15,30,102310,101110,99950,77.97,0,3.06,3.16,3.17,3.16,3.14,3.12,3.1,3.0700000000000003,3.02,52.230000000000004,52.26,52.24,52.230000000000004,52.19,52.160000000000004,52.1,52.04,51.82,19.39,19.04,18.86,18.67,18.47,18.28,18.09,17.91,17.52,N/A,N/A -2012,11,20,16,30,102280,101080,99920,85.92,0,2.62,2.68,2.67,2.64,2.61,2.58,2.5500000000000003,2.5100000000000002,2.42,62.53,62.7,62.82,62.93,63.02,63.11,63.18,63.24,63.26,19.12,18.77,18.59,18.39,18.2,18.02,17.82,17.64,17.26,N/A,N/A -2012,11,20,17,30,102250,101060,99900,87.05,0,2.27,2.31,2.29,2.25,2.22,2.18,2.12,2.07,1.85,74.21000000000001,74.57000000000001,74.72,74.88,75.02,75.14,75.25,75.34,74.28,19,18.64,18.46,18.26,18.07,17.89,17.7,17.52,17.17,N/A,N/A -2012,11,20,18,30,102230,101030,99870,85.43,0,1.48,1.48,1.45,1.42,1.3800000000000001,1.34,1.29,1.25,1.1,83.7,83.60000000000001,83.73,83.83,83.94,84.05,84.12,84.17,84.11,19.13,18.78,18.6,18.400000000000002,18.21,18.03,17.830000000000002,17.650000000000002,17.28,N/A,N/A -2012,11,20,19,30,102240,101040,99880,84.46000000000001,0,2.5100000000000002,2.56,2.5500000000000003,2.5100000000000002,2.48,2.44,2.4,2.35,2.17,76.17,76.39,76.38,76.37,76.36,76.34,76.23,76.12,74.8,19.25,18.88,18.7,18.5,18.31,18.13,17.93,17.75,17.39,N/A,N/A -2012,11,20,20,30,102200,101010,99850,82.09,0,1.77,1.76,1.72,1.6600000000000001,1.57,1.48,1.19,0.97,1.4000000000000001,107.44,106.82000000000001,106.26,105.5,104.15,102.54,93.23,83.31,348.28000000000003,19.41,19.07,18.89,18.7,18.52,18.35,18.2,18.080000000000002,18.18,N/A,N/A -2012,11,20,21,30,102190,100990,99840,80.76,0,0.68,0.63,0.58,0.5,0.27,0.11,0.36,1.7,2.2,150.28,151.6,152.48,153.96,186.02,209.42000000000002,231.21,325.22,326.69,19.67,19.35,19.18,18.990000000000002,18.830000000000002,18.68,18.77,18.900000000000002,19.04,N/A,N/A -2012,11,20,22,30,102170,100980,99820,81.34,0,1.3,1.29,1.25,1.18,1.01,0.8200000000000001,1.06,1.43,2.12,184.89000000000001,186.16,187.57,189.8,199.99,212.05,254.69,311.04,318.65000000000003,19.84,19.53,19.36,19.18,19.04,18.94,19.09,19.27,19.48,N/A,N/A -2012,11,20,23,30,102180,100980,99830,80.52,0,1.27,1.25,1.21,1.1300000000000001,1.09,1.07,1.28,1.6,2.37,203.59,206.08,209.23000000000002,215.34,240.75,278.5,296.98,311.89,323.71,20,19.7,19.55,19.400000000000002,19.38,19.46,19.490000000000002,19.51,19.96,N/A,N/A -2012,11,21,0,30,102190,101000,99840,80.75,0,1.61,1.61,1.54,1.41,0.98,0.6,0.81,1.18,1.79,177.5,178.26,179.95000000000002,183.16,242.09,298.22,313.1,325.29,333.29,20.16,19.86,19.72,19.580000000000002,19.650000000000002,19.82,20.05,20.27,20.400000000000002,N/A,N/A -2012,11,21,1,30,102200,101010,99860,82.47,0,1.71,1.7,1.61,1.44,1.08,0.74,0.91,1.23,1.98,176.45000000000002,177.08,178.05,179.93,231.36,289.68,309.63,326.5,337.77,20.16,19.86,19.71,19.55,19.64,19.86,20.09,20.29,20.55,N/A,N/A -2012,11,21,2,30,102210,101020,99860,81.35000000000001,0,1.73,1.75,1.73,1.71,1.3900000000000001,1.02,1.11,1.3,2.0300000000000002,209.49,209.92000000000002,210.22,210.44,233.19,259.68,285.81,313.15000000000003,333.21,20.330000000000002,20.03,19.84,19.6,19.57,19.650000000000002,19.92,20.21,20.71,N/A,N/A -2012,11,21,3,30,102210,101020,99870,80.87,0,2.18,2.24,2.22,2.19,2.14,2.09,1.8,1.54,1.07,199.92000000000002,201.04,201.86,202.9,204.35,205.96,215.1,224.44,265.75,20.47,20.17,20.01,19.82,19.64,19.46,19.330000000000002,19.23,19.31,N/A,N/A -2012,11,21,4,30,102220,101030,99880,83.18,0,2.24,2.33,2.33,2.31,2.29,2.27,2.25,2.22,1.77,200.23000000000002,201.62,202.56,203.65,205.01,206.48000000000002,209.88,213.93,248.51000000000002,20.38,20.080000000000002,19.91,19.72,19.53,19.35,19.18,19.02,19.01,N/A,N/A -2012,11,21,5,30,102220,101030,99880,83.65,0,2.3000000000000003,2.41,2.42,2.43,2.43,2.43,2.42,2.42,2.34,221.03,222.12,222.84,223.69,224.77,225.96,228.95000000000002,232.20000000000002,251.86,20.44,20.14,19.97,19.78,19.59,19.42,19.25,19.1,18.990000000000002,N/A,N/A -2012,11,21,6,30,102240,101050,99900,82.27,0,2.04,2.14,2.16,2.18,2.19,2.2,2.22,2.23,2.31,242.79,243.51,243.96,244.46,245.01,245.57,246.38,247.19,252.25,20.64,20.34,20.17,19.98,19.79,19.61,19.41,19.23,18.900000000000002,N/A,N/A -2012,11,21,7,30,102260,101070,99920,83.56,0,2.2,2.33,2.36,2.38,2.4,2.42,2.44,2.46,2.5500000000000003,268.53000000000003,268.65,268.7,268.77,268.88,269.01,269.23,269.46,271,20.73,20.43,20.26,20.06,19.87,19.69,19.490000000000002,19.31,18.94,N/A,N/A -2012,11,21,8,30,102270,101080,99920,85.75,0,2.65,2.82,2.86,2.88,2.9,2.91,2.93,2.94,2.99,293.47,293.18,292.97,292.77,292.56,292.36,292.16,291.99,291.51,20.78,20.48,20.31,20.11,19.92,19.740000000000002,19.54,19.36,18.97,N/A,N/A -2012,11,21,9,30,102280,101090,99940,92.09,0,2.81,2.86,2.83,2.7600000000000002,2.68,2.59,2.56,2.5500000000000003,2.81,316.48,315.56,314.65000000000003,313.25,306.8,297.83,290.72,284.75,283.52,20.13,19.81,19.650000000000002,19.47,19.35,19.26,19.21,19.18,19.080000000000002,N/A,N/A -2012,11,21,10,30,102300,101110,99950,88.71000000000001,0,3.58,3.69,3.67,3.63,3.59,3.5300000000000002,3.49,3.46,3.58,322.27,322.36,322.41,322.46,322.41,322.31,319.87,317.23,313.38,19.98,19.650000000000002,19.48,19.3,19.12,18.97,18.95,18.97,19.17,N/A,N/A -2012,11,21,11,30,102320,101130,99970,87.28,0,4.16,4.32,4.3100000000000005,4.2700000000000005,4.22,4.17,4.11,4.07,4.3100000000000005,333.03000000000003,332.63,332.35,332.01,331.58,331.11,330.06,328.94,325.15000000000003,19.75,19.400000000000002,19.23,19.04,18.86,18.68,18.51,18.38,18.72,N/A,N/A -2012,11,21,12,30,102360,101160,100000,90.25,0,4.23,4.41,4.42,4.41,4.41,4.41,4.5,4.61,4.82,337.82,337.87,337.89,337.93,338.01,338.1,338.27,338.40000000000003,337.14,19.400000000000002,19.04,18.86,18.68,18.5,18.34,18.23,18.17,18.63,N/A,N/A -2012,11,21,13,30,102370,101170,100010,91.38,0,4.73,4.94,4.96,4.94,4.93,4.91,4.95,5.0200000000000005,5.58,349.64,349.63,349.59000000000003,349.54,349.45,349.36,349.06,348.66,346.23,19.31,18.94,18.76,18.57,18.39,18.22,18.07,17.95,18.38,N/A,N/A -2012,11,21,14,30,102400,101190,100030,99.34,0,4.37,4.43,4.38,4.3100000000000005,4.46,4.72,5.11,5.49,5.84,8.3,6.93,5.41,3.08,357.5,350.31,348.27,347.33,350.27,17.96,17.59,17.42,17.26,17.44,17.77,18.19,18.580000000000002,19.1,N/A,N/A -2012,11,21,15,30,102410,101210,100050,99.35000000000001,0,4.04,4.13,4.11,4.09,4.46,5.03,5.42,5.74,5.89,8.45,8.06,7.65,7.0600000000000005,3.14,357.6,354.89,353.2,356.08,17.82,17.44,17.240000000000002,17.01,17.23,17.63,18.26,18.8,19.03,N/A,N/A -2012,11,21,16,30,102400,101190,100030,99.35000000000001,0,3.73,3.83,3.8200000000000003,3.81,4.07,4.46,4.97,5.44,5.59,0.59,0.35000000000000003,0.21,0.06,359.79,359.47,1.01,2.48,1.75,17.830000000000002,17.45,17.27,17.07,17.06,17.13,18.26,19.3,19.43,N/A,N/A -2012,11,21,17,30,102370,101160,100010,99.33,0,3.16,3.22,3.21,3.19,3.6,4.26,4.7,5.0600000000000005,5.15,359.04,358.73,358.47,358.14,357.81,357.44,358.96,0.6900000000000001,4.14,18.02,17.67,17.48,17.25,17.580000000000002,18.12,18.830000000000002,19.42,19.62,N/A,N/A -2012,11,21,18,30,102340,101140,99980,99.41,0,2.58,2.63,2.63,2.65,3.23,4.22,4.5,4.63,4.61,356.6,356.16,355.76,355.2,355.41,356.07,359.06,2.17,8.790000000000001,18.18,17.830000000000002,17.63,17.38,18.150000000000002,19.31,19.66,19.85,19.92,N/A,N/A -2012,11,21,19,30,102310,101110,99960,93.75,0,1.29,1.37,1.6300000000000001,2.39,2.86,3.09,3.34,3.58,3.95,341.68,343.76,346.37,351.98,358.55,4.94,9.49,13.4,17.88,19.23,18.92,18.92,19.1,19.51,20.01,20.2,20.31,20.240000000000002,N/A,N/A -2012,11,21,20,30,102260,101070,99920,90.58,0,0.6900000000000001,0.67,0.71,0.89,1.11,1.3900000000000001,1.6400000000000001,1.9000000000000001,2.31,264.31,269.11,288.19,339.44,7.44,21.29,26.330000000000002,29.43,29.93,20.04,19.740000000000002,19.79,20.11,20.44,20.76,20.85,20.88,20.79,N/A,N/A -2012,11,21,21,30,102230,101040,99890,88.22,0,1.44,1.41,1.25,0.96,0.68,0.47000000000000003,0.44,0.44,0.72,236.54,238.22,243.18,252.48000000000002,266.95,279.75,306.09000000000003,332.7,357.71,20.48,20.19,20.2,20.42,20.71,21.02,21.1,21.13,21.04,N/A,N/A -2012,11,21,22,30,102210,101020,99870,85.77,0,1.81,1.78,1.6500000000000001,1.45,1.27,1.12,1.05,1.01,0.98,219.70000000000002,221.77,226.27,234.65,242.33,249.03,256.93,264.14,280.5,20.79,20.57,20.66,21.01,21.240000000000002,21.39,21.37,21.32,21.14,N/A,N/A -2012,11,21,23,30,102200,101010,99870,87.5,0,2.35,2.33,2.22,2.04,1.81,1.6,1.47,1.37,1.3,204.24,205.35,208.91,216.12,222.78,228.45000000000002,235.64000000000001,242.11,256.47,20.75,20.490000000000002,20.5,20.71,20.96,21.22,21.240000000000002,21.22,21.03,N/A,N/A -2012,11,22,0,30,102210,101020,99870,90.28,0,2.79,2.73,2.5500000000000003,2.27,1.94,1.62,1.36,1.1500000000000001,0.97,186.94,187.34,188.34,190.26,193.59,197.07,204.77,211.73000000000002,236.94,20.5,20.22,20.21,20.37,20.72,21.16,21.27,21.31,21.11,N/A,N/A -2012,11,22,1,30,102210,101020,99870,99.49000000000001,0.4,3.2800000000000002,3.38,3.23,2.93,2.68,2.48,2.24,2.0300000000000002,1.6400000000000001,181.22,189.14000000000001,190.49,187.78,186.67000000000002,186.3,189.15,192.09,201.63,18.17,19.31,19.990000000000002,20.59,20.96,21.21,21.26,21.28,21.1,N/A,N/A -2012,11,22,2,30,102240,101040,99890,99.44,0,2.8000000000000003,2.77,2.72,2.68,2.59,2.49,2.33,2.18,1.8900000000000001,190.91,191.55,193.16,196.47,198.51,199.84,203.3,206.74,217.77,17.900000000000002,17.43,17.86,19.17,20.04,20.67,20.89,21.01,20.93,N/A,N/A -2012,11,22,3,30,102220,101020,99870,99.43,0.4,2.42,2.43,2.58,2.96,3.02,2.94,2.69,2.47,2.14,202.19,203.24,205.32,209.33,212.3,214.43,216.89000000000001,219.26,229.04,17.93,17.42,17.84,18.95,19.84,20.57,20.78,20.89,20.79,N/A,N/A -2012,11,22,4,30,102220,101020,99870,99.31,0,2.19,2.2800000000000002,2.35,2.48,2.71,3.0100000000000002,2.94,2.81,2.43,221.43,221.47,221.95000000000002,223.01,225.79,229.47,230.83,231.86,237.9,18.12,17.71,17.5,17.28,18.22,19.61,20.22,20.61,20.6,N/A,N/A -2012,11,22,5,30,102210,101010,99860,99.42,0,2.58,2.66,2.7,2.7600000000000002,3.04,3.45,3.2600000000000002,3.0300000000000002,2.57,225.88,226.36,226.86,227.67000000000002,229.84,232.84,234.49,235.92000000000002,242.35,18.3,17.92,17.68,17.35,18.080000000000002,19.27,20.01,20.580000000000002,20.68,N/A,N/A -2012,11,22,6,30,102220,101020,99860,99.34,0,2.0100000000000002,2.08,2.11,2.16,2.37,2.69,2.98,3.23,2.87,223.44,224.05,224.41,224.88,226.52,228.85,232.41,236.02,241.59,18.48,18.150000000000002,17.97,17.740000000000002,17.57,17.42,18.7,19.95,20.29,N/A,N/A -2012,11,22,7,30,102220,101020,99860,99.25,0.4,1.47,1.52,1.54,1.57,1.77,2.09,2.62,3.2,3.4,202.53,202.09,202.03,202.04,207.13,215.44,224.86,234.74,243.48000000000002,18.43,18.11,17.94,17.740000000000002,17.63,17.56,18.14,18.75,19.57,N/A,N/A -2012,11,22,8,30,102220,101020,99860,99.24000000000001,0,0.93,1.02,1.06,1.11,1.18,1.27,1.51,1.83,3.38,222.89000000000001,223.97,224.83,225.91,227.44,229.19,233.03,237.56,250.99,18.48,18.16,18.01,17.85,17.67,17.490000000000002,17.19,17.05,18.64,N/A,N/A -2012,11,22,9,30,102210,101010,99850,99.36,0,1.96,1.8900000000000001,1.8,1.7,1.59,1.49,1.37,1.27,1.1400000000000001,117.76,121.53,124.2,127.37,131.53,135.75,143.34,150.8,176.71,18.42,18.09,17.94,17.81,17.67,17.55,17.400000000000002,17.26,16.93,N/A,N/A -2012,11,22,10,30,102220,101020,99860,94.91,0.7000000000000001,1.97,1.8800000000000001,1.79,1.69,1.58,1.47,1.33,1.21,0.87,156.82,156.15,155.5,154.64000000000001,153.38,152.05,150.14000000000001,148.41,144.38,18.44,18.07,17.89,17.71,17.52,17.35,17.18,17.03,16.77,N/A,N/A -2012,11,22,11,30,102220,101020,99860,95.15,0.4,1.21,1.17,1.1300000000000001,1.09,1.04,0.99,0.93,0.87,0.71,126.42,131.21,134.28,137.32,140.36,143.13,147.29,151.31,169.5,18.17,17.8,17.62,17.43,17.240000000000002,17.080000000000002,16.92,16.78,16.55,N/A,N/A -2012,11,22,12,30,102240,101040,99880,95.93,0.7000000000000001,1.96,1.98,1.96,1.93,1.8900000000000001,1.84,1.76,1.69,1.33,127.76,128.2,128.51,128.87,129.14000000000001,129.34,129.03,128.53,127.64,18.07,17.7,17.53,17.34,17.16,17,16.85,16.72,16.47,N/A,N/A -2012,11,22,13,30,102240,101040,99870,95.51,0.7000000000000001,1.97,1.8900000000000001,1.8,1.71,1.61,1.51,1.4000000000000001,1.32,1.52,120.38,119.39,119.16,119.32000000000001,120.43,121.81,126.91,133.24,164.52,17.8,17.43,17.240000000000002,17.06,16.87,16.69,16.5,16.32,16.35,N/A,N/A -2012,11,22,14,30,102270,101070,99910,96.03,1.1,2.44,2.5,2.49,2.47,2.44,2.42,2.37,2.33,2.58,114.85000000000001,114.43,114.08,113.75,113.37,112.98,112.39,114.04,148.08,18.14,17.76,17.580000000000002,17.39,17.19,17.01,16.79,16.62,16.86,N/A,N/A -2012,11,22,15,30,102280,101080,99910,95.87,0.7000000000000001,2.62,2.71,2.71,2.71,2.7,2.69,2.66,2.64,2.94,107.94,109.25,110.2,111.24000000000001,112.49000000000001,113.74000000000001,115.48,117.99000000000001,141.07,18.29,17.93,17.75,17.56,17.38,17.2,17.01,16.84,16.8,N/A,N/A -2012,11,22,16,30,102270,101070,99910,96.62,0,2.84,2.94,2.93,2.91,2.88,2.85,2.8000000000000003,2.77,2.82,121.59,120.62,119.92,119.17,118.34,117.51,116.43,115.94,125.78,18.48,18.12,17.95,17.77,17.6,17.45,17.31,17.17,16.830000000000002,N/A,N/A -2012,11,22,17,30,102240,101040,99880,96.44,0.4,3.99,4.05,4,3.92,3.84,3.75,3.64,3.54,3.34,124.31,125.28,125.95,126.72,127.72,128.76,130.6,132.6,141.43,18.51,18.13,17.95,17.76,17.56,17.38,17.23,17.09,16.81,N/A,N/A -2012,11,22,18,30,102250,101050,99890,96.33,0.7000000000000001,3.36,3.5300000000000002,3.56,3.5700000000000003,3.59,3.59,3.6,3.62,3.72,124.71000000000001,124.31,124.01,123.7,123.37,123.06,122.69,122.37,125.52,18.97,18.61,18.44,18.25,18.05,17.87,17.71,17.56,17.29,N/A,N/A -2012,11,22,19,30,102240,101040,99880,96.67,0,3.85,3.97,3.96,3.92,3.87,3.8200000000000003,3.74,3.7,4.12,125.12,125.04,124.88000000000001,124.69,124.42,124.14,124,125.18,148.28,18.75,18.36,18.16,17.94,17.75,17.580000000000002,17.31,17.13,18.18,N/A,N/A -2012,11,22,20,30,102200,101000,99850,96.72,0,4.23,4.37,4.3500000000000005,4.3100000000000005,4.2700000000000005,4.23,4.39,4.57,5.01,118.66,118.69,118.64,118.59,118.29,117.88,127.96000000000001,138.82,147.88,18.92,18.56,18.38,18.19,18,17.84,18.05,18.31,18.93,N/A,N/A -2012,11,22,21,30,102170,100980,99830,94.08,0,4.67,4.8500000000000005,4.9,4.98,5.44,6.140000000000001,6.37,6.49,6.55,123.95,124.79,125.96000000000001,128.12,134.6,144.09,147.9,150.24,154.29,19.41,19.09,18.95,18.82,18.98,19.28,19.45,19.57,19.52,N/A,N/A -2012,11,22,22,30,102110,100920,99770,87.41,0,5.94,6.38,6.45,6.48,6.48,6.48,6.45,6.44,6.45,127.03,127.65,128.03,128.45,128.89000000000001,129.34,129.99,130.65,135.47,20.29,19.990000000000002,19.82,19.64,19.46,19.28,19.11,18.95,18.76,N/A,N/A -2012,11,22,23,30,102110,100920,99770,74.42,0,5.84,6.3500000000000005,6.48,6.55,6.59,6.62,6.63,6.65,6.7,139.51,139.93,140.1,140.31,140.53,140.76,141.05,141.34,142.22,20.89,20.64,20.48,20.3,20.12,19.94,19.75,19.580000000000002,19.22,N/A,N/A -2012,11,23,0,30,102120,100930,99780,76.18,0,6.12,6.61,6.69,6.73,6.74,6.75,6.7700000000000005,6.79,7,136.78,137.18,137.47,137.79,138.18,138.59,139.22,139.89000000000001,143.41,20.85,20.59,20.44,20.26,20.080000000000002,19.91,19.73,19.56,19.27,N/A,N/A -2012,11,23,1,30,102130,100950,99790,79.14,0,5.22,5.61,5.68,5.71,5.73,5.74,5.7700000000000005,5.8,6,138.07,138.53,138.93,139.42000000000002,140.04,140.72,142.02,143.36,148.98,20.85,20.61,20.46,20.28,20.1,19.93,19.76,19.61,19.35,N/A,N/A -2012,11,23,2,30,102110,100920,99770,80.68,0,5.63,6.08,6.19,6.3,6.390000000000001,6.47,6.59,6.72,6.99,139.81,140.11,140.5,141.18,142.11,143.18,144.91,146.67000000000002,149.9,20.93,20.71,20.57,20.42,20.27,20.14,20.02,19.92,19.69,N/A,N/A -2012,11,23,3,30,102130,100940,99790,82.19,0,4.2700000000000005,4.86,5.1000000000000005,5.29,5.44,5.58,5.7,5.82,6.04,148.06,149.95000000000002,151.41,153.29,155.28,157.31,159.49,161.55,165.51,20.95,20.75,20.63,20.5,20.38,20.28,20.16,20.04,19.78,N/A,N/A -2012,11,23,4,30,102120,100930,99780,83.36,0,3.58,4.1,4.3500000000000005,4.63,4.88,5.12,5.34,5.55,5.84,156.27,159.53,161.89000000000001,164.67000000000002,167.33,169.96,172.22,174.24,177.18,20.95,20.78,20.7,20.63,20.57,20.52,20.43,20.34,20.05,N/A,N/A -2012,11,23,5,30,102140,100950,99800,83.92,0,3.7,4.17,4.34,4.5,4.63,4.75,4.87,4.97,5.16,158.21,159.18,159.93,160.89000000000001,161.97,163.12,164.64000000000001,166.15,170.24,21.03,20.84,20.71,20.56,20.41,20.26,20.1,19.96,19.69,N/A,N/A -2012,11,23,6,30,102160,100970,99820,83.42,0,3.0500000000000003,3.52,3.75,3.95,4.13,4.28,4.48,4.69,5.09,165.6,169.23,172.04,175.74,179.20000000000002,182.52,185.14000000000001,187.42000000000002,190.51,21.07,20.92,20.830000000000002,20.73,20.62,20.51,20.400000000000002,20.3,20.05,N/A,N/A -2012,11,23,7,30,102190,101000,99850,83.95,0,2.64,3.0500000000000003,3.24,3.46,3.79,4.2,4.46,4.67,5.15,171.13,173.75,176.42000000000002,180.84,186.33,192.8,195.46,196.97,198.33,21.02,20.86,20.76,20.650000000000002,20.59,20.56,20.46,20.36,20.12,N/A,N/A -2012,11,23,8,30,102190,101010,99860,85.32000000000001,0,2.21,2.94,3.33,3.7800000000000002,4.08,4.26,4.45,4.63,4.93,167.94,176.70000000000002,182.99,190.07,194.41,196.78,198.22,199.34,199.64000000000001,21.06,21.1,21.09,21.03,20.94,20.82,20.71,20.6,20.34,N/A,N/A -2012,11,23,9,30,102230,101040,99890,85.83,0,1.6300000000000001,2.24,2.5,2.84,3.11,3.35,3.59,3.81,4.21,191.04,196,199.48000000000002,202.98000000000002,205.20000000000002,206.52,207.27,207.83,208.41,21.17,21.12,21.07,20.990000000000002,20.89,20.78,20.650000000000002,20.53,20.27,N/A,N/A -2012,11,23,10,30,102240,101050,99900,86.43,0,1.6500000000000001,2.31,2.64,2.96,3.18,3.33,3.5100000000000002,3.69,4.01,173.21,181.17000000000002,186.87,192.71,196.35,198.46,200.01,201.32,201.55,21.02,21.03,21,20.91,20.81,20.72,20.66,20.62,20.44,N/A,N/A -2012,11,23,11,30,102260,101080,99930,87.28,0,1.96,2.2,2.34,2.56,2.7600000000000002,2.95,3.12,3.2800000000000002,3.59,139.44,158.98,169.86,177.51,183.02,187.1,190.27,193.03,198.46,20.81,20.82,20.81,20.71,20.61,20.5,20.38,20.26,20.05,N/A,N/A -2012,11,23,12,30,102280,101090,99940,87.16,0,1.86,2.44,2.7,2.9,2.99,3.02,3.1,3.18,3.42,168.42000000000002,174.36,179.61,186.76,191.09,193.54,196.22,198.74,201.96,20.94,20.900000000000002,20.85,20.76,20.63,20.47,20.35,20.25,20.080000000000002,N/A,N/A -2012,11,23,13,30,102300,101120,99970,87.9,0,1.71,2.0300000000000002,2.15,2.22,2.29,2.34,2.47,2.62,3.04,156.22,160.70000000000002,167.20000000000002,179.78,188.26,194.12,199.67000000000002,204.87,209.1,20.85,20.7,20.64,20.61,20.56,20.5,20.490000000000002,20.5,20.42,N/A,N/A -2012,11,23,14,30,102340,101150,100000,87.44,0,1.43,1.57,1.61,1.6400000000000001,1.74,1.9000000000000001,2.11,2.33,2.71,146.17000000000002,159.88,169.31,179.64000000000001,188.05,195.65,200.59,204.74,208.42000000000002,20.85,20.82,20.8,20.76,20.740000000000002,20.73,20.740000000000002,20.740000000000002,20.59,N/A,N/A -2012,11,23,15,30,102360,101170,100020,85.54,0,1.03,1.19,1.29,1.43,1.6,1.79,2,2.22,2.59,157.39000000000001,178.64000000000001,190.59,198.47,204.43,209.18,211.77,213.76,214.22,20.98,21.12,21.17,21.11,21.07,21.03,21,20.98,20.79,N/A,N/A -2012,11,23,16,30,102320,101140,99990,86.7,0,1.6,1.84,1.97,2.1,2.2600000000000002,2.43,2.62,2.81,3.14,175.05,188.87,196.51,201.95000000000002,206.12,209.55,212,214.11,217.99,21.06,21.25,21.330000000000002,21.3,21.26,21.23,21.18,21.14,20.93,N/A,N/A -2012,11,23,17,30,102320,101130,99980,89.36,0,1.36,1.59,1.72,1.87,2.0300000000000002,2.19,2.37,2.54,2.84,177.53,193.89000000000001,203.48000000000002,210.87,216.75,221.69,225.92000000000002,229.79,235.8,21.1,21.27,21.36,21.36,21.32,21.26,21.2,21.14,20.96,N/A,N/A -2012,11,23,18,30,102310,101130,99980,90.19,0,0.77,0.96,1.11,1.32,1.5,1.68,1.85,2,2.2600000000000002,174.33,204.08,220.71,230.48000000000002,237.52,242.53,246.22,249.43,253.62,21.18,21.3,21.37,21.37,21.32,21.25,21.17,21.080000000000002,20.87,N/A,N/A -2012,11,23,19,30,102310,101130,99980,90.92,0,0.89,0.6900000000000001,0.64,0.6900000000000001,0.78,0.89,0.99,1.07,1.21,134.14000000000001,165.82,184.08,206.19,221.05,231.99,239.20000000000002,245.12,251.68,21.36,21.39,21.41,21.37,21.3,21.21,21.1,21,20.81,N/A,N/A -2012,11,23,20,30,102300,101110,99970,93.24,1.1,2.52,2.48,2.45,2.5100000000000002,2.65,2.85,3.0700000000000003,3.29,3.63,51.74,44.58,39.050000000000004,31.810000000000002,25.98,20.86,18.16,16.14,16.09,21.21,21.17,21.19,21.23,21.240000000000002,21.23,21.13,21.01,20.67,N/A,N/A -2012,11,23,21,30,102300,101110,99960,92.13,0,4.22,4.51,4.71,5.11,5.43,5.69,5.89,6.0600000000000005,6.34,28.84,28.92,28.6,27.650000000000002,26.71,25.82,25.01,24.29,23.12,20.92,20.650000000000002,20.53,20.44,20.34,20.26,20.14,20.03,19.76,N/A,N/A -2012,11,23,22,30,102330,101140,99980,86.46000000000001,0,9.09,9.82,9.96,10,10.06,10.11,10.26,10.41,10.32,10.94,11.16,11.31,11.52,11.82,12.15,12.89,13.69,16.830000000000002,20.07,19.740000000000002,19.57,19.39,19.22,19.05,18.92,18.8,18.830000000000002,N/A,N/A -2012,11,23,23,30,102390,101190,100030,92.9,0,8.15,8.72,8.84,8.91,9,9.1,9.41,9.73,10.23,12.370000000000001,12.17,11.99,11.72,11.290000000000001,10.77,9.49,8.11,5.05,19.19,18.82,18.650000000000002,18.47,18.32,18.17,18.09,18.03,18.150000000000002,N/A,N/A -2012,11,24,0,30,102390,101190,100030,91.29,0,9.38,10.21,10.4,10.51,10.59,10.66,10.74,10.83,11.22,22.330000000000002,22.43,22.490000000000002,22.55,22.62,22.69,22.78,22.86,23.2,19.17,18.76,18.580000000000002,18.38,18.19,18.02,17.830000000000002,17.66,17.330000000000002,N/A,N/A -2012,11,24,1,30,102480,101270,100110,89.77,5.5,11.620000000000001,12.69,12.92,13.030000000000001,13.09,13.120000000000001,13.13,13.13,13.11,22.06,22.02,21.96,21.91,21.85,21.8,21.75,21.7,21.61,18.23,17.740000000000002,17.53,17.330000000000002,17.13,16.94,16.740000000000002,16.55,16.18,N/A,N/A -2012,11,24,2,30,102550,101340,100170,89.78,0,11.44,12.38,12.58,12.66,12.69,12.700000000000001,12.67,12.64,12.55,19.27,19.57,19.78,19.98,20.19,20.39,20.61,20.830000000000002,21.34,16.91,16.34,16.12,15.9,15.69,15.5,15.3,15.11,14.73,N/A,N/A -2012,11,24,3,30,102590,101370,100190,77.98,0,11.71,12.68,12.88,12.98,13.01,13.030000000000001,13.01,12.99,12.93,19.13,19.53,19.77,20,20.22,20.42,20.66,20.89,21.42,15.98,15.36,15.120000000000001,14.9,14.69,14.5,14.290000000000001,14.11,13.73,N/A,N/A -2012,11,24,4,30,102590,101370,100190,64.81,0,12.82,13.97,14.24,14.38,14.47,14.530000000000001,14.56,14.58,14.61,27.07,27.36,27.53,27.7,27.86,28.02,28.19,28.35,28.740000000000002,16.15,15.52,15.280000000000001,15.06,14.85,14.66,14.46,14.27,13.9,N/A,N/A -2012,11,24,5,30,102620,101400,100210,68.27,0,11.98,13.05,13.32,13.46,13.55,13.620000000000001,13.66,13.700000000000001,13.74,27.8,28.07,28.25,28.42,28.580000000000002,28.740000000000002,28.900000000000002,29.05,29.400000000000002,15.83,15.200000000000001,14.96,14.74,14.530000000000001,14.33,14.13,13.94,13.56,N/A,N/A -2012,11,24,6,30,102630,101410,100230,69.21000000000001,0,11.72,12.75,13.01,13.15,13.24,13.3,13.35,13.39,13.44,29.07,29.330000000000002,29.5,29.66,29.810000000000002,29.95,30.1,30.240000000000002,30.54,15.68,15.040000000000001,14.8,14.58,14.370000000000001,14.18,13.97,13.780000000000001,13.41,N/A,N/A -2012,11,24,7,30,102660,101440,100250,67.97,0,12.030000000000001,13.08,13.33,13.46,13.530000000000001,13.59,13.61,13.63,13.64,28.89,29.14,29.3,29.45,29.6,29.740000000000002,29.88,30.02,30.32,15.34,14.67,14.42,14.200000000000001,13.98,13.790000000000001,13.58,13.39,13.01,N/A,N/A -2012,11,24,8,30,102690,101460,100270,69.03,0,12.76,13.86,14.11,14.23,14.3,14.34,14.34,14.35,14.32,31.240000000000002,31.55,31.740000000000002,31.92,32.09,32.25,32.42,32.58,32.93,14.450000000000001,13.72,13.46,13.23,13.01,12.81,12.6,12.41,12.02,N/A,N/A -2012,11,24,9,30,102700,101470,100270,67.32000000000001,0,12.870000000000001,13.96,14.21,14.33,14.39,14.43,14.44,14.44,14.4,31.02,31.25,31.41,31.55,31.7,31.830000000000002,31.98,32.12,32.43,13.73,12.96,12.69,12.46,12.24,12.040000000000001,11.83,11.64,11.26,N/A,N/A -2012,11,24,10,30,102720,101490,100290,69.44,0,12.040000000000001,13.01,13.22,13.33,13.38,13.41,13.41,13.41,13.38,30.72,30.990000000000002,31.17,31.330000000000002,31.490000000000002,31.64,31.8,31.95,32.28,13.13,12.36,12.09,11.85,11.63,11.44,11.23,11.040000000000001,10.66,N/A,N/A -2012,11,24,11,30,102720,101490,100290,73.13,0,11.65,12.55,12.74,12.83,12.870000000000001,12.89,12.88,12.88,12.84,32.47,32.82,33.03,33.230000000000004,33.43,33.61,33.82,34.01,34.43,12.75,11.97,11.700000000000001,11.47,11.25,11.06,10.85,10.66,10.290000000000001,N/A,N/A -2012,11,24,12,30,102750,101510,100310,76.79,0,10.78,11.56,11.72,11.790000000000001,11.82,11.83,11.82,11.81,11.76,36.79,37.26,37.550000000000004,37.81,38.07,38.31,38.57,38.83,39.37,12.51,11.74,11.48,11.25,11.03,10.83,10.63,10.44,10.06,N/A,N/A -2012,11,24,13,30,102760,101530,100320,78.23,0,10.200000000000001,10.91,11.05,11.11,11.13,11.15,11.13,11.120000000000001,11.07,38.42,39,39.35,39.68,40.01,40.31,40.63,40.93,41.56,12.42,11.67,11.41,11.18,10.96,10.76,10.55,10.36,9.98,N/A,N/A -2012,11,24,14,30,102780,101540,100330,77.75,0,9.5,10.120000000000001,10.23,10.28,10.290000000000001,10.290000000000001,10.27,10.25,10.200000000000001,37.27,37.88,38.25,38.59,38.94,39.24,39.58,39.89,40.550000000000004,12.22,11.49,11.22,10.99,10.78,10.58,10.370000000000001,10.18,9.8,N/A,N/A -2012,11,24,15,30,102760,101520,100320,78.08,0,8.97,9.52,9.63,9.67,9.68,9.68,9.67,9.65,9.6,36.81,37.38,37.730000000000004,38.06,38.38,38.67,38.99,39.28,39.9,12.18,11.46,11.21,10.98,10.76,10.56,10.36,10.16,9.78,N/A,N/A -2012,11,24,16,30,102730,101490,100290,75.19,0,8,8.45,8.52,8.55,8.55,8.540000000000001,8.51,8.49,8.43,32.61,33.14,33.480000000000004,33.79,34.1,34.38,34.68,34.980000000000004,35.58,12.25,11.56,11.31,11.09,10.870000000000001,10.68,10.47,10.28,9.89,N/A,N/A -2012,11,24,17,30,102670,101430,100230,68.21000000000001,0,7.11,7.48,7.54,7.5600000000000005,7.55,7.54,7.5200000000000005,7.5,7.45,28.310000000000002,28.740000000000002,29.02,29.27,29.53,29.76,30.01,30.25,30.77,12.39,11.73,11.49,11.26,11.05,10.86,10.65,10.46,10.07,N/A,N/A -2012,11,24,18,30,102620,101380,100190,62.85,0,6.42,6.76,6.82,6.8500000000000005,6.8500000000000005,6.86,6.8500000000000005,6.8500000000000005,6.82,25.68,25.87,25.98,26.09,26.2,26.3,26.41,26.51,26.71,12.97,12.35,12.11,11.89,11.67,11.48,11.27,11.08,10.69,N/A,N/A -2012,11,24,19,30,102580,101350,100160,57.800000000000004,0,5.29,5.5600000000000005,5.61,5.64,5.65,5.66,5.66,5.66,5.66,26.28,26.27,26.25,26.240000000000002,26.23,26.22,26.21,26.2,26.19,13.66,13.09,12.86,12.65,12.43,12.25,12.030000000000001,11.84,11.450000000000001,N/A,N/A -2012,11,24,20,30,102520,101290,100100,54.050000000000004,0,4.7,4.93,4.98,5,5.01,5.0200000000000005,5.03,5.03,5.03,23.900000000000002,23.96,23.98,23.990000000000002,24.01,24.03,24.04,24.07,24.1,14.32,13.790000000000001,13.57,13.35,13.14,12.950000000000001,12.74,12.55,12.15,N/A,N/A -2012,11,24,21,30,102470,101250,100060,51.29,0,3.97,4.16,4.2,4.22,4.24,4.25,4.26,4.26,4.28,21.98,22.12,22.21,22.29,22.37,22.43,22.51,22.580000000000002,22.71,14.88,14.38,14.16,13.950000000000001,13.74,13.55,13.34,13.15,12.75,N/A,N/A -2012,11,24,22,30,102430,101210,100030,49.45,0,3.71,3.89,3.93,3.96,3.97,3.98,3.99,4,4.0200000000000005,24.79,24.740000000000002,24.72,24.7,24.68,24.66,24.650000000000002,24.63,24.61,15.38,14.9,14.69,14.48,14.27,14.08,13.870000000000001,13.68,13.280000000000001,N/A,N/A -2012,11,24,23,30,102400,101180,99990,49.19,0,3.65,3.8200000000000003,3.85,3.87,3.88,3.89,3.89,3.89,3.9,29.1,29.04,28.990000000000002,28.94,28.900000000000002,28.87,28.830000000000002,28.8,28.73,15.77,15.3,15.09,14.89,14.67,14.49,14.27,14.08,13.69,N/A,N/A -2012,11,25,0,30,102380,101170,99980,49.33,0,4.33,4.5200000000000005,4.55,4.5600000000000005,4.5600000000000005,4.5600000000000005,4.55,4.54,4.5200000000000005,33.71,33.79,33.83,33.86,33.89,33.93,33.97,33.99,34.05,15.94,15.46,15.25,15.040000000000001,14.83,14.64,14.43,14.24,13.84,N/A,N/A -2012,11,25,1,30,102360,101140,99950,50.730000000000004,0,4.62,4.78,4.78,4.76,4.73,4.71,4.68,4.64,4.58,31.11,32.2,32.86,33.49,34.1,34.65,35.24,35.78,36.93,15.74,15.26,15.05,14.84,14.63,14.450000000000001,14.24,14.05,13.66,N/A,N/A -2012,11,25,2,30,102340,101120,99940,51.32,0,3.95,4.07,4.0600000000000005,4.04,4.0200000000000005,3.99,3.96,3.93,3.86,55.33,55.96,56.31,56.660000000000004,57,57.31,57.660000000000004,57.99,58.7,15.72,15.24,15.030000000000001,14.83,14.620000000000001,14.44,14.23,14.040000000000001,13.65,N/A,N/A -2012,11,25,3,30,102300,101080,99900,55.72,0,3.61,3.7600000000000002,3.7800000000000002,3.79,3.79,3.79,3.79,3.7800000000000002,3.7800000000000002,61.92,63.18,63.870000000000005,64.51,65.11,65.66,66.24,66.78,67.89,15.790000000000001,15.32,15.11,14.91,14.700000000000001,14.51,14.31,14.11,13.72,N/A,N/A -2012,11,25,4,30,102250,101040,99860,59.19,0,3.3200000000000003,3.48,3.5100000000000002,3.5300000000000002,3.5500000000000003,3.56,3.5700000000000003,3.58,3.59,73.58,74.75,75.43,76.06,76.66,77.2,77.76,78.28,79.36,15.89,15.43,15.23,15.02,14.82,14.63,14.42,14.23,13.84,N/A,N/A -2012,11,25,5,30,102200,100990,99810,61.63,0,3.19,3.31,3.33,3.33,3.33,3.3200000000000003,3.3200000000000003,3.31,3.3000000000000003,96.52,97.22,97.60000000000001,97.96000000000001,98.31,98.64,98.97,99.27,99.95,16.17,15.72,15.51,15.31,15.1,14.92,14.71,14.52,14.13,N/A,N/A -2012,11,25,6,30,102180,100970,99790,58.82,0,3.16,3.27,3.2800000000000002,3.2800000000000002,3.27,3.27,3.2600000000000002,3.25,3.23,118.45,119.09,119.5,119.89,120.27,120.62,121,121.36,122.12,16.47,16.03,15.83,15.63,15.43,15.24,15.030000000000001,14.84,14.450000000000001,N/A,N/A -2012,11,25,7,30,102160,100950,99770,60.75,0,3.09,3.18,3.18,3.18,3.16,3.15,3.14,3.13,3.1,130.24,130.93,131.38,131.82,132.24,132.63,133.05,133.45,134.28,16.71,16.28,16.080000000000002,15.88,15.68,15.49,15.290000000000001,15.1,14.71,N/A,N/A -2012,11,25,8,30,102120,100910,99740,62.33,0,2.54,2.65,2.67,2.68,2.69,2.7,2.71,2.71,2.72,145.72,146.01,146.22,146.42000000000002,146.62,146.8,147,147.18,147.56,16.97,16.55,16.36,16.15,15.950000000000001,15.76,15.56,15.370000000000001,14.98,N/A,N/A -2012,11,25,9,30,102090,100880,99710,62.78,0,2.7800000000000002,2.89,2.91,2.92,2.92,2.92,2.92,2.92,2.92,147.11,147.85,148.29,148.70000000000002,149.09,149.45000000000002,149.83,150.18,150.91,17.18,16.77,16.57,16.37,16.17,15.98,15.77,15.58,15.19,N/A,N/A -2012,11,25,10,30,102070,100860,99690,63.690000000000005,0,2.19,2.3000000000000003,2.33,2.35,2.37,2.38,2.4,2.41,2.43,156.03,156.61,157,157.37,157.71,158.03,158.37,158.67000000000002,159.31,17.45,17.06,16.86,16.66,16.46,16.27,16.07,15.88,15.49,N/A,N/A -2012,11,25,11,30,102060,100850,99680,64.52,0,2.2,2.32,2.36,2.38,2.4,2.42,2.44,2.46,2.5,156.59,156.98,157.27,157.54,157.8,158.04,158.28,158.52,159.02,17.6,17.21,17.02,16.82,16.62,16.43,16.23,16.04,15.65,N/A,N/A -2012,11,25,12,30,102050,100840,99680,65.58,0,2.41,2.54,2.57,2.6,2.62,2.64,2.66,2.68,2.71,155.11,155.5,155.75,155.98,156.20000000000002,156.4,156.61,156.81,157.22,17.830000000000002,17.44,17.25,17.05,16.85,16.66,16.46,16.27,15.88,N/A,N/A -2012,11,25,13,30,102040,100830,99670,68.08,0,2.67,2.81,2.85,2.87,2.9,2.92,2.94,2.95,2.99,154.74,155.23,155.58,155.9,156.20000000000002,156.48,156.78,157.05,157.63,18.01,17.63,17.44,17.240000000000002,17.04,16.85,16.65,16.46,16.07,N/A,N/A -2012,11,25,14,30,102050,100850,99680,70.53,0,3.16,3.34,3.39,3.43,3.45,3.48,3.5,3.52,3.5500000000000003,144.52,144.99,145.33,145.64000000000001,145.94,146.22,146.51,146.77,147.32,18.23,17.85,17.66,17.46,17.26,17.07,16.87,16.68,16.29,N/A,N/A -2012,11,25,15,30,102040,100840,99670,70.56,0,3.6,3.79,3.83,3.85,3.86,3.87,3.87,3.88,3.88,147.91,148.45000000000002,148.81,149.17000000000002,149.5,149.8,150.13,150.43,151.07,18.490000000000002,18.11,17.92,17.72,17.53,17.34,17.13,16.95,16.55,N/A,N/A -2012,11,25,16,30,102010,100810,99650,73.2,0,3.93,4.16,4.22,4.25,4.28,4.3,4.32,4.33,4.36,144.36,144.87,145.22,145.55,145.85,146.14000000000001,146.44,146.72,147.29,18.68,18.31,18.12,17.92,17.72,17.53,17.330000000000002,17.150000000000002,16.76,N/A,N/A -2012,11,25,17,30,101940,100750,99590,73.86,0,3.61,3.83,3.89,3.92,3.96,3.98,4,4.0200000000000005,4.0600000000000005,146.16,146.6,146.86,147.11,147.33,147.53,147.74,147.93,148.35,18.900000000000002,18.54,18.36,18.150000000000002,17.96,17.77,17.57,17.38,16.990000000000002,N/A,N/A -2012,11,25,18,30,101920,100720,99570,75.94,0,4.3100000000000005,4.59,4.67,4.72,4.75,4.78,4.8100000000000005,4.83,4.87,148.9,149.21,149.42000000000002,149.63,149.81,149.99,150.17000000000002,150.34,150.69,19.240000000000002,18.88,18.69,18.490000000000002,18.3,18.11,17.91,17.72,17.330000000000002,N/A,N/A -2012,11,25,19,30,101870,100680,99520,77.03,0,4.21,4.46,4.5200000000000005,4.5600000000000005,4.58,4.6000000000000005,4.61,4.62,4.64,140.05,140.65,141.06,141.46,141.84,142.19,142.57,142.91,143.68,19.400000000000002,19.05,18.87,18.67,18.48,18.29,18.09,17.900000000000002,17.52,N/A,N/A -2012,11,25,20,30,101820,100630,99470,77.63,0,4.23,4.53,4.61,4.65,4.69,4.72,4.74,4.76,4.79,141.65,142.08,142.37,142.65,142.91,143.15,143.4,143.63,144.12,19.69,19.36,19.18,18.98,18.78,18.6,18.39,18.21,17.82,N/A,N/A -2012,11,25,21,30,101770,100580,99430,77.32000000000001,0,4.64,4.96,5.03,5.07,5.1000000000000005,5.12,5.13,5.15,5.16,142.71,143.21,143.55,143.87,144.18,144.46,144.77,145.05,145.67000000000002,19.93,19.6,19.43,19.23,19.04,18.85,18.650000000000002,18.47,18.080000000000002,N/A,N/A -2012,11,25,22,30,101740,100550,99400,79.26,0,5.17,5.58,5.7,5.76,5.82,5.86,5.89,5.92,5.97,139.81,140.31,140.65,140.96,141.25,141.52,141.81,142.07,142.65,20.12,19.81,19.64,19.45,19.26,19.07,18.87,18.69,18.3,N/A,N/A -2012,11,25,23,30,101710,100530,99380,79.89,0,5.82,6.29,6.41,6.47,6.5200000000000005,6.55,6.57,6.58,6.61,140.96,141.27,141.5,141.74,141.97,142.18,142.41,142.62,143.08,20.35,20.05,19.88,19.69,19.5,19.31,19.12,18.93,18.54,N/A,N/A -2012,11,26,0,30,101710,100520,99380,80.60000000000001,0,6.12,6.7,6.86,6.96,7.03,7.08,7.13,7.16,7.22,141.55,141.96,142.24,142.54,142.8,143.05,143.32,143.56,144.09,20.63,20.36,20.2,20,19.82,19.63,19.44,19.26,18.88,N/A,N/A -2012,11,26,1,30,101680,100500,99350,83.11,0,6.48,7.07,7.23,7.33,7.41,7.48,7.57,7.65,7.9,148.41,148.53,148.62,148.74,148.87,149.01,149.20000000000002,149.39000000000001,149.98,20.81,20.56,20.41,20.23,20.05,19.88,19.69,19.52,19.17,N/A,N/A -2012,11,26,2,30,101660,100480,99340,86.32000000000001,0,5.84,6.63,6.96,7.25,7.51,7.75,7.98,8.19,8.57,148.02,148.35,148.64000000000001,149.07,149.52,149.99,150.57,151.13,152.6,20.97,20.79,20.67,20.53,20.400000000000002,20.27,20.13,20,19.71,N/A,N/A -2012,11,26,3,30,101630,100450,99310,87.47,0,6.63,7.5600000000000005,7.9,8.19,8.45,8.68,8.89,9.09,9.450000000000001,152.62,153.08,153.44,153.91,154.42000000000002,154.96,155.55,156.12,157.38,21.23,21.06,20.94,20.79,20.650000000000002,20.5,20.35,20.2,19.89,N/A,N/A -2012,11,26,4,30,101590,100410,99270,88.51,0,6.21,7.19,7.59,7.95,8.28,8.58,8.870000000000001,9.14,9.63,152.03,152.86,153.51,154.43,155.46,156.58,157.78,158.96,160.93,21.32,21.19,21.09,20.97,20.85,20.73,20.6,20.48,20.2,N/A,N/A -2012,11,26,5,30,101580,100400,99260,91.24,0,5.46,6.41,6.8100000000000005,7.18,7.5200000000000005,7.84,8.16,8.46,9.06,150.95000000000002,151.74,152.46,153.51,154.65,155.89000000000001,157.31,158.71,162.06,21.29,21.17,21.080000000000002,20.97,20.85,20.740000000000002,20.62,20.51,20.29,N/A,N/A -2012,11,26,6,30,101580,100400,99260,92.7,0,5.19,6.08,6.47,6.87,7.2700000000000005,7.68,8.120000000000001,8.55,9.36,145.3,146.65,147.79,149.37,150.97,152.65,154.14000000000001,155.49,157.41,21.42,21.29,21.2,21.1,21,20.92,20.830000000000002,20.75,20.55,N/A,N/A -2012,11,26,7,30,101580,100400,99260,94.52,0,4.94,5.99,6.47,6.96,7.41,7.8500000000000005,8.290000000000001,8.700000000000001,9.6,152.82,155.16,156.96,159.35,161.8,164.36,167.16,169.89000000000001,175.52,21.54,21.44,21.36,21.26,21.17,21.07,20.96,20.86,20.63,N/A,N/A -2012,11,26,8,30,101560,100380,99250,95.7,0,4.62,5.65,6.1000000000000005,6.55,6.94,7.3,7.66,7.99,9.25,166.17000000000002,168.58,170.52,172.9,175.27,177.73,180.16,182.47,187.06,21.59,21.5,21.44,21.35,21.27,21.19,21.11,21.03,20.89,N/A,N/A -2012,11,26,9,30,101570,100400,99260,95.06,0,5.46,6.72,7.32,7.92,8.47,8.99,9.49,9.96,10.74,183.16,184.32,185.32,186.22,186.9,187.42000000000002,187.88,188.29,189.4,21.81,21.830000000000002,21.81,21.75,21.68,21.59,21.5,21.41,21.21,N/A,N/A -2012,11,26,10,30,101580,100410,99280,93.61,0,6.25,7.640000000000001,8.23,8.78,9.22,9.6,9.9,10.15,10.5,191.65,191.91,192.28,192.99,193.77,194.67000000000002,195.64000000000001,196.6,198.94,22.13,22.17,22.150000000000002,22.09,22.02,21.93,21.830000000000002,21.72,21.44,N/A,N/A -2012,11,26,11,30,101590,100420,99290,94.10000000000001,0,5.5200000000000005,6.87,7.43,7.92,8.36,8.77,9.17,9.55,10.21,192.72,194.14000000000001,195.47,197.43,199.34,201.3,203.11,204.77,207.74,22.03,22.1,22.09,22.04,21.98,21.89,21.79,21.68,21.43,N/A,N/A -2012,11,26,12,30,101610,100440,99300,94.95,0,4.44,5.82,6.43,7.0200000000000005,7.51,7.930000000000001,8.27,8.57,8.97,192.99,195.6,197.8,200.74,203.68,206.73000000000002,209.26,211.46,214.27,21.84,21.900000000000002,21.91,21.900000000000002,21.86,21.81,21.71,21.6,21.32,N/A,N/A -2012,11,26,13,30,101620,100450,99320,95.39,0,3.45,4.82,5.41,5.94,6.44,6.94,7.42,7.88,8.370000000000001,201.27,204.83,207.70000000000002,211.47,214.79,217.86,219.79,221.18,221.71,21.77,21.91,21.93,21.89,21.830000000000002,21.740000000000002,21.64,21.54,21.25,N/A,N/A -2012,11,26,14,30,101670,100490,99360,96.37,0,2.87,4.14,4.74,5.34,6.1000000000000005,7.08,7.61,7.91,8.65,198.18,202.48000000000002,205.69,209.25,212.6,216.09,217.46,217.85,217.93,21.6,21.7,21.72,21.72,21.71,21.7,21.62,21.52,21.29,N/A,N/A -2012,11,26,15,30,101670,100500,99360,97,0,2.99,4.2,4.82,5.5600000000000005,6.54,7.8500000000000005,8.41,8.64,9.200000000000001,195.29,200.58,204.43,208.49,211,212.25,212.70000000000002,212.81,213.25,21.61,21.68,21.72,21.740000000000002,21.81,21.900000000000002,21.87,21.8,21.61,N/A,N/A -2012,11,26,16,30,101680,100510,99370,97.72,0,2.82,3.94,4.54,5.23,6.09,7.18,7.78,8.15,8.9,185.61,191.42000000000002,195.21,198.19,202.73000000000002,209.07,212.27,213.95000000000002,216.17000000000002,21.71,21.71,21.72,21.72,21.78,21.89,21.88,21.82,21.67,N/A,N/A -2012,11,26,17,30,101690,100510,99380,94.01,0,3.99,5,5.48,5.99,6.47,6.94,7.37,7.7700000000000005,9.19,205.21,207.81,209.66,211.66,213.34,214.82,215.57,216.02,218.07,22.150000000000002,22.11,22.07,22.02,21.95,21.88,21.79,21.69,21.6,N/A,N/A -2012,11,26,18,30,101660,100490,99350,92.55,0,4.28,5.3500000000000005,5.8500000000000005,6.4,6.91,7.4,7.88,8.34,9.35,216.42000000000002,217.33,218.01,218.78,219.45000000000002,220.09,220.6,221.05,221.53,22.39,22.32,22.27,22.21,22.150000000000002,22.080000000000002,22.01,21.94,21.79,N/A,N/A -2012,11,26,19,30,101670,100500,99360,92.48,0,4.58,5.55,5.96,6.4,6.8,7.19,7.58,7.94,8.73,202.57,204.65,206.18,208.03,209.71,211.32,212.70000000000002,213.93,215.89000000000001,22.47,22.39,22.330000000000002,22.25,22.17,22.080000000000002,21.990000000000002,21.900000000000002,21.7,N/A,N/A -2012,11,26,20,30,101660,100490,99360,92.42,0,4.19,5.2700000000000005,5.75,6.25,6.7,7.11,7.51,7.87,8.64,198.79,201.01,202.59,204.44,206.04,207.5,208.72,209.79,211.82,22.490000000000002,22.44,22.400000000000002,22.330000000000002,22.26,22.17,22.07,21.97,21.76,N/A,N/A -2012,11,26,21,30,101660,100490,99360,93.13,0,3.99,5.24,5.84,6.46,7.0200000000000005,7.54,8.01,8.44,9.33,207.66,209.3,210.5,211.85,213.06,214.18,215.13,215.97,217.43,22.44,22.47,22.45,22.42,22.37,22.31,22.22,22.14,21.95,N/A,N/A -2012,11,26,22,30,101670,100500,99370,93.25,0,3.96,5.23,5.8,6.390000000000001,6.92,7.42,7.97,8.52,9.05,203.59,206.6,208.76,211.06,212.99,214.68,216.27,217.77,218.86,22.3,22.400000000000002,22.41,22.39,22.35,22.3,22.23,22.17,21.93,N/A,N/A -2012,11,26,23,30,101700,100520,99390,93.92,0,3.65,4.98,5.58,6.19,6.83,7.55,7.930000000000001,8.15,8.620000000000001,203.57,207.1,209.69,212.56,215.44,218.48000000000002,219.83,220.48000000000002,221.73000000000002,22.080000000000002,22.26,22.31,22.330000000000002,22.34,22.330000000000002,22.26,22.17,21.93,N/A,N/A -2012,11,27,0,30,101710,100540,99410,94.43,0,3.69,5.0200000000000005,5.63,6.25,6.88,7.55,7.890000000000001,8.08,8.47,197.13,202.37,206.31,210.82,214.75,218.37,219.97,220.69,222,21.95,22.18,22.27,22.34,22.38,22.41,22.36,22.28,22.07,N/A,N/A -2012,11,27,1,30,101740,100570,99440,95.34,0,2.99,4.36,5.07,5.97,6.53,6.78,7.05,7.3,7.7700000000000005,200.51,204.56,208.61,215.5,219.75,221.52,223.01,224.32,226.13,21.830000000000002,22.06,22.19,22.35,22.400000000000002,22.38,22.35,22.32,22.17,N/A,N/A -2012,11,27,2,30,101770,100600,99470,95.19,0,3.37,4.75,5.44,6.18,6.6000000000000005,6.74,6.92,7.12,7.48,192.94,199.8,205.41,212.84,217.37,219.38,220.97,222.33,224.67000000000002,21.81,22.1,22.240000000000002,22.37,22.43,22.43,22.400000000000002,22.37,22.240000000000002,N/A,N/A -2012,11,27,3,30,101800,100620,99490,95.52,0,3.65,5.07,5.8,6.62,7.1000000000000005,7.2700000000000005,7.390000000000001,7.49,7.69,203.9,208.61,212.61,218.19,222.21,224.84,226.88,228.59,230.99,21.75,22.02,22.17,22.35,22.41,22.39,22.38,22.36,22.22,N/A,N/A -2012,11,27,4,30,101810,100640,99500,95.44,0,3.81,5.19,5.9,6.74,7.34,7.74,7.87,7.88,7.96,220.29,222.32,224.28,227.59,231.24,235.20000000000002,237.36,238.70000000000002,241.46,21.77,21.96,22.07,22.22,22.29,22.32,22.27,22.21,22.06,N/A,N/A -2012,11,27,5,30,101830,100650,99520,95.24,0,4.45,5.76,6.4,7.140000000000001,7.76,8.31,8.45,8.44,8.31,219.55,221.72,223.57,226.23000000000002,229.23000000000002,232.58,235.37,237.72,239.87,21.79,21.92,21.98,22.07,22.150000000000002,22.2,22.17,22.12,21.91,N/A,N/A -2012,11,27,6,30,101850,100680,99540,95.07000000000001,0,4.67,5.96,6.55,7.17,7.7700000000000005,8.370000000000001,8.66,8.84,8.69,233.15,233.91,234.61,235.84,237.52,239.64000000000001,242.46,245.32,247.21,21.79,21.88,21.91,21.93,21.96,22.01,22.01,22,21.75,N/A,N/A -2012,11,27,7,30,101900,100720,99580,95.26,0,4.72,5.98,6.53,7.08,7.58,8.06,8.55,9.02,9.47,239.08,240.33,241.17000000000002,242.29,243.39000000000001,244.51,246.13,247.86,252.78,21.75,21.78,21.77,21.73,21.69,21.63,21.59,21.56,21.5,N/A,N/A -2012,11,27,8,30,101890,100700,99550,85.58,0,3.35,3.8000000000000003,3.93,4.0600000000000005,4.19,4.3,4.42,4.53,4.73,305.7,306.39,306.8,307.22,307.99,308.77,309.94,311.12,313.8,21.11,20.82,20.64,20.47,20.28,20.11,19.91,19.73,19.36,N/A,N/A -2012,11,27,9,30,102020,100820,99660,86.18,0,10.11,10.89,11.040000000000001,11.09,11.09,11.06,11.01,10.96,10.82,336.77,337.15000000000003,337.41,337.65000000000003,337.89,338.11,338.35,338.58,339.1,18.47,18.01,17.81,17.6,17.400000000000002,17.21,17.02,16.84,16.46,N/A,N/A -2012,11,27,10,30,102050,100850,99680,83.47,0,7.78,8.3,8.4,8.44,8.44,8.44,8.43,8.41,8.39,340.87,341.07,341.28000000000003,341.49,341.72,341.93,342.22,342.5,343.36,17.82,17.36,17.16,16.96,16.76,16.580000000000002,16.38,16.2,15.82,N/A,N/A -2012,11,27,11,30,102160,100950,99780,83.3,0,11,11.86,12.030000000000001,12.09,12.09,12.08,12.040000000000001,12,11.870000000000001,335.16,335.53000000000003,335.73,335.93,336.12,336.31,336.52,336.71,337.18,16.740000000000002,16.16,15.93,15.71,15.5,15.31,15.11,14.92,14.540000000000001,N/A,N/A -2012,11,27,12,30,102240,101030,99850,81.23,0,11.05,11.94,12.13,12.21,12.25,12.26,12.25,12.24,12.19,339.72,339.89,340,340.1,340.21,340.31,340.43,340.55,340.87,16.23,15.63,15.39,15.18,14.97,14.780000000000001,14.58,14.39,14.02,N/A,N/A -2012,11,27,13,30,102270,101060,99880,81.34,0,10.53,11.32,11.47,11.540000000000001,11.56,11.56,11.55,11.53,11.49,351.61,351.83,351.97,352.11,352.26,352.41,352.59000000000003,352.78000000000003,353.31,15.97,15.370000000000001,15.14,14.93,14.73,14.55,14.35,14.17,13.8,N/A,N/A -2012,11,27,14,30,102270,101060,99880,82.15,0,10.09,10.82,10.96,11.02,11.040000000000001,11.040000000000001,11.040000000000001,11.03,11.03,4.76,4.94,5.1000000000000005,5.26,5.43,5.59,5.8,6.0200000000000005,6.61,15.8,15.21,14.98,14.77,14.57,14.38,14.19,14.01,13.64,N/A,N/A -2012,11,27,15,30,102370,101160,99980,82.89,0,8.51,9.08,9.200000000000001,9.24,9.27,9.28,9.27,9.27,9.25,356.12,356.34000000000003,356.56,356.77,356.98,357.19,357.43,357.66,358.24,15.88,15.31,15.09,14.870000000000001,14.67,14.48,14.280000000000001,14.09,13.71,N/A,N/A -2012,11,27,16,30,102440,101220,100040,83.23,0,9.19,9.82,9.950000000000001,9.99,10.01,10.01,10,9.98,9.92,342.99,343.3,343.47,343.64,343.8,343.96,344.15000000000003,344.33,344.77,15.72,15.120000000000001,14.89,14.67,14.47,14.27,14.07,13.88,13.5,N/A,N/A -2012,11,27,17,30,102410,101190,100010,87.2,0,9.44,10.08,10.22,10.26,10.28,10.28,10.26,10.24,10.17,353.89,354.08,354.19,354.3,354.42,354.53000000000003,354.65000000000003,354.77,355.06,15.55,14.950000000000001,14.71,14.49,14.280000000000001,14.09,13.89,13.700000000000001,13.32,N/A,N/A -2012,11,27,18,30,102420,101210,100020,86.78,0,9.65,10.33,10.48,10.540000000000001,10.56,10.57,10.56,10.540000000000001,10.49,352.5,353,353.28000000000003,353.55,353.81,354.05,354.31,354.56,355.08,15.4,14.780000000000001,14.540000000000001,14.32,14.11,13.91,13.71,13.52,13.13,N/A,N/A -2012,11,27,19,30,102450,101230,100050,85.3,0,8.67,9.290000000000001,9.44,9.52,9.58,9.620000000000001,9.64,9.66,9.68,3.69,3.65,3.62,3.58,3.54,3.5100000000000002,3.47,3.44,3.37,15.11,14.5,14.27,14.05,13.83,13.64,13.43,13.24,12.85,N/A,N/A -2012,11,27,20,30,102440,101230,100040,81.11,0,8.6,9.22,9.38,9.46,9.52,9.56,9.59,9.61,9.64,358.13,358.03000000000003,357.97,357.91,357.86,357.81,357.77,357.73,357.65000000000003,15.9,15.33,15.1,14.88,14.67,14.47,14.26,14.07,13.67,N/A,N/A -2012,11,27,21,30,102480,101260,100080,80.4,0,8.63,9.22,9.36,9.43,9.47,9.49,9.5,9.5,9.49,359.43,359.54,359.64,359.74,359.85,359.94,0.06,0.16,0.41000000000000003,15.870000000000001,15.290000000000001,15.06,14.84,14.620000000000001,14.42,14.21,14.02,13.620000000000001,N/A,N/A -2012,11,27,22,30,102520,101300,100120,80.84,0,8.950000000000001,9.540000000000001,9.66,9.700000000000001,9.72,9.72,9.71,9.69,9.64,11.13,11.01,10.89,10.78,10.67,10.56,10.44,10.33,10.07,15.48,14.88,14.64,14.42,14.21,14.01,13.8,13.61,13.22,N/A,N/A -2012,11,27,23,30,102560,101340,100160,82.59,0,8.96,9.56,9.68,9.73,9.74,9.74,9.73,9.71,9.65,20.34,20.21,20.06,19.91,19.76,19.62,19.46,19.330000000000002,19.03,15.15,14.530000000000001,14.3,14.07,13.85,13.66,13.450000000000001,13.26,12.86,N/A,N/A -2012,11,28,0,30,102630,101400,100210,82.15,0,7.75,8.23,8.33,8.370000000000001,8.4,8.41,8.42,8.42,8.41,19.04,19.23,19.36,19.490000000000002,19.61,19.73,19.85,19.97,20.23,14.63,14.030000000000001,13.790000000000001,13.57,13.35,13.16,12.950000000000001,12.76,12.370000000000001,N/A,N/A -2012,11,28,1,30,102650,101420,100230,80.24,0,7.46,7.95,8.05,8.11,8.14,8.17,8.18,8.19,8.21,24.13,23.990000000000002,23.92,23.86,23.8,23.740000000000002,23.68,23.63,23.52,14.780000000000001,14.18,13.950000000000001,13.73,13.52,13.33,13.120000000000001,12.93,12.540000000000001,N/A,N/A -2012,11,28,2,30,102660,101440,100250,79.95,0,8.370000000000001,8.92,9.03,9.07,9.09,9.1,9.09,9.09,9.05,29.21,29.18,29.11,29.04,28.97,28.91,28.84,28.78,28.64,15.030000000000001,14.42,14.19,13.97,13.75,13.56,13.35,13.15,12.76,N/A,N/A -2012,11,28,3,30,102670,101450,100260,79.13,0,8.48,9.040000000000001,9.15,9.19,9.21,9.21,9.200000000000001,9.19,9.14,31.19,31.34,31.44,31.52,31.6,31.66,31.73,31.8,31.94,14.89,14.280000000000001,14.040000000000001,13.82,13.6,13.41,13.200000000000001,13.01,12.61,N/A,N/A -2012,11,28,4,30,102660,101430,100240,77.49,0,8.74,9.32,9.43,9.48,9.49,9.5,9.49,9.47,9.43,31.26,31.55,31.7,31.84,31.970000000000002,32.08,32.2,32.32,32.55,14.57,13.94,13.700000000000001,13.48,13.27,13.07,12.86,12.67,12.280000000000001,N/A,N/A -2012,11,28,5,30,102660,101430,100240,77.99,0,7.61,8.07,8.16,8.19,8.2,8.2,8.19,8.18,8.13,38.34,38.71,38.910000000000004,39.11,39.300000000000004,39.480000000000004,39.67,39.84,40.230000000000004,14.46,13.86,13.63,13.41,13.200000000000001,13.01,12.790000000000001,12.6,12.21,N/A,N/A -2012,11,28,6,30,102660,101440,100250,83.35000000000001,0,7.43,7.86,7.930000000000001,7.95,7.95,7.95,7.930000000000001,7.9,7.8500000000000005,41.82,42.300000000000004,42.61,42.89,43.160000000000004,43.4,43.67,43.92,44.45,14.6,14,13.77,13.55,13.34,13.15,12.94,12.74,12.35,N/A,N/A -2012,11,28,7,30,102700,101470,100280,83.67,0,7.15,7.57,7.65,7.68,7.69,7.69,7.68,7.67,7.640000000000001,43.99,44.550000000000004,44.9,45.22,45.52,45.800000000000004,46.09,46.36,46.92,14.6,14,13.77,13.55,13.34,13.15,12.94,12.74,12.35,N/A,N/A -2012,11,28,8,30,102710,101480,100290,80.42,0,7.6000000000000005,8.07,8.15,8.18,8.19,8.19,8.18,8.17,8.120000000000001,47.24,47.58,47.78,47.96,48.14,48.31,48.480000000000004,48.65,49,14.69,14.09,13.85,13.63,13.42,13.22,13.01,12.82,12.43,N/A,N/A -2012,11,28,9,30,102720,101490,100300,79.63,0,7.15,7.5600000000000005,7.62,7.640000000000001,7.640000000000001,7.640000000000001,7.62,7.6000000000000005,7.54,47.72,48.11,48.32,48.52,48.71,48.89,49.08,49.26,49.64,14.65,14.06,13.83,13.61,13.4,13.200000000000001,12.99,12.8,12.41,N/A,N/A -2012,11,28,10,30,102770,101540,100350,80.71000000000001,0,7.03,7.41,7.47,7.48,7.47,7.46,7.43,7.41,7.34,48.230000000000004,48.550000000000004,48.75,48.93,49.120000000000005,49.28,49.46,49.63,49.99,14.530000000000001,13.94,13.700000000000001,13.48,13.27,13.08,12.870000000000001,12.68,12.290000000000001,N/A,N/A -2012,11,28,11,30,102810,101580,100390,80.55,0,7.36,7.7700000000000005,7.83,7.84,7.84,7.82,7.8,7.7700000000000005,7.7,43.77,44.13,44.37,44.58,44.79,44.980000000000004,45.19,45.39,45.800000000000004,14.39,13.790000000000001,13.55,13.34,13.120000000000001,12.93,12.72,12.530000000000001,12.14,N/A,N/A -2012,11,28,12,30,102850,101620,100430,83,0,7.47,7.9,7.96,7.98,7.98,7.97,7.95,7.930000000000001,7.87,38.78,39.37,39.72,40.04,40.36,40.65,40.96,41.25,41.87,14.08,13.47,13.23,13.01,12.8,12.61,12.4,12.21,11.82,N/A,N/A -2012,11,28,13,30,102890,101660,100460,84.64,0,7.45,7.86,7.930000000000001,7.95,7.94,7.930000000000001,7.91,7.890000000000001,7.83,37.67,38.31,38.7,39.06,39.410000000000004,39.730000000000004,40.08,40.410000000000004,41.12,13.8,13.17,12.94,12.72,12.5,12.31,12.1,11.92,11.53,N/A,N/A -2012,11,28,14,30,102930,101700,100500,84.03,0,7.0600000000000005,7.43,7.48,7.49,7.48,7.47,7.44,7.42,7.3500000000000005,36.07,36.72,37.13,37.51,37.89,38.230000000000004,38.62,38.980000000000004,39.74,13.620000000000001,13.01,12.77,12.55,12.34,12.15,11.94,11.75,11.370000000000001,N/A,N/A -2012,11,28,15,30,102950,101710,100520,83.79,0,6.95,7.32,7.36,7.37,7.36,7.3500000000000005,7.32,7.3,7.23,36.980000000000004,37.59,37.95,38.29,38.62,38.93,39.28,39.61,40.31,13.63,13.02,12.790000000000001,12.57,12.36,12.17,11.96,11.78,11.39,N/A,N/A -2012,11,28,16,30,102920,101690,100490,82.69,0,6.67,7.01,7.05,7.0600000000000005,7.05,7.04,7.01,6.99,6.92,37.480000000000004,37.97,38.29,38.59,38.88,39.15,39.45,39.730000000000004,40.33,13.76,13.16,12.93,12.71,12.5,12.31,12.11,11.92,11.53,N/A,N/A -2012,11,28,17,30,102900,101670,100470,80.05,0,6.03,6.32,6.3500000000000005,6.36,6.3500000000000005,6.34,6.3100000000000005,6.29,6.23,38.410000000000004,38.95,39.27,39.58,39.88,40.160000000000004,40.47,40.76,41.38,13.99,13.41,13.19,12.97,12.76,12.57,12.370000000000001,12.18,11.790000000000001,N/A,N/A -2012,11,28,18,30,102860,101630,100440,73.79,0,5.37,5.61,5.64,5.64,5.63,5.62,5.6000000000000005,5.58,5.5200000000000005,34.84,35.15,35.34,35.52,35.7,35.86,36.050000000000004,36.22,36.6,14.33,13.780000000000001,13.55,13.35,13.14,12.950000000000001,12.75,12.56,12.17,N/A,N/A -2012,11,28,19,30,102830,101600,100410,68.82000000000001,0,4.8100000000000005,5.0200000000000005,5.05,5.0600000000000005,5.0600000000000005,5.05,5.04,5.03,5,36.46,36.58,36.63,36.68,36.730000000000004,36.77,36.83,36.88,36.96,14.870000000000001,14.35,14.13,13.92,13.72,13.530000000000001,13.32,13.13,12.75,N/A,N/A -2012,11,28,20,30,102780,101560,100370,64.61,0,4.29,4.5,4.53,4.55,4.55,4.5600000000000005,4.5600000000000005,4.5600000000000005,4.55,45.88,45.77,45.67,45.59,45.480000000000004,45.39,45.29,45.18,44.95,15.43,14.93,14.72,14.52,14.31,14.13,13.92,13.73,13.34,N/A,N/A -2012,11,28,21,30,102740,101520,100340,62.370000000000005,0,4.12,4.32,4.36,4.38,4.39,4.4,4.41,4.42,4.42,53.26,53.03,52.88,52.72,52.57,52.43,52.25,52.09,51.71,15.99,15.52,15.31,15.1,14.9,14.71,14.51,14.32,13.93,N/A,N/A -2012,11,28,22,30,102700,101480,100300,63.29,0,4.15,4.3500000000000005,4.39,4.42,4.43,4.44,4.44,4.45,4.46,60.43,60.17,59.980000000000004,59.81,59.61,59.44,59.22,59.03,58.6,16.43,15.97,15.76,15.56,15.36,15.17,14.96,14.780000000000001,14.39,N/A,N/A -2012,11,28,23,30,102690,101480,100290,63.35,0,4.84,5.09,5.14,5.16,5.17,5.18,5.18,5.18,5.17,71.22,70.81,70.56,70.31,70.07000000000001,69.85000000000001,69.59,69.35000000000001,68.83,16.75,16.29,16.080000000000002,15.88,15.68,15.49,15.280000000000001,15.09,14.71,N/A,N/A -2012,11,29,0,30,102700,101490,100310,66.26,0,4.98,5.25,5.3,5.32,5.33,5.34,5.34,5.34,5.34,74.99,74.65,74.43,74.23,74.02,73.82000000000001,73.62,73.42,72.97,16.830000000000002,16.37,16.16,15.96,15.76,15.57,15.370000000000001,15.18,14.790000000000001,N/A,N/A -2012,11,29,1,30,102700,101480,100300,64.61,0,5.37,5.71,5.79,5.84,5.87,5.89,5.91,5.92,5.95,74.3,74.55,74.69,74.81,74.93,75.03,75.13,75.23,75.41,17.14,16.68,16.48,16.27,16.06,15.870000000000001,15.67,15.48,15.08,N/A,N/A -2012,11,29,2,30,102680,101470,100290,65.63,0,5.66,6.0200000000000005,6.1000000000000005,6.140000000000001,6.17,6.2,6.21,6.22,6.24,81.62,81.74,81.78,81.81,81.83,81.86,81.88,81.91,81.96000000000001,17.29,16.830000000000002,16.62,16.42,16.21,16.02,15.81,15.620000000000001,15.22,N/A,N/A -2012,11,29,3,30,102660,101440,100260,61.89,0,5.91,6.2700000000000005,6.34,6.38,6.4,6.41,6.41,6.42,6.41,83.87,84.03,84.15,84.26,84.37,84.48,84.59,84.7,84.92,17.44,16.98,16.78,16.57,16.37,16.18,15.97,15.780000000000001,15.39,N/A,N/A -2012,11,29,4,30,102610,101400,100220,63.38,0,5.66,6.0200000000000005,6.1000000000000005,6.15,6.18,6.2,6.22,6.23,6.25,86.42,86.88,87.16,87.42,87.66,87.89,88.12,88.33,88.79,17.53,17.080000000000002,16.88,16.67,16.47,16.28,16.07,15.88,15.49,N/A,N/A -2012,11,29,5,30,102580,101370,100200,66.16,0,5.94,6.32,6.4,6.45,6.48,6.5,6.51,6.5200000000000005,6.53,95.21000000000001,95.86,96.17,96.42,96.66,96.85000000000001,97.03,97.2,97.52,17.73,17.29,17.09,16.88,16.67,16.48,16.27,16.080000000000002,15.68,N/A,N/A -2012,11,29,6,30,102570,101360,100190,66.17,0,5.9,6.26,6.33,6.37,6.38,6.390000000000001,6.390000000000001,6.390000000000001,6.38,98.03,98.53,98.87,99.19,99.51,99.79,100.08,100.34,100.9,17.61,17.18,16.98,16.78,16.57,16.39,16.18,15.99,15.6,N/A,N/A -2012,11,29,7,30,102570,101360,100180,67.69,0,5.64,5.97,6.03,6.05,6.07,6.07,6.07,6.0600000000000005,6.05,103.4,103.93,104.25,104.55,104.83,105.08,105.36,105.61,106.13,17.580000000000002,17.150000000000002,16.95,16.75,16.55,16.36,16.15,15.96,15.57,N/A,N/A -2012,11,29,8,30,102550,101340,100160,70.94,0,5.37,5.68,5.74,5.76,5.78,5.78,5.79,5.78,5.7700000000000005,106.60000000000001,107.11,107.46000000000001,107.79,108.11,108.4,108.71000000000001,109,109.61,17.53,17.1,16.91,16.7,16.5,16.31,16.11,15.92,15.530000000000001,N/A,N/A -2012,11,29,9,30,102540,101330,100150,72.07000000000001,0,4.19,4.46,4.54,4.6000000000000005,4.64,4.69,4.73,4.76,4.84,97.89,98.58,99.07000000000001,99.52,99.95,100.34,100.75,101.12,101.89,17.57,17.16,16.96,16.76,16.56,16.37,16.17,15.98,15.59,N/A,N/A -2012,11,29,10,30,102520,101310,100140,70.44,0,5.28,5.54,5.5600000000000005,5.5600000000000005,5.54,5.5200000000000005,5.49,5.47,5.41,116.26,116.58,116.76,116.93,117.08,117.23,117.39,117.54,117.83,17.79,17.37,17.17,16.97,16.77,16.580000000000002,16.37,16.19,15.790000000000001,N/A,N/A -2012,11,29,11,30,102510,101300,100130,73.74,0,4.48,4.7700000000000005,4.8500000000000005,4.9,4.95,4.98,5.01,5.04,5.1000000000000005,94.54,95.44,96.02,96.55,97.05,97.52,97.98,98.42,99.31,17.71,17.31,17.11,16.91,16.71,16.52,16.32,16.13,15.74,N/A,N/A -2012,11,29,12,30,102500,101290,100120,72.47,0,4.89,5.18,5.24,5.28,5.3,5.32,5.33,5.34,5.3500000000000005,101.08,101.57000000000001,101.89,102.2,102.49000000000001,102.75,103.03,103.29,103.83,17.97,17.56,17.37,17.17,16.97,16.78,16.580000000000002,16.39,16,N/A,N/A -2012,11,29,13,30,102490,101280,100110,75.01,0,4.89,5.19,5.26,5.29,5.32,5.34,5.3500000000000005,5.36,5.38,94.68,95.5,95.97,96.41,96.83,97.2,97.58,97.92,98.65,18.05,17.650000000000002,17.45,17.25,17.05,16.87,16.66,16.48,16.080000000000002,N/A,N/A -2012,11,29,14,30,102500,101300,100130,75.78,0,4.83,5.11,5.17,5.2,5.22,5.23,5.24,5.24,5.24,101.46000000000001,101.8,102.04,102.27,102.51,102.73,102.96000000000001,103.17,103.62,18.150000000000002,17.75,17.56,17.36,17.16,16.97,16.76,16.580000000000002,16.18,N/A,N/A -2012,11,29,15,30,102500,101290,100120,77.49,0,5.26,5.6000000000000005,5.68,5.72,5.75,5.76,5.78,5.79,5.8,101.49000000000001,102.03,102.4,102.74000000000001,103.07000000000001,103.37,103.7,104,104.63,18.26,17.86,17.67,17.47,17.27,17.080000000000002,16.88,16.69,16.3,N/A,N/A -2012,11,29,16,30,102480,101270,100110,79.67,0,5,5.3,5.36,5.38,5.4,5.41,5.41,5.41,5.4,105.7,106.28,106.61,106.91,107.19,107.45,107.71000000000001,107.95,108.45,18.39,17.990000000000002,17.8,17.6,17.400000000000002,17.21,17.01,16.82,16.43,N/A,N/A -2012,11,29,17,30,102430,101230,100060,78.34,0,5.51,5.86,5.93,5.96,5.97,5.98,5.98,5.98,5.97,106.02,106.36,106.58,106.78,106.98,107.16,107.35000000000001,107.53,107.9,18.54,18.14,17.95,17.75,17.55,17.36,17.16,16.97,16.580000000000002,N/A,N/A -2012,11,29,18,30,102410,101200,100040,80.78,0,6.05,6.47,6.5600000000000005,6.6000000000000005,6.63,6.640000000000001,6.640000000000001,6.640000000000001,6.63,106,106.26,106.41,106.54,106.68,106.79,106.91,107.02,107.25,18.63,18.240000000000002,18.04,17.84,17.64,17.45,17.25,17.06,16.67,N/A,N/A -2012,11,29,19,30,102380,101180,100010,78.03,0,5.79,6.16,6.24,6.2700000000000005,6.28,6.29,6.29,6.29,6.2700000000000005,103.24000000000001,103.75,104.05,104.34,104.61,104.85000000000001,105.12,105.37,105.89,18.73,18.35,18.16,17.96,17.76,17.57,17.37,17.18,16.79,N/A,N/A -2012,11,29,20,30,102330,101130,99960,79.10000000000001,0,5.68,6.0600000000000005,6.140000000000001,6.17,6.19,6.2,6.2,6.2,6.17,101.53,101.86,102.03,102.2,102.35000000000001,102.48,102.63,102.76,103.05,18.78,18.400000000000002,18.21,18.01,17.81,17.62,17.42,17.23,16.84,N/A,N/A -2012,11,29,21,30,102310,101110,99950,77.49,0,5.44,5.8100000000000005,5.9,5.94,5.97,5.98,5.99,6,6,105.57000000000001,105.59,105.65,105.71000000000001,105.76,105.81,105.87,105.92,106.04,18.87,18.490000000000002,18.3,18.1,17.91,17.72,17.52,17.330000000000002,16.94,N/A,N/A -2012,11,29,22,30,102280,101080,99920,75.68,0,5.3500000000000005,5.71,5.8,5.84,5.87,5.88,5.9,5.9,5.91,104.63,104.83,104.92,105.01,105.08,105.15,105.22,105.3,105.45,18.93,18.56,18.37,18.17,17.98,17.79,17.59,17.400000000000002,17.01,N/A,N/A -2012,11,29,23,30,102270,101070,99910,80.17,0,5.93,6.34,6.43,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.51,107.03,107.49000000000001,107.79,108.08,108.35000000000001,108.60000000000001,108.87,109.11,109.64,18.95,18.580000000000002,18.39,18.19,18,17.81,17.6,17.42,17.03,N/A,N/A -2012,11,30,0,30,102270,101080,99910,80.82000000000001,0,5.95,6.38,6.49,6.54,6.57,6.6000000000000005,6.61,6.62,6.62,111.47,112,112.28,112.54,112.77,112.99000000000001,113.21000000000001,113.42,113.83,19.04,18.66,18.48,18.28,18.080000000000002,17.89,17.69,17.5,17.11,N/A,N/A -2012,11,30,1,30,102280,101080,99920,80.47,0,5.94,6.38,6.49,6.54,6.57,6.59,6.6000000000000005,6.61,6.61,115.54,115.87,116.10000000000001,116.3,116.5,116.68,116.87,117.04,117.4,19.13,18.76,18.57,18.37,18.18,17.990000000000002,17.79,17.6,17.21,N/A,N/A -2012,11,30,2,30,102280,101080,99920,81.03,0,6.08,6.53,6.63,6.68,6.72,6.74,6.75,6.76,6.7700000000000005,114.72,114.97,115.13,115.3,115.46000000000001,115.61,115.78,115.93,116.27,19.26,18.900000000000002,18.71,18.51,18.32,18.13,17.92,17.740000000000002,17.35,N/A,N/A -2012,11,30,3,30,102260,101060,99900,83.09,0,6.71,7.25,7.37,7.44,7.48,7.51,7.53,7.54,7.5600000000000005,120.42,120.84,121.08,121.31,121.52,121.71000000000001,121.91,122.10000000000001,122.51,19.41,19.06,18.88,18.68,18.48,18.29,18.1,17.91,17.52,N/A,N/A -2012,11,30,4,30,102240,101040,99880,82,0,7.4,8.02,8.16,8.22,8.26,8.27,8.27,8.27,8.23,115.47,115.88,116.13,116.37,116.58,116.79,117.01,117.21000000000001,117.65,19.580000000000002,19.23,19.05,18.85,18.650000000000002,18.47,18.27,18.080000000000002,17.7,N/A,N/A -2012,11,30,5,30,102200,101010,99850,82.06,0,7.43,8.1,8.26,8.35,8.41,8.45,8.48,8.5,8.52,109.87,110.22,110.47,110.71000000000001,110.94,111.15,111.39,111.60000000000001,112.09,19.77,19.44,19.26,19.07,18.87,18.69,18.490000000000002,18.31,17.92,N/A,N/A -2012,11,30,6,30,102220,101020,99870,81.98,0,7.28,8.01,8.2,8.31,8.38,8.44,8.48,8.51,8.57,117.63,117.77,117.9,118.05,118.22,118.38,118.57000000000001,118.75,119.2,19.92,19.63,19.46,19.27,19.080000000000002,18.900000000000002,18.71,18.53,18.14,N/A,N/A -2012,11,30,7,30,102220,101020,99870,82.04,0,7.3500000000000005,8.07,8.25,8.35,8.42,8.47,8.5,8.53,8.57,127.8,127.84,127.87,127.91,127.95,127.99000000000001,128.06,128.1,128.25,20.11,19.84,19.69,19.5,19.31,19.14,18.94,18.76,18.39,N/A,N/A -2012,11,30,8,30,102210,101020,99860,84.12,0,7.59,8.39,8.59,8.72,8.8,8.870000000000001,8.91,8.94,8.98,122.79,123.02,123.19,123.37,123.56,123.75,123.98,124.21000000000001,124.79,20.14,19.88,19.72,19.53,19.35,19.17,18.98,18.8,18.43,N/A,N/A -2012,11,30,9,30,102200,101010,99850,83.39,0,6.86,7.53,7.69,7.8,7.91,8.01,8.15,8.290000000000001,8.66,125.42,125.41,125.43,125.46000000000001,125.54,125.65,125.9,126.16,127.3,20.16,19.91,19.75,19.57,19.400000000000002,19.22,19.04,18.88,18.55,N/A,N/A -2012,11,30,10,30,102190,101000,99850,85.95,0,5.8100000000000005,6.62,6.94,7.25,7.51,7.76,8,8.21,8.59,133.11,133.63,133.93,134.29,134.56,134.77,135.03,135.28,136.06,20.28,20.06,19.93,19.78,19.63,19.48,19.330000000000002,19.19,18.87,N/A,N/A -2012,11,30,11,30,102180,100990,99830,83.13,0,7.0600000000000005,7.94,8.23,8.47,8.66,8.83,8.98,9.11,9.34,140.03,140.28,140.48,140.72,140.97,141.23,141.54,141.84,142.54,20.55,20.35,20.2,20.04,19.87,19.71,19.53,19.37,19.01,N/A,N/A -2012,11,30,12,30,102180,100990,99840,83.74,0,6.73,7.58,7.87,8.11,8.32,8.51,8.68,8.84,9.14,135.3,135.95,136.39000000000001,136.9,137.45000000000002,137.99,138.59,139.16,140.38,20.56,20.37,20.240000000000002,20.080000000000002,19.93,19.77,19.61,19.45,19.12,N/A,N/A -2012,11,30,13,30,102190,101000,99840,85.28,0,5.76,6.6000000000000005,6.92,7.19,7.43,7.65,7.86,8.05,8.4,140.77,141.3,141.67000000000002,142.1,142.55,142.99,143.46,143.92000000000002,144.89000000000001,20.64,20.46,20.330000000000002,20.18,20.03,19.88,19.72,19.57,19.25,N/A,N/A -2012,11,30,14,30,102200,101010,99860,85.74,0,6.04,6.96,7.28,7.57,7.82,8.040000000000001,8.25,8.43,8.76,138.12,138.85,139.46,140.12,140.77,141.39000000000001,142.08,142.73,144.32,20.67,20.52,20.41,20.28,20.14,20,19.86,19.72,19.42,N/A,N/A -2012,11,30,15,30,102220,101030,99880,85.4,0,6.36,7.3100000000000005,7.66,7.97,8.25,8.49,8.73,8.94,9.32,136.59,137.11,137.54,138.12,138.79,139.49,140.33,141.14000000000001,142.86,20.73,20.580000000000002,20.48,20.35,20.22,20.1,19.96,19.84,19.55,N/A,N/A -2012,11,30,16,30,102170,100980,99830,85.74,0,6.26,7.22,7.58,7.9,8.18,8.43,8.67,8.89,9.31,136.73,137.25,137.75,138.38,139.14000000000001,139.94,140.87,141.76,143.55,20.76,20.63,20.53,20.41,20.29,20.17,20.04,19.91,19.64,N/A,N/A -2012,11,30,17,30,102170,100980,99830,87.37,0,6.0200000000000005,6.96,7.32,7.640000000000001,7.930000000000001,8.19,8.42,8.63,9,134.12,134.73,135.17000000000002,135.75,136.42000000000002,137.15,138.04,138.9,141.02,20.77,20.63,20.53,20.400000000000002,20.28,20.16,20.03,19.91,19.66,N/A,N/A -2012,11,30,18,30,102160,100970,99820,87.28,0,6.3100000000000005,7.3100000000000005,7.7,8.05,8.36,8.64,8.89,9.13,9.540000000000001,141.27,141.84,142.21,142.67000000000002,143.18,143.72,144.35,144.95000000000002,146.31,20.86,20.72,20.61,20.490000000000002,20.35,20.23,20.09,19.95,19.67,N/A,N/A -2012,11,30,19,30,102110,100920,99770,86.7,0,6.23,7.29,7.69,8.06,8.39,8.69,8.950000000000001,9.200000000000001,9.6,134.6,135.33,135.88,136.54,137.26,137.98,138.84,139.67000000000002,141.71,20.900000000000002,20.77,20.68,20.56,20.44,20.32,20.19,20.07,19.81,N/A,N/A -2012,11,30,20,30,102070,100890,99740,85.94,0,7.18,8.34,8.77,9.16,9.51,9.82,10.11,10.370000000000001,10.84,133.79,134.75,135.41,136.2,136.99,137.78,138.62,139.4,141.06,20.92,20.82,20.73,20.62,20.5,20.39,20.26,20.14,19.87,N/A,N/A -2012,11,30,21,30,102070,100880,99730,88.48,0,6.63,7.76,8.19,8.58,8.94,9.26,9.57,9.85,10.39,137.28,138.29,139.01,139.82,140.66,141.5,142.41,143.27,145,20.85,20.73,20.63,20.51,20.39,20.27,20.14,20.02,19.75,N/A,N/A -2012,11,30,22,30,102030,100840,99690,86.49,0,6.92,8.11,8.56,8.98,9.35,9.700000000000001,10.02,10.31,10.8,137.03,137.74,138.25,138.87,139.54,140.23,141.01,141.76,143.47,20.91,20.8,20.71,20.6,20.48,20.37,20.240000000000002,20.12,19.85,N/A,N/A -2012,11,30,23,30,102030,100840,99690,86.24,0,7.47,8.69,9.16,9.59,9.96,10.31,10.64,10.93,11.43,136.89000000000001,137.78,138.42000000000002,139.15,139.85,140.55,141.25,141.91,143.28,20.92,20.830000000000002,20.740000000000002,20.64,20.53,20.42,20.3,20.19,19.93,N/A,N/A -2012,12,1,0,30,102070,100880,99730,87.55,0,6.6000000000000005,7.8,8.28,8.72,9.11,9.47,9.81,10.120000000000001,10.66,147.97,147.87,147.9,148.03,148.24,148.51,148.9,149.31,150.35,20.94,20.84,20.740000000000002,20.63,20.5,20.38,20.25,20.13,19.84,N/A,N/A -2012,12,1,1,30,102050,100870,99720,88.75,0,6.48,7.7,8.2,8.68,9.11,9.51,9.88,10.22,10.82,143.12,143.97,144.6,145.32,145.98,146.63,147.28,147.88,149.17000000000002,20.92,20.84,20.76,20.67,20.56,20.46,20.34,20.22,19.97,N/A,N/A -2012,12,1,2,30,102060,100880,99730,87.83,0,6.74,7.98,8.47,8.93,9.32,9.700000000000001,10.040000000000001,10.35,10.9,144.55,145.20000000000002,145.70000000000002,146.32,146.98,147.67000000000002,148.45000000000002,149.19,150.75,21.02,20.95,20.87,20.78,20.67,20.57,20.45,20.34,20.09,N/A,N/A -2012,12,1,3,30,102070,100880,99730,88,0,6.640000000000001,7.890000000000001,8.38,8.86,9.28,9.68,10.040000000000001,10.38,11,149.70000000000002,150.20000000000002,150.61,151.18,151.8,152.47,153.20000000000002,153.9,155.35,20.98,20.92,20.85,20.76,20.650000000000002,20.55,20.44,20.330000000000002,20.09,N/A,N/A -2012,12,1,4,30,102070,100880,99730,88.18,0.30000000000000004,6.23,7.47,7.95,8.41,8.81,9.18,9.53,9.84,10.41,152.34,152.31,152.43,152.65,152.95000000000002,153.28,153.72,154.16,155.27,21.04,20.98,20.92,20.82,20.72,20.61,20.490000000000002,20.38,20.12,N/A,N/A -2012,12,1,5,30,102090,100900,99750,89.25,5.6000000000000005,5.38,6.59,7.11,7.63,8.08,8.49,8.86,9.22,9.870000000000001,150.45000000000002,150.91,151.32,151.86,152.47,153.12,153.84,154.53,155.92000000000002,20.96,20.92,20.86,20.77,20.68,20.580000000000002,20.47,20.37,20.13,N/A,N/A -2012,12,1,6,30,102060,100870,99730,88.79,0.5,6.11,7.33,7.83,8.33,8.8,9.22,9.64,10.03,10.700000000000001,143.06,144.67000000000002,145.74,146.95000000000002,148.14000000000001,149.28,150.44,151.53,153.53,21.080000000000002,21,20.93,20.85,20.76,20.68,20.580000000000002,20.490000000000002,20.26,N/A,N/A -2012,12,1,7,30,102090,100910,99760,88.47,0,6.63,7.95,8.5,9.01,9.46,9.870000000000001,10.23,10.57,11.120000000000001,152.01,153.22,154.06,154.96,155.83,156.67000000000002,157.48,158.25,159.70000000000002,21.240000000000002,21.19,21.14,21.06,20.97,20.88,20.77,20.67,20.43,N/A,N/A -2012,12,1,8,30,102090,100900,99760,87.8,0,6.890000000000001,8.18,8.700000000000001,9.18,9.59,9.950000000000001,10.28,10.57,11.1,160.34,160.96,161.43,162.05,162.71,163.41,164.17000000000002,164.89000000000001,166.34,21.26,21.240000000000002,21.19,21.12,21.04,20.96,20.86,20.76,20.53,N/A,N/A -2012,12,1,9,30,102080,100900,99750,87.75,0,6.83,8.18,8.71,9.22,9.67,10.08,10.46,10.81,11.4,161.07,161.83,162.39000000000001,163.13,163.96,164.83,165.8,166.74,168.61,21.28,21.27,21.22,21.16,21.1,21.02,20.94,20.87,20.66,N/A,N/A -2012,12,1,10,30,102090,100900,99760,88.60000000000001,0,6.33,7.62,8.16,8.67,9.14,9.58,9.96,10.31,10.870000000000001,164.19,165.25,166.03,166.99,167.9,168.77,169.54,170.25,171.46,21.27,21.27,21.240000000000002,21.2,21.150000000000002,21.1,21.02,20.94,20.72,N/A,N/A -2012,12,1,11,30,102100,100920,99770,89.42,0,5.36,6.65,7.21,7.76,8.24,8.68,9.08,9.44,10.08,165.1,166.58,167.62,168.73,169.83,170.89000000000001,172.03,173.1,175,21.2,21.240000000000002,21.240000000000002,21.21,21.18,21.14,21.080000000000002,21.02,20.830000000000002,N/A,N/A -2012,12,1,12,30,102110,100930,99780,88.72,0,5.62,6.99,7.57,8.11,8.58,9,9.32,9.61,9.93,167.84,168.62,169.23,170,170.84,171.72,172.75,173.73,175.65,21.330000000000002,21.38,21.38,21.35,21.31,21.26,21.18,21.1,20.88,N/A,N/A -2012,12,1,13,30,102110,100930,99780,90.18,0,5.2700000000000005,6.5600000000000005,7.1000000000000005,7.640000000000001,8.09,8.5,8.86,9.18,9.84,163.48,165.26,166.6,168.24,169.88,171.5,173.02,174.4,176.82,21.21,21.240000000000002,21.23,21.2,21.17,21.13,21.080000000000002,21.02,20.84,N/A,N/A -2012,12,1,14,30,102130,100950,99800,90.57000000000001,0,4.83,6.140000000000001,6.7,7.2700000000000005,7.78,8.25,8.63,8.98,9.16,164.75,166.41,167.6,169.02,170.62,172.32,173.95000000000002,175.44,176.88,21.19,21.27,21.28,21.28,21.27,21.25,21.21,21.16,20.98,N/A,N/A -2012,12,1,15,30,102140,100950,99810,91.18,0,4.57,5.79,6.34,6.9,7.41,7.890000000000001,8.28,8.63,8.790000000000001,164.34,165.91,167.23,168.91,170.74,172.64000000000001,174.42000000000002,176.04,177.68,21.16,21.19,21.19,21.19,21.19,21.19,21.16,21.14,21.02,N/A,N/A -2012,12,1,16,30,102140,100950,99810,90.95,0,4.78,5.93,6.44,6.97,7.46,7.930000000000001,8.28,8.59,8.75,157.78,159.35,160.75,162.71,165.03,167.54,169.73,171.68,172.94,21.2,21.2,21.19,21.19,21.19,21.2,21.17,21.14,21.01,N/A,N/A -2012,12,1,17,30,102120,100940,99790,91.53,0,4.7,5.7700000000000005,6.25,6.76,7.28,7.7700000000000005,8.21,8.61,8.870000000000001,158.47,160.34,161.82,163.73,165.66,167.59,169.52,171.33,173.72,21.27,21.23,21.2,21.18,21.17,21.16,21.14,21.12,20.98,N/A,N/A -2012,12,1,18,30,102100,100920,99780,91.01,0,4.62,5.69,6.18,6.69,7.19,7.68,8.16,8.59,8.8,164.01,165.18,166.11,167.29,168.4,169.46,170.44,171.35,173.20000000000002,21.41,21.36,21.32,21.28,21.25,21.21,21.17,21.12,21.03,N/A,N/A -2012,12,1,19,30,102090,100910,99760,90.83,0,4.88,5.9,6.34,6.79,7.2,7.59,7.9,8.17,8.46,157.53,158.62,159.46,160.51,161.56,162.61,163.76,164.84,167.57,21.48,21.39,21.330000000000002,21.26,21.19,21.12,21.03,20.95,20.76,N/A,N/A -2012,12,1,20,30,102070,100890,99740,90.78,0,5.15,6.24,6.7,7.16,7.6000000000000005,8.01,8.41,8.76,9.24,158.41,159.6,160.54,161.73,162.97,164.24,165.55,166.78,168.57,21.48,21.42,21.37,21.31,21.240000000000002,21.18,21.1,21.02,20.82,N/A,N/A -2012,12,1,21,30,102040,100860,99720,91.39,0,5.19,6.42,6.94,7.48,7.95,8.38,8.72,9.02,9.31,158.16,159.45000000000002,160.42000000000002,161.64000000000001,162.72,163.70000000000002,164.36,164.9,165.66,21.41,21.400000000000002,21.38,21.34,21.3,21.25,21.18,21.11,20.85,N/A,N/A -2012,12,1,22,30,102020,100840,99690,91.73,0,5.57,6.86,7.390000000000001,7.9,8.35,8.73,9.040000000000001,9.32,9.63,156.23,157.65,158.74,160.1,161.39000000000001,162.61,163.73,164.75,166.39000000000001,21.25,21.27,21.26,21.23,21.18,21.13,21.06,20.990000000000002,20.77,N/A,N/A -2012,12,1,23,30,102010,100820,99680,92.58,0,5.58,6.88,7.43,7.96,8.41,8.81,9.15,9.44,9.93,157.01,157.74,158.36,159.19,160.21,161.36,162.8,164.21,165.83,21.150000000000002,21.16,21.14,21.11,21.07,21.03,20.98,20.92,20.75,N/A,N/A -2012,12,2,0,30,102020,100840,99700,92.4,0,5.71,7.04,7.61,8.19,8.71,9.19,9.620000000000001,10,10.51,158.72,159.32,159.81,160.49,161.26,162.06,162.86,163.59,164.59,21.12,21.13,21.11,21.09,21.080000000000002,21.06,21.03,20.990000000000002,20.81,N/A,N/A -2012,12,2,1,30,102020,100840,99700,91.72,0,5.76,7.0600000000000005,7.62,8.18,8.69,9.17,9.59,9.97,10.5,157.02,157.46,157.83,158.31,158.86,159.45000000000002,160.15,160.82,162.25,21.11,21.09,21.06,21.02,20.97,20.93,20.87,20.82,20.650000000000002,N/A,N/A -2012,12,2,2,30,102040,100850,99710,92.23,0,5.73,7.0600000000000005,7.640000000000001,8.22,8.76,9.27,9.75,10.18,10.65,155.70000000000002,156.34,156.82,157.44,158.12,158.83,159.70000000000002,160.55,162.11,21.1,21.09,21.07,21.03,20.990000000000002,20.95,20.900000000000002,20.85,20.66,N/A,N/A -2012,12,2,3,30,102040,100860,99710,92.8,0,5.84,7.19,7.79,8.4,8.96,9.47,9.92,10.33,10.870000000000001,157.9,158.47,158.88,159.36,159.9,160.47,161.20000000000002,161.93,163.31,21.1,21.09,21.06,21.02,20.98,20.93,20.87,20.81,20.63,N/A,N/A -2012,12,2,4,30,102030,100850,99710,92.81,0,5.5600000000000005,6.95,7.58,8.24,8.83,9.38,9.81,10.17,10.6,159.97,160.84,161.44,162.14000000000001,162.77,163.35,163.94,164.5,165.45000000000002,21.14,21.17,21.16,21.16,21.14,21.13,21.080000000000002,21.03,20.82,N/A,N/A -2012,12,2,5,30,102020,100840,99700,93.86,0,4.97,6.32,6.94,7.61,8.3,8.99,9.65,10.25,10.93,164.57,165.71,166.59,167.66,168.73,169.8,170.09,170.19,170.83,21.080000000000002,21.12,21.14,21.16,21.17,21.18,21.17,21.150000000000002,21.02,N/A,N/A -2012,12,2,6,30,102040,100860,99710,94.34,0,4.46,5.58,6.140000000000001,6.8100000000000005,7.48,8.15,8.71,9.21,9.51,159.88,161.53,162.68,163.99,164.97,165.75,166.76,167.78,169.53,21.16,21.11,21.1,21.11,21.14,21.18,21.21,21.22,21.1,N/A,N/A -2012,12,2,7,30,102070,100890,99740,96.37,0,4.17,5.3100000000000005,5.88,6.53,7.19,7.88,8.69,9.51,10.08,156.96,158.71,160.16,162.14000000000001,164.23,166.46,168.67000000000002,170.82,172.08,21.16,21.1,21.07,21.05,21.06,21.080000000000002,21.12,21.150000000000002,20.990000000000002,N/A,N/A -2012,12,2,8,30,102060,100880,99740,96.31,0,3.95,5.19,5.76,6.34,6.88,7.37,8.01,8.65,9.24,165.05,166.63,167.86,169.39000000000001,171.01,172.70000000000002,174.47,176.20000000000002,176.36,21.29,21.29,21.27,21.240000000000002,21.21,21.17,21.150000000000002,21.14,20.990000000000002,N/A,N/A -2012,12,2,9,30,102060,100880,99740,95.64,0,4.72,6.140000000000001,6.8500000000000005,7.62,8.36,9.09,9.77,10.39,11.25,164.74,166.15,167.08,168.04,168.84,169.55,170.53,171.55,173.83,21.41,21.45,21.45,21.43,21.400000000000002,21.35,21.28,21.2,21.01,N/A,N/A -2012,12,2,10,30,102080,100900,99760,91.10000000000001,0,5.92,7.49,8.1,8.58,8.92,9.18,9.38,9.56,9.84,171.91,172.48,172.76,172.91,172.86,172.68,172.46,172.24,172.14000000000001,22.05,22.2,22.22,22.17,22.06,21.92,21.740000000000002,21.57,21.21,N/A,N/A -2012,12,2,11,30,102100,100920,99780,94.95,0,4.1,5.58,6.24,6.86,7.36,7.78,8.370000000000001,8.98,9.46,160.55,162.4,163.49,164.29,164.57,164.47,163.99,163.43,163.76,21.57,21.71,21.75,21.77,21.75,21.7,21.61,21.53,21.26,N/A,N/A -2012,12,2,12,30,102110,100930,99790,96.45,0,3.13,4.49,5.2,6.0200000000000005,6.92,7.890000000000001,8.32,8.57,8.97,155.99,158.78,161.11,164.21,167.20000000000002,170.21,171.58,172.42000000000002,174.68,21.35,21.43,21.48,21.55,21.61,21.66,21.6,21.5,21.27,N/A,N/A -2012,12,2,13,30,102130,100950,99800,96.3,0,3.44,4.67,5.2700000000000005,5.98,6.45,6.75,7.08,7.41,7.97,149.5,153,157.62,166.33,170.69,172.07,172.85,173.43,172.9,21.25,21.35,21.43,21.56,21.56,21.48,21.400000000000002,21.330000000000002,21.13,N/A,N/A -2012,12,2,14,30,102160,100980,99840,96.36,0,2.6,3.67,4.3,5.29,5.98,6.4,6.83,7.25,8.02,143.01,146.69,149.95000000000002,154.8,157.91,159.53,160.98,162.32,164.87,21.32,21.36,21.400000000000002,21.5,21.53,21.52,21.52,21.53,21.54,N/A,N/A -2012,12,2,15,30,102170,100990,99850,96.25,0,3.02,4.3500000000000005,5.17,6.23,6.8500000000000005,7.13,7.34,7.51,7.73,124.81,132.54,138.54,145.81,150.08,151.86,153.27,154.49,156.88,21.16,21.35,21.53,21.82,21.96,22.01,21.98,21.93,21.68,N/A,N/A -2012,12,2,16,30,102160,100980,99840,94.94,0,3.24,4.3500000000000005,5.11,6.28,6.96,7.26,7.51,7.73,8.08,123.31,127.95,133.2,142.86,148.26,150.39000000000001,152.20000000000002,153.8,156.53,21.28,21.34,21.490000000000002,21.8,21.94,21.98,21.97,21.93,21.75,N/A,N/A -2012,12,2,17,30,102130,100950,99810,93.8,0,3.85,4.9,5.53,6.390000000000001,7.0200000000000005,7.47,7.67,7.78,7.99,115.21000000000001,120.29,124.99000000000001,131.96,138.05,143.39000000000001,145.92000000000002,147.55,150.12,21.43,21.47,21.55,21.72,21.85,21.96,21.93,21.88,21.68,N/A,N/A -2012,12,2,18,30,102120,100940,99790,94.25,0,3.34,4.36,4.9,5.58,6.36,7.23,7.66,7.96,8.34,115.61,119.13,122.52,128.09,135.14000000000001,143.4,146.86,148.96,151.70000000000002,21.42,21.38,21.39,21.46,21.59,21.76,21.79,21.79,21.63,N/A,N/A -2012,12,2,19,30,102120,100940,99800,92.95,0,4.13,5.21,5.76,6.51,7.29,8.11,8.48,8.72,9.040000000000001,125.63000000000001,129.06,132.25,137.18,141.8,146.25,148.24,149.47,151.4,21.580000000000002,21.63,21.68,21.8,21.91,22.01,21.98,21.92,21.71,N/A,N/A -2012,12,2,20,30,102100,100920,99780,93.11,0,4.3,5.45,6.03,6.72,7.41,8.13,8.57,8.89,9.17,120.8,124.9,127.99000000000001,131.79,135.74,139.99,143.78,147.17000000000002,150.14000000000001,21.490000000000002,21.53,21.55,21.57,21.62,21.69,21.71,21.71,21.53,N/A,N/A -2012,12,2,21,30,102050,100870,99730,93.10000000000001,0,5.28,6.47,6.99,7.57,8.120000000000001,8.66,9.1,9.5,9.73,123.48,126.7,129.42000000000002,133.03,136.36,139.49,142.15,144.49,146.08,21.52,21.580000000000002,21.62,21.67,21.71,21.740000000000002,21.72,21.68,21.43,N/A,N/A -2012,12,2,22,30,102030,100850,99710,93.42,0,5.65,6.96,7.57,8.25,8.9,9.53,10.06,10.52,10.94,125.63000000000001,127.81,129.45,131.54,133.55,135.53,137.43,139.19,142.69,21.5,21.5,21.51,21.53,21.55,21.580000000000002,21.57,21.54,21.36,N/A,N/A -2012,12,2,23,30,102020,100840,99700,92.41,0,6.45,7.82,8.42,9.040000000000001,9.61,10.14,10.53,10.870000000000001,11.05,130.69,131.71,132.46,133.39000000000001,134.38,135.39000000000001,136.6,137.75,141.1,21.580000000000002,21.56,21.54,21.51,21.48,21.46,21.400000000000002,21.36,21.2,N/A,N/A -2012,12,3,0,30,102030,100850,99700,92.83,0,6.42,7.86,8.5,9.16,9.78,10.36,10.89,11.36,11.88,134.5,135.21,135.75,136.44,137.14000000000001,137.84,138.69,139.53,142.07,21.55,21.55,21.53,21.5,21.46,21.42,21.37,21.31,21.13,N/A,N/A -2012,12,3,1,30,102020,100840,99700,92.62,0,6.4,7.75,8.33,8.92,9.46,9.97,10.46,10.9,11.620000000000001,133,134.01,134.76,135.65,136.53,137.39000000000001,138.27,139.11,141.01,21.51,21.47,21.43,21.36,21.3,21.240000000000002,21.16,21.09,20.91,N/A,N/A -2012,12,3,2,30,102020,100840,99690,92.51,0,6.67,8.03,8.6,9.14,9.64,10.1,10.55,10.97,11.69,131.86,132.71,133.39000000000001,134.19,135.01,135.84,136.72,137.56,139.18,21.52,21.48,21.43,21.36,21.3,21.23,21.16,21.09,20.91,N/A,N/A -2012,12,3,3,30,102000,100820,99680,92.57000000000001,0,6.72,8.14,8.75,9.36,9.94,10.49,11.03,11.53,12.41,132.19,133.05,133.71,134.49,135.27,136.01,136.77,137.48,139.16,21.52,21.48,21.44,21.39,21.330000000000002,21.27,21.18,21.11,20.900000000000002,N/A,N/A -2012,12,3,4,30,101990,100810,99660,91.09,0,7.34,8.790000000000001,9.4,9.99,10.53,11.040000000000001,11.53,11.98,12.8,135.15,136.01,136.69,137.51,138.34,139.16,139.92000000000002,140.61,141.64000000000001,21.61,21.580000000000002,21.54,21.48,21.42,21.36,21.29,21.21,21.02,N/A,N/A -2012,12,3,5,30,101950,100770,99630,90.28,0,6.8100000000000005,8.25,8.870000000000001,9.52,10.1,10.64,11.14,11.6,12.32,132.88,134.19,135.1,136.12,137.05,137.92000000000002,138.78,139.58,141.23,21.61,21.59,21.55,21.5,21.43,21.37,21.3,21.22,21.02,N/A,N/A -2012,12,3,6,30,101970,100790,99650,90.4,0,7.05,8.53,9.16,9.8,10.39,10.950000000000001,11.48,11.98,12.75,137.96,138.9,139.56,140.36,141.15,141.93,142.75,143.54,145.11,21.61,21.580000000000002,21.54,21.48,21.41,21.34,21.26,21.18,20.990000000000002,N/A,N/A -2012,12,3,7,30,101960,100780,99640,88.81,0,7.32,8.86,9.51,10.14,10.700000000000001,11.22,11.68,12.09,12.81,140.41,141.54,142.3,143.18,144.01,144.82,145.58,146.28,147.62,21.75,21.75,21.71,21.650000000000002,21.580000000000002,21.5,21.41,21.32,21.1,N/A,N/A -2012,12,3,8,30,101930,100760,99610,88.75,0,7.5600000000000005,9.14,9.78,10.39,10.93,11.43,11.86,12.25,12.81,146.52,147.18,147.69,148.3,148.91,149.49,150.03,150.52,151.37,21.82,21.84,21.81,21.76,21.7,21.63,21.54,21.46,21.23,N/A,N/A -2012,12,3,9,30,101920,100750,99600,88.07000000000001,0,7.66,9.200000000000001,9.85,10.49,11.07,11.620000000000001,12.15,12.64,13.47,143.55,144.35,144.97,145.78,146.56,147.34,148.09,148.81,150.06,21.81,21.81,21.77,21.72,21.66,21.6,21.53,21.46,21.27,N/A,N/A -2012,12,3,10,30,101900,100720,99580,89,0,8.040000000000001,9.64,10.3,10.94,11.51,12.05,12.56,13.030000000000001,13.83,142.74,143.68,144.33,145.1,145.85,146.61,147.37,148.09,149.5,21.85,21.85,21.81,21.75,21.68,21.61,21.52,21.45,21.240000000000002,N/A,N/A -2012,12,3,11,30,101900,100720,99580,88.39,0,8.2,9.77,10.39,10.97,11.47,11.93,12.36,12.75,13.48,146.66,147.23,147.69,148.28,148.88,149.51,150.20000000000002,150.86,152.25,21.94,21.94,21.900000000000002,21.830000000000002,21.75,21.66,21.56,21.46,21.240000000000002,N/A,N/A -2012,12,3,12,30,101900,100730,99590,86.56,0,8.56,10.17,10.82,11.43,11.97,12.47,12.92,13.33,14.030000000000001,148.88,149.33,149.67000000000002,150.14000000000001,150.68,151.25,151.95000000000002,152.62,154.19,22.04,22.07,22.04,21.98,21.91,21.84,21.76,21.68,21.47,N/A,N/A -2012,12,3,13,30,101890,100720,99580,88.51,0,8.72,10.41,11.08,11.72,12.290000000000001,12.82,13.32,13.780000000000001,14.59,151.08,151.91,152.49,153.17000000000002,153.83,154.48,155.15,155.8,157.17000000000002,22.02,22.080000000000002,22.06,22.03,21.98,21.93,21.86,21.8,21.61,N/A,N/A -2012,12,3,14,30,101920,100740,99600,89.25,0,8.75,10.47,11.17,11.83,12.41,12.96,13.44,13.870000000000001,14.63,153.83,154.63,155.25,156.04,156.82,157.61,158.38,159.09,160.31,22.11,22.18,22.17,22.13,22.080000000000002,22.04,21.97,21.900000000000002,21.7,N/A,N/A -2012,12,3,15,30,101900,100730,99590,90.69,0,8.13,9.790000000000001,10.450000000000001,11.08,11.63,12.15,12.620000000000001,13.040000000000001,13.86,151.88,152.93,153.64000000000001,154.46,155.23,155.96,156.63,157.24,158.36,21.94,21.97,21.95,21.91,21.86,21.8,21.72,21.650000000000002,21.45,N/A,N/A -2012,12,3,16,30,101880,100710,99570,91.19,2.6,6.88,8.44,9.1,9.74,10.35,10.91,11.44,11.93,12.790000000000001,155.44,155.91,156.32,156.88,157.48,158.1,158.73,159.32,160.56,21.93,22,21.990000000000002,21.97,21.93,21.900000000000002,21.830000000000002,21.77,21.61,N/A,N/A -2012,12,3,17,30,101840,100670,99530,91.24,0,7.34,9.03,9.75,10.44,11.05,11.61,12.11,12.56,13.39,151.03,151.82,152.43,153.12,153.87,154.67000000000002,155.6,156.51,158.37,21.990000000000002,22.06,22.06,22.04,22.01,21.96,21.87,21.79,21.55,N/A,N/A -2012,12,3,18,30,101820,100640,99500,90.66,0,8.52,10.25,10.950000000000001,11.63,12.24,12.8,13.34,13.83,14.68,156.13,157.08,157.71,158.42000000000002,159.05,159.65,160.20000000000002,160.70000000000002,161.55,22.12,22.150000000000002,22.12,22.07,22.01,21.93,21.85,21.77,21.57,N/A,N/A -2012,12,3,19,30,101790,100620,99480,90.73,0,8.25,9.84,10.450000000000001,11.03,11.56,12.07,12.58,13.06,13.94,154.09,154.59,155,155.5,156.09,156.75,157.55,158.35,159.94,22.18,22.25,22.240000000000002,22.18,22.12,22.04,21.94,21.85,21.64,N/A,N/A -2012,12,3,20,30,101800,100620,99480,95.55,9.9,9.01,10.5,11.07,11.58,12.02,12.43,12.790000000000001,13.11,13.71,164.54,166.1,167.05,168.24,169.54,170.91,172.48,173.98,177.62,21.39,21.26,21.16,21.04,20.93,20.81,20.69,20.580000000000002,20.34,N/A,N/A -2012,12,3,21,30,101800,100620,99480,93.86,0.4,6.8100000000000005,8.05,8.55,9.02,9.43,9.82,10.200000000000001,10.55,11.25,170.1,170.21,170.35,170.62,171.01,171.5,172.20000000000002,172.91,174.74,21.51,21.42,21.330000000000002,21.21,21.1,20.990000000000002,20.87,20.77,20.6,N/A,N/A -2012,12,3,22,30,101760,100580,99440,94.58,0,7.23,8.42,8.85,9.26,9.65,10.040000000000001,10.48,10.91,11.73,161.51,163.14000000000001,164.61,166.72,168.97,171.33,173.66,175.84,179.1,21.5,21.45,21.400000000000002,21.35,21.29,21.240000000000002,21.18,21.13,20.97,N/A,N/A -2012,12,3,23,30,101750,100580,99440,93.88,0,6.96,8.52,9.200000000000001,9.89,10.55,11.19,11.81,12.4,13.43,158.38,160,161.1,162.32,163.41,164.41,165.3,166.11,167.5,21.79,21.84,21.84,21.830000000000002,21.81,21.79,21.76,21.73,21.63,N/A,N/A -2012,12,4,0,30,101770,100590,99460,90.76,0,8.58,10.47,11.28,12.07,12.77,13.41,13.93,14.39,15.02,166.37,166.52,166.64000000000001,166.79,166.94,167.09,167.23,167.37,167.58,22.11,22.19,22.2,22.18,22.150000000000002,22.12,22.07,22.01,21.8,N/A,N/A -2012,12,4,1,30,101800,100620,99490,91.69,0,9,10.63,11.25,11.790000000000001,12.24,12.65,12.950000000000001,13.200000000000001,13.34,162.25,162.97,163.49,164.16,164.69,165.15,165.31,165.39000000000001,166.28,22.02,22.06,22.04,22.01,21.98,21.96,21.93,21.91,21.81,N/A,N/A -2012,12,4,2,30,101800,100630,99490,93.41,0,7.29,8.81,9.450000000000001,10.09,10.73,11.39,12.11,12.81,13.790000000000001,156.76,158.36,159.61,161.29,162.87,164.43,165.73,166.9,168.33,21.71,21.78,21.79,21.82,21.830000000000002,21.85,21.85,21.84,21.72,N/A,N/A -2012,12,4,3,30,101820,100640,99500,94.09,0,6.28,7.8,8.49,9.22,9.89,10.51,11.040000000000001,11.5,12.32,149.33,151.37,152.91,154.82,156.61,158.34,159.88,161.27,163.63,21.650000000000002,21.68,21.68,21.69,21.69,21.68,21.650000000000002,21.62,21.47,N/A,N/A -2012,12,4,4,30,101810,100630,99500,91.77,0,7.140000000000001,8.71,9.36,9.97,10.5,10.98,11.4,11.790000000000001,12.46,157.74,158.93,159.79,160.78,161.76,162.73,163.72,164.64000000000001,166.28,21.990000000000002,22.04,22.02,21.98,21.93,21.87,21.79,21.72,21.51,N/A,N/A -2012,12,4,5,30,101800,100620,99490,91.55,0,6.91,8.41,9.03,9.63,10.18,10.71,11.26,11.77,12.82,158.1,159.44,160.42000000000002,161.6,162.73,163.86,164.95000000000002,165.98,167.84,21.900000000000002,21.96,21.96,21.93,21.88,21.84,21.79,21.73,21.61,N/A,N/A -2012,12,4,6,30,101810,100640,99500,90.54,0,6.5600000000000005,8.14,8.82,9.49,10.1,10.68,11.22,11.73,12.65,163.01,163.99,164.65,165.37,166.07,166.76,167.45000000000002,168.11,169.37,22.03,22.06,22.04,21.990000000000002,21.94,21.88,21.81,21.740000000000002,21.580000000000002,N/A,N/A -2012,12,4,7,30,101820,100650,99510,89.97,0,7.41,9.02,9.68,10.32,10.88,11.41,11.88,12.32,13.040000000000001,166.55,167.55,168.24,169.01,169.72,170.38,171.01,171.6,172.8,22.11,22.18,22.18,22.150000000000002,22.1,22.05,21.98,21.92,21.73,N/A,N/A -2012,12,4,8,30,101850,100670,99540,91.45,0,6.140000000000001,7.69,8.38,9.09,9.75,10.39,11,11.55,12.44,170.95000000000002,172.14000000000001,173.08,174.28,175.42000000000002,176.56,177.55,178.45000000000002,179.91,22.03,22.09,22.09,22.06,22.04,22.01,21.97,21.93,21.8,N/A,N/A -2012,12,4,9,30,101880,100710,99570,92.17,0,4.19,5.7,6.390000000000001,7.09,7.72,8.290000000000001,8.9,9.49,10.46,175.69,176.29,176.93,177.88,178.93,180.04,181.16,182.24,183.61,21.98,22.13,22.16,22.16,22.14,22.1,22.04,21.98,21.8,N/A,N/A -2012,12,4,10,30,101890,100710,99580,90.96000000000001,0,6.51,8.08,8.73,9.33,9.85,10.33,10.77,11.16,11.78,175.83,177,177.79,178.75,179.69,180.63,181.47,182.22,183.19,22.07,22.23,22.28,22.3,22.27,22.22,22.13,22.04,21.79,N/A,N/A -2012,12,4,11,30,101930,100750,99620,93.11,0,4.19,5.82,6.6000000000000005,7.4,8.1,8.71,9.25,9.74,10.71,185.94,185.98,186.06,186.26,186.51,186.78,187.03,187.25,188.02,21.830000000000002,21.95,21.98,22,22,21.990000000000002,21.94,21.88,21.740000000000002,N/A,N/A -2012,12,4,12,30,101980,100800,99660,92.31,0,4.66,6.32,7.1000000000000005,7.930000000000001,8.66,9.31,9.9,10.43,11.23,189,189.34,189.57,189.93,190.26,190.57,190.72,190.82,190.45000000000002,21.97,22.17,22.23,22.29,22.31,22.3,22.25,22.19,21.96,N/A,N/A -2012,12,4,13,30,101990,100820,99680,92.07000000000001,0,4.93,6.46,7.17,7.930000000000001,8.58,9.17,9.63,10.02,10.5,185.92000000000002,186.43,186.77,187.05,187.4,187.8,188.25,188.68,189.36,21.89,22.05,22.11,22.150000000000002,22.16,22.150000000000002,22.1,22.04,21.79,N/A,N/A -2012,12,4,14,30,102030,100850,99710,93.23,0,4.5,6.04,6.78,7.57,8.26,8.88,9.35,9.75,9.96,173.44,176.09,177.95000000000002,179.99,181.6,182.92000000000002,183.72,184.33,185.8,21.77,21.97,22.06,22.12,22.150000000000002,22.150000000000002,22.09,22.03,21.85,N/A,N/A -2012,12,4,15,30,102020,100840,99700,92.10000000000001,0,5,6.5,7.22,7.99,8.72,9.44,10.01,10.51,10.69,179.41,180.67000000000002,181.79,183.29,184.47,185.45000000000002,185.95000000000002,186.27,187.48,21.86,22.05,22.14,22.22,22.28,22.330000000000002,22.3,22.27,22.03,N/A,N/A -2012,12,4,16,30,102020,100840,99700,91.68,0,4.88,6.23,6.87,7.5600000000000005,8.18,8.76,9.24,9.67,10.17,177.53,178.48,179.38,180.53,181.62,182.68,183.86,185.02,187.48,21.97,22.06,22.080000000000002,22.1,22.11,22.11,22.1,22.09,22.04,N/A,N/A -2012,12,4,17,30,101990,100810,99670,91.29,0,5.0200000000000005,6.49,7.18,7.87,8.44,8.92,9.3,9.61,9.700000000000001,178.63,180.14000000000001,181.01,181.84,182.66,183.48,184.25,184.96,185.82,21.990000000000002,22.12,22.16,22.2,22.19,22.16,22.09,22.03,21.89,N/A,N/A -2012,12,4,18,30,101980,100800,99670,90.37,0,5.39,6.62,7.11,7.59,8.08,8.59,9.18,9.77,10.02,182.95000000000002,183.5,184.24,185.36,186.79,188.47,190.1,191.65,194.95000000000002,22.03,22.06,22.04,22.01,21.98,21.96,21.96,21.96,21.98,N/A,N/A -2012,12,4,19,30,101970,100790,99650,88.92,0,5.66,7.07,7.68,8.290000000000001,8.84,9.35,9.77,10.14,10.290000000000001,184.16,185.19,185.93,186.71,187.41,188.06,188.9,189.75,191.33,22.150000000000002,22.27,22.3,22.31,22.3,22.28,22.23,22.18,22.01,N/A,N/A -2012,12,4,20,30,102060,100880,99740,92.14,0,6.38,7.54,7.92,8.290000000000001,8.6,8.870000000000001,9.11,9.32,9.64,236.16,235.07,234.18,233.24,232.42000000000002,231.68,231.05,230.51,229.74,21.92,21.86,21.78,21.67,21.56,21.44,21.31,21.19,20.91,N/A,N/A -2012,12,4,21,30,102070,100890,99740,91.07000000000001,0.4,5.2,5.12,4.94,4.76,4.59,4.44,4.23,4.0200000000000005,3.43,11.71,3.97,358.1,350.86,345.15000000000003,340.44,335.21,330.54,320.67,20.400000000000002,20.2,20.1,19.98,19.85,19.73,19.6,19.490000000000002,19.35,N/A,N/A -2012,12,4,22,30,102060,100870,99720,93.62,1.8,5.54,5.8500000000000005,5.74,5.41,5.08,4.75,4.45,4.19,3.8000000000000003,82.14,82.93,83.55,84.19,84.91,85.67,87.15,88.59,94.88,20.35,20.57,20.64,20.54,20.43,20.31,20.18,20.05,19.78,N/A,N/A -2012,12,4,23,30,102090,100900,99750,91.53,0,7.13,7.76,8.03,8.44,8.6,8.6,8.290000000000001,7.96,7.2,83.54,83.76,84.33,85.39,87.35000000000001,89.82000000000001,90.56,90.81,91.12,20.3,20.05,19.94,19.86,20.02,20.330000000000002,20.3,20.2,19.92,N/A,N/A -2012,12,5,0,30,102100,100910,99760,88.85000000000001,7.7,5.15,5.46,5.71,6.24,6.62,6.9,7.05,7.16,7.16,101.13,101.76,103.07000000000001,106.45,109.27,111.69,113.59,115.22,118.08,20.36,20.05,20.02,20.18,20.330000000000002,20.47,20.47,20.44,20.23,N/A,N/A -2012,12,5,1,30,102100,100910,99750,91.32000000000001,0,5.69,6.0600000000000005,6.26,6.63,6.96,7.25,7.42,7.55,7.73,114.54,115.44,116.73,119.10000000000001,122.54,126.45,129.31,131.75,136.12,20.05,19.76,19.64,19.55,19.57,19.650000000000002,19.69,19.72,19.650000000000002,N/A,N/A -2012,12,5,2,30,102100,100910,99770,90.01,0,4.09,4.82,5.16,5.48,5.74,5.98,6.21,6.43,6.8500000000000005,139.05,141.07,142.70000000000002,145.15,147.52,149.83,151.67000000000002,153.27,155.44,20.45,20.47,20.61,20.900000000000002,21.06,21.14,21.12,21.080000000000002,20.86,N/A,N/A -2012,12,5,3,30,102100,100910,99770,90.24,2.9000000000000004,2.92,3.12,3.33,3.81,4.18,4.5,4.76,5,5.22,182.84,181.23,180.1,178.3,177.67000000000002,177.75,178.69,179.79,182.92000000000002,20.5,20.23,20.11,20,19.96,19.95,19.97,19.98,19.86,N/A,N/A -2012,12,5,4,30,102110,100930,99780,90.86,0,3.0300000000000002,3.3200000000000003,3.47,3.66,3.91,4.19,4.44,4.67,4.64,176.32,176.73,176.93,177.19,177.36,177.48,177.71,177.96,179.75,20.71,20.46,20.31,20.14,20.080000000000002,20.080000000000002,20.14,20.21,20.11,N/A,N/A -2012,12,5,5,30,102110,100920,99770,90.78,0,3.09,3.31,3.39,3.52,3.66,3.79,3.81,3.8000000000000003,3.85,192.98000000000002,193.20000000000002,193.47,194,195.74,198.19,201.49,204.67000000000002,208.63,20.79,20.53,20.39,20.23,20.16,20.14,20.2,20.27,20.240000000000002,N/A,N/A -2012,12,5,6,30,102110,100920,99770,89.43,0,4.18,4.71,4.88,5.04,5.09,5.08,4.93,4.78,4.63,224.32,224.36,224.53,225.01,226.65,228.95000000000002,230.57,231.86,233.96,20.93,20.740000000000002,20.63,20.53,20.55,20.62,20.580000000000002,20.53,20.34,N/A,N/A -2012,12,5,7,30,102110,100920,99770,91.42,0,4.74,5.3100000000000005,5.47,5.59,5.67,5.71,5.67,5.62,5.25,255.23000000000002,255.51000000000002,255.74,256.22,257.19,258.44,260.97,263.52,268.6,20.830000000000002,20.61,20.47,20.31,20.150000000000002,20.01,19.88,19.77,19.62,N/A,N/A -2012,12,5,8,30,102110,100920,99770,93.52,0,3.54,3.94,4.0600000000000005,4.15,4.21,4.24,4.26,4.2700000000000005,4.23,287.85,288.58,288.63,288.43,287.90000000000003,287.21,286.09000000000003,284.99,282.03000000000003,20.71,20.46,20.31,20.150000000000002,19.98,19.82,19.650000000000002,19.490000000000002,19.14,N/A,N/A -2012,12,5,9,30,102120,100930,99770,97.13,0,4.7700000000000005,5,5.01,4.98,5,5.04,5.03,5,4.59,325.13,324.5,323.99,323.32,321.67,319.54,316.72,314.12,310.57,19.77,19.45,19.29,19.11,18.95,18.81,18.7,18.6,18.42,N/A,N/A -2012,12,5,10,30,102120,100930,99770,99.32000000000001,0,3.43,3.6,3.63,3.65,3.71,3.7800000000000002,3.86,3.93,3.8200000000000003,323.27,324.63,325.58,326.74,328.83,331.2,334.15000000000003,336.76,338.11,19.2,18.92,18.78,18.63,18.48,18.34,18.25,18.18,17.98,N/A,N/A -2012,12,5,11,30,102140,100940,99790,94.96000000000001,0,3.41,3.56,3.5700000000000003,3.56,3.5500000000000003,3.5300000000000002,3.5100000000000002,3.48,3.43,334.38,335.07,335.49,335.99,336.57,337.16,338.05,339.07,345.37,19.400000000000002,19.06,18.88,18.69,18.5,18.32,18.14,17.97,17.7,N/A,N/A -2012,12,5,12,30,102130,100930,99780,95.21000000000001,0,3.5,3.63,3.64,3.63,3.62,3.6,3.59,3.58,3.46,341.37,342.05,342.46,342.92,343.45,344,344.28000000000003,344.74,350.78000000000003,19.43,19.09,18.91,18.72,18.52,18.330000000000002,18.21,18.1,17.85,N/A,N/A -2012,12,5,13,30,102130,100940,99780,95.61,1.1,4.83,5.04,5.05,5.0200000000000005,4.97,4.92,4.84,4.7700000000000005,4.5200000000000005,30.87,30.810000000000002,30.810000000000002,30.82,30.85,30.87,30.88,30.8,29.740000000000002,18.97,18.61,18.43,18.240000000000002,18.06,17.89,17.72,17.57,17.35,N/A,N/A -2012,12,5,14,30,102140,100950,99790,94.35000000000001,0,4.26,4.41,4.4,4.3500000000000005,4.28,4.21,4.1,3.99,3.58,14.030000000000001,14.07,14.14,14.19,14.21,14.23,14.21,14.19,14.02,18.86,18.490000000000002,18.32,18.13,17.95,17.78,17.62,17.48,17.34,N/A,N/A -2012,12,5,15,30,102140,100940,99780,95.16,0,4.46,4.66,4.68,4.65,4.61,4.57,4.51,4.45,4.23,8.15,8.69,9.040000000000001,9.38,9.73,10.07,10.49,10.9,12.11,18.84,18.47,18.28,18.1,17.91,17.740000000000002,17.56,17.400000000000002,17.11,N/A,N/A -2012,12,5,16,30,102120,100920,99760,94.51,0,4.66,4.89,4.9,4.88,4.8500000000000005,4.82,4.7700000000000005,4.72,4.58,12.17,12.5,12.72,12.93,13.15,13.35,13.6,13.82,14.32,18.84,18.47,18.29,18.1,17.91,17.73,17.55,17.38,17.06,N/A,N/A -2012,12,5,17,30,102080,100880,99720,94,0,4.94,5.2,5.23,5.23,5.21,5.19,5.15,5.11,5.03,18.2,18.32,18.330000000000002,18.330000000000002,18.31,18.3,18.25,18.21,18.02,18.78,18.400000000000002,18.21,18.02,17.830000000000002,17.650000000000002,17.46,17.28,16.95,N/A,N/A -2012,12,5,18,30,102050,100850,99690,93.58,0,5.05,5.3100000000000005,5.34,5.33,5.3100000000000005,5.29,5.25,5.21,5.12,26.16,26.1,25.990000000000002,25.87,25.72,25.57,25.36,25.14,24.47,18.75,18.37,18.18,17.990000000000002,17.8,17.62,17.42,17.25,16.91,N/A,N/A -2012,12,5,19,30,102030,100830,99670,91.28,0,4.99,5.23,5.25,5.23,5.2,5.16,5.11,5.05,4.88,9.290000000000001,9.23,9.19,9.14,9.06,8.99,8.870000000000001,8.74,8.19,18.71,18.32,18.14,17.95,17.76,17.580000000000002,17.38,17.21,16.85,N/A,N/A -2012,12,5,20,30,101990,100790,99630,91.89,0,4.75,5.01,5.04,5.05,5.05,5.04,5.0200000000000005,5,4.94,358.58,358.64,358.69,358.75,358.81,358.88,358.95,359.02,359.2,18.61,18.23,18.04,17.85,17.650000000000002,17.47,17.27,17.09,16.71,N/A,N/A -2012,12,5,21,30,101970,100770,99610,91.18,0,4.48,4.7,4.74,4.74,4.73,4.72,4.69,4.67,4.61,349.01,349.27,349.48,349.71,349.95,350.19,350.51,350.84000000000003,351.84000000000003,18.650000000000002,18.27,18.080000000000002,17.89,17.69,17.51,17.31,17.13,16.75,N/A,N/A -2012,12,5,22,30,101920,100730,99570,90.82000000000001,0,4.93,5.2,5.24,5.25,5.25,5.24,5.22,5.22,5.19,355.18,355.76,356.12,356.48,356.86,357.22,357.68,358.12,359.37,18.81,18.44,18.25,18.06,17.87,17.69,17.490000000000002,17.32,16.95,N/A,N/A -2012,12,5,23,30,101940,100740,99580,89.63,11,5.71,6.03,6.07,6.07,6.04,6.01,5.96,5.91,5.79,17.09,17.330000000000002,17.490000000000002,17.64,17.79,17.93,18.080000000000002,18.22,18.53,18.72,18.330000000000002,18.14,17.95,17.76,17.580000000000002,17.39,17.21,16.85,N/A,N/A -2012,12,6,0,30,101930,100730,99570,88,0,6.7,7.15,7.24,7.28,7.29,7.28,7.2700000000000005,7.26,7.21,30.47,30.26,30.080000000000002,29.89,29.7,29.52,29.3,29.09,28.53,18.45,18.03,17.85,17.64,17.45,17.27,17.07,16.88,16.51,N/A,N/A -2012,12,6,1,30,101920,100720,99560,87.05,0,5.76,6.13,6.2,6.23,6.25,6.25,6.26,6.2700000000000005,6.3100000000000005,26.3,25.990000000000002,25.77,25.55,25.29,25.03,24.68,24.32,23.11,18.400000000000002,18,17.81,17.62,17.43,17.25,17.06,16.88,16.54,N/A,N/A -2012,12,6,2,30,101900,100700,99540,87.5,0,5.19,5.46,5.5,5.5,5.48,5.46,5.43,5.4,5.32,27.11,27.11,27.09,27.080000000000002,27.05,27.02,26.97,26.92,26.68,18.44,18.05,17.86,17.67,17.47,17.29,17.09,16.91,16.54,N/A,N/A -2012,12,6,3,30,101860,100660,99500,88.19,0,5.48,5.8,5.8500000000000005,5.87,5.87,5.87,5.86,5.8500000000000005,5.84,34.660000000000004,34.84,34.99,35.15,35.32,35.49,35.730000000000004,35.97,36.74,18.51,18.12,17.93,17.740000000000002,17.54,17.36,17.16,16.98,16.6,N/A,N/A -2012,12,6,4,30,101830,100630,99470,89.72,0,5.03,5.3,5.3500000000000005,5.36,5.36,5.36,5.3500000000000005,5.34,5.32,30.150000000000002,30.54,30.78,31.04,31.330000000000002,31.61,31.970000000000002,32.32,33.3,18.28,17.88,17.69,17.490000000000002,17.3,17.12,16.92,16.73,16.36,N/A,N/A -2012,12,6,5,30,101800,100610,99450,91.44,0,5.15,5.46,5.51,5.53,5.54,5.54,5.53,5.5200000000000005,5.49,49.71,50.45,50.82,51.18,51.54,51.88,52.27,52.64,53.550000000000004,18.34,17.93,17.740000000000002,17.54,17.34,17.16,16.95,16.77,16.38,N/A,N/A -2012,12,6,6,30,101790,100590,99430,91.3,0,4.82,5.12,5.18,5.2,5.22,5.22,5.22,5.21,5.19,61.11,61.940000000000005,62.46,62.99,63.51,63.99,64.52,65.02,66.19,18.67,18.28,18.09,17.89,17.69,17.5,17.31,17.12,16.73,N/A,N/A -2012,12,6,7,30,101750,100560,99400,93.9,1.8,7.13,7.61,7.7,7.74,7.75,7.74,7.71,7.69,7.6000000000000005,68.69,69.46000000000001,69.82000000000001,70.14,70.45,70.73,71.02,71.29,71.88,18.48,18.06,17.86,17.66,17.46,17.28,17.080000000000002,16.9,16.56,N/A,N/A -2012,12,6,8,30,101730,100530,99370,91.35000000000001,0.7000000000000001,5.87,6.23,6.3,6.33,6.34,6.34,6.33,6.32,6.28,75.84,76.45,76.81,77.17,77.53,77.86,78.25,78.60000000000001,79.47,18.19,17.77,17.57,17.37,17.17,16.98,16.78,16.6,16.21,N/A,N/A -2012,12,6,9,30,101720,100520,99360,90.83,0,5.63,5.96,6.0200000000000005,6.04,6.04,6.03,6.0200000000000005,6,5.94,92.29,92.55,92.65,92.74,92.84,92.93,93.02,93.11,93.23,18.23,17.81,17.61,17.41,17.21,17.02,16.82,16.63,16.25,N/A,N/A -2012,12,6,10,30,101680,100480,99330,87.44,0,4.28,4.43,4.42,4.39,4.3500000000000005,4.3100000000000005,4.25,4.2,4.05,78.97,79.14,79.34,79.54,79.75,79.96000000000001,80.33,80.77,83.24,18.27,17.87,17.69,17.490000000000002,17.3,17.12,16.92,16.75,16.38,N/A,N/A -2012,12,6,11,30,101660,100470,99310,88.46000000000001,0,4.5600000000000005,4.7700000000000005,4.79,4.79,4.7700000000000005,4.75,4.72,4.68,4.59,73.51,73.69,73.8,73.9,74.02,74.12,74.26,74.4,74.83,18.38,17.990000000000002,17.8,17.6,17.400000000000002,17.21,17.02,16.830000000000002,16.44,N/A,N/A -2012,12,6,12,30,101640,100450,99290,88.69,0,4.74,4.98,5.01,5.01,5,4.98,4.95,4.92,4.84,76.25,76.68,76.93,77.18,77.43,77.66,77.94,78.21000000000001,78.87,18.31,17.91,17.72,17.53,17.330000000000002,17.14,16.94,16.76,16.37,N/A,N/A -2012,12,6,13,30,101630,100430,99270,87.56,0,4.46,4.67,4.7,4.69,4.68,4.66,4.64,4.61,4.55,79.11,79.53,79.8,80.08,80.36,80.64,80.97,81.28,82.05,18.400000000000002,18.01,17.82,17.62,17.42,17.240000000000002,17.03,16.85,16.46,N/A,N/A -2012,12,6,14,30,101630,100440,99280,86.42,0,3.71,3.9,3.94,3.96,3.97,3.97,3.97,3.97,3.96,92.25,92.32000000000001,92.37,92.43,92.49,92.56,92.65,92.74,93.04,18.61,18.23,18.04,17.84,17.64,17.46,17.26,17.07,16.68,N/A,N/A -2012,12,6,15,30,101620,100420,99270,85.54,0,4.5,4.74,4.7700000000000005,4.78,4.7700000000000005,4.76,4.75,4.73,4.69,96.98,97.43,97.69,97.97,98.22,98.46000000000001,98.74000000000001,99.01,99.69,18.86,18.48,18.3,18.1,17.91,17.72,17.53,17.34,16.96,N/A,N/A -2012,12,6,16,30,101590,100400,99240,86.66,0,4.2700000000000005,4.46,4.47,4.46,4.44,4.41,4.38,4.3500000000000005,4.2700000000000005,90.43,90.99,91.34,91.71000000000001,92.08,92.43,92.85000000000001,93.23,94.17,18.87,18.5,18.32,18.12,17.92,17.740000000000002,17.54,17.35,16.97,N/A,N/A -2012,12,6,17,30,101550,100360,99200,84,0,4.17,4.39,4.43,4.44,4.44,4.44,4.43,4.42,4.4,94.39,94.78,95.02,95.26,95.49,95.7,95.94,96.15,96.67,19.02,18.66,18.47,18.27,18.07,17.89,17.69,17.5,17.11,N/A,N/A -2012,12,6,18,30,101530,100340,99180,86.82000000000001,0,4.68,4.91,4.93,4.92,4.9,4.87,4.84,4.8,4.71,93.33,93.92,94.33,94.75,95.17,95.58,96.03,96.46000000000001,97.45,18.87,18.490000000000002,18.3,18.1,17.900000000000002,17.71,17.51,17.330000000000002,16.94,N/A,N/A -2012,12,6,19,30,101490,100300,99150,86.23,0,4.74,5.01,5.05,5.07,5.08,5.07,5.0600000000000005,5.05,5.0200000000000005,100.02,100.51,100.84,101.18,101.51,101.82000000000001,102.16,102.48,103.2,19.02,18.64,18.46,18.25,18.06,17.87,17.67,17.48,17.09,N/A,N/A -2012,12,6,20,30,101470,100270,99120,89.02,0,5,5.29,5.34,5.3500000000000005,5.36,5.3500000000000005,5.33,5.32,5.28,98.14,99.17,99.79,100.39,100.96000000000001,101.5,102.09,102.64,103.85000000000001,18.81,18.43,18.240000000000002,18.04,17.84,17.66,17.46,17.27,16.89,N/A,N/A -2012,12,6,21,30,101440,100250,99100,86.7,0,5.09,5.38,5.44,5.45,5.45,5.44,5.42,5.4,5.3,101.16,101.53,101.8,102.09,102.38,102.67,103.02,103.34,104.25,19.02,18.64,18.46,18.26,18.07,17.88,17.68,17.5,17.12,N/A,N/A -2012,12,6,22,30,101390,100210,99050,85.66,0,4.68,4.93,4.96,4.95,4.94,4.91,4.88,4.84,4.72,104.82000000000001,105.05,105.36,105.7,106.09,106.5,107.07000000000001,107.63,109.58,19.27,18.92,18.73,18.54,18.35,18.16,17.96,17.78,17.41,N/A,N/A -2012,12,6,23,30,101380,100200,99040,87.56,0,5.8500000000000005,6.22,6.28,6.3,6.3,6.28,6.26,6.23,6.16,114.81,115.26,115.56,115.85000000000001,116.16,116.46000000000001,116.82000000000001,117.16,118.07000000000001,19.22,18.86,18.67,18.47,18.28,18.09,17.89,17.71,17.330000000000002,N/A,N/A -2012,12,7,0,30,101380,100200,99050,86.55,0,5.55,5.9,5.96,5.97,5.98,5.97,5.95,5.93,5.88,121.25,121.48,121.69,121.91,122.13,122.34,122.59,122.81,123.37,19.41,19.04,18.86,18.66,18.47,18.28,18.080000000000002,17.89,17.5,N/A,N/A -2012,12,7,1,30,101360,100180,99030,86.91,0,6.4,6.87,6.98,7.0200000000000005,7.05,7.0600000000000005,7.0600000000000005,7.05,7.0200000000000005,120.74000000000001,121.10000000000001,121.33,121.57000000000001,121.83,122.09,122.39,122.68,123.44,19.51,19.150000000000002,18.97,18.78,18.580000000000002,18.400000000000002,18.2,18.02,17.63,N/A,N/A -2012,12,7,2,30,101340,100160,99010,87.91,0,6.22,6.68,6.78,6.82,6.84,6.8500000000000005,6.84,6.84,6.8,128.13,128.32,128.42000000000002,128.51,128.6,128.69,128.79,128.88,129.11,19.62,19.27,19.09,18.89,18.69,18.51,18.31,18.12,17.73,N/A,N/A -2012,12,7,3,30,101340,100150,99010,87.65,0,6.51,6.98,7.07,7.1000000000000005,7.11,7.11,7.09,7.07,7,128.29,128.61,128.75,128.9,129.05,129.19,129.36,129.52,129.94,19.7,19.35,19.16,18.97,18.77,18.580000000000002,18.39,18.2,17.82,N/A,N/A -2012,12,7,4,30,101320,100140,98990,87.21000000000001,0,6.3100000000000005,6.78,6.890000000000001,6.93,6.96,6.97,6.97,6.96,6.94,138.9,139.54,139.92000000000002,140.34,140.75,141.15,141.6,142.01,142.96,19.91,19.57,19.39,19.19,19,18.81,18.61,18.43,18.05,N/A,N/A -2012,12,7,5,30,101320,100130,98990,87.01,0,5.7700000000000005,6.2700000000000005,6.4,6.47,6.5200000000000005,6.5600000000000005,6.59,6.61,6.65,149.78,149.84,149.95000000000002,150.06,150.18,150.29,150.42000000000002,150.54,150.85,20.06,19.740000000000002,19.56,19.36,19.17,18.98,18.79,18.6,18.21,N/A,N/A -2012,12,7,6,30,101300,100120,98970,88.18,0,6.390000000000001,6.92,7.03,7.09,7.11,7.13,7.13,7.13,7.11,144.55,144.79,144.96,145.14000000000001,145.33,145.5,145.72,145.92000000000002,146.47,20.19,19.86,19.68,19.490000000000002,19.3,19.11,18.91,18.73,18.35,N/A,N/A -2012,12,7,7,30,101310,100130,98980,87.97,0,6.01,6.46,6.55,6.58,6.6000000000000005,6.61,6.62,6.63,6.76,147.29,147.67000000000002,147.96,148.31,148.69,149.09,149.65,150.19,152.53,20.29,19.98,19.8,19.61,19.42,19.240000000000002,19.04,18.87,18.51,N/A,N/A -2012,12,7,8,30,101300,100120,98980,89.69,0,6.34,6.82,6.91,6.94,6.97,6.99,7.08,7.19,7.88,147.74,148.12,148.41,148.78,149.28,149.86,151.34,152.97,162.86,20.51,20.21,20.05,19.86,19.67,19.5,19.330000000000002,19.18,19.05,N/A,N/A -2012,12,7,9,30,101280,100100,98960,86.93,0,5.98,6.59,6.7700000000000005,6.88,6.97,7.04,7.1000000000000005,7.15,7.24,172.04,171.98,172.02,172.1,172.22,172.38,172.59,172.81,173.49,21.07,20.85,20.7,20.53,20.35,20.18,20.01,19.84,19.490000000000002,N/A,N/A -2012,12,7,10,30,101290,100110,98970,85.81,0,4.8100000000000005,5.4,5.59,5.74,5.86,5.96,6.05,6.12,6.24,164.88,164.85,164.94,165.09,165.28,165.51,165.84,166.16,167.12,21.150000000000002,20.95,20.81,20.64,20.48,20.31,20.13,19.97,19.62,N/A,N/A -2012,12,7,11,30,101280,100110,98970,87.21000000000001,0,4.6000000000000005,5.26,5.5200000000000005,5.75,5.96,6.140000000000001,6.3100000000000005,6.46,6.71,161.95000000000002,162.93,163.61,164.43,165.26,166.11,167.07,167.99,170.13,21.13,20.93,20.8,20.64,20.490000000000002,20.330000000000002,20.16,20,19.66,N/A,N/A -2012,12,7,12,30,101280,100110,98970,89.3,0,3.79,4.39,4.63,4.84,5.03,5.2,5.37,5.54,6.11,160.06,161.1,161.95000000000002,163.03,164.19,165.45000000000002,167.12,168.78,175.35,21.11,20.93,20.81,20.67,20.53,20.39,20.26,20.14,20.01,N/A,N/A -2012,12,7,13,30,101290,100120,98980,89.64,0,4.11,4.71,4.95,5.19,5.39,5.59,5.83,6.0600000000000005,6.5,155.04,156.01,156.81,158.04,159.71,161.72,165.8,170.24,181.99,21.07,20.88,20.76,20.62,20.5,20.38,20.3,20.23,20.21,N/A,N/A -2012,12,7,14,30,101300,100130,98990,89.66,0,3.24,4.01,4.37,4.7700000000000005,5.15,5.5,5.8,6.05,6.22,162.27,165.66,167.94,170.19,171.87,173.17000000000002,174.29,175.29,179.32,21.21,21.13,21.07,21,20.92,20.830000000000002,20.72,20.61,20.36,N/A,N/A -2012,12,7,15,30,101300,100120,98990,89.83,0,3.56,4.3500000000000005,4.7,5.08,5.42,5.74,6.03,6.3,6.8100000000000005,170.9,173.16,174.72,176.52,178.06,179.44,180.62,181.67000000000002,185.91,21.34,21.23,21.16,21.07,20.98,20.89,20.77,20.650000000000002,20.400000000000002,N/A,N/A -2012,12,7,16,30,101300,100120,98990,88.54,0,3.72,4.39,4.68,5.03,5.4,5.8100000000000005,6.24,6.66,7.25,170.85,173.44,175.45000000000002,178.09,180.41,182.57,183.87,184.85,185.3,21.48,21.36,21.28,21.2,21.12,21.04,20.96,20.88,20.64,N/A,N/A -2012,12,7,17,30,101280,100110,98970,86.59,0,4.11,4.7700000000000005,5.04,5.32,5.58,5.84,6.09,6.33,6.78,172.16,173.27,174.08,175.07,176.07,177.12,178.24,179.32,182.1,21.68,21.52,21.41,21.28,21.150000000000002,21.02,20.89,20.76,20.5,N/A,N/A -2012,12,7,18,30,101260,100090,98950,84.33,0,4.61,5.33,5.61,5.88,6.11,6.32,6.5200000000000005,6.69,7.01,180.12,180.49,180.79,181.12,181.43,181.74,182.04,182.33,182.99,21.900000000000002,21.740000000000002,21.64,21.5,21.36,21.23,21.080000000000002,20.94,20.650000000000002,N/A,N/A -2012,12,7,19,30,101230,100060,98930,84.19,0,4.32,4.95,5.2,5.43,5.64,5.82,5.99,6.140000000000001,6.390000000000001,171.94,172.75,173.39000000000001,174.14000000000001,174.91,175.70000000000002,176.58,177.44,179.29,21.900000000000002,21.740000000000002,21.63,21.5,21.36,21.22,21.07,20.94,20.63,N/A,N/A -2012,12,7,20,30,101210,100040,98900,83.63,0,4.49,5.18,5.44,5.69,5.9,6.09,6.2700000000000005,6.43,6.8,168.37,169.35,170.1,171.02,171.96,172.92000000000002,173.95000000000002,174.92000000000002,176.8,21.900000000000002,21.75,21.64,21.5,21.37,21.23,21.080000000000002,20.95,20.66,N/A,N/A -2012,12,7,21,30,101200,100030,98890,83.64,0,4.55,5.37,5.7,6.01,6.28,6.53,6.76,6.97,7.3100000000000005,173.4,174.11,174.63,175.29,175.96,176.65,177.41,178.14000000000001,179.86,21.86,21.75,21.66,21.54,21.41,21.28,21.14,21,20.7,N/A,N/A -2012,12,7,22,30,101200,100030,98890,87.21000000000001,0,4.18,5.05,5.4,5.71,5.96,6.17,6.390000000000001,6.59,7.01,170.25,171.6,172.66,174.02,175.44,176.94,178.54,180.07,182.5,21.64,21.580000000000002,21.52,21.43,21.32,21.21,21.09,20.98,20.72,N/A,N/A -2012,12,7,23,30,101200,100030,98900,87.35000000000001,0,4.45,5.37,5.76,6.13,6.44,6.72,6.96,7.17,7.49,160.66,162.27,163.5,165.04,166.47,167.85,169.03,170.07,171.79,21.5,21.45,21.400000000000002,21.330000000000002,21.25,21.16,21.05,20.94,20.67,N/A,N/A -2012,12,8,0,30,101210,100040,98900,88.21000000000001,0,4.18,5.08,5.48,5.89,6.26,6.61,6.91,7.17,7.38,156.45000000000002,158.23,159.69,161.62,163.5,165.37,167.17000000000002,168.84,172.59,21.41,21.36,21.32,21.27,21.21,21.150000000000002,21.07,20.98,20.82,N/A,N/A -2012,12,8,1,30,101200,100030,98900,87.3,0,5.08,6.0200000000000005,6.4,6.78,7.12,7.43,7.72,7.98,8.38,156.20000000000002,157.09,157.8,158.8,159.9,161.11,162.49,163.86,166.74,21.46,21.36,21.29,21.2,21.11,21.02,20.92,20.830000000000002,20.63,N/A,N/A -2012,12,8,2,30,101200,100030,98900,86.13,0,5.44,6.45,6.8500000000000005,7.25,7.58,7.88,8.120000000000001,8.34,8.63,154.74,155.53,156.19,157.1,158.08,159.14000000000001,160.41,161.67000000000002,164.88,21.54,21.47,21.41,21.32,21.240000000000002,21.16,21.06,20.96,20.72,N/A,N/A -2012,12,8,3,30,101200,100030,98890,85.52,0,6.03,7.05,7.47,7.87,8.24,8.58,8.91,9.22,9.68,152.49,153.12,153.66,154.4,155.19,156.04,156.99,157.92000000000002,159.95000000000002,21.55,21.47,21.39,21.29,21.2,21.11,21.01,20.92,20.71,N/A,N/A -2012,12,8,4,30,101180,100010,98880,87.02,0,6.09,7.0600000000000005,7.44,7.79,8.1,8.4,8.69,8.96,9.51,149.86,150.64000000000001,151.29,152.20000000000002,153.20000000000002,154.3,155.56,156.79,159.45000000000002,21.490000000000002,21.37,21.29,21.18,21.080000000000002,20.98,20.88,20.78,20.6,N/A,N/A -2012,12,8,5,30,101200,100020,98890,86.12,0,6.17,7.25,7.7,8.15,8.56,8.93,9.28,9.61,10.14,153.92000000000002,154.81,155.47,156.28,157.05,157.83,158.63,159.4,161.07,21.580000000000002,21.490000000000002,21.42,21.31,21.21,21.11,21,20.89,20.650000000000002,N/A,N/A -2012,12,8,6,30,101200,100030,98900,86.68,0,5.91,6.95,7.38,7.78,8.14,8.47,8.76,9.02,9.4,162.83,163.39000000000001,163.82,164.42000000000002,165.04,165.71,166.46,167.21,169.11,21.7,21.61,21.54,21.43,21.32,21.21,21.09,20.97,20.7,N/A,N/A -2012,12,8,7,30,101230,100060,98930,88.92,0,5.73,6.78,7.22,7.65,8.03,8.39,8.73,9.05,9.59,167.31,168.18,168.85,169.72,170.57,171.46,172.39000000000001,173.29,175.22,21.69,21.61,21.53,21.43,21.330000000000002,21.23,21.12,21.02,20.79,N/A,N/A -2012,12,8,8,30,101230,100060,98930,89.67,0,4.72,5.7700000000000005,6.24,6.72,7.15,7.5600000000000005,7.94,8.290000000000001,8.81,170.73,171.57,172.27,173.19,174.1,175.05,176.03,176.98,179.62,21.68,21.64,21.59,21.52,21.45,21.36,21.26,21.16,20.91,N/A,N/A -2012,12,8,9,30,101250,100080,98950,90.48,0,4.66,5.7700000000000005,6.2700000000000005,6.79,7.26,7.7,8.07,8.39,8.85,173.62,174.86,175.76,176.79,177.58,178.21,178.75,179.23,180.54,21.72,21.71,21.68,21.62,21.55,21.47,21.38,21.28,21.04,N/A,N/A -2012,12,8,10,30,101270,100100,98960,90.89,0,4.3,5.4,5.91,6.41,6.87,7.32,7.7700000000000005,8.19,8.77,175.08,176.03,176.81,177.93,179.06,180.25,181.26,182.18,183.33,21.68,21.67,21.64,21.580000000000002,21.52,21.46,21.39,21.330000000000002,21.11,N/A,N/A -2012,12,8,11,30,101310,100140,99010,91.71000000000001,0,4.03,5.12,5.63,6.12,6.5200000000000005,6.86,7.17,7.46,7.890000000000001,169.44,170.96,172.12,173.34,174.37,175.27,176.58,178.01,181.95000000000002,21.64,21.650000000000002,21.63,21.580000000000002,21.52,21.43,21.32,21.22,21.01,N/A,N/A -2012,12,8,12,30,101320,100150,99010,91.9,0,4.3100000000000005,5.37,5.86,6.38,6.7700000000000005,7.05,7.16,7.19,7.28,174.26,176.32,178.01,180.16,182.37,184.70000000000002,188.34,192.18,195.52,21.66,21.67,21.67,21.650000000000002,21.61,21.56,21.5,21.43,21.18,N/A,N/A -2012,12,8,13,30,101330,100160,99030,93.52,0,3.8200000000000003,4.8500000000000005,5.32,5.8100000000000005,6.26,6.68,6.88,6.99,7.18,166.39000000000001,170.4,174,179.97,184.70000000000002,188.59,190.42000000000002,191.39000000000001,193.52,21.53,21.6,21.64,21.7,21.73,21.73,21.68,21.61,21.37,N/A,N/A -2012,12,8,14,30,101360,100190,99060,93.27,0,3.9,4.88,5.37,5.95,6.54,7.17,7.61,7.930000000000001,8.19,169.55,172.86,175.8,180.35,184.37,188.13,190.07,191.12,192.02,21.52,21.54,21.55,21.59,21.62,21.650000000000002,21.650000000000002,21.650000000000002,21.47,N/A,N/A -2012,12,8,15,30,101370,100190,99060,92.58,0,4.1,5.0200000000000005,5.44,5.89,6.390000000000001,6.96,7.45,7.9,7.97,167.38,168.93,170.25,172.08,174.07,176.32,178.4,180.32,183.91,21.57,21.51,21.48,21.45,21.42,21.39,21.34,21.28,21.21,N/A,N/A -2012,12,8,16,30,101350,100180,99050,90.19,0,4.8500000000000005,5.8100000000000005,6.23,6.640000000000001,6.97,7.24,7.41,7.53,7.82,170.84,172.07,173.20000000000002,174.91,176.59,178.29,179.63,180.75,182.38,21.79,21.740000000000002,21.7,21.68,21.650000000000002,21.64,21.62,21.6,21.5,N/A,N/A -2012,12,8,17,30,101330,100160,99030,89.53,0,5.19,6.09,6.48,6.9,7.3100000000000005,7.73,8.11,8.44,8.620000000000001,166.48,167.75,168.89000000000001,170.79,172.63,174.52,175.96,177.16,178.65,21.87,21.79,21.740000000000002,21.7,21.67,21.66,21.67,21.68,21.62,N/A,N/A -2012,12,8,18,30,101310,100140,99010,88.74,0,5.5,6.41,6.7700000000000005,7.11,7.43,7.74,8.06,8.370000000000001,8.950000000000001,158.42000000000002,159.59,160.57,161.96,163.43,165.04,166.69,168.27,170.69,21.92,21.81,21.740000000000002,21.64,21.56,21.48,21.400000000000002,21.330000000000002,21.17,N/A,N/A -2012,12,8,19,30,101290,100120,98990,87.09,0,5.48,6.45,6.83,7.21,7.54,7.86,8.15,8.42,8.92,155.43,156.19,156.79,157.69,158.69,159.79,161.09,162.37,165.06,21.98,21.89,21.82,21.72,21.63,21.54,21.44,21.34,21.12,N/A,N/A -2012,12,8,20,30,101280,100110,98980,87.71000000000001,0,5.4,6.42,6.86,7.2700000000000005,7.640000000000001,7.99,8.32,8.63,9.17,159.31,160.24,160.93,161.77,162.6,163.45000000000002,164.31,165.13,166.63,21.97,21.91,21.85,21.75,21.67,21.57,21.47,21.38,21.17,N/A,N/A -2012,12,8,21,30,101270,100100,98970,86.22,0,5.73,6.87,7.3500000000000005,7.79,8.16,8.5,8.82,9.120000000000001,9.65,165.37,166.11,166.63,167.29,167.97,168.69,169.4,170.08,171.07,22.01,21.990000000000002,21.94,21.87,21.79,21.7,21.59,21.490000000000002,21.25,N/A,N/A -2012,12,8,22,30,101280,100110,98980,87.97,0,4.97,6.1000000000000005,6.6000000000000005,7.09,7.53,7.94,8.32,8.68,9.3,169.33,169.88,170.29,170.87,171.42000000000002,171.97,172.44,172.84,173.48,21.88,21.87,21.830000000000002,21.76,21.68,21.6,21.490000000000002,21.38,21.11,N/A,N/A -2012,12,8,23,30,101260,100090,98960,88.74,0,5.2,6.390000000000001,6.93,7.47,7.96,8.41,8.84,9.25,9.92,166.04,167.23,168.11,169.17000000000002,170.16,171.13,171.99,172.77,173.79,21.830000000000002,21.830000000000002,21.81,21.76,21.7,21.64,21.55,21.47,21.26,N/A,N/A -2012,12,9,0,30,101280,100110,98980,89.96000000000001,0,6.0200000000000005,7.23,7.76,8.27,8.72,9.13,9.5,9.84,10.4,161.91,163.05,163.95000000000002,165.03,166.06,167.12,168.19,169.22,171.02,21.830000000000002,21.82,21.78,21.72,21.650000000000002,21.57,21.48,21.39,21.16,N/A,N/A -2012,12,9,1,30,101270,100100,98970,89.71000000000001,0,5.79,7.07,7.61,8.13,8.59,9.02,9.4,9.75,10.34,168.20000000000002,169.04,169.65,170.28,170.83,171.32,171.78,172.19,173.08,21.830000000000002,21.8,21.75,21.68,21.6,21.51,21.400000000000002,21.31,21.080000000000002,N/A,N/A -2012,12,9,2,30,101300,100130,98990,88.62,0,5.2700000000000005,6.43,6.95,7.47,7.92,8.35,8.73,9.07,9.66,177.84,178.33,178.73,179.3,179.86,180.46,181.07,181.65,182.70000000000002,21.86,21.86,21.82,21.75,21.68,21.6,21.51,21.41,21.19,N/A,N/A -2012,12,9,3,30,101290,100120,98980,89.53,0,5.12,6.2700000000000005,6.7700000000000005,7.26,7.68,8.07,8.42,8.74,9.26,177.63,177.78,177.94,178.21,178.5,178.81,179.17000000000002,179.53,180.41,21.81,21.79,21.75,21.67,21.580000000000002,21.48,21.37,21.26,21,N/A,N/A -2012,12,9,4,30,101260,100090,98960,89.68,0,5.22,6.49,7.05,7.61,8.08,8.51,8.9,9.25,9.88,171.77,172.99,173.85,174.69,175.4,176.03,176.57,177.03,177.64000000000001,21.830000000000002,21.830000000000002,21.79,21.73,21.650000000000002,21.56,21.46,21.35,21.09,N/A,N/A -2012,12,9,5,30,101250,100080,98950,90.14,0,5.3100000000000005,6.54,7.09,7.640000000000001,8.11,8.56,8.93,9.27,9.790000000000001,169.8,170.77,171.49,172.34,173.13,173.9,174.66,175.38,176.91,21.830000000000002,21.82,21.78,21.72,21.650000000000002,21.57,21.47,21.37,21.14,N/A,N/A -2012,12,9,6,30,101260,100090,98960,88.17,0,6.13,7.36,7.9,8.41,8.86,9.27,9.65,9.99,10.53,171.59,172.39000000000001,172.96,173.58,174.12,174.61,175.04,175.44,176.15,22.01,21.97,21.92,21.84,21.75,21.650000000000002,21.55,21.44,21.18,N/A,N/A -2012,12,9,7,30,101270,100110,98970,88,0,6.3500000000000005,7.63,8.18,8.72,9.200000000000001,9.65,10.06,10.450000000000001,11.09,174.63,175.23,175.69,176.26,176.83,177.42000000000002,178,178.55,179.47,22.09,22.07,22.03,21.96,21.89,21.81,21.71,21.62,21.39,N/A,N/A -2012,12,9,8,30,101280,100110,98970,87.57000000000001,0,6.51,7.78,8.31,8.82,9.27,9.68,10.06,10.41,11.03,175.17000000000002,175.71,176.13,176.67000000000002,177.20000000000002,177.74,178.3,178.84,179.82,22.150000000000002,22.13,22.09,22.02,21.94,21.86,21.76,21.67,21.44,N/A,N/A -2012,12,9,9,30,101280,100110,98980,88.42,0,6.22,7.48,8.02,8.540000000000001,8.99,9.4,9.76,10.08,10.61,176.32,176.82,177.22,177.8,178.38,178.99,179.63,180.24,181.42000000000002,22.12,22.11,22.07,22,21.92,21.84,21.740000000000002,21.64,21.39,N/A,N/A -2012,12,9,10,30,101280,100110,98980,90.73,0,5.63,6.88,7.43,7.98,8.47,8.91,9.28,9.620000000000001,10.13,179.4,180.44,181.25,182.24,183.17000000000002,184.11,185.08,186,188,22.06,22.05,22.02,21.96,21.89,21.81,21.71,21.6,21.34,N/A,N/A -2012,12,9,11,30,101290,100120,98990,93.03,0,5.22,6.41,6.92,7.44,7.91,8.35,8.76,9.15,9.74,184.36,185.83,186.91,188.24,189.47,190.66,191.62,192.45000000000002,193.26,21.98,21.96,21.92,21.86,21.79,21.72,21.64,21.56,21.36,N/A,N/A -2012,12,9,12,30,101320,100150,99020,94.58,0,4.25,5.44,5.97,6.49,6.92,7.3,7.7700000000000005,8.26,9.06,187.76,189.1,190.11,191.28,192.61,194.11,196.25,198.57,200.74,21.91,21.92,21.900000000000002,21.85,21.78,21.71,21.650000000000002,21.580000000000002,21.44,N/A,N/A -2012,12,9,13,30,101330,100160,99030,94.92,0,4.3100000000000005,5.67,6.32,6.93,7.49,8,8.39,8.72,9.1,194.23000000000002,195.66,196.93,198.95000000000002,200.88,202.83,204.04,204.9,204.99,21.95,22.06,22.1,22.11,22.09,22.06,22,21.94,21.76,N/A,N/A -2012,12,9,14,30,101360,100190,99060,96.52,0,3.23,4.3500000000000005,4.93,5.62,6.49,7.58,8.19,8.540000000000001,9.17,179.88,184.75,188.28,192.05,195.53,199.06,200.92000000000002,201.99,203.39000000000001,21.75,21.78,21.79,21.8,21.85,21.93,21.92,21.87,21.81,N/A,N/A -2012,12,9,15,30,101360,100190,99060,97.58,0,3.04,3.98,4.48,5.19,6.07,7.2,7.87,8.3,9.03,171.88,178.69,183.79,190.07,194.43,197.27,199.20000000000002,200.64000000000001,202.57,21.68,21.63,21.63,21.67,21.72,21.77,21.75,21.72,21.67,N/A,N/A -2012,12,9,16,30,101330,100160,99030,95.81,0,4.54,5.69,6.2700000000000005,6.93,7.54,8.14,8.68,9.18,9.96,187.66,189.39000000000001,190.77,192.52,194.04,195.41,196.46,197.34,199.52,22.05,22,21.97,21.95,21.92,21.900000000000002,21.85,21.8,21.59,N/A,N/A -2012,12,9,17,30,101290,100130,99000,95.69,0,4.54,5.66,6.22,6.87,7.5200000000000005,8.22,8.94,9.65,10.26,191.44,192.84,194.01,195.85,197.72,199.70000000000002,201.15,202.34,202.59,22.17,22.11,22.080000000000002,22.07,22.1,22.150000000000002,22.19,22.23,22.13,N/A,N/A -2012,12,9,18,30,101280,100110,98980,95.98,0,5.04,6.05,6.51,6.99,7.46,7.92,8.4,8.870000000000001,10.09,184.38,185.59,186.61,188.1,189.77,191.70000000000002,194.4,197.3,202.47,22.26,22.150000000000002,22.080000000000002,22,21.94,21.88,21.85,21.830000000000002,21.95,N/A,N/A -2012,12,9,19,30,101250,100080,98960,93.96000000000001,0,5.21,6.43,7,7.65,8.31,9.02,9.790000000000001,10.56,11.99,192.35,193.87,195.1,196.81,198.38,199.92000000000002,201.14000000000001,202.20000000000002,203.21,22.47,22.46,22.45,22.46,22.47,22.5,22.52,22.55,22.45,N/A,N/A -2012,12,9,20,30,101210,100050,98920,93.75,0,5.51,6.8500000000000005,7.46,8.09,8.64,9.16,9.64,10.1,11.11,191.46,192.48000000000002,193.28,194.33,195.28,196.19,197.04,197.82,198.98000000000002,22.52,22.53,22.52,22.48,22.44,22.38,22.32,22.26,22.11,N/A,N/A -2012,12,9,21,30,101190,100030,98900,94.83,0,4.72,6.09,6.7,7.28,7.8100000000000005,8.3,8.8,9.3,10.450000000000001,186.45000000000002,188.19,189.58,191.4,193.18,195,196.64000000000001,198.17000000000002,200.35,22.41,22.490000000000002,22.5,22.48,22.45,22.42,22.38,22.34,22.25,N/A,N/A -2012,12,9,22,30,101150,99990,98860,92.42,0,4.92,6.38,7.07,7.7700000000000005,8.4,8.98,9.6,10.200000000000001,11.48,186.70000000000002,188.23,189.39000000000001,190.71,191.89000000000001,193.01,194.58,196.29,199.98000000000002,22.36,22.52,22.580000000000002,22.64,22.68,22.71,22.740000000000002,22.77,22.64,N/A,N/A -2012,12,9,23,30,101130,99970,98840,91.74,0,5.09,6.5200000000000005,7.17,7.8500000000000005,8.53,9.27,10.15,11.07,12.06,182.92000000000002,184.24,185.39000000000001,187.20000000000002,189.12,191.22,193.02,194.68,195.72,22.28,22.43,22.490000000000002,22.56,22.64,22.72,22.77,22.81,22.61,N/A,N/A -2012,12,10,0,30,101120,99960,98830,92.58,0,5.3,6.74,7.42,8.13,8.76,9.36,10.07,10.81,12.07,181.57,182.57,183.37,184.46,185.8,187.44,189.82,192.48000000000002,195.62,22.240000000000002,22.36,22.41,22.46,22.53,22.62,22.72,22.830000000000002,22.72,N/A,N/A -2012,12,10,1,30,101120,99950,98820,93.99,0,5.38,6.78,7.45,8.15,8.78,9.4,9.96,10.46,11.290000000000001,176.07,176.98,177.75,178.81,179.95000000000002,181.24,182.62,183.99,186.48,22.16,22.23,22.25,22.240000000000002,22.23,22.22,22.19,22.14,21.96,N/A,N/A -2012,12,10,2,30,101100,99930,98810,94.4,0,6.03,7.48,8.14,8.83,9.450000000000001,10.02,10.53,10.98,11.63,177.97,178.49,178.92000000000002,179.48,180.02,180.58,181.12,181.61,182.79,22.23,22.28,22.28,22.26,22.23,22.19,22.12,22.04,21.830000000000002,N/A,N/A -2012,12,10,3,30,101080,99910,98790,94.22,0,6.24,7.71,8.370000000000001,9.02,9.6,10.16,10.71,11.23,12.17,178.1,179.18,179.96,180.9,181.76,182.59,183.31,183.95000000000002,184.81,22.26,22.32,22.31,22.29,22.25,22.2,22.150000000000002,22.09,21.92,N/A,N/A -2012,12,10,4,30,101060,99890,98770,92.74,0,6.57,8.08,8.74,9.38,9.96,10.5,11,11.450000000000001,12.200000000000001,183.16,183.43,183.66,184.01,184.38,184.8,185.25,185.67000000000002,186.52,22.35,22.400000000000002,22.39,22.35,22.3,22.25,22.18,22.1,21.900000000000002,N/A,N/A -2012,12,10,5,30,101030,99860,98740,91.86,0,7.42,8.950000000000001,9.61,10.25,10.8,11.32,11.8,12.24,13.030000000000001,184.70000000000002,185.21,185.58,186.02,186.43,186.85,187.27,187.67000000000002,188.41,22.44,22.490000000000002,22.48,22.46,22.41,22.36,22.29,22.22,22.02,N/A,N/A -2012,12,10,6,30,101050,99890,98760,92.67,0,6.28,7.8100000000000005,8.5,9.18,9.77,10.33,10.85,11.33,12.200000000000001,186.65,187.23,187.69,188.28,188.82,189.36,189.86,190.31,191.17000000000002,22.3,22.400000000000002,22.41,22.38,22.34,22.29,22.22,22.14,21.95,N/A,N/A -2012,12,10,7,30,101050,99880,98760,93.31,0,6.34,7.9,8.620000000000001,9.36,10,10.58,11.11,11.61,12.44,193.46,193.96,194.32,194.84,195.33,195.8,196.21,196.56,197.06,22.28,22.37,22.38,22.37,22.34,22.3,22.23,22.17,21.97,N/A,N/A -2012,12,10,8,30,101010,99850,98720,94.36,0,4.86,6.38,7.11,7.86,8.540000000000001,9.19,9.790000000000001,10.35,11.44,202.20000000000002,202.09,202.06,202.24,202.5,202.86,203.24,203.6,204.04,22.080000000000002,22.18,22.19,22.19,22.16,22.13,22.07,22.01,21.85,N/A,N/A -2012,12,10,9,30,101110,99920,98770,99.10000000000001,4.4,11.76,12.81,13.19,13.4,13.55,13.66,13.75,13.82,13.94,330.29,330.1,330.24,330.41,330.57,330.73,330.90000000000003,331.06,331.43,17.26,16.73,16.53,16.36,16.22,16.080000000000002,15.950000000000001,15.83,15.59,N/A,N/A -2012,12,10,10,30,101190,99990,98830,95.18,150.9,12.89,13.99,14.290000000000001,14.43,14.51,14.57,14.6,14.63,14.72,349.23,349.25,349.21,349.13,349.04,348.94,348.81,348.68,348.25,15.89,15.23,14.99,14.780000000000001,14.59,14.41,14.23,14.07,13.76,N/A,N/A -2012,12,10,11,30,101240,100040,98870,91.9,12.8,12.950000000000001,14.040000000000001,14.3,14.4,14.450000000000001,14.47,14.47,14.450000000000001,14.4,340.15000000000003,340.55,340.8,341.06,341.33,341.59000000000003,341.88,342.16,342.82,15.290000000000001,14.6,14.35,14.13,13.92,13.73,13.540000000000001,13.370000000000001,13.01,N/A,N/A -2012,12,10,12,30,101330,100120,98940,86,0,14.09,15.35,15.67,15.83,15.93,15.99,16.02,16.03,16.03,346.93,346.72,346.58,346.44,346.31,346.18,346.04,345.91,345.62,14.040000000000001,13.24,12.950000000000001,12.71,12.48,12.280000000000001,12.07,11.870000000000001,11.48,N/A,N/A -2012,12,10,13,30,101380,100160,98980,75.71000000000001,0,16.22,17.79,18.19,18.41,18.53,18.62,18.67,18.7,18.72,344.26,344.19,344.18,344.15000000000003,344.11,344.07,344.01,343.96,343.86,13.32,12.42,12.120000000000001,11.86,11.620000000000001,11.41,11.19,10.99,10.59,N/A,N/A -2012,12,10,14,30,101450,100220,99040,72.65,0,16.080000000000002,17.61,18.01,18.22,18.34,18.43,18.490000000000002,18.52,18.56,346.61,346.51,346.45,346.40000000000003,346.34000000000003,346.29,346.23,346.18,346.07,12.76,11.84,11.53,11.27,11.03,10.82,10.6,10.4,10.01,N/A,N/A -2012,12,10,15,30,101550,100330,99140,72.59,0,14.33,15.6,15.950000000000001,16.13,16.25,16.32,16.37,16.41,16.45,352.22,351.97,351.8,351.64,351.48,351.34000000000003,351.18,351.04,350.75,12.21,11.31,11,10.74,10.51,10.3,10.08,9.88,9.48,N/A,N/A -2012,12,10,16,30,101620,100390,99200,71.67,0,12.67,13.700000000000001,13.96,14.09,14.17,14.23,14.26,14.280000000000001,14.290000000000001,351.16,350.94,350.79,350.66,350.53000000000003,350.43,350.31,350.21,349.99,11.67,10.8,10.5,10.24,10.01,9.8,9.58,9.38,8.98,N/A,N/A -2012,12,10,17,30,101620,100390,99200,65.02,0,12.89,13.91,14.15,14.27,14.33,14.36,14.370000000000001,14.370000000000001,14.35,354.89,354.83,354.79,354.74,354.68,354.63,354.58,354.52,354.39,11.450000000000001,10.57,10.27,10.02,9.790000000000001,9.59,9.370000000000001,9.18,8.790000000000001,N/A,N/A -2012,12,10,18,30,101650,100420,99230,63.83,0,11.55,12.450000000000001,12.68,12.8,12.88,12.93,12.97,12.99,13.030000000000001,351.05,350.85,350.75,350.64,350.55,350.46,350.36,350.27,350.09000000000003,11.700000000000001,10.88,10.59,10.35,10.120000000000001,9.91,9.700000000000001,9.5,9.11,N/A,N/A -2012,12,10,19,30,101680,100450,99260,59.93,0,11.1,11.94,12.15,12.26,12.32,12.370000000000001,12.4,12.42,12.44,350.75,350.69,350.64,350.6,350.56,350.53000000000003,350.49,350.46,350.39,12.07,11.27,10.99,10.74,10.51,10.31,10.09,9.89,9.49,N/A,N/A -2012,12,10,20,30,101660,100440,99240,58.88,0,10.53,11.3,11.49,11.58,11.65,11.69,11.71,11.73,11.75,347.17,347.14,347.12,347.1,347.07,347.04,347.01,346.99,346.93,12.290000000000001,11.52,11.24,10.99,10.77,10.56,10.34,10.14,9.74,N/A,N/A -2012,12,10,21,30,101660,100440,99250,57.03,0,10.14,10.86,11.040000000000001,11.13,11.19,11.22,11.25,11.26,11.27,350.27,350.12,350.01,349.90000000000003,349.79,349.7,349.6,349.5,349.32,12.49,11.74,11.47,11.23,11.01,10.8,10.58,10.38,9.97,N/A,N/A -2012,12,10,22,30,101660,100440,99250,57.32,0,9.86,10.55,10.71,10.78,10.83,10.86,10.870000000000001,10.88,10.870000000000001,351.54,351.48,351.42,351.36,351.3,351.25,351.19,351.14,351.05,12.47,11.73,11.450000000000001,11.21,10.98,10.78,10.56,10.36,9.950000000000001,N/A,N/A -2012,12,10,23,30,101710,100480,99290,55.730000000000004,0,9.99,10.68,10.85,10.92,10.96,10.99,11,11,11,354.63,354.51,354.45,354.40000000000003,354.35,354.3,354.25,354.2,354.1,12.18,11.43,11.16,10.91,10.69,10.48,10.26,10.06,9.66,N/A,N/A -2012,12,11,0,30,101780,100550,99360,55.59,0,9.84,10.48,10.63,10.69,10.72,10.74,10.74,10.73,10.71,1.34,1.09,0.92,0.75,0.6,0.46,0.31,0.18,359.90000000000003,11.6,10.83,10.55,10.3,10.08,9.870000000000001,9.65,9.450000000000001,9.05,N/A,N/A -2012,12,11,1,30,101830,100590,99390,55.730000000000004,0,9.8,10.44,10.57,10.63,10.65,10.66,10.66,10.65,10.620000000000001,1.59,1.3900000000000001,1.26,1.1400000000000001,1.02,0.91,0.8,0.6900000000000001,0.48,11.06,10.27,9.99,9.75,9.52,9.32,9.1,8.9,8.5,N/A,N/A -2012,12,11,2,30,101860,100630,99430,56.22,0,10.07,10.72,10.85,10.9,10.92,10.93,10.92,10.9,10.86,2.27,2.13,2.0300000000000002,1.94,1.86,1.78,1.69,1.61,1.44,10.68,9.870000000000001,9.59,9.35,9.120000000000001,8.91,8.700000000000001,8.5,8.1,N/A,N/A -2012,12,11,3,30,101890,100650,99440,56.800000000000004,0,9.870000000000001,10.49,10.6,10.64,10.65,10.65,10.63,10.61,10.55,4.11,4.09,4.08,4.07,4.05,4.04,4.0200000000000005,3.99,3.95,10.27,9.46,9.18,8.93,8.71,8.5,8.28,8.08,7.69,N/A,N/A -2012,12,11,4,30,101890,100640,99440,59.43,0,10.07,10.69,10.8,10.84,10.84,10.84,10.81,10.790000000000001,10.72,2.59,2.77,2.89,2.99,3.09,3.16,3.25,3.33,3.47,9.78,8.94,8.65,8.4,8.17,7.96,7.74,7.54,7.15,N/A,N/A -2012,12,11,5,30,101890,100650,99440,61.89,0,10.200000000000001,10.85,10.98,11.03,11.05,11.05,11.040000000000001,11.02,10.97,6.1000000000000005,6.34,6.48,6.6000000000000005,6.71,6.8100000000000005,6.91,7,7.17,9.34,8.48,8.18,7.930000000000001,7.7,7.48,7.26,7.0600000000000005,6.66,N/A,N/A -2012,12,11,6,30,101930,100690,99480,63.96,0,9.9,10.51,10.64,10.68,10.700000000000001,10.71,10.69,10.68,10.63,10.540000000000001,10.73,10.81,10.89,10.96,11.02,11.09,11.15,11.27,9.09,8.23,7.930000000000001,7.68,7.44,7.23,7.01,6.8,6.4,N/A,N/A -2012,12,11,7,30,101930,100680,99470,64.21000000000001,0,10.06,10.69,10.82,10.870000000000001,10.89,10.89,10.88,10.86,10.82,17.81,17.94,17.990000000000002,18.04,18.080000000000002,18.12,18.17,18.21,18.28,8.78,7.91,7.61,7.36,7.12,6.91,6.69,6.48,6.08,N/A,N/A -2012,12,11,8,30,101960,100720,99500,64.13,0,9.950000000000001,10.55,10.67,10.71,10.72,10.72,10.700000000000001,10.67,10.61,21.68,21.73,21.81,21.88,21.94,22,22.05,22.11,22.2,8.52,7.640000000000001,7.34,7.08,6.84,6.63,6.42,6.21,5.8100000000000005,N/A,N/A -2012,12,11,9,30,101970,100720,99510,64.15,0,9.51,10.07,10.17,10.21,10.22,10.22,10.200000000000001,10.18,10.120000000000001,20.900000000000002,21.080000000000002,21.2,21.32,21.42,21.52,21.62,21.7,21.89,8.49,7.63,7.33,7.08,6.8500000000000005,6.640000000000001,6.42,6.22,5.82,N/A,N/A -2012,12,11,10,30,102020,100770,99560,64.56,0,8.84,9.33,9.41,9.44,9.44,9.43,9.41,9.38,9.31,20.39,20.650000000000002,20.84,20.990000000000002,21.14,21.28,21.41,21.54,21.79,8.51,7.68,7.390000000000001,7.140000000000001,6.9,6.69,6.48,6.28,5.88,N/A,N/A -2012,12,11,11,30,102040,100800,99580,65.87,0,8.64,9.09,9.16,9.18,9.17,9.16,9.13,9.1,9.02,23.78,24.04,24.25,24.43,24.6,24.76,24.92,25.07,25.38,8.6,7.78,7.49,7.24,7.01,6.8,6.59,6.390000000000001,5.99,N/A,N/A -2012,12,11,12,30,102050,100800,99590,66.93,0,8.18,8.59,8.65,8.66,8.65,8.63,8.61,8.58,8.5,26.03,26.39,26.61,26.810000000000002,27.01,27.18,27.36,27.54,27.88,8.77,7.98,7.69,7.45,7.22,7.01,6.8,6.6000000000000005,6.21,N/A,N/A -2012,12,11,13,30,102030,100790,99580,69.18,0,8.77,9.23,9.3,9.31,9.3,9.27,9.24,9.200000000000001,9.120000000000001,26.32,26.76,27.02,27.25,27.48,27.68,27.900000000000002,28.1,28.5,8.84,8.03,7.74,7.49,7.26,7.0600000000000005,6.84,6.65,6.25,N/A,N/A -2012,12,11,14,30,102090,100850,99640,69,0,8.44,8.89,8.950000000000001,8.950000000000001,8.93,8.91,8.870000000000001,8.84,8.75,26.38,26.78,27.060000000000002,27.310000000000002,27.560000000000002,27.78,28.02,28.240000000000002,28.7,8.84,8.03,7.74,7.5,7.2700000000000005,7.07,6.8500000000000005,6.65,6.26,N/A,N/A -2012,12,11,15,30,102090,100840,99630,66.9,0,8.11,8.51,8.58,8.58,8.58,8.56,8.53,8.5,8.42,26.22,26.62,26.87,27.1,27.310000000000002,27.51,27.72,27.91,28.3,8.950000000000001,8.17,7.88,7.640000000000001,7.41,7.2,6.99,6.79,6.390000000000001,N/A,N/A -2012,12,11,16,30,102080,100840,99630,64.77,0,7.47,7.83,7.86,7.86,7.84,7.82,7.79,7.75,7.68,23.72,24.080000000000002,24.35,24.59,24.82,25.03,25.25,25.46,25.87,9.200000000000001,8.45,8.17,7.930000000000001,7.7,7.5,7.29,7.09,6.7,N/A,N/A -2012,12,11,17,30,102070,100820,99610,61.74,0,7.11,7.44,7.48,7.48,7.46,7.45,7.42,7.390000000000001,7.3100000000000005,15.06,15.46,15.69,15.91,16.12,16.32,16.53,16.73,17.13,9.58,8.85,8.58,8.34,8.120000000000001,7.92,7.71,7.5200000000000005,7.12,N/A,N/A -2012,12,11,18,30,102100,100860,99660,59.35,0,5.96,6.2,6.24,6.25,6.24,6.23,6.21,6.19,6.140000000000001,14.57,14.780000000000001,14.91,15.040000000000001,15.16,15.27,15.38,15.49,15.700000000000001,10.08,9.39,9.13,8.9,8.67,8.47,8.26,8.06,7.67,N/A,N/A -2012,12,11,19,30,102070,100830,99620,56.800000000000004,0,6.19,6.47,6.5200000000000005,6.53,6.53,6.5200000000000005,6.51,6.5,6.47,11.290000000000001,11.47,11.58,11.67,11.76,11.84,11.93,12,12.16,10.59,9.91,9.65,9.42,9.200000000000001,9,8.78,8.59,8.19,N/A,N/A -2012,12,11,20,30,102090,100850,99650,54.06,0,4.37,4.57,4.59,4.59,4.59,4.58,4.57,4.57,4.54,12.51,12.950000000000001,13.24,13.51,13.77,14,14.23,14.450000000000001,14.88,11.13,10.52,10.27,10.040000000000001,9.83,9.63,9.41,9.21,8.82,N/A,N/A -2012,12,11,21,30,102020,100790,99590,53.19,0,5.84,6.11,6.16,6.19,6.19,6.2,6.19,6.19,6.17,8.2,8.700000000000001,9,9.27,9.52,9.74,9.96,10.17,10.58,11.69,11.05,10.8,10.57,10.35,10.15,9.93,9.73,9.33,N/A,N/A -2012,12,11,22,30,102110,100880,99680,49.11,0,4.65,4.82,4.83,4.82,4.8,4.79,4.7700000000000005,4.75,4.71,2.7600000000000002,3.18,3.45,3.69,3.92,4.13,4.3500000000000005,4.5600000000000005,4.96,12.040000000000001,11.450000000000001,11.21,10.99,10.77,10.58,10.36,10.16,9.77,N/A,N/A -2012,12,11,23,30,102050,100820,99620,51.9,0,7.25,7.62,7.68,7.69,7.69,7.68,7.66,7.640000000000001,7.6000000000000005,12.88,13.120000000000001,13.25,13.370000000000001,13.49,13.59,13.71,13.8,14.01,12.290000000000001,11.63,11.38,11.15,10.92,10.72,10.51,10.31,9.91,N/A,N/A -2012,12,12,0,30,102100,100860,99670,54.57,0,8.14,8.58,8.64,8.65,8.64,8.620000000000001,8.6,8.57,8.51,15.41,15.66,15.73,15.81,15.89,15.96,16.05,16.12,16.28,12.13,11.43,11.18,10.950000000000001,10.72,10.52,10.31,10.11,9.71,N/A,N/A -2012,12,12,1,30,102210,100980,99780,54.49,0,6.76,7.09,7.140000000000001,7.15,7.140000000000001,7.13,7.1000000000000005,7.08,7.0200000000000005,16.68,16.96,17.06,17.16,17.240000000000002,17.32,17.400000000000002,17.46,17.61,11.91,11.25,11,10.77,10.540000000000001,10.34,10.13,9.93,9.53,N/A,N/A -2012,12,12,2,30,102210,100970,99770,55.660000000000004,0,7.97,8.4,8.46,8.47,8.47,8.46,8.43,8.4,8.33,21.62,21.76,21.85,21.92,22,22.06,22.13,22.19,22.31,11.73,11.03,10.77,10.540000000000001,10.32,10.120000000000001,9.9,9.700000000000001,9.3,N/A,N/A -2012,12,12,3,30,102250,101020,99810,55.56,0,7.67,8.07,8.13,8.14,8.13,8.11,8.08,8.06,7.99,22.53,22.91,23.16,23.37,23.59,23.78,23.990000000000002,24.18,24.57,11.65,10.96,10.700000000000001,10.47,10.24,10.040000000000001,9.83,9.63,9.23,N/A,N/A -2012,12,12,4,30,102280,101050,99840,57.15,0,7.33,7.7,7.75,7.76,7.75,7.74,7.72,7.69,7.63,27.02,27.35,27.59,27.810000000000002,28.01,28.2,28.39,28.57,28.93,11.71,11.02,10.77,10.540000000000001,10.31,10.120000000000001,9.9,9.700000000000001,9.3,N/A,N/A -2012,12,12,5,30,102310,101070,99870,58.19,0,8,8.41,8.47,8.48,8.47,8.45,8.41,8.38,8.3,22.41,22.830000000000002,23.1,23.34,23.57,23.78,24.01,24.21,24.64,11.53,10.82,10.56,10.33,10.1,9.9,9.69,9.49,9.09,N/A,N/A -2012,12,12,6,30,102340,101100,99900,57.4,0,6.86,7.2,7.25,7.26,7.25,7.25,7.22,7.2,7.140000000000001,31.54,31.84,32.05,32.230000000000004,32.410000000000004,32.57,32.730000000000004,32.88,33.2,11.75,11.11,10.86,10.63,10.41,10.22,10,9.81,9.41,N/A,N/A -2012,12,12,7,30,102380,101150,99950,56.34,0,6.7700000000000005,7.09,7.13,7.13,7.11,7.09,7.0600000000000005,7.03,6.96,26.62,27.02,27.26,27.48,27.7,27.88,28.09,28.28,28.67,11.82,11.17,10.93,10.700000000000001,10.48,10.290000000000001,10.07,9.88,9.49,N/A,N/A -2012,12,12,8,30,102410,101170,99970,56.870000000000005,0,7.5600000000000005,7.92,7.97,7.96,7.94,7.91,7.87,7.83,7.74,22.77,23.1,23.3,23.48,23.650000000000002,23.8,23.96,24.11,24.41,11.59,10.91,10.66,10.43,10.21,10.01,9.8,9.61,9.21,N/A,N/A -2012,12,12,9,30,102450,101210,100010,57.620000000000005,0,7.63,8,8.05,8.05,8.03,8.01,7.97,7.930000000000001,7.84,24.330000000000002,24.580000000000002,24.740000000000002,24.88,25.03,25.150000000000002,25.28,25.400000000000002,25.650000000000002,11.24,10.55,10.3,10.07,9.85,9.65,9.44,9.25,8.86,N/A,N/A -2012,12,12,10,30,102480,101240,100030,59.1,0,8.09,8.52,8.58,8.58,8.56,8.540000000000001,8.5,8.46,8.370000000000001,26.77,27.02,27.21,27.37,27.53,27.66,27.810000000000002,27.94,28.22,10.98,10.26,9.99,9.76,9.540000000000001,9.34,9.13,8.94,8.540000000000001,N/A,N/A -2012,12,12,11,30,102500,101260,100050,57.81,0,7.63,8.02,8.08,8.09,8.08,8.06,8.03,8,7.92,28.59,28.810000000000002,28.94,29.07,29.18,29.28,29.38,29.48,29.67,10.98,10.290000000000001,10.03,9.8,9.58,9.38,9.17,8.98,8.59,N/A,N/A -2012,12,12,12,30,102530,101290,100080,55.910000000000004,0,7.62,8,8.05,8.06,8.040000000000001,8.03,7.99,7.96,7.88,27.91,28.150000000000002,28.32,28.46,28.6,28.72,28.85,28.97,29.2,10.96,10.26,10,9.77,9.55,9.36,9.15,8.96,8.56,N/A,N/A -2012,12,12,13,30,102550,101310,100100,56.85,0,7.62,8.02,8.07,8.08,8.06,8.040000000000001,8.01,7.98,7.9,27.87,28.07,28.19,28.3,28.400000000000002,28.490000000000002,28.580000000000002,28.66,28.82,10.98,10.28,10.02,9.790000000000001,9.57,9.38,9.17,8.97,8.59,N/A,N/A -2012,12,12,14,30,102590,101350,100140,55.71,0,7.68,8.07,8.13,8.13,8.120000000000001,8.1,8.07,8.03,7.95,28.78,29.05,29.21,29.35,29.490000000000002,29.61,29.75,29.86,30.09,10.91,10.21,9.96,9.73,9.51,9.32,9.11,8.92,8.53,N/A,N/A -2012,12,12,15,30,102620,101380,100170,55.28,0,7.59,7.99,8.040000000000001,8.06,8.05,8.03,8,7.97,7.9,29.38,29.55,29.67,29.78,29.87,29.96,30.04,30.12,30.27,11.01,10.32,10.06,9.84,9.620000000000001,9.43,9.22,9.03,8.64,N/A,N/A -2012,12,12,16,30,102630,101390,100180,52.19,0,7.17,7.54,7.59,7.61,7.6000000000000005,7.59,7.57,7.54,7.49,28.310000000000002,28.47,28.55,28.64,28.7,28.76,28.830000000000002,28.88,28.98,11.200000000000001,10.52,10.27,10.05,9.83,9.64,9.43,9.24,8.85,N/A,N/A -2012,12,12,17,30,102620,101380,100170,48.54,0,6.94,7.29,7.34,7.36,7.3500000000000005,7.34,7.32,7.3,7.25,28.01,28.23,28.36,28.48,28.59,28.69,28.79,28.88,29.07,11.55,10.89,10.64,10.42,10.200000000000001,10.01,9.8,9.61,9.22,N/A,N/A -2012,12,12,18,30,102620,101380,100170,47.17,0,6.4,6.72,6.7700000000000005,6.78,6.78,6.78,6.7700000000000005,6.75,6.72,26.92,27.14,27.26,27.37,27.47,27.57,27.66,27.75,27.92,11.89,11.27,11.02,10.8,10.59,10.39,10.19,9.99,9.6,N/A,N/A -2012,12,12,19,30,102600,101360,100160,45.31,0,5.72,6,6.05,6.0600000000000005,6.07,6.07,6.0600000000000005,6.0600000000000005,6.04,27.830000000000002,27.900000000000002,27.94,27.97,28,28.03,28.05,28.07,28.1,12.33,11.74,11.5,11.28,11.07,10.88,10.66,10.47,10.08,N/A,N/A -2012,12,12,20,30,102570,101340,100140,43.5,0,5.39,5.65,5.7,5.72,5.73,5.73,5.73,5.73,5.72,29.79,29.69,29.63,29.55,29.490000000000002,29.43,29.36,29.29,29.14,12.790000000000001,12.22,11.99,11.77,11.56,11.36,11.15,10.96,10.56,N/A,N/A -2012,12,12,21,30,102560,101330,100130,40.43,0,4.86,5.1000000000000005,5.15,5.17,5.18,5.19,5.19,5.19,5.19,33.980000000000004,33.84,33.730000000000004,33.63,33.53,33.44,33.35,33.26,33.06,13.33,12.780000000000001,12.55,12.34,12.13,11.93,11.72,11.53,11.13,N/A,N/A -2012,12,12,22,30,102550,101320,100120,38.800000000000004,0,4.92,5.16,5.2,5.22,5.23,5.23,5.23,5.23,5.23,35.660000000000004,35.63,35.6,35.56,35.53,35.5,35.46,35.44,35.37,13.72,13.18,12.96,12.75,12.530000000000001,12.34,12.13,11.93,11.540000000000001,N/A,N/A -2012,12,12,23,30,102540,101310,100110,39.47,0,5.24,5.5,5.54,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.55,5.54,33.64,33.89,34.05,34.2,34.33,34.45,34.58,34.7,34.94,13.98,13.44,13.22,13.01,12.790000000000001,12.6,12.39,12.200000000000001,11.8,N/A,N/A -2012,12,13,0,30,102560,101330,100130,42.15,0,5.57,5.84,5.88,5.89,5.89,5.89,5.88,5.87,5.84,38.300000000000004,38.730000000000004,39,39.24,39.480000000000004,39.68,39.89,40.09,40.5,14.11,13.57,13.35,13.13,12.92,12.73,12.52,12.32,11.93,N/A,N/A -2012,12,13,1,30,102560,101330,100140,44.660000000000004,0,5.36,5.6000000000000005,5.63,5.64,5.63,5.62,5.6000000000000005,5.59,5.55,45.17,45.68,45.980000000000004,46.25,46.52,46.75,47,47.230000000000004,47.71,14.14,13.61,13.38,13.17,12.96,12.77,12.56,12.36,11.97,N/A,N/A -2012,12,13,2,30,102570,101340,100150,47.95,0,5.38,5.65,5.69,5.71,5.71,5.72,5.71,5.7,5.69,52.38,53.050000000000004,53.43,53.76,54.08,54.370000000000005,54.67,54.95,55.5,14.27,13.74,13.51,13.3,13.09,12.9,12.69,12.49,12.1,N/A,N/A -2012,12,13,3,30,102570,101350,100150,52.22,0,5.37,5.63,5.67,5.69,5.69,5.69,5.68,5.67,5.65,60.09,60.45,60.67,60.870000000000005,61.06,61.24,61.43,61.6,61.95,14.35,13.82,13.6,13.38,13.17,12.98,12.77,12.58,12.18,N/A,N/A -2012,12,13,4,30,102570,101340,100150,51.620000000000005,0,5.11,5.3500000000000005,5.38,5.39,5.39,5.39,5.37,5.37,5.34,68.06,68.3,68.45,68.58,68.71000000000001,68.82000000000001,68.94,69.06,69.28,14.56,14.040000000000001,13.82,13.61,13.4,13.21,13,12.8,12.41,N/A,N/A -2012,12,13,5,30,102560,101340,100150,54.44,0,4.98,5.22,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.26,5.25,5.22,67.89,68.27,68.52,68.75,68.97,69.17,69.38,69.57000000000001,69.97,14.63,14.11,13.89,13.68,13.47,13.280000000000001,13.07,12.88,12.48,N/A,N/A -2012,12,13,6,30,102580,101350,100160,56.49,0,4.79,5.01,5.04,5.04,5.04,5.04,5.0200000000000005,5.01,4.98,71.72,72.09,72.33,72.54,72.74,72.91,73.11,73.28,73.64,14.73,14.23,14.01,13.8,13.59,13.4,13.19,13,12.6,N/A,N/A -2012,12,13,7,30,102600,101370,100180,58.480000000000004,0,4.8100000000000005,5.01,5.04,5.04,5.04,5.03,5.01,5,4.97,74.62,74.93,75.10000000000001,75.25,75.4,75.52,75.65,75.78,76.03,14.71,14.21,14,13.790000000000001,13.58,13.39,13.18,12.98,12.59,N/A,N/A -2012,12,13,8,30,102590,101370,100180,57.6,0,4.8500000000000005,5.05,5.08,5.08,5.07,5.0600000000000005,5.04,5.03,4.99,70.08,70.36,70.55,70.72,70.89,71.03,71.18,71.32000000000001,71.61,14.790000000000001,14.290000000000001,14.07,13.870000000000001,13.66,13.47,13.26,13.06,12.67,N/A,N/A -2012,12,13,9,30,102590,101370,100180,59.1,0,5.21,5.45,5.48,5.48,5.48,5.47,5.46,5.44,5.4,66.56,66.86,67.05,67.23,67.39,67.54,67.71000000000001,67.85,68.15,14.790000000000001,14.280000000000001,14.06,13.85,13.64,13.450000000000001,13.24,13.05,12.65,N/A,N/A -2012,12,13,10,30,102590,101370,100180,57.910000000000004,0,5.32,5.57,5.6000000000000005,5.61,5.61,5.6000000000000005,5.59,5.57,5.54,65.04,65.25,65.38,65.5,65.62,65.72,65.83,65.93,66.13,14.83,14.33,14.11,13.9,13.69,13.5,13.290000000000001,13.1,12.700000000000001,N/A,N/A -2012,12,13,11,30,102610,101390,100200,59.9,0,6.09,6.4,6.44,6.45,6.45,6.44,6.42,6.4,6.3500000000000005,64.83,65.08,65.24,65.37,65.5,65.62,65.74,65.85,66.08,14.8,14.280000000000001,14.06,13.84,13.63,13.44,13.23,13.040000000000001,12.65,N/A,N/A -2012,12,13,12,30,102630,101400,100210,64.7,0,6.66,7.03,7.09,7.11,7.12,7.11,7.1000000000000005,7.09,7.05,65.02,65.31,65.49,65.66,65.82000000000001,65.96000000000001,66.12,66.27,66.57000000000001,14.57,14.02,13.8,13.59,13.370000000000001,13.18,12.97,12.780000000000001,12.39,N/A,N/A -2012,12,13,13,30,102630,101400,100210,65.72,0,6.65,7.0200000000000005,7.08,7.1000000000000005,7.1000000000000005,7.09,7.08,7.0600000000000005,7.0200000000000005,64.6,64.98,65.22,65.44,65.66,65.86,66.07000000000001,66.27,66.67,14.5,13.950000000000001,13.73,13.51,13.3,13.120000000000001,12.9,12.71,12.32,N/A,N/A -2012,12,13,14,30,102650,101430,100240,66.61,0,6.8100000000000005,7.2,7.26,7.29,7.3,7.3,7.29,7.28,7.25,66.06,66.5,66.77,67.02,67.27,67.49,67.73,67.95,68.4,14.48,13.92,13.700000000000001,13.48,13.27,13.08,12.870000000000001,12.68,12.290000000000001,N/A,N/A -2012,12,13,15,30,102670,101440,100250,65.01,0,6.68,7.0600000000000005,7.13,7.16,7.17,7.17,7.16,7.15,7.13,68.05,68.5,68.77,69.03,69.27,69.48,69.71000000000001,69.92,70.37,14.6,14.06,13.83,13.620000000000001,13.41,13.22,13.01,12.82,12.42,N/A,N/A -2012,12,13,16,30,102650,101420,100230,65.06,0,6.3100000000000005,6.66,6.72,6.75,6.75,6.76,6.75,6.74,6.71,72.17,72.47,72.65,72.82000000000001,72.97,73.12,73.28,73.42,73.71000000000001,14.77,14.24,14.02,13.8,13.59,13.4,13.19,13,12.6,N/A,N/A -2012,12,13,17,30,102630,101400,100220,66.89,0,6.21,6.5600000000000005,6.62,6.65,6.66,6.66,6.66,6.65,6.63,74.65,75.04,75.28,75.49,75.69,75.87,76.07000000000001,76.24,76.61,14.870000000000001,14.35,14.13,13.91,13.700000000000001,13.51,13.3,13.11,12.72,N/A,N/A -2012,12,13,18,30,102610,101380,100200,66.25,0,5.88,6.2,6.26,6.28,6.3,6.3,6.3,6.29,6.2700000000000005,76.12,76.47,76.69,76.88,77.07000000000001,77.24,77.43,77.59,77.93,15.030000000000001,14.52,14.3,14.09,13.88,13.69,13.48,13.280000000000001,12.89,N/A,N/A -2012,12,13,19,30,102590,101370,100180,67.54,0,5.8100000000000005,6.13,6.18,6.21,6.22,6.22,6.22,6.21,6.19,77.48,77.83,78.04,78.23,78.41,78.58,78.75,78.9,79.24,15.16,14.65,14.43,14.22,14.01,13.82,13.61,13.42,13.02,N/A,N/A -2012,12,13,20,30,102560,101330,100150,65.56,0,5.79,6.1000000000000005,6.16,6.18,6.19,6.2,6.19,6.18,6.16,79.55,79.9,80.11,80.3,80.48,80.65,80.83,80.99,81.33,15.3,14.790000000000001,14.58,14.370000000000001,14.16,13.97,13.76,13.57,13.17,N/A,N/A -2012,12,13,21,30,102520,101300,100110,63.88,0,5.44,5.73,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8100000000000005,5.8,5.78,80.81,81.22,81.47,81.71000000000001,81.93,82.14,82.35000000000001,82.55,82.97,15.44,14.950000000000001,14.74,14.530000000000001,14.32,14.13,13.93,13.73,13.34,N/A,N/A -2012,12,13,22,30,102490,101270,100090,63.35,0,5.36,5.64,5.7,5.72,5.73,5.73,5.73,5.73,5.72,83.8,84.16,84.39,84.60000000000001,84.81,84.99,85.19,85.38,85.77,15.610000000000001,15.13,14.92,14.71,14.51,14.31,14.11,13.92,13.52,N/A,N/A -2012,12,13,23,30,102480,101270,100080,64.29,0,5.39,5.68,5.74,5.7700000000000005,5.79,5.8,5.8,5.8,5.8,86.9,87.27,87.52,87.75,87.96000000000001,88.16,88.37,88.56,88.96000000000001,15.81,15.33,15.120000000000001,14.91,14.71,14.51,14.31,14.120000000000001,13.72,N/A,N/A -2012,12,14,0,30,102470,101250,100070,65.51,0,5.62,5.92,5.98,6.01,6.0200000000000005,6.0200000000000005,6.0200000000000005,6.01,6,86.71000000000001,87.03,87.25,87.45,87.65,87.83,88.04,88.22,88.62,15.92,15.44,15.23,15.02,14.82,14.63,14.42,14.23,13.84,N/A,N/A -2012,12,14,1,30,102450,101230,100050,65.55,0,5.94,6.29,6.36,6.4,6.42,6.44,6.45,6.45,6.44,93.11,93.22,93.33,93.47,93.62,93.77,93.93,94.08,94.41,16.17,15.700000000000001,15.49,15.280000000000001,15.07,14.88,14.67,14.48,14.09,N/A,N/A -2012,12,14,2,30,102440,101220,100040,63.58,0,5.83,6.17,6.25,6.29,6.32,6.34,6.3500000000000005,6.36,6.36,95.88,95.79,95.73,95.74000000000001,95.76,95.79,95.85000000000001,95.92,96.10000000000001,16.41,15.96,15.75,15.540000000000001,15.34,15.14,14.94,14.75,14.35,N/A,N/A -2012,12,14,3,30,102420,101210,100030,67.26,0,6.07,6.45,6.55,6.6000000000000005,6.63,6.66,6.67,6.69,6.71,95.8,96.29,96.67,97.03,97.39,97.71000000000001,98.06,98.37,99.02,16.56,16.1,15.9,15.69,15.49,15.3,15.09,14.9,14.51,N/A,N/A -2012,12,14,4,30,102390,101170,100000,66.65,0,6.22,6.61,6.69,6.73,6.75,6.76,6.7700000000000005,6.7700000000000005,6.76,101.41,101.44,101.51,101.58,101.68,101.76,101.88,101.99000000000001,102.27,16.87,16.42,16.22,16.01,15.81,15.620000000000001,15.41,15.22,14.83,N/A,N/A -2012,12,14,5,30,102370,101160,99980,67.85,0,6.3100000000000005,6.74,6.84,6.890000000000001,6.93,6.95,6.97,6.98,6.99,101.01,101.69,102.10000000000001,102.47,102.8,103.11,103.42,103.71000000000001,104.31,17.06,16.62,16.41,16.21,16,15.81,15.610000000000001,15.42,15.030000000000001,N/A,N/A -2012,12,14,6,30,102350,101140,99970,68.43,0,6.21,6.66,6.7700000000000005,6.84,6.88,6.91,6.94,6.96,6.99,105.01,105.5,105.77,106,106.22,106.42,106.61,106.78,107.14,17.23,16.81,16.62,16.41,16.21,16.02,15.81,15.620000000000001,15.23,N/A,N/A -2012,12,14,7,30,102350,101140,99970,70.09,0,6.6000000000000005,7.0600000000000005,7.17,7.22,7.26,7.28,7.29,7.3,7.3100000000000005,107.42,107.96000000000001,108.26,108.54,108.79,109.03,109.26,109.48,109.92,17.43,17.02,16.82,16.62,16.42,16.23,16.02,15.83,15.44,N/A,N/A -2012,12,14,8,30,102320,101110,99940,71.48,0,6.72,7.17,7.28,7.32,7.34,7.3500000000000005,7.36,7.36,7.34,110.21000000000001,110.41,110.54,110.67,110.8,110.92,111.05,111.18,111.47,17.56,17.16,16.96,16.76,16.56,16.37,16.17,15.98,15.59,N/A,N/A -2012,12,14,9,30,102300,101090,99920,72.88,0,6.93,7.45,7.58,7.65,7.69,7.72,7.74,7.76,7.78,111.83,112.28,112.55,112.8,113.03,113.24000000000001,113.46000000000001,113.66,114.09,17.82,17.43,17.240000000000002,17.03,16.830000000000002,16.64,16.44,16.25,15.860000000000001,N/A,N/A -2012,12,14,10,30,102280,101080,99910,72.31,0,7.3,7.87,8.01,8.08,8.120000000000001,8.15,8.17,8.19,8.2,114.76,114.99000000000001,115.18,115.38,115.57000000000001,115.76,115.95,116.14,116.56,18.06,17.67,17.48,17.28,17.080000000000002,16.9,16.69,16.51,16.12,N/A,N/A -2012,12,14,11,30,102280,101070,99910,73.81,0,7.29,7.87,8.01,8.08,8.13,8.16,8.18,8.19,8.2,115.76,116.04,116.24000000000001,116.45,116.64,116.82000000000001,117.01,117.19,117.58,18.28,17.91,17.72,17.52,17.32,17.13,16.93,16.740000000000002,16.35,N/A,N/A -2012,12,14,12,30,102270,101070,99910,76.78,0,7.75,8.4,8.57,8.66,8.73,8.77,8.8,8.82,8.85,117.32000000000001,117.66,117.91,118.16,118.4,118.62,118.86,119.08,119.55,18.45,18.080000000000002,17.89,17.69,17.490000000000002,17.31,17.1,16.92,16.53,N/A,N/A -2012,12,14,13,30,102250,101050,99890,79.61,0,7.94,8.66,8.85,8.96,9.040000000000001,9.1,9.14,9.18,9.23,121.52,121.89,122.12,122.35000000000001,122.56,122.75,122.96000000000001,123.14,123.53,18.6,18.240000000000002,18.06,17.86,17.66,17.47,17.27,17.09,16.69,N/A,N/A -2012,12,14,14,30,102240,101040,99880,80.4,0,8.120000000000001,8.86,9.05,9.15,9.22,9.27,9.3,9.32,9.35,127.2,127.26,127.36,127.47,127.58,127.69,127.81,127.93,128.19,18.86,18.51,18.330000000000002,18.13,17.94,17.75,17.55,17.36,16.97,N/A,N/A -2012,12,14,15,30,102190,100990,99830,81.64,0,7.930000000000001,8.620000000000001,8.790000000000001,8.870000000000001,8.93,8.97,8.99,9.01,9.040000000000001,125.94,126.41,126.79,127.18,127.59,127.98,128.42000000000002,128.82,129.77,19.02,18.69,18.51,18.32,18.13,17.94,17.75,17.56,17.19,N/A,N/A -2012,12,14,16,30,102140,100950,99790,83.97,0,8.02,8.8,9.01,9.14,9.23,9.28,9.33,9.36,9.41,127.31,127.60000000000001,127.82000000000001,128.06,128.29,128.51,128.75,128.97,129.45,19.21,18.89,18.71,18.52,18.32,18.14,17.94,17.75,17.37,N/A,N/A -2012,12,14,17,30,102100,100900,99740,84.22,0,8.44,9.3,9.53,9.67,9.75,9.81,9.84,9.86,9.870000000000001,128.3,128.26,128.36,128.48,128.62,128.76,128.93,129.1,129.48,19.47,19.17,19,18.8,18.61,18.42,18.22,18.04,17.650000000000002,N/A,N/A -2012,12,14,18,30,102040,100850,99690,84.09,0,8.25,9.03,9.24,9.36,9.450000000000001,9.51,9.57,9.63,9.790000000000001,129.07,129.57,129.92000000000002,130.3,130.69,131.09,131.58,132.05,133.34,19.68,19.400000000000002,19.240000000000002,19.05,18.87,18.69,18.5,18.330000000000002,17.96,N/A,N/A -2012,12,14,19,30,101970,100780,99630,86.59,0,7.71,8.45,8.67,8.85,9.02,9.200000000000001,9.38,9.55,9.9,121.64,122.08,122.46000000000001,122.99000000000001,123.64,124.37,125.23,126.04,127.96000000000001,19.79,19.53,19.37,19.19,19.02,18.86,18.68,18.51,18.16,N/A,N/A -2012,12,14,20,30,101880,100690,99540,88.64,0,8.38,9.61,10.05,10.18,10.41,10.72,10.99,11.22,11.61,125.24000000000001,126.58,127.46000000000001,128.17000000000002,129.1,130.24,131.5,132.72,134.64000000000001,19.88,19.66,19.51,19.32,19.17,19.04,18.88,18.73,18.43,N/A,N/A -2012,12,14,21,30,101800,100610,99460,86.32000000000001,0,8.76,9.86,10.25,10.55,10.790000000000001,11.01,11.200000000000001,11.370000000000001,11.69,133.71,134,134.22,134.5,134.8,135.11,135.47,135.82,136.68,20.2,20,19.86,19.69,19.53,19.37,19.19,19.03,18.68,N/A,N/A -2012,12,14,22,30,101730,100550,99400,87.17,0,9.16,10.39,10.82,11.17,11.47,11.73,11.96,12.17,12.56,137.28,137.72,138.04,138.42000000000002,138.83,139.24,139.73,140.19,141.29,20.36,20.19,20.06,19.91,19.75,19.59,19.43,19.27,18.94,N/A,N/A -2012,12,14,23,30,101700,100510,99370,87.33,0,9.77,11.09,11.61,12.040000000000001,12.39,12.69,12.96,13.200000000000001,13.6,142.45000000000002,142.77,143,143.24,143.47,143.69,143.95000000000002,144.19,144.83,20.54,20.42,20.31,20.16,20.01,19.86,19.7,19.55,19.22,N/A,N/A -2012,12,15,0,30,101640,100460,99320,88.63,0,8.94,10.3,10.82,11.290000000000001,11.68,12.040000000000001,12.370000000000001,12.68,13.25,147.39000000000001,147.8,148.13,148.53,148.91,149.27,149.64000000000001,149.99,150.65,20.66,20.54,20.44,20.31,20.16,20.02,19.87,19.73,19.41,N/A,N/A -2012,12,15,1,30,101610,100430,99290,88.23,0,8.94,10.33,10.84,11.28,11.66,11.99,12.290000000000001,12.55,13.02,151.73,152.08,152.34,152.68,153.05,153.45000000000002,153.91,154.35,155.45000000000002,20.77,20.68,20.59,20.46,20.34,20.21,20.06,19.92,19.62,N/A,N/A -2012,12,15,2,30,101570,100400,99250,88.63,0,8.85,10.33,10.91,11.4,11.81,12.18,12.51,12.81,13.36,155.21,155.71,156.08,156.35,156.53,156.64000000000001,156.66,156.65,156.45000000000002,20.91,20.85,20.76,20.63,20.5,20.37,20.21,20.06,19.73,N/A,N/A -2012,12,15,3,30,101610,100430,99290,88.2,0,7.18,8.63,9.290000000000001,9.94,10.5,11.01,11.47,11.89,12.66,155.73,156.48,157.09,157.95000000000002,158.82,159.76,160.74,161.69,163.52,20.96,20.95,20.89,20.8,20.7,20.6,20.47,20.36,20.09,N/A,N/A -2012,12,15,4,30,101580,100400,99260,89.97,0,6.63,7.92,8.45,8.950000000000001,9.41,9.85,10.31,10.75,11.66,154.94,156.37,157.5,158.97,160.42000000000002,161.91,163.27,164.53,166.26,20.95,20.95,20.900000000000002,20.830000000000002,20.740000000000002,20.66,20.56,20.46,20.25,N/A,N/A -2012,12,15,5,30,101540,100360,99220,90.74,0,7.55,9.040000000000001,9.64,10.17,10.620000000000001,11.040000000000001,11.43,11.8,12.620000000000001,161.43,162.51,163.29,164.21,165.14000000000001,166.09,167.09,168.02,169.9,20.97,20.990000000000002,20.96,20.89,20.82,20.740000000000002,20.63,20.53,20.29,N/A,N/A -2012,12,15,6,30,101530,100360,99220,90.4,0,7.19,8.68,9.25,9.81,10.27,10.68,11.05,11.39,11.96,164.68,165.62,166.38,167.33,168.27,169.17000000000002,170.07,170.91,172.41,21.03,21.07,21.04,20.990000000000002,20.92,20.830000000000002,20.73,20.63,20.37,N/A,N/A -2012,12,15,7,30,101540,100370,99230,90.27,0,6.37,7.82,8.46,9.09,9.67,10.24,10.81,11.34,12.32,168.73,169.17000000000002,169.53,170.04,170.55,171.1,171.61,172.08,172.78,21,21.07,21.05,21,20.95,20.88,20.8,20.73,20.53,N/A,N/A -2012,12,15,8,30,101520,100350,99210,91.15,0,6.93,8.44,9.08,9.67,10.17,10.61,11,11.34,11.870000000000001,170.85,171.47,172.01,172.67000000000002,173.28,173.86,174.4,174.91,175.83,21.07,21.16,21.16,21.13,21.080000000000002,21.01,20.92,20.82,20.56,N/A,N/A -2012,12,15,9,30,101500,100330,99190,90.89,0,7.1000000000000005,8.66,9.34,10.01,10.59,11.120000000000001,11.64,12.13,13.02,170.22,171.06,171.77,172.84,173.97,175.20000000000002,176.43,177.6,179.51,21.09,21.19,21.2,21.18,21.16,21.12,21.07,21.02,20.87,N/A,N/A -2012,12,15,10,30,101500,100320,99190,92.92,0,5.91,7.55,8.31,9.05,9.700000000000001,10.28,10.790000000000001,11.26,12.18,167.1,169.32,170.96,172.84,174.44,175.87,177.02,178.01,179.8,20.94,21.1,21.150000000000002,21.17,21.16,21.13,21.07,21,20.830000000000002,N/A,N/A -2012,12,15,11,30,101500,100320,99190,92.44,0,6.58,8.22,8.97,9.75,10.450000000000001,11.120000000000001,11.73,12.3,13.200000000000001,173.18,174.31,175.24,176.51,177.73,178.98,180.01,180.9,181.85,21.06,21.2,21.240000000000002,21.25,21.25,21.23,21.18,21.13,20.92,N/A,N/A -2012,12,15,12,30,101500,100320,99190,93,0,5.83,7.51,8.35,9.22,10.01,10.77,11.370000000000001,11.88,12.72,171.48,173.42000000000002,174.89000000000001,176.74,178.42000000000002,180.01,181.39000000000001,182.62,185.24,20.96,21.16,21.240000000000002,21.29,21.32,21.35,21.32,21.29,21.11,N/A,N/A -2012,12,15,13,30,101480,100310,99170,92.99,0,6.0200000000000005,7.72,8.55,9.43,10.24,11.02,11.71,12.34,13.25,170.98,172.86,174.28,176.01,177.56,179.03,180.25,181.32,182.76,20.96,21.16,21.23,21.31,21.36,21.39,21.36,21.32,21.09,N/A,N/A -2012,12,15,14,30,101490,100320,99180,93.11,0,5.67,7.32,8.11,8.9,9.6,10.23,10.77,11.25,11.81,173.18,174.99,176.34,177.82,179.1,180.24,181.16,181.94,183,20.96,21.150000000000002,21.21,21.26,21.28,21.29,21.26,21.23,21.02,N/A,N/A -2012,12,15,15,30,101500,100330,99190,93.45,0,5.1000000000000005,6.74,7.5600000000000005,8.4,9.15,9.82,10.38,10.88,11.56,171.19,173.08,174.5,176.11,177.57,178.96,180.14000000000001,181.21,183.19,20.96,21.14,21.21,21.26,21.28,21.29,21.25,21.21,21.03,N/A,N/A -2012,12,15,16,30,101490,100320,99180,93.48,0,4.96,6.5,7.28,8.13,8.870000000000001,9.55,10.1,10.58,11.28,177.67000000000002,178.85,179.88,181.32,182.75,184.21,185.52,186.71,188.19,21.02,21.17,21.23,21.27,21.3,21.3,21.27,21.240000000000002,21.07,N/A,N/A -2012,12,15,17,30,101480,100300,99170,95.54,0,3.46,4.84,5.55,6.33,7.13,8.02,8.61,9.03,9.88,170.53,173.46,175.72,178.15,180.76,183.72,185.5,186.67000000000002,188.42000000000002,20.96,21.080000000000002,21.13,21.18,21.22,21.26,21.23,21.18,21.04,N/A,N/A -2012,12,15,18,30,101470,100290,99160,96.26,0,3.25,4.43,5.09,5.86,6.73,7.7700000000000005,8.35,8.700000000000001,9.39,162.33,167.09,170.68,174.51,177.71,180.54,181.98,182.76,184.06,20.990000000000002,21.06,21.11,21.17,21.21,21.23,21.2,21.150000000000002,21.01,N/A,N/A -2012,12,15,19,30,101440,100260,99130,95.03,0,3.7600000000000002,4.9,5.51,6.3100000000000005,7.04,7.75,8.370000000000001,8.94,9.38,163.61,167,169.63,172.96,176.01,178.92000000000002,180.78,182.17000000000002,183.38,21.19,21.2,21.22,21.26,21.28,21.3,21.29,21.28,21.1,N/A,N/A -2012,12,15,20,30,101400,100230,99090,94.95,0,4.32,5.53,6.07,6.67,7.28,7.94,8.63,9.32,9.8,159.17000000000002,162.33,164.96,168.71,171.86,174.69,177.78,180.88,182.85,21.17,21.240000000000002,21.25,21.27,21.29,21.3,21.32,21.34,21.17,N/A,N/A -2012,12,15,21,30,101360,100190,99060,94.01,0,4.46,5.98,6.71,7.46,8.18,8.93,9.63,10.290000000000001,10.72,164.44,166.81,168.83,171.59,174.25,176.98,179.62,182.13,183.65,21.01,21.22,21.32,21.39,21.44,21.47,21.490000000000002,21.5,21.38,N/A,N/A -2012,12,15,22,30,101320,100150,99020,92.56,0,5.95,7.62,8.42,9.3,10.06,10.72,11.19,11.56,11.93,163.69,166.01,167.88,170.39000000000001,172.68,174.86,176.85,178.65,180.46,21.14,21.39,21.490000000000002,21.57,21.650000000000002,21.71,21.72,21.71,21.57,N/A,N/A -2012,12,15,23,30,101280,100110,98980,92.02,0,7.51,9.43,10.34,11.22,11.86,12.3,12.540000000000001,12.69,12.870000000000001,166.65,168.39000000000001,169.73,171.39000000000001,173,174.61,176.06,177.36,178.74,21.19,21.5,21.650000000000002,21.82,21.92,21.97,21.94,21.900000000000002,21.69,N/A,N/A -2012,12,16,0,30,101290,100120,98990,91.91,0,7.640000000000001,9.450000000000001,10.290000000000001,11.15,11.9,12.58,13.1,13.530000000000001,13.68,166.12,167.8,169.11,170.78,172.32,173.83,175.16,176.35,178.19,21.21,21.45,21.56,21.68,21.77,21.84,21.85,21.830000000000002,21.64,N/A,N/A -2012,12,16,1,30,101290,100120,98990,92.17,0,6.97,8.73,9.57,10.47,11.25,11.96,12.51,12.96,13.43,171.18,172.23,173.12,174.45000000000002,175.72,177,178.07,179.01,180.55,21.18,21.400000000000002,21.5,21.63,21.740000000000002,21.84,21.86,21.84,21.61,N/A,N/A -2012,12,16,2,30,101290,100120,98990,91.73,0,6.68,8.44,9.27,10.11,10.83,11.49,12.01,12.450000000000001,12.71,168.78,169.71,170.47,171.54,172.57,173.61,174.71,175.78,177.79,21.28,21.54,21.650000000000002,21.75,21.82,21.85,21.830000000000002,21.8,21.64,N/A,N/A -2012,12,16,3,30,101260,100090,98960,92.08,0,6.91,8.64,9.450000000000001,10.26,10.97,11.61,12.08,12.450000000000001,12.88,169.36,170.48,171.5,173.08,174.63,176.25,177.63,178.84,181.11,21.19,21.42,21.52,21.63,21.71,21.77,21.8,21.81,21.78,N/A,N/A -2012,12,16,4,30,101220,100050,98920,92.75,0,6.5600000000000005,8.25,9.08,10.02,10.86,11.67,12.41,13.09,14.16,169.25,171.89000000000001,173.73,175.64000000000001,177.14000000000001,178.34,179.42000000000002,180.41,181.94,21.03,21.28,21.38,21.46,21.5,21.5,21.48,21.46,21.36,N/A,N/A -2012,12,16,5,30,101180,100010,98880,90.84,0,8.78,10.63,11.43,12.19,12.83,13.41,13.9,14.33,14.93,175.78,176.35,176.84,177.54,178.31,179.19,180.14000000000001,181.08,182.69,21.44,21.62,21.66,21.68,21.68,21.68,21.650000000000002,21.61,21.44,N/A,N/A -2012,12,16,6,30,101190,100020,98890,91.35000000000001,0,8.34,10.14,10.950000000000001,11.76,12.46,13.1,13.69,14.22,15.05,180.72,181.47,182.09,182.94,183.78,184.69,185.6,186.48,187.88,21.57,21.73,21.77,21.79,21.8,21.81,21.79,21.77,21.650000000000002,N/A,N/A -2012,12,16,7,30,101180,100010,98880,91.77,0,7.97,9.69,10.44,11.16,11.790000000000001,12.38,12.86,13.280000000000001,13.75,180.79,181.83,182.71,183.86,184.96,186.07,187.12,188.09,189.92000000000002,21.48,21.63,21.67,21.69,21.71,21.72,21.72,21.71,21.6,N/A,N/A -2012,12,16,8,30,101150,99980,98850,92.38,0,7.38,9.06,9.85,10.66,11.38,12.07,12.63,13.11,13.620000000000001,183.25,184.61,185.69,187.1,188.31,189.38,190.14000000000001,190.72,191.26,21.34,21.490000000000002,21.54,21.57,21.6,21.62,21.61,21.6,21.41,N/A,N/A -2012,12,16,9,30,101110,99950,98810,92.49,0,7.21,8.84,9.56,10.23,10.8,11.3,11.72,12.08,12.76,182.48,183.55,184.39000000000001,185.48,186.46,187.39000000000001,188.21,188.92000000000002,190.14000000000001,21.32,21.48,21.53,21.56,21.57,21.56,21.52,21.47,21.3,N/A,N/A -2012,12,16,10,30,101100,99930,98800,92.28,0,7.15,8.790000000000001,9.56,10.27,10.89,11.450000000000001,11.97,12.450000000000001,13.31,189.29,189.49,189.67000000000002,189.98,190.32,190.70000000000002,191.07,191.41,192.1,21.36,21.48,21.51,21.5,21.490000000000002,21.46,21.41,21.36,21.19,N/A,N/A -2012,12,16,11,30,101100,99930,98800,92.55,0,6.11,7.75,8.540000000000001,9.31,9.97,10.57,11.1,11.58,12.35,197.4,197.26,197.12,197,196.94,196.94,197.01,197.11,197.36,21.31,21.45,21.48,21.46,21.43,21.38,21.31,21.240000000000002,21.05,N/A,N/A -2012,12,16,12,30,101080,99920,98780,92.66,0,6.74,8.33,9.05,9.77,10.39,10.94,11.44,11.88,12.56,197.8,198.03,198.19,198.38,198.56,198.75,199.01,199.28,200.17000000000002,21.27,21.37,21.39,21.37,21.34,21.29,21.240000000000002,21.17,21.01,N/A,N/A -2012,12,16,13,30,101090,99920,98790,92.81,0,6.5200000000000005,8.05,8.78,9.5,10.16,10.83,11.47,12.08,13.16,195.83,196.84,197.66,198.65,199.52,200.35,201.01,201.58,202.28,21.25,21.36,21.39,21.37,21.35,21.32,21.28,21.25,21.12,N/A,N/A -2012,12,16,14,30,101050,99880,98750,91.17,0,9.16,11.1,11.94,12.75,13.450000000000001,14.06,14.57,15.01,15.69,187.20000000000002,188.53,189.52,190.71,191.77,192.78,193.69,194.52,196.11,21.61,21.77,21.8,21.82,21.81,21.79,21.740000000000002,21.68,21.490000000000002,N/A,N/A -2012,12,16,15,30,101040,99880,98750,91.15,0,9.18,11,11.81,12.63,13.34,14.01,14.61,15.15,16.03,191.15,191.86,192.43,193.21,193.98000000000002,194.82,195.70000000000002,196.57,198.45000000000002,21.57,21.68,21.68,21.67,21.64,21.61,21.57,21.53,21.42,N/A,N/A -2012,12,16,16,30,101010,99840,98710,90.22,0,10.36,12.19,13,13.76,14.4,14.99,15.540000000000001,16.05,16.96,190.18,190.68,191.08,191.62,192.16,192.74,193.39000000000001,194.07,195.64000000000001,21.68,21.8,21.81,21.77,21.73,21.66,21.59,21.52,21.34,N/A,N/A -2012,12,16,17,30,101120,99930,98790,94.93,96.30000000000001,9.89,10.92,11.370000000000001,11.82,12.38,12.98,13.64,14.23,14.98,289.16,289.57,290.28000000000003,291.23,292.59000000000003,294.14,295.68,297.04,298.6,18.96,18.650000000000002,18.51,18.37,18.26,18.16,18.07,17.98,17.830000000000002,N/A,N/A -2012,12,16,18,30,101140,99960,98810,94.76,115.4,5.87,6.3100000000000005,6.51,6.71,7.05,7.53,8.45,9.56,10.77,290.88,291.74,292.12,292.79,293.68,294.84000000000003,296.06,297.33,299.27,18.66,18.330000000000002,18.17,17.990000000000002,17.84,17.71,17.64,17.61,17.66,N/A,N/A -2012,12,16,19,30,101170,99980,98840,95.51,33.300000000000004,4.37,4.76,4.98,5.45,6.05,6.78,7.23,7.58,8.27,282.44,281.94,283.87,287.77,291.44,295.11,297.29,299.01,301.57,18.59,18.29,18.16,18.05,18.02,18.05,18.03,18.02,17.88,N/A,N/A -2012,12,16,20,30,101040,99850,98710,94.57000000000001,9.9,0.5700000000000001,0.58,0.71,1.32,1.9000000000000001,2.27,2.56,2.81,3.3200000000000003,64.23,55.910000000000004,41.61,0.55,332.3,326.57,321.67,317.18,309.12,18.72,18.43,18.3,18.22,18.14,18.05,17.92,17.81,17.54,N/A,N/A -2012,12,16,21,30,101020,99840,98700,93.05,0,1.11,1.04,0.75,0.29,0.39,1.28,1.9100000000000001,2.19,2.66,110.99000000000001,109.33,79.33,21.63,1.02,319.76,298.71,297.32,294.72,18.92,18.64,18.5,18.38,18.35,18.39,18.28,18.14,17.81,N/A,N/A -2012,12,16,22,30,101000,99820,98670,90.36,0,2.22,2.2,2.0100000000000002,1.6300000000000001,1.56,1.69,1.9000000000000001,2.13,2.73,155.77,157.79,168.58,197.12,213.73000000000002,225.87,233.83,240.63,248.68,19.25,18.96,18.84,18.8,18.72,18.59,18.45,18.31,18.05,N/A,N/A -2012,12,16,23,30,100950,99770,98630,92.84,0,4.17,4.18,4.04,3.79,3.73,3.81,3.95,4.1,4.55,149.92000000000002,152.25,157.43,172.34,183.1,191.71,198.98000000000002,205.47,216.43,19.22,18.95,18.84,18.82,18.76,18.67,18.61,18.55,18.44,N/A,N/A -2012,12,17,0,30,100980,99810,98660,93.03,0,5.41,5.6000000000000005,5.57,5.46,5.38,5.3100000000000005,5.26,5.21,5.19,159.93,161.02,163.09,169.54,174.72,179.18,183.57,187.64000000000001,196.02,19.48,19.22,19.080000000000002,18.98,18.91,18.86,18.8,18.75,18.64,N/A,N/A -2012,12,17,1,30,100960,99790,98650,93.48,0,5.04,5.2,5.12,4.93,4.8,4.71,4.67,4.65,4.76,160.59,162.49,165.77,174.41,180.86,186,191.6,196.94,207.15,19.52,19.27,19.18,19.19,19.22,19.27,19.330000000000002,19.39,19.46,N/A,N/A -2012,12,17,2,30,101000,99820,98680,93.47,0,4.83,5.1000000000000005,5.13,5.16,5.0600000000000005,4.86,4.7700000000000005,4.73,4.75,164.14000000000001,164.76,165.96,169.53,174.3,180.18,185.67000000000002,190.64000000000001,201.17000000000002,19.67,19.400000000000002,19.26,19.11,19.09,19.17,19.2,19.21,19.23,N/A,N/A -2012,12,17,3,30,101020,99840,98700,94.16,0,4.51,4.76,4.79,4.8100000000000005,4.74,4.57,4.47,4.4,4.3500000000000005,168.8,169.39000000000001,170.5,173.93,179.14000000000001,186.23,192.42000000000002,197.85,208.72,19.69,19.43,19.28,19.13,19.080000000000002,19.13,19.19,19.25,19.400000000000002,N/A,N/A -2012,12,17,4,30,101010,99830,98690,95.27,0,3.5100000000000002,3.85,3.98,4.08,4.16,4.21,4.2700000000000005,4.32,4.42,179.97,182.66,185.20000000000002,189.79,194.3,198.93,204,208.88,218.38,19.830000000000002,19.61,19.490000000000002,19.38,19.32,19.29,19.32,19.37,19.42,N/A,N/A -2012,12,17,5,30,101020,99850,98710,96.08,0,2.75,3.16,3.34,3.58,3.8000000000000003,4.0200000000000005,4.17,4.2700000000000005,4.45,192.06,194.76,197.89000000000001,204.5,211.72,219.97,225.17000000000002,228.92000000000002,235.94,19.95,19.740000000000002,19.650000000000002,19.6,19.6,19.64,19.67,19.7,19.650000000000002,N/A,N/A -2012,12,17,6,30,101040,99870,98730,96.69,0,2.35,2.81,3.0700000000000003,3.52,3.84,4,4.17,4.32,4.6000000000000005,206.5,210.13,214.94,227.28,235.31,239.09,242.62,245.9,251.59,20.02,19.84,19.77,19.8,19.8,19.77,19.76,19.76,19.69,N/A,N/A -2012,12,17,7,30,101080,99900,98760,96.18,0,2.82,3.5,3.8200000000000003,4.17,4.48,4.7700000000000005,4.91,4.99,5.14,235.92000000000002,238.42000000000002,241.26,247.54,253.24,258.79,261.35,262.47,264.47,20.22,20.11,20.06,20.03,20,19.95,19.86,19.76,19.47,N/A,N/A -2012,12,17,8,30,101070,99900,98760,95.95,0,3.63,4.42,4.7700000000000005,5.09,5.36,5.61,5.8,5.96,6.16,256.65,257.38,258.07,259.13,260.2,261.37,262.54,263.65,267.35,20.3,20.150000000000002,20.05,19.900000000000002,19.76,19.6,19.45,19.3,19.150000000000002,N/A,N/A -2012,12,17,9,30,101080,99910,98770,92.77,0,5.73,6.44,6.72,6.95,7.13,7.26,7.3100000000000005,7.3100000000000005,7.44,266.27,266.29,266.33,266.43,266.93,267.95,270.27,273.09000000000003,277.57,20.28,20.1,20,19.91,19.91,20.02,20.21,20.44,20.67,N/A,N/A -2012,12,17,10,30,101100,99930,98790,92.18,0,7.17,8.05,8.38,8.56,8.84,9.21,9.51,9.76,9.950000000000001,277.57,277.64,277.65000000000003,277.81,278.14,278.65000000000003,280.02,281.65000000000003,284.31,20.06,19.84,19.71,19.59,19.6,19.73,20.07,20.45,20.82,N/A,N/A -2012,12,17,11,30,101160,99970,98830,95.01,0,7.79,8.4,8.58,8.76,9.09,9.59,10.46,11.450000000000001,12.280000000000001,296.17,296.16,296.13,296.09000000000003,296.05,295.99,296.04,296.12,296.58,18.66,18.31,18.150000000000002,17.97,17.82,17.67,17.68,17.73,18.580000000000002,N/A,N/A -2012,12,17,12,30,101190,100000,98860,76.64,0,8.16,8.76,8.950000000000001,9.21,10.02,11.5,12.3,12.780000000000001,13.6,293.95,294.26,294.54,295.11,296.57,299.16,300.66,301.59000000000003,303.11,19.34,19.080000000000002,18.95,18.84,18.900000000000002,19.13,19.32,19.490000000000002,19.84,N/A,N/A -2012,12,17,13,30,101200,100010,98860,63.980000000000004,0,9.78,10.67,10.950000000000001,11.25,11.8,12.6,13.36,14.07,14.26,296.73,296.58,296.5,296.37,296.26,296.15000000000003,295.95,295.73,294.74,19.36,19.09,18.97,18.84,18.79,18.8,18.92,19.07,19.3,N/A,N/A -2012,12,17,14,30,101240,100050,98890,63.24,0,10.14,10.96,11.16,11.25,11.31,11.35,11.39,11.44,11.69,295.32,295.53000000000003,295.63,295.77,295.93,296.1,296.37,296.65000000000003,297.86,18,17.6,17.41,17.21,17.03,16.85,16.67,16.51,16.2,N/A,N/A -2012,12,17,15,30,101260,100060,98900,65.38,0,8.78,9.41,9.57,9.64,9.700000000000001,9.74,9.81,9.88,10.49,306.85,307.09000000000003,307.24,307.42,307.63,307.85,308.17,308.51,310.19,17.2,16.77,16.580000000000002,16.38,16.2,16.02,15.85,15.69,15.48,N/A,N/A -2012,12,17,16,30,101270,100070,98910,63.65,0,7.890000000000001,8.49,8.65,8.73,8.790000000000001,8.84,8.89,8.94,9.08,313.29,313.34000000000003,313.33,313.31,313.31,313.31,313.31,313.32,313.45,17.59,17.17,16.98,16.78,16.59,16.4,16.21,16.03,15.66,N/A,N/A -2012,12,17,17,30,101280,100090,98930,56.27,0,7.01,7.49,7.61,7.67,7.72,7.76,7.8100000000000005,7.87,8.24,309.40000000000003,309.08,308.90000000000003,308.7,308.51,308.32,308.09000000000003,307.87,307.48,18.06,17.7,17.52,17.330000000000002,17.150000000000002,16.97,16.8,16.64,16.38,N/A,N/A -2012,12,17,18,30,101300,100110,98950,52.33,0,6.9,7.4,7.5200000000000005,7.57,7.6000000000000005,7.62,7.62,7.62,7.61,313.82,312.91,312.27,311.63,311.02,310.43,309.83,309.26,308.01,18.78,18.45,18.28,18.080000000000002,17.89,17.71,17.52,17.34,16.96,N/A,N/A -2012,12,17,19,30,101280,100090,98940,49.07,0,6.88,7.44,7.58,7.67,7.73,7.7700000000000005,7.8,7.82,7.86,303.85,303.57,303.36,303.15000000000003,302.96,302.8,302.63,302.48,302.18,19.11,18.81,18.64,18.44,18.25,18.06,17.87,17.68,17.3,N/A,N/A -2012,12,17,20,30,101270,100090,98930,46.93,0,6.72,7.32,7.49,7.59,7.66,7.71,7.75,7.79,7.84,302.06,301.8,301.65000000000003,301.5,301.37,301.25,301.13,301.02,300.83,19.48,19.2,19.03,18.84,18.650000000000002,18.47,18.27,18.080000000000002,17.7,N/A,N/A -2012,12,17,21,30,101290,100110,98950,45.28,0,6.55,7.11,7.25,7.33,7.38,7.42,7.45,7.47,7.5,306.43,306.15000000000003,305.96,305.76,305.58,305.41,305.24,305.09000000000003,304.78000000000003,19.62,19.35,19.18,18.990000000000002,18.8,18.62,18.42,18.240000000000002,17.85,N/A,N/A -2012,12,17,22,30,101300,100110,98950,43.230000000000004,0,6.65,7.23,7.37,7.45,7.5,7.54,7.57,7.59,7.62,302.75,302.75,302.73,302.7,302.67,302.64,302.6,302.57,302.49,19.59,19.32,19.150000000000002,18.96,18.77,18.580000000000002,18.39,18.2,17.81,N/A,N/A -2012,12,17,23,30,101330,100140,98980,47.71,0,6.61,7.12,7.24,7.29,7.32,7.34,7.3500000000000005,7.36,7.3500000000000005,301.52,301.14,300.93,300.73,300.56,300.39,300.23,300.08,299.78000000000003,19.27,18.97,18.79,18.6,18.400000000000002,18.22,18.02,17.830000000000002,17.44,N/A,N/A -2012,12,18,0,30,101360,100170,99010,47.28,0,6.8100000000000005,7.3,7.4,7.45,7.47,7.47,7.47,7.46,7.43,295.82,295.83,295.84000000000003,295.84000000000003,295.84000000000003,295.84000000000003,295.85,295.85,295.88,18.88,18.55,18.37,18.17,17.98,17.79,17.59,17.41,17.02,N/A,N/A -2012,12,18,1,30,101380,100190,99030,46.67,0,5.9,6.32,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,6.62,299.07,298.73,298.49,298.25,298.02,297.8,297.57,297.35,296.88,18.84,18.52,18.34,18.150000000000002,17.96,17.78,17.59,17.41,17.03,N/A,N/A -2012,12,18,2,30,101400,100210,99050,50.13,0,4.54,4.79,4.84,4.87,4.88,4.9,4.92,4.94,5.11,292.1,291.87,291.71,291.55,291.40000000000003,291.25,291.1,290.97,290.93,18.63,18.3,18.13,17.94,17.75,17.57,17.39,17.22,16.89,N/A,N/A -2012,12,18,3,30,101420,100230,99070,51.78,0,3.65,3.8000000000000003,3.8200000000000003,3.83,3.89,3.96,4.37,4.78,4.83,297.43,296.96,296.6,296.13,295.36,294.42,292.11,289.75,288.31,18.650000000000002,18.35,18.19,18.02,17.88,17.77,17.91,18.05,17.76,N/A,N/A -2012,12,18,4,30,101430,100230,99080,52.83,0,2.71,2.83,2.84,2.86,2.9,2.95,3.5100000000000002,4.16,4.67,282.27,281.72,281.34000000000003,280.86,280.18,279.40000000000003,277.06,274.56,273.63,18.68,18.37,18.2,18.02,17.86,17.71,17.84,17.990000000000002,18.05,N/A,N/A -2012,12,18,5,30,101440,100240,99090,54.64,0,1.92,2.02,2.05,2.07,2.1,2.14,2.22,2.34,3.63,257.35,256.82,256.51,256.19,255.87,255.58,255.49,255.74,262.44,18.86,18.55,18.38,18.19,18.01,17.830000000000002,17.66,17.52,17.64,N/A,N/A -2012,12,18,6,30,101450,100260,99110,55.61,0,1.94,2.08,2.12,2.15,2.19,2.23,2.31,2.43,3.38,230.97,230.9,230.95000000000002,231.06,231.27,231.53,232.59,234.21,248.11,19.16,18.87,18.71,18.52,18.330000000000002,18.150000000000002,17.98,17.84,17.89,N/A,N/A -2012,12,18,7,30,101460,100270,99120,55.17,0,2.5,2.69,2.73,2.77,2.8000000000000003,2.84,2.91,3.0100000000000002,3.8200000000000003,215.28,215.74,216.1,216.51,217.01,217.54,218.68,220.4,236.16,19.51,19.25,19.080000000000002,18.900000000000002,18.71,18.54,18.36,18.21,18.21,N/A,N/A -2012,12,18,8,30,101450,100260,99110,56.09,0,3.52,3.77,3.8200000000000003,3.84,3.85,3.87,3.89,3.91,4.1,214.58,214.82,215,215.18,215.39000000000001,215.6,215.94,216.34,220.97,19.76,19.51,19.35,19.17,18.98,18.8,18.61,18.44,18.2,N/A,N/A -2012,12,18,9,30,101450,100260,99110,61.6,0,4.13,4.39,4.42,4.42,4.41,4.39,4.36,4.34,4.46,199.27,199.45000000000002,199.64000000000001,199.84,200.08,200.34,200.51,201.20000000000002,215.04,19.69,19.44,19.27,19.080000000000002,18.900000000000002,18.72,18.52,18.35,18.44,N/A,N/A -2012,12,18,10,30,101460,100270,99120,63.81,0,5.33,5.74,5.82,5.8500000000000005,5.86,5.87,5.87,5.87,5.89,191.8,192.01,192.15,192.29,192.42000000000002,192.55,192.70000000000002,192.83,193.11,19.71,19.45,19.29,19.1,18.91,18.73,18.54,18.36,17.97,N/A,N/A -2012,12,18,11,30,101460,100270,99120,65.56,0,6.3,6.82,6.93,6.98,7,7.01,7,6.99,6.96,193.89000000000001,194.12,194.26,194.4,194.54,194.67000000000002,194.83,194.98000000000002,195.4,19.830000000000002,19.59,19.43,19.25,19.06,18.88,18.69,18.51,18.14,N/A,N/A -2012,12,18,12,30,101460,100270,99120,67.47,0,6.7,7.3,7.43,7.49,7.53,7.55,7.55,7.5600000000000005,7.55,191.38,191.61,191.77,191.93,192.09,192.24,192.42000000000002,192.59,193.06,19.92,19.68,19.52,19.34,19.16,18.98,18.79,18.61,18.240000000000002,N/A,N/A -2012,12,18,13,30,101470,100280,99130,65.86,0,6.33,6.87,6.99,7.05,7.09,7.12,7.15,7.19,7.48,187.88,188.11,188.28,188.47,188.68,188.91,189.23,189.57,191.82,20.14,19.93,19.79,19.62,19.44,19.27,19.1,18.94,18.68,N/A,N/A -2012,12,18,14,30,101480,100300,99150,68.79,0,6.6000000000000005,7.18,7.32,7.41,7.48,7.54,7.640000000000001,7.74,8.120000000000001,187.41,187.55,187.66,187.8,187.99,188.20000000000002,188.68,189.28,194.38,20.2,20,19.87,19.69,19.53,19.37,19.21,19.080000000000002,19.05,N/A,N/A -2012,12,18,15,30,101490,100300,99150,70.83,0,6.7,7.49,7.75,7.94,8.09,8.21,8.31,8.4,8.58,188.94,189.18,189.37,189.59,189.83,190.09,190.44,190.78,191.88,20.32,20.16,20.03,19.88,19.72,19.57,19.400000000000002,19.25,18.92,N/A,N/A -2012,12,18,16,30,101480,100290,99150,71.87,0,6.13,6.9,7.16,7.38,7.57,7.73,7.88,8.02,8.290000000000001,190.63,190.87,191.04,191.27,191.52,191.79,192.16,192.52,193.69,20.48,20.330000000000002,20.21,20.06,19.91,19.77,19.61,19.46,19.16,N/A,N/A -2012,12,18,17,30,101470,100290,99140,72.82000000000001,0,6.4,7.25,7.55,7.79,8,8.18,8.34,8.48,8.73,190.4,190.62,190.79,190.98,191.17000000000002,191.36,191.57,191.77,192.27,20.59,20.46,20.35,20.2,20.06,19.91,19.75,19.6,19.28,N/A,N/A -2012,12,18,18,30,101470,100290,99140,73.10000000000001,0,6.5,7.43,7.76,8.040000000000001,8.290000000000001,8.49,8.68,8.85,9.14,191.16,191.6,191.86,192.16,192.44,192.71,192.96,193.21,193.66,20.72,20.61,20.51,20.37,20.23,20.09,19.93,19.79,19.47,N/A,N/A -2012,12,18,19,30,101460,100280,99140,74.8,0,5.67,6.6000000000000005,6.96,7.28,7.55,7.8100000000000005,8.040000000000001,8.26,8.68,192.87,193.04,193.19,193.37,193.52,193.67000000000002,193.8,193.93,194.19,20.81,20.75,20.67,20.57,20.45,20.34,20.22,20.1,19.84,N/A,N/A -2012,12,18,20,30,101430,100250,99110,75.35000000000001,0,5.44,6.37,6.72,7.0200000000000005,7.28,7.5,7.68,7.84,8.1,185.5,185.99,186.42000000000002,186.93,187.43,187.94,188.49,188.99,190.14000000000001,20.82,20.76,20.69,20.580000000000002,20.47,20.35,20.21,20.09,19.8,N/A,N/A -2012,12,18,21,30,101390,100210,99070,75.57000000000001,0,5.59,6.6000000000000005,6.99,7.3500000000000005,7.66,7.94,8.19,8.41,8.8,180.95000000000002,181.52,181.94,182.44,182.95000000000002,183.47,184.01,184.52,185.53,20.79,20.76,20.7,20.61,20.51,20.41,20.29,20.17,19.900000000000002,N/A,N/A -2012,12,18,22,30,101360,100180,99040,77.72,0,5.75,6.82,7.25,7.65,8,8.3,8.58,8.83,9.26,178.9,179.52,180,180.58,181.15,181.73,182.35,182.93,184.1,20.740000000000002,20.72,20.67,20.580000000000002,20.490000000000002,20.39,20.27,20.16,19.91,N/A,N/A -2012,12,18,23,30,101330,100150,99010,78.89,0,5.5,6.62,7.09,7.54,7.94,8.32,8.65,8.950000000000001,9.4,170.91,171.91,172.63,173.48,174.23,174.94,175.51,176.01,176.74,20.740000000000002,20.77,20.75,20.72,20.67,20.62,20.54,20.46,20.21,N/A,N/A -2012,12,19,0,30,101340,100160,99020,79.11,0,6.29,7.43,7.88,8.3,8.68,9.02,9.35,9.65,10.24,170.87,171.34,171.68,172.08,172.48,172.89000000000001,173.34,173.77,174.74,20.740000000000002,20.72,20.66,20.580000000000002,20.5,20.42,20.32,20.240000000000002,20.03,N/A,N/A -2012,12,19,1,30,101330,100150,99010,80.15,0,6.5,7.74,8.26,8.75,9.200000000000001,9.620000000000001,10.01,10.370000000000001,10.96,167.01,167.95000000000002,168.65,169.49,170.27,171.01,171.64000000000001,172.19,172.64000000000001,20.81,20.81,20.78,20.72,20.66,20.6,20.52,20.44,20.21,N/A,N/A -2012,12,19,2,30,101330,100150,99010,80.77,0,6.79,8.11,8.64,9.16,9.6,10,10.35,10.66,11.13,166.8,167.32,167.76,168.34,168.95000000000002,169.59,170.21,170.79,171.58,20.85,20.86,20.830000000000002,20.78,20.72,20.650000000000002,20.57,20.490000000000002,20.26,N/A,N/A -2012,12,19,3,30,101320,100140,99010,81.68,0,7.12,8.44,8.96,9.47,9.92,10.33,10.72,11.09,11.8,167.67000000000002,168.15,168.49,168.94,169.42000000000002,169.91,170.47,171,172.08,20.89,20.88,20.830000000000002,20.76,20.69,20.61,20.52,20.44,20.23,N/A,N/A -2012,12,19,4,30,101300,100130,98990,83.07000000000001,0,6.78,8.15,8.72,9.26,9.74,10.18,10.61,11,11.78,167.93,168.41,168.78,169.22,169.62,170,170.28,170.52,170.53,20.91,20.94,20.91,20.86,20.81,20.75,20.67,20.6,20.39,N/A,N/A -2012,12,19,5,30,101290,100120,98980,83.43,0,7.26,8.69,9.290000000000001,9.86,10.370000000000001,10.84,11.28,11.68,12.39,166.05,166.71,167.21,167.83,168.45000000000002,169.08,169.68,170.22,170.96,20.95,20.97,20.95,20.91,20.86,20.81,20.740000000000002,20.67,20.5,N/A,N/A -2012,12,19,6,30,101300,100130,98990,84.9,0,7.47,8.91,9.5,10.07,10.57,11.05,11.5,11.92,12.68,165.98,166.62,167.14000000000001,167.78,168.45000000000002,169.14000000000001,169.85,170.52,171.64000000000001,21.01,21.01,20.98,20.92,20.86,20.8,20.73,20.66,20.47,N/A,N/A -2012,12,19,7,30,101300,100120,98990,85.2,0,7.890000000000001,9.46,10.1,10.72,11.26,11.77,12.24,12.67,13.41,164.73,165.39000000000001,165.87,166.44,167.04,167.65,168.28,168.86,169.83,21.13,21.14,21.11,21.04,20.97,20.89,20.79,20.7,20.45,N/A,N/A -2012,12,19,8,30,101270,100100,98960,87.83,0,8.22,9.8,10.43,11.01,11.52,11.99,12.42,12.81,13.49,163.26,163.67000000000002,164.01,164.48,164.99,165.56,166.26,166.95000000000002,168.70000000000002,21.14,21.16,21.12,21.07,21,20.94,20.87,20.8,20.650000000000002,N/A,N/A -2012,12,19,9,30,101250,100080,98940,86.7,0,8.17,9.790000000000001,10.44,11.06,11.61,12.11,12.57,13,13.75,166.61,167.28,167.77,168.4,169.06,169.72,170.4,171.04,172.17000000000002,21.3,21.36,21.35,21.3,21.240000000000002,21.18,21.1,21.01,20.8,N/A,N/A -2012,12,19,10,30,101220,100040,98910,90.36,0,8.06,9.77,10.49,11.18,11.790000000000001,12.35,12.870000000000001,13.34,14.17,158.98,159.64000000000001,160.16,160.85,161.58,162.33,163.12,163.87,165.32,21.240000000000002,21.29,21.28,21.240000000000002,21.19,21.14,21.07,21,20.8,N/A,N/A -2012,12,19,11,30,101190,100020,98890,92.76,0,8.18,9.9,10.61,11.31,11.93,12.5,13.01,13.48,14.25,159.67000000000002,160.46,161.01,161.73,162.48,163.25,164.08,164.87,166.5,21.23,21.29,21.28,21.25,21.21,21.16,21.1,21.03,20.85,N/A,N/A -2012,12,19,12,30,101180,100010,98880,93,0,7.79,9.51,10.24,10.94,11.55,12.11,12.6,13.040000000000001,13.75,159.38,160.29,161,161.92000000000002,162.88,163.88,164.92000000000002,165.91,167.68,21.23,21.31,21.31,21.3,21.28,21.240000000000002,21.19,21.14,20.96,N/A,N/A -2012,12,19,13,30,101170,100000,98860,92.79,0,7.7700000000000005,9.48,10.17,10.84,11.43,11.97,12.51,13.02,13.98,159.79,160.25,160.64000000000001,161.08,161.54,162,162.61,163.21,164.83,21.28,21.36,21.36,21.32,21.28,21.22,21.16,21.1,20.97,N/A,N/A -2012,12,19,14,30,101180,100010,98880,92.61,0,7.71,9.53,10.32,11.1,11.790000000000001,12.43,13.030000000000001,13.58,14.56,161.34,162.70000000000002,163.68,164.89000000000001,166.09,167.29,168.5,169.63,171.64000000000001,21.34,21.47,21.5,21.53,21.53,21.53,21.51,21.48,21.37,N/A,N/A -2012,12,19,15,30,101170,100000,98870,92.91,0,7.43,9.18,9.96,10.73,11.41,12.040000000000001,12.61,13.13,14,163.27,164.25,164.92000000000002,165.75,166.58,167.43,168.32,169.19,170.86,21.32,21.43,21.45,21.45,21.44,21.43,21.39,21.36,21.23,N/A,N/A -2012,12,19,16,30,101160,99990,98860,93.04,0,7.04,8.69,9.41,10.15,10.790000000000001,11.38,11.88,12.32,13.030000000000001,165.68,166.41,167.13,168.06,168.98,169.93,170.93,171.88,173.75,21.36,21.47,21.5,21.51,21.51,21.5,21.48,21.46,21.35,N/A,N/A -2012,12,19,17,30,101130,99960,98830,92.83,0,6.72,8.49,9.26,10,10.68,11.32,12,12.65,14.02,170.4,171.74,172.73,173.95000000000002,175.13,176.29,177.29,178.20000000000002,179.63,21.490000000000002,21.66,21.72,21.75,21.75,21.740000000000002,21.71,21.67,21.59,N/A,N/A -2012,12,19,18,30,101100,99930,98800,93.05,0,6.66,8.44,9.25,10.1,10.870000000000001,11.6,12.23,12.790000000000001,13.68,171.67000000000002,172.83,173.63,174.53,175.28,175.95000000000002,176.4,176.76,177.04,21.51,21.650000000000002,21.69,21.72,21.73,21.73,21.69,21.650000000000002,21.490000000000002,N/A,N/A -2012,12,19,19,30,101060,99900,98770,91.79,0,7.18,9.040000000000001,9.85,10.620000000000001,11.32,11.97,12.58,13.15,14.24,170.61,171.3,171.81,172.44,173.06,173.72,174.52,175.34,177.46,21.73,21.92,21.97,22,22,21.990000000000002,21.96,21.93,21.830000000000002,N/A,N/A -2012,12,19,20,30,101030,99860,98730,92.07000000000001,0,7.1000000000000005,8.94,9.76,10.59,11.32,11.99,12.61,13.19,14.22,169.16,170.32,171.13,172.06,172.91,173.73,174.52,175.25,176.54,21.6,21.78,21.84,21.87,21.88,21.87,21.830000000000002,21.78,21.61,N/A,N/A -2012,12,19,21,30,100990,99820,98700,91.83,0,7.22,9.1,9.94,10.76,11.5,12.200000000000001,12.870000000000001,13.5,14.75,171.52,172.70000000000002,173.56,174.48,175.26,175.96,176.51,177,177.95000000000002,21.59,21.79,21.85,21.88,21.89,21.89,21.86,21.830000000000002,21.7,N/A,N/A -2012,12,19,22,30,100930,99760,98640,91.76,0,7.43,9.3,10.13,10.94,11.66,12.34,12.96,13.530000000000001,14.43,166.5,167.41,168.1,168.82,169.46,170.04,170.63,171.18,172.33,21.55,21.77,21.85,21.900000000000002,21.93,21.94,21.92,21.89,21.740000000000002,N/A,N/A -2012,12,19,23,30,100920,99760,98630,91.68,0,7.95,9.85,10.73,11.57,12.32,13.02,13.67,14.280000000000001,15.31,170.43,170.49,170.61,170.82,171.12,171.5,172.03,172.61,173.81,21.54,21.79,21.88,21.94,21.97,21.990000000000002,21.98,21.96,21.85,N/A,N/A -2012,12,20,0,30,100910,99750,98620,92.27,0,7.57,9.46,10.32,11.200000000000001,11.97,12.67,13.290000000000001,13.85,14.92,161.36,162.47,163.49,165.16,166.82,168.54,170.06,171.42000000000002,174.16,21.42,21.650000000000002,21.76,21.89,21.990000000000002,22.080000000000002,22.1,22.1,22,N/A,N/A -2012,12,20,1,30,100900,99730,98610,91.84,0,8.14,10.02,10.86,11.700000000000001,12.47,13.22,13.92,14.58,15.69,167.21,168.46,169.41,170.63,171.75,172.83,173.75,174.58,175.75,21.54,21.67,21.73,21.82,21.87,21.89,21.86,21.830000000000002,21.67,N/A,N/A -2012,12,20,2,30,100890,99720,98600,91.42,0,8.48,10.46,11.33,12.17,12.93,13.63,14.32,14.97,16.05,174.95000000000002,175.55,175.95000000000002,176.35,176.75,177.15,177.64000000000001,178.15,179.38,21.62,21.86,21.94,21.97,21.98,21.97,21.96,21.94,21.84,N/A,N/A -2012,12,20,3,30,100900,99740,98620,91.07000000000001,0,8.21,10.08,10.870000000000001,11.63,12.290000000000001,12.9,13.47,14.01,15.08,178.64000000000001,178.91,179.18,179.64000000000001,180.16,180.77,181.51,182.26,184.06,21.69,21.89,21.95,21.98,21.990000000000002,21.97,21.93,21.89,21.75,N/A,N/A -2012,12,20,4,30,100940,99770,98650,92.18,0,6.6000000000000005,8.53,9.450000000000001,10.4,11.21,11.94,12.56,13.09,13.96,180.41,181.25,181.93,182.85,183.72,184.59,185.35,186.03,187.17000000000002,21.490000000000002,21.73,21.830000000000002,21.92,21.97,21.98,21.95,21.91,21.73,N/A,N/A -2012,12,20,5,30,100960,99800,98670,92.10000000000001,0,6.46,8.3,9.17,10.06,10.85,11.61,12.3,12.92,14.11,184.3,186.15,187.53,189.27,190.8,192.22,193.35,194.32,196.27,21.52,21.8,21.92,22.01,22.07,22.11,22.11,22.09,21.990000000000002,N/A,N/A -2012,12,20,6,30,100990,99820,98700,92,0,6.140000000000001,8.08,9.03,10.040000000000001,10.97,11.85,12.620000000000001,13.31,14.55,192.13,192.87,193.67000000000002,195.12,196.64000000000001,198.3,199.81,201.19,203.47,21.53,21.76,21.86,21.97,22.07,22.150000000000002,22.19,22.19,22.09,N/A,N/A -2012,12,20,7,30,101080,99920,98790,91.73,0,5.9,7.91,8.92,9.99,11.02,12.09,13.07,14,15.25,205.67000000000002,206.81,207.58,208.46,209.47,210.74,212.15,213.61,215.66,21.55,21.78,21.84,21.900000000000002,21.97,22.07,22.17,22.27,22.22,N/A,N/A -2012,12,20,8,30,101120,99950,98820,91.52,0,6.7700000000000005,8.9,9.99,11.14,12.14,13.05,13.75,14.32,14.97,220.66,220.05,219.65,219.8,220.22,220.94,221.76,222.58,224.84,21.61,22.04,22.23,22.330000000000002,22.41,22.46,22.45,22.43,22.26,N/A,N/A -2012,12,20,9,30,101160,99990,98860,91.12,0,8.3,10.14,10.9,11.58,12.15,12.64,13.05,13.41,14.05,221.61,223.44,224.72,226.35,227.81,229.19,230.43,231.57,233.79,21.650000000000002,21.8,21.82,21.81,21.79,21.78,21.740000000000002,21.69,21.54,N/A,N/A -2012,12,20,10,30,101380,100200,99050,74.88,0,6.93,8.08,8.65,9.31,9.98,10.67,11.44,12.200000000000001,13.8,303.46,307.61,310.09000000000003,312.90000000000003,315.45,317.91,320.13,322.19,325.38,20.46,20.400000000000002,20.36,20.3,20.22,20.13,20,19.88,19.53,N/A,N/A -2012,12,20,11,30,101560,100370,99210,52.25,0,15.22,17.1,17.7,18.080000000000002,18.36,18.57,18.740000000000002,18.88,19.09,330.23,330.43,330.54,330.66,330.76,330.86,330.97,331.06,331.25,19.03,18.68,18.5,18.29,18.1,17.91,17.7,17.52,17.13,N/A,N/A -2012,12,20,12,30,101710,100500,99330,54.980000000000004,0,15.98,17.66,18.13,18.37,18.51,18.6,18.650000000000002,18.67,18.66,327.77,328.21,328.42,328.63,328.84000000000003,329.03000000000003,329.24,329.44,329.84000000000003,17.1,16.57,16.34,16.12,15.91,15.71,15.5,15.31,14.92,N/A,N/A -2012,12,20,13,30,101860,100650,99460,60.4,0,14.17,15.52,15.88,16.080000000000002,16.2,16.29,16.35,16.39,16.43,339.89,339.51,339.3,339.09000000000003,338.90000000000003,338.73,338.55,338.39,338.08,15.01,14.35,14.09,13.85,13.63,13.42,13.21,13.01,12.6,N/A,N/A -2012,12,20,14,30,102030,100800,99610,63.46,0,14.46,15.84,16.23,16.44,16.580000000000002,16.69,16.76,16.82,16.89,339.81,339.75,339.69,339.64,339.58,339.52,339.46,339.41,339.29,13.26,12.47,12.18,11.93,11.69,11.48,11.26,11.06,10.65,N/A,N/A -2012,12,20,15,30,102140,100910,99710,65.6,0,15.96,17.47,17.89,18.11,18.25,18.35,18.41,18.45,18.5,333.81,334.01,334.15000000000003,334.29,334.42,334.54,334.66,334.78000000000003,335.01,11.99,11.08,10.77,10.5,10.26,10.040000000000001,9.82,9.61,9.200000000000001,N/A,N/A -2012,12,20,16,30,102230,100990,99780,65.58,0,16.01,17.57,18.04,18.3,18.48,18.62,18.71,18.79,18.900000000000002,334.88,334.99,335.05,335.1,335.15000000000003,335.19,335.24,335.27,335.35,11.24,10.290000000000001,9.97,9.69,9.450000000000001,9.22,9,8.790000000000001,8.38,N/A,N/A -2012,12,20,17,30,102270,101030,99830,65.17,0,14.870000000000001,16.29,16.68,16.9,17.05,17.16,17.240000000000002,17.3,17.400000000000002,333.67,333.66,333.68,333.69,333.7,333.71,333.73,333.74,333.75,11.44,10.540000000000001,10.23,9.97,9.72,9.51,9.28,9.08,8.67,N/A,N/A -2012,12,20,18,30,102360,101120,99920,63.08,0,15.16,16.63,17.04,17.27,17.43,17.55,17.63,17.7,17.8,334.6,334.65000000000003,334.69,334.73,334.76,334.79,334.81,334.84000000000003,334.90000000000003,11.71,10.82,10.52,10.26,10.01,9.8,9.57,9.36,8.950000000000001,N/A,N/A -2012,12,20,19,30,102430,101190,99990,61.04,0,14.69,16.09,16.490000000000002,16.71,16.86,16.98,17.06,17.13,17.22,332.97,333.05,333.09000000000003,333.12,333.15000000000003,333.18,333.21,333.24,333.29,12.05,11.19,10.89,10.63,10.39,10.17,9.950000000000001,9.74,9.33,N/A,N/A -2012,12,20,20,30,102470,101230,100030,58.15,0,14.39,15.76,16.14,16.35,16.5,16.6,16.68,16.740000000000002,16.82,332.7,332.76,332.8,332.84000000000003,332.86,332.88,332.92,332.94,332.99,12.48,11.65,11.370000000000001,11.11,10.88,10.66,10.44,10.23,9.82,N/A,N/A -2012,12,20,21,30,102550,101310,100110,55.480000000000004,0,13.88,15.14,15.5,15.700000000000001,15.83,15.93,16,16.05,16.13,333.48,333.54,333.59000000000003,333.63,333.66,333.7,333.73,333.76,333.81,12.66,11.86,11.58,11.32,11.09,10.88,10.65,10.450000000000001,10.040000000000001,N/A,N/A -2012,12,20,22,30,102600,101370,100160,54.44,0,13.64,14.86,15.200000000000001,15.39,15.51,15.6,15.66,15.71,15.77,333.93,334.01,334.06,334.1,334.14,334.18,334.22,334.25,334.33,12.58,11.78,11.5,11.25,11.02,10.8,10.58,10.370000000000001,9.96,N/A,N/A -2012,12,20,23,30,102720,101480,100270,54.39,0,12.77,13.870000000000001,14.18,14.34,14.46,14.540000000000001,14.6,14.64,14.700000000000001,337.19,337.31,337.38,337.44,337.5,337.55,337.61,337.66,337.77,12.35,11.56,11.27,11.02,10.790000000000001,10.58,10.35,10.15,9.74,N/A,N/A -2012,12,21,0,30,102830,101580,100380,53.24,0,12.21,13.24,13.530000000000001,13.69,13.8,13.88,13.93,13.98,14.05,342.28000000000003,342.34000000000003,342.36,342.38,342.39,342.41,342.43,342.44,342.47,12.06,11.27,10.99,10.74,10.5,10.290000000000001,10.07,9.86,9.450000000000001,N/A,N/A -2012,12,21,1,30,102900,101660,100450,51.13,0,12.68,13.76,14.06,14.22,14.33,14.4,14.46,14.5,14.55,343.36,343.40000000000003,343.43,343.45,343.48,343.5,343.53000000000003,343.55,343.61,11.81,11,10.71,10.46,10.23,10.01,9.790000000000001,9.58,9.17,N/A,N/A -2012,12,21,2,30,102940,101690,100480,52.34,0,12.14,13.14,13.41,13.55,13.64,13.71,13.75,13.790000000000001,13.84,345.53000000000003,345.67,345.76,345.84000000000003,345.90000000000003,345.96,346.03000000000003,346.09000000000003,346.2,11.64,10.84,10.56,10.31,10.08,9.86,9.64,9.43,9.03,N/A,N/A -2012,12,21,3,30,102970,101720,100510,53.160000000000004,0,11.47,12.38,12.61,12.73,12.81,12.86,12.89,12.92,12.950000000000001,353.72,353.51,353.36,353.24,353.12,353.01,352.89,352.79,352.59000000000003,11.51,10.72,10.44,10.200000000000001,9.96,9.76,9.540000000000001,9.33,8.92,N/A,N/A -2012,12,21,4,30,103010,101770,100550,50.120000000000005,0,11.57,12.49,12.73,12.85,12.94,13,13.040000000000001,13.07,13.1,354.98,354.88,354.81,354.74,354.67,354.61,354.55,354.49,354.38,11.4,10.61,10.33,10.08,9.84,9.64,9.42,9.21,8.81,N/A,N/A -2012,12,21,5,30,103050,101800,100590,48.86,0,11.09,11.93,12.15,12.27,12.34,12.39,12.42,12.450000000000001,12.48,0.38,0.09,359.90000000000003,359.72,359.56,359.42,359.27,359.14,358.88,11.27,10.48,10.21,9.96,9.73,9.53,9.31,9.11,8.71,N/A,N/A -2012,12,21,6,30,103080,101830,100620,47.94,0,9.85,10.57,10.75,10.85,10.91,10.950000000000001,10.98,11,11.040000000000001,0.96,0.58,0.32,0.09,359.88,359.69,359.5,359.33,358.99,11.3,10.57,10.3,10.07,9.84,9.64,9.43,9.22,8.82,N/A,N/A -2012,12,21,7,30,103130,101880,100660,47.160000000000004,0,9.44,10.1,10.26,10.35,10.4,10.43,10.46,10.47,10.5,2.32,1.92,1.6600000000000001,1.42,1.21,1.01,0.81,0.63,0.27,11.32,10.6,10.34,10.11,9.88,9.68,9.47,9.27,8.870000000000001,N/A,N/A -2012,12,21,8,30,103150,101900,100690,48.26,0,9.05,9.67,9.81,9.89,9.94,9.97,9.99,10,10.02,359.45,359.15000000000003,358.97,358.8,358.65000000000003,358.52,358.37,358.25,358.01,11.35,10.65,10.39,10.15,9.93,9.73,9.52,9.32,8.92,N/A,N/A -2012,12,21,9,30,103160,101910,100690,47.4,0,9.09,9.700000000000001,9.85,9.92,9.96,9.99,10.01,10.02,10.03,1.35,1.04,0.8300000000000001,0.64,0.47000000000000003,0.32,0.16,0.01,359.73,11.36,10.65,10.4,10.16,9.94,9.74,9.53,9.33,8.93,N/A,N/A -2012,12,21,10,30,103170,101920,100710,45.2,0,8.82,9.4,9.540000000000001,9.6,9.64,9.66,9.67,9.69,9.69,3.98,3.61,3.36,3.13,2.92,2.72,2.52,2.33,1.94,11.38,10.68,10.43,10.200000000000001,9.98,9.78,9.57,9.370000000000001,8.98,N/A,N/A -2012,12,21,11,30,103190,101940,100730,44.06,0,8.65,9.22,9.34,9.4,9.43,9.450000000000001,9.46,9.47,9.47,3.37,3.08,2.9,2.73,2.56,2.41,2.25,2.1,1.82,11.46,10.77,10.52,10.3,10.08,9.88,9.67,9.47,9.08,N/A,N/A -2012,12,21,12,30,103210,101970,100750,44.050000000000004,0,8.27,8.78,8.89,8.94,8.96,8.98,8.98,8.98,8.97,5.99,5.72,5.55,5.38,5.22,5.07,4.91,4.76,4.46,11.42,10.74,10.49,10.27,10.05,9.86,9.65,9.46,9.07,N/A,N/A -2012,12,21,13,30,103220,101970,100750,45.29,0,8.24,8.75,8.85,8.9,8.92,8.94,8.94,8.94,8.93,6.61,6.59,6.58,6.57,6.55,6.53,6.51,6.49,6.43,11.3,10.620000000000001,10.370000000000001,10.15,9.93,9.73,9.53,9.33,8.950000000000001,N/A,N/A -2012,12,21,14,30,103250,102000,100790,47.14,0,7.33,7.75,7.84,7.88,7.9,7.91,7.91,7.91,7.9,10.17,10.26,10.3,10.34,10.38,10.42,10.450000000000001,10.49,10.55,11.3,10.65,10.4,10.18,9.96,9.77,9.56,9.370000000000001,8.98,N/A,N/A -2012,12,21,15,30,103240,101990,100770,46.67,0,6.46,6.8100000000000005,6.87,6.9,6.91,6.92,6.92,6.92,6.91,11.09,11.17,11.200000000000001,11.23,11.26,11.28,11.31,11.33,11.38,11.450000000000001,10.82,10.58,10.36,10.15,9.96,9.75,9.56,9.17,N/A,N/A -2012,12,21,16,30,103200,101960,100750,45.59,0,5.79,6.07,6.13,6.15,6.16,6.16,6.16,6.16,6.15,13.42,13.41,13.41,13.4,13.39,13.39,13.38,13.38,13.35,11.75,11.15,10.92,10.700000000000001,10.49,10.3,10.09,9.9,9.51,N/A,N/A -2012,12,21,17,30,103150,101910,100700,44.730000000000004,0,5.4,5.67,5.72,5.74,5.75,5.76,5.76,5.76,5.76,9.28,9.28,9.3,9.31,9.32,9.33,9.33,9.34,9.35,12.17,11.6,11.370000000000001,11.15,10.94,10.75,10.55,10.36,9.97,N/A,N/A -2012,12,21,18,30,103120,101870,100670,44.79,0,4.39,4.58,4.62,4.64,4.64,4.65,4.65,4.65,4.65,6.5,6.18,5.99,5.8100000000000005,5.64,5.5,5.3500000000000005,5.21,4.94,12.68,12.14,11.92,11.71,11.5,11.31,11.1,10.91,10.52,N/A,N/A -2012,12,21,19,30,103090,101850,100640,45.300000000000004,0,3.85,4,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,4,3.99,0.04,0.46,0.75,1.03,1.29,1.52,1.74,1.94,2.35,13.16,12.65,12.43,12.22,12.01,11.82,11.61,11.42,11.03,N/A,N/A -2012,12,21,20,30,103030,101800,100590,41.81,0,3.5700000000000003,3.73,3.75,3.77,3.77,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.7800000000000002,355.81,355.76,355.73,355.69,355.67,355.65000000000003,355.63,355.62,355.62,13.65,13.16,12.950000000000001,12.74,12.540000000000001,12.35,12.14,11.96,11.56,N/A,N/A -2012,12,21,21,30,103000,101760,100560,43.18,0,2.9,3.02,3.04,3.0500000000000003,3.06,3.0700000000000003,3.0700000000000003,3.08,3.09,355.40000000000003,354.89,354.57,354.29,354.02,353.78000000000003,353.53000000000003,353.31,352.85,14.09,13.63,13.42,13.21,13.01,12.82,12.61,12.42,12.030000000000001,N/A,N/A -2012,12,21,22,30,102960,101730,100540,48.4,0,2.36,2.44,2.44,2.44,2.44,2.44,2.43,2.43,2.42,341.08,341.33,341.49,341.65000000000003,341.79,341.92,342.09000000000003,342.23,342.55,14.36,13.91,13.700000000000001,13.5,13.290000000000001,13.1,12.9,12.71,12.31,N/A,N/A -2012,12,21,23,30,102960,101730,100530,46.68,0,1.97,2.0100000000000002,2,1.98,1.97,1.95,1.94,1.92,1.8900000000000001,334.92,335.46,335.79,336.11,336.44,336.74,337.08,337.39,338.09000000000003,14.6,14.16,13.950000000000001,13.75,13.55,13.36,13.15,12.96,12.57,N/A,N/A -2012,12,22,0,30,102950,101720,100520,47.27,0,2.15,2.2,2.19,2.18,2.16,2.15,2.13,2.11,2.08,338.72,339.16,339.41,339.66,339.89,340.11,340.33,340.55,341.04,14.82,14.38,14.18,13.98,13.77,13.58,13.38,13.19,12.790000000000001,N/A,N/A -2012,12,22,1,30,102920,101700,100500,47.59,0,1.92,1.95,1.93,1.92,1.9000000000000001,1.8800000000000001,1.86,1.84,1.8,354.65000000000003,355.39,355.85,356.3,356.76,357.19,357.66,358.1,359.06,14.97,14.540000000000001,14.34,14.14,13.94,13.75,13.540000000000001,13.35,12.96,N/A,N/A -2012,12,22,2,30,102910,101690,100490,47.52,0,1.6,1.61,1.59,1.57,1.55,1.53,1.51,1.49,1.45,4.7700000000000005,5.89,6.59,7.28,7.97,8.6,9.35,10.040000000000001,11.55,15.1,14.68,14.48,14.27,14.07,13.88,13.68,13.49,13.1,N/A,N/A -2012,12,22,3,30,102910,101690,100500,47.75,0,1.09,1.07,1.05,1.02,1,0.97,0.9500000000000001,0.93,0.89,12.88,13.36,13.68,14.05,14.46,14.85,15.3,15.72,16.740000000000002,15.24,14.83,14.63,14.43,14.23,14.040000000000001,13.84,13.64,13.25,N/A,N/A -2012,12,22,4,30,102890,101660,100470,48.7,0,1.33,1.33,1.3,1.28,1.26,1.24,1.21,1.19,1.1500000000000001,25.2,25.25,25.27,25.29,25.34,25.400000000000002,25.51,25.62,25.93,15.33,14.92,14.73,14.52,14.32,14.13,13.93,13.74,13.35,N/A,N/A -2012,12,22,5,30,102870,101640,100450,49.65,0,1.12,1.11,1.09,1.06,1.04,1.02,0.99,0.97,0.92,40.53,41.22,41.61,41.95,42.27,42.54,42.82,43.07,43.68,15.41,15,14.81,14.61,14.41,14.22,14.02,13.83,13.44,N/A,N/A -2012,12,22,6,30,102870,101650,100460,51.11,0,0.99,0.99,0.96,0.9400000000000001,0.92,0.91,0.89,0.87,0.84,39.74,41.78,43.07,44.31,45.54,46.67,47.95,49.14,51.76,15.43,15.05,14.85,14.65,14.450000000000001,14.27,14.06,13.870000000000001,13.48,N/A,N/A -2012,12,22,7,30,102880,101650,100470,53.46,0,1.17,1.17,1.1400000000000001,1.12,1.1,1.07,1.05,1.03,0.99,46.800000000000004,48.24,49.11,49.97,50.83,51.620000000000005,52.52,53.35,55.18,15.43,15.040000000000001,14.85,14.64,14.44,14.25,14.05,13.86,13.47,N/A,N/A -2012,12,22,8,30,102860,101640,100450,54.79,0,1.3,1.28,1.25,1.22,1.2,1.17,1.1400000000000001,1.12,1.08,46.45,48.230000000000004,49.35,50.46,51.59,52.64,53.84,54.97,57.53,15.42,15.030000000000001,14.83,14.63,14.43,14.24,14.040000000000001,13.85,13.46,N/A,N/A -2012,12,22,9,30,102850,101630,100440,54.94,0,1.53,1.57,1.56,1.56,1.55,1.55,1.54,1.54,1.52,69.79,71.85000000000001,73.06,74.19,75.26,76.24,77.28,78.24,80.22,15.49,15.1,14.91,14.71,14.5,14.32,14.11,13.92,13.530000000000001,N/A,N/A -2012,12,22,10,30,102850,101620,100430,53.370000000000005,0,2.2600000000000002,2.2800000000000002,2.2600000000000002,2.23,2.21,2.18,2.15,2.13,2.08,86.44,86.83,87.13,87.43,87.74,88.03,88.35000000000001,88.66,89.33,15.52,15.120000000000001,14.93,14.73,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A -2012,12,22,11,30,102840,101620,100430,56.660000000000004,0,2.5500000000000003,2.64,2.65,2.66,2.66,2.66,2.66,2.67,2.67,69.46000000000001,71.73,73.13,74.44,75.69,76.85000000000001,78.04,79.13,81.31,15.52,15.120000000000001,14.93,14.73,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A -2012,12,22,12,30,102840,101620,100430,54.99,0,2.98,3.11,3.13,3.14,3.15,3.16,3.16,3.17,3.17,92.51,93.23,93.75,94.27,94.77,95.24,95.74000000000001,96.2,97.18,15.65,15.25,15.06,14.85,14.66,14.47,14.26,14.07,13.68,N/A,N/A -2012,12,22,13,30,102830,101610,100420,59.34,0,3.71,3.89,3.92,3.93,3.94,3.94,3.94,3.94,3.94,109.34,110.06,110.47,110.84,111.21000000000001,111.55,111.9,112.23,112.93,15.73,15.32,15.13,14.92,14.72,14.530000000000001,14.33,14.14,13.75,N/A,N/A -2012,12,22,14,30,102840,101610,100430,61.38,0,4.11,4.34,4.39,4.42,4.44,4.46,4.47,4.48,4.5,108.28,109.04,109.51,109.93,110.33,110.69,111.07000000000001,111.42,112.11,15.89,15.48,15.290000000000001,15.08,14.88,14.69,14.49,14.3,13.91,N/A,N/A -2012,12,22,15,30,102820,101600,100410,61.43,0,4.92,5.18,5.24,5.26,5.2700000000000005,5.28,5.29,5.29,5.28,120.71000000000001,121.16,121.41,121.64,121.86,122.05,122.25,122.45,122.85000000000001,16.13,15.72,15.530000000000001,15.32,15.120000000000001,14.93,14.73,14.540000000000001,14.15,N/A,N/A -2012,12,22,16,30,102770,101550,100370,64.03,0,5,5.3100000000000005,5.39,5.43,5.47,5.5,5.5200000000000005,5.54,5.57,126.96000000000001,127.22,127.39,127.55,127.7,127.85000000000001,127.99000000000001,128.13,128.42000000000002,16.330000000000002,15.93,15.73,15.530000000000001,15.33,15.14,14.94,14.75,14.35,N/A,N/A -2012,12,22,17,30,102700,101490,100310,63.370000000000005,0,5.23,5.58,5.66,5.71,5.75,5.7700000000000005,5.79,5.8100000000000005,5.83,130.6,131.16,131.48,131.79,132.06,132.31,132.58,132.81,133.3,16.61,16.22,16.02,15.82,15.620000000000001,15.43,15.23,15.040000000000001,14.64,N/A,N/A -2012,12,22,18,30,102670,101450,100270,64.5,0,5.55,5.93,6.03,6.08,6.12,6.15,6.17,6.19,6.22,137.71,138.09,138.35,138.59,138.82,139.03,139.24,139.44,139.84,16.85,16.46,16.26,16.06,15.860000000000001,15.68,15.47,15.280000000000001,14.89,N/A,N/A -2012,12,22,19,30,102630,101420,100240,66.63,0,5.69,6.1000000000000005,6.21,6.28,6.33,6.36,6.390000000000001,6.42,6.45,139.12,139.70000000000002,140.01,140.31,140.57,140.82,141.06,141.29,141.76,17.06,16.68,16.490000000000002,16.29,16.080000000000002,15.9,15.69,15.5,15.11,N/A,N/A -2012,12,22,20,30,102560,101350,100180,66.66,0,5.92,6.36,6.47,6.54,6.59,6.62,6.65,6.67,6.7,144.04,144.52,144.83,145.12,145.4,145.66,145.91,146.16,146.65,17.38,17.01,16.830000000000002,16.63,16.43,16.240000000000002,16.04,15.85,15.46,N/A,N/A -2012,12,22,21,30,102500,101290,100120,69.84,0,6.26,6.79,6.93,7.0200000000000005,7.08,7.13,7.16,7.19,7.23,146.51,147.13,147.49,147.82,148.12,148.4,148.67000000000002,148.92000000000002,149.42000000000002,17.71,17.36,17.18,16.98,16.78,16.59,16.39,16.21,15.81,N/A,N/A -2012,12,22,22,30,102450,101240,100070,71.44,0,6.28,6.82,6.98,7.09,7.17,7.23,7.29,7.34,7.43,147.35,148.18,148.71,149.22,149.67000000000002,150.08,150.5,150.87,151.63,17.990000000000002,17.650000000000002,17.48,17.28,17.09,16.9,16.7,16.52,16.13,N/A,N/A -2012,12,22,23,30,102400,101200,100030,73.06,0,7.37,8.01,8.17,8.26,8.33,8.370000000000001,8.4,8.43,8.47,149,149.45000000000002,149.76,150.05,150.31,150.56,150.81,151.04,151.51,18.41,18.1,17.92,17.72,17.53,17.35,17.150000000000002,16.96,16.57,N/A,N/A -2012,12,23,0,30,102360,101160,99990,71.95,0,8.17,8.98,9.19,9.3,9.38,9.43,9.47,9.49,9.52,155.97,156.51,156.84,157.15,157.44,157.71,157.98,158.22,158.74,18.740000000000002,18.47,18.3,18.1,17.92,17.73,17.53,17.35,16.96,N/A,N/A -2012,12,23,1,30,102300,101100,99930,74.34,0,6.98,7.7,7.9,8.02,8.11,8.19,8.25,8.3,8.38,157.88,158.03,158.16,158.28,158.39000000000001,158.49,158.6,158.69,158.89000000000001,18.97,18.71,18.54,18.36,18.17,17.990000000000002,17.79,17.61,17.22,N/A,N/A -2012,12,23,2,30,102260,101060,99900,75.3,0,6.92,7.69,7.930000000000001,8.120000000000001,8.28,8.41,8.53,8.64,8.84,159.3,160.06,160.48,160.92000000000002,161.32,161.70000000000002,162.09,162.44,163.12,19.17,18.95,18.8,18.63,18.45,18.27,18.080000000000002,17.91,17.53,N/A,N/A -2012,12,23,3,30,102220,101030,99870,77.48,0,7.58,8.370000000000001,8.620000000000001,8.78,8.89,8.98,9.040000000000001,9.08,9.13,158.98,158.94,159.02,159.16,159.34,159.54,159.78,160.01,160.78,19.27,19.07,18.93,18.75,18.580000000000002,18.41,18.22,18.05,17.68,N/A,N/A -2012,12,23,4,30,102150,100960,99800,80.05,0,7.0600000000000005,8.01,8.35,8.66,8.94,9.18,9.43,9.65,10.07,154.46,155.51,156.16,156.86,157.5,158.1,158.66,159.17000000000002,160.09,19.38,19.2,19.07,18.91,18.740000000000002,18.580000000000002,18.41,18.240000000000002,17.89,N/A,N/A -2012,12,23,5,30,102130,100930,99780,77.96000000000001,0,8.05,9.06,9.42,9.700000000000001,9.93,10.120000000000001,10.290000000000001,10.44,10.700000000000001,165.65,165.78,165.93,166.15,166.4,166.67000000000002,167.01,167.33,168.15,19.67,19.53,19.41,19.26,19.11,18.95,18.79,18.63,18.3,N/A,N/A -2012,12,23,6,30,102090,100900,99740,82.3,0,7.43,8.66,9.17,9.63,10.03,10.39,10.71,10.99,11.43,166.95000000000002,167.95000000000002,168.61,169.36,170.03,170.66,171.22,171.71,172.51,19.63,19.580000000000002,19.5,19.38,19.26,19.13,18.98,18.84,18.53,N/A,N/A -2012,12,23,7,30,102070,100880,99720,83.31,0,6.91,8.2,8.76,9.24,9.67,10.040000000000001,10.370000000000001,10.66,11.14,179.07,179.64000000000001,180,180.1,180.06,179.93,179.71,179.49,179.09,19.62,19.56,19.48,19.35,19.22,19.080000000000002,18.93,18.79,18.48,N/A,N/A -2012,12,23,8,30,102030,100840,99690,82.16,0,7.07,8.3,8.790000000000001,9.18,9.49,9.74,9.92,10.08,10.28,179.77,179.66,179.63,179.61,179.63,179.67000000000002,179.82,179.98,180.68,19.76,19.75,19.68,19.57,19.44,19.3,19.14,18.990000000000002,18.66,N/A,N/A -2012,12,23,9,30,102000,100810,99660,84.88,0,6.72,8.08,8.69,9.27,9.77,10.22,10.61,10.97,11.51,184.55,185.31,185.94,186.71,187.43,188.14000000000001,188.81,189.44,190.54,19.740000000000002,19.75,19.7,19.62,19.53,19.42,19.3,19.19,18.91,N/A,N/A -2012,12,23,10,30,101960,100770,99620,85.35000000000001,0,6.96,8.39,9.02,9.6,10.09,10.53,10.89,11.22,11.74,185.89000000000001,186.70000000000002,187.26,187.84,188.35,188.83,189.25,189.63,190.23,19.78,19.81,19.79,19.72,19.64,19.55,19.44,19.32,19.05,N/A,N/A -2012,12,23,11,30,101940,100760,99610,85.56,0,6.92,8.370000000000001,9,9.6,10.120000000000001,10.58,10.98,11.35,11.92,190.11,190.79,191.31,191.89000000000001,192.44,192.98000000000002,193.54,194.06,195.18,19.85,19.900000000000002,19.87,19.81,19.73,19.64,19.53,19.42,19.150000000000002,N/A,N/A -2012,12,23,12,30,101920,100730,99580,86.44,0,6.44,7.83,8.46,9.06,9.59,10.09,10.540000000000001,10.96,11.68,190.01,191.23000000000002,192.15,193.20000000000002,194.16,195.08,195.91,196.67000000000002,197.92000000000002,19.81,19.86,19.84,19.78,19.71,19.62,19.52,19.42,19.18,N/A,N/A -2012,12,23,13,30,101890,100700,99550,85.74,0,6.65,8.08,8.700000000000001,9.290000000000001,9.790000000000001,10.25,10.67,11.040000000000001,11.69,192.45000000000002,192.95000000000002,193.33,193.76,194.15,194.52,194.93,195.32,196.3,19.89,19.94,19.92,19.85,19.77,19.68,19.57,19.47,19.21,N/A,N/A -2012,12,23,14,30,101880,100700,99550,86.69,0,6.61,8.05,8.69,9.28,9.8,10.26,10.69,11.08,11.71,193.69,194.39000000000001,194.91,195.54,196.1,196.63,197.13,197.59,198.36,19.91,19.97,19.95,19.88,19.81,19.72,19.61,19.51,19.26,N/A,N/A -2012,12,23,15,30,101860,100670,99520,87.74,0,6.3100000000000005,7.74,8.38,8.98,9.52,10.02,10.49,10.92,11.74,194.47,195.35,196,196.73000000000002,197.42000000000002,198.12,198.86,199.56,200.96,19.95,20.02,20.01,19.96,19.89,19.81,19.72,19.63,19.41,N/A,N/A -2012,12,23,16,30,101820,100640,99490,87.58,0,6.45,7.92,8.6,9.25,9.8,10.290000000000001,10.700000000000001,11.06,11.63,198.73000000000002,199.74,200.46,201.23000000000002,201.84,202.35,202.74,203.07,203.59,20.01,20.1,20.11,20.07,20.02,19.95,19.86,19.76,19.5,N/A,N/A -2012,12,23,17,30,101760,100580,99430,87.82000000000001,0,6.29,7.73,8.370000000000001,9,9.55,10.06,10.52,10.94,11.68,198.77,199.51,200.07,200.68,201.20000000000002,201.67000000000002,202.1,202.5,203.37,20.06,20.13,20.12,20.07,20.01,19.93,19.830000000000002,19.73,19.490000000000002,N/A,N/A -2012,12,23,18,30,101710,100530,99390,87.19,0,6.43,7.91,8.55,9.14,9.63,10.07,10.450000000000001,10.790000000000001,11.43,195.1,196.29,197.14000000000001,198.05,198.76,199.34,199.75,200.09,200.63,20.150000000000002,20.25,20.25,20.21,20.14,20.06,19.94,19.82,19.54,N/A,N/A -2012,12,23,19,30,101670,100490,99340,90.37,0,6.140000000000001,7.6000000000000005,8.27,8.92,9.5,10.040000000000001,10.52,10.97,11.73,195.47,197.29,198.56,199.89000000000001,201.01,201.98000000000002,202.76,203.45000000000002,204.47,20.07,20.14,20.14,20.09,20.04,19.97,19.89,19.8,19.580000000000002,N/A,N/A -2012,12,23,20,30,101610,100430,99280,88.63,0,6.65,8.18,8.870000000000001,9.53,10.11,10.63,11.09,11.51,12.23,199.09,200.02,200.70000000000002,201.44,202.1,202.71,203.3,203.84,204.85,20.14,20.240000000000002,20.240000000000002,20.21,20.16,20.09,20.01,19.92,19.69,N/A,N/A -2012,12,23,21,30,101560,100380,99230,89.01,0,7.22,8.78,9.48,10.14,10.700000000000001,11.200000000000001,11.65,12.05,12.75,202.36,202.78,203.1,203.45000000000002,203.74,204,204.25,204.49,205.07,20.150000000000002,20.26,20.27,20.23,20.18,20.12,20.03,19.94,19.7,N/A,N/A -2012,12,23,22,30,101510,100330,99190,88.81,0,7.33,8.950000000000001,9.67,10.34,10.93,11.47,11.94,12.36,13.030000000000001,199.95000000000002,200.66,201.22,201.9,202.51,203.07,203.54,203.96,204.57,20.17,20.3,20.32,20.29,20.25,20.19,20.11,20.02,19.79,N/A,N/A -2012,12,23,23,30,101490,100320,99170,89.96000000000001,0,7.0200000000000005,8.56,9.25,9.91,10.47,10.98,11.44,11.86,12.59,200.53,201.05,201.48000000000002,202.02,202.51,203,203.44,203.85,204.49,20.14,20.26,20.28,20.25,20.2,20.14,20.06,19.97,19.740000000000002,N/A,N/A -2012,12,24,0,30,101470,100290,99150,90.48,0,6.95,8.57,9.31,10.01,10.61,11.16,11.64,12.07,12.8,201.46,201.92000000000002,202.28,202.75,203.23000000000002,203.73000000000002,204.23000000000002,204.70000000000002,205.55,20.150000000000002,20.28,20.29,20.26,20.21,20.150000000000002,20.06,19.98,19.75,N/A,N/A -2012,12,24,1,30,101460,100280,99140,90.9,0,6.8,8.44,9.200000000000001,9.92,10.53,11.1,11.61,12.09,12.88,203.42000000000002,204.1,204.59,205.08,205.47,205.77,206.02,206.23000000000002,206.62,20.18,20.330000000000002,20.35,20.330000000000002,20.29,20.22,20.13,20.04,19.81,N/A,N/A -2012,12,24,2,30,101440,100260,99120,91.24,0,7.23,8.91,9.66,10.370000000000001,11,11.57,12.09,12.58,13.47,205.25,205.70000000000002,206.04,206.43,206.8,207.15,207.48000000000002,207.79,208.32,20.18,20.32,20.34,20.32,20.27,20.21,20.13,20.05,19.84,N/A,N/A -2012,12,24,3,30,101420,100240,99100,91.37,0,7.73,9.49,10.3,11.06,11.73,12.33,12.88,13.38,14.24,206.29,206.65,206.92000000000002,207.24,207.52,207.8,208.05,208.29,208.68,20.25,20.400000000000002,20.43,20.42,20.38,20.330000000000002,20.25,20.17,19.96,N/A,N/A -2012,12,24,4,30,101410,100230,99090,91.43,0,7.57,9.31,10.11,10.870000000000001,11.53,12.120000000000001,12.66,13.15,14.01,208.6,208.77,208.91,209.08,209.26,209.44,209.65,209.85,210.25,20.25,20.400000000000002,20.43,20.41,20.37,20.31,20.23,20.150000000000002,19.93,N/A,N/A -2012,12,24,5,30,101410,100230,99090,91.63,0,6.84,8.57,9.38,10.16,10.84,11.47,12.040000000000001,12.57,13.48,211.61,211.72,211.83,212,212.17000000000002,212.35,212.53,212.71,213.04,20.22,20.39,20.43,20.41,20.38,20.32,20.25,20.17,19.96,N/A,N/A -2012,12,24,6,30,101410,100240,99100,91.55,0,6.92,8.66,9.47,10.24,10.92,11.55,12.120000000000001,12.64,13.57,212.18,212.56,212.84,213.15,213.43,213.71,213.95000000000002,214.18,214.59,20.17,20.37,20.42,20.42,20.38,20.34,20.26,20.19,19.98,N/A,N/A -2012,12,24,7,30,101410,100230,99090,91.73,0,6.88,8.59,9.4,10.18,10.86,11.49,12.07,12.61,13.57,214.02,214.4,214.70000000000002,215.02,215.3,215.55,215.78,215.99,216.35,20.13,20.32,20.38,20.38,20.36,20.32,20.26,20.19,20.01,N/A,N/A -2012,12,24,8,30,101390,100210,99070,91.58,0,7.36,9.13,9.94,10.73,11.42,12.05,12.63,13.17,14.120000000000001,215.05,215.73000000000002,216.23000000000002,216.82,217.35,217.86,218.32,218.73000000000002,219.37,20.16,20.35,20.400000000000002,20.41,20.400000000000002,20.36,20.31,20.240000000000002,20.07,N/A,N/A -2012,12,24,9,30,101380,100200,99070,91.39,0,7.24,9.02,9.82,10.59,11.27,11.9,12.47,12.99,14,217.33,218,218.5,219.08,219.56,220,220.37,220.71,221.32,20.2,20.39,20.44,20.44,20.41,20.36,20.28,20.2,20,N/A,N/A -2012,12,24,10,30,101380,100210,99070,91.78,0,6.67,8.42,9.23,10.01,10.700000000000001,11.35,11.96,12.530000000000001,13.58,223.70000000000002,223.81,223.92000000000002,224.14000000000001,224.41,224.78,225.15,225.52,226.08,20.14,20.31,20.35,20.330000000000002,20.29,20.23,20.150000000000002,20.080000000000002,19.89,N/A,N/A -2012,12,24,11,30,101410,100230,99090,92.16,0,5.97,7.66,8.48,9.290000000000001,9.98,10.59,11.120000000000001,11.59,12.39,232.85,233.23000000000002,233.44,233.5,233.5,233.44,233.47,233.53,233.96,20.080000000000002,20.27,20.32,20.32,20.3,20.240000000000002,20.16,20.07,19.830000000000002,N/A,N/A -2012,12,24,12,30,101420,100250,99100,93.10000000000001,0,5,6.6000000000000005,7.32,7.99,8.56,9.05,9.49,9.88,10.61,247.66,247.6,247.54,247.41,247.21,246.94,246.6,246.25,245.58,19.91,20.09,20.12,20.09,20.03,19.94,19.830000000000002,19.73,19.48,N/A,N/A -2012,12,24,13,30,101430,100250,99110,93.95,0,4.48,5.98,6.66,7.2700000000000005,7.7700000000000005,8.19,8.700000000000001,9.23,9.99,252.81,253.8,254.43,254.84,255.01000000000002,254.98000000000002,254.57,254.01000000000002,252.34,19.75,19.91,19.95,19.91,19.84,19.77,19.69,19.61,19.42,N/A,N/A -2012,12,24,14,30,101440,100260,99120,94.67,0,4.1,5.53,6.22,6.94,7.66,8.44,9.08,9.65,10.14,245.06,248.77,251.19,252.45000000000002,253.12,253.29,253.15,252.91,252.65,19.59,19.87,19.97,19.95,19.93,19.91,19.89,19.88,19.76,N/A,N/A -2012,12,24,15,30,101430,100250,99110,96.10000000000001,0,3.2,4.47,5.2,6.37,7.26,7.8500000000000005,8.32,8.73,9.36,245.53,248.46,250.81,254.06,255.76000000000002,255.88,255.67000000000002,255.33,254.57,19.38,19.650000000000002,19.78,19.85,19.84,19.77,19.73,19.69,19.580000000000002,N/A,N/A -2012,12,24,16,30,101410,100230,99080,97.33,0,3.1,4.48,5.34,6.2700000000000005,6.92,7.2700000000000005,7.57,7.84,8.25,257.26,258.35,259.37,260.6,260.94,260.37,259.83,259.31,258.81,19.150000000000002,19.39,19.55,19.66,19.7,19.7,19.650000000000002,19.57,19.35,N/A,N/A -2012,12,24,17,30,101360,100180,99030,98.14,0,1.69,2.69,3.09,3.35,3.48,3.5100000000000002,3.46,3.41,3.36,267.04,269.61,271.99,275.97,280.07,284.28000000000003,288.13,291.5,294.82,19.22,19.31,19.330000000000002,19.31,19.28,19.22,19.14,19.05,18.93,N/A,N/A -2012,12,24,18,30,101330,100150,99000,99.28,0,1.61,2.11,2.33,2.25,2.11,1.93,1.93,1.97,2.4,346.12,340.67,335.94,330.28000000000003,324.61,319.21,311.14,302.87,291.35,18.64,18.66,18.75,18.91,18.95,18.91,18.91,18.91,18.830000000000002,N/A,N/A -2012,12,24,19,30,101310,100120,98980,94.54,0,1.96,2.29,2.48,2.66,2.71,2.67,2.45,2.23,1.7,14.82,7.45,2.68,358.35,352.98,346.91,340.27,334.55,318.90000000000003,19.03,18.8,18.68,18.56,18.51,18.52,18.6,18.7,18.66,N/A,N/A -2012,12,24,20,30,101250,100060,98920,91.22,0,2.2,2.35,2.41,2.5300000000000002,2.46,2.2600000000000002,1.95,1.67,0.89,50.980000000000004,47.08,42.67,34.31,28.04,23.62,21.72,20.72,20.02,19.02,18.77,18.68,18.68,18.7,18.73,18.73,18.72,18.66,N/A,N/A -2012,12,24,21,30,101210,100030,98880,91.74,0,1.57,1.59,1.59,1.61,1.53,1.36,1.11,0.89,0.56,83.88,76.88,69.73,55.7,47.31,43.300000000000004,47.64,52.92,93.39,19,18.78,18.73,18.830000000000002,18.87,18.88,18.86,18.830000000000002,18.69,N/A,N/A -2012,12,24,22,30,101150,99960,98820,95.43,0,2.74,2.71,2.61,2.46,2.32,2.17,2.05,1.96,1.83,112.13,106.04,100.89,93.71000000000001,89.28,86.59,89.84,94.04,109.09,18.91,18.830000000000002,18.85,18.92,18.96,18.97,18.94,18.89,18.72,N/A,N/A -2012,12,24,23,30,101120,99940,98800,94.58,0,2.8000000000000003,3.11,3.17,3.09,2.98,2.86,2.66,2.46,1.98,106.88,108.7,110.24000000000001,112.10000000000001,113.49000000000001,114.56,116.10000000000001,117.55,128.21,18.97,19.13,19.21,19.16,19.06,18.91,18.79,18.68,18.66,N/A,N/A -2012,12,25,0,30,101090,99910,98770,96.48,0,2.17,2.25,2.19,2.21,2.29,2.4,2.45,2.48,2.5,115.62,129.15,136.02,139.17000000000002,144.24,151,153.12,153.82,156.02,19.26,19.25,19.18,18.96,18.79,18.650000000000002,18.54,18.45,18.29,N/A,N/A -2012,12,25,1,30,101060,99880,98740,97.14,0,2.79,2.63,2.42,2.4,2.4,2.42,2.44,2.47,2.5100000000000002,110.47,123.31,129.45,132.52,137.89000000000001,145.25,147.98,149.05,151.25,19.2,19.38,19.400000000000002,19.18,19.01,18.86,18.75,18.67,18.48,N/A,N/A -2012,12,25,2,30,101020,99840,98700,97.03,0,2.64,2.95,2.9,2.91,2.9,2.87,2.92,2.98,3.43,130.34,137.97,141.84,143.89000000000001,144.92000000000002,145.27,146.67000000000002,148.27,157.26,19.25,19.55,19.62,19.43,19.25,19.07,18.97,18.900000000000002,19.47,N/A,N/A -2012,12,25,3,30,100970,99790,98650,97.98,0,3.63,4.24,4.38,4.37,4.41,4.49,4.61,4.72,4.87,116.4,120.55,124.51,130.3,134.88,138.75,143.1,147.27,155.81,18.89,18.87,18.900000000000002,18.96,19.07,19.22,19.46,19.71,19.91,N/A,N/A -2012,12,25,4,30,100860,99690,98550,98.59,0,5.44,6.16,6.36,6.390000000000001,6.390000000000001,6.36,6.390000000000001,6.42,6.69,116.91,122.72,130.83,145,152.73,156.83,160.38,163.48,169,18.73,18.64,18.86,19.44,19.830000000000002,20.12,20.17,20.17,20.1,N/A,N/A -2012,12,25,5,30,100850,99670,98540,94.97,14.3,5.48,7.29,8.25,9.21,10.4,11.9,12.81,13.450000000000001,13.4,149.4,153.02,156.61,162.81,169.72,177.77,182.36,185.46,186.32,19.47,19.53,19.6,19.77,19.900000000000002,20,20.09,20.18,20.080000000000002,N/A,N/A -2012,12,25,6,30,100850,99680,98550,91.95,0,5.95,7.74,8.55,9.33,10.05,10.74,11.38,11.96,12.58,182.46,181.85,182.20000000000002,183.83,186.09,188.76,190.78,192.54,193.77,19.73,19.77,19.77,19.830000000000002,20.01,20.26,20.34,20.37,20.240000000000002,N/A,N/A -2012,12,25,7,30,100800,99630,98500,93.92,0,6.38,8.2,9.19,10.34,11.46,12.58,13.31,13.86,14.51,188.37,189.14000000000001,189.75,190.67000000000002,191.54,192.39000000000001,193,193.5,194.16,19.27,19.19,19.28,19.67,20.02,20.330000000000002,20.43,20.46,20.32,N/A,N/A -2012,12,25,8,30,100730,99550,98420,97.93,0,2.61,4.39,5.69,7.25,8.53,9.540000000000001,10.46,11.33,12.76,202.35,197.47,194.1,192.67000000000002,191.74,191.24,191.09,191.05,191.13,18.490000000000002,18.85,19.14,19.52,19.7,19.76,19.89,20.02,20.16,N/A,N/A -2012,12,25,9,30,100700,99530,98400,90.07000000000001,0,7.16,9.09,10.040000000000001,11.02,11.86,12.620000000000001,13.17,13.61,14.040000000000001,183.94,184.88,185.51,185.84,186.06,186.16,186.59,187.11,188.09,20.06,20.63,20.900000000000002,21.080000000000002,21.16,21.17,21.17,21.17,21.1,N/A,N/A -2012,12,25,10,30,100630,99460,98330,93.23,0,4.2700000000000005,6.09,7.1000000000000005,8.36,9.58,10.8,11.91,12.950000000000001,14.42,173.18,177.71,180.35,181.72,182.71,183.39000000000001,184.02,184.61,186.19,19.48,19.87,20.02,20.09,20.150000000000002,20.21,20.26,20.3,20.34,N/A,N/A -2012,12,25,11,30,100660,99490,98360,90.4,0,9.09,11.05,11.950000000000001,12.84,13.63,14.39,15.11,15.790000000000001,16.94,185.36,186.6,187.5,188.52,189.36,190.08,190.61,191.03,191.70000000000002,19.990000000000002,20.22,20.29,20.35,20.38,20.400000000000002,20.39,20.38,20.31,N/A,N/A -2012,12,25,12,30,100490,99330,98190,92.93,0,3.27,4.96,5.72,6.5200000000000005,7.4,8.4,9.42,10.43,12.290000000000001,164.20000000000002,166.63,169.16,173,175.86,178.02,178.96,179.44,179.58,19.68,20.09,20.12,19.91,19.75,19.62,19.490000000000002,19.37,19.14,N/A,N/A -2012,12,25,13,30,100490,99330,98200,89.73,0,8.91,10.82,11.72,12.57,13.3,13.97,14.540000000000001,15.06,15.85,178.32,177.94,177.6,177.18,176.84,176.54,176.46,176.47,177.32,20.13,20.35,20.400000000000002,20.42,20.42,20.400000000000002,20.37,20.34,20.21,N/A,N/A -2012,12,25,14,30,100520,99350,98220,91.2,0,8.2,10.14,11.1,12.08,12.97,13.83,14.620000000000001,15.35,16.51,180.07,179.88,179.73,179.54,179.38,179.25,179.19,179.14000000000001,179.37,19.84,20.05,20.12,20.17,20.21,20.25,20.27,20.27,20.22,N/A,N/A -2012,12,25,15,30,100440,99270,98140,91.13,5.9,8.81,10.82,11.75,12.72,13.65,14.59,15.59,16.59,18.57,177.48,178.70000000000002,179.48,180.41,181.41,182.52,183.85,185.22,187.94,19.84,19.91,19.900000000000002,19.87,19.830000000000002,19.79,19.75,19.72,19.57,N/A,N/A -2012,12,25,16,30,100440,99270,98140,90.03,0,11.85,14.22,15.26,16.29,17.16,17.96,18.68,19.34,20.54,190.79,191.71,192.18,192.66,193.06,193.43,193.76,194.07,194.69,20.080000000000002,20.22,20.23,20.21,20.17,20.12,20.06,19.990000000000002,19.830000000000002,N/A,N/A -2012,12,25,17,30,100280,99120,97990,90.10000000000001,0,15.77,18.26,19.26,20.12,20.84,21.48,22.080000000000002,22.63,23.59,194.54,194.84,195.14000000000001,195.53,195.92000000000002,196.34,196.83,197.33,198.52,20.080000000000002,20.18,20.17,20.1,20.03,19.95,19.87,19.8,19.650000000000002,N/A,N/A -2012,12,25,18,30,100390,99220,98100,89.94,1.5,14.51,17.080000000000002,18.07,18.94,19.69,20.37,20.990000000000002,21.56,22.57,214.73000000000002,215.78,216.23000000000002,216.73000000000002,217.18,217.63,218.07,218.48000000000002,219.28,20.1,20.22,20.21,20.14,20.080000000000002,19.990000000000002,19.900000000000002,19.81,19.61,N/A,N/A -2012,12,25,19,30,100420,99250,98120,90.82000000000001,0,10.790000000000001,12.780000000000001,13.64,14.44,15.08,15.610000000000001,15.860000000000001,15.99,15.56,237.64000000000001,238.55,239.28,240.36,241.51,242.82,244.57,246.36,254.17000000000002,19.95,20.06,20.080000000000002,20.09,20.12,20.16,20.21,20.28,20.54,N/A,N/A -2012,12,25,20,30,100480,99310,98180,79.87,0,10.02,11.84,12.6,13.280000000000001,13.83,14.290000000000001,14.66,14.98,15.44,308.16,306.5,305.56,304.78000000000003,304.26,303.92,303.66,303.44,302.68,20.01,20.16,20.17,20.14,20.080000000000002,19.990000000000002,19.87,19.740000000000002,19.44,N/A,N/A -2012,12,25,21,30,100570,99390,98260,58.65,0,12.01,13.91,14.66,15.3,15.83,16.29,16.7,17.05,17.61,307.74,307.40000000000003,307.17,306.92,306.7,306.48,306.27,306.08,305.68,19.92,19.98,19.92,19.81,19.68,19.54,19.37,19.2,18.830000000000002,N/A,N/A -2012,12,25,22,30,100700,99520,98380,51.89,0,12.26,13.780000000000001,14.370000000000001,14.8,15.16,15.47,15.75,16,16.45,304.08,304.47,304.69,304.91,305.09000000000003,305.26,305.41,305.55,305.76,19.22,19.150000000000002,19.04,18.88,18.72,18.55,18.37,18.2,17.830000000000002,N/A,N/A -2012,12,25,23,30,100830,99640,98490,55.72,0,13.8,15.48,16.06,16.45,16.740000000000002,16.97,17.150000000000002,17.31,17.57,305.91,305.78000000000003,305.76,305.76,305.75,305.75,305.75,305.76,305.76,17.830000000000002,17.56,17.400000000000002,17.2,17.01,16.82,16.62,16.43,16.04,N/A,N/A -2012,12,26,0,30,100950,99750,98590,76.75,0,15.99,17.650000000000002,18.16,18.42,18.59,18.69,18.740000000000002,18.77,18.76,326.23,326.22,326.12,325.98,325.85,325.72,325.57,325.44,325.14,15.57,15.040000000000001,14.82,14.58,14.36,14.16,13.950000000000001,13.76,13.36,N/A,N/A -2012,12,26,1,30,101150,99940,98750,81.77,0,15.34,16.81,17.32,17.580000000000002,17.76,17.87,17.94,17.990000000000002,18.03,314.27,314.35,314.49,314.63,314.75,314.86,314.97,315.08,315.28000000000003,12.9,12.19,11.91,11.64,11.41,11.19,10.97,10.77,10.36,N/A,N/A -2012,12,26,2,30,101300,100070,98870,82.72,0,16.72,18.23,18.67,18.85,18.95,19,19.01,19,18.93,318.17,318.34000000000003,318.43,318.52,318.6,318.66,318.73,318.8,318.94,10.19,9.26,8.94,8.67,8.43,8.22,8,7.8,7.4,N/A,N/A -2012,12,26,3,30,101410,100180,98970,87.37,0,14.23,15.44,15.81,16.02,16.15,16.240000000000002,16.3,16.35,16.4,327.78000000000003,327.5,327.40000000000003,327.33,327.28000000000003,327.22,327.18,327.14,327.06,8.9,7.98,7.65,7.37,7.12,6.9,6.66,6.45,6.03,N/A,N/A -2012,12,26,4,30,101510,100270,99060,85.96000000000001,0,14.22,15.39,15.700000000000001,15.85,15.94,16,16.03,16.05,16.06,331.69,331.33,331.08,330.85,330.63,330.43,330.22,330.02,329.63,7.57,6.59,6.25,5.98,5.73,5.51,5.28,5.07,4.66,N/A,N/A -2012,12,26,5,30,101630,100380,99160,84.72,0,14.41,15.66,16,16.19,16.31,16.39,16.44,16.48,16.53,330.85,330.65000000000003,330.52,330.40000000000003,330.28000000000003,330.17,330.07,329.97,329.77,6.59,5.5600000000000005,5.22,4.94,4.69,4.46,4.23,4.0200000000000005,3.61,N/A,N/A -2012,12,26,6,30,101730,100470,99250,87.39,0,13.5,14.58,14.85,14.99,15.07,15.13,15.16,15.18,15.19,331.42,331.41,331.43,331.46,331.49,331.51,331.54,331.57,331.63,6.1000000000000005,5.05,4.7,4.42,4.16,3.94,3.71,3.49,3.08,N/A,N/A -2012,12,26,7,30,101820,100560,99340,86.99,0,13.48,14.55,14.81,14.950000000000001,15.030000000000001,15.09,15.120000000000001,15.14,15.15,334.24,334.2,334.16,334.13,334.1,334.07,334.04,334.02,333.97,5.74,4.69,4.34,4.0600000000000005,3.81,3.58,3.36,3.14,2.73,N/A,N/A -2012,12,26,8,30,101880,100620,99400,87.56,0,13.86,14.92,15.200000000000001,15.33,15.41,15.46,15.48,15.5,15.5,335.7,335.71,335.7,335.7,335.7,335.69,335.7,335.7,335.7,5.46,4.38,4.0200000000000005,3.73,3.48,3.25,3.0300000000000002,2.82,2.41,N/A,N/A -2012,12,26,9,30,101930,100670,99440,89.59,0,13.24,14.27,14.540000000000001,14.67,14.75,14.8,14.82,14.83,14.83,337.7,337.77,337.81,337.86,337.91,337.94,337.99,338.03000000000003,338.13,5.3100000000000005,4.24,3.88,3.6,3.34,3.12,2.89,2.68,2.27,N/A,N/A -2012,12,26,10,30,102000,100730,99510,90.25,0,12.32,13.22,13.44,13.55,13.6,13.64,13.65,13.65,13.63,339.02,339.09000000000003,339.13,339.17,339.21,339.24,339.28000000000003,339.32,339.40000000000003,5.18,4.16,3.81,3.54,3.29,3.06,2.84,2.63,2.23,N/A,N/A -2012,12,26,11,30,102060,100800,99570,90.38,0,11.65,12.46,12.65,12.74,12.780000000000001,12.81,12.81,12.81,12.780000000000001,340.64,340.71,340.76,340.81,340.85,340.88,340.93,340.97,341.05,5.08,4.08,3.74,3.47,3.22,3,2.7800000000000002,2.57,2.17,N/A,N/A -2012,12,26,12,30,102130,100860,99630,89.52,0,11.01,11.76,11.92,12,12.030000000000001,12.05,12.05,12.05,12.01,342.26,342.32,342.37,342.40000000000003,342.45,342.49,342.53000000000003,342.57,342.66,4.98,4.01,3.67,3.4,3.16,2.94,2.72,2.5100000000000002,2.11,N/A,N/A -2012,12,26,13,30,102180,100910,99680,89.71000000000001,0,10.370000000000001,11.05,11.200000000000001,11.27,11.290000000000001,11.31,11.31,11.3,11.27,344.2,344.38,344.49,344.59000000000003,344.68,344.77,344.86,344.95,345.14,4.9,3.96,3.64,3.38,3.13,2.92,2.7,2.49,2.09,N/A,N/A -2012,12,26,14,30,102240,100970,99740,90.66,0,9.72,10.31,10.43,10.48,10.5,10.5,10.49,10.48,10.44,345.47,345.65000000000003,345.75,345.84000000000003,345.94,346.02,346.11,346.2,346.37,4.97,4.0600000000000005,3.74,3.48,3.24,3.0300000000000002,2.81,2.61,2.21,N/A,N/A -2012,12,26,15,30,102220,100960,99730,90.81,0,10.76,11.450000000000001,11.59,11.66,11.68,11.69,11.68,11.67,11.63,346.11,346.21,346.28000000000003,346.34000000000003,346.40000000000003,346.46,346.52,346.59000000000003,346.71,5.3100000000000005,4.37,4.04,3.7800000000000002,3.54,3.3200000000000003,3.11,2.91,2.5100000000000002,N/A,N/A -2012,12,26,16,30,102240,100980,99750,89.26,0,9.73,10.33,10.46,10.52,10.540000000000001,10.55,10.55,10.540000000000001,10.5,346.16,346.25,346.32,346.37,346.42,346.47,346.51,346.56,346.65000000000003,5.7700000000000005,4.89,4.57,4.3100000000000005,4.08,3.86,3.65,3.45,3.0500000000000003,N/A,N/A -2012,12,26,17,30,102220,100960,99730,86.94,0,9.3,9.86,9.98,10.03,10.05,10.06,10.06,10.040000000000001,10.01,343.92,344.01,344.08,344.14,344.2,344.25,344.31,344.36,344.48,6.3500000000000005,5.5,5.2,4.95,4.71,4.5,4.29,4.09,3.69,N/A,N/A -2012,12,26,18,30,102240,100980,99760,83.05,0,8.43,8.92,9.01,9.05,9.07,9.07,9.07,9.05,9.02,342.49,342.62,342.72,342.8,342.88,342.95,343.03000000000003,343.11,343.26,7.03,6.23,5.94,5.7,5.46,5.26,5.05,4.84,4.45,N/A,N/A -2012,12,26,19,30,102220,100960,99750,79.55,0,8.69,9.200000000000001,9.31,9.35,9.36,9.370000000000001,9.36,9.34,9.31,343.35,343.52,343.62,343.72,343.82,343.90000000000003,344,344.09000000000003,344.27,7.74,6.95,6.67,6.43,6.2,6,5.78,5.58,5.19,N/A,N/A -2012,12,26,20,30,102160,100910,99700,76.2,0,8.9,9.44,9.540000000000001,9.58,9.6,9.6,9.6,9.58,9.540000000000001,345.27,345.44,345.55,345.66,345.76,345.85,345.96,346.06,346.28000000000003,8.45,7.68,7.4,7.16,6.93,6.73,6.5200000000000005,6.32,5.92,N/A,N/A -2012,12,26,21,30,102170,100920,99710,75.02,0,7.29,7.69,7.78,7.82,7.83,7.84,7.84,7.83,7.8100000000000005,348.47,348.76,348.93,349.08,349.23,349.37,349.51,349.65000000000003,349.92,9.13,8.43,8.17,7.930000000000001,7.71,7.51,7.3,7.1000000000000005,6.7,N/A,N/A -2012,12,26,22,30,102150,100910,99700,69.65,0,6.21,6.51,6.5600000000000005,6.57,6.57,6.5600000000000005,6.55,6.54,6.5,357.04,356.95,356.88,356.82,356.77,356.72,356.67,356.62,356.53000000000003,9.61,8.96,8.71,8.48,8.26,8.06,7.8500000000000005,7.65,7.26,N/A,N/A -2012,12,26,23,30,102140,100900,99690,68.98,0,6.32,6.61,6.65,6.65,6.640000000000001,6.62,6.6000000000000005,6.58,6.5200000000000005,3.7,3.8200000000000003,3.88,3.93,3.99,4.03,4.08,4.12,4.22,9.790000000000001,9.15,8.9,8.67,8.46,8.26,8.05,7.86,7.46,N/A,N/A -2012,12,27,0,30,102160,100920,99710,70.42,0,6.74,7.0600000000000005,7.1000000000000005,7.1000000000000005,7.09,7.07,7.04,7.01,6.94,16.240000000000002,16.34,16.4,16.44,16.490000000000002,16.53,16.580000000000002,16.63,16.73,9.72,9.07,8.81,8.58,8.36,8.16,7.95,7.76,7.36,N/A,N/A -2012,12,27,1,30,102160,100910,99700,70.47,0,6.61,6.9,6.93,6.93,6.91,6.890000000000001,6.8500000000000005,6.82,6.74,23.330000000000002,23.54,23.67,23.79,23.91,24.01,24.13,24.240000000000002,24.47,9.52,8.86,8.6,8.38,8.16,7.96,7.75,7.55,7.16,N/A,N/A -2012,12,27,2,30,102160,100910,99700,70.57000000000001,0,6.34,6.61,6.640000000000001,6.63,6.61,6.59,6.5600000000000005,6.5200000000000005,6.45,31.220000000000002,31.68,31.98,32.25,32.53,32.77,33.05,33.32,33.87,9.46,8.81,8.55,8.33,8.11,7.91,7.7,7.51,7.12,N/A,N/A -2012,12,27,3,30,102130,100890,99680,72.28,0,6.36,6.66,6.7,6.7,6.69,6.68,6.66,6.63,6.58,37.92,38.550000000000004,38.93,39.29,39.64,39.96,40.300000000000004,40.63,41.32,9.68,9.03,8.78,8.55,8.33,8.13,7.930000000000001,7.73,7.34,N/A,N/A -2012,12,27,4,30,102100,100860,99660,75.58,0,5.94,6.21,6.26,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.25,6.24,6.2,46.26,47.1,47.61,48.08,48.53,48.95,49.39,49.800000000000004,50.64,10.11,9.48,9.23,9.01,8.790000000000001,8.6,8.38,8.19,7.79,N/A,N/A -2012,12,27,5,30,102090,100850,99640,75.48,0,5.8500000000000005,6.11,6.15,6.16,6.15,6.140000000000001,6.13,6.11,6.08,54.43,55.39,56,56.56,57.09,57.57,58.1,58.59,59.58,10.450000000000001,9.84,9.6,9.38,9.16,8.96,8.75,8.56,8.17,N/A,N/A -2012,12,27,6,30,102070,100830,99630,75.92,0,5.13,5.4,5.46,5.49,5.5200000000000005,5.54,5.55,5.5600000000000005,5.58,65.2,66.58,67.41,68.18,68.89,69.52,70.19,70.81,72.03,11.08,10.52,10.290000000000001,10.08,9.86,9.67,9.46,9.26,8.870000000000001,N/A,N/A -2012,12,27,7,30,102050,100820,99630,77.75,0,5.04,5.24,5.26,5.26,5.25,5.24,5.22,5.2,5.16,81.8,82.59,83.17,83.71000000000001,84.23,84.71000000000001,85.23,85.72,86.72,11.56,11.01,10.78,10.57,10.35,10.16,9.950000000000001,9.76,9.36,N/A,N/A -2012,12,27,8,30,102020,100800,99600,82.68,0,5.7700000000000005,6.11,6.18,6.21,6.23,6.25,6.25,6.25,6.25,88.4,89.88,90.55,91.15,91.67,92.14,92.63,93.07000000000001,93.94,12.09,11.540000000000001,11.31,11.09,10.88,10.68,10.47,10.27,9.88,N/A,N/A -2012,12,27,9,30,101990,100760,99570,76.12,0,5.48,5.78,5.8500000000000005,5.88,5.9,5.92,5.92,5.93,5.93,104.87,105.59,106.03,106.43,106.8,107.12,107.46000000000001,107.77,108.38,12.64,12.11,11.88,11.67,11.450000000000001,11.26,11.05,10.85,10.450000000000001,N/A,N/A -2012,12,27,10,30,101910,100690,99500,77.64,0,6.41,6.78,6.86,6.9,6.92,6.93,6.94,6.95,6.95,97.53,97.93,98.22,98.48,98.75,98.99000000000001,99.25,99.51,100.03,13.01,12.48,12.26,12.040000000000001,11.83,11.64,11.43,11.24,10.85,N/A,N/A -2012,12,27,11,30,101880,100660,99480,78.19,0.4,5.93,6.3100000000000005,6.4,6.45,6.49,6.51,6.53,6.55,6.58,107.9,109.32000000000001,110.03,110.69,111.31,111.88,112.48,113.04,114.19,13.700000000000001,13.200000000000001,12.99,12.77,12.57,12.38,12.17,11.98,11.59,N/A,N/A -2012,12,27,12,30,101850,100630,99440,81.28,2.9000000000000004,7.46,7.9,8.01,8.06,8.08,8.09,8.1,8.1,8.08,89.47,90.47,91.13,91.76,92.34,92.86,93.41,93.92,94.99,13.66,13.13,12.91,12.700000000000001,12.5,12.3,12.1,11.91,11.53,N/A,N/A -2012,12,27,13,30,101790,100570,99390,81.19,0,7.55,8.1,8.23,8.3,8.34,8.370000000000001,8.39,8.4,8.4,104.92,105.35000000000001,105.57000000000001,105.77,105.97,106.14,106.33,106.5,106.85000000000001,14.17,13.66,13.43,13.22,13.01,12.81,12.6,12.4,12.01,N/A,N/A -2012,12,27,14,30,101780,100560,99380,80.68,0,8.1,8.69,8.84,8.91,8.96,8.99,9.01,9.02,9.02,103.02,103.60000000000001,103.9,104.16,104.42,104.65,104.89,105.11,105.58,14.59,14.08,13.870000000000001,13.65,13.44,13.25,13.040000000000001,12.85,12.46,N/A,N/A -2012,12,27,15,30,101750,100540,99360,83.73,0,8.32,8.92,9.09,9.17,9.23,9.27,9.31,9.33,9.36,95.58,96.41,96.83,97.21000000000001,97.54,97.84,98.14,98.42,98.98,14.83,14.33,14.120000000000001,13.9,13.69,13.5,13.3,13.1,12.71,N/A,N/A -2012,12,27,16,30,101700,100490,99320,82.71000000000001,0,8.91,9.61,9.8,9.89,9.950000000000001,9.99,10.02,10.03,10.040000000000001,99.08,99.16,99.24000000000001,99.33,99.41,99.5,99.58,99.66,99.85000000000001,15.120000000000001,14.620000000000001,14.41,14.19,13.98,13.790000000000001,13.58,13.39,13,N/A,N/A -2012,12,27,17,30,101630,100420,99250,85.02,0,9.82,10.69,10.92,11.05,11.14,11.200000000000001,11.25,11.28,11.33,99.58,100,100.26,100.52,100.75,100.97,101.19,101.4,101.82000000000001,15.43,14.94,14.72,14.51,14.31,14.11,13.91,13.72,13.33,N/A,N/A -2012,12,27,18,30,101580,100380,99210,86.29,1.1,10.92,11.91,12.16,12.3,12.38,12.44,12.47,12.5,12.52,102.68,103.08,103.31,103.52,103.72,103.9,104.10000000000001,104.28,104.65,15.66,15.17,14.96,14.74,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A -2012,12,27,19,30,101540,100340,99170,85.49,0,10.64,11.65,11.92,12.08,12.18,12.25,12.3,12.34,12.38,107.27,107.61,107.8,107.99000000000001,108.16,108.31,108.48,108.63,108.94,16.21,15.76,15.55,15.34,15.13,14.94,14.74,14.55,14.16,N/A,N/A -2012,12,27,20,30,101500,100300,99140,86.09,0,11.36,12.43,12.76,12.93,13.040000000000001,13.120000000000001,13.17,13.200000000000001,13.23,110.16,110.32000000000001,110.45,110.58,110.7,110.81,110.93,111.05,111.31,16.55,16.12,15.92,15.71,15.5,15.31,15.11,14.92,14.530000000000001,N/A,N/A -2012,12,27,21,30,101420,100220,99060,90.68,1.1,11.08,12.23,12.56,12.76,12.9,13,13.07,13.13,13.200000000000001,112.11,112.68,112.93,113.15,113.35000000000001,113.54,113.74000000000001,113.92,114.29,16.86,16.45,16.26,16.05,15.85,15.67,15.47,15.290000000000001,14.9,N/A,N/A -2012,12,27,22,30,101360,100170,99010,89.55,4.800000000000001,12.09,13.23,13.52,13.65,13.72,13.76,13.76,13.76,13.72,114.71000000000001,114.94,115.11,115.31,115.52,115.73,115.99000000000001,116.23,116.88,17.18,16.79,16.6,16.4,16.21,16.02,15.83,15.65,15.280000000000001,N/A,N/A -2012,12,27,23,30,101300,100110,98950,91.72,0,10.14,11.01,11.22,11.33,11.4,11.46,11.56,11.69,12.43,104.94,105.44,105.86,106.38,107.05,107.77,108.99000000000001,110.51,118.67,17.41,17.05,16.88,16.69,16.51,16.34,16.17,16.03,15.88,N/A,N/A -2012,12,28,0,30,101270,100080,98920,91.7,5.5,11.42,12.57,12.88,13.06,13.19,13.290000000000001,13.370000000000001,13.44,13.68,114.8,115.13,115.41,115.72,116.04,116.38,116.8,117.22,118.53,17.82,17.490000000000002,17.32,17.12,16.94,16.76,16.57,16.4,16.05,N/A,N/A -2012,12,28,1,30,101250,100060,98910,93.45,0.4,8.34,9.61,10.1,10.34,10.620000000000001,10.94,11.21,11.44,11.83,121.44,122.63,123.61,124.89,126.29,127.81,129.49,131.1,134.34,18.36,18.12,17.98,17.8,17.66,17.55,17.44,17.34,17.11,N/A,N/A -2012,12,28,2,30,101210,100020,98870,91.04,0,8.41,9.5,9.89,10.23,10.52,10.790000000000001,11.040000000000001,11.28,11.77,125.54,126.14,126.57000000000001,127.09,127.65,128.24,128.93,129.6,131.38,18.740000000000002,18.54,18.400000000000002,18.25,18.1,17.96,17.81,17.67,17.400000000000002,N/A,N/A -2012,12,28,3,30,101190,100010,98860,90.73,0.7000000000000001,8.3,9.51,9.97,10.36,10.71,11.02,11.31,11.58,12.11,140.37,140.91,141.43,142.13,142.88,143.69,144.64000000000001,145.56,147.66,19.06,18.94,18.86,18.740000000000002,18.63,18.52,18.41,18.3,18.07,N/A,N/A -2012,12,28,4,30,101150,99970,98820,91.99,0.4,8.27,9.63,10.17,10.64,11.08,11.47,11.86,12.21,12.86,145.22,145.79,146.38,147.1,147.83,148.56,149.28,149.95000000000002,151.17000000000002,19.25,19.16,19.080000000000002,18.96,18.85,18.73,18.6,18.48,18.22,N/A,N/A -2012,12,28,5,30,101100,99920,98780,93.36,1.8,7.58,9.03,9.68,10.38,11.05,11.72,12.39,13.030000000000001,14.24,154.92000000000002,155.61,156.20000000000002,156.92000000000002,157.64000000000001,158.37,159.1,159.78,160.96,19.19,19.11,19.04,18.95,18.86,18.78,18.68,18.6,18.43,N/A,N/A -2012,12,28,6,30,101080,99900,98760,90.46000000000001,0,9.18,10.89,11.67,12.42,13.08,13.68,14.24,14.74,15.59,154.75,155.35,155.76,156.16,156.5,156.8,157.11,157.4,158.21,19.73,19.73,19.68,19.6,19.52,19.44,19.34,19.25,19.04,N/A,N/A -2012,12,28,7,30,101030,99850,98710,88.51,0,10.17,12.1,12.92,13.69,14.370000000000001,15.01,15.6,16.15,17.150000000000002,159.67000000000002,160.17000000000002,160.59,161.09,161.56,162.04,162.49,162.9,163.61,20.14,20.22,20.2,20.16,20.11,20.05,19.97,19.900000000000002,19.71,N/A,N/A -2012,12,28,8,30,101020,99850,98710,90.46000000000001,0,9.84,11.57,12.33,13.02,13.61,14.17,14.69,15.17,16.080000000000002,163.79,164.18,164.48,164.92000000000002,165.35,165.83,166.31,166.78,167.78,20.13,20.240000000000002,20.25,20.22,20.18,20.12,20.05,19.97,19.77,N/A,N/A -2012,12,28,9,30,100960,99790,98650,91.27,0,9.31,11.14,11.94,12.69,13.34,13.94,14.51,15.030000000000001,16.03,164.71,165.20000000000002,165.66,166.32,166.98,167.68,168.42000000000002,169.12,170.47,20.17,20.28,20.29,20.26,20.23,20.18,20.13,20.07,19.92,N/A,N/A -2012,12,28,10,30,100940,99770,98630,89.97,0,9.09,10.94,11.76,12.530000000000001,13.200000000000001,13.81,14.370000000000001,14.89,15.81,166.65,167.23,167.72,168.31,168.86,169.41,169.94,170.44,171.39000000000001,20.36,20.5,20.51,20.48,20.43,20.36,20.29,20.21,20.03,N/A,N/A -2012,12,28,11,30,100890,99720,98580,90.36,0,10.27,12.19,13.01,13.77,14.44,15.05,15.620000000000001,16.15,17.13,171.84,172.18,172.45000000000002,172.81,173.18,173.57,173.96,174.35,175.14000000000001,20.37,20.51,20.53,20.5,20.46,20.41,20.34,20.27,20.1,N/A,N/A -2012,12,28,12,30,100870,99700,98570,89.8,0.7000000000000001,10.78,12.870000000000001,13.77,14.620000000000001,15.36,16.04,16.66,17.21,18.2,175.58,175.86,176,176.18,176.34,176.48,176.61,176.73,176.92000000000002,20.490000000000002,20.67,20.69,20.68,20.650000000000002,20.6,20.53,20.46,20.27,N/A,N/A -2012,12,28,13,30,100810,99640,98510,89.5,0.4,11.14,13.24,14.15,14.950000000000001,15.65,16.3,16.89,17.42,18.43,176.17000000000002,176.12,176.38,176.64000000000001,176.89000000000001,177.13,177.36,177.58,178.04,20.56,20.75,20.78,20.76,20.72,20.68,20.61,20.54,20.37,N/A,N/A -2012,12,28,14,30,100900,99730,98590,92.79,99.2,8.89,10.46,11.23,11.97,12.61,13.23,13.84,14.44,15.620000000000001,192.1,191.78,191.4,190.73,189.99,189.02,187.87,186.63,184,19.85,19.87,19.84,19.740000000000002,19.66,19.57,19.48,19.38,19.19,N/A,N/A -2012,12,28,15,30,100990,99820,98680,98.78,566.9,9.5,9.97,10.200000000000001,10.46,10.68,10.88,11.05,11.19,11.4,301.94,293.14,285.98,279.35,274.25,270.4,267.46,265.23,262.25,18.45,18.62,18.8,18.93,19,18.96,18.900000000000002,18.830000000000002,18.650000000000002,N/A,N/A -2012,12,28,16,30,101050,99850,98690,93.94,24.5,9.78,10.51,10.72,10.78,10.82,10.82,10.82,10.82,10.89,322.88,323.3,323.26,323.22,323.17,323.12,323.05,322.97,322.73,15.8,15.34,15.14,14.93,14.74,14.55,14.36,14.19,13.84,N/A,N/A -2012,12,28,17,30,101030,99820,98650,91.52,0,11.01,11.88,12.09,12.17,12.21,12.23,12.23,12.23,12.23,328.09000000000003,328.03000000000003,328.02,328,327.97,327.94,327.91,327.87,327.74,14.71,14.16,13.94,13.73,13.52,13.33,13.14,12.96,12.58,N/A,N/A -2012,12,28,18,30,101070,99860,98690,90.98,2.6,10.540000000000001,11.35,11.55,11.64,11.69,11.72,11.73,11.75,11.8,326.72,326.77,326.77,326.75,326.73,326.69,326.66,326.62,326.5,14.34,13.77,13.55,13.34,13.14,12.950000000000001,12.76,12.57,12.21,N/A,N/A -2012,12,28,19,30,101150,99940,98770,88.13,0,9.55,10.25,10.450000000000001,10.540000000000001,10.59,10.63,10.65,10.66,10.69,330.33,330.2,330.12,330.04,329.97,329.90000000000003,329.82,329.74,329.58,14.39,13.85,13.620000000000001,13.41,13.200000000000001,13.01,12.81,12.620000000000001,12.24,N/A,N/A -2012,12,28,20,30,101210,100000,98830,86.12,0,10.41,11.28,11.53,11.66,11.75,11.81,11.86,11.89,11.950000000000001,327.72,327.75,327.77,327.78000000000003,327.79,327.8,327.81,327.82,327.84000000000003,14.58,14.030000000000001,13.8,13.58,13.370000000000001,13.18,12.97,12.780000000000001,12.39,N/A,N/A -2012,12,28,21,30,101310,100100,98930,83.76,0,11.05,11.96,12.22,12.35,12.44,12.49,12.530000000000001,12.55,12.58,331.12,331.06,331.01,330.96,330.92,330.88,330.84000000000003,330.8,330.73,14.18,13.6,13.36,13.13,12.91,12.71,12.5,12.31,11.91,N/A,N/A -2012,12,28,22,30,101400,100190,99000,83.89,0,12.63,13.72,14.030000000000001,14.18,14.280000000000001,14.35,14.39,14.42,14.44,332.88,332.95,332.98,333.02,333.05,333.08,333.11,333.14,333.2,13.13,12.450000000000001,12.19,11.950000000000001,11.73,11.53,11.31,11.11,10.71,N/A,N/A -2012,12,28,23,30,101500,100280,99090,85.23,0,11.73,12.700000000000001,12.98,13.120000000000001,13.21,13.280000000000001,13.33,13.36,13.41,338.89,338.85,338.8,338.75,338.71,338.66,338.62,338.58,338.49,12.21,11.5,11.23,10.99,10.76,10.55,10.33,10.13,9.73,N/A,N/A -2012,12,29,0,30,101610,100380,99190,85.55,0,12.22,13.26,13.56,13.72,13.82,13.89,13.94,13.98,14.02,340.33,340.34000000000003,340.36,340.37,340.38,340.39,340.41,340.42,340.44,11.57,10.82,10.540000000000001,10.290000000000001,10.06,9.85,9.63,9.43,9.02,N/A,N/A -2012,12,29,1,30,101710,100480,99280,86.3,0,12.07,13.05,13.33,13.46,13.55,13.61,13.64,13.67,13.69,342.2,342.1,342.06,342.03000000000003,342.01,341.99,341.98,341.97,341.95,10.78,10,9.71,9.46,9.22,9.01,8.790000000000001,8.59,8.18,N/A,N/A -2012,12,29,2,30,101810,100570,99370,86.31,0,12.47,13.46,13.74,13.89,13.97,14.040000000000001,14.07,14.09,14.11,341.32,341.65000000000003,341.88,342.1,342.3,342.48,342.66,342.84000000000003,343.19,10.27,9.44,9.15,8.89,8.65,8.44,8.22,8.02,7.61,N/A,N/A -2012,12,29,3,30,101890,100650,99450,88.38,0,11.3,12.18,12.43,12.57,12.66,12.72,12.76,12.790000000000001,12.82,346.8,347.11,347.22,347.29,347.35,347.40000000000003,347.44,347.48,347.54,9.9,9.09,8.790000000000001,8.53,8.290000000000001,8.07,7.84,7.640000000000001,7.23,N/A,N/A -2012,12,29,4,30,101970,100730,99520,88.74,0,11.69,12.59,12.84,12.97,13.05,13.1,13.13,13.15,13.16,344.82,344.90000000000003,345.02,345.14,345.26,345.37,345.48,345.59000000000003,345.79,9.49,8.64,8.33,8.07,7.83,7.61,7.38,7.18,6.76,N/A,N/A -2012,12,29,5,30,102040,100790,99580,89.71000000000001,0,10.46,11.19,11.38,11.47,11.53,11.56,11.58,11.59,11.59,346.97,347.49,347.65000000000003,347.78000000000003,347.89,347.98,348.05,348.12,348.26,8.78,7.97,7.67,7.42,7.18,6.97,6.75,6.54,6.140000000000001,N/A,N/A -2012,12,29,6,30,102160,100900,99680,82.29,0,13.31,14.35,14.620000000000001,14.74,14.81,14.86,14.870000000000001,14.88,14.870000000000001,356.90000000000003,356.68,356.51,356.35,356.19,356.06,355.90000000000003,355.76,355.46,7.6000000000000005,6.63,6.3100000000000005,6.04,5.8,5.58,5.36,5.16,4.76,N/A,N/A -2012,12,29,7,30,102250,101000,99770,81.2,0,12.94,13.96,14.22,14.35,14.42,14.47,14.5,14.51,14.51,1.43,1.18,1.01,0.85,0.7000000000000001,0.56,0.41000000000000003,0.26,359.97,7.26,6.3,5.98,5.71,5.47,5.26,5.04,4.84,4.44,N/A,N/A -2012,12,29,8,30,102310,101050,99830,81.07000000000001,0,12.61,13.6,13.86,13.99,14.07,14.120000000000001,14.15,14.17,14.19,359.08,358.82,358.66,358.51,358.37,358.24,358.11,357.99,357.75,7.11,6.15,5.83,5.57,5.33,5.11,4.89,4.69,4.29,N/A,N/A -2012,12,29,9,30,102400,101140,99920,78.04,0,12.96,13.96,14.21,14.32,14.38,14.42,14.44,14.450000000000001,14.44,1.33,1.1400000000000001,1.01,0.88,0.76,0.66,0.55,0.44,0.23,6.8,5.82,5.49,5.22,4.98,4.7700000000000005,4.55,4.3500000000000005,3.95,N/A,N/A -2012,12,29,10,30,102510,101250,100020,75.41,0,13.01,13.99,14.25,14.370000000000001,14.43,14.47,14.48,14.49,14.47,1.8800000000000001,1.73,1.6300000000000001,1.53,1.44,1.36,1.27,1.19,1.02,6.5,5.51,5.17,4.9,4.66,4.45,4.23,4.03,3.63,N/A,N/A -2012,12,29,11,30,102600,101330,100100,70.18,0,12.89,13.870000000000001,14.120000000000001,14.23,14.290000000000001,14.33,14.35,14.36,14.35,2.24,2.21,2.18,2.15,2.13,2.1,2.07,2.04,1.97,6.21,5.2,4.87,4.6000000000000005,4.36,4.15,3.93,3.73,3.34,N/A,N/A -2012,12,29,12,30,102670,101400,100170,68.39,0,12.67,13.63,13.870000000000001,13.99,14.06,14.1,14.13,14.14,14.15,4.33,4.5,4.61,4.7,4.78,4.8500000000000005,4.92,4.97,5.08,5.97,4.98,4.64,4.38,4.13,3.92,3.7,3.5,3.11,N/A,N/A -2012,12,29,13,30,102760,101490,100250,69.11,0,12.55,13.5,13.74,13.86,13.93,13.97,14,14.01,14.01,4.8,4.94,5.04,5.11,5.19,5.24,5.3,5.3500000000000005,5.44,5.82,4.8100000000000005,4.48,4.21,3.96,3.75,3.5300000000000002,3.33,2.94,N/A,N/A -2012,12,29,14,30,102840,101570,100330,69.91,0,11.92,12.790000000000001,13.01,13.13,13.19,13.24,13.26,13.280000000000001,13.290000000000001,6.76,6.8500000000000005,6.92,6.97,7.01,7.05,7.09,7.12,7.19,5.57,4.59,4.25,3.99,3.74,3.5300000000000002,3.31,3.11,2.72,N/A,N/A -2012,12,29,15,30,102860,101590,100350,69.3,0,10.74,11.49,11.68,11.78,11.84,11.88,11.91,11.93,11.97,1.75,1.86,1.93,2,2.07,2.12,2.17,2.22,2.3000000000000003,5.67,4.75,4.44,4.18,3.95,3.74,3.5300000000000002,3.33,2.95,N/A,N/A -2012,12,29,16,30,102900,101630,100390,67.44,0,9.64,10.290000000000001,10.46,10.55,10.61,10.66,10.69,10.72,10.77,359.46,359.38,359.34000000000003,359.3,359.26,359.24,359.2,359.17,359.11,6.3,5.44,5.14,4.89,4.66,4.46,4.25,4.05,3.67,N/A,N/A -2012,12,29,17,30,102880,101620,100390,66.02,0,9.61,10.26,10.43,10.53,10.59,10.63,10.67,10.69,10.74,354.52,354.51,354.51,354.52,354.53000000000003,354.55,354.56,354.57,354.61,7,6.16,5.86,5.61,5.38,5.17,4.96,4.7700000000000005,4.37,N/A,N/A -2012,12,29,18,30,102890,101630,100400,63.79,0,9.49,10.14,10.31,10.4,10.46,10.51,10.540000000000001,10.57,10.61,350.05,349.99,349.95,349.91,349.89,349.86,349.85,349.84000000000003,349.82,7.86,7.0600000000000005,6.7700000000000005,6.5200000000000005,6.29,6.09,5.88,5.68,5.28,N/A,N/A -2012,12,29,19,30,102890,101640,100410,62,0,9.5,10.16,10.34,10.43,10.49,10.53,10.56,10.58,10.61,350.19,350.12,350.07,350.04,350,349.97,349.95,349.93,349.89,8.67,7.88,7.6000000000000005,7.36,7.13,6.93,6.71,6.51,6.11,N/A,N/A -2012,12,29,20,30,102890,101640,100420,59.93,0,9.040000000000001,9.65,9.8,9.88,9.93,9.96,9.99,10.01,10.03,349.95,349.92,349.90000000000003,349.88,349.88,349.87,349.86,349.85,349.85,9.27,8.53,8.26,8.02,7.8,7.59,7.38,7.18,6.78,N/A,N/A -2012,12,29,21,30,102900,101650,100430,57.59,0,8.53,9.09,9.23,9.31,9.35,9.39,9.41,9.42,9.44,352.24,352.17,352.12,352.07,352.03000000000003,352,351.96,351.93,351.88,9.75,9.040000000000001,8.78,8.540000000000001,8.31,8.11,7.890000000000001,7.7,7.29,N/A,N/A -2012,12,29,22,30,102910,101660,100440,55.89,0,8.52,9.07,9.200000000000001,9.26,9.3,9.33,9.34,9.35,9.36,350.57,350.53000000000003,350.52,350.5,350.49,350.47,350.47,350.46,350.45,10.05,9.36,9.09,8.86,8.64,8.44,8.22,8.02,7.62,N/A,N/A -2012,12,29,23,30,102930,101680,100460,56.03,0,8.51,9.06,9.19,9.25,9.290000000000001,9.31,9.32,9.33,9.34,356.35,356.45,356.5,356.54,356.58,356.62,356.67,356.7,356.79,10.13,9.43,9.18,8.94,8.72,8.52,8.3,8.1,7.7,N/A,N/A -2012,12,30,0,30,103000,101750,100530,56.47,0,8.8,9.36,9.49,9.55,9.58,9.6,9.61,9.61,9.61,3.3200000000000003,3.21,3.12,3.0300000000000002,2.95,2.88,2.8000000000000003,2.74,2.6,10.02,9.32,9.05,8.82,8.59,8.39,8.17,7.98,7.58,N/A,N/A -2012,12,30,1,30,103030,101770,100560,55.57,0,9.22,9.82,9.950000000000001,10,10.03,10.05,10.05,10.05,10.03,6.24,6.140000000000001,6.08,6.03,5.98,5.93,5.88,5.83,5.74,9.72,8.99,8.73,8.49,8.27,8.07,7.86,7.66,7.2700000000000005,N/A,N/A -2012,12,30,2,30,103060,101810,100590,59.34,0,9.02,9.6,9.72,9.78,9.81,9.83,9.84,9.84,9.83,8.97,9.26,9.44,9.6,9.75,9.89,10.040000000000001,10.17,10.450000000000001,9.49,8.76,8.49,8.25,8.03,7.83,7.61,7.41,7.01,N/A,N/A -2012,12,30,3,30,103080,101830,100610,59.22,0,9.13,9.72,9.84,9.9,9.93,9.950000000000001,9.950000000000001,9.950000000000001,9.93,17.06,17.12,17.16,17.19,17.23,17.27,17.31,17.35,17.44,9.38,8.64,8.38,8.14,7.91,7.71,7.5,7.3,6.9,N/A,N/A -2012,12,30,4,30,103060,101800,100580,59.33,0,9.59,10.22,10.36,10.42,10.450000000000001,10.47,10.47,10.46,10.450000000000001,20.82,20.94,21,21.06,21.12,21.18,21.240000000000002,21.3,21.42,9.28,8.52,8.25,8.01,7.78,7.58,7.37,7.17,6.7700000000000005,N/A,N/A -2012,12,30,5,30,103060,101800,100580,60.34,0,9.61,10.25,10.39,10.450000000000001,10.48,10.5,10.5,10.49,10.47,25.400000000000002,25.63,25.79,25.92,26.05,26.18,26.310000000000002,26.43,26.69,9.17,8.41,8.13,7.9,7.67,7.47,7.25,7.05,6.66,N/A,N/A -2012,12,30,6,30,103080,101830,100600,61.58,0,9.52,10.15,10.28,10.35,10.38,10.39,10.4,10.39,10.370000000000001,32.25,32.53,32.69,32.84,32.99,33.12,33.27,33.4,33.67,9.16,8.41,8.14,7.9,7.67,7.47,7.26,7.0600000000000005,6.66,N/A,N/A -2012,12,30,7,30,103100,101840,100620,61.51,0,9.53,10.16,10.3,10.36,10.39,10.41,10.41,10.41,10.39,37.7,38.09,38.33,38.550000000000004,38.76,38.95,39.15,39.33,39.72,9.18,8.43,8.17,7.930000000000001,7.7,7.5,7.29,7.09,6.69,N/A,N/A -2012,12,30,8,30,103100,101850,100630,65.35,0,8.84,9.41,9.53,9.6,9.63,9.65,9.65,9.65,9.64,44.4,44.97,45.300000000000004,45.61,45.910000000000004,46.18,46.45,46.7,47.230000000000004,9.38,8.65,8.38,8.15,7.92,7.72,7.51,7.3100000000000005,6.91,N/A,N/A -2012,12,30,9,30,103090,101840,100620,70.09,0,9,9.6,9.73,9.8,9.83,9.85,9.86,9.870000000000001,9.86,51.660000000000004,52.02,52.24,52.44,52.63,52.800000000000004,52.980000000000004,53.14,53.47,9.51,8.790000000000001,8.52,8.28,8.06,7.8500000000000005,7.640000000000001,7.44,7.03,N/A,N/A -2012,12,30,10,30,103080,101830,100610,61.75,0,9.200000000000001,9.8,9.92,9.98,10,10.02,10.01,10.01,9.98,56.85,57.11,57.27,57.410000000000004,57.54,57.67,57.800000000000004,57.92,58.17,9.65,8.92,8.65,8.42,8.19,7.98,7.7700000000000005,7.57,7.17,N/A,N/A -2012,12,30,11,30,103080,101830,100610,69.78,0,8.86,9.44,9.56,9.620000000000001,9.65,9.67,9.67,9.67,9.65,58.230000000000004,58.72,59.02,59.29,59.550000000000004,59.78,60.03,60.26,60.72,9.700000000000001,8.98,8.72,8.49,8.26,8.06,7.84,7.640000000000001,7.24,N/A,N/A -2012,12,30,12,30,103090,101840,100620,71.62,0,8.67,9.23,9.36,9.41,9.450000000000001,9.47,9.47,9.48,9.46,63.95,64.38,64.63,64.87,65.09,65.29,65.5,65.7,66.1,9.99,9.290000000000001,9.03,8.8,8.57,8.370000000000001,8.16,7.96,7.5600000000000005,N/A,N/A -2012,12,30,13,30,103090,101840,100620,67.2,0,8.42,8.950000000000001,9.06,9.11,9.14,9.15,9.15,9.15,9.13,71.4,71.65,71.81,71.95,72.09,72.21000000000001,72.34,72.46000000000001,72.7,10.34,9.67,9.41,9.18,8.96,8.76,8.540000000000001,8.34,7.94,N/A,N/A -2012,12,30,14,30,103110,101860,100640,69.19,0,8.33,8.85,8.96,9.01,9.03,9.040000000000001,9.040000000000001,9.040000000000001,9.02,72.96000000000001,73.28,73.48,73.66,73.84,74,74.17,74.34,74.67,10.39,9.72,9.47,9.24,9.02,8.82,8.6,8.4,8,N/A,N/A -2012,12,30,15,30,103100,101850,100630,71.87,0,8.2,8.72,8.82,8.870000000000001,8.9,8.91,8.91,8.91,8.9,76.29,76.69,76.93,77.15,77.37,77.57000000000001,77.76,77.95,78.33,10.66,10.01,9.76,9.53,9.3,9.11,8.89,8.69,8.290000000000001,N/A,N/A -2012,12,30,16,30,103060,101810,100600,73.94,0,7.72,8.19,8.290000000000001,8.34,8.370000000000001,8.39,8.4,8.4,8.39,79.76,80.17,80.42,80.65,80.87,81.07000000000001,81.27,81.47,81.85000000000001,10.950000000000001,10.31,10.07,9.84,9.620000000000001,9.43,9.21,9.01,8.61,N/A,N/A -2012,12,30,17,30,103020,101770,100560,71.73,0,7.23,7.65,7.73,7.7700000000000005,7.78,7.79,7.79,7.78,7.76,84.09,84.51,84.78,85.02,85.25,85.45,85.67,85.87,86.28,11.23,10.620000000000001,10.38,10.15,9.94,9.74,9.53,9.33,8.93,N/A,N/A -2012,12,30,18,30,102980,101740,100530,74.5,0,6.7700000000000005,7.16,7.23,7.2700000000000005,7.28,7.29,7.29,7.29,7.2700000000000005,84.32000000000001,84.94,85.32000000000001,85.66,85.98,86.27,86.58,86.87,87.44,11.51,10.92,10.68,10.46,10.25,10.05,9.84,9.64,9.25,N/A,N/A -2012,12,30,19,30,102950,101710,100500,75.72,0,6.63,7,7.07,7.1000000000000005,7.11,7.12,7.12,7.11,7.1000000000000005,82.71000000000001,83.38,83.79,84.16,84.51,84.83,85.16,85.47,86.08,11.78,11.200000000000001,10.97,10.76,10.540000000000001,10.34,10.13,9.94,9.540000000000001,N/A,N/A -2012,12,30,20,30,102890,101650,100440,76.62,0,6.53,6.9,6.98,7.0200000000000005,7.04,7.05,7.05,7.0600000000000005,7.05,85.09,85.65,86.01,86.33,86.64,86.92,87.21000000000001,87.48,88.03,12.05,11.49,11.26,11.040000000000001,10.82,10.63,10.42,10.22,9.83,N/A,N/A -2012,12,30,21,30,102830,101600,100390,79.41,0,6.8500000000000005,7.26,7.36,7.41,7.43,7.45,7.46,7.46,7.46,85.53,86.33,86.76,87.15,87.5,87.82000000000001,88.15,88.45,89.05,12.41,11.85,11.620000000000001,11.4,11.18,10.99,10.78,10.58,10.19,N/A,N/A -2012,12,30,22,30,102750,101520,100320,78.61,0,6.96,7.390000000000001,7.49,7.54,7.5600000000000005,7.58,7.6000000000000005,7.61,7.62,91.83,91.91,92.05,92.19,92.34,92.49,92.66,92.82000000000001,93.18,12.56,12,11.78,11.56,11.35,11.15,10.94,10.74,10.35,N/A,N/A -2012,12,30,23,30,102700,101460,100270,79.09,0,7.890000000000001,8.4,8.52,8.57,8.6,8.620000000000001,8.63,8.63,8.63,92.16,93.06,93.58,94.05,94.48,94.86,95.27,95.64,96.4,13.16,12.61,12.38,12.17,11.950000000000001,11.76,11.55,11.35,10.96,N/A,N/A -2012,12,31,0,30,102660,101430,100240,79.2,0,7.54,8.08,8.21,8.290000000000001,8.33,8.370000000000001,8.39,8.41,8.44,98.85000000000001,99.43,99.76,100.06,100.34,100.59,100.85000000000001,101.09,101.59,13.6,13.07,12.85,12.63,12.42,12.22,12.01,11.82,11.42,N/A,N/A -2012,12,31,1,30,102610,101380,100190,78.48,0,7.95,8.52,8.66,8.74,8.790000000000001,8.82,8.85,8.870000000000001,8.89,102.65,103.35000000000001,103.7,104.02,104.31,104.56,104.82000000000001,105.07000000000001,105.55,14.02,13.51,13.280000000000001,13.07,12.86,12.66,12.450000000000001,12.26,11.86,N/A,N/A -2012,12,31,2,30,102580,101360,100170,77.87,0,7.57,8.16,8.32,8.42,8.49,8.55,8.59,8.63,8.69,106.64,107.46000000000001,107.87,108.24000000000001,108.57000000000001,108.87,109.17,109.44,109.98,14.57,14.08,13.870000000000001,13.66,13.450000000000001,13.26,13.05,12.85,12.46,N/A,N/A -2012,12,31,3,30,102520,101300,100110,77.65,0,7.17,7.66,7.7700000000000005,7.82,7.8500000000000005,7.87,7.88,7.88,7.890000000000001,111.82000000000001,112.21000000000001,112.51,112.81,113.10000000000001,113.38,113.7,114,114.67,15.09,14.620000000000001,14.42,14.21,14.01,13.82,13.61,13.42,13.040000000000001,N/A,N/A -2012,12,31,4,30,102460,101250,100070,80.9,0,7.2,7.79,7.96,8.06,8.14,8.2,8.25,8.290000000000001,8.35,105.71000000000001,106.37,106.72,107.06,107.37,107.65,107.94,108.2,108.75,15.700000000000001,15.27,15.07,14.86,14.66,14.47,14.27,14.08,13.69,N/A,N/A -2012,12,31,5,30,102410,101200,100020,83.57000000000001,0,8.35,9.01,9.16,9.24,9.290000000000001,9.32,9.33,9.34,9.34,102.15,102.42,102.67,102.92,103.17,103.4,103.67,103.92,104.49000000000001,16.05,15.620000000000001,15.42,15.21,15.01,14.82,14.620000000000001,14.44,14.05,N/A,N/A -2012,12,31,6,30,102380,101170,99990,83.93,0,8.75,9.56,9.78,9.91,9.99,10.040000000000001,10.07,10.09,10.11,108.52,108.9,109.14,109.37,109.57000000000001,109.76,109.94,110.12,110.48,16.69,16.330000000000002,16.14,15.94,15.74,15.55,15.35,15.17,14.780000000000001,N/A,N/A -2012,12,31,7,30,102360,101150,99970,85.54,0,8.88,9.69,9.91,10.02,10.08,10.13,10.14,10.15,10.14,103.81,104.13,104.43,104.73,105.02,105.28,105.57000000000001,105.85000000000001,106.46000000000001,16.86,16.51,16.330000000000002,16.13,15.93,15.75,15.55,15.36,14.98,N/A,N/A -2012,12,31,8,30,102280,101070,99900,87.4,0,9.91,10.790000000000001,11,11.09,11.15,11.17,11.18,11.19,11.200000000000001,109.34,109.57000000000001,109.75,109.95,110.18,110.4,110.7,110.99000000000001,111.93,16.94,16.59,16.41,16.21,16.02,15.84,15.64,15.46,15.09,N/A,N/A -2012,12,31,9,30,102240,101030,99860,88.60000000000001,0,9.31,10.16,10.38,10.5,10.57,10.63,10.67,10.71,10.9,113.31,113.68,113.88,114.12,114.4,114.7,115.11,115.53,117.41,17.41,17.11,16.94,16.75,16.56,16.38,16.19,16.02,15.67,N/A,N/A -2012,12,31,10,30,102180,100980,99810,90.73,0,8.65,9.51,9.78,9.99,10.200000000000001,10.41,10.73,11.040000000000001,11.09,117.18,117.44,117.71000000000001,118.11,118.67,119.32000000000001,120.3,121.3,125.16,17.650000000000002,17.38,17.23,17.04,16.87,16.7,16.54,16.38,16.13,N/A,N/A -2012,12,31,11,30,102110,100910,99750,93.61,0,8,9.31,9.74,9.870000000000001,10.14,10.46,10.71,10.9,11.1,113.31,115.23,116.21000000000001,116.72,117.89,119.38,121.06,122.65,126.45,17.63,17.39,17.25,17.07,16.94,16.84,16.72,16.62,16.41,N/A,N/A -2012,12,31,12,30,102070,100870,99700,93.51,0,8.2,9.21,9.57,9.88,10.15,10.4,10.67,10.91,11.46,116.12,116.53,116.87,117.29,117.79,118.32000000000001,119.10000000000001,119.92,124.06,17.89,17.650000000000002,17.51,17.35,17.19,17.04,16.9,16.77,16.65,N/A,N/A -2012,12,31,13,30,102010,100820,99660,94.8,0,7.7,8.76,9.16,9.52,9.85,10.14,10.44,10.72,11.26,119.09,119.74000000000001,120.17,120.72,121.34,121.99000000000001,122.93,123.89,127.85000000000001,18.03,17.82,17.68,17.53,17.38,17.240000000000002,17.11,16.990000000000002,16.86,N/A,N/A -2012,12,31,14,30,102000,100810,99650,93.58,0,7.74,8.92,9.39,9.82,10.200000000000001,10.540000000000001,10.85,11.13,11.84,122.41,123.65,124.84,126.7,129.18,132.13,136.3,140.49,149,18.42,18.34,18.29,18.25,18.25,18.27,18.32,18.37,18.36,N/A,N/A -2012,12,31,15,30,101970,100780,99620,93.84,0,6.57,7.78,8.32,8.870000000000001,9.39,9.89,10.33,10.73,11.31,132.14000000000001,133.27,134.21,135.49,136.82,138.20000000000002,139.68,141.08,144.24,18.580000000000002,18.51,18.46,18.400000000000002,18.36,18.32,18.28,18.240000000000002,18.13,N/A,N/A -2012,12,31,16,30,101920,100730,99580,93.26,0,6.55,8.01,8.72,9.450000000000001,10.14,10.82,11.41,11.950000000000001,12.71,144.82,146.84,148.37,150.13,151.68,153.12,154.37,155.52,159.33,18.95,19.01,19.04,19.06,19.09,19.12,19.11,19.1,19,N/A,N/A -2012,12,31,17,30,101860,100670,99520,93.35000000000001,0,6.09,7.5600000000000005,8.27,9.040000000000001,9.78,10.5,11.18,11.82,12.75,150.49,151.82,152.81,153.94,155.03,156.11,157.33,158.52,160.97,19.06,19.13,19.16,19.18,19.19,19.21,19.2,19.19,19.080000000000002,N/A,N/A -2012,12,31,18,30,101810,100620,99470,92.16,0,6.890000000000001,8.44,9.13,9.82,10.48,11.13,11.8,12.44,13.51,153.79,155.1,156.19,157.63,159.02,160.39000000000001,161.5,162.49,163.72,19.31,19.43,19.46,19.48,19.5,19.5,19.490000000000002,19.48,19.37,N/A,N/A -2012,12,31,19,30,101780,100590,99440,93.09,0,6.5200000000000005,8.11,8.85,9.6,10.31,10.98,11.64,12.25,13.27,155.75,157.24,158.45000000000002,160.03,161.51,162.92000000000002,164.03,165.01,166.77,19.32,19.45,19.5,19.54,19.56,19.59,19.580000000000002,19.57,19.47,N/A,N/A -2012,12,31,20,30,101720,100530,99390,91.79,0,6.61,8.32,9.120000000000001,9.93,10.65,11.32,11.94,12.51,13.4,161.15,162.17000000000002,162.87,163.56,164.06,164.41,164.56,164.64000000000001,164.68,19.48,19.66,19.72,19.77,19.78,19.77,19.740000000000002,19.7,19.53,N/A,N/A -2012,12,31,21,30,101680,100500,99350,92.01,0,6.640000000000001,8.41,9.23,10.05,10.78,11.46,12.06,12.61,13.5,159.20000000000002,160.91,162.17000000000002,163.67000000000002,165,166.23,167.25,168.15,169.4,19.43,19.64,19.71,19.78,19.82,19.84,19.830000000000002,19.8,19.66,N/A,N/A -2012,12,31,22,30,101650,100460,99320,92.33,0,6,7.74,8.57,9.43,10.21,10.94,11.59,12.200000000000001,13.42,160.17000000000002,161.85,163.20000000000002,164.87,166.42000000000002,167.89000000000001,169.15,170.29,172.26,19.31,19.55,19.650000000000002,19.73,19.78,19.82,19.81,19.8,19.73,N/A,N/A -2012,12,31,23,30,101610,100430,99280,92.32000000000001,0,6.16,7.91,8.74,9.6,10.38,11.11,11.8,12.44,13.5,160.8,162.20000000000002,163.34,164.83,166.22,167.56,168.65,169.6,170.55,19.29,19.53,19.62,19.72,19.78,19.830000000000002,19.84,19.84,19.72,N/A,N/A From fccfc8a284659b5a90b2b42432def2be4ed319af Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Thu, 25 Sep 2025 11:37:41 -0600 Subject: [PATCH 20/79] Reasonable asset sizing --- .../plant_config_co2h.yaml | 2 +- .../plot_co2h_methanol.py | 16 +- .../tech_config_co2h.yaml | 20 +- .../tech_inputs/hopp_config.yaml | 4 +- .../29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv | 8762 +++++++++++++++++ 5 files changed, 8783 insertions(+), 21 deletions(-) create mode 100644 resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index 242b6a537..6cc130645 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -31,8 +31,8 @@ site: # this will naturally grow as we mature the interconnected tech technology_interconnections: [ ["hopp", "electricity_splitter", "electricity", "cable"], - ["electricity_splitter", "electrolyzer", "electricity", "cable"], ["electricity_splitter", "doc", "electricity", "cable"], + ["electricity_splitter", "electrolyzer", "electricity", "cable"], # ["hopp", "electrolyzer", "electricity", "cable"], ["electrolyzer", "h2_storage", "hydrogen", "pipe"], ["h2_storage", "methanol", "hydrogen", "pipe"], diff --git a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py index 19b9f95fc..a3c2d7de9 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py @@ -42,10 +42,10 @@ def plot_methanol(model): # Electricity to CO2 using DOC plt.subplot(3, 2, 2) plt.title("DOC") - doc_elec_in = model.plant.doc.direct_ocean_capture_performance.get_val("electricity_in") / 1000 - doc_co2_out = model.plant.doc.direct_ocean_capture_performance.get_val("co2_out") - plt.plot(times, doc_elec_in, label="electricity_in [kW]") - plt.plot(times, doc_co2_out, label="co2_out [kg/hr]", color=[0.5, 0.25, 0]) + doc_elec_in = model.plant.doc.direct_ocean_capture_performance.get_val("electricity_in") / 1e6 + doc_co2_out = model.plant.doc.direct_ocean_capture_performance.get_val("co2_out") / 1000 * 24 + plt.plot(times, doc_elec_in, label="electricity_in [MW]") + plt.plot(times, doc_co2_out, label="co2_out [t/d]", color=[0.5, 0.25, 0]) # plt.yscale("log") plt.legend() @@ -62,10 +62,10 @@ def plot_methanol(model): # H2 and Storage plt.subplot(3, 2, 4) plt.title("CO2 Storage") - model.plant.doc_to_co2_storage_pipe.get_val("co2_in") * 3600 - model.plant.co2_storage_to_methanol_pipe.get_val("co2_out") * 3600 - plt.plot(times, h2_storage_in, label="co2_in [kg/hr]", color=[0.5, 0.25, 0]) - plt.plot(times, h2_storage_out, label="co2_out [kg/hr]", color=[0, 0.25, 0.5]) + co2_storage_in = model.plant.doc_to_co2_storage_pipe.get_val("co2_in") + co2_storage_out = model.plant.co2_storage_to_methanol_pipe.get_val("co2_out") + plt.plot(times, co2_storage_in, label="co2_in [kg/hr]", color=[0.5, 0.25, 0]) + plt.plot(times, co2_storage_out, label="co2_out [kg/hr]", color=[0, 0.25, 0.5]) # plt.yscale("log") plt.legend() diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 7e2c2e94d..7b1e1f507 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -19,7 +19,7 @@ technologies: model: "splitter_performance" config: split_mode: "fraction" - fraction_to_priority_tech: 0.8 + fraction_to_priority_tech: 0.2 electrolyzer: performance_model: model: "eco_pem_electrolyzer_performance" @@ -36,8 +36,8 @@ technologies: resize_for_enduse: False size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) hydrogen_dmd: - n_clusters: 8 - cluster_rating_MW: 37.5 + n_clusters: 9 + cluster_rating_MW: 40 pem_control_type: 'basic' eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol uptime_hours_until_eol: 80000 #number of 'on' hours until electrolyzer reaches eol @@ -67,10 +67,10 @@ technologies: max_discharge_rate: 5000.0 # kg/time step charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal - demand_profile: 195 + demand_profile: 780 cost_parameters: cost_year: 2022 - energy_capex: .000001 # $/kg + energy_capex: 383 # $/kg power_capex: .000001 # $/kg/h opex_fraction: .000001 # percent of capex # performance_model: @@ -144,7 +144,7 @@ technologies: model_inputs: shared_parameters: power_single_ed_w: 3000000.0 # W - flow_rate_single_ed_m3s: 0.6 # m^3/s + flow_rate_single_ed_m3s: 0.075 # m^3/s number_ed_min: 1 number_ed_max: 10 E_HCl: 0.05 # kWh/mol @@ -174,7 +174,7 @@ technologies: resource_name: "co2" resource_rate_units: "kg/h" max_charge_rate: 5000.0 # kg/time step - max_capacity: 142300.0 # kg + max_capacity: 284600.0 # kg control_parameters: max_charge_percent: 1.0 # percent as decimal min_charge_percent: 0.1 # percent as decimal @@ -182,10 +182,10 @@ technologies: max_discharge_rate: 5000.0 # kg/time step charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal - demand_profile: 1423 + demand_profile: 5692 cost_parameters: cost_year: 2022 - energy_capex: .000001 # $/kg + energy_capex: 5 # $/kg power_capex: .000001 # $/kg/h opex_fraction: .000001 # percent of capex methanol: @@ -197,7 +197,7 @@ technologies: group: "1" model_inputs: shared_parameters: - plant_capacity_kgpy: 8760000 + plant_capacity_kgpy: 35040000 plant_capacity_flow: "methanol" performance_parameters: capacity_factor: 1 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml index c1f17e89e..69ff4dd17 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml @@ -29,14 +29,14 @@ site: #!include flatirons_site.yaml technologies: wind: - num_turbines: 28 + num_turbines: 24 turbine_rating_kw: 15000.0 model_name: pysam #floris timestep: [0, 8760] # floris_config: !include floris_input_lbw_6MW.yaml fin_model: !include default_fin_config.yaml grid: - interconnect_kw: 300000 # Set higher than rated generation capacity + interconnect_kw: 360000 # Set higher than rated generation capacity fin_model: !include default_fin_config.yaml config: diff --git a/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv b/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv new file mode 100644 index 000000000..d4a3ab279 --- /dev/null +++ b/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv @@ -0,0 +1,8762 @@ +SiteID,1379078,Site Timezone,-6,Data Timezone,0,Longitude,-94.593170166,Latitude,29.2054595947 +Year,Month,Day,Hour,Minute,surface air pressure (Pa),air pressure at 100m (Pa),air pressure at 200m (Pa),relative humidity at 2m (%),surface precipitation rate (mm/h),wind speed at 10m (m/s),wind speed at 40m (m/s),wind speed at 60m (m/s),wind speed at 80m (m/s),wind speed at 100m (m/s),wind speed at 120m (m/s),wind speed at 140m (m/s),wind speed at 160m (m/s),wind speed at 200m (m/s),wind direction at 10m (deg),wind direction at 40m (deg),wind direction at 60m (deg),wind direction at 80m (deg),wind direction at 100m (deg),wind direction at 120m (deg),wind direction at 140m (deg),wind direction at 160m (deg),wind direction at 200m (deg),air temperature at 10m (C),air temperature at 40m (C),air temperature at 60m (C),air temperature at 80m (C),air temperature at 100m (C),air temperature at 120m (C),air temperature at 140m (C),air temperature at 160m (C),air temperature at 200m (C),density - DEPRECATED,power - DEPRECATED +2012,1,1,0,30,101850,100660,99520,89.26,0,5.3100000000000005,7.38,8.3,9.21,10.06,10.870000000000001,11.53,12.1,12.77,188.64000000000001,188.75,189.61,191.37,193.81,196.68,200.71,204.78,212.06,19.45,19.82,19.91,19.98,19.98,19.95,19.88,19.81,20.27,N/A,N/A +2012,1,1,1,30,101870,100680,99540,89.31,0,5.8,7.99,9,9.99,10.86,11.63,12.17,12.61,13.01,184.22,185.72,186.99,188.65,190.47,192.37,194.85,197.33,202.28,19.36,19.7,19.77,19.78,19.76,19.71,19.72,19.740000000000002,19.89,N/A,N/A +2012,1,1,2,30,101910,100720,99570,90.13,0,5.19,7.41,8.45,9.5,10.39,11.15,11.82,12.41,12.9,186.20000000000002,187.37,188.1,188.73,189.94,191.51,193.34,195.12,199.28,19.23,19.580000000000002,19.650000000000002,19.650000000000002,19.62,19.580000000000002,19.44,19.29,19.88,N/A,N/A +2012,1,1,3,30,101920,100730,99590,89.62,0,5.6000000000000005,7.97,9.06,10.14,11.040000000000001,11.8,12.16,12.38,12.34,180.64000000000001,183.39000000000001,185.51,188.14000000000001,190.98,193.93,196.37,198.49,201.35,19.330000000000002,19.69,19.73,19.66,19.51,19.330000000000002,19.61,19.97,20.94,N/A,N/A +2012,1,1,4,30,101950,100760,99620,90.15,0.4,5.59,7.930000000000001,9.05,10.25,11.28,12.17,12.63,12.94,12.97,189.75,191.63,193.12,195.13,196.9,198.5,200.21,201.81,203.76,19.19,19.44,19.46,19.400000000000002,19.35,19.3,19.77,20.31,20.87,N/A,N/A +2012,1,1,5,30,101990,100800,99650,91.59,0.4,5.7,7.55,8.45,9.49,10.53,11.57,12.16,12.59,12.790000000000001,180.34,183.72,186.59,190.48,193.39000000000001,195.69,198.11,200.34,202.75,18.79,18.95,18.92,18.8,19.1,19.62,20.2,20.72,20.84,N/A,N/A +2012,1,1,6,30,102040,100850,99700,92.71000000000001,0.7000000000000001,4.64,6.62,7.68,8.99,10.25,11.5,12.040000000000001,12.370000000000001,12.44,189.88,191.34,192.58,194.31,196.61,199.33,202.24,204.92000000000002,207.91,18.92,19.13,19.03,18.67,19.080000000000002,19.95,20.53,20.98,21.05,N/A,N/A +2012,1,1,7,30,102110,100920,99770,92.46000000000001,0,4.32,6.22,7.15,8.21,9.3,10.42,10.97,11.32,11.57,194.88,195.43,196.03,197.04,198.74,200.95000000000002,204.18,207.4,211.05,19.01,19.25,19.23,19.06,19.27,19.7,20.240000000000002,20.740000000000002,21.03,N/A,N/A +2012,1,1,8,30,102170,100980,99830,93.10000000000001,0.4,3.34,5.18,5.94,6.71,7.57,8.53,9.5,10.450000000000001,11,211.8,209.43,208.4,208.71,209.26,209.96,212.24,214.86,218.57,19.080000000000002,19.41,19.45,19.41,19.3,19.16,19.23,19.35,20,N/A,N/A +2012,1,1,9,30,102240,101050,99900,93.13,0.4,2.59,4.45,5.41,6.46,7.32,8.02,8.26,8.34,8.45,233.77,232.8,231.59,229.9,229.86,231.21,231.70000000000002,231.88,233.37,19.19,19.73,19.84,19.8,19.75,19.71,19.63,19.56,19.41,N/A,N/A +2012,1,1,10,30,102310,101120,99970,90.32000000000001,12.8,4.63,6.49,7.0200000000000005,7.11,7.24,7.4,7.5600000000000005,7.72,8.03,255.67000000000002,256.07,256.03000000000003,255.6,255.86,256.56,256.77,256.85,256.76,19.62,20.06,20.14,20.14,20.16,20.19,20.14,20.080000000000002,19.91,N/A,N/A +2012,1,1,11,30,102380,101190,100040,92.89,0,4.42,6.23,6.96,7.390000000000001,7.61,7.69,7.79,7.9,8.06,275.26,272.61,272.82,277.35,280.37,282.41,283.61,284.52,284.63,18.900000000000002,19.34,19.55,19.73,19.8,19.8,19.830000000000002,19.86,19.77,N/A,N/A +2012,1,1,12,30,102450,101260,100100,90.89,0,4.45,6.74,7.71,8.41,9.07,9.71,10.18,10.59,10.97,290.21,291.44,292.46,293.83,294.79,295.5,296.09000000000003,296.59000000000003,296.59000000000003,19.48,19.740000000000002,19.71,19.55,19.53,19.580000000000002,19.61,19.62,19.44,N/A,N/A +2012,1,1,13,30,102560,101350,100170,86.29,0,10.73,11.86,12.19,12.450000000000001,12.72,12.98,13.42,13.89,14.82,350.6,351.06,351.35,351.69,352.11,352.53000000000003,353.19,353.84000000000003,354.42,16.89,16.580000000000002,16.41,16.22,16.04,15.88,15.73,15.620000000000001,15.71,N/A,N/A +2012,1,1,14,30,102700,101480,100300,79.41,0,10.540000000000001,11.64,11.96,12.19,12.38,12.540000000000001,12.73,12.92,13.46,3.3000000000000003,4,4.37,4.75,5.15,5.5200000000000005,6,6.48,7.73,15.77,15.370000000000001,15.18,15,14.81,14.63,14.450000000000001,14.280000000000001,13.950000000000001,N/A,N/A +2012,1,1,15,30,102760,101540,100350,69.58,0,10.8,11.82,12.06,12.200000000000001,12.3,12.36,12.41,12.46,12.56,5.6000000000000005,5.76,5.87,5.97,6.07,6.17,6.29,6.41,6.71,15.290000000000001,14.85,14.65,14.450000000000001,14.25,14.07,13.870000000000001,13.68,13.31,N/A,N/A +2012,1,1,16,30,102780,101560,100370,67.46000000000001,0,10.4,11.36,11.61,11.74,11.84,11.9,11.950000000000001,11.99,12.05,6.11,6.16,6.2,6.24,6.28,6.32,6.38,6.43,6.58,15.15,14.71,14.5,14.3,14.09,13.91,13.71,13.52,13.13,N/A,N/A +2012,1,1,17,30,102760,101540,100350,65.26,0,10.78,11.790000000000001,12.040000000000001,12.19,12.280000000000001,12.35,12.39,12.43,12.49,1.1500000000000001,1.22,1.25,1.29,1.32,1.36,1.41,1.46,1.57,15.44,15.01,14.82,14.61,14.41,14.23,14.02,13.84,13.450000000000001,N/A,N/A +2012,1,1,18,30,102810,101580,100400,60.13,0,10.18,11.17,11.43,11.58,11.69,11.77,11.83,11.870000000000001,11.94,0.41000000000000003,0.65,0.8200000000000001,0.98,1.1300000000000001,1.27,1.41,1.55,1.82,16,15.620000000000001,15.43,15.24,15.040000000000001,14.85,14.65,14.46,14.08,N/A,N/A +2012,1,1,19,30,102840,101620,100440,55.57,0,10.11,11.16,11.44,11.620000000000001,11.73,11.83,11.89,11.950000000000001,12.030000000000001,3.13,3.2600000000000002,3.35,3.46,3.5500000000000003,3.65,3.7600000000000002,3.86,4.07,16.54,16.21,16.03,15.84,15.64,15.46,15.26,15.07,14.69,N/A,N/A +2012,1,1,20,30,102840,101620,100440,53.34,0,10.71,11.89,12.200000000000001,12.4,12.540000000000001,12.65,12.72,12.790000000000001,12.88,0.5,0.64,0.74,0.8300000000000001,0.92,1.01,1.09,1.17,1.33,16.96,16.67,16.51,16.32,16.13,15.950000000000001,15.75,15.57,15.18,N/A,N/A +2012,1,1,21,30,102870,101650,100470,54.04,0,9.93,10.99,11.26,11.44,11.56,11.65,11.71,11.77,11.84,1.75,1.77,1.77,1.76,1.76,1.75,1.75,1.76,1.79,17.1,16.830000000000002,16.66,16.48,16.29,16.11,15.92,15.73,15.35,N/A,N/A +2012,1,1,22,30,102920,101700,100510,52.56,0,10.48,11.56,11.84,12,12.120000000000001,12.200000000000001,12.24,12.280000000000001,12.33,2.87,3.0500000000000003,3.15,3.25,3.35,3.44,3.54,3.63,3.8200000000000003,16.91,16.61,16.44,16.25,16.06,15.88,15.68,15.49,15.1,N/A,N/A +2012,1,1,23,30,103000,101770,100590,50.65,0,11.64,12.8,13.06,13.200000000000001,13.27,13.32,13.33,13.34,13.32,1.81,2.09,2.24,2.37,2.49,2.59,2.7,2.8000000000000003,3.02,16.23,15.870000000000001,15.68,15.49,15.290000000000001,15.1,14.9,14.71,14.32,N/A,N/A +2012,1,2,0,30,103110,101880,100680,53.27,0,11.88,13.07,13.370000000000001,13.55,13.66,13.75,13.8,13.85,13.91,4.83,4.94,5.0200000000000005,5.09,5.15,5.2,5.26,5.3100000000000005,5.42,15.44,15.01,14.81,14.61,14.4,14.22,14.01,13.82,13.42,N/A,N/A +2012,1,2,1,30,103160,101930,100730,54.76,0,12.32,13.57,13.9,14.09,14.22,14.32,14.4,14.450000000000001,14.540000000000001,7.83,7.9,7.96,8.01,8.06,8.1,8.15,8.19,8.28,14.8,14.32,14.11,13.9,13.700000000000001,13.51,13.3,13.11,12.72,N/A,N/A +2012,1,2,2,30,103210,101970,100770,57.27,0,12.51,13.77,14.1,14.3,14.43,14.530000000000001,14.6,14.66,14.75,9.06,9.290000000000001,9.4,9.52,9.63,9.73,9.84,9.94,10.16,14.18,13.66,13.44,13.23,13.02,12.83,12.620000000000001,12.43,12.040000000000001,N/A,N/A +2012,1,2,3,30,103260,102020,100810,59.64,0,12.780000000000001,14.05,14.38,14.58,14.72,14.83,14.91,14.98,15.09,10.790000000000001,11,11.13,11.26,11.39,11.51,11.64,11.77,12.040000000000001,13.52,12.950000000000001,12.72,12.5,12.290000000000001,12.1,11.9,11.71,11.33,N/A,N/A +2012,1,2,4,30,103270,102030,100820,61.47,0,12.700000000000001,13.950000000000001,14.27,14.47,14.61,14.71,14.790000000000001,14.86,14.98,14.41,14.59,14.71,14.82,14.94,15.05,15.18,15.3,15.56,13,12.4,12.16,11.950000000000001,11.73,11.540000000000001,11.34,11.15,10.77,N/A,N/A +2012,1,2,5,30,103290,102050,100840,61.690000000000005,0,12.8,14.030000000000001,14.35,14.540000000000001,14.66,14.76,14.84,14.91,15.040000000000001,15.6,15.790000000000001,15.92,16.05,16.18,16.3,16.45,16.580000000000002,16.89,12.61,11.98,11.74,11.52,11.31,11.13,10.92,10.74,10.370000000000001,N/A,N/A +2012,1,2,6,30,103340,102090,100880,63.25,0,13.030000000000001,14.26,14.58,14.76,14.88,14.98,15.05,15.120000000000001,15.25,18.400000000000002,18.580000000000002,18.69,18.8,18.92,19.02,19.150000000000002,19.28,19.55,12.24,11.56,11.32,11.1,10.88,10.700000000000001,10.5,10.31,9.94,N/A,N/A +2012,1,2,7,30,103400,102150,100940,64.03,0,13.25,14.5,14.81,14.99,15.120000000000001,15.21,15.290000000000001,15.36,15.5,20.35,20.51,20.63,20.740000000000002,20.85,20.96,21.09,21.22,21.52,11.92,11.22,10.97,10.75,10.540000000000001,10.35,10.15,9.97,9.61,N/A,N/A +2012,1,2,8,30,103430,102180,100970,63.31,0,13.67,14.97,15.3,15.49,15.610000000000001,15.700000000000001,15.780000000000001,15.85,15.99,23.13,23.32,23.43,23.55,23.67,23.78,23.91,24.04,24.36,11.65,10.93,10.68,10.46,10.24,10.06,9.86,9.68,9.32,N/A,N/A +2012,1,2,9,30,103470,102210,101000,64.3,0,13.46,14.700000000000001,15.02,15.19,15.31,15.4,15.47,15.540000000000001,15.68,24.5,24.67,24.78,24.88,24.990000000000002,25.080000000000002,25.2,25.310000000000002,25.57,11.27,10.53,10.27,10.040000000000001,9.83,9.65,9.450000000000001,9.27,8.92,N/A,N/A +2012,1,2,10,30,103500,102250,101030,63.71,0,13.21,14.41,14.71,14.870000000000001,14.99,15.07,15.14,15.200000000000001,15.33,26.93,27.1,27.21,27.3,27.400000000000002,27.490000000000002,27.59,27.69,27.91,10.950000000000001,10.200000000000001,9.94,9.72,9.5,9.31,9.120000000000001,8.94,8.58,N/A,N/A +2012,1,2,11,30,103560,102300,101080,63.25,0,12.83,13.97,14.26,14.42,14.52,14.6,14.66,14.71,14.81,29.580000000000002,29.740000000000002,29.830000000000002,29.91,29.990000000000002,30.07,30.150000000000002,30.23,30.400000000000002,10.73,9.97,9.71,9.48,9.27,9.08,8.88,8.700000000000001,8.33,N/A,N/A +2012,1,2,12,30,103620,102360,101140,63.5,0,12.620000000000001,13.73,14,14.16,14.26,14.33,14.39,14.44,14.530000000000001,30.69,30.82,30.92,31,31.09,31.16,31.25,31.32,31.48,10.540000000000001,9.790000000000001,9.52,9.290000000000001,9.08,8.89,8.69,8.51,8.14,N/A,N/A +2012,1,2,13,30,103670,102410,101190,63.4,0,12.44,13.530000000000001,13.790000000000001,13.93,14.030000000000001,14.1,14.15,14.200000000000001,14.290000000000001,30.8,30.94,31.03,31.1,31.18,31.25,31.32,31.39,31.53,10.38,9.620000000000001,9.36,9.13,8.92,8.73,8.53,8.35,7.98,N/A,N/A +2012,1,2,14,30,103730,102470,101250,64.26,0,11.44,12.36,12.57,12.69,12.76,12.81,12.84,12.870000000000001,12.92,31.080000000000002,31.240000000000002,31.330000000000002,31.41,31.490000000000002,31.55,31.62,31.68,31.8,10.13,9.38,9.120000000000001,8.9,8.68,8.49,8.3,8.11,7.75,N/A,N/A +2012,1,2,15,30,103750,102490,101260,62.65,0,10.24,11.03,11.22,11.33,11.4,11.46,11.51,11.55,11.63,30.68,30.82,30.91,30.990000000000002,31.060000000000002,31.13,31.2,31.27,31.39,10.13,9.42,9.16,8.94,8.73,8.540000000000001,8.34,8.15,7.79,N/A,N/A +2012,1,2,16,30,103730,102470,101240,59.47,0,9.22,9.91,10.09,10.19,10.26,10.32,10.370000000000001,10.42,10.51,24.69,24.78,24.85,24.91,24.97,25.03,25.09,25.150000000000002,25.27,10.38,9.700000000000001,9.46,9.24,9.02,8.83,8.63,8.44,8.06,N/A,N/A +2012,1,2,17,30,103700,102450,101230,55.49,0,7.62,8.15,8.28,8.36,8.42,8.46,8.5,8.53,8.59,14.72,14.790000000000001,14.84,14.88,14.93,14.96,15.01,15.05,15.15,10.83,10.22,9.98,9.76,9.55,9.36,9.15,8.96,8.57,N/A,N/A +2012,1,2,18,30,103680,102430,101210,49.9,0,7.36,7.88,8.01,8.09,8.15,8.2,8.24,8.27,8.33,7.2,7.21,7.22,7.22,7.23,7.23,7.23,7.24,7.26,11.68,11.1,10.88,10.66,10.44,10.25,10.040000000000001,9.85,9.450000000000001,N/A,N/A +2012,1,2,19,30,103660,102410,101200,48.18,0,6.94,7.390000000000001,7.51,7.58,7.62,7.66,7.69,7.71,7.74,357.68,357.79,357.88,357.96,358.05,358.13,358.2,358.28000000000003,358.42,12.51,11.98,11.76,11.55,11.33,11.14,10.93,10.73,10.33,N/A,N/A +2012,1,2,20,30,103610,102360,101150,46.36,0,7.01,7.48,7.58,7.65,7.69,7.72,7.74,7.76,7.78,345.68,346.11,346.40000000000003,346.66,346.92,347.15000000000003,347.39,347.62,348.06,13.02,12.51,12.290000000000001,12.08,11.870000000000001,11.68,11.47,11.27,10.88,N/A,N/A +2012,1,2,21,30,103570,102320,101110,46.29,0,7.8,8.34,8.46,8.53,8.56,8.59,8.6,8.61,8.620000000000001,343.08,343.58,343.89,344.17,344.44,344.68,344.92,345.14,345.59000000000003,13.24,12.73,12.51,12.3,12.09,11.89,11.69,11.49,11.1,N/A,N/A +2012,1,2,22,30,103530,102290,101080,45.93,0,7.74,8.27,8.38,8.44,8.47,8.5,8.51,8.52,8.52,340.56,341,341.28000000000003,341.53000000000003,341.76,341.97,342.19,342.39,342.79,13.31,12.8,12.58,12.370000000000001,12.16,11.97,11.76,11.57,11.17,N/A,N/A +2012,1,2,23,30,103530,102280,101080,49.15,0,7.46,7.97,8.09,8.15,8.19,8.22,8.24,8.26,8.27,342.72,342.90000000000003,343.01,343.1,343.2,343.28000000000003,343.37,343.45,343.61,13.31,12.8,12.58,12.370000000000001,12.16,11.96,11.75,11.56,11.16,N/A,N/A +2012,1,3,0,30,103550,102310,101100,51.47,0,8.35,8.93,9.05,9.11,9.13,9.16,9.16,9.16,9.15,342.81,343.28000000000003,343.56,343.81,344.05,344.27,344.49,344.69,345.09000000000003,13,12.46,12.24,12.030000000000001,11.81,11.620000000000001,11.41,11.21,10.81,N/A,N/A +2012,1,3,1,30,103580,102330,101120,50.76,0,8.44,9.02,9.14,9.200000000000001,9.22,9.23,9.23,9.23,9.21,350.6,350.65000000000003,350.67,350.69,350.71,350.73,350.74,350.76,350.79,12.57,12.01,11.78,11.57,11.35,11.16,10.950000000000001,10.75,10.36,N/A,N/A +2012,1,3,2,30,103600,102350,101140,49.25,0,8.51,9.1,9.23,9.3,9.33,9.35,9.36,9.36,9.35,353.62,353.59000000000003,353.57,353.55,353.52,353.5,353.48,353.46,353.41,12.370000000000001,11.8,11.57,11.35,11.14,10.950000000000001,10.74,10.540000000000001,10.15,N/A,N/A +2012,1,3,3,30,103600,102350,101130,49.28,0,8.91,9.53,9.65,9.71,9.73,9.75,9.75,9.74,9.72,357.1,356.82,356.65000000000003,356.5,356.35,356.23,356.11,355.99,355.77,12.01,11.42,11.19,10.97,10.76,10.57,10.36,10.17,9.78,N/A,N/A +2012,1,3,4,30,103600,102350,101140,49.14,0,8.41,8.97,9.08,9.13,9.15,9.16,9.15,9.15,9.13,1.6,1.46,1.36,1.26,1.16,1.07,0.96,0.85,0.62,11.67,11.07,10.84,10.63,10.41,10.23,10.02,9.83,9.450000000000001,N/A,N/A +2012,1,3,5,30,103620,102370,101150,53.28,0,8.45,8.99,9.09,9.14,9.15,9.16,9.15,9.14,9.11,4.74,4.8100000000000005,4.83,4.8500000000000005,4.86,4.8500000000000005,4.8500000000000005,4.83,4.7700000000000005,10.97,10.34,10.11,9.89,9.68,9.49,9.290000000000001,9.11,8.73,N/A,N/A +2012,1,3,6,30,103650,102390,101170,55.4,0,8.61,9.17,9.27,9.31,9.33,9.33,9.32,9.31,9.27,11.93,11.97,11.99,12,12,12.01,12.01,12.01,11.99,10.61,9.99,9.75,9.540000000000001,9.32,9.13,8.93,8.74,8.36,N/A,N/A +2012,1,3,7,30,103670,102410,101190,56,0,8.69,9.26,9.36,9.41,9.41,9.42,9.4,9.39,9.34,15.120000000000001,15.16,15.16,15.15,15.14,15.120000000000001,15.11,15.08,15,10.32,9.68,9.44,9.22,9.01,8.82,8.620000000000001,8.43,8.05,N/A,N/A +2012,1,3,8,30,103650,102390,101170,57.53,0,8.870000000000001,9.44,9.540000000000001,9.57,9.58,9.58,9.56,9.540000000000001,9.49,23.42,23.45,23.44,23.42,23.39,23.36,23.32,23.29,23.18,9.97,9.31,9.07,8.85,8.64,8.45,8.25,8.06,7.69,N/A,N/A +2012,1,3,9,30,103630,102370,101140,56.800000000000004,0,9.47,10.11,10.22,10.27,10.28,10.28,10.26,10.23,10.17,26.19,26.26,26.29,26.3,26.32,26.34,26.35,26.35,26.35,9.74,9.06,8.81,8.59,8.38,8.19,7.98,7.8,7.42,N/A,N/A +2012,1,3,10,30,103610,102350,101120,55.99,0,8.73,9.3,9.4,9.44,9.450000000000001,9.450000000000001,9.44,9.42,9.38,32.18,32.37,32.49,32.59,32.69,32.77,32.87,32.95,33.13,9.61,8.94,8.700000000000001,8.48,8.27,8.08,7.88,7.68,7.3,N/A,N/A +2012,1,3,11,30,103610,102350,101120,57.550000000000004,0,8.44,8.97,9.07,9.11,9.13,9.13,9.120000000000001,9.11,9.07,42.11,42.51,42.730000000000004,42.94,43.14,43.32,43.52,43.7,44.08,9.700000000000001,9.05,8.81,8.59,8.370000000000001,8.18,7.97,7.78,7.4,N/A,N/A +2012,1,3,12,30,103610,102350,101120,58.370000000000005,0,8.22,8.73,8.83,8.870000000000001,8.89,8.9,8.89,8.88,8.85,43.33,43.77,44.03,44.25,44.480000000000004,44.69,44.9,45.11,45.54,9.57,8.92,8.67,8.45,8.24,8.040000000000001,7.84,7.640000000000001,7.26,N/A,N/A +2012,1,3,13,30,103600,102340,101120,63.56,0,7.5,7.930000000000001,8.01,8.040000000000001,8.05,8.05,8.040000000000001,8.03,7.99,51.300000000000004,51.63,51.84,52.02,52.21,52.38,52.550000000000004,52.72,53.08,9.81,9.18,8.94,8.72,8.51,8.31,8.1,7.91,7.5200000000000005,N/A,N/A +2012,1,3,14,30,103600,102340,101120,57.94,0,7.72,8.18,8.26,8.290000000000001,8.31,8.31,8.3,8.290000000000001,8.25,55.730000000000004,56.03,56.21,56.370000000000005,56.53,56.68,56.83,56.980000000000004,57.28,9.99,9.36,9.120000000000001,8.9,8.69,8.49,8.28,8.09,7.7,N/A,N/A +2012,1,3,15,30,103580,102320,101100,59.93,0,7.01,7.41,7.48,7.51,7.5200000000000005,7.5200000000000005,7.5200000000000005,7.51,7.48,58.39,58.86,59.13,59.370000000000005,59.61,59.82,60.050000000000004,60.26,60.7,10.17,9.57,9.33,9.11,8.9,8.71,8.5,8.3,7.91,N/A,N/A +2012,1,3,16,30,103540,102280,101060,60.17,0,6.3100000000000005,6.66,6.73,6.76,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.75,66.15,66.57000000000001,66.8,67.02,67.24,67.43,67.63,67.82000000000001,68.22,10.47,9.9,9.66,9.450000000000001,9.24,9.040000000000001,8.83,8.64,8.24,N/A,N/A +2012,1,3,17,30,103490,102240,101020,60.4,0,5.8100000000000005,6.11,6.16,6.17,6.18,6.17,6.17,6.16,6.13,74.28,74.61,74.81,74.99,75.18,75.34,75.51,75.67,76.01,10.73,10.18,9.950000000000001,9.74,9.53,9.33,9.13,8.93,8.540000000000001,N/A,N/A +2012,1,3,18,30,103450,102200,100980,61.92,0,5.16,5.41,5.45,5.46,5.47,5.47,5.46,5.45,5.42,81.14,81.54,81.77,81.98,82.17,82.36,82.55,82.73,83.10000000000001,11.02,10.49,10.27,10.06,9.85,9.65,9.450000000000001,9.25,8.86,N/A,N/A +2012,1,3,19,30,103390,102140,100930,63.230000000000004,0,4.44,4.64,4.67,4.68,4.68,4.68,4.68,4.67,4.66,90.37,90.88,91.16,91.43,91.68,91.92,92.18,92.41,92.9,11.35,10.85,10.63,10.42,10.21,10.02,9.81,9.620000000000001,9.22,N/A,N/A +2012,1,3,20,30,103320,102070,100860,65.71000000000001,0,4.41,4.6000000000000005,4.63,4.64,4.64,4.63,4.62,4.61,4.59,104.02,104.47,104.7,104.93,105.15,105.36,105.57000000000001,105.77,106.19,11.59,11.09,10.88,10.67,10.46,10.27,10.06,9.86,9.47,N/A,N/A +2012,1,3,21,30,103250,102000,100790,62.93,0,3.91,4.09,4.13,4.15,4.16,4.16,4.17,4.17,4.17,119.45,120.08,120.44,120.77,121.09,121.38,121.68,121.96000000000001,122.56,11.950000000000001,11.47,11.26,11.06,10.85,10.66,10.450000000000001,10.26,9.86,N/A,N/A +2012,1,3,22,30,103170,101930,100720,65.42,0,4.05,4.25,4.28,4.3,4.3100000000000005,4.32,4.33,4.33,4.33,127.76,128.43,128.81,129.16,129.5,129.81,130.14000000000001,130.44,131.09,12.280000000000001,11.81,11.6,11.4,11.19,11,10.790000000000001,10.6,10.21,N/A,N/A +2012,1,3,23,30,103120,101880,100680,66.89,0,4.34,4.57,4.62,4.65,4.67,4.69,4.7,4.71,4.73,140.01,140.54,140.87,141.18,141.49,141.76,142.06,142.33,142.91,12.66,12.19,11.98,11.78,11.57,11.38,11.18,10.98,10.59,N/A,N/A +2012,1,4,0,30,103090,101850,100650,65.61,0,4.83,5.12,5.19,5.23,5.26,5.28,5.3,5.32,5.3500000000000005,152.18,152.69,152.98,153.25,153.52,153.75,154,154.24,154.73,13.15,12.69,12.48,12.280000000000001,12.07,11.89,11.68,11.49,11.09,N/A,N/A +2012,1,4,1,30,103030,101800,100600,67.44,0,5.44,5.78,5.86,5.91,5.95,5.97,5.99,6.01,6.04,159.29,159.76,160.03,160.28,160.53,160.75,160.98,161.21,161.66,13.61,13.16,12.96,12.76,12.55,12.36,12.15,11.96,11.57,N/A,N/A +2012,1,4,2,30,102970,101740,100550,71.66,0,6.34,6.79,6.9,6.97,7.01,7.05,7.07,7.1000000000000005,7.13,167.1,167.54,167.79,168.01,168.23,168.41,168.62,168.8,169.18,14.17,13.73,13.530000000000001,13.33,13.120000000000001,12.93,12.72,12.530000000000001,12.14,N/A,N/A +2012,1,4,3,30,102920,101690,100500,74.09,0,6.93,7.49,7.640000000000001,7.73,7.79,7.8500000000000005,7.890000000000001,7.930000000000001,7.99,172.3,172.8,173.08,173.33,173.57,173.78,174,174.19,174.6,14.67,14.24,14.040000000000001,13.84,13.63,13.450000000000001,13.24,13.05,12.66,N/A,N/A +2012,1,4,4,30,102840,101620,100430,74.82000000000001,0,7.13,7.76,7.930000000000001,8.040000000000001,8.120000000000001,8.19,8.24,8.28,8.36,179.02,179.51,179.76,179.99,180.20000000000002,180.38,180.59,180.77,181.13,15.290000000000001,14.89,14.700000000000001,14.5,14.290000000000001,14.11,13.9,13.71,13.32,N/A,N/A +2012,1,4,5,30,102800,101580,100390,75.15,0,7.48,8.08,8.24,8.34,8.4,8.45,8.49,8.53,8.58,194.38,193.78,193.46,193.16,192.88,192.63,192.39000000000001,192.17000000000002,191.74,15.83,15.450000000000001,15.26,15.06,14.86,14.67,14.47,14.27,13.88,N/A,N/A +2012,1,4,6,30,102760,101540,100360,73.16,0,8.66,9.52,9.74,9.86,9.94,9.99,10.03,10.06,10.09,191.12,191.66,192.06,192.44,192.81,193.14000000000001,193.48000000000002,193.79,194.43,16.57,16.26,16.080000000000002,15.88,15.68,15.5,15.3,15.11,14.72,N/A,N/A +2012,1,4,7,30,102740,101520,100340,75.86,0,8.08,8.9,9.14,9.3,9.42,9.52,9.6,9.67,9.790000000000001,194.12,195.02,195.42000000000002,195.78,196.11,196.4,196.66,196.9,197.35,16.81,16.52,16.36,16.16,15.97,15.790000000000001,15.59,15.4,15.01,N/A,N/A +2012,1,4,8,30,102680,101470,100290,76.06,0,7.140000000000001,7.94,8.18,8.36,8.5,8.620000000000001,8.72,8.81,8.98,196.08,196.23000000000002,196.39000000000001,196.55,196.70000000000002,196.85,197,197.13,197.38,17.12,16.88,16.72,16.55,16.36,16.18,15.99,15.8,15.42,N/A,N/A +2012,1,4,9,30,102670,101460,100280,77.18,0,7.88,8.78,9.06,9.25,9.4,9.52,9.61,9.700000000000001,9.83,196.23000000000002,196.59,196.83,197.07,197.31,197.54,197.78,198.01,198.49,17.43,17.240000000000002,17.09,16.92,16.740000000000002,16.57,16.38,16.2,15.82,N/A,N/A +2012,1,4,10,30,102630,101420,100250,80.32000000000001,0,6.08,7.01,7.34,7.62,7.8500000000000005,8.040000000000001,8.2,8.33,8.51,194.56,195.98000000000002,196.71,197.41,198,198.51,198.94,199.3,199.87,17.62,17.46,17.330000000000002,17.18,17.02,16.86,16.68,16.51,16.15,N/A,N/A +2012,1,4,11,30,102630,101420,100250,80.18,0,6.67,7.67,7.99,8.22,8.39,8.52,8.59,8.66,8.72,201.12,201.33,201.47,201.57,201.64000000000001,201.71,201.79,201.86,202.11,17.81,17.7,17.580000000000002,17.44,17.27,17.12,16.93,16.76,16.39,N/A,N/A +2012,1,4,12,30,102620,101420,100240,82.39,0,5.45,6.37,6.7,6.98,7.23,7.44,7.640000000000001,7.82,8.09,201.4,201.99,202.59,203.43,204.56,205.77,207.35,208.84,211.6,17.64,17.5,17.39,17.25,17.11,16.98,16.85,16.73,16.54,N/A,N/A +2012,1,4,13,30,102630,101420,100250,87.25,0,3.85,4.83,5.24,5.61,5.9,6.140000000000001,6.34,6.54,6.96,185.82,186.1,186.55,187.33,188.54,189.94,191.94,193.98000000000002,198.77,17.59,17.54,17.47,17.37,17.25,17.13,16.990000000000002,16.86,16.580000000000002,N/A,N/A +2012,1,4,14,30,102660,101450,100280,86.5,0,3.0100000000000002,3.92,4.2700000000000005,4.57,4.84,5.08,5.48,5.86,6.25,194.19,193.71,193.27,192.43,191.95000000000002,191.67000000000002,193.89000000000001,196.44,201.96,17.76,17.740000000000002,17.66,17.53,17.39,17.25,17.14,17.05,16.87,N/A,N/A +2012,1,4,15,30,102670,101470,100300,89.13,0,3.98,4.96,5.29,5.47,5.59,5.68,5.8100000000000005,5.93,6.16,177.04,180.06,182.84,186.78,191.43,196.32,199.15,201.32,203.46,17.740000000000002,17.76,17.740000000000002,17.67,17.580000000000002,17.48,17.37,17.26,17.03,N/A,N/A +2012,1,4,16,30,102640,101430,100260,90.55,0,2.6,3.56,4.01,4.48,4.84,5.11,5.29,5.41,5.37,173.52,176.18,178.70000000000002,182.21,185.8,189.31,192.4,195.22,201.26,17.72,17.77,17.77,17.73,17.67,17.59,17.52,17.45,17.31,N/A,N/A +2012,1,4,17,30,102600,101400,100230,89.10000000000001,0,3.71,4.46,4.76,5.04,5.37,5.7,5.92,6.11,6.36,178.14000000000001,179.75,181.57,184.45000000000002,187.93,191.6,193.94,195.86,198.68,17.85,17.75,17.7,17.650000000000002,17.6,17.54,17.48,17.42,17.23,N/A,N/A +2012,1,4,18,30,102600,101390,100230,90.87,0,2.87,3.4,3.69,4.09,4.45,4.79,4.88,4.91,4.93,165.25,168.43,172.01,177.83,184.43,191.39000000000001,195.82,199.4,205.89000000000001,17.900000000000002,17.75,17.69,17.66,17.69,17.740000000000002,17.75,17.740000000000002,17.59,N/A,N/A +2012,1,4,19,30,102590,101390,100220,89.68,0,3.02,3.62,3.9,4.23,4.42,4.53,4.39,4.24,3.98,162.8,164.53,165.74,167.35,170.18,173.48,179.55,185.04,192.77,18.04,17.84,17.72,17.59,17.5,17.43,17.400000000000002,17.36,17.240000000000002,N/A,N/A +2012,1,4,20,30,102560,101360,100190,90.32000000000001,0,3.69,4.32,4.54,4.66,4.71,4.71,4.7,4.7,4.58,177.43,181.4,185,189.86,193.27,195.75,198.01,199.99,203.25,18.19,18.19,18.22,18.28,18.28,18.25,18.16,18.080000000000002,17.830000000000002,N/A,N/A +2012,1,4,21,30,102530,101330,100170,91.69,0,3.21,3.9,4.09,4.1,4.05,3.95,3.87,3.8000000000000003,3.71,159.89000000000001,166.15,171.3,177.94,182.57,185.9,189.33,192.4,197.97,18.07,18.14,18.2,18.28,18.29,18.28,18.22,18.18,18,N/A,N/A +2012,1,4,22,30,102510,101310,100140,92.37,0,3.3200000000000003,4.21,4.51,4.69,4.79,4.83,4.92,5.01,5.26,165.42000000000002,171.97,177.98,185.74,190.84,194.28,197.91,201.25,206.07,18.04,18.18,18.25,18.29,18.32,18.330000000000002,18.36,18.38,18.3,N/A,N/A +2012,1,4,23,30,102500,101300,100140,93.82000000000001,0,4.4,5.5,5.92,6.2700000000000005,6.48,6.6000000000000005,6.71,6.8,6.92,172.87,176.14000000000001,179.8,185.72,189.24,191.29,192.41,193.28,195.38,17.97,18.03,18.13,18.32,18.41,18.44,18.39,18.330000000000002,18.13,N/A,N/A +2012,1,5,0,30,102530,101330,100170,95.24,0,3.86,5.11,5.66,6.2,6.51,6.67,6.78,6.87,6.91,173.47,180.98,186.24,191.56,194.49,195.97,197.26,198.41,200.89000000000001,17.84,18.16,18.35,18.57,18.69,18.76,18.75,18.73,18.57,N/A,N/A +2012,1,5,1,30,102540,101330,100170,95.24,0,3.81,5.32,5.97,6.44,6.7,6.8100000000000005,6.93,7.03,7.22,171.95000000000002,179.15,183.64000000000001,187.08,189.37,190.9,192.63,194.25,197.28,17.740000000000002,18.16,18.39,18.580000000000002,18.68,18.72,18.72,18.7,18.52,N/A,N/A +2012,1,5,2,30,102560,101360,100200,94.42,0,3.77,5.36,6.09,6.76,7.15,7.34,7.57,7.78,7.95,184.05,189.09,193.49,199.23000000000002,201.71,202.15,202.56,202.96,205.1,17.94,18.400000000000002,18.580000000000002,18.650000000000002,18.67,18.67,18.68,18.69,18.59,N/A,N/A +2012,1,5,3,30,102560,101360,100200,94.81,0,3.63,5.26,5.98,6.55,6.8,6.86,6.8500000000000005,6.84,6.74,192.54,195.6,197.8,200.05,202.35,204.56,206.9,209.03,213.31,17.85,18.18,18.35,18.53,18.66,18.76,18.830000000000002,18.87,18.78,N/A,N/A +2012,1,5,4,30,102550,101340,100180,94.5,0,4.51,5.99,6.5600000000000005,6.890000000000001,6.98,6.92,6.92,6.93,6.8500000000000005,198.23000000000002,199.11,200.84,204.29,207.51,210.42000000000002,213.07,215.43,220,17.900000000000002,18.16,18.32,18.53,18.6,18.59,18.66,18.73,18.71,N/A,N/A +2012,1,5,5,30,102550,101350,100190,94.7,0,4.01,5.54,6.16,6.57,6.76,6.82,6.83,6.82,6.67,210.15,211.70000000000002,214.1,218.62,221.78,224.05,226.47,228.69,232.92000000000002,17.86,18.21,18.41,18.63,18.77,18.86,18.96,19.04,19.02,N/A,N/A +2012,1,5,6,30,102580,101370,100210,96.59,0,2.17,3.44,4.0600000000000005,4.82,5.39,5.83,6.16,6.45,6.76,252.89000000000001,243.67000000000002,238.91,237.91,238.20000000000002,239.21,240.6,241.96,244.88,17.63,17.85,17.97,18.12,18.25,18.36,18.48,18.580000000000002,18.72,N/A,N/A +2012,1,5,7,30,102620,101410,100240,99.23,0,2.77,2.7800000000000002,2.8000000000000003,2.9,3.08,3.29,3.5500000000000003,3.8000000000000003,4.36,335.01,314.33,301.81,289.49,280.5,273.21,268.05,263.62,258.07,15.99,16.5,16.8,17,17.11,17.17,17.18,17.18,17.150000000000002,N/A,N/A +2012,1,5,8,30,102610,101400,100230,99.19,0,2.23,2.39,2.49,2.65,2.7800000000000002,2.91,3.09,3.31,4.18,320.53000000000003,307.54,298.78000000000003,289.18,283.03000000000003,278.8,272.17,265.44,251.83,16.71,16.59,16.55,16.53,16.47,16.38,16.36,16.43,17.31,N/A,N/A +2012,1,5,9,30,102610,101400,100230,99.31,0,2.37,2.59,2.66,2.72,2.7600000000000002,2.8000000000000003,2.82,2.84,2.97,292.03000000000003,288.99,287.25,285.77,284.31,282.93,281.96,281.2,278.46,16.96,16.77,16.68,16.580000000000002,16.47,16.37,16.26,16.15,16.01,N/A,N/A +2012,1,5,10,30,102620,101410,100240,99.3,0,3.54,3.71,3.73,3.72,3.68,3.63,3.5500000000000003,3.48,3.38,309.38,306.93,305.37,303.65000000000003,301.96,300.40000000000003,298.01,295.82,292.14,16.73,16.52,16.43,16.330000000000002,16.23,16.13,16.04,15.950000000000001,15.75,N/A,N/A +2012,1,5,11,30,102610,101400,100220,99.16,0,2.3000000000000003,2.57,2.69,2.8000000000000003,2.91,3,3.09,3.17,3.29,311.17,303.82,299.34000000000003,295.39,291.08,286.8,283.68,281.05,277.61,16.59,16.38,16.3,16.22,16.13,16.04,15.950000000000001,15.860000000000001,15.68,N/A,N/A +2012,1,5,12,30,102600,101390,100210,99.19,0,2.06,1.85,1.7,1.55,1.58,1.69,1.75,1.8,2.0100000000000002,341.03000000000003,332.25,320.17,301.43,286.26,272.38,267.07,263.64,266.9,15.91,15.72,15.67,15.65,15.64,15.620000000000001,15.540000000000001,15.450000000000001,15.33,N/A,N/A +2012,1,5,13,30,102600,101390,100210,99.26,0,1.25,1.11,0.97,0.81,0.8,0.85,1.1400000000000001,1.52,2.48,353.42,348.44,340.72,328.94,318.40000000000003,308.07,307.18,306.79,305.02,15.5,15.24,15.11,14.97,14.81,14.64,14.57,14.73,16.26,N/A,N/A +2012,1,5,14,30,102610,101390,100210,99.2,0,1.76,1.74,1.69,1.6300000000000001,1.57,1.52,1.9000000000000001,2.2600000000000002,2.34,18.53,21.900000000000002,24.62,27.96,32.93,37.96,25.09,9.84,344.16,14.84,14.530000000000001,14.36,14.18,13.9,13.61,15.030000000000001,16.240000000000002,17.03,N/A,N/A +2012,1,5,15,30,102600,101380,100200,99.17,0,0.88,0.84,0.81,0.77,0.74,0.72,1.24,1.84,2.04,52.18,53.79,54.39,54.800000000000004,50.57,45.09,17.82,345.11,326.39,14.72,14.41,14.25,14.07,13.8,13.52,15.610000000000001,17.150000000000002,17.42,N/A,N/A +2012,1,5,16,30,102570,101350,100180,99.2,0,1.8800000000000001,1.92,1.9100000000000001,1.8900000000000001,1.74,1.58,1.21,0.98,0.99,96.27,99.92,103.01,106.9,108.72,109.62,66.63,35.31,345.53000000000003,14.85,14.540000000000001,14.39,14.24,14.09,13.950000000000001,15.67,17.02,17.56,N/A,N/A +2012,1,5,17,30,102520,101300,100130,99.18,0,1.84,1.95,2,2.04,2.11,2.19,1.6400000000000001,1.21,0.61,99.62,102.71000000000001,105.3,108.51,114.31,120.91,112.28,101.74000000000001,48.71,15.46,15.19,15.05,14.89,14.64,14.38,15.41,16.34,17.17,N/A,N/A +2012,1,5,18,30,102480,101260,100090,98.41,0,1.12,1.17,1.19,1.23,1.52,2,1.86,1.6400000000000001,0.8,142.31,142.3,142.23,142.06,150.13,163.79,162.63,159.58,149.58,15.96,15.65,15.48,15.280000000000001,15.42,15.67,16.06,16.42,17.09,N/A,N/A +2012,1,5,19,30,102450,101240,100070,98.09,0,1.3900000000000001,1.52,1.58,1.6400000000000001,1.8,1.99,1.9000000000000001,1.8,1.42,154.83,154.24,153.52,152.45000000000002,152.24,152.38,158.07,162.92000000000002,169.11,16.42,16.11,15.97,15.84,15.57,15.280000000000001,15.860000000000001,16.43,17.34,N/A,N/A +2012,1,5,20,30,102400,101190,100030,97.85000000000001,0,0.6,0.78,1.02,1.54,2.05,2.57,3.02,3.38,3.2800000000000002,201.27,204.85,206.39000000000001,207.64000000000001,206.70000000000002,204.54,202.08,199.72,196.82,16.5,16.18,16.05,15.950000000000001,16.11,16.35,16.78,17.13,17.28,N/A,N/A +2012,1,5,21,30,102370,101160,99990,98.43,0,0.68,0.73,0.9500000000000001,1.61,2.16,2.61,3.02,3.41,3.85,176.29,174.70000000000002,175.34,178.4,181.16,183.55,186.26,188.81,192.27,16.7,16.42,16.31,16.23,16.37,16.580000000000002,16.88,17.12,17.32,N/A,N/A +2012,1,5,22,30,102320,101120,99950,97.3,0,1.97,2.32,2.62,3.06,3.43,3.73,3.89,4,4.08,133.98,141.08,146.78,154.34,158.54,160.92000000000002,163.78,166.71,175.18,17.1,16.88,16.94,17.2,17.34,17.43,17.47,17.51,17.57,N/A,N/A +2012,1,5,23,30,102290,101080,99920,97.41,0,3.94,4.59,4.75,4.86,4.89,4.89,4.91,4.93,5.03,151.42000000000002,151.56,151.78,152.20000000000002,154.29,156.93,160.62,164.05,170.61,17.73,17.53,17.46,17.45,17.59,17.77,17.85,17.91,17.87,N/A,N/A +2012,1,6,0,30,102270,101070,99910,97.04,0,4.86,5.69,5.93,6.09,6.04,5.91,5.87,5.84,5.96,158.93,159.41,160.34,162,164.38,166.81,169.52,172.01,177.23,17.66,17.52,17.5,17.55,17.69,17.85,17.95,18.03,18.12,N/A,N/A +2012,1,6,1,30,102250,101040,99890,99.26,0,5.19,5.5600000000000005,5.69,5.86,6.24,6.71,6.84,6.91,6.88,169.13,170.07,170.89000000000001,172.02,175.3,179.43,181.22,182.57,184.88,16.75,16.52,16.41,16.32,17.44,18.97,19.06,18.98,18.68,N/A,N/A +2012,1,6,2,30,102240,101030,99870,99.23,0,5.01,5.33,5.53,5.8500000000000005,6.25,6.68,6.98,7.22,7.38,161.57,162.98,165.24,169.02,174.14000000000001,179.65,183.1,185.92000000000002,189.15,16.65,16.39,16.27,16.16,17.11,18.400000000000002,18.79,19.01,18.8,N/A,N/A +2012,1,6,3,30,102210,101010,99850,99.24000000000001,0,4.79,5.29,5.58,6.0200000000000005,6.49,6.96,7.28,7.53,7.79,165.74,168.26,171.23,176.13,180.65,184.86,187.93,190.53,194.03,16.84,16.66,16.73,16.990000000000002,17.59,18.26,18.54,18.72,18.64,N/A,N/A +2012,1,6,4,30,102170,100970,99810,98.47,0,4.29,5.32,6.11,7.3100000000000005,7.8500000000000005,8.02,8.22,8.42,8.700000000000001,175.8,179.36,183.41,189.93,192.85,193.82,194.82,195.73000000000002,197.31,17.28,17.32,17.72,18.48,18.740000000000002,18.77,18.77,18.76,18.580000000000002,N/A,N/A +2012,1,6,5,30,102130,100940,99780,94.8,0,4.55,6.01,6.7,7.44,8.05,8.57,8.82,9.02,9.26,180.28,183.55,186.73,191.31,194.6,197.13,197.28,197.05,195.97,18,18.150000000000002,18.26,18.41,18.5,18.56,18.51,18.44,18.25,N/A,N/A +2012,1,6,6,30,102120,100920,99760,94.4,0,3.75,5.23,5.92,6.66,7.42,8.17,8.47,8.66,8.91,182.76,186.28,188.95000000000002,191.99,194.88,197.66,199.21,200.44,202.12,18.05,18.26,18.31,18.32,18.36,18.42,18.41,18.39,18.21,N/A,N/A +2012,1,6,7,30,102100,100910,99750,94.39,0,4.6000000000000005,6.11,6.76,7.3500000000000005,7.930000000000001,8.49,8.97,9.36,9.41,181.91,183.96,185.6,187.65,189.36,190.85,192.78,194.57,196.96,18.02,18.18,18.22,18.240000000000002,18.23,18.21,18.17,18.12,17.95,N/A,N/A +2012,1,6,8,30,102060,100860,99700,94.62,0,4.58,6.09,6.8,7.5600000000000005,8.21,8.790000000000001,9.3,9.73,10.08,178.93,181.92000000000002,184,186.31,188.89000000000001,191.52,195.03,198.13,199.63,17.97,18.1,18.150000000000002,18.19,18.26,18.330000000000002,18.400000000000002,18.44,18.28,N/A,N/A +2012,1,6,9,30,102020,100830,99670,93.27,0,5.45,7.1000000000000005,7.82,8.540000000000001,9.18,9.76,10.17,10.5,10.84,187.74,188.67000000000002,189.6,190.89000000000001,192.71,194.71,196.08,197.12,196.92000000000002,18.25,18.42,18.490000000000002,18.55,18.6,18.64,18.580000000000002,18.51,18.27,N/A,N/A +2012,1,6,10,30,102000,100810,99650,93.43,0,5.48,7.2,8,8.8,9.49,10.1,10.540000000000001,10.92,11.46,182.42000000000002,184.4,185.89000000000001,187.59,189.06,190.38,191.51,192.53,194.31,18.22,18.43,18.51,18.580000000000002,18.61,18.63,18.59,18.54,18.32,N/A,N/A +2012,1,6,11,30,101990,100790,99640,91.66,0,6.55,8.27,9,9.69,10.26,10.75,11.1,11.4,11.8,188.52,189.70000000000002,190.54,191.51,192.41,193.24,193.95000000000002,194.57,195.4,18.43,18.59,18.63,18.650000000000002,18.650000000000002,18.63,18.57,18.490000000000002,18.240000000000002,N/A,N/A +2012,1,6,12,30,101970,100770,99620,92.57000000000001,0,6.1000000000000005,7.71,8.41,9.11,9.74,10.31,10.77,11.19,11.84,192.59,193.64000000000001,194.46,195.41,196.01,196.41,196.52,196.59,197.01,18.41,18.57,18.63,18.68,18.71,18.73,18.67,18.6,18.34,N/A,N/A +2012,1,6,13,30,101950,100760,99600,91.37,0,6.63,8.24,8.870000000000001,9.44,9.91,10.32,10.620000000000001,10.870000000000001,11.19,197.18,197.98000000000002,198.62,199.35,199.97,200.51,200.72,200.83,200.12,18.5,18.61,18.6,18.54,18.47,18.37,18.240000000000002,18.12,17.85,N/A,N/A +2012,1,6,14,30,101980,100790,99630,90.29,0,6.93,8.57,9.24,9.85,10.290000000000001,10.63,10.75,10.83,11,196.31,197.45000000000002,198.29,199.24,199.84,200.22,199.98000000000002,199.65,198.8,18.48,18.61,18.64,18.66,18.69,18.72,18.72,18.7,18.48,N/A,N/A +2012,1,6,15,30,102000,100810,99650,91.88,0,6.74,8.3,8.98,9.65,10.28,10.88,11.4,11.85,12.32,198.4,199.46,200.33,201.48000000000002,202.86,204.3,205.6,206.70000000000002,207.22,18.330000000000002,18.39,18.37,18.34,18.29,18.25,18.19,18.13,17.97,N/A,N/A +2012,1,6,16,30,102000,100800,99640,80.48,0,11.53,13.68,14.58,15.39,16.09,16.7,17.22,17.68,18.27,225.3,224.45000000000002,223.93,223.4,222.85,222.31,221.73000000000002,221.19,220.33,18.18,18.19,18.16,18.13,18.1,18.09,18.080000000000002,18.07,17.98,N/A,N/A +2012,1,6,17,30,101920,100730,99570,86.8,0,4.74,5.93,6.47,7.01,7.55,8.07,8.51,8.88,9.36,220.72,218.14000000000001,216.64000000000001,215.26,214.42000000000002,213.85,213.34,212.87,211.97,17.96,17.98,17.98,18,18.06,18.14,18.2,18.240000000000002,18.16,N/A,N/A +2012,1,6,18,30,101890,100700,99540,89.29,0,4.21,5.49,6.11,6.74,7.19,7.53,7.7700000000000005,7.99,8.48,199.47,200.36,201.29,202.44,203.57,204.61,205.14000000000001,205.54,205.75,18.07,18.21,18.330000000000002,18.48,18.55,18.580000000000002,18.54,18.5,18.35,N/A,N/A +2012,1,6,19,30,101860,100660,99510,91.84,0,3.23,4.23,4.72,5.28,5.74,6.13,6.43,6.68,7.140000000000001,177.55,178.13,179.58,182.44,185.97,189.68,191.29,192.43,193.35,18.1,18.07,18.07,18.12,18.2,18.29,18.36,18.41,18.39,N/A,N/A +2012,1,6,20,30,101820,100630,99470,93.72,0,4.7700000000000005,5.87,6.41,7.0200000000000005,7.48,7.8500000000000005,8.040000000000001,8.19,8.540000000000001,160.58,163.01,165.62,169.75,174.53,179.39000000000001,181.69,183.41,185.86,18.21,18.21,18.27,18.41,18.53,18.650000000000002,18.650000000000002,18.64,18.46,N/A,N/A +2012,1,6,21,30,101770,100580,99430,94.61,0,4.7,6.04,6.640000000000001,7.2700000000000005,7.88,8.48,8.89,9.21,9.38,162.72,166.32,169.47,173.79,177.58,181.03,183.81,186.17000000000002,188.54,18.330000000000002,18.490000000000002,18.56,18.650000000000002,18.69,18.72,18.68,18.64,18.42,N/A,N/A +2012,1,6,22,30,101720,100530,99380,93.01,0,4.87,6.37,7.01,7.640000000000001,8.18,8.65,8.76,8.8,8.92,157.87,160.95000000000002,163.82,167.89000000000001,172.97,178.49,181.12,183.13,187.28,18.32,18.56,18.66,18.78,18.89,18.990000000000002,18.95,18.89,18.740000000000002,N/A,N/A +2012,1,6,23,30,101710,100510,99360,93.2,0,6.08,7.68,8.44,9.25,9.950000000000001,10.57,10.97,11.26,11.18,153.42000000000002,155.76,157.8,160.66,163.86,167.1,169.62,171.71,173.47,18.05,18.19,18.28,18.41,18.52,18.62,18.580000000000002,18.51,18.240000000000002,N/A,N/A +2012,1,7,0,30,101700,100510,99360,92.82000000000001,0,6.93,8.4,8.99,9.56,10.13,10.69,11.17,11.58,11.94,183.66,184.87,185.86,187.03,187.97,188.76,189.39000000000001,189.95000000000002,191.07,18.330000000000002,18.42,18.43,18.42,18.39,18.37,18.31,18.25,18.01,N/A,N/A +2012,1,7,1,30,101670,100480,99330,91.82000000000001,0,5.25,6.8100000000000005,7.5200000000000005,8.22,8.82,9.34,9.78,10.15,10.55,182.08,183.33,184.21,185.15,186.19,187.22,188.67000000000002,190.08,192.73000000000002,18.11,18.23,18.25,18.25,18.2,18.14,18.02,17.89,17.580000000000002,N/A,N/A +2012,1,7,2,30,101680,100480,99330,93.43,0,6.09,7.62,8.26,8.88,9.42,9.9,10.31,10.66,11.13,180.29,180.73,181.08,181.42000000000002,181.78,182.13,182.55,182.96,183.82,18.11,18.16,18.13,18.080000000000002,18.01,17.93,17.82,17.72,17.47,N/A,N/A +2012,1,7,3,30,101660,100470,99310,92.10000000000001,0,5.5200000000000005,6.88,7.46,8.03,8.53,8.98,9.27,9.5,9.700000000000001,179.9,180.93,181.79,182.86,184.02,185.17000000000002,186.5,187.81,191.52,17.96,17.96,17.93,17.87,17.79,17.71,17.61,17.51,17.28,N/A,N/A +2012,1,7,4,30,101660,100460,99310,91.62,0,5.92,7.36,7.97,8.55,9.06,9.53,9.96,10.35,11.03,187.08,187.34,187.5,187.65,187.75,187.83,187.91,188,188.81,18.11,18.16,18.14,18.09,18.01,17.93,17.830000000000002,17.73,17.5,N/A,N/A +2012,1,7,5,30,101620,100430,99280,92.02,0,6.18,7.76,8.45,9.11,9.69,10.22,10.69,11.11,11.66,188.58,189.62,190.31,190.98,191.44,191.78,191.79,191.73000000000002,191.24,18.23,18.330000000000002,18.34,18.32,18.29,18.240000000000002,18.17,18.09,17.830000000000002,N/A,N/A +2012,1,7,6,30,101630,100440,99290,92.5,0,5.32,6.69,7.25,7.7700000000000005,8.19,8.55,8.89,9.200000000000001,9.82,174.76,175.82,176.62,177.54,178.61,179.72,181.25,182.75,185.52,18.07,18.150000000000002,18.150000000000002,18.13,18.09,18.04,17.97,17.91,17.78,N/A,N/A +2012,1,7,7,30,101650,100460,99300,94.28,0,4.8500000000000005,6.2700000000000005,6.93,7.6000000000000005,8.2,8.76,9.290000000000001,9.77,10.34,176.20000000000002,178.1,179.61,181.43,183.18,184.86,186.6,188.28,192.01,18.02,18.14,18.17,18.19,18.18,18.16,18.11,18.07,17.94,N/A,N/A +2012,1,7,8,30,101630,100440,99290,94.68,0,4.16,5.5200000000000005,6.15,6.8100000000000005,7.58,8.42,8.790000000000001,9.05,9.52,173.78,177.95000000000002,181.36,185.65,190.05,194.55,196.42000000000002,197.68,199.69,17.94,18.1,18.17,18.240000000000002,18.31,18.39,18.35,18.3,18.17,N/A,N/A +2012,1,7,9,30,101630,100440,99290,94.64,0,4.23,5.67,6.3100000000000005,6.9,7.53,8.19,8.45,8.64,9.07,168.52,172.24,175.63,180.20000000000002,185.21,190.44,192.48000000000002,193.84,196.4,17.95,18.16,18.26,18.34,18.39,18.43,18.400000000000002,18.36,18.2,N/A,N/A +2012,1,7,10,30,101640,100450,99300,94.58,0,4.2,5.72,6.46,7.2700000000000005,7.97,8.6,8.89,9.09,9.44,173.47,176.93,180.24,185.42000000000002,189.6,193.12,194.63,195.58,197.31,17.97,18.2,18.330000000000002,18.5,18.61,18.7,18.71,18.7,18.57,N/A,N/A +2012,1,7,11,30,101660,100470,99320,95.33,0,4.69,6.08,6.7700000000000005,7.5200000000000005,7.92,8.1,8.2,8.290000000000001,8.55,157.68,159.32,161.1,164.01,171.14000000000001,180.46,184.02,186.19,189.79,17.79,17.87,17.94,18.07,18.23,18.400000000000002,18.43,18.43,18.34,N/A,N/A +2012,1,7,12,30,101670,100480,99330,96.76,0,4.5200000000000005,5.98,6.84,7.84,8.48,8.86,9.06,9.200000000000001,9.34,170.41,173.46,176.76,182.17000000000002,185.63,187.74,189.20000000000002,190.39000000000001,191.77,17.61,18.06,18.38,18.75,18.96,19.080000000000002,19.080000000000002,19.06,18.76,N/A,N/A +2012,1,7,13,30,101690,100500,99350,96.02,0,4.17,5.46,6.12,6.88,7.54,8.14,8.43,8.620000000000001,8.84,158.99,162.02,164.83,168.88,174.29,180.48,183.62,185.86,189.37,17.78,17.95,18.07,18.2,18.41,18.650000000000002,18.71,18.73,18.63,N/A,N/A +2012,1,7,14,30,101720,100530,99380,97.83,0.4,4.54,6.12,7.17,8.55,9.15,9.24,9.200000000000001,9.14,8.88,160.53,166.20000000000002,171.95000000000002,181.06,185.49,186.86,188.71,190.44,193.42000000000002,17.400000000000002,16.92,17.27,18.580000000000002,19.03,19.03,19.01,18.990000000000002,18.79,N/A,N/A +2012,1,7,15,30,101750,100560,99410,95.9,0,4.67,6.23,7.09,8.08,8.52,8.6,8.61,8.61,8.59,158.42000000000002,160.97,163.9,169.22,173.16,176.01,178.13,179.9,183.21,17.82,17.6,17.77,18.47,18.86,19.05,19.06,19.04,18.84,N/A,N/A +2012,1,7,16,30,101730,100540,99390,97.14,0,4.09,5.58,6.48,7.55,8.040000000000001,8.13,8.13,8.120000000000001,8.07,159.98,162.79,167.78,178.09,183.76,186.12,188.17000000000002,189.94,192.94,17.6,18,18.43,19.16,19.5,19.61,19.54,19.44,19.13,N/A,N/A +2012,1,7,17,30,101720,100530,99380,97.06,0,4.59,6.07,6.78,7.390000000000001,7.61,7.59,7.5600000000000005,7.54,7.47,159.36,162.49,167.57,177.36,182.71,185.13,187.48,189.57,193.99,17.7,18.14,18.59,19.32,19.61,19.650000000000002,19.59,19.51,19.28,N/A,N/A +2012,1,7,18,30,101730,100540,99400,95.92,0,4.66,6.34,7.05,7.29,7.33,7.26,7.18,7.12,7.0200000000000005,157.22,160.36,165.77,176.59,182.41,185.02,187.8,190.34,195.70000000000002,18,18.46,18.79,19.19,19.35,19.36,19.32,19.27,19.1,N/A,N/A +2012,1,7,19,30,101720,100530,99380,95.02,0,4.93,6.32,6.78,6.94,6.99,6.97,6.99,7.01,7.11,155.3,161,170.53,189.21,197.8,200.47,203.36,206.05,211.98000000000002,18.240000000000002,18.31,18.54,19.11,19.29,19.26,19.19,19.12,19.01,N/A,N/A +2012,1,7,20,30,101690,100510,99360,93.89,0,4.57,6.11,6.62,6.7700000000000005,6.84,6.86,6.890000000000001,6.92,7.12,181.6,185.77,191.9,203.11,209.08,211.88,215.09,218.07,223.18,18.51,18.86,19.07,19.330000000000002,19.43,19.44,19.46,19.490000000000002,19.43,N/A,N/A +2012,1,7,21,30,101690,100500,99360,93.19,0,4.92,6.44,6.92,6.98,7.04,7.1000000000000005,7.19,7.28,7.51,174,178.06,184.95000000000002,199.17000000000002,206.35,209.03,211.64000000000001,214.03,217.66,18.59,18.85,19.05,19.42,19.580000000000002,19.62,19.66,19.69,19.59,N/A,N/A +2012,1,7,22,30,101670,100480,99330,94.46000000000001,0,5.08,6.42,6.84,6.92,6.96,6.96,6.99,7.0200000000000005,7.12,168.63,175.13,181.44,190.83,195.67000000000002,197.5,199.5,201.35,204.4,18.14,18.2,18.5,19.330000000000002,19.68,19.69,19.66,19.62,19.43,N/A,N/A +2012,1,7,23,30,101680,100490,99340,94.56,0,5.07,6.82,7.53,7.82,7.930000000000001,7.91,7.91,7.92,7.890000000000001,167.09,172.44,176.89000000000001,182.15,185.07,186.37,187.93,189.4,192.29,18.080000000000002,18.22,18.61,19.53,19.84,19.73,19.66,19.59,19.36,N/A,N/A +2012,1,8,0,30,101690,100500,99350,95.55,0,5.51,7.15,7.82,8.21,8.34,8.32,8.33,8.35,8.34,164.44,168.73,172.6,177.89000000000001,180.71,182,183.63,185.17000000000002,188.25,17.85,18.09,18.56,19.55,19.86,19.77,19.7,19.63,19.41,N/A,N/A +2012,1,8,1,30,101690,100500,99360,96.16,0.4,5.05,6.7,7.48,8.13,8.38,8.4,8.39,8.370000000000001,8.32,164.82,168.38,172.14000000000001,178.26,181.71,183.43,184.78,185.94,188.14000000000001,17.740000000000002,17.37,17.76,19.16,19.78,19.96,19.900000000000002,19.8,19.51,N/A,N/A +2012,1,8,2,30,101700,100510,99370,96.83,0,4.7,6.28,7.04,7.61,7.9,8.02,8.09,8.15,8.23,166.88,172.22,177.05,183.6,187.29,189.17000000000002,190.6,191.81,194.01,17.6,17.2,17.66,19.3,19.98,20.1,20.02,19.91,19.61,N/A,N/A +2012,1,8,3,30,101720,100530,99380,97.35000000000001,0,4.8100000000000005,6.05,6.75,7.63,8.1,8.290000000000001,8.370000000000001,8.43,8.45,167.93,169.52,171.22,174.13,176.48,178.37,180.12,181.69,184.71,17.490000000000002,17.71,18.14,19.07,19.55,19.77,19.77,19.72,19.47,N/A,N/A +2012,1,8,4,30,101700,100510,99360,95.2,0,4.22,6.11,7.04,7.8100000000000005,8.19,8.31,8.33,8.34,8.22,150.6,158.41,164.68,171.99,175.95000000000002,177.6,178.83,179.84,181.47,17.98,18.5,18.96,19.67,19.97,20.04,19.98,19.89,19.62,N/A,N/A +2012,1,8,5,30,101710,100520,99380,95.51,0,4.44,6.17,7.29,8.85,9.65,9.88,10.05,10.200000000000001,10.27,162.3,166.24,171.58,181.85,187.47,189.49,191.3,192.9,195.46,17.900000000000002,17.900000000000002,18.25,19.18,19.64,19.830000000000002,19.87,19.87,19.66,N/A,N/A +2012,1,8,6,30,101720,100530,99390,95.62,0,4.64,6.38,7.46,8.88,9.77,10.28,10.44,10.5,10.46,160.47,164.9,168.74,174.54,179.68,184.13,186.16,187.49,189.85,18.01,17.88,18.1,18.86,19.36,19.71,19.73,19.69,19.5,N/A,N/A +2012,1,8,7,30,101750,100560,99410,93.78,0,5.08,6.8,7.84,9.36,10.55,11.44,11.71,11.78,11.69,170.11,172.20000000000002,174.08,177.1,180.34,183.77,185.53,186.66,188.23,18.41,18.43,18.55,19.01,19.5,20.03,20.13,20.11,19.81,N/A,N/A +2012,1,8,8,30,101720,100540,99390,92.67,0,5.12,7.13,8.16,9.3,10.27,11.13,11.41,11.55,11.61,161.61,164.70000000000002,167.33,171.13,175.11,179.18,181.4,182.99,185.77,18.68,18.85,19.05,19.56,19.89,20.12,20.13,20.1,19.92,N/A,N/A +2012,1,8,9,30,101690,100500,99360,92.42,0,5.93,8.08,9.13,10.13,11.02,11.84,12.67,13.46,13.81,158.49,161.83,164.4,167.29,170.76,174.61,177.89000000000001,180.87,183.38,18.69,18.85,18.97,19.23,19.45,19.63,19.81,19.97,19.92,N/A,N/A +2012,1,8,10,30,101700,100510,99360,92.16,0,7.33,9.13,9.99,10.93,11.89,12.89,13.55,14.08,14.13,168.52,170.45000000000002,172.22,174.52,176.59,178.55,180.43,182.16,185.70000000000002,18.72,18.88,19.01,19.240000000000002,19.53,19.84,19.96,20.03,19.87,N/A,N/A +2012,1,8,11,30,101720,100530,99390,92.19,0,5.95,7.71,8.51,9.34,10.14,10.89,11.63,12.31,13.31,176.66,177.24,177.58,177.94,178.36,178.81,179.53,180.31,183.62,18.740000000000002,18.94,19.01,19.09,19.17,19.240000000000002,19.3,19.35,19.39,N/A,N/A +2012,1,8,12,30,101740,100550,99400,91.92,7,5.86,7.68,8.53,9.39,10.19,10.97,11.67,12.33,13.450000000000001,191.11,189.29,188.36,187.75,187.47,187.41,187.72,188.11,189.35,18.82,18.95,18.97,19.01,19.080000000000002,19.17,19.22,19.27,19.23,N/A,N/A +2012,1,8,13,30,101750,100560,99410,91.99,0.4,5.9,7.7,8.53,9.44,10.32,11.17,11.98,12.72,13.97,187.6,186.41,185.77,185.39000000000001,185.27,185.32,185.8,186.35,187.93,18.81,18.94,18.97,19,19.080000000000002,19.2,19.3,19.39,19.47,N/A,N/A +2012,1,8,14,30,101780,100600,99450,92.23,0,6.54,8.4,9.25,10.15,11.01,11.85,12.67,13.450000000000001,13.88,185.22,185.36,185.5,185.78,186.31,187,188.78,190.75,194.44,18.73,19.09,19.25,19.38,19.51,19.63,19.8,19.96,20.04,N/A,N/A +2012,1,8,15,30,101780,100600,99450,90.58,0,7.2700000000000005,9.36,10.31,11.22,11.77,12.1,12.11,12.05,12.120000000000001,182.05,183.17000000000002,184.28,185.96,187.61,189.20000000000002,190.5,191.61,192.94,19.11,19.56,19.8,20.09,20.3,20.46,20.51,20.53,20.3,N/A,N/A +2012,1,8,16,30,101790,100610,99460,92.65,0,5.8,7.67,8.66,9.85,10.73,11.370000000000001,11.6,11.71,11.74,174.85,177.58,179.76,182.48,184.52,186.04,187.01,187.76,189.32,18.78,19.14,19.39,19.77,20.05,20.26,20.34,20.39,20.17,N/A,N/A +2012,1,8,17,30,101790,100600,99450,93.21000000000001,0,5.0600000000000005,6.94,7.94,9.09,9.870000000000001,10.39,10.59,10.71,10.93,170.29,172.9,175.25,178.41,180.65,182.22,183.04,183.61,185.06,18.79,19.18,19.44,19.8,20.02,20.150000000000002,20.2,20.23,20.07,N/A,N/A +2012,1,8,18,30,101790,100610,99460,94.13,0,4.68,6.41,7.36,8.56,9.47,10.15,10.39,10.51,10.67,163.44,166.54,169.19,172.87,175.81,178.18,179.23,179.86,181.16,18.740000000000002,19.06,19.29,19.64,19.89,20.09,20.16,20.2,20.03,N/A,N/A +2012,1,8,19,30,101800,100610,99460,95.43,0,4.5,6.19,7.17,8.43,9.27,9.78,10.08,10.3,10.55,156.67000000000002,160.96,164.22,168.21,170.9,172.62,173.75,174.66,176.28,18.46,18.93,19.25,19.650000000000002,19.88,20.01,20.07,20.12,19.97,N/A,N/A +2012,1,8,20,30,101780,100590,99440,94.02,0,4.72,6.49,7.41,8.47,9.3,9.94,10.19,10.32,10.56,150.74,153.49,156.03,159.77,163.02,165.88,167.32,168.29,170.19,18.72,19.06,19.27,19.54,19.740000000000002,19.900000000000002,19.96,20,19.91,N/A,N/A +2012,1,8,21,30,101750,100570,99420,94.88,0,4.53,6.18,7.09,8.13,8.92,9.53,9.8,9.96,10.23,144.05,147.73,150.82,154.70000000000002,158.81,162.98,165.15,166.68,169.5,18.41,18.82,19.080000000000002,19.37,19.61,19.81,19.93,20,20.05,N/A,N/A +2012,1,8,22,30,101730,100540,99400,95.75,0,4.41,6.29,7.390000000000001,8.6,9.21,9.4,9.620000000000001,9.82,9.99,141.05,145.75,150.37,157.29,161.31,163.27,165.27,167.11,169.88,18.05,18.79,19.26,19.75,19.990000000000002,20.09,20.17,20.25,20.16,N/A,N/A +2012,1,8,23,30,101740,100550,99400,95.4,0,5.15,6.83,7.8500000000000005,9.27,10.17,10.68,10.82,10.870000000000001,10.97,142.31,144.9,147.51,151.96,156.31,160.37,162.17000000000002,163.34,165.69,18.06,18.01,18.29,19.1,19.6,19.92,20.01,20.04,19.98,N/A,N/A +2012,1,9,0,30,101740,100550,99410,95.61,0.4,5.34,7.07,8.11,9.46,10.16,10.43,10.6,10.73,10.75,134.14000000000001,136.69,140.36,147.63,151.95000000000002,154.24,156.21,157.94,160.64000000000001,18,17.54,17.78,18.86,19.48,19.85,19.990000000000002,20.07,19.94,N/A,N/A +2012,1,9,1,30,101740,100540,99400,97.46000000000001,0.4,5.0600000000000005,6.63,7.72,9.35,10.19,10.47,10.61,10.69,10.73,125.52,128.07,132.47,142.48,148.01,150.36,152.29,153.96,156.83,17.62,17.14,17.400000000000002,18.61,19.36,19.86,20.02,20.1,20.01,N/A,N/A +2012,1,9,2,30,101740,100540,99400,98.64,0.7000000000000001,5.21,6.65,7.65,9.1,9.83,10.07,10.15,10.19,10.22,124.53,127.28,132.23,143.11,149.23,152.02,154.21,156.08,158.99,17.39,16.81,17.07,18.32,19.2,19.85,20.080000000000002,20.2,20.13,N/A,N/A +2012,1,9,3,30,101720,100530,99380,99.14,0.4,6.74,7.930000000000001,8.68,9.8,10.47,10.82,10.89,10.9,10.86,129.26,130.96,133.22,137.57,142.23,146.94,149.12,150.62,153.13,17.3,17.240000000000002,17.400000000000002,17.8,18.57,19.55,19.78,19.86,19.73,N/A,N/A +2012,1,9,4,30,101700,100510,99370,95.07000000000001,0,6,7.63,8.51,9.540000000000001,10.06,10.22,10.24,10.24,10.32,130.86,133.09,135.99,141.16,146.25,151.04,152.14000000000001,152.42000000000002,154.66,18.1,18.14,18.150000000000002,18.16,18.97,20.26,20.32,20.14,19.92,N/A,N/A +2012,1,9,5,30,101680,100480,99340,98.8,0.4,6.05,7.3,8.17,9.540000000000001,10.23,10.48,10.43,10.33,10.13,125.24000000000001,126.88000000000001,129.41,134.54,139.27,143.42000000000002,145.16,146.25,148.3,17.36,17.21,17.44,18.13,18.990000000000002,19.91,20.080000000000002,20.080000000000002,19.91,N/A,N/A +2012,1,9,6,30,101660,100470,99320,96.72,0,6.69,8.09,8.84,9.81,10.82,11.870000000000001,11.76,11.44,11.16,124.5,125.9,127.3,129.6,133.24,137.70000000000002,143.08,147.8,149.9,18.14,18.080000000000002,18.05,18.01,18.13,18.31,19.2,20.11,20.17,N/A,N/A +2012,1,9,7,30,101650,100460,99310,95.65,0,6.46,7.930000000000001,8.67,9.49,10.44,11.47,12.200000000000001,12.77,12.35,123.81,124.75,125.71000000000001,127.2,129.62,132.69,137.32,141.81,146.3,18.35,18.32,18.29,18.26,18.16,18.03,18.41,18.84,19.56,N/A,N/A +2012,1,9,8,30,101630,100440,99290,95.38,0,4.22,5.95,6.890000000000001,7.88,8.84,9.8,10.76,11.69,13.14,126.97,127,127.21000000000001,127.68,128.7,130.14000000000001,132.42000000000002,134.9,141.71,18.47,18.54,18.55,18.56,18.53,18.490000000000002,18.46,18.44,18.68,N/A,N/A +2012,1,9,9,30,101630,100450,99300,93.86,0,5.38,6.91,7.7,8.620000000000001,9.49,10.35,11.15,11.88,12.870000000000001,130.14000000000001,130.6,131.39000000000001,133.37,135.44,137.71,140.23,142.72,147.11,18.75,18.87,18.91,18.94,18.96,18.98,19.01,19.04,19.22,N/A,N/A +2012,1,9,10,30,101540,100350,99200,93.62,53.1,6.5600000000000005,8.38,9.200000000000001,10.040000000000001,10.94,11.82,12.700000000000001,13.48,14.27,97.86,101.14,104.21000000000001,108.09,113.04,118.16,123.11,127.5,132.61,18.79,18.85,18.900000000000002,18.96,19.04,19.12,19.2,19.27,19.37,N/A,N/A +2012,1,9,11,30,101540,100360,99210,92.58,169.60000000000002,6.51,8.4,9.38,10.24,11.03,11.78,12.56,13.32,14.84,75.94,80.66,84.68,89.35000000000001,93.87,98.48,103.27,107.95,116.58,18.990000000000002,19.150000000000002,19.17,19.11,19.04,18.97,18.92,18.89,18.85,N/A,N/A +2012,1,9,12,30,101580,100390,99250,91.57000000000001,2.6,6.29,8.34,9.24,10.07,10.790000000000001,11.44,11.99,12.49,13.23,164.70000000000002,163.54,162.5,160.92000000000002,159.72,158.77,158.35,158.08,158.11,19.27,19.41,19.43,19.43,19.42,19.41,19.39,19.36,19.26,N/A,N/A +2012,1,9,13,30,101570,100380,99240,91.95,0,7.26,9.13,9.97,10.81,11.57,12.280000000000001,12.98,13.64,14.950000000000001,150.76,151.32,151.88,152.75,153.65,154.59,155.54,156.46,158.11,19.150000000000002,19.26,19.27,19.28,19.28,19.27,19.32,19.37,19.400000000000002,N/A,N/A +2012,1,9,14,30,101590,100400,99260,92.76,0,7.140000000000001,8.97,9.81,10.700000000000001,11.55,12.370000000000001,13.22,14.040000000000001,15.530000000000001,150.99,152.13,152.93,153.86,154.71,155.52,156.36,157.16,158.56,18.98,19.04,19.07,19.13,19.21,19.3,19.39,19.47,19.5,N/A,N/A +2012,1,9,15,30,101550,100370,99230,92.28,0,7.41,9.3,10.21,11.15,12.030000000000001,12.9,13.76,14.58,15.85,149.02,150.24,151.15,152.14000000000001,153.07,153.96,154.76,155.51,156.75,19.07,19.23,19.29,19.34,19.39,19.44,19.48,19.51,19.47,N/A,N/A +2012,1,9,16,30,101520,100340,99200,92.84,0,7.34,9.15,10.05,11.05,12,12.93,13.85,14.72,16.54,144.3,145.77,146.9,148.26,149.56,150.84,152.34,153.84,156.87,18.96,19.03,19.080000000000002,19.27,19.400000000000002,19.5,19.6,19.7,19.89,N/A,N/A +2012,1,9,17,30,101500,100320,99170,93.31,0,6.84,8.56,9.39,10.27,11.1,11.89,12.67,13.4,14.59,137.36,139.20000000000002,140.6,142.28,143.85,145.36,146.79,148.13,150.26,18.900000000000002,19.06,19.12,19.14,19.18,19.22,19.240000000000002,19.26,19.240000000000002,N/A,N/A +2012,1,9,18,30,101440,100260,99110,93.07000000000001,0.4,7.51,9.24,10.1,11,11.85,12.700000000000001,13.48,14.200000000000001,15.32,129.34,131.2,132.74,134.75,136.69,138.67000000000002,140.66,142.56,147.23,18.95,19.02,19.05,19.13,19.2,19.26,19.35,19.42,19.63,N/A,N/A +2012,1,9,19,30,101450,100260,99120,92.63,0,6.62,8.47,9.36,10.290000000000001,11.14,11.93,12.63,13.27,14.290000000000001,123,126.04,128.32,130.92000000000002,133.5,136.09,139.18,142.19,148.25,19.07,19.16,19.2,19.28,19.39,19.52,19.66,19.79,20.01,N/A,N/A +2012,1,9,20,30,101430,100250,99100,93.09,0,6.6000000000000005,8.290000000000001,9.1,10,10.86,11.73,12.43,13.06,13.39,114.83,117.83,120.4,123.97,127.49000000000001,131.14000000000001,134.31,137.17000000000002,143.94,18.94,19.01,19.04,19.150000000000002,19.3,19.5,19.64,19.77,19.88,N/A,N/A +2012,1,9,21,30,101300,100120,98980,92.61,0,8.870000000000001,10.73,11.52,12.31,13.02,13.66,14.18,14.620000000000001,14.93,113.42,114.96000000000001,116.56,119.11,122.5,126.39,130.88,135.15,140.65,18.990000000000002,19.06,19.080000000000002,19.11,19.26,19.48,19.73,19.95,19.91,N/A,N/A +2012,1,9,22,30,101320,100140,98990,93.42,0,7.82,9.52,10.290000000000001,11.02,11.67,12.26,12.82,13.32,13.86,97.29,99.17,100.76,102.77,105.17,107.87,111.45,115.06,124.56,18.8,18.88,18.900000000000002,18.91,18.93,18.95,18.92,18.89,19.12,N/A,N/A +2012,1,9,23,30,101310,100130,98980,93.83,0,7.8500000000000005,9.52,10.27,11,11.71,12.4,13.08,13.72,14.780000000000001,109.77,110.63,111.39,112.61,114.16,115.9,118.56,121.29,133.54,18.71,18.76,18.77,18.78,18.79,18.81,18.82,18.830000000000002,18.98,N/A,N/A +2012,1,10,0,30,101300,100120,98980,93.15,6.6000000000000005,7.3,9.1,9.950000000000001,10.83,11.66,12.450000000000001,13.1,13.68,13.86,122.03,122.13,122.4,122.93,123.81,124.93,127.41,130.05,142.21,18.88,18.96,18.96,18.97,18.97,18.97,18.94,18.91,19.55,N/A,N/A +2012,1,10,1,30,101280,100100,98960,92.73,16.1,7.4,9.21,10.05,10.96,11.74,12.44,12.97,13.42,14.040000000000001,112.57000000000001,114.95,116.31,117.95,119.89,121.99000000000001,125.37,128.83,138.26,18.96,19.02,19.02,19.01,19,19.01,19.02,19.04,19.26,N/A,N/A +2012,1,10,2,30,101290,100110,98970,91.94,56,8.69,10.63,11.4,11.98,12.34,12.55,12.6,12.6,12.64,110.45,112.39,114.44,117.29,120.33,123.4,127.18,130.8,140.54,19.11,19.2,19.21,19.2,19.240000000000002,19.3,19.28,19.240000000000002,19.11,N/A,N/A +2012,1,10,3,30,101370,100190,99040,93.34,132.6,4.14,5.78,6.28,6.2700000000000005,6.2,6.0600000000000005,5.99,5.94,5.91,135.49,130.3,130.06,137.16,142.96,147.92000000000002,150.42000000000002,151.99,152.9,18.97,19.16,19.16,19.02,18.92,18.830000000000002,18.68,18.54,18.21,N/A,N/A +2012,1,10,4,30,101260,100080,98940,94.2,22.700000000000003,3.97,5.24,5.87,6.65,7.36,8.01,8.49,8.870000000000001,9.06,34.11,48.78,60.74,72.46000000000001,82.16,90.3,97.14,103.13,108.52,18.76,18.830000000000002,18.82,18.8,18.8,18.830000000000002,18.81,18.77,18.41,N/A,N/A +2012,1,10,5,30,101230,100050,98900,93.99,18.7,1.9100000000000001,2.88,3.27,3.8200000000000003,4.32,4.79,5.33,5.86,6.5200000000000005,84.97,105.67,116.42,124.34,130.37,135.11,140.21,145.24,151.22,19.09,19.11,18.990000000000002,18.830000000000002,18.72,18.63,18.54,18.45,18.28,N/A,N/A +2012,1,10,6,30,101230,100050,98910,91.39,0.4,4.99,6.0600000000000005,6.3100000000000005,6.48,6.57,6.61,6.62,6.61,6.59,222.1,228.45000000000002,232.65,236.94,240.47,243.48000000000002,246.57,249.41,255.68,19.47,19.89,19.98,19.91,19.85,19.78,19.72,19.67,19.55,N/A,N/A +2012,1,10,7,30,101300,100120,98970,94.92,0,7.25,8.6,9.15,9.64,10.01,10.28,10.32,10.290000000000001,9.58,280.89,281.76,282.46,283.29,283.99,284.61,285.28000000000003,285.90000000000003,287.51,18.63,18.6,18.53,18.43,18.28,18.12,17.92,17.73,17.47,N/A,N/A +2012,1,10,8,30,101340,100150,98990,93.44,0,9.450000000000001,10.34,10.58,10.71,10.8,10.870000000000001,10.950000000000001,11.03,11.36,289.21,289.65000000000003,289.95,290.33,290.75,291.19,291.81,292.44,294.65000000000003,17.36,17.06,16.89,16.7,16.51,16.330000000000002,16.15,15.97,15.63,N/A,N/A +2012,1,10,9,30,101350,100150,98990,91.67,0,10.25,11.09,11.28,11.36,11.39,11.41,11.42,11.44,11.64,291.24,291.44,291.6,291.76,291.94,292.12,292.37,292.62,293.64,16.35,15.96,15.77,15.57,15.38,15.200000000000001,15.01,14.84,14.5,N/A,N/A +2012,1,10,10,30,101370,100170,99000,91.26,0,9.540000000000001,10.28,10.46,10.53,10.56,10.58,10.59,10.59,10.61,293.01,293.21,293.32,293.43,293.55,293.66,293.79,293.92,294.28000000000003,15.200000000000001,14.74,14.530000000000001,14.33,14.13,13.94,13.74,13.55,13.17,N/A,N/A +2012,1,10,11,30,101400,100190,99010,90.54,0,10.14,10.93,11.11,11.18,11.22,11.23,11.23,11.23,11.23,289.73,289.83,289.91,289.98,290.05,290.12,290.21,290.3,290.55,14.19,13.66,13.44,13.23,13.030000000000001,12.84,12.64,12.46,12.08,N/A,N/A +2012,1,10,12,30,101440,100230,99040,90.62,0,10.51,11.34,11.540000000000001,11.64,11.69,11.73,11.74,11.76,11.8,287.08,287.19,287.27,287.35,287.44,287.52,287.63,287.75,288.06,13.14,12.55,12.32,12.1,11.89,11.71,11.5,11.32,10.94,N/A,N/A +2012,1,10,13,30,101460,100240,99060,87.91,0,8.870000000000001,9.51,9.67,9.76,9.81,9.86,9.89,9.91,9.96,287.58,287.76,287.91,288.04,288.19,288.31,288.47,288.61,288.94,12.8,12.24,12.01,11.790000000000001,11.58,11.39,11.19,11,10.620000000000001,N/A,N/A +2012,1,10,14,30,101490,100270,99080,87.88,0,9.83,10.55,10.72,10.8,10.85,10.870000000000001,10.89,10.9,10.9,288.72,288.95,289.09000000000003,289.23,289.36,289.49,289.63,289.76,290.08,12.05,11.42,11.18,10.950000000000001,10.74,10.55,10.34,10.15,9.77,N/A,N/A +2012,1,10,15,30,101480,100260,99070,86.71000000000001,0,8.85,9.48,9.65,9.74,9.8,9.84,9.870000000000001,9.9,9.94,292.05,292.25,292.36,292.46,292.57,292.66,292.78000000000003,292.89,293.13,11.86,11.25,11.01,10.790000000000001,10.57,10.38,10.17,9.98,9.6,N/A,N/A +2012,1,10,16,30,101460,100240,99050,84.57000000000001,0,7.8500000000000005,8.39,8.53,8.6,8.65,8.69,8.72,8.74,8.77,290.45,290.42,290.39,290.36,290.32,290.29,290.26,290.22,290.16,12.18,11.6,11.370000000000001,11.15,10.94,10.75,10.540000000000001,10.35,9.96,N/A,N/A +2012,1,10,17,30,101420,100200,99020,83.29,0,8.53,9.13,9.28,9.35,9.39,9.42,9.43,9.44,9.43,288.98,289.05,289.11,289.17,289.23,289.27,289.33,289.38,289.47,12.65,12.07,11.84,11.620000000000001,11.4,11.200000000000001,10.99,10.8,10.4,N/A,N/A +2012,1,10,18,30,101410,100200,99010,79.49,0,7.98,8.53,8.67,8.74,8.790000000000001,8.83,8.85,8.870000000000001,8.89,292.53000000000003,292.40000000000003,292.34000000000003,292.27,292.2,292.14,292.07,292.01,291.88,12.57,12.01,11.78,11.56,11.35,11.15,10.94,10.75,10.35,N/A,N/A +2012,1,10,19,30,101380,100160,98980,76.32000000000001,0,8.32,8.92,9.08,9.17,9.23,9.27,9.3,9.33,9.370000000000001,289.25,289.15000000000003,289.08,289.02,288.96,288.91,288.84000000000003,288.78000000000003,288.66,12.81,12.25,12.030000000000001,11.81,11.6,11.4,11.19,11,10.6,N/A,N/A +2012,1,10,20,30,101350,100140,98960,74.65,0,8.22,8.83,8.99,9.08,9.14,9.19,9.22,9.24,9.28,288.40000000000003,288.53000000000003,288.54,288.54,288.53000000000003,288.53000000000003,288.5,288.48,288.44,13.39,12.870000000000001,12.65,12.42,12.21,12.02,11.81,11.61,11.21,N/A,N/A +2012,1,10,21,30,101320,100110,98930,71.58,0,8.45,9.1,9.290000000000001,9.39,9.47,9.52,9.57,9.6,9.66,284.46,284.92,285.22,285.49,285.74,285.96,286.19,286.40000000000003,286.8,13.69,13.17,12.96,12.74,12.530000000000001,12.33,12.120000000000001,11.93,11.53,N/A,N/A +2012,1,10,22,30,101290,100080,98900,69.73,0,9.05,9.74,9.92,10.01,10.07,10.11,10.14,10.16,10.19,293.09000000000003,292.88,292.78000000000003,292.68,292.58,292.49,292.38,292.29,292.09000000000003,13.71,13.19,12.97,12.75,12.540000000000001,12.35,12.14,11.94,11.540000000000001,N/A,N/A +2012,1,10,23,30,101310,100100,98920,72.53,0,9.94,10.71,10.9,11,11.06,11.1,11.120000000000001,11.14,11.14,295.71,295.62,295.54,295.45,295.38,295.3,295.22,295.15000000000003,295,13.3,12.73,12.5,12.27,12.06,11.86,11.65,11.450000000000001,11.05,N/A,N/A +2012,1,11,0,30,101350,100130,98950,72.68,0,10.28,11.16,11.41,11.55,11.65,11.73,11.790000000000001,11.84,11.92,292.11,291.97,291.89,291.81,291.73,291.67,291.6,291.54,291.41,12.790000000000001,12.200000000000001,11.96,11.73,11.51,11.31,11.1,10.91,10.51,N/A,N/A +2012,1,11,1,30,101340,100120,98940,73.26,0,8.96,9.66,9.85,9.96,10.040000000000001,10.1,10.15,10.200000000000001,10.27,287.48,287.08,286.83,286.6,286.37,286.18,285.96,285.76,285.36,12.780000000000001,12.21,11.99,11.77,11.55,11.36,11.15,10.96,10.56,N/A,N/A +2012,1,11,2,30,101340,100120,98940,73.75,0,7.140000000000001,7.640000000000001,7.79,7.88,7.95,8.01,8.06,8.11,8.22,280.69,280.23,279.95,279.67,279.41,279.16,278.91,278.67,278.18,12.77,12.24,12.02,11.81,11.6,11.41,11.200000000000001,11.02,10.63,N/A,N/A +2012,1,11,3,30,101300,100090,98910,74.38,0,7.75,8.36,8.540000000000001,8.66,8.75,8.83,8.91,8.98,9.14,276.87,276.84000000000003,276.79,276.75,276.7,276.67,276.63,276.6,276.56,13.17,12.65,12.43,12.21,12.01,11.82,11.620000000000001,11.44,11.06,N/A,N/A +2012,1,11,4,30,101260,100040,98870,71.83,0,8.290000000000001,8.97,9.16,9.28,9.38,9.450000000000001,9.53,9.6,9.76,275.91,275.74,275.64,275.54,275.45,275.38,275.3,275.24,275.16,13.91,13.41,13.19,12.99,12.790000000000001,12.61,12.41,12.23,11.86,N/A,N/A +2012,1,11,5,30,101240,100030,98850,71.93,0,8.8,9.52,9.73,9.85,9.94,10.01,10.07,10.120000000000001,10.22,275.26,275.16,275.09000000000003,275.04,275,274.96,274.93,274.90000000000003,274.87,14.49,14.01,13.8,13.59,13.38,13.19,12.99,12.8,12.41,N/A,N/A +2012,1,11,6,30,101220,100010,98840,70.65,0,9.53,10.35,10.58,10.72,10.81,10.870000000000001,10.92,10.96,11.03,274.03000000000003,273.99,273.97,273.97,273.99,274,274.02,274.05,274.12,14.9,14.450000000000001,14.24,14.030000000000001,13.83,13.64,13.44,13.25,12.86,N/A,N/A +2012,1,11,7,30,101230,100020,98850,71.97,0,9.16,9.83,9.99,10.05,10.08,10.09,10.09,10.09,10.07,287.6,286.78000000000003,286.22,285.67,285.13,284.62,284.05,283.52,282.3,14.11,13.63,13.42,13.22,13.02,12.84,12.65,12.47,12.11,N/A,N/A +2012,1,11,8,30,101220,100010,98830,76.05,0,7.69,8.2,8.31,8.36,8.39,8.41,8.43,8.45,8.540000000000001,285.36,285.19,285.06,284.93,284.8,284.68,284.52,284.36,283.95,13.370000000000001,12.870000000000001,12.67,12.47,12.27,12.09,11.9,11.73,11.38,N/A,N/A +2012,1,11,9,30,101220,100010,98830,74.72,0,6.83,7.26,7.36,7.41,7.44,7.47,7.5,7.54,7.65,280.41,280.5,280.57,280.63,280.71,280.79,280.91,281.04,281.45,13.450000000000001,12.98,12.77,12.57,12.38,12.200000000000001,12.01,11.83,11.48,N/A,N/A +2012,1,11,10,30,101210,100000,98820,74.61,0,6.34,6.72,6.8100000000000005,6.86,6.890000000000001,6.92,6.95,6.98,7.1000000000000005,277.12,277.14,277.17,277.2,277.25,277.31,277.40000000000003,277.51,277.94,13.49,13.02,12.82,12.620000000000001,12.43,12.25,12.05,11.88,11.52,N/A,N/A +2012,1,11,11,30,101210,100000,98820,72.69,0,5.82,6.16,6.23,6.2700000000000005,6.29,6.3,6.3100000000000005,6.33,6.38,274.34000000000003,273.88,273.55,273.21,272.85,272.52,272.15,271.8,271.09000000000003,13.870000000000001,13.43,13.23,13.030000000000001,12.84,12.66,12.47,12.290000000000001,11.92,N/A,N/A +2012,1,11,12,30,101220,100010,98840,74.04,0,5.62,5.95,6.03,6.07,6.09,6.11,6.13,6.15,6.2,270.22,269.78000000000003,269.48,269.17,268.86,268.57,268.25,267.95,267.31,14.22,13.8,13.6,13.4,13.200000000000001,13.02,12.83,12.64,12.27,N/A,N/A +2012,1,11,13,30,101200,99990,98820,72.61,0,5.97,6.3500000000000005,6.44,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,6.63,269.57,269.21,268.95,268.7,268.44,268.18,267.89,267.62,266.96,14.59,14.17,13.98,13.780000000000001,13.58,13.4,13.200000000000001,13.02,12.65,N/A,N/A +2012,1,11,14,30,101220,100010,98840,70.85000000000001,0,6.22,6.61,6.69,6.73,6.75,6.76,6.7700000000000005,6.78,6.8100000000000005,268.96,268.57,268.31,268.05,267.78000000000003,267.53000000000003,267.23,266.94,266.25,14.71,14.290000000000001,14.1,13.9,13.71,13.52,13.33,13.15,12.780000000000001,N/A,N/A +2012,1,11,15,30,101200,100000,98820,66.62,0,6.01,6.36,6.42,6.45,6.46,6.46,6.46,6.46,6.5200000000000005,262.1,262.05,262.02,261.98,261.93,261.87,261.78000000000003,261.69,261.46,14.85,14.450000000000001,14.26,14.06,13.870000000000001,13.69,13.5,13.32,12.98,N/A,N/A +2012,1,11,16,30,101160,99960,98790,64.94,0,5.74,6.09,6.15,6.18,6.2,6.21,6.23,6.26,6.46,257.08,256.84000000000003,256.7,256.56,256.41,256.27,256.09000000000003,255.92000000000002,255.52,15.02,14.63,14.450000000000001,14.26,14.07,13.89,13.71,13.540000000000001,13.23,N/A,N/A +2012,1,11,17,30,101100,99900,98730,63.89,0,6.03,6.41,6.49,6.53,6.5600000000000005,6.57,6.6000000000000005,6.63,6.83,249.29,249.17000000000002,249.13,249.11,249.09,249.07,249.08,249.12,249.55,15.46,15.09,14.9,14.71,14.530000000000001,14.35,14.16,13.99,13.68,N/A,N/A +2012,1,11,18,30,101070,99870,98710,60.86,0,6.3100000000000005,6.7700000000000005,6.88,6.94,6.98,7,7.03,7.05,7.11,236.20000000000002,236.07,236,235.93,235.87,235.81,235.75,235.71,235.69,16.17,15.83,15.65,15.46,15.27,15.09,14.89,14.71,14.35,N/A,N/A +2012,1,11,19,30,101020,99830,98670,61.78,0,6.3,6.8100000000000005,6.92,6.97,7,7.0200000000000005,7.04,7.0600000000000005,7.140000000000001,233.98000000000002,233.97,233.99,234.02,234.05,234.08,234.16,234.26,234.74,16.9,16.6,16.43,16.240000000000002,16.05,15.870000000000001,15.68,15.5,15.15,N/A,N/A +2012,1,11,20,30,100960,99760,98610,69.98,0,7.43,8.120000000000001,8.28,8.36,8.4,8.43,8.44,8.45,8.47,226.9,227.06,227.21,227.37,227.54,227.72,227.93,228.14000000000001,228.72,17.43,17.17,17.01,16.830000000000002,16.64,16.47,16.27,16.1,15.73,N/A,N/A +2012,1,11,21,30,100900,99720,98560,74.60000000000001,0,8.8,9.69,9.93,10.08,10.17,10.25,10.290000000000001,10.33,10.370000000000001,220.73000000000002,220.88,220.99,221.11,221.23000000000002,221.35,221.5,221.63,222.01,17.6,17.37,17.22,17.04,16.85,16.68,16.48,16.31,15.94,N/A,N/A +2012,1,11,22,30,100850,99660,98510,75.53,0,8.83,9.870000000000001,10.200000000000001,10.46,10.68,10.88,11.09,11.290000000000001,11.76,219.43,219.79,220.06,220.39000000000001,220.79,221.22,221.86,222.5,224.41,17.82,17.62,17.490000000000002,17.330000000000002,17.16,17.01,16.86,16.72,16.47,N/A,N/A +2012,1,11,23,30,100840,99650,98500,79.19,0,8.73,9.85,10.23,10.53,10.76,10.96,11.13,11.28,11.55,222.76,223,223.16,223.32,223.49,223.64000000000001,223.84,224.05,224.63,18,17.82,17.69,17.53,17.36,17.2,17.02,16.85,16.51,N/A,N/A +2012,1,12,0,30,100830,99650,98500,82.28,0,8.26,9.38,9.8,10.13,10.41,10.64,10.870000000000001,11.07,11.53,221.94,222.14000000000001,222.3,222.5,222.72,222.97,223.3,223.64000000000001,224.57,18.14,18.01,17.900000000000002,17.76,17.62,17.48,17.330000000000002,17.2,16.94,N/A,N/A +2012,1,12,1,30,100820,99640,98490,82.11,0,7.87,9.1,9.58,9.98,10.34,10.67,11,11.33,12.11,219.03,219.33,219.58,219.9,220.23000000000002,220.58,220.98000000000002,221.37,222.33,18.32,18.25,18.16,18.04,17.92,17.8,17.67,17.55,17.31,N/A,N/A +2012,1,12,2,30,100840,99650,98510,80.24,0,8.24,9.63,10.18,10.68,11.11,11.51,11.870000000000001,12.21,12.81,220.70000000000002,221.03,221.28,221.58,221.89000000000001,222.19,222.53,222.85,223.6,18.54,18.51,18.44,18.330000000000002,18.22,18.1,17.98,17.86,17.6,N/A,N/A +2012,1,12,3,30,100850,99670,98520,80.4,0,8.57,10.02,10.6,11.120000000000001,11.56,11.96,12.33,12.66,13.280000000000001,224.70000000000002,225.08,225.37,225.73000000000002,226.11,226.5,226.96,227.39000000000001,228.5,18.64,18.62,18.56,18.46,18.35,18.23,18.11,18,17.76,N/A,N/A +2012,1,12,4,30,100880,99700,98560,80.86,0,8.620000000000001,10.1,10.71,11.25,11.71,12.13,12.52,12.88,13.55,233.21,233.55,233.8,234.11,234.44,234.8,235.24,235.66,236.82,18.69,18.69,18.64,18.55,18.46,18.36,18.25,18.150000000000002,17.96,N/A,N/A +2012,1,12,5,30,100920,99740,98590,79.96000000000001,0,8.59,10.08,10.700000000000001,11.26,11.73,12.16,12.56,12.92,13.57,240.98000000000002,241.15,241.28,241.45000000000002,241.65,241.85,242.15,242.45000000000002,243.48000000000002,18.76,18.8,18.77,18.7,18.62,18.54,18.47,18.39,18.29,N/A,N/A +2012,1,12,6,30,100990,99810,98660,83.37,0,7.66,9.28,9.96,10.6,11.14,11.61,12,12.34,12.89,247.53,247.89000000000001,248.14000000000001,248.52,248.93,249.36,249.81,250.24,251.19,18.45,18.6,18.62,18.580000000000002,18.53,18.46,18.35,18.25,18,N/A,N/A +2012,1,12,7,30,101110,99910,98740,73.63,0,10.040000000000001,10.93,11.17,11.3,11.42,11.52,11.69,11.88,12.86,295.16,295.7,296.04,296.46,296.96,297.47,298.26,299.11,302.27,15.64,15.290000000000001,15.11,14.92,14.73,14.56,14.38,14.22,13.96,N/A,N/A +2012,1,12,8,30,101210,100000,98830,74.25,0,13.32,14.59,14.91,15.06,15.15,15.21,15.23,15.25,15.27,318.85,318.92,318.97,319.01,319.07,319.12,319.19,319.26,319.46,14.4,13.91,13.700000000000001,13.49,13.290000000000001,13.1,12.9,12.71,12.34,N/A,N/A +2012,1,12,9,30,101370,100150,98960,79.08,0,13.97,15.290000000000001,15.63,15.81,15.92,15.99,16.03,16.06,16.080000000000002,337.54,337.73,337.84000000000003,337.94,338.05,338.15000000000003,338.26,338.37,338.61,12.48,11.85,11.6,11.370000000000001,11.15,10.950000000000001,10.74,10.55,10.16,N/A,N/A +2012,1,12,10,30,101500,100280,99080,79.96000000000001,0,13.780000000000001,15.040000000000001,15.370000000000001,15.52,15.610000000000001,15.67,15.700000000000001,15.71,15.71,339.83,340.09000000000003,340.24,340.37,340.5,340.62,340.76,340.89,341.16,11.13,10.42,10.15,9.91,9.69,9.49,9.28,9.09,8.700000000000001,N/A,N/A +2012,1,12,11,30,101660,100420,99220,80.43,0,14.51,15.88,16.26,16.47,16.6,16.7,16.76,16.8,16.86,348.87,348.79,348.72,348.65000000000003,348.58,348.52,348.45,348.39,348.26,9.93,9.120000000000001,8.83,8.58,8.35,8.14,7.92,7.72,7.32,N/A,N/A +2012,1,12,12,30,101770,100530,99320,78.75,0,16.14,17.7,18.12,18.34,18.48,18.59,18.650000000000002,18.7,18.77,349.93,349.93,349.91,349.89,349.86,349.84000000000003,349.81,349.79,349.74,8.96,8.05,7.74,7.48,7.24,7.03,6.8100000000000005,6.61,6.21,N/A,N/A +2012,1,12,13,30,101900,100660,99440,78.15,0,16.26,17.86,18.3,18.54,18.69,18.8,18.87,18.92,18.98,352.18,352.09000000000003,352.02,351.96,351.90000000000003,351.85,351.79,351.74,351.63,8.17,7.21,6.890000000000001,6.62,6.37,6.16,5.93,5.73,5.32,N/A,N/A +2012,1,12,14,30,102020,100760,99550,77.15,0,15.97,17.47,17.88,18.09,18.23,18.330000000000002,18.39,18.44,18.51,352.75,352.75,352.75,352.74,352.73,352.72,352.71,352.69,352.68,7.53,6.54,6.22,5.95,5.71,5.49,5.2700000000000005,5.07,4.67,N/A,N/A +2012,1,12,15,30,102090,100840,99620,74.92,0,14.6,15.89,16.240000000000002,16.42,16.54,16.62,16.68,16.72,16.78,349.77,349.81,349.84000000000003,349.86,349.88,349.89,349.91,349.93,349.96,7.38,6.43,6.11,5.8500000000000005,5.61,5.4,5.18,4.98,4.59,N/A,N/A +2012,1,12,16,30,102110,100860,99640,69.34,0,13.71,14.88,15.200000000000001,15.38,15.48,15.56,15.620000000000001,15.66,15.71,348.35,348.37,348.37,348.37,348.37,348.37,348.37,348.37,348.37,7.55,6.65,6.34,6.09,5.8500000000000005,5.64,5.42,5.22,4.83,N/A,N/A +2012,1,12,17,30,102150,100890,99680,63.480000000000004,0,12.41,13.44,13.73,13.88,13.98,14.06,14.11,14.15,14.21,346.73,346.72,346.71,346.7,346.7,346.69,346.68,346.68,346.67,8.06,7.22,6.93,6.68,6.44,6.23,6.01,5.8100000000000005,5.41,N/A,N/A +2012,1,12,18,30,102180,100930,99720,61.13,0,11.48,12.39,12.63,12.77,12.86,12.92,12.97,13,13.05,342.64,342.68,342.72,342.77,342.8,342.83,342.87,342.90000000000003,342.98,8.59,7.8100000000000005,7.53,7.28,7.05,6.84,6.62,6.42,6.0200000000000005,N/A,N/A +2012,1,12,19,30,102200,100950,99740,56.36,0,12.200000000000001,13.22,13.5,13.65,13.75,13.83,13.870000000000001,13.91,13.96,339.06,339.19,339.28000000000003,339.36,339.43,339.5,339.57,339.64,339.76,9.040000000000001,8.26,7.98,7.73,7.5,7.3,7.08,6.87,6.47,N/A,N/A +2012,1,12,20,30,102220,100970,99760,53.95,0,11.26,12.15,12.4,12.530000000000001,12.620000000000001,12.68,12.72,12.76,12.8,338.94,338.92,338.91,338.89,338.88,338.86,338.85,338.83,338.8,9.32,8.57,8.3,8.06,7.83,7.62,7.4,7.2,6.79,N/A,N/A +2012,1,12,21,30,102220,100970,99760,51.77,0,10.93,11.77,12,12.120000000000001,12.200000000000001,12.26,12.290000000000001,12.32,12.36,339.72,339.58,339.48,339.39,339.3,339.22,339.15000000000003,339.08,338.93,9.44,8.72,8.45,8.21,7.98,7.78,7.5600000000000005,7.36,6.95,N/A,N/A +2012,1,12,22,30,102210,100960,99750,51.44,0,10.540000000000001,11.34,11.55,11.66,11.73,11.78,11.81,11.83,11.84,334.63,334.79,334.90000000000003,335.01,335.1,335.19,335.28000000000003,335.36,335.53000000000003,9.49,8.78,8.51,8.27,8.040000000000001,7.84,7.62,7.41,7.01,N/A,N/A +2012,1,12,23,30,102280,101030,99820,50.47,0,9.92,10.63,10.82,10.92,10.98,11.03,11.05,11.07,11.09,340.22,339.93,339.75,339.58,339.41,339.26,339.11,338.98,338.71,9.450000000000001,8.76,8.5,8.26,8.03,7.83,7.61,7.41,7.01,N/A,N/A +2012,1,13,0,30,102350,101100,99880,46.25,0,10.56,11.33,11.53,11.620000000000001,11.68,11.72,11.74,11.76,11.77,339.74,339.69,339.61,339.54,339.47,339.40000000000003,339.33,339.26,339.13,9.18,8.46,8.19,7.95,7.73,7.5200000000000005,7.3100000000000005,7.11,6.71,N/A,N/A +2012,1,13,1,30,102390,101130,99920,50,0,9.89,10.58,10.75,10.83,10.88,10.91,10.93,10.94,10.94,340.40000000000003,340.3,340.21,340.13,340.04,339.97,339.88,339.8,339.65000000000003,8.89,8.18,7.91,7.68,7.45,7.25,7.03,6.83,6.43,N/A,N/A +2012,1,13,2,30,102440,101190,99970,51.85,0,9.49,10.13,10.290000000000001,10.370000000000001,10.42,10.450000000000001,10.47,10.48,10.49,342.01,341.71,341.51,341.34000000000003,341.19,341.04,340.89,340.76,340.49,8.61,7.9,7.63,7.390000000000001,7.16,6.96,6.74,6.54,6.140000000000001,N/A,N/A +2012,1,13,3,30,102480,101230,100010,50.27,0,9.6,10.25,10.41,10.48,10.53,10.56,10.57,10.58,10.59,344.85,344.65000000000003,344.54,344.43,344.33,344.25,344.16,344.08,343.92,8.290000000000001,7.5600000000000005,7.29,7.0600000000000005,6.83,6.62,6.4,6.2,5.8,N/A,N/A +2012,1,13,4,30,102510,101250,100030,52.86,0,8.5,9.03,9.16,9.22,9.25,9.28,9.290000000000001,9.3,9.3,345.12,345.24,345.31,345.35,345.40000000000003,345.45,345.49,345.53000000000003,345.6,8.11,7.41,7.140000000000001,6.9,6.68,6.47,6.26,6.05,5.65,N/A,N/A +2012,1,13,5,30,102540,101280,100060,54.75,0,8.08,8.55,8.66,8.71,8.73,8.74,8.74,8.74,8.73,352.81,352.64,352.53000000000003,352.44,352.35,352.27,352.19,352.12,351.97,7.96,7.2700000000000005,7.01,6.7700000000000005,6.54,6.34,6.12,5.92,5.5200000000000005,N/A,N/A +2012,1,13,6,30,102560,101300,100080,51.96,0,7.8,8.26,8.35,8.4,8.42,8.43,8.44,8.44,8.42,358.8,358.38,358.1,357.85,357.62,357.42,357.2,357.01,356.63,7.86,7.17,6.91,6.68,6.45,6.25,6.03,5.83,5.43,N/A,N/A +2012,1,13,7,30,102600,101340,100120,47.52,0,7.91,8.35,8.44,8.47,8.48,8.49,8.48,8.47,8.44,5.08,4.6000000000000005,4.2700000000000005,3.97,3.66,3.39,3.11,2.84,2.29,7.73,7.03,6.7700000000000005,6.54,6.32,6.12,5.91,5.71,5.3100000000000005,N/A,N/A +2012,1,13,8,30,102610,101350,100130,46.300000000000004,0,7.8,8.24,8.34,8.38,8.39,8.4,8.4,8.4,8.39,4.42,4.3100000000000005,4.24,4.16,4.08,4.01,3.93,3.84,3.66,7.61,6.92,6.66,6.43,6.21,6.01,5.8,5.6000000000000005,5.21,N/A,N/A +2012,1,13,9,30,102630,101370,100150,46.63,0,7.46,7.87,7.95,7.99,8,8.01,8,8,7.98,7.55,7.58,7.6000000000000005,7.61,7.62,7.62,7.62,7.62,7.6000000000000005,7.61,6.93,6.67,6.44,6.22,6.0200000000000005,5.8100000000000005,5.62,5.22,N/A,N/A +2012,1,13,10,30,102650,101390,100170,48.5,0,7.18,7.57,7.65,7.69,7.71,7.72,7.72,7.72,7.7,11.35,11.370000000000001,11.38,11.39,11.39,11.4,11.4,11.4,11.4,7.65,6.97,6.72,6.49,6.26,6.07,5.8500000000000005,5.66,5.26,N/A,N/A +2012,1,13,11,30,102670,101410,100190,47.69,0,7.15,7.53,7.61,7.640000000000001,7.65,7.66,7.65,7.65,7.63,13.01,12.950000000000001,12.9,12.870000000000001,12.83,12.790000000000001,12.74,12.700000000000001,12.61,7.7700000000000005,7.1000000000000005,6.84,6.61,6.390000000000001,6.2,5.99,5.79,5.4,N/A,N/A +2012,1,13,12,30,102700,101440,100220,47.37,0,6.62,6.96,7.0200000000000005,7.05,7.0600000000000005,7.0600000000000005,7.0600000000000005,7.05,7.03,14.24,14.19,14.16,14.120000000000001,14.09,14.06,14.02,13.99,13.92,7.91,7.26,7.01,6.79,6.57,6.37,6.16,5.97,5.58,N/A,N/A +2012,1,13,13,30,102710,101460,100230,47.42,0,6.25,6.55,6.6000000000000005,6.61,6.62,6.61,6.6000000000000005,6.59,6.5600000000000005,17.05,16.98,16.92,16.87,16.82,16.77,16.71,16.66,16.54,7.99,7.36,7.12,6.890000000000001,6.67,6.48,6.2700000000000005,6.07,5.68,N/A,N/A +2012,1,13,14,30,102770,101510,100290,46.410000000000004,0,5.69,5.95,5.98,5.99,5.99,5.98,5.97,5.95,5.92,24.79,24.77,24.75,24.740000000000002,24.72,24.71,24.68,24.66,24.62,8.120000000000001,7.51,7.26,7.04,6.83,6.63,6.42,6.23,5.84,N/A,N/A +2012,1,13,15,30,102780,101520,100300,44.71,0,5.25,5.47,5.5,5.51,5.51,5.5,5.48,5.47,5.44,25.76,25.84,25.900000000000002,25.94,25.98,26.02,26.060000000000002,26.1,26.16,8.3,7.7,7.46,7.24,7.03,6.84,6.63,6.43,6.04,N/A,N/A +2012,1,13,16,30,102770,101520,100290,43.95,0,5.03,5.24,5.26,5.2700000000000005,5.26,5.26,5.24,5.23,5.2,23.82,23.91,23.97,24.02,24.060000000000002,24.1,24.14,24.17,24.240000000000002,8.540000000000001,7.95,7.72,7.5,7.28,7.09,6.88,6.69,6.3,N/A,N/A +2012,1,13,17,30,102760,101510,100290,42.730000000000004,0,4.2700000000000005,4.43,4.45,4.46,4.45,4.44,4.43,4.43,4.4,22.56,22.5,22.47,22.43,22.39,22.35,22.3,22.27,22.18,8.81,8.25,8.02,7.8,7.59,7.4,7.19,6.99,6.6000000000000005,N/A,N/A +2012,1,13,18,30,102750,101500,100280,42.11,0,3.6,3.73,3.74,3.74,3.73,3.73,3.72,3.71,3.69,19.84,19.77,19.73,19.68,19.64,19.61,19.57,19.52,19.42,9.15,8.620000000000001,8.39,8.18,7.97,7.78,7.57,7.37,6.98,N/A,N/A +2012,1,13,19,30,102740,101490,100270,41.81,0,3.0700000000000003,3.16,3.16,3.15,3.14,3.13,3.12,3.1,3.08,8.24,8.22,8.23,8.25,8.25,8.24,8.22,8.21,8.15,9.49,8.97,8.75,8.540000000000001,8.33,8.14,7.930000000000001,7.74,7.3500000000000005,N/A,N/A +2012,1,13,20,30,102720,101470,100260,44.74,0,2.2800000000000002,2.38,2.4,2.41,2.43,2.44,2.45,2.46,2.48,4.8,3.17,2.15,1.21,0.34,359.54,358.75,358.02,356.63,9.88,9.39,9.17,8.96,8.75,8.56,8.35,8.16,7.76,N/A,N/A +2012,1,13,21,30,102710,101470,100250,39.92,0,2.89,3.0100000000000002,3.0300000000000002,3.04,3.0500000000000003,3.0500000000000003,3.06,3.06,3.0700000000000003,354.25,353.98,353.8,353.63,353.48,353.34000000000003,353.19,353.04,352.73,10.41,9.92,9.71,9.5,9.290000000000001,9.1,8.89,8.700000000000001,8.31,N/A,N/A +2012,1,13,22,30,102680,101440,100230,46.65,0,1.62,1.71,1.75,1.78,1.81,1.83,1.86,1.8800000000000001,1.93,333.59000000000003,333.1,332.77,332.45,332.14,331.87,331.59000000000003,331.33,330.82,10.71,10.25,10.040000000000001,9.83,9.63,9.44,9.23,9.040000000000001,8.65,N/A,N/A +2012,1,13,23,30,102710,101460,100250,46.18,0,2.89,2.98,2.98,2.97,2.97,2.96,2.95,2.94,2.91,339.51,339.71,339.82,339.91,340,340.08,340.17,340.26,340.44,11.120000000000001,10.65,10.44,10.23,10.02,9.83,9.620000000000001,9.43,9.03,N/A,N/A +2012,1,14,0,30,102730,101490,100280,45.89,0,2.82,2.9,2.89,2.88,2.87,2.86,2.84,2.83,2.79,338.11,338.24,338.26,338.29,338.33,338.36,338.38,338.41,338.5,11.33,10.88,10.67,10.46,10.25,10.06,9.86,9.66,9.27,N/A,N/A +2012,1,14,1,30,102770,101520,100320,44.57,0,2.41,2.48,2.47,2.46,2.45,2.44,2.43,2.42,2.39,349.40000000000003,349.12,348.92,348.72,348.53000000000003,348.36,348.18,348.02,347.69,11.57,11.13,10.92,10.71,10.51,10.32,10.11,9.92,9.53,N/A,N/A +2012,1,14,2,30,102780,101540,100340,41.97,0,1.94,2.0100000000000002,2.02,2.02,2.02,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,352.34000000000003,351.85,351.54,351.25,350.99,350.76,350.51,350.29,349.88,11.83,11.4,11.200000000000001,10.99,10.78,10.6,10.39,10.200000000000001,9.8,N/A,N/A +2012,1,14,3,30,102790,101550,100350,40.9,0,2.17,2.22,2.22,2.2,2.19,2.18,2.17,2.15,2.13,352.81,352.69,352.67,352.65000000000003,352.63,352.62,352.6,352.58,352.53000000000003,12,11.57,11.370000000000001,11.16,10.950000000000001,10.77,10.56,10.370000000000001,9.97,N/A,N/A +2012,1,14,4,30,102790,101550,100350,41.300000000000004,0,1.75,1.79,1.78,1.77,1.76,1.75,1.74,1.73,1.71,350.16,349.33,348.76,348.21,347.69,347.24,346.74,346.28000000000003,345.31,12.13,11.71,11.5,11.3,11.09,10.91,10.700000000000001,10.51,10.120000000000001,N/A,N/A +2012,1,14,5,30,102790,101550,100350,47.25,0,1.4000000000000001,1.43,1.43,1.42,1.42,1.42,1.41,1.41,1.41,338.79,336.65000000000003,335.3,334.01,332.79,331.67,330.51,329.44,327.22,12.21,11.790000000000001,11.59,11.38,11.18,10.99,10.790000000000001,10.59,10.200000000000001,N/A,N/A +2012,1,14,6,30,102810,101570,100370,45.76,0,2.99,3.02,2.97,2.92,2.87,2.82,2.7600000000000002,2.72,2.62,300.86,300.38,300.09000000000003,299.81,299.54,299.29,299.04,298.79,298.26,12.39,11.97,11.78,11.57,11.36,11.18,10.97,10.78,10.39,N/A,N/A +2012,1,14,7,30,102840,101600,100400,45.83,0,3.4,3.48,3.45,3.42,3.38,3.35,3.31,3.27,3.18,302.17,301.46,300.97,300.51,300.06,299.64,299.16,298.71,297.73,12.14,11.71,11.5,11.3,11.1,10.91,10.71,10.52,10.13,N/A,N/A +2012,1,14,8,30,102850,101610,100400,45.4,0,3.77,3.86,3.85,3.81,3.77,3.73,3.69,3.64,3.5500000000000003,291.56,290.94,290.54,290.14,289.74,289.38,288.97,288.58,287.7,12.1,11.66,11.46,11.26,11.06,10.870000000000001,10.66,10.48,10.09,N/A,N/A +2012,1,14,9,30,102870,101620,100420,42.27,0,3.54,3.66,3.66,3.64,3.63,3.61,3.59,3.56,3.52,297.59000000000003,296.87,296.41,295.97,295.53000000000003,295.13,294.66,294.22,293.26,12.040000000000001,11.6,11.39,11.19,10.99,10.8,10.6,10.41,10.03,N/A,N/A +2012,1,14,10,30,102880,101640,100430,44.24,0,3.38,3.48,3.47,3.45,3.43,3.41,3.38,3.35,3.3000000000000003,285.64,284.87,284.35,283.85,283.35,282.90000000000003,282.36,281.86,280.75,12,11.56,11.36,11.16,10.96,10.77,10.57,10.38,9.99,N/A,N/A +2012,1,14,11,30,102910,101660,100460,44.62,0,3.43,3.52,3.52,3.5,3.47,3.45,3.42,3.4,3.34,290.61,289.55,288.85,288.16,287.48,286.85,286.12,285.44,283.93,11.97,11.53,11.33,11.13,10.93,10.74,10.540000000000001,10.35,9.97,N/A,N/A +2012,1,14,12,30,102940,101690,100490,44.22,0,3.2800000000000002,3.37,3.36,3.34,3.3200000000000003,3.3000000000000003,3.27,3.25,3.2,289.28000000000003,288.32,287.69,287.08,286.47,285.91,285.24,284.62,283.23,12,11.56,11.36,11.16,10.96,10.78,10.57,10.38,10,N/A,N/A +2012,1,14,13,30,102960,101710,100510,44.35,0,3.34,3.44,3.43,3.42,3.4,3.38,3.35,3.33,3.2800000000000002,291.44,290.56,289.97,289.39,288.81,288.28000000000003,287.66,287.08,285.8,12.11,11.67,11.47,11.27,11.07,10.88,10.68,10.49,10.11,N/A,N/A +2012,1,14,14,30,102990,101750,100540,44.47,0,3.61,3.73,3.73,3.72,3.7,3.68,3.66,3.63,3.58,287.18,286.3,285.73,285.16,284.59000000000003,284.06,283.46,282.89,281.61,12.22,11.78,11.58,11.38,11.18,11,10.790000000000001,10.61,10.22,N/A,N/A +2012,1,14,15,30,103010,101770,100560,43.67,0,3.41,3.52,3.52,3.5,3.48,3.46,3.44,3.42,3.37,282.26,281.26,280.6,279.98,279.34000000000003,278.76,278.11,277.49,276.12,12.35,11.92,11.72,11.52,11.32,11.13,10.93,10.74,10.36,N/A,N/A +2012,1,14,16,30,103000,101760,100560,43.46,0,3.0300000000000002,3.13,3.14,3.13,3.13,3.12,3.1,3.09,3.06,284.51,283.56,282.93,282.32,281.73,281.18,280.54,279.95,278.68,12.5,12.08,11.88,11.68,11.48,11.3,11.09,10.91,10.52,N/A,N/A +2012,1,14,17,30,102980,101740,100540,43.92,0,2.86,2.96,2.98,2.98,2.98,2.97,2.97,2.96,2.95,276.41,275.59000000000003,275.04,274.5,273.95,273.45,272.87,272.32,271.07,12.72,12.31,12.11,11.91,11.71,11.53,11.32,11.13,10.75,N/A,N/A +2012,1,14,18,30,102980,101740,100540,43.33,0,2.57,2.68,2.69,2.7,2.71,2.71,2.71,2.72,2.72,271.37,270.72,270.32,269.91,269.49,269.1,268.64,268.21,267.26,13.01,12.61,12.41,12.21,12.01,11.83,11.620000000000001,11.43,11.05,N/A,N/A +2012,1,14,19,30,102960,101730,100530,43.410000000000004,0,2.19,2.2800000000000002,2.3000000000000003,2.31,2.32,2.33,2.33,2.34,2.35,256.86,257.17,257.4,257.6,257.77,257.92,258.03000000000003,258.12,258.2,13.31,12.92,12.73,12.530000000000001,12.33,12.15,11.94,11.75,11.36,N/A,N/A +2012,1,14,20,30,102920,101680,100480,44.35,0,2.5500000000000003,2.67,2.69,2.71,2.72,2.73,2.74,2.75,2.7600000000000002,244.9,245.06,245.23000000000002,245.39000000000001,245.55,245.69,245.88,246.05,246.44,13.59,13.21,13.02,12.82,12.620000000000001,12.44,12.24,12.05,11.66,N/A,N/A +2012,1,14,21,30,102880,101650,100450,41.980000000000004,0,3.0700000000000003,3.2,3.22,3.23,3.23,3.23,3.23,3.23,3.23,226.89000000000001,227.43,227.75,228.06,228.37,228.67000000000002,229.02,229.37,230.23000000000002,13.91,13.540000000000001,13.35,13.15,12.96,12.780000000000001,12.57,12.39,12,N/A,N/A +2012,1,14,22,30,102860,101630,100430,44.39,0,3.02,3.14,3.15,3.16,3.15,3.15,3.14,3.13,3.1,207.98000000000002,208.48000000000002,208.83,209.16,209.52,209.85,210.24,210.61,211.53,14.15,13.790000000000001,13.6,13.41,13.21,13.030000000000001,12.83,12.64,12.26,N/A,N/A +2012,1,14,23,30,102840,101610,100420,43.85,0,3.2600000000000002,3.4,3.41,3.41,3.41,3.4,3.38,3.37,3.33,204.8,205.24,205.6,205.94,206.3,206.64000000000001,207.03,207.42000000000002,208.37,14.41,14.05,13.870000000000001,13.67,13.48,13.290000000000001,13.09,12.9,12.52,N/A,N/A +2012,1,15,0,30,102860,101630,100440,45.15,0,3.17,3.31,3.3200000000000003,3.33,3.33,3.3200000000000003,3.31,3.31,3.2800000000000002,206.29,206.83,207.18,207.52,207.85,208.16,208.51,208.85,209.66,14.6,14.25,14.07,13.88,13.68,13.5,13.290000000000001,13.11,12.72,N/A,N/A +2012,1,15,1,30,102870,101640,100440,45.83,0,3.31,3.48,3.52,3.5300000000000002,3.5500000000000003,3.56,3.56,3.56,3.5700000000000003,210.05,210.45000000000002,210.71,210.94,211.19,211.41,211.65,211.88,212.41,14.83,14.48,14.3,14.11,13.91,13.73,13.52,13.33,12.950000000000001,N/A,N/A +2012,1,15,2,30,102870,101640,100450,45.88,0,3.18,3.36,3.4,3.43,3.45,3.46,3.47,3.48,3.5,214.99,215.45000000000002,215.69,215.92000000000002,216.13,216.32,216.54,216.73000000000002,217.18,15.040000000000001,14.71,14.530000000000001,14.34,14.14,13.950000000000001,13.75,13.56,13.17,N/A,N/A +2012,1,15,3,30,102870,101650,100460,48.68,0,3.3200000000000003,3.49,3.5300000000000002,3.5500000000000003,3.56,3.58,3.58,3.59,3.59,212.98000000000002,213.28,213.45000000000002,213.6,213.75,213.87,214.01,214.14000000000001,214.42000000000002,15.18,14.85,14.67,14.48,14.280000000000001,14.09,13.89,13.700000000000001,13.31,N/A,N/A +2012,1,15,4,30,102870,101650,100460,52.56,0,3.6,3.8000000000000003,3.84,3.87,3.88,3.89,3.9,3.9,3.91,212.73000000000002,212.97,213.13,213.28,213.42000000000002,213.55,213.67000000000002,213.79,214.03,15.21,14.88,14.700000000000001,14.5,14.31,14.120000000000001,13.92,13.73,13.34,N/A,N/A +2012,1,15,5,30,102870,101640,100450,58.64,0,3.86,4.08,4.13,4.16,4.17,4.18,4.19,4.19,4.19,211.11,211.43,211.64000000000001,211.83,212.02,212.19,212.36,212.53,212.87,15.15,14.82,14.63,14.44,14.24,14.06,13.85,13.66,13.27,N/A,N/A +2012,1,15,6,30,102880,101660,100470,63.86,0,4,4.24,4.29,4.32,4.33,4.34,4.34,4.34,4.34,208.88,209.28,209.5,209.70000000000002,209.88,210.06,210.25,210.42000000000002,210.76,15.11,14.780000000000001,14.6,14.41,14.21,14.02,13.82,13.63,13.24,N/A,N/A +2012,1,15,7,30,102900,101670,100480,64.88,0,4.0200000000000005,4.25,4.3,4.33,4.34,4.3500000000000005,4.3500000000000005,4.36,4.36,206.69,207.09,207.3,207.49,207.67000000000002,207.83,208.02,208.18,208.53,15.1,14.76,14.58,14.39,14.19,14.01,13.8,13.620000000000001,13.22,N/A,N/A +2012,1,15,8,30,102880,101650,100460,66.73,0,3.8200000000000003,4.05,4.09,4.11,4.13,4.13,4.14,4.14,4.14,201.89000000000001,202.55,202.95000000000002,203.32,203.67000000000002,203.98000000000002,204.32,204.64000000000001,205.31,15.11,14.780000000000001,14.6,14.41,14.21,14.02,13.82,13.63,13.24,N/A,N/A +2012,1,15,9,30,102880,101650,100460,69.24,0,3.65,3.87,3.92,3.95,3.96,3.98,3.99,3.99,4,196.24,196.67000000000002,196.96,197.22,197.47,197.71,197.96,198.20000000000002,198.68,15.14,14.81,14.63,14.44,14.24,14.05,13.85,13.66,13.27,N/A,N/A +2012,1,15,10,30,102870,101650,100460,71.13,0,3.7800000000000002,4,4.04,4.07,4.07,4.08,4.08,4.08,4.08,185.92000000000002,186.62,187.03,187.41,187.78,188.11,188.47,188.79,189.48,15.14,14.82,14.63,14.44,14.24,14.06,13.85,13.66,13.27,N/A,N/A +2012,1,15,11,30,102870,101650,100460,70.95,0,3.89,4.13,4.18,4.2,4.21,4.22,4.23,4.23,4.23,177.37,177.9,178.22,178.5,178.76,179,179.24,179.46,179.89000000000001,15.19,14.86,14.68,14.49,14.290000000000001,14.11,13.9,13.71,13.32,N/A,N/A +2012,1,15,12,30,102880,101660,100470,71.2,0,3.86,4.12,4.18,4.22,4.25,4.28,4.3,4.32,4.3500000000000005,170.26,170.53,170.74,170.93,171.11,171.27,171.44,171.6,171.94,15.290000000000001,14.96,14.790000000000001,14.59,14.39,14.21,14.01,13.82,13.43,N/A,N/A +2012,1,15,13,30,102890,101660,100470,73.53,0,4.25,4.55,4.63,4.67,4.7,4.73,4.75,4.76,4.79,156.1,156.55,156.86,157.14000000000001,157.41,157.65,157.92000000000002,158.16,158.66,15.35,15.030000000000001,14.85,14.65,14.450000000000001,14.27,14.07,13.88,13.49,N/A,N/A +2012,1,15,14,30,102910,101680,100500,75.61,0,4.7700000000000005,5.15,5.25,5.3100000000000005,5.3500000000000005,5.39,5.41,5.44,5.48,154.26,154.77,155.1,155.41,155.71,155.97,156.25,156.5,157.03,15.55,15.24,15.06,14.86,14.67,14.49,14.280000000000001,14.09,13.71,N/A,N/A +2012,1,15,15,30,102900,101680,100490,78.63,0,5.09,5.54,5.66,5.74,5.8,5.8500000000000005,5.88,5.92,5.98,146.27,146.95000000000002,147.38,147.77,148.14000000000001,148.48,148.85,149.18,149.89000000000001,15.780000000000001,15.48,15.3,15.11,14.92,14.74,14.540000000000001,14.35,13.96,N/A,N/A +2012,1,15,16,30,102880,101660,100470,80.11,0,5.48,6.0200000000000005,6.18,6.28,6.3500000000000005,6.41,6.47,6.51,6.59,146.05,146.55,146.85,147.13,147.4,147.63,147.88,148.1,148.56,16.1,15.82,15.65,15.46,15.27,15.09,14.89,14.700000000000001,14.31,N/A,N/A +2012,1,15,17,30,102850,101630,100450,79.93,0,5.82,6.390000000000001,6.54,6.63,6.7,6.74,6.78,6.8,6.83,147.73,148.20000000000002,148.51,148.8,149.09,149.34,149.61,149.86,150.41,16.39,16.13,15.97,15.790000000000001,15.6,15.42,15.22,15.040000000000001,14.66,N/A,N/A +2012,1,15,18,30,102820,101610,100430,79.83,0,5.55,6.16,6.34,6.48,6.59,6.7,6.8100000000000005,6.91,7.09,146.14000000000001,146.37,146.57,146.79,147.01,147.22,147.59,147.97,149.05,16.59,16.37,16.22,16.03,15.860000000000001,15.700000000000001,15.51,15.34,14.97,N/A,N/A +2012,1,15,19,30,102790,101580,100400,79.56,0,5.54,6.25,6.5200000000000005,6.74,6.93,7.1000000000000005,7.25,7.390000000000001,7.61,142.57,142.74,143.02,143.46,144,144.56,145.27,145.96,147.57,16.77,16.56,16.43,16.26,16.1,15.94,15.76,15.59,15.23,N/A,N/A +2012,1,15,20,30,102740,101520,100350,81.72,0,5.92,6.67,6.93,7.140000000000001,7.3100000000000005,7.45,7.57,7.68,7.88,138.94,139.63,140.17000000000002,140.8,141.46,142.11,142.85,143.54,145,16.830000000000002,16.64,16.51,16.35,16.19,16.03,15.860000000000001,15.700000000000001,15.36,N/A,N/A +2012,1,15,21,30,102670,101460,100290,83.44,0,5.93,6.84,7.17,7.46,7.71,7.930000000000001,8.13,8.32,8.68,136.73,137.62,138.31,139.14000000000001,140.04,140.94,141.96,142.92000000000002,144.94,16.89,16.740000000000002,16.63,16.5,16.36,16.22,16.080000000000002,15.94,15.64,N/A,N/A +2012,1,15,22,30,102610,101390,100220,85.08,0,6.390000000000001,7.44,7.86,8.26,8.61,8.94,9.23,9.5,9.92,135.75,136.53,137.14000000000001,137.92000000000002,138.78,139.67000000000002,140.65,141.57,143.47,16.92,16.8,16.7,16.59,16.48,16.37,16.240000000000002,16.12,15.860000000000001,N/A,N/A +2012,1,15,23,30,102570,101360,100190,87.21000000000001,0,6.3,7.42,7.9,8.34,8.76,9.15,9.540000000000001,9.89,10.52,139.51,140.46,141.21,142.13,143.14000000000001,144.16,145.31,146.4,148.48,17.06,16.98,16.91,16.81,16.72,16.63,16.53,16.44,16.23,N/A,N/A +2012,1,16,0,30,102560,101350,100180,87.23,0,6.8500000000000005,8.15,8.68,9.18,9.63,10.03,10.43,10.8,11.53,144.91,145.37,145.8,146.41,147.17000000000002,147.98,149.12,150.25,152.92000000000002,17.31,17.29,17.240000000000002,17.16,17.09,17.01,16.93,16.85,16.67,N/A,N/A +2012,1,16,1,30,102510,101300,100130,87.76,0,7.08,8.59,9.26,9.91,10.49,11.02,11.48,11.89,12.56,151.89000000000001,152.71,153.33,154.03,154.78,155.53,156.28,156.95000000000002,157.91,17.48,17.52,17.51,17.490000000000002,17.46,17.43,17.37,17.31,17.11,N/A,N/A +2012,1,16,2,30,102500,101300,100130,89.29,0,6.49,8.040000000000001,8.74,9.44,10.08,10.69,11.24,11.73,12.41,153.66,154.54,155.22,156.07,156.88,157.68,158.36,158.98,159.82,17.57,17.650000000000002,17.650000000000002,17.650000000000002,17.63,17.61,17.57,17.53,17.34,N/A,N/A +2012,1,16,3,30,102470,101270,100100,89.9,0,6.41,8,8.73,9.47,10.13,10.75,11.31,11.82,12.74,152.6,154.02,155.02,156.15,157.13,158,158.66,159.23,159.99,17.62,17.73,17.75,17.76,17.75,17.740000000000002,17.69,17.64,17.490000000000002,N/A,N/A +2012,1,16,4,30,102450,101250,100090,90.86,0,6.73,8.44,9.24,10.03,10.75,11.41,12,12.530000000000001,13.4,160.56,161.11,161.55,162.12,162.71,163.31,163.87,164.37,165.37,17.69,17.830000000000002,17.87,17.900000000000002,17.92,17.92,17.89,17.86,17.7,N/A,N/A +2012,1,16,5,30,102440,101230,100070,90.89,0,7.15,8.94,9.77,10.61,11.370000000000001,12.08,12.75,13.38,14.36,161.52,162.56,163.31,164.18,164.99,165.76,166.4,166.95000000000002,167.52,17.84,18.01,18.06,18.1,18.13,18.14,18.14,18.14,18.04,N/A,N/A +2012,1,16,6,30,102430,101230,100070,91.64,0,6.6000000000000005,8.42,9.28,10.16,10.950000000000001,11.69,12.290000000000001,12.81,13.56,164.94,165.59,166.1,166.65,167.21,167.77,168.3,168.79,169.86,17.79,17.990000000000002,18.07,18.14,18.2,18.25,18.27,18.27,18.13,N/A,N/A +2012,1,16,7,30,102430,101230,100070,92.11,0,6.33,8.15,9.05,9.97,10.8,11.57,12.27,12.92,14.08,162.03,163.36,164.41,165.73,166.94,168.07,169.01,169.86,171.07,17.69,17.96,18.080000000000002,18.2,18.29,18.36,18.37,18.37,18.3,N/A,N/A +2012,1,16,8,30,102400,101190,100040,92.28,0,6.13,7.9,8.77,9.700000000000001,10.540000000000001,11.33,12.08,12.780000000000001,13.73,161.34,162.56,163.64000000000001,165.11,166.76,168.52,170.03,171.36,172.56,17.66,17.92,18.05,18.19,18.34,18.48,18.55,18.6,18.490000000000002,N/A,N/A +2012,1,16,9,30,102370,101170,100010,92.41,0,5.96,7.83,8.77,9.78,10.69,11.540000000000001,12.290000000000001,12.97,14.11,160.62,162.48,164,165.97,167.88,169.75,171.47,173.05,175.34,17.63,17.95,18.11,18.3,18.45,18.580000000000002,18.64,18.67,18.68,N/A,N/A +2012,1,16,10,30,102340,101140,99980,92.46000000000001,0,6.04,7.890000000000001,8.84,9.9,10.97,12.040000000000001,12.97,13.790000000000001,14.23,159.48,161.08,162.47,164.33,166.33,168.41,171.08,173.65,175.72,17.63,17.92,18.07,18.26,18.48,18.7,18.88,19.02,18.94,N/A,N/A +2012,1,16,11,30,102310,101110,99960,92.03,0,6.36,8.26,9.16,10.11,11.07,12.030000000000001,12.98,13.870000000000001,15.08,157.37,159.28,160.71,162.3,163.88,165.44,167.1,168.71,172.08,17.72,18.03,18.18,18.32,18.48,18.650000000000002,18.79,18.900000000000002,18.88,N/A,N/A +2012,1,16,12,30,102310,101110,99950,91.18,0,7.13,9.19,10.200000000000001,11.24,12.21,13.120000000000001,13.93,14.65,15.530000000000001,160.76,162.04,162.98,164.08,165.29,166.57,168.11,169.61,172.92000000000002,17.91,18.22,18.36,18.5,18.62,18.73,18.82,18.900000000000002,18.89,N/A,N/A +2012,1,16,13,30,102290,101090,99940,90.98,0,7.54,9.56,10.5,11.450000000000001,12.31,13.11,13.85,14.52,15.44,161.09,162.18,163.12,164.47,165.97,167.55,169.18,170.71,173.68,17.95,18.26,18.41,18.57,18.71,18.84,18.94,19.01,18.97,N/A,N/A +2012,1,16,14,30,102300,101100,99940,91.9,0,6.84,8.790000000000001,9.72,10.73,11.69,12.620000000000001,13.48,14.26,15.35,158.75,160.68,162.21,164.20000000000002,165.95000000000002,167.56,168.99,170.32,173.46,17.79,18.06,18.21,18.39,18.56,18.71,18.830000000000002,18.92,18.93,N/A,N/A +2012,1,16,15,30,102290,101090,99930,91.22,0,7.22,9.17,10.07,10.97,11.82,12.620000000000001,13.370000000000001,14.06,15.32,162.32,163.49,164.43,165.56,166.81,168.11,169.5,170.83,173.5,17.97,18.240000000000002,18.34,18.44,18.54,18.64,18.73,18.8,18.85,N/A,N/A +2012,1,16,16,30,102270,101070,99920,91.28,0,7.3100000000000005,9.3,10.24,11.200000000000001,12.08,12.92,13.700000000000001,14.42,15.73,165.07,166.22,167.16,168.43,169.73,171.07,172.31,173.46,175.70000000000002,18.01,18.31,18.45,18.6,18.73,18.85,18.91,18.96,18.97,N/A,N/A +2012,1,16,17,30,102230,101030,99880,92.17,0,6.76,8.5,9.290000000000001,10.120000000000001,10.950000000000001,11.78,12.67,13.530000000000001,15.06,162.26,164.18,165.71,167.67000000000002,169.49,171.23,172.70000000000002,174.03,176.09,17.89,18.09,18.16,18.22,18.3,18.38,18.48,18.57,18.66,N/A,N/A +2012,1,16,18,30,102190,101000,99840,91.24,0,7.1000000000000005,9.02,9.92,10.82,11.66,12.48,13.280000000000001,14.040000000000001,15.36,168.36,169.36,170.22,171.34,172.45000000000002,173.56,174.57,175.5,177.12,18.12,18.400000000000002,18.52,18.62,18.72,18.8,18.87,18.92,18.92,N/A,N/A +2012,1,16,19,30,102150,100960,99810,90.46000000000001,0,7.38,9.450000000000001,10.43,11.44,12.41,13.35,14.3,15.19,16.48,170.85,171.8,172.47,173.27,174.06,174.84,175.58,176.28,177.82,18.25,18.54,18.67,18.79,18.92,19.04,19.16,19.26,19.32,N/A,N/A +2012,1,16,20,30,102110,100910,99760,90.72,0,6.97,8.98,9.93,10.870000000000001,11.700000000000001,12.450000000000001,13.07,13.63,14.73,166.89000000000001,167.56,168.24,169.20000000000002,170.25,171.36,172.58,173.74,176.51,18.16,18.490000000000002,18.62,18.73,18.830000000000002,18.900000000000002,18.91,18.91,18.84,N/A,N/A +2012,1,16,21,30,102050,100860,99700,90.87,0,6.7700000000000005,8.77,9.75,10.76,11.700000000000001,12.61,13.43,14.18,15.42,170.39000000000001,171.62,172.61,173.76,174.89000000000001,175.99,177.18,178.31,180.64000000000001,18.080000000000002,18.36,18.5,18.650000000000002,18.79,18.92,19.01,19.09,19.11,N/A,N/A +2012,1,16,22,30,102010,100820,99660,90.71000000000001,0,7.2700000000000005,9.31,10.24,11.17,12.01,12.790000000000001,13.540000000000001,14.24,15.56,167.44,168.52,169.41,170.58,171.86,173.19,174.58,175.9,178.65,18.07,18.400000000000002,18.55,18.71,18.81,18.89,18.94,18.990000000000002,19.02,N/A,N/A +2012,1,16,23,30,101970,100770,99620,91.44,0,7.78,9.84,10.81,11.870000000000001,12.82,13.71,14.49,15.19,16.240000000000002,167.78,169.06,170.06,171.38,172.72,174.08,175.46,176.76,179.34,17.89,18.1,18.27,18.63,18.87,19.03,19.12,19.19,19.150000000000002,N/A,N/A +2012,1,17,0,30,101950,100750,99600,91.66,0,7.57,9.53,10.49,11.48,12.46,13.47,14.48,15.44,16.96,165.65,167.01,168.08,169.49,170.95000000000002,172.49,174.02,175.47,178.39000000000001,17.82,17.89,17.94,18.1,18.31,18.57,18.79,18.98,19.2,N/A,N/A +2012,1,17,1,30,101910,100720,99570,91.10000000000001,0,8.620000000000001,10.65,11.620000000000001,12.620000000000001,13.540000000000001,14.4,15.200000000000001,15.91,17.06,169.07,170.05,170.8,171.81,172.88,173.97,175.13,176.23,178.22,17.92,18,18.05,18.21,18.400000000000002,18.62,18.75,18.85,18.81,N/A,N/A +2012,1,17,2,30,101910,100720,99560,91.11,0,8.32,10.35,11.33,12.39,13.33,14.200000000000001,14.94,15.6,16.64,167.79,168.52,169.19,170.23,171.29,172.4,173.62,174.78,179.14000000000001,17.94,18.07,18.16,18.41,18.61,18.8,18.91,18.990000000000002,19.2,N/A,N/A +2012,1,17,3,30,101890,100700,99540,91.25,0,7.28,9.32,10.290000000000001,11.33,12.32,13.27,14.16,14.97,16.12,161.97,164.12,165.78,167.83,169.74,171.57,173.22,174.73,177.23,17.93,18.03,18.04,18.04,18.16,18.35,18.54,18.72,18.81,N/A,N/A +2012,1,17,4,30,101880,100680,99530,91.14,0,7.5200000000000005,9.5,10.46,11.47,12.41,13.290000000000001,14.21,15.09,16.48,168.98,170.34,171.33,172.53,173.72,174.89000000000001,176.14000000000001,177.35,179.27,17.93,18.03,18.01,17.96,18.03,18.14,18.36,18.580000000000002,18.71,N/A,N/A +2012,1,17,5,30,101850,100660,99510,90.33,0,8.69,10.82,11.82,12.82,13.75,14.63,15.46,16.23,17.490000000000002,172.89000000000001,173.77,174.5,175.42000000000002,176.34,177.29,178.28,179.21,181.02,18.12,18.3,18.39,18.56,18.71,18.830000000000002,18.900000000000002,18.94,18.990000000000002,N/A,N/A +2012,1,17,6,30,101840,100650,99490,92.08,0,8.8,10.72,11.6,12.52,13.38,14.21,15.040000000000001,15.84,17.19,176.36,176.91,177.37,177.95000000000002,178.51,179.06,179.62,180.14000000000001,181.20000000000002,18.29,18.36,18.35,18.34,18.39,18.490000000000002,18.650000000000002,18.82,18.89,N/A,N/A +2012,1,17,7,30,101840,100650,99500,91.11,0,8.56,10.57,11.46,12.34,13.16,13.93,14.67,15.370000000000001,16.62,181.3,181.57,181.8,182.09,182.42000000000002,182.77,183.20000000000002,183.63,184.59,18.52,18.740000000000002,18.8,18.84,18.86,18.87,18.87,18.86,18.79,N/A,N/A +2012,1,17,8,30,101820,100630,99490,90.33,0,7.82,9.93,10.93,11.870000000000001,12.68,13.41,14.06,14.63,15.610000000000001,181.73,182.89000000000001,183.74,184.57,185.3,185.95000000000002,186.53,187.05,187.88,18.69,18.98,19.080000000000002,19.14,19.17,19.18,19.150000000000002,19.11,18.94,N/A,N/A +2012,1,17,9,30,101820,100630,99480,90.38,0,6.2,8.28,9.290000000000001,10.28,11.19,12.030000000000001,12.81,13.540000000000001,14.85,178.53,179.87,180.84,181.76,182.61,183.4,184.15,184.85,186.22,18.740000000000002,18.96,19.01,19.04,19.06,19.07,19.06,19.04,18.97,N/A,N/A +2012,1,17,10,30,101830,100640,99490,91.02,0,6,7.99,8.98,9.950000000000001,10.82,11.63,12.38,13.07,14.36,181.36,182.59,183.51,184.43,185.27,186.06,186.83,187.56,189.20000000000002,18.59,18.79,18.84,18.85,18.900000000000002,18.96,19.01,19.06,19.03,N/A,N/A +2012,1,17,11,30,101830,100650,99500,90.3,0,6.71,8.84,9.81,10.76,11.6,12.36,13.09,13.77,15.44,183.94,185.42000000000002,186.47,187.69,188.81,189.84,190.79,191.66,194.15,18.76,19.03,19.12,19.21,19.27,19.31,19.330000000000002,19.35,19.330000000000002,N/A,N/A +2012,1,17,12,30,101860,100670,99530,90.10000000000001,0,6.01,8.21,9.290000000000001,10.32,11.22,12.05,12.84,13.59,15,185.45000000000002,187,188.26,190,191.89000000000001,193.95000000000002,196.25,198.52,202.78,18.830000000000002,19.2,19.330000000000002,19.42,19.51,19.59,19.64,19.66,19.61,N/A,N/A +2012,1,17,13,30,101830,100640,99500,89.47,0,6.8,9.05,10.16,11.31,12.36,13.370000000000001,14.36,15.31,16.65,179.96,182.89000000000001,185.17000000000002,187.85,190.13,192.16,193.92000000000002,195.52,197.95000000000002,18.95,19.31,19.47,19.71,19.93,20.16,20.26,20.31,20.28,N/A,N/A +2012,1,17,14,30,101890,100700,99550,90.15,0,5.8100000000000005,7.8100000000000005,8.77,9.71,10.61,11.49,12.41,13.3,14.91,178.02,181.15,183.59,186.37,188.9,191.34,193.4,195.27,198.33,18.830000000000002,19.1,19.17,19.26,19.36,19.45,19.57,19.69,19.77,N/A,N/A +2012,1,17,15,30,101970,100780,99640,93.55,0,2.5,4.62,5.98,7.8500000000000005,9.19,9.99,10.64,11.22,12.21,165.84,176.79,185.22,192.9,197.84,200.09,201.8,203.25,205.83,18.45,18.97,19.21,19.52,19.79,20.02,20.18,20.3,20.31,N/A,N/A +2012,1,17,16,30,101950,100770,99620,91.42,0,4.96,7.4,8.84,10.43,11.450000000000001,11.97,12.31,12.57,13.06,174.73,186.02,194.03,200.06,203.64000000000001,205.02,205.88,206.52,207.96,18.650000000000002,19.23,19.580000000000002,20.05,20.34,20.490000000000002,20.51,20.48,20.330000000000002,N/A,N/A +2012,1,17,17,30,101960,100770,99620,92.11,0,3.96,6.25,7.5,8.81,9.9,10.81,11.34,11.72,12.280000000000001,179.6,190.37,197.86,203.03,206.46,208.47,209.63,210.43,211.79,18.650000000000002,19.07,19.26,19.51,19.77,20.04,20.16,20.23,20.16,N/A,N/A +2012,1,17,18,30,101950,100760,99620,92.61,4.800000000000001,3.86,5.78,6.76,7.79,8.45,8.76,9.05,9.32,9.8,184.36,197.06,206.15,213.21,217.25,218.37,219.12,219.71,220.35,18.59,19.13,19.400000000000002,19.71,19.88,19.94,19.96,19.97,19.900000000000002,N/A,N/A +2012,1,17,19,30,101910,100720,99580,92.4,0,4.29,5.88,6.62,7.5200000000000005,8.11,8.44,8.8,9.15,9.82,187.53,199.44,208.38,217.17000000000002,222.28,224.43,226.36,228.11,230.78,18.61,19.240000000000002,19.56,19.86,20.05,20.16,20.240000000000002,20.31,20.36,N/A,N/A +2012,1,17,20,30,101870,100690,99550,91.7,2.6,4.38,6.78,7.890000000000001,8.48,8.81,8.950000000000001,9.13,9.31,9.66,206.85,216.24,222.43,226.22,228.65,230.03,230.86,231.45000000000002,231.34,18.8,19.44,19.84,20.47,20.79,20.89,20.91,20.900000000000002,20.77,N/A,N/A +2012,1,17,21,30,101860,100670,99530,90.68,0,5.05,6.890000000000001,7.62,8.1,8.42,8.61,8.790000000000001,8.96,9.23,200.23000000000002,209.19,215.66,221.31,224.87,226.89000000000001,228.21,229.24,230.66,18.900000000000002,19.13,19.400000000000002,20.19,20.63,20.830000000000002,20.86,20.84,20.64,N/A,N/A +2012,1,17,22,30,101870,100680,99540,90.99,0,5.29,7.140000000000001,7.82,8.06,8.21,8.3,8.45,8.61,8.92,207.94,215.72,221.12,226.17000000000002,229.42000000000002,231.39000000000001,232.71,233.73000000000002,234.49,18.72,18.82,19.11,20.22,20.78,20.96,20.97,20.92,20.73,N/A,N/A +2012,1,17,23,30,101880,100690,99550,91.51,0.4,5.33,7.1000000000000005,7.82,8.27,8.48,8.52,8.540000000000001,8.55,8.8,202.62,211.42000000000002,217.87,224.39000000000001,228.16,229.85,230.21,230.13,229.06,18.54,18.580000000000002,18.830000000000002,19.900000000000002,20.72,21.37,21.39,21.2,20.900000000000002,N/A,N/A +2012,1,18,0,30,101980,100780,99630,92.59,0.4,3.2800000000000002,4.68,5.08,5.61,6.1000000000000005,6.5600000000000005,6.94,7.2700000000000005,7.72,287.94,279.25,273.84000000000003,271.65,271.17,271.96,272.86,273.76,273.85,18.68,18.62,18.45,18.330000000000002,18.28,18.27,18.29,18.330000000000002,18.42,N/A,N/A +2012,1,18,1,30,102010,100820,99660,92.23,4.4,6.3,7.8,8.09,7.88,7.79,7.76,7.68,7.61,7.44,335.8,338.24,339.83,341.62,342.97,344.05,345.03000000000003,345.90000000000003,348.51,18.330000000000002,18.7,18.8,18.78,18.71,18.61,18.490000000000002,18.37,18.150000000000002,N/A,N/A +2012,1,18,2,30,102090,100900,99730,92.78,3.7,5.87,7.65,8.48,9.15,9.620000000000001,9.950000000000001,10.120000000000001,10.24,10.38,12.17,17.490000000000002,20.900000000000002,23.41,24.6,24.810000000000002,24.2,23.46,21.35,18.18,18.47,18.5,18.330000000000002,18.17,18.01,17.88,17.75,17.54,N/A,N/A +2012,1,18,3,30,102150,100950,99780,88.95,14.3,8.52,10.05,10.72,11.31,11.790000000000001,12.19,12.4,12.51,11.91,0.47000000000000003,0.1,359.92,359.91,0.05,0.3,1.12,2.0300000000000002,5.25,17.31,17.12,16.97,16.78,16.59,16.38,16.18,16,15.74,N/A,N/A +2012,1,18,4,30,102220,101000,99820,67.98,0,13.59,14.94,15.280000000000001,15.450000000000001,15.540000000000001,15.6,15.620000000000001,15.63,15.65,15.8,15.97,16.11,16.27,16.45,16.62,16.85,17.09,17.72,15.530000000000001,15.14,14.950000000000001,14.75,14.56,14.38,14.18,14,13.620000000000001,N/A,N/A +2012,1,18,5,30,102280,101050,99870,69.41,0,12.38,13.57,13.88,14.05,14.16,14.24,14.280000000000001,14.32,14.370000000000001,20.81,21.11,21.3,21.490000000000002,21.68,21.85,22.04,22.22,22.62,14.57,14.11,13.9,13.69,13.48,13.290000000000001,13.08,12.9,12.51,N/A,N/A +2012,1,18,6,30,102330,101100,99910,68.65,0,13.32,14.61,14.94,15.120000000000001,15.24,15.32,15.370000000000001,15.41,15.450000000000001,26.75,27.02,27.19,27.36,27.52,27.68,27.86,28.03,28.43,13.48,12.91,12.68,12.47,12.25,12.06,11.85,11.66,11.28,N/A,N/A +2012,1,18,7,30,102390,101160,99960,70.46000000000001,0,12.780000000000001,13.94,14.24,14.4,14.49,14.55,14.58,14.61,14.620000000000001,29.7,30.04,30.26,30.47,30.66,30.85,31.05,31.25,31.67,12.700000000000001,12.1,11.85,11.63,11.42,11.22,11.02,10.83,10.44,N/A,N/A +2012,1,18,8,30,102410,101180,99980,71.5,0,12.75,13.88,14.16,14.31,14.39,14.44,14.47,14.48,14.47,31.86,32.17,32.37,32.56,32.75,32.92,33.12,33.3,33.7,12.05,11.4,11.16,10.93,10.71,10.52,10.31,10.120000000000001,9.74,N/A,N/A +2012,1,18,9,30,102440,101210,100000,72.12,0,12.41,13.47,13.73,13.86,13.93,13.97,13.99,14,13.98,34.72,35.04,35.25,35.44,35.64,35.81,36,36.18,36.59,11.52,10.84,10.59,10.370000000000001,10.15,9.96,9.75,9.56,9.17,N/A,N/A +2012,1,18,10,30,102450,101220,100010,73.07000000000001,0,11.91,12.9,13.14,13.25,13.32,13.35,13.370000000000001,13.370000000000001,13.35,38.07,38.410000000000004,38.63,38.83,39.04,39.230000000000004,39.44,39.63,40.06,11.15,10.47,10.22,9.99,9.77,9.58,9.370000000000001,9.18,8.8,N/A,N/A +2012,1,18,11,30,102490,101250,100050,74.56,0,11.450000000000001,12.36,12.58,12.68,12.74,12.77,12.780000000000001,12.780000000000001,12.76,41.08,41.5,41.78,42.03,42.29,42.52,42.78,43.03,43.56,10.97,10.290000000000001,10.040000000000001,9.82,9.6,9.41,9.200000000000001,9.01,8.63,N/A,N/A +2012,1,18,12,30,102520,101280,100070,75.31,0,11.06,11.94,12.16,12.280000000000001,12.34,12.39,12.41,12.42,12.42,45.03,45.46,45.730000000000004,45.980000000000004,46.230000000000004,46.44,46.68,46.9,47.35,11.120000000000001,10.46,10.21,9.99,9.77,9.58,9.370000000000001,9.18,8.8,N/A,N/A +2012,1,18,13,30,102530,101290,100090,72.55,0,11.01,11.86,12.07,12.16,12.21,12.24,12.24,12.24,12.21,50.7,50.86,50.95,51.03,51.120000000000005,51.19,51.28,51.36,51.53,11.03,10.36,10.11,9.88,9.67,9.47,9.26,9.07,8.69,N/A,N/A +2012,1,18,14,30,102550,101310,100100,74.41,0,9.85,10.540000000000001,10.700000000000001,10.77,10.8,10.82,10.81,10.8,10.76,54.04,54.31,54.480000000000004,54.65,54.81,54.96,55.13,55.28,55.65,10.91,10.26,10.01,9.790000000000001,9.58,9.39,9.18,8.99,8.6,N/A,N/A +2012,1,18,15,30,102540,101300,100100,76.31,0,8.99,9.6,9.74,9.81,9.84,9.86,9.86,9.85,9.83,55.92,56.27,56.5,56.72,56.93,57.120000000000005,57.34,57.54,57.99,11.1,10.49,10.26,10.040000000000001,9.83,9.63,9.43,9.24,8.85,N/A,N/A +2012,1,18,16,30,102520,101280,100080,75.35000000000001,0,8.22,8.74,8.870000000000001,8.92,8.94,8.96,8.950000000000001,8.950000000000001,8.92,59.160000000000004,59.5,59.730000000000004,59.95,60.17,60.36,60.57,60.77,61.21,11.5,10.92,10.69,10.47,10.26,10.07,9.870000000000001,9.68,9.290000000000001,N/A,N/A +2012,1,18,17,30,102480,101240,100040,75.33,0,7.19,7.6000000000000005,7.68,7.71,7.72,7.72,7.7,7.69,7.640000000000001,52.96,53.36,53.65,53.93,54.2,54.45,54.730000000000004,54.99,55.58,11.620000000000001,11.08,10.86,10.64,10.44,10.25,10.040000000000001,9.85,9.47,N/A,N/A +2012,1,18,18,30,102450,101210,100010,72.43,0,5.73,6.01,6.05,6.0600000000000005,6.0600000000000005,6.05,6.03,6.0200000000000005,5.97,53,53.46,53.78,54.09,54.39,54.68,55,55.31,56,11.81,11.3,11.09,10.88,10.68,10.49,10.290000000000001,10.1,9.72,N/A,N/A +2012,1,18,19,30,102420,101190,99990,69.98,0,4.55,4.74,4.7700000000000005,4.78,4.7700000000000005,4.7700000000000005,4.75,4.74,4.71,44.28,44.79,45.17,45.52,45.87,46.19,46.56,46.910000000000004,47.71,12.030000000000001,11.56,11.35,11.14,10.94,10.76,10.55,10.370000000000001,9.98,N/A,N/A +2012,1,18,20,30,102360,101120,99930,67.7,0,3.12,3.23,3.23,3.23,3.21,3.2,3.19,3.17,3.14,41.58,42.08,42.49,42.89,43.29,43.67,44.13,44.57,45.68,12.32,11.89,11.68,11.48,11.28,11.1,10.9,10.71,10.33,N/A,N/A +2012,1,18,21,30,102320,101100,99900,59.82,0,3.67,3.84,3.87,3.89,3.9,3.9,3.91,3.91,3.91,39.6,39.45,39.32,39.2,39.09,39,38.89,38.79,38.59,12.94,12.51,12.31,12.11,11.91,11.72,11.52,11.34,10.950000000000001,N/A,N/A +2012,1,18,22,30,102260,101030,99840,61.01,0,2.17,2.25,2.25,2.25,2.25,2.24,2.24,2.24,2.23,32.67,33,33.34,33.67,34,34.300000000000004,34.64,34.97,35.730000000000004,13.19,12.790000000000001,12.6,12.4,12.200000000000001,12.02,11.82,11.63,11.25,N/A,N/A +2012,1,18,23,30,102230,101000,99810,61.54,0,0.12,0.13,0.14,0.15,0.15,0.16,0.16,0.16,0.17,104.14,119.48,119.69,119.89,119.9,119.83,119.85000000000001,119.69,117.73,13.42,13.040000000000001,12.85,12.65,12.46,12.27,12.07,11.89,11.5,N/A,N/A +2012,1,19,0,30,102250,101030,99840,63.870000000000005,0,2.91,3.0100000000000002,3.02,3.0100000000000002,3.0100000000000002,3,2.99,2.98,2.96,31.36,31.43,31.48,31.52,31.55,31.580000000000002,31.62,31.66,31.75,13.69,13.3,13.11,12.9,12.71,12.52,12.32,12.13,11.74,N/A,N/A +2012,1,19,1,30,102200,100980,99790,64.14,0,1.67,1.74,1.75,1.75,1.75,1.75,1.76,1.76,1.76,79.91,79.44,79.85000000000001,80.2,80.53,80.82000000000001,81.14,81.44,82.14,13.88,13.5,13.32,13.120000000000001,12.92,12.74,12.540000000000001,12.35,11.96,N/A,N/A +2012,1,19,2,30,102160,100940,99750,64.45,0,1.79,1.85,1.86,1.86,1.86,1.86,1.86,1.85,1.85,91.82000000000001,92.78,93.29,93.8,94.3,94.77,95.35000000000001,95.9,97.3,14.05,13.68,13.5,13.3,13.1,12.92,12.72,12.530000000000001,12.15,N/A,N/A +2012,1,19,3,30,102120,100900,99710,63.33,0,2.58,2.69,2.71,2.72,2.73,2.73,2.74,2.75,2.7600000000000002,127.43,127.85000000000001,128.07,128.3,128.54,128.76,129.04,129.3,129.97,14.35,13.98,13.8,13.6,13.41,13.22,13.02,12.83,12.450000000000001,N/A,N/A +2012,1,19,4,30,102090,100870,99690,62.47,0,2.88,3,3.02,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.02,117.73,118.21000000000001,118.54,118.86,119.18,119.48,119.8,120.12,120.88,14.67,14.3,14.120000000000001,13.92,13.72,13.540000000000001,13.33,13.15,12.76,N/A,N/A +2012,1,19,5,30,102040,100820,99640,68.93,0,3,3.13,3.15,3.16,3.16,3.16,3.16,3.16,3.16,144.71,145.28,145.63,145.98,146.35,146.70000000000002,147.16,147.61,148.89000000000001,14.77,14.41,14.22,14.030000000000001,13.83,13.65,13.450000000000001,13.26,12.88,N/A,N/A +2012,1,19,6,30,102020,100810,99630,73.52,0,3.39,3.56,3.59,3.6,3.6,3.61,3.61,3.61,3.62,155.68,156.18,156.49,156.8,157.13,157.44,157.81,158.17000000000002,159.08,14.950000000000001,14.59,14.4,14.200000000000001,14.01,13.82,13.620000000000001,13.44,13.05,N/A,N/A +2012,1,19,7,30,101980,100770,99590,77.21000000000001,0,3.65,3.85,3.9,3.92,3.94,3.96,3.97,3.98,4.01,165.96,166.3,166.5,166.72,166.94,167.16,167.44,167.71,168.46,15.19,14.84,14.65,14.46,14.26,14.08,13.88,13.69,13.3,N/A,N/A +2012,1,19,8,30,101950,100740,99560,80.67,0,4.1,4.34,4.39,4.43,4.44,4.46,4.47,4.48,4.5,170.54,170.72,170.8,170.9,171.01,171.1,171.22,171.34,171.62,15.5,15.15,14.97,14.77,14.57,14.39,14.19,14,13.61,N/A,N/A +2012,1,19,9,30,101900,100690,99520,83.86,0,4.25,4.53,4.6000000000000005,4.64,4.67,4.69,4.71,4.73,4.78,177.78,177.91,177.99,178.08,178.18,178.28,178.41,178.54,178.95000000000002,15.790000000000001,15.450000000000001,15.27,15.07,14.88,14.69,14.49,14.31,13.92,N/A,N/A +2012,1,19,10,30,101880,100670,99500,86.57000000000001,0,4.7700000000000005,5.09,5.17,5.21,5.23,5.25,5.26,5.28,5.33,176.53,176.79,176.98,177.18,177.41,177.63,177.92000000000002,178.23,179.24,16.11,15.780000000000001,15.610000000000001,15.41,15.22,15.030000000000001,14.83,14.65,14.27,N/A,N/A +2012,1,19,11,30,101860,100650,99480,88.78,0,5.25,5.67,5.78,5.84,5.89,5.92,5.95,5.98,6.04,183.08,183.32,183.46,183.59,183.72,183.85,184,184.14000000000001,184.48,16.490000000000002,16.18,16.01,15.81,15.620000000000001,15.43,15.24,15.05,14.67,N/A,N/A +2012,1,19,12,30,101850,100640,99480,88.7,0,7.57,7.96,7.95,7.8500000000000005,7.74,7.640000000000001,7.54,7.46,7.3500000000000005,218.48000000000002,217.77,217.17000000000002,216.46,215.65,214.83,213.77,212.77,210.56,16.76,16.46,16.28,16.09,15.9,15.72,15.540000000000001,15.36,14.99,N/A,N/A +2012,1,19,13,30,101810,100620,99450,90.24,0,5.08,5.9,6.2,6.44,6.63,6.78,6.92,7.03,7.21,221.04,222.73000000000002,223.67000000000002,224.46,224.92000000000002,225.18,224.97,224.68,223.23000000000002,17.43,17.240000000000002,17.11,16.96,16.81,16.67,16.52,16.37,16.05,N/A,N/A +2012,1,19,14,30,101810,100610,99450,90.53,0,4.28,5.01,5.3100000000000005,5.58,5.84,6.07,6.32,6.5600000000000005,7.08,200.46,199.97,199.66,199.21,198.84,198.52,198.55,198.69,200.17000000000002,17.42,17.240000000000002,17.12,16.98,16.84,16.71,16.580000000000002,16.47,16.23,N/A,N/A +2012,1,19,15,30,101800,100600,99440,92.33,0,3.0100000000000002,3.81,4.21,4.69,5.25,5.87,6.43,6.96,7.82,194.16,197.53,200.11,203.27,205.65,207.6,208.25,208.63,209.67000000000002,17.41,17.32,17.27,17.2,17.11,17.03,16.91,16.8,16.68,N/A,N/A +2012,1,19,16,30,101750,100560,99400,90.45,0,3.8000000000000003,4.6000000000000005,4.99,5.4,5.86,6.33,6.83,7.28,7.78,202.53,203.92000000000002,205.03,206.48000000000002,207.70000000000002,208.8,208.58,208.11,206.96,17.64,17.5,17.42,17.34,17.29,17.25,17.240000000000002,17.240000000000002,17.16,N/A,N/A +2012,1,19,17,30,101700,100510,99350,92.49,0,4.41,5.11,5.41,5.73,6.05,6.37,6.890000000000001,7.45,8.790000000000001,187.41,188.54,189.46,190.61,191.83,193.09,194.95000000000002,196.95000000000002,202.23000000000002,17.75,17.55,17.43,17.3,17.18,17.07,17.04,17.03,17.19,N/A,N/A +2012,1,19,18,30,101680,100480,99330,93.38,0,5.11,6.03,6.43,6.84,7.21,7.58,7.97,8.34,9.32,190.87,191.59,192.11,192.73000000000002,193.39000000000001,194.05,195.02,196.1,201.15,18.03,17.87,17.76,17.64,17.53,17.42,17.330000000000002,17.25,17.25,N/A,N/A +2012,1,19,19,30,101650,100450,99300,94.73,0,4.61,5.61,6.05,6.5,6.890000000000001,7.25,7.62,7.98,8.94,188.5,189.21,189.76,190.35,190.92000000000002,191.46,192.68,194.06,203,18.080000000000002,17.98,17.900000000000002,17.8,17.7,17.61,17.53,17.46,17.46,N/A,N/A +2012,1,19,20,30,101580,100390,99240,96.03,0,4.79,5.91,6.41,6.94,7.53,8.18,8.8,9.38,9.71,192.82,193.77,194.99,197.19,200.32,204.01,207.41,210.47,212.64000000000001,18.23,18.2,18.18,18.16,18.17,18.2,18.240000000000002,18.26,18.18,N/A,N/A +2012,1,19,21,30,101540,100350,99200,95.91,0,3.91,5.0600000000000005,5.57,6.09,6.68,7.3500000000000005,8.25,9.19,9.78,188.31,190.78,192.75,195.16,197.67000000000002,200.34,204.18,208.21,210.20000000000002,18.18,18.17,18.14,18.09,18.07,18.07,18.14,18.23,18.18,N/A,N/A +2012,1,19,22,30,101510,100320,99170,95.79,0,3.61,4.76,5.2700000000000005,5.84,6.68,7.8100000000000005,8.45,8.92,9.75,186.12,190.65,193.6,196.26,200.34,205.84,208.31,209.85,212.83,18.14,18.16,18.14,18.1,18.18,18.34,18.35,18.32,18.400000000000002,N/A,N/A +2012,1,19,23,30,101480,100290,99150,94.72,0,3.5500000000000003,5.09,5.84,6.640000000000001,7.41,8.17,8.59,8.9,9.38,191.07,193.03,194.43,195.89000000000001,197.26,198.58,199.54,200.32,201.94,18.09,18.34,18.45,18.55,18.61,18.64,18.650000000000002,18.650000000000002,18.6,N/A,N/A +2012,1,20,0,30,101460,100280,99140,93.9,0,3.93,5.84,6.93,8.18,9.01,9.48,9.81,10.08,10.540000000000001,190.36,194.8,197.70000000000002,199.8,201.17000000000002,201.93,202.58,203.15,204.31,18.25,18.7,18.94,19.16,19.32,19.43,19.5,19.55,19.57,N/A,N/A +2012,1,20,1,30,101460,100280,99130,95.26,0,4.2,6.22,7.4,8.51,9.18,9.51,9.85,10.18,10.700000000000001,187.98,193.21,196.44,197.88,198.89000000000001,199.56,200.22,200.84,202.46,17.91,18.6,18.95,19.12,19.23,19.31,19.38,19.44,19.53,N/A,N/A +2012,1,20,2,30,101450,100270,99120,95.06,0,3.41,5.01,6.08,7.87,8.98,9.5,10.03,10.52,11.21,180.62,185.95000000000002,189.71,194.08,196.58,197.52,198.43,199.3,202,18.05,18.25,18.46,18.88,19.04,19.04,19.1,19.16,19.29,N/A,N/A +2012,1,20,3,30,101450,100260,99120,93.92,0.4,3.47,5.34,6.3100000000000005,7.4,8.51,9.69,10.53,11.23,11.99,178.4,190.18,197.31,200.92000000000002,202.85,203.53,204.56,205.63,206.77,18.36,18.73,18.900000000000002,19.07,19.150000000000002,19.19,19.17,19.14,18.98,N/A,N/A +2012,1,20,4,30,101440,100250,99110,91.10000000000001,0,4.67,7.390000000000001,8.85,10.21,11.22,11.96,12.09,12.05,12.88,202.47,205.07,207.16,209.58,211.15,212.07,210.52,208.53,205.21,18.97,19.28,19.330000000000002,19.29,19.26,19.22,19.23,19.26,19.27,N/A,N/A +2012,1,20,5,30,101430,100240,99100,91.96000000000001,0,4.0600000000000005,6.01,6.95,7.99,8.94,9.84,10.39,10.82,12,214.05,213.95000000000002,213.76,213.27,211.97,210.04,207.25,204.47,202.91,18.82,19.17,19.23,19.22,19.14,19.02,18.95,18.89,18.61,N/A,N/A +2012,1,20,6,30,101430,100250,99100,92.13,0,4.18,6.2,7.17,8.13,9.07,10.01,10.82,11.56,12.540000000000001,198.47,199.77,200.9,202.46,203.71,204.76,205.97,207.16,208.72,18.650000000000002,18.95,19.01,19.01,18.98,18.94,18.990000000000002,19.07,19.740000000000002,N/A,N/A +2012,1,20,7,30,101440,100250,99110,92.93,0,4.05,6.24,7.51,8.93,10.02,10.8,11.13,11.290000000000001,11.540000000000001,181.31,185.81,189.26,192.38,195.48000000000002,198.55,200.35,201.63,204.44,18.43,18.59,18.62,18.66,19.150000000000002,20.03,20.28,20.32,20.27,N/A,N/A +2012,1,20,8,30,101410,100220,99080,93.66,0,3.98,5.95,7.11,8.68,10.05,11.24,11.790000000000001,12.13,12.56,176.07,180.99,184.55,188.46,191.74,194.54,196.13,197.31,199.73000000000002,18.26,18.43,18.56,18.84,19.3,19.84,20.01,20.080000000000002,20,N/A,N/A +2012,1,20,9,30,101390,100210,99070,93.5,2.2,5.69,7.66,8.8,10.15,11.48,12.81,13.82,14.68,15.21,171.91,176.94,180.68,184.20000000000002,187.36,190.28,192.8,195.05,196.68,18.150000000000002,18.400000000000002,18.62,18.98,19.34,19.7,19.91,20.05,19.97,N/A,N/A +2012,1,20,10,30,101390,100210,99070,91.55,0.4,5.87,7.95,9.03,10.21,11.33,12.41,13.5,14.540000000000001,15.59,179.57,181.24,182.65,184.39000000000001,185.95000000000002,187.41,189.44,191.55,197.06,18.6,18.79,18.900000000000002,19.12,19.330000000000002,19.55,19.66,19.740000000000002,19.77,N/A,N/A +2012,1,20,11,30,101390,100210,99070,92.02,0,7.18,9.16,10.16,11.31,12.44,13.56,14.26,14.82,15.06,180.79,182.58,184.21,186.65,189.24,191.98000000000002,194.19,196.12,197.52,18.46,18.68,18.88,19.22,19.55,19.84,19.95,20,19.830000000000002,N/A,N/A +2012,1,20,12,30,101400,100220,99080,92.27,1.1,5.43,7.41,8.48,9.64,10.66,11.56,12.48,13.370000000000001,15.64,175.15,177.83,179.93,182.22,183.95000000000002,185.24,186.36,187.38,192.71,18.44,18.68,18.79,18.93,19.03,19.1,19.17,19.23,19.61,N/A,N/A +2012,1,20,13,30,101400,100220,99080,91.44,0,6.66,8.76,9.8,10.97,12.06,13.120000000000001,14.08,14.96,16.15,178.24,179.43,180.29,181.32,182.43,183.61,185.16,186.72,191.21,18.61,18.82,18.92,19.06,19.21,19.35,19.51,19.650000000000002,19.87,N/A,N/A +2012,1,20,14,30,101420,100240,99090,91.02,0,7.1000000000000005,9.16,10.14,11.17,12.1,12.950000000000001,13.68,14.33,14.88,183.29,184.03,184.72,185.77,187.08,188.54,190.77,193.04,197.27,18.67,19.03,19.21,19.43,19.61,19.77,19.89,20,20.05,N/A,N/A +2012,1,20,15,30,101430,100250,99100,92.33,0,6.19,8.040000000000001,8.98,9.99,10.99,12,13,13.96,14.42,177.8,179.21,180.46,182.09,184.20000000000002,186.72,189.81,192.93,195.64000000000001,18.44,18.740000000000002,18.92,19.16,19.38,19.59,19.79,19.98,20.07,N/A,N/A +2012,1,20,16,30,101410,100220,99080,92.02,0,5.98,7.98,9.02,10.15,11.24,12.31,13.15,13.89,14.39,175.92000000000002,178.02,179.73,181.81,184.31,187.15,190.04,192.77,195.45000000000002,18.54,18.740000000000002,18.900000000000002,19.19,19.47,19.75,19.94,20.09,20.17,N/A,N/A +2012,1,20,17,30,101390,100210,99060,92.11,0,6.94,8.77,9.65,10.67,11.700000000000001,12.77,13.620000000000001,14.36,14.8,177.26,178.09,179.04,180.86,183.43,186.6,189.67000000000002,192.54,195.38,18.53,18.64,18.72,18.91,19.26,19.72,19.990000000000002,20.18,20.26,N/A,N/A +2012,1,20,18,30,101380,100190,99050,91.89,0,6.96,8.91,9.86,10.92,11.93,12.93,13.700000000000001,14.35,14.64,175.44,176.41,177.75,180.54,183.6,186.88,189.52,191.83,193.62,18.56,18.68,18.87,19.37,19.73,20,20.150000000000002,20.25,20.22,N/A,N/A +2012,1,20,19,30,101370,100180,99040,92.4,0,5.84,7.66,8.58,9.620000000000001,10.700000000000001,11.85,12.94,13.98,14.4,169.07,171.5,173.62,176.65,179.64000000000001,182.68,185.86,188.96,191.20000000000002,18.5,18.580000000000002,18.7,19.07,19.36,19.59,19.77,19.94,19.93,N/A,N/A +2012,1,20,20,30,101350,100160,99020,92.5,0,5.39,7.33,8.33,9.46,10.5,11.5,12.67,13.870000000000001,14.69,171.71,174.9,177.07,179.21,181.1,182.83,185.97,189.46,192.72,18.53,18.66,18.77,19.04,19.26,19.47,19.740000000000002,20.02,20.11,N/A,N/A +2012,1,20,21,30,101310,100130,98990,92.61,0,5.71,7.58,8.55,9.56,10.61,11.74,13,14.280000000000001,14.98,174.57,176.89000000000001,178.69,180.70000000000002,182.37,183.82,186.97,190.55,193.16,18.42,18.77,18.95,19.12,19.32,19.54,19.87,20.2,20.23,N/A,N/A +2012,1,20,22,30,101280,100090,98950,92.63,0,5.9,7.7700000000000005,8.73,9.78,10.72,11.620000000000001,12.77,13.98,14.57,170.1,172.64000000000001,174.58,176.78,178.84,180.84,184.82,189.31,191.99,18.36,18.67,18.87,19.16,19.38,19.55,19.84,20.13,20.16,N/A,N/A +2012,1,20,23,30,101250,100070,98930,93.28,0,5.29,7.11,8.11,9.32,10.48,11.64,12.92,14.22,14.84,167.32,171.17000000000002,174.03,177.04,179.62,181.92000000000002,185.95000000000002,190.38,192.89000000000001,18.22,18.27,18.41,18.830000000000002,19.2,19.54,19.93,20.3,20.39,N/A,N/A +2012,1,21,0,30,101260,100080,98930,92.57000000000001,0,6.01,7.87,8.84,9.89,10.86,11.8,13.01,14.290000000000001,15.05,165.97,169.21,171.54,173.88,175.97,177.91,181.88,186.41,189.83,18.35,18.57,18.73,19,19.21,19.38,19.69,20.01,20.1,N/A,N/A +2012,1,21,1,30,101240,100060,98920,92.31,0,6.7,8.61,9.56,10.620000000000001,11.65,12.65,13.68,14.66,16.6,172.11,173.99,175.36,177,178.6,180.21,181.94,183.64000000000001,190.06,18.400000000000002,18.490000000000002,18.57,18.8,19.06,19.32,19.55,19.75,20.18,N/A,N/A +2012,1,21,2,30,101270,100080,98940,92.11,0,6.890000000000001,8.89,9.93,11.040000000000001,12.09,13.11,14.1,15.02,16.580000000000002,176.69,178.08,179.24,180.71,182.15,183.57,185.14000000000001,186.67000000000002,191.96,18.43,18.740000000000002,18.94,19.23,19.45,19.63,19.76,19.87,20.06,N/A,N/A +2012,1,21,3,30,101300,100120,98980,90.24,0,6.29,8.39,9.41,10.46,11.450000000000001,12.43,13.43,14.38,15.9,176.93,178.86,180.39000000000001,182.27,183.89000000000001,185.35,186.52,187.53,189.45000000000002,18.900000000000002,19.22,19.34,19.45,19.55,19.650000000000002,19.64,19.61,19.2,N/A,N/A +2012,1,21,4,30,101300,100120,98970,89.22,0,6.88,9.14,10.27,11.38,12.34,13.22,14.040000000000001,14.81,16.18,180.86,182.08,183.09,184.39000000000001,185.76,187.23,188.88,190.51,194.51,19.1,19.43,19.53,19.6,19.62,19.62,19.52,19.400000000000002,18.92,N/A,N/A +2012,1,21,5,30,101290,100110,98970,89.04,0,7.37,9.6,10.64,11.700000000000001,12.65,13.530000000000001,14.34,15.09,16.44,184.31,185.16,185.91,187.04,188.31,189.76,191.45000000000002,193.15,196.72,19.150000000000002,19.400000000000002,19.44,19.45,19.39,19.29,19.09,18.89,18.990000000000002,N/A,N/A +2012,1,21,6,30,101330,100150,99010,90.43,0,6.21,8.290000000000001,9.31,10.38,11.43,12.49,13.57,14.620000000000001,15.88,185.94,186.76,187.48,188.62,189.92000000000002,191.39000000000001,193.21,195.08,198.72,18.96,19.18,19.2,19.17,19.07,18.92,18.86,18.830000000000002,20.03,N/A,N/A +2012,1,21,7,30,101340,100160,99020,90.92,0,7.140000000000001,9.120000000000001,10.1,11.22,12.32,13.46,14.540000000000001,15.55,16.35,189.57,190.41,191.13,192.15,193.33,194.69,196.57,198.53,202.64000000000001,18.78,18.92,18.92,18.87,18.78,18.66,19.26,20,20.5,N/A,N/A +2012,1,21,8,30,101340,100160,99010,91.29,0,6.7700000000000005,8.75,9.72,10.790000000000001,11.85,12.92,14.01,15.05,15.71,187.85,188.73,189.51,190.68,192.29,194.28,197.67000000000002,201.33,206.67000000000002,18.73,18.86,18.85,18.79,18.73,18.68,19.38,20.240000000000002,20.71,N/A,N/A +2012,1,21,9,30,101360,100180,99030,91.61,0,5.44,7.4,8.39,9.5,10.66,11.9,12.94,13.88,14.34,186.8,188.62,190.14000000000001,192.16,194.61,197.52,201.15,204.83,208.22,18.72,18.88,18.87,18.8,18.740000000000002,18.68,19.240000000000002,19.91,20.55,N/A,N/A +2012,1,21,10,30,101360,100180,99040,92.23,0.4,5.15,6.91,7.82,8.84,9.98,11.25,12.31,13.280000000000001,13.73,180.46,183.25,185.58,188.44,191.86,195.87,200.52,205.18,208.42000000000002,18.57,18.69,18.580000000000002,18.18,18.240000000000002,18.59,19.32,20.1,20.54,N/A,N/A +2012,1,21,11,30,101420,100230,99090,93.43,0,3.73,5.61,6.62,7.82,8.870000000000001,9.790000000000001,10.47,11.02,11.540000000000001,177.06,180.71,184.32,190.16,195.33,199.97,203.4,206.26,209.37,18.43,18.6,18.55,18.36,18.36,18.52,19.02,19.57,20.13,N/A,N/A +2012,1,21,12,30,101440,100250,99110,95.28,0.4,1.97,3.94,5.3,6.95,8.11,8.78,9.31,9.76,10.31,194.70000000000002,192.36,193.1,200.75,205.66,208.06,209.49,210.58,212.04,18.18,18.07,17.93,17.85,17.98,18.240000000000002,18.73,19.240000000000002,19.78,N/A,N/A +2012,1,21,13,30,101450,100260,99110,95.95,0,1.73,3.18,4.17,5.63,6.6000000000000005,7.1000000000000005,7.75,8.43,9.09,227.57,221.43,218.51,220.89000000000001,222.05,222.13,221.24,220.13,217.9,18.02,18.09,18.05,17.990000000000002,17.95,17.91,18,18.1,18.26,N/A,N/A +2012,1,21,14,30,101490,100300,99150,95.97,0.4,1.21,2.5,3.54,5.22,6.44,7.12,7.47,7.71,7.82,238.52,229.13,223.91,225.94,227.42000000000002,228.23000000000002,228.01,227.57,227.18,18.03,18.17,18.19,18.23,18.28,18.32,18.28,18.22,18.04,N/A,N/A +2012,1,21,15,30,101510,100320,99170,95.4,0,2.0300000000000002,3.2,3.67,4.15,4.58,4.97,5.34,5.68,6.24,227.43,230.86,233.07,234.66,235.72,236.43,236.64000000000001,236.71,235.87,18.240000000000002,18.48,18.53,18.57,18.580000000000002,18.57,18.55,18.53,18.44,N/A,N/A +2012,1,21,16,30,101510,100330,99180,94.96000000000001,0,2.5300000000000002,3.85,4.3,4.72,5.0600000000000005,5.3500000000000005,5.62,5.86,6.3500000000000005,211.04,216.5,219.87,221.8,223.15,224.09,225,225.84,227.29,18.400000000000002,18.75,18.830000000000002,18.85,18.84,18.82,18.79,18.76,18.71,N/A,N/A +2012,1,21,17,30,101500,100320,99170,95.2,1.8,2.66,3.85,4.26,4.7,5.04,5.3100000000000005,5.5600000000000005,5.78,6.22,214.37,220.43,223.84,225.77,226.85,227.35,227.58,227.72,227.45000000000002,18.38,18.66,18.73,18.78,18.8,18.81,18.79,18.77,18.69,N/A,N/A +2012,1,21,18,30,101500,100310,99170,95.12,6.2,2.2,3.44,3.91,4.33,4.68,4.98,5.22,5.42,5.8,213.58,219.16,222.49,224.56,226.06,227.12,227.98000000000002,228.74,230.41,18.52,18.93,19.05,19.1,19.1,19.080000000000002,19.03,18.990000000000002,18.88,N/A,N/A +2012,1,21,19,30,101500,100320,99170,94.67,0.4,2.52,3.72,4.07,4.33,4.54,4.73,4.92,5.11,5.55,203.78,209.74,213.45000000000002,215.98000000000002,218.15,220.08,222.3,224.46,228.17000000000002,18.75,19.11,19.19,19.17,19.150000000000002,19.14,19.18,19.22,19.23,N/A,N/A +2012,1,21,20,30,101470,100290,99140,94.5,0,3.18,4.25,4.57,4.89,5.15,5.38,5.63,5.87,6.34,187.54,194.86,200.03,205.36,209.42000000000002,212.61,215.62,218.4,223.45000000000002,18.77,19.02,19.11,19.21,19.32,19.42,19.51,19.580000000000002,19.62,N/A,N/A +2012,1,21,21,30,101440,100260,99120,94.08,0,3.62,4.64,4.91,5.21,5.44,5.61,5.79,5.96,6.2700000000000005,179.82,188,195.01,206.64000000000001,214.03,218.41,222.06,225.26,230.12,18.81,18.96,19.12,19.6,19.93,20.14,20.25,20.31,20.240000000000002,N/A,N/A +2012,1,21,22,30,101420,100230,99090,93.10000000000001,0,4.8500000000000005,6.16,6.48,6.48,6.43,6.37,6.3100000000000005,6.26,6.22,175.93,182.53,188,194.76,199.35,202.54,205.65,208.47,213.55,18.63,18.5,18.6,19.09,19.43,19.66,19.8,19.900000000000002,19.88,N/A,N/A +2012,1,21,23,30,101400,100220,99080,92.77,0,4.39,5.75,6.1000000000000005,6.09,6.1000000000000005,6.13,6.17,6.21,6.21,170.94,180.83,187.61,193.48000000000002,198.01,201.71,204.73000000000002,207.33,211.84,18.57,18.61,18.86,19.66,20.14,20.42,20.5,20.51,20.36,N/A,N/A +2012,1,22,0,30,101410,100230,99080,93.79,0,3.81,5.1000000000000005,5.45,5.55,5.59,5.61,5.63,5.64,5.65,176.88,183.86,189.87,198.29,204.67000000000002,209.69,213.1,215.81,218.97,18.32,18.46,18.55,18.78,19.03,19.29,19.57,19.830000000000002,19.990000000000002,N/A,N/A +2012,1,22,1,30,101420,100230,99090,95.78,0,2.04,3.27,3.74,4.07,4.2700000000000005,4.38,4.49,4.58,4.79,190.18,195.08,200.07,207.68,213.05,216.85,220.02,222.75,224.63,18.07,18.14,18.13,18.16,18.240000000000002,18.330000000000002,18.400000000000002,18.47,18.7,N/A,N/A +2012,1,22,2,30,101430,100240,99090,96.23,0,2.08,3.27,3.65,3.8200000000000003,3.93,3.99,4.1,4.2,4.67,180.44,191.52,200.19,208.77,214.32,217.83,220.69,223.19,224.25,17.96,18.06,18.11,18.26,18.38,18.47,18.55,18.63,18.78,N/A,N/A +2012,1,22,3,30,101400,100210,99060,96.7,0,1.9100000000000001,3,3.35,3.5500000000000003,3.68,3.7800000000000002,4,4.25,4.99,161.84,180.03,192.07,202.12,208.79,213.34,215.3,216.51,212.69,17.85,17.97,18.02,18.11,18.150000000000002,18.18,18.29,18.42,18.79,N/A,N/A +2012,1,22,4,30,101380,100200,99050,96.66,0,2.07,3.66,4.34,4.7,5.08,5.48,5.8500000000000005,6.21,6.86,177.41,193.06,201.63,203.06,203.28,202.73000000000002,202.06,201.39000000000001,199.98000000000002,17.87,17.84,17.81,17.88,17.98,18.11,18.400000000000002,18.69,19.18,N/A,N/A +2012,1,22,5,30,101390,100200,99050,96.37,0,2.48,3.71,4.41,5.54,6.05,6.1000000000000005,6.3100000000000005,6.5600000000000005,7.34,155.93,169.11,177.87,185.75,189.17000000000002,189.38,189.28,189.1,188.73,17.87,18.11,18.21,18.26,18.22,18.12,18.080000000000002,18.06,18.56,N/A,N/A +2012,1,22,6,30,101370,100180,99040,96.13,0,2.6,4.03,4.92,6.3500000000000005,7.25,7.68,8.040000000000001,8.370000000000001,9.05,188.29,186.8,186.36,187.11,187.78,188.34,188.95000000000002,189.53,191.05,18.150000000000002,18.34,18.47,18.72,18.87,18.96,18.97,18.96,19,N/A,N/A +2012,1,22,7,30,101370,100180,99040,95.8,0,2.69,4.82,6.21,7.99,8.88,9.08,9.15,9.18,9.21,166.36,174.29,180.95000000000002,188.83,192.92000000000002,194,194.44,194.71,195.05,18.240000000000002,18.86,19.18,19.44,19.51,19.45,19.36,19.28,19.09,N/A,N/A +2012,1,22,8,30,101340,100150,99010,92.44,0,4.96,6.86,7.79,8.790000000000001,9.6,10.27,10.96,11.620000000000001,11.870000000000001,183.62,184.54,185.43,186.81,186.71,185.53,188.02,191.38,193.3,18.81,19.04,19.11,19.2,19.26,19.3,19.3,19.29,19.13,N/A,N/A +2012,1,22,9,30,101300,100120,98980,91.34,0,6.47,8.51,9.48,10.38,10.950000000000001,11.27,11.28,11.21,11.53,183.5,186.89000000000001,189.26,191.72,192.81,192.93,191.4,189.65,190.39000000000001,18.96,19.080000000000002,19.05,18.97,18.85,18.69,18.71,18.78,19.16,N/A,N/A +2012,1,22,10,30,101280,100100,98960,92.78,0,6.5200000000000005,8.08,8.67,9.14,9.620000000000001,10.11,10.540000000000001,10.93,10.86,171.17000000000002,173.57,175.47,178.09,181.03,184.25,187.3,190.11,196.34,18.64,18.7,18.7,18.7,18.69,18.66,18.650000000000002,18.64,18.68,N/A,N/A +2012,1,22,11,30,101270,100080,98940,93.36,0,6.0600000000000005,7.3,7.73,8.040000000000001,8.34,8.65,9.75,11.1,13.25,174.74,172.87,171.27,168.87,167.34,166.42000000000002,170.25,175.53,182.78,18.5,18.580000000000002,18.59,18.6,18.55,18.47,18.46,18.48,19.64,N/A,N/A +2012,1,22,12,30,101250,100070,98930,93.29,0,5.79,7.65,8.63,9.790000000000001,10.93,12.08,12.81,13.370000000000001,13.790000000000001,162.94,167.35,171.06,176.39000000000001,179.68,181.41,181.87,181.96,183.16,18.54,18.44,18.26,17.93,18.3,19.16,19.72,20.16,20.31,N/A,N/A +2012,1,22,13,30,101250,100060,98920,97.22,0.4,5.16,6.69,8.1,10.89,12.530000000000001,13.18,13.8,14.38,15.05,159.22,161.65,165.11,172.65,176.87,178.22,179.47,180.62,182.52,17.7,17.37,17.61,18.580000000000002,19.34,19.98,20.29,20.5,20.56,N/A,N/A +2012,1,22,14,30,101250,100060,98920,91.04,0,6.92,8.870000000000001,9.81,10.78,11.69,12.56,13.4,14.19,15.69,170.66,171.37,172.01,173,174.16,175.48,176.86,178.17000000000002,180.03,19.01,19.34,19.5,19.68,19.82,19.95,20.06,20.14,20.2,N/A,N/A +2012,1,22,15,30,101240,100060,98920,91.16,0,6.8100000000000005,8.700000000000001,9.620000000000001,10.61,11.56,12.5,13.370000000000001,14.19,15.63,166.32,167.71,168.88,170.49,172.01,173.51,174.72,175.8,178.52,19.02,19.35,19.51,19.7,19.86,20.02,20.12,20.2,20.35,N/A,N/A +2012,1,22,16,30,101220,100040,98900,91.37,0,6.67,8.5,9.41,10.43,11.4,12.36,13.27,14.13,15.42,164.85,166.44,167.67000000000002,169.24,170.56,171.72,172.71,173.61,175.62,19.02,19.330000000000002,19.48,19.64,19.79,19.93,20.06,20.17,20.22,N/A,N/A +2012,1,22,17,30,101220,100040,98900,91.86,0,5.12,6.92,7.8500000000000005,8.86,9.83,10.81,11.74,12.63,14.6,163.37,164.96,166.31,167.92000000000002,169.32,170.59,171.79,172.92000000000002,177.02,19.07,19.35,19.43,19.47,19.52,19.59,19.69,19.8,20.05,N/A,N/A +2012,1,22,18,30,101190,100010,98870,89.95,0,8.15,10.11,11.02,11.96,12.85,13.72,14.56,15.35,16.54,171.66,172.25,172.8,173.79,174.97,176.34,177.89000000000001,179.41,182.51,19.38,19.66,19.78,19.92,20.07,20.23,20.37,20.48,20.55,N/A,N/A +2012,1,22,19,30,101160,99980,98840,90.51,0,8.700000000000001,10.67,11.59,12.58,13.51,14.44,15.36,16.23,17.81,169.52,171.11,172.22,173.68,175.06,176.42000000000002,177.70000000000002,178.88,181.76,19.13,19.42,19.56,19.740000000000002,19.91,20.1,20.26,20.41,20.63,N/A,N/A +2012,1,22,20,30,101160,99990,98850,89.16,0,8.19,10.34,11.36,12.4,13.35,14.25,15.05,15.77,16.71,175.49,175.85,176.17000000000002,176.67000000000002,177.3,178.04,179.15,180.31,184.15,19.48,19.92,20.13,20.36,20.55,20.72,20.84,20.94,21,N/A,N/A +2012,1,22,21,30,101130,99950,98820,90.48,0,7.07,9.17,10.24,11.39,12.43,13.43,14.25,14.97,15.83,168.96,170.13,171.03,172.01,173.03,174.14000000000001,176.09,178.22,184.31,19.2,19.650000000000002,19.88,20.14,20.37,20.59,20.740000000000002,20.86,20.93,N/A,N/A +2012,1,22,22,30,101100,99920,98790,89.98,0,6.86,9.02,10.07,11.16,12.13,13.01,13.790000000000001,14.48,15.23,167.77,168.67000000000002,169.58,171.06,173,175.32,178.56,181.92000000000002,187.70000000000002,19.3,19.69,19.89,20.150000000000002,20.36,20.55,20.68,20.79,20.84,N/A,N/A +2012,1,22,23,30,101080,99900,98770,89.4,0,8.01,10.22,11.27,12.36,13.33,14.25,15.08,15.85,16.740000000000002,167.54,168.89000000000001,170.11,171.96,174.19,176.73,180.26,183.91,190.17000000000002,19.37,19.68,19.84,20.05,20.3,20.580000000000002,20.77,20.92,21.01,N/A,N/A +2012,1,23,0,30,101120,99950,98820,88.62,0,7.8500000000000005,10.08,11.22,12.41,13.47,14.46,15.21,15.83,16.31,174.43,175.42000000000002,176.41,178.19,180.46,183.36,186.91,190.49,195.91,19.54,19.87,19.990000000000002,20.150000000000002,20.38,20.68,20.97,21.23,21.35,N/A,N/A +2012,1,23,1,30,101130,99960,98820,88.07000000000001,0.4,7.61,10,11.22,12.5,13.620000000000001,14.64,15.4,16.02,16.69,178.51,179.21,179.82,180.87,182.21,183.88,186.66,189.71,198.45000000000002,19.69,20.04,20.16,20.27,20.31,20.31,20.580000000000002,20.93,21.240000000000002,N/A,N/A +2012,1,23,2,30,101170,100000,98870,87.46000000000001,0.4,8.02,10.44,11.620000000000001,12.790000000000001,13.73,14.51,14.950000000000001,15.24,15.26,185.19,185.94,186.73,188.21,190.42000000000002,193.32,197.8,202.55,210.32,19.830000000000002,20.14,20.22,20.29,20.53,20.900000000000002,21.19,21.44,21.54,N/A,N/A +2012,1,23,3,30,101240,100070,98930,88.37,0,6.6000000000000005,8.97,10.17,11.55,12.64,13.49,13.82,13.950000000000001,13.91,192.83,192.77,193.21,194.93,197.76,201.83,209.12,216.98000000000002,220.71,19.7,20.080000000000002,20.18,20.240000000000002,20.43,20.740000000000002,20.93,21.07,21.150000000000002,N/A,N/A +2012,1,23,4,30,101270,100090,98960,89.33,0,5.61,8.08,9.27,10.47,11.33,11.950000000000001,12.15,12.23,12.44,203.71,203.79,204.33,205.8,209.38,214.18,222.17000000000002,230.25,233.42000000000002,19.55,20,20.16,20.32,20.44,20.52,20.41,20.27,20.32,N/A,N/A +2012,1,23,5,30,101360,100180,99040,91.38,0.4,3.83,5.71,6.55,7.53,8.36,9.08,9.46,9.71,9.89,245.47,241.95000000000002,239,235.28,236.38,241.65,244.12,245.52,247.3,19.330000000000002,19.85,20.02,20.18,20.23,20.21,20.150000000000002,20.09,19.91,N/A,N/A +2012,1,23,6,30,101410,100230,99090,92.13,0,3.41,5.24,6.09,7.2700000000000005,8,8.31,8.63,8.93,9.65,236.05,239.26,242.78,249.34,252.54,252.66,252.73000000000002,252.79,252.29,19.3,19.91,20.09,20.17,20.19,20.17,20.14,20.11,20.05,N/A,N/A +2012,1,23,7,30,101480,100300,99160,92.94,0.4,3.12,5.54,6.72,7.61,8.120000000000001,8.32,8.370000000000001,8.370000000000001,8.370000000000001,247.48000000000002,249.70000000000002,252.56,257.98,260.88,261.64,261.77,261.69,261.55,19.150000000000002,19.8,20,20.03,19.990000000000002,19.88,19.78,19.69,19.51,N/A,N/A +2012,1,23,8,30,101520,100330,99190,91.72,0,4.57,6.46,7.2700000000000005,7.930000000000001,8.47,8.9,8.94,8.870000000000001,8.85,279.76,282.21,284.19,286.75,287.57,287.16,285.76,284.23,283.92,19.1,19.580000000000002,19.7,19.64,19.55,19.43,19.3,19.19,19.01,N/A,N/A +2012,1,23,9,30,101550,100360,99220,93.68,0.4,3.84,5.37,5.89,6.13,6.23,6.24,6.22,6.19,6.15,302.13,304,304.29,302.57,300.78000000000003,298.94,297.44,296.17,294.22,18.68,19.25,19.51,19.69,19.77,19.78,19.73,19.650000000000002,19.43,N/A,N/A +2012,1,23,10,30,101570,100380,99230,96.11,0,4.42,5.78,6.36,6.78,6.98,7.04,7,6.95,6.84,333.95,331.01,329.24,328.03000000000003,327.07,326.3,325.96,325.75,325.83,18.02,18.240000000000002,18.36,18.490000000000002,18.61,18.740000000000002,18.77,18.78,18.650000000000002,N/A,N/A +2012,1,23,11,30,101600,100410,99260,99.33,0,5.88,6.37,6.6000000000000005,6.91,7.01,6.95,6.98,7.04,6.82,352.92,355.31,357.61,0.96,2.2,1.83,1.3800000000000001,0.9400000000000001,0.6,16.68,16.01,16.7,18.72,19.490000000000002,19.34,19.26,19.19,18.94,N/A,N/A +2012,1,23,12,30,101660,100460,99290,69.17,0,9.42,10.27,10.47,10.61,10.83,11.08,11.55,11.870000000000001,11.200000000000001,359.15000000000003,359.07,359.04,359.02,359.03000000000003,359.06,359.45,359.87,0.59,16.88,16.59,16.44,16.27,16.13,16.01,16.1,16.3,17.25,N/A,N/A +2012,1,23,13,30,101710,100500,99330,69.98,0,8.15,8.74,8.870000000000001,8.950000000000001,9.14,9.370000000000001,10.200000000000001,10.92,10.55,12.09,12.370000000000001,12.56,12.790000000000001,13.23,13.75,15.22,16.56,16.8,16.11,15.780000000000001,15.620000000000001,15.44,15.3,15.17,15.39,15.68,16.75,N/A,N/A +2012,1,23,14,30,101740,100530,99360,72.82000000000001,0,8.66,9.18,9.290000000000001,9.39,9.89,10.59,10.81,10.9,10.32,12.25,12.77,13.06,13.5,14.57,15.94,16.91,17.56,16.88,15.75,15.42,15.27,15.13,15.19,15.35,16.17,16.85,17.18,N/A,N/A +2012,1,23,15,30,101780,100570,99400,74.69,0,7.5600000000000005,8.040000000000001,8.11,8.13,8.17,8.21,8.59,8.99,9.65,28.88,29.080000000000002,29.21,29.36,29.560000000000002,29.77,30.38,30.830000000000002,30.54,15.5,15.14,14.96,14.780000000000001,14.620000000000001,14.47,14.42,14.51,15.73,N/A,N/A +2012,1,23,16,30,101780,100570,99390,75.24,0,6.23,6.59,6.65,6.66,6.67,6.67,6.72,6.8500000000000005,7.79,26.900000000000002,27.01,27.080000000000002,27.150000000000002,27.240000000000002,27.32,27.490000000000002,27.64,27.84,15.56,15.19,15.01,14.82,14.64,14.47,14.290000000000001,14.19,14.82,N/A,N/A +2012,1,23,17,30,101790,100580,99410,72.96000000000001,0,5.19,5.5200000000000005,5.58,5.62,5.63,5.65,5.66,5.67,5.73,39.6,39.32,39.13,38.93,38.71,38.49,38.2,37.9,36.95,15.860000000000001,15.51,15.33,15.14,14.94,14.76,14.56,14.38,14.01,N/A,N/A +2012,1,23,18,30,101790,100580,99410,68.93,0,4.17,4.39,4.44,4.45,4.46,4.47,4.5,4.55,5.01,41.58,41.04,40.59,40.07,39.46,38.83,37.79,36.53,30.59,16.42,16.1,15.93,15.74,15.56,15.38,15.200000000000001,15.040000000000001,14.86,N/A,N/A +2012,1,23,19,30,101800,100590,99430,69.5,0,2.98,3.08,3.09,3.11,3.37,3.7800000000000002,4.0200000000000005,4.23,4.7,63.56,62.74,61.78,60.14,54.6,46.74,43.13,40.45,36.65,16.63,16.330000000000002,16.17,16.01,15.96,15.98,16.04,16.080000000000002,16.06,N/A,N/A +2012,1,23,20,30,101760,100560,99390,70.72,0,2.83,2.95,3.02,3.18,3.5300000000000002,4.01,4.28,4.48,4.83,63.57,62.9,62.050000000000004,60.46,56.89,52.03,48.64,45.71,40.35,16.85,16.56,16.43,16.32,16.4,16.57,16.71,16.82,16.84,N/A,N/A +2012,1,23,21,30,101730,100530,99370,73.91,0,2.45,2.5500000000000003,2.74,3.23,3.62,3.93,4.19,4.42,4.76,63.52,62.940000000000005,61.85,59.36,56.4,53.300000000000004,49.78,46.4,40.35,17.02,16.740000000000002,16.66,16.66,16.8,17.01,17.2,17.38,17.51,N/A,N/A +2012,1,23,22,30,101710,100510,99340,76.93,0,2.23,2.35,2.47,2.73,3.09,3.52,3.8000000000000003,4.04,4.46,79.16,77.7,76.14,73.26,69.54,65.23,62.31,59.64,53.160000000000004,17.080000000000002,16.81,16.68,16.580000000000002,16.6,16.69,16.830000000000002,16.96,17.25,N/A,N/A +2012,1,23,23,30,101710,100510,99350,79.32000000000001,0,2.27,2.3000000000000003,2.47,3.02,3.43,3.74,4.04,4.34,4.82,94.27,94.39,92.32000000000001,86.45,82.62,80.15,77.31,74.52,68.52,17.04,16.76,16.67,16.68,16.77,16.91,17.13,17.330000000000002,17.6,N/A,N/A +2012,1,24,0,30,101710,100510,99350,78.9,0,2.42,2.97,3.3200000000000003,3.7600000000000002,4.18,4.6000000000000005,4.97,5.32,5.88,89.61,88.48,87.21000000000001,85.10000000000001,82.67,80.04,77.55,75.21000000000001,70.84,17.16,17.06,17.13,17.330000000000002,17.6,17.87,18.07,18.240000000000002,18.36,N/A,N/A +2012,1,24,1,30,101710,100510,99360,75.05,0,2.62,3.46,3.99,4.53,5.04,5.53,5.9,6.21,6.65,65.41,66.97,67.64,67.61,67.22,66.63,65.59,64.53,62.14,17.54,17.740000000000002,17.92,18.19,18.45,18.71,18.86,18.97,18.96,N/A,N/A +2012,1,24,2,30,101710,100520,99360,72.33,0,3.27,4.19,4.79,5.48,5.92,6.21,6.47,6.7,7.07,63.27,65.97,67.26,67.57000000000001,67.18,66.45,65.65,64.89,63.42,17.71,17.82,18.04,18.490000000000002,18.740000000000002,18.88,18.92,18.93,18.79,N/A,N/A +2012,1,24,3,30,101710,100520,99360,77.31,0,3.69,4.23,4.61,5.21,5.5200000000000005,5.66,5.76,5.84,5.97,67.7,68.24,68.95,70.17,70.57000000000001,70.53,70.98,71.62,74.99,17.54,17.41,17.6,18.150000000000002,18.43,18.56,18.59,18.6,18.54,N/A,N/A +2012,1,24,4,30,101710,100510,99360,73.43,0,3.42,4.48,5.36,6.79,8.120000000000001,9.38,9.66,9.73,9.14,53.59,56.76,59.33,62.67,66.5,70.58,75.31,79.32000000000001,81.04,17.73,17.87,18,18.19,18.150000000000002,18.02,18.1,18.21,18.55,N/A,N/A +2012,1,24,5,30,101700,100500,99340,79.51,0,6.43,7.34,7.72,8.120000000000001,8.56,9.01,9.59,10.15,10.97,78.02,78.94,79.67,80.63,81.87,83.22,85.09,87,91.33,17.650000000000002,17.51,17.43,17.35,17.29,17.26,17.31,17.38,17.8,N/A,N/A +2012,1,24,6,30,101700,100500,99340,80.2,0,7.48,8.44,8.82,9.17,9.56,9.96,10.5,11.01,11.540000000000001,81.09,81.85000000000001,82.43,83.16,84.15,85.2,87.03,89.17,96.29,17.650000000000002,17.47,17.37,17.26,17.17,17.11,17.16,17.28,18.13,N/A,N/A +2012,1,24,7,30,101700,100510,99350,80.24,0,7.98,8.950000000000001,9.31,9.63,9.950000000000001,10.26,10.67,11.09,11.94,85.16,85.62,85.99,86.43,86.97,87.55,88.57000000000001,89.82000000000001,95.69,17.62,17.42,17.31,17.17,17.06,16.96,16.91,16.92,17.52,N/A,N/A +2012,1,24,8,30,101700,100500,99340,81.5,0,7.17,8.11,8.47,8.790000000000001,9.09,9.370000000000001,9.700000000000001,10.03,10.83,89.19,89.4,89.57000000000001,89.82000000000001,90.17,90.57000000000001,91.5,92.60000000000001,97.22,17.57,17.36,17.240000000000002,17.09,16.96,16.84,16.77,16.73,17.13,N/A,N/A +2012,1,24,9,30,101690,100490,99330,82.34,0,7.44,8.48,8.89,9.26,9.6,9.92,10.28,10.63,11.33,86.48,87.14,87.67,88.31,89.09,89.9,91.18,92.52,96.68,17.57,17.38,17.26,17.14,17.03,16.93,16.9,16.9,17.29,N/A,N/A +2012,1,24,10,30,101680,100480,99320,82.06,0,7.28,8.18,8.51,8.8,9.09,9.370000000000001,9.71,10.05,10.99,88.2,88.75,89.19,89.72,90.34,91,91.97,93.05,98.23,17.62,17.42,17.29,17.14,17.01,16.88,16.77,16.68,16.86,N/A,N/A +2012,1,24,11,30,101680,100490,99330,83.37,0,7.44,8.36,8.700000000000001,9,9.290000000000001,9.56,9.91,10.26,11.200000000000001,90.60000000000001,91.13,91.53,91.99,92.55,93.14,93.94,94.78,100.31,17.59,17.38,17.240000000000002,17.09,16.94,16.81,16.68,16.57,16.73,N/A,N/A +2012,1,24,12,30,101670,100480,99320,85.43,0,7.5200000000000005,8.47,8.84,9.18,9.540000000000001,9.91,10.43,10.86,10.75,90.17,90.66,91.08,91.61,92.39,93.27,95.49,98.69,112.61,17.64,17.43,17.31,17.16,17.05,16.95,17.01,17.18,18.330000000000002,N/A,N/A +2012,1,24,13,30,101690,100490,99330,88.46000000000001,0,7.32,8.290000000000001,8.66,9.03,9.44,9.85,10.23,10.53,10.43,87.73,88.38,88.98,89.8,91.26,92.94,101.75,109.73,114.44,17.63,17.43,17.32,17.2,17.13,17.09,17.66,18.16,18.2,N/A,N/A +2012,1,24,14,30,101710,100520,99360,90.17,0,7.17,8.16,8.55,8.94,9.38,9.81,10.28,10.66,10.63,92.79,93.3,93.84,94.68,96.34,98.4,107.28,116.39,128.26,17.73,17.56,17.45,17.35,17.29,17.26,17.42,17.59,17.89,N/A,N/A +2012,1,24,15,30,101720,100520,99370,94.56,0.7000000000000001,7.38,8.38,8.790000000000001,9.21,9.67,10.14,10.57,10.94,11.24,92.95,94.03,95.03,96.5,100.21000000000001,105.02,117.12,128.36,133.78,17.56,17.36,17.26,17.16,17.2,17.3,17.78,18.22,18.36,N/A,N/A +2012,1,24,16,30,101680,100490,99330,96.66,1.1,7.63,8.620000000000001,9,9.36,9.68,9.96,10.15,10.32,10.73,93.27,93.47,93.72,94.14,95.54,97.35000000000001,104.32000000000001,111.60000000000001,127.31,17.53,17.31,17.19,17.07,17.02,17.01,17.25,17.5,17.96,N/A,N/A +2012,1,24,17,30,101650,100460,99310,97.29,0,5.62,6.67,7.12,7.58,8.27,9.120000000000001,9.4,9.56,9.6,94.9,96.8,99.35000000000001,103.88,111.13,120.08,122.97,124.58,127.34,17.89,17.8,17.77,17.76,18.150000000000002,18.740000000000002,18.900000000000002,18.96,18.84,N/A,N/A +2012,1,24,18,30,101650,100460,99310,89.2,0,6.140000000000001,7.48,8.08,8.66,9,9.21,9.26,9.290000000000001,9.47,97,98.94,101.01,104.37,107.74000000000001,110.95,113.12,114.88,117.62,18.5,18.62,18.75,18.96,19.080000000000002,19.16,19.05,18.92,18.64,N/A,N/A +2012,1,24,19,30,101600,100410,99260,94.04,0,7.7700000000000005,9.15,9.78,10.46,11.11,11.72,11.96,12.08,11.620000000000001,92.06,92.61,93.21000000000001,94.21000000000001,96.10000000000001,98.45,104.85000000000001,111.37,121.53,18.14,18.06,18.01,17.97,17.97,17.990000000000002,18.2,18.42,18.51,N/A,N/A +2012,1,24,20,30,101550,100350,99200,94.7,0,8.040000000000001,9.41,10,10.61,11.22,11.83,12.280000000000001,12.620000000000001,12.39,88.38,89.45,90.32000000000001,91.42,92.83,94.34,99.24000000000001,105.12,125.19,17.97,17.84,17.76,17.68,17.63,17.6,17.82,18.06,18.67,N/A,N/A +2012,1,24,21,30,101520,100320,99170,94.07000000000001,0,8.790000000000001,10.06,10.55,11.02,11.51,11.99,12.26,12.46,12.59,91.35000000000001,91.55,91.82000000000001,92.23,93.29,94.64,107.56,119.83,128.02,17.79,17.6,17.48,17.36,17.28,17.23,17.82,18.38,18.62,N/A,N/A +2012,1,24,22,30,101480,100280,99140,92.87,0,8.28,9.63,10.25,10.93,11.56,12.13,12.52,12.84,13.09,92.8,93.33,93.77,94.35000000000001,96.34,99.06,117,134.37,137.57,17.85,17.68,17.57,17.46,17.52,17.66,18.56,19.400000000000002,19.22,N/A,N/A +2012,1,24,23,30,101430,100240,99100,96.27,0,9.13,10.53,11.120000000000001,11.73,12.41,13.120000000000001,13.39,13.57,13.86,96.67,97.04,97.36,97.84,98.85000000000001,100.12,115.4,130.34,135,17.77,17.59,17.48,17.36,17.3,17.27,18.39,19.490000000000002,19.78,N/A,N/A +2012,1,25,0,30,101440,100250,99100,96.82000000000001,0,9.49,10.98,11.57,12.16,12.75,13.34,13.84,14.3,15.370000000000001,101.34,102.06,102.75,103.82000000000001,105.88,108.39,117.65,126.95,139.14000000000001,17.91,17.77,17.71,17.7,17.77,17.89,18.39,18.89,19.580000000000002,N/A,N/A +2012,1,25,1,30,101430,100240,99090,94.81,0,9.32,11,11.72,12.43,13.14,13.83,14.56,15.25,16.15,105.89,106.35000000000001,106.75,107.3,108.14,109.10000000000001,111.58,114.58,133.51,18.31,18.29,18.26,18.23,18.21,18.21,18.29,18.42,19.26,N/A,N/A +2012,1,25,2,30,101430,100240,99100,91.81,0,9.59,11.65,12.55,13.46,14.23,14.91,15.370000000000001,15.74,16.28,107.5,109.5,111.17,113.47,116.2,119.14,122.85000000000001,126.42,135.16,18.94,19.12,19.22,19.34,19.48,19.63,19.740000000000002,19.82,19.71,N/A,N/A +2012,1,25,3,30,101420,100240,99100,91.06,0,7.930000000000001,9.98,10.870000000000001,11.76,12.5,13.15,13.68,14.14,15.33,110.05,112.21000000000001,113.95,116.21000000000001,118.67,121.2,124.03,126.73,132.58,19.13,19.35,19.45,19.56,19.67,19.77,19.78,19.77,19.37,N/A,N/A +2012,1,25,4,30,101350,100170,99030,90.15,0,9.200000000000001,11.22,12.08,12.96,13.780000000000001,14.55,15.44,16.31,17.82,114.24000000000001,115.13,115.84,117.03,118.53,120.18,122.48,124.85000000000001,129.49,19.32,19.46,19.490000000000002,19.52,19.54,19.55,19.56,19.57,19.5,N/A,N/A +2012,1,25,5,30,101320,100140,99000,90.31,0,8.93,11.11,12.09,13.08,13.99,14.85,15.67,16.43,17.69,118.57000000000001,119.46000000000001,120.18,121.10000000000001,122.08,123.08,124.19,125.26,128.12,19.27,19.400000000000002,19.42,19.43,19.43,19.42,19.39,19.36,19.25,N/A,N/A +2012,1,25,6,30,101350,100160,99020,92.07000000000001,0,7.58,9.48,10.370000000000001,11.27,12.120000000000001,12.93,13.77,14.57,16.07,111.16,112.92,114.43,116.43,118.60000000000001,120.9,123.52,126.10000000000001,131.88,19.11,19.21,19.22,19.23,19.22,19.22,19.19,19.17,19.2,N/A,N/A +2012,1,25,7,30,101330,100150,99010,93.13,0,7.3,9.040000000000001,9.84,10.66,11.46,12.23,12.96,13.64,14.96,107.38,109.54,111.22,113.34,115.38,117.35000000000001,119.60000000000001,121.78,126.61,18.89,18.96,18.96,18.94,18.900000000000002,18.86,18.8,18.75,18.95,N/A,N/A +2012,1,25,8,30,101300,100120,98980,93.64,0,6.99,8.73,9.55,10.42,11.22,11.98,12.700000000000001,13.370000000000001,14.93,111.23,113.22,114.82000000000001,116.87,119,121.16,123.55,125.87,133.09,18.79,18.88,18.91,18.93,18.93,18.93,18.95,18.98,19.46,N/A,N/A +2012,1,25,9,30,101210,100030,98890,91.95,6.2,11.26,13.290000000000001,14.08,14.85,15.59,16.31,17,17.650000000000002,18.47,110,111.99000000000001,113.94,116.88,120.08,123.36,126.47,129.3,132.56,19.13,19.29,19.35,19.42,19.64,19.93,20.11,20.25,20.23,N/A,N/A +2012,1,25,10,30,101180,100000,98860,92.46000000000001,3.7,10.25,12.07,12.74,13.33,13.97,14.620000000000001,15.530000000000001,16.45,18.39,107.38,109.12,110.87,113.62,116.91,120.5,124.33,127.99000000000001,133.89000000000001,19.01,19.080000000000002,19.11,19.14,19.22,19.31,19.41,19.51,19.73,N/A,N/A +2012,1,25,11,30,101100,99930,98790,90.44,2.2,11.8,14.120000000000001,15.040000000000001,15.91,16.71,17.47,18.18,18.84,20.06,118.79,120.36,121.49000000000001,122.87,124.41,126.03,127.82000000000001,129.51,133.39000000000001,19.45,19.57,19.59,19.6,19.61,19.62,19.6,19.59,19.75,N/A,N/A +2012,1,25,12,30,101200,100020,98880,90.8,0,7.22,9.23,10.13,10.99,11.77,12.52,13.24,13.91,15.31,128.54,128.7,129.07,129.78,130.86,132.18,133.85,135.49,139.18,19.41,19.54,19.54,19.51,19.490000000000002,19.47,19.47,19.47,19.46,N/A,N/A +2012,1,25,13,30,101190,100010,98870,90.92,0,8.03,10.08,11.02,11.97,12.85,13.69,14.52,15.31,16.67,135.99,137.02,137.82,138.76,139.68,140.59,141.48,142.31,143.78,19.37,19.47,19.48,19.48,19.48,19.48,19.490000000000002,19.5,19.47,N/A,N/A +2012,1,25,14,30,101190,100010,98870,90.98,0,6.99,9.1,10.08,11.07,11.98,12.82,13.63,14.370000000000001,15.700000000000001,144.88,145.28,145.66,146.13,146.69,147.31,148.09,148.85,150.57,19.39,19.490000000000002,19.490000000000002,19.48,19.51,19.56,19.63,19.69,19.740000000000002,N/A,N/A +2012,1,25,15,30,101210,100030,98890,91.95,0.4,6.8500000000000005,8.73,9.65,10.69,11.73,12.790000000000001,13.73,14.6,15.99,136.2,139.15,141.28,143.66,145.51,147.03,148.33,149.5,152.38,19.19,19.42,19.53,19.67,19.82,19.96,20.07,20.16,20.19,N/A,N/A +2012,1,25,16,30,101210,100030,98890,91.36,0.7000000000000001,6.8,8.790000000000001,9.73,10.72,11.66,12.59,13.530000000000001,14.43,16.17,137.15,140.17000000000002,142.39000000000001,144.94,147.39000000000001,149.8,152.09,154.25,157.69,19.330000000000002,19.56,19.650000000000002,19.740000000000002,19.830000000000002,19.900000000000002,19.97,20.02,20.07,N/A,N/A +2012,1,25,17,30,101160,99980,98850,91.05,0,8.290000000000001,10.31,11.22,12.16,13.06,13.93,14.8,15.620000000000001,17.04,135.32,137.75,139.62,142,144.4,146.81,149.15,151.33,155.21,19.37,19.580000000000002,19.650000000000002,19.72,19.79,19.86,19.91,19.97,19.95,N/A,N/A +2012,1,25,18,30,101090,99910,98780,90.92,0.7000000000000001,8.57,10.72,11.700000000000001,12.72,13.63,14.47,15.18,15.82,16.67,141.58,143.33,144.68,146.34,148.12,149.95000000000002,151.91,153.76,157.4,19.41,19.73,19.89,20.06,20.22,20.38,20.490000000000002,20.57,20.56,N/A,N/A +2012,1,25,19,30,100980,99800,98670,89.62,0,9.35,11.540000000000001,12.450000000000001,13.280000000000001,13.950000000000001,14.530000000000001,14.97,15.34,15.85,135.19,137.12,138.91,141.45000000000002,144.52,147.88,151.26,154.4,158.78,19.69,20.05,20.21,20.38,20.55,20.69,20.77,20.82,20.68,N/A,N/A +2012,1,25,20,30,100900,99720,98590,91.11,0,8.1,10.13,11.01,11.870000000000001,12.57,13.17,13.75,14.27,14.55,120.67,122.72,124.54,127.04,130.12,133.47,137.56,141.65,153.41,19.35,19.55,19.63,19.73,19.830000000000002,19.91,19.95,19.98,20.26,N/A,N/A +2012,1,25,21,30,101070,99890,98750,96.55,306.2,2.07,2.95,3.1,3.1,3.18,3.3000000000000003,3.43,3.5700000000000003,4.08,246.41,240.95000000000002,238.27,235.82,231.23000000000002,225.53,220.57,216.09,207.4,18.44,19.51,19.77,19.54,19.330000000000002,19.16,19,18.85,18.55,N/A,N/A +2012,1,25,22,30,100940,99760,98620,95.2,4,5.33,6.8,7.43,7.99,8.51,9,9.58,10.14,11.24,163.07,165.93,168.52,171.81,174.92000000000002,177.85,181.07,184.25,192.61,18.48,18.400000000000002,18.330000000000002,18.22,18.14,18.080000000000002,18.03,17.98,18.02,N/A,N/A +2012,1,25,23,30,100960,99780,98630,95.43,0,6.63,7.87,8.38,8.870000000000001,9.35,9.82,10.17,10.44,10.17,165.44,166.62,167.88,169.8,172.49,175.54,179.18,182.8,191.54,18.38,18.28,18.21,18.14,18.12,18.13,18.14,18.14,18.01,N/A,N/A +2012,1,26,0,30,101010,99830,98690,96.44,0,5.24,6.24,6.640000000000001,7.03,7.59,8.28,8.26,8.120000000000001,8.290000000000001,172.09,171.84,171.81,172.14000000000001,171.16,169.32,185.53,202.73000000000002,209.32,18.21,18.14,18.09,18.03,17.97,17.92,18,18.1,18,N/A,N/A +2012,1,26,1,30,101030,99850,98710,95.55,0,3.95,5.13,5.39,5.05,4.98,5.12,5.22,5.28,5.36,177.83,180.82,192.59,223.46,239.54,246.11,251.21,255.48000000000002,260.66,18.44,18.490000000000002,18.52,18.580000000000002,18.580000000000002,18.53,18.45,18.36,18.14,N/A,N/A +2012,1,26,2,30,101110,99930,98780,94.64,0,4.25,5,4.99,4.78,4.51,4.24,3.91,3.63,4.07,189.19,201.35,210.6,220.47,226.02,229.1,236.48000000000002,243.75,277.48,18.64,18.64,18.5,18.23,18.01,17.82,17.6,17.42,17.28,N/A,N/A +2012,1,26,3,30,101180,99990,98840,96.28,0,2.9,3.95,4.28,4.49,4.67,4.83,4.74,4.63,4.62,197.1,209.93,219.83,231.04,237.61,241.52,252.61,263.21,270.57,18.35,18.2,18.05,17.85,17.72,17.62,17.53,17.44,17.27,N/A,N/A +2012,1,26,4,30,101200,100000,98840,91.13,0,7.68,8.23,8.33,8.36,8.45,8.55,8.700000000000001,8.77,8.11,285.41,285.86,286.26,286.83,287.93,289.21,292.07,294.83,298.94,17.13,16.82,16.65,16.47,16.3,16.14,16.07,16.05,16.4,N/A,N/A +2012,1,26,5,30,101270,100070,98910,90.32000000000001,0,5.28,5.58,5.62,5.62,5.63,5.65,5.76,5.8500000000000005,5.68,292.37,292.65000000000003,292.81,292.96,293.22,293.5,294.35,295.11,294.63,16.85,16.53,16.36,16.17,15.98,15.81,15.700000000000001,15.620000000000001,15.72,N/A,N/A +2012,1,26,6,30,101310,100110,98950,90.92,0,6.9,7.32,7.37,7.34,7.29,7.23,7.140000000000001,7.04,6.5600000000000005,279.09000000000003,279.34000000000003,279.48,279.61,279.74,279.87,280.06,280.25,281.1,16.21,15.85,15.67,15.48,15.290000000000001,15.11,14.92,14.74,14.44,N/A,N/A +2012,1,26,7,30,101320,100120,98950,89.52,0,5.73,6.01,6.03,6,5.95,5.89,5.79,5.66,5.08,276.34000000000003,276.22,276.15000000000003,276.05,275.88,275.68,275.09000000000003,274.18,269.07,15.950000000000001,15.6,15.42,15.23,15.040000000000001,14.870000000000001,14.700000000000001,14.56,14.540000000000001,N/A,N/A +2012,1,26,8,30,101320,100120,98950,91.32000000000001,0,6.67,7.09,7.15,7.16,7.140000000000001,7.11,7.07,7.0200000000000005,6.890000000000001,266.04,265.88,265.74,265.59000000000003,265.41,265.23,265,264.77,264.05,15.780000000000001,15.4,15.21,15.01,14.82,14.63,14.43,14.25,13.870000000000001,N/A,N/A +2012,1,26,9,30,101340,100130,98960,86.67,0,6.95,7.37,7.44,7.46,7.45,7.43,7.41,7.390000000000001,7.3500000000000005,270.54,270.33,270.17,270,269.81,269.62,269.38,269.13,268.4,14.69,14.26,14.07,13.88,13.68,13.51,13.31,13.14,12.8,N/A,N/A +2012,1,26,10,30,101370,100160,98990,88.81,0,8.48,9.08,9.21,9.26,9.27,9.28,9.27,9.25,9.200000000000001,275.41,274.94,274.59000000000003,274.24,273.90000000000003,273.58,273.22,272.88,272.12,14.530000000000001,14.06,13.85,13.65,13.44,13.26,13.06,12.870000000000001,12.49,N/A,N/A +2012,1,26,11,30,101420,100200,99020,92.36,0,9.58,10.24,10.39,10.44,10.450000000000001,10.46,10.44,10.42,10.36,280.45,280.36,280.3,280.24,280.15000000000003,280.07,279.96,279.84000000000003,279.52,12.86,12.280000000000001,12.040000000000001,11.82,11.61,11.42,11.200000000000001,11.01,10.61,N/A,N/A +2012,1,26,12,30,101440,100220,99040,92,0,7.68,8.15,8.25,8.28,8.290000000000001,8.290000000000001,8.28,8.27,8.25,278.5,278.13,277.86,277.59000000000003,277.33,277.08,276.78000000000003,276.49,275.82,12.620000000000001,12.07,11.84,11.63,11.41,11.22,11,10.8,10.39,N/A,N/A +2012,1,26,13,30,101480,100260,99070,88.53,0,9.200000000000001,9.85,10,10.06,10.1,10.11,10.11,10.11,10.09,279.43,279.74,279.96,280.17,280.37,280.54,280.73,280.91,281.26,12.61,12.040000000000001,11.81,11.59,11.38,11.19,10.98,10.8,10.41,N/A,N/A +2012,1,26,14,30,101520,100300,99120,86.18,0,8.51,9.15,9.31,9.4,9.46,9.51,9.53,9.56,9.6,279.06,279.40000000000003,279.63,279.82,280.02,280.19,280.36,280.52,280.86,12.92,12.370000000000001,12.14,11.92,11.700000000000001,11.5,11.290000000000001,11.1,10.700000000000001,N/A,N/A +2012,1,26,15,30,101510,100290,99110,85.63,0,8.01,8.56,8.700000000000001,8.77,8.82,8.86,8.88,8.9,8.92,294.49,294.59000000000003,294.61,294.63,294.65000000000003,294.66,294.67,294.67,294.69,12.530000000000001,11.98,11.75,11.53,11.32,11.13,10.92,10.73,10.34,N/A,N/A +2012,1,26,16,30,101510,100290,99110,81.64,0,6.12,6.55,6.67,6.74,6.8100000000000005,6.86,6.91,6.95,7.04,286.85,286.88,286.89,286.91,286.93,286.96,286.99,287.02,287.09000000000003,13.21,12.73,12.52,12.31,12.1,11.92,11.71,11.53,11.14,N/A,N/A +2012,1,26,17,30,101520,100310,99130,76.95,0,7.0600000000000005,7.57,7.71,7.79,7.86,7.9,7.94,7.97,8.02,291.71,292.02,292.21,292.39,292.55,292.7,292.85,292.98,293.26,14.040000000000001,13.58,13.370000000000001,13.16,12.950000000000001,12.76,12.55,12.36,11.97,N/A,N/A +2012,1,26,18,30,101510,100300,99120,73.91,0,7.05,7.58,7.72,7.8,7.86,7.91,7.94,7.97,8.02,292.5,292.61,292.67,292.73,292.78000000000003,292.82,292.86,292.90000000000003,292.98,14.63,14.19,13.99,13.780000000000001,13.57,13.38,13.18,12.98,12.59,N/A,N/A +2012,1,26,19,30,101530,100320,99140,73.08,0,8.52,9.14,9.27,9.33,9.35,9.36,9.35,9.34,9.31,303.75,303.27,303.01,302.78000000000003,302.55,302.35,302.13,301.94,301.53000000000003,14.82,14.38,14.17,13.96,13.76,13.57,13.370000000000001,13.17,12.780000000000001,N/A,N/A +2012,1,26,20,30,101520,100310,99130,74.06,0,7.65,8.24,8.39,8.48,8.540000000000001,8.58,8.620000000000001,8.64,8.68,289.08,289.23,289.31,289.37,289.43,289.49,289.54,289.59000000000003,289.69,14.48,14.02,13.81,13.61,13.4,13.21,13,12.8,12.41,N/A,N/A +2012,1,26,21,30,101540,100330,99150,71.81,0,6.75,7.29,7.46,7.5600000000000005,7.640000000000001,7.71,7.7700000000000005,7.82,7.9,300.62,301.28000000000003,301.61,301.89,302.14,302.36,302.58,302.76,303.12,14.94,14.52,14.32,14.120000000000001,13.91,13.73,13.52,13.33,12.93,N/A,N/A +2012,1,26,22,30,101560,100350,99170,72.62,0,10.56,11.61,11.9,12.07,12.19,12.280000000000001,12.34,12.4,12.48,314.74,314.81,314.84000000000003,314.87,314.91,314.93,314.96,314.99,315.05,15.280000000000001,14.84,14.63,14.42,14.22,14.02,13.82,13.620000000000001,13.23,N/A,N/A +2012,1,26,23,30,101630,100420,99240,72.01,0,10.3,11.22,11.450000000000001,11.58,11.66,11.72,11.76,11.790000000000001,11.83,329.34000000000003,329.21,329.12,329.02,328.92,328.83,328.7,328.59000000000003,328.34000000000003,14.93,14.47,14.26,14.06,13.85,13.66,13.46,13.280000000000001,12.9,N/A,N/A +2012,1,27,0,30,101680,100470,99290,74,0,6.83,7.3100000000000005,7.43,7.49,7.53,7.5600000000000005,7.58,7.6000000000000005,7.65,322.21,321.82,321.57,321.32,321.04,320.78000000000003,320.45,320.13,319.32,14.94,14.52,14.32,14.13,13.93,13.75,13.55,13.370000000000001,12.99,N/A,N/A +2012,1,27,1,30,101710,100500,99320,74.69,0,5.54,5.8500000000000005,5.91,5.94,5.94,5.95,5.95,5.94,5.95,330.55,329.89,329.39,328.89,328.35,327.85,327.25,326.66,325.2,15.1,14.700000000000001,14.51,14.32,14.120000000000001,13.94,13.74,13.56,13.19,N/A,N/A +2012,1,27,2,30,101750,100530,99360,76.57000000000001,0,4.28,4.45,4.47,4.47,4.46,4.45,4.47,4.53,4.98,345.62,344.91,344.43,343.88,343.11,342.33,340.71,338.66,330.40000000000003,14.72,14.33,14.15,13.96,13.780000000000001,13.61,13.44,13.31,13.23,N/A,N/A +2012,1,27,3,30,101760,100550,99370,74.75,0,2.3000000000000003,2.4,2.42,2.45,2.54,2.64,3.21,3.7800000000000002,4.4,325.58,324.8,324.3,323.7,322.67,321.53000000000003,318.84000000000003,316.44,315.19,15.040000000000001,14.69,14.52,14.35,14.18,14.030000000000001,14.07,14.13,14.23,N/A,N/A +2012,1,27,4,30,101790,100580,99410,74.85000000000001,0,2.99,3.14,3.18,3.21,3.25,3.29,3.37,3.54,4.5,306.61,307.09000000000003,307.15000000000003,307.23,307.36,307.49,307.7,308.01,309.16,15.31,14.96,14.780000000000001,14.6,14.41,14.24,14.05,13.9,13.790000000000001,N/A,N/A +2012,1,27,5,30,101830,100620,99440,78.33,0,3.04,3.13,3.12,3.1,3.08,3.06,3.0300000000000002,3.0100000000000002,2.97,347.62,345.85,344.64,343.42,342.21,341.11,339.81,338.59000000000003,335.88,15.13,14.76,14.57,14.38,14.19,14.01,13.8,13.620000000000001,13.24,N/A,N/A +2012,1,27,6,30,101880,100660,99490,80.5,0,2.62,2.64,2.61,2.56,2.5100000000000002,2.46,2.4,2.33,2.18,38.01,37.45,36.99,36.49,35.93,35.39,34.62,33.83,31.470000000000002,14.530000000000001,14.15,13.96,13.77,13.57,13.39,13.19,13.01,12.620000000000001,N/A,N/A +2012,1,27,7,30,101920,100710,99520,81.99,0,1.79,1.77,1.73,1.68,1.6300000000000001,1.58,1.53,1.47,1.36,28.37,26.46,25.25,23.94,22.3,20.72,18.19,15.44,4.97,14.26,13.88,13.700000000000001,13.5,13.31,13.13,12.94,12.75,12.39,N/A,N/A +2012,1,27,8,30,101940,100720,99540,82.60000000000001,0,1.47,1.5,1.49,1.48,1.49,1.49,1.5,1.52,1.62,358.03000000000003,354.8,352.65000000000003,350.47,348.13,345.95,343.21,340.56,334.3,14.32,13.950000000000001,13.76,13.57,13.38,13.200000000000001,13,12.82,12.46,N/A,N/A +2012,1,27,9,30,101940,100720,99540,78.81,0,2.97,3.09,3.1,3.09,3.09,3.08,3.0700000000000003,3.06,3.0300000000000002,339.89,339.86,339.87,339.89,339.92,339.94,339.98,340.02,340.13,14.55,14.17,13.98,13.780000000000001,13.58,13.4,13.19,13,12.620000000000001,N/A,N/A +2012,1,27,10,30,101960,100740,99560,76.05,0,3.73,3.88,3.89,3.89,3.89,3.88,3.86,3.85,3.83,0.35000000000000003,0.68,0.88,1.07,1.27,1.46,1.68,1.9000000000000001,2.42,14.42,14.02,13.83,13.64,13.44,13.26,13.06,12.88,12.5,N/A,N/A +2012,1,27,11,30,101980,100760,99580,76.04,0,3.96,4.09,4.09,4.07,4.04,4.01,3.98,3.94,3.85,17.490000000000002,17.89,18.12,18.330000000000002,18.56,18.78,19.02,19.25,19.76,14.27,13.870000000000001,13.68,13.48,13.290000000000001,13.11,12.91,12.73,12.36,N/A,N/A +2012,1,27,12,30,101990,100770,99590,73.52,0,3.5700000000000003,3.69,3.69,3.68,3.65,3.63,3.6,3.5700000000000003,3.49,31.650000000000002,31.98,32.14,32.3,32.45,32.6,32.78,32.95,33.37,14.22,13.82,13.63,13.44,13.24,13.06,12.85,12.67,12.290000000000001,N/A,N/A +2012,1,27,13,30,102010,100790,99610,71.71000000000001,0,3.34,3.45,3.44,3.42,3.4,3.38,3.35,3.3200000000000003,3.25,60.99,61.83,62.35,62.88,63.42,63.9,64.48,65.04,66.38,14.200000000000001,13.81,13.620000000000001,13.42,13.22,13.040000000000001,12.84,12.65,12.27,N/A,N/A +2012,1,27,14,30,102020,100800,99620,72.29,0,3.65,3.79,3.81,3.8000000000000003,3.79,3.77,3.75,3.73,3.69,77.19,77.82000000000001,78.26,78.69,79.13,79.52,80.01,80.48,81.60000000000001,14.290000000000001,13.89,13.700000000000001,13.5,13.3,13.120000000000001,12.91,12.73,12.34,N/A,N/A +2012,1,27,15,30,102000,100780,99600,72.46000000000001,0,4.14,4.33,4.3500000000000005,4.36,4.3500000000000005,4.3500000000000005,4.33,4.32,4.28,91.09,91.60000000000001,91.94,92.27,92.60000000000001,92.91,93.28,93.64,94.48,14.46,14.06,13.870000000000001,13.67,13.47,13.280000000000001,13.08,12.9,12.51,N/A,N/A +2012,1,27,16,30,101970,100760,99570,72.19,0,4.48,4.7,4.74,4.75,4.75,4.75,4.74,4.73,4.7,102.58,103.05,103.31,103.55,103.8,104.04,104.33,104.60000000000001,105.25,14.700000000000001,14.3,14.11,13.91,13.71,13.530000000000001,13.32,13.14,12.75,N/A,N/A +2012,1,27,17,30,101940,100730,99550,72.21000000000001,0,4.67,4.93,4.97,5,5.01,5.01,5.01,5.01,5,115.32000000000001,115.67,115.91,116.15,116.38,116.60000000000001,116.85000000000001,117.08,117.64,14.950000000000001,14.56,14.36,14.16,13.97,13.780000000000001,13.58,13.39,13.01,N/A,N/A +2012,1,27,18,30,101910,100700,99520,71.7,0,5.08,5.38,5.44,5.48,5.49,5.51,5.51,5.51,5.51,124.32000000000001,124.59,124.77,124.95,125.12,125.27,125.45,125.62,126.01,15.22,14.83,14.64,14.44,14.24,14.06,13.86,13.67,13.280000000000001,N/A,N/A +2012,1,27,19,30,101890,100680,99500,71.59,0,5.55,5.93,6.01,6.0600000000000005,6.09,6.11,6.13,6.140000000000001,6.15,134.82,135.07,135.2,135.33,135.47,135.59,135.72,135.84,136.11,15.57,15.200000000000001,15.01,14.81,14.61,14.43,14.22,14.030000000000001,13.65,N/A,N/A +2012,1,27,20,30,101860,100650,99480,73.57000000000001,0,5.71,6.11,6.21,6.26,6.3,6.32,6.34,6.3500000000000005,6.37,145.05,145.3,145.45000000000002,145.59,145.73,145.87,146.01,146.14000000000001,146.44,15.81,15.44,15.26,15.06,14.86,14.67,14.47,14.280000000000001,13.89,N/A,N/A +2012,1,27,21,30,101840,100630,99450,73.98,0,5.82,6.25,6.36,6.41,6.45,6.48,6.5,6.5200000000000005,6.54,154.02,154.37,154.58,154.79,154.98,155.16,155.36,155.54,155.92000000000002,16.02,15.66,15.48,15.280000000000001,15.08,14.9,14.69,14.5,14.11,N/A,N/A +2012,1,27,22,30,101800,100590,99420,74.65,0,6.15,6.640000000000001,6.7700000000000005,6.84,6.890000000000001,6.93,6.96,6.98,7.0200000000000005,162.97,163.36,163.59,163.8,164.01,164.20000000000002,164.4,164.59,164.99,16.27,15.93,15.75,15.55,15.35,15.16,14.96,14.780000000000001,14.38,N/A,N/A +2012,1,27,23,30,101800,100600,99430,75,0,5.88,6.390000000000001,6.5200000000000005,6.6000000000000005,6.67,6.71,6.75,6.78,6.83,167.64000000000001,168.1,168.38,168.64000000000001,168.89000000000001,169.12,169.36,169.58,170.04,16.580000000000002,16.26,16.080000000000002,15.89,15.69,15.51,15.31,15.120000000000001,14.73,N/A,N/A +2012,1,28,0,30,101820,100610,99440,77.29,0,5.92,6.46,6.61,6.7,6.7700000000000005,6.82,6.86,6.890000000000001,6.95,172.36,172.72,172.94,173.15,173.35,173.53,173.70000000000002,173.87,174.23,16.830000000000002,16.53,16.35,16.16,15.97,15.780000000000001,15.58,15.39,15,N/A,N/A +2012,1,28,1,30,101840,100630,99470,79.10000000000001,0,6.01,6.59,6.76,6.86,6.93,6.99,7.03,7.07,7.140000000000001,176.35,176.74,176.97,177.18,177.38,177.55,177.73,177.9,178.23,17.080000000000002,16.79,16.62,16.43,16.240000000000002,16.06,15.860000000000001,15.67,15.280000000000001,N/A,N/A +2012,1,28,2,30,101860,100660,99490,78.92,0,5.21,5.73,5.88,5.98,6.0600000000000005,6.12,6.17,6.21,6.29,179.57,180.20000000000002,180.58,180.95000000000002,181.28,181.58,181.88,182.15,182.69,17.35,17.09,16.92,16.73,16.55,16.37,16.17,15.98,15.6,N/A,N/A +2012,1,28,3,30,101880,100680,99510,79.5,0,5,5.46,5.59,5.69,5.7700000000000005,5.84,5.9,5.96,6.09,199.9,198.85,198.25,197.63,197.05,196.51,195.97,195.47,194.47,17.41,17.16,17,16.81,16.62,16.45,16.25,16.07,15.69,N/A,N/A +2012,1,28,4,30,101890,100690,99530,79.05,0,6.3,6.98,7.17,7.24,7.28,7.32,7.3100000000000005,7.28,7.18,188.11,188.72,189.04,189.36,189.72,190.1,190.44,190.75,191.32,17.52,17.3,17.14,16.96,16.78,16.61,16.41,16.23,15.84,N/A,N/A +2012,1,28,5,30,101930,100730,99570,82.19,0,3.94,4.46,4.67,4.84,4.99,5.13,5.24,5.3500000000000005,5.5,184.62,185,185.34,185.74,186.11,186.47,186.8,187.09,187.52,17.48,17.26,17.11,16.94,16.77,16.6,16.43,16.26,15.9,N/A,N/A +2012,1,28,6,30,101980,100780,99620,83.46000000000001,0,3.0500000000000003,3.58,3.79,3.97,4.12,4.26,4.42,4.57,4.84,178,179.47,180.75,182.49,184.44,186.44,188.93,191.31,195.4,17.48,17.31,17.2,17.06,16.92,16.79,16.65,16.52,16.23,N/A,N/A +2012,1,28,7,30,102030,100830,99670,86.61,0,2.6,3.14,3.37,3.6,3.81,4.0200000000000005,4.22,4.41,4.75,176.70000000000002,178.49,179.66,180.73,181.55,182.20000000000002,182.68,183.14000000000001,184.88,17.38,17.21,17.09,16.95,16.8,16.66,16.5,16.36,16.080000000000002,N/A,N/A +2012,1,28,8,30,102060,100860,99690,86.31,0,2.84,3.44,3.73,3.99,4.19,4.34,4.34,4.3100000000000005,4.33,177.56,180.09,181.61,182.75,185.21,188.29,191.59,194.61,201.28,17.35,17.23,17.14,17.04,16.95,16.86,16.75,16.65,16.42,N/A,N/A +2012,1,28,9,30,102110,100910,99740,87.87,0,1.94,2.46,2.65,2.73,2.73,2.67,2.65,2.64,2.79,170.67000000000002,178.16,184.04,190.87,195.41,198.55,201.46,203.95000000000002,207.59,17.27,17.18,17.12,17.04,16.95,16.86,16.75,16.65,16.38,N/A,N/A +2012,1,28,10,30,102170,100970,99800,91.84,0,0.87,1.33,1.51,1.61,1.6,1.52,1.5,1.48,1.57,182.91,189.34,193.73000000000002,198.01,203.4,208.74,216.67000000000002,224.11,239.09,17.16,17.05,16.96,16.84,16.73,16.61,16.52,16.44,16.26,N/A,N/A +2012,1,28,11,30,102220,101010,99850,90.03,0,0.6,0.76,0.86,0.99,1.1,1.21,1.35,1.5,1.82,292.01,281.35,276.18,274.32,277.09000000000003,282.35,287.94,293.29,301.23,17.07,16.94,16.86,16.76,16.64,16.53,16.42,16.32,16.09,N/A,N/A +2012,1,28,12,30,102310,101100,99940,91.48,0,2.42,2.84,3.0100000000000002,3.1,3.17,3.23,3.36,3.5,3.85,331.46,328.91,326.95,324.85,322.78000000000003,320.81,319.81,319.2,321.27,16.94,16.85,16.79,16.68,16.56,16.44,16.31,16.2,15.96,N/A,N/A +2012,1,28,13,30,102400,101190,100010,97.51,0,8.16,8.66,8.72,8.69,8.64,8.57,8.48,8.38,8.03,346.65000000000003,346.71,346.67,346.6,346.49,346.37,346.13,345.90000000000003,345.77,15.34,14.950000000000001,14.77,14.6,14.44,14.290000000000001,14.16,14.030000000000001,13.8,N/A,N/A +2012,1,28,14,30,102500,101270,100080,93.74,0,10.68,11.53,11.71,11.78,11.8,11.81,11.8,11.8,11.82,13.93,14.05,14.08,14.120000000000001,14.17,14.21,14.27,14.33,14.530000000000001,14.02,13.51,13.3,13.09,12.9,12.72,12.530000000000001,12.36,12.01,N/A,N/A +2012,1,28,15,30,102540,101310,100120,78.75,0,11.200000000000001,12.09,12.280000000000001,12.36,12.39,12.41,12.41,12.42,12.5,20.35,20.41,20.46,20.52,20.57,20.62,20.69,20.76,20.990000000000002,13.64,13.1,12.88,12.68,12.48,12.3,12.11,11.93,11.6,N/A,N/A +2012,1,28,16,30,102560,101330,100140,70.02,0,10.64,11.5,11.69,11.77,11.81,11.83,11.84,11.85,11.88,21.09,21.23,21.330000000000002,21.43,21.56,21.67,21.81,21.96,22.38,13.700000000000001,13.18,12.96,12.76,12.56,12.38,12.18,12,11.65,N/A,N/A +2012,1,28,17,30,102600,101370,100180,65.59,0,9.94,10.78,10.98,11.08,11.15,11.200000000000001,11.22,11.25,11.28,21.080000000000002,21.25,21.37,21.48,21.59,21.69,21.81,21.93,22.2,14.14,13.65,13.43,13.23,13.02,12.83,12.63,12.44,12.05,N/A,N/A +2012,1,28,18,30,102630,101410,100220,61.99,0,9.09,9.88,10.08,10.19,10.27,10.33,10.370000000000001,10.4,10.46,21.55,21.7,21.78,21.86,21.93,22,22.07,22.14,22.28,14.77,14.33,14.120000000000001,13.91,13.71,13.52,13.32,13.13,12.74,N/A,N/A +2012,1,28,19,30,102660,101440,100250,59.18,0,8.77,9.55,9.76,9.88,9.97,10.03,10.08,10.120000000000001,10.18,22.28,22.400000000000002,22.46,22.51,22.55,22.59,22.63,22.66,22.73,15.46,15.06,14.870000000000001,14.67,14.46,14.27,14.07,13.88,13.49,N/A,N/A +2012,1,28,20,30,102660,101440,100260,56.31,0,8.69,9.48,9.68,9.81,9.9,9.96,10.01,10.05,10.11,21.84,21.89,21.93,21.96,21.98,22,22.02,22.04,22.07,15.91,15.540000000000001,15.36,15.16,14.96,14.77,14.56,14.38,13.98,N/A,N/A +2012,1,28,21,30,102690,101470,100290,54.01,0,8.53,9.32,9.53,9.65,9.74,9.81,9.85,9.89,9.950000000000001,21.54,21.650000000000002,21.72,21.78,21.84,21.89,21.94,21.98,22.07,16.2,15.860000000000001,15.68,15.48,15.280000000000001,15.1,14.89,14.700000000000001,14.31,N/A,N/A +2012,1,28,22,30,102710,101490,100310,51.31,0,8.89,9.700000000000001,9.91,10.03,10.11,10.17,10.200000000000001,10.23,10.26,19,19.27,19.45,19.61,19.77,19.91,20.05,20.18,20.45,16.19,15.84,15.65,15.46,15.26,15.07,14.870000000000001,14.68,14.290000000000001,N/A,N/A +2012,1,28,23,30,102770,101550,100360,49.93,0,9.33,10.17,10.39,10.5,10.58,10.63,10.66,10.69,10.71,21.990000000000002,21.88,21.81,21.740000000000002,21.68,21.62,21.56,21.5,21.39,15.870000000000001,15.5,15.31,15.11,14.91,14.72,14.52,14.33,13.93,N/A,N/A +2012,1,29,0,30,102850,101620,100430,52.21,0,10.3,11.200000000000001,11.42,11.53,11.59,11.63,11.64,11.65,11.64,19.06,19.37,19.55,19.71,19.87,20.01,20.16,20.29,20.56,15.13,14.700000000000001,14.5,14.3,14.09,13.9,13.700000000000001,13.51,13.11,N/A,N/A +2012,1,29,1,30,102890,101660,100470,55.29,0,10.47,11.38,11.6,11.72,11.790000000000001,11.84,11.86,11.88,11.88,21.46,21.76,21.95,22.13,22.31,22.47,22.64,22.8,23.14,14.33,13.85,13.64,13.43,13.22,13.030000000000001,12.82,12.63,12.24,N/A,N/A +2012,1,29,2,30,102930,101690,100500,57.57,0,10.4,11.28,11.49,11.61,11.67,11.72,11.74,11.76,11.77,28.650000000000002,28.92,29.080000000000002,29.23,29.38,29.51,29.66,29.8,30.11,13.82,13.3,13.08,12.870000000000001,12.66,12.47,12.27,12.08,11.69,N/A,N/A +2012,1,29,3,30,102950,101720,100520,58.74,0,10.58,11.450000000000001,11.66,11.76,11.82,11.86,11.870000000000001,11.88,11.870000000000001,35.18,35.4,35.54,35.660000000000004,35.79,35.9,36.03,36.160000000000004,36.42,13.450000000000001,12.91,12.69,12.48,12.27,12.08,11.870000000000001,11.68,11.3,N/A,N/A +2012,1,29,4,30,102950,101710,100510,60.47,0,9.98,10.77,10.96,11.06,11.11,11.15,11.16,11.17,11.18,40.08,40.37,40.54,40.71,40.87,41.02,41.19,41.35,41.71,13.290000000000001,12.75,12.530000000000001,12.32,12.11,11.92,11.72,11.53,11.15,N/A,N/A +2012,1,29,5,30,102950,101710,100510,63.1,0,9.31,10.02,10.18,10.26,10.31,10.34,10.35,10.35,10.34,43.61,43.980000000000004,44.22,44.45,44.660000000000004,44.86,45.07,45.27,45.7,13.3,12.77,12.55,12.34,12.13,11.94,11.74,11.55,11.17,N/A,N/A +2012,1,29,6,30,102980,101740,100540,66.63,0,8.870000000000001,9.53,9.69,9.77,9.82,9.85,9.870000000000001,9.88,9.88,48.64,49.02,49.24,49.44,49.63,49.79,49.980000000000004,50.15,50.51,13.22,12.69,12.47,12.26,12.05,11.86,11.65,11.46,11.07,N/A,N/A +2012,1,29,7,30,103010,101780,100580,61.27,0,9.59,10.33,10.51,10.6,10.66,10.69,10.71,10.72,10.71,52.64,52.86,52.99,53.11,53.230000000000004,53.33,53.45,53.550000000000004,53.79,13.36,12.82,12.6,12.39,12.18,11.99,11.78,11.59,11.200000000000001,N/A,N/A +2012,1,29,8,30,103010,101770,100570,62.88,0,8.44,9.05,9.19,9.26,9.3,9.33,9.34,9.34,9.34,56.44,56.800000000000004,57.02,57.22,57.410000000000004,57.59,57.78,57.96,58.34,13.38,12.86,12.65,12.44,12.23,12.040000000000001,11.84,11.65,11.26,N/A,N/A +2012,1,29,9,30,103020,101780,100580,63.72,0,9.040000000000001,9.700000000000001,9.85,9.92,9.96,9.97,9.97,9.97,9.94,51.65,52.04,52.29,52.52,52.74,52.94,53.15,53.36,53.78,13.24,12.71,12.48,12.27,12.06,11.870000000000001,11.66,11.47,11.08,N/A,N/A +2012,1,29,10,30,103030,101800,100600,63.74,0,9.200000000000001,9.89,10.05,10.13,10.17,10.200000000000001,10.21,10.21,10.200000000000001,53.17,53.410000000000004,53.59,53.76,53.92,54.07,54.22,54.370000000000005,54.69,13.26,12.72,12.5,12.290000000000001,12.08,11.89,11.68,11.49,11.1,N/A,N/A +2012,1,29,11,30,103050,101820,100610,62.75,0,8.83,9.49,9.64,9.72,9.76,9.790000000000001,9.8,9.8,9.8,59.120000000000005,59.370000000000005,59.550000000000004,59.72,59.89,60.04,60.2,60.35,60.660000000000004,13.33,12.8,12.58,12.370000000000001,12.16,11.97,11.76,11.57,11.18,N/A,N/A +2012,1,29,12,30,103080,101840,100640,62.5,0,8.38,8.99,9.14,9.22,9.27,9.3,9.31,9.32,9.33,61.57,61.79,61.92,62.04,62.160000000000004,62.26,62.370000000000005,62.46,62.660000000000004,13.41,12.89,12.67,12.46,12.25,12.06,11.85,11.66,11.27,N/A,N/A +2012,1,29,13,30,103090,101850,100650,66.75,0,8.36,8.96,9.1,9.18,9.22,9.24,9.25,9.26,9.26,61.68,61.92,62.06,62.18,62.29,62.39,62.5,62.6,62.81,13.27,12.75,12.530000000000001,12.32,12.1,11.92,11.71,11.52,11.13,N/A,N/A +2012,1,29,14,30,103130,101890,100690,62.03,0,8.45,9.06,9.200000000000001,9.27,9.31,9.34,9.35,9.36,9.35,63.39,63.51,63.58,63.63,63.68,63.730000000000004,63.77,63.82,63.9,13.32,12.790000000000001,12.58,12.36,12.15,11.96,11.76,11.56,11.17,N/A,N/A +2012,1,29,15,30,103150,101910,100710,58.13,0,8.35,8.94,9.08,9.15,9.18,9.200000000000001,9.21,9.21,9.200000000000001,65.87,66.06,66.19,66.3,66.42,66.52,66.63,66.73,66.95,13.41,12.9,12.68,12.47,12.26,12.07,11.86,11.67,11.28,N/A,N/A +2012,1,29,16,30,103140,101910,100700,55.870000000000005,0,7.71,8.24,8.36,8.42,8.45,8.47,8.47,8.47,8.46,66.44,66.71000000000001,66.86,67,67.14,67.27,67.4,67.53,67.8,13.450000000000001,12.950000000000001,12.74,12.530000000000001,12.32,12.14,11.93,11.74,11.35,N/A,N/A +2012,1,29,17,30,103130,101890,100690,59.7,0,7.11,7.57,7.67,7.72,7.74,7.75,7.75,7.75,7.73,65.12,65.45,65.67,65.87,66.06,66.23,66.41,66.58,66.95,13.52,13.040000000000001,12.83,12.620000000000001,12.41,12.23,12.02,11.83,11.44,N/A,N/A +2012,1,29,18,30,103130,101890,100690,57.44,0,6.46,6.8500000000000005,6.94,6.97,6.99,7,7,6.99,6.98,66.63,66.94,67.13,67.32000000000001,67.5,67.66,67.84,68,68.36,13.67,13.200000000000001,12.99,12.790000000000001,12.58,12.39,12.19,12,11.61,N/A,N/A +2012,1,29,19,30,103110,101880,100680,58.6,0,5.96,6.3,6.38,6.41,6.42,6.43,6.43,6.43,6.41,68.1,68.46000000000001,68.69,68.91,69.12,69.3,69.51,69.69,70.10000000000001,13.780000000000001,13.33,13.120000000000001,12.92,12.72,12.530000000000001,12.32,12.13,11.74,N/A,N/A +2012,1,29,20,30,103060,101830,100630,58.47,0,5.38,5.67,5.73,5.75,5.76,5.76,5.76,5.76,5.74,68.72,69.13,69.42,69.68,69.92,70.15,70.41,70.64,71.16,13.94,13.5,13.3,13.1,12.89,12.71,12.5,12.31,11.92,N/A,N/A +2012,1,29,21,30,103010,101780,100580,58.39,0,5,5.26,5.3100000000000005,5.33,5.34,5.34,5.34,5.33,5.32,70.58,70.93,71.13,71.31,71.5,71.68,71.87,72.05,72.46000000000001,14.1,13.67,13.48,13.27,13.07,12.89,12.68,12.49,12.11,N/A,N/A +2012,1,29,22,30,102960,101730,100530,59.6,0,4.74,4.98,5.03,5.04,5.05,5.0600000000000005,5.05,5.05,5.04,74.96000000000001,75.21000000000001,75.35000000000001,75.48,75.62,75.75,75.9,76.04,76.37,14.26,13.84,13.65,13.450000000000001,13.25,13.07,12.870000000000001,12.68,12.3,N/A,N/A +2012,1,29,23,30,102920,101700,100500,56.620000000000005,0,4.83,5.1000000000000005,5.15,5.17,5.19,5.19,5.2,5.2,5.21,78.97,79.07000000000001,79.11,79.16,79.22,79.26,79.32000000000001,79.37,79.48,14.56,14.16,13.97,13.77,13.58,13.4,13.200000000000001,13.01,12.64,N/A,N/A +2012,1,30,0,30,102920,101690,100500,54.63,0,4.97,5.26,5.32,5.3500000000000005,5.37,5.38,5.39,5.4,5.42,88.33,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.36,14.86,14.46,14.27,14.08,13.88,13.700000000000001,13.5,13.32,12.94,N/A,N/A +2012,1,30,1,30,102900,101670,100480,52.47,0,5.16,5.48,5.55,5.59,5.62,5.63,5.64,5.66,5.68,93.25,93.29,93.31,93.32000000000001,93.33,93.34,93.36,93.38,93.4,15.18,14.8,14.61,14.41,14.21,14.030000000000001,13.83,13.65,13.26,N/A,N/A +2012,1,30,2,30,102880,101660,100470,53.050000000000004,0,5.21,5.53,5.61,5.64,5.66,5.68,5.69,5.7,5.71,97.95,98.02,98.06,98.09,98.12,98.15,98.18,98.22,98.28,15.39,15.02,14.83,14.64,14.44,14.25,14.05,13.870000000000001,13.48,N/A,N/A +2012,1,30,3,30,102870,101640,100450,55.83,0,4.98,5.28,5.3500000000000005,5.39,5.41,5.43,5.44,5.44,5.45,102.54,102.66,102.75,102.82000000000001,102.91,102.98,103.06,103.14,103.31,15.49,15.120000000000001,14.94,14.74,14.540000000000001,14.36,14.15,13.97,13.58,N/A,N/A +2012,1,30,4,30,102840,101610,100430,58.92,0,4.95,5.2700000000000005,5.3500000000000005,5.39,5.42,5.44,5.46,5.47,5.49,105.55,105.87,106.07000000000001,106.26,106.43,106.59,106.77,106.93,107.28,15.67,15.31,15.13,14.93,14.73,14.55,14.34,14.16,13.77,N/A,N/A +2012,1,30,5,30,102820,101600,100410,59.58,0,5.12,5.47,5.55,5.6000000000000005,5.63,5.66,5.67,5.69,5.71,113.43,113.71000000000001,113.87,114.02,114.16,114.29,114.43,114.57000000000001,114.85000000000001,15.870000000000001,15.52,15.33,15.14,14.94,14.75,14.55,14.36,13.97,N/A,N/A +2012,1,30,6,30,102820,101600,100410,62.75,0,4.66,4.98,5.0600000000000005,5.11,5.14,5.16,5.18,5.2,5.22,116.06,116.32000000000001,116.51,116.68,116.85000000000001,117,117.17,117.33,117.67,15.96,15.620000000000001,15.44,15.25,15.05,14.870000000000001,14.67,14.48,14.09,N/A,N/A +2012,1,30,7,30,102820,101600,100410,61.95,0,4.89,5.25,5.34,5.39,5.43,5.46,5.48,5.5,5.53,114.61,115.05,115.31,115.55,115.78,115.99000000000001,116.21000000000001,116.42,116.85000000000001,16.25,15.93,15.75,15.56,15.36,15.18,14.98,14.790000000000001,14.4,N/A,N/A +2012,1,30,8,30,102800,101580,100390,62.2,0,4.8500000000000005,5.21,5.3,5.3500000000000005,5.38,5.41,5.43,5.44,5.46,121,121.39,121.59,121.78,121.95,122.09,122.25,122.4,122.7,16.4,16.080000000000002,15.91,15.72,15.52,15.33,15.13,14.950000000000001,14.56,N/A,N/A +2012,1,30,9,30,102770,101550,100370,63.82,0,4.42,4.72,4.79,4.83,4.8500000000000005,4.87,4.88,4.89,4.9,122.52,122.78,122.95,123.11,123.26,123.4,123.55,123.68,123.98,16.44,16.12,15.950000000000001,15.75,15.56,15.370000000000001,15.17,14.98,14.59,N/A,N/A +2012,1,30,10,30,102750,101530,100350,67.16,0,4.05,4.33,4.4,4.44,4.46,4.49,4.5,4.51,4.54,124.98,125.34,125.58,125.81,126.03,126.23,126.45,126.65,127.09,16.490000000000002,16.18,16,15.81,15.610000000000001,15.43,15.23,15.040000000000001,14.65,N/A,N/A +2012,1,30,11,30,102740,101520,100340,71.37,0,4.01,4.3100000000000005,4.39,4.43,4.47,4.5,4.5200000000000005,4.54,4.58,123.46000000000001,124.12,124.53,124.93,125.3,125.62,125.97,126.3,126.96000000000001,16.54,16.23,16.06,15.870000000000001,15.67,15.49,15.290000000000001,15.1,14.71,N/A,N/A +2012,1,30,12,30,102720,101510,100330,72.24,0,4.34,4.68,4.7700000000000005,4.82,4.86,4.89,4.92,4.94,4.98,122.95,123.56,123.95,124.32000000000001,124.67,125,125.33,125.64,126.29,16.69,16.39,16.22,16.03,15.83,15.65,15.450000000000001,15.27,14.88,N/A,N/A +2012,1,30,13,30,102700,101490,100310,71.83,0,4.33,4.7,4.79,4.8500000000000005,4.89,4.92,4.95,4.97,5,122.4,122.84,123.14,123.43,123.69,123.93,124.18,124.41,124.9,16.95,16.68,16.51,16.32,16.13,15.950000000000001,15.75,15.56,15.18,N/A,N/A +2012,1,30,14,30,102720,101500,100320,72.96000000000001,0,4.96,5.39,5.5,5.5600000000000005,5.6000000000000005,5.62,5.65,5.66,5.69,123.34,123.73,124,124.25,124.49000000000001,124.71000000000001,124.95,125.17,125.64,17.03,16.76,16.59,16.41,16.21,16.03,15.83,15.65,15.26,N/A,N/A +2012,1,30,15,30,102720,101500,100330,75.64,0,5.22,5.69,5.82,5.89,5.95,5.98,6.01,6.04,6.07,120.53,120.96000000000001,121.25,121.53,121.8,122.06,122.33,122.58,123.12,17.11,16.84,16.67,16.48,16.3,16.12,15.92,15.73,15.35,N/A,N/A +2012,1,30,16,30,102700,101490,100310,77.23,0,5.4,5.91,6.04,6.12,6.18,6.22,6.26,6.29,6.34,121.78,122.14,122.4,122.67,122.93,123.18,123.46000000000001,123.72,124.3,17.23,16.97,16.8,16.62,16.43,16.25,16.05,15.870000000000001,15.49,N/A,N/A +2012,1,30,17,30,102670,101460,100290,76.86,0,5.68,6.24,6.4,6.5,6.57,6.63,6.67,6.71,6.78,123.45,123.99000000000001,124.33,124.66,124.97,125.25,125.54,125.81,126.39,17.45,17.2,17.05,16.87,16.68,16.51,16.32,16.14,15.76,N/A,N/A +2012,1,30,18,30,102640,101430,100260,81.52,0,5.44,5.98,6.13,6.23,6.32,6.390000000000001,6.46,6.5200000000000005,6.67,121.46000000000001,122.04,122.42,122.82000000000001,123.23,123.63000000000001,124.11,124.55,125.62,17.46,17.21,17.06,16.88,16.69,16.52,16.330000000000002,16.15,15.790000000000001,N/A,N/A +2012,1,30,19,30,102610,101400,100230,83.66,0,5.4,5.93,6.1000000000000005,6.25,6.390000000000001,6.53,6.7,6.86,7.0200000000000005,121.53,121.88,122.17,122.54,122.97,123.44,123.95,124.42,125.22,17.51,17.26,17.11,16.94,16.77,16.6,16.42,16.26,15.88,N/A,N/A +2012,1,30,20,30,102540,101340,100170,84.32000000000001,0,5.29,5.95,6.21,6.47,6.67,6.83,7.0200000000000005,7.19,7.51,115.14,115.98,116.34,116.39,116.77,117.32000000000001,118.24000000000001,119.2,121.84,17.53,17.31,17.16,16.98,16.81,16.64,16.47,16.31,16,N/A,N/A +2012,1,30,21,30,102500,101290,100120,84.75,0,5.17,5.86,6.12,6.36,6.57,6.7700000000000005,6.95,7.12,7.42,114.98,115.92,116.60000000000001,117.35000000000001,118.08,118.79,119.54,120.25,122,17.62,17.42,17.29,17.14,16.98,16.830000000000002,16.66,16.51,16.19,N/A,N/A +2012,1,30,22,30,102460,101250,100080,86.23,0,5.23,6.04,6.37,6.67,6.94,7.19,7.44,7.66,8.08,115.34,116.19,116.87,117.74000000000001,118.71000000000001,119.71000000000001,120.88,122.01,124.34,17.59,17.43,17.32,17.19,17.06,16.92,16.79,16.66,16.37,N/A,N/A +2012,1,30,23,30,102420,101210,100040,87,0,5.5600000000000005,6.51,6.91,7.3,7.66,8,8.31,8.59,9.03,120.22,121.05,121.7,122.53,123.41,124.32000000000001,125.35000000000001,126.35000000000001,128.77,17.62,17.48,17.39,17.27,17.16,17.06,16.94,16.830000000000002,16.57,N/A,N/A +2012,1,31,0,30,102390,101180,100020,87.96000000000001,0,5.87,6.88,7.32,7.75,8.15,8.52,8.9,9.24,9.82,121.01,121.85000000000001,122.52,123.39,124.35000000000001,125.35000000000001,126.49000000000001,127.59,129.98,17.7,17.57,17.490000000000002,17.38,17.28,17.18,17.07,16.98,16.77,N/A,N/A +2012,1,31,1,30,102370,101170,100000,88.77,0,6.140000000000001,7.21,7.66,8.09,8.48,8.85,9.22,9.56,10.22,125.82000000000001,126.57000000000001,127.17,127.92,128.76,129.64000000000001,130.71,131.78,134.41,17.77,17.66,17.57,17.46,17.36,17.26,17.150000000000002,17.06,16.87,N/A,N/A +2012,1,31,2,30,102340,101130,99970,88.29,0,6.640000000000001,7.8500000000000005,8.370000000000001,8.86,9.3,9.72,10.13,10.51,11.16,128.49,129.19,129.81,130.64000000000001,131.64000000000001,132.73,134.11,135.47,138.04,17.91,17.84,17.78,17.71,17.64,17.580000000000002,17.51,17.45,17.27,N/A,N/A +2012,1,31,3,30,102310,101110,99940,89.96000000000001,0,6.2,7.44,7.98,8.51,9,9.450000000000001,9.870000000000001,10.26,10.950000000000001,131.79,132.54,133.21,134.18,135.34,136.58,138.02,139.39000000000001,142,17.92,17.88,17.84,17.79,17.740000000000002,17.69,17.63,17.56,17.37,N/A,N/A +2012,1,31,4,30,102270,101070,99910,90.51,0,6.22,7.55,8.16,8.790000000000001,9.39,9.98,10.56,11.09,11.96,136.71,137.9,138.85,140.04,141.27,142.51,143.76,144.93,146.91,18,17.97,17.94,17.91,17.87,17.84,17.81,17.78,17.63,N/A,N/A +2012,1,31,5,30,102250,101050,99890,90.94,0,6.2700000000000005,7.6000000000000005,8.21,8.84,9.43,10,10.57,11.1,12.02,141.86,142.84,143.61,144.58,145.58,146.61,147.68,148.69,150.44,18.09,18.080000000000002,18.05,18.02,17.98,17.95,17.91,17.87,17.73,N/A,N/A +2012,1,31,6,30,102240,101040,99880,92.18,0,5.98,7.37,8.01,8.65,9.26,9.84,10.44,11.01,12.07,147.68,148.37,148.93,149.61,150.39000000000001,151.21,152.26,153.29,155.28,18.16,18.16,18.14,18.1,18.07,18.03,18.01,17.990000000000002,17.92,N/A,N/A +2012,1,31,7,30,102230,101030,99880,93.26,0,5.8,7.26,7.95,8.68,9.34,9.97,10.53,11.03,11.75,149.31,150.38,151.18,152.14000000000001,153.02,153.84,154.59,155.27,156.72,18.2,18.25,18.25,18.25,18.240000000000002,18.23,18.19,18.14,17.98,N/A,N/A +2012,1,31,8,30,102200,101000,99850,93.77,0,5.46,7.1000000000000005,7.95,8.88,9.73,10.51,11.16,11.73,12.36,150.53,151.97,153.05,154.3,155.47,156.58,157.37,158.04,159.3,18.21,18.34,18.400000000000002,18.46,18.5,18.53,18.5,18.45,18.25,N/A,N/A +2012,1,31,9,30,102210,101010,99850,93.42,0,5.74,7.32,8.09,8.88,9.6,10.28,10.94,11.56,12.200000000000001,155.71,157.48,158.77,160.09,161.03,161.70000000000002,161.92000000000002,162,162.79,18.29,18.43,18.48,18.52,18.53,18.53,18.5,18.47,18.27,N/A,N/A +2012,1,31,10,30,102200,101000,99850,94.16,0,4.82,6.34,7.140000000000001,8.03,8.8,9.48,9.96,10.36,10.56,148.17000000000002,150.67000000000002,152.59,154.86,156.66,158.13,160.14000000000001,162.14000000000001,164.83,18.2,18.35,18.43,18.56,18.66,18.76,18.77,18.77,18.6,N/A,N/A +2012,1,31,11,30,102200,101000,99850,94.99,0,4.65,6.15,6.96,7.91,8.73,9.450000000000001,10.11,10.700000000000001,11.02,148,149.94,151.79,154.59,157.34,160.04,162.69,165.12,166.76,18.07,18.2,18.29,18.43,18.55,18.64,18.66,18.66,18.51,N/A,N/A +2012,1,31,12,30,102200,101010,99850,94.73,0,4.62,6.16,6.92,7.7,8.52,9.370000000000001,9.71,9.9,10.23,146.99,149.24,151.4,154.63,159.03,164.28,166.44,167.72,169.64000000000001,18.12,18.32,18.43,18.59,18.75,18.92,18.91,18.86,18.67,N/A,N/A +2012,1,31,13,30,102200,101010,99850,94.99,0,4.8100000000000005,6.5,7.45,8.61,9.35,9.78,9.97,10.08,10.33,146.29,150.29,154.02,159.89000000000001,163.95000000000002,166.66,167.71,168.29,169.53,18.06,18.38,18.6,18.89,19.02,19.06,19,18.91,18.67,N/A,N/A +2012,1,31,14,30,102230,101030,99870,95.09,0,4.86,6.41,7.26,8.28,9.08,9.72,9.950000000000001,10.06,10.3,141.62,145.37,149.14000000000001,155.1,160.22,164.70000000000002,166.46,167.45000000000002,168.94,18.09,18.3,18.47,18.740000000000002,18.92,19.05,19.04,19,18.8,N/A,N/A +2012,1,31,15,30,102230,101030,99880,96.04,0,4.21,5.51,6.36,7.66,8.55,9.120000000000001,9.53,9.870000000000001,10.46,142.78,145.31,150.17000000000002,160.89000000000001,167.91,172.05,173.98,175.23,177.09,18.01,18.05,18.27,18.79,19.080000000000002,19.21,19.29,19.34,19.330000000000002,N/A,N/A +2012,1,31,16,30,102210,101010,99860,96.16,0,4.5,5.89,6.73,7.88,8.84,9.67,10.03,10.24,10.6,144.4,147.21,151.03,158.71,164.5,168.88,170.19,170.64000000000001,171.35,18.14,18.240000000000002,18.43,18.86,19.150000000000002,19.35,19.37,19.36,19.17,N/A,N/A +2012,1,31,17,30,102190,100990,99840,96.26,0,4.46,5.8,6.62,7.78,8.78,9.64,10,10.21,10.450000000000001,145.03,148.38,151.74,157.20000000000002,162.32,167.16,169.16,170.38,172.38,18.31,18.39,18.53,18.82,19.080000000000002,19.32,19.35,19.34,19.18,N/A,N/A +2012,1,31,18,30,102160,100970,99820,96.14,0,4.88,6.25,7.05,8.13,9.03,9.81,10.03,10.1,10.38,145.35,147.78,150.82,156.70000000000002,162.3,167.63,169.71,170.88,172.85,18.52,18.61,18.75,19.06,19.31,19.51,19.5,19.45,19.3,N/A,N/A +2012,1,31,19,30,102140,100950,99800,95.96000000000001,0,4.93,6.24,6.92,7.76,8.61,9.5,9.86,10.08,10.35,145.22,147.14000000000001,149.26,152.89000000000001,158.4,165.22,168.1,169.89000000000001,172.21,18.66,18.69,18.76,18.91,19.150000000000002,19.44,19.51,19.52,19.42,N/A,N/A +2012,1,31,20,30,102100,100910,99760,95.37,0,4.83,6.25,7.0200000000000005,8,8.8,9.48,9.61,9.6,9.83,148.17000000000002,150.34,153.01,157.94,162.93,167.91,170.08,171.37,173.85,18.68,18.8,18.93,19.150000000000002,19.35,19.52,19.52,19.490000000000002,19.54,N/A,N/A +2012,1,31,21,30,102070,100880,99730,94.79,0,5.34,6.92,7.71,8.58,9.31,9.950000000000001,10.02,9.96,9.94,146.18,146.91,148.87,153.57,159.26,165.63,167.96,169.17000000000002,172.39000000000001,18.6,18.75,18.89,19.11,19.3,19.48,19.43,19.330000000000002,19.22,N/A,N/A +2012,1,31,22,30,102050,100850,99700,93.59,0,5.12,6.78,7.5600000000000005,8.36,8.97,9.450000000000001,9.66,9.790000000000001,10.11,144.08,146.34,149.44,155.44,161.06,166.35,168,168.75,170.67000000000002,18.57,18.84,19.04,19.37,19.580000000000002,19.73,19.73,19.69,19.72,N/A,N/A +2012,1,31,23,30,102040,100850,99700,97.36,0,5.33,6.92,7.8100000000000005,8.790000000000001,9.21,9.26,9.24,9.21,9.06,144.1,146.17000000000002,149.81,157.21,161.38,163.26,164.94,166.41,168.81,17.69,18.25,18.75,19.44,19.67,19.64,19.55,19.46,19.17,N/A,N/A +2012,2,1,0,30,102050,100860,99710,96.56,0.4,5.0200000000000005,6.79,7.83,9.07,9.51,9.44,9.290000000000001,9.14,9.05,139.42000000000002,142.95000000000002,147.75,156.65,161.11,162.53,163.96,165.23,167.21,17.85,17.45,17.900000000000002,19.39,19.94,19.94,19.85,19.740000000000002,19.52,N/A,N/A +2012,2,1,1,30,102060,100860,99710,97.81,0.7000000000000001,4.65,6.33,7.44,8.790000000000001,9.33,9.36,9.31,9.24,8.97,135.3,138.91,144.4,155.29,160.3,161.57,162.69,163.67000000000002,165.56,17.59,17.05,17.61,19.5,20.18,20.21,20.14,20.07,19.85,N/A,N/A +2012,2,1,2,30,102070,100870,99720,99.2,0.6000000000000001,5.5600000000000005,6.53,7.34,8.81,9.450000000000001,9.56,9.6,9.620000000000001,9.8,133.75,134.72,139.38,151.20000000000002,157.31,159.56,161.31,162.79,165.07,17.1,16.62,17.05,18.54,19.330000000000002,19.76,19.92,20.01,20.01,N/A,N/A +2012,2,1,3,30,102070,100870,99720,99.12,0.7000000000000001,5.51,6.16,6.95,8.69,9.540000000000001,9.78,9.86,9.91,9.94,135.69,137.56,142.1,152.78,158.6,160.95000000000002,162.98,164.76,167.78,16.92,16.53,16.95,18.3,19.17,19.77,19.96,20.06,20.04,N/A,N/A +2012,2,1,4,30,102080,100880,99730,98.8,0.4,5.43,6.1000000000000005,6.91,8.870000000000001,9.84,10.1,10.200000000000001,10.26,10.28,136.08,137.12,140.69,150.32,155.6,157.54,159.3,160.87,163.83,16.98,16.55,16.89,18.12,18.84,19.26,19.39,19.46,19.42,N/A,N/A +2012,2,1,5,30,102050,100850,99700,96.77,0.2,5.37,6.91,7.86,9.13,9.92,10.35,10.34,10.23,10.22,145.82,147.41,149.97,155.34,160.36,164.98,167.20000000000002,168.70000000000002,171.73,17.79,17.64,17.69,17.94,18.66,19.64,19.830000000000002,19.85,19.8,N/A,N/A +2012,2,1,6,30,102050,100850,99700,97.06,0.1,6.0600000000000005,7.43,8.25,9.39,10.05,10.36,10.38,10.34,10.35,154.54,155.4,157.06,160.78,164.20000000000002,167.32,169.31,170.87,173.68,18.01,17.87,17.94,18.26,18.92,19.79,19.96,19.98,19.89,N/A,N/A +2012,2,1,7,30,102050,100860,99710,97.26,0.1,6.34,7.65,8.45,9.620000000000001,10.41,10.96,10.97,10.870000000000001,10.81,159.88,160.51,161.8,164.6,167.77,171.1,172.87,174.14000000000001,176.91,17.97,17.86,17.990000000000002,18.37,19.06,19.92,20.05,20.04,19.95,N/A,N/A +2012,2,1,8,30,102050,100860,99700,96.25,0.1,5.55,6.890000000000001,7.65,8.61,9.6,10.63,11.08,11.33,11.15,166.07,166.11,166.48,167.37,169.25,171.87,175.92000000000002,179.9,183.28,18.18,18.12,18.080000000000002,18.02,18.06,18.14,18.67,19.25,19.61,N/A,N/A +2012,2,1,9,30,102050,100850,99700,94.77,0,5.11,6.7,7.58,8.67,9.77,10.88,11.36,11.67,11.57,161.69,164.04,165.88,168.18,170.68,173.37,176.54,179.56,183.35,18.5,18.59,18.63,18.7,18.82,18.96,18.94,18.900000000000002,18.87,N/A,N/A +2012,2,1,10,30,102030,100840,99690,93.46000000000001,0,4.91,6.79,7.71,8.58,9.370000000000001,10.120000000000001,10.36,10.46,10.02,154.62,157.33,160.05,164.32,168.49,172.56,174.63,176.05,179.32,18.82,19,19.04,19.03,19.05,19.080000000000002,19.1,19.12,19.080000000000002,N/A,N/A +2012,2,1,11,30,102030,100840,99690,92.78,0,4.7,6.8100000000000005,7.87,8.790000000000001,9.4,9.8,9.81,9.72,9.5,151.27,155.97,159.88,164.47,168.78,172.78,175.91,178.48,180.4,19,19.35,19.47,19.53,19.54,19.53,19.42,19.31,19.31,N/A,N/A +2012,2,1,12,30,102030,100840,99690,93.09,0,4.58,6.390000000000001,7.28,8.19,8.76,9.09,9.02,8.85,8.790000000000001,142.19,147.27,151.8,158.07,164.26,170.18,174.42000000000002,177.84,184.05,18.94,19.13,19.16,19.14,19.19,19.28,19.35,19.400000000000002,19.84,N/A,N/A +2012,2,1,13,30,102040,100850,99700,91.78,0.2,5.41,7.8,8.93,9.78,10.21,10.35,10.05,9.67,9.120000000000001,154.76,160.82,165.09,169.16,172.36,174.92000000000002,177.47,179.66,181.61,19.22,19.48,19.490000000000002,19.37,19.150000000000002,18.88,19.17,19.55,19.77,N/A,N/A +2012,2,1,14,30,102080,100890,99740,93.18,0,4.16,6.09,7.07,8.120000000000001,8.75,9.07,9,8.85,8.83,143.01,155.81,163.89000000000001,169.11,172.70000000000002,175.04,178.48,181.78,184.51,18.97,19.51,19.76,19.97,20.02,19.97,19.91,19.84,19.68,N/A,N/A +2012,2,1,15,30,102080,100890,99740,93.47,0,3.97,6.140000000000001,7.13,7.65,7.84,7.8,7.71,7.61,7.36,137.8,150.82,159.9,167.61,173.57,178.13,180.69,182.5,186.42000000000002,18.96,19.54,19.88,20.240000000000002,20.41,20.45,20.41,20.34,20.150000000000002,N/A,N/A +2012,2,1,16,30,102030,100850,99700,92.47,3.8000000000000003,3.77,5.19,5.61,5.8,5.98,6.13,6.28,6.43,6.65,153.64000000000001,156.74,160.46,167.66,172.03,174.51,176.25,177.67000000000002,179.33,19.34,19.94,20.17,20.31,20.37,20.38,20.32,20.25,20.01,N/A,N/A +2012,2,1,17,30,102020,100840,99690,93.14,2.1,3.17,4.8100000000000005,5.5,6.15,6.55,6.73,6.86,6.95,6.95,164.94,169.61,174.04,182.58,188.06,191.29,194.20000000000002,196.83,201.08,19.3,19.62,19.72,19.85,19.92,19.96,19.990000000000002,20.03,20.01,N/A,N/A +2012,2,1,18,30,102060,100870,99720,94.11,13.3,2.23,3.29,3.68,4.11,4.45,4.71,4.94,5.14,5.5200000000000005,175.68,190.79,200.13,208.09,213.08,215.92000000000002,218.06,219.88,222.71,19.31,19.59,19.62,19.64,19.64,19.62,19.6,19.59,19.6,N/A,N/A +2012,2,1,19,30,102040,100850,99700,95.11,1.2000000000000002,2.09,2.38,2.24,2.04,1.97,1.95,2.07,2.23,2.62,116.66,129.44,139.72,153.62,170.82,190,205.1,219.23000000000002,234.31,19.1,19.21,19.23,19.35,19.490000000000002,19.650000000000002,19.7,19.71,19.66,N/A,N/A +2012,2,1,20,30,102030,100840,99690,95.61,22.3,1.37,1.3,1.1500000000000001,1.07,1.11,1.24,1.41,1.6,1.94,95.64,90.65,81.06,57.1,40.53,332.67,323.12,315.73,306.24,19.02,19.38,19.46,19.37,19.28,19.21,19.14,19.09,18.94,N/A,N/A +2012,2,1,21,30,102050,100860,99700,96.2,264,1.29,1.23,1.05,0.97,1.04,1.31,1.59,1.8900000000000001,2.47,117.19,92.76,74.91,34.27,333.01,311.7,298.72,290.46,279.88,18.900000000000002,19.150000000000002,19.22,19.2,19.19,19.18,19.18,19.16,19.02,N/A,N/A +2012,2,1,22,30,101980,100790,99640,95.38,7.2,3.0300000000000002,3.4,3.36,3.46,3.6,3.74,3.89,4.0200000000000005,4.25,148.68,157.57,163.13,169.34,174.46,178.93,182.08,184.68,186.53,18.93,19.13,19.19,19.26,19.35,19.45,19.5,19.55,19.5,N/A,N/A +2012,2,1,23,30,101960,100770,99620,96.55,0,2.25,2.72,2.65,2.5500000000000003,2.49,2.45,2.52,2.62,3.17,130.18,141.96,149.19,156.03,162.82,169.54,179.35,189.07,203.04,18.62,18.92,19,19.02,19.01,18.96,19.07,19.2,19.44,N/A,N/A +2012,2,2,0,30,102000,100810,99660,94.73,0,3.56,4.34,4.43,4.45,4.46,4.45,4.49,4.53,4.59,153.54,158.42000000000002,161.70000000000002,165.22,168.51,171.61,174.54,177.19,182.77,18.85,19.02,19.2,19.59,19.75,19.77,19.68,19.59,19.35,N/A,N/A +2012,2,2,1,30,102000,100810,99660,92.88,8.4,5.18,6.55,6.8,6.51,6.37,6.3100000000000005,6.28,6.26,6.16,160.31,167.88,173.70000000000002,180.07,183.06,184.1,184.43,184.59,185.69,18.95,19.28,19.38,19.36,19.3,19.21,19.11,19.02,18.96,N/A,N/A +2012,2,2,2,30,102010,100810,99670,92.33,0,5.14,6.44,6.63,6.42,6.34,6.33,6.34,6.3500000000000005,6.54,175.98,179.54,182.24,185.36,187.1,188.06,189.89000000000001,191.78,193.13,19.1,19.32,19.3,19.14,18.94,18.73,19.07,19.52,19.93,N/A,N/A +2012,2,2,3,30,101990,100800,99650,92.98,0,4.62,5.98,6.29,6.25,6.18,6.1000000000000005,6.03,5.97,5.7,177.12,180.57,183.09,185.62,187.17000000000002,188.15,189.06,189.92000000000002,193.18,18.97,19.150000000000002,19.14,19,18.86,18.72,18.6,18.51,18.830000000000002,N/A,N/A +2012,2,2,4,30,101980,100790,99640,93.77,0.4,4.75,6.28,6.79,7.03,6.97,6.7700000000000005,6.71,6.68,6.7,177.73,178.04,179.43,182.88,188.48,194.71,197.08,198.47,198.81,18.75,18.88,18.92,18.97,19.03,19.080000000000002,19.04,18.98,18.81,N/A,N/A +2012,2,2,5,30,101990,100800,99640,94.56,0,4.18,5.41,5.79,5.99,6.08,6.11,6.0600000000000005,6.01,5.86,171.85,173.91,176.78,182.07,184.88,186.21,188.01,189.75,194.70000000000002,18.61,18.68,18.68,18.64,18.57,18.490000000000002,18.44,18.400000000000002,18.35,N/A,N/A +2012,2,2,6,30,102000,100800,99650,96.10000000000001,0,4.47,5.53,5.75,5.68,5.58,5.48,5.44,5.42,5.41,182.36,184.22,186.13,189,191.92000000000002,194.68,195.83,196.64000000000001,200.62,18.5,18.38,18.3,18.23,18.2,18.19,18.12,18.05,17.93,N/A,N/A +2012,2,2,7,30,102020,100820,99660,98.22,0,4.1,4.59,4.58,4.4,4.34,4.3500000000000005,4.37,4.38,4.43,164.74,171.75,180.59,194.97,199.83,199.96,200.18,200.4,200.89000000000001,18.06,18.02,18.05,18.150000000000002,18.13,18.04,17.95,17.86,17.66,N/A,N/A +2012,2,2,8,30,102000,100810,99650,97.75,0.4,2.48,3.1,3.14,2.96,2.9,2.89,2.9,2.91,2.92,144.11,155.54,170.72,195.39000000000001,202.62,201.41,200.99,200.74,200.45000000000002,18.2,18.09,18.080000000000002,18.14,18.1,18.01,17.91,17.82,17.6,N/A,N/A +2012,2,2,9,30,102000,100800,99650,98.93,0,2.34,2.33,2.22,2.15,2.13,2.15,2.16,2.17,2.19,153.37,167.78,176.74,186.16,194.56,202.28,204.29,205.27,206.41,17.93,17.98,18.02,18.03,18.01,17.97,17.88,17.79,17.6,N/A,N/A +2012,2,2,10,30,101990,100790,99640,99.2,0,2.1,2.2800000000000002,2.19,1.96,1.81,1.71,1.68,1.67,1.6600000000000001,173.41,189.31,198.22,204.71,210.13,214.78,216.59,217.65,219.5,17.88,17.84,17.830000000000002,17.81,17.75,17.67,17.59,17.51,17.34,N/A,N/A +2012,2,2,11,30,102010,100810,99650,99.29,0,2.82,2.7,2.5300000000000002,2.34,2.15,1.99,1.9100000000000001,1.84,1.41,128.37,128.37,128.72,129.48,130.61,131.81,132.27,132.87,138.79,17.69,17.59,17.54,17.48,17.41,17.34,17.25,17.18,17.12,N/A,N/A +2012,2,2,12,30,102010,100820,99650,99.24000000000001,0,3.13,3.3200000000000003,3.36,3.38,3.34,3.2800000000000002,3.2600000000000002,3.24,2.9,115.37,114.55,113.44,111.60000000000001,110.03,108.68,108.45,108.37,108.25,17.62,17.45,17.37,17.29,17.21,17.16,17.06,16.97,16.9,N/A,N/A +2012,2,2,13,30,102020,100820,99660,99.21000000000001,0,4.61,4.88,4.92,4.93,4.8,4.62,4.42,4.25,3.96,116.9,116.68,116.52,116.37,116.04,115.65,115.60000000000001,115.67,117.31,17.35,17.150000000000002,17.06,16.96,16.91,16.89,16.84,16.8,16.69,N/A,N/A +2012,2,2,14,30,102040,100840,99680,99.26,0,5.15,5.54,5.6000000000000005,5.62,5.62,5.62,5.47,5.29,4.61,123.92,124.05,124.11,124.14,124.15,124.16,124.28,124.36,123.76,17.42,17.21,17.11,17.02,16.92,16.82,16.76,16.71,16.81,N/A,N/A +2012,2,2,15,30,102040,100840,99670,97.26,0,4.99,5.29,5.42,5.64,5.76,5.83,5.65,5.48,5.26,120.38,120.29,120.3,120.34,120.56,120.86,121.5,122.06,122.85000000000001,17.43,17.13,16.98,16.830000000000002,16.72,16.64,16.54,16.44,16.21,N/A,N/A +2012,2,2,16,30,101990,100790,99630,96.49000000000001,0,4.93,5.22,5.34,5.54,5.66,5.73,5.65,5.5600000000000005,5.3,126.56,126.01,125.01,123.21000000000001,120.13,116.69,115.65,115.25,117.55,17.55,17.27,17.13,17,17.01,17.080000000000002,17.03,16.97,16.8,N/A,N/A +2012,2,2,17,30,101960,100760,99600,95.07000000000001,0,3.64,4.25,4.5600000000000005,4.88,5.11,5.29,5.38,5.44,5.39,109.14,108.24000000000001,108.04,108.24000000000001,109.48,111.16,113.42,115.63,121.19,17.89,17.71,17.67,17.66,17.63,17.6,17.56,17.54,17.66,N/A,N/A +2012,2,2,18,30,101940,100740,99580,95.85000000000001,0,4.42,4.78,5.11,5.8100000000000005,6.23,6.5,6.5600000000000005,6.59,6.58,106.33,106.55,106.64,106.74000000000001,107.32000000000001,108.09,109.99000000000001,111.89,116.21000000000001,18.03,17.77,17.71,17.740000000000002,17.78,17.82,17.78,17.73,17.7,N/A,N/A +2012,2,2,19,30,101910,100710,99550,96.41,0,4.16,4.54,4.9,5.6000000000000005,6.05,6.37,6.66,6.92,7.24,105.21000000000001,106.10000000000001,107.84,111.36,114.11,116.33,118.72,120.97,125.31,18.19,17.92,17.81,17.740000000000002,17.75,17.79,17.85,17.91,17.900000000000002,N/A,N/A +2012,2,2,20,30,101880,100680,99530,95.97,0,4.22,4.83,5.12,5.43,5.67,5.88,6.07,6.23,6.59,101.62,103.05,104.58,106.94,110.2,113.76,117.10000000000001,120.08,124.55,18.3,18.05,17.96,17.92,18,18.12,18.18,18.2,18.1,N/A,N/A +2012,2,2,21,30,101850,100660,99500,98.11,0,4.99,5.7700000000000005,6.0600000000000005,6.32,6.51,6.65,6.73,6.8100000000000005,7.140000000000001,98.91,99.82000000000001,100.81,102.33,104.81,107.7,111.77,115.55,121.08,18.34,18.14,18.03,17.92,17.8,17.7,17.55,17.41,17.31,N/A,N/A +2012,2,2,22,30,101850,100650,99490,97.83,0,5.48,6.3,6.55,6.7,6.8100000000000005,6.91,7.16,7.42,8.11,108.88,110.61,112.43,115.14,118.46000000000001,121.89,125.05,127.77,130.16,18.16,17.94,17.78,17.59,17.400000000000002,17.22,17.1,17.01,17.06,N/A,N/A +2012,2,2,23,30,101850,100650,99500,97.14,0,4.5200000000000005,5.67,6.23,6.8100000000000005,7.33,7.8100000000000005,8.19,8.53,8.950000000000001,110.10000000000001,111.11,112.11,113.56,115.69,118.13,122.39,126.63000000000001,133.78,18.27,18.16,18.11,18.07,18.03,17.990000000000002,17.92,17.84,17.51,N/A,N/A +2012,2,3,0,30,101850,100650,99500,95.09,1.5,5.82,6.73,7.04,7.3,7.53,7.75,7.930000000000001,8.08,8.3,120.32000000000001,121.43,121.91,122.01,122.14,122.28,123.67,125.2,129.65,18.39,18.28,18.2,18.11,18.05,18.02,18.07,18.14,18.52,N/A,N/A +2012,2,3,1,30,101810,100610,99460,97.16,0,6.75,7.9,8.38,8.870000000000001,9.3,9.69,9.85,9.96,9.93,94.61,95.86,97.16,99.2,102.33,105.89,110.44,114.55,119.13,18.240000000000002,18.1,18.03,17.97,17.96,17.96,18.02,18.080000000000002,18.42,N/A,N/A +2012,2,3,2,30,101790,100590,99440,97.87,0,7.74,8.88,9.36,9.870000000000001,10.25,10.55,10.74,10.870000000000001,10.66,95.96000000000001,97.86,100.10000000000001,103.85000000000001,108.05,112.28,116.34,119.81,121.97,18,17.85,17.85,17.98,18.42,18.98,19.92,20.75,20.57,N/A,N/A +2012,2,3,3,30,101790,100590,99440,96.11,0,7.8,8.98,9.450000000000001,9.93,10.47,11.01,11.3,11.51,11.620000000000001,108.32000000000001,108.15,108.13,108.25,109.52,111.33,113.94,116.32000000000001,118.29,18.23,18.080000000000002,18.02,17.990000000000002,18.18,18.48,19.080000000000002,19.63,19.75,N/A,N/A +2012,2,3,4,30,101790,100590,99440,96.71000000000001,0,6.88,8.07,8.56,9.05,9.52,9.98,10.44,10.84,10.93,124.03,123.52,123.09,122.56,122.01,121.46000000000001,120.89,120.43,121.34,18.3,18.14,18.05,17.95,17.88,17.82,17.77,17.73,17.77,N/A,N/A +2012,2,3,5,30,101740,100540,99390,98.21000000000001,0,7.45,8.48,8.86,9.21,9.57,9.92,10.370000000000001,10.83,11.75,116.10000000000001,116.54,117.02,117.74000000000001,118.88,120.2,122.63,125.18,130.94,18.04,17.94,17.89,17.82,17.78,17.740000000000002,17.72,17.7,17.54,N/A,N/A +2012,2,3,6,30,101710,100520,99360,97.53,0,8.55,9.81,10.28,10.73,11.16,11.58,11.950000000000001,12.280000000000001,12.56,115.10000000000001,115.89,116.71000000000001,117.94,119.82000000000001,121.97,125.35000000000001,128.68,135.38,18.43,18.28,18.22,18.18,18.16,18.16,18.16,18.17,18.1,N/A,N/A +2012,2,3,7,30,101710,100520,99370,96.10000000000001,0.4,6.34,7.6000000000000005,8.16,8.76,9.43,10.13,10.74,11.26,11.55,113.32000000000001,113.31,113.78,114.86,117.99000000000001,122.21000000000001,128.64000000000001,134.73,138.58,18.66,18.580000000000002,18.53,18.5,18.61,18.79,19.11,19.400000000000002,19.54,N/A,N/A +2012,2,3,8,30,101700,100510,99360,96.71000000000001,0.4,6.5,7.8,8.41,9.07,9.73,10.39,11.15,11.85,11.85,100.23,101.62,102.81,104.47,107.02,110.05,114.33,118.67,128.14000000000001,18.59,18.46,18.36,18.23,18.21,18.25,18.43,18.6,18.96,N/A,N/A +2012,2,3,9,30,101710,100520,99370,96.16,0,6.36,7.67,8.27,8.91,9.61,10.36,11.22,11.99,11.950000000000001,107.94,110.36,112.33,114.98,117.94,121.10000000000001,124.96000000000001,128.66,137.19,18.7,18.650000000000002,18.6,18.55,18.48,18.400000000000002,18.35,18.3,18.400000000000002,N/A,N/A +2012,2,3,10,30,101710,100520,99370,95.28,0,6.47,7.97,8.69,9.42,10.14,10.83,11.49,12.09,12.64,115.59,117.11,118.19,119.51,120.91,122.36,124.41,126.58,133.82,18.88,18.84,18.78,18.68,18.57,18.45,18.400000000000002,18.38,18.61,N/A,N/A +2012,2,3,11,30,101710,100520,99370,95.79,0,6.140000000000001,7.5200000000000005,8.14,8.78,9.39,9.99,10.53,11.05,12.15,123.58,124.19,124.53,124.86,125.31,125.82000000000001,127.3,128.94,136.54,18.78,18.73,18.68,18.61,18.54,18.45,18.39,18.35,18.43,N/A,N/A +2012,2,3,12,30,101740,100550,99400,96.12,0.7000000000000001,5.22,6.44,7.04,7.79,8.540000000000001,9.31,9.53,9.63,9.89,123.84,124.83,126.02,128.08,133.71,141.46,149.03,155.64000000000001,161.48,18.73,18.64,18.580000000000002,18.56,18.71,18.95,19.07,19.150000000000002,19.1,N/A,N/A +2012,2,3,13,30,101750,100560,99410,95.11,0,4.23,5.79,6.45,6.99,7.75,8.67,9.13,9.46,9.82,119.63,121.57000000000001,123.25,125.42,134.15,146.72,150.93,153.14000000000001,155.1,18.98,19.12,19.17,19.23,19.26,19.26,19.23,19.18,19.02,N/A,N/A +2012,2,3,14,30,101780,100590,99440,94.4,0,4.41,5.91,6.62,7.41,8.26,9.17,9.85,10.43,11.23,125.29,127.52,129.38,131.77,133.66,135.28,139.62,144.27,155.04,19.14,19.19,19.13,18.97,18.7,18.37,18.25,18.19,19.06,N/A,N/A +2012,2,3,15,30,101790,100600,99450,96.19,0,5.16,6.640000000000001,7.390000000000001,8.2,8.77,9.19,9.35,9.450000000000001,9.5,117.41,118.82000000000001,120.54,123.52,130.04,138.26,142.19,145.1,149.07,18.740000000000002,18.7,18.6,18.400000000000002,18.56,18.89,19.150000000000002,19.36,19.32,N/A,N/A +2012,2,3,16,30,101770,100580,99440,95.29,0,6.140000000000001,7.65,8.38,9.16,9.85,10.46,10.63,10.69,10.74,114.59,116.89,119.8,124.78,132.43,141.37,143.95000000000002,145.06,146.73,18.94,18.95,18.97,19.02,19.400000000000002,19.92,19.990000000000002,19.98,19.87,N/A,N/A +2012,2,3,17,30,101750,100560,99420,94.5,0,5.92,7.6000000000000005,8.41,9.34,10,10.47,10.290000000000001,10.02,9.82,117.16,118.83,120.52,123.47,129,136.08,141.3,145.44,149.29,19.16,19.18,19.2,19.28,19.45,19.67,19.73,19.76,19.76,N/A,N/A +2012,2,3,18,30,101730,100550,99400,95.71000000000001,0,5.83,7.23,7.890000000000001,8.63,9.32,9.96,10.44,10.85,11.19,116.46000000000001,117.69,118.78,120.41,123.75,128.04,136.21,144.25,149.31,18.94,18.92,18.92,18.94,19,19.080000000000002,19.07,19.080000000000002,19.81,N/A,N/A +2012,2,3,19,30,101740,100550,99410,95.7,0,6.2700000000000005,7.65,8.290000000000001,8.98,9.67,10.36,10.64,10.8,10.97,112.67,113.9,115.01,116.63,118.64,120.9,128.75,136.86,143.8,19.02,18.96,18.92,18.900000000000002,18.900000000000002,18.94,19.14,19.35,19.38,N/A,N/A +2012,2,3,20,30,101700,100510,99370,95.05,0,6.63,8.16,8.88,9.66,10.34,10.96,11.290000000000001,11.53,11.42,114.54,115.89,117.21000000000001,119.17,121.93,125.14,129.99,134.7,140.4,19.12,19.14,19.16,19.22,19.32,19.43,19.55,19.66,19.64,N/A,N/A +2012,2,3,21,30,101690,100500,99360,93.92,0,6.99,8.58,9.34,10.200000000000001,10.86,11.370000000000001,11.290000000000001,11.09,10.85,118.89,120.37,121.88,124.33,128.19,132.86,137.01,140.53,142.57,19.26,19.34,19.42,19.57,19.830000000000002,20.16,20.31,20.41,20.240000000000002,N/A,N/A +2012,2,3,22,30,101670,100480,99340,94.88,0,6.63,8.120000000000001,8.81,9.58,10.44,11.370000000000001,11.77,12.040000000000001,12.01,114.3,115.4,116.33,117.62,119.14,120.81,127.18,133.6,139.89000000000001,18.97,18.96,18.94,18.94,18.97,19.01,19.27,19.52,19.68,N/A,N/A +2012,2,3,23,30,101660,100470,99330,94.36,0,6.88,8.55,9.38,10.33,11.32,12.32,12.35,12.21,11.9,115.41,116.83,117.93,119.33,121.44,124.01,131.8,139.4,143.86,19.05,19.080000000000002,19.1,19.14,19.25,19.400000000000002,19.82,20.240000000000002,20.38,N/A,N/A +2012,2,4,0,30,101650,100470,99320,93.10000000000001,0,7.71,9.5,10.32,11.22,12.09,12.91,13.33,13.63,12.97,120.81,122.63,124.09,126.13000000000001,128.65,131.43,136.70000000000002,142,149.15,19.35,19.39,19.39,19.41,19.45,19.51,19.79,20.09,20.53,N/A,N/A +2012,2,4,1,30,101660,100480,99330,92.57000000000001,0,7.87,9.8,10.66,11.55,12.31,12.99,13.46,13.84,13.68,125.38000000000001,126.95,128.28,130.09,132.44,135.1,139.42000000000002,143.74,152.22,19.45,19.55,19.57,19.61,19.63,19.650000000000002,19.59,19.51,19.64,N/A,N/A +2012,2,4,2,30,101690,100500,99360,92.60000000000001,0,7.43,9.27,10.08,10.86,11.49,12.02,12.15,12.17,11.23,136.44,137.24,138.1,139.6,142.32,145.79,150.08,154.12,156.52,19.45,19.5,19.47,19.41,19.36,19.31,19.37,19.44,19.44,N/A,N/A +2012,2,4,3,30,101690,100500,99360,92.24,0,8.28,10.27,11.09,11.8,12.280000000000001,12.64,12.790000000000001,12.88,12.73,148.55,149.09,149.22,149.02,149.12,149.38,150.85,152.43,156.43,19.52,19.61,19.62,19.59,19.55,19.5,19.43,19.36,19.22,N/A,N/A +2012,2,4,4,30,101700,100520,99370,92.38,0,6.49,8.14,8.78,9.31,9.790000000000001,10.25,10.6,10.9,11.4,142.61,142.52,142.33,141.87,141.94,142.32,143.94,145.91,156.20000000000002,19.52,19.62,19.61,19.54,19.47,19.39,19.330000000000002,19.29,19.17,N/A,N/A +2012,2,4,5,30,101690,100510,99360,92.60000000000001,0,6.18,8.23,9.13,9.91,10.58,11.18,11.55,11.84,11.55,124.53,127.08,129.44,132.78,136.83,141.22,146.02,150.57,161.17000000000002,19.490000000000002,19.62,19.6,19.51,19.41,19.31,19.21,19.13,18.97,N/A,N/A +2012,2,4,6,30,101700,100510,99360,94.36,0,5.79,7.640000000000001,8.5,9.28,9.88,10.370000000000001,10.58,10.71,10.77,137.70000000000002,141.38,144.25,147.83,151.59,155.38,159.05,162.33,167.06,19.26,19.26,19.2,19.080000000000002,18.92,18.75,18.7,18.73,19.81,N/A,N/A +2012,2,4,7,30,101700,100510,99360,95.14,0.4,4.75,6.25,7.0200000000000005,7.9,8.870000000000001,9.93,10.32,10.53,10.55,142.16,143.05,144.04,145.72,148.5,152,159.39000000000001,166.79,172.86,19.12,19.11,19.07,19.01,18.72,18.330000000000002,18.76,19.330000000000002,20.71,N/A,N/A +2012,2,4,8,30,101710,100520,99380,95.47,0.4,4.8100000000000005,6.36,7.22,8.3,9.38,10.47,10.85,10.99,10.450000000000001,144.67000000000002,146.46,148.26,151.20000000000002,154.42000000000002,157.87,162.89000000000001,167.66,172.29,19.04,19.080000000000002,19.06,19,18.77,18.46,18.66,18.990000000000002,20.42,N/A,N/A +2012,2,4,9,30,101730,100540,99390,95.26,0.4,5.01,6.7,7.54,8.42,9.22,9.97,10.02,9.950000000000001,10.07,154.62,158.49,161.6,165.65,169.94,174.37,176.27,177.56,179.71,19.080000000000002,18.94,18.72,18.36,17.94,17.490000000000002,18.88,20.35,21.240000000000002,N/A,N/A +2012,2,4,10,30,101730,100540,99390,95.94,0.4,4.04,5.92,6.99,8.13,8.92,9.46,9.5,9.42,9.33,162.65,165.27,167.32,169.84,172.62,175.44,178.38,180.99,183.29,18.96,18.75,18.57,18.32,18.21,18.150000000000002,19.3,20.580000000000002,20.78,N/A,N/A +2012,2,4,11,30,101750,100560,99420,96.57000000000001,0,3.52,5.33,6.4,7.55,8.26,8.65,8.66,8.61,8.6,166.62,169.42000000000002,172.51,177.6,180.96,183.06,183.92000000000002,184.43,184.36,18.84,18.73,18.61,18.46,18.43,18.46,19.830000000000002,21.27,20.91,N/A,N/A +2012,2,4,12,30,101770,100580,99430,97.16,0.7000000000000001,3.6,5.26,6.140000000000001,6.890000000000001,7.49,7.97,8.290000000000001,8.56,8.83,175.91,182.21,186.19,189.32,191.99,194.32,195.24,195.84,196.87,18.7,18.43,18.03,17.31,17.82,18.95,19.86,20.61,20.8,N/A,N/A +2012,2,4,13,30,101820,100630,99470,97.64,0,0.51,1.29,1.8800000000000001,2.36,2.7600000000000002,3.09,3.5300000000000002,4.0200000000000005,5.58,191.85,179.20000000000002,173.23,179.83,185.20000000000002,189.6,193.17000000000002,196.56,203.51,18.75,18.68,18.580000000000002,18.47,18.35,18.23,18.14,18.080000000000002,18.67,N/A,N/A +2012,2,4,14,30,101900,100710,99550,98.32000000000001,0,1.12,1.48,1.52,1.54,1.6,1.67,1.82,1.98,2.46,290.03000000000003,281.81,277.2,273.75,270.73,267.94,262.21,255.98000000000002,243.31,18.61,18.580000000000002,18.54,18.47,18.39,18.31,18.240000000000002,18.18,18.07,N/A,N/A +2012,2,4,15,30,101940,100740,99590,98.87,0,0.8,0.86,0.7000000000000001,0.49,0.27,0.13,0.26,0.58,1.1,86.62,84.28,85.25,88.57000000000001,127.4,159.36,184.70000000000002,233.4,237.5,18.5,18.45,18.41,18.38,18.330000000000002,18.28,18.240000000000002,18.2,18.06,N/A,N/A +2012,2,4,16,30,101950,100750,99600,98.73,0,0.8,1.1300000000000001,1.28,1.56,1.81,2.0300000000000002,2.11,2.17,2.23,17.44,342.75,324.53000000000003,312.3,303.64,297.47,294.64,292.61,287.88,18.59,18.650000000000002,18.650000000000002,18.63,18.59,18.53,18.44,18.35,18.17,N/A,N/A +2012,2,4,17,30,101940,100750,99590,99.01,0,1.07,1.44,1.46,1.44,1.3800000000000001,1.3,1.27,1.24,1.21,33.3,21.28,13.34,5.5600000000000005,356.34000000000003,347.21,342.89,339.89,334.97,18.6,18.57,18.55,18.51,18.46,18.400000000000002,18.32,18.23,18.06,N/A,N/A +2012,2,4,18,30,101960,100760,99610,99.31,0,2.19,2.73,2.83,2.69,2.62,2.58,2.3000000000000003,2.04,1.6300000000000001,21.69,15.56,11.93,9.3,7.54,6.23,3.46,0.9,352.42,18.5,18.43,18.39,18.34,18.26,18.18,18.12,18.06,17.96,N/A,N/A +2012,2,4,19,30,101960,100760,99610,99.32000000000001,0,3.1,3.5100000000000002,3.67,3.7800000000000002,3.74,3.63,3.49,3.37,3.0500000000000003,14.32,14.6,14.31,13.44,12.530000000000001,11.66,11.02,10.450000000000001,8.120000000000001,18.42,18.26,18.26,18.330000000000002,18.28,18.18,18.080000000000002,18,17.85,N/A,N/A +2012,2,4,20,30,101930,100740,99580,99.33,0,2.4,3.0500000000000003,3.35,3.49,3.54,3.56,3.48,3.39,3.22,26.43,26.05,25.12,23.35,21.46,19.59,17.63,15.85,11.65,18.14,18.39,18.46,18.38,18.3,18.23,18.14,18.06,17.87,N/A,N/A +2012,2,4,21,30,101900,100710,99560,99.35000000000001,0,2.34,3.06,3.37,3.45,3.49,3.52,3.54,3.56,3.6,53.480000000000004,50.74,48.04,44.43,40.37,36.25,32.05,28.2,20.76,17.82,18.48,18.72,18.67,18.63,18.61,18.56,18.5,18.35,N/A,N/A +2012,2,4,22,30,101890,100690,99540,99.24000000000001,0,2.2600000000000002,2.7600000000000002,2.91,2.84,2.81,2.8000000000000003,2.8000000000000003,2.82,2.85,92.03,80.57000000000001,73.03,66.85,60.29,53.79,47,40.78,28.76,17.21,18.26,18.69,18.7,18.71,18.73,18.72,18.71,18.61,N/A,N/A +2012,2,4,23,30,101920,100720,99560,99.21000000000001,0,0.21,0.56,0.93,1.4000000000000001,1.83,2.19,2.52,2.82,3.33,44.12,42.54,38.15,20.26,8.43,1.24,356.81,353.06,348.23,17.02,16.84,17.05,17.66,17.94,18.06,18.03,17.97,17.71,N/A,N/A +2012,2,5,0,30,101970,100770,99600,98.93,0,4.26,5.25,5.75,6.21,6.5600000000000005,6.8500000000000005,7.04,7.21,7.3500000000000005,322.79,327.29,329.65000000000003,331.7,333.32,334.66,335.88,336.98,339.08,17.42,17.38,17.37,17.32,17.240000000000002,17.13,16.990000000000002,16.85,16.53,N/A,N/A +2012,2,5,1,30,102020,100810,99650,82.58,0,8.81,9.52,9.66,9.71,9.72,9.71,9.69,9.66,9.61,338.57,338.92,339.17,339.43,339.7,339.97,340.32,340.68,341.84000000000003,17.19,16.84,16.66,16.46,16.27,16.09,15.89,15.71,15.34,N/A,N/A +2012,2,5,2,30,102080,100880,99700,80.68,0,9.26,10.03,10.19,10.25,10.28,10.28,10.26,10.24,10.17,346.48,346.73,346.87,347.02,347.17,347.32,347.51,347.69,348.18,16.740000000000002,16.35,16.16,15.96,15.76,15.58,15.38,15.19,14.81,N/A,N/A +2012,2,5,3,30,102120,100910,99730,78.88,0,9.34,10.1,10.27,10.34,10.38,10.39,10.39,10.370000000000001,10.33,354.47,354.85,355.06,355.28000000000003,355.5,355.71,355.95,356.17,356.72,16.41,16,15.8,15.6,15.4,15.21,15.01,14.82,14.44,N/A,N/A +2012,2,5,4,30,102130,100920,99740,76.47,0,9.15,9.9,10.06,10.13,10.17,10.19,10.200000000000001,10.200000000000001,10.19,4.0600000000000005,4.15,4.21,4.26,4.33,4.4,4.49,4.59,4.87,16.11,15.68,15.47,15.27,15.07,14.89,14.69,14.5,14.11,N/A,N/A +2012,2,5,5,30,102130,100910,99740,74.07000000000001,0,8.43,9.1,9.25,9.33,9.38,9.41,9.43,9.450000000000001,9.48,7.51,7.73,7.86,7.98,8.1,8.22,8.370000000000001,8.5,8.84,16.06,15.63,15.43,15.23,15.030000000000001,14.85,14.65,14.46,14.07,N/A,N/A +2012,2,5,6,30,102170,100960,99790,73.51,0,8.370000000000001,9.05,9.21,9.290000000000001,9.33,9.36,9.370000000000001,9.38,9.38,358.57,358.81,358.99,359.18,359.35,359.52,359.69,359.86,0.24,16.15,15.73,15.530000000000001,15.33,15.13,14.94,14.73,14.540000000000001,14.15,N/A,N/A +2012,2,5,7,30,102210,101000,99820,74.22,0,8.36,9,9.14,9.21,9.24,9.27,9.27,9.26,9.24,356.79,356.89,356.98,357.09000000000003,357.2,357.3,357.42,357.53000000000003,357.78000000000003,15.81,15.370000000000001,15.17,14.96,14.75,14.56,14.36,14.17,13.780000000000001,N/A,N/A +2012,2,5,8,30,102220,101000,99820,83.66,0,10.06,10.86,11.040000000000001,11.13,11.16,11.18,11.18,11.16,11.11,2.87,3.16,3.3200000000000003,3.46,3.61,3.74,3.89,4.03,4.34,14.43,13.89,13.66,13.450000000000001,13.24,13.05,12.85,12.65,12.27,N/A,N/A +2012,2,5,9,30,102210,100990,99810,82.05,0.4,10.13,10.950000000000001,11.14,11.24,11.290000000000001,11.33,11.35,11.36,11.36,9.120000000000001,9.200000000000001,9.26,9.32,9.38,9.44,9.5,9.56,9.700000000000001,14.41,13.870000000000001,13.64,13.43,13.22,13.030000000000001,12.82,12.63,12.24,N/A,N/A +2012,2,5,10,30,102240,101020,99830,78.25,0,9.74,10.52,10.69,10.78,10.83,10.86,10.870000000000001,10.88,10.870000000000001,7.69,7.8500000000000005,7.96,8.06,8.17,8.27,8.38,8.49,8.72,14.33,13.790000000000001,13.57,13.35,13.14,12.950000000000001,12.74,12.55,12.16,N/A,N/A +2012,2,5,11,30,102300,101070,99880,73.63,0,10.02,10.790000000000001,10.96,11.040000000000001,11.07,11.09,11.09,11.09,11.06,0.48,0.8300000000000001,1.04,1.24,1.44,1.6300000000000001,1.83,2.0300000000000002,2.43,13.92,13.35,13.13,12.91,12.700000000000001,12.51,12.3,12.1,11.71,N/A,N/A +2012,2,5,12,30,102300,101070,99880,74.76,0,10.96,11.86,12.05,12.15,12.200000000000001,12.23,12.24,12.24,12.21,2.8000000000000003,3.0700000000000003,3.25,3.41,3.5700000000000003,3.71,3.86,4,4.28,13.31,12.700000000000001,12.46,12.24,12.02,11.82,11.61,11.42,11.03,N/A,N/A +2012,2,5,13,30,102330,101100,99900,72.05,0,11.51,12.46,12.67,12.76,12.81,12.83,12.83,12.82,12.77,8.68,8.89,9.01,9.120000000000001,9.23,9.33,9.44,9.55,9.790000000000001,12.73,12.08,11.83,11.61,11.39,11.200000000000001,10.99,10.8,10.41,N/A,N/A +2012,2,5,14,30,102390,101160,99960,73.54,0,10.08,10.83,11,11.08,11.13,11.16,11.17,11.17,11.16,7.05,6.94,6.88,6.82,6.75,6.7,6.63,6.57,6.45,12.5,11.870000000000001,11.620000000000001,11.4,11.18,10.99,10.78,10.59,10.19,N/A,N/A +2012,2,5,15,30,102410,101180,99980,71.28,0,11.15,12.05,12.26,12.370000000000001,12.43,12.47,12.48,12.49,12.49,8.38,8.48,8.56,8.63,8.700000000000001,8.76,8.83,8.9,9.05,12.11,11.43,11.18,10.950000000000001,10.73,10.53,10.32,10.120000000000001,9.73,N/A,N/A +2012,2,5,16,30,102420,101190,99980,72.48,0,10.05,10.76,10.9,10.950000000000001,10.97,10.97,10.950000000000001,10.93,10.86,3.06,3.38,3.5500000000000003,3.72,3.88,4.0200000000000005,4.19,4.3500000000000005,4.7,11.83,11.17,10.92,10.700000000000001,10.48,10.28,10.08,9.88,9.5,N/A,N/A +2012,2,5,17,30,102410,101180,99970,73.74,0,9.84,10.55,10.69,10.75,10.790000000000001,10.8,10.8,10.790000000000001,10.76,2.92,3.27,3.46,3.63,3.8000000000000003,3.95,4.12,4.2700000000000005,4.61,11.51,10.84,10.59,10.36,10.14,9.94,9.74,9.540000000000001,9.15,N/A,N/A +2012,2,5,18,30,102410,101180,99970,70.92,0,9.58,10.27,10.42,10.49,10.53,10.56,10.57,10.57,10.56,0.41000000000000003,0.5700000000000001,0.7000000000000001,0.8200000000000001,0.9400000000000001,1.05,1.16,1.27,1.51,11.67,11.01,10.76,10.540000000000001,10.32,10.120000000000001,9.91,9.72,9.32,N/A,N/A +2012,2,5,19,30,102430,101200,100000,67.17,0,8.55,9.15,9.290000000000001,9.370000000000001,9.41,9.450000000000001,9.46,9.48,9.49,359.81,359.95,0.16,0.33,0.49,0.63,0.76,0.9,1.16,12.120000000000001,11.51,11.27,11.05,10.83,10.64,10.43,10.23,9.84,N/A,N/A +2012,2,5,20,30,102360,101130,99940,64.04,0,8.66,9.31,9.47,9.56,9.620000000000001,9.67,9.700000000000001,9.72,9.76,358.49,358.66,358.76,358.86,358.97,359.07,359.19,359.3,359.53000000000003,13.18,12.61,12.38,12.17,11.950000000000001,11.75,11.540000000000001,11.35,10.950000000000001,N/A,N/A +2012,2,5,21,30,102320,101100,99900,61.06,0,9.38,10.07,10.21,10.27,10.3,10.32,10.32,10.32,10.290000000000001,357.02,357.45,357.68,357.89,358.1,358.29,358.49,358.68,359.08,13.77,13.22,12.99,12.780000000000001,12.57,12.370000000000001,12.16,11.97,11.58,N/A,N/A +2012,2,5,22,30,102310,101090,99900,61,0,9.290000000000001,10.01,10.17,10.27,10.32,10.36,10.38,10.39,10.4,0.86,0.97,1.08,1.18,1.27,1.36,1.44,1.53,1.69,13.950000000000001,13.41,13.18,12.96,12.75,12.55,12.34,12.15,11.75,N/A,N/A +2012,2,5,23,30,102390,101160,99970,56.77,0,9.34,10.05,10.200000000000001,10.27,10.31,10.33,10.34,10.34,10.33,354.63,354.76,354.87,354.96,355.04,355.12,355.21,355.3,355.5,13.84,13.290000000000001,13.06,12.85,12.64,12.450000000000001,12.24,12.05,11.65,N/A,N/A +2012,2,6,0,30,102390,101170,99970,62.4,0,10.18,10.94,11.08,11.13,11.14,11.14,11.120000000000001,11.1,11.03,357.7,358.18,358.46,358.73,358.99,359.24,359.5,359.75,0.29,13.56,12.98,12.75,12.530000000000001,12.32,12.13,11.92,11.73,11.34,N/A,N/A +2012,2,6,1,30,102430,101200,100000,63.15,0,11.1,12.02,12.22,12.32,12.38,12.41,12.43,12.44,12.43,5.61,5.72,5.7700000000000005,5.8100000000000005,5.86,5.89,5.94,5.98,6.08,13.05,12.42,12.18,11.96,11.74,11.540000000000001,11.33,11.13,10.74,N/A,N/A +2012,2,6,2,30,102460,101230,100030,65.19,0,11.28,12.26,12.51,12.65,12.74,12.81,12.85,12.88,12.92,13.81,13.700000000000001,13.620000000000001,13.540000000000001,13.450000000000001,13.38,13.3,13.23,13.08,12.98,12.34,12.1,11.870000000000001,11.65,11.450000000000001,11.24,11.040000000000001,10.65,N/A,N/A +2012,2,6,3,30,102460,101230,100030,63.34,0,11.290000000000001,12.24,12.47,12.59,12.67,12.72,12.75,12.780000000000001,12.8,14.08,14.13,14.16,14.200000000000001,14.24,14.280000000000001,14.33,14.370000000000001,14.47,13.030000000000001,12.39,12.15,11.93,11.71,11.51,11.3,11.1,10.71,N/A,N/A +2012,2,6,4,30,102440,101210,100010,63.45,0,11.26,12.22,12.43,12.55,12.620000000000001,12.66,12.69,12.700000000000001,12.71,18.92,18.98,19.01,19.03,19.07,19.09,19.13,19.17,19.25,13,12.36,12.120000000000001,11.9,11.68,11.48,11.27,11.07,10.67,N/A,N/A +2012,2,6,5,30,102450,101220,100020,64.78,0,10.450000000000001,11.28,11.47,11.57,11.620000000000001,11.66,11.68,11.69,11.69,21.830000000000002,22.09,22.21,22.31,22.42,22.52,22.62,22.73,22.93,12.74,12.120000000000001,11.88,11.65,11.44,11.24,11.03,10.83,10.44,N/A,N/A +2012,2,6,6,30,102480,101240,100040,66.19,0,9.64,10.370000000000001,10.53,10.620000000000001,10.67,10.700000000000001,10.71,10.72,10.72,24.01,24.29,24.46,24.62,24.77,24.900000000000002,25.04,25.18,25.44,12.5,11.89,11.65,11.43,11.21,11.01,10.8,10.61,10.21,N/A,N/A +2012,2,6,7,30,102480,101240,100040,68.1,0,10.07,10.81,10.96,11.03,11.06,11.08,11.07,11.06,11.02,25.26,25.51,25.68,25.810000000000002,25.95,26.080000000000002,26.21,26.34,26.59,12.05,11.4,11.16,10.94,10.72,10.52,10.31,10.11,9.72,N/A,N/A +2012,2,6,8,30,102490,101260,100050,68.13,0,9.32,9.98,10.120000000000001,10.19,10.22,10.24,10.24,10.23,10.200000000000001,22.830000000000002,23.12,23.31,23.48,23.64,23.79,23.94,24.080000000000002,24.38,11.82,11.19,10.94,10.72,10.5,10.3,10.09,9.9,9.5,N/A,N/A +2012,2,6,9,30,102480,101240,100040,68.91,0,9.370000000000001,10.03,10.16,10.23,10.26,10.27,10.27,10.27,10.24,27.42,27.61,27.75,27.87,27.990000000000002,28.1,28.22,28.34,28.580000000000002,11.64,10.99,10.74,10.52,10.3,10.11,9.9,9.700000000000001,9.31,N/A,N/A +2012,2,6,10,30,102490,101250,100050,70.08,0,8.66,9.24,9.35,9.4,9.42,9.43,9.42,9.41,9.38,29.55,29.77,29.91,30.03,30.150000000000002,30.26,30.38,30.490000000000002,30.72,11.6,10.97,10.73,10.51,10.290000000000001,10.09,9.89,9.69,9.3,N/A,N/A +2012,2,6,11,30,102500,101260,100060,72.69,0,8.77,9.33,9.43,9.47,9.48,9.48,9.46,9.44,9.39,25.490000000000002,25.92,26.2,26.44,26.69,26.91,27.150000000000002,27.38,27.84,11.36,10.71,10.47,10.25,10.03,9.83,9.63,9.43,9.040000000000001,N/A,N/A +2012,2,6,12,30,102500,101260,100050,74.76,0,8.47,9,9.09,9.120000000000001,9.120000000000001,9.120000000000001,9.09,9.07,9.01,22.34,22.71,22.96,23.19,23.41,23.62,23.830000000000002,24.04,24.48,11.17,10.53,10.290000000000001,10.07,9.85,9.65,9.450000000000001,9.25,8.86,N/A,N/A +2012,2,6,13,30,102520,101280,100070,77.34,0,8.620000000000001,9.15,9.24,9.27,9.28,9.27,9.25,9.23,9.17,20.580000000000002,20.89,21.080000000000002,21.26,21.43,21.59,21.76,21.92,22.26,10.59,9.93,9.68,9.450000000000001,9.23,9.03,8.82,8.63,8.24,N/A,N/A +2012,2,6,14,30,102540,101290,100090,77.36,0,8.64,9.18,9.28,9.31,9.32,9.32,9.31,9.290000000000001,9.23,20.8,21.07,21.240000000000002,21.400000000000002,21.54,21.68,21.830000000000002,21.97,22.27,10.49,9.82,9.57,9.35,9.13,8.93,8.72,8.53,8.14,N/A,N/A +2012,2,6,15,30,102540,101300,100090,76.38,0,7.640000000000001,8.08,8.16,8.19,8.19,8.19,8.18,8.16,8.11,22.26,22.43,22.54,22.650000000000002,22.76,22.86,22.97,23.080000000000002,23.31,10.49,9.85,9.61,9.39,9.17,8.98,8.77,8.58,8.2,N/A,N/A +2012,2,6,16,30,102530,101290,100080,75.64,0,6.9,7.28,7.3500000000000005,7.37,7.38,7.38,7.36,7.3500000000000005,7.32,20.41,20.5,20.55,20.61,20.67,20.72,20.79,20.85,21.01,10.74,10.13,9.89,9.68,9.46,9.27,9.06,8.870000000000001,8.48,N/A,N/A +2012,2,6,17,30,102490,101250,100040,72.99,0,6.3100000000000005,6.66,6.72,6.74,6.76,6.76,6.76,6.75,6.73,19.03,18.92,18.82,18.740000000000002,18.650000000000002,18.57,18.490000000000002,18.400000000000002,18.25,11.15,10.57,10.34,10.120000000000001,9.91,9.72,9.52,9.33,8.950000000000001,N/A,N/A +2012,2,6,18,30,102440,101210,100010,68.49,0,5.21,5.5,5.5600000000000005,5.6000000000000005,5.63,5.65,5.67,5.69,5.71,21.3,21.21,21.12,21.03,20.94,20.86,20.76,20.68,20.5,11.99,11.46,11.24,11.03,10.82,10.63,10.43,10.24,9.85,N/A,N/A +2012,2,6,19,30,102410,101170,99980,63.49,0,3.7,3.89,3.93,3.96,3.99,4.01,4.03,4.05,4.1,27.44,26.25,25.490000000000002,24.78,24.09,23.47,22.79,22.150000000000002,20.85,12.88,12.41,12.200000000000001,12,11.8,11.61,11.41,11.22,10.83,N/A,N/A +2012,2,6,20,30,102350,101120,99930,62.67,0,2.05,2.08,2.06,2.04,2.0300000000000002,2.0100000000000002,1.99,1.98,1.96,61.08,58.42,56.59,54.82,52.97,51.27,49.19,47.2,42.74,13.48,13.06,12.86,12.66,12.46,12.280000000000001,12.08,11.89,11.52,N/A,N/A +2012,2,6,21,30,102300,101080,99890,63.5,0,1.83,1.8,1.75,1.69,1.6400000000000001,1.58,1.52,1.47,1.36,91.5,89.55,88.14,86.65,84.9,83.28,80.83,78.32000000000001,70.94,13.950000000000001,13.540000000000001,13.34,13.15,12.950000000000001,12.77,12.58,12.39,12.030000000000001,N/A,N/A +2012,2,6,22,30,102260,101040,99860,61.86,0,0.5700000000000001,0.49,0.44,0.4,0.36,0.33,0.33,0.34,0.43,95.43,87.60000000000001,81.3,73.95,63.51,53.63,38.85,25.66,1.42,14.38,13.98,13.8,13.6,13.41,13.23,13.02,12.84,12.46,N/A,N/A +2012,2,6,23,30,102240,101020,99840,62.410000000000004,0,0.38,0.33,0.3,0.27,0.27,0.27,0.29,0.32,0.43,85.31,72.9,63.42,52.42,39.49,27.02,14.58,3.5300000000000002,347.17,14.700000000000001,14.32,14.13,13.94,13.74,13.56,13.36,13.17,12.790000000000001,N/A,N/A +2012,2,7,0,30,102240,101020,99840,63,0,0.9500000000000001,0.9,0.86,0.81,0.77,0.73,0.6900000000000001,0.66,0.6,93.74,90.17,87.76,85.13,81.88,78.83,74.11,69.23,54.480000000000004,14.950000000000001,14.58,14.39,14.200000000000001,14,13.82,13.620000000000001,13.43,13.06,N/A,N/A +2012,2,7,1,30,102220,101010,99820,62.690000000000005,0,0.84,0.85,0.85,0.85,0.86,0.87,0.89,0.91,1.01,55.980000000000004,50.81,47.51,44.17,40.68,37.4,33.55,29.87,21.7,15.21,14.85,14.66,14.47,14.27,14.09,13.9,13.71,13.34,N/A,N/A +2012,2,7,2,30,102230,101010,99830,58.5,0,2.36,2.5500000000000003,2.62,2.67,2.73,2.7800000000000002,2.83,2.88,2.99,21.42,22.19,22.650000000000002,23.09,23.52,23.91,24.35,24.76,25.69,15.51,15.14,14.950000000000001,14.76,14.56,14.370000000000001,14.17,13.98,13.59,N/A,N/A +2012,2,7,3,30,102240,101030,99840,64.35,0,3.86,4.05,4.09,4.1,4.11,4.11,4.11,4.11,4.1,37.18,37.7,38.04,38.36,38.67,38.94,39.230000000000004,39.49,40.03,15.540000000000001,15.15,14.96,14.76,14.56,14.370000000000001,14.16,13.98,13.58,N/A,N/A +2012,2,7,4,30,102240,101020,99840,61.76,0,5.3,5.53,5.54,5.5200000000000005,5.49,5.45,5.41,5.37,5.2700000000000005,33.59,34.12,34.45,34.77,35.09,35.38,35.71,36.02,36.67,15.290000000000001,14.88,14.68,14.49,14.280000000000001,14.1,13.89,13.700000000000001,13.32,N/A,N/A +2012,2,7,5,30,102220,101000,99810,63.190000000000005,0,5.04,5.29,5.32,5.32,5.3100000000000005,5.29,5.2700000000000005,5.25,5.2,32.39,33.14,33.61,34.05,34.49,34.88,35.33,35.75,36.62,15.09,14.67,14.47,14.27,14.07,13.89,13.68,13.49,13.11,N/A,N/A +2012,2,7,6,30,102240,101020,99830,67.86,0,5.0600000000000005,5.3100000000000005,5.34,5.34,5.33,5.32,5.29,5.2700000000000005,5.22,41.5,42.22,42.660000000000004,43.06,43.46,43.82,44.22,44.59,45.38,14.92,14.51,14.31,14.11,13.91,13.73,13.52,13.33,12.950000000000001,N/A,N/A +2012,2,7,7,30,102250,101030,99850,71.48,0,4.9,5.15,5.2,5.22,5.22,5.22,5.21,5.2,5.17,47.92,48.6,49.03,49.43,49.82,50.17,50.54,50.9,51.660000000000004,14.91,14.49,14.3,14.1,13.9,13.71,13.51,13.32,12.93,N/A,N/A +2012,2,7,8,30,102230,101010,99830,72.23,0,4.83,5.09,5.14,5.15,5.16,5.17,5.16,5.16,5.14,48.370000000000005,49.22,49.730000000000004,50.21,50.67,51.08,51.53,51.94,52.81,15.06,14.65,14.46,14.26,14.06,13.88,13.67,13.48,13.09,N/A,N/A +2012,2,7,9,30,102220,101000,99820,74.67,0,4.79,5.04,5.07,5.08,5.08,5.07,5.05,5.04,5,52.79,53.53,53.93,54.31,54.68,55.02,55.38,55.72,56.46,15.030000000000001,14.63,14.43,14.23,14.030000000000001,13.84,13.64,13.450000000000001,13.06,N/A,N/A +2012,2,7,10,30,102210,100990,99810,77.47,0,5.18,5.47,5.5200000000000005,5.54,5.54,5.54,5.54,5.53,5.5,62.21,62.99,63.440000000000005,63.870000000000005,64.27,64.64,65.04,65.41,66.21000000000001,14.98,14.57,14.370000000000001,14.17,13.97,13.780000000000001,13.58,13.39,13,N/A,N/A +2012,2,7,11,30,102220,101000,99820,76.09,0,4.88,5.14,5.19,5.21,5.22,5.22,5.22,5.21,5.19,63.95,64.33,64.58,64.81,65.02,65.21000000000001,65.42,65.61,66.01,15.07,14.66,14.46,14.26,14.06,13.88,13.67,13.48,13.09,N/A,N/A +2012,2,7,12,30,102220,101000,99820,76.12,0,5.26,5.5600000000000005,5.61,5.63,5.64,5.64,5.63,5.62,5.6000000000000005,65.98,66.24,66.38,66.51,66.64,66.75,66.88,67,67.24,15.120000000000001,14.71,14.52,14.31,14.11,13.93,13.72,13.530000000000001,13.14,N/A,N/A +2012,2,7,13,30,102240,101020,99840,74.49,0,4.99,5.26,5.3,5.32,5.32,5.3100000000000005,5.3,5.28,5.25,62.57,62.79,62.93,63.06,63.18,63.300000000000004,63.42,63.54,63.78,15.1,14.700000000000001,14.5,14.3,14.1,13.91,13.71,13.52,13.13,N/A,N/A +2012,2,7,14,30,102280,101060,99880,74.77,0,5.18,5.46,5.51,5.53,5.53,5.53,5.51,5.5,5.47,58.89,59.06,59.17,59.27,59.36,59.44,59.52,59.6,59.76,15.1,14.69,14.5,14.3,14.09,13.91,13.700000000000001,13.51,13.120000000000001,N/A,N/A +2012,2,7,15,30,102290,101070,99890,78.29,0,5.49,5.8,5.8500000000000005,5.86,5.87,5.86,5.8500000000000005,5.83,5.79,50.28,50.620000000000005,50.84,51.04,51.24,51.42,51.61,51.79,52.160000000000004,15.01,14.59,14.39,14.19,13.99,13.8,13.6,13.41,13.02,N/A,N/A +2012,2,7,16,30,102290,101070,99880,78.76,0,5.53,5.8,5.83,5.82,5.8,5.78,5.75,5.72,5.64,47.02,47.65,48.050000000000004,48.43,48.81,49.17,49.58,49.97,50.84,14.65,14.22,14.02,13.82,13.620000000000001,13.43,13.23,13.040000000000001,12.66,N/A,N/A +2012,2,7,17,30,102290,101070,99880,77.28,0,5.41,5.67,5.71,5.71,5.7,5.68,5.65,5.62,5.55,48.64,49.09,49.39,49.67,49.96,50.21,50.51,50.79,51.42,14.56,14.13,13.93,13.73,13.530000000000001,13.34,13.14,12.950000000000001,12.57,N/A,N/A +2012,2,7,18,30,102280,101060,99870,77.23,0,5.58,5.8500000000000005,5.88,5.87,5.8500000000000005,5.83,5.79,5.75,5.66,38.71,39.17,39.46,39.74,40.03,40.29,40.59,40.88,41.550000000000004,14.46,14.02,13.82,13.620000000000001,13.42,13.24,13.040000000000001,12.85,12.47,N/A,N/A +2012,2,7,19,30,102300,101080,99890,75.76,0,4.41,4.58,4.59,4.58,4.5600000000000005,4.54,4.5,4.46,4.38,37.12,37.47,37.71,37.93,38.160000000000004,38.37,38.61,38.84,39.36,14.43,14.01,13.81,13.620000000000001,13.42,13.23,13.040000000000001,12.85,12.47,N/A,N/A +2012,2,7,20,30,102280,101060,99870,70.22,0,4.09,4.2700000000000005,4.29,4.29,4.28,4.2700000000000005,4.26,4.24,4.2,30.29,30.38,30.46,30.52,30.580000000000002,30.63,30.69,30.740000000000002,30.830000000000002,14.55,14.14,13.94,13.74,13.540000000000001,13.36,13.15,12.97,12.58,N/A,N/A +2012,2,7,21,30,102270,101050,99860,65.13,0,4.53,4.73,4.76,4.76,4.75,4.75,4.73,4.71,4.67,25.04,25.16,25.21,25.27,25.32,25.36,25.41,25.46,25.57,14.77,14.36,14.16,13.96,13.76,13.58,13.370000000000001,13.19,12.8,N/A,N/A +2012,2,7,22,30,102280,101060,99880,65.43,0,5.16,5.39,5.42,5.41,5.39,5.37,5.34,5.3100000000000005,5.23,8.93,9.17,9.34,9.5,9.66,9.790000000000001,9.96,10.11,10.46,14.73,14.31,14.120000000000001,13.92,13.72,13.530000000000001,13.33,13.14,12.76,N/A,N/A +2012,2,7,23,30,102310,101090,99910,63.940000000000005,0,5.12,5.38,5.41,5.42,5.42,5.41,5.39,5.37,5.33,10.28,10.42,10.52,10.6,10.67,10.74,10.82,10.89,11.05,14.77,14.35,14.16,13.96,13.76,13.57,13.370000000000001,13.19,12.8,N/A,N/A +2012,2,8,0,30,102350,101130,99940,67.59,0,5.24,5.48,5.5,5.49,5.47,5.44,5.4,5.36,5.26,10.620000000000001,10.950000000000001,11.1,11.24,11.39,11.53,11.68,11.85,12.26,14.55,14.13,13.93,13.73,13.540000000000001,13.35,13.15,12.97,12.59,N/A,N/A +2012,2,8,1,30,102390,101170,99980,69.18,0,6.34,6.7,6.76,6.78,6.7700000000000005,6.76,6.73,6.71,6.640000000000001,20.830000000000002,21.03,21.13,21.23,21.330000000000002,21.42,21.52,21.62,21.89,14.42,13.98,13.780000000000001,13.58,13.370000000000001,13.19,12.99,12.81,12.43,N/A,N/A +2012,2,8,2,30,102440,101220,100030,67.2,0,7.49,7.98,8.08,8.120000000000001,8.13,8.14,8.13,8.120000000000001,8.09,19.98,20.27,20.44,20.59,20.76,20.92,21.11,21.29,21.75,14.51,14.05,13.85,13.65,13.450000000000001,13.26,13.06,12.88,12.5,N/A,N/A +2012,2,8,3,30,102490,101260,100070,70.65,0,7.8,8.34,8.46,8.51,8.540000000000001,8.55,8.55,8.55,8.53,17.66,17.830000000000002,17.98,18.11,18.240000000000002,18.36,18.5,18.63,18.93,14.27,13.790000000000001,13.58,13.370000000000001,13.17,12.98,12.780000000000001,12.6,12.22,N/A,N/A +2012,2,8,4,30,102490,101260,100070,73.39,0,8.18,8.73,8.84,8.88,8.89,8.89,8.870000000000001,8.85,8.8,20.89,20.97,21.02,21.06,21.11,21.150000000000002,21.19,21.240000000000002,21.34,14.1,13.6,13.39,13.19,12.99,12.8,12.6,12.42,12.040000000000001,N/A,N/A +2012,2,8,5,30,102520,101290,100100,76.25,0,8.07,8.61,8.72,8.76,8.78,8.790000000000001,8.78,8.77,8.75,22.09,22.13,22.16,22.19,22.21,22.23,22.26,22.29,22.36,13.84,13.34,13.120000000000001,12.92,12.72,12.530000000000001,12.33,12.14,11.77,N/A,N/A +2012,2,8,6,30,102570,101340,100150,78.8,0,8.57,9.17,9.290000000000001,9.34,9.36,9.370000000000001,9.36,9.36,9.34,18.91,19.05,19.12,19.2,19.28,19.35,19.43,19.51,19.72,13.56,13.030000000000001,12.82,12.61,12.41,12.22,12.02,11.84,11.47,N/A,N/A +2012,2,8,7,30,102620,101390,100190,76.24,0,8.78,9.41,9.55,9.61,9.64,9.67,9.67,9.67,9.67,23.2,23.39,23.51,23.63,23.740000000000002,23.85,23.97,24.09,24.38,13.47,12.94,12.72,12.51,12.3,12.120000000000001,11.92,11.73,11.35,N/A,N/A +2012,2,8,8,30,102630,101400,100210,76.19,0,8.74,9.370000000000001,9.51,9.57,9.6,9.620000000000001,9.63,9.63,9.64,23.54,23.77,23.900000000000002,24.02,24.150000000000002,24.27,24.41,24.560000000000002,24.89,13.36,12.82,12.6,12.39,12.19,12,11.8,11.61,11.23,N/A,N/A +2012,2,8,9,30,102650,101420,100220,76.22,0,8.93,9.59,9.74,9.81,9.85,9.88,9.89,9.9,9.9,20.87,21.080000000000002,21.23,21.37,21.51,21.64,21.79,21.93,22.25,13.3,12.76,12.530000000000001,12.32,12.11,11.92,11.71,11.53,11.14,N/A,N/A +2012,2,8,10,30,102680,101450,100250,75.8,0,9.17,9.86,10.02,10.11,10.16,10.19,10.21,10.23,10.25,19.46,19.68,19.81,19.94,20.07,20.2,20.35,20.48,20.81,12.99,12.42,12.19,11.98,11.77,11.58,11.38,11.19,10.8,N/A,N/A +2012,2,8,11,30,102730,101490,100290,73.57000000000001,0,9.26,9.96,10.13,10.22,10.27,10.31,10.34,10.36,10.4,23.01,23.22,23.36,23.51,23.650000000000002,23.79,23.95,24.1,24.48,12.92,12.36,12.13,11.92,11.71,11.53,11.32,11.14,10.76,N/A,N/A +2012,2,8,12,30,102760,101530,100330,71.31,0,9.78,10.53,10.71,10.790000000000001,10.85,10.88,10.9,10.91,10.93,24.84,25.060000000000002,25.19,25.32,25.46,25.580000000000002,25.72,25.86,26.16,12.71,12.120000000000001,11.89,11.68,11.47,11.290000000000001,11.09,10.9,10.53,N/A,N/A +2012,2,8,13,30,102780,101540,100340,73.42,0,10.07,10.84,11,11.08,11.120000000000001,11.15,11.15,11.15,11.14,25.68,25.88,26.01,26.13,26.25,26.35,26.48,26.6,26.86,12.34,11.73,11.49,11.28,11.07,10.88,10.68,10.5,10.13,N/A,N/A +2012,2,8,14,30,102820,101580,100370,73.49,0,9.16,9.82,9.96,10.03,10.06,10.08,10.09,10.09,10.09,30.16,30.42,30.580000000000002,30.71,30.86,30.98,31.13,31.26,31.57,12.19,11.6,11.36,11.15,10.950000000000001,10.76,10.56,10.370000000000001,10,N/A,N/A +2012,2,8,15,30,102820,101580,100380,70.73,0,9.05,9.700000000000001,9.85,9.92,9.97,9.99,10.01,10.03,10.040000000000001,30.64,30.89,31.060000000000002,31.21,31.37,31.5,31.66,31.810000000000002,32.14,12.290000000000001,11.700000000000001,11.47,11.26,11.05,10.870000000000001,10.66,10.48,10.1,N/A,N/A +2012,2,8,16,30,102800,101560,100360,65.64,0,8.93,9.6,9.76,9.85,9.9,9.94,9.97,10,10.040000000000001,24.97,25.13,25.23,25.330000000000002,25.43,25.52,25.63,25.73,25.97,12.73,12.16,11.94,11.72,11.51,11.32,11.120000000000001,10.93,10.55,N/A,N/A +2012,2,8,17,30,102760,101530,100330,57.46,0,8.51,9.18,9.36,9.46,9.53,9.59,9.63,9.66,9.72,26.94,26.85,26.79,26.73,26.68,26.62,26.57,26.52,26.42,13.780000000000001,13.26,13.05,12.84,12.63,12.44,12.23,12.040000000000001,11.65,N/A,N/A +2012,2,8,18,30,102740,101510,100320,53.71,0,7.58,8.2,8.370000000000001,8.47,8.55,8.61,8.66,8.700000000000001,8.77,29.26,28.93,28.72,28.52,28.32,28.150000000000002,27.96,27.79,27.44,14.700000000000001,14.25,14.05,13.84,13.64,13.450000000000001,13.24,13.05,12.66,N/A,N/A +2012,2,8,19,30,102710,101490,100300,52.61,0,6.72,7.25,7.4,7.5,7.57,7.62,7.67,7.71,7.7700000000000005,29.27,28.810000000000002,28.54,28.29,28.05,27.85,27.64,27.44,27.07,15.5,15.1,14.91,14.71,14.51,14.32,14.11,13.92,13.530000000000001,N/A,N/A +2012,2,8,20,30,102640,101420,100230,51.620000000000005,0,6.19,6.66,6.79,6.86,6.92,6.97,7,7.03,7.08,15.18,15.450000000000001,15.65,15.82,15.98,16.13,16.27,16.4,16.66,15.96,15.58,15.39,15.200000000000001,15,14.81,14.6,14.42,14.02,N/A,N/A +2012,2,8,21,30,102600,101380,100200,50.01,0,6.32,6.84,6.97,7.05,7.11,7.16,7.19,7.22,7.2700000000000005,11.02,11.39,11.63,11.84,12.030000000000001,12.200000000000001,12.370000000000001,12.530000000000001,12.84,16.41,16.06,15.870000000000001,15.68,15.48,15.290000000000001,15.09,14.9,14.51,N/A,N/A +2012,2,8,22,30,102570,101350,100170,50.68,0,6.74,7.3,7.44,7.5200000000000005,7.58,7.62,7.66,7.68,7.72,13.11,13.66,14.02,14.35,14.65,14.91,15.17,15.4,15.84,16.66,16.330000000000002,16.15,15.950000000000001,15.75,15.57,15.36,15.18,14.780000000000001,N/A,N/A +2012,2,8,23,30,102570,101350,100170,51.800000000000004,0,7.09,7.68,7.82,7.9,7.95,7.99,8.01,8.03,8.05,14.52,14.97,15.24,15.49,15.72,15.92,16.13,16.32,16.67,16.64,16.3,16.12,15.92,15.72,15.540000000000001,15.33,15.14,14.75,N/A,N/A +2012,2,9,0,30,102580,101370,100180,53.72,0,8.08,8.74,8.89,8.97,9.02,9.040000000000001,9.05,9.06,9.05,19.59,19.75,19.87,19.990000000000002,20.1,20.19,20.29,20.39,20.56,16.240000000000002,15.870000000000001,15.68,15.48,15.280000000000001,15.1,14.89,14.700000000000001,14.31,N/A,N/A +2012,2,9,1,30,102600,101380,100190,55.92,0,9.08,9.82,9.98,10.05,10.09,10.11,10.11,10.11,10.08,21.63,21.89,22.03,22.17,22.3,22.42,22.54,22.650000000000002,22.89,15.58,15.17,14.97,14.77,14.56,14.370000000000001,14.17,13.98,13.59,N/A,N/A +2012,2,9,2,30,102600,101380,100190,57.43,0,9.51,10.290000000000001,10.47,10.56,10.6,10.63,10.64,10.64,10.61,26.41,26.68,26.830000000000002,26.98,27.12,27.240000000000002,27.38,27.51,27.77,15.07,14.61,14.4,14.200000000000001,13.99,13.8,13.59,13.4,13.01,N/A,N/A +2012,2,9,3,30,102610,101390,100200,59.17,0,9,9.71,9.870000000000001,9.950000000000001,9.99,10.02,10.03,10.03,10.02,35.06,35.300000000000004,35.45,35.6,35.730000000000004,35.85,35.99,36.11,36.37,14.73,14.26,14.06,13.85,13.64,13.450000000000001,13.24,13.05,12.66,N/A,N/A +2012,2,9,4,30,102610,101390,100200,61.46,0,9.16,9.89,10.07,10.15,10.200000000000001,10.23,10.25,10.25,10.25,37.77,38.04,38.21,38.36,38.51,38.65,38.79,38.93,39.19,14.450000000000001,13.96,13.75,13.540000000000001,13.33,13.14,12.93,12.74,12.35,N/A,N/A +2012,2,9,5,30,102600,101370,100180,62.78,0,8.790000000000001,9.450000000000001,9.6,9.67,9.72,9.74,9.75,9.76,9.75,41.44,41.84,42.09,42.32,42.53,42.72,42.92,43.11,43.51,14.22,13.72,13.51,13.3,13.09,12.9,12.69,12.5,12.1,N/A,N/A +2012,2,9,6,30,102580,101360,100170,66.2,0,8.370000000000001,8.99,9.13,9.21,9.25,9.28,9.290000000000001,9.3,9.3,46.480000000000004,46.87,47.11,47.33,47.53,47.72,47.910000000000004,48.09,48.46,14.11,13.620000000000001,13.41,13.200000000000001,12.99,12.8,12.59,12.4,12.01,N/A,N/A +2012,2,9,7,30,102600,101370,100180,65.86,0,8.040000000000001,8.64,8.78,8.85,8.9,8.93,8.950000000000001,8.96,8.97,47.95,48.370000000000005,48.620000000000005,48.85,49.07,49.26,49.47,49.65,50.03,14.06,13.58,13.370000000000001,13.15,12.950000000000001,12.76,12.55,12.36,11.96,N/A,N/A +2012,2,9,8,30,102590,101360,100170,65.75,0,8.34,8.96,9.11,9.19,9.23,9.26,9.27,9.28,9.28,50.96,51.230000000000004,51.4,51.550000000000004,51.69,51.82,51.94,52.06,52.300000000000004,13.950000000000001,13.46,13.24,13.030000000000001,12.82,12.63,12.42,12.23,11.83,N/A,N/A +2012,2,9,9,30,102580,101350,100160,66.46000000000001,0,7.61,8.13,8.25,8.3,8.32,8.34,8.34,8.33,8.31,54.17,54.5,54.71,54.910000000000004,55.1,55.26,55.44,55.6,55.93,13.75,13.25,13.040000000000001,12.83,12.620000000000001,12.43,12.22,12.030000000000001,11.63,N/A,N/A +2012,2,9,10,30,102580,101350,100150,69.08,0,7.62,8.14,8.25,8.3,8.32,8.34,8.34,8.34,8.32,55.19,55.57,55.800000000000004,56.02,56.230000000000004,56.42,56.61,56.800000000000004,57.19,13.59,13.09,12.870000000000001,12.66,12.450000000000001,12.26,12.05,11.86,11.46,N/A,N/A +2012,2,9,11,30,102560,101330,100140,71.57000000000001,0,7.8,8.33,8.45,8.51,8.540000000000001,8.56,8.57,8.57,8.55,54.13,54.6,54.88,55.14,55.38,55.61,55.85,56.06,56.51,13.48,12.97,12.75,12.540000000000001,12.33,12.14,11.93,11.73,11.34,N/A,N/A +2012,2,9,12,30,102560,101330,100130,74.13,0,7.82,8.370000000000001,8.49,8.55,8.58,8.6,8.61,8.61,8.61,58.800000000000004,59.27,59.58,59.870000000000005,60.14,60.38,60.64,60.870000000000005,61.34,13.43,12.92,12.700000000000001,12.48,12.27,12.08,11.870000000000001,11.68,11.28,N/A,N/A +2012,2,9,13,30,102560,101330,100130,74.49,0,7.9,8.45,8.58,8.65,8.69,8.72,8.73,8.74,8.73,58.79,59.04,59.160000000000004,59.27,59.38,59.480000000000004,59.59,59.68,59.870000000000005,13.41,12.89,12.67,12.46,12.24,12.05,11.84,11.65,11.25,N/A,N/A +2012,2,9,14,30,102570,101340,100150,71.88,0,7.92,8.46,8.58,8.64,8.67,8.69,8.69,8.69,8.68,64.65,64.9,65.05,65.18,65.32000000000001,65.44,65.56,65.68,65.91,13.38,12.870000000000001,12.65,12.43,12.22,12.030000000000001,11.82,11.63,11.23,N/A,N/A +2012,2,9,15,30,102570,101340,100140,73.27,0,7.3,7.7700000000000005,7.86,7.91,7.930000000000001,7.94,7.94,7.94,7.92,63.2,63.57,63.81,64.03,64.23,64.41,64.6,64.78,65.14,13.31,12.8,12.59,12.38,12.17,11.97,11.76,11.57,11.18,N/A,N/A +2012,2,9,16,30,102560,101330,100130,75.65,0,7.23,7.68,7.78,7.82,7.84,7.8500000000000005,7.8500000000000005,7.84,7.82,63.690000000000005,64.22,64.5,64.77,65.02,65.26,65.5,65.72,66.18,13.25,12.74,12.52,12.31,12.1,11.91,11.700000000000001,11.5,11.11,N/A,N/A +2012,2,9,17,30,102530,101300,100110,76,0,6.57,6.96,7.04,7.08,7.1000000000000005,7.11,7.11,7.1000000000000005,7.09,67.34,67.71000000000001,67.97,68.22,68.46000000000001,68.67,68.89,69.10000000000001,69.52,13.34,12.85,12.64,12.43,12.21,12.030000000000001,11.82,11.620000000000001,11.23,N/A,N/A +2012,2,9,18,30,102480,101250,100050,75.88,0,6.43,6.8,6.87,6.9,6.92,6.92,6.92,6.92,6.890000000000001,65.52,65.95,66.17,66.37,66.57000000000001,66.74,66.94,67.11,67.48,13.39,12.9,12.68,12.47,12.26,12.07,11.86,11.67,11.28,N/A,N/A +2012,2,9,19,30,102470,101240,100050,75.22,0,5.53,5.83,5.89,5.91,5.93,5.93,5.93,5.92,5.91,70.71000000000001,71.17,71.43,71.67,71.9,72.12,72.34,72.55,72.99,13.540000000000001,13.07,12.86,12.65,12.450000000000001,12.26,12.05,11.86,11.47,N/A,N/A +2012,2,9,20,30,102410,101190,99990,74.59,0,4.86,5.1000000000000005,5.14,5.15,5.16,5.16,5.15,5.15,5.12,79.93,80.43,80.7,80.96000000000001,81.21000000000001,81.44,81.7,81.94,82.46000000000001,13.69,13.24,13.040000000000001,12.83,12.63,12.44,12.23,12.040000000000001,11.65,N/A,N/A +2012,2,9,21,30,102350,101130,99940,73.62,0,4.57,4.79,4.82,4.84,4.84,4.84,4.83,4.82,4.79,84.19,84.58,84.82000000000001,85.06,85.3,85.51,85.76,85.98,86.48,13.92,13.48,13.280000000000001,13.08,12.870000000000001,12.68,12.48,12.290000000000001,11.9,N/A,N/A +2012,2,9,22,30,102300,101080,99890,71.58,0,4.15,4.33,4.36,4.37,4.36,4.36,4.3500000000000005,4.34,4.3100000000000005,92.55,92.89,93.10000000000001,93.29,93.48,93.66,93.86,94.06,94.47,14.18,13.76,13.56,13.36,13.15,12.97,12.76,12.57,12.18,N/A,N/A +2012,2,9,23,30,102250,101030,99850,72.36,0,4.22,4.42,4.45,4.46,4.46,4.46,4.45,4.44,4.42,99.3,99.73,99.99000000000001,100.26,100.51,100.75,101.02,101.27,101.85000000000001,14.370000000000001,13.950000000000001,13.75,13.55,13.35,13.16,12.96,12.77,12.38,N/A,N/A +2012,2,10,0,30,102210,100990,99810,77.17,0,5.36,5.66,5.71,5.73,5.73,5.73,5.72,5.71,5.68,104.38,104.5,104.57000000000001,104.64,104.71000000000001,104.78,104.86,104.94,105.14,14.33,13.89,13.69,13.49,13.280000000000001,13.1,12.89,12.700000000000001,12.31,N/A,N/A +2012,2,10,1,30,102200,100980,99800,75.81,0.7000000000000001,4.5,4.7,4.73,4.73,4.72,4.71,4.69,4.67,4.62,112.46000000000001,112.82000000000001,113.07000000000001,113.31,113.54,113.76,114,114.23,114.75,14.35,13.93,13.73,13.52,13.33,13.14,12.94,12.75,12.36,N/A,N/A +2012,2,10,2,30,102190,100970,99780,74.98,0.4,4.04,4.22,4.25,4.25,4.25,4.24,4.22,4.2,4.16,108.58,108.93,109.17,109.41,109.64,109.84,110.08,110.3,110.81,14.38,13.97,13.77,13.57,13.370000000000001,13.19,12.98,12.790000000000001,12.4,N/A,N/A +2012,2,10,3,30,102170,100950,99760,74.92,0.7000000000000001,3.5700000000000003,3.72,3.74,3.74,3.74,3.73,3.71,3.7,3.66,105.49000000000001,105.98,106.33,106.68,107.02,107.34,107.7,108.03,108.79,14.58,14.17,13.98,13.780000000000001,13.58,13.39,13.19,13,12.61,N/A,N/A +2012,2,10,4,30,102140,100930,99740,74.7,0,3.61,3.8000000000000003,3.85,3.87,3.89,3.9,3.92,3.93,3.95,87.86,88.94,89.67,90.37,91.04,91.66,92.31,92.91,94.22,14.780000000000001,14.39,14.200000000000001,14,13.8,13.620000000000001,13.41,13.23,12.84,N/A,N/A +2012,2,10,5,30,102120,100910,99730,74.31,0,3.93,4.15,4.21,4.24,4.2700000000000005,4.28,4.3,4.3100000000000005,4.33,95.19,95.87,96.27,96.64,96.99000000000001,97.32000000000001,97.66,97.98,98.67,15.17,14.780000000000001,14.59,14.39,14.19,14,13.8,13.61,13.22,N/A,N/A +2012,2,10,6,30,102130,100910,99730,78.92,4.4,3.63,3.81,3.85,3.87,3.89,3.9,3.91,3.91,3.92,83.54,84.95,85.9,86.79,87.62,88.4,89.21000000000001,89.96000000000001,91.54,14.950000000000001,14.56,14.38,14.18,13.98,13.8,13.6,13.42,13.040000000000001,N/A,N/A +2012,2,10,7,30,102130,100910,99730,82.49,2.2,3.8200000000000003,4.03,4.08,4.11,4.13,4.14,4.15,4.16,4.18,71.31,72.3,72.94,73.54,74.08,74.57000000000001,75.08,75.55,76.55,14.93,14.540000000000001,14.36,14.16,13.96,13.77,13.57,13.39,13.01,N/A,N/A +2012,2,10,8,30,102090,100880,99690,82.98,5.5,5.01,5.25,5.28,5.28,5.2700000000000005,5.26,5.24,5.21,5.15,63.58,63.89,64.12,64.36,64.58,64.78,65.01,65.23,65.7,14.73,14.32,14.13,13.93,13.73,13.55,13.35,13.16,12.780000000000001,N/A,N/A +2012,2,10,9,30,102030,100820,99640,82.64,1.1,5.84,6.16,6.22,6.24,6.24,6.23,6.2,6.18,6.12,67.13,67.34,67.46000000000001,67.59,67.73,67.88,68.05,68.23,68.71000000000001,14.68,14.26,14.06,13.86,13.66,13.47,13.27,13.08,12.700000000000001,N/A,N/A +2012,2,10,10,30,102010,100790,99610,85.46000000000001,4.4,5.93,6.25,6.3100000000000005,6.32,6.3100000000000005,6.3,6.28,6.25,6.19,62.59,62.940000000000005,63.2,63.47,63.75,64.01,64.34,64.67,65.48,14.43,13.99,13.8,13.59,13.39,13.21,13.01,12.83,12.450000000000001,N/A,N/A +2012,2,10,11,30,102000,100780,99600,87.7,1.1,6.5200000000000005,6.91,6.99,7.01,7.01,7.01,6.99,6.97,6.92,57.24,57.46,57.64,57.82,58,58.17,58.410000000000004,58.63,59.230000000000004,14.27,13.83,13.620000000000001,13.42,13.22,13.040000000000001,12.84,12.65,12.280000000000001,N/A,N/A +2012,2,10,12,30,101970,100750,99570,92.05,5.9,6.42,6.82,6.9,6.93,6.94,6.94,6.93,6.92,6.88,53.32,53.49,53.59,53.7,53.81,53.92,54.07,54.2,54.58,14.26,13.81,13.620000000000001,13.41,13.22,13.040000000000001,12.85,12.67,12.31,N/A,N/A +2012,2,10,13,30,102000,100780,99600,94.89,6.2,7.66,8.05,8.1,8.09,8.05,8.01,7.95,7.890000000000001,7.75,16.13,17.17,17.76,18.38,19.02,19.62,20.37,21.12,23.01,13.39,12.89,12.68,12.49,12.3,12.13,11.950000000000001,11.78,11.450000000000001,N/A,N/A +2012,2,10,14,30,102010,100790,99600,92.65,2.6,7.26,7.67,7.75,7.76,7.75,7.73,7.69,7.640000000000001,7.54,29.36,29.7,29.91,30.13,30.37,30.59,30.89,31.2,32.01,13.23,12.72,12.51,12.31,12.1,11.92,11.73,11.55,11.18,N/A,N/A +2012,2,10,15,30,102030,100800,99620,92.75,22.700000000000003,8.1,8.59,8.67,8.69,8.67,8.65,8.61,8.56,8.45,20.080000000000002,20.41,20.61,20.81,21.02,21.22,21.46,21.7,22.29,13.15,12.63,12.42,12.21,12.02,11.84,11.64,11.46,11.11,N/A,N/A +2012,2,10,16,30,102060,100840,99660,91.72,15.4,8.1,8.66,8.78,8.83,8.85,8.86,8.85,8.84,8.8,7.390000000000001,7.17,7.23,7.28,7.32,7.36,7.41,7.45,7.53,13.32,12.8,12.58,12.370000000000001,12.16,11.98,11.78,11.59,11.21,N/A,N/A +2012,2,10,17,30,102020,100800,99610,93.11,27.5,6.97,7.3500000000000005,7.42,7.44,7.43,7.43,7.42,7.43,7.54,8.68,8.84,8.51,8.19,7.83,7.47,6.92,6.3,3.61,13.31,12.82,12.620000000000001,12.43,12.24,12.07,11.89,11.72,11.43,N/A,N/A +2012,2,10,18,30,102020,100800,99620,94.12,11.700000000000001,5.58,5.86,5.91,5.93,5.93,5.93,5.92,5.92,5.93,357.46,357.28000000000003,357.05,356.79,356.5,356.21,355.8,355.37,353.99,13.41,12.94,12.74,12.540000000000001,12.35,12.17,11.98,11.8,11.44,N/A,N/A +2012,2,10,19,30,102060,100840,99660,92.88,2.2,5.86,6.23,6.34,6.390000000000001,6.44,6.47,6.5,6.5200000000000005,6.57,340.3,339.65000000000003,339.17,338.71,338.27,337.86,337.41,336.98,336.07,13.76,13.3,13.09,12.88,12.68,12.5,12.31,12.13,11.76,N/A,N/A +2012,2,10,20,30,102000,100780,99600,90.99,1.1,4.89,5.16,5.22,5.25,5.2700000000000005,5.29,5.3100000000000005,5.33,5.39,341.06,341.36,341.42,341.48,341.54,341.59000000000003,341.63,341.67,341.71,13.72,13.280000000000001,13.08,12.88,12.68,12.5,12.3,12.11,11.73,N/A,N/A +2012,2,10,21,30,102030,100810,99630,87.41,0,6.36,6.8,6.92,7,7.05,7.1000000000000005,7.140000000000001,7.18,7.26,335.71,336.1,336.35,336.58,336.82,337.04,337.29,337.52,338.06,14.15,13.700000000000001,13.49,13.290000000000001,13.08,12.9,12.700000000000001,12.51,12.13,N/A,N/A +2012,2,10,22,30,102030,100810,99630,78.58,0,8.84,9.56,9.74,9.84,9.89,9.93,9.950000000000001,9.96,9.96,348.94,348.56,348.32,348.1,347.88,347.68,347.47,347.27,346.85,15.22,14.780000000000001,14.58,14.370000000000001,14.16,13.97,13.77,13.58,13.18,N/A,N/A +2012,2,10,23,30,102050,100840,99660,79.76,0,9,9.74,9.950000000000001,10.06,10.14,10.19,10.23,10.26,10.3,344,343.98,343.98,343.99,343.99,344,344,344.01,344.02,15.07,14.620000000000001,14.42,14.200000000000001,14,13.8,13.6,13.41,13.01,N/A,N/A +2012,2,11,0,30,102100,100880,99700,77,0,8.33,8.96,9.13,9.23,9.290000000000001,9.33,9.370000000000001,9.39,9.43,355.83,356.08,356.2,356.3,356.39,356.46,356.53000000000003,356.59000000000003,356.69,14.75,14.3,14.09,13.88,13.68,13.49,13.280000000000001,13.09,12.700000000000001,N/A,N/A +2012,2,11,1,30,102140,100920,99740,76.61,0,8.28,8.93,9.120000000000001,9.22,9.290000000000001,9.34,9.39,9.43,9.49,2.39,2.44,2.44,2.43,2.41,2.39,2.35,2.31,2.2,14.48,14.02,13.81,13.6,13.4,13.21,13.01,12.82,12.43,N/A,N/A +2012,2,11,2,30,102210,100980,99800,79.56,0,9.76,10.57,10.78,10.89,10.96,11.01,11.040000000000001,11.07,11.1,359.67,359.47,359.35,359.22,359.1,358.99,358.87,358.75,358.52,14.15,13.64,13.43,13.21,13,12.81,12.6,12.41,12.02,N/A,N/A +2012,2,11,3,30,102280,101050,99860,79.83,0,10.11,10.91,11.120000000000001,11.22,11.27,11.31,11.33,11.33,11.33,3.19,3.42,3.54,3.64,3.74,3.8200000000000003,3.89,3.96,4.09,13.73,13.200000000000001,12.98,12.76,12.55,12.36,12.15,11.96,11.56,N/A,N/A +2012,2,11,4,30,102350,101120,99920,81.14,0,10.4,11.24,11.46,11.57,11.64,11.69,11.72,11.75,11.77,3.3200000000000003,3.42,3.49,3.54,3.59,3.63,3.65,3.68,3.72,12.85,12.26,12.030000000000001,11.81,11.59,11.4,11.19,10.99,10.6,N/A,N/A +2012,2,11,5,30,102380,101150,99950,78.06,0,10.61,11.53,11.76,11.9,11.99,12.05,12.1,12.14,12.19,12.59,12.52,12.47,12.41,12.35,12.3,12.23,12.17,12.030000000000001,12.58,11.98,11.74,11.52,11.31,11.11,10.9,10.71,10.32,N/A,N/A +2012,2,11,6,30,102450,101220,100020,78.72,0,10.3,11.15,11.370000000000001,11.49,11.58,11.64,11.68,11.72,11.77,12.72,12.55,12.44,12.34,12.23,12.13,12.02,11.92,11.700000000000001,12.4,11.790000000000001,11.55,11.33,11.11,10.92,10.71,10.51,10.120000000000001,N/A,N/A +2012,2,11,7,30,102510,101280,100080,79.62,0,10.84,11.76,12.01,12.14,12.23,12.290000000000001,12.33,12.36,12.4,10.88,10.790000000000001,10.74,10.71,10.67,10.64,10.6,10.56,10.49,12.21,11.58,11.33,11.1,10.88,10.69,10.47,10.28,9.88,N/A,N/A +2012,2,11,8,30,102540,101300,100100,83.85000000000001,0,11.66,12.63,12.88,13,13.07,13.120000000000001,13.15,13.17,13.17,11.81,11.92,11.950000000000001,11.96,11.96,11.97,11.97,11.96,11.950000000000001,11.3,10.61,10.35,10.120000000000001,9.89,9.69,9.48,9.28,8.89,N/A,N/A +2012,2,11,9,30,102590,101340,100130,77,0,13.57,14.780000000000001,15.07,15.21,15.290000000000001,15.34,15.35,15.35,15.31,16.29,16.38,16.41,16.43,16.45,16.47,16.48,16.490000000000002,16.5,10.64,9.86,9.58,9.34,9.11,8.91,8.700000000000001,8.5,8.120000000000001,N/A,N/A +2012,2,11,10,30,102670,101420,100200,75.87,0,13,14.11,14.38,14.52,14.6,14.65,14.67,14.69,14.68,22.78,22.84,22.89,22.93,22.97,23.01,23.04,23.07,23.14,9.73,8.92,8.63,8.39,8.16,7.95,7.74,7.54,7.15,N/A,N/A +2012,2,11,11,30,102740,101490,100270,73.58,0,12.44,13.450000000000001,13.700000000000001,13.82,13.89,13.93,13.94,13.950000000000001,13.93,25.080000000000002,25.2,25.26,25.32,25.38,25.44,25.490000000000002,25.54,25.63,9.07,8.24,7.96,7.71,7.48,7.2700000000000005,7.0600000000000005,6.86,6.47,N/A,N/A +2012,2,11,12,30,102810,101550,100330,73.95,0,12.290000000000001,13.26,13.49,13.61,13.67,13.71,13.72,13.73,13.72,29.27,29.43,29.53,29.61,29.68,29.75,29.82,29.88,29.990000000000002,8.35,7.49,7.2,6.95,6.72,6.51,6.29,6.1000000000000005,5.7,N/A,N/A +2012,2,11,13,30,102880,101620,100390,75.81,0,12.32,13.280000000000001,13.51,13.620000000000001,13.68,13.71,13.72,13.73,13.71,31.66,31.92,32.08,32.230000000000004,32.37,32.49,32.61,32.730000000000004,32.980000000000004,7.8,6.92,6.62,6.37,6.140000000000001,5.93,5.71,5.5200000000000005,5.12,N/A,N/A +2012,2,11,14,30,102940,101680,100450,76.17,0,12.02,12.93,13.15,13.25,13.31,13.34,13.35,13.35,13.33,31.77,32.09,32.28,32.46,32.63,32.78,32.94,33.1,33.410000000000004,7.390000000000001,6.51,6.21,5.96,5.72,5.5200000000000005,5.3,5.1000000000000005,4.71,N/A,N/A +2012,2,11,15,30,102990,101720,100500,72.63,0,10.53,11.27,11.450000000000001,11.53,11.58,11.61,11.620000000000001,11.63,11.63,31.98,32.27,32.46,32.64,32.8,32.95,33.11,33.26,33.57,7.32,6.49,6.2,5.96,5.73,5.5200000000000005,5.3100000000000005,5.11,4.72,N/A,N/A +2012,2,11,16,30,103000,101740,100510,67.06,0,9.72,10.370000000000001,10.52,10.59,10.63,10.66,10.67,10.68,10.68,28.26,28.490000000000002,28.650000000000002,28.79,28.93,29.05,29.18,29.3,29.54,7.5,6.71,6.43,6.19,5.96,5.75,5.54,5.3500000000000005,4.95,N/A,N/A +2012,2,11,17,30,103010,101750,100520,65.65,0,8.99,9.59,9.72,9.8,9.84,9.870000000000001,9.89,9.9,9.91,21.64,21.7,21.75,21.79,21.830000000000002,21.86,21.900000000000002,21.93,22.01,7.92,7.17,6.890000000000001,6.66,6.43,6.23,6.0200000000000005,5.82,5.42,N/A,N/A +2012,2,11,18,30,103020,101760,100530,58.480000000000004,0,8.78,9.370000000000001,9.51,9.59,9.64,9.68,9.700000000000001,9.72,9.75,20.11,20.11,20.12,20.13,20.14,20.16,20.17,20.18,20.2,8.8,8.09,7.83,7.59,7.37,7.16,6.95,6.75,6.3500000000000005,N/A,N/A +2012,2,11,19,30,103030,101780,100560,55.46,0,8.35,8.91,9.05,9.120000000000001,9.16,9.200000000000001,9.22,9.24,9.26,16.69,16.79,16.86,16.92,16.990000000000002,17.04,17.1,17.16,17.27,9.49,8.82,8.56,8.33,8.1,7.9,7.69,7.48,7.08,N/A,N/A +2012,2,11,20,30,103010,101760,100550,52.14,0,8.28,8.84,8.98,9.06,9.120000000000001,9.16,9.18,9.200000000000001,9.23,15.82,15.85,15.88,15.9,15.92,15.94,15.950000000000001,15.97,16,10.23,9.58,9.34,9.11,8.89,8.69,8.47,8.27,7.87,N/A,N/A +2012,2,11,21,30,103010,101760,100550,48.46,0,8.61,9.21,9.36,9.44,9.49,9.53,9.55,9.57,9.59,15.09,15.25,15.35,15.44,15.52,15.6,15.68,15.74,15.89,10.84,10.21,9.97,9.74,9.52,9.32,9.1,8.9,8.5,N/A,N/A +2012,2,11,22,30,103020,101780,100560,48.58,0,8.8,9.4,9.55,9.63,9.67,9.700000000000001,9.72,9.74,9.75,21.48,21.29,21.14,21,20.87,20.75,20.62,20.51,20.29,11.02,10.4,10.15,9.93,9.700000000000001,9.5,9.290000000000001,9.09,8.68,N/A,N/A +2012,2,11,23,30,103060,101810,100600,51.34,0,9.4,10.06,10.200000000000001,10.28,10.32,10.34,10.35,10.35,10.35,15.33,15.63,15.82,15.99,16.16,16.3,16.45,16.580000000000002,16.85,10.81,10.15,9.91,9.68,9.450000000000001,9.25,9.03,8.83,8.43,N/A,N/A +2012,2,12,0,30,103120,101870,100650,51.72,0,10.05,10.76,10.91,10.98,11.01,11.03,11.03,11.02,10.99,17.36,17.64,17.8,17.95,18.1,18.23,18.36,18.490000000000002,18.740000000000002,10.19,9.5,9.24,9.01,8.78,8.58,8.36,8.16,7.76,N/A,N/A +2012,2,12,1,30,103170,101920,100690,53.79,0,10.370000000000001,11.13,11.3,11.39,11.43,11.46,11.47,11.48,11.47,22.48,22.69,22.82,22.93,23.04,23.150000000000002,23.25,23.35,23.54,9.71,8.99,8.72,8.49,8.26,8.05,7.84,7.63,7.23,N/A,N/A +2012,2,12,2,30,103220,101960,100740,55.59,0,11.28,12.14,12.34,12.450000000000001,12.5,12.540000000000001,12.55,12.56,12.56,26.92,27.150000000000002,27.29,27.41,27.53,27.63,27.740000000000002,27.85,28.05,9.25,8.47,8.2,7.95,7.73,7.5200000000000005,7.3,7.1000000000000005,6.7,N/A,N/A +2012,2,12,3,30,103250,101990,100760,57.61,0,11.49,12.38,12.59,12.69,12.74,12.780000000000001,12.8,12.81,12.8,32.49,32.76,32.94,33.09,33.24,33.37,33.51,33.64,33.9,8.9,8.1,7.82,7.58,7.34,7.13,6.92,6.71,6.3100000000000005,N/A,N/A +2012,2,12,4,30,103240,101980,100750,59.42,0,11.55,12.450000000000001,12.65,12.75,12.81,12.84,12.86,12.86,12.86,37.02,37.4,37.63,37.83,38.02,38.19,38.37,38.54,38.86,8.68,7.88,7.59,7.3500000000000005,7.12,6.91,6.69,6.49,6.08,N/A,N/A +2012,2,12,5,30,103270,102000,100770,61.9,0,11.620000000000001,12.52,12.72,12.83,12.89,12.93,12.950000000000001,12.96,12.96,40.9,41.34,41.61,41.85,42.08,42.29,42.5,42.7,43.1,8.41,7.59,7.3,7.05,6.82,6.61,6.390000000000001,6.18,5.78,N/A,N/A +2012,2,12,6,30,103300,102040,100810,66.23,0,11.700000000000001,12.620000000000001,12.84,12.96,13.030000000000001,13.08,13.1,13.120000000000001,13.13,49.36,49.46,49.52,49.57,49.620000000000005,49.67,49.7,49.75,49.83,8.23,7.390000000000001,7.1000000000000005,6.8500000000000005,6.61,6.4,6.18,5.97,5.5600000000000005,N/A,N/A +2012,2,12,7,30,103340,102080,100850,62.59,0,11.6,12.48,12.68,12.780000000000001,12.83,12.86,12.88,12.88,12.870000000000001,50.25,50.54,50.730000000000004,50.89,51.04,51.19,51.33,51.47,51.730000000000004,7.91,7.07,6.78,6.53,6.29,6.08,5.86,5.66,5.25,N/A,N/A +2012,2,12,8,30,103350,102080,100850,65.84,0,11.35,12.19,12.38,12.47,12.52,12.55,12.56,12.56,12.540000000000001,50.95,51.25,51.45,51.620000000000005,51.78,51.93,52.08,52.22,52.51,7.5,6.65,6.36,6.11,5.87,5.66,5.44,5.24,4.83,N/A,N/A +2012,2,12,9,30,103360,102090,100860,68.71000000000001,0,11.21,12.030000000000001,12.23,12.32,12.38,12.41,12.43,12.44,12.44,53.550000000000004,53.71,53.82,53.910000000000004,54,54.08,54.160000000000004,54.24,54.39,7.25,6.390000000000001,6.09,5.84,5.6000000000000005,5.39,5.17,4.97,4.5600000000000005,N/A,N/A +2012,2,12,10,30,103360,102090,100850,67.67,0,11.44,12.290000000000001,12.48,12.58,12.63,12.66,12.68,12.68,12.67,53.75,53.99,54.15,54.29,54.42,54.54,54.67,54.79,55.04,6.97,6.1000000000000005,5.8,5.54,5.3100000000000005,5.09,4.87,4.67,4.26,N/A,N/A +2012,2,12,11,30,103350,102080,100840,68.84,0,11.5,12.35,12.55,12.64,12.69,12.73,12.74,12.75,12.74,52.6,52.93,53.15,53.34,53.53,53.7,53.870000000000005,54.04,54.370000000000005,6.83,5.96,5.65,5.4,5.16,4.95,4.73,4.5200000000000005,4.12,N/A,N/A +2012,2,12,12,30,103360,102080,100850,70.72,0,11.52,12.38,12.58,12.68,12.73,12.77,12.780000000000001,12.790000000000001,12.790000000000001,53.77,54.18,54.44,54.67,54.910000000000004,55.11,55.32,55.53,55.93,6.8,5.92,5.62,5.37,5.13,4.91,4.7,4.49,4.09,N/A,N/A +2012,2,12,13,30,103330,102060,100820,73.15,0,11.76,12.65,12.85,12.950000000000001,13.01,13.05,13.06,13.07,13.06,54.49,55.03,55.36,55.65,55.93,56.19,56.44,56.7,57.18,6.890000000000001,6,5.7,5.45,5.21,5,4.78,4.57,4.17,N/A,N/A +2012,2,12,14,30,103320,102050,100820,74.89,0,12.08,13.02,13.23,13.35,13.4,13.450000000000001,13.46,13.47,13.47,55.050000000000004,55.51,55.79,56.04,56.28,56.5,56.730000000000004,56.94,57.36,7.16,6.2700000000000005,5.96,5.71,5.47,5.25,5.03,4.83,4.42,N/A,N/A +2012,2,12,15,30,103310,102040,100810,77.03,0,11.58,12.46,12.67,12.780000000000001,12.84,12.88,12.91,12.92,12.92,58.75,59.300000000000004,59.65,59.97,60.26,60.53,60.81,61.06,61.57,7.36,6.5,6.2,5.95,5.71,5.5,5.28,5.08,4.67,N/A,N/A +2012,2,12,16,30,103260,101990,100760,73.99,0,10.96,11.76,11.96,12.06,12.120000000000001,12.16,12.18,12.19,12.200000000000001,62.77,63.18,63.440000000000005,63.68,63.9,64.1,64.3,64.49,64.87,7.71,6.88,6.59,6.34,6.1000000000000005,5.89,5.67,5.47,5.0600000000000005,N/A,N/A +2012,2,12,17,30,103210,101950,100720,69.93,0,10.22,10.94,11.11,11.200000000000001,11.24,11.27,11.290000000000001,11.290000000000001,11.290000000000001,64.05,64.29,64.45,64.58,64.71000000000001,64.82000000000001,64.94,65.05,65.26,8.05,7.25,6.97,6.73,6.49,6.28,6.07,5.86,5.46,N/A,N/A +2012,2,12,18,30,103190,101930,100700,67.03,0,8.96,9.55,9.67,9.74,9.77,9.8,9.8,9.81,9.790000000000001,63.31,63.43,63.53,63.620000000000005,63.7,63.77,63.83,63.9,64.02,8.35,7.61,7.34,7.1000000000000005,6.87,6.66,6.45,6.25,5.84,N/A,N/A +2012,2,12,19,30,103110,101850,100630,64.13,0,8.950000000000001,9.53,9.65,9.71,9.74,9.76,9.77,9.77,9.75,68.89,68.95,69,69.03,69.07000000000001,69.11,69.14,69.17,69.23,8.73,8.01,7.74,7.51,7.28,7.07,6.86,6.66,6.26,N/A,N/A +2012,2,12,20,30,103050,101790,100570,62.67,0,8.08,8.58,8.69,8.74,8.77,8.790000000000001,8.8,8.8,8.790000000000001,70.64,70.81,70.91,71,71.08,71.16,71.24,71.32000000000001,71.47,9.120000000000001,8.44,8.18,7.95,7.73,7.5200000000000005,7.3100000000000005,7.11,6.71,N/A,N/A +2012,2,12,21,30,102990,101740,100520,64.05,0,7.53,7.99,8.09,8.15,8.18,8.2,8.21,8.22,8.22,74.17,74.61,74.85000000000001,75.07000000000001,75.28,75.46000000000001,75.65,75.83,76.18,9.63,8.99,8.73,8.51,8.28,8.08,7.87,7.67,7.2700000000000005,N/A,N/A +2012,2,12,22,30,102920,101670,100450,62,0,7.15,7.57,7.66,7.71,7.73,7.75,7.76,7.76,7.76,76.7,76.98,77.16,77.32000000000001,77.49,77.64,77.8,77.95,78.27,10.040000000000001,9.42,9.18,8.96,8.74,8.540000000000001,8.32,8.13,7.73,N/A,N/A +2012,2,12,23,30,102820,101570,100360,62.620000000000005,0,7.99,8.51,8.620000000000001,8.68,8.72,8.74,8.75,8.76,8.76,82.05,82.12,82.17,82.22,82.27,82.31,82.37,82.42,82.52,10.59,9.97,9.72,9.5,9.28,9.08,8.870000000000001,8.67,8.27,N/A,N/A +2012,2,13,0,30,102780,101540,100330,60.08,0,7.86,8.370000000000001,8.49,8.55,8.58,8.61,8.620000000000001,8.63,8.64,89.15,89.28,89.39,89.5,89.62,89.72,89.83,89.93,90.15,11.13,10.52,10.28,10.06,9.84,9.65,9.43,9.24,8.84,N/A,N/A +2012,2,13,1,30,102740,101500,100290,63.730000000000004,0,8.2,8.78,8.93,9.02,9.08,9.120000000000001,9.15,9.18,9.21,92.82000000000001,93.4,93.69,93.92,94.14,94.32000000000001,94.5,94.66,94.95,11.6,11.01,10.77,10.55,10.33,10.13,9.92,9.72,9.32,N/A,N/A +2012,2,13,2,30,102670,101430,100230,58.83,0,8.26,8.85,9,9.09,9.14,9.18,9.22,9.24,9.290000000000001,91.97,92.18,92.45,92.74,93.04,93.31,93.62,93.9,94.47,11.98,11.41,11.18,10.96,10.74,10.55,10.34,10.14,9.75,N/A,N/A +2012,2,13,3,30,102590,101360,100160,62.35,0,9.03,9.74,9.93,10.040000000000001,10.120000000000001,10.18,10.23,10.27,10.33,97.02,97.35000000000001,97.62,97.87,98.12,98.34,98.58,98.81,99.27,12.46,11.89,11.66,11.43,11.22,11.02,10.81,10.620000000000001,10.22,N/A,N/A +2012,2,13,4,30,102510,101280,100080,66.32000000000001,0,9.57,10.35,10.56,10.68,10.76,10.82,10.86,10.89,10.94,105.04,105.31,105.48,105.63,105.77,105.89,106.03,106.15,106.39,12.9,12.33,12.1,11.89,11.67,11.47,11.26,11.06,10.66,N/A,N/A +2012,2,13,5,30,102430,101200,100010,65.7,0,9.82,10.63,10.84,10.96,11.040000000000001,11.09,11.13,11.16,11.200000000000001,110.87,110.96000000000001,111.04,111.11,111.17,111.23,111.3,111.36,111.49000000000001,13.34,12.790000000000001,12.57,12.35,12.13,11.93,11.72,11.53,11.13,N/A,N/A +2012,2,13,6,30,102380,101150,99960,70.34,0,10.01,10.86,11.08,11.21,11.290000000000001,11.36,11.4,11.44,11.49,112.18,112.35000000000001,112.48,112.61,112.75,112.87,113,113.12,113.38,13.540000000000001,13.01,12.790000000000001,12.57,12.36,12.16,11.950000000000001,11.75,11.35,N/A,N/A +2012,2,13,7,30,102330,101100,99910,76.22,5.9,10.3,11.18,11.44,11.58,11.67,11.75,11.8,11.84,11.91,107.64,108.33,108.78,109.23,109.65,110.04,110.45,110.83,111.61,13.44,12.9,12.68,12.47,12.26,12.07,11.870000000000001,11.68,11.3,N/A,N/A +2012,2,13,8,30,102220,101000,99820,72.68,0,10.03,10.9,11.15,11.290000000000001,11.39,11.46,11.51,11.55,11.61,116.79,117.41,117.8,118.15,118.47,118.76,119.05,119.31,119.83,14.25,13.76,13.55,13.33,13.120000000000001,12.93,12.72,12.530000000000001,12.13,N/A,N/A +2012,2,13,9,30,102140,100920,99740,76.71000000000001,0,10.69,11.64,11.9,12.030000000000001,12.120000000000001,12.17,12.200000000000001,12.23,12.24,125.01,124.96000000000001,124.91,124.85000000000001,124.8,124.75,124.7,124.65,124.57000000000001,14.51,14.01,13.8,13.58,13.370000000000001,13.17,12.97,12.77,12.370000000000001,N/A,N/A +2012,2,13,10,30,102070,100860,99680,79.76,0,10.75,11.76,12.05,12.22,12.34,12.43,12.5,12.55,12.63,122.2,122.51,122.7,122.88,123.04,123.19,123.34,123.47,123.73,14.92,14.46,14.25,14.030000000000001,13.83,13.63,13.42,13.23,12.84,N/A,N/A +2012,2,13,11,30,102000,100790,99610,82.92,0,10.96,11.98,12.25,12.4,12.5,12.57,12.61,12.65,12.68,121.62,121.75,121.89,122.03,122.18,122.31,122.46000000000001,122.60000000000001,122.89,15.27,14.82,14.61,14.4,14.19,14,13.790000000000001,13.6,13.21,N/A,N/A +2012,2,13,12,30,101920,100710,99540,84.62,1.8,11.26,12.370000000000001,12.69,12.870000000000001,12.99,13.07,13.13,13.18,13.24,123.15,123.4,123.58,123.78,123.96000000000001,124.14,124.34,124.52,124.92,15.69,15.27,15.07,14.86,14.67,14.48,14.27,14.09,13.700000000000001,N/A,N/A +2012,2,13,13,30,101860,100650,99480,86.25,0.4,11.01,12.23,12.6,12.83,13,13.14,13.24,13.33,13.46,127.91,128.43,128.72,128.98,129.21,129.43,129.65,129.86,130.27,16.07,15.69,15.5,15.3,15.11,14.92,14.72,14.540000000000001,14.16,N/A,N/A +2012,2,13,14,30,101780,100580,99420,83.98,0,11.1,12.27,12.620000000000001,12.83,12.98,13.09,13.17,13.24,13.33,137.25,137.6,137.87,138.14000000000001,138.39000000000001,138.61,138.85,139.06,139.51,16.92,16.61,16.44,16.240000000000002,16.05,15.860000000000001,15.67,15.49,15.1,N/A,N/A +2012,2,13,15,30,101740,100540,99380,87.9,35.9,10.59,11.68,11.99,12.18,12.31,12.41,12.48,12.530000000000001,12.620000000000001,137.9,138.21,138.33,138.46,138.59,138.70000000000002,138.82,138.94,139.20000000000002,16.69,16.36,16.19,16,15.81,15.63,15.44,15.26,14.89,N/A,N/A +2012,2,13,16,30,101650,100450,99280,92.85000000000001,7,10.5,11.57,11.88,12.07,12.200000000000001,12.3,12.36,12.41,12.47,137.49,137.57,137.64000000000001,137.73,137.83,137.94,138.07,138.19,138.5,16.91,16.59,16.42,16.22,16.03,15.85,15.66,15.48,15.11,N/A,N/A +2012,2,13,17,30,101520,100330,99170,91.94,2.6,9.26,10.36,10.72,11.01,11.26,11.47,11.67,11.86,12.23,141.55,142.06,142.36,142.66,142.97,143.26,143.6,143.9,144.43,17.330000000000002,17.06,16.89,16.71,16.52,16.34,16.15,15.98,15.610000000000001,N/A,N/A +2012,2,13,18,30,101430,100240,99080,93.59,0.4,10.36,11.76,12.33,12.81,13.22,13.57,13.9,14.200000000000001,14.75,144.35,145.34,145.98,146.67000000000002,147.28,147.87,148.46,149,150.09,17.51,17.3,17.16,17,16.84,16.69,16.52,16.37,16.05,N/A,N/A +2012,2,13,19,30,101390,100200,99050,94.89,3.7,9.02,10.32,10.86,11.33,11.75,12.13,12.5,12.85,13.52,164.87,165.72,166.19,166.70000000000002,167.17000000000002,167.62,168.07,168.5,169.34,17.8,17.62,17.5,17.35,17.21,17.07,16.93,16.79,16.51,N/A,N/A +2012,2,13,20,30,101290,100100,98950,94.18,4.800000000000001,9.700000000000001,11.16,11.78,12.32,12.780000000000001,13.21,13.63,14.01,14.780000000000001,171.38,171.55,171.74,171.93,172.11,172.28,172.46,172.63,172.97,18.150000000000002,18.03,17.92,17.78,17.650000000000002,17.51,17.36,17.23,16.95,N/A,N/A +2012,2,13,21,30,101310,100120,98970,93.12,13.600000000000001,9.07,10.64,11.33,11.97,12.52,13.040000000000001,13.52,13.96,14.77,189.37,190.09,190.28,190.37,190.42000000000002,190.43,190.44,190.43,190.45000000000002,18.47,18.43,18.36,18.240000000000002,18.13,18.01,17.89,17.77,17.5,N/A,N/A +2012,2,13,22,30,101270,100080,98930,96.13,7.7,4.9,5.8100000000000005,6.15,6.44,6.7,6.92,7.13,7.34,8.22,248.87,247.14000000000001,245.65,243.82,242.14000000000001,240.53,238.97,237.5,234.4,18.09,17.98,17.88,17.75,17.650000000000002,17.580000000000002,17.5,17.42,17.240000000000002,N/A,N/A +2012,2,13,23,30,101240,100050,98900,96.72,0,3.86,4.82,5.24,5.62,5.94,6.21,6.5,6.78,7.4,248.83,249.84,251.03,253.51000000000002,256.69,260.44,263.72,266.7,270.45,17.98,17.92,17.86,17.78,17.69,17.59,17.48,17.37,17.19,N/A,N/A +2012,2,14,0,30,101260,100070,98910,95.46000000000001,0,4.33,5.11,5.42,5.69,5.97,6.24,6.49,6.72,7.1000000000000005,266.32,267.75,268.9,270.54,272.37,274.36,277.03000000000003,279.69,285.53000000000003,17.85,17.69,17.580000000000002,17.45,17.330000000000002,17.21,17.1,17,16.72,N/A,N/A +2012,2,14,1,30,101290,100100,98950,95.04,0,4.37,5.09,5.41,5.71,6.0200000000000005,6.34,6.6000000000000005,6.83,6.99,286.69,288.62,290.49,293.65000000000003,295.97,297.7,297.93,297.69,293.87,17.650000000000002,17.5,17.39,17.25,17.11,16.96,16.8,16.66,16.39,N/A,N/A +2012,2,14,2,30,101340,100150,98990,91.53,0,4.3100000000000005,4.96,5.24,5.39,5.59,5.84,6.0200000000000005,6.16,6.24,305.95,306.5,306.88,307.26,307.69,308.18,308.08,307.82,304.92,17.39,17.150000000000002,17,16.81,16.65,16.51,16.35,16.21,15.9,N/A,N/A +2012,2,14,3,30,101360,100160,99000,89.4,0,4.0600000000000005,4.39,4.5,4.61,4.8,5.05,5.44,5.83,6.1000000000000005,290.86,290.62,290.43,290.11,289.65000000000003,289.09000000000003,287.21,285.11,282.32,17.2,16.92,16.76,16.580000000000002,16.41,16.240000000000002,16.09,15.96,15.66,N/A,N/A +2012,2,14,4,30,101370,100180,99020,91.4,0,5.33,5.72,5.8100000000000005,5.84,5.86,5.87,5.88,5.89,5.96,307.35,307.3,307.24,307.12,306.97,306.81,306.56,306.3,305.07,16.89,16.59,16.41,16.22,16.03,15.85,15.65,15.48,15.120000000000001,N/A,N/A +2012,2,14,5,30,101400,100200,99040,91.5,0,5.74,6.0600000000000005,6.1000000000000005,6.08,6.05,6.01,5.95,5.89,5.69,306.64,306.62,306.57,306.51,306.43,306.35,306.21,306.04,304.56,16.27,15.92,15.74,15.55,15.36,15.17,14.98,14.8,14.44,N/A,N/A +2012,2,14,6,30,101440,100240,99070,90.02,0,4.83,5.0600000000000005,5.09,5.07,5.04,5.01,4.96,4.92,4.82,296.82,296.98,297.13,297.3,297.46,297.63,297.83,298,298.2,15.860000000000001,15.51,15.33,15.13,14.94,14.76,14.57,14.39,14.030000000000001,N/A,N/A +2012,2,14,7,30,101460,100260,99090,91.52,0,4.73,4.97,5,5,4.98,4.96,4.93,4.89,4.7700000000000005,302.28000000000003,302.91,303.33,303.8,304.29,304.78000000000003,305.45,306.17,310,15.75,15.4,15.22,15.030000000000001,14.83,14.65,14.450000000000001,14.27,13.91,N/A,N/A +2012,2,14,8,30,101470,100270,99100,89.54,0,3.1,3.2,3.19,3.16,3.13,3.09,3.0500000000000003,3,2.84,308.99,308.87,308.74,308.61,308.48,308.35,308.2,308.07,307.82,15.620000000000001,15.290000000000001,15.11,14.91,14.72,14.540000000000001,14.34,14.16,13.790000000000001,N/A,N/A +2012,2,14,9,30,101480,100270,99100,90.78,0,2.37,2.4,2.38,2.35,2.31,2.2600000000000002,2.21,2.15,1.97,308.46,307.32,306.52,305.63,304.64,303.66,302.23,300.74,294.90000000000003,15.36,15.02,14.83,14.63,14.44,14.25,14.040000000000001,13.85,13.46,N/A,N/A +2012,2,14,10,30,101500,100300,99130,89.89,0,1.09,1.07,1.04,1.01,0.97,0.9400000000000001,0.9,0.86,0.77,340.61,339.54,338.44,337.2,335.81,334.38,332.23,330.02,320.82,15.3,14.97,14.8,14.6,14.41,14.22,14.030000000000001,13.84,13.47,N/A,N/A +2012,2,14,11,30,101540,100330,99160,91.17,0,1.3800000000000001,1.28,1.2,1.12,1.06,1,0.9400000000000001,0.89,0.81,123.47,124.17,124.78,125.76,127.23,128.84,131.65,134.52,144.25,15.21,14.86,14.67,14.46,14.26,14.06,13.84,13.64,13.22,N/A,N/A +2012,2,14,12,30,101560,100350,99180,93.36,0,2.37,2.3000000000000003,2.22,2.14,2.09,2.06,2.05,2.06,2.21,76.53,82.52,86.93,92.2,97.89,103.57000000000001,110.58,117.38,135.05,14.75,14.39,14.22,14.02,13.84,13.66,13.48,13.31,13.09,N/A,N/A +2012,2,14,13,30,101580,100370,99200,92.96000000000001,0,2.09,2.14,2.15,2.16,2.19,2.23,2.29,2.36,2.47,87.26,93.74,98.03,102.93,107.93,112.83,118.09,123.09,135.91,14.9,14.56,14.38,14.19,14,13.82,13.63,13.47,13.23,N/A,N/A +2012,2,14,14,30,101600,100400,99220,92.05,0,3.04,3.16,3.18,3.18,3.19,3.19,3.2,3.2,3.21,148.14000000000001,147.95000000000002,147.96,147.93,147.86,147.79,147.74,147.70000000000002,147.65,15.13,14.76,14.58,14.38,14.19,14,13.8,13.620000000000001,13.26,N/A,N/A +2012,2,14,15,30,101620,100410,99240,92.07000000000001,0,2.85,2.96,2.97,2.98,2.98,2.99,3,3.0100000000000002,3.0700000000000003,97.22,100.31,102.32000000000001,104.43,106.52,108.52,110.81,112.99000000000001,118.7,15.030000000000001,14.67,14.49,14.290000000000001,14.1,13.92,13.73,13.55,13.200000000000001,N/A,N/A +2012,2,14,16,30,101610,100400,99230,93.59,0,3.02,3.12,3.12,3.1,3.08,3.06,3.0300000000000002,3.02,2.97,94.49,96.14,97.31,98.52,99.73,100.89,102.21000000000001,103.33,108.69,15.17,14.81,14.63,14.43,14.24,14.06,13.86,13.68,13.41,N/A,N/A +2012,2,14,17,30,101600,100390,99220,92.72,0,3.99,4.1,4.07,4.01,3.94,3.87,3.79,3.71,3.52,102.31,103.42,104.24000000000001,105.12,106.06,106.98,108.18,109.37,112.47,15.35,14.98,14.8,14.61,14.42,14.24,14.040000000000001,13.870000000000001,13.51,N/A,N/A +2012,2,14,18,30,101590,100390,99220,92.8,0,3.73,3.85,3.85,3.8200000000000003,3.79,3.7600000000000002,3.73,3.71,3.84,101.73,103.43,104.75,106.21000000000001,107.83,109.47,111.86,114.33,123.06,15.530000000000001,15.18,15,14.81,14.620000000000001,14.44,14.25,14.07,13.73,N/A,N/A +2012,2,14,19,30,101580,100380,99210,93.68,0,3.8200000000000003,4.05,4.12,4.16,4.19,4.22,4.26,4.29,4.45,98.64,99.93,100.79,101.69,102.60000000000001,103.48,104.55,105.61,110.17,15.69,15.34,15.16,14.96,14.77,14.59,14.39,14.21,13.93,N/A,N/A +2012,2,14,20,30,101550,100350,99180,93.9,0,4.39,4.7,4.78,4.83,4.88,4.91,4.94,4.97,5.08,100.12,101.17,101.7,102.2,102.67,103.12,103.57000000000001,103.97,105.89,16.12,15.780000000000001,15.6,15.4,15.21,15.030000000000001,14.83,14.66,14.36,N/A,N/A +2012,2,14,21,30,101530,100320,99160,92.91,0,4.42,4.66,4.72,4.74,4.78,4.82,4.93,5.0600000000000005,5.62,100.71000000000001,101.57000000000001,102.37,103.41,104.87,106.45,109.22,112.21000000000001,122.2,15.860000000000001,15.5,15.32,15.13,14.94,14.76,14.58,14.42,14.17,N/A,N/A +2012,2,14,22,30,101520,100320,99160,93.15,0,6.0600000000000005,6.46,6.53,6.53,6.51,6.48,6.42,6.3500000000000005,6.15,100.4,101.48,102.13,102.8,103.49000000000001,104.18,105.09,106,108.94,16.14,15.8,15.620000000000001,15.43,15.24,15.05,14.86,14.68,14.33,N/A,N/A +2012,2,14,23,30,101510,100310,99140,95.61,0,6.2,6.58,6.65,6.66,6.66,6.66,6.69,6.73,6.92,96.44,97.14,97.58,98.06,98.58,99.09,99.76,101.74000000000001,121.24000000000001,15.97,15.610000000000001,15.43,15.25,15.06,14.88,14.71,14.59,14.56,N/A,N/A +2012,2,15,0,30,101510,100310,99140,94.79,0,6.890000000000001,7.32,7.390000000000001,7.38,7.3500000000000005,7.3100000000000005,7.28,7.26,7.3500000000000005,104.15,104.71000000000001,105.07000000000001,105.52,106.16,106.85000000000001,108.28,110.38,122.14,16.25,15.91,15.73,15.540000000000001,15.36,15.18,15,14.85,14.71,N/A,N/A +2012,2,15,1,30,101530,100330,99170,94.18,0,5.88,6.2700000000000005,6.34,6.36,6.41,6.47,6.58,6.71,7.1000000000000005,106.36,107.31,108.15,109.33,111.72,114.69,119.43,123.99000000000001,131.08,16.7,16.4,16.23,16.05,15.88,15.72,15.56,15.42,15.1,N/A,N/A +2012,2,15,2,30,101540,100340,99180,95.63,0,6.1000000000000005,6.55,6.640000000000001,6.69,6.71,6.72,7.0200000000000005,7.32,7.69,113.41,113.79,114.10000000000001,114.43,114.77,115.10000000000001,117.7,120.42,124.8,16.7,16.4,16.22,16.03,15.83,15.65,15.530000000000001,15.43,15.280000000000001,N/A,N/A +2012,2,15,3,30,101530,100330,99170,96.91,0,6.47,7.390000000000001,7.78,8.15,8.48,8.78,9.09,9.39,10.02,113.77,115.95,117.46000000000001,119.21000000000001,120.8,122.27,123.72,125.09,128.26,17.06,16.81,16.69,16.57,16.47,16.37,16.27,16.19,16.080000000000002,N/A,N/A +2012,2,15,4,30,101520,100330,99170,97.12,0.4,6.87,7.83,8.22,8.59,8.93,9.25,9.58,9.9,10.74,115.48,116.28,116.9,117.75,118.74000000000001,119.83,121.46000000000001,123.18,129.97,17.5,17.3,17.18,17.05,16.93,16.830000000000002,16.77,16.740000000000002,16.78,N/A,N/A +2012,2,15,5,30,101490,100300,99150,97.04,0,7.7700000000000005,8.94,9.43,9.92,10.43,10.950000000000001,11.41,11.8,11.69,119.69,120.5,121.27,122.48,124.47,126.95,132.03,137.3,146.34,17.71,17.57,17.490000000000002,17.42,17.39,17.39,17.57,17.77,18.080000000000002,N/A,N/A +2012,2,15,6,30,101510,100320,99170,96.17,0,7.36,8.69,9.25,9.82,10.39,10.94,11.56,12.15,13.14,130.03,130.47,130.87,131.49,132.36,133.36,135.16,137.12,145.3,17.82,17.72,17.66,17.61,17.56,17.52,17.47,17.44,17.64,N/A,N/A +2012,2,15,7,30,101540,100350,99200,95.19,0,7.53,9.01,9.68,10.38,11.07,11.75,12.38,12.98,13.61,130.21,130.94,131.62,132.66,134,135.56,137.94,140.34,149.82,18.02,18,17.98,17.97,17.98,17.990000000000002,18,18.02,17.98,N/A,N/A +2012,2,15,8,30,101510,100320,99170,93.93,0,6.92,8.66,9.49,10.32,10.97,11.51,11.94,12.31,13.120000000000001,139.59,141.24,142.56,144.24,146.1,148.05,150.01,151.83,154.61,18.28,18.35,18.37,18.41,18.43,18.43,18.41,18.38,18.28,N/A,N/A +2012,2,15,9,30,101480,100300,99150,93.52,5.5,6.75,8.44,9.24,10.1,10.83,11.46,11.86,12.17,12.51,134.23,136.4,138.07,140.32,142.65,145.02,147.52,149.87,155.84,18.39,18.46,18.48,18.51,18.51,18.5,18.45,18.400000000000002,18.25,N/A,N/A +2012,2,15,10,30,101490,100300,99160,92.72,0,6.6000000000000005,8.35,9.14,9.92,10.55,11.1,11.58,12.01,12.780000000000001,144.44,146.93,148.64000000000001,150.45000000000002,151.52,152.06,153.07,154.15,165.35,18.57,18.72,18.76,18.82,18.84,18.85,18.85,18.84,18.92,N/A,N/A +2012,2,15,11,30,101480,100300,99150,91.56,0,6.37,8.38,9.44,10.57,11.43,12.08,12.33,12.44,13.08,142.58,144.97,147.01,149.63,153.26,157.81,163.42000000000002,168.89000000000001,175.3,18.830000000000002,19.09,19.2,19.3,19.37,19.400000000000002,19.47,19.54,19.59,N/A,N/A +2012,2,15,12,30,101470,100280,99140,92.35000000000001,0,5.99,8.06,9.120000000000001,10.15,10.97,11.66,12.31,12.92,13.790000000000001,127.47,132.85,136.35,138.97,141.48,143.92000000000002,147.85,152.03,160.05,18.66,18.98,19.12,19.19,19.23,19.26,19.3,19.330000000000002,19.400000000000002,N/A,N/A +2012,2,15,13,30,101470,100290,99140,92.05,0.4,5.0600000000000005,6.84,7.66,8.51,9.13,9.58,10.6,11.8,13.34,138.37,139.99,141.64000000000001,144.51,147.48,150.51,154.35,158.44,164.09,18.81,19.03,19.1,19.19,19.25,19.28,19.3,19.31,19.22,N/A,N/A +2012,2,15,14,30,101480,100300,99160,91.38,0.4,5.73,7.73,8.67,9.620000000000001,10.41,11.11,11.78,12.41,13.16,137.81,141.94,145.31,149.96,153.74,156.93,159.45000000000002,161.65,165,18.94,19.240000000000002,19.31,19.28,19.3,19.36,19.38,19.39,19.43,N/A,N/A +2012,2,15,15,30,101500,100320,99180,91.26,0,5.36,7.4,8.45,9.41,10.23,10.96,11.6,12.18,13.67,138.18,142.21,145.02,146.86,148.42000000000002,149.8,152.37,155.31,164.52,18.990000000000002,19.35,19.48,19.580000000000002,19.62,19.61,19.6,19.59,19.62,N/A,N/A +2012,2,15,16,30,101470,100290,99150,90.41,0,5.61,7.68,8.59,9.38,10,10.5,11.03,11.53,13.13,145.08,146.20000000000002,147.1,148.14000000000001,148.79,149.16,149.19,149.13,156.68,19.25,19.52,19.59,19.650000000000002,19.67,19.67,19.66,19.63,19.48,N/A,N/A +2012,2,15,17,30,101470,100290,99150,89.59,3.7,6.63,8.96,10.07,10.9,11.57,12.120000000000001,12.67,13.21,14.58,146.66,149.79,151.86,153.34,154.07,154.20000000000002,154.5,154.85,158.76,19.400000000000002,19.67,19.73,19.75,19.75,19.72,19.650000000000002,19.57,19.28,N/A,N/A +2012,2,15,18,30,101450,100270,99130,90.89,0,5.15,7.5,8.700000000000001,9.9,10.89,11.73,12.41,13.01,13.91,132.94,137.6,140.9,144,146.94,149.74,153.1,156.41,162.56,19.26,19.650000000000002,19.78,19.87,19.900000000000002,19.900000000000002,19.78,19.66,19.5,N/A,N/A +2012,2,15,19,30,101430,100250,99110,90.84,0,5.34,7.53,8.620000000000001,9.74,10.76,11.700000000000001,12.48,13.17,14.23,138.02,142.1,145.14000000000001,148.38,151.35,154.16,156.38,158.31,163.86,19.25,19.62,19.740000000000002,19.830000000000002,19.87,19.89,19.86,19.81,19.580000000000002,N/A,N/A +2012,2,15,20,30,101400,100220,99080,90.65,0,5.25,7.42,8.48,9.52,10.44,11.290000000000001,12.030000000000001,12.69,13.82,150.42000000000002,152.56,154.27,156.36,158.39000000000001,160.41,162.18,163.78,172.39000000000001,19.29,19.69,19.82,19.900000000000002,19.91,19.89,19.81,19.72,19.78,N/A,N/A +2012,2,15,21,30,101410,100230,99090,91.22,0,4.25,6.38,7.45,8.55,9.49,10.290000000000001,11.21,12.14,12.63,150.96,155,157.95000000000002,160.54,162.69,164.49,168.65,173.52,178.48,19.25,19.67,19.8,19.88,19.92,19.94,19.98,20.02,20.02,N/A,N/A +2012,2,15,22,30,101390,100210,99070,92.16,0.4,3.86,6,6.98,7.9,9.06,10.46,11.01,11.28,11.72,150.06,155.48,159.32,162.95000000000002,168.76,176.53,179.87,181.63,185.35,19.07,19.57,19.740000000000002,19.88,20.06,20.26,20.31,20.32,20.330000000000002,N/A,N/A +2012,2,15,23,30,101400,100220,99080,92.45,0,3.65,5.8500000000000005,7.04,8.43,9.450000000000001,10.16,10.620000000000001,10.97,11.24,157.41,162.78,167.59,174.45000000000002,179.8,183.82,187.15,190.03,194.31,18.97,19.56,19.830000000000002,20.150000000000002,20.34,20.44,20.53,20.62,20.71,N/A,N/A +2012,2,16,0,30,101410,100230,99090,91.21000000000001,0.4,4.45,6.8100000000000005,8.01,9.28,10.15,10.66,10.75,10.69,10.65,168.51,173.94,178.14000000000001,183.17000000000002,189.56,196.92000000000002,200.14000000000001,201.81,205.77,19.150000000000002,19.830000000000002,20.12,20.39,20.580000000000002,20.71,20.81,20.89,21.12,N/A,N/A +2012,2,16,1,30,101460,100280,99140,92.34,0,3.37,5.74,6.98,8.23,8.790000000000001,8.78,8.82,8.870000000000001,8.93,174.65,177.96,182.69,192.55,198.44,200.85,202.91,204.72,207.76,19.11,19.84,20.14,20.44,20.56,20.57,20.52,20.46,20.35,N/A,N/A +2012,2,16,2,30,101500,100320,99180,92.64,0.4,3.18,5.79,7,7.57,7.83,7.86,7.890000000000001,7.92,7.98,186.91,188.87,193.22,203.87,209.58,211.44,213.22,214.84,218.83,19.09,19.97,20.34,20.63,20.75,20.740000000000002,20.7,20.64,20.59,N/A,N/A +2012,2,16,3,30,101550,100370,99230,91.91,0,3.38,5.79,6.59,6.61,6.58,6.5200000000000005,6.49,6.48,6.49,196.47,201.65,208.85,222.89000000000001,229.8,231.72,233.43,234.94,238.84,19.330000000000002,20.29,20.6,20.71,20.740000000000002,20.7,20.64,20.59,20.5,N/A,N/A +2012,2,16,4,30,101580,100400,99260,92.48,0.4,2.63,3.81,4.14,4.38,4.59,4.79,4.97,5.13,5.39,248.23000000000002,252.05,254.93,258.51,261.28000000000003,263.54,264.61,265.29,265.9,19.14,19.66,19.8,19.900000000000002,19.96,20,20,19.990000000000002,19.900000000000002,N/A,N/A +2012,2,16,5,30,101600,100420,99280,92.66,0.4,2.58,3.62,3.79,3.77,3.7,3.6,3.5300000000000002,3.47,3.59,266.41,272.29,275.81,277.96,280.18,282.47,284.05,285.29,285.81,19.13,19.84,20.02,20.03,20.05,20.09,20.16,20.240000000000002,20.25,N/A,N/A +2012,2,16,6,30,101650,100470,99330,93.4,0,3.15,4.17,4.3500000000000005,4.58,4.83,5.08,5.34,5.58,6.08,292.82,303.23,309.08,313.69,316.97,319.39,321.02,322.36,324.51,19.06,19.59,19.75,19.82,19.85,19.86,19.830000000000002,19.8,19.77,N/A,N/A +2012,2,16,7,30,101690,100510,99370,93.19,0,2.77,4.13,4.44,4.51,4.58,4.66,4.78,4.9,5.22,321.68,327.97,331.85,335.13,337.76,339.99,341.7,343.16,344.48,19.17,19.6,19.64,19.53,19.69,20.03,20.23,20.38,20.150000000000002,N/A,N/A +2012,2,16,8,30,101740,100550,99400,93.28,0,3.59,4.72,4.98,5.14,5.19,5.18,5.51,5.91,6.640000000000001,333.27,340.43,345.57,351.09000000000003,354.35,356.05,356.49,356.58,353.96,18.900000000000002,19.150000000000002,19.11,18.88,18.64,18.39,18.52,18.72,19.95,N/A,N/A +2012,2,16,9,30,101770,100570,99420,96.04,0,3.73,4.8500000000000005,5.33,5.74,6.11,6.44,6.63,6.7700000000000005,7.03,347.04,349.65000000000003,351.91,354.90000000000003,356.76,357.85,358.6,359.23,0.15,18.12,17.96,17.76,17.42,17.35,17.45,18.28,19.2,20,N/A,N/A +2012,2,16,10,30,101800,100600,99450,99.16,0,4.08,4.83,5.26,5.8,6.28,6.74,6.96,7.12,7.6000000000000005,354.43,359.27,3.86,10.89,14.59,16.27,16.080000000000002,15.52,12.76,17.43,17.330000000000002,17.29,17.240000000000002,16.87,16.35,17.39,18.56,19.96,N/A,N/A +2012,2,16,11,30,101840,100640,99480,99.21000000000001,0,4.13,4.69,4.95,5.28,5.78,6.4,6.8500000000000005,7.25,8.18,5.93,9.9,12.46,15,17.740000000000002,20.67,22.95,24.82,24.16,17.42,17.32,17.27,17.19,16.96,16.66,16.32,16.12,18.28,N/A,N/A +2012,2,16,12,30,101870,100670,99510,99.26,0,5.51,5.82,5.97,6.25,6.78,7.43,7.930000000000001,8.38,9.120000000000001,14.69,15.24,16.26,18.330000000000002,20.98,23.98,26.17,27.92,28.2,16.51,16.23,16.080000000000002,15.89,16.1,16.490000000000002,17.6,18.67,19.84,N/A,N/A +2012,2,16,13,30,101930,100730,99560,99.23,0,5.15,5.37,5.41,5.48,5.91,6.57,7,7.390000000000001,8.17,26.82,26.77,26.77,26.830000000000002,28.080000000000002,30.04,31.67,33.04,34.19,16,15.68,15.52,15.32,15.34,15.46,16,16.55,17.75,N/A,N/A +2012,2,16,14,30,102000,100790,99630,99.23,0,4.96,5.19,5.22,5.21,5.23,5.26,6.19,7.21,8.14,25.27,26.75,27.830000000000002,29.16,31.17,33.36,37.33,41.18,42.31,16.1,15.82,15.69,15.55,15.33,15.08,15.36,15.76,17.19,N/A,N/A +2012,2,16,15,30,102010,100800,99630,98.52,0,5.44,5.71,5.74,5.75,5.9,6.11,6.86,7.57,8.28,19.37,19.62,19.92,20.38,22.13,24.32,30.54,36.09,39.17,15.63,15.26,15.09,14.94,14.74,14.55,15.3,16.01,17.12,N/A,N/A +2012,2,16,16,30,102030,100820,99650,96.89,0,4.89,5.16,5.25,5.36,5.87,6.59,7.140000000000001,7.62,8.32,26.42,26.73,27.18,27.93,30.35,33.65,36.02,38.11,41.53,15.77,15.43,15.26,15.09,15.01,14.98,15.18,15.43,16.26,N/A,N/A +2012,2,16,17,30,102010,100810,99640,93.12,0,5.76,6.13,6.24,6.38,6.8100000000000005,7.390000000000001,7.86,8.28,8.92,38.65,39.050000000000004,39.45,40.11,41.36,42.910000000000004,43.86,44.61,45.29,16.29,15.96,15.8,15.64,15.540000000000001,15.48,15.55,15.66,16.12,N/A,N/A +2012,2,16,18,30,102000,100790,99630,90.94,0,5.0200000000000005,5.33,5.4,5.48,6.03,6.88,7.28,7.6000000000000005,8.22,64.09,63.9,63.61,63.22,61.46,58.86,57.15,55.67,52.97,16.79,16.48,16.32,16.15,16.07,16.05,16.06,16.09,16.330000000000002,N/A,N/A +2012,2,16,19,30,102000,100790,99630,89.44,0,4.51,4.83,5.16,5.88,6.38,6.74,7.05,7.32,7.9,47.980000000000004,48.120000000000005,48.28,48.46,47.59,46.19,44.63,43.25,41.94,17.1,16.830000000000002,16.73,16.68,16.79,16.97,17.11,17.240000000000002,17.44,N/A,N/A +2012,2,16,20,30,101960,100760,99600,86.06,0,3.18,4.12,4.64,5.07,5.51,5.95,6.3500000000000005,6.71,7.33,64.47,62.83,61.85,60.870000000000005,59.79,58.660000000000004,57.54,56.49,54.58,17.47,17.37,17.39,17.490000000000002,17.650000000000002,17.830000000000002,17.96,18.06,18.18,N/A,N/A +2012,2,16,21,30,101980,100780,99620,83.39,0,1.76,1.97,2.21,2.82,3.29,3.62,3.94,4.25,4.7700000000000005,116.3,119.29,116.42,102.81,94.7,91,87.63,84.47,78.16,17.87,17.56,17.47,17.54,17.56,17.54,17.53,17.53,17.54,N/A,N/A +2012,2,16,22,30,101900,100710,99550,85.37,0,3.87,4.59,4.98,5.51,5.82,6.01,6.17,6.3100000000000005,6.47,101.63,99.5,97.31,93.52,90.67,88.46000000000001,86.43,84.58,80.84,17.84,17.73,17.71,17.740000000000002,17.77,17.79,17.900000000000002,18.01,18.05,N/A,N/A +2012,2,16,23,30,101910,100710,99560,88.58,0,3.13,4.22,4.8500000000000005,5.54,6.05,6.44,6.63,6.78,6.92,77.14,80.24,82.34,84.07000000000001,84.27,83.63,82.05,80.42,76.24,17.86,17.85,17.85,17.89,17.95,18.01,18.09,18.16,18.32,N/A,N/A +2012,2,17,0,30,101940,100740,99590,91.66,0,1.95,3.14,3.83,4.51,4.98,5.3100000000000005,5.63,5.92,6.3500000000000005,42.45,59,68.60000000000001,72.8,74.67,75.17,74.82000000000001,74.31,72.36,17.71,17.87,17.97,18.06,18.17,18.29,18.490000000000002,18.68,18.93,N/A,N/A +2012,2,17,1,30,101970,100770,99610,92.32000000000001,0,1.79,2.24,2.35,2.54,2.7600000000000002,3,3.2800000000000002,3.56,4.11,5.68,23.31,33.77,42.47,49.2,54.86,58.89,62.36,66.57000000000001,17.79,17.85,17.88,17.900000000000002,17.92,17.95,17.98,18.02,18.09,N/A,N/A +2012,2,17,2,30,101960,100770,99610,90.07000000000001,0,2.48,3.31,3.63,3.81,4.01,4.22,4.44,4.65,5.08,43.71,54.06,60,63.61,66.84,69.85000000000001,72.47,74.81,78.66,17.72,17.86,17.91,17.900000000000002,17.89,17.89,17.87,17.85,17.81,N/A,N/A +2012,2,17,3,30,101950,100750,99590,90.69,0,2.92,3.58,3.9,4.2,4.39,4.5,4.64,4.7700000000000005,5.11,30.92,35.72,40.68,48.44,53.44,56.65,59.620000000000005,62.300000000000004,67.1,17.6,17.57,17.6,17.69,17.71,17.7,17.66,17.62,17.54,N/A,N/A +2012,2,17,4,30,101880,100680,99520,89.74,0,4.0600000000000005,4.73,5.07,5.47,5.7700000000000005,6.01,6.2,6.37,6.78,54.17,55.24,57.47,62.31,66.58,70.39,72.67,74.52,77.67,17.56,17.46,17.45,17.51,17.53,17.54,17.51,17.47,17.36,N/A,N/A +2012,2,17,5,30,101880,100680,99520,91.08,0.7000000000000001,3.5300000000000002,4.16,4.49,4.8100000000000005,5.13,5.45,5.73,5.98,6.2700000000000005,41.51,47.63,52.24,57.75,62.22,66.08,68.78,71.06,74.35000000000001,17.35,17.23,17.2,17.19,17.18,17.17,17.11,17.04,16.75,N/A,N/A +2012,2,17,6,30,101860,100660,99500,87.63,0,4.25,4.9,5.24,5.66,6.03,6.38,6.61,6.8100000000000005,7.0600000000000005,46.2,50.35,53.85,58.61,63.7,68.68,71.09,72.79,73.31,17.52,17.35,17.27,17.23,17.21,17.19,17.080000000000002,16.95,16.6,N/A,N/A +2012,2,17,7,30,101840,100640,99470,87.98,0,6.6000000000000005,7.09,7.22,7.34,7.62,7.96,8.19,8.31,7.76,74.46000000000001,74.45,74.45,74.43,74.37,74.28,73.98,73.63,72.59,16.79,16.490000000000002,16.32,16.15,16.01,15.89,15.870000000000001,15.860000000000001,15.790000000000001,N/A,N/A +2012,2,17,8,30,101820,100610,99450,85.99,0,7.63,8.2,8.31,8.35,8.370000000000001,8.370000000000001,8.38,8.42,8.69,64.69,64.9,65.05,65.22,65.44,65.66,66.06,66.67,71.19,16.61,16.28,16.11,15.91,15.73,15.55,15.36,15.19,15,N/A,N/A +2012,2,17,9,30,101800,100600,99430,90.23,0,7.07,7.61,7.73,7.78,7.8,7.82,7.83,7.8500000000000005,8.08,62.39,62.660000000000004,62.85,63.08,63.34,63.6,63.980000000000004,64.38,66.51,16.57,16.23,16.05,15.860000000000001,15.67,15.49,15.3,15.120000000000001,14.780000000000001,N/A,N/A +2012,2,17,10,30,101790,100590,99420,87.98,0,7.5200000000000005,8.14,8.290000000000001,8.35,8.39,8.4,8.41,8.41,8.44,64.26,64.43,64.54,64.68,64.83,64.99,65.22,65.44,66.17,16.69,16.37,16.19,15.99,15.8,15.620000000000001,15.42,15.24,14.870000000000001,N/A,N/A +2012,2,17,11,30,101780,100570,99410,86.36,0,8.040000000000001,8.700000000000001,8.85,8.91,8.94,8.96,8.96,8.96,8.98,69.03,69.19,69.32000000000001,69.46000000000001,69.61,69.76,69.96000000000001,70.16,70.82000000000001,16.61,16.28,16.1,15.9,15.71,15.530000000000001,15.33,15.15,14.780000000000001,N/A,N/A +2012,2,17,12,30,101770,100570,99400,86.38,0.4,7.8500000000000005,8.51,8.67,8.74,8.77,8.790000000000001,8.790000000000001,8.790000000000001,8.78,69.5,69.73,69.89,70.07000000000001,70.27,70.46000000000001,70.72,70.97,71.7,16.5,16.16,15.98,15.790000000000001,15.59,15.41,15.21,15.030000000000001,14.66,N/A,N/A +2012,2,17,13,30,101770,100570,99400,87.32000000000001,0,7.98,8.620000000000001,8.75,8.8,8.82,8.83,8.82,8.8,8.78,64.95,65.24,65.43,65.62,65.82000000000001,66.01,66.26,66.51,67.26,16.4,16.05,15.870000000000001,15.67,15.48,15.290000000000001,15.1,14.92,14.540000000000001,N/A,N/A +2012,2,17,14,30,101790,100590,99420,88.04,0,7.84,8.46,8.61,8.67,8.69,8.71,8.700000000000001,8.69,8.68,74.75,75.02,75.19,75.37,75.57000000000001,75.77,76.03,76.29,77.07000000000001,16.4,16.05,15.870000000000001,15.68,15.48,15.3,15.1,14.92,14.55,N/A,N/A +2012,2,17,15,30,101800,100600,99430,88.42,0,7.33,7.9,8.02,8.08,8.1,8.1,8.1,8.09,8.08,74.12,74.35000000000001,74.54,74.74,74.95,75.14,75.4,75.65,76.44,16.5,16.16,15.98,15.780000000000001,15.59,15.41,15.21,15.030000000000001,14.65,N/A,N/A +2012,2,17,16,30,101770,100570,99400,89.53,0,7.25,7.79,7.9,7.930000000000001,7.94,7.94,7.930000000000001,7.930000000000001,7.96,79.62,79.85000000000001,80.03,80.22,80.43,80.65,80.98,81.34,83.65,16.51,16.18,16,15.8,15.610000000000001,15.43,15.24,15.06,14.75,N/A,N/A +2012,2,17,17,30,101760,100560,99390,90.69,0,6.87,7.4,7.5200000000000005,7.57,7.6000000000000005,7.61,7.61,7.61,7.61,72.71000000000001,73.06,73.32000000000001,73.59,73.86,74.13,74.44,74.74,75.60000000000001,16.6,16.27,16.09,15.89,15.700000000000001,15.52,15.32,15.14,14.76,N/A,N/A +2012,2,17,18,30,101730,100530,99360,91.04,0,7.62,8.22,8.36,8.41,8.44,8.44,8.44,8.42,8.38,67.43,67.84,68.11,68.41,68.71000000000001,69,69.35000000000001,69.69,70.58,16.56,16.22,16.04,15.84,15.65,15.47,15.27,15.09,14.71,N/A,N/A +2012,2,17,19,30,101730,100530,99360,91.09,0,7.44,8.02,8.15,8.2,8.22,8.22,8.21,8.19,8.14,68.14,68.53,68.79,69.07000000000001,69.35000000000001,69.63,69.97,70.31,71.31,16.55,16.21,16.03,15.83,15.64,15.46,15.26,15.08,14.700000000000001,N/A,N/A +2012,2,17,20,30,101690,100490,99320,91.24,0,7.68,8.25,8.35,8.370000000000001,8.370000000000001,8.34,8.3,8.27,8.18,64.83,65.21000000000001,65.54,65.9,66.28,66.67,67.18,67.71000000000001,69.57000000000001,16.32,15.97,15.790000000000001,15.59,15.4,15.22,15.030000000000001,14.85,14.49,N/A,N/A +2012,2,17,21,30,101660,100460,99290,88.94,0,7.3100000000000005,7.8500000000000005,7.96,7.99,8,7.99,7.97,7.96,7.930000000000001,66.51,66.69,66.78,66.89,67.02,67.16,67.39,67.64,69.35000000000001,16.35,16,15.82,15.620000000000001,15.43,15.25,15.05,14.870000000000001,14.5,N/A,N/A +2012,2,17,22,30,101630,100420,99260,88.83,0,7.43,7.95,8.05,8.08,8.09,8.08,8.06,8.040000000000001,8.040000000000001,69.34,69.53,69.7,69.89,70.09,70.31,70.63,70.96000000000001,72.51,16.39,16.04,15.860000000000001,15.67,15.47,15.290000000000001,15.1,14.91,14.540000000000001,N/A,N/A +2012,2,17,23,30,101600,100390,99230,89.57000000000001,0,7.5,8.06,8.16,8.2,8.2,8.19,8.17,8.15,8.11,65.84,66.14,66.35,66.56,66.81,67.05,67.43,67.84,69.99,16.46,16.11,15.94,15.74,15.55,15.370000000000001,15.17,15,14.65,N/A,N/A +2012,2,18,0,30,101610,100410,99250,89.55,0,7.5,8.07,8.17,8.2,8.21,8.21,8.21,8.21,8.2,67.73,67.93,68.06,68.22,68.44,68.67,69.10000000000001,69.64,73.27,16.59,16.26,16.080000000000002,15.89,15.700000000000001,15.52,15.32,15.15,14.88,N/A,N/A +2012,2,18,1,30,101630,100430,99260,90.11,0,7.04,7.57,7.67,7.7,7.72,7.72,7.74,7.7700000000000005,7.94,62.74,63.11,63.35,63.63,63.96,64.3,64.95,65.74,70.68,16.7,16.38,16.2,16.01,15.82,15.64,15.46,15.290000000000001,15.05,N/A,N/A +2012,2,18,2,30,101600,100400,99230,90.31,0,7.26,7.8,7.91,7.95,7.99,8.01,8.120000000000001,8.25,8.620000000000001,74.94,75.19,75.39,75.67,76.05,76.48,77.49,78.71000000000001,84.93,16.77,16.45,16.28,16.09,15.91,15.73,15.56,15.41,15.34,N/A,N/A +2012,2,18,3,30,101540,100350,99180,91.15,0,7.18,7.72,7.82,7.87,7.91,7.94,8.040000000000001,8.18,8.790000000000001,75.91,76.28,76.52,76.85000000000001,77.27,77.72,78.64,79.96000000000001,88.03,16.81,16.5,16.330000000000002,16.14,15.950000000000001,15.780000000000001,15.59,15.43,15.32,N/A,N/A +2012,2,18,4,30,101480,100290,99130,92.32000000000001,0,7.04,7.6000000000000005,7.73,7.83,7.97,8.120000000000001,8.5,8.85,9.120000000000001,78.25,78.74,79.16,79.69,80.54,81.5,84.27,87.02,91.56,16.85,16.55,16.38,16.19,16.02,15.860000000000001,15.72,15.620000000000001,15.540000000000001,N/A,N/A +2012,2,18,5,30,101430,100240,99080,93.34,0,6.67,7.2,7.3500000000000005,7.48,7.8,8.22,8.58,8.89,9.28,82.08,82.67,83.15,83.86,85.41,87.43,89.77,91.97,95.85000000000001,16.91,16.62,16.46,16.28,16.12,15.98,15.88,15.8,15.73,N/A,N/A +2012,2,18,6,30,101380,100190,99030,93.96000000000001,0,6.6000000000000005,7.26,7.58,8.07,8.44,8.73,9.02,9.28,9.69,91.57000000000001,92.32000000000001,93.05,94.26,95.7,97.24000000000001,98.92,100.5,103.65,17.080000000000002,16.81,16.66,16.5,16.35,16.21,16.1,16.01,15.8,N/A,N/A +2012,2,18,7,30,101310,100120,98960,94.9,0,6.46,7.3500000000000005,7.71,8,8.26,8.5,8.74,8.96,9.39,89.84,90.85000000000001,91.62,92.52,93.72,95.05,96.99000000000001,98.96000000000001,104.18,17.26,17.01,16.87,16.7,16.54,16.39,16.26,16.15,16.05,N/A,N/A +2012,2,18,8,30,101220,100030,98880,95.88,0,6.78,7.6000000000000005,7.92,8.2,8.47,8.73,9.03,9.31,9.83,82.39,83.14,83.81,84.82000000000001,86.31,88.09,91.41,94.96000000000001,105.44,17.28,17.04,16.9,16.740000000000002,16.61,16.5,16.47,16.46,16.54,N/A,N/A +2012,2,18,9,30,101140,99950,98800,96.41,0,7.18,8.03,8.35,8.63,8.91,9.17,9.49,9.81,10.67,85.10000000000001,85.99,86.61,87.46000000000001,88.53,89.73,91.55,93.41,100.58,17.36,17.13,16.990000000000002,16.830000000000002,16.69,16.56,16.490000000000002,16.45,16.48,N/A,N/A +2012,2,18,10,30,101080,99890,98740,97.57000000000001,0,7.13,8.120000000000001,8.51,8.89,9.26,9.61,10.01,10.39,11.46,99.22,99.62,99.96000000000001,100.41,100.98,101.61,102.54,103.48,109.27,17.52,17.3,17.18,17.06,16.97,16.91,16.86,16.82,16.9,N/A,N/A +2012,2,18,11,30,101050,99870,98720,97.37,0,6.91,8.17,8.78,9.44,10.06,10.65,11.03,11.34,11.68,100.91,102.03,103.10000000000001,104.7,107.29,110.55,116.87,123.34,133.9,17.72,17.64,17.6,17.57,17.57,17.6,17.64,17.69,17.73,N/A,N/A +2012,2,18,12,30,101030,99840,98700,96.67,0,6.12,7.33,7.930000000000001,8.6,9.28,9.98,10.59,11.14,11.1,101.19,102.74000000000001,104.37,107.18,110.8,115.04,122.9,131.15,140.70000000000002,17.86,17.82,17.82,17.85,17.89,17.95,18.04,18.14,18.16,N/A,N/A +2012,2,18,13,30,100970,99790,98650,96.23,78.4,4.67,5.7,6.3,7.0200000000000005,7.5,7.74,7.83,7.86,7.76,90.53,93.10000000000001,96.01,100.82000000000001,109.4,123.10000000000001,130.77,135.28,142.48,17.96,17.98,17.98,17.990000000000002,18.07,18.22,18.28,18.3,18.330000000000002,N/A,N/A +2012,2,18,14,30,100860,99680,98540,95.31,11.4,4.73,6.28,6.68,6.69,6.74,6.8100000000000005,6.96,7.11,7.41,115.93,120.61,126.28,134.62,138.70000000000002,140.84,142.65,144.24,147.39000000000001,18.17,18.61,18.87,19.14,19.240000000000002,19.26,19.23,19.19,19.1,N/A,N/A +2012,2,18,15,30,100860,99670,98530,99.33,16.1,7.51,7.75,7.44,6.57,5.72,4.94,4.14,3.49,2.31,25.150000000000002,27.88,29.87,31.76,33.26,34.45,36.31,37.96,48.26,16.39,16.59,16.84,17.27,17.56,17.78,17.900000000000002,18,18.06,N/A,N/A +2012,2,18,16,30,100850,99660,98520,98.56,28.900000000000002,6.140000000000001,5.55,5.01,4.36,3.68,3.06,2.36,1.81,0.8,52.81,56.07,58.13,59.9,59.92,59.19,54.42,49.59,4.93,16.79,16.98,17.12,17.19,17.27,17.35,17.400000000000002,17.44,17.52,N/A,N/A +2012,2,18,17,30,100760,99570,98430,98.2,133.3,4.43,3.52,2.74,2.0100000000000002,1.68,1.48,2.08,2.84,4.72,42.12,34.65,24.59,12.74,340.02,307.48,287.26,266.92,254.56,17.080000000000002,17.55,17.71,17.740000000000002,17.76,17.78,17.77,17.76,17.740000000000002,N/A,N/A +2012,2,18,18,30,100790,99610,98460,97.99000000000001,1.1,1.11,1.96,2.47,3.16,3.8200000000000003,4.45,5.05,5.62,6.7,165.55,195.32,213.9,224.3,231.21,235.39000000000001,238,240.15,242.93,17.76,17.71,17.66,17.57,17.5,17.45,17.42,17.400000000000002,17.42,N/A,N/A +2012,2,18,19,30,100810,99630,98480,98.03,0.4,3,3.33,3.43,3.48,3.49,3.49,3.5500000000000003,3.62,4.03,300.97,300.12,298.68,295.93,293.85,292.22,291.25,290.42,287.65000000000003,17.53,17.28,17.17,17.1,17.04,16.98,16.91,16.86,16.79,N/A,N/A +2012,2,18,20,30,100850,99660,98510,98.04,0.4,3.83,3.95,3.96,4.11,4.17,4.15,4.11,4.08,4.34,318.33,318.33,317.86,315.93,314.53000000000003,313.5,309.47,304.87,294.67,17.03,16.75,16.6,16.46,16.35,16.26,16.23,16.22,16.26,N/A,N/A +2012,2,18,21,30,100840,99640,98490,95.35000000000001,0,4.84,5.03,5.0200000000000005,4.97,4.9,4.82,4.64,4.5,4.41,329.87,329.81,329.69,329.51,328.73,327.74,322.88,318.1,308.62,16.41,16.080000000000002,15.91,15.72,15.52,15.34,15.35,15.38,15.59,N/A,N/A +2012,2,18,22,30,100880,99690,98530,94.34,0,3.7600000000000002,3.93,3.96,3.97,4.0200000000000005,4.11,4.43,4.78,5.25,318.81,318.59000000000003,318.31,317.82,316.46,314.65000000000003,309.62,304.49,299.3,16.490000000000002,16.17,16,15.8,15.620000000000001,15.44,15.33,15.25,15.15,N/A,N/A +2012,2,18,23,30,100900,99710,98550,94.33,0,4.9,5.19,5.2700000000000005,5.34,5.5600000000000005,5.87,6.5,7.140000000000001,7.72,312.69,311.85,311.02,309.64,306.92,303.29,298.1,293.03000000000003,289.76,16.34,16.02,15.85,15.67,15.51,15.370000000000001,15.290000000000001,15.21,15.11,N/A,N/A +2012,2,19,0,30,100980,99790,98630,94.43,0,6.37,6.8,6.9,6.95,6.98,7,7.05,7.09,7.42,296.96,295.91,295.26,294.51,293.72,292.90000000000003,291.83,290.76,286.87,16.11,15.780000000000001,15.6,15.4,15.22,15.040000000000001,14.85,14.68,14.370000000000001,N/A,N/A +2012,2,19,1,30,101030,99840,98670,90.99,3.3000000000000003,8.71,9.450000000000001,9.66,9.77,9.84,9.89,9.92,9.94,9.97,293.90000000000003,294.17,294.24,294.29,294.31,294.33,294.33,294.33,294.29,16.09,15.72,15.540000000000001,15.33,15.14,14.950000000000001,14.75,14.56,14.18,N/A,N/A +2012,2,19,2,30,101100,99900,98730,89.29,0,10.92,11.950000000000001,12.23,12.39,12.5,12.58,12.64,12.700000000000001,12.8,293.93,294,294.02,294.03000000000003,294.04,294.04,294.04,294.04,294.04,15.43,15,14.790000000000001,14.58,14.38,14.19,13.99,13.8,13.42,N/A,N/A +2012,2,19,3,30,101180,99980,98810,87.91,0,12.11,13.25,13.58,13.76,13.88,13.97,14.040000000000001,14.09,14.16,293.2,293.43,293.56,293.7,293.82,293.94,294.07,294.19,294.45,14.85,14.370000000000001,14.16,13.94,13.74,13.540000000000001,13.34,13.15,12.76,N/A,N/A +2012,2,19,4,30,101250,100040,98860,86.27,0,11.8,12.790000000000001,13.06,13.200000000000001,13.27,13.32,13.34,13.36,13.36,297.48,297.8,298.02,298.23,298.43,298.62,298.84000000000003,299.04,299.5,13.780000000000001,13.23,13,12.780000000000001,12.57,12.370000000000001,12.17,11.98,11.59,N/A,N/A +2012,2,19,5,30,101310,100100,98920,86.05,0,11.44,12.49,12.790000000000001,12.96,13.08,13.16,13.22,13.27,13.33,305.07,305.62,305.95,306.24,306.51,306.76,307.02,307.25,307.73,13.52,12.950000000000001,12.72,12.5,12.280000000000001,12.08,11.870000000000001,11.68,11.28,N/A,N/A +2012,2,19,6,30,101430,100210,99030,84.66,0,13.11,14.280000000000001,14.68,14.88,15.030000000000001,15.13,15.200000000000001,15.27,15.35,314.44,314.63,314.78000000000003,314.93,315.06,315.19,315.32,315.44,315.7,13.33,12.74,12.49,12.25,12.030000000000001,11.83,11.620000000000001,11.43,11.03,N/A,N/A +2012,2,19,7,30,101490,100270,99090,86.77,0,11.68,12.71,12.99,13.14,13.24,13.31,13.34,13.370000000000001,13.39,315.1,315.21,315.31,315.39,315.48,315.56,315.64,315.71,315.88,13.09,12.49,12.25,12.01,11.790000000000001,11.59,11.38,11.19,10.790000000000001,N/A,N/A +2012,2,19,8,30,101540,100320,99140,84.16,0,12.3,13.42,13.74,13.92,14.040000000000001,14.13,14.19,14.24,14.31,328.46,328.59000000000003,328.66,328.72,328.76,328.81,328.85,328.90000000000003,328.98,12.76,12.13,11.89,11.65,11.43,11.23,11.02,10.82,10.42,N/A,N/A +2012,2,19,9,30,101600,100380,99190,84.88,0,11.93,12.96,13.26,13.42,13.52,13.6,13.65,13.69,13.74,334.3,334.3,334.31,334.31,334.31,334.31,334.32,334.32,334.33,12.32,11.68,11.43,11.200000000000001,10.98,10.77,10.56,10.370000000000001,9.97,N/A,N/A +2012,2,19,10,30,101660,100440,99250,86.17,0,11.31,12.25,12.51,12.64,12.73,12.790000000000001,12.83,12.86,12.9,336.98,337.08,337.14,337.2,337.25,337.3,337.34000000000003,337.38,337.47,12.040000000000001,11.4,11.15,10.91,10.700000000000001,10.49,10.28,10.08,9.69,N/A,N/A +2012,2,19,11,30,101740,100510,99320,84.56,0,11.59,12.56,12.84,12.98,13.08,13.15,13.200000000000001,13.23,13.280000000000001,344.31,344.34000000000003,344.36,344.38,344.39,344.40000000000003,344.42,344.44,344.46,11.67,11,10.74,10.5,10.28,10.08,9.86,9.66,9.26,N/A,N/A +2012,2,19,12,30,101800,100570,99370,85.68,0,11.07,11.98,12.24,12.38,12.48,12.55,12.6,12.63,12.69,347.82,347.90000000000003,347.95,347.99,348.04,348.08,348.12,348.17,348.26,11.36,10.68,10.43,10.19,9.97,9.76,9.55,9.35,8.96,N/A,N/A +2012,2,19,13,30,101850,100610,99420,84.83,0,10.98,11.88,12.13,12.26,12.35,12.41,12.450000000000001,12.48,12.52,352.32,352.35,352.36,352.37,352.38,352.39,352.40000000000003,352.41,352.45,11.17,10.48,10.23,9.99,9.76,9.56,9.35,9.15,8.75,N/A,N/A +2012,2,19,14,30,101910,100680,99490,84.93,0,10.21,10.97,11.19,11.3,11.370000000000001,11.42,11.450000000000001,11.47,11.5,354.18,354.1,354.04,353.98,353.94,353.89,353.84000000000003,353.8,353.72,11.05,10.39,10.13,9.9,9.68,9.47,9.26,9.07,8.67,N/A,N/A +2012,2,19,15,30,101960,100720,99530,82.8,0,8.81,9.43,9.6,9.69,9.74,9.790000000000001,9.81,9.84,9.88,354.15000000000003,354.13,354.12,354.11,354.1,354.09000000000003,354.08,354.08,354.08,11.06,10.44,10.19,9.96,9.75,9.55,9.34,9.15,8.76,N/A,N/A +2012,2,19,16,30,101980,100750,99560,80.67,0,7.37,7.84,7.97,8.03,8.08,8.11,8.13,8.15,8.17,352.77,352.91,353.01,353.11,353.2,353.29,353.38,353.46,353.64,11.36,10.78,10.55,10.33,10.120000000000001,9.92,9.71,9.52,9.120000000000001,N/A,N/A +2012,2,19,17,30,101970,100740,99550,78.26,0,6.32,6.69,6.79,6.84,6.87,6.890000000000001,6.91,6.92,6.94,346.74,346.85,346.93,347,347.07,347.13,347.21,347.28000000000003,347.45,11.88,11.34,11.120000000000001,10.9,10.69,10.5,10.290000000000001,10.1,9.71,N/A,N/A +2012,2,19,18,30,101960,100740,99550,76.29,0,5.3,5.6000000000000005,5.69,5.73,5.7700000000000005,5.8,5.82,5.84,5.86,342.33,342.71,342.97,343.2,343.43,343.62,343.84000000000003,344.05,344.47,12.49,12,11.790000000000001,11.57,11.370000000000001,11.17,10.97,10.78,10.38,N/A,N/A +2012,2,19,19,30,101970,100750,99560,74.3,0,4.07,4.26,4.3100000000000005,4.34,4.36,4.37,4.39,4.39,4.41,334.6,335.72,336.48,337.2,337.85,338.46,339.06,339.63,340.78000000000003,13.08,12.64,12.43,12.22,12.02,11.83,11.63,11.44,11.05,N/A,N/A +2012,2,19,20,30,101940,100720,99530,73.97,0,3.5500000000000003,3.67,3.67,3.67,3.65,3.64,3.62,3.6,3.5700000000000003,319.14,320.37,321.18,321.98,322.72,323.40000000000003,324.15000000000003,324.85,326.35,13.41,12.98,12.780000000000001,12.57,12.370000000000001,12.19,11.98,11.790000000000001,11.4,N/A,N/A +2012,2,19,21,30,101920,100700,99520,72.4,0,3.11,3.24,3.27,3.2800000000000002,3.29,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,312.72,313.42,313.87,314.3,314.71,315.09000000000003,315.49,315.88,316.71,13.73,13.33,13.13,12.92,12.72,12.530000000000001,12.32,12.14,11.74,N/A,N/A +2012,2,19,22,30,101910,100690,99510,71.46000000000001,0,2.49,2.57,2.57,2.56,2.5500000000000003,2.54,2.52,2.5100000000000002,2.49,312.64,314.04,315.02,315.95,316.84000000000003,317.66,318.51,319.29,321.02,14.16,13.77,13.58,13.38,13.18,12.99,12.790000000000001,12.6,12.21,N/A,N/A +2012,2,19,23,30,101900,100680,99500,71.26,0,1.93,2,2.02,2.02,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,307.21,307.59000000000003,307.82,308.08,308.33,308.57,308.86,309.14,309.85,14.19,13.81,13.620000000000001,13.41,13.22,13.030000000000001,12.83,12.64,12.25,N/A,N/A +2012,2,20,0,30,101900,100680,99500,69.03,0,1.17,1.23,1.25,1.26,1.27,1.28,1.29,1.29,1.31,313.44,315.11,316.22,317.27,318.3,319.27,320.29,321.26,323.49,14.48,14.11,13.93,13.73,13.530000000000001,13.34,13.14,12.950000000000001,12.56,N/A,N/A +2012,2,20,1,30,101900,100680,99500,68.85000000000001,0,0.9400000000000001,1.01,1.04,1.07,1.1,1.12,1.1500000000000001,1.17,1.22,353.98,354.35,354.45,354.54,354.69,354.86,355.06,355.25,355.81,14.69,14.34,14.15,13.950000000000001,13.75,13.56,13.36,13.17,12.780000000000001,N/A,N/A +2012,2,20,2,30,101920,100700,99530,69.60000000000001,0,1.04,1.09,1.1,1.11,1.12,1.1300000000000001,1.1500000000000001,1.16,1.2,74.78,73.27,72.13,71.09,70.15,69.3,68.45,67.67,66.18,14.8,14.44,14.26,14.06,13.86,13.67,13.47,13.280000000000001,12.9,N/A,N/A +2012,2,20,3,30,101920,100700,99520,71.76,0,2.54,2.65,2.68,2.69,2.71,2.72,2.73,2.74,2.7600000000000002,91.4,90.73,90.29,89.87,89.47,89.10000000000001,88.71000000000001,88.34,87.56,14.75,14.38,14.19,13.99,13.790000000000001,13.61,13.4,13.22,12.83,N/A,N/A +2012,2,20,4,30,101910,100700,99520,72.33,0,2.58,2.7600000000000002,2.83,2.88,2.93,2.97,3.02,3.06,3.16,97.69,97.36,97.11,96.86,96.63,96.41,96.17,95.93,95.41,14.83,14.46,14.27,14.07,13.88,13.69,13.49,13.3,12.92,N/A,N/A +2012,2,20,5,30,101910,100700,99520,68.83,0,4.43,4.8,4.92,5,5.07,5.12,5.17,5.21,5.28,95.42,95.14,94.94,94.74,94.57000000000001,94.41,94.25,94.10000000000001,93.8,15.42,15.06,14.870000000000001,14.67,14.47,14.280000000000001,14.08,13.89,13.5,N/A,N/A +2012,2,20,6,30,101940,100730,99550,70.63,0,6.01,6.4,6.49,6.53,6.55,6.5600000000000005,6.57,6.57,6.5600000000000005,106.88,106.86,106.88,106.93,106.97,107.01,107.06,107.11,107.21000000000001,15.44,15.07,14.89,14.68,14.49,14.3,14.09,13.9,13.51,N/A,N/A +2012,2,20,7,30,101960,100750,99570,70.26,0,6.66,7.13,7.23,7.28,7.3,7.32,7.32,7.32,7.3,107.03,107.34,107.52,107.67,107.82000000000001,107.94,108.09,108.21000000000001,108.45,15.57,15.200000000000001,15.02,14.82,14.61,14.42,14.22,14.030000000000001,13.64,N/A,N/A +2012,2,20,8,30,101960,100740,99570,74.52,0,6.92,7.45,7.62,7.71,7.78,7.83,7.87,7.91,7.97,119.57000000000001,119.45,119.38,119.33,119.28,119.23,119.2,119.17,119.11,15.46,15.09,14.9,14.700000000000001,14.5,14.31,14.1,13.91,13.52,N/A,N/A +2012,2,20,9,30,101940,100730,99550,77.5,0,7.95,8.58,8.73,8.8,8.82,8.83,8.81,8.8,8.74,119.10000000000001,119.44,119.59,119.73,119.86,119.97,120.08,120.18,120.38,15.41,15.030000000000001,14.84,14.63,14.43,14.24,14.030000000000001,13.84,13.450000000000001,N/A,N/A +2012,2,20,10,30,101920,100710,99540,77.05,0,8.4,9.11,9.290000000000001,9.38,9.42,9.450000000000001,9.46,9.47,9.450000000000001,117.57000000000001,117.99000000000001,118.27,118.55,118.81,119.05,119.3,119.54,120.02,15.33,14.94,14.74,14.530000000000001,14.33,14.14,13.93,13.74,13.34,N/A,N/A +2012,2,20,11,30,101920,100710,99540,79.78,0,7.21,7.8100000000000005,8,8.11,8.19,8.26,8.3,8.34,8.4,117.13,117.23,117.3,117.37,117.43,117.49000000000001,117.54,117.58,117.67,15.44,15.06,14.870000000000001,14.66,14.46,14.27,14.06,13.88,13.48,N/A,N/A +2012,2,20,12,30,101920,100710,99530,78.45,0,7.57,8.18,8.35,8.44,8.5,8.55,8.58,8.61,8.65,112.2,112.60000000000001,112.92,113.23,113.52,113.79,114.07000000000001,114.33,114.87,15.47,15.09,14.89,14.69,14.49,14.31,14.1,13.91,13.52,N/A,N/A +2012,2,20,13,30,101930,100720,99540,79.44,0,7,7.54,7.69,7.7700000000000005,7.83,7.87,7.9,7.930000000000001,7.97,120.21000000000001,120.33,120.46000000000001,120.60000000000001,120.72,120.83,120.95,121.07000000000001,121.31,15.610000000000001,15.24,15.05,14.85,14.66,14.47,14.27,14.08,13.69,N/A,N/A +2012,2,20,14,30,101960,100750,99580,78.11,0,7.88,8.59,8.8,8.91,9,9.06,9.1,9.14,9.200000000000001,124.41,124.46000000000001,124.62,124.79,124.97,125.14,125.33,125.52,125.92,15.94,15.59,15.4,15.21,15.01,14.82,14.620000000000001,14.43,14.040000000000001,N/A,N/A +2012,2,20,15,30,101980,100770,99600,79.96000000000001,0,7.66,8.25,8.4,8.46,8.49,8.51,8.51,8.51,8.5,118.56,119.3,119.8,120.34,120.87,121.38,121.95,122.49000000000001,123.69,16.09,15.75,15.57,15.370000000000001,15.18,15,14.8,14.61,14.23,N/A,N/A +2012,2,20,16,30,101980,100780,99600,80.29,0,7.05,7.63,7.7700000000000005,7.84,7.88,7.91,7.92,7.930000000000001,7.92,128.2,128.29,128.45,128.62,128.79,128.96,129.15,129.34,129.76,16.43,16.1,15.93,15.73,15.540000000000001,15.35,15.15,14.96,14.57,N/A,N/A +2012,2,20,17,30,101980,100770,99600,82.13,0,7.45,8.09,8.26,8.34,8.39,8.42,8.44,8.45,8.45,126.75,127.10000000000001,127.37,127.65,127.92,128.17000000000002,128.45,128.7,129.26,16.52,16.2,16.03,15.83,15.64,15.450000000000001,15.25,15.07,14.68,N/A,N/A +2012,2,20,18,30,101980,100770,99600,82.49,0,7.2,7.890000000000001,8.08,8.19,8.27,8.32,8.36,8.39,8.43,130.85,131.22,131.47,131.7,131.91,132.11,132.32,132.52,132.93,16.88,16.59,16.42,16.22,16.03,15.85,15.65,15.47,15.08,N/A,N/A +2012,2,20,19,30,101980,100770,99610,83.84,0,6.84,7.47,7.640000000000001,7.72,7.78,7.82,7.84,7.86,7.88,131.91,132,132.17000000000002,132.39000000000001,132.65,132.93,133.25,133.56,134.38,17.02,16.740000000000002,16.580000000000002,16.39,16.2,16.02,15.82,15.64,15.26,N/A,N/A +2012,2,20,20,30,101950,100750,99580,85.59,0,7.13,7.75,7.9,7.98,8.03,8.06,8.09,8.11,8.23,126.9,127.03,127.21000000000001,127.46000000000001,127.75,128.07,128.52,128.99,130.89000000000001,17.02,16.75,16.580000000000002,16.39,16.21,16.03,15.83,15.66,15.31,N/A,N/A +2012,2,20,21,30,101940,100740,99570,86.07000000000001,0,5.71,6.45,6.7,6.78,6.95,7.16,7.32,7.47,7.71,124.63000000000001,125.23,125.71000000000001,126.26,127.38000000000001,128.86,130.69,132.44,135.95,17.2,16.97,16.82,16.64,16.490000000000002,16.35,16.19,16.05,15.74,N/A,N/A +2012,2,20,22,30,101900,100700,99540,87.48,0,5.82,6.5600000000000005,6.84,7.07,7.25,7.42,7.57,7.69,7.92,141.64000000000001,141.9,142.15,142.48,142.87,143.32,143.95000000000002,144.58,146.36,17.41,17.21,17.080000000000002,16.92,16.76,16.61,16.44,16.29,15.97,N/A,N/A +2012,2,20,23,30,101900,100710,99540,88.74,0,4.96,5.75,6.09,6.4,6.66,6.9,7.08,7.23,7.32,140.22,140.49,140.78,141.20000000000002,141.74,142.4,143.41,144.46,148.06,17.51,17.34,17.23,17.080000000000002,16.94,16.79,16.64,16.5,16.2,N/A,N/A +2012,2,21,0,30,101920,100720,99560,88.88,0,5.12,5.9,6.21,6.49,6.75,7,7.28,7.54,7.97,155.09,155.28,155.51,155.85,156.13,156.37,156.76,157.19,160.79,17.66,17.53,17.42,17.27,17.12,16.97,16.81,16.67,16.41,N/A,N/A +2012,2,21,1,30,101940,100740,99580,90.57000000000001,0,4.47,5.43,5.87,6.3100000000000005,6.75,7.21,7.68,8.13,8.24,154.19,155.97,157.38,159.21,160.65,161.83,162.88,163.88,169.5,17.66,17.61,17.56,17.490000000000002,17.400000000000002,17.29,17.17,17.07,16.85,N/A,N/A +2012,2,21,2,30,101950,100750,99590,92.05,0,5.13,6.0600000000000005,6.5,6.98,7.41,7.8100000000000005,8.09,8.3,8.28,146.18,147.94,149.38,151.32,153.34,155.48,158.25,160.97,164.45000000000002,17.64,17.580000000000002,17.54,17.5,17.47,17.44,17.37,17.3,17.04,N/A,N/A +2012,2,21,3,30,101960,100760,99610,92.16,0,4.78,5.83,6.33,6.86,7.33,7.76,8.01,8.19,8.22,149.18,150.17000000000002,150.98,151.98,153.36,155.05,159.66,164.59,168.74,17.72,17.66,17.62,17.56,17.53,17.5,17.48,17.46,17.22,N/A,N/A +2012,2,21,4,30,101990,100790,99630,92.55,0,3.91,4.96,5.5,6.12,6.5600000000000005,6.87,6.95,6.96,6.98,148.85,150.20000000000002,152.24,156.75,161.69,166.9,169.55,171.32,174.31,17.7,17.69,17.69,17.73,17.740000000000002,17.76,17.68,17.59,17.330000000000002,N/A,N/A +2012,2,21,5,30,102010,100810,99650,95.17,0,2.67,3.7800000000000002,4.39,5.18,5.59,5.69,5.78,5.87,6.1000000000000005,151.3,154.54,158.46,166.35,171.39000000000001,173.95000000000002,176.62,179.12,182.8,17.55,17.56,17.61,17.78,17.82,17.78,17.7,17.63,17.400000000000002,N/A,N/A +2012,2,21,6,30,102020,100830,99670,95.27,0,3.29,4.63,5.3100000000000005,5.89,6.17,6.23,6.38,6.55,6.95,166.33,169.29,173.64000000000001,183.33,188.84,191.22,193.18,194.9,196.68,17.56,17.75,17.87,18.02,18.03,17.97,17.93,17.900000000000002,17.75,N/A,N/A +2012,2,21,7,30,102070,100870,99710,95.81,0,2.45,3.8200000000000003,4.44,4.78,5.0600000000000005,5.3100000000000005,5.55,5.7700000000000005,6.13,176.13,182.33,188.33,196.88,201.22,202.43,203.18,203.75,204.47,17.64,18,18.13,18.14,18.14,18.150000000000002,18.14,18.13,17.97,N/A,N/A +2012,2,21,8,30,102060,100860,99700,96.06,0,2.86,3.81,4.14,4.38,4.63,4.9,5.17,5.42,5.83,187.05,194.06,198.81,202.8,205.57,207.52,208.66,209.53,210.33,17.63,17.86,17.96,18,18.06,18.13,18.14,18.150000000000002,17.98,N/A,N/A +2012,2,21,9,30,102060,100870,99710,96.78,0,2.22,2.97,3.18,3.41,3.63,3.84,4.05,4.25,4.55,187.24,194.5,198.98000000000002,202.25,204.87,207.09,208.95000000000002,210.61,213.66,17.56,17.82,17.92,17.96,17.990000000000002,18.01,18.01,18.01,17.85,N/A,N/A +2012,2,21,10,30,102070,100870,99720,97.11,0,0.88,1.36,1.57,1.82,2.06,2.29,2.52,2.74,3.1,207.43,219.62,226.93,229.68,231.57,232.8,233.57,234.19,235.20000000000002,17.48,17.75,17.86,17.91,17.95,17.97,17.98,17.98,17.85,N/A,N/A +2012,2,21,11,30,102080,100880,99720,97.55,0,0.9400000000000001,1.09,1.09,1.24,1.41,1.59,1.77,1.95,2.24,176.09,197.68,209.85,220.13,226.98000000000002,231.49,234.46,236.9,239.68,17.36,17.580000000000002,17.67,17.72,17.75,17.77,17.78,17.78,17.68,N/A,N/A +2012,2,21,12,30,102090,100890,99730,97.57000000000001,0,0.76,0.91,0.9400000000000001,1.1400000000000001,1.32,1.5,1.6500000000000001,1.79,2.0100000000000002,184.93,210.08,224.1,232.85,238.61,241.68,243.6,245.06,245.91,17.330000000000002,17.59,17.72,17.82,17.89,17.94,17.94,17.94,17.79,N/A,N/A +2012,2,21,13,30,102090,100890,99730,98.26,0,0.4,0.63,0.74,0.86,0.9500000000000001,1.03,1.08,1.1400000000000001,1.24,39.37,7.95,347.1,333.79,323.1,314.47,307.81,302.07,292.90000000000003,17.17,17.34,17.42,17.490000000000002,17.53,17.55,17.56,17.56,17.47,N/A,N/A +2012,2,21,14,30,102160,100950,99780,99.26,0,5.5600000000000005,5.61,5.48,5.28,4.92,4.51,4.05,3.65,2.82,4.95,5.19,5.57,6.44,8.03,9.83,12.07,14.05,18.23,15.94,15.69,15.610000000000001,15.57,15.620000000000001,15.72,15.82,15.9,16.02,N/A,N/A +2012,2,21,15,30,102180,100970,99800,99.22,0,4.91,5.01,4.92,4.76,4.3100000000000005,3.77,3.31,2.95,2.2600000000000002,19.89,19.91,19.89,19.79,20.38,21.240000000000002,24.47,27.7,38.35,15.76,15.49,15.38,15.27,15.32,15.46,15.6,15.71,15.75,N/A,N/A +2012,2,21,16,30,102170,100960,99790,99.23,0,4.93,5.05,5,4.91,4.54,4.07,3.61,3.22,2.46,29.94,29.66,29.150000000000002,28.14,27.03,26.02,28.35,31.080000000000002,42.160000000000004,15.75,15.48,15.36,15.23,15.25,15.35,15.44,15.530000000000001,15.610000000000001,N/A,N/A +2012,2,21,17,30,102160,100950,99780,99.24000000000001,0,5.08,5.22,5.17,5.08,4.78,4.38,3.91,3.5,2.65,36,35.980000000000004,35.89,35.65,35.550000000000004,35.550000000000004,37.52,39.63,48.11,15.8,15.52,15.4,15.290000000000001,15.290000000000001,15.35,15.47,15.6,15.76,N/A,N/A +2012,2,21,18,30,102130,100920,99750,99.31,0,4.3500000000000005,4.43,4.38,4.28,3.99,3.64,3.2800000000000002,2.97,2.44,40.800000000000004,40.89,41.160000000000004,41.77,43,44.42,47.18,49.69,54.46,16,15.75,15.64,15.540000000000001,15.530000000000001,15.58,15.63,15.66,15.58,N/A,N/A +2012,2,21,19,30,102130,100920,99750,99.24000000000001,0,3.72,3.77,3.7,3.59,3.38,3.12,2.87,2.66,2.57,58.06,58.4,58.88,59.92,61.31,62.77,64.83,66.59,68.4,16.19,15.94,15.82,15.69,15.610000000000001,15.540000000000001,15.47,15.39,15.19,N/A,N/A +2012,2,21,20,30,102080,100870,99710,99.25,0,3.29,3.27,3.16,2.98,2.9,2.85,2.71,2.58,2.5,65.82000000000001,67.18,69.69,75.26,77.98,79.18,83.11,86.83,91.87,16.330000000000002,16.1,15.99,15.870000000000001,15.77,15.68,15.6,15.530000000000001,15.34,N/A,N/A +2012,2,21,21,30,102030,100830,99660,98.26,0,2.63,2.65,2.6,2.52,2.45,2.4,2.39,2.38,2.44,79.66,80.65,82.54,86.98,92.26,97.96000000000001,99.94,101.2,111.14,16.52,16.23,16.09,15.950000000000001,15.85,15.77,15.68,15.6,15.43,N/A,N/A +2012,2,21,22,30,101960,100760,99590,97.91,0,3.0300000000000002,3.08,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.04,95.14,97.35000000000001,100.73,107.94,112.42,115.29,116.34,116.84,117.60000000000001,16.55,16.25,16.1,15.97,15.860000000000001,15.76,15.67,15.58,15.39,N/A,N/A +2012,2,21,23,30,101900,100700,99530,97.88,0,2.72,2.89,3.0500000000000003,3.45,3.71,3.86,3.92,3.96,4.03,112.15,115.27,118.60000000000001,124.61,127.76,128.88,129.36,129.67000000000002,130.3,16.61,16.3,16.15,16.01,15.89,15.780000000000001,15.68,15.59,15.39,N/A,N/A +2012,2,22,0,30,101870,100670,99510,98.38,0,3.67,3.89,4.1,4.63,4.87,4.91,4.94,4.97,5.0200000000000005,109.48,112.86,117.61,128.45,133.29,133.94,134.45,134.88,135.72,16.81,16.54,16.41,16.31,16.22,16.12,16.02,15.92,15.72,N/A,N/A +2012,2,22,1,30,101830,100630,99460,98.79,0,3.96,4.62,4.91,5.12,5.2700000000000005,5.37,5.4,5.42,5.47,128.66,130.98,132.74,134.79,136.79,138.72,140.69,142.49,146.24,17,16.84,16.740000000000002,16.63,16.51,16.4,16.29,16.19,15.92,N/A,N/A +2012,2,22,2,30,101810,100610,99450,97.39,0,3.8200000000000003,4.3100000000000005,4.58,4.97,5.23,5.41,5.58,5.74,5.96,131.53,134.47,137,140.94,143.43,144.94,146.68,148.36,152.18,17.14,16.88,16.73,16.580000000000002,16.46,16.36,16.26,16.16,15.83,N/A,N/A +2012,2,22,3,30,101780,100580,99420,99.27,0,3.7800000000000002,4.28,4.53,4.88,5.36,5.98,6.28,6.49,6.69,156,156.68,157.91,161.18,165.36,170.47,171.42000000000002,171.23,170.86,17.14,16.98,16.92,16.86,16.86,16.89,16.8,16.69,16.330000000000002,N/A,N/A +2012,2,22,4,30,101740,100550,99390,99.34,0,4.38,4.96,5.19,5.38,5.54,5.67,5.74,5.82,7,169.77,171.25,172.14000000000001,172.91,173.47,173.91,174.19,174.48,178.19,16.990000000000002,16.830000000000002,16.75,16.65,16.55,16.45,16.35,16.27,16.990000000000002,N/A,N/A +2012,2,22,5,30,101730,100530,99370,99.34,0,4.7700000000000005,5.26,5.44,5.57,5.8,6.13,6.59,7.0600000000000005,8.02,180.44,180,179.71,179.49,179.29,179.1,179.20000000000002,179.4,181.01,16.81,16.62,16.53,16.43,16.37,16.330000000000002,16.44,16.57,17.18,N/A,N/A +2012,2,22,6,30,101690,100500,99340,96.92,0,4.65,5.8100000000000005,6.47,7.3500000000000005,8.26,9.27,9.76,10.05,9.99,192.26,191.35,190.38,188.65,187.42000000000002,186.61,186.88,187.48,189.29,17.66,17.63,17.61,17.6,17.580000000000002,17.56,17.44,17.3,17.31,N/A,N/A +2012,2,22,7,30,101680,100490,99330,96.74000000000001,0,3.94,4.98,5.47,5.98,6.73,7.7700000000000005,8.75,9.69,10.33,194.12,193.84,193.72,193.73000000000002,194.13,194.88,195.24,195.49,196.08,17.71,17.64,17.57,17.47,17.17,16.73,16.92,17.240000000000002,18.080000000000002,N/A,N/A +2012,2,22,8,30,101630,100440,99280,97.91,0,3.2,4.19,4.7700000000000005,5.48,6.5200000000000005,7.96,8.92,9.68,9.91,199.95000000000002,199.35,198.85,198.18,197.19,195.79,195.47,195.51,196.74,17.48,17.43,17.38,17.28,17.240000000000002,17.25,17.44,17.67,18.3,N/A,N/A +2012,2,22,9,30,101580,100390,99240,96.76,0,2.8000000000000003,4.07,4.82,5.89,6.88,7.8,8.49,9.07,10.16,217.76,214.61,212.19,209.66,207.6,205.94,204.02,202.1,201.85,17.78,17.87,17.89,17.87,17.740000000000002,17.54,17.43,17.36,17.69,N/A,N/A +2012,2,22,10,30,101540,100350,99200,95.83,0.4,4.75,6.19,6.91,7.6000000000000005,8.120000000000001,8.53,9,9.450000000000001,10.26,197.47,198.57,199.62,201.35,203.22,205.21,206.41,207.31,207.91,17.900000000000002,17.84,17.77,17.66,17.53,17.39,17.12,16.84,17.45,N/A,N/A +2012,2,22,11,30,101530,100340,99190,96.96000000000001,0.4,2.2600000000000002,3.65,4.42,5.23,5.99,6.73,7.37,7.95,8.88,205.12,204.28,203.83,204.12,204.48000000000002,204.92000000000002,205.49,206.09,209.42000000000002,17.79,17.8,17.75,17.68,17.6,17.53,17.400000000000002,17.27,17.02,N/A,N/A +2012,2,22,12,30,101500,100310,99160,97.28,0,1.8800000000000001,3.06,3.8200000000000003,5.38,6.63,7.46,8.07,8.56,8.93,199.17000000000002,200.55,202.03,204.74,206.54,207.29,208.55,209.92000000000002,211.95000000000002,17.79,17.91,17.95,18.01,17.96,17.830000000000002,17.66,17.490000000000002,17.3,N/A,N/A +2012,2,22,13,30,101430,100240,99100,95.39,0,5.18,6.46,7.12,7.95,8.83,9.77,10.57,11.3,11.84,209.43,211.24,212.24,212.6,212.43,211.84,212.52,213.54,216.89000000000001,17.98,18.04,18.04,17.990000000000002,17.84,17.63,17.68,17.8,18.64,N/A,N/A +2012,2,22,14,30,101440,100260,99100,94.88,0,5.8100000000000005,7.21,7.95,8.870000000000001,9.81,10.8,11.63,12.38,12.75,210.89000000000001,210.89000000000001,211.16,212.32,214.25,217.03,220.05,223.02,225.33,18.080000000000002,18.14,18.150000000000002,18.16,18.09,17.96,17.79,17.63,18.31,N/A,N/A +2012,2,22,15,30,101400,100210,99060,92.88,0,7.44,9.16,9.98,10.82,11.55,12.22,12.74,13.16,13.39,210.96,211.77,212.62,214.22,216.46,219.43,222.96,226.54,231.07,18.5,18.57,18.57,18.52,18.44,18.330000000000002,18.14,17.93,17.72,N/A,N/A +2012,2,22,16,30,101390,100200,99050,94.29,0,7.5600000000000005,8.94,9.47,9.93,10.370000000000001,10.81,11.25,11.67,11.9,222.24,224.18,225.86,228.44,231.25,234.31,237.41,240.33,245.54,18.21,18.21,18.18,18.14,18.09,18.03,17.92,17.82,17.62,N/A,N/A +2012,2,22,17,30,101360,100170,99020,94.24,0,4.87,6.38,7.17,8.02,8.84,9.68,10.35,10.93,11.5,227.12,228.5,229.68,231.27,232.72,234.12,235.18,236.06,236.25,18.29,18.34,18.34,18.31,18.28,18.240000000000002,18.21,18.18,18.09,N/A,N/A +2012,2,22,18,30,101310,100130,98980,92.82000000000001,0,6.44,8.11,8.96,9.84,10.64,11.42,11.98,12.4,12.5,217.32,219.11,220.91,224.37,227.93,231.86,234.78,237.11,237.93,18.580000000000002,18.740000000000002,18.79,18.78,18.740000000000002,18.67,18.580000000000002,18.490000000000002,18.27,N/A,N/A +2012,2,22,19,30,101270,100090,98940,92.10000000000001,0,7.43,9.290000000000001,10.200000000000001,11.08,11.81,12.42,12.88,13.25,13.57,212.8,215.43,217.67000000000002,220.89000000000001,223.91,226.95000000000002,229.27,231.15,231.59,18.71,18.85,18.88,18.87,18.82,18.72,18.7,18.7,18.43,N/A,N/A +2012,2,22,20,30,101160,99980,98840,92.3,0,9.15,10.99,11.88,12.75,13.48,14.11,14.540000000000001,14.870000000000001,15.11,222.84,223.72,224.47,225.47,226.3,227.03,227.33,227.45000000000002,226.87,18.62,18.7,18.72,18.8,18.91,19.080000000000002,19.11,19.09,18.97,N/A,N/A +2012,2,22,21,30,101070,99890,98750,91.93,0,8.55,10.43,11.38,12.4,13.35,14.280000000000001,15,15.59,15.89,213.03,214.88,216.54,218.91,220.95000000000002,222.79,224.02,224.94,226.5,18.68,18.740000000000002,18.71,18.61,18.5,18.37,18.45,18.6,19.54,N/A,N/A +2012,2,22,22,30,101030,99850,98700,92.98,0,7.0200000000000005,8.69,9.51,10.39,11.21,12,12.74,13.42,14.66,215.27,216.46,217.45000000000002,218.77,220.17000000000002,221.68,223.46,225.24,227.87,18.46,18.5,18.47,18.41,18.330000000000002,18.22,18.04,17.85,18.1,N/A,N/A +2012,2,22,23,30,100990,99810,98660,93.09,0.7000000000000001,8.08,9.63,10.25,10.83,11.31,11.71,12.040000000000001,12.32,12.81,213.35,214.61,215.59,216.87,218.22,219.69,221.37,223.02,226.35,18.43,18.43,18.38,18.32,18.25,18.19,18.12,18.05,17.61,N/A,N/A +2012,2,23,0,30,100940,99760,98610,95.41,0,8.32,9.81,10.5,11.19,11.82,12.41,12.98,13.51,14.51,216.49,216.88,217.3,218.04,219.16,220.62,222.47,224.33,224.8,17.94,17.830000000000002,17.71,17.490000000000002,17.17,16.77,16.78,16.91,19.82,N/A,N/A +2012,2,23,1,30,100930,99750,98600,97.8,0.4,7.21,8.19,8.59,8.98,9.36,9.74,10.19,10.65,12.370000000000001,213.81,213.67000000000002,213.65,213.71,213.86,214.1,214.5,214.94,219.71,17.48,17.34,17.240000000000002,17.13,16.990000000000002,16.84,16.48,16.09,16.39,N/A,N/A +2012,2,23,2,30,100910,99720,98570,99.24000000000001,0,8.07,8.9,9.200000000000001,9.47,9.74,10.02,10.76,11.59,13.27,213.47,213.25,213.12,213.03,212.99,213,214.29,215.92000000000002,222,16.8,16.56,16.42,16.240000000000002,16.04,15.83,15.620000000000001,15.5,17.8,N/A,N/A +2012,2,23,3,30,100870,99680,98530,99.24000000000001,0,8.78,9.9,10.36,10.790000000000001,11.15,11.46,12.35,13.35,14.72,213.34,212.94,212.66,212.39000000000001,212.17000000000002,211.97,212.93,214.14000000000001,217.32,16.85,16.61,16.48,16.3,16.11,15.89,16.39,17.01,19.77,N/A,N/A +2012,2,23,4,30,100840,99650,98510,99.27,0,9.19,10.25,10.68,11.1,11.48,11.84,12.74,13.73,15.09,214.82,214.84,214.85,214.88,215.01,215.20000000000002,216.20000000000002,217.38,219.59,16.84,16.59,16.45,16.28,16.07,15.83,15.94,16.27,19.42,N/A,N/A +2012,2,23,5,30,100840,99650,98490,98.93,1.1,7.72,8.67,9.07,9.49,9.870000000000001,10.23,10.59,10.96,13.280000000000001,216.94,216.89000000000001,216.85,216.84,216.92000000000002,217.03,217.02,217.04,219.6,16.85,16.59,16.44,16.27,16.11,15.94,15.69,15.44,15.93,N/A,N/A +2012,2,23,6,30,100850,99660,98510,97.84,0.4,6.94,7.74,8.07,8.4,8.72,9.05,9.39,9.73,11.35,219.16,219.61,219.96,220.4,220.93,221.52,222.11,222.66,223.28,17.44,17.16,17,16.81,16.63,16.45,16.240000000000002,16.02,15.67,N/A,N/A +2012,2,23,7,30,100840,99650,98500,98.95,0,6.55,7.29,7.7700000000000005,8.69,9.290000000000001,9.64,9.97,10.27,10.93,221.73000000000002,221.73000000000002,221.65,221.38,221.06,220.72,220.52,220.39000000000001,220.21,17.11,16.85,16.71,16.56,16.44,16.330000000000002,16.21,16.11,15.92,N/A,N/A +2012,2,23,8,30,100790,99610,98460,97.87,0,8.22,9.33,9.85,10.48,11.1,11.73,11.98,12.120000000000001,12.23,220.16,220.1,220.12,220.3,220.46,220.6,220.63,220.65,220.67000000000002,17.46,17.19,17.03,16.84,16.66,16.5,16.37,16.240000000000002,16.03,N/A,N/A +2012,2,23,9,30,100750,99570,98420,98.16,0.4,9.09,10.27,10.72,11.09,11.42,11.71,12,12.26,12.84,220.16,220.16,220.13,220.06,219.97,219.87,219.75,219.63,219.5,17.77,17.59,17.48,17.39,17.29,17.19,17.080000000000002,16.97,16.64,N/A,N/A +2012,2,23,10,30,100720,99540,98400,96.21000000000001,0.4,9.27,10.75,11.35,11.92,12.42,12.88,13.290000000000001,13.67,14.15,213.95000000000002,213.9,213.92000000000002,214,214.13,214.31,214.65,215.01,216.44,18.14,18,17.89,17.740000000000002,17.63,17.54,17.44,17.35,17.12,N/A,N/A +2012,2,23,11,30,100690,99510,98360,95.64,0.4,11.5,13.08,13.63,14.040000000000001,14.370000000000001,14.64,14.82,14.96,15,214.62,215.05,215.32,215.64000000000001,216.02,216.45000000000002,217.13,217.84,220.28,18.05,17.85,17.71,17.52,17.330000000000002,17.13,16.93,16.75,16.46,N/A,N/A +2012,2,23,12,30,100660,99490,98340,95.69,0.4,8.16,9.370000000000001,9.83,10.24,10.58,10.870000000000001,11.14,11.370000000000001,11.75,213.37,213.13,213.03,212.97,212.99,213.08,213.32,213.6,214.58,18.25,18.13,18.04,17.96,17.88,17.8,17.72,17.650000000000002,17.490000000000002,N/A,N/A +2012,2,23,13,30,100660,99480,98340,95.83,0.4,9.99,11.41,11.950000000000001,12.4,12.8,13.17,13.6,14.030000000000001,15.030000000000001,216.46,217.55,218.27,219.18,219.95000000000002,220.63,220.94,221.11,219.35,18.22,18.04,17.94,17.85,17.76,17.650000000000002,17.53,17.42,17.12,N/A,N/A +2012,2,23,14,30,100690,99510,98360,95.99000000000001,0,8.24,9.41,9.85,10.22,10.53,10.790000000000001,11,11.19,11.43,224.41,224.35,224.26,224.07,223.83,223.52,223.09,222.64000000000001,221.28,18.19,18.04,17.93,17.81,17.72,17.650000000000002,17.57,17.51,17.39,N/A,N/A +2012,2,23,15,30,100680,99500,98350,95.62,0,8.700000000000001,10.13,10.73,11.3,11.790000000000001,12.24,12.59,12.89,13.02,223.08,222.92000000000002,222.8,222.6,222.33,221.99,221.35,220.68,217.71,18.27,18.14,18.04,17.89,17.77,17.66,17.57,17.5,17.42,N/A,N/A +2012,2,23,16,30,100660,99490,98340,95.48,0,8.42,9.91,10.56,11.18,11.72,12.21,12.61,12.97,13.56,218.23000000000002,218.46,218.61,218.73000000000002,218.79,218.8,218.76,218.71,218.55,18.35,18.240000000000002,18.150000000000002,18.02,17.900000000000002,17.79,17.67,17.57,17.28,N/A,N/A +2012,2,23,17,30,100640,99460,98320,95.07000000000001,0,7.78,9.16,9.74,10.290000000000001,10.76,11.17,11.540000000000001,11.870000000000001,12.370000000000001,221.83,221.9,221.92000000000002,221.86,221.68,221.41,220.9,220.35,218.56,18.44,18.36,18.29,18.2,18.13,18.07,18.01,17.96,17.79,N/A,N/A +2012,2,23,18,30,100620,99440,98310,94.41,0,7.97,9.56,10.32,11.13,11.9,12.67,13.4,14.08,15.290000000000001,222.18,222.57,222.8,222.96,222.82,222.45000000000002,221.35,220.07,217.87,18.6,18.57,18.51,18.45,18.37,18.28,18.17,18.06,17.93,N/A,N/A +2012,2,23,19,30,100610,99440,98300,94.18,0,7.47,8.91,9.52,10.08,10.59,11.08,11.58,12.06,13.16,217.33,217.29,217.23000000000002,217.07,216.82,216.5,216.07,215.64000000000001,215.64000000000001,18.62,18.62,18.59,18.55,18.53,18.5,18.48,18.46,18.21,N/A,N/A +2012,2,23,20,30,100560,99390,98250,92.7,0,7.87,9.63,10.41,11.16,11.81,12.39,12.99,13.57,15.17,213.33,213.68,214.01,214.55,215.27,216.16,217.29,218.43,219.47,18.92,18.97,18.95,18.900000000000002,18.84,18.76,18.650000000000002,18.53,18.76,N/A,N/A +2012,2,23,21,30,100520,99350,98220,92.63,0,7.5200000000000005,9.200000000000001,9.98,10.73,11.39,11.98,12.59,13.18,14.6,208.47,208.95000000000002,209.35,209.86,210.47,211.17000000000002,212.39000000000001,213.71,216.94,18.92,18.96,18.94,18.900000000000002,18.88,18.89,18.94,19,19.240000000000002,N/A,N/A +2012,2,23,22,30,100490,99320,98180,92.19,0,6.98,8.78,9.65,10.56,11.44,12.3,13.14,13.93,14.67,206.37,207.05,207.69,208.66,210,211.64000000000001,213.75,215.92000000000002,217.56,19.01,19.1,19.09,19.05,19.03,19.01,19.240000000000002,19.51,19.57,N/A,N/A +2012,2,23,23,30,100470,99300,98170,91.73,0,6.97,8.81,9.69,10.61,11.5,12.4,13.21,13.950000000000001,14.780000000000001,202.46,203.26,204.09,205.57,207.57,210.08,212.91,215.67000000000002,217.81,19.1,19.22,19.23,19.21,19.18,19.150000000000002,19.43,19.76,20.02,N/A,N/A +2012,2,24,0,30,100490,99320,98180,91.75,0,7.05,8.89,9.8,10.76,11.68,12.59,13.25,13.790000000000001,13.9,198.88,200.23000000000002,201.53,203.65,206.09,208.92000000000002,211.39000000000001,213.59,214.72,19.09,19.2,19.2,19.16,19.35,19.72,20.05,20.34,20.400000000000002,N/A,N/A +2012,2,24,1,30,100490,99320,98190,91.8,0,6.5600000000000005,8.48,9.43,10.53,11.620000000000001,12.74,13.66,14.46,14.700000000000001,195.75,196.9,198.01,199.86,202.08,204.62,206.83,208.82,210.70000000000002,19.11,19.27,19.29,19.28,19.44,19.72,20.06,20.400000000000002,20.63,N/A,N/A +2012,2,24,2,30,100490,99320,98190,89.82000000000001,0,6.99,9.07,10.05,11.040000000000001,12.01,12.98,13.84,14.61,14.620000000000001,198.18,198.4,198.72,199.35,200.5,202.14000000000001,205.29,208.81,215.95000000000002,19.56,19.84,19.92,20,19.990000000000002,19.900000000000002,19.63,19.32,20.78,N/A,N/A +2012,2,24,3,30,100490,99320,98190,89.96000000000001,0,6.72,8.44,9.24,10.01,10.77,11.59,12.780000000000001,14.13,17.05,199.21,199.71,200.28,200.9,201.8,203.03,205.63,208.82,216.4,19.51,19.77,19.830000000000002,19.84,19.8,19.7,19.57,19.43,21.03,N/A,N/A +2012,2,24,4,30,100500,99330,98200,88.92,0,7.55,9.76,10.84,12.07,13.280000000000001,14.540000000000001,15.370000000000001,16.01,16.37,200.59,200.94,201.26,201.78,202.37,203.06,204.58,206.29,212.70000000000002,19.76,20.04,20.12,20.19,20.18,20.11,19.900000000000002,19.67,19.64,N/A,N/A +2012,2,24,5,30,100520,99350,98220,88.79,0.4,7.34,9.5,10.5,11.4,12.18,12.88,13.68,14.48,15.92,204.57,205.19,205.66,206.08,206.69,207.47,208.83,210.34,214.53,19.79,20.11,20.21,20.29,20.31,20.29,20.16,20.01,19.51,N/A,N/A +2012,2,24,6,30,100560,99400,98270,89.45,0,7.390000000000001,9.540000000000001,10.5,11.39,12.14,12.790000000000001,13.59,14.42,16.25,207.44,208.64000000000001,209.58,210.92000000000002,212.36,213.93,215.45000000000002,216.9,217.77,19.7,19.97,20.05,20.14,20.2,20.23,20.19,20.11,19.7,N/A,N/A +2012,2,24,7,30,100720,99550,98420,91.11,0,4.1,5.87,6.7,7.71,8.68,9.67,10.35,10.870000000000001,11.83,252.95000000000002,246.55,240.87,236.95000000000002,234.26,232.67000000000002,233.12,234.33,238.21,19.6,19.94,20,20.04,20.06,20.06,20.02,19.97,19.68,N/A,N/A +2012,2,24,8,30,100850,99680,98540,90.82000000000001,0,6.32,8.13,8.82,9.36,9.78,10.14,10.42,10.67,11,304.8,301.55,299.09000000000003,296.39,293.54,290.56,287.44,284.52,279.41,19.42,19.62,19.63,19.56,19.48,19.39,19.3,19.22,19.02,N/A,N/A +2012,2,24,9,30,100880,99710,98570,94.62,0,3.73,5.96,6.95,7.22,7.5,7.8,8.11,8.39,8.93,296.95,294.75,293.43,293.08,293.16,293.54,294.03000000000003,294.51,295.82,18.650000000000002,19.86,20.3,20.18,20.080000000000002,19.98,19.87,19.77,19.53,N/A,N/A +2012,2,24,10,30,101070,99870,98720,69.26,0,13.35,15.15,15.81,16.37,16.830000000000002,17.23,17.5,17.72,17.93,6.25,7.58,8.32,9.01,9.59,10.08,11,11.91,13.67,17.72,17.52,17.39,17.240000000000002,17.080000000000002,16.93,16.77,16.61,16.29,N/A,N/A +2012,2,24,11,30,101270,100070,98900,62.74,0,12.27,13.55,13.9,14.120000000000001,14.280000000000001,14.4,14.48,14.56,14.68,15.1,15.46,15.74,16.01,16.28,16.53,16.78,17.01,17.5,16.52,16.16,15.97,15.77,15.57,15.38,15.18,14.99,14.6,N/A,N/A +2012,2,24,12,30,101400,100190,99020,61.47,0,14.530000000000001,16.080000000000002,16.5,16.740000000000002,16.91,17.03,17.11,17.18,17.28,13.74,13.98,14.16,14.32,14.49,14.65,14.82,14.98,15.33,15.18,14.69,14.47,14.26,14.05,13.85,13.65,13.450000000000001,13.06,N/A,N/A +2012,2,24,13,30,101550,100330,99150,59.65,0,16.14,17.93,18.43,18.72,18.92,19.07,19.17,19.26,19.39,16.88,17.12,17.25,17.38,17.5,17.62,17.740000000000002,17.86,18.1,14.370000000000001,13.790000000000001,13.56,13.33,13.120000000000001,12.92,12.71,12.51,12.120000000000001,N/A,N/A +2012,2,24,14,30,101680,100460,99280,56.78,0,14.86,16.4,16.830000000000002,17.080000000000002,17.25,17.38,17.47,17.55,17.66,16.17,16.21,16.240000000000002,16.29,16.32,16.35,16.39,16.43,16.5,13.92,13.33,13.09,12.870000000000001,12.65,12.450000000000001,12.24,12.05,11.65,N/A,N/A +2012,2,24,15,30,101780,100570,99380,56.53,0,14.17,15.610000000000001,16.01,16.23,16.38,16.5,16.57,16.64,16.73,16.4,16.54,16.64,16.740000000000002,16.82,16.9,16.990000000000002,17.06,17.23,13.92,13.34,13.1,12.870000000000001,12.66,12.46,12.25,12.06,11.66,N/A,N/A +2012,2,24,16,30,101870,100650,99460,52.58,0,13,14.280000000000001,14.620000000000001,14.83,14.96,15.06,15.13,15.18,15.26,13.59,13.75,13.86,13.950000000000001,14.040000000000001,14.120000000000001,14.200000000000001,14.27,14.43,14.19,13.65,13.42,13.200000000000001,12.99,12.790000000000001,12.58,12.39,11.99,N/A,N/A +2012,2,24,17,30,101900,100680,99500,50.09,0,12.56,13.83,14.19,14.41,14.56,14.67,14.75,14.81,14.91,12.41,12.58,12.69,12.790000000000001,12.870000000000001,12.950000000000001,13.02,13.09,13.22,14.84,14.35,14.14,13.92,13.71,13.52,13.31,13.120000000000001,12.72,N/A,N/A +2012,2,24,18,30,101980,100760,99580,46.99,0,12.23,13.49,13.84,14.05,14.200000000000001,14.31,14.39,14.46,14.55,13.21,13.4,13.51,13.620000000000001,13.72,13.81,13.9,13.99,14.16,15.51,15.08,14.88,14.67,14.46,14.27,14.06,13.870000000000001,13.48,N/A,N/A +2012,2,24,19,30,102030,100820,99640,45.28,0,11.82,13.06,13.4,13.61,13.75,13.86,13.950000000000001,14.01,14.11,12.72,12.94,13.1,13.24,13.370000000000001,13.49,13.61,13.72,13.950000000000001,16.1,15.72,15.530000000000001,15.33,15.13,14.94,14.73,14.540000000000001,14.15,N/A,N/A +2012,2,24,20,30,102060,100850,99670,43.33,0,11.700000000000001,12.950000000000001,13.290000000000001,13.5,13.64,13.75,13.83,13.9,14,12.27,12.51,12.67,12.82,12.96,13.08,13.21,13.32,13.540000000000001,16.41,16.06,15.870000000000001,15.68,15.47,15.290000000000001,15.08,14.89,14.5,N/A,N/A +2012,2,24,21,30,102080,100870,99690,42.14,0,11.52,12.73,13.06,13.26,13.39,13.5,13.57,13.63,13.71,11.13,11.35,11.51,11.65,11.78,11.9,12.02,12.13,12.34,16.57,16.23,16.05,15.85,15.65,15.47,15.26,15.07,14.68,N/A,N/A +2012,2,24,22,30,102140,100930,99750,42.89,0,10.58,11.65,11.94,12.13,12.25,12.35,12.42,12.48,12.56,14.27,14.450000000000001,14.57,14.69,14.8,14.91,15.02,15.120000000000001,15.32,16.62,16.28,16.1,15.9,15.700000000000001,15.52,15.31,15.120000000000001,14.73,N/A,N/A +2012,2,24,23,30,102270,101050,99870,40.63,0,9.950000000000001,10.94,11.21,11.36,11.47,11.55,11.61,11.65,11.72,18.85,18.740000000000002,18.68,18.61,18.55,18.48,18.41,18.35,18.22,16.46,16.11,15.93,15.73,15.530000000000001,15.34,15.14,14.950000000000001,14.56,N/A,N/A +2012,2,25,0,30,102290,101070,99890,41.09,0,12.49,13.72,14.02,14.18,14.27,14.34,14.370000000000001,14.4,14.4,19.25,19.400000000000002,19.5,19.6,19.71,19.8,19.91,20.01,20.23,16.04,15.65,15.46,15.26,15.05,14.870000000000001,14.66,14.47,14.08,N/A,N/A +2012,2,25,1,30,102440,101220,100030,42.550000000000004,0,10.72,11.74,12,12.15,12.24,12.31,12.36,12.39,12.43,24.43,24.76,24.93,25.1,25.25,25.400000000000002,25.55,25.7,25.98,15.73,15.32,15.13,14.92,14.72,14.530000000000001,14.32,14.13,13.74,N/A,N/A +2012,2,25,2,30,102440,101220,100040,43.03,0,11.74,12.9,13.21,13.38,13.5,13.6,13.66,13.72,13.790000000000001,28.01,28.21,28.330000000000002,28.44,28.53,28.61,28.69,28.75,28.88,15.35,14.9,14.700000000000001,14.49,14.280000000000001,14.09,13.88,13.69,13.3,N/A,N/A +2012,2,25,3,30,102530,101310,100120,42.980000000000004,0,11.97,13.17,13.5,13.700000000000001,13.84,13.950000000000001,14.030000000000001,14.09,14.19,30.27,30.42,30.490000000000002,30.55,30.61,30.66,30.71,30.76,30.84,15.120000000000001,14.65,14.450000000000001,14.24,14.030000000000001,13.84,13.63,13.44,13.040000000000001,N/A,N/A +2012,2,25,4,30,102570,101350,100160,46.22,0,12.05,13.21,13.52,13.700000000000001,13.82,13.91,13.97,14.02,14.08,31.76,31.92,32.04,32.14,32.230000000000004,32.31,32.39,32.46,32.6,14.75,14.26,14.05,13.84,13.63,13.44,13.23,13.040000000000001,12.64,N/A,N/A +2012,2,25,5,30,102590,101360,100170,48.59,0,12.01,13.15,13.47,13.65,13.77,13.86,13.93,13.98,14.05,30.88,31.05,31.16,31.26,31.36,31.44,31.53,31.61,31.79,14.35,13.83,13.620000000000001,13.4,13.19,13,12.790000000000001,12.61,12.22,N/A,N/A +2012,2,25,6,30,102620,101390,100200,49.730000000000004,0,12.17,13.34,13.66,13.84,13.97,14.06,14.120000000000001,14.18,14.26,32.26,32.5,32.65,32.8,32.96,33.1,33.26,33.42,33.74,14.22,13.68,13.46,13.25,13.040000000000001,12.85,12.64,12.450000000000001,12.07,N/A,N/A +2012,2,25,7,30,102680,101450,100250,50.050000000000004,0,12.08,13.24,13.540000000000001,13.72,13.83,13.93,13.99,14.040000000000001,14.13,34.08,34.480000000000004,34.730000000000004,34.97,35.21,35.43,35.67,35.89,36.35,14.1,13.55,13.33,13.120000000000001,12.91,12.73,12.52,12.34,11.96,N/A,N/A +2012,2,25,8,30,102680,101450,100250,52.84,0,11.9,12.99,13.27,13.43,13.530000000000001,13.6,13.66,13.700000000000001,13.77,36.54,36.87,37.08,37.28,37.480000000000004,37.660000000000004,37.87,38.050000000000004,38.45,13.64,13.07,12.84,12.63,12.42,12.23,12.030000000000001,11.84,11.46,N/A,N/A +2012,2,25,9,30,102740,101510,100310,55.550000000000004,0,11.03,11.96,12.19,12.31,12.38,12.44,12.48,12.51,12.56,33.24,33.660000000000004,33.92,34.160000000000004,34.410000000000004,34.63,34.88,35.11,35.61,13.23,12.64,12.41,12.200000000000001,11.99,11.81,11.61,11.42,11.05,N/A,N/A +2012,2,25,10,30,102780,101540,100340,56.550000000000004,0,10.620000000000001,11.5,11.700000000000001,11.81,11.870000000000001,11.92,11.950000000000001,11.98,12.02,34.160000000000004,34.52,34.76,34.980000000000004,35.21,35.410000000000004,35.64,35.86,36.34,12.98,12.39,12.16,11.950000000000001,11.74,11.56,11.36,11.18,10.81,N/A,N/A +2012,2,25,11,30,102870,101630,100430,55.11,0,9.38,10.07,10.21,10.28,10.32,10.35,10.36,10.38,10.4,29.25,29.68,29.95,30.2,30.46,30.7,30.96,31.21,31.76,12.96,12.4,12.18,11.97,11.77,11.58,11.38,11.200000000000001,10.83,N/A,N/A +2012,2,25,12,30,102810,101570,100370,54.870000000000005,0,10.11,10.94,11.14,11.26,11.33,11.39,11.44,11.48,11.56,39.03,39.480000000000004,39.76,40.01,40.27,40.49,40.74,40.97,41.47,12.96,12.38,12.15,11.94,11.73,11.55,11.35,11.17,10.8,N/A,N/A +2012,2,25,13,30,102830,101600,100390,53.56,0,10.06,10.92,11.15,11.28,11.370000000000001,11.44,11.5,11.540000000000001,11.620000000000001,43.08,43.45,43.67,43.88,44.07,44.25,44.45,44.63,44.980000000000004,13.06,12.48,12.25,12.040000000000001,11.83,11.64,11.43,11.24,10.86,N/A,N/A +2012,2,25,14,30,102880,101640,100440,54.34,0,9.42,10.16,10.34,10.44,10.51,10.56,10.59,10.620000000000001,10.65,42.01,42.56,42.92,43.24,43.550000000000004,43.82,44.11,44.38,44.910000000000004,13.06,12.49,12.27,12.05,11.84,11.64,11.44,11.24,10.85,N/A,N/A +2012,2,25,15,30,102890,101650,100450,54.86,0,8.42,9.01,9.15,9.22,9.26,9.290000000000001,9.3,9.31,9.32,39.04,39.75,40.19,40.58,40.97,41.300000000000004,41.660000000000004,41.99,42.660000000000004,12.91,12.36,12.13,11.92,11.71,11.51,11.31,11.11,10.72,N/A,N/A +2012,2,25,16,30,102880,101640,100440,54.27,0,7.51,8.05,8.17,8.24,8.290000000000001,8.33,8.35,8.370000000000001,8.4,45.62,46.22,46.57,46.9,47.2,47.480000000000004,47.76,48.03,48.56,13.030000000000001,12.5,12.280000000000001,12.06,11.85,11.66,11.450000000000001,11.26,10.870000000000001,N/A,N/A +2012,2,25,17,30,102880,101650,100450,48.120000000000005,0,6.45,6.9,7.01,7.08,7.13,7.16,7.19,7.21,7.25,56.58,56.84,56.97,57.09,57.2,57.300000000000004,57.39,57.480000000000004,57.65,13.3,12.8,12.59,12.38,12.17,11.98,11.77,11.58,11.18,N/A,N/A +2012,2,25,18,30,102840,101600,100400,43.410000000000004,0,7.1000000000000005,7.58,7.69,7.75,7.79,7.82,7.84,7.86,7.890000000000001,60.83,60.95,61.050000000000004,61.120000000000005,61.2,61.26,61.31,61.370000000000005,61.47,13.540000000000001,13.040000000000001,12.83,12.620000000000001,12.41,12.22,12.02,11.82,11.43,N/A,N/A +2012,2,25,19,30,102850,101610,100420,45.13,0,5.09,5.39,5.46,5.51,5.54,5.5600000000000005,5.58,5.6000000000000005,5.63,72.16,72.23,72.28,72.33,72.36,72.4,72.44,72.47,72.53,13.620000000000001,13.16,12.96,12.76,12.55,12.36,12.16,11.96,11.57,N/A,N/A +2012,2,25,20,30,102770,101540,100340,45.59,0,5.37,5.71,5.78,5.83,5.86,5.89,5.91,5.93,5.96,81.38,81.41,81.35000000000001,81.27,81.21000000000001,81.16,81.09,81.01,80.83,13.92,13.47,13.26,13.06,12.86,12.67,12.47,12.280000000000001,11.89,N/A,N/A +2012,2,25,21,30,102700,101470,100270,45.86,0,5.75,6.11,6.19,6.23,6.26,6.28,6.29,6.3,6.32,93.55,93.34,93.16,93.01,92.85000000000001,92.71000000000001,92.55,92.39,92.05,14.25,13.8,13.59,13.39,13.19,13,12.8,12.61,12.22,N/A,N/A +2012,2,25,22,30,102670,101440,100250,46.4,0,5.93,6.3,6.38,6.41,6.44,6.46,6.47,6.48,6.49,113.29,112.87,112.66,112.46000000000001,112.27,112.10000000000001,111.9,111.71000000000001,111.3,14.450000000000001,14,13.8,13.6,13.39,13.21,13,12.81,12.42,N/A,N/A +2012,2,25,23,30,102630,101400,100210,48.51,0,5.53,5.84,5.91,5.93,5.95,5.95,5.95,5.95,5.94,114.97,114.24000000000001,113.79,113.38,112.96000000000001,112.59,112.16,111.76,110.89,14.41,13.97,13.77,13.57,13.370000000000001,13.19,12.98,12.790000000000001,12.41,N/A,N/A +2012,2,26,0,30,102590,101370,100180,46.46,0,6.43,6.88,6.99,7.0600000000000005,7.11,7.15,7.18,7.21,7.26,103.57000000000001,103.11,102.78,102.47,102.16,101.88,101.57000000000001,101.28,100.68,14.790000000000001,14.36,14.16,13.96,13.76,13.57,13.370000000000001,13.18,12.790000000000001,N/A,N/A +2012,2,26,1,30,102570,101340,100150,49.050000000000004,0,4.75,5.03,5.1000000000000005,5.14,5.17,5.19,5.21,5.22,5.25,105.71000000000001,105.94,106.09,106.22,106.35000000000001,106.46000000000001,106.58,106.69,106.91,14.76,14.35,14.15,13.950000000000001,13.74,13.56,13.35,13.16,12.76,N/A,N/A +2012,2,26,2,30,102550,101330,100140,49.39,0,6.47,6.93,7.03,7.08,7.12,7.140000000000001,7.15,7.17,7.17,105.96000000000001,105.60000000000001,105.31,105.02,104.75,104.5,104.24000000000001,103.99000000000001,103.5,15.19,14.780000000000001,14.58,14.38,14.17,13.98,13.77,13.58,13.19,N/A,N/A +2012,2,26,3,30,102500,101280,100090,54.5,0,5.51,5.86,5.94,5.98,6.0200000000000005,6.04,6.0600000000000005,6.08,6.11,107.19,107.15,107.15,107.14,107.15,107.16,107.18,107.2,107.24000000000001,14.9,14.48,14.280000000000001,14.08,13.88,13.69,13.48,13.290000000000001,12.9,N/A,N/A +2012,2,26,4,30,102480,101260,100070,54.19,0,6.42,6.82,6.91,6.95,6.97,6.99,6.99,6.99,6.99,119.54,119.14,118.91,118.71000000000001,118.51,118.35000000000001,118.17,118,117.66,15.31,14.9,14.71,14.51,14.31,14.120000000000001,13.91,13.73,13.33,N/A,N/A +2012,2,26,5,30,102460,101240,100050,54.660000000000004,0,5.96,6.38,6.48,6.54,6.58,6.62,6.640000000000001,6.66,6.69,115.59,115.56,115.56,115.55,115.54,115.54,115.53,115.53,115.52,15.38,14.98,14.780000000000001,14.59,14.38,14.200000000000001,13.99,13.8,13.41,N/A,N/A +2012,2,26,6,30,102440,101220,100040,56.22,0,6.11,6.5600000000000005,6.66,6.72,6.76,6.79,6.8100000000000005,6.83,6.8500000000000005,113.38,113.49000000000001,113.55,113.61,113.67,113.73,113.79,113.85000000000001,113.96000000000001,15.44,15.07,14.88,14.68,14.48,14.3,14.09,13.9,13.51,N/A,N/A +2012,2,26,7,30,102440,101220,100040,59.46,0,5.44,5.83,5.92,5.98,6.0200000000000005,6.05,6.07,6.09,6.12,110.66,110.87,111.01,111.14,111.27,111.38,111.51,111.62,111.87,15.39,15.02,14.83,14.63,14.43,14.24,14.040000000000001,13.85,13.46,N/A,N/A +2012,2,26,8,30,102390,101170,99990,62.15,0,4.92,5.2700000000000005,5.36,5.42,5.46,5.5,5.5200000000000005,5.55,5.59,104.64,105.16,105.47,105.76,106.03,106.27,106.52,106.75,107.22,15.46,15.1,14.92,14.72,14.52,14.34,14.13,13.94,13.55,N/A,N/A +2012,2,26,9,30,102370,101150,99970,64.02,0,4.69,5.01,5.09,5.14,5.18,5.21,5.23,5.26,5.29,97.16,97.64,97.95,98.25,98.54,98.81,99.11,99.38,99.99000000000001,15.58,15.23,15.040000000000001,14.85,14.65,14.47,14.26,14.08,13.69,N/A,N/A +2012,2,26,10,30,102330,101110,99940,62.39,0,4.05,4.4,4.5200000000000005,4.6000000000000005,4.67,4.73,4.78,4.83,4.91,116.06,117.79,118.71000000000001,119.45,120.09,120.64,121.16,121.61,122.46000000000001,16.22,15.9,15.72,15.540000000000001,15.34,15.16,14.96,14.77,14.38,N/A,N/A +2012,2,26,11,30,102310,101100,99920,64.83,0,5.33,5.63,5.68,5.69,5.7,5.69,5.69,5.68,5.65,140.08,140.17000000000002,140.32,140.48,140.64000000000001,140.8,140.97,141.13,141.46,16.330000000000002,16,15.82,15.63,15.43,15.25,15.040000000000001,14.85,14.46,N/A,N/A +2012,2,26,12,30,102300,101090,99910,66.35,0,5.07,5.46,5.55,5.6000000000000005,5.64,5.66,5.67,5.68,5.69,133.33,133.66,133.8,133.89000000000001,133.96,134.02,134.06,134.11,134.17000000000002,16.3,15.98,15.8,15.610000000000001,15.41,15.23,15.030000000000001,14.84,14.450000000000001,N/A,N/A +2012,2,26,13,30,102300,101090,99910,69.74,0,5.4,5.8100000000000005,5.91,5.97,6.01,6.04,6.0600000000000005,6.07,6.09,124.19,124.42,124.58,124.73,124.87,125,125.12,125.24000000000001,125.46000000000001,16.22,15.9,15.72,15.52,15.32,15.14,14.93,14.74,14.35,N/A,N/A +2012,2,26,14,30,102310,101090,99920,70.7,0,4.43,4.76,4.84,4.89,4.92,4.95,4.97,4.99,5.0200000000000005,127.54,127.03,126.83,126.67,126.53,126.42,126.32000000000001,126.24000000000001,126.10000000000001,16.21,15.88,15.71,15.51,15.31,15.13,14.92,14.74,14.35,N/A,N/A +2012,2,26,15,30,102310,101100,99920,72.57000000000001,0,4.18,4.44,4.5,4.53,4.54,4.55,4.55,4.55,4.54,121.92,122.2,122.48,122.76,123.04,123.29,123.56,123.83,124.4,16.31,15.98,15.81,15.610000000000001,15.42,15.23,15.030000000000001,14.84,14.450000000000001,N/A,N/A +2012,2,26,16,30,102290,101080,99900,77.83,0,4.17,4.39,4.41,4.41,4.4,4.39,4.37,4.3500000000000005,4.3,125.32000000000001,126.02,126.42,126.81,127.19,127.54,127.94,128.32,129.16,16.32,15.99,15.81,15.620000000000001,15.42,15.24,15.040000000000001,14.85,14.46,N/A,N/A +2012,2,26,17,30,102260,101050,99870,78.57000000000001,0,3.75,3.99,4.04,4.0600000000000005,4.07,4.08,4.08,4.08,4.07,108.53,108.94,109.2,109.4,109.57000000000001,109.71000000000001,109.84,109.95,110.16,16.37,16.05,15.870000000000001,15.68,15.48,15.290000000000001,15.09,14.9,14.51,N/A,N/A +2012,2,26,18,30,102250,101040,99860,79.51,0,4.44,4.75,4.82,4.8500000000000005,4.87,4.89,4.89,4.9,4.9,110.86,110.78,110.76,110.76,110.76,110.77,110.8,110.82000000000001,110.92,16.46,16.14,15.96,15.77,15.57,15.39,15.18,15,14.61,N/A,N/A +2012,2,26,19,30,102200,100990,99820,84.47,0,4.34,4.66,4.75,4.8100000000000005,4.86,4.91,4.95,5,5.11,100.41,100.52,100.65,100.79,100.95,101.10000000000001,101.28,101.46000000000001,101.93,16.35,16.02,15.84,15.65,15.46,15.290000000000001,15.09,14.91,14.540000000000001,N/A,N/A +2012,2,26,20,30,102150,100950,99780,83.82000000000001,0,5.8500000000000005,6.37,6.49,6.5600000000000005,6.6000000000000005,6.63,6.65,6.66,6.66,115.85000000000001,116.39,116.72,117.02,117.31,117.57000000000001,117.84,118.09,118.60000000000001,16.84,16.54,16.36,16.17,15.98,15.790000000000001,15.59,15.41,15.02,N/A,N/A +2012,2,26,21,30,102130,100920,99750,84.48,0,6.41,6.91,7.01,7.05,7.0600000000000005,7.0600000000000005,7.04,7.0200000000000005,6.96,107.49000000000001,107.69,107.82000000000001,107.97,108.13,108.28,108.47,108.65,109.11,16.73,16.42,16.25,16.06,15.860000000000001,15.68,15.48,15.3,14.91,N/A,N/A +2012,2,26,22,30,102090,100880,99710,85.98,0,6.66,7.25,7.390000000000001,7.46,7.5,7.5200000000000005,7.5200000000000005,7.5200000000000005,7.5,106.94,107.05,107.13,107.2,107.27,107.34,107.43,107.5,107.7,16.76,16.45,16.28,16.09,15.9,15.72,15.51,15.33,14.950000000000001,N/A,N/A +2012,2,26,23,30,102060,100850,99680,88.66,0,6.72,7.3,7.44,7.51,7.55,7.58,7.59,7.6000000000000005,7.62,99.71000000000001,99.93,100.10000000000001,100.28,100.46000000000001,100.64,100.86,101.07000000000001,101.60000000000001,16.72,16.42,16.240000000000002,16.05,15.860000000000001,15.68,15.48,15.3,14.92,N/A,N/A +2012,2,27,0,30,102070,100860,99700,89.61,0,6.8100000000000005,7.49,7.68,7.8,7.890000000000001,7.96,8.02,8.07,8.17,104.66,104.88,105.01,105.16,105.31,105.46000000000001,105.63,105.79,106.17,16.93,16.65,16.490000000000002,16.3,16.11,15.93,15.73,15.55,15.18,N/A,N/A +2012,2,27,1,30,102050,100850,99680,92.78,0,7.1000000000000005,7.76,7.94,8.05,8.14,8.22,8.31,8.4,8.74,99.79,100.09,100.31,100.58,100.89,101.2,101.68,102.17,103.86,16.93,16.64,16.47,16.29,16.1,15.92,15.73,15.56,15.200000000000001,N/A,N/A +2012,2,27,2,30,102060,100860,99690,90.93,0,6.33,7.1000000000000005,7.36,7.59,7.79,7.97,8.15,8.31,8.66,105.66,105.97,106.16,106.36,106.55,106.75,106.95,107.15,107.59,17.240000000000002,16.98,16.830000000000002,16.66,16.48,16.31,16.12,15.950000000000001,15.59,N/A,N/A +2012,2,27,3,30,102080,100880,99710,93.56,0,5.59,6.24,6.47,6.66,6.83,6.99,7.15,7.3,7.63,106.99000000000001,107.31,107.56,107.87,108.2,108.53,108.92,109.28,110.06,17.2,16.94,16.79,16.61,16.44,16.27,16.09,15.92,15.57,N/A,N/A +2012,2,27,4,30,102090,100880,99720,94.14,0,5.55,6.33,6.63,6.92,7.18,7.43,7.68,7.92,8.41,102.59,102.85000000000001,103.08,103.34,103.62,103.9,104.27,104.64,105.67,17.240000000000002,17,16.85,16.69,16.52,16.36,16.19,16.03,15.71,N/A,N/A +2012,2,27,5,30,102080,100880,99710,94.10000000000001,0,5.93,6.73,7.03,7.3100000000000005,7.5600000000000005,7.8100000000000005,8.07,8.31,8.85,92.4,93.05,93.61,94.36,95.33,96.38,97.85000000000001,99.34,103.58,17.32,17.09,16.96,16.8,16.66,16.52,16.39,16.27,16.09,N/A,N/A +2012,2,27,6,30,102090,100890,99720,95.77,0,5.28,5.91,6.16,6.390000000000001,6.63,6.88,7.21,7.54,8.46,80.2,81.63,82.83,84.38,86.23,88.18,90.71000000000001,93.24,99.71000000000001,17.26,17.02,16.88,16.73,16.59,16.46,16.330000000000002,16.22,16.080000000000002,N/A,N/A +2012,2,27,7,30,102150,100950,99780,96.42,0,4.3500000000000005,5.05,5.37,5.72,6.07,6.44,6.84,7.23,8.03,82.99,84.58,85.94,87.72,89.72,91.82000000000001,94.14,96.41,103.17,17.38,17.16,17.04,16.91,16.78,16.66,16.55,16.44,16.3,N/A,N/A +2012,2,27,8,30,102140,100940,99780,96.48,0,4.25,5,5.3500000000000005,5.71,6.07,6.41,6.76,7.08,7.51,83.07000000000001,84.53,85.7,87.16,88.77,90.43,92.5,94.47,100.51,17.400000000000002,17.2,17.07,16.93,16.8,16.68,16.56,16.45,16.25,N/A,N/A +2012,2,27,9,30,102160,100960,99800,96.75,0,5.26,5.98,6.29,6.6000000000000005,6.9,7.2,7.51,7.78,8,68.32000000000001,69.66,70.92,72.75,75.23,78.13,83.17,88.37,100.18,17.35,17.13,17.01,16.88,16.77,16.67,16.62,16.59,16.54,N/A,N/A +2012,2,27,10,30,102180,100980,99810,97.32000000000001,0,5.38,6.03,6.3,6.5600000000000005,6.8,7.03,7.16,7.25,7.16,64.4,65.06,65.74,66.86,68.61,70.74,75.74,80.99,91.53,17.25,17.02,16.89,16.740000000000002,16.63,16.54,16.51,16.48,16.35,N/A,N/A +2012,2,27,11,30,102210,101010,99840,97.28,2.6,6.04,6.76,7.05,7.3100000000000005,7.55,7.78,8.040000000000001,8.28,8.44,60.88,61.550000000000004,62.14,63.01,64.23,65.65,68.49,71.66,82.89,17.23,17,16.87,16.72,16.6,16.5,16.44,16.39,16.36,N/A,N/A +2012,2,27,12,30,102210,101010,99840,97.38,0.7000000000000001,6.5600000000000005,7.6000000000000005,7.97,8.18,8.4,8.64,8.74,8.81,8.85,51.4,53.34,54.5,55.49,57.44,59.800000000000004,61.870000000000005,63.78,68.44,17.03,16.77,16.62,16.46,16.36,16.29,16.23,16.19,16.15,N/A,N/A +2012,2,27,13,30,102230,101020,99850,97,0.7000000000000001,7.62,8.370000000000001,8.65,8.950000000000001,9.21,9.44,9.700000000000001,9.91,9.99,55.69,56.15,56.59,57.2,57.88,58.56,60.33,62.11,65.87,16.84,16.55,16.39,16.22,16.06,15.91,15.92,15.950000000000001,15.99,N/A,N/A +2012,2,27,14,30,102280,101070,99900,96.11,0.4,8.41,9.06,9.21,9.34,9.6,9.91,10.27,10.57,10.68,49.03,49.42,49.76,50.24,51.17,52.300000000000004,54.04,55.76,59.86,16.62,16.3,16.14,15.96,15.82,15.69,15.71,15.76,16.16,N/A,N/A +2012,2,27,15,30,102300,101100,99920,95.8,0.4,8.18,8.84,8.98,9.05,9.13,9.21,9.52,9.85,10.66,55.160000000000004,55.33,55.47,55.660000000000004,55.96,56.28,57.120000000000005,58.1,61.620000000000005,16.47,16.14,15.96,15.780000000000001,15.59,15.42,15.25,15.120000000000001,15.11,N/A,N/A +2012,2,27,16,30,102310,101100,99930,95.64,0,8.19,8.83,8.97,9.05,9.13,9.21,9.620000000000001,10.05,10.93,51.99,52.21,52.410000000000004,52.65,53,53.38,54.6,55.93,59.59,16.43,16.09,15.92,15.73,15.55,15.38,15.23,15.11,15.18,N/A,N/A +2012,2,27,17,30,102310,101100,99930,95.13,0,7.8500000000000005,8.51,8.69,8.8,8.91,9.02,9.26,9.56,10.73,55.32,55.58,55.75,55.96,56.230000000000004,56.53,57.09,57.74,60.58,16.47,16.14,15.96,15.77,15.59,15.41,15.23,15.07,14.9,N/A,N/A +2012,2,27,18,30,102300,101090,99920,94.59,0,7.76,8.42,8.6,8.73,8.88,9.040000000000001,9.51,10.02,11.11,57.95,58.15,58.300000000000004,58.49,58.76,59.06,59.75,60.49,62.27,16.6,16.29,16.12,15.93,15.75,15.57,15.41,15.27,15.13,N/A,N/A +2012,2,27,19,30,102290,101080,99910,94.23,0,8.17,8.93,9.15,9.31,9.5,9.700000000000001,10.13,10.57,11.57,60.77,60.870000000000005,60.99,61.13,61.32,61.54,61.88,62.230000000000004,63.04,16.76,16.44,16.27,16.09,15.91,15.74,15.57,15.42,15.18,N/A,N/A +2012,2,27,20,30,102280,101070,99900,93.5,0,7.930000000000001,8.76,9.05,9.31,9.6,9.9,10.31,10.700000000000001,11.290000000000001,64.91,64.7,64.52,64.33,64.08,63.82,63.57,63.33,62.46,16.990000000000002,16.7,16.54,16.35,16.18,16.01,15.84,15.68,15.41,N/A,N/A +2012,2,27,21,30,102260,101050,99880,93.61,0,8.48,9.33,9.56,9.74,9.88,10.03,10.21,10.41,11.1,66.85,66.79,66.73,66.66,66.58,66.5,66.36,66.24,65.98,16.9,16.6,16.43,16.240000000000002,16.05,15.870000000000001,15.69,15.51,15.18,N/A,N/A +2012,2,27,22,30,102250,101050,99880,93.65,0,8.69,9.49,9.68,9.8,9.89,9.97,10.09,10.22,10.82,67.41,67.41,67.43,67.45,67.49,67.52,67.59,67.69,68.51,16.77,16.45,16.28,16.09,15.9,15.72,15.530000000000001,15.35,15.030000000000001,N/A,N/A +2012,2,27,23,30,102250,101040,99870,94.16,0,8.07,8.78,8.94,9.040000000000001,9.1,9.15,9.21,9.28,9.6,69.85000000000001,69.96000000000001,70.04,70.13,70.25,70.37,70.58,70.8,72.05,16.73,16.41,16.240000000000002,16.04,15.860000000000001,15.68,15.48,15.31,14.97,N/A,N/A +2012,2,28,0,30,102250,101040,99870,94.47,0,7.74,8.4,8.540000000000001,8.620000000000001,8.68,8.72,8.8,8.91,9.49,70.29,70.5,70.64,70.81,71.02,71.24,71.62,72.07000000000001,74.69,16.73,16.41,16.240000000000002,16.05,15.860000000000001,15.68,15.49,15.32,15.06,N/A,N/A +2012,2,28,1,30,102250,101040,99870,94.4,0,7.84,8.540000000000001,8.71,8.81,8.89,8.97,9.09,9.25,9.91,74.47,74.49,74.52,74.60000000000001,74.72,74.86,75.12,75.48,77.86,16.79,16.48,16.31,16.12,15.93,15.76,15.57,15.4,15.13,N/A,N/A +2012,2,28,2,30,102280,101070,99900,95.82000000000001,0,7.3500000000000005,7.930000000000001,8.08,8.15,8.22,8.3,8.48,8.69,9.35,78.3,78.52,78.68,78.89,79.15,79.44,80.16,81.05,85.01,16.67,16.36,16.19,16,15.81,15.64,15.47,15.33,15.16,N/A,N/A +2012,2,28,3,30,102260,101060,99880,95.82000000000001,0,7.04,7.640000000000001,7.79,7.890000000000001,8.01,8.120000000000001,8.46,8.8,9.38,80.8,81.15,81.37,81.65,82.03,82.44,83.66,85.01,89.07000000000001,16.8,16.490000000000002,16.32,16.13,15.94,15.77,15.6,15.450000000000001,15.31,N/A,N/A +2012,2,28,4,30,102230,101020,99860,96.16,0,6.08,6.640000000000001,6.9,7.25,7.6000000000000005,7.930000000000001,8.19,8.43,8.790000000000001,85.05,85.58,86.16,87.10000000000001,88.4,89.85000000000001,91.78,93.68,98.17,16.89,16.6,16.44,16.27,16.12,15.97,15.9,15.84,15.8,N/A,N/A +2012,2,28,5,30,102230,101020,99860,96.34,0,5.96,6.97,7.390000000000001,7.65,7.96,8.290000000000001,8.58,8.84,9.26,90.93,92.3,93.28,94.32000000000001,95.95,97.88,100.02,102.06,106.42,17.04,16.79,16.65,16.5,16.4,16.35,16.3,16.26,16.2,N/A,N/A +2012,2,28,6,30,102210,101010,99840,96.38,0,5.97,6.87,7.2700000000000005,7.640000000000001,7.95,8.2,8.370000000000001,8.5,8.51,97.3,98.78,100.15,102.2,104.63,107.2,110.16,112.93,118.29,17.330000000000002,17.12,17.02,16.95,16.93,16.95,17.03,17.11,17.22,N/A,N/A +2012,2,28,7,30,102220,101020,99850,96.85000000000001,0.4,5.74,6.5,6.79,7.0600000000000005,7.32,7.57,7.84,8.09,8.49,106.46000000000001,107.25,107.9,108.79,109.9,111.11,112.98,114.99000000000001,122.39,17.53,17.31,17.19,17.05,16.93,16.82,16.75,16.69,16.51,N/A,N/A +2012,2,28,8,30,102190,100990,99820,97.71000000000001,0,4.04,4.8,5.22,5.74,6.33,6.97,7.45,7.86,8.26,111.2,112.52,113.29,113.76,113.5,112.78,112.42,112.19,114.48,17.57,17.330000000000002,17.18,17.03,16.96,16.94,16.85,16.76,16.42,N/A,N/A +2012,2,28,9,30,102160,100960,99790,97.23,0,5.24,5.91,6.15,6.36,6.55,6.7,6.84,6.96,7.3100000000000005,127.23,128.13,128.63,129.15,129.56,129.88,129.91,129.84,128.26,17.54,17.3,17.16,16.990000000000002,16.85,16.73,16.61,16.51,16.27,N/A,N/A +2012,2,28,10,30,102150,100940,99780,96.03,0,4.93,5.49,5.71,5.93,6.18,6.44,6.8,7.15,7.7,112.83,113.55,114.17,115.02,116.13,117.39,119.36,121.3,123.58,17.400000000000002,17.13,16.96,16.76,16.59,16.45,16.330000000000002,16.240000000000002,16.01,N/A,N/A +2012,2,28,11,30,102120,100910,99750,95.34,0,5.3,5.8,5.94,6.03,6.09,6.13,6.17,6.21,6.3,119.33,121.12,122.25,123.45,124.96000000000001,126.56,129.42000000000002,132.27,138.55,17.29,16.990000000000002,16.82,16.62,16.41,16.22,16.05,15.9,15.540000000000001,N/A,N/A +2012,2,28,12,30,102120,100910,99740,99.22,0,5.51,5.8500000000000005,5.94,6.01,6.13,6.2700000000000005,6.7,7.15,8.01,130.92000000000002,131.41,131.85,132.43,133.43,134.6,137.37,140.49,149.72,16.04,15.72,15.56,15.38,15.18,14.97,14.75,14.780000000000001,17.47,N/A,N/A +2012,2,28,13,30,102120,100910,99740,99.22,0,6.390000000000001,6.86,6.93,6.93,6.88,6.8100000000000005,6.72,6.63,6.69,130.75,131.28,131.59,131.92000000000002,132.35,132.8,133.99,135.52,144.74,16.44,16.15,16.02,15.870000000000001,15.72,15.58,15.4,15.19,14.89,N/A,N/A +2012,2,28,14,30,102130,100930,99760,98.08,0.4,5.71,6.0600000000000005,6.3100000000000005,6.78,7.19,7.55,7.69,7.79,8.03,134.05,135.89000000000001,138.29,142.68,146,148.68,149.38,149.84,151.96,16.34,16.01,15.88,15.81,15.75,15.69,15.6,15.51,15.48,N/A,N/A +2012,2,28,15,30,102120,100920,99760,98.24000000000001,0,5.6000000000000005,6.48,6.99,7.640000000000001,8.040000000000001,8.26,8.41,8.540000000000001,8.68,144.81,146.44,148.19,150.98,152.78,153.92000000000002,154.82,155.58,156.53,17.150000000000002,16.89,16.79,16.72,16.64,16.56,16.47,16.38,16.19,N/A,N/A +2012,2,28,16,30,102110,100910,99750,97.9,0,6.01,7.05,7.51,7.98,8.36,8.67,8.85,8.99,9.200000000000001,143.27,145.56,147.31,149.58,152.06,154.57,158.37,162.21,171.61,17.740000000000002,17.53,17.41,17.31,17.240000000000002,17.18,17.14,17.11,16.98,N/A,N/A +2012,2,28,17,30,102080,100880,99730,97.67,0,4.46,5.46,5.97,6.59,7.18,7.75,8.38,9,10.59,136.49,138.59,140.69,144.15,147.63,151.07,153.01,154.69,162.4,17.92,17.8,17.740000000000002,17.7,17.66,17.62,17.63,17.64,17.86,N/A,N/A +2012,2,28,18,30,102060,100870,99710,97.26,0,4.73,5.8,6.29,6.8100000000000005,7.34,7.88,8.76,9.63,9.89,144.84,146.64000000000001,148.07,150.01,152.02,154.07,161.33,169.07,172.97,18.11,18.04,18.02,18.01,18.03,18.07,18.18,18.3,18.23,N/A,N/A +2012,2,28,19,30,102040,100850,99690,96.58,0,4.5,5.75,6.42,7.24,8.3,9.56,10.540000000000001,11.4,11.57,149.05,151.83,154.4,158.19,162.72,167.9,172.81,177.32,179.81,18.45,18.38,18.36,18.38,18.490000000000002,18.650000000000002,18.79,18.900000000000002,18.78,N/A,N/A +2012,2,28,20,30,101990,100800,99640,95.88,0,4.87,6.24,6.95,7.79,8.540000000000001,9.23,9.61,9.9,10.22,143.96,147.25,150.65,156.20000000000002,163.04,170.81,174.84,177.75,180.1,18.59,18.580000000000002,18.5,18.330000000000002,18.47,18.81,18.96,19.06,19.01,N/A,N/A +2012,2,28,21,30,101960,100770,99620,95.17,0,4.15,5.61,6.3,6.98,8,9.31,9.58,9.6,9.65,130.4,133.91,137.98,145.02,156.82,172.66,176.14000000000001,176.61,177.43,18.57,18.7,18.79,18.96,19.080000000000002,19.18,19.12,19.03,18.84,N/A,N/A +2012,2,28,22,30,101890,100700,99550,92.55,0,5.87,8.02,9.05,10.03,10.31,10.18,10.6,11.1,11.72,142.38,148.67000000000002,153.52,159.36,164.26,168.26,173.59,178.86,181.1,18.93,19.16,19.25,19.32,19.34,19.330000000000002,19.29,19.240000000000002,19.19,N/A,N/A +2012,2,28,23,30,101860,100670,99530,92.46000000000001,0,5.63,7.55,8.49,9.44,10.200000000000001,10.82,11.66,12.51,12.870000000000001,140.67000000000002,144.83,148.42000000000002,153.51,159.02,164.87,169.49,173.61,174.9,18.900000000000002,19.18,19.3,19.44,19.51,19.55,19.61,19.68,19.580000000000002,N/A,N/A +2012,3,1,0,30,101600,100410,99270,93.62,0.4,4.67,6.26,7,7.71,8.03,8.040000000000001,7.88,7.68,7.41,151.61,156.83,162.25,171.33,178.07,182.83,185.09,186.39000000000001,188.34,19.080000000000002,19.28,19.35,19.44,19.32,19.06,19.7,20.56,20.78,N/A,N/A +2012,3,1,1,30,101580,100400,99250,92.55,0,5.34,7.17,8.03,8.8,9.31,9.61,9.53,9.35,8.540000000000001,160.39000000000001,164.20000000000002,168.09,174.53,179.6,183.64000000000001,185.1,185.69,189.75,19.3,19.6,19.72,19.82,19.740000000000002,19.56,19.31,19.07,19.79,N/A,N/A +2012,3,1,2,30,101580,100400,99260,92.09,0,5.95,7.96,8.91,9.65,10.01,10.09,9.67,9.16,9.06,161.5,164.4,167.52,172.9,177.59,181.68,184.77,187.19,187.33,19.38,19.650000000000002,19.75,19.79,19.81,19.8,19.740000000000002,19.67,19.35,N/A,N/A +2012,3,1,3,30,101580,100400,99260,92.81,0.30000000000000004,5.15,7.04,7.9,8.59,8.950000000000001,9.06,9.16,9.27,9.3,178.63,179.08,180.44,184.24,187.13,189.28,190.94,192.3,192.26,19.25,19.31,19.25,19.13,19.29,19.69,19.95,20.150000000000002,19.8,N/A,N/A +2012,3,1,4,30,101570,100380,99230,93.73,0.6000000000000001,5.17,6.93,7.84,8.8,9.59,10.25,10.34,10.28,9.59,174.67000000000002,177.73,180.77,185.9,191.22,196.75,199.09,200.28,200.17000000000002,19.02,19.16,19.21,19.26,19.12,18.86,18.91,19.04,19.96,N/A,N/A +2012,3,1,5,30,101570,100390,99240,93.7,0.6000000000000001,4.71,6.25,6.98,7.7700000000000005,8.48,9.17,9.46,9.6,9.6,187.93,188,188,188.03,189.11,191.1,194.70000000000002,198.55,202.03,19.07,19.240000000000002,19.3,19.330000000000002,19.34,19.330000000000002,19.17,18.97,19.04,N/A,N/A +2012,3,1,6,30,101570,100390,99240,95.05,0.1,5.71,7.47,8.36,9.200000000000001,9.8,10.19,10.3,10.32,10.14,202.66,203.08,203.3,203.51,203.45000000000002,203.22,202.99,202.78,202.91,19.25,19.26,19.23,19.150000000000002,19.06,18.95,18.830000000000002,18.71,18.46,N/A,N/A +2012,3,1,7,30,101580,100390,99250,95.23,0,5.87,7.16,7.66,8.09,8.38,8.59,8.73,8.85,9.14,202.29,202.35,202.38,202.36,202.27,202.11,202.65,203.37,206.20000000000002,19.21,19.17,19.12,19.04,18.98,18.93,18.85,18.77,18.490000000000002,N/A,N/A +2012,3,1,8,30,101570,100380,99230,95.85000000000001,0.4,4.18,5.22,5.67,6.21,6.78,7.42,7.87,8.23,8.83,206.4,206.75,207.19,207.84,208.44,209.03,209.58,210.1,211.3,19.12,19.13,19.12,19.07,19.01,18.93,18.830000000000002,18.73,18.57,N/A,N/A +2012,3,1,9,30,101560,100370,99220,96.58,0,4.53,5.79,6.43,7.18,7.79,8.3,8.66,8.97,9.17,226.55,227.21,227.16,226.03,225.03,224.09,223.19,222.29,224.16,18.98,18.98,18.95,18.89,18.82,18.75,18.72,18.7,18.56,N/A,N/A +2012,3,1,10,30,101540,100360,99220,94.36,0,6.23,7.45,7.94,8.31,8.59,8.8,9.05,9.3,9.64,217.58,218.18,218.67000000000002,219.3,219.75,220.08,220.9,221.79,221.58,19.38,19.41,19.38,19.31,19.22,19.12,18.990000000000002,18.88,18.64,N/A,N/A +2012,3,1,11,30,101520,100340,99190,95.33,0,4.3100000000000005,5.69,6.34,6.97,7.4,7.68,8.040000000000001,8.4,8.700000000000001,215.29,216.34,216.63,215.38,214.38,213.54,214.02,214.91,215.05,19.16,19.32,19.39,19.46,19.45,19.39,19.34,19.29,19.1,N/A,N/A +2012,3,1,12,30,101530,100350,99200,96.45,0.4,3.42,4.83,5.5200000000000005,6.11,6.5600000000000005,6.93,7.19,7.4,7.78,203.38,205.98000000000002,208,210.28,211.93,213.07,213.15,212.89000000000001,212.74,19,19.07,19.11,19.13,19.16,19.19,19.150000000000002,19.080000000000002,18.92,N/A,N/A +2012,3,1,13,30,101520,100340,99190,96.31,0.4,2.84,4.25,5.01,5.98,6.68,7.12,7.46,7.74,8.39,186.78,196.81,203.57,209.34,212.29,212.96,213.06,212.99,213.34,19.11,19.23,19.27,19.3,19.330000000000002,19.34,19.32,19.3,19.31,N/A,N/A +2012,3,1,14,30,101540,100360,99210,96.39,0,2.91,4.04,4.67,5.62,6.3100000000000005,6.7700000000000005,7.21,7.62,8.32,167.99,174.05,181.16,195.83,204.05,206.55,207.52,207.94,210.52,19.1,19.16,19.2,19.27,19.26,19.2,19.18,19.19,19.26,N/A,N/A +2012,3,1,15,30,101520,100340,99190,95.91,0.30000000000000004,4.64,6.13,6.93,7.83,8.36,8.59,8.6,8.57,8.89,173.08,178.65,183.6,190.67000000000002,195.43,198.51,201.28,203.72,207.17000000000002,19.16,19.14,19.17,19.32,19.48,19.63,19.72,19.79,19.71,N/A,N/A +2012,3,1,16,30,101500,100320,99180,95.15,0,6.15,7.5200000000000005,8.06,8.42,8.74,9.05,9.14,9.18,9.21,179.48,181.83,183.96,187.20000000000002,192.13,198.5,201.59,203.53,206.09,19.32,19.39,19.400000000000002,19.400000000000002,19.490000000000002,19.64,19.73,19.81,19.72,N/A,N/A +2012,3,1,17,30,101450,100270,99130,97.09,0.30000000000000004,5.43,6.45,6.94,7.54,8.24,9.02,9.43,9.69,9.75,173.6,175.6,177.63,181.18,185.39000000000001,190.3,194.14000000000001,197.4,200.8,19.04,18.92,18.86,18.830000000000002,18.98,19.27,19.55,19.81,19.88,N/A,N/A +2012,3,1,18,30,101420,100240,99100,95.53,0,5.7700000000000005,7,7.61,8.370000000000001,9.02,9.6,9.85,9.98,10.120000000000001,180.15,181.96,184,187.82,192.12,196.79,199.54,201.47,203.51,19.400000000000002,19.43,19.51,19.76,20.02,20.3,20.37,20.39,20.2,N/A,N/A +2012,3,1,19,30,101400,100220,99070,95.01,0,5.36,6.54,7.08,7.7,8.44,9.34,10.26,11.17,11.700000000000001,180.28,181.59,183.03,185.70000000000002,188.87,192.66,195.52,198,199.91,19.46,19.46,19.46,19.490000000000002,19.57,19.71,19.89,20.07,20.22,N/A,N/A +2012,3,1,20,30,101330,100150,99020,95.08,0,4.74,5.95,6.5600000000000005,7.32,8.3,9.540000000000001,10.05,10.290000000000001,10.83,175.59,176.52,177.95000000000002,181.14000000000001,186.15,193.03,195.52,196.49,198.67000000000002,19.45,19.47,19.5,19.6,19.86,20.22,20.37,20.42,20.46,N/A,N/A +2012,3,1,21,30,101260,100090,98950,94.91,0,5.57,6.86,7.45,8.11,8.88,9.790000000000001,10.36,10.790000000000001,11.16,169.93,171.13,172.44,174.85,179.02,184.71,190.42000000000002,195.79,198.70000000000002,19.52,19.52,19.52,19.54,19.63,19.79,19.96,20.13,20.2,N/A,N/A +2012,3,1,22,30,101200,100020,98880,93.97,0,5.64,7.25,8.01,8.75,9.23,9.5,9.93,10.42,11.19,162.6,165.49,168.09,171.95000000000002,176.59,181.89000000000001,187.54,193.07,198.12,19.54,19.580000000000002,19.54,19.44,19.26,19.01,19.07,19.22,19.92,N/A,N/A +2012,3,1,23,30,101130,99950,98810,94.23,0,5.88,7.37,8.05,8.73,9.290000000000001,9.76,10.14,10.49,10.86,161.20000000000002,163.74,165.86,168.89000000000001,172.5,176.63,181.43,186.14000000000001,190.43,19.42,19.46,19.42,19.330000000000002,19.06,18.68,18.650000000000002,18.71,19.76,N/A,N/A +2012,3,2,0,30,101080,99910,98770,94.18,0,5.24,6.63,7.26,7.97,8.76,9.67,10.47,11.21,11.97,168.07,170.57,172.51,175.06,177.82,180.97,184.8,188.73,191.76,19.46,19.53,19.53,19.490000000000002,19.34,19.080000000000002,19.02,19.02,19.44,N/A,N/A +2012,3,2,1,30,101050,99870,98740,96.01,0.7000000000000001,6.390000000000001,7.79,8.51,9.370000000000001,10.32,11.39,12.23,12.98,13.22,171.22,172.38,173.49,175.25,177.41,180,182.91,185.78,188.72,19.04,18.96,18.89,18.78,18.61,18.39,18.93,19.63,20.59,N/A,N/A +2012,3,2,2,30,101020,99840,98700,95.14,0,6.82,8.27,8.98,9.77,10.58,11.450000000000001,12.32,13.15,14.15,166.77,167.65,168.46,169.85,171.70000000000002,174.08,178.01,182.36,189.21,19.21,19.19,19.16,19.1,19.01,18.89,18.72,18.56,20.79,N/A,N/A +2012,3,2,3,30,100980,99810,98660,93.87,0,8.57,10.43,11.34,12.31,13.13,13.84,14.24,14.51,15.1,173.74,174.99,175.97,177.4,179.19,181.39000000000001,184.71,188.15,193.43,19.46,19.39,19.28,19.05,18.78,18.46,18.29,18.18,18.96,N/A,N/A +2012,3,2,4,30,100940,99770,98630,93.99,0,7.5200000000000005,9.06,9.72,10.370000000000001,10.92,11.41,12.42,13.61,15.98,174.78,174.74,174.99,175.8,177.12,178.93,182.55,186.82,195.63,19.44,19.41,19.35,19.27,19.16,19.01,18.400000000000002,17.69,19.68,N/A,N/A +2012,3,2,5,30,100930,99750,98600,96.61,0,9.31,10.93,11.65,12.38,13.06,13.73,14.450000000000001,15.14,16.85,179.98,181.07,181.81,182.76,183.75,184.8,186.43,188.14000000000001,195.07,18.91,18.75,18.61,18.400000000000002,18.17,17.900000000000002,17.62,17.37,20.02,N/A,N/A +2012,3,2,6,30,100920,99740,98600,96.7,0.4,8.040000000000001,9.3,9.84,10.39,10.96,11.58,12.44,13.34,16.02,181.38,180.57,179.97,179.24,178.82,178.62,179.65,181.01,190.13,18.990000000000002,18.91,18.85,18.76,18.63,18.47,18.13,17.76,18.48,N/A,N/A +2012,3,2,7,30,100910,99730,98590,95.16,0,8.44,9.94,10.64,11.34,12.01,12.68,13.370000000000001,14.030000000000001,15.280000000000001,177.34,177.75,178.14000000000001,178.75,179.49,180.38,181.36,182.33,185.32,19.31,19.21,19.12,18.96,18.76,18.54,18.26,17.990000000000002,17.490000000000002,N/A,N/A +2012,3,2,8,30,100870,99700,98560,96.39,0,8.93,10.51,11.24,12.030000000000001,12.83,13.69,14.68,15.69,17.69,184.91,185.43,185.91,186.59,187.36,188.25,189.15,190.03,189.82,19.06,18.98,18.92,18.830000000000002,18.740000000000002,18.64,18.52,18.42,18.5,N/A,N/A +2012,3,2,9,30,100860,99690,98550,93.94,0,5.83,7.390000000000001,8.15,8.93,9.72,10.59,11.61,12.69,14.540000000000001,172.11,173.94,175.47,177.35,179.12,180.93,182.73,184.49,187.39000000000001,19.59,19.63,19.62,19.6,19.56,19.5,19.39,19.26,18.61,N/A,N/A +2012,3,2,10,30,100850,99680,98540,93.87,0,5.8,7.28,7.98,8.67,9.31,9.93,10.620000000000001,11.31,13.17,182.98,182.87,182.81,182.64000000000001,182.55,182.55,182.73,182.98,184.27,19.6,19.66,19.66,19.650000000000002,19.63,19.62,19.580000000000002,19.53,19.12,N/A,N/A +2012,3,2,11,30,100860,99690,98550,92.68,0.4,6.47,8.26,9.17,10.17,11.040000000000001,11.84,12.5,13.08,13.950000000000001,179.32,180.56,181.41,182.27,183.03,183.74,184.51,185.27,186.93,19.86,19.95,19.95,19.94,19.91,19.88,19.830000000000002,19.78,19.62,N/A,N/A +2012,3,2,12,30,100810,99630,98500,93.41,0,5.84,7.16,7.7,8.27,8.98,9.86,10.700000000000001,11.49,12.23,184.46,184.07,183.87,184.18,184.98,186.21,187.75,189.34,193.77,19.7,19.78,19.78,19.77,19.75,19.72,19.650000000000002,19.57,19.26,N/A,N/A +2012,3,2,13,30,100800,99630,98490,95.09,0.4,6.2,7.54,8.1,8.61,9.16,9.76,10.450000000000001,11.14,13.77,185.42000000000002,184.42000000000002,183.45000000000002,181.82,180.56,179.53,180.32,181.64000000000001,188.67000000000002,19.34,19.36,19.36,19.34,19.3,19.23,18.94,18.61,19.27,N/A,N/A +2012,3,2,14,30,100840,99670,98530,94.08,0,4.9,6.25,6.88,7.62,8.47,9.5,10.64,11.84,14.19,180.15,179.48,179.35,179.94,180.88,182.24,183.31,184.24,188,19.6,19.69,19.7,19.69,19.63,19.51,19.150000000000002,18.73,18.55,N/A,N/A +2012,3,2,15,30,100910,99730,98590,96.27,0,1.9100000000000001,3.33,4.12,5.12,5.97,6.67,7.26,7.8100000000000005,8.99,172.24,177.38,180.9,183.58,185.76,187.5,188.99,190.33,193.04,19.43,19.580000000000002,19.57,19.51,19.41,19.28,19.13,18.990000000000002,18.7,N/A,N/A +2012,3,2,16,30,100900,99730,98590,96.8,0,2.19,3.4,3.99,4.82,5.51,6.08,6.66,7.23,8.3,190.81,191.56,192.71,195.44,198.03,200.48000000000002,202.52,204.36,205.9,19.38,19.51,19.51,19.43,19.3,19.14,18.97,18.82,18.52,N/A,N/A +2012,3,2,17,30,100930,99750,98610,97.23,0,0.99,1.83,2.37,3.0500000000000003,3.66,4.2,4.88,5.65,7.0600000000000005,136.27,169.97,194.41,205.09,211.23000000000002,212.46,211.49,209.5,206.19,19.48,19.47,19.39,19.25,19.1,18.93,18.82,18.75,19.23,N/A,N/A +2012,3,2,18,30,100910,99740,98600,98.15,0,1.41,2.2600000000000002,2.73,3.5100000000000002,4.17,4.68,5.26,5.84,6.6000000000000005,134.02,172.56,197.08,205.49,209.88,209.97,209.21,208.16,207.25,19.51,19.37,19.240000000000002,19.04,18.95,18.92,19.18,19.5,19.77,N/A,N/A +2012,3,2,19,30,100930,99760,98620,99.33,0,1.72,1.72,1.76,2.32,2.84,3.3000000000000003,3.74,4.17,4.9,107.16,136.29,155.42000000000002,180.34,196.03,200.47,203.22,205.16,206.68,19.42,19.23,19.13,19.02,19.150000000000002,19.48,19.7,19.88,19.92,N/A,N/A +2012,3,2,20,30,100850,99670,98540,99.3,0,2.68,3.2600000000000002,3.67,4.23,4.71,5.14,5.54,5.91,6.6000000000000005,181.79,186.05,189.33,193.02,195.84,197.88,199.35,200.53,202.08,19.35,19.34,19.490000000000002,19.98,20.240000000000002,20.330000000000002,20.36,20.36,20.27,N/A,N/A +2012,3,2,21,30,100820,99650,98510,96,0,2.7800000000000002,3.38,3.7800000000000002,4.39,4.83,5.09,5.37,5.65,6.24,147.45000000000002,154.51,161.54,174.18,182.01,185.08,187.49,189.54,192.57,20.01,19.91,19.95,20.150000000000002,20.26,20.29,20.31,20.32,20.29,N/A,N/A +2012,3,2,22,30,100770,99600,98470,95.03,0,2.97,3.85,4.34,5.05,5.51,5.72,5.97,6.23,6.78,154.65,159.27,164.51,175.66,182.68,185.53,187.87,189.9,193.1,20.400000000000002,20.39,20.43,20.580000000000002,20.650000000000002,20.66,20.68,20.71,20.7,N/A,N/A +2012,3,2,23,30,100750,99580,98450,94.66,0,3.5100000000000002,4.8,5.39,6.0200000000000005,6.36,6.46,6.65,6.87,7.2700000000000005,151.02,156.06,161.15,170.16,175.51,177.62,179.33,180.82,183.76,20.38,20.63,20.75,20.87,20.91,20.89,20.89,20.88,20.82,N/A,N/A +2012,3,3,0,30,100750,99580,98450,96.33,0,2.22,3.81,4.64,5.57,6.11,6.3,6.48,6.640000000000001,7.03,130.25,143.1,154.66,169.99,178.71,181.12,183.05,184.71,187.31,19.84,20.22,20.45,20.78,20.94,20.96,20.97,20.96,20.89,N/A,N/A +2012,3,3,1,30,100760,99590,98460,96.32000000000001,0,2.21,3.85,4.74,5.6000000000000005,6.13,6.3100000000000005,6.49,6.67,7.03,132.25,145.64000000000001,157.85,173.24,182.12,184.26,186.07,187.66,190.26,19.75,20.04,20.240000000000002,20.68,20.92,21,21.07,21.14,21.16,N/A,N/A +2012,3,3,2,30,100790,99620,98490,95.31,0,1.81,2.73,3.09,3.5,3.9,4.3100000000000005,4.7,5.07,5.67,154.35,165,171.88,176.55,180.31,183.43,186.06,188.45000000000002,192.32,19.81,20.09,20.17,20.25,20.35,20.46,20.59,20.71,20.84,N/A,N/A +2012,3,3,3,30,100780,99610,98480,96.2,0.7000000000000001,2.87,3.7,3.98,4.33,4.66,4.99,5.3100000000000005,5.62,6.12,154.32,163.67000000000002,169.95000000000002,174.93,178.79,181.81,184.31,186.51,190.43,19.54,19.93,20.150000000000002,20.36,20.490000000000002,20.57,20.62,20.66,20.72,N/A,N/A +2012,3,3,4,30,100770,99590,98460,97.36,0,2.66,4.3500000000000005,5.21,5.66,5.91,6.0200000000000005,6.0200000000000005,5.98,5.7700000000000005,149.73,160.38,170.47,182.56,190.14000000000001,194.41,198.17000000000002,201.43,206.77,19.14,19.22,19.35,19.61,19.830000000000002,20.01,20.16,20.28,20.42,N/A,N/A +2012,3,3,5,30,100780,99600,98470,96.72,0,2.77,4.25,4.97,5.5,5.71,5.66,5.6000000000000005,5.54,5.48,167.94,178.45000000000002,187.22,197.85,205.28,209.88,213.95000000000002,217.51,222.81,19.22,19.330000000000002,19.400000000000002,19.53,19.68,19.85,20.1,20.35,20.59,N/A,N/A +2012,3,3,6,30,100780,99600,98470,96.85000000000001,0,1.8800000000000001,3.49,4.22,4.5600000000000005,4.65,4.58,4.5,4.42,4.46,157.34,176.79,191.44,202.91,210.72,215.82,221.07,225.8,233.49,19.39,19.400000000000002,19.39,19.46,19.55,19.64,19.78,19.91,20.150000000000002,N/A,N/A +2012,3,3,7,30,100820,99650,98510,97.09,2.9000000000000004,1.54,2.22,2.39,2.41,2.5500000000000003,2.81,3.02,3.19,3.39,170.49,193.48000000000002,209.53,222.51,231.23000000000002,237.21,242.35,246.89000000000001,256.4,19.34,19.35,19.32,19.32,19.31,19.29,19.3,19.32,19.48,N/A,N/A +2012,3,3,8,30,100800,99620,98480,97.27,5.5,0.33,0.52,0.67,0.92,1.18,1.42,1.68,1.93,2.35,185.66,242.20000000000002,273.97,280.25,285.88,290.75,294.22,297.17,299.44,19.29,19.330000000000002,19.29,19.23,19.17,19.12,19.09,19.07,19.080000000000002,N/A,N/A +2012,3,3,9,30,100900,99710,98560,80.17,6.2,11.370000000000001,12.33,12.540000000000001,12.59,12.59,12.57,12.52,12.47,12.4,31.32,31.29,31.3,31.3,31.29,31.28,31.27,31.27,31.35,17.56,17.2,17.02,16.82,16.63,16.45,16.26,16.09,15.75,N/A,N/A +2012,3,3,10,30,100930,99740,98580,65.57000000000001,0,12.09,13.32,13.65,13.83,13.950000000000001,14.040000000000001,14.1,14.15,14.23,32.25,32.53,32.7,32.87,33.04,33.2,33.38,33.56,34,17.93,17.61,17.43,17.240000000000002,17.04,16.85,16.66,16.47,16.080000000000002,N/A,N/A +2012,3,3,11,30,101000,99810,98650,64.78,0,12.59,13.870000000000001,14.22,14.42,14.55,14.63,14.69,14.73,14.780000000000001,31.34,31.580000000000002,31.76,31.94,32.12,32.27,32.45,32.62,33,17.5,17.14,16.95,16.75,16.55,16.37,16.17,15.98,15.6,N/A,N/A +2012,3,3,12,30,101090,99890,98730,63.99,0,12.55,13.77,14.120000000000001,14.31,14.43,14.51,14.56,14.6,14.64,30.150000000000002,30.35,30.490000000000002,30.650000000000002,30.82,30.98,31.16,31.32,31.7,16.87,16.46,16.26,16.05,15.85,15.66,15.450000000000001,15.27,14.88,N/A,N/A +2012,3,3,13,30,101150,99950,98790,65.2,0,12.83,14.040000000000001,14.35,14.5,14.59,14.65,14.69,14.71,14.73,28.89,29.1,29.240000000000002,29.38,29.53,29.66,29.82,29.98,30.330000000000002,16.240000000000002,15.77,15.57,15.35,15.15,14.96,14.76,14.57,14.18,N/A,N/A +2012,3,3,14,30,101260,100060,98890,65.2,0,11.870000000000001,12.99,13.31,13.48,13.6,13.68,13.73,13.77,13.81,27.6,27.86,28.01,28.14,28.27,28.38,28.5,28.61,28.85,15.9,15.42,15.200000000000001,14.99,14.780000000000001,14.59,14.38,14.19,13.8,N/A,N/A +2012,3,3,15,30,101340,100130,98960,64.33,0,11.1,12.09,12.38,12.52,12.620000000000001,12.68,12.72,12.75,12.780000000000001,23.89,24.02,24.09,24.17,24.23,24.29,24.34,24.400000000000002,24.53,15.64,15.14,14.93,14.71,14.51,14.31,14.1,13.91,13.52,N/A,N/A +2012,3,3,16,30,101370,100160,98990,58.01,0,10.620000000000001,11.57,11.85,12,12.1,12.18,12.23,12.27,12.33,26.25,26.12,26.04,25.95,25.86,25.77,25.67,25.580000000000002,25.38,16.13,15.68,15.47,15.26,15.06,14.870000000000001,14.66,14.47,14.08,N/A,N/A +2012,3,3,17,30,101420,100220,99050,53.910000000000004,0,9.76,10.63,10.89,11.03,11.13,11.200000000000001,11.25,11.290000000000001,11.35,10.4,10.75,10.98,11.200000000000001,11.38,11.56,11.73,11.89,12.200000000000001,16.73,16.34,16.15,15.94,15.74,15.55,15.35,15.16,14.76,N/A,N/A +2012,3,3,18,30,101450,100250,99080,49,0,10.05,11.01,11.290000000000001,11.44,11.540000000000001,11.620000000000001,11.67,11.71,11.77,7.82,7.94,8.01,8.05,8.09,8.120000000000001,8.15,8.17,8.21,17.42,17.07,16.89,16.69,16.5,16.31,16.11,15.92,15.530000000000001,N/A,N/A +2012,3,3,19,30,101480,100290,99120,48.68,0,9.07,9.93,10.19,10.35,10.46,10.540000000000001,10.6,10.66,10.74,0.52,0.48,0.45,0.42,0.38,0.34,0.3,0.27,0.2,17.92,17.62,17.45,17.25,17.06,16.87,16.67,16.48,16.09,N/A,N/A +2012,3,3,20,30,101500,100310,99140,48.4,0,9.09,9.97,10.22,10.36,10.46,10.53,10.58,10.620000000000001,10.68,348.1,348.63,349.01,349.35,349.65000000000003,349.92,350.18,350.41,350.87,18.18,17.92,17.75,17.56,17.37,17.18,16.98,16.8,16.41,N/A,N/A +2012,3,3,21,30,101540,100350,99180,48.07,0,10.41,11.38,11.66,11.8,11.89,11.94,11.98,12,12.02,339.37,340.08,340.61,341.15000000000003,341.63,342.08,342.53000000000003,342.94,343.78000000000003,17.95,17.67,17.51,17.31,17.13,16.95,16.75,16.57,16.19,N/A,N/A +2012,3,3,22,30,101590,100390,99230,45.65,0,10.56,11.57,11.85,12,12.09,12.16,12.200000000000001,12.23,12.25,338.35,338.85,339.2,339.53000000000003,339.83,340.12,340.41,340.66,341.18,17.73,17.42,17.25,17.05,16.86,16.67,16.47,16.29,15.9,N/A,N/A +2012,3,3,23,30,101660,100460,99290,43.59,0,11.14,12.23,12.530000000000001,12.700000000000001,12.8,12.88,12.93,12.97,13.02,343.94,344.14,344.26,344.37,344.46,344.54,344.61,344.67,344.79,17.54,17.2,17.02,16.82,16.63,16.44,16.23,16.05,15.65,N/A,N/A +2012,3,4,0,30,101790,100590,99420,42.6,0,10.370000000000001,11.31,11.57,11.69,11.78,11.83,11.86,11.89,11.91,354.15000000000003,354.08,354.05,354.01,353.98,353.95,353.90000000000003,353.86,353.78000000000003,17.14,16.78,16.59,16.39,16.19,16,15.790000000000001,15.610000000000001,15.21,N/A,N/A +2012,3,4,1,30,101900,100690,99520,44.14,0,10.24,11.200000000000001,11.47,11.620000000000001,11.73,11.81,11.86,11.91,11.97,356.71,356.12,355.8,355.5,355.23,354.98,354.75,354.53000000000003,354.13,16.75,16.36,16.17,15.96,15.76,15.57,15.36,15.17,14.780000000000001,N/A,N/A +2012,3,4,2,30,102020,100810,99630,43.86,0,10.07,10.97,11.23,11.38,11.48,11.55,11.61,11.66,11.72,352.63,352.63,352.62,352.61,352.59000000000003,352.57,352.56,352.54,352.5,16.53,16.12,15.93,15.72,15.51,15.32,15.120000000000001,14.93,14.530000000000001,N/A,N/A +2012,3,4,3,30,102110,100900,99720,45.32,0,10.36,11.31,11.620000000000001,11.8,11.92,12.02,12.09,12.15,12.23,356.76,356.63,356.53000000000003,356.43,356.35,356.27,356.2,356.13,356,16.3,15.89,15.69,15.47,15.27,15.08,14.870000000000001,14.68,14.280000000000001,N/A,N/A +2012,3,4,4,30,102160,100940,99760,44.46,0,9.33,10.18,10.44,10.6,10.72,10.81,10.88,10.94,11.040000000000001,354.48,354.23,354.08,353.94,353.82,353.7,353.59000000000003,353.5,353.3,16.11,15.68,15.48,15.27,15.07,14.88,14.67,14.48,14.09,N/A,N/A +2012,3,4,5,30,102240,101020,99840,43.410000000000004,0,8.85,9.56,9.78,9.9,9.98,10.040000000000001,10.09,10.120000000000001,10.17,354.06,353.75,353.54,353.35,353.17,353,352.84000000000003,352.69,352.39,16.04,15.620000000000001,15.42,15.21,15.01,14.82,14.620000000000001,14.43,14.030000000000001,N/A,N/A +2012,3,4,6,30,102280,101060,99880,42.730000000000004,0,6.79,7.23,7.34,7.390000000000001,7.43,7.45,7.47,7.48,7.5,0.16,359.98,359.84000000000003,359.7,359.56,359.42,359.28000000000003,359.14,358.85,15.68,15.25,15.06,14.86,14.66,14.48,14.280000000000001,14.09,13.71,N/A,N/A +2012,3,4,7,30,102330,101110,99930,41.34,0,5.59,5.94,6.03,6.08,6.12,6.15,6.17,6.19,6.22,352.67,352.33,352.12,351.92,351.73,351.56,351.39,351.23,350.89,15.700000000000001,15.290000000000001,15.1,14.89,14.69,14.5,14.3,14.11,13.73,N/A,N/A +2012,3,4,8,30,102330,101110,99930,39.71,0,5.91,6.3,6.4,6.45,6.49,6.51,6.53,6.55,6.57,356.56,356.33,356.18,356.04,355.91,355.78000000000003,355.65000000000003,355.53000000000003,355.29,15.870000000000001,15.47,15.27,15.07,14.870000000000001,14.68,14.48,14.290000000000001,13.89,N/A,N/A +2012,3,4,9,30,102350,101130,99950,39.97,0,5.36,5.66,5.73,5.76,5.79,5.8,5.8100000000000005,5.8100000000000005,5.82,354.01,353.54,353.24,352.96,352.71,352.49,352.26,352.05,351.64,15.76,15.35,15.16,14.96,14.75,14.56,14.36,14.17,13.77,N/A,N/A +2012,3,4,10,30,102360,101140,99960,40.35,0,4.45,4.7,4.76,4.79,4.82,4.83,4.8500000000000005,4.86,4.88,346.95,346.5,346.25,346.01,345.79,345.61,345.41,345.23,344.87,15.64,15.24,15.05,14.85,14.65,14.46,14.25,14.06,13.67,N/A,N/A +2012,3,4,11,30,102380,101160,99970,40.88,0,3.79,3.98,4.0200000000000005,4.04,4.0600000000000005,4.07,4.08,4.09,4.1,338.66,338.28000000000003,338.05,337.82,337.61,337.43,337.25,337.08,336.74,15.57,15.18,14.99,14.790000000000001,14.59,14.4,14.19,14,13.61,N/A,N/A +2012,3,4,12,30,102410,101190,100000,41.53,0,3.34,3.49,3.52,3.54,3.5500000000000003,3.56,3.56,3.5700000000000003,3.5700000000000003,318.82,318.33,318.08,317.85,317.64,317.45,317.25,317.08,316.73,15.58,15.19,15,14.8,14.6,14.41,14.200000000000001,14.01,13.620000000000001,N/A,N/A +2012,3,4,13,30,102430,101210,100030,42.74,0,3.75,3.89,3.9,3.89,3.87,3.85,3.83,3.81,3.77,296.93,297.05,297.13,297.21,297.3,297.38,297.47,297.56,297.78000000000003,15.450000000000001,15.06,14.86,14.66,14.46,14.27,14.07,13.88,13.49,N/A,N/A +2012,3,4,14,30,102480,101260,100080,39.910000000000004,0,3.39,3.5300000000000002,3.5500000000000003,3.5500000000000003,3.5500000000000003,3.5500000000000003,3.54,3.5300000000000002,3.52,280.31,280.27,280.28000000000003,280.28000000000003,280.29,280.29,280.33,280.36,280.46,15.5,15.11,14.92,14.71,14.52,14.33,14.120000000000001,13.93,13.540000000000001,N/A,N/A +2012,3,4,15,30,102510,101290,100100,40.61,0,3.96,4.14,4.18,4.19,4.19,4.19,4.19,4.18,4.17,274.51,274.45,274.43,274.39,274.36,274.34000000000003,274.32,274.29,274.26,15.64,15.25,15.06,14.85,14.65,14.47,14.27,14.08,13.69,N/A,N/A +2012,3,4,16,30,102510,101280,100100,43.800000000000004,0,4.54,4.7700000000000005,4.8100000000000005,4.83,4.83,4.84,4.83,4.83,4.8100000000000005,268.53000000000003,268.5,268.5,268.5,268.52,268.54,268.57,268.6,268.68,15.76,15.36,15.17,14.97,14.77,14.59,14.38,14.19,13.8,N/A,N/A +2012,3,4,17,30,102510,101290,100100,44.07,0,4.43,4.67,4.72,4.75,4.76,4.78,4.78,4.79,4.79,251.74,252.47,252.92000000000002,253.35,253.75,254.12,254.5,254.86,255.59,16.04,15.65,15.46,15.26,15.06,14.88,14.67,14.48,14.09,N/A,N/A +2012,3,4,18,30,102490,101270,100090,43.44,0,4.72,4.96,4.99,5.01,5.01,5,4.99,4.98,4.95,244.77,245.56,246.11,246.64000000000001,247.14000000000001,247.61,248.12,248.59,249.63,16.4,16.02,15.84,15.64,15.44,15.25,15.05,14.870000000000001,14.48,N/A,N/A +2012,3,4,19,30,102480,101270,100090,43.28,0,4.75,5,5.04,5.0600000000000005,5.0600000000000005,5.05,5.04,5.03,4.99,222.62,223.18,223.57,223.94,224.3,224.64000000000001,225.01,225.35,226.14000000000001,16.68,16.31,16.13,15.93,15.73,15.55,15.34,15.16,14.77,N/A,N/A +2012,3,4,20,30,102440,101230,100050,44.7,0,4.74,4.97,5,4.99,4.97,4.94,4.9,4.87,4.7700000000000005,209.46,210.03,210.42000000000002,210.83,211.25,211.65,212.19,212.71,214.20000000000002,17.01,16.67,16.490000000000002,16.3,16.11,15.93,15.73,15.55,15.19,N/A,N/A +2012,3,4,21,30,102400,101190,100010,48.67,0,5.91,6.29,6.36,6.38,6.390000000000001,6.390000000000001,6.38,6.36,6.32,208.72,209.03,209.21,209.38,209.55,209.71,209.89000000000001,210.06,210.49,17.05,16.69,16.51,16.31,16.12,15.93,15.73,15.55,15.16,N/A,N/A +2012,3,4,22,30,102380,101170,99990,50.14,0,6.74,7.26,7.38,7.43,7.46,7.49,7.5,7.5,7.5,210.08,210.32,210.47,210.61,210.75,210.86,210.99,211.1,211.34,17.330000000000002,16.98,16.8,16.6,16.4,16.22,16.01,15.83,15.43,N/A,N/A +2012,3,4,23,30,102360,101150,99980,52.39,0,7.5600000000000005,8.19,8.33,8.4,8.45,8.47,8.49,8.5,8.49,213.22,213.45000000000002,213.59,213.72,213.84,213.95000000000002,214.07,214.18,214.42000000000002,17.52,17.18,17,16.8,16.61,16.42,16.22,16.04,15.65,N/A,N/A +2012,3,5,0,30,102380,101170,99990,55.74,0,8.15,8.86,9.03,9.120000000000001,9.17,9.200000000000001,9.22,9.23,9.23,216.11,216.24,216.33,216.4,216.47,216.54,216.6,216.67000000000002,216.8,17.63,17.3,17.12,16.92,16.73,16.54,16.34,16.15,15.77,N/A,N/A +2012,3,5,1,30,102400,101190,100020,55.4,0,8.09,8.81,8.98,9.07,9.120000000000001,9.15,9.17,9.18,9.19,219.48000000000002,219.57,219.63,219.68,219.73000000000002,219.77,219.82,219.86,219.96,17.79,17.48,17.3,17.1,16.91,16.73,16.52,16.34,15.950000000000001,N/A,N/A +2012,3,5,2,30,102440,101230,100050,58.26,0,7.97,8.68,8.84,8.93,8.98,9.02,9.03,9.05,9.05,221.99,222.14000000000001,222.23000000000002,222.32,222.4,222.47,222.56,222.64000000000001,222.8,17.84,17.53,17.35,17.150000000000002,16.96,16.77,16.57,16.39,16,N/A,N/A +2012,3,5,3,30,102450,101240,100070,58.67,0,7.5,8.15,8.3,8.38,8.42,8.45,8.47,8.47,8.47,221.88,221.97,222.04,222.1,222.16,222.22,222.28,222.34,222.46,17.900000000000002,17.59,17.42,17.22,17.03,16.84,16.64,16.46,16.07,N/A,N/A +2012,3,5,4,30,102470,101260,100090,57.35,0,7.16,7.76,7.9,7.97,8.01,8.03,8.040000000000001,8.040000000000001,8.03,223.76,223.83,223.87,223.91,223.95000000000002,223.98000000000002,224.02,224.07,224.18,18.06,17.76,17.59,17.400000000000002,17.21,17.03,16.830000000000002,16.65,16.27,N/A,N/A +2012,3,5,5,30,102490,101290,100110,59.94,0,6.9,7.48,7.61,7.68,7.71,7.73,7.74,7.74,7.72,222.11,222.25,222.34,222.42000000000002,222.51,222.59,222.68,222.76,222.96,18.04,17.75,17.57,17.38,17.19,17,16.8,16.62,16.23,N/A,N/A +2012,3,5,6,30,102530,101320,100150,61.74,0,6.54,7.11,7.24,7.3,7.33,7.3500000000000005,7.36,7.36,7.3500000000000005,227.3,227.38,227.42000000000002,227.47,227.51,227.55,227.59,227.62,227.71,18,17.73,17.56,17.37,17.18,17,16.8,16.62,16.240000000000002,N/A,N/A +2012,3,5,7,30,102560,101350,100180,61.38,0,6.49,7.05,7.18,7.24,7.28,7.3,7.3100000000000005,7.32,7.3100000000000005,229.79,229.88,229.92000000000002,229.97,230.01,230.06,230.1,230.15,230.27,18.01,17.740000000000002,17.57,17.38,17.2,17.02,16.82,16.63,16.25,N/A,N/A +2012,3,5,8,30,102580,101370,100200,65.47,0,6.18,6.7,6.8100000000000005,6.87,6.91,6.92,6.93,6.93,6.93,231.35,231.39000000000001,231.41,231.43,231.45000000000002,231.46,231.46,231.46,231.46,17.92,17.650000000000002,17.48,17.29,17.1,16.92,16.72,16.54,16.15,N/A,N/A +2012,3,5,9,30,102590,101380,100200,64.16,0,5.57,6.04,6.140000000000001,6.19,6.22,6.24,6.25,6.25,6.25,234.54,234.59,234.63,234.66,234.70000000000002,234.72,234.75,234.78,234.85,17.92,17.650000000000002,17.48,17.29,17.1,16.92,16.73,16.54,16.16,N/A,N/A +2012,3,5,10,30,102620,101410,100240,65.79,0,5.24,5.67,5.7700000000000005,5.8100000000000005,5.84,5.8500000000000005,5.86,5.86,5.86,234.13,234.21,234.25,234.3,234.33,234.37,234.4,234.43,234.52,17.89,17.62,17.45,17.26,17.06,16.88,16.68,16.5,16.11,N/A,N/A +2012,3,5,11,30,102650,101440,100270,64.48,0,4.63,4.99,5.07,5.1000000000000005,5.12,5.13,5.14,5.14,5.14,240.16,240.15,240.14000000000001,240.12,240.09,240.05,240.01,239.98000000000002,239.87,17.900000000000002,17.63,17.46,17.27,17.080000000000002,16.9,16.7,16.52,16.14,N/A,N/A +2012,3,5,12,30,102690,101480,100310,64.35,0,3.84,4.12,4.17,4.2,4.21,4.22,4.23,4.23,4.23,232.12,232.17000000000002,232.21,232.24,232.27,232.31,232.35,232.38,232.47,17.89,17.62,17.45,17.26,17.07,16.88,16.69,16.5,16.12,N/A,N/A +2012,3,5,13,30,102740,101530,100350,66.05,0,3.85,4.13,4.18,4.21,4.23,4.24,4.25,4.26,4.28,228.9,228.75,228.65,228.55,228.44,228.34,228.23000000000002,228.11,227.84,17.830000000000002,17.55,17.38,17.19,17,16.82,16.62,16.43,16.05,N/A,N/A +2012,3,5,14,30,102810,101600,100420,64.25,0,3.18,3.41,3.45,3.47,3.49,3.49,3.5,3.5,3.5100000000000002,222.94,222.88,222.83,222.78,222.73000000000002,222.69,222.67000000000002,222.65,222.62,17.91,17.63,17.47,17.27,17.080000000000002,16.9,16.7,16.52,16.13,N/A,N/A +2012,3,5,15,30,102850,101630,100460,66.07000000000001,0,2.82,3,3.0300000000000002,3.0500000000000003,3.0500000000000003,3.06,3.06,3.0700000000000003,3.0700000000000003,215.76,215.83,215.86,215.89000000000001,215.89000000000001,215.89000000000001,215.89000000000001,215.88,215.83,17.87,17.580000000000002,17.41,17.21,17.02,16.84,16.64,16.45,16.07,N/A,N/A +2012,3,5,16,30,102860,101650,100480,64.52,0,2.42,2.5500000000000003,2.57,2.58,2.59,2.6,2.6,2.6,2.6,216.46,216.44,216.45000000000002,216.45000000000002,216.45000000000002,216.45000000000002,216.47,216.49,216.5,17.94,17.64,17.47,17.28,17.09,16.9,16.7,16.52,16.13,N/A,N/A +2012,3,5,17,30,102860,101650,100470,66.62,0,3.14,3.31,3.35,3.36,3.37,3.38,3.38,3.38,3.39,201.75,201.89000000000001,202,202.1,202.19,202.27,202.37,202.46,202.67000000000002,17.96,17.64,17.46,17.27,17.080000000000002,16.89,16.69,16.51,16.12,N/A,N/A +2012,3,5,18,30,102870,101660,100480,64.36,0,3.5700000000000003,3.77,3.81,3.8200000000000003,3.83,3.83,3.84,3.84,3.83,198.66,198.78,198.86,198.94,199.02,199.09,199.16,199.23000000000002,199.4,18.13,17.81,17.63,17.44,17.25,17.06,16.86,16.68,16.29,N/A,N/A +2012,3,5,19,30,102880,101660,100490,63.68,0,3.13,3.31,3.34,3.36,3.37,3.38,3.38,3.38,3.38,187.62,187.71,187.81,187.9,187.98,188.04,188.09,188.14000000000001,188.27,18.240000000000002,17.92,17.75,17.56,17.36,17.18,16.98,16.79,16.41,N/A,N/A +2012,3,5,20,30,102830,101620,100450,67.07000000000001,0,4.07,4.32,4.37,4.4,4.41,4.41,4.42,4.41,4.41,188.5,188.61,188.71,188.79,188.88,188.95000000000002,189.03,189.11,189.28,18.23,17.92,17.740000000000002,17.55,17.36,17.17,16.98,16.79,16.41,N/A,N/A +2012,3,5,21,30,102800,101590,100420,64.61,0,4.01,4.3100000000000005,4.37,4.4,4.42,4.43,4.44,4.44,4.45,184.36,184.54,184.64000000000001,184.75,184.84,184.93,185.02,185.09,185.26,18.34,18.06,17.89,17.7,17.5,17.32,17.12,16.94,16.55,N/A,N/A +2012,3,5,22,30,102770,101560,100380,66.21000000000001,0,4.07,4.38,4.44,4.47,4.49,4.5,4.51,4.51,4.5200000000000005,180.66,180.67000000000002,180.68,180.67000000000002,180.66,180.66,180.64000000000001,180.63,180.6,18.25,17.990000000000002,17.82,17.63,17.43,17.25,17.05,16.87,16.48,N/A,N/A +2012,3,5,23,30,102740,101530,100350,65.65,0,4.32,4.67,4.75,4.79,4.82,4.84,4.8500000000000005,4.86,4.87,174.3,174.49,174.64000000000001,174.76,174.87,174.97,175.07,175.17000000000002,175.33,18.22,17.96,17.8,17.62,17.43,17.25,17.05,16.87,16.490000000000002,N/A,N/A +2012,3,6,0,30,102710,101500,100320,67.13,0,4.87,5.28,5.37,5.41,5.44,5.47,5.48,5.49,5.51,175.33,175.4,175.45000000000002,175.5,175.54,175.59,175.63,175.67000000000002,175.78,18.14,17.88,17.72,17.53,17.34,17.16,16.97,16.78,16.41,N/A,N/A +2012,3,6,1,30,102700,101490,100320,67.06,0,5.2,5.66,5.76,5.8100000000000005,5.8500000000000005,5.87,5.89,5.9,5.92,170.8,170.88,170.94,170.97,171,171.02,171.05,171.07,171.11,18.11,17.85,17.69,17.5,17.32,17.13,16.94,16.76,16.37,N/A,N/A +2012,3,6,2,30,102700,101490,100320,69.42,0,5.46,5.94,6.05,6.12,6.16,6.19,6.21,6.22,6.25,166.99,167.07,167.12,167.16,167.21,167.25,167.3,167.34,167.45000000000002,18.07,17.81,17.64,17.45,17.26,17.080000000000002,16.88,16.7,16.32,N/A,N/A +2012,3,6,3,30,102690,101480,100310,67.56,0,6.3100000000000005,6.890000000000001,7.0200000000000005,7.1000000000000005,7.140000000000001,7.17,7.19,7.21,7.23,167.12,167.21,167.26,167.32,167.38,167.44,167.5,167.56,167.71,18.14,17.88,17.72,17.53,17.34,17.16,16.96,16.78,16.4,N/A,N/A +2012,3,6,4,30,102670,101470,100290,70.87,0,6.3,6.890000000000001,7.03,7.11,7.17,7.21,7.24,7.2700000000000005,7.3,163.77,163.86,163.92000000000002,163.99,164.05,164.11,164.17000000000002,164.22,164.35,18.080000000000002,17.82,17.650000000000002,17.46,17.28,17.09,16.9,16.72,16.330000000000002,N/A,N/A +2012,3,6,5,30,102650,101440,100270,70.35000000000001,0,6.65,7.29,7.46,7.55,7.62,7.66,7.7,7.73,7.7700000000000005,163.73,163.84,163.92000000000002,163.98,164.05,164.1,164.16,164.21,164.33,18.14,17.87,17.71,17.52,17.330000000000002,17.150000000000002,16.96,16.77,16.39,N/A,N/A +2012,3,6,6,30,102660,101450,100280,70.56,0,7.23,7.95,8.13,8.24,8.31,8.370000000000001,8.4,8.44,8.47,163.18,163.31,163.39000000000001,163.47,163.55,163.62,163.70000000000002,163.77,163.92000000000002,18.23,17.97,17.81,17.62,17.43,17.25,17.05,16.87,16.48,N/A,N/A +2012,3,6,7,30,102640,101430,100260,72.05,0,7.33,8.09,8.290000000000001,8.42,8.51,8.58,8.63,8.67,8.73,164.34,164.53,164.63,164.73,164.82,164.9,164.99,165.07,165.24,18.28,18.03,17.87,17.68,17.5,17.32,17.12,16.94,16.56,N/A,N/A +2012,3,6,8,30,102600,101400,100230,73.54,0,7.66,8.47,8.700000000000001,8.85,8.950000000000001,9.040000000000001,9.1,9.15,9.23,166.16,166.37,166.5,166.62,166.74,166.85,166.96,167.07,167.27,18.35,18.11,17.95,17.77,17.59,17.41,17.21,17.03,16.65,N/A,N/A +2012,3,6,9,30,102570,101360,100190,74.36,0,7.79,8.620000000000001,8.85,9,9.11,9.19,9.25,9.3,9.38,168.5,168.45000000000002,168.45000000000002,168.44,168.42000000000002,168.4,168.39000000000001,168.37,168.32,18.42,18.19,18.03,17.85,17.67,17.490000000000002,17.3,17.12,16.73,N/A,N/A +2012,3,6,10,30,102540,101330,100160,75.57000000000001,0,7.91,8.76,9,9.16,9.27,9.36,9.43,9.49,9.57,165.32,165.55,165.67000000000002,165.79,165.9,166.01,166.13,166.24,166.48,18.44,18.21,18.06,17.88,17.7,17.52,17.330000000000002,17.150000000000002,16.77,N/A,N/A +2012,3,6,11,30,102530,101320,100160,78.58,0,6.79,7.92,8.38,8.67,8.93,9.17,9.4,9.61,9.94,161.48,162.95000000000002,163.56,163.6,163.65,163.71,163.82,163.94,164.17000000000002,18.47,18.23,18.09,17.92,17.76,17.61,17.46,17.31,16.98,N/A,N/A +2012,3,6,12,30,102510,101310,100140,79.39,0,6.3500000000000005,7.25,7.62,7.930000000000001,8.24,8.53,8.81,9.06,9.4,156.33,157.26,157.81,158.17000000000002,158.46,158.70000000000002,158.95000000000002,159.19,159.72,18.45,18.22,18.080000000000002,17.93,17.79,17.66,17.54,17.42,17.12,N/A,N/A +2012,3,6,13,30,102520,101310,100150,77.16,0,7.44,8.38,8.700000000000001,8.96,9.18,9.370000000000001,9.53,9.68,9.950000000000001,156.02,156.37,156.71,157.09,157.48,157.85,158.24,158.61,159.42000000000002,18.68,18.5,18.38,18.22,18.07,17.91,17.740000000000002,17.59,17.25,N/A,N/A +2012,3,6,14,30,102550,101350,100180,75.75,0,7.9,8.93,9.27,9.540000000000001,9.77,9.96,10.120000000000001,10.27,10.53,153.57,153.49,153.48,153.46,153.44,153.43,153.42000000000002,153.43,153.47,18.81,18.64,18.51,18.35,18.18,18.02,17.84,17.67,17.32,N/A,N/A +2012,3,6,15,30,102560,101360,100190,75.86,0,7.37,8.41,8.790000000000001,9.1,9.370000000000001,9.61,9.84,10.040000000000001,10.42,153.04,153.42000000000002,153.69,153.98,154.26,154.54,154.86,155.15,155.79,18.92,18.77,18.66,18.51,18.36,18.22,18.06,17.900000000000002,17.57,N/A,N/A +2012,3,6,16,30,102560,101350,100190,78.63,0,7.08,8.05,8.4,8.69,8.94,9.15,9.36,9.540000000000001,9.88,148.95000000000002,149.42000000000002,149.74,150.09,150.45000000000002,150.8,151.18,151.54,152.29,18.89,18.73,18.61,18.46,18.3,18.150000000000002,17.990000000000002,17.830000000000002,17.5,N/A,N/A +2012,3,6,17,30,102520,101320,100150,80.11,0,7.2,8.18,8.53,8.82,9.07,9.3,9.51,9.700000000000001,10.07,144.02,144.47,144.83,145.25,145.68,146.12,146.61,147.07,148.08,18.94,18.78,18.650000000000002,18.5,18.36,18.21,18.04,17.89,17.57,N/A,N/A +2012,3,6,18,30,102490,101290,100130,81.56,0,6.92,7.87,8.21,8.5,8.75,8.96,9.16,9.33,9.67,142.36,142.79,143.11,143.5,143.89000000000001,144.27,144.70000000000002,145.1,145.98,18.990000000000002,18.830000000000002,18.7,18.56,18.400000000000002,18.25,18.09,17.94,17.62,N/A,N/A +2012,3,6,19,30,102460,101260,100090,82.61,0,6.93,7.91,8.27,8.58,8.85,9.09,9.32,9.52,9.91,136.83,137.36,137.72,138.13,138.53,138.92000000000002,139.33,139.71,140.5,19.01,18.86,18.740000000000002,18.59,18.45,18.3,18.14,18,17.67,N/A,N/A +2012,3,6,20,30,102400,101200,100040,83.01,0,7.2700000000000005,8.41,8.85,9.24,9.58,9.89,10.18,10.44,10.91,134.64000000000001,134.95,135.21,135.52,135.86,136.21,136.6,136.98,137.78,19.03,18.900000000000002,18.79,18.66,18.53,18.39,18.25,18.11,17.81,N/A,N/A +2012,3,6,21,30,102340,101140,99980,82.79,0,7.9,9.14,9.620000000000001,10.040000000000001,10.43,10.77,11.1,11.4,11.94,132.76,133.3,133.67000000000002,134.09,134.53,134.95,135.41,135.83,136.75,19.02,18.900000000000002,18.8,18.68,18.55,18.42,18.28,18.150000000000002,17.86,N/A,N/A +2012,3,6,22,30,102280,101080,99920,82.86,0,8.540000000000001,9.82,10.3,10.71,11.07,11.4,11.71,11.98,12.51,131.6,132,132.32,132.7,133.09,133.49,133.92000000000002,134.31,135.16,19.03,18.92,18.82,18.69,18.56,18.43,18.28,18.150000000000002,17.85,N/A,N/A +2012,3,6,23,30,102220,101030,99870,83.45,0,8.66,9.97,10.47,10.9,11.28,11.63,11.950000000000001,12.24,12.780000000000001,133.41,133.8,134.08,134.4,134.73,135.07,135.43,135.78,136.53,18.990000000000002,18.87,18.77,18.650000000000002,18.51,18.38,18.240000000000002,18.1,17.81,N/A,N/A +2012,3,7,0,30,102160,100960,99800,84.91,0,9.16,10.52,11.01,11.43,11.8,12.13,12.450000000000001,12.74,13.290000000000001,133.71,134.03,134.25,134.5,134.77,135.04,135.34,135.64000000000001,136.28,18.96,18.830000000000002,18.72,18.580000000000002,18.44,18.3,18.150000000000002,18.01,17.71,N/A,N/A +2012,3,7,1,30,102130,100930,99770,85.61,0,9.49,10.94,11.46,11.92,12.32,12.69,13.05,13.38,14,135.15,135.44,135.66,135.93,136.21,136.5,136.83,137.15,137.86,18.98,18.85,18.740000000000002,18.61,18.47,18.330000000000002,18.19,18.05,17.76,N/A,N/A +2012,3,7,2,30,102110,100910,99750,85.66,0,10.18,11.71,12.26,12.73,13.15,13.530000000000001,13.91,14.26,14.93,133.25,133.58,133.81,134.06,134.32,134.58,134.86,135.12,135.69,19.04,18.92,18.81,18.68,18.54,18.41,18.26,18.13,17.830000000000002,N/A,N/A +2012,3,7,3,30,102080,100890,99730,87.16,0,10.25,11.870000000000001,12.450000000000001,12.97,13.43,13.85,14.25,14.61,15.31,138.8,139.1,139.29,139.53,139.77,140,140.26,140.5,141.01,19.06,18.94,18.84,18.72,18.580000000000002,18.45,18.31,18.18,17.89,N/A,N/A +2012,3,7,4,30,102050,100860,99700,85.87,0,10.620000000000001,12.27,12.88,13.41,13.86,14.27,14.65,15,15.65,140.33,140.63,140.85,141.09,141.32,141.54,141.77,141.99,142.44,19.13,19.03,18.94,18.81,18.68,18.56,18.42,18.29,18.01,N/A,N/A +2012,3,7,5,30,102020,100830,99670,87.31,0,9.34,10.83,11.4,11.92,12.39,12.83,13.26,13.65,14.42,142.17000000000002,142.37,142.5,142.67000000000002,142.84,143.01,143.20000000000002,143.39000000000001,143.8,19.07,18.96,18.86,18.73,18.6,18.47,18.330000000000002,18.2,17.91,N/A,N/A +2012,3,7,6,30,102030,100830,99680,87.55,0,10,11.540000000000001,12.11,12.61,13.05,13.450000000000001,13.84,14.19,14.88,148.05,148.17000000000002,148.25,148.35,148.46,148.56,148.68,148.79,149.08,19.240000000000002,19.12,19.02,18.89,18.76,18.62,18.48,18.35,18.07,N/A,N/A +2012,3,7,7,30,102030,100830,99680,89.12,0,8.91,10.39,10.97,11.48,11.950000000000001,12.38,12.8,13.19,13.94,151.66,151.79,151.91,152.06,152.21,152.37,152.57,152.76,153.26,19.23,19.13,19.03,18.91,18.79,18.66,18.53,18.400000000000002,18.14,N/A,N/A +2012,3,7,8,30,102000,100810,99650,90.16,0,8.3,9.69,10.24,10.75,11.22,11.65,12.07,12.46,13.26,151.01,151.39000000000001,151.6,151.8,151.97,152.13,152.29,152.43,152.8,19.240000000000002,19.14,19.04,18.92,18.79,18.67,18.53,18.400000000000002,18.14,N/A,N/A +2012,3,7,9,30,102000,100810,99650,90.4,0,7.95,9.41,10,10.55,11.05,11.5,11.94,12.34,13.09,153.1,153.65,154.07,154.55,155.03,155.51,155.98,156.42000000000002,157.23,19.31,19.240000000000002,19.17,19.080000000000002,18.97,18.87,18.76,18.650000000000002,18.400000000000002,N/A,N/A +2012,3,7,10,30,101950,100760,99610,90.92,0,8.23,9.700000000000001,10.31,10.9,11.44,11.94,12.450000000000001,12.92,13.81,149.68,150.31,150.77,151.35,151.94,152.54,153.23,153.89000000000001,155.29,19.31,19.240000000000002,19.17,19.080000000000002,18.98,18.89,18.79,18.7,18.5,N/A,N/A +2012,3,7,11,30,101940,100750,99590,91.54,0,7.930000000000001,9.4,10,10.56,11.07,11.55,12,12.41,13.23,153.24,154.04,154.59,155.22,155.87,156.53,157.23,157.89000000000001,159.33,19.3,19.240000000000002,19.17,19.080000000000002,18.98,18.89,18.78,18.68,18.48,N/A,N/A +2012,3,7,12,30,101940,100750,99600,91.67,0,7.890000000000001,9.26,9.81,10.33,10.78,11.18,11.56,11.91,12.56,150.06,150.69,151.14000000000001,151.70000000000002,152.26,152.84,153.46,154.06,155.36,19.28,19.21,19.14,19.04,18.93,18.82,18.7,18.59,18.34,N/A,N/A +2012,3,7,13,30,101940,100750,99600,91.36,0,7.2700000000000005,8.72,9.33,9.94,10.5,11.02,11.55,12.030000000000001,12.950000000000001,146.28,147.41,148.26,149.27,150.26,151.23,152.15,153.02,154.49,19.330000000000002,19.3,19.26,19.19,19.13,19.06,18.990000000000002,18.91,18.72,N/A,N/A +2012,3,7,14,30,101990,100800,99650,92.12,0,7.140000000000001,8.52,9.13,9.71,10.26,10.78,11.31,11.81,12.780000000000001,144.04,144.46,144.84,145.42000000000002,146.17000000000002,147.03,148.18,149.33,151.92000000000002,19.34,19.3,19.240000000000002,19.17,19.09,19.02,18.94,18.88,18.740000000000002,N/A,N/A +2012,3,7,15,30,102010,100820,99660,92.36,0,6.94,8.36,8.98,9.620000000000001,10.23,10.82,11.41,11.98,12.99,143.41,144.38,145.13,146.1,147.17000000000002,148.31,149.58,150.81,153.29,19.45,19.42,19.39,19.34,19.3,19.26,19.240000000000002,19.22,19.16,N/A,N/A +2012,3,7,16,30,102000,100810,99660,92.27,0,6.84,8.17,8.73,9.3,9.84,10.36,10.91,11.43,12.5,137.04,138.34,139.33,140.56,141.85,143.15,144.6,145.99,149,19.46,19.42,19.38,19.32,19.25,19.19,19.12,19.06,18.94,N/A,N/A +2012,3,7,17,30,102000,100810,99660,91.53,0,6.93,8.25,8.790000000000001,9.33,9.81,10.27,10.73,11.17,12.1,136.73,137.72,138.48,139.49,140.61,141.79,143.21,144.6,147.92000000000002,19.580000000000002,19.54,19.490000000000002,19.42,19.35,19.28,19.22,19.150000000000002,19.03,N/A,N/A +2012,3,7,18,30,101980,100790,99640,91.56,0,6.66,7.98,8.57,9.13,9.64,10.120000000000001,10.57,10.98,11.84,131.08,132.1,132.98,134.21,135.65,137.25,139.20000000000002,141.09,145.89000000000001,19.61,19.59,19.56,19.51,19.47,19.43,19.39,19.34,19.25,N/A,N/A +2012,3,7,19,30,101970,100780,99630,92.89,2.6,7.16,8.540000000000001,9.11,9.66,10.17,10.66,11.16,11.63,12.58,127.87,128.39000000000001,128.96,129.79,130.79,131.91,133.24,134.53,137.68,19.52,19.490000000000002,19.45,19.38,19.31,19.240000000000002,19.17,19.11,18.990000000000002,N/A,N/A +2012,3,7,20,30,101900,100710,99560,94.26,0,7.15,8.63,9.290000000000001,9.98,10.63,11.26,11.91,12.540000000000001,13.73,130.4,130.69,131.01,131.53,132.21,132.99,134.03,135.08,137.93,19.490000000000002,19.44,19.39,19.32,19.27,19.22,19.2,19.18,19.17,N/A,N/A +2012,3,7,21,30,101820,100630,99480,94.93,0,6.98,8.52,9.200000000000001,9.9,10.540000000000001,11.14,11.75,12.32,13.5,123.18,124.26,125.03,125.95,126.99000000000001,128.08,129.47,130.83,134.07,19.44,19.44,19.41,19.37,19.32,19.27,19.21,19.150000000000002,19.05,N/A,N/A +2012,3,7,22,30,101780,100600,99450,93.95,0,9.49,11.18,11.89,12.58,13.22,13.83,14.450000000000001,15.040000000000001,16.23,128.48,129.09,129.53,130.2,130.97,131.82,132.9,133.99,136.98,19.55,19.54,19.51,19.45,19.400000000000002,19.35,19.31,19.28,19.25,N/A,N/A +2012,3,7,23,30,101720,100540,99390,94.32000000000001,0,9.22,10.99,11.72,12.43,13.13,13.81,14.530000000000001,15.21,16.61,127.7,128.46,129.09,129.91,130.88,131.93,133.21,134.48,137.67000000000002,19.48,19.47,19.44,19.39,19.35,19.32,19.29,19.26,19.27,N/A,N/A +2012,3,8,0,30,101700,100510,99370,93.32000000000001,22,9.57,11.370000000000001,12.120000000000001,12.83,13.5,14.16,14.84,15.49,16.81,130.44,130.96,131.41,131.99,132.57,133.16,133.81,134.43,136.02,19.69,19.72,19.71,19.68,19.64,19.59,19.54,19.48,19.400000000000002,N/A,N/A +2012,3,8,1,30,101690,100510,99360,92.59,0.4,9.67,11.72,12.61,13.5,14.290000000000001,15.030000000000001,15.74,16.39,17.67,136.81,137.51,138.07,138.76,139.48,140.20000000000002,141.04,141.84,143.99,19.84,19.89,19.88,19.87,19.86,19.84,19.830000000000002,19.82,19.81,N/A,N/A +2012,3,8,2,30,101710,100530,99390,91.21000000000001,2.6,9.81,11.98,13,14.01,14.91,15.75,16.46,17.09,17.81,145.8,147.66,148.9,150.46,151.95000000000002,153.41,154.62,155.68,156.52,20.13,20.240000000000002,20.26,20.25,20.23,20.21,20.16,20.12,19.94,N/A,N/A +2012,3,8,3,30,101680,100500,99360,92.13,0,7.61,9.55,10.35,11.11,11.790000000000001,12.41,12.96,13.46,14.3,145.36,145.79,146.05,146.18,146.25,146.29,146.4,146.52,146.89000000000001,19.98,20.07,20.080000000000002,20.07,20.06,20.03,19.990000000000002,19.96,19.84,N/A,N/A +2012,3,8,4,30,101650,100470,99330,92.53,4.4,10.040000000000001,11.78,12.4,12.94,13.38,13.75,14.08,14.370000000000001,14.92,156.70000000000002,156.55,156.39000000000001,156.14000000000001,155.83,155.51,155.13,154.77,154.04,19.86,19.87,19.830000000000002,19.78,19.73,19.67,19.61,19.56,19.45,N/A,N/A +2012,3,8,5,30,101660,100480,99330,92.31,9.5,10.81,12.56,13.19,13.74,14.21,14.65,15.09,15.51,16.47,153.58,153.3,153.15,152.9,152.58,152.21,151.79,151.37,150.70000000000002,19.900000000000002,19.92,19.89,19.830000000000002,19.77,19.7,19.64,19.580000000000002,19.46,N/A,N/A +2012,3,8,6,30,101660,100480,99340,92.88,0,9.14,10.97,11.73,12.46,13.11,13.72,14.32,14.86,15.98,156.19,156.81,157.20000000000002,157.64000000000001,158.03,158.38,158.73,159.05,160.02,19.94,19.96,19.94,19.900000000000002,19.87,19.84,19.81,19.79,19.76,N/A,N/A +2012,3,8,7,30,101730,100540,99400,93.62,0,9.23,11.15,12.01,12.88,13.71,14.52,15.34,16.13,17.59,160.45000000000002,160.63,160.82,161.06,161.32,161.6,161.82,162.01,161.63,19.8,19.82,19.79,19.73,19.68,19.62,19.56,19.5,19.400000000000002,N/A,N/A +2012,3,8,8,30,101740,100550,99410,91.32000000000001,0,11,13.07,13.86,14.51,15.040000000000001,15.47,15.82,16.11,16.580000000000002,157.36,157.57,157.78,158.03,158.3,158.57,158.89000000000001,159.20000000000002,160.06,20.28,20.36,20.34,20.27,20.18,20.080000000000002,19.95,19.82,19.53,N/A,N/A +2012,3,8,9,30,101710,100530,99380,93.8,0,7.18,8.8,9.49,10.18,10.85,11.52,12.21,12.870000000000001,13.94,160.38,160.67000000000002,160.99,161.44,161.9,162.38,162.79,163.16,163.32,19.78,19.82,19.81,19.76,19.69,19.62,19.52,19.42,19.25,N/A,N/A +2012,3,8,10,30,101690,100510,99360,93.79,0,6.44,8.48,9.6,10.99,12.540000000000001,14.25,15.63,16.84,17.36,147.46,149.47,151,152.89000000000001,154.65,156.37,157.55,158.51,159.67000000000002,19.81,19.86,19.87,19.91,20.06,20.29,20.46,20.59,20.25,N/A,N/A +2012,3,8,11,30,101720,100540,99390,94.16,0,6.24,7.73,8.38,9.01,9.59,10.14,10.74,11.33,12.83,146.8,147.41,148.01,148.78,149.68,150.70000000000002,152.09,153.51,157.18,19.68,19.73,19.73,19.7,19.66,19.62,19.580000000000002,19.54,19.53,N/A,N/A +2012,3,8,12,30,101730,100540,99400,94.10000000000001,0,6.03,7.62,8.41,9.23,9.96,10.64,11.21,11.71,13.16,136.37,139.20000000000002,141.71,145.27,149.12,153.27,157.39000000000001,161.28,166.96,19.72,19.77,19.77,19.740000000000002,19.66,19.53,19.35,19.16,19.38,N/A,N/A +2012,3,8,13,30,101710,100530,99380,94.26,0,7.43,9.200000000000001,10.02,10.86,11.59,12.27,12.89,13.450000000000001,14.44,143.04,144.08,144.82,145.67000000000002,146.42000000000002,147.12,147.69,148.20000000000002,149.05,19.68,19.66,19.61,19.52,19.41,19.3,19.14,18.98,18.94,N/A,N/A +2012,3,8,14,30,101720,100540,99400,93.46000000000001,0,6.7,8.47,9.3,10.13,10.86,11.52,12.040000000000001,12.49,13.14,142.54,144.07,145.32,146.79,147.89000000000001,148.74,148.64000000000001,148.3,146.77,19.87,19.94,19.95,19.96,19.96,19.94,19.92,19.89,19.76,N/A,N/A +2012,3,8,15,30,101740,100560,99420,92.83,0,9.14,11.11,11.91,12.68,13.32,13.89,14.34,14.74,15.32,147.12,148.23,149.13,150.39000000000001,151.85,153.45000000000002,155.43,157.36,161.69,20.01,20.02,19.98,19.93,19.85,19.77,19.63,19.48,19.1,N/A,N/A +2012,3,8,16,30,101760,100580,99440,93.27,0,5.71,7.45,8.27,9.120000000000001,9.92,10.69,11.52,12.34,14.33,137.11,139.06,140.67000000000002,142.82,144.96,147.14000000000001,149.73,152.34,158.05,20.01,20.11,20.11,20.09,20.05,19.990000000000002,19.91,19.830000000000002,19.55,N/A,N/A +2012,3,8,17,30,101770,100590,99450,93.55,0,5.2700000000000005,6.8100000000000005,7.47,8.13,8.76,9.38,10.03,10.65,11.82,130.09,133.02,135.3,137.95000000000002,140.5,143,145.08,146.95000000000002,150.6,20,20.1,20.12,20.13,20.11,20.09,20.04,19.98,19.740000000000002,N/A,N/A +2012,3,8,18,30,101780,100600,99460,93.57000000000001,0,5.13,6.72,7.43,8.17,8.89,9.620000000000001,10.35,11.06,12.5,128.93,131.4,133.33,135.84,138.53,141.47,144.56,147.58,153.19,20.07,20.2,20.240000000000002,20.25,20.26,20.240000000000002,20.19,20.13,19.79,N/A,N/A +2012,3,8,19,30,101770,100590,99450,93.27,0,5.37,6.91,7.58,8.25,8.9,9.55,10.23,10.9,12.11,120.76,123.92,126.37,129.43,132.47,135.59,138.47,141.16,146.55,20.14,20.29,20.32,20.34,20.34,20.32,20.18,20.01,19.75,N/A,N/A +2012,3,8,20,30,101740,100560,99420,92.64,0,5.87,7.55,8.290000000000001,8.99,9.63,10.23,10.8,11.34,13.040000000000001,121.67,124.64,127.10000000000001,130.35,133.44,136.5,139.92000000000002,143.29,152.62,20.19,20.34,20.37,20.37,20.36,20.34,20.31,20.28,20.06,N/A,N/A +2012,3,8,21,30,101720,100540,99400,92.9,0,5.41,7.05,7.76,8.41,8.950000000000001,9.43,10.14,10.89,12.870000000000001,125.9,127.98,129.69,131.83,134.19,136.71,141.6,147.05,157.44,20.1,20.25,20.28,20.3,20.31,20.32,20.330000000000002,20.34,20.17,N/A,N/A +2012,3,8,22,30,101730,100550,99410,92.93,0,5.0200000000000005,6.8,7.58,8.31,8.83,9.200000000000001,10.120000000000001,11.22,11.82,115.84,118.72,120.85000000000001,123.37,125.83,128.25,141.06,157.12,161.8,20.09,20.28,20.330000000000002,20.37,20.38,20.39,20.42,20.46,20.330000000000002,N/A,N/A +2012,3,8,23,30,101730,100550,99410,92.34,0,5.94,7.69,8.370000000000001,8.96,9.78,10.790000000000001,12.33,14.05,14.22,118.44,122.27,125.42,129.85,136.78,145.82,152.86,159.39000000000001,165.53,20.16,20.35,20.41,20.46,20.48,20.48,20.42,20.35,20.27,N/A,N/A +2012,3,9,0,30,101770,100590,99450,93.35000000000001,0,4.64,6.640000000000001,7.66,8.69,9.38,9.83,9.97,10.02,10.5,113.85000000000001,120.77,126.86,135.71,142.95000000000002,148.86,155.18,161.04,162.5,19.97,20.23,20.31,20.37,20.400000000000002,20.400000000000002,20.42,20.44,20.25,N/A,N/A +2012,3,9,1,30,101800,100620,99480,93.45,0,4.1,6.82,8.14,8.8,8.94,8.76,9.38,10.19,10.81,108.83,126.98,137.49,140.89000000000001,145.57,150.68,159.86,169.91,172.91,20.01,20.41,20.490000000000002,20.42,20.35,20.31,20.2,20.09,19.85,N/A,N/A +2012,3,9,2,30,101830,100650,99500,93.67,0,4.15,6.7700000000000005,8.23,9.53,10.38,10.91,10.290000000000001,9.56,9.25,125.83,136.12,142.48,146,149.48,152.79,161.55,169.85,175.55,19.95,20.11,20.14,20.13,20.1,20.080000000000002,20.12,20.17,20.04,N/A,N/A +2012,3,9,3,30,101870,100690,99540,92.43,0,6.32,7.98,8.19,7.57,7.04,6.58,6.55,6.63,6.75,141.56,146.94,152.65,161.43,170.46,179.4,181.25,181.26,184.22,20.12,20.34,20.45,20.580000000000002,20.56,20.45,20.34,20.22,19.97,N/A,N/A +2012,3,9,4,30,101880,100690,99550,93.39,0,4.83,6.7700000000000005,7.03,6.390000000000001,6.04,5.83,5.61,5.42,5.14,151.12,160.56,166.91,172.08,175.14000000000001,177.1,179.76,182.26,188.16,19.95,20.17,20.3,20.46,20.45,20.330000000000002,20.22,20.13,19.88,N/A,N/A +2012,3,9,5,30,101920,100740,99600,95.75,0,2.54,3.68,4.03,4.29,4.47,4.59,4.6000000000000005,4.58,4.39,126.49000000000001,152.32,168.94,180.98,188.99,193.85,196.76,198.79,201.29,19.66,19.93,20.03,20.150000000000002,20.23,20.28,20.27,20.23,20,N/A,N/A +2012,3,9,6,30,101950,100760,99620,96.06,0,1.9000000000000001,2.58,2.67,2.65,2.62,2.58,2.54,2.49,2.4,179.13,187.81,193.84,200.09,205.73000000000002,210.88,215.32,219.13,225.42000000000002,19.7,19.82,19.87,20.01,20.07,20.080000000000002,20.02,19.94,19.69,N/A,N/A +2012,3,9,7,30,101990,100800,99660,96.63,0,1.62,2.0100000000000002,1.97,1.86,1.67,1.46,1.29,1.1500000000000001,1.1300000000000001,177.67000000000002,187.83,194.11,199.53,204.93,209.96,218.56,226.8,248.29,19.55,20.06,20.26,20.31,20.28,20.19,20.09,19.990000000000002,19.76,N/A,N/A +2012,3,9,8,30,102000,100810,99670,96.60000000000001,0,1.75,1.76,1.51,1.24,1.01,0.81,0.58,0.41000000000000003,0.16,155.47,160.53,160.81,156.91,150.65,143.74,132.46,123.97,47.480000000000004,19.580000000000002,20.1,20.3,20.35,20.31,20.21,20.080000000000002,19.95,19.67,N/A,N/A +2012,3,9,9,30,102030,100850,99700,97.33,0,0.93,1.08,1.07,1.1300000000000001,1.1500000000000001,1.16,1.11,1.06,1.06,195.05,220.67000000000002,236.64000000000001,253.84,267.71,279.07,290.06,299.6,313.33,19.39,19.47,19.490000000000002,19.57,19.6,19.61,19.56,19.51,19.3,N/A,N/A +2012,3,9,10,30,102020,100830,99680,98.04,0,0.81,0.74,0.5700000000000001,0.39,0.38,0.44,0.53,0.63,0.73,188.99,211.21,231.54,260.73,286.71,319.08,331.79,338.76,338.09000000000003,19.22,19.330000000000002,19.37,19.39,19.36,19.3,19.2,19.1,18.98,N/A,N/A +2012,3,9,11,30,102050,100860,99710,98.25,0,0.9400000000000001,0.8,0.56,0.33,0.36,0.6,0.8300000000000001,1.07,1.56,200.59,201.21,228.53,286.11,302.09000000000003,302.96,305.98,310.09000000000003,315.61,19.18,19.21,19.34,19.72,19.830000000000002,19.75,19.63,19.51,19.29,N/A,N/A +2012,3,9,12,30,102100,100890,99730,93.45,0,8.2,8.78,8.88,8.89,8.88,8.86,8.86,8.84,8.23,332.75,332.99,333.09000000000003,333.21,333.35,333.5,333.8,334.26,337.75,17.67,17.32,17.14,16.95,16.77,16.59,16.41,16.26,16.32,N/A,N/A +2012,3,9,13,30,102180,100970,99790,92.2,0.7000000000000001,10.22,10.98,11.11,11.120000000000001,11.09,11.06,11.01,10.97,10.74,6.7700000000000005,6.99,7.11,7.23,7.34,7.47,7.66,7.91,9.51,16.490000000000002,16.05,15.860000000000001,15.66,15.47,15.3,15.11,14.94,14.86,N/A,N/A +2012,3,9,14,30,102280,101060,99880,90.35000000000001,0.4,11.17,12.030000000000001,12.19,12.23,12.23,12.200000000000001,12.15,12.11,12.030000000000001,23.25,23.6,23.84,24.07,24.32,24.57,24.92,25.29,26.57,15.24,14.71,14.5,14.290000000000001,14.1,13.92,13.73,13.55,13.22,N/A,N/A +2012,3,9,15,30,102320,101110,99920,90.28,0,10.52,11.34,11.51,11.58,11.61,11.620000000000001,11.6,11.58,11.540000000000001,32.25,32.410000000000004,32.53,32.64,32.76,32.88,33.03,33.19,33.59,14.780000000000001,14.23,14,13.790000000000001,13.59,13.41,13.200000000000001,13.02,12.65,N/A,N/A +2012,3,9,16,30,102330,101110,99930,89.39,0,10.32,11.120000000000001,11.290000000000001,11.36,11.39,11.4,11.4,11.39,11.36,37.45,37.660000000000004,37.79,37.910000000000004,38.050000000000004,38.17,38.32,38.47,38.87,14.700000000000001,14.15,13.93,13.72,13.51,13.33,13.120000000000001,12.94,12.57,N/A,N/A +2012,3,9,17,30,102340,101120,99940,89.60000000000001,0.4,10.83,11.72,11.9,11.98,12.02,12.030000000000001,12.030000000000001,12.02,12,39.78,39.94,40.08,40.230000000000004,40.38,40.53,40.72,40.910000000000004,41.43,14.98,14.43,14.21,14,13.8,13.620000000000001,13.41,13.23,12.86,N/A,N/A +2012,3,9,18,30,102400,101180,99990,87.4,0,10.370000000000001,11.23,11.43,11.53,11.58,11.620000000000001,11.620000000000001,11.620000000000001,11.61,31.6,31.82,31.98,32.14,32.28,32.410000000000004,32.55,32.7,33,15.040000000000001,14.5,14.27,14.06,13.85,13.66,13.450000000000001,13.26,12.870000000000001,N/A,N/A +2012,3,9,19,30,102450,101230,100040,87.42,0,10.35,11.18,11.36,11.44,11.48,11.51,11.5,11.49,11.450000000000001,22.080000000000002,22.400000000000002,22.61,22.8,23,23.17,23.36,23.55,23.96,14.69,14.13,13.9,13.68,13.47,13.280000000000001,13.07,12.88,12.49,N/A,N/A +2012,3,9,20,30,102410,101190,100000,87.67,0,11.32,12.26,12.47,12.56,12.61,12.63,12.63,12.620000000000001,12.57,34.51,34.76,34.910000000000004,35.06,35.22,35.37,35.54,35.72,36.13,13.99,13.38,13.14,12.92,12.71,12.52,12.31,12.120000000000001,11.74,N/A,N/A +2012,3,9,21,30,102410,101180,99990,87.95,0,11.4,12.32,12.52,12.61,12.66,12.68,12.68,12.68,12.64,36.54,36.730000000000004,36.86,37,37.14,37.28,37.45,37.62,38.02,13.66,13.02,12.780000000000001,12.56,12.35,12.15,11.950000000000001,11.76,11.370000000000001,N/A,N/A +2012,3,9,22,30,102420,101200,100010,88.09,0,11.5,12.46,12.69,12.8,12.86,12.91,12.92,12.93,12.950000000000001,41,41.21,41.37,41.52,41.67,41.82,41.99,42.14,42.550000000000004,14.120000000000001,13.51,13.280000000000001,13.06,12.85,12.66,12.46,12.27,11.89,N/A,N/A +2012,3,9,23,30,102430,101210,100020,87.65,0,10.32,11.11,11.290000000000001,11.370000000000001,11.41,11.43,11.43,11.43,11.41,32.87,33.25,33.54,33.83,34.14,34.42,34.76,35.08,35.84,14.31,13.73,13.5,13.290000000000001,13.08,12.89,12.68,12.5,12.120000000000001,N/A,N/A +2012,3,10,0,30,102460,101230,100040,89.86,0,10.48,11.27,11.44,11.5,11.52,11.53,11.51,11.49,11.43,32.58,32.99,33.21,33.43,33.67,33.9,34.17,34.45,35.15,13.41,12.790000000000001,12.55,12.34,12.13,11.94,11.74,11.56,11.19,N/A,N/A +2012,3,10,1,30,102470,101240,100050,92.02,0.4,11.16,12.07,12.26,12.35,12.39,12.42,12.41,12.41,12.39,40.17,40.57,40.81,41.050000000000004,41.300000000000004,41.52,41.800000000000004,42.07,42.7,13.31,12.67,12.43,12.21,12,11.82,11.61,11.43,11.05,N/A,N/A +2012,3,10,2,30,102520,101290,100100,90.22,0,10.35,11.200000000000001,11.4,11.51,11.57,11.6,11.620000000000001,11.63,11.620000000000001,45.800000000000004,46.12,46.29,46.45,46.61,46.76,46.94,47.09,47.47,13.69,13.08,12.84,12.620000000000001,12.41,12.21,12.01,11.82,11.43,N/A,N/A +2012,3,10,3,30,102490,101270,100080,89.01,0,10.9,11.82,12.040000000000001,12.16,12.23,12.27,12.3,12.31,12.31,48.230000000000004,48.57,48.79,48.980000000000004,49.17,49.34,49.53,49.71,50.08,14.38,13.790000000000001,13.56,13.34,13.13,12.94,12.73,12.540000000000001,12.14,N/A,N/A +2012,3,10,4,30,102480,101250,100070,87.69,0,10.49,11.36,11.56,11.67,11.73,11.76,11.78,11.790000000000001,11.78,53.9,54.050000000000004,54.13,54.21,54.300000000000004,54.38,54.480000000000004,54.57,54.800000000000004,14.48,13.9,13.67,13.46,13.25,13.05,12.85,12.65,12.27,N/A,N/A +2012,3,10,5,30,102470,101250,100060,88.46000000000001,0,9.32,10.01,10.16,10.23,10.26,10.28,10.28,10.28,10.25,46.2,46.78,47.19,47.58,47.97,48.31,48.71,49.08,49.89,14.44,13.89,13.66,13.450000000000001,13.24,13.05,12.85,12.66,12.280000000000001,N/A,N/A +2012,3,10,6,30,102450,101230,100040,89.89,0,9.92,10.69,10.86,10.94,10.97,11,11,10.99,10.96,45.33,45.76,46.01,46.24,46.46,46.67,46.910000000000004,47.13,47.64,14.08,13.49,13.26,13.040000000000001,12.83,12.64,12.44,12.25,11.86,N/A,N/A +2012,3,10,7,30,102430,101210,100020,88.45,0,10.17,10.950000000000001,11.11,11.19,11.22,11.23,11.22,11.21,11.16,56.75,56.93,57.03,57.14,57.25,57.34,57.47,57.59,57.88,14.15,13.55,13.32,13.11,12.89,12.700000000000001,12.5,12.31,11.92,N/A,N/A +2012,3,10,8,30,102390,101160,99980,87.33,0,9.81,10.6,10.78,10.870000000000001,10.92,10.950000000000001,10.96,10.97,10.96,67.68,67.98,68.17,68.35000000000001,68.53,68.7,68.9,69.09,69.53,14.700000000000001,14.14,13.92,13.71,13.5,13.31,13.1,12.92,12.530000000000001,N/A,N/A +2012,3,10,9,30,102330,101110,99930,83.98,0,9.99,10.82,11,11.09,11.14,11.16,11.17,11.17,11.15,74.95,75.14,75.26,75.38,75.52,75.64,75.79,75.93,76.3,15.57,15.06,14.84,14.63,14.42,14.24,14.030000000000001,13.84,13.46,N/A,N/A +2012,3,10,10,30,102330,101120,99940,82.96000000000001,0,9.450000000000001,10.25,10.44,10.540000000000001,10.6,10.64,10.66,10.68,10.68,77.77,77.99,78.12,78.24,78.36,78.46000000000001,78.58,78.69,78.93,16.01,15.530000000000001,15.32,15.1,14.9,14.71,14.5,14.31,13.92,N/A,N/A +2012,3,10,11,30,102310,101100,99930,81.5,0,9.620000000000001,10.44,10.63,10.73,10.78,10.82,10.83,10.83,10.82,75.68,75.93,76.05,76.16,76.26,76.36,76.46000000000001,76.56,76.79,16.4,15.94,15.73,15.530000000000001,15.32,15.13,14.92,14.74,14.35,N/A,N/A +2012,3,10,12,30,102320,101110,99930,81.31,0,9.69,10.540000000000001,10.74,10.84,10.9,10.94,10.950000000000001,10.96,10.950000000000001,78.97,79.15,79.25,79.35000000000001,79.45,79.54,79.65,79.75,79.98,16.54,16.09,15.88,15.67,15.47,15.280000000000001,15.07,14.88,14.49,N/A,N/A +2012,3,10,13,30,102310,101100,99930,81.43,0,9.94,10.85,11.07,11.19,11.26,11.31,11.33,11.35,11.36,81.64,81.77,81.86,81.95,82.04,82.12,82.21000000000001,82.3,82.5,16.830000000000002,16.39,16.19,15.98,15.780000000000001,15.59,15.38,15.19,14.8,N/A,N/A +2012,3,10,14,30,102300,101100,99920,82.89,0,10.200000000000001,11.14,11.370000000000001,11.48,11.55,11.6,11.620000000000001,11.64,11.65,82.63,82.95,83.15,83.34,83.53,83.71000000000001,83.92,84.11,84.56,17.06,16.64,16.44,16.240000000000002,16.04,15.85,15.65,15.47,15.08,N/A,N/A +2012,3,10,15,30,102280,101080,99910,83.51,0,10.290000000000001,11.32,11.58,11.74,11.84,11.91,11.96,12,12.05,88.61,89.02,89.26,89.49,89.71000000000001,89.91,90.13,90.34,90.77,17.66,17.29,17.1,16.9,16.7,16.52,16.32,16.13,15.74,N/A,N/A +2012,3,10,16,30,102250,101050,99880,82.63,0,10.15,11.19,11.47,11.63,11.73,11.81,11.86,11.9,11.950000000000001,90.62,91,91.23,91.46000000000001,91.68,91.89,92.11,92.31,92.74,17.94,17.59,17.41,17.21,17.02,16.830000000000002,16.63,16.44,16.06,N/A,N/A +2012,3,10,17,30,102200,101000,99830,82.18,0,10.1,11.11,11.370000000000001,11.51,11.59,11.66,11.69,11.71,11.73,89.96000000000001,90.25,90.46000000000001,90.66,90.86,91.05,91.25,91.44,91.86,18.1,17.76,17.580000000000002,17.38,17.19,17,16.8,16.62,16.23,N/A,N/A +2012,3,10,18,30,102170,100970,99800,83.98,0,9.88,10.86,11.11,11.24,11.33,11.39,11.43,11.450000000000001,11.47,90.60000000000001,90.75,90.84,90.93,91.01,91.09,91.17,91.25,91.43,18.14,17.81,17.63,17.43,17.23,17.05,16.84,16.66,16.27,N/A,N/A +2012,3,10,19,30,102130,100930,99770,86.77,0,9.66,10.58,10.8,10.93,11,11.06,11.09,11.11,11.13,88.65,88.98,89.2,89.42,89.65,89.87,90.12,90.36,90.95,17.98,17.63,17.45,17.25,17.06,16.88,16.68,16.5,16.13,N/A,N/A +2012,3,10,20,30,102080,100880,99720,88.25,0,9.540000000000001,10.44,10.66,10.78,10.85,10.9,10.92,10.94,10.97,89.57000000000001,90,90.24,90.5,90.77,91.01,91.3,91.57000000000001,92.26,18.04,17.7,17.52,17.32,17.13,16.95,16.740000000000002,16.56,16.18,N/A,N/A +2012,3,10,21,30,102050,100850,99680,90.13,0,9.89,10.83,11.040000000000001,11.15,11.22,11.26,11.28,11.3,11.35,90.35000000000001,90.61,90.8,91.01,91.24,91.46000000000001,91.76,92.04,92.85000000000001,18.04,17.69,17.51,17.32,17.12,16.94,16.75,16.57,16.19,N/A,N/A +2012,3,10,22,30,102010,100810,99650,91.3,0,9.65,10.58,10.790000000000001,10.91,10.99,11.05,11.1,11.14,11.3,90.9,91.17,91.35000000000001,91.57000000000001,91.82000000000001,92.08,92.45,92.81,94.02,18.23,17.900000000000002,17.72,17.53,17.34,17.16,16.97,16.79,16.43,N/A,N/A +2012,3,10,23,30,101970,100780,99620,91.66,0,9.21,10.27,10.61,10.9,11.19,11.47,11.82,12.13,12.34,90.98,91.55,91.98,92.51,93.12,93.76,94.55,95.23,95.79,18.68,18.400000000000002,18.240000000000002,18.07,17.89,17.73,17.55,17.39,17.01,N/A,N/A +2012,3,11,0,30,101940,100750,99590,92.02,1.5,8.8,10.1,10.64,11.18,11.43,11.53,11.73,11.950000000000001,12.43,97.39,97.55,97.59,97.55,97.63,97.76,98.2,98.67,99.92,18.8,18.54,18.38,18.2,18.01,17.830000000000002,17.650000000000002,17.48,17.16,N/A,N/A +2012,3,11,1,30,101930,100740,99580,91.45,0,10.040000000000001,11.33,11.75,12.09,12.38,12.63,12.870000000000001,13.08,13.5,101.69,101.99000000000001,102.23,102.48,102.75,103.02,103.34,103.65,104.37,19.01,18.77,18.62,18.45,18.28,18.11,17.93,17.77,17.43,N/A,N/A +2012,3,11,2,30,101870,100680,99530,92.73,0.4,11.26,12.77,13.290000000000001,13.71,14.06,14.370000000000001,14.67,14.94,15.47,106.07000000000001,106.36,106.55,106.77,107,107.23,107.5,107.76,108.43,19.09,18.87,18.73,18.57,18.400000000000002,18.240000000000002,18.07,17.91,17.580000000000002,N/A,N/A +2012,3,11,3,30,101880,100690,99530,94.58,0.4,10.08,11.55,12.09,12.56,12.97,13.35,13.71,14.040000000000001,14.71,112.56,112.94,113.17,113.42,113.68,113.94,114.24000000000001,114.54,115.28,19.240000000000002,19.04,18.900000000000002,18.740000000000002,18.580000000000002,18.43,18.26,18.11,17.82,N/A,N/A +2012,3,11,4,30,101880,100690,99540,95.46000000000001,0,9.74,11.200000000000001,11.74,12.23,12.67,13.08,13.5,13.89,14.71,118.61,118.71000000000001,118.81,118.94,119.08,119.23,119.44,119.63,120.23,19.330000000000002,19.14,19.01,18.86,18.72,18.57,18.43,18.29,18.03,N/A,N/A +2012,3,11,5,30,101850,100660,99510,96.29,0,9.38,10.88,11.450000000000001,11.96,12.44,12.88,13.33,13.76,14.67,120.03,120.22,120.35000000000001,120.52,120.75,120.99000000000001,121.31,121.64,122.51,19.42,19.26,19.16,19.03,18.900000000000002,18.79,18.67,18.57,18.400000000000002,N/A,N/A +2012,3,11,6,30,101830,100640,99490,96.17,4.800000000000001,7.67,9,9.56,10.09,10.6,11.08,11.57,12.040000000000001,13.030000000000001,117.64,117.49000000000001,117.47,117.49000000000001,117.61,117.78,118.12,118.49000000000001,119.51,19.41,19.3,19.22,19.12,19,18.89,18.81,18.740000000000002,18.580000000000002,N/A,N/A +2012,3,11,7,30,101830,100640,99490,95.29,115,9.49,11.15,11.82,12.46,13.040000000000001,13.57,14.07,14.52,15.26,130.7,130.15,129.95,129.82,129.86,130.02,130.55,131.15,133.89000000000001,19.59,19.5,19.42,19.32,19.25,19.19,19.13,19.07,18.97,N/A,N/A +2012,3,11,8,30,101770,100580,99440,95.37,5.1000000000000005,8.22,9.86,10.6,11.370000000000001,12.16,12.97,13.81,14.620000000000001,16.05,125.52,127.23,128.58,130.49,132.69,135.09,137.69,140.21,145.06,19.580000000000002,19.55,19.53,19.53,19.54,19.57,19.6,19.63,19.72,N/A,N/A +2012,3,11,9,30,101750,100570,99420,93.56,0.4,8.96,10.71,11.44,12.15,12.86,13.58,14.35,15.09,16.54,140.19,140.12,140.16,140.25,140.44,140.71,141.09,141.48,142.15,19.95,19.96,19.93,19.89,19.84,19.8,19.77,19.75,19.77,N/A,N/A +2012,3,11,10,30,101740,100560,99420,93.77,11.700000000000001,8.61,10.28,10.94,11.56,12.120000000000001,12.64,13.16,13.65,14.66,134.74,134.9,135.15,135.53,135.92000000000002,136.31,136.72,137.12,138.24,19.92,19.92,19.88,19.830000000000002,19.78,19.72,19.650000000000002,19.59,19.44,N/A,N/A +2012,3,11,11,30,101740,100560,99410,93.59,1.8,7.640000000000001,9.59,10.51,11.48,12.39,13.25,14.07,14.83,16.18,112.38,117.65,121.09,124.51,127.41,129.98,132.35,134.54,138.76,19.96,19.990000000000002,19.97,19.93,19.89,19.85,19.8,19.76,19.66,N/A,N/A +2012,3,11,12,30,101730,100550,99410,93.22,0.7000000000000001,9.49,11.36,12.120000000000001,12.84,13.49,14.09,14.620000000000001,15.09,15.88,146.31,146.97,147.39000000000001,147.89000000000001,148.33,148.74,149.14000000000001,149.51,150.79,20.02,20.04,20.01,19.98,19.94,19.900000000000002,19.84,19.79,19.650000000000002,N/A,N/A +2012,3,11,13,30,101730,100550,99400,93.22,0.7000000000000001,10.040000000000001,12.01,12.81,13.620000000000001,14.370000000000001,15.07,15.790000000000001,16.48,17.92,151.04,151.77,152.22,152.79,153.4,154.02,154.77,155.5,157.36,20.03,20.04,20.01,19.97,19.92,19.87,19.81,19.77,19.69,N/A,N/A +2012,3,11,14,30,101810,100630,99480,93.14,0.4,7.92,9.77,10.59,11.43,12.200000000000001,12.94,13.61,14.23,15.34,160.26,160.32,160.36,160.5,160.77,161.13,161.65,162.19,163.89000000000001,20.07,20.1,20.09,20.080000000000002,20.06,20.05,20.03,20.01,19.91,N/A,N/A +2012,3,11,15,30,101830,100650,99500,92.97,31.900000000000002,7.68,9.450000000000001,10.21,10.86,11.41,11.91,12.38,12.81,13.64,167.54,167.89000000000001,168.04,167.94,167.8,167.63,167.45000000000002,167.27,166.81,20.13,20.31,20.35,20.34,20.3,20.25,20.18,20.12,19.97,N/A,N/A +2012,3,11,16,30,101810,100630,99480,92.59,4.4,8.02,9.91,10.83,11.77,12.57,13.280000000000001,13.89,14.44,15.42,159.84,161,161.87,163.14000000000001,164.44,165.82,167.03,168.12,168.9,20.2,20.31,20.34,20.36,20.36,20.35,20.31,20.27,20.22,N/A,N/A +2012,3,11,17,30,101820,100640,99490,92.64,0.7000000000000001,8.290000000000001,10.21,11.07,11.93,12.74,13.540000000000001,14.34,15.11,16.64,166.29,166.86,167.24,167.69,168.17000000000002,168.67000000000002,169.22,169.75,170.96,20.23,20.29,20.29,20.26,20.240000000000002,20.2,20.150000000000002,20.1,20.080000000000002,N/A,N/A +2012,3,11,18,30,101800,100620,99470,92.69,0,8.44,10.23,10.950000000000001,11.620000000000001,12.22,12.76,13.280000000000001,13.77,14.73,169.71,170.47,171.07,171.85,172.63,173.42000000000002,174.09,174.70000000000002,175.42000000000002,20.22,20.27,20.26,20.23,20.2,20.16,20.12,20.07,19.96,N/A,N/A +2012,3,11,19,30,101780,100600,99450,93.11,0,7.5200000000000005,9.31,10.1,10.9,11.65,12.36,13.040000000000001,13.68,14.71,174.22,173.71,173.51,173.46,173.57,173.78,174.12,174.46,175.27,20.19,20.23,20.22,20.21,20.21,20.23,20.23,20.23,20.150000000000002,N/A,N/A +2012,3,11,20,30,101760,100570,99420,97.97,6.6000000000000005,3.69,4.2700000000000005,4.48,4.72,4.88,4.98,5.09,5.19,5.54,243.11,240.21,237.46,233.64000000000001,228.64000000000001,223.16,217.35,211.92000000000002,201.29,19.16,19.080000000000002,19.06,19.06,19.080000000000002,19.12,19.12,19.12,19.080000000000002,N/A,N/A +2012,3,11,21,30,101760,100570,99420,96.46000000000001,73.60000000000001,5.41,6.73,7.390000000000001,8.03,8.43,8.69,8.9,9.08,9.44,226.72,225.56,224.98000000000002,224.44,223.74,223,222.06,221.13,218.70000000000002,19.17,19.21,19.26,19.34,19.36,19.35,19.32,19.28,19.19,N/A,N/A +2012,3,11,22,30,101720,100530,99390,96.86,30,3.16,4.43,5.23,6.19,6.86,7.33,7.84,8.34,9.28,183.5,184.52,185.76,186.58,186.72,186.39000000000001,185.71,184.97,183.48,19.1,19.3,19.51,19.85,20.080000000000002,20.240000000000002,20.36,20.47,20.53,N/A,N/A +2012,3,11,23,30,101730,100540,99390,96.87,2.2,4.13,5.09,5.59,6.18,6.6000000000000005,6.9,7.09,7.24,7.69,211.67000000000002,212.8,213.46,214.01,213.81,213.08,211.84,210.59,207.92000000000002,19.21,19.150000000000002,19.16,19.22,19.22,19.19,19.13,19.07,18.98,N/A,N/A +2012,3,12,0,30,101710,100520,99370,94.99,0,3.3000000000000003,4.23,4.74,5.38,5.96,6.48,6.73,6.9,7.23,218.78,221.18,222.92000000000002,225.07,225.84,225.68,223.99,222.09,217.20000000000002,19.07,18.97,18.94,18.97,19.03,19.09,19.06,19.01,18.89,N/A,N/A +2012,3,12,1,30,101750,100560,99410,94.02,0,2.71,3.7600000000000002,4.3,4.8500000000000005,5.28,5.63,6.03,6.42,7.29,205.55,208.48000000000002,209.89000000000001,210.58,209.51,207.26,204.8,202.4,198.55,19.12,19.16,19.21,19.29,19.35,19.400000000000002,19.46,19.51,19.59,N/A,N/A +2012,3,12,2,30,101750,100560,99410,93.96000000000001,0,3.7,4.57,5.01,5.54,5.9,6.15,6.45,6.74,7.42,202.12,205.82,207.77,209.08,208.43,206.81,204.68,202.63,199.11,19.07,19.04,19.080000000000002,19.150000000000002,19.16,19.13,19.12,19.12,19.12,N/A,N/A +2012,3,12,3,30,101760,100570,99430,94.2,0,3.23,3.92,4.23,4.57,4.83,5.0600000000000005,5.3500000000000005,5.64,6.36,184.12,188.89000000000001,192.41,196.67000000000002,198.58,199.13,198.07,196.76,195.75,19.04,18.94,18.94,19,19.02,19.01,19.07,19.14,19.25,N/A,N/A +2012,3,12,4,30,101760,100570,99420,95.18,0.4,3.45,4.16,4.67,5.53,6.11,6.49,6.83,7.140000000000001,7.7700000000000005,198.74,200.23000000000002,201.31,202.53,203.41,204.04,203.56,202.89000000000001,200.81,18.91,18.75,18.77,18.92,19.04,19.150000000000002,19.21,19.25,19.17,N/A,N/A +2012,3,12,5,30,101750,100560,99410,95.76,0,2.79,3.58,4.21,5.3500000000000005,6.0600000000000005,6.43,6.86,7.28,8.27,192.93,192.57,192.63,193.54,193.32,192.38,190.88,189.34,186.5,19.02,18.92,18.96,19.13,19.17,19.14,19.080000000000002,19.03,19.080000000000002,N/A,N/A +2012,3,12,6,30,101770,100580,99440,96.15,9.200000000000001,2.46,3.74,4.83,6.69,8.03,8.86,9.26,9.52,9.83,197.70000000000002,198.70000000000002,197.17000000000002,190.15,185.76,183.75,183.26,183.19,184.44,19.11,19.13,19.23,19.42,19.55,19.64,19.650000000000002,19.64,19.57,N/A,N/A +2012,3,12,7,30,101780,100590,99450,97.59,4.4,2.16,2.33,2.9,5.22,7.03,7.92,8.42,8.78,9.21,179.22,178.34,178.4,180.07,181.44,182.22,183.62,185.07,187.77,19.03,18.84,18.87,19.12,19.29,19.41,19.43,19.43,19.37,N/A,N/A +2012,3,12,8,30,101790,100610,99460,94.39,1.5,5.24,6.61,7.24,7.96,8.61,9.23,10,10.790000000000001,11.870000000000001,191.45000000000002,188.8,186.93,185.11,184.04,183.42000000000002,182.96,182.55,184.94,19.88,19.93,19.94,19.94,19.92,19.89,19.81,19.740000000000002,19.55,N/A,N/A +2012,3,12,9,30,101810,100620,99470,98.8,0.7000000000000001,2.5100000000000002,3.98,4.79,5.26,5.69,6.09,6.46,6.8,7.37,262,232.14000000000001,214.88,209.85,206.26,203.59,201.98000000000002,200.69,197.96,19,19.31,19.47,19.54,19.6,19.64,19.64,19.62,19.54,N/A,N/A +2012,3,12,10,30,101840,100650,99500,97.21000000000001,0,2.17,2.84,3.23,3.72,4.04,4.25,4.48,4.72,5.25,251.9,247.45000000000002,243.06,235.81,230.23000000000002,225.9,221.61,217.6,212.12,18.97,18.84,18.78,18.73,18.78,18.89,19.01,19.12,19.21,N/A,N/A +2012,3,12,11,30,101870,100680,99530,96.71000000000001,0,1.86,2.43,2.7800000000000002,3.27,3.62,3.85,4.11,4.36,4.97,241.11,240.36,239.33,237.39000000000001,234.43,230.87,227.14000000000001,223.61,217.76,18.97,18.81,18.75,18.7,18.7,18.72,18.76,18.79,18.900000000000002,N/A,N/A +2012,3,12,12,30,101900,100710,99560,97.62,0,0.75,1.32,1.6300000000000001,2.0100000000000002,2.38,2.74,3.09,3.42,4.09,216.52,226.68,231.9,231.86,230.17000000000002,227.28,224.73000000000002,222.34,218.76,18.94,18.830000000000002,18.82,18.88,18.95,19.04,19.07,19.1,19.06,N/A,N/A +2012,3,12,13,30,101930,100740,99590,97.61,0,0.5700000000000001,1.04,1.31,1.57,1.78,1.96,2.14,2.32,2.7600000000000002,242.95000000000002,252.15,257.65,259.22,256.92,252.05,246.56,241.18,231.81,18.97,18.82,18.77,18.75,18.76,18.79,18.82,18.830000000000002,18.830000000000002,N/A,N/A +2012,3,12,14,30,101990,100790,99640,96.75,0,1.6600000000000001,1.51,1.34,1.18,1.18,1.27,1.45,1.6600000000000001,2.13,142.94,150.96,158.32,169.13,179.71,190.98,196.48000000000002,200.68,202.85,19.05,18.94,18.92,18.95,18.97,18.990000000000002,18.97,18.94,18.85,N/A,N/A +2012,3,12,15,30,102000,100810,99660,97.11,0,1.62,1.7,1.75,2,2.2600000000000002,2.56,2.83,3.09,3.5700000000000003,146.08,162.20000000000002,170.41,177.58,181.37,183,183.94,184.70000000000002,186.14000000000001,19.18,19.26,19.330000000000002,19.42,19.46,19.46,19.41,19.34,19.18,N/A,N/A +2012,3,12,16,30,102020,100830,99680,98.01,0,1.68,1.69,1.68,1.82,2.02,2.25,2.5300000000000002,2.81,3.38,122.46000000000001,135.83,143.69,151.93,157.44,161.44,164.06,166.3,169.56,19.23,19.26,19.27,19.27,19.25,19.22,19.2,19.19,19.16,N/A,N/A +2012,3,12,17,30,102010,100830,99680,98.36,2.2,1.6500000000000001,2.48,2.8000000000000003,3.06,3.2800000000000002,3.47,3.66,3.83,4.24,150.61,157.65,162.81,167.8,171.65,174.71,177.49,180.02,184.68,19.54,19.6,19.62,19.61,19.59,19.580000000000002,19.56,19.55,19.52,N/A,N/A +2012,3,12,18,30,102020,100830,99690,95.51,0,4.41,5.64,6.0200000000000005,6.09,5.95,5.69,5.53,5.41,5.51,153.69,158.43,162.77,169.07,176.02,182.91,186.04,188.01,193.15,20.18,20.12,20.06,20,19.96,19.92,19.85,19.78,19.63,N/A,N/A +2012,3,12,19,30,102020,100830,99690,94.84,0,5.18,6.5,6.8500000000000005,6.87,6.76,6.57,6.47,6.390000000000001,6.28,161.22,165.71,169.44,174.35,178.07,180.97,182.52,183.62,186.04,20.19,20.16,20.12,20.07,20.04,20.02,19.91,19.78,19.580000000000002,N/A,N/A +2012,3,12,20,30,101990,100810,99660,95.39,0,3.54,5.1000000000000005,5.65,5.84,5.86,5.78,5.79,5.8100000000000005,6.03,173.98,175.28,177.54,182.09,185.21,187.33,188.71,189.79,191.18,20.22,20.18,20.14,20.13,20.080000000000002,20.01,19.900000000000002,19.78,19.56,N/A,N/A +2012,3,12,21,30,101970,100790,99640,95.34,0,3.5300000000000002,4.99,5.5200000000000005,5.7,5.73,5.64,5.64,5.66,5.87,169.21,173.85,177.52,181.86,184.98,187.20000000000002,188.39000000000001,189.20000000000002,189.95000000000002,20.26,20.1,20.04,20.150000000000002,20.16,20.11,20,19.88,19.64,N/A,N/A +2012,3,12,22,30,101950,100770,99620,94.97,0,3.5100000000000002,5.08,5.53,5.47,5.39,5.3,5.28,5.2700000000000005,5.38,158.76,166.79,172.32,177.32,180.21,181.78,182.14000000000001,182.14000000000001,182.04,20.35,20.45,20.38,20.150000000000002,20.03,19.98,19.98,19.990000000000002,19.88,N/A,N/A +2012,3,12,23,30,101940,100750,99610,94.89,0,3.9,5.29,5.73,5.8500000000000005,5.8500000000000005,5.8,5.82,5.86,5.89,156.24,162.75,167.41,172.33,175.36,177.18,177.87,178.21,179.28,20.06,20.18,20.17,20.080000000000002,20,19.93,19.87,19.8,19.76,N/A,N/A +2012,3,13,0,30,101930,100750,99600,94.62,0,4.8500000000000005,6.1000000000000005,6.4,6.38,6.28,6.15,6,5.87,5.94,153.85,160.13,164.79,169.99,172.95000000000002,174.53,174.76,174.70000000000002,175.73,19.92,19.98,19.95,19.84,19.75,19.67,19.75,19.85,19.81,N/A,N/A +2012,3,13,1,30,101950,100760,99620,95.98,0,3.18,5.04,5.73,5.78,5.8,5.78,5.69,5.6000000000000005,5.48,161.16,165.15,168.65,172.78,174.32,174.29,175.1,176.03,175.45000000000002,19.66,20.13,20.25,20.150000000000002,20.05,19.96,20.02,20.11,20.37,N/A,N/A +2012,3,13,2,30,101980,100800,99650,93.69,0,4.68,6.63,7.33,7.55,7.33,6.88,6.79,6.79,6.79,151.58,154.74,157.43,160.96,164.72,168.34,169.18,169.34,169.61,20.11,20.29,20.330000000000002,20.36,20.240000000000002,20.04,19.92,19.84,19.650000000000002,N/A,N/A +2012,3,13,3,30,101990,100810,99660,94,0,3.86,5.5600000000000005,6.41,7.33,7.7700000000000005,7.8500000000000005,7.8500000000000005,7.82,7.7,153.57,154.45000000000002,156.89000000000001,162.33,166,168.21,168.51,168.24,168.17000000000002,20.09,20.35,20.42,20.45,20.34,20.14,20.01,19.900000000000002,20.01,N/A,N/A +2012,3,13,4,30,102000,100810,99670,94.68,0.4,3.56,5.23,5.98,6.68,7.22,7.640000000000001,7.97,8.24,8.22,154.09,156.49,158.81,162.39000000000001,164.57,165.78,165.92000000000002,165.81,165.96,19.95,20.1,19.94,19.41,19.21,19.2,19.89,20.650000000000002,20.85,N/A,N/A +2012,3,13,5,30,102000,100810,99660,95.13,0.7000000000000001,5.18,6.57,7.24,8,8.64,9.200000000000001,9.56,9.83,9.870000000000001,168.61,168.04,168,168.62,169.66,170.93,172.06,173.05,172.49,19.73,19.71,19.62,19.43,19.22,18.990000000000002,19.03,19.13,19.830000000000002,N/A,N/A +2012,3,13,6,30,102020,100830,99680,97.29,0.4,3.58,4.72,5.26,5.8100000000000005,6.32,6.8100000000000005,7.2,7.53,7.9,166.4,166.54,167.41,169.48,173,177.5,180.77,183.52,183.07,19.81,19.82,19.79,19.68,19.51,19.3,19.6,20.01,20.36,N/A,N/A +2012,3,13,7,30,102050,100860,99710,97.33,0,3.38,4.76,5.45,6.05,6.61,7.13,7.42,7.63,7.74,166.94,167.26,166.33,163.63,163.21,164.12,166.69,169.42000000000002,171.92000000000002,19.82,19.72,19.650000000000002,19.57,19.44,19.28,19.12,18.98,19.52,N/A,N/A +2012,3,13,8,30,102040,100850,99700,97.68,0,5.98,6.99,7.3500000000000005,7.6000000000000005,7.71,7.73,7.61,7.49,7.67,174.55,174.65,174.99,175.82,177.5,179.65,181.52,183.02,181.20000000000002,19.72,19.6,19.51,19.38,19.26,19.150000000000002,19.11,19.080000000000002,18.990000000000002,N/A,N/A +2012,3,13,9,30,102050,100860,99700,97.32000000000001,0,4.97,5.98,6.3100000000000005,6.45,6.54,6.61,6.65,6.69,6.74,184.54,184.81,184.65,184.08,183.47,182.83,181.93,181.07,179.83,19.79,19.64,19.53,19.37,19.240000000000002,19.13,19.02,18.92,18.71,N/A,N/A +2012,3,13,10,30,102050,100860,99710,97.71000000000001,0.4,3.1,3.85,4.11,4.3100000000000005,4.84,5.63,6.22,6.73,6.94,164.95000000000002,170.38,173.41,175.68,177.29,178.59,178.59,178.25,176.89000000000001,19.73,19.63,19.56,19.47,19.36,19.25,19.13,19.03,18.87,N/A,N/A +2012,3,13,11,30,102060,100880,99730,96.63,0.4,4.34,6.13,6.92,7.46,7.68,7.68,7.61,7.5200000000000005,7.44,185.20000000000002,185.76,186.05,186.1,185.83,185.36,184.70000000000002,184.09,183.47,19.95,19.92,19.87,19.77,19.66,19.56,19.44,19.330000000000002,19.11,N/A,N/A +2012,3,13,12,30,102080,100890,99740,97.71000000000001,0.4,3.65,4.7700000000000005,5.22,5.5200000000000005,5.62,5.6000000000000005,5.53,5.46,5.37,160.25,164.87,168.13,171.6,173.86,175.33,176.41,177.3,179.01,19.55,19.6,19.66,19.75,19.79,19.8,19.77,19.73,19.54,N/A,N/A +2012,3,13,13,30,102090,100900,99750,99.23,0,2.9,3.52,3.81,3.99,4.14,4.2700000000000005,4.43,4.59,4.82,148.86,158.52,165.87,174.31,179.28,182.12,183.22,183.83,182.06,19.2,18.57,18.46,18.72,19.3,20.06,20.18,20.17,19.95,N/A,N/A +2012,3,13,14,30,102150,100960,99810,99.27,0,3.29,3.6,3.72,3.85,3.92,3.95,4.12,4.32,4.82,151.17000000000002,153.71,155.23,156.63,157.20000000000002,157.33,162.31,167.79,174.85,19.17,18.91,18.77,18.63,18.51,18.41,18.67,18.98,19.740000000000002,N/A,N/A +2012,3,13,15,30,102180,100990,99830,99.32000000000001,0,3.81,4.16,4.26,4.32,4.37,4.42,4.48,4.55,4.93,158.74,158.41,158.17000000000002,157.97,157.69,157.36,157.56,157.91,159.67000000000002,19.2,19.05,18.97,18.88,18.79,18.71,18.63,18.55,18.42,N/A,N/A +2012,3,13,16,30,102190,101000,99850,99.13,0,1.94,2.99,3.64,4.3,4.78,5.13,5.51,5.88,6.47,143.96,147.62,151.63,157.63,161.87,164.89000000000001,167.22,169.27,170.84,19.54,19.580000000000002,19.650000000000002,19.73,19.73,19.68,19.66,19.650000000000002,19.490000000000002,N/A,N/A +2012,3,13,17,30,102190,101000,99850,99.06,0,2.0100000000000002,2.64,2.93,3.23,3.5,3.75,3.99,4.21,4.65,107.55,135.59,150.12,157.43,161,161.94,161.91,161.70000000000002,162.56,19.79,19.69,19.68,19.69,19.69,19.69,19.66,19.62,19.62,N/A,N/A +2012,3,13,18,30,102190,101000,99850,98.96000000000001,0,2.68,3.48,3.8000000000000003,4,4.05,4.01,3.98,3.96,4.05,100.46000000000001,104.62,111.29,124.32000000000001,130.97,133.62,135.57,137.19,144.27,20.03,19.96,19.91,19.82,19.73,19.64,19.55,19.47,19.39,N/A,N/A +2012,3,13,19,30,102170,100990,99840,98.99000000000001,0,2.91,3.62,3.89,4.05,4.3,4.61,4.89,5.13,5.5600000000000005,100.66,103.32000000000001,110.66,127.10000000000001,136.6,141.91,143.72,144.58,146.08,20.25,20.06,19.97,19.88,20.06,20.39,20.46,20.47,20.35,N/A,N/A +2012,3,13,20,30,102140,100950,99810,99.24000000000001,0,4.1,4.41,4.49,4.5600000000000005,4.71,4.91,5.14,5.36,5.69,106.49000000000001,108.21000000000001,109.55,111.3,116.22,122.87,128.56,133.66,140.91,20.06,19.88,19.8,19.71,19.82,20.02,20.18,20.31,20.32,N/A,N/A +2012,3,13,21,30,102110,100920,99780,99.25,0,3.91,4.4,4.74,5.3500000000000005,5.7700000000000005,6.05,6.22,6.3500000000000005,6.5200000000000005,113.95,114.18,115.8,120.19,124.11,127.62,130.12,132.19,136.27,20.06,19.830000000000002,19.81,19.97,20.06,20.11,20.09,20.06,19.91,N/A,N/A +2012,3,13,22,30,102060,100880,99730,96.35000000000001,0,4.49,5.5600000000000005,5.96,6.34,6.76,7.22,7.6000000000000005,7.930000000000001,8.01,112.53,114.42,116.38,119.61,125.16,132.22,138.34,143.84,147.02,20.43,20.36,20.31,20.25,20.240000000000002,20.26,20.28,20.3,20.04,N/A,N/A +2012,3,13,23,30,102040,100860,99710,95.54,0,4.89,6.21,6.79,7.36,7.890000000000001,8.39,8.58,8.68,8.6,114.21000000000001,116.93,119.84,124.63000000000001,129.7,134.96,139.79,144.09,146.97,20.26,20.25,20.19,20.09,19.86,19.57,19.76,20.05,20.150000000000002,N/A,N/A +2012,3,14,0,30,102020,100830,99680,94.27,0,6.09,7.63,8.31,8.98,9.32,9.450000000000001,9.36,9.24,9.040000000000001,123.29,129.62,134.03,138.88,141.98,143.85,145.18,146.24,148.52,20.43,20.400000000000002,20.3,20.09,19.87,19.64,19.45,19.29,19.01,N/A,N/A +2012,3,14,1,30,102030,100840,99690,96.03,0,7.140000000000001,8.620000000000001,9.11,9.33,9.4,9.4,9.39,9.370000000000001,9.5,133.64000000000001,137.17000000000002,139.06,140.52,141.54,142.28,142.82,143.27,144.23,20.04,19.89,19.79,19.66,19.54,19.43,19.28,19.13,18.830000000000002,N/A,N/A +2012,3,14,2,30,102040,100850,99700,95.64,0,7.3100000000000005,8.81,9.370000000000001,9.77,10,10.120000000000001,10.07,9.98,9.74,128.44,131.5,133.62,136.1,138.64000000000001,141.12,143.77,146.19,150.35,20.12,20.02,19.92,19.78,19.62,19.47,19.330000000000002,19.21,18.95,N/A,N/A +2012,3,14,3,30,102040,100850,99700,97.31,0,5.34,6.29,6.67,7.0600000000000005,7.43,7.79,8.17,8.53,9.11,136.71,138.81,140.38,142.32,143.83,145.08,146.20000000000002,147.23,150.27,19.79,19.66,19.56,19.42,19.28,19.150000000000002,19.150000000000002,19.19,19.18,N/A,N/A +2012,3,14,4,30,102030,100850,99700,97.17,0,6,7.03,7.38,7.66,7.8500000000000005,7.99,8.21,8.44,9.63,132.37,134.33,135.9,138.01,140.37,142.75,145.24,147.52,148.98,19.81,19.72,19.67,19.62,19.55,19.48,19.35,19.22,18.92,N/A,N/A +2012,3,14,5,30,102020,100830,99670,98.31,0,5.23,6.3100000000000005,6.87,7.54,8.28,9.08,9.71,10.26,10.870000000000001,136.38,135.83,135.97,136.83,139.22,142.62,147.92000000000002,153.31,159.96,19.59,19.490000000000002,19.400000000000002,19.240000000000002,18.98,18.67,18.3,17.96,18.48,N/A,N/A +2012,3,14,6,30,102040,100850,99700,99.26,0,7.4,8.41,8.75,8.93,9.06,9.15,9.21,9.26,9.35,170.6,169.44,168.43,167.14000000000001,165.76,164.38,163.14000000000001,162.05,160.28,19.150000000000002,18.93,18.830000000000002,18.740000000000002,18.66,18.580000000000002,18.490000000000002,18.41,18.21,N/A,N/A +2012,3,14,7,30,102070,100880,99730,98.85000000000001,0,5.92,6.74,7.05,7.34,7.62,7.9,8.18,8.45,9.040000000000001,159.97,159.32,159.02,158.78,158.71,158.74,158.88,159.02,159.62,19.66,19.51,19.43,19.330000000000002,19.23,19.13,19.01,18.900000000000002,18.61,N/A,N/A +2012,3,14,8,30,102040,100850,99700,97.99000000000001,0,4.86,5.69,6.07,6.47,6.93,7.43,7.91,8.36,8.700000000000001,155.8,157.49,159.20000000000002,162,165.04,168.23,169.71,170.68,170.05,19.82,19.68,19.61,19.54,19.57,19.650000000000002,19.75,19.85,19.66,N/A,N/A +2012,3,14,9,30,102040,100850,99700,99.05,0.7000000000000001,4.26,5.13,5.73,6.71,7.32,7.65,7.76,7.8100000000000005,8.01,123.88000000000001,128.73,132.72,138.37,142.16,144.56,147,149.18,152.49,19.6,19.27,19.04,18.73,18.96,19.490000000000002,19.85,20.13,20.150000000000002,N/A,N/A +2012,3,14,10,30,102040,100850,99700,99.05,1.8,4.04,4.74,5.18,5.79,6.74,7.99,9.07,10.07,10.73,114.59,117.60000000000001,120.60000000000001,125.3,131.61,139.41,144.73,149.35,152.20000000000002,19.52,19.330000000000002,19.23,19.150000000000002,19.21,19.34,19.66,19.990000000000002,20.21,N/A,N/A +2012,3,14,11,30,102050,100860,99720,98.88,1.5,4.95,5.73,6.25,7.07,7.72,8.26,8.55,8.76,9,127.34,130.44,133.61,138.77,142.51,145.31,147.20000000000002,148.74,152.27,19.51,19.35,19.36,19.48,19.71,19.98,20.03,20.03,19.990000000000002,N/A,N/A +2012,3,14,12,30,102070,100880,99740,98.45,0,3.77,4.87,5.58,6.55,7.5200000000000005,8.5,8.9,9.13,9.31,121.88,125.24000000000001,128.1,132.09,137.23,143.19,146.11,148.12,152.07,19.73,19.6,19.62,19.77,19.93,20.11,20.09,20.05,19.85,N/A,N/A +2012,3,14,13,30,102110,100920,99770,97.71000000000001,0.4,4.72,5.7700000000000005,6.3500000000000005,7.140000000000001,7.95,8.790000000000001,9.07,9.22,9.25,114.15,117.47,121.62,129.16,136.58,143.91,146.49,147.83,149.45000000000002,19.88,19.8,19.8,19.87,20.03,20.23,20.18,20.09,19.93,N/A,N/A +2012,3,14,14,30,102160,100970,99820,96.65,0,4.38,5.8,6.55,7.43,8.16,8.78,9.040000000000001,9.200000000000001,9.49,140.8,143.18,145.38,148.61,152.29,156.13,158.38,160.09,162.11,20.16,20.11,20.06,19.990000000000002,20,20.04,20.330000000000002,20.64,20.62,N/A,N/A +2012,3,14,15,30,102170,100980,99830,96.99000000000001,0,4.66,5.87,6.46,7.12,7.38,7.38,7.390000000000001,7.390000000000001,7.5600000000000005,118.74000000000001,120.49000000000001,122.18,124.75,131.84,141.44,145.77,148.57,154.05,20.13,20.09,20.07,20.04,20.09,20.19,20.18,20.150000000000002,20.14,N/A,N/A +2012,3,14,16,30,102200,101010,99860,98.57000000000001,0,4.97,5.88,6.23,6.51,6.69,6.8100000000000005,6.88,6.93,7.1000000000000005,106.72,108.86,112.22,119,127.48,136.69,140.98,143.96,149.13,19.98,19.82,19.76,19.73,19.78,19.87,19.96,20.04,20.16,N/A,N/A +2012,3,14,17,30,102190,101000,99850,98.14,0,4.64,5.59,6.01,6.42,6.65,6.7700000000000005,6.8,6.8100000000000005,6.96,106.87,111.01,115.78,123.68,132.89000000000001,142.5,146.06,147.9,151.92000000000002,20.16,20.07,20.02,19.97,20.07,20.26,20.32,20.35,20.25,N/A,N/A +2012,3,14,18,30,102190,101000,99850,97.43,0,5.18,6.2,6.62,7.04,7.3100000000000005,7.48,7.21,6.88,6.58,110.4,112.49000000000001,115.16,119.88,127.77,137.36,141.13,143.16,146.47,20.39,20.29,20.21,20.09,20.12,20.240000000000002,20.42,20.6,20.650000000000002,N/A,N/A +2012,3,14,19,30,102190,101010,99860,96.45,0,5.88,7.09,7.6000000000000005,8.120000000000001,8.49,8.76,8.75,8.68,8.370000000000001,118.97,119.9,120.86,122.41,126.87,132.85,136.87,140.04,141.93,20.5,20.400000000000002,20.330000000000002,20.22,20.2,20.240000000000002,20.27,20.31,20.19,N/A,N/A +2012,3,14,20,30,102160,100970,99830,96.51,0,5.22,6.45,6.99,7.57,7.87,8,7.9,7.76,7.44,115.85000000000001,117.74000000000001,120.35000000000001,125.07000000000001,131.87,139.62,142.19,143.43,145.69,20.43,20.35,20.27,20.14,20.330000000000002,20.67,20.650000000000002,20.54,20.47,N/A,N/A +2012,3,14,21,30,102140,100950,99800,96.22,0,5.36,6.6000000000000005,7.140000000000001,7.68,8.2,8.71,8.85,8.89,8.57,113.66,115.12,116.72,119.4,124.18,130.36,135.7,140.32,140.94,20.37,20.29,20.2,20.03,20.1,20.31,20.47,20.62,20.46,N/A,N/A +2012,3,14,22,30,102110,100920,99780,95.19,0,5.89,7.3500000000000005,8,8.65,9.23,9.74,10.01,10.19,9.86,112.33,113.76,114.89,116.33,118.39,120.8,125.85000000000001,131.09,140.99,20.44,20.45,20.45,20.44,20.400000000000002,20.36,20.12,19.86,19.580000000000002,N/A,N/A +2012,3,14,23,30,102110,100930,99780,94.9,0,6.97,8.78,9.51,10.03,10.26,10.32,10.26,10.17,10.06,122.39,125.04,126.86,128.88,131.05,133.24,135.6,137.76,140.61,20.45,20.38,20.28,20.12,19.96,19.81,19.66,19.52,19.14,N/A,N/A +2012,3,15,0,30,102080,100890,99750,94.78,0,6.67,8.42,9.15,9.77,10.1,10.26,10.17,10.040000000000001,9.56,115.92,119.18,121.75,125.16,128.75,132.35,135.66,138.59,145.03,20.48,20.42,20.330000000000002,20.18,20.06,19.95,19.95,19.97,19.91,N/A,N/A +2012,3,15,1,30,102090,100900,99760,95.37,0,4.7,5.95,6.49,7.07,7.59,8.09,8.44,8.73,9.620000000000001,122.27,119.83,118.71000000000001,118.16,118.85000000000001,120.31,123.10000000000001,126.01,135.94,20.38,20.38,20.330000000000002,20.25,20.16,20.07,19.95,19.84,19.46,N/A,N/A +2012,3,15,2,30,102100,100920,99770,95.86,0,5.9,7.140000000000001,7.68,8.19,8.700000000000001,9.21,9.88,10.56,11.27,124.46000000000001,124.15,124,123.97,124.63000000000001,125.73,129.73,134.21,140.24,20.240000000000002,20.150000000000002,20.04,19.87,19.61,19.31,18.97,18.68,19.830000000000002,N/A,N/A +2012,3,15,3,30,102100,100910,99760,97.89,0.4,5.82,6.94,7.49,8.120000000000001,8.83,9.6,10.53,11.44,11.86,123.57000000000001,124.14,124.72,125.64,127.38000000000001,129.64000000000001,133.98,138.53,145.24,19.830000000000002,19.650000000000002,19.51,19.29,19.01,18.69,18.94,19.25,20.53,N/A,N/A +2012,3,15,4,30,102090,100900,99750,98.4,0,5.97,7.01,7.5,8.05,8.700000000000001,9.41,10.32,11.22,12.02,127.4,127.98,128.53,129.31,130.66,132.36,136.06,140.02,148.29,19.740000000000002,19.59,19.490000000000002,19.36,19.18,18.97,18.92,18.92,20.490000000000002,N/A,N/A +2012,3,15,5,30,102090,100900,99750,98.34,0,5.91,6.99,7.51,8.13,8.85,9.64,10.61,11.58,12.540000000000001,131.66,132.53,133.27,134.35,135.81,137.5,140.36,143.44,150.48,19.75,19.59,19.48,19.35,19.2,19.06,19.48,19.96,20.34,N/A,N/A +2012,3,15,6,30,102090,100900,99750,96.64,0,6.16,7.140000000000001,7.57,8.01,8.48,8.96,9.56,10.17,11.67,137.04,137.63,138.11,138.78,139.6,140.52,141.84,143.21,148.18,20.21,20.02,19.91,19.8,19.7,19.62,19.580000000000002,19.56,19.75,N/A,N/A +2012,3,15,7,30,102110,100920,99770,95.94,0,6.140000000000001,7.15,7.57,8,8.42,8.84,9.33,9.8,11.06,138.81,139.38,139.84,140.45000000000002,141.16,141.93,142.97,144.02,147.70000000000002,20.34,20.16,20.04,19.91,19.8,19.69,19.61,19.54,19.57,N/A,N/A +2012,3,15,8,30,102090,100910,99760,96.06,0,5.73,6.75,7.18,7.63,8.07,8.52,9.02,9.52,10.64,140.28,140.9,141.37,141.98,142.71,143.5,144.55,145.61,149.33,20.34,20.16,20.06,19.93,19.82,19.72,19.64,19.580000000000002,19.59,N/A,N/A +2012,3,15,9,30,102110,100920,99770,95.57000000000001,0,5.57,6.62,7.08,7.5600000000000005,8.03,8.51,9.040000000000001,9.56,10.8,143.71,144.34,144.86,145.57,146.41,147.35,148.55,149.73,153.33,20.41,20.26,20.16,20.06,19.97,19.89,19.830000000000002,19.78,19.82,N/A,N/A +2012,3,15,10,30,102120,100930,99780,95.54,0,5.2700000000000005,6.29,6.74,7.21,7.67,8.14,8.63,9.1,10.1,139.15,140.07,140.82,141.78,142.88,144.05,145.4,146.73,150.25,20.400000000000002,20.25,20.16,20.06,19.97,19.88,19.81,19.75,19.68,N/A,N/A +2012,3,15,11,30,102160,100970,99820,95.32000000000001,0,5.14,6.18,6.640000000000001,7.140000000000001,7.65,8.15,8.72,9.27,10.33,138.11,139.28,140.26,141.56,143.05,144.65,146.65,148.67000000000002,153.9,20.43,20.31,20.23,20.150000000000002,20.080000000000002,20.02,19.990000000000002,19.98,20.02,N/A,N/A +2012,3,15,12,30,102180,100990,99840,95.44,0,4.84,5.88,6.37,6.890000000000001,7.42,7.94,8.51,9.06,9.97,135.02,136.33,137.45000000000002,139,140.81,142.79,145.63,148.56,157.03,20.43,20.32,20.26,20.19,20.150000000000002,20.11,20.12,20.14,20.2,N/A,N/A +2012,3,15,13,30,102220,101030,99880,95.37,0,4.96,5.99,6.47,6.99,7.5,8.02,8.540000000000001,9.03,9.65,130.01,131.52,132.76,134.52,136.5,138.61,141.36,144.17000000000002,153.34,20.46,20.34,20.28,20.21,20.16,20.12,20.1,20.09,20.09,N/A,N/A +2012,3,15,14,30,102260,101080,99930,95.7,0,5.18,6.22,6.69,7.21,7.71,8.2,8.65,9.05,9.6,131.53,133.01,134.28,136.03,138.02,140.17000000000002,142.84,145.49,152.76,20.54,20.42,20.35,20.27,20.21,20.16,20.11,20.05,19.95,N/A,N/A +2012,3,15,15,30,102280,101090,99940,97.15,0,5.41,6.41,6.84,7.3100000000000005,7.7700000000000005,8.25,8.73,9.200000000000001,9.91,135.21,136.37,137.34,138.73,140.44,142.37,144.89000000000001,147.4,153.85,20.61,20.45,20.35,20.25,20.17,20.09,20.04,20,19.91,N/A,N/A +2012,3,15,16,30,102300,101110,99960,96.87,0,5.49,6.44,6.84,7.25,7.66,8.05,8.47,8.86,9.63,139.99,141.04,141.86,142.96,144.19,145.47,147,148.48,151.84,20.740000000000002,20.56,20.45,20.32,20.2,20.09,19.990000000000002,19.89,19.7,N/A,N/A +2012,3,15,17,30,102310,101120,99970,96.25,0,5.28,6.1000000000000005,6.45,6.82,7.21,7.6000000000000005,8.09,8.58,9.57,143.47,144.5,145.38,146.64000000000001,148.20000000000002,149.98,152.32,154.72,160.05,20.88,20.67,20.56,20.44,20.330000000000002,20.240000000000002,20.17,20.12,20.080000000000002,N/A,N/A +2012,3,15,18,30,102280,101100,99950,94.13,0,5.5,6.26,6.54,6.8100000000000005,7.08,7.34,7.63,7.91,8.66,142.95000000000002,143.55,144.07,144.81,145.74,146.78,148.21,149.63,153.9,21.080000000000002,20.87,20.740000000000002,20.6,20.47,20.34,20.22,20.12,19.97,N/A,N/A +2012,3,15,19,30,102270,101090,99940,94.87,0,5.11,5.79,6.04,6.29,6.5200000000000005,6.76,7.03,7.29,8.01,136.61,137.17000000000002,137.64000000000001,138.26,139.01,139.85,141.1,142.36,148.62,21.12,20.89,20.75,20.59,20.44,20.3,20.16,20.04,19.91,N/A,N/A +2012,3,15,20,30,102250,101060,99910,96.46000000000001,0,5.0200000000000005,5.76,6.04,6.32,6.58,6.84,7.13,7.4,7.94,128.55,129.54,130.32,131.35,132.55,133.89000000000001,135.94,138.06,147.33,21.13,20.91,20.78,20.63,20.490000000000002,20.35,20.23,20.13,20.09,N/A,N/A +2012,3,15,21,30,102200,101010,99870,97.66,0,5.01,5.92,6.3,6.67,7.0200000000000005,7.34,7.65,7.930000000000001,8.38,131.63,132.52,133.21,134.2,135.38,136.70000000000002,138.57,140.47,146.68,21.18,21,20.900000000000002,20.77,20.66,20.54,20.44,20.35,20.2,N/A,N/A +2012,3,15,22,30,102140,100950,99810,95.65,0,5.24,6.5200000000000005,7.05,7.53,7.930000000000001,8.290000000000001,8.59,8.85,9.22,142,143.28,144.13,145.08,145.94,146.73,147.5,148.20000000000002,150.31,21.17,21.1,21.03,20.93,20.81,20.68,20.53,20.38,19.93,N/A,N/A +2012,3,15,23,30,102130,100940,99790,95.53,0,5.45,6.96,7.67,8.370000000000001,8.88,9.25,9.44,9.56,9.6,147.34,151.59,154.37,157.21,158.76,159.39000000000001,159.21,158.81,158.56,20.92,20.900000000000002,20.8,20.56,20.29,19.990000000000002,19.830000000000002,19.71,19.61,N/A,N/A +2012,3,16,0,30,102080,100900,99750,96.67,0,3.96,5.15,5.69,6.23,6.72,7.19,7.66,8.11,8.41,142.73,144.51,145.83,147.34,149.13,151.1,153.68,156.28,158.92000000000002,20.67,20.64,20.61,20.57,20.52,20.46,20.36,20.27,19.96,N/A,N/A +2012,3,16,1,30,102090,100900,99750,97.44,0,4.21,5.13,5.48,5.8,6.19,6.640000000000001,7.16,7.69,8.07,143.71,143.55,143.51,143.52,144.34,145.74,147.71,149.75,151.52,20.490000000000002,20.42,20.37,20.31,20.27,20.22,20.150000000000002,20.09,19.91,N/A,N/A +2012,3,16,2,30,102100,100910,99760,97.64,0,4.8500000000000005,5.97,6.5,7.12,7.72,8.32,8.81,9.25,9.43,135.26,137.4,138.99,141,142.99,145,147.35,149.65,155.15,20.45,20.34,20.28,20.2,20.16,20.150000000000002,20.150000000000002,20.16,20.080000000000002,N/A,N/A +2012,3,16,3,30,102100,100910,99770,97.3,0,4.82,5.93,6.45,7,7.53,8.05,8.55,9.01,9.78,137.42000000000002,138.73,139.73,140.87,141.99,143.1,144.39000000000001,145.65,149.20000000000002,20.51,20.38,20.3,20.21,20.12,20.04,19.95,19.88,19.73,N/A,N/A +2012,3,16,4,30,102100,100910,99760,97.22,0,5.66,6.76,7.25,7.78,8.28,8.78,9.290000000000001,9.77,10.63,140.88,141.84,142.53,143.41,144.3,145.19,146.14000000000001,147.06,149.27,20.44,20.3,20.22,20.12,20.02,19.94,19.85,19.78,19.62,N/A,N/A +2012,3,16,5,30,102080,100890,99740,97,0,5.51,6.63,7.140000000000001,7.67,8.2,8.73,9.28,9.8,10.71,148.76,149.52,150.12,150.9,151.76,152.68,153.76,154.82,157.71,20.46,20.34,20.25,20.16,20.07,19.990000000000002,19.92,19.85,19.77,N/A,N/A +2012,3,16,6,30,102110,100930,99780,96.73,0,6,6.87,7.21,7.55,7.88,8.2,8.57,8.92,9.71,144.19,144.85,145.35,145.99,146.68,147.41,148.28,149.13,151.11,20.580000000000002,20.37,20.240000000000002,20.09,19.96,19.830000000000002,19.7,19.59,19.38,N/A,N/A +2012,3,16,7,30,102110,100930,99780,96.33,0,5.59,6.49,6.84,7.18,7.51,7.82,8.15,8.47,9.19,156.19,156.42000000000002,156.59,156.83,157.14000000000001,157.48,157.94,158.41,159.67000000000002,20.72,20.5,20.37,20.22,20.07,19.92,19.78,19.650000000000002,19.36,N/A,N/A +2012,3,16,8,30,102110,100930,99780,96.78,0,5.4,6.2,6.5,6.78,7.04,7.29,7.55,7.79,8.34,168.16,168.51,168.74,169.01,169.26,169.51,169.75,169.97,170.3,20.650000000000002,20.43,20.29,20.14,19.98,19.830000000000002,19.71,19.61,19.36,N/A,N/A +2012,3,16,9,30,102140,100950,99800,95.82000000000001,0,4.5,5.57,6.08,6.59,6.98,7.29,7.47,7.61,7.8500000000000005,163.24,164.88,166.03,167.17000000000002,167.99,168.61,168.83,168.94,167.3,20.79,20.59,20.45,20.26,20.06,19.86,19.650000000000002,19.46,19.1,N/A,N/A +2012,3,16,10,30,102130,100940,99790,96.75,0,3.81,4.62,4.98,5.42,5.98,6.61,7.2700000000000005,7.9,8.36,143.27,146.02,148.59,152.72,156.71,160.70000000000002,163.31,165.46,166.56,20.7,20.54,20.46,20.38,20.31,20.25,20.17,20.09,19.89,N/A,N/A +2012,3,16,11,30,102130,100950,99800,93.60000000000001,0,6.41,7.41,7.76,8.05,8.25,8.4,8.48,8.53,8.59,150.56,150.95000000000002,151.3,151.75,152.33,152.98,153.97,154.96,158.25,20.8,20.61,20.490000000000002,20.34,20.2,20.05,19.91,19.78,19.53,N/A,N/A +2012,3,16,12,30,102150,100970,99820,91.72,0,5.37,6.37,6.8100000000000005,7.26,7.67,8.05,8.38,8.68,8.96,148.18,149.05,149.63,150.19,150.63,151.01,151.57,152.12,154.54,20.89,20.77,20.7,20.6,20.51,20.42,20.32,20.22,20.04,N/A,N/A +2012,3,16,13,30,102160,100970,99820,93.28,0,4.63,5.54,5.95,6.390000000000001,6.8,7.18,7.42,7.62,7.74,138.22,139.92000000000002,141.23,142.8,144.17000000000002,145.41,146.66,147.83,151.8,20.76,20.63,20.55,20.47,20.38,20.28,20.150000000000002,20.02,19.740000000000002,N/A,N/A +2012,3,16,14,30,102190,101010,99860,95.51,0,5.6000000000000005,6.45,6.78,7.09,7.37,7.640000000000001,7.930000000000001,8.19,8.81,140.94,141.67000000000002,142.26,143.07,144.07,145.18,146.67000000000002,148.16,152.01,20.72,20.51,20.38,20.240000000000002,20.1,19.97,19.84,19.72,19.5,N/A,N/A +2012,3,16,15,30,102190,101000,99850,94.56,0,4.93,5.73,6.08,6.44,6.78,7.11,7.43,7.74,8.5,146.82,148.06,148.9,149.95000000000002,150.97,151.98,153.23,154.46,158.53,20.830000000000002,20.63,20.52,20.39,20.26,20.14,20.02,19.91,19.740000000000002,N/A,N/A +2012,3,16,16,30,102190,101000,99850,93.98,0,4.2700000000000005,4.86,5.12,5.39,5.68,6,6.41,6.84,8.05,156.16,157.37,158.31,159.53,160.91,162.4,164.09,165.76,168.41,20.96,20.740000000000002,20.62,20.48,20.36,20.25,20.16,20.080000000000002,19.93,N/A,N/A +2012,3,16,17,30,102180,100990,99840,94.84,0,4.7700000000000005,5.23,5.44,5.72,5.97,6.19,6.4,6.59,7,141.95000000000002,142.74,143.51,144.72,146.02,147.36,148.76,150.07,152.98,21.03,20.76,20.61,20.45,20.3,20.16,20,19.86,19.6,N/A,N/A +2012,3,16,18,30,102140,100960,99810,95.10000000000001,0,4.04,4.32,4.4,4.48,4.7700000000000005,5.19,5.42,5.59,5.86,140.23,141.09,141.8,142.82,145.5,149.33,151.46,153.02,155.87,21.13,20.830000000000002,20.67,20.490000000000002,20.35,20.22,20.07,19.93,19.62,N/A,N/A +2012,3,16,19,30,102140,100950,99800,93.59,0,4.68,5.04,5.12,5.17,5.22,5.28,5.51,5.76,6.3,137.18,137.67000000000002,138.05,138.52,139.16,139.9,141.99,144.29,148.96,21.36,21.07,20.900000000000002,20.71,20.53,20.35,20.18,20.03,19.740000000000002,N/A,N/A +2012,3,16,20,30,102080,100900,99750,95.43,0,4.93,5.33,5.42,5.48,5.57,5.68,6.01,6.4,6.74,134.3,134.77,135.12,135.59,136.27,137.09,140.05,143.49,146.44,21.34,21.05,20.89,20.7,20.52,20.35,20.2,20.07,19.76,N/A,N/A +2012,3,16,21,30,102040,100860,99710,96.04,0,4.84,5.42,5.61,5.78,5.92,6.0600000000000005,6.21,6.34,6.69,139.9,140.5,140.97,141.59,142.34,143.16,144.26,145.35,148.5,21.34,21.09,20.93,20.76,20.59,20.43,20.27,20.12,19.85,N/A,N/A +2012,3,16,22,30,102010,100820,99680,96.02,0,4.3500000000000005,5.08,5.36,5.61,5.82,6.0200000000000005,6.22,6.41,6.92,139.37,140.09,140.67000000000002,141.45000000000002,142.38,143.41,144.84,146.27,151.03,21.25,21.04,20.91,20.76,20.61,20.47,20.330000000000002,20.2,20,N/A,N/A +2012,3,16,23,30,101980,100800,99650,96.2,0,5.58,6.63,7.0200000000000005,7.36,7.640000000000001,7.87,8.05,8.21,8.44,137.25,137.93,138.42000000000002,138.97,139.54,140.12,140.77,141.38,142.89000000000001,21.12,20.96,20.85,20.71,20.57,20.43,20.27,20.13,19.82,N/A,N/A +2012,3,17,0,30,101960,100780,99630,96.56,0,4.93,5.91,6.29,6.63,6.92,7.18,7.42,7.640000000000001,8.08,140.51,141.6,142.44,143.49,144.56,145.62,146.66,147.62,148.96,21.02,20.89,20.8,20.68,20.56,20.43,20.28,20.14,19.78,N/A,N/A +2012,3,17,1,30,101960,100770,99630,97.52,0,4.58,5.54,5.97,6.43,6.86,7.26,7.63,7.97,8.49,137.54,138.58,139.35,140.29,141.35,142.46,143.9,145.33,150.31,20.73,20.56,20.46,20.35,20.240000000000002,20.14,20.03,19.93,19.69,N/A,N/A +2012,3,17,2,30,101950,100770,99620,97.72,0,5.2,6.140000000000001,6.54,6.96,7.36,7.74,8.11,8.47,9.02,138.31,139.21,139.98,140.98,142.07,143.21,144.54,145.84,150.5,20.69,20.51,20.41,20.29,20.18,20.07,19.98,19.900000000000002,19.77,N/A,N/A +2012,3,17,3,30,101950,100770,99620,96.97,0,5.82,6.8500000000000005,7.28,7.7,8.11,8.52,8.96,9.38,10.17,137.88,139.31,140.44,141.89000000000001,143.4,144.93,146.33,147.61,149.25,20.84,20.67,20.56,20.43,20.3,20.16,20,19.85,19.55,N/A,N/A +2012,3,17,4,30,101930,100740,99600,94.29,0,6.390000000000001,7.43,7.8,8.11,8.370000000000001,8.6,8.9,9.200000000000001,10.11,145.63,147.42000000000002,148.58,149.91,151.14000000000001,152.3,153.33,154.26,155.9,20.85,20.650000000000002,20.51,20.330000000000002,20.16,19.98,19.84,19.72,19.73,N/A,N/A +2012,3,17,5,30,101900,100720,99570,96.93,0,5.55,6.55,6.97,7.390000000000001,7.8,8.2,8.620000000000001,9.03,9.88,144.58,145.55,146.28,147.26,148.36,149.54,150.93,152.28,155.24,20.76,20.59,20.490000000000002,20.37,20.25,20.150000000000002,20.06,19.97,19.84,N/A,N/A +2012,3,17,6,30,101890,100710,99560,96.44,0,6.32,7.3500000000000005,7.76,8.15,8.52,8.88,9.24,9.57,10.26,150.97,151.37,151.67000000000002,152.03,152.45000000000002,152.9,153.48,154.05,155.71,20.830000000000002,20.63,20.51,20.37,20.240000000000002,20.1,19.97,19.84,19.59,N/A,N/A +2012,3,17,7,30,101910,100730,99580,96.92,0,5.46,6.42,6.82,7.22,7.61,7.97,8.35,8.71,9.42,149.78,150.29,150.73,151.3,151.93,152.6,153.38,154.13,155.73,20.81,20.62,20.51,20.38,20.25,20.13,20.01,19.900000000000002,19.68,N/A,N/A +2012,3,17,8,30,101900,100720,99580,93.51,0,7.62,8.72,9.11,9.47,9.790000000000001,10.09,10.38,10.65,11.26,161.22,159.31,158.02,156.41,154.82,153.28,151.81,150.48,148.56,20.97,20.78,20.650000000000002,20.5,20.35,20.2,20.04,19.89,19.580000000000002,N/A,N/A +2012,3,17,9,30,101890,100710,99560,95.83,0,5.47,6.62,7.17,7.79,8.51,9.28,10.11,10.92,11.8,147.23,149.86,151.87,154.48,157.04,159.62,161.61,163.36,164.26,21.01,20.87,20.78,20.67,20.55,20.43,20.29,20.16,19.87,N/A,N/A +2012,3,17,10,30,101890,100710,99570,95.88,0,5.47,6.59,7.05,7.5,7.9,8.290000000000001,8.69,9.06,9.84,149.07,149.91,150.58,151.45000000000002,152.38,153.35,154.31,155.20000000000002,156.51,20.98,20.85,20.76,20.66,20.57,20.48,20.38,20.29,20.1,N/A,N/A +2012,3,17,11,30,101940,100760,99610,96.55,0,4.61,5.59,6.01,6.42,6.8,7.15,7.53,7.890000000000001,8.64,141.75,142.69,143.45000000000002,144.39000000000001,145.47,146.63,148.20000000000002,149.79,153.66,20.88,20.72,20.62,20.5,20.38,20.27,20.16,20.06,19.85,N/A,N/A +2012,3,17,12,30,101930,100750,99610,97.34,0,5.08,6.04,6.47,6.92,7.3500000000000005,7.78,8.23,8.65,9.46,130.38,132.54,134.17000000000002,136.2,138.26,140.36,142.3,144.1,147.94,20.93,20.77,20.67,20.55,20.400000000000002,20.25,20.080000000000002,19.93,19.52,N/A,N/A +2012,3,17,13,30,101960,100770,99630,97.11,0,5.3,6.38,6.8500000000000005,7.34,7.74,8.08,8.2,8.27,8.27,132.95,135.48,137.34,139.62,141.41,142.9,145.42000000000002,147.98,159.1,21,20.830000000000002,20.71,20.55,20.37,20.18,20,19.84,19.830000000000002,N/A,N/A +2012,3,17,14,30,101980,100790,99650,97.17,0,4.67,5.66,6.1000000000000005,6.57,6.98,7.3500000000000005,7.7,8.040000000000001,8.77,126.3,128.44,130.07,132.04,134,135.98,138.28,140.56,147.13,20.94,20.81,20.740000000000002,20.650000000000002,20.54,20.43,20.31,20.2,19.98,N/A,N/A +2012,3,17,15,30,101990,100800,99660,94.63,0,6.07,7.04,7.43,7.7700000000000005,8.05,8.3,8.47,8.620000000000001,8.74,147.81,148.73,149.28,149.86,150.37,150.82,151.31,151.78,153.37,21,20.82,20.71,20.57,20.43,20.3,20.14,20,19.86,N/A,N/A +2012,3,17,16,30,102000,100820,99670,96.83,0,3.8200000000000003,4.68,5.13,5.65,6.15,6.63,7.03,7.38,7.5,129.53,132.28,134.08,135.86,137.28,138.48,140.35,142.29,147.24,21.05,20.87,20.78,20.68,20.6,20.53,20.48,20.43,20.34,N/A,N/A +2012,3,17,17,30,101970,100780,99640,96.17,0,4.66,5.2700000000000005,5.51,5.7700000000000005,6.03,6.3100000000000005,6.59,6.86,7.12,131.52,132.31,133,133.94,135.19,136.63,139.06,141.55,148.34,21.2,20.96,20.82,20.68,20.55,20.43,20.330000000000002,20.240000000000002,20.12,N/A,N/A +2012,3,17,18,30,101960,100780,99640,96.23,0,4.03,4.74,5.05,5.34,5.59,5.8100000000000005,6.03,6.24,6.69,134.37,135.81,136.78,137.89000000000001,139.02,140.16,141.41,142.61,145.05,21.38,21.13,21,20.85,20.69,20.54,20.38,20.240000000000002,20,N/A,N/A +2012,3,17,19,30,101950,100770,99630,95.98,0,4.54,5.15,5.38,5.58,5.7700000000000005,5.94,6.13,6.3100000000000005,6.66,133.94,135.42000000000002,136.33,137.17000000000002,137.9,138.55,139.22,139.85,141.84,21.7,21.43,21.28,21.11,20.95,20.78,20.63,20.490000000000002,20.240000000000002,N/A,N/A +2012,3,17,20,30,101910,100730,99590,97.43,0,4.57,5.26,5.55,5.83,6.09,6.34,6.57,6.7700000000000005,7.04,122.98,124.13000000000001,125.01,126.19,127.68,129.38,131.27,133.12,136.84,21.73,21.47,21.330000000000002,21.17,21.03,20.92,20.81,20.7,20.42,N/A,N/A +2012,3,17,21,30,101860,100680,99540,97.51,0,4.75,5.54,5.84,6.11,6.37,6.6000000000000005,6.8500000000000005,7.07,7.66,126.74000000000001,127.2,127.63000000000001,128.19,128.86,129.6,130.68,131.76,136.67000000000002,21.68,21.47,21.34,21.18,21.06,20.95,20.85,20.75,20.56,N/A,N/A +2012,3,17,22,30,101850,100670,99530,96.82000000000001,0,4.13,5.11,5.48,5.8100000000000005,6.09,6.34,6.55,6.74,7.04,113.17,115.9,117.99000000000001,120.53,123.27,126.15,129.91,133.65,147.78,21.57,21.47,21.39,21.28,21.16,21.03,20.84,20.650000000000002,20.19,N/A,N/A +2012,3,17,23,30,101820,100640,99500,96.63,0,4.59,5.75,6.25,6.74,7.16,7.53,7.79,8,8.31,121.5,124.07000000000001,126.38000000000001,129.68,132.97,136.3,138.87,141.05,144.22,21.28,21.22,21.18,21.12,21.02,20.89,20.78,20.67,20.84,N/A,N/A +2012,3,18,0,30,101790,100620,99480,95.18,0.7000000000000001,4.37,5.53,5.9,6.13,6.38,6.65,6.8500000000000005,7.0200000000000005,7.390000000000001,136.2,139.18,141.07,142.53,144.47,146.75,149.04,151.15,153.96,21.51,21.72,21.73,21.59,21.46,21.34,21.2,21.07,20.72,N/A,N/A +2012,3,18,1,30,101770,100590,99450,95.79,0,6.51,7.9,8.46,8.98,9.46,9.9,10.35,10.77,11.66,140.98,141.56,142.01,142.63,143.41,144.29,145.70000000000002,147.16,151.07,21.32,21.240000000000002,21.18,21.09,21.01,20.94,20.84,20.75,20.44,N/A,N/A +2012,3,18,2,30,101790,100610,99470,96.03,0,6.63,7.98,8.55,9.11,9.63,10.120000000000001,10.64,11.120000000000001,11.96,133.42000000000002,134.51,135.25,135.97,136.58,137.11,138.12,139.22,142.75,21.26,21.18,21.13,21.07,21,20.94,20.85,20.75,20.42,N/A,N/A +2012,3,18,3,30,101790,100610,99470,96.15,0,6.3500000000000005,7.79,8.44,9.1,9.700000000000001,10.24,10.73,11.17,11.86,128.3,129.6,130.53,131.65,132.76,133.85,135.02,136.14000000000001,138.64000000000001,21.240000000000002,21.16,21.1,21.03,20.95,20.88,20.8,20.72,20.53,N/A,N/A +2012,3,18,4,30,101770,100590,99450,95.88,0,6.84,8.24,8.84,9.43,9.98,10.49,10.99,11.46,12.41,134.2,134.76,135.17000000000002,135.71,136.33,136.99,137.8,138.6,140.64000000000001,21.29,21.19,21.12,21.02,20.93,20.84,20.740000000000002,20.650000000000002,20.47,N/A,N/A +2012,3,18,5,30,101760,100590,99450,95.39,0,8.13,9.620000000000001,10.22,10.790000000000001,11.32,11.82,12.31,12.780000000000001,13.700000000000001,136.55,137.39000000000001,138.04,138.87,139.77,140.70000000000002,141.69,142.63,144.44,21.39,21.3,21.23,21.14,21.06,20.97,20.88,20.8,20.62,N/A,N/A +2012,3,18,6,30,101780,100600,99460,97.98,0,7.28,8.46,8.98,9.49,9.97,10.450000000000001,10.91,11.33,12.14,149.42000000000002,149.63,149.84,150.19,150.68,151.25,152.05,152.85,155,21.19,21.02,20.94,20.88,20.81,20.73,20.67,20.62,20.55,N/A,N/A +2012,3,18,7,30,101780,100600,99460,96.61,17.6,6.7,7.95,8.46,8.950000000000001,9.44,9.92,10.44,10.94,11.97,146.83,146.88,146.91,146.94,146.99,147.05,147.22,147.4,148.11,21.47,21.32,21.23,21.11,21,20.89,20.77,20.67,20.45,N/A,N/A +2012,3,18,8,30,101760,100580,99440,95.86,0.4,7.47,8.81,9.33,9.8,10.23,10.64,11.040000000000001,11.42,12.16,152.8,152.98,153.17000000000002,153.42000000000002,153.71,154.01,154.37,154.72,155.57,21.54,21.42,21.32,21.2,21.080000000000002,20.96,20.830000000000002,20.71,20.43,N/A,N/A +2012,3,18,9,30,101760,100580,99440,95.47,0,7.16,8.45,8.96,9.44,9.870000000000001,10.28,10.700000000000001,11.09,11.97,152.39000000000001,152.4,152.49,152.73,153.1,153.56,154.24,154.92000000000002,156.85,21.55,21.43,21.330000000000002,21.22,21.1,20.98,20.86,20.740000000000002,20.5,N/A,N/A +2012,3,18,10,30,101770,100590,99450,96.85000000000001,0,6.2700000000000005,7.4,7.86,8.31,8.74,9.17,9.64,10.1,11.05,145.82,146.8,147.61,148.71,149.95000000000002,151.28,152.73,154.14000000000001,156.81,21.35,21.21,21.11,21,20.88,20.78,20.67,20.57,20.35,N/A,N/A +2012,3,18,11,30,101750,100570,99430,96.49000000000001,0,6.83,8.09,8.6,9.1,9.58,10.05,10.58,11.09,12.24,149.8,150.75,151.55,152.6,153.85,155.22,156.94,158.65,162.04,21.43,21.29,21.21,21.1,21,20.91,20.81,20.73,20.55,N/A,N/A +2012,3,18,12,30,101770,100600,99460,95.38,0,7.45,8.86,9.46,10.08,10.67,11.26,11.85,12.41,13.44,150.34,151.15,151.72,152.41,153.07,153.69,154.21,154.67000000000002,155.39000000000001,21.52,21.41,21.32,21.22,21.13,21.03,20.92,20.82,20.6,N/A,N/A +2012,3,18,13,30,101790,100610,99470,96.61,0,6.87,8.09,8.56,9.01,9.42,9.8,10.18,10.540000000000001,11.42,138.79,139.66,140.3,141.11,142,142.94,144.07,145.16,147.72,21.43,21.29,21.19,21.07,20.96,20.84,20.71,20.6,20.37,N/A,N/A +2012,3,18,14,30,101830,100650,99510,96.44,0,7.13,8.39,8.89,9.370000000000001,9.81,10.23,10.65,11.05,11.84,144.53,145.3,145.9,146.69,147.56,148.46,149.44,150.38,152.24,21.490000000000002,21.36,21.26,21.150000000000002,21.04,20.94,20.830000000000002,20.73,20.51,N/A,N/A +2012,3,18,15,30,101840,100660,99520,95.42,0,7.34,8.71,9.26,9.8,10.290000000000001,10.75,11.22,11.67,12.6,143.3,144.09,144.70000000000002,145.43,146.16,146.88,147.67000000000002,148.42000000000002,150.26,21.7,21.59,21.51,21.400000000000002,21.3,21.19,21.07,20.96,20.71,N/A,N/A +2012,3,18,16,30,101860,100680,99540,95.72,0,7.36,8.67,9.18,9.66,10.1,10.51,10.93,11.32,12.15,141.44,142,142.46,143.01,143.62,144.25,145.01,145.73,147.66,21.73,21.61,21.52,21.400000000000002,21.28,21.17,21.05,20.93,20.7,N/A,N/A +2012,3,18,17,30,101860,100680,99540,95.88,0,6.91,8.2,8.73,9.24,9.71,10.15,10.58,10.99,11.88,141.45000000000002,142.26,142.83,143.55,144.31,145.1,146.02,146.92000000000002,149.27,21.76,21.63,21.54,21.43,21.32,21.2,21.080000000000002,20.97,20.75,N/A,N/A +2012,3,18,18,30,101840,100670,99530,95.66,0,7.37,8.67,9.18,9.66,10.08,10.48,10.86,11.22,11.9,138.71,139.27,139.72,140.27,140.86,141.47,142.19,142.9,144.79,21.84,21.71,21.62,21.5,21.39,21.27,21.150000000000002,21.04,20.81,N/A,N/A +2012,3,18,19,30,101830,100650,99520,96.03,0,7.75,9.13,9.67,10.19,10.66,11.11,11.57,11.99,12.86,132.05,132.89000000000001,133.55,134.41,135.38,136.42000000000002,137.66,138.88,141.74,21.85,21.73,21.650000000000002,21.54,21.44,21.34,21.240000000000002,21.150000000000002,20.96,N/A,N/A +2012,3,18,20,30,101790,100610,99470,95.99000000000001,0,7.9,9.31,9.86,10.370000000000001,10.84,11.27,11.68,12.040000000000001,12.68,131.18,131.76,132.22,132.81,133.46,134.17000000000002,134.98,135.76,137.58,21.79,21.68,21.59,21.48,21.37,21.27,21.150000000000002,21.05,20.81,N/A,N/A +2012,3,18,21,30,101740,100560,99420,95.67,0,8.19,9.66,10.24,10.78,11.27,11.74,12.18,12.58,13.32,131.66,132.26,132.71,133.3,133.96,134.68,135.54,136.37,138.61,21.75,21.650000000000002,21.56,21.46,21.36,21.26,21.150000000000002,21.05,20.85,N/A,N/A +2012,3,18,22,30,101700,100520,99380,95.45,0,8.82,10.36,10.96,11.540000000000001,12.06,12.540000000000001,13.01,13.44,14.280000000000001,135.66,136.09,136.42000000000002,136.87,137.38,137.94,138.67000000000002,139.39000000000001,141.37,21.72,21.62,21.54,21.43,21.330000000000002,21.22,21.11,21.02,20.830000000000002,N/A,N/A +2012,3,18,23,30,101640,100460,99320,95.55,0,9.13,10.67,11.26,11.83,12.34,12.81,13.290000000000001,13.73,14.63,134.95,135.35,135.67000000000002,136.11,136.62,137.18,137.93,138.68,140.91,21.67,21.56,21.48,21.37,21.27,21.17,21.080000000000002,20.990000000000002,20.85,N/A,N/A +2012,3,19,0,30,101570,100400,99260,95.51,0,9.63,11.21,11.82,12.370000000000001,12.88,13.36,13.86,14.33,15.34,137.38,137.71,137.97,138.33,138.76,139.24,139.88,140.52,142.07,21.650000000000002,21.54,21.45,21.34,21.240000000000002,21.14,21.04,20.96,20.8,N/A,N/A +2012,3,19,1,30,101550,100380,99240,95.27,0,9.71,11.31,11.93,12.49,13.01,13.49,13.96,14.4,15.33,139.82,140.16,140.43,140.78,141.17000000000002,141.6,142.15,142.68,144.27,21.63,21.51,21.42,21.3,21.19,21.07,20.96,20.86,20.69,N/A,N/A +2012,3,19,2,30,101550,100380,99240,93.96000000000001,0,9.89,11.55,12.17,12.76,13.31,13.82,14.35,14.84,15.83,142.96,143.38,143.71,144.09,144.48,144.86,145.27,145.64000000000001,146.46,21.67,21.57,21.490000000000002,21.38,21.28,21.18,21.07,20.98,20.79,N/A,N/A +2012,3,19,3,30,101570,100390,99250,92.66,0,9.71,11.38,12,12.57,13.1,13.59,14.08,14.530000000000001,15.48,146.04,146.17000000000002,146.33,146.51,146.70000000000002,146.9,147.15,147.39000000000001,148.16,21.740000000000002,21.650000000000002,21.56,21.45,21.34,21.240000000000002,21.12,21.02,20.81,N/A,N/A +2012,3,19,4,30,101510,100340,99200,92.14,0,9.540000000000001,11.15,11.76,12.33,12.870000000000001,13.39,13.94,14.47,15.610000000000001,144.46,145.14000000000001,145.62,146.19,146.74,147.29,147.8,148.27,148.84,21.72,21.64,21.57,21.48,21.39,21.3,21.22,21.14,20.94,N/A,N/A +2012,3,19,5,30,101510,100340,99200,90.75,0,9.92,11.55,12.16,12.700000000000001,13.200000000000001,13.66,14.13,14.58,15.52,149.72,149.9,150.02,150.21,150.45000000000002,150.73,151.08,151.43,152.17000000000002,21.81,21.72,21.64,21.53,21.42,21.32,21.2,21.09,20.84,N/A,N/A +2012,3,19,6,30,101500,100320,99190,90.74,0,10.200000000000001,11.89,12.51,13.09,13.61,14.09,14.56,14.98,15.84,147.8,148.11,148.33,148.58,148.84,149.1,149.37,149.63,150.20000000000002,21.73,21.64,21.55,21.44,21.32,21.2,21.07,20.95,20.68,N/A,N/A +2012,3,19,7,30,101500,100320,99190,91.88,0,10.51,12.24,12.86,13.43,13.93,14.39,14.84,15.25,16.04,151.37,151.87,152.17000000000002,152.52,152.88,153.24,153.63,154.01,154.78,21.740000000000002,21.650000000000002,21.55,21.44,21.32,21.2,21.07,20.94,20.67,N/A,N/A +2012,3,19,8,30,101440,100260,99130,93.61,0,10.35,12.02,12.64,13.200000000000001,13.700000000000001,14.15,14.620000000000001,15.040000000000001,15.92,149.61,150.03,150.33,150.69,151.11,151.54,152.09,152.62,153.91,21.69,21.580000000000002,21.48,21.36,21.240000000000002,21.12,21,20.88,20.63,N/A,N/A +2012,3,19,9,30,101410,100240,99100,93.48,0,11.33,13.09,13.72,14.280000000000001,14.77,15.22,15.66,16.06,16.84,149.85,150.02,150.23,150.49,150.79,151.12,151.52,151.91,152.89000000000001,21.66,21.54,21.44,21.32,21.19,21.07,20.93,20.81,20.56,N/A,N/A +2012,3,19,10,30,101360,100190,99060,93.29,0,12.17,14.05,14.71,15.26,15.74,16.18,16.61,17.01,17.82,151.14000000000001,151.61,151.96,152.39000000000001,152.87,153.38,154.01,154.6,156.04,21.75,21.66,21.57,21.45,21.34,21.22,21.11,21,20.78,N/A,N/A +2012,3,19,11,30,101280,100110,98980,92.28,0,15.72,18.09,18.88,19.53,20.080000000000002,20.55,20.98,21.38,22.09,148.41,149.03,149.42000000000002,149.87,150.31,150.75,151.22,151.67000000000002,152.64000000000001,21.81,21.72,21.64,21.53,21.42,21.3,21.19,21.080000000000002,20.86,N/A,N/A +2012,3,19,12,30,101250,100080,98950,92.24,0,15.97,18.38,19.150000000000002,19.77,20.29,20.75,21.16,21.52,22.150000000000002,144.69,145.18,145.43,145.73,146.06,146.39000000000001,146.78,147.15,148.02,21.79,21.7,21.61,21.490000000000002,21.37,21.26,21.14,21.03,20.81,N/A,N/A +2012,3,19,13,30,101300,100130,98990,91.64,0,14.24,16.46,17.23,17.88,18.43,18.92,19.37,19.77,20.490000000000002,149.65,149.56,149.52,149.51,149.54,149.58,149.68,149.79,150.15,21.830000000000002,21.740000000000002,21.650000000000002,21.53,21.400000000000002,21.27,21.14,21.01,20.75,N/A,N/A +2012,3,19,14,30,101370,100200,99060,91.29,0,11.46,13.34,14.040000000000001,14.65,15.19,15.67,16.14,16.57,17.32,155.6,155.19,154.97,154.74,154.51,154.3,154.11,153.95000000000002,153.76,21.75,21.650000000000002,21.55,21.42,21.29,21.16,21.02,20.89,20.61,N/A,N/A +2012,3,19,15,30,101370,100200,99070,92.38,0,11.75,13.57,14.21,14.74,15.200000000000001,15.6,15.98,16.32,16.95,134.12,134.14000000000001,134.21,134.36,134.6,134.9,135.37,135.84,137.35,21.740000000000002,21.63,21.54,21.42,21.3,21.18,21.07,20.96,20.75,N/A,N/A +2012,3,19,16,30,101350,100180,99040,90.82000000000001,0,10.82,12.27,12.74,13.08,13.35,13.56,13.72,13.86,14.11,122.25,122.67,123.11,123.73,124.55,125.49000000000001,126.92,128.35,133,21.52,21.38,21.28,21.150000000000002,21.04,20.94,20.85,20.78,20.71,N/A,N/A +2012,3,19,17,30,101320,100150,99010,89.26,0.4,12.200000000000001,13.780000000000001,14.26,14.620000000000001,14.92,15.19,15.44,15.66,16.09,115.38,116.34,116.96000000000001,117.68,118.44,119.23,120.16,121.03,123.22,21.22,21.03,20.900000000000002,20.75,20.61,20.47,20.34,20.21,19.97,N/A,N/A +2012,3,19,18,30,101320,100140,99000,95.9,0.7000000000000001,10.9,13,13.75,14.06,14.44,14.84,15.14,15.39,15.700000000000001,103.10000000000001,103.9,104.46000000000001,105.07000000000001,106.2,107.66,109.45,111.17,115.18,20.73,20.47,20.32,20.16,20.04,19.94,19.85,19.77,19.64,N/A,N/A +2012,3,19,19,30,101290,100120,98980,92.46000000000001,0,11.48,12.97,13.450000000000001,13.85,14.18,14.48,14.76,15.030000000000001,15.530000000000001,115.10000000000001,116.06,116.87,117.84,118.88,119.93,121.18,122.37,125.14,21.12,20.95,20.85,20.73,20.62,20.52,20.42,20.330000000000002,20.16,N/A,N/A +2012,3,19,20,30,101220,100040,98910,94.39,0,10.620000000000001,12.09,12.58,13,13.35,13.65,13.93,14.19,14.63,124.23,124.22,124.23,124.31,124.47,124.66,124.95,125.23,126.04,21.34,21.14,21.01,20.86,20.71,20.56,20.400000000000002,20.25,19.95,N/A,N/A +2012,3,19,21,30,101170,99990,98860,94.29,0,11.01,12.66,13.22,13.68,14.08,14.42,14.72,14.99,15.47,125.28,125.52,125.64,125.82000000000001,126.04,126.29,126.62,126.95,127.92,21.5,21.330000000000002,21.21,21.07,20.92,20.77,20.61,20.46,20.16,N/A,N/A +2012,3,19,22,30,101110,99930,98800,94.21000000000001,0,10.11,11.61,12.16,12.620000000000001,13.01,13.36,13.700000000000001,14.01,14.620000000000001,127.77,128.37,128.87,129.5,130.19,130.91,131.8,132.69,134.86,21.57,21.45,21.36,21.240000000000002,21.13,21.01,20.900000000000002,20.8,20.59,N/A,N/A +2012,3,19,23,30,101030,99860,98730,93.16,0,10.59,12.24,12.84,13.35,13.790000000000001,14.18,14.540000000000001,14.86,15.450000000000001,133.28,133.71,134.05,134.45,134.87,135.3,135.78,136.25,137.39000000000001,21.68,21.580000000000002,21.490000000000002,21.37,21.25,21.13,21,20.87,20.62,N/A,N/A +2012,3,20,0,30,100980,99810,98680,91.52,0,11.450000000000001,13.25,13.9,14.48,14.98,15.44,15.88,16.28,17.04,138.53,138.88,139.11,139.39000000000001,139.68,139.98,140.32,140.66,141.51,21.740000000000002,21.64,21.55,21.43,21.3,21.18,21.05,20.92,20.67,N/A,N/A +2012,3,20,1,30,100940,99770,98640,89.52,0,11.32,13.14,13.790000000000001,14.38,14.89,15.35,15.8,16.21,17.02,142.87,143.15,143.37,143.63,143.91,144.20000000000002,144.54,144.86,145.66,21.82,21.740000000000002,21.650000000000002,21.54,21.42,21.3,21.18,21.06,20.82,N/A,N/A +2012,3,20,2,30,100910,99740,98610,88.43,0,11.47,13.3,13.96,14.52,15.02,15.47,15.91,16.31,17.13,143.49,143.73,143.94,144.20000000000002,144.49,144.8,145.18,145.55,146.46,21.830000000000002,21.76,21.68,21.57,21.45,21.34,21.22,21.12,20.900000000000002,N/A,N/A +2012,3,20,3,30,100880,99710,98580,85.89,0,11.74,13.56,14.26,14.86,15.39,15.870000000000001,16.32,16.75,17.55,143.71,144.13,144.43,144.78,145.12,145.47,145.85,146.21,147.01,21.91,21.86,21.78,21.67,21.55,21.44,21.32,21.2,20.96,N/A,N/A +2012,3,20,4,30,100800,99640,98510,83.94,0,11.94,13.93,14.64,15.27,15.84,16.35,16.86,17.330000000000002,18.3,144.57,144.94,145.17000000000002,145.44,145.74,146.04,146.4,146.74,147.56,21.98,21.93,21.86,21.76,21.66,21.56,21.45,21.35,21.14,N/A,N/A +2012,3,20,5,30,100740,99580,98450,81.97,0,12.75,14.82,15.57,16.21,16.78,17.29,17.78,18.23,19.07,146.58,146.92000000000002,147.16,147.44,147.72,148.01,148.32,148.62,149.29,22.05,22.02,21.96,21.86,21.75,21.650000000000002,21.54,21.44,21.22,N/A,N/A +2012,3,20,6,30,100710,99550,98420,81.8,0,13.02,14.94,15.620000000000001,16.19,16.68,17.11,17.53,17.92,18.7,149.14000000000001,149.51,149.70000000000002,149.93,150.18,150.44,150.75,151.06,151.82,22.19,22.11,22.02,21.900000000000002,21.79,21.67,21.55,21.43,21.21,N/A,N/A +2012,3,20,7,30,100700,99530,98410,81.03,0,12.75,14.790000000000001,15.5,16.09,16.61,17.080000000000002,17.51,17.91,18.650000000000002,149.70000000000002,149.94,150.14000000000001,150.35,150.56,150.76,150.97,151.16,151.56,22.31,22.25,22.17,22.05,21.93,21.81,21.67,21.54,21.27,N/A,N/A +2012,3,20,8,30,100660,99500,98370,82.46000000000001,0,13.1,15.06,15.780000000000001,16.38,16.9,17.37,17.81,18.21,18.990000000000002,147.09,147.46,147.69,147.95000000000002,148.22,148.5,148.81,149.11,149.81,22.240000000000002,22.16,22.07,21.95,21.82,21.69,21.54,21.41,21.14,N/A,N/A +2012,3,20,9,30,100680,99510,98390,81.02,0,12.450000000000001,14.370000000000001,15.07,15.67,16.19,16.64,17.080000000000002,17.47,18.23,149.08,149.39000000000001,149.61,149.84,150.08,150.3,150.54,150.77,151.26,22.31,22.240000000000002,22.150000000000002,22.03,21.900000000000002,21.77,21.62,21.490000000000002,21.2,N/A,N/A +2012,3,20,10,30,100680,99520,98390,80.81,0,11.77,13.67,14.370000000000001,14.98,15.530000000000001,16.03,16.51,16.95,17.84,151.3,151.63,151.85,152.1,152.37,152.66,152.99,153.31,154.1,22.330000000000002,22.29,22.21,22.1,21.98,21.86,21.740000000000002,21.62,21.37,N/A,N/A +2012,3,20,11,30,100670,99510,98380,81.75,0,12.08,13.99,14.69,15.290000000000001,15.81,16.28,16.73,17.150000000000002,17.95,152.55,152.74,152.86,152.99,153.13,153.26,153.42000000000002,153.56,153.89000000000001,22.32,22.26,22.18,22.07,21.94,21.82,21.68,21.56,21.28,N/A,N/A +2012,3,20,12,30,100670,99500,98380,83.84,0,11.71,13.56,14.21,14.780000000000001,15.280000000000001,15.73,16.16,16.55,17.31,152.53,152.75,152.91,153.09,153.28,153.47,153.67000000000002,153.87,154.31,22.23,22.150000000000002,22.07,21.95,21.82,21.7,21.56,21.43,21.14,N/A,N/A +2012,3,20,13,30,100760,99590,98460,86.46000000000001,0,10.31,12.01,12.64,13.200000000000001,13.700000000000001,14.15,14.58,14.97,15.72,152.43,152.72,152.9,153.1,153.31,153.52,153.74,153.95000000000002,154.41,22.2,22.12,22.03,21.91,21.78,21.66,21.52,21.39,21.1,N/A,N/A +2012,3,20,14,30,100800,99630,98510,87.92,0,10.370000000000001,12.09,12.74,13.31,13.82,14.290000000000001,14.75,15.18,15.99,155.75,155.97,156.11,156.3,156.49,156.70000000000002,156.95000000000002,157.19,157.74,22.2,22.12,22.03,21.92,21.8,21.68,21.55,21.43,21.16,N/A,N/A +2012,3,20,15,30,100810,99650,98520,88.86,0,9.370000000000001,10.94,11.55,12.09,12.59,13.040000000000001,13.48,13.88,14.67,156.13,156.37,156.55,156.77,157,157.24,157.51,157.76,158.32,22.2,22.12,22.04,21.92,21.8,21.69,21.56,21.44,21.17,N/A,N/A +2012,3,20,16,30,100720,99560,98430,90.4,0,10.14,11.81,12.44,13.01,13.5,13.96,14.4,14.81,15.59,147.87,148.3,148.69,149.13,149.57,149.99,150.44,150.87,151.76,22.17,22.09,22.01,21.900000000000002,21.78,21.66,21.53,21.41,21.150000000000002,N/A,N/A +2012,3,20,17,30,100650,99480,98360,91.98,11.4,12.120000000000001,14.120000000000001,14.81,15.42,15.96,16.46,16.93,17.36,18.2,140.32,140.71,141.02,141.44,141.9,142.38,142.93,143.45000000000002,144.62,22.19,22.09,22,21.88,21.76,21.64,21.5,21.38,21.11,N/A,N/A +2012,3,20,18,30,100630,99480,98350,91.60000000000001,1.8,14.16,16.05,16.91,17.62,18.21,18.73,19.2,19.63,20.43,148.70000000000002,149,149.14000000000001,149.38,149.59,149.85,150.11,150.37,150.92000000000002,22.23,22.18,22.1,21.96,21.84,21.7,21.57,21.43,21.150000000000002,N/A,N/A +2012,3,20,19,30,100690,99520,98390,92.84,358.20000000000005,11.950000000000001,13.86,14.65,15.32,15.89,16.39,16.8,17.16,17.650000000000002,167.16,167.78,167.63,167.38,167.34,167.42000000000002,168.06,168.79,171.58,22.01,21.96,21.88,21.77,21.63,21.490000000000002,21.31,21.14,20.740000000000002,N/A,N/A +2012,3,20,20,30,100830,99660,98520,95.2,505,8.4,8.96,9.24,9.58,9.88,10.17,10.450000000000001,10.71,11.17,215.17000000000002,213.91,213.25,211.99,210.86,209.66,208.5,207.38,205.35,20.47,20.22,20.1,20.01,19.94,19.88,19.830000000000002,19.78,19.64,N/A,N/A +2012,3,20,21,30,100670,99490,98350,90.8,5.5,8.5,9.120000000000001,9.53,10.17,11.05,12.02,12.540000000000001,12.99,13.91,180.88,182.15,183.24,185.07,187.39000000000001,189.89000000000001,190.84,191.46,191.17000000000002,18.97,18.66,18.61,18.62,18.76,18.94,19.02,19.07,18.97,N/A,N/A +2012,3,20,22,30,100740,99570,98430,93.4,26,11.01,12.200000000000001,12.450000000000001,12.620000000000001,12.75,12.86,12.97,13.08,13.39,181.48,182.24,182.66,183.12,183.66,184.21,184.87,185.51,187.54,20.71,20.39,20.23,20.04,19.87,19.69,19.51,19.35,19.02,N/A,N/A +2012,3,20,23,30,100670,99500,98360,88.87,13.200000000000001,5.29,5.78,5.96,6.11,6.2700000000000005,6.44,6.68,6.92,7.74,224.83,223.93,223.5,223.01,222.47,221.94,221.3,220.68,219.39000000000001,20.66,20.35,20.18,19.990000000000002,19.81,19.64,19.45,19.29,18.96,N/A,N/A +2012,3,21,0,30,100690,99520,98380,89.55,20.5,1.78,1.84,1.87,1.9000000000000001,1.92,1.95,2,2.04,2.29,214.77,216.15,216.77,217.45000000000002,218.24,219.1,220.52,221.98000000000002,227.33,20.21,19.91,19.740000000000002,19.55,19.37,19.2,19.01,18.85,18.52,N/A,N/A +2012,3,21,1,30,100680,99500,98360,94.75,0.7000000000000001,6.38,6.88,6.92,6.9,6.86,6.8,6.72,6.640000000000001,6.45,341.64,342.12,342.45,342.8,343.15000000000003,343.49,343.89,344.27,345.39,19.86,19.490000000000002,19.31,19.12,18.93,18.75,18.57,18.400000000000002,18.16,N/A,N/A +2012,3,21,2,30,100710,99530,98380,93.36,24.200000000000003,9.57,10.21,10.290000000000001,10.28,10.23,10.17,10.08,9.99,9.74,344.83,344.98,344.85,344.68,344.42,344.14,343.54,342.88,340.23,19.1,18.68,18.5,18.32,18.150000000000002,18,17.85,17.72,17.580000000000002,N/A,N/A +2012,3,21,3,30,100850,99670,98530,82,0,8.700000000000001,9.540000000000001,9.74,9.88,9.99,10.08,10.18,10.28,10.57,348.41,348.65000000000003,348.67,348.67,348.66,348.66,348.64,348.63,348.61,19.18,18.78,18.6,18.42,18.23,18.06,17.89,17.73,17.42,N/A,N/A +2012,3,21,4,30,100910,99730,98580,78.73,0,7.47,8.11,8.290000000000001,8.39,8.47,8.52,8.58,8.63,8.75,350.1,350.12,350.17,350.21,350.23,350.24,350.27,350.29,350.35,19.38,18.990000000000002,18.81,18.61,18.42,18.240000000000002,18.05,17.88,17.53,N/A,N/A +2012,3,21,5,30,100920,99730,98590,76.8,0,8.53,9.24,9.41,9.5,9.56,9.6,9.63,9.66,9.700000000000001,338.33,338.31,338.3,338.29,338.28000000000003,338.28000000000003,338.28000000000003,338.29,338.32,19.37,18.97,18.79,18.580000000000002,18.39,18.21,18.01,17.84,17.46,N/A,N/A +2012,3,21,6,30,101000,99820,98670,74.98,0,7.11,7.640000000000001,7.76,7.82,7.87,7.9,7.930000000000001,7.96,8.03,339.56,339.72,339.75,339.77,339.8,339.83,339.89,339.94,340.1,19.25,18.87,18.68,18.490000000000002,18.29,18.11,17.92,17.740000000000002,17.38,N/A,N/A +2012,3,21,7,30,101140,99950,98800,72.96000000000001,0,5.66,6,6.11,6.17,6.21,6.25,6.2700000000000005,6.3,6.3500000000000005,322.94,324.18,325.17,326.06,326.89,327.64,328.44,329.17,330.7,18.8,18.42,18.23,18.04,17.86,17.68,17.490000000000002,17.32,16.96,N/A,N/A +2012,3,21,8,30,101080,99890,98730,64.41,2.2,7.03,7.47,7.57,7.61,7.640000000000001,7.66,7.66,7.67,7.66,7.15,7.1000000000000005,7,6.91,6.8,6.7,6.55,6.41,6.0200000000000005,17.45,16.98,16.77,16.57,16.36,16.18,15.97,15.790000000000001,15.41,N/A,N/A +2012,3,21,9,30,101180,99980,98810,73.5,2.6,6.7700000000000005,7.1000000000000005,7.140000000000001,7.140000000000001,7.12,7.1000000000000005,7.07,7.03,6.96,56.67,55.980000000000004,55.47,54.96,54.410000000000004,53.9,53.2,52.480000000000004,50.4,15.82,15.290000000000001,15.08,14.88,14.69,14.51,14.31,14.14,13.790000000000001,N/A,N/A +2012,3,21,10,30,101360,100150,98980,73.45,0.7000000000000001,4.09,4.21,4.21,4.19,4.16,4.12,4.07,4.0200000000000005,3.87,69.58,69.12,68.42,67.82000000000001,67.19,66.62,65.8,64.97,62.15,15.8,15.32,15.120000000000001,14.92,14.72,14.540000000000001,14.35,14.17,13.82,N/A,N/A +2012,3,21,11,30,101270,100070,98900,76.82000000000001,2.9000000000000004,4.53,4.59,4.6000000000000005,4.58,4.55,4.5200000000000005,4.47,4.43,4.33,30.43,29.39,28.82,28.21,27.48,26.8,25.85,24.86,22.17,15.74,15.25,15.05,14.85,14.65,14.47,14.27,14.09,13.72,N/A,N/A +2012,3,21,12,30,101290,100080,98920,77.06,11.4,4.23,4.4,4.41,4.4,4.38,4.3500000000000005,4.32,4.28,4.19,27.25,27.060000000000002,26.6,26.12,25.55,24.990000000000002,24.18,23.34,20.63,16.1,15.620000000000001,15.42,15.21,15.02,14.83,14.63,14.450000000000001,14.09,N/A,N/A +2012,3,21,13,30,101320,100110,98950,79.41,0.4,5.12,5.42,5.44,5.43,5.42,5.4,5.38,5.37,5.32,25.16,24.17,23.48,22.8,22.080000000000002,21.42,20.63,19.86,18.07,16.19,15.71,15.5,15.290000000000001,15.09,14.9,14.700000000000001,14.51,14.120000000000001,N/A,N/A +2012,3,21,14,30,101360,100160,99000,82.45,0,4.61,4.75,4.74,4.71,4.67,4.63,4.57,4.5200000000000005,4.39,64.16,63.660000000000004,63.29,62.93,62.57,62.230000000000004,61.800000000000004,61.39,60.300000000000004,16.28,15.8,15.6,15.39,15.19,15,14.81,14.620000000000001,14.25,N/A,N/A +2012,3,21,15,30,101390,100200,99030,76.46000000000001,0,4.42,4.62,4.62,4.6000000000000005,4.57,4.53,4.48,4.43,4.3100000000000005,68.72,68.05,68.07000000000001,68.08,68.1,68.11,68.11,68.12,68.09,16.85,16.41,16.2,16,15.8,15.610000000000001,15.41,15.23,14.85,N/A,N/A +2012,3,21,16,30,101400,100210,99040,70.04,0,3.59,3.66,3.64,3.6,3.5500000000000003,3.49,3.42,3.35,3.15,73.07000000000001,73.46000000000001,73.36,73.25,73.13,73,72.8,72.60000000000001,71.87,17.28,16.86,16.66,16.46,16.27,16.080000000000002,15.89,15.71,15.35,N/A,N/A +2012,3,21,17,30,101390,100190,99030,65.5,0,4.15,4.24,4.2,4.14,4.07,4.01,3.92,3.83,3.6,89.2,89.23,89.07000000000001,88.92,88.75,88.60000000000001,88.43,88.27,87.89,17.82,17.41,17.22,17.03,16.84,16.66,16.47,16.29,15.92,N/A,N/A +2012,3,21,18,30,101410,100210,99050,62.78,0,4.71,4.92,4.93,4.93,4.91,4.9,4.87,4.8500000000000005,4.8,123.16,123.69,124.03,124.34,124.64,124.92,125.23,125.51,126.15,18.2,17.79,17.6,17.400000000000002,17.2,17.01,16.81,16.62,16.23,N/A,N/A +2012,3,21,19,30,101380,100190,99030,59.03,0,5.12,5.37,5.4,5.4,5.4,5.38,5.36,5.33,5.28,143.87,144.28,144.49,144.72,144.94,145.16,145.4,145.63,146.17000000000002,18.61,18.21,18.02,17.82,17.62,17.43,17.23,17.04,16.65,N/A,N/A +2012,3,21,20,30,101350,100160,99000,56.19,0,5.67,6.0200000000000005,6.09,6.12,6.13,6.13,6.12,6.12,6.09,163.03,163.45000000000002,163.76,164.07,164.4,164.71,165.05,165.38,166.11,18.88,18.490000000000002,18.3,18.1,17.900000000000002,17.71,17.51,17.32,16.93,N/A,N/A +2012,3,21,21,30,101370,100180,99030,56.39,0,6.05,6.47,6.5600000000000005,6.61,6.640000000000001,6.66,6.67,6.68,6.69,163.98,164.64000000000001,165.03,165.41,165.78,166.12,166.48,166.81,167.52,19.12,18.740000000000002,18.56,18.36,18.16,17.97,17.77,17.580000000000002,17.19,N/A,N/A +2012,3,21,22,30,101380,100190,99030,56.61,0,6.0600000000000005,6.49,6.58,6.63,6.66,6.68,6.7,6.7,6.7,172.81,172.85,172.9,172.96,173.01,173.06,173.13,173.18,173.31,19.330000000000002,18.97,18.78,18.580000000000002,18.38,18.19,17.990000000000002,17.8,17.41,N/A,N/A +2012,3,21,23,30,101390,100200,99050,57.870000000000005,0,6.890000000000001,7.38,7.49,7.54,7.5600000000000005,7.57,7.57,7.57,7.55,164.78,165.07,165.23,165.39000000000001,165.54,165.67000000000002,165.83,165.97,166.29,19.47,19.1,18.92,18.72,18.52,18.330000000000002,18.14,17.95,17.56,N/A,N/A +2012,3,22,0,30,101390,100200,99050,58.83,0,6.8500000000000005,7.3500000000000005,7.47,7.54,7.57,7.6000000000000005,7.61,7.62,7.62,166.26,166.71,167.01,167.3,167.59,167.84,168.11,168.37,168.89000000000001,19.55,19.2,19.02,18.81,18.62,18.43,18.23,18.04,17.650000000000002,N/A,N/A +2012,3,22,1,30,101420,100240,99080,57.44,0,6.8,7.33,7.46,7.5200000000000005,7.57,7.6000000000000005,7.61,7.63,7.640000000000001,166.78,166.93,167,167.05,167.11,167.16,167.21,167.26,167.35,19.78,19.43,19.25,19.05,18.85,18.66,18.46,18.27,17.88,N/A,N/A +2012,3,22,2,30,101490,100300,99150,59.82,0,6.67,7.16,7.28,7.3500000000000005,7.38,7.41,7.42,7.43,7.43,170.24,170.54,170.74,170.94,171.11,171.28,171.45000000000002,171.61,171.94,19.75,19.41,19.23,19.03,18.84,18.650000000000002,18.45,18.26,17.87,N/A,N/A +2012,3,22,3,30,101510,100320,99170,59.34,0,6.55,7.03,7.13,7.18,7.21,7.22,7.23,7.23,7.21,168.9,169.03,169.15,169.27,169.38,169.47,169.58,169.67000000000002,169.89000000000001,19.84,19.5,19.32,19.12,18.93,18.740000000000002,18.54,18.36,17.96,N/A,N/A +2012,3,22,4,30,101510,100320,99170,62.160000000000004,0,6.7,7.2,7.3,7.34,7.36,7.38,7.38,7.38,7.3500000000000005,164.48,164.71,164.89000000000001,165.06,165.23,165.39000000000001,165.55,165.70000000000002,166.03,19.76,19.41,19.23,19.03,18.84,18.650000000000002,18.45,18.27,17.88,N/A,N/A +2012,3,22,5,30,101490,100300,99150,64.27,0,6.96,7.46,7.58,7.62,7.640000000000001,7.65,7.65,7.640000000000001,7.61,169.56,169.66,169.73,169.82,169.89000000000001,169.97,170.06,170.14000000000001,170.34,19.650000000000002,19.3,19.12,18.92,18.72,18.53,18.330000000000002,18.150000000000002,17.76,N/A,N/A +2012,3,22,6,30,101520,100330,99180,61.35,0,6.59,7.08,7.19,7.24,7.2700000000000005,7.28,7.28,7.28,7.2700000000000005,165.38,165.56,165.67000000000002,165.79,165.9,166.01,166.12,166.22,166.48,19.79,19.46,19.28,19.080000000000002,18.89,18.7,18.5,18.32,17.93,N/A,N/A +2012,3,22,7,30,101510,100320,99170,67.2,0,6.74,7.24,7.3500000000000005,7.390000000000001,7.4,7.41,7.4,7.390000000000001,7.36,165.6,165.65,165.68,165.71,165.74,165.77,165.81,165.84,165.94,19.69,19.35,19.17,18.97,18.78,18.59,18.39,18.21,17.82,N/A,N/A +2012,3,22,8,30,101480,100290,99140,72.04,0,6.4,6.82,6.9,6.92,6.91,6.9,6.87,6.84,6.76,170.1,170.13,170.18,170.23,170.29,170.34,170.4,170.46,170.70000000000002,19.56,19.22,19.04,18.85,18.650000000000002,18.47,18.28,18.1,17.740000000000002,N/A,N/A +2012,3,22,9,30,101480,100290,99140,73.16,0,7.3100000000000005,7.84,7.96,7.99,8.01,8.01,7.99,7.97,7.91,162.86,162.95000000000002,163.01,163.08,163.15,163.21,163.28,163.36,163.55,19.51,19.16,18.98,18.78,18.59,18.400000000000002,18.21,18.03,17.650000000000002,N/A,N/A +2012,3,22,10,30,101460,100270,99120,70.66,0,7.61,8.2,8.33,8.39,8.41,8.42,8.42,8.41,8.370000000000001,162.14000000000001,162.31,162.42000000000002,162.53,162.64000000000001,162.75,162.87,162.99,163.27,19.69,19.34,19.16,18.96,18.77,18.580000000000002,18.38,18.2,17.81,N/A,N/A +2012,3,22,11,30,101460,100280,99130,67.53,0,7.09,7.640000000000001,7.74,7.78,7.79,7.8,7.79,7.78,7.76,167.34,167.24,167.21,167.18,167.15,167.12,167.08,167.04,166.91,19.96,19.64,19.47,19.27,19.080000000000002,18.900000000000002,18.71,18.54,18.17,N/A,N/A +2012,3,22,12,30,101480,100300,99150,66.58,0,7.61,8.25,8.4,8.46,8.5,8.52,8.53,8.53,8.52,163.48,163.5,163.5,163.5,163.51,163.51,163.51,163.51,163.51,20.05,19.73,19.55,19.36,19.17,18.98,18.78,18.6,18.22,N/A,N/A +2012,3,22,13,30,101490,100300,99150,70.07000000000001,0,7.26,7.8500000000000005,7.98,8.03,8.06,8.07,8.06,8.05,8.01,165.17000000000002,165.3,165.4,165.52,165.63,165.74,165.86,165.98,166.24,20.02,19.7,19.52,19.330000000000002,19.13,18.95,18.75,18.57,18.18,N/A,N/A +2012,3,22,14,30,101530,100350,99200,67.36,0,7.76,8.46,8.63,8.72,8.78,8.82,8.84,8.86,8.870000000000001,160.75,160.74,160.75,160.76,160.76,160.77,160.77,160.78,160.79,20.240000000000002,19.93,19.76,19.57,19.37,19.19,18.990000000000002,18.81,18.43,N/A,N/A +2012,3,22,15,30,101530,100350,99200,66.59,0,6.97,7.55,7.69,7.75,7.79,7.8100000000000005,7.82,7.82,7.82,169.65,169.68,169.70000000000002,169.72,169.73,169.73,169.75,169.76,169.8,20.32,20.03,19.86,19.67,19.48,19.3,19.11,18.93,18.56,N/A,N/A +2012,3,22,16,30,101580,100390,99240,71.16,0,7.5,8.13,8.27,8.34,8.38,8.4,8.41,8.41,8.39,164.85,165.08,165.17000000000002,165.25,165.33,165.39000000000001,165.46,165.53,165.70000000000002,20.31,20.01,19.84,19.64,19.46,19.27,19.080000000000002,18.900000000000002,18.51,N/A,N/A +2012,3,22,17,30,101540,100350,99200,62.09,0,6.0200000000000005,6.53,6.65,6.7,6.74,6.7700000000000005,6.79,6.8100000000000005,6.83,184.47,184.3,184.16,184.01,183.86,183.72,183.56,183.41,183.09,20.71,20.44,20.27,20.09,19.900000000000002,19.72,19.52,19.35,18.97,N/A,N/A +2012,3,22,18,30,101560,100380,99230,64.43,0,5.13,5.55,5.64,5.68,5.71,5.73,5.73,5.73,5.73,186.93,187.01,187.05,187.08,187.1,187.14000000000001,187.18,187.23,187.37,20.72,20.44,20.27,20.080000000000002,19.89,19.71,19.51,19.330000000000002,18.94,N/A,N/A +2012,3,22,19,30,101540,100350,99210,64.33,0,5.21,5.65,5.74,5.8,5.84,5.87,5.9,5.92,5.96,193.45000000000002,193.18,192.99,192.78,192.57,192.36,192.13,191.92000000000002,191.44,20.81,20.52,20.35,20.16,19.97,19.79,19.59,19.41,19.03,N/A,N/A +2012,3,22,20,30,101510,100330,99180,66.39,0,4.93,5.3100000000000005,5.39,5.42,5.44,5.45,5.46,5.46,5.46,185.97,186.14000000000001,186.29,186.42000000000002,186.54,186.64000000000001,186.75,186.84,187.05,20.76,20.47,20.3,20.11,19.92,19.73,19.54,19.36,18.97,N/A,N/A +2012,3,22,21,30,101490,100310,99160,68.92,0,4.69,5.08,5.15,5.19,5.21,5.23,5.23,5.24,5.24,180.68,180.63,180.69,180.75,180.81,180.86,180.91,180.94,181.03,20.73,20.45,20.27,20.080000000000002,19.89,19.71,19.51,19.330000000000002,18.94,N/A,N/A +2012,3,22,22,30,101460,100280,99130,65,0,4.25,4.57,4.64,4.68,4.7,4.71,4.72,4.73,4.75,180.73,180.42000000000002,180.15,179.84,179.54,179.25,178.94,178.64000000000001,178.01,20.73,20.47,20.31,20.11,19.93,19.740000000000002,19.55,19.37,18.990000000000002,N/A,N/A +2012,3,22,23,30,101420,100240,99090,69.11,0,3.65,3.9,3.95,3.96,3.96,3.96,3.96,3.96,3.94,183.57,183.8,183.97,184.16,184.35,184.53,184.75,184.97,185.54,20.55,20.27,20.1,19.91,19.72,19.54,19.34,19.150000000000002,18.77,N/A,N/A +2012,3,23,0,30,101420,100240,99090,65.91,0,4.24,4.54,4.58,4.6000000000000005,4.6000000000000005,4.6000000000000005,4.59,4.59,4.58,166.74,166.91,166.96,167.01,167.05,167.07,167.11,167.15,167.19,20.53,20.26,20.09,19.900000000000002,19.71,19.53,19.34,19.16,18.79,N/A,N/A +2012,3,23,1,30,101440,100250,99110,67.73,0,5.04,5.43,5.51,5.54,5.55,5.5600000000000005,5.57,5.57,5.57,152.73,152.71,152.73,152.75,152.78,152.8,152.84,152.87,152.96,20.5,20.22,20.05,19.86,19.67,19.490000000000002,19.29,19.11,18.73,N/A,N/A +2012,3,23,2,30,101450,100260,99120,66.51,0,3.89,4.16,4.2,4.21,4.21,4.21,4.21,4.2,4.21,157.21,157.24,157.27,157.31,157.34,157.38,157.44,157.5,157.82,20.490000000000002,20.21,20.04,19.85,19.66,19.48,19.29,19.11,18.75,N/A,N/A +2012,3,23,3,30,101460,100280,99130,72.08,0,5.3100000000000005,5.7,5.76,5.79,5.8,5.8,5.79,5.78,5.7700000000000005,153.18,153.23,153.25,153.26,153.28,153.3,153.31,153.34,153.41,20.330000000000002,20.03,19.86,19.67,19.48,19.3,19.1,18.92,18.55,N/A,N/A +2012,3,23,4,30,101460,100270,99130,75.94,0,5.61,6.04,6.13,6.16,6.18,6.19,6.19,6.19,6.2,151.85,151.91,151.92000000000002,151.93,151.95000000000002,151.97,152,152.02,152.08,20.26,19.95,19.78,19.59,19.400000000000002,19.21,19.01,18.830000000000002,18.45,N/A,N/A +2012,3,23,5,30,101480,100300,99150,77.53,0,4.72,5.0200000000000005,5.07,5.07,5.07,5.0600000000000005,5.05,5.04,5.09,158,158,158.04,158.08,158.13,158.18,158.26,158.34,158.94,20.2,19.900000000000002,19.73,19.53,19.34,19.16,18.97,18.79,18.47,N/A,N/A +2012,3,23,6,30,101490,100300,99160,76.42,0,4.3500000000000005,4.61,4.64,4.64,4.64,4.62,4.61,4.6000000000000005,4.5600000000000005,164.3,164.38,164.4,164.43,164.49,164.55,164.65,164.76,166.18,20.2,19.89,19.72,19.52,19.330000000000002,19.150000000000002,18.95,18.78,18.54,N/A,N/A +2012,3,23,7,30,101510,100330,99180,78.71000000000001,0,4.53,4.8,4.8500000000000005,4.86,4.86,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.89,168.67000000000002,168.73,168.74,168.77,168.8,168.84,168.91,169,169.75,20.16,19.85,19.68,19.490000000000002,19.3,19.12,18.92,18.740000000000002,18.46,N/A,N/A +2012,3,23,8,30,101510,100330,99180,77.8,0,2.7,2.7800000000000002,2.7800000000000002,2.7600000000000002,2.7800000000000002,2.81,2.93,3.06,3.5,189.44,189.89000000000001,190.08,190.38,190.06,189.42000000000002,186,182.22,173.85,20.14,19.84,19.68,19.51,19.47,19.5,19.79,20.11,20.75,N/A,N/A +2012,3,23,9,30,101530,100340,99200,80.01,0,2.84,2.94,2.94,2.91,2.89,2.87,2.7800000000000002,2.69,2.73,178.23,178.42000000000002,178.47,178.55,178.86,179.28,179.97,180.63,182.41,20.080000000000002,19.78,19.62,19.44,19.29,19.150000000000002,19.34,19.580000000000002,20.45,N/A,N/A +2012,3,23,10,30,101530,100350,99200,84.33,0,2.15,2.2,2.19,2.16,2.12,2.07,1.82,1.59,1.52,195.87,196.22,196.37,196.58,197.36,198.39000000000001,203.6,208.35,210.47,19.89,19.580000000000002,19.41,19.22,19.080000000000002,18.97,19.25,19.6,20.95,N/A,N/A +2012,3,23,11,30,101560,100380,99230,88.19,0,1.82,1.86,1.85,1.84,1.82,1.8,1.68,1.54,1.07,196.86,196.95000000000002,196.99,197.07,197.21,197.38,199.74,202.58,219.33,19.72,19.400000000000002,19.23,19.04,18.85,18.67,18.56,18.490000000000002,19.04,N/A,N/A +2012,3,23,12,30,101640,100450,99300,87.69,0,1.43,1.47,1.47,1.46,1.46,1.45,1.45,1.44,1.42,326.67,326.71,326.79,326.88,326.97,327.07,327.19,327.31,327.76,19.66,19.34,19.17,18.97,18.78,18.59,18.39,18.21,17.830000000000002,N/A,N/A +2012,3,23,13,30,101650,100460,99310,84.52,0,3.45,3.59,3.59,3.56,3.54,3.5100000000000002,3.47,3.44,3.35,334.68,334.77,334.8,334.82,334.83,334.83,334.84000000000003,334.85,334.84000000000003,19.61,19.27,19.09,18.900000000000002,18.71,18.52,18.32,18.14,17.76,N/A,N/A +2012,3,23,14,30,101700,100510,99350,94.52,0,4.73,4.83,4.78,4.69,4.58,4.47,4.32,4.18,3.77,356.65000000000003,357.07,357.37,357.71,358.08,358.45,358.96,359.44,0.86,18.73,18.34,18.16,17.97,17.78,17.61,17.42,17.26,16.97,N/A,N/A +2012,3,23,15,30,101750,100550,99390,99.41,0,4.1,4.14,4.0600000000000005,3.95,3.75,3.5300000000000002,3.12,2.8000000000000003,2.67,4.94,5.28,5.53,5.8100000000000005,6.19,6.58,7.96,9.48,15.280000000000001,17.16,16.79,16.63,16.47,16.31,16.15,16.5,16.82,16.47,N/A,N/A +2012,3,23,16,30,101750,100550,99390,99.4,0,3.21,3.3000000000000003,3.29,3.27,3.25,3.24,3.3000000000000003,3.38,3.73,28.13,28.5,28.68,28.88,29.13,29.38,28.7,27.310000000000002,17.740000000000002,17.23,16.86,16.71,16.55,16.37,16.2,15.9,15.780000000000001,17.5,N/A,N/A +2012,3,23,17,30,101720,100520,99370,94.08,0,2.57,2.69,2.73,2.7800000000000002,2.92,3.12,3.58,4.01,3.71,36.01,35.26,34.7,34,32.69,31.09,28.7,26.36,24.7,17.79,17.43,17.26,17.1,17.01,16.95,17.400000000000002,17.830000000000002,17.98,N/A,N/A +2012,3,23,18,30,101720,100520,99370,84.05,0,2.48,2.56,2.59,2.63,2.85,3.17,3.45,3.67,3.58,36.24,35.83,35.36,34.660000000000004,32.76,30.14,27.77,25.68,23.67,18.89,18.55,18.400000000000002,18.26,18.240000000000002,18.29,18.47,18.63,18.51,N/A,N/A +2012,3,23,19,30,101700,100510,99360,79.81,0,1.82,1.87,1.87,1.8900000000000001,2.09,2.4,2.64,2.84,3.19,66.65,65.35,63.730000000000004,61.11,53.26,41.81,35.480000000000004,30.55,23.56,19.580000000000002,19.26,19.12,18.98,19.09,19.32,19.46,19.56,19.53,N/A,N/A +2012,3,23,20,30,101650,100460,99310,76.17,0,2.52,2.54,2.5,2.43,2.32,2.19,1.97,1.78,1.99,121.91,120.93,120.05,118.8,115.56,111.56,90.39,71.27,51.51,20.080000000000002,19.76,19.6,19.43,19.3,19.19,19.44,19.71,19.98,N/A,N/A +2012,3,23,21,30,101610,100430,99280,77.11,0,2.14,2.16,2.12,2.04,1.81,1.54,1.41,1.33,1.6400000000000001,139.26,138.53,137.51,135.71,124.4,110.42,93.08,77.57000000000001,49.1,20.31,20,19.86,19.72,19.81,20.02,20.3,20.56,20.81,N/A,N/A +2012,3,23,22,30,101580,100400,99250,78.63,0,2.3000000000000003,2.32,2.25,2.13,1.85,1.54,1.3900000000000001,1.3,1.4000000000000001,148.20000000000002,147.43,145.88,142.78,128.97,112.57000000000001,96.7,83.06,56.15,20.43,20.14,20.03,19.96,20.25,20.72,21.07,21.36,21.57,N/A,N/A +2012,3,23,23,30,101540,100360,99210,78.34,0,2.48,2.48,2.37,2.16,1.92,1.68,1.51,1.3800000000000001,1.5,144.29,143.41,139.93,132.58,122.83,112.88,97.91,84.47,56.97,20.490000000000002,20.22,20.240000000000002,20.47,20.89,21.42,21.73,21.97,22.22,N/A,N/A +2012,3,24,0,30,101510,100330,99190,79.12,0,2.39,2.37,2.15,1.78,1.45,1.18,1.05,0.97,1.3,159.32,157.61,151.66,140.51,127.12,114.38,91.94,71.46000000000001,36.45,20.46,20.31,20.54,21.16,21.740000000000002,22.28,22.61,22.86,23.2,N/A,N/A +2012,3,24,1,30,101520,100340,99200,84.69,0,4.49,4.61,4.53,4.4,4.0600000000000005,3.65,3.19,2.79,2.0300000000000002,158.24,157.9,156.77,154.29,150.9,147.4,142.77,138.65,123.95,20.330000000000002,20.06,20.01,20.06,20.45,21.01,21.490000000000002,21.92,22.54,N/A,N/A +2012,3,24,2,30,101520,100340,99200,83.09,0,3.56,3.68,3.68,3.71,3.52,3.22,2.92,2.66,2.19,163.13,162.65,160.48,155.57,150.97,146.98,142.26,138.05,127.02,20.45,20.240000000000002,20.43,21.07,21.67,22.23,22.48,22.650000000000002,22.900000000000002,N/A,N/A +2012,3,24,3,30,101520,100330,99190,84.13,0,4.04,4.18,4.26,4.47,4.39,4.16,3.8200000000000003,3.5300000000000002,2.93,169.05,168.89000000000001,167.84,165.48,162.34,159.1,156.51,154.35,147.52,20.44,20.19,20.240000000000002,20.52,21.14,21.900000000000002,22.19,22.38,22.54,N/A,N/A +2012,3,24,4,30,101510,100330,99190,84.64,0,3.92,4.08,4.17,4.39,4.3500000000000005,4.18,3.94,3.72,3.18,177.77,177.5,176.68,174.92000000000002,172.72,170.44,167.67000000000002,165.15,159,20.38,20.11,20.04,20.07,20.47,21.06,21.5,21.87,22.21,N/A,N/A +2012,3,24,5,30,101490,100310,99170,85.7,0,2.92,3,3.14,3.5500000000000003,3.79,3.92,3.71,3.49,3.0300000000000002,191.36,191.23000000000002,189.79,186.03,181.70000000000002,177.35,175.22,173.78,170.76,20.36,20.09,20.1,20.34,20.92,21.64,21.97,22.19,22.21,N/A,N/A +2012,3,24,6,30,101520,100330,99190,87.51,0,2.43,2.48,2.6,2.92,3.09,3.16,3.0700000000000003,2.95,2.62,208.63,208.59,206.97,202.84,197.68,192.16,187.41,183.49,179.14000000000001,20.35,20.080000000000002,20.11,20.38,20.95,21.66,22.080000000000002,22.39,22.46,N/A,N/A +2012,3,24,7,30,101540,100360,99220,86.66,0,2.66,2.71,2.73,2.81,2.8000000000000003,2.72,2.48,2.24,1.83,233.28,232.71,231.24,227.93,224.6,221.47,218.09,215.16,206.03,20.42,20.13,20.03,20,20.41,21.05,21.740000000000002,22.36,22.62,N/A,N/A +2012,3,24,8,30,101550,100360,99220,87.28,0,2.9,3.0100000000000002,3.02,3.0300000000000002,3.15,3.3200000000000003,3.49,3.63,3.7,225.44,225.02,224.52,223.67000000000002,220.95000000000002,217.23000000000002,214.22,211.57,207.67000000000002,20.43,20.13,19.98,19.81,19.85,20,20.25,20.490000000000002,20.92,N/A,N/A +2012,3,24,9,30,101580,100400,99250,88.87,0,3.08,3.23,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.2800000000000002,3.31,3.59,243.54,243.32,243.17000000000002,243.02,242.84,242.65,242.37,242.04,239.11,20.37,20.06,19.89,19.69,19.51,19.330000000000002,19.14,18.97,19.1,N/A,N/A +2012,3,24,10,30,101600,100420,99270,96.05,0,4.25,4.46,4.47,4.44,4.39,4.3500000000000005,4.2700000000000005,4.2,4.05,250.12,250.46,250.76000000000002,251.09,251.43,251.77,252.34,252.86,252.74,20.07,19.72,19.54,19.330000000000002,19.150000000000002,18.98,18.84,18.72,18.43,N/A,N/A +2012,3,24,11,30,101640,100450,99290,99.48,0,3.41,3.5500000000000003,3.5700000000000003,3.5700000000000003,3.56,3.56,3.56,3.56,3.42,241.96,242.95000000000002,243.56,244.28,245.22,246.18,247.79,249.5,257.14,17.84,17.47,17.31,17.16,17,16.84,16.63,16.43,16.240000000000002,N/A,N/A +2012,3,24,12,30,101660,100470,99310,99.34,0,3.98,4.19,4.25,4.2700000000000005,4.29,4.3100000000000005,4.32,4.34,4.3500000000000005,264.49,265.81,266.37,266.84000000000003,267.24,267.58,267.9,268.18,268.96,18.240000000000002,17.87,17.71,17.56,17.41,17.27,17.1,16.94,16.43,N/A,N/A +2012,3,24,13,30,101680,100490,99330,99.48,0,5.05,5.08,4.96,4.79,4.6000000000000005,4.42,4.17,3.95,3.33,301.19,299.88,299.04,298.13,297.07,296.06,294.42,292.73,285.18,17.8,17.400000000000002,17.240000000000002,17.12,17,16.89,16.77,16.65,16.4,N/A,N/A +2012,3,24,14,30,101730,100530,99370,99.48,0,5.01,5.0600000000000005,4.95,4.8100000000000005,4.64,4.47,4.26,4.0600000000000005,3.5100000000000002,306.57,306.53000000000003,306.46,306.36,306.17,305.96,305.5,304.98,302.52,17.650000000000002,17.26,17.11,16.98,16.85,16.73,16.62,16.5,16.18,N/A,N/A +2012,3,24,15,30,101730,100530,99370,96,0,4.88,5.01,4.97,4.9,4.82,4.76,4.7,4.66,4.68,323.56,322.71,322.12,321.48,320.78000000000003,320.1,320.17,321.11,330.97,17.3,16.87,16.68,16.490000000000002,16.3,16.13,16.02,16.07,17.72,N/A,N/A +2012,3,24,16,30,101720,100520,99360,95.72,0,4.2,4.33,4.32,4.28,4.24,4.19,4.14,4.09,4.1,336.83,336.85,336.84000000000003,336.83,336.83,336.82,336.79,337.36,346.38,17.86,17.45,17.26,17.07,16.88,16.69,16.47,16.34,17.400000000000002,N/A,N/A +2012,3,24,17,30,101700,100510,99350,93.04,0,1.78,1.83,1.83,1.83,1.83,1.83,1.82,1.83,2.3000000000000003,325.56,325.53000000000003,325.57,325.66,325.83,326.03000000000003,326.32,327.2,339.06,18.36,17.97,17.79,17.6,17.41,17.240000000000002,17.05,16.91,17.18,N/A,N/A +2012,3,24,18,30,101680,100490,99340,89.01,0,1.18,1.26,1.3,1.36,1.52,1.74,2.3000000000000003,2.98,3.63,332.09000000000003,333.18,333.96,334.97,336.92,339.45,343.31,347.82,353.73,19.01,18.650000000000002,18.48,18.31,18.19,18.1,18.32,18.580000000000002,19.45,N/A,N/A +2012,3,24,19,30,101650,100470,99320,86.75,0,1.8900000000000001,1.85,1.78,1.68,1.54,1.3900000000000001,1.07,0.87,1.72,184,184.76,185.42000000000002,186.26,187.86,189.58,265.28000000000003,321.91,339.37,19.69,19.34,19.16,18.98,18.8,18.64,18.7,18.8,19.28,N/A,N/A +2012,3,24,20,30,101610,100420,99280,84.51,0,3.47,3.45,3.2600000000000002,2.96,2.2600000000000002,1.61,1.36,1.21,1.54,195,195.64000000000001,196.77,198.73000000000002,211.3,224.19,250.19,272.95,310.31,20.02,19.69,19.55,19.42,19.46,19.59,19.8,20,20.75,N/A,N/A +2012,3,24,21,30,101570,100390,99240,80.98,0,2.95,2.8000000000000003,2.38,1.74,1.46,1.31,1.37,1.46,1.84,193.66,194.9,202.19,215,230.22,245.88,264.82,283.01,301.91,20.6,20.35,20.42,20.72,21.1,21.5,21.76,21.98,22.1,N/A,N/A +2012,3,24,22,30,101530,100350,99210,74.68,0,3.0300000000000002,2.85,2.2,1.28,0.79,0.52,0.5,0.54,1.1500000000000001,169.26,169.74,172.73,177.38,194.01,210.13,251.91,295.2,323.32,21.18,21.05,21.28,21.900000000000002,22.26,22.490000000000002,22.54,22.55,22.56,N/A,N/A +2012,3,24,23,30,101510,100330,99200,71.47,0,3.63,3.5500000000000003,3.2600000000000002,2.82,2.36,1.95,1.53,1.21,0.7000000000000001,178.01,177.32,177.14000000000001,177.25,178.99,181.15,187.25,192.8,221.72,21.5,21.84,22.150000000000002,22.59,22.86,23.02,23.1,23.150000000000002,23.04,N/A,N/A +2012,3,25,0,30,101500,100320,99180,77.82000000000001,0,3.74,3.95,3.77,3.38,2.96,2.58,2.16,1.83,1.1500000000000001,183.31,183.64000000000001,183.82,184.04,184.66,185.37,187.23,188.99,198.06,21.38,21.61,22.06,22.88,23.27,23.43,23.44,23.42,23.17,N/A,N/A +2012,3,25,1,30,101530,100350,99210,70.16,0,4.5,4.9,4.89,4.73,4.43,4.1,3.65,3.25,2.38,193.08,192.96,192.49,191.59,191.35,191.44,191.85,192.26,194.13,21.55,21.42,21.55,21.92,22.19,22.41,22.68,22.92,23.04,N/A,N/A +2012,3,25,2,30,101550,100370,99230,73.59,0,4.05,4.41,4.58,4.83,4.71,4.42,4.0600000000000005,3.74,2.93,205.16,204.6,203.39000000000001,200.98000000000002,199.64000000000001,198.96,198.23000000000002,197.61,196.75,21.42,21.31,21.41,21.73,22.01,22.26,22.43,22.56,22.75,N/A,N/A +2012,3,25,3,30,101560,100380,99250,77.47,0,2.91,3.12,3.2,3.35,3.24,3.0100000000000002,2.7,2.43,1.83,226.08,225.53,223.68,219.74,216.19,213.21,212.17000000000002,211.73000000000002,215.05,21.25,21.150000000000002,21.38,21.990000000000002,22.47,22.85,22.990000000000002,23.06,22.98,N/A,N/A +2012,3,25,4,30,101580,100400,99260,78.85000000000001,0,2.98,3.11,3.22,3.5,3.6,3.6,3.38,3.16,2.62,228.78,228.71,227.83,225.69,222.54,219.02,216.88,215.33,214.17000000000002,21.19,20.990000000000002,21.1,21.52,21.990000000000002,22.47,22.68,22.82,22.72,N/A,N/A +2012,3,25,5,30,101590,100410,99270,84.07000000000001,0,3.23,3.37,3.46,3.7,3.81,3.84,3.62,3.38,2.74,235.42000000000002,235.51,235.58,235.76,234.15,231.76,229.97,228.6,227.94,21.01,20.76,20.73,20.84,21.13,21.5,21.88,22.22,22.62,N/A,N/A +2012,3,25,6,30,101610,100430,99290,86.89,0,3.18,3.38,3.64,4.2700000000000005,4.51,4.53,4.2700000000000005,4,3.59,254.02,252.71,250.28,245.22,241.75,239.47,239,238.92000000000002,237.77,21.05,20.830000000000002,20.92,21.28,21.72,22.18,22.18,22.080000000000002,21.900000000000002,N/A,N/A +2012,3,25,7,30,101630,100450,99310,89.05,0,3.36,3.5,3.5100000000000002,3.52,3.33,3.0300000000000002,3.09,3.21,3.22,246.47,246.79,247.39000000000001,248.61,251.64000000000001,255.51000000000002,256.08,255.75,250.66,21.04,20.78,20.66,20.580000000000002,20.47,20.35,20.51,20.740000000000002,21.89,N/A,N/A +2012,3,25,8,30,101640,100460,99320,91.17,0,3.52,3.63,3.67,3.8000000000000003,3.96,4.14,4.08,3.98,3.3200000000000003,256.98,256.95,256.89,256.75,257.12,257.75,259.42,261.05,263.98,21.02,20.72,20.59,20.47,20.650000000000002,20.98,21.35,21.68,21.85,N/A,N/A +2012,3,25,9,30,101640,100460,99320,94.44,0,3.18,3.27,3.27,3.2600000000000002,3.18,3.0700000000000003,2.97,2.87,2.4,270.15,270.17,270.24,270.37,271.76,273.72,273.46,272.83,272.53000000000003,20.89,20.59,20.42,20.240000000000002,20.240000000000002,20.35,21.02,21.72,22.48,N/A,N/A +2012,3,25,10,30,101660,100480,99340,95.42,0,3.21,3.35,3.38,3.39,3.49,3.63,3.5500000000000003,3.42,2.96,263.91,263.58,263.43,263.33,263.6,264.08,266.98,270.06,279.75,20.740000000000002,20.42,20.240000000000002,20.05,19.86,19.68,20,20.41,21.35,N/A,N/A +2012,3,25,11,30,101700,100510,99360,99.44,0,3.58,3.6,3.52,3.4,3.18,2.94,2.75,2.63,2.95,258.74,259.98,261.07,262.57,267.38,273.1,288.78000000000003,302.28000000000003,307.2,18.77,18.42,18.25,18.07,17.77,17.44,18.34,19.400000000000002,22.22,N/A,N/A +2012,3,25,12,30,101720,100530,99380,99.32000000000001,0,3.12,3.2,3.19,3.16,3.12,3.0700000000000003,3,2.94,2.98,282.90000000000003,281.76,280.67,279.26,277.33,275.31,287.21,299,309.29,18.86,18.52,18.35,18.150000000000002,17.79,17.37,19.28,21.18,21.37,N/A,N/A +2012,3,25,13,30,101750,100560,99410,99.34,0.4,3.19,3.25,3.23,3.19,3.16,3.13,3.08,3.06,3.45,276.67,275.88,275.3,274.61,273.29,271.79,282.17,292.88,310.38,18.75,18.41,18.26,18.09,17.8,17.490000000000002,18.1,18.8,20.240000000000002,N/A,N/A +2012,3,25,14,30,101790,100600,99450,99.45,0,1.58,1.61,1.59,1.57,1.55,1.54,1.84,2.21,3.0500000000000003,285.59000000000003,286.55,287.05,287.48,287.44,287.21,300.85,316.3,326.82,18.35,18,17.85,17.7,17.52,17.35,17.89,18.5,19.82,N/A,N/A +2012,3,25,15,30,101800,100610,99460,99.31,0,1.72,1.76,1.76,1.75,1.77,1.79,1.95,2.18,3.37,285.5,288.48,290.83,293.73,297.25,300.91,308.7,316.84000000000003,332.81,18.62,18.29,18.150000000000002,18.02,17.88,17.740000000000002,17.53,17.56,20.04,N/A,N/A +2012,3,25,16,30,101790,100600,99450,99.28,0,2.4,2.46,2.44,2.42,2.37,2.33,2.46,2.63,3.45,280.72,282.16,282.97,283.66,284.45,285.24,298.54,313.03000000000003,331.99,19.16,18.87,18.75,18.61,18.48,18.36,18.080000000000002,17.89,19.48,N/A,N/A +2012,3,25,17,30,101790,100600,99450,99.32000000000001,0,2.24,2.27,2.23,2.19,2.16,2.15,2.23,2.34,3,261,263.23,265.47,268.63,275.29,283.40000000000003,297.11,310.31,326.96,19.02,18.71,18.57,18.43,18.28,18.13,18.25,18.46,20.01,N/A,N/A +2012,3,25,18,30,101760,100570,99430,95.54,0,2,2.0100000000000002,2,2.0100000000000002,2.2,2.5100000000000002,2.81,3.09,3.39,261.17,264.15,268.13,274.97,286.36,301.17,307.88,312.66,315.5,19.67,19.330000000000002,19.2,19.11,19.37,19.81,20.37,20.87,20.81,N/A,N/A +2012,3,25,19,30,101740,100560,99410,91.3,0,2.17,2.12,2.0100000000000002,1.86,1.86,1.92,2.07,2.22,2.38,222.6,224.72,233.26,250.55,265.11,278.63,287.09000000000003,294.09000000000003,298.57,20.63,20.330000000000002,20.330000000000002,20.490000000000002,20.77,21.11,21.25,21.35,21.42,N/A,N/A +2012,3,25,20,30,101680,100500,99360,87.8,0,3.0300000000000002,3.02,2.92,2.79,2.66,2.5500000000000003,2.5300000000000002,2.52,2.57,210.62,211.48000000000002,214.15,219.61,225.04,230.21,233.61,236.36,240.53,21.35,21.09,21.13,21.39,21.63,21.84,21.88,21.87,21.830000000000002,N/A,N/A +2012,3,25,21,30,101640,100470,99330,85.38,0,3.54,3.58,3.54,3.52,3.43,3.3200000000000003,3.21,3.12,2.86,202.48000000000002,202.92000000000002,204.49,207.83,212.14000000000001,216.71,220.78,224.28,232.21,21.82,21.55,21.53,21.67,21.89,22.13,22.14,22.1,22.01,N/A,N/A +2012,3,25,22,30,101620,100440,99300,84.52,0,4.75,4.96,4.93,4.9,4.75,4.54,4.2700000000000005,4.03,3.48,193.97,194.13,194.47,195.15,197.35,200.22,202.51,204.37,207.31,21.94,21.68,21.580000000000002,21.54,21.73,22.05,22.19,22.28,22.22,N/A,N/A +2012,3,25,23,30,101610,100430,99300,83.76,0,4.4,4.75,4.84,4.95,4.8,4.54,4.25,4,3.45,187.65,188.08,189.35,192.01,194.32,196.27,196.78,196.95000000000002,195.72,21.8,21.63,21.740000000000002,22.12,22.45,22.740000000000002,22.77,22.740000000000002,22.72,N/A,N/A +2012,3,26,0,30,101600,100420,99290,85.84,0,4.07,4.79,5.04,5.19,5.08,4.8500000000000005,4.6000000000000005,4.37,3.86,189.64000000000001,190.37,191.66,194.15,195.82,196.94,197.04,196.92000000000002,195.02,21.650000000000002,21.7,21.93,22.400000000000002,22.67,22.84,22.84,22.8,22.76,N/A,N/A +2012,3,26,1,30,101610,100440,99300,86.03,0,3.96,4.28,4.42,4.65,4.67,4.58,4.37,4.16,3.74,184.43,184.72,185.66,187.76,190.52,193.45000000000002,195.01,196.04,193.99,21.61,21.400000000000002,21.47,21.81,22.19,22.59,22.71,22.76,22.650000000000002,N/A,N/A +2012,3,26,2,30,101640,100460,99320,86.85000000000001,0,3.31,3.58,3.74,4.0200000000000005,4.08,4.0200000000000005,3.87,3.71,3.33,188.58,188.81,189.73,191.81,194.99,198.56,201.67000000000002,204.24,204.6,21.56,21.36,21.42,21.71,22.04,22.400000000000002,22.55,22.64,22.53,N/A,N/A +2012,3,26,3,30,101650,100470,99330,87.65,0,3.6,3.81,3.94,4.22,4.39,4.48,4.43,4.34,3.97,205.62,205.63,205.49,205.22,205.64000000000001,206.42000000000002,207.95000000000002,209.43,211.03,21.48,21.240000000000002,21.18,21.21,21.41,21.69,21.89,22.05,22.11,N/A,N/A +2012,3,26,4,30,101650,100470,99330,88.66,0,3.42,3.6,3.64,3.72,3.88,4.08,4.2,4.28,3.92,224.34,224.18,223.92000000000002,223.47,222.56,221.39000000000001,220.83,220.47,220.6,21.37,21.1,20.95,20.8,20.830000000000002,20.96,21.27,21.57,21.92,N/A,N/A +2012,3,26,5,30,101650,100470,99330,88.37,0,3.8200000000000003,4.01,4.04,4.1,4.3100000000000005,4.61,4.75,4.8500000000000005,4.54,234.65,234.68,234.6,234.43,233.54,232.24,231.21,230.39000000000001,232.03,21.29,21.01,20.86,20.72,20.71,20.78,21.01,21.25,21.64,N/A,N/A +2012,3,26,6,30,101680,100500,99360,87.47,0,3.49,3.63,3.64,3.66,3.9,4.28,4.49,4.64,4.17,239.82,239.74,239.65,239.5,238.56,237.14000000000001,236.19,235.46,237.24,21.330000000000002,21.04,20.89,20.73,20.78,20.95,21.36,21.75,21.94,N/A,N/A +2012,3,26,7,30,101700,100520,99380,85.21000000000001,0,3.33,3.48,3.52,3.58,3.9,4.38,4.48,4.49,4.18,249.14000000000001,248.91,248.66,248.25,246.53,243.98000000000002,243.07,242.62,243.20000000000002,21.45,21.17,21.03,20.89,21.06,21.38,21.68,21.93,21.98,N/A,N/A +2012,3,26,8,30,101700,100520,99380,84.98,0,2.89,3,3,2.99,3.2,3.5700000000000003,3.84,4.07,3.99,255.96,255.88,255.74,255.51000000000002,253.5,250.3,248.3,246.73000000000002,248.05,21.44,21.14,20.98,20.81,20.82,20.93,21.22,21.51,21.7,N/A,N/A +2012,3,26,9,30,101720,100530,99390,84.73,0,2.48,2.61,2.63,2.65,2.73,2.83,3.19,3.59,3.8000000000000003,250.18,249.86,249.62,249.27,248.47,247.45000000000002,244.78,241.88,241.57,21.41,21.12,20.96,20.78,20.63,20.5,20.61,20.77,21.14,N/A,N/A +2012,3,26,10,30,101730,100550,99410,84.85000000000001,0,2.85,3,3.02,3.0300000000000002,3.0500000000000003,3.08,3.21,3.38,3.99,252.47,252.19,252.02,251.79,251.46,251.09,249.94,248.68,245.74,21.37,21.07,20.900000000000002,20.72,20.54,20.38,20.25,20.150000000000002,20.490000000000002,N/A,N/A +2012,3,26,11,30,101750,100570,99430,84.73,0,2.42,2.5300000000000002,2.54,2.54,2.54,2.54,2.5500000000000003,2.58,2.96,249.3,249.39000000000001,249.42000000000002,249.43,249.44,249.45000000000002,249.31,249.16,248.01000000000002,21.31,21,20.830000000000002,20.650000000000002,20.46,20.29,20.11,19.96,19.900000000000002,N/A,N/A +2012,3,26,12,30,101780,100600,99460,85.76,0,1.9100000000000001,1.99,1.99,1.99,1.98,1.97,1.96,1.94,1.9100000000000001,246.07,246.17000000000002,246.31,246.43,246.57,246.71,246.88,247.06,248.03,21.22,20.900000000000002,20.73,20.54,20.35,20.16,19.97,19.79,19.44,N/A,N/A +2012,3,26,13,30,101810,100630,99480,87.28,0,1.77,1.83,1.82,1.81,1.8,1.79,1.78,1.76,1.75,246.12,245.87,245.75,245.6,245.41,245.22,244.93,244.63,243.28,21.13,20.81,20.64,20.45,20.25,20.07,19.88,19.7,19.35,N/A,N/A +2012,3,26,14,30,101850,100670,99520,90.03,0,1.47,1.51,1.5,1.49,1.48,1.46,1.45,1.43,1.4000000000000001,268.74,267.41,266.52,265.6,264.64,263.71,262.59000000000003,261.49,257.36,21.03,20.7,20.53,20.34,20.14,19.96,19.77,19.59,19.22,N/A,N/A +2012,3,26,15,30,101870,100680,99530,93.11,0,1.61,1.6,1.57,1.54,1.5,1.47,1.44,1.41,1.35,285.8,282.58,280.51,278.36,276.09000000000003,273.87,271.1,268.5,260.92,20.88,20.53,20.35,20.16,19.97,19.78,19.580000000000002,19.39,19.03,N/A,N/A +2012,3,26,16,30,101860,100680,99530,92.29,0,1.6400000000000001,1.62,1.58,1.54,1.49,1.44,1.3800000000000001,1.32,1.18,276.29,275.1,274.23,273.22,271.97,270.68,268.69,266.76,259.47,20.73,20.37,20.19,19.990000000000002,19.79,19.6,19.39,19.2,18.77,N/A,N/A +2012,3,26,17,30,101840,100650,99510,93.91,0,1.51,1.3900000000000001,1.29,1.18,1.05,0.93,0.76,0.63,0.38,278.79,279.69,280.29,280.99,282.31,283.71,289.34000000000003,294.57,295.78000000000003,20.48,20.13,19.96,19.78,19.6,19.44,19.28,19.14,19.080000000000002,N/A,N/A +2012,3,26,18,30,101820,100640,99490,94.83,0,1.78,1.75,1.69,1.62,1.51,1.4000000000000001,1.02,0.73,0.28,265.99,265.63,265.5,265.37,264.88,264.3,257.8,251.27,223.81,20.5,20.150000000000002,19.97,19.79,19.63,19.48,19.45,19.47,20.06,N/A,N/A +2012,3,26,19,30,101810,100630,99490,89.9,0,1.22,1.21,1.19,1.1500000000000001,1.11,1.07,1.01,0.93,0.5,206.57,204.95000000000002,203.78,202.17000000000002,198.37,193.76,181.53,170.07,154.98,20.990000000000002,20.650000000000002,20.490000000000002,20.31,20.19,20.1,20.31,20.56,20.94,N/A,N/A +2012,3,26,20,30,101770,100590,99440,87.77,0,1.74,1.77,1.75,1.73,1.7,1.6600000000000001,1.57,1.49,1.16,196.36,195.08,194.1,192.82,190.20000000000002,187.05,176.41,166.01,147.92000000000002,21.36,21.02,20.85,20.68,20.54,20.43,20.64,20.89,21.42,N/A,N/A +2012,3,26,21,30,101730,100550,99410,83.31,0,2.42,2.49,2.48,2.45,2.43,2.4,2.38,2.35,2.18,180.47,179.66,179.05,178.25,176.61,174.61,166.13,157.37,145.03,21.79,21.46,21.29,21.12,20.98,20.86,21.080000000000002,21.34,21.7,N/A,N/A +2012,3,26,22,30,101670,100490,99350,80.11,0,2.97,3.08,3.0700000000000003,3.0500000000000003,3.04,3.02,3.02,3.0100000000000002,2.91,177.25,176.57,176.06,175.4,174.12,172.57,166.76,160.70000000000002,150.26,22.04,21.73,21.57,21.39,21.25,21.13,21.25,21.41,21.75,N/A,N/A +2012,3,26,23,30,101650,100480,99340,82.32000000000001,0,3.22,3.38,3.4,3.39,3.41,3.44,3.5700000000000003,3.71,3.71,168.41,167.89000000000001,167.49,166.97,165.9,164.57,159.91,154.87,147.98,22.02,21.73,21.57,21.39,21.25,21.13,21.240000000000002,21.39,21.740000000000002,N/A,N/A +2012,3,27,0,30,101640,100460,99320,82.21000000000001,0,3.17,3.36,3.37,3.37,3.38,3.41,3.56,3.72,3.73,169.27,169.02,168.83,168.55,167.94,167.17000000000002,162.72,157.8,150.26,22.01,21.73,21.57,21.400000000000002,21.240000000000002,21.1,21.2,21.330000000000002,21.72,N/A,N/A +2012,3,27,1,30,101630,100450,99310,81.58,0,3.58,3.79,3.8000000000000003,3.79,3.8200000000000003,3.86,3.99,4.13,4.12,172.92000000000002,172.75,172.58,172.35,171.66,170.73,166.85,162.67000000000002,156.12,21.94,21.67,21.52,21.34,21.19,21.07,21.18,21.32,21.69,N/A,N/A +2012,3,27,2,30,101650,100470,99330,82.41,0,4.12,4.37,4.4,4.4,4.47,4.57,4.74,4.89,4.88,172.19,172.07,171.96,171.8,171.29,170.62,168.06,165.29,159.94,21.86,21.59,21.43,21.26,21.14,21.04,21.17,21.330000000000002,21.7,N/A,N/A +2012,3,27,3,30,101650,100470,99330,83.28,0,4.36,4.64,4.66,4.67,4.75,4.87,5.1000000000000005,5.33,5.34,169.56,169.45000000000002,169.38,169.27,168.95000000000002,168.52,166.85,164.99,160.26,21.76,21.48,21.32,21.150000000000002,21.03,20.94,21.1,21.29,21.68,N/A,N/A +2012,3,27,4,30,101650,100470,99320,83.92,0,4.37,4.65,4.68,4.68,4.69,4.7,4.9,5.13,5.48,167.82,167.76,167.68,167.6,167.46,167.31,166.5,165.59,162.14000000000001,21.650000000000002,21.36,21.2,21.01,20.84,20.67,20.61,20.59,21.22,N/A,N/A +2012,3,27,5,30,101650,100470,99330,84.92,0,4.5200000000000005,4.8,4.84,4.84,4.84,4.84,4.91,5,5.55,169,168.98,168.97,168.95000000000002,168.93,168.9,168.87,168.84,168.16,21.54,21.25,21.080000000000002,20.89,20.71,20.54,20.400000000000002,20.29,20.68,N/A,N/A +2012,3,27,6,30,101670,100490,99350,84.2,0,4.34,4.6000000000000005,4.64,4.64,4.65,4.65,4.69,4.73,5.18,170.29,170.29,170.28,170.27,170.25,170.24,170.24,170.25,170.82,21.53,21.21,21.04,20.86,20.68,20.51,20.35,20.2,20.31,N/A,N/A +2012,3,27,7,30,101720,100530,99390,83.72,0,4,4.24,4.28,4.3,4.3100000000000005,4.32,4.3500000000000005,4.39,4.84,175.51,175.47,175.45000000000002,175.42000000000002,175.4,175.37,175.34,175.31,175.78,21.56,21.25,21.080000000000002,20.89,20.71,20.53,20.36,20.2,20.16,N/A,N/A +2012,3,27,8,30,101710,100530,99380,84.42,0,4.01,4.24,4.2700000000000005,4.28,4.28,4.2700000000000005,4.2700000000000005,4.26,4.36,174.78,174.86,174.89000000000001,174.93,175,175.07,175.18,175.3,176.20000000000002,21.51,21.19,21.02,20.830000000000002,20.64,20.46,20.27,20.09,19.84,N/A,N/A +2012,3,27,9,30,101720,100540,99390,84.46000000000001,0,4.18,4.44,4.49,4.5,4.5,4.5,4.5,4.5,4.5600000000000005,180.08,179.99,179.98,179.97,179.96,179.96,179.95000000000002,179.95000000000002,180.03,21.5,21.18,21,20.81,20.62,20.44,20.25,20.07,19.740000000000002,N/A,N/A +2012,3,27,10,30,101740,100560,99420,83.74,0,4.04,4.29,4.34,4.36,4.37,4.37,4.38,4.38,4.4,186.27,186.18,186.14000000000001,186.09,186.03,185.97,185.9,185.83,185.66,21.5,21.18,21,20.81,20.62,20.44,20.25,20.07,19.71,N/A,N/A +2012,3,27,11,30,101770,100590,99450,84.82000000000001,0,3.7600000000000002,3.98,4.03,4.04,4.04,4.05,4.04,4.03,4.0200000000000005,185.05,185.06,185.06,185.07,185.08,185.09,185.1,185.11,185.17000000000002,21.43,21.1,20.93,20.740000000000002,20.54,20.36,20.16,19.98,19.6,N/A,N/A +2012,3,27,12,30,101800,100620,99470,84.86,0,3.41,3.62,3.66,3.67,3.68,3.69,3.69,3.69,3.69,179.01,178.99,179,179.01,179.03,179.04,179.06,179.08,179.14000000000001,21.39,21.07,20.89,20.7,20.5,20.32,20.12,19.94,19.55,N/A,N/A +2012,3,27,13,30,101830,100650,99510,85.54,0,3.47,3.68,3.71,3.74,3.74,3.75,3.75,3.7600000000000002,3.75,177.8,177.71,177.66,177.61,177.56,177.5,177.43,177.37,177.23,21.36,21.03,20.85,20.650000000000002,20.46,20.27,20.080000000000002,19.89,19.51,N/A,N/A +2012,3,27,14,30,101880,100700,99550,85.74,0,3.25,3.44,3.48,3.49,3.5100000000000002,3.5100000000000002,3.52,3.52,3.52,166.79,166.77,166.76,166.74,166.72,166.71,166.68,166.66,166.6,21.35,21.02,20.84,20.650000000000002,20.45,20.27,20.07,19.89,19.5,N/A,N/A +2012,3,27,15,30,101900,100720,99570,85.36,0,3.56,3.7600000000000002,3.81,3.84,3.85,3.87,3.88,3.89,3.91,158.21,158.25,158.24,158.21,158.19,158.16,158.11,158.08,157.97,21.43,21.09,20.92,20.72,20.53,20.35,20.150000000000002,19.97,19.580000000000002,N/A,N/A +2012,3,27,16,30,101900,100720,99570,84.67,0,3.85,4.11,4.17,4.21,4.24,4.26,4.28,4.3,4.33,159.13,158.97,158.9,158.83,158.77,158.72,158.65,158.59,158.47,21.54,21.2,21.02,20.82,20.63,20.44,20.240000000000002,20.06,19.67,N/A,N/A +2012,3,27,17,30,101900,100720,99580,82.28,0,4.28,4.58,4.66,4.71,4.74,4.7700000000000005,4.8,4.82,4.87,160.88,160.85,160.79,160.73,160.66,160.61,160.55,160.49,160.34,21.71,21.36,21.19,20.990000000000002,20.8,20.61,20.41,20.23,19.84,N/A,N/A +2012,3,27,18,30,101910,100730,99580,83.25,0,4.74,5.08,5.16,5.21,5.24,5.26,5.2700000000000005,5.29,5.3,161.92000000000002,161.74,161.66,161.59,161.52,161.47,161.41,161.36,161.28,21.78,21.43,21.25,21.05,20.86,20.67,20.47,20.29,19.900000000000002,N/A,N/A +2012,3,27,19,30,101900,100720,99580,82.86,0,4.64,4.97,5.04,5.09,5.12,5.14,5.16,5.18,5.2,161.38,161.22,161.15,161.07,160.99,160.92000000000002,160.85,160.78,160.64000000000001,21.86,21.52,21.34,21.150000000000002,20.95,20.77,20.57,20.38,20,N/A,N/A +2012,3,27,20,30,101890,100710,99570,82.3,0,4.36,4.69,4.7700000000000005,4.82,4.8500000000000005,4.88,4.9,4.92,4.94,153.14000000000001,153.22,153.3,153.38,153.46,153.53,153.62,153.69,153.87,21.95,21.61,21.44,21.240000000000002,21.05,20.86,20.66,20.48,20.09,N/A,N/A +2012,3,27,21,30,101870,100690,99540,82.45,0,3.89,4.15,4.22,4.26,4.29,4.32,4.34,4.36,4.4,155.16,155.18,155.18,155.18,155.18,155.18,155.19,155.19,155.21,22,21.68,21.5,21.31,21.12,20.93,20.740000000000002,20.56,20.17,N/A,N/A +2012,3,27,22,30,101840,100660,99520,82.33,0,4.3100000000000005,4.62,4.7,4.74,4.76,4.78,4.8,4.8100000000000005,4.82,146.44,147.18,147.62,148.02,148.39000000000001,148.72,149.06,149.36,149.97,21.98,21.66,21.490000000000002,21.3,21.1,20.92,20.72,20.54,20.150000000000002,N/A,N/A +2012,3,27,23,30,101820,100640,99490,84.23,0,4.13,4.43,4.5,4.54,4.57,4.59,4.61,4.63,4.67,146.67000000000002,146.58,146.46,146.31,146.16,146,145.82,145.65,145.22,21.88,21.57,21.400000000000002,21.21,21.01,20.830000000000002,20.63,20.45,20.07,N/A,N/A +2012,3,28,0,30,101790,100610,99470,85.35000000000001,0,5.36,5.83,5.94,5.99,6.03,6.05,6.0600000000000005,6.0600000000000005,6.05,147.13,147.53,147.70000000000002,147.86,147.98,148.1,148.20000000000002,148.29,148.48,21.92,21.62,21.45,21.25,21.06,20.88,20.68,20.490000000000002,20.1,N/A,N/A +2012,3,28,1,30,101800,100620,99470,86.96000000000001,0,5.19,5.63,5.74,5.8,5.8500000000000005,5.89,5.93,5.96,6.0200000000000005,139.53,139.46,139.41,139.35,139.29,139.23,139.17000000000002,139.11,138.98,21.82,21.5,21.330000000000002,21.14,20.95,20.76,20.57,20.38,20,N/A,N/A +2012,3,28,2,30,101810,100630,99480,87.14,0,6.25,6.78,6.9,6.96,7,7.03,7.04,7.0600000000000005,7.07,139.28,139.38,139.44,139.49,139.55,139.6,139.65,139.70000000000002,139.81,21.830000000000002,21.51,21.34,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A +2012,3,28,3,30,101810,100630,99490,87.31,0,6.66,7.25,7.4,7.48,7.53,7.57,7.59,7.61,7.63,139.49,139.56,139.67000000000002,139.77,139.88,139.98,140.1,140.21,140.48,21.8,21.490000000000002,21.32,21.12,20.93,20.740000000000002,20.54,20.36,19.98,N/A,N/A +2012,3,28,4,30,101810,100630,99480,85.67,0,6.51,7.08,7.19,7.24,7.26,7.2700000000000005,7.26,7.25,7.23,141.74,141.76,141.87,142.02,142.21,142.41,142.68,142.95000000000002,143.76,21.93,21.62,21.45,21.26,21.07,20.89,20.69,20.52,20.14,N/A,N/A +2012,3,28,5,30,101770,100590,99450,87.53,0,7.11,7.75,7.9,7.98,8.040000000000001,8.08,8.1,8.120000000000001,8.15,145.01,145.05,145.1,145.16,145.23,145.29,145.37,145.45000000000002,145.64000000000001,21.8,21.48,21.3,21.11,20.92,20.73,20.53,20.35,19.97,N/A,N/A +2012,3,28,6,30,101820,100640,99490,88.9,0,7.25,7.97,8.15,8.25,8.32,8.370000000000001,8.39,8.41,8.43,154.08,154.6,154.81,154.99,155.15,155.27,155.4,155.5,155.69,21.88,21.56,21.39,21.19,21,20.81,20.61,20.43,20.04,N/A,N/A +2012,3,28,7,30,101800,100620,99480,87.66,0,6.98,7.59,7.73,7.8100000000000005,7.86,7.890000000000001,7.91,7.92,7.930000000000001,152.99,153.14000000000001,153.21,153.27,153.34,153.41,153.48,153.54,153.70000000000002,21.86,21.54,21.37,21.17,20.98,20.8,20.6,20.42,20.03,N/A,N/A +2012,3,28,8,30,101790,100610,99470,88.33,0,6.54,7.12,7.25,7.32,7.37,7.4,7.41,7.43,7.43,156.13,156.19,156.21,156.25,156.28,156.31,156.36,156.4,156.52,21.85,21.54,21.36,21.17,20.98,20.79,20.59,20.41,20.03,N/A,N/A +2012,3,28,9,30,101760,100590,99440,86.32000000000001,0,7.03,7.63,7.76,7.82,7.86,7.88,7.890000000000001,7.9,7.92,155.06,155.3,155.47,155.66,155.87,156.09,156.37,156.64000000000001,157.5,21.92,21.61,21.44,21.25,21.06,20.88,20.69,20.52,20.150000000000002,N/A,N/A +2012,3,28,10,30,101770,100590,99450,87.24,0,6.24,6.7700000000000005,6.9,6.97,7.0200000000000005,7.0600000000000005,7.08,7.11,7.15,162.13,162.21,162.28,162.34,162.4,162.45000000000002,162.51,162.57,162.72,21.88,21.57,21.39,21.2,21,20.81,20.62,20.44,20.05,N/A,N/A +2012,3,28,11,30,101770,100590,99440,87.55,0,5.6000000000000005,6.17,6.33,6.44,6.5200000000000005,6.59,6.65,6.7,6.79,159.88,159.65,159.59,159.53,159.48,159.43,159.37,159.31,159.19,21.84,21.52,21.35,21.150000000000002,20.96,20.78,20.580000000000002,20.39,20.01,N/A,N/A +2012,3,28,12,30,101770,100600,99450,87.69,0,5.98,6.47,6.59,6.66,6.7,6.73,6.75,6.7700000000000005,6.8,166.18,166.32,166.38,166.43,166.47,166.5,166.54,166.57,166.70000000000002,21.94,21.64,21.47,21.28,21.09,20.91,20.72,20.54,20.17,N/A,N/A +2012,3,28,13,30,101790,100620,99470,88.46000000000001,0,6.6000000000000005,7.16,7.28,7.33,7.36,7.38,7.38,7.37,7.34,163.07,163.67000000000002,163.91,164.13,164.32,164.5,164.68,164.86,165.22,21.87,21.55,21.38,21.18,20.990000000000002,20.8,20.6,20.42,20.03,N/A,N/A +2012,3,28,14,30,101820,100640,99500,86.95,0,5.97,6.47,6.57,6.62,6.65,6.67,6.67,6.67,6.67,162.11,161.94,161.88,161.82,161.77,161.73,161.69,161.66,161.64000000000001,21.96,21.650000000000002,21.48,21.28,21.09,20.91,20.71,20.53,20.150000000000002,N/A,N/A +2012,3,28,15,30,101850,100670,99530,87.31,0,5.3500000000000005,5.78,5.87,5.92,5.95,5.97,5.98,5.98,5.98,165.03,165.06,165.07,165.06,165.06,165.05,165.04,165.03,165.02,21.96,21.64,21.47,21.27,21.080000000000002,20.89,20.7,20.52,20.13,N/A,N/A +2012,3,28,16,30,101860,100680,99530,87.23,0,5.0200000000000005,5.4,5.49,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,165.44,165.55,165.6,165.65,165.67000000000002,165.70000000000002,165.72,165.74,165.78,22,21.68,21.5,21.31,21.11,20.93,20.73,20.55,20.16,N/A,N/A +2012,3,28,17,30,101830,100650,99510,86.23,0,4.8100000000000005,5.16,5.24,5.29,5.32,5.34,5.36,5.38,5.41,169.18,169.03,168.98,168.94,168.9,168.86,168.82,168.78,168.71,22.04,21.71,21.54,21.34,21.150000000000002,20.96,20.76,20.580000000000002,20.2,N/A,N/A +2012,3,28,18,30,101800,100630,99480,87.01,0,4.7700000000000005,5.11,5.19,5.22,5.25,5.2700000000000005,5.28,5.29,5.3100000000000005,164.45000000000002,164.51,164.58,164.65,164.73,164.81,164.9,165,165.24,22.05,21.72,21.54,21.35,21.150000000000002,20.96,20.77,20.59,20.2,N/A,N/A +2012,3,28,19,30,101790,100610,99470,86,0,4.65,4.97,5.04,5.07,5.08,5.09,5.09,5.1000000000000005,5.09,170.68,170.66,170.63,170.6,170.56,170.52,170.47,170.44,170.36,22.13,21.8,21.62,21.43,21.240000000000002,21.05,20.85,20.67,20.29,N/A,N/A +2012,3,28,20,30,101730,100550,99410,86.79,0,5.15,5.5,5.57,5.6000000000000005,5.61,5.62,5.61,5.6000000000000005,5.58,166.31,166.35,166.39000000000001,166.42000000000002,166.44,166.47,166.48,166.49,166.54,22.1,21.77,21.6,21.400000000000002,21.21,21.02,20.82,20.64,20.25,N/A,N/A +2012,3,28,21,30,101690,100510,99370,87.24,0,5.24,5.64,5.73,5.78,5.8100000000000005,5.84,5.8500000000000005,5.86,5.87,166.91,167.13,167.23,167.36,167.48,167.61,167.76,167.9,168.22,22.09,21.77,21.6,21.400000000000002,21.21,21.02,20.830000000000002,20.64,20.26,N/A,N/A +2012,3,28,22,30,101620,100450,99310,87.56,0,4.7,5.04,5.12,5.17,5.2,5.22,5.23,5.25,5.29,177.70000000000002,177.49,177.36,177.20000000000002,177.06,176.91,176.73,176.55,176.11,21.97,21.66,21.490000000000002,21.29,21.1,20.92,20.72,20.54,20.16,N/A,N/A +2012,3,28,23,30,101580,100400,99260,87.2,0,5.26,5.68,5.7700000000000005,5.8100000000000005,5.84,5.86,5.87,5.87,5.88,171.07,172.04,172.65,173.27,173.86,174.44,175.05,175.61,176.84,21.97,21.67,21.5,21.3,21.11,20.93,20.73,20.55,20.17,N/A,N/A +2012,3,29,0,30,101540,100360,99220,89.37,0,5.07,5.48,5.57,5.63,5.67,5.7,5.72,5.74,5.78,162.96,162.86,162.81,162.72,162.64000000000001,162.55,162.44,162.33,162.1,21.77,21.46,21.28,21.09,20.900000000000002,20.71,20.51,20.330000000000002,19.95,N/A,N/A +2012,3,29,1,30,101560,100380,99240,89.67,0,5.79,6.26,6.38,6.43,6.47,6.5,6.51,6.5200000000000005,6.53,160.05,159.98,159.92000000000002,159.86,159.81,159.76,159.71,159.67000000000002,159.58,21.73,21.41,21.240000000000002,21.04,20.85,20.66,20.46,20.28,19.89,N/A,N/A +2012,3,29,2,30,101590,100410,99270,87.99,0,4.91,5.29,5.38,5.44,5.48,5.51,5.54,5.5600000000000005,5.6000000000000005,171.14000000000001,171.66,171.86,172.03,172.18,172.31,172.42000000000002,172.52,172.73,21.79,21.47,21.29,21.09,20.900000000000002,20.71,20.51,20.32,19.92,N/A,N/A +2012,3,29,3,30,101570,100390,99250,87.71000000000001,0,3.34,3.71,3.84,3.95,4.05,4.14,4.22,4.3,4.46,183.54,181.43,180.46,179.62,178.87,178.21,177.59,177.02,175.92000000000002,21.57,21.25,21.080000000000002,20.89,20.69,20.51,20.31,20.13,19.740000000000002,N/A,N/A +2012,3,29,4,30,101550,100370,99230,88.07000000000001,0,5.2,5.61,5.7,5.76,5.8,5.82,5.84,5.8500000000000005,5.86,172.12,172.24,172.32,172.39000000000001,172.44,172.48,172.52,172.56,172.59,21.63,21.3,21.13,20.93,20.740000000000002,20.55,20.35,20.17,19.78,N/A,N/A +2012,3,29,5,30,101500,100320,99180,88.49,0,4.64,4.92,4.96,4.97,4.97,4.97,4.95,4.94,4.92,166.34,166.46,166.51,166.58,166.67000000000002,166.77,166.92000000000002,167.06,167.5,21.51,21.18,21,20.81,20.61,20.42,20.22,20.04,19.650000000000002,N/A,N/A +2012,3,29,6,30,101510,100330,99190,90.5,0,5.62,6.05,6.15,6.2,6.23,6.25,6.26,6.2700000000000005,6.28,162.51,162.56,162.62,162.66,162.70000000000002,162.74,162.78,162.82,162.94,21.490000000000002,21.14,20.96,20.77,20.57,20.38,20.19,20.01,19.62,N/A,N/A +2012,3,29,7,30,101500,100320,99180,90.39,0,5.5600000000000005,5.98,6.0600000000000005,6.1000000000000005,6.12,6.13,6.13,6.12,6.08,153.37,153.58,153.66,153.74,153.8,153.87,153.93,154,154.13,21.580000000000002,21.240000000000002,21.07,20.87,20.67,20.490000000000002,20.29,20.1,19.72,N/A,N/A +2012,3,29,8,30,101500,100320,99180,90.10000000000001,0,5.37,5.7700000000000005,5.86,5.91,5.94,5.95,5.97,5.97,5.98,164.82,165.03,165.05,165.09,165.14000000000001,165.20000000000002,165.27,165.34,165.54,21.66,21.32,21.14,20.94,20.75,20.56,20.36,20.18,19.8,N/A,N/A +2012,3,29,9,30,101510,100330,99190,87.92,0,5.13,5.45,5.5200000000000005,5.54,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,171.47,171.52,171.64000000000001,171.75,171.86,171.97,172.11,172.24,172.61,21.7,21.38,21.2,21.01,20.82,20.63,20.44,20.26,19.88,N/A,N/A +2012,3,29,10,30,101460,100280,99140,88.32000000000001,0,4.08,4.32,4.36,4.38,4.39,4.39,4.39,4.39,4.46,153.02,153.18,153.32,153.48,153.66,153.85,154.14000000000001,154.42000000000002,155.99,21.650000000000002,21.32,21.150000000000002,20.96,20.77,20.59,20.400000000000002,20.23,19.91,N/A,N/A +2012,3,29,11,30,101460,100280,99140,87.93,0,4.36,4.68,4.75,4.78,4.8100000000000005,4.82,4.83,4.84,4.8500000000000005,149.8,150.03,150.22,150.39000000000001,150.54,150.68,150.85,151,151.42000000000002,21.75,21.42,21.25,21.05,20.86,20.67,20.48,20.29,19.91,N/A,N/A +2012,3,29,12,30,101450,100270,99130,84.3,0,4.91,5.29,5.37,5.42,5.45,5.48,5.51,5.54,5.66,144.99,145.53,145.86,146.22,146.58,146.96,147.45000000000002,147.92000000000002,149.58,21.91,21.6,21.43,21.240000000000002,21.05,20.87,20.68,20.5,20.150000000000002,N/A,N/A +2012,3,29,13,30,101460,100290,99150,87.69,0,5.2700000000000005,5.67,5.76,5.8100000000000005,5.83,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,146.62,146.91,147.06,147.22,147.39000000000001,147.55,147.77,147.97,148.56,21.85,21.53,21.36,21.17,20.98,20.8,20.6,20.43,20.06,N/A,N/A +2012,3,29,14,30,101500,100330,99190,86.24,0,5.26,5.63,5.69,5.71,5.7,5.68,5.66,5.62,5.55,145.05,145.15,145.14000000000001,145.1,145.02,144.95000000000002,144.85,144.77,144.64000000000001,21.95,21.63,21.46,21.27,21.080000000000002,20.89,20.7,20.51,20.13,N/A,N/A +2012,3,29,15,30,101500,100330,99190,87.17,0,5.28,5.64,5.71,5.73,5.74,5.74,5.73,5.72,5.68,143.26,143.51,143.66,143.79,143.92000000000002,144.04,144.18,144.31,144.66,21.82,21.490000000000002,21.32,21.13,20.94,20.75,20.56,20.38,20.01,N/A,N/A +2012,3,29,16,30,101500,100320,99180,82.72,0,4.97,5.32,5.39,5.42,5.44,5.44,5.44,5.43,5.4,142.69,142.93,143.13,143.33,143.53,143.72,143.95000000000002,144.17000000000002,144.76,22.06,21.75,21.57,21.38,21.2,21.01,20.82,20.64,20.27,N/A,N/A +2012,3,29,17,30,101460,100290,99150,84.99,0,5.0600000000000005,5.43,5.51,5.55,5.58,5.59,5.59,5.59,5.57,134.72,135.09,135.27,135.43,135.56,135.69,135.81,135.93,136.19,22.05,21.72,21.54,21.35,21.150000000000002,20.97,20.77,20.59,20.21,N/A,N/A +2012,3,29,18,30,101420,100250,99110,85.59,0,5.71,6.13,6.23,6.2700000000000005,6.3,6.3100000000000005,6.32,6.33,6.32,141.09,141.26,141.35,141.45000000000002,141.54,141.63,141.73,141.82,142.04,22.06,21.73,21.55,21.36,21.17,20.98,20.79,20.61,20.23,N/A,N/A +2012,3,29,19,30,101380,100210,99070,81.37,0,6.0600000000000005,6.5600000000000005,6.67,6.74,6.78,6.8100000000000005,6.84,6.86,6.9,144.19,144.44,144.62,144.8,144.98,145.14000000000001,145.33,145.49,145.89000000000001,22.28,21.96,21.79,21.61,21.42,21.240000000000002,21.05,20.87,20.5,N/A,N/A +2012,3,29,20,30,101330,100160,99020,80.27,0,6.44,7.0200000000000005,7.15,7.22,7.2700000000000005,7.3,7.3100000000000005,7.32,7.3,149.24,149.46,149.49,149.52,149.54,149.56,149.57,149.57,149.55,22.43,22.14,21.97,21.78,21.59,21.41,21.22,21.04,20.66,N/A,N/A +2012,3,29,21,30,101390,100210,99060,95,232.9,10.68,11.33,11.46,11.49,11.5,11.5,11.51,11.51,11.540000000000001,235.14000000000001,236.19,236.94,237.70000000000002,238.45000000000002,239.18,240.01,240.78,242.34,19.98,19.55,19.39,19.23,19.09,18.95,18.81,18.68,18.39,N/A,N/A +2012,3,29,22,30,101350,100160,99020,92.81,26.700000000000003,8.14,8.49,8.46,8.33,8.16,7.96,7.65,7.3500000000000005,6.74,337.09000000000003,338.54,339.66,341.17,343.37,345.87,351.41,356.90000000000003,11.63,20.04,19.62,19.45,19.27,19.12,18.97,18.86,18.77,18.67,N/A,N/A +2012,3,29,23,30,101330,100150,99000,91.05,0.4,2.79,2.87,2.87,2.86,2.84,2.81,2.79,2.7600000000000002,2.88,31.900000000000002,34.89,36.9,39.27,42.21,45.42,50.910000000000004,56.44,72.02,20.35,19.990000000000002,19.82,19.63,19.45,19.28,19.1,18.94,18.63,N/A,N/A +2012,3,30,0,30,101280,100100,98960,88.36,0,4.29,4.43,4.4,4.34,4.24,4.13,3.88,3.62,2.73,217.34,217.19,217.09,216.94,216.66,216.33,215,213.28,198.64000000000001,19.990000000000002,19.61,19.43,19.23,19.05,18.88,18.71,18.57,18.62,N/A,N/A +2012,3,30,1,30,101190,100010,98870,86.28,0,7.37,7.75,7.76,7.71,7.72,7.7700000000000005,7.61,7.43,6.72,178.26,178.31,178.36,178.45000000000002,178.68,178.96,179.77,180.63,183.33,20.25,19.88,19.73,19.59,19.580000000000002,19.63,20.01,20.39,20.94,N/A,N/A +2012,3,30,2,30,101240,100060,98920,84.82000000000001,0,6.0200000000000005,6.390000000000001,6.46,6.49,6.51,6.5200000000000005,6.55,6.6000000000000005,7.140000000000001,186.70000000000002,186.68,186.59,186.53,186.47,186.43,186.38,186.34,187.25,20.91,20.55,20.37,20.19,20.01,19.84,19.69,19.55,19.69,N/A,N/A +2012,3,30,3,30,101230,100050,98910,85.15,0,6.51,6.96,7.04,7.07,7.07,7.0600000000000005,7.03,7.01,7.05,192.24,192.20000000000002,192.22,192.24,192.28,192.32,192.4,192.49,193.39000000000001,21.07,20.7,20.53,20.330000000000002,20.150000000000002,19.97,19.79,19.62,19.36,N/A,N/A +2012,3,30,4,30,101210,100030,98890,84.81,0,7.3500000000000005,7.8100000000000005,7.87,7.88,7.92,7.97,8.24,8.53,8.11,185.93,185.99,186.07,186.18,186.39000000000001,186.65,187.53,188.48,189.55,21.35,21.01,20.85,20.68,20.54,20.42,20.57,20.77,21.32,N/A,N/A +2012,3,30,5,30,101190,100010,98880,79.35000000000001,0,4.29,4.48,4.75,5.5200000000000005,6.01,6.2700000000000005,6.43,6.54,6.74,198.71,198.71,198.4,197.54,196.33,194.94,193.64000000000001,192.48000000000002,190.52,21.89,21.62,21.6,21.77,21.91,22.04,21.97,21.86,21.54,N/A,N/A +2012,3,30,6,30,101190,100020,98880,83.17,0,4.2,4.46,4.5,4.5200000000000005,4.55,4.59,5.0600000000000005,5.62,6.42,181.87,181.72,181.64000000000001,181.56,181.52,181.5,182.63,183.99,187.38,21.72,21.41,21.25,21.06,20.89,20.72,20.68,20.67,20.96,N/A,N/A +2012,3,30,7,30,101210,100040,98900,85.27,0,3.94,4.2,4.32,4.54,5.21,6.23,6.69,6.98,7.63,182.76,182.98,183.39000000000001,184.17000000000002,186.17000000000002,189.22,190.58,191.45000000000002,193.77,21.67,21.38,21.240000000000002,21.1,21.080000000000002,21.14,21.17,21.19,21.27,N/A,N/A +2012,3,30,8,30,101220,100050,98920,87.14,0,3.37,3.5100000000000002,3.8000000000000003,4.75,5.38,5.71,6.05,6.37,7.0200000000000005,164.24,165.04,168.18,177.35,182.45000000000002,184.09,185.56,186.91,189.23,21.96,21.67,21.580000000000002,21.59,21.54,21.46,21.38,21.31,21.150000000000002,N/A,N/A +2012,3,30,9,30,101200,100020,98890,90.61,0,4.28,4.55,4.87,5.69,6.17,6.42,6.67,6.890000000000001,7.33,153.08,154.55,158.08,166.4,171.05,173.07,174.91,176.57,179.52,22,21.72,21.64,21.64,21.6,21.53,21.45,21.37,21.16,N/A,N/A +2012,3,30,10,30,101210,100040,98910,89.07000000000001,0,4.46,5.26,5.64,6.0200000000000005,6.3500000000000005,6.63,6.91,7.18,7.71,178.28,178.95000000000002,179.37,179.9,180.39000000000001,180.87,181.42000000000002,181.95000000000002,183.32,22.28,22.07,21.96,21.85,21.73,21.61,21.48,21.37,21.14,N/A,N/A +2012,3,30,11,30,101210,100040,98910,91.22,0,4.92,5.83,6.23,6.57,6.87,7.140000000000001,7.4,7.65,8.120000000000001,170,171.32,172.17000000000002,173.02,173.81,174.57,175.38,176.15,178.07,22.25,22.03,21.91,21.79,21.66,21.53,21.39,21.26,21.02,N/A,N/A +2012,3,30,12,30,101210,100040,98910,92.91,0,5.43,6.3500000000000005,6.74,7.0600000000000005,7.34,7.58,7.82,8.05,8.43,170.01,170.68,171.12,171.55,172.01,172.49,173.11,173.72,175.58,22.28,22.04,21.91,21.76,21.61,21.45,21.29,21.150000000000002,20.87,N/A,N/A +2012,3,30,13,30,101250,100080,98950,94.83,0,5.51,6.390000000000001,6.75,7.05,7.3,7.53,7.74,7.930000000000001,8.26,174.07,174.29,174.42000000000002,174.53,174.67000000000002,174.82,175.12,175.43,177.06,22.27,22.05,21.92,21.75,21.580000000000002,21.41,21.240000000000002,21.080000000000002,20.78,N/A,N/A +2012,3,30,14,30,101300,100130,98990,95.44,0,6.99,7.48,7.5600000000000005,7.59,7.6000000000000005,7.6000000000000005,7.62,7.65,7.72,176.5,176.54,176.45000000000002,176.31,176.19,176.08,176.22,176.41,180.11,21.400000000000002,21.05,20.87,20.67,20.46,20.27,20.04,19.82,19.59,N/A,N/A +2012,3,30,15,30,101330,100150,99010,97.17,0,5.55,5.86,5.91,5.93,6.08,6.28,6.55,6.8,6.94,187.72,186.55,185.68,184.52,182.37,179.65,176.93,174.39000000000001,172.9,21.1,20.76,20.59,20.41,20.3,20.23,20.16,20.09,19.89,N/A,N/A +2012,3,30,16,30,101310,100130,99000,96.14,0,6.12,6.53,6.6000000000000005,6.640000000000001,6.69,6.74,7.09,7.48,7.97,185.87,185,184.49,183.89000000000001,183.16,182.37,180.71,178.97,178.41,21.5,21.16,20.990000000000002,20.8,20.62,20.46,20.34,20.25,20.01,N/A,N/A +2012,3,30,17,30,101290,100120,98980,96.08,0,5.64,6.0600000000000005,6.16,6.23,6.3100000000000005,6.4,6.61,6.84,7.29,177.39000000000001,177.56,177.70000000000002,177.89000000000001,178.19,178.56,179.74,181.04,186.06,21.86,21.54,21.37,21.18,21.01,20.84,20.68,20.54,20.330000000000002,N/A,N/A +2012,3,30,18,30,101260,100090,98960,96.54,0,4.68,5,5.07,5.12,5.19,5.26,5.68,6.18,6.6000000000000005,178.52,178.73,178.91,179.15,179.47,179.82,182.41,185.58,189.27,22.27,21.95,21.78,21.59,21.43,21.28,21.14,21.02,20.8,N/A,N/A +2012,3,30,19,30,101250,100080,98950,94.88,0,5.26,5.7,5.8100000000000005,5.87,5.91,5.94,5.97,6,6.08,188.17000000000002,188.64000000000001,188.9,189.21,189.54,189.88,190.33,190.78,192.28,22.62,22.31,22.14,21.95,21.76,21.580000000000002,21.39,21.21,20.87,N/A,N/A +2012,3,30,20,30,101190,100020,98890,92.99,0,5.44,5.88,5.98,6.0200000000000005,6.04,6.05,6.0600000000000005,6.07,6.08,194.76,194.97,195.11,195.27,195.45000000000002,195.65,195.92000000000002,196.19,197.16,22.650000000000002,22.34,22.18,21.98,21.8,21.61,21.42,21.25,20.88,N/A,N/A +2012,3,30,21,30,101150,99980,98850,94,0,6.29,6.86,6.99,7.0600000000000005,7.11,7.140000000000001,7.15,7.17,7.2,195.23000000000002,195.36,195.44,195.52,195.6,195.68,195.8,195.9,196.27,22.57,22.28,22.12,21.93,21.740000000000002,21.56,21.37,21.19,20.82,N/A,N/A +2012,3,30,22,30,101120,99950,98820,95.45,0,6.41,7.140000000000001,7.36,7.54,7.69,7.8100000000000005,7.92,8.02,8.19,198.8,198.97,199.1,199.25,199.4,199.57,199.78,200,200.61,22.44,22.16,22,21.82,21.64,21.46,21.27,21.09,20.72,N/A,N/A +2012,3,30,23,30,101110,99940,98810,95.59,0,6.16,7.11,7.46,7.69,7.890000000000001,8.08,8.27,8.44,8.75,199.47,199.74,199.81,199.77,199.86,200.05,200.38,200.74,201.59,22.27,22.01,21.85,21.66,21.48,21.3,21.12,20.96,20.66,N/A,N/A +2012,3,31,0,30,101110,99940,98810,94.60000000000001,0,7.46,8.23,8.43,8.55,8.63,8.68,8.71,8.73,8.72,200,200.48000000000002,200.72,200.97,201.24,201.51,201.88,202.24,203.59,22.23,21.94,21.78,21.580000000000002,21.38,21.19,20.97,20.78,20.38,N/A,N/A +2012,3,31,1,30,101110,99940,98810,94.4,0,7.57,8.39,8.65,8.89,9.120000000000001,9.34,9.47,9.55,9.93,203.56,202.59,202.12,201.59,201.06,200.52,200.3,200.17000000000002,200.79,22.2,21.92,21.76,21.580000000000002,21.400000000000002,21.23,21.04,20.87,20.63,N/A,N/A +2012,3,31,2,30,101140,99970,98840,94.57000000000001,0,7.68,8.32,8.47,8.57,8.68,8.81,8.99,9.17,9.66,209.21,208.74,208.51,208.24,207.98000000000002,207.73000000000002,207.61,207.54,208.03,22,21.7,21.54,21.36,21.2,21.04,20.91,20.78,20.6,N/A,N/A +2012,3,31,3,30,101180,100010,98880,94.43,0,6.15,6.82,7.1000000000000005,7.46,7.83,8.22,8.6,8.950000000000001,9.56,200.3,200.64000000000001,201.12,201.92000000000002,203.07,204.51,206.03,207.49,210.35,22.11,21.86,21.740000000000002,21.61,21.54,21.490000000000002,21.45,21.41,21.39,N/A,N/A +2012,3,31,4,30,101170,100000,98870,93.73,0,7.140000000000001,7.9,8.1,8.28,8.46,8.66,8.89,9.120000000000001,9.46,208.86,209.52,209.76,210.08,210.39000000000001,210.69,210.77,210.8,210.16,21.900000000000002,21.61,21.44,21.25,21.080000000000002,20.91,20.73,20.57,20.2,N/A,N/A +2012,3,31,5,30,101180,100010,98880,89.53,0,5.84,6.98,7.55,8.14,8.63,9.06,9.41,9.73,10.11,204.91,205.74,206.55,207.89000000000001,209.06,210.12,210.95000000000002,211.67000000000002,212.25,22.330000000000002,22.21,22.16,22.12,22.03,21.92,21.77,21.63,21.26,N/A,N/A +2012,3,31,6,30,101210,100040,98910,87.06,0,6.2700000000000005,7.16,7.53,7.890000000000001,8.2,8.49,8.76,9.01,9.48,201.53,201.86,202.07,202.24,202.71,203.41,204.08,204.71,205.85,22.46,22.23,22.1,21.93,21.77,21.61,21.45,21.3,20.97,N/A,N/A +2012,3,31,7,30,101220,100050,98910,89.41,0,5.78,6.32,6.5,6.73,7.21,7.88,8.26,8.540000000000001,9.07,209.19,209.41,209.58,209.82,210.26,210.86,211.37,211.81,212.82,22.26,21.990000000000002,21.84,21.68,21.54,21.43,21.3,21.19,20.98,N/A,N/A +2012,3,31,8,30,101210,100040,98910,91.23,0,5.45,5.9,6.04,6.19,6.74,7.59,8.07,8.4,9.05,212.21,212.36,212.49,212.70000000000002,213.26,214.11,214.55,214.83,215.32,22.11,21.830000000000002,21.67,21.5,21.38,21.3,21.2,21.1,20.94,N/A,N/A +2012,3,31,9,30,101230,100060,98930,90.28,0,5.08,5.51,5.63,5.7700000000000005,6.22,6.92,7.3500000000000005,7.69,8.26,202.58,202.93,203.23000000000002,203.66,204.75,206.36,207.29,207.96,209.13,22.17,21.89,21.73,21.55,21.43,21.32,21.21,21.11,20.92,N/A,N/A +2012,3,31,10,30,101260,100090,98950,90.7,0,3.97,4.2700000000000005,4.36,4.49,5.0200000000000005,5.9,6.33,6.6000000000000005,7.16,198.91,199.3,199.73000000000002,200.39000000000001,202.54,206.02,207.48000000000002,208.26,209.69,22.150000000000002,21.87,21.71,21.54,21.44,21.39,21.29,21.2,21.05,N/A,N/A +2012,3,31,11,30,101270,100100,98960,91.37,0,4.09,4.43,4.78,5.64,6.2,6.49,6.8,7.08,7.69,206.46,207.08,207.99,209.97,211.14000000000001,211.66,212.13,212.56,213.31,22.12,21.85,21.740000000000002,21.67,21.580000000000002,21.490000000000002,21.400000000000002,21.32,21.17,N/A,N/A +2012,3,31,12,30,101310,100140,99000,91.72,0,3.74,4.03,4.3,4.97,5.42,5.7,5.97,6.22,6.72,204.26,204.61,205.26,206.74,207.73000000000002,208.35,208.98000000000002,209.58,210.82,22.16,21.89,21.76,21.650000000000002,21.54,21.44,21.330000000000002,21.23,21.03,N/A,N/A +2012,3,31,13,30,101340,100170,99040,92.28,0,3.5700000000000003,3.81,4.1,4.8,5.24,5.47,5.7,5.91,6.3100000000000005,193.44,193.95000000000002,195.37,198.59,200.57,201.56,202.59,203.56,205.52,22.14,21.86,21.740000000000002,21.66,21.57,21.45,21.330000000000002,21.22,21.01,N/A,N/A +2012,3,31,14,30,101390,100220,99080,93.03,0,3.15,3.3000000000000003,3.58,4.32,4.8,5.0600000000000005,5.3,5.5200000000000005,5.94,197.92000000000002,198.24,199.24,201.68,203.25,204.1,205.05,205.97,208,22.150000000000002,21.87,21.76,21.71,21.63,21.54,21.43,21.34,21.16,N/A,N/A +2012,3,31,15,30,101380,100210,99070,93.61,0,3.56,3.79,3.97,4.3500000000000005,4.76,5.19,5.44,5.61,5.9,187.39000000000001,188.13,189.23,191.37,193.33,195.19,196.49,197.53,200.06,22.21,21.91,21.77,21.63,21.54,21.47,21.37,21.27,21.11,N/A,N/A +2012,3,31,16,30,101380,100210,99080,93.92,0,3.77,3.99,4.04,4.08,4.18,4.32,4.79,5.3500000000000005,5.8,184,184.49,184.87,185.38,186.28,187.43,190.63,194.4,198.98000000000002,22.32,22,21.84,21.650000000000002,21.48,21.32,21.27,21.25,21.2,N/A,N/A +2012,3,31,17,30,101380,100210,99070,94.21000000000001,0,3.88,4.12,4.17,4.2,4.21,4.21,4.21,4.21,4.29,177.91,178.32,178.59,178.84,179.07,179.3,179.53,179.75,181.4,22.41,22.080000000000002,21.900000000000002,21.71,21.52,21.330000000000002,21.14,20.96,20.62,N/A,N/A +2012,3,31,18,30,101320,100150,99020,93.99,0,5.23,5.58,5.64,5.66,5.68,5.68,5.71,5.73,6,177.61,177.87,178.13,178.46,178.89000000000001,179.37,180.16,180.98,184.95000000000002,22.48,22.150000000000002,21.98,21.79,21.61,21.43,21.26,21.1,20.84,N/A,N/A +2012,3,31,19,30,101290,100130,98990,93.21000000000001,0,5.84,6.3,6.38,6.42,6.45,6.45,6.45,6.45,6.46,174.42000000000002,174.84,175.02,175.19,175.37,175.57,175.85,176.12,177.24,22.48,22.16,21.98,21.79,21.6,21.41,21.22,21.04,20.67,N/A,N/A +2012,3,31,20,30,101280,100110,98980,88.73,0,5.05,5.44,5.53,5.57,5.6000000000000005,5.62,5.66,5.7,5.91,171.05,171.75,172.27,172.86,173.54,174.26,175.28,176.29,179.88,22.6,22.3,22.14,21.95,21.77,21.6,21.42,21.25,20.94,N/A,N/A +2012,3,31,21,30,101250,100080,98950,88.3,0,4.64,5.04,5.14,5.2,5.24,5.28,5.32,5.3500000000000005,5.48,169.84,171.03,171.73,172.51,173.3,174.09,175.08,176.04,178.59,22.63,22.35,22.19,22,21.82,21.64,21.46,21.28,20.93,N/A,N/A +2012,3,31,22,30,101210,100050,98910,90.57000000000001,0,5.25,5.76,5.87,5.95,6.01,6.0600000000000005,6.12,6.18,6.37,176.49,176.35,176.29,176.22,176.18,176.15,176.15,176.16,176.36,22.47,22.18,22.01,21.82,21.64,21.46,21.27,21.1,20.75,N/A,N/A +2012,3,31,23,30,101190,100020,98880,85.79,0,5.19,5.65,5.75,5.83,5.92,6.0200000000000005,6.21,6.4,6.69,170.08,170.58,171.1,171.89000000000001,173.11,174.52,176.73,178.93,182.17000000000002,22.490000000000002,22.25,22.1,21.94,21.79,21.650000000000002,21.51,21.39,21.07,N/A,N/A +2012,4,1,0,30,101170,100000,98870,88.97,0,5.84,6.3500000000000005,6.47,6.57,6.69,6.84,6.95,7.05,7.2,169.14000000000001,169.57,170,170.65,171.66,172.91,174.49,176.02,179.34,22.31,22.06,21.91,21.75,21.6,21.47,21.32,21.18,20.96,N/A,N/A +2012,4,1,1,30,101180,100000,98870,89.78,0,6.4,6.95,7.07,7.140000000000001,7.21,7.29,7.42,7.55,7.84,175.09,174.92000000000002,174.85,174.77,174.69,174.63,174.79,174.97,175.95000000000002,22.23,21.95,21.79,21.61,21.43,21.27,21.12,20.98,20.76,N/A,N/A +2012,4,1,2,30,101180,100010,98880,89.68,0,5.66,6.54,6.95,7.34,7.68,7.98,8.16,8.290000000000001,8.19,173.39000000000001,174.41,175.1,175.96,176.87,177.82,178.68,179.43,181,22.32,22.150000000000002,22.07,21.990000000000002,21.94,21.89,21.81,21.72,21.43,N/A,N/A +2012,4,1,3,30,101180,100010,98880,93.14,0,6.3,6.8500000000000005,6.95,6.99,7.03,7.08,7.17,7.2700000000000005,7.76,177.23,177.28,177.4,177.54,177.77,178.03,178.6,179.20000000000002,181.55,22.1,21.81,21.64,21.45,21.26,21.080000000000002,20.91,20.75,20.6,N/A,N/A +2012,4,1,4,30,101170,100000,98870,94.51,0,6.22,6.7700000000000005,6.91,7.01,7.12,7.23,7.43,7.640000000000001,8.46,175.71,176.06,176.3,176.61,177,177.44,178.26,179.09,182.17000000000002,22.05,21.75,21.580000000000002,21.400000000000002,21.22,21.04,20.87,20.72,20.47,N/A,N/A +2012,4,1,5,30,101150,99970,98840,95.96000000000001,0,5.94,6.48,6.62,6.71,6.79,6.87,6.97,7.0600000000000005,7.46,177.12,177.31,177.42000000000002,177.54,177.70000000000002,177.86,178.08,178.3,179.18,21.85,21.5,21.3,21.09,20.91,20.77,20.61,20.47,20.13,N/A,N/A +2012,4,1,6,30,101140,99970,98830,95.67,0,6.82,7.44,7.59,7.7,7.79,7.87,7.99,8.11,8.5,187.35,186.54,186.13,185.73,185.34,184.97,184.56,184.17000000000002,183.75,21.69,21.35,21.17,20.98,20.82,20.67,20.53,20.41,20.080000000000002,N/A,N/A +2012,4,1,7,30,101160,99980,98850,93.91,0,6.21,6.78,6.93,7.0200000000000005,7.11,7.18,7.28,7.37,7.72,192.75,192.55,192.52,192.49,192.46,192.44,192.4,192.36,192.09,21.77,21.43,21.25,21.05,20.86,20.67,20.47,20.28,19.900000000000002,N/A,N/A +2012,4,1,8,30,101130,99960,98830,93.39,0,5.12,5.57,5.68,5.7700000000000005,5.86,5.95,6.09,6.24,6.91,192.77,193.01,193.15,193.31,193.48000000000002,193.65,193.9,194.14000000000001,194.88,22.02,21.71,21.53,21.34,21.150000000000002,20.96,20.78,20.6,20.27,N/A,N/A +2012,4,1,9,30,101130,99960,98820,94.38,0,4.32,4.66,4.74,4.8,4.84,4.87,4.91,4.95,5.18,183.24,183.27,183.31,183.35,183.41,183.48,183.62,183.76,184.79,22.04,21.72,21.54,21.35,21.150000000000002,20.97,20.76,20.580000000000002,20.27,N/A,N/A +2012,4,1,10,30,101130,99960,98820,93.7,0,4.22,4.57,4.66,4.72,4.7700000000000005,4.82,4.88,4.94,5.24,185.37,185.76,186.01,186.27,186.52,186.77,187.05,187.33,188.19,22.07,21.75,21.580000000000002,21.39,21.2,21.02,20.830000000000002,20.650000000000002,20.26,N/A,N/A +2012,4,1,11,30,101120,99950,98820,93.41,0,4.03,4.3500000000000005,4.42,4.47,4.5200000000000005,4.55,4.6000000000000005,4.65,4.91,177.9,178.33,178.6,178.89000000000001,179.21,179.54,180,180.44,182.28,22.080000000000002,21.77,21.6,21.41,21.22,21.03,20.84,20.650000000000002,20.29,N/A,N/A +2012,4,1,12,30,101150,99980,98850,92.91,0,4.13,4.47,4.55,4.6000000000000005,4.64,4.68,4.76,4.82,5.25,170.52,170.85,171.1,171.39000000000001,171.73,172.08,172.64000000000001,173.20000000000002,175.98,22.13,21.830000000000002,21.66,21.47,21.28,21.1,20.91,20.740000000000002,20.41,N/A,N/A +2012,4,1,13,30,101140,99970,98840,93.02,0,4.05,4.38,4.47,4.55,4.66,4.8,5.07,5.3500000000000005,5.75,169.58,170.04,170.4,170.82,171.37,171.98,172.9,173.84,175.87,22.14,21.84,21.68,21.490000000000002,21.31,21.150000000000002,20.98,20.84,20.54,N/A,N/A +2012,4,1,14,30,101180,100010,98880,93.69,0,4.32,4.7,4.79,4.87,4.97,5.07,5.25,5.42,5.61,168.96,169.28,169.64000000000001,170.13,170.76,171.46,172.3,173.12,174.49,22.26,21.95,21.78,21.59,21.41,21.240000000000002,21.06,20.89,20.54,N/A,N/A +2012,4,1,15,30,101180,100010,98880,89.85000000000001,0,4.19,4.6000000000000005,4.72,4.8,4.88,4.97,5.08,5.2,5.7700000000000005,178.21,178.16,178.11,178.08,178.1,178.16,178.47,178.82,180.08,22.53,22.23,22.07,21.89,21.7,21.53,21.35,21.19,20.88,N/A,N/A +2012,4,1,16,30,101180,100010,98880,90.84,0,4.43,4.8100000000000005,4.91,4.97,5.03,5.07,5.12,5.17,5.4,168.44,168.65,168.78,168.9,169.04,169.18,169.4,169.6,170.58,22.52,22.21,22.04,21.85,21.66,21.48,21.29,21.11,20.75,N/A,N/A +2012,4,1,17,30,101140,99980,98840,90.66,0,4.45,4.8,4.88,4.92,4.95,4.98,5,5.0200000000000005,5.08,170.02,169.67000000000002,169.56,169.46,169.37,169.28,169.20000000000002,169.13,168.96,22.64,22.32,22.150000000000002,21.95,21.76,21.580000000000002,21.38,21.2,20.82,N/A,N/A +2012,4,1,18,30,101120,99960,98830,90.35000000000001,0,4.95,5.3500000000000005,5.43,5.47,5.5,5.53,5.54,5.57,5.66,161.25,161.62,161.89000000000001,162.22,162.57,162.95000000000002,163.48,164,165.74,22.79,22.47,22.3,22.11,21.92,21.740000000000002,21.56,21.38,21.03,N/A,N/A +2012,4,1,19,30,101100,99940,98810,90.33,0,5.23,5.7,5.8100000000000005,5.88,5.94,5.98,6.0200000000000005,6.0600000000000005,6.18,165.88,166.19,166.4,166.64000000000001,166.88,167.11,167.4,167.66,168.35,22.87,22.57,22.400000000000002,22.21,22.02,21.84,21.64,21.47,21.09,N/A,N/A +2012,4,1,20,30,101040,99880,98750,92.21000000000001,0,5.07,5.5,5.59,5.64,5.69,5.72,5.76,5.8100000000000005,6.01,158.18,158.59,158.89000000000001,159.23,159.61,159.99,160.5,160.99,162.55,22.88,22.6,22.43,22.25,22.07,21.89,21.7,21.53,21.2,N/A,N/A +2012,4,1,21,30,100990,99830,98700,90.82000000000001,0,5.76,6.3,6.42,6.5,6.54,6.5600000000000005,6.59,6.6000000000000005,6.62,158.38,158.62,158.77,158.91,159.05,159.19,159.32,159.47,159.81,22.990000000000002,22.71,22.55,22.36,22.18,22,21.81,21.63,21.26,N/A,N/A +2012,4,1,22,30,100960,99800,98670,92.71000000000001,0,5.7,6.3,6.47,6.57,6.66,6.73,6.78,6.84,6.92,153.02,153.20000000000002,153.32,153.46,153.57,153.67000000000002,153.76,153.86,154.13,22.81,22.55,22.39,22.21,22.02,21.85,21.650000000000002,21.48,21.11,N/A,N/A +2012,4,1,23,30,100930,99770,98640,94.37,0,5.29,5.93,6.140000000000001,6.32,6.48,6.62,6.7700000000000005,6.91,7.21,146.47,146.97,147.3,147.68,148.05,148.43,148.87,149.29,150.33,22.66,22.400000000000002,22.25,22.080000000000002,21.900000000000002,21.72,21.54,21.36,21,N/A,N/A +2012,4,2,0,30,100900,99730,98610,94.3,0,4.87,5.59,5.87,6.16,6.44,6.71,6.99,7.2700000000000005,7.76,157.70000000000002,158.33,158.79,159.3,159.76,160.19,160.56,160.89000000000001,161.18,22.72,22.48,22.35,22.2,22.05,21.900000000000002,21.740000000000002,21.59,21.26,N/A,N/A +2012,4,2,1,30,100880,99720,98590,92.67,0,6.49,7.33,7.59,7.8,7.98,8.120000000000001,8.24,8.34,8.49,148.58,148.85,149.14000000000001,149.51,149.93,150.37,150.93,151.47,152.86,22.75,22.51,22.36,22.18,22.01,21.84,21.66,21.5,21.150000000000002,N/A,N/A +2012,4,2,2,30,100880,99720,98590,94.12,0,6.51,7.390000000000001,7.69,7.95,8.19,8.4,8.620000000000001,8.82,9.25,142.93,143.95000000000002,144.61,145.33,146.08,146.82,147.67000000000002,148.47,150.31,22.72,22.48,22.34,22.18,22.02,21.86,21.7,21.55,21.25,N/A,N/A +2012,4,2,3,30,100870,99710,98580,93.93,0,6.41,7.28,7.58,7.8500000000000005,8.09,8.32,8.56,8.78,9.3,148.24,148.37,148.48,148.64000000000001,148.85,149.1,149.48,149.87,151.25,22.69,22.45,22.31,22.150000000000002,22,21.85,21.7,21.57,21.3,N/A,N/A +2012,4,2,4,30,100830,99660,98540,95.42,0,6.69,7.6000000000000005,7.930000000000001,8.2,8.44,8.66,8.89,9.1,9.65,149.46,149.99,150.43,150.9,151.4,151.89000000000001,152.46,153,154.49,22.53,22.27,22.11,21.93,21.75,21.57,21.39,21.22,20.900000000000002,N/A,N/A +2012,4,2,5,30,100780,99610,98490,94.39,0,6.66,7.58,7.890000000000001,8.14,8.35,8.53,8.69,8.84,9.23,146.59,146.11,145.86,145.62,145.4,145.22,145.08,144.96,145.28,22.62,22.36,22.2,22.02,21.84,21.66,21.47,21.29,21.01,N/A,N/A +2012,4,2,6,30,100810,99650,98520,93.43,0,6.55,7.36,7.640000000000001,7.87,8.09,8.290000000000001,8.49,8.68,9.13,149.43,149.68,149.87,150.12,150.38,150.65,150.96,151.25,151.93,22.66,22.41,22.27,22.09,21.92,21.75,21.57,21.41,21.07,N/A,N/A +2012,4,2,7,30,100780,99620,98490,94.32000000000001,0,6.78,7.62,7.890000000000001,8.11,8.290000000000001,8.45,8.6,8.73,9.05,158.12,158.5,158.77,158.97,159.16,159.35,159.51,159.66,160.01,22.64,22.36,22.2,22.02,21.830000000000002,21.66,21.46,21.28,20.93,N/A,N/A +2012,4,2,8,30,100750,99580,98460,91.85000000000001,0,8.58,9.78,10.18,10.5,10.77,11,11.19,11.36,11.64,161.48,162.18,162.61,163.06,163.45000000000002,163.82,164.15,164.44,164.9,22.84,22.62,22.48,22.32,22.150000000000002,22,21.830000000000002,21.67,21.330000000000002,N/A,N/A +2012,4,2,9,30,100810,99640,98500,87.28,0,12.61,13.86,14.17,14.35,14.48,14.58,14.67,14.76,15.040000000000001,179.86,179.99,180,180.03,180.06,180.09,180.14000000000001,180.19,180.38,20.75,20.32,20.13,19.93,19.75,19.57,19.39,19.22,18.900000000000002,N/A,N/A +2012,4,2,10,30,100650,99480,98350,79.23,0,7.36,7.96,8.11,8.25,8.56,8.93,9.53,10.1,10.72,179.57,179.26,179.03,178.72,178.06,177.28,175.72,174.13,170.93,21.92,21.61,21.47,21.32,21.240000000000002,21.19,21.28,21.39,21.66,N/A,N/A +2012,4,2,11,30,100690,99520,98390,80.02,0,8.91,9.700000000000001,9.93,10.19,10.51,10.88,11.35,11.82,12.69,211.56,211.33,211.03,210.56,209.98000000000002,209.35,208.59,207.84,206.38,22.44,22.17,22.04,21.89,21.78,21.68,21.64,21.62,21.63,N/A,N/A +2012,4,2,12,30,100750,99580,98450,83.79,21.6,9.59,10.4,10.58,10.67,10.76,10.84,10.93,11,10.65,163.93,163.65,163.64000000000001,163.66,163.84,164.12,164.93,165.82,169.35,21.68,21.36,21.2,21.04,20.91,20.79,20.72,20.67,20.62,N/A,N/A +2012,4,2,13,30,100750,99590,98460,83.07000000000001,0,7.48,8.08,8.22,8.28,8.34,8.39,8.51,8.63,9.120000000000001,152.52,152.43,152.35,152.27,152.20000000000002,152.14000000000001,152.17000000000002,152.21,153.42000000000002,22.080000000000002,21.77,21.61,21.43,21.26,21.09,20.94,20.8,20.59,N/A,N/A +2012,4,2,14,30,100780,99610,98480,81.73,0,8.620000000000001,9.41,9.55,9.620000000000001,9.65,9.67,9.68,9.69,9.83,147.02,147.07,147.11,147.16,147.23,147.31,147.44,147.57,148.31,22.32,22.02,21.85,21.66,21.47,21.3,21.11,20.93,20.6,N/A,N/A +2012,4,2,15,30,100780,99620,98490,84.21000000000001,0,7.98,8.73,9.01,9.36,9.89,10.55,10.93,11.22,11.700000000000001,151.46,152.29,153.20000000000002,154.67000000000002,157.26,160.62,162.77,164.46,167.72,22.56,22.32,22.19,22.07,22,21.97,21.92,21.87,21.72,N/A,N/A +2012,4,2,16,30,100820,99660,98530,84.36,0,8.75,9.57,9.73,9.81,9.86,9.89,10.08,10.290000000000001,10.73,137.6,137.66,137.93,138.31,138.78,139.33,141.28,143.48,149.19,22.48,22.2,22.05,21.86,21.7,21.53,21.400000000000002,21.29,21.150000000000002,N/A,N/A +2012,4,2,17,30,100820,99650,98520,87.16,0,10.21,11.14,11.33,11.4,11.44,11.450000000000001,11.43,11.42,11.36,114.12,114.16,114.27,114.38,114.51,114.64,114.82000000000001,114.99000000000001,115.57000000000001,21.56,21.19,21.01,20.81,20.62,20.44,20.25,20.07,19.71,N/A,N/A +2012,4,2,18,30,100830,99660,98530,83.93,0,8.35,9.07,9.23,9.3,9.34,9.370000000000001,9.4,9.42,9.59,124.78,125.19,125.48,125.82000000000001,126.2,126.60000000000001,127.19,127.75,130.24,21.94,21.62,21.45,21.26,21.080000000000002,20.900000000000002,20.72,20.56,20.25,N/A,N/A +2012,4,2,19,30,100840,99670,98540,84.31,0,8.19,8.94,9.11,9.200000000000001,9.26,9.31,9.36,9.41,10.11,128.03,128.72,128.81,128.96,129.16,129.4,129.74,130.07,133.22,22.13,21.81,21.650000000000002,21.46,21.28,21.1,20.93,20.76,20.57,N/A,N/A +2012,4,2,20,30,100760,99600,98470,84.17,0,8.72,9.49,9.65,9.75,9.94,10.17,10.73,11.34,11.86,111.16,111.57000000000001,112.06,112.73,113.92,115.4,118.41,121.61,125.28,22.31,22.02,21.86,21.69,21.54,21.41,21.36,21.330000000000002,21.28,N/A,N/A +2012,4,2,21,30,100720,99560,98430,89.55,0,9.35,10.22,10.42,10.57,10.82,11.13,11.75,12.4,12.99,115.8,116.22,116.58,117.08,117.9,118.9,122.05,125.53,129.34,22.34,22.04,21.89,21.71,21.54,21.39,21.330000000000002,21.29,21.22,N/A,N/A +2012,4,2,22,30,100690,99520,98400,90.4,0,8.74,9.59,9.81,10,10.39,10.9,11.290000000000001,11.620000000000001,12.01,116.32000000000001,116.75,117.13,117.72,118.78,120.17,122.74000000000001,125.45,129.42000000000002,22.45,22.17,22.01,21.84,21.69,21.57,21.48,21.42,21.34,N/A,N/A +2012,4,2,23,30,100670,99500,98380,92.57000000000001,0,7.930000000000001,9.09,9.540000000000001,9.96,10.32,10.620000000000001,10.89,11.120000000000001,11.55,122.68,124.12,125.25,126.78,128.41,130.09,131.84,133.48,136.81,22.76,22.57,22.48,22.38,22.29,22.2,22.080000000000002,21.96,21.64,N/A,N/A +2012,4,3,0,30,100670,99510,98390,96.88,0,8.620000000000001,9.82,10.24,10.58,10.89,11.17,11.44,11.68,12.19,127.2,127.46000000000001,127.65,127.88000000000001,128.14000000000001,128.42000000000002,128.78,129.13,130.01,22.89,22.66,22.52,22.35,22.22,22.12,22.04,21.97,21.84,N/A,N/A +2012,4,3,1,30,100670,99510,98390,94.54,0,9.42,10.77,11.24,11.66,12,12.3,12.58,12.84,13.31,137.47,136.83,136.65,136.54,136.6,136.78,137.29,137.89000000000001,140.45000000000002,23.3,23.13,23.02,22.87,22.73,22.59,22.45,22.32,22.06,N/A,N/A +2012,4,3,2,30,100680,99530,98400,95.18,0,7.65,8.8,9.16,9.46,9.700000000000001,9.91,10.1,10.26,10.64,135.39000000000001,135.46,135.62,135.84,136.15,136.49,137.03,137.58,139.66,23.2,23.05,22.95,22.82,22.69,22.55,22.400000000000002,22.26,21.96,N/A,N/A +2012,4,3,3,30,100700,99540,98420,94.60000000000001,0.4,8.620000000000001,10.03,10.58,11.1,11.52,11.89,12.13,12.3,12.16,133.1,133.87,134.52,135.41,136.39000000000001,137.48,138.77,140.04,143.33,23.17,22.98,22.86,22.69,22.52,22.34,22.150000000000002,21.97,21.64,N/A,N/A +2012,4,3,4,30,100710,99550,98430,95.81,0,7.33,8.46,8.870000000000001,9.25,9.6,9.94,10.28,10.6,11.290000000000001,143.6,144.07,144.38,144.79,145.26,145.78,146.41,147.03,148.55,22.97,22.76,22.62,22.47,22.32,22.17,22.01,21.87,21.57,N/A,N/A +2012,4,3,5,30,100730,99570,98450,94.94,0,6.68,7.74,8.15,8.540000000000001,8.9,9.25,9.61,9.94,10.65,147.94,148.27,148.52,148.83,149.15,149.49,149.87,150.25,151.17000000000002,22.92,22.71,22.580000000000002,22.42,22.27,22.12,21.97,21.830000000000002,21.53,N/A,N/A +2012,4,3,6,30,100800,99640,98510,93.47,0,7.04,8.01,8.370000000000001,8.700000000000001,8.99,9.27,9.56,9.83,10.41,149.22,149.48,149.67000000000002,149.89000000000001,150.12,150.34,150.6,150.85,151.46,23.080000000000002,22.85,22.71,22.55,22.39,22.23,22.06,21.91,21.6,N/A,N/A +2012,4,3,7,30,100810,99650,98520,91.78,0,7.67,8.74,9.120000000000001,9.47,9.78,10.08,10.39,10.67,11.3,155.53,155.67000000000002,155.77,155.88,155.99,156.11,156.25,156.39000000000001,156.75,23.18,22.96,22.82,22.66,22.51,22.35,22.19,22.04,21.73,N/A,N/A +2012,4,3,8,30,100810,99650,98530,90.31,0,7.84,8.94,9.32,9.67,9.98,10.27,10.57,10.85,11.46,151.62,151.84,152.02,152.23,152.45000000000002,152.68,152.95000000000002,153.21,153.88,23.22,23.02,22.88,22.72,22.57,22.41,22.26,22.11,21.81,N/A,N/A +2012,4,3,9,30,100850,99690,98560,88.85000000000001,0,7.86,8.97,9.370000000000001,9.72,10.040000000000001,10.34,10.63,10.91,11.48,148.36,148.64000000000001,148.86,149.11,149.36,149.63,149.92000000000002,150.20000000000002,150.86,23.27,23.07,22.95,22.79,22.63,22.48,22.32,22.17,21.86,N/A,N/A +2012,4,3,10,30,100820,99660,98540,86.85000000000001,0,8.27,9.46,9.870000000000001,10.25,10.58,10.89,11.21,11.51,12.15,149.89000000000001,150.11,150.32,150.57,150.84,151.11,151.43,151.74,152.47,23.34,23.150000000000002,23.02,22.87,22.73,22.580000000000002,22.43,22.29,22,N/A,N/A +2012,4,3,11,30,100860,99700,98580,86.06,0,8.41,9.61,10.05,10.44,10.790000000000001,11.1,11.43,11.73,12.38,145.83,146.34,146.65,147.02,147.39000000000001,147.76,148.18,148.59,149.53,23.37,23.19,23.07,22.92,22.77,22.62,22.48,22.330000000000002,22.04,N/A,N/A +2012,4,3,12,30,100880,99720,98590,85.17,0,7.9,9.05,9.450000000000001,9.81,10.13,10.43,10.74,11.040000000000001,11.69,145.56,145.96,146.24,146.6,146.99,147.4,147.89000000000001,148.36,149.52,23.38,23.21,23.09,22.95,22.8,22.66,22.52,22.39,22.12,N/A,N/A +2012,4,3,13,30,100920,99760,98640,83.62,0,9.02,10.27,10.71,11.08,11.42,11.73,12.05,12.34,12.99,147.51,147.81,147.97,148.18,148.4,148.64000000000001,148.94,149.23,149.97,23.46,23.3,23.19,23.05,22.91,22.77,22.62,22.490000000000002,22.23,N/A,N/A +2012,4,3,14,30,100930,99770,98650,83.67,0,8.91,10.16,10.59,10.97,11.31,11.63,11.950000000000001,12.25,12.93,144.36,144.81,145.13,145.5,145.9,146.3,146.77,147.22,148.31,23.51,23.35,23.240000000000002,23.1,22.96,22.830000000000002,22.69,22.57,22.330000000000002,N/A,N/A +2012,4,3,15,30,100990,99830,98710,84.02,0,8.01,9.16,9.59,9.96,10.290000000000001,10.6,10.91,11.19,11.8,142.68,143.22,143.58,144.01,144.46,144.94,145.49,146.03,147.4,23.56,23.39,23.27,23.13,22.98,22.84,22.69,22.56,22.3,N/A,N/A +2012,4,3,16,30,101020,99850,98730,84.7,0,7.7700000000000005,8.85,9.24,9.6,9.91,10.21,10.53,10.82,11.51,138.46,138.98,139.35,139.82,140.33,140.88,141.55,142.22,144,23.56,23.39,23.27,23.13,22.990000000000002,22.85,22.71,22.59,22.36,N/A,N/A +2012,4,3,17,30,101000,99840,98710,85.79,0,8.120000000000001,9.24,9.620000000000001,9.96,10.27,10.55,10.83,11.1,11.67,147.47,147.62,147.74,147.88,148.03,148.20000000000002,148.41,148.62,149.19,23.54,23.35,23.22,23.06,22.91,22.76,22.6,22.45,22.14,N/A,N/A +2012,4,3,18,30,101040,99880,98760,86.94,0,6.11,6.91,7.21,7.46,7.7,7.930000000000001,8.16,8.39,8.88,142.54,143.04,143.36,143.73,144.13,144.53,144.99,145.43,146.48,23.54,23.32,23.18,23.02,22.86,22.7,22.53,22.38,22.06,N/A,N/A +2012,4,3,19,30,101030,99870,98750,89.66,0,6.19,6.91,7.23,7.66,7.95,8.16,8.42,8.69,9.26,141.91,142.6,143.26,144.3,145.13,145.82,146.69,147.56,149.44,23.47,23.22,23.080000000000002,22.92,22.75,22.57,22.400000000000002,22.25,21.94,N/A,N/A +2012,4,3,20,30,101040,99880,98760,91.01,0,5.2,6.05,6.390000000000001,6.640000000000001,6.88,7.11,7.36,7.59,8.1,131.99,133.8,135.15,136.73,138.04,139.18,140.35,141.47,143.81,23.48,23.23,23.07,22.89,22.72,22.55,22.37,22.21,21.87,N/A,N/A +2012,4,3,21,30,100960,99800,98680,92.25,0,5.99,6.82,7.11,7.36,7.59,7.8,8.02,8.22,8.66,130.6,131.25,131.71,132.31,132.98,133.67000000000002,134.53,135.38,137.56,23.38,23.16,23.03,22.87,22.7,22.55,22.38,22.22,21.900000000000002,N/A,N/A +2012,4,3,22,30,100880,99730,98600,93.08,0,7.3,8.35,8.72,9.06,9.370000000000001,9.66,9.94,10.21,10.73,130.99,131.83,132.39000000000001,133.16,134.05,135.03,136.19,137.32,140,23.400000000000002,23.21,23.09,22.95,22.8,22.66,22.51,22.37,22.05,N/A,N/A +2012,4,3,23,30,100900,99740,98620,94.10000000000001,0,6.28,7.2700000000000005,7.640000000000001,7.98,8.290000000000001,8.59,8.88,9.16,9.78,130.8,131.64000000000001,132.26,133.05,133.92000000000002,134.86,136.03,137.20000000000002,140.65,23.330000000000002,23.12,22.990000000000002,22.84,22.69,22.55,22.400000000000002,22.27,22.02,N/A,N/A +2012,4,4,0,30,100890,99730,98600,95.27,0.4,5.98,6.92,7.28,7.640000000000001,7.99,8.32,8.69,9.06,10,127.97,129.21,130.19,131.55,133.14000000000001,134.88,137.07,139.28,145.74,23.29,23.09,22.97,22.830000000000002,22.7,22.57,22.45,22.35,22.19,N/A,N/A +2012,4,4,1,30,100900,99730,98610,96.31,0.4,6.59,7.6000000000000005,7.98,8.36,8.73,9.1,9.49,9.85,10.71,128.12,129.08,129.88,131.04,132.77,134.84,138.66,142.74,156.05,23.25,23.05,22.95,22.830000000000002,22.73,22.64,22.59,22.56,22.62,N/A,N/A +2012,4,4,2,30,100960,99800,98680,97.16,0.4,6.11,7.17,7.61,8.01,8.370000000000001,8.700000000000001,8.98,9.23,9.65,142.99,144.1,144.93,145.96,147.07,148.26,149.73,151.18,156.01,23.26,23.09,22.98,22.86,22.740000000000002,22.63,22.51,22.39,22.23,N/A,N/A +2012,4,4,3,30,100960,99800,98680,96.38,0,6.68,7.78,8.21,8.64,9,9.33,9.55,9.73,9.91,149.5,149.74,150.12,150.81,151.96,153.45000000000002,156.31,159.38,168.79,23.32,23.16,23.06,22.95,22.86,22.78,22.75,22.740000000000002,22.95,N/A,N/A +2012,4,4,4,30,101010,99850,98730,97.24000000000001,0,4.96,5.8100000000000005,6.15,6.49,6.8100000000000005,7.12,7.46,7.8,7.890000000000001,137.78,138.82,139.8,141.21,143.22,145.74,150.02,154.73,163.8,23.22,23.01,22.89,22.740000000000002,22.61,22.490000000000002,22.35,22.22,22.080000000000002,N/A,N/A +2012,4,4,5,30,101040,99880,98760,97.72,0,4.3100000000000005,5.05,5.3500000000000005,5.65,5.93,6.2,6.46,6.7,7.43,141.23,141.85,142.42000000000002,143.34,144.77,146.59,150.12,153.93,164.26,23.14,22.91,22.78,22.64,22.54,22.47,22.37,22.27,22.11,N/A,N/A +2012,4,4,6,30,101070,99910,98780,97.8,0,4.69,5.47,5.78,6.09,6.390000000000001,6.7,7.1000000000000005,7.54,8.38,143.44,144.94,146.16,147.93,149.89000000000001,152.09,155.01,158.14000000000001,166.07,23.13,22.93,22.81,22.67,22.54,22.42,22.240000000000002,22.06,22.3,N/A,N/A +2012,4,4,7,30,101030,99870,98740,98.29,0,4.96,5.76,6.12,6.53,7,7.53,8.09,8.64,9,152.28,153.6,154.64000000000001,156.11,158,160.3,163.24,166.36,170.23,22.94,22.68,22.54,22.39,22.26,22.150000000000002,22.28,22.490000000000002,22.69,N/A,N/A +2012,4,4,8,30,101030,99870,98750,96.88,0,5.16,6.04,6.44,6.9,7.390000000000001,7.91,8.08,8.15,7.8100000000000005,151.51,152.65,153.8,155.64000000000001,158.3,161.51,163.8,165.62,166.17000000000002,23.02,22.82,22.73,22.650000000000002,22.66,22.73,22.87,23.03,23.09,N/A,N/A +2012,4,4,9,30,101030,99860,98740,97.98,0,3.95,4.6000000000000005,4.9,5.22,5.75,6.43,7.07,7.67,7.96,150.82,151.34,151.89000000000001,152.76,155.85,160.61,164.17000000000002,167.23,169.1,22.86,22.62,22.490000000000002,22.37,22.35,22.400000000000002,22.63,22.89,23.080000000000002,N/A,N/A +2012,4,4,10,30,101070,99910,98790,97.38,0,2.84,3.5500000000000003,3.92,4.44,4.91,5.3500000000000005,5.68,5.94,6.2,142.82,145.84,148.66,153.13,158.06,163.45000000000002,166.69,169.01,173.51,22.990000000000002,22.830000000000002,22.75,22.71,22.68,22.66,22.75,22.87,22.990000000000002,N/A,N/A +2012,4,4,11,30,101060,99890,98770,98.79,0.4,3.46,3.98,4.21,4.49,4.8500000000000005,5.29,5.62,5.91,6.19,143.5,144.70000000000002,145.73,147.4,150.53,154.81,157.48,159.56,161.86,22.82,22.59,22.48,22.39,22.51,22.77,22.97,23.13,23.080000000000002,N/A,N/A +2012,4,4,12,30,101080,99910,98780,97.29,0,5.5600000000000005,5.78,5.53,4.98,4.7,4.5600000000000005,4.57,4.63,4.97,73.81,75.15,80.26,90.91,100.18,108.8,117.37,125.33,137.66,22.13,21.8,21.7,21.68,21.68,21.68,21.68,21.68,21.6,N/A,N/A +2012,4,4,13,30,101110,99940,98810,96.43,0,6.07,6.2700000000000005,6.12,5.8,5.58,5.4,5.29,5.21,5.25,88.23,89.97,92.82000000000001,98.06,103.21000000000001,108.28,113.33,117.88,127.46000000000001,22.2,21.92,21.84,21.85,21.84,21.830000000000002,21.78,21.72,21.61,N/A,N/A +2012,4,4,14,30,101150,99980,98850,96.21000000000001,2.2,5.46,5.58,5.37,4.9,4.63,4.48,4.38,4.3100000000000005,4.39,92.18,93.11,96.89,106.42,113.28,118.7,124.54,130.04,140.24,22.34,22.07,21.97,21.95,21.900000000000002,21.85,21.79,21.740000000000002,21.59,N/A,N/A +2012,4,4,15,30,101140,99980,98850,96.95,0,3.91,3.95,3.89,3.88,3.9,3.95,4.0600000000000005,4.17,4.57,97.2,105.64,111.4,118.35000000000001,124.76,130.92000000000002,136.67000000000002,141.98,150.12,22.63,22.42,22.330000000000002,22.23,22.13,22.03,21.93,21.84,21.650000000000002,N/A,N/A +2012,4,4,16,30,101110,99950,98820,97.31,0,3.56,3.69,3.71,3.77,3.86,3.97,4.11,4.24,4.6000000000000005,113.06,117.69,124.32000000000001,137,145.53,151.53,155.15,157.94,161.6,22.79,22.51,22.37,22.25,22.150000000000002,22.07,21.96,21.85,21.580000000000002,N/A,N/A +2012,4,4,17,30,101110,99950,98820,97.15,0,2.66,2.99,3.1,3.19,3.3200000000000003,3.5,3.69,3.87,4.05,137.21,142.68,145.75,148.68,152.06,155.98,159.14000000000001,161.89000000000001,163.55,23.06,22.78,22.62,22.45,22.32,22.22,22.080000000000002,21.93,21.72,N/A,N/A +2012,4,4,18,30,101090,99930,98800,94.25,0,3.68,4.01,4.09,4.14,4.18,4.21,4.23,4.26,4.36,150.91,151.42000000000002,151.71,152.01,152.3,152.6,152.97,153.34,154.57,23.29,23.03,22.87,22.68,22.5,22.31,22.12,21.95,21.59,N/A,N/A +2012,4,4,19,30,101070,99900,98780,93.01,0,3.25,3.5500000000000003,3.63,3.68,3.73,3.7800000000000002,3.84,3.9,4.08,154.19,154.25,154.35,154.39000000000001,154.42000000000002,154.43,154.4,154.36,154.26,23.35,23.09,22.93,22.740000000000002,22.56,22.38,22.19,22.02,21.66,N/A,N/A +2012,4,4,20,30,100970,99810,98690,92.22,0,3.88,4.2,4.2700000000000005,4.3100000000000005,4.34,4.36,4.38,4.4,4.46,147.19,147.55,147.78,147.98,148.19,148.39000000000001,148.63,148.88,149.63,23.43,23.14,22.98,22.79,22.61,22.43,22.240000000000002,22.06,21.69,N/A,N/A +2012,4,4,21,30,100890,99730,98600,94.10000000000001,0,4.21,4.5200000000000005,4.5600000000000005,4.5600000000000005,4.54,4.51,4.47,4.43,4.39,133.78,133.78,133.96,134.07,134.13,134.14000000000001,134.07,133.98,133.61,23.31,23.03,22.87,22.68,22.5,22.32,22.14,21.97,21.63,N/A,N/A +2012,4,4,22,30,100980,99830,98700,95.42,2.9000000000000004,3.71,4.19,4.39,4.57,4.72,4.8500000000000005,4.96,5.04,5.14,92.11,94.49,95.91,97.51,98.89,100.19,101.35000000000001,102.4,104.99000000000001,23.13,22.900000000000002,22.77,22.580000000000002,22.41,22.240000000000002,22.06,21.89,21.61,N/A,N/A +2012,4,4,23,30,101000,99820,98680,89.08,19.400000000000002,9.700000000000001,10.43,10.540000000000001,10.59,10.58,10.56,10.52,10.47,10.39,338.67,337.62,337.59000000000003,337.53000000000003,337.47,337.41,337.31,337.22,336.72,20.05,19.59,19.39,19.19,19,18.82,18.64,18.47,18.12,N/A,N/A +2012,4,5,0,30,100790,99620,98500,84.01,103.30000000000001,3.66,4.34,4.74,5.24,5.5,5.61,5.5,5.36,4.69,41.59,36.65,33.21,31.59,31.11,31.27,32.04,32.83,35.27,20.35,21.06,21.73,22.68,23.32,23.78,24.07,24.310000000000002,24.53,N/A,N/A +2012,4,5,1,30,100750,99580,98460,83.45,0,1.55,1.46,1.29,1.07,1.1400000000000001,1.46,1.87,2.34,3.3000000000000003,190.14000000000001,198.96,199.89000000000001,193.62,181.64000000000001,160.15,149.69,143.64000000000001,138.17000000000002,21.2,21.32,21.650000000000002,22.39,22.830000000000002,23.05,23.1,23.09,23.07,N/A,N/A +2012,4,5,2,30,100820,99650,98530,85.66,0,3.2,3.29,3.35,3.59,3.83,4.07,4.34,4.6000000000000005,5.14,238.36,234.21,228.11,214.12,204.73000000000002,198.42000000000002,193.51,189.25,183.66,21.830000000000002,21.62,21.68,22.04,22.27,22.43,22.45,22.43,22.23,N/A,N/A +2012,4,5,3,30,100810,99640,98520,91.53,0,5.79,6.51,6.74,6.99,7.13,7.21,7.17,7.12,6.87,211.95000000000002,209.49,207.46,204.82,202.43,200.28,199.09,198.22,198.13,22.06,21.91,21.94,22.07,22.21,22.34,22.41,22.46,22.38,N/A,N/A +2012,4,5,4,30,100870,99700,98580,88.37,0,2.29,2.45,2.68,3.2,3.58,3.86,4.13,4.37,4.83,184.14000000000001,183.18,182.53,181.43,180.82,180.58,180.67000000000002,180.85,181.88,22.22,21.96,21.89,21.89,21.87,21.85,21.79,21.740000000000002,21.56,N/A,N/A +2012,4,5,5,30,100890,99720,98590,88.10000000000001,0,1.59,1.6,1.59,1.62,1.72,1.8800000000000001,2.04,2.2,2.59,88.42,91.89,97.89,112.82000000000001,124.62,135.08,143.06,149.85,160.49,22.26,21.98,21.85,21.75,21.650000000000002,21.55,21.44,21.34,21.13,N/A,N/A +2012,4,5,6,30,100930,99760,98630,87.82000000000001,0,2.33,2.4,2.38,2.33,2.15,1.87,1.67,1.51,1.56,69.34,69.52,69.63,69.8,74.58,82.34,98.48,115.3,138.94,22.39,22.09,21.92,21.73,21.56,21.400000000000002,21.27,21.150000000000002,20.93,N/A,N/A +2012,4,5,7,30,100960,99790,98660,87.97,0,2.34,2.41,2.4,2.35,2.2800000000000002,2.19,1.97,1.76,1.87,104.44,104.87,105.21000000000001,105.93,107.08,108.56,116.34,124.74000000000001,166.45000000000002,22.52,22.22,22.06,21.86,21.68,21.490000000000002,21.32,21.150000000000002,20.91,N/A,N/A +2012,4,5,8,30,100940,99770,98640,89.69,0,2.6,2.67,2.64,2.58,2.48,2.35,2.38,2.46,2.69,133.86,134.75,135.65,137.26,142.19,149.56,161.69,175.24,185.91,22.53,22.23,22.06,21.87,21.7,21.53,21.38,21.25,21.02,N/A,N/A +2012,4,5,9,30,100910,99750,98620,91.29,0,2.33,2.42,2.47,2.6,2.85,3.2,3.41,3.5500000000000003,3.84,181.59,183.63,185.98,191.01,196.79,203.65,206.74,208.20000000000002,211.6,22.41,22.12,21.97,21.82,21.71,21.650000000000002,21.56,21.47,21.28,N/A,N/A +2012,4,5,10,30,100910,99740,98620,93.69,0,3.5,3.72,3.83,4.0600000000000005,4.4,4.86,5.11,5.25,5.45,206.99,207.89000000000001,208.8,210.63,212.98000000000002,216.01,217.66,218.67000000000002,220.18,22.38,22.09,21.94,21.79,21.69,21.64,21.56,21.47,21.25,N/A,N/A +2012,4,5,11,30,100910,99750,98620,94.03,0,5.16,5.55,5.65,5.7,5.75,5.79,5.86,5.95,6.390000000000001,214.92000000000002,215.37,215.62,215.9,216.14000000000001,216.35,216.83,217.39000000000001,217.78,22.43,22.12,21.95,21.75,21.57,21.39,21.2,21.03,20.75,N/A,N/A +2012,4,5,12,30,100930,99760,98630,94.71000000000001,0,6.140000000000001,6.51,6.5600000000000005,6.55,6.5200000000000005,6.49,6.45,6.4,6.32,224.21,224.08,223.93,223.74,223.56,223.39000000000001,223.21,223.05,222.88,22.07,21.7,21.51,21.29,21.07,20.85,20.67,20.5,20.2,N/A,N/A +2012,4,5,13,30,100950,99790,98650,97.96000000000001,0,6.7700000000000005,7.21,7.2700000000000005,7.26,7.24,7.2,7.17,7.15,7.2,228.01,227.75,227.45000000000002,227.02,226.53,225.99,225.23000000000002,224.46,222.20000000000002,21.55,21.12,20.93,20.8,20.68,20.56,20.42,20.3,20.01,N/A,N/A +2012,4,5,14,30,101040,99880,98750,95.64,0,4.75,4.97,4.99,4.97,4.95,4.92,4.88,4.83,4.82,246.56,247.35,248.05,248.97,250.01000000000002,251.16,252.93,254.79,259.04,21.97,21.64,21.47,21.28,21.09,20.91,20.77,20.650000000000002,20.45,N/A,N/A +2012,4,5,15,30,101070,99900,98770,93.08,2.6,5.26,5.51,5.53,5.51,5.53,5.59,5.64,5.7,5.82,295.34000000000003,295.23,294.82,294.09000000000003,292.68,290.67,287.81,284.76,279.34000000000003,22.39,22.080000000000002,21.93,21.76,21.62,21.5,21.42,21.35,21.1,N/A,N/A +2012,4,5,16,30,101090,99920,98790,93.23,2.2,5.61,5.96,6.0200000000000005,6.03,6.03,6.01,5.99,5.97,5.95,316.08,315.68,315.41,315.07,314.69,314.27,313.68,313.08,310.25,21.92,21.57,21.39,21.2,21.01,20.830000000000002,20.64,20.47,20.14,N/A,N/A +2012,4,5,17,30,101100,99930,98790,92.93,0,5.61,5.93,5.98,5.98,5.96,5.94,5.9,5.87,5.8,322.72,322.5,322.28000000000003,321.96,321.59000000000003,321.16,320.5,319.82,316.73,21.94,21.59,21.42,21.22,21.03,20.85,20.67,20.5,20.17,N/A,N/A +2012,4,5,18,30,101090,99930,98800,90.64,0,4.09,4.3100000000000005,4.36,4.37,4.38,4.39,4.39,4.39,4.41,321.54,320.12,319.08,317.95,316.87,315.78000000000003,314.58,313.43,310.7,22.32,21.990000000000002,21.82,21.63,21.44,21.26,21.07,20.900000000000002,20.54,N/A,N/A +2012,4,5,19,30,101090,99930,98800,88.83,0,1.68,1.84,1.9100000000000001,1.98,2.05,2.12,2.21,2.3000000000000003,2.6,327.53000000000003,327.3,327.2,327.09000000000003,326.97,326.86,326.71,326.55,325.74,22.66,22.35,22.18,21.98,21.79,21.61,21.42,21.25,20.89,N/A,N/A +2012,4,5,20,30,101060,99890,98760,85.79,0,1.27,1.33,1.36,1.37,1.3800000000000001,1.3900000000000001,1.41,1.42,1.45,0.64,359.57,358.87,358.18,357.54,356.89,356.18,355.5,353.88,23.02,22.71,22.54,22.34,22.150000000000002,21.96,21.77,21.580000000000002,21.2,N/A,N/A +2012,4,5,21,30,101000,99840,98710,84.54,0,2.88,3.09,3.21,3.46,3.83,4.37,4.69,4.89,5.12,339.71,339.64,339.65000000000003,339.65000000000003,339.7,339.8,339.52,339.06,336.57,23.28,22.990000000000002,22.85,22.72,22.63,22.580000000000002,22.490000000000002,22.39,22.16,N/A,N/A +2012,4,5,22,30,100980,99820,98700,85.62,0,1.7,1.67,1.45,0.93,0.92,1.32,1.74,2.18,2.99,190.83,191.5,213.72,277.61,305.48,323.29,332.8,336.89,340.24,23.39,23.09,23,23.05,23.03,22.93,22.87,22.830000000000002,22.71,N/A,N/A +2012,4,5,23,30,100960,99800,98680,86.68,0,1.12,0.31,0.22,0.5700000000000001,1.08,1.59,2.04,2.46,3.24,167.88,160.86,148.06,68.32000000000001,356.89,353.08,350.5,348.74,345.86,23.37,23.39,23.43,23.43,23.52,23.68,23.69,23.64,23.5,N/A,N/A +2012,4,6,0,30,100950,99800,98680,82.93,0,0.89,0.59,0.55,0.87,1.22,1.6,1.97,2.32,2.97,149.64000000000001,84.34,57.65,31.98,13.38,7.19,3.11,0.3,356.78000000000003,23.91,24.240000000000002,24.44,24.560000000000002,24.62,24.64,24.61,24.580000000000002,24.43,N/A,N/A +2012,4,6,1,30,100980,99830,98710,83.09,0,2,1.6,1.25,0.89,0.76,0.74,0.93,1.27,2.0300000000000002,167.93,157.62,147.64000000000001,131.22,106.54,71.42,51.42,33.79,21.47,24.28,24.830000000000002,25.05,25.07,25.060000000000002,25.04,25.02,25.01,24.91,N/A,N/A +2012,4,6,2,30,101030,99880,98760,88.55,0,2.5300000000000002,1.6600000000000001,0.99,0.33,0.33,0.78,1.28,1.79,2.59,194.83,193.3,175.48,144.34,122.22,62.64,31.26,28.1,25.86,23.69,24.13,24.45,24.84,25.1,25.28,25.34,25.35,25.19,N/A,N/A +2012,4,6,3,30,101080,99920,98800,90.87,0,1.41,0.67,0.5,0.7000000000000001,1.02,1.56,2.08,2.58,3.38,218.46,246.67000000000002,267.68,328.39,5.51,12.98,17.23,19.34,21.51,23.53,23.93,24.16,24.330000000000002,24.46,24.57,24.63,24.66,24.560000000000002,N/A,N/A +2012,4,6,4,30,101120,99960,98840,91.77,0,1.07,1.79,2.11,2.49,2.83,3.16,3.42,3.65,4.05,334.8,350.1,359.35,3.36,6.11,7.61,8.67,9.49,12.700000000000001,23.66,24.13,24.36,24.5,24.57,24.61,24.560000000000002,24.47,24.25,N/A,N/A +2012,4,6,5,30,101140,99980,98850,93.07000000000001,0,1.9000000000000001,2.19,2.32,2.46,2.62,2.7800000000000002,2.96,3.13,3.48,305.78000000000003,318.87,327.17,334.84000000000003,340.75,345.49,349.25,352.46,357.93,23.22,23.59,23.84,24.05,24.18,24.26,24.26,24.23,24.060000000000002,N/A,N/A +2012,4,6,6,30,101220,100050,98920,72.61,0,5.04,5.39,5.42,5.36,5.26,5.16,5.08,5.01,5.09,15.9,15.63,15.610000000000001,15.82,16.35,17.13,18.23,19.36,24.28,23.93,23.81,23.72,23.61,23.5,23.37,23.22,23.06,22.77,N/A,N/A +2012,4,6,7,30,101240,100080,98950,75.53,0,5.34,5.76,5.84,5.88,5.96,6.05,6.37,6.75,7.88,43.81,44.34,44.660000000000004,45.07,45.59,46.19,47.69,49.42,52.86,23.22,22.96,22.81,22.63,22.46,22.3,22.17,22.07,22.21,N/A,N/A +2012,4,6,8,30,101270,100100,98960,74.43,0,7.3500000000000005,7.99,8.13,8.19,8.22,8.24,8.25,8.26,8.31,56.38,56.53,56.63,56.74,56.83,56.93,57.050000000000004,57.17,57.52,23.11,22.830000000000002,22.67,22.490000000000002,22.3,22.13,21.94,21.77,21.43,N/A,N/A +2012,4,6,9,30,101290,100120,98980,67.87,0,7.640000000000001,8.290000000000001,8.41,8.47,8.49,8.51,8.52,8.540000000000001,8.74,58.14,58.33,58.44,58.57,58.71,58.86,59.06,59.27,60.28,23.04,22.76,22.61,22.42,22.240000000000002,22.07,21.89,21.73,21.47,N/A,N/A +2012,4,6,10,30,101310,100140,99010,70.81,0,6.91,7.49,7.61,7.66,7.69,7.7,7.72,7.72,7.76,65.31,65.56,65.71000000000001,65.87,66.02,66.18,66.36,66.54,67.02,22.830000000000002,22.53,22.37,22.18,22,21.82,21.63,21.46,21.11,N/A,N/A +2012,4,6,11,30,101340,100170,99030,71.2,0,6.83,7.390000000000001,7.51,7.5600000000000005,7.59,7.61,7.61,7.61,7.61,66.12,66.36,66.51,66.66,66.8,66.94,67.1,67.25,67.62,22.73,22.42,22.25,22.06,21.87,21.68,21.490000000000002,21.32,20.94,N/A,N/A +2012,4,6,12,30,101390,100210,99070,70.96000000000001,0,7.46,8.09,8.22,8.290000000000001,8.32,8.34,8.35,8.35,8.34,71.55,71.64,71.7,71.76,71.82000000000001,71.87,71.93,71.98,72.12,22.6,22.28,22.11,21.91,21.72,21.54,21.35,21.17,20.79,N/A,N/A +2012,4,6,13,30,101420,100250,99110,71.4,0,7.63,8.26,8.4,8.46,8.5,8.52,8.53,8.53,8.540000000000001,72.56,72.81,72.95,73.09,73.23,73.35000000000001,73.5,73.64,74,22.41,22.080000000000002,21.900000000000002,21.71,21.52,21.34,21.14,20.96,20.59,N/A,N/A +2012,4,6,14,30,101500,100320,99180,72.44,0,6.78,7.32,7.44,7.49,7.5200000000000005,7.54,7.55,7.55,7.55,78.55,78.72,78.85000000000001,78.96000000000001,79.08,79.19,79.32000000000001,79.44,79.75,22.5,22.18,22,21.81,21.62,21.43,21.240000000000002,21.06,20.68,N/A,N/A +2012,4,6,15,30,101540,100370,99230,73.26,0,6.79,7.34,7.46,7.53,7.5600000000000005,7.58,7.59,7.6000000000000005,7.6000000000000005,80.58,80.73,80.83,80.93,81.03,81.13,81.24,81.34,81.58,22.53,22.19,22.02,21.830000000000002,21.63,21.45,21.25,21.07,20.69,N/A,N/A +2012,4,6,16,30,101560,100380,99240,73.52,0,6.82,7.36,7.48,7.54,7.57,7.59,7.59,7.6000000000000005,7.58,80.36,80.57000000000001,80.69,80.82000000000001,80.94,81.05,81.17,81.28,81.54,22.46,22.12,21.94,21.75,21.55,21.37,21.17,20.990000000000002,20.61,N/A,N/A +2012,4,6,17,30,101580,100400,99260,70.89,0,6.32,6.8,6.9,6.94,6.97,6.98,6.98,6.98,6.96,86.15,86.42,86.56,86.72,86.87,87.01,87.17,87.32000000000001,87.66,22.48,22.14,21.97,21.77,21.580000000000002,21.39,21.2,21.01,20.63,N/A,N/A +2012,4,6,18,30,101590,100410,99270,70.29,0,6.2,6.67,6.76,6.8,6.82,6.83,6.83,6.83,6.8100000000000005,90.93,91.21000000000001,91.38,91.56,91.72,91.88,92.05,92.2,92.55,22.52,22.19,22.01,21.82,21.62,21.44,21.240000000000002,21.06,20.68,N/A,N/A +2012,4,6,19,30,101590,100420,99280,67.78,0,6.2,6.67,6.76,6.8,6.82,6.82,6.82,6.8100000000000005,6.78,107.72,107.84,107.89,107.94,108,108.06,108.13,108.19,108.36,22.7,22.38,22.21,22.01,21.830000000000002,21.64,21.45,21.27,20.89,N/A,N/A +2012,4,6,20,30,101550,100380,99240,64.94,0,5.76,6.18,6.26,6.29,6.3,6.29,6.28,6.2700000000000005,6.21,116.58,116.58,116.56,116.54,116.51,116.5,116.49000000000001,116.48,116.47,22.88,22.57,22.400000000000002,22.21,22.02,21.84,21.650000000000002,21.47,21.1,N/A,N/A +2012,4,6,21,30,101530,100360,99220,65.64,0,5.2,5.58,5.64,5.66,5.66,5.66,5.65,5.63,5.58,122.51,122.48,122.46000000000001,122.44,122.41,122.39,122.36,122.34,122.27,22.93,22.63,22.46,22.27,22.080000000000002,21.900000000000002,21.7,21.52,21.14,N/A,N/A +2012,4,6,22,30,101530,100360,99220,68.52,0,5.29,5.68,5.74,5.76,5.7700000000000005,5.7700000000000005,5.75,5.73,5.68,123.56,123.65,123.69,123.73,123.78,123.82000000000001,123.87,123.92,124.06,22.85,22.55,22.38,22.19,22,21.82,21.63,21.45,21.07,N/A,N/A +2012,4,6,23,30,101530,100360,99220,72.12,0,4.69,4.99,5.04,5.04,5.04,5.0200000000000005,5,4.97,4.9,128.74,128.8,128.83,128.87,128.89000000000001,128.91,128.92000000000002,128.93,128.92000000000002,22.73,22.42,22.25,22.06,21.88,21.69,21.5,21.330000000000002,20.96,N/A,N/A +2012,4,7,0,30,101550,100370,99240,68.79,0,4.2700000000000005,4.55,4.59,4.6000000000000005,4.6000000000000005,4.59,4.57,4.5600000000000005,4.51,128.84,128.79,128.77,128.75,128.7,128.66,128.58,128.51,128.13,22.82,22.53,22.36,22.17,21.990000000000002,21.81,21.62,21.45,21.11,N/A,N/A +2012,4,7,1,30,101550,100370,99230,70.93,0,4.32,4.6000000000000005,4.64,4.64,4.64,4.64,4.62,4.61,4.58,129.84,129.79,129.76,129.7,129.64000000000001,129.57,129.45,129.34,128.81,22.72,22.41,22.240000000000002,22.05,21.87,21.69,21.5,21.32,20.98,N/A,N/A +2012,4,7,2,30,101590,100410,99270,70.02,0,4.24,4.51,4.55,4.5600000000000005,4.5600000000000005,4.55,4.54,4.53,4.51,129.82,129.71,129.59,129.46,129.31,129.16,128.94,128.74,127.9,22.78,22.48,22.31,22.12,21.93,21.75,21.57,21.39,21.05,N/A,N/A +2012,4,7,3,30,101610,100440,99300,66.21000000000001,0,4.14,4.43,4.49,4.51,4.53,4.54,4.5600000000000005,4.58,4.68,120.86,120.74000000000001,120.65,120.54,120.41,120.28,120.08,119.9,119.16,22.92,22.63,22.47,22.28,22.09,21.92,21.73,21.56,21.22,N/A,N/A +2012,4,7,4,30,101660,100490,99350,65.86,0,4.17,4.48,4.54,4.57,4.58,4.6000000000000005,4.61,4.62,4.66,127.25,127.2,127.10000000000001,126.99000000000001,126.89,126.79,126.66,126.54,126.16,22.94,22.66,22.490000000000002,22.3,22.11,21.93,21.740000000000002,21.56,21.19,N/A,N/A +2012,4,7,5,30,101660,100490,99350,64.92,0,4.08,4.39,4.44,4.47,4.49,4.51,4.5200000000000005,4.54,4.59,119.77,119.75,119.73,119.71000000000001,119.66,119.61,119.53,119.45,119.22,22.95,22.66,22.490000000000002,22.3,22.12,21.93,21.740000000000002,21.57,21.2,N/A,N/A +2012,4,7,6,30,101720,100540,99400,65.05,0,4.39,4.72,4.78,4.82,4.84,4.86,4.87,4.88,4.91,122.25,122.22,122.2,122.17,122.14,122.11,122.07000000000001,122.03,121.92,22.990000000000002,22.7,22.53,22.34,22.150000000000002,21.96,21.77,21.59,21.21,N/A,N/A +2012,4,7,7,30,101760,100580,99440,65.43,0,4.3500000000000005,4.67,4.73,4.76,4.78,4.79,4.8,4.8100000000000005,4.83,119.84,119.88,119.89,119.89,119.89,119.88,119.88,119.87,119.82000000000001,23.03,22.740000000000002,22.57,22.38,22.19,22.01,21.81,21.63,21.25,N/A,N/A +2012,4,7,8,30,101770,100590,99450,66.02,0,4.14,4.44,4.5,4.53,4.54,4.5600000000000005,4.57,4.58,4.61,114.18,114.24000000000001,114.27,114.31,114.33,114.36,114.4,114.44,114.54,22.96,22.66,22.490000000000002,22.3,22.11,21.93,21.73,21.56,21.18,N/A,N/A +2012,4,7,9,30,101800,100620,99480,66.28,0,4.25,4.57,4.63,4.67,4.69,4.71,4.72,4.73,4.76,115.94,116.07000000000001,116.13,116.2,116.27,116.34,116.41,116.49000000000001,116.67,22.97,22.67,22.5,22.31,22.12,21.93,21.740000000000002,21.56,21.18,N/A,N/A +2012,4,7,10,30,101810,100630,99490,67.24,0,4.78,5.14,5.21,5.24,5.2700000000000005,5.28,5.29,5.3,5.32,106.60000000000001,106.75,106.82000000000001,106.89,106.96000000000001,107.02,107.08,107.14,107.29,22.92,22.62,22.45,22.26,22.07,21.88,21.68,21.5,21.12,N/A,N/A +2012,4,7,11,30,101850,100670,99530,68.11,0,5.29,5.71,5.8,5.8500000000000005,5.88,5.9,5.92,5.93,5.95,111.16,111.17,111.21000000000001,111.24000000000001,111.27,111.29,111.32000000000001,111.34,111.39,22.88,22.57,22.400000000000002,22.21,22.02,21.830000000000002,21.63,21.45,21.06,N/A,N/A +2012,4,7,12,30,101870,100690,99550,67.82000000000001,0,5.18,5.57,5.65,5.69,5.71,5.73,5.73,5.74,5.74,99.75,99.94,100.07000000000001,100.2,100.31,100.42,100.54,100.66,100.9,22.830000000000002,22.51,22.34,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,4,7,13,30,101900,100730,99580,69.88,0,5.26,5.66,5.73,5.7700000000000005,5.8,5.8100000000000005,5.82,5.82,5.82,101.33,101.52,101.60000000000001,101.68,101.76,101.84,101.91,101.99000000000001,102.16,22.7,22.37,22.2,22.01,21.82,21.63,21.43,21.25,20.86,N/A,N/A +2012,4,7,14,30,101960,100780,99630,70.96000000000001,0,5.12,5.51,5.59,5.64,5.67,5.69,5.7,5.72,5.74,102.09,102.06,102.06,102.04,102.03,102.03,102.02,102,102,22.73,22.400000000000002,22.23,22.04,21.85,21.66,21.46,21.28,20.89,N/A,N/A +2012,4,7,15,30,101990,100810,99670,73.52,0,5.38,5.8,5.88,5.93,5.95,5.97,5.98,5.99,5.99,96.49000000000001,96.63,96.73,96.81,96.9,96.97,97.06,97.13,97.3,22.740000000000002,22.42,22.240000000000002,22.04,21.85,21.67,21.47,21.29,20.900000000000002,N/A,N/A +2012,4,7,16,30,102010,100830,99690,77.95,0,5.46,5.87,5.96,6.01,6.05,6.07,6.09,6.1000000000000005,6.11,99.63,99.84,99.96000000000001,100.08,100.2,100.31,100.43,100.53,100.78,22.67,22.330000000000002,22.16,21.96,21.77,21.580000000000002,21.38,21.2,20.81,N/A,N/A +2012,4,7,17,30,102030,100850,99710,77.41,0,5.47,5.87,5.95,5.99,6.0200000000000005,6.03,6.04,6.05,6.05,105.04,105.21000000000001,105.33,105.46000000000001,105.57000000000001,105.68,105.79,105.89,106.11,22.81,22.47,22.3,22.1,21.91,21.72,21.52,21.34,20.95,N/A,N/A +2012,4,7,18,30,102030,100860,99710,76.86,0,5,5.36,5.44,5.49,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,105.22,105.38,105.48,105.58,105.66,105.73,105.81,105.88,106.03,22.87,22.54,22.36,22.16,21.97,21.79,21.59,21.400000000000002,21.02,N/A,N/A +2012,4,7,19,30,102060,100880,99730,75.56,0,4.61,4.94,5.01,5.05,5.08,5.11,5.12,5.14,5.15,116.26,116.37,116.43,116.48,116.54,116.58,116.64,116.68,116.8,23.01,22.68,22.5,22.3,22.11,21.92,21.72,21.54,21.150000000000002,N/A,N/A +2012,4,7,20,30,102040,100860,99720,76.4,0,5.04,5.41,5.49,5.54,5.57,5.59,5.61,5.62,5.63,118.91,119.04,119.09,119.14,119.19,119.24000000000001,119.3,119.36,119.47,23.03,22.69,22.52,22.32,22.13,21.94,21.740000000000002,21.56,21.17,N/A,N/A +2012,4,7,21,30,102030,100860,99720,78,0,5.17,5.5600000000000005,5.65,5.69,5.72,5.74,5.75,5.76,5.7700000000000005,125.07000000000001,125.09,125.13000000000001,125.2,125.26,125.32000000000001,125.4,125.47,125.62,22.990000000000002,22.67,22.490000000000002,22.3,22.11,21.92,21.72,21.54,21.150000000000002,N/A,N/A +2012,4,7,22,30,102010,100840,99700,74.92,0,4.9,5.3,5.39,5.44,5.48,5.51,5.53,5.55,5.58,130.58,130.62,130.63,130.64000000000001,130.65,130.65,130.66,130.68,130.69,23.02,22.71,22.54,22.35,22.16,21.97,21.77,21.59,21.2,N/A,N/A +2012,4,7,23,30,102020,100840,99700,78.19,0,5.7700000000000005,6.24,6.33,6.37,6.390000000000001,6.4,6.390000000000001,6.38,6.3500000000000005,134.09,134.2,134.21,134.21,134.21,134.2,134.19,134.17000000000002,134.14000000000001,22.84,22.52,22.35,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,4,8,0,30,102020,100840,99700,77.04,0,5.62,6.05,6.140000000000001,6.18,6.2,6.2,6.2,6.2,6.17,136.48,136.49,136.49,136.48,136.47,136.45,136.44,136.44,136.41,22.75,22.43,22.26,22.06,21.87,21.68,21.48,21.3,20.91,N/A,N/A +2012,4,8,1,30,102040,100860,99710,79.92,0,5.7,6.17,6.2700000000000005,6.33,6.36,6.38,6.390000000000001,6.4,6.4,132.58,132.58,132.59,132.58,132.58,132.57,132.56,132.54,132.52,22.61,22.28,22.1,21.900000000000002,21.71,21.52,21.32,21.14,20.75,N/A,N/A +2012,4,8,2,30,102070,100890,99750,80.07000000000001,0,5.68,6.13,6.23,6.29,6.33,6.36,6.38,6.390000000000001,6.41,132.53,132.54,132.5,132.48,132.45,132.43,132.41,132.39000000000001,132.35,22.56,22.22,22.05,21.85,21.66,21.47,21.27,21.09,20.7,N/A,N/A +2012,4,8,3,30,102090,100910,99760,78.85000000000001,0,5.39,5.8,5.89,5.94,5.97,5.99,6.01,6.0200000000000005,6.04,128.9,128.88,128.87,128.86,128.86,128.86,128.87,128.87,128.88,22.55,22.21,22.04,21.84,21.650000000000002,21.46,21.26,21.080000000000002,20.7,N/A,N/A +2012,4,8,4,30,102120,100940,99790,80.07000000000001,0,5.5200000000000005,5.94,6.04,6.09,6.12,6.140000000000001,6.15,6.16,6.16,125.87,125.75,125.7,125.65,125.61,125.57000000000001,125.52,125.48,125.39,22.490000000000002,22.150000000000002,21.97,21.78,21.580000000000002,21.39,21.2,21.01,20.63,N/A,N/A +2012,4,8,5,30,102130,100950,99810,75.47,0,4.45,4.79,4.87,4.93,4.97,5.01,5.04,5.07,5.13,130.45,130.55,130.62,130.68,130.71,130.74,130.77,130.79,130.79,22.62,22.3,22.13,21.93,21.75,21.56,21.37,21.19,20.81,N/A,N/A +2012,4,8,6,30,102180,101000,99850,74.4,0,4.62,4.97,5.05,5.1000000000000005,5.13,5.15,5.17,5.19,5.21,129.12,129.24,129.22,129.21,129.2,129.19,129.18,129.17000000000002,129.14000000000001,22.64,22.3,22.13,21.93,21.740000000000002,21.55,21.35,21.17,20.78,N/A,N/A +2012,4,8,7,30,102200,101020,99870,72.78,0,4.19,4.43,4.47,4.48,4.48,4.48,4.48,4.47,4.45,128.47,128.38,128.31,128.22,128.13,128.05,127.96000000000001,127.87,127.67,22.650000000000002,22.32,22.14,21.95,21.75,21.57,21.37,21.19,20.8,N/A,N/A +2012,4,8,8,30,102240,101050,99910,71.42,0,3.44,3.64,3.68,3.7,3.71,3.72,3.72,3.72,3.72,127.26,127.09,127.03,126.96000000000001,126.87,126.79,126.7,126.63000000000001,126.43,22.68,22.35,22.18,21.98,21.79,21.6,21.400000000000002,21.22,20.830000000000002,N/A,N/A +2012,4,8,9,30,102240,101060,99910,72.58,0,3.5,3.71,3.7600000000000002,3.7800000000000002,3.8000000000000003,3.81,3.8200000000000003,3.8200000000000003,3.8200000000000003,125.45,125.49000000000001,125.57000000000001,125.64,125.7,125.75,125.8,125.84,125.91,22.63,22.3,22.12,21.93,21.73,21.54,21.34,21.16,20.77,N/A,N/A +2012,4,8,10,30,102270,101090,99940,72.46000000000001,0,2.98,3.16,3.21,3.23,3.2600000000000002,3.2800000000000002,3.29,3.31,3.33,113.94,114.13,114.23,114.31,114.36,114.41,114.45,114.49000000000001,114.54,22.59,22.26,22.09,21.89,21.7,21.51,21.31,21.13,20.740000000000002,N/A,N/A +2012,4,8,11,30,102300,101120,99970,73.63,0,2.67,2.79,2.81,2.82,2.82,2.82,2.81,2.81,2.8000000000000003,99.42,98.89,98.62,98.35000000000001,98.11,97.87,97.64,97.44,97.01,22.54,22.21,22.04,21.84,21.650000000000002,21.46,21.26,21.07,20.68,N/A,N/A +2012,4,8,12,30,102320,101140,99990,75.73,0,2.11,2.22,2.25,2.27,2.2800000000000002,2.29,2.31,2.32,2.34,61.44,61.480000000000004,61.58,61.68,61.79,61.9,62.01,62.120000000000005,62.38,22.490000000000002,22.150000000000002,21.98,21.78,21.59,21.400000000000002,21.2,21.02,20.63,N/A,N/A +2012,4,8,13,30,102350,101160,100010,79.97,0,2.71,2.96,3.0500000000000003,3.12,3.17,3.22,3.27,3.31,3.39,86.04,85.28,84.92,84.54,84.18,83.82000000000001,83.45,83.11,82.35000000000001,22.29,21.95,21.77,21.580000000000002,21.39,21.2,21,20.82,20.44,N/A,N/A +2012,4,8,14,30,102370,101190,100040,80.07000000000001,0,3.13,3.2600000000000002,3.27,3.2800000000000002,3.29,3.29,3.29,3.3000000000000003,3.31,71.32000000000001,74.23,75.97,77.64,79.18,80.59,82.01,83.3,85.88,22.32,21.98,21.81,21.61,21.42,21.240000000000002,21.04,20.86,20.47,N/A,N/A +2012,4,8,15,30,102390,101200,100060,78.03,0,3.43,3.61,3.64,3.65,3.66,3.66,3.66,3.66,3.66,80.78,81.60000000000001,81.97,82.26,82.5,82.71000000000001,82.91,83.09,83.43,22.51,22.16,21.98,21.79,21.59,21.41,21.21,21.02,20.63,N/A,N/A +2012,4,8,16,30,102390,101200,100050,78.62,0,3.99,4.18,4.21,4.2,4.2,4.18,4.17,4.16,4.12,95.67,95.5,95.4,95.29,95.18,95.07000000000001,94.97,94.88,94.67,22.55,22.19,22.01,21.81,21.61,21.43,21.23,21.04,20.66,N/A,N/A +2012,4,8,17,30,102360,101180,100030,79.03,0,3.61,3.8200000000000003,3.87,3.89,3.91,3.92,3.93,3.94,3.95,101.08,101.17,101.19,101.17,101.12,101.06,100.97,100.89,100.69,22.580000000000002,22.22,22.04,21.84,21.64,21.45,21.25,21.07,20.67,N/A,N/A +2012,4,8,18,30,102350,101170,100020,78.33,0,3.69,3.88,3.91,3.93,3.94,3.94,3.94,3.94,3.94,114.57000000000001,113.94,113.55,113.17,112.83,112.51,112.2,111.92,111.33,22.61,22.25,22.07,21.87,21.67,21.48,21.28,21.1,20.71,N/A,N/A +2012,4,8,19,30,102330,101140,100000,78.35000000000001,0,3.9,4.13,4.17,4.2,4.21,4.22,4.23,4.23,4.23,123.87,124.3,124.52,124.74000000000001,124.94,125.14,125.33,125.51,125.9,22.69,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.18,20.79,N/A,N/A +2012,4,8,20,30,102270,101090,99940,76.69,0,4.07,4.32,4.37,4.39,4.41,4.42,4.43,4.44,4.45,137.94,137.95000000000002,137.93,137.92000000000002,137.93,137.94,137.95000000000002,137.97,137.99,22.69,22.330000000000002,22.150000000000002,21.96,21.76,21.580000000000002,21.38,21.2,20.81,N/A,N/A +2012,4,8,21,30,102240,101060,99920,78.64,0,4.29,4.54,4.59,4.61,4.62,4.62,4.62,4.61,4.59,147.36,147.42000000000002,147.46,147.52,147.57,147.62,147.67000000000002,147.72,147.83,22.71,22.36,22.18,21.98,21.79,21.6,21.400000000000002,21.21,20.82,N/A,N/A +2012,4,8,22,30,102220,101030,99890,73.68,0,3.41,3.6,3.64,3.67,3.68,3.69,3.69,3.7,3.7,156.16,156.13,156.09,156.07,156.06,156.05,156.03,156.02,155.99,22.76,22.42,22.25,22.05,21.86,21.67,21.47,21.29,20.900000000000002,N/A,N/A +2012,4,8,23,30,102200,101020,99870,78.87,0,3.47,3.66,3.69,3.7,3.7,3.7,3.69,3.69,3.67,165.20000000000002,165.01,164.9,164.79,164.68,164.59,164.49,164.41,164.21,22.580000000000002,22.240000000000002,22.07,21.87,21.68,21.490000000000002,21.29,21.1,20.71,N/A,N/A +2012,4,9,0,30,102180,100990,99850,77.4,0,3.65,3.85,3.89,3.9,3.91,3.91,3.91,3.91,3.91,175.17000000000002,175.18,175.15,175.14000000000001,175.12,175.11,175.09,175.08,175.03,22.54,22.21,22.03,21.830000000000002,21.64,21.45,21.26,21.07,20.69,N/A,N/A +2012,4,9,1,30,102170,100990,99840,75.10000000000001,0,3.65,3.85,3.88,3.89,3.9,3.9,3.89,3.89,3.88,174.14000000000001,174.13,174.14000000000001,174.15,174.16,174.16,174.17000000000002,174.18,174.18,22.580000000000002,22.25,22.080000000000002,21.88,21.69,21.5,21.3,21.12,20.740000000000002,N/A,N/A +2012,4,9,2,30,102180,101000,99850,79.18,0,3.56,3.74,3.7600000000000002,3.77,3.7600000000000002,3.75,3.74,3.73,3.7,177.17000000000002,177.08,177.11,177.12,177.13,177.13,177.12,177.1,177.05,22.42,22.080000000000002,21.91,21.71,21.52,21.330000000000002,21.14,20.96,20.57,N/A,N/A +2012,4,9,3,30,102180,101000,99850,77.61,0,3.61,3.8000000000000003,3.83,3.83,3.83,3.83,3.8200000000000003,3.81,3.79,174.88,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.91,174.87,22.44,22.1,21.93,21.73,21.54,21.35,21.150000000000002,20.97,20.59,N/A,N/A +2012,4,9,4,30,102140,100960,99810,76.8,0,3.35,3.52,3.5500000000000003,3.56,3.5700000000000003,3.5700000000000003,3.56,3.56,3.5500000000000003,181.75,181.69,181.64000000000001,181.58,181.53,181.48,181.42000000000002,181.36,181.18,22.41,22.080000000000002,21.900000000000002,21.7,21.51,21.32,21.13,20.94,20.56,N/A,N/A +2012,4,9,5,30,102110,100930,99780,78.11,0,3.58,3.7600000000000002,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.77,3.75,3.74,3.71,188.29,188.22,188.19,188.14000000000001,188.1,188.05,187.98,187.91,187.70000000000002,22.36,22.02,21.85,21.650000000000002,21.46,21.27,21.07,20.89,20.51,N/A,N/A +2012,4,9,6,30,102110,100930,99790,77.74,0,3.22,3.38,3.4,3.4,3.4,3.4,3.39,3.38,3.36,191.71,191.72,191.66,191.61,191.56,191.51,191.45000000000002,191.4,191.23000000000002,22.38,22.04,21.86,21.67,21.47,21.29,21.09,20.91,20.53,N/A,N/A +2012,4,9,7,30,102110,100930,99790,79.85000000000001,0,2.82,2.94,2.95,2.96,2.95,2.95,2.94,2.94,2.91,201.81,201.74,201.66,201.58,201.5,201.41,201.3,201.20000000000002,200.9,22.27,21.93,21.76,21.56,21.37,21.18,20.98,20.8,20.42,N/A,N/A +2012,4,9,8,30,102120,100930,99790,79.77,0,2.77,2.89,2.91,2.92,2.92,2.92,2.91,2.91,2.89,211.71,211.58,211.49,211.39000000000001,211.29,211.19,211.06,210.94,210.61,22.27,21.93,21.76,21.56,21.37,21.18,20.98,20.8,20.41,N/A,N/A +2012,4,9,9,30,102090,100910,99760,78.74,0,2.73,2.84,2.86,2.86,2.85,2.85,2.84,2.83,2.8000000000000003,230.71,230.6,230.52,230.41,230.3,230.19,230.05,229.91,229.51,22.29,21.95,21.78,21.580000000000002,21.39,21.2,21.01,20.82,20.44,N/A,N/A +2012,4,9,10,30,102100,100920,99780,77.96000000000001,0,2.43,2.52,2.54,2.5300000000000002,2.5300000000000002,2.52,2.5100000000000002,2.5100000000000002,2.48,240.95000000000002,240.82,240.69,240.55,240.41,240.27,240.11,239.95000000000002,239.54,22.32,21.990000000000002,21.81,21.61,21.42,21.240000000000002,21.04,20.86,20.47,N/A,N/A +2012,4,9,11,30,102150,100960,99820,78.11,0,2.2,2.29,2.31,2.31,2.31,2.31,2.3000000000000003,2.3000000000000003,2.29,282.59000000000003,282.84000000000003,282.89,282.96,283.04,283.12,283.2,283.27,283.47,22.32,21.990000000000002,21.81,21.61,21.42,21.23,21.03,20.85,20.46,N/A,N/A +2012,4,9,12,30,102160,100980,99830,86.04,0,4.3100000000000005,4.44,4.42,4.36,4.3,4.24,4.17,4.1,3.93,332.41,332.47,332.45,332.40000000000003,332.34000000000003,332.28000000000003,332.2,332.12,331.87,21.91,21.55,21.37,21.17,20.98,20.8,20.6,20.42,20.04,N/A,N/A +2012,4,9,13,30,102190,101000,99860,86.29,0,3.58,3.73,3.74,3.73,3.71,3.7,3.67,3.64,3.58,346.64,347.09000000000003,347.33,347.58,347.82,348.05,348.3,348.54,349.08,21.7,21.34,21.150000000000002,20.96,20.76,20.57,20.38,20.19,19.81,N/A,N/A +2012,4,9,14,30,102210,101030,99880,85.7,0,3.86,4.04,4.0600000000000005,4.0600000000000005,4.0600000000000005,4.04,4.03,4.01,3.97,357.47,357.67,357.71,357.77,357.82,357.87,357.92,357.96,358.07,21.77,21.39,21.21,21.01,20.82,20.63,20.43,20.25,19.86,N/A,N/A +2012,4,9,15,30,102210,101030,99880,85.96000000000001,0,2.97,3.1,3.12,3.13,3.13,3.13,3.13,3.12,3.11,10.120000000000001,9.75,9.51,9.28,9.040000000000001,8.8,8.53,8.26,7.53,21.69,21.32,21.14,20.94,20.75,20.56,20.36,20.18,19.8,N/A,N/A +2012,4,9,16,30,102210,101020,99880,82.9,0,1.68,1.74,1.75,1.75,1.75,1.75,1.75,1.75,1.75,17.51,17.63,17.66,17.69,17.69,17.68,17.64,17.6,17.42,21.95,21.6,21.42,21.21,21.02,20.84,20.64,20.46,20.080000000000002,N/A,N/A +2012,4,9,17,30,102180,101000,99860,80.75,0,0.28,0.27,0.25,0.24,0.22,0.21,0.19,0.18,0.21,109.98,108.44,106.46000000000001,103.8,100.14,96.04,87.99,80.10000000000001,44.18,22.21,21.86,21.68,21.48,21.3,21.11,20.92,20.75,20.43,N/A,N/A +2012,4,9,18,30,102160,100980,99830,79.17,0,1.8900000000000001,1.92,1.9000000000000001,1.87,1.83,1.79,1.73,1.67,1.33,187.09,187.58,187.89000000000001,188.27,188.68,189.11,189.81,190.49,197.04,22.53,22.18,22.01,21.82,21.63,21.46,21.28,21.13,20.93,N/A,N/A +2012,4,9,19,30,102130,100950,99800,78.48,0,2.7600000000000002,2.84,2.83,2.8000000000000003,2.77,2.74,2.69,2.65,2.49,195.47,195.85,196.07,196.33,196.58,196.85,197.19,197.53,198.75,22.77,22.41,22.23,22.04,21.86,21.68,21.5,21.330000000000002,21.01,N/A,N/A +2012,4,9,20,30,102090,100910,99760,75.79,0,2.63,2.71,2.7,2.68,2.66,2.63,2.59,2.5500000000000003,2.45,201.13,201.35,201.53,201.73000000000002,201.93,202.14000000000001,202.4,202.65,203.48000000000002,23.02,22.67,22.5,22.31,22.12,21.94,21.75,21.580000000000002,21.23,N/A,N/A +2012,4,9,21,30,102030,100850,99710,74.83,0,3.9,4.07,4.07,4.0600000000000005,4.03,4,3.96,3.92,3.7800000000000002,197.70000000000002,197.74,197.79,197.84,197.88,197.89000000000001,197.91,197.92000000000002,197.9,23.19,22.84,22.67,22.48,22.3,22.11,21.93,21.75,21.41,N/A,N/A +2012,4,9,22,30,101990,100810,99670,77.07000000000001,0,4.3100000000000005,4.54,4.57,4.5600000000000005,4.55,4.5200000000000005,4.49,4.46,4.3500000000000005,192.65,192.61,192.58,192.54,192.48000000000002,192.42000000000002,192.33,192.24,191.9,23.09,22.77,22.6,22.400000000000002,22.22,22.03,21.85,21.67,21.31,N/A,N/A +2012,4,9,23,30,101950,100770,99630,77.11,0,4.25,4.48,4.51,4.5,4.49,4.47,4.44,4.41,4.29,194.18,194.22,194.21,194.19,194.16,194.12,194.03,193.94,193.28,23.04,22.73,22.57,22.38,22.19,22.01,21.830000000000002,21.66,21.36,N/A,N/A +2012,4,10,0,30,101900,100720,99580,77.65,0,4.19,4.42,4.44,4.43,4.4,4.37,4.33,4.29,4.08,194.66,194.57,194.51,194.45000000000002,194.36,194.26,194.08,193.89000000000001,192.37,22.95,22.650000000000002,22.48,22.29,22.11,21.94,21.76,21.6,21.37,N/A,N/A +2012,4,10,1,30,101880,100710,99570,79.33,0,3.92,4.12,4.14,4.13,4.11,4.08,4.05,4.0200000000000005,3.88,194.53,194.5,194.46,194.4,194.32,194.22,194.04,193.85,192.07,22.830000000000002,22.51,22.35,22.16,21.98,21.8,21.63,21.47,21.25,N/A,N/A +2012,4,10,2,30,101880,100700,99560,79.24,0,3.89,4.09,4.11,4.1,4.09,4.07,4.04,4.0200000000000005,3.93,197.96,197.81,197.73000000000002,197.63,197.51,197.37,197.15,196.92000000000002,195.44,22.81,22.5,22.330000000000002,22.14,21.96,21.78,21.59,21.42,21.13,N/A,N/A +2012,4,10,3,30,101860,100680,99540,80.52,0,3.2600000000000002,3.4,3.42,3.41,3.39,3.37,3.34,3.3200000000000003,3.22,203.17000000000002,203.06,203,202.9,202.78,202.65,202.43,202.20000000000002,200.75,22.7,22.39,22.22,22.02,21.84,21.66,21.47,21.3,20.990000000000002,N/A,N/A +2012,4,10,4,30,101860,100690,99540,81.13,0,3.1,3.24,3.2600000000000002,3.2600000000000002,3.25,3.24,3.22,3.2,3.16,207.33,207.37,207.3,207.21,207.13,207.03,206.89000000000001,206.74,206.08,22.63,22.32,22.150000000000002,21.95,21.76,21.580000000000002,21.39,21.21,20.86,N/A,N/A +2012,4,10,5,30,101840,100660,99520,82.46000000000001,0,2.71,2.81,2.82,2.8000000000000003,2.79,2.77,2.75,2.72,2.6,210.92000000000002,210.72,210.59,210.4,210.16,209.9,209.44,208.98000000000002,205.26,22.51,22.19,22.03,21.84,21.650000000000002,21.48,21.3,21.14,20.92,N/A,N/A +2012,4,10,6,30,101890,100710,99570,80.87,0,1.75,1.79,1.79,1.78,1.76,1.74,1.72,1.69,1.61,223.88,223.92000000000002,223.9,223.87,223.81,223.74,223.61,223.46,222.37,22.52,22.2,22.03,21.830000000000002,21.650000000000002,21.47,21.27,21.1,20.75,N/A,N/A +2012,4,10,7,30,101920,100740,99600,79.48,0,1.62,1.67,1.67,1.6600000000000001,1.6400000000000001,1.6300000000000001,1.62,1.6,1.54,241.71,242.14000000000001,242.27,242.42000000000002,242.56,242.70000000000002,242.83,242.95000000000002,242.99,22.55,22.23,22.06,21.87,21.68,21.5,21.31,21.13,20.78,N/A,N/A +2012,4,10,8,30,101910,100730,99590,78.82000000000001,0,1.3800000000000001,1.42,1.42,1.41,1.4000000000000001,1.3900000000000001,1.37,1.36,1.33,259.8,259.9,259.97,260.03000000000003,260.07,260.07,260.09000000000003,260.12,260.07,22.54,22.22,22.05,21.86,21.67,21.490000000000002,21.29,21.12,20.740000000000002,N/A,N/A +2012,4,10,9,30,101920,100750,99600,79.24,0,1.3800000000000001,1.42,1.42,1.41,1.4000000000000001,1.3900000000000001,1.3900000000000001,1.37,1.35,295.22,295.6,295.91,296.23,296.55,296.85,297.17,297.46,298.26,22.490000000000002,22.17,22,21.8,21.61,21.43,21.23,21.05,20.67,N/A,N/A +2012,4,10,10,30,101950,100770,99630,77.73,0,1.27,1.32,1.32,1.32,1.33,1.33,1.32,1.32,1.32,292.85,293.49,293.93,294.37,294.81,295.24,295.7,296.12,297.21,22.53,22.21,22.04,21.84,21.650000000000002,21.47,21.27,21.09,20.71,N/A,N/A +2012,4,10,11,30,101970,100790,99650,81.7,0,1.19,1.18,1.16,1.1300000000000001,1.1,1.08,1.05,1.03,0.98,296.01,294.96,294.15000000000003,293.32,292.54,291.8,291.04,290.34000000000003,288.73,22.36,22.04,21.86,21.67,21.48,21.29,21.09,20.91,20.53,N/A,N/A +2012,4,10,12,30,102010,100830,99680,84.9,0,1.3900000000000001,1.37,1.32,1.27,1.23,1.18,1.1300000000000001,1.09,0.99,300.7,300.28000000000003,299.92,299.5,299.02,298.54,297.88,297.25,295.32,22.1,21.76,21.59,21.39,21.2,21.02,20.82,20.64,20.25,N/A,N/A +2012,4,10,13,30,102040,100860,99710,86.24,0,1.59,1.58,1.54,1.5,1.46,1.42,1.3800000000000001,1.34,1.25,306.02,306.65000000000003,306.93,307.21,307.52,307.83,308.15000000000003,308.43,309.18,21.97,21.63,21.45,21.25,21.06,20.87,20.67,20.490000000000002,20.11,N/A,N/A +2012,4,10,14,30,102060,100880,99740,86.34,0,1.44,1.4000000000000001,1.35,1.29,1.25,1.2,1.1400000000000001,1.1,0.99,303.13,303.82,304.22,304.62,305.04,305.45,305.90000000000003,306.29,307.31,21.900000000000002,21.56,21.38,21.18,20.990000000000002,20.8,20.6,20.42,20.04,N/A,N/A +2012,4,10,15,30,102060,100880,99740,86.60000000000001,0,1.48,1.47,1.43,1.3900000000000001,1.35,1.32,1.27,1.23,1.1400000000000001,302.67,304.28000000000003,305.24,306.25,307.28000000000003,308.3,309.49,310.59000000000003,313.43,21.84,21.490000000000002,21.31,21.11,20.92,20.73,20.53,20.35,19.96,N/A,N/A +2012,4,10,16,30,102050,100870,99720,86.4,0,0.87,0.87,0.86,0.85,0.8300000000000001,0.81,0.78,0.76,0.7000000000000001,307.01,308.52,309.57,310.64,311.7,312.74,314.05,315.3,319.14,21.91,21.55,21.37,21.17,20.97,20.79,20.59,20.41,20.02,N/A,N/A +2012,4,10,17,30,102040,100860,99720,84.8,0,0.67,0.67,0.65,0.63,0.62,0.6,0.58,0.56,0.52,307.08,307.62,308.07,308.57,309.05,309.53000000000003,310.09000000000003,310.6,312.31,22.09,21.72,21.54,21.34,21.150000000000002,20.96,20.76,20.580000000000002,20.2,N/A,N/A +2012,4,10,18,30,102010,100830,99690,82.32000000000001,0,0.86,0.87,0.87,0.86,0.85,0.85,0.85,0.85,0.85,179.17000000000002,177.20000000000002,175.96,174.64000000000001,173.3,171.95000000000002,170.44,169.02,165.36,22.31,21.94,21.76,21.56,21.37,21.18,20.990000000000002,20.81,20.43,N/A,N/A +2012,4,10,19,30,101990,100810,99670,80.61,0,1.6400000000000001,1.71,1.72,1.74,1.75,1.75,1.77,1.78,1.8,160.39000000000001,159.56,159.05,158.56,158.09,157.65,157.16,156.70000000000002,155.64000000000001,22.53,22.16,21.98,21.78,21.59,21.41,21.21,21.03,20.650000000000002,N/A,N/A +2012,4,10,20,30,101950,100770,99630,80.44,0,1.97,2.09,2.12,2.15,2.18,2.2,2.23,2.25,2.31,144.38,143.94,143.61,143.3,143.02,142.78,142.54,142.32,141.9,22.75,22.38,22.2,22,21.81,21.62,21.43,21.25,20.87,N/A,N/A +2012,4,10,21,30,101900,100720,99580,72.64,0,2.69,2.82,2.84,2.86,2.86,2.87,2.87,2.88,2.89,161.14000000000001,161.08,160.96,160.86,160.78,160.72,160.65,160.58,160.47,23.11,22.76,22.580000000000002,22.39,22.19,22.01,21.81,21.63,21.25,N/A,N/A +2012,4,10,22,30,101870,100690,99550,71.9,0,3.7,3.9,3.94,3.95,3.96,3.96,3.96,3.95,3.94,168.63,168.55,168.54,168.53,168.52,168.52,168.52,168.52,168.52,23.17,22.84,22.67,22.47,22.28,22.09,21.900000000000002,21.72,21.330000000000002,N/A,N/A +2012,4,10,23,30,101840,100670,99530,71.91,0,3.16,3.34,3.36,3.37,3.38,3.38,3.38,3.37,3.36,161.42000000000002,161.43,161.43,161.42000000000002,161.42000000000002,161.41,161.41,161.41,161.42000000000002,23.09,22.77,22.61,22.41,22.22,22.03,21.84,21.66,21.27,N/A,N/A +2012,4,11,0,30,101810,100640,99500,72.24,0,3.43,3.63,3.66,3.67,3.68,3.68,3.67,3.67,3.66,163.41,163.31,163.26,163.22,163.17000000000002,163.14000000000001,163.09,163.05,162.95000000000002,22.990000000000002,22.68,22.51,22.32,22.13,21.94,21.75,21.57,21.18,N/A,N/A +2012,4,11,1,30,101830,100660,99520,74.03,0,3.9,4.14,4.18,4.2,4.2,4.2,4.2,4.2,4.18,167.21,167.18,167.12,167.07,167.04,167,166.97,166.94,166.88,22.900000000000002,22.580000000000002,22.41,22.21,22.02,21.84,21.64,21.46,21.07,N/A,N/A +2012,4,11,2,30,101840,100660,99520,74.82000000000001,0,4.18,4.44,4.49,4.5,4.51,4.51,4.51,4.5,4.49,170,169.96,169.94,169.93,169.91,169.9,169.9,169.89000000000001,169.89000000000001,22.82,22.5,22.32,22.13,21.94,21.75,21.56,21.38,21,N/A,N/A +2012,4,11,3,30,101840,100660,99520,75.42,0,4.75,5.07,5.12,5.15,5.16,5.17,5.17,5.17,5.15,167.13,167.12,167.11,167.11,167.1,167.1,167.09,167.07,167.07,22.77,22.44,22.27,22.080000000000002,21.89,21.7,21.5,21.32,20.94,N/A,N/A +2012,4,11,4,30,101820,100650,99510,75.55,0,4.72,5.03,5.09,5.11,5.12,5.13,5.12,5.12,5.1000000000000005,176.14000000000001,176.17000000000002,176.17000000000002,176.18,176.19,176.19,176.20000000000002,176.22,176.26,22.740000000000002,22.41,22.240000000000002,22.04,21.86,21.67,21.47,21.29,20.91,N/A,N/A +2012,4,11,5,30,101840,100660,99520,75.04,0,4.65,4.96,5.0200000000000005,5.04,5.05,5.0600000000000005,5.0600000000000005,5.0600000000000005,5.05,183.37,183.41,183.39000000000001,183.39000000000001,183.39000000000001,183.4,183.41,183.42000000000002,183.46,22.75,22.42,22.25,22.05,21.86,21.68,21.48,21.3,20.92,N/A,N/A +2012,4,11,6,30,101870,100700,99560,76.59,0,4.66,4.95,5.01,5.04,5.0600000000000005,5.0600000000000005,5.07,5.07,5.0600000000000005,187.05,187.05,187.05,187.06,187.06,187.05,187.05,187.05,187.06,22.73,22.39,22.21,22.01,21.82,21.63,21.44,21.25,20.87,N/A,N/A +2012,4,11,7,30,101900,100720,99580,78.19,0,4.74,5.05,5.11,5.14,5.16,5.17,5.17,5.17,5.17,188.93,189,189,189.01,189.01,189.01,189.01,189.02,189.02,22.69,22.34,22.16,21.96,21.77,21.580000000000002,21.38,21.2,20.81,N/A,N/A +2012,4,11,8,30,101900,100720,99580,79.56,0,4.19,4.43,4.49,4.51,4.5200000000000005,4.53,4.53,4.53,4.53,196.86,196.85,196.86,196.88,196.88,196.89000000000001,196.89000000000001,196.9,196.92000000000002,22.63,22.28,22.1,21.900000000000002,21.71,21.52,21.32,21.14,20.75,N/A,N/A +2012,4,11,9,30,101910,100730,99590,80.63,0,4.1,4.34,4.39,4.41,4.42,4.43,4.43,4.43,4.43,204.78,204.85,204.88,204.9,204.92000000000002,204.93,204.95000000000002,204.97,205.01,22.580000000000002,22.23,22.05,21.85,21.66,21.47,21.27,21.09,20.7,N/A,N/A +2012,4,11,10,30,101920,100750,99600,80.51,0,3.17,3.33,3.37,3.38,3.38,3.39,3.39,3.39,3.38,206.16,206.14000000000001,206.13,206.12,206.1,206.08,206.07,206.05,206.01,22.57,22.22,22.04,21.85,21.650000000000002,21.47,21.27,21.080000000000002,20.7,N/A,N/A +2012,4,11,11,30,101950,100770,99630,82.21000000000001,0,2.82,2.96,2.98,3,3,3.0100000000000002,3.0100000000000002,3.0100000000000002,3.0100000000000002,201.76,201.75,201.74,201.72,201.71,201.70000000000002,201.68,201.67000000000002,201.66,22.490000000000002,22.14,21.97,21.77,21.57,21.39,21.19,21,20.62,N/A,N/A +2012,4,11,12,30,101960,100780,99640,82.98,0,2.81,2.94,2.96,2.97,2.97,2.98,2.97,2.97,2.97,202.16,202.14000000000001,202.12,202.09,202.08,202.06,202.04,202.02,201.97,22.44,22.1,21.92,21.72,21.53,21.34,21.14,20.96,20.57,N/A,N/A +2012,4,11,13,30,101970,100790,99650,83.72,0,2.22,2.32,2.34,2.34,2.35,2.35,2.35,2.35,2.35,193.07,193.01,192.98000000000002,192.93,192.88,192.83,192.78,192.73000000000002,192.6,22.400000000000002,22.06,21.88,21.68,21.490000000000002,21.3,21.1,20.92,20.53,N/A,N/A +2012,4,11,14,30,102000,100830,99680,84.52,0,2.69,2.81,2.83,2.84,2.84,2.84,2.84,2.84,2.84,189.83,189.77,189.73,189.69,189.65,189.61,189.56,189.53,189.43,22.41,22.06,21.89,21.68,21.490000000000002,21.3,21.1,20.92,20.53,N/A,N/A +2012,4,11,15,30,102020,100840,99700,85.11,0,2.32,2.41,2.42,2.42,2.43,2.42,2.42,2.42,2.41,173.47,173.21,173.09,172.97,172.85,172.73,172.61,172.5,172.27,22.44,22.080000000000002,21.900000000000002,21.7,21.51,21.32,21.12,20.94,20.55,N/A,N/A +2012,4,11,16,30,102020,100840,99700,83.19,0,2.45,2.49,2.46,2.42,2.38,2.34,2.31,2.27,2.2,147.47,148.57,149.16,149.79,150.42000000000002,151.05,151.76,152.41,154.02,22.54,22.18,22,21.79,21.6,21.41,21.21,21.03,20.64,N/A,N/A +2012,4,11,17,30,102010,100830,99680,83.45,0,2.39,2.48,2.49,2.49,2.49,2.49,2.48,2.48,2.47,174.35,173.83,173.52,173.22,172.92000000000002,172.63,172.34,172.07,171.46,22.61,22.240000000000002,22.06,21.86,21.67,21.48,21.28,21.1,20.71,N/A,N/A +2012,4,11,18,30,102000,100820,99680,84.26,0,2.72,2.84,2.86,2.87,2.88,2.88,2.88,2.88,2.88,167.01,166.68,166.5,166.33,166.16,165.99,165.81,165.65,165.26,22.7,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.18,20.79,N/A,N/A +2012,4,11,19,30,101980,100800,99660,82.4,0,3.34,3.49,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5,3.49,3.48,158.43,158.51,158.55,158.58,158.61,158.65,158.69,158.71,158.8,22.85,22.48,22.3,22.09,21.900000000000002,21.71,21.52,21.330000000000002,20.95,N/A,N/A +2012,4,11,20,30,101940,100760,99620,82.83,0,3.47,3.63,3.66,3.67,3.67,3.67,3.66,3.66,3.64,163.88,164.02,164.05,164.08,164.11,164.14000000000001,164.18,164.21,164.32,22.91,22.54,22.36,22.16,21.97,21.78,21.580000000000002,21.400000000000002,21.02,N/A,N/A +2012,4,11,21,30,101910,100740,99600,84.02,0,4.14,4.38,4.42,4.44,4.45,4.46,4.46,4.46,4.45,167.78,167.79,167.79,167.79,167.8,167.8,167.8,167.81,167.83,22.94,22.57,22.39,22.19,22,21.81,21.61,21.43,21.04,N/A,N/A +2012,4,11,22,30,101860,100690,99550,81.60000000000001,0,4.5600000000000005,4.82,4.87,4.89,4.89,4.89,4.89,4.88,4.86,171.4,171.46,171.47,171.49,171.5,171.51,171.52,171.53,171.58,22.95,22.61,22.43,22.23,22.04,21.85,21.66,21.47,21.09,N/A,N/A +2012,4,11,23,30,101820,100640,99500,81.47,0,5.72,6.1000000000000005,6.18,6.2,6.22,6.22,6.22,6.21,6.19,172.9,172.8,172.71,172.62,172.54,172.46,172.38,172.29,172.1,22.89,22.55,22.37,22.17,21.98,21.79,21.6,21.42,21.04,N/A,N/A +2012,4,12,0,30,101800,100620,99480,82.42,0,5.8,6.21,6.29,6.32,6.33,6.33,6.32,6.3100000000000005,6.2700000000000005,171.18,171.08,171.07,171.07,171.07,171.07,171.08,171.1,171.13,22.830000000000002,22.48,22.3,22.1,21.91,21.72,21.53,21.35,20.96,N/A,N/A +2012,4,12,1,30,101770,100600,99460,77.69,0,5.91,6.32,6.41,6.43,6.44,6.43,6.41,6.390000000000001,6.3,165.29,165.41,165.47,165.53,165.59,165.66,165.74,165.82,166.08,22.98,22.650000000000002,22.48,22.28,22.09,21.900000000000002,21.7,21.52,21.13,N/A,N/A +2012,4,12,2,30,101790,100610,99480,78.22,0,5.23,5.64,5.74,5.8,5.8500000000000005,5.88,5.92,5.95,6.04,174.69,174.15,173.85,173.57,173.29,173.02,172.70000000000002,172.4,171.55,22.98,22.650000000000002,22.47,22.28,22.09,21.900000000000002,21.71,21.53,21.17,N/A,N/A +2012,4,12,3,30,101800,100620,99480,75.73,0,5.22,5.62,5.72,5.79,5.83,5.87,5.91,5.95,6.0600000000000005,167.13,167.04,166.98,166.91,166.84,166.78,166.71,166.65,166.49,23.11,22.79,22.62,22.43,22.240000000000002,22.06,21.87,21.7,21.35,N/A,N/A +2012,4,12,4,30,101790,100620,99480,78.89,0,5.45,5.83,5.91,5.94,5.95,5.94,5.93,5.92,5.87,168.05,168.09,168.11,168.12,168.13,168.15,168.16,168.16,168.17000000000002,22.98,22.64,22.46,22.26,22.07,21.88,21.68,21.5,21.11,N/A,N/A +2012,4,12,5,30,101780,100610,99470,79.48,0,5.64,6.05,6.140000000000001,6.18,6.21,6.23,6.24,6.25,6.26,167.18,167.27,167.29,167.3,167.32,167.32,167.33,167.33,167.35,22.88,22.54,22.36,22.16,21.97,21.79,21.59,21.41,21.03,N/A,N/A +2012,4,12,6,30,101800,100620,99480,80.19,0,5.24,5.62,5.69,5.72,5.74,5.75,5.75,5.75,5.74,167.39000000000001,167.43,167.47,167.51,167.55,167.59,167.64000000000001,167.68,167.79,22.88,22.53,22.35,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,4,12,7,30,101800,100630,99490,83.24,0,5.14,5.47,5.54,5.58,5.6000000000000005,5.61,5.62,5.62,5.65,175.74,175.8,175.81,175.84,175.86,175.89000000000001,175.92000000000002,175.96,176.06,22.72,22.36,22.19,21.990000000000002,21.79,21.61,21.42,21.23,20.86,N/A,N/A +2012,4,12,8,30,101800,100630,99490,83.93,0,5.21,5.5600000000000005,5.64,5.68,5.7,5.71,5.72,5.72,5.72,170.21,170.23,170.27,170.3,170.33,170.35,170.37,170.39000000000001,170.43,22.72,22.37,22.19,21.990000000000002,21.8,21.61,21.41,21.23,20.85,N/A,N/A +2012,4,12,9,30,101810,100630,99490,84.06,0,4.23,4.49,4.54,4.57,4.59,4.6000000000000005,4.61,4.61,4.62,155.81,155.92000000000002,156,156.08,156.15,156.21,156.28,156.35,156.48,22.7,22.35,22.17,21.97,21.78,21.59,21.39,21.21,20.82,N/A,N/A +2012,4,12,10,30,101790,100620,99480,84.35000000000001,0,4.43,4.71,4.7700000000000005,4.79,4.82,4.83,4.83,4.84,4.84,127.42,127.73,127.85000000000001,127.97,128.09,128.2,128.31,128.42000000000002,128.65,22.69,22.330000000000002,22.150000000000002,21.95,21.76,21.57,21.37,21.18,20.79,N/A,N/A +2012,4,12,11,30,101800,100620,99480,85.83,0,5.68,6.12,6.22,6.2700000000000005,6.3100000000000005,6.33,6.34,6.36,6.37,134.51,134.65,134.65,134.65,134.66,134.66,134.66,134.66,134.67000000000002,22.7,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.17,20.78,N/A,N/A +2012,4,12,12,30,101830,100660,99520,84.57000000000001,0,5.67,6.13,6.25,6.32,6.37,6.41,6.43,6.45,6.48,141.74,142.07,142.28,142.46,142.62,142.77,142.91,143.03,143.29,22.63,22.27,22.080000000000002,21.88,21.68,21.5,21.29,21.11,20.72,N/A,N/A +2012,4,12,13,30,101850,100670,99530,82.74,0,5.32,5.72,5.82,5.87,5.92,5.96,5.99,6.01,6.07,138.81,138.73,138.66,138.57,138.5,138.43,138.36,138.29,138.17000000000002,22.6,22.240000000000002,22.06,21.86,21.67,21.490000000000002,21.29,21.11,20.740000000000002,N/A,N/A +2012,4,12,14,30,101850,100680,99530,83.33,0,6.0200000000000005,6.48,6.6000000000000005,6.66,6.71,6.74,6.7700000000000005,6.79,6.83,135.38,135.48,135.5,135.5,135.5,135.49,135.48,135.47,135.43,22.75,22.38,22.2,22,21.81,21.62,21.42,21.240000000000002,20.85,N/A,N/A +2012,4,12,15,30,101880,100710,99570,83.26,0,5.89,6.33,6.43,6.49,6.5200000000000005,6.55,6.5600000000000005,6.58,6.59,138.20000000000002,138.16,138.16,138.17000000000002,138.18,138.21,138.25,138.28,138.36,22.82,22.45,22.27,22.07,21.88,21.68,21.490000000000002,21.3,20.91,N/A,N/A +2012,4,12,16,30,101900,100730,99590,81.34,0,6.2700000000000005,6.71,6.8100000000000005,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,6.890000000000001,132.53,132.76,132.88,132.99,133.07,133.15,133.23,133.31,133.48,22.94,22.57,22.39,22.19,22,21.81,21.62,21.43,21.05,N/A,N/A +2012,4,12,17,30,101870,100700,99560,80.27,0,5.98,6.42,6.53,6.58,6.62,6.640000000000001,6.66,6.68,6.7,141.23,141.26,141.27,141.27,141.27,141.28,141.28,141.29,141.32,23.080000000000002,22.72,22.54,22.34,22.150000000000002,21.96,21.76,21.580000000000002,21.19,N/A,N/A +2012,4,12,18,30,101870,100690,99550,82.01,0,6.36,6.82,6.93,6.99,7.03,7.05,7.07,7.08,7.1000000000000005,143.28,143.58,143.76,143.92000000000002,144.06,144.20000000000002,144.34,144.46,144.73,23.080000000000002,22.72,22.54,22.330000000000002,22.14,21.95,21.75,21.57,21.18,N/A,N/A +2012,4,12,19,30,101860,100680,99540,80.52,0,6.76,7.3,7.43,7.5,7.54,7.57,7.59,7.61,7.63,148.5,148.70000000000002,148.83,148.94,149.03,149.12,149.21,149.29,149.46,23.2,22.85,22.67,22.47,22.28,22.09,21.900000000000002,21.71,21.32,N/A,N/A +2012,4,12,20,30,101820,100640,99510,81.36,0,6.84,7.390000000000001,7.51,7.57,7.6000000000000005,7.61,7.62,7.62,7.61,149.08,149.23,149.29,149.34,149.37,149.4,149.42000000000002,149.45000000000002,149.49,23.16,22.8,22.63,22.43,22.23,22.04,21.84,21.66,21.27,N/A,N/A +2012,4,12,21,30,101780,100610,99470,79.46000000000001,0,6.47,7.05,7.2,7.29,7.3500000000000005,7.4,7.43,7.46,7.5,150.74,150.58,150.54,150.5,150.47,150.44,150.41,150.39000000000001,150.35,23.22,22.88,22.7,22.5,22.31,22.12,21.92,21.740000000000002,21.35,N/A,N/A +2012,4,12,22,30,101760,100580,99450,80.03,0,7.29,7.94,8.120000000000001,8.23,8.32,8.39,8.45,8.5,8.58,144.22,144.96,145.34,145.72,146.06,146.39000000000001,146.70000000000002,147,147.61,23.31,22.990000000000002,22.82,22.63,22.45,22.27,22.080000000000002,21.900000000000002,21.54,N/A,N/A +2012,4,12,23,30,101710,100530,99400,78.87,0,7.32,7.98,8.15,8.24,8.31,8.36,8.39,8.42,8.47,148.48,148.57,148.6,148.62,148.64000000000001,148.67000000000002,148.68,148.69,148.72,23.23,22.89,22.71,22.52,22.330000000000002,22.14,21.94,21.76,21.37,N/A,N/A +2012,4,13,0,30,101680,100510,99370,79.71000000000001,0,8.53,9.3,9.48,9.56,9.61,9.64,9.65,9.65,9.63,147.19,147.31,147.36,147.42000000000002,147.47,147.51,147.56,147.6,147.67000000000002,23.19,22.84,22.66,22.46,22.26,22.080000000000002,21.87,21.69,21.3,N/A,N/A +2012,4,13,1,30,101640,100470,99330,77.61,0,7.84,8.55,8.73,8.84,8.91,8.97,9.02,9.06,9.13,150.58,150.64000000000001,150.66,150.66,150.65,150.63,150.61,150.59,150.53,23.22,22.88,22.7,22.51,22.31,22.13,21.93,21.75,21.37,N/A,N/A +2012,4,13,2,30,101660,100490,99350,79.21000000000001,0,8.47,9.32,9.53,9.66,9.74,9.8,9.84,9.88,9.91,146.99,147.16,147.26,147.35,147.44,147.51,147.58,147.64000000000001,147.78,23.27,22.93,22.75,22.55,22.35,22.16,21.96,21.78,21.39,N/A,N/A +2012,4,13,3,30,101650,100480,99340,77.2,0,8.52,9.26,9.450000000000001,9.55,9.620000000000001,9.67,9.71,9.74,9.8,152.94,152.36,152.12,151.9,151.71,151.55,151.41,151.28,151.06,23.330000000000002,23.01,22.84,22.650000000000002,22.46,22.28,22.09,21.91,21.54,N/A,N/A +2012,4,13,4,30,101640,100470,99330,76.13,0,9.33,10.22,10.43,10.53,10.6,10.64,10.66,10.68,10.68,156.69,156.53,156.42000000000002,156.31,156.20000000000002,156.1,155.99,155.9,155.69,23.34,22.990000000000002,22.82,22.62,22.43,22.240000000000002,22.04,21.86,21.47,N/A,N/A +2012,4,13,5,30,101630,100460,99320,79.98,0,9.27,10.16,10.39,10.52,10.61,10.67,10.72,10.75,10.790000000000001,151.13,151.29,151.4,151.5,151.59,151.68,151.77,151.85,152.01,23.22,22.87,22.7,22.490000000000002,22.3,22.11,21.91,21.72,21.330000000000002,N/A,N/A +2012,4,13,6,30,101620,100450,99310,72.22,0,9.11,9.98,10.18,10.3,10.38,10.43,10.47,10.5,10.540000000000001,162,161.70000000000002,161.59,161.49,161.41,161.33,161.26,161.19,161.05,23.48,23.150000000000002,22.97,22.77,22.580000000000002,22.39,22.19,22.01,21.62,N/A,N/A +2012,4,13,7,30,101640,100460,99330,73.36,0,9.32,10.28,10.52,10.66,10.76,10.83,10.89,10.93,10.99,166.75,166.1,165.82,165.56,165.33,165.12,164.91,164.72,164.34,23.44,23.1,22.92,22.72,22.53,22.34,22.150000000000002,21.96,21.57,N/A,N/A +2012,4,13,8,30,101600,100430,99300,77.52,0,9.28,10.15,10.370000000000001,10.49,10.57,10.620000000000001,10.66,10.69,10.72,158.58,158.86,159.05,159.26,159.44,159.62,159.8,159.97,160.32,23.31,22.95,22.78,22.580000000000002,22.39,22.2,22.01,21.82,21.44,N/A,N/A +2012,4,13,9,30,101600,100430,99290,79.21000000000001,0,9.55,10.5,10.75,10.88,10.97,11.03,11.07,11.1,11.120000000000001,158.09,157.99,158.02,158.06,158.1,158.15,158.20000000000002,158.25,158.36,23.18,22.830000000000002,22.650000000000002,22.44,22.25,22.06,21.86,21.68,21.29,N/A,N/A +2012,4,13,10,30,101580,100410,99280,80.49,0,8.950000000000001,9.870000000000001,10.120000000000001,10.27,10.39,10.47,10.53,10.59,10.67,163.95000000000002,163.70000000000002,163.57,163.45000000000002,163.34,163.25,163.14000000000001,163.05,162.86,23.21,22.86,22.68,22.48,22.28,22.09,21.89,21.71,21.32,N/A,N/A +2012,4,13,11,30,101570,100400,99270,78.15,0,8.94,9.82,10.05,10.18,10.28,10.34,10.39,10.44,10.5,162.65,162.49,162.45000000000002,162.43,162.42000000000002,162.41,162.41,162.41,162.43,23.28,22.93,22.75,22.55,22.35,22.16,21.97,21.78,21.39,N/A,N/A +2012,4,13,12,30,101590,100420,99290,79.49,0,8.48,9.370000000000001,9.620000000000001,9.78,9.91,10,10.08,10.14,10.24,163.18,163.34,163.4,163.44,163.46,163.48,163.49,163.49,163.49,23.47,23.14,22.96,22.76,22.57,22.38,22.18,22,21.61,N/A,N/A +2012,4,13,13,30,101620,100450,99320,79.38,0,8.370000000000001,9.27,9.52,9.69,9.81,9.91,9.99,10.06,10.17,165.67000000000002,165.49,165.35,165.22,165.09,164.96,164.83,164.71,164.47,23.59,23.26,23.09,22.89,22.7,22.51,22.31,22.13,21.75,N/A,N/A +2012,4,13,14,30,101670,100500,99370,79.31,0,8.790000000000001,9.67,9.870000000000001,9.98,10.05,10.1,10.14,10.16,10.17,158.92000000000002,159.19,159.25,159.29,159.33,159.36,159.38,159.41,159.47,23.71,23.38,23.21,23.01,22.82,22.63,22.44,22.25,21.86,N/A,N/A +2012,4,13,15,30,101710,100530,99400,82.22,0,7.9,8.64,8.82,8.93,9,9.05,9.09,9.120000000000001,9.17,159.42000000000002,159.70000000000002,159.82,159.94,160.04,160.14000000000001,160.23,160.32,160.5,23.71,23.39,23.22,23.02,22.830000000000002,22.650000000000002,22.45,22.27,21.89,N/A,N/A +2012,4,13,16,30,101730,100560,99430,82.52,0,7.42,8.13,8.32,8.44,8.51,8.58,8.620000000000001,8.66,8.72,163.71,164.38,164.68,164.96,165.20000000000002,165.42000000000002,165.62,165.81,166.17000000000002,23.88,23.57,23.400000000000002,23.2,23.02,22.830000000000002,22.63,22.45,22.07,N/A,N/A +2012,4,13,17,30,101720,100550,99420,85.31,0,8.36,9.200000000000001,9.4,9.52,9.6,9.66,9.69,9.71,9.73,159.94,160.29,160.5,160.73,160.94,161.14000000000001,161.34,161.54,161.93,23.85,23.53,23.35,23.16,22.96,22.77,22.580000000000002,22.400000000000002,22.01,N/A,N/A +2012,4,13,18,30,101730,100560,99430,82.25,0,8.51,9.38,9.6,9.73,9.81,9.870000000000001,9.91,9.94,9.97,157.43,157.70000000000002,157.81,157.91,157.98,158.05,158.11,158.16,158.25,23.97,23.66,23.490000000000002,23.29,23.1,22.91,22.72,22.54,22.150000000000002,N/A,N/A +2012,4,13,19,30,101710,100540,99410,84.17,0,7.86,8.620000000000001,8.81,8.92,8.99,9.040000000000001,9.08,9.1,9.14,153.62,153.58,153.6,153.62,153.64000000000001,153.66,153.69,153.71,153.77,23.97,23.66,23.490000000000002,23.3,23.11,22.92,22.72,22.54,22.150000000000002,N/A,N/A +2012,4,13,20,30,101670,100500,99370,86.34,0,8.370000000000001,9.22,9.43,9.56,9.64,9.69,9.73,9.75,9.78,143.36,143.52,143.66,143.82,143.96,144.1,144.23,144.36,144.64000000000001,23.96,23.650000000000002,23.490000000000002,23.29,23.1,22.91,22.72,22.53,22.150000000000002,N/A,N/A +2012,4,13,21,30,101630,100470,99330,86.88,0,9.74,10.77,11.040000000000001,11.21,11.32,11.39,11.44,11.48,11.53,143.65,143.81,143.89000000000001,143.99,144.06,144.14000000000001,144.22,144.28,144.43,23.96,23.650000000000002,23.490000000000002,23.29,23.1,22.91,22.72,22.54,22.16,N/A,N/A +2012,4,13,22,30,101590,100420,99290,85.46000000000001,0,9.75,10.82,11.11,11.28,11.41,11.5,11.57,11.63,11.700000000000001,147.06,147.17000000000002,147.26,147.34,147.41,147.48,147.54,147.6,147.72,23.95,23.650000000000002,23.48,23.29,23.1,22.91,22.72,22.53,22.150000000000002,N/A,N/A +2012,4,13,23,30,101570,100400,99270,87.33,0,10.25,11.38,11.66,11.84,11.97,12.06,12.120000000000001,12.17,12.24,147.57,147.72,147.81,147.9,147.98,148.05,148.12,148.18,148.31,23.85,23.53,23.36,23.17,22.98,22.79,22.59,22.41,22.03,N/A,N/A +2012,4,14,0,30,101530,100360,99230,87.7,0,10.39,11.55,11.86,12.05,12.19,12.290000000000001,12.370000000000001,12.43,12.51,143.11,143.28,143.35,143.41,143.46,143.51,143.56,143.6,143.69,23.84,23.53,23.35,23.16,22.97,22.78,22.59,22.400000000000002,22.01,N/A,N/A +2012,4,14,1,30,101510,100340,99210,85.64,0,11.18,12.41,12.700000000000001,12.88,13.01,13.09,13.15,13.19,13.24,144.36,144.52,144.59,144.66,144.73,144.8,144.88,144.95000000000002,145.11,23.82,23.5,23.330000000000002,23.13,22.94,22.76,22.56,22.38,21.990000000000002,N/A,N/A +2012,4,14,2,30,101530,100370,99230,86.14,0,11.57,12.870000000000001,13.21,13.41,13.55,13.65,13.73,13.790000000000001,13.86,149.61,149.64000000000001,149.67000000000002,149.69,149.72,149.74,149.75,149.77,149.81,23.8,23.48,23.31,23.11,22.91,22.73,22.53,22.35,21.96,N/A,N/A +2012,4,14,3,30,101540,100380,99250,85.58,0,11.3,12.57,12.9,13.1,13.25,13.35,13.43,13.49,13.57,150.6,150.61,150.64000000000001,150.67000000000002,150.70000000000002,150.74,150.77,150.81,150.89000000000001,23.75,23.42,23.25,23.05,22.86,22.67,22.47,22.29,21.900000000000002,N/A,N/A +2012,4,14,4,30,101540,100370,99240,85.33,0,11.35,12.55,12.870000000000001,13.05,13.18,13.280000000000001,13.35,13.41,13.49,150.5,150.97,151.17000000000002,151.35,151.51,151.66,151.8,151.93,152.20000000000002,23.72,23.39,23.22,23.02,22.82,22.63,22.43,22.25,21.86,N/A,N/A +2012,4,14,5,30,101510,100340,99210,83.65,0,12.040000000000001,13.4,13.75,13.96,14.1,14.21,14.280000000000001,14.33,14.4,155.98,155.87,155.8,155.71,155.64000000000001,155.55,155.47,155.4,155.23,23.69,23.35,23.18,22.98,22.79,22.6,22.400000000000002,22.22,21.830000000000002,N/A,N/A +2012,4,14,6,30,101520,100350,99220,84.08,0,11.76,13.19,13.59,13.85,14.05,14.21,14.33,14.44,14.6,155.85,155.8,155.76,155.71,155.65,155.58,155.51,155.44,155.27,23.650000000000002,23.38,23.23,23.04,22.86,22.69,22.5,22.32,21.95,N/A,N/A +2012,4,14,7,30,101540,100370,99240,85.32000000000001,0,11.38,12.73,13.1,13.33,13.51,13.64,13.74,13.82,13.94,151.32,151.47,151.56,151.65,151.75,151.83,151.92000000000002,152,152.17000000000002,23.580000000000002,23.3,23.13,22.95,22.76,22.580000000000002,22.38,22.2,21.82,N/A,N/A +2012,4,14,8,30,101520,100350,99220,85.67,0,11.96,13.370000000000001,13.75,14.01,14.200000000000001,14.35,14.48,14.59,14.8,156.97,157.05,157.09,157.11,157.13,157.14000000000001,157.14000000000001,157.14000000000001,157.13,23.5,23.21,23.05,22.87,22.68,22.5,22.31,22.13,21.76,N/A,N/A +2012,4,14,9,30,101510,100350,99210,86.04,0,11.39,12.75,13.120000000000001,13.36,13.540000000000001,13.68,13.780000000000001,13.870000000000001,14,154.24,154.13,154.14000000000001,154.18,154.21,154.26,154.31,154.37,154.51,23.44,23.14,22.98,22.79,22.6,22.42,22.22,22.04,21.66,N/A,N/A +2012,4,14,10,30,101520,100350,99220,86.06,0,11.41,12.700000000000001,13.06,13.290000000000001,13.46,13.6,13.71,13.81,14,155.78,155.76,155.78,155.8,155.82,155.83,155.85,155.87,155.9,23.41,23.11,22.95,22.76,22.580000000000002,22.39,22.2,22.03,21.650000000000002,N/A,N/A +2012,4,14,11,30,101520,100350,99220,87.16,0,12.11,13.49,13.85,14.06,14.21,14.32,14.39,14.450000000000001,14.51,154.99,155.06,155.1,155.15,155.19,155.22,155.25,155.29,155.35,23.26,22.94,22.77,22.57,22.37,22.19,21.990000000000002,21.8,21.41,N/A,N/A +2012,4,14,12,30,101530,100360,99230,87.32000000000001,0,12.17,13.6,13.98,14.22,14.4,14.540000000000001,14.63,14.72,14.83,152.8,152.88,152.95000000000002,153.01,153.07,153.13,153.19,153.25,153.38,23.29,22.97,22.8,22.6,22.41,22.22,22.03,21.84,21.46,N/A,N/A +2012,4,14,13,30,101550,100380,99250,86.85000000000001,0,11.64,12.96,13.31,13.530000000000001,13.700000000000001,13.83,13.950000000000001,14.05,14.25,152.31,152.51,152.6,152.70000000000002,152.8,152.9,153.01,153.12,153.36,23.31,23,22.84,22.650000000000002,22.46,22.28,22.09,21.92,21.55,N/A,N/A +2012,4,14,14,30,101580,100410,99280,86.02,0,11.47,12.69,13.030000000000001,13.24,13.41,13.540000000000001,13.67,13.790000000000001,14.08,154.12,154.45000000000002,154.6,154.76,154.92000000000002,155.08,155.25,155.42000000000002,155.82,23.41,23.12,22.96,22.77,22.6,22.42,22.240000000000002,22.07,21.73,N/A,N/A +2012,4,14,15,30,101600,100430,99300,86.44,0,12.11,13.51,13.89,14.120000000000001,14.290000000000001,14.42,14.52,14.61,14.74,152.28,152.53,152.64000000000001,152.75,152.86,152.96,153.07,153.17000000000002,153.4,23.41,23.11,22.95,22.75,22.57,22.39,22.2,22.02,21.650000000000002,N/A,N/A +2012,4,14,16,30,101590,100420,99280,84.75,0,10.98,12.21,12.540000000000001,12.75,12.9,13.02,13.11,13.200000000000001,13.34,154.15,154.31,154.37,154.45000000000002,154.52,154.6,154.69,154.77,154.97,23.490000000000002,23.2,23.04,22.85,22.66,22.48,22.29,22.11,21.73,N/A,N/A +2012,4,14,17,30,101580,100410,99280,82.73,0,11.19,12.41,12.73,12.93,13.07,13.17,13.25,13.32,13.43,153.93,154.03,154.08,154.13,154.17000000000002,154.21,154.26,154.31,154.43,23.55,23.27,23.11,22.92,22.73,22.55,22.37,22.19,21.82,N/A,N/A +2012,4,14,18,30,101570,100400,99270,81.85000000000001,0,11.290000000000001,12.65,13.01,13.25,13.42,13.540000000000001,13.63,13.71,13.81,150.85,150.61,150.55,150.51,150.47,150.44,150.41,150.39000000000001,150.36,23.63,23.34,23.18,22.990000000000002,22.8,22.61,22.42,22.23,21.85,N/A,N/A +2012,4,14,19,30,101550,100390,99250,81.73,0,11.89,13.21,13.56,13.77,13.91,14.01,14.08,14.13,14.19,148.36,148.34,148.39000000000001,148.42000000000002,148.46,148.49,148.52,148.56,148.63,23.63,23.36,23.2,23.01,22.82,22.64,22.45,22.27,21.900000000000002,N/A,N/A +2012,4,14,20,30,101500,100330,99200,81.73,0,11.34,12.6,12.94,13.16,13.32,13.450000000000001,13.56,13.65,13.84,148.78,149.18,149.35,149.53,149.70000000000002,149.86,150.04,150.22,150.6,23.6,23.330000000000002,23.17,22.98,22.81,22.63,22.44,22.27,21.91,N/A,N/A +2012,4,14,21,30,101450,100280,99150,82.18,0,11.21,12.56,12.92,13.17,13.35,13.5,13.63,13.74,13.94,150.3,150.38,150.45000000000002,150.53,150.6,150.67000000000002,150.74,150.81,150.98,23.580000000000002,23.31,23.150000000000002,22.96,22.78,22.6,22.41,22.23,21.86,N/A,N/A +2012,4,14,22,30,101400,100230,99100,83.08,0,11.3,12.65,13.01,13.26,13.46,13.61,13.75,13.88,14.13,149.64000000000001,149.85,149.97,150.09,150.22,150.34,150.47,150.59,150.89000000000001,23.52,23.240000000000002,23.080000000000002,22.900000000000002,22.72,22.54,22.35,22.18,21.81,N/A,N/A +2012,4,14,23,30,101350,100190,99060,83.53,0,11.94,13.44,13.84,14.13,14.35,14.530000000000001,14.67,14.8,15.01,148.63,148.66,148.71,148.76,148.82,148.87,148.92000000000002,148.97,149.08,23.47,23.19,23.02,22.830000000000002,22.650000000000002,22.47,22.27,22.09,21.72,N/A,N/A +2012,4,15,0,30,101290,100130,99000,83.85000000000001,0,11.78,13.290000000000001,13.700000000000001,14,14.23,14.43,14.6,14.75,15.02,148.75,148.95000000000002,149.07,149.18,149.29,149.4,149.51,149.62,149.85,23.46,23.17,23.01,22.82,22.64,22.46,22.27,22.09,21.72,N/A,N/A +2012,4,15,1,30,101250,100080,98950,84.37,0,13.21,14.870000000000001,15.32,15.63,15.85,16.02,16.15,16.25,16.41,148.41,148.29,148.28,148.28,148.29,148.29,148.31,148.32,148.36,23.43,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.01,21.63,N/A,N/A +2012,4,15,2,30,101230,100070,98940,84.38,0,12.790000000000001,14.32,14.74,15.030000000000001,15.24,15.4,15.540000000000001,15.66,15.870000000000001,148.67000000000002,148.82,148.92000000000002,149.03,149.13,149.23,149.33,149.43,149.65,23.45,23.16,22.990000000000002,22.8,22.62,22.44,22.240000000000002,22.07,21.69,N/A,N/A +2012,4,15,3,30,101200,100040,98910,86.22,0,13.030000000000001,14.56,14.96,15.23,15.42,15.58,15.700000000000001,15.81,16,148.44,148.59,148.68,148.78,148.88,148.98,149.09,149.20000000000002,149.46,23.34,23.03,22.87,22.67,22.490000000000002,22.3,22.11,21.93,21.56,N/A,N/A +2012,4,15,4,30,101170,100010,98880,87.37,0,13.48,15.11,15.55,15.84,16.05,16.21,16.34,16.45,16.62,150.97,151.04,151.08,151.13,151.18,151.23,151.28,151.34,151.46,23.26,22.95,22.78,22.580000000000002,22.39,22.21,22.01,21.830000000000002,21.46,N/A,N/A +2012,4,15,5,30,101150,99980,98850,87.91,0,13.290000000000001,14.89,15.32,15.6,15.81,15.98,16.11,16.22,16.42,154.05,154.16,154.23,154.3,154.36,154.43,154.49,154.56,154.73,23.25,22.93,22.76,22.57,22.38,22.19,22,21.82,21.44,N/A,N/A +2012,4,15,6,30,101140,99980,98850,89.04,0,13.07,14.59,15,15.27,15.46,15.610000000000001,15.73,15.84,16.02,155.13,155.24,155.3,155.38,155.45000000000002,155.52,155.6,155.68,155.87,23.23,22.91,22.73,22.54,22.35,22.16,21.97,21.79,21.42,N/A,N/A +2012,4,15,7,30,101120,99960,98830,90.39,0,13.47,15.09,15.52,15.8,16.01,16.17,16.3,16.4,16.57,157.41,157.57,157.65,157.73,157.81,157.88,157.97,158.05,158.24,23.22,22.89,22.71,22.51,22.32,22.13,21.94,21.75,21.37,N/A,N/A +2012,4,15,8,30,101100,99930,98800,90.98,0,13.42,15.040000000000001,15.47,15.76,15.97,16.14,16.27,16.38,16.55,161.84,161.76,161.76,161.75,161.76,161.76,161.78,161.8,161.84,23.240000000000002,22.91,22.73,22.54,22.34,22.16,21.96,21.78,21.39,N/A,N/A +2012,4,15,9,30,101110,99940,98810,89.89,0,13.73,15.39,15.85,16.16,16.39,16.56,16.7,16.82,17.02,162.26,162.43,162.49,162.55,162.6,162.64000000000001,162.69,162.73,162.83,23.27,22.95,22.78,22.580000000000002,22.39,22.2,22.01,21.830000000000002,21.44,N/A,N/A +2012,4,15,10,30,101060,99900,98770,91.04,0,13.93,15.56,16,16.29,16.5,16.68,16.82,16.95,17.2,159.98,160.17000000000002,160.26,160.36,160.46,160.56,160.68,160.79,161.08,23.28,22.96,22.79,22.59,22.400000000000002,22.22,22.03,21.85,21.48,N/A,N/A +2012,4,15,11,30,101090,99920,98800,91.33,0,12.700000000000001,14.280000000000001,14.72,15.040000000000001,15.290000000000001,15.5,15.700000000000001,15.870000000000001,16.23,159.70000000000002,159.87,159.98,160.1,160.22,160.34,160.48,160.61,160.92000000000002,23.35,23.05,22.88,22.69,22.5,22.32,22.13,21.96,21.59,N/A,N/A +2012,4,15,12,30,101100,99940,98810,90.96000000000001,0,12.16,13.68,14.09,14.4,14.65,14.870000000000001,15.07,15.25,15.66,161.41,161.51,161.6,161.70000000000002,161.8,161.89000000000001,162.01,162.12,162.38,23.42,23.12,22.95,22.76,22.580000000000002,22.400000000000002,22.21,22.04,21.67,N/A,N/A +2012,4,15,13,30,101120,99960,98840,88.99,0,12.25,13.82,14.34,14.780000000000001,15.19,15.58,16.04,16.490000000000002,17.650000000000002,161.47,161.75,161.93,162.12,162.32,162.52,162.75,162.97,163.53,23.59,23.32,23.17,23,22.84,22.67,22.51,22.36,22.06,N/A,N/A +2012,4,15,14,30,101170,100000,98880,85.85000000000001,0,11.790000000000001,13.3,13.790000000000001,14.21,14.59,14.97,15.38,15.77,16.64,157.88,158.22,158.48,158.78,159.1,159.45000000000002,159.86,160.26,161.16,23.81,23.57,23.43,23.26,23.1,22.94,22.77,22.62,22.3,N/A,N/A +2012,4,15,15,30,101160,100000,98870,87.2,0,12.08,13.620000000000001,14.09,14.47,14.81,15.11,15.42,15.72,16.44,157.96,158.20000000000002,158.35,158.54,158.74,158.96,159.22,159.47,160.11,23.78,23.52,23.37,23.19,23.02,22.84,22.67,22.5,22.16,N/A,N/A +2012,4,15,16,30,101180,100020,98900,86.16,0,10.15,11.97,12.780000000000001,13.58,14.08,14.38,14.77,15.17,15.88,160.08,160.57,161.06,161.83,162.28,162.49,162.62,162.71,163.01,23.95,23.740000000000002,23.6,23.43,23.25,23.080000000000002,22.91,22.77,22.44,N/A,N/A +2012,4,15,17,30,101230,100070,98940,85.46000000000001,0,11.28,12.790000000000001,13.280000000000001,13.67,13.99,14.27,14.530000000000001,14.76,15.200000000000001,163.53,163.67000000000002,163.78,163.89000000000001,164,164.11,164.23,164.34,164.6,24.14,23.93,23.79,23.62,23.45,23.29,23.11,22.95,22.6,N/A,N/A +2012,4,15,18,30,101230,100070,98950,87.96000000000001,0,10.76,12.16,12.620000000000001,12.98,13.280000000000001,13.55,13.790000000000001,14,14.42,161.53,161.66,161.81,161.97,162.12,162.27,162.43,162.58,162.91,24.07,23.85,23.71,23.53,23.37,23.2,23.02,22.85,22.5,N/A,N/A +2012,4,15,19,30,101240,100080,98950,90.34,0,11.16,12.6,13.06,13.43,13.72,13.99,14.23,14.450000000000001,14.870000000000001,165.27,165.52,165.62,165.77,165.91,166.06,166.23,166.39000000000001,166.77,24.02,23.79,23.650000000000002,23.47,23.3,23.13,22.95,22.79,22.44,N/A,N/A +2012,4,15,20,30,101200,100040,98920,91.57000000000001,0,10.71,12.16,12.64,13.040000000000001,13.36,13.65,13.91,14.15,14.6,165.42000000000002,165.55,165.67000000000002,165.8,165.93,166.06,166.20000000000002,166.34,166.64000000000001,24.04,23.82,23.68,23.5,23.34,23.17,22.990000000000002,22.82,22.48,N/A,N/A +2012,4,15,21,30,101200,100040,98910,91.95,0,9.86,11.16,11.59,11.94,12.23,12.49,12.74,12.97,13.41,163.6,163.94,164.12,164.32,164.54,164.77,165.03,165.28,165.9,23.990000000000002,23.76,23.62,23.45,23.29,23.12,22.95,22.79,22.47,N/A,N/A +2012,4,15,22,30,101180,100020,98890,91.83,0,10.450000000000001,11.8,12.23,12.57,12.86,13.11,13.34,13.56,13.97,163.93,164.33,164.51,164.72,164.94,165.16,165.42000000000002,165.67000000000002,166.28,23.93,23.69,23.54,23.37,23.2,23.03,22.86,22.69,22.35,N/A,N/A +2012,4,15,23,30,101190,100030,98910,90.91,0,9.71,10.97,11.4,11.74,12.030000000000001,12.280000000000001,12.52,12.73,13.14,163.52,163.65,163.78,163.93,164.08,164.24,164.41,164.57,164.95000000000002,23.92,23.68,23.54,23.36,23.2,23.02,22.85,22.68,22.330000000000002,N/A,N/A +2012,4,16,0,30,101180,100020,98890,91.73,0,9.09,10.44,10.96,11.39,11.75,12.06,12.34,12.59,13.030000000000001,162.53,162.8,162.99,163.17000000000002,163.36,163.57,163.8,164.03,164.54,23.82,23.580000000000002,23.44,23.27,23.1,22.94,22.76,22.59,22.25,N/A,N/A +2012,4,16,1,30,101190,100030,98910,91.87,0,8.97,10.66,11.370000000000001,11.91,12.32,12.66,12.97,13.25,13.76,158.97,160.26,160.9,161.08,161.22,161.33,161.5,161.66,162.08,23.81,23.55,23.41,23.26,23.11,22.95,22.77,22.61,22.26,N/A,N/A +2012,4,16,2,30,101210,100040,98920,92.29,0,9.27,11.18,11.84,12.07,12.4,12.8,13.16,13.49,14.07,161.69,162.52,162.94,163.16,163.4,163.67000000000002,163.88,164.07,164.55,23.740000000000002,23.5,23.35,23.16,23,22.85,22.68,22.53,22.19,N/A,N/A +2012,4,16,3,30,101210,100050,98930,92.65,0,9.71,11.040000000000001,11.58,12.21,12.72,13.16,13.33,13.4,14.11,162.68,163.09,163.44,163.91,164.3,164.62,164.76,164.83,165.61,23.66,23.400000000000002,23.25,23.09,22.92,22.75,22.57,22.39,22.080000000000002,N/A,N/A +2012,4,16,4,30,101260,100090,98970,92.38,0,9.14,10.24,10.6,10.93,11.24,11.55,11.94,12.35,13.24,162.79,163.03,163.20000000000002,163.43,163.68,163.95000000000002,164.31,164.67000000000002,165.4,23.62,23.35,23.19,23.01,22.84,22.66,22.490000000000002,22.330000000000002,21.990000000000002,N/A,N/A +2012,4,16,5,30,101270,100110,98980,91.8,0,8.92,9.94,10.26,10.52,10.77,11.02,11.33,11.64,12.71,165.83,166.01,166.15,166.32,166.5,166.70000000000002,166.96,167.22,168.01,23.59,23.31,23.150000000000002,22.97,22.79,22.62,22.44,22.28,21.96,N/A,N/A +2012,4,16,6,30,101320,100150,99020,90.28,0,9.01,9.99,10.27,10.49,10.68,10.86,11.07,11.28,12,169.88,169.94,170,170.09,170.19,170.3,170.44,170.58,171.08,23.68,23.39,23.23,23.04,22.87,22.69,22.51,22.35,22.03,N/A,N/A +2012,4,16,7,30,101370,100210,99080,89.4,0,7.98,8.83,9.07,9.25,9.4,9.540000000000001,9.700000000000001,9.86,10.38,173.70000000000002,173.78,173.8,173.84,173.89000000000001,173.94,174.01,174.09,174.32,23.73,23.45,23.28,23.09,22.91,22.740000000000002,22.55,22.38,22.04,N/A,N/A +2012,4,16,8,30,101410,100240,99110,90.19,0,6.8,7.44,7.61,7.72,7.8100000000000005,7.9,7.99,8.09,8.51,181.38,181.36,181.35,181.33,181.31,181.29,181.27,181.26,181.22,23.69,23.39,23.23,23.04,22.86,22.67,22.490000000000002,22.31,21.97,N/A,N/A +2012,4,16,9,30,101470,100310,99180,90.7,0,4.3100000000000005,4.67,4.7700000000000005,4.83,4.89,4.95,5.04,5.15,6.03,198.54,198.36,198.17000000000002,198,197.83,197.66,197.39000000000001,197.1,195.12,23.7,23.41,23.25,23.06,22.87,22.69,22.5,22.330000000000002,22.01,N/A,N/A +2012,4,16,10,30,101510,100350,99220,91.68,0,3.52,3.7600000000000002,3.81,3.83,3.84,3.85,3.85,3.85,5.72,198.31,198.33,198.35,198.36,198.34,198.31,198.31,198.31,194.76,23.67,23.38,23.21,23.02,22.830000000000002,22.64,22.45,22.27,22.05,N/A,N/A +2012,4,16,11,30,101580,100410,99280,92.14,0.7000000000000001,2.64,2.8000000000000003,2.84,2.87,3.22,3.9,4.33,4.64,5.1000000000000005,215.9,215.29,215.06,214.73000000000002,213,209.71,208.36,207.86,206.51,23.7,23.41,23.240000000000002,23.05,22.89,22.76,22.61,22.47,22.17,N/A,N/A +2012,4,16,12,30,101610,100440,99310,92.83,0.7000000000000001,2.24,2.45,2.62,3.06,3.37,3.5500000000000003,3.75,3.94,4.33,162.70000000000002,165.22,167.71,172.45000000000002,175.41,176.65,177.79,178.86,180.54,23.6,23.34,23.21,23.09,22.96,22.830000000000002,22.69,22.57,22.3,N/A,N/A +2012,4,16,13,30,101650,100480,99350,92.87,0,0.09,0.18,0.31,0.8200000000000001,1.32,1.54,1.78,2.02,2.52,138.62,163.83,179.74,188.9,196.3,197.08,197.78,198.45000000000002,199.37,23.6,23.31,23.18,23.06,22.93,22.79,22.66,22.53,22.28,N/A,N/A +2012,4,16,14,30,101710,100540,99410,93.01,0,1.93,2.0100000000000002,2,1.98,1.97,1.97,2.0100000000000002,2.04,2.18,91.69,93.91,95.55,97.91,102.3,108.16,115.37,122.52,133.86,23.66,23.36,23.2,23.01,22.84,22.67,22.51,22.35,22.07,N/A,N/A +2012,4,16,15,30,101710,100540,99410,94.17,0,0.64,0.58,0.48,0.34,0.34,0.43,0.61,0.87,1.41,62.22,63,70.75,87.04,112.5,152.32,167.96,176.64000000000001,179.85,23.52,23.240000000000002,23.13,23.06,22.990000000000002,22.92,22.84,22.76,22.580000000000002,N/A,N/A +2012,4,16,16,30,101690,100520,99390,94.29,0,1.17,1.19,1.18,1.17,1.16,1.16,1.17,1.19,1.33,77.13,81.73,84.85000000000001,88.59,92.66,97.05,103.04,109.22,126.10000000000001,23.6,23.28,23.12,22.93,22.75,22.580000000000002,22.400000000000002,22.240000000000002,21.94,N/A,N/A +2012,4,16,17,30,101660,100490,99360,91.8,1.1,0.93,0.92,0.9,0.88,0.85,0.84,0.81,0.8,0.75,41.63,45.21,47.34,49.660000000000004,52,54.34,57.04,59.58,66.3,23.79,23.47,23.3,23.1,22.91,22.73,22.54,22.36,21.98,N/A,N/A +2012,4,16,18,30,101690,100530,99400,92.07000000000001,0,1.33,1.3900000000000001,1.42,1.44,1.46,1.48,1.5,1.52,1.56,105.43,107.43,108.58,109.63,110.53,111.37,112.18,112.95,114.66,24.07,23.740000000000002,23.56,23.37,23.18,23,22.81,22.63,22.26,N/A,N/A +2012,4,16,19,30,101620,100460,99330,88.21000000000001,0,2.5100000000000002,2.66,2.72,2.7600000000000002,2.81,2.86,2.92,2.98,3.15,118.17,118.36,118.72,119.10000000000001,119.49000000000001,119.89,120.36,120.83,122.22,24.25,23.91,23.73,23.54,23.35,23.16,22.97,22.79,22.41,N/A,N/A +2012,4,16,20,30,101650,100490,99360,86.93,0,2.35,2.44,2.46,2.47,2.47,2.47,2.47,2.47,2.47,115.27,115.59,115.83,116.10000000000001,116.35000000000001,116.58,116.84,117.09,117.63,24.5,24.17,23.990000000000002,23.8,23.61,23.42,23.23,23.05,22.68,N/A,N/A +2012,4,16,21,30,101690,100520,99390,89.05,0,3.75,3.98,4.0200000000000005,4.03,4.0200000000000005,4.01,3.99,3.97,3.91,179.12,178.95000000000002,178.73,178.54,178.38,178.23,178.07,177.91,177.51,24.43,24.11,23.94,23.740000000000002,23.56,23.37,23.17,22.990000000000002,22.62,N/A,N/A +2012,4,16,22,30,101690,100520,99400,88.73,0,4.11,4.43,4.49,4.51,4.53,4.53,4.53,4.5200000000000005,4.5,244.24,244.75,244.89000000000001,245.05,245.20000000000002,245.34,245.5,245.65,246.01000000000002,24.46,24.16,24,23.8,23.61,23.43,23.240000000000002,23.06,22.68,N/A,N/A +2012,4,16,23,30,101630,100450,99320,85.44,0,7.21,7.5600000000000005,7.73,8.13,8.46,8.74,8.620000000000001,8.4,7.79,326.34000000000003,326.44,326.03000000000003,325.05,323.2,320.7,317.29,314.01,309.23,21.85,21.57,21.59,21.86,22.42,23.18,23.67,24.04,23.87,N/A,N/A +2012,4,17,0,30,101630,100450,99310,91.63,0,11.86,12.870000000000001,13.06,13.11,13.11,13.09,13.030000000000001,12.97,12.67,68.73,68.88,68.85000000000001,68.81,68.75,68.68,68.55,68.43,67.77,21.71,21.27,21.09,20.900000000000002,20.73,20.57,20.42,20.28,20.1,N/A,N/A +2012,4,17,1,30,101630,100460,99320,92.27,0,8.46,9.11,9.23,9.27,9.28,9.27,9.23,9.19,9.09,83.22,83.14,83.22,83.28,83.32000000000001,83.34,83.37,83.39,83.52,21.98,21.57,21.37,21.17,20.98,20.8,20.6,20.42,20.05,N/A,N/A +2012,4,17,2,30,101790,100610,99470,90.26,0,5.41,5.75,5.82,5.84,5.8500000000000005,5.8500000000000005,5.84,5.83,5.8,47.93,48.35,48.64,48.94,49.22,49.49,49.78,50.06,50.68,22.080000000000002,21.7,21.51,21.31,21.11,20.92,20.73,20.55,20.17,N/A,N/A +2012,4,17,3,30,101800,100620,99480,86.26,0,5.92,6.34,6.45,6.51,6.55,6.58,6.61,6.63,6.65,50.870000000000005,50.51,50.4,50.300000000000004,50.230000000000004,50.17,50.14,50.11,50.18,22.37,22,21.81,21.61,21.41,21.21,21.02,20.830000000000002,20.43,N/A,N/A +2012,4,17,4,30,101760,100590,99440,90.71000000000001,0,7.54,8.13,8.27,8.34,8.39,8.42,8.44,8.45,8.46,51.24,51.75,52.03,52.300000000000004,52.53,52.75,52.96,53.15,53.550000000000004,22,21.59,21.39,21.19,20.990000000000002,20.8,20.6,20.42,20.04,N/A,N/A +2012,4,17,5,30,101760,100590,99450,87.11,0,8.120000000000001,8.76,8.91,8.97,9,9.02,9.02,9.02,8.99,61.160000000000004,60.94,60.85,60.77,60.69,60.620000000000005,60.56,60.5,60.4,22.16,21.75,21.56,21.36,21.16,20.97,20.78,20.59,20.21,N/A,N/A +2012,4,17,6,30,101840,100660,99520,86.71000000000001,0,7.13,7.66,7.78,7.83,7.86,7.88,7.88,7.890000000000001,7.87,75.13,75.06,74.91,74.78,74.64,74.52,74.39,74.27,74.01,22.240000000000002,21.85,21.67,21.47,21.27,21.080000000000002,20.89,20.71,20.32,N/A,N/A +2012,4,17,7,30,101880,100690,99550,90.74,71.8,6.29,6.76,6.87,6.92,6.96,6.98,6.99,7,7,78.43,77.98,77.59,77.23,76.9,76.60000000000001,76.29,76,75.43,21.63,21.240000000000002,21.06,20.87,20.69,20.53,20.35,20.18,19.84,N/A,N/A +2012,4,17,8,30,101870,100690,99550,91.66,8.4,6.5200000000000005,7.04,7.15,7.21,7.24,7.2700000000000005,7.28,7.28,7.29,52.69,52.99,53.19,53.370000000000005,53.550000000000004,53.71,53.89,54.050000000000004,54.410000000000004,21.82,21.42,21.23,21.04,20.85,20.67,20.47,20.3,19.93,N/A,N/A +2012,4,17,9,30,101870,100690,99540,91.42,0,7.32,7.7700000000000005,7.82,7.8100000000000005,7.7700000000000005,7.72,7.65,7.58,7.390000000000001,24.12,24.34,24.53,24.740000000000002,24.96,25.19,25.490000000000002,25.79,26.7,21.3,20.87,20.67,20.47,20.28,20.1,19.91,19.740000000000002,19.38,N/A,N/A +2012,4,17,10,30,101890,100710,99560,91.85000000000001,47.2,7.46,7.94,8.05,8.09,8.11,8.11,8.1,8.09,8.08,24.62,25.16,25.490000000000002,25.86,26.25,26.650000000000002,27.16,27.66,29.26,21.13,20.69,20.5,20.3,20.12,19.94,19.75,19.580000000000002,19.22,N/A,N/A +2012,4,17,11,30,101850,100670,99520,94.06,11.4,6.88,7.36,7.47,7.53,7.58,7.61,7.640000000000001,7.66,7.73,82.26,81.55,81.07000000000001,80.54,80.01,79.49,78.94,78.42,77.27,21.17,20.740000000000002,20.55,20.35,20.16,19.98,19.79,19.61,19.22,N/A,N/A +2012,4,17,12,30,101940,100750,99600,89.69,0,4.39,4.59,4.63,4.64,4.65,4.64,4.64,4.63,4.61,91.41,91.5,91.63,91.74,91.83,91.91,92,92.07000000000001,92.21000000000001,20.990000000000002,20.580000000000002,20.39,20.18,19.990000000000002,19.8,19.61,19.43,19.05,N/A,N/A +2012,4,17,13,30,101920,100730,99580,93.03,30.400000000000002,8.64,9.370000000000001,9.48,9.53,9.55,9.540000000000001,9.52,9.49,9.4,17.67,18.06,18.25,18.44,18.66,18.86,19.11,19.35,19.96,20.54,20.06,19.85,19.650000000000002,19.45,19.27,19.07,18.89,18.53,N/A,N/A +2012,4,17,14,30,102010,100830,99670,91.16,0,9.5,10.21,10.36,10.41,10.43,10.42,10.39,10.36,10.27,16.56,16.84,16.96,17.07,17.18,17.29,17.41,17.53,17.85,20.580000000000002,20.080000000000002,19.88,19.67,19.47,19.29,19.09,18.92,18.56,N/A,N/A +2012,4,17,15,30,102070,100890,99740,88.59,0,8.35,8.96,9.11,9.17,9.200000000000001,9.22,9.23,9.23,9.21,25.02,25.04,25.01,24.96,24.92,24.87,24.82,24.78,24.68,21.01,20.55,20.35,20.14,19.95,19.76,19.56,19.38,19,N/A,N/A +2012,4,17,16,30,102080,100900,99750,83.55,0,7.07,7.62,7.76,7.84,7.9,7.930000000000001,7.96,7.99,8.01,36.71,36.38,36.13,35.89,35.67,35.45,35.24,35.04,34.61,21.79,21.38,21.19,20.98,20.78,20.59,20.39,20.21,19.82,N/A,N/A +2012,4,17,17,30,102060,100880,99730,79.61,0,5.49,5.89,6,6.0600000000000005,6.11,6.15,6.18,6.21,6.25,39.75,39.58,39.34,39.1,38.89,38.68,38.46,38.26,37.82,22.34,21.97,21.79,21.59,21.39,21.2,21,20.82,20.43,N/A,N/A +2012,4,17,18,30,102050,100870,99720,78.28,0,5.39,5.7700000000000005,5.86,5.91,5.94,5.97,5.98,5.99,6.01,76.49,75.96000000000001,75.52,75.12,74.75,74.41,74.06,73.73,73.02,22.75,22.39,22.22,22.01,21.82,21.63,21.43,21.25,20.87,N/A,N/A +2012,4,17,19,30,102060,100890,99740,79.86,0,4.75,5.05,5.14,5.19,5.22,5.24,5.26,5.2700000000000005,5.28,69.67,69.49,69.41,69.29,69.17,69.03,68.88,68.72,68.35000000000001,22.69,22.330000000000002,22.150000000000002,21.95,21.76,21.57,21.37,21.18,20.8,N/A,N/A +2012,4,17,20,30,101990,100810,99670,79.69,0,5.29,5.67,5.73,5.74,5.75,5.75,5.74,5.73,5.72,58.59,58.94,59.300000000000004,59.660000000000004,60,60.33,60.65,60.95,61.58,22.82,22.48,22.3,22.11,21.92,21.73,21.54,21.36,21,N/A,N/A +2012,4,17,21,30,101960,100780,99640,78.93,0,3.8000000000000003,4.09,4.18,4.25,4.32,4.38,4.46,4.5200000000000005,4.71,46.67,48.18,48.910000000000004,49.63,50.34,51.02,51.81,52.550000000000004,54.370000000000005,22.53,22.18,22,21.81,21.62,21.44,21.25,21.080000000000002,20.72,N/A,N/A +2012,4,17,22,30,101940,100770,99630,77.68,0,2.19,2.41,2.5100000000000002,2.6,2.68,2.75,2.83,2.91,3.08,73.85000000000001,73.93,73.92,73.87,73.8,73.73,73.61,73.49,73.17,22.97,22.650000000000002,22.48,22.29,22.1,21.92,21.73,21.55,21.18,N/A,N/A +2012,4,17,23,30,101920,100740,99610,74.23,0,3.23,3.54,3.64,3.73,3.79,3.85,3.91,3.96,4.05,80.96000000000001,81.10000000000001,81.10000000000001,81.05,81,80.93,80.84,80.75,80.51,23.39,23.080000000000002,22.91,22.72,22.53,22.34,22.150000000000002,21.97,21.580000000000002,N/A,N/A +2012,4,18,0,30,101900,100730,99590,70.55,0,4.34,4.94,5.15,5.34,5.5200000000000005,5.68,5.91,6.13,6.9,57.32,54.84,53.81,52.76,51.79,50.870000000000005,49.44,47.94,43.78,24.14,23.93,23.79,23.63,23.46,23.3,23.13,22.98,22.67,N/A,N/A +2012,4,18,1,30,101920,100750,99610,57.84,0,8.94,9.8,10,10.1,10.17,10.200000000000001,10.21,10.22,10.21,39.99,40.18,40.32,40.49,40.660000000000004,40.83,41.02,41.2,41.6,24.28,24.080000000000002,23.94,23.76,23.580000000000002,23.400000000000002,23.22,23.04,22.66,N/A,N/A +2012,4,18,2,30,101970,100790,99650,71.2,0,9.950000000000001,10.9,11.120000000000001,11.23,11.290000000000001,11.33,11.34,11.35,11.33,57.910000000000004,57.82,57.730000000000004,57.64,57.56,57.480000000000004,57.38,57.300000000000004,57.13,22.96,22.62,22.44,22.240000000000002,22.05,21.86,21.66,21.47,21.080000000000002,N/A,N/A +2012,4,18,3,30,102010,100830,99680,75.64,0,10.17,11.09,11.31,11.4,11.47,11.5,11.51,11.52,11.5,59.59,59.410000000000004,59.31,59.19,59.08,58.97,58.84,58.72,58.44,22.05,21.64,21.45,21.240000000000002,21.04,20.85,20.650000000000002,20.47,20.080000000000002,N/A,N/A +2012,4,18,4,30,102000,100820,99670,74.38,0,9.59,10.47,10.67,10.78,10.86,10.91,10.94,10.96,10.99,55.38,55.300000000000004,55.27,55.24,55.21,55.19,55.15,55.13,55.050000000000004,21.650000000000002,21.21,21.02,20.81,20.61,20.42,20.22,20.04,19.650000000000002,N/A,N/A +2012,4,18,5,30,102010,100830,99680,74.41,0,9.72,10.540000000000001,10.73,10.83,10.89,10.93,10.94,10.96,10.96,56.56,56.49,56.46,56.43,56.4,56.370000000000005,56.33,56.300000000000004,56.230000000000004,21.11,20.64,20.44,20.23,20.03,19.84,19.63,19.45,19.06,N/A,N/A +2012,4,18,6,30,102040,100850,99700,75.49,0,9.02,9.74,9.91,9.99,10.040000000000001,10.07,10.09,10.1,10.1,58.56,58.61,58.65,58.68,58.71,58.730000000000004,58.75,58.77,58.81,20.68,20.18,19.97,19.76,19.55,19.36,19.150000000000002,18.97,18.57,N/A,N/A +2012,4,18,7,30,102070,100880,99730,75.95,0,8.620000000000001,9.27,9.41,9.48,9.52,9.55,9.56,9.57,9.56,57.81,57.88,57.94,58,58.06,58.11,58.160000000000004,58.21,58.300000000000004,20.25,19.740000000000002,19.52,19.31,19.11,18.91,18.71,18.52,18.13,N/A,N/A +2012,4,18,8,30,102060,100870,99710,73,0,8.22,8.81,8.94,9,9.03,9.05,9.06,9.06,9.05,52.33,52.49,52.58,52.660000000000004,52.75,52.82,52.9,52.980000000000004,53.14,20.03,19.52,19.31,19.09,18.89,18.7,18.490000000000002,18.31,17.92,N/A,N/A +2012,4,18,9,30,102060,100860,99700,72.39,0,8.26,8.85,8.97,9.03,9.06,9.08,9.09,9.09,9.07,50.59,50.75,50.85,50.93,51.02,51.1,51.19,51.27,51.45,19.69,19.17,18.95,18.740000000000002,18.53,18.34,18.14,17.95,17.56,N/A,N/A +2012,4,18,10,30,102070,100870,99710,73.4,0,7.5600000000000005,8.05,8.15,8.19,8.22,8.22,8.22,8.22,8.19,49.14,49.32,49.44,49.54,49.65,49.74,49.85,49.94,50.14,19.5,18.97,18.76,18.54,18.34,18.150000000000002,17.94,17.75,17.37,N/A,N/A +2012,4,18,11,30,102080,100880,99720,74,0,7.48,7.96,8.05,8.09,8.11,8.11,8.11,8.1,8.07,47.26,47.38,47.46,47.52,47.58,47.64,47.7,47.75,47.870000000000005,19.26,18.72,18.51,18.29,18.09,17.89,17.69,17.5,17.11,N/A,N/A +2012,4,18,12,30,102090,100890,99730,76.66,0,7.26,7.72,7.8,7.83,7.8500000000000005,7.8500000000000005,7.84,7.83,7.79,44.800000000000004,44.980000000000004,45.11,45.22,45.32,45.410000000000004,45.51,45.61,45.800000000000004,18.97,18.43,18.21,18,17.79,17.6,17.400000000000002,17.21,16.82,N/A,N/A +2012,4,18,13,30,102100,100900,99740,79.10000000000001,0,7.03,7.46,7.53,7.5600000000000005,7.57,7.57,7.57,7.5600000000000005,7.5200000000000005,45.42,45.61,45.72,45.81,45.9,45.980000000000004,46.06,46.14,46.300000000000004,18.75,18.21,17.990000000000002,17.77,17.56,17.37,17.17,16.98,16.59,N/A,N/A +2012,4,18,14,30,102150,100950,99780,83.05,0,6.15,6.48,6.53,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.55,6.54,6.5200000000000005,39.24,39.660000000000004,39.93,40.17,40.4,40.61,40.82,41.02,41.44,18.47,17.93,17.71,17.5,17.29,17.1,16.9,16.71,16.32,N/A,N/A +2012,4,18,15,30,102140,100940,99770,81.53,0,5.7,5.98,6.01,6.0200000000000005,6.01,5.99,5.97,5.95,5.9,34.53,34.93,35.160000000000004,35.39,35.61,35.81,36.03,36.22,36.65,18.52,18,17.78,17.57,17.36,17.17,16.97,16.78,16.39,N/A,N/A +2012,4,18,16,30,102130,100930,99760,73.96000000000001,0,5.19,5.44,5.48,5.49,5.5,5.49,5.49,5.48,5.45,26.42,26.54,26.64,26.740000000000002,26.830000000000002,26.92,27.01,27.1,27.3,18.75,18.25,18.04,17.830000000000002,17.63,17.44,17.240000000000002,17.05,16.67,N/A,N/A +2012,4,18,17,30,102100,100900,99740,69.92,0,4.07,4.2700000000000005,4.3100000000000005,4.33,4.3500000000000005,4.36,4.37,4.38,4.39,37.79,37.52,37.31,37.09,36.87,36.67,36.45,36.24,35.78,19.37,18.91,18.7,18.5,18.3,18.11,17.91,17.72,17.34,N/A,N/A +2012,4,18,18,30,102050,100860,99700,68.16,0,2.48,2.58,2.6,2.62,2.63,2.64,2.65,2.66,2.68,40.99,40.01,39.38,38.76,38.13,37.5,36.81,36.15,34.59,19.91,19.48,19.28,19.080000000000002,18.88,18.7,18.5,18.32,17.93,N/A,N/A +2012,4,18,19,30,102000,100810,99650,66.6,0,1.62,1.68,1.7,1.7,1.71,1.72,1.73,1.74,1.79,70.15,68.72,67.66,66.56,65.35,64.14,62.54,60.94,56.09,20.44,20.03,19.84,19.650000000000002,19.46,19.28,19.09,18.91,18.56,N/A,N/A +2012,4,18,20,30,101920,100730,99580,65.08,0,0.38,0.42,0.44,0.45,0.48,0.5,0.52,0.55,0.62,24.17,17.48,13.530000000000001,9.950000000000001,6.76,3.85,1.09,358.54,353.73,20.900000000000002,20.51,20.330000000000002,20.13,19.93,19.75,19.55,19.37,18.98,N/A,N/A +2012,4,18,21,30,101860,100670,99520,64.19,0,0.37,0.34,0.31,0.28,0.26,0.23,0.2,0.18,0.16,144.89000000000001,140.04,136.89000000000001,133.17000000000002,128.06,122.64,112.71000000000001,103.27,64.37,21.2,20.82,20.64,20.44,20.25,20.07,19.87,19.69,19.32,N/A,N/A +2012,4,18,22,30,101800,100610,99470,62.870000000000005,0,1.6600000000000001,1.6500000000000001,1.61,1.56,1.5,1.45,1.36,1.29,0.99,128.56,127.71000000000001,127.13000000000001,126.5,125.79,125.07000000000001,123.95,122.86,115.37,21.53,21.16,20.98,20.79,20.6,20.42,20.23,20.06,19.72,N/A,N/A +2012,4,18,23,30,101750,100570,99420,62.36,0,1.78,1.77,1.72,1.67,1.6,1.54,1.44,1.36,0.97,136.17000000000002,135.84,135.6,135.28,134.86,134.4,133.55,132.7,119.44,21.73,21.38,21.2,21.01,20.82,20.64,20.46,20.29,19.96,N/A,N/A +2012,4,19,0,30,101710,100530,99380,63.050000000000004,0,1.94,1.95,1.92,1.87,1.81,1.75,1.6,1.45,0.81,122.57000000000001,122.09,121.83,121.5,121.07000000000001,120.59,119.04,116.57000000000001,62.910000000000004,21.89,21.54,21.37,21.18,21,20.82,20.66,20.52,20.61,N/A,N/A +2012,4,19,1,30,101680,100500,99350,62.13,0,2.19,2.21,2.18,2.13,2.06,1.98,1.78,1.59,1.46,125.61,124.84,124.26,123.54,122.42,121.16,115.7,109.14,45.17,22.13,21.8,21.63,21.45,21.27,21.11,21,20.93,21.25,N/A,N/A +2012,4,19,2,30,101690,100510,99370,56.63,0,2.57,2.63,2.62,2.59,2.5500000000000003,2.52,2.48,2.44,2.32,112.61,112.09,111.7,111.25,110.73,110.19,109.42,108.67,105.66,22.51,22.19,22.01,21.830000000000002,21.64,21.46,21.28,21.11,20.78,N/A,N/A +2012,4,19,3,30,101680,100500,99360,63.980000000000004,0,2.93,3.02,3.02,3,2.98,2.96,2.93,2.91,2.84,125.74000000000001,125.29,124.95,124.57000000000001,124.16,123.75,123.18,122.64,120.8,22.1,21.740000000000002,21.57,21.37,21.18,21,20.81,20.63,20.26,N/A,N/A +2012,4,19,4,30,101670,100490,99350,64.14,0,2.37,2.46,2.47,2.47,2.46,2.46,2.45,2.44,2.44,127.85000000000001,127.2,126.75,126.26,125.7,125.11,124.28,123.47,120.56,22.1,21.75,21.57,21.38,21.19,21.01,20.82,20.650000000000002,20.29,N/A,N/A +2012,4,19,5,30,101650,100480,99330,62.02,0,1.41,1.47,1.49,1.51,1.53,1.54,1.57,1.59,1.7,125.45,124.42,123.81,123.16,122.45,121.72,120.8,119.9,116.97,22.32,21.98,21.81,21.62,21.43,21.25,21.06,20.88,20.53,N/A,N/A +2012,4,19,6,30,101660,100490,99340,62.95,0,1.6500000000000001,1.71,1.71,1.71,1.71,1.71,1.71,1.71,1.71,129.96,128.49,127.63000000000001,126.74000000000001,125.89,125.07000000000001,124.16,123.31,121.37,22.36,22.02,21.84,21.650000000000002,21.45,21.27,21.07,20.89,20.5,N/A,N/A +2012,4,19,7,30,101680,100500,99360,62.85,0,1.9100000000000001,2.02,2.04,2.07,2.08,2.11,2.13,2.15,2.19,141.54,140.56,139.95000000000002,139.37,138.81,138.29,137.75,137.26,136.25,22.36,22.01,21.84,21.64,21.45,21.26,21.06,20.88,20.490000000000002,N/A,N/A +2012,4,19,8,30,101660,100480,99340,65.49,0,2.27,2.36,2.37,2.38,2.38,2.38,2.38,2.39,2.39,146.76,145.49,144.69,143.94,143.26,142.62,141.98,141.4,140.21,22.2,21.86,21.68,21.47,21.28,21.09,20.89,20.71,20.31,N/A,N/A +2012,4,19,9,30,101640,100460,99320,66.64,0,1.86,1.9100000000000001,1.9100000000000001,1.9000000000000001,1.9000000000000001,1.8900000000000001,1.8900000000000001,1.8800000000000001,1.87,170.89000000000001,169.45000000000002,168.49,167.57,166.73,165.94,165.13,164.39000000000001,162.9,22.07,21.72,21.54,21.34,21.14,20.96,20.76,20.57,20.18,N/A,N/A +2012,4,19,10,30,101630,100450,99300,67.74,0,2.0300000000000002,2.07,2.06,2.04,2.0300000000000002,2.0100000000000002,2,1.98,1.95,182.74,181.29,180.33,179.41,178.54,177.71,176.88,176.13,174.47,21.91,21.55,21.37,21.17,20.97,20.78,20.580000000000002,20.400000000000002,20.01,N/A,N/A +2012,4,19,11,30,101620,100440,99290,67.44,0,1.77,1.82,1.82,1.82,1.82,1.82,1.82,1.82,1.82,190.17000000000002,187.84,186.45000000000002,185.11,183.88,182.72,181.53,180.44,178.22,21.81,21.45,21.27,21.07,20.88,20.69,20.490000000000002,20.31,19.91,N/A,N/A +2012,4,19,12,30,101600,100420,99280,66.76,0,1.49,1.6,1.6400000000000001,1.68,1.71,1.74,1.77,1.8,1.86,168.02,166.39000000000001,165.41,164.51,163.73,163.03,162.35,161.73,160.54,21.79,21.43,21.25,21.05,20.85,20.66,20.46,20.28,19.89,N/A,N/A +2012,4,19,13,30,101600,100420,99280,66.16,0,1.86,1.97,2,2.0300000000000002,2.05,2.07,2.09,2.11,2.14,169.45000000000002,167.66,166.54,165.51,164.6,163.76,162.92000000000002,162.16,160.63,21.84,21.48,21.3,21.1,20.91,20.72,20.52,20.34,19.95,N/A,N/A +2012,4,19,14,30,101620,100440,99290,63.89,0,1.33,1.47,1.53,1.58,1.6300000000000001,1.68,1.73,1.77,1.86,165.08,162.48,161.03,159.81,158.8,157.92000000000002,157.15,156.47,155.22,22.03,21.68,21.5,21.31,21.11,20.92,20.73,20.54,20.150000000000002,N/A,N/A +2012,4,19,15,30,101600,100420,99280,60.7,0,1.98,2.15,2.2,2.25,2.2800000000000002,2.32,2.35,2.38,2.43,141.36,141.85,142.24,142.59,142.9,143.18,143.46,143.72,144.22,22.150000000000002,21.79,21.61,21.41,21.21,21.03,20.82,20.64,20.240000000000002,N/A,N/A +2012,4,19,16,30,101590,100410,99270,63.74,0,2.88,3.0300000000000002,3.0700000000000003,3.1,3.13,3.15,3.17,3.18,3.22,157.9,157.55,157.3,157.07,156.85,156.65,156.46,156.29,155.92000000000002,22.150000000000002,21.79,21.6,21.400000000000002,21.2,21.01,20.81,20.62,20.23,N/A,N/A +2012,4,19,17,30,101550,100380,99230,62.7,0,2.84,2.96,2.98,3,3,3.0100000000000002,3.0100000000000002,3.0100000000000002,3.02,157.99,158.02,158.12,158.24,158.35,158.45000000000002,158.57,158.68,158.92000000000002,22.2,21.830000000000002,21.650000000000002,21.44,21.25,21.06,20.86,20.67,20.28,N/A,N/A +2012,4,19,18,30,101520,100350,99210,68.3,0,3.49,3.66,3.69,3.7,3.71,3.72,3.72,3.73,3.73,166.8,166.57,166.4,166.22,166.06,165.9,165.74,165.6,165.31,22.17,21.79,21.61,21.400000000000002,21.21,21.02,20.81,20.63,20.240000000000002,N/A,N/A +2012,4,19,19,30,101490,100310,99170,69.58,0,2.98,3.16,3.21,3.25,3.2800000000000002,3.31,3.34,3.36,3.4,167.33,167.24,167.3,167.35,167.39000000000001,167.43,167.47,167.5,167.57,22.17,21.79,21.61,21.400000000000002,21.21,21.01,20.81,20.63,20.23,N/A,N/A +2012,4,19,20,30,101410,100240,99100,70.9,0,3.94,4.12,4.14,4.14,4.14,4.13,4.12,4.11,4.09,167.56,168.09,168.45000000000002,168.78,169.06,169.3,169.53,169.73,170.07,22.1,21.72,21.53,21.330000000000002,21.13,20.94,20.740000000000002,20.56,20.16,N/A,N/A +2012,4,19,21,30,101350,100180,99040,71.02,0,4.65,4.9,4.93,4.95,4.95,4.95,4.95,4.94,4.93,170.34,169.99,169.76,169.53,169.31,169.11,168.89000000000001,168.69,168.27,22.13,21.75,21.57,21.36,21.17,20.98,20.78,20.59,20.2,N/A,N/A +2012,4,19,22,30,101280,100110,98970,66.61,0,5.23,5.53,5.58,5.59,5.6000000000000005,5.6000000000000005,5.59,5.58,5.5600000000000005,161.41,161.78,161.96,162.11,162.25,162.38,162.5,162.61,162.83,22.25,21.88,21.69,21.490000000000002,21.29,21.1,20.900000000000002,20.72,20.32,N/A,N/A +2012,4,19,23,30,101230,100060,98920,71.8,0,5.13,5.5,5.58,5.64,5.68,5.71,5.73,5.75,5.78,160.68,160.93,161.02,161.07,161.12,161.16,161.19,161.22,161.26,22.12,21.73,21.55,21.34,21.14,20.96,20.75,20.56,20.17,N/A,N/A +2012,4,20,0,30,101170,100000,98860,72.21000000000001,0,5.84,6.25,6.34,6.4,6.43,6.46,6.48,6.49,6.5200000000000005,166.95000000000002,166.35,166,165.69,165.4,165.14000000000001,164.87,164.63,164.12,22.080000000000002,21.69,21.5,21.29,21.1,20.91,20.71,20.52,20.13,N/A,N/A +2012,4,20,1,30,101130,99960,98820,72.02,0,6.32,6.7,6.76,6.78,6.78,6.78,6.7700000000000005,6.76,6.74,175.6,174.59,174,173.42000000000002,172.87,172.35,171.83,171.34,170.32,21.98,21.57,21.39,21.18,20.990000000000002,20.79,20.59,20.41,20.02,N/A,N/A +2012,4,20,2,30,101140,99960,98830,71.97,0,7.55,8.120000000000001,8.24,8.290000000000001,8.31,8.31,8.31,8.3,8.27,154.97,155.34,155.63,155.93,156.21,156.47,156.75,157.02,157.57,22.12,21.72,21.53,21.32,21.12,20.93,20.73,20.54,20.150000000000002,N/A,N/A +2012,4,20,3,30,101110,99930,98800,72.01,0,7.930000000000001,8.51,8.620000000000001,8.66,8.69,8.69,8.69,8.69,8.66,171.83,171.37,171.18,171.01,170.86,170.72,170.58,170.45000000000002,170.19,22.05,21.650000000000002,21.46,21.25,21.05,20.86,20.66,20.48,20.09,N/A,N/A +2012,4,20,4,30,101100,99930,98790,79.19,0,6.48,6.96,7.07,7.13,7.17,7.19,7.21,7.22,7.22,176.44,176.14000000000001,175.98,175.84,175.72,175.61,175.49,175.39000000000001,175.19,21.96,21.55,21.36,21.16,20.96,20.77,20.56,20.38,19.98,N/A,N/A +2012,4,20,5,30,101070,99900,98760,75.7,0,8.15,8.88,9.06,9.18,9.26,9.33,9.38,9.41,9.48,169.52,170.88,171.46,171.97,172.4,172.77,173.12,173.44,174.02,22.28,21.88,21.69,21.490000000000002,21.28,21.09,20.89,20.7,20.31,N/A,N/A +2012,4,20,6,30,101060,99890,98750,75.60000000000001,0,8.33,9.040000000000001,9.22,9.32,9.39,9.450000000000001,9.49,9.52,9.59,180.58,180.68,180.78,180.87,180.94,181.01,181.07,181.12,181.22,22.25,21.830000000000002,21.650000000000002,21.44,21.240000000000002,21.05,20.85,20.67,20.28,N/A,N/A +2012,4,20,7,30,101060,99890,98750,76.09,0,8.25,8.91,9.07,9.14,9.19,9.22,9.23,9.24,9.23,186.47,186.70000000000002,186.73,186.71,186.69,186.65,186.6,186.56,186.45000000000002,22.38,21.97,21.78,21.57,21.38,21.18,20.98,20.79,20.400000000000002,N/A,N/A +2012,4,20,8,30,101030,99860,98730,75.19,0,8.33,9.06,9.24,9.34,9.41,9.46,9.49,9.52,9.56,185.17000000000002,185.19,185.17000000000002,185.13,185.08,185.03,184.98,184.92000000000002,184.82,22.38,21.98,21.79,21.59,21.39,21.2,21,20.81,20.42,N/A,N/A +2012,4,20,9,30,101040,99870,98740,74.14,0,8.26,8.9,9.040000000000001,9.1,9.14,9.16,9.17,9.17,9.16,189.29,189.38,189.6,189.86,190.09,190.32,190.56,190.78,191.24,22.62,22.22,22.04,21.830000000000002,21.63,21.44,21.240000000000002,21.05,20.66,N/A,N/A +2012,4,20,10,30,101030,99860,98730,76.22,0,6.62,7.13,7.26,7.34,7.4,7.44,7.48,7.51,7.5600000000000005,184.04,184.24,184.29,184.33,184.37,184.41,184.44,184.48,184.58,22.41,22.02,21.84,21.64,21.44,21.25,21.05,20.87,20.48,N/A,N/A +2012,4,20,11,30,101030,99870,98730,74.56,0,7.47,8.11,8.24,8.31,8.35,8.370000000000001,8.370000000000001,8.370000000000001,8.36,190.96,191.19,191.34,191.46,191.56,191.66,191.75,191.83,191.99,22.66,22.27,22.080000000000002,21.88,21.68,21.490000000000002,21.28,21.1,20.71,N/A,N/A +2012,4,20,12,30,101030,99860,98730,72.12,0,6.82,7.3100000000000005,7.43,7.48,7.5200000000000005,7.54,7.5600000000000005,7.57,7.58,189.11,188.99,188.92000000000002,188.88,188.84,188.8,188.77,188.74,188.69,22.41,22.02,21.830000000000002,21.63,21.44,21.25,21.05,20.86,20.48,N/A,N/A +2012,4,20,13,30,101140,99970,98830,71.5,0,3.29,3.52,3.59,3.63,3.67,3.7,3.73,3.75,3.8000000000000003,218.27,217.73000000000002,217.49,217.25,217.01,216.78,216.54,216.32,215.83,22.42,22.06,21.88,21.68,21.48,21.29,21.09,20.91,20.51,N/A,N/A +2012,4,20,14,30,101090,99920,98780,71.39,0,5.73,5.97,5.96,5.91,5.8500000000000005,5.8,5.74,5.69,5.57,188.33,187.78,187.48,187.18,186.9,186.64000000000001,186.36,186.11,185.6,22.39,22.01,21.830000000000002,21.63,21.43,21.240000000000002,21.04,20.86,20.47,N/A,N/A +2012,4,20,15,30,101110,99940,98810,71.81,0,5.16,5.49,5.57,5.61,5.63,5.65,5.66,5.67,5.69,179.73,179.6,179.62,179.65,179.70000000000002,179.74,179.8,179.86,180,22.51,22.14,21.95,21.75,21.55,21.36,21.16,20.98,20.59,N/A,N/A +2012,4,20,16,30,101130,99960,98830,72.69,0,4.36,4.65,4.74,4.8,4.84,4.87,4.9,4.92,4.96,186.3,186.22,186.11,186.01,185.91,185.81,185.71,185.62,185.4,22.66,22.3,22.11,21.91,21.72,21.52,21.32,21.14,20.740000000000002,N/A,N/A +2012,4,20,17,30,101190,100020,98890,71.45,0,2.7600000000000002,2.91,2.95,2.98,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.09,214.08,214.18,214.11,214.04,213.97,213.92000000000002,213.84,213.78,213.66,22.77,22.41,22.23,22.03,21.84,21.650000000000002,21.45,21.26,20.87,N/A,N/A +2012,4,20,18,30,101170,100000,98870,68.64,0,2.56,2.66,2.68,2.68,2.68,2.68,2.67,2.67,2.66,214.39000000000001,213.5,212.95000000000002,212.43,211.96,211.52,211.06,210.66,209.82,22.900000000000002,22.54,22.36,22.16,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,4,20,19,30,101090,99920,98790,69.82000000000001,0,2.95,3.1,3.14,3.17,3.19,3.21,3.22,3.24,3.27,176.64000000000001,177.75,178.42000000000002,179.02,179.53,179.99,180.43,180.84,181.6,22.89,22.52,22.34,22.13,21.94,21.75,21.55,21.36,20.97,N/A,N/A +2012,4,20,20,30,101040,99880,98750,73.31,0,4.01,4.24,4.29,4.32,4.33,4.3500000000000005,4.3500000000000005,4.36,4.37,180.87,180.69,180.58,180.48,180.38,180.27,180.18,180.09,179.9,22.92,22.55,22.37,22.17,21.97,21.78,21.580000000000002,21.39,21,N/A,N/A +2012,4,20,21,30,101030,99860,98730,68.97,0,3.43,3.61,3.65,3.67,3.67,3.68,3.68,3.69,3.68,179.97,180.64000000000001,181,181.35,181.67000000000002,181.98,182.31,182.61,183.27,23.04,22.69,22.51,22.31,22.12,21.93,21.73,21.55,21.17,N/A,N/A +2012,4,20,22,30,100950,99780,98650,68.57000000000001,0,3.95,4.17,4.21,4.23,4.24,4.24,4.24,4.23,4.22,180.48,180.92000000000002,181.02,181.13,181.24,181.35,181.47,181.58,181.83,23.11,22.76,22.59,22.39,22.19,22.01,21.81,21.63,21.240000000000002,N/A,N/A +2012,4,20,23,30,101130,99950,98800,87.69,22.3,15.16,16.28,16.46,16.45,16.37,16.27,16.1,15.94,15.48,306.59000000000003,306.08,305.68,305.2,304.64,304.07,303.3,302.55,300.36,19.91,19.3,19.1,18.94,18.8,18.67,18.56,18.47,18.32,N/A,N/A +2012,4,21,0,30,101020,99840,98690,85.01,7,5.51,5.86,5.97,6.05,6.12,6.18,6.26,6.33,6.6000000000000005,343.54,343.17,342.83,342.49,342.13,341.78000000000003,341.36,340.96,339.89,19.77,19.3,19.1,18.91,18.72,18.54,18.36,18.2,17.89,N/A,N/A +2012,4,21,1,30,100980,99800,98660,82.10000000000001,0,1.56,1.72,1.78,1.84,1.9100000000000001,1.98,2.08,2.19,2.7600000000000002,314.47,314.83,315.65000000000003,316.5,317.43,318.39,319.65000000000003,320.92,325.75,20.57,20.19,20.01,19.82,19.64,19.47,19.3,19.14,18.94,N/A,N/A +2012,4,21,2,30,101060,99890,98740,82.91,0,5.3,5.65,5.73,5.79,5.84,5.87,5.91,5.94,6.01,279.03000000000003,279.15000000000003,279.26,279.41,279.56,279.71,279.90000000000003,280.07,280.47,20.490000000000002,20.04,19.84,19.63,19.43,19.240000000000002,19.04,18.86,18.48,N/A,N/A +2012,4,21,3,30,101100,99920,98780,73.69,0,9.59,10.31,10.46,10.52,10.55,10.56,10.56,10.55,10.52,331.28000000000003,331.26,331.18,331.11,331.04,330.98,330.92,330.87,330.79,21,20.5,20.29,20.07,19.87,19.67,19.47,19.28,18.89,N/A,N/A +2012,4,21,4,30,101090,99910,98760,84.67,0,9.4,10.22,10.42,10.53,10.61,10.66,10.69,10.72,10.74,344.79,345.11,345.13,345.13,345.12,345.11,345.09000000000003,345.07,345.03000000000003,20.11,19.56,19.34,19.11,18.900000000000002,18.7,18.490000000000002,18.3,17.900000000000002,N/A,N/A +2012,4,21,5,30,101090,99900,98760,85.69,0,10.950000000000001,11.92,12.15,12.280000000000001,12.36,12.41,12.450000000000001,12.48,12.5,346.26,346.54,346.62,346.67,346.71,346.74,346.76,346.77,346.78000000000003,19.66,19.07,18.84,18.61,18.400000000000002,18.21,18,17.81,17.42,N/A,N/A +2012,4,21,6,30,101110,99920,98770,81.02,0,12.86,14.16,14.51,14.72,14.870000000000001,14.98,15.07,15.15,15.26,354.8,355.04,355.16,355.26,355.36,355.46,355.55,355.63,355.81,19.35,18.71,18.47,18.240000000000002,18.02,17.82,17.61,17.42,17.03,N/A,N/A +2012,4,21,7,30,101150,99970,98810,80,0,13.73,15.15,15.55,15.8,15.98,16.13,16.240000000000002,16.34,16.52,358.11,358.29,358.40000000000003,358.51,358.6,358.69,358.79,358.88,359.08,19,18.32,18.07,17.84,17.62,17.42,17.21,17.02,16.63,N/A,N/A +2012,4,21,8,30,101130,99940,98790,79.32000000000001,0,14.43,15.96,16.37,16.62,16.8,16.94,17.04,17.14,17.27,357,357.05,357.09000000000003,357.12,357.15000000000003,357.18,357.21,357.23,357.29,18.93,18.240000000000002,17.990000000000002,17.75,17.53,17.32,17.1,16.91,16.5,N/A,N/A +2012,4,21,9,30,101160,99970,98810,81.19,0,14.32,15.780000000000001,16.17,16.4,16.56,16.68,16.76,16.84,16.93,357.49,357.40000000000003,357.37,357.36,357.36,357.36,357.36,357.36,357.39,18.59,17.88,17.62,17.38,17.150000000000002,16.94,16.73,16.52,16.12,N/A,N/A +2012,4,21,10,30,101190,100000,98840,81.93,0,14.21,15.63,15.99,16.2,16.34,16.44,16.5,16.56,16.63,359.41,359.62,359.71,359.8,359.88,359.96,0.04,0.12,0.28,18.03,17.28,17.02,16.77,16.55,16.34,16.12,15.92,15.52,N/A,N/A +2012,4,21,11,30,101200,100010,98850,81.87,0,14.36,15.8,16.15,16.35,16.490000000000002,16.59,16.66,16.71,16.78,357.44,357.61,357.72,357.83,357.94,358.04,358.15000000000003,358.26,358.48,17.51,16.740000000000002,16.47,16.22,15.99,15.790000000000001,15.57,15.370000000000001,14.97,N/A,N/A +2012,4,21,12,30,101210,100010,98850,81.58,0,14.370000000000001,15.8,16.15,16.35,16.48,16.580000000000002,16.65,16.71,16.78,359.3,359.53000000000003,359.65000000000003,359.76,359.88,359.98,0.1,0.21,0.45,17.12,16.32,16.04,15.8,15.57,15.370000000000001,15.15,14.96,14.56,N/A,N/A +2012,4,21,13,30,101230,100030,98870,80.36,0,13.540000000000001,14.82,15.13,15.3,15.42,15.51,15.57,15.620000000000001,15.700000000000001,359.88,0.16,0.32,0.48,0.64,0.78,0.93,1.07,1.36,16.67,15.870000000000001,15.6,15.36,15.14,14.93,14.72,14.530000000000001,14.14,N/A,N/A +2012,4,21,14,30,101280,100080,98910,77.5,0,12.26,13.34,13.59,13.74,13.83,13.9,13.950000000000001,13.99,14.040000000000001,353.92,354.08,354.19,354.29,354.39,354.47,354.57,354.67,354.85,16.6,15.84,15.57,15.33,15.11,14.9,14.69,14.49,14.09,N/A,N/A +2012,4,21,15,30,101330,100130,98960,75.14,0,11.28,12.22,12.43,12.56,12.63,12.69,12.72,12.75,12.790000000000001,351.90000000000003,352.1,352.23,352.36,352.47,352.58,352.69,352.79,353,16.71,15.98,15.72,15.48,15.25,15.040000000000001,14.83,14.63,14.23,N/A,N/A +2012,4,21,16,30,101330,100130,98960,71.28,0,11.15,12.08,12.290000000000001,12.4,12.48,12.530000000000001,12.56,12.59,12.620000000000001,347.29,347.55,347.72,347.88,348.02,348.16,348.3,348.43,348.68,17.3,16.6,16.35,16.11,15.89,15.69,15.47,15.27,14.870000000000001,N/A,N/A +2012,4,21,17,30,101330,100130,98970,66.38,0,11.33,12.33,12.57,12.71,12.8,12.870000000000001,12.92,12.96,13.02,348.02,348.1,348.16,348.2,348.24,348.29,348.34000000000003,348.39,348.49,18.34,17.69,17.45,17.22,17,16.8,16.580000000000002,16.39,15.99,N/A,N/A +2012,4,21,18,30,101310,100120,98970,61.730000000000004,0,11.27,12.31,12.56,12.700000000000001,12.8,12.88,12.93,12.98,13.040000000000001,345.45,345.7,345.85,345.98,346.11,346.22,346.34000000000003,346.44,346.66,19.400000000000002,18.81,18.580000000000002,18.36,18.14,17.95,17.740000000000002,17.54,17.14,N/A,N/A +2012,4,21,19,30,101310,100120,98970,59.050000000000004,0,10.78,11.78,12.030000000000001,12.18,12.290000000000001,12.370000000000001,12.43,12.48,12.56,344.58,344.98,345.22,345.45,345.65000000000003,345.84000000000003,346.02,346.2,346.53000000000003,20.31,19.77,19.55,19.34,19.13,18.93,18.72,18.53,18.13,N/A,N/A +2012,4,21,20,30,101280,100090,98950,56.26,0,10.71,11.72,11.98,12.13,12.24,12.33,12.39,12.44,12.52,344.56,344.92,345.14,345.34000000000003,345.54,345.71,345.88,346.02,346.32,21.07,20.580000000000002,20.37,20.16,19.95,19.76,19.55,19.36,18.96,N/A,N/A +2012,4,21,21,30,101270,100090,98950,54.410000000000004,0,10.5,11.5,11.76,11.92,12.040000000000001,12.120000000000001,12.19,12.25,12.33,344.56,344.96,345.2,345.43,345.63,345.81,345.99,346.15000000000003,346.46,21.61,21.16,20.96,20.740000000000002,20.54,20.35,20.14,19.95,19.55,N/A,N/A +2012,4,21,22,30,101270,100090,98950,55.230000000000004,0,10.18,11.14,11.38,11.53,11.63,11.71,11.77,11.82,11.89,344,344.44,344.71,344.97,345.2,345.42,345.62,345.82,346.18,21.96,21.53,21.330000000000002,21.13,20.92,20.73,20.53,20.34,19.94,N/A,N/A +2012,4,21,23,30,101270,100090,98950,52.97,0,10.63,11.68,11.94,12.09,12.19,12.26,12.32,12.36,12.42,349.40000000000003,349.44,349.46,349.49,349.51,349.54,349.56,349.59000000000003,349.65000000000003,22.1,21.68,21.48,21.28,21.07,20.88,20.68,20.490000000000002,20.09,N/A,N/A +2012,4,22,0,30,101300,100120,98980,53.4,0,10.290000000000001,11.28,11.52,11.67,11.77,11.84,11.9,11.94,12.01,352.40000000000003,352.22,352.13,352.05,351.98,351.92,351.86,351.81,351.72,21.96,21.53,21.330000000000002,21.13,20.92,20.73,20.53,20.34,19.94,N/A,N/A +2012,4,22,1,30,101360,100180,99030,54.410000000000004,0,10.38,11.34,11.56,11.69,11.77,11.84,11.870000000000001,11.91,11.94,355.73,355.79,355.79,355.79,355.79,355.79,355.78000000000003,355.76,355.75,21.53,21.07,20.87,20.66,20.45,20.26,20.05,19.86,19.46,N/A,N/A +2012,4,22,2,30,101410,100230,99080,54.03,0,10.36,11.33,11.56,11.69,11.78,11.84,11.89,11.93,11.98,359.18,359.18,359.15000000000003,359.13,359.1,359.08,359.06,359.03000000000003,358.98,21.38,20.91,20.71,20.5,20.29,20.1,19.89,19.7,19.3,N/A,N/A +2012,4,22,3,30,101450,100270,99120,54.22,0,9.31,10.14,10.35,10.47,10.55,10.620000000000001,10.67,10.72,10.790000000000001,5.8,5.74,5.69,5.63,5.5600000000000005,5.5,5.43,5.36,5.21,21.32,20.86,20.66,20.45,20.25,20.06,19.86,19.67,19.28,N/A,N/A +2012,4,22,4,30,101470,100290,99140,56.14,0,8.8,9.55,9.74,9.84,9.92,9.98,10.03,10.07,10.15,8.43,8.33,8.26,8.19,8.120000000000001,8.05,7.98,7.9,7.74,21.13,20.67,20.46,20.26,20.06,19.88,19.67,19.490000000000002,19.11,N/A,N/A +2012,4,22,5,30,101500,100320,99170,55.730000000000004,0,9.33,10.120000000000001,10.31,10.41,10.48,10.53,10.56,10.59,10.620000000000001,11.1,11.120000000000001,11.120000000000001,11.120000000000001,11.11,11.1,11.09,11.07,11.040000000000001,21.04,20.57,20.37,20.16,19.96,19.77,19.57,19.38,19,N/A,N/A +2012,4,22,6,30,101540,100350,99200,58.120000000000005,0,8.69,9.42,9.59,9.69,9.76,9.81,9.85,9.88,9.94,15.83,15.89,15.92,15.94,15.96,15.97,15.97,15.97,15.96,20.67,20.22,20.02,19.82,19.62,19.44,19.240000000000002,19.06,18.68,N/A,N/A +2012,4,22,7,30,101580,100390,99240,58.2,0,8.69,9.39,9.56,9.65,9.71,9.75,9.78,9.81,9.85,21.63,21.66,21.67,21.66,21.66,21.66,21.650000000000002,21.64,21.63,20.42,19.96,19.76,19.55,19.35,19.17,18.97,18.79,18.41,N/A,N/A +2012,4,22,8,30,101580,100390,99240,59.63,0,8.33,8.97,9.11,9.18,9.23,9.25,9.27,9.290000000000001,9.3,20.32,20.43,20.48,20.53,20.57,20.61,20.650000000000002,20.68,20.740000000000002,20.1,19.62,19.42,19.21,19.01,18.830000000000002,18.62,18.44,18.06,N/A,N/A +2012,4,22,9,30,101620,100430,99270,60.97,0,7.140000000000001,7.62,7.72,7.76,7.79,7.8100000000000005,7.8100000000000005,7.82,7.82,22.82,22.91,22.97,23.03,23.080000000000002,23.12,23.17,23.2,23.27,19.78,19.31,19.11,18.900000000000002,18.7,18.51,18.32,18.13,17.75,N/A,N/A +2012,4,22,10,30,101640,100450,99290,62.08,0,6.72,7.140000000000001,7.23,7.2700000000000005,7.29,7.3,7.3100000000000005,7.3100000000000005,7.32,25.02,25.07,25.1,25.13,25.16,25.19,25.23,25.25,25.3,19.59,19.11,18.900000000000002,18.7,18.5,18.32,18.12,17.93,17.56,N/A,N/A +2012,4,22,11,30,101680,100490,99330,62.06,0,5.95,6.3,6.37,6.4,6.42,6.44,6.45,6.45,6.46,19.02,19.09,19.16,19.22,19.28,19.330000000000002,19.39,19.44,19.56,19.490000000000002,19.02,18.82,18.61,18.41,18.23,18.03,17.84,17.46,N/A,N/A +2012,4,22,12,30,101710,100510,99350,61.800000000000004,0,5.93,6.2700000000000005,6.33,6.36,6.37,6.38,6.38,6.38,6.38,16.9,17.05,17.150000000000002,17.240000000000002,17.330000000000002,17.41,17.51,17.6,17.79,19.39,18.92,18.71,18.51,18.31,18.12,17.92,17.740000000000002,17.36,N/A,N/A +2012,4,22,13,30,101730,100540,99380,63.08,0,5.84,6.16,6.2,6.22,6.22,6.22,6.21,6.2,6.18,13.540000000000001,13.700000000000001,13.81,13.93,14.040000000000001,14.13,14.26,14.370000000000001,14.63,19.2,18.72,18.52,18.32,18.12,17.94,17.740000000000002,17.56,17.18,N/A,N/A +2012,4,22,14,30,101800,100600,99440,62.1,0,4.67,4.9,4.93,4.95,4.96,4.96,4.96,4.96,4.96,10.35,10.47,10.56,10.65,10.74,10.83,10.93,11.02,11.26,19.31,18.86,18.66,18.46,18.26,18.080000000000002,17.88,17.7,17.32,N/A,N/A +2012,4,22,15,30,101820,100630,99470,59.9,0,3.64,3.81,3.85,3.86,3.88,3.88,3.89,3.9,3.92,358.94,358.84000000000003,358.8,358.78000000000003,358.76,358.74,358.74,358.74,358.79,19.650000000000002,19.22,19.03,18.830000000000002,18.63,18.45,18.25,18.07,17.68,N/A,N/A +2012,4,22,16,30,101820,100630,99480,56.300000000000004,0,3.8000000000000003,4.01,4.05,4.08,4.1,4.13,4.15,4.17,4.21,348.15000000000003,348.09000000000003,348.06,348.03000000000003,347.99,347.94,347.88,347.82,347.68,20.32,19.92,19.73,19.53,19.330000000000002,19.150000000000002,18.95,18.77,18.39,N/A,N/A +2012,4,22,17,30,101800,100610,99460,56.620000000000005,0,3.81,4.0600000000000005,4.12,4.17,4.2,4.23,4.25,4.28,4.32,318.25,318.59000000000003,318.83,319.04,319.26,319.45,319.67,319.87,320.34000000000003,21.22,20.84,20.650000000000002,20.45,20.26,20.07,19.88,19.69,19.3,N/A,N/A +2012,4,22,18,30,101780,100600,99450,53.160000000000004,0,5.21,5.55,5.62,5.66,5.67,5.68,5.68,5.68,5.67,310.2,310.71,311.02,311.31,311.58,311.83,312.11,312.37,312.98,22.1,21.75,21.57,21.37,21.18,21,20.8,20.62,20.240000000000002,N/A,N/A +2012,4,22,19,30,101750,100570,99430,53.92,0,6.05,6.5,6.59,6.63,6.65,6.67,6.68,6.69,6.76,305.93,306.63,307.1,307.57,308.07,308.57,309.2,309.81,311.72,22.72,22.400000000000002,22.23,22.04,21.86,21.68,21.5,21.32,20.98,N/A,N/A +2012,4,22,20,30,101680,100510,99370,52.910000000000004,0,6.73,7.3100000000000005,7.42,7.48,7.54,7.59,7.7,7.8100000000000005,8.27,304.17,304.63,304.95,305.35,305.85,306.41,307.46,308.56,313.42,23.64,23.42,23.27,23.1,22.94,22.79,22.64,22.51,22.31,N/A,N/A +2012,4,22,21,30,101640,100470,99340,53.88,0,5.87,6.78,7.17,7.55,7.8500000000000005,8.1,8.23,8.33,8.43,303.22,304.69,305.63,306.53000000000003,307.22,307.77,308.18,308.51,309.76,24.38,24.400000000000002,24.38,24.29,24.18,24.060000000000002,23.88,23.7,23.35,N/A,N/A +2012,4,22,22,30,101620,100450,99320,53.34,0,6.2700000000000005,7.43,7.890000000000001,8.27,8.57,8.8,8.97,9.11,9.27,316.99,317.45,317.74,318.11,318.45,318.76,318.96,319.12,319.11,25.19,25.330000000000002,25.34,25.28,25.19,25.080000000000002,24.93,24.78,24.42,N/A,N/A +2012,4,22,23,30,101620,100450,99320,71.32000000000001,0,6.33,6.640000000000001,6.63,6.6000000000000005,6.4,6.08,5.87,5.7,5.59,250.18,250.22,250.13,249.81,252.06,255.93,260.53000000000003,264.86,273,23.13,22.86,22.72,22.59,22.8,23.25,23.57,23.830000000000002,23.650000000000002,N/A,N/A +2012,4,23,0,30,101650,100470,99340,75.12,0,6.55,6.88,6.88,6.82,6.640000000000001,6.38,6.11,5.86,5.59,245.46,245.8,246.08,246.5,249.36,253.71,258.86,263.61,273.66,22.94,22.66,22.51,22.37,22.43,22.64,23.01,23.39,23.38,N/A,N/A +2012,4,23,1,30,101670,100500,99360,76.91,0,6.2700000000000005,6.49,6.390000000000001,6.15,5.7700000000000005,5.32,5.18,5.13,5.24,245.4,246.67000000000002,249.31,255.82,262.59000000000003,269.32,275.56,281.19,293.45,22.990000000000002,22.740000000000002,22.66,22.66,22.89,23.27,23.330000000000002,23.29,23.2,N/A,N/A +2012,4,23,2,30,101690,100520,99390,76.38,0,5.4,5.44,5.2,4.8,4.7700000000000005,4.99,5.2700000000000005,5.55,6.25,241.82,245.11,256.68,284.40000000000003,298.3,304.18,309.21,313.76,320.76,23.31,23.150000000000002,23.27,23.740000000000002,23.94,23.94,23.96,23.990000000000002,23.98,N/A,N/A +2012,4,23,3,30,101720,100550,99420,76.59,0,3.69,3.8000000000000003,3.85,4.09,4.39,4.75,5.21,5.69,6.74,274.16,289.13,298.63,309.05,316.82,322.94,327.48,331.36,336.12,23.69,23.81,23.88,23.92,23.96,23.98,24.02,24.05,24.14,N/A,N/A +2012,4,23,4,30,101770,100600,99460,62.36,0,7.78,8.91,9.32,9.67,9.97,10.23,10.47,10.69,11.11,8.69,8.09,7.72,7.3100000000000005,6.92,6.55,6.18,5.84,5.23,24.580000000000002,24.51,24.42,24.29,24.16,24.02,23.87,23.72,23.39,N/A,N/A +2012,4,23,5,30,101830,100640,99500,55.980000000000004,0,11.58,12.780000000000001,13.08,13.25,13.38,13.48,13.57,13.65,13.870000000000001,21.27,21.240000000000002,21.22,21.2,21.18,21.16,21.14,21.11,21.05,22.81,22.5,22.330000000000002,22.14,21.96,21.78,21.59,21.42,21.07,N/A,N/A +2012,4,23,6,30,101880,100700,99550,54.34,0,12.450000000000001,13.77,14.11,14.31,14.450000000000001,14.56,14.65,14.74,14.950000000000001,23.650000000000002,23.72,23.75,23.78,23.81,23.84,23.86,23.87,23.900000000000002,21.73,21.38,21.2,21.01,20.82,20.64,20.45,20.28,19.93,N/A,N/A +2012,4,23,7,30,101930,100740,99580,56.370000000000005,0,13.59,14.98,15.32,15.5,15.63,15.73,15.81,15.88,16.06,28.71,28.7,28.68,28.66,28.63,28.6,28.55,28.51,28.36,20.76,20.32,20.13,19.93,19.740000000000002,19.56,19.37,19.21,18.87,N/A,N/A +2012,4,23,8,30,101960,100760,99610,56.980000000000004,0,13.9,15.3,15.63,15.81,15.93,16.01,16.07,16.12,16.22,28.830000000000002,28.900000000000002,28.93,28.96,28.97,28.98,28.98,28.98,28.93,20.22,19.740000000000002,19.53,19.330000000000002,19.14,18.96,18.77,18.6,18.26,N/A,N/A +2012,4,23,9,30,101990,100790,99630,58.45,0,13.33,14.65,14.97,15.15,15.26,15.33,15.38,15.42,15.46,31.560000000000002,31.7,31.77,31.830000000000002,31.88,31.92,31.95,31.98,32.02,19.72,19.2,18.990000000000002,18.78,18.57,18.39,18.19,18.01,17.64,N/A,N/A +2012,4,23,10,30,102030,100830,99670,60.31,0,13.1,14.35,14.65,14.81,14.91,14.97,15,15.030000000000001,15.040000000000001,33.44,33.59,33.660000000000004,33.730000000000004,33.78,33.83,33.87,33.910000000000004,33.97,19.01,18.43,18.21,17.990000000000002,17.78,17.59,17.39,17.21,16.830000000000002,N/A,N/A +2012,4,23,11,30,102090,100890,99720,63.27,0,12.19,13.290000000000001,13.55,13.68,13.76,13.82,13.84,13.86,13.86,37.32,37.49,37.6,37.68,37.77,37.85,37.92,37.99,38.12,18.41,17.81,17.580000000000002,17.36,17.150000000000002,16.95,16.75,16.56,16.18,N/A,N/A +2012,4,23,12,30,102140,100940,99770,63.38,0,11.41,12.4,12.63,12.74,12.81,12.85,12.870000000000001,12.88,12.88,36.42,36.57,36.67,36.77,36.85,36.92,37,37.07,37.2,18.01,17.400000000000002,17.16,16.94,16.73,16.53,16.330000000000002,16.14,15.75,N/A,N/A +2012,4,23,13,30,102180,100970,99800,62.34,0,10.4,11.25,11.44,11.540000000000001,11.6,11.64,11.66,11.67,11.67,36.52,36.62,36.68,36.730000000000004,36.78,36.83,36.87,36.910000000000004,36.980000000000004,17.67,17.07,16.830000000000002,16.61,16.4,16.2,15.99,15.8,15.41,N/A,N/A +2012,4,23,14,30,102230,101020,99850,60.44,0,9.4,10.1,10.26,10.34,10.39,10.42,10.43,10.44,10.43,35.93,36.09,36.17,36.25,36.32,36.38,36.44,36.5,36.61,17.54,16.95,16.72,16.5,16.29,16.09,15.88,15.69,15.3,N/A,N/A +2012,4,23,15,30,102240,101030,99860,59.51,0,7.94,8.47,8.59,8.65,8.68,8.700000000000001,8.700000000000001,8.71,8.700000000000001,35.27,35.43,35.54,35.63,35.71,35.78,35.86,35.93,36.06,17.53,16.97,16.75,16.53,16.32,16.12,15.92,15.72,15.33,N/A,N/A +2012,4,23,16,30,102230,101020,99850,57.76,0,6.13,6.51,6.6000000000000005,6.640000000000001,6.67,6.7,6.71,6.73,6.74,36.2,35.96,35.83,35.71,35.59,35.480000000000004,35.35,35.24,35,17.72,17.2,16.98,16.77,16.56,16.37,16.16,15.97,15.57,N/A,N/A +2012,4,23,17,30,102220,101010,99840,52.83,0,4.79,5.07,5.15,5.19,5.23,5.26,5.29,5.3100000000000005,5.3500000000000005,31.95,31.37,31,30.67,30.35,30.05,29.76,29.490000000000002,28.93,18.31,17.84,17.63,17.42,17.22,17.02,16.82,16.63,16.23,N/A,N/A +2012,4,23,18,30,102170,100970,99800,48.99,0,3.56,3.81,3.9,3.96,4.03,4.08,4.13,4.18,4.28,29.09,27.87,27.11,26.41,25.77,25.19,24.61,24.080000000000002,23.04,19.05,18.62,18.43,18.23,18.03,17.84,17.64,17.45,17.06,N/A,N/A +2012,4,23,19,30,102130,100930,99770,44.61,0,2.27,2.47,2.5500000000000003,2.63,2.69,2.7600000000000002,2.82,2.88,3,29.38,26.55,24.84,23.32,22.01,20.85,19.73,18.72,16.85,19.93,19.55,19.36,19.16,18.97,18.78,18.580000000000002,18.39,18.01,N/A,N/A +2012,4,23,20,30,102060,100870,99710,44.82,0,2.6,2.87,2.98,3.0700000000000003,3.15,3.22,3.29,3.34,3.45,339.36,339.19,339.27,339.40000000000003,339.53000000000003,339.66,339.82,339.97,340.31,20.73,20.38,20.2,20.01,19.81,19.63,19.43,19.25,18.86,N/A,N/A +2012,4,23,21,30,102000,100810,99660,46.96,0,3.94,4.2,4.26,4.3,4.33,4.36,4.38,4.4,4.43,326.94,328.29,329.08,329.82,330.48,331.08,331.68,332.21,333.28000000000003,21.05,20.7,20.52,20.32,20.12,19.94,19.73,19.55,19.16,N/A,N/A +2012,4,23,22,30,101930,100740,99590,46.96,0,4.67,5.0200000000000005,5.11,5.16,5.21,5.24,5.2700000000000005,5.29,5.33,335.40000000000003,335.71,335.91,336.09000000000003,336.27,336.44,336.61,336.77,337.15000000000003,21.61,21.28,21.1,20.900000000000002,20.71,20.53,20.32,20.14,19.75,N/A,N/A +2012,4,23,23,30,101880,100700,99550,48.230000000000004,0,5.63,6.07,6.16,6.21,6.24,6.26,6.2700000000000005,6.2700000000000005,6.28,336.52,336.71,336.84000000000003,336.98,337.1,337.23,337.37,337.49,337.8,21.97,21.66,21.48,21.29,21.1,20.91,20.71,20.53,20.14,N/A,N/A +2012,4,24,0,30,101860,100670,99520,49.03,0,5.83,6.3,6.41,6.46,6.5,6.53,6.55,6.5600000000000005,6.58,335.81,336.89,337.55,338.19,338.78000000000003,339.35,339.92,340.44,341.56,22.16,21.86,21.69,21.5,21.31,21.13,20.93,20.75,20.36,N/A,N/A +2012,4,24,1,30,101840,100660,99510,49.050000000000004,0,2.95,3.23,3.33,3.44,3.54,3.64,3.75,3.85,4.07,49.47,45.04,42.35,39.93,37.83,35.93,34.18,32.59,29.8,21.84,21.55,21.39,21.21,21.03,20.85,20.67,20.490000000000002,20.13,N/A,N/A +2012,4,24,2,30,101870,100680,99530,63.77,0,2.73,2.67,2.57,2.47,2.36,2.2600000000000002,2.16,2.07,1.92,130.78,128.07,126.11,123.79,121.13,118.42,114.74000000000001,111.24000000000001,102.06,20.78,20.44,20.26,20.07,19.88,19.7,19.51,19.330000000000002,18.96,N/A,N/A +2012,4,24,3,30,101870,100680,99530,56.75,0,2.73,2.85,2.87,2.88,2.89,2.9,2.91,2.92,2.95,91.73,88.5,86.49,84.54,82.75,81.11,79.44,77.91,74.81,21.04,20.71,20.53,20.35,20.16,19.98,19.78,19.6,19.22,N/A,N/A +2012,4,24,4,30,101840,100650,99500,51.660000000000004,0,2.9,3.06,3.09,3.11,3.12,3.13,3.13,3.13,3.13,73.43,72.08,71.34,70.72,70.19,69.74,69.34,68.99,68.38,21.19,20.85,20.68,20.48,20.29,20.1,19.91,19.72,19.330000000000002,N/A,N/A +2012,4,24,5,30,101830,100650,99490,50.730000000000004,0,2.81,2.92,2.93,2.92,2.91,2.9,2.88,2.87,2.83,68.1,68.45,68.61,68.75,68.88,68.97,69.06,69.13,69.22,21.150000000000002,20.81,20.63,20.43,20.240000000000002,20.05,19.85,19.67,19.28,N/A,N/A +2012,4,24,6,30,101850,100660,99510,51.56,0,2.31,2.37,2.36,2.35,2.33,2.31,2.29,2.27,2.23,91.46000000000001,91.52,91.5,91.48,91.46000000000001,91.44,91.4,91.36,91.29,21.080000000000002,20.740000000000002,20.56,20.37,20.17,19.98,19.79,19.6,19.21,N/A,N/A +2012,4,24,7,30,101850,100660,99510,53.76,0,2.23,2.31,2.31,2.31,2.3000000000000003,2.29,2.2800000000000002,2.27,2.25,109.78,109.35000000000001,109.05,108.74000000000001,108.42,108.13,107.78,107.46000000000001,106.7,21.03,20.68,20.5,20.31,20.11,19.92,19.72,19.54,19.14,N/A,N/A +2012,4,24,8,30,101850,100660,99500,54.93,0,2,2.04,2.0300000000000002,2.02,2,1.98,1.96,1.94,1.9000000000000001,128.27,129.02,129.42000000000002,129.81,130.19,130.54,130.92000000000002,131.27,132,20.93,20.59,20.41,20.21,20.01,19.830000000000002,19.62,19.44,19.05,N/A,N/A +2012,4,24,9,30,101860,100670,99520,58.06,0,2.27,2.35,2.36,2.36,2.35,2.35,2.34,2.33,2.32,161.92000000000002,162.17000000000002,162.21,162.25,162.29,162.33,162.36,162.39000000000001,162.48,20.88,20.53,20.35,20.14,19.95,19.76,19.56,19.37,18.98,N/A,N/A +2012,4,24,10,30,101860,100670,99520,59.67,0,2.2800000000000002,2.38,2.4,2.4,2.41,2.42,2.42,2.42,2.42,183.78,183.98,184.07,184.14000000000001,184.20000000000002,184.24,184.27,184.29,184.27,20.78,20.42,20.240000000000002,20.04,19.84,19.66,19.45,19.27,18.88,N/A,N/A +2012,4,24,11,30,101850,100660,99510,61.02,0,2.57,2.67,2.68,2.69,2.69,2.68,2.68,2.68,2.66,174.69,175.61,176.16,176.71,177.21,177.68,178.18,178.64000000000001,179.59,20.81,20.45,20.27,20.07,19.87,19.68,19.48,19.3,18.900000000000002,N/A,N/A +2012,4,24,12,30,101880,100690,99540,68.88,0,3.68,3.85,3.85,3.85,3.84,3.83,3.81,3.8000000000000003,3.77,196.27,195.64000000000001,195.19,194.75,194.32,193.91,193.48000000000002,193.08,192.24,20.7,20.330000000000002,20.14,19.94,19.740000000000002,19.55,19.35,19.17,18.77,N/A,N/A +2012,4,24,13,30,101890,100700,99550,69.46000000000001,0,4,4.19,4.21,4.22,4.21,4.21,4.19,4.18,4.15,184.94,185.55,185.94,186.28,186.6,186.88,187.17000000000002,187.43,187.95000000000002,20.7,20.32,20.13,19.93,19.73,19.55,19.34,19.150000000000002,18.76,N/A,N/A +2012,4,24,14,30,101930,100740,99580,67.3,0,3.69,3.9,3.94,3.96,3.98,4,4.01,4.0200000000000005,4.03,193.21,192.66,192.33,192.01,191.72,191.44,191.15,190.89000000000001,190.33,20.79,20.42,20.23,20.03,19.84,19.650000000000002,19.44,19.26,18.86,N/A,N/A +2012,4,24,15,30,101930,100750,99590,67.02,0,3.95,4.16,4.19,4.21,4.23,4.24,4.24,4.24,4.25,189.74,189.09,188.68,188.29,187.93,187.6,187.27,186.97,186.37,20.87,20.490000000000002,20.31,20.11,19.91,19.72,19.52,19.330000000000002,18.94,N/A,N/A +2012,4,24,16,30,101920,100740,99580,64.4,0,3.85,4.0600000000000005,4.09,4.11,4.12,4.13,4.13,4.14,4.14,179.04,179.32,179.53,179.75,179.95000000000002,180.14000000000001,180.35,180.54,180.94,20.95,20.580000000000002,20.39,20.19,19.990000000000002,19.81,19.6,19.42,19.03,N/A,N/A +2012,4,24,17,30,101900,100710,99560,63.85,0,4.78,5.04,5.08,5.08,5.08,5.08,5.07,5.05,5.03,171.97,172.77,173.21,173.61,173.98,174.33,174.68,174.99,175.65,21.06,20.68,20.490000000000002,20.29,20.09,19.91,19.7,19.51,19.12,N/A,N/A +2012,4,24,18,30,101870,100680,99530,64.43,0,4.45,4.7,4.75,4.78,4.79,4.8,4.8,4.8100000000000005,4.8100000000000005,181.54,181.6,181.53,181.42000000000002,181.31,181.19,181.05,180.91,180.6,21.14,20.77,20.580000000000002,20.38,20.18,19.990000000000002,19.79,19.61,19.21,N/A,N/A +2012,4,24,19,30,101830,100640,99500,70.73,0,5.9,6.29,6.37,6.41,6.42,6.43,6.44,6.44,6.43,181.53,181.92000000000002,182.11,182.3,182.47,182.62,182.77,182.92000000000002,183.21,21.080000000000002,20.69,20.51,20.31,20.11,19.92,19.72,19.53,19.14,N/A,N/A +2012,4,24,20,30,101780,100600,99450,71.2,0,5.88,6.2700000000000005,6.34,6.36,6.37,6.38,6.37,6.36,6.33,179.79,179.96,180.07,180.20000000000002,180.31,180.42000000000002,180.53,180.64000000000001,180.85,21.12,20.73,20.54,20.34,20.14,19.95,19.75,19.57,19.17,N/A,N/A +2012,4,24,21,30,101730,100550,99400,68.41,0,6.23,6.68,6.78,6.82,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,182.69,182.98,183.16,183.33,183.49,183.64000000000001,183.8,183.94,184.23,21.25,20.88,20.69,20.490000000000002,20.3,20.11,19.91,19.72,19.330000000000002,N/A,N/A +2012,4,24,22,30,101680,100500,99350,69.97,0,6.53,7.0200000000000005,7.13,7.18,7.22,7.24,7.26,7.2700000000000005,7.28,183.99,184.02,184.03,184.05,184.07,184.1,184.14000000000001,184.17000000000002,184.27,21.25,20.87,20.69,20.490000000000002,20.29,20.1,19.900000000000002,19.72,19.330000000000002,N/A,N/A +2012,4,24,23,30,101640,100460,99310,73.73,0,7.09,7.66,7.78,7.8500000000000005,7.9,7.930000000000001,7.94,7.96,7.96,184.74,185.04,185.18,185.3,185.4,185.48,185.55,185.61,185.72,21.3,20.92,20.740000000000002,20.53,20.34,20.150000000000002,19.94,19.76,19.36,N/A,N/A +2012,4,25,0,30,101600,100420,99270,72.01,0,7.21,7.8,7.930000000000001,8,8.05,8.08,8.1,8.11,8.120000000000001,185.22,185.16,185.11,185.04,184.98,184.91,184.84,184.77,184.63,21.400000000000002,21.03,20.84,20.64,20.44,20.25,20.05,19.87,19.48,N/A,N/A +2012,4,25,1,30,101570,100390,99240,70.32000000000001,0,7.59,8.24,8.38,8.45,8.49,8.52,8.540000000000001,8.55,8.55,186.75,186.6,186.53,186.46,186.41,186.36,186.31,186.27,186.20000000000002,21.5,21.13,20.95,20.75,20.55,20.37,20.16,19.98,19.59,N/A,N/A +2012,4,25,2,30,101570,100390,99240,75.34,0,8.040000000000001,8.75,8.91,9,9.05,9.09,9.1,9.120000000000001,9.120000000000001,188.25,188.24,188.26,188.29,188.32,188.34,188.38,188.42000000000002,188.49,21.5,21.12,20.93,20.73,20.53,20.35,20.14,19.96,19.56,N/A,N/A +2012,4,25,3,30,101540,100360,99220,70.2,0,7.9,8.61,8.77,8.86,8.92,8.96,8.99,9.02,9.05,186.85,186.81,186.82,186.84,186.87,186.89000000000001,186.92000000000002,186.95000000000002,187.03,21.650000000000002,21.29,21.11,20.92,20.72,20.53,20.330000000000002,20.150000000000002,19.77,N/A,N/A +2012,4,25,4,30,101520,100350,99200,71.18,0,8.67,9.450000000000001,9.63,9.73,9.790000000000001,9.84,9.870000000000001,9.89,9.92,189.6,189.83,189.92000000000002,189.99,190.06,190.12,190.19,190.25,190.36,21.69,21.330000000000002,21.150000000000002,20.95,20.75,20.57,20.37,20.18,19.8,N/A,N/A +2012,4,25,5,30,101500,100320,99180,78.93,0,9.02,9.85,10.03,10.120000000000001,10.17,10.200000000000001,10.21,10.21,10.19,188.22,188.20000000000002,188.26,188.33,188.4,188.48,188.56,188.64000000000001,188.81,21.63,21.26,21.080000000000002,20.88,20.68,20.490000000000002,20.29,20.11,19.72,N/A,N/A +2012,4,25,6,30,101520,100340,99200,75.27,0,9.42,10.31,10.53,10.64,10.72,10.76,10.790000000000001,10.81,10.83,192.93,193.09,193.16,193.22,193.26,193.3,193.34,193.38,193.46,21.85,21.51,21.330000000000002,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A +2012,4,25,7,30,101520,100340,99200,77.55,0,8.85,9.76,9.99,10.13,10.23,10.3,10.36,10.4,10.46,196.39000000000001,196.38,196.39000000000001,196.39000000000001,196.39000000000001,196.4,196.4,196.4,196.39000000000001,21.900000000000002,21.55,21.36,21.17,20.97,20.78,20.580000000000002,20.39,20,N/A,N/A +2012,4,25,8,30,101510,100330,99190,80.75,0,8.82,9.73,9.950000000000001,10.09,10.18,10.25,10.290000000000001,10.33,10.38,194.53,195.05,195.25,195.44,195.6,195.75,195.89000000000001,196.03,196.3,21.89,21.54,21.36,21.16,20.97,20.78,20.580000000000002,20.400000000000002,20.01,N/A,N/A +2012,4,25,9,30,101510,100330,99190,79.23,0,9.02,9.98,10.21,10.36,10.47,10.540000000000001,10.59,10.63,10.67,202.13,202.34,202.38,202.39000000000001,202.39000000000001,202.38,202.36,202.33,202.25,22.05,21.71,21.53,21.330000000000002,21.14,20.95,20.75,20.56,20.17,N/A,N/A +2012,4,25,10,30,101490,100320,99180,81.76,0,8.48,9.31,9.5,9.61,9.69,9.74,9.77,9.8,9.83,196.63,196.67000000000002,196.72,196.78,196.85,196.91,196.99,197.06,197.24,21.97,21.63,21.46,21.26,21.07,20.88,20.68,20.5,20.11,N/A,N/A +2012,4,25,11,30,101490,100310,99170,81.4,0,8.38,9.22,9.41,9.52,9.6,9.65,9.68,9.72,9.77,195,195.11,195.14000000000001,195.16,195.18,195.19,195.22,195.24,195.3,22.07,21.740000000000002,21.57,21.37,21.18,21,20.8,20.62,20.240000000000002,N/A,N/A +2012,4,25,12,30,101500,100320,99180,81.52,0,8.91,9.82,10.03,10.15,10.24,10.290000000000001,10.33,10.370000000000001,10.4,195.47,195.63,195.68,195.72,195.75,195.78,195.82,195.84,195.91,22.17,21.84,21.67,21.47,21.28,21.09,20.89,20.71,20.330000000000002,N/A,N/A +2012,4,25,13,30,101540,100370,99230,82.06,0,8.950000000000001,9.86,10.1,10.24,10.33,10.4,10.450000000000001,10.49,10.540000000000001,196.56,196.57,196.58,196.58,196.59,196.59,196.59,196.59,196.58,22.240000000000002,21.92,21.75,21.55,21.36,21.17,20.97,20.79,20.400000000000002,N/A,N/A +2012,4,25,14,30,101560,100390,99250,84.23,0,8.55,9.31,9.49,9.57,9.620000000000001,9.64,9.65,9.66,9.65,194.31,194.22,194.24,194.28,194.33,194.37,194.42000000000002,194.47,194.63,22.26,21.94,21.77,21.57,21.38,21.2,21.01,20.830000000000002,20.45,N/A,N/A +2012,4,25,15,30,101570,100390,99250,84.24,0,8.39,9.23,9.42,9.540000000000001,9.61,9.67,9.71,9.74,9.81,194.26,194.49,194.57,194.65,194.73000000000002,194.81,194.9,194.99,195.21,22.38,22.07,21.900000000000002,21.71,21.52,21.34,21.14,20.97,20.59,N/A,N/A +2012,4,25,16,30,101600,100420,99290,84.78,0,8.55,9.47,9.69,9.83,9.93,10,10.05,10.1,10.16,193.6,193.82,193.94,194.05,194.16,194.27,194.39000000000001,194.49,194.73000000000002,22.48,22.17,22,21.81,21.62,21.43,21.240000000000002,21.06,20.67,N/A,N/A +2012,4,25,17,30,101580,100400,99270,84.66,0,8.59,9.51,9.74,9.88,9.98,10.06,10.120000000000001,10.16,10.24,197.42000000000002,197.58,197.69,197.8,197.91,198.02,198.12,198.22,198.44,22.56,22.26,22.1,21.900000000000002,21.72,21.53,21.34,21.16,20.77,N/A,N/A +2012,4,25,18,30,101580,100400,99270,86.44,0,8.82,9.74,9.97,10.11,10.21,10.27,10.31,10.33,10.35,197.69,197.6,197.6,197.61,197.62,197.63,197.63,197.64000000000001,197.64000000000001,22.6,22.3,22.13,21.93,21.740000000000002,21.55,21.36,21.17,20.78,N/A,N/A +2012,4,25,19,30,101580,100410,99270,86.37,0,8.17,8.99,9.19,9.3,9.370000000000001,9.42,9.450000000000001,9.47,9.49,195.55,195.6,195.67000000000002,195.74,195.8,195.86,195.92000000000002,195.97,196.09,22.66,22.36,22.19,22,21.81,21.63,21.43,21.25,20.87,N/A,N/A +2012,4,25,20,30,101530,100360,99220,86.83,0,8.42,9.290000000000001,9.51,9.63,9.72,9.790000000000001,9.83,9.870000000000001,9.91,194.51,194.69,194.78,194.87,194.96,195.04,195.12,195.21,195.4,22.68,22.39,22.22,22.03,21.84,21.66,21.46,21.28,20.900000000000002,N/A,N/A +2012,4,25,21,30,101490,100320,99180,87.45,0,9.27,10.28,10.540000000000001,10.700000000000001,10.81,10.9,10.950000000000001,11,11.05,192.84,192.95000000000002,193.02,193.1,193.17000000000002,193.24,193.31,193.38,193.52,22.68,22.400000000000002,22.23,22.04,21.85,21.67,21.47,21.29,20.900000000000002,N/A,N/A +2012,4,25,22,30,101470,100300,99160,87.47,0,8.86,9.82,10.08,10.24,10.35,10.44,10.5,10.55,10.620000000000001,189.56,189.55,189.61,189.66,189.72,189.77,189.83,189.88,190,22.68,22.400000000000002,22.23,22.04,21.86,21.67,21.48,21.3,20.92,N/A,N/A +2012,4,25,23,30,101430,100260,99130,87.85000000000001,0,9.1,10.09,10.32,10.48,10.58,10.66,10.72,10.78,10.86,188.14000000000001,188.21,188.25,188.29,188.33,188.37,188.42000000000002,188.47,188.59,22.650000000000002,22.36,22.2,22.01,21.82,21.64,21.45,21.27,20.89,N/A,N/A +2012,4,26,0,30,101390,100220,99080,88.10000000000001,0,9.540000000000001,10.620000000000001,10.89,11.07,11.200000000000001,11.290000000000001,11.36,11.41,11.49,187.76,187.77,187.81,187.86,187.91,187.95000000000002,188.01,188.05,188.17000000000002,22.6,22.31,22.14,21.95,21.76,21.580000000000002,21.39,21.21,20.82,N/A,N/A +2012,4,26,1,30,101360,100190,99060,86.26,0,10,11.08,11.370000000000001,11.55,11.68,11.78,11.86,11.92,12.030000000000001,186.67000000000002,186.47,186.42000000000002,186.37,186.34,186.33,186.32,186.32,186.36,22.67,22.400000000000002,22.240000000000002,22.05,21.87,21.69,21.5,21.32,20.95,N/A,N/A +2012,4,26,2,30,101350,100180,99050,85.7,0,10.19,11.41,11.73,11.96,12.14,12.280000000000001,12.41,12.530000000000001,12.76,185.78,185.97,186.04,186.11,186.19,186.26,186.33,186.4,186.55,22.7,22.44,22.28,22.09,21.91,21.740000000000002,21.55,21.38,21.01,N/A,N/A +2012,4,26,3,30,101330,100160,99030,85.24,0,9.620000000000001,10.63,10.93,11.16,11.4,11.64,11.950000000000001,12.27,13.030000000000001,186.38,186.62,186.78,186.97,187.19,187.43,187.73,188.04,188.6,22.73,22.490000000000002,22.35,22.19,22.03,21.89,21.75,21.62,21.35,N/A,N/A +2012,4,26,4,30,101320,100150,99010,85.54,0,11.35,12.75,13.13,13.39,13.61,13.780000000000001,13.93,14.06,14.290000000000001,184.54,184.88,185.06,185.26,185.45000000000002,185.63,185.8,185.95000000000002,186.3,22.72,22.46,22.3,22.12,21.93,21.76,21.57,21.39,21.02,N/A,N/A +2012,4,26,5,30,101320,100150,99020,84.51,0,11.120000000000001,12.5,12.870000000000001,13.14,13.34,13.49,13.61,13.700000000000001,13.89,189.42000000000002,188.95000000000002,188.81,188.66,188.55,188.44,188.34,188.25,188.07,22.81,22.55,22.39,22.2,22.02,21.830000000000002,21.64,21.46,21.07,N/A,N/A +2012,4,26,6,30,101330,100160,99020,85.54,0,11.6,13.05,13.44,13.71,13.9,14.040000000000001,14.13,14.21,14.290000000000001,188.9,188.71,188.66,188.61,188.59,188.56,188.56,188.56,188.59,22.84,22.55,22.38,22.19,22,21.81,21.61,21.43,21.04,N/A,N/A +2012,4,26,7,30,101340,100170,99030,86.01,0,10.78,11.94,12.26,12.47,12.63,12.77,12.9,13.030000000000001,13.46,189.59,189.49,189.5,189.5,189.51,189.52,189.54,189.57,189.87,22.91,22.64,22.48,22.3,22.13,21.96,21.79,21.63,21.36,N/A,N/A +2012,4,26,8,30,101330,100160,99020,88.12,0,11.28,12.63,13.01,13.27,13.46,13.61,13.72,13.81,13.950000000000001,192.33,192.27,192.24,192.22,192.22,192.22,192.23000000000002,192.26,192.35,22.830000000000002,22.55,22.38,22.19,22,21.82,21.63,21.45,21.07,N/A,N/A +2012,4,26,9,30,101320,100160,99020,88.81,0,11.11,12.34,12.67,12.91,13.11,13.280000000000001,13.46,13.64,14.13,192,192.5,192.71,192.94,193.18,193.43,193.72,194.01,194.78,22.81,22.54,22.38,22.2,22.03,21.86,21.68,21.53,21.21,N/A,N/A +2012,4,26,10,30,101330,100160,99030,88.73,0,9.96,11.01,11.28,11.450000000000001,11.58,11.69,11.8,11.91,12.31,190.05,190.29,190.44,190.61,190.79,190.99,191.24,191.48000000000002,192.16,22.81,22.53,22.37,22.19,22.02,21.85,21.67,21.51,21.22,N/A,N/A +2012,4,26,11,30,101350,100180,99050,90.36,0,10.41,11.57,11.91,12.120000000000001,12.290000000000001,12.42,12.540000000000001,12.65,12.85,186.98,187.06,187.17000000000002,187.28,187.38,187.48,187.59,187.70000000000002,187.94,22.75,22.46,22.29,22.11,21.92,21.740000000000002,21.55,21.38,21.02,N/A,N/A +2012,4,26,12,30,101390,100220,99090,89.14,0,10.18,11.34,11.67,11.91,12.08,12.23,12.35,12.46,12.67,187.76,187.94,188.06,188.19,188.31,188.42000000000002,188.55,188.66,188.94,22.82,22.54,22.38,22.19,22.01,21.830000000000002,21.64,21.46,21.09,N/A,N/A +2012,4,26,13,30,101430,100260,99130,90.45,0,9.93,11.03,11.31,11.5,11.65,11.76,11.86,11.94,12.1,189.56,189.76,189.88,190,190.14000000000001,190.26,190.41,190.55,190.9,22.79,22.5,22.330000000000002,22.150000000000002,21.96,21.78,21.580000000000002,21.41,21.03,N/A,N/A +2012,4,26,14,30,101510,100340,99200,90,0,9.13,10.120000000000001,10.42,10.64,10.81,10.950000000000001,11.08,11.19,11.42,187.66,187.88,188.06,188.25,188.42000000000002,188.58,188.75,188.89000000000001,189.22,22.900000000000002,22.63,22.48,22.29,22.11,21.93,21.75,21.57,21.21,N/A,N/A +2012,4,26,15,30,101540,100370,99240,88.29,0,9.21,10.370000000000001,10.700000000000001,10.97,11.200000000000001,11.4,11.61,11.8,12.23,186.99,187.66,187.94,188.25,188.56,188.88,189.23,189.56,190.39000000000001,23.05,22.79,22.64,22.46,22.28,22.11,21.93,21.76,21.41,N/A,N/A +2012,4,26,16,30,101560,100390,99260,89.13,0,8.620000000000001,9.56,9.83,10.03,10.18,10.31,10.43,10.53,10.78,185.45000000000002,185.71,185.95000000000002,186.24,186.55,186.88,187.27,187.66,188.70000000000002,23.02,22.76,22.6,22.42,22.240000000000002,22.07,21.89,21.72,21.36,N/A,N/A +2012,4,26,17,30,101570,100400,99270,88.21000000000001,0,9.16,10.17,10.46,10.66,10.81,10.93,11.03,11.120000000000001,11.28,187.6,187.75,187.91,188.09,188.26,188.43,188.62,188.79,189.17000000000002,23.09,22.830000000000002,22.68,22.490000000000002,22.31,22.13,21.94,21.77,21.39,N/A,N/A +2012,4,26,18,30,101570,100400,99260,87.93,0,8.8,9.76,10.03,10.21,10.35,10.47,10.57,10.65,10.81,189.84,189.92000000000002,190.02,190.14000000000001,190.25,190.35,190.48,190.59,190.85,23.12,22.86,22.7,22.52,22.34,22.16,21.97,21.8,21.43,N/A,N/A +2012,4,26,19,30,101570,100400,99270,86.96000000000001,0,9.09,10.120000000000001,10.39,10.58,10.72,10.82,10.9,10.98,11.09,185.36,185.55,185.67000000000002,185.82,185.96,186.1,186.25,186.39000000000001,186.73,23.13,22.87,22.71,22.53,22.35,22.17,21.98,21.8,21.43,N/A,N/A +2012,4,26,20,30,101520,100350,99220,87.5,0,8.77,9.71,9.96,10.120000000000001,10.25,10.34,10.42,10.49,10.620000000000001,184.91,185,185.09,185.19,185.29,185.39000000000001,185.51,185.62,185.9,23.080000000000002,22.82,22.66,22.48,22.3,22.13,21.94,21.77,21.41,N/A,N/A +2012,4,26,21,30,101490,100320,99190,86.91,0,8.71,9.700000000000001,9.96,10.14,10.28,10.39,10.46,10.53,10.64,184.64000000000001,184.73,184.78,184.85,184.92000000000002,184.99,185.08,185.16,185.34,23.09,22.82,22.66,22.48,22.3,22.12,21.92,21.75,21.37,N/A,N/A +2012,4,26,22,30,101460,100290,99160,85.57000000000001,0,8.58,9.55,9.83,10.03,10.18,10.3,10.41,10.51,10.69,186.58,187.05,187.3,187.55,187.79,188.01,188.26,188.49,189,23.06,22.81,22.67,22.490000000000002,22.31,22.14,21.95,21.78,21.41,N/A,N/A +2012,4,26,23,30,101420,100250,99120,85.8,0,8.92,9.9,10.17,10.35,10.47,10.57,10.65,10.71,10.81,184.05,184.07,184.15,184.24,184.32,184.4,184.49,184.58,184.76,23,22.740000000000002,22.59,22.400000000000002,22.22,22.04,21.86,21.68,21.31,N/A,N/A +2012,4,27,0,30,101390,100220,99080,85.14,0,9.02,9.94,10.18,10.32,10.42,10.49,10.55,10.6,10.71,180.54,180.64000000000001,180.76,180.89000000000001,181.04,181.20000000000002,181.39000000000001,181.58,182.1,22.94,22.68,22.53,22.35,22.17,22,21.81,21.650000000000002,21.29,N/A,N/A +2012,4,27,1,30,101370,100200,99070,83.03,0,9.47,10.49,10.77,10.950000000000001,11.07,11.16,11.23,11.290000000000001,11.39,184.15,184.31,184.41,184.5,184.58,184.64000000000001,184.69,184.74,184.84,22.98,22.73,22.57,22.39,22.22,22.04,21.86,21.69,21.34,N/A,N/A +2012,4,27,2,30,101360,100190,99060,80.42,0,9.21,10.25,10.55,10.76,10.94,11.09,11.22,11.35,11.61,184.53,184.81,184.91,185,185.08,185.15,185.22,185.27,185.36,23.03,22.79,22.650000000000002,22.47,22.3,22.13,21.95,21.78,21.43,N/A,N/A +2012,4,27,3,30,101340,100170,99040,81.43,0,10.19,11.3,11.58,11.74,11.85,11.93,11.98,12.01,12.040000000000001,179.37,179.29,179.31,179.34,179.38,179.42000000000002,179.48,179.54,179.68,22.95,22.68,22.52,22.34,22.150000000000002,21.97,21.78,21.61,21.23,N/A,N/A +2012,4,27,4,30,101300,100130,99000,78.82000000000001,0,8.73,9.65,9.93,10.17,10.42,10.68,11.06,11.44,12.13,181.25,181.66,181.96,182.33,182.8,183.32,184.04,184.76,185.69,23.01,22.8,22.67,22.52,22.38,22.25,22.14,22.03,21.75,N/A,N/A +2012,4,27,5,30,101300,100130,99000,80.24,0,10.23,11.3,11.59,11.77,11.93,12.05,12.19,12.31,12.63,179.57,180.18,180.41,180.63,180.85,181.06,181.29,181.5,181.98,22.96,22.72,22.580000000000002,22.400000000000002,22.240000000000002,22.07,21.900000000000002,21.740000000000002,21.41,N/A,N/A +2012,4,27,6,30,101310,100140,99000,81.74,0,9.85,10.8,11.03,11.16,11.25,11.31,11.38,11.44,11.66,180.4,180.54,180.59,180.63,180.66,180.68,180.71,180.74,180.91,22.95,22.650000000000002,22.490000000000002,22.31,22.14,21.97,21.79,21.64,21.330000000000002,N/A,N/A +2012,4,27,7,30,101330,100160,99030,79.13,0,9.53,10.75,11.09,11.35,11.55,11.72,11.85,11.97,12.14,181.97,181.70000000000002,181.68,181.66,181.65,181.63,181.62,181.6,181.57,23.26,22.98,22.82,22.63,22.45,22.26,22.07,21.89,21.5,N/A,N/A +2012,4,27,8,30,101320,100150,99020,77.84,0,8.99,10.1,10.43,10.72,11,11.27,11.58,11.89,12.58,182.87,183.1,183.24,183.38,183.53,183.67000000000002,183.82,183.96,184.18,23.41,23.18,23.04,22.88,22.73,22.57,22.42,22.27,21.95,N/A,N/A +2012,4,27,9,30,101320,100160,99020,81.82000000000001,0,9.61,10.68,10.950000000000001,11.13,11.26,11.370000000000001,11.47,11.56,11.76,179.61,179.57,179.63,179.71,179.8,179.88,180,180.1,180.47,23.2,22.93,22.77,22.59,22.400000000000002,22.23,22.04,21.87,21.52,N/A,N/A +2012,4,27,10,30,101310,100150,99010,83.74,0,10.71,11.9,12.19,12.36,12.48,12.56,12.61,12.66,12.700000000000001,176.56,176.74,176.87,177.01,177.15,177.3,177.45000000000002,177.59,177.93,23.18,22.900000000000002,22.73,22.54,22.36,22.18,21.990000000000002,21.81,21.43,N/A,N/A +2012,4,27,11,30,101320,100160,99020,83.17,0,10.55,11.68,11.98,12.17,12.31,12.41,12.5,12.57,12.72,183.08,183.26,183.34,183.42000000000002,183.51,183.6,183.70000000000002,183.8,184.04,23.19,22.92,22.76,22.580000000000002,22.400000000000002,22.22,22.04,21.87,21.51,N/A,N/A +2012,4,27,12,30,101350,100180,99050,81.36,0,10.39,11.65,11.99,12.25,12.450000000000001,12.61,12.76,12.88,13.1,175.95000000000002,176.67000000000002,176.95000000000002,177.23,177.5,177.74,177.99,178.23,178.69,23.38,23.12,22.97,22.79,22.61,22.44,22.25,22.07,21.7,N/A,N/A +2012,4,27,13,30,101350,100190,99050,80.99,0,12.120000000000001,13.6,13.98,14.25,14.43,14.57,14.68,14.76,14.870000000000001,179.38,179.66,179.77,179.87,179.96,180.03,180.09,180.14000000000001,180.21,23.28,23,22.830000000000002,22.64,22.45,22.26,22.07,21.88,21.490000000000002,N/A,N/A +2012,4,27,14,30,101390,100230,99090,85.10000000000001,0,11.56,12.91,13.26,13.49,13.64,13.76,13.85,13.92,14,178.63,178.48,178.47,178.47,178.47,178.47,178.48,178.48,178.49,23.080000000000002,22.78,22.61,22.41,22.22,22.04,21.84,21.650000000000002,21.27,N/A,N/A +2012,4,27,15,30,101420,100260,99120,85.96000000000001,0,11.47,12.81,13.19,13.43,13.6,13.74,13.83,13.91,14.02,176.61,176.81,176.93,177.04,177.15,177.24,177.33,177.41,177.57,23.14,22.85,22.69,22.490000000000002,22.3,22.12,21.92,21.740000000000002,21.36,N/A,N/A +2012,4,27,16,30,101450,100290,99150,82.99,0,10.51,11.72,12.05,12.27,12.43,12.55,12.64,12.72,12.83,176.99,176.79,176.78,176.77,176.78,176.78,176.79,176.8,176.85,23.28,23,22.84,22.650000000000002,22.47,22.29,22.09,21.91,21.54,N/A,N/A +2012,4,27,17,30,101460,100290,99160,81.42,0,10.41,11.6,11.93,12.14,12.3,12.42,12.52,12.6,12.73,180.36,180.85,181.07,181.29,181.49,181.67000000000002,181.85,182.01,182.32,23.29,23.02,22.86,22.67,22.48,22.3,22.11,21.93,21.55,N/A,N/A +2012,4,27,18,30,101480,100310,99180,83.69,0,10.03,11.25,11.6,11.83,12,12.13,12.22,12.31,12.42,181.32,181.52,181.59,181.65,181.71,181.76,181.8,181.84,181.9,23.27,22.98,22.82,22.63,22.44,22.26,22.06,21.88,21.490000000000002,N/A,N/A +2012,4,27,19,30,101470,100300,99160,79.54,0,9.34,10.26,10.49,10.61,10.69,10.74,10.76,10.78,10.78,172.87,172.51,172.53,172.58,172.67000000000002,172.77,172.94,173.1,173.72,23.34,23.07,22.91,22.73,22.55,22.37,22.19,22.01,21.66,N/A,N/A +2012,4,27,20,30,101450,100280,99150,80.16,0,9.13,10.14,10.42,10.6,10.72,10.8,10.870000000000001,10.92,10.98,171.9,171.92000000000002,172.03,172.12,172.20000000000002,172.26,172.31,172.36,172.43,23.36,23.09,22.93,22.740000000000002,22.56,22.37,22.18,22,21.62,N/A,N/A +2012,4,27,21,30,101410,100240,99110,79.38,0,9.19,10.25,10.540000000000001,10.73,10.870000000000001,10.98,11.06,11.13,11.22,175.06,175.29,175.4,175.49,175.57,175.64000000000001,175.70000000000002,175.76,175.87,23.37,23.11,22.95,22.76,22.580000000000002,22.400000000000002,22.2,22.02,21.64,N/A,N/A +2012,4,27,22,30,101360,100200,99060,78.2,0,8.99,9.97,10.23,10.41,10.540000000000001,10.64,10.73,10.8,10.91,171.1,171.49,171.68,171.88,172.08,172.28,172.49,172.68,173.09,23.38,23.13,22.97,22.78,22.6,22.42,22.23,22.05,21.68,N/A,N/A +2012,4,27,23,30,101320,100150,99020,76.83,0,9.15,10.17,10.43,10.6,10.72,10.82,10.89,10.950000000000001,11.040000000000001,167.73,167.96,168.09,168.22,168.34,168.46,168.58,168.69,168.93,23.35,23.09,22.94,22.75,22.57,22.39,22.2,22.02,21.650000000000002,N/A,N/A +2012,4,28,0,30,101280,100110,98980,76.81,0,9.32,10.290000000000001,10.55,10.72,10.86,10.96,11.06,11.14,11.32,170.93,171.36,171.6,171.84,172.07,172.31,172.56,172.79,173.32,23.330000000000002,23.080000000000002,22.93,22.76,22.59,22.41,22.23,22.07,21.72,N/A,N/A +2012,4,28,1,30,101260,100090,98960,75.26,0,10.35,11.51,11.83,12.040000000000001,12.19,12.3,12.39,12.47,12.59,169.66,169.85,169.92000000000002,169.99,170.04,170.07,170.11,170.14000000000001,170.19,23.330000000000002,23.080000000000002,22.92,22.73,22.55,22.37,22.18,22,21.63,N/A,N/A +2012,4,28,2,30,101270,100100,98970,76.36,0,9.64,10.72,11.03,11.24,11.4,11.53,11.63,11.73,11.9,168.59,168.45000000000002,168.39000000000001,168.33,168.29,168.26,168.24,168.23,168.24,23.29,23.05,22.900000000000002,22.72,22.54,22.37,22.18,22.01,21.650000000000002,N/A,N/A +2012,4,28,3,30,101250,100080,98940,78.42,0,10.76,12.02,12.35,12.57,12.74,12.86,12.96,13.05,13.18,169.88,170.41,170.57,170.71,170.82,170.92000000000002,171,171.08,171.20000000000002,23.150000000000002,22.87,22.7,22.51,22.330000000000002,22.150000000000002,21.95,21.77,21.39,N/A,N/A +2012,4,28,4,30,101220,100050,98920,77.28,0,10.1,11.35,11.69,11.94,12.120000000000001,12.26,12.38,12.49,12.66,167.27,167.69,167.88,168.05,168.21,168.35,168.49,168.62,168.87,23.3,23.03,22.87,22.69,22.5,22.32,22.13,21.95,21.57,N/A,N/A +2012,4,28,5,30,101200,100030,98900,83.43,0,11.35,12.68,13.030000000000001,13.25,13.41,13.530000000000001,13.61,13.68,13.77,166.91,167.02,167.09,167.16,167.22,167.29,167.35,167.41,167.53,23.02,22.71,22.54,22.35,22.150000000000002,21.97,21.77,21.59,21.2,N/A,N/A +2012,4,28,6,30,101230,100060,98930,82.91,0,12.200000000000001,13.59,13.96,14.17,14.31,14.41,14.47,14.52,14.56,164.69,165.34,165.61,165.85,166.06,166.25,166.43,166.59,166.88,23.1,22.78,22.61,22.41,22.22,22.04,21.84,21.650000000000002,21.27,N/A,N/A +2012,4,28,7,30,101220,100050,98920,84.42,0,11.19,12.39,12.68,12.85,12.97,13.05,13.1,13.15,13.21,164.45000000000002,164.27,164.27,164.27,164.3,164.33,164.38,164.44,164.6,23.16,22.84,22.67,22.47,22.29,22.1,21.91,21.73,21.36,N/A,N/A +2012,4,28,8,30,101230,100070,98940,86.59,0,11.14,12.44,12.780000000000001,13.01,13.19,13.32,13.42,13.5,13.620000000000001,171.51,171.22,171.16,171.14000000000001,171.14000000000001,171.16,171.19,171.23,171.35,23.25,22.93,22.76,22.56,22.37,22.18,21.98,21.8,21.41,N/A,N/A +2012,4,28,9,30,101240,100070,98940,88.71000000000001,0,9.77,10.790000000000001,11.06,11.22,11.33,11.41,11.47,11.53,11.6,170.05,170.21,170.36,170.51,170.65,170.79,170.94,171.07,171.37,23.29,22.98,22.81,22.61,22.42,22.240000000000002,22.04,21.86,21.47,N/A,N/A +2012,4,28,10,30,101240,100080,98950,89.82000000000001,0,10.34,11.43,11.72,11.89,12.01,12.09,12.15,12.200000000000001,12.25,164.79,164.89000000000001,165.01,165.15,165.28,165.42000000000002,165.57,165.72,166.06,23.19,22.87,22.7,22.5,22.31,22.12,21.93,21.740000000000002,21.36,N/A,N/A +2012,4,28,11,30,101260,100090,98960,89.34,0,10.3,11.4,11.700000000000001,11.9,12.040000000000001,12.14,12.23,12.3,12.41,169.92000000000002,170.14000000000001,170.23,170.34,170.45000000000002,170.56,170.69,170.82,171.14000000000001,23.3,22.990000000000002,22.830000000000002,22.64,22.45,22.26,22.080000000000002,21.900000000000002,21.52,N/A,N/A +2012,4,28,12,30,101280,100120,98990,88.54,0,9.370000000000001,10.39,10.64,10.790000000000001,10.9,10.98,11.040000000000001,11.08,11.17,171.62,172.07,172.24,172.41,172.56,172.69,172.84,172.98,173.29,23.35,23.06,22.89,22.7,22.51,22.330000000000002,22.14,21.96,21.59,N/A,N/A +2012,4,28,13,30,101310,100150,99020,88.37,0,9.040000000000001,9.97,10.200000000000001,10.33,10.42,10.48,10.51,10.53,10.55,168.71,168.99,169.17000000000002,169.35,169.5,169.65,169.79,169.93,170.21,23.52,23.23,23.06,22.87,22.69,22.51,22.31,22.14,21.76,N/A,N/A +2012,4,28,14,30,101370,100200,99070,87.76,0,8.97,9.870000000000001,10.09,10.21,10.28,10.33,10.370000000000001,10.39,10.42,159.95000000000002,159.76,159.81,159.85,159.9,159.95000000000002,160.02,160.09,160.26,23.31,23,22.830000000000002,22.64,22.45,22.26,22.07,21.89,21.51,N/A,N/A +2012,4,28,15,30,101400,100240,99110,87.7,0,9.040000000000001,9.98,10.200000000000001,10.34,10.43,10.5,10.55,10.58,10.64,160,160.23,160.39000000000001,160.56,160.72,160.88,161.05,161.20000000000002,161.55,23.36,23.05,22.88,22.69,22.5,22.32,22.12,21.94,21.56,N/A,N/A +2012,4,28,16,30,101420,100250,99120,86.48,0,8.63,9.52,9.74,9.870000000000001,9.96,10.03,10.08,10.13,10.21,158,158.42000000000002,158.62,158.82,159,159.17000000000002,159.36,159.54,159.93,23.32,23.01,22.84,22.650000000000002,22.46,22.28,22.080000000000002,21.900000000000002,21.52,N/A,N/A +2012,4,28,17,30,101440,100280,99140,83.8,0,8.35,9.23,9.44,9.57,9.67,9.73,9.78,9.81,9.86,156.16,156.09,156.09,156.09,156.09,156.1,156.11,156.12,156.15,23.490000000000002,23.18,23.02,22.82,22.63,22.44,22.25,22.06,21.68,N/A,N/A +2012,4,28,18,30,101450,100280,99150,84.19,0,8.36,9.21,9.42,9.540000000000001,9.63,9.69,9.73,9.76,9.8,149.24,149.61,149.81,150,150.17000000000002,150.33,150.48,150.63,150.92000000000002,23.44,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.01,21.63,N/A,N/A +2012,4,28,19,30,101450,100280,99150,81.41,0,7.98,8.82,9.03,9.16,9.26,9.33,9.38,9.43,9.49,148.47,148.67000000000002,148.79,148.9,149.01,149.1,149.19,149.28,149.45000000000002,23.56,23.27,23.1,22.91,22.72,22.54,22.34,22.150000000000002,21.77,N/A,N/A +2012,4,28,20,30,101430,100260,99130,82.49,0,7.76,8.6,8.82,8.97,9.07,9.15,9.22,9.27,9.36,147.44,147.83,148.02,148.19,148.35,148.48,148.62,148.74,148.98,23.62,23.330000000000002,23.17,22.98,22.79,22.61,22.41,22.23,21.85,N/A,N/A +2012,4,28,21,30,101400,100230,99100,82,0,7.71,8.55,8.77,8.92,9.03,9.120000000000001,9.19,9.25,9.34,149.14000000000001,149.44,149.62,149.8,149.96,150.1,150.24,150.37,150.64000000000001,23.7,23.42,23.26,23.080000000000002,22.89,22.71,22.51,22.34,21.96,N/A,N/A +2012,4,28,22,30,101360,100200,99070,85.89,0,8.16,8.98,9.18,9.31,9.39,9.450000000000001,9.49,9.52,9.56,144.4,144.78,144.98,145.18,145.36,145.53,145.71,145.87,146.22,23.55,23.27,23.11,22.92,22.73,22.55,22.36,22.18,21.79,N/A,N/A +2012,4,28,23,30,101340,100180,99050,88.16,0,7.57,8.31,8.5,8.61,8.69,8.74,8.78,8.82,8.870000000000001,140.33,140.59,140.73,140.9,141.07,141.24,141.44,141.63,142.12,23.5,23.21,23.05,22.86,22.67,22.490000000000002,22.3,22.12,21.740000000000002,N/A,N/A +2012,4,29,0,30,101340,100180,99050,88.87,0,6.91,7.62,7.83,7.99,8.13,8.27,8.44,8.620000000000001,9.16,145.77,146.1,146.29,146.53,146.8,147.08,147.45000000000002,147.81,148.8,23.53,23.27,23.12,22.94,22.77,22.6,22.43,22.26,21.95,N/A,N/A +2012,4,29,1,30,101340,100170,99040,91.09,0,7.7700000000000005,8.61,8.82,8.97,9.07,9.16,9.23,9.28,9.39,146.41,146.88,147.11,147.35,147.6,147.85,148.12,148.37,148.99,23.54,23.25,23.09,22.900000000000002,22.71,22.53,22.34,22.16,21.78,N/A,N/A +2012,4,29,2,30,101350,100190,99060,91.37,0,7.07,7.8,7.98,8.09,8.17,8.23,8.28,8.32,8.39,143.36,143.46,143.55,143.64000000000001,143.72,143.8,143.89000000000001,143.97,144.17000000000002,23.44,23.14,22.97,22.78,22.59,22.41,22.21,22.03,21.650000000000002,N/A,N/A +2012,4,29,3,30,101370,100200,99080,93.08,0,8.06,8.71,8.84,8.88,8.89,8.89,8.92,8.950000000000001,9.13,137.76,138.22,138.56,139.01,139.56,140.18,141.11,142.08,144.54,23.38,23.09,22.93,22.75,22.580000000000002,22.42,22.26,22.12,21.85,N/A,N/A +2012,4,29,4,30,101350,100190,99060,93.04,0,7.5600000000000005,8.34,8.55,8.700000000000001,8.82,8.93,9.05,9.16,9.52,143.54,143.86,144.09,144.35,144.64000000000001,144.94,145.33,145.71,146.86,23.52,23.23,23.07,22.88,22.7,22.52,22.330000000000002,22.16,21.81,N/A,N/A +2012,4,29,5,30,101350,100180,99050,91.85000000000001,0,7.95,8.89,9.19,9.46,9.74,10.02,10.35,10.69,11,148.64000000000001,148.84,149.02,149.24,149.49,149.77,150.15,150.53,150.9,23.580000000000002,23.32,23.16,22.990000000000002,22.82,22.66,22.48,22.330000000000002,21.97,N/A,N/A +2012,4,29,6,30,101360,100200,99070,92.17,0,8.81,9.77,10.03,10.200000000000001,10.34,10.46,10.57,10.67,10.93,145.99,146.06,146.12,146.19,146.26,146.33,146.4,146.47,146.66,23.61,23.32,23.16,22.97,22.79,22.6,22.41,22.240000000000002,21.87,N/A,N/A +2012,4,29,7,30,101400,100230,99110,92.54,0,8.6,9.56,9.82,9.99,10.13,10.23,10.32,10.39,10.52,145.78,145.91,146.01,146.12,146.23,146.34,146.46,146.57,146.81,23.56,23.27,23.1,22.91,22.73,22.54,22.35,22.17,21.79,N/A,N/A +2012,4,29,8,30,101390,100230,99100,92.93,0,8.32,9.200000000000001,9.41,9.56,9.67,9.75,9.82,9.89,10.040000000000001,149.72,149.67000000000002,149.70000000000002,149.73,149.76,149.79,149.82,149.85,149.9,23.490000000000002,23.19,23.02,22.830000000000002,22.64,22.46,22.27,22.09,21.72,N/A,N/A +2012,4,29,9,30,101420,100260,99130,87.4,0,8.96,9.93,10.18,10.33,10.44,10.51,10.56,10.61,10.66,151.25,150.85,150.77,150.72,150.68,150.66,150.66,150.67000000000002,150.73,23.71,23.42,23.25,23.06,22.87,22.68,22.48,22.3,21.91,N/A,N/A +2012,4,29,10,30,101430,100260,99130,88,0,8.45,9.44,9.700000000000001,9.86,9.98,10.06,10.11,10.15,10.16,145.95000000000002,146,146.07,146.14000000000001,146.19,146.23,146.25,146.27,146.26,23.6,23.31,23.150000000000002,22.95,22.77,22.580000000000002,22.39,22.21,21.82,N/A,N/A +2012,4,29,11,30,101430,100260,99130,86.26,0,8.34,9.290000000000001,9.56,9.76,9.94,10.11,10.290000000000001,10.46,10.92,144.79,145.13,145.37,145.64000000000001,145.92000000000002,146.21,146.52,146.83,147.58,23.64,23.38,23.22,23.04,22.87,22.69,22.51,22.35,22,N/A,N/A +2012,4,29,12,30,101460,100290,99160,87.18,0,8.38,9.13,9.31,9.44,9.56,9.67,9.84,10.03,10.76,143.61,143.54,143.58,143.68,143.83,144.02,144.35,144.72,146.04,23.650000000000002,23.38,23.240000000000002,23.06,22.900000000000002,22.740000000000002,22.59,22.45,22.21,N/A,N/A +2012,4,29,13,30,101490,100320,99190,88.77,0,9.09,10.08,10.33,10.5,10.64,10.74,10.83,10.92,11.11,142.4,142.78,143.02,143.29,143.55,143.8,144.08,144.36,145.02,23.580000000000002,23.29,23.13,22.94,22.75,22.57,22.37,22.2,21.830000000000002,N/A,N/A +2012,4,29,14,30,101570,100400,99270,90.77,0,7.86,8.63,8.82,8.94,9.02,9.09,9.15,9.200000000000001,9.33,136.16,136.43,136.62,136.84,137.06,137.28,137.53,137.77,138.39000000000001,23.57,23.28,23.12,22.93,22.740000000000002,22.56,22.37,22.19,21.830000000000002,N/A,N/A +2012,4,29,15,30,101620,100450,99320,89.59,0,8.23,9.1,9.32,9.47,9.57,9.65,9.71,9.77,9.88,136.08,136.24,136.34,136.44,136.53,136.62,136.72,136.82,137.05,23.66,23.37,23.2,23.01,22.830000000000002,22.64,22.45,22.27,21.900000000000002,N/A,N/A +2012,4,29,16,30,101640,100470,99340,90.14,0,7.67,8.44,8.63,8.75,8.83,8.89,8.94,8.98,9.06,140.49,140.62,140.68,140.76,140.84,140.94,141.04,141.15,141.43,23.68,23.39,23.22,23.03,22.84,22.66,22.46,22.28,21.91,N/A,N/A +2012,4,29,17,30,101660,100490,99360,91.37,0,7.44,8.18,8.36,8.47,8.540000000000001,8.59,8.620000000000001,8.65,8.69,131.69,131.86,131.99,132.12,132.25,132.38,132.52,132.65,132.97,23.7,23.39,23.22,23.02,22.84,22.650000000000002,22.46,22.27,21.900000000000002,N/A,N/A +2012,4,29,18,30,101660,100490,99360,91.62,0,7.1000000000000005,7.75,7.91,8,8.07,8.11,8.15,8.17,8.23,128.75,129.04,129.25,129.46,129.66,129.86,130.09,130.31,130.86,23.71,23.400000000000002,23.240000000000002,23.04,22.86,22.67,22.48,22.3,21.93,N/A,N/A +2012,4,29,19,30,101650,100480,99350,92.10000000000001,0,7.25,7.930000000000001,8.08,8.17,8.22,8.26,8.290000000000001,8.32,8.370000000000001,125.47,125.86,126.10000000000001,126.39,126.68,126.98,127.35000000000001,127.71000000000001,128.71,23.740000000000002,23.44,23.27,23.080000000000002,22.900000000000002,22.71,22.52,22.34,21.97,N/A,N/A +2012,4,29,20,30,101620,100460,99330,93.17,0,7.45,8.16,8.33,8.43,8.49,8.53,8.56,8.58,8.620000000000001,122.45,122.63,122.78,122.95,123.12,123.29,123.5,123.7,124.23,23.73,23.43,23.26,23.07,22.88,22.7,22.51,22.330000000000002,21.95,N/A,N/A +2012,4,29,21,30,101600,100440,99310,94.17,0,7.44,8.17,8.35,8.45,8.53,8.59,8.64,8.69,8.81,118.32000000000001,118.62,118.83,119.06,119.31,119.56,119.88,120.2,121.18,23.71,23.42,23.26,23.06,22.88,22.69,22.51,22.330000000000002,21.96,N/A,N/A +2012,4,29,22,30,101580,100420,99290,95.59,0,7.38,8.1,8.28,8.4,8.5,8.59,8.72,8.85,9.540000000000001,116.35000000000001,116.72,116.97,117.31,117.71000000000001,118.16,118.85000000000001,119.57000000000001,122.95,23.68,23.39,23.23,23.04,22.86,22.68,22.490000000000002,22.32,22,N/A,N/A +2012,4,29,23,30,101560,100390,99270,96.11,0,6.86,7.67,8,8.41,8.64,8.72,8.91,9.120000000000001,9.5,118.99000000000001,119.82000000000001,120.55,121.77,122.52,122.93,124.08,125.43,127.99000000000001,23.7,23.43,23.28,23.11,22.94,22.76,22.59,22.44,22.11,N/A,N/A +2012,4,30,0,30,101550,100380,99260,95.95,0,7.11,8.03,8.32,8.57,8.77,8.94,9.1,9.24,9.48,121.83,122.03,122.23,122.49000000000001,122.79,123.11,123.56,124.01,125.45,23.81,23.56,23.42,23.25,23.080000000000002,22.92,22.76,22.61,22.3,N/A,N/A +2012,4,30,1,30,101550,100380,99250,94.33,0,8.13,9.15,9.48,9.77,10,10.21,10.41,10.59,10.950000000000001,132.32,132.74,133.05,133.43,133.78,134.11,134.47,134.8,135.58,23.85,23.61,23.46,23.29,23.12,22.95,22.78,22.62,22.29,N/A,N/A +2012,4,30,2,30,101570,100400,99270,95.32000000000001,0,7.38,8.33,8.66,8.94,9.19,9.42,9.64,9.86,10.3,130.77,131.27,131.59,131.94,132.29,132.65,133.07,133.48,134.47,23.79,23.53,23.38,23.2,23.03,22.85,22.68,22.51,22.17,N/A,N/A +2012,4,30,3,30,101590,100420,99290,94.16,0,7.67,8.99,9.52,9.98,10.36,10.69,10.98,11.24,11.66,137.99,139.56,140.39000000000001,141.11,141.72,142.27,142.73,143.13,143.65,23.830000000000002,23.57,23.44,23.29,23.13,22.98,22.81,22.650000000000002,22.31,N/A,N/A +2012,4,30,4,30,101570,100410,99280,94.42,0,7.3,8.52,8.950000000000001,9.15,9.38,9.66,9.9,10.120000000000001,10.52,144.1,144.86,145.41,145.99,146.37,146.62,146.79,146.93,146.92000000000002,23.82,23.55,23.400000000000002,23.2,23.03,22.86,22.69,22.53,22.22,N/A,N/A +2012,4,30,5,30,101580,100410,99280,94.29,0,6.96,7.98,8.36,8.700000000000001,8.99,9.25,9.49,9.71,10.11,142.49,142.99,143.32,143.67000000000002,143.97,144.24,144.5,144.74,145.13,23.79,23.54,23.400000000000002,23.23,23.07,22.91,22.73,22.57,22.22,N/A,N/A +2012,4,30,6,30,101590,100420,99300,93.41,0,7.61,8.56,8.88,9.15,9.38,9.57,9.76,9.93,10.28,144.81,145.07,145.27,145.47,145.66,145.84,146.04,146.23,146.70000000000002,23.81,23.56,23.400000000000002,23.22,23.04,22.86,22.68,22.51,22.150000000000002,N/A,N/A +2012,4,30,7,30,101610,100440,99310,91.43,0,7.65,8.66,9.01,9.28,9.49,9.66,9.8,9.92,10.14,159.42000000000002,159.47,159.47,159.47,159.47,159.46,159.44,159.43,159.34,23.86,23.62,23.48,23.31,23.150000000000002,22.98,22.82,22.66,22.34,N/A,N/A +2012,4,30,8,30,101590,100420,99290,92.79,0,7.1000000000000005,8.07,8.43,8.75,8.98,9.16,9.38,9.59,9.88,161.89000000000001,162.21,162.45000000000002,162.81,162.97,162.98,162.95000000000002,162.89000000000001,162.05,23.740000000000002,23.490000000000002,23.34,23.16,22.990000000000002,22.830000000000002,22.67,22.53,22.22,N/A,N/A +2012,4,30,9,30,101590,100420,99290,94.62,0,6.46,7.07,7.25,7.43,7.58,7.73,7.86,7.99,8.26,152.51,152.9,153.21,153.75,154.29,154.86,155.79,156.78,159.88,23.59,23.31,23.16,22.98,22.8,22.63,22.47,22.31,22.06,N/A,N/A +2012,4,30,10,30,101600,100430,99300,93.58,0,6.5,7.22,7.46,7.68,7.91,8.13,8.33,8.51,8.8,145.88,146.23,146.51,146.9,147.33,147.82,148.28,148.70000000000002,149.95000000000002,23.7,23.43,23.27,23.09,22.92,22.75,22.57,22.400000000000002,22.07,N/A,N/A +2012,4,30,11,30,101640,100470,99340,94.11,0,6.2700000000000005,7.03,7.28,7.5,7.69,7.87,8.07,8.25,8.700000000000001,145.20000000000002,145.25,145.4,145.64000000000001,145.96,146.33,146.82,147.31,148.61,23.64,23.37,23.21,23.02,22.84,22.66,22.47,22.3,21.93,N/A,N/A +2012,4,30,12,30,101650,100490,99360,90.08,0,7.5,8.66,9.05,9.22,9.450000000000001,9.700000000000001,9.76,9.76,9.69,150.33,152.3,153.41,154.34,155.84,157.76,159.04,160.03,160.1,23.8,23.61,23.5,23.38,23.31,23.27,23.150000000000002,23.02,22.67,N/A,N/A +2012,4,30,13,30,101710,100540,99410,93.60000000000001,0,6.59,7.15,7.29,7.38,7.46,7.54,7.67,7.79,8.13,144.1,144.23,144.39000000000001,144.61,144.88,145.18,145.70000000000002,146.24,148.63,23.38,23.080000000000002,22.92,22.73,22.55,22.38,22.21,22.05,21.76,N/A,N/A +2012,4,30,14,30,101760,100590,99460,93.53,0,6.03,6.5600000000000005,6.69,6.76,6.82,6.87,6.93,6.99,7.34,149.11,149.47,149.69,149.89000000000001,150.08,150.26,150.53,150.8,152.01,23.51,23.21,23.05,22.86,22.68,22.5,22.31,22.14,21.81,N/A,N/A +2012,4,30,15,30,101800,100630,99500,93.76,0,5.28,5.71,5.83,5.9,5.97,6.04,6.16,6.3,6.890000000000001,150.74,150.93,150.91,150.87,150.81,150.74,150.67000000000002,150.61,150.59,23.57,23.27,23.1,22.91,22.73,22.55,22.37,22.21,21.95,N/A,N/A +2012,4,30,16,30,101860,100690,99550,92.35000000000001,0,5.62,6.04,6.12,6.15,6.16,6.17,6.18,6.19,6.3100000000000005,131.58,132.16,132.59,133.1,133.66,134.28,135.11,135.94,139.14000000000001,23.67,23.36,23.19,23,22.82,22.64,22.45,22.28,21.94,N/A,N/A +2012,4,30,17,30,101840,100670,99540,91.4,0,5.26,5.66,5.74,5.78,5.8,5.8100000000000005,5.82,5.82,5.84,138.17000000000002,138.70000000000002,139.08,139.51,139.96,140.43,141.03,141.62,143.47,23.79,23.48,23.31,23.12,22.93,22.75,22.56,22.38,22.03,N/A,N/A +2012,4,30,18,30,101820,100650,99520,91.02,0,4.47,4.7700000000000005,4.83,4.86,4.87,4.88,4.89,4.89,4.91,123.29,123.81,124.17,124.57000000000001,124.97,125.37,125.86,126.32000000000001,127.58,23.77,23.45,23.27,23.080000000000002,22.89,22.71,22.52,22.34,21.97,N/A,N/A +2012,4,30,19,30,101780,100610,99480,91.62,0,6.390000000000001,6.91,7.0200000000000005,7.07,7.09,7.1000000000000005,7.1000000000000005,7.09,7.07,123.62,123.95,124.15,124.38000000000001,124.61,124.83,125.09,125.35000000000001,126.04,23.740000000000002,23.41,23.240000000000002,23.04,22.85,22.66,22.47,22.29,21.91,N/A,N/A +2012,4,30,20,30,101710,100540,99410,88.68,0,7.24,7.890000000000001,8.040000000000001,8.11,8.15,8.19,8.21,8.23,8.290000000000001,130.14000000000001,130.37,130.49,130.65,130.81,130.99,131.21,131.43,132.09,23.79,23.5,23.34,23.150000000000002,22.97,22.79,22.6,22.43,22.080000000000002,N/A,N/A +2012,4,30,21,30,101660,100490,99350,90.21000000000001,0,7.62,8.33,8.47,8.55,8.58,8.59,8.58,8.57,8.51,128.45,128.78,128.99,129.2,129.41,129.6,129.82,130.03,130.52,23.62,23.32,23.16,22.97,22.78,22.59,22.400000000000002,22.22,21.84,N/A,N/A +2012,4,30,22,30,101620,100450,99320,91.02,0,6.55,7.16,7.3100000000000005,7.390000000000001,7.45,7.48,7.5,7.51,7.53,131.58,131.7,131.78,131.87,131.98,132.1,132.25,132.39000000000001,132.76,23.54,23.240000000000002,23.080000000000002,22.89,22.7,22.51,22.32,22.14,21.76,N/A,N/A +2012,4,30,23,30,101580,100420,99280,90.87,0,5.79,6.32,6.44,6.51,6.5600000000000005,6.59,6.63,6.65,6.74,133.34,133.54,133.65,133.8,133.95,134.13,134.34,134.57,135.28,23.5,23.21,23.05,22.86,22.67,22.490000000000002,22.3,22.12,21.75,N/A,N/A +2012,5,1,0,30,101530,100370,99240,91.94,0,5.66,6.140000000000001,6.25,6.3100000000000005,6.3500000000000005,6.38,6.41,6.44,6.62,140.88,140.91,140.99,141.11,141.23,141.38,141.58,141.79,142.64000000000001,23.45,23.150000000000002,22.990000000000002,22.8,22.61,22.43,22.240000000000002,22.06,21.72,N/A,N/A +2012,5,1,1,30,101500,100330,99200,92.59,0,5.69,6.19,6.3100000000000005,6.41,6.53,6.66,6.94,7.26,7.99,136.8,137.01,137.1,137.22,137.35,137.52,137.72,137.92000000000002,138.82,23.46,23.17,23.01,22.830000000000002,22.66,22.5,22.35,22.22,21.990000000000002,N/A,N/A +2012,5,1,2,30,101530,100360,99230,94.15,0,7.0200000000000005,7.68,7.84,7.95,8.03,8.1,8.17,8.24,8.45,140.79,141.04,141.12,141.23,141.34,141.48,141.66,141.86,142.52,23.41,23.11,22.95,22.76,22.57,22.39,22.2,22.03,21.67,N/A,N/A +2012,5,1,3,30,101540,100380,99240,93.01,0,6.72,7.32,7.47,7.5600000000000005,7.63,7.69,7.75,7.82,8.09,150.86,151.04,151.11,151.18,151.24,151.3,151.39000000000001,151.47,151.79,23.37,23.07,22.900000000000002,22.71,22.52,22.34,22.150000000000002,21.97,21.61,N/A,N/A +2012,5,1,4,30,101510,100350,99210,94.45,0,7.65,8.370000000000001,8.540000000000001,8.64,8.71,8.77,8.85,8.92,9.290000000000001,147.82,147.83,147.87,147.91,147.94,147.98,148.05,148.11,148.4,23.34,23.03,22.86,22.67,22.48,22.29,22.1,21.92,21.61,N/A,N/A +2012,5,1,5,30,101490,100330,99200,93.57000000000001,0,8.14,8.9,9.06,9.16,9.22,9.27,9.36,9.43,9.8,147.64000000000001,147.88,148.01,148.17000000000002,148.34,148.52,148.75,148.96,149.64000000000001,23.36,23.06,22.89,22.7,22.53,22.35,22.17,22,21.7,N/A,N/A +2012,5,1,6,30,101540,100380,99240,93.72,0,7.33,7.99,8.15,8.23,8.3,8.35,8.4,8.45,8.63,151.54,151.57,151.64000000000001,151.72,151.81,151.9,152.02,152.13,152.46,23.35,23.04,22.87,22.67,22.490000000000002,22.31,22.12,21.94,21.580000000000002,N/A,N/A +2012,5,1,7,30,101590,100420,99290,95.14,0,7.18,7.7700000000000005,7.930000000000001,8,8.05,8.09,8.120000000000001,8.15,8.22,156.73,157.11,157.28,157.48,157.68,157.9,158.15,158.41,159.11,23.29,22.96,22.79,22.59,22.400000000000002,22.22,22.02,21.84,21.52,N/A,N/A +2012,5,1,8,30,101570,100400,99270,94.31,0,5.74,6.18,6.28,6.34,6.390000000000001,6.44,6.55,6.68,7.3,167.23,166.56,166.18,165.73,165.20000000000002,164.61,163.63,162.61,161.02,23.09,22.77,22.6,22.41,22.240000000000002,22.06,21.89,21.740000000000002,21.51,N/A,N/A +2012,5,1,9,30,101560,100390,99260,93.76,0,5.16,5.53,5.6000000000000005,5.64,5.67,5.68,5.71,5.74,6.04,160.91,161.17000000000002,161.3,161.43,161.55,161.65,161.74,161.82,161.70000000000002,23.27,22.96,22.79,22.6,22.41,22.23,22.04,21.87,21.56,N/A,N/A +2012,5,1,10,30,101560,100390,99250,94.42,0,4.6000000000000005,4.94,5.0200000000000005,5.08,5.13,5.18,5.26,5.33,6.2,155.96,155.68,155.5,155.32,155.13,154.94,154.75,154.56,154.6,22.990000000000002,22.650000000000002,22.47,22.28,22.09,21.89,21.7,21.52,21.31,N/A,N/A +2012,5,1,11,30,101570,100400,99270,94.66,0,4.96,5.3100000000000005,5.39,5.43,5.46,5.47,5.5,5.5200000000000005,5.64,160.74,159.72,159.09,158.4,157.69,156.97,156.14000000000001,155.33,153.17000000000002,22.95,22.6,22.42,22.21,22.02,21.82,21.62,21.43,21.13,N/A,N/A +2012,5,1,12,30,101550,100380,99250,94.37,0,4.9,5.17,5.21,5.21,5.22,5.24,5.29,5.34,5.46,132.41,132.13,132.12,132.22,132.57,133.06,134.1,135.2,137.12,22.97,22.650000000000002,22.48,22.31,22.150000000000002,22,21.89,21.79,21.61,N/A,N/A +2012,5,1,13,30,101580,100410,99270,91.61,0,4.89,5.2,5.26,5.3,5.37,5.47,5.71,5.97,6.140000000000001,122.67,123.74000000000001,124.60000000000001,125.75,127.46000000000001,129.57,133.1,136.84,142.1,22.97,22.650000000000002,22.48,22.3,22.13,21.990000000000002,21.87,21.79,21.63,N/A,N/A +2012,5,1,14,30,101580,100410,99270,91.67,0,6.13,6.6000000000000005,6.67,6.69,6.7,6.71,6.73,6.75,6.890000000000001,121.41,122.05,122.49000000000001,123.03,123.66,124.32000000000001,125.44,126.61,130.67000000000002,23.2,22.87,22.7,22.5,22.32,22.14,21.96,21.8,21.52,N/A,N/A +2012,5,1,15,30,101560,100390,99260,91.8,0,6.82,7.41,7.55,7.62,7.66,7.68,7.69,7.7,7.7,127.68,127.8,127.82000000000001,127.87,127.92,127.98,128.06,128.14000000000001,128.44,23.400000000000002,23.080000000000002,22.91,22.72,22.53,22.34,22.16,21.98,21.62,N/A,N/A +2012,5,1,16,30,101560,100390,99260,90.87,0,6.75,7.3100000000000005,7.44,7.5,7.54,7.5600000000000005,7.5600000000000005,7.57,7.55,124.19,124.38000000000001,124.5,124.60000000000001,124.71000000000001,124.82000000000001,124.94,125.07000000000001,125.39,23.44,23.11,22.93,22.740000000000002,22.55,22.36,22.17,21.990000000000002,21.61,N/A,N/A +2012,5,1,17,30,101570,100400,99270,90.28,0,5.7,6.18,6.28,6.34,6.38,6.4,6.41,6.42,6.42,126.21000000000001,126.17,126.22,126.26,126.29,126.33,126.38000000000001,126.42,126.54,23.52,23.2,23.02,22.830000000000002,22.64,22.45,22.26,22.07,21.69,N/A,N/A +2012,5,1,18,30,101550,100380,99250,89.19,0,5.49,5.9,5.99,6.03,6.0600000000000005,6.07,6.08,6.09,6.09,124.63000000000001,124.8,124.9,125.02,125.14,125.25,125.39,125.52,125.87,23.580000000000002,23.25,23.080000000000002,22.89,22.7,22.51,22.32,22.13,21.75,N/A,N/A +2012,5,1,19,30,101520,100350,99220,87.23,0,5.95,6.41,6.51,6.5600000000000005,6.58,6.59,6.59,6.59,6.57,122.62,122.78,122.88,122.98,123.08,123.18,123.29,123.39,123.64,23.67,23.34,23.17,22.97,22.78,22.6,22.400000000000002,22.22,21.84,N/A,N/A +2012,5,1,20,30,101480,100320,99190,86.19,0,6.37,6.890000000000001,7,7.05,7.08,7.1000000000000005,7.1000000000000005,7.1000000000000005,7.09,118.44,118.54,118.63,118.71000000000001,118.78,118.86,118.93,119.01,119.16,23.650000000000002,23.330000000000002,23.16,22.97,22.78,22.59,22.400000000000002,22.21,21.830000000000002,N/A,N/A +2012,5,1,21,30,101420,100250,99120,85.9,0,6.42,6.95,7.0600000000000005,7.12,7.16,7.17,7.19,7.2,7.2,124.26,124.23,124.26,124.31,124.37,124.43,124.51,124.58,124.75,23.56,23.25,23.09,22.89,22.7,22.52,22.32,22.14,21.76,N/A,N/A +2012,5,1,22,30,101390,100220,99090,86.32000000000001,0,6.12,6.66,6.78,6.84,6.88,6.9,6.91,6.92,6.91,118.24000000000001,118.43,118.54,118.64,118.73,118.8,118.87,118.94,119.08,23.53,23.22,23.05,22.85,22.66,22.47,22.27,22.09,21.71,N/A,N/A +2012,5,1,23,30,101350,100190,99060,87.53,0,6.21,6.7,6.8,6.84,6.86,6.87,6.87,6.87,6.84,120.92,120.97,120.99000000000001,121.02,121.07000000000001,121.11,121.17,121.23,121.41,23.41,23.09,22.93,22.73,22.54,22.36,22.16,21.98,21.61,N/A,N/A +2012,5,2,0,30,101360,100190,99060,87.81,0,5.4,5.94,6.09,6.18,6.25,6.3100000000000005,6.3500000000000005,6.38,6.44,120.17,120.39,120.46000000000001,120.55,120.62,120.69,120.75,120.82000000000001,120.95,23.41,23.1,22.93,22.73,22.54,22.35,22.150000000000002,21.97,21.580000000000002,N/A,N/A +2012,5,2,1,30,101310,100140,99010,88.42,0,6.55,7.15,7.3,7.390000000000001,7.46,7.51,7.55,7.59,7.67,124.48,124.92,125.19,125.47,125.72,125.97,126.23,126.47,127.01,23.38,23.07,22.91,22.71,22.53,22.34,22.150000000000002,21.97,21.6,N/A,N/A +2012,5,2,2,30,101290,100120,99000,90.71000000000001,0,7.04,7.67,7.83,7.91,7.96,7.99,8.01,8.02,8.040000000000001,130.45,130.79,130.88,130.94,130.99,131.04,131.07,131.1,131.15,23.31,22.990000000000002,22.81,22.61,22.42,22.23,22.03,21.85,21.46,N/A,N/A +2012,5,2,3,30,101310,100140,99010,92.45,0,6.9,7.53,7.67,7.75,7.8,7.82,7.84,7.8500000000000005,7.83,129.08,129.02,128.99,128.95,128.92000000000002,128.88,128.86,128.83,128.79,23.31,22.98,22.81,22.62,22.42,22.23,22.03,21.84,21.45,N/A,N/A +2012,5,2,4,30,101290,100120,99000,93.3,0,6.16,6.6000000000000005,6.68,6.7,6.71,6.73,6.79,6.87,7.28,135.41,135.34,135.27,135.21,135.16,135.11,135.21,135.36,137.91,23.29,22.98,22.81,22.62,22.44,22.26,22.11,21.96,21.85,N/A,N/A +2012,5,2,5,30,101280,100110,98980,93.88,0,6.3,6.8500000000000005,6.99,7.08,7.140000000000001,7.19,7.24,7.29,7.43,145.51,144.79,144.28,143.73,143.20000000000002,142.68,142.09,141.52,140.12,23.150000000000002,22.82,22.650000000000002,22.44,22.25,22.06,21.86,21.67,21.27,N/A,N/A +2012,5,2,6,30,101270,100100,98970,94.62,0,5.88,6.36,6.48,6.55,6.6000000000000005,6.640000000000001,6.68,6.72,6.96,155.88,155.71,155.51,155.24,154.94,154.63,154.17000000000002,153.71,151.83,23.150000000000002,22.830000000000002,22.66,22.46,22.27,22.09,21.900000000000002,21.72,21.42,N/A,N/A +2012,5,2,7,30,101280,100110,98990,94.83,0,5.01,5.47,5.58,5.65,5.69,5.72,5.78,5.86,6.16,146.52,146.9,147.11,147.34,147.55,147.72,148.13,148.59,150.78,23.48,23.18,23.02,22.82,22.63,22.43,22.23,22.05,21.79,N/A,N/A +2012,5,2,8,30,101240,100080,98950,92.25,0,4.68,5.12,5.3,5.61,5.88,6.140000000000001,6.38,6.6000000000000005,6.99,136.2,136.69,137.48,138.95000000000002,140.39000000000001,141.84,143.1,144.23,145.42000000000002,23.55,23.29,23.16,23.02,22.91,22.84,22.78,22.72,22.56,N/A,N/A +2012,5,2,9,30,101250,100080,98960,96.76,0,5.03,5.37,5.43,5.45,5.48,5.51,5.64,5.8,6.55,130.53,131.07,131.44,131.97,132.72,133.66,136.03,138.72,148.44,23.25,22.93,22.75,22.55,22.38,22.23,22.04,21.86,21.97,N/A,N/A +2012,5,2,10,30,101270,100100,98980,96.89,0,4.65,4.92,4.96,4.97,5.07,5.21,5.4,5.58,5.76,138.82,139.12,139.43,139.86,141.15,143.06,145.84,148.71,151.54,23.23,22.92,22.76,22.56,22.41,22.29,22.14,22.01,21.77,N/A,N/A +2012,5,2,11,30,101270,100100,98970,97.15,0,5.51,5.82,5.87,5.89,5.8,5.63,5.47,5.32,5.0200000000000005,138.82,139.01,139.28,139.83,140.13,140.28,140.72,141.19,143.32,22.57,22.52,22.59,22.75,22.69,22.5,22.32,22.17,21.91,N/A,N/A +2012,5,2,12,30,101290,100130,99000,95.04,0,4.34,4.58,4.61,4.61,4.61,4.63,4.68,4.72,4.82,134.72,135.01,135.27,135.63,136.07,136.58,137.44,138.36,141.73,23.22,22.92,22.77,22.59,22.43,22.28,22.13,22,21.75,N/A,N/A +2012,5,2,13,30,101310,100140,99020,91.95,0,4.51,4.8100000000000005,4.8500000000000005,4.86,4.8500000000000005,4.84,4.82,4.8100000000000005,4.69,125.94,126.19,126.37,126.62,126.96000000000001,127.37,128.41,129.53,136.42000000000002,23.34,23.03,22.87,22.68,22.490000000000002,22.31,22.13,21.97,21.72,N/A,N/A +2012,5,2,14,30,101350,100190,99060,93.56,0,4.0600000000000005,4.3,4.33,4.34,4.34,4.34,4.38,4.42,4.7,132.17000000000002,132.3,132.43,132.61,132.88,133.23,134.26,135.43,143.14000000000001,23.32,23.01,22.84,22.650000000000002,22.47,22.29,22.12,21.96,21.8,N/A,N/A +2012,5,2,15,30,101380,100210,99080,92.95,0,3.5500000000000003,3.74,3.77,3.77,3.7600000000000002,3.74,3.73,3.71,3.65,129.65,129.86,130,130.17000000000002,130.37,130.61,131.04,131.49,135.13,23.45,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.03,21.69,N/A,N/A +2012,5,2,16,30,101400,100230,99100,93.58,0,3.75,3.96,3.99,4,4,3.99,3.98,3.96,3.93,143.14000000000001,143.39000000000001,143.49,143.63,143.79,143.96,144.23,144.5,145.75,23.53,23.2,23.02,22.830000000000002,22.64,22.45,22.26,22.080000000000002,21.72,N/A,N/A +2012,5,2,17,30,101380,100210,99080,93.62,0,3.56,3.75,3.7800000000000002,3.79,3.7800000000000002,3.7800000000000002,3.7600000000000002,3.75,3.71,146.01,146.4,146.64000000000001,146.9,147.16,147.42000000000002,147.75,148.08,149.12,23.66,23.31,23.14,22.94,22.75,22.57,22.37,22.19,21.85,N/A,N/A +2012,5,2,18,30,101370,100210,99080,92.55,0,4.0600000000000005,4.2700000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.2700000000000005,4.25,4.17,155.57,155.9,156.03,156.20000000000002,156.39000000000001,156.59,156.86,157.14000000000001,158.15,23.81,23.47,23.29,23.1,22.91,22.73,22.53,22.36,21.990000000000002,N/A,N/A +2012,5,2,19,30,101350,100190,99060,92.65,0,3.7,3.85,3.86,3.83,3.8000000000000003,3.7600000000000002,3.71,3.66,3.43,162.31,162.75,162.99,163.28,163.59,163.92000000000002,164.44,164.97,167.63,23.89,23.55,23.38,23.18,23,22.81,22.63,22.46,22.19,N/A,N/A +2012,5,2,20,30,101300,100140,99010,91.10000000000001,0,4.92,5.22,5.26,5.2700000000000005,5.26,5.25,5.22,5.2,5.12,169.83,170.03,170.17000000000002,170.32,170.46,170.62,170.83,171.04,171.77,24.05,23.72,23.54,23.34,23.16,22.97,22.78,22.6,22.240000000000002,N/A,N/A +2012,5,2,21,30,101270,100110,98980,91.44,0,4.97,5.3,5.3500000000000005,5.36,5.36,5.34,5.33,5.3100000000000005,5.29,175.79,175.88,175.96,176.05,176.15,176.28,176.46,176.67000000000002,177.97,24.09,23.78,23.61,23.42,23.23,23.05,22.86,22.69,22.400000000000002,N/A,N/A +2012,5,2,22,30,101240,100080,98950,91.52,0,5.3500000000000005,5.7700000000000005,5.84,5.86,5.86,5.84,5.8100000000000005,5.79,5.71,177.81,177.84,177.79,177.75,177.70000000000002,177.67000000000002,177.62,177.57,177.39000000000001,24.1,23.82,23.66,23.46,23.27,23.09,22.900000000000002,22.71,22.35,N/A,N/A +2012,5,2,23,30,101240,100080,98950,92.45,0,4.74,5.15,5.26,5.34,5.39,5.4,5.41,5.42,5.32,182.29,182.17000000000002,182.08,181.88,181.65,181.36,180.34,179.12,176.67000000000002,23.97,23.71,23.56,23.39,23.21,23.03,22.89,22.77,22.7,N/A,N/A +2012,5,3,0,30,101230,100070,98950,92.93,0,5.4,6,6.18,6.32,6.44,6.54,6.63,6.7,6.83,176.32,176.33,176.24,176.15,176.06,175.97,175.89000000000001,175.82,175.56,23.830000000000002,23.580000000000002,23.43,23.25,23.080000000000002,22.91,22.73,22.56,22.26,N/A,N/A +2012,5,3,1,30,101210,100050,98930,94.74,0,5.24,5.88,6.1000000000000005,6.26,6.38,6.48,6.55,6.61,6.65,186.22,186.25,186.08,185.70000000000002,185.19,184.56,183.78,182.99,180.01,23.68,23.44,23.29,23.11,22.93,22.75,22.56,22.39,22.16,N/A,N/A +2012,5,3,2,30,101260,100100,98970,94.03,0,5.29,6.1000000000000005,6.43,6.68,6.890000000000001,7.07,7.24,7.390000000000001,7.43,181.63,181.55,181.54,181.51,181.49,181.51,181.6,181.73,182.18,23.64,23.45,23.330000000000002,23.17,23.01,22.86,22.71,22.59,22.59,N/A,N/A +2012,5,3,3,30,101320,100160,99030,94.23,0,4.59,5.36,5.7,6,6.26,6.51,6.74,6.95,7.29,176.92000000000002,177.32,177.59,177.76,177.89000000000001,177.99,178.18,178.39000000000001,179.37,23.64,23.47,23.37,23.23,23.1,22.97,22.87,22.78,22.69,N/A,N/A +2012,5,3,4,30,101280,100110,98990,95.88,0,4.83,5.6000000000000005,5.93,6.22,6.47,6.68,6.9,7.1000000000000005,7.46,187.81,187.87,187.82,187.65,187.47,187.31,187.22,187.16,187.23,23.55,23.34,23.22,23.07,22.92,22.78,22.66,22.56,22.59,N/A,N/A +2012,5,3,5,30,101300,100140,99010,94.96000000000001,0,4.8,5.51,5.78,6,6.24,6.5,6.74,6.95,7.36,183.1,183.61,183.94,184.37,184.76,185.14000000000001,185.38,185.56,185.71,23.54,23.3,23.16,23.01,22.87,22.76,22.64,22.53,22.38,N/A,N/A +2012,5,3,6,30,101290,100130,99000,95.24,0,4.93,5.28,5.37,5.46,5.71,6.09,6.46,6.82,7.26,188.55,188.87,189.1,189.46,190.29,191.51,193.12,194.8,196.05,23.61,23.3,23.14,22.96,22.81,22.68,22.64,22.62,22.7,N/A,N/A +2012,5,3,7,30,101330,100170,99040,93.91,0,4.3500000000000005,4.63,4.68,4.69,4.7,4.71,4.73,4.7700000000000005,5.33,193.66,193.73000000000002,193.78,193.86,193.98000000000002,194.13,194.43,194.73000000000002,198.01,23.67,23.35,23.18,22.990000000000002,22.81,22.62,22.44,22.28,22.1,N/A,N/A +2012,5,3,8,30,101310,100140,99010,94.14,0,5.42,5.8100000000000005,5.88,5.9,5.91,5.91,5.89,5.88,5.9,200.53,200.51,200.48000000000002,200.45000000000002,200.4,200.35,200.28,200.20000000000002,199.9,23.59,23.26,23.09,22.900000000000002,22.71,22.52,22.330000000000002,22.150000000000002,21.8,N/A,N/A +2012,5,3,9,30,101330,100160,99030,93.82000000000001,0,4.96,5.3100000000000005,5.37,5.4,5.41,5.41,5.42,5.42,5.44,201.92000000000002,201.99,201.99,201.99,202,202,202.02,202.03,202.1,23.55,23.22,23.05,22.85,22.66,22.48,22.28,22.09,21.73,N/A,N/A +2012,5,3,10,30,101350,100180,99050,95.2,0,4.72,5.07,5.17,5.22,5.26,5.3,5.33,5.36,5.43,194.17000000000002,194.47,194.71,194.95000000000002,195.19,195.44,195.70000000000002,195.96,196.58,23.41,23.06,22.87,22.66,22.46,22.26,22.1,21.96,21.7,N/A,N/A +2012,5,3,11,30,101420,100250,99120,93.21000000000001,0,2.75,2.94,3,3.04,3.09,3.13,3.2,3.27,3.62,193.24,191.48000000000002,190.48,189.51,188.61,187.75,186.93,186.17000000000002,184.53,23.46,23.14,22.98,22.78,22.6,22.42,22.23,22.06,21.740000000000002,N/A,N/A +2012,5,3,12,30,101420,100260,99130,88.87,0,2.35,2.5100000000000002,2.5500000000000003,2.58,2.6,2.62,2.64,2.66,2.7600000000000002,188.62,188.35,188.09,187.81,187.51,187.20000000000002,186.81,186.43,185.14000000000001,23.79,23.490000000000002,23.32,23.13,22.95,22.76,22.57,22.39,22.03,N/A,N/A +2012,5,3,13,30,101450,100280,99150,92.88,0,5.16,5.51,5.57,5.57,5.5600000000000005,5.54,5.51,5.48,5.41,181.21,181.20000000000002,181.15,181.09,181.04,181.01,180.99,180.99,181.15,23.580000000000002,23.25,23.080000000000002,22.88,22.69,22.5,22.3,22.12,21.75,N/A,N/A +2012,5,3,14,30,101520,100350,99220,89.96000000000001,0,3.2800000000000002,3.47,3.52,3.54,3.56,3.58,3.61,3.63,3.83,196.28,196.15,196.27,196.38,196.5,196.61,196.76,196.91,197.72,23.6,23.28,23.11,22.91,22.73,22.54,22.35,22.17,21.81,N/A,N/A +2012,5,3,15,30,101550,100390,99260,90.2,0,2.86,2.99,3.02,3.0300000000000002,3.04,3.04,3.04,3.0500000000000003,3.06,160.48,161.26,161.78,162.31,162.83,163.36,163.95000000000002,164.52,165.99,23.68,23.35,23.18,22.98,22.79,22.6,22.41,22.22,21.84,N/A,N/A +2012,5,3,16,30,101570,100400,99270,91.34,0,3.58,3.7800000000000002,3.8200000000000003,3.84,3.85,3.85,3.86,3.86,3.86,164.8,165.01,165.23,165.44,165.66,165.89000000000001,166.15,166.42000000000002,167.13,23.740000000000002,23.39,23.22,23.02,22.830000000000002,22.64,22.44,22.26,21.88,N/A,N/A +2012,5,3,17,30,101560,100400,99270,90.7,0,3.08,3.24,3.27,3.2800000000000002,3.3000000000000003,3.3000000000000003,3.31,3.31,3.33,156.18,156.70000000000002,157.03,157.35,157.66,157.98,158.35,158.70000000000002,159.63,23.85,23.5,23.330000000000002,23.13,22.94,22.75,22.56,22.37,22,N/A,N/A +2012,5,3,18,30,101580,100420,99290,90.95,0,3.56,3.7800000000000002,3.83,3.87,3.89,3.92,3.93,3.95,3.99,144.06,144.34,144.52,144.69,144.85,145.01,145.20000000000002,145.38,145.91,24.04,23.7,23.52,23.32,23.13,22.95,22.76,22.57,22.2,N/A,N/A +2012,5,3,19,30,101580,100420,99290,87.78,0,4.28,4.49,4.51,4.5,4.48,4.45,4.42,4.39,4.33,157.17000000000002,157.1,157.05,157.02,156.98,156.96,156.96,156.95000000000002,157.02,24.34,24,23.830000000000002,23.63,23.45,23.27,23.07,22.900000000000002,22.53,N/A,N/A +2012,5,3,20,30,101540,100370,99250,88.99,0,4.79,5.11,5.17,5.2,5.21,5.22,5.22,5.21,5.19,146.22,146.35,146.46,146.57,146.67000000000002,146.77,146.88,146.99,147.25,24.21,23.87,23.7,23.5,23.31,23.12,22.92,22.740000000000002,22.36,N/A,N/A +2012,5,3,21,30,101520,100350,99230,86.87,0,4.58,4.89,4.94,4.96,4.97,4.97,4.96,4.95,4.93,146.12,146.13,146.11,146.07,146.03,146,145.97,145.94,145.9,24.43,24.11,23.94,23.740000000000002,23.56,23.37,23.17,22.990000000000002,22.62,N/A,N/A +2012,5,3,22,30,101500,100340,99210,87.76,0,4.97,5.39,5.47,5.51,5.5200000000000005,5.53,5.53,5.5200000000000005,5.5,136.66,137.09,137.34,137.58,137.8,138.01,138.23,138.45000000000002,138.99,24.39,24.09,23.92,23.72,23.53,23.35,23.150000000000002,22.97,22.59,N/A,N/A +2012,5,3,23,30,101450,100290,99160,89.32000000000001,0,5.05,5.48,5.5600000000000005,5.6000000000000005,5.62,5.63,5.63,5.63,5.62,148.61,148.02,147.67000000000002,147.3,146.94,146.59,146.23,145.88,145.14000000000001,24.2,23.91,23.740000000000002,23.55,23.36,23.17,22.98,22.79,22.41,N/A,N/A +2012,5,4,0,30,101430,100270,99140,88.89,0,4.59,5.01,5.11,5.19,5.2700000000000005,5.34,5.45,5.5600000000000005,5.87,132.81,133.19,133.47,133.83,134.24,134.69,135.31,135.97,138.05,24.150000000000002,23.89,23.740000000000002,23.56,23.39,23.22,23.05,22.900000000000002,22.6,N/A,N/A +2012,5,4,1,30,101400,100230,99100,90.84,0,5.01,5.42,5.5,5.54,5.5600000000000005,5.58,5.59,5.6000000000000005,5.66,148.11,147.84,147.67000000000002,147.5,147.33,147.15,146.94,146.74,146.14000000000001,23.830000000000002,23.52,23.35,23.16,22.97,22.79,22.59,22.41,22.04,N/A,N/A +2012,5,4,2,30,101480,100320,99190,92.04,0,5.63,6.05,6.13,6.16,6.17,6.16,6.16,6.140000000000001,6.12,147.52,147.75,147.9,148.12,148.34,148.58,148.88,149.17000000000002,149.93,23.84,23.52,23.35,23.150000000000002,22.96,22.77,22.56,22.37,21.97,N/A,N/A +2012,5,4,3,30,101530,100370,99240,89.76,0,5.68,6.05,6.11,6.1000000000000005,6.09,6.0600000000000005,6.05,6.03,6.13,158.55,158.53,158.49,158.45000000000002,158.41,158.36,158.34,158.33,158.6,23.740000000000002,23.43,23.27,23.07,22.89,22.71,22.53,22.36,22.05,N/A,N/A +2012,5,4,4,30,101510,100350,99220,90.71000000000001,0,4.25,4.55,4.61,4.63,4.65,4.66,4.66,4.67,5.49,160.63,161.05,161.36,161.73,162.12,162.55,163.09,163.63,170.97,23.8,23.5,23.34,23.14,22.96,22.77,22.59,22.400000000000002,22.23,N/A,N/A +2012,5,4,5,30,101500,100330,99200,93.45,0,5.12,5.49,5.57,5.6000000000000005,5.63,5.66,5.7,5.76,6.24,163.32,163.6,163.77,163.98,164.23,164.5,164.95000000000002,165.42000000000002,168.29,23.650000000000002,23.330000000000002,23.16,22.98,22.79,22.61,22.43,22.26,21.97,N/A,N/A +2012,5,4,6,30,101510,100340,99210,94.61,0,5.16,5.5600000000000005,5.65,5.7,5.73,5.75,5.76,5.7700000000000005,5.82,170.17000000000002,170.19,170.22,170.26,170.32,170.38,170.45000000000002,170.52,170.8,23.67,23.330000000000002,23.150000000000002,22.95,22.76,22.57,22.37,22.19,21.93,N/A,N/A +2012,5,4,7,30,101580,100410,99280,94.39,0,3.92,4.16,4.22,4.28,4.33,4.4,4.5200000000000005,4.64,5.33,189.27,186.58,184.88,183.04,181.25,179.45000000000002,177.63,175.9,175.09,23.59,23.26,23.1,22.91,22.740000000000002,22.57,22.400000000000002,22.25,21.990000000000002,N/A,N/A +2012,5,4,8,30,101550,100380,99250,93.79,0,4.68,4.92,4.95,4.94,4.97,5.0200000000000005,5.22,5.46,5.84,171.5,172.89000000000001,173.85,175.19,176.91,178.91,181.52,184.22,187.70000000000002,23.66,23.34,23.17,22.990000000000002,22.84,22.69,22.6,22.54,22.45,N/A,N/A +2012,5,4,9,30,101550,100390,99260,93.2,0,3.98,4.25,4.33,4.39,4.47,4.57,4.8100000000000005,5.09,5.67,180.05,180.63,181.07,181.59,182.20000000000002,182.92000000000002,184.11,185.43,188.39000000000001,23.740000000000002,23.43,23.27,23.09,22.91,22.75,22.61,22.48,22.240000000000002,N/A,N/A +2012,5,4,10,30,101570,100400,99270,92.87,0,4.73,5.0600000000000005,5.14,5.17,5.19,5.2,5.21,5.21,5.22,178.92000000000002,179.12,179.3,179.52,179.73,179.95000000000002,180.18,180.41,180.98,23.85,23.54,23.37,23.17,22.990000000000002,22.8,22.62,22.44,22.07,N/A,N/A +2012,5,4,11,30,101550,100390,99260,91.34,0,3.87,4.1,4.13,4.14,4.14,4.15,4.19,4.24,4.88,169.71,170.33,170.78,171.35,172.11,173,174.75,176.65,186.26,23.8,23.48,23.31,23.12,22.95,22.77,22.6,22.45,22.32,N/A,N/A +2012,5,4,12,30,101580,100410,99280,91.86,0,3.87,4.12,4.18,4.22,4.24,4.25,4.2700000000000005,4.28,4.29,181.45000000000002,181.85,182.13,182.46,182.8,183.15,183.55,183.94,184.88,23.81,23.490000000000002,23.32,23.12,22.93,22.75,22.55,22.37,21.990000000000002,N/A,N/A +2012,5,4,13,30,101610,100450,99320,90.14,0,3.87,4.1,4.15,4.17,4.17,4.17,4.17,4.16,4.14,182.25,182.61,182.75,182.94,183.14000000000001,183.35,183.59,183.83,184.47,23.86,23.54,23.37,23.17,22.98,22.8,22.6,22.42,22.04,N/A,N/A +2012,5,4,14,30,101660,100490,99360,89.08,0,3.62,3.88,3.95,4,4.03,4.07,4.1,4.12,4.18,190.84,190.95000000000002,191,191.05,191.1,191.14000000000001,191.18,191.23000000000002,191.38,23.900000000000002,23.580000000000002,23.41,23.21,23.02,22.84,22.64,22.45,22.07,N/A,N/A +2012,5,4,15,30,101640,100470,99340,88.97,0,4.1,4.32,4.36,4.36,4.36,4.3500000000000005,4.34,4.33,4.3100000000000005,161.6,162.09,162.42000000000002,162.76,163.1,163.44,163.82,164.20000000000002,165.23,23.92,23.59,23.42,23.23,23.04,22.85,22.66,22.48,22.11,N/A,N/A +2012,5,4,16,30,101670,100500,99370,89.65,0,4.32,4.68,4.76,4.82,4.86,4.89,4.91,4.94,4.97,149.37,149.85,150.04,150.22,150.36,150.5,150.63,150.75,151.02,24.03,23.7,23.52,23.32,23.13,22.94,22.740000000000002,22.56,22.18,N/A,N/A +2012,5,4,17,30,101660,100490,99360,88.44,0,4.23,4.51,4.57,4.6000000000000005,4.63,4.64,4.66,4.67,4.71,163.70000000000002,163.78,163.89000000000001,163.98,164.07,164.15,164.26,164.37,164.64000000000001,24.080000000000002,23.740000000000002,23.57,23.37,23.18,22.990000000000002,22.8,22.62,22.240000000000002,N/A,N/A +2012,5,4,18,30,101650,100480,99350,86.97,0,4.23,4.51,4.57,4.59,4.61,4.62,4.62,4.62,4.62,166.84,167.15,167.35,167.57,167.77,167.96,168.17000000000002,168.37,168.81,24.28,23.94,23.76,23.56,23.37,23.18,22.98,22.8,22.41,N/A,N/A +2012,5,4,19,30,101630,100470,99340,86.92,0,4.17,4.44,4.5,4.53,4.5600000000000005,4.58,4.61,4.63,4.68,155.70000000000002,155.33,155.16,154.98,154.79,154.61,154.44,154.28,154,24.330000000000002,23.990000000000002,23.81,23.62,23.43,23.240000000000002,23.05,22.87,22.490000000000002,N/A,N/A +2012,5,4,20,30,101590,100430,99300,86.33,0,4.86,5.22,5.3100000000000005,5.3500000000000005,5.39,5.41,5.44,5.46,5.5,150.65,150.70000000000002,150.65,150.62,150.59,150.58,150.58,150.57,150.57,24.36,24.03,23.85,23.650000000000002,23.46,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A +2012,5,4,21,30,101550,100380,99260,86.84,0,5.58,6,6.09,6.13,6.16,6.17,6.18,6.18,6.18,166,166.02,166.14000000000001,166.26,166.38,166.5,166.66,166.82,167.24,24.34,24.02,23.85,23.650000000000002,23.46,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A +2012,5,4,22,30,101500,100340,99210,88.02,0,5.89,6.390000000000001,6.51,6.57,6.61,6.640000000000001,6.65,6.67,6.68,174.12,174.41,174.59,174.78,174.95000000000002,175.13,175.34,175.53,176.01,24.37,24.07,23.900000000000002,23.7,23.52,23.330000000000002,23.13,22.95,22.57,N/A,N/A +2012,5,4,23,30,101490,100320,99200,90.44,0,4.6000000000000005,5,5.09,5.15,5.19,5.23,5.26,5.28,5.34,159.47,159.44,159.48,159.48,159.46,159.43,159.37,159.31,159.11,24.25,23.94,23.78,23.580000000000002,23.39,23.21,23.02,22.84,22.46,N/A,N/A +2012,5,5,0,30,101460,100290,99170,90.5,0,6.15,6.66,6.76,6.8,6.8100000000000005,6.8100000000000005,6.79,6.7700000000000005,6.7,148.47,148.78,149.01,149.28,149.54,149.83,150.15,150.47,151.32,24.3,24,23.84,23.650000000000002,23.46,23.28,23.09,22.91,22.55,N/A,N/A +2012,5,5,1,30,101440,100280,99150,90.71000000000001,0,4.71,5.09,5.17,5.22,5.24,5.26,5.2700000000000005,5.2700000000000005,5.28,146.78,147.3,147.61,147.89000000000001,148.14000000000001,148.37,148.62,148.84,149.36,24.26,23.96,23.8,23.6,23.42,23.23,23.04,22.86,22.48,N/A,N/A +2012,5,5,2,30,101390,100220,99100,92.23,0,4.83,5.25,5.34,5.38,5.41,5.41,5.41,5.4,5.36,168.12,167.96,167.87,167.8,167.78,167.78,167.81,167.85,168.06,24.29,23.990000000000002,23.830000000000002,23.63,23.45,23.27,23.080000000000002,22.900000000000002,22.53,N/A,N/A +2012,5,5,3,30,101370,100200,99080,92.43,0,5.79,6.23,6.3100000000000005,6.33,6.34,6.33,6.3100000000000005,6.3,6.25,155.58,155.61,155.68,155.76,155.85,155.94,156.05,156.16,156.45000000000002,24.13,23.82,23.650000000000002,23.45,23.27,23.080000000000002,22.89,22.71,22.330000000000002,N/A,N/A +2012,5,5,4,30,101410,100250,99120,92.26,0,6.68,7.17,7.24,7.24,7.22,7.18,7.13,7.08,6.93,159.38,159.92000000000002,160.27,160.66,161.07,161.49,162.01,162.53,163.93,23.93,23.6,23.42,23.22,23.03,22.84,22.64,22.45,22.05,N/A,N/A +2012,5,5,5,30,101430,100270,99140,89.12,0,4.83,5.24,5.33,5.39,5.43,5.46,5.48,5.5,5.53,178.82,179.19,179.38,179.52,179.63,179.71,179.79,179.86,179.99,24.13,23.82,23.650000000000002,23.46,23.27,23.080000000000002,22.89,22.7,22.32,N/A,N/A +2012,5,5,6,30,101440,100280,99150,89.60000000000001,0,6.3500000000000005,6.8500000000000005,6.96,7.0200000000000005,7.05,7.07,7.07,7.08,7.08,177.41,177.65,177.8,177.96,178.12,178.27,178.43,178.59,178.95000000000002,24.23,23.89,23.71,23.52,23.330000000000002,23.14,22.95,22.76,22.38,N/A,N/A +2012,5,5,7,30,101410,100250,99120,89.23,0,6.09,6.5600000000000005,6.66,6.7,6.73,6.74,6.74,6.74,6.73,182.91,182.83,182.79,182.73,182.68,182.63,182.58,182.53,182.42000000000002,24.11,23.77,23.59,23.39,23.2,23.02,22.82,22.64,22.27,N/A,N/A +2012,5,5,8,30,101450,100290,99160,85.96000000000001,0,4.75,5.07,5.14,5.17,5.19,5.19,5.2,5.2,5.19,197.44,197.5,197.55,197.59,197.62,197.65,197.68,197.71,197.79,24.21,23.88,23.7,23.5,23.31,23.12,22.93,22.740000000000002,22.36,N/A,N/A +2012,5,5,9,30,101490,100320,99200,86.08,0,5.2700000000000005,5.63,5.7,5.73,5.74,5.74,5.74,5.74,5.74,204.87,205.38,205.69,205.97,206.23000000000002,206.47,206.71,206.94,207.4,24.16,23.82,23.64,23.44,23.25,23.06,22.86,22.67,22.29,N/A,N/A +2012,5,5,10,30,101430,100270,99140,86.66,0,6.83,7.4,7.54,7.61,7.65,7.68,7.7,7.72,7.73,202.61,202.65,202.65,202.63,202.61,202.58,202.54,202.51,202.45000000000002,24.21,23.87,23.69,23.490000000000002,23.3,23.11,22.91,22.73,22.34,N/A,N/A +2012,5,5,11,30,101460,100300,99170,85.13,0,6.6000000000000005,7.12,7.23,7.28,7.3100000000000005,7.32,7.32,7.32,7.3,202.86,202.86,202.84,202.82,202.8,202.78,202.76,202.75,202.71,24.29,23.96,23.79,23.59,23.400000000000002,23.21,23.02,22.830000000000002,22.45,N/A,N/A +2012,5,5,12,30,101440,100270,99150,84.60000000000001,0,6.17,6.6000000000000005,6.69,6.72,6.72,6.72,6.7,6.68,6.63,213.64000000000001,214.11,214.29,214.5,214.71,214.91,215.13,215.34,215.82,24.28,23.95,23.78,23.580000000000002,23.39,23.21,23.02,22.84,22.46,N/A,N/A +2012,5,5,13,30,101390,100230,99100,86.83,0,5.0600000000000005,5.44,5.53,5.58,5.62,5.65,5.67,5.69,5.72,198.51,198.44,198.45000000000002,198.46,198.47,198.47,198.48000000000002,198.49,198.49,24.310000000000002,23.97,23.8,23.6,23.41,23.22,23.02,22.84,22.45,N/A,N/A +2012,5,5,14,30,101370,100210,99090,89.34,0,6.36,6.88,7.01,7.08,7.12,7.16,7.18,7.2,7.22,171.27,171.5,171.61,171.72,171.8,171.88,171.96,172.05,172.22,24.39,24.060000000000002,23.89,23.69,23.5,23.31,23.12,22.93,22.55,N/A,N/A +2012,5,5,15,30,101380,100220,99090,89.51,0,6.68,7.25,7.38,7.45,7.5,7.53,7.55,7.5600000000000005,7.58,168.62,168.77,168.8,168.84,168.88,168.92000000000002,168.96,169,169.07,24.46,24.12,23.94,23.740000000000002,23.55,23.36,23.17,22.98,22.6,N/A,N/A +2012,5,5,16,30,101430,100270,99140,88.01,0,6.47,7.0200000000000005,7.15,7.21,7.25,7.28,7.3,7.3100000000000005,7.3100000000000005,182.8,182.37,182.21,182.08,181.98,181.89000000000001,181.81,181.75,181.63,24.69,24.37,24.2,24,23.81,23.62,23.42,23.240000000000002,22.86,N/A,N/A +2012,5,5,17,30,101420,100260,99130,88.33,0,6.33,6.9,7.03,7.11,7.16,7.19,7.21,7.23,7.25,179.36,179.58,179.65,179.70000000000002,179.74,179.77,179.81,179.84,179.9,24.75,24.43,24.25,24.060000000000002,23.86,23.68,23.48,23.3,22.91,N/A,N/A +2012,5,5,18,30,101420,100260,99130,89.13,0,5.29,5.7700000000000005,5.9,5.98,6.04,6.08,6.12,6.140000000000001,6.18,181.73,181.64000000000001,181.6,181.59,181.58,181.57,181.57,181.58,181.59,24.830000000000002,24.51,24.34,24.14,23.95,23.76,23.56,23.38,22.990000000000002,N/A,N/A +2012,5,5,19,30,101410,100250,99130,89.69,0,5.96,6.45,6.5600000000000005,6.61,6.640000000000001,6.66,6.67,6.67,6.67,168.03,168.13,168.21,168.28,168.34,168.4,168.44,168.48,168.56,24.89,24.560000000000002,24.39,24.19,24,23.81,23.61,23.43,23.05,N/A,N/A +2012,5,5,20,30,101370,100210,99090,90.51,0,6.36,6.93,7.07,7.140000000000001,7.19,7.22,7.23,7.24,7.24,157.88,158.06,158.22,158.38,158.54,158.69,158.83,158.96,159.24,24.79,24.46,24.29,24.09,23.91,23.72,23.52,23.34,22.96,N/A,N/A +2012,5,5,21,30,101330,100170,99050,91.45,0,5.62,6.1000000000000005,6.22,6.3,6.3500000000000005,6.4,6.43,6.46,6.53,165.53,165.96,166.22,166.49,166.75,167.01,167.28,167.56,168.21,24.88,24.57,24.400000000000002,24.2,24.02,23.830000000000002,23.64,23.46,23.09,N/A,N/A +2012,5,5,22,30,101310,100150,99030,91.57000000000001,0,6.63,7.25,7.390000000000001,7.47,7.5200000000000005,7.55,7.5600000000000005,7.57,7.5600000000000005,174,174.28,174.32,174.35,174.37,174.38,174.39000000000001,174.39000000000001,174.37,24.88,24.57,24.41,24.21,24.02,23.84,23.64,23.46,23.080000000000002,N/A,N/A +2012,5,5,23,30,101270,100120,99000,90.02,0,6.78,7.37,7.49,7.55,7.58,7.59,7.59,7.59,7.57,168.21,168.22,168.33,168.49,168.66,168.85,169.08,169.3,169.89000000000001,24.87,24.57,24.400000000000002,24.21,24.02,23.84,23.64,23.46,23.09,N/A,N/A +2012,5,6,0,30,101250,100090,98970,92.14,0,6.65,7.25,7.4,7.48,7.54,7.57,7.6000000000000005,7.63,7.67,160.45000000000002,160.65,160.74,160.84,160.94,161.03,161.14000000000001,161.23,161.49,24.72,24.41,24.240000000000002,24.05,23.86,23.67,23.48,23.3,22.91,N/A,N/A +2012,5,6,1,30,101210,100060,98930,91.61,0,6.75,7.34,7.48,7.55,7.6000000000000005,7.640000000000001,7.67,7.7,7.79,163.04,163.32,163.53,163.76,163.99,164.23,164.53,164.82,165.65,24.63,24.32,24.150000000000002,23.95,23.77,23.580000000000002,23.39,23.2,22.830000000000002,N/A,N/A +2012,5,6,2,30,101240,100080,98960,92.06,0,7.03,7.640000000000001,7.78,7.83,7.86,7.87,7.86,7.8500000000000005,7.8,163.72,164.02,164.18,164.37,164.55,164.73,164.93,165.14000000000001,165.65,24.64,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.39,23.2,22.830000000000002,N/A,N/A +2012,5,6,3,30,101270,100110,98990,91.82000000000001,0,7.19,7.8500000000000005,8.02,8.11,8.17,8.21,8.23,8.25,8.28,170.22,170.11,170.07,170.05,170.04,170.03,170.04,170.04,170.07,24.67,24.35,24.18,23.98,23.79,23.6,23.41,23.22,22.84,N/A,N/A +2012,5,6,4,30,101240,100080,98960,88.94,0,7.87,8.67,8.870000000000001,8.98,9.06,9.11,9.14,9.16,9.17,167.41,167.99,168.21,168.4,168.57,168.72,168.86,168.99,169.27,24.79,24.48,24.32,24.12,23.94,23.75,23.56,23.38,22.990000000000002,N/A,N/A +2012,5,6,5,30,101270,100110,98980,88.7,0,8.14,8.93,9.120000000000001,9.200000000000001,9.25,9.28,9.28,9.27,9.22,182.33,182.19,182.09,182.01,181.93,181.87,181.81,181.75,181.63,24.76,24.45,24.28,24.09,23.900000000000002,23.71,23.52,23.34,22.95,N/A,N/A +2012,5,6,6,30,101270,100110,98980,87.11,0,7.57,8.290000000000001,8.49,8.59,8.67,8.72,8.76,8.790000000000001,8.82,189.32,189.45000000000002,189.53,189.61,189.68,189.76,189.83,189.89000000000001,190.04,24.71,24.400000000000002,24.23,24.03,23.85,23.66,23.46,23.28,22.900000000000002,N/A,N/A +2012,5,6,7,30,101300,100140,99020,88.46000000000001,0,6.87,7.48,7.62,7.7,7.76,7.79,7.82,7.83,7.86,184.8,184.86,184.89000000000001,184.93,184.99,185.05,185.12,185.18,185.36,24.6,24.28,24.1,23.91,23.72,23.53,23.330000000000002,23.150000000000002,22.76,N/A,N/A +2012,5,6,8,30,101290,100130,99010,89.46000000000001,0,6.7,7.3100000000000005,7.46,7.54,7.6000000000000005,7.640000000000001,7.67,7.69,7.72,192.74,193.02,193.20000000000002,193.39000000000001,193.58,193.76,193.95000000000002,194.13,194.56,24.61,24.28,24.11,23.91,23.72,23.54,23.34,23.16,22.78,N/A,N/A +2012,5,6,9,30,101290,100130,99010,88.27,0,6.22,6.79,6.93,7.01,7.07,7.1000000000000005,7.140000000000001,7.17,7.21,201.67000000000002,201.84,201.89000000000001,201.96,202.03,202.11,202.19,202.27,202.45000000000002,24.71,24.400000000000002,24.23,24.04,23.85,23.66,23.47,23.28,22.900000000000002,N/A,N/A +2012,5,6,10,30,101250,100090,98970,88.78,0,6.7,7.28,7.41,7.48,7.5200000000000005,7.55,7.57,7.58,7.6000000000000005,209.13,209.18,209.22,209.27,209.31,209.36,209.41,209.46,209.58,24.66,24.34,24.18,23.98,23.79,23.6,23.41,23.22,22.84,N/A,N/A +2012,5,6,11,30,101250,100090,98970,88.46000000000001,0,5.99,6.5200000000000005,6.65,6.72,6.78,6.8100000000000005,6.84,6.86,6.9,201.44,201.53,201.6,201.67000000000002,201.73000000000002,201.79,201.85,201.91,202.06,24.67,24.35,24.18,23.990000000000002,23.8,23.61,23.41,23.23,22.85,N/A,N/A +2012,5,6,12,30,101310,100150,99020,88.63,0,4.51,4.84,4.92,4.95,4.98,4.99,5,5,5,171.63,172.08,172.4,172.66,172.9,173.11,173.31,173.5,173.9,24.64,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.38,23.2,22.82,N/A,N/A +2012,5,6,13,30,101350,100190,99060,88.22,0,4.04,4.3500000000000005,4.42,4.46,4.49,4.5,4.5200000000000005,4.53,4.54,181.59,181.85,181.9,181.99,182.08,182.18,182.29,182.39000000000001,182.64000000000001,24.64,24.330000000000002,24.16,23.96,23.77,23.580000000000002,23.39,23.2,22.82,N/A,N/A +2012,5,6,14,30,101340,100180,99060,88.82000000000001,0,4.83,5.18,5.26,5.3,5.32,5.34,5.3500000000000005,5.3500000000000005,5.36,183.93,184.09,184.22,184.37,184.5,184.65,184.8,184.94,185.31,24.6,24.28,24.11,23.91,23.72,23.53,23.34,23.150000000000002,22.77,N/A,N/A +2012,5,6,15,30,101330,100170,99050,88.28,0,5.1000000000000005,5.48,5.5600000000000005,5.61,5.63,5.65,5.66,5.67,5.68,170.87,171.45000000000002,171.8,172.16,172.48,172.79,173.13,173.45000000000002,174.17000000000002,24.68,24.35,24.18,23.990000000000002,23.8,23.61,23.42,23.240000000000002,22.86,N/A,N/A +2012,5,6,16,30,101390,100230,99100,89.26,0,5.28,5.69,5.8,5.8500000000000005,5.9,5.93,5.95,5.97,6,160.52,161.05,161.32,161.59,161.83,162.06,162.3,162.53,162.99,24.71,24.37,24.2,24,23.81,23.62,23.43,23.240000000000002,22.86,N/A,N/A +2012,5,6,17,30,101400,100240,99110,86.47,0,5.51,5.9,5.98,6,6.0200000000000005,6.0200000000000005,6.01,6,5.97,171.67000000000002,171.94,172.04,172.14000000000001,172.25,172.35,172.46,172.56,172.79,24.8,24.46,24.29,24.09,23.900000000000002,23.71,23.52,23.34,22.95,N/A,N/A +2012,5,6,18,30,101380,100220,99090,87.96000000000001,0,5.26,5.64,5.71,5.75,5.7700000000000005,5.79,5.8,5.8,5.8,158.78,158.85,158.94,159.07,159.21,159.35,159.5,159.66,160.04,24.7,24.35,24.18,23.98,23.78,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A +2012,5,6,19,30,101350,100190,99070,88.98,0,6.3,6.88,7.0200000000000005,7.11,7.18,7.22,7.25,7.2700000000000005,7.3,158.97,158.98,159.03,159.08,159.13,159.18,159.22,159.27,159.36,24.79,24.45,24.28,24.080000000000002,23.89,23.7,23.5,23.32,22.93,N/A,N/A +2012,5,6,20,30,101320,100160,99040,88.8,0,6.390000000000001,6.95,7.08,7.140000000000001,7.19,7.21,7.23,7.25,7.25,163.94,163.79,163.79,163.82,163.85,163.89000000000001,163.94,163.99,164.12,24.72,24.39,24.22,24.02,23.830000000000002,23.64,23.45,23.26,22.88,N/A,N/A +2012,5,6,21,30,101290,100130,99000,87.52,0,6.63,7.19,7.3100000000000005,7.37,7.41,7.43,7.44,7.45,7.44,164.03,164.36,164.5,164.62,164.73,164.82,164.9,164.98,165.12,24.7,24.38,24.2,24,23.81,23.63,23.43,23.240000000000002,22.86,N/A,N/A +2012,5,6,22,30,101200,100040,98920,85.83,0,7.46,8.16,8.33,8.42,8.48,8.52,8.55,8.58,8.620000000000001,171.31,171.57,171.74,171.93,172.11,172.29,172.5,172.69,173.19,24.75,24.45,24.28,24.09,23.900000000000002,23.72,23.53,23.35,22.98,N/A,N/A +2012,5,6,23,30,101200,100040,98920,85.93,0,7.09,7.76,7.930000000000001,8.02,8.08,8.11,8.13,8.14,8.120000000000001,173.47,173.18,173.09,173.06,173.04,173.04,173.06,173.08,173.17000000000002,24.79,24.48,24.310000000000002,24.11,23.92,23.73,23.54,23.35,22.97,N/A,N/A +2012,5,7,0,30,101160,100000,98880,87.10000000000001,0,6.53,7.1000000000000005,7.22,7.28,7.32,7.32,7.32,7.3100000000000005,7.2700000000000005,177.62,177.56,177.59,177.64000000000001,177.70000000000002,177.76,177.84,177.9,178.07,24.67,24.35,24.18,23.98,23.79,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A +2012,5,7,1,30,101260,100100,98980,86.79,0,4.34,4.67,4.76,4.8100000000000005,4.8500000000000005,4.87,4.88,4.89,4.9,189.68,189.28,189.12,189.01,188.95000000000002,188.92000000000002,188.93,188.96,189.09,24.650000000000002,24.34,24.17,23.97,23.78,23.59,23.39,23.2,22.82,N/A,N/A +2012,5,7,2,30,101340,100180,99050,82.06,0,3.13,3.35,3.39,3.41,3.42,3.42,3.42,3.42,3.42,233.32,232.8,232.59,232.44,232.31,232.20000000000002,232.09,232,231.82,24.86,24.57,24.400000000000002,24.21,24.02,23.84,23.64,23.46,23.07,N/A,N/A +2012,5,7,3,30,101300,100140,99020,81.03,0,0.99,1.01,1.01,1,0.99,0.98,0.97,0.97,0.9500000000000001,235.32,235.73000000000002,235.97,236.21,236.45000000000002,236.68,236.95000000000002,237.21,237.89000000000001,24.77,24.47,24.3,24.11,23.92,23.740000000000002,23.54,23.36,22.98,N/A,N/A +2012,5,7,4,30,101260,100100,98980,83.69,0,4.88,5.19,5.21,5.19,5.17,5.15,5.12,5.08,5,139.13,139.5,139.55,139.71,139.92000000000002,140.14000000000001,140.61,141.1,144.12,24.62,24.3,24.13,23.94,23.75,23.57,23.38,23.22,22.93,N/A,N/A +2012,5,7,5,30,101200,100040,98910,84.55,0,5.74,6.17,6.2700000000000005,6.3100000000000005,6.33,6.34,6.34,6.34,6.32,169.02,169.07,169.13,169.21,169.32,169.43,169.58,169.73,170.16,24.560000000000002,24.240000000000002,24.07,23.88,23.69,23.5,23.31,23.13,22.75,N/A,N/A +2012,5,7,6,30,101230,100070,98950,85.61,0,4.34,4.64,4.71,4.74,4.76,4.7700000000000005,4.78,4.78,4.79,178.62,178.71,178.92000000000002,179.12,179.31,179.51,179.73,179.93,180.47,24.52,24.2,24.03,23.830000000000002,23.64,23.45,23.26,23.080000000000002,22.7,N/A,N/A +2012,5,7,7,30,101200,100040,98910,84.64,0,4.36,4.66,4.72,4.75,4.78,4.79,4.8,4.8100000000000005,4.82,174.23,174.5,174.65,174.82,174.98,175.15,175.33,175.51,175.97,24.51,24.19,24.02,23.82,23.63,23.45,23.25,23.07,22.69,N/A,N/A +2012,5,7,8,30,101180,100020,98900,84.47,0,4.73,5.04,5.1000000000000005,5.13,5.14,5.15,5.15,5.15,5.14,180.68,180.93,181.08,181.24,181.4,181.56,181.75,181.94,182.44,24.5,24.17,24,23.8,23.61,23.42,23.23,23.05,22.66,N/A,N/A +2012,5,7,9,30,101180,100020,98890,86.98,0,5.19,5.57,5.65,5.69,5.71,5.73,5.74,5.75,5.76,191.31,191.49,191.63,191.77,191.91,192.04,192.20000000000002,192.34,192.74,24.48,24.150000000000002,23.98,23.78,23.59,23.400000000000002,23.21,23.02,22.64,N/A,N/A +2012,5,7,10,30,101160,100000,98880,86.26,0,4.5200000000000005,4.82,4.87,4.9,4.91,4.92,4.92,4.92,4.91,189.67000000000002,189.79,189.87,189.97,190.08,190.19,190.32,190.45000000000002,190.8,24.5,24.17,24,23.8,23.61,23.42,23.23,23.05,22.66,N/A,N/A +2012,5,7,11,30,101150,99990,98870,88.59,0,4.19,4.44,4.48,4.49,4.48,4.48,4.46,4.45,4.41,178.32,178.48,178.67000000000002,178.84,179.01,179.16,179.34,179.51,179.95000000000002,24.42,24.080000000000002,23.91,23.71,23.53,23.34,23.14,22.96,22.580000000000002,N/A,N/A +2012,5,7,12,30,101160,100000,98880,89.7,0,4.36,4.63,4.69,4.71,4.72,4.73,4.73,4.73,4.72,176.94,177.15,177.29,177.43,177.57,177.70000000000002,177.86,178.01,178.36,24.39,24.05,23.88,23.68,23.490000000000002,23.3,23.1,22.92,22.54,N/A,N/A +2012,5,7,13,30,101190,100030,98910,90.67,0,5.11,5.48,5.55,5.6000000000000005,5.63,5.65,5.66,5.67,5.69,180.77,180.83,180.8,180.76,180.73,180.70000000000002,180.69,180.68,180.70000000000002,24.47,24.14,23.96,23.76,23.57,23.38,23.18,22.990000000000002,22.61,N/A,N/A +2012,5,7,14,30,101250,100090,98970,89.02,0,4.28,4.48,4.5,4.5,4.49,4.47,4.45,4.43,4.38,176.68,177,177.39000000000001,177.94,178.57,179.29,180.38,181.55,185.64000000000001,24.580000000000002,24.26,24.09,23.900000000000002,23.71,23.53,23.35,23.17,22.84,N/A,N/A +2012,5,7,15,30,101280,100120,99000,89.66,0,4.63,4.91,4.96,4.96,4.96,4.95,4.93,4.91,4.87,180.27,180.48,180.54,180.61,180.68,180.76,180.86,180.96,181.25,24.62,24.29,24.12,23.92,23.740000000000002,23.55,23.36,23.18,22.830000000000002,N/A,N/A +2012,5,7,16,30,101280,100120,99000,88.63,0,4.79,5.1000000000000005,5.16,5.18,5.19,5.19,5.19,5.18,5.15,179.20000000000002,179.78,180.14000000000001,180.52,180.87,181.21,181.59,181.95000000000002,182.81,24.75,24.41,24.23,24.03,23.85,23.66,23.46,23.28,22.900000000000002,N/A,N/A +2012,5,7,17,30,101300,100140,99020,87.54,0,4.23,4.49,4.54,4.5600000000000005,4.57,4.58,4.58,4.58,4.58,180.8,181.05,181.19,181.33,181.46,181.59,181.73,181.86,182.19,24.86,24.51,24.34,24.14,23.95,23.76,23.56,23.38,22.990000000000002,N/A,N/A +2012,5,7,18,30,101300,100140,99020,87.62,0,4.48,4.74,4.79,4.8,4.8,4.8,4.79,4.7700000000000005,4.74,172.89000000000001,173.02,173.14000000000001,173.29,173.44,173.61,173.83,174.04,174.62,24.96,24.61,24.43,24.240000000000002,24.05,23.86,23.66,23.48,23.1,N/A,N/A +2012,5,7,19,30,101270,100110,98990,88.16,0,4.57,4.83,4.87,4.87,4.87,4.86,4.84,4.82,4.7700000000000005,187.88,187.43,187.14000000000001,186.82,186.51,186.20000000000002,185.86,185.54,184.79,25.1,24.75,24.580000000000002,24.38,24.19,24,23.8,23.62,23.240000000000002,N/A,N/A +2012,5,7,20,30,101230,100070,98950,89.37,0,5.36,5.76,5.86,5.92,5.95,5.98,5.99,6.01,6.0200000000000005,158.4,159.05,159.53,159.99,160.41,160.79,161.18,161.54,162.3,25.12,24.78,24.61,24.41,24.22,24.03,23.84,23.650000000000002,23.27,N/A,N/A +2012,5,7,21,30,101140,99990,98870,89.37,0,5.8100000000000005,6.23,6.3100000000000005,6.33,6.34,6.33,6.32,6.3100000000000005,6.28,174.8,175.02,175.09,175.22,175.37,175.55,175.78,176.02,176.72,24.93,24.61,24.44,24.240000000000002,24.05,23.87,23.67,23.490000000000002,23.13,N/A,N/A +2012,5,7,22,30,101110,99960,98840,89.42,0,5.15,5.53,5.59,5.62,5.63,5.63,5.63,5.62,5.6000000000000005,151.9,152.33,152.6,152.87,153.12,153.36,153.62,153.86,154.42000000000002,24.93,24.61,24.44,24.240000000000002,24.05,23.86,23.67,23.48,23.1,N/A,N/A +2012,5,7,23,30,101070,99910,98790,88.81,0,6.13,6.61,6.71,6.75,6.7700000000000005,6.78,6.78,6.7700000000000005,6.75,149.06,149.03,149.06,149.09,149.12,149.15,149.20000000000002,149.24,149.36,24.91,24.6,24.43,24.23,24.04,23.85,23.66,23.48,23.09,N/A,N/A +2012,5,8,0,30,101060,99910,98790,88.76,0,5.09,5.5,5.58,5.63,5.65,5.66,5.67,5.67,5.66,160.63,160.77,160.77,160.79,160.8,160.81,160.83,160.85,160.88,24.87,24.560000000000002,24.39,24.2,24.01,23.82,23.63,23.44,23.06,N/A,N/A +2012,5,8,1,30,101060,99910,98790,89.28,0,4.89,5.26,5.33,5.37,5.39,5.4,5.41,5.41,5.4,164.79,164.92000000000002,164.9,164.87,164.83,164.78,164.72,164.66,164.49,24.830000000000002,24.52,24.35,24.150000000000002,23.96,23.78,23.580000000000002,23.400000000000002,23.02,N/A,N/A +2012,5,8,2,30,101100,99950,98830,89.44,0,4.74,5.08,5.15,5.18,5.19,5.19,5.19,5.18,5.15,167.35,167.46,167.49,167.5,167.52,167.54,167.55,167.56,167.58,24.76,24.45,24.28,24.080000000000002,23.900000000000002,23.71,23.52,23.330000000000002,22.95,N/A,N/A +2012,5,8,3,30,101150,99990,98870,89.69,0,4.61,4.93,5,5.03,5.04,5.05,5.05,5.04,5.03,156.85,156.83,156.92000000000002,156.99,157.05,157.1,157.15,157.20000000000002,157.28,24.740000000000002,24.42,24.25,24.05,23.86,23.67,23.48,23.29,22.91,N/A,N/A +2012,5,8,4,30,101170,100010,98890,90.13,0,3.84,4.1,4.16,4.18,4.19,4.19,4.19,4.19,4.18,146.89000000000001,146.77,146.95000000000002,147.14000000000001,147.32,147.51,147.71,147.91,148.4,24.68,24.36,24.19,23.990000000000002,23.81,23.62,23.42,23.240000000000002,22.86,N/A,N/A +2012,5,8,5,30,101170,100010,98890,87.31,0,4.78,5.13,5.18,5.19,5.19,5.17,5.15,5.13,5.0600000000000005,161.93,161.74,161.64000000000001,161.53,161.42000000000002,161.32,161.22,161.12,160.93,24.76,24.45,24.27,24.080000000000002,23.89,23.7,23.5,23.32,22.93,N/A,N/A +2012,5,8,6,30,101270,100110,98990,87.58,0,3.56,3.72,3.74,3.73,3.71,3.69,3.66,3.63,3.54,171.66,171.99,172.23,172.5,172.74,172.99,173.27,173.54,174.23,24.71,24.39,24.23,24.04,23.85,23.67,23.48,23.3,22.94,N/A,N/A +2012,5,8,7,30,101280,100120,99000,87.83,0,1.73,1.81,1.82,1.83,1.83,1.82,1.82,1.81,1.79,173.01,173.68,174.02,174.54,175.09,175.70000000000002,176.44,177.19,179.1,24.69,24.38,24.21,24.01,23.81,23.63,23.43,23.240000000000002,22.86,N/A,N/A +2012,5,8,8,30,101260,100100,98970,84.44,0,1.33,1.22,1.1400000000000001,1.06,0.98,0.91,0.8300000000000001,0.76,0.62,93.7,94.44,94.94,95.23,95.13,94.82000000000001,93.72,92.52,85.73,24.650000000000002,24.330000000000002,24.16,23.96,23.77,23.580000000000002,23.38,23.2,22.81,N/A,N/A +2012,5,8,9,30,101250,100090,98960,82.57000000000001,0,1.4000000000000001,1.44,1.44,1.44,1.45,1.46,1.48,1.5,1.56,39.49,37.72,36.61,35.35,34.09,32.8,31.330000000000002,29.88,26.59,24.64,24.330000000000002,24.16,23.96,23.78,23.59,23.400000000000002,23.21,22.84,N/A,N/A +2012,5,8,10,30,101260,100100,98980,84.89,0,2.6,2.72,2.73,2.74,2.74,2.74,2.74,2.73,2.73,18.080000000000002,18.19,18.2,18.23,18.25,18.28,18.35,18.41,18.64,24.5,24.17,24,23.8,23.61,23.42,23.23,23.04,22.66,N/A,N/A +2012,5,8,11,30,101240,100080,98950,84.8,0,2.65,2.7800000000000002,2.8000000000000003,2.81,2.81,2.81,2.81,2.81,2.8000000000000003,31.36,31.66,31.77,31.89,32,32.09,32.19,32.27,32.46,24.41,24.080000000000002,23.91,23.71,23.52,23.330000000000002,23.14,22.95,22.57,N/A,N/A +2012,5,8,12,30,101250,100090,98960,90.99,0,5.55,5.86,5.9,5.89,5.87,5.83,5.79,5.74,5.63,45.660000000000004,45.980000000000004,46.14,46.300000000000004,46.46,46.63,46.83,47.02,47.5,23.86,23.48,23.3,23.1,22.91,22.72,22.52,22.330000000000002,21.96,N/A,N/A +2012,5,8,13,30,101260,100100,98970,92.07000000000001,0,5.07,5.34,5.38,5.38,5.37,5.3500000000000005,5.3100000000000005,5.2700000000000005,5.18,50.7,51.550000000000004,52.09,52.65,53.19,53.71,54.29,54.83,56.1,23.53,23.13,22.95,22.75,22.56,22.37,22.18,22,21.62,N/A,N/A +2012,5,8,14,30,101300,100130,99010,91.69,0,4.45,4.63,4.65,4.64,4.62,4.6000000000000005,4.57,4.54,4.46,45.69,47.31,48.35,49.35,50.27,51.14,52.02,52.83,54.52,23.38,23,22.82,22.62,22.43,22.25,22.05,21.87,21.5,N/A,N/A +2012,5,8,15,30,101320,100150,99020,97.81,0,5.83,6.05,6.05,5.98,5.9,5.8,5.68,5.5600000000000005,5.18,36.24,36.81,37.25,37.78,38.4,39.07,40.09,41.12,46.21,22.64,22.21,22.02,21.830000000000002,21.68,21.57,21.45,21.34,21.11,N/A,N/A +2012,5,8,16,30,101340,100180,99050,93.99,0,4.25,4.42,4.43,4.42,4.39,4.36,4.32,4.28,4.13,40.09,41.27,42.1,43.02,43.99,45.01,46.38,47.74,53.19,23.11,22.72,22.54,22.35,22.17,21.990000000000002,21.81,21.64,21.31,N/A,N/A +2012,5,8,17,30,101320,100160,99030,89.72,0,4.1,4.3100000000000005,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,4.29,61.14,61.730000000000004,62.1,62.49,62.85,63.21,63.61,63.99,64.92,23.66,23.28,23.09,22.89,22.7,22.51,22.32,22.13,21.75,N/A,N/A +2012,5,8,18,30,101340,100180,99050,86.09,0,2.57,2.68,2.7,2.7,2.7,2.7,2.7,2.7,2.68,99.96000000000001,100.35000000000001,100.61,100.93,101.3,101.72,102.3,102.91,105.34,24.16,23.81,23.63,23.44,23.25,23.07,22.89,22.71,22.38,N/A,N/A +2012,5,8,19,30,101280,100120,99000,84.33,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,3,112.54,113.24000000000001,113.58,114.01,114.47,114.98,115.66,116.37,118.74000000000001,24.46,24.11,23.93,23.740000000000002,23.55,23.37,23.18,23.01,22.66,N/A,N/A +2012,5,8,20,30,101240,100080,98960,86.96000000000001,0,4.58,4.82,4.86,4.86,4.8500000000000005,4.84,4.82,4.8,4.75,143.9,144.54,144.84,145.17000000000002,145.52,145.89000000000001,146.34,146.78,148.02,24.6,24.23,24.05,23.85,23.67,23.48,23.29,23.12,22.76,N/A,N/A +2012,5,8,21,30,101220,100060,98940,86.11,0,5.11,5.42,5.47,5.48,5.48,5.48,5.47,5.45,5.42,172.12,172.45000000000002,172.61,172.84,173.1,173.4,173.8,174.22,175.83,24.84,24.5,24.330000000000002,24.13,23.95,23.76,23.57,23.39,23.04,N/A,N/A +2012,5,8,22,30,101180,100020,98900,84.74,0,4.29,4.57,4.61,4.61,4.61,4.6000000000000005,4.58,4.5600000000000005,4.51,179.36,179.62,179.74,179.88,180.02,180.18,180.38,180.59,181.25,25.03,24.72,24.55,24.35,24.16,23.97,23.78,23.6,23.23,N/A,N/A +2012,5,8,23,30,101200,100050,98930,84.73,0,4.13,4.4,4.46,4.47,4.47,4.46,4.45,4.43,4.38,196.55,196.89000000000001,197.19,197.51,197.83,198.16,198.55,198.92000000000002,199.94,25.1,24.8,24.63,24.43,24.25,24.060000000000002,23.87,23.69,23.31,N/A,N/A +2012,5,9,0,30,101210,100050,98930,86.09,0,3.84,4.09,4.14,4.15,4.15,4.15,4.14,4.13,4.1,221.25,221.57,221.73000000000002,221.94,222.16,222.42000000000002,222.76,223.12,224.3,24.98,24.68,24.52,24.32,24.13,23.94,23.75,23.57,23.2,N/A,N/A +2012,5,9,1,30,101210,100050,98930,87.11,0,3.95,4.2,4.24,4.26,4.2700000000000005,4.2700000000000005,4.2700000000000005,4.26,4.25,258.34000000000003,259.07,259.41,259.77,260.11,260.47,260.87,261.26,262.27,24.86,24.55,24.38,24.18,24,23.81,23.62,23.43,23.06,N/A,N/A +2012,5,9,2,30,101250,100090,98970,84.41,0,4.44,4.74,4.79,4.8100000000000005,4.82,4.82,4.82,4.8100000000000005,4.78,305.47,306.31,306.51,306.64,306.73,306.8,306.86,306.90000000000003,306.93,24.95,24.64,24.47,24.28,24.09,23.900000000000002,23.71,23.52,23.13,N/A,N/A +2012,5,9,3,30,101280,100120,98990,83.11,0,5.78,6.140000000000001,6.22,6.24,6.25,6.24,6.23,6.21,6.15,350.40000000000003,350.38,350.41,350.45,350.48,350.52,350.58,350.64,350.79,24.04,23.69,23.51,23.31,23.13,22.95,22.76,22.59,22.240000000000002,N/A,N/A +2012,5,9,4,30,101260,100100,98970,83.43,0,4.94,5.26,5.32,5.3500000000000005,5.37,5.39,5.43,5.48,5.84,2.69,2.89,2.99,3.1,3.22,3.35,3.5500000000000003,3.7800000000000002,5.0200000000000005,24.150000000000002,23.8,23.63,23.43,23.25,23.07,22.88,22.71,22.400000000000002,N/A,N/A +2012,5,9,5,30,101280,100120,98990,81.78,0,5.65,6.01,6.09,6.13,6.17,6.22,6.33,6.45,7.9,5.22,5.45,5.5600000000000005,5.72,5.91,6.140000000000001,6.53,6.97,9.44,23.92,23.56,23.39,23.2,23.02,22.85,22.69,22.54,22.5,N/A,N/A +2012,5,9,6,30,101310,100140,99020,81.84,0,6.6000000000000005,7.0600000000000005,7.16,7.2,7.24,7.2700000000000005,7.3100000000000005,7.36,7.65,359.81,359.83,359.87,359.93,359.99,0.07,0.18,0.29,0.77,23.990000000000002,23.62,23.45,23.25,23.06,22.88,22.7,22.52,22.2,N/A,N/A +2012,5,9,7,30,101340,100180,99040,82.21000000000001,0,7.49,8.040000000000001,8.17,8.23,8.28,8.33,8.41,8.5,9.06,0.44,0.51,0.63,0.77,0.9400000000000001,1.12,1.41,1.72,3.36,23.67,23.27,23.1,22.91,22.73,22.55,22.38,22.22,22,N/A,N/A +2012,5,9,8,30,101340,100180,99050,84.56,0,7.82,8.38,8.51,8.55,8.58,8.59,8.6,8.61,8.67,357.11,357.33,357.48,357.64,357.82,358.03000000000003,358.3,358.58,359.58,23.57,23.16,22.98,22.77,22.59,22.400000000000002,22.22,22.04,21.7,N/A,N/A +2012,5,9,9,30,101340,100180,99050,85.18,0,6.72,7.19,7.29,7.34,7.38,7.390000000000001,7.41,7.43,7.48,17.86,18.05,18.14,18.23,18.330000000000002,18.42,18.54,18.66,19.01,23.53,23.13,22.95,22.740000000000002,22.55,22.37,22.17,21.990000000000002,21.62,N/A,N/A +2012,5,9,10,30,101390,100230,99090,85.98,0,5.98,6.34,6.41,6.43,6.44,6.43,6.42,6.41,6.38,21.03,21.2,21.330000000000002,21.45,21.57,21.68,21.81,21.93,22.240000000000002,23.36,22.96,22.77,22.56,22.37,22.19,21.990000000000002,21.81,21.44,N/A,N/A +2012,5,9,11,30,101480,100310,99170,86.27,0,5.29,5.59,5.64,5.66,5.66,5.66,5.64,5.63,5.59,359.61,359.72,359.93,0.14,0.32,0.49,0.68,0.86,1.29,23.150000000000002,22.740000000000002,22.55,22.35,22.150000000000002,21.97,21.77,21.59,21.21,N/A,N/A +2012,5,9,12,30,101460,100290,99150,89.39,0,6.03,6.37,6.43,6.45,6.44,6.43,6.41,6.390000000000001,6.34,6.61,6.7700000000000005,6.9,7.05,7.2,7.36,7.5600000000000005,7.76,8.290000000000001,22.5,22.06,21.86,21.66,21.47,21.28,21.09,20.91,20.53,N/A,N/A +2012,5,9,13,30,101420,100250,99110,88.19,0,5.48,5.79,5.8500000000000005,5.87,5.87,5.88,5.88,5.87,5.88,33.88,34.31,34.47,34.660000000000004,34.84,35.03,35.26,35.480000000000004,36.07,22.580000000000002,22.150000000000002,21.96,21.76,21.57,21.38,21.19,21.01,20.64,N/A,N/A +2012,5,9,14,30,101480,100310,99180,84.51,0,6.390000000000001,6.7700000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,6.84,13.61,13.85,14.02,14.19,14.35,14.52,14.69,14.86,15.26,22.94,22.51,22.32,22.12,21.92,21.73,21.54,21.36,20.990000000000002,N/A,N/A +2012,5,9,15,30,101490,100320,99180,81.27,0,5.09,5.39,5.45,5.49,5.51,5.5200000000000005,5.53,5.54,5.55,15.83,15.91,15.88,15.84,15.82,15.8,15.780000000000001,15.76,15.73,23.13,22.73,22.54,22.330000000000002,22.14,21.95,21.75,21.57,21.19,N/A,N/A +2012,5,9,16,30,101470,100310,99170,77.89,0,2.92,3.08,3.13,3.17,3.2,3.23,3.27,3.31,3.39,22.05,21.84,21.75,21.650000000000002,21.55,21.45,21.32,21.19,20.900000000000002,23.7,23.34,23.16,22.96,22.77,22.580000000000002,22.39,22.21,21.84,N/A,N/A +2012,5,9,17,30,101460,100300,99170,76.19,0,0.51,0.54,0.56,0.5700000000000001,0.59,0.61,0.64,0.66,0.73,50.910000000000004,47.01,43.75,40.58,37.76,35.03,32.33,29.75,24.37,24.080000000000002,23.740000000000002,23.56,23.36,23.17,22.98,22.79,22.6,22.22,N/A,N/A +2012,5,9,18,30,101430,100260,99140,76.21000000000001,0,0.8,0.78,0.75,0.72,0.6900000000000001,0.66,0.62,0.59,0.52,183.65,186.43,188.04,190.1,192.35,194.89000000000001,198.44,202.11,214.86,24.310000000000002,23.96,23.78,23.580000000000002,23.39,23.2,23.02,22.830000000000002,22.47,N/A,N/A +2012,5,9,19,30,101400,100240,99110,76.03,0,1.95,1.97,1.94,1.8900000000000001,1.84,1.79,1.72,1.6500000000000001,1.43,192.99,193.84,194.51,195.43,196.5,197.78,199.79,201.93,212.86,24.580000000000002,24.22,24.05,23.85,23.67,23.48,23.3,23.12,22.78,N/A,N/A +2012,5,9,20,30,101350,100190,99060,75.42,0,3.16,3.22,3.19,3.13,3.06,2.99,2.91,2.82,2.57,170.06,170.25,170.39000000000001,170.57,170.77,171,171.34,171.71,173.31,24.78,24.43,24.25,24.05,23.86,23.68,23.490000000000002,23.31,22.95,N/A,N/A +2012,5,9,21,30,101290,100130,99010,73.89,0,4.3100000000000005,4.4,4.34,4.21,4.07,3.9,3.63,3.36,2.2800000000000002,172.81,173.09,173.38,173.76,174.25,174.84,175.96,177.14000000000001,188.07,25.04,24.71,24.55,24.36,24.19,24.02,23.85,23.7,23.45,N/A,N/A +2012,5,9,22,30,101250,100090,98970,72.2,0,4.46,4.63,4.59,4.48,4.32,4.11,3.5,2.88,1.49,154.01,153.87,153.70000000000002,153.42000000000002,152.91,152.20000000000002,149.38,146.42000000000002,136.46,25.27,24.98,24.830000000000002,24.650000000000002,24.5,24.37,24.34,24.36,24.32,N/A,N/A +2012,5,9,23,30,101250,100090,98970,74.52,0,4.51,4.71,4.69,4.63,4.57,4.51,3.64,2.74,1.9000000000000001,166.88,166.86,166.83,166.78,166.75,166.72,163.5,160.08,155.48,25.26,24.97,24.810000000000002,24.62,24.45,24.28,24.310000000000002,24.43,24.45,N/A,N/A +2012,5,10,0,30,101260,100100,98980,74.39,0,4.44,4.68,4.7,4.67,4.63,4.59,4.55,4.51,2.54,180.18,180.25,180.22,180.20000000000002,180.20000000000002,180.20000000000002,180.25,180.3,178.34,25.22,24.94,24.78,24.580000000000002,24.400000000000002,24.21,24.02,23.84,23.94,N/A,N/A +2012,5,10,1,30,101240,100080,98960,75.68,0,4.65,4.94,4.98,4.97,4.96,4.93,4.89,4.8500000000000005,4.72,184.64000000000001,184.52,184.44,184.37,184.3,184.21,184.11,184.02,183.72,25.11,24.810000000000002,24.650000000000002,24.45,24.26,24.080000000000002,23.89,23.71,23.35,N/A,N/A +2012,5,10,2,30,101280,100120,99000,74.24,0,3.36,3.5100000000000002,3.52,3.49,3.46,3.42,3.36,3.3000000000000003,2.92,192.72,192.17000000000002,191.8,191.36,190.87,190.31,189.36,188.33,177.6,25.16,24.87,24.71,24.52,24.34,24.16,23.98,23.81,23.6,N/A,N/A +2012,5,10,3,30,101270,100110,98990,73.92,0,1.57,1.6,1.59,1.56,1.54,1.5,1.45,1.3900000000000001,1.01,198.37,197.56,197.03,196.44,195.83,195.18,194.27,193.38,172.76,25.080000000000002,24.79,24.62,24.43,24.25,24.07,23.89,23.72,23.51,N/A,N/A +2012,5,10,4,30,101270,100110,98990,73.60000000000001,0,0.64,0.64,0.62,0.6,0.5700000000000001,0.54,0.64,0.8200000000000001,1.98,286.16,289.99,293.11,297.96,306.69,318.52,340.41,10.66,42.03,25.060000000000002,24.77,24.62,24.43,24.27,24.11,24,23.91,23.85,N/A,N/A +2012,5,10,5,30,101270,100110,98990,74.44,0,1.72,1.79,1.8,1.79,1.79,1.79,1.79,1.78,1.77,335.99,337.49,338.36,339.3,340.19,341.07,342.05,343.01,346.04,25.03,24.72,24.560000000000002,24.36,24.18,23.990000000000002,23.79,23.61,23.240000000000002,N/A,N/A +2012,5,10,6,30,101280,100120,98990,73.11,0,2.61,2.7600000000000002,2.8000000000000003,2.82,2.84,2.86,2.89,2.91,2.97,15.02,16.12,16.77,17.47,18.17,18.89,19.73,20.55,22.650000000000002,25.150000000000002,24.84,24.67,24.47,24.28,24.1,23.91,23.73,23.36,N/A,N/A +2012,5,10,7,30,101290,100130,99010,75.38,0,3.75,3.99,4.05,4.08,4.11,4.13,4.14,4.16,4.18,41.47,41.83,41.96,42.1,42.230000000000004,42.35,42.49,42.62,42.92,25.13,24.8,24.63,24.43,24.240000000000002,24.05,23.85,23.67,23.28,N/A,N/A +2012,5,10,8,30,101250,100090,98970,73.99,0,4.54,4.86,4.93,4.97,5,5.0200000000000005,5.04,5.0600000000000005,5.09,62.25,62.59,62.81,63,63.2,63.39,63.6,63.79,64.24,25.18,24.85,24.68,24.48,24.29,24.1,23.91,23.72,23.34,N/A,N/A +2012,5,10,9,30,101270,100110,98990,71.25,0,6.28,6.82,6.97,7.05,7.11,7.16,7.2,7.23,7.28,80.83,81.11,81.24,81.36,81.47,81.58,81.68,81.77,81.97,25.43,25.12,24.94,24.75,24.560000000000002,24.37,24.17,23.990000000000002,23.6,N/A,N/A +2012,5,10,10,30,101270,100110,98980,70.82000000000001,0,7.640000000000001,8.3,8.46,8.53,8.58,8.6,8.620000000000001,8.620000000000001,8.620000000000001,84.9,85.04,85.14,85.24,85.33,85.42,85.5,85.57000000000001,85.72,25.490000000000002,25.18,25.01,24.8,24.61,24.43,24.23,24.04,23.66,N/A,N/A +2012,5,10,11,30,101280,100120,99000,71.99,0,7.96,8.65,8.8,8.88,8.94,8.97,8.98,8.99,9,87,87.27,87.4,87.54,87.66,87.78,87.9,88.01,88.23,25.240000000000002,24.900000000000002,24.73,24.53,24.330000000000002,24.14,23.95,23.76,23.37,N/A,N/A +2012,5,10,12,30,101280,100120,99000,73.60000000000001,0,7.15,7.7700000000000005,7.92,8,8.06,8.1,8.13,8.15,8.18,89.69,90.08,90.3,90.53,90.73,90.93,91.12,91.3,91.68,25.2,24.86,24.69,24.490000000000002,24.29,24.1,23.91,23.72,23.34,N/A,N/A +2012,5,10,13,30,101310,100150,99030,72.13,0,7.68,8.36,8.540000000000001,8.63,8.700000000000001,8.74,8.78,8.8,8.84,96.41,96.7,96.85000000000001,97,97.13,97.25,97.38,97.5,97.73,25.32,24.990000000000002,24.82,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A +2012,5,10,14,30,101300,100150,99020,74.02,0,7.94,8.64,8.81,8.91,8.97,9.01,9.040000000000001,9.06,9.09,100.33,100.58,100.78,100.97,101.14,101.3,101.46000000000001,101.61,101.91,25.310000000000002,24.97,24.8,24.6,24.41,24.22,24.02,23.830000000000002,23.45,N/A,N/A +2012,5,10,15,30,101320,100160,99030,72.18,0,7.03,7.61,7.75,7.8100000000000005,7.86,7.890000000000001,7.9,7.91,7.92,115.35000000000001,115.05,114.9,114.76,114.61,114.48,114.34,114.22,113.96000000000001,25.44,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A +2012,5,10,16,30,101320,100160,99040,73.89,0,7.01,7.59,7.72,7.79,7.83,7.86,7.88,7.890000000000001,7.9,109.56,109.64,109.69,109.72,109.74000000000001,109.75,109.76,109.77,109.78,25.39,25.060000000000002,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A +2012,5,10,17,30,101280,100130,99000,74.76,0,6.73,7.29,7.43,7.51,7.57,7.61,7.640000000000001,7.66,7.69,108.67,109.23,109.51,109.72,109.89,110.03,110.15,110.26,110.43,25.42,25.080000000000002,24.91,24.71,24.52,24.330000000000002,24.13,23.94,23.56,N/A,N/A +2012,5,10,18,30,101310,100150,99030,74.98,0,7.32,7.94,8.08,8.15,8.2,8.23,8.25,8.27,8.28,111.12,111.26,111.4,111.56,111.72,111.89,112.06,112.22,112.56,25.39,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.91,23.53,N/A,N/A +2012,5,10,19,30,101250,100100,98970,78.32000000000001,0,6.92,7.55,7.71,7.8,7.86,7.9,7.930000000000001,7.95,7.97,109.77,110.01,110.03,110.03,110.01,109.99000000000001,109.96000000000001,109.93,109.86,25.36,25.02,24.85,24.650000000000002,24.46,24.26,24.07,23.88,23.490000000000002,N/A,N/A +2012,5,10,20,30,101160,100000,98880,76.73,0,8.92,9.75,9.96,10.07,10.14,10.18,10.21,10.22,10.24,110.81,111,111.16,111.31,111.43,111.55,111.66,111.76,111.97,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.81,23.43,N/A,N/A +2012,5,10,21,30,101130,99980,98860,78.26,0,8.05,8.8,8.99,9.1,9.18,9.24,9.28,9.31,9.36,117.21000000000001,117.33,117.4,117.47,117.54,117.60000000000001,117.65,117.7,117.81,25.44,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A +2012,5,10,22,30,101030,99880,98760,81.18,0,8.69,9.52,9.73,9.85,9.93,9.98,10.03,10.06,10.11,110.04,110.28,110.43,110.57000000000001,110.7,110.83,110.95,111.08,111.33,25.400000000000002,25.060000000000002,24.89,24.68,24.490000000000002,24.3,24.11,23.92,23.54,N/A,N/A +2012,5,10,23,30,101030,99880,98760,82.74,0,9.56,10.49,10.75,10.89,10.98,11.040000000000001,11.08,11.11,11.13,114.4,114.37,114.35000000000001,114.3,114.26,114.2,114.14,114.09,113.96000000000001,25.37,25.04,24.86,24.650000000000002,24.46,24.27,24.07,23.89,23.5,N/A,N/A +2012,5,11,0,30,101010,99860,98740,83.82000000000001,0,8.4,9.23,9.47,9.61,9.71,9.8,9.86,9.92,10.01,122.79,122.89,122.89,122.88,122.87,122.86,122.85000000000001,122.84,122.81,25.330000000000002,25,24.830000000000002,24.62,24.43,24.240000000000002,24.05,23.86,23.48,N/A,N/A +2012,5,11,1,30,101000,99850,98730,82.92,0,8.05,8.81,9.040000000000001,9.16,9.25,9.3,9.34,9.38,9.41,119.53,119.23,119.24000000000001,119.31,119.38,119.46000000000001,119.56,119.67,119.91,25.580000000000002,25.26,25.1,24.89,24.71,24.51,24.32,24.13,23.75,N/A,N/A +2012,5,11,2,30,100980,99830,98710,82.78,0,9.040000000000001,9.870000000000001,10.07,10.17,10.24,10.290000000000001,10.32,10.34,10.38,126.28,126.33,126.42,126.49000000000001,126.57000000000001,126.64,126.72,126.8,127.04,25.61,25.29,25.12,24.93,24.740000000000002,24.560000000000002,24.37,24.19,23.830000000000002,N/A,N/A +2012,5,11,3,30,100960,99810,98690,83,0,9.88,10.950000000000001,11.22,11.38,11.49,11.57,11.620000000000001,11.66,11.72,131.92000000000002,132.15,132.27,132.38,132.48,132.56,132.64000000000001,132.71,132.86,25.68,25.36,25.18,24.98,24.79,24.61,24.41,24.22,23.84,N/A,N/A +2012,5,11,4,30,100930,99780,98660,83.94,0,9.56,10.540000000000001,10.790000000000001,10.93,11.03,11.1,11.14,11.18,11.22,134.97,135.03,135.04,135.04,135.04,135.03,135.02,135.01,134.99,25.6,25.28,25.11,24.91,24.72,24.53,24.34,24.150000000000002,23.78,N/A,N/A +2012,5,11,5,30,100980,99830,98710,85.58,0,7.79,8.66,8.91,9.08,9.21,9.31,9.38,9.450000000000001,9.56,159.96,159.70000000000002,159.53,159.4,159.3,159.21,159.14000000000001,159.08,159,25.67,25.36,25.2,25,24.82,24.63,24.44,24.26,23.88,N/A,N/A +2012,5,11,6,30,100960,99810,98700,82.41,0,8.3,9.11,9.31,9.42,9.5,9.55,9.59,9.61,9.63,153.01,153.18,153.24,153.29,153.32,153.35,153.37,153.39000000000001,153.42000000000002,25.67,25.38,25.21,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.89,N/A,N/A +2012,5,11,7,30,100980,99820,98700,85.64,85,6.19,7.05,7.21,7.34,7.43,7.51,7.5600000000000005,7.6000000000000005,7.65,154.57,155,154.70000000000002,154.45000000000002,154.15,153.89000000000001,153.61,153.35,152.8,25.04,24.73,24.53,24.36,24.150000000000002,23.97,23.78,23.59,23.22,N/A,N/A +2012,5,11,8,30,101070,99900,98760,88.84,2.2,6.41,6.49,6.390000000000001,6.19,5.96,5.69,5.3,4.92,3.93,37.87,38.47,38.95,39.62,40.49,41.59,43.92,46.37,55.34,21.830000000000002,21.38,21.2,21.03,20.88,20.75,20.66,20.59,20.69,N/A,N/A +2012,5,11,9,30,101050,99890,98760,89.76,0,5,5.1000000000000005,5.04,4.93,4.65,4.25,4,3.8200000000000003,3.52,63.870000000000005,64.67,65.44,66.99,76.60000000000001,92.41,101.83,108.28,120.91,22.73,22.35,22.19,22.03,22.12,22.42,22.6,22.72,22.54,N/A,N/A +2012,5,11,10,30,101030,99870,98740,85.92,0,6.6000000000000005,6.96,6.98,6.93,6.87,6.8,6.7,6.6000000000000005,6.32,97.11,97.9,98.23,98.68,99.19,99.76,100.63,101.52,105.83,23.64,23.23,23.05,22.85,22.67,22.490000000000002,22.3,22.14,21.81,N/A,N/A +2012,5,11,11,30,101010,99850,98730,88.10000000000001,0,6.04,6.36,6.36,6.3100000000000005,6.25,6.17,6.07,5.97,5.7,106.64,108.83,110.14,111.56,112.93,114.33,115.89,117.41,122.09,24.2,23.82,23.64,23.44,23.25,23.06,22.86,22.68,22.3,N/A,N/A +2012,5,11,12,30,101070,99910,98800,83.92,0.7000000000000001,6.96,7.59,7.73,7.8,7.8500000000000005,7.87,7.890000000000001,7.9,7.9,174.11,173.91,173.86,173.84,173.82,173.81,173.81,173.82,173.86,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.52,24.32,24.14,23.76,N/A,N/A +2012,5,11,13,30,101130,99970,98860,82.94,0,7.8,8.55,8.73,8.84,8.9,8.950000000000001,8.98,9,9.03,174.41,174.16,174.17000000000002,174.16,174.13,174.11,174.08,174.05,173.97,25.67,25.37,25.2,25.01,24.82,24.63,24.44,24.25,23.88,N/A,N/A +2012,5,11,14,30,101210,100060,98940,82.76,0,7.26,7.91,8.07,8.15,8.2,8.23,8.25,8.26,8.27,166.74,166.98,167.1,167.18,167.24,167.3,167.35,167.39000000000001,167.45000000000002,25.71,25.42,25.26,25.060000000000002,24.87,24.68,24.490000000000002,24.310000000000002,23.93,N/A,N/A +2012,5,11,15,30,101260,100110,98990,81.88,0,7.7,8.46,8.66,8.78,8.870000000000001,8.93,8.98,9.01,9.07,170.88,170.93,170.93,170.93,170.94,170.94,170.94,170.94,170.95000000000002,25.740000000000002,25.44,25.28,25.080000000000002,24.900000000000002,24.71,24.52,24.330000000000002,23.95,N/A,N/A +2012,5,11,16,30,101270,100110,98990,84.06,0,7.82,8.57,8.76,8.86,8.93,8.97,9,9.02,9.040000000000001,162.9,162.8,162.84,162.9,162.97,163.04,163.12,163.20000000000002,163.38,25.62,25.310000000000002,25.14,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A +2012,5,11,17,30,101280,100120,99000,83.88,0,7.3500000000000005,8.07,8.25,8.36,8.44,8.5,8.540000000000001,8.58,8.63,168.24,168.58,168.72,168.84,168.94,169.02,169.09,169.15,169.26,25.7,25.400000000000002,25.23,25.03,24.85,24.66,24.46,24.28,23.900000000000002,N/A,N/A +2012,5,11,18,30,101300,100140,99020,83.04,0,8.370000000000001,9.21,9.42,9.53,9.620000000000001,9.67,9.71,9.74,9.77,172.56,172.49,172.51,172.53,172.57,172.61,172.65,172.69,172.79,25.76,25.46,25.3,25.1,24.91,24.72,24.53,24.35,23.97,N/A,N/A +2012,5,11,19,30,101330,100180,99060,81.21000000000001,0,8.6,9.47,9.68,9.790000000000001,9.870000000000001,9.92,9.950000000000001,9.97,9.99,173.02,173.1,173.19,173.28,173.36,173.44,173.52,173.61,173.78,25.84,25.55,25.39,25.19,25.01,24.82,24.62,24.44,24.060000000000002,N/A,N/A +2012,5,11,20,30,101260,100100,98980,80.48,0,8.36,9.23,9.46,9.59,9.69,9.76,9.81,9.85,9.9,171.8,171.92000000000002,172,172.05,172.1,172.13,172.16,172.19,172.22,25.900000000000002,25.62,25.46,25.27,25.080000000000002,24.900000000000002,24.7,24.52,24.14,N/A,N/A +2012,5,11,21,30,101220,100070,98950,81.86,0,8.870000000000001,9.77,10.02,10.15,10.24,10.3,10.35,10.38,10.41,168.22,168.36,168.45000000000002,168.52,168.6,168.66,168.72,168.77,168.87,25.82,25.54,25.38,25.18,25,24.810000000000002,24.62,24.43,24.060000000000002,N/A,N/A +2012,5,11,22,30,101160,100010,98890,81.95,0,9.27,10.25,10.5,10.64,10.75,10.82,10.86,10.9,10.94,167.87,168,168.07,168.15,168.21,168.27,168.33,168.39000000000001,168.5,25.8,25.52,25.36,25.17,24.990000000000002,24.8,24.61,24.43,24.05,N/A,N/A +2012,5,11,23,30,101160,100010,98890,81.02,0,10.01,11.1,11.4,11.58,11.700000000000001,11.790000000000001,11.85,11.9,11.950000000000001,171.48,171.66,171.74,171.83,171.9,171.97,172.04,172.11,172.23,25.830000000000002,25.57,25.41,25.22,25.04,24.85,24.66,24.47,24.1,N/A,N/A +2012,5,12,0,30,101180,100030,98910,76.01,0,7.99,8.81,9.040000000000001,9.18,9.28,9.35,9.41,9.450000000000001,9.52,177.21,177.21,177.21,177.18,177.14000000000001,177.09,177.04,177,176.89000000000001,25.97,25.72,25.560000000000002,25.37,25.19,25.01,24.82,24.64,24.27,N/A,N/A +2012,5,12,1,30,101210,100050,98940,80.94,0,7.5600000000000005,8.36,8.59,8.74,8.84,8.92,8.98,9.03,9.09,162.36,162.59,162.77,162.91,163.03,163.12,163.21,163.28,163.42000000000002,25.86,25.6,25.45,25.26,25.080000000000002,24.89,24.7,24.51,24.14,N/A,N/A +2012,5,12,2,30,101350,100200,99080,79.45,0,5.86,6.48,6.66,6.78,6.88,6.95,7.01,7.07,7.140000000000001,170.53,170.51,170.51,170.52,170.55,170.57,170.61,170.63,170.71,25.990000000000002,25.73,25.57,25.38,25.2,25.01,24.82,24.63,24.25,N/A,N/A +2012,5,12,3,30,101360,100210,99090,81.05,0,6.12,6.640000000000001,6.75,6.8100000000000005,6.8500000000000005,6.87,6.890000000000001,6.91,6.93,182.56,183,183.16,183.29,183.4,183.5,183.58,183.65,183.76,25.900000000000002,25.63,25.48,25.28,25.1,24.92,24.73,24.54,24.17,N/A,N/A +2012,5,12,4,30,101420,100270,99150,79.98,0.4,6.7,7.32,7.46,7.54,7.58,7.61,7.63,7.640000000000001,7.640000000000001,212.21,211.84,211.71,211.67000000000002,211.65,211.67000000000002,211.71,211.76,211.89000000000001,26.01,25.76,25.6,25.400000000000002,25.22,25.04,24.85,24.66,24.29,N/A,N/A +2012,5,12,5,30,101350,100170,99030,89.82000000000001,200,9.82,10.32,10.35,10.31,10.25,10.19,10.1,9.99,9.5,15.88,12.4,10.85,9.120000000000001,7.11,5.17,2.62,0.19,354.28000000000003,21.23,20.69,20.5,20.330000000000002,20.17,20.02,19.88,19.76,19.56,N/A,N/A +2012,5,12,6,30,101400,100230,99090,83.35000000000001,0,1.75,1.86,1.9100000000000001,1.96,2.0100000000000002,2.05,2.82,4.08,5.51,192.1,191.68,191.78,191.89000000000001,192.31,192.96,191.67000000000002,189.31,184.58,22.53,22.16,21.990000000000002,21.79,21.6,21.400000000000002,21.56,21.79,22.47,N/A,N/A +2012,5,12,7,30,101510,100340,99210,83.96000000000001,0,2.11,2.14,2.13,2.11,2.08,2.06,2.04,2.0300000000000002,2.56,120.72,121.63,122.47,123.53,124.8,126.24000000000001,129.49,133.07,158.36,22.93,22.56,22.38,22.19,22,21.81,21.63,21.47,21.47,N/A,N/A +2012,5,12,8,30,101520,100350,99220,84.35000000000001,0,0.6900000000000001,0.67,0.64,0.6,0.5700000000000001,0.52,0.81,1.49,2.36,64.38,66.35,68.54,71.67,77.9,86.42,110.13,157.99,166.57,23.29,22.95,22.78,22.59,22.41,22.240000000000002,22.23,22.29,22.45,N/A,N/A +2012,5,12,9,30,101530,100370,99240,84.39,0,0.99,0.97,0.9400000000000001,0.9,0.86,0.81,1,1.3800000000000001,2.13,66.06,68.53,70.62,74,80.98,91.05,114.57000000000001,150.93,169.33,23.6,23.26,23.09,22.91,22.73,22.57,22.51,22.490000000000002,22.44,N/A,N/A +2012,5,12,10,30,101580,100410,99280,85.28,0,1.58,1.6,1.58,1.55,1.51,1.46,1.33,1.19,0.8300000000000001,42.31,42.46,42.58,42.800000000000004,43.18,43.7,46.300000000000004,49.21,146.85,23.740000000000002,23.41,23.240000000000002,23.04,22.85,22.67,22.490000000000002,22.330000000000002,22.25,N/A,N/A +2012,5,12,11,30,101580,100420,99290,85.8,0,0.26,0.27,0.28,0.3,0.35000000000000003,0.43,0.6,0.86,2.13,105.94,117.28,125.41,135.5,145.19,155.91,164.9,175.06,186.22,23.88,23.55,23.38,23.19,23.01,22.84,22.68,22.53,22.56,N/A,N/A +2012,5,12,12,30,101680,100520,99380,86.02,0,1.31,1.33,1.31,1.29,1.27,1.25,1.22,1.19,1.09,6.16,5.68,5.42,5.13,4.83,4.5,4.13,3.7600000000000002,2.43,24.07,23.740000000000002,23.56,23.36,23.17,22.98,22.79,22.61,22.23,N/A,N/A +2012,5,12,13,30,101700,100530,99400,85.68,0,3.23,3.31,3.29,3.25,3.21,3.16,3.11,3.0500000000000003,2.93,317.19,317.15000000000003,317.1,317.03000000000003,316.96,316.89,316.79,316.7,316.42,24.05,23.71,23.53,23.330000000000002,23.14,22.95,22.75,22.57,22.19,N/A,N/A +2012,5,12,14,30,101760,100590,99460,85.36,0,2.38,2.4,2.38,2.34,2.3000000000000003,2.2600000000000002,2.2,2.15,2,300.94,300.5,300.25,299.95,299.63,299.27,298.79,298.3,296.64,23.900000000000002,23.55,23.38,23.18,22.990000000000002,22.8,22.61,22.42,22.05,N/A,N/A +2012,5,12,15,30,101750,100590,99450,85.39,0,1.79,1.82,1.82,1.8,1.79,1.77,1.77,1.77,2.04,275.29,274.38,273.68,272.77,271.71,270.45,268.24,265.77,252.76000000000002,23.990000000000002,23.650000000000002,23.48,23.29,23.1,22.92,22.740000000000002,22.57,22.34,N/A,N/A +2012,5,12,16,30,101740,100580,99450,84.76,0,2.29,2.4,2.42,2.42,2.43,2.44,2.44,2.44,2.46,300.45,300.57,300.63,300.75,300.90000000000003,301.08,301.34000000000003,301.62,302.43,24.25,23.91,23.740000000000002,23.54,23.35,23.17,22.98,22.8,22.44,N/A,N/A +2012,5,12,17,30,101760,100600,99470,77.38,0,2.83,2.87,2.84,2.8000000000000003,2.7600000000000002,2.72,2.67,2.63,2.5300000000000002,344.02,344.12,344.09000000000003,344.03000000000003,343.98,343.94,343.89,343.83,343.69,24.47,24.11,23.93,23.73,23.53,23.34,23.14,22.96,22.57,N/A,N/A +2012,5,12,18,30,101740,100570,99440,74.23,0,0.74,0.74,0.72,0.7000000000000001,0.68,0.66,0.64,0.61,0.56,58.67,58.660000000000004,58.5,58.26,57.99,57.67,57.19,56.68,54.81,24.64,24.29,24.12,23.92,23.72,23.53,23.34,23.16,22.78,N/A,N/A +2012,5,12,19,30,101720,100560,99430,73.86,0,1.28,1.29,1.27,1.24,1.22,1.19,1.1500000000000001,1.12,1.03,124.26,124.19,123.87,123.48,123.03,122.53,121.85000000000001,121.18,118.83,24.85,24.5,24.32,24.12,23.93,23.740000000000002,23.55,23.37,23,N/A,N/A +2012,5,12,20,30,101690,100530,99400,75.60000000000001,0,3.15,3.23,3.2,3.14,3.08,3.0100000000000002,2.9,2.7800000000000002,2.19,160.6,160.87,160.99,161.14000000000001,161.33,161.55,161.9,162.27,164.1,25.05,24.7,24.53,24.330000000000002,24.16,23.97,23.8,23.63,23.36,N/A,N/A +2012,5,12,21,30,101660,100500,99370,76.62,0,3.5300000000000002,3.64,3.62,3.58,3.52,3.46,3.37,3.2800000000000002,2.99,165.57,165.82,165.96,166.13,166.29,166.46,166.67000000000002,166.88,167.47,25.240000000000002,24.900000000000002,24.73,24.54,24.36,24.17,23.990000000000002,23.81,23.47,N/A,N/A +2012,5,12,22,30,101640,100480,99350,74.38,0,3.7,3.84,3.83,3.7800000000000002,3.73,3.67,3.6,3.5300000000000002,3.31,193.78,194.54,195.04,195.66,196.34,197.1,198.13,199.19,203.08,25.46,25.150000000000002,24.98,24.79,24.6,24.42,24.240000000000002,24.060000000000002,23.72,N/A,N/A +2012,5,12,23,30,101650,100490,99370,75.91,0,4.42,4.68,4.68,4.64,4.59,4.53,4.45,4.37,4.21,198.12,198.47,198.74,199.14000000000001,199.54,199.98000000000002,200.49,201,202.08,25.44,25.150000000000002,24.990000000000002,24.79,24.61,24.42,24.22,24.03,23.64,N/A,N/A +2012,5,13,0,30,101620,100460,99330,76.47,0,4.74,5.0200000000000005,5.04,5.01,4.97,4.92,4.8500000000000005,4.76,4.32,213.87,214.29,214.49,214.73000000000002,215,215.31,215.82,216.39000000000001,220.4,25.3,25.02,24.86,24.67,24.490000000000002,24.310000000000002,24.13,23.96,23.68,N/A,N/A +2012,5,13,1,30,101630,100470,99340,78.71000000000001,0,5.39,5.64,5.59,5.44,5.2,4.86,4.45,4.07,3.96,235.88,236.47,237.06,238.20000000000002,240.93,245.17000000000002,254.43,264.6,275.67,25.17,24.900000000000002,24.76,24.61,24.5,24.44,24.400000000000002,24.37,24.09,N/A,N/A +2012,5,13,2,30,101710,100540,99420,80.18,0,4.9,5.29,5.39,5.48,5.55,5.62,5.69,5.76,5.9,280.95,283.85,285.6,287.58,289.41,291.24,293.04,294.73,297.40000000000003,25.12,24.830000000000002,24.67,24.48,24.29,24.11,23.92,23.740000000000002,23.36,N/A,N/A +2012,5,13,3,30,101750,100590,99460,79.28,0,5.03,5.33,5.3500000000000005,5.32,5.28,5.23,5.18,5.13,5.2700000000000005,282.19,282.98,283.61,284.6,285.95,287.64,295.63,305.57,315.31,25.22,24.95,24.8,24.62,24.46,24.32,24.34,24.43,24.310000000000002,N/A,N/A +2012,5,13,4,30,101760,100600,99470,68.79,0,3.94,4.16,4.17,4.16,4.14,4.13,4.11,4.1,4.1,358.99,359.06,359.17,359.29,359.40000000000003,359.51,359.68,359.85,0.44,25.36,25.09,24.94,24.75,24.57,24.39,24.2,24.03,23.67,N/A,N/A +2012,5,13,5,30,101780,100620,99490,71.11,0,4.04,4.32,4.3500000000000005,4.36,4.36,4.36,4.3500000000000005,4.34,4.3100000000000005,345.40000000000003,345.59000000000003,345.72,345.88,346.02,346.18,346.39,346.59000000000003,347.07,25,24.7,24.54,24.34,24.16,23.97,23.78,23.6,23.23,N/A,N/A +2012,5,13,6,30,101820,100650,99510,78.3,0,5.32,5.63,5.69,5.71,5.71,5.71,5.71,5.7,5.69,15.860000000000001,15.84,15.82,15.8,15.790000000000001,15.780000000000001,15.77,15.76,15.69,23.76,23.39,23.22,23.02,22.830000000000002,22.64,22.45,22.28,21.91,N/A,N/A +2012,5,13,7,30,101840,100670,99540,78.98,0,5.39,5.7,5.75,5.76,5.75,5.74,5.72,5.69,5.64,15.84,15.91,15.88,15.84,15.790000000000001,15.73,15.66,15.58,15.33,23.71,23.34,23.16,22.96,22.78,22.59,22.400000000000002,22.22,21.86,N/A,N/A +2012,5,13,8,30,101820,100650,99520,79.31,0,5.47,5.7700000000000005,5.8100000000000005,5.8100000000000005,5.8,5.79,5.76,5.73,5.67,19.92,20.07,20.13,20.18,20.22,20.25,20.25,20.25,20.18,23.6,23.21,23.03,22.84,22.650000000000002,22.46,22.27,22.09,21.72,N/A,N/A +2012,5,13,9,30,101850,100680,99540,82.14,0,5.68,6.01,6.0600000000000005,6.08,6.08,6.07,6.05,6.03,5.98,20,20.04,20.07,20.080000000000002,20.09,20.11,20.09,20.080000000000002,19.98,23.02,22.62,22.43,22.23,22.04,21.85,21.66,21.48,21.11,N/A,N/A +2012,5,13,10,30,101880,100710,99560,84.01,0,5.99,6.3100000000000005,6.34,6.33,6.3100000000000005,6.2700000000000005,6.23,6.18,6.0600000000000005,23.98,24.13,24.21,24.29,24.34,24.400000000000002,24.45,24.490000000000002,24.560000000000002,22.53,22.1,21.91,21.7,21.51,21.32,21.13,20.95,20.57,N/A,N/A +2012,5,13,11,30,101920,100740,99590,86.59,0,6.12,6.45,6.5,6.5,6.49,6.47,6.45,6.41,6.34,22.94,22.93,22.92,22.91,22.900000000000002,22.87,22.85,22.82,22.740000000000002,22.01,21.55,21.35,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A +2012,5,13,12,30,101950,100760,99620,84.79,0,6.87,7.2700000000000005,7.34,7.3500000000000005,7.34,7.32,7.3,7.2700000000000005,7.18,24.060000000000002,24.12,24.17,24.2,24.22,24.240000000000002,24.25,24.26,24.25,21.650000000000002,21.16,20.95,20.740000000000002,20.54,20.35,20.16,19.98,19.6,N/A,N/A +2012,5,13,13,30,101980,100800,99650,82.01,0,6.76,7.15,7.22,7.24,7.24,7.23,7.21,7.19,7.12,19.1,19.17,19.2,19.240000000000002,19.26,19.28,19.29,19.3,19.29,21.62,21.13,20.93,20.72,20.52,20.330000000000002,20.13,19.95,19.580000000000002,N/A,N/A +2012,5,13,14,30,102000,100820,99670,79.94,0,5.8,6.12,6.18,6.21,6.22,6.22,6.22,6.21,6.2,9.9,9.89,9.92,9.93,9.950000000000001,9.950000000000001,9.950000000000001,9.94,9.9,21.75,21.28,21.09,20.88,20.68,20.490000000000002,20.3,20.12,19.740000000000002,N/A,N/A +2012,5,13,15,30,102020,100840,99690,75.42,0,4.72,5,5.07,5.11,5.15,5.17,5.19,5.21,5.24,5.78,5.33,5.0600000000000005,4.8100000000000005,4.57,4.3500000000000005,4.12,3.91,3.49,22.32,21.89,21.69,21.48,21.28,21.09,20.89,20.71,20.31,N/A,N/A +2012,5,13,16,30,102010,100830,99690,72.36,0,4.41,4.66,4.72,4.75,4.78,4.79,4.8,4.82,4.83,350.19,350.74,351.06,351.35,351.62,351.87,352.12,352.35,352.82,22.79,22.38,22.19,21.98,21.78,21.59,21.39,21.21,20.81,N/A,N/A +2012,5,13,17,30,101980,100800,99660,71.36,0,4.13,4.37,4.42,4.46,4.48,4.5,4.51,4.53,4.55,336.01,336.49,336.87,337.22,337.55,337.86,338.17,338.46,339.05,23.28,22.89,22.7,22.5,22.3,22.11,21.91,21.72,21.330000000000002,N/A,N/A +2012,5,13,18,30,101950,100770,99630,67.39,0,4.34,4.6000000000000005,4.65,4.69,4.71,4.73,4.74,4.75,4.7700000000000005,319.92,320.65000000000003,321.1,321.55,321.95,322.33,322.72,323.07,323.83,23.69,23.31,23.13,22.93,22.73,22.54,22.34,22.16,21.77,N/A,N/A +2012,5,13,19,30,101910,100740,99610,64.82000000000001,0,5.13,5.44,5.5,5.5200000000000005,5.54,5.54,5.54,5.54,5.5200000000000005,309.69,310.42,310.91,311.37,311.79,312.18,312.58,312.94,313.7,24.21,23.86,23.68,23.48,23.29,23.09,22.900000000000002,22.71,22.330000000000002,N/A,N/A +2012,5,13,20,30,101850,100670,99540,65.71000000000001,0,5.67,6.04,6.1000000000000005,6.13,6.13,6.140000000000001,6.13,6.12,6.09,306.29,306.91,307.3,307.69,308.06,308.42,308.81,309.18,310.04,24.44,24.1,23.92,23.73,23.54,23.36,23.17,22.990000000000002,22.62,N/A,N/A +2012,5,13,21,30,101810,100640,99510,65.13,0,5.43,5.8100000000000005,5.88,5.91,5.91,5.91,5.91,5.9,5.86,309.94,310.55,310.91,311.26,311.57,311.88,312.19,312.49,313.16,24.810000000000002,24.5,24.330000000000002,24.13,23.94,23.76,23.56,23.38,23.01,N/A,N/A +2012,5,13,22,30,101760,100590,99460,64.58,0,5.3100000000000005,5.76,5.8500000000000005,5.9,5.93,5.95,5.96,5.97,5.98,310.85,311.65000000000003,312.18,312.71,313.2,313.66,314.14,314.59000000000003,315.58,25.23,24.95,24.79,24.6,24.42,24.23,24.04,23.87,23.5,N/A,N/A +2012,5,13,23,30,101720,100550,99420,64.49,0,5.5200000000000005,6,6.09,6.140000000000001,6.18,6.2,6.23,6.25,6.3100000000000005,306.93,307.8,308.34000000000003,308.90000000000003,309.43,309.96,310.55,311.13,312.6,25.48,25.23,25.080000000000002,24.89,24.71,24.53,24.35,24.17,23.82,N/A,N/A +2012,5,14,0,30,101710,100550,99420,64.89,0,5.86,6.4,6.53,6.6000000000000005,6.65,6.69,6.72,6.75,6.8,323.6,324.22,324.61,324.99,325.35,325.69,326.06,326.41,327.16,25.76,25.53,25.39,25.2,25.02,24.84,24.650000000000002,24.48,24.11,N/A,N/A +2012,5,14,1,30,101700,100540,99410,66.73,0,5.47,5.97,6.09,6.16,6.21,6.26,6.3,6.3500000000000005,6.49,330.45,331.11,331.51,331.96,332.42,332.92,333.51,334.1,335.87,25.69,25.47,25.32,25.14,24.96,24.79,24.61,24.44,24.1,N/A,N/A +2012,5,14,2,30,101710,100550,99420,64.55,0,5.2700000000000005,5.66,5.73,5.75,5.76,5.7700000000000005,5.7700000000000005,5.76,5.75,6.03,7.16,7.71,8.22,8.700000000000001,9.14,9.59,10.01,10.9,25.87,25.650000000000002,25.5,25.310000000000002,25.14,24.96,24.77,24.59,24.22,N/A,N/A +2012,5,14,3,30,101740,100570,99450,66.62,0,5.71,6.23,6.36,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,27.990000000000002,27.84,27.740000000000002,27.650000000000002,27.580000000000002,27.52,27.46,27.400000000000002,27.3,25.51,25.25,25.09,24.900000000000002,24.71,24.53,24.34,24.16,23.78,N/A,N/A +2012,5,14,4,30,101720,100560,99430,65.33,0,5.09,5.5200000000000005,5.61,5.66,5.7,5.72,5.74,5.75,5.76,27.900000000000002,28.11,28.23,28.310000000000002,28.38,28.43,28.47,28.490000000000002,28.5,25.36,25.09,24.93,24.740000000000002,24.55,24.37,24.18,24,23.62,N/A,N/A +2012,5,14,5,30,101700,100540,99410,65.34,0,4.72,5.08,5.15,5.18,5.2,5.21,5.22,5.22,5.21,36.95,36.46,36.160000000000004,35.85,35.58,35.32,35.06,34.83,34.36,25.25,24.97,24.810000000000002,24.61,24.43,24.240000000000002,24.05,23.87,23.48,N/A,N/A +2012,5,14,6,30,101730,100560,99430,64.94,0,4.09,4.39,4.44,4.47,4.49,4.5,4.51,4.5200000000000005,4.53,53.18,52.85,52.64,52.43,52.25,52.07,51.870000000000005,51.7,51.32,25.16,24.87,24.7,24.51,24.32,24.13,23.94,23.75,23.37,N/A,N/A +2012,5,14,7,30,101720,100550,99420,66.22,0,3.72,3.95,3.99,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,50.38,50.370000000000005,50.35,50.31,50.28,50.24,50.19,50.15,50.04,25.02,24.72,24.55,24.35,24.16,23.97,23.78,23.6,23.21,N/A,N/A +2012,5,14,8,30,101700,100530,99400,66.09,0,3.87,4.12,4.17,4.19,4.2,4.21,4.22,4.22,4.23,44.21,44.050000000000004,43.96,43.86,43.75,43.660000000000004,43.550000000000004,43.45,43.22,24.92,24.61,24.44,24.25,24.060000000000002,23.87,23.67,23.490000000000002,23.1,N/A,N/A +2012,5,14,9,30,101710,100540,99410,67.95,0,3.61,3.8000000000000003,3.83,3.83,3.83,3.8200000000000003,3.81,3.8000000000000003,3.7800000000000002,42.82,42.86,42.89,42.9,42.9,42.89,42.88,42.86,42.800000000000004,24.76,24.44,24.28,24.080000000000002,23.89,23.7,23.5,23.32,22.94,N/A,N/A +2012,5,14,10,30,101730,100560,99430,68.55,0,3.59,3.79,3.83,3.85,3.86,3.87,3.87,3.87,3.87,48.97,48.92,48.89,48.85,48.800000000000004,48.75,48.7,48.660000000000004,48.54,24.59,24.27,24.1,23.900000000000002,23.71,23.52,23.32,23.14,22.75,N/A,N/A +2012,5,14,11,30,101760,100590,99460,67.71000000000001,0,2.87,3.02,3.0500000000000003,3.06,3.0700000000000003,3.0700000000000003,3.0700000000000003,3.08,3.08,45.75,45.56,45.46,45.35,45.25,45.160000000000004,45.04,44.92,44.68,24.580000000000002,24.26,24.09,23.89,23.7,23.51,23.31,23.13,22.740000000000002,N/A,N/A +2012,5,14,12,30,101780,100610,99470,67.58,0,3.04,3.18,3.2,3.21,3.21,3.21,3.21,3.21,3.2,43.9,43.75,43.69,43.62,43.550000000000004,43.5,43.42,43.36,43.22,24.5,24.17,24,23.8,23.61,23.42,23.23,23.04,22.66,N/A,N/A +2012,5,14,13,30,101800,100640,99500,68.21000000000001,0,2.77,2.91,2.94,2.95,2.96,2.96,2.97,2.97,2.97,37.27,37.38,37.44,37.49,37.53,37.58,37.62,37.660000000000004,37.74,24.46,24.13,23.96,23.76,23.56,23.38,23.18,22.990000000000002,22.61,N/A,N/A +2012,5,14,14,30,101830,100660,99530,69.37,0,3.16,3.29,3.3000000000000003,3.29,3.29,3.27,3.2600000000000002,3.25,3.23,18.22,18.52,18.75,18.96,19.16,19.34,19.53,19.7,20.07,24.38,24.05,23.87,23.67,23.490000000000002,23.3,23.1,22.92,22.54,N/A,N/A +2012,5,14,15,30,101840,100670,99530,68.43,0,3.04,3.17,3.18,3.17,3.17,3.16,3.15,3.13,3.11,12.85,13.07,13.18,13.3,13.43,13.55,13.68,13.8,14.11,24.34,23.990000000000002,23.82,23.63,23.44,23.25,23.06,22.87,22.490000000000002,N/A,N/A +2012,5,14,16,30,101830,100660,99530,66.23,0,2.52,2.63,2.65,2.66,2.67,2.67,2.68,2.68,2.69,46.480000000000004,46.51,46.43,46.35,46.27,46.2,46.13,46.06,45.92,24.44,24.1,23.92,23.73,23.54,23.35,23.150000000000002,22.97,22.59,N/A,N/A +2012,5,14,17,30,101790,100620,99490,63.72,0,1.77,1.81,1.81,1.8,1.79,1.78,1.76,1.75,1.72,93.64,93.07000000000001,92.62,92.16,91.71000000000001,91.26,90.76,90.29,89.19,24.560000000000002,24.22,24.04,23.85,23.650000000000002,23.47,23.27,23.09,22.71,N/A,N/A +2012,5,14,18,30,101760,100600,99460,62.97,0,1.73,1.75,1.73,1.71,1.69,1.6600000000000001,1.6400000000000001,1.61,1.56,129.16,129.05,128.92000000000002,128.79,128.65,128.51,128.35,128.19,127.76,24.650000000000002,24.3,24.13,23.92,23.740000000000002,23.55,23.35,23.17,22.78,N/A,N/A +2012,5,14,19,30,101730,100570,99430,61.86,0,2.07,2.1,2.07,2.04,2.0100000000000002,1.98,1.94,1.9100000000000001,1.84,149.18,149.39000000000001,149.48,149.59,149.70000000000002,149.79,149.92000000000002,150.05,150.34,24.77,24.42,24.25,24.04,23.85,23.67,23.47,23.28,22.900000000000002,N/A,N/A +2012,5,14,20,30,101650,100490,99350,63.370000000000005,0,3.89,4.05,4.05,4.03,4.01,3.99,3.96,3.92,3.86,144.8,144.75,144.76,144.76,144.77,144.76,144.75,144.75,144.73,24.77,24.41,24.23,24.03,23.84,23.650000000000002,23.45,23.27,22.88,N/A,N/A +2012,5,14,21,30,101600,100440,99310,64.32000000000001,0,4.72,4.97,4.99,4.98,4.97,4.95,4.93,4.9,4.83,146.87,146.98,147.02,147.06,147.09,147.12,147.14000000000001,147.17000000000002,147.18,24.71,24.37,24.19,23.990000000000002,23.8,23.62,23.42,23.240000000000002,22.85,N/A,N/A +2012,5,14,22,30,101550,100390,99260,63.870000000000005,0,4.6000000000000005,4.8500000000000005,4.87,4.87,4.8500000000000005,4.83,4.8,4.7700000000000005,4.7,156,156.01,156,155.99,155.97,155.94,155.91,155.88,155.8,24.650000000000002,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.38,23.2,22.82,N/A,N/A +2012,5,14,23,30,101540,100370,99240,64.01,0,4.69,4.94,4.96,4.95,4.93,4.9,4.86,4.82,4.71,157.34,157.27,157.22,157.15,157.07,156.99,156.86,156.73,156.3,24.64,24.32,24.150000000000002,23.95,23.77,23.580000000000002,23.39,23.21,22.84,N/A,N/A +2012,5,15,0,30,101500,100330,99200,62.79,0,4.71,4.98,5.01,5.01,4.99,4.98,4.95,4.92,4.8500000000000005,163.17000000000002,163.04,162.98,162.91,162.82,162.73,162.61,162.48,162.06,24.67,24.35,24.18,23.98,23.8,23.61,23.42,23.240000000000002,22.87,N/A,N/A +2012,5,15,1,30,101480,100310,99180,64.8,0,4.9,5.19,5.23,5.24,5.23,5.21,5.19,5.16,5.09,164.67000000000002,164.6,164.5,164.4,164.29,164.18,164.03,163.87,163.42000000000002,24.59,24.26,24.09,23.900000000000002,23.71,23.53,23.330000000000002,23.16,22.78,N/A,N/A +2012,5,15,2,30,101500,100340,99210,65.75,0,4.46,4.7,4.74,4.74,4.73,4.72,4.69,4.67,4.61,169.57,169.31,169.15,168.98,168.79,168.6,168.37,168.15,167.49,24.560000000000002,24.23,24.060000000000002,23.87,23.68,23.490000000000002,23.3,23.12,22.75,N/A,N/A +2012,5,15,3,30,101530,100360,99230,65.73,0,4.21,4.43,4.46,4.45,4.44,4.42,4.4,4.38,4.3100000000000005,174.97,174.81,174.71,174.59,174.47,174.34,174.18,174.02,173.51,24.57,24.25,24.080000000000002,23.89,23.7,23.51,23.32,23.14,22.76,N/A,N/A +2012,5,15,4,30,101520,100350,99220,65.6,0,3.61,3.7800000000000002,3.8000000000000003,3.8000000000000003,3.79,3.7800000000000002,3.75,3.74,3.68,172.52,172.3,172.14000000000001,171.95000000000002,171.74,171.52,171.23,170.94,169.91,24.57,24.25,24.080000000000002,23.89,23.7,23.52,23.330000000000002,23.150000000000002,22.79,N/A,N/A +2012,5,15,5,30,101520,100360,99220,65.17,0,3.97,4.17,4.2,4.2,4.19,4.18,4.16,4.14,4.09,166.12,166.05,165.96,165.87,165.76,165.66,165.52,165.38,164.96,24.57,24.240000000000002,24.07,23.87,23.69,23.5,23.31,23.13,22.75,N/A,N/A +2012,5,15,6,30,101520,100350,99220,64.73,0,3.31,3.45,3.47,3.47,3.46,3.45,3.43,3.42,3.37,177.45000000000002,177.29,177.12,176.92000000000002,176.71,176.51,176.24,175.98,175.22,24.57,24.25,24.07,23.88,23.69,23.5,23.31,23.13,22.75,N/A,N/A +2012,5,15,7,30,101560,100390,99260,63.09,0,2.65,2.7600000000000002,2.77,2.77,2.7600000000000002,2.7600000000000002,2.75,2.73,2.71,178.61,178.43,178.20000000000002,177.96,177.71,177.47,177.18,176.9,176.13,24.650000000000002,24.330000000000002,24.16,23.96,23.78,23.59,23.39,23.21,22.830000000000002,N/A,N/A +2012,5,15,8,30,101560,100390,99260,64.43,0,2.2600000000000002,2.34,2.34,2.34,2.33,2.32,2.3000000000000003,2.29,2.2600000000000002,177.35,177.07,176.87,176.67000000000002,176.45000000000002,176.23,175.96,175.69,174.98,24.6,24.27,24.1,23.91,23.71,23.53,23.330000000000002,23.150000000000002,22.77,N/A,N/A +2012,5,15,9,30,101570,100400,99270,64.86,0,1.68,1.73,1.72,1.72,1.71,1.69,1.68,1.67,1.6400000000000001,198.23000000000002,197.88,197.70000000000002,197.52,197.3,197.07,196.82,196.57,195.87,24.560000000000002,24.23,24.07,23.87,23.68,23.490000000000002,23.29,23.11,22.73,N/A,N/A +2012,5,15,10,30,101600,100430,99300,65.06,0,1.2,1.22,1.21,1.2,1.19,1.18,1.16,1.1500000000000001,1.12,217.01,217.24,217.32,217.37,217.43,217.48000000000002,217.51,217.54,217.56,24.55,24.22,24.05,23.85,23.66,23.48,23.28,23.09,22.71,N/A,N/A +2012,5,15,11,30,101610,100450,99310,65.22,0,1.3,1.32,1.32,1.31,1.3,1.29,1.28,1.26,1.24,220.11,220.22,220.38,220.51,220.62,220.71,220.8,220.89000000000001,221.01,24.54,24.21,24.04,23.85,23.650000000000002,23.46,23.27,23.080000000000002,22.7,N/A,N/A +2012,5,15,12,30,101630,100460,99330,65.44,0,0.74,0.76,0.76,0.76,0.76,0.76,0.76,0.75,0.75,287.04,288.38,289.28000000000003,290.2,291.06,291.89,292.7,293.44,295.23,24.53,24.2,24.03,23.830000000000002,23.64,23.45,23.25,23.07,22.68,N/A,N/A +2012,5,15,13,30,101650,100480,99350,65.92,0,0.74,0.78,0.78,0.78,0.79,0.79,0.79,0.79,0.8,306.36,307.14,307.76,308.34000000000003,308.88,309.43,309.94,310.40000000000003,311.36,24.560000000000002,24.23,24.060000000000002,23.86,23.67,23.48,23.28,23.09,22.71,N/A,N/A +2012,5,15,14,30,101690,100520,99390,65.72,0,1.51,1.57,1.58,1.59,1.6,1.61,1.61,1.61,1.62,318.29,318.74,318.83,318.92,319.01,319.12,319.21,319.28000000000003,319.53000000000003,24.64,24.310000000000002,24.14,23.94,23.75,23.56,23.36,23.18,22.79,N/A,N/A +2012,5,15,15,30,101710,100550,99410,69.64,0,3.04,3.13,3.12,3.09,3.0700000000000003,3.04,3.0100000000000002,2.98,2.92,336.75,336.57,336.43,336.31,336.2,336.1,336.01,335.93,335.8,24.47,24.13,23.95,23.75,23.56,23.37,23.17,22.990000000000002,22.6,N/A,N/A +2012,5,15,16,30,101710,100550,99410,75.48,0,3.97,4.13,4.13,4.11,4.09,4.07,4.03,4.01,3.94,326.44,327.42,327.97,328.5,328.98,329.42,329.88,330.3,331.16,24.41,24.05,23.87,23.67,23.47,23.28,23.080000000000002,22.900000000000002,22.51,N/A,N/A +2012,5,15,17,30,101690,100520,99390,71.56,0,2.62,2.71,2.71,2.7,2.69,2.67,2.65,2.63,2.59,329.68,329.89,330.03000000000003,330.18,330.33,330.48,330.64,330.8,331.17,24.51,24.150000000000002,23.97,23.77,23.580000000000002,23.38,23.19,23,22.62,N/A,N/A +2012,5,15,18,30,101670,100510,99380,68.31,0,2.2,2.31,2.32,2.33,2.33,2.34,2.34,2.34,2.34,328.64,328.92,329.05,329.17,329.28000000000003,329.40000000000003,329.52,329.64,329.91,24.82,24.47,24.29,24.09,23.89,23.71,23.51,23.32,22.94,N/A,N/A +2012,5,15,19,30,101670,100500,99370,69.71000000000001,0,3.71,3.9,3.94,3.95,3.96,3.96,3.96,3.96,3.94,324.16,323.86,323.7,323.54,323.38,323.22,323.06,322.90000000000003,322.54,24.79,24.43,24.25,24.05,23.86,23.67,23.47,23.29,22.900000000000002,N/A,N/A +2012,5,15,20,30,101660,100490,99350,82.69,0.4,7.1000000000000005,7.54,7.62,7.640000000000001,7.65,7.640000000000001,7.63,7.61,7.5600000000000005,329.08,329.94,330.3,330.62,330.91,331.17,331.42,331.64,332.09000000000003,23.2,22.77,22.57,22.36,22.16,21.97,21.76,21.580000000000002,21.19,N/A,N/A +2012,5,15,21,30,101590,100410,99280,80.81,0,4.7,4.92,4.95,4.95,4.94,4.93,4.91,4.89,4.8500000000000005,355.90000000000003,355.40000000000003,355.08,354.69,354.21,353.69,352.92,352.17,349.26,22.66,22.23,22.05,21.85,21.66,21.47,21.28,21.11,20.76,N/A,N/A +2012,5,15,22,30,101590,100420,99280,75.16,0,4.38,4.63,4.68,4.7,4.72,4.73,4.74,4.75,4.76,340.82,340.47,340.25,339.99,339.72,339.45,339.13,338.82,337.96,23.27,22.87,22.69,22.490000000000002,22.3,22.11,21.92,21.740000000000002,21.36,N/A,N/A +2012,5,15,23,30,101580,100410,99280,77.11,0,4.82,5.12,5.18,5.21,5.23,5.25,5.26,5.26,5.2700000000000005,343.64,343.5,343.47,343.42,343.36,343.31,343.24,343.17,342.99,23.45,23.05,22.86,22.66,22.47,22.28,22.080000000000002,21.900000000000002,21.52,N/A,N/A +2012,5,16,0,30,101600,100430,99290,72.78,0,6.46,6.890000000000001,6.98,7.01,7.0200000000000005,7.0200000000000005,7.0200000000000005,7.01,6.98,343.56,343.99,344.22,344.44,344.65000000000003,344.85,345.06,345.26,345.66,23.66,23.26,23.07,22.87,22.67,22.48,22.29,22.1,21.72,N/A,N/A +2012,5,16,1,30,101580,100410,99280,75.3,0,7.08,7.5600000000000005,7.65,7.67,7.68,7.68,7.66,7.640000000000001,7.59,5.59,5.36,5.08,4.78,4.49,4.21,3.92,3.64,3.0300000000000002,23.44,23.02,22.830000000000002,22.62,22.42,22.23,22.03,21.85,21.46,N/A,N/A +2012,5,16,2,30,101660,100480,99340,79.05,0,8.64,9.28,9.42,9.47,9.5,9.51,9.51,9.51,9.49,10.870000000000001,11.17,11.32,11.48,11.63,11.77,11.93,12.07,12.41,22.55,22.06,21.86,21.650000000000002,21.45,21.26,21.06,20.88,20.490000000000002,N/A,N/A +2012,5,16,3,30,101670,100490,99350,83.64,0,8.4,9.01,9.15,9.21,9.25,9.27,9.28,9.3,9.33,9.99,10.040000000000001,10.13,10.21,10.290000000000001,10.36,10.450000000000001,10.540000000000001,10.77,21.97,21.47,21.26,21.06,20.86,20.67,20.490000000000002,20.31,19.95,N/A,N/A +2012,5,16,4,30,101650,100470,99320,86.61,0,7.78,8.290000000000001,8.39,8.43,8.45,8.46,8.47,8.47,8.52,7.8500000000000005,8.08,8.18,8.27,8.370000000000001,8.46,8.56,8.66,8.92,21.75,21.25,21.04,20.84,20.66,20.48,20.29,20.13,19.8,N/A,N/A +2012,5,16,5,30,101630,100450,99310,86.86,0,7.82,8.33,8.43,8.47,8.48,8.48,8.47,8.46,8.44,16.43,16.76,16.91,17.07,17.23,17.39,17.580000000000002,17.76,18.3,21.67,21.16,20.96,20.75,20.56,20.37,20.18,20,19.64,N/A,N/A +2012,5,16,6,30,101660,100480,99340,87.73,0,7.48,7.98,8.08,8.120000000000001,8.14,8.15,8.15,8.15,8.15,30.47,30.67,30.8,30.94,31.080000000000002,31.2,31.36,31.5,31.89,21.66,21.16,20.95,20.740000000000002,20.54,20.35,20.16,19.98,19.6,N/A,N/A +2012,5,16,7,30,101670,100490,99340,86.69,0,6.6000000000000005,7.01,7.08,7.11,7.13,7.140000000000001,7.140000000000001,7.13,7.140000000000001,32.13,32.44,32.62,32.81,33,33.18,33.39,33.59,34.12,21.86,21.38,21.18,20.97,20.78,20.59,20.400000000000002,20.22,19.85,N/A,N/A +2012,5,16,8,30,101660,100490,99350,86.3,0,5.65,5.96,6.01,6.0200000000000005,6.03,6.0200000000000005,6.0200000000000005,6.01,6,32.31,32.67,32.9,33.15,33.4,33.65,33.93,34.21,34.94,21.97,21.52,21.32,21.12,20.92,20.740000000000002,20.55,20.37,20,N/A,N/A +2012,5,16,9,30,101650,100480,99340,83.54,0,5.08,5.3500000000000005,5.39,5.4,5.41,5.41,5.41,5.41,5.45,27.11,27.29,27.37,27.47,27.57,27.66,27.79,27.91,28.3,22.3,21.87,21.68,21.48,21.29,21.12,20.93,20.76,20.43,N/A,N/A +2012,5,16,10,30,101670,100490,99350,81.51,0,4.72,4.97,5.01,5.0200000000000005,5.03,5.03,5.0200000000000005,5.0200000000000005,5.01,32.97,32.83,32.75,32.65,32.55,32.45,32.33,32.21,31.89,22.650000000000002,22.23,22.04,21.84,21.650000000000002,21.46,21.26,21.080000000000002,20.71,N/A,N/A +2012,5,16,11,30,101700,100530,99390,82.74,0,6.75,7.16,7.22,7.23,7.23,7.21,7.19,7.16,7.09,24.03,24.42,24.71,25.02,25.3,25.57,25.85,26.12,26.72,22.54,22.080000000000002,21.88,21.67,21.47,21.28,21.080000000000002,20.900000000000002,20.51,N/A,N/A +2012,5,16,12,30,101710,100530,99390,86.43,0,7.34,7.8100000000000005,7.890000000000001,7.92,7.930000000000001,7.930000000000001,7.92,7.91,7.88,23.26,23.34,23.42,23.51,23.580000000000002,23.66,23.75,23.84,24.060000000000002,21.55,21.04,20.830000000000002,20.62,20.42,20.23,20.04,19.86,19.48,N/A,N/A +2012,5,16,13,30,101720,100530,99390,85.23,0,6.32,6.67,6.73,6.74,6.74,6.74,6.72,6.71,6.68,24.6,24.75,24.85,24.95,25.060000000000002,25.150000000000002,25.27,25.38,25.68,21.45,20.96,20.76,20.55,20.36,20.17,19.98,19.8,19.43,N/A,N/A +2012,5,16,14,30,101730,100550,99410,82.97,0,5.3,5.59,5.64,5.66,5.66,5.67,5.66,5.66,5.66,21.5,21.830000000000002,22.03,22.240000000000002,22.45,22.650000000000002,22.88,23.1,23.68,21.88,21.43,21.23,21.03,20.830000000000002,20.650000000000002,20.45,20.28,19.91,N/A,N/A +2012,5,16,15,30,101750,100570,99430,81.60000000000001,0,3.7,3.88,3.91,3.92,3.92,3.93,3.93,3.94,3.95,22.8,22.95,23.09,23.240000000000002,23.400000000000002,23.56,23.75,23.93,24.51,22.32,21.900000000000002,21.71,21.51,21.32,21.14,20.94,20.76,20.39,N/A,N/A +2012,5,16,16,30,101720,100550,99410,75.51,0,2.73,2.87,2.9,2.93,2.95,2.96,2.98,3,3.0500000000000003,7.0600000000000005,7.41,7.61,7.82,8.02,8.22,8.45,8.68,9.25,23.06,22.67,22.490000000000002,22.29,22.1,21.91,21.72,21.54,21.16,N/A,N/A +2012,5,16,17,30,101700,100530,99390,74.15,0,1.61,1.69,1.72,1.74,1.76,1.79,1.82,1.85,1.95,329.02,329.72,330.34000000000003,330.97,331.58,332.19,332.90000000000003,333.57,335.31,23.46,23.080000000000002,22.900000000000002,22.71,22.52,22.34,22.150000000000002,21.97,21.61,N/A,N/A +2012,5,16,18,30,101660,100490,99350,72.28,0,2.15,2.2600000000000002,2.29,2.31,2.33,2.34,2.36,2.37,2.41,270.75,272.27,273.25,274.22,275.12,276,276.93,277.81,279.86,24.060000000000002,23.68,23.5,23.31,23.11,22.92,22.73,22.55,22.16,N/A,N/A +2012,5,16,19,30,101630,100460,99330,68.27,0,3.3000000000000003,3.52,3.58,3.62,3.66,3.69,3.72,3.75,3.8200000000000003,329.93,330.06,330.25,330.43,330.61,330.78000000000003,330.96,331.14,331.56,24.7,24.34,24.16,23.96,23.78,23.59,23.400000000000002,23.22,22.84,N/A,N/A +2012,5,16,20,30,101570,100400,99270,67.91,0,5.26,5.57,5.61,5.61,5.61,5.6000000000000005,5.59,5.59,5.36,358.03000000000003,357.93,357.84000000000003,357.72,357.5,357.2,356.45,355.62,352.5,24.38,24.04,23.88,23.71,23.56,23.42,23.330000000000002,23.26,23,N/A,N/A +2012,5,16,21,30,101560,100390,99260,65.54,0,5.58,5.83,5.83,5.78,5.72,5.65,5.5600000000000005,5.48,5.24,19.13,19.28,19.27,19.26,19.22,19.17,19.080000000000002,18.990000000000002,18.52,24.740000000000002,24.41,24.240000000000002,24.060000000000002,23.87,23.7,23.52,23.34,23.01,N/A,N/A +2012,5,16,22,30,101540,100370,99240,66.61,0,4.79,5.08,5.12,5.13,5.13,5.12,5.11,5.09,5.01,30.32,29.78,29.48,29.13,28.740000000000002,28.330000000000002,27.69,27.07,23.64,24.75,24.43,24.26,24.080000000000002,23.900000000000002,23.740000000000002,23.57,23.42,23.2,N/A,N/A +2012,5,16,23,30,101540,100380,99250,65.87,0,3.06,3.23,3.2600000000000002,3.2800000000000002,3.29,3.31,3.3200000000000003,3.33,3.39,18.16,18.06,18.12,18.17,18.23,18.28,18.31,18.34,17.94,24.810000000000002,24.5,24.32,24.14,23.95,23.77,23.59,23.41,23.080000000000002,N/A,N/A +2012,5,17,0,30,101550,100390,99260,67.51,0,3.13,3.3000000000000003,3.33,3.33,3.33,3.33,3.33,3.3200000000000003,3.31,3.89,3.36,3.09,2.77,2.45,2.13,1.77,1.43,0.62,24.990000000000002,24.68,24.51,24.310000000000002,24.12,23.93,23.740000000000002,23.55,23.17,N/A,N/A +2012,5,17,1,30,101520,100360,99230,69.16,0,4.3100000000000005,4.57,4.6000000000000005,4.61,4.6000000000000005,4.59,4.57,4.5600000000000005,4.51,307.85,308.44,308.87,309.32,309.76,310.19,310.66,311.1,312.1,24.96,24.64,24.47,24.28,24.09,23.900000000000002,23.71,23.53,23.14,N/A,N/A +2012,5,17,2,30,101550,100390,99260,70.85000000000001,0,2.89,3.02,3.0300000000000002,3.0300000000000002,3.02,3.0100000000000002,3,2.98,2.95,329.69,331.06,331.7,332.36,332.98,333.59000000000003,334.24,334.85,336.22,24.82,24.5,24.32,24.13,23.94,23.75,23.55,23.37,22.98,N/A,N/A +2012,5,17,3,30,101580,100410,99280,69.72,0,1.96,2.02,2.02,2.0100000000000002,2,1.98,1.97,1.96,1.93,350.57,351.16,351.5,351.84000000000003,352.19,352.55,352.97,353.36,354.37,24.75,24.43,24.25,24.060000000000002,23.87,23.68,23.490000000000002,23.31,22.93,N/A,N/A +2012,5,17,4,30,101560,100400,99270,69.51,0,2.7600000000000002,2.89,2.9,2.9,2.9,2.9,2.89,2.89,2.88,350.77,351.19,351.35,351.52,351.69,351.85,352.03000000000003,352.2,352.62,24.73,24.400000000000002,24.23,24.04,23.85,23.66,23.47,23.29,22.91,N/A,N/A +2012,5,17,5,30,101590,100420,99290,72.43,0,4.17,4.4,4.43,4.43,4.43,4.42,4.4,4.39,4.3500000000000005,17.16,17.13,17.02,16.91,16.82,16.73,16.66,16.580000000000002,16.46,24.64,24.3,24.13,23.93,23.740000000000002,23.55,23.35,23.17,22.78,N/A,N/A +2012,5,17,6,30,101570,100400,99270,67.88,0,2.85,2.97,2.97,2.96,2.95,2.93,2.91,2.9,2.86,1.44,1.86,2.08,2.34,2.62,2.91,3.27,3.61,4.65,24.62,24.3,24.13,23.94,23.75,23.56,23.37,23.19,22.82,N/A,N/A +2012,5,17,7,30,101590,100430,99290,66.64,0,1.99,2.04,2.04,2.0100000000000002,1.99,1.97,1.94,1.9100000000000001,1.83,357.5,358.04,358.42,358.83,359.27,359.73,0.33,0.9,2.79,24.59,24.27,24.09,23.900000000000002,23.71,23.52,23.330000000000002,23.14,22.76,N/A,N/A +2012,5,17,8,30,101590,100420,99290,67.71000000000001,0,1.96,2.02,2.0100000000000002,2,1.99,1.97,1.95,1.93,1.8800000000000001,7.34,7.84,8.040000000000001,8.26,8.53,8.82,9.19,9.55,10.61,24.54,24.22,24.05,23.85,23.66,23.48,23.28,23.1,22.71,N/A,N/A +2012,5,17,9,30,101580,100410,99280,70.59,0,1.72,1.77,1.78,1.77,1.77,1.76,1.76,1.75,1.74,9.950000000000001,10.53,10.98,11.43,11.88,12.32,12.84,13.34,14.67,24.43,24.11,23.94,23.740000000000002,23.55,23.36,23.17,22.990000000000002,22.61,N/A,N/A +2012,5,17,10,30,101590,100420,99290,74.62,0,2.08,2.18,2.19,2.2,2.21,2.21,2.22,2.22,2.24,12.48,13.39,13.870000000000001,14.35,14.82,15.26,15.75,16.22,17.34,24.36,24.03,23.85,23.66,23.47,23.28,23.09,22.91,22.52,N/A,N/A +2012,5,17,11,30,101600,100430,99300,74.69,0,1.61,1.68,1.69,1.69,1.69,1.7,1.7,1.7,1.7,39.5,39.47,39.43,39.4,39.35,39.300000000000004,39.27,39.24,39.160000000000004,24.400000000000002,24.07,23.900000000000002,23.7,23.51,23.32,23.13,22.94,22.55,N/A,N/A +2012,5,17,12,30,101620,100450,99320,74.47,0,1.84,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9000000000000001,23.900000000000002,24.25,24.43,24.62,24.810000000000002,24.990000000000002,25.19,25.38,25.79,24.39,24.07,23.89,23.7,23.5,23.32,23.12,22.94,22.55,N/A,N/A +2012,5,17,13,30,101630,100470,99340,75.2,0,2.8000000000000003,2.92,2.93,2.93,2.92,2.91,2.91,2.9,2.88,16.86,17.2,17.38,17.55,17.73,17.89,18.080000000000002,18.26,18.68,24.330000000000002,23.990000000000002,23.82,23.63,23.44,23.25,23.05,22.87,22.490000000000002,N/A,N/A +2012,5,17,14,30,101650,100490,99350,73.5,0,3.21,3.36,3.38,3.37,3.37,3.36,3.35,3.34,3.31,20.79,21.07,21.240000000000002,21.400000000000002,21.57,21.740000000000002,21.93,22.11,22.61,24.36,24.02,23.85,23.650000000000002,23.46,23.27,23.080000000000002,22.900000000000002,22.52,N/A,N/A +2012,5,17,15,30,101660,100490,99360,71.14,0,3.4,3.5700000000000003,3.59,3.6,3.6,3.59,3.59,3.58,3.5700000000000003,27.38,27.62,27.75,27.88,28.02,28.150000000000002,28.310000000000002,28.46,28.87,24.400000000000002,24.060000000000002,23.89,23.69,23.5,23.31,23.12,22.94,22.56,N/A,N/A +2012,5,17,16,30,101670,100500,99370,70.69,0,2.99,3.12,3.14,3.15,3.15,3.14,3.14,3.14,3.14,45.25,45.47,45.57,45.69,45.800000000000004,45.910000000000004,46.050000000000004,46.19,46.54,24.51,24.16,23.990000000000002,23.79,23.6,23.42,23.22,23.04,22.67,N/A,N/A +2012,5,17,17,30,101640,100470,99340,70.81,0,2.63,2.7600000000000002,2.77,2.7800000000000002,2.79,2.8000000000000003,2.8000000000000003,2.81,2.85,73.02,73.09,73.01,72.91,72.82000000000001,72.73,72.60000000000001,72.47,72.03,24.650000000000002,24.3,24.13,23.93,23.75,23.57,23.38,23.21,22.86,N/A,N/A +2012,5,17,18,30,101600,100440,99310,71.63,0,2.59,2.69,2.69,2.69,2.68,2.68,2.67,2.66,2.66,115.84,115.63,115.43,115.2,114.95,114.7,114.33,113.96000000000001,112.59,24.75,24.400000000000002,24.23,24.04,23.85,23.67,23.490000000000002,23.31,22.98,N/A,N/A +2012,5,17,19,30,101590,100420,99290,74.47,0,4.43,4.67,4.69,4.7,4.69,4.68,4.67,4.66,4.63,150.17000000000002,150.08,149.98,149.88,149.77,149.65,149.5,149.35,148.76,24.86,24.51,24.34,24.14,23.96,23.78,23.59,23.42,23.080000000000002,N/A,N/A +2012,5,17,20,30,101530,100360,99240,75.63,0,3.97,4.19,4.22,4.23,4.23,4.22,4.21,4.21,4.18,164.57,164.38,164.22,164.05,163.89000000000001,163.73,163.51,163.29,162.65,24.95,24.61,24.44,24.240000000000002,24.060000000000002,23.88,23.69,23.51,23.16,N/A,N/A +2012,5,17,21,30,101510,100340,99220,74.51,0,3.5500000000000003,3.74,3.77,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.74,179.81,179.63,179.51,179.36,179.23,179.08,178.91,178.74,178.32,25.12,24.78,24.61,24.42,24.23,24.04,23.85,23.67,23.3,N/A,N/A +2012,5,17,22,30,101470,100310,99180,71.60000000000001,0,3.6,3.8000000000000003,3.83,3.84,3.85,3.84,3.84,3.83,3.8200000000000003,183.4,183.22,183.1,182.97,182.85,182.71,182.57,182.42000000000002,182.04,25.240000000000002,24.92,24.75,24.560000000000002,24.37,24.19,23.990000000000002,23.81,23.44,N/A,N/A +2012,5,17,23,30,101440,100280,99150,71.84,0,4.3,4.58,4.62,4.64,4.64,4.63,4.62,4.61,4.58,184.86,184.68,184.58,184.47,184.35,184.23,184.08,183.94,183.55,25.19,24.89,24.72,24.53,24.34,24.16,23.96,23.78,23.41,N/A,N/A +2012,5,18,0,30,101430,100260,99140,73.94,0,4.2700000000000005,4.55,4.6000000000000005,4.61,4.61,4.61,4.61,4.6000000000000005,4.57,182.53,182.36,182.27,182.16,182.06,181.94,181.81,181.69,181.35,25.01,24.7,24.54,24.34,24.150000000000002,23.97,23.77,23.59,23.21,N/A,N/A +2012,5,18,1,30,101380,100220,99090,74.96000000000001,0,4.14,4.38,4.41,4.42,4.41,4.4,4.39,4.37,4.32,186.34,186.36,186.36,186.36,186.36,186.36,186.34,186.33,186.26,24.830000000000002,24.52,24.35,24.16,23.97,23.78,23.59,23.41,23.04,N/A,N/A +2012,5,18,2,30,101400,100240,99110,75.23,0,4.41,4.67,4.71,4.72,4.71,4.7,4.69,4.67,4.62,187.87,187.86,187.81,187.76,187.71,187.66,187.6,187.54,187.33,24.77,24.46,24.28,24.09,23.900000000000002,23.71,23.52,23.34,22.97,N/A,N/A +2012,5,18,3,30,101410,100250,99120,76.26,0,4.28,4.54,4.58,4.59,4.59,4.59,4.58,4.57,4.53,191.81,191.76,191.73000000000002,191.71,191.67000000000002,191.62,191.56,191.5,191.29,24.7,24.38,24.21,24.01,23.82,23.64,23.45,23.27,22.89,N/A,N/A +2012,5,18,4,30,101410,100250,99120,76.81,0,4.55,4.82,4.86,4.87,4.87,4.86,4.8500000000000005,4.83,4.79,188.89000000000001,188.84,188.81,188.76,188.71,188.65,188.58,188.5,188.28,24.63,24.3,24.13,23.93,23.75,23.56,23.37,23.2,22.830000000000002,N/A,N/A +2012,5,18,5,30,101410,100250,99120,75.08,0,4.34,4.6000000000000005,4.64,4.66,4.66,4.66,4.65,4.64,4.62,191.42000000000002,191.42000000000002,191.42000000000002,191.4,191.39000000000001,191.36,191.33,191.31,191.16,24.62,24.29,24.12,23.93,23.740000000000002,23.56,23.37,23.19,22.830000000000002,N/A,N/A +2012,5,18,6,30,101430,100270,99140,74.89,0,3.96,4.2,4.24,4.25,4.26,4.26,4.25,4.25,4.23,193.89000000000001,193.85,193.84,193.84,193.82,193.79,193.76,193.72,193.59,24.59,24.27,24.1,23.91,23.73,23.54,23.35,23.17,22.8,N/A,N/A +2012,5,18,7,30,101450,100280,99150,76.21000000000001,0,3.91,4.13,4.16,4.17,4.17,4.16,4.15,4.14,4.1,204.73000000000002,204.75,204.71,204.68,204.64000000000001,204.59,204.54,204.49,204.32,24.48,24.16,23.990000000000002,23.8,23.62,23.43,23.240000000000002,23.07,22.71,N/A,N/A +2012,5,18,8,30,101450,100290,99160,74.47,0,3.8000000000000003,4.01,4.04,4.05,4.05,4.04,4.03,4.0200000000000005,3.98,204.71,204.65,204.61,204.56,204.51,204.45000000000002,204.38,204.31,204.09,24.490000000000002,24.17,24,23.81,23.62,23.44,23.240000000000002,23.06,22.7,N/A,N/A +2012,5,18,9,30,101430,100270,99140,74.06,0,3.42,3.6,3.63,3.63,3.63,3.63,3.63,3.62,3.6,207.62,207.45000000000002,207.36,207.25,207.15,207.04,206.91,206.79,206.4,24.45,24.13,23.96,23.77,23.580000000000002,23.400000000000002,23.2,23.02,22.66,N/A,N/A +2012,5,18,10,30,101450,100280,99150,72.34,0,2.7800000000000002,2.92,2.94,2.95,2.95,2.95,2.95,2.94,2.93,203.83,203.73000000000002,203.64000000000001,203.54,203.43,203.31,203.17000000000002,203.03,202.62,24.48,24.16,23.990000000000002,23.8,23.61,23.42,23.23,23.05,22.68,N/A,N/A +2012,5,18,11,30,101450,100290,99160,73.56,0,2.37,2.48,2.5,2.5,2.5,2.5,2.5,2.5,2.5,184.46,184.35,184.3,184.23,184.15,184.06,183.95000000000002,183.85,183.49,24.37,24.060000000000002,23.89,23.69,23.5,23.32,23.13,22.95,22.580000000000002,N/A,N/A +2012,5,18,12,30,101460,100300,99170,74.69,0,2.39,2.49,2.5,2.5,2.5,2.5,2.49,2.49,2.48,183.4,183.22,183.15,183.07,182.99,182.9,182.79,182.68,182.36,24.29,23.96,23.79,23.6,23.41,23.23,23.03,22.85,22.48,N/A,N/A +2012,5,18,13,30,101490,100320,99190,75.5,0,1.81,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.9000000000000001,174.33,174.16,174.13,174.08,174.03,173.98,173.91,173.84,173.62,24.23,23.91,23.740000000000002,23.54,23.35,23.17,22.98,22.8,22.43,N/A,N/A +2012,5,18,14,30,101530,100360,99230,75.82000000000001,0,1.76,1.83,1.84,1.84,1.84,1.84,1.84,1.85,1.85,156.85,156.77,156.71,156.65,156.59,156.52,156.44,156.36,156.19,24.27,23.94,23.77,23.57,23.38,23.2,23,22.82,22.45,N/A,N/A +2012,5,18,15,30,101540,100370,99240,77.39,0,3.1,3.2600000000000002,3.2800000000000002,3.29,3.29,3.29,3.29,3.29,3.2800000000000002,159.33,159.36,159.35,159.35,159.33,159.31,159.3,159.3,159.26,24.29,23.95,23.77,23.57,23.38,23.19,22.990000000000002,22.81,22.43,N/A,N/A +2012,5,18,16,30,101530,100370,99240,78.64,0,3.11,3.25,3.27,3.2800000000000002,3.2800000000000002,3.2800000000000002,3.27,3.27,3.25,171.74,171.77,171.76,171.73,171.71,171.69,171.66,171.64000000000001,171.58,24.28,23.93,23.75,23.55,23.36,23.17,22.98,22.79,22.41,N/A,N/A +2012,5,18,17,30,101530,100370,99240,78.49,0,2.46,2.57,2.58,2.58,2.59,2.59,2.59,2.58,2.58,163.33,163.15,163.08,163,162.93,162.87,162.79,162.72,162.54,24.36,23.990000000000002,23.81,23.62,23.42,23.240000000000002,23.04,22.85,22.47,N/A,N/A +2012,5,18,18,30,101540,100370,99240,78.33,0,2.94,3.08,3.1,3.11,3.11,3.11,3.12,3.11,3.11,157.65,157.58,157.55,157.52,157.49,157.46,157.43,157.39000000000001,157.32,24.48,24.11,23.93,23.73,23.54,23.35,23.150000000000002,22.97,22.59,N/A,N/A +2012,5,18,19,30,101520,100360,99230,77.08,0,3.21,3.37,3.4,3.41,3.42,3.42,3.43,3.43,3.43,154.58,154.49,154.47,154.43,154.39000000000001,154.36,154.31,154.27,154.18,24.62,24.26,24.080000000000002,23.88,23.69,23.5,23.3,23.12,22.740000000000002,N/A,N/A +2012,5,18,20,30,101490,100330,99200,76.98,0,3.56,3.75,3.7800000000000002,3.8000000000000003,3.81,3.8200000000000003,3.8200000000000003,3.8200000000000003,3.83,155.25,155.17000000000002,155.13,155.08,155.04,155.01,154.96,154.91,154.8,24.67,24.310000000000002,24.14,23.93,23.740000000000002,23.55,23.36,23.17,22.79,N/A,N/A +2012,5,18,21,30,101440,100280,99150,76.26,0,3.5700000000000003,3.7600000000000002,3.8000000000000003,3.81,3.83,3.83,3.84,3.84,3.85,153.70000000000002,153.66,153.66,153.65,153.63,153.62,153.6,153.58,153.52,24.72,24.37,24.19,23.990000000000002,23.8,23.61,23.42,23.23,22.85,N/A,N/A +2012,5,18,22,30,101420,100260,99130,76.62,0,3.77,3.99,4.03,4.0600000000000005,4.07,4.08,4.08,4.09,4.09,151.44,151.44,151.43,151.42000000000002,151.41,151.41,151.4,151.39000000000001,151.41,24.71,24.37,24.2,24,23.81,23.62,23.42,23.240000000000002,22.85,N/A,N/A +2012,5,18,23,30,101400,100240,99110,78.03,0,4.1,4.38,4.43,4.46,4.48,4.5,4.5,4.51,4.5200000000000005,145.47,145.44,145.43,145.42000000000002,145.41,145.41,145.41,145.41,145.42000000000002,24.63,24.3,24.13,23.93,23.740000000000002,23.56,23.36,23.18,22.79,N/A,N/A +2012,5,19,0,30,101360,100200,99070,79.23,0,4.13,4.4,4.45,4.47,4.49,4.5,4.5,4.5,4.5,147.29,147.33,147.33,147.34,147.35,147.37,147.39000000000001,147.41,147.46,24.5,24.18,24,23.81,23.62,23.43,23.240000000000002,23.05,22.67,N/A,N/A +2012,5,19,1,30,101340,100180,99050,81.14,0,4.7,5.01,5.0600000000000005,5.09,5.1000000000000005,5.11,5.11,5.11,5.11,150.59,150.63,150.64000000000001,150.65,150.67000000000002,150.68,150.70000000000002,150.72,150.76,24.36,24.03,23.85,23.66,23.47,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A +2012,5,19,2,30,101350,100190,99060,82.84,0,5.39,5.7700000000000005,5.84,5.88,5.9,5.91,5.91,5.91,5.91,155.48,155.43,155.44,155.44,155.44,155.44,155.44,155.44,155.43,24.28,23.93,23.76,23.56,23.37,23.18,22.98,22.8,22.42,N/A,N/A +2012,5,19,3,30,101350,100190,99060,84.2,0,4.95,5.26,5.32,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.34,158.24,158.27,158.28,158.28,158.29,158.3,158.31,158.33,158.35,24.18,23.830000000000002,23.66,23.46,23.27,23.09,22.89,22.71,22.34,N/A,N/A +2012,5,19,4,30,101340,100180,99050,85.43,0,5.15,5.5,5.57,5.6000000000000005,5.62,5.62,5.62,5.62,5.62,163.53,163.45000000000002,163.44,163.43,163.43,163.42000000000002,163.4,163.4,163.38,24.11,23.76,23.580000000000002,23.38,23.19,23.01,22.81,22.63,22.25,N/A,N/A +2012,5,19,5,30,101340,100180,99050,86.54,0,5.26,5.62,5.69,5.72,5.73,5.74,5.75,5.75,5.75,167.89000000000001,167.89000000000001,167.85,167.83,167.8,167.77,167.74,167.71,167.63,24.060000000000002,23.7,23.52,23.32,23.13,22.95,22.75,22.57,22.19,N/A,N/A +2012,5,19,6,30,101360,100200,99070,87.06,0,5.2,5.5200000000000005,5.59,5.62,5.63,5.64,5.65,5.65,5.66,169.02,169.01,168.99,168.97,168.95000000000002,168.91,168.89000000000001,168.87,168.77,24.1,23.72,23.54,23.34,23.150000000000002,22.96,22.77,22.59,22.21,N/A,N/A +2012,5,19,7,30,101390,100230,99100,87.57000000000001,0,5.29,5.64,5.71,5.74,5.76,5.7700000000000005,5.78,5.79,5.79,170.6,170.6,170.59,170.58,170.56,170.54,170.52,170.5,170.45000000000002,24.14,23.76,23.580000000000002,23.38,23.19,23,22.8,22.62,22.240000000000002,N/A,N/A +2012,5,19,8,30,101370,100210,99080,87.82000000000001,0,5.39,5.74,5.82,5.8500000000000005,5.87,5.89,5.9,5.91,5.91,169.96,169.97,169.97,169.96,169.96,169.95000000000002,169.95000000000002,169.94,169.91,24.16,23.78,23.6,23.39,23.2,23.01,22.82,22.63,22.25,N/A,N/A +2012,5,19,9,30,101390,100220,99100,88.31,0,5.25,5.59,5.67,5.7,5.73,5.74,5.74,5.75,5.74,168.70000000000002,168.87,168.9,168.93,168.96,169,169.04,169.08,169.16,24.12,23.740000000000002,23.55,23.35,23.16,22.97,22.77,22.59,22.2,N/A,N/A +2012,5,19,10,30,101410,100250,99120,88.4,0,4.64,4.92,4.98,5.01,5.0200000000000005,5.04,5.04,5.05,5.07,158.82,158.83,158.85,158.86,158.87,158.87,158.87,158.86,158.83,24.1,23.72,23.54,23.34,23.150000000000002,22.96,22.77,22.59,22.21,N/A,N/A +2012,5,19,11,30,101430,100270,99140,87.27,0,4.9,5.17,5.22,5.23,5.23,5.23,5.22,5.2,5.15,154.28,154.49,154.63,154.76,154.88,155,155.13,155.24,155.53,24.16,23.79,23.61,23.41,23.21,23.02,22.830000000000002,22.64,22.26,N/A,N/A +2012,5,19,12,30,101460,100300,99170,86.3,0,4.46,4.76,4.83,4.87,4.9,4.92,4.93,4.94,4.96,155.41,155.43,155.43,155.42000000000002,155.41,155.4,155.38,155.37,155.32,24.19,23.81,23.63,23.43,23.240000000000002,23.05,22.85,22.66,22.28,N/A,N/A +2012,5,19,13,30,101500,100330,99200,81.4,0,4.66,4.93,4.99,5.01,5.01,5.01,4.99,4.98,4.93,151.99,152.29,152.42000000000002,152.56,152.67000000000002,152.79,152.9,153.01,153.26,24.42,24.060000000000002,23.88,23.68,23.490000000000002,23.3,23.11,22.92,22.54,N/A,N/A +2012,5,19,14,30,101520,100360,99230,82.4,0,4.13,4.32,4.3500000000000005,4.3500000000000005,4.34,4.33,4.3100000000000005,4.3,4.25,152.37,152.43,152.49,152.53,152.57,152.61,152.65,152.68,152.76,24.400000000000002,24.04,23.86,23.67,23.47,23.29,23.09,22.91,22.54,N/A,N/A +2012,5,19,15,30,101570,100410,99280,79.53,0,4.91,5.19,5.24,5.26,5.26,5.26,5.26,5.25,5.22,147.62,147.67000000000002,147.69,147.70000000000002,147.72,147.72,147.72,147.72,147.71,24.650000000000002,24.28,24.11,23.91,23.71,23.53,23.330000000000002,23.14,22.76,N/A,N/A +2012,5,19,16,30,101600,100440,99310,64.7,0,3.96,4.3,4.42,4.51,4.6000000000000005,4.68,4.7700000000000005,4.8500000000000005,5.03,141.6,141.75,141.76,141.74,141.72,141.68,141.63,141.57,141.43,25.51,25.22,25.060000000000002,24.88,24.7,24.53,24.35,24.18,23.82,N/A,N/A +2012,5,19,17,30,101590,100430,99300,67.09,0,4.24,4.57,4.64,4.68,4.72,4.75,4.76,4.78,4.79,139.93,139.83,139.85,139.87,139.88,139.89000000000001,139.9,139.92000000000002,139.94,25.38,25.05,24.87,24.67,24.48,24.29,24.09,23.91,23.52,N/A,N/A +2012,5,19,18,30,101600,100430,99310,71.68,0,4.71,5.04,5.12,5.16,5.19,5.21,5.22,5.23,5.25,126.52,126.85000000000001,127.11,127.36,127.58,127.78,127.98,128.16,128.53,25.3,24.96,24.78,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A +2012,5,19,19,30,101600,100440,99310,75.92,0,4.89,5.22,5.3,5.34,5.37,5.39,5.4,5.41,5.42,123.3,123.47,123.53,123.57000000000001,123.59,123.62,123.64,123.64,123.66,25.12,24.77,24.59,24.39,24.2,24.01,23.81,23.62,23.240000000000002,N/A,N/A +2012,5,19,20,30,101570,100400,99280,75.54,0,4.44,4.72,4.79,4.82,4.8500000000000005,4.86,4.88,4.9,4.91,118.91,119.3,119.55,119.79,120.02,120.24000000000001,120.46000000000001,120.67,121.13,25.080000000000002,24.73,24.560000000000002,24.36,24.17,23.98,23.79,23.6,23.22,N/A,N/A +2012,5,19,21,30,101550,100380,99260,77.69,0,5.0600000000000005,5.39,5.44,5.47,5.48,5.48,5.47,5.46,5.43,123.43,123.4,123.37,123.34,123.31,123.28,123.25,123.23,123.16,25.04,24.7,24.52,24.32,24.13,23.94,23.740000000000002,23.56,23.18,N/A,N/A +2012,5,19,22,30,101530,100360,99240,73.28,0,4.69,5.09,5.19,5.25,5.29,5.33,5.3500000000000005,5.38,5.42,125.98,126.08,126.11,126.14,126.16,126.18,126.2,126.21000000000001,126.24000000000001,25.21,24.87,24.7,24.5,24.310000000000002,24.12,23.92,23.740000000000002,23.35,N/A,N/A +2012,5,19,23,30,101520,100360,99230,75.27,0,5.12,5.48,5.57,5.61,5.65,5.67,5.69,5.71,5.75,125.83,125.11,124.74000000000001,124.4,124.10000000000001,123.83,123.57000000000001,123.33,122.88,25.16,24.85,24.68,24.490000000000002,24.3,24.11,23.92,23.740000000000002,23.36,N/A,N/A +2012,5,20,0,30,101490,100330,99210,77.08,0,5.24,5.66,5.76,5.8100000000000005,5.8500000000000005,5.88,5.9,5.92,5.95,120.09,120.66,120.91,121.16,121.38,121.58,121.77,121.95,122.3,25.1,24.77,24.6,24.400000000000002,24.21,24.02,23.82,23.63,23.25,N/A,N/A +2012,5,20,1,30,101490,100320,99200,73.7,0,5.87,6.38,6.51,6.59,6.65,6.7,6.74,6.78,6.8500000000000005,130.27,130.19,130.14000000000001,130.09,130.05,130.02,129.98,129.95,129.9,25.27,24.96,24.79,24.6,24.41,24.23,24.03,23.85,23.47,N/A,N/A +2012,5,20,2,30,101500,100340,99210,77.16,0,6.34,6.88,6.99,7.0600000000000005,7.1000000000000005,7.13,7.16,7.17,7.2,137.35,137.35,137.37,137.4,137.42000000000002,137.44,137.47,137.49,137.53,25.04,24.7,24.52,24.32,24.13,23.94,23.740000000000002,23.56,23.17,N/A,N/A +2012,5,20,3,30,101520,100360,99230,77.37,0,6.21,6.72,6.8500000000000005,6.92,6.98,7.0200000000000005,7.0600000000000005,7.08,7.13,137.53,137.51,137.51,137.5,137.49,137.47,137.45000000000002,137.43,137.38,25.01,24.67,24.5,24.3,24.11,23.92,23.73,23.54,23.16,N/A,N/A +2012,5,20,4,30,101530,100370,99240,72.46000000000001,0,6.8,7.41,7.55,7.63,7.69,7.73,7.76,7.78,7.82,137.71,137.74,137.79,137.84,137.89000000000001,137.94,137.99,138.04,138.15,25.17,24.84,24.67,24.47,24.28,24.1,23.900000000000002,23.71,23.330000000000002,N/A,N/A +2012,5,20,5,30,101540,100380,99250,72.88,0,6.33,6.890000000000001,7.03,7.12,7.18,7.23,7.28,7.3100000000000005,7.38,140.69,140.57,140.51,140.45000000000002,140.39000000000001,140.33,140.27,140.22,140.1,25.080000000000002,24.75,24.57,24.38,24.19,24,23.8,23.62,23.23,N/A,N/A +2012,5,20,6,30,101550,100390,99260,75.10000000000001,0,7.15,7.78,7.930000000000001,8.02,8.08,8.120000000000001,8.16,8.18,8.22,147.94,147.96,147.92000000000002,147.88,147.84,147.79,147.73,147.68,147.58,24.98,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A +2012,5,20,7,30,101610,100440,99310,73.95,0,7.63,8.27,8.4,8.46,8.49,8.51,8.51,8.51,8.49,145.1,145.17000000000002,145.21,145.25,145.28,145.32,145.34,145.37,145.41,25,24.650000000000002,24.48,24.28,24.080000000000002,23.89,23.69,23.51,23.12,N/A,N/A +2012,5,20,8,30,101590,100430,99300,70.62,0,7.13,7.75,7.9,7.98,8.040000000000001,8.08,8.11,8.13,8.15,150.11,150.20000000000002,150.28,150.35,150.42000000000002,150.48,150.56,150.62,150.76,25.02,24.69,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.150000000000002,N/A,N/A +2012,5,20,9,30,101630,100470,99340,66.52,0,6.0600000000000005,6.58,6.71,6.79,6.8500000000000005,6.9,6.93,6.96,7.01,158.61,158.04,157.79,157.57,157.37,157.19,157.03,156.87,156.59,25.12,24.8,24.62,24.43,24.23,24.04,23.84,23.66,23.27,N/A,N/A +2012,5,20,10,30,101680,100510,99380,69.91,0,5.21,5.64,5.75,5.82,5.87,5.92,5.96,5.99,6.05,146.91,147.16,147.27,147.37,147.45000000000002,147.51,147.57,147.62,147.70000000000002,24.93,24.6,24.42,24.22,24.03,23.84,23.64,23.45,23.07,N/A,N/A +2012,5,20,11,30,101650,100490,99360,75.01,0,5.73,6.12,6.19,6.21,6.22,6.21,6.2,6.19,6.15,153.27,153.18,153.09,152.98,152.87,152.75,152.63,152.51,152.25,24.67,24.32,24.14,23.94,23.75,23.56,23.36,23.17,22.78,N/A,N/A +2012,5,20,12,30,101720,100550,99420,72.74,0,4.13,4.39,4.46,4.49,4.51,4.54,4.55,4.5600000000000005,4.59,139.75,140.01,140.14000000000001,140.26,140.36,140.45000000000002,140.55,140.63,140.81,24.69,24.35,24.18,23.98,23.79,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A +2012,5,20,13,30,101770,100610,99470,69.97,0,3.92,4.14,4.18,4.2,4.21,4.22,4.23,4.24,4.24,130.98,130.66,130.49,130.32,130.16,130.01,129.86,129.72,129.43,24.76,24.43,24.25,24.060000000000002,23.86,23.67,23.48,23.29,22.900000000000002,N/A,N/A +2012,5,20,14,30,101810,100640,99510,74.29,0,3.59,3.72,3.72,3.7,3.67,3.65,3.62,3.59,3.5300000000000002,131.23,130.24,129.65,129.07,128.51,127.95,127.38000000000001,126.86,125.64,24.57,24.22,24.04,23.84,23.650000000000002,23.46,23.26,23.080000000000002,22.69,N/A,N/A +2012,5,20,15,30,101860,100690,99560,70.54,0,2.88,3.04,3.0700000000000003,3.09,3.1,3.12,3.13,3.13,3.15,86.9,87.85000000000001,88.43,88.98,89.49,89.98,90.48,90.94,91.91,24.79,24.46,24.28,24.080000000000002,23.89,23.7,23.51,23.32,22.94,N/A,N/A +2012,5,20,16,30,101890,100730,99590,67.8,0,3.52,3.74,3.79,3.8200000000000003,3.85,3.86,3.88,3.89,3.91,79.44,80.10000000000001,80.38,80.63,80.83,80.99,81.15,81.29,81.52,25.05,24.71,24.54,24.34,24.14,23.96,23.76,23.57,23.18,N/A,N/A +2012,5,20,17,30,101890,100720,99590,68.42,0,3.5100000000000002,3.72,3.77,3.8000000000000003,3.81,3.83,3.84,3.85,3.86,90.51,90.66,90.71000000000001,90.75,90.78,90.8,90.83,90.85000000000001,90.87,25.080000000000002,24.73,24.55,24.35,24.16,23.97,23.77,23.59,23.2,N/A,N/A +2012,5,20,18,30,101890,100720,99590,66.38,0,3.72,3.96,4.0200000000000005,4.0600000000000005,4.09,4.11,4.13,4.15,4.18,89.77,89.85000000000001,89.88,89.92,89.97,90.02,90.09,90.15,90.29,25.26,24.91,24.73,24.54,24.35,24.16,23.96,23.78,23.39,N/A,N/A +2012,5,20,19,30,101880,100710,99580,67.54,0,3.36,3.5500000000000003,3.59,3.61,3.62,3.63,3.63,3.64,3.65,87.10000000000001,87.38,87.57000000000001,87.77,87.95,88.12,88.29,88.46000000000001,88.8,25.35,25.01,24.830000000000002,24.63,24.44,24.25,24.060000000000002,23.87,23.490000000000002,N/A,N/A +2012,5,20,20,30,101850,100680,99550,66.44,0,3.7800000000000002,4,4.04,4.07,4.08,4.09,4.1,4.1,4.12,103.21000000000001,103.03,102.91,102.79,102.69,102.59,102.48,102.39,102.21000000000001,25.490000000000002,25.150000000000002,24.98,24.79,24.59,24.41,24.21,24.03,23.650000000000002,N/A,N/A +2012,5,20,21,30,101800,100640,99510,67.08,0,4.38,4.65,4.69,4.71,4.72,4.73,4.73,4.74,4.75,137.17000000000002,137.02,136.93,136.84,136.76,136.67000000000002,136.57,136.48,136.22,25.52,25.19,25.02,24.830000000000002,24.64,24.46,24.26,24.080000000000002,23.71,N/A,N/A +2012,5,20,22,30,101770,100610,99480,68,0,3.74,3.97,4.01,4.03,4.04,4.05,4.05,4.05,4.0600000000000005,151.65,151.34,151.12,150.88,150.65,150.42000000000002,150.17000000000002,149.92000000000002,149.27,25.490000000000002,25.18,25.01,24.82,24.63,24.44,24.25,24.07,23.69,N/A,N/A +2012,5,20,23,30,101750,100590,99460,71.82000000000001,0,3.2600000000000002,3.46,3.49,3.5100000000000002,3.52,3.52,3.5300000000000002,3.5300000000000002,3.5300000000000002,163.15,162.82,162.56,162.3,162.05,161.82,161.54,161.28,160.67000000000002,25.330000000000002,25.03,24.86,24.66,24.47,24.29,24.1,23.92,23.54,N/A,N/A +2012,5,21,0,30,101730,100560,99430,70.77,0,2.92,3.09,3.12,3.13,3.13,3.14,3.14,3.14,3.16,173.70000000000002,173.16,172.81,172.42000000000002,172.01,171.58,171.06,170.56,169.07,25.32,25.01,24.85,24.650000000000002,24.46,24.28,24.09,23.91,23.54,N/A,N/A +2012,5,21,1,30,101730,100570,99440,72.71000000000001,0,2.74,2.9,2.93,2.95,2.96,2.97,2.97,2.98,2.99,168.58,168.12,167.83,167.52,167.21,166.9,166.54,166.21,165.29,25.21,24.900000000000002,24.740000000000002,24.54,24.35,24.17,23.97,23.79,23.42,N/A,N/A +2012,5,21,2,30,101760,100590,99460,73.01,0,1.95,2.04,2.06,2.06,2.07,2.07,2.07,2.08,2.09,180.47,179.69,179.26,178.8,178.36,177.91,177.39000000000001,176.9,175.56,25.150000000000002,24.84,24.68,24.48,24.29,24.1,23.91,23.73,23.35,N/A,N/A +2012,5,21,3,30,101770,100600,99470,74.56,0,2.14,2.24,2.25,2.2600000000000002,2.2600000000000002,2.25,2.25,2.25,2.25,196.56,196.23000000000002,196.04,195.82,195.59,195.36,195.06,194.76,193.75,25.080000000000002,24.76,24.59,24.400000000000002,24.21,24.02,23.830000000000002,23.650000000000002,23.27,N/A,N/A +2012,5,21,4,30,101790,100620,99490,75.64,0,1.9100000000000001,1.99,2,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.02,197.05,196.33,195.78,195.16,194.51,193.82,192.96,192.11,189.5,25.01,24.69,24.52,24.330000000000002,24.14,23.96,23.77,23.59,23.22,N/A,N/A +2012,5,21,5,30,101790,100620,99500,75.2,0,1.45,1.5,1.51,1.5,1.5,1.5,1.5,1.5,1.51,215.23000000000002,214.14000000000001,213.43,212.62,211.8,210.97,209.82,208.66,204.18,25,24.68,24.52,24.32,24.14,23.95,23.76,23.59,23.240000000000002,N/A,N/A +2012,5,21,6,30,101820,100650,99520,74.59,0,1.78,1.84,1.85,1.85,1.84,1.84,1.83,1.83,1.82,217.55,216.78,216.39000000000001,215.94,215.42000000000002,214.86,214.1,213.35,210.33,25.060000000000002,24.73,24.57,24.37,24.19,24,23.81,23.64,23.29,N/A,N/A +2012,5,21,7,30,101860,100700,99570,73.17,0,1.46,1.52,1.52,1.52,1.52,1.51,1.51,1.5,1.5,213.96,213.72,213.38,213.01,212.62,212.21,211.69,211.17000000000002,209.46,25.14,24.830000000000002,24.650000000000002,24.46,24.28,24.09,23.900000000000002,23.72,23.36,N/A,N/A +2012,5,21,8,30,101850,100690,99560,73.37,0,1.57,1.6300000000000001,1.62,1.62,1.61,1.6,1.59,1.58,1.56,228.23000000000002,227.87,227.66,227.41,227.15,226.89000000000001,226.52,226.17000000000002,224.99,25.11,24.79,24.62,24.43,24.240000000000002,24.060000000000002,23.86,23.68,23.31,N/A,N/A +2012,5,21,9,30,101890,100720,99590,72.78,0,1.57,1.61,1.61,1.6,1.59,1.57,1.56,1.54,1.5,269.51,269.18,269.1,269.01,268.88,268.71,268.49,268.26,267.34000000000003,25.14,24.830000000000002,24.650000000000002,24.46,24.27,24.09,23.900000000000002,23.72,23.36,N/A,N/A +2012,5,21,10,30,101910,100740,99610,72.01,0,1.93,2.0100000000000002,2.0100000000000002,2.0100000000000002,2,1.99,1.98,1.97,1.94,293.85,294.01,294.06,294.11,294.16,294.21,294.23,294.25,294.27,25.2,24.88,24.71,24.52,24.330000000000002,24.14,23.95,23.77,23.400000000000002,N/A,N/A +2012,5,21,11,30,101930,100760,99630,76.73,0,3.2800000000000002,3.37,3.34,3.3000000000000003,3.25,3.2,3.15,3.1,2.98,323.76,323.77,323.71,323.64,323.56,323.49,323.39,323.29,323.06,25.01,24.68,24.51,24.310000000000002,24.13,23.94,23.75,23.57,23.19,N/A,N/A +2012,5,21,12,30,101950,100780,99650,80.69,0,4.17,4.36,4.36,4.3500000000000005,4.32,4.28,4.24,4.2,4.09,332.35,332.6,332.8,333.02,333.23,333.43,333.67,333.90000000000003,334.48,24.52,24.16,23.98,23.78,23.59,23.41,23.21,23.04,22.66,N/A,N/A +2012,5,21,13,30,101990,100820,99690,78.22,0,3.74,3.92,3.93,3.92,3.91,3.89,3.87,3.85,3.7800000000000002,339.16,339.56,339.77,339.98,340.19,340.39,340.62,340.84000000000003,341.37,24.63,24.28,24.1,23.91,23.71,23.53,23.34,23.150000000000002,22.78,N/A,N/A +2012,5,21,14,30,102000,100840,99700,75.32000000000001,0,3.88,4.08,4.11,4.12,4.12,4.11,4.11,4.1,4.08,344.88,344.42,344.14,343.85,343.57,343.29,342.98,342.68,341.94,24.91,24.57,24.39,24.19,24,23.82,23.63,23.45,23.07,N/A,N/A +2012,5,21,15,30,102010,100840,99710,70.05,0,3.45,3.66,3.7,3.72,3.74,3.75,3.77,3.7800000000000002,3.81,343.15000000000003,342.87,342.68,342.49,342.3,342.12,341.92,341.72,341.21,25.27,24.94,24.77,24.57,24.39,24.2,24.01,23.830000000000002,23.46,N/A,N/A +2012,5,21,16,30,102000,100840,99710,64.13,0,3.08,3.27,3.31,3.34,3.36,3.38,3.41,3.43,3.52,334.66,334.93,335.14,335.35,335.55,335.76,336.01,336.24,336.83,25.82,25.51,25.34,25.150000000000002,24.97,24.79,24.6,24.42,24.07,N/A,N/A +2012,5,21,17,30,101970,100810,99680,62.17,0,2.77,2.96,3.0100000000000002,3.04,3.06,3.09,3.11,3.14,3.21,312.85,313.88,314.57,315.26,315.93,316.61,317.35,318.05,319.89,26.39,26.09,25.93,25.740000000000002,25.55,25.37,25.18,25,24.64,N/A,N/A +2012,5,21,18,30,101940,100780,99650,61.31,0,2.59,2.75,2.7800000000000002,2.8000000000000003,2.82,2.85,2.9,2.96,3.3200000000000003,275.19,276.67,277.7,278.88,280.15000000000003,281.53000000000003,283.59000000000003,285.77,294.90000000000003,26.71,26.41,26.25,26.060000000000002,25.88,25.71,25.54,25.39,25.18,N/A,N/A +2012,5,21,19,30,101910,100750,99620,61.08,0,2.5100000000000002,2.59,2.57,2.5300000000000002,2.49,2.44,2.4,2.36,3.0100000000000002,227.78,229.4,230.65,232.26,234.39000000000001,236.98000000000002,243.36,250.58,286.07,26.96,26.67,26.51,26.32,26.16,25.990000000000002,25.86,25.740000000000002,25.84,N/A,N/A +2012,5,21,20,30,101860,100700,99580,65.67,0,3.93,4.05,4,3.9,3.7,3.44,2.68,1.97,1.71,193.75,194.08,194.35,194.79,196.1,198.08,211.47,224.8,238.5,26.810000000000002,26.51,26.36,26.18,26.060000000000002,25.96,26.02,26.14,26,N/A,N/A +2012,5,21,21,30,101770,100610,99490,69.01,0,5.5200000000000005,5.86,5.87,5.8100000000000005,5.74,5.66,5.51,5.34,4.05,190.1,190.15,190.23,190.32,190.43,190.55,190.88,191.25,198.4,26.78,26.5,26.35,26.16,25.990000000000002,25.82,25.66,25.53,25.84,N/A,N/A +2012,5,21,22,30,101710,100560,99440,69.76,0,6.42,6.84,6.8500000000000005,6.8,6.72,6.61,6.16,5.62,4.88,192.03,192.01,191.99,191.96,191.9,191.82,192.19,192.71,195.34,26.650000000000002,26.45,26.330000000000002,26.18,26.09,26.02,26.09,26.22,26.28,N/A,N/A +2012,5,21,23,30,101680,100520,99400,69.26,0,6.5,6.9,6.93,6.93,6.8100000000000005,6.5600000000000005,6.22,5.87,5.23,195.34,195.38,195.36,195.33,195.41,195.6,196.37,197.31,200.3,26.57,26.41,26.32,26.27,26.310000000000002,26.42,26.560000000000002,26.7,26.61,N/A,N/A +2012,5,22,0,30,101620,100470,99350,71.33,0,6.5600000000000005,7.01,7.05,7.04,7.07,7.12,7.0600000000000005,6.96,6.5200000000000005,207.83,207.91,207.95000000000002,207.99,208.03,208.07,208.55,209.15,211.84,26.41,26.2,26.07,25.91,25.8,25.71,25.79,25.91,26.19,N/A,N/A +2012,5,22,1,30,101630,100470,99340,74.26,0,7.11,7.69,7.78,7.8,7.8,7.79,7.7700000000000005,7.75,7.73,228.32,228.29,228.25,228.21,228.17000000000002,228.11,228.03,227.93,227.42000000000002,26.18,25.92,25.77,25.59,25.42,25.25,25.080000000000002,24.93,24.76,N/A,N/A +2012,5,22,2,30,101640,100480,99360,75.22,0,7.390000000000001,8.01,8.11,8.14,8.15,8.14,8.120000000000001,8.11,8.07,241.11,241.06,240.99,240.93,240.87,240.81,240.72,240.63,240.05,26.080000000000002,25.810000000000002,25.66,25.47,25.3,25.12,24.94,24.78,24.54,N/A,N/A +2012,5,22,3,30,101650,100490,99370,75.64,0,6.26,6.79,6.890000000000001,6.93,6.95,6.96,6.95,6.95,6.95,242.67000000000002,242.76,242.81,242.83,242.84,242.84,242.83,242.83,242.79,26.05,25.77,25.62,25.43,25.25,25.07,24.89,24.72,24.38,N/A,N/A +2012,5,22,4,30,101640,100480,99360,76.06,0,5.92,6.390000000000001,6.47,6.49,6.51,6.51,6.5200000000000005,6.5200000000000005,6.6000000000000005,247.94,247.89000000000001,247.9,247.93,247.97,248.02,248.09,248.15,248.45000000000002,25.94,25.66,25.5,25.310000000000002,25.13,24.95,24.77,24.6,24.310000000000002,N/A,N/A +2012,5,22,5,30,101640,100480,99360,76.27,0,5.45,5.87,5.94,5.97,5.98,5.98,5.97,5.97,5.98,253.15,253.25,253.32,253.4,253.48000000000002,253.57,253.68,253.8,254.26000000000002,25.91,25.63,25.48,25.28,25.1,24.92,24.740000000000002,24.560000000000002,24.22,N/A,N/A +2012,5,22,6,30,101660,100500,99370,76.57000000000001,0,5.5600000000000005,5.97,6.04,6.0600000000000005,6.07,6.07,6.0600000000000005,6.05,6.04,261.88,261.91,261.89,261.88,261.88,261.87,261.87,261.86,261.88,25.98,25.66,25.5,25.3,25.12,24.93,24.75,24.57,24.22,N/A,N/A +2012,5,22,7,30,101640,100480,99350,75.42,0,6.09,6.5200000000000005,6.59,6.6000000000000005,6.6000000000000005,6.59,6.58,6.5600000000000005,6.5600000000000005,267.22,267.17,267.09000000000003,266.99,266.9,266.79,266.67,266.55,266.17,25.94,25.63,25.47,25.27,25.09,24.92,24.740000000000002,24.57,24.26,N/A,N/A +2012,5,22,8,30,101620,100460,99340,76.63,0,6.45,6.890000000000001,6.96,6.97,6.97,6.96,6.94,6.92,6.890000000000001,270.58,270.28000000000003,270.05,269.79,269.54,269.27,268.96,268.65,267.81,25.53,25.19,25.02,24.830000000000002,24.64,24.46,24.28,24.1,23.75,N/A,N/A +2012,5,22,9,30,101650,100490,99360,79.03,0,5.9,6.28,6.3500000000000005,6.37,6.38,6.37,6.3500000000000005,6.34,6.29,265.1,265.1,265.08,265.03000000000003,264.98,264.93,264.85,264.76,264.53000000000003,25.17,24.810000000000002,24.63,24.43,24.25,24.060000000000002,23.87,23.69,23.32,N/A,N/A +2012,5,22,10,30,101630,100460,99340,79.56,0,6.37,6.76,6.83,6.84,6.84,6.82,6.8100000000000005,6.79,6.74,261.6,261.74,261.81,261.88,261.94,261.99,262.03000000000003,262.05,262.06,24.97,24.61,24.43,24.23,24.05,23.86,23.67,23.5,23.14,N/A,N/A +2012,5,22,11,30,101650,100480,99350,80.98,0,6.15,6.5600000000000005,6.640000000000001,6.67,6.69,6.69,6.69,6.69,6.69,266.43,266.23,266.11,265.98,265.84000000000003,265.71,265.54,265.39,264.96,24.78,24.39,24.21,24.01,23.830000000000002,23.64,23.45,23.27,22.91,N/A,N/A +2012,5,22,12,30,101640,100480,99350,81.52,0,6.66,7.11,7.2,7.24,7.25,7.26,7.2700000000000005,7.2700000000000005,7.28,271.26,271.13,271.03000000000003,270.91,270.78000000000003,270.63,270.45,270.27,269.73,24.64,24.240000000000002,24.060000000000002,23.86,23.67,23.490000000000002,23.3,23.12,22.77,N/A,N/A +2012,5,22,13,30,101630,100470,99340,79.03,0,6.6000000000000005,7.05,7.140000000000001,7.18,7.21,7.22,7.24,7.25,7.3100000000000005,273.46,273.14,273,272.85,272.71,272.56,272.38,272.2,271.68,24.57,24.18,24,23.81,23.62,23.44,23.26,23.09,22.77,N/A,N/A +2012,5,22,14,30,101650,100490,99360,76.75,0,5.99,6.4,6.49,6.53,6.5600000000000005,6.59,6.62,6.65,6.79,265.98,265.8,265.7,265.58,265.46,265.34000000000003,265.2,265.06,264.65,24.73,24.35,24.18,23.98,23.8,23.62,23.44,23.27,22.95,N/A,N/A +2012,5,22,15,30,101630,100470,99340,74.54,0,5.72,6.08,6.15,6.18,6.2,6.21,6.22,6.24,6.3500000000000005,261.92,261.94,262.02,262.1,262.21,262.32,262.53000000000003,262.74,263.89,25.12,24.76,24.59,24.400000000000002,24.22,24.05,23.88,23.71,23.43,N/A,N/A +2012,5,22,16,30,101620,100460,99330,73.48,0,5.42,5.75,5.79,5.79,5.78,5.76,5.74,5.72,5.68,244.48000000000002,245.18,245.62,246.11,246.6,247.12,247.77,248.4,250.69,25.55,25.21,25.04,24.85,24.66,24.490000000000002,24.3,24.13,23.82,N/A,N/A +2012,5,22,17,30,101570,100410,99280,74.10000000000001,0,5.53,5.84,5.87,5.86,5.83,5.8,5.7700000000000005,5.74,5.58,231.53,232.05,232.45000000000002,232.99,233.76,234.72,237.33,240.31,255.18,25.91,25.580000000000002,25.43,25.25,25.080000000000002,24.93,24.86,24.810000000000002,25.16,N/A,N/A +2012,5,22,18,30,101520,100370,99250,76.69,0,5.43,5.74,5.76,5.74,5.7,5.65,5.58,5.5,4.98,230.23000000000002,230.57,230.81,231.14000000000001,231.62,232.21,233.94,235.96,253.01000000000002,26.2,25.89,25.73,25.55,25.39,25.240000000000002,25.150000000000002,25.080000000000002,25.560000000000002,N/A,N/A +2012,5,22,19,30,101490,100330,99210,78.54,0,5.32,5.64,5.67,5.65,5.62,5.57,5.5,5.42,4.64,218.4,218.48000000000002,218.57,218.67000000000002,218.79,218.92000000000002,219.16,219.41,223.8,26.310000000000002,25.990000000000002,25.82,25.63,25.45,25.28,25.11,24.95,24.94,N/A,N/A +2012,5,22,20,30,101430,100270,99150,77.23,0,6.51,6.96,7.0200000000000005,7.01,6.98,6.93,6.8500000000000005,6.7700000000000005,6.45,212.1,212.23000000000002,212.32,212.42000000000002,212.51,212.61,212.73000000000002,212.86,213.34,26.34,26.03,25.87,25.68,25.5,25.32,25.14,24.98,24.69,N/A,N/A +2012,5,22,21,30,101370,100220,99100,79,0,6.79,7.28,7.34,7.33,7.3,7.26,7.2,7.140000000000001,6.83,216.09,216,215.94,215.87,215.79,215.70000000000002,215.56,215.42000000000002,214.6,26.27,25.97,25.810000000000002,25.62,25.44,25.26,25.09,24.93,24.68,N/A,N/A +2012,5,22,22,30,101300,100150,99030,78.76,0,7.71,8.34,8.45,8.47,8.47,8.45,8.41,8.370000000000001,8.27,213.19,213.19,213.18,213.16,213.13,213.09,213.03,212.97,212.73000000000002,26.23,25.92,25.76,25.57,25.38,25.2,25.02,24.85,24.5,N/A,N/A +2012,5,22,23,30,101250,100090,98980,77.22,0,8.19,8.870000000000001,8.99,9.02,9.01,8.99,8.950000000000001,8.91,8.77,216.98000000000002,216.99,216.97,216.94,216.9,216.85,216.78,216.70000000000002,216.26,26.27,25.98,25.82,25.63,25.46,25.29,25.12,24.96,24.72,N/A,N/A +2012,5,23,0,30,101210,100060,98940,75.67,0,7.17,7.75,7.8500000000000005,7.87,7.87,7.86,7.84,7.82,7.7700000000000005,216.72,216.74,216.74,216.72,216.68,216.62,216.53,216.41,215.76,26.330000000000002,26.05,25.89,25.7,25.53,25.35,25.18,25.02,24.75,N/A,N/A +2012,5,23,1,30,101170,100010,98900,75.68,0,7.0600000000000005,7.63,7.73,7.75,7.76,7.76,7.75,7.73,7.7,219.06,219.07,219.06,219.04,219,218.97,218.91,218.84,218.51,26.240000000000002,25.94,25.78,25.59,25.41,25.23,25.05,24.88,24.55,N/A,N/A +2012,5,23,2,30,101150,100000,98890,76.78,0,7.24,7.82,7.91,7.930000000000001,7.930000000000001,7.91,7.88,7.8500000000000005,7.8,226.67000000000002,226.59,226.53,226.46,226.37,226.28,226.17000000000002,226.05,225.6,26.26,25.96,25.8,25.62,25.44,25.27,25.09,24.93,24.66,N/A,N/A +2012,5,23,3,30,101150,100000,98880,73.3,0,6.6000000000000005,7.15,7.25,7.29,7.3100000000000005,7.32,7.32,7.32,7.33,222.6,222.53,222.52,222.52,222.52,222.52,222.51,222.49,222.3,26.37,26.09,25.93,25.740000000000002,25.560000000000002,25.38,25.2,25.04,24.71,N/A,N/A +2012,5,23,4,30,101110,99960,98840,75.16,0,7.12,7.69,7.79,7.82,7.84,7.83,7.8100000000000005,7.78,7.69,221.61,221.52,221.52,221.51,221.5,221.48000000000002,221.44,221.4,221.25,26.21,25.91,25.75,25.560000000000002,25.38,25.2,25.02,24.84,24.490000000000002,N/A,N/A +2012,5,23,5,30,101100,99950,98830,76.55,0,6.58,7.15,7.2700000000000005,7.33,7.37,7.38,7.38,7.38,7.34,217.69,217.79,217.83,217.84,217.84,217.83,217.8,217.77,217.64000000000001,26.1,25.8,25.63,25.43,25.240000000000002,25.05,24.86,24.67,24.28,N/A,N/A +2012,5,23,6,30,101100,99950,98830,71.14,0,7.01,7.640000000000001,7.79,7.87,7.930000000000001,7.97,8.01,8.040000000000001,8.11,214.70000000000002,214.66,214.72,214.8,214.88,214.96,215.05,215.15,215.34,26.310000000000002,26.03,25.88,25.69,25.51,25.330000000000002,25.150000000000002,24.98,24.62,N/A,N/A +2012,5,23,7,30,101090,99940,98820,73.02,0,6.82,7.390000000000001,7.54,7.62,7.68,7.73,7.78,7.82,7.930000000000001,215.58,215.56,215.55,215.52,215.49,215.46,215.42000000000002,215.37,215.26,26.09,25.79,25.62,25.43,25.25,25.07,24.88,24.71,24.35,N/A,N/A +2012,5,23,8,30,101080,99920,98800,72.32000000000001,0,7.33,8.03,8.19,8.28,8.34,8.39,8.42,8.46,8.53,217.62,217.47,217.38,217.28,217.18,217.09,216.98000000000002,216.88,216.65,26.150000000000002,25.84,25.67,25.48,25.29,25.11,24.92,24.740000000000002,24.38,N/A,N/A +2012,5,23,9,30,101080,99920,98800,75.48,0,7.68,8.34,8.48,8.540000000000001,8.58,8.6,8.6,8.6,8.58,210.44,210.5,210.54,210.61,210.69,210.76,210.86,210.94,211.14000000000001,25.92,25.59,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A +2012,5,23,10,30,101090,99940,98820,72.23,0,7.19,7.82,7.98,8.07,8.14,8.19,8.22,8.26,8.3,210.69,210.4,210.25,210.1,209.97,209.84,209.71,209.59,209.36,25.990000000000002,25.69,25.53,25.330000000000002,25.150000000000002,24.96,24.77,24.580000000000002,24.21,N/A,N/A +2012,5,23,11,30,101060,99900,98790,69.27,0,7.03,7.66,7.82,7.92,7.99,8.05,8.11,8.16,8.25,203.75,203.72,203.76,203.81,203.86,203.91,203.95000000000002,203.99,204.09,26.02,25.7,25.53,25.34,25.150000000000002,24.97,24.77,24.59,24.22,N/A,N/A +2012,5,23,12,30,101070,99920,98800,68.48,0,6.69,7.2700000000000005,7.42,7.51,7.57,7.62,7.67,7.71,7.78,206.22,206.23000000000002,206.25,206.3,206.35,206.4,206.46,206.51,206.64000000000001,25.990000000000002,25.67,25.51,25.310000000000002,25.12,24.94,24.740000000000002,24.560000000000002,24.18,N/A,N/A +2012,5,23,13,30,101090,99930,98820,67.91,0,6.8,7.36,7.49,7.55,7.6000000000000005,7.62,7.640000000000001,7.65,7.67,193.4,193.73000000000002,193.93,194.12,194.29,194.45000000000002,194.6,194.74,195.01,25.98,25.67,25.5,25.310000000000002,25.12,24.93,24.740000000000002,24.560000000000002,24.18,N/A,N/A +2012,5,23,14,30,101070,99920,98800,70.42,0,7,7.63,7.76,7.84,7.890000000000001,7.92,7.94,7.96,7.97,199.23000000000002,199.41,199.39000000000001,199.34,199.27,199.19,199.1,199.01,198.79,25.85,25.52,25.34,25.150000000000002,24.96,24.77,24.57,24.39,24,N/A,N/A +2012,5,23,15,30,101110,99950,98830,67.95,0,6.51,7.09,7.21,7.29,7.34,7.37,7.4,7.42,7.45,191.38,191.6,191.61,191.6,191.59,191.55,191.52,191.49,191.4,25.94,25.61,25.44,25.240000000000002,25.04,24.86,24.66,24.47,24.09,N/A,N/A +2012,5,23,16,30,101070,99920,98800,63.690000000000005,0,7.25,7.87,8.02,8.11,8.19,8.24,8.290000000000001,8.33,8.39,192.87,192.91,192.9,192.88,192.86,192.84,192.81,192.78,192.72,26.09,25.78,25.62,25.42,25.240000000000002,25.05,24.86,24.68,24.29,N/A,N/A +2012,5,23,17,30,101060,99910,98790,66.86,0,7.72,8.34,8.48,8.540000000000001,8.58,8.61,8.63,8.64,8.66,192.77,192.78,192.77,192.75,192.73000000000002,192.70000000000002,192.67000000000002,192.65,192.6,25.96,25.64,25.47,25.27,25.09,24.900000000000002,24.71,24.53,24.150000000000002,N/A,N/A +2012,5,23,18,30,101020,99870,98750,64.45,0,7.48,8.15,8.31,8.4,8.47,8.52,8.56,8.59,8.65,180.74,180.92000000000002,181.14000000000001,181.36,181.57,181.77,181.98,182.17000000000002,182.57,26.14,25.84,25.68,25.490000000000002,25.3,25.12,24.93,24.75,24.37,N/A,N/A +2012,5,23,19,30,101000,99850,98730,68.34,0,7.72,8.47,8.64,8.75,8.82,8.870000000000001,8.91,8.94,8.98,187.81,188.38,188.52,188.62,188.69,188.74,188.78,188.81,188.82,26.09,25.76,25.59,25.39,25.19,25,24.8,24.61,24.22,N/A,N/A +2012,5,23,20,30,100970,99820,98700,68.83,0,8.69,9.41,9.58,9.65,9.69,9.71,9.72,9.72,9.71,189.4,189.52,189.6,189.67000000000002,189.73,189.78,189.83,189.87,189.93,25.97,25.650000000000002,25.48,25.29,25.1,24.91,24.71,24.53,24.14,N/A,N/A +2012,5,23,21,30,100910,99750,98640,70.44,0,8.83,9.64,9.81,9.9,9.950000000000001,9.98,9.99,10,10,185.5,185.1,184.81,184.53,184.27,184.04,183.81,183.6,183.19,25.94,25.61,25.44,25.240000000000002,25.05,24.86,24.66,24.48,24.09,N/A,N/A +2012,5,23,22,30,100850,99700,98590,68.8,0,8.28,9.18,9.41,9.55,9.66,9.74,9.8,9.85,9.93,177.12,177.70000000000002,177.92000000000002,178.11,178.27,178.41,178.53,178.64000000000001,178.84,26.04,25.71,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A +2012,5,23,23,30,100830,99680,98560,72.54,0,8.39,9.24,9.450000000000001,9.59,9.68,9.76,9.81,9.86,9.93,179.79,180.27,180.44,180.58,180.69,180.79,180.88,180.96,181.08,25.86,25.52,25.35,25.150000000000002,24.96,24.77,24.57,24.38,23.990000000000002,N/A,N/A +2012,5,24,0,30,100780,99630,98510,77.04,0,8.86,9.78,10,10.14,10.24,10.31,10.36,10.4,10.450000000000001,173.35,172.69,172.55,172.42000000000002,172.33,172.24,172.17000000000002,172.1,171.99,25.73,25.37,25.19,24.990000000000002,24.79,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A +2012,5,24,1,30,100750,99600,98480,78.29,0,9.17,10.09,10.32,10.46,10.55,10.620000000000001,10.67,10.71,10.77,168.26,168.72,168.88,169,169.11,169.21,169.3,169.38,169.54,25.57,25.21,25.03,24.830000000000002,24.64,24.45,24.25,24.07,23.68,N/A,N/A +2012,5,24,2,30,100750,99600,98490,79.57000000000001,0,9.75,10.72,10.96,11.11,11.200000000000001,11.28,11.33,11.370000000000001,11.44,171.11,171.05,171.07,171.09,171.11,171.12,171.14000000000001,171.16,171.19,25.490000000000002,25.12,24.94,24.740000000000002,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A +2012,5,24,3,30,100740,99590,98470,80.63,0,10.85,11.98,12.27,12.42,12.530000000000001,12.59,12.64,12.67,12.69,166.65,166.74,166.83,166.91,166.98,167.05,167.12,167.18,167.3,25.51,25.13,24.95,24.740000000000002,24.55,24.35,24.150000000000002,23.97,23.580000000000002,N/A,N/A +2012,5,24,4,30,100720,99570,98460,81.4,0,10.17,11.26,11.540000000000001,11.72,11.84,11.94,12.01,12.07,12.15,174.28,174.31,174.28,174.24,174.20000000000002,174.17000000000002,174.12,174.08,174,25.580000000000002,25.21,25.02,24.82,24.62,24.43,24.23,24.04,23.650000000000002,N/A,N/A +2012,5,24,5,30,100700,99550,98440,82.24,0,10.77,11.88,12.16,12.34,12.46,12.540000000000001,12.6,12.65,12.71,169.33,169.85,170.17000000000002,170.5,170.8,171.08,171.36,171.62,172.16,25.8,25.44,25.27,25.060000000000002,24.87,24.68,24.48,24.3,23.91,N/A,N/A +2012,5,24,6,30,100700,99550,98430,82.3,0,10.93,12.07,12.38,12.56,12.68,12.780000000000001,12.85,12.9,12.99,176.57,176.67000000000002,176.64000000000001,176.61,176.57,176.52,176.47,176.43,176.32,25.72,25.330000000000002,25.150000000000002,24.94,24.75,24.55,24.36,24.17,23.78,N/A,N/A +2012,5,24,7,30,100700,99550,98430,83.77,0,10.96,12.120000000000001,12.4,12.58,12.700000000000001,12.780000000000001,12.85,12.89,12.96,173.01,173.19,173.28,173.39000000000001,173.48,173.58,173.68,173.78,173.98,25.71,25.32,25.14,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A +2012,5,24,8,30,100680,99530,98410,85.76,0,11.41,12.65,12.96,13.16,13.3,13.4,13.48,13.55,13.64,176.52,176.25,176.15,176.08,176.02,175.97,175.93,175.89000000000001,175.84,25.59,25.19,25.01,24.8,24.61,24.41,24.21,24.03,23.64,N/A,N/A +2012,5,24,9,30,100680,99530,98420,83.18,0,11.44,12.71,13.040000000000001,13.25,13.39,13.51,13.6,13.67,13.77,175.72,175.76,175.79,175.81,175.84,175.86,175.87,175.89000000000001,175.93,25.82,25.44,25.26,25.060000000000002,24.86,24.67,24.47,24.28,23.900000000000002,N/A,N/A +2012,5,24,10,30,100710,99560,98450,82.94,0,11.5,12.75,13.09,13.3,13.46,13.58,13.67,13.75,13.870000000000001,171.36,171.61,171.69,171.78,171.86,171.94,172.02,172.1,172.25,25.82,25.45,25.27,25.060000000000002,24.87,24.68,24.48,24.29,23.91,N/A,N/A +2012,5,24,11,30,100710,99570,98450,79.89,0,11.77,13.14,13.5,13.75,13.92,14.05,14.15,14.24,14.35,175.25,174.89000000000001,174.82,174.78,174.75,174.74,174.73,174.73,174.74,25.97,25.6,25.41,25.21,25.01,24.82,24.62,24.43,24.04,N/A,N/A +2012,5,24,12,30,100750,99600,98480,81.84,0,11.870000000000001,13.18,13.51,13.72,13.86,13.96,14.030000000000001,14.08,14.15,174.36,174.42000000000002,174.5,174.59,174.68,174.75,174.84,174.92000000000002,175.08,25.95,25.580000000000002,25.400000000000002,25.19,25,24.8,24.61,24.42,24.03,N/A,N/A +2012,5,24,13,30,100780,99630,98520,79.81,0,11.65,12.96,13.32,13.540000000000001,13.700000000000001,13.81,13.9,13.96,14.05,180.1,180.44,180.59,180.71,180.81,180.9,180.96,181.02,181.12,26.150000000000002,25.79,25.61,25.400000000000002,25.21,25.01,24.82,24.63,24.240000000000002,N/A,N/A +2012,5,24,14,30,100840,99690,98580,81.25,0,11,12.19,12.49,12.68,12.81,12.91,12.99,13.040000000000001,13.13,182.74,182.11,181.92000000000002,181.74,181.58,181.44,181.31,181.20000000000002,180.98,26.13,25.78,25.6,25.400000000000002,25.21,25.02,24.82,24.63,24.25,N/A,N/A +2012,5,24,15,30,100870,99720,98610,76.85000000000001,0,11.68,13.030000000000001,13.36,13.56,13.69,13.780000000000001,13.84,13.89,13.93,178.02,178.61,178.81,178.97,179.1,179.20000000000002,179.28,179.35,179.46,26.42,26.09,25.91,25.71,25.52,25.330000000000002,25.13,24.95,24.560000000000002,N/A,N/A +2012,5,24,16,30,100890,99740,98630,77.53,0,11.09,12.31,12.63,12.82,12.96,13.06,13.14,13.200000000000001,13.290000000000001,178.78,178.77,178.81,178.87,178.92000000000002,178.97,179.03,179.08,179.18,26.45,26.14,25.97,25.78,25.59,25.41,25.22,25.04,24.66,N/A,N/A +2012,5,24,17,30,100920,99770,98660,77.63,0,10.1,11.14,11.42,11.6,11.74,11.84,11.94,12.02,12.16,179.3,179.73,179.91,180.1,180.29,180.46,180.62,180.77,181.06,26.47,26.16,25.990000000000002,25.8,25.62,25.44,25.25,25.07,24.69,N/A,N/A +2012,5,24,18,30,100950,99800,98690,77.21000000000001,0,10.5,11.73,12.05,12.23,12.370000000000001,12.46,12.52,12.57,12.63,178.51,178.79,178.9,179.01,179.09,179.16,179.23,179.29,179.4,26.560000000000002,26.240000000000002,26.060000000000002,25.86,25.67,25.48,25.28,25.09,24.71,N/A,N/A +2012,5,24,19,30,100930,99780,98670,75.73,0,10.8,11.92,12.21,12.370000000000001,12.47,12.55,12.6,12.65,12.700000000000001,174.89000000000001,175.37,175.59,175.76,175.9,176.02,176.12,176.20000000000002,176.35,26.67,26.38,26.23,26.03,25.85,25.67,25.48,25.3,24.92,N/A,N/A +2012,5,24,20,30,100890,99740,98630,76.21000000000001,0,9.34,10.34,10.58,10.74,10.85,10.93,10.99,11.040000000000001,11.11,168.71,169.09,169.34,169.6,169.84,170.06,170.28,170.49,170.91,26.64,26.34,26.17,25.98,25.79,25.61,25.41,25.23,24.85,N/A,N/A +2012,5,24,21,30,100880,99740,98620,73.01,0,9.49,10.540000000000001,10.8,10.97,11.09,11.19,11.27,11.33,11.44,168.72,168.96,169.01,169.05,169.08,169.11,169.14000000000001,169.17000000000002,169.23,26.72,26.44,26.28,26.09,25.91,25.73,25.54,25.36,24.990000000000002,N/A,N/A +2012,5,24,22,30,100870,99720,98610,76.82000000000001,0,9.72,10.85,11.13,11.32,11.450000000000001,11.55,11.63,11.69,11.790000000000001,170.98,170.66,170.55,170.44,170.34,170.25,170.18,170.1,169.96,26.55,26.23,26.060000000000002,25.86,25.67,25.48,25.29,25.1,24.71,N/A,N/A +2012,5,24,23,30,100860,99720,98600,74.68,0,10.08,11.31,11.64,11.85,12.01,12.14,12.23,12.31,12.42,169.61,169.41,169.36,169.32,169.28,169.24,169.22,169.19,169.15,26.73,26.43,26.27,26.07,25.88,25.69,25.490000000000002,25.3,24.91,N/A,N/A +2012,5,25,0,30,100840,99690,98580,77.14,0,10.370000000000001,11.540000000000001,11.81,11.97,12.09,12.16,12.22,12.26,12.3,162.34,162.46,162.57,162.69,162.79,162.89000000000001,162.99,163.09,163.28,26.57,26.26,26.09,25.89,25.7,25.52,25.32,25.14,24.75,N/A,N/A +2012,5,25,1,30,100810,99660,98550,74.89,0,11.31,12.61,12.92,13.11,13.24,13.33,13.39,13.44,13.5,162.9,163,163.05,163.11,163.16,163.21,163.25,163.29,163.37,26.7,26.400000000000002,26.240000000000002,26.04,25.86,25.67,25.48,25.3,24.91,N/A,N/A +2012,5,25,2,30,100840,99700,98590,70.12,0,10.5,11.61,11.91,12.1,12.25,12.36,12.46,12.540000000000001,12.700000000000001,161.58,161.97,162.22,162.49,162.76,163.02,163.29,163.55,164.12,26.900000000000002,26.67,26.52,26.34,26.18,26.01,25.830000000000002,25.66,25.32,N/A,N/A +2012,5,25,3,30,100870,99730,98620,65.15,0,11.06,12.39,12.77,13.02,13.21,13.35,13.47,13.57,13.74,164.84,164.87,164.87,164.87,164.87,164.86,164.86,164.86,164.86,27.18,26.95,26.810000000000002,26.63,26.46,26.28,26.1,25.92,25.560000000000002,N/A,N/A +2012,5,25,4,30,100890,99740,98630,71.46000000000001,0,11.91,13.31,13.67,13.89,14.040000000000001,14.14,14.200000000000001,14.25,14.290000000000001,164.31,164.23,164.23,164.23,164.23,164.23,164.23,164.23,164.24,26.94,26.66,26.5,26.3,26.12,25.93,25.73,25.54,25.16,N/A,N/A +2012,5,25,5,30,100890,99740,98630,72.5,0,10.68,12,12.31,12.52,12.67,12.790000000000001,12.88,12.96,13.09,161.53,161.76,161.92000000000002,162.09,162.26,162.42000000000002,162.59,162.75,163.1,26.85,26.580000000000002,26.42,26.23,26.05,25.87,25.68,25.5,25.13,N/A,N/A +2012,5,25,6,30,100940,99790,98680,73.88,0,11.26,12.41,12.74,12.96,13.14,13.31,13.47,13.63,13.89,166.77,167.28,167.52,167.8,168.09,168.4,168.73,169.04,169.59,26.68,26.52,26.400000000000002,26.26,26.12,25.98,25.830000000000002,25.69,25.39,N/A,N/A +2012,5,25,7,30,100980,99830,98720,77.21000000000001,0,11.72,12.99,13.32,13.51,13.64,13.73,13.8,13.86,13.950000000000001,166.04,166.07,166.15,166.24,166.33,166.43,166.54,166.65,166.89000000000001,26.55,26.32,26.18,26.01,25.84,25.66,25.490000000000002,25.32,24.97,N/A,N/A +2012,5,25,8,30,101000,99850,98740,80,0,11.9,13.26,13.59,13.780000000000001,13.89,13.96,14,14.030000000000001,14.01,167.55,167.95000000000002,168.11,168.26,168.4,168.53,168.66,168.77,169.01,26.310000000000002,26.02,25.86,25.66,25.48,25.29,25.09,24.91,24.53,N/A,N/A +2012,5,25,9,30,101050,99900,98780,80.79,0,10.55,11.700000000000001,11.99,12.17,12.3,12.39,12.47,12.540000000000001,12.69,166.15,165.88,165.8,165.73,165.67000000000002,165.63,165.61,165.59,165.59,26.23,25.96,25.810000000000002,25.63,25.46,25.29,25.11,24.93,24.59,N/A,N/A +2012,5,25,10,30,101080,99930,98820,79.43,0,9.75,10.97,11.31,11.56,11.76,11.93,12.09,12.23,12.51,169.46,170.02,170.25,170.46,170.65,170.82,170.98,171.13,171.42000000000002,26.310000000000002,26.05,25.900000000000002,25.73,25.55,25.37,25.19,25.02,24.66,N/A,N/A +2012,5,25,11,30,101150,99990,98880,80.29,0,10.21,11.48,11.81,12.030000000000001,12.200000000000001,12.31,12.41,12.48,12.58,167.78,167.88,167.95000000000002,168.03,168.11,168.18,168.27,168.35,168.5,26.21,25.92,25.76,25.560000000000002,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A +2012,5,25,12,30,101210,100050,98940,77.78,0,9.97,11.040000000000001,11.3,11.450000000000001,11.540000000000001,11.6,11.64,11.66,11.68,171.29,170.52,170.22,169.93,169.69,169.47,169.29,169.12,168.85,26.38,26.11,25.95,25.77,25.580000000000002,25.400000000000002,25.2,25.02,24.650000000000002,N/A,N/A +2012,5,25,13,30,101300,100150,99030,79.14,0,8.5,9.39,9.620000000000001,9.76,9.86,9.94,10,10.05,10.14,172.07,172.17000000000002,172.18,172.18,172.17000000000002,172.15,172.13,172.11,172.08,26.330000000000002,26.080000000000002,25.92,25.740000000000002,25.560000000000002,25.38,25.2,25.02,24.66,N/A,N/A +2012,5,25,14,30,101370,100210,99090,79.42,0,8.38,9.34,9.57,9.72,9.82,9.89,9.94,9.98,10,170.44,170.36,170.38,170.41,170.45000000000002,170.48,170.52,170.56,170.64000000000001,26.41,26.13,25.97,25.78,25.59,25.41,25.22,25.04,24.650000000000002,N/A,N/A +2012,5,25,15,30,101410,100250,99130,78.72,0,6.55,7.2700000000000005,7.45,7.57,7.67,7.75,7.82,7.88,8.01,162,162.27,162.47,162.65,162.83,163,163.20000000000002,163.38,163.78,26.39,26.12,25.96,25.78,25.59,25.42,25.23,25.05,24.68,N/A,N/A +2012,5,25,16,30,101460,100300,99190,77.01,0,6.53,7.26,7.44,7.57,7.67,7.75,7.82,7.88,7.99,155.97,156.65,157.04,157.42000000000002,157.78,158.11,158.45000000000002,158.77,159.41,26.62,26.36,26.2,26.02,25.84,25.66,25.47,25.3,24.93,N/A,N/A +2012,5,25,17,30,101490,100340,99220,79.4,0,7.44,8.2,8.39,8.5,8.58,8.63,8.68,8.71,8.76,150.58,150.96,151.18,151.4,151.61,151.82,152.03,152.24,152.69,26.43,26.150000000000002,25.990000000000002,25.8,25.62,25.44,25.25,25.07,24.69,N/A,N/A +2012,5,25,18,30,101510,100360,99240,78.59,0,7.32,8.07,8.25,8.370000000000001,8.45,8.51,8.56,8.6,8.67,149.84,150.39000000000001,150.67000000000002,150.93,151.18,151.41,151.64000000000001,151.85,152.28,26.44,26.16,26,25.810000000000002,25.62,25.44,25.25,25.07,24.69,N/A,N/A +2012,5,25,19,30,101530,100370,99260,79.37,0,7.390000000000001,8.1,8.26,8.35,8.41,8.46,8.49,8.52,8.56,146.38,146.72,146.94,147.16,147.36,147.55,147.75,147.94,148.34,26.39,26.1,25.94,25.75,25.57,25.38,25.19,25.01,24.63,N/A,N/A +2012,5,25,20,30,101530,100370,99250,82.28,0,7.88,8.69,8.870000000000001,8.98,9.040000000000001,9.09,9.11,9.13,9.13,142.27,142.33,142.38,142.45000000000002,142.52,142.58,142.66,142.72,142.87,26.27,25.98,25.810000000000002,25.62,25.43,25.240000000000002,25.04,24.86,24.48,N/A,N/A +2012,5,25,21,30,101520,100360,99240,81.63,0,7.640000000000001,8.47,8.67,8.8,8.89,8.96,9.02,9.06,9.13,143.64000000000001,143.78,143.86,143.94,144.01,144.08,144.14000000000001,144.19,144.3,26.240000000000002,25.95,25.78,25.59,25.400000000000002,25.21,25.01,24.830000000000002,24.45,N/A,N/A +2012,5,25,22,30,101510,100350,99230,81.14,0,8.02,8.83,9.02,9.13,9.200000000000001,9.26,9.3,9.32,9.36,140.39000000000001,140.57,140.70000000000002,140.82,140.92000000000002,141.02,141.11,141.20000000000002,141.37,26.19,25.91,25.75,25.55,25.37,25.19,24.990000000000002,24.810000000000002,24.43,N/A,N/A +2012,5,25,23,30,101490,100330,99210,79.65,0,7.92,8.72,8.91,9.03,9.120000000000001,9.18,9.23,9.27,9.34,139.1,139.33,139.45000000000002,139.57,139.69,139.81,139.93,140.05,140.31,26.18,25.900000000000002,25.740000000000002,25.55,25.37,25.18,24.990000000000002,24.810000000000002,24.44,N/A,N/A +2012,5,26,0,30,101480,100330,99210,82.16,0,8.06,8.86,9.05,9.17,9.25,9.32,9.370000000000001,9.42,9.5,140.29,140.38,140.44,140.51,140.59,140.67000000000002,140.76,140.84,141.05,26.05,25.77,25.61,25.42,25.240000000000002,25.060000000000002,24.87,24.69,24.330000000000002,N/A,N/A +2012,5,26,1,30,101490,100330,99210,79.31,0,8.09,8.94,9.17,9.31,9.42,9.52,9.6,9.67,9.83,144.05,144.15,144.18,144.19,144.19,144.18,144.16,144.15,144.08,26.19,25.92,25.77,25.59,25.41,25.23,25.05,24.87,24.51,N/A,N/A +2012,5,26,2,30,101500,100340,99220,85.56,0,8.22,9.1,9.3,9.42,9.51,9.58,9.63,9.67,9.74,143.93,144.24,144.4,144.55,144.68,144.8,144.92000000000002,145.02,145.24,26.02,25.71,25.55,25.35,25.17,24.98,24.79,24.61,24.240000000000002,N/A,N/A +2012,5,26,3,30,101540,100380,99270,86.5,0,9.23,10.23,10.47,10.620000000000001,10.73,10.8,10.86,10.92,11,145.88,145.73,145.67000000000002,145.63,145.6,145.57,145.54,145.51,145.47,25.98,25.68,25.52,25.330000000000002,25.14,24.96,24.77,24.59,24.22,N/A,N/A +2012,5,26,4,30,101510,100350,99230,87.5,0,9.49,10.57,10.81,10.950000000000001,11.05,11.11,11.15,11.18,11.19,143.73,143.76,143.77,143.78,143.78,143.79,143.79,143.79,143.79,25.84,25.5,25.32,25.12,24.93,24.740000000000002,24.54,24.35,23.96,N/A,N/A +2012,5,26,5,30,101560,100410,99290,84.25,0,8.72,9.63,9.82,9.94,10.01,10.05,10.07,10.08,10.07,153.21,153.07,152.98,152.87,152.76,152.66,152.54,152.43,152.20000000000002,25.98,25.650000000000002,25.48,25.28,25.09,24.900000000000002,24.7,24.52,24.13,N/A,N/A +2012,5,26,6,30,101570,100410,99290,84.69,0,8.3,9.21,9.43,9.57,9.67,9.74,9.81,9.86,9.96,142.49,142.55,142.64000000000001,142.74,142.86,142.98,143.12,143.26,143.61,25.900000000000002,25.59,25.42,25.23,25.05,24.87,24.68,24.5,24.14,N/A,N/A +2012,5,26,7,30,101630,100470,99340,86.29,0,8.91,9.78,9.97,10.07,10.120000000000001,10.15,10.16,10.16,10.13,145.53,145.79,145.92000000000002,146.06,146.18,146.3,146.42000000000002,146.53,146.79,25.75,25.41,25.240000000000002,25.04,24.85,24.67,24.47,24.29,23.91,N/A,N/A +2012,5,26,8,30,101640,100480,99360,87.84,0,8.790000000000001,9.620000000000001,9.82,9.93,10.01,10.07,10.120000000000001,10.16,10.23,151.74,152.28,152.53,152.79,153.02,153.25,153.48,153.70000000000002,154.18,25.62,25.29,25.12,24.92,24.73,24.54,24.35,24.17,23.79,N/A,N/A +2012,5,26,9,30,101630,100470,99350,85.5,0,8.86,9.870000000000001,10.11,10.27,10.39,10.47,10.53,10.58,10.64,156.5,156.4,156.33,156.26,156.19,156.13,156.07,156,155.85,25.73,25.400000000000002,25.22,25.02,24.830000000000002,24.64,24.44,24.26,23.87,N/A,N/A +2012,5,26,10,30,101660,100500,99370,85.64,0,7.87,8.63,8.8,8.9,8.97,9.02,9.05,9.08,9.120000000000001,156.13,156.19,156.24,156.29,156.35,156.4,156.47,156.53,156.71,25.66,25.330000000000002,25.150000000000002,24.96,24.77,24.59,24.39,24.21,23.84,N/A,N/A +2012,5,26,11,30,101680,100520,99400,83.27,0,6.4,7.01,7.18,7.29,7.37,7.44,7.5,7.55,7.66,159.72,160.15,160.29,160.41,160.5,160.59,160.66,160.73,160.84,25.75,25.43,25.26,25.07,24.88,24.69,24.5,24.32,23.94,N/A,N/A +2012,5,26,12,30,101740,100570,99450,86.85000000000001,0,5.86,6.3,6.4,6.45,6.48,6.5,6.5200000000000005,6.53,6.55,152.85,153.24,153.44,153.66,153.88,154.1,154.33,154.55,155.04,25.55,25.21,25.03,24.830000000000002,24.64,24.45,24.25,24.060000000000002,23.67,N/A,N/A +2012,5,26,13,30,101760,100600,99480,83.06,0,5.24,5.66,5.73,5.7700000000000005,5.79,5.8,5.8100000000000005,5.8100000000000005,5.8,150.74,151.17000000000002,151.43,151.68,151.9,152.11,152.31,152.51,152.9,25.7,25.37,25.19,25,24.810000000000002,24.62,24.43,24.240000000000002,23.86,N/A,N/A +2012,5,26,14,30,101790,100630,99510,85.19,0,5.0600000000000005,5.45,5.53,5.57,5.6000000000000005,5.61,5.62,5.62,5.62,145.26,145.51,145.64000000000001,145.76,145.86,145.95000000000002,146.03,146.11,146.23,25.67,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.39,24.2,23.81,N/A,N/A +2012,5,26,15,30,101830,100660,99540,85.07000000000001,0,4.33,4.65,4.72,4.7700000000000005,4.8,4.83,4.86,4.88,4.92,134.12,134.58,134.86,135.1,135.32,135.53,135.73,135.93,136.36,25.59,25.26,25.080000000000002,24.89,24.7,24.51,24.310000000000002,24.13,23.75,N/A,N/A +2012,5,26,16,30,101820,100650,99530,84.22,0,5.42,5.78,5.84,5.84,5.84,5.82,5.79,5.76,5.67,133.99,134.44,134.69,134.94,135.17000000000002,135.41,135.66,135.91,136.5,25.57,25.22,25.04,24.85,24.66,24.47,24.27,24.09,23.71,N/A,N/A +2012,5,26,17,30,101810,100650,99530,85.42,0,5.82,6.2,6.24,6.24,6.23,6.2,6.16,6.13,6.0200000000000005,125.85000000000001,125.9,126.01,126.12,126.24000000000001,126.35000000000001,126.48,126.60000000000001,126.88000000000001,25.67,25.32,25.14,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A +2012,5,26,18,30,101790,100630,99510,84.61,0,5.58,5.96,6.03,6.05,6.07,6.07,6.07,6.0600000000000005,6.04,114.04,114.52,114.81,115.08,115.33,115.57000000000001,115.83,116.06,116.56,25.68,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A +2012,5,26,19,30,101770,100610,99490,82.41,0,5.98,6.47,6.5600000000000005,6.61,6.65,6.67,6.68,6.69,6.7,121.58,121.59,121.59,121.58,121.57000000000001,121.56,121.55,121.53,121.5,25.84,25.490000000000002,25.310000000000002,25.12,24.93,24.740000000000002,24.54,24.36,23.98,N/A,N/A +2012,5,26,20,30,101730,100570,99450,82.64,0,6.3500000000000005,6.9,7.01,7.08,7.12,7.15,7.17,7.18,7.19,117,117.02,117.12,117.23,117.33,117.44,117.56,117.67,117.89,26.01,25.67,25.5,25.3,25.11,24.92,24.72,24.54,24.150000000000002,N/A,N/A +2012,5,26,21,30,101700,100540,99420,81.87,0,6.8100000000000005,7.42,7.53,7.59,7.62,7.640000000000001,7.640000000000001,7.63,7.6000000000000005,125.08,124.84,124.75,124.65,124.57000000000001,124.49000000000001,124.41,124.34,124.19,26,25.67,25.5,25.3,25.11,24.92,24.73,24.54,24.16,N/A,N/A +2012,5,26,22,30,101660,100500,99380,79.13,0,6.61,7.24,7.38,7.46,7.5200000000000005,7.57,7.6000000000000005,7.63,7.68,121.5,121.53,121.55,121.57000000000001,121.59,121.62,121.65,121.68,121.74000000000001,26.14,25.84,25.68,25.48,25.3,25.12,24.92,24.740000000000002,24.36,N/A,N/A +2012,5,26,23,30,101620,100470,99340,80.43,0,6.8,7.44,7.58,7.66,7.71,7.75,7.7700000000000005,7.79,7.8100000000000005,126.42,126.39,126.37,126.36,126.35000000000001,126.32000000000001,126.3,126.28,126.21000000000001,26.04,25.73,25.57,25.37,25.18,25,24.8,24.62,24.23,N/A,N/A +2012,5,27,0,30,101600,100440,99320,82.59,0,7.07,7.76,7.930000000000001,8.03,8.11,8.16,8.21,8.26,8.33,123.44,123.46000000000001,123.5,123.51,123.52,123.52,123.52,123.52,123.5,25.94,25.64,25.48,25.29,25.1,24.92,24.72,24.54,24.17,N/A,N/A +2012,5,27,1,30,101560,100400,99280,83.09,0,7.88,8.67,8.84,8.94,9,9.03,9.05,9.06,9.05,125.39,125.36,125.36,125.36,125.36,125.36,125.36,125.37,125.37,25.97,25.66,25.490000000000002,25.3,25.11,24.92,24.73,24.54,24.16,N/A,N/A +2012,5,27,2,30,101560,100400,99280,79.29,0,7.96,8.790000000000001,8.96,9.06,9.120000000000001,9.16,9.18,9.19,9.200000000000001,130.23,130,129.93,129.87,129.82,129.79,129.76,129.74,129.71,26.04,25.72,25.55,25.35,25.16,24.97,24.78,24.6,24.22,N/A,N/A +2012,5,27,3,30,101540,100380,99260,81.47,0,8.39,9.15,9.34,9.43,9.5,9.55,9.58,9.61,9.67,127.87,128.4,128.62,128.84,129.03,129.21,129.4,129.58,129.94,25.79,25.490000000000002,25.330000000000002,25.14,24.96,24.79,24.6,24.43,24.07,N/A,N/A +2012,5,27,4,30,101520,100360,99240,81.78,0,7.83,8.69,8.9,9.03,9.120000000000001,9.19,9.24,9.290000000000001,9.34,132.19,132.05,132.03,132.03,132.04,132.05,132.08,132.1,132.16,25.740000000000002,25.41,25.23,25.04,24.84,24.650000000000002,24.46,24.27,23.89,N/A,N/A +2012,5,27,5,30,101510,100350,99230,81.28,0,7.140000000000001,7.83,8,8.1,8.17,8.23,8.27,8.3,8.370000000000001,138.17000000000002,138.41,138.6,138.81,139.01,139.21,139.43,139.62,140.06,25.77,25.45,25.28,25.09,24.900000000000002,24.72,24.53,24.35,23.97,N/A,N/A +2012,5,27,6,30,101510,100350,99230,82.5,0,7.15,7.72,7.87,7.95,8,8.040000000000001,8.08,8.1,8.16,141.09,141.4,141.51,141.61,141.73,141.84,141.97,142.1,142.43,25.69,25.36,25.19,24.990000000000002,24.8,24.62,24.43,24.25,23.89,N/A,N/A +2012,5,27,7,30,101530,100370,99250,86.05,0,7.08,7.73,7.890000000000001,7.98,8.05,8.1,8.15,8.18,8.23,141.68,141.87,141.96,142.05,142.14000000000001,142.23,142.32,142.4,142.58,25.560000000000002,25.21,25.03,24.830000000000002,24.64,24.45,24.26,24.07,23.69,N/A,N/A +2012,5,27,8,30,101520,100360,99240,84.17,0,6.92,7.51,7.640000000000001,7.71,7.76,7.79,7.82,7.83,7.86,145.29,145.43,145.53,145.63,145.72,145.8,145.89000000000001,145.97,146.14000000000001,25.64,25.29,25.12,24.92,24.72,24.54,24.34,24.16,23.77,N/A,N/A +2012,5,27,9,30,101510,100350,99230,83.56,0,6.13,6.6000000000000005,6.7,6.75,6.78,6.8100000000000005,6.83,6.8500000000000005,6.88,145.85,145.72,145.70000000000002,145.67000000000002,145.63,145.6,145.58,145.57,145.57,25.57,25.22,25.05,24.86,24.67,24.48,24.29,24.11,23.740000000000002,N/A,N/A +2012,5,27,10,30,101530,100370,99250,85.9,0,6.13,6.65,6.78,6.86,6.91,6.95,6.99,7.01,7.05,147.83,148.1,148.25,148.4,148.54,148.68,148.82,148.96,149.25,25.66,25.32,25.14,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A +2012,5,27,11,30,101530,100370,99250,85.4,0,6.58,7.12,7.24,7.29,7.33,7.3500000000000005,7.36,7.36,7.36,139.42000000000002,139.56,139.70000000000002,139.85,140.01,140.16,140.34,140.51,140.94,25.72,25.38,25.2,25.01,24.82,24.63,24.44,24.26,23.88,N/A,N/A +2012,5,27,12,30,101550,100390,99270,85.92,0,5.95,6.43,6.54,6.6000000000000005,6.640000000000001,6.67,6.69,6.7,6.72,132.27,132.44,132.54,132.63,132.71,132.78,132.85,132.92000000000002,133.07,25.7,25.36,25.19,24.990000000000002,24.8,24.61,24.41,24.23,23.85,N/A,N/A +2012,5,27,13,30,101550,100390,99270,84.87,0,5.7700000000000005,6.2700000000000005,6.38,6.44,6.48,6.51,6.54,6.5600000000000005,6.58,133.69,133.8,133.83,133.87,133.91,133.96,134.02,134.06,134.2,25.86,25.52,25.35,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.01,N/A,N/A +2012,5,27,14,30,101580,100430,99300,85.57000000000001,0,5.89,6.3500000000000005,6.45,6.5,6.53,6.54,6.5600000000000005,6.5600000000000005,6.5600000000000005,130.91,131.29,131.5,131.69,131.86,132.02,132.18,132.32,132.64000000000001,25.810000000000002,25.47,25.3,25.1,24.91,24.72,24.52,24.34,23.96,N/A,N/A +2012,5,27,15,30,101570,100410,99290,87.13,0,5.91,6.38,6.48,6.5200000000000005,6.55,6.5600000000000005,6.57,6.57,6.55,124.8,125.19,125.26,125.3,125.34,125.36,125.37,125.37,125.39,25.76,25.41,25.240000000000002,25.04,24.85,24.66,24.46,24.28,23.89,N/A,N/A +2012,5,27,16,30,101570,100420,99290,86.57000000000001,0,5.89,6.3100000000000005,6.390000000000001,6.43,6.45,6.46,6.46,6.45,6.43,123.62,123.89,123.98,124.09,124.19,124.28,124.37,124.47,124.67,25.82,25.47,25.3,25.1,24.91,24.72,24.52,24.34,23.96,N/A,N/A +2012,5,27,17,30,101540,100390,99260,85.71000000000001,0,5.3,5.66,5.73,5.76,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.75,119.22,119.47,119.61,119.73,119.84,119.95,120.06,120.16,120.38,25.84,25.490000000000002,25.310000000000002,25.12,24.92,24.73,24.54,24.35,23.97,N/A,N/A +2012,5,27,18,30,101520,100370,99240,84.73,0,5.5200000000000005,5.91,5.99,6.0200000000000005,6.04,6.05,6.0600000000000005,6.0600000000000005,6.05,122.18,122.35000000000001,122.46000000000001,122.57000000000001,122.67,122.77,122.87,122.96000000000001,123.16,25.91,25.560000000000002,25.38,25.18,24.990000000000002,24.8,24.6,24.42,24.03,N/A,N/A +2012,5,27,19,30,101490,100330,99210,84.08,0,6.24,6.74,6.84,6.88,6.91,6.93,6.93,6.93,6.92,126.09,126.26,126.36,126.46000000000001,126.55,126.64,126.73,126.82000000000001,127.02,25.98,25.650000000000002,25.47,25.27,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A +2012,5,27,20,30,101460,100300,99180,82.33,0,6.61,7.16,7.28,7.34,7.37,7.390000000000001,7.4,7.4,7.390000000000001,129.51,129.63,129.68,129.73,129.79,129.85,129.92000000000002,129.98,130.14000000000001,26.09,25.77,25.6,25.400000000000002,25.21,25.02,24.830000000000002,24.650000000000002,24.26,N/A,N/A +2012,5,27,21,30,101430,100270,99150,79.61,0,6.5,7.08,7.21,7.29,7.33,7.36,7.38,7.4,7.41,131.54,131.79,131.88,131.98,132.07,132.16,132.26,132.36,132.57,26.2,25.89,25.72,25.53,25.34,25.150000000000002,24.95,24.77,24.39,N/A,N/A +2012,5,27,22,30,101400,100250,99130,76.29,0,6.66,7.25,7.37,7.43,7.47,7.5,7.5,7.51,7.51,136.59,136.8,136.9,137,137.1,137.20000000000002,137.29,137.38,137.58,26.35,26.05,25.89,25.69,25.51,25.32,25.12,24.94,24.55,N/A,N/A +2012,5,27,23,30,101360,100210,99090,77.28,0,6.3500000000000005,6.88,6.98,7.0200000000000005,7.04,7.05,7.04,7.03,7,133.39000000000001,133.65,133.77,133.87,133.97,134.06,134.16,134.25,134.43,26.21,25.91,25.740000000000002,25.55,25.36,25.17,24.98,24.79,24.41,N/A,N/A +2012,5,28,0,30,101340,100180,99060,79.21000000000001,0,6,6.49,6.59,6.63,6.66,6.67,6.68,6.68,6.66,130.71,130.79,130.87,130.94,131.02,131.08,131.15,131.21,131.36,26,25.69,25.52,25.32,25.13,24.95,24.75,24.57,24.19,N/A,N/A +2012,5,28,1,30,101310,100150,99030,78.74,0,5.68,6.140000000000001,6.24,6.28,6.3100000000000005,6.32,6.32,6.32,6.3100000000000005,137.93,138,138.03,138.05,138.07,138.1,138.12,138.15,138.21,26.05,25.73,25.57,25.37,25.18,24.990000000000002,24.8,24.61,24.23,N/A,N/A +2012,5,28,2,30,101310,100150,99030,77.15,0,5.92,6.43,6.53,6.59,6.63,6.65,6.67,6.68,6.69,139.35,139.67000000000002,139.88,140.1,140.31,140.5,140.71,140.89000000000001,141.31,26.150000000000002,25.84,25.67,25.48,25.29,25.1,24.91,24.72,24.34,N/A,N/A +2012,5,28,3,30,101310,100160,99040,78.49,0,6.55,7.13,7.25,7.3100000000000005,7.3500000000000005,7.37,7.38,7.38,7.38,145.55,145.6,145.63,145.66,145.69,145.71,145.73,145.75,145.8,26.150000000000002,25.830000000000002,25.66,25.47,25.28,25.09,24.900000000000002,24.71,24.330000000000002,N/A,N/A +2012,5,28,4,30,101270,100120,99000,76.89,0,6.3100000000000005,6.8500000000000005,6.96,7,7.03,7.03,7.03,7.03,7,151.53,151.64000000000001,151.69,151.75,151.8,151.85,151.9,151.95000000000002,152.08,26.1,25.79,25.62,25.43,25.240000000000002,25.05,24.86,24.67,24.29,N/A,N/A +2012,5,28,5,30,101260,100110,98990,79.69,0,6.3500000000000005,6.9,7.01,7.07,7.1000000000000005,7.12,7.12,7.12,7.11,153.69,153.72,153.70000000000002,153.67000000000002,153.64000000000001,153.6,153.56,153.52,153.41,26.07,25.76,25.59,25.39,25.2,25.02,24.82,24.64,24.26,N/A,N/A +2012,5,28,6,30,101250,100100,98980,77.87,0,6.55,7.13,7.25,7.3100000000000005,7.3500000000000005,7.37,7.37,7.37,7.3500000000000005,157.19,157.17000000000002,157.20000000000002,157.25,157.31,157.37,157.46,157.54,157.76,26.21,25.89,25.71,25.52,25.330000000000002,25.14,24.94,24.76,24.37,N/A,N/A +2012,5,28,7,30,101270,100120,99000,78.33,0,6.55,7.1000000000000005,7.22,7.28,7.32,7.3500000000000005,7.36,7.38,7.38,161.66,161.8,161.85,161.9,161.94,161.99,162.03,162.08,162.17000000000002,26.25,25.93,25.76,25.57,25.38,25.19,25,24.810000000000002,24.43,N/A,N/A +2012,5,28,8,30,101250,100100,98980,74.28,0,6.25,6.82,6.96,7.04,7.1000000000000005,7.140000000000001,7.17,7.2,7.24,171.55,171.75,171.83,171.9,171.96,172.01,172.07,172.12,172.22,26.490000000000002,26.2,26.03,25.84,25.66,25.48,25.28,25.1,24.72,N/A,N/A +2012,5,28,9,30,101260,100110,98990,72.99,0,5.84,6.38,6.5,6.58,6.640000000000001,6.68,6.72,6.75,6.8100000000000005,172.14000000000001,172.24,172.24,172.22,172.20000000000002,172.19,172.17000000000002,172.14000000000001,172.11,26.650000000000002,26.36,26.2,26.01,25.82,25.64,25.45,25.27,24.89,N/A,N/A +2012,5,28,10,30,101280,100130,99010,76.74,0,5.61,6.1000000000000005,6.21,6.28,6.32,6.36,6.38,6.4,6.44,168.32,168.46,168.52,168.6,168.67000000000002,168.74,168.82,168.89000000000001,169.06,26.51,26.21,26.05,25.85,25.66,25.48,25.29,25.1,24.72,N/A,N/A +2012,5,28,11,30,101300,100150,99030,75.49,0,4.84,5.28,5.38,5.43,5.47,5.5,5.5200000000000005,5.54,5.58,174.13,174.19,174.19,174.18,174.18,174.17000000000002,174.17000000000002,174.16,174.14000000000001,26.7,26.41,26.25,26.05,25.87,25.68,25.490000000000002,25.310000000000002,24.93,N/A,N/A +2012,5,28,12,30,101330,100170,99060,75.89,0,5.4,5.9,6,6.0600000000000005,6.1000000000000005,6.12,6.13,6.140000000000001,6.140000000000001,170.28,170.13,170.08,170.03,169.96,169.89000000000001,169.82,169.75,169.6,26.77,26.48,26.310000000000002,26.11,25.93,25.740000000000002,25.54,25.36,24.97,N/A,N/A +2012,5,28,13,30,101340,100190,99070,77.51,0,5.89,6.38,6.47,6.51,6.5200000000000005,6.53,6.5200000000000005,6.5200000000000005,6.48,172.58,172.42000000000002,172.4,172.37,172.34,172.31,172.29,172.27,172.21,26.63,26.34,26.17,25.98,25.79,25.61,25.41,25.23,24.85,N/A,N/A +2012,5,28,14,30,101360,100210,99090,78.98,0,5.19,5.5600000000000005,5.62,5.65,5.66,5.66,5.65,5.64,5.61,164.88,165.22,165.49,165.75,166,166.24,166.5,166.76,167.37,26.35,26.04,25.87,25.68,25.5,25.310000000000002,25.12,24.94,24.57,N/A,N/A +2012,5,28,15,30,101380,100230,99110,81.48,0,4.86,5.22,5.29,5.33,5.3500000000000005,5.36,5.37,5.37,5.37,168.70000000000002,168.29,168.04,167.77,167.51,167.27,167.01,166.76,166.21,26.310000000000002,25.990000000000002,25.82,25.62,25.44,25.25,25.060000000000002,24.87,24.5,N/A,N/A +2012,5,28,16,30,101390,100230,99110,86.3,0,5.34,5.64,5.67,5.67,5.66,5.63,5.61,5.59,5.57,159.49,158.63,158.15,157.65,157.17000000000002,156.69,156.18,155.71,154.82,25.62,25.28,25.11,24.92,24.740000000000002,24.57,24.39,24.23,23.91,N/A,N/A +2012,5,28,17,30,101360,100200,99080,86.56,0,5.11,5.43,5.49,5.5200000000000005,5.54,5.54,5.55,5.55,5.55,160.88,161.37,161.72,162.08,162.43,162.79,163.21,163.62,164.72,25.68,25.32,25.150000000000002,24.95,24.76,24.57,24.38,24.2,23.84,N/A,N/A +2012,5,28,18,30,101350,100190,99070,88.23,5.9,6.03,6.5200000000000005,6.63,6.7,6.74,6.7700000000000005,6.8,6.8100000000000005,6.8500000000000005,167.9,167.92000000000002,167.84,167.77,167.69,167.62,167.56,167.5,167.45000000000002,25.77,25.42,25.240000000000002,25.04,24.86,24.68,24.48,24.310000000000002,23.94,N/A,N/A +2012,5,28,19,30,101350,100200,99080,87.35000000000001,0,5.14,5.49,5.57,5.61,5.63,5.65,5.66,5.67,5.68,195.75,195.67000000000002,195.61,195.52,195.41,195.28,195.12,194.96,194.5,25.7,25.35,25.17,24.97,24.79,24.6,24.41,24.22,23.85,N/A,N/A +2012,5,28,20,30,101300,100140,99020,82.98,0,5.1000000000000005,5.44,5.51,5.54,5.5600000000000005,5.57,5.57,5.58,5.59,183.03,182.92000000000002,182.87,182.83,182.8,182.79,182.79,182.81,182.91,25.87,25.53,25.36,25.16,24.98,24.79,24.6,24.42,24.060000000000002,N/A,N/A +2012,5,28,21,30,101260,100110,98990,84.75,0,4.89,5.22,5.29,5.32,5.34,5.3500000000000005,5.36,5.36,5.36,175.91,176.43,176.75,177.08,177.41,177.75,178.13,178.51,179.63,25.830000000000002,25.48,25.310000000000002,25.11,24.92,24.73,24.54,24.36,23.990000000000002,N/A,N/A +2012,5,28,22,30,101240,100090,98970,87.28,0,4.25,4.51,4.57,4.59,4.61,4.61,4.62,4.62,4.63,179.36,179.82,180.09,180.36,180.64000000000001,180.93,181.26,181.57,182.4,25.86,25.52,25.34,25.150000000000002,24.95,24.76,24.57,24.39,24,N/A,N/A +2012,5,28,23,30,101210,100060,98940,87.15,0,4.91,5.23,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3,5.29,5.26,183.76,184.19,184.45000000000002,184.74,185.02,185.3,185.61,185.92000000000002,186.65,26.07,25.73,25.560000000000002,25.37,25.18,24.990000000000002,24.8,24.61,24.240000000000002,N/A,N/A +2012,5,29,0,30,101190,100040,98920,86.54,0,5.1000000000000005,5.49,5.58,5.62,5.66,5.68,5.69,5.71,5.73,181.57,181.62,181.64000000000001,181.68,181.73,181.79,181.86,181.93,182.13,26.09,25.76,25.59,25.39,25.2,25.01,24.82,24.63,24.25,N/A,N/A +2012,5,29,1,30,101170,100010,98900,84.57000000000001,0,5.69,6.140000000000001,6.23,6.2700000000000005,6.3,6.32,6.33,6.34,6.34,189.56,189.65,189.76,189.86,189.96,190.07,190.18,190.29,190.56,26.240000000000002,25.92,25.75,25.560000000000002,25.37,25.18,24.990000000000002,24.810000000000002,24.43,N/A,N/A +2012,5,29,2,30,101180,100030,98910,83.62,0,6.36,6.890000000000001,7.01,7.0600000000000005,7.1000000000000005,7.12,7.13,7.140000000000001,7.140000000000001,184.18,184.32,184.42000000000002,184.5,184.59,184.67000000000002,184.75,184.83,185.02,26.310000000000002,26,25.830000000000002,25.63,25.44,25.26,25.060000000000002,24.88,24.5,N/A,N/A +2012,5,29,3,30,101190,100040,98920,79.41,0,6.83,7.43,7.55,7.6000000000000005,7.640000000000001,7.65,7.66,7.66,7.65,187.02,187.02,187.06,187.12,187.16,187.21,187.26,187.31,187.42000000000002,26.48,26.18,26.01,25.82,25.63,25.44,25.25,25.07,24.69,N/A,N/A +2012,5,29,4,30,101200,100050,98930,76.37,0,6.48,7.05,7.17,7.23,7.2700000000000005,7.29,7.3100000000000005,7.32,7.33,192.91,193.1,193.24,193.37,193.48000000000002,193.6,193.71,193.81,194.03,26.53,26.240000000000002,26.07,25.87,25.69,25.51,25.310000000000002,25.13,24.75,N/A,N/A +2012,5,29,5,30,101190,100030,98920,78.52,0,6.61,7.17,7.3,7.36,7.4,7.43,7.45,7.47,7.5,197.55,197.59,197.69,197.83,197.97,198.12,198.29,198.45000000000002,198.84,26.38,26.07,25.900000000000002,25.71,25.52,25.34,25.150000000000002,24.97,24.6,N/A,N/A +2012,5,29,6,30,101240,100090,98970,78.34,0,6.69,7.24,7.33,7.38,7.390000000000001,7.4,7.390000000000001,7.38,7.34,203.79,203.70000000000002,203.62,203.55,203.47,203.41,203.34,203.27,203.12,26.41,26.07,25.89,25.69,25.5,25.310000000000002,25.12,24.93,24.55,N/A,N/A +2012,5,29,7,30,101280,100120,99010,74.51,0,6.640000000000001,7.19,7.3100000000000005,7.36,7.390000000000001,7.4,7.4,7.4,7.38,206.91,207.01,207.03,207.03,207.02,207.02,207,206.98000000000002,206.94,26.560000000000002,26.240000000000002,26.07,25.87,25.68,25.490000000000002,25.29,25.11,24.72,N/A,N/A +2012,5,29,8,30,101300,100150,99030,73.69,0,6.13,6.65,6.78,6.8500000000000005,6.91,6.95,6.98,7,7.04,209.02,209.13,209.12,209.09,209.07,209.03,208.99,208.95000000000002,208.86,26.52,26.19,26.02,25.82,25.63,25.44,25.25,25.060000000000002,24.68,N/A,N/A +2012,5,29,9,30,101280,100130,99010,74.31,0,6.34,6.9,7.03,7.11,7.17,7.21,7.25,7.2700000000000005,7.32,207.22,207.41,207.54,207.66,207.76,207.86,207.96,208.04,208.21,26.51,26.18,26.01,25.810000000000002,25.62,25.43,25.23,25.04,24.66,N/A,N/A +2012,5,29,10,30,101290,100140,99020,76.07000000000001,0,6.69,7.28,7.42,7.5,7.55,7.59,7.61,7.63,7.65,218.09,217.94,217.85,217.76,217.67000000000002,217.59,217.51,217.44,217.29,26.44,26.11,25.93,25.73,25.54,25.35,25.150000000000002,24.97,24.580000000000002,N/A,N/A +2012,5,29,11,30,101300,100150,99030,77.12,0,7.28,7.84,7.96,8.01,8.040000000000001,8.05,8.040000000000001,8.040000000000001,8.01,215.72,215.59,215.43,215.25,215.07,214.89000000000001,214.71,214.54,214.17000000000002,26.34,26.01,25.84,25.63,25.44,25.25,25.05,24.86,24.48,N/A,N/A +2012,5,29,12,30,101310,100150,99040,75.68,0,6.44,6.96,7.09,7.17,7.22,7.26,7.3,7.33,7.38,218.65,218.6,218.57,218.55,218.52,218.5,218.48000000000002,218.46,218.41,26.37,26.04,25.86,25.66,25.48,25.29,25.09,24.91,24.53,N/A,N/A +2012,5,29,13,30,101340,100190,99070,78.38,0,6.43,6.98,7.11,7.18,7.24,7.28,7.3,7.33,7.36,219.57,219.53,219.52,219.51,219.5,219.49,219.48000000000002,219.48000000000002,219.47,26.34,25.990000000000002,25.82,25.62,25.42,25.23,25.03,24.85,24.46,N/A,N/A +2012,5,29,14,30,101370,100220,99100,78.52,0,6.7,7.26,7.390000000000001,7.46,7.5,7.53,7.55,7.5600000000000005,7.5600000000000005,223.46,223.35,223.29,223.23000000000002,223.17000000000002,223.12,223.07,223.02,222.91,26.45,26.12,25.95,25.740000000000002,25.55,25.36,25.16,24.98,24.59,N/A,N/A +2012,5,29,15,30,101400,100240,99130,78.15,0,6.36,6.88,7,7.0600000000000005,7.1000000000000005,7.140000000000001,7.15,7.17,7.19,222,221.81,221.78,221.74,221.72,221.70000000000002,221.68,221.66,221.64000000000001,26.490000000000002,26.16,25.990000000000002,25.79,25.6,25.41,25.21,25.03,24.64,N/A,N/A +2012,5,29,16,30,101390,100230,99120,77.51,0,5.82,6.28,6.4,6.46,6.51,6.55,6.58,6.61,6.65,225.27,225.31,225.36,225.42000000000002,225.47,225.53,225.59,225.66,225.81,26.55,26.22,26.05,25.85,25.66,25.48,25.29,25.1,24.73,N/A,N/A +2012,5,29,17,30,101400,100250,99130,79.79,0,6.09,6.54,6.63,6.67,6.7,6.71,6.71,6.71,6.7,219.24,219.32,219.41,219.49,219.56,219.62,219.68,219.75,219.87,26.53,26.19,26.02,25.82,25.63,25.44,25.240000000000002,25.060000000000002,24.68,N/A,N/A +2012,5,29,18,30,101370,100220,99110,79.73,0,6.41,6.9,7,7.05,7.07,7.09,7.09,7.09,7.07,208.38,208.71,208.88,209.03,209.16,209.29,209.41,209.52,209.73000000000002,26.68,26.34,26.17,25.97,25.77,25.59,25.39,25.2,24.82,N/A,N/A +2012,5,29,19,30,101340,100190,99070,78.4,0,6.6000000000000005,7.15,7.26,7.32,7.36,7.38,7.390000000000001,7.4,7.4,204.85,205.04,205.15,205.25,205.34,205.43,205.52,205.6,205.78,26.740000000000002,26.41,26.23,26.04,25.85,25.66,25.46,25.28,24.900000000000002,N/A,N/A +2012,5,29,20,30,101300,100150,99040,78.10000000000001,0,6.91,7.49,7.62,7.68,7.71,7.73,7.74,7.74,7.72,202.52,202.76,202.87,202.95000000000002,203.02,203.08,203.12,203.15,203.22,26.8,26.48,26.310000000000002,26.11,25.92,25.73,25.54,25.35,24.97,N/A,N/A +2012,5,29,21,30,101260,100110,99000,78.17,0,6.79,7.37,7.49,7.55,7.58,7.6000000000000005,7.61,7.61,7.6000000000000005,201.18,201.29,201.34,201.37,201.4,201.43,201.46,201.47,201.52,26.810000000000002,26.490000000000002,26.32,26.12,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A +2012,5,29,22,30,101210,100060,98950,77.75,0,7.16,7.78,7.91,7.97,8.01,8.03,8.040000000000001,8.040000000000001,8.02,204.21,204.32,204.4,204.47,204.53,204.6,204.67000000000002,204.73000000000002,204.87,26.810000000000002,26.5,26.34,26.14,25.95,25.77,25.57,25.39,25.01,N/A,N/A +2012,5,29,23,30,101170,100030,98910,78.74,0,7.43,8.09,8.23,8.290000000000001,8.33,8.34,8.35,8.35,8.33,205.83,205.93,205.98000000000002,206.04,206.09,206.14000000000001,206.20000000000002,206.25,206.38,26.78,26.47,26.3,26.11,25.92,25.73,25.54,25.36,24.98,N/A,N/A +2012,5,30,0,30,101140,99990,98880,81,0,7.67,8.33,8.48,8.540000000000001,8.58,8.6,8.6,8.6,8.58,202.61,202.68,202.68,202.70000000000002,202.71,202.72,202.73000000000002,202.75,202.79,26.67,26.35,26.18,25.98,25.8,25.61,25.41,25.23,24.86,N/A,N/A +2012,5,30,1,30,101130,99980,98870,82.82000000000001,0,7.5,8.16,8.290000000000001,8.36,8.4,8.41,8.42,8.42,8.4,199.44,199.49,199.53,199.58,199.62,199.66,199.71,199.75,199.87,26.57,26.240000000000002,26.07,25.87,25.68,25.490000000000002,25.3,25.11,24.73,N/A,N/A +2012,5,30,2,30,101140,99990,98880,82.44,0,7.54,8.18,8.32,8.38,8.41,8.43,8.43,8.43,8.4,201.67000000000002,201.64000000000001,201.67000000000002,201.69,201.72,201.74,201.76,201.79,201.84,26.59,26.26,26.09,25.89,25.7,25.51,25.32,25.14,24.77,N/A,N/A +2012,5,30,3,30,101170,100020,98900,83.92,0,7.6000000000000005,8.27,8.41,8.47,8.52,8.540000000000001,8.540000000000001,8.540000000000001,8.52,201.33,201.37,201.4,201.42000000000002,201.45000000000002,201.47,201.51,201.54,201.61,26.51,26.17,26,25.8,25.62,25.43,25.23,25.05,24.67,N/A,N/A +2012,5,30,4,30,101160,100010,98900,82.75,0,7.25,7.87,8.01,8.07,8.11,8.120000000000001,8.13,8.13,8.11,205.20000000000002,205.24,205.27,205.3,205.33,205.35,205.38,205.41,205.46,26.580000000000002,26.26,26.09,25.89,25.7,25.51,25.32,25.14,24.76,N/A,N/A +2012,5,30,5,30,101140,99990,98870,83.86,0,7.15,7.74,7.87,7.930000000000001,7.97,7.99,8,8,7.99,204.87,204.79,204.78,204.77,204.77,204.77,204.78,204.79,204.82,26.490000000000002,26.150000000000002,25.98,25.78,25.6,25.41,25.22,25.04,24.66,N/A,N/A +2012,5,30,6,30,101160,100010,98890,85.98,0,7.33,7.97,8.11,8.19,8.23,8.26,8.27,8.28,8.27,199.26,199.29,199.29,199.28,199.27,199.25,199.23000000000002,199.20000000000002,199.15,26.39,26.04,25.87,25.66,25.48,25.28,25.09,24.900000000000002,24.52,N/A,N/A +2012,5,30,7,30,101190,100040,98930,84.2,0,6.91,7.54,7.68,7.76,7.82,7.8500000000000005,7.87,7.890000000000001,7.9,207.3,207.47,207.54,207.62,207.70000000000002,207.77,207.84,207.91,208.05,26.560000000000002,26.23,26.060000000000002,25.86,25.67,25.48,25.28,25.09,24.71,N/A,N/A +2012,5,30,8,30,101130,99980,98860,85.10000000000001,0,7.3100000000000005,7.92,8.06,8.13,8.18,8.2,8.22,8.23,8.22,204.87,204.77,204.67000000000002,204.58,204.52,204.47,204.42000000000002,204.38,204.3,26.3,25.95,25.77,25.57,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A +2012,5,30,9,30,101170,100020,98910,86.35000000000001,0,5.9,6.38,6.5,6.57,6.63,6.66,6.69,6.71,6.75,203.49,203.66,203.74,203.81,203.86,203.9,203.93,203.97,204.02,26.29,25.93,25.76,25.560000000000002,25.37,25.17,24.97,24.79,24.400000000000002,N/A,N/A +2012,5,30,10,30,101160,100010,98890,80.33,0,6.1000000000000005,6.6000000000000005,6.73,6.8100000000000005,6.87,6.92,6.97,7.01,7.1000000000000005,206.23000000000002,205.81,205.62,205.45000000000002,205.31,205.19,205.09,204.99,204.86,26.32,25.97,25.8,25.6,25.41,25.23,25.03,24.85,24.48,N/A,N/A +2012,5,30,11,30,101200,100040,98930,80.02,0,5.32,5.73,5.83,5.88,5.91,5.94,5.95,5.97,5.98,210.05,210.11,210.13,210.13,210.13,210.11,210.09,210.06,209.97,26.490000000000002,26.150000000000002,25.98,25.78,25.59,25.400000000000002,25.2,25.02,24.64,N/A,N/A +2012,5,30,12,30,101220,100070,98950,83.36,0,5.73,6.2,6.3100000000000005,6.38,6.42,6.45,6.48,6.49,6.51,206.96,207.06,207.1,207.13,207.16,207.18,207.20000000000002,207.21,207.24,26.310000000000002,25.97,25.8,25.6,25.400000000000002,25.21,25.02,24.830000000000002,24.44,N/A,N/A +2012,5,30,13,30,101250,100100,98980,81.53,0,4.58,4.91,5,5.05,5.09,5.12,5.15,5.17,5.21,216.33,216.03,215.8,215.56,215.35,215.14000000000001,214.93,214.73000000000002,214.33,26.32,25.98,25.810000000000002,25.61,25.42,25.22,25.03,24.84,24.46,N/A,N/A +2012,5,30,14,30,101290,100140,99030,79.29,0,4.93,5.3,5.38,5.42,5.45,5.47,5.48,5.49,5.5,207.68,207.71,207.81,207.91,207.98000000000002,208.04,208.1,208.16,208.28,26.55,26.22,26.05,25.85,25.66,25.47,25.27,25.080000000000002,24.7,N/A,N/A +2012,5,30,15,30,101330,100180,99060,77.92,0,1.76,1.87,1.9000000000000001,1.9100000000000001,1.92,1.93,1.94,1.95,1.96,222.36,221.35,220.9,220.46,220.06,219.68,219.31,218.96,218.27,26.560000000000002,26.23,26.060000000000002,25.86,25.67,25.48,25.28,25.1,24.72,N/A,N/A +2012,5,30,16,30,101330,100180,99060,76.72,0,1.75,1.84,1.84,1.85,1.85,1.84,1.84,1.84,1.83,222.1,221.67000000000002,221.63,221.6,221.56,221.54,221.51,221.49,221.44,26.62,26.28,26.11,25.91,25.72,25.52,25.330000000000002,25.14,24.76,N/A,N/A +2012,5,30,17,30,101270,100120,99000,80.11,0,3.08,3.25,3.29,3.31,3.33,3.34,3.35,3.36,3.38,206.75,206.38,206.26,206.13,206.02,205.91,205.81,205.71,205.52,26.560000000000002,26.2,26.02,25.82,25.63,25.44,25.25,25.060000000000002,24.68,N/A,N/A +2012,5,30,18,30,101260,100110,99000,80.36,0,3.4,3.5700000000000003,3.6,3.6,3.6,3.6,3.6,3.6,3.59,202.86,202.9,202.97,203.02,203.06,203.1,203.14000000000001,203.18,203.26,26.650000000000002,26.29,26.11,25.91,25.71,25.52,25.330000000000002,25.14,24.75,N/A,N/A +2012,5,30,19,30,101220,100070,98950,79.3,0,3.62,3.8000000000000003,3.83,3.84,3.85,3.85,3.84,3.84,3.83,189,189.4,189.66,189.9,190.11,190.3,190.49,190.67000000000002,191.01,26.7,26.330000000000002,26.16,25.95,25.76,25.57,25.37,25.19,24.8,N/A,N/A +2012,5,30,20,30,101140,99990,98880,79.2,0,4.33,4.59,4.63,4.64,4.65,4.65,4.65,4.64,4.63,190.14000000000001,190.14000000000001,190.13,190.12,190.12,190.11,190.1,190.09,190.04,26.69,26.330000000000002,26.150000000000002,25.95,25.76,25.57,25.37,25.19,24.8,N/A,N/A +2012,5,30,21,30,101080,99930,98810,79.05,0,5.34,5.71,5.79,5.82,5.84,5.8500000000000005,5.86,5.86,5.8500000000000005,190.49,190.38,190.29,190.19,190.1,190,189.9,189.81,189.61,26.68,26.34,26.17,25.97,25.77,25.59,25.39,25.2,24.82,N/A,N/A +2012,5,30,22,30,101010,99860,98740,79.33,0,5.86,6.3100000000000005,6.41,6.46,6.5,6.53,6.55,6.5600000000000005,6.59,195.75,195.72,195.72,195.72,195.73000000000002,195.74,195.75,195.76,195.78,26.66,26.32,26.16,25.95,25.77,25.580000000000002,25.38,25.2,24.82,N/A,N/A +2012,5,30,23,30,100970,99820,98700,79.45,0,7.140000000000001,7.73,7.86,7.92,7.95,7.97,7.98,7.98,7.96,200.11,200.07,200.06,200.03,200.01,199.99,199.97,199.95000000000002,199.91,26.62,26.29,26.12,25.92,25.73,25.54,25.35,25.16,24.78,N/A,N/A +2012,5,31,0,30,100930,99790,98670,82.96000000000001,0,7.01,7.61,7.75,7.8100000000000005,7.86,7.890000000000001,7.9,7.91,7.91,196.99,197.19,197.27,197.32,197.35,197.39000000000001,197.4,197.42000000000002,197.44,26.490000000000002,26.150000000000002,25.98,25.78,25.59,25.400000000000002,25.2,25.01,24.63,N/A,N/A +2012,5,31,1,30,100910,99760,98650,79.15,0,6.5600000000000005,7.1000000000000005,7.23,7.3,7.34,7.37,7.390000000000001,7.4,7.41,186.88,187.1,187.24,187.33,187.39000000000001,187.43,187.46,187.48,187.49,26.53,26.2,26.03,25.830000000000002,25.64,25.45,25.26,25.07,24.69,N/A,N/A +2012,5,31,2,30,100880,99740,98630,79.53,0,7.21,7.83,7.97,8.05,8.1,8.13,8.15,8.17,8.19,189.76,189.61,189.55,189.5,189.47,189.43,189.4,189.37,189.32,26.490000000000002,26.150000000000002,25.98,25.77,25.59,25.400000000000002,25.2,25.02,24.64,N/A,N/A +2012,5,31,3,30,100920,99770,98660,77.64,0,7.390000000000001,8.040000000000001,8.19,8.27,8.32,8.35,8.370000000000001,8.39,8.41,185.15,185.25,185.37,185.47,185.55,185.63,185.71,185.78,185.92000000000002,26.560000000000002,26.240000000000002,26.060000000000002,25.87,25.68,25.490000000000002,25.3,25.11,24.73,N/A,N/A +2012,5,31,4,30,100920,99770,98660,81.02,0,7.38,8.05,8.21,8.3,8.36,8.4,8.43,8.45,8.47,191.58,191.84,191.89000000000001,191.91,191.93,191.94,191.95000000000002,191.96,191.96,26.43,26.09,25.91,25.71,25.51,25.32,25.13,24.94,24.55,N/A,N/A +2012,5,31,5,30,100860,99710,98600,81.41,0,8.33,9.1,9.27,9.36,9.42,9.46,9.49,9.5,9.52,179.13,179.75,179.97,180.15,180.3,180.44,180.58,180.69,180.93,26.37,26.02,25.84,25.64,25.44,25.25,25.060000000000002,24.87,24.490000000000002,N/A,N/A +2012,5,31,6,30,100890,99740,98630,79.51,0,8.61,9.31,9.48,9.55,9.59,9.6,9.61,9.61,9.59,178.75,179.21,179.5,179.75,179.97,180.17000000000002,180.37,180.55,180.94,26.45,26.11,25.94,25.73,25.55,25.36,25.17,24.98,24.61,N/A,N/A +2012,5,31,7,30,100890,99750,98630,80.61,0,7.99,8.74,8.94,9.06,9.15,9.22,9.27,9.32,9.39,177.42000000000002,177.94,178.22,178.49,178.73,178.95000000000002,179.15,179.35,179.71,26.42,26.07,25.900000000000002,25.69,25.5,25.3,25.11,24.92,24.53,N/A,N/A +2012,5,31,8,30,100920,99780,98660,82.27,0,7.3,7.97,8.14,8.25,8.33,8.39,8.44,8.48,8.540000000000001,189.26,188.67000000000002,188.48,188.31,188.15,188.02,187.89000000000001,187.78,187.56,26.43,26.09,25.91,25.7,25.51,25.32,25.12,24.93,24.55,N/A,N/A +2012,5,31,9,30,100880,99740,98630,79.42,0,7.98,8.69,8.88,8.98,9.05,9.1,9.13,9.16,9.21,188.06,188.17000000000002,188.16,188.11,188.06,187.99,187.9,187.82,187.61,26.51,26.17,26,25.8,25.61,25.42,25.23,25.04,24.67,N/A,N/A +2012,5,31,10,30,100910,99760,98650,80.76,0,7.32,7.94,8.09,8.15,8.19,8.22,8.22,8.23,8.21,186.41,186.56,186.70000000000002,186.83,186.94,187.04,187.15,187.25,187.47,26.48,26.14,25.96,25.76,25.57,25.38,25.19,25,24.61,N/A,N/A +2012,5,31,11,30,100920,99770,98660,77.7,0,6.42,6.93,7.07,7.140000000000001,7.2,7.23,7.26,7.29,7.33,195.69,195.36,195.25,195.17000000000002,195.11,195.06,195.02,194.99,194.95000000000002,26.72,26.400000000000002,26.240000000000002,26.04,25.85,25.66,25.47,25.29,24.91,N/A,N/A +2012,5,31,12,30,100940,99790,98680,78.2,0,6.2700000000000005,6.84,6.99,7.09,7.16,7.21,7.26,7.29,7.3500000000000005,196.78,196.76,196.73000000000002,196.70000000000002,196.66,196.62,196.57,196.52,196.43,26.72,26.400000000000002,26.23,26.03,25.84,25.650000000000002,25.45,25.27,24.88,N/A,N/A +2012,5,31,13,30,100960,99820,98700,80.59,0,6.65,7.2,7.33,7.41,7.46,7.5,7.53,7.5600000000000005,7.6000000000000005,204.19,204.42000000000002,204.46,204.48000000000002,204.5,204.52,204.53,204.53,204.54,26.63,26.310000000000002,26.13,25.93,25.740000000000002,25.55,25.36,25.17,24.79,N/A,N/A +2012,5,31,14,30,100970,99830,98710,80.74,0,6.17,6.8100000000000005,6.98,7.08,7.16,7.21,7.25,7.29,7.33,202.5,202.15,202.06,202,201.95000000000002,201.91,201.89000000000001,201.86,201.84,26.82,26.490000000000002,26.32,26.13,25.94,25.75,25.55,25.37,24.98,N/A,N/A +2012,5,31,15,30,101030,99880,98770,80.07000000000001,0,5.04,5.45,5.5600000000000005,5.63,5.68,5.71,5.74,5.76,5.79,210.55,210.64000000000001,210.70000000000002,210.75,210.78,210.82,210.85,210.87,210.92000000000002,26.830000000000002,26.51,26.34,26.14,25.95,25.76,25.560000000000002,25.38,25,N/A,N/A +2012,5,31,16,30,101050,99910,98790,80.60000000000001,0,5.34,5.76,5.86,5.91,5.94,5.96,5.97,5.97,5.97,212.39000000000001,212.37,212.31,212.27,212.25,212.22,212.21,212.20000000000002,212.17000000000002,26.97,26.64,26.48,26.27,26.09,25.89,25.7,25.51,25.13,N/A,N/A +2012,5,31,17,30,101040,99890,98780,80.2,0,5.91,6.36,6.47,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.61,6.62,199.98000000000002,199.83,199.68,199.53,199.39000000000001,199.25,199.12,198.98000000000002,198.73000000000002,27.03,26.71,26.54,26.34,26.150000000000002,25.96,25.77,25.580000000000002,25.2,N/A,N/A +2012,5,31,18,30,101060,99910,98800,80.45,0,4.7700000000000005,5.12,5.2,5.25,5.28,5.3,5.32,5.33,5.34,205.01,204.96,204.98000000000002,204.99,204.99,204.99,204.98000000000002,204.98000000000002,204.96,27.07,26.740000000000002,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.22,N/A,N/A +2012,5,31,19,30,100990,99850,98740,77.37,0,5.74,6.16,6.23,6.26,6.2700000000000005,6.2700000000000005,6.26,6.25,6.22,191.92000000000002,191.92000000000002,191.9,191.85,191.79,191.73000000000002,191.66,191.59,191.4,27.17,26.85,26.68,26.48,26.29,26.1,25.91,25.72,25.34,N/A,N/A +2012,5,31,20,30,100890,99750,98640,81.57000000000001,0,7.25,7.87,8,8.06,8.1,8.120000000000001,8.14,8.15,8.15,188.1,188.43,188.58,188.73,188.87,189,189.14000000000001,189.26,189.53,27.09,26.76,26.59,26.39,26.2,26.01,25.82,25.63,25.25,N/A,N/A +2012,5,31,21,30,100890,99750,98640,81.85000000000001,0,5.53,5.96,6.05,6.09,6.11,6.12,6.13,6.13,6.12,209.45000000000002,209.13,209.08,209.14000000000001,209.22,209.32,209.45000000000002,209.58,209.88,27.07,26.76,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A +2012,5,31,22,30,100950,99810,98700,82.45,0.7000000000000001,10.08,11.03,11.23,11.33,11.39,11.43,11.46,11.48,11.49,236.65,236.70000000000002,236.53,236.39000000000001,236.28,236.20000000000002,236.11,236.04,235.91,26.96,26.650000000000002,26.48,26.28,26.09,25.91,25.71,25.53,25.150000000000002,N/A,N/A +2012,5,31,23,30,101070,99910,98780,79.10000000000001,0,14.41,15.74,16.1,16.29,16.45,16.580000000000002,16.75,16.93,17.7,285.21,285.22,285.05,284.87,284.68,284.47,284.22,283.98,283.32,24.32,23.81,23.61,23.42,23.25,23.1,22.95,22.830000000000002,22.69,N/A,N/A +2012,6,1,0,30,100990,99840,98710,75.10000000000001,0,11.92,12.92,13.14,13.21,13.24,13.24,13.22,13.200000000000001,13.14,331.6,331.21,330.92,330.65000000000003,330.39,330.15000000000003,329.91,329.69,329.22,24.66,24.17,23.96,23.75,23.56,23.37,23.18,23,22.64,N/A,N/A +2012,6,1,1,30,100810,99660,98550,75.12,0,2.75,2.85,2.82,2.79,2.69,2.57,2.52,2.5,2.66,329.33,329.57,330.21,331.59000000000003,335.57,341.43,339.62,335.7,317.78000000000003,25.25,24.93,24.77,24.59,24.75,25.17,25.830000000000002,26.53,27.13,N/A,N/A +2012,6,1,2,30,100990,99840,98720,71.47,0,3.02,3.14,3.13,3.1,3.0500000000000003,2.99,2.88,2.77,2.49,66.57000000000001,67.03,67.04,67.05,67.03,66.99,67.38,67.91,68.54,26.080000000000002,25.76,25.6,25.42,25.26,25.11,24.990000000000002,24.900000000000002,24.79,N/A,N/A +2012,6,1,3,30,101000,99850,98730,77.78,0,3.09,3.2,3.21,3.2,3.19,3.17,3.14,3.11,3.0300000000000002,102.99000000000001,103.3,102.56,101.85000000000001,101.12,100.39,99.46000000000001,98.56,94.7,25.72,25.38,25.21,25.02,24.830000000000002,24.64,24.46,24.28,23.93,N/A,N/A +2012,6,1,4,30,101070,99920,98800,77.16,0,3.48,3.63,3.65,3.65,3.63,3.62,3.59,3.5700000000000003,3.52,181.71,181.56,181.54,181.52,181.51,181.51,181.51,181.51,181.54,25.82,25.47,25.3,25.09,24.91,24.71,24.52,24.330000000000002,23.95,N/A,N/A +2012,6,1,5,30,101090,99940,98820,70.58,0,2.45,2.61,2.66,2.69,2.72,2.74,2.7600000000000002,2.79,2.84,185.43,186.74,187.35,187.96,188.55,189.13,189.75,190.34,191.67000000000002,26.35,26.03,25.86,25.66,25.47,25.29,25.1,24.93,24.560000000000002,N/A,N/A +2012,6,1,6,30,101140,99990,98870,74.3,0,2.52,2.67,2.71,2.73,2.75,2.77,2.79,2.81,2.85,209.39000000000001,210.57,211.25,211.98000000000002,212.70000000000002,213.45000000000002,214.3,215.13,217.29,26.35,26.02,25.85,25.650000000000002,25.46,25.27,25.080000000000002,24.900000000000002,24.54,N/A,N/A +2012,6,1,7,30,101180,100030,98910,72.45,0,2.56,2.69,2.72,2.72,2.73,2.74,2.74,2.75,2.74,223.81,224.74,225.28,225.83,226.3,226.75,227.21,227.63,228.49,26.54,26.21,26.04,25.85,25.66,25.47,25.28,25.09,24.71,N/A,N/A +2012,6,1,8,30,101200,100050,98930,75.91,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.0500000000000003,3.04,3.0300000000000002,3.0100000000000002,2.97,233.19,233.5,233.66,233.84,234.01,234.19,234.38,234.56,234.98000000000002,26.42,26.080000000000002,25.91,25.71,25.52,25.330000000000002,25.14,24.96,24.57,N/A,N/A +2012,6,1,9,30,101210,100060,98950,78.91,0,2.93,3.11,3.15,3.17,3.19,3.19,3.21,3.21,3.22,227.77,228.66,229.07,229.48000000000002,229.86,230.23000000000002,230.6,230.94,231.67000000000002,26.38,26.05,25.88,25.68,25.490000000000002,25.310000000000002,25.11,24.93,24.54,N/A,N/A +2012,6,1,10,30,101240,100090,98970,82.09,0.7000000000000001,3.96,4.24,4.29,4.3100000000000005,4.33,4.33,4.33,4.33,4.32,257.99,258.93,259.23,259.5,259.73,259.93,260.11,260.29,260.61,26.26,25.91,25.740000000000002,25.54,25.35,25.16,24.96,24.78,24.39,N/A,N/A +2012,6,1,11,30,101290,100140,99020,77.52,0,4.91,5.19,5.24,5.25,5.25,5.24,5.22,5.21,5.16,289.85,290,290.02,290.06,290.09000000000003,290.13,290.17,290.22,290.34000000000003,26.23,25.87,25.7,25.5,25.310000000000002,25.12,24.92,24.740000000000002,24.36,N/A,N/A +2012,6,1,12,30,101330,100170,99050,81.82000000000001,0,3.83,4.03,4.07,4.08,4.08,4.08,4.08,4.08,4.0600000000000005,314.59000000000003,315.27,315.81,316.34000000000003,316.84000000000003,317.31,317.81,318.28000000000003,319.32,26.05,25.69,25.51,25.32,25.12,24.94,24.740000000000002,24.560000000000002,24.18,N/A,N/A +2012,6,1,13,30,101390,100230,99110,83.56,0,4.05,4.26,4.29,4.3,4.29,4.29,4.28,4.26,4.24,326.08,327.53000000000003,328.35,329.2,329.98,330.76,331.55,332.31,333.91,26.16,25.810000000000002,25.63,25.44,25.25,25.060000000000002,24.87,24.68,24.310000000000002,N/A,N/A +2012,6,1,14,30,101410,100250,99130,84.60000000000001,0,5.25,5.55,5.6000000000000005,5.62,5.62,5.61,5.6000000000000005,5.59,5.5600000000000005,32.62,32.06,31.84,31.62,31.42,31.220000000000002,31,30.79,30.3,25.34,24.94,24.76,24.560000000000002,24.36,24.18,23.990000000000002,23.8,23.43,N/A,N/A +2012,6,1,15,30,101420,100260,99140,79.34,0,6.41,6.82,6.890000000000001,6.9,6.890000000000001,6.87,6.84,6.8,6.71,37.81,37.97,38.02,38.07,38.08,38.09,38.09,38.08,37.97,25.54,25.13,24.95,24.75,24.55,24.37,24.17,23.990000000000002,23.62,N/A,N/A +2012,6,1,16,30,101430,100270,99150,73.82000000000001,0,5.65,5.99,6.0600000000000005,6.08,6.09,6.09,6.08,6.07,6.0600000000000005,62.120000000000005,62.04,61.92,61.800000000000004,61.67,61.54,61.36,61.18,60.620000000000005,25.91,25.54,25.36,25.17,24.98,24.8,24.61,24.44,24.080000000000002,N/A,N/A +2012,6,1,17,30,101440,100280,99160,74.12,0,5.29,5.6000000000000005,5.64,5.64,5.62,5.6000000000000005,5.5600000000000005,5.54,5.44,101.3,101.14,101.03,100.9,100.79,100.66,100.5,100.34,99.83,26.12,25.76,25.59,25.39,25.2,25.02,24.84,24.66,24.3,N/A,N/A +2012,6,1,18,30,101410,100260,99140,73.81,0,4.67,4.92,4.95,4.95,4.93,4.9,4.87,4.83,4.73,125.51,125.25,125.11,124.97,124.82000000000001,124.66,124.45,124.23,123.49000000000001,26.330000000000002,25.98,25.8,25.61,25.43,25.25,25.05,24.88,24.53,N/A,N/A +2012,6,1,19,30,101380,100220,99110,74,0,4.16,4.36,4.38,4.36,4.34,4.32,4.28,4.23,4.12,127.42,127.26,127.19,127.11,127.01,126.89,126.75,126.60000000000001,126.06,26.580000000000002,26.23,26.060000000000002,25.86,25.68,25.5,25.310000000000002,25.14,24.79,N/A,N/A +2012,6,1,20,30,101320,100170,99050,75.21000000000001,0,3.5300000000000002,3.68,3.69,3.68,3.66,3.63,3.6,3.5700000000000003,3.47,137.34,137.27,137.22,137.15,137.07,137,136.88,136.77,136.41,26.73,26.37,26.2,26,25.82,25.63,25.44,25.26,24.900000000000002,N/A,N/A +2012,6,1,21,30,101270,100120,99010,74.71000000000001,0,3.46,3.62,3.63,3.62,3.61,3.59,3.56,3.54,3.48,145.82,145.81,145.74,145.68,145.61,145.54,145.44,145.33,145.03,26.88,26.54,26.37,26.17,25.98,25.8,25.61,25.43,25.060000000000002,N/A,N/A +2012,6,1,22,30,101240,100090,98980,75.85000000000001,0,4.04,4.25,4.2700000000000005,4.2700000000000005,4.25,4.24,4.22,4.2,4.14,145.77,145.61,145.49,145.34,145.17000000000002,144.99,144.74,144.46,143.45000000000002,26.94,26.6,26.43,26.240000000000002,26.060000000000002,25.88,25.69,25.52,25.19,N/A,N/A +2012,6,1,23,30,101230,100080,98960,78.16,0,4.74,5.03,5.07,5.07,5.0600000000000005,5.04,5.0200000000000005,5,4.94,147.25,147.12,147.03,146.93,146.82,146.69,146.53,146.37,145.82,26.86,26.54,26.38,26.18,26,25.810000000000002,25.62,25.45,25.09,N/A,N/A +2012,6,2,0,30,101200,100050,98930,77.68,0,4.65,4.94,4.97,4.97,4.97,4.95,4.93,4.9,4.83,154.17000000000002,153.99,153.87,153.73,153.55,153.36,153.08,152.78,151.41,26.87,26.55,26.39,26.19,26.01,25.830000000000002,25.64,25.47,25.13,N/A,N/A +2012,6,2,1,30,101180,100030,98920,78.67,0,5.0600000000000005,5.38,5.41,5.41,5.4,5.38,5.36,5.33,5.28,145.66,145.47,145.33,145.15,144.94,144.69,144.3,143.88,141.37,26.830000000000002,26.52,26.35,26.16,25.98,25.8,25.62,25.45,25.18,N/A,N/A +2012,6,2,2,30,101220,100070,98960,79.35000000000001,0,5.28,5.62,5.67,5.68,5.67,5.66,5.64,5.61,5.5600000000000005,152.26,151.99,151.82,151.62,151.38,151.11,150.71,150.3,148.62,26.810000000000002,26.5,26.330000000000002,26.14,25.96,25.78,25.6,25.43,25.1,N/A,N/A +2012,6,2,3,30,101250,100100,98980,79.9,0,4.96,5.26,5.3100000000000005,5.3100000000000005,5.3,5.28,5.26,5.23,5.16,162.22,162.09,161.97,161.82,161.65,161.45000000000002,161.14000000000001,160.82,159.20000000000002,26.78,26.46,26.3,26.11,25.92,25.740000000000002,25.560000000000002,25.39,25.07,N/A,N/A +2012,6,2,4,30,101260,100110,98990,79.64,0,5.3100000000000005,5.66,5.71,5.72,5.71,5.7,5.68,5.66,5.62,167.32,167.15,167.02,166.84,166.65,166.42000000000002,166.1,165.76,164.20000000000002,26.82,26.5,26.34,26.14,25.96,25.78,25.6,25.43,25.12,N/A,N/A +2012,6,2,5,30,101300,100150,99040,80,0,4.91,5.24,5.3,5.32,5.33,5.34,5.34,5.33,5.33,169.23,168.95000000000002,168.78,168.58,168.37,168.15,167.87,167.57,166.71,26.8,26.48,26.32,26.13,25.95,25.76,25.580000000000002,25.400000000000002,25.060000000000002,N/A,N/A +2012,6,2,6,30,101360,100210,99100,80.71000000000001,0,5.3500000000000005,5.7,5.76,5.7700000000000005,5.78,5.7700000000000005,5.75,5.73,5.67,174.25,174.23,174.26,174.28,174.3,174.3,174.3,174.3,174.29,26.78,26.44,26.27,26.060000000000002,25.88,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A +2012,6,2,7,30,101410,100260,99140,79.88,0,4.75,5.05,5.11,5.15,5.17,5.19,5.21,5.22,5.26,182.78,182.64000000000001,182.48,182.29,182.09,181.88,181.65,181.43,180.86,26.810000000000002,26.47,26.310000000000002,26.11,25.93,25.740000000000002,25.55,25.37,25.01,N/A,N/A +2012,6,2,8,30,101380,100230,99110,81.33,0,3.88,4.15,4.22,4.2700000000000005,4.3,4.33,4.36,4.38,4.43,178.62,178.56,178.57,178.58,178.58,178.57,178.56,178.53,178.45000000000002,26.71,26.37,26.2,26,25.810000000000002,25.62,25.43,25.240000000000002,24.86,N/A,N/A +2012,6,2,9,30,101390,100240,99130,81.3,0,4.97,5.26,5.3,5.3100000000000005,5.3100000000000005,5.3,5.29,5.2700000000000005,5.24,203.87,202.81,202.26,201.67000000000002,201.12,200.58,200.02,199.47,198.33,26.740000000000002,26.400000000000002,26.23,26.03,25.84,25.650000000000002,25.45,25.27,24.89,N/A,N/A +2012,6,2,10,30,101390,100240,99120,81.01,0,4.74,5.08,5.17,5.22,5.25,5.28,5.3,5.32,5.3500000000000005,193.45000000000002,193.26,193.13,193,192.88,192.75,192.63,192.51,192.27,26.72,26.38,26.2,26,25.810000000000002,25.62,25.43,25.25,24.86,N/A,N/A +2012,6,2,11,30,101400,100240,99130,83.3,0,4,4.23,4.28,4.29,4.3100000000000005,4.3100000000000005,4.32,4.32,4.32,190.29,190.69,190.96,191.23000000000002,191.46,191.70000000000002,191.94,192.16,192.62,26.580000000000002,26.240000000000002,26.060000000000002,25.86,25.67,25.48,25.28,25.1,24.72,N/A,N/A +2012,6,2,12,30,101460,100310,99190,82.96000000000001,0,4.2,4.5,4.57,4.62,4.66,4.69,4.72,4.73,4.7700000000000005,220.89000000000001,220.23000000000002,219.8,219.43,219.11,218.8,218.52,218.27,217.75,26.84,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A +2012,6,2,13,30,101430,100270,99160,83.34,0,2.87,3.0500000000000003,3.1,3.14,3.17,3.2,3.23,3.25,3.31,196.41,196.56,196.64000000000001,196.74,196.82,196.89000000000001,196.96,197.04,197.20000000000002,26.76,26.42,26.25,26.05,25.86,25.67,25.48,25.29,24.91,N/A,N/A +2012,6,2,14,30,101480,100330,99220,84.07000000000001,0,3.56,3.73,3.7600000000000002,3.77,3.77,3.7600000000000002,3.7600000000000002,3.75,3.74,203.46,203.63,203.69,203.73000000000002,203.79,203.84,203.89000000000001,203.94,204.09,26.76,26.42,26.240000000000002,26.04,25.85,25.66,25.47,25.29,24.900000000000002,N/A,N/A +2012,6,2,15,30,101520,100370,99250,84.67,0,3.6,3.84,3.91,3.96,4,4.03,4.0600000000000005,4.09,4.15,211.36,212.52,212.94,213.29,213.6,213.88,214.14000000000001,214.38,214.84,26.89,26.560000000000002,26.38,26.19,26,25.810000000000002,25.62,25.43,25.060000000000002,N/A,N/A +2012,6,2,16,30,101500,100350,99230,83.63,0,4.37,4.64,4.7,4.73,4.75,4.76,4.7700000000000005,4.78,4.78,211.28,211.26,211.24,211.21,211.17000000000002,211.13,211.08,211.03,210.91,27.02,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A +2012,6,2,17,30,101500,100350,99240,85.39,0,3.79,4.03,4.09,4.12,4.15,4.17,4.19,4.21,4.23,214.99,214.97,214.97,214.96,214.95000000000002,214.94,214.93,214.91,214.89000000000001,27,26.650000000000002,26.47,26.27,26.080000000000002,25.89,25.69,25.51,25.12,N/A,N/A +2012,6,2,18,30,101480,100330,99210,84.09,0,4.67,4.98,5.0600000000000005,5.1000000000000005,5.13,5.15,5.17,5.19,5.22,220.44,220.24,220.11,219.96,219.83,219.68,219.52,219.36,218.99,27.04,26.69,26.51,26.310000000000002,26.12,25.93,25.740000000000002,25.55,25.17,N/A,N/A +2012,6,2,19,30,101470,100320,99200,82.9,0,4.66,4.95,5.01,5.04,5.05,5.0600000000000005,5.0600000000000005,5.07,5.07,220.54,220.32,220.17000000000002,220.01,219.85,219.68,219.5,219.32,218.87,27.1,26.740000000000002,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.22,N/A,N/A +2012,6,2,20,30,101430,100280,99170,84.09,0,3.5300000000000002,3.8000000000000003,3.88,3.94,3.99,4.03,4.07,4.11,4.18,217.93,217.36,217.09,216.83,216.6,216.38,216.16,215.94,215.5,27.150000000000002,26.8,26.62,26.42,26.23,26.04,25.84,25.66,25.28,N/A,N/A +2012,6,2,21,30,101390,100240,99130,83.99,0,3.42,3.64,3.71,3.7600000000000002,3.8000000000000003,3.83,3.86,3.89,3.96,215.37,215.35,215.29,215.22,215.16,215.11,215.05,215,214.9,27.14,26.79,26.62,26.42,26.23,26.03,25.84,25.650000000000002,25.27,N/A,N/A +2012,6,2,22,30,101370,100220,99110,83.72,0,4.7700000000000005,5.11,5.19,5.23,5.26,5.28,5.3,5.3100000000000005,5.33,203.86,203.6,203.43,203.23000000000002,203.04,202.86,202.67000000000002,202.48000000000002,202.09,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A +2012,6,2,23,30,101330,100190,99070,81.42,0,5.48,5.88,5.96,5.99,6.0200000000000005,6.03,6.03,6.04,6.04,184.62,184.59,184.58,184.54,184.48,184.42000000000002,184.33,184.23,183.97,27.22,26.900000000000002,26.73,26.53,26.35,26.16,25.97,25.78,25.41,N/A,N/A +2012,6,3,0,30,101310,100160,99050,82.12,0,4.88,5.24,5.32,5.36,5.39,5.41,5.42,5.43,5.45,179.16,179.25,179.33,179.4,179.46,179.52,179.57,179.61,179.72,27.12,26.79,26.62,26.42,26.240000000000002,26.05,25.85,25.67,25.29,N/A,N/A +2012,6,3,1,30,101270,100120,99010,84.36,0,4.8500000000000005,5.2,5.2700000000000005,5.3100000000000005,5.33,5.3500000000000005,5.37,5.38,5.4,175.91,175.87,175.87,175.87,175.9,175.92000000000002,175.94,175.96,176.04,26.93,26.59,26.42,26.22,26.03,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A +2012,6,3,2,30,101290,100140,99030,84.79,0,5.44,5.8500000000000005,5.95,6,6.04,6.0600000000000005,6.08,6.09,6.11,171.96,172,172.13,172.28,172.43,172.59,172.77,172.94,173.31,26.98,26.64,26.47,26.27,26.080000000000002,25.88,25.69,25.5,25.12,N/A,N/A +2012,6,3,3,30,101300,100160,99040,83.79,0,6.91,7.49,7.62,7.68,7.72,7.75,7.76,7.7700000000000005,7.7700000000000005,175.79,175.82,175.76,175.69,175.62,175.54,175.47,175.39000000000001,175.24,26.94,26.59,26.42,26.22,26.03,25.84,25.64,25.45,25.07,N/A,N/A +2012,6,3,4,30,101310,100160,99050,85.22,0,6.94,7.5200000000000005,7.65,7.72,7.7700000000000005,7.8,7.82,7.84,7.8500000000000005,181.25,181.09,180.98,180.88,180.8,180.73,180.66,180.6,180.48,26.89,26.54,26.36,26.16,25.97,25.77,25.580000000000002,25.39,25.01,N/A,N/A +2012,6,3,5,30,101320,100180,99060,85.75,0,7.2,7.82,7.97,8.05,8.11,8.15,8.17,8.19,8.2,181.59,182.39000000000001,182.72,183.01,183.25,183.46,183.65,183.82,184.13,26.97,26.62,26.45,26.240000000000002,26.05,25.86,25.66,25.48,25.1,N/A,N/A +2012,6,3,6,30,101360,100210,99090,84.27,0,6.86,7.46,7.61,7.7,7.76,7.8100000000000005,7.84,7.87,7.91,189.68,188.98,188.64000000000001,188.33,188.07,187.83,187.6,187.38,186.97,26.92,26.560000000000002,26.38,26.18,25.990000000000002,25.8,25.6,25.41,25.03,N/A,N/A +2012,6,3,7,30,101400,100250,99140,83.13,0,8.47,9.24,9.42,9.51,9.56,9.6,9.61,9.620000000000001,9.6,203.43,202.76,202.43,202.12,201.85,201.61,201.37,201.16,200.76,27,26.64,26.47,26.26,26.07,25.87,25.68,25.490000000000002,25.1,N/A,N/A +2012,6,3,8,30,101390,100240,99130,84.19,0,7.82,8.52,8.700000000000001,8.8,8.86,8.91,8.94,8.97,9,203.45000000000002,203.32,203.31,203.31,203.32,203.34,203.35,203.36,203.39000000000001,26.92,26.560000000000002,26.38,26.17,25.98,25.8,25.6,25.41,25.04,N/A,N/A +2012,6,3,9,30,101390,100240,99130,84.63,0,6.09,6.6000000000000005,6.74,6.82,6.88,6.93,6.98,7.01,7.08,205.04,205.04,204.95000000000002,204.85,204.76,204.68,204.59,204.51,204.34,26.91,26.560000000000002,26.38,26.18,25.990000000000002,25.8,25.61,25.43,25.05,N/A,N/A +2012,6,3,10,30,101410,100260,99140,81.32000000000001,0,7.82,8.46,8.6,8.66,8.68,8.69,8.68,8.66,8.6,203.70000000000002,203.52,203.48000000000002,203.43,203.38,203.34,203.29,203.25,203.16,27.09,26.75,26.580000000000002,26.38,26.19,26,25.810000000000002,25.62,25.25,N/A,N/A +2012,6,3,11,30,101430,100280,99160,83.28,0,7.32,7.95,8.1,8.18,8.23,8.26,8.290000000000001,8.31,8.33,198.23000000000002,198.05,197.99,197.91,197.83,197.74,197.64000000000001,197.55,197.33,27.02,26.67,26.490000000000002,26.29,26.1,25.91,25.72,25.54,25.16,N/A,N/A +2012,6,3,12,30,101430,100280,99160,83.38,0,6.47,6.96,7.07,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.13,7.11,182.81,183.35,183.68,183.98,184.25,184.5,184.75,184.98,185.44,27.04,26.7,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.18,N/A,N/A +2012,6,3,13,30,101460,100310,99190,82.68,0,6.01,6.49,6.6000000000000005,6.66,6.7,6.74,6.76,6.78,6.8,187.14000000000001,187.01,186.97,186.92000000000002,186.86,186.8,186.73,186.66,186.5,27.09,26.76,26.59,26.38,26.2,26.01,25.810000000000002,25.62,25.25,N/A,N/A +2012,6,3,14,30,101510,100350,99240,83.83,0,5.92,6.390000000000001,6.49,6.55,6.59,6.61,6.63,6.640000000000001,6.66,184.95000000000002,184.82,184.75,184.65,184.55,184.45000000000002,184.34,184.24,184,27.02,26.67,26.5,26.310000000000002,26.12,25.92,25.73,25.55,25.17,N/A,N/A +2012,6,3,15,30,101480,100330,99220,82.91,0,6.74,7.25,7.34,7.38,7.4,7.4,7.390000000000001,7.390000000000001,7.3500000000000005,182.54,182.9,183.09,183.28,183.44,183.59,183.73,183.87,184.12,27.11,26.76,26.580000000000002,26.38,26.2,26,25.810000000000002,25.62,25.240000000000002,N/A,N/A +2012,6,3,16,30,101490,100330,99220,82.91,0,6.36,6.88,7.01,7.09,7.140000000000001,7.17,7.2,7.22,7.26,181.25,181.19,181.22,181.26,181.3,181.32,181.36,181.39000000000001,181.46,27.12,26.77,26.6,26.39,26.2,26.01,25.810000000000002,25.62,25.240000000000002,N/A,N/A +2012,6,3,17,30,101480,100330,99210,84.04,0,6.2700000000000005,6.8,6.94,7.03,7.08,7.13,7.16,7.19,7.22,180.12,180.32,180.43,180.55,180.65,180.75,180.86,180.96,181.16,27.21,26.87,26.7,26.5,26.310000000000002,26.12,25.92,25.73,25.35,N/A,N/A +2012,6,3,18,30,101520,100370,99260,79.23,0,5.23,5.63,5.72,5.76,5.8,5.82,5.83,5.84,5.86,187.48,187.41,187.34,187.25,187.16,187.08,186.98,186.89000000000001,186.70000000000002,27.42,27.09,26.92,26.72,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,6,3,19,30,101440,100290,99170,81.9,0,6.63,7.21,7.3500000000000005,7.44,7.5,7.55,7.59,7.62,7.67,182.6,182.78,182.77,182.75,182.71,182.66,182.61,182.57,182.44,27.29,26.95,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A +2012,6,3,20,30,101420,100280,99160,82.96000000000001,0,6.03,6.6000000000000005,6.75,6.8500000000000005,6.93,6.99,7.04,7.09,7.16,179.77,179.99,180.09,180.19,180.27,180.35,180.42000000000002,180.49,180.62,27.240000000000002,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.75,25.37,N/A,N/A +2012,6,3,21,30,101380,100230,99120,82.11,0,7.1000000000000005,7.7,7.84,7.9,7.930000000000001,7.95,7.96,7.96,7.94,178.33,178.46,178.56,178.63,178.70000000000002,178.76,178.81,178.85,178.92000000000002,27.36,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,6,3,22,30,101340,100200,99080,83.01,0,6.5,7.03,7.16,7.22,7.2700000000000005,7.3,7.32,7.34,7.36,174.39000000000001,174.6,174.64000000000001,174.65,174.65,174.64000000000001,174.63,174.62,174.58,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.88,25.69,25.32,N/A,N/A +2012,6,3,23,30,101320,100170,99060,81.81,0,6.22,6.69,6.8,6.8500000000000005,6.890000000000001,6.91,6.92,6.93,6.94,170.78,170.85,170.93,170.98,171.03,171.07,171.11,171.16,171.24,27.12,26.79,26.62,26.42,26.23,26.04,25.85,25.66,25.29,N/A,N/A +2012,6,4,0,30,101290,100140,99030,81.5,0,5.59,6,6.09,6.140000000000001,6.17,6.2,6.22,6.24,6.28,170.43,170.52,170.56,170.61,170.66,170.71,170.76,170.81,170.93,27.11,26.78,26.61,26.42,26.23,26.04,25.85,25.67,25.3,N/A,N/A +2012,6,4,1,30,101270,100120,99010,82.32000000000001,0,6.38,6.87,6.98,7.03,7.07,7.09,7.1000000000000005,7.11,7.12,166.64000000000001,167.26,167.55,167.83,168.06,168.27,168.48,168.67000000000002,169.04,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A +2012,6,4,2,30,101280,100130,99020,81.71000000000001,0,7,7.61,7.74,7.8,7.8500000000000005,7.87,7.88,7.890000000000001,7.890000000000001,165.51,165.55,165.59,165.63,165.68,165.72,165.77,165.81,165.89000000000001,27.28,26.94,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A +2012,6,4,3,30,101270,100130,99020,81.06,0,8.26,9.05,9.23,9.33,9.39,9.42,9.44,9.46,9.46,167.26,167.39000000000001,167.52,167.68,167.82,167.97,168.12,168.26,168.56,27.37,27.05,26.88,26.68,26.490000000000002,26.3,26.1,25.91,25.53,N/A,N/A +2012,6,4,4,30,101250,100100,98990,79.58,0,8.45,9.32,9.52,9.64,9.72,9.78,9.83,9.86,9.91,181.81,181.43,181.26,181.09,180.94,180.8,180.66,180.54,180.29,27.42,27.09,26.92,26.72,26.53,26.34,26.14,25.95,25.57,N/A,N/A +2012,6,4,5,30,101270,100120,99010,79.27,0,8.93,9.83,10.03,10.13,10.200000000000001,10.24,10.26,10.27,10.27,180.88,181.14000000000001,181.28,181.42000000000002,181.54,181.65,181.76,181.87,182.08,27.55,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.29,26.11,25.72,N/A,N/A +2012,6,4,6,30,101260,100120,99010,79.74,0,7.45,8.16,8.33,8.42,8.49,8.540000000000001,8.57,8.6,8.65,191.15,190.96,190.83,190.68,190.54,190.39000000000001,190.25,190.11,189.82,27.46,27.14,26.98,26.78,26.59,26.400000000000002,26.2,26.02,25.64,N/A,N/A +2012,6,4,7,30,101290,100140,99030,83.55,0,7.33,7.99,8.16,8.25,8.32,8.370000000000001,8.4,8.42,8.46,191.70000000000002,191.54,191.52,191.55,191.59,191.63,191.69,191.75,191.89000000000001,27.27,26.94,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A +2012,6,4,8,30,101230,100080,98970,83.84,0,8.31,9.120000000000001,9.32,9.44,9.52,9.59,9.63,9.67,9.72,191.17000000000002,191.21,191.22,191.22,191.22,191.22,191.22,191.22,191.23000000000002,27.35,27.02,26.85,26.650000000000002,26.47,26.28,26.080000000000002,25.900000000000002,25.52,N/A,N/A +2012,6,4,9,30,101220,100080,98970,84.13,0,7.54,8.27,8.44,8.55,8.620000000000001,8.67,8.700000000000001,8.73,8.78,196.54,196.73000000000002,196.84,196.94,197.02,197.11,197.18,197.26,197.42000000000002,27.42,27.1,26.94,26.740000000000002,26.55,26.37,26.17,25.990000000000002,25.62,N/A,N/A +2012,6,4,10,30,101210,100070,98960,85.79,0,6.97,7.61,7.7700000000000005,7.87,7.94,7.99,8.02,8.05,8.1,193.41,193.45000000000002,193.43,193.42000000000002,193.43,193.44,193.45000000000002,193.47,193.53,27.400000000000002,27.080000000000002,26.91,26.71,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,6,4,11,30,101230,100080,98970,86.82000000000001,0,6.49,7.05,7.19,7.2700000000000005,7.33,7.36,7.390000000000001,7.42,7.44,194.06,194.31,194.44,194.59,194.74,194.89000000000001,195.04,195.19,195.52,27.36,27.04,26.87,26.67,26.48,26.29,26.1,25.91,25.54,N/A,N/A +2012,6,4,12,30,101250,100110,99000,85.89,0,4.79,5.17,5.2700000000000005,5.32,5.36,5.39,5.42,5.44,5.47,196.55,196.76,196.88,196.97,197.06,197.14000000000001,197.22,197.3,197.45000000000002,27.330000000000002,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A +2012,6,4,13,30,101260,100110,99010,85.9,0,6.44,6.99,7.1000000000000005,7.16,7.19,7.21,7.21,7.21,7.2,193.38,193.57,193.68,193.79,193.9,193.99,194.1,194.20000000000002,194.41,27.47,27.150000000000002,26.98,26.78,26.6,26.41,26.22,26.03,25.66,N/A,N/A +2012,6,4,14,30,101260,100110,99000,85,0,6.84,7.44,7.57,7.640000000000001,7.68,7.71,7.72,7.73,7.73,190.92000000000002,191.12,191.25,191.34,191.43,191.5,191.57,191.63,191.76,27.59,27.28,27.11,26.92,26.73,26.54,26.35,26.17,25.79,N/A,N/A +2012,6,4,15,30,101290,100150,99040,84.84,0,5.84,6.3100000000000005,6.41,6.45,6.47,6.48,6.48,6.47,6.45,196.61,196.63,196.65,196.68,196.71,196.75,196.79,196.84,196.94,27.59,27.28,27.11,26.92,26.73,26.55,26.35,26.17,25.8,N/A,N/A +2012,6,4,16,30,101280,100130,99020,84.04,0,5.15,5.55,5.63,5.67,5.7,5.73,5.74,5.75,5.7700000000000005,181.86,182.03,182.22,182.42000000000002,182.6,182.78,182.96,183.14000000000001,183.52,27.6,27.28,27.12,26.92,26.73,26.54,26.35,26.17,25.8,N/A,N/A +2012,6,4,17,30,101280,100130,99020,82.98,0,3.98,4.28,4.3500000000000005,4.39,4.42,4.45,4.46,4.48,4.5,191.32,191.56,191.76,191.93,192.07,192.19,192.3,192.39000000000001,192.55,27.62,27.29,27.12,26.92,26.740000000000002,26.54,26.35,26.16,25.79,N/A,N/A +2012,6,4,18,30,101240,100100,98990,84.64,0,3.8000000000000003,4.04,4.09,4.12,4.14,4.16,4.17,4.18,4.2,188.74,188.48,188.27,188.03,187.81,187.6,187.38,187.16,186.74,27.61,27.27,27.1,26.900000000000002,26.71,26.52,26.32,26.13,25.75,N/A,N/A +2012,6,4,19,30,101240,100100,98990,82.74,0,6.08,6.5600000000000005,6.65,6.69,6.71,6.72,6.71,6.71,6.68,196.74,196.69,196.68,196.66,196.66,196.64000000000001,196.64000000000001,196.63,196.63,27.66,27.330000000000002,27.17,26.96,26.78,26.59,26.39,26.2,25.82,N/A,N/A +2012,6,4,20,30,101200,100050,98940,82.14,0,6.45,6.97,7.09,7.13,7.16,7.17,7.17,7.17,7.140000000000001,189.82,189.82,189.83,189.83,189.84,189.84,189.84,189.84,189.87,27.61,27.29,27.12,26.92,26.73,26.54,26.35,26.16,25.78,N/A,N/A +2012,6,4,21,30,101120,99970,98860,81.36,0,7.46,8.11,8.24,8.290000000000001,8.32,8.33,8.33,8.32,8.290000000000001,190.81,190.94,191,191.07,191.13,191.20000000000002,191.26,191.32,191.44,27.51,27.19,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A +2012,6,4,22,30,101080,99930,98820,78.26,0,7.34,7.99,8.120000000000001,8.18,8.22,8.24,8.24,8.24,8.22,189.58,189.63,189.63,189.62,189.6,189.58,189.55,189.51,189.42000000000002,27.55,27.240000000000002,27.080000000000002,26.88,26.69,26.5,26.310000000000002,26.13,25.75,N/A,N/A +2012,6,4,23,30,101050,99900,98790,79.56,0,7.3500000000000005,8,8.13,8.2,8.24,8.26,8.27,8.28,8.27,188.4,188.29,188.19,188.08,187.97,187.86,187.75,187.64000000000001,187.41,27.43,27.11,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A +2012,6,5,0,30,100980,99840,98730,76.75,0,7.63,8.33,8.48,8.55,8.6,8.63,8.65,8.66,8.67,188.76,188.66,188.59,188.51,188.43,188.36,188.27,188.20000000000002,188.02,27.41,27.1,26.92,26.73,26.54,26.35,26.16,25.97,25.59,N/A,N/A +2012,6,5,1,30,100940,99790,98680,74.5,0,7.98,8.73,8.9,8.99,9.05,9.1,9.13,9.15,9.17,190.87,190.52,190.31,190.1,189.9,189.72,189.53,189.36,188.99,27.43,27.12,26.95,26.75,26.560000000000002,26.37,26.18,25.990000000000002,25.61,N/A,N/A +2012,6,5,2,30,100970,99820,98710,75.56,0,7.18,7.87,8.040000000000001,8.14,8.21,8.25,8.290000000000001,8.31,8.34,193.02,192.94,192.94,192.95000000000002,192.98000000000002,193.01,193.04,193.07,193.16,27.38,27.060000000000002,26.89,26.68,26.490000000000002,26.3,26.11,25.92,25.54,N/A,N/A +2012,6,5,3,30,100990,99850,98740,71.53,0,7.18,7.84,7.97,8.05,8.1,8.14,8.16,8.18,8.2,193.94,193.73000000000002,193.57,193.4,193.23000000000002,193.06,192.89000000000001,192.73000000000002,192.39000000000001,27.45,27.14,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A +2012,6,5,4,30,101000,99850,98740,72.16,0,6.4,7,7.140000000000001,7.22,7.28,7.32,7.3500000000000005,7.37,7.390000000000001,192.95000000000002,192.84,192.82,192.79,192.76,192.73000000000002,192.70000000000002,192.68,192.62,27.41,27.1,26.92,26.73,26.54,26.35,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,6,5,5,30,100970,99830,98720,70.57000000000001,0,6.55,7.12,7.24,7.3100000000000005,7.36,7.390000000000001,7.41,7.43,7.44,192.24,192.68,192.87,193.03,193.17000000000002,193.3,193.43,193.55,193.78,27.38,27.060000000000002,26.89,26.69,26.490000000000002,26.310000000000002,26.11,25.92,25.53,N/A,N/A +2012,6,5,6,30,101020,99870,98760,66.75,0,6.0600000000000005,6.54,6.63,6.67,6.69,6.71,6.71,6.72,6.72,197.79,198.27,198.53,198.78,199.01,199.22,199.42000000000002,199.61,199.99,27.46,27.16,26.990000000000002,26.79,26.6,26.42,26.22,26.03,25.650000000000002,N/A,N/A +2012,6,5,7,30,101010,99870,98760,68.01,0,5.92,6.4,6.49,6.53,6.5600000000000005,6.57,6.57,6.57,6.5600000000000005,211.75,211.42000000000002,211.16,210.91,210.67000000000002,210.44,210.22,210.01,209.57,27.39,27.080000000000002,26.91,26.71,26.52,26.34,26.14,25.95,25.57,N/A,N/A +2012,6,5,8,30,101020,99870,98760,67.01,0,5.4,5.86,5.96,6.0200000000000005,6.07,6.1000000000000005,6.13,6.15,6.19,216.9,216.65,216.56,216.49,216.43,216.38,216.34,216.3,216.25,27.39,27.080000000000002,26.91,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A +2012,6,5,9,30,100990,99850,98730,71.64,0,6.22,6.73,6.84,6.890000000000001,6.93,6.95,6.96,6.97,6.97,220.41,220.28,220.15,220.04,219.93,219.84,219.75,219.66,219.49,27.18,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.71,25.330000000000002,N/A,N/A +2012,6,5,10,30,101010,99860,98750,69.58,0,5.74,6.16,6.2700000000000005,6.32,6.3500000000000005,6.38,6.4,6.41,6.42,233.92000000000002,233.98000000000002,233.93,233.9,233.86,233.83,233.81,233.79,233.75,27.2,26.88,26.71,26.52,26.330000000000002,26.14,25.94,25.76,25.38,N/A,N/A +2012,6,5,11,30,101030,99890,98770,70.51,0,4.43,4.75,4.8100000000000005,4.83,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.83,240.82,240.6,240.49,240.4,240.32,240.26,240.19,240.13,240.04,27.21,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.75,25.37,N/A,N/A +2012,6,5,12,30,101030,99880,98770,72.68,0,4.79,5.13,5.21,5.25,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,250.23000000000002,250.27,250.28,250.3,250.32,250.34,250.36,250.38,250.41,27.09,26.76,26.59,26.38,26.2,26.01,25.810000000000002,25.62,25.240000000000002,N/A,N/A +2012,6,5,13,30,101050,99910,98790,70.52,0,4.07,4.36,4.43,4.47,4.5,4.53,4.54,4.5600000000000005,4.58,256.07,255.4,255.06,254.75,254.48000000000002,254.23000000000002,253.98000000000002,253.75,253.32,27.18,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.72,25.330000000000002,N/A,N/A +2012,6,5,14,30,101080,99930,98820,75.65,0,3.09,3.22,3.23,3.23,3.23,3.23,3.23,3.23,3.24,277.6,274.83,273.16,271.49,269.95,268.47,266.99,265.61,262.75,26.810000000000002,26.48,26.310000000000002,26.12,25.93,25.75,25.55,25.37,25,N/A,N/A +2012,6,5,15,30,101070,99920,98810,77.92,0,3.0300000000000002,3.14,3.15,3.15,3.14,3.13,3.12,3.1,3.08,256.46,256.01,255.63,255.25,254.88,254.51000000000002,254.09,253.70000000000002,252.78,26.68,26.330000000000002,26.150000000000002,25.95,25.77,25.580000000000002,25.39,25.21,24.830000000000002,N/A,N/A +2012,6,5,16,30,101050,99900,98790,75.07000000000001,0,2.89,3.06,3.09,3.12,3.13,3.15,3.17,3.19,3.23,234.02,233.79,233.75,233.69,233.63,233.56,233.49,233.41,233.21,26.88,26.53,26.36,26.16,25.97,25.79,25.6,25.42,25.05,N/A,N/A +2012,6,5,17,30,101030,99880,98770,72.25,0,2.67,2.82,2.86,2.88,2.91,2.92,2.94,2.96,3,202.91,203.25,203.61,203.97,204.32,204.66,205.01,205.35,206.14000000000001,27.080000000000002,26.740000000000002,26.57,26.38,26.2,26.02,25.830000000000002,25.66,25.3,N/A,N/A +2012,6,5,18,30,100980,99830,98720,71.63,0,4.19,4.41,4.43,4.43,4.43,4.41,4.39,4.37,4.3100000000000005,189.54,189.59,189.66,189.71,189.76,189.79,189.82,189.85,189.89000000000001,27.310000000000002,26.96,26.79,26.6,26.41,26.23,26.04,25.87,25.51,N/A,N/A +2012,6,5,19,30,100930,99780,98670,67.93,0,4.9,5.21,5.25,5.26,5.26,5.26,5.25,5.23,5.18,189.61,189.98,190.20000000000002,190.43,190.65,190.87,191.1,191.33,191.83,27.560000000000002,27.240000000000002,27.080000000000002,26.89,26.71,26.54,26.36,26.19,25.86,N/A,N/A +2012,6,5,20,30,100880,99730,98630,66.49,0,5.98,6.41,6.47,6.49,6.49,6.47,6.45,6.42,6.3500000000000005,186.56,186.75,186.87,187,187.12,187.24,187.36,187.48,187.73,27.71,27.400000000000002,27.240000000000002,27.060000000000002,26.88,26.7,26.52,26.35,26.01,N/A,N/A +2012,6,5,21,30,100850,99710,98600,66.92,0,6.17,6.63,6.7,6.71,6.7,6.68,6.65,6.61,6.5200000000000005,193.94,193.73000000000002,193.62,193.49,193.34,193.19,193,192.81,192.3,27.71,27.41,27.25,27.05,26.87,26.68,26.490000000000002,26.310000000000002,25.93,N/A,N/A +2012,6,5,22,30,100790,99650,98540,73.56,0,5.84,6.26,6.32,6.33,6.32,6.3100000000000005,6.28,6.26,6.19,195.43,195.6,195.69,195.81,195.93,196.04,196.17000000000002,196.29,196.6,27.47,27.16,26.990000000000002,26.810000000000002,26.62,26.44,26.26,26.080000000000002,25.73,N/A,N/A +2012,6,5,23,30,100770,99620,98520,75.86,0,6.18,6.62,6.69,6.7,6.7,6.68,6.65,6.62,6.51,198.21,198.16,198.16,198.17000000000002,198.18,198.19,198.19,198.18,198.08,27.36,27.04,26.87,26.67,26.48,26.29,26.09,25.900000000000002,25.5,N/A,N/A +2012,6,6,0,30,100790,99650,98540,69.24,0,5.84,6.32,6.41,6.46,6.49,6.51,6.5200000000000005,6.54,6.5600000000000005,197.9,197.78,197.70000000000002,197.6,197.5,197.39000000000001,197.27,197.16,196.95000000000002,27.69,27.400000000000002,27.240000000000002,27.05,26.87,26.69,26.51,26.330000000000002,25.98,N/A,N/A +2012,6,6,1,30,100760,99620,98510,74.58,0,6.7700000000000005,7.3100000000000005,7.41,7.45,7.47,7.47,7.47,7.46,7.43,200.8,200.56,200.45000000000002,200.34,200.24,200.15,200.05,199.96,199.74,27.39,27.07,26.900000000000002,26.71,26.52,26.34,26.14,25.96,25.59,N/A,N/A +2012,6,6,2,30,100790,99640,98540,74.7,0,6.43,6.94,7.03,7.07,7.09,7.1000000000000005,7.1000000000000005,7.09,7.07,195.19,195.35,195.53,195.70000000000002,195.85,196,196.16,196.3,196.65,27.37,27.05,26.88,26.69,26.5,26.32,26.13,25.95,25.580000000000002,N/A,N/A +2012,6,6,3,30,100840,99690,98580,71.92,0,6.05,6.54,6.640000000000001,6.68,6.71,6.73,6.74,6.74,6.74,191.39000000000001,191.48000000000002,191.46,191.45000000000002,191.44,191.42000000000002,191.41,191.39000000000001,191.37,27.44,27.13,26.96,26.77,26.580000000000002,26.400000000000002,26.2,26.02,25.64,N/A,N/A +2012,6,6,4,30,100860,99710,98600,74.63,0,5.91,6.37,6.45,6.48,6.49,6.5,6.5,6.49,6.47,197.61,197.58,197.53,197.49,197.44,197.4,197.35,197.31,197.21,27.29,26.96,26.79,26.6,26.41,26.22,26.03,25.85,25.47,N/A,N/A +2012,6,6,5,30,100870,99720,98610,74.43,0,5.25,5.65,5.73,5.76,5.79,5.8,5.8100000000000005,5.82,5.82,204.57,204.59,204.58,204.56,204.56,204.55,204.54,204.54,204.53,27.240000000000002,26.91,26.740000000000002,26.54,26.35,26.16,25.97,25.78,25.400000000000002,N/A,N/A +2012,6,6,6,30,100830,99680,98570,76.60000000000001,0,6.28,6.74,6.84,6.87,6.890000000000001,6.9,6.9,6.890000000000001,6.88,214.18,214.1,214.05,214,213.96,213.93,213.88,213.83,213.73000000000002,27.080000000000002,26.740000000000002,26.57,26.37,26.19,26,25.810000000000002,25.62,25.25,N/A,N/A +2012,6,6,7,30,100850,99710,98600,75.65,0,5.33,5.71,5.7700000000000005,5.79,5.8,5.8,5.8,5.8,5.7700000000000005,217.07,216.89000000000001,216.77,216.66,216.55,216.45000000000002,216.34,216.24,216.03,27.080000000000002,26.740000000000002,26.57,26.38,26.19,26,25.8,25.62,25.240000000000002,N/A,N/A +2012,6,6,8,30,100850,99700,98590,72.5,0,4.86,5.21,5.28,5.3100000000000005,5.33,5.3500000000000005,5.36,5.37,5.38,222.94,223,223,223.02,223.04,223.06,223.08,223.11,223.17000000000002,27.150000000000002,26.830000000000002,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.71,25.330000000000002,N/A,N/A +2012,6,6,9,30,100870,99720,98610,73.14,0,4.95,5.2700000000000005,5.32,5.33,5.34,5.34,5.33,5.32,5.3,220.75,220.78,220.83,220.88,220.94,220.99,221.04,221.08,221.19,27.1,26.77,26.6,26.41,26.22,26.03,25.830000000000002,25.650000000000002,25.27,N/A,N/A +2012,6,6,10,30,100900,99750,98640,73.48,0,3.64,3.85,3.89,3.9,3.91,3.91,3.91,3.9,3.89,208.88,208.93,208.91,208.87,208.83,208.79,208.75,208.70000000000002,208.61,27.04,26.72,26.54,26.34,26.16,25.97,25.77,25.59,25.2,N/A,N/A +2012,6,6,11,30,100920,99770,98660,71.49,0,3.24,3.43,3.46,3.47,3.48,3.49,3.49,3.49,3.5,215.56,215.33,215.1,214.88,214.68,214.5,214.31,214.12,213.76,27.080000000000002,26.76,26.59,26.39,26.2,26.01,25.810000000000002,25.63,25.240000000000002,N/A,N/A +2012,6,6,12,30,100950,99810,98690,73.74,0,2.85,2.98,2.99,3,2.99,2.99,2.98,2.98,2.96,207.14000000000001,207.11,207.07,207.02,206.97,206.92000000000002,206.85,206.79,206.65,27,26.67,26.490000000000002,26.3,26.1,25.91,25.72,25.53,25.150000000000002,N/A,N/A +2012,6,6,13,30,100990,99840,98730,72.91,0,2.5100000000000002,2.62,2.63,2.64,2.64,2.64,2.64,2.64,2.63,227.56,227.3,227.07,226.85,226.63,226.42000000000002,226.20000000000002,226,225.58,27.02,26.69,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.17,N/A,N/A +2012,6,6,14,30,101040,99890,98780,73.27,0,1.8,1.8800000000000001,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,230.43,229.64000000000001,229.07,228.52,228.02,227.53,227.04,226.59,225.68,27.03,26.7,26.52,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A +2012,6,6,15,30,101070,99920,98810,73.39,0,1.6500000000000001,1.7,1.7,1.69,1.69,1.68,1.67,1.6600000000000001,1.6500000000000001,252.97,252.4,251.97,251.55,251.17000000000002,250.81,250.45000000000002,250.11,249.42000000000002,27.09,26.75,26.57,26.37,26.18,25.990000000000002,25.8,25.61,25.22,N/A,N/A +2012,6,6,16,30,101070,99920,98810,74.4,0,1.45,1.52,1.53,1.54,1.54,1.55,1.56,1.56,1.57,197.68,196.99,196.62,196.26,195.93,195.61,195.3,195.03,194.4,27.080000000000002,26.73,26.560000000000002,26.36,26.16,25.97,25.78,25.59,25.2,N/A,N/A +2012,6,6,17,30,101070,99930,98810,75.41,0,1.3800000000000001,1.42,1.43,1.43,1.43,1.42,1.42,1.42,1.41,201.47,201.69,201.70000000000002,201.70000000000002,201.71,201.72,201.72,201.72,201.67000000000002,27.14,26.78,26.61,26.41,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A +2012,6,6,18,30,101050,99910,98800,77.22,0,3.56,3.72,3.74,3.74,3.73,3.72,3.71,3.7,3.67,186.55,186.08,185.83,185.58,185.33,185.1,184.83,184.58,184.02,27.21,26.830000000000002,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.3,N/A,N/A +2012,6,6,19,30,101050,99900,98790,76.59,0,4.0200000000000005,4.22,4.25,4.25,4.25,4.25,4.24,4.24,4.21,176.23,176.16,176.08,176,175.9,175.81,175.70000000000002,175.59,175.34,27.32,26.95,26.78,26.57,26.38,26.19,26,25.810000000000002,25.44,N/A,N/A +2012,6,6,20,30,101010,99860,98750,78.06,0,4.65,4.91,4.95,4.96,4.97,4.97,4.96,4.95,4.93,181.55,181.38,181.28,181.18,181.08,180.98,180.86,180.74,180.44,27.36,27,26.830000000000002,26.63,26.44,26.25,26.05,25.87,25.5,N/A,N/A +2012,6,6,21,30,100950,99810,98700,78.17,0,5.01,5.33,5.38,5.4,5.4,5.4,5.4,5.39,5.38,180.55,180.41,180.36,180.3,180.22,180.12,179.99,179.86,179.44,27.42,27.07,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.96,25.59,N/A,N/A +2012,6,6,22,30,100920,99770,98670,80.75,0,5.18,5.54,5.61,5.64,5.65,5.66,5.66,5.66,5.66,179.48,179.18,178.99,178.77,178.56,178.35,178.11,177.87,177.29,27.35,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.900000000000002,25.53,N/A,N/A +2012,6,6,23,30,100890,99740,98640,79.92,0,5.3100000000000005,5.69,5.75,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,5.75,5.72,181.27,181.07,180.95000000000002,180.82,180.70000000000002,180.58,180.44,180.31,179.96,27.41,27.09,26.92,26.72,26.54,26.35,26.16,25.98,25.6,N/A,N/A +2012,6,7,0,30,100900,99760,98650,82.17,0,5.34,5.75,5.82,5.8500000000000005,5.87,5.88,5.87,5.87,5.8500000000000005,173.16,172.89000000000001,172.84,172.79,172.73,172.67000000000002,172.6,172.53,172.37,27.34,27.02,26.85,26.650000000000002,26.46,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,6,7,1,30,100940,99800,98690,82.86,0,4.88,5.22,5.29,5.32,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,171.75,171.5,171.33,171.14000000000001,170.97,170.8,170.6,170.4,169.93,27.25,26.93,26.76,26.560000000000002,26.38,26.19,26,25.810000000000002,25.44,N/A,N/A +2012,6,7,2,30,100990,99850,98740,80.59,0,4.91,5.25,5.3100000000000005,5.34,5.3500000000000005,5.36,5.3500000000000005,5.3500000000000005,5.34,162.75,162.56,162.45000000000002,162.32,162.20000000000002,162.08,161.93,161.78,161.41,27.32,27,26.830000000000002,26.63,26.45,26.26,26.07,25.88,25.51,N/A,N/A +2012,6,7,3,30,101070,99920,98810,80.66,0,4.84,5.18,5.24,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,5.32,110.95,110.67,110.68,110.66,110.64,110.60000000000001,110.55,110.51,110.4,27.36,27.04,26.87,26.67,26.490000000000002,26.3,26.11,25.92,25.55,N/A,N/A +2012,6,7,4,30,101070,99930,98820,82.29,0,6.21,6.7700000000000005,6.890000000000001,6.95,6.99,7.01,7.03,7.03,7.03,100.68,100.38,100.36,100.35000000000001,100.34,100.33,100.31,100.3,100.29,27.38,27.05,26.88,26.68,26.490000000000002,26.3,26.1,25.92,25.54,N/A,N/A +2012,6,7,5,30,101070,99920,98810,83.26,0,6.91,7.390000000000001,7.46,7.48,7.47,7.45,7.42,7.390000000000001,7.2700000000000005,103.73,103.46000000000001,103.27,103.05,102.78,102.49000000000001,102.07000000000001,101.65,99.99000000000001,26.650000000000002,26.28,26.11,25.93,25.75,25.580000000000002,25.41,25.26,25,N/A,N/A +2012,6,7,6,30,101080,99930,98820,83.39,0,4.36,4.57,4.6000000000000005,4.6000000000000005,4.58,4.57,4.54,4.5200000000000005,4.46,108.65,108.81,108.93,109.05,109.17,109.28,109.41,109.54,109.84,26.62,26.26,26.09,25.900000000000002,25.71,25.53,25.34,25.17,24.82,N/A,N/A +2012,6,7,7,30,101080,99930,98820,84.36,0,2.84,2.98,3,3.0100000000000002,3.02,3.02,3.02,3.02,3.0100000000000002,98.13,99.35000000000001,100.06,100.77,101.43,102.08,102.79,103.48,105.06,26.67,26.32,26.150000000000002,25.95,25.76,25.57,25.38,25.2,24.82,N/A,N/A +2012,6,7,8,30,101070,99920,98810,84.18,0,2.73,2.85,2.87,2.86,2.86,2.85,2.84,2.83,2.8000000000000003,85.01,85.45,85.89,86.28,86.64,86.98,87.33,87.68,88.39,26.78,26.44,26.27,26.07,25.88,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A +2012,6,7,9,30,101090,99950,98830,82.8,0,4.8100000000000005,5.19,5.29,5.3500000000000005,5.4,5.44,5.47,5.5,5.5600000000000005,54.49,54.32,54.24,54.160000000000004,54.08,53.99,53.910000000000004,53.83,53.67,26.82,26.47,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A +2012,6,7,10,30,101100,99940,98830,86.96000000000001,0,7.37,7.84,7.9,7.91,7.890000000000001,7.8500000000000005,7.79,7.74,7.57,36.550000000000004,36.910000000000004,37.17,37.46,37.77,38.1,38.51,38.92,40.25,25.39,24.95,24.75,24.55,24.36,24.18,23.990000000000002,23.81,23.45,N/A,N/A +2012,6,7,11,30,101130,99970,98850,86.18,0,6.51,6.93,7,7.0200000000000005,7.01,7,6.97,6.94,6.8500000000000005,51.59,51.95,52.19,52.47,52.74,53.03,53.38,53.730000000000004,54.69,25.75,25.330000000000002,25.14,24.93,24.740000000000002,24.55,24.36,24.18,23.81,N/A,N/A +2012,6,7,12,30,101130,99980,98860,86.14,0,6.03,6.4,6.46,6.47,6.47,6.45,6.43,6.41,6.34,55.28,55.63,55.870000000000005,56.120000000000005,56.36,56.6,56.88,57.160000000000004,57.83,25.830000000000002,25.41,25.23,25.02,24.830000000000002,24.64,24.44,24.26,23.88,N/A,N/A +2012,6,7,13,30,101200,100050,98930,85.39,0,5.87,6.25,6.32,6.34,6.3500000000000005,6.34,6.33,6.32,6.2700000000000005,50.660000000000004,50.85,51,51.15,51.300000000000004,51.44,51.6,51.75,52.1,26.07,25.67,25.48,25.28,25.080000000000002,24.900000000000002,24.7,24.51,24.13,N/A,N/A +2012,6,7,14,30,101190,100030,98920,83.63,0,5.68,6.03,6.09,6.1000000000000005,6.1000000000000005,6.09,6.07,6.05,5.99,74.07000000000001,74.25,74.41,74.58,74.75,74.92,75.13,75.32000000000001,75.86,26.2,25.810000000000002,25.63,25.43,25.240000000000002,25.05,24.86,24.67,24.29,N/A,N/A +2012,6,7,15,30,101280,100130,99010,81.92,0,5.11,5.41,5.47,5.49,5.49,5.49,5.48,5.47,5.44,64.99,65.18,65.18,65.21000000000001,65.24,65.29,65.34,65.4,65.57000000000001,26.35,25.97,25.79,25.580000000000002,25.39,25.2,25.01,24.82,24.44,N/A,N/A +2012,6,7,16,30,101240,100080,98970,79.64,0,4.03,4.22,4.23,4.22,4.21,4.18,4.15,4.12,4.0200000000000005,75.49,75.59,75.63,75.68,75.74,75.82000000000001,75.92,76.03,76.43,26.55,26.18,26,25.8,25.61,25.43,25.23,25.05,24.69,N/A,N/A +2012,6,7,17,30,101240,100090,98970,81.9,0,5.11,5.4,5.45,5.46,5.46,5.44,5.43,5.41,5.3500000000000005,88.39,88.42,88.47,88.53,88.59,88.65,88.71000000000001,88.77,88.92,26.67,26.3,26.12,25.92,25.73,25.55,25.35,25.17,24.8,N/A,N/A +2012,6,7,18,30,101210,100060,98950,83.7,0,5.1000000000000005,5.39,5.41,5.4,5.38,5.36,5.32,5.28,5.14,117.14,117.27,117.3,117.37,117.45,117.54,117.67,117.8,118.37,26.91,26.54,26.37,26.17,25.98,25.8,25.62,25.44,25.11,N/A,N/A +2012,6,7,19,30,101150,100010,98900,83.9,0,4.86,5.14,5.19,5.19,5.18,5.16,5.14,5.11,5.03,129.88,129.93,129.96,129.98,130,130.02,130.04,130.08,130.19,27.150000000000002,26.8,26.62,26.42,26.240000000000002,26.05,25.86,25.68,25.32,N/A,N/A +2012,6,7,20,30,101140,100000,98890,83.94,0,2.73,2.85,2.86,2.86,2.86,2.85,2.84,2.83,2.8000000000000003,133.1,133.25,133.23,133.23,133.24,133.25,133.28,133.32,133.43,27.310000000000002,26.96,26.78,26.580000000000002,26.39,26.2,26.01,25.830000000000002,25.45,N/A,N/A +2012,6,7,21,30,101130,99980,98870,84.01,0,2.15,2.23,2.24,2.24,2.24,2.24,2.23,2.22,2.21,136.98,137.04,137.07,137.1,137.12,137.14000000000001,137.15,137.15,137.16,27.41,27.060000000000002,26.89,26.69,26.5,26.310000000000002,26.12,25.93,25.55,N/A,N/A +2012,6,7,22,30,101120,99970,98870,84.98,0,2.59,2.69,2.69,2.68,2.67,2.66,2.65,2.63,2.6,152.88,153.06,153.13,153.21,153.29,153.36,153.45000000000002,153.53,153.75,27.46,27.11,26.93,26.740000000000002,26.55,26.36,26.16,25.98,25.6,N/A,N/A +2012,6,7,23,30,101120,99970,98860,84.48,0,1.26,1.3,1.31,1.31,1.31,1.31,1.31,1.31,1.3,196.9,196.41,196.04,195.67000000000002,195.34,195.04,194.72,194.44,193.86,27.5,27.150000000000002,26.98,26.78,26.59,26.400000000000002,26.21,26.02,25.64,N/A,N/A +2012,6,8,0,30,101140,99990,98890,84.08,0,1.31,1.3900000000000001,1.42,1.43,1.45,1.46,1.48,1.49,1.52,112.83,113.17,113.32000000000001,113.44,113.53,113.60000000000001,113.66,113.7,113.77,27.5,27.17,27,26.8,26.62,26.42,26.23,26.04,25.66,N/A,N/A +2012,6,8,1,30,101110,99970,98860,84.89,0,2.38,2.5100000000000002,2.54,2.56,2.57,2.58,2.6,2.61,2.62,97.3,96.97,96.89,96.8,96.72,96.64,96.56,96.47,96.31,27.43,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.6,N/A,N/A +2012,6,8,2,30,101190,100050,98940,86.08,0,4.79,5.15,5.23,5.28,5.3100000000000005,5.33,5.3500000000000005,5.36,5.38,55.6,55.68,55.800000000000004,55.910000000000004,56,56.08,56.15,56.21,56.32,27.52,27.19,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A +2012,6,8,3,30,101200,100050,98930,84.47,1.1,10.06,11,11.22,11.35,11.44,11.51,11.56,11.6,11.65,71.72,72.36,72.61,72.85000000000001,73.08,73.28,73.5,73.69,74.11,25.88,25.44,25.25,25.05,24.85,24.67,24.47,24.29,23.92,N/A,N/A +2012,6,8,4,30,101190,100040,98920,84.84,0,7.29,7.86,7.99,8.05,8.1,8.120000000000001,8.15,8.16,8.19,83.41,84.15,84.62,85.12,85.60000000000001,86.08,86.59,87.07000000000001,88.16,25.84,25.43,25.240000000000002,25.04,24.85,24.67,24.48,24.3,23.93,N/A,N/A +2012,6,8,5,30,101180,100030,98910,84.06,0,6.97,7.5600000000000005,7.71,7.8,7.88,7.930000000000001,7.98,8.03,8.11,92.28,93.16,93.73,94.29,94.81,95.31,95.81,96.29,97.29,26.2,25.8,25.62,25.42,25.23,25.05,24.86,24.67,24.3,N/A,N/A +2012,6,8,6,30,101180,100030,98920,81.11,0,4.63,4.96,5.03,5.07,5.1000000000000005,5.11,5.12,5.13,5.14,102.12,102.16,102.22,102.25,102.26,102.27,102.27,102.26,102.24000000000001,26.560000000000002,26.19,26.01,25.810000000000002,25.62,25.43,25.23,25.04,24.66,N/A,N/A +2012,6,8,7,30,101180,100030,98920,82.57000000000001,0,3.13,3.2800000000000002,3.3000000000000003,3.31,3.31,3.31,3.31,3.3000000000000003,3.3000000000000003,123.7,123.55,123.53,123.52,123.49000000000001,123.46000000000001,123.45,123.44,123.39,26.52,26.17,25.990000000000002,25.79,25.6,25.41,25.22,25.04,24.66,N/A,N/A +2012,6,8,8,30,101180,100030,98920,78.39,0,2.04,2.15,2.17,2.19,2.21,2.22,2.23,2.24,2.2600000000000002,79.27,80.58,81.32000000000001,82.02,82.64,83.2,83.75,84.25,85.25,26.78,26.44,26.26,26.060000000000002,25.87,25.68,25.48,25.3,24.91,N/A,N/A +2012,6,8,9,30,101190,100030,98920,76.36,0,3.49,3.71,3.7600000000000002,3.8000000000000003,3.83,3.85,3.88,3.9,3.94,78.98,77.27,76.29,75.32000000000001,74.45,73.61,72.79,72.01,70.48,26.71,26.36,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A +2012,6,8,10,30,101190,100040,98920,78.36,0,2.64,2.7600000000000002,2.79,2.8000000000000003,2.82,2.83,2.83,2.84,2.85,94.47,95.37,95.94,96.43,96.86,97.26,97.68,98.06,98.93,26.52,26.16,25.98,25.79,25.6,25.41,25.21,25.03,24.650000000000002,N/A,N/A +2012,6,8,11,30,101210,100060,98940,79.63,0,4.99,5.0600000000000005,4.95,4.79,4.6000000000000005,4.4,4.16,3.93,3.37,139.21,139.04,138.83,138.61,138.31,137.97,137.34,136.71,133.98,25.810000000000002,25.44,25.27,25.09,24.92,24.76,24.59,24.43,24.1,N/A,N/A +2012,6,8,12,30,101260,100100,98980,82.60000000000001,0,2.98,3.13,3.13,3.11,3.1,3.09,3.0700000000000003,3.0500000000000003,3.02,66.56,65.57000000000001,65.06,64.5,63.980000000000004,63.47,62.940000000000005,62.440000000000005,61.34,25.87,25.5,25.32,25.11,24.92,24.73,24.53,24.35,23.96,N/A,N/A +2012,6,8,13,30,101260,100100,98980,82.35000000000001,0,5.69,5.8100000000000005,5.79,5.75,5.7700000000000005,5.84,5.92,6,6.11,68.77,69.34,69.89,70.62,71.54,72.58,73.4,74.09,75.32000000000001,24.7,24.330000000000002,24.22,24.14,24.18,24.29,24.44,24.59,24.61,N/A,N/A +2012,6,8,14,30,101230,100070,98950,82.75,0,4.13,4.25,4.25,4.21,4.17,4.13,4.07,4.0200000000000005,3.9,63.29,62.15,61.5,60.78,60.03,59.26,58.32,57.44,55.31,25,24.59,24.41,24.23,24.060000000000002,23.89,23.73,23.580000000000002,23.330000000000002,N/A,N/A +2012,6,8,15,30,101230,100070,98960,73.28,0,3.7800000000000002,3.94,3.94,3.93,3.91,3.88,3.85,3.83,3.77,39.33,38.480000000000004,38,37.52,37.09,36.68,36.28,35.9,35.21,26.27,25.900000000000002,25.73,25.54,25.36,25.18,25,24.830000000000002,24.48,N/A,N/A +2012,6,8,16,30,101270,100110,98990,88.91,379.40000000000003,4,4.11,4.16,4.23,4.34,4.46,4.62,4.79,5.15,109.96000000000001,103.73,99.85000000000001,95.63,91.7,87.96000000000001,84.10000000000001,80.44,73.48,24.650000000000002,24.25,24.1,23.95,23.830000000000002,23.71,23.63,23.56,23.48,N/A,N/A +2012,6,8,17,30,101220,100060,98940,92.48,87.2,1.28,1.46,1.62,1.9000000000000001,2.2,2.54,2.88,3.21,3.75,157.20000000000002,129.18,114.89,104.89,97.07000000000001,90.60000000000001,86.01,82.18,77.69,24.42,24.25,24.21,24.18,24.14,24.11,24.1,24.09,24,N/A,N/A +2012,6,8,18,30,101180,100030,98920,76.43,5.9,1.42,1.56,1.62,1.67,1.72,1.76,1.8,1.84,1.9100000000000001,101.19,99.9,99.08,98.36,97.72,97.11,96.53,95.99000000000001,94.86,26.330000000000002,25.98,25.810000000000002,25.61,25.42,25.240000000000002,25.04,24.86,24.48,N/A,N/A +2012,6,8,19,30,101140,99990,98880,70.87,0,4.55,4.86,4.91,4.94,4.96,4.97,4.98,4.98,4.99,74.4,74.32000000000001,74.17,74.01,73.87,73.73,73.57000000000001,73.41,73.06,27.080000000000002,26.73,26.55,26.35,26.16,25.98,25.78,25.6,25.22,N/A,N/A +2012,6,8,20,30,101110,99960,98850,73.14,0,4.16,4.39,4.43,4.45,4.46,4.46,4.46,4.46,4.45,101.29,100.42,100.01,99.56,99.13,98.69,98.22,97.76,96.72,27.23,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.77,25.400000000000002,N/A,N/A +2012,6,8,21,30,101090,99950,98830,76.17,0,4.22,4.45,4.48,4.49,4.49,4.49,4.48,4.47,4.45,117.10000000000001,116.54,116.24000000000001,115.94,115.64,115.34,115.02,114.72,113.99000000000001,27.17,26.82,26.64,26.45,26.26,26.07,25.87,25.69,25.32,N/A,N/A +2012,6,8,22,30,101060,99910,98800,72.59,0,3.72,3.92,3.95,3.96,3.95,3.95,3.93,3.92,3.88,116.09,116.02,116.04,116.04,116.03,116.02,115.97,115.92,115.74000000000001,27.22,26.88,26.71,26.51,26.32,26.13,25.93,25.75,25.36,N/A,N/A +2012,6,8,23,30,101050,99900,98790,76.44,0,4.25,4.49,4.5200000000000005,4.53,4.53,4.5200000000000005,4.51,4.5,4.48,130.05,129.54,129.3,129.07,128.86,128.65,128.45,128.26,127.86,27.13,26.79,26.62,26.42,26.23,26.04,25.84,25.66,25.27,N/A,N/A +2012,6,9,0,30,101030,99880,98770,75.28,0,3.15,3.3200000000000003,3.35,3.37,3.38,3.38,3.38,3.38,3.38,120.51,119.88,119.51,119.17,118.85000000000001,118.55,118.25,117.97,117.34,27.07,26.73,26.560000000000002,26.36,26.17,25.98,25.78,25.59,25.21,N/A,N/A +2012,6,9,1,30,101030,99880,98770,78.93,0,1.8900000000000001,1.98,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.02,2.02,2.02,117.8,117.29,117.05,116.79,116.56,116.32000000000001,116.07000000000001,115.83,115.34,26.93,26.6,26.42,26.22,26.03,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A +2012,6,9,2,30,101040,99890,98780,80.99,0,2.02,2.14,2.17,2.19,2.2,2.22,2.23,2.24,2.2600000000000002,75.64,75.77,75.96000000000001,76.13,76.28,76.43,76.58,76.7,76.97,26.91,26.57,26.400000000000002,26.2,26.01,25.82,25.62,25.43,25.05,N/A,N/A +2012,6,9,3,30,101080,99920,98800,93.83,0,13.64,15.18,15.4,15.49,15.49,15.450000000000001,15.36,15.26,14.950000000000001,61.19,61.15,61.34,61.58,61.83,62.09,62.4,62.68,63.43,24.650000000000002,24.02,23.77,23.53,23.31,23.1,22.87,22.67,22.400000000000002,N/A,N/A +2012,6,9,4,30,101050,99880,98760,84.46000000000001,27.1,7.0600000000000005,7.54,7.640000000000001,7.72,7.79,7.86,7.97,8.09,8.49,68.95,69.36,69.75,70.18,70.7,71.22,71.95,72.7,75.34,23.91,23.46,23.3,23.150000000000002,23.02,22.900000000000002,22.8,22.72,22.66,N/A,N/A +2012,6,9,5,30,101040,99880,98760,80.85000000000001,0,3.81,3.89,3.87,3.83,3.79,3.7600000000000002,3.72,3.7,3.7,131.57,129.92000000000002,128.99,128.05,127.17,126.33,125.48,124.7,124.02,25.060000000000002,24.67,24.490000000000002,24.310000000000002,24.14,23.97,23.8,23.64,23.35,N/A,N/A +2012,6,9,6,30,101000,99850,98730,78.58,0,3.16,3.2800000000000002,3.29,3.29,3.29,3.2800000000000002,3.2800000000000002,3.2800000000000002,3.33,118.69,118.60000000000001,118.57000000000001,118.55,118.53,118.52,118.54,118.56,118.89,25.29,24.900000000000002,24.72,24.53,24.34,24.16,23.98,23.82,23.52,N/A,N/A +2012,6,9,7,30,101020,99870,98750,80.02,0,4.74,5.04,5.1000000000000005,5.14,5.17,5.19,5.21,5.22,5.26,93.05,93.44,93.67,93.89,94.10000000000001,94.3,94.52,94.72,95.17,25.86,25.45,25.27,25.07,24.88,24.69,24.490000000000002,24.310000000000002,23.93,N/A,N/A +2012,6,9,8,30,100980,99830,98720,76.73,0,3.3200000000000003,3.5700000000000003,3.63,3.69,3.74,3.7800000000000002,3.8200000000000003,3.86,3.95,97.03,96.8,96.77,96.74000000000001,96.71000000000001,96.68,96.66,96.63,96.58,26.310000000000002,25.94,25.76,25.560000000000002,25.37,25.18,24.98,24.79,24.41,N/A,N/A +2012,6,9,9,30,101030,99870,98750,89.57000000000001,184.9,4.21,4.32,4.3100000000000005,4.25,4.19,4.11,4.04,3.98,3.98,76.93,80.45,82.7,85.48,88.39,91.49,94.64,97.56,102.31,24.22,23.87,23.77,23.71,23.72,23.77,23.81,23.84,23.740000000000002,N/A,N/A +2012,6,9,10,30,100990,99830,98710,84.98,9.200000000000001,2.44,2.35,2.24,2.11,2.09,2.11,2.08,2.0300000000000002,2,19.56,24.73,29.990000000000002,38.67,51.9,67.9,79.19,88.03,106.55,24.25,23.91,23.8,23.72,23.740000000000002,23.82,23.79,23.73,23.43,N/A,N/A +2012,6,9,11,30,100990,99840,98720,85.95,1.8,0.11,0.16,0.2,0.25,0.31,0.36,0.42,0.49,0.67,59.69,84.72,99.45,105.99000000000001,110.21000000000001,112.58,113.74000000000001,114.46000000000001,113.16,25.27,24.900000000000002,24.72,24.53,24.34,24.16,23.98,23.81,23.46,N/A,N/A +2012,6,9,12,30,100990,99840,98720,85.58,0,1.6,1.6300000000000001,1.62,1.61,1.59,1.58,1.56,1.54,1.48,305.24,307.19,308.31,309.54,310.85,312.2,313.91,315.59000000000003,321.02,25.6,25.23,25.05,24.85,24.66,24.47,24.28,24.1,23.740000000000002,N/A,N/A +2012,6,9,13,30,101020,99870,98750,84.3,0,2.11,2.24,2.27,2.3000000000000003,2.32,2.35,2.37,2.39,2.43,6.92,9.49,10.72,11.89,12.97,14,15.02,15.97,17.96,26.11,25.740000000000002,25.560000000000002,25.36,25.17,24.98,24.79,24.6,24.22,N/A,N/A +2012,6,9,14,30,101030,99880,98770,79.84,0,4.62,4.84,4.86,4.8500000000000005,4.83,4.8100000000000005,4.79,4.76,4.7,32.980000000000004,33.51,33.86,34.18,34.480000000000004,34.75,35.02,35.27,35.77,26.36,25.98,25.8,25.6,25.41,25.22,25.02,24.84,24.46,N/A,N/A +2012,6,9,15,30,101060,99900,98780,90.07000000000001,0,4.42,4.51,4.46,4.4,4.33,4.2700000000000005,4.2,4.14,4.03,124.05,121.38,119.61,117.67,115.82000000000001,114.01,112.13,110.38,105.77,25.13,24.72,24.53,24.34,24.150000000000002,23.98,23.79,23.62,23.27,N/A,N/A +2012,6,9,16,30,101020,99860,98740,86.4,0,2.63,2.66,2.62,2.56,2.5100000000000002,2.45,2.38,2.31,2.11,138.8,136.97,135.62,134.15,132.55,130.89000000000001,128.57,126.25,116.47,25.32,24.92,24.740000000000002,24.54,24.35,24.17,23.98,23.81,23.45,N/A,N/A +2012,6,9,17,30,101010,99860,98740,84.58,0,2.07,2.04,2,1.94,1.9000000000000001,1.85,1.8,1.76,1.69,111.65,108.59,106.66,104.53,102.31,100.04,97.29,94.64,87.8,25.490000000000002,25.09,24.91,24.71,24.52,24.34,24.14,23.96,23.59,N/A,N/A +2012,6,9,18,30,100990,99840,98720,84.28,0,2.95,3.08,3.09,3.09,3.08,3.08,3.0700000000000003,3.0700000000000003,3.06,68.26,67.29,66.62,65.96000000000001,65.32000000000001,64.67,63.980000000000004,63.31,61.83,25.79,25.38,25.19,24.990000000000002,24.79,24.61,24.41,24.22,23.84,N/A,N/A +2012,6,9,19,30,100980,99830,98710,78.4,0,3.88,4.12,4.18,4.22,4.25,4.28,4.3,4.32,4.3500000000000005,97.51,97.24000000000001,97.09,96.95,96.81,96.69,96.56,96.45,96.2,26.35,25.96,25.77,25.57,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A +2012,6,9,20,30,100910,99760,98650,79.97,0,4.5600000000000005,4.79,4.83,4.84,4.83,4.82,4.8100000000000005,4.79,4.75,129.76,129.38,129.21,129.02,128.82,128.62,128.4,128.18,127.65,26.43,26.05,25.87,25.67,25.48,25.29,25.09,24.91,24.54,N/A,N/A +2012,6,9,21,30,100900,99760,98650,79.77,0,3.92,4.17,4.23,4.2700000000000005,4.3,4.32,4.34,4.36,4.39,106,106.12,106.19,106.24000000000001,106.3,106.35000000000001,106.39,106.43,106.51,26.66,26.28,26.1,25.900000000000002,25.71,25.52,25.32,25.13,24.75,N/A,N/A +2012,6,9,22,30,100890,99740,98630,80.06,0,6.0600000000000005,6.48,6.5600000000000005,6.59,6.61,6.62,6.62,6.62,6.61,119.23,119.34,119.39,119.45,119.51,119.56,119.63,119.69,119.82000000000001,26.73,26.36,26.17,25.97,25.78,25.59,25.39,25.2,24.82,N/A,N/A +2012,6,9,23,30,100850,99710,98600,83.72,0,4.79,5.07,5.11,5.13,5.14,5.14,5.13,5.13,5.11,136.67000000000002,137.17000000000002,137.4,137.64000000000001,137.86,138.08,138.3,138.51,138.96,26.66,26.29,26.12,25.91,25.72,25.53,25.34,25.150000000000002,24.77,N/A,N/A +2012,6,10,0,30,100810,99670,98560,81.65,0,4.26,4.5200000000000005,4.5600000000000005,4.58,4.59,4.6000000000000005,4.6000000000000005,4.6000000000000005,4.59,143.6,143.44,143.34,143.24,143.15,143.07,142.97,142.89000000000001,142.68,26.71,26.35,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A +2012,6,10,1,30,100800,99650,98540,85.45,0,6.45,6.88,6.94,6.96,6.96,6.95,6.93,6.91,6.8500000000000005,145.1,145.16,145.13,145.11,145.1,145.08,145.06,145.05,145,26.52,26.13,25.95,25.75,25.560000000000002,25.37,25.17,24.990000000000002,24.61,N/A,N/A +2012,6,10,2,30,100820,99670,98570,85.02,0,5.51,5.88,5.95,5.98,6,6.01,6.01,6.01,5.99,155.44,155.36,155.31,155.25,155.18,155.11,155.03,154.95000000000002,154.77,26.650000000000002,26.28,26.1,25.900000000000002,25.71,25.51,25.32,25.14,24.75,N/A,N/A +2012,6,10,3,30,100850,99700,98590,84.31,0,5.59,5.96,6.04,6.07,6.09,6.09,6.09,6.09,6.08,152.65,152.83,152.95000000000002,153.07,153.18,153.27,153.38,153.47,153.66,26.73,26.36,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A +2012,6,10,4,30,100830,99690,98580,83.22,0,5.12,5.46,5.5200000000000005,5.55,5.5600000000000005,5.57,5.57,5.57,5.55,162.5,162.47,162.47,162.45000000000002,162.44,162.43,162.41,162.39000000000001,162.34,26.740000000000002,26.37,26.19,25.990000000000002,25.8,25.61,25.41,25.23,24.84,N/A,N/A +2012,6,10,5,30,100820,99670,98560,84.21000000000001,0,5.59,5.98,6.05,6.08,6.09,6.1000000000000005,6.1000000000000005,6.09,6.07,163.59,163.72,163.77,163.81,163.84,163.88,163.91,163.94,164.01,26.72,26.34,26.16,25.96,25.77,25.580000000000002,25.38,25.19,24.810000000000002,N/A,N/A +2012,6,10,6,30,100830,99690,98580,84.32000000000001,0,5.59,6,6.09,6.13,6.16,6.19,6.2,6.21,6.22,176.73,176.9,177,177.09,177.18,177.26,177.35,177.42000000000002,177.58,26.73,26.36,26.18,25.98,25.79,25.59,25.400000000000002,25.21,24.830000000000002,N/A,N/A +2012,6,10,7,30,100850,99710,98600,84.06,0,5.48,5.88,5.97,6.01,6.04,6.05,6.0600000000000005,6.07,6.0600000000000005,193.37,193.6,193.65,193.67000000000002,193.66,193.65,193.63,193.61,193.54,26.82,26.46,26.28,26.080000000000002,25.88,25.69,25.5,25.310000000000002,24.93,N/A,N/A +2012,6,10,8,30,100850,99700,98590,82.41,0,5.96,6.43,6.54,6.6000000000000005,6.65,6.68,6.7,6.72,6.74,205.98000000000002,205.86,205.74,205.59,205.46,205.34,205.20000000000002,205.08,204.82,27.02,26.67,26.490000000000002,26.29,26.09,25.91,25.71,25.52,25.14,N/A,N/A +2012,6,10,9,30,100840,99700,98590,81.54,0,6.46,6.94,7.05,7.1000000000000005,7.13,7.140000000000001,7.15,7.15,7.15,204.52,204.77,204.9,205.01,205.11,205.20000000000002,205.3,205.38,205.55,27.11,26.76,26.580000000000002,26.38,26.19,26,25.8,25.62,25.23,N/A,N/A +2012,6,10,10,30,100840,99690,98580,82.55,0,5.84,6.29,6.38,6.43,6.46,6.48,6.49,6.5,6.5,223.58,223.31,223.12,222.94,222.76,222.59,222.42000000000002,222.25,221.91,27.080000000000002,26.73,26.55,26.35,26.16,25.97,25.78,25.59,25.22,N/A,N/A +2012,6,10,11,30,100860,99720,98610,82.43,0,5.96,6.44,6.54,6.6000000000000005,6.63,6.65,6.66,6.67,6.67,223.19,222.64000000000001,222.42000000000002,222.22,222.05,221.9,221.75,221.62,221.35,27.23,26.88,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A +2012,6,10,12,30,100900,99750,98650,81.75,0,5.63,6.11,6.22,6.29,6.34,6.38,6.41,6.44,6.49,215.81,215.57,215.44,215.31,215.20000000000002,215.09,214.97,214.86,214.65,27.36,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A +2012,6,10,13,30,100940,99800,98690,83.35000000000001,0,5.61,6.04,6.13,6.19,6.22,6.24,6.26,6.2700000000000005,6.29,211.64000000000001,211.82,211.93,212.04,212.14000000000001,212.24,212.34,212.44,212.67000000000002,27.38,27.04,26.88,26.67,26.490000000000002,26.3,26.1,25.92,25.54,N/A,N/A +2012,6,10,14,30,100990,99850,98740,83.19,0,5.05,5.5,5.63,5.72,5.79,5.84,5.89,5.93,6.01,219.23000000000002,219.48000000000002,219.59,219.68,219.76,219.83,219.89000000000001,219.95000000000002,220.07,27.57,27.25,27.080000000000002,26.88,26.69,26.5,26.310000000000002,26.12,25.740000000000002,N/A,N/A +2012,6,10,15,30,101010,99870,98760,80.4,0,6.96,7.5600000000000005,7.68,7.75,7.79,7.82,7.8500000000000005,7.86,7.890000000000001,223.97,224.27,224.4,224.53,224.66,224.79,224.92000000000002,225.04,225.3,27.830000000000002,27.52,27.36,27.16,26.98,26.79,26.6,26.42,26.05,N/A,N/A +2012,6,10,16,30,101060,99920,98810,83.68,0,6.7700000000000005,7.43,7.59,7.7,7.7700000000000005,7.83,7.87,7.91,7.97,220.06,220.37,220.49,220.61,220.70000000000002,220.79,220.88,220.95000000000002,221.1,27.79,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,6,10,17,30,101090,99950,98840,78.19,0,7.34,8.040000000000001,8.19,8.28,8.33,8.370000000000001,8.39,8.41,8.42,210.24,210.28,210.3,210.31,210.32,210.33,210.35,210.35,210.37,28.09,27.8,27.64,27.44,27.26,27.07,26.88,26.7,26.32,N/A,N/A +2012,6,10,18,30,101110,99970,98860,77.09,0,6.890000000000001,7.59,7.75,7.8500000000000005,7.92,7.97,8.01,8.040000000000001,8.08,208.8,209.02,209.12,209.20000000000002,209.25,209.3,209.35,209.38,209.44,28.12,27.830000000000002,27.66,27.46,27.28,27.09,26.900000000000002,26.71,26.330000000000002,N/A,N/A +2012,6,10,19,30,101130,99990,98880,71.45,0,7.16,7.91,8.07,8.17,8.24,8.290000000000001,8.32,8.35,8.38,198.55,198.54,198.56,198.58,198.59,198.61,198.63,198.65,198.69,28.44,28.16,28,27.8,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A +2012,6,10,20,30,101110,99960,98860,74.82000000000001,0,7.76,8.55,8.71,8.81,8.870000000000001,8.91,8.94,8.950000000000001,8.96,195.21,195.34,195.38,195.4,195.4,195.4,195.4,195.39000000000001,195.36,28.21,27.93,27.77,27.580000000000002,27.39,27.21,27.01,26.830000000000002,26.45,N/A,N/A +2012,6,10,21,30,101110,99970,98860,79.92,0,7.36,8.05,8.2,8.28,8.33,8.36,8.38,8.39,8.4,189.15,189.16,189.17000000000002,189.20000000000002,189.24,189.27,189.32,189.36,189.47,28.01,27.71,27.55,27.35,27.17,26.98,26.79,26.6,26.23,N/A,N/A +2012,6,10,22,30,101090,99940,98840,84.64,0,7.21,7.86,8,8.07,8.120000000000001,8.16,8.18,8.2,8.23,182.94,183.1,183.20000000000002,183.32,183.45000000000002,183.59,183.74,183.89000000000001,184.25,27.87,27.560000000000002,27.400000000000002,27.2,27.02,26.830000000000002,26.64,26.46,26.080000000000002,N/A,N/A +2012,6,10,23,30,101090,99950,98840,85.51,0,7.94,8.73,8.9,8.99,9.05,9.09,9.120000000000001,9.14,9.16,189.52,189.45000000000002,189.37,189.28,189.18,189.09,188.98,188.88,188.63,27.93,27.63,27.47,27.27,27.09,26.900000000000002,26.71,26.53,26.16,N/A,N/A +2012,6,11,0,30,101090,99950,98850,87.05,0,7.79,8.56,8.75,8.85,8.91,8.950000000000001,8.98,9,9.02,181.74,181.85,181.91,181.96,182,182.03,182.05,182.07,182.09,27.900000000000002,27.61,27.44,27.25,27.060000000000002,26.88,26.68,26.5,26.13,N/A,N/A +2012,6,11,1,30,101080,99940,98830,87.79,0,8.55,9.42,9.63,9.74,9.82,9.870000000000001,9.9,9.92,9.94,183.42000000000002,183.44,183.49,183.55,183.61,183.67000000000002,183.73,183.79,183.93,27.830000000000002,27.51,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.02,N/A,N/A +2012,6,11,2,30,101110,99970,98860,84.85000000000001,0,9.38,10.34,10.57,10.68,10.76,10.82,10.85,10.870000000000001,10.89,181.02,181.23,181.38,181.53,181.66,181.79,181.92000000000002,182.04,182.29,27.89,27.580000000000002,27.42,27.22,27.03,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,6,11,3,30,101130,99980,98880,84.63,0,8.83,9.73,9.96,10.1,10.200000000000001,10.27,10.33,10.38,10.44,184.17000000000002,184.39000000000001,184.46,184.49,184.51,184.52,184.5,184.49,184.43,27.78,27.46,27.29,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,6,11,4,30,101120,99980,98870,82.69,0,8.76,9.72,9.97,10.120000000000001,10.24,10.32,10.39,10.46,10.55,183.36,183.72,183.87,183.97,184.04,184.09,184.13,184.16,184.19,27.740000000000002,27.42,27.25,27.05,26.86,26.67,26.48,26.3,25.91,N/A,N/A +2012,6,11,5,30,101130,99980,98870,83.67,0,9.35,10.33,10.57,10.72,10.82,10.89,10.93,10.97,11.02,187.88,187.9,187.86,187.8,187.75,187.70000000000002,187.64000000000001,187.58,187.45000000000002,27.68,27.36,27.19,26.990000000000002,26.8,26.61,26.42,26.23,25.85,N/A,N/A +2012,6,11,6,30,101170,100030,98920,78.88,0,8.870000000000001,9.93,10.200000000000001,10.38,10.51,10.61,10.69,10.76,10.85,186.57,186.71,186.8,186.87,186.94,187,187.05,187.1,187.19,27.96,27.68,27.51,27.32,27.13,26.94,26.75,26.57,26.19,N/A,N/A +2012,6,11,7,30,101190,100040,98940,77.31,0,9.200000000000001,10.22,10.49,10.66,10.78,10.870000000000001,10.94,11,11.09,190.85,190.77,190.74,190.73,190.73,190.73,190.73,190.73,190.74,28.14,27.88,27.72,27.53,27.35,27.17,26.97,26.79,26.42,N/A,N/A +2012,6,11,8,30,101210,100060,98950,79.60000000000001,0,9.290000000000001,10.27,10.5,10.64,10.74,10.81,10.86,10.91,10.99,192.51,192.77,192.77,192.75,192.72,192.67000000000002,192.62,192.56,192.42000000000002,28.01,27.740000000000002,27.59,27.400000000000002,27.22,27.04,26.86,26.68,26.32,N/A,N/A +2012,6,11,9,30,101230,100090,98980,77.59,0,8.790000000000001,9.870000000000001,10.17,10.4,10.57,10.72,10.85,10.96,11.15,197.89000000000001,197.83,197.81,197.78,197.75,197.73000000000002,197.69,197.66,197.6,28.16,27.91,27.76,27.57,27.400000000000002,27.22,27.03,26.85,26.490000000000002,N/A,N/A +2012,6,11,10,30,101270,100120,99010,81.89,0,8.040000000000001,8.9,9.120000000000001,9.25,9.35,9.43,9.49,9.55,9.64,191.76,192.08,192.20000000000002,192.29,192.38,192.46,192.54,192.61,192.75,27.97,27.68,27.53,27.330000000000002,27.150000000000002,26.97,26.78,26.6,26.23,N/A,N/A +2012,6,11,11,30,101300,100150,99050,83.99,0,8.28,9.11,9.290000000000001,9.38,9.450000000000001,9.48,9.51,9.52,9.55,187.95000000000002,188.31,188.44,188.58,188.71,188.84,188.99,189.13,189.48,27.91,27.62,27.46,27.27,27.09,26.91,26.73,26.55,26.2,N/A,N/A +2012,6,11,12,30,101370,100230,99120,82.45,0,7.94,8.77,8.98,9.120000000000001,9.22,9.31,9.38,9.450000000000001,9.61,190.61,190.62,190.55,190.48,190.43,190.37,190.33,190.31,190.26,28.13,27.86,27.71,27.52,27.35,27.17,26.990000000000002,26.810000000000002,26.46,N/A,N/A +2012,6,11,13,30,101400,100250,99140,83.81,0,8.22,8.99,9.17,9.26,9.32,9.370000000000001,9.42,9.46,9.59,188.71,188.62,188.61,188.6,188.59,188.59,188.58,188.58,188.59,28.03,27.76,27.61,27.43,27.26,27.080000000000002,26.91,26.740000000000002,26.42,N/A,N/A +2012,6,11,14,30,101470,100330,99220,82.16,0,8.93,10.05,10.34,10.540000000000001,10.69,10.790000000000001,10.870000000000001,10.93,10.99,192.02,192.14000000000001,192.16,192.17000000000002,192.16,192.15,192.13,192.11,192.05,28.22,27.95,27.79,27.59,27.400000000000002,27.21,27.02,26.830000000000002,26.44,N/A,N/A +2012,6,11,15,30,101530,100380,99270,83.01,0,8.15,8.92,9.1,9.18,9.23,9.26,9.27,9.28,9.28,186.86,186.93,186.99,187.06,187.14000000000001,187.22,187.33,187.44,187.75,27.98,27.69,27.53,27.34,27.16,26.98,26.79,26.61,26.240000000000002,N/A,N/A +2012,6,11,16,30,101540,100400,99290,85.35000000000001,0,7.97,8.74,8.92,9.02,9.09,9.13,9.15,9.17,9.19,184.5,184.91,185.11,185.31,185.48,185.64000000000001,185.8,185.95000000000002,186.25,27.79,27.48,27.310000000000002,27.11,26.92,26.73,26.54,26.35,25.97,N/A,N/A +2012,6,11,17,30,101560,100410,99300,86.86,0,6.78,7.45,7.62,7.73,7.8100000000000005,7.87,7.92,7.96,8.02,184.70000000000002,184.52,184.45000000000002,184.41,184.38,184.36,184.35,184.35,184.36,27.77,27.45,27.28,27.080000000000002,26.89,26.7,26.51,26.32,25.94,N/A,N/A +2012,6,11,18,30,101550,100400,99290,85.11,0,7.03,7.640000000000001,7.79,7.86,7.9,7.930000000000001,7.95,7.96,7.97,182.65,182.71,182.77,182.83,182.89000000000001,182.96,183.03,183.11,183.3,27.7,27.37,27.21,27.01,26.82,26.63,26.44,26.25,25.88,N/A,N/A +2012,6,11,19,30,101560,100410,99300,84.02,0,7.38,8.05,8.21,8.290000000000001,8.35,8.39,8.41,8.44,8.47,184.55,184.53,184.54,184.56,184.56,184.57,184.58,184.59,184.61,27.76,27.44,27.27,27.07,26.88,26.69,26.5,26.310000000000002,25.94,N/A,N/A +2012,6,11,20,30,101540,100400,99280,83.41,0,6.95,7.58,7.72,7.79,7.8500000000000005,7.88,7.91,7.930000000000001,7.95,176.68,176.92000000000002,177.07,177.20000000000002,177.33,177.46,177.59,177.71,177.95000000000002,27.810000000000002,27.48,27.32,27.12,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A +2012,6,11,21,30,101520,100370,99260,80.79,0,6.74,7.38,7.5200000000000005,7.59,7.640000000000001,7.68,7.71,7.72,7.74,178.19,178.26,178.34,178.42000000000002,178.49,178.56,178.64000000000001,178.71,178.87,27.96,27.66,27.490000000000002,27.3,27.11,26.92,26.73,26.54,26.16,N/A,N/A +2012,6,11,22,30,101520,100370,99260,78.93,0,6.8500000000000005,7.51,7.66,7.74,7.8,7.84,7.86,7.890000000000001,7.92,172.88,172.94,172.99,173.03,173.07,173.12,173.16,173.19,173.27,28.04,27.75,27.59,27.400000000000002,27.21,27.03,26.830000000000002,26.650000000000002,26.27,N/A,N/A +2012,6,11,23,30,101510,100360,99250,79.51,0,7.48,8.2,8.35,8.43,8.48,8.51,8.52,8.53,8.53,169.34,169.67000000000002,169.78,169.89000000000001,169.97,170.06,170.13,170.21,170.35,27.94,27.650000000000002,27.490000000000002,27.3,27.11,26.92,26.73,26.55,26.17,N/A,N/A +2012,6,12,0,30,101480,100330,99220,83.45,0,7.57,8.28,8.44,8.52,8.58,8.61,8.63,8.65,8.66,172.68,172.84,172.91,172.98,173.03,173.09,173.14000000000001,173.18,173.28,27.69,27.38,27.21,27.01,26.830000000000002,26.64,26.45,26.26,25.88,N/A,N/A +2012,6,12,1,30,101470,100320,99210,86.9,0,7.54,8.27,8.45,8.55,8.620000000000001,8.67,8.71,8.73,8.77,175.01,174.91,174.9,174.88,174.87,174.86,174.85,174.85,174.83,27.490000000000002,27.16,26.98,26.78,26.6,26.400000000000002,26.21,26.02,25.64,N/A,N/A +2012,6,12,2,30,101490,100350,99230,87.02,0,7.3500000000000005,8.03,8.18,8.26,8.32,8.36,8.38,8.4,8.43,171.95000000000002,172.06,172.1,172.14000000000001,172.18,172.21,172.24,172.27,172.34,27.490000000000002,27.16,26.990000000000002,26.79,26.6,26.41,26.22,26.03,25.650000000000002,N/A,N/A +2012,6,12,3,30,101510,100360,99250,86.05,0,7.53,8.23,8.38,8.46,8.51,8.55,8.57,8.58,8.58,173.31,173.3,173.33,173.36,173.41,173.45000000000002,173.5,173.55,173.66,27.57,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.29,26.11,25.73,N/A,N/A +2012,6,12,4,30,101500,100350,99240,85.05,0,7.43,8.14,8.31,8.4,8.47,8.51,8.540000000000001,8.56,8.59,179.87,179.8,179.79,179.79,179.78,179.78,179.77,179.77,179.77,27.61,27.28,27.11,26.91,26.72,26.53,26.34,26.150000000000002,25.77,N/A,N/A +2012,6,12,5,30,101520,100370,99260,83.58,0,6.82,7.48,7.63,7.72,7.78,7.82,7.86,7.890000000000001,7.930000000000001,178.56,178.46,178.43,178.4,178.37,178.35,178.32,178.3,178.25,27.64,27.32,27.150000000000002,26.95,26.76,26.57,26.38,26.2,25.810000000000002,N/A,N/A +2012,6,12,6,30,101530,100380,99270,79.89,0,6.95,7.61,7.75,7.83,7.88,7.92,7.94,7.96,7.98,181.66,181.72,181.76,181.8,181.84,181.88,181.93,181.97,182.07,27.78,27.48,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A +2012,6,12,7,30,101550,100400,99290,76.69,0,6.83,7.5,7.640000000000001,7.72,7.78,7.82,7.8500000000000005,7.88,7.92,185.99,186.02,185.99,185.96,185.93,185.89000000000001,185.85,185.81,185.73,27.94,27.650000000000002,27.490000000000002,27.29,27.11,26.92,26.73,26.55,26.17,N/A,N/A +2012,6,12,8,30,101590,100440,99320,75.07000000000001,0,5.55,6.07,6.19,6.2700000000000005,6.33,6.38,6.43,6.47,6.58,185.06,185.41,185.58,185.77,185.95000000000002,186.13,186.32,186.52,186.93,28.02,27.75,27.59,27.41,27.23,27.05,26.86,26.69,26.330000000000002,N/A,N/A +2012,6,12,9,30,101620,100470,99360,75.63,0,5.95,6.51,6.63,6.7,6.74,6.78,6.8,6.8100000000000005,6.83,180.19,180.41,180.47,180.52,180.58,180.63,180.68,180.72,180.81,28.060000000000002,27.79,27.63,27.44,27.26,27.07,26.89,26.7,26.330000000000002,N/A,N/A +2012,6,12,10,30,101650,100500,99390,77.86,0,5.7700000000000005,6.29,6.390000000000001,6.45,6.49,6.5200000000000005,6.53,6.55,6.5600000000000005,184.47,184.3,184.28,184.25,184.22,184.19,184.16,184.13,184.07,27.93,27.63,27.47,27.28,27.09,26.91,26.71,26.53,26.16,N/A,N/A +2012,6,12,11,30,101690,100540,99420,84.06,0,5.97,6.44,6.5200000000000005,6.5600000000000005,6.57,6.58,6.57,6.5600000000000005,6.5200000000000005,179.24,179.36,179.42000000000002,179.5,179.58,179.65,179.74,179.81,179.98,27.52,27.19,27.02,26.82,26.63,26.44,26.240000000000002,26.060000000000002,25.68,N/A,N/A +2012,6,12,12,30,101720,100560,99450,84.44,0,5.26,5.71,5.8100000000000005,5.88,5.94,5.98,6.0200000000000005,6.05,6.1000000000000005,173.99,174.24,174.47,174.68,174.88,175.06,175.24,175.41,175.76,27.39,27.07,26.900000000000002,26.71,26.52,26.330000000000002,26.13,25.95,25.57,N/A,N/A +2012,6,12,13,30,101740,100590,99470,82.98,0,4.95,5.3500000000000005,5.44,5.49,5.5200000000000005,5.55,5.5600000000000005,5.58,5.59,173.13,173.53,173.8,174.04,174.25,174.44,174.63,174.79,175.12,27.45,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.6,N/A,N/A +2012,6,12,14,30,101770,100620,99500,84.39,0,4.94,5.28,5.34,5.37,5.38,5.39,5.39,5.38,5.36,185.93,185.67000000000002,185.44,185.15,184.88,184.61,184.33,184.05,183.5,27.53,27.21,27.03,26.84,26.650000000000002,26.46,26.27,26.080000000000002,25.7,N/A,N/A +2012,6,12,15,30,101790,100630,99520,83.41,0,4.5,4.79,4.8500000000000005,4.88,4.89,4.89,4.89,4.89,4.87,167.87,168.08,168.28,168.48,168.66,168.84,169.02,169.19,169.56,27.5,27.17,27,26.8,26.61,26.42,26.22,26.04,25.66,N/A,N/A +2012,6,12,16,30,101770,100620,99500,81.37,0,4.48,4.78,4.84,4.87,4.9,4.91,4.93,4.94,4.95,168.21,168.67000000000002,168.94,169.18,169.39000000000001,169.61,169.81,170,170.4,27.560000000000002,27.22,27.05,26.85,26.67,26.48,26.28,26.1,25.72,N/A,N/A +2012,6,12,17,30,101760,100610,99490,80.68,0,4.01,4.24,4.28,4.29,4.3,4.3,4.3,4.29,4.28,165.37,165.56,165.73,165.89000000000001,166.03,166.16,166.28,166.4,166.64000000000001,27.57,27.22,27.04,26.85,26.66,26.46,26.27,26.09,25.7,N/A,N/A +2012,6,12,18,30,101730,100580,99460,80.87,0,4.36,4.62,4.68,4.7,4.72,4.74,4.75,4.76,4.79,162.98,163.33,163.45000000000002,163.57,163.70000000000002,163.83,163.96,164.1,164.38,27.560000000000002,27.21,27.04,26.85,26.66,26.47,26.28,26.09,25.72,N/A,N/A +2012,6,12,19,30,101730,100570,99460,81.65,0,5.04,5.37,5.44,5.45,5.47,5.47,5.46,5.45,5.43,159.09,159.52,159.75,159.97,160.15,160.33,160.52,160.69,161.04,27.6,27.25,27.07,26.88,26.69,26.5,26.3,26.12,25.740000000000002,N/A,N/A +2012,6,12,20,30,101690,100540,99420,79.73,0,4.86,5.15,5.21,5.23,5.24,5.24,5.23,5.22,5.2,169.68,169.74,169.72,169.68,169.65,169.61,169.57,169.54,169.47,27.580000000000002,27.240000000000002,27.07,26.86,26.68,26.490000000000002,26.29,26.11,25.73,N/A,N/A +2012,6,12,21,30,101640,100490,99370,80.13,0,5.03,5.38,5.45,5.48,5.5,5.51,5.51,5.51,5.51,165.71,165.81,165.85,165.89000000000001,165.93,165.96,166,166.03,166.12,27.560000000000002,27.22,27.04,26.85,26.66,26.46,26.27,26.080000000000002,25.7,N/A,N/A +2012,6,12,22,30,101610,100460,99350,81.17,0,5.91,6.3500000000000005,6.44,6.48,6.51,6.5200000000000005,6.54,6.54,6.55,156.8,156.77,156.83,156.88,156.94,157,157.07,157.13,157.27,27.41,27.07,26.900000000000002,26.7,26.51,26.32,26.13,25.95,25.57,N/A,N/A +2012,6,12,23,30,101590,100440,99320,79.21000000000001,0,5.89,6.38,6.49,6.55,6.6000000000000005,6.640000000000001,6.68,6.71,6.7700000000000005,161.37,161.52,161.55,161.57,161.6,161.62,161.65,161.67000000000002,161.72,27.47,27.150000000000002,26.98,26.79,26.6,26.41,26.22,26.04,25.67,N/A,N/A +2012,6,13,0,30,101610,100460,99340,79.27,0,6.22,6.73,6.84,6.9,6.95,6.97,6.99,7.01,7.03,166.69,166.74,166.76,166.8,166.84,166.89000000000001,166.94,166.99,167.11,27.43,27.1,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A +2012,6,13,1,30,101560,100410,99300,78.15,0,6.2,6.69,6.79,6.84,6.87,6.890000000000001,6.9,6.9,6.9,170.01,170.06,170.12,170.18,170.24,170.3,170.36,170.41,170.55,27.37,27.05,26.88,26.68,26.490000000000002,26.3,26.11,25.93,25.55,N/A,N/A +2012,6,13,2,30,101600,100440,99330,77.84,0,5.84,6.3100000000000005,6.41,6.47,6.5,6.53,6.54,6.55,6.5600000000000005,171.74,171.83,171.81,171.8,171.79,171.78,171.77,171.76,171.74,27.36,27.03,26.86,26.67,26.48,26.29,26.09,25.91,25.53,N/A,N/A +2012,6,13,3,30,101590,100440,99320,80.13,0,6.2700000000000005,6.76,6.86,6.91,6.94,6.96,6.97,6.97,6.97,178.8,178.92000000000002,178.96,178.99,179.02,179.04,179.07,179.09,179.13,27.19,26.85,26.67,26.48,26.29,26.1,25.900000000000002,25.72,25.34,N/A,N/A +2012,6,13,4,30,101530,100380,99270,78.8,0,7.16,7.75,7.890000000000001,7.95,7.99,8.02,8.03,8.040000000000001,8.03,171.74,171.68,171.64000000000001,171.59,171.54,171.49,171.42000000000002,171.36,171.23,27.18,26.84,26.66,26.46,26.27,26.09,25.89,25.71,25.330000000000002,N/A,N/A +2012,6,13,5,30,101510,100350,99240,80.63,0,6.79,7.34,7.47,7.53,7.57,7.6000000000000005,7.61,7.62,7.62,178,178.09,178.12,178.14000000000001,178.15,178.16,178.17000000000002,178.18,178.19,27.060000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A +2012,6,13,6,30,101520,100360,99250,81.48,0,6.8,7.3500000000000005,7.46,7.5200000000000005,7.5600000000000005,7.58,7.59,7.59,7.59,173.12,173.35,173.46,173.56,173.65,173.74,173.83,173.9,174.07,27.02,26.650000000000002,26.48,26.27,26.080000000000002,25.89,25.69,25.5,25.12,N/A,N/A +2012,6,13,7,30,101550,100390,99280,82.95,0,6.5600000000000005,7.01,7.1000000000000005,7.140000000000001,7.16,7.17,7.17,7.16,7.15,175.08,175.35,175.55,175.75,175.94,176.12,176.3,176.47,176.82,27.03,26.67,26.490000000000002,26.29,26.1,25.91,25.72,25.54,25.16,N/A,N/A +2012,6,13,8,30,101540,100380,99270,83.01,0,6.37,6.88,6.99,7.04,7.07,7.1000000000000005,7.1000000000000005,7.11,7.1000000000000005,184.92000000000002,184.89000000000001,184.89000000000001,184.89000000000001,184.89000000000001,184.91,184.91,184.92000000000002,184.94,27,26.63,26.45,26.25,26.05,25.86,25.66,25.48,25.09,N/A,N/A +2012,6,13,9,30,101580,100430,99310,82.62,0,4.44,4.78,4.86,4.91,4.95,4.98,5.01,5.03,5.0600000000000005,197.86,197.78,197.76,197.74,197.74,197.73000000000002,197.73000000000002,197.73000000000002,197.73000000000002,27.03,26.67,26.490000000000002,26.29,26.1,25.91,25.71,25.52,25.14,N/A,N/A +2012,6,13,10,30,101580,100430,99310,83.31,0,3.73,3.94,3.98,4,4.01,4.0200000000000005,4.03,4.04,4.07,187.78,188.38,188.64000000000001,188.87,189.1,189.32,189.54,189.75,190.20000000000002,26.92,26.560000000000002,26.39,26.18,25.990000000000002,25.8,25.6,25.41,25.02,N/A,N/A +2012,6,13,11,30,101580,100430,99310,80.33,0,3.62,3.83,3.88,3.91,3.93,3.95,3.97,3.99,4.03,191.62,192.43,192.85,193.23000000000002,193.55,193.85,194.14000000000001,194.41,194.94,27.02,26.68,26.51,26.310000000000002,26.12,25.94,25.75,25.560000000000002,25.19,N/A,N/A +2012,6,13,12,30,101580,100430,99310,81.55,0,2.81,2.99,3.04,3.08,3.11,3.15,3.18,3.2,3.2600000000000002,195.82,196.41,196.8,197.11,197.37,197.6,197.79,197.96,198.19,26.98,26.64,26.46,26.26,26.080000000000002,25.89,25.69,25.51,25.13,N/A,N/A +2012,6,13,13,30,101600,100440,99330,81.81,0,2.95,3.13,3.18,3.21,3.24,3.2600000000000002,3.29,3.31,3.35,189.63,188.87,188.44,187.99,187.58,187.18,186.76,186.34,185.48,27,26.66,26.48,26.29,26.1,25.91,25.72,25.53,25.16,N/A,N/A +2012,6,13,14,30,101630,100470,99360,81.21000000000001,0,2.0100000000000002,2.13,2.16,2.18,2.19,2.2,2.22,2.23,2.25,182.25,181.46,181.26,181.12,180.99,180.9,180.82,180.75,180.65,27.11,26.77,26.59,26.39,26.2,26.01,25.810000000000002,25.63,25.240000000000002,N/A,N/A +2012,6,13,15,30,101660,100500,99390,80.33,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.0500000000000003,3.04,3.02,3,2.96,158.56,158.78,158.95000000000002,159.1,159.25,159.39000000000001,159.54,159.69,160.02,27.23,26.89,26.71,26.51,26.32,26.13,25.93,25.740000000000002,25.36,N/A,N/A +2012,6,13,16,30,101590,100440,99320,80.65,0,2.74,2.87,2.9,2.91,2.92,2.92,2.92,2.93,2.93,163.38,163.62,163.83,164.04,164.23,164.43,164.63,164.82,165.26,27.22,26.86,26.69,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A +2012,6,13,17,30,101550,100400,99290,80.19,0,4.22,4.46,4.49,4.5,4.5,4.5,4.5,4.49,4.47,151.07,151.15,151.23,151.29,151.34,151.39000000000001,151.43,151.48,151.58,27.330000000000002,26.96,26.78,26.580000000000002,26.39,26.2,26,25.810000000000002,25.43,N/A,N/A +2012,6,13,18,30,101540,100390,99270,82.02,0,4.53,4.79,4.84,4.8500000000000005,4.86,4.86,4.86,4.86,4.84,144.33,144.87,145.17000000000002,145.46,145.72,145.96,146.21,146.44,146.9,27.37,26.990000000000002,26.810000000000002,26.61,26.42,26.22,26.02,25.84,25.45,N/A,N/A +2012,6,13,19,30,101540,100390,99270,81.62,0,5.65,6.0200000000000005,6.09,6.11,6.13,6.13,6.13,6.12,6.09,167.57,167.67000000000002,167.72,167.78,167.84,167.91,167.98,168.05,168.22,27.37,27,26.82,26.62,26.42,26.23,26.04,25.85,25.47,N/A,N/A +2012,6,13,20,30,101460,100310,99200,77.99,0,5.62,6,6.05,6.07,6.08,6.08,6.07,6.0600000000000005,6.03,175.12,175.04,175,174.96,174.92000000000002,174.89000000000001,174.84,174.8,174.72,27.51,27.16,26.98,26.78,26.59,26.400000000000002,26.2,26.02,25.63,N/A,N/A +2012,6,13,21,30,101450,100300,99180,79.03,0,6.3,6.76,6.86,6.9,6.93,6.94,6.94,6.94,6.92,177.53,177.59,177.64000000000001,177.69,177.72,177.75,177.78,177.81,177.86,27.46,27.11,26.94,26.740000000000002,26.55,26.35,26.16,25.97,25.59,N/A,N/A +2012,6,13,22,30,101390,100240,99130,81.17,0,6.76,7.29,7.4,7.45,7.48,7.5,7.5,7.51,7.5,187.51,187.42000000000002,187.47,187.5,187.54,187.58,187.62,187.66,187.75,27.36,27.01,26.830000000000002,26.63,26.44,26.25,26.05,25.87,25.48,N/A,N/A +2012,6,13,23,30,101400,100250,99140,81.64,0,6.43,6.95,7.0600000000000005,7.12,7.17,7.19,7.21,7.22,7.24,182.38,182.41,182.41,182.41,182.41,182.42000000000002,182.43,182.43,182.46,27.39,27.05,26.88,26.67,26.48,26.29,26.1,25.91,25.53,N/A,N/A +2012,6,14,0,30,101400,100260,99140,79.89,0,6.36,6.83,6.93,6.97,7,7.01,7.01,7,6.98,179.06,179.6,179.83,180.02,180.20000000000002,180.35,180.51,180.64000000000001,180.92000000000002,27.46,27.12,26.95,26.740000000000002,26.55,26.36,26.16,25.98,25.59,N/A,N/A +2012,6,14,1,30,101350,100200,99090,84.77,0,6.32,6.8100000000000005,6.92,6.97,7,7.0200000000000005,7.03,7.04,7.04,188.21,188.20000000000002,188.16,188.11,188.08,188.05,188.01,187.99,187.94,27.27,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A +2012,6,14,2,30,101330,100180,99070,85.55,0,8.6,9.36,9.52,9.6,9.66,9.68,9.700000000000001,9.71,9.71,195.24,195.3,195.33,195.36,195.4,195.44,195.49,195.53,195.62,27.3,26.94,26.77,26.560000000000002,26.37,26.18,25.98,25.8,25.42,N/A,N/A +2012,6,14,3,30,101370,100220,99110,84.92,0,6.47,7.0200000000000005,7.16,7.23,7.29,7.32,7.3500000000000005,7.36,7.38,180.21,180.37,180.49,180.59,180.67000000000002,180.74,180.81,180.86,180.97,27.36,27.02,26.85,26.64,26.45,26.26,26.060000000000002,25.88,25.5,N/A,N/A +2012,6,14,4,30,101380,100230,99120,82.53,0,6.4,6.93,7.0600000000000005,7.13,7.17,7.2,7.22,7.24,7.25,180.14000000000001,180.19,180.21,180.24,180.27,180.3,180.32,180.36,180.42000000000002,27.44,27.1,26.93,26.72,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,6,14,5,30,101370,100220,99110,84.28,0,7.11,7.7,7.83,7.890000000000001,7.930000000000001,7.95,7.97,7.97,7.97,185.77,185.87,185.9,185.91,185.92000000000002,185.92000000000002,185.92000000000002,185.92000000000002,185.91,27.330000000000002,26.98,26.810000000000002,26.6,26.41,26.22,26.02,25.84,25.46,N/A,N/A +2012,6,14,6,30,101400,100250,99140,82.19,0,6.3100000000000005,6.82,6.95,7.01,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.17,186.88,186.91,186.93,186.95000000000002,186.98,187,187.02,187.04,187.08,27.400000000000002,27.04,26.86,26.66,26.47,26.28,26.080000000000002,25.900000000000002,25.51,N/A,N/A +2012,6,14,7,30,101410,100260,99150,80.11,0,6.63,7.140000000000001,7.26,7.32,7.36,7.390000000000001,7.4,7.42,7.44,187.48,187.41,187.31,187.20000000000002,187.09,186.97,186.84,186.71,186.41,27.46,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A +2012,6,14,8,30,101400,100250,99140,80.98,0,6.11,6.63,6.75,6.83,6.88,6.92,6.95,6.97,7.0200000000000005,195.44,195.07,194.97,194.88,194.81,194.74,194.69,194.65,194.57,27.44,27.080000000000002,26.91,26.7,26.51,26.32,26.13,25.94,25.560000000000002,N/A,N/A +2012,6,14,9,30,101390,100240,99130,77.16,0,6.76,7.32,7.43,7.49,7.5200000000000005,7.54,7.55,7.55,7.54,192.09,192.08,192.07,192.05,192.02,192,191.98000000000002,191.95000000000002,191.9,27.6,27.25,27.080000000000002,26.88,26.69,26.490000000000002,26.3,26.11,25.73,N/A,N/A +2012,6,14,10,30,101400,100250,99140,74.5,0,7.43,8.07,8.2,8.26,8.290000000000001,8.31,8.32,8.32,8.290000000000001,192.27,192.28,192.32,192.36,192.39000000000001,192.42000000000002,192.45000000000002,192.48000000000002,192.52,27.84,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A +2012,6,14,11,30,101410,100260,99140,69.82000000000001,0,6.1000000000000005,6.59,6.71,6.78,6.84,6.88,6.92,6.94,6.99,187.69,188.15,188.39000000000001,188.62,188.81,188.99,189.17000000000002,189.33,189.63,27.94,27.63,27.46,27.27,27.09,26.900000000000002,26.71,26.52,26.150000000000002,N/A,N/A +2012,6,14,12,30,101400,100260,99140,73.06,0,6.53,7.03,7.140000000000001,7.19,7.22,7.24,7.25,7.25,7.25,193.88,193.91,193.98000000000002,194.06,194.13,194.22,194.3,194.38,194.55,27.82,27.5,27.34,27.14,26.96,26.77,26.580000000000002,26.39,26.02,N/A,N/A +2012,6,14,13,30,101450,100300,99190,67.98,0,4.67,5.01,5.08,5.11,5.14,5.16,5.18,5.2,5.22,194.43,194.79,194.95000000000002,195.08,195.20000000000002,195.32,195.41,195.5,195.68,27.97,27.66,27.5,27.3,27.11,26.92,26.73,26.55,26.17,N/A,N/A +2012,6,14,14,30,101490,100340,99220,67.75,0,5.15,5.55,5.65,5.7,5.75,5.78,5.8100000000000005,5.84,5.89,183.76,184.23,184.39000000000001,184.55,184.68,184.81,184.93,185.04,185.24,28.03,27.72,27.55,27.36,27.17,26.98,26.78,26.6,26.22,N/A,N/A +2012,6,14,15,30,101510,100360,99240,67.89,0,4.84,5.18,5.24,5.2700000000000005,5.29,5.29,5.29,5.3,5.29,179.75,179.82,179.91,180,180.09,180.18,180.29,180.38,180.6,28.02,27.71,27.54,27.34,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A +2012,6,14,16,30,101540,100390,99270,67.09,0,5.1000000000000005,5.44,5.51,5.54,5.5600000000000005,5.57,5.58,5.59,5.6000000000000005,184.43,184.27,184.16,184.05,183.97,183.89000000000001,183.82,183.77,183.68,28.04,27.72,27.560000000000002,27.36,27.17,26.98,26.79,26.6,26.22,N/A,N/A +2012,6,14,17,30,101520,100370,99250,71.03,0,5.2700000000000005,5.66,5.73,5.7700000000000005,5.79,5.8,5.8,5.8100000000000005,5.8,167.96,168.19,168.3,168.41,168.52,168.62,168.72,168.82,169.01,27.96,27.62,27.45,27.25,27.05,26.86,26.67,26.48,26.09,N/A,N/A +2012,6,14,18,30,101520,100370,99250,68.82000000000001,0,4.78,5.13,5.22,5.2700000000000005,5.3100000000000005,5.34,5.37,5.4,5.44,173.21,173.28,173.31,173.33,173.35,173.38,173.4,173.42000000000002,173.46,28.04,27.71,27.54,27.34,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A +2012,6,14,19,30,101520,100370,99260,73.3,0,5.73,6.15,6.24,6.28,6.32,6.34,6.3500000000000005,6.36,6.37,171.46,171.85,172.05,172.22,172.36,172.47,172.58,172.67000000000002,172.84,27.92,27.580000000000002,27.41,27.21,27.02,26.830000000000002,26.63,26.44,26.060000000000002,N/A,N/A +2012,6,14,20,30,101470,100320,99210,70.68,0,5.26,5.7,5.8,5.87,5.92,5.96,5.99,6.0200000000000005,6.0600000000000005,171.78,172.41,172.67000000000002,172.88,173.05,173.20000000000002,173.34,173.46,173.69,27.98,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.7,26.51,26.13,N/A,N/A +2012,6,14,21,30,101440,100300,99180,71.67,0,5.9,6.34,6.44,6.48,6.51,6.53,6.54,6.55,6.5600000000000005,169.17000000000002,169.07,169.01,168.95000000000002,168.89000000000001,168.84,168.79,168.74,168.65,27.93,27.61,27.44,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A +2012,6,14,22,30,101430,100280,99170,70.64,0,6.42,6.93,7.04,7.09,7.13,7.15,7.16,7.17,7.17,166.66,166.63,166.65,166.65,166.65,166.65,166.65,166.65,166.65,27.96,27.64,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,6,14,23,30,101390,100240,99130,74.14,0,6.8500000000000005,7.42,7.54,7.61,7.65,7.68,7.7,7.72,7.74,175.12,175.11,175.08,175.01,174.95000000000002,174.87,174.8,174.72,174.56,27.8,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,6,15,0,30,101350,100200,99090,71.89,0,6.78,7.37,7.51,7.59,7.65,7.7,7.74,7.7700000000000005,7.82,176.47,176.57,176.61,176.62,176.63,176.64000000000001,176.64000000000001,176.64000000000001,176.64000000000001,27.85,27.52,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A +2012,6,15,1,30,101360,100210,99100,73.72,0,6.66,7.22,7.34,7.4,7.44,7.47,7.48,7.49,7.49,169.59,169.69,169.82,169.95000000000002,170.06,170.17000000000002,170.28,170.38,170.6,27.79,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,6,15,2,30,101350,100200,99090,69.95,0,6.98,7.57,7.69,7.75,7.79,7.82,7.83,7.84,7.8500000000000005,175.13,174.84,174.65,174.45000000000002,174.26,174.08,173.88,173.69,173.3,27.91,27.580000000000002,27.42,27.21,27.03,26.830000000000002,26.64,26.45,26.07,N/A,N/A +2012,6,15,3,30,101410,100260,99150,73.69,0,7.21,7.84,7.98,8.06,8.1,8.13,8.15,8.15,8.15,170.1,170.18,170.17000000000002,170.14000000000001,170.1,170.04,169.98,169.92000000000002,169.78,27.82,27.490000000000002,27.32,27.12,26.92,26.73,26.54,26.35,25.97,N/A,N/A +2012,6,15,4,30,101360,100220,99100,68.32000000000001,0,6.38,6.9,7.0200000000000005,7.09,7.140000000000001,7.17,7.21,7.24,7.29,169.4,169.95000000000002,170.21,170.47,170.71,170.93,171.15,171.35,171.77,27.990000000000002,27.68,27.52,27.330000000000002,27.150000000000002,26.96,26.77,26.59,26.22,N/A,N/A +2012,6,15,5,30,101390,100240,99130,77.42,0,6.48,6.97,7.0600000000000005,7.09,7.1000000000000005,7.11,7.1000000000000005,7.09,7.0600000000000005,164.84,164.5,164.41,164.33,164.27,164.22,164.17000000000002,164.13,164.05,27.52,27.17,27,26.8,26.61,26.42,26.22,26.04,25.66,N/A,N/A +2012,6,15,6,30,101390,100240,99130,71.4,0,5.72,6.24,6.37,6.45,6.5200000000000005,6.57,6.61,6.65,6.71,169.67000000000002,169.53,169.5,169.44,169.39000000000001,169.33,169.27,169.21,169.08,27.830000000000002,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.39,26,N/A,N/A +2012,6,15,7,30,101380,100230,99120,76.47,0,7.62,8.290000000000001,8.43,8.51,8.55,8.58,8.6,8.61,8.620000000000001,166.15,166.38,166.48,166.58,166.67000000000002,166.75,166.83,166.9,167.04,27.580000000000002,27.25,27.080000000000002,26.88,26.69,26.5,26.3,26.12,25.73,N/A,N/A +2012,6,15,8,30,101400,100250,99140,75.68,0,6.66,7.29,7.45,7.54,7.61,7.67,7.71,7.74,7.79,168.6,168.42000000000002,168.34,168.28,168.23,168.18,168.14000000000001,168.1,168.03,27.67,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.82,N/A,N/A +2012,6,15,9,30,101460,100310,99200,76.3,0,5.94,6.42,6.54,6.61,6.67,6.7,6.73,6.76,6.8,170.68,170.64000000000001,170.6,170.54,170.48,170.42000000000002,170.35,170.29,170.14000000000001,27.6,27.28,27.1,26.91,26.72,26.52,26.330000000000002,26.14,25.76,N/A,N/A +2012,6,15,10,30,101450,100300,99190,77.93,0,5.71,6.18,6.28,6.34,6.38,6.41,6.43,6.44,6.46,159.93,159.97,160.05,160.13,160.19,160.26,160.33,160.4,160.54,27.59,27.27,27.1,26.900000000000002,26.71,26.52,26.32,26.13,25.75,N/A,N/A +2012,6,15,11,30,101490,100340,99220,79.46000000000001,0,5.57,6,6.09,6.140000000000001,6.17,6.19,6.2,6.2,6.2,161.28,161.5,161.64000000000001,161.77,161.87,161.97,162.06,162.14000000000001,162.3,27.47,27.14,26.96,26.77,26.57,26.38,26.19,26,25.62,N/A,N/A +2012,6,15,12,30,101520,100370,99250,81.13,0,5.0200000000000005,5.42,5.5200000000000005,5.58,5.63,5.67,5.7,5.73,5.78,176.47,176.09,175.91,175.73,175.57,175.42000000000002,175.27,175.12,174.85,27.32,26.98,26.810000000000002,26.6,26.41,26.22,26.02,25.84,25.45,N/A,N/A +2012,6,15,13,30,101560,100410,99300,81.07000000000001,0,4.23,4.46,4.5,4.51,4.5200000000000005,4.5200000000000005,4.51,4.51,4.5,167.17000000000002,166.77,166.55,166.33,166.15,165.98,165.81,165.64000000000001,165.33,27.44,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A +2012,6,15,14,30,101590,100440,99330,81.49,0,3.88,4.11,4.15,4.17,4.18,4.18,4.18,4.17,4.15,166.31,165.31,164.77,164.25,163.79,163.34,162.9,162.51,161.69,27.5,27.16,26.990000000000002,26.79,26.6,26.41,26.21,26.03,25.650000000000002,N/A,N/A +2012,6,15,15,30,101590,100440,99320,82.72,0,3.75,3.95,3.99,4,4,4,4,4,3.99,159.23,159.41,159.61,159.79,159.95000000000002,160.11,160.27,160.42000000000002,160.76,27.48,27.14,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A +2012,6,15,16,30,101600,100450,99340,83.26,0,3.44,3.66,3.71,3.74,3.77,3.79,3.81,3.83,3.86,148.13,148.64000000000001,149.11,149.58,150.01,150.44,150.86,151.27,152.15,27.57,27.22,27.05,26.85,26.66,26.47,26.27,26.09,25.71,N/A,N/A +2012,6,15,17,30,101590,100440,99320,86.33,2.2,5.12,5.58,5.75,5.87,5.96,6.04,6.12,6.19,6.33,182.79,185.61,186.95000000000002,188.33,189.59,190.85,192.16,193.43,195.92000000000002,27.310000000000002,26.97,26.810000000000002,26.62,26.45,26.27,26.09,25.92,25.57,N/A,N/A +2012,6,15,18,30,101580,100430,99310,81.09,0,5.25,5.62,5.69,5.72,5.73,5.74,5.74,5.73,5.72,185.47,185.31,185.24,185.15,185.08,185,184.93,184.86,184.71,27.72,27.38,27.21,27.01,26.82,26.63,26.44,26.25,25.87,N/A,N/A +2012,6,15,19,30,101560,100420,99300,80.17,0,4.8500000000000005,5.18,5.24,5.2700000000000005,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3100000000000005,182.55,182.51,182.44,182.38,182.32,182.26,182.20000000000002,182.14000000000001,182.03,27.76,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.91,N/A,N/A +2012,6,15,20,30,101530,100380,99270,77.86,0,5.55,5.97,6.07,6.13,6.16,6.19,6.21,6.23,6.26,169,168.99,168.94,168.89000000000001,168.84,168.8,168.75,168.70000000000002,168.62,27.87,27.53,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.02,N/A,N/A +2012,6,15,21,30,101540,100390,99280,76.81,0,6.140000000000001,6.61,6.71,6.75,6.78,6.79,6.8,6.8,6.79,157.49,157.5,157.58,157.63,157.67000000000002,157.70000000000002,157.72,157.75,157.79,27.830000000000002,27.5,27.330000000000002,27.13,26.94,26.75,26.55,26.37,25.98,N/A,N/A +2012,6,15,22,30,101500,100350,99240,76.57000000000001,0,5.84,6.28,6.36,6.390000000000001,6.41,6.41,6.41,6.4,6.37,159.36,159.31,159.32,159.32,159.31,159.3,159.28,159.26,159.21,27.78,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,6,15,23,30,101440,100290,99180,77.96000000000001,0,6.13,6.640000000000001,6.74,6.79,6.8100000000000005,6.83,6.83,6.83,6.8100000000000005,170.11,170.02,169.95000000000002,169.89000000000001,169.84,169.79,169.75,169.71,169.63,27.650000000000002,27.32,27.150000000000002,26.95,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A +2012,6,16,0,30,101470,100320,99210,74.19,0,4.86,5.26,5.36,5.41,5.45,5.48,5.51,5.53,5.5600000000000005,170.67000000000002,170.5,170.46,170.4,170.35,170.31,170.25,170.19,170.06,27.740000000000002,27.43,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.3,25.92,N/A,N/A +2012,6,16,1,30,101510,100360,99250,71.79,0,5.48,5.95,6.0600000000000005,6.12,6.17,6.2,6.23,6.26,6.3,146.6,146.9,147.06,147.19,147.29,147.38,147.46,147.53,147.64000000000001,27.8,27.490000000000002,27.32,27.13,26.94,26.75,26.560000000000002,26.38,26,N/A,N/A +2012,6,16,2,30,101490,100340,99230,74.43,0,6.98,7.65,7.8100000000000005,7.9,7.97,8.02,8.06,8.09,8.13,146.67000000000002,146.54,146.44,146.34,146.24,146.14000000000001,146.05,145.96,145.77,27.71,27.38,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A +2012,6,16,3,30,101500,100350,99230,67.86,0,6.62,7.28,7.44,7.53,7.6000000000000005,7.66,7.7,7.74,7.8100000000000005,142.04,142.24,142.32,142.38,142.44,142.49,142.55,142.6,142.70000000000002,27.990000000000002,27.69,27.52,27.32,27.14,26.95,26.75,26.57,26.19,N/A,N/A +2012,6,16,4,30,101460,100300,99190,66.33,0,7.42,8.14,8.290000000000001,8.38,8.44,8.49,8.52,8.55,8.6,151.95000000000002,151.75,151.67000000000002,151.59,151.53,151.46,151.39000000000001,151.33,151.20000000000002,27.990000000000002,27.68,27.51,27.32,27.13,26.95,26.75,26.57,26.19,N/A,N/A +2012,6,16,5,30,101510,100360,99250,68.83,0,7.71,8.42,8.57,8.65,8.69,8.72,8.73,8.74,8.73,146.29,146.39000000000001,146.52,146.64000000000001,146.75,146.86,146.96,147.06,147.24,27.87,27.57,27.41,27.21,27.03,26.84,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,6,16,6,30,101510,100360,99250,71.67,0,6.86,7.5200000000000005,7.66,7.74,7.79,7.82,7.84,7.86,7.87,153.12,153.01,153.01,153.01,153.01,153.02,153.04,153.06,153.09,27.78,27.46,27.28,27.080000000000002,26.89,26.7,26.5,26.32,25.93,N/A,N/A +2012,6,16,7,30,101530,100380,99270,60.97,0,6.8,7.42,7.57,7.65,7.72,7.78,7.82,7.86,7.930000000000001,149.11,149.54,149.70000000000002,149.84,149.96,150.07,150.18,150.27,150.44,28.2,27.93,27.77,27.580000000000002,27.39,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,6,16,8,30,101570,100420,99300,63.93,0,6.05,6.6000000000000005,6.71,6.7700000000000005,6.8100000000000005,6.84,6.86,6.87,6.88,145.8,146.06,146.12,146.18,146.23,146.27,146.31,146.35,146.44,28.17,27.88,27.72,27.53,27.34,27.150000000000002,26.96,26.78,26.39,N/A,N/A +2012,6,16,9,30,101590,100440,99320,60.83,0,5,5.39,5.48,5.5200000000000005,5.55,5.58,5.6000000000000005,5.61,5.64,149.97,150.11,150.17000000000002,150.20000000000002,150.23,150.25,150.26,150.27,150.28,28.26,27.990000000000002,27.830000000000002,27.63,27.45,27.26,27.07,26.89,26.51,N/A,N/A +2012,6,16,10,30,101610,100460,99340,67.18,0,5.08,5.5200000000000005,5.6000000000000005,5.63,5.66,5.66,5.67,5.66,5.65,153.45000000000002,153.31,153.31,153.3,153.27,153.25,153.21,153.18,153.09,27.98,27.68,27.52,27.32,27.13,26.94,26.75,26.560000000000002,26.18,N/A,N/A +2012,6,16,11,30,101620,100470,99350,65.19,0,4.17,4.5200000000000005,4.6000000000000005,4.65,4.7,4.74,4.7700000000000005,4.8,4.86,144.88,145.05,145.13,145.22,145.29,145.36,145.42000000000002,145.49,145.61,27.94,27.64,27.47,27.28,27.09,26.900000000000002,26.7,26.52,26.13,N/A,N/A +2012,6,16,12,30,101670,100520,99400,71.82000000000001,0,4.2700000000000005,4.55,4.6000000000000005,4.61,4.62,4.63,4.62,4.62,4.61,145.41,145.65,145.74,145.81,145.88,145.93,145.97,146.02,146.1,27.63,27.310000000000002,27.14,26.94,26.75,26.560000000000002,26.37,26.18,25.8,N/A,N/A +2012,6,16,13,30,101700,100550,99430,70.2,0,3.65,3.84,3.85,3.83,3.8200000000000003,3.8000000000000003,3.7800000000000002,3.7600000000000002,3.71,138.74,138.67000000000002,138.62,138.56,138.51,138.45000000000002,138.39000000000001,138.33,138.20000000000002,27.61,27.28,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.76,N/A,N/A +2012,6,16,14,30,101760,100600,99480,71.54,0,2.92,3.04,3.0500000000000003,3.04,3.02,3.0100000000000002,2.99,2.98,2.94,135.55,135.12,135.02,134.91,134.81,134.71,134.6,134.49,134.27,27.53,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.68,N/A,N/A +2012,6,16,15,30,101780,100620,99510,76.69,0,2.94,3.0700000000000003,3.09,3.09,3.09,3.09,3.08,3.0700000000000003,3.06,124.73,124.57000000000001,124.47,124.36,124.26,124.17,124.08,123.99000000000001,123.8,27.41,27.07,26.89,26.69,26.5,26.310000000000002,26.11,25.92,25.54,N/A,N/A +2012,6,16,16,30,101750,100600,99480,75.06,0,2.07,2.19,2.21,2.22,2.23,2.24,2.25,2.2600000000000002,2.27,127.44,127.28,127.2,127.12,127.05,126.98,126.9,126.81,126.67,27.51,27.16,26.990000000000002,26.78,26.6,26.41,26.21,26.02,25.64,N/A,N/A +2012,6,16,17,30,101760,100610,99490,77.37,0,1.97,2.0300000000000002,2.04,2.0300000000000002,2.0300000000000002,2.02,2.0100000000000002,2.0100000000000002,1.99,121.35000000000001,120.74000000000001,120.5,120.27,120.07000000000001,119.89,119.71000000000001,119.55,119.22,27.51,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.19,26.01,25.62,N/A,N/A +2012,6,16,18,30,101750,100600,99480,75.71000000000001,0,3.0700000000000003,3.24,3.27,3.29,3.31,3.3200000000000003,3.33,3.34,3.35,99.15,98.91,98.91,98.91,98.9,98.89,98.89,98.87,98.87,27.68,27.32,27.14,26.94,26.75,26.560000000000002,26.36,26.18,25.8,N/A,N/A +2012,6,16,19,30,101770,100620,99500,80.34,0,4.7700000000000005,4.93,4.93,4.9,4.8500000000000005,4.8,4.75,4.7,4.58,93.71000000000001,92.62,91.94,91.28,90.68,90.09,89.41,88.72,86.99,27.2,26.86,26.7,26.52,26.35,26.18,26.01,25.84,25.52,N/A,N/A +2012,6,16,20,30,101710,100560,99440,76.12,0,5.24,5.51,5.53,5.51,5.49,5.45,5.4,5.3500000000000005,5.21,87.36,87.69,88,88.34,88.69,89.05,89.48,89.9,91.07000000000001,26.7,26.32,26.14,25.95,25.77,25.580000000000002,25.400000000000002,25.22,24.88,N/A,N/A +2012,6,16,21,30,101670,100510,99400,79.14,0,3.69,3.9,3.95,3.97,3.99,4.01,4.0200000000000005,4.03,4.05,108.69,108.55,108.55,108.51,108.45,108.38,108.27,108.16,107.77,26.77,26.41,26.23,26.03,25.84,25.66,25.47,25.29,24.92,N/A,N/A +2012,6,16,22,30,101600,100450,99330,78.38,0,4.96,5.2700000000000005,5.32,5.34,5.36,5.37,5.37,5.37,5.38,106,106.07000000000001,106.11,106.15,106.19,106.22,106.26,106.3,106.36,27.01,26.650000000000002,26.47,26.27,26.09,25.900000000000002,25.71,25.53,25.16,N/A,N/A +2012,6,16,23,30,101580,100430,99320,78.71000000000001,0,5.48,5.91,6.0200000000000005,6.08,6.13,6.16,6.19,6.22,6.26,89.29,89.2,89.14,89.09,89.04,88.98,88.93,88.88,88.77,27.25,26.900000000000002,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A +2012,6,17,0,30,101550,100400,99280,80.65,0,6.2,6.67,6.76,6.8,6.82,6.83,6.83,6.83,6.8100000000000005,98.08,98.06,98.18,98.32000000000001,98.46000000000001,98.59,98.73,98.86,99.13,27.11,26.740000000000002,26.560000000000002,26.36,26.16,25.98,25.78,25.59,25.21,N/A,N/A +2012,6,17,1,30,101560,100410,99290,82.93,0,5.62,6.0200000000000005,6.12,6.17,6.2,6.22,6.24,6.25,6.26,103.69,104.16,104.4,104.61,104.79,104.96000000000001,105.11,105.26,105.56,26.8,26.43,26.25,26.05,25.86,25.67,25.47,25.29,24.91,N/A,N/A +2012,6,17,2,30,101530,100380,99260,81.79,0,6.46,6.97,7.09,7.16,7.2,7.23,7.25,7.2700000000000005,7.29,107.43,107.57000000000001,107.67,107.76,107.86,107.94,108.03,108.11,108.27,27.13,26.77,26.6,26.39,26.2,26.02,25.82,25.64,25.26,N/A,N/A +2012,6,17,3,30,101530,100380,99260,84.85000000000001,0,7.17,7.78,7.930000000000001,8.02,8.08,8.120000000000001,8.16,8.19,8.22,117.71000000000001,117.46000000000001,117.32000000000001,117.16,117.02,116.9,116.77,116.65,116.4,26.98,26.6,26.42,26.21,26.02,25.82,25.62,25.44,25.05,N/A,N/A +2012,6,17,4,30,101500,100350,99230,84.81,0,7.09,7.66,7.79,7.8500000000000005,7.890000000000001,7.92,7.930000000000001,7.930000000000001,7.930000000000001,116.83,117.16,117.29,117.4,117.49000000000001,117.56,117.63,117.69,117.79,27.13,26.76,26.580000000000002,26.38,26.19,25.990000000000002,25.8,25.61,25.23,N/A,N/A +2012,6,17,5,30,101510,100360,99250,82.03,0,7.21,7.82,7.94,8.01,8.040000000000001,8.05,8.06,8.06,8.040000000000001,119.58,119.49000000000001,119.45,119.41,119.39,119.37,119.35000000000001,119.34,119.33,27.150000000000002,26.79,26.61,26.41,26.22,26.03,25.830000000000002,25.650000000000002,25.26,N/A,N/A +2012,6,17,6,30,101550,100400,99280,80.78,0,6.390000000000001,7.01,7.16,7.26,7.33,7.38,7.41,7.44,7.48,116.77,117.38,117.57000000000001,117.7,117.8,117.88,117.94,117.99000000000001,118.04,27.36,27,26.82,26.62,26.43,26.240000000000002,26.04,25.85,25.46,N/A,N/A +2012,6,17,7,30,101560,100410,99300,79.67,0,6.13,6.61,6.72,6.78,6.82,6.8500000000000005,6.87,6.890000000000001,6.91,114.04,114.14,114.24000000000001,114.34,114.42,114.51,114.59,114.66,114.79,27.330000000000002,26.98,26.8,26.6,26.41,26.22,26.02,25.84,25.45,N/A,N/A +2012,6,17,8,30,101560,100400,99290,76.93,0,5.55,5.94,6.01,6.05,6.07,6.08,6.08,6.09,6.08,97.52,97.65,97.78,97.9,98.02,98.14,98.25,98.36,98.59,27.400000000000002,27.060000000000002,26.89,26.69,26.5,26.310000000000002,26.12,25.93,25.55,N/A,N/A +2012,6,17,9,30,101580,100420,99310,73.79,0,5.7,6.15,6.25,6.3100000000000005,6.36,6.4,6.43,6.45,6.5,103.45,103.8,104.02,104.21000000000001,104.38,104.54,104.68,104.81,105.05,27.54,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.69,N/A,N/A +2012,6,17,10,30,101570,100420,99300,71.88,0,6.140000000000001,6.61,6.69,6.73,6.75,6.76,6.76,6.75,6.74,97.12,96.78,96.58,96.4,96.24000000000001,96.08,95.92,95.78,95.49,27.48,27.14,26.96,26.77,26.57,26.38,26.19,26,25.61,N/A,N/A +2012,6,17,11,30,101580,100430,99310,71.22,0,6.08,6.51,6.58,6.6000000000000005,6.61,6.61,6.6000000000000005,6.59,6.5600000000000005,85.77,86.17,86.34,86.48,86.59,86.7,86.79,86.88,87.05,27.54,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.68,N/A,N/A +2012,6,17,12,30,101610,100450,99340,63.35,0,6.2700000000000005,6.78,6.87,6.92,6.95,6.96,6.97,6.98,6.98,82.73,82.93,82.97,82.99,83,83,83,83,83,27.830000000000002,27.51,27.34,27.150000000000002,26.96,26.77,26.57,26.39,26,N/A,N/A +2012,6,17,13,30,101640,100480,99370,61.61,0,6.29,6.82,6.92,6.97,7.01,7.03,7.04,7.05,7.05,72.28,72.37,72.44,72.51,72.58,72.64,72.7,72.76,72.89,27.830000000000002,27.53,27.36,27.16,26.97,26.79,26.59,26.41,26.02,N/A,N/A +2012,6,17,14,30,101620,100460,99350,57.04,0,6.7700000000000005,7.4,7.5200000000000005,7.59,7.63,7.66,7.67,7.68,7.68,65.71000000000001,65.6,65.62,65.66,65.69,65.73,65.78,65.82000000000001,65.9,27.88,27.57,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.060000000000002,N/A,N/A +2012,6,17,15,30,101610,100450,99330,56.53,0,7.32,8,8.14,8.2,8.24,8.26,8.27,8.27,8.24,60.89,60.870000000000005,60.94,61.02,61.1,61.17,61.26,61.33,61.5,27.85,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.02,N/A,N/A +2012,6,17,16,30,101620,100460,99340,61.58,0,7.57,8.19,8.3,8.35,8.38,8.4,8.4,8.4,8.370000000000001,74.59,74.9,75.07000000000001,75.25,75.4,75.56,75.7,75.84,76.13,27.38,27.03,26.85,26.66,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A +2012,6,17,17,30,101580,100420,99300,63.82,0,6.55,6.99,7.0600000000000005,7.07,7.07,7.07,7.0600000000000005,7.04,7,72.58,73.28,73.64,73.97,74.28,74.56,74.85000000000001,75.11,75.67,27.07,26.71,26.54,26.34,26.150000000000002,25.96,25.77,25.580000000000002,25.2,N/A,N/A +2012,6,17,18,30,101530,100370,99250,64.59,0,6.04,6.51,6.62,6.68,6.72,6.76,6.79,6.82,6.86,87.62,87.54,87.5,87.44,87.39,87.33,87.25,87.18,87.01,27,26.63,26.45,26.26,26.07,25.88,25.69,25.51,25.13,N/A,N/A +2012,6,17,19,30,101490,100330,99210,66.39,0,6.01,6.49,6.58,6.640000000000001,6.69,6.72,6.74,6.7700000000000005,6.8,96.79,96.03,95.68,95.34,95.02,94.73,94.42,94.15,93.55,27.060000000000002,26.68,26.5,26.310000000000002,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A +2012,6,17,20,30,101410,100250,99140,68.33,0,6.17,6.640000000000001,6.73,6.7700000000000005,6.8,6.82,6.83,6.84,6.8500000000000005,96.73,96.37,96.17,95.95,95.75,95.55,95.35000000000001,95.17,94.8,27.07,26.7,26.52,26.330000000000002,26.14,25.96,25.77,25.59,25.22,N/A,N/A +2012,6,17,21,30,101350,100200,99080,67.77,0,6.05,6.5,6.6000000000000005,6.640000000000001,6.68,6.7,6.71,6.72,6.74,95.56,95.76,95.81,95.85000000000001,95.88,95.9,95.91,95.91,95.91,27.28,26.94,26.76,26.57,26.38,26.19,26,25.82,25.44,N/A,N/A +2012,6,17,22,30,101300,100150,99040,68.64,0,3.2600000000000002,3.48,3.54,3.58,3.61,3.64,3.68,3.7,3.7800000000000002,101.58,101.45,101.36,101.26,101.15,101.04,100.91,100.78,100.43,27.3,26.96,26.79,26.59,26.400000000000002,26.21,26.02,25.84,25.46,N/A,N/A +2012,6,17,23,30,101270,100120,99010,72.21000000000001,0,4.0200000000000005,4.3100000000000005,4.39,4.43,4.48,4.5200000000000005,4.55,4.59,4.66,96.55,96.35000000000001,96.23,96.09,95.97,95.85000000000001,95.72,95.59,95.33,27.28,26.94,26.76,26.560000000000002,26.38,26.19,25.990000000000002,25.810000000000002,25.43,N/A,N/A +2012,6,18,0,30,101230,100080,98960,75.32000000000001,0,4.03,4.32,4.39,4.44,4.48,4.5200000000000005,4.55,4.57,4.63,90.24,90.15,90.13,90.11,90.09,90.06,90.03,90.01,89.95,27.27,26.93,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.42,N/A,N/A +2012,6,18,1,30,101180,100040,98920,77.34,0,5.38,5.79,5.88,5.94,5.98,6.01,6.03,6.05,6.08,92.28,92.16,92.11,92.06,92.02,91.98,91.94,91.9,91.82000000000001,27.35,26.990000000000002,26.82,26.62,26.43,26.240000000000002,26.04,25.86,25.47,N/A,N/A +2012,6,18,2,30,101140,99990,98880,76.54,0,5.22,5.57,5.63,5.66,5.67,5.68,5.69,5.69,5.69,97.14,96.3,95.82000000000001,95.35000000000001,94.91,94.5,94.09,93.71000000000001,92.91,27.29,26.94,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A +2012,6,18,3,30,101130,99980,98870,80.46000000000001,0,6.15,6.62,6.72,6.78,6.8100000000000005,6.84,6.8500000000000005,6.86,6.88,95.33,94.98,94.82000000000001,94.68,94.56,94.46000000000001,94.34,94.23,94.01,27.17,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.86,25.67,25.29,N/A,N/A +2012,6,18,4,30,101100,99950,98840,79.54,0,6.18,6.68,6.79,6.86,6.9,6.93,6.95,6.97,6.99,107.88,107.89,107.89,107.89,107.89,107.91,107.92,107.94,107.97,27.18,26.82,26.64,26.44,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,6,18,5,30,101060,99920,98800,82.73,0,6.19,6.63,6.74,6.79,6.83,6.86,6.88,6.9,6.93,115.27,115.23,115.3,115.39,115.48,115.57000000000001,115.68,115.78,116,27.1,26.740000000000002,26.560000000000002,26.35,26.16,25.97,25.78,25.59,25.21,N/A,N/A +2012,6,18,6,30,101070,99920,98810,83.83,0,6.65,7.15,7.25,7.3100000000000005,7.34,7.36,7.37,7.37,7.37,130.55,130.9,131,131.09,131.16,131.24,131.3,131.37,131.48,26.73,26.330000000000002,26.150000000000002,25.94,25.740000000000002,25.55,25.35,25.17,24.78,N/A,N/A +2012,6,18,7,30,101050,99900,98790,83.35000000000001,0,5.8,6.21,6.3,6.3500000000000005,6.38,6.4,6.41,6.43,6.44,144.96,145.27,145.4,145.53,145.65,145.75,145.86,145.96,146.14000000000001,27.01,26.63,26.45,26.25,26.060000000000002,25.87,25.67,25.48,25.1,N/A,N/A +2012,6,18,8,30,101020,99870,98760,82.58,0,7.37,7.97,8.09,8.15,8.18,8.19,8.19,8.18,8.14,180.96,180.96,181,181.07,181.13,181.20000000000002,181.29,181.37,181.57,27.2,26.830000000000002,26.650000000000002,26.45,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,6,18,9,30,101030,99880,98770,82.18,0,5.83,6.2700000000000005,6.36,6.41,6.45,6.47,6.49,6.5,6.5200000000000005,181.92000000000002,181.75,181.62,181.49,181.36,181.24,181.12,181,180.75,27.150000000000002,26.78,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A +2012,6,18,10,30,101040,99900,98780,79.71000000000001,0,6.3100000000000005,6.7700000000000005,6.88,6.92,6.96,6.97,6.98,6.99,6.99,208.36,208.08,207.88,207.68,207.49,207.3,207.1,206.92000000000002,206.54,27.19,26.830000000000002,26.66,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A +2012,6,18,11,30,101010,99860,98750,79.35000000000001,0,4.84,5.15,5.2,5.23,5.24,5.24,5.24,5.24,5.23,214.18,214.16,214.04,213.92000000000002,213.81,213.70000000000002,213.58,213.47,213.22,27.09,26.73,26.55,26.35,26.16,25.97,25.77,25.59,25.21,N/A,N/A +2012,6,18,12,30,101040,99900,98790,80.5,0,4.05,4.2700000000000005,4.3100000000000005,4.32,4.33,4.33,4.33,4.33,4.33,201.5,201.66,201.68,201.70000000000002,201.73000000000002,201.74,201.76,201.77,201.81,27.05,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A +2012,6,18,13,30,101110,99960,98840,91.08,5.1000000000000005,10.47,11.09,11.040000000000001,10.83,10.6,10.32,10.01,9.71,9.05,140.81,140.98,141.34,141.88,142.43,143.01,143.68,144.34,145.83,25.240000000000002,24.79,24.63,24.47,24.330000000000002,24.19,24.05,23.92,23.63,N/A,N/A +2012,6,18,14,30,101160,100000,98880,82.79,30,3.23,3.31,3.29,3.27,3.25,3.22,3.16,3.09,2.7600000000000002,127.84,132.26,134.95,137.89000000000001,141.06,144.3,147.81,151.01,156.17000000000002,24.96,24.57,24.41,24.25,24.1,23.98,23.88,23.8,23.650000000000002,N/A,N/A +2012,6,18,15,30,101140,99980,98850,88.79,39.900000000000006,3.92,3.85,3.69,3.5,3.37,3.2800000000000002,3.45,3.65,4.18,90.38,90.81,92.22,94.47,102.48,112.25,119.26,125.41,133.41,23.72,23.35,23.240000000000002,23.16,23.22,23.32,23.36,23.38,23.19,N/A,N/A +2012,6,18,16,30,101200,100040,98930,81.16,2.2,4.5200000000000005,4.91,5.01,5.09,5.15,5.2,5.24,5.28,5.33,142.73,144.52,145.08,145.55,145.94,146.28,146.59,146.86,147.33,26.16,25.77,25.59,25.38,25.19,25,24.8,24.62,24.240000000000002,N/A,N/A +2012,6,18,17,30,101140,99990,98870,86.68,0.4,6.33,6.75,6.84,6.890000000000001,6.92,6.94,6.96,6.98,7.05,155.48,155.29,155.16,155.04,154.92000000000002,154.8,154.64000000000001,154.5,154.12,26,25.580000000000002,25.400000000000002,25.2,25.02,24.84,24.650000000000002,24.48,24.14,N/A,N/A +2012,6,18,18,30,101170,100020,98900,89.11,4.4,8.11,8.61,8.68,8.69,8.67,8.65,8.6,8.56,8.46,147.57,148.22,148.77,149.3,149.81,150.28,150.78,151.23,152.23,25.55,25.09,24.900000000000002,24.7,24.52,24.34,24.150000000000002,23.98,23.63,N/A,N/A +2012,6,18,19,30,101190,100030,98910,83.7,0.4,8.33,8.93,9.03,9.05,9.06,9.05,9.03,9.01,8.94,175.26,174.63,174.3,173.95000000000002,173.6,173.25,172.88,172.52,171.71,25.76,25.3,25.11,24.900000000000002,24.71,24.52,24.32,24.14,23.77,N/A,N/A +2012,6,18,20,30,101160,100000,98890,80.2,0,7.11,7.63,7.74,7.78,7.8100000000000005,7.82,7.83,7.83,7.82,159.67000000000002,159.75,159.79,159.82,159.84,159.86,159.87,159.89000000000001,159.92000000000002,26.29,25.87,25.68,25.48,25.28,25.09,24.89,24.71,24.32,N/A,N/A +2012,6,18,21,30,101130,99980,98870,74.98,0,6.5,7.0200000000000005,7.140000000000001,7.22,7.28,7.33,7.37,7.4,7.46,156.03,156.01,156.04,156.05,156.07,156.07,156.07,156.08,156.07,26.82,26.45,26.27,26.060000000000002,25.87,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A +2012,6,18,22,30,101080,99930,98810,77.73,0,7.55,8.19,8.33,8.41,8.47,8.51,8.540000000000001,8.56,8.59,146.85,146.88,146.95000000000002,147.03,147.09,147.16,147.23,147.3,147.44,26.990000000000002,26.6,26.42,26.22,26.02,25.830000000000002,25.63,25.45,25.060000000000002,N/A,N/A +2012,6,18,23,30,101110,99960,98850,83.62,0,8.64,9.43,9.59,9.67,9.72,9.74,9.76,9.76,9.75,141.64000000000001,141.67000000000002,141.70000000000002,141.73,141.77,141.8,141.84,141.87,141.94,26.900000000000002,26.5,26.310000000000002,26.1,25.91,25.72,25.51,25.330000000000002,24.94,N/A,N/A +2012,6,19,0,30,101100,99950,98840,77.86,0,8.620000000000001,9.41,9.6,9.700000000000001,9.78,9.83,9.86,9.88,9.92,154,153.87,153.84,153.82,153.79,153.77,153.75,153.74,153.71,27.13,26.75,26.57,26.37,26.17,25.98,25.78,25.6,25.21,N/A,N/A +2012,6,19,1,30,101070,99920,98810,83.08,0,9.15,10.07,10.28,10.42,10.51,10.58,10.64,10.68,10.75,150.67000000000002,150.64000000000001,150.61,150.58,150.56,150.53,150.51,150.48,150.44,27.09,26.71,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.18,N/A,N/A +2012,6,19,2,30,101080,99930,98820,81.92,0,8.94,9.72,9.88,9.950000000000001,9.99,10.01,10.01,10.01,9.98,146.09,146.13,146.14000000000001,146.12,146.1,146.07,146.02,145.98,145.85,27.18,26.8,26.61,26.42,26.22,26.03,25.84,25.66,25.28,N/A,N/A +2012,6,19,3,30,101110,99960,98850,84.93,0,9.55,10.46,10.65,10.74,10.790000000000001,10.82,10.83,10.83,10.81,135.98,136.06,136.12,136.17000000000002,136.21,136.24,136.27,136.3,136.36,27.03,26.63,26.44,26.240000000000002,26.05,25.85,25.66,25.47,25.09,N/A,N/A +2012,6,19,4,30,101110,99960,98850,75.44,0,10.88,11.93,12.16,12.27,12.35,12.4,12.43,12.450000000000001,12.46,149,148.9,148.89000000000001,148.89000000000001,148.91,148.93,148.96,148.98,149.06,27.35,26.98,26.79,26.59,26.39,26.2,26.01,25.82,25.43,N/A,N/A +2012,6,19,5,30,101090,99950,98840,80.2,0,9.05,9.93,10.13,10.25,10.33,10.39,10.43,10.46,10.5,155.42000000000002,155.4,155.4,155.4,155.41,155.43,155.44,155.46,155.51,27.27,26.89,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A +2012,6,19,6,30,101140,100000,98890,82.64,0,9.67,10.67,10.92,11.06,11.17,11.25,11.31,11.370000000000001,11.44,155.82,156.04,156.13,156.21,156.29,156.35,156.41,156.47,156.57,27.27,26.89,26.71,26.51,26.310000000000002,26.12,25.92,25.740000000000002,25.35,N/A,N/A +2012,6,19,7,30,101180,100030,98920,83.37,0,9.84,10.88,11.15,11.32,11.44,11.540000000000001,11.620000000000001,11.68,11.790000000000001,163.86,164.06,164.11,164.15,164.18,164.20000000000002,164.22,164.23,164.26,27.39,27.02,26.84,26.64,26.45,26.25,26.060000000000002,25.87,25.490000000000002,N/A,N/A +2012,6,19,8,30,101200,100060,98950,84.05,0,9.23,10.18,10.42,10.57,10.67,10.75,10.81,10.86,10.93,160.1,159.99,159.92000000000002,159.85,159.78,159.71,159.65,159.58,159.44,27.45,27.080000000000002,26.900000000000002,26.7,26.51,26.32,26.12,25.94,25.55,N/A,N/A +2012,6,19,9,30,101200,100060,98950,82.7,0,9.370000000000001,10.290000000000001,10.52,10.64,10.73,10.790000000000001,10.82,10.86,10.89,158.37,158.27,158.35,158.43,158.52,158.59,158.67000000000002,158.76,158.93,27.6,27.25,27.080000000000002,26.88,26.7,26.51,26.310000000000002,26.13,25.76,N/A,N/A +2012,6,19,10,30,101230,100080,98960,85.57000000000001,5.5,9.44,10.09,10.31,10.46,10.58,10.700000000000001,10.82,10.92,11.15,136.31,136.69,137.49,138.35,139.18,140.02,140.95000000000002,141.85,143.95000000000002,26.23,25.87,25.740000000000002,25.59,25.44,25.3,25.150000000000002,25.01,24.72,N/A,N/A +2012,6,19,11,30,101180,100030,98910,86.52,0.4,13.620000000000001,14.84,14.97,14.96,14.94,14.91,14.8,14.69,14.41,161.14000000000001,161.23,161.38,161.59,161.79,161.98,162.07,162.13,162.36,25.43,24.97,24.82,24.71,24.64,24.61,24.63,24.650000000000002,24.67,N/A,N/A +2012,6,19,12,30,101350,100190,99060,86.07000000000001,43.900000000000006,12.89,13.83,13.950000000000001,13.94,13.93,13.9,13.93,13.96,14.120000000000001,142.17000000000002,142.96,143.63,144.46,145.48,146.57,148.1,149.58,152.87,24.25,23.73,23.57,23.46,23.39,23.34,23.35,23.37,23.51,N/A,N/A +2012,6,19,13,30,101310,100150,99030,81.92,0,2.52,2.7800000000000002,2.9,3.02,3.16,3.3000000000000003,3.49,3.68,4.48,157.13,160.38,162.17000000000002,163.93,165.63,167.31,169.02,170.66,174.37,25.93,25.57,25.41,25.23,25.07,24.91,24.75,24.61,24.47,N/A,N/A +2012,6,19,14,30,101380,100230,99120,77.05,0,8.36,9.290000000000001,9.52,9.66,9.77,9.85,9.9,9.94,10,162.03,161.83,161.67000000000002,161.54,161.42000000000002,161.31,161.21,161.1,160.91,27.88,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.02,N/A,N/A +2012,6,19,15,30,101410,100270,99150,77.27,0,8.370000000000001,9.17,9.35,9.450000000000001,9.51,9.55,9.57,9.59,9.6,165.62,165.46,165.43,165.39000000000001,165.37,165.34,165.32,165.3,165.27,27.830000000000002,27.5,27.330000000000002,27.13,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A +2012,6,19,16,30,101440,100290,99180,80.59,0,9.09,9.96,10.16,10.28,10.35,10.39,10.42,10.44,10.450000000000001,160.09,160.26,160.33,160.37,160.39000000000001,160.41,160.42000000000002,160.42000000000002,160.43,27.19,26.810000000000002,26.62,26.42,26.22,26.03,25.830000000000002,25.650000000000002,25.26,N/A,N/A +2012,6,19,17,30,101420,100270,99150,83.25,0,10.55,11.53,11.73,11.83,11.88,11.91,11.91,11.91,11.870000000000001,171.22,171.17000000000002,171.18,171.19,171.21,171.22,171.23,171.24,171.27,26.78,26.35,26.16,25.96,25.77,25.580000000000002,25.38,25.2,24.830000000000002,N/A,N/A +2012,6,19,18,30,101490,100330,99210,88.08,11,8.09,8.790000000000001,8.93,9.01,9.06,9.09,9.11,9.13,9.14,148.03,148.22,148.3,148.39000000000001,148.48,148.56,148.67000000000002,148.76,149.04,25.55,25.080000000000002,24.89,24.68,24.490000000000002,24.3,24.11,23.93,23.56,N/A,N/A +2012,6,19,19,30,101430,100270,99140,87.01,2.9000000000000004,6.92,7.44,7.5600000000000005,7.65,7.7700000000000005,7.9,8.2,8.52,9.63,153.34,153.35,153.51,153.70000000000002,153.95000000000002,154.23,154.68,155.15,156.53,25.3,24.88,24.71,24.54,24.400000000000002,24.28,24.22,24.18,24.57,N/A,N/A +2012,6,19,20,30,101430,100270,99140,93.3,289.7,4.97,5.12,5.18,5.22,5.3500000000000005,5.48,5.7,5.9,6.29,248.23000000000002,246.11,243.35,240.11,235.81,231.48000000000002,227.34,223.61,218,24.560000000000002,24.240000000000002,24.18,24.16,24.22,24.29,24.330000000000002,24.36,24.29,N/A,N/A +2012,6,19,21,30,101470,100310,99180,84.58,0,3.54,3.63,3.64,3.65,3.7,3.7600000000000002,4.0600000000000005,4.43,4.8,231.65,229.67000000000002,228.22,226.20000000000002,221.79,215.66,207.31,198.23000000000002,185.88,25.12,24.73,24.57,24.39,24.26,24.150000000000002,24.13,24.14,24.05,N/A,N/A +2012,6,19,22,30,101410,100250,99130,90.77,0,3.45,3.58,3.5700000000000003,3.54,3.5,3.47,3.45,3.44,4.88,59.14,60.75,61.68,62.81,64.27,65.9,68.16,70.44,115.2,25.18,24.77,24.59,24.400000000000002,24.22,24.05,23.87,23.7,24.16,N/A,N/A +2012,6,19,23,30,101360,100210,99090,90.36,0,5.1000000000000005,5.37,5.42,5.43,5.43,5.42,5.41,5.4,5.37,110.54,111.27,111.86,112.48,113.09,113.68,114.35000000000001,114.99000000000001,116.54,26.240000000000002,25.84,25.66,25.46,25.27,25.080000000000002,24.89,24.71,24.34,N/A,N/A +2012,6,20,0,30,101370,100220,99100,83.74,0,8.21,8.950000000000001,9.13,9.22,9.28,9.32,9.34,9.36,9.370000000000001,134.08,134.3,134.39000000000001,134.48,134.55,134.61,134.69,134.75,134.91,27.37,27,26.82,26.62,26.43,26.240000000000002,26.04,25.85,25.47,N/A,N/A +2012,6,20,1,30,101330,100180,99060,81.9,0,8.81,9.790000000000001,10.03,10.18,10.3,10.38,10.450000000000001,10.5,10.58,135.19,134.84,134.76,134.7,134.64000000000001,134.6,134.57,134.54,134.5,27.490000000000002,27.13,26.95,26.75,26.560000000000002,26.37,26.17,25.98,25.59,N/A,N/A +2012,6,20,2,30,101340,100190,99080,81.5,0,9.46,10.48,10.74,10.89,11,11.09,11.15,11.200000000000001,11.28,135.91,135.93,135.92000000000002,135.89000000000001,135.87,135.84,135.82,135.78,135.72,27.62,27.27,27.09,26.89,26.7,26.5,26.310000000000002,26.12,25.740000000000002,N/A,N/A +2012,6,20,3,30,101330,100180,99070,80.18,0,9.78,10.76,11.01,11.16,11.26,11.34,11.4,11.450000000000001,11.53,144.35,144.04,143.9,143.77,143.65,143.54,143.44,143.34,143.15,27.900000000000002,27.59,27.43,27.240000000000002,27.060000000000002,26.88,26.7,26.52,26.16,N/A,N/A +2012,6,20,4,30,101350,100190,99080,89.69,0,10.97,12.05,12.33,12.49,12.6,12.68,12.74,12.81,12.98,130.42000000000002,131.57,132.02,132.44,132.85,133.25,133.71,134.15,135.36,25.87,25.38,25.18,24.98,24.79,24.61,24.43,24.27,23.96,N/A,N/A +2012,6,20,5,30,101300,100150,99040,84.71000000000001,0,13.15,14.76,15.1,15.31,15.44,15.52,15.56,15.58,15.56,148.57,148.22,148.23,148.28,148.34,148.41,148.51,148.6,148.82,26.900000000000002,26.45,26.25,26.04,25.830000000000002,25.63,25.43,25.240000000000002,24.85,N/A,N/A +2012,6,20,6,30,101330,100180,99070,80.62,0,10.28,11.34,11.59,11.75,11.86,11.94,12,12.05,12.13,152.62,152.34,152.17000000000002,152,151.82,151.67000000000002,151.5,151.34,151.01,27.07,26.68,26.5,26.3,26.11,25.93,25.740000000000002,25.560000000000002,25.19,N/A,N/A +2012,6,20,7,30,101360,100210,99100,78.9,0,9.67,10.83,11.13,11.33,11.47,11.57,11.64,11.69,11.76,139.76,139.65,139.70000000000002,139.79,139.89000000000001,139.99,140.1,140.21,140.45000000000002,28.01,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.16,N/A,N/A +2012,6,20,8,30,101330,100180,99070,76.51,0,9.75,10.81,11.06,11.200000000000001,11.290000000000001,11.36,11.4,11.44,11.48,141.09,140.79,140.70000000000002,140.61,140.54,140.47,140.4,140.34,140.21,27.95,27.63,27.46,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A +2012,6,20,9,30,101350,100200,99090,78.85000000000001,0,8.870000000000001,9.82,10.05,10.200000000000001,10.31,10.39,10.44,10.49,10.55,138.41,138.4,138.45000000000002,138.5,138.55,138.6,138.65,138.70000000000002,138.82,27.84,27.5,27.32,27.12,26.93,26.740000000000002,26.54,26.35,25.96,N/A,N/A +2012,6,20,10,30,101360,100210,99100,79.35000000000001,0,7.68,8.370000000000001,8.51,8.59,8.63,8.66,8.68,8.69,8.69,147.94,147.64000000000001,147.47,147.29,147.11,146.94,146.75,146.58,146.20000000000002,27.650000000000002,27.32,27.14,26.95,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A +2012,6,20,11,30,101360,100210,99100,79.46000000000001,0,6.890000000000001,7.5600000000000005,7.73,7.84,7.930000000000001,7.99,8.05,8.09,8.17,142.72,142.37,142.26,142.17000000000002,142.09,142.03,141.98,141.94,141.88,27.77,27.45,27.28,27.080000000000002,26.89,26.7,26.51,26.32,25.94,N/A,N/A +2012,6,20,12,30,101380,100230,99120,78.89,0,7.24,7.92,8.07,8.16,8.22,8.27,8.3,8.33,8.36,140.92000000000002,141.32,141.53,141.73,141.91,142.08,142.24,142.4,142.70000000000002,27.77,27.44,27.27,27.07,26.88,26.69,26.5,26.310000000000002,25.93,N/A,N/A +2012,6,20,13,30,101410,100260,99140,81.84,5.5,8.15,8.82,8.96,9.01,9.040000000000001,9.040000000000001,9.02,8.99,8.91,147.13,146.31,145.81,145.33,144.89000000000001,144.47,144.04,143.62,142.65,26.28,25.86,25.67,25.48,25.29,25.11,24.92,24.75,24.400000000000002,N/A,N/A +2012,6,20,14,30,101480,100320,99190,93.03,59.300000000000004,5.91,6.34,6.44,6.51,6.5600000000000005,6.6000000000000005,6.65,6.7,6.86,175.67000000000002,174.72,174.26,173.78,173.28,172.78,172.12,171.47,169.06,24.88,24.43,24.25,24.05,23.87,23.7,23.53,23.37,23.07,N/A,N/A +2012,6,20,15,30,101450,100290,99170,81.78,0,7.59,8.16,8.28,8.33,8.36,8.370000000000001,8.370000000000001,8.36,8.33,165.46,165.43,165.42000000000002,165.42000000000002,165.43,165.45000000000002,165.49,165.52,165.64000000000001,26.28,25.86,25.67,25.46,25.27,25.080000000000002,24.88,24.7,24.32,N/A,N/A +2012,6,20,16,30,101540,100390,99270,81.89,0,6.17,6.67,6.78,6.8500000000000005,6.9,6.94,6.97,6.99,7.04,142.75,142.71,142.65,142.58,142.5,142.41,142.33,142.23,142,26.95,26.57,26.39,26.19,26,25.810000000000002,25.62,25.43,25.05,N/A,N/A +2012,6,20,17,30,101460,100300,99190,81.33,0,6.59,7.1000000000000005,7.21,7.26,7.29,7.3100000000000005,7.32,7.33,7.32,153.56,153.25,153.09,152.95000000000002,152.8,152.65,152.49,152.35,152,26.88,26.490000000000002,26.310000000000002,26.11,25.91,25.73,25.53,25.34,24.97,N/A,N/A +2012,6,20,18,30,101500,100340,99220,80.37,0,6.04,6.51,6.62,6.69,6.74,6.78,6.8100000000000005,6.84,6.890000000000001,149.08,149.19,149.17000000000002,149.14000000000001,149.1,149.06,149.01,148.96,148.84,26.84,26.45,26.27,26.07,25.88,25.69,25.5,25.32,24.94,N/A,N/A +2012,6,20,19,30,101470,100320,99200,79.7,0,4.98,5.33,5.4,5.44,5.47,5.49,5.51,5.53,5.5600000000000005,132.76,132.69,132.65,132.6,132.55,132.49,132.42000000000002,132.34,132.14000000000001,27.080000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.75,25.57,25.19,N/A,N/A +2012,6,20,20,30,101430,100280,99170,85.01,0,6.01,6.46,6.57,6.63,6.67,6.7,6.73,6.75,6.79,126.34,125.82000000000001,125.51,125.2,124.92,124.64,124.35000000000001,124.07000000000001,123.47,27.080000000000002,26.7,26.52,26.32,26.13,25.95,25.75,25.57,25.2,N/A,N/A +2012,6,20,21,30,101410,100260,99140,83.11,0,6.29,6.73,6.8,6.83,6.8500000000000005,6.86,6.86,6.86,6.86,126.48,126.18,125.98,125.77,125.54,125.31,125.03,124.76,124.06,26.75,26.36,26.18,25.98,25.79,25.61,25.42,25.240000000000002,24.88,N/A,N/A +2012,6,20,22,30,101410,100260,99150,81.31,0,6.83,7.47,7.65,7.7700000000000005,7.87,7.95,8.02,8.08,8.2,98.79,99.48,99.82000000000001,100.14,100.42,100.68,100.92,101.15,101.57000000000001,27.41,27.060000000000002,26.89,26.69,26.51,26.32,26.13,25.94,25.57,N/A,N/A +2012,6,20,23,30,101360,100210,99100,76.46000000000001,0,7.86,8.57,8.73,8.81,8.870000000000001,8.9,8.92,8.93,8.94,104.88,104.91,104.92,104.94,104.97,104.99000000000001,105.02,105.05,105.13,27.69,27.36,27.18,26.98,26.79,26.6,26.41,26.22,25.84,N/A,N/A +2012,6,21,0,30,101350,100200,99080,78.05,0,7.22,7.9,8.05,8.14,8.21,8.26,8.290000000000001,8.33,8.370000000000001,111.23,111.82000000000001,112.04,112.21000000000001,112.36,112.48,112.59,112.68,112.85000000000001,27.740000000000002,27.41,27.23,27.03,26.84,26.650000000000002,26.45,26.27,25.88,N/A,N/A +2012,6,21,1,30,101350,100200,99080,80.9,0,7.18,7.8100000000000005,7.94,8.01,8.06,8.08,8.1,8.11,8.120000000000001,121.60000000000001,121.27,121.08,120.92,120.79,120.66,120.54,120.42,120.19,27.560000000000002,27.21,27.04,26.84,26.650000000000002,26.46,26.26,26.080000000000002,25.69,N/A,N/A +2012,6,21,2,30,101350,100200,99090,87.2,0,8.78,9.48,9.6,9.64,9.65,9.63,9.61,9.58,9.49,117.16,116.99000000000001,116.95,116.9,116.85000000000001,116.8,116.75,116.7,116.58,26.86,26.46,26.28,26.09,25.900000000000002,25.72,25.54,25.37,25.02,N/A,N/A +2012,6,21,3,30,101360,100210,99100,81.12,0,7.28,7.930000000000001,8.1,8.19,8.27,8.33,8.370000000000001,8.41,8.47,119.91,119.93,119.97,120.01,120.06,120.10000000000001,120.14,120.18,120.27,27.07,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.17,N/A,N/A +2012,6,21,4,30,101340,100190,99080,81.38,0,6.71,7.25,7.3500000000000005,7.4,7.44,7.46,7.47,7.47,7.48,127.15,126.51,126.12,125.73,125.36,125.02,124.67,124.33,123.62,27.29,26.93,26.76,26.560000000000002,26.37,26.18,25.990000000000002,25.810000000000002,25.44,N/A,N/A +2012,6,21,5,30,101350,100200,99080,81.77,0,5.98,6.49,6.62,6.7,6.76,6.8100000000000005,6.8500000000000005,6.88,6.94,126.74000000000001,126.56,126.55,126.53,126.51,126.49000000000001,126.47,126.46000000000001,126.41,27.25,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A +2012,6,21,6,30,101360,100210,99100,81.12,0,6.140000000000001,6.62,6.72,6.7700000000000005,6.8,6.83,6.84,6.8500000000000005,6.87,115.05,115.38,115.60000000000001,115.84,116.06,116.29,116.52,116.75,117.22,27.44,27.09,26.91,26.71,26.52,26.330000000000002,26.13,25.95,25.560000000000002,N/A,N/A +2012,6,21,7,30,101340,100190,99080,81.42,0,7.4,8.03,8.17,8.24,8.290000000000001,8.31,8.33,8.34,8.33,120.41,120.56,120.65,120.73,120.81,120.88,120.94,121,121.13,27.45,27.09,26.92,26.72,26.52,26.34,26.14,25.95,25.57,N/A,N/A +2012,6,21,8,30,101380,100230,99120,79.38,0,5.73,6.22,6.34,6.42,6.49,6.54,6.59,6.63,6.7,122.12,122.46000000000001,122.67,122.85000000000001,123,123.13000000000001,123.24000000000001,123.34,123.52,27.62,27.28,27.1,26.91,26.72,26.53,26.34,26.16,25.77,N/A,N/A +2012,6,21,9,30,101390,100240,99130,80.74,4.4,5.3500000000000005,5.76,5.86,5.93,5.98,6.0200000000000005,6.0600000000000005,6.09,6.13,120.85000000000001,120.03,119.64,119.29,118.99000000000001,118.73,118.48,118.25,117.83,27.48,27.14,26.97,26.77,26.580000000000002,26.400000000000002,26.2,26.02,25.64,N/A,N/A +2012,6,21,10,30,101390,100240,99130,83.12,6.6000000000000005,4.89,5.24,5.32,5.37,5.41,5.44,5.47,5.49,5.53,110.12,109.8,109.52,109.21000000000001,108.94,108.69,108.44,108.21000000000001,107.77,27.21,26.86,26.68,26.490000000000002,26.3,26.11,25.91,25.73,25.35,N/A,N/A +2012,6,21,11,30,101420,100270,99150,76.85000000000001,0,4.48,4.92,5.04,5.13,5.2,5.26,5.3,5.34,5.39,91.94,91.45,91.38,91.35000000000001,91.36,91.39,91.45,91.52,91.71000000000001,27.57,27.240000000000002,27.07,26.88,26.69,26.5,26.310000000000002,26.13,25.740000000000002,N/A,N/A +2012,6,21,12,30,101440,100290,99170,77.24,0,5.58,6.03,6.13,6.19,6.22,6.25,6.26,6.2700000000000005,6.29,84.22,84.60000000000001,84.78,84.93,85.06,85.18,85.28,85.38,85.59,27.61,27.26,27.09,26.89,26.7,26.51,26.310000000000002,26.13,25.740000000000002,N/A,N/A +2012,6,21,13,30,101440,100290,99170,70.31,0,6.13,6.6000000000000005,6.68,6.71,6.73,6.73,6.73,6.73,6.71,80.22,80.13,80.01,79.87,79.74,79.62,79.49,79.37,79.14,27.92,27.6,27.43,27.23,27.04,26.85,26.66,26.48,26.09,N/A,N/A +2012,6,21,14,30,101510,100360,99240,70.26,0,6.47,7.0200000000000005,7.13,7.2,7.24,7.2700000000000005,7.29,7.3,7.32,82.21000000000001,81.86,81.76,81.66,81.59,81.52,81.45,81.39,81.28,27.97,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.52,26.14,N/A,N/A +2012,6,21,15,30,101550,100400,99290,65.27,0,6.1000000000000005,6.58,6.66,6.69,6.7,6.7,6.7,6.7,6.68,74.64,74.63,74.7,74.78,74.85000000000001,74.93,75.02,75.11,75.3,28.14,27.830000000000002,27.67,27.47,27.28,27.1,26.900000000000002,26.71,26.330000000000002,N/A,N/A +2012,6,21,16,30,101530,100380,99270,72,0,7.17,7.74,7.84,7.890000000000001,7.9,7.91,7.9,7.890000000000001,7.86,74.67,74.84,74.91,74.97,75.04,75.11,75.19,75.26,75.45,27.68,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.830000000000002,N/A,N/A +2012,6,21,17,30,101510,100360,99240,71.42,0,6.44,6.91,6.99,7.0200000000000005,7.04,7.04,7.03,7.03,6.99,69.04,69.18,69.3,69.41,69.51,69.61,69.7,69.78,69.96000000000001,27.53,27.18,27,26.810000000000002,26.61,26.42,26.23,26.04,25.66,N/A,N/A +2012,6,21,18,30,101490,100340,99220,68.18,0,5.29,5.62,5.66,5.66,5.64,5.62,5.58,5.55,5.46,73.44,73.22,73.16,73.07000000000001,72.97,72.85000000000001,72.7,72.55,72.04,27.66,27.34,27.17,26.98,26.8,26.62,26.43,26.26,25.92,N/A,N/A +2012,6,21,19,30,101440,100290,99170,60.94,0,6.18,6.67,6.76,6.8,6.83,6.8500000000000005,6.86,6.88,6.91,78.52,78.32000000000001,78.2,78.07000000000001,77.92,77.76,77.57000000000001,77.38,76.8,28.07,27.77,27.61,27.42,27.240000000000002,27.060000000000002,26.88,26.71,26.37,N/A,N/A +2012,6,21,20,30,101390,100240,99130,55.57,0,4.95,5.37,5.45,5.51,5.59,5.67,5.8100000000000005,5.97,6.88,90.25,89.85000000000001,89.57000000000001,89.28,88.94,88.58,88.05,87.49,85.47,28.32,28.05,27.89,27.71,27.54,27.37,27.21,27.07,26.900000000000002,N/A,N/A +2012,6,21,21,30,101340,100190,99080,61.120000000000005,0,5.18,5.57,5.64,5.67,5.7,5.73,5.78,5.82,6.1000000000000005,107.76,107.33,107.04,106.72,106.36,105.97,105.41,104.85000000000001,102.51,28.2,27.91,27.75,27.57,27.39,27.22,27.05,26.89,26.64,N/A,N/A +2012,6,21,22,30,101320,100170,99060,63.22,0,4.44,4.76,4.8100000000000005,4.84,4.86,4.87,4.9,4.92,5.03,122.05,121.71000000000001,121.47,121.2,120.91,120.61,120.19,119.77,118.21000000000001,28.19,27.900000000000002,27.740000000000002,27.560000000000002,27.38,27.21,27.03,26.87,26.580000000000002,N/A,N/A +2012,6,21,23,30,101290,100140,99030,62.96,0,4.49,4.83,4.88,4.91,4.94,4.96,5,5.04,5.22,126.98,126.58,126.3,125.98,125.63000000000001,125.24000000000001,124.7,124.16,121.92,28.3,28.02,27.86,27.67,27.490000000000002,27.32,27.13,26.96,26.66,N/A,N/A +2012,6,22,0,30,101260,100110,99000,67,0,3.31,3.54,3.5700000000000003,3.59,3.62,3.65,3.71,3.79,4.51,137.56,136.81,136.26,135.58,134.78,133.84,132.24,130.52,120.47,28.16,27.87,27.72,27.53,27.36,27.19,27.04,26.900000000000002,26.87,N/A,N/A +2012,6,22,1,30,101230,100080,98970,67.86,0,2.35,2.5,2.5300000000000002,2.5500000000000003,2.58,2.6,2.66,2.72,3.18,138.46,137.39000000000001,136.66,135.81,134.81,133.67000000000002,131.99,130.21,122.13,28.14,27.86,27.69,27.51,27.330000000000002,27.16,26.990000000000002,26.84,26.650000000000002,N/A,N/A +2012,6,22,2,30,101260,100110,99000,67.94,0,0.62,0.67,0.7000000000000001,0.72,0.76,0.8,0.9,1.02,2.93,138.6,136.27,134.47,132.46,130.21,127.73,124.08,119.89,102.12,28.18,27.88,27.72,27.53,27.35,27.17,27,26.84,26.900000000000002,N/A,N/A +2012,6,22,3,30,101240,100100,98980,67.93,0,0.75,0.76,0.74,0.72,0.7000000000000001,0.68,0.67,0.67,0.91,343.21,347,349.58,352.93,357.36,2.57,11.34,20.67,53.29,28.18,27.89,27.73,27.54,27.36,27.18,27,26.830000000000002,26.53,N/A,N/A +2012,6,22,4,30,101240,100090,98980,67.5,0,1.07,1.1,1.09,1.08,1.07,1.05,1.04,1.04,1.08,347.42,350.93,352.85,355.04,357.40000000000003,359.86,3.15,6.47,19.25,28.22,27.93,27.77,27.57,27.39,27.21,27.02,26.85,26.51,N/A,N/A +2012,6,22,5,30,101220,100080,98970,68.65,0,1.85,1.93,1.93,1.93,1.92,1.9100000000000001,1.9100000000000001,1.9000000000000001,1.94,356.29,357.82,358.88,0.14,1.53,3.06,5.19,7.390000000000001,15.69,28.16,27.87,27.71,27.52,27.34,27.16,26.97,26.8,26.48,N/A,N/A +2012,6,22,6,30,101250,100110,99000,68.05,0,2.35,2.49,2.5,2.5,2.5,2.5,2.5,2.5,2.52,1.99,2.68,3.14,3.7,4.3500000000000005,5.08,6.13,7.22,11.65,28.23,27.95,27.79,27.6,27.42,27.240000000000002,27.060000000000002,26.89,26.560000000000002,N/A,N/A +2012,6,22,7,30,101250,100100,98990,69.25,0,3.11,3.3000000000000003,3.31,3.3000000000000003,3.29,3.2800000000000002,3.27,3.2600000000000002,3.33,2.68,3.14,3.44,3.8000000000000003,4.2,4.63,5.3100000000000005,6.03,10.63,28.17,27.88,27.72,27.53,27.35,27.17,26.990000000000002,26.82,26.560000000000002,N/A,N/A +2012,6,22,8,30,101220,100070,98960,69.43,0,4.5,4.8100000000000005,4.8500000000000005,4.86,4.86,4.87,4.89,4.91,5.17,2.64,3.16,3.46,3.8000000000000003,4.22,4.7,5.47,6.2700000000000005,10.36,28.17,27.900000000000002,27.740000000000002,27.55,27.38,27.21,27.05,26.900000000000002,26.73,N/A,N/A +2012,6,22,9,30,101220,100070,98960,68.72,0,5.79,6.24,6.3,6.33,6.34,6.3500000000000005,6.38,6.42,6.7700000000000005,357.04,357.1,357.17,357.26,357.42,357.64,358.07,358.55,2.45,28.150000000000002,27.86,27.71,27.53,27.35,27.18,27.02,26.87,26.72,N/A,N/A +2012,6,22,10,30,101210,100070,98960,74.18,0,5.98,6.4,6.45,6.45,6.45,6.43,6.41,6.38,6.37,357.61,357.87,358.06,358.26,358.5,358.76,359.15000000000003,359.55,1.46,27.830000000000002,27.53,27.36,27.18,27,26.830000000000002,26.66,26.5,26.240000000000002,N/A,N/A +2012,6,22,11,30,101220,100070,98960,70.35000000000001,0,6.32,6.75,6.8,6.8100000000000005,6.8100000000000005,6.8,6.8100000000000005,6.82,7.07,4.9,4.96,5.0200000000000005,5.13,5.3100000000000005,5.55,6.13,6.76,11.39,27.72,27.41,27.25,27.07,26.900000000000002,26.740000000000002,26.580000000000002,26.44,26.34,N/A,N/A +2012,6,22,12,30,101230,100080,98960,71.54,0,7.65,8.2,8.28,8.28,8.27,8.25,8.23,8.22,8.32,6.84,7.0200000000000005,7.11,7.23,7.42,7.62,7.97,8.34,10.33,27.32,26.98,26.82,26.63,26.46,26.3,26.14,25.990000000000002,25.8,N/A,N/A +2012,6,22,13,30,101220,100070,98960,73.68,0,6.91,7.4,7.48,7.51,7.5200000000000005,7.53,7.53,7.54,7.68,17.53,17.79,17.96,18.150000000000002,18.37,18.6,18.92,19.240000000000002,20.73,27.07,26.71,26.54,26.35,26.17,26,25.830000000000002,25.66,25.41,N/A,N/A +2012,6,22,14,30,101240,100090,98970,74.25,0,6.4,6.8,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.84,6.8500000000000005,6.86,7.26,21.16,21.63,21.97,22.37,22.88,23.45,24.5,25.61,32.96,26.94,26.580000000000002,26.41,26.23,26.05,25.89,25.73,25.6,25.6,N/A,N/A +2012,6,22,15,30,101250,100100,98990,72.73,0,5.54,5.9,5.96,5.99,6.01,6.04,6.1000000000000005,6.18,6.93,30.64,31.080000000000002,31.37,31.73,32.19,32.71,33.68,34.730000000000004,41.18,27.34,27,26.84,26.66,26.490000000000002,26.32,26.17,26.03,26.060000000000002,N/A,N/A +2012,6,22,16,30,101260,100110,99000,71.38,0,4.48,4.75,4.8,4.82,4.84,4.86,4.9,4.95,5.39,32.83,33.3,33.59,33.93,34.31,34.75,35.410000000000004,36.1,39.37,27.73,27.41,27.25,27.060000000000002,26.88,26.71,26.53,26.37,26.2,N/A,N/A +2012,6,22,17,30,101240,100090,98980,68.82000000000001,0,3.5,3.75,3.81,3.86,3.93,4.0200000000000005,4.2,4.42,5.43,66.52,66.37,66.15,65.88,65.55,65.16,64.4,63.52,59.370000000000005,28.23,27.93,27.78,27.6,27.44,27.28,27.17,27.07,27.19,N/A,N/A +2012,6,22,18,30,101210,100060,98960,60.69,0,3.91,4.25,4.32,4.37,4.42,4.46,4.5,4.54,4.65,91.49,90.85000000000001,90.44,90.01,89.59,89.16,88.66,88.18,86.86,29.03,28.76,28.61,28.43,28.26,28.09,27.92,27.75,27.44,N/A,N/A +2012,6,22,19,30,101180,100030,98920,59.26,0,3.45,3.69,3.72,3.73,3.74,3.74,3.74,3.75,3.7600000000000002,114.52,114.10000000000001,113.78,113.45,113.12,112.79,112.4,112.02,110.99000000000001,29.05,28.76,28.6,28.41,28.22,28.04,27.85,27.67,27.310000000000002,N/A,N/A +2012,6,22,20,30,101120,99980,98870,55.800000000000004,0,2.43,2.6,2.63,2.65,2.66,2.67,2.67,2.68,2.69,126.52,125.51,124.84,124.18,123.55,122.94,122.28,121.63,120.15,29.35,29.080000000000002,28.92,28.73,28.55,28.37,28.18,28,27.63,N/A,N/A +2012,6,22,21,30,101070,99920,98820,56.26,0,1.2,1.25,1.23,1.22,1.21,1.19,1.18,1.17,1.1500000000000001,160.98,159.43,158.51,157.54,156.54,155.51,154.26,153.04,149.89000000000001,29.26,28.97,28.8,28.61,28.42,28.240000000000002,28.04,27.86,27.490000000000002,N/A,N/A +2012,6,22,22,30,101040,99900,98790,57.68,0,2.16,2.2600000000000002,2.25,2.23,2.22,2.2,2.18,2.17,2.13,166.8,166.06,165.54,164.95000000000002,164.31,163.64000000000001,162.76,161.88,159.24,29.13,28.830000000000002,28.66,28.47,28.29,28.1,27.91,27.73,27.37,N/A,N/A +2012,6,22,23,30,101020,99870,98770,58.26,0,1.6,1.6400000000000001,1.61,1.58,1.55,1.51,1.47,1.43,1.32,210.08,209.51,208.9,208.19,207.33,206.4,204.98000000000002,203.55,197.91,29.01,28.740000000000002,28.580000000000002,28.39,28.21,28.03,27.84,27.66,27.310000000000002,N/A,N/A +2012,6,23,0,30,101000,99860,98750,59.28,0,1.17,1.23,1.23,1.23,1.23,1.22,1.22,1.22,1.22,168.3,167.12,166.39000000000001,165.66,164.9,164.12,163.16,162.21,159.16,28.87,28.59,28.43,28.240000000000002,28.05,27.87,27.68,27.5,27.13,N/A,N/A +2012,6,23,1,30,100970,99830,98720,61.96,0,1.44,1.5,1.5,1.49,1.48,1.47,1.45,1.44,1.42,186.85,186.77,186.64000000000001,186.42000000000002,186.13,185.78,185.09,184.36,179.24,28.61,28.34,28.18,27.990000000000002,27.810000000000002,27.63,27.44,27.26,26.91,N/A,N/A +2012,6,23,2,30,100960,99820,98710,63.27,0,1.04,1.03,0.99,0.91,0.74,0.56,0.8200000000000001,1.45,1.87,241.15,240.44,239.28,237.15,222.93,205.84,175.04,117.68,105.31,28.46,28.21,28.060000000000002,27.900000000000002,27.79,27.7,27.72,27.79,27.55,N/A,N/A +2012,6,23,3,30,100970,99820,98720,62.910000000000004,0,1.95,1.96,1.8900000000000001,1.79,1.61,1.4000000000000001,1.46,1.6,1.94,311.52,313.90000000000003,315.88,318.85,328.08,340.13,7.67,41.32,51.21,28.48,28.23,28.09,27.93,27.82,27.73,27.73,27.76,27.68,N/A,N/A +2012,6,23,4,30,100970,99830,98720,63.4,0,1.34,1.36,1.34,1.32,1.37,1.49,1.75,2.09,2.47,338.62,342.06,345.05,349.53000000000003,2.25,21.2,35.78,49.64,56.86,28.5,28.25,28.11,27.95,27.88,27.86,27.830000000000002,27.8,27.69,N/A,N/A +2012,6,23,5,30,100960,99820,98710,63.92,0,1.31,1.4000000000000001,1.43,1.46,1.5,1.56,1.77,2.05,2.7800000000000002,46.72,48.27,49.13,50.29,52.01,54.17,59.160000000000004,65.45,75.52,28.490000000000002,28.22,28.07,27.900000000000002,27.73,27.580000000000002,27.47,27.38,27.37,N/A,N/A +2012,6,23,6,30,100990,99850,98740,64.45,0,1.93,2.04,2.05,2.06,2.08,2.1,2.18,2.2800000000000002,2.88,39.730000000000004,40.09,40.61,41.28,42.31,43.6,46.94,50.89,64.62,28.55,28.26,28.11,27.92,27.75,27.6,27.490000000000002,27.400000000000002,27.52,N/A,N/A +2012,6,23,7,30,100990,99850,98740,65.36,0,2.27,2.4,2.4,2.4,2.4,2.4,2.57,2.79,3.25,23.990000000000002,24.94,25.53,26.3,27.400000000000002,28.72,34.9,42.77,49.86,28.61,28.330000000000002,28.17,27.990000000000002,27.830000000000002,27.67,27.650000000000002,27.67,27.82,N/A,N/A +2012,6,23,8,30,101000,99860,98750,65.85,0,2.4,2.5300000000000002,2.54,2.5300000000000002,2.5300000000000002,2.52,2.52,2.52,2.72,11.85,12.540000000000001,12.98,13.52,14.18,14.94,16.21,17.56,27.86,28.68,28.400000000000002,28.240000000000002,28.05,27.88,27.71,27.54,27.39,27.3,N/A,N/A +2012,6,23,9,30,101010,99870,98760,67.57000000000001,0,3.25,3.45,3.47,3.47,3.46,3.46,3.45,3.44,3.42,10.33,10.57,10.73,10.9,11.09,11.3,11.59,11.88,12.99,28.63,28.34,28.18,27.990000000000002,27.810000000000002,27.63,27.45,27.27,26.95,N/A,N/A +2012,6,23,10,30,101020,99880,98770,65.72,0,4.76,5.04,5.05,5.03,5,4.97,4.92,4.87,4.75,358.51,358.42,358.37,358.32,358.29,358.27,358.3,358.35,359.42,28.34,28.04,27.88,27.7,27.52,27.35,27.18,27.02,26.79,N/A,N/A +2012,6,23,11,30,101020,99870,98770,69.34,0,5.15,5.4,5.4,5.36,5.33,5.29,5.3,5.32,5.38,4.71,5.0600000000000005,5.3100000000000005,5.61,6.0600000000000005,6.59,8.23,10.07,18.79,27.63,27.3,27.14,26.97,26.82,26.68,26.67,26.69,27.36,N/A,N/A +2012,6,23,12,30,101060,99910,98800,72.10000000000001,0,5.0600000000000005,5.34,5.37,5.37,5.3500000000000005,5.33,5.3100000000000005,5.29,5.29,23.79,24.2,24.46,24.76,25.1,25.46,25.96,26.46,28.86,27.48,27.13,26.96,26.78,26.59,26.42,26.240000000000002,26.07,25.810000000000002,N/A,N/A +2012,6,23,13,30,101080,99940,98830,75.61,0,5.47,5.75,5.76,5.73,5.7,5.66,5.6000000000000005,5.55,5.4,19.42,20.150000000000002,20.53,20.96,21.46,22.01,22.86,23.72,28.900000000000002,27.28,26.92,26.740000000000002,26.560000000000002,26.38,26.2,26.02,25.86,25.66,N/A,N/A +2012,6,23,14,30,101080,99930,98820,78.53,0,5.39,5.7,5.73,5.72,5.71,5.69,5.68,5.67,5.86,32.12,32.84,33.26,33.72,34.26,34.84,35.75,36.68,44.2,27.47,27.12,26.95,26.76,26.580000000000002,26.41,26.240000000000002,26.09,26.14,N/A,N/A +2012,6,23,15,30,101110,99960,98850,83,0,5.33,5.69,5.76,5.79,5.8100000000000005,5.83,5.8500000000000005,5.87,5.96,47.7,48.35,48.7,49.09,49.480000000000004,49.88,50.410000000000004,50.93,52.660000000000004,27.8,27.45,27.27,27.080000000000002,26.89,26.71,26.52,26.34,25.98,N/A,N/A +2012,6,23,16,30,101130,99990,98890,83.21000000000001,0,5.5200000000000005,5.97,6.05,6.11,6.140000000000001,6.17,6.19,6.21,6.24,56.33,56.64,56.83,57,57.160000000000004,57.32,57.47,57.61,57.94,28.28,27.93,27.76,27.560000000000002,27.37,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A +2012,6,23,17,30,101130,99990,98880,82.76,0,6.2700000000000005,6.79,6.9,6.96,7,7.03,7.0600000000000005,7.08,7.11,69.73,69.9,69.89,69.88,69.87,69.85000000000001,69.83,69.81,69.76,28.41,28.080000000000002,27.91,27.71,27.53,27.34,27.150000000000002,26.97,26.61,N/A,N/A +2012,6,23,18,30,101140,100000,98900,79.10000000000001,0,5.3100000000000005,5.7700000000000005,5.87,5.94,6,6.05,6.1000000000000005,6.15,6.2700000000000005,98.63,98.23,98.01,97.77,97.52,97.27,96.97,96.68,95.92,28.59,28.27,28.1,27.91,27.73,27.55,27.36,27.19,26.84,N/A,N/A +2012,6,23,19,30,101100,99960,98850,79.49,0,5.69,6.13,6.22,6.26,6.29,6.3100000000000005,6.32,6.33,6.36,105.96000000000001,105.62,105.42,105.19,104.97,104.74000000000001,104.46000000000001,104.18,103.41,28.580000000000002,28.25,28.080000000000002,27.89,27.71,27.53,27.34,27.16,26.810000000000002,N/A,N/A +2012,6,23,20,30,101080,99940,98840,77.95,0,4.88,5.25,5.32,5.3500000000000005,5.37,5.39,5.4,5.41,5.44,114.04,113.7,113.51,113.3,113.09,112.88,112.63,112.38,111.74000000000001,28.71,28.39,28.23,28.04,27.85,27.67,27.48,27.3,26.94,N/A,N/A +2012,6,23,21,30,101050,99910,98800,79,0,4.65,5,5.0600000000000005,5.09,5.11,5.12,5.13,5.14,5.15,125.32000000000001,124.96000000000001,124.76,124.56,124.34,124.12,123.87,123.63000000000001,122.97,28.68,28.36,28.19,27.990000000000002,27.810000000000002,27.62,27.43,27.25,26.88,N/A,N/A +2012,6,23,22,30,101060,99910,98810,80.24,0,6.22,6.76,6.86,6.91,6.94,6.96,6.96,6.97,6.97,121.63,121.39,121.25,121.11,120.98,120.85000000000001,120.71000000000001,120.57000000000001,120.26,28.66,28.35,28.18,27.990000000000002,27.8,27.62,27.43,27.240000000000002,26.87,N/A,N/A +2012,6,23,23,30,101080,99940,98840,79.69,0,4.45,4.8,4.87,4.9,4.92,4.93,4.94,4.95,4.96,122.37,122.25,122.19,122.09,121.98,121.85000000000001,121.69,121.52,121.05,28.6,28.3,28.14,27.95,27.76,27.580000000000002,27.39,27.21,26.84,N/A,N/A +2012,6,24,0,30,101070,99930,98830,80.99,0,4.8100000000000005,5.18,5.25,5.28,5.3,5.3100000000000005,5.32,5.32,5.33,122.42,122.56,122.51,122.44,122.36,122.27,122.16,122.05,121.74000000000001,28.51,28.2,28.04,27.85,27.66,27.47,27.28,27.1,26.73,N/A,N/A +2012,6,24,1,30,101090,99940,98840,79.78,0,2.58,2.79,2.83,2.86,2.88,2.91,2.92,2.94,2.98,108.96000000000001,109.24000000000001,109.3,109.34,109.37,109.39,109.41,109.42,109.44,28.48,28.18,28.01,27.82,27.63,27.44,27.25,27.07,26.69,N/A,N/A +2012,6,24,2,30,101100,99950,98850,80.31,0,3.19,3.4,3.43,3.45,3.46,3.48,3.49,3.5100000000000002,3.5500000000000003,114.25,113.74000000000001,113.55,113.35000000000001,113.15,112.95,112.75,112.55,112.10000000000001,28.44,28.13,27.97,27.77,27.59,27.400000000000002,27.21,27.03,26.67,N/A,N/A +2012,6,24,3,30,101090,99950,98840,80.36,0,2.56,2.71,2.74,2.7600000000000002,2.77,2.79,2.81,2.83,2.89,123.08,122.94,122.8,122.64,122.48,122.34,122.17,122.01,121.64,28.41,28.1,27.93,27.740000000000002,27.55,27.37,27.18,27,26.64,N/A,N/A +2012,6,24,4,30,101080,99940,98840,77.94,0,3,3.14,3.15,3.13,3.11,3.09,3.06,3.04,2.98,136.3,136.03,135.77,135.51,135.23,134.93,134.56,134.21,133.15,28.51,28.21,28.04,27.85,27.67,27.48,27.29,27.11,26.75,N/A,N/A +2012,6,24,5,30,101110,99960,98860,79.4,0,1.72,1.8,1.8,1.8,1.79,1.79,1.78,1.77,1.75,137.93,137.58,137.31,137.02,136.72,136.41,136.02,135.63,134.47,28.330000000000002,28.01,27.84,27.650000000000002,27.46,27.28,27.080000000000002,26.900000000000002,26.53,N/A,N/A +2012,6,24,6,30,101120,99980,98870,79.28,0,2.09,2.19,2.19,2.19,2.18,2.18,2.17,2.16,2.15,156.48,156.22,156,155.76,155.5,155.22,154.83,154.43,153.06,28.29,27.98,27.810000000000002,27.62,27.43,27.25,27.060000000000002,26.88,26.51,N/A,N/A +2012,6,24,7,30,101170,100020,98920,79.35000000000001,0,1.26,1.3,1.3,1.29,1.28,1.28,1.26,1.25,1.23,179.36,179.21,179,178.77,178.53,178.29,177.98,177.69,177.06,28.26,27.95,27.78,27.59,27.400000000000002,27.21,27.02,26.84,26.46,N/A,N/A +2012,6,24,8,30,101160,100020,98910,79.77,0,1.25,1.29,1.28,1.27,1.26,1.25,1.23,1.21,1.1400000000000001,247.84,248.28,248.47,248.67000000000002,248.84,249.01000000000002,249.22,249.42000000000002,249.76000000000002,28.19,27.88,27.71,27.52,27.330000000000002,27.150000000000002,26.96,26.78,26.41,N/A,N/A +2012,6,24,9,30,101180,100030,98930,80.61,0,1.95,2.02,2.02,2.0100000000000002,1.99,1.97,1.95,1.92,1.81,288.39,288.88,289.16,289.48,289.84000000000003,290.23,290.82,291.44,294.81,28.17,27.86,27.69,27.5,27.310000000000002,27.13,26.94,26.76,26.42,N/A,N/A +2012,6,24,10,30,101200,100060,98950,81.79,0,2.19,2.27,2.27,2.2600000000000002,2.25,2.23,2.21,2.19,2.1,293.67,294.23,294.5,294.81,295.15000000000003,295.52,296.04,296.57,298.72,28.150000000000002,27.830000000000002,27.66,27.47,27.28,27.1,26.91,26.73,26.37,N/A,N/A +2012,6,24,11,30,101220,100070,98960,83.07000000000001,0,2.48,2.59,2.6,2.6,2.59,2.58,2.57,2.56,2.54,319.16,319.71,319.95,320.22,320.51,320.81,321.2,321.6,323.06,28.11,27.79,27.62,27.43,27.25,27.060000000000002,26.87,26.69,26.32,N/A,N/A +2012,6,24,12,30,101240,100100,98990,86.52,0,3.14,3.3200000000000003,3.35,3.36,3.37,3.37,3.37,3.37,3.37,331.29,331.84000000000003,332.15000000000003,332.48,332.81,333.15000000000003,333.58,334,335.26,28,27.67,27.5,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.19,N/A,N/A +2012,6,24,13,30,101280,100140,99030,87.97,0,3.81,4.0200000000000005,4.05,4.05,4.05,4.04,4.04,4.03,4.04,333.37,333.75,334.04,334.35,334.68,335.02,335.43,335.84000000000003,337.16,28,27.67,27.5,27.3,27.12,26.93,26.740000000000002,26.560000000000002,26.21,N/A,N/A +2012,6,24,14,30,101290,100150,99040,83.76,0,4.4,4.75,4.82,4.87,4.9,4.92,4.94,4.96,5.01,344.55,344.67,344.72,344.77,344.82,344.88,344.95,345.03000000000003,345.23,28.5,28.19,28.02,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.72,N/A,N/A +2012,6,24,15,30,101280,100140,99030,80.57000000000001,0,4.5,4.87,4.94,4.98,5.0200000000000005,5.04,5.08,5.11,5.22,336.85,337.15000000000003,337.33,337.52,337.71,337.89,338.1,338.32,338.97,28.900000000000002,28.61,28.44,28.25,28.07,27.89,27.7,27.52,27.16,N/A,N/A +2012,6,24,16,30,101270,100130,99030,77.49,0,4.8100000000000005,5.23,5.3100000000000005,5.3500000000000005,5.38,5.41,5.44,5.47,5.58,331.79,332.68,333.26,333.91,334.55,335.21,336,336.79,339.13,29.55,29.310000000000002,29.16,28.98,28.810000000000002,28.64,28.46,28.3,27.97,N/A,N/A +2012,6,24,17,30,101230,100100,99000,77.33,0,3.64,3.9,4.14,4.72,5.09,5.26,5.43,5.59,5.86,321.82,323.27,325.56,330.33,333.66,335.71,337.85,339.98,343.91,29.93,29.73,29.68,29.72,29.69,29.61,29.52,29.42,29.21,N/A,N/A +2012,6,24,18,30,101200,100070,98970,77.15,0,2.48,3.13,3.45,3.72,3.92,4.05,4.11,4.13,4.12,300.85,310.16,315.27,318.83,322.15000000000003,325.38,328.57,331.59000000000003,337.43,30.43,30.59,30.66,30.66,30.62,30.55,30.44,30.32,30.060000000000002,N/A,N/A +2012,6,24,19,30,101160,100030,98930,73.66,0,1.9100000000000001,2.4,2.63,2.84,2.96,3.02,3.0100000000000002,2.98,2.83,292.7,301.64,306.82,311.58,315.32,318.28000000000003,320.81,322.98,326.67,31.01,31.240000000000002,31.32,31.29,31.2,31.060000000000002,30.91,30.75,30.42,N/A,N/A +2012,6,24,20,30,101110,99980,98880,70,0,1.94,1.69,1.48,1.24,1.08,0.97,0.89,0.84,0.79,191.48000000000002,195.24,198.33,202.54,206.34,210.03,215.12,220.45000000000002,234.77,31.46,31.71,31.78,31.71,31.6,31.48,31.330000000000002,31.19,30.88,N/A,N/A +2012,6,24,21,30,101090,99960,98870,69.43,0,2.79,2.7,2.43,2,1.74,1.57,1.41,1.28,1.05,176.20000000000002,174.78,171.99,166.5,164.55,164.75,167.75,171.58,186.65,31.470000000000002,31.34,31.36,31.53,31.55,31.45,31.32,31.19,30.900000000000002,N/A,N/A +2012,6,24,22,30,101030,99910,98810,69.84,0,3.5100000000000002,3.43,3.14,2.63,2.31,2.09,1.86,1.6600000000000001,1.2,174.46,171.94,168.75,163.13,162.3,164.73,167.12,169.22,174,31.48,31.45,31.54,31.830000000000002,31.92,31.84,31.740000000000002,31.64,31.43,N/A,N/A +2012,6,24,23,30,100990,99860,98770,75.55,0,3.74,3.67,3.39,2.9,2.48,2.09,1.76,1.49,0.99,201.5,198.67000000000002,195.94,191.46,187.82,184.70000000000002,183.61,183.45000000000002,192,30.96,31.07,31.2,31.46,31.67,31.87,31.91,31.86,31.66,N/A,N/A +2012,6,25,0,30,100980,99850,98760,77.59,0,3.66,4.2,4.01,3.27,2.7600000000000002,2.37,2.0100000000000002,1.71,1.22,206.94,204.68,201.67000000000002,196.71,194.5,193.99,196.53,199.9,216.28,30.57,30.85,31.060000000000002,31.400000000000002,31.63,31.79,31.86,31.87,31.740000000000002,N/A,N/A +2012,6,25,1,30,100970,99840,98750,87.06,0,5.18,5.93,6.05,5.87,5.55,5.13,4.68,4.26,3.49,242.57,242.27,241.13,238.44,235.91,233.46,232.05,231.26,232.43,29.54,29.5,29.580000000000002,29.830000000000002,30.05,30.26,30.55,30.87,31.05,N/A,N/A +2012,6,25,2,30,100990,99860,98760,91.16,0,5.26,6.11,6.2700000000000005,6.12,5.84,5.46,5.08,4.73,4.14,258.9,258.78000000000003,258.26,257.07,257.08,258.04,260.16,262.62,270.76,28.96,28.89,29.02,29.400000000000002,29.72,30.02,30.21,30.36,30.59,N/A,N/A +2012,6,25,3,30,101010,99870,98780,90.53,0,5.44,6.22,6.45,6.55,6.41,6.07,5.78,5.53,5.18,268.6,268.14,268.39,269.6,271.93,275.13,279.24,283.42,293.31,28.810000000000002,28.67,28.810000000000002,29.3,29.64,29.89,30.060000000000002,30.19,30.32,N/A,N/A +2012,6,25,4,30,101000,99870,98770,80.39,0,5.36,6.11,6.44,6.91,7.08,7.01,6.88,6.72,6.41,275.02,275.14,275.49,276.41,280.14,286.2,289.84000000000003,292.16,297.22,29.45,29.42,29.52,29.810000000000002,30.240000000000002,30.79,30.92,30.85,30.63,N/A,N/A +2012,6,25,5,30,100990,99850,98760,78.02,0,5.68,6.45,6.7700000000000005,7.21,7.6000000000000005,7.97,7.87,7.59,7.07,282.73,282.98,283.34000000000003,284.13,286.07,289.02,291.39,293.28000000000003,297.95,29.53,29.48,29.52,29.68,30.080000000000002,30.67,30.84,30.82,30.72,N/A,N/A +2012,6,25,6,30,101010,99880,98780,78.68,0,5.69,6.68,7.11,7.55,7.79,7.86,7.76,7.58,7.19,285.44,286.05,286.6,287.47,289.15000000000003,291.54,294.15000000000003,296.68,301.1,29.42,29.44,29.57,29.900000000000002,30.16,30.39,30.55,30.68,30.650000000000002,N/A,N/A +2012,6,25,7,30,101000,99870,98770,78.29,0,6.22,6.91,7.32,8.09,8.58,8.81,8.73,8.53,8.120000000000001,290.67,290.78000000000003,290.86,291.02,292,293.66,295.74,297.84000000000003,301.23,29.29,29.18,29.23,29.45,29.78,30.21,30.400000000000002,30.490000000000002,30.34,N/A,N/A +2012,6,25,8,30,101020,99890,98790,79.09,0,6.57,7.12,7.37,7.86,8.44,9.11,9.35,9.38,8.84,289.55,289.88,290.22,290.85,291.53000000000003,292.29,293.98,295.93,298.25,29.14,28.93,28.84,28.79,28.92,29.2,29.61,30.060000000000002,30.13,N/A,N/A +2012,6,25,9,30,101010,99870,98780,78.58,0,6.69,7.26,7.5600000000000005,8.18,8.72,9.21,9.290000000000001,9.200000000000001,8.75,295.78000000000003,296.2,296.69,297.65000000000003,298.63,299.68,301.49,303.46,305.18,29.080000000000002,28.86,28.79,28.78,29.02,29.44,29.82,30.16,30.080000000000002,N/A,N/A +2012,6,25,10,30,101020,99880,98790,79.24,0,6.55,7.0600000000000005,7.3500000000000005,7.99,8.55,9.08,9.24,9.23,8.870000000000001,301.98,302.33,302.76,303.67,304.87,306.34000000000003,308.18,310.05,312.24,29.01,28.79,28.72,28.71,28.98,29.46,29.84,30.150000000000002,30.150000000000002,N/A,N/A +2012,6,25,11,30,101040,99900,98810,80.34,0,6.390000000000001,6.890000000000001,7.03,7.23,7.72,8.46,8.91,9.200000000000001,9.31,313.27,313.78000000000003,314.26,315.07,316.65000000000003,318.95,320.88,322.51,325.39,28.85,28.580000000000002,28.45,28.32,28.34,28.48,28.73,29.03,29.310000000000002,N/A,N/A +2012,6,25,12,30,101060,99920,98820,84.24,0,6.55,7.03,7.1000000000000005,7.13,7.28,7.5200000000000005,8.01,8.6,9.3,319.71,320.21,320.59000000000003,321.1,322.04,323.36,324.26,324.95,325.09000000000003,28.71,28.43,28.28,28.12,28.02,27.96,28.150000000000002,28.44,29.32,N/A,N/A +2012,6,25,13,30,101060,99920,98820,76.25,0,6.5200000000000005,7.07,7.15,7.2,7.28,7.37,7.8500000000000005,8.48,9.08,321.74,321.88,322.01,322.18,322.41,322.69,323.56,324.64,327.45,29.16,28.91,28.77,28.61,28.46,28.330000000000002,28.35,28.44,29.23,N/A,N/A +2012,6,25,14,30,101070,99930,98830,70.9,0,6.5600000000000005,7.13,7.22,7.2700000000000005,7.32,7.37,7.54,7.76,8.370000000000001,331.05,331.07,331.06,331.04,331.02,330.98,330.93,330.89,331.08,29.54,29.34,29.21,29.05,28.91,28.76,28.66,28.59,28.7,N/A,N/A +2012,6,25,15,30,101060,99920,98820,67.65,0,6.37,6.91,7.01,7.08,7.21,7.38,7.6000000000000005,7.82,8.14,331.48,331.55,331.63,331.73,331.96,332.27,333.01,333.86,336.76,29.85,29.69,29.580000000000002,29.45,29.35,29.27,29.22,29.2,29.400000000000002,N/A,N/A +2012,6,25,16,30,101050,99920,98820,67.11,0,5.0600000000000005,5.92,6.26,6.5600000000000005,6.78,6.94,7.0600000000000005,7.16,7.33,325.18,327.07,328.41,330.04,331.76,333.6,335.47,337.24,341.05,30.22,30.3,30.330000000000002,30.330000000000002,30.3,30.25,30.19,30.11,30.04,N/A,N/A +2012,6,25,17,30,101010,99870,98780,59.18,0,4.72,5.49,5.8,6.15,6.43,6.67,6.73,6.71,6.54,318.38,319.95,321.22,322.91,324.74,326.71,329.19,331.68,334.97,31.34,31.46,31.48,31.48,31.45,31.41,31.310000000000002,31.19,30.830000000000002,N/A,N/A +2012,6,25,18,30,100930,99800,98710,58.22,0,4.91,5.66,5.91,6.13,6.34,6.54,6.6000000000000005,6.6000000000000005,6.62,297.51,300.33,302.90000000000003,306.94,311.09000000000003,315.48,317.36,318.04,321.43,31.79,32.01,32.08,32.15,32.15,32.09,31.92,31.73,31.44,N/A,N/A +2012,6,25,19,30,100880,99750,98670,57.76,0,4.84,5.98,6.3500000000000005,6.57,6.73,6.84,6.91,6.96,7.1000000000000005,289.37,294.08,297.29,301.09000000000003,304.48,307.67,309.27,310.13,313.11,32.39,32.87,32.99,32.980000000000004,32.89,32.74,32.56,32.37,32.05,N/A,N/A +2012,6,25,20,30,100810,99690,98610,59.96,0,4.67,6.09,6.59,6.88,7.07,7.17,7.2,7.21,7.21,293.97,299.29,302.61,305.86,308.41,310.42,311.86,312.96,315.55,32.78,33.45,33.63,33.6,33.51,33.37,33.2,33.03,32.74,N/A,N/A +2012,6,25,21,30,100750,99630,98550,67.36,0,2.5,4.37,5.33,5.9,6.26,6.43,6.53,6.58,6.66,271.85,289.77,300.01,304.34000000000003,307.42,309.42,311.2,312.79,315.86,32.42,33.31,33.67,33.9,33.980000000000004,33.94,33.83,33.68,33.37,N/A,N/A +2012,6,25,22,30,100700,99580,98500,64.17,0,3.33,5.22,5.97,6.22,6.38,6.47,6.5600000000000005,6.640000000000001,6.76,299.84000000000003,307.81,312.1,314.49,316.23,317.5,318.75,319.94,322.34000000000003,33.05,34.4,34.83,34.84,34.77,34.62,34.47,34.33,34.04,N/A,N/A +2012,6,25,23,30,100670,99560,98480,62.300000000000004,0,4.13,5.98,6.51,6.55,6.6000000000000005,6.66,6.76,6.88,6.99,303.41,311.77,315.61,316.54,317.39,318.24,319.62,321.3,325.01,33.6,35.32,35.78,35.63,35.45,35.25,35.06,34.89,34.58,N/A,N/A +2012,6,26,0,30,100650,99540,98460,61.84,0,5.09,6.47,6.6000000000000005,6.2,5.9,5.65,5.42,5.22,5.01,313.05,321.01,325.69,329.86,331.98,332.65000000000003,333.57,334.58,338.46,33.46,35.230000000000004,35.76,35.730000000000004,35.65,35.550000000000004,35.43,35.32,35.06,N/A,N/A +2012,6,26,1,30,100680,99550,98470,82.81,0,4.9,5.68,5.58,4.92,4.91,5.39,6,6.7,8.03,261.03000000000003,266.91,279.92,306.23,321.6,331.58,338.5,343.73,350.22,30.21,30.67,31.19,32.11,32.7,33.03,33.3,33.53,33.88,N/A,N/A +2012,6,26,2,30,100670,99550,98470,74.76,0,2.13,4.2700000000000005,5.41,6.66,7.67,8.44,8.950000000000001,9.290000000000001,9.5,312.39,342.03000000000003,357.36,2.35,5.94,8.14,9.57,10.55,10.81,31.86,33.02,33.480000000000004,33.94,34.37,34.800000000000004,35.07,35.26,35.15,N/A,N/A +2012,6,26,3,30,100680,99560,98490,70.63,0,3.1,5.84,7.13,8.02,8.55,8.76,8.8,8.76,8.61,356.85,7.42,13.24,16.080000000000002,17.6,17.92,17.31,16.28,14.47,31.53,33.44,34.28,34.95,35.34,35.5,35.52,35.480000000000004,35.08,N/A,N/A +2012,6,26,4,30,100670,99540,98470,71.25,0,3.65,3.88,4.03,4.63,5.25,5.89,6.45,6.95,7.2700000000000005,292.14,335.26,352.15000000000003,0.29,6.16,10.43,13.49,15.85,16.84,30.92,31.77,32.21,32.71,33.24,33.78,34.26,34.69,34.75,N/A,N/A +2012,6,26,5,30,100670,99540,98460,74.52,0,2.21,2.73,2.97,3.42,3.87,4.3100000000000005,4.7,5.0600000000000005,5.48,302.37,325.21,337.6,348.7,356.92,2.87,6.92,9.92,13.120000000000001,30.400000000000002,31.34,31.900000000000002,32.56,33.14,33.67,34.05,34.34,34.49,N/A,N/A +2012,6,26,6,30,100670,99540,98460,72.88,0,2.37,1.84,1.6600000000000001,1.6400000000000001,1.79,2.11,2.49,2.93,3.74,281.12,297.83,309.93,328.22,342.05,354.66,2.48,8.2,13.700000000000001,30.22,31.060000000000002,31.44,31.67,31.91,32.17,32.45,32.72,33.12,N/A,N/A +2012,6,26,7,30,100690,99560,98470,80.39,0,3.79,3.9,3.83,3.73,3.68,3.66,3.73,3.8200000000000003,4.16,298.91,308.66,314.31,320.36,326.36,332.56,339.05,345.43,357.19,29.66,30.310000000000002,30.6,30.76,30.900000000000002,31,31.16,31.330000000000002,31.720000000000002,N/A,N/A +2012,6,26,8,30,100690,99560,98470,78.7,0,3.54,4.0600000000000005,4.25,4.41,4.42,4.32,4.25,4.19,4.3,305.65000000000003,306.17,307.41,310.09000000000003,312.98,315.99,320.03000000000003,324.21,333.84000000000003,29.7,29.78,29.900000000000002,30.09,30.26,30.400000000000002,30.580000000000002,30.77,31.080000000000002,N/A,N/A +2012,6,26,9,30,100690,99560,98470,78.18,0,3.54,4.12,4.32,4.43,4.46,4.42,4.39,4.37,4.32,308.24,311.05,313.49,317,320.54,324.1,328.16,332.15000000000003,340.09000000000003,29.650000000000002,29.87,30.060000000000002,30.310000000000002,30.6,30.91,31.220000000000002,31.5,31.79,N/A,N/A +2012,6,26,10,30,100690,99560,98470,77.76,0,3.92,4.09,4.21,4.53,4.8,5.0200000000000005,5.03,4.95,4.5600000000000005,327.36,327.57,328.46,330.59000000000003,333.01,335.71,338.05,340.04,341.66,29.61,29.43,29.48,29.73,30.16,30.72,31.19,31.580000000000002,32.02,N/A,N/A +2012,6,26,11,30,100730,99590,98500,78.12,0,3.79,4,4.0600000000000005,4.18,4.32,4.48,4.51,4.49,4.38,335.82,335.79,335.64,335.31,336.36,338.44,342.04,345.97,352.81,29.54,29.32,29.23,29.150000000000002,29.35,29.740000000000002,30.25,30.79,31.51,N/A,N/A +2012,6,26,12,30,100750,99620,98530,77.59,0,2.81,2.95,2.96,2.96,3.0300000000000002,3.15,3.23,3.2800000000000002,3.29,348.82,348.85,348.84000000000003,348.83,349.82,351.55,355.69,0.52,8.52,29.37,29.11,28.98,28.84,28.89,29.07,29.53,30.07,30.82,N/A,N/A +2012,6,26,13,30,100780,99650,98550,71.43,0,3.67,3.8000000000000003,3.7600000000000002,3.7,3.64,3.56,3.47,3.39,3.44,351.79,352.12,352.47,353.06,353.91,354.96,357,359.23,6.16,29.35,29.11,29.02,28.96,29.2,29.68,30.09,30.46,31.02,N/A,N/A +2012,6,26,14,30,100800,99670,98570,72.96000000000001,0,3.2,3.34,3.33,3.34,3.4,3.49,3.42,3.3000000000000003,3.29,2.2600000000000002,2.33,2.5,2.79,3.8200000000000003,5.42,7.86,10.33,13.82,29.330000000000002,29.09,29.02,29.02,29.400000000000002,30.060000000000002,30.42,30.650000000000002,30.87,N/A,N/A +2012,6,26,15,30,100810,99680,98590,69.10000000000001,0,2.5100000000000002,2.68,2.8000000000000003,3.06,3.16,3.14,3.15,3.18,3.2,341.78000000000003,342.40000000000003,344.55,349.63,354.52,359.08,2.69,5.73,13.34,29.91,29.82,30.03,30.6,30.96,31.17,31.35,31.490000000000002,31.76,N/A,N/A +2012,6,26,16,30,100800,99670,98580,65.76,0,1.97,2.05,2.16,2.47,2.68,2.81,2.91,3,3.22,356.17,356.87,358.95,3.93,8.67,13.120000000000001,17.18,20.86,25.97,30.490000000000002,30.310000000000002,30.44,30.87,31.150000000000002,31.34,31.43,31.48,31.57,N/A,N/A +2012,6,26,17,30,100800,99670,98580,63.22,0,0.65,0.73,0.88,1.35,1.75,2.04,2.29,2.52,2.88,48.46,42.08,38.730000000000004,34.52,31.400000000000002,29.92,29.16,28.77,28.63,30.94,30.84,31.01,31.580000000000002,31.88,32.01,32.06,32.07,32.06,N/A,N/A +2012,6,26,18,30,100760,99640,98550,61.9,0,1.93,1.92,1.92,2.0300000000000002,2.1,2.15,2.17,2.19,2.12,133.86,126.56,118.57000000000001,104.46000000000001,94.51,87.49,81.86,77.12,69.53,31.3,31.41,31.69,32.27,32.55,32.64,32.660000000000004,32.64,32.56,N/A,N/A +2012,6,26,19,30,100760,99630,98540,66.35,0,3.31,3.4,3.38,3.4,3.31,3.14,2.92,2.69,2.44,155.62,153.99,150.39000000000001,141.81,135.95,132.13,130.98,131.08,134.27,31.220000000000002,31.04,31.13,31.54,31.91,32.26,32.4,32.44,32.39,N/A,N/A +2012,6,26,20,30,100710,99590,98500,66.33,0,3.81,3.98,3.95,3.93,3.7600000000000002,3.47,3.3200000000000003,3.24,3.17,158.39000000000001,157.52,155.75,151.57,149.68,149.53,150.92000000000002,152.85,154.66,31.45,31.29,31.38,31.8,32.160000000000004,32.5,32.57,32.52,32.39,N/A,N/A +2012,6,26,21,30,100680,99550,98470,66.51,0,4.49,4.68,4.63,4.55,4.37,4.11,3.93,3.79,3.52,167.48,167.16,166.72,165.82,164.53,162.95000000000002,163.75,165.41,168.04,31.57,31.41,31.41,31.55,31.87,32.33,32.47,32.46,32.34,N/A,N/A +2012,6,26,22,30,100670,99540,98460,69.67,0,4,4.3100000000000005,4.34,4.32,4.18,3.96,3.7800000000000002,3.65,3.42,178.95000000000002,178.44,177.69,176.04,175.15,174.85,175.86,177.38,180.24,31.310000000000002,31.29,31.39,31.7,32.04,32.42,32.56,32.57,32.46,N/A,N/A +2012,6,26,23,30,100610,99480,98400,73.13,0,5.19,5.91,6.0200000000000005,5.98,5.7700000000000005,5.48,5.28,5.12,4.86,173.86,173.88,173.16,171.57,170.67000000000002,170.23,171.03,172.23,174.89000000000001,30.970000000000002,31.12,31.400000000000002,31.96,32.37,32.69,32.76,32.730000000000004,32.63,N/A,N/A +2012,6,27,0,30,100670,99540,98450,76.12,0,4.58,5.38,5.62,5.68,5.57,5.2700000000000005,5.0600000000000005,4.9,4.74,194.12,194.16,193.52,191.57,190.1,188.99,189.67000000000002,191.31,195.44,30.57,30.67,30.93,31.68,32.19,32.52,32.64,32.63,32.54,N/A,N/A +2012,6,27,1,30,100740,99610,98520,81.34,0,8.22,9.27,9.540000000000001,9.75,9.89,9.98,10.01,9.99,9.83,260.79,261.33,261.31,261.23,261.04,260.75,260.19,259.5,257.53000000000003,30.04,29.86,29.740000000000002,29.59,29.44,29.29,29.13,28.98,28.76,N/A,N/A +2012,6,27,2,30,100700,99570,98480,73.45,0,4.2,5.22,5.73,6.22,6.59,6.84,6.92,6.92,6.87,259.05,259.72,260.27,260.79,261.34000000000003,261.92,262.77,263.68,265.05,30,30.38,30.63,30.92,31.09,31.17,31.16,31.11,30.93,N/A,N/A +2012,6,27,3,30,100740,99610,98520,75.08,0,3.06,3.89,4.33,4.74,5.05,5.28,5.43,5.5200000000000005,5.33,243.55,244.65,245.17000000000002,245,244.81,244.58,244.98000000000002,245.70000000000002,248.88,30.09,30.990000000000002,31.470000000000002,31.85,32.07,32.15,32.17,32.160000000000004,32.03,N/A,N/A +2012,6,27,4,30,100750,99620,98530,83.22,0,1.51,1.99,2.22,2.41,2.57,2.71,2.88,3.0500000000000003,3.46,276.98,272.88,269.23,263.88,258.14,251.95000000000002,246.62,241.8,236.66,29.560000000000002,30.19,30.52,30.79,31.07,31.35,31.61,31.86,32.08,N/A,N/A +2012,6,27,5,30,100760,99630,98540,80.79,0,1.1300000000000001,1.53,1.73,1.86,1.95,2.0100000000000002,2.14,2.2800000000000002,2.5100000000000002,237.24,241.8,243.09,240.95000000000002,237.5,232.77,228.43,224.3,221.44,29.71,30.490000000000002,30.85,31.04,31.17,31.25,31.42,31.61,31.84,N/A,N/A +2012,6,27,6,30,100800,99670,98580,82.43,0,0.75,1.07,1.28,1.52,1.7,1.83,1.9100000000000001,1.96,2,254.43,248.07,245.52,247.14000000000001,247.99,248.08,247.22,245.9,241.98000000000002,29.69,30.330000000000002,30.68,30.96,31.1,31.150000000000002,31.17,31.19,31.18,N/A,N/A +2012,6,27,7,30,100820,99690,98600,75.7,0,1.3800000000000001,1.68,1.76,1.73,1.69,1.6400000000000001,1.6400000000000001,1.67,1.81,180.69,192.75,200.81,209.25,216.12,222.02,226.82,230.97,237.16,30.21,31.12,31.51,31.67,31.740000000000002,31.76,31.77,31.76,31.720000000000002,N/A,N/A +2012,6,27,8,30,100860,99730,98640,80.07000000000001,0,1.3900000000000001,1.72,1.84,1.85,1.77,1.62,1.46,1.31,1.1400000000000001,166.09,174.64000000000001,180.47,187.39000000000001,193.62,199.17000000000002,206.37,213.41,231.46,29.98,30.580000000000002,30.88,31.04,31.14,31.19,31.21,31.23,31.16,N/A,N/A +2012,6,27,9,30,100910,99770,98680,76.39,0,1.55,1.58,1.61,1.73,1.8,1.82,1.74,1.6300000000000001,1.31,177.03,176.65,178.37,183.37,188.12,192.72,197.64000000000001,202.17000000000002,213.46,30.13,29.91,29.88,30,30.12,30.240000000000002,30.310000000000002,30.36,30.32,N/A,N/A +2012,6,27,10,30,100950,99810,98720,78.58,0,1.32,1.3800000000000001,1.37,1.36,1.3900000000000001,1.46,1.45,1.3900000000000001,1.1500000000000001,168.35,169.19,169.82,170.82,173.99,179.21,184.9,190.26,200.92000000000002,29.900000000000002,29.66,29.53,29.39,29.39,29.5,29.6,29.67,29.7,N/A,N/A +2012,6,27,11,30,100980,99850,98750,78.53,0,0.9500000000000001,0.99,0.98,0.96,0.98,1.02,0.97,0.89,0.62,198.38,198.47,198.8,199.39000000000001,201.97,206.47,212.43,218.21,236.91,29.8,29.54,29.400000000000002,29.23,29.2,29.26,29.330000000000002,29.41,29.45,N/A,N/A +2012,6,27,12,30,101060,99930,98830,76.56,0,1.28,1.35,1.35,1.34,1.33,1.33,1.29,1.23,1.06,152.9,152.68,152.74,152.81,152.87,152.9,152.42000000000002,151.74,138.6,29.86,29.6,29.46,29.29,29.13,28.990000000000002,28.94,28.93,29,N/A,N/A +2012,6,27,13,30,101110,99970,98870,76.16,0,2,2.13,2.14,2.14,2.15,2.15,2.15,2.15,2.18,147.28,147.35,147.35,147.34,147.33,147.31,147.27,147.20000000000002,146.74,29.86,29.59,29.44,29.26,29.09,28.92,28.75,28.59,28.330000000000002,N/A,N/A +2012,6,27,14,30,101180,100040,98940,76.38,0,2.04,2.19,2.21,2.22,2.23,2.25,2.2600000000000002,2.2800000000000002,2.34,151.63,151.4,151.21,151.02,150.81,150.6,150.33,150.03,149.22,29.88,29.6,29.43,29.240000000000002,29.060000000000002,28.88,28.69,28.51,28.16,N/A,N/A +2012,6,27,15,30,101220,100080,98980,69.72,0,2.45,2.62,2.65,2.67,2.69,2.71,2.74,2.7800000000000002,2.94,152.75,152.68,152.62,152.53,152.42000000000002,152.28,152.04,151.77,150.31,30.26,29.990000000000002,29.830000000000002,29.650000000000002,29.47,29.3,29.13,28.96,28.68,N/A,N/A +2012,6,27,16,30,101260,100120,99020,71.41,0,2.7,2.88,2.91,2.92,2.94,2.95,2.96,2.97,2.99,165.53,165.09,164.83,164.55,164.27,163.98,163.64000000000001,163.28,162.36,30.22,29.92,29.76,29.57,29.39,29.2,29.02,28.84,28.48,N/A,N/A +2012,6,27,17,30,101280,100140,99040,70.83,0,2.39,2.5300000000000002,2.56,2.58,2.6,2.61,2.63,2.65,2.69,167.1,166.98,166.89000000000001,166.79,166.71,166.62,166.51,166.42000000000002,166.15,30.25,29.94,29.78,29.580000000000002,29.400000000000002,29.21,29.02,28.84,28.48,N/A,N/A +2012,6,27,18,30,101310,100170,99070,69.45,0,3.06,3.21,3.23,3.23,3.23,3.22,3.22,3.22,3.21,159.75,159.8,159.76,159.70000000000002,159.63,159.55,159.46,159.37,159.09,30.46,30.14,29.98,29.78,29.6,29.41,29.22,29.04,28.67,N/A,N/A +2012,6,27,19,30,101310,100180,99080,66.24,0,4.22,4.48,4.5,4.5,4.49,4.48,4.46,4.44,4.39,158.67000000000002,158.84,158.93,159.02,159.11,159.21,159.3,159.39000000000001,159.6,30.69,30.39,30.22,30.02,29.84,29.650000000000002,29.45,29.27,28.89,N/A,N/A +2012,6,27,20,30,101300,100160,99060,70.34,0,4.6000000000000005,4.94,4.98,5,5,4.99,4.98,4.97,4.94,155.83,155.86,155.92000000000002,155.97,156.01,156.03,156.06,156.08,156.09,30.53,30.23,30.060000000000002,29.87,29.68,29.490000000000002,29.3,29.12,28.75,N/A,N/A +2012,6,27,21,30,101300,100160,99060,71.35000000000001,0,4.88,5.25,5.29,5.3100000000000005,5.3,5.29,5.2700000000000005,5.25,5.19,156.59,156.61,156.68,156.77,156.87,156.97,157.1,157.23,157.54,30.400000000000002,30.13,29.97,29.78,29.59,29.41,29.21,29.03,28.66,N/A,N/A +2012,6,27,22,30,101270,100130,99030,73.95,0,4.69,5.07,5.14,5.17,5.19,5.21,5.23,5.25,5.32,157.72,157.77,157.77,157.76,157.75,157.72,157.68,157.63,157.47,30.23,29.97,29.810000000000002,29.63,29.45,29.27,29.09,28.92,28.59,N/A,N/A +2012,6,27,23,30,101270,100130,99030,77.81,0,4.83,5.21,5.2700000000000005,5.3,5.3100000000000005,5.32,5.32,5.32,5.33,153.66,153.8,153.88,153.93,153.97,154,154.02,154.03,154.05,29.990000000000002,29.73,29.580000000000002,29.39,29.21,29.04,28.85,28.68,28.330000000000002,N/A,N/A +2012,6,28,0,30,101280,100140,99040,81.01,0,4.43,4.83,4.91,4.97,5.0200000000000005,5.0600000000000005,5.12,5.17,5.3500000000000005,152.52,152.37,152.31,152.25,152.18,152.09,152,151.9,151.57,29.75,29.48,29.32,29.13,28.96,28.78,28.6,28.43,28.09,N/A,N/A +2012,6,28,1,30,101250,100110,99010,83.9,0,6.3,6.86,6.95,6.97,6.97,6.95,6.91,6.86,6.7,152.24,152.38,152.45000000000002,152.53,152.62,152.71,152.83,152.95000000000002,153.31,29.55,29.25,29.080000000000002,28.89,28.7,28.51,28.32,28.13,27.73,N/A,N/A +2012,6,28,2,30,101290,100160,99050,82.31,0,6.03,6.5600000000000005,6.66,6.71,6.75,6.78,6.83,6.87,7.07,158.94,158.85,158.74,158.59,158.42000000000002,158.23,157.99,157.73,156.87,29.59,29.310000000000002,29.150000000000002,28.97,28.79,28.62,28.44,28.28,27.990000000000002,N/A,N/A +2012,6,28,3,30,101320,100190,99080,84.88,0,6.53,7.1000000000000005,7.22,7.28,7.34,7.390000000000001,7.45,7.51,7.75,159.43,159.17000000000002,158.99,158.76,158.5,158.21,157.85,157.45000000000002,156.26,29.400000000000002,29.1,28.94,28.75,28.580000000000002,28.400000000000002,28.23,28.07,27.79,N/A,N/A +2012,6,28,4,30,101340,100200,99090,86.4,0,6.99,7.61,7.74,7.79,7.82,7.84,7.84,7.83,7.79,153.66,153.77,153.8,153.84,153.86,153.89000000000001,153.93,153.97,154.11,29.26,28.95,28.78,28.580000000000002,28.400000000000002,28.22,28.02,27.84,27.46,N/A,N/A +2012,6,28,5,30,101360,100220,99120,87.94,0,7.2700000000000005,7.88,8.01,8.05,8.08,8.09,8.08,8.07,8.01,154.34,154.36,154.34,154.31,154.29,154.25,154.23,154.21,154.20000000000002,29.080000000000002,28.75,28.580000000000002,28.38,28.2,28.01,27.82,27.63,27.25,N/A,N/A +2012,6,28,6,30,101410,100270,99160,88.84,0,6.24,6.73,6.82,6.86,6.890000000000001,6.9,6.9,6.9,6.890000000000001,155.78,155.85,155.91,156,156.08,156.18,156.29,156.39000000000001,156.63,29,28.650000000000002,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A +2012,6,28,7,30,101470,100330,99220,88.53,0,6.21,6.7,6.8,6.84,6.86,6.87,6.87,6.86,6.84,157.99,158.1,158.20000000000002,158.28,158.36,158.43,158.5,158.57,158.71,29,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A +2012,6,28,8,30,101490,100340,99240,85.27,0,5.97,6.49,6.61,6.68,6.73,6.7700000000000005,6.8,6.83,6.88,164.31,163.87,163.66,163.47,163.29,163.12,162.95000000000002,162.78,162.42000000000002,29.14,28.8,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A +2012,6,28,9,30,101520,100380,99270,85.85000000000001,0,6.59,7.11,7.21,7.24,7.25,7.25,7.23,7.21,7.140000000000001,162.21,162.46,162.59,162.73,162.87,163.01,163.17000000000002,163.32,163.71,29,28.66,28.48,28.28,28.080000000000002,27.89,27.69,27.5,27.11,N/A,N/A +2012,6,28,10,30,101530,100390,99280,83.22,0,6.68,7.25,7.37,7.43,7.46,7.48,7.48,7.48,7.46,160.52,160.78,160.96,161.17000000000002,161.37,161.57,161.78,161.99,162.43,29.14,28.8,28.62,28.42,28.22,28.03,27.830000000000002,27.63,27.240000000000002,N/A,N/A +2012,6,28,11,30,101580,100440,99330,85.24,0,5.2700000000000005,5.69,5.8,5.88,5.94,5.98,6.03,6.07,6.140000000000001,161.15,162.35,163.03,163.68,164.26,164.81,165.33,165.84,166.79,29.13,28.8,28.64,28.44,28.26,28.07,27.88,27.69,27.32,N/A,N/A +2012,6,28,12,30,101610,100470,99360,84.06,0,5.12,5.55,5.66,5.73,5.79,5.84,5.88,5.91,5.98,167.36,167.27,167.23,167.18,167.13,167.08,167.02,166.97,166.84,29.060000000000002,28.72,28.55,28.35,28.16,27.97,27.78,27.59,27.21,N/A,N/A +2012,6,28,13,30,101650,100510,99400,83.28,0,4.0200000000000005,4.26,4.3100000000000005,4.33,4.3500000000000005,4.36,4.36,4.37,4.38,155.91,155.82,155.83,155.83,155.84,155.86,155.88,155.93,156.06,29.17,28.85,28.68,28.48,28.3,28.11,27.92,27.740000000000002,27.37,N/A,N/A +2012,6,28,14,30,101720,100570,99460,83.08,0,3.7800000000000002,4.0600000000000005,4.12,4.16,4.2,4.22,4.25,4.2700000000000005,4.32,154.34,154.31,154.36,154.42000000000002,154.47,154.52,154.58,154.64000000000001,154.77,29.27,28.94,28.77,28.57,28.39,28.19,28,27.82,27.44,N/A,N/A +2012,6,28,15,30,101720,100580,99470,82.09,0,3.61,3.8000000000000003,3.83,3.84,3.84,3.84,3.84,3.83,3.81,128.51,129.29,129.73,130.13,130.51,130.88,131.26,131.62,132.4,29.310000000000002,28.98,28.810000000000002,28.61,28.43,28.240000000000002,28.04,27.86,27.48,N/A,N/A +2012,6,28,16,30,101710,100570,99460,82.39,0,3.56,3.7600000000000002,3.8000000000000003,3.8200000000000003,3.83,3.85,3.85,3.86,3.87,129.46,130.76,131.41,132.07,132.67000000000002,133.26,133.85,134.41,135.54,29.36,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.52,N/A,N/A +2012,6,28,17,30,101750,100610,99490,84.71000000000001,0,4.66,4.92,4.96,4.97,4.97,4.96,4.95,4.94,4.9,115.73,116.12,116.28,116.39,116.48,116.54,116.60000000000001,116.65,116.72,29.34,29,28.830000000000002,28.62,28.44,28.240000000000002,28.05,27.86,27.490000000000002,N/A,N/A +2012,6,28,18,30,101730,100590,99480,82.98,0,4.38,4.66,4.69,4.7,4.69,4.69,4.68,4.66,4.62,113.10000000000001,113.9,114.12,114.33,114.5,114.67,114.84,115.01,115.37,29.48,29.13,28.96,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A +2012,6,28,19,30,101800,100660,99540,84.11,0,6.96,7.44,7.53,7.5600000000000005,7.58,7.58,7.58,7.58,7.5600000000000005,158.93,159.01,159.05,159.13,159.20000000000002,159.31,159.43,159.56,159.87,29.490000000000002,29.16,28.990000000000002,28.79,28.6,28.41,28.22,28.03,27.66,N/A,N/A +2012,6,28,20,30,101690,100540,99430,82.64,0,5.86,6.140000000000001,6.17,6.16,6.15,6.140000000000001,6.15,6.17,6.3,218.53,217.75,217.08,216.20000000000002,215,213.51,210.66,207.39000000000001,197.17000000000002,27.54,27.150000000000002,26.98,26.810000000000002,26.68,26.560000000000002,26.53,26.53,26.76,N/A,N/A +2012,6,28,21,30,101690,100540,99430,80.86,0,6.09,6.48,6.55,6.57,6.58,6.59,6.58,6.58,6.57,191.55,191.19,191.04,190.86,190.66,190.44,190.15,189.84,188.87,27.89,27.5,27.32,27.12,26.93,26.75,26.560000000000002,26.39,26.04,N/A,N/A +2012,6,28,22,30,101660,100510,99400,77.99,0,3.37,3.54,3.5700000000000003,3.59,3.61,3.64,3.71,3.79,4.3500000000000005,163.92000000000002,163.14000000000001,162.65,162.05,161.37,160.61,159.44,158.17000000000002,153.17000000000002,28.080000000000002,27.72,27.55,27.36,27.18,27.01,26.84,26.68,26.52,N/A,N/A +2012,6,28,23,30,101650,100510,99400,76.09,0,2.64,2.8000000000000003,2.84,2.87,2.91,2.96,3.0500000000000003,3.16,3.77,130.71,130.93,131.09,131.32,131.61,131.98,132.7,133.56,138.24,28.53,28.2,28.04,27.85,27.68,27.51,27.36,27.21,27.14,N/A,N/A +2012,6,29,0,30,101610,100460,99350,76.32000000000001,0,5.09,5.44,5.5,5.53,5.5600000000000005,5.58,5.6000000000000005,5.62,5.68,143.79,143.66,143.61,143.55,143.49,143.41,143.33,143.25,143,28.7,28.35,28.18,27.98,27.79,27.61,27.42,27.240000000000002,26.87,N/A,N/A +2012,6,29,1,30,101590,100450,99340,78.7,0,6.3500000000000005,6.8100000000000005,6.91,6.95,6.98,6.99,7,7,7.01,143.51,143.62,143.69,143.77,143.84,143.91,144,144.1,144.32,28.8,28.45,28.28,28.080000000000002,27.900000000000002,27.72,27.53,27.35,26.990000000000002,N/A,N/A +2012,6,29,2,30,101590,100440,99330,80.10000000000001,0,5.89,6.3500000000000005,6.46,6.53,6.57,6.61,6.640000000000001,6.67,6.71,139.44,139.84,140.06,140.29,140.51,140.74,140.98,141.21,141.74,28.8,28.44,28.27,28.07,27.89,27.7,27.51,27.32,26.95,N/A,N/A +2012,6,29,3,30,101590,100440,99330,80.88,0,6.29,6.8,6.92,6.98,7.03,7.0600000000000005,7.09,7.11,7.140000000000001,147.55,147.68,147.77,147.87,147.95000000000002,148.03,148.12,148.19,148.36,28.84,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A +2012,6,29,4,30,101590,100440,99330,83.27,0,6.0600000000000005,6.5200000000000005,6.63,6.68,6.72,6.74,6.75,6.7700000000000005,6.78,149.26,149.37,149.4,149.43,149.45000000000002,149.47,149.5,149.52,149.57,28.77,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.900000000000002,N/A,N/A +2012,6,29,5,30,101570,100430,99320,80.49,0,6.3100000000000005,6.78,6.88,6.92,6.94,6.95,6.95,6.95,6.93,161.89000000000001,161.42000000000002,161.18,160.93,160.72,160.5,160.29,160.08,159.66,29.01,28.67,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A +2012,6,29,6,30,101610,100470,99360,79.81,0,5.91,6.3500000000000005,6.45,6.49,6.5200000000000005,6.54,6.5600000000000005,6.5600000000000005,6.57,168.45000000000002,168.51,168.49,168.46,168.44,168.41,168.39000000000001,168.38,168.34,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A +2012,6,29,7,30,101600,100450,99340,79.56,0,6.0200000000000005,6.45,6.5200000000000005,6.55,6.5600000000000005,6.5600000000000005,6.55,6.54,6.5200000000000005,167.9,168.08,168.26,168.45000000000002,168.65,168.85,169.06,169.26,169.71,28.94,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,6,29,8,30,101620,100480,99370,77.62,0,4.66,4.97,5.04,5.07,5.08,5.09,5.09,5.08,5.07,171.22,172.11,172.45000000000002,172.75,173.01,173.25,173.47,173.68,174.08,29.080000000000002,28.75,28.580000000000002,28.39,28.2,28.01,27.82,27.63,27.26,N/A,N/A +2012,6,29,9,30,101600,100450,99340,78.58,0,4.57,4.88,4.94,4.98,5.01,5.03,5.04,5.05,5.08,180.93,181.1,181.23,181.37,181.49,181.61,181.74,181.85,182.09,28.91,28.57,28.400000000000002,28.21,28.02,27.830000000000002,27.650000000000002,27.46,27.09,N/A,N/A +2012,6,29,10,30,101610,100470,99360,80.12,0,3.5100000000000002,3.67,3.68,3.68,3.67,3.66,3.64,3.63,3.6,201.64000000000001,201.55,201.28,200.96,200.63,200.27,199.86,199.45000000000002,198.36,28.77,28.44,28.28,28.080000000000002,27.900000000000002,27.72,27.54,27.36,27.01,N/A,N/A +2012,6,29,11,30,101580,100430,99320,79.22,0,3.2,3.38,3.41,3.42,3.43,3.43,3.44,3.44,3.43,202.33,203.16,203.57,203.97,204.34,204.70000000000002,205.06,205.4,206.08,28.72,28.38,28.21,28.01,27.82,27.63,27.44,27.25,26.87,N/A,N/A +2012,6,29,12,30,101580,100440,99330,80.15,3.3000000000000003,2.93,3.1,3.11,3.11,3.11,3.11,3.1,3.09,3.08,216.55,215.65,215.47,215.28,215.1,214.92000000000002,214.75,214.59,214.25,28.59,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,6,29,13,30,101610,100450,99330,93.26,51.6,9.89,10.93,11.07,11.16,11.200000000000001,11.21,11.19,11.17,11.07,112.60000000000001,112,111.96000000000001,111.95,112,112.06,112.17,112.27,112.55,26.18,25.67,25.45,25.240000000000002,25.03,24.84,24.64,24.45,24.080000000000002,N/A,N/A +2012,6,29,14,30,101680,100520,99400,83.35000000000001,0,7.33,7.76,7.8100000000000005,7.82,7.8,7.78,7.76,7.75,7.71,109.55,109.51,109.76,110.04,110.36,110.7,111.22,111.75,113.37,25.84,25.37,25.19,25.02,24.86,24.71,24.580000000000002,24.46,24.330000000000002,N/A,N/A +2012,6,29,15,30,101680,100530,99400,78.61,0,5.63,5.98,6.05,6.07,6.09,6.09,6.09,6.08,6.0600000000000005,96.53,97.23,97.51,97.79,98.07000000000001,98.35000000000001,98.67,98.97,99.74000000000001,26.59,26.16,25.97,25.77,25.580000000000002,25.400000000000002,25.22,25.04,24.7,N/A,N/A +2012,6,29,16,30,101670,100520,99400,77.7,0,6.2700000000000005,6.67,6.74,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.74,6.72,6.640000000000001,93.72,93.84,93.88,93.92,93.95,93.99,94.02,94.06,94.16,27.29,26.88,26.7,26.5,26.32,26.14,25.95,25.78,25.44,N/A,N/A +2012,6,29,17,30,101650,100500,99380,82.52,0,6.2,6.54,6.58,6.57,6.55,6.5200000000000005,6.48,6.44,6.34,113.64,113.76,113.83,113.92,114,114.09,114.19,114.29,114.54,27.47,27.060000000000002,26.88,26.68,26.490000000000002,26.310000000000002,26.13,25.95,25.6,N/A,N/A +2012,6,29,18,30,101570,100430,99310,83.31,0,5.8100000000000005,6.19,6.22,6.21,6.19,6.16,6.12,6.08,5.99,113.7,113.87,113.82000000000001,113.75,113.67,113.59,113.5,113.41,113.21000000000001,27.92,27.51,27.330000000000002,27.13,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A +2012,6,29,19,30,101550,100410,99300,76.85000000000001,0,6.7,7.18,7.25,7.2700000000000005,7.2700000000000005,7.26,7.24,7.21,7.15,143.71,143.68,143.72,143.76,143.82,143.88,143.95000000000002,144.02,144.19,28.37,27.990000000000002,27.810000000000002,27.61,27.43,27.240000000000002,27.05,26.87,26.5,N/A,N/A +2012,6,29,20,30,101500,100350,99240,83.41,0,6.47,6.8500000000000005,6.91,6.9,6.87,6.83,6.7700000000000005,6.7,6.51,144.9,144.95000000000002,144.91,144.9,144.91,144.94,145.02,145.12,145.54,27.900000000000002,27.51,27.330000000000002,27.13,26.95,26.77,26.580000000000002,26.400000000000002,26.05,N/A,N/A +2012,6,29,21,30,101440,100290,99170,77.42,0,8.16,8.77,8.88,8.92,8.93,8.93,8.92,8.91,8.91,134.79,134.89000000000001,134.85,134.81,134.76,134.71,134.65,134.6,134.51,27.95,27.560000000000002,27.39,27.2,27.03,26.86,26.69,26.54,26.29,N/A,N/A +2012,6,29,22,30,101380,100230,99120,78.24,0,6.42,6.84,6.890000000000001,6.890000000000001,6.87,6.83,6.78,6.73,6.57,157.79,157.58,157.59,157.61,157.64000000000001,157.67000000000002,157.72,157.78,157.98,28.27,27.900000000000002,27.72,27.53,27.34,27.150000000000002,26.96,26.78,26.42,N/A,N/A +2012,6,29,23,30,101390,100240,99130,85.22,0,5.89,6.26,6.32,6.34,6.34,6.34,6.32,6.3100000000000005,6.2700000000000005,143.04,143.01,142.91,142.81,142.71,142.61,142.5,142.39000000000001,142.17000000000002,27.8,27.400000000000002,27.22,27.02,26.830000000000002,26.64,26.44,26.26,25.88,N/A,N/A +2012,6,30,0,30,101340,100190,99080,77.31,0,5.15,5.46,5.5200000000000005,5.55,5.57,5.57,5.57,5.57,5.57,150.15,150.26,150.3,150.33,150.36,150.4,150.45000000000002,150.49,150.58,28.07,27.69,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.17,N/A,N/A +2012,6,30,1,30,101280,100130,99030,81.52,0,4.91,5.28,5.38,5.44,5.49,5.53,5.5600000000000005,5.59,5.64,137.32,137.44,137.52,137.6,137.67000000000002,137.73,137.79,137.86,137.98,28.07,27.69,27.52,27.310000000000002,27.12,26.93,26.73,26.55,26.16,N/A,N/A +2012,6,30,2,30,101280,100140,99030,82.5,0,5.5200000000000005,5.9,5.97,6,6.0200000000000005,6.04,6.05,6.05,6.05,147.85,147.89000000000001,147.91,147.93,147.95000000000002,147.98,148.01,148.03,148.1,28.2,27.830000000000002,27.650000000000002,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A +2012,6,30,3,30,101250,100100,99000,81.05,0,5.46,5.88,5.98,6.03,6.07,6.1000000000000005,6.12,6.140000000000001,6.17,153.20000000000002,153.21,153.14000000000001,153.08,153.02,152.97,152.91,152.87,152.78,28.47,28.11,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,6,30,4,30,101240,100090,98990,84.32000000000001,0,7.01,7.5200000000000005,7.61,7.640000000000001,7.640000000000001,7.640000000000001,7.62,7.6000000000000005,7.54,149.72,150.36,150.62,150.87,151.09,151.3,151.5,151.70000000000002,152.09,28.29,27.91,27.73,27.53,27.330000000000002,27.14,26.95,26.76,26.39,N/A,N/A +2012,6,30,5,30,101220,100080,98970,84.58,0,7.03,7.58,7.69,7.75,7.79,7.8,7.8100000000000005,7.8100000000000005,7.8,153.31,153.58,153.82,154.04,154.24,154.42000000000002,154.6,154.76,155.09,28.32,27.94,27.76,27.560000000000002,27.36,27.17,26.97,26.79,26.41,N/A,N/A +2012,6,30,6,30,101260,100110,99010,81.89,0,5.8,6.23,6.32,6.37,6.41,6.43,6.45,6.47,6.5,172.51,172.45000000000002,172.44,172.42000000000002,172.41,172.39000000000001,172.38,172.36,172.33,28.37,28.01,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A +2012,6,30,7,30,101250,100110,99010,82.37,0,7.2,7.78,7.890000000000001,7.94,7.97,7.97,7.97,7.96,7.92,167.63,167.8,167.99,168.17000000000002,168.34,168.5,168.67000000000002,168.83,169.15,28.45,28.1,27.92,27.72,27.53,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,6,30,8,30,101250,100100,99000,80.31,0,6.640000000000001,7.140000000000001,7.23,7.26,7.28,7.29,7.29,7.29,7.2700000000000005,170.88,170.95000000000002,170.93,170.9,170.88,170.86,170.84,170.83,170.81,28.43,28.080000000000002,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A +2012,6,30,9,30,101240,100090,98990,79.04,0,6.75,7.3100000000000005,7.43,7.5,7.54,7.58,7.61,7.62,7.65,182.91,183.02,183.09,183.15,183.21,183.25,183.3,183.35,183.42000000000002,28.46,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,6,30,10,30,101240,100100,98990,77.08,0,6.16,6.61,6.69,6.72,6.74,6.75,6.75,6.74,6.73,180.92000000000002,181.27,181.45000000000002,181.62,181.77,181.91,182.04,182.17000000000002,182.43,28.45,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A +2012,6,30,11,30,101240,100100,98990,78.54,0,5.26,5.65,5.73,5.78,5.8100000000000005,5.84,5.8500000000000005,5.86,5.86,190.01,189.66,189.38,189.11,188.85,188.61,188.36,188.14000000000001,187.67000000000002,28.400000000000002,28.05,27.87,27.67,27.48,27.29,27.09,26.900000000000002,26.52,N/A,N/A +2012,6,30,12,30,101250,100110,99000,78.54,0,5.84,6.24,6.3100000000000005,6.34,6.36,6.37,6.37,6.37,6.36,188.09,187.65,187.36,187.06,186.79,186.54,186.28,186.04,185.56,28.34,27.990000000000002,27.810000000000002,27.61,27.42,27.23,27.03,26.85,26.46,N/A,N/A +2012,6,30,13,30,101290,100140,99040,78.06,0,3.13,3.33,3.38,3.41,3.44,3.46,3.48,3.5,3.5300000000000002,185.59,185.3,185.17000000000002,185.03,184.91,184.8,184.69,184.58,184.35,28.310000000000002,27.97,27.79,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,6,30,14,30,101400,100250,99130,88.8,98.5,2.44,2.34,2.27,2.27,2.32,2.44,2.61,2.82,3.2600000000000002,64.71000000000001,75.19,82.19,91.13,98.61,105.68,111.28,116.02,121.81,26.51,26.2,26.080000000000002,25.96,25.85,25.76,25.67,25.6,25.42,N/A,N/A +2012,6,30,15,30,101380,100230,99100,92.29,1.1,8.370000000000001,8.83,8.86,8.8,8.700000000000001,8.57,8.4,8.24,7.72,49.42,49.480000000000004,49.620000000000005,49.81,50.050000000000004,50.34,50.74,51.14,52.75,25.3,24.79,24.59,24.400000000000002,24.22,24.05,23.89,23.740000000000002,23.47,N/A,N/A +2012,6,30,16,30,101390,100230,99110,89.8,127.10000000000001,6.91,7.28,7.36,7.390000000000001,7.4,7.4,7.38,7.36,7.3,17.490000000000002,17.6,17.75,17.87,17.94,17.990000000000002,18.01,18.02,17.97,26.03,25.560000000000002,25.37,25.17,24.97,24.79,24.61,24.43,24.080000000000002,N/A,N/A +2012,6,30,17,30,101400,100240,99120,92.99,21.200000000000003,6.38,6.62,6.6000000000000005,6.55,6.49,6.42,6.34,6.26,6.09,300.2,300.21,300.63,301.11,301.58,302.07,302.64,303.19,304.45,25.1,24.61,24.42,24.22,24.03,23.85,23.66,23.490000000000002,23.13,N/A,N/A +2012,6,30,18,30,101360,100200,99080,87.89,0,4.15,4.18,4.08,3.93,3.64,3.31,2.66,2.11,1.25,6.34,7.69,8.51,9.57,11.32,13.24,16.01,18.240000000000002,24.93,25.69,25.3,25.16,25.03,24.97,24.93,24.98,25.04,25.02,N/A,N/A +2012,6,30,19,30,101340,100190,99080,83.24,0,0.64,0.52,0.48,0.48,0.51,0.59,0.7000000000000001,0.8300000000000001,1.1500000000000001,64.3,86.15,99.97,118.51,133.76,148.58,159.21,168.58,179.25,26.86,26.47,26.29,26.09,25.900000000000002,25.72,25.52,25.34,24.97,N/A,N/A +2012,6,30,20,30,101320,100170,99050,84.14,0,2.22,2.34,2.38,2.41,2.44,2.47,2.5100000000000002,2.54,2.63,173.45000000000002,171.99,170.92000000000002,169.86,168.89000000000001,167.93,166.98,166.07,164.25,27.080000000000002,26.68,26.5,26.3,26.11,25.92,25.73,25.55,25.18,N/A,N/A +2012,6,30,21,30,101260,100110,99000,80.72,0,3.64,3.94,4.03,4.1,4.17,4.23,4.28,4.34,4.45,152.8,152.32,152.03,151.75,151.5,151.26,151.03,150.81,150.4,27.59,27.21,27.03,26.830000000000002,26.64,26.45,26.26,26.07,25.7,N/A,N/A +2012,6,30,22,30,101230,100080,98970,69.59,0,6.38,6.94,7.0600000000000005,7.12,7.16,7.19,7.21,7.22,7.24,148.32,148.28,148.32,148.37,148.43,148.48,148.55,148.6,148.73,28.55,28.2,28.03,27.830000000000002,27.64,27.45,27.25,27.07,26.68,N/A,N/A +2012,6,30,23,30,101230,100080,98980,76.38,0,5.78,6.26,6.390000000000001,6.47,6.53,6.57,6.61,6.65,6.7,144.08,144.39000000000001,144.62,144.83,145,145.15,145.29,145.42000000000002,145.68,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,1,0,30,101210,100060,98960,75.59,0,6.23,6.68,6.78,6.83,6.87,6.9,6.91,6.93,6.95,150.51,150.66,150.75,150.85,150.93,151.02,151.09,151.17000000000002,151.33,28.48,28.14,27.96,27.76,27.57,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,1,1,30,101200,100060,98950,81.41,0,6.2700000000000005,6.8100000000000005,6.93,6.99,7.04,7.07,7.09,7.11,7.12,143.62,143.99,144.08,144.13,144.17000000000002,144.19,144.20000000000002,144.20000000000002,144.19,28.3,27.93,27.76,27.55,27.37,27.17,26.98,26.79,26.41,N/A,N/A +2012,7,1,2,30,101200,100060,98950,80.21000000000001,0,7.4,8.01,8.14,8.21,8.25,8.28,8.290000000000001,8.3,8.3,154.01,154.21,154.26,154.29,154.34,154.37,154.41,154.45000000000002,154.52,28.1,27.72,27.54,27.34,27.150000000000002,26.96,26.76,26.580000000000002,26.2,N/A,N/A +2012,7,1,3,30,101220,100070,98970,80.33,0,7.16,7.7700000000000005,7.9,7.97,8.03,8.07,8.1,8.13,8.16,158.98,159.22,159.4,159.57,159.73,159.88,160.05,160.20000000000002,160.51,28.19,27.82,27.64,27.44,27.25,27.060000000000002,26.86,26.68,26.29,N/A,N/A +2012,7,1,4,30,101220,100080,98970,82.21000000000001,0,7.73,8.46,8.63,8.74,8.82,8.88,8.94,8.98,9.05,151.20000000000002,151.56,151.73,151.88,152.02,152.16,152.28,152.4,152.63,28.23,27.86,27.68,27.48,27.29,27.1,26.900000000000002,26.71,26.330000000000002,N/A,N/A +2012,7,1,5,30,101250,100110,99000,80.87,0,7.94,8.72,8.89,9.01,9.08,9.13,9.17,9.200000000000001,9.24,162.20000000000002,162.08,162.07,162.07,162.07,162.07,162.08,162.08,162.09,28.41,28.04,27.86,27.66,27.46,27.27,27.07,26.88,26.5,N/A,N/A +2012,7,1,6,30,101280,100140,99030,76.58,0,8.13,8.94,9.13,9.24,9.32,9.38,9.43,9.46,9.51,168.37,168.38,168.4,168.41,168.41,168.42000000000002,168.42000000000002,168.42000000000002,168.43,28.580000000000002,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,1,7,30,101350,100210,99100,80.86,19.6,8.84,9.44,9.52,9.48,9.4,9.3,9.18,9.06,8.85,185.41,185.33,185.49,185.77,186.05,186.32,186.35,186.3,185.64000000000001,27.82,27.52,27.39,27.27,27.150000000000002,27.02,26.88,26.73,26.39,N/A,N/A +2012,7,1,8,30,101380,100230,99110,81.66,8.1,7.49,8.18,8.35,8.48,8.58,8.68,8.78,8.88,9.13,190.67000000000002,189.68,189.13,188.55,187.94,187.34,186.62,185.92000000000002,183.71,27.27,26.89,26.72,26.52,26.34,26.150000000000002,25.97,25.8,25.48,N/A,N/A +2012,7,1,9,30,101390,100230,99120,82.44,0,5.86,6.34,6.46,6.53,6.58,6.62,6.66,6.69,6.74,166.03,165.93,165.9,165.89000000000001,165.87,165.85,165.83,165.82,165.77,27.310000000000002,26.93,26.76,26.560000000000002,26.36,26.17,25.98,25.8,25.42,N/A,N/A +2012,7,1,10,30,101400,100240,99140,81.58,0,6.91,7.49,7.61,7.68,7.73,7.75,7.7700000000000005,7.78,7.79,160.48,160.54,160.58,160.63,160.68,160.74,160.81,160.87,161.03,27.71,27.330000000000002,27.14,26.94,26.740000000000002,26.55,26.36,26.17,25.79,N/A,N/A +2012,7,1,11,30,101450,100300,99180,79.8,0,6.03,6.47,6.57,6.62,6.65,6.67,6.69,6.7,6.73,159.42000000000002,159.69,159.83,159.96,160.08,160.20000000000002,160.33,160.47,160.85,27.86,27.5,27.330000000000002,27.13,26.94,26.75,26.560000000000002,26.38,26.01,N/A,N/A +2012,7,1,12,30,101470,100320,99210,79.43,0,6.68,7.19,7.3,7.36,7.390000000000001,7.41,7.41,7.41,7.390000000000001,150.28,150.55,150.66,150.78,150.89000000000001,151,151.11,151.22,151.49,27.95,27.59,27.42,27.22,27.04,26.85,26.66,26.48,26.12,N/A,N/A +2012,7,1,13,30,101510,100370,99260,81.59,0,5.82,6.16,6.21,6.2,6.18,6.15,6.12,6.08,6.0200000000000005,148.79,149.31,149.85,150.48,151.15,151.86,152.75,153.65,156.26,28.05,27.7,27.53,27.330000000000002,27.150000000000002,26.97,26.79,26.62,26.29,N/A,N/A +2012,7,1,14,30,101570,100430,99310,81.43,0,5.67,6.13,6.18,6.19,6.19,6.16,6.12,6.08,5.99,130.54,131.99,132.39000000000001,132.78,133.15,133.52,133.93,134.32,135.31,27.900000000000002,27.53,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.03,N/A,N/A +2012,7,1,15,30,101700,100540,99420,86.15,35.300000000000004,9.73,10.61,10.81,10.9,10.97,11.01,11.03,11.06,11.11,179.72,179.36,179.25,179.14000000000001,179.05,178.97,178.91,178.86,178.81,26.59,26.11,25.91,25.7,25.52,25.330000000000002,25.14,24.96,24.6,N/A,N/A +2012,7,1,16,30,101750,100590,99460,82.63,2.4000000000000004,6.93,7.3500000000000005,7.43,7.45,7.47,7.46,7.46,7.46,7.43,181.88,182.09,182.21,182.33,182.46,182.59,182.74,182.89000000000001,183.24,25.85,25.38,25.18,24.98,24.78,24.6,24.41,24.23,23.86,N/A,N/A +2012,7,1,17,30,101760,100590,99460,89.81,43.5,2.85,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0100000000000002,3,2.99,2.98,2.94,277.92,277.09000000000003,278.02,278.93,279.83,280.66,281.72,282.7,285.29,24.91,24.47,24.29,24.09,23.900000000000002,23.72,23.53,23.37,23.01,N/A,N/A +2012,7,1,18,30,101780,100610,99480,89.7,74.3,5.74,6.03,6.05,6.04,6.0200000000000005,5.98,5.93,5.88,5.75,256.47,255.57,255.70000000000002,255.79,255.89000000000001,255.98000000000002,256.08,256.19,256.49,24.78,24.3,24.1,23.91,23.72,23.54,23.35,23.19,22.84,N/A,N/A +2012,7,1,19,30,101770,100600,99470,84.75,0,2.11,2.23,2.24,2.2600000000000002,2.2800000000000002,2.31,2.34,2.36,2.47,281.5,279.18,277.48,275.68,273.89,272.09000000000003,269.98,267.91,261.91,25.11,24.69,24.51,24.310000000000002,24.12,23.94,23.76,23.580000000000002,23.240000000000002,N/A,N/A +2012,7,1,20,30,101700,100540,99420,82.82000000000001,0,1.27,1.3900000000000001,1.45,1.52,1.6300000000000001,1.8,2.19,2.7800000000000002,3.39,208.20000000000002,206.76,206.9,206.85,206.37,205.49,202.71,198.39000000000001,185.64000000000001,26.04,25.67,25.51,25.34,25.19,25.07,25.14,25.27,25.67,N/A,N/A +2012,7,1,21,30,101680,100530,99410,81.78,0,3.93,4.14,4.18,4.2,4.22,4.23,4.25,4.28,4.39,126.27,126.92,127.38000000000001,127.87,128.41,128.98,129.72,130.46,132.7,26.78,26.39,26.21,26.01,25.82,25.64,25.46,25.29,24.95,N/A,N/A +2012,7,1,22,30,101650,100490,99370,83.36,0,4.87,5.18,5.25,5.28,5.3100000000000005,5.34,5.36,5.38,5.43,112.58,113.10000000000001,113.4,113.74000000000001,114.06,114.38,114.76,115.14,116.11,26.88,26.48,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A +2012,7,1,23,30,101590,100440,99330,82.5,0,5.73,6.09,6.16,6.18,6.19,6.19,6.18,6.18,6.15,124.19,124.54,124.66,124.78,124.88000000000001,124.97,125.06,125.16,125.37,27.54,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.19,26,25.62,N/A,N/A +2012,7,2,0,30,101560,100410,99290,84.51,0,5.99,6.4,6.48,6.5200000000000005,6.53,6.54,6.53,6.53,6.5,136.4,136.64000000000001,136.75,136.86,136.98,137.1,137.23,137.36,137.67000000000002,27.580000000000002,27.2,27.02,26.82,26.63,26.44,26.240000000000002,26.05,25.68,N/A,N/A +2012,7,2,1,30,101560,100410,99300,86,0,6.32,6.8,6.9,6.95,6.99,7.01,7.0200000000000005,7.0200000000000005,7.03,141.28,141.48,141.57,141.66,141.75,141.84,141.93,142.02,142.23,27.61,27.23,27.05,26.84,26.650000000000002,26.46,26.27,26.080000000000002,25.7,N/A,N/A +2012,7,2,2,30,101540,100390,99280,86.5,0,7.29,7.890000000000001,8.01,8.08,8.120000000000001,8.14,8.16,8.17,8.18,144.81,144.88,144.95000000000002,145.02,145.07,145.13,145.18,145.24,145.35,27.740000000000002,27.35,27.17,26.97,26.77,26.580000000000002,26.38,26.2,25.82,N/A,N/A +2012,7,2,3,30,101550,100400,99290,87.92,0,7,7.55,7.67,7.72,7.75,7.76,7.76,7.76,7.73,143.16,143.43,143.63,143.85,144.07,144.28,144.51,144.74,145.24,27.7,27.310000000000002,27.12,26.91,26.72,26.52,26.330000000000002,26.14,25.75,N/A,N/A +2012,7,2,4,30,101550,100410,99300,85.15,0,6.71,7.26,7.38,7.44,7.49,7.5200000000000005,7.54,7.55,7.57,148,148.17000000000002,148.29,148.42000000000002,148.54,148.66,148.79,148.91,149.18,28,27.63,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.1,N/A,N/A +2012,7,2,5,30,101560,100420,99300,86.52,0,6.5200000000000005,7.04,7.16,7.23,7.2700000000000005,7.3,7.32,7.33,7.3500000000000005,158.67000000000002,158.94,159.05,159.17000000000002,159.28,159.38,159.49,159.6,159.83,28.04,27.68,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A +2012,7,2,6,30,101580,100430,99320,84.91,0,6.32,6.82,6.92,6.96,6.99,7,7.01,7.01,7.01,160.76,160.77,160.95000000000002,161.18,161.43,161.69,162,162.32,163.12,28.12,27.77,27.6,27.41,27.22,27.03,26.85,26.67,26.310000000000002,N/A,N/A +2012,7,2,7,30,101630,100480,99370,86.03,0,6.16,6.68,6.8,6.87,6.92,6.95,6.98,7,7.03,160.43,161.07,161.32,161.54,161.73,161.89000000000001,162.04,162.18,162.44,28.14,27.79,27.62,27.42,27.23,27.04,26.85,26.67,26.29,N/A,N/A +2012,7,2,8,30,101630,100480,99370,85.75,0,5.87,6.3500000000000005,6.45,6.51,6.54,6.5600000000000005,6.57,6.58,6.59,163.33,163.75,163.97,164.23,164.48,164.72,164.98,165.22,165.74,28.14,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A +2012,7,2,9,30,101680,100530,99420,84.28,0,5.26,5.66,5.73,5.76,5.79,5.8,5.8,5.8,5.8,158.88,159.33,159.68,160.04,160.39000000000001,160.73,161.08,161.42000000000002,162.14000000000001,28.240000000000002,27.91,27.740000000000002,27.54,27.35,27.17,26.97,26.79,26.42,N/A,N/A +2012,7,2,10,30,101710,100560,99450,84.98,0,4.72,5.12,5.21,5.2700000000000005,5.32,5.36,5.4,5.43,5.5200000000000005,152.92000000000002,153.36,153.65,153.93,154.21,154.48,154.79,155.08,155.82,28.13,27.8,27.64,27.45,27.27,27.09,26.91,26.740000000000002,26.400000000000002,N/A,N/A +2012,7,2,11,30,101770,100620,99510,85.79,0,4.6000000000000005,4.94,5.0200000000000005,5.07,5.11,5.13,5.15,5.17,5.2,153.13,153.86,154.26,154.67000000000002,155.05,155.42000000000002,155.8,156.15,156.9,28.17,27.830000000000002,27.66,27.46,27.27,27.080000000000002,26.89,26.7,26.32,N/A,N/A +2012,7,2,12,30,101800,100650,99540,85.78,0,5.15,5.55,5.63,5.67,5.69,5.7,5.71,5.71,5.7,166.58,166.39000000000001,166.34,166.31,166.28,166.27,166.25,166.23,166.21,28.27,27.94,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A +2012,7,2,13,30,101830,100680,99570,86.99,0,5.23,5.62,5.69,5.73,5.75,5.76,5.76,5.76,5.76,156.19,156.58,156.78,156.96,157.11,157.26,157.41,157.55,157.86,28.150000000000002,27.82,27.64,27.44,27.25,27.07,26.87,26.69,26.310000000000002,N/A,N/A +2012,7,2,14,30,101870,100720,99610,85.76,0,4.38,4.73,4.8100000000000005,4.86,4.9,4.93,4.96,4.97,5.01,153.45000000000002,153.28,153.32,153.37,153.41,153.45000000000002,153.49,153.54,153.64000000000001,28.240000000000002,27.900000000000002,27.73,27.54,27.35,27.150000000000002,26.96,26.77,26.39,N/A,N/A +2012,7,2,15,30,101880,100730,99620,85.93,0,4.97,5.29,5.3500000000000005,5.37,5.38,5.38,5.37,5.37,5.3500000000000005,162.12,162.09,162.03,161.97,161.91,161.84,161.78,161.72,161.58,28.26,27.92,27.75,27.55,27.36,27.18,26.98,26.8,26.42,N/A,N/A +2012,7,2,16,30,101890,100740,99620,84.94,0,6.15,6.6000000000000005,6.68,6.71,6.73,6.74,6.74,6.74,6.72,147.69,147.81,147.88,147.94,148,148.05,148.11,148.16,148.3,28.26,27.92,27.75,27.55,27.36,27.18,26.990000000000002,26.810000000000002,26.44,N/A,N/A +2012,7,2,17,30,101840,100690,99580,87.18,0,5.75,6.18,6.2700000000000005,6.32,6.3500000000000005,6.37,6.38,6.38,6.38,148.55,148.74,148.89000000000001,149.05,149.20000000000002,149.34,149.48,149.62,149.91,28.2,27.84,27.67,27.46,27.28,27.080000000000002,26.89,26.7,26.32,N/A,N/A +2012,7,2,18,30,101820,100670,99560,83.74,0,5.5,5.87,5.94,5.96,5.97,5.97,5.96,5.95,5.91,160.12,160.19,160.22,160.27,160.33,160.38,160.44,160.5,160.61,28.19,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,7,2,19,30,101800,100650,99540,83.21000000000001,0,4.99,5.32,5.37,5.39,5.4,5.4,5.39,5.39,5.36,155.59,155.63,155.74,155.85,155.96,156.05,156.16,156.25,156.47,28.16,27.8,27.62,27.42,27.23,27.04,26.85,26.66,26.28,N/A,N/A +2012,7,2,20,30,101770,100620,99510,81.91,0,4.76,5.08,5.13,5.15,5.16,5.16,5.16,5.15,5.14,151.32,151.59,151.78,151.96,152.13,152.29,152.46,152.62,152.95000000000002,28.17,27.810000000000002,27.64,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A +2012,7,2,21,30,101780,100630,99520,79.15,0,4.28,4.5600000000000005,4.62,4.65,4.67,4.69,4.7,4.71,4.73,157.73,157.57,157.5,157.44,157.38,157.32,157.27,157.21,157.1,28.26,27.91,27.740000000000002,27.54,27.35,27.16,26.96,26.78,26.400000000000002,N/A,N/A +2012,7,2,22,30,101710,100560,99450,81.11,0,5.11,5.47,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,5.6000000000000005,161.33,160.99,160.86,160.71,160.59,160.47,160.33,160.21,159.99,28.150000000000002,27.8,27.62,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A +2012,7,2,23,30,101730,100580,99470,84.37,0,5.62,6.08,6.17,6.22,6.25,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.2700000000000005,158.05,158.49,158.75,159.01,159.26,159.5,159.75,159.98,160.48,28.11,27.77,27.59,27.39,27.2,27.01,26.810000000000002,26.63,26.240000000000002,N/A,N/A +2012,7,3,0,30,101710,100560,99440,81.36,0,5.04,5.42,5.5,5.54,5.5600000000000005,5.58,5.6000000000000005,5.61,5.62,165.96,165.92000000000002,165.91,165.89000000000001,165.86,165.84,165.81,165.78,165.73,28.11,27.77,27.6,27.400000000000002,27.21,27.02,26.82,26.64,26.26,N/A,N/A +2012,7,3,1,30,101650,100500,99380,83,0,5.48,5.86,5.94,5.97,5.99,6,6,6,5.99,160.78,160.85,160.88,160.92000000000002,160.97,161.02,161.08,161.13,161.25,27.900000000000002,27.55,27.37,27.17,26.98,26.79,26.6,26.42,26.03,N/A,N/A +2012,7,3,2,30,101660,100510,99400,84.15,0,5.9,6.37,6.46,6.51,6.55,6.57,6.58,6.59,6.6000000000000005,157.51,157.37,157.27,157.16,157.05,156.96,156.85,156.74,156.52,27.82,27.46,27.28,27.07,26.89,26.69,26.490000000000002,26.310000000000002,25.92,N/A,N/A +2012,7,3,3,30,101670,100520,99410,86.51,0,6.43,7.03,7.16,7.24,7.3,7.34,7.37,7.4,7.43,169.18,168.93,168.79,168.66,168.54,168.43,168.32,168.21,168.01,27.75,27.38,27.2,27,26.8,26.61,26.42,26.23,25.84,N/A,N/A +2012,7,3,4,30,101660,100510,99400,82.28,0,6.19,6.67,6.78,6.83,6.87,6.890000000000001,6.91,6.92,6.94,171.67000000000002,171.25,171.06,170.88,170.73,170.6,170.46,170.34,170.08,27.73,27.37,27.19,26.990000000000002,26.8,26.6,26.41,26.22,25.84,N/A,N/A +2012,7,3,5,30,101680,100530,99420,80.8,0,6.42,6.9,7,7.04,7.07,7.08,7.08,7.09,7.09,179.37,178.56,178.03,177.49,177.01,176.54,176.07,175.62,174.70000000000002,27.95,27.6,27.42,27.22,27.03,26.85,26.650000000000002,26.47,26.09,N/A,N/A +2012,7,3,6,30,101670,100520,99410,83.9,0,6.34,6.86,6.99,7.0600000000000005,7.11,7.15,7.17,7.2,7.23,177.3,177.17000000000002,177.14000000000001,177.11,177.07,177.04,177,176.97,176.88,27.68,27.310000000000002,27.14,26.93,26.740000000000002,26.55,26.35,26.16,25.78,N/A,N/A +2012,7,3,7,30,101680,100530,99420,77.68,0,6.44,6.95,7.07,7.140000000000001,7.19,7.23,7.26,7.29,7.3500000000000005,183.09,182.68,182.37,182.04,181.73,181.43,181.13,180.85,180.26,27.990000000000002,27.650000000000002,27.48,27.29,27.1,26.92,26.73,26.55,26.18,N/A,N/A +2012,7,3,8,30,101720,100570,99450,78.63,0,5.26,5.68,5.7700000000000005,5.83,5.87,5.91,5.94,5.97,6.0200000000000005,188.81,188.22,187.9,187.58,187.27,186.97,186.65,186.35,185.70000000000002,27.92,27.57,27.400000000000002,27.21,27.03,26.84,26.650000000000002,26.48,26.11,N/A,N/A +2012,7,3,9,30,101740,100590,99470,77.43,0,5.6000000000000005,6.09,6.2,6.28,6.33,6.38,6.41,6.44,6.49,178.45000000000002,178.17000000000002,178.07,177.98,177.9,177.82,177.75,177.69,177.56,27.93,27.580000000000002,27.400000000000002,27.21,27.01,26.82,26.63,26.44,26.05,N/A,N/A +2012,7,3,10,30,101750,100590,99480,79.95,0,5.8500000000000005,6.32,6.41,6.47,6.5,6.5200000000000005,6.54,6.55,6.5600000000000005,179.71,179.63,179.58,179.52,179.46,179.41,179.35,179.29,179.18,27.75,27.39,27.22,27.02,26.82,26.63,26.43,26.25,25.86,N/A,N/A +2012,7,3,11,30,101750,100600,99480,76.93,0,4.95,5.33,5.42,5.48,5.53,5.5600000000000005,5.59,5.61,5.65,179.79,179.57,179.5,179.45000000000002,179.4,179.37,179.35,179.32,179.32,27.740000000000002,27.39,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A +2012,7,3,12,30,101790,100640,99530,72.04,0,5.04,5.42,5.51,5.5600000000000005,5.6000000000000005,5.63,5.66,5.68,5.71,186.58,186.38,186.27,186.16,186.06,185.97,185.88,185.8,185.63,27.96,27.63,27.46,27.26,27.07,26.88,26.68,26.5,26.12,N/A,N/A +2012,7,3,13,30,101800,100640,99530,77.11,0,4.67,4.91,4.93,4.92,4.9,4.87,4.84,4.8100000000000005,4.75,176.11,176.36,176.57,176.79,177,177.20000000000002,177.42000000000002,177.62,178.06,27.68,27.330000000000002,27.150000000000002,26.96,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A +2012,7,3,14,30,101820,100660,99550,69.66,0,3.27,3.52,3.59,3.64,3.68,3.72,3.7600000000000002,3.79,3.86,178.59,178.16,177.97,177.81,177.68,177.57,177.47,177.39000000000001,177.24,27.900000000000002,27.57,27.400000000000002,27.21,27.02,26.830000000000002,26.63,26.45,26.07,N/A,N/A +2012,7,3,15,30,101830,100680,99560,68.22,0,3.48,3.65,3.67,3.68,3.68,3.68,3.68,3.68,3.68,173.31,172.98,172.71,172.41,172.12,171.84,171.53,171.24,170.6,28.080000000000002,27.75,27.580000000000002,27.39,27.2,27.02,26.830000000000002,26.650000000000002,26.27,N/A,N/A +2012,7,3,16,30,101820,100670,99550,68.25,0,3.9,4.03,4.01,3.97,3.93,3.89,3.85,3.81,3.71,167.3,167.48,167.56,167.63,167.71,167.77,167.84,167.9,168.05,28.060000000000002,27.72,27.55,27.35,27.16,26.97,26.78,26.59,26.21,N/A,N/A +2012,7,3,17,30,101810,100650,99540,67.71000000000001,0,4.09,4.29,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.28,4.25,168.98,169.11,169.21,169.32,169.42000000000002,169.52,169.62,169.71,169.9,28.17,27.82,27.650000000000002,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A +2012,7,3,18,30,101800,100640,99530,66.89,0,4.2700000000000005,4.5,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.51,4.5,4.49,4.46,160.83,161.64000000000001,162.13,162.61,163.04,163.43,163.84,164.22,164.97,28.34,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A +2012,7,3,19,30,101760,100610,99490,72.04,0,3.9,4.14,4.19,4.22,4.24,4.25,4.26,4.2700000000000005,4.2700000000000005,162.83,162.84,162.82,162.78,162.74,162.70000000000002,162.66,162.61,162.53,28.17,27.810000000000002,27.63,27.43,27.240000000000002,27.05,26.85,26.66,26.27,N/A,N/A +2012,7,3,20,30,101720,100570,99450,63.58,0,4.41,4.7,4.75,4.78,4.79,4.8100000000000005,4.82,4.82,4.82,161.37,161.42000000000002,161.4,161.37,161.36,161.35,161.36,161.36,161.41,28.580000000000002,28.26,28.080000000000002,27.89,27.7,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,3,21,30,101650,100500,99390,62.61,0,4.74,5.12,5.2,5.24,5.2700000000000005,5.29,5.3100000000000005,5.32,5.33,163.35,163.1,163.03,162.96,162.9,162.84,162.79,162.75,162.68,28.66,28.35,28.18,27.98,27.79,27.61,27.41,27.23,26.84,N/A,N/A +2012,7,3,22,30,101620,100470,99360,64.65,0,4.66,5.03,5.1000000000000005,5.14,5.17,5.19,5.2,5.22,5.24,172.55,172.51,172.44,172.38,172.31,172.25,172.19,172.14000000000001,172.02,28.53,28.23,28.060000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A +2012,7,3,23,30,101560,100420,99300,71.5,0,5.25,5.65,5.73,5.76,5.79,5.8,5.8100000000000005,5.82,5.82,173.13,173.06,173.07,173.1,173.13,173.17000000000002,173.20000000000002,173.24,173.32,28.26,27.93,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A +2012,7,4,0,30,101530,100380,99270,72.55,0,5.09,5.45,5.5200000000000005,5.55,5.57,5.58,5.58,5.58,5.58,169.4,169.61,169.79,169.95000000000002,170.08,170.19,170.31,170.43,170.63,28.01,27.68,27.51,27.32,27.13,26.94,26.75,26.560000000000002,26.19,N/A,N/A +2012,7,4,1,30,101530,100380,99270,74.41,0,4.93,5.28,5.34,5.37,5.39,5.39,5.4,5.4,5.39,167.58,167.76,167.81,167.87,167.91,167.96,168.02,168.06,168.16,27.830000000000002,27.490000000000002,27.310000000000002,27.11,26.92,26.73,26.53,26.35,25.96,N/A,N/A +2012,7,4,2,30,101530,100380,99270,74.11,0,5.46,5.8500000000000005,5.92,5.95,5.97,5.98,5.99,5.99,5.99,159.49,159.55,159.6,159.66,159.71,159.76,159.81,159.87,159.99,27.8,27.46,27.28,27.09,26.900000000000002,26.71,26.52,26.34,25.96,N/A,N/A +2012,7,4,3,30,101540,100390,99280,71.96000000000001,0,5.41,5.84,5.93,5.98,6.01,6.03,6.04,6.05,6.04,168.01,167.89000000000001,167.88,167.87,167.85,167.84,167.83,167.81,167.78,27.88,27.54,27.36,27.17,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A +2012,7,4,4,30,101540,100390,99270,68.15,0,5.91,6.38,6.49,6.5600000000000005,6.6000000000000005,6.640000000000001,6.67,6.69,6.72,170.94,171.02,171.01,170.99,170.97,170.95000000000002,170.93,170.91,170.88,27.98,27.650000000000002,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.12,N/A,N/A +2012,7,4,5,30,101560,100410,99290,71.36,0,5.64,6.09,6.2,6.28,6.34,6.390000000000001,6.44,6.48,6.5600000000000005,168.69,168.77,168.78,168.79,168.79,168.79,168.78,168.78,168.76,27.86,27.53,27.36,27.16,26.97,26.79,26.6,26.42,26.04,N/A,N/A +2012,7,4,6,30,101610,100460,99350,78.25,0,6.54,7.03,7.12,7.15,7.17,7.17,7.15,7.140000000000001,7.09,164.25,164.45000000000002,164.5,164.53,164.54,164.55,164.54,164.53,164.49,27.650000000000002,27.28,27.1,26.900000000000002,26.71,26.51,26.310000000000002,26.13,25.740000000000002,N/A,N/A +2012,7,4,7,30,101620,100470,99350,79.45,0,6.41,6.92,7.03,7.09,7.13,7.15,7.17,7.18,7.19,173.39000000000001,173.33,173.27,173.21,173.14000000000001,173.08,173.02,172.96,172.83,27.64,27.26,27.080000000000002,26.88,26.69,26.5,26.3,26.12,25.73,N/A,N/A +2012,7,4,8,30,101610,100450,99340,78.47,0,6.68,7.21,7.3,7.3500000000000005,7.37,7.38,7.38,7.38,7.3500000000000005,165.45000000000002,165.43,165.43,165.42000000000002,165.42000000000002,165.42000000000002,165.42000000000002,165.42000000000002,165.41,27.77,27.39,27.21,27.01,26.82,26.63,26.43,26.240000000000002,25.85,N/A,N/A +2012,7,4,9,30,101630,100480,99370,71.33,0,5.89,6.41,6.54,6.640000000000001,6.71,6.7700000000000005,6.82,6.87,6.96,176.51,176.3,176.20000000000002,176.11,176.02,175.95000000000002,175.87,175.81,175.69,28.150000000000002,27.810000000000002,27.64,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A +2012,7,4,10,30,101660,100510,99390,72.55,0,6.19,6.68,6.8,6.86,6.91,6.95,6.97,7,7.03,171.53,171.61,171.62,171.63,171.62,171.62,171.61,171.6,171.58,28.19,27.85,27.68,27.48,27.29,27.1,26.91,26.72,26.34,N/A,N/A +2012,7,4,11,30,101660,100510,99400,75.29,0,5.09,5.45,5.53,5.58,5.61,5.64,5.66,5.67,5.69,176.4,176.54,176.65,176.76,176.87,176.97,177.07,177.17000000000002,177.37,27.97,27.63,27.46,27.26,27.07,26.88,26.69,26.5,26.13,N/A,N/A +2012,7,4,12,30,101670,100520,99410,81.73,0,4.69,5.07,5.15,5.22,5.26,5.29,5.32,5.34,5.37,170.37,169.91,169.82,169.74,169.69,169.65,169.62,169.6,169.56,27.580000000000002,27.21,27.03,26.82,26.63,26.43,26.23,26.04,25.66,N/A,N/A +2012,7,4,13,30,101690,100540,99420,80.61,0,4.6000000000000005,4.93,5.01,5.0600000000000005,5.09,5.12,5.15,5.17,5.21,168.64000000000001,168.29,168.13,167.98,167.85,167.74,167.63,167.54,167.35,27.67,27.310000000000002,27.13,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A +2012,7,4,14,30,101730,100570,99460,81.29,0,5.21,5.51,5.5600000000000005,5.57,5.57,5.57,5.5600000000000005,5.55,5.51,155.8,155.94,156.06,156.18,156.28,156.38,156.49,156.59,156.8,27.78,27.41,27.23,27.03,26.84,26.650000000000002,26.45,26.26,25.88,N/A,N/A +2012,7,4,15,30,101730,100580,99460,79.78,0,4.8100000000000005,5.16,5.24,5.29,5.33,5.36,5.39,5.41,5.44,155.96,156.32,156.52,156.70000000000002,156.86,157.02,157.16,157.29,157.55,27.93,27.560000000000002,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A +2012,7,4,16,30,101730,100580,99470,78.9,0,4.4,4.65,4.69,4.7,4.71,4.71,4.7,4.7,4.68,153.03,153.26,153.45000000000002,153.65,153.86,154.08,154.3,154.52,155.02,28.07,27.71,27.54,27.34,27.14,26.96,26.76,26.57,26.19,N/A,N/A +2012,7,4,17,30,101740,100590,99480,78.33,0,4.12,4.36,4.4,4.42,4.43,4.43,4.43,4.43,4.42,138.65,138.73,138.88,139.04,139.20000000000002,139.37,139.54,139.70000000000002,140.08,28.16,27.810000000000002,27.64,27.43,27.240000000000002,27.05,26.85,26.67,26.29,N/A,N/A +2012,7,4,18,30,101720,100570,99460,79.79,0,4.7700000000000005,5.11,5.2,5.25,5.29,5.32,5.3500000000000005,5.37,5.42,151.58,151.8,151.91,152.05,152.18,152.32,152.47,152.62,152.91,28.2,27.84,27.67,27.46,27.28,27.080000000000002,26.89,26.7,26.32,N/A,N/A +2012,7,4,19,30,101670,100520,99410,81.63,0,6.21,6.68,6.78,6.82,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,136.73,137.21,137.42000000000002,137.6,137.76,137.92000000000002,138.07,138.22,138.51,28.23,27.87,27.69,27.490000000000002,27.3,27.11,26.91,26.73,26.34,N/A,N/A +2012,7,4,20,30,101660,100510,99400,81.17,0,5.8,6.26,6.36,6.42,6.46,6.5,6.5200000000000005,6.54,6.57,139.45000000000002,139.37,139.47,139.6,139.73,139.86,140,140.13,140.44,28.29,27.93,27.76,27.560000000000002,27.37,27.18,26.98,26.8,26.42,N/A,N/A +2012,7,4,21,30,101620,100470,99360,74.86,0,5.62,6.04,6.12,6.16,6.19,6.2,6.21,6.21,6.22,166.98,167.11,167.18,167.24,167.29,167.34,167.4,167.44,167.55,28.51,28.18,28.01,27.810000000000002,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A +2012,7,4,22,30,101650,100500,99390,81.10000000000001,0,5.23,5.61,5.7,5.74,5.7700000000000005,5.8,5.8100000000000005,5.82,5.84,179.20000000000002,179.34,179.35,179.38,179.41,179.45000000000002,179.5,179.54,179.64000000000001,28.27,27.92,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A +2012,7,4,23,30,101610,100460,99350,80.02,0,5.21,5.57,5.63,5.66,5.67,5.67,5.67,5.66,5.64,186.46,186.22,186.20000000000002,186.20000000000002,186.19,186.19,186.19,186.18,186.19,28.330000000000002,27.990000000000002,27.82,27.61,27.43,27.23,27.04,26.85,26.47,N/A,N/A +2012,7,5,0,30,101550,100400,99290,81.01,0,5.22,5.59,5.66,5.69,5.71,5.72,5.73,5.73,5.73,171.97,172.44,172.75,173.04,173.28,173.51,173.73,173.94,174.34,28.21,27.86,27.68,27.490000000000002,27.29,27.1,26.91,26.72,26.34,N/A,N/A +2012,7,5,1,30,101520,100370,99260,83.53,0,4.7700000000000005,5.1000000000000005,5.17,5.22,5.25,5.2700000000000005,5.29,5.3,5.32,175.75,176.5,176.61,176.67000000000002,176.70000000000002,176.70000000000002,176.69,176.68,176.61,28.14,27.79,27.62,27.42,27.23,27.04,26.84,26.66,26.27,N/A,N/A +2012,7,5,2,30,101530,100390,99280,79.34,0,6.57,7.07,7.16,7.21,7.23,7.24,7.24,7.23,7.21,182.97,183.29,183.42000000000002,183.55,183.67000000000002,183.78,183.89000000000001,183.99,184.20000000000002,28.080000000000002,27.72,27.54,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A +2012,7,5,3,30,101560,100410,99300,76.01,0,5.33,5.73,5.82,5.86,5.89,5.91,5.92,5.93,5.94,190.53,190.61,190.65,190.67000000000002,190.68,190.68,190.68,190.68,190.67000000000002,28.14,27.8,27.62,27.43,27.23,27.04,26.85,26.66,26.27,N/A,N/A +2012,7,5,4,30,101560,100410,99300,77.41,0,5.29,5.65,5.71,5.74,5.75,5.76,5.75,5.75,5.73,179.13,179.44,179.59,179.72,179.83,179.93,180.03,180.12,180.31,28.01,27.650000000000002,27.48,27.28,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,7,5,5,30,101560,100420,99300,76.08,0,5.17,5.54,5.61,5.64,5.67,5.68,5.69,5.7,5.7,175.58,175.91,176.13,176.32,176.49,176.65,176.8,176.94,177.21,28,27.650000000000002,27.47,27.27,27.080000000000002,26.89,26.69,26.51,26.12,N/A,N/A +2012,7,5,6,30,101550,100400,99290,73.83,0,5.0200000000000005,5.38,5.46,5.5,5.53,5.55,5.57,5.58,5.61,178.1,177.93,177.88,177.85,177.81,177.79,177.76,177.74,177.71,27.990000000000002,27.64,27.46,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A +2012,7,5,7,30,101610,100460,99350,71.89,0,5.64,6.05,6.140000000000001,6.18,6.21,6.23,6.24,6.25,6.25,178.8,178.9,178.9,178.91,178.92000000000002,178.93,178.96,178.98,179.03,28.11,27.76,27.59,27.39,27.2,27.01,26.810000000000002,26.62,26.240000000000002,N/A,N/A +2012,7,5,8,30,101630,100480,99360,68.19,0,5.4,5.79,5.86,5.89,5.91,5.93,5.94,5.95,5.95,195.13,194.77,194.56,194.37,194.18,194.01,193.84,193.68,193.36,28.22,27.88,27.71,27.51,27.32,27.13,26.93,26.75,26.36,N/A,N/A +2012,7,5,9,30,101600,100450,99330,67.14,0,5.84,6.28,6.37,6.41,6.44,6.45,6.47,6.48,6.48,186.17000000000002,186.46,186.59,186.70000000000002,186.79,186.87,186.93,186.99,187.1,28.21,27.87,27.7,27.5,27.310000000000002,27.12,26.92,26.740000000000002,26.36,N/A,N/A +2012,7,5,10,30,101650,100500,99380,68.31,0,5.3,5.69,5.76,5.8,5.82,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,185.82,185.74,185.66,185.58,185.51,185.44,185.38,185.32,185.23,28.21,27.87,27.7,27.5,27.310000000000002,27.12,26.93,26.740000000000002,26.36,N/A,N/A +2012,7,5,11,30,101700,100550,99430,68.66,0,4.83,5.15,5.21,5.23,5.24,5.24,5.24,5.23,5.22,189.65,190.01,190.17000000000002,190.32,190.45000000000002,190.56,190.67000000000002,190.77,190.97,28.150000000000002,27.810000000000002,27.63,27.44,27.25,27.060000000000002,26.86,26.67,26.29,N/A,N/A +2012,7,5,12,30,101710,100560,99440,70.09,0,4.37,4.66,4.72,4.76,4.79,4.82,4.84,4.86,4.9,190.47,190.9,191.03,191.11,191.17000000000002,191.23000000000002,191.27,191.29,191.33,27.95,27.6,27.42,27.22,27.03,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,7,5,13,30,101760,100610,99490,75.88,0,4.16,4.42,4.47,4.5,4.51,4.53,4.54,4.54,4.55,197.57,196.91,196.62,196.35,196.12,195.9,195.70000000000002,195.51,195.15,27.740000000000002,27.39,27.21,27,26.810000000000002,26.62,26.42,26.240000000000002,25.85,N/A,N/A +2012,7,5,14,30,101780,100630,99510,76.28,0,3.7800000000000002,3.98,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,3.99,197.19,196.72,196.42000000000002,196.12,195.85,195.6,195.34,195.11,194.61,27.76,27.400000000000002,27.22,27.02,26.830000000000002,26.64,26.44,26.26,25.87,N/A,N/A +2012,7,5,15,30,101800,100640,99530,71.79,0,3.29,3.43,3.45,3.45,3.44,3.44,3.43,3.42,3.4,189.56,189.75,189.89000000000001,190.01,190.12,190.22,190.3,190.37,190.51,27.94,27.59,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.060000000000002,N/A,N/A +2012,7,5,16,30,101800,100650,99530,70.5,0,2.35,2.45,2.47,2.48,2.49,2.49,2.5,2.5,2.5,192.53,192.31,192.08,191.84,191.62,191.42000000000002,191.20000000000002,191,190.57,28.04,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.17,N/A,N/A +2012,7,5,17,30,101790,100630,99520,69.8,0,3.0500000000000003,3.2,3.21,3.22,3.23,3.23,3.23,3.23,3.22,176.66,176.96,177.08,177.20000000000002,177.32,177.43,177.57,177.69,177.95000000000002,28.11,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A +2012,7,5,18,30,101760,100600,99490,67.8,0,3.5,3.69,3.72,3.74,3.7600000000000002,3.77,3.7800000000000002,3.7800000000000002,3.8000000000000003,181.21,181.25,181.28,181.33,181.39000000000001,181.45000000000002,181.52,181.58,181.70000000000002,28.310000000000002,27.95,27.78,27.580000000000002,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A +2012,7,5,19,30,101750,100590,99480,69.58,0,3.79,4.01,4.04,4.07,4.08,4.08,4.09,4.09,4.09,183.38,182.5,182.08,181.68,181.32,180.99,180.66,180.36,179.76,28.32,27.95,27.77,27.57,27.38,27.18,26.990000000000002,26.8,26.41,N/A,N/A +2012,7,5,20,30,101690,100540,99430,66.82000000000001,0,4.38,4.61,4.63,4.63,4.62,4.61,4.6000000000000005,4.58,4.54,177.89000000000001,178.04,178.20000000000002,178.35,178.48,178.6,178.73,178.85,179.09,28.45,28.09,27.92,27.72,27.53,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,7,5,21,30,101660,100510,99400,67.41,0,4.26,4.57,4.63,4.66,4.69,4.72,4.73,4.75,4.78,182.58,182.41,182.29,182.16,182.05,181.95000000000002,181.85,181.75,181.56,28.43,28.09,27.91,27.72,27.52,27.330000000000002,27.14,26.95,26.560000000000002,N/A,N/A +2012,7,5,22,30,101640,100490,99380,68.08,0,4.45,4.75,4.79,4.82,4.83,4.83,4.83,4.83,4.82,176.42000000000002,176.46,176.45000000000002,176.42000000000002,176.41,176.4,176.38,176.37,176.34,28.38,28.04,27.87,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A +2012,7,5,23,30,101610,100460,99350,65.77,0,5.05,5.4,5.46,5.5,5.5200000000000005,5.53,5.54,5.55,5.5600000000000005,182.28,182.35,182.36,182.37,182.38,182.4,182.41,182.42000000000002,182.44,28.42,28.09,27.93,27.73,27.54,27.36,27.16,26.98,26.6,N/A,N/A +2012,7,6,0,30,101600,100450,99330,68.37,0,4.83,5.19,5.26,5.29,5.32,5.33,5.3500000000000005,5.3500000000000005,5.36,176.17000000000002,176.13,176.15,176.18,176.20000000000002,176.22,176.25,176.27,176.31,28.3,27.96,27.79,27.59,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,7,6,1,30,101550,100400,99290,65.77,0,5.5200000000000005,5.88,5.94,5.95,5.96,5.95,5.95,5.93,5.9,177.61,178.02,178.31,178.6,178.88,179.14000000000001,179.42000000000002,179.68,180.23,28.28,27.95,27.77,27.57,27.39,27.19,27,26.810000000000002,26.43,N/A,N/A +2012,7,6,2,30,101580,100420,99310,66.97,0,5.34,5.71,5.7700000000000005,5.79,5.8,5.8,5.79,5.78,5.75,183.26,183.33,183.34,183.35,183.35,183.35,183.35,183.35,183.34,28.240000000000002,27.900000000000002,27.73,27.54,27.34,27.150000000000002,26.96,26.77,26.38,N/A,N/A +2012,7,6,3,30,101580,100430,99320,62.22,0,4.99,5.37,5.44,5.49,5.5200000000000005,5.55,5.57,5.58,5.61,182.75,182.61,182.51,182.43,182.36,182.29,182.22,182.17000000000002,182.05,28.36,28.03,27.86,27.67,27.48,27.29,27.09,26.91,26.53,N/A,N/A +2012,7,6,4,30,101590,100430,99320,67.27,0,5.41,5.7700000000000005,5.83,5.8500000000000005,5.86,5.86,5.84,5.83,5.8,177.93,177.95000000000002,177.95000000000002,177.95000000000002,177.94,177.93,177.92000000000002,177.91,177.89000000000001,28.18,27.84,27.67,27.47,27.28,27.09,26.89,26.71,26.32,N/A,N/A +2012,7,6,5,30,101590,100440,99320,59.300000000000004,0,4.66,5.04,5.13,5.19,5.24,5.28,5.3100000000000005,5.34,5.4,188.15,187.77,187.53,187.28,187.05,186.83,186.6,186.38,185.9,28.490000000000002,28.17,28,27.810000000000002,27.62,27.43,27.23,27.05,26.67,N/A,N/A +2012,7,6,6,30,101610,100460,99350,60.57,0,6.16,6.5600000000000005,6.63,6.640000000000001,6.640000000000001,6.640000000000001,6.63,6.61,6.58,186.08,186.31,186.41,186.52,186.6,186.69,186.78,186.87,187.08,28.44,28.080000000000002,27.91,27.71,27.51,27.32,27.12,26.94,26.55,N/A,N/A +2012,7,6,7,30,101610,100460,99340,63,0,4.95,5.29,5.34,5.37,5.39,5.4,5.4,5.4,5.4,192.38,192.29,192.31,192.33,192.37,192.4,192.43,192.46,192.52,28.46,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,7,6,8,30,101630,100470,99360,60.120000000000005,0,5.04,5.42,5.5,5.54,5.58,5.6000000000000005,5.62,5.64,5.66,195.95000000000002,195.53,195.32,195.13,194.96,194.79,194.64000000000001,194.5,194.21,28.63,28.29,28.11,27.91,27.72,27.54,27.34,27.16,26.77,N/A,N/A +2012,7,6,9,30,101650,100490,99380,58.09,0,4.19,4.46,4.51,4.54,4.5600000000000005,4.57,4.59,4.6000000000000005,4.61,205.62,205,204.70000000000002,204.43,204.19,203.96,203.74,203.53,203.12,28.71,28.37,28.2,28.01,27.810000000000002,27.62,27.43,27.240000000000002,26.85,N/A,N/A +2012,7,6,10,30,101680,100530,99420,55.92,0,3.92,4.17,4.21,4.23,4.25,4.25,4.26,4.2700000000000005,4.2700000000000005,206.13,206.17000000000002,206.08,206.01,205.93,205.85,205.78,205.71,205.57,28.8,28.47,28.3,28.1,27.91,27.72,27.53,27.34,26.96,N/A,N/A +2012,7,6,11,30,101670,100520,99410,55.99,0,3.61,3.86,3.92,3.95,3.98,4,4.0200000000000005,4.03,4.07,214.37,214.1,213.99,213.9,213.81,213.73000000000002,213.65,213.58,213.44,28.82,28.48,28.310000000000002,28.12,27.93,27.740000000000002,27.54,27.36,26.97,N/A,N/A +2012,7,6,12,30,101690,100540,99420,55.31,0,3.5700000000000003,3.8000000000000003,3.85,3.87,3.89,3.91,3.92,3.93,3.94,227.06,226.37,225.99,225.63,225.32,225.03,224.75,224.49,223.99,28.82,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.96,N/A,N/A +2012,7,6,13,30,101750,100590,99480,56.43,0,2.75,2.9,2.92,2.94,2.95,2.95,2.96,2.96,2.97,240.58,239.89000000000001,239.48000000000002,239.09,238.72,238.37,238.02,237.69,237.03,28.73,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.45,27.27,26.88,N/A,N/A +2012,7,6,14,30,101740,100590,99470,62.59,0,2.98,3.11,3.12,3.12,3.11,3.1,3.09,3.08,3.0500000000000003,238.38,238.9,239.22,239.54,239.83,240.11,240.38,240.64000000000001,241.16,28.490000000000002,28.14,27.97,27.77,27.57,27.39,27.19,27,26.61,N/A,N/A +2012,7,6,15,30,101780,100620,99510,60.14,0,2.29,2.38,2.39,2.38,2.38,2.37,2.37,2.36,2.34,232.24,232.49,232.79,233.07,233.33,233.59,233.86,234.1,234.61,28.580000000000002,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A +2012,7,6,16,30,101760,100610,99500,62.72,0,1.9100000000000001,2,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2,241.32,241.98000000000002,242.29,242.61,242.92000000000002,243.21,243.49,243.74,244.3,28.5,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27,26.61,N/A,N/A +2012,7,6,17,30,101770,100610,99500,58.68,0,1.53,1.59,1.61,1.62,1.62,1.6300000000000001,1.6400000000000001,1.6400000000000001,1.6600000000000001,229.39000000000001,230.19,230.59,230.95000000000002,231.23000000000002,231.48000000000002,231.71,231.91,232.20000000000002,28.66,28.310000000000002,28.13,27.93,27.740000000000002,27.55,27.36,27.18,26.79,N/A,N/A +2012,7,6,18,30,101730,100570,99460,60.36,0,2.42,2.5100000000000002,2.5,2.48,2.47,2.45,2.44,2.42,2.39,181.37,181.13,180.97,180.8,180.64000000000001,180.48,180.31,180.14000000000001,179.79,28.67,28.32,28.14,27.94,27.76,27.57,27.38,27.2,26.82,N/A,N/A +2012,7,6,19,30,101700,100550,99430,60.050000000000004,0,3.09,3.22,3.23,3.23,3.22,3.21,3.2,3.19,3.16,175.91,176.11,176.26,176.4,176.54,176.69,176.85,177,177.37,28.79,28.44,28.27,28.080000000000002,27.89,27.71,27.52,27.34,26.98,N/A,N/A +2012,7,6,20,30,101630,100480,99370,59.34,0,4.6000000000000005,4.83,4.84,4.82,4.79,4.76,4.72,4.68,4.57,191.63,191.69,191.76,191.85,191.94,192.04,192.14000000000001,192.24,192.52,28.95,28.62,28.45,28.26,28.080000000000002,27.900000000000002,27.71,27.54,27.18,N/A,N/A +2012,7,6,21,30,101630,100480,99360,56.410000000000004,0,4.61,4.8500000000000005,4.86,4.84,4.82,4.78,4.74,4.7,4.6000000000000005,189.23,189.36,189.48,189.61,189.75,189.88,190.03,190.17000000000002,190.49,29.18,28.87,28.7,28.51,28.330000000000002,28.150000000000002,27.96,27.78,27.42,N/A,N/A +2012,7,6,22,30,101590,100440,99330,59.81,0,3.7,3.94,3.97,3.99,4,4,4.01,4.01,4.01,198.55,198.47,198.48000000000002,198.5,198.55,198.61,198.69,198.77,199.06,29.1,28.8,28.64,28.46,28.28,28.11,27.93,27.75,27.41,N/A,N/A +2012,7,6,23,30,101580,100430,99320,55.550000000000004,0,4.15,4.43,4.45,4.46,4.46,4.45,4.44,4.43,4.39,194.71,194.56,194.5,194.41,194.33,194.23000000000002,194.12,194.02,193.77,29.330000000000002,29.04,28.87,28.68,28.5,28.32,28.13,27.95,27.580000000000002,N/A,N/A +2012,7,7,0,30,101510,100360,99250,56.21,0,4.67,5,5.04,5.05,5.0600000000000005,5.05,5.05,5.04,5.01,191.96,191.88,191.85,191.81,191.77,191.72,191.67000000000002,191.62,191.51,29.3,29,28.84,28.650000000000002,28.47,28.29,28.1,27.93,27.560000000000002,N/A,N/A +2012,7,7,1,30,101500,100350,99240,56.410000000000004,0,4.96,5.33,5.38,5.39,5.4,5.4,5.4,5.39,5.37,194.25,193.91,193.78,193.64000000000001,193.5,193.37,193.21,193.07,192.77,29.310000000000002,29.02,28.85,28.67,28.48,28.3,28.11,27.94,27.57,N/A,N/A +2012,7,7,2,30,101530,100390,99270,55.17,0,4.6000000000000005,4.9,4.92,4.91,4.9,4.88,4.8500000000000005,4.82,4.7700000000000005,193.6,192.71,192.16,191.6,191.04,190.5,189.9,189.34,188.08,29.32,29.02,28.85,28.66,28.47,28.28,28.080000000000002,27.900000000000002,27.52,N/A,N/A +2012,7,7,3,30,101580,100430,99310,55.34,0,4.55,4.89,4.93,4.95,4.96,4.96,4.96,4.95,4.94,184.74,184.54,184.43,184.33,184.24,184.15,184.05,183.96,183.76,29.37,29.07,28.91,28.71,28.52,28.330000000000002,28.13,27.95,27.560000000000002,N/A,N/A +2012,7,7,4,30,101520,100370,99260,54.06,0,5.03,5.43,5.5,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.61,196.25,196.05,195.88,195.72,195.56,195.41,195.24,195.09,194.73000000000002,29.35,29.05,28.89,28.69,28.51,28.32,28.12,27.94,27.560000000000002,N/A,N/A +2012,7,7,5,30,101560,100410,99300,56.07,0,4.89,5.26,5.32,5.3500000000000005,5.37,5.38,5.38,5.39,5.39,202.81,202.5,202.31,202.11,201.91,201.73000000000002,201.52,201.32,200.89000000000001,29.240000000000002,28.93,28.77,28.57,28.38,28.2,28,27.82,27.44,N/A,N/A +2012,7,7,6,30,101590,100440,99330,59.74,0,4.96,5.28,5.32,5.33,5.34,5.33,5.33,5.32,5.29,205.14000000000001,205.72,206.07,206.42000000000002,206.74,207.05,207.37,207.66,208.27,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A +2012,7,7,7,30,101610,100460,99350,60.77,0,4.54,4.84,4.88,4.89,4.9,4.9,4.89,4.88,4.86,209.94,210.16,210.26,210.33,210.39000000000001,210.44,210.49,210.53,210.6,28.87,28.55,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A +2012,7,7,8,30,101610,100460,99350,62.730000000000004,0,4.92,5.2700000000000005,5.36,5.41,5.45,5.49,5.5200000000000005,5.55,5.6000000000000005,219.82,219.89000000000001,219.94,220,220.05,220.1,220.15,220.19,220.29,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.91,N/A,N/A +2012,7,7,9,30,101600,100450,99340,64.97,0,5.12,5.47,5.5200000000000005,5.54,5.55,5.55,5.55,5.55,5.53,234.14000000000001,233.68,233.42000000000002,233.13,232.87,232.62,232.36,232.12,231.62,28.62,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.740000000000002,N/A,N/A +2012,7,7,10,30,101630,100480,99370,69.62,0,4.5600000000000005,4.93,5.0200000000000005,5.09,5.15,5.19,5.23,5.2700000000000005,5.34,236.26,236.01,235.83,235.66,235.51,235.37,235.22,235.09,234.82,28.42,28.060000000000002,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,7,11,30,101650,100500,99390,69.4,0,5.57,5.91,5.96,5.97,5.98,5.98,5.97,5.96,5.94,232.02,232.32,232.52,232.71,232.89000000000001,233.05,233.21,233.35,233.63,28.5,28.14,27.97,27.77,27.57,27.39,27.19,27,26.62,N/A,N/A +2012,7,7,12,30,101650,100500,99390,75.57000000000001,0,4.76,5.12,5.2,5.25,5.28,5.3,5.32,5.33,5.34,224.16,224.69,225.07,225.45000000000002,225.8,226.14000000000001,226.47,226.78,227.41,28.26,27.89,27.71,27.51,27.32,27.12,26.92,26.740000000000002,26.35,N/A,N/A +2012,7,7,13,30,101660,100510,99390,70.22,0,4.92,5.26,5.32,5.36,5.39,5.41,5.42,5.44,5.46,260.98,260.52,260.19,259.87,259.59000000000003,259.32,259.07,258.85,258.39,28.53,28.17,28,27.8,27.61,27.42,27.23,27.04,26.66,N/A,N/A +2012,7,7,14,30,101690,100540,99430,76.37,0,4.61,4.83,4.8500000000000005,4.84,4.82,4.8,4.7700000000000005,4.75,4.69,282.63,281.49,280.91,280.31,279.75,279.2,278.63,278.09000000000003,276.95,28.1,27.73,27.55,27.35,27.17,26.98,26.78,26.6,26.22,N/A,N/A +2012,7,7,15,30,101700,100550,99430,75.03,0,4.17,4.38,4.4,4.41,4.4,4.4,4.39,4.38,4.3500000000000005,274.77,274.52,274.39,274.26,274.13,274.01,273.88,273.74,273.44,28.14,27.76,27.580000000000002,27.38,27.19,27,26.8,26.62,26.240000000000002,N/A,N/A +2012,7,7,16,30,101720,100560,99450,74.14,0,3.39,3.56,3.59,3.6,3.61,3.61,3.61,3.62,3.62,245.04,245.61,245.88,246.14000000000001,246.37,246.58,246.79,246.98000000000002,247.35,28.310000000000002,27.94,27.76,27.560000000000002,27.37,27.18,26.98,26.79,26.41,N/A,N/A +2012,7,7,17,30,101690,100540,99430,74.29,0,3.63,3.8200000000000003,3.85,3.86,3.88,3.88,3.89,3.89,3.9,209.23000000000002,209.68,209.99,210.31,210.61,210.93,211.27,211.61,212.47,28.36,27.990000000000002,27.810000000000002,27.62,27.43,27.25,27.05,26.87,26.51,N/A,N/A +2012,7,7,18,30,101690,100540,99430,73.91,0,2.94,3.06,3.08,3.08,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,184.07,184.54,184.9,185.27,185.63,185.97,186.36,186.74,187.6,28.57,28.21,28.04,27.84,27.650000000000002,27.46,27.27,27.09,26.72,N/A,N/A +2012,7,7,19,30,101640,100490,99380,69.81,0,4.53,4.8100000000000005,4.8500000000000005,4.86,4.87,4.87,4.87,4.87,4.8500000000000005,180.58,180.81,180.94,181.06,181.17000000000002,181.27,181.37,181.48,181.69,28.89,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A +2012,7,7,20,30,101590,100440,99330,67.85,0,5.38,5.73,5.79,5.82,5.83,5.84,5.84,5.84,5.82,179.83,180.07,180.20000000000002,180.34,180.49,180.64000000000001,180.8,180.96,181.31,28.97,28.62,28.45,28.26,28.07,27.88,27.68,27.5,27.13,N/A,N/A +2012,7,7,21,30,101530,100390,99280,72.96000000000001,0,6.13,6.5600000000000005,6.640000000000001,6.67,6.68,6.68,6.68,6.67,6.640000000000001,193.45000000000002,193.26,193.1,192.93,192.77,192.6,192.43,192.27,191.9,28.79,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,7,7,22,30,101530,100380,99270,75.85000000000001,0,6.82,7.38,7.49,7.55,7.58,7.61,7.62,7.62,7.62,197.62,197.64000000000001,197.62,197.59,197.56,197.54,197.51,197.48000000000002,197.42000000000002,28.73,28.37,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A +2012,7,7,23,30,101520,100370,99260,71.48,0,6.19,6.67,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.86,6.87,6.88,6.88,200.09,200.05,200.01,199.98000000000002,199.97,199.95000000000002,199.95000000000002,199.95000000000002,199.95000000000002,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.6,27.42,27.04,N/A,N/A +2012,7,8,0,30,101530,100380,99270,71.9,0,5.84,6.3,6.4,6.46,6.5,6.53,6.5600000000000005,6.57,6.6000000000000005,203.37,203.46,203.46,203.46,203.46,203.46,203.46,203.47,203.47,28.86,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A +2012,7,8,1,30,101560,100420,99310,74.61,0,6.05,6.51,6.6000000000000005,6.65,6.68,6.7,6.71,6.72,6.71,219.83,219.72,219.56,219.39000000000001,219.24,219.09,218.93,218.78,218.5,28.72,28.37,28.19,27.990000000000002,27.79,27.6,27.400000000000002,27.22,26.830000000000002,N/A,N/A +2012,7,8,2,30,101580,100430,99320,69.92,0,5.97,6.41,6.5,6.54,6.5600000000000005,6.58,6.59,6.59,6.59,214.61,214.70000000000002,214.87,215.05,215.21,215.37,215.54,215.69,216.01,28.84,28.5,28.32,28.12,27.93,27.740000000000002,27.55,27.36,26.98,N/A,N/A +2012,7,8,3,30,101550,100400,99290,70.10000000000001,0,6.49,7,7.1000000000000005,7.16,7.2,7.23,7.25,7.26,7.2700000000000005,210.45000000000002,210.3,210.27,210.24,210.20000000000002,210.17000000000002,210.13,210.1,210.02,28.78,28.43,28.25,28.05,27.86,27.67,27.47,27.29,26.900000000000002,N/A,N/A +2012,7,8,4,30,101570,100420,99310,66.98,0,6.41,6.92,7.03,7.08,7.12,7.140000000000001,7.16,7.17,7.19,205.73000000000002,205.82,205.89000000000001,205.96,206.01,206.05,206.1,206.15,206.23000000000002,28.87,28.53,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A +2012,7,8,5,30,101540,100390,99280,64.81,0,6.63,7.18,7.29,7.3500000000000005,7.390000000000001,7.42,7.43,7.45,7.46,203.88,204.53,204.78,205,205.19,205.35,205.49,205.63,205.88,28.92,28.580000000000002,28.400000000000002,28.21,28.01,27.830000000000002,27.63,27.44,27.05,N/A,N/A +2012,7,8,6,30,101580,100430,99320,60.88,0,6.3100000000000005,6.7700000000000005,6.84,6.87,6.890000000000001,6.9,6.9,6.9,6.88,212.96,212.76,212.65,212.54,212.44,212.34,212.25,212.15,211.98000000000002,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,7,8,7,30,101610,100460,99350,64.29,0,6.71,7.2700000000000005,7.390000000000001,7.46,7.5,7.53,7.55,7.57,7.59,204.13,204.37,204.46,204.51,204.56,204.59,204.61,204.63,204.65,28.900000000000002,28.560000000000002,28.38,28.19,27.990000000000002,27.8,27.61,27.42,27.03,N/A,N/A +2012,7,8,8,30,101640,100490,99380,59.980000000000004,0,6.82,7.34,7.43,7.46,7.48,7.49,7.48,7.48,7.45,200.89000000000001,201.08,201.17000000000002,201.24,201.29,201.34,201.39000000000001,201.43,201.5,29.03,28.69,28.52,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.18,N/A,N/A +2012,7,8,9,30,101630,100480,99370,59.99,0,6.2700000000000005,6.75,6.84,6.88,6.91,6.93,6.94,6.95,6.95,196.96,197.03,197.16,197.3,197.43,197.56,197.70000000000002,197.83,198.08,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.18,N/A,N/A +2012,7,8,10,30,101650,100500,99390,59.34,0,5.92,6.34,6.4,6.42,6.42,6.41,6.4,6.38,6.34,210.47,210.6,210.55,210.48000000000002,210.39000000000001,210.31,210.21,210.12,209.92000000000002,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.18,N/A,N/A +2012,7,8,11,30,101670,100520,99410,60,0,5.57,6,6.08,6.12,6.140000000000001,6.16,6.16,6.16,6.16,210.15,210.4,210.45000000000002,210.47,210.49,210.5,210.5,210.49,210.49,29.03,28.71,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.18,N/A,N/A +2012,7,8,12,30,101700,100550,99440,59.160000000000004,0,6.1000000000000005,6.55,6.62,6.65,6.67,6.67,6.67,6.67,6.65,214.06,214.09,214.12,214.17000000000002,214.21,214.25,214.29,214.32,214.4,29.09,28.76,28.59,28.39,28.2,28.01,27.82,27.63,27.240000000000002,N/A,N/A +2012,7,8,13,30,101710,100560,99450,54.32,0,4.26,4.65,4.73,4.79,4.84,4.88,4.92,4.95,5,212.08,212.43,212.64000000000001,212.82,212.98000000000002,213.11,213.25,213.37,213.6,29.28,28.96,28.79,28.6,28.400000000000002,28.22,28.02,27.830000000000002,27.45,N/A,N/A +2012,7,8,14,30,101740,100590,99470,53.9,0,4.43,4.73,4.79,4.82,4.8500000000000005,4.86,4.88,4.89,4.91,230.74,230.32,230.03,229.75,229.5,229.26,229.03,228.81,228.36,29.25,28.94,28.77,28.580000000000002,28.39,28.2,28,27.82,27.43,N/A,N/A +2012,7,8,15,30,101770,100620,99500,58.29,0,4.62,4.92,4.98,5.01,5.04,5.05,5.07,5.08,5.1000000000000005,219.97,219.77,219.65,219.54,219.43,219.32,219.23000000000002,219.13,218.96,29.01,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,7,8,16,30,101770,100620,99500,56.46,0,4.37,4.61,4.65,4.66,4.67,4.67,4.67,4.66,4.65,223.3,223.13,223.13,223.11,223.1,223.08,223.06,223.03,222.99,29.1,28.77,28.6,28.400000000000002,28.21,28.02,27.830000000000002,27.64,27.25,N/A,N/A +2012,7,8,17,30,101750,100600,99480,64.17,0,3.85,4.09,4.12,4.14,4.14,4.14,4.14,4.14,4.12,215.81,215.68,215.62,215.55,215.49,215.43,215.36,215.29,215.16,28.84,28.490000000000002,28.310000000000002,28.11,27.92,27.73,27.53,27.34,26.96,N/A,N/A +2012,7,8,18,30,101700,100550,99440,65.07000000000001,0,4.0200000000000005,4.21,4.22,4.21,4.19,4.17,4.15,4.13,4.07,202.17000000000002,201.73000000000002,201.47,201.17000000000002,200.87,200.59,200.28,199.98000000000002,199.32,28.830000000000002,28.47,28.29,28.09,27.900000000000002,27.71,27.5,27.32,26.93,N/A,N/A +2012,7,8,19,30,101680,100530,99420,67.15,0,4.5,4.76,4.8,4.82,4.82,4.82,4.82,4.82,4.8100000000000005,177.27,177.48,177.58,177.67000000000002,177.74,177.8,177.87,177.92000000000002,178.06,28.82,28.47,28.29,28.09,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A +2012,7,8,20,30,101640,100490,99380,66.17,0,4.55,4.84,4.9,4.93,4.95,4.97,4.97,4.98,5,172.37,172.64000000000001,172.86,173.11,173.35,173.61,173.9,174.17000000000002,174.84,28.87,28.54,28.37,28.18,27.990000000000002,27.810000000000002,27.62,27.44,27.07,N/A,N/A +2012,7,8,21,30,101600,100450,99340,70.12,0,5.32,5.76,5.86,5.92,5.97,6,6.03,6.05,6.08,175.17000000000002,176.3,176.73,177.11,177.43,177.70000000000002,177.96,178.19,178.62,28.84,28.48,28.3,28.1,27.900000000000002,27.72,27.52,27.330000000000002,26.94,N/A,N/A +2012,7,8,22,30,101530,100390,99280,75.31,0,6.26,6.72,6.8100000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.87,169.15,169.4,169.61,169.84,170.07,170.3,170.55,170.8,171.33,28.64,28.28,28.11,27.91,27.72,27.54,27.34,27.16,26.79,N/A,N/A +2012,7,8,23,30,101520,100370,99260,75.58,0,6.53,7.04,7.15,7.21,7.26,7.28,7.3,7.32,7.33,173.95000000000002,174.14000000000001,174.24,174.34,174.43,174.52,174.62,174.71,174.9,28.62,28.26,28.080000000000002,27.88,27.68,27.490000000000002,27.29,27.11,26.72,N/A,N/A +2012,7,9,0,30,101500,100350,99240,75.62,0,7.2,7.7700000000000005,7.9,7.96,8,8.03,8.05,8.07,8.08,179.1,179.1,179.11,179.14000000000001,179.17000000000002,179.21,179.25,179.29,179.37,28.6,28.23,28.060000000000002,27.86,27.66,27.47,27.28,27.1,26.72,N/A,N/A +2012,7,9,1,30,101470,100320,99210,73.04,0,7.3,7.88,7.99,8.040000000000001,8.07,8.08,8.08,8.08,8.05,177.31,177.42000000000002,177.56,177.69,177.82,177.95000000000002,178.07,178.19,178.45000000000002,28.62,28.25,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A +2012,7,9,2,30,101500,100350,99240,70.36,0,6.890000000000001,7.45,7.57,7.62,7.66,7.69,7.71,7.72,7.72,176.86,176.91,176.96,177.01,177.04,177.08,177.12,177.16,177.25,28.77,28.42,28.25,28.04,27.86,27.66,27.47,27.28,26.900000000000002,N/A,N/A +2012,7,9,3,30,101520,100370,99260,70.58,0,7.17,7.7700000000000005,7.91,7.98,8.03,8.06,8.09,8.11,8.13,178.9,178.76,178.67000000000002,178.59,178.51,178.42000000000002,178.35,178.27,178.13,28.810000000000002,28.46,28.29,28.09,27.900000000000002,27.71,27.51,27.32,26.94,N/A,N/A +2012,7,9,4,30,101500,100350,99240,73.5,0,7.71,8.370000000000001,8.5,8.56,8.6,8.620000000000001,8.63,8.63,8.620000000000001,174.01,174.12,174.22,174.33,174.42000000000002,174.53,174.63,174.73,174.94,28.73,28.37,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A +2012,7,9,5,30,101540,100390,99280,68.88,0,6.99,7.5600000000000005,7.68,7.74,7.7700000000000005,7.8,7.8100000000000005,7.82,7.83,175.81,176.03,176.18,176.34,176.48,176.63,176.79,176.94,177.25,28.95,28.62,28.44,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,7,9,6,30,101520,100380,99270,70.62,0,6.72,7.3,7.43,7.5,7.55,7.58,7.61,7.62,7.640000000000001,186.61,186.73,186.81,186.91,187,187.09,187.19,187.28,187.47,28.91,28.55,28.38,28.18,27.98,27.79,27.59,27.41,27.02,N/A,N/A +2012,7,9,7,30,101540,100390,99280,74.17,0,6.88,7.44,7.5600000000000005,7.63,7.67,7.69,7.71,7.72,7.72,194.26,194.41,194.48000000000002,194.55,194.61,194.67000000000002,194.73000000000002,194.79,194.89000000000001,28.79,28.43,28.26,28.05,27.86,27.67,27.47,27.28,26.900000000000002,N/A,N/A +2012,7,9,8,30,101530,100390,99280,72.99,0,6.5200000000000005,7.0600000000000005,7.18,7.24,7.29,7.32,7.34,7.3500000000000005,7.37,203.24,203.24,203.26,203.29,203.31,203.34,203.37,203.4,203.47,28.82,28.47,28.3,28.1,27.91,27.72,27.52,27.330000000000002,26.95,N/A,N/A +2012,7,9,9,30,101530,100390,99280,73.72,0,6.78,7.2700000000000005,7.38,7.43,7.47,7.5,7.51,7.53,7.5600000000000005,205.49,205.67000000000002,205.76,205.86,205.95000000000002,206.04,206.14000000000001,206.24,206.44,28.8,28.45,28.28,28.09,27.900000000000002,27.72,27.52,27.34,26.97,N/A,N/A +2012,7,9,10,30,101550,100400,99290,76.26,0,5.91,6.28,6.36,6.4,6.43,6.45,6.46,6.47,6.5,210.83,211.20000000000002,211.44,211.68,211.91,212.13,212.35,212.56,213.01,28.75,28.400000000000002,28.240000000000002,28.04,27.86,27.67,27.48,27.3,26.93,N/A,N/A +2012,7,9,11,30,101560,100420,99300,78.93,0,5.79,6.23,6.33,6.38,6.43,6.45,6.48,6.49,6.51,217.16,217.23000000000002,217.34,217.48000000000002,217.6,217.72,217.85,217.98000000000002,218.23000000000002,28.77,28.42,28.25,28.05,27.86,27.67,27.48,27.29,26.91,N/A,N/A +2012,7,9,12,30,101560,100410,99300,71.47,0,5.12,5.63,5.75,5.83,5.88,5.93,5.96,5.99,6.03,226.14000000000001,226.34,226.58,226.83,227.07,227.31,227.54,227.76,228.22,29.29,28.96,28.8,28.6,28.41,28.22,28.03,27.85,27.47,N/A,N/A +2012,7,9,13,30,101530,100380,99270,78.17,0,5.71,6.04,6.08,6.07,6.05,6.0200000000000005,5.98,5.95,5.87,239.71,239.73000000000002,239.78,239.82,239.85,239.88,239.92000000000002,239.94,240.02,28.8,28.45,28.27,28.07,27.89,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,7,9,14,30,101550,100400,99290,75.98,0,5.07,5.51,5.62,5.69,5.75,5.79,5.82,5.8500000000000005,5.9,241.79,242.35,242.75,243.17000000000002,243.56,243.93,244.29,244.63,245.32,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A +2012,7,9,15,30,101560,100420,99310,77.29,0,5.73,6.2,6.3100000000000005,6.38,6.42,6.46,6.48,6.51,6.54,266.67,266.12,265.64,265.14,264.7,264.29,263.91,263.55,262.89,29,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A +2012,7,9,16,30,101530,100380,99270,78.66,1.1,3.48,3.97,4.21,4.43,4.63,4.83,5.03,5.21,5.58,235.96,234.92000000000002,234.46,234.07,233.86,233.77,233.92000000000002,234.17000000000002,235.19,28.22,27.92,27.79,27.64,27.5,27.37,27.240000000000002,27.12,26.86,N/A,N/A +2012,7,9,17,30,101490,100350,99240,72.48,0,5.55,5.92,5.97,5.98,5.98,5.96,5.94,5.92,5.86,220.63,220.56,220.6,220.61,220.61,220.61,220.6,220.59,220.55,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,7,9,18,30,101440,100300,99190,74.78,0,6.49,6.99,7.08,7.11,7.13,7.140000000000001,7.13,7.13,7.1000000000000005,221.63,221.70000000000002,221.75,221.79,221.83,221.86,221.9,221.94,222.02,29.23,28.89,28.72,28.51,28.330000000000002,28.14,27.94,27.76,27.38,N/A,N/A +2012,7,9,19,30,101420,100280,99170,74.03,0,7.92,8.64,8.8,8.870000000000001,8.93,8.97,8.99,9,9.02,222.78,222.89000000000001,223.02,223.14000000000001,223.24,223.33,223.41,223.49,223.64000000000001,29.32,28.990000000000002,28.82,28.62,28.44,28.25,28.05,27.87,27.490000000000002,N/A,N/A +2012,7,9,20,30,101410,100270,99160,73.85000000000001,0,8.07,8.75,8.88,8.94,8.97,8.99,8.99,8.99,8.97,235.59,235.4,235.17000000000002,234.92000000000002,234.68,234.43,234.17000000000002,233.91,233.34,29.05,28.71,28.54,28.34,28.16,27.97,27.79,27.61,27.25,N/A,N/A +2012,7,9,21,30,101350,100210,99100,73.18,0,6.3,6.84,6.99,7.09,7.17,7.24,7.3,7.36,7.47,220.89000000000001,220.61,220.61,220.62,220.63,220.65,220.68,220.71,220.8,29.04,28.71,28.55,28.36,28.18,28,27.810000000000002,27.64,27.28,N/A,N/A +2012,7,9,22,30,101350,100210,99100,72.71000000000001,0,5.57,6.04,6.15,6.21,6.26,6.29,6.3100000000000005,6.34,6.37,202.95000000000002,203.3,203.54,203.77,203.97,204.17000000000002,204.36,204.54,204.91,29.32,29,28.830000000000002,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A +2012,7,9,23,30,101330,100190,99090,74.65,0,5.72,6.19,6.29,6.3500000000000005,6.4,6.43,6.46,6.49,6.53,200.03,200.26,200.44,200.64000000000001,200.83,201.02,201.22,201.41,201.84,29.18,28.85,28.69,28.5,28.310000000000002,28.12,27.93,27.75,27.38,N/A,N/A +2012,7,10,0,30,101290,100150,99040,74.82000000000001,0,6.87,7.43,7.55,7.61,7.65,7.67,7.69,7.7,7.72,202.8,202.81,202.82,202.86,202.91,202.96,203.03,203.09,203.25,29.240000000000002,28.92,28.76,28.560000000000002,28.38,28.19,28,27.82,27.45,N/A,N/A +2012,7,10,1,30,101310,100170,99060,73.2,0,6.65,7.19,7.3,7.3500000000000005,7.38,7.390000000000001,7.4,7.4,7.390000000000001,203.42000000000002,203.74,203.97,204.18,204.36,204.53,204.69,204.84,205.13,29.080000000000002,28.740000000000002,28.57,28.37,28.18,27.990000000000002,27.79,27.61,27.23,N/A,N/A +2012,7,10,2,30,101290,100150,99040,76.91,0,7.6000000000000005,8.31,8.47,8.57,8.63,8.67,8.700000000000001,8.72,8.74,215.54,215.68,215.72,215.73000000000002,215.74,215.75,215.73000000000002,215.71,215.67000000000002,28.94,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A +2012,7,10,3,30,101320,100180,99070,77.07000000000001,0,7.25,7.84,7.98,8.06,8.13,8.18,8.22,8.25,8.31,210.9,210.87,210.95000000000002,211.06,211.16,211.27,211.38,211.48000000000002,211.70000000000002,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.62,27.43,27.05,N/A,N/A +2012,7,10,4,30,101340,100190,99090,74.96000000000001,0,9.28,10.09,10.25,10.32,10.35,10.370000000000001,10.370000000000001,10.370000000000001,10.35,216.99,216.4,216.22,216.06,215.94,215.84,215.77,215.70000000000002,215.61,29.150000000000002,28.810000000000002,28.64,28.44,28.26,28.07,27.88,27.7,27.32,N/A,N/A +2012,7,10,5,30,101290,100150,99040,74.72,0,9.05,9.870000000000001,10.06,10.16,10.22,10.26,10.290000000000001,10.32,10.34,214.28,214.38,214.39000000000001,214.38,214.37,214.33,214.29,214.25,214.15,29,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A +2012,7,10,6,30,101310,100170,99060,75.8,0,9.46,10.5,10.76,10.92,11.040000000000001,11.120000000000001,11.18,11.22,11.290000000000001,211.63,212.03,212.18,212.3,212.39000000000001,212.47,212.53,212.59,212.67000000000002,28.91,28.580000000000002,28.41,28.2,28.01,27.82,27.63,27.44,27.05,N/A,N/A +2012,7,10,7,30,101290,100140,99040,67.84,0,8.97,9.870000000000001,10.07,10.18,10.27,10.32,10.370000000000001,10.4,10.450000000000001,218.38,218.58,218.67000000000002,218.76,218.84,218.91,218.99,219.06,219.19,29.16,28.85,28.68,28.48,28.3,28.11,27.91,27.73,27.35,N/A,N/A +2012,7,10,8,30,101280,100140,99030,71.28,0,9.02,9.98,10.21,10.35,10.46,10.53,10.59,10.64,10.71,222.78,223.04,223.17000000000002,223.28,223.38,223.46,223.53,223.6,223.72,29.09,28.77,28.59,28.400000000000002,28.2,28.01,27.82,27.63,27.25,N/A,N/A +2012,7,10,9,30,101320,100180,99070,67.76,0,8.98,9.85,10.05,10.17,10.25,10.3,10.34,10.370000000000001,10.41,228.03,228.23000000000002,228.32,228.41,228.49,228.57,228.64000000000001,228.71,228.85,29.19,28.88,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,7,10,10,30,101310,100170,99060,66.8,0,7.930000000000001,8.75,8.94,9.07,9.16,9.24,9.3,9.35,9.43,228.55,228.91,229.1,229.28,229.45000000000002,229.6,229.75,229.89000000000001,230.15,29.22,28.91,28.740000000000002,28.55,28.36,28.17,27.97,27.79,27.400000000000002,N/A,N/A +2012,7,10,11,30,101350,100210,99100,72.49,0,9.16,10.16,10.41,10.56,10.66,10.73,10.78,10.81,10.86,234.1,234.35,234.47,234.57,234.65,234.72,234.78,234.85,234.95000000000002,29.02,28.69,28.52,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.17,N/A,N/A +2012,7,10,12,30,101360,100220,99110,71.85000000000001,0,8.4,9.27,9.47,9.59,9.67,9.73,9.77,9.81,9.85,231.8,231.97,232.11,232.23000000000002,232.32,232.41,232.48000000000002,232.55,232.66,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.560000000000002,27.18,N/A,N/A +2012,7,10,13,30,101380,100230,99130,73.73,0,7.86,8.620000000000001,8.82,8.94,9.02,9.08,9.13,9.17,9.23,228.84,229.47,229.78,230.07,230.34,230.58,230.82,231.03,231.46,28.96,28.64,28.47,28.27,28.080000000000002,27.89,27.69,27.51,27.13,N/A,N/A +2012,7,10,14,30,101390,100230,99120,77.2,12.8,11.91,12.81,12.96,13.01,13.030000000000001,13.02,13.02,13.01,13.02,266.42,265.61,265.49,265.23,264.87,264.45,263.87,263.28000000000003,261.83,26.75,26.310000000000002,26.16,26.02,25.88,25.76,25.64,25.53,25.310000000000002,N/A,N/A +2012,7,10,15,30,101400,100250,99130,83.36,0.4,9.040000000000001,9.69,9.82,9.86,9.88,9.88,9.88,9.870000000000001,9.91,227.33,228.64000000000001,229.48000000000002,230.4,231.3,232.24,233.37,234.52,238.05,26.78,26.330000000000002,26.16,25.98,25.810000000000002,25.66,25.51,25.37,25.150000000000002,N/A,N/A +2012,7,10,16,30,101350,100190,99080,81.65,0,9.85,10.68,10.82,10.870000000000001,10.870000000000001,10.85,10.8,10.75,10.620000000000001,226.15,226.29,226.56,226.85,227.18,227.51,227.93,228.35,229.63,26.88,26.41,26.22,26.03,25.84,25.67,25.5,25.34,25.03,N/A,N/A +2012,7,10,17,30,101320,100170,99050,81.4,0,10.81,11.71,11.870000000000001,11.92,11.94,11.92,11.88,11.83,11.700000000000001,207.9,207.82,207.73000000000002,207.58,207.42000000000002,207.25,207.05,206.86,206.43,27.060000000000002,26.580000000000002,26.38,26.17,25.98,25.79,25.59,25.41,25.04,N/A,N/A +2012,7,10,18,30,101400,100240,99130,81.77,0,11.02,12.07,12.290000000000001,12.4,12.47,12.51,12.52,12.530000000000001,12.52,225.84,226.05,226.16,226.3,226.43,226.57,226.72,226.86,227.20000000000002,26.8,26.29,26.09,25.87,25.68,25.48,25.29,25.11,24.740000000000002,N/A,N/A +2012,7,10,19,30,101460,100300,99180,88.43,0,10.13,10.950000000000001,11.14,11.23,11.290000000000001,11.33,11.36,11.38,11.4,231.01,231.26,231.46,231.68,231.9,232.12,232.35,232.58,233.1,26.080000000000002,25.55,25.330000000000002,25.12,24.92,24.73,24.53,24.35,23.97,N/A,N/A +2012,7,10,20,30,101410,100250,99120,89.81,37.7,9.99,10.86,11.09,11.22,11.32,11.4,11.46,11.52,11.620000000000001,235.03,234.95000000000002,234.94,234.94,234.94,234.94,234.96,234.98000000000002,235.04,25.3,24.76,24.560000000000002,24.36,24.18,24,23.830000000000002,23.67,23.35,N/A,N/A +2012,7,10,21,30,101360,100210,99080,76.82000000000001,2.2,8.99,9.74,9.950000000000001,10.07,10.17,10.25,10.32,10.39,10.53,232.38,232.58,232.70000000000002,232.81,232.92000000000002,233.02,233.14000000000001,233.25,233.49,26.150000000000002,25.650000000000002,25.45,25.25,25.05,24.87,24.68,24.5,24.14,N/A,N/A +2012,7,10,22,30,101290,100140,99020,65.93,0,5.34,5.7,5.79,5.84,5.88,5.91,5.93,5.95,5.99,238.92000000000002,239.25,239.49,239.71,239.92000000000002,240.1,240.29,240.47,240.84,27.46,27.060000000000002,26.88,26.67,26.48,26.29,26.09,25.91,25.53,N/A,N/A +2012,7,10,23,30,101240,100090,98980,75.72,0,4.57,4.82,4.86,4.89,4.9,4.91,4.92,4.93,4.94,194.73000000000002,195.31,195.69,196.08,196.47,196.86,197.29,197.68,198.63,26.990000000000002,26.59,26.400000000000002,26.2,26.01,25.82,25.63,25.44,25.07,N/A,N/A +2012,7,11,0,30,101240,100090,98980,78.06,0,5.32,5.68,5.7700000000000005,5.82,5.86,5.89,5.91,5.93,5.96,196.27,196.57,196.76,196.94,197.1,197.25,197.41,197.56,197.89000000000001,27.25,26.84,26.650000000000002,26.45,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,7,11,1,30,101240,100090,98980,80.39,0,5.54,5.91,5.98,6.01,6.03,6.05,6.05,6.0600000000000005,6.07,190.5,190.97,191.25,191.54,191.81,192.08,192.37,192.64000000000001,193.24,27.43,27.03,26.85,26.64,26.45,26.26,26.07,25.88,25.5,N/A,N/A +2012,7,11,2,30,101230,100080,98970,78.58,0,6.01,6.38,6.45,6.49,6.5,6.51,6.51,6.51,6.49,190.64000000000001,190.82,190.98,191.17000000000002,191.35,191.54,191.77,191.99,192.55,27.71,27.32,27.14,26.94,26.75,26.57,26.38,26.2,25.84,N/A,N/A +2012,7,11,3,30,101290,100140,99030,72.72,0,7.0600000000000005,7.75,7.91,8.01,8.09,8.15,8.2,8.24,8.290000000000001,199.78,200.15,200.3,200.42000000000002,200.51,200.59,200.64000000000001,200.69,200.75,28.34,27.97,27.79,27.580000000000002,27.39,27.19,26.990000000000002,26.810000000000002,26.42,N/A,N/A +2012,7,11,4,30,101280,100140,99030,68.06,0,6.18,6.78,6.94,7.04,7.13,7.19,7.25,7.3,7.38,198.63,199.16,199.33,199.48000000000002,199.62,199.74,199.85,199.95000000000002,200.14000000000001,28.82,28.48,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A +2012,7,11,5,30,101280,100140,99030,66.25,0,7.22,7.9,8.040000000000001,8.120000000000001,8.18,8.21,8.23,8.25,8.26,200.83,200.69,200.65,200.62,200.59,200.57,200.54,200.52,200.48000000000002,29.09,28.77,28.6,28.400000000000002,28.21,28.02,27.82,27.64,27.25,N/A,N/A +2012,7,11,6,30,101320,100170,99060,64.79,0,6.75,7.390000000000001,7.55,7.640000000000001,7.71,7.76,7.8,7.84,7.890000000000001,206.42000000000002,206.27,206.19,206.12,206.05,205.99,205.93,205.88,205.77,29.18,28.89,28.73,28.53,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,7,11,7,30,101340,100200,99090,65.41,0,7.45,8.13,8.27,8.35,8.4,8.44,8.47,8.49,8.52,206.22,206.24,206.25,206.28,206.3,206.33,206.36,206.38,206.44,29.1,28.8,28.64,28.44,28.26,28.07,27.87,27.69,27.310000000000002,N/A,N/A +2012,7,11,8,30,101350,100210,99100,65,0,7.01,7.73,7.9,8.01,8.09,8.15,8.19,8.23,8.290000000000001,208.55,208.63,208.64000000000001,208.62,208.6,208.57,208.54,208.5,208.43,29.2,28.91,28.740000000000002,28.55,28.36,28.18,27.98,27.8,27.42,N/A,N/A +2012,7,11,9,30,101370,100230,99120,67.97,0,6.93,7.6000000000000005,7.75,7.83,7.9,7.94,7.98,8.01,8.040000000000001,199.57,199.62,199.64000000000001,199.66,199.68,199.69,199.70000000000002,199.70000000000002,199.72,28.990000000000002,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,7,11,10,30,101400,100260,99150,69.66,0,7.3,7.99,8.14,8.23,8.290000000000001,8.33,8.36,8.38,8.41,209.02,208.75,208.54,208.33,208.15,207.98000000000002,207.81,207.66,207.35,28.94,28.62,28.45,28.26,28.07,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,7,11,11,30,101390,100250,99140,69.79,0,7.49,8.26,8.44,8.55,8.63,8.69,8.73,8.76,8.790000000000001,207.53,208.04,208.18,208.26,208.32,208.36,208.37,208.39000000000001,208.38,29.01,28.7,28.54,28.34,28.150000000000002,27.96,27.76,27.580000000000002,27.2,N/A,N/A +2012,7,11,12,30,101390,100250,99140,68.81,0,6.3500000000000005,6.94,7.07,7.15,7.21,7.26,7.3,7.33,7.390000000000001,208.24,208.11,208.09,208.08,208.08,208.07,208.08,208.08,208.09,29,28.69,28.52,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.18,N/A,N/A +2012,7,11,13,30,101380,100230,99130,71.81,0,5.9,6.42,6.55,6.63,6.68,6.73,6.76,6.79,6.8500000000000005,212.95000000000002,212.95000000000002,212.91,212.88,212.85,212.82,212.8,212.78,212.75,28.88,28.560000000000002,28.39,28.19,28.01,27.82,27.62,27.43,27.05,N/A,N/A +2012,7,11,14,30,101390,100250,99130,79.37,0.4,7.55,8.02,8.07,8.05,8.01,7.97,7.91,7.8500000000000005,7.73,232.46,232.22,231.92000000000002,231.59,231.24,230.87,230.43,230.01,228.94,27.810000000000002,27.42,27.240000000000002,27.05,26.87,26.68,26.5,26.32,25.97,N/A,N/A +2012,7,11,15,30,101410,100270,99160,75.36,0,5.13,5.49,5.5600000000000005,5.58,5.59,5.6000000000000005,5.59,5.59,5.5600000000000005,236.4,236.07,236.07,236.05,236.03,235.99,235.93,235.86,235.66,28.32,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.830000000000002,26.45,N/A,N/A +2012,7,11,16,30,101400,100260,99150,76.71000000000001,0,3.91,4.12,4.16,4.19,4.2,4.21,4.21,4.22,4.22,214.82,216.37,217.1,217.76,218.32,218.84,219.34,219.82,220.70000000000002,28.29,27.95,27.78,27.57,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A +2012,7,11,17,30,101470,100310,99190,88.29,5.5,16.48,18.05,18.39,18.54,18.62,18.650000000000002,18.64,18.62,18.52,207.69,207.68,207.73000000000002,207.83,207.96,208.1,208.29,208.47,208.97,25.82,25.2,24.98,24.76,24.560000000000002,24.38,24.19,24.02,23.68,N/A,N/A +2012,7,11,18,30,101430,100270,99150,86.77,1.1,12.97,14.22,14.51,14.66,14.75,14.8,14.83,14.84,14.83,226.78,226.84,226.83,226.8,226.78,226.75,226.73000000000002,226.70000000000002,226.66,25.72,25.150000000000002,24.93,24.72,24.53,24.34,24.16,23.990000000000002,23.64,N/A,N/A +2012,7,11,19,30,101420,100260,99140,87.11,0,9.81,10.72,10.94,11.08,11.17,11.24,11.3,11.35,11.43,229.66,229.47,229.37,229.26,229.15,229.03,228.91,228.8,228.54,26.17,25.67,25.46,25.25,25.05,24.86,24.66,24.48,24.1,N/A,N/A +2012,7,11,20,30,101410,100260,99140,84.16,0,11.21,12.27,12.530000000000001,12.67,12.780000000000001,12.84,12.89,12.93,12.99,229.67000000000002,229.79,229.84,229.88,229.93,229.97,230.01,230.04,230.11,26.73,26.240000000000002,26.03,25.810000000000002,25.61,25.42,25.22,25.03,24.650000000000002,N/A,N/A +2012,7,11,21,30,101370,100220,99110,79.61,0,11.450000000000001,12.61,12.91,13.09,13.21,13.31,13.38,13.43,13.51,228.21,228.53,228.74,228.92000000000002,229.07,229.21,229.34,229.45000000000002,229.67000000000002,27.29,26.830000000000002,26.63,26.42,26.21,26.02,25.82,25.63,25.240000000000002,N/A,N/A +2012,7,11,22,30,101350,100200,99080,84.41,0,8.25,8.97,9.16,9.28,9.370000000000001,9.44,9.5,9.56,9.65,211.64000000000001,211.71,211.78,211.84,211.9,211.95000000000002,212.01,212.06,212.18,26.34,25.87,25.67,25.47,25.27,25.080000000000002,24.89,24.71,24.330000000000002,N/A,N/A +2012,7,11,23,30,101280,100130,99020,83.91,0,5.04,5.48,5.62,5.73,5.83,5.91,5.98,6.05,6.18,226.12,225.16,224.72,224.32,223.96,223.62,223.3,223.01,222.44,26.990000000000002,26.59,26.41,26.2,26.02,25.830000000000002,25.63,25.45,25.080000000000002,N/A,N/A +2012,7,12,0,30,101250,100100,98990,79.27,0,4.78,5.08,5.14,5.17,5.19,5.2,5.21,5.21,5.22,213.94,214.04,214.06,214.1,214.13,214.16,214.20000000000002,214.25,214.37,27.55,27.17,26.990000000000002,26.78,26.6,26.400000000000002,26.21,26.03,25.650000000000002,N/A,N/A +2012,7,12,1,30,101230,100080,98970,78.8,0,3.99,4.22,4.2700000000000005,4.3,4.32,4.34,4.36,4.38,4.42,225.28,225.55,225.71,225.86,226.02,226.18,226.34,226.51,226.9,27.87,27.51,27.330000000000002,27.14,26.95,26.76,26.57,26.39,26.03,N/A,N/A +2012,7,12,2,30,101250,100100,98990,74.60000000000001,0,4.53,4.84,4.92,4.97,5,5.03,5.0600000000000005,5.08,5.13,232.3,232.27,232.34,232.4,232.45000000000002,232.5,232.54,232.59,232.68,28.21,27.86,27.69,27.490000000000002,27.3,27.11,26.92,26.740000000000002,26.36,N/A,N/A +2012,7,12,3,30,101320,100170,99060,73.88,0,4.7700000000000005,5.1000000000000005,5.17,5.2,5.23,5.25,5.26,5.2700000000000005,5.29,211.36,211.12,210.99,210.87,210.76,210.66,210.56,210.47,210.28,28.42,28.080000000000002,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A +2012,7,12,4,30,101320,100170,99060,72.34,0,4.46,4.73,4.78,4.8,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8,181.32,181.46,181.59,181.71,181.82,181.92000000000002,182.02,182.11,182.3,28.43,28.09,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A +2012,7,12,5,30,101310,100160,99050,74.13,0,5.3,5.68,5.76,5.8,5.82,5.84,5.8500000000000005,5.86,5.87,173.07,173.18,173.23,173.28,173.32,173.36,173.41,173.46,173.57,28.490000000000002,28.150000000000002,27.98,27.78,27.6,27.400000000000002,27.21,27.03,26.650000000000002,N/A,N/A +2012,7,12,6,30,101310,100160,99050,78.51,0,7.640000000000001,8.3,8.44,8.52,8.56,8.59,8.61,8.620000000000001,8.620000000000001,172.31,172.3,172.31,172.32,172.33,172.34,172.35,172.35,172.38,28.37,28.02,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A +2012,7,12,7,30,101350,100210,99100,77.8,0,7.88,8.58,8.76,8.84,8.91,8.94,8.97,8.99,9.01,170.96,171.13,171.19,171.25,171.3,171.36,171.4,171.45000000000002,171.55,28.45,28.11,27.94,27.740000000000002,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,7,12,8,30,101350,100200,99100,79.04,0,7.7700000000000005,8.48,8.66,8.76,8.83,8.88,8.93,8.96,9.01,175.06,175.18,175.24,175.28,175.32,175.36,175.4,175.43,175.5,28.43,28.09,27.92,27.72,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A +2012,7,12,9,30,101310,100170,99060,78.93,0,8.83,9.67,9.870000000000001,9.98,10.06,10.11,10.14,10.17,10.200000000000001,179.13,179.19,179.22,179.25,179.29,179.32,179.35,179.37,179.44,28.47,28.13,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,7,12,10,30,101300,100160,99050,82.55,0,8.88,9.75,9.96,10.08,10.17,10.23,10.28,10.31,10.35,176.55,176.59,176.64000000000001,176.69,176.73,176.76,176.79,176.82,176.89000000000001,28.36,28,27.830000000000002,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A +2012,7,12,11,30,101290,100150,99040,76.94,0,10.34,11.33,11.57,11.69,11.77,11.82,11.86,11.89,11.93,177,177.62,177.85,178.06,178.23,178.39000000000001,178.55,178.70000000000002,179,28.61,28.28,28.11,27.92,27.73,27.54,27.36,27.17,26.8,N/A,N/A +2012,7,12,12,30,101270,100120,99020,80.39,0,8.67,9.51,9.72,9.85,9.94,10,10.05,10.09,10.14,175.85,175.74,175.62,175.54,175.48,175.44,175.41,175.39000000000001,175.36,28.51,28.17,28,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,7,12,13,30,101450,100290,99160,92.35000000000001,52.400000000000006,17.52,19.23,19.59,19.81,19.94,20.04,20.09,20.13,20.17,216.41,217.68,218.15,218.56,218.91,219.21,219.49,219.74,220.19,25.01,24.36,24.12,23.89,23.68,23.490000000000002,23.29,23.11,22.740000000000002,N/A,N/A +2012,7,12,14,30,101520,100360,99230,95.51,124.5,9,10.02,10.32,10.56,10.76,10.94,11.120000000000001,11.28,11.68,219.35,219.77,219.99,220.21,220.41,220.62,220.84,221.05,221.57,24.42,23.87,23.67,23.47,23.29,23.12,22.95,22.79,22.47,N/A,N/A +2012,7,12,15,30,101550,100390,99270,94.07000000000001,41.400000000000006,8.59,9.34,9.5,9.58,9.63,9.66,9.68,9.69,9.69,218.35,218.17000000000002,218.12,218.07,218.01,217.96,217.89000000000001,217.82,217.66,24.990000000000002,24.46,24.25,24.04,23.85,23.67,23.48,23.3,22.95,N/A,N/A +2012,7,12,16,30,101540,100370,99250,89.66,14.600000000000001,8.63,9.26,9.38,9.44,9.48,9.49,9.51,9.51,9.52,206.68,206.9,207.02,207.14000000000001,207.26,207.38,207.51,207.64000000000001,207.94,24.87,24.330000000000002,24.13,23.92,23.73,23.54,23.36,23.18,22.84,N/A,N/A +2012,7,12,17,30,101510,100350,99220,87.49,0,7.44,7.930000000000001,8.040000000000001,8.08,8.11,8.13,8.15,8.16,8.18,187.42000000000002,187.73,187.91,188.11,188.32,188.53,188.79,189.05,189.76,24.830000000000002,24.310000000000002,24.1,23.89,23.7,23.51,23.32,23.150000000000002,22.79,N/A,N/A +2012,7,12,18,30,101460,100300,99180,86.82000000000001,1.5,6.26,6.67,6.75,6.79,6.8100000000000005,6.82,6.82,6.83,6.84,173.59,173.70000000000002,173.8,173.9,174.02,174.14000000000001,174.29,174.45000000000002,174.89000000000001,25.55,25.080000000000002,24.89,24.68,24.490000000000002,24.310000000000002,24.12,23.94,23.59,N/A,N/A +2012,7,12,19,30,101440,100290,99170,82.53,0,4.0600000000000005,4.28,4.32,4.3500000000000005,4.37,4.39,4.4,4.41,4.43,194.39000000000001,194.93,195.17000000000002,195.44,195.73000000000002,196.04,196.4,196.75,197.71,26.25,25.84,25.650000000000002,25.44,25.25,25.060000000000002,24.87,24.69,24.32,N/A,N/A +2012,7,12,20,30,101460,100300,99190,79.9,0,3.31,3.48,3.52,3.5500000000000003,3.5700000000000003,3.6,3.61,3.63,3.66,236.41,235.22,234.55,233.88,233.27,232.69,232.1,231.54,230.42000000000002,26.98,26.6,26.42,26.21,26.02,25.830000000000002,25.63,25.45,25.07,N/A,N/A +2012,7,12,21,30,101430,100280,99170,78.19,0,2.24,2.32,2.33,2.33,2.34,2.33,2.33,2.33,2.33,199.49,200.62,201.32,202.01,202.62,203.20000000000002,203.76,204.28,205.31,27.330000000000002,26.96,26.78,26.580000000000002,26.38,26.19,25.990000000000002,25.810000000000002,25.42,N/A,N/A +2012,7,12,22,30,101430,100280,99170,79.19,0,3.54,3.7,3.71,3.7,3.69,3.68,3.67,3.65,3.62,181.29,181.63,181.88,182.16,182.41,182.64000000000001,182.89000000000001,183.13,183.64000000000001,27.400000000000002,27.03,26.85,26.64,26.45,26.26,26.060000000000002,25.88,25.490000000000002,N/A,N/A +2012,7,12,23,30,101480,100330,99210,80.67,0,11.9,13.06,13.25,13.3,13.3,13.26,13.200000000000001,13.14,12.96,224.74,225.6,225.68,225.65,225.59,225.5,225.39000000000001,225.27,224.99,26.93,26.44,26.240000000000002,26.02,25.82,25.63,25.43,25.25,24.87,N/A,N/A +2012,7,13,0,30,101350,100190,99060,85.11,0,8.72,9.31,9.41,9.44,9.450000000000001,9.450000000000001,9.450000000000001,9.450000000000001,9.58,223.4,223.58,223.75,223.92000000000002,224.11,224.31,224.58,224.86,226.02,25.12,24.61,24.41,24.22,24.04,23.88,23.72,23.57,23.35,N/A,N/A +2012,7,13,1,30,101250,100100,98980,75.97,0,7.71,8.22,8.31,8.34,8.36,8.36,8.370000000000001,8.38,8.58,184.17000000000002,184.25,184.44,184.70000000000002,185.02,185.37,185.91,186.48,189.92000000000002,26.78,26.36,26.18,26,25.830000000000002,25.66,25.51,25.37,25.19,N/A,N/A +2012,7,13,2,30,101250,100100,98990,80.18,0,4.57,4.75,4.76,4.73,4.69,4.65,4.6000000000000005,4.54,4.4,146.38,146.85,147.21,147.62,148.07,148.57,149.25,149.96,153.16,26.71,26.310000000000002,26.13,25.94,25.75,25.57,25.39,25.22,24.900000000000002,N/A,N/A +2012,7,13,3,30,101310,100160,99050,78.08,0,3.77,3.92,3.93,3.92,3.9,3.88,3.85,3.8200000000000003,3.7600000000000002,154,154.67000000000002,155.08,155.55,156.09,156.68,157.48,158.32,161.72,27.29,26.92,26.75,26.560000000000002,26.38,26.19,26.01,25.84,25.53,N/A,N/A +2012,7,13,4,30,101320,100170,99060,81,0,6.1000000000000005,6.5600000000000005,6.65,6.7,6.72,6.73,6.74,6.74,6.72,169.73,169.75,169.81,169.88,169.94,170,170.08,170.15,170.34,27.8,27.42,27.25,27.04,26.85,26.66,26.47,26.28,25.91,N/A,N/A +2012,7,13,5,30,101340,100190,99080,81.47,0,6.59,7.1000000000000005,7.21,7.2700000000000005,7.3,7.32,7.33,7.34,7.34,168.85,169.15,169.3,169.49,169.66,169.84,170.02,170.21,170.63,27.95,27.580000000000002,27.400000000000002,27.2,27.01,26.82,26.63,26.44,26.060000000000002,N/A,N/A +2012,7,13,6,30,101380,100230,99130,84.26,0,6.0600000000000005,6.5200000000000005,6.63,6.69,6.73,6.75,6.7700000000000005,6.78,6.8,163.09,163.21,163.28,163.36,163.43,163.5,163.58,163.66,163.82,27.94,27.580000000000002,27.41,27.21,27.02,26.82,26.63,26.44,26.060000000000002,N/A,N/A +2012,7,13,7,30,101420,100270,99160,84.13,0,5.71,6.16,6.26,6.33,6.38,6.41,6.44,6.46,6.5,170.78,170.88,170.91,170.93,170.95000000000002,170.97,170.99,171.01,171.05,28.09,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A +2012,7,13,8,30,101430,100280,99170,84.8,0,6.3500000000000005,6.91,7.03,7.11,7.16,7.2,7.22,7.24,7.25,181.59,181.52,181.52,181.54,181.56,181.59,181.62,181.64000000000001,181.71,28.240000000000002,27.89,27.72,27.51,27.32,27.13,26.93,26.740000000000002,26.36,N/A,N/A +2012,7,13,9,30,101400,100260,99150,73.91,0,6.87,7.73,7.99,8.19,8.370000000000001,8.52,8.67,8.8,9.040000000000001,218.38,217.21,216.56,216.05,215.64000000000001,215.3,215.03,214.8,214.46,28.52,28.22,28.05,27.87,27.68,27.5,27.32,27.14,26.78,N/A,N/A +2012,7,13,10,30,101420,100270,99160,79.32000000000001,0,9.34,10.27,10.49,10.620000000000001,10.71,10.78,10.82,10.86,10.91,216.41,216.85,217.03,217.22,217.39000000000001,217.55,217.71,217.86,218.16,28.37,28.04,27.87,27.67,27.48,27.29,27.1,26.91,26.53,N/A,N/A +2012,7,13,11,30,101420,100270,99170,78.54,0,8.83,9.77,9.99,10.13,10.22,10.290000000000001,10.34,10.38,10.42,232.29,232.13,232.07,232.02,231.97,231.92000000000002,231.88,231.85,231.78,28.580000000000002,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.75,N/A,N/A +2012,7,13,12,30,101430,100280,99170,72.83,0,9.16,10.09,10.28,10.39,10.46,10.5,10.53,10.540000000000001,10.56,239.99,239.95000000000002,239.89000000000001,239.83,239.78,239.74,239.70000000000002,239.66,239.59,28.73,28.43,28.26,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,7,13,13,30,101500,100360,99240,76.63,0,7.8,8.55,8.75,8.86,8.94,9,9.040000000000001,9.08,9.120000000000001,239.53,239.56,239.64000000000001,239.72,239.79,239.86,239.93,239.99,240.1,28.6,28.3,28.14,27.94,27.76,27.57,27.38,27.19,26.810000000000002,N/A,N/A +2012,7,13,14,30,101510,100360,99250,73.68,0,7.57,8.36,8.540000000000001,8.66,8.75,8.82,8.870000000000001,8.92,9,249.24,249.01000000000002,248.88,248.73000000000002,248.58,248.43,248.28,248.13,247.82,28.92,28.63,28.47,28.27,28.09,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A +2012,7,13,15,30,101510,100360,99250,74.99,0,8.07,8.870000000000001,9.05,9.16,9.23,9.290000000000001,9.33,9.36,9.4,242.87,243.35,243.62,243.88,244.1,244.32,244.53,244.73000000000002,245.12,28.77,28.46,28.3,28.1,27.91,27.72,27.53,27.34,26.96,N/A,N/A +2012,7,13,16,30,101540,100390,99280,77.04,0,5.63,6.11,6.24,6.33,6.390000000000001,6.45,6.49,6.53,6.61,260.74,260,259.53000000000003,259.04,258.59000000000003,258.17,257.75,257.36,256.56,28.6,28.29,28.12,27.93,27.740000000000002,27.560000000000002,27.36,27.18,26.810000000000002,N/A,N/A +2012,7,13,17,30,101490,100340,99240,74.59,0,6.38,6.91,7.0200000000000005,7.0600000000000005,7.09,7.1000000000000005,7.1000000000000005,7.1000000000000005,7.08,215.95000000000002,216.5,216.78,217.03,217.24,217.43,217.62,217.79,218.13,28.87,28.560000000000002,28.39,28.2,28.01,27.830000000000002,27.63,27.45,27.07,N/A,N/A +2012,7,13,18,30,101490,100350,99240,76.19,0,6.07,6.6000000000000005,6.7,6.75,6.7700000000000005,6.78,6.78,6.78,6.75,211.56,211.77,211.94,212.08,212.20000000000002,212.3,212.39000000000001,212.48000000000002,212.66,28.93,28.62,28.46,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A +2012,7,13,19,30,101530,100380,99270,82.64,0.4,5.04,5.4,5.2700000000000005,5.11,4.94,4.78,4.6000000000000005,4.43,4.08,1.25,0.9400000000000001,0.44,359.78000000000003,359.01,358.2,357.18,356.22,353.7,27.46,27.080000000000002,26.91,26.73,26.560000000000002,26.38,26.21,26.05,25.72,N/A,N/A +2012,7,13,20,30,101650,100480,99340,92.01,142.8,10.120000000000001,10.89,11.040000000000001,11.07,11.07,11.040000000000001,10.99,10.93,10.75,35.01,34.660000000000004,34.230000000000004,33.76,33.28,32.8,32.230000000000004,31.7,30.34,23.69,23.06,22.84,22.62,22.42,22.23,22.04,21.87,21.51,N/A,N/A +2012,7,13,21,30,101600,100430,99300,89.31,0,7.59,8.07,8.18,8.23,8.26,8.27,8.27,8.28,8.290000000000001,31.61,30.86,30.52,30.11,29.67,29.21,28.64,28.080000000000002,26.54,23.92,23.37,23.16,22.96,22.77,22.59,22.41,22.25,21.93,N/A,N/A +2012,7,13,22,30,101570,100410,99280,88.32000000000001,23.400000000000002,4.98,5.36,5.51,5.65,5.84,6.05,6.47,6.92,7.59,298.96,300.48,301.56,302.76,304.31,306.06,308.7,311.5,313.79,24.11,23.66,23.490000000000002,23.330000000000002,23.2,23.1,23.1,23.13,23.55,N/A,N/A +2012,7,13,23,30,101460,100300,99180,82.22,0.7000000000000001,7.04,7.3500000000000005,7.36,7.3100000000000005,7.25,7.19,7.13,7.08,6.94,216.33,217.14000000000001,217.55,218.09,218.78,219.55,220.95000000000002,222.39000000000001,228.32,24.89,24.42,24.240000000000002,24.07,23.91,23.77,23.67,23.6,23.900000000000002,N/A,N/A +2012,7,14,0,30,101330,100170,99050,73.87,0,6.61,7.0200000000000005,7.12,7.16,7.19,7.21,7.24,7.26,7.3,240.12,239.84,239.65,239.41,239.12,238.8,238.3,237.76,236.14000000000001,26.51,26.11,25.95,25.78,25.63,25.490000000000002,25.37,25.26,25.16,N/A,N/A +2012,7,14,1,30,101340,100190,99070,78.60000000000001,0,1.6300000000000001,1.79,1.84,1.9000000000000001,1.95,2,2.06,2.11,2.35,256.56,257.32,257.87,258.44,258.98,259.51,260.08,260.65,262.4,26.76,26.39,26.22,26.02,25.830000000000002,25.64,25.44,25.26,24.87,N/A,N/A +2012,7,14,2,30,101410,100260,99140,77.4,0,3.36,3.5500000000000003,3.59,3.62,3.63,3.65,3.66,3.67,3.69,283.72,283.44,283.27,283.13,283.03000000000003,282.96,282.94,282.95,282.93,27.54,27.18,27,26.8,26.61,26.42,26.22,26.04,25.650000000000002,N/A,N/A +2012,7,14,3,30,101390,100240,99130,75.28,0,0.99,0.97,0.9500000000000001,0.92,0.92,0.92,1.01,1.1500000000000001,1.82,327.23,319.56,314.63,308.03000000000003,300.18,290.93,278.28000000000003,263.47,242.82,27.69,27.37,27.21,27.02,26.85,26.68,26.52,26.38,26.13,N/A,N/A +2012,7,14,4,30,101400,100260,99150,73.78,0,2.92,3.0700000000000003,3.09,3.09,3.08,3.0700000000000003,3.0700000000000003,3.06,3.04,202.17000000000002,201.63,201.45000000000002,201.25,201.08,200.91,200.74,200.58,200.23000000000002,27.990000000000002,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.52,26.13,N/A,N/A +2012,7,14,5,30,101420,100270,99150,75.72,0,4.07,4.2,4.17,4.12,4.07,4.0200000000000005,3.96,3.91,3.79,169.35,168.44,168,167.54,167.09,166.64000000000001,166.16,165.71,164.73,27.650000000000002,27.3,27.13,26.94,26.75,26.560000000000002,26.37,26.19,25.82,N/A,N/A +2012,7,14,6,30,101410,100260,99150,79.33,0,4.05,4.3500000000000005,4.43,4.49,4.53,4.5600000000000005,4.59,4.61,4.65,163.43,164.07,164.34,164.57,164.77,164.94,165.1,165.25,165.53,27.53,27.18,27,26.8,26.61,26.42,26.22,26.03,25.650000000000002,N/A,N/A +2012,7,14,7,30,101450,100310,99190,84.63,0,4.74,5.0600000000000005,5.13,5.16,5.19,5.2,5.21,5.22,5.22,170.11,170.46,170.69,170.91,171.1,171.28,171.47,171.64000000000001,171.99,27.5,27.14,26.96,26.76,26.57,26.38,26.18,25.990000000000002,25.61,N/A,N/A +2012,7,14,8,30,101490,100340,99230,83.86,0,3.98,4.28,4.3500000000000005,4.41,4.45,4.49,4.5200000000000005,4.54,4.59,182.58,182.83,182.96,183.07,183.16,183.25,183.33,183.41,183.57,27.63,27.29,27.12,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A +2012,7,14,9,30,101500,100350,99240,79.39,0,4.58,4.9,4.97,5,5.0200000000000005,5.03,5.04,5.05,5.0600000000000005,202.79,202.92000000000002,202.9,202.85,202.8,202.75,202.69,202.63,202.48000000000002,27.85,27.52,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.01,N/A,N/A +2012,7,14,10,30,101520,100370,99260,73.83,0,4.5600000000000005,4.84,4.89,4.91,4.92,4.92,4.92,4.92,4.91,202.87,203.6,204.02,204.42000000000002,204.8,205.15,205.51,205.84,206.51,28.1,27.78,27.61,27.41,27.23,27.04,26.84,26.66,26.28,N/A,N/A +2012,7,14,11,30,101560,100410,99290,82.3,0,4.1,4.37,4.43,4.47,4.5,4.51,4.53,4.54,4.5600000000000005,214.58,214.08,213.89000000000001,213.73000000000002,213.6,213.48000000000002,213.38,213.29,213.12,27.75,27.42,27.25,27.05,26.86,26.67,26.48,26.29,25.91,N/A,N/A +2012,7,14,12,30,101590,100430,99310,87.03,0,8.870000000000001,9.4,9.41,9.34,9.24,9.120000000000001,8.97,8.82,8.43,228.72,229.25,229.25,229.21,229.15,229.09,229,228.91,228.71,25.69,25.22,25.03,24.830000000000002,24.650000000000002,24.48,24.3,24.14,23.82,N/A,N/A +2012,7,14,13,30,101580,100420,99300,75.28,0,2.88,3.0100000000000002,3.31,4.17,4.73,5.08,5.37,5.65,6.09,270.82,266.33,260.79,249.34,243.83,242.69,241.84,241.14000000000001,240.37,26.35,26.060000000000002,26.080000000000002,26.330000000000002,26.39,26.35,26.240000000000002,26.13,25.87,N/A,N/A +2012,7,14,14,30,101640,100490,99370,82.16,0,1.54,1.6,1.62,1.67,1.83,2.14,2.49,2.87,3.45,312.49,308.24,305.3,300.79,293.99,283.86,277.85,274.03000000000003,273.56,26.42,26.07,25.91,25.73,25.62,25.560000000000002,25.52,25.490000000000002,25.44,N/A,N/A +2012,7,14,15,30,101640,100490,99370,81.48,0,2.05,2.21,2.25,2.2800000000000002,2.32,2.35,2.38,2.41,2.48,260.28000000000003,259.86,259.71,259.55,259.38,259.21,259.01,258.8,258.22,26.990000000000002,26.62,26.45,26.25,26.060000000000002,25.87,25.67,25.490000000000002,25.12,N/A,N/A +2012,7,14,16,30,101630,100480,99360,79.21000000000001,0,0.43,0.45,0.47000000000000003,0.48,0.5,0.53,0.58,0.65,0.98,351.08,350.67,349.79,348.6,346.91,344.68,341.15000000000003,336.99,322.8,27.22,26.87,26.7,26.51,26.34,26.16,26,25.86,25.68,N/A,N/A +2012,7,14,17,30,101610,100460,99350,80.99,0,1.4000000000000001,1.42,1.4000000000000001,1.3800000000000001,1.36,1.33,1.31,1.28,1.21,57.53,58.49,58.69,58.9,59.13,59.370000000000005,59.620000000000005,59.88,60.53,27.41,27.05,26.87,26.67,26.48,26.29,26.1,25.92,25.54,N/A,N/A +2012,7,14,18,30,101580,100420,99310,79.23,0,2.08,2.14,2.14,2.13,2.11,2.1,2.08,2.07,2.04,123.60000000000001,124.95,125.73,126.58,127.42,128.27,129.26,130.21,132.61,27.66,27.29,27.11,26.92,26.73,26.54,26.34,26.16,25.79,N/A,N/A +2012,7,14,19,30,101580,100430,99320,76.66,0,1.72,1.8,1.81,1.81,1.82,1.82,1.82,1.83,1.83,166.55,167.84,168.66,169.5,170.29,171.07,171.9,172.69,174.52,27.97,27.6,27.43,27.22,27.03,26.84,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,7,14,20,30,101520,100370,99260,77.24,0,3.66,3.88,3.92,3.95,3.97,3.99,4,4.0200000000000005,4.04,184.24,185.19,185.70000000000002,186.20000000000002,186.64000000000001,187.06,187.48,187.87,188.66,28.16,27.8,27.62,27.42,27.23,27.03,26.84,26.650000000000002,26.27,N/A,N/A +2012,7,14,21,30,101490,100340,99230,78.9,0,3.63,3.85,3.89,3.91,3.92,3.93,3.94,3.94,3.95,198.07,198.41,198.63,198.83,198.99,199.15,199.29,199.41,199.64000000000001,28.19,27.830000000000002,27.66,27.46,27.27,27.080000000000002,26.88,26.7,26.310000000000002,N/A,N/A +2012,7,14,22,30,101470,100320,99210,81.12,0,4.17,4.43,4.47,4.49,4.5,4.5,4.5,4.5,4.5,184.88,185.56,186.14000000000001,186.70000000000002,187.20000000000002,187.67000000000002,188.15,188.61,189.53,28.09,27.75,27.580000000000002,27.38,27.19,27,26.8,26.62,26.240000000000002,N/A,N/A +2012,7,14,23,30,101440,100290,99180,81.26,0,4.1,4.37,4.42,4.44,4.46,4.47,4.48,4.48,4.49,168.20000000000002,168.57,168.78,168.98,169.18,169.38,169.6,169.8,170.29,28.09,27.76,27.59,27.39,27.2,27.01,26.82,26.63,26.25,N/A,N/A +2012,7,15,0,30,101450,100310,99200,80.72,0,3.33,3.5500000000000003,3.6,3.63,3.65,3.66,3.67,3.68,3.7,173.12,173.52,173.68,173.84,173.97,174.1,174.23,174.36,174.65,28.22,27.91,27.740000000000002,27.54,27.36,27.17,26.97,26.79,26.41,N/A,N/A +2012,7,15,1,30,101430,100290,99180,81.07000000000001,0,3.71,3.95,3.99,4,4.01,4.01,4.01,4,3.99,182.12,182.21,182.35,182.52,182.69,182.86,183.05,183.25,183.68,28.19,27.88,27.71,27.52,27.330000000000002,27.14,26.95,26.76,26.38,N/A,N/A +2012,7,15,2,30,101480,100330,99220,80.72,0,3.5,3.72,3.77,3.79,3.8000000000000003,3.81,3.81,3.81,3.81,175.1,175.59,175.88,176.17000000000002,176.42000000000002,176.67000000000002,176.9,177.12,177.56,28.17,27.86,27.69,27.490000000000002,27.3,27.11,26.92,26.73,26.35,N/A,N/A +2012,7,15,3,30,101490,100340,99230,83.93,0,3.04,3.2,3.22,3.22,3.22,3.21,3.2,3.19,3.17,200.4,200,199.74,199.45000000000002,199.16,198.88,198.59,198.31,197.69,27.98,27.650000000000002,27.48,27.28,27.1,26.91,26.71,26.52,26.14,N/A,N/A +2012,7,15,4,30,101470,100320,99210,84.01,0,3.67,3.89,3.93,3.95,3.96,3.97,3.97,3.97,3.97,177.02,177.48,177.68,177.88,178.06,178.24,178.41,178.57,178.91,27.88,27.55,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A +2012,7,15,5,30,101480,100330,99220,83.98,0,3.98,4.24,4.29,4.3100000000000005,4.33,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,165.39000000000001,165.87,166.02,166.18,166.33,166.48,166.64000000000001,166.79,167.1,27.85,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A +2012,7,15,6,30,101480,100330,99220,85.29,0,3.27,3.48,3.5300000000000002,3.5700000000000003,3.6,3.62,3.64,3.67,3.72,169.9,170.82,171.55,172.26,172.9,173.52,174.14000000000001,174.74,175.99,27.830000000000002,27.5,27.34,27.14,26.96,26.77,26.59,26.41,26.04,N/A,N/A +2012,7,15,7,30,101540,100390,99280,84.65,0,3.79,4.04,4.08,4.1,4.11,4.11,4.11,4.11,4.1,192.22,192.61,192.85,193.07,193.27,193.44,193.62,193.78,194.1,27.97,27.63,27.46,27.26,27.07,26.88,26.68,26.5,26.12,N/A,N/A +2012,7,15,8,30,101520,100370,99260,85.14,0,4.61,4.96,5.05,5.11,5.16,5.2,5.24,5.2700000000000005,5.33,192.38,193.63,194.38,195.1,195.71,196.27,196.8,197.28,198.18,27.95,27.62,27.46,27.26,27.080000000000002,26.89,26.7,26.52,26.14,N/A,N/A +2012,7,15,9,30,101540,100390,99280,84.47,0,5.29,5.66,5.73,5.76,5.78,5.8,5.8,5.8,5.8,207.98000000000002,207.83,207.87,207.96,208.06,208.17000000000002,208.29,208.41,208.66,27.89,27.55,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.04,N/A,N/A +2012,7,15,10,30,101570,100420,99310,82.69,0,5.73,6.15,6.23,6.2700000000000005,6.29,6.3,6.3,6.3,6.28,215.33,215.82,216.09,216.35,216.6,216.83,217.06,217.27,217.73000000000002,27.96,27.61,27.44,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A +2012,7,15,11,30,101610,100460,99350,82.65,0,5.37,5.7700000000000005,5.87,5.91,5.94,5.96,5.97,5.98,5.98,233.39000000000001,233.35,233.34,233.31,233.27,233.24,233.20000000000002,233.16,233.07,27.96,27.62,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.1,N/A,N/A +2012,7,15,12,30,101630,100480,99370,79.58,0,4.76,5.08,5.15,5.19,5.22,5.24,5.26,5.2700000000000005,5.3,217.06,217.78,218.19,218.61,218.99,219.35,219.72,220.06,220.74,28.03,27.7,27.53,27.34,27.150000000000002,26.96,26.78,26.59,26.22,N/A,N/A +2012,7,15,13,30,101690,100540,99430,78.93,0,3.0500000000000003,3.24,3.2800000000000002,3.31,3.33,3.34,3.36,3.37,3.39,235.39000000000001,235.91,236.16,236.41,236.64000000000001,236.86,237.07,237.26,237.64000000000001,28.03,27.7,27.52,27.330000000000002,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A +2012,7,15,14,30,101700,100550,99430,74.75,0,4.25,4.47,4.49,4.48,4.46,4.45,4.43,4.4,4.3500000000000005,248.78,248.41,248.18,247.94,247.72,247.51000000000002,247.29,247.07,246.61,28.16,27.830000000000002,27.66,27.46,27.27,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,7,15,15,30,101710,100560,99440,74.68,0,2.67,2.85,2.9,2.93,2.96,2.99,3.0100000000000002,3.0300000000000002,3.0700000000000003,250.5,250,249.72,249.46,249.22,248.99,248.77,248.56,248.16,28.12,27.79,27.62,27.42,27.240000000000002,27.04,26.85,26.67,26.28,N/A,N/A +2012,7,15,16,30,101690,100540,99430,73.56,0,2.47,2.59,2.61,2.63,2.64,2.65,2.65,2.66,2.67,262.15,261.96,261.75,261.55,261.37,261.2,261.01,260.82,260.44,28.22,27.88,27.7,27.5,27.32,27.13,26.93,26.740000000000002,26.36,N/A,N/A +2012,7,15,17,30,101680,100530,99420,72.95,0,1.61,1.7,1.72,1.74,1.75,1.77,1.78,1.79,1.82,248.54,249.49,250.06,250.59,251.04,251.46,251.87,252.25,252.98000000000002,28.26,27.91,27.740000000000002,27.54,27.35,27.16,26.97,26.78,26.400000000000002,N/A,N/A +2012,7,15,18,30,101650,100500,99390,74.07000000000001,0,2.47,2.52,2.5100000000000002,2.48,2.45,2.42,2.39,2.36,2.29,188.8,188.22,188.01,187.78,187.58,187.37,187.16,186.96,186.51,28.26,27.900000000000002,27.73,27.53,27.34,27.150000000000002,26.96,26.77,26.39,N/A,N/A +2012,7,15,19,30,101650,100500,99390,67.37,0,2.29,2.38,2.39,2.38,2.37,2.36,2.35,2.34,2.31,173.70000000000002,173.83,173.91,173.97,174.02,174.07,174.09,174.11,174.11,28.6,28.26,28.09,27.89,27.7,27.52,27.32,27.14,26.77,N/A,N/A +2012,7,15,20,30,101610,100460,99350,71.29,0,3.36,3.52,3.54,3.54,3.54,3.5300000000000002,3.52,3.52,3.5,166.74,166.84,166.84,166.85,166.87,166.89000000000001,166.93,166.96,167.06,28.46,28.11,27.94,27.740000000000002,27.55,27.37,27.18,26.990000000000002,26.62,N/A,N/A +2012,7,15,21,30,101540,100400,99290,71.61,0,4.68,4.98,5.03,5.05,5.07,5.07,5.07,5.07,5.05,171.8,171.89000000000001,172,172.08,172.16,172.24,172.31,172.38,172.5,28.46,28.13,27.96,27.77,27.580000000000002,27.39,27.2,27.02,26.64,N/A,N/A +2012,7,15,22,30,101520,100370,99260,71.08,0,5.3100000000000005,5.71,5.79,5.82,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,5.84,165.46,165.61,165.64000000000001,165.66,165.68,165.69,165.70000000000002,165.71,165.73,28.44,28.13,27.97,27.78,27.59,27.400000000000002,27.21,27.03,26.650000000000002,N/A,N/A +2012,7,15,23,30,101510,100360,99250,73.38,0,5.33,5.74,5.8100000000000005,5.8500000000000005,5.87,5.89,5.9,5.9,5.9,164.81,164.8,164.84,164.87,164.89000000000001,164.9,164.91,164.92000000000002,164.95000000000002,28.29,27.98,27.810000000000002,27.61,27.43,27.240000000000002,27.04,26.86,26.48,N/A,N/A +2012,7,16,0,30,101530,100380,99270,77.27,0,5.08,5.48,5.57,5.62,5.65,5.67,5.69,5.7,5.72,163.1,163.36,163.47,163.57,163.67000000000002,163.77,163.86,163.95000000000002,164.14000000000001,28.12,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.29,N/A,N/A +2012,7,16,1,30,101530,100380,99270,74.79,0,5.48,5.92,6,6.05,6.08,6.1000000000000005,6.12,6.13,6.140000000000001,166.73,166.67000000000002,166.66,166.66,166.65,166.63,166.63,166.62,166.59,28.23,27.91,27.75,27.55,27.36,27.17,26.98,26.79,26.41,N/A,N/A +2012,7,16,2,30,101520,100370,99260,74.87,0,4.87,5.25,5.33,5.38,5.42,5.44,5.47,5.49,5.5200000000000005,168.74,168.87,168.91,168.95000000000002,168.99,169.02,169.05,169.07,169.13,28.2,27.88,27.72,27.52,27.330000000000002,27.14,26.95,26.77,26.39,N/A,N/A +2012,7,16,3,30,101560,100410,99300,81.44,0,5.67,6.13,6.22,6.2700000000000005,6.3100000000000005,6.33,6.34,6.3500000000000005,6.36,157.76,157.8,157.86,157.95000000000002,158.03,158.11,158.20000000000002,158.29,158.47,28.02,27.68,27.51,27.310000000000002,27.12,26.93,26.73,26.55,26.16,N/A,N/A +2012,7,16,4,30,101550,100400,99290,84.93,0,5.61,6.05,6.16,6.22,6.26,6.3,6.32,6.34,6.37,156.71,157.19,157.43,157.68,157.89000000000001,158.1,158.31,158.49,158.88,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A +2012,7,16,5,30,101550,100410,99300,85.39,0,5.18,5.59,5.69,5.74,5.78,5.8100000000000005,5.83,5.8500000000000005,5.88,162.28,162.6,162.73,162.86,162.98,163.08,163.19,163.29,163.49,27.86,27.52,27.34,27.14,26.95,26.76,26.57,26.38,26,N/A,N/A +2012,7,16,6,30,101590,100440,99330,79.16,0,4.03,4.34,4.41,4.45,4.49,4.5200000000000005,4.54,4.5600000000000005,4.6000000000000005,180.56,180.66,180.73,180.81,180.89000000000001,180.98,181.07,181.15,181.35,28.03,27.69,27.52,27.32,27.13,26.94,26.75,26.560000000000002,26.18,N/A,N/A +2012,7,16,7,30,101610,100460,99340,81.22,0,4.69,4.97,5.0200000000000005,5.04,5.05,5.05,5.05,5.04,5.03,192.88,192.48000000000002,192.24,192,191.78,191.57,191.34,191.13,190.70000000000002,27.97,27.63,27.45,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.11,N/A,N/A +2012,7,16,8,30,101590,100450,99330,81.99,0,4.5200000000000005,4.8500000000000005,4.92,4.96,4.98,5.01,5.0200000000000005,5.04,5.0600000000000005,186.52,186.43,186.43,186.44,186.44,186.44,186.45000000000002,186.47,186.51,27.94,27.6,27.42,27.22,27.03,26.84,26.64,26.46,26.080000000000002,N/A,N/A +2012,7,16,9,30,101610,100460,99350,81.68,0,4.25,4.5200000000000005,4.58,4.62,4.64,4.66,4.68,4.69,4.71,185.11,184.92000000000002,184.87,184.81,184.76,184.72,184.67000000000002,184.63,184.52,27.95,27.61,27.43,27.240000000000002,27.05,26.86,26.66,26.48,26.1,N/A,N/A +2012,7,16,10,30,101610,100460,99340,77.48,0.7000000000000001,4.5,4.83,4.9,4.93,4.96,4.98,5,5.01,5.0200000000000005,182.07,182.11,182.14000000000001,182.14000000000001,182.13,182.11,182.07,182.03,181.93,28.16,27.830000000000002,27.66,27.46,27.27,27.09,26.89,26.71,26.32,N/A,N/A +2012,7,16,11,30,101620,100470,99360,78.66,0,4.91,5.23,5.29,5.3100000000000005,5.32,5.33,5.32,5.32,5.29,180.93,181.04,181.01,180.96,180.9,180.84,180.79,180.73,180.63,28.07,27.72,27.55,27.35,27.16,26.97,26.78,26.59,26.21,N/A,N/A +2012,7,16,12,30,101650,100500,99390,76.86,0,3.63,3.84,3.87,3.87,3.88,3.87,3.87,3.86,3.84,185.27,184.62,184.34,184.04,183.77,183.52,183.26,183.02,182.54,28.13,27.8,27.63,27.43,27.240000000000002,27.05,26.86,26.67,26.29,N/A,N/A +2012,7,16,13,30,101660,100510,99400,78.02,0,2.89,3.0500000000000003,3.09,3.12,3.13,3.15,3.16,3.16,3.18,176.87,176.76,176.67000000000002,176.62,176.58,176.56,176.55,176.56,176.57,28.01,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.17,N/A,N/A +2012,7,16,14,30,101690,100540,99420,76.98,0,2.61,2.71,2.72,2.72,2.71,2.7,2.69,2.69,2.67,199.02,199.05,198.92000000000002,198.8,198.69,198.58,198.46,198.34,198.06,28.09,27.75,27.580000000000002,27.39,27.2,27.01,26.810000000000002,26.63,26.25,N/A,N/A +2012,7,16,15,30,101680,100530,99420,77.36,0,3.02,3.16,3.17,3.17,3.17,3.16,3.15,3.15,3.13,177.79,176.96,176.58,176.18,175.81,175.47,175.11,174.78,174.09,28.11,27.76,27.59,27.39,27.19,27,26.810000000000002,26.62,26.240000000000002,N/A,N/A +2012,7,16,16,30,101680,100530,99410,81.18,0,2.73,2.79,2.7800000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7800000000000002,2.7800000000000002,166.05,163.03,160.96,158.62,156.21,153.65,150.81,148.03,141.85,27.41,27.07,26.900000000000002,26.72,26.55,26.38,26.22,26.060000000000002,25.75,N/A,N/A +2012,7,16,17,30,101640,100490,99380,80.69,0,2.49,2.65,2.69,2.73,2.7600000000000002,2.79,2.82,2.84,2.9,150.03,148.14000000000001,147.07,146.04,145.11,144.22,143.33,142.48,140.79,27.84,27.48,27.3,27.1,26.92,26.73,26.53,26.35,25.98,N/A,N/A +2012,7,16,18,30,101590,100440,99330,76.58,0,3.63,3.8200000000000003,3.85,3.86,3.87,3.88,3.88,3.88,3.88,133.28,133.38,133.28,133.19,133.1,133.02,132.92000000000002,132.84,132.66,28.16,27.8,27.62,27.42,27.23,27.04,26.84,26.66,26.27,N/A,N/A +2012,7,16,19,30,101570,100420,99310,77.4,0,3.33,3.5,3.5300000000000002,3.5500000000000003,3.56,3.56,3.56,3.5700000000000003,3.5700000000000003,139.49,139.63,139.63,139.65,139.66,139.67000000000002,139.68,139.71,139.76,28.23,27.87,27.69,27.490000000000002,27.3,27.11,26.91,26.73,26.35,N/A,N/A +2012,7,16,20,30,101530,100380,99270,77.57000000000001,0,3.33,3.52,3.5500000000000003,3.58,3.59,3.61,3.62,3.63,3.65,141.99,141.88,141.78,141.67000000000002,141.57,141.46,141.35,141.26,141.02,28.35,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.04,26.86,26.47,N/A,N/A +2012,7,16,21,30,101530,100380,99270,79.08,0,3.62,3.8200000000000003,3.85,3.86,3.87,3.87,3.87,3.86,3.85,144.51,144.32,144.11,143.93,143.77,143.62,143.47,143.34,143.06,28.44,28.09,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.560000000000002,N/A,N/A +2012,7,16,22,30,101530,100380,99270,79.25,0,3.09,3.2800000000000002,3.33,3.35,3.38,3.39,3.4,3.42,3.43,139.41,139.87,140.15,140.4,140.62,140.82,141,141.17000000000002,141.49,28.43,28.1,27.93,27.73,27.54,27.36,27.16,26.97,26.59,N/A,N/A +2012,7,16,23,30,101510,100370,99260,79.87,0,5.13,5.5,5.5600000000000005,5.59,5.6000000000000005,5.61,5.61,5.6000000000000005,5.58,139.01,138.89000000000001,138.99,139.06,139.11,139.15,139.17000000000002,139.20000000000002,139.23,28.44,28.11,27.94,27.75,27.55,27.36,27.17,26.98,26.6,N/A,N/A +2012,7,17,0,30,101500,100360,99250,76.08,0,4.32,4.61,4.66,4.68,4.68,4.69,4.68,4.68,4.67,153.05,152.99,152.88,152.78,152.68,152.59,152.5,152.42000000000002,152.26,28.46,28.150000000000002,27.98,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A +2012,7,17,1,30,101430,100280,99170,85.56,0,6.05,6.36,6.3500000000000005,6.29,6.22,6.140000000000001,6.05,5.95,5.71,143.22,143.55,143.73,143.93,144.12,144.31,144.52,144.73,145.22,27.47,27.09,26.92,26.72,26.54,26.35,26.17,25.990000000000002,25.64,N/A,N/A +2012,7,17,2,30,101430,100280,99170,78.22,0,4.96,5.26,5.28,5.2700000000000005,5.26,5.23,5.19,5.15,5.0600000000000005,140.48,140.67000000000002,140.8,140.95000000000002,141.1,141.26,141.46,141.65,142.18,27.77,27.42,27.240000000000002,27.05,26.86,26.67,26.48,26.3,25.92,N/A,N/A +2012,7,17,3,30,101460,100310,99200,80.94,0,5.5200000000000005,5.87,5.93,5.94,5.94,5.93,5.91,5.89,5.84,154.32,154.31,154.25,154.17000000000002,154.09,153.99,153.88,153.77,153.45000000000002,27.71,27.35,27.18,26.98,26.79,26.6,26.42,26.240000000000002,25.87,N/A,N/A +2012,7,17,4,30,101410,100270,99150,82.13,0,5.2,5.5200000000000005,5.57,5.58,5.58,5.58,5.5600000000000005,5.55,5.51,153.17000000000002,153.35,153.44,153.54,153.66,153.78,153.92000000000002,154.07,154.49,27.71,27.36,27.18,26.990000000000002,26.8,26.62,26.43,26.26,25.900000000000002,N/A,N/A +2012,7,17,5,30,101430,100280,99170,78.53,0,3.69,3.92,3.96,3.99,4,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,137.78,137.76,137.81,137.86,137.9,137.94,137.98,138.02,138.11,27.96,27.62,27.45,27.25,27.07,26.88,26.68,26.5,26.13,N/A,N/A +2012,7,17,6,30,101440,100290,99180,80.16,0,4.18,4.43,4.47,4.49,4.5,4.5,4.5,4.5,4.5,147.84,148.28,148.57,148.86,149.13,149.38,149.65,149.92000000000002,150.49,27.93,27.59,27.41,27.21,27.02,26.84,26.64,26.45,26.07,N/A,N/A +2012,7,17,7,30,101460,100310,99200,81.78,0,4.13,4.4,4.45,4.47,4.49,4.5,4.51,4.51,4.5200000000000005,151.57,151.58,151.54,151.51,151.48,151.46,151.44,151.42000000000002,151.36,27.990000000000002,27.64,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,7,17,8,30,101470,100330,99220,82.65,0,5.24,5.59,5.65,5.68,5.69,5.7,5.71,5.71,5.71,153.43,153.3,153.11,152.94,152.79,152.64000000000001,152.51,152.39000000000001,152.15,28.04,27.7,27.52,27.32,27.14,26.95,26.75,26.560000000000002,26.19,N/A,N/A +2012,7,17,9,30,101470,100330,99210,82.72,0,5.01,5.33,5.37,5.4,5.41,5.42,5.43,5.43,5.43,159.94,159.72,159.56,159.4,159.26,159.13,158.99,158.86,158.58,28.02,27.67,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A +2012,7,17,10,30,101460,100310,99200,82.95,0,3.97,4.22,4.2700000000000005,4.29,4.3,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,165.21,164.94,164.93,164.9,164.88,164.86,164.84,164.82,164.78,28,27.650000000000002,27.47,27.28,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,7,17,11,30,101510,100360,99250,82.5,0,4.51,4.8100000000000005,4.87,4.9,4.92,4.93,4.93,4.93,4.93,171.74,171.77,171.77,171.75,171.74,171.73,171.71,171.69,171.65,28.080000000000002,27.740000000000002,27.560000000000002,27.36,27.17,26.98,26.79,26.6,26.22,N/A,N/A +2012,7,17,12,30,101540,100390,99280,79.42,0,3.08,3.27,3.31,3.34,3.35,3.37,3.38,3.39,3.42,176.04,176.33,176.42000000000002,176.54,176.67000000000002,176.79,176.93,177.07,177.36,28.21,27.88,27.71,27.51,27.32,27.13,26.94,26.75,26.37,N/A,N/A +2012,7,17,13,30,101520,100370,99260,80.02,0,3.2600000000000002,3.54,3.61,3.66,3.71,3.75,3.7800000000000002,3.8200000000000003,3.89,170.08,169.48,169.34,169.23,169.16,169.1,169.08,169.08,169.21,28.17,27.830000000000002,27.66,27.47,27.28,27.1,26.91,26.73,26.36,N/A,N/A +2012,7,17,14,30,101550,100400,99290,78.54,0,3.33,3.5100000000000002,3.5300000000000002,3.54,3.54,3.54,3.54,3.54,3.52,187.58,187.51,187.43,187.36,187.29,187.23,187.17000000000002,187.12,187.01,28.3,27.97,27.79,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,7,17,15,30,101590,100440,99320,82.94,0,3.39,3.47,3.43,3.37,3.31,3.24,3.17,3.11,2.96,204.88,203.49,202.63,201.61,200.56,199.47,198.18,196.91,193.67000000000002,27.830000000000002,27.47,27.310000000000002,27.11,26.93,26.75,26.560000000000002,26.39,26.03,N/A,N/A +2012,7,17,16,30,101580,100430,99320,83.86,0,2.39,2.46,2.47,2.46,2.45,2.44,2.43,2.42,2.4,185.88,184.61,183.89000000000001,183.11,182.31,181.47,180.47,179.49,176.9,27.86,27.5,27.32,27.13,26.94,26.75,26.560000000000002,26.38,26,N/A,N/A +2012,7,17,17,30,101550,100400,99290,84.77,0,1.04,1.11,1.1400000000000001,1.17,1.2,1.23,1.27,1.3,1.3800000000000001,174.17000000000002,169.83,167.57,165.31,163.31,161.38,159.49,157.66,154.15,28.01,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.53,26.150000000000002,N/A,N/A +2012,7,17,18,30,101530,100380,99270,80.57000000000001,0,2.31,2.37,2.36,2.34,2.32,2.29,2.27,2.24,2.19,148.17000000000002,148.47,148.86,149.25,149.62,149.97,150.34,150.68,151.43,28.42,28.060000000000002,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,17,19,30,101480,100330,99220,80.77,0,2.45,2.59,2.62,2.63,2.65,2.66,2.67,2.68,2.69,142.25,142.11,142.1,142.09,142.09,142.09,142.09,142.1,142.16,28.51,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,17,20,30,101500,100350,99240,82.71000000000001,0,3.2800000000000002,3.46,3.49,3.52,3.5300000000000002,3.54,3.56,3.5700000000000003,3.59,167.52,167.37,167.22,167.1,167,166.9,166.82,166.74,166.61,28.61,28.240000000000002,28.07,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A +2012,7,17,21,30,101450,100310,99200,80.66,0,3.44,3.6,3.62,3.62,3.62,3.62,3.61,3.61,3.6,168.38,168.19,168.07,167.95000000000002,167.86,167.77,167.67000000000002,167.59,167.4,28.72,28.36,28.19,27.98,27.79,27.61,27.41,27.23,26.85,N/A,N/A +2012,7,17,22,30,101430,100290,99180,81.54,0,4.19,4.41,4.42,4.42,4.4,4.38,4.36,4.34,4.29,179.78,179.56,179.43,179.29,179.15,179.02,178.87,178.73,178.4,28.72,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.86,N/A,N/A +2012,7,17,23,30,101400,100260,99150,82.81,0,3.7800000000000002,4.0200000000000005,4.07,4.09,4.1,4.11,4.12,4.12,4.12,170.05,170.23,170.43,170.62,170.8,170.97,171.16,171.34,171.73,28.61,28.28,28.11,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A +2012,7,18,0,30,101410,100260,99160,82.13,0,2.05,2.18,2.21,2.22,2.23,2.24,2.25,2.25,2.2600000000000002,159.14000000000001,159.20000000000002,159.18,159.15,159.12,159.08,159.04,159,158.96,28.59,28.28,28.11,27.91,27.72,27.54,27.34,27.16,26.78,N/A,N/A +2012,7,18,1,30,101400,100250,99150,82.62,0,2.57,2.74,2.7800000000000002,2.8000000000000003,2.82,2.83,2.85,2.86,2.88,139.93,139.6,139.57,139.53,139.47,139.4,139.32,139.24,139.06,28.53,28.21,28.04,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A +2012,7,18,2,30,101410,100270,99160,82.36,0,2.43,2.58,2.6,2.61,2.62,2.62,2.63,2.63,2.64,144.78,145.32,145.75,146.17000000000002,146.55,146.91,147.29,147.63,148.36,28.51,28.2,28.03,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.71,N/A,N/A +2012,7,18,3,30,101450,100300,99190,83.41,0,4.64,5.03,5.11,5.17,5.21,5.24,5.26,5.28,5.3100000000000005,154.03,154.29,154.35,154.42000000000002,154.48,154.54,154.61,154.68,154.81,28.6,28.29,28.12,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A +2012,7,18,4,30,101430,100280,99170,84.37,0,6.2700000000000005,6.5,6.44,6.3,6.15,6,5.86,5.75,5.61,168.45000000000002,167.12,166.03,164.43,162.49,160.28,157.85,155.49,150.98,27.86,27.54,27.400000000000002,27.25,27.11,26.97,26.830000000000002,26.7,26.39,N/A,N/A +2012,7,18,5,30,101450,100300,99200,86.61,0,5.28,5.73,5.84,5.92,5.98,6.03,6.08,6.11,6.19,166.35,165.95000000000002,165.66,165.37,165.1,164.85,164.61,164.37,163.87,28.34,28.01,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.900000000000002,26.52,N/A,N/A +2012,7,18,6,30,101470,100320,99210,87.56,0,5.95,6.5,6.62,6.69,6.75,6.78,6.8100000000000005,6.84,6.87,164.15,163.93,163.88,163.83,163.78,163.75,163.72,163.70000000000002,163.64000000000001,28.330000000000002,28,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A +2012,7,18,7,30,101540,100390,99280,85.84,0,5.5,5.93,6.01,6.05,6.08,6.09,6.09,6.1000000000000005,6.1000000000000005,175.32,175.04,174.86,174.67000000000002,174.48,174.3,174.11,173.92000000000002,173.53,28.38,28.05,27.88,27.68,27.5,27.310000000000002,27.11,26.93,26.55,N/A,N/A +2012,7,18,8,30,101540,100400,99290,86.43,0,4.86,5.24,5.32,5.37,5.4,5.43,5.45,5.47,5.51,175.37,175.46,175.53,175.61,175.68,175.75,175.83,175.9,176.08,28.330000000000002,28,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.88,26.5,N/A,N/A +2012,7,18,9,30,101540,100390,99280,85.42,0,5.17,5.63,5.74,5.8100000000000005,5.87,5.91,5.95,5.98,6.05,178.08,178.20000000000002,178.29,178.37,178.44,178.51,178.59,178.67000000000002,178.85,28.42,28.11,27.94,27.75,27.560000000000002,27.38,27.18,27,26.63,N/A,N/A +2012,7,18,10,30,101540,100390,99280,85.48,0,4.96,5.33,5.41,5.45,5.48,5.5,5.51,5.5200000000000005,5.53,188.76,188.75,188.71,188.66,188.62,188.59,188.55,188.51,188.44,28.37,28.04,27.87,27.67,27.48,27.29,27.1,26.91,26.53,N/A,N/A +2012,7,18,11,30,101580,100440,99330,85.66,0,4.39,4.69,4.74,4.76,4.78,4.78,4.79,4.79,4.79,202.81,202.45000000000002,202.25,202.05,201.85,201.64000000000001,201.41,201.17000000000002,200.59,28.310000000000002,27.990000000000002,27.830000000000002,27.64,27.45,27.27,27.080000000000002,26.900000000000002,26.54,N/A,N/A +2012,7,18,12,30,101630,100490,99370,83.76,0,4.29,4.61,4.68,4.73,4.76,4.78,4.8,4.82,4.84,194.67000000000002,195.32,195.8,196.27,196.68,197.08,197.45000000000002,197.79,198.45000000000002,28.43,28.11,27.95,27.75,27.57,27.39,27.2,27.01,26.64,N/A,N/A +2012,7,18,13,30,101640,100490,99380,82.09,0,4.98,5.3100000000000005,5.36,5.36,5.36,5.3500000000000005,5.33,5.3100000000000005,5.2700000000000005,192.33,192.73000000000002,192.95000000000002,193.16,193.35,193.54,193.74,193.93,194.36,28.43,28.1,27.93,27.740000000000002,27.55,27.36,27.17,26.990000000000002,26.61,N/A,N/A +2012,7,18,14,30,101730,100580,99470,82.74,0,3.52,3.75,3.8000000000000003,3.8200000000000003,3.84,3.85,3.85,3.85,3.86,205.58,205.53,205.46,205.37,205.29,205.20000000000002,205.1,205.02,204.82,28.39,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A +2012,7,18,15,30,101740,100590,99480,79.52,0,3.3200000000000003,3.52,3.56,3.5700000000000003,3.59,3.59,3.6,3.6,3.6,188.69,188.84,188.95000000000002,189.05,189.12,189.19,189.26,189.31,189.43,28.53,28.2,28.03,27.830000000000002,27.64,27.45,27.25,27.07,26.69,N/A,N/A +2012,7,18,16,30,101750,100600,99490,80.42,0,3.96,4.21,4.25,4.2700000000000005,4.28,4.29,4.29,4.3,4.3,202.59,202.31,202.21,202.11,202.02,201.93,201.85,201.77,201.61,28.59,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,18,17,30,101750,100600,99490,78.36,0,4.57,4.8500000000000005,4.89,4.91,4.91,4.91,4.91,4.9,4.88,205.66,205.73000000000002,205.77,205.81,205.84,205.87,205.9,205.93,205.97,28.61,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.740000000000002,N/A,N/A +2012,7,18,18,30,101720,100570,99450,75.62,0,4.38,4.66,4.7,4.71,4.71,4.71,4.7,4.69,4.67,210.39000000000001,210.35,210.36,210.35,210.32,210.29,210.25,210.20000000000002,210.11,28.64,28.3,28.12,27.93,27.740000000000002,27.55,27.35,27.17,26.78,N/A,N/A +2012,7,18,19,30,101710,100560,99450,70.54,0,3.91,4.15,4.19,4.21,4.22,4.23,4.23,4.24,4.24,202.42000000000002,202.73000000000002,202.91,203.08,203.24,203.4,203.55,203.69,203.96,28.78,28.44,28.28,28.080000000000002,27.89,27.7,27.51,27.32,26.95,N/A,N/A +2012,7,18,20,30,101660,100520,99410,72.46000000000001,0,4.46,4.75,4.8100000000000005,4.83,4.8500000000000005,4.86,4.87,4.88,4.88,199.63,200,200.19,200.37,200.53,200.70000000000002,200.86,201.01,201.33,28.73,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,7,18,21,30,101640,100490,99380,71.83,0,4.38,4.68,4.74,4.7700000000000005,4.79,4.8,4.8100000000000005,4.82,4.83,211.02,210.95000000000002,210.98000000000002,211,211.01,211.02,211.02,211.02,211.01,28.77,28.45,28.28,28.080000000000002,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A +2012,7,18,22,30,101640,100490,99380,75.10000000000001,0,4.2700000000000005,4.59,4.64,4.68,4.7,4.71,4.72,4.73,4.75,201.69,201.83,201.91,202,202.07,202.14000000000001,202.22,202.28,202.41,28.62,28.3,28.13,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A +2012,7,18,23,30,101650,100500,99390,75.99,0,4.3,4.62,4.67,4.69,4.71,4.71,4.71,4.71,4.7,187.06,187.5,187.68,187.84,187.99,188.11,188.25,188.37,188.61,28.57,28.26,28.09,27.900000000000002,27.71,27.52,27.32,27.14,26.76,N/A,N/A +2012,7,19,0,30,101610,100470,99350,73.83,0,4.89,5.26,5.3100000000000005,5.33,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,179.94,179.88,179.82,179.75,179.67000000000002,179.58,179.49,179.41,179.21,28.57,28.27,28.11,27.91,27.72,27.54,27.35,27.16,26.79,N/A,N/A +2012,7,19,1,30,101630,100480,99370,78.66,0,5.2,5.58,5.66,5.69,5.72,5.73,5.73,5.74,5.73,178.03,177.94,177.97,177.99,178,178.01,178.02,178.03,178.06,28.38,28.060000000000002,27.89,27.69,27.5,27.32,27.12,26.93,26.560000000000002,N/A,N/A +2012,7,19,2,30,101650,100500,99390,80.55,0,5.17,5.5600000000000005,5.64,5.69,5.71,5.73,5.74,5.75,5.76,175.24,175.27,175.31,175.33,175.35,175.36,175.37,175.38,175.4,28.27,27.94,27.77,27.57,27.39,27.2,27,26.82,26.44,N/A,N/A +2012,7,19,3,30,101670,100520,99410,81.98,0,5.8,6.26,6.3500000000000005,6.4,6.43,6.45,6.46,6.47,6.47,178.09,178.39000000000001,178.52,178.65,178.78,178.89000000000001,179.01,179.12,179.35,28.22,27.89,27.72,27.52,27.330000000000002,27.14,26.95,26.77,26.38,N/A,N/A +2012,7,19,4,30,101660,100510,99400,83.63,0,6.13,6.62,6.71,6.76,6.8,6.82,6.83,6.84,6.8500000000000005,186.81,186.92000000000002,186.95000000000002,186.99,187.02,187.05,187.08,187.11,187.18,28.150000000000002,27.810000000000002,27.64,27.44,27.25,27.060000000000002,26.86,26.68,26.3,N/A,N/A +2012,7,19,5,30,101700,100550,99440,85.69,0,4.88,5.24,5.32,5.36,5.39,5.41,5.43,5.44,5.46,188.62,188.70000000000002,188.71,188.75,188.77,188.8,188.84,188.88,188.97,28.1,27.76,27.580000000000002,27.39,27.2,27.01,26.810000000000002,26.63,26.25,N/A,N/A +2012,7,19,6,30,101750,100610,99490,84.96000000000001,0,5.25,5.61,5.68,5.7,5.72,5.72,5.72,5.71,5.69,189.04,189.49,189.70000000000002,189.91,190.1,190.29,190.48,190.67000000000002,191.07,28.28,27.93,27.76,27.560000000000002,27.37,27.18,26.98,26.79,26.41,N/A,N/A +2012,7,19,7,30,101790,100640,99520,87.04,0,4.92,5.26,5.33,5.37,5.39,5.4,5.41,5.42,5.42,195.83,195.84,195.77,195.71,195.66,195.61,195.55,195.5,195.43,28.150000000000002,27.79,27.62,27.42,27.23,27.04,26.84,26.66,26.28,N/A,N/A +2012,7,19,8,30,101800,100650,99540,85.26,0,4.89,5.22,5.29,5.32,5.34,5.3500000000000005,5.36,5.36,5.36,207.58,207.54,207.49,207.45000000000002,207.41,207.37,207.33,207.29,207.20000000000002,28.19,27.84,27.66,27.46,27.27,27.080000000000002,26.89,26.7,26.32,N/A,N/A +2012,7,19,9,30,101820,100670,99560,84.85000000000001,0,5.0200000000000005,5.37,5.44,5.47,5.49,5.5,5.51,5.51,5.51,214.47,214.38,214.33,214.27,214.23000000000002,214.19,214.15,214.11,214.03,28.150000000000002,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A +2012,7,19,10,30,101850,100700,99590,84.26,0,4.1,4.41,4.48,4.53,4.57,4.6000000000000005,4.62,4.65,4.69,224,224.08,224.07,224.05,224.03,224.01,223.99,223.95000000000002,223.89000000000001,28.13,27.78,27.61,27.41,27.22,27.03,26.830000000000002,26.650000000000002,26.27,N/A,N/A +2012,7,19,11,30,101900,100750,99630,82.47,0,5.47,5.8500000000000005,5.92,5.94,5.94,5.94,5.92,5.9,5.8500000000000005,224.03,224.03,223.96,223.87,223.77,223.66,223.55,223.44,223.19,28.22,27.87,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.35,N/A,N/A +2012,7,19,12,30,101910,100760,99640,80.15,0,4.32,4.65,4.73,4.7700000000000005,4.8,4.83,4.8500000000000005,4.87,4.9,231.41,231.48000000000002,231.52,231.58,231.63,231.68,231.74,231.8,231.9,28.28,27.95,27.77,27.57,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A +2012,7,19,13,30,101940,100780,99670,75.36,0,4.19,4.5,4.57,4.62,4.65,4.68,4.69,4.71,4.74,241.66,241.43,241.31,241.20000000000002,241.11,241.03,240.95000000000002,240.87,240.73000000000002,28.490000000000002,28.17,28,27.8,27.61,27.43,27.23,27.04,26.66,N/A,N/A +2012,7,19,14,30,101960,100800,99690,71.57000000000001,0,4.74,5.07,5.13,5.15,5.17,5.18,5.18,5.19,5.19,243.32,243.15,243.06,242.95000000000002,242.84,242.73000000000002,242.62,242.51,242.27,28.64,28.330000000000002,28.16,27.96,27.77,27.580000000000002,27.39,27.2,26.82,N/A,N/A +2012,7,19,15,30,101980,100830,99710,71.67,0,4,4.2700000000000005,4.32,4.3500000000000005,4.37,4.38,4.39,4.4,4.41,244.73000000000002,244.71,244.78,244.84,244.89000000000001,244.95000000000002,245,245.05,245.14000000000001,28.63,28.3,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.8,N/A,N/A +2012,7,19,16,30,101980,100830,99710,69.23,0,4.3100000000000005,4.63,4.69,4.73,4.76,4.79,4.8,4.82,4.8500000000000005,248.3,248.11,248.01000000000002,247.89000000000001,247.78,247.67000000000002,247.56,247.46,247.22,28.69,28.37,28.19,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A +2012,7,19,17,30,101990,100840,99720,72.33,0,3.89,4.13,4.17,4.19,4.2,4.21,4.21,4.21,4.21,235.46,235.36,235.33,235.3,235.28,235.26,235.25,235.24,235.23000000000002,28.6,28.26,28.09,27.900000000000002,27.71,27.51,27.32,27.14,26.75,N/A,N/A +2012,7,19,18,30,101960,100810,99700,69.65,0,3.5700000000000003,3.7600000000000002,3.8000000000000003,3.8200000000000003,3.83,3.84,3.85,3.85,3.88,218.20000000000002,218.29,218.39000000000001,218.51,218.63,218.77,218.94,219.11,219.58,28.77,28.44,28.28,28.09,27.900000000000002,27.72,27.53,27.36,26.990000000000002,N/A,N/A +2012,7,19,19,30,101920,100770,99650,68.31,0,4.37,4.67,4.73,4.7700000000000005,4.79,4.82,4.84,4.87,4.93,207.22,207.82,208.20000000000002,208.61,209.03,209.46,209.94,210.41,211.59,28.990000000000002,28.67,28.51,28.32,28.14,27.96,27.77,27.6,27.25,N/A,N/A +2012,7,19,20,30,101900,100750,99640,70.55,0,4.4,4.72,4.7700000000000005,4.8,4.83,4.84,4.86,4.88,4.92,191.72,192.41,192.87,193.33,193.79,194.27,194.83,195.39000000000001,196.86,28.96,28.64,28.48,28.28,28.1,27.92,27.73,27.55,27.2,N/A,N/A +2012,7,19,21,30,101850,100700,99590,73.92,0,5.18,5.53,5.58,5.58,5.57,5.55,5.53,5.5,5.42,200.42000000000002,200.39000000000001,200.26,200.09,199.91,199.71,199.47,199.22,198.64000000000001,28.810000000000002,28.490000000000002,28.32,28.12,27.93,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,7,19,22,30,101810,100670,99550,72.85000000000001,0,4.65,5,5.0600000000000005,5.09,5.11,5.12,5.13,5.13,5.14,201.37,201.48000000000002,201.58,201.68,201.79,201.9,202.02,202.15,202.48000000000002,28.89,28.580000000000002,28.42,28.23,28.05,27.86,27.68,27.5,27.14,N/A,N/A +2012,7,19,23,30,101790,100640,99530,74.44,0,5.49,5.92,5.99,6.0200000000000005,6.04,6.04,6.03,6.03,6,201.78,201.9,201.95000000000002,201.98000000000002,202.02,202.04,202.07,202.09,202.14000000000001,28.810000000000002,28.51,28.34,28.150000000000002,27.97,27.78,27.59,27.400000000000002,27.03,N/A,N/A +2012,7,20,0,30,101750,100600,99490,75.76,0,5.82,6.3100000000000005,6.390000000000001,6.43,6.46,6.48,6.49,6.49,6.49,201.54,201.76,201.84,201.92000000000002,202,202.08,202.18,202.28,202.53,28.740000000000002,28.43,28.26,28.07,27.88,27.7,27.51,27.330000000000002,26.96,N/A,N/A +2012,7,20,1,30,101720,100570,99460,77.41,0,5.87,6.34,6.43,6.47,6.5,6.51,6.5200000000000005,6.53,6.54,201.89000000000001,202,202.13,202.29,202.45000000000002,202.6,202.79,202.97,203.42000000000002,28.6,28.28,28.11,27.92,27.740000000000002,27.55,27.36,27.18,26.810000000000002,N/A,N/A +2012,7,20,2,30,101750,100600,99490,80.57000000000001,0,6.45,6.98,7.08,7.13,7.15,7.17,7.17,7.18,7.17,199.53,199.74,199.84,199.95000000000002,200.04,200.13,200.24,200.34,200.57,28.490000000000002,28.16,28,27.8,27.61,27.42,27.23,27.05,26.67,N/A,N/A +2012,7,20,3,30,101760,100610,99500,82.13,0,6.55,7.07,7.18,7.23,7.26,7.28,7.29,7.29,7.28,203.98000000000002,204.13,204.20000000000002,204.29,204.37,204.46,204.57,204.67000000000002,204.91,28.48,28.150000000000002,27.97,27.78,27.59,27.400000000000002,27.21,27.03,26.66,N/A,N/A +2012,7,20,4,30,101760,100610,99500,84.42,0,6.69,7.25,7.37,7.43,7.47,7.5,7.5200000000000005,7.53,7.54,204.48000000000002,204.65,204.75,204.86,204.96,205.06,205.16,205.27,205.52,28.400000000000002,28.060000000000002,27.89,27.69,27.51,27.32,27.13,26.94,26.57,N/A,N/A +2012,7,20,5,30,101770,100620,99500,85.77,0,6.5600000000000005,7.140000000000001,7.26,7.32,7.36,7.390000000000001,7.4,7.41,7.41,209.23000000000002,209.46,209.51,209.55,209.59,209.62,209.65,209.68,209.73000000000002,28.35,28,27.830000000000002,27.63,27.44,27.25,27.05,26.87,26.490000000000002,N/A,N/A +2012,7,20,6,30,101800,100650,99540,85.98,0,6.86,7.38,7.49,7.54,7.5600000000000005,7.57,7.57,7.57,7.55,221.94,221.98000000000002,221.96,221.95000000000002,221.94,221.93,221.91,221.9,221.86,28.37,28.01,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A +2012,7,20,7,30,101790,100640,99530,85.41,0,8.1,8.84,8.99,9.06,9.11,9.13,9.13,9.13,9.1,225.1,225.19,225.23000000000002,225.24,225.25,225.25,225.24,225.23000000000002,225.18,28.43,28.07,27.89,27.69,27.5,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,20,8,30,101810,100660,99550,82.81,0,6.9,7.51,7.68,7.79,7.87,7.930000000000001,7.99,8.040000000000001,8.14,237.81,237.71,237.63,237.56,237.52,237.47,237.43,237.39000000000001,237.32,28.51,28.17,27.990000000000002,27.79,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,7,20,9,30,101820,100680,99560,80.46000000000001,0,7.61,8.27,8.42,8.49,8.540000000000001,8.56,8.58,8.59,8.59,231.82,231.98000000000002,232.13,232.27,232.4,232.51,232.62,232.72,232.92000000000002,28.580000000000002,28.240000000000002,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A +2012,7,20,10,30,101810,100660,99550,64.82000000000001,0,7.8,8.52,8.67,8.75,8.8,8.82,8.84,8.85,8.85,238.47,238.41,238.33,238.24,238.15,238.06,237.98000000000002,237.89000000000001,237.73000000000002,29.26,28.98,28.82,28.63,28.44,28.26,28.060000000000002,27.88,27.5,N/A,N/A +2012,7,20,11,30,101810,100660,99550,66.38,0,7.23,7.97,8.14,8.24,8.32,8.38,8.42,8.46,8.53,249.22,249.18,249.18,249.18,249.18,249.18,249.18,249.19,249.19,29.150000000000002,28.85,28.68,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A +2012,7,20,12,30,101860,100710,99600,66.04,0,7.3,7.98,8.13,8.21,8.26,8.290000000000001,8.31,8.32,8.32,253.4,253.70000000000002,253.81,253.92000000000002,254.03,254.13,254.23000000000002,254.33,254.53,29.14,28.85,28.69,28.490000000000002,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A +2012,7,20,13,30,101870,100710,99600,67.21000000000001,0,6.8,7.32,7.42,7.46,7.48,7.49,7.49,7.48,7.47,265.12,264.58,264.14,263.67,263.23,262.81,262.36,261.92,261.02,28.8,28.490000000000002,28.330000000000002,28.14,27.95,27.77,27.580000000000002,27.400000000000002,27.03,N/A,N/A +2012,7,20,14,30,101900,100750,99640,64.98,0,6.23,6.73,6.8100000000000005,6.84,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.83,6.8,271.3,270.95,270.73,270.51,270.29,270.09000000000003,269.88,269.67,269.22,28.82,28.5,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.38,27,N/A,N/A +2012,7,20,15,30,101900,100750,99630,62.93,0,6.46,6.92,7.01,7.04,7.07,7.08,7.09,7.1000000000000005,7.13,270.63,270.09000000000003,269.7,269.25,268.82,268.38,267.92,267.48,266.55,28.77,28.48,28.32,28.13,27.96,27.78,27.6,27.43,27.080000000000002,N/A,N/A +2012,7,20,16,30,101870,100720,99600,61.27,0,5.38,5.82,5.91,5.96,6,6.03,6.05,6.08,6.12,264.1,264.47,264.71,264.93,265.15,265.36,265.58,265.78000000000003,266.25,29.01,28.71,28.55,28.36,28.18,27.990000000000002,27.8,27.63,27.26,N/A,N/A +2012,7,20,17,30,101860,100710,99590,61.410000000000004,0,5.26,5.64,5.7,5.72,5.73,5.73,5.73,5.73,5.72,234.58,235.1,235.46,235.85,236.24,236.64000000000001,237.12,237.6,238.83,29.21,28.91,28.75,28.55,28.37,28.19,28.01,27.830000000000002,27.47,N/A,N/A +2012,7,20,18,30,101810,100660,99550,62.550000000000004,0,5.38,5.75,5.79,5.79,5.78,5.76,5.73,5.69,5.61,217.32,217.82,218.16,218.54,218.95000000000002,219.39000000000001,219.96,220.56,222.51,29.29,28.990000000000002,28.830000000000002,28.64,28.46,28.29,28.1,27.93,27.61,N/A,N/A +2012,7,20,19,30,101780,100640,99520,63.43,0,4.8500000000000005,5.21,5.26,5.2700000000000005,5.2700000000000005,5.26,5.25,5.23,5.18,214.14000000000001,214.47,214.70000000000002,214.93,215.18,215.43,215.72,216.01,216.79,29.400000000000002,29.1,28.94,28.75,28.560000000000002,28.38,28.19,28.01,27.650000000000002,N/A,N/A +2012,7,20,20,30,101730,100580,99470,65.8,0,5.87,6.32,6.38,6.390000000000001,6.390000000000001,6.37,6.3500000000000005,6.32,6.24,211.06,211.16,211.28,211.4,211.51,211.63,211.75,211.88,212.21,29.310000000000002,29.01,28.85,28.66,28.48,28.29,28.1,27.92,27.560000000000002,N/A,N/A +2012,7,20,21,30,101710,100560,99450,67.55,0,5.96,6.45,6.53,6.5600000000000005,6.58,6.58,6.57,6.5600000000000005,6.5200000000000005,206,206.16,206.31,206.45000000000002,206.58,206.71,206.85,206.99,207.33,29.29,28.990000000000002,28.830000000000002,28.64,28.46,28.28,28.09,27.91,27.55,N/A,N/A +2012,7,20,22,30,101650,100510,99400,71.64,0,6.73,7.29,7.390000000000001,7.43,7.45,7.45,7.43,7.42,7.37,208.49,208.6,208.71,208.82,208.93,209.04,209.17000000000002,209.3,209.61,29.080000000000002,28.78,28.62,28.43,28.240000000000002,28.060000000000002,27.88,27.7,27.34,N/A,N/A +2012,7,20,23,30,101630,100490,99380,73.33,0,6.99,7.57,7.68,7.72,7.74,7.74,7.73,7.72,7.68,209.24,209.4,209.48000000000002,209.57,209.65,209.74,209.83,209.92000000000002,210.13,29.02,28.72,28.55,28.36,28.18,27.990000000000002,27.8,27.62,27.26,N/A,N/A +2012,7,21,0,30,101590,100440,99330,75.85000000000001,0,7.390000000000001,8.03,8.15,8.2,8.23,8.25,8.25,8.25,8.24,210.76,210.94,211.05,211.16,211.28,211.41,211.55,211.70000000000002,212.07,28.93,28.62,28.45,28.26,28.080000000000002,27.89,27.71,27.53,27.17,N/A,N/A +2012,7,21,1,30,101550,100410,99300,77.84,0,7.41,8.06,8.19,8.24,8.27,8.28,8.28,8.27,8.24,214.14000000000001,214.3,214.41,214.52,214.62,214.72,214.83,214.93,215.18,28.900000000000002,28.57,28.41,28.21,28.03,27.84,27.66,27.48,27.11,N/A,N/A +2012,7,21,2,30,101560,100410,99300,81.21000000000001,0,7.61,8.28,8.4,8.46,8.49,8.5,8.5,8.5,8.47,215.03,215.20000000000002,215.28,215.36,215.44,215.51,215.6,215.68,215.88,28.75,28.41,28.240000000000002,28.05,27.86,27.68,27.490000000000002,27.3,26.94,N/A,N/A +2012,7,21,3,30,101550,100410,99300,81.68,0,7.83,8.52,8.65,8.72,8.75,8.77,8.78,8.790000000000001,8.790000000000001,223.39000000000001,223.55,223.63,223.73000000000002,223.84,223.96,224.09,224.22,224.57,28.77,28.43,28.27,28.07,27.89,27.71,27.52,27.34,26.98,N/A,N/A +2012,7,21,4,30,101550,100410,99300,83.26,0,7.54,8.2,8.33,8.4,8.43,8.45,8.45,8.45,8.44,230.16,230.29,230.36,230.46,230.54,230.64000000000001,230.75,230.86,231.13,28.73,28.39,28.22,28.02,27.84,27.650000000000002,27.46,27.28,26.91,N/A,N/A +2012,7,21,5,30,101550,100400,99290,85.23,0,7.78,8.47,8.61,8.68,8.72,8.74,8.75,8.74,8.72,229.59,229.73000000000002,229.8,229.86,229.92000000000002,229.97,230.03,230.09,230.22,28.63,28.28,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.78,N/A,N/A +2012,7,21,6,30,101550,100400,99300,84.85000000000001,0,7.79,8.46,8.61,8.67,8.72,8.74,8.75,8.76,8.75,236.05,236.11,236.15,236.19,236.23000000000002,236.28,236.33,236.38,236.5,28.67,28.310000000000002,28.14,27.94,27.75,27.57,27.37,27.19,26.82,N/A,N/A +2012,7,21,7,30,101590,100440,99330,85.95,0,7.76,8.43,8.57,8.63,8.67,8.69,8.700000000000001,8.700000000000001,8.69,231.93,232.12,232.20000000000002,232.28,232.35,232.42000000000002,232.49,232.56,232.71,28.63,28.27,28.09,27.89,27.7,27.52,27.32,27.14,26.77,N/A,N/A +2012,7,21,8,30,101570,100420,99310,87.46000000000001,0,7.87,8.56,8.71,8.78,8.82,8.84,8.85,8.85,8.84,240.56,240.62,240.67000000000002,240.72,240.76,240.81,240.87,240.92000000000002,241.03,28.53,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A +2012,7,21,9,30,101570,100430,99320,88.03,0,7.97,8.69,8.85,8.93,8.98,9.01,9.02,9.02,9.01,243.58,243.65,243.66,243.69,243.71,243.74,243.78,243.81,243.9,28.5,28.13,27.95,27.75,27.55,27.36,27.17,26.98,26.6,N/A,N/A +2012,7,21,10,30,101610,100470,99360,86.18,0,7.99,8.73,8.88,8.950000000000001,8.99,9.01,9,8.99,8.93,249.97,249.94,249.98000000000002,250.04,250.11,250.18,250.27,250.35,250.56,28.650000000000002,28.29,28.11,27.91,27.72,27.52,27.32,27.14,26.75,N/A,N/A +2012,7,21,11,30,101600,100460,99350,82.34,0,7.96,8.51,8.620000000000001,8.65,8.66,8.66,8.66,8.65,8.61,252.74,253.11,253.31,253.51000000000002,253.69,253.87,254.04,254.21,254.54,28.63,28.27,28.1,27.91,27.72,27.54,27.35,27.17,26.810000000000002,N/A,N/A +2012,7,21,12,30,101640,100490,99380,84.32000000000001,0,7.5200000000000005,8.14,8.27,8.33,8.36,8.38,8.38,8.38,8.370000000000001,267.01,266.78000000000003,266.59000000000003,266.37,266.17,265.97,265.76,265.56,265.14,28.38,28,27.82,27.62,27.43,27.23,27.04,26.85,26.47,N/A,N/A +2012,7,21,13,30,101640,100500,99380,81.65,0,7.25,7.88,8.01,8.09,8.14,8.17,8.19,8.2,8.22,267.33,267.17,267.07,266.96,266.86,266.76,266.66,266.56,266.36,28.29,27.91,27.73,27.53,27.34,27.150000000000002,26.96,26.77,26.39,N/A,N/A +2012,7,21,14,30,101660,100510,99390,83.11,0,7.54,8.14,8.26,8.32,8.35,8.370000000000001,8.38,8.39,8.39,271.46,271.11,271,270.88,270.77,270.66,270.55,270.44,270.2,27.98,27.580000000000002,27.400000000000002,27.2,27,26.810000000000002,26.62,26.43,26.060000000000002,N/A,N/A +2012,7,21,15,30,101650,100500,99390,77.33,0,6.19,6.63,6.71,6.74,6.76,6.76,6.76,6.75,6.74,262.58,263.08,263.42,263.73,264.02,264.29,264.58,264.85,265.45,28.34,27.98,27.8,27.61,27.42,27.23,27.04,26.86,26.490000000000002,N/A,N/A +2012,7,21,16,30,101650,100510,99400,71.87,0,4.92,5.28,5.36,5.41,5.44,5.47,5.49,5.51,5.55,255.6,256.28000000000003,256.73,257.19,257.62,258.05,258.51,258.96,260.04,28.93,28.61,28.44,28.25,28.07,27.88,27.69,27.52,27.150000000000002,N/A,N/A +2012,7,21,17,30,101610,100470,99360,68.63,0,4.11,4.36,4.39,4.4,4.4,4.4,4.39,4.39,4.38,243.68,244.86,245.58,246.34,247.1,247.86,248.74,249.61,251.81,29.29,28.98,28.82,28.63,28.45,28.27,28.080000000000002,27.91,27.560000000000002,N/A,N/A +2012,7,21,18,30,101610,100470,99360,68.62,0,3.8000000000000003,3.99,3.99,3.97,3.94,3.91,3.86,3.8200000000000003,3.73,215.79,216.73000000000002,217.32,217.96,218.6,219.29,220.1,220.91,223.06,29.5,29.19,29.03,28.84,28.66,28.48,28.29,28.12,27.77,N/A,N/A +2012,7,21,19,30,101610,100470,99360,71.45,0,3.83,4.03,4.05,4.05,4.04,4.0200000000000005,4,3.98,3.92,209.74,210.06,210.31,210.55,210.78,211,211.24,211.47,211.99,29.37,29.04,28.87,28.67,28.490000000000002,28.3,28.11,27.93,27.560000000000002,N/A,N/A +2012,7,21,20,30,101560,100420,99310,74.88,0,4.48,4.73,4.75,4.75,4.74,4.72,4.69,4.66,4.58,205.85,205.96,205.99,206.02,206.04,206.07,206.09,206.12,206.19,29.23,28.89,28.72,28.52,28.34,28.150000000000002,27.96,27.78,27.42,N/A,N/A +2012,7,21,21,30,101520,100370,99270,74.47,0,4.07,4.28,4.29,4.28,4.26,4.24,4.21,4.17,4.09,196.57,196.8,196.88,196.97,197.07,197.16,197.27,197.38,197.63,29.22,28.89,28.72,28.53,28.35,28.16,27.98,27.8,27.45,N/A,N/A +2012,7,21,22,30,101490,100350,99240,76.45,0,5.2700000000000005,5.63,5.68,5.69,5.68,5.67,5.65,5.63,5.58,186.59,186.58,186.6,186.61,186.61,186.61,186.6,186.59,186.53,29.150000000000002,28.830000000000002,28.66,28.47,28.29,28.1,27.91,27.73,27.37,N/A,N/A +2012,7,21,23,30,101450,100300,99200,75.73,0,7.04,7.640000000000001,7.75,7.8,7.82,7.83,7.83,7.83,7.8100000000000005,179.42000000000002,179.62,179.71,179.81,179.9,179.99,180.09,180.18,180.37,29.16,28.85,28.68,28.490000000000002,28.3,28.11,27.92,27.740000000000002,27.36,N/A,N/A +2012,7,22,0,30,101430,100290,99180,74.38,0,7.32,7.94,8.05,8.1,8.120000000000001,8.13,8.13,8.13,8.1,182.42000000000002,182.59,182.66,182.72,182.79,182.85,182.92000000000002,182.98,183.13,29.150000000000002,28.84,28.67,28.47,28.29,28.1,27.900000000000002,27.72,27.34,N/A,N/A +2012,7,22,1,30,101390,100250,99140,86.87,0,7.66,8.26,8.370000000000001,8.4,8.41,8.41,8.39,8.370000000000001,8.31,185.09,185.52,185.8,186.09,186.38,186.69,187.04,187.39000000000001,188.21,28.29,27.91,27.73,27.54,27.35,27.17,26.98,26.8,26.44,N/A,N/A +2012,7,22,2,30,101430,100280,99170,87.52,0,7.21,7.7700000000000005,7.890000000000001,7.930000000000001,7.96,7.97,7.97,7.97,7.94,188.69,188.95000000000002,189.09,189.22,189.33,189.42000000000002,189.53,189.62,189.84,28.21,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.32,N/A,N/A +2012,7,22,3,30,101430,100290,99180,86.08,0,6.890000000000001,7.41,7.51,7.55,7.57,7.57,7.57,7.5600000000000005,7.5200000000000005,198.89000000000001,198.92000000000002,198.94,198.96,198.98000000000002,199,199.03,199.06,199.13,28.35,27.98,27.8,27.6,27.41,27.22,27.03,26.85,26.47,N/A,N/A +2012,7,22,4,30,101420,100280,99170,85.4,0,6.2700000000000005,6.73,6.8100000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,197.81,197.94,198.03,198.14000000000001,198.24,198.34,198.45000000000002,198.55,198.79,28.34,27.98,27.8,27.6,27.41,27.23,27.03,26.85,26.48,N/A,N/A +2012,7,22,5,30,101420,100270,99170,83.53,0,6.32,6.7700000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,6.82,193.54,193.63,193.66,193.70000000000002,193.73000000000002,193.76,193.78,193.81,193.87,28.34,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.830000000000002,26.45,N/A,N/A +2012,7,22,6,30,101440,100300,99190,80.58,0,6.61,7.1000000000000005,7.21,7.25,7.2700000000000005,7.28,7.29,7.28,7.2700000000000005,190.72,190.67000000000002,190.6,190.54,190.48,190.43,190.38,190.34,190.27,28.39,28.03,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.5,N/A,N/A +2012,7,22,7,30,101460,100310,99210,78.86,0,5.87,6.3100000000000005,6.390000000000001,6.42,6.44,6.45,6.45,6.45,6.44,187.73,187.84,187.94,188.03,188.11,188.20000000000002,188.28,188.37,188.56,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,22,8,30,101500,100350,99240,80.79,0,6.38,6.88,6.98,7.03,7.0600000000000005,7.07,7.08,7.08,7.07,192.38,192.55,192.56,192.56,192.57,192.57,192.58,192.59,192.63,28.47,28.11,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.59,N/A,N/A +2012,7,22,9,30,101520,100380,99270,84.94,0,5.68,6.1000000000000005,6.19,6.23,6.2700000000000005,6.28,6.3,6.3100000000000005,6.3100000000000005,197.39000000000001,197.46,197.48000000000002,197.51,197.54,197.57,197.61,197.64000000000001,197.74,28.32,27.96,27.78,27.580000000000002,27.39,27.2,27,26.82,26.44,N/A,N/A +2012,7,22,10,30,101570,100430,99320,82.95,0,4.7700000000000005,5.11,5.19,5.22,5.25,5.26,5.2700000000000005,5.28,5.28,197.97,198.66,198.82,198.94,199.01,199.07,199.11,199.14000000000001,199.18,28.62,28.28,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.77,N/A,N/A +2012,7,22,11,30,101600,100460,99350,81.47,0,4.83,5.1000000000000005,5.15,5.16,5.16,5.15,5.13,5.12,5.07,201.07,200.78,200.52,200.27,200.05,199.83,199.61,199.41,199,28.44,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.97,26.59,N/A,N/A +2012,7,22,12,30,101630,100480,99370,80.99,0,4.97,5.28,5.33,5.34,5.34,5.34,5.33,5.32,5.29,215.5,215.5,215.48000000000002,215.45000000000002,215.42000000000002,215.39000000000001,215.37,215.33,215.27,28.42,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A +2012,7,22,13,30,101640,100490,99380,81.10000000000001,0,2.84,3.02,3.0500000000000003,3.08,3.11,3.13,3.14,3.16,3.19,221.03,220.95000000000002,220.85,220.76,220.68,220.62,220.55,220.5,220.38,28.39,28.05,27.88,27.68,27.490000000000002,27.3,27.11,26.92,26.54,N/A,N/A +2012,7,22,14,30,101680,100530,99420,82.86,0,1.36,1.41,1.42,1.42,1.43,1.43,1.43,1.43,1.43,245.07,244.48000000000002,244.07,243.67000000000002,243.28,242.89000000000001,242.48000000000002,242.08,241.25,28.36,28.02,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A +2012,7,22,15,30,101710,100570,99460,82.07000000000001,0,0.35000000000000003,0.39,0.41000000000000003,0.42,0.44,0.45,0.47000000000000003,0.49,0.52,236.58,234.55,233.38,232.37,231.46,230.58,229.82,229.13,227.8,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.01,26.63,N/A,N/A +2012,7,22,16,30,101720,100580,99470,82.01,0,0.81,0.85,0.86,0.87,0.88,0.89,0.9,0.91,0.93,161.47,163.68,164.82,165.99,167.05,168.05,169.12,170.15,172.27,28.61,28.26,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,22,17,30,101720,100570,99460,83.10000000000001,0,2.31,2.44,2.47,2.49,2.5100000000000002,2.52,2.5300000000000002,2.5500000000000003,2.57,117.72,118.79,119.36,119.91,120.42,120.92,121.42,121.9,122.89,28.75,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,7,22,18,30,101720,100570,99460,81.85000000000001,0,5.46,5.8,5.8500000000000005,5.87,5.87,5.87,5.86,5.86,5.83,118.63,118.75,118.96000000000001,119.17,119.34,119.51,119.67,119.81,120.11,28.95,28.580000000000002,28.400000000000002,28.19,28,27.810000000000002,27.61,27.42,27.04,N/A,N/A +2012,7,22,19,30,101740,100580,99470,87.74,0,7.7700000000000005,8.290000000000001,8.39,8.41,8.42,8.41,8.4,8.39,8.33,154.26,155.4,155.93,156.46,156.95000000000002,157.42000000000002,157.89000000000001,158.34,159.43,27.63,27.22,27.04,26.85,26.67,26.5,26.32,26.150000000000002,25.830000000000002,N/A,N/A +2012,7,22,20,30,101700,100540,99430,80.87,0,7.0200000000000005,7.44,7.47,7.44,7.4,7.33,7.25,7.17,6.94,158.26,158.55,158.73,158.94,159.17000000000002,159.42000000000002,159.75,160.09,160.89000000000001,27.57,27.16,26.98,26.78,26.59,26.41,26.22,26.04,25.67,N/A,N/A +2012,7,22,21,30,101720,100570,99450,80.64,0,8.44,9.08,9.17,9.200000000000001,9.19,9.16,9.120000000000001,9.08,8.950000000000001,183.36,183.53,183.46,183.37,183.27,183.19,183.09,182.99,182.75,27.52,27.1,26.92,26.71,26.52,26.330000000000002,26.14,25.96,25.59,N/A,N/A +2012,7,22,22,30,101720,100570,99450,82.43,0,9.82,10.57,10.700000000000001,10.72,10.72,10.68,10.63,10.58,10.44,194.39000000000001,194.17000000000002,193.9,193.61,193.32,193.03,192.71,192.4,191.72,27.29,26.84,26.64,26.44,26.240000000000002,26.05,25.86,25.68,25.310000000000002,N/A,N/A +2012,7,22,23,30,101720,100570,99450,86.69,0,9.14,9.870000000000001,10.02,10.08,10.11,10.13,10.120000000000001,10.11,10.06,181.34,181.38,181.4,181.42000000000002,181.44,181.46,181.48,181.49,181.53,27.16,26.71,26.52,26.310000000000002,26.11,25.92,25.72,25.54,25.16,N/A,N/A +2012,7,23,0,30,101700,100550,99430,83.96000000000001,0,7.23,7.73,7.82,7.8500000000000005,7.86,7.86,7.8500000000000005,7.84,7.8,187.12,186.95000000000002,186.83,186.71,186.59,186.45000000000002,186.31,186.17000000000002,185.83,26.92,26.48,26.29,26.09,25.89,25.7,25.51,25.32,24.94,N/A,N/A +2012,7,23,1,30,101660,100510,99390,80.81,0,5.44,5.78,5.84,5.86,5.87,5.88,5.89,5.89,5.91,175.39000000000001,175.22,175.09,174.95000000000002,174.8,174.65,174.46,174.26,173.69,27.22,26.810000000000002,26.63,26.43,26.240000000000002,26.060000000000002,25.87,25.69,25.330000000000002,N/A,N/A +2012,7,23,2,30,101730,100570,99460,78.97,0,5.37,5.73,5.8,5.83,5.8500000000000005,5.86,5.87,5.87,5.88,156.15,156.09,156.17000000000002,156.22,156.26,156.29,156.3,156.3,156.28,27.63,27.25,27.07,26.87,26.68,26.490000000000002,26.3,26.12,25.740000000000002,N/A,N/A +2012,7,23,3,30,101710,100560,99440,79.19,0,6,6.45,6.55,6.6000000000000005,6.63,6.66,6.68,6.7,6.72,158.27,158.12,158.08,158.02,157.97,157.91,157.84,157.78,157.64000000000001,27.97,27.59,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.07,N/A,N/A +2012,7,23,4,30,101720,100570,99450,82.21000000000001,0,7.24,7.83,7.95,8.02,8.06,8.08,8.09,8.1,8.1,160.37,160.32,160.32,160.32,160.32,160.32,160.32,160.32,160.32,28.07,27.69,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A +2012,7,23,5,30,101710,100560,99450,80.09,0,7,7.53,7.640000000000001,7.7,7.72,7.74,7.75,7.75,7.73,159.27,159.29,159.32,159.37,159.41,159.45000000000002,159.49,159.54,159.63,28.12,27.75,27.57,27.37,27.18,26.990000000000002,26.79,26.6,26.23,N/A,N/A +2012,7,23,6,30,101750,100600,99480,79.39,0,6.5200000000000005,7.03,7.15,7.21,7.25,7.2700000000000005,7.29,7.3,7.32,163.86,163.98,164.01,164.04,164.07,164.1,164.12,164.14000000000001,164.17000000000002,28.18,27.810000000000002,27.63,27.43,27.240000000000002,27.04,26.85,26.66,26.28,N/A,N/A +2012,7,23,7,30,101780,100630,99510,77.47,0,5.32,5.7,5.78,5.82,5.8500000000000005,5.87,5.88,5.89,5.9,167.13,167.09,167.08,167.08,167.08,167.09,167.09,167.1,167.11,28.28,27.92,27.740000000000002,27.54,27.35,27.16,26.96,26.78,26.39,N/A,N/A +2012,7,23,8,30,101780,100630,99520,79.42,0,4.97,5.3100000000000005,5.39,5.42,5.45,5.46,5.47,5.48,5.48,177.02,176.94,176.92000000000002,176.88,176.85,176.82,176.79,176.75,176.67000000000002,28.19,27.830000000000002,27.650000000000002,27.45,27.25,27.060000000000002,26.86,26.68,26.29,N/A,N/A +2012,7,23,9,30,101810,100660,99540,78.27,0,5.36,5.7,5.75,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,5.75,5.72,171.36,171.59,171.70000000000002,171.81,171.92000000000002,172.02,172.13,172.23,172.45000000000002,28.2,27.84,27.66,27.46,27.27,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,7,23,10,30,101820,100670,99550,77.23,0,4.4,4.69,4.75,4.7700000000000005,4.79,4.79,4.79,4.79,4.78,190.17000000000002,189.99,189.87,189.76,189.65,189.55,189.44,189.35,189.15,28.36,28.01,27.830000000000002,27.63,27.44,27.25,27.05,26.86,26.48,N/A,N/A +2012,7,23,11,30,101850,100700,99590,75.10000000000001,0,4.69,5.03,5.1000000000000005,5.14,5.17,5.19,5.21,5.23,5.25,189.59,189.43,189.42000000000002,189.42000000000002,189.42000000000002,189.42000000000002,189.42000000000002,189.43,189.44,28.41,28.07,27.900000000000002,27.69,27.5,27.32,27.12,26.93,26.55,N/A,N/A +2012,7,23,12,30,101860,100710,99600,75.31,0,3.7600000000000002,3.96,3.99,3.99,3.99,3.99,3.98,3.97,3.94,183.66,183.76,183.77,183.8,183.82,183.84,183.87,183.91,184,28.37,28.02,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.5,N/A,N/A +2012,7,23,13,30,101890,100740,99630,75.16,0,2.99,3.15,3.17,3.19,3.19,3.2,3.2,3.2,3.2,183.05,183.18,183.23,183.26,183.28,183.3,183.3,183.31,183.3,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.11,26.92,26.54,N/A,N/A +2012,7,23,14,30,101910,100760,99650,76.18,0,2.31,2.41,2.42,2.42,2.42,2.42,2.42,2.41,2.4,190.99,190.79,190.76,190.70000000000002,190.62,190.55,190.45000000000002,190.35,190.12,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A +2012,7,23,15,30,101950,100800,99690,77.05,0,1.74,1.85,1.8900000000000001,1.92,1.94,1.96,1.99,2.0100000000000002,2.04,174.33,174.16,174.03,173.92000000000002,173.84,173.78,173.73,173.69,173.61,28.45,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,7,23,16,30,101910,100750,99640,79.8,0,3.47,3.54,3.5,3.46,3.42,3.37,3.3200000000000003,3.27,3.18,153.4,154.55,155.3,156.04,156.75,157.39000000000001,158.07,158.67000000000002,159.95000000000002,28.26,27.900000000000002,27.72,27.53,27.34,27.16,26.96,26.78,26.41,N/A,N/A +2012,7,23,17,30,101960,100800,99690,85.31,0,3.0500000000000003,2.54,2.13,1.6400000000000001,1.25,0.93,0.85,0.8300000000000001,1.33,17.22,20.55,24.47,30.5,43.300000000000004,57.26,82.82000000000001,110.33,142.54,27.3,26.990000000000002,26.87,26.75,26.62,26.490000000000002,26.37,26.25,26.05,N/A,N/A +2012,7,23,18,30,101910,100750,99640,82.64,0,2.19,2.42,2.5100000000000002,2.59,2.66,2.71,2.7600000000000002,2.8000000000000003,2.88,123.62,128.27,130.44,132.32,133.85,135.17000000000002,136.3,137.28,139.09,27.95,27.580000000000002,27.41,27.21,27.03,26.84,26.650000000000002,26.47,26.1,N/A,N/A +2012,7,23,19,30,101930,100780,99670,74.19,0,3.7,3.89,3.92,3.94,3.95,3.95,3.95,3.95,3.94,155.73,155.52,155.4,155.28,155.16,155.05,154.94,154.84,154.63,28.73,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.85,N/A,N/A +2012,7,23,20,30,101910,100760,99650,74.03,0,3.45,3.67,3.72,3.74,3.77,3.7800000000000002,3.79,3.8000000000000003,3.81,134.71,134.81,134.94,135.04,135.12,135.2,135.26,135.32,135.4,28.900000000000002,28.54,28.37,28.16,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A +2012,7,23,21,30,101890,100740,99630,71.73,0,4.19,4.45,4.49,4.5,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.5200000000000005,143.07,142.93,142.85,142.75,142.66,142.57,142.47,142.38,142.19,28.94,28.6,28.42,28.22,28.03,27.84,27.650000000000002,27.46,27.07,N/A,N/A +2012,7,23,22,30,101890,100740,99620,78.01,0,3.35,3.56,3.61,3.64,3.66,3.67,3.69,3.7,3.71,146.23,146.19,146.29,146.38,146.47,146.56,146.65,146.74,146.92000000000002,28.66,28.32,28.150000000000002,27.94,27.75,27.560000000000002,27.37,27.18,26.8,N/A,N/A +2012,7,23,23,30,101870,100720,99610,79.63,0,3.64,3.88,3.93,3.97,3.99,4.0200000000000005,4.03,4.05,4.09,145.9,145.78,145.78,145.78,145.78,145.77,145.75,145.74,145.71,28.61,28.27,28.1,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.76,N/A,N/A +2012,7,24,0,30,101830,100680,99560,79.92,0,3.91,4.17,4.23,4.2700000000000005,4.3,4.33,4.3500000000000005,4.38,4.42,133.99,134.26,134.5,134.7,134.86,135.02,135.15,135.27,135.48,28.66,28.32,28.150000000000002,27.96,27.76,27.57,27.38,27.2,26.810000000000002,N/A,N/A +2012,7,24,1,30,101810,100660,99550,78.05,0,4.09,4.36,4.43,4.47,4.5,4.5200000000000005,4.54,4.5600000000000005,4.59,137.01,137.55,137.72,137.82,137.86,137.87,137.85,137.82,137.68,28.87,28.55,28.39,28.19,28.01,27.830000000000002,27.63,27.45,27.080000000000002,N/A,N/A +2012,7,24,2,30,101800,100650,99540,78.53,0,5.12,5.49,5.57,5.62,5.65,5.67,5.69,5.71,5.73,141.82,141.67000000000002,141.67000000000002,141.69,141.72,141.76,141.81,141.87,141.99,28.71,28.38,28.21,28.02,27.830000000000002,27.64,27.45,27.27,26.89,N/A,N/A +2012,7,24,3,30,101810,100670,99560,79.01,0,5.86,6.33,6.42,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,161.81,161.51,161.32,161.14000000000001,160.97,160.8,160.64000000000001,160.48,160.17000000000002,28.740000000000002,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,7,24,4,30,101810,100660,99550,79.54,0,5.51,5.9,5.96,5.99,6.01,6.0200000000000005,6.0200000000000005,6.01,6,148.43,148.68,148.78,148.88,148.97,149.07,149.16,149.25,149.44,28.5,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,24,5,30,101800,100650,99540,79.07000000000001,0,5.63,6.04,6.11,6.15,6.17,6.18,6.18,6.18,6.18,152.68,152.59,152.63,152.67000000000002,152.70000000000002,152.74,152.77,152.8,152.87,28.330000000000002,27.97,27.8,27.6,27.41,27.21,27.02,26.830000000000002,26.45,N/A,N/A +2012,7,24,6,30,101830,100680,99570,72.74,0,5.33,5.73,5.8,5.83,5.84,5.8500000000000005,5.84,5.84,5.8100000000000005,146.95000000000002,147.11,147.18,147.25,147.3,147.35,147.4,147.45000000000002,147.55,28.54,28.2,28.03,27.84,27.650000000000002,27.46,27.26,27.07,26.69,N/A,N/A +2012,7,24,7,30,101840,100690,99580,67.15,0,5.74,6.15,6.2,6.22,6.21,6.2,6.18,6.16,6.1000000000000005,155.26,155.57,155.67000000000002,155.76,155.83,155.91,155.97,156.04,156.16,28.85,28.55,28.39,28.19,28,27.810000000000002,27.62,27.43,27.05,N/A,N/A +2012,7,24,8,30,101830,100680,99570,73.42,0,5.92,6.390000000000001,6.48,6.53,6.5600000000000005,6.59,6.61,6.62,6.640000000000001,173.14000000000001,173.16,173.18,173.20000000000002,173.23,173.26,173.29,173.32,173.39000000000001,28.55,28.21,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A +2012,7,24,9,30,101860,100710,99600,79.78,0,5.14,5.5,5.58,5.62,5.66,5.69,5.71,5.73,5.7700000000000005,171.29,171.72,171.85,171.93,171.99,172.03,172.06,172.08,172.1,28.32,27.98,27.810000000000002,27.61,27.42,27.23,27.04,26.85,26.48,N/A,N/A +2012,7,24,10,30,101890,100730,99620,80.28,0,3.81,4.07,4.12,4.16,4.2,4.22,4.25,4.2700000000000005,4.32,176.5,176.81,176.98,177.15,177.3,177.45000000000002,177.58,177.71,177.95000000000002,28.32,27.98,27.810000000000002,27.61,27.42,27.240000000000002,27.04,26.86,26.48,N/A,N/A +2012,7,24,11,30,101870,100720,99610,78.72,0,4.48,4.83,4.92,4.97,5.01,5.05,5.08,5.1000000000000005,5.15,173.9,174.15,174.24,174.3,174.34,174.37,174.39000000000001,174.4,174.41,28.43,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A +2012,7,24,12,30,101890,100740,99630,79.09,0,3.7800000000000002,4.0600000000000005,4.12,4.15,4.17,4.19,4.2,4.21,4.22,174.59,174.07,173.91,173.74,173.59,173.45000000000002,173.31,173.18,172.91,28.45,28.11,27.94,27.740000000000002,27.55,27.36,27.17,26.98,26.6,N/A,N/A +2012,7,24,13,30,101920,100770,99660,76.88,0,4.41,4.74,4.8100000000000005,4.8500000000000005,4.87,4.89,4.91,4.92,4.93,167.94,168.28,168.51,168.72,168.9,169.08,169.27,169.43,169.77,28.560000000000002,28.23,28.060000000000002,27.86,27.67,27.48,27.29,27.1,26.72,N/A,N/A +2012,7,24,14,30,101940,100790,99670,77.89,0,3.92,4.16,4.2,4.22,4.22,4.23,4.22,4.22,4.21,179.01,178.84,178.75,178.67000000000002,178.59,178.52,178.44,178.36,178.21,28.47,28.13,27.96,27.76,27.57,27.38,27.18,27,26.62,N/A,N/A +2012,7,24,15,30,101910,100760,99650,78.45,0,3.36,3.5500000000000003,3.58,3.6,3.61,3.62,3.62,3.63,3.63,185.04,185.56,185.91,186.26,186.58,186.88,187.19,187.49,188.08,28.41,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A +2012,7,24,16,30,101880,100730,99620,75.34,0,2.97,3.09,3.1,3.1,3.09,3.09,3.08,3.0700000000000003,3.04,197.02,197.19,197.23000000000002,197.26,197.27,197.28,197.28,197.28,197.24,28.44,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,7,24,17,30,101870,100720,99610,76.15,0,2.4,2.5100000000000002,2.52,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.52,2.52,192.68,191.52,190.89000000000001,190.25,189.65,189.07,188.5,187.97,186.8,28.37,28.02,27.84,27.64,27.45,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A +2012,7,24,18,30,101810,100660,99540,75.22,0,1.9000000000000001,1.95,1.95,1.94,1.93,1.92,1.9100000000000001,1.9000000000000001,1.8800000000000001,156.94,157.41,157.63,157.82,157.99,158.14000000000001,158.26,158.37,158.52,28.43,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A +2012,7,24,19,30,101780,100630,99520,74.69,0,2.4,2.52,2.54,2.5500000000000003,2.56,2.57,2.58,2.58,2.59,160.78,160.32,159.88,159.45000000000002,159.09,158.75,158.39000000000001,158.05,157.39000000000001,28.51,28.14,27.96,27.76,27.57,27.38,27.18,27,26.62,N/A,N/A +2012,7,24,20,30,101730,100580,99470,76.18,0,3.62,3.8200000000000003,3.85,3.87,3.89,3.89,3.9,3.9,3.91,170.11,169.94,169.81,169.69,169.59,169.51,169.43,169.35,169.22,28.57,28.21,28.03,27.830000000000002,27.64,27.45,27.26,27.07,26.7,N/A,N/A +2012,7,24,21,30,101710,100570,99450,75.18,0,3.64,3.85,3.88,3.89,3.9,3.91,3.91,3.92,3.92,162.20000000000002,162.54,162.73,162.93,163.12,163.31,163.51,163.71,164.14000000000001,28.69,28.34,28.16,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A +2012,7,24,22,30,101690,100540,99430,75.92,0,4.5,4.82,4.87,4.9,4.92,4.93,4.93,4.94,4.95,158.76,158.63,158.57,158.52,158.49,158.46,158.44,158.42000000000002,158.38,28.77,28.44,28.27,28.080000000000002,27.89,27.7,27.51,27.330000000000002,26.95,N/A,N/A +2012,7,24,23,30,101640,100500,99390,77.49,0,5.14,5.5,5.55,5.57,5.58,5.58,5.57,5.55,5.5200000000000005,150.23,150.43,150.58,150.72,150.84,150.97,151.11,151.24,151.54,28.68,28.35,28.18,27.990000000000002,27.8,27.61,27.42,27.240000000000002,26.86,N/A,N/A +2012,7,25,0,30,101650,100500,99390,78.29,0,5.8,6.26,6.36,6.41,6.45,6.48,6.49,6.51,6.5200000000000005,161.59,161.68,161.73,161.78,161.82,161.87,161.92000000000002,161.97,162.09,28.69,28.37,28.2,28.01,27.82,27.63,27.44,27.25,26.88,N/A,N/A +2012,7,25,1,30,101610,100470,99360,79.92,0,5.86,6.33,6.42,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,155.18,155.07,155.09,155.13,155.15,155.19,155.22,155.26,155.33,28.650000000000002,28.310000000000002,28.150000000000002,27.95,27.76,27.57,27.38,27.2,26.82,N/A,N/A +2012,7,25,2,30,101610,100460,99350,74.63,0,6.07,6.6000000000000005,6.72,6.78,6.83,6.86,6.890000000000001,6.91,6.95,149.98,149.95000000000002,149.94,149.91,149.87,149.83,149.78,149.72,149.57,29.03,28.73,28.57,28.38,28.2,28.01,27.82,27.64,27.27,N/A,N/A +2012,7,25,3,30,101610,100470,99360,81.83,0,7.5,8.17,8.33,8.42,8.49,8.540000000000001,8.58,8.620000000000001,8.67,160.66,160.8,160.8,160.77,160.73,160.68,160.63,160.56,160.41,28.830000000000002,28.51,28.36,28.16,27.98,27.79,27.61,27.43,27.060000000000002,N/A,N/A +2012,7,25,4,30,101560,100410,99300,86.60000000000001,0,6.86,7.44,7.5600000000000005,7.62,7.65,7.68,7.68,7.69,7.68,171.20000000000002,171.24,171.27,171.29,171.3,171.32,171.34,171.36,171.39000000000001,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,25,5,30,101560,100420,99310,84.24,0,7.07,7.67,7.8,7.86,7.91,7.930000000000001,7.95,7.96,7.97,181.61,181.69,181.74,181.78,181.81,181.83,181.85,181.86,181.87,28.55,28.2,28.03,27.830000000000002,27.650000000000002,27.46,27.26,27.080000000000002,26.7,N/A,N/A +2012,7,25,6,30,101580,100440,99330,85.37,0,7.43,8.07,8.22,8.3,8.36,8.39,8.41,8.43,8.44,197.53,197.41,197.32,197.22,197.13,197.03,196.95000000000002,196.86,196.68,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A +2012,7,25,7,30,101600,100460,99350,83.92,0,7.29,7.99,8.16,8.26,8.33,8.370000000000001,8.41,8.44,8.46,196.78,196.85,196.91,196.95000000000002,196.97,196.99,197,197,197.01,28.76,28.43,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A +2012,7,25,8,30,101610,100460,99350,79.94,0,7.390000000000001,8.05,8.2,8.28,8.33,8.36,8.370000000000001,8.39,8.4,201.84,201.93,201.87,201.79,201.70000000000002,201.61,201.5,201.4,201.16,28.72,28.38,28.21,28.01,27.830000000000002,27.64,27.44,27.26,26.88,N/A,N/A +2012,7,25,9,30,101600,100450,99340,80.31,0,7.18,7.83,7.99,8.08,8.14,8.18,8.22,8.24,8.28,203.98000000000002,204.03,204.04,204.06,204.07,204.08,204.1,204.12,204.15,28.62,28.28,28.11,27.91,27.72,27.53,27.330000000000002,27.150000000000002,26.77,N/A,N/A +2012,7,25,10,30,101610,100460,99350,79.18,0,7.08,7.72,7.87,7.95,8.01,8.040000000000001,8.07,8.09,8.11,204.73000000000002,204.58,204.63,204.69,204.76,204.83,204.91,204.98000000000002,205.13,28.69,28.35,28.17,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A +2012,7,25,11,30,101650,100500,99390,74.13,0,6.59,7.2,7.36,7.46,7.53,7.59,7.640000000000001,7.68,7.75,209.56,209.33,209.17000000000002,208.99,208.83,208.67000000000002,208.51,208.36,208.06,28.85,28.53,28.36,28.16,27.97,27.78,27.59,27.400000000000002,27.02,N/A,N/A +2012,7,25,12,30,101630,100490,99380,77.79,0,7.08,7.71,7.8500000000000005,7.930000000000001,7.97,8.01,8.02,8.03,8.040000000000001,201.87,202.20000000000002,202.41,202.61,202.79,202.96,203.13,203.29,203.59,28.63,28.3,28.13,27.93,27.740000000000002,27.54,27.35,27.16,26.78,N/A,N/A +2012,7,25,13,30,101700,100550,99440,77.01,0,6.46,6.97,7.07,7.11,7.140000000000001,7.15,7.15,7.140000000000001,7.12,200.54,200.86,201.01,201.16,201.28,201.39000000000001,201.48000000000002,201.57,201.74,28.650000000000002,28.310000000000002,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.79,N/A,N/A +2012,7,25,14,30,101700,100550,99440,70.62,0,5.99,6.43,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.61,6.61,6.61,211.5,211.46,211.42000000000002,211.37,211.33,211.28,211.23000000000002,211.17000000000002,211.06,28.85,28.54,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A +2012,7,25,15,30,101720,100580,99460,71.87,0,5.29,5.73,5.82,5.87,5.91,5.93,5.95,5.96,5.97,206.76,206.42000000000002,206.24,206.08,205.93,205.79,205.64000000000001,205.51,205.24,28.87,28.54,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A +2012,7,25,16,30,101670,100520,99410,71.74,0,5.62,6.08,6.19,6.25,6.29,6.33,6.3500000000000005,6.38,6.41,207.99,208.07,208.12,208.17000000000002,208.21,208.25,208.29,208.32,208.38,28.84,28.51,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A +2012,7,25,17,30,101660,100510,99400,76.24,0,5.32,5.72,5.8,5.84,5.87,5.9,5.91,5.93,5.95,200.98000000000002,201.29,201.43,201.59,201.73000000000002,201.86,201.99,202.11,202.37,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A +2012,7,25,18,30,101680,100530,99420,78.86,0,5.3100000000000005,5.74,5.84,5.91,5.96,6.01,6.04,6.07,6.13,190.73,191.12,191.31,191.49,191.65,191.81,191.96,192.11,192.39000000000001,28.71,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A +2012,7,25,19,30,101620,100470,99360,78.57000000000001,0,6.5200000000000005,6.99,7.09,7.13,7.16,7.17,7.18,7.18,7.17,194.51,194.75,194.9,195.06,195.21,195.34,195.49,195.64000000000001,195.95000000000002,28.77,28.42,28.25,28.05,27.86,27.67,27.48,27.29,26.92,N/A,N/A +2012,7,25,20,30,101580,100440,99330,80.43,0,5.73,6.16,6.26,6.3100000000000005,6.34,6.36,6.37,6.38,6.390000000000001,193.46,193.52,193.57,193.62,193.67000000000002,193.72,193.77,193.81,193.92000000000002,28.71,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.23,26.85,N/A,N/A +2012,7,25,21,30,101530,100390,99280,80.04,0,5.91,6.37,6.47,6.5200000000000005,6.5600000000000005,6.59,6.61,6.62,6.65,191.92000000000002,192.09,192.22,192.35,192.48000000000002,192.6,192.74,192.87,193.13,28.64,28.29,28.12,27.92,27.73,27.54,27.34,27.16,26.78,N/A,N/A +2012,7,25,22,30,101520,100370,99260,81.78,0,5.5200000000000005,5.95,6.04,6.09,6.13,6.16,6.18,6.2,6.22,184.56,184.94,185.20000000000002,185.44,185.65,185.86,186.05,186.22,186.58,28.59,28.25,28.080000000000002,27.87,27.68,27.490000000000002,27.3,27.11,26.73,N/A,N/A +2012,7,25,23,30,101470,100330,99220,80.61,0,5.79,6.22,6.3100000000000005,6.36,6.390000000000001,6.41,6.42,6.43,6.44,187.3,187.51,187.64000000000001,187.75,187.83,187.92000000000002,188,188.08,188.24,28.6,28.26,28.09,27.89,27.71,27.51,27.32,27.13,26.75,N/A,N/A +2012,7,26,0,30,101460,100310,99200,82.91,0,6.49,6.99,7.1000000000000005,7.140000000000001,7.17,7.19,7.2,7.2,7.19,185.4,185.32,185.35,185.39000000000001,185.43,185.47,185.52,185.56,185.66,28.740000000000002,28.41,28.25,28.04,27.86,27.67,27.48,27.29,26.91,N/A,N/A +2012,7,26,1,30,101380,100230,99130,82.21000000000001,0,6.5,7,7.09,7.12,7.13,7.13,7.11,7.1000000000000005,7.0600000000000005,182.97,182.99,183.11,183.26,183.41,183.56,183.72,183.87,184.21,28.560000000000002,28.22,28.05,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A +2012,7,26,2,30,101380,100240,99130,81.77,0,6.71,7.29,7.43,7.5,7.5600000000000005,7.59,7.61,7.63,7.65,184.37,184.82,185,185.15,185.28,185.39000000000001,185.5,185.6,185.81,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.63,N/A,N/A +2012,7,26,3,30,101360,100220,99110,81.73,0,6.96,7.57,7.7,7.78,7.84,7.88,7.91,7.930000000000001,7.97,191.59,191.33,191.31,191.3,191.29,191.28,191.28,191.27,191.25,28.44,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,7,26,4,30,101360,100220,99110,80.3,0,7.45,8.03,8.16,8.22,8.27,8.3,8.32,8.33,8.36,196.64000000000001,196.23000000000002,196.11,195.96,195.81,195.66,195.49,195.32,194.94,28.490000000000002,28.150000000000002,27.98,27.78,27.59,27.41,27.21,27.03,26.66,N/A,N/A +2012,7,26,5,30,101350,100210,99100,84.24,0,7.640000000000001,8.39,8.56,8.66,8.73,8.78,8.81,8.84,8.86,193.6,193.39000000000001,193.31,193.24,193.19,193.14000000000001,193.1,193.06,193,28.34,27.98,27.8,27.6,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A +2012,7,26,6,30,101380,100240,99130,82.75,0,8.18,8.99,9.18,9.28,9.35,9.4,9.43,9.450000000000001,9.46,199.23000000000002,199.18,199.07,198.96,198.85,198.74,198.63,198.52,198.29,28.45,28.1,27.93,27.72,27.53,27.34,27.14,26.96,26.57,N/A,N/A +2012,7,26,7,30,101370,100230,99120,79.13,0,8.97,9.82,10.03,10.14,10.22,10.27,10.32,10.35,10.39,192.15,192.22,192.24,192.25,192.26,192.26,192.26,192.26,192.24,28.66,28.330000000000002,28.17,27.97,27.78,27.6,27.400000000000002,27.22,26.85,N/A,N/A +2012,7,26,8,30,101400,100250,99140,79.14,0,9.01,9.84,10.05,10.16,10.23,10.290000000000001,10.33,10.36,10.41,197.91,197.44,197.28,197.16,197.06,196.99,196.92000000000002,196.87,196.79,28.59,28.25,28.080000000000002,27.88,27.7,27.51,27.32,27.13,26.76,N/A,N/A +2012,7,26,9,30,101430,100280,99180,76.18,0,8.61,9.52,9.74,9.870000000000001,9.96,10.02,10.06,10.09,10.120000000000001,202.23000000000002,202.42000000000002,202.43,202.4,202.37,202.32,202.27,202.22,202.08,28.72,28.39,28.22,28.01,27.82,27.63,27.43,27.25,26.86,N/A,N/A +2012,7,26,10,30,101420,100280,99170,75.77,0,7.640000000000001,8.4,8.59,8.700000000000001,8.78,8.84,8.89,8.93,8.99,198.05,198.51,198.72,198.92000000000002,199.09,199.26,199.43,199.59,199.91,28.76,28.43,28.26,28.07,27.88,27.7,27.5,27.32,26.94,N/A,N/A +2012,7,26,11,30,101470,100330,99220,78.43,0,7.91,8.58,8.71,8.76,8.78,8.790000000000001,8.790000000000001,8.78,8.74,197.41,197.44,197.49,197.53,197.57,197.62,197.66,197.70000000000002,197.79,28.62,28.3,28.13,27.93,27.740000000000002,27.55,27.36,27.18,26.8,N/A,N/A +2012,7,26,12,30,101500,100350,99240,71.92,0,7.42,8.11,8.290000000000001,8.4,8.48,8.55,8.6,8.65,8.73,206.89000000000001,206.51,206.31,206.14000000000001,205.99,205.86,205.73000000000002,205.6,205.37,29,28.71,28.55,28.36,28.18,27.990000000000002,27.8,27.62,27.25,N/A,N/A +2012,7,26,13,30,101540,100400,99290,72.81,0,6.34,6.86,6.98,7.05,7.1000000000000005,7.140000000000001,7.18,7.21,7.26,199.57,199.49,199.51,199.57,199.64000000000001,199.71,199.79,199.87,200.07,28.93,28.63,28.48,28.28,28.1,27.92,27.73,27.55,27.18,N/A,N/A +2012,7,26,14,30,101560,100420,99310,71.27,0,5.18,5.71,5.84,5.92,6,6.0600000000000005,6.11,6.16,6.26,197.69,198.17000000000002,198.45000000000002,198.72,198.97,199.22,199.46,199.68,200.14000000000001,29.05,28.75,28.580000000000002,28.39,28.21,28.02,27.830000000000002,27.650000000000002,27.27,N/A,N/A +2012,7,26,15,30,101590,100440,99330,73.7,0,6.2700000000000005,6.82,6.93,6.99,7.0200000000000005,7.04,7.05,7.0600000000000005,7.0600000000000005,191.46,191.46,191.46,191.49,191.51,191.53,191.55,191.57,191.61,28.97,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A +2012,7,26,16,30,101600,100450,99340,70.81,0,6.0200000000000005,6.47,6.5600000000000005,6.6000000000000005,6.62,6.63,6.640000000000001,6.640000000000001,6.65,190.13,190.07,190.04,190.01,190,189.98,189.98,189.97,189.98,29.09,28.79,28.62,28.43,28.25,28.060000000000002,27.87,27.68,27.310000000000002,N/A,N/A +2012,7,26,17,30,101550,100410,99300,71.08,0,5.91,6.44,6.55,6.62,6.67,6.7,6.74,6.76,6.8,185.52,185.63,185.70000000000002,185.75,185.8,185.85,185.9,185.94,186.03,29.14,28.830000000000002,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,7,26,18,30,101560,100420,99310,68.74,0,5.46,5.93,6.03,6.09,6.13,6.16,6.19,6.21,6.24,188.03,188.16,188.21,188.26,188.31,188.36,188.4,188.44,188.52,29.34,29.04,28.87,28.68,28.490000000000002,28.3,28.11,27.92,27.54,N/A,N/A +2012,7,26,19,30,101540,100400,99290,69.96000000000001,0,6.11,6.6000000000000005,6.69,6.73,6.75,6.76,6.76,6.75,6.74,180.98,181.14000000000001,181.24,181.3,181.35,181.38,181.42000000000002,181.46,181.53,29.3,29,28.830000000000002,28.63,28.45,28.26,28.060000000000002,27.88,27.5,N/A,N/A +2012,7,26,20,30,101510,100370,99260,71.12,0,6.18,6.67,6.75,6.78,6.78,6.78,6.78,6.76,6.73,178.02,177.83,177.75,177.70000000000002,177.67000000000002,177.64000000000001,177.63,177.63,177.66,29.23,28.93,28.77,28.57,28.39,28.2,28.01,27.82,27.44,N/A,N/A +2012,7,26,21,30,101470,100330,99220,73.88,0,6.68,7.25,7.36,7.41,7.44,7.45,7.46,7.46,7.45,169.95000000000002,169.89000000000001,169.85,169.8,169.77,169.73,169.70000000000002,169.67000000000002,169.6,29.080000000000002,28.77,28.61,28.41,28.22,28.04,27.85,27.66,27.28,N/A,N/A +2012,7,26,22,30,101450,100310,99200,74.75,0,6.67,7.22,7.32,7.37,7.390000000000001,7.4,7.41,7.41,7.390000000000001,169.49,169.58,169.67000000000002,169.73,169.78,169.82,169.86,169.9,169.99,28.96,28.650000000000002,28.490000000000002,28.29,28.11,27.92,27.73,27.54,27.17,N/A,N/A +2012,7,26,23,30,101440,100290,99180,80.31,0,7.21,7.84,7.97,8.040000000000001,8.08,8.11,8.120000000000001,8.13,8.13,171.35,171.48,171.54,171.6,171.64000000000001,171.68,171.72,171.76,171.84,28.740000000000002,28.41,28.25,28.05,27.86,27.67,27.48,27.29,26.92,N/A,N/A +2012,7,27,0,30,101400,100260,99150,82.09,0,6.19,6.75,6.890000000000001,6.98,7.05,7.1000000000000005,7.15,7.19,7.26,172.70000000000002,173.29,173.39000000000001,173.45000000000002,173.49,173.51,173.52,173.52,173.5,28.650000000000002,28.32,28.150000000000002,27.95,27.76,27.57,27.37,27.19,26.810000000000002,N/A,N/A +2012,7,27,1,30,101410,100270,99160,84.99,0,7.79,8.43,8.55,8.61,8.65,8.67,8.68,8.68,8.67,169.69,170.15,170.32,170.49,170.64000000000001,170.79,170.93,171.07,171.35,28.490000000000002,28.14,27.96,27.76,27.57,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,7,27,2,30,101400,100260,99150,87.37,0,8,8.77,8.950000000000001,9.06,9.13,9.18,9.21,9.24,9.27,168.06,167.98,167.97,167.98,167.99,168.01,168.04,168.06,168.12,28.43,28.07,27.89,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,7,27,3,30,101420,100270,99170,84.04,0,7.61,8.32,8.48,8.57,8.63,8.67,8.69,8.71,8.73,170.94,170.99,170.97,170.96,170.95000000000002,170.95000000000002,170.95000000000002,170.95000000000002,170.95000000000002,28.45,28.1,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A +2012,7,27,4,30,101430,100290,99180,82.07000000000001,0,7.49,8.21,8.38,8.48,8.55,8.6,8.64,8.67,8.72,174.96,175.02,175,174.97,174.95000000000002,174.92000000000002,174.89000000000001,174.85,174.79,28.53,28.18,28.01,27.810000000000002,27.61,27.42,27.23,27.04,26.66,N/A,N/A +2012,7,27,5,30,101450,100310,99200,83.46000000000001,0,7.37,8.06,8.22,8.32,8.38,8.41,8.44,8.45,8.45,174.39000000000001,174.29,174.31,174.35,174.41,174.47,174.54,174.61,174.76,28.48,28.12,27.95,27.75,27.55,27.36,27.16,26.97,26.59,N/A,N/A +2012,7,27,6,30,101490,100350,99240,82.53,0,8.120000000000001,8.89,9.07,9.17,9.24,9.290000000000001,9.32,9.34,9.370000000000001,176.19,176.01,175.96,175.91,175.87,175.83,175.79,175.76,175.67000000000002,28.51,28.16,27.990000000000002,27.79,27.6,27.41,27.21,27.03,26.650000000000002,N/A,N/A +2012,7,27,7,30,101520,100370,99260,82.4,0,7.25,7.930000000000001,8.08,8.16,8.22,8.26,8.28,8.290000000000001,8.290000000000001,174.89000000000001,174.91,174.92000000000002,174.95000000000002,174.98,175.01,175.05,175.08,175.15,28.53,28.19,28.01,27.810000000000002,27.62,27.43,27.23,27.05,26.66,N/A,N/A +2012,7,27,8,30,101520,100380,99270,80.83,0,6.75,7.34,7.48,7.55,7.59,7.62,7.640000000000001,7.65,7.65,175.6,175.76,175.84,175.93,176.02,176.1,176.19,176.29,176.47,28.67,28.35,28.18,27.98,27.79,27.6,27.400000000000002,27.21,26.830000000000002,N/A,N/A +2012,7,27,9,30,101560,100420,99310,81.86,0,5.94,6.44,6.55,6.6000000000000005,6.640000000000001,6.67,6.69,6.7,6.72,168.71,168.82,168.88,168.94,168.99,169.04,169.08,169.13,169.21,28.71,28.38,28.21,28.01,27.830000000000002,27.64,27.44,27.25,26.87,N/A,N/A +2012,7,27,10,30,101560,100410,99300,84.01,0,6.98,7.57,7.69,7.74,7.78,7.8,7.8100000000000005,7.82,7.82,164.14000000000001,164.31,164.42000000000002,164.53,164.63,164.72,164.8,164.88,165.06,28.64,28.310000000000002,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.8,N/A,N/A +2012,7,27,11,30,101610,100460,99350,82.83,0,5.6000000000000005,6.09,6.2,6.2700000000000005,6.3100000000000005,6.3500000000000005,6.38,6.4,6.43,169.23,169.51,169.68,169.84,169.99,170.13,170.28,170.41,170.71,28.8,28.47,28.3,28.11,27.92,27.73,27.53,27.35,26.97,N/A,N/A +2012,7,27,12,30,101620,100480,99370,84.06,0,5.72,6.18,6.28,6.33,6.37,6.38,6.4,6.4,6.4,163.32,163.20000000000002,163.15,163.11,163.07,163.03,162.99,162.95000000000002,162.87,28.8,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A +2012,7,27,13,30,101660,100510,99400,84.56,0,4.07,4.36,4.43,4.49,4.53,4.5600000000000005,4.59,4.61,4.65,174.56,172.96,171.99,171.06,170.29,169.59,168.96,168.39000000000001,167.33,28.69,28.37,28.21,28.01,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A +2012,7,27,14,30,101870,100700,99570,93.51,244.3,9.77,10.35,10.41,10.32,10.21,10.07,9.9,9.74,9.44,196.45000000000002,197.6,198.56,199.73000000000002,200.86,202.03,203.51,205.02,210.20000000000002,24.45,23.88,23.68,23.490000000000002,23.32,23.16,23.01,22.87,22.62,N/A,N/A +2012,7,27,15,30,101860,100690,99550,93.28,146.1,7.08,7.11,6.94,6.69,6.3500000000000005,6,5.47,4.98,4.3,163.87,164.24,164.77,165.45000000000002,166.27,167.1,168.36,169.52,172.88,23.81,23.32,23.150000000000002,23.02,22.91,22.82,22.76,22.71,22.68,N/A,N/A +2012,7,27,16,30,101720,100550,99430,81.25,4.800000000000001,3.36,3.33,3.23,3.1,3.0100000000000002,2.95,2.85,2.7600000000000002,2.79,190.94,188.37,185.95000000000002,182.27,176.31,169.15,166.21,164.55,152.05,24.77,24.43,24.37,24.39,24.68,25.13,25.43,25.66,26.03,N/A,N/A +2012,7,27,17,30,101730,100570,99450,79.48,0,4.71,4.76,4.67,4.53,4.29,4.01,3.46,2.95,2.29,185.70000000000002,185.36,185.32,185.34,185.84,186.63,189.88,193.14000000000001,203.81,25.75,25.37,25.22,25.07,25,24.98,25.240000000000002,25.560000000000002,26.060000000000002,N/A,N/A +2012,7,27,18,30,101760,100600,99480,72.35000000000001,0,3.0100000000000002,2.99,2.89,2.75,2.37,1.93,1.55,1.27,0.9400000000000001,108.34,108.65,109.16,109.95,111.88,114.11,116,117.43,124.11,27.18,26.85,26.7,26.55,26.61,26.810000000000002,26.990000000000002,27.150000000000002,27.07,N/A,N/A +2012,7,27,19,30,101750,100600,99480,74.37,0,5.37,5.59,5.59,5.54,5.49,5.43,5.36,5.28,5.08,179.79,180.36,180.73,181.15,181.59,182.04,182.58,183.12,184.6,27.27,26.89,26.71,26.53,26.35,26.18,26.01,25.86,25.580000000000002,N/A,N/A +2012,7,27,20,30,101750,100590,99470,72.10000000000001,0,2.98,3.06,3.0500000000000003,3.0100000000000002,2.97,2.93,2.87,2.8000000000000003,2.58,181.73,181.45000000000002,181.13,180.74,180.24,179.66,178.92000000000002,178.20000000000002,176.49,27.03,26.66,26.490000000000002,26.310000000000002,26.14,25.97,25.82,25.68,25.48,N/A,N/A +2012,7,27,21,30,101750,100600,99480,73.02,0,3.3200000000000003,3.44,3.45,3.43,3.42,3.4,3.38,3.36,3.33,147.07,147.95000000000002,148.59,149.28,149.98,150.69,151.53,152.35,154.62,27.53,27.17,26.990000000000002,26.810000000000002,26.63,26.45,26.27,26.11,25.84,N/A,N/A +2012,7,27,22,30,101720,100570,99450,72.23,0,2.05,2.12,2.12,2.11,2.1,2.09,2.07,2.05,1.97,128.23,128.49,128.64000000000001,128.78,128.96,129.17000000000002,129.53,129.91,132.67000000000002,27.8,27.46,27.29,27.1,26.92,26.740000000000002,26.57,26.41,26.2,N/A,N/A +2012,7,27,23,30,101680,100530,99420,80.16,0,3.15,3.29,3.31,3.31,3.31,3.31,3.3000000000000003,3.3000000000000003,3.27,170.09,170.41,170.58,170.78,171,171.24,171.52,171.8,172.73,27.94,27.59,27.42,27.23,27.04,26.86,26.67,26.490000000000002,26.150000000000002,N/A,N/A +2012,7,28,0,30,101620,100470,99360,78.78,0,3.18,3.34,3.36,3.37,3.38,3.37,3.37,3.37,3.37,205.54,205.51,205.52,205.53,205.55,205.59,205.64000000000001,205.71,205.99,28.18,27.84,27.68,27.48,27.3,27.11,26.93,26.75,26.41,N/A,N/A +2012,7,28,1,30,101600,100450,99340,77.56,0,4.2,4.45,4.48,4.49,4.49,4.49,4.48,4.47,4.43,188.04,188.19,188.29,188.4,188.53,188.65,188.78,188.92000000000002,189.25,28.28,27.94,27.77,27.57,27.38,27.19,27,26.810000000000002,26.44,N/A,N/A +2012,7,28,2,30,101630,100480,99370,78.49,0,4.96,5.2700000000000005,5.32,5.32,5.32,5.3,5.29,5.26,5.21,179.85,179.97,180.01,180.06,180.11,180.16,180.22,180.27,180.42000000000002,28.36,28.01,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A +2012,7,28,3,30,101680,100540,99420,74.99,0,4.71,5.0200000000000005,5.07,5.09,5.1000000000000005,5.1000000000000005,5.09,5.08,5.05,179.5,179.56,179.57,179.6,179.63,179.66,179.70000000000002,179.74,179.86,28.560000000000002,28.23,28.060000000000002,27.87,27.68,27.5,27.3,27.12,26.740000000000002,N/A,N/A +2012,7,28,4,30,101710,100560,99450,74.98,0,4.65,4.94,4.99,5,5,4.99,4.97,4.96,4.91,175.43,175.61,175.72,175.82,175.92000000000002,176.03,176.14000000000001,176.26,176.54,28.55,28.22,28.060000000000002,27.86,27.68,27.490000000000002,27.3,27.12,26.740000000000002,N/A,N/A +2012,7,28,5,30,101720,100570,99460,79.17,0,5.58,6.01,6.09,6.13,6.16,6.17,6.18,6.18,6.18,182.91,183.03,183.08,183.13,183.18,183.23,183.28,183.32,183.42000000000002,28.43,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.59,N/A,N/A +2012,7,28,6,30,101750,100600,99490,79.93,0,6.37,6.88,6.99,7.04,7.08,7.1000000000000005,7.11,7.11,7.11,186.76,186.72,186.70000000000002,186.68,186.66,186.63,186.61,186.59,186.54,28.43,28.07,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A +2012,7,28,7,30,101750,100600,99480,81.22,0,7.25,7.87,8.01,8.08,8.120000000000001,8.15,8.17,8.18,8.19,194.82,194.79,194.74,194.68,194.63,194.58,194.53,194.47,194.37,28.45,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.59,N/A,N/A +2012,7,28,8,30,101790,100640,99530,81.23,0,6.25,6.78,6.9,6.97,7.0200000000000005,7.05,7.07,7.09,7.1000000000000005,209.52,209.48000000000002,209.39000000000001,209.3,209.21,209.11,209.02,208.94,208.76,28.47,28.11,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.59,N/A,N/A +2012,7,28,9,30,101810,100660,99550,77.63,0,5.69,6.12,6.2,6.24,6.2700000000000005,6.28,6.29,6.3,6.3,219.04,219.06,219,218.94,218.89000000000001,218.83,218.78,218.73000000000002,218.65,28.52,28.18,28,27.8,27.61,27.43,27.23,27.04,26.66,N/A,N/A +2012,7,28,10,30,101810,100660,99550,82.04,0,5.08,5.44,5.51,5.55,5.58,5.6000000000000005,5.61,5.62,5.63,235.64000000000001,235.39000000000001,235.24,235.08,234.93,234.77,234.61,234.47,234.12,28.36,28.01,27.84,27.64,27.45,27.26,27.07,26.88,26.5,N/A,N/A +2012,7,28,11,30,101800,100650,99540,82.57000000000001,0,3.86,4.09,4.14,4.16,4.17,4.18,4.19,4.2,4.21,254.54,254.28,254.04,253.8,253.59,253.39000000000001,253.18,252.97,252.56,28.29,27.94,27.76,27.57,27.37,27.18,26.990000000000002,26.8,26.42,N/A,N/A +2012,7,28,12,30,101820,100670,99560,83.10000000000001,0,3.96,4.17,4.2,4.21,4.21,4.21,4.2,4.18,4.16,285.19,284.76,284.40000000000003,284.05,283.73,283.41,283.09000000000003,282.8,282.18,28.21,27.85,27.68,27.47,27.28,27.09,26.89,26.71,26.32,N/A,N/A +2012,7,28,13,30,101860,100700,99590,84.71000000000001,0,3.75,3.87,3.86,3.83,3.79,3.74,3.69,3.64,3.5100000000000002,329.22,328.85,328.72,328.55,328.34000000000003,328.11,327.78000000000003,327.44,326.29,27.72,27.35,27.17,26.97,26.79,26.6,26.41,26.23,25.86,N/A,N/A +2012,7,28,14,30,101940,100790,99670,84.41,0,4.1,4.3500000000000005,4.4,4.43,4.46,4.47,4.49,4.51,4.55,279.86,279.37,279.04,278.73,278.42,278.09000000000003,277.74,277.39,276.58,27.78,27.41,27.23,27.03,26.84,26.650000000000002,26.46,26.27,25.900000000000002,N/A,N/A +2012,7,28,15,30,102010,100850,99720,90.16,0,11.03,11.950000000000001,12.16,12.24,12.280000000000001,12.3,12.290000000000001,12.27,12.22,220.76,220.91,221,221.11,221.21,221.32,221.44,221.56,221.89000000000001,26.1,25.57,25.37,25.150000000000002,24.96,24.77,24.580000000000002,24.400000000000002,24.05,N/A,N/A +2012,7,28,16,30,101960,100800,99680,86.82000000000001,0,8.1,8.700000000000001,8.8,8.84,8.85,8.85,8.83,8.81,8.75,220.66,220.8,220.85,220.91,220.96,221.01,221.07,221.13,221.31,26.6,26.13,25.93,25.73,25.53,25.34,25.150000000000002,24.97,24.59,N/A,N/A +2012,7,28,17,30,101950,100790,99670,80.21000000000001,0,5.76,6.1000000000000005,6.16,6.17,6.18,6.18,6.17,6.16,6.140000000000001,219.61,220.20000000000002,220.61,221.04,221.47,221.9,222.38,222.85,224.02,27.16,26.75,26.57,26.37,26.18,25.990000000000002,25.8,25.62,25.25,N/A,N/A +2012,7,28,18,30,101900,100740,99620,80.11,0,4.29,4.5,4.5200000000000005,4.5200000000000005,4.51,4.5,4.49,4.47,4.43,222.68,223.49,223.92000000000002,224.38,224.84,225.31,225.86,226.4,227.86,27.19,26.8,26.61,26.42,26.23,26.04,25.85,25.67,25.3,N/A,N/A +2012,7,28,19,30,101860,100700,99580,79.28,0,4.21,4.42,4.44,4.45,4.45,4.44,4.43,4.43,4.46,229.71,230.09,230.49,230.92000000000002,231.4,231.91,232.62,233.32,236.45000000000002,27.52,27.13,26.96,26.76,26.580000000000002,26.400000000000002,26.22,26.05,25.75,N/A,N/A +2012,7,28,20,30,101810,100660,99540,77.86,0,4.58,4.8,4.8,4.78,4.75,4.71,4.66,4.61,4.34,218.71,219.27,219.6,220,220.5,221.07,222.14000000000001,223.31,231.38,27.990000000000002,27.63,27.45,27.26,27.080000000000002,26.91,26.740000000000002,26.59,26.47,N/A,N/A +2012,7,28,21,30,101810,100660,99550,80.97,0,8.03,8.66,8.77,8.8,8.8,8.8,8.77,8.74,8.66,201,201.11,201.20000000000002,201.29,201.37,201.46,201.56,201.65,201.9,28.25,27.88,27.71,27.51,27.32,27.13,26.94,26.76,26.39,N/A,N/A +2012,7,28,22,30,101750,100600,99490,81.91,0,8.33,9.02,9.13,9.17,9.18,9.17,9.15,9.13,9.040000000000001,206.35,206.54,206.61,206.68,206.75,206.82,206.91,206.98000000000002,207.19,28.27,27.900000000000002,27.72,27.52,27.330000000000002,27.150000000000002,26.96,26.78,26.41,N/A,N/A +2012,7,28,23,30,101730,100580,99470,78.78,0,8.05,8.73,8.85,8.9,8.92,8.93,8.92,8.9,8.85,209.24,209.26,209.28,209.3,209.31,209.31,209.32,209.32,209.32,28.38,28.02,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A +2012,7,29,0,30,101690,100540,99430,78.96000000000001,0,7.37,7.91,8,8.01,8.01,8,7.97,7.930000000000001,7.84,210.16,210.37,210.44,210.52,210.62,210.72,210.86,210.99,211.39000000000001,28.29,27.93,27.75,27.560000000000002,27.38,27.19,27,26.830000000000002,26.48,N/A,N/A +2012,7,29,1,30,101670,100530,99410,75.9,0,6.26,6.7,6.76,6.78,6.78,6.7700000000000005,6.75,6.73,6.66,212.84,213.17000000000002,213.31,213.47,213.64000000000001,213.82,214.04,214.25,214.88,28.41,28.060000000000002,27.89,27.7,27.51,27.330000000000002,27.14,26.96,26.6,N/A,N/A +2012,7,29,2,30,101680,100530,99420,75.58,0,5.82,6.21,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.25,6.23,6.2,6.140000000000001,205.08,205.23000000000002,205.41,205.59,205.78,205.97,206.21,206.44,207.16,28.53,28.2,28.03,27.830000000000002,27.650000000000002,27.47,27.28,27.11,26.76,N/A,N/A +2012,7,29,3,30,101660,100510,99400,78.55,0,5.74,6.13,6.18,6.2,6.19,6.18,6.16,6.140000000000001,6.08,212.70000000000002,212.89000000000001,213,213.14000000000001,213.27,213.41,213.6,213.8,214.4,28.44,28.1,27.93,27.740000000000002,27.55,27.37,27.18,27,26.650000000000002,N/A,N/A +2012,7,29,4,30,101630,100480,99370,78.87,0,6.3,6.78,6.8500000000000005,6.88,6.890000000000001,6.890000000000001,6.88,6.88,6.8500000000000005,223.31,223.51,223.61,223.72,223.84,223.95000000000002,224.09,224.23000000000002,224.6,28.5,28.150000000000002,27.98,27.79,27.61,27.42,27.23,27.05,26.69,N/A,N/A +2012,7,29,5,30,101650,100500,99390,80.03,0,6.13,6.59,6.66,6.69,6.71,6.71,6.7,6.7,6.67,226.34,226.45000000000002,226.55,226.67000000000002,226.78,226.9,227.03,227.16,227.48000000000002,28.44,28.1,27.93,27.73,27.54,27.36,27.17,26.990000000000002,26.62,N/A,N/A +2012,7,29,6,30,101680,100540,99420,80.22,0,6.15,6.63,6.72,6.7700000000000005,6.8,6.82,6.83,6.84,6.84,225.37,225.63,225.73000000000002,225.83,225.92000000000002,226.02,226.12,226.21,226.43,28.48,28.13,27.96,27.76,27.57,27.38,27.19,27,26.63,N/A,N/A +2012,7,29,7,30,101690,100540,99430,78.83,0,5.82,6.26,6.3500000000000005,6.390000000000001,6.41,6.42,6.43,6.43,6.41,232.09,232.21,232.28,232.35,232.42000000000002,232.49,232.57,232.64000000000001,232.8,28.6,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.13,26.740000000000002,N/A,N/A +2012,7,29,8,30,101710,100560,99450,80.34,0,5.65,6.0600000000000005,6.140000000000001,6.17,6.19,6.2,6.2,6.2,6.19,234.1,234.24,234.31,234.38,234.44,234.49,234.55,234.6,234.72,28.51,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A +2012,7,29,9,30,101720,100580,99460,80.35000000000001,0,5.91,6.37,6.45,6.5,6.5200000000000005,6.54,6.55,6.55,6.55,244.99,245.08,245.12,245.16,245.21,245.24,245.29,245.33,245.43,28.5,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,7,29,10,30,101740,100590,99480,78.02,0,5.25,5.62,5.69,5.73,5.75,5.76,5.76,5.76,5.75,250.03,250.28,250.36,250.45000000000002,250.52,250.59,250.67000000000002,250.73000000000002,250.87,28.580000000000002,28.240000000000002,28.060000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A +2012,7,29,11,30,101760,100610,99500,80.22,0,5.32,5.63,5.67,5.67,5.67,5.65,5.63,5.61,5.5600000000000005,270.55,269.74,269.21,268.65,268.12,267.61,267.06,266.55,265.47,28.41,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A +2012,7,29,12,30,101790,100640,99530,81.52,0,5.23,5.53,5.57,5.57,5.57,5.55,5.53,5.51,5.45,281.96,280.98,280.43,279.86,279.32,278.8,278.25,277.73,276.58,27.92,27.54,27.36,27.17,26.97,26.79,26.6,26.41,26.04,N/A,N/A +2012,7,29,13,30,101800,100650,99530,80.92,0,4.98,5.28,5.33,5.34,5.34,5.34,5.34,5.33,5.32,285.09000000000003,284.63,284.36,284.07,283.77,283.48,283.13,282.79,281.91,27.72,27.34,27.16,26.96,26.78,26.59,26.400000000000002,26.22,25.85,N/A,N/A +2012,7,29,14,30,101840,100690,99570,76.67,0,4.08,4.32,4.36,4.38,4.39,4.4,4.4,4.41,4.42,285.56,285.95,286.13,286.31,286.49,286.65000000000003,286.82,286.98,287.3,28.04,27.68,27.5,27.3,27.11,26.93,26.740000000000002,26.560000000000002,26.19,N/A,N/A +2012,7,29,15,30,101810,100660,99550,73.8,0,3.3200000000000003,3.52,3.56,3.58,3.6,3.62,3.63,3.65,3.68,287.69,287.38,287.23,287.08,286.94,286.81,286.67,286.54,286.3,28.36,28.01,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.900000000000002,26.52,N/A,N/A +2012,7,29,16,30,101810,100660,99540,74.58,0,2.18,2.2800000000000002,2.29,2.29,2.29,2.29,2.3000000000000003,2.3000000000000003,2.3000000000000003,248.56,250.07,251,251.94,252.85,253.75,254.74,255.68,257.87,28.55,28.2,28.03,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.71,N/A,N/A +2012,7,29,17,30,101780,100630,99520,73.02,0,1.1,1.11,1.11,1.1,1.09,1.08,1.07,1.06,1.03,231.87,233.24,234.25,235.33,236.45000000000002,237.59,239.05,240.51,244.44,28.78,28.44,28.26,28.07,27.88,27.69,27.5,27.32,26.95,N/A,N/A +2012,7,29,18,30,101770,100620,99510,73.02,0,0.72,0.74,0.73,0.72,0.71,0.7000000000000001,0.68,0.67,0.63,160.41,161.89000000000001,162.65,163.48,164.36,165.29,166.37,167.41,170.55,28.98,28.63,28.45,28.26,28.07,27.88,27.69,27.51,27.14,N/A,N/A +2012,7,29,19,30,101740,100590,99480,71.03,0,4.43,4.66,4.67,4.65,4.63,4.61,4.57,4.54,4.44,184.33,184.48,184.54,184.61,184.69,184.75,184.83,184.92000000000002,185.19,29.35,28.990000000000002,28.82,28.62,28.44,28.25,28.05,27.87,27.5,N/A,N/A +2012,7,29,20,30,101650,100500,99400,71.54,0,4.1,4.3,4.3,4.2700000000000005,4.24,4.2,4.14,4.07,3.79,190.28,190.31,190.34,190.38,190.41,190.45000000000002,190.5,190.57,191.04,29.38,29.04,28.87,28.69,28.5,28.32,28.14,27.97,27.68,N/A,N/A +2012,7,29,21,30,101640,100500,99390,72.33,0,4.87,5.18,5.21,5.19,5.17,5.15,5.1000000000000005,5.0600000000000005,4.91,195.62,195.68,195.73000000000002,195.8,195.88,195.96,196.1,196.23000000000002,196.75,29.6,29.29,29.13,28.94,28.76,28.580000000000002,28.400000000000002,28.22,27.91,N/A,N/A +2012,7,29,22,30,101610,100460,99350,76.36,0,6.25,6.7700000000000005,6.84,6.86,6.86,6.86,6.84,6.82,6.76,207.59,207.6,207.62,207.63,207.64000000000001,207.65,207.65,207.65,207.65,29.42,29.12,28.96,28.77,28.580000000000002,28.400000000000002,28.22,28.04,27.68,N/A,N/A +2012,7,29,23,30,101580,100430,99320,80.61,0,6.75,7.3100000000000005,7.41,7.45,7.46,7.46,7.46,7.44,7.390000000000001,210.26,210.24,210.22,210.19,210.16,210.12,210.08,210.04,209.93,29.03,28.7,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A +2012,7,30,0,30,101510,100370,99260,80.3,0,5.89,6.36,6.43,6.46,6.48,6.49,6.49,6.49,6.49,209.05,209.05,209.04,209.02,209,208.99,208.97,208.94,208.88,29.02,28.7,28.54,28.35,28.17,27.990000000000002,27.8,27.63,27.29,N/A,N/A +2012,7,30,1,30,101490,100340,99230,81.79,0,6.13,6.59,6.66,6.67,6.67,6.66,6.640000000000001,6.62,6.55,219.85,219.87,219.85,219.83,219.79,219.76,219.72,219.68,219.55,28.830000000000002,28.5,28.330000000000002,28.13,27.95,27.76,27.57,27.39,27.01,N/A,N/A +2012,7,30,2,30,101490,100350,99240,81.32000000000001,0,6.8100000000000005,7.3500000000000005,7.44,7.48,7.49,7.49,7.48,7.47,7.43,218.34,218.29,218.3,218.29,218.28,218.26,218.23000000000002,218.21,218.13,28.830000000000002,28.5,28.330000000000002,28.13,27.95,27.76,27.57,27.39,27.02,N/A,N/A +2012,7,30,3,30,101490,100350,99240,81.05,0,6.69,7.2,7.28,7.3,7.3,7.29,7.2700000000000005,7.24,7.17,216.01,216,216.02,216.03,216.04,216.04,216.04,216.04,216.01,28.79,28.45,28.28,28.09,27.900000000000002,27.72,27.53,27.35,26.98,N/A,N/A +2012,7,30,4,30,101490,100340,99230,81.93,0,6.73,7.25,7.32,7.3500000000000005,7.3500000000000005,7.3500000000000005,7.32,7.3,7.24,211.04,211.13,211.14000000000001,211.15,211.15,211.14000000000001,211.13,211.1,211.02,28.78,28.44,28.27,28.080000000000002,27.89,27.71,27.52,27.34,26.990000000000002,N/A,N/A +2012,7,30,5,30,101480,100340,99230,84.49,0,6.7,7.22,7.3100000000000005,7.3500000000000005,7.36,7.36,7.3500000000000005,7.33,7.29,215.72,215.6,215.55,215.49,215.43,215.37,215.29,215.21,215.04,28.64,28.3,28.12,27.93,27.73,27.55,27.36,27.17,26.8,N/A,N/A +2012,7,30,6,30,101500,100360,99250,86.71000000000001,0,6.55,7.07,7.18,7.23,7.25,7.2700000000000005,7.2700000000000005,7.2700000000000005,7.26,216.62,216.61,216.59,216.56,216.54,216.51,216.49,216.46,216.39000000000001,28.48,28.13,27.96,27.76,27.57,27.38,27.19,27,26.63,N/A,N/A +2012,7,30,7,30,101530,100380,99280,85.84,0,6.04,6.51,6.6000000000000005,6.65,6.68,6.7,6.7,6.7,6.7,222.53,222.65,222.67000000000002,222.69,222.71,222.74,222.77,222.8,222.85,28.48,28.13,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,7,30,8,30,101540,100390,99290,82.97,0,6.08,6.5600000000000005,6.66,6.72,6.75,6.78,6.79,6.8,6.8100000000000005,232.5,232.5,232.49,232.48000000000002,232.46,232.44,232.42000000000002,232.4,232.34,28.54,28.19,28.01,27.82,27.63,27.44,27.240000000000002,27.060000000000002,26.67,N/A,N/A +2012,7,30,9,30,101570,100430,99320,79.68,0,7.07,7.640000000000001,7.75,7.8,7.83,7.86,7.86,7.87,7.86,233.05,233.06,233.02,232.97,232.92000000000002,232.86,232.8,232.74,232.59,28.6,28.26,28.080000000000002,27.89,27.69,27.51,27.310000000000002,27.12,26.740000000000002,N/A,N/A +2012,7,30,10,30,101590,100450,99340,80.44,0,6.15,6.67,6.7700000000000005,6.83,6.87,6.890000000000001,6.91,6.93,6.94,242.11,242.21,242.26,242.29,242.33,242.35,242.38,242.4,242.45000000000002,28.61,28.27,28.09,27.900000000000002,27.71,27.52,27.32,27.14,26.75,N/A,N/A +2012,7,30,11,30,101640,100490,99380,78.26,0,5.88,6.41,6.53,6.6000000000000005,6.640000000000001,6.68,6.7,6.72,6.74,245.6,245.51,245.47,245.43,245.4,245.39000000000001,245.37,245.34,245.3,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.91,N/A,N/A +2012,7,30,12,30,101660,100510,99400,78.27,0,5.8100000000000005,6.28,6.38,6.45,6.5,6.53,6.5600000000000005,6.57,6.6000000000000005,263.53000000000003,262.8,262.41,262.01,261.65,261.3,260.96,260.64,260,28.73,28.39,28.22,28.03,27.84,27.650000000000002,27.45,27.27,26.89,N/A,N/A +2012,7,30,13,30,101680,100530,99420,78.26,0,5.5200000000000005,5.95,6.04,6.08,6.11,6.13,6.15,6.16,6.16,272.69,272.15,271.83,271.52,271.22,270.94,270.65,270.39,269.84000000000003,28.5,28.16,27.98,27.79,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A +2012,7,30,14,30,101730,100580,99460,78.65,0,5.32,5.71,5.79,5.83,5.86,5.87,5.89,5.9,5.9,269.17,268.62,268.31,267.99,267.7,267.42,267.14,266.87,266.32,28.38,28.03,27.85,27.66,27.46,27.28,27.080000000000002,26.900000000000002,26.52,N/A,N/A +2012,7,30,15,30,101740,100590,99470,76.10000000000001,0,5.01,5.36,5.43,5.46,5.49,5.5,5.51,5.5200000000000005,5.53,254.98000000000002,254.97,254.97,254.95000000000002,254.92000000000002,254.87,254.82,254.78,254.62,28.5,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.66,N/A,N/A +2012,7,30,16,30,101730,100580,99460,76.03,0,4.57,4.88,4.94,4.97,4.99,5.01,5.01,5.0200000000000005,5.04,240.05,239.82,239.76,239.69,239.61,239.54,239.45000000000002,239.38,239.24,28.560000000000002,28.22,28.04,27.85,27.66,27.47,27.28,27.1,26.72,N/A,N/A +2012,7,30,17,30,101650,100500,99390,71.87,0,4.8,5.13,5.19,5.21,5.23,5.23,5.24,5.24,5.23,226.4,226.58,226.74,226.9,227.04,227.18,227.33,227.48000000000002,227.85,28.88,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.61,27.43,27.060000000000002,N/A,N/A +2012,7,30,18,30,101640,100490,99380,71.15,0,5.54,5.93,5.98,5.99,5.99,5.98,5.96,5.93,5.86,215.98000000000002,216.03,216.06,216.07,216.08,216.09,216.09,216.09,216.09,29.04,28.71,28.54,28.34,28.150000000000002,27.97,27.77,27.59,27.21,N/A,N/A +2012,7,30,19,30,101610,100460,99350,70.68,0,5.22,5.58,5.63,5.64,5.63,5.62,5.6000000000000005,5.58,5.5200000000000005,212.67000000000002,212.76,212.78,212.8,212.82,212.84,212.86,212.88,212.93,29.1,28.78,28.61,28.42,28.23,28.04,27.85,27.67,27.29,N/A,N/A +2012,7,30,20,30,101580,100430,99320,71.45,0,5.8500000000000005,6.28,6.34,6.36,6.37,6.36,6.34,6.32,6.26,207.88,207.92000000000002,207.91,207.88,207.85,207.81,207.77,207.72,207.62,29.14,28.82,28.650000000000002,28.45,28.27,28.080000000000002,27.89,27.7,27.32,N/A,N/A +2012,7,30,21,30,101540,100390,99280,67.73,0,6.140000000000001,6.67,6.75,6.78,6.8,6.8100000000000005,6.8100000000000005,6.8,6.7700000000000005,209.88,209.94,210.01,210.07,210.13,210.17000000000002,210.21,210.25,210.32,29.28,28.98,28.82,28.62,28.44,28.25,28.060000000000002,27.88,27.5,N/A,N/A +2012,7,30,22,30,101500,100360,99250,67.43,0,6.47,7.03,7.12,7.16,7.18,7.18,7.18,7.17,7.12,210.67000000000002,210.81,210.87,210.92000000000002,210.95000000000002,210.98000000000002,210.99,211,210.96,29.29,29,28.84,28.650000000000002,28.46,28.28,28.080000000000002,27.900000000000002,27.53,N/A,N/A +2012,7,30,23,30,101480,100330,99220,69.09,0,7.36,8,8.09,8.13,8.14,8.14,8.120000000000001,8.1,8.040000000000001,206.9,206.79,206.73000000000002,206.65,206.57,206.48000000000002,206.4,206.31,206.13,29.17,28.87,28.71,28.52,28.330000000000002,28.150000000000002,27.96,27.78,27.41,N/A,N/A +2012,7,31,0,30,101480,100330,99220,66.73,0,7.73,8.43,8.55,8.61,8.63,8.64,8.63,8.620000000000001,8.58,209.39000000000001,209.32,209.3,209.26,209.22,209.17000000000002,209.1,209.03,208.83,29.240000000000002,28.95,28.8,28.6,28.42,28.23,28.04,27.86,27.490000000000002,N/A,N/A +2012,7,31,1,30,101450,100300,99190,64.59,0,7.16,7.8100000000000005,7.930000000000001,7.99,8.040000000000001,8.06,8.08,8.1,8.120000000000001,211.96,212.06,212.14000000000001,212.23000000000002,212.31,212.4,212.48000000000002,212.56,212.71,29.310000000000002,29.04,28.88,28.69,28.51,28.330000000000002,28.14,27.97,27.61,N/A,N/A +2012,7,31,2,30,101500,100350,99240,63.35,0,6.92,7.55,7.68,7.76,7.8100000000000005,7.8500000000000005,7.890000000000001,7.91,7.95,211.01,211.3,211.52,211.72,211.89000000000001,212.06,212.21,212.36,212.63,29.42,29.150000000000002,28.990000000000002,28.8,28.62,28.44,28.25,28.07,27.69,N/A,N/A +2012,7,31,3,30,101510,100370,99260,64.63,0,6.96,7.6000000000000005,7.72,7.78,7.82,7.8500000000000005,7.86,7.87,7.87,212.35,212.36,212.37,212.38,212.39000000000001,212.4,212.41,212.41,212.4,29.38,29.11,28.95,28.76,28.580000000000002,28.39,28.2,28.02,27.650000000000002,N/A,N/A +2012,7,31,4,30,101500,100360,99250,69.06,0,6.82,7.42,7.5200000000000005,7.5600000000000005,7.57,7.58,7.57,7.55,7.5,215.39000000000001,215.27,215.20000000000002,215.12,215.03,214.93,214.82,214.71,214.44,29.05,28.740000000000002,28.580000000000002,28.38,28.2,28.01,27.810000000000002,27.63,27.240000000000002,N/A,N/A +2012,7,31,5,30,101520,100370,99260,61.07,0,6.78,7.38,7.49,7.55,7.59,7.61,7.62,7.63,7.640000000000001,212.99,213.04,213.1,213.17000000000002,213.26,213.34,213.42000000000002,213.5,213.64000000000001,29.44,29.17,29.01,28.82,28.63,28.44,28.25,28.07,27.68,N/A,N/A +2012,7,31,6,30,101540,100390,99290,65.54,0,7.47,8.14,8.26,8.32,8.35,8.36,8.35,8.34,8.290000000000001,214.97,215.12,215.22,215.31,215.38,215.43,215.46,215.49,215.49,29.25,28.96,28.79,28.6,28.41,28.22,28.03,27.84,27.45,N/A,N/A +2012,7,31,7,30,101550,100400,99300,67.11,0,6.95,7.61,7.74,7.8100000000000005,7.8500000000000005,7.88,7.9,7.91,7.92,219.24,219.21,219.15,219.09,219.02,218.96,218.9,218.84,218.71,29.310000000000002,29,28.84,28.64,28.45,28.27,28.07,27.89,27.51,N/A,N/A +2012,7,31,8,30,101570,100420,99310,69.93,0,7.21,7.83,7.96,8.03,8.08,8.11,8.13,8.15,8.16,221.23000000000002,221.41,221.55,221.71,221.85,221.98000000000002,222.12,222.24,222.51,29.07,28.75,28.580000000000002,28.39,28.2,28.02,27.82,27.64,27.26,N/A,N/A +2012,7,31,9,30,101560,100410,99300,70.42,0,6.8500000000000005,7.46,7.58,7.65,7.7,7.74,7.7700000000000005,7.79,7.82,227.1,227.24,227.32,227.4,227.47,227.54,227.61,227.68,227.84,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A +2012,7,31,10,30,101600,100450,99340,73.03,0,6.49,7.04,7.16,7.23,7.28,7.3100000000000005,7.34,7.36,7.4,233.07,232.9,232.8,232.70000000000002,232.6,232.51,232.41,232.31,232.13,28.86,28.53,28.36,28.17,27.98,27.79,27.6,27.42,27.04,N/A,N/A +2012,7,31,11,30,101620,100470,99360,76.74,0,6.22,6.71,6.82,6.87,6.91,6.93,6.95,6.96,6.98,234.14000000000001,234.18,234.13,234.07,234.02,233.97,233.92000000000002,233.87,233.76,28.7,28.36,28.18,27.98,27.79,27.61,27.41,27.22,26.84,N/A,N/A +2012,7,31,12,30,101610,100470,99360,79.74,0,5.7700000000000005,6.22,6.3100000000000005,6.37,6.4,6.42,6.44,6.45,6.46,238.48000000000002,238.45000000000002,238.43,238.41,238.39000000000001,238.38,238.37,238.36,238.33,28.580000000000002,28.22,28.05,27.85,27.66,27.47,27.27,27.080000000000002,26.7,N/A,N/A +2012,7,31,13,30,101650,100500,99390,79.41,0,5.62,6.07,6.16,6.21,6.24,6.2700000000000005,6.28,6.29,6.29,243.95000000000002,243.97,243.97,243.98000000000002,243.99,243.99,244.01,244.02,244.06,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A +2012,7,31,14,30,101680,100530,99420,76.37,0,4.42,4.74,4.82,4.88,4.92,4.96,5,5.03,5.1000000000000005,249.89000000000001,249.86,249.89000000000001,249.91,249.93,249.95000000000002,249.96,249.96,249.99,28.68,28.34,28.17,27.97,27.78,27.59,27.400000000000002,27.21,26.84,N/A,N/A +2012,7,31,15,30,101700,100550,99440,78.23,0,4.96,5.26,5.3100000000000005,5.33,5.34,5.34,5.33,5.33,5.3,249.07,248.78,248.63,248.5,248.37,248.24,248.12,248,247.77,28.72,28.37,28.2,28,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,7,31,16,30,101690,100540,99430,78.73,0,3.97,4.2,4.24,4.26,4.28,4.28,4.29,4.3,4.3100000000000005,246.22,245.83,245.59,245.35,245.15,244.96,244.76,244.57,244.22,28.69,28.34,28.17,27.97,27.79,27.6,27.400000000000002,27.22,26.84,N/A,N/A +2012,7,31,17,30,101630,100480,99370,77.23,0,3.96,4.21,4.25,4.2700000000000005,4.29,4.3,4.3,4.3100000000000005,4.32,213.27,213.78,214.1,214.4,214.68,214.97,215.26,215.55,216.22,28.87,28.52,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A +2012,7,31,18,30,101610,100460,99350,79.36,0,4.36,4.61,4.65,4.67,4.67,4.67,4.66,4.65,4.63,198.94,199.13,199.36,199.58,199.78,199.98000000000002,200.19,200.4,200.87,28.97,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.490000000000002,27.11,N/A,N/A +2012,7,31,19,30,101610,100460,99350,80.59,0,4.55,4.82,4.86,4.88,4.89,4.88,4.88,4.87,4.84,183.93,184.37,184.61,184.85,185.09,185.32,185.57,185.82,186.38,28.97,28.62,28.44,28.240000000000002,28.060000000000002,27.87,27.68,27.490000000000002,27.12,N/A,N/A +2012,7,31,20,30,101550,100410,99300,80.86,0,4.54,4.8500000000000005,4.9,4.93,4.94,4.95,4.95,4.96,4.95,183.20000000000002,183.61,183.86,184.08,184.28,184.47,184.65,184.82,185.17000000000002,29.02,28.67,28.5,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A +2012,7,31,21,30,101540,100400,99290,79.94,0,5.2700000000000005,5.66,5.73,5.76,5.78,5.79,5.79,5.79,5.78,188.12,188.37,188.5,188.64000000000001,188.78,188.92000000000002,189.05,189.21,189.54,29.13,28.79,28.62,28.43,28.240000000000002,28.05,27.86,27.67,27.3,N/A,N/A +2012,7,31,22,30,101510,100370,99260,77.39,0,5.93,6.41,6.49,6.53,6.55,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.54,188.51,188.53,188.5,188.45000000000002,188.41,188.36,188.29,188.23,188.11,29.28,28.96,28.8,28.6,28.42,28.23,28.04,27.85,27.48,N/A,N/A +2012,7,31,23,30,101500,100360,99250,79.81,0,7.390000000000001,8.040000000000001,8.16,8.22,8.25,8.26,8.27,8.27,8.26,187.4,187.38,187.41,187.44,187.46,187.49,187.52,187.55,187.62,29.16,28.84,28.68,28.48,28.3,28.11,27.92,27.740000000000002,27.37,N/A,N/A +2012,8,1,0,30,101460,100320,99210,79.83,0,7.0600000000000005,7.67,7.8,7.8500000000000005,7.890000000000001,7.9,7.91,7.91,7.890000000000001,193.76,193.85,193.84,193.82,193.79,193.76,193.73000000000002,193.70000000000002,193.63,29.1,28.78,28.61,28.41,28.23,28.04,27.85,27.67,27.29,N/A,N/A +2012,8,1,1,30,101450,100300,99200,79.72,0,6.91,7.49,7.6000000000000005,7.66,7.7,7.71,7.72,7.72,7.71,191.33,191.41,191.45000000000002,191.48000000000002,191.52,191.54,191.57,191.6,191.63,29.02,28.69,28.52,28.330000000000002,28.150000000000002,27.96,27.77,27.580000000000002,27.2,N/A,N/A +2012,8,1,2,30,101450,100310,99200,78.87,0,6.65,7.2,7.3,7.3500000000000005,7.38,7.390000000000001,7.390000000000001,7.4,7.38,194.08,194.09,194.1,194.1,194.1,194.09,194.1,194.09,194.1,29,28.67,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,8,1,3,30,101460,100320,99210,81.59,0,6.53,7.0600000000000005,7.16,7.21,7.24,7.26,7.26,7.26,7.26,193.64000000000001,193.64000000000001,193.66,193.70000000000002,193.74,193.78,193.83,193.87,193.98000000000002,28.88,28.54,28.36,28.17,27.98,27.79,27.59,27.41,27.03,N/A,N/A +2012,8,1,4,30,101440,100300,99190,80.62,0,6.57,7.13,7.25,7.3100000000000005,7.3500000000000005,7.38,7.390000000000001,7.41,7.42,201.31,201.27,201.24,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.6,27.42,27.04,N/A,N/A +2012,8,1,5,30,101450,100310,99200,79.93,0,7.32,7.94,8.06,8.11,8.14,8.16,8.16,8.15,8.14,203.44,203.59,203.70000000000002,203.83,203.95000000000002,204.07,204.20000000000002,204.34,204.62,28.95,28.61,28.44,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,8,1,6,30,101470,100320,99210,81.39,0,6.890000000000001,7.42,7.5200000000000005,7.5600000000000005,7.57,7.58,7.57,7.5600000000000005,7.5200000000000005,211.81,212.01,212.04,212.07,212.08,212.09,212.1,212.11,212.11,28.76,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.900000000000002,N/A,N/A +2012,8,1,7,30,101490,100340,99230,81.93,0,6.4,6.91,7.0200000000000005,7.08,7.12,7.15,7.16,7.18,7.19,213.83,213.87,213.9,213.92000000000002,213.95000000000002,213.97,214,214.02,214.07,28.69,28.330000000000002,28.150000000000002,27.95,27.76,27.560000000000002,27.37,27.18,26.8,N/A,N/A +2012,8,1,8,30,101500,100350,99240,81.76,0,6.7700000000000005,7.32,7.45,7.51,7.55,7.58,7.6000000000000005,7.61,7.63,218.28,218.21,218.19,218.18,218.17000000000002,218.16,218.15,218.14000000000001,218.13,28.73,28.36,28.19,27.990000000000002,27.8,27.61,27.42,27.23,26.85,N/A,N/A +2012,8,1,9,30,101510,100360,99250,83.07000000000001,0,7.13,7.7700000000000005,7.9,7.98,8.02,8.06,8.07,8.09,8.1,220.03,220.13,220.15,220.16,220.17000000000002,220.18,220.20000000000002,220.20000000000002,220.22,28.71,28.34,28.16,27.96,27.77,27.57,27.38,27.19,26.8,N/A,N/A +2012,8,1,10,30,101500,100360,99250,83.09,0,7.18,7.79,7.92,7.98,8.02,8.040000000000001,8.05,8.05,8.05,224.95000000000002,225.08,225.14000000000001,225.21,225.28,225.35,225.41,225.47,225.6,28.61,28.240000000000002,28.060000000000002,27.86,27.67,27.47,27.28,27.09,26.71,N/A,N/A +2012,8,1,11,30,101530,100380,99270,78.71000000000001,0,6.9,7.42,7.53,7.58,7.62,7.640000000000001,7.66,7.67,7.68,231.3,231.26,231.22,231.17000000000002,231.12,231.08,231.03,230.98000000000002,230.87,28.75,28.400000000000002,28.22,28.02,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A +2012,8,1,12,30,101530,100390,99280,79.26,0,6.71,7.26,7.38,7.44,7.48,7.51,7.53,7.54,7.55,230.42000000000002,230.61,230.74,230.86,230.96,231.06,231.16,231.25,231.43,28.87,28.52,28.34,28.14,27.95,27.76,27.560000000000002,27.37,26.990000000000002,N/A,N/A +2012,8,1,13,30,101580,100430,99330,78.88,0,5.91,6.4,6.51,6.57,6.62,6.66,6.68,6.71,6.74,237.95000000000002,237.91,237.93,237.96,237.98000000000002,238,238.02,238.05,238.11,28.86,28.51,28.34,28.14,27.95,27.77,27.57,27.38,27,N/A,N/A +2012,8,1,14,30,101590,100440,99330,78.32000000000001,0,5.43,5.87,5.97,6.04,6.08,6.11,6.140000000000001,6.16,6.19,236.68,236.77,236.77,236.76,236.75,236.74,236.73000000000002,236.72,236.70000000000002,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.53,27.14,N/A,N/A +2012,8,1,15,30,101580,100440,99330,78.29,0,5.97,6.38,6.45,6.48,6.48,6.48,6.47,6.45,6.41,239.91,240.13,240.25,240.37,240.48000000000002,240.59,240.70000000000002,240.81,241.04,29.01,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A +2012,8,1,16,30,101590,100440,99340,79.91,0,4.28,4.59,4.66,4.7,4.74,4.7700000000000005,4.79,4.82,4.8500000000000005,237.01,236.65,236.5,236.33,236.18,236.03,235.89000000000001,235.75,235.48000000000002,29.060000000000002,28.71,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.2,N/A,N/A +2012,8,1,17,30,101550,100410,99310,78.67,0,4.36,4.66,4.74,4.7700000000000005,4.8100000000000005,4.82,4.8500000000000005,4.86,4.88,225.12,224.99,224.93,224.85,224.77,224.69,224.6,224.52,224.34,29.19,28.84,28.66,28.46,28.27,28.080000000000002,27.89,27.7,27.32,N/A,N/A +2012,8,1,18,30,101540,100400,99290,80.62,0,4.62,4.9,4.94,4.96,4.96,4.96,4.95,4.93,4.9,211.6,211.64000000000001,211.71,211.75,211.8,211.83,211.87,211.91,211.97,29.2,28.85,28.67,28.47,28.28,28.09,27.900000000000002,27.71,27.34,N/A,N/A +2012,8,1,19,30,101510,100370,99270,80.42,0,5.01,5.33,5.39,5.42,5.43,5.44,5.44,5.44,5.42,198.65,198.69,198.78,198.87,198.95000000000002,199.03,199.11,199.19,199.36,29.26,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.78,27.400000000000002,N/A,N/A +2012,8,1,20,30,101460,100320,99220,79.27,0,5.62,6.0200000000000005,6.09,6.11,6.13,6.13,6.12,6.11,6.08,191,191.1,191.14000000000001,191.18,191.22,191.26,191.29,191.33,191.42000000000002,29.3,28.96,28.79,28.59,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A +2012,8,1,21,30,101430,100290,99180,81.09,0,5.53,5.94,6.0200000000000005,6.0600000000000005,6.09,6.11,6.12,6.12,6.12,187.9,188.08,188.21,188.35,188.46,188.57,188.69,188.8,189.04,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,1,22,30,101390,100250,99150,79.24,0,5.21,5.61,5.68,5.72,5.74,5.76,5.76,5.76,5.76,192.20000000000002,192.33,192.39000000000001,192.44,192.49,192.52,192.55,192.58,192.65,29.330000000000002,29.01,28.84,28.650000000000002,28.46,28.27,28.080000000000002,27.89,27.52,N/A,N/A +2012,8,1,23,30,101350,100210,99110,84.87,0,6.24,6.75,6.8500000000000005,6.9,6.93,6.95,6.96,6.97,6.97,193.20000000000002,193.38,193.44,193.49,193.52,193.54,193.57,193.58,193.61,29.05,28.7,28.53,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.19,N/A,N/A +2012,8,2,0,30,101330,100190,99080,80.85000000000001,0,6.76,7.3100000000000005,7.42,7.46,7.49,7.5,7.5,7.5,7.47,188.82,188.83,188.82,188.81,188.79,188.78,188.76,188.73,188.66,29.12,28.78,28.61,28.41,28.22,28.03,27.84,27.650000000000002,27.28,N/A,N/A +2012,8,2,1,30,101310,100170,99070,78.53,0,6.88,7.47,7.59,7.65,7.68,7.71,7.72,7.73,7.75,191.22,191.43,191.55,191.67000000000002,191.78,191.9,192.02,192.14000000000001,192.4,29.22,28.900000000000002,28.73,28.53,28.35,28.16,27.97,27.79,27.42,N/A,N/A +2012,8,2,2,30,101330,100190,99080,81.21000000000001,0,6.62,7.17,7.28,7.33,7.37,7.390000000000001,7.4,7.4,7.41,196.32,196.36,196.36,196.36,196.37,196.38,196.38,196.39000000000001,196.4,29.060000000000002,28.72,28.55,28.35,28.17,27.98,27.79,27.6,27.23,N/A,N/A +2012,8,2,3,30,101290,100150,99040,82.93,0,7.5,8.14,8.27,8.34,8.38,8.4,8.42,8.43,8.43,198.24,198.38,198.39000000000001,198.42000000000002,198.45000000000002,198.48000000000002,198.51,198.55,198.63,28.94,28.59,28.42,28.22,28.03,27.84,27.650000000000002,27.46,27.09,N/A,N/A +2012,8,2,4,30,101280,100140,99030,83.99,0,7.5,8.15,8.290000000000001,8.370000000000001,8.41,8.44,8.46,8.47,8.47,201.06,201.15,201.19,201.23000000000002,201.27,201.31,201.35,201.39000000000001,201.47,28.89,28.54,28.37,28.16,27.97,27.78,27.59,27.400000000000002,27.02,N/A,N/A +2012,8,2,5,30,101250,100110,99010,84.68,0,7.45,8.11,8.26,8.34,8.4,8.44,8.47,8.48,8.51,203.76,203.70000000000002,203.68,203.67000000000002,203.65,203.63,203.62,203.6,203.58,28.86,28.5,28.330000000000002,28.12,27.93,27.740000000000002,27.55,27.36,26.98,N/A,N/A +2012,8,2,6,30,101270,100130,99030,85.22,0,7.71,8.370000000000001,8.51,8.59,8.63,8.66,8.68,8.69,8.700000000000001,211.98000000000002,211.84,211.75,211.67000000000002,211.59,211.52,211.45000000000002,211.38,211.25,28.8,28.44,28.27,28.07,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A +2012,8,2,7,30,101280,100140,99030,83.76,0,7.86,8.58,8.74,8.82,8.88,8.92,8.94,8.96,8.98,215.17000000000002,214.88,214.74,214.6,214.48000000000002,214.36,214.25,214.14000000000001,213.92000000000002,28.82,28.46,28.29,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A +2012,8,2,8,30,101280,100140,99030,82.11,0,7.74,8.43,8.58,8.65,8.700000000000001,8.73,8.75,8.76,8.75,219.09,218.9,218.74,218.58,218.42000000000002,218.27,218.11,217.95000000000002,217.62,28.89,28.53,28.35,28.150000000000002,27.96,27.77,27.57,27.38,27,N/A,N/A +2012,8,2,9,30,101300,100160,99060,83.67,0,7.75,8.4,8.53,8.58,8.61,8.620000000000001,8.61,8.6,8.56,222.13,222.27,222.33,222.39000000000001,222.44,222.49,222.52,222.57,222.64000000000001,28.75,28.38,28.21,28.01,27.82,27.62,27.43,27.240000000000002,26.86,N/A,N/A +2012,8,2,10,30,101320,100180,99070,81.55,0,7.21,7.7700000000000005,7.9,7.96,8.01,8.040000000000001,8.06,8.08,8.11,226.65,226.59,226.56,226.5,226.44,226.37,226.29,226.21,226.01,28.8,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.94,N/A,N/A +2012,8,2,11,30,101330,100190,99080,83.69,0,6.0600000000000005,6.6000000000000005,6.71,6.8,6.8500000000000005,6.9,6.93,6.96,7,229,229.14000000000001,229.11,229.07,229.02,228.97,228.91,228.85,228.72,28.72,28.36,28.18,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A +2012,8,2,12,30,101370,100220,99120,81.12,0,6.3100000000000005,6.8500000000000005,6.98,7.05,7.1000000000000005,7.13,7.16,7.17,7.2,228.49,228.59,228.62,228.64000000000001,228.65,228.65,228.65,228.65,228.62,28.75,28.400000000000002,28.22,28.02,27.830000000000002,27.64,27.44,27.25,26.87,N/A,N/A +2012,8,2,13,30,101410,100260,99160,79.03,0,5.33,5.73,5.83,5.89,5.93,5.96,5.98,6,6.03,227.02,227.14000000000001,227.24,227.32,227.39000000000001,227.45000000000002,227.52,227.57,227.68,28.8,28.45,28.28,28.080000000000002,27.88,27.69,27.5,27.310000000000002,26.92,N/A,N/A +2012,8,2,14,30,101430,100290,99180,77.56,0,5.6000000000000005,6.03,6.13,6.17,6.21,6.23,6.25,6.26,6.2700000000000005,226.23000000000002,226.07,226.01,225.94,225.87,225.81,225.74,225.68,225.55,28.89,28.54,28.37,28.17,27.98,27.79,27.59,27.400000000000002,27.02,N/A,N/A +2012,8,2,15,30,101450,100310,99200,76.54,0,5.11,5.5,5.6000000000000005,5.66,5.69,5.73,5.75,5.7700000000000005,5.8,225.61,225.72,225.71,225.68,225.66,225.62,225.58,225.55,225.46,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.04,N/A,N/A +2012,8,2,16,30,101470,100320,99210,73.79,0,4.68,5.01,5.08,5.12,5.15,5.18,5.19,5.21,5.24,220.66,220.64000000000001,220.65,220.67000000000002,220.68,220.68,220.69,220.70000000000002,220.71,29,28.66,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A +2012,8,2,17,30,101430,100290,99180,71.66,0,4.86,5.19,5.25,5.28,5.29,5.3,5.3,5.3,5.29,223.45000000000002,223.44,223.38,223.3,223.22,223.14000000000001,223.06,223,222.83,29.16,28.810000000000002,28.64,28.44,28.25,28.060000000000002,27.86,27.68,27.29,N/A,N/A +2012,8,2,18,30,101400,100250,99150,69.17,0,5.3500000000000005,5.72,5.7700000000000005,5.79,5.8,5.8,5.8,5.79,5.7700000000000005,206.63,206.44,206.33,206.21,206.09,205.98000000000002,205.87,205.76,205.55,29.27,28.93,28.76,28.560000000000002,28.37,28.19,27.990000000000002,27.810000000000002,27.43,N/A,N/A +2012,8,2,19,30,101380,100240,99130,72.03,0,5.54,5.95,6.0200000000000005,6.0600000000000005,6.08,6.09,6.09,6.1000000000000005,6.09,196.97,196.89000000000001,196.86,196.83,196.8,196.77,196.74,196.72,196.66,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.94,27.76,27.38,N/A,N/A +2012,8,2,20,30,101340,100200,99100,68.71000000000001,0,6.3500000000000005,6.84,6.92,6.95,6.96,6.97,6.96,6.95,6.92,197.8,197.65,197.61,197.54,197.48000000000002,197.42000000000002,197.35,197.29,197.14000000000001,29.36,29.04,28.88,28.68,28.490000000000002,28.310000000000002,28.11,27.93,27.55,N/A,N/A +2012,8,2,21,30,101300,100160,99050,71.13,0,5.99,6.44,6.51,6.54,6.55,6.55,6.55,6.54,6.51,194.21,193.99,193.88,193.78,193.69,193.6,193.51,193.43,193.26,29.240000000000002,28.92,28.75,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.43,N/A,N/A +2012,8,2,22,30,101260,100120,99010,71.74,0,6.59,7.12,7.21,7.25,7.28,7.28,7.28,7.28,7.26,197.95000000000002,197.84,197.79,197.72,197.65,197.58,197.5,197.42000000000002,197.24,29.21,28.89,28.73,28.53,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,2,23,30,101220,100080,98970,69.66,0,5.8,6.23,6.3100000000000005,6.34,6.3500000000000005,6.3500000000000005,6.3500000000000005,6.34,6.32,192.59,192.8,192.93,193.05,193.16,193.27,193.39000000000001,193.5,193.74,29.25,28.94,28.77,28.580000000000002,28.39,28.21,28.01,27.830000000000002,27.46,N/A,N/A +2012,8,3,0,30,101200,100060,98950,73.85000000000001,0,5.92,6.37,6.46,6.51,6.53,6.55,6.5600000000000005,6.5600000000000005,6.5600000000000005,191.73000000000002,191.74,191.76,191.8,191.84,191.88,191.93,191.97,192.09,29.060000000000002,28.740000000000002,28.57,28.38,28.19,28.01,27.82,27.63,27.26,N/A,N/A +2012,8,3,1,30,101170,100030,98920,70.71000000000001,0,5.83,6.26,6.34,6.37,6.390000000000001,6.4,6.41,6.41,6.4,190.93,191.08,191.21,191.35,191.49,191.62,191.77,191.9,192.22,29.150000000000002,28.830000000000002,28.66,28.47,28.28,28.1,27.900000000000002,27.72,27.35,N/A,N/A +2012,8,3,2,30,101180,100040,98940,71.12,0,6.47,7.01,7.12,7.17,7.2,7.23,7.24,7.25,7.26,193.79,193.58,193.43,193.28,193.16,193.04,192.92000000000002,192.81,192.59,29.16,28.84,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,8,3,3,30,101180,100040,98930,79.33,0,6.12,6.61,6.72,6.78,6.82,6.8500000000000005,6.88,6.9,6.93,198.74,198.44,198.27,198.09,197.92000000000002,197.77,197.61,197.45000000000002,197.13,28.79,28.44,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.92,N/A,N/A +2012,8,3,4,30,101170,100040,98930,80.41,0,6.140000000000001,6.57,6.68,6.74,6.78,6.8100000000000005,6.83,6.8500000000000005,6.890000000000001,200.94,200.06,199.67000000000002,199.35,199.08,198.84,198.63,198.44,198.12,28.830000000000002,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.37,27,N/A,N/A +2012,8,3,5,30,101140,100000,98900,78.60000000000001,0,7.29,7.890000000000001,8.01,8.06,8.09,8.11,8.11,8.11,8.09,194.43,194.47,194.52,194.57,194.61,194.66,194.69,194.73000000000002,194.8,28.91,28.560000000000002,28.38,28.18,27.990000000000002,27.79,27.6,27.41,27.03,N/A,N/A +2012,8,3,6,30,101140,100000,98900,80.36,0,7.07,7.69,7.83,7.91,7.97,8.01,8.040000000000001,8.06,8.1,194.75,194.69,194.67000000000002,194.65,194.63,194.62,194.62,194.62,194.61,28.86,28.51,28.330000000000002,28.13,27.94,27.75,27.55,27.36,26.98,N/A,N/A +2012,8,3,7,30,101150,100010,98910,82.65,0,6.84,7.43,7.57,7.640000000000001,7.7,7.74,7.7700000000000005,7.79,7.83,204.92000000000002,204.9,204.86,204.81,204.76,204.70000000000002,204.65,204.59,204.46,28.82,28.46,28.29,28.09,27.900000000000002,27.71,27.51,27.32,26.94,N/A,N/A +2012,8,3,8,30,101190,100050,98950,81.35000000000001,0,7.01,7.61,7.73,7.79,7.84,7.86,7.88,7.9,7.91,195.1,195.35,195.45000000000002,195.56,195.67000000000002,195.78,195.89000000000001,196,196.23000000000002,28.87,28.52,28.34,28.14,27.95,27.76,27.57,27.38,27,N/A,N/A +2012,8,3,9,30,101180,100040,98940,85.12,0,7.3,7.99,8.16,8.26,8.33,8.39,8.44,8.47,8.540000000000001,199.36,199.42000000000002,199.42000000000002,199.44,199.44,199.45000000000002,199.46,199.46,199.48000000000002,28.84,28.48,28.310000000000002,28.11,27.92,27.73,27.53,27.34,26.96,N/A,N/A +2012,8,3,10,30,101180,100040,98940,83.62,0,7.3500000000000005,8.040000000000001,8.17,8.24,8.28,8.3,8.32,8.32,8.31,205.91,205.98000000000002,205.99,205.98000000000002,205.94,205.9,205.84,205.79,205.64000000000001,29.18,28.84,28.66,28.47,28.27,28.09,27.89,27.71,27.32,N/A,N/A +2012,8,3,11,30,101260,100120,99020,83.46000000000001,0,7.75,8.49,8.66,8.75,8.81,8.85,8.88,8.9,8.93,209.74,209.87,209.94,210,210.05,210.09,210.13,210.16,210.22,29.14,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.68,27.3,N/A,N/A +2012,8,3,12,30,101290,100150,99040,81.42,0,7.43,8.1,8.26,8.36,8.42,8.46,8.49,8.51,8.540000000000001,205.19,205.31,205.37,205.41,205.45000000000002,205.48000000000002,205.51,205.53,205.58,29.150000000000002,28.810000000000002,28.650000000000002,28.44,28.26,28.07,27.87,27.68,27.310000000000002,N/A,N/A +2012,8,3,13,30,101320,100180,99080,80.84,0,6.79,7.42,7.5600000000000005,7.640000000000001,7.7,7.74,7.7700000000000005,7.79,7.82,199.34,199.3,199.35,199.4,199.45000000000002,199.5,199.56,199.61,199.72,29.14,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A +2012,8,3,14,30,101350,100210,99110,80.72,0,6.17,6.72,6.84,6.91,6.96,6.99,7.0200000000000005,7.04,7.07,207.57,207.48000000000002,207.49,207.5,207.51,207.53,207.54,207.54,207.57,29.19,28.85,28.68,28.490000000000002,28.3,28.11,27.91,27.73,27.35,N/A,N/A +2012,8,3,15,30,101380,100240,99130,82.16,0,5.44,5.92,6.05,6.13,6.21,6.2700000000000005,6.32,6.37,6.45,213.32,214.88,215.57,216.16,216.65,217.09,217.48000000000002,217.82,218.43,29.09,28.75,28.580000000000002,28.39,28.2,28.01,27.82,27.64,27.26,N/A,N/A +2012,8,3,16,30,101400,100260,99160,77.01,0,7.01,7.57,7.65,7.68,7.68,7.66,7.640000000000001,7.61,7.53,221.83,222,222.1,222.21,222.3,222.38,222.46,222.53,222.67000000000002,29.310000000000002,28.990000000000002,28.82,28.62,28.43,28.240000000000002,28.05,27.86,27.48,N/A,N/A +2012,8,3,17,30,101420,100280,99170,76.8,0,5.96,6.41,6.5,6.54,6.57,6.59,6.6000000000000005,6.6000000000000005,6.6000000000000005,223.84,223.9,223.92000000000002,223.95000000000002,223.96,223.97,223.99,224.01,224.03,29.23,28.89,28.72,28.52,28.330000000000002,28.150000000000002,27.95,27.76,27.39,N/A,N/A +2012,8,3,18,30,101380,100240,99140,76.94,0,4.91,5.2700000000000005,5.3500000000000005,5.39,5.42,5.45,5.47,5.49,5.53,221.88,221.79,221.8,221.8,221.78,221.76,221.73000000000002,221.70000000000002,221.63,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,3,19,30,101390,100250,99140,74.69,0,4.84,5.22,5.29,5.34,5.37,5.4,5.43,5.44,5.48,214.33,214.42000000000002,214.43,214.44,214.44,214.44,214.44,214.44,214.42000000000002,29.310000000000002,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A +2012,8,3,20,30,101330,100190,99080,73.61,0,5.26,5.65,5.73,5.76,5.79,5.8100000000000005,5.82,5.84,5.8500000000000005,205.18,205.20000000000002,205.24,205.25,205.27,205.28,205.29,205.3,205.31,29.35,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A +2012,8,3,21,30,101330,100190,99080,75.65,0,4.98,5.34,5.41,5.44,5.46,5.47,5.48,5.48,5.49,200.44,200.54,200.56,200.58,200.61,200.63,200.65,200.68,200.74,29.27,28.94,28.77,28.57,28.38,28.19,28,27.82,27.44,N/A,N/A +2012,8,3,22,30,101320,100180,99070,74.94,0,4.41,4.71,4.76,4.78,4.79,4.8,4.8,4.8,4.79,195.48000000000002,195.27,195.12,194.96,194.8,194.63,194.46,194.3,193.95000000000002,29.32,29,28.830000000000002,28.64,28.45,28.26,28.060000000000002,27.88,27.5,N/A,N/A +2012,8,3,23,30,101270,100130,99020,74.64,0,4.8100000000000005,5.15,5.21,5.23,5.24,5.25,5.25,5.25,5.24,183.36,182.76,182.44,182.13,181.83,181.53,181.21,180.93,180.29,29.29,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A +2012,8,4,0,30,101200,100060,98960,76.22,0,5.14,5.54,5.61,5.65,5.67,5.69,5.7,5.71,5.72,188.86,188.70000000000002,188.63,188.58,188.51,188.45000000000002,188.39000000000001,188.34,188.21,29.16,28.830000000000002,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,8,4,1,30,101190,100050,98940,79.44,0,5.1000000000000005,5.48,5.55,5.58,5.6000000000000005,5.62,5.63,5.64,5.65,181.37,181.16,181.02,180.86,180.70000000000002,180.55,180.39000000000001,180.24,179.93,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,8,4,2,30,101260,100110,99010,79.10000000000001,0,5.58,6.01,6.09,6.13,6.16,6.17,6.18,6.19,6.19,168.09,168.26,168.33,168.41,168.49,168.56,168.63,168.70000000000002,168.84,29.12,28.79,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A +2012,8,4,3,30,101260,100120,99010,80.41,0,5.21,5.6000000000000005,5.67,5.71,5.74,5.76,5.7700000000000005,5.78,5.8,168.48,168.32,168.28,168.22,168.17000000000002,168.12,168.06,168,167.88,29.05,28.71,28.54,28.34,28.150000000000002,27.97,27.77,27.580000000000002,27.2,N/A,N/A +2012,8,4,4,30,101230,100090,98990,82.06,0,5.67,6.13,6.23,6.29,6.33,6.36,6.390000000000001,6.41,6.45,170.67000000000002,170.61,170.48,170.36,170.27,170.17000000000002,170.07,169.99,169.8,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A +2012,8,4,5,30,101270,100130,99020,82.82000000000001,0,6.5,7.1000000000000005,7.23,7.32,7.38,7.43,7.46,7.5,7.54,176.08,175.94,175.91,175.88,175.85,175.81,175.78,175.75,175.69,29.05,28.72,28.54,28.34,28.150000000000002,27.97,27.77,27.580000000000002,27.2,N/A,N/A +2012,8,4,6,30,101290,100150,99050,79.96000000000001,0,7.3,7.96,8.08,8.15,8.19,8.22,8.23,8.24,8.24,189.57,189.62,189.61,189.61,189.6,189.59,189.57,189.56,189.54,29.09,28.75,28.580000000000002,28.39,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A +2012,8,4,7,30,101350,100200,99100,83.73,0,6.49,7.05,7.18,7.25,7.3100000000000005,7.3500000000000005,7.38,7.41,7.45,184.88,184.84,184.9,184.96,185.01,185.05,185.1,185.15,185.24,28.89,28.54,28.37,28.17,27.98,27.79,27.6,27.41,27.03,N/A,N/A +2012,8,4,8,30,101350,100210,99110,79.35000000000001,0,7.48,8.13,8.26,8.3,8.33,8.34,8.34,8.33,8.3,191.72,191.54,191.4,191.26,191.12,190.99,190.85,190.71,190.42000000000002,29.12,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.29,N/A,N/A +2012,8,4,9,30,101360,100220,99110,78.58,0,6.640000000000001,7.25,7.390000000000001,7.47,7.54,7.58,7.61,7.640000000000001,7.69,193.17000000000002,193.54,193.66,193.75,193.83,193.9,193.95000000000002,194.01,194.1,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.2,N/A,N/A +2012,8,4,10,30,101410,100270,99160,77.88,0,6.44,6.99,7.09,7.15,7.18,7.21,7.22,7.23,7.24,197.8,197.77,197.72,197.64000000000001,197.57,197.49,197.41,197.33,197.16,29.03,28.69,28.52,28.330000000000002,28.14,27.95,27.75,27.560000000000002,27.18,N/A,N/A +2012,8,4,11,30,101440,100300,99190,78.60000000000001,0,5.98,6.46,6.5600000000000005,6.61,6.640000000000001,6.67,6.68,6.69,6.7,200.22,199.96,199.82,199.69,199.57,199.46,199.35,199.24,199.03,28.97,28.64,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A +2012,8,4,12,30,101490,100350,99240,78.42,0,4.95,5.32,5.39,5.43,5.46,5.48,5.49,5.51,5.5200000000000005,203.82,203.63,203.47,203.3,203.13,202.97,202.8,202.64000000000001,202.3,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,8,4,13,30,101510,100370,99260,77.12,0,4.73,5.09,5.16,5.19,5.22,5.23,5.25,5.26,5.2700000000000005,208.85,208.84,208.77,208.70000000000002,208.64000000000001,208.59,208.53,208.48000000000002,208.36,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.72,27.54,27.150000000000002,N/A,N/A +2012,8,4,14,30,101590,100440,99330,76.46000000000001,0,3.3200000000000003,3.5500000000000003,3.59,3.61,3.63,3.64,3.65,3.66,3.67,210.81,210.19,209.81,209.42000000000002,209.08,208.74,208.4,208.08,207.42000000000002,29.060000000000002,28.73,28.560000000000002,28.37,28.18,27.98,27.79,27.6,27.22,N/A,N/A +2012,8,4,15,30,101580,100430,99320,76.84,0,3.11,3.2800000000000002,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,3.31,212.56,212.31,212.1,211.89000000000001,211.69,211.49,211.3,211.12,210.75,29.02,28.69,28.51,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.17,N/A,N/A +2012,8,4,16,30,101610,100460,99350,75.59,0,2.25,2.36,2.37,2.38,2.39,2.4,2.4,2.4,2.41,202.63,202.61,202.6,202.58,202.55,202.52,202.48000000000002,202.45000000000002,202.34,29.080000000000002,28.73,28.560000000000002,28.36,28.17,27.98,27.79,27.6,27.22,N/A,N/A +2012,8,4,17,30,101610,100470,99360,75.53,0,1.82,1.9000000000000001,1.9100000000000001,1.9100000000000001,1.92,1.92,1.92,1.93,1.93,188.16,187.76,187.54,187.3,187.09,186.88,186.68,186.48,186.08,29.14,28.79,28.62,28.42,28.23,28.04,27.84,27.66,27.27,N/A,N/A +2012,8,4,18,30,101590,100440,99330,75.66,0,2.68,2.82,2.84,2.85,2.86,2.87,2.87,2.88,2.89,170.25,169.93,169.82,169.71,169.62,169.53,169.44,169.36,169.17000000000002,29.22,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,8,4,19,30,101600,100460,99350,75.78,0,2.66,2.7800000000000002,2.8000000000000003,2.82,2.83,2.84,2.84,2.84,2.85,164.34,163.78,163.44,163.12,162.82,162.53,162.23,161.95000000000002,161.38,29.310000000000002,28.95,28.77,28.57,28.38,28.19,28,27.810000000000002,27.43,N/A,N/A +2012,8,4,20,30,101570,100420,99320,75.02,0,3.73,3.94,3.97,3.98,3.99,3.99,3.99,3.99,3.99,154.63,154.88,154.98,155.09,155.20000000000002,155.31,155.43,155.53,155.76,29.41,29.05,28.88,28.68,28.490000000000002,28.3,28.1,27.91,27.53,N/A,N/A +2012,8,4,21,30,101570,100420,99320,76.5,0,4.47,4.72,4.75,4.75,4.75,4.75,4.74,4.73,4.71,150.01,150.78,151.13,151.49,151.81,152.13,152.45000000000002,152.74,153.34,29.28,28.93,28.76,28.560000000000002,28.37,28.18,27.990000000000002,27.8,27.42,N/A,N/A +2012,8,4,22,30,101550,100410,99300,77.78,0,5.53,5.92,5.99,6.03,6.05,6.07,6.07,6.08,6.08,155.23,155.44,155.51,155.57,155.63,155.70000000000002,155.77,155.83,155.97,29.18,28.85,28.68,28.48,28.3,28.1,27.91,27.72,27.35,N/A,N/A +2012,8,4,23,30,101530,100390,99280,78.43,0,5.11,5.62,5.73,5.8,5.86,5.9,5.92,5.95,5.98,156.08,155.93,155.91,155.87,155.85,155.83,155.82,155.81,155.79,29.330000000000002,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A +2012,8,5,0,30,101510,100370,99260,78.37,0,6.26,6.8100000000000005,6.92,6.99,7.03,7.07,7.09,7.1000000000000005,7.13,149.47,149.35,149.31,149.27,149.24,149.21,149.19,149.16,149.11,29.19,28.87,28.7,28.51,28.32,28.13,27.94,27.75,27.37,N/A,N/A +2012,8,5,1,30,101520,100370,99260,79.9,0,6.3100000000000005,6.8500000000000005,6.96,7.03,7.07,7.09,7.11,7.12,7.140000000000001,152.79,152.87,152.97,153.06,153.15,153.23,153.31,153.38,153.54,29.07,28.740000000000002,28.57,28.37,28.18,27.990000000000002,27.79,27.61,27.22,N/A,N/A +2012,8,5,2,30,101600,100450,99340,78.23,0,5.53,6.01,6.12,6.18,6.23,6.2700000000000005,6.3,6.32,6.36,148.35,148.25,148.25,148.25,148.25,148.25,148.26,148.26,148.27,29.12,28.79,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A +2012,8,5,3,30,101620,100480,99370,77.96000000000001,0,5.42,5.82,5.88,5.9,5.91,5.91,5.9,5.89,5.86,137.77,137.85,137.86,137.86,137.85,137.84,137.83,137.83,137.82,29.02,28.69,28.52,28.330000000000002,28.14,27.94,27.75,27.560000000000002,27.18,N/A,N/A +2012,8,5,4,30,101630,100490,99380,74.83,0,3.92,4.14,4.16,4.17,4.16,4.15,4.14,4.13,4.1,140.29,140.27,140.21,140.15,140.09,140.04,139.98,139.92000000000002,139.81,29,28.67,28.5,28.310000000000002,28.11,27.93,27.73,27.54,27.16,N/A,N/A +2012,8,5,5,30,101660,100510,99400,76.14,0,3.2800000000000002,3.48,3.52,3.54,3.5500000000000003,3.56,3.56,3.56,3.56,138.09,138.46,138.70000000000002,138.92000000000002,139.12,139.32,139.5,139.67000000000002,140.03,28.93,28.6,28.43,28.23,28.04,27.86,27.66,27.47,27.09,N/A,N/A +2012,8,5,6,30,101660,100510,99400,76.4,0,4.58,4.86,4.91,4.92,4.92,4.91,4.9,4.89,4.86,146.8,146.69,146.65,146.6,146.54,146.49,146.42000000000002,146.36,146.24,28.87,28.54,28.37,28.17,27.98,27.79,27.59,27.400000000000002,27.02,N/A,N/A +2012,8,5,7,30,101660,100510,99400,78.01,0,5.7700000000000005,6.23,6.3100000000000005,6.36,6.390000000000001,6.4,6.41,6.41,6.41,152.45000000000002,152.59,152.68,152.76,152.84,152.91,152.97,153.04,153.17000000000002,28.8,28.45,28.28,28.080000000000002,27.89,27.69,27.5,27.310000000000002,26.92,N/A,N/A +2012,8,5,8,30,101680,100530,99420,75.63,0,4.21,4.46,4.5200000000000005,4.55,4.57,4.59,4.6000000000000005,4.61,4.62,156.52,156.52,156.46,156.38,156.31,156.22,156.13,156.03,155.84,28.76,28.42,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A +2012,8,5,9,30,101720,100570,99460,77.39,0,3.74,3.96,3.98,3.99,4,3.99,3.99,3.98,3.96,160.67000000000002,160.8,160.89000000000001,160.98,161.07,161.15,161.24,161.32,161.51,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A +2012,8,5,10,30,101750,100600,99490,71.73,0,2.6,2.7800000000000002,2.81,2.83,2.85,2.86,2.87,2.89,2.91,169.46,169.29,169.23,169.15,169.06,168.98,168.89000000000001,168.82,168.62,28.86,28.54,28.37,28.17,27.98,27.79,27.59,27.41,27.02,N/A,N/A +2012,8,5,11,30,101770,100620,99510,76.67,0,2.27,2.37,2.37,2.36,2.36,2.35,2.34,2.33,2.3000000000000003,153.58,154.04,154.33,154.6,154.85,155.07,155.29,155.48,155.85,28.63,28.3,28.12,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A +2012,8,5,12,30,101810,100660,99550,75.58,0,1.19,1.24,1.24,1.25,1.25,1.25,1.24,1.24,1.24,99.37,100.99000000000001,101.99000000000001,102.95,103.8,104.59,105.38,106.12,107.58,28.64,28.310000000000002,28.13,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A +2012,8,5,13,30,101850,100700,99580,75.69,0,1.37,1.3900000000000001,1.3900000000000001,1.37,1.36,1.35,1.34,1.32,1.3,56.29,57.550000000000004,58.27,59,59.7,60.370000000000005,61.050000000000004,61.67,63.09,28.61,28.28,28.1,27.900000000000002,27.72,27.53,27.330000000000002,27.14,26.76,N/A,N/A +2012,8,5,14,30,101870,100720,99610,75.74,0,2.21,2.2800000000000002,2.27,2.2600000000000002,2.25,2.23,2.22,2.2,2.17,60.27,60.17,60.14,60.1,60.07,60.03,59.980000000000004,59.92,59.77,28.62,28.28,28.1,27.900000000000002,27.71,27.52,27.32,27.14,26.75,N/A,N/A +2012,8,5,15,30,101910,100760,99640,75,0,2.83,2.95,2.96,2.96,2.95,2.95,2.94,2.93,2.9,54.54,54.96,55.08,55.2,55.300000000000004,55.410000000000004,55.51,55.61,55.79,28.68,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.37,27.18,26.8,N/A,N/A +2012,8,5,16,30,101940,100790,99680,75.73,0,3.44,3.59,3.6,3.6,3.59,3.58,3.56,3.5500000000000003,3.52,67.85,68.16,68.23,68.31,68.39,68.47,68.55,68.63,68.81,28.69,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.38,27.19,26.810000000000002,N/A,N/A +2012,8,5,17,30,101920,100760,99650,73.27,0,2.95,3.11,3.13,3.14,3.15,3.15,3.15,3.15,3.14,95.19,95.84,96.08,96.33,96.58,96.82000000000001,97.08,97.32000000000001,97.85000000000001,28.79,28.43,28.26,28.060000000000002,27.86,27.68,27.48,27.29,26.91,N/A,N/A +2012,8,5,18,30,101890,100740,99620,74.22,0,4.0600000000000005,4.29,4.33,4.3500000000000005,4.36,4.37,4.38,4.38,4.38,111.49000000000001,111.75,111.91,112.08,112.24000000000001,112.39,112.56,112.72,113.05,28.85,28.48,28.310000000000002,28.11,27.92,27.73,27.53,27.35,26.97,N/A,N/A +2012,8,5,19,30,101870,100720,99610,77.29,0,3.7600000000000002,3.95,3.96,3.96,3.95,3.93,3.92,3.9,3.86,133.37,133.52,133.59,133.65,133.7,133.75,133.8,133.85,133.95,28.8,28.44,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A +2012,8,5,20,30,101850,100700,99590,76.4,0,2.81,2.93,2.94,2.94,2.93,2.91,2.9,2.88,2.85,132.29,131.97,131.76,131.55,131.35,131.14000000000001,130.92000000000002,130.72,130.26,28.86,28.5,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A +2012,8,5,21,30,101830,100680,99560,73.73,0,3.63,3.83,3.86,3.87,3.88,3.89,3.89,3.89,3.88,147.06,147.14000000000001,147.12,147.13,147.13,147.14000000000001,147.16,147.18,147.23,28.96,28.6,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.080000000000002,N/A,N/A +2012,8,5,22,30,101780,100630,99520,71.92,0,3.5700000000000003,3.7800000000000002,3.8200000000000003,3.84,3.85,3.86,3.86,3.87,3.87,171.99,171.56,171.18,170.83,170.49,170.17000000000002,169.84,169.54,168.89000000000001,28.98,28.64,28.48,28.28,28.09,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A +2012,8,5,23,30,101750,100600,99490,72.99,0,3.46,3.66,3.68,3.69,3.69,3.69,3.69,3.68,3.67,183.64000000000001,183.92000000000002,184.1,184.28,184.45000000000002,184.6,184.75,184.89000000000001,185.15,28.900000000000002,28.57,28.400000000000002,28.21,28.02,27.84,27.650000000000002,27.47,27.1,N/A,N/A +2012,8,6,0,30,101720,100570,99460,72.81,0,3.5100000000000002,3.7,3.72,3.72,3.72,3.71,3.7,3.69,3.66,172.67000000000002,172.4,172.18,171.96,171.74,171.53,171.28,171.05,170.45000000000002,28.86,28.53,28.36,28.17,27.98,27.8,27.61,27.43,27.060000000000002,N/A,N/A +2012,8,6,1,30,101700,100550,99440,67.92,0,2.49,2.63,2.65,2.66,2.67,2.67,2.68,2.68,2.69,183.83,183.65,183.35,183.01,182.64000000000001,182.26,181.74,181.22,179.75,29.080000000000002,28.77,28.61,28.42,28.240000000000002,28.060000000000002,27.87,27.7,27.35,N/A,N/A +2012,8,6,2,30,101710,100560,99450,70.99,0,3.2,3.37,3.38,3.39,3.38,3.38,3.38,3.37,3.35,191.92000000000002,191.06,190.64000000000001,190.21,189.77,189.33,188.83,188.36,187.22,28.95,28.63,28.46,28.27,28.080000000000002,27.900000000000002,27.71,27.54,27.17,N/A,N/A +2012,8,6,3,30,101730,100580,99460,70.67,0,3.3000000000000003,3.48,3.5,3.5100000000000002,3.52,3.52,3.52,3.52,3.5100000000000002,183.18,182.84,182.58,182.3,182.01,181.70000000000002,181.35,181,180.09,28.91,28.59,28.42,28.23,28.04,27.86,27.67,27.48,27.11,N/A,N/A +2012,8,6,4,30,101720,100570,99460,71.2,0,3.08,3.24,3.27,3.27,3.2800000000000002,3.27,3.27,3.27,3.2600000000000002,186.02,185.5,185.23,184.94,184.64000000000001,184.33,183.98,183.65,182.82,28.87,28.55,28.38,28.19,28,27.810000000000002,27.62,27.44,27.07,N/A,N/A +2012,8,6,5,30,101720,100570,99460,66.73,0,2.92,3.11,3.13,3.15,3.16,3.17,3.17,3.18,3.2,189.54,189.29,189.08,188.87,188.65,188.42000000000002,188.15,187.88,187.18,29.1,28.79,28.62,28.43,28.25,28.060000000000002,27.87,27.69,27.32,N/A,N/A +2012,8,6,6,30,101720,100570,99460,69.28,0,2.43,2.52,2.52,2.52,2.5100000000000002,2.5,2.49,2.48,2.44,199.67000000000002,199.44,199.22,198.99,198.76,198.53,198.25,197.99,197.3,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.17,N/A,N/A +2012,8,6,7,30,101720,100570,99460,67.98,0,2.38,2.49,2.5,2.5,2.5,2.49,2.49,2.48,2.47,206.05,205.77,205.62,205.46,205.27,205.08,204.85,204.64000000000001,204.08,29.02,28.69,28.52,28.330000000000002,28.13,27.95,27.75,27.57,27.19,N/A,N/A +2012,8,6,8,30,101750,100600,99490,70.35000000000001,0,2.23,2.3000000000000003,2.3000000000000003,2.29,2.29,2.27,2.2600000000000002,2.25,2.22,241.22,241.06,240.89000000000001,240.70000000000002,240.54,240.38,240.20000000000002,240.03,239.66,28.89,28.560000000000002,28.39,28.2,28.01,27.82,27.63,27.44,27.060000000000002,N/A,N/A +2012,8,6,9,30,101750,100600,99480,69.21000000000001,0,2.65,2.7600000000000002,2.77,2.77,2.77,2.77,2.7600000000000002,2.75,2.73,236.76,236.45000000000002,236.35,236.25,236.14000000000001,236.03,235.92000000000002,235.82,235.57,28.92,28.580000000000002,28.41,28.22,28.03,27.84,27.650000000000002,27.46,27.080000000000002,N/A,N/A +2012,8,6,10,30,101750,100600,99490,72.48,0,2.5500000000000003,2.65,2.66,2.65,2.64,2.63,2.62,2.61,2.58,243.42000000000002,243.4,243.32,243.24,243.16,243.09,243,242.92000000000002,242.75,28.71,28.37,28.2,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A +2012,8,6,11,30,101770,100620,99510,80.41,0,3.63,3.63,3.54,3.43,3.33,3.23,3.12,3.0300000000000002,2.83,301,299.82,298.96,298.04,297.1,296.18,295.15000000000003,294.2,291.87,28.16,27.8,27.63,27.44,27.26,27.080000000000002,26.89,26.71,26.35,N/A,N/A +2012,8,6,12,30,101780,100620,99510,81.25,0,3.7800000000000002,3.88,3.85,3.79,3.74,3.67,3.6,3.5300000000000002,3.35,319.28000000000003,319.57,319.69,319.8,319.90000000000003,320,320.07,320.13,320.17,27.79,27.400000000000002,27.22,27.03,26.84,26.650000000000002,26.46,26.28,25.91,N/A,N/A +2012,8,6,13,30,101810,100660,99540,82.07000000000001,0,3.77,3.91,3.92,3.9,3.88,3.86,3.83,3.8000000000000003,3.73,322.84000000000003,322.95,323.05,323.15000000000003,323.24,323.33,323.41,323.49,323.63,27.71,27.32,27.13,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A +2012,8,6,14,30,101830,100680,99560,78.75,0,3.24,3.37,3.38,3.37,3.36,3.34,3.33,3.31,3.27,329.44,329.79,329.99,330.18,330.37,330.55,330.74,330.90000000000003,331.27,27.92,27.54,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.02,N/A,N/A +2012,8,6,15,30,101810,100660,99550,76.29,0,2.2800000000000002,2.35,2.35,2.35,2.34,2.33,2.32,2.31,2.29,322.96,324,324.56,325.11,325.64,326.16,326.7,327.23,328.35,28.1,27.73,27.55,27.36,27.16,26.97,26.78,26.6,26.21,N/A,N/A +2012,8,6,16,30,101810,100660,99540,75.06,0,1.42,1.47,1.47,1.47,1.46,1.46,1.46,1.46,1.45,312.07,314.03000000000003,315.15000000000003,316.27,317.32,318.32,319.38,320.38,322.43,28.32,27.95,27.77,27.57,27.38,27.19,27,26.810000000000002,26.43,N/A,N/A +2012,8,6,17,30,101750,100600,99480,73.95,0,0.6,0.59,0.5700000000000001,0.56,0.54,0.52,0.51,0.49,0.44,229.72,230.76,231.02,231.36,231.68,231.98000000000002,232.43,232.88,234.63,28.51,28.150000000000002,27.98,27.79,27.6,27.42,27.23,27.05,26.7,N/A,N/A +2012,8,6,18,30,101730,100580,99470,71.96000000000001,0,2.15,2.19,2.17,2.15,2.12,2.09,2.05,2.0100000000000002,1.92,206.04,206.16,206.29,206.43,206.6,206.8,207.09,207.4,208.45000000000002,28.84,28.48,28.310000000000002,28.11,27.93,27.75,27.560000000000002,27.39,27.04,N/A,N/A +2012,8,6,19,30,101670,100520,99410,71.81,0,3.0300000000000002,3.12,3.1,3.0700000000000003,3.0300000000000002,2.98,2.94,2.88,2.75,200.83,201.13,201.33,201.56,201.79,202.03,202.33,202.62,203.47,29.02,28.650000000000002,28.48,28.29,28.11,27.93,27.740000000000002,27.57,27.23,N/A,N/A +2012,8,6,20,30,101590,100450,99340,70.24,0,4.16,4.33,4.33,4.3,4.2700000000000005,4.23,4.17,4.13,3.98,191.70000000000002,191.96,191.96,191.95000000000002,191.95000000000002,191.94,191.93,191.92000000000002,191.86,29.23,28.87,28.7,28.51,28.330000000000002,28.150000000000002,27.97,27.79,27.46,N/A,N/A +2012,8,6,21,30,101540,100390,99290,70.61,0,4.42,4.63,4.64,4.61,4.58,4.54,4.49,4.43,4.2700000000000005,192.13,192.03,191.95000000000002,191.84,191.70000000000002,191.52,191.29,191.06,190.21,29.27,28.94,28.77,28.580000000000002,28.39,28.21,28.03,27.86,27.51,N/A,N/A +2012,8,6,22,30,101550,100400,99300,70.82000000000001,0,4.71,4.95,4.95,4.92,4.87,4.82,4.74,4.66,4.38,193.78,193.58,193.45000000000002,193.27,193.06,192.83,192.48000000000002,192.11,190.67000000000002,29.35,29.03,28.87,28.68,28.5,28.32,28.14,27.97,27.650000000000002,N/A,N/A +2012,8,6,23,30,101490,100340,99230,72.93,0,5.28,5.57,5.58,5.55,5.49,5.43,5.33,5.24,4.8500000000000005,196.26,195.96,195.79,195.6,195.37,195.13,194.74,194.35,192.5,29.25,28.93,28.76,28.580000000000002,28.400000000000002,28.22,28.04,27.88,27.59,N/A,N/A +2012,8,7,0,30,101500,100360,99250,72.45,0,4.66,4.93,4.94,4.92,4.89,4.86,4.8,4.75,4.59,196.82,196.52,196.37,196.19,195.98000000000002,195.75,195.43,195.1,193.88,29.310000000000002,28.990000000000002,28.82,28.63,28.44,28.26,28.080000000000002,27.900000000000002,27.55,N/A,N/A +2012,8,7,1,30,101440,100300,99190,72.49,0,4.04,4.25,4.2700000000000005,4.25,4.22,4.19,4.15,4.11,3.99,203.36,203.18,202.98000000000002,202.75,202.49,202.22,201.83,201.43,200.08,29.27,28.95,28.78,28.59,28.400000000000002,28.22,28.03,27.85,27.5,N/A,N/A +2012,8,7,2,30,101480,100330,99230,73.28,0,3.67,3.86,3.88,3.87,3.86,3.84,3.81,3.79,3.71,212.21,212.15,212.1,212.01,211.9,211.77,211.58,211.38,210.72,29.23,28.91,28.75,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.44,N/A,N/A +2012,8,7,3,30,101460,100320,99210,74.18,0,3.9,4.13,4.16,4.17,4.17,4.16,4.15,4.14,4.1,211.06,211.08,210.97,210.87,210.76,210.64000000000001,210.5,210.37,210.01,29.18,28.85,28.68,28.48,28.3,28.11,27.91,27.73,27.35,N/A,N/A +2012,8,7,4,30,101430,100290,99180,74.89,0,2.36,2.45,2.46,2.45,2.45,2.44,2.43,2.42,2.39,217.43,217.27,216.96,216.62,216.27,215.93,215.53,215.15,214.21,29.07,28.740000000000002,28.57,28.38,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A +2012,8,7,5,30,101420,100270,99170,76.3,0,2.93,3.06,3.0700000000000003,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,2.99,242.3,242.11,242.08,242.05,242.02,241.99,241.96,241.93,241.84,28.96,28.63,28.46,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A +2012,8,7,6,30,101440,100300,99190,75.38,0,2.19,2.2600000000000002,2.2600000000000002,2.24,2.23,2.22,2.2,2.19,2.15,222.01,221.73000000000002,221.67000000000002,221.58,221.48000000000002,221.38,221.24,221.11,220.82,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,8,7,7,30,101420,100280,99170,73.92,0,2.05,2.14,2.15,2.14,2.14,2.14,2.13,2.13,2.11,255.02,254.88,254.89000000000001,254.89000000000001,254.87,254.85,254.81,254.78,254.67000000000002,28.95,28.62,28.45,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A +2012,8,7,8,30,101430,100280,99180,73.45,0,1.54,1.61,1.61,1.61,1.61,1.61,1.61,1.61,1.61,246.77,246.95000000000002,247.1,247.22,247.35,247.47,247.58,247.68,247.93,28.97,28.64,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A +2012,8,7,9,30,101450,100300,99190,74.64,0,1.47,1.52,1.52,1.51,1.51,1.5,1.49,1.49,1.47,249.27,249.34,249.56,249.76000000000002,249.93,250.08,250.24,250.39000000000001,250.66,28.900000000000002,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A +2012,8,7,10,30,101460,100310,99210,75.29,0,1.71,1.78,1.78,1.78,1.78,1.78,1.78,1.77,1.76,238.27,237.8,237.63,237.46,237.3,237.14000000000001,236.99,236.86,236.58,28.85,28.51,28.34,28.150000000000002,27.96,27.77,27.57,27.39,27,N/A,N/A +2012,8,7,11,30,101450,100300,99190,76.64,0,1.96,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.02,2.0100000000000002,2.0100000000000002,2,1.98,257.26,257.3,257.3,257.29,257.3,257.32,257.32,257.32,257.32,28.72,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,8,7,12,30,101470,100320,99210,78.57000000000001,0,1.6400000000000001,1.68,1.68,1.67,1.6600000000000001,1.6500000000000001,1.6400000000000001,1.6300000000000001,1.61,309.82,309.82,309.66,309.51,309.35,309.19,309.03000000000003,308.88,308.56,28.650000000000002,28.310000000000002,28.13,27.94,27.75,27.560000000000002,27.36,27.18,26.79,N/A,N/A +2012,8,7,13,30,101480,100340,99230,81.87,0,2.5500000000000003,2.5300000000000002,2.47,2.4,2.33,2.2600000000000002,2.2,2.13,2,319.27,319.7,319.87,320.06,320.25,320.44,320.67,320.89,321.40000000000003,28.34,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.05,26.86,26.490000000000002,N/A,N/A +2012,8,7,14,30,101510,100360,99250,81.79,0,1.68,1.68,1.6600000000000001,1.6300000000000001,1.6,1.57,1.54,1.5,1.44,303.3,303.02,302.96,302.89,302.83,302.77,302.69,302.62,302.45,28.29,27.93,27.75,27.560000000000002,27.36,27.18,26.98,26.8,26.42,N/A,N/A +2012,8,7,15,30,101510,100370,99260,81.92,0,1.3800000000000001,1.37,1.34,1.3,1.27,1.24,1.2,1.17,1.09,304.74,305.27,305.58,305.91,306.22,306.51,306.85,307.18,307.96,28.3,27.93,27.75,27.560000000000002,27.36,27.18,26.98,26.8,26.42,N/A,N/A +2012,8,7,16,30,101510,100360,99260,81.13,0,1.1400000000000001,1.1500000000000001,1.1400000000000001,1.12,1.1,1.09,1.07,1.05,1.01,293.96,294.03000000000003,294.11,294.21,294.3,294.38,294.44,294.49,294.52,28.45,28.09,27.91,27.72,27.52,27.330000000000002,27.14,26.96,26.580000000000002,N/A,N/A +2012,8,7,17,30,101480,100340,99230,80.64,0,1.25,1.27,1.25,1.24,1.23,1.21,1.2,1.18,1.1500000000000001,235.61,235.39000000000001,235.13,234.86,234.55,234.22,233.83,233.44,232.36,28.64,28.27,28.09,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.77,N/A,N/A +2012,8,7,18,30,101470,100320,99220,79.29,0,2.42,2.5,2.49,2.48,2.46,2.44,2.41,2.39,2.33,212.72,212.29,212.1,211.89000000000001,211.66,211.41,211.11,210.82,210,28.88,28.52,28.34,28.150000000000002,27.96,27.78,27.59,27.41,27.05,N/A,N/A +2012,8,7,19,30,101430,100290,99180,78,0,2.82,2.92,2.92,2.91,2.89,2.87,2.85,2.83,2.77,209.67000000000002,209.33,209.05,208.74,208.44,208.15,207.8,207.44,206.63,29.09,28.72,28.55,28.35,28.16,27.97,27.78,27.6,27.23,N/A,N/A +2012,8,7,20,30,101400,100260,99160,77.74,0,3.46,3.61,3.62,3.62,3.61,3.6,3.59,3.5700000000000003,3.5300000000000002,197.8,197.41,197.22,197,196.78,196.56,196.31,196.06,195.46,29.22,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.35,N/A,N/A +2012,8,7,21,30,101350,100210,99100,77.15,0,3.0100000000000002,3.15,3.16,3.16,3.16,3.15,3.14,3.13,3.11,201.54,201.01,200.63,200.22,199.83,199.46,199.03,198.62,197.65,29.27,28.92,28.75,28.55,28.36,28.17,27.98,27.8,27.42,N/A,N/A +2012,8,7,22,30,101330,100190,99080,78.72,0,4.0600000000000005,4.28,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.28,4.25,196.77,196.51,196.34,196.16,195.97,195.78,195.56,195.35,194.85,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.78,27.400000000000002,N/A,N/A +2012,8,7,23,30,101290,100150,99040,77.60000000000001,0,3.94,4.15,4.17,4.18,4.17,4.16,4.14,4.13,4.08,184.65,184.77,184.8,184.82,184.82,184.81,184.79,184.76,184.63,29.23,28.91,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,8,0,30,101290,100150,99040,79.03,0,4.55,4.83,4.86,4.87,4.87,4.86,4.8500000000000005,4.84,4.8100000000000005,175.74,175.70000000000002,175.70000000000002,175.67000000000002,175.61,175.53,175.41,175.29,174.84,29.14,28.810000000000002,28.650000000000002,28.45,28.26,28.080000000000002,27.89,27.71,27.34,N/A,N/A +2012,8,8,1,30,101260,100120,99020,79.03,0,3.88,4.1,4.14,4.15,4.15,4.14,4.14,4.13,4.11,180.56,180.08,179.8,179.51,179.21,178.92000000000002,178.58,178.26,177.52,29.05,28.73,28.55,28.36,28.17,27.98,27.79,27.61,27.23,N/A,N/A +2012,8,8,2,30,101300,100160,99050,79.85000000000001,0,3.95,4.18,4.22,4.24,4.24,4.24,4.24,4.24,4.23,176.96,177.15,177.23,177.29,177.32,177.35,177.36,177.37,177.31,29.02,28.69,28.52,28.330000000000002,28.14,27.95,27.75,27.57,27.19,N/A,N/A +2012,8,8,3,30,101320,100170,99070,78.61,0,3.5500000000000003,3.7600000000000002,3.79,3.81,3.81,3.81,3.8200000000000003,3.8200000000000003,3.81,162.04,162.31,162.47,162.62,162.75,162.86,162.97,163.08,163.27,29.03,28.7,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.580000000000002,27.2,N/A,N/A +2012,8,8,4,30,101310,100170,99060,80.47,0,4.12,4.39,4.43,4.46,4.47,4.48,4.48,4.48,4.48,179.16,178.84,178.67000000000002,178.51,178.35,178.21,178.07,177.93,177.66,28.94,28.6,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A +2012,8,8,5,30,101320,100180,99070,79.74,0,3.85,4.09,4.14,4.16,4.17,4.18,4.18,4.19,4.19,169.46,169.53,169.5,169.49,169.47,169.46,169.45000000000002,169.43,169.41,28.92,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.64,27.45,27.07,N/A,N/A +2012,8,8,6,30,101340,100200,99090,80.93,0,3.38,3.56,3.6,3.61,3.62,3.63,3.63,3.63,3.64,182.07,182.11,182.13,182.13,182.13,182.13,182.13,182.12,182.09,28.84,28.5,28.32,28.12,27.93,27.75,27.55,27.36,26.990000000000002,N/A,N/A +2012,8,8,7,30,101400,100250,99150,81.52,0,2.88,3.0700000000000003,3.11,3.14,3.16,3.18,3.2,3.22,3.25,187.11,186.02,185.42000000000002,184.83,184.31,183.8,183.31,182.86,181.93,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,8,8,8,30,101390,100250,99140,80.65,0,3.0100000000000002,3.18,3.21,3.22,3.23,3.24,3.25,3.25,3.2600000000000002,177.42000000000002,177.14000000000001,177,176.87,176.75,176.63,176.53,176.43,176.22,28.86,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A +2012,8,8,9,30,101420,100270,99170,79.69,0,2.29,2.4,2.41,2.42,2.42,2.42,2.43,2.43,2.42,177.33,177.33,177.29,177.24,177.19,177.14000000000001,177.07,177.01,176.91,28.86,28.52,28.35,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.01,N/A,N/A +2012,8,8,10,30,101450,100300,99200,80.15,0,0.9,0.92,0.93,0.93,0.9400000000000001,0.9400000000000001,0.9400000000000001,0.9500000000000001,0.96,202.48000000000002,201.92000000000002,201.41,200.91,200.46,200.03,199.61,199.21,198.29,28.8,28.46,28.29,28.09,27.900000000000002,27.72,27.52,27.330000000000002,26.96,N/A,N/A +2012,8,8,11,30,101480,100330,99230,80.53,0,0.89,0.91,0.9,0.89,0.87,0.86,0.85,0.8300000000000001,0.81,287.72,287.89,288.15000000000003,288.32,288.39,288.39,288.37,288.33,288.12,28.78,28.45,28.28,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A +2012,8,8,12,30,101450,100300,99190,86.24,19.400000000000002,4.66,4.6000000000000005,4.38,4.14,3.93,3.7600000000000002,3.66,3.59,3.5,196.35,197.46,198.13,198.86,199.45000000000002,199.92000000000002,199.9,199.83,198.92000000000002,27.09,26.8,26.72,26.66,26.63,26.6,26.52,26.45,26.23,N/A,N/A +2012,8,8,13,30,101530,100380,99270,79.23,0,1.83,1.85,1.83,1.79,1.8,1.84,1.8800000000000001,1.93,1.96,205.09,207.72,209.95000000000002,213.34,217.74,223.29,225.73000000000002,226.77,224.06,28.18,27.88,27.75,27.62,27.580000000000002,27.6,27.54,27.45,27.23,N/A,N/A +2012,8,8,14,30,101550,100400,99290,86.58,0,4.57,4.54,4.37,4.14,3.85,3.52,3.12,2.75,2.15,208.46,208.74,208.88,209.12,209.67000000000002,210.43,212.81,215.4,223.33,27.52,27.150000000000002,26.990000000000002,26.830000000000002,26.69,26.560000000000002,26.45,26.35,26.17,N/A,N/A +2012,8,8,15,30,101540,100390,99280,77.13,0,2.69,2.6,2.48,2.31,2.1,1.87,1.47,1.1300000000000001,0.12,209.1,208.48000000000002,208.09,207.57,206.79,205.92000000000002,203.99,202.27,55.76,28.3,27.93,27.75,27.55,27.36,27.17,26.98,26.8,26.53,N/A,N/A +2012,8,8,16,30,101550,100410,99300,76.91,0,1.58,1.61,1.58,1.55,1.53,1.5,1.48,1.45,1.41,175.97,174.81,174.07,173.22,172.3,171.32,170.16,169.02,166.04,28.7,28.35,28.17,27.97,27.79,27.6,27.400000000000002,27.22,26.84,N/A,N/A +2012,8,8,17,30,101550,100400,99290,78.65,0,2.05,2.16,2.19,2.2,2.22,2.23,2.25,2.2600000000000002,2.29,149.20000000000002,149.91,150.34,150.77,151.18,151.6,152.06,152.52,153.53,28.8,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.94,N/A,N/A +2012,8,8,18,30,101530,100390,99280,78.9,0,2.13,2.22,2.23,2.24,2.24,2.24,2.24,2.23,2.23,146.74,146.61,146.55,146.5,146.46,146.41,146.38,146.34,146.29,28.96,28.59,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A +2012,8,8,19,30,101520,100380,99270,79.73,0,2.99,3.12,3.14,3.15,3.15,3.16,3.16,3.16,3.15,142.83,142.65,142.54,142.41,142.3,142.19,142.08,141.98,141.74,29.05,28.68,28.5,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A +2012,8,8,20,30,101450,100300,99200,79.74,0,2.45,2.5500000000000003,2.57,2.57,2.58,2.58,2.58,2.57,2.57,164.14000000000001,163.49,163.16,162.81,162.5,162.19,161.87,161.57,160.93,29.080000000000002,28.71,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.19,N/A,N/A +2012,8,8,21,30,101400,100260,99160,73.01,0,3.14,3.29,3.31,3.31,3.31,3.31,3.3000000000000003,3.29,3.2800000000000002,156.98,157.31,157.46,157.61,157.76,157.89000000000001,158.03,158.16,158.44,29.45,29.1,28.93,28.73,28.54,28.35,28.150000000000002,27.97,27.59,N/A,N/A +2012,8,8,22,30,101400,100260,99160,79.16,0,4.11,4.42,4.49,4.54,4.58,4.61,4.64,4.66,4.7,163.74,163.85,163.89000000000001,163.94,163.98,164.04,164.1,164.15,164.27,29.29,28.95,28.78,28.580000000000002,28.39,28.2,28,27.810000000000002,27.43,N/A,N/A +2012,8,8,23,30,101380,100230,99130,78.24,0,4.93,5.2700000000000005,5.33,5.37,5.39,5.4,5.42,5.43,5.44,169.89000000000001,169.67000000000002,169.52,169.35,169.20000000000002,169.04,168.88,168.72,168.38,29.310000000000002,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A +2012,8,9,0,30,101360,100210,99110,79.78,0,4.62,4.94,5.01,5.04,5.0600000000000005,5.08,5.08,5.09,5.09,170.66,170.61,170.68,170.73,170.77,170.8,170.83,170.86,170.9,29.16,28.82,28.650000000000002,28.45,28.26,28.080000000000002,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,9,1,30,101330,100190,99090,77.92,0,4.47,4.7700000000000005,4.82,4.84,4.8500000000000005,4.86,4.86,4.86,4.8500000000000005,169.31,169.16,169.08,169.02,168.97,168.91,168.86,168.8,168.68,29.19,28.87,28.69,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.36,N/A,N/A +2012,8,9,2,30,101350,100210,99110,81.29,0,4.5600000000000005,4.86,4.93,4.96,4.98,5,5.01,5.0200000000000005,5.03,169.97,170.05,170.06,170.07,170.08,170.08,170.07,170.07,170.06,28.96,28.62,28.45,28.26,28.07,27.88,27.69,27.5,27.13,N/A,N/A +2012,8,9,3,30,101350,100200,99100,82.54,0,5.46,5.8100000000000005,5.87,5.88,5.88,5.87,5.8500000000000005,5.84,5.79,176.46,176.06,175.78,175.49,175.24,174.99,174.75,174.52,174.08,28.93,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.62,27.43,27.05,N/A,N/A +2012,8,9,4,30,101340,100190,99090,83.95,0,5.17,5.45,5.48,5.48,5.47,5.44,5.42,5.39,5.33,169.06,169.89000000000001,170.33,170.75,171.14000000000001,171.54,171.95000000000002,172.34,173.21,28.8,28.46,28.28,28.09,27.900000000000002,27.72,27.53,27.36,26.990000000000002,N/A,N/A +2012,8,9,5,30,101370,100230,99120,85.13,0,4.65,4.96,5.03,5.0600000000000005,5.09,5.11,5.12,5.13,5.14,179.07,178.87,178.74,178.61,178.48,178.35,178.23,178.11,177.87,28.7,28.35,28.17,27.97,27.78,27.59,27.39,27.2,26.82,N/A,N/A +2012,8,9,6,30,101390,100250,99140,84.51,0,4.89,5.19,5.24,5.25,5.26,5.25,5.24,5.22,5.19,183.19,183.31,183.33,183.34,183.35,183.35,183.33,183.32,183.3,28.86,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,8,9,7,30,101410,100260,99160,82.32000000000001,0,3.89,4.13,4.17,4.2,4.21,4.22,4.22,4.23,4.23,193.52,193.45000000000002,193.43,193.43,193.43,193.43,193.45000000000002,193.49,193.56,28.92,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.62,27.44,27.060000000000002,N/A,N/A +2012,8,9,8,30,101430,100290,99180,76.7,0,3.46,3.68,3.73,3.7600000000000002,3.79,3.81,3.83,3.85,3.88,199.67000000000002,198.96,198.59,198.25,197.96,197.68,197.42000000000002,197.19,196.74,29.14,28.810000000000002,28.64,28.44,28.25,28.060000000000002,27.87,27.68,27.3,N/A,N/A +2012,8,9,9,30,101450,100310,99200,78.55,0,3.8200000000000003,4.08,4.14,4.18,4.21,4.23,4.25,4.2700000000000005,4.29,206.44,206.31,206.1,205.91,205.73000000000002,205.57,205.4,205.24,204.93,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A +2012,8,9,10,30,101450,100310,99200,80.81,0,4.51,4.79,4.8500000000000005,4.87,4.89,4.9,4.91,4.92,4.92,210.43,210.31,210.19,210.07,209.96,209.85,209.74,209.64000000000001,209.42000000000002,28.91,28.560000000000002,28.39,28.19,28,27.8,27.61,27.42,27.04,N/A,N/A +2012,8,9,11,30,101490,100350,99240,83.35000000000001,0,3.93,4.17,4.23,4.26,4.29,4.3100000000000005,4.32,4.33,4.3500000000000005,228.98000000000002,228.44,228.05,227.68,227.35,227.04,226.73000000000002,226.44,225.85,28.86,28.51,28.34,28.14,27.95,27.76,27.560000000000002,27.38,26.990000000000002,N/A,N/A +2012,8,9,12,30,101490,100350,99240,81.38,0,3.81,3.99,4.03,4.04,4.05,4.05,4.0600000000000005,4.0600000000000005,4.0600000000000005,253.22,252.07,251.29,250.52,249.82,249.13,248.44,247.75,246.36,28.98,28.66,28.490000000000002,28.29,28.11,27.92,27.73,27.55,27.18,N/A,N/A +2012,8,9,13,30,101530,100380,99270,88.97,7,9.38,9.88,9.85,9.72,9.58,9.42,9.24,9.07,8.72,259.72,259.27,258.87,258.26,257.53000000000003,256.69,255.63,254.57,252.02,27.72,27.3,27.14,26.97,26.810000000000002,26.67,26.52,26.39,26.12,N/A,N/A +2012,8,9,14,30,101560,100410,99300,84.53,0,2.47,2.66,2.75,2.87,3.0300000000000002,3.24,3.49,3.7600000000000002,4.1,270.38,265.53000000000003,262.8,259.43,255.46,250.91,245.74,240.39000000000001,232.73000000000002,27.85,27.51,27.36,27.21,27.1,27,26.94,26.900000000000002,26.740000000000002,N/A,N/A +2012,8,9,15,30,101550,100400,99300,82.8,2.2,2.04,2.29,2.42,2.57,2.75,2.95,3.17,3.4,3.8200000000000003,262.25,257.49,254.74,251.94,249.24,246.44,243.55,240.66,235.48000000000002,28.22,27.89,27.740000000000002,27.57,27.43,27.29,27.150000000000002,27.02,26.740000000000002,N/A,N/A +2012,8,9,16,30,101530,100380,99270,88.42,0,5.32,5.43,5.38,5.2700000000000005,5.17,5.07,4.98,4.91,4.74,244.69,244,243.38,242.55,241.59,240.47,238.94,237.31,233.34,27.42,27.04,26.89,26.740000000000002,26.61,26.490000000000002,26.400000000000002,26.32,26.17,N/A,N/A +2012,8,9,17,30,101540,100390,99290,79.06,0,2.16,2.32,2.38,2.45,2.54,2.64,2.8000000000000003,2.99,3.7600000000000002,223.54,222.88,222.76,222.57,222.32,221.99,221.39000000000001,220.65,217.53,28.48,28.12,27.95,27.76,27.59,27.41,27.25,27.1,26.89,N/A,N/A +2012,8,9,18,30,101500,100360,99250,80.99,0,3.34,3.52,3.56,3.59,3.61,3.64,3.67,3.7,3.81,218.18,218.31,218.3,218.32,218.35,218.4,218.49,218.59,218.93,28.830000000000002,28.46,28.29,28.09,27.900000000000002,27.72,27.53,27.35,26.990000000000002,N/A,N/A +2012,8,9,19,30,101480,100340,99230,81.52,0,4.33,4.63,4.7,4.75,4.79,4.82,4.8500000000000005,4.87,4.92,204.45000000000002,204.65,204.79,204.93,205.05,205.16,205.29,205.41,205.66,29.19,28.830000000000002,28.66,28.45,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,9,20,30,101410,100270,99170,79.10000000000001,0,6.34,6.84,6.93,6.98,7.01,7.03,7.04,7.04,7.05,203.09,203.21,203.29,203.36,203.43,203.49,203.55,203.62,203.75,29.44,29.09,28.92,28.72,28.54,28.34,28.150000000000002,27.97,27.59,N/A,N/A +2012,8,9,21,30,101360,100230,99120,81.45,0,6.83,7.38,7.5,7.5600000000000005,7.59,7.61,7.63,7.640000000000001,7.640000000000001,201.87,201.85,201.89000000000001,201.95000000000002,202,202.07,202.15,202.23000000000002,202.45000000000002,29.41,29.080000000000002,28.92,28.72,28.54,28.35,28.16,27.98,27.61,N/A,N/A +2012,8,9,22,30,101330,100190,99080,81,0,6.5,7.01,7.1000000000000005,7.140000000000001,7.16,7.17,7.16,7.15,7.11,202.01,202.02,202.11,202.19,202.26,202.32,202.39000000000001,202.45000000000002,202.59,29.36,29.03,28.86,28.66,28.48,28.29,28.1,27.92,27.55,N/A,N/A +2012,8,9,23,30,101330,100190,99090,81.94,0,5.45,5.8500000000000005,5.93,5.97,5.99,6,6.01,6,5.99,183.21,183.42000000000002,183.57,183.68,183.75,183.81,183.86,183.89000000000001,183.96,29.29,28.95,28.78,28.580000000000002,28.400000000000002,28.21,28.01,27.830000000000002,27.45,N/A,N/A +2012,8,10,0,30,101250,100110,99010,83.81,0,5.14,5.5,5.55,5.57,5.58,5.58,5.58,5.57,5.5600000000000005,205.53,205.68,205.71,205.77,205.83,205.9,205.97,206.04,206.24,29.14,28.8,28.63,28.44,28.25,28.060000000000002,27.88,27.7,27.34,N/A,N/A +2012,8,10,1,30,101230,100090,98990,83.21000000000001,0,7.13,7.71,7.82,7.87,7.890000000000001,7.9,7.9,7.9,7.87,205.41,205.56,205.63,205.71,205.78,205.86,205.96,206.05,206.29,29.26,28.92,28.75,28.55,28.37,28.19,27.990000000000002,27.810000000000002,27.45,N/A,N/A +2012,8,10,2,30,101230,100100,98990,82.96000000000001,0,6.72,7.2700000000000005,7.38,7.43,7.46,7.47,7.48,7.48,7.46,207.37,207.43,207.49,207.55,207.61,207.68,207.76,207.83,208.02,29.310000000000002,28.98,28.810000000000002,28.62,28.43,28.25,28.060000000000002,27.88,27.51,N/A,N/A +2012,8,10,3,30,101250,100110,99010,82.95,0,6.3100000000000005,6.84,6.94,6.99,7.03,7.04,7.04,7.04,7.03,204.70000000000002,204.92000000000002,205.04,205.14000000000001,205.22,205.29,205.35,205.4,205.52,29.330000000000002,28.990000000000002,28.830000000000002,28.63,28.44,28.25,28.060000000000002,27.87,27.5,N/A,N/A +2012,8,10,4,30,101230,100090,98990,80.83,0,5.25,5.68,5.76,5.8100000000000005,5.84,5.8500000000000005,5.86,5.87,5.89,225.81,225.93,225.94,225.94,225.94,225.93,225.93,225.94,226,29.400000000000002,29.07,28.900000000000002,28.71,28.52,28.330000000000002,28.14,27.96,27.580000000000002,N/A,N/A +2012,8,10,5,30,101240,100100,98990,83.74,0,6.6000000000000005,7.11,7.18,7.2,7.19,7.16,7.12,7.07,6.94,217.67000000000002,217.66,217.61,217.54,217.47,217.39000000000001,217.28,217.18,216.93,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.95,27.76,27.38,N/A,N/A +2012,8,10,6,30,101220,100090,98980,75.09,0,6.5200000000000005,7.08,7.18,7.22,7.24,7.25,7.25,7.24,7.23,219.24,219.35,219.4,219.43,219.46,219.5,219.53,219.57,219.67000000000002,29.76,29.44,29.28,29.080000000000002,28.900000000000002,28.71,28.52,28.34,27.97,N/A,N/A +2012,8,10,7,30,101230,100090,98990,74.52,0,7.78,8.49,8.63,8.700000000000001,8.75,8.77,8.790000000000001,8.8,8.82,220.74,220.66,220.62,220.6,220.6,220.61,220.63,220.66,220.72,29.78,29.47,29.3,29.11,28.92,28.73,28.54,28.35,27.97,N/A,N/A +2012,8,10,8,30,101250,100110,99010,74.17,0,7.15,7.8,7.930000000000001,8,8.05,8.08,8.11,8.13,8.17,223.11,222.83,222.73000000000002,222.64000000000001,222.59,222.55,222.52,222.51,222.5,29.85,29.55,29.39,29.2,29.02,28.830000000000002,28.650000000000002,28.47,28.1,N/A,N/A +2012,8,10,9,30,101230,100090,98990,74.76,0,7.67,8.36,8.5,8.56,8.6,8.620000000000001,8.63,8.63,8.620000000000001,230.95000000000002,230.98000000000002,230.97,230.93,230.88,230.82,230.75,230.68,230.51,29.67,29.35,29.19,28.990000000000002,28.8,28.61,28.41,28.23,27.84,N/A,N/A +2012,8,10,10,30,101240,100110,99000,75.83,0,6.92,7.57,7.7,7.7700000000000005,7.82,7.84,7.86,7.86,7.8500000000000005,231.35,231.51,231.55,231.58,231.59,231.61,231.61,231.6,231.58,29.63,29.310000000000002,29.150000000000002,28.95,28.76,28.57,28.38,28.19,27.810000000000002,N/A,N/A +2012,8,10,11,30,101280,100140,99030,76.49,0,6.7,7.28,7.41,7.47,7.51,7.54,7.55,7.5600000000000005,7.5600000000000005,235.85,235.82,235.77,235.71,235.65,235.6,235.54,235.48000000000002,235.37,29.53,29.21,29.04,28.84,28.66,28.47,28.27,28.09,27.71,N/A,N/A +2012,8,10,12,30,101270,100130,99030,74.82000000000001,0,6.82,7.45,7.58,7.66,7.71,7.74,7.76,7.78,7.79,245.62,245.32,245.18,245.04,244.9,244.77,244.64000000000001,244.51,244.27,29.63,29.330000000000002,29.16,28.97,28.78,28.59,28.400000000000002,28.21,27.830000000000002,N/A,N/A +2012,8,10,13,30,101310,100170,99070,73.48,0,6.41,6.99,7.1000000000000005,7.17,7.21,7.24,7.26,7.2700000000000005,7.28,248.28,248.23000000000002,248.17000000000002,248.1,248.04,247.98000000000002,247.93,247.87,247.76000000000002,29.77,29.46,29.3,29.1,28.91,28.72,28.52,28.34,27.96,N/A,N/A +2012,8,10,14,30,101350,100210,99110,72.77,0,6.1000000000000005,6.61,6.72,6.78,6.83,6.86,6.890000000000001,6.91,6.94,248.83,248.78,248.75,248.73000000000002,248.73000000000002,248.72,248.73000000000002,248.74,248.77,29.68,29.37,29.2,29.01,28.82,28.63,28.44,28.26,27.88,N/A,N/A +2012,8,10,15,30,101350,100210,99110,77.06,0,6.98,7.53,7.63,7.67,7.69,7.7,7.7,7.7,7.68,244.05,244.15,244.28,244.4,244.52,244.64000000000001,244.76,244.87,245.08,29.45,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A +2012,8,10,16,30,101360,100220,99120,73.46000000000001,0,6.16,6.69,6.8100000000000005,6.88,6.92,6.96,6.99,7.0200000000000005,7.07,233.82,233.89000000000001,233.93,233.97,234,234.02,234.05,234.09,234.16,29.740000000000002,29.42,29.26,29.060000000000002,28.88,28.69,28.5,28.32,27.94,N/A,N/A +2012,8,10,17,30,101330,100190,99080,75.02,0,6.78,7.34,7.44,7.48,7.51,7.5200000000000005,7.51,7.51,7.48,219.68,219.91,220.07,220.21,220.33,220.46,220.58,220.69,220.94,29.75,29.43,29.27,29.07,28.88,28.69,28.5,28.32,27.94,N/A,N/A +2012,8,10,18,30,101290,100150,99050,76.52,0,7.390000000000001,8.01,8.13,8.18,8.21,8.22,8.22,8.21,8.19,212.41,212.69,212.87,213.05,213.23000000000002,213.4,213.59,213.77,214.16,29.650000000000002,29.32,29.16,28.96,28.77,28.59,28.400000000000002,28.22,27.84,N/A,N/A +2012,8,10,19,30,101270,100140,99030,75.45,0,8.19,8.94,9.1,9.17,9.22,9.24,9.25,9.25,9.23,206.08,206.25,206.37,206.49,206.62,206.73000000000002,206.86,206.99,207.3,29.78,29.46,29.29,29.1,28.91,28.73,28.54,28.36,27.990000000000002,N/A,N/A +2012,8,10,20,30,101220,100080,98980,77.01,0,8.31,9.07,9.22,9.290000000000001,9.33,9.34,9.34,9.34,9.3,213.17000000000002,213.24,213.31,213.39000000000001,213.45000000000002,213.53,213.6,213.67000000000002,213.85,29.64,29.32,29.150000000000002,28.96,28.77,28.580000000000002,28.400000000000002,28.21,27.84,N/A,N/A +2012,8,10,21,30,101180,100040,98940,77.05,0,8.71,9.53,9.700000000000001,9.78,9.82,9.85,9.85,9.85,9.83,213.19,213.33,213.43,213.51,213.6,213.69,213.77,213.84,214.04,29.650000000000002,29.330000000000002,29.16,28.97,28.78,28.59,28.400000000000002,28.22,27.85,N/A,N/A +2012,8,10,22,30,101150,100010,98910,76.42,0,8.5,9.3,9.47,9.55,9.6,9.620000000000001,9.63,9.64,9.620000000000001,210.58,210.61,210.67000000000002,210.71,210.74,210.76,210.77,210.77,210.76,29.66,29.34,29.18,28.98,28.8,28.61,28.42,28.23,27.86,N/A,N/A +2012,8,10,23,30,101100,99960,98860,74.36,0,8.94,9.8,9.97,10.05,10.09,10.11,10.11,10.1,10.06,212.23000000000002,212.33,212.37,212.39000000000001,212.42000000000002,212.43,212.45000000000002,212.47,212.49,29.76,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.98,N/A,N/A +2012,8,11,0,30,101100,99960,98860,74.95,0,8.36,9.120000000000001,9.27,9.34,9.38,9.39,9.39,9.38,9.35,212.32,212.33,212.38,212.43,212.48000000000002,212.53,212.59,212.65,212.8,29.7,29.400000000000002,29.240000000000002,29.04,28.86,28.67,28.490000000000002,28.310000000000002,27.94,N/A,N/A +2012,8,11,1,30,101070,99930,98830,69.76,0,8.76,9.57,9.74,9.8,9.84,9.84,9.83,9.81,9.74,208.9,208.9,208.88,208.84,208.8,208.75,208.67000000000002,208.58,208.32,29.94,29.67,29.51,29.32,29.13,28.95,28.76,28.580000000000002,28.2,N/A,N/A +2012,8,11,2,30,101090,99960,98850,72.52,0,8.06,8.77,8.9,8.94,8.97,8.97,8.96,8.950000000000001,8.9,212.95000000000002,212.92000000000002,212.85,212.79,212.73000000000002,212.68,212.62,212.56,212.42000000000002,29.87,29.59,29.43,29.240000000000002,29.060000000000002,28.88,28.69,28.51,28.16,N/A,N/A +2012,8,11,3,30,101110,99970,98870,74.96000000000001,0,8.69,9.47,9.63,9.68,9.71,9.72,9.700000000000001,9.69,9.63,208.57,208.63,208.59,208.55,208.5,208.46,208.4,208.34,208.19,29.73,29.43,29.27,29.080000000000002,28.89,28.71,28.52,28.34,27.97,N/A,N/A +2012,8,11,4,30,101130,100000,98890,72.44,0,7.84,8.51,8.64,8.69,8.72,8.73,8.72,8.700000000000001,8.66,210.42000000000002,210.17000000000002,210.06,209.93,209.81,209.67000000000002,209.53,209.38,209.03,29.79,29.51,29.35,29.150000000000002,28.97,28.79,28.6,28.41,28.04,N/A,N/A +2012,8,11,5,30,101110,99980,98880,70.11,0,8.23,9.02,9.17,9.25,9.290000000000001,9.31,9.32,9.32,9.3,198.49,198.74,198.84,198.92000000000002,198.98000000000002,199.04,199.09,199.14000000000001,199.24,29.89,29.6,29.44,29.25,29.060000000000002,28.88,28.69,28.51,28.14,N/A,N/A +2012,8,11,6,30,101160,100030,98920,65.78,0,8.2,8.96,9.120000000000001,9.19,9.23,9.26,9.27,9.28,9.27,213.70000000000002,213.71,213.78,213.88,213.97,214.06,214.16,214.26,214.45000000000002,30.02,29.75,29.6,29.41,29.23,29.04,28.85,28.66,28.29,N/A,N/A +2012,8,11,7,30,101220,100080,98980,73.56,0,7.05,7.72,7.86,7.94,7.99,8.03,8.05,8.07,8.08,214.84,214.83,214.82,214.79,214.76,214.72,214.67000000000002,214.64000000000001,214.55,29.59,29.28,29.11,28.91,28.73,28.54,28.34,28.16,27.78,N/A,N/A +2012,8,11,8,30,101230,100090,98980,72.27,0,6.98,7.59,7.72,7.78,7.82,7.8500000000000005,7.86,7.88,7.88,221.27,221.22,221.21,221.21,221.21,221.21,221.20000000000002,221.20000000000002,221.21,29.560000000000002,29.25,29.09,28.89,28.7,28.52,28.330000000000002,28.14,27.76,N/A,N/A +2012,8,11,9,30,101220,100080,98980,76.60000000000001,0,6.99,7.61,7.73,7.8,7.8500000000000005,7.87,7.890000000000001,7.9,7.91,222.95000000000002,223.14000000000001,223.27,223.39000000000001,223.49,223.59,223.68,223.77,223.94,29.38,29.05,28.88,28.68,28.490000000000002,28.3,28.11,27.92,27.54,N/A,N/A +2012,8,11,10,30,101240,100100,99000,79.9,0,7.4,8.05,8.19,8.27,8.32,8.35,8.370000000000001,8.38,8.39,233.05,232.86,232.73000000000002,232.59,232.46,232.32,232.19,232.07,231.79,29.19,28.84,28.67,28.47,28.28,28.09,27.89,27.71,27.32,N/A,N/A +2012,8,11,11,30,101290,100150,99050,80.60000000000001,0,6.57,7.12,7.24,7.3100000000000005,7.3500000000000005,7.390000000000001,7.41,7.43,7.45,236.83,237.16,237.23000000000002,237.27,237.3,237.31,237.32,237.31,237.28,29.150000000000002,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A +2012,8,11,12,30,101320,100180,99080,79.96000000000001,0,5.74,6.24,6.3500000000000005,6.43,6.48,6.5200000000000005,6.55,6.57,6.6000000000000005,243.88,243.85,243.89000000000001,243.93,243.96,244,244.04,244.07,244.15,29.150000000000002,28.8,28.62,28.42,28.22,28.03,27.830000000000002,27.64,27.26,N/A,N/A +2012,8,11,13,30,101340,100200,99090,78.10000000000001,0,6.38,6.82,6.890000000000001,6.91,6.91,6.9,6.88,6.86,6.8,256.87,257.03000000000003,257.12,257.18,257.25,257.31,257.38,257.45,257.62,29.19,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.330000000000002,N/A,N/A +2012,8,11,14,30,101380,100240,99140,83.09,0,5.53,5.89,5.95,5.97,5.98,5.98,5.98,5.98,5.97,271.59000000000003,270.69,270.11,269.52,269,268.5,268.01,267.57,266.69,29,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.7,27.52,27.14,N/A,N/A +2012,8,11,15,30,101400,100260,99150,81.05,0,5.2,5.53,5.59,5.62,5.63,5.64,5.64,5.63,5.62,266.12,265.73,265.52,265.31,265.12,264.94,264.77,264.6,264.26,28.96,28.61,28.44,28.240000000000002,28.060000000000002,27.87,27.68,27.5,27.13,N/A,N/A +2012,8,11,16,30,101410,100270,99160,78.88,0,4.5200000000000005,4.84,4.91,4.95,4.98,5.01,5.04,5.0600000000000005,5.11,245.66,245.45000000000002,245.48000000000002,245.48000000000002,245.46,245.45000000000002,245.43,245.41,245.36,29.09,28.75,28.580000000000002,28.38,28.2,28.01,27.82,27.64,27.28,N/A,N/A +2012,8,11,17,30,101370,100230,99120,79.57000000000001,0,4.43,4.7,4.75,4.7700000000000005,4.79,4.79,4.78,4.7700000000000005,4.75,234.1,234.51,234.68,234.88,235.1,235.33,235.63,235.96,236.92000000000002,29.23,28.89,28.72,28.53,28.35,28.17,27.990000000000002,27.810000000000002,27.48,N/A,N/A +2012,8,11,18,30,101350,100210,99110,75.78,0,3.48,3.65,3.67,3.66,3.64,3.62,3.59,3.5500000000000003,3.45,215.43,215.89000000000001,216.16,216.45000000000002,216.74,217.04,217.38,217.72,218.64000000000001,29.64,29.310000000000002,29.150000000000002,28.95,28.77,28.59,28.41,28.23,27.89,N/A,N/A +2012,8,11,19,30,101340,100200,99100,76.61,0,3.63,3.75,3.74,3.69,3.64,3.59,3.52,3.46,3.29,213.48000000000002,213.42000000000002,213.44,213.45000000000002,213.44,213.42000000000002,213.39000000000001,213.36,213.21,29.73,29.39,29.23,29.03,28.85,28.66,28.48,28.3,27.95,N/A,N/A +2012,8,11,20,30,101330,100200,99090,77.47,0,4.61,4.87,4.89,4.88,4.86,4.84,4.8,4.7700000000000005,4.69,182.12,181.98,181.77,181.53,181.3,181.05,180.76,180.48,179.76,29.8,29.47,29.3,29.11,28.92,28.740000000000002,28.55,28.37,28,N/A,N/A +2012,8,11,21,30,101260,100120,99020,79.15,0,6.34,6.8,6.87,6.88,6.88,6.87,6.8500000000000005,6.82,6.75,195.11,195.07,195.02,194.95000000000002,194.9,194.84,194.77,194.71,194.54,29.63,29.310000000000002,29.14,28.94,28.76,28.57,28.38,28.19,27.830000000000002,N/A,N/A +2012,8,11,22,30,101240,100100,98990,79.83,0,6.48,6.97,7.0600000000000005,7.08,7.09,7.08,7.0600000000000005,7.04,6.97,206.03,206.02,205.94,205.84,205.75,205.65,205.54,205.43,205.16,29.54,29.22,29.060000000000002,28.86,28.67,28.48,28.3,28.11,27.740000000000002,N/A,N/A +2012,8,11,23,30,101200,100060,98960,81.32000000000001,0,6.890000000000001,7.44,7.54,7.57,7.58,7.58,7.57,7.55,7.49,209.75,209.68,209.65,209.61,209.57,209.52,209.46,209.4,209.26,29.42,29.09,28.92,28.72,28.54,28.35,28.150000000000002,27.97,27.59,N/A,N/A +2012,8,12,0,30,101250,100110,99010,80.88,0,6.16,6.640000000000001,6.72,6.75,6.76,6.76,6.75,6.74,6.7,200.85,200.82,200.76,200.68,200.59,200.51,200.39000000000001,200.28,199.98000000000002,29.400000000000002,29.07,28.91,28.71,28.52,28.34,28.150000000000002,27.97,27.6,N/A,N/A +2012,8,12,1,30,101210,100070,98960,79.59,0,6.5600000000000005,7.07,7.16,7.18,7.19,7.19,7.17,7.140000000000001,7.08,209.51,209.49,209.41,209.32,209.22,209.13,209.02,208.9,208.6,29.39,29.07,28.900000000000002,28.71,28.52,28.34,28.150000000000002,27.97,27.61,N/A,N/A +2012,8,12,2,30,101280,100140,99030,80.71000000000001,0,6.23,6.72,6.8100000000000005,6.8500000000000005,6.86,6.87,6.87,6.86,6.84,204.77,204.65,204.6,204.54,204.47,204.39000000000001,204.3,204.20000000000002,203.97,29.34,29.01,28.84,28.64,28.46,28.27,28.080000000000002,27.900000000000002,27.53,N/A,N/A +2012,8,12,3,30,101270,100130,99030,81.7,0,6.95,7.51,7.61,7.66,7.68,7.69,7.69,7.68,7.65,199.75,199.66,199.58,199.51,199.45000000000002,199.38,199.31,199.23000000000002,199.08,29.240000000000002,28.900000000000002,28.73,28.53,28.35,28.16,27.97,27.79,27.42,N/A,N/A +2012,8,12,4,30,101240,100100,98990,79.89,0,6.58,7.12,7.23,7.28,7.3100000000000005,7.33,7.34,7.34,7.34,202.26,202.16,202.13,202.1,202.07,202.03,201.99,201.95000000000002,201.84,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.97,27.78,27.41,N/A,N/A +2012,8,12,5,30,101270,100130,99030,83.14,0,6.92,7.48,7.59,7.63,7.66,7.67,7.67,7.66,7.640000000000001,200.89000000000001,200.9,200.89000000000001,200.88,200.87,200.85,200.83,200.81,200.75,29.060000000000002,28.72,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A +2012,8,12,6,30,101290,100150,99050,81.03,0,6.24,6.72,6.8100000000000005,6.86,6.890000000000001,6.9,6.92,6.92,6.92,192.34,192.38,192.48000000000002,192.57,192.65,192.73000000000002,192.82,192.89000000000001,193.04,29.13,28.76,28.580000000000002,28.38,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A +2012,8,12,7,30,101360,100220,99110,82.51,0,6.29,6.78,6.88,6.94,6.98,7,7.0200000000000005,7.03,7.04,187.1,186.94,186.89000000000001,186.83,186.78,186.74,186.70000000000002,186.65,186.57,29.1,28.73,28.55,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A +2012,8,12,8,30,101360,100220,99120,76.38,0,6.92,7.32,7.37,7.37,7.3500000000000005,7.33,7.3,7.2700000000000005,7.21,190.68,191.20000000000002,191.46,191.72,191.94,192.15,192.32,192.47,192.71,29.28,28.93,28.76,28.560000000000002,28.38,28.2,28.01,27.830000000000002,27.46,N/A,N/A +2012,8,12,9,30,101410,100270,99160,80.37,0,5.5600000000000005,5.95,6.03,6.0600000000000005,6.08,6.09,6.09,6.09,6.09,197.14000000000001,197.11,197.16,197.23000000000002,197.3,197.38,197.45000000000002,197.53,197.68,29.09,28.72,28.55,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A +2012,8,12,10,30,101420,100280,99170,78.53,0,5.19,5.57,5.65,5.69,5.72,5.74,5.76,5.76,5.78,197.91,198.46,198.72,198.97,199.20000000000002,199.41,199.62,199.8,200.18,29.17,28.810000000000002,28.64,28.44,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A +2012,8,12,11,30,101430,100290,99190,77.74,0,4.89,5.2,5.26,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3100000000000005,5.3100000000000005,210.86,211.21,211.47,211.74,211.99,212.23000000000002,212.48000000000002,212.71,213.21,29.22,28.86,28.69,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A +2012,8,12,12,30,101460,100320,99220,79.25,0,4.59,4.9,4.95,4.97,4.98,4.98,4.98,4.97,4.95,225.11,225.11,225.06,225.01,224.96,224.9,224.85,224.79,224.69,29.21,28.85,28.68,28.48,28.28,28.09,27.89,27.71,27.32,N/A,N/A +2012,8,12,13,30,101470,100330,99220,77.69,0,3.73,3.99,4.05,4.08,4.11,4.13,4.15,4.16,4.19,227.06,227.6,227.93,228.26,228.55,228.81,229.07,229.31,229.79,29.330000000000002,28.98,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A +2012,8,12,14,30,101470,100330,99220,80.62,0,2.59,2.73,2.74,2.75,2.75,2.75,2.75,2.75,2.75,258.63,257.5,256.85,256.13,255.46,254.79,254.12,253.47,252.13,29.240000000000002,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,8,12,15,30,101590,100440,99330,82.22,2.6,3.13,3.22,3.2,3.18,3.16,3.14,3.13,3.13,3.16,260.78000000000003,261.06,261.1,261.04,260.91,260.7,260.41,260.08,259.07,28.740000000000002,28.39,28.23,28.04,27.87,27.7,27.53,27.37,27.04,N/A,N/A +2012,8,12,16,30,101520,100370,99270,77.05,0,3.59,3.7800000000000002,3.81,3.8200000000000003,3.83,3.83,3.83,3.83,3.8200000000000003,250.42000000000002,251.02,251.14000000000001,251.28,251.41,251.54,251.68,251.8,252.08,29.39,29.04,28.86,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A +2012,8,12,17,30,101540,100400,99290,75.54,0,3.5300000000000002,3.7,3.73,3.74,3.75,3.74,3.74,3.73,3.71,214.89000000000001,214.58,214.58,214.55,214.52,214.48000000000002,214.44,214.4,214.32,29.490000000000002,29.13,28.96,28.76,28.57,28.37,28.18,27.990000000000002,27.61,N/A,N/A +2012,8,12,18,30,101580,100440,99330,80.44,0,4.79,5.04,5.07,5.07,5.07,5.0600000000000005,5.05,5.05,5.04,162.55,164.56,165.74,167,168.19,169.38,170.63,171.85,174.56,28.72,28.35,28.17,27.98,27.8,27.62,27.43,27.26,26.900000000000002,N/A,N/A +2012,8,12,19,30,101520,100380,99270,81.14,0,4.16,4.36,4.39,4.39,4.39,4.38,4.36,4.3500000000000005,4.3100000000000005,173.8,174.44,174.89000000000001,175.37,175.83,176.31,176.85,177.39000000000001,178.70000000000002,28.990000000000002,28.62,28.44,28.240000000000002,28.05,27.87,27.68,27.490000000000002,27.12,N/A,N/A +2012,8,12,20,30,101460,100310,99210,80.86,0,4.86,5.17,5.23,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.25,188.48,188.67000000000002,188.87,189.05,189.22,189.39000000000001,189.57,189.75,190.12,29.11,28.740000000000002,28.560000000000002,28.36,28.17,27.98,27.79,27.6,27.22,N/A,N/A +2012,8,12,21,30,101450,100310,99200,85.41,0,5.97,6.3100000000000005,6.3500000000000005,6.3500000000000005,6.33,6.3,6.25,6.21,6.09,191.29,191.44,191.46,191.47,191.49,191.5,191.51,191.51,191.52,28.41,28,27.830000000000002,27.62,27.44,27.25,27.07,26.89,26.53,N/A,N/A +2012,8,12,22,30,101420,100280,99180,80.79,0,5.2,5.53,5.59,5.61,5.62,5.62,5.61,5.6000000000000005,5.57,193.69,193.79,193.85,193.9,193.95000000000002,193.99,194.02,194.06,194.12,28.86,28.490000000000002,28.310000000000002,28.11,27.92,27.73,27.54,27.36,26.98,N/A,N/A +2012,8,12,23,30,101400,100260,99150,79.41,0,4.87,5.19,5.25,5.28,5.29,5.3100000000000005,5.3100000000000005,5.32,5.33,196.97,197.03,197.11,197.18,197.25,197.31,197.37,197.42000000000002,197.54,28.92,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.42,27.05,N/A,N/A +2012,8,13,0,30,101380,100240,99130,78.62,0,5.69,6.0600000000000005,6.13,6.15,6.16,6.16,6.16,6.15,6.13,178.17000000000002,178.21,178.3,178.37,178.45000000000002,178.51,178.58,178.65,178.78,29.02,28.650000000000002,28.48,28.28,28.080000000000002,27.900000000000002,27.71,27.52,27.150000000000002,N/A,N/A +2012,8,13,1,30,101350,100210,99110,75.83,0,7,7.58,7.7,7.76,7.8100000000000005,7.83,7.8500000000000005,7.86,7.87,172.81,172.94,172.97,173.01,173.03,173.06,173.09,173.11,173.17000000000002,29.310000000000002,28.95,28.78,28.580000000000002,28.39,28.2,28.01,27.82,27.44,N/A,N/A +2012,8,13,2,30,101350,100210,99100,75.35000000000001,0,6.79,7.33,7.43,7.49,7.5200000000000005,7.54,7.5600000000000005,7.57,7.57,175.75,175.94,176.02,176.11,176.18,176.26,176.34,176.42000000000002,176.6,29.36,29,28.830000000000002,28.63,28.44,28.26,28.060000000000002,27.88,27.5,N/A,N/A +2012,8,13,3,30,101370,100230,99130,76.74,0,7.23,7.83,7.96,8.03,8.07,8.1,8.120000000000001,8.14,8.16,182.5,182.43,182.42000000000002,182.42000000000002,182.42000000000002,182.43,182.43,182.44,182.46,29.26,28.900000000000002,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,8,13,4,30,101410,100270,99160,78.5,0,7.46,8.1,8.25,8.33,8.39,8.43,8.46,8.48,8.51,182.39000000000001,182.58,182.65,182.70000000000002,182.74,182.76,182.8,182.82,182.86,29.27,28.91,28.73,28.52,28.330000000000002,28.14,27.94,27.76,27.37,N/A,N/A +2012,8,13,5,30,101430,100290,99180,77.45,0,7.42,8.09,8.24,8.33,8.4,8.45,8.48,8.51,8.56,187.11,187.14000000000001,187.16,187.18,187.20000000000002,187.22,187.24,187.26,187.3,29.35,28.990000000000002,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A +2012,8,13,6,30,101520,100380,99270,80.69,0,7.72,8.41,8.57,8.66,8.73,8.77,8.8,8.82,8.84,192.02,192.11,192.11,192.09,192.06,192.02,191.98000000000002,191.94,191.85,29.310000000000002,28.93,28.75,28.55,28.36,28.16,27.97,27.78,27.39,N/A,N/A +2012,8,13,7,30,101550,100410,99300,78.92,0,6.1000000000000005,6.59,6.7,6.7700000000000005,6.82,6.86,6.890000000000001,6.92,6.96,203.34,202.83,202.73000000000002,202.65,202.59,202.56,202.53,202.52,202.52,29.490000000000002,29.14,28.96,28.77,28.580000000000002,28.38,28.19,28.01,27.62,N/A,N/A +2012,8,13,8,30,101550,100410,99310,79.28,0,6.3500000000000005,6.92,7.08,7.17,7.25,7.3100000000000005,7.3500000000000005,7.4,7.47,213.14000000000001,212.25,211.73000000000002,211.27,210.88,210.54,210.21,209.92000000000002,209.37,29.52,29.17,29,28.8,28.61,28.42,28.23,28.05,27.67,N/A,N/A +2012,8,13,9,30,101550,100410,99300,78.27,0,6.93,7.53,7.67,7.75,7.8,7.84,7.87,7.890000000000001,7.930000000000001,202.01,201.92000000000002,201.83,201.76,201.69,201.63,201.58,201.53,201.44,29.560000000000002,29.2,29.02,28.82,28.63,28.44,28.240000000000002,28.05,27.67,N/A,N/A +2012,8,13,10,30,101580,100440,99340,78.11,0,6.1000000000000005,6.5600000000000005,6.65,6.7,6.74,6.76,6.78,6.79,6.8,216.88,217.01,217.09,217.19,217.29,217.39000000000001,217.49,217.6,217.81,29.51,29.16,28.98,28.78,28.59,28.400000000000002,28.21,28.02,27.64,N/A,N/A +2012,8,13,11,30,101570,100430,99330,78.66,0,5.94,6.48,6.61,6.69,6.75,6.8,6.83,6.86,6.9,210.43,210.95000000000002,211.17000000000002,211.38,211.55,211.72,211.89000000000001,212.04,212.33,29.580000000000002,29.23,29.05,28.85,28.66,28.47,28.27,28.080000000000002,27.7,N/A,N/A +2012,8,13,12,30,101600,100460,99350,76.64,0,6.63,7.2,7.32,7.390000000000001,7.43,7.46,7.48,7.49,7.5,231.22,230.69,230.37,230.06,229.8,229.54,229.31,229.08,228.63,29.71,29.36,29.18,28.98,28.79,28.59,28.400000000000002,28.21,27.830000000000002,N/A,N/A +2012,8,13,13,30,101620,100470,99370,73.99,0,6.66,7.19,7.29,7.34,7.37,7.390000000000001,7.390000000000001,7.4,7.390000000000001,221.18,221.18,221.13,221.07,221.02,220.97,220.91,220.86,220.76,29.73,29.38,29.21,29.02,28.830000000000002,28.63,28.44,28.25,27.87,N/A,N/A +2012,8,13,14,30,101640,100490,99390,72.47,0,6.640000000000001,7.19,7.3,7.36,7.4,7.43,7.45,7.46,7.49,216.38,216.74,216.98000000000002,217.22,217.44,217.65,217.85,218.05,218.45000000000002,29.810000000000002,29.48,29.310000000000002,29.11,28.92,28.73,28.53,28.34,27.96,N/A,N/A +2012,8,13,15,30,101660,100520,99410,68.37,0,7.42,8.040000000000001,8.16,8.22,8.26,8.290000000000001,8.31,8.33,8.34,225.48000000000002,225.64000000000001,225.75,225.87,225.98000000000002,226.09,226.20000000000002,226.3,226.49,29.96,29.63,29.46,29.27,29.07,28.88,28.69,28.5,28.11,N/A,N/A +2012,8,13,16,30,101700,100550,99440,74.15,0,6.38,6.9,7.03,7.12,7.19,7.24,7.28,7.32,7.390000000000001,241.51,240.22,239.37,238.54,237.84,237.23000000000002,236.66,236.13,235.19,29.67,29.34,29.18,28.98,28.8,28.62,28.43,28.25,27.88,N/A,N/A +2012,8,13,17,30,101670,100520,99420,70.19,0,6.24,6.79,6.92,7,7.07,7.11,7.15,7.18,7.22,230.46,230.18,230.02,229.88,229.76,229.64000000000001,229.53,229.43,229.24,29.87,29.53,29.36,29.16,28.98,28.78,28.59,28.400000000000002,28.02,N/A,N/A +2012,8,13,18,30,101660,100520,99410,70.36,0,5.99,6.5,6.61,6.68,6.73,6.7700000000000005,6.79,6.82,6.8500000000000005,217.99,218.12,218.20000000000002,218.24,218.28,218.32,218.34,218.35,218.39000000000001,29.92,29.59,29.42,29.21,29.02,28.830000000000002,28.64,28.45,28.07,N/A,N/A +2012,8,13,19,30,101610,100470,99360,69.56,0,6.71,7.26,7.36,7.41,7.43,7.45,7.46,7.46,7.45,208.58,208.49,208.49,208.47,208.43,208.4,208.35,208.3,208.18,29.95,29.62,29.45,29.26,29.07,28.88,28.69,28.51,28.14,N/A,N/A +2012,8,13,20,30,101560,100420,99310,69.93,0,7,7.59,7.7,7.75,7.7700000000000005,7.79,7.79,7.78,7.76,205.88,205.65,205.56,205.46,205.35,205.25,205.14000000000001,205.04,204.8,29.95,29.62,29.45,29.26,29.07,28.88,28.69,28.51,28.14,N/A,N/A +2012,8,13,21,30,101530,100390,99280,68.93,0,7.22,7.84,7.96,8.01,8.040000000000001,8.05,8.05,8.05,8.02,197.26,197.08,197.03,196.97,196.9,196.84,196.78,196.71,196.57,30.01,29.7,29.53,29.330000000000002,29.150000000000002,28.96,28.77,28.580000000000002,28.21,N/A,N/A +2012,8,13,22,30,101530,100390,99290,73.04,0,6.78,7.36,7.5,7.57,7.62,7.640000000000001,7.66,7.67,7.68,192.12,192.17000000000002,192.18,192.17000000000002,192.15,192.14000000000001,192.12,192.1,192.06,29.85,29.52,29.36,29.16,28.97,28.78,28.59,28.400000000000002,28.02,N/A,N/A +2012,8,13,23,30,101470,100330,99220,74.54,0,7.83,8.51,8.65,8.73,8.78,8.81,8.82,8.84,8.84,194,193.96,193.94,193.91,193.89000000000001,193.86,193.83,193.8,193.74,29.79,29.45,29.27,29.080000000000002,28.89,28.69,28.5,28.310000000000002,27.93,N/A,N/A +2012,8,14,0,30,101400,100260,99150,70.54,0,8.53,9.31,9.47,9.55,9.6,9.63,9.65,9.66,9.66,196.48000000000002,196.46,196.44,196.41,196.4,196.38,196.35,196.33,196.3,29.89,29.560000000000002,29.39,29.2,29.01,28.82,28.63,28.45,28.080000000000002,N/A,N/A +2012,8,14,1,30,101400,100260,99150,72.82000000000001,0,8.55,9.31,9.47,9.540000000000001,9.58,9.6,9.6,9.6,9.57,197.09,196.98000000000002,196.89000000000001,196.82,196.74,196.67000000000002,196.6,196.53,196.36,29.78,29.44,29.27,29.080000000000002,28.89,28.7,28.51,28.330000000000002,27.95,N/A,N/A +2012,8,14,2,30,101450,100310,99210,69.77,0,7.98,8.71,8.870000000000001,8.96,9.03,9.07,9.1,9.120000000000001,9.15,193.15,193.58,193.78,193.96,194.12,194.26,194.39000000000001,194.52,194.76,29.85,29.52,29.35,29.150000000000002,28.96,28.77,28.580000000000002,28.39,28.01,N/A,N/A +2012,8,14,3,30,101460,100320,99220,70.71000000000001,0,8,8.69,8.83,8.9,8.94,8.950000000000001,8.96,8.96,8.94,199.92000000000002,199.91,199.86,199.78,199.71,199.63,199.56,199.48000000000002,199.33,29.88,29.55,29.38,29.19,29,28.810000000000002,28.62,28.43,28.05,N/A,N/A +2012,8,14,4,30,101430,100290,99190,67.73,0,8.23,8.99,9.15,9.22,9.27,9.290000000000001,9.3,9.31,9.290000000000001,202.41,202.53,202.58,202.62,202.66,202.69,202.72,202.75,202.79,30,29.69,29.52,29.32,29.14,28.95,28.75,28.57,28.19,N/A,N/A +2012,8,14,5,30,101430,100290,99190,69.66,0,8.25,9.03,9.21,9.3,9.370000000000001,9.41,9.450000000000001,9.47,9.51,206.82,206.92000000000002,206.98000000000002,207.06,207.14000000000001,207.21,207.29,207.37,207.53,29.89,29.560000000000002,29.400000000000002,29.2,29.01,28.82,28.63,28.44,28.07,N/A,N/A +2012,8,14,6,30,101460,100320,99220,67.23,0,8.28,9.08,9.26,9.35,9.41,9.44,9.46,9.47,9.47,218.13,218.1,218.04,217.96,217.88,217.81,217.72,217.65,217.48000000000002,30.09,29.810000000000002,29.650000000000002,29.46,29.27,29.09,28.900000000000002,28.71,28.330000000000002,N/A,N/A +2012,8,14,7,30,101480,100340,99230,72.93,0,6.98,7.62,7.75,7.8100000000000005,7.86,7.890000000000001,7.92,7.930000000000001,7.97,220.19,219.97,219.89000000000001,219.81,219.74,219.67000000000002,219.6,219.52,219.4,29.830000000000002,29.51,29.34,29.150000000000002,28.96,28.77,28.580000000000002,28.400000000000002,28.04,N/A,N/A +2012,8,14,8,30,101470,100330,99220,75.45,0,6.82,7.45,7.6000000000000005,7.7,7.7700000000000005,7.83,7.890000000000001,7.930000000000001,8.02,219.25,219.33,219.35,219.4,219.43,219.47,219.51,219.55,219.63,29.63,29.310000000000002,29.14,28.95,28.76,28.57,28.38,28.2,27.830000000000002,N/A,N/A +2012,8,14,9,30,101470,100330,99220,79.72,0,6.95,7.47,7.6000000000000005,7.66,7.71,7.75,7.7700000000000005,7.8,7.83,225.43,225.67000000000002,225.73000000000002,225.77,225.81,225.85,225.88,225.91,225.98000000000002,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.89,27.51,N/A,N/A +2012,8,14,10,30,101510,100360,99260,80.16,0,7.79,8.52,8.68,8.77,8.83,8.86,8.89,8.9,8.91,227.89000000000001,227.9,227.87,227.83,227.78,227.73000000000002,227.67000000000002,227.61,227.48000000000002,29.46,29.11,28.93,28.73,28.54,28.34,28.150000000000002,27.96,27.580000000000002,N/A,N/A +2012,8,14,11,30,101520,100370,99270,80.31,0,6.12,6.65,6.78,6.87,6.94,7,7.05,7.09,7.16,233.82,233.57,233.41,233.26,233.14000000000001,233.03,232.93,232.84,232.66,29.39,29.05,28.88,28.68,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A +2012,8,14,12,30,101530,100390,99290,78.93,0,6.82,7.3500000000000005,7.47,7.54,7.58,7.62,7.640000000000001,7.67,7.71,241.04,240.84,240.73000000000002,240.62,240.51,240.4,240.29,240.19,239.98000000000002,29.37,29.03,28.86,28.66,28.48,28.29,28.1,27.92,27.54,N/A,N/A +2012,8,14,13,30,101570,100430,99320,79.89,0,6.36,6.9,7.0200000000000005,7.08,7.12,7.15,7.17,7.18,7.19,232.93,232.79,232.8,232.81,232.83,232.85,232.87,232.9,232.94,29.35,29,28.830000000000002,28.62,28.43,28.240000000000002,28.04,27.85,27.47,N/A,N/A +2012,8,14,14,30,101580,100440,99330,74.21000000000001,0,6.63,7.21,7.34,7.41,7.46,7.49,7.51,7.53,7.5600000000000005,239.70000000000002,239.77,239.78,239.78,239.77,239.76,239.73000000000002,239.71,239.65,29.62,29.29,29.12,28.92,28.73,28.54,28.35,28.16,27.78,N/A,N/A +2012,8,14,15,30,101560,100420,99320,77.01,0,6.74,7.29,7.4,7.45,7.48,7.5,7.5,7.5,7.49,241.53,241.4,241.39000000000001,241.4,241.41,241.42000000000002,241.44,241.46,241.5,29.52,29.17,29,28.8,28.61,28.41,28.22,28.03,27.650000000000002,N/A,N/A +2012,8,14,16,30,101580,100430,99330,78.59,0,5.22,5.6000000000000005,5.69,5.73,5.76,5.78,5.79,5.8,5.82,234.94,234.92000000000002,234.94,234.96,234.97,234.98000000000002,234.99,235.01,235.03,29.47,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A +2012,8,14,17,30,101550,100400,99300,79.13,0,5.8,6.25,6.3500000000000005,6.41,6.45,6.47,6.49,6.51,6.54,217.07,217.23000000000002,217.34,217.44,217.53,217.61,217.70000000000002,217.77,217.94,29.46,29.11,28.94,28.73,28.55,28.36,28.16,27.98,27.6,N/A,N/A +2012,8,14,18,30,101510,100370,99260,78.17,0,6,6.49,6.6000000000000005,6.67,6.73,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.92,205.32,205.82,206.07,206.32,206.57,206.81,207.08,207.33,207.93,29.63,29.29,29.12,28.93,28.740000000000002,28.560000000000002,28.37,28.19,27.830000000000002,N/A,N/A +2012,8,14,19,30,101500,100360,99260,78.86,0,7.61,8.28,8.44,8.52,8.58,8.63,8.66,8.69,8.73,203.88,204.08,204.24,204.38,204.51,204.64000000000001,204.76,204.88,205.13,29.62,29.27,29.1,28.900000000000002,28.72,28.53,28.330000000000002,28.150000000000002,27.77,N/A,N/A +2012,8,14,20,30,101450,100310,99210,79.35000000000001,0,8.35,9.1,9.26,9.34,9.4,9.43,9.450000000000001,9.46,9.46,211.97,212.12,212.17000000000002,212.22,212.27,212.32,212.37,212.42000000000002,212.53,29.5,29.150000000000002,28.98,28.78,28.59,28.400000000000002,28.21,28.02,27.64,N/A,N/A +2012,8,14,21,30,101390,100250,99150,81.29,0,8.23,8.98,9.14,9.23,9.28,9.32,9.34,9.35,9.35,210.70000000000002,210.59,210.58,210.57,210.55,210.54,210.53,210.51,210.48000000000002,29.39,29.03,28.86,28.66,28.47,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A +2012,8,14,22,30,101390,100250,99150,79.72,0,8.290000000000001,9.03,9.200000000000001,9.290000000000001,9.35,9.39,9.41,9.43,9.44,206.25,206.32,206.35,206.35,206.36,206.36,206.36,206.35,206.34,29.37,29.01,28.84,28.63,28.44,28.25,28.060000000000002,27.87,27.490000000000002,N/A,N/A +2012,8,14,23,30,101360,100220,99110,75.46000000000001,0,8.52,9.27,9.43,9.51,9.55,9.58,9.59,9.59,9.58,206.14000000000001,206.21,206.24,206.25,206.26,206.27,206.27,206.27,206.26,29.47,29.13,28.95,28.75,28.560000000000002,28.37,28.18,28,27.62,N/A,N/A +2012,8,15,0,30,101330,100190,99080,66.24,0,8.56,9.32,9.49,9.58,9.63,9.67,9.69,9.700000000000001,9.72,206.19,206.24,206.35,206.48000000000002,206.6,206.71,206.83,206.95000000000002,207.18,29.82,29.52,29.35,29.16,28.98,28.79,28.59,28.41,28.04,N/A,N/A +2012,8,15,1,30,101290,100140,99040,66.75,0,8.1,8.84,8.99,9.08,9.14,9.18,9.21,9.23,9.27,203.97,204.02,204.12,204.24,204.34,204.45000000000002,204.57,204.67000000000002,204.92000000000002,29.71,29.400000000000002,29.240000000000002,29.04,28.86,28.67,28.48,28.3,27.93,N/A,N/A +2012,8,15,2,30,101300,100160,99050,73.60000000000001,0,8.05,8.77,8.94,9.02,9.08,9.120000000000001,9.14,9.16,9.18,205.41,205.49,205.53,205.56,205.59,205.63,205.66,205.70000000000002,205.78,29.34,28.990000000000002,28.810000000000002,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A +2012,8,15,3,30,101310,100170,99070,76.76,0,7.6000000000000005,8.26,8.4,8.48,8.53,8.56,8.58,8.59,8.6,203.92000000000002,204.06,204.15,204.26,204.36,204.45000000000002,204.55,204.64000000000001,204.84,29.240000000000002,28.88,28.71,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.36,N/A,N/A +2012,8,15,4,30,101320,100180,99070,74.68,0,8.040000000000001,8.74,8.91,8.98,9.040000000000001,9.07,9.09,9.11,9.120000000000001,198.92000000000002,199,199.01,199.03,199.05,199.06,199.07,199.09,199.12,29.34,28.98,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A +2012,8,15,5,30,101300,100160,99050,80.48,0,7.91,8.63,8.8,8.9,8.97,9.01,9.05,9.08,9.11,195.99,195.95000000000002,195.96,195.98000000000002,196,196.02,196.06,196.08,196.16,29.18,28.810000000000002,28.63,28.43,28.23,28.04,27.85,27.66,27.27,N/A,N/A +2012,8,15,6,30,101260,100130,99020,81.82000000000001,0,8.18,8.94,9.120000000000001,9.22,9.290000000000001,9.34,9.370000000000001,9.39,9.43,199.27,199.39000000000001,199.45000000000002,199.5,199.55,199.61,199.66,199.71,199.83,29.12,28.77,28.59,28.39,28.2,28.01,27.82,27.63,27.25,N/A,N/A +2012,8,15,7,30,101290,100160,99050,82.81,0,8.51,9.32,9.52,9.63,9.71,9.76,9.81,9.84,9.88,200,199.98000000000002,199.97,199.97,199.97,199.98000000000002,199.99,200,200.04,29.18,28.830000000000002,28.66,28.45,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,15,8,30,101300,100170,99060,78.72,0,8.39,9.24,9.44,9.55,9.63,9.69,9.73,9.76,9.790000000000001,206.22,206.24,206.24,206.23000000000002,206.22,206.20000000000002,206.19,206.17000000000002,206.13,29.44,29.11,28.94,28.740000000000002,28.55,28.36,28.17,27.98,27.6,N/A,N/A +2012,8,15,9,30,101330,100190,99090,80.49,0,8.46,9.26,9.450000000000001,9.55,9.620000000000001,9.66,9.700000000000001,9.72,9.74,207.12,207.32,207.42000000000002,207.51,207.59,207.66,207.72,207.8,207.93,29.25,28.91,28.73,28.53,28.34,28.150000000000002,27.96,27.77,27.39,N/A,N/A +2012,8,15,10,30,101350,100210,99100,82.29,0,7.6000000000000005,8.3,8.47,8.58,8.66,8.72,8.76,8.790000000000001,8.84,210.88,210.69,210.65,210.62,210.6,210.6,210.6,210.6,210.63,29.17,28.82,28.64,28.44,28.25,28.05,27.86,27.67,27.28,N/A,N/A +2012,8,15,11,30,101380,100240,99130,81.47,0,7.21,7.86,8.02,8.11,8.19,8.24,8.28,8.32,8.370000000000001,214.95000000000002,214.76,214.58,214.41,214.26,214.11,213.96,213.82,213.54,29.17,28.82,28.650000000000002,28.45,28.26,28.07,27.87,27.69,27.310000000000002,N/A,N/A +2012,8,15,12,30,101380,100240,99130,79.51,0,7.95,8.69,8.870000000000001,8.96,9.03,9.07,9.1,9.13,9.15,221.78,221.59,221.46,221.32,221.19,221.06,220.93,220.8,220.54,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A +2012,8,15,13,30,101430,100290,99190,75.76,0,7.8100000000000005,8.45,8.59,8.65,8.69,8.72,8.73,8.74,8.75,218.61,218.55,218.52,218.46,218.41,218.35,218.29,218.23000000000002,218.11,29.38,29.060000000000002,28.900000000000002,28.7,28.51,28.32,28.13,27.95,27.57,N/A,N/A +2012,8,15,14,30,101450,100310,99200,76.5,0,6.21,6.79,6.93,7.0200000000000005,7.08,7.13,7.17,7.2,7.25,217.06,217.33,217.42000000000002,217.51,217.6,217.67000000000002,217.75,217.82,217.98000000000002,29.400000000000002,29.07,28.900000000000002,28.7,28.51,28.32,28.12,27.93,27.55,N/A,N/A +2012,8,15,15,30,101460,100320,99220,77.26,0,6.47,6.99,7.09,7.13,7.15,7.16,7.16,7.15,7.13,209.31,209.6,209.75,209.93,210.09,210.26,210.43,210.59,210.92000000000002,29.38,29.04,28.87,28.67,28.48,28.3,28.1,27.91,27.54,N/A,N/A +2012,8,15,16,30,101470,100330,99220,76.91,0,6.94,7.51,7.640000000000001,7.7,7.74,7.76,7.78,7.79,7.79,205.99,205.9,205.93,205.96,205.99,206.02,206.04,206.07,206.13,29.3,28.96,28.79,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.44,N/A,N/A +2012,8,15,17,30,101470,100320,99220,77.85000000000001,0,5.82,6.3,6.41,6.48,6.53,6.57,6.6000000000000005,6.63,6.68,211.33,211.23000000000002,211.19,211.13,211.06,210.99,210.93,210.86,210.72,29.27,28.94,28.77,28.560000000000002,28.38,28.19,27.990000000000002,27.8,27.42,N/A,N/A +2012,8,15,18,30,101470,100330,99220,73.93,0,5.66,6.13,6.25,6.34,6.4,6.45,6.49,6.53,6.6000000000000005,205.43,205.65,205.73000000000002,205.79,205.85,205.9,205.94,205.98000000000002,206.05,29.490000000000002,29.16,28.990000000000002,28.79,28.6,28.41,28.22,28.04,27.66,N/A,N/A +2012,8,15,19,30,101440,100300,99190,74.76,0,5.11,5.48,5.57,5.61,5.64,5.66,5.68,5.69,5.72,207.01,206.95000000000002,206.94,206.94,206.94,206.93,206.93,206.93,206.94,29.42,29.09,28.92,28.72,28.53,28.34,28.150000000000002,27.96,27.580000000000002,N/A,N/A +2012,8,15,20,30,101400,100260,99160,79.65,0,5.58,5.99,6.09,6.13,6.17,6.2,6.21,6.23,6.25,190.88,191.13,191.23000000000002,191.32,191.39000000000001,191.47,191.54,191.61,191.73000000000002,29.32,28.98,28.8,28.6,28.41,28.22,28.02,27.84,27.46,N/A,N/A +2012,8,15,21,30,101340,100200,99100,81.74,0,6.28,6.71,6.79,6.82,6.8500000000000005,6.8500000000000005,6.86,6.86,6.8500000000000005,204.36,203.63,203.04,202.37,201.78,201.20000000000002,200.62,200.07,198.96,29.35,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.53,N/A,N/A +2012,8,15,22,30,101340,100200,99090,81.02,0,5.93,6.44,6.5600000000000005,6.63,6.68,6.71,6.74,6.76,6.8,185.89000000000001,186.08,186.22,186.34,186.46,186.58,186.68,186.78,186.98,29.44,29.11,28.94,28.740000000000002,28.55,28.36,28.17,27.98,27.6,N/A,N/A +2012,8,15,23,30,101300,100160,99050,78.21000000000001,0,5.84,6.33,6.43,6.48,6.51,6.53,6.55,6.5600000000000005,6.57,190.27,190.44,190.49,190.56,190.62,190.68,190.74,190.79,190.91,29.45,29.13,28.96,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A +2012,8,16,0,30,101260,100120,99020,80.56,0,6.13,6.6000000000000005,6.7,6.75,6.78,6.8,6.8100000000000005,6.8100000000000005,6.8100000000000005,179.79,179.79,179.8,179.77,179.75,179.72,179.68,179.65,179.57,29.25,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,8,16,1,30,101270,100130,99030,83.19,0,6.37,6.91,7.03,7.11,7.16,7.2,7.23,7.25,7.29,175.89000000000001,175.86,175.88,175.89000000000001,175.91,175.91,175.92000000000002,175.93,175.94,29.19,28.84,28.67,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A +2012,8,16,2,30,101290,100150,99040,83.04,0,7.46,8.09,8.23,8.290000000000001,8.34,8.36,8.370000000000001,8.38,8.38,170.77,170.78,170.72,170.64000000000001,170.56,170.46,170.37,170.28,170.07,29.25,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.77,27.39,N/A,N/A +2012,8,16,3,30,101340,100200,99100,82.36,0,7.79,8.51,8.68,8.77,8.83,8.870000000000001,8.9,8.92,8.950000000000001,172.11,172.09,172.05,172,171.96,171.91,171.87,171.83,171.75,29.25,28.91,28.73,28.54,28.35,28.150000000000002,27.96,27.78,27.39,N/A,N/A +2012,8,16,4,30,101350,100210,99110,82.88,0,8.44,9.25,9.450000000000001,9.56,9.63,9.68,9.72,9.75,9.790000000000001,175.07,175.06,175.06,175.07,175.07,175.08,175.1,175.11,175.14000000000001,29.27,28.92,28.75,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,8,16,5,30,101390,100250,99140,82.85000000000001,0,8.17,8.96,9.16,9.27,9.35,9.41,9.450000000000001,9.49,9.540000000000001,178.94,178.76,178.68,178.6,178.52,178.45000000000002,178.37,178.3,178.16,29.22,28.87,28.7,28.5,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A +2012,8,16,6,30,101410,100270,99170,82.89,0,8.38,9.31,9.53,9.68,9.78,9.86,9.92,9.97,10.040000000000001,178.08,178.3,178.32,178.3,178.29,178.26,178.23,178.20000000000002,178.14000000000001,29.400000000000002,29.07,28.900000000000002,28.71,28.52,28.330000000000002,28.14,27.95,27.580000000000002,N/A,N/A +2012,8,16,7,30,101470,100330,99220,81.9,0,8.53,9.370000000000001,9.6,9.73,9.82,9.89,9.950000000000001,9.99,10.06,175.96,176.41,176.71,177.02,177.29,177.56,177.81,178.06,178.55,29.27,28.95,28.79,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A +2012,8,16,8,30,101470,100320,99220,80.82000000000001,0,8.19,8.93,9.08,9.15,9.200000000000001,9.22,9.23,9.23,9.23,172.92000000000002,173.03,173.18,173.36,173.55,173.73,173.95000000000002,174.16,174.67000000000002,29.14,28.8,28.64,28.44,28.26,28.080000000000002,27.89,27.71,27.34,N/A,N/A +2012,8,16,9,30,101480,100340,99230,73.12,0,7.68,8.42,8.58,8.67,8.74,8.78,8.82,8.84,8.88,182.07,182.33,182.41,182.47,182.53,182.57,182.6,182.64000000000001,182.69,29.44,29.13,28.96,28.77,28.580000000000002,28.39,28.2,28.01,27.64,N/A,N/A +2012,8,16,10,30,101510,100370,99260,69.05,0,7.21,7.92,8.08,8.17,8.23,8.28,8.31,8.33,8.370000000000001,188.1,188.23,188.23,188.25,188.26,188.27,188.29,188.31,188.36,29.64,29.35,29.19,28.990000000000002,28.8,28.62,28.42,28.240000000000002,27.86,N/A,N/A +2012,8,16,11,30,101500,100360,99250,70.58,0,6.76,7.33,7.43,7.48,7.5,7.51,7.51,7.51,7.49,183.97,184.42000000000002,184.6,184.77,184.92000000000002,185.05,185.19,185.32,185.56,29.43,29.12,28.95,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A +2012,8,16,12,30,101530,100390,99280,71.76,0,6.68,7.24,7.3500000000000005,7.4,7.43,7.45,7.46,7.46,7.46,187.38,187.67000000000002,187.8,187.91,188,188.08,188.15,188.22,188.33,29.39,29.080000000000002,28.91,28.71,28.52,28.330000000000002,28.14,27.95,27.57,N/A,N/A +2012,8,16,13,30,101590,100440,99340,67.76,0,5.32,5.76,5.8500000000000005,5.9,5.93,5.96,5.98,6,6.03,183.25,183.77,184.03,184.25,184.43,184.59,184.73,184.85,185.06,29.46,29.16,28.990000000000002,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A +2012,8,16,14,30,101600,100450,99350,70.41,0,4.6000000000000005,4.94,5.01,5.04,5.0600000000000005,5.08,5.09,5.1000000000000005,5.11,185.13,185.3,185.43,185.55,185.68,185.8,185.92000000000002,186.04,186.3,29.39,29.07,28.91,28.71,28.52,28.330000000000002,28.13,27.95,27.57,N/A,N/A +2012,8,16,15,30,101610,100460,99350,72.44,0,3.68,3.93,3.98,4,4.0200000000000005,4.03,4.04,4.04,4.05,181.45000000000002,181.74,181.92000000000002,182.09,182.25,182.41,182.56,182.70000000000002,182.99,29.28,28.95,28.79,28.59,28.400000000000002,28.21,28.01,27.830000000000002,27.44,N/A,N/A +2012,8,16,16,30,101620,100480,99370,72.8,0,3.0700000000000003,3.25,3.2800000000000002,3.31,3.3200000000000003,3.33,3.34,3.34,3.35,187.89000000000001,187.74,187.67000000000002,187.61,187.55,187.48,187.42000000000002,187.36,187.23,29.28,28.95,28.78,28.580000000000002,28.39,28.2,28.01,27.82,27.43,N/A,N/A +2012,8,16,17,30,101640,100500,99390,71.44,0,3.25,3.42,3.46,3.48,3.49,3.5,3.5100000000000002,3.5100000000000002,3.52,183.04,183.20000000000002,183.26,183.31,183.35,183.39000000000001,183.42000000000002,183.45000000000002,183.44,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A +2012,8,16,18,30,101620,100480,99370,73.99,0,2.41,2.52,2.52,2.52,2.5100000000000002,2.5100000000000002,2.49,2.48,2.46,169.05,169.58,169.93,170.3,170.62,170.93,171.25,171.56,172.19,29.34,28.990000000000002,28.82,28.61,28.42,28.23,28.04,27.85,27.46,N/A,N/A +2012,8,16,19,30,101580,100440,99330,72.65,0,3.6,3.7800000000000002,3.81,3.81,3.81,3.81,3.81,3.8000000000000003,3.79,168.37,168.41,168.48,168.55,168.63,168.73,168.84,168.96,169.28,29.47,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A +2012,8,16,20,30,101520,100380,99270,72.4,0,3.35,3.5500000000000003,3.6,3.62,3.64,3.66,3.67,3.69,3.71,166.15,166.02,165.88,165.74,165.63,165.53,165.43,165.34,165.17000000000002,29.57,29.23,29.060000000000002,28.86,28.68,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A +2012,8,16,21,30,101490,100350,99250,74.2,0,3.97,4.21,4.24,4.26,4.26,4.2700000000000005,4.26,4.26,4.25,164.92000000000002,165.18,165.31,165.44,165.55,165.67000000000002,165.79,165.92000000000002,166.17000000000002,29.580000000000002,29.25,29.080000000000002,28.88,28.69,28.5,28.310000000000002,28.12,27.75,N/A,N/A +2012,8,16,22,30,101480,100340,99230,72.01,0,5.15,5.55,5.62,5.65,5.67,5.68,5.69,5.69,5.7,162.61,162.73,162.78,162.82,162.87,162.92000000000002,162.97,163.01,163.14000000000001,29.73,29.43,29.27,29.07,28.89,28.7,28.51,28.330000000000002,27.95,N/A,N/A +2012,8,16,23,30,101490,100350,99240,75.5,0,4.8,5.18,5.25,5.28,5.3,5.32,5.33,5.33,5.34,162.37,162.5,162.6,162.70000000000002,162.78,162.88,162.97,163.06,163.24,29.6,29.3,29.13,28.94,28.75,28.560000000000002,28.37,28.19,27.810000000000002,N/A,N/A +2012,8,17,0,30,101450,100310,99200,77.94,0,4.83,5.2,5.26,5.29,5.32,5.33,5.34,5.34,5.3500000000000005,150.32,150.43,150.46,150.5,150.53,150.58,150.64000000000001,150.69,150.81,29.48,29.17,29,28.8,28.62,28.43,28.240000000000002,28.05,27.67,N/A,N/A +2012,8,17,1,30,101450,100310,99200,80.85000000000001,0,5.44,5.88,5.96,6,6.03,6.05,6.07,6.08,6.09,146.83,146.8,146.79,146.8,146.8,146.8,146.8,146.81,146.83,29.41,29.09,28.93,28.73,28.54,28.35,28.16,27.97,27.6,N/A,N/A +2012,8,17,2,30,101420,100290,99180,83.53,0,5.08,5.46,5.55,5.58,5.61,5.63,5.63,5.64,5.64,163.53,163.16,162.86,162.54,162.25,161.97,161.67000000000002,161.39000000000001,160.82,29.35,29.03,28.86,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A +2012,8,17,3,30,101460,100320,99210,82.77,0,5.69,6.140000000000001,6.23,6.2700000000000005,6.3,6.32,6.32,6.33,6.32,165.84,165.92000000000002,165.94,165.94,165.95000000000002,165.94,165.94,165.93,165.91,29.28,28.95,28.78,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A +2012,8,17,4,30,101470,100330,99220,81.83,0,5.86,6.33,6.43,6.48,6.51,6.53,6.55,6.5600000000000005,6.5600000000000005,174.76,174.75,174.70000000000002,174.67000000000002,174.64000000000001,174.61,174.59,174.58,174.55,29.32,28.990000000000002,28.830000000000002,28.62,28.44,28.25,28.060000000000002,27.87,27.5,N/A,N/A +2012,8,17,5,30,101470,100320,99220,81.93,0,5.7,6.13,6.21,6.24,6.26,6.26,6.25,6.24,6.2,170.9,171.13,171.3,171.48,171.64000000000001,171.8,171.97,172.13,172.46,29.26,28.93,28.76,28.560000000000002,28.37,28.18,27.98,27.79,27.41,N/A,N/A +2012,8,17,6,30,101500,100360,99250,85.27,0,6.59,7.140000000000001,7.2700000000000005,7.33,7.38,7.4,7.42,7.43,7.43,180.25,180.25,180.27,180.27,180.29,180.29,180.29,180.29,180.29,29.12,28.77,28.6,28.400000000000002,28.21,28.01,27.82,27.63,27.25,N/A,N/A +2012,8,17,7,30,101530,100390,99280,82.75,0,6.2,6.7,6.8100000000000005,6.87,6.92,6.94,6.96,6.98,6.99,186.15,186.19,186.22,186.25,186.28,186.3,186.32,186.34,186.39000000000001,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,8,17,8,30,101510,100370,99260,84.11,0,5.89,6.32,6.4,6.43,6.43,6.43,6.41,6.4,6.3500000000000005,187.66,187.98,188.19,188.41,188.61,188.81,189.01,189.21,189.67000000000002,29.2,28.87,28.7,28.5,28.310000000000002,28.12,27.93,27.75,27.37,N/A,N/A +2012,8,17,9,30,101540,100400,99300,84.27,0,5.51,5.89,5.97,6,6.0200000000000005,6.03,6.03,6.03,6.0200000000000005,202.73000000000002,202.70000000000002,202.70000000000002,202.72,202.75,202.78,202.82,202.86,202.96,29.21,28.87,28.7,28.51,28.32,28.13,27.93,27.75,27.37,N/A,N/A +2012,8,17,10,30,101550,100410,99300,79.8,0,5.76,6.23,6.33,6.37,6.4,6.42,6.43,6.43,6.43,202.61,202.25,202.06,201.89000000000001,201.74,201.58,201.43,201.3,201.02,29.44,29.12,28.95,28.76,28.57,28.38,28.19,28.01,27.63,N/A,N/A +2012,8,17,11,30,101560,100410,99310,81.15,0,6.51,7.0600000000000005,7.17,7.22,7.25,7.26,7.2700000000000005,7.26,7.25,200.02,200.23000000000002,200.35,200.48000000000002,200.61,200.73000000000002,200.85,200.97,201.21,29.38,29.05,28.89,28.69,28.5,28.310000000000002,28.11,27.93,27.55,N/A,N/A +2012,8,17,12,30,101570,100430,99320,76.52,0,6,6.45,6.53,6.5600000000000005,6.57,6.58,6.57,6.5600000000000005,6.53,199.62,200.12,200.48000000000002,200.86,201.19,201.52,201.86,202.18,202.84,29.5,29.18,29.02,28.82,28.63,28.44,28.25,28.060000000000002,27.68,N/A,N/A +2012,8,17,13,30,101570,100430,99320,78.48,0,5.8500000000000005,6.29,6.37,6.4,6.42,6.43,6.43,6.42,6.4,210.95000000000002,211.04,211.06,211.08,211.1,211.13,211.15,211.17000000000002,211.21,29.32,28.990000000000002,28.830000000000002,28.62,28.44,28.25,28.05,27.86,27.48,N/A,N/A +2012,8,17,14,30,101550,100400,99300,77.9,0,5.9,6.38,6.48,6.54,6.58,6.6000000000000005,6.62,6.63,6.640000000000001,212.97,212.95000000000002,212.92000000000002,212.89000000000001,212.86,212.82,212.78,212.74,212.67000000000002,29.3,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A +2012,8,17,15,30,101600,100460,99350,78.78,0,5.89,6.33,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.57,6.58,224.03,224.32,224.44,224.56,224.66,224.75,224.84,224.92000000000002,225.08,29.310000000000002,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A +2012,8,17,16,30,101560,100420,99310,77.54,0,5.33,5.71,5.78,5.8,5.82,5.82,5.82,5.82,5.8,215.66,216.16,216.33,216.51,216.68,216.85,217.02,217.18,217.56,29.330000000000002,28.990000000000002,28.830000000000002,28.62,28.44,28.240000000000002,28.05,27.86,27.490000000000002,N/A,N/A +2012,8,17,17,30,101540,100400,99290,78.08,0,4.82,5.17,5.24,5.28,5.3100000000000005,5.33,5.34,5.36,5.37,227.72,227.93,228.13,228.3,228.45000000000002,228.58,228.71,228.84,229.07,29.400000000000002,29.060000000000002,28.89,28.69,28.5,28.310000000000002,28.12,27.93,27.55,N/A,N/A +2012,8,17,18,30,101470,100330,99220,81.87,0,6.26,6.69,6.76,6.78,6.79,6.79,6.79,6.78,6.75,223.79,224.07,224.14000000000001,224.24,224.32,224.41,224.51,224.6,224.81,29.28,28.94,28.77,28.57,28.38,28.19,28.01,27.82,27.46,N/A,N/A +2012,8,17,19,30,101470,100330,99220,81.72,0,5.98,6.44,6.54,6.6000000000000005,6.63,6.65,6.67,6.67,6.68,225.11,225.39000000000001,225.44,225.46,225.5,225.52,225.55,225.56,225.58,29.34,29,28.82,28.62,28.44,28.25,28.05,27.86,27.490000000000002,N/A,N/A +2012,8,17,20,30,101480,100340,99230,83.16,0,6.59,7.15,7.2700000000000005,7.33,7.36,7.37,7.36,7.3500000000000005,7.3100000000000005,219.94,220.01,220.02,220.03,220.04,220.05,220.06,220.06,220.06,29.37,29.04,28.87,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A +2012,8,17,21,30,101470,100330,99220,80.08,0,7.65,8.36,8.53,8.620000000000001,8.69,8.73,8.75,8.77,8.790000000000001,242.84,242.97,242.88,242.82,242.78,242.76,242.74,242.73000000000002,242.72,29.52,29.2,29.03,28.830000000000002,28.650000000000002,28.45,28.26,28.07,27.69,N/A,N/A +2012,8,17,22,30,101400,100260,99160,79.17,0,7.13,7.75,7.87,7.930000000000001,7.96,7.98,7.98,7.98,7.97,237.85,237.83,237.84,237.85,237.84,237.83,237.82,237.81,237.76,29.51,29.19,29.02,28.82,28.64,28.45,28.26,28.07,27.69,N/A,N/A +2012,8,17,23,30,101360,100220,99110,83.55,0,5.18,5.5200000000000005,5.59,5.63,5.65,5.67,5.7,5.73,5.8500000000000005,245.27,243.84,243.02,242.05,241.09,240.03,238.86,237.66,234.70000000000002,28.75,28.41,28.26,28.07,27.900000000000002,27.740000000000002,27.57,27.42,27.12,N/A,N/A +2012,8,18,0,30,101320,100180,99080,76.46000000000001,0,5.21,5.66,5.75,5.8,5.84,5.87,5.9,5.92,5.95,221.3,221.55,221.56,221.56,221.57,221.59,221.61,221.63,221.69,29.490000000000002,29.17,29,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A +2012,8,18,1,30,101320,100180,99080,75.46000000000001,0,5.59,6.04,6.11,6.140000000000001,6.16,6.16,6.15,6.140000000000001,6.1000000000000005,216.03,216.03,216.05,216.03,216,215.97,215.93,215.88,215.77,29.48,29.16,29,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A +2012,8,18,2,30,101320,100180,99080,74.63,0,5.51,5.91,5.99,6.03,6.05,6.07,6.08,6.09,6.12,207.29,207.24,207.24,207.27,207.3,207.33,207.38,207.44,207.59,29.42,29.12,28.95,28.76,28.580000000000002,28.39,28.21,28.03,27.67,N/A,N/A +2012,8,18,3,30,101320,100180,99070,72.06,0,5.9,6.41,6.5200000000000005,6.57,6.61,6.640000000000001,6.67,6.69,6.73,199.34,199.53,199.65,199.77,199.87,199.98000000000002,200.09,200.20000000000002,200.46,29.6,29.3,29.14,28.94,28.76,28.57,28.38,28.2,27.830000000000002,N/A,N/A +2012,8,18,4,30,101330,100190,99080,74.82000000000001,0,5.62,6.05,6.140000000000001,6.17,6.19,6.2,6.19,6.19,6.16,203.25,203.09,202.91,202.71,202.53,202.35,202.17000000000002,201.98000000000002,201.64000000000001,29.42,29.11,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.62,N/A,N/A +2012,8,18,5,30,101320,100180,99080,77.24,0,6.390000000000001,6.87,6.93,6.94,6.94,6.92,6.890000000000001,6.86,6.79,206.86,206.48000000000002,206.29,206.07,205.87,205.66,205.45000000000002,205.25,204.81,29.240000000000002,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A +2012,8,18,6,30,101350,100210,99100,75.64,0,5.98,6.45,6.53,6.57,6.6000000000000005,6.61,6.61,6.6000000000000005,6.58,203.82,203.92000000000002,203.98000000000002,204.04,204.09,204.12,204.15,204.18,204.20000000000002,29.29,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A +2012,8,18,7,30,101370,100230,99120,78.36,0,6.890000000000001,7.42,7.53,7.58,7.61,7.63,7.640000000000001,7.65,7.66,200.69,200.63,200.64000000000001,200.68,200.72,200.76,200.81,200.85,200.97,29.14,28.810000000000002,28.64,28.44,28.26,28.080000000000002,27.89,27.7,27.330000000000002,N/A,N/A +2012,8,18,8,30,101330,100190,99080,80.37,0,6.61,7.17,7.29,7.3500000000000005,7.4,7.43,7.44,7.46,7.46,212,211.97,211.9,211.82,211.75,211.67000000000002,211.6,211.53,211.36,29,28.66,28.48,28.28,28.09,27.900000000000002,27.7,27.51,27.13,N/A,N/A +2012,8,18,9,30,101340,100200,99100,80.74,0,7.37,8,8.14,8.22,8.26,8.290000000000001,8.32,8.33,8.34,212.55,212.6,212.62,212.64000000000001,212.65,212.66,212.67000000000002,212.67000000000002,212.68,29,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A +2012,8,18,10,30,101350,100210,99100,81.31,0,6.78,7.33,7.46,7.53,7.57,7.6000000000000005,7.61,7.63,7.640000000000001,210.89000000000001,210.86,210.87,210.87,210.87,210.87,210.86,210.85,210.83,28.96,28.62,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,8,18,11,30,101360,100220,99110,83.08,0,6.44,6.95,7.07,7.13,7.17,7.21,7.23,7.25,7.2700000000000005,217.87,217.86,217.87,217.88,217.9,217.91,217.93,217.94,217.99,28.89,28.53,28.36,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.02,N/A,N/A +2012,8,18,12,30,101370,100230,99130,85.04,0,6.36,6.8500000000000005,6.97,7.03,7.08,7.11,7.13,7.140000000000001,7.17,218.19,218.18,218.18,218.17000000000002,218.15,218.14000000000001,218.12,218.11,218.09,28.830000000000002,28.47,28.3,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.95,N/A,N/A +2012,8,18,13,30,101360,100220,99120,86.89,0,6.390000000000001,7,7.140000000000001,7.22,7.28,7.32,7.3500000000000005,7.36,7.38,220.4,220.17000000000002,220.1,220.05,220.02,220,219.99,219.99,219.99,28.830000000000002,28.46,28.29,28.080000000000002,27.89,27.7,27.5,27.310000000000002,26.92,N/A,N/A +2012,8,18,14,30,101380,100240,99140,85.18,0,6.91,7.42,7.53,7.57,7.59,7.6000000000000005,7.6000000000000005,7.6000000000000005,7.58,226.46,226.79,226.85,226.88,226.9,226.91,226.91,226.92000000000002,226.94,28.87,28.51,28.34,28.14,27.95,27.76,27.57,27.39,27.02,N/A,N/A +2012,8,18,15,30,101370,100230,99130,79.11,0,7.5600000000000005,8.25,8.41,8.5,8.56,8.6,8.63,8.65,8.68,235.14000000000001,235.16,235.15,235.14000000000001,235.13,235.12,235.11,235.1,235.08,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A +2012,8,18,16,30,101380,100240,99140,76.85000000000001,0,7.09,7.73,7.890000000000001,7.98,8.040000000000001,8.09,8.13,8.17,8.22,229.39000000000001,229.69,229.83,229.97,230.1,230.23000000000002,230.34,230.45000000000002,230.66,29.36,29.02,28.86,28.66,28.47,28.28,28.080000000000002,27.900000000000002,27.52,N/A,N/A +2012,8,18,17,30,101350,100210,99100,77.47,0,7.75,8.38,8.540000000000001,8.61,8.67,8.700000000000001,8.73,8.76,8.790000000000001,227.81,228.08,228.21,228.34,228.44,228.53,228.62,228.70000000000002,228.85,29.27,28.94,28.78,28.580000000000002,28.400000000000002,28.21,28.02,27.84,27.47,N/A,N/A +2012,8,18,18,30,101300,100160,99050,76.46000000000001,0,8.26,9.09,9.290000000000001,9.41,9.48,9.53,9.56,9.58,9.59,224.57,224.92000000000002,225.09,225.23000000000002,225.34,225.44,225.52,225.59,225.72,29.43,29.11,28.95,28.75,28.560000000000002,28.37,28.18,28,27.61,N/A,N/A +2012,8,18,19,30,101240,100100,98990,80.52,0,8.99,9.85,10.02,10.1,10.14,10.15,10.15,10.15,10.11,217.09,217.28,217.35,217.4,217.45000000000002,217.48000000000002,217.51,217.54,217.62,29.2,28.85,28.68,28.48,28.29,28.1,27.91,27.72,27.35,N/A,N/A +2012,8,18,20,30,101210,100070,98960,69.68,0,9.71,10.700000000000001,10.94,11.08,11.17,11.22,11.26,11.290000000000001,11.3,218.20000000000002,218.31,218.47,218.62,218.76,218.88,219,219.1,219.3,29.98,29.72,29.57,29.39,29.21,29.03,28.85,28.67,28.310000000000002,N/A,N/A +2012,8,18,21,30,101170,100030,98930,72.19,0,9.06,9.96,10.17,10.290000000000001,10.38,10.450000000000001,10.52,10.58,10.75,214.61,214.55,214.6,214.68,214.77,214.87,215,215.14000000000001,215.55,29.88,29.6,29.44,29.26,29.080000000000002,28.91,28.73,28.57,28.25,N/A,N/A +2012,8,18,22,30,101130,99990,98890,75.16,0,8.43,9.24,9.39,9.46,9.51,9.53,9.540000000000001,9.55,9.57,210.52,210.8,210.91,211,211.1,211.21,211.33,211.47,211.87,29.64,29.34,29.17,28.98,28.8,28.62,28.44,28.26,27.91,N/A,N/A +2012,8,18,23,30,101090,99960,98850,82.32000000000001,0,9.200000000000001,10.05,10.21,10.27,10.3,10.290000000000001,10.27,10.23,10.14,211.46,211.4,211.37,211.33,211.3,211.27,211.25,211.22,211.22,29.14,28.79,28.62,28.42,28.23,28.04,27.86,27.67,27.310000000000002,N/A,N/A +2012,8,19,0,30,101080,99940,98840,76.48,0,9.13,9.96,10.16,10.25,10.31,10.34,10.35,10.35,10.33,207.36,207.47,207.59,207.71,207.81,207.91,208,208.09,208.22,29.36,29.05,28.88,28.69,28.51,28.32,28.13,27.95,27.580000000000002,N/A,N/A +2012,8,19,1,30,101060,99920,98820,79.69,0,7.67,8.290000000000001,8.41,8.46,8.48,8.48,8.47,8.46,8.41,204.19,204.26,204.32,204.4,204.46,204.54,204.62,204.70000000000002,204.89000000000001,29.09,28.75,28.59,28.39,28.2,28.01,27.830000000000002,27.64,27.28,N/A,N/A +2012,8,19,2,30,101090,99960,98850,81.3,0,7.46,8.09,8.22,8.290000000000001,8.33,8.35,8.36,8.36,8.35,194.01,194.11,194.14000000000001,194.16,194.18,194.21,194.23000000000002,194.26,194.33,28.98,28.63,28.46,28.26,28.07,27.88,27.69,27.51,27.14,N/A,N/A +2012,8,19,3,30,101100,99960,98860,84.69,0,6.73,7.28,7.4,7.45,7.49,7.5,7.51,7.51,7.5,196.63,196.85,196.94,197,197.04,197.08,197.11,197.13,197.18,28.78,28.41,28.240000000000002,28.03,27.84,27.650000000000002,27.45,27.26,26.88,N/A,N/A +2012,8,19,4,30,101100,99960,98860,81.42,0,7.7700000000000005,8.41,8.56,8.63,8.68,8.71,8.72,8.73,8.73,196.51,196.22,196.12,196.04,195.96,195.9,195.84,195.78,195.66,28.78,28.42,28.25,28.04,27.85,27.66,27.47,27.28,26.91,N/A,N/A +2012,8,19,5,30,101120,99990,98880,81.13,0,6.9,7.48,7.61,7.68,7.73,7.76,7.78,7.79,7.8,193.98000000000002,194.11,194.24,194.41,194.56,194.73000000000002,194.9,195.07,195.44,28.85,28.490000000000002,28.310000000000002,28.11,27.92,27.72,27.53,27.34,26.96,N/A,N/A +2012,8,19,6,30,101160,100020,98910,75.75,0,7.79,8.45,8.6,8.67,8.71,8.74,8.75,8.76,8.76,189.94,190.28,190.37,190.42000000000002,190.45000000000002,190.46,190.47,190.48,190.47,28.990000000000002,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.12,N/A,N/A +2012,8,19,7,30,101180,100040,98930,72.33,0,7.36,7.99,8.14,8.22,8.28,8.32,8.34,8.370000000000001,8.4,196.86,196.88,196.83,196.76,196.70000000000002,196.64000000000001,196.58,196.52,196.39000000000001,29.13,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.68,27.3,N/A,N/A +2012,8,19,8,30,101180,100040,98940,68.56,0,7.26,7.9,8.05,8.13,8.19,8.23,8.26,8.28,8.32,200.66,200.48000000000002,200.31,200.14000000000001,199.98000000000002,199.84,199.69,199.55,199.28,29.28,28.96,28.8,28.59,28.41,28.22,28.02,27.84,27.46,N/A,N/A +2012,8,19,9,30,101190,100050,98940,69.14,0,7.33,7.95,8.09,8.16,8.2,8.23,8.25,8.26,8.27,197.19,197.45000000000002,197.59,197.73000000000002,197.86,197.99,198.11,198.23000000000002,198.47,29.3,28.98,28.82,28.62,28.43,28.240000000000002,28.04,27.86,27.48,N/A,N/A +2012,8,19,10,30,101230,100090,98980,73.56,0,6.7,7.29,7.43,7.5,7.5600000000000005,7.6000000000000005,7.63,7.65,7.68,208.55,208.5,208.49,208.48000000000002,208.47,208.47,208.46,208.45000000000002,208.43,29.17,28.84,28.67,28.46,28.28,28.080000000000002,27.89,27.7,27.32,N/A,N/A +2012,8,19,11,30,101230,100090,98980,72.22,0,6.42,6.96,7.07,7.13,7.17,7.19,7.2,7.21,7.21,203.12,203.32,203.46,203.6,203.73000000000002,203.87,204.01,204.14000000000001,204.4,29.150000000000002,28.82,28.650000000000002,28.45,28.26,28.060000000000002,27.87,27.68,27.29,N/A,N/A +2012,8,19,12,30,101250,100100,99000,72.38,0,5.7,6.140000000000001,6.23,6.28,6.3100000000000005,6.34,6.3500000000000005,6.3500000000000005,6.36,221.33,221.24,221.22,221.23000000000002,221.23000000000002,221.25,221.27,221.29,221.34,29.13,28.8,28.63,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A +2012,8,19,13,30,101290,100150,99040,71.67,0,4.99,5.33,5.4,5.44,5.46,5.48,5.49,5.5,5.51,236.74,236.62,236.45000000000002,236.27,236.1,235.93,235.76,235.6,235.27,29.19,28.86,28.69,28.5,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A +2012,8,19,14,30,101330,100190,99080,70.5,0,4.76,5.01,5.04,5.04,5.03,5.01,5,4.98,4.94,246.07,245.93,245.72,245.48000000000002,245.25,245.02,244.79,244.57,244.11,29.17,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.330000000000002,N/A,N/A +2012,8,19,15,30,101350,100210,99100,75.25,0,3.96,4.05,4.01,3.94,3.88,3.81,3.75,3.69,3.5700000000000003,313.5,312.22,311.25,310.13,309.08,307.99,306.87,305.78000000000003,303.41,28.78,28.44,28.27,28.07,27.89,27.7,27.51,27.32,26.95,N/A,N/A +2012,8,19,16,30,101340,100190,99090,71.9,0,2.66,2.7800000000000002,2.79,2.79,2.79,2.79,2.79,2.7800000000000002,2.77,313.27,312.27,311.65000000000003,311.04,310.5,309.98,309.47,309,308.04,28.92,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A +2012,8,19,17,30,101300,100160,99050,72.34,0,2.58,2.71,2.74,2.7600000000000002,2.7800000000000002,2.79,2.8000000000000003,2.81,2.82,349.82,348.86,348.35,347.87,347.42,346.97,346.51,346.07,345.13,28.84,28.490000000000002,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A +2012,8,19,18,30,101320,100180,99080,70.53,0,1.9100000000000001,2.0100000000000002,2.05,2.08,2.11,2.13,2.15,2.17,2.21,8.36,7.23,6.47,5.78,5.17,4.5600000000000005,3.99,3.46,2.38,29.27,28.93,28.76,28.55,28.37,28.18,27.98,27.79,27.41,N/A,N/A +2012,8,19,19,30,101230,100090,98990,70.18,0,1.69,1.6600000000000001,1.62,1.57,1.52,1.47,1.43,1.3900000000000001,1.3,132.64000000000001,130.55,129.15,127.59,126.02,124.42,122.56,120.77,116.37,29.34,28.98,28.810000000000002,28.62,28.43,28.240000000000002,28.05,27.87,27.5,N/A,N/A +2012,8,19,20,30,101350,100190,99070,94.15,444.6,6.12,6.43,6.51,6.57,6.6000000000000005,6.63,6.66,6.67,6.71,260.96,259.36,258.52,257.73,256.89,256.14,255.38,254.71,253.42000000000002,25.73,25.27,25.080000000000002,24.900000000000002,24.72,24.55,24.38,24.21,23.89,N/A,N/A +2012,8,19,21,30,101340,100180,99060,84.18,0,4.0200000000000005,4.0600000000000005,4.0200000000000005,3.93,3.84,3.74,3.58,3.43,2.97,50.42,49.57,48.95,48.17,47.21,46.12,44.32,42.46,34.28,25.400000000000002,24.97,24.8,24.62,24.47,24.330000000000002,24.2,24.09,23.95,N/A,N/A +2012,8,19,22,30,101290,100130,99020,78.19,0,2.94,3,2.98,2.94,2.9,2.85,2.8000000000000003,2.74,2.58,147.12,147.34,147.39000000000001,147.44,147.48,147.52,147.51,147.5,147.13,26.43,26.02,25.84,25.64,25.45,25.27,25.09,24.92,24.59,N/A,N/A +2012,8,19,23,30,101270,100120,99000,80.67,0,6.32,6.63,6.65,6.62,6.57,6.51,6.43,6.3500000000000005,6.09,171.23,171.56,171.79,172.09,172.46,172.89000000000001,173.51,174.14000000000001,176.61,26.48,26.02,25.82,25.62,25.43,25.25,25.060000000000002,24.89,24.54,N/A,N/A +2012,8,20,0,30,101220,100070,98950,84.98,0,5.63,5.93,5.98,5.98,5.98,5.96,5.94,5.91,5.8500000000000005,170.58,170.72,170.73,170.75,170.77,170.79,170.83,170.85,170.97,26.72,26.28,26.09,25.89,25.7,25.51,25.32,25.14,24.78,N/A,N/A +2012,8,20,1,30,101200,100050,98940,84.02,0,3.99,4.16,4.17,4.16,4.14,4.11,4.08,4.04,3.96,195.54,195.54,195.46,195.37,195.28,195.18,195.07,194.96,194.68,27.11,26.7,26.52,26.310000000000002,26.13,25.94,25.740000000000002,25.560000000000002,25.19,N/A,N/A +2012,8,20,2,30,101190,100040,98930,82.94,0,3.92,4.08,4.09,4.08,4.0600000000000005,4.03,4.01,3.98,3.9,210.05,209.91,209.8,209.67000000000002,209.57,209.45000000000002,209.33,209.22,208.97,27.3,26.900000000000002,26.71,26.51,26.32,26.13,25.94,25.75,25.38,N/A,N/A +2012,8,20,3,30,101180,100040,98930,81.2,0,2.86,2.96,2.97,2.96,2.95,2.93,2.91,2.89,2.84,228.04,228.21,228.3,228.37,228.43,228.51,228.56,228.61,228.73000000000002,27.52,27.14,26.96,26.76,26.57,26.38,26.2,26.01,25.64,N/A,N/A +2012,8,20,4,30,101170,100020,98910,80.15,0,2.59,2.69,2.7,2.7,2.7,2.69,2.69,2.68,2.66,224.99,225.26,225.39000000000001,225.52,225.63,225.75,225.86,225.97,226.20000000000002,27.72,27.35,27.17,26.97,26.78,26.580000000000002,26.39,26.2,25.82,N/A,N/A +2012,8,20,5,30,101190,100050,98940,77.35000000000001,0,2.67,2.77,2.7800000000000002,2.77,2.7600000000000002,2.75,2.74,2.72,2.69,249.29,249.36,249.41,249.46,249.51000000000002,249.56,249.61,249.64000000000001,249.76000000000002,27.900000000000002,27.54,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A +2012,8,20,6,30,101210,100060,98960,75.46000000000001,0,2.74,2.85,2.86,2.86,2.86,2.85,2.85,2.84,2.82,248.12,248.35,248.39000000000001,248.44,248.49,248.53,248.6,248.66,248.77,28.04,27.69,27.51,27.310000000000002,27.12,26.93,26.73,26.55,26.17,N/A,N/A +2012,8,20,7,30,101260,100110,99010,75.26,0,2.58,2.68,2.69,2.69,2.68,2.67,2.66,2.66,2.63,237.22,237.14000000000001,237.07,237,236.92000000000002,236.83,236.74,236.65,236.46,28.080000000000002,27.73,27.560000000000002,27.36,27.17,26.97,26.78,26.59,26.21,N/A,N/A +2012,8,20,8,30,101260,100110,99010,75.86,0,2.66,2.7600000000000002,2.77,2.77,2.77,2.7600000000000002,2.7600000000000002,2.75,2.73,250.79,250.86,250.85,250.85,250.85,250.85,250.85,250.85,250.86,28.04,27.68,27.51,27.3,27.11,26.92,26.73,26.54,26.16,N/A,N/A +2012,8,20,9,30,101280,100130,99020,79.5,0,3.17,3.33,3.36,3.37,3.38,3.38,3.38,3.38,3.37,258.42,258.54,258.59000000000003,258.64,258.69,258.75,258.8,258.85,258.97,27.96,27.59,27.42,27.21,27.03,26.830000000000002,26.64,26.45,26.07,N/A,N/A +2012,8,20,10,30,101280,100140,99030,80.95,0,3.48,3.66,3.69,3.7,3.7,3.7,3.7,3.69,3.68,263.88,264.18,264.26,264.36,264.45,264.54,264.63,264.72,264.91,27.88,27.5,27.330000000000002,27.12,26.93,26.740000000000002,26.54,26.35,25.97,N/A,N/A +2012,8,20,11,30,101280,100130,99020,84.35000000000001,0,4.82,5.04,5.05,5.04,5.01,4.98,4.95,4.91,4.83,293.74,293.37,293.14,292.92,292.71,292.51,292.32,292.13,291.75,27.580000000000002,27.19,27.01,26.810000000000002,26.63,26.44,26.25,26.07,25.7,N/A,N/A +2012,8,20,12,30,101300,100150,99040,79.5,0,4.65,4.86,4.87,4.8500000000000005,4.83,4.8,4.7700000000000005,4.73,4.66,310.76,310.94,311.08,311.21,311.36,311.52,311.69,311.85,312.28000000000003,27.46,27.07,26.89,26.69,26.5,26.310000000000002,26.12,25.94,25.57,N/A,N/A +2012,8,20,13,30,101320,100170,99060,79.5,0,4.73,4.96,4.98,4.98,4.97,4.96,4.94,4.92,4.87,312.72,313.64,314.19,314.75,315.26,315.76,316.27,316.76,317.79,27.310000000000002,26.91,26.73,26.52,26.330000000000002,26.14,25.95,25.76,25.39,N/A,N/A +2012,8,20,14,30,101380,100230,99120,83.21000000000001,0,3.93,4.12,4.15,4.16,4.16,4.16,4.16,4.15,4.14,314.94,315.83,316.38,316.92,317.40000000000003,317.86,318.33,318.79,319.72,27.19,26.79,26.6,26.400000000000002,26.2,26.01,25.82,25.63,25.25,N/A,N/A +2012,8,20,15,30,101370,100220,99110,82.95,0,4.07,4.28,4.32,4.33,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.3500000000000005,310.36,311.61,312.36,313.11,313.8,314.48,315.17,315.83,317.23,27.39,26.990000000000002,26.810000000000002,26.61,26.42,26.23,26.03,25.84,25.47,N/A,N/A +2012,8,20,16,30,101390,100240,99130,75.98,0,3.45,3.61,3.64,3.66,3.66,3.67,3.67,3.67,3.67,343.56,342.73,342.26,341.8,341.39,340.99,340.62,340.27,339.6,28,27.62,27.44,27.240000000000002,27.05,26.85,26.66,26.47,26.09,N/A,N/A +2012,8,20,17,30,101360,100210,99100,72.93,0,2.95,3.12,3.16,3.19,3.21,3.23,3.25,3.27,3.3000000000000003,315.59000000000003,316.18,316.56,316.93,317.25,317.56,317.89,318.2,318.83,28.35,27.990000000000002,27.82,27.61,27.42,27.23,27.04,26.85,26.47,N/A,N/A +2012,8,20,18,30,101320,100170,99060,70.4,0,2.64,2.84,2.9,2.96,3.02,3.08,3.15,3.21,3.39,292.26,294.16,295.40000000000003,296.61,297.71,298.83,299.98,301.11,303.63,28.84,28.5,28.330000000000002,28.14,27.96,27.77,27.580000000000002,27.41,27.05,N/A,N/A +2012,8,20,19,30,101300,100160,99050,70.03,0,2.7600000000000002,2.7800000000000002,2.73,2.67,2.62,2.58,2.54,2.5,2.45,219.96,223.5,226.02,228.88,231.49,234.20000000000002,236.95000000000002,239.63,245.27,29.29,28.97,28.810000000000002,28.62,28.44,28.26,28.07,27.900000000000002,27.54,N/A,N/A +2012,8,20,20,30,101240,100100,98990,72.49,0,3.41,3.49,3.45,3.39,3.3200000000000003,3.25,3.16,3.0700000000000003,2.82,181.8,181.84,181.88,181.91,181.91,181.91,181.92000000000002,181.93,182.23,29.13,28.79,28.62,28.44,28.26,28.09,27.92,27.75,27.46,N/A,N/A +2012,8,20,21,30,101200,100060,98950,78.37,0,4.54,4.75,4.76,4.72,4.67,4.61,4.5600000000000005,4.5,4.26,191.28,191.72,192.02,192.4,192.79,193.24,193.74,194.26,195.6,28.810000000000002,28.46,28.3,28.1,27.91,27.73,27.54,27.36,26.990000000000002,N/A,N/A +2012,8,20,22,30,101170,100030,98930,77.02,0,5.26,5.57,5.59,5.57,5.54,5.5,5.44,5.38,5.22,185.61,185.79,185.92000000000002,186.09,186.26,186.44,186.67000000000002,186.9,187.51,29.060000000000002,28.73,28.57,28.37,28.19,28.01,27.82,27.64,27.27,N/A,N/A +2012,8,20,23,30,101160,100020,98910,77.10000000000001,0,5.73,6.12,6.18,6.19,6.18,6.17,6.140000000000001,6.11,6.04,201.8,201.79,201.83,201.86,201.88,201.9,201.92000000000002,201.95000000000002,202.02,28.990000000000002,28.66,28.5,28.3,28.11,27.93,27.740000000000002,27.55,27.18,N/A,N/A +2012,8,21,0,30,101160,100020,98920,76.04,0,5.48,5.86,5.93,5.95,5.96,5.96,5.95,5.94,5.91,200.26,200.47,200.58,200.67000000000002,200.74,200.81,200.87,200.92000000000002,201.02,28.93,28.6,28.43,28.23,28.04,27.85,27.66,27.47,27.09,N/A,N/A +2012,8,21,1,30,101170,100030,98930,74.54,0,4.6000000000000005,4.89,4.93,4.95,4.96,4.95,4.95,4.94,4.91,204.42000000000002,204.3,204.25,204.20000000000002,204.16,204.12,204.07,204.03,203.95000000000002,28.98,28.650000000000002,28.48,28.28,28.1,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A +2012,8,21,2,30,101210,100070,98960,72.66,0,2.81,2.95,2.98,2.98,2.99,2.98,2.98,2.98,2.96,204.4,204.32,204.24,204.14000000000001,204.06,203.96,203.85,203.74,203.49,29,28.69,28.52,28.32,28.14,27.95,27.76,27.580000000000002,27.21,N/A,N/A +2012,8,21,3,30,101220,100080,98970,72.3,0,2.43,2.52,2.52,2.5100000000000002,2.5,2.49,2.48,2.46,2.43,242.72,242.28,241.98000000000002,241.67000000000002,241.39000000000001,241.1,240.79,240.5,239.86,28.990000000000002,28.68,28.51,28.310000000000002,28.13,27.94,27.75,27.57,27.19,N/A,N/A +2012,8,21,4,30,101220,100070,98970,73.46000000000001,0,1.67,1.7,1.7,1.68,1.67,1.6500000000000001,1.6400000000000001,1.62,1.58,292.24,292.87,293.03000000000003,293.24,293.46,293.71,293.98,294.25,294.95,28.85,28.53,28.37,28.17,27.98,27.8,27.61,27.42,27.05,N/A,N/A +2012,8,21,5,30,101240,100100,99000,74.04,0,1.27,1.31,1.31,1.31,1.31,1.3,1.29,1.29,1.27,349.47,350.97,351.66,352.38,353.05,353.72,354.45,355.17,356.84000000000003,28.8,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.36,26.990000000000002,N/A,N/A +2012,8,21,6,30,101280,100140,99030,69.16,0,2.5100000000000002,2.61,2.61,2.59,2.58,2.56,2.5500000000000003,2.5300000000000002,2.5,49.36,50.07,50.47,50.9,51.27,51.63,51.980000000000004,52.31,53.03,29.01,28.69,28.52,28.32,28.13,27.94,27.75,27.560000000000002,27.18,N/A,N/A +2012,8,21,7,30,101300,100160,99050,70.8,0,2.23,2.35,2.37,2.4,2.41,2.43,2.44,2.46,2.49,40.43,40.42,40.5,40.59,40.68,40.78,40.86,40.95,41.18,28.78,28.45,28.28,28.080000000000002,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A +2012,8,21,8,30,101310,100160,99050,66.84,0,3.5700000000000003,3.73,3.74,3.73,3.71,3.7,3.68,3.66,3.61,54.97,55.39,55.63,55.85,56.04,56.21,56.38,56.550000000000004,56.86,28.85,28.51,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27,N/A,N/A +2012,8,21,9,30,101340,100190,99080,67.98,0,3.24,3.42,3.45,3.46,3.47,3.47,3.47,3.47,3.46,60.39,60.76,60.9,61.04,61.160000000000004,61.27,61.370000000000005,61.47,61.660000000000004,28.8,28.47,28.3,28.1,27.91,27.72,27.52,27.330000000000002,26.95,N/A,N/A +2012,8,21,10,30,101370,100220,99120,66.52,0,2.71,2.84,2.85,2.85,2.85,2.85,2.85,2.85,2.84,71.33,70.51,70.03,69.55,69.13,68.74,68.35000000000001,67.97,67.22,28.810000000000002,28.490000000000002,28.32,28.12,27.93,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,8,21,11,30,101380,100230,99130,68.92,0,3.65,3.7800000000000002,3.7600000000000002,3.73,3.7,3.66,3.63,3.59,3.52,74.82000000000001,75.15,75.45,75.74,76.02,76.3,76.57000000000001,76.84,77.41,28.7,28.37,28.2,28.01,27.82,27.64,27.45,27.26,26.89,N/A,N/A +2012,8,21,12,30,101410,100260,99150,68.88,0,3.12,3.2800000000000002,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,75.01,74.98,74.96000000000001,74.92,74.89,74.84,74.79,74.74,74.64,28.54,28.19,28.02,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A +2012,8,21,13,30,101440,100300,99190,72.76,0,4.24,4.45,4.48,4.49,4.49,4.48,4.47,4.46,4.42,86.64,86.75,86.81,86.87,86.92,86.96000000000001,87,87.04,87.14,28.44,28.09,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A +2012,8,21,14,30,101490,100350,99230,69.12,0,2.95,3.14,3.19,3.23,3.25,3.27,3.29,3.31,3.34,91.33,92.66,93.4,94.12,94.75,95.33,95.89,96.4,97.37,28.57,28.240000000000002,28.07,27.87,27.69,27.5,27.310000000000002,27.13,26.76,N/A,N/A +2012,8,21,15,30,101500,100350,99240,73.54,0,4.51,4.79,4.8500000000000005,4.88,4.9,4.92,4.93,4.94,4.94,83.69,83.96000000000001,84.05,84.14,84.22,84.29,84.37,84.44,84.58,28.44,28.080000000000002,27.91,27.71,27.52,27.32,27.13,26.94,26.560000000000002,N/A,N/A +2012,8,21,16,30,101520,100370,99260,74.66,0,3.95,4.16,4.19,4.2,4.21,4.21,4.2,4.2,4.18,64.36,64.76,65.11,65.44,65.73,66,66.25,66.49,66.93,28.41,28.05,27.87,27.67,27.48,27.28,27.09,26.900000000000002,26.52,N/A,N/A +2012,8,21,17,30,101520,100380,99270,74.49,0,4.63,4.87,4.9,4.9,4.9,4.89,4.88,4.86,4.83,61.42,61.63,61.71,61.79,61.86,61.93,62,62.06,62.17,28.34,27.97,27.79,27.580000000000002,27.39,27.19,27,26.810000000000002,26.42,N/A,N/A +2012,8,21,18,30,101530,100390,99270,77.08,0,5.79,6.140000000000001,6.2,6.21,6.21,6.2,6.18,6.16,6.1000000000000005,78.14,78.3,78.32000000000001,78.35000000000001,78.38,78.41,78.43,78.46000000000001,78.52,28.18,27.79,27.61,27.400000000000002,27.21,27.02,26.82,26.63,26.25,N/A,N/A +2012,8,21,19,30,101510,100370,99250,74.67,0,6.25,6.61,6.66,6.66,6.63,6.6000000000000005,6.55,6.5,6.37,100.60000000000001,100.54,100.51,100.46000000000001,100.43,100.39,100.35000000000001,100.31,100.21000000000001,28.17,27.79,27.61,27.41,27.23,27.04,26.85,26.67,26.3,N/A,N/A +2012,8,21,20,30,101500,100350,99240,73.4,0,5.7700000000000005,6.07,6.09,6.0600000000000005,6.0200000000000005,5.98,5.92,5.86,5.72,107.72,107.3,107.02,106.72,106.43,106.14,105.84,105.54,104.88,28.22,27.85,27.68,27.48,27.3,27.11,26.92,26.740000000000002,26.38,N/A,N/A +2012,8,21,21,30,101470,100330,99220,67.48,0,4.7,4.97,5.01,5.01,5,4.99,4.97,4.95,4.9,114.03,113.81,113.60000000000001,113.39,113.19,113,112.8,112.61,112.2,28.52,28.18,28.01,27.82,27.63,27.45,27.26,27.080000000000002,26.71,N/A,N/A +2012,8,21,22,30,101470,100330,99210,66.34,0,4.9,5.21,5.25,5.2700000000000005,5.28,5.28,5.2700000000000005,5.26,5.24,119.71000000000001,119.62,119.48,119.32000000000001,119.17,119.01,118.85000000000001,118.69,118.35000000000001,28.7,28.36,28.19,27.990000000000002,27.8,27.62,27.43,27.240000000000002,26.87,N/A,N/A +2012,8,21,23,30,101470,100330,99210,68.96000000000001,0,4.05,4.3100000000000005,4.38,4.41,4.44,4.47,4.49,4.5,4.54,116.54,116.23,116.03,115.84,115.67,115.49000000000001,115.32000000000001,115.16,114.81,28.61,28.27,28.1,27.900000000000002,27.72,27.53,27.34,27.16,26.79,N/A,N/A +2012,8,22,0,30,101450,100310,99200,71.24,0,3.92,4.15,4.19,4.21,4.22,4.23,4.23,4.23,4.23,122,121.53,121.29,121.03,120.79,120.54,120.27,120,119.41,28.6,28.26,28.09,27.900000000000002,27.71,27.52,27.330000000000002,27.150000000000002,26.78,N/A,N/A +2012,8,22,1,30,101440,100300,99190,73.98,0,4.54,4.83,4.89,4.91,4.93,4.93,4.94,4.94,4.93,123.49000000000001,123.35000000000001,123.24000000000001,123.11,122.99000000000001,122.87,122.74000000000001,122.61,122.32000000000001,28.560000000000002,28.21,28.04,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.7,N/A,N/A +2012,8,22,2,30,101460,100320,99210,73.81,0,4.84,5.18,5.25,5.29,5.32,5.33,5.3500000000000005,5.36,5.37,123.23,123.31,123.41,123.5,123.58,123.65,123.73,123.8,123.92,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A +2012,8,22,3,30,101490,100350,99240,70.26,0,4.3500000000000005,4.64,4.71,4.75,4.7700000000000005,4.79,4.8100000000000005,4.82,4.8500000000000005,118.47,118.46000000000001,118.45,118.41,118.38,118.35000000000001,118.3,118.27,118.16,28.82,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A +2012,8,22,4,30,101480,100340,99230,69.02,0,3.72,3.96,4.01,4.04,4.0600000000000005,4.08,4.09,4.1,4.13,103.53,103.39,103.35000000000001,103.3,103.25,103.19,103.13,103.07000000000001,102.95,28.900000000000002,28.57,28.400000000000002,28.2,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A +2012,8,22,5,30,101500,100350,99240,69.41,0,4.5,4.8100000000000005,4.87,4.9,4.93,4.94,4.96,4.97,4.98,102.35000000000001,101.79,101.47,101.17,100.9,100.64,100.39,100.15,99.68,28.91,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A +2012,8,22,6,30,101520,100380,99270,68.38,0,5.04,5.4,5.48,5.5200000000000005,5.55,5.57,5.59,5.6000000000000005,5.62,100.76,100.62,100.56,100.5,100.43,100.36,100.3,100.24000000000001,100.12,28.990000000000002,28.66,28.48,28.28,28.1,27.900000000000002,27.71,27.52,27.14,N/A,N/A +2012,8,22,7,30,101550,100400,99290,64.6,0,4.64,4.97,5.04,5.09,5.12,5.14,5.16,5.17,5.19,98.93,99.37,99.56,99.74000000000001,99.89,100.03,100.17,100.3,100.53,29.2,28.88,28.71,28.51,28.32,28.13,27.93,27.75,27.36,N/A,N/A +2012,8,22,8,30,101560,100410,99300,65.41,0,5.13,5.51,5.58,5.62,5.65,5.67,5.68,5.69,5.71,109.48,109.5,109.49000000000001,109.49000000000001,109.5,109.51,109.52,109.54,109.56,29.150000000000002,28.82,28.66,28.46,28.26,28.080000000000002,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,22,9,30,101560,100410,99300,67.34,0,4.64,4.95,5.01,5.04,5.0600000000000005,5.08,5.09,5.09,5.1000000000000005,98.96000000000001,99.13,99.24000000000001,99.32000000000001,99.4,99.46000000000001,99.52,99.57000000000001,99.64,29.04,28.71,28.54,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.19,N/A,N/A +2012,8,22,10,30,101560,100410,99300,82.32000000000001,0,6.74,7.08,7.07,7.01,6.94,6.86,6.7700000000000005,6.68,6.5,71.29,72.5,73.39,74.4,75.35000000000001,76.33,77.35000000000001,78.34,80.56,27.89,27.5,27.34,27.150000000000002,26.98,26.810000000000002,26.63,26.47,26.13,N/A,N/A +2012,8,22,11,30,101570,100420,99310,86.89,0,8.35,8.97,9.11,9.16,9.19,9.200000000000001,9.200000000000001,9.18,9.14,56.84,57.1,57.32,57.54,57.75,57.94,58.160000000000004,58.370000000000005,58.84,27.35,26.900000000000002,26.7,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A +2012,8,22,12,30,101620,100470,99350,87.43,53.1,6.63,7.07,7.17,7.21,7.24,7.25,7.26,7.26,7.25,65.75,66.51,66.91,67.28,67.61,67.91,68.21000000000001,68.48,69.02,27.02,26.580000000000002,26.39,26.19,26,25.810000000000002,25.62,25.45,25.080000000000002,N/A,N/A +2012,8,22,13,30,101680,100510,99380,92.46000000000001,14.3,8.3,8.75,8.84,8.86,8.870000000000001,8.870000000000001,8.85,8.83,8.74,192.61,191.65,191.23000000000002,190.77,190.31,189.87,189.38,188.93,187.83,24.54,23.98,23.78,23.59,23.41,23.240000000000002,23.07,22.91,22.59,N/A,N/A +2012,8,22,14,30,101670,100500,99370,89.62,1.5,9.96,10.58,10.66,10.65,10.620000000000001,10.57,10.49,10.42,10.22,189.84,189.6,189.64000000000001,189.70000000000002,189.78,189.87,189.98,190.08,190.31,24.25,23.64,23.43,23.23,23.05,22.89,22.72,22.57,22.3,N/A,N/A +2012,8,22,15,30,101730,100560,99430,84.54,0.4,3.2800000000000002,3.35,3.34,3.31,3.2800000000000002,3.25,3.21,3.18,3.1,155.74,153.75,153.33,152.82,152.21,151.56,150.72,149.92000000000002,147.45000000000002,25.060000000000002,24.61,24.42,24.23,24.05,23.88,23.71,23.55,23.26,N/A,N/A +2012,8,22,16,30,101720,100550,99420,87.28,13.600000000000001,4.17,4.38,4.42,4.47,4.5600000000000005,4.68,5.04,5.47,6.49,36.11,38.79,40.93,43.52,46.62,50.04,55.59,61.74,68.68,24.77,24.330000000000002,24.16,24,23.87,23.75,23.71,23.69,24.05,N/A,N/A +2012,8,22,17,30,101650,100500,99380,73.62,0,2.3000000000000003,2.37,2.38,2.42,2.5500000000000003,2.79,3.15,3.5700000000000003,4.19,51.57,53.03,54.230000000000004,56.11,58.88,62.79,65.65,68.05,69.47,26.69,26.35,26.23,26.12,26.11,26.18,26.3,26.42,26.29,N/A,N/A +2012,8,22,18,30,101680,100530,99410,74.99,0,5.09,5.33,5.33,5.3100000000000005,5.28,5.24,5.2,5.16,5.07,117.68,117.11,116.77,116.4,116.04,115.68,115.29,114.92,114.11,27.25,26.84,26.650000000000002,26.45,26.26,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A +2012,8,22,19,30,101700,100550,99430,84.34,0,5.62,5.96,6.01,6.03,6.03,6.03,6.0200000000000005,6,5.96,150.8,151.18,151.41,151.63,151.83,152.03,152.21,152.37,152.72,26.830000000000002,26.38,26.18,25.97,25.77,25.57,25.37,25.18,24.79,N/A,N/A +2012,8,22,20,30,101640,100480,99370,77.18,0,4.79,5.1000000000000005,5.15,5.18,5.2,5.21,5.21,5.22,5.22,132.48,132.59,132.71,132.82,132.91,133,133.09,133.16,133.32,27.330000000000002,26.92,26.73,26.52,26.32,26.13,25.93,25.740000000000002,25.35,N/A,N/A +2012,8,22,21,30,101590,100430,99320,77.16,0,4.68,4.97,5.03,5.0600000000000005,5.08,5.09,5.1000000000000005,5.1000000000000005,5.11,119.48,119.83,120.07000000000001,120.29,120.47,120.65,120.82000000000001,120.97,121.29,27.5,27.1,26.91,26.7,26.51,26.310000000000002,26.12,25.93,25.55,N/A,N/A +2012,8,22,22,30,101560,100410,99290,77.92,0,3.97,4.19,4.24,4.2700000000000005,4.29,4.3,4.3100000000000005,4.32,4.34,112.23,112.11,112.05,111.97,111.89,111.83,111.76,111.68,111.54,27.5,27.1,26.92,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A +2012,8,22,23,30,101540,100390,99280,80.31,0,4.45,4.68,4.7,4.7,4.69,4.68,4.67,4.66,4.63,115.51,114.76,114.25,113.74000000000001,113.27,112.81,112.34,111.9,111.01,27.39,26.990000000000002,26.8,26.6,26.400000000000002,26.21,26.01,25.830000000000002,25.44,N/A,N/A +2012,8,23,0,30,101530,100380,99260,79.3,0,4.29,4.54,4.59,4.61,4.63,4.64,4.64,4.65,4.66,124.43,124.34,124.25,124.14,124.03,123.92,123.8,123.69,123.44,27.32,26.92,26.73,26.53,26.330000000000002,26.14,25.95,25.76,25.37,N/A,N/A +2012,8,23,1,30,101510,100360,99250,80.04,0,4.88,5.2,5.2700000000000005,5.3100000000000005,5.34,5.36,5.37,5.37,5.37,120.83,121.15,121.32000000000001,121.47,121.59,121.69,121.79,121.88,122.03,27.34,26.93,26.740000000000002,26.53,26.34,26.14,25.95,25.76,25.37,N/A,N/A +2012,8,23,2,30,101510,100360,99250,77.27,0,5.84,6.21,6.28,6.32,6.34,6.3500000000000005,6.36,6.36,6.36,119.72,119.56,119.45,119.35000000000001,119.27,119.18,119.11,119.04,118.9,27.62,27.21,27.02,26.82,26.62,26.43,26.240000000000002,26.05,25.66,N/A,N/A +2012,8,23,3,30,101520,100370,99260,75.86,0,5.6000000000000005,6.01,6.1000000000000005,6.16,6.2,6.23,6.25,6.2700000000000005,6.3100000000000005,124.08,124.26,124.33,124.39,124.44,124.49000000000001,124.54,124.59,124.68,27.75,27.35,27.16,26.96,26.76,26.57,26.37,26.18,25.8,N/A,N/A +2012,8,23,4,30,101520,100370,99260,74.55,0,6.12,6.59,6.7,6.7700000000000005,6.82,6.8500000000000005,6.88,6.91,6.94,133.38,132.78,132.57,132.39000000000001,132.25,132.13,132.03,131.93,131.77,28.11,27.72,27.54,27.34,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A +2012,8,23,5,30,101510,100360,99240,77.48,0,5.89,6.32,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.58,131.38,131.46,131.47,131.46,131.45,131.43,131.41,131.4,131.34,27.94,27.54,27.35,27.14,26.95,26.75,26.55,26.36,25.98,N/A,N/A +2012,8,23,6,30,101540,100390,99280,75.23,0,6.05,6.48,6.57,6.61,6.640000000000001,6.66,6.67,6.67,6.68,146.17000000000002,146.28,146.33,146.38,146.42000000000002,146.45000000000002,146.49,146.52,146.58,28.02,27.64,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.09,N/A,N/A +2012,8,23,7,30,101540,100400,99280,74.61,0,5.19,5.57,5.66,5.73,5.7700000000000005,5.8100000000000005,5.84,5.87,5.92,147.01,146.76,146.70000000000002,146.64000000000001,146.58,146.53,146.48,146.44,146.35,28.19,27.810000000000002,27.63,27.43,27.240000000000002,27.05,26.85,26.66,26.28,N/A,N/A +2012,8,23,8,30,101550,100400,99290,74.88,0,4.87,5.23,5.32,5.37,5.41,5.45,5.48,5.5,5.55,147.91,148.18,148.33,148.45000000000002,148.56,148.67000000000002,148.75,148.84,149.01,28.3,27.93,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A +2012,8,23,9,30,101540,100390,99280,77.13,0,4.0200000000000005,4.23,4.28,4.3,4.3100000000000005,4.32,4.33,4.34,4.3500000000000005,121.42,122.04,122.52,123.04,123.51,123.97,124.43,124.88000000000001,125.79,28.22,27.86,27.68,27.48,27.28,27.09,26.89,26.71,26.32,N/A,N/A +2012,8,23,10,30,101550,100400,99290,76.68,0,5.14,5.51,5.58,5.62,5.65,5.67,5.69,5.7,5.72,136.75,136.9,136.97,137.05,137.12,137.20000000000002,137.29,137.37,137.55,28.400000000000002,28.04,27.86,27.66,27.47,27.28,27.080000000000002,26.900000000000002,26.51,N/A,N/A +2012,8,23,11,30,101560,100410,99290,89.5,0,11.59,12.620000000000001,12.83,12.91,12.950000000000001,12.950000000000001,12.94,12.91,12.83,203.73000000000002,203.43,203.20000000000002,202.96,202.75,202.53,202.31,202.1,201.63,26.38,25.830000000000002,25.61,25.39,25.2,25.01,24.82,24.64,24.28,N/A,N/A +2012,8,23,12,30,101570,100420,99300,85.57000000000001,0.4,6.93,7.390000000000001,7.48,7.5200000000000005,7.54,7.54,7.54,7.5200000000000005,7.48,166.65,167.36,167.76,168.15,168.58,169.01,169.58,170.13,171.75,26.41,25.94,25.75,25.55,25.35,25.17,24.98,24.810000000000002,24.46,N/A,N/A +2012,8,23,13,30,101610,100450,99340,79.06,0,5.18,5.5,5.5600000000000005,5.6000000000000005,5.62,5.64,5.66,5.67,5.69,182.26,182.69,182.77,182.88,182.98,183.08,183.20000000000002,183.33,183.62,27.5,27.1,26.92,26.71,26.52,26.330000000000002,26.13,25.95,25.57,N/A,N/A +2012,8,23,14,30,101610,100460,99350,77.13,0,4.94,5.28,5.37,5.42,5.47,5.5,5.53,5.55,5.6000000000000005,169.44,169.89000000000001,170.21,170.49,170.73,170.95000000000002,171.16,171.36,171.73,28.13,27.75,27.580000000000002,27.37,27.18,26.990000000000002,26.79,26.6,26.22,N/A,N/A +2012,8,23,15,30,101630,100480,99370,74.71000000000001,0,5.57,5.99,6.09,6.15,6.2,6.23,6.2700000000000005,6.29,6.34,188.36,188.59,188.67000000000002,188.77,188.86,188.95000000000002,189.05,189.14000000000001,189.32,28.35,27.98,27.8,27.6,27.41,27.22,27.02,26.84,26.45,N/A,N/A +2012,8,23,16,30,101620,100470,99360,73.10000000000001,0,4.95,5.3100000000000005,5.4,5.45,5.49,5.53,5.55,5.58,5.62,184.87,185.1,185.22,185.35,185.45000000000002,185.55,185.65,185.73,185.89000000000001,28.64,28.29,28.11,27.91,27.72,27.53,27.330000000000002,27.14,26.76,N/A,N/A +2012,8,23,17,30,101630,100480,99370,77.51,0.7000000000000001,6.4,6.76,6.8100000000000005,6.83,6.83,6.83,6.83,6.82,6.82,200.92000000000002,201.69,202.01,202.28,202.51,202.70000000000002,202.87,203.01,203.17000000000002,28.03,27.650000000000002,27.47,27.28,27.1,26.91,26.73,26.55,26.2,N/A,N/A +2012,8,23,18,30,101620,100470,99360,75.51,0,6.2700000000000005,6.72,6.78,6.8100000000000005,6.82,6.82,6.8100000000000005,6.8,6.78,218.61,217.76,217.28,216.8,216.38,215.98000000000002,215.59,215.21,214.48000000000002,28.51,28.14,27.97,27.77,27.57,27.39,27.19,27,26.62,N/A,N/A +2012,8,23,19,30,101650,100500,99380,80.9,0.4,3.42,3.5,3.49,3.46,3.42,3.37,3.29,3.22,2.96,248.15,247.66,247.39000000000001,247.12,246.85,246.57,246.21,245.84,244.34,27.1,26.7,26.51,26.310000000000002,26.13,25.95,25.76,25.580000000000002,25.240000000000002,N/A,N/A +2012,8,23,20,30,101590,100430,99320,82.65,0,1.28,1.17,1.11,1.07,1.05,1.04,1.06,1.08,1.18,328.82,318.48,311.97,304.37,297.13,289.91,282.67,275.76,262.89,27.2,26.830000000000002,26.66,26.47,26.29,26.11,25.92,25.75,25.400000000000002,N/A,N/A +2012,8,23,21,30,101530,100380,99270,80,0,1.8900000000000001,2.17,2.29,2.41,2.52,2.62,2.71,2.8000000000000003,2.96,159.26,163.17000000000002,165.14000000000001,166.68,167.93,168.97,169.86,170.65,171.96,27.92,27.57,27.39,27.2,27.01,26.82,26.63,26.45,26.080000000000002,N/A,N/A +2012,8,23,22,30,101520,100370,99260,74.43,0,3.67,3.96,4.04,4.11,4.17,4.22,4.2700000000000005,4.32,4.41,169.13,168.97,168.91,168.88,168.84,168.8,168.77,168.73,168.67000000000002,28.39,28.04,27.87,27.67,27.48,27.3,27.1,26.92,26.55,N/A,N/A +2012,8,23,23,30,101470,100330,99220,71.49,0,3.5500000000000003,3.86,3.97,4.0600000000000005,4.14,4.21,4.28,4.34,4.46,175.86,175.23,174.96,174.74,174.56,174.4,174.25,174.11,173.86,28.67,28.34,28.18,27.98,27.8,27.61,27.42,27.240000000000002,26.86,N/A,N/A +2012,8,24,0,30,101440,100290,99180,61.75,0,5.22,5.61,5.66,5.69,5.71,5.72,5.72,5.72,5.72,160.03,160.11,160.20000000000002,160.25,160.27,160.3,160.31,160.31,160.3,29.13,28.82,28.650000000000002,28.45,28.27,28.080000000000002,27.88,27.7,27.32,N/A,N/A +2012,8,24,1,30,101440,100300,99190,61.95,0,6,6.55,6.66,6.73,6.78,6.8100000000000005,6.8500000000000005,6.87,6.91,159.69,159.61,159.61,159.6,159.6,159.59,159.58,159.56,159.54,29.1,28.78,28.61,28.41,28.22,28.03,27.84,27.650000000000002,27.26,N/A,N/A +2012,8,24,2,30,101430,100280,99170,66.46000000000001,0,6.8100000000000005,7.3500000000000005,7.46,7.5200000000000005,7.55,7.57,7.58,7.59,7.59,156.34,156.21,156.16,156.14000000000001,156.12,156.11,156.1,156.09,156.08,28.89,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.04,N/A,N/A +2012,8,24,3,30,101410,100270,99160,65.3,0,6.2,6.72,6.86,6.95,7.03,7.09,7.140000000000001,7.19,7.29,161.19,160.49,160.11,159.72,159.39000000000001,159.07,158.77,158.48,157.94,28.93,28.61,28.44,28.25,28.060000000000002,27.87,27.68,27.5,27.12,N/A,N/A +2012,8,24,4,30,101380,100240,99130,66.05,0,5.49,5.98,6.11,6.21,6.28,6.3500000000000005,6.41,6.46,6.5600000000000005,158.19,158.29,158.26,158.21,158.15,158.09,158.02,157.96,157.81,28.94,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,8,24,5,30,101380,100240,99130,72.33,0,5.4,5.84,5.94,6.01,6.0600000000000005,6.09,6.13,6.15,6.2,163.57,163.09,162.76,162.45000000000002,162.19,161.94,161.71,161.5,161.09,28.8,28.46,28.29,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.96,N/A,N/A +2012,8,24,6,30,101380,100240,99130,80.44,0,6.78,7.34,7.46,7.53,7.58,7.61,7.63,7.65,7.67,168.66,168.58,168.54,168.5,168.46,168.43,168.39000000000001,168.35,168.28,28.330000000000002,27.96,27.78,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.42,N/A,N/A +2012,8,24,7,30,101400,100260,99150,75.81,0,5.6000000000000005,6.12,6.25,6.36,6.45,6.5200000000000005,6.58,6.640000000000001,6.75,176.03,176.38,176.64000000000001,176.9,177.12,177.32,177.51,177.68,177.99,28.66,28.32,28.150000000000002,27.96,27.77,27.59,27.400000000000002,27.22,26.85,N/A,N/A +2012,8,24,8,30,101410,100260,99160,75.91,0,6.07,6.5200000000000005,6.63,6.69,6.74,6.78,6.8100000000000005,6.83,6.88,192.02,192.57,192.85,193.12,193.37,193.59,193.81,194.02,194.43,28.64,28.29,28.12,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A +2012,8,24,9,30,101420,100270,99160,76.99,0,6.5,6.99,7.1000000000000005,7.15,7.18,7.2,7.21,7.21,7.2,211.31,210.52,209.97,209.43,208.97,208.53,208.11,207.72,206.98000000000002,28.69,28.35,28.17,27.97,27.78,27.580000000000002,27.39,27.2,26.810000000000002,N/A,N/A +2012,8,24,10,30,101410,100270,99160,74.97,0,6.93,7.57,7.71,7.79,7.8500000000000005,7.88,7.91,7.930000000000001,7.94,199.58,199.26,199.14000000000001,199.05,198.98000000000002,198.92000000000002,198.88,198.83,198.76,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.1,N/A,N/A +2012,8,24,11,30,101430,100290,99180,73.41,0,6.26,6.8,6.94,7.0200000000000005,7.08,7.13,7.17,7.2,7.25,198.59,198.51,198.55,198.6,198.65,198.70000000000002,198.75,198.81,198.92000000000002,28.97,28.650000000000002,28.48,28.28,28.1,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A +2012,8,24,12,30,101420,100270,99170,74.65,0,5.61,6.05,6.16,6.22,6.2700000000000005,6.3,6.33,6.3500000000000005,6.38,206.37,206.13,206.03,205.92000000000002,205.83,205.74,205.65,205.57,205.41,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.36,26.98,N/A,N/A +2012,8,24,13,30,101420,100280,99170,76.3,0,5.2700000000000005,5.69,5.79,5.8500000000000005,5.9,5.93,5.96,5.98,6.01,211.24,211.37,211.42000000000002,211.47,211.52,211.57,211.63,211.69,211.81,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A +2012,8,24,14,30,101470,100320,99220,75.15,0,5.07,5.42,5.47,5.5,5.51,5.51,5.5,5.49,5.47,214.16,214.16,214.27,214.38,214.47,214.55,214.64000000000001,214.71,214.86,28.79,28.45,28.29,28.080000000000002,27.900000000000002,27.7,27.51,27.32,26.94,N/A,N/A +2012,8,24,15,30,101450,100310,99200,70.08,0,5.1000000000000005,5.43,5.5,5.53,5.55,5.5600000000000005,5.58,5.58,5.6000000000000005,234.08,233.74,233.52,233.31,233.13,232.96,232.79,232.63,232.33,28.990000000000002,28.67,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.560000000000002,27.18,N/A,N/A +2012,8,24,16,30,101460,100320,99210,74.06,0,3.17,3.36,3.4,3.42,3.44,3.46,3.47,3.49,3.5100000000000002,221.4,220.94,220.6,220.27,219.96,219.65,219.35,219.08,218.51,28.77,28.43,28.25,28.05,27.86,27.68,27.48,27.29,26.91,N/A,N/A +2012,8,24,17,30,101450,100310,99200,73.47,0,3.12,3.31,3.36,3.39,3.42,3.44,3.46,3.47,3.5,198.54,198.72,198.78,198.84,198.9,198.96,199.02,199.08,199.22,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,8,24,18,30,101490,100340,99220,83.93,0,11.09,12.13,12.32,12.4,12.43,12.43,12.4,12.370000000000001,12.25,164.44,164.68,164.70000000000002,164.71,164.72,164.74,164.76,164.77,164.82,27.36,26.89,26.68,26.47,26.27,26.080000000000002,25.88,25.7,25.330000000000002,N/A,N/A +2012,8,24,19,30,101450,100290,99170,87.06,0,9.91,10.67,10.8,10.83,10.83,10.81,10.76,10.71,10.55,173.06,173.56,173.83,174.12,174.41,174.70000000000002,175.06,175.4,176.34,26.57,26.080000000000002,25.88,25.68,25.490000000000002,25.310000000000002,25.13,24.96,24.64,N/A,N/A +2012,8,24,20,30,101420,100270,99160,77.05,0,8.75,9.46,9.620000000000001,9.700000000000001,9.76,9.790000000000001,9.82,9.84,9.870000000000001,187.31,187.48,187.59,187.72,187.85,187.99,188.16,188.33,188.78,27.42,26.990000000000002,26.810000000000002,26.61,26.43,26.25,26.060000000000002,25.89,25.55,N/A,N/A +2012,8,24,21,30,101390,100240,99120,83.03,0,7.78,8.39,8.52,8.59,8.64,8.67,8.69,8.71,8.73,179.75,180.05,180.27,180.49,180.71,180.93,181.15,181.36,181.86,27.29,26.85,26.66,26.45,26.26,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,8,24,22,30,101390,100240,99130,77.34,0,8.6,9.32,9.48,9.56,9.620000000000001,9.66,9.68,9.700000000000001,9.71,194.70000000000002,194.65,194.59,194.53,194.47,194.43,194.37,194.32,194.19,27.96,27.560000000000002,27.38,27.18,26.98,26.79,26.6,26.41,26.03,N/A,N/A +2012,8,24,23,30,101350,100210,99100,72.91,0,6.49,6.99,7.1000000000000005,7.16,7.2,7.23,7.26,7.28,7.3100000000000005,184.79,184.67000000000002,184.64000000000001,184.59,184.55,184.51,184.47,184.42000000000002,184.31,28.35,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.05,26.87,26.490000000000002,N/A,N/A +2012,8,25,0,30,101310,100170,99060,71.49,0,6.5600000000000005,7.1000000000000005,7.21,7.28,7.32,7.3500000000000005,7.38,7.4,7.43,172.97,173,173.06,173.11,173.16,173.19,173.24,173.28,173.35,28.52,28.17,27.990000000000002,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A +2012,8,25,1,30,101270,100130,99020,76.45,0,6.24,6.75,6.87,6.94,6.99,7.03,7.07,7.1000000000000005,7.15,157.76,157.71,157.71,157.71,157.70000000000002,157.69,157.67000000000002,157.66,157.64000000000001,28.43,28.060000000000002,27.89,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A +2012,8,25,2,30,101280,100140,99030,81.33,0,6.99,7.5600000000000005,7.68,7.74,7.78,7.8100000000000005,7.83,7.8500000000000005,7.86,150.28,150.93,151.31,151.67000000000002,152,152.31,152.62,152.91,153.49,28.25,27.88,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.35,N/A,N/A +2012,8,25,3,30,101270,100130,99020,80.71000000000001,0,7.390000000000001,8.03,8.17,8.26,8.31,8.36,8.38,8.41,8.44,155.5,155.57,155.62,155.67000000000002,155.72,155.77,155.82,155.87,155.97,28.310000000000002,27.93,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A +2012,8,25,4,30,101290,100150,99040,78.93,0,7.11,7.74,7.92,8.040000000000001,8.13,8.21,8.28,8.34,8.46,151.84,152.51,152.78,153.03,153.25,153.46,153.65,153.84,154.19,28.55,28.21,28.04,27.84,27.66,27.47,27.28,27.1,26.73,N/A,N/A +2012,8,25,5,30,101280,100140,99040,75.63,0,8.21,9.02,9.22,9.34,9.43,9.5,9.55,9.59,9.66,157.46,157.97,158.15,158.29,158.4,158.49,158.57,158.63,158.72,29.05,28.73,28.57,28.37,28.19,28,27.8,27.62,27.240000000000002,N/A,N/A +2012,8,25,6,30,101260,100120,99010,75.67,0,7.04,7.8,7.99,8.11,8.21,8.290000000000001,8.35,8.4,8.49,162.13,162.29,162.4,162.52,162.62,162.72,162.82,162.9,163.08,29.1,28.8,28.63,28.44,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A +2012,8,25,7,30,101300,100160,99050,79.4,0,8.42,9.17,9.35,9.450000000000001,9.52,9.57,9.61,9.65,9.72,161.32,161.47,161.53,161.6,161.69,161.76,161.86,161.95000000000002,162.17000000000002,28.44,28.1,27.93,27.740000000000002,27.560000000000002,27.38,27.19,27.02,26.67,N/A,N/A +2012,8,25,8,30,101320,100170,99060,83.19,0,8.46,9.27,9.46,9.57,9.64,9.700000000000001,9.73,9.76,9.8,170.34,170.51,170.58,170.66,170.71,170.76,170.81,170.86,170.95000000000002,28.28,27.92,27.740000000000002,27.54,27.35,27.150000000000002,26.96,26.78,26.39,N/A,N/A +2012,8,25,9,30,101340,100200,99090,83.29,0,8.13,8.870000000000001,9.040000000000001,9.14,9.200000000000001,9.24,9.27,9.290000000000001,9.31,167.79,168.18,168.39000000000001,168.59,168.77,168.94,169.1,169.25,169.55,28.51,28.16,27.990000000000002,27.79,27.6,27.400000000000002,27.21,27.02,26.64,N/A,N/A +2012,8,25,10,30,101320,100180,99070,83.25,0,6.46,7,7.12,7.19,7.24,7.28,7.3,7.33,7.37,170.18,170.39000000000001,170.5,170.6,170.68,170.75,170.83,170.9,171.06,28.44,28.09,27.92,27.72,27.54,27.35,27.16,26.97,26.6,N/A,N/A +2012,8,25,11,30,101330,100190,99080,83.28,0,8.07,8.81,8.96,9.03,9.09,9.120000000000001,9.14,9.16,9.17,160.28,160.36,160.48,160.6,160.72,160.85,160.98,161.1,161.38,28.51,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.650000000000002,N/A,N/A +2012,8,25,12,30,101360,100220,99110,78.97,0,7.5200000000000005,8.21,8.38,8.48,8.55,8.61,8.65,8.69,8.75,158.6,159.13,159.41,159.69,159.93,160.16,160.39000000000001,160.6,161.02,28.79,28.47,28.3,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A +2012,8,25,13,30,101370,100230,99120,80.31,0,6.83,7.6000000000000005,7.8100000000000005,7.96,8.08,8.17,8.25,8.31,8.42,164.25,164.26,164.26,164.28,164.29,164.32,164.36,164.39000000000001,164.48,28.8,28.490000000000002,28.32,28.13,27.94,27.75,27.560000000000002,27.38,27,N/A,N/A +2012,8,25,14,30,101390,100250,99140,80.04,0,6.92,7.59,7.76,7.87,7.96,8.02,8.08,8.13,8.21,165.44,165.5,165.47,165.43,165.38,165.33,165.27,165.22,165.1,28.79,28.47,28.3,28.1,27.91,27.72,27.53,27.35,26.97,N/A,N/A +2012,8,25,15,30,101390,100240,99140,79.82000000000001,0,7.5200000000000005,8.24,8.4,8.5,8.57,8.620000000000001,8.66,8.69,8.73,163.03,162.96,162.93,162.91,162.89000000000001,162.88,162.88,162.88,162.87,28.900000000000002,28.580000000000002,28.41,28.21,28.03,27.84,27.64,27.46,27.080000000000002,N/A,N/A +2012,8,25,16,30,101430,100280,99180,78.47,0,7.21,7.86,8.01,8.09,8.15,8.19,8.23,8.26,8.3,159.69,159.92000000000002,160,160.08,160.14000000000001,160.19,160.23,160.28,160.36,28.98,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A +2012,8,25,17,30,101410,100260,99160,79.2,0,7.5600000000000005,8.31,8.5,8.61,8.69,8.75,8.8,8.84,8.9,161.65,161.47,161.43,161.39000000000001,161.35,161.32,161.28,161.25,161.20000000000002,28.96,28.63,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A +2012,8,25,18,30,101380,100240,99140,80.86,0,8,8.74,8.9,8.98,9.040000000000001,9.07,9.09,9.1,9.11,157.96,158.08,158.09,158.11,158.14000000000001,158.17000000000002,158.21,158.25,158.35,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.5,27.12,N/A,N/A +2012,8,25,19,30,101390,100250,99140,80.27,0,9.27,10.16,10.38,10.48,10.55,10.58,10.61,10.61,10.61,149.46,149.59,149.65,149.67000000000002,149.68,149.68,149.67000000000002,149.67000000000002,149.65,28.93,28.62,28.45,28.25,28.07,27.88,27.69,27.5,27.13,N/A,N/A +2012,8,25,20,30,101360,100220,99110,82.2,0,8.98,9.89,10.1,10.23,10.31,10.36,10.4,10.43,10.450000000000001,162.47,162.56,162.56,162.57,162.58,162.6,162.62,162.64000000000001,162.69,28.87,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.43,27.04,N/A,N/A +2012,8,25,21,30,101380,100240,99130,81.23,0,9.07,9.88,10.05,10.13,10.18,10.21,10.22,10.22,10.23,165.85,165.79,165.78,165.75,165.73,165.71,165.71,165.71,165.68,28.87,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A +2012,8,25,22,30,101440,100290,99170,87.60000000000001,0,9.63,10.28,10.47,10.52,10.55,10.56,10.57,10.6,10.84,208.42000000000002,207.88,207.65,207.25,206.82,206.27,205.59,204.84,202.44,26.13,25.67,25.490000000000002,25.310000000000002,25.17,25.03,24.92,24.82,24.78,N/A,N/A +2012,8,25,23,30,101410,100260,99140,86.60000000000001,0,5.86,6.3100000000000005,6.41,6.49,6.5600000000000005,6.65,6.78,6.92,7.79,178.8,178.53,178.72,178.87,179.01,179.14000000000001,179.3,179.47,179.84,26.6,26.2,26.02,25.84,25.67,25.51,25.37,25.23,25.18,N/A,N/A +2012,8,26,0,30,101350,100200,99090,87.36,0,7.2700000000000005,7.75,7.82,7.84,7.83,7.8100000000000005,7.78,7.74,7.66,157.52,158.02,158.48,158.98,159.48,159.98,160.57,161.14000000000001,162.58,27.03,26.61,26.42,26.22,26.03,25.84,25.650000000000002,25.48,25.11,N/A,N/A +2012,8,26,1,30,101390,100240,99130,77.10000000000001,0,5.13,5.49,5.58,5.63,5.67,5.7,5.73,5.7700000000000005,5.8500000000000005,138.96,139.29,139.45000000000002,139.62,139.79,139.96,140.17000000000002,140.39000000000001,141,27.84,27.48,27.3,27.1,26.92,26.73,26.54,26.36,25.990000000000002,N/A,N/A +2012,8,26,2,30,101400,100250,99130,90.89,0,9.01,9.69,9.76,9.75,9.700000000000001,9.64,9.55,9.46,9.23,109.60000000000001,110.33,110.68,111.03,111.38,111.72,112.08,112.42,113.19,27.01,26.560000000000002,26.37,26.17,25.98,25.8,25.61,25.44,25.080000000000002,N/A,N/A +2012,8,26,3,30,101390,100240,99130,89.02,0,7.890000000000001,8.45,8.540000000000001,8.56,8.56,8.55,8.51,8.48,8.39,139.34,139.79,140.04,140.31,140.59,140.88,141.23,141.56,142.5,27.07,26.63,26.45,26.25,26.07,25.89,25.7,25.53,25.19,N/A,N/A +2012,8,26,4,30,101410,100270,99160,85.77,0,7.94,8.61,8.76,8.84,8.89,8.93,8.950000000000001,8.97,8.99,134.22,134.42000000000002,134.59,134.77,134.94,135.11,135.3,135.46,135.83,27.72,27.32,27.13,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A +2012,8,26,5,30,101420,100270,99160,85.43,0,8.38,9.14,9.33,9.44,9.52,9.57,9.620000000000001,9.65,9.700000000000001,137.6,137.88,137.95000000000002,138.03,138.1,138.17000000000002,138.23,138.29,138.43,27.98,27.6,27.41,27.21,27.01,26.82,26.63,26.44,26.05,N/A,N/A +2012,8,26,6,30,101420,100270,99160,82.02,0,9.6,10.34,10.41,10.4,10.35,10.290000000000001,10.200000000000001,10.1,9.89,164.75,164.59,164.18,163.70000000000002,163.22,162.72,162.17000000000002,161.64000000000001,160.43,27.64,27.22,27.04,26.85,26.67,26.490000000000002,26.310000000000002,26.14,25.8,N/A,N/A +2012,8,26,7,30,101490,100340,99230,86.48,0,7.46,8.07,8.21,8.290000000000001,8.35,8.4,8.43,8.46,8.52,141.23,141.22,141.17000000000002,141.11,141.04,140.98,140.9,140.82,140.65,27.76,27.37,27.19,26.990000000000002,26.79,26.61,26.42,26.23,25.86,N/A,N/A +2012,8,26,8,30,101440,100300,99190,79.58,0,6.7700000000000005,7.32,7.44,7.51,7.55,7.58,7.6000000000000005,7.61,7.63,137.54,137.44,137.4,137.37,137.33,137.31,137.28,137.25,137.23,28.29,27.93,27.76,27.560000000000002,27.36,27.18,26.98,26.79,26.41,N/A,N/A +2012,8,26,9,30,101470,100330,99220,80.57000000000001,0,6.9,7.49,7.63,7.7,7.76,7.8,7.82,7.8500000000000005,7.87,137.23,137.37,137.46,137.54,137.61,137.68,137.76,137.82,137.96,28.39,28.04,27.86,27.66,27.47,27.28,27.080000000000002,26.89,26.51,N/A,N/A +2012,8,26,10,30,101510,100360,99260,82.52,0,6.51,7.1000000000000005,7.24,7.33,7.390000000000001,7.44,7.48,7.5,7.55,133.06,133.03,133,132.98,132.96,132.94,132.92000000000002,132.91,132.87,28.45,28.1,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A +2012,8,26,11,30,101540,100390,99290,78.71000000000001,0,7.38,8.06,8.22,8.32,8.38,8.43,8.46,8.49,8.52,129.76,129.96,130.08,130.2,130.31,130.4,130.49,130.58,130.75,28.71,28.38,28.21,28.01,27.810000000000002,27.62,27.43,27.240000000000002,26.85,N/A,N/A +2012,8,26,12,30,101540,100390,99290,77.65,0,7.3100000000000005,7.94,8.07,8.120000000000001,8.16,8.18,8.19,8.19,8.17,133.74,134.04,134.17000000000002,134.31,134.43,134.55,134.67000000000002,134.78,135,28.7,28.37,28.2,28,27.810000000000002,27.62,27.42,27.240000000000002,26.85,N/A,N/A +2012,8,26,13,30,101620,100470,99360,71.67,0,6.0600000000000005,6.5600000000000005,6.67,6.73,6.7700000000000005,6.8,6.8100000000000005,6.83,6.8500000000000005,138.04,137.84,137.77,137.70000000000002,137.65,137.59,137.54,137.5,137.41,28.95,28.64,28.47,28.27,28.080000000000002,27.900000000000002,27.7,27.51,27.13,N/A,N/A +2012,8,26,14,30,101640,100490,99380,71.32000000000001,0,5.5600000000000005,6.0200000000000005,6.12,6.17,6.2,6.23,6.25,6.2700000000000005,6.29,141.57,141.16,140.98,140.81,140.66,140.51,140.38,140.24,139.99,28.93,28.61,28.44,28.25,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,8,26,15,30,101690,100540,99430,73.01,0,4.7700000000000005,5.1000000000000005,5.15,5.17,5.17,5.17,5.17,5.16,5.13,130.14000000000001,130.24,130.32,130.4,130.48,130.56,130.64000000000001,130.71,130.86,28.830000000000002,28.5,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.37,26.990000000000002,N/A,N/A +2012,8,26,16,30,101690,100540,99430,67.27,0,4.54,4.78,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8,4.78,4.7700000000000005,4.74,120.37,120.52,120.7,120.88,121.02,121.16,121.3,121.42,121.64,29,28.68,28.51,28.310000000000002,28.11,27.93,27.73,27.54,27.16,N/A,N/A +2012,8,26,17,30,101680,100530,99420,69.72,0,3.5700000000000003,3.83,3.89,3.93,3.96,3.98,3.99,4.01,4.03,112.96000000000001,113.32000000000001,113.49000000000001,113.64,113.76,113.85000000000001,113.95,114.04,114.21000000000001,28.96,28.63,28.46,28.26,28.07,27.88,27.68,27.5,27.11,N/A,N/A +2012,8,26,18,30,101680,100540,99420,68.11,0,3.58,3.8000000000000003,3.84,3.86,3.88,3.89,3.9,3.9,3.91,116.06,116.21000000000001,116.35000000000001,116.49000000000001,116.60000000000001,116.72,116.82000000000001,116.91,117.12,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A +2012,8,26,19,30,101680,100530,99420,64.57000000000001,0,2.82,3.02,3.08,3.13,3.16,3.19,3.22,3.24,3.29,117.01,117.10000000000001,117.22,117.33,117.42,117.5,117.58,117.66,117.83,29.19,28.87,28.69,28.5,28.3,28.11,27.92,27.73,27.35,N/A,N/A +2012,8,26,20,30,101620,100480,99370,71.79,0,3.91,4.21,4.28,4.33,4.37,4.41,4.44,4.46,4.51,121.22,121.37,121.5,121.63,121.77,121.89,122.02,122.14,122.39,28.94,28.59,28.42,28.22,28.03,27.84,27.64,27.45,27.07,N/A,N/A +2012,8,26,21,30,101580,100430,99320,70.38,0,3.73,4,4.0600000000000005,4.1,4.13,4.15,4.17,4.18,4.21,115.34,115.8,115.94,116.06,116.18,116.28,116.37,116.44,116.60000000000001,28.98,28.66,28.490000000000002,28.29,28.1,27.91,27.71,27.53,27.14,N/A,N/A +2012,8,26,22,30,101540,100390,99280,72.95,0,4.93,5.26,5.3,5.3100000000000005,5.32,5.32,5.3100000000000005,5.3,5.2700000000000005,123.55,122.96000000000001,122.69,122.4,122.14,121.89,121.63,121.4,120.91,28.92,28.59,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A +2012,8,26,23,30,101540,100390,99280,72.41,0,3.87,4.15,4.2,4.23,4.25,4.26,4.2700000000000005,4.28,4.29,109.62,109.71000000000001,109.77,109.83,109.89,109.94,110,110.06,110.19,28.91,28.6,28.43,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A +2012,8,27,0,30,101540,100390,99280,77.98,0,5.36,5.7700000000000005,5.8500000000000005,5.89,5.92,5.93,5.94,5.94,5.94,105.86,106.57000000000001,106.9,107.22,107.5,107.76,108,108.24000000000001,108.68,28.7,28.37,28.2,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,8,27,1,30,101480,100330,99220,78.68,0,4.5,4.8100000000000005,4.87,4.9,4.91,4.92,4.93,4.93,4.92,113.2,113.31,113.39,113.46000000000001,113.53,113.59,113.65,113.71000000000001,113.82000000000001,28.52,28.19,28.01,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A +2012,8,27,2,30,101510,100360,99250,79.67,0,5.29,5.65,5.71,5.74,5.75,5.75,5.75,5.74,5.72,124.59,124.52,124.47,124.42,124.38000000000001,124.34,124.29,124.25,124.18,28.46,28.12,27.94,27.75,27.560000000000002,27.36,27.17,26.98,26.6,N/A,N/A +2012,8,27,3,30,101500,100350,99240,81.74,0,4.74,5.07,5.13,5.16,5.18,5.19,5.19,5.19,5.19,120.54,120.69,120.77,120.84,120.89,120.92,120.96000000000001,121.01,121.08,28.36,28.01,27.84,27.64,27.45,27.26,27.07,26.88,26.5,N/A,N/A +2012,8,27,4,30,101490,100350,99240,78.78,0,4.3,4.58,4.64,4.66,4.68,4.69,4.7,4.7,4.7,119.59,119.89,120.05,120.2,120.34,120.48,120.61,120.74000000000001,120.99000000000001,28.400000000000002,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A +2012,8,27,5,30,101490,100340,99230,79.81,0,3.64,3.85,3.89,3.9,3.9,3.9,3.89,3.89,3.86,122.83,122.86,122.81,122.74000000000001,122.68,122.61,122.54,122.47,122.31,28.330000000000002,27.98,27.810000000000002,27.61,27.42,27.23,27.03,26.85,26.46,N/A,N/A +2012,8,27,6,30,101510,100360,99250,78.32000000000001,0,2.41,2.54,2.56,2.57,2.57,2.58,2.58,2.58,2.58,109.71000000000001,110.22,110.36,110.5,110.62,110.73,110.84,110.94,111.15,28.3,27.95,27.78,27.580000000000002,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A +2012,8,27,7,30,101530,100380,99270,74.06,0,2.24,2.38,2.41,2.44,2.46,2.48,2.49,2.5100000000000002,2.54,97.24000000000001,98.03,98.55,99.04,99.49000000000001,99.9,100.32000000000001,100.71000000000001,101.48,28.37,28.03,27.86,27.66,27.47,27.28,27.080000000000002,26.900000000000002,26.52,N/A,N/A +2012,8,27,8,30,101550,100400,99290,71.2,0,2.4,2.5,2.5,2.49,2.49,2.48,2.47,2.46,2.44,117.21000000000001,116.60000000000001,116.25,115.88,115.54,115.2,114.85000000000001,114.53,113.83,28.43,28.09,27.92,27.72,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,8,27,9,30,101550,100400,99290,71.3,0,1.3900000000000001,1.49,1.51,1.54,1.56,1.58,1.6,1.61,1.6500000000000001,103.74000000000001,103.82000000000001,103.92,104.05,104.15,104.23,104.31,104.39,104.57000000000001,28.39,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A +2012,8,27,10,30,101560,100410,99300,68.41,0,0.99,1.04,1.05,1.06,1.07,1.08,1.08,1.09,1.1,45.75,44.57,44.27,43.980000000000004,43.71,43.46,43.21,42.99,42.51,28.51,28.18,28.01,27.810000000000002,27.62,27.43,27.23,27.05,26.66,N/A,N/A +2012,8,27,11,30,101570,100420,99310,66.78,0,1.8900000000000001,1.94,1.94,1.93,1.92,1.9100000000000001,1.9000000000000001,1.8900000000000001,1.86,40.08,40.89,41.49,42.07,42.61,43.14,43.68,44.19,45.29,28.53,28.2,28.03,27.84,27.650000000000002,27.46,27.26,27.080000000000002,26.69,N/A,N/A +2012,8,27,12,30,101590,100440,99330,66.7,0,2.95,3.09,3.11,3.11,3.11,3.11,3.1,3.1,3.09,25.310000000000002,24.900000000000002,24.71,24.53,24.37,24.23,24.080000000000002,23.94,23.68,28.61,28.28,28.11,27.92,27.73,27.54,27.34,27.16,26.77,N/A,N/A +2012,8,27,13,30,101610,100460,99350,79.92,0,4.75,4.99,5.0200000000000005,5.01,5,4.98,4.96,4.93,4.87,25.150000000000002,25.34,25.51,25.68,25.84,26,26.17,26.34,26.71,27.830000000000002,27.45,27.27,27.07,26.88,26.69,26.490000000000002,26.310000000000002,25.93,N/A,N/A +2012,8,27,14,30,101640,100480,99370,79.53,0,4.46,4.68,4.69,4.68,4.67,4.64,4.62,4.59,4.53,19.79,19.77,19.8,19.830000000000002,19.85,19.87,19.89,19.900000000000002,19.93,27.69,27.32,27.14,26.94,26.740000000000002,26.560000000000002,26.36,26.18,25.8,N/A,N/A +2012,8,27,15,30,101620,100470,99360,77.95,0,4.14,4.36,4.39,4.4,4.4,4.39,4.38,4.37,4.3500000000000005,13.540000000000001,13.35,13.24,13.120000000000001,13,12.88,12.74,12.61,12.3,27.77,27.39,27.21,27.02,26.82,26.63,26.44,26.26,25.88,N/A,N/A +2012,8,27,16,30,101620,100470,99360,72.28,0,3.74,3.97,4.0200000000000005,4.0600000000000005,4.08,4.1,4.12,4.13,4.16,16.81,16.45,16.17,15.89,15.620000000000001,15.35,15.07,14.8,14.18,28.2,27.85,27.67,27.48,27.29,27.1,26.900000000000002,26.72,26.34,N/A,N/A +2012,8,27,17,30,101570,100420,99310,68.86,0,2.4,2.5300000000000002,2.56,2.58,2.6,2.62,2.64,2.66,2.7,26.09,24.8,24.09,23.38,22.72,22.080000000000002,21.43,20.830000000000002,19.56,28.57,28.23,28.060000000000002,27.86,27.67,27.490000000000002,27.29,27.11,26.740000000000002,N/A,N/A +2012,8,27,18,30,101510,100360,99250,68.04,0,1.17,1.24,1.27,1.28,1.31,1.32,1.35,1.37,1.42,11.82,9.96,8.9,7.9,7,6.16,5.3100000000000005,4.49,2.89,28.78,28.44,28.27,28.07,27.88,27.7,27.5,27.32,26.95,N/A,N/A +2012,8,27,19,30,101470,100330,99220,67.17,0,1.02,1.06,1.07,1.07,1.08,1.09,1.1,1.11,1.1400000000000001,245.58,249.66,252.03,254.53,256.92,259.29,261.87,264.4,270.24,29.05,28.71,28.54,28.35,28.16,27.97,27.79,27.61,27.240000000000002,N/A,N/A +2012,8,27,20,30,101390,100250,99140,67.34,0,1.92,1.94,1.92,1.8900000000000001,1.85,1.82,1.78,1.73,1.6300000000000001,220.66,222,222.89000000000001,223.91,225.01,226.16,227.71,229.29,234.49,29.19,28.85,28.68,28.48,28.3,28.11,27.92,27.75,27.39,N/A,N/A +2012,8,27,21,30,101310,100170,99070,66.58,0,1.34,1.3,1.25,1.19,1.12,1.06,0.97,0.88,0.89,196.77,199.56,201.51,204.02,207.32,211.08,218.47,226.23000000000002,272.33,29.42,29.09,28.93,28.740000000000002,28.57,28.400000000000002,28.23,28.080000000000002,27.86,N/A,N/A +2012,8,27,22,30,101280,100140,99040,66.86,0,1.93,2.15,2.24,2.33,2.41,2.49,2.58,2.66,2.81,276.2,280.06,282.1,283.99,285.67,287.25,288.72,290.1,292.66,29.67,29.35,29.19,28.990000000000002,28.8,28.62,28.42,28.23,27.85,N/A,N/A +2012,8,27,23,30,101220,100080,98980,72.2,0,2.34,2.57,2.63,2.69,2.73,2.7800000000000002,2.83,2.87,2.96,300.98,303.15000000000003,304.39,305.48,306.44,307.31,308.15000000000003,308.95,310.42,29.75,29.46,29.3,29.11,28.93,28.740000000000002,28.55,28.37,28,N/A,N/A +2012,8,28,0,30,101200,100060,98960,75.64,0,6.83,7.3500000000000005,7.37,7.32,7.25,7.17,7.0600000000000005,6.95,6.69,335.29,335.31,335.25,335.16,335.05,334.93,334.78000000000003,334.63,334.21,29.37,29.07,28.92,28.73,28.560000000000002,28.38,28.2,28.03,27.69,N/A,N/A +2012,8,28,1,30,101190,100050,98950,73.8,0,6.67,7.2,7.28,7.3100000000000005,7.3500000000000005,7.41,7.66,7.98,8.11,331.96,332.36,332.65000000000003,333.02,333.51,334.12,335.42,336.98,338.43,29.55,29.3,29.16,29,28.85,28.72,28.67,28.66,28.51,N/A,N/A +2012,8,28,2,30,101180,100040,98940,72.92,0,6.13,6.63,6.71,6.74,6.7700000000000005,6.79,6.84,6.9,7.6000000000000005,336.85,337.13,337.27,337.46,337.71,338.02,338.64,339.33,347.63,29.38,29.1,28.95,28.77,28.61,28.44,28.3,28.16,28.29,N/A,N/A +2012,8,28,3,30,101150,100010,98910,75.08,0,6.0200000000000005,6.5,6.58,6.61,6.65,6.68,6.78,6.88,7.84,348.14,348.56,348.85,349.22,349.67,350.2,351.13,352.17,359.22,29.29,29,28.85,28.67,28.5,28.330000000000002,28.19,28.05,28.150000000000002,N/A,N/A +2012,8,28,4,30,101130,99990,98890,75.87,0,6.01,6.5200000000000005,6.62,6.67,6.71,6.74,6.78,6.82,6.97,348.59000000000003,349.13,349.49,349.88,350.29,350.72,351.29,351.86,353.84000000000003,29.18,28.88,28.73,28.54,28.37,28.19,28.01,27.85,27.54,N/A,N/A +2012,8,28,5,30,101130,99990,98880,75.65,0,6.5,7.05,7.140000000000001,7.19,7.22,7.25,7.28,7.33,7.55,357.78000000000003,358.27,358.55,358.91,359.31,359.77,0.44,1.1500000000000001,3.8000000000000003,29.14,28.84,28.68,28.490000000000002,28.310000000000002,28.14,27.96,27.79,27.5,N/A,N/A +2012,8,28,6,30,101120,99980,98870,76.56,0,6.58,7.140000000000001,7.24,7.28,7.32,7.3500000000000005,7.37,7.4,7.5,357.39,358.14,358.54,358.99,359.45,359.93,0.54,1.16,3.08,29.01,28.7,28.54,28.35,28.17,27.990000000000002,27.810000000000002,27.64,27.3,N/A,N/A +2012,8,28,7,30,101110,99970,98870,77.03,0,6.8100000000000005,7.33,7.42,7.45,7.47,7.48,7.5200000000000005,7.5600000000000005,7.96,4.17,4.69,5.04,5.45,5.92,6.45,7.24,8.07,11.92,28.8,28.490000000000002,28.330000000000002,28.150000000000002,27.990000000000002,27.830000000000002,27.68,27.54,27.39,N/A,N/A +2012,8,28,8,30,101080,99940,98840,76.04,0,6.29,6.75,6.82,6.8500000000000005,6.88,6.9,6.95,7.01,7.5200000000000005,3.74,4.2700000000000005,4.66,5.11,5.67,6.32,7.33,8.42,13.43,28.71,28.400000000000002,28.25,28.080000000000002,27.91,27.76,27.62,27.5,27.5,N/A,N/A +2012,8,28,9,30,101090,99950,98840,77.22,0,6.94,7.47,7.57,7.61,7.66,7.7,7.8,7.930000000000001,9.02,6.54,7,7.3100000000000005,7.65,8.05,8.52,9.290000000000001,10.14,14.96,28.47,28.14,27.98,27.8,27.63,27.47,27.330000000000002,27.21,27.330000000000002,N/A,N/A +2012,8,28,10,30,101060,99920,98820,74.24,0,7.09,7.66,7.7700000000000005,7.84,7.9,7.95,8.06,8.18,9.11,11.94,12.31,12.58,12.9,13.280000000000001,13.71,14.38,15.11,18.89,28.6,28.28,28.12,27.95,27.79,27.63,27.5,27.38,27.45,N/A,N/A +2012,8,28,11,30,101080,99940,98830,74.41,0,7.03,7.55,7.640000000000001,7.68,7.7,7.72,7.74,7.76,7.91,358.56,359.27,359.73,0.25,0.8200000000000001,1.42,2.22,3.04,5.83,28.29,27.94,27.78,27.59,27.41,27.240000000000002,27.07,26.91,26.62,N/A,N/A +2012,8,28,12,30,101070,99920,98820,74.51,0,7.99,8.66,8.78,8.84,8.88,8.91,8.93,8.950000000000001,9.02,0.16,0.85,1.27,1.72,2.2,2.7,3.31,3.9,5.57,28.17,27.8,27.63,27.44,27.25,27.080000000000002,26.89,26.72,26.38,N/A,N/A +2012,8,28,13,30,101060,99910,98800,76.98,0,7.47,8.02,8.11,8.15,8.18,8.2,8.23,8.27,8.61,9.040000000000001,9.47,9.75,10.05,10.4,10.77,11.33,11.91,14.72,27.76,27.38,27.2,27.01,26.84,26.66,26.490000000000002,26.330000000000002,26.12,N/A,N/A +2012,8,28,14,30,101080,99930,98820,75.81,0,7.05,7.57,7.65,7.7,7.73,7.75,7.8100000000000005,7.87,8.370000000000001,2.25,2.68,2.97,3.31,3.72,4.19,4.91,5.68,9.71,28.02,27.66,27.490000000000002,27.3,27.12,26.95,26.78,26.63,26.45,N/A,N/A +2012,8,28,15,30,101050,99910,98810,72.37,0,6.67,7.19,7.28,7.32,7.36,7.4,7.49,7.58,8.56,351.75,352.3,352.72,353.23,353.86,354.57,355.85,357.28000000000003,7.45,28.78,28.47,28.310000000000002,28.13,27.96,27.8,27.66,27.53,27.59,N/A,N/A +2012,8,28,16,30,101030,99890,98790,68.5,0,6.62,7.19,7.29,7.33,7.3500000000000005,7.36,7.37,7.38,7.43,344.95,345.5,345.86,346.29,346.77,347.29,347.99,348.71,351.19,29.54,29.28,29.13,28.95,28.78,28.61,28.44,28.29,28,N/A,N/A +2012,8,28,17,30,100970,99840,98750,65.19,0,4.53,4.96,5.07,5.18,5.29,5.41,5.57,5.73,6.17,355.8,356.71,357.40000000000003,358.23,359.18,0.26,1.52,2.81,5.41,30.66,30.52,30.42,30.28,30.14,30,29.87,29.75,29.51,N/A,N/A +2012,8,28,18,30,100900,99770,98680,57.15,0,8.21,9.27,9.56,9.74,9.86,9.92,9.94,9.94,9.88,346.68,347.24,347.63,348.09000000000003,348.54,349,349.47,349.94,350.92,31.64,31.67,31.61,31.5,31.37,31.220000000000002,31.07,30.91,30.580000000000002,N/A,N/A +2012,8,28,19,30,100840,99720,98630,61.54,0,5.79,6.74,7.07,7.36,7.61,7.84,8.06,8.25,8.6,349.01,350.24,351.13,352.32,353.52,354.8,356.04,357.21,359.15000000000003,31.62,31.77,31.78,31.75,31.69,31.61,31.51,31.400000000000002,31.12,N/A,N/A +2012,8,28,20,30,100760,99640,98550,63.190000000000005,0,5.96,7.11,7.53,7.92,8.25,8.53,8.78,8.99,9.3,349.98,350.83,351.45,352.19,352.93,353.7,354.5,355.26,356.69,31.84,32,32.02,31.990000000000002,31.94,31.87,31.77,31.67,31.41,N/A,N/A +2012,8,28,21,30,100710,99580,98500,59.82,0,7.9,9.44,9.98,10.5,10.92,11.290000000000001,11.58,11.84,12.22,1.32,2.36,2.98,3.5500000000000003,3.99,4.3500000000000005,4.6000000000000005,4.8,4.98,32.230000000000004,32.5,32.55,32.56,32.54,32.49,32.42,32.33,32.1,N/A,N/A +2012,8,28,22,30,100630,99510,98420,61.71,0,6.95,8.46,9.02,9.55,9.98,10.36,10.68,10.97,11.43,0.84,2.02,2.67,3.31,3.8200000000000003,4.26,4.6000000000000005,4.87,5.14,32.05,32.36,32.44,32.47,32.46,32.42,32.36,32.28,32.07,N/A,N/A +2012,8,28,23,30,100610,99480,98400,63.53,0,6.3100000000000005,7.78,8.34,8.870000000000001,9.33,9.74,10.11,10.450000000000001,11.03,352.55,353.91,354.74,355.59000000000003,356.32,357.01,357.56,358.02,358.61,31.91,32.32,32.44,32.52,32.54,32.52,32.45,32.37,32.12,N/A,N/A +2012,8,29,0,30,100600,99480,98400,61.17,0,7.86,9.32,9.790000000000001,10.17,10.47,10.72,10.950000000000001,11.16,11.56,4.88,5.14,5.36,5.7700000000000005,6.24,6.7700000000000005,7.2700000000000005,7.73,8.33,32.13,32.480000000000004,32.56,32.59,32.57,32.51,32.410000000000004,32.3,32,N/A,N/A +2012,8,29,1,30,100620,99490,98410,60.22,0,7.91,9.450000000000001,10.03,10.58,11.08,11.55,12.02,12.47,13.39,2.21,3.21,3.97,4.97,5.97,7.01,8.06,9.07,10.88,31.900000000000002,32.14,32.18,32.15,32.09,31.990000000000002,31.87,31.740000000000002,31.43,N/A,N/A +2012,8,29,2,30,100620,99500,98410,63.52,0,8.66,10.14,10.700000000000001,11.25,11.75,12.23,12.700000000000001,13.16,14,5.34,6.390000000000001,7.13,8.06,8.98,9.92,10.92,11.91,13.83,31.45,31.55,31.55,31.5,31.44,31.36,31.28,31.19,30.98,N/A,N/A +2012,8,29,3,30,100620,99490,98400,64.43,0,9.57,10.98,11.46,11.89,12.27,12.63,12.99,13.33,14.01,7.15,7.82,8.3,8.88,9.44,10.040000000000001,10.67,11.290000000000001,12.59,31.17,31.19,31.13,31.04,30.93,30.82,30.71,30.59,30.35,N/A,N/A +2012,8,29,4,30,100590,99460,98370,65.81,0,10.28,11.84,12.38,12.89,13.33,13.75,14.16,14.540000000000001,15.27,358.85,359.3,359.69,0.16,0.64,1.1500000000000001,1.7,2.2600000000000002,3.52,30.91,30.900000000000002,30.85,30.75,30.66,30.560000000000002,30.46,30.36,30.14,N/A,N/A +2012,8,29,5,30,100540,99410,98320,71.01,0,9.69,11.55,12.34,13.13,13.73,14.18,14.61,15.02,15.8,354.86,356.43,357.2,357.68,358.44,359.48,0.5700000000000001,1.6300000000000001,3.72,30.35,30.32,30.25,30.07,29.95,29.86,29.76,29.66,29.42,N/A,N/A +2012,8,29,6,30,100550,99420,98330,71.54,0,9.61,10.65,10.9,11.05,11.17,11.25,11.32,11.38,11.49,8.92,8.82,8.84,8.86,8.88,8.9,8.93,8.97,9.07,29.95,29.71,29.57,29.39,29.21,29.03,28.85,28.67,28.310000000000002,N/A,N/A +2012,8,29,7,30,100540,99400,98310,73.66,0,9.32,10.25,10.450000000000001,10.56,10.63,10.69,10.75,10.8,10.98,357.87,358.33,358.56,358.81,359.09000000000003,359.37,359.74,0.12,1.24,29.54,29.27,29.11,28.92,28.740000000000002,28.57,28.38,28.21,27.87,N/A,N/A +2012,8,29,8,30,100540,99400,98310,74,0,9.05,9.94,10.14,10.25,10.33,10.39,10.44,10.49,10.6,357.98,358.68,359.06,359.46,359.83,0.2,0.62,1.04,2.06,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.93,27.73,27.55,27.18,N/A,N/A +2012,8,29,9,30,100530,99400,98300,75.95,0,10.09,11.14,11.38,11.52,11.64,11.73,11.8,11.88,12.05,356.67,356.93,357.09000000000003,357.25,357.42,357.59000000000003,357.79,357.99,358.52,28.63,28.27,28.1,27.900000000000002,27.72,27.53,27.34,27.16,26.8,N/A,N/A +2012,8,29,10,30,100540,99400,98300,76.75,0,10.040000000000001,11,11.22,11.33,11.41,11.46,11.5,11.52,11.56,353.93,354.23,354.45,354.67,354.87,355.07,355.29,355.5,355.99,28.23,27.84,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.32,N/A,N/A +2012,8,29,11,30,100540,99400,98300,77.91,0,10.69,11.81,12.08,12.25,12.370000000000001,12.450000000000001,12.52,12.59,12.68,354.69,355.13,355.41,355.68,355.95,356.2,356.47,356.73,357.31,28.11,27.71,27.52,27.32,27.13,26.94,26.740000000000002,26.560000000000002,26.17,N/A,N/A +2012,8,29,12,30,100510,99370,98270,78.92,0,10.65,11.69,11.93,12.06,12.15,12.21,12.26,12.290000000000001,12.32,347.45,347.82,348.07,348.31,348.53000000000003,348.74,348.96,349.17,349.63,27.85,27.43,27.240000000000002,27.03,26.84,26.64,26.45,26.26,25.88,N/A,N/A +2012,8,29,13,30,100510,99370,98270,78.9,0,11.16,12.290000000000001,12.56,12.71,12.81,12.89,12.94,12.98,13.030000000000001,346.71,346.93,347.07,347.21,347.34000000000003,347.48,347.62,347.76,348.07,27.830000000000002,27.400000000000002,27.21,26.990000000000002,26.8,26.6,26.41,26.22,25.84,N/A,N/A +2012,8,29,14,30,100520,99380,98280,78.65,0,10.43,11.450000000000001,11.69,11.84,11.93,12,12.05,12.09,12.15,341.81,342,342.12,342.25,342.36,342.47,342.6,342.72,342.99,27.92,27.5,27.310000000000002,27.1,26.91,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,8,29,15,30,100500,99370,98270,77.54,0,9.92,10.9,11.120000000000001,11.25,11.34,11.4,11.44,11.48,11.52,338.3,338.6,338.8,338.99,339.17,339.36,339.54,339.72,340.1,28.330000000000002,27.95,27.77,27.57,27.37,27.18,26.990000000000002,26.8,26.42,N/A,N/A +2012,8,29,16,30,100450,99320,98220,74.69,0,10.55,11.68,11.94,12.09,12.200000000000001,12.27,12.33,12.370000000000001,12.41,331.87,332.34000000000003,332.6,332.87,333.12,333.35,333.59000000000003,333.81,334.29,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A +2012,8,29,17,30,100430,99300,98200,69.82000000000001,0,11.01,12.31,12.64,12.85,13,13.11,13.200000000000001,13.27,13.370000000000001,334.37,334.78000000000003,335.01,335.25,335.47,335.68,335.89,336.09000000000003,336.5,29.95,29.71,29.57,29.38,29.21,29.03,28.84,28.66,28.3,N/A,N/A +2012,8,29,18,30,100410,99280,98190,68.15,0,9.92,11.03,11.32,11.52,11.67,11.8,11.91,12,12.16,333.84000000000003,334.32,334.64,335.02,335.40000000000003,335.79,336.21,336.63,337.53000000000003,30.63,30.5,30.400000000000002,30.240000000000002,30.09,29.93,29.76,29.6,29.25,N/A,N/A +2012,8,29,19,30,100370,99240,98160,66.45,0,9.64,10.83,11.18,11.43,11.63,11.790000000000001,11.93,12.040000000000001,12.23,335.06,335.69,336.1,336.59000000000003,337.05,337.52,337.99,338.46,339.39,31.14,31.09,31.01,30.87,30.73,30.580000000000002,30.43,30.27,29.93,N/A,N/A +2012,8,29,20,30,100310,99190,98110,66.45,0,9.51,10.93,11.39,11.77,12.09,12.36,12.58,12.780000000000001,13.1,334.42,335.28000000000003,335.82,336.44,337,337.57,338.13,338.65000000000003,339.69,31.5,31.54,31.490000000000002,31.39,31.28,31.16,31.02,30.88,30.57,N/A,N/A +2012,8,29,21,30,100280,99160,98080,64.01,0,11.14,12.85,13.35,13.72,13.98,14.15,14.25,14.3,14.290000000000001,349.34000000000003,349.66,349.82,349.97,350.09000000000003,350.21,350.31,350.40000000000003,350.57,31.8,31.89,31.86,31.77,31.67,31.54,31.400000000000002,31.25,30.92,N/A,N/A +2012,8,29,22,30,100290,99170,98090,66.22,0,7.91,9.11,9.52,9.88,10.200000000000001,10.51,10.82,11.120000000000001,11.74,347.66,346.77,346.26,345.54,344.84000000000003,344.11,343.47,342.89,342.09000000000003,31.53,31.61,31.580000000000002,31.5,31.400000000000002,31.29,31.150000000000002,31.01,30.7,N/A,N/A +2012,8,29,23,30,100290,99170,98080,68.68,0,8,9.19,9.58,9.92,10.200000000000001,10.44,10.66,10.86,11.21,344.76,345.33,345.67,346.09000000000003,346.5,346.91,347.34000000000003,347.76,348.54,31.44,31.48,31.43,31.34,31.240000000000002,31.11,30.98,30.85,30.55,N/A,N/A +2012,8,30,0,30,100320,99190,98110,72.74,2.9000000000000004,8.63,9.43,9.77,10.33,10.96,11.69,12.370000000000001,13,14.17,16.32,15.02,13.81,11.78,9.9,8.01,6.73,5.7700000000000005,4.59,29.87,29.71,29.67,29.67,29.7,29.76,29.77,29.75,29.64,N/A,N/A +2012,8,30,1,30,100390,99260,98160,80.58,0,12.99,14.290000000000001,14.59,14.72,14.8,14.84,14.84,14.84,14.780000000000001,27.96,27,26.62,26.25,25.92,25.6,25.29,24.990000000000002,24.38,28.29,27.89,27.71,27.5,27.310000000000002,27.13,26.93,26.75,26.39,N/A,N/A +2012,8,30,2,30,100420,99280,98180,78.24,0,12.92,14.31,14.65,14.83,14.96,15.05,15.11,15.15,15.21,3.27,3.65,3.84,4.0200000000000005,4.19,4.34,4.49,4.64,4.95,28.03,27.6,27.400000000000002,27.19,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A +2012,8,30,3,30,100420,99280,98180,76.61,0,9.93,10.91,11.14,11.27,11.370000000000001,11.44,11.49,11.53,11.61,359.8,0.27,0.56,0.8300000000000001,1.09,1.33,1.58,1.82,2.32,27.96,27.55,27.36,27.150000000000002,26.96,26.76,26.560000000000002,26.37,25.990000000000002,N/A,N/A +2012,8,30,4,30,100420,99280,98180,78.47,0,9.540000000000001,10.53,10.790000000000001,10.96,11.09,11.19,11.27,11.35,11.48,357.63,357.96,358.13,358.29,358.43,358.58,358.71,358.84000000000003,359.12,27.63,27.2,27.01,26.8,26.6,26.41,26.21,26.02,25.64,N/A,N/A +2012,8,30,5,30,100400,99260,98150,78.37,0,9.5,10.370000000000001,10.59,10.72,10.8,10.870000000000001,10.92,10.96,11.03,351.35,351.6,351.78000000000003,351.94,352.08,352.22,352.36,352.5,352.8,27.38,26.93,26.740000000000002,26.53,26.34,26.150000000000002,25.95,25.77,25.39,N/A,N/A +2012,8,30,6,30,100430,99290,98180,78.34,0,10.14,11.11,11.35,11.48,11.58,11.64,11.69,11.72,11.76,346.26,346.57,346.71,346.82,346.91,346.98,347.04,347.1,347.2,27.37,26.93,26.73,26.52,26.32,26.13,25.92,25.73,25.35,N/A,N/A +2012,8,30,7,30,100430,99290,98180,77.85000000000001,0,9.71,10.61,10.82,10.93,11.01,11.07,11.1,11.13,11.15,339.54,339.62,339.67,339.72,339.76,339.8,339.83,339.87,339.94,27.18,26.73,26.53,26.32,26.12,25.92,25.72,25.53,25.150000000000002,N/A,N/A +2012,8,30,8,30,100390,99250,98150,79.06,0,9.370000000000001,10.18,10.35,10.44,10.49,10.52,10.53,10.540000000000001,10.53,332.71,333.02,333.12,333.19,333.25,333.3,333.34000000000003,333.38,333.46,27.18,26.73,26.53,26.32,26.12,25.93,25.73,25.54,25.150000000000002,N/A,N/A +2012,8,30,9,30,100430,99290,98180,77.25,0,9.89,10.82,11.06,11.200000000000001,11.3,11.370000000000001,11.42,11.46,11.52,330.39,330.29,330.29,330.29,330.28000000000003,330.28000000000003,330.27,330.26,330.25,27.19,26.740000000000002,26.55,26.330000000000002,26.14,25.94,25.740000000000002,25.55,25.17,N/A,N/A +2012,8,30,10,30,100440,99300,98190,77.96000000000001,0,9.3,10.14,10.34,10.450000000000001,10.53,10.58,10.61,10.64,10.66,330.24,330.13,330.12,330.1,330.08,330.07,330.06,330.04,330.02,27.07,26.62,26.42,26.21,26.01,25.810000000000002,25.62,25.43,25.04,N/A,N/A +2012,8,30,11,30,100450,99310,98200,79.72,0,9.05,9.78,9.94,10.02,10.06,10.08,10.08,10.08,10.06,330.09000000000003,330.18,330.22,330.25,330.27,330.28000000000003,330.29,330.3,330.31,26.72,26.25,26.05,25.84,25.64,25.45,25.25,25.060000000000002,24.68,N/A,N/A +2012,8,30,12,30,100470,99320,98220,78.01,0,9.75,10.56,10.73,10.81,10.85,10.870000000000001,10.870000000000001,10.870000000000001,10.83,325.26,325.25,325.25,325.23,325.21,325.18,325.14,325.11,325.03000000000003,26.78,26.310000000000002,26.11,25.900000000000002,25.7,25.5,25.3,25.12,24.740000000000002,N/A,N/A +2012,8,30,13,30,100530,99380,98280,77.69,0,8.58,9.27,9.43,9.51,9.56,9.6,9.620000000000001,9.63,9.64,326.22,326.02,325.90000000000003,325.78000000000003,325.67,325.56,325.44,325.33,325.09000000000003,26.63,26.16,25.96,25.75,25.55,25.36,25.16,24.97,24.59,N/A,N/A +2012,8,30,14,30,100560,99420,98310,75.96000000000001,0,7.95,8.57,8.72,8.790000000000001,8.84,8.870000000000001,8.9,8.91,8.93,318.51,318.56,318.59000000000003,318.6,318.62,318.64,318.65000000000003,318.66,318.69,26.900000000000002,26.45,26.26,26.05,25.85,25.66,25.46,25.27,24.89,N/A,N/A +2012,8,30,15,30,100580,99430,98320,75.41,0,7.44,7.99,8.11,8.16,8.19,8.2,8.21,8.21,8.2,307.04,307.3,307.43,307.54,307.65000000000003,307.75,307.86,307.97,308.2,27.060000000000002,26.63,26.44,26.23,26.04,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A +2012,8,30,16,30,100610,99470,98370,71.9,0,5.97,6.36,6.44,6.48,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,310.35,309.18,308.48,307.73,307.04,306.36,305.67,304.99,303.57,27.8,27.43,27.25,27.05,26.86,26.68,26.490000000000002,26.310000000000002,25.93,N/A,N/A +2012,8,30,17,30,100620,99480,98380,68.9,0,3.71,3.94,3.99,4.03,4.0600000000000005,4.09,4.13,4.16,4.23,302.56,300.05,298.56,297.13,295.83,294.59000000000003,293.38,292.25,290.03000000000003,28.67,28.35,28.18,27.990000000000002,27.810000000000002,27.62,27.44,27.26,26.89,N/A,N/A +2012,8,30,18,30,100640,99510,98410,67.32000000000001,0,1.45,1.51,1.53,1.55,1.58,1.61,1.6500000000000001,1.69,1.79,310.09000000000003,303.36,299.35,295.23,291.61,288.17,284.87,281.76,275.96,29.16,28.85,28.69,28.5,28.32,28.13,27.95,27.77,27.400000000000002,N/A,N/A +2012,8,30,19,30,100650,99520,98420,67.3,0,3.56,3.83,3.9,3.95,3.98,4,4.0200000000000005,4.03,4.05,225.9,226.66,227.14000000000001,227.63,228.09,228.56,229.03,229.49,230.48000000000002,29.8,29.5,29.34,29.14,28.96,28.77,28.580000000000002,28.400000000000002,28.02,N/A,N/A +2012,8,30,20,30,100660,99520,98420,75.27,0,6.72,7.26,7.36,7.390000000000001,7.41,7.4,7.38,7.3500000000000005,7.26,194.34,194.65,194.84,195.02,195.19,195.37,195.56,195.75,196.29,29.11,28.78,28.62,28.42,28.240000000000002,28.05,27.86,27.68,27.32,N/A,N/A +2012,8,30,21,30,100640,99510,98410,77.35000000000001,0,7.930000000000001,8.61,8.73,8.76,8.77,8.76,8.74,8.71,8.65,200.25,200.47,200.63,200.82,201.01,201.22,201.49,201.77,202.71,29.12,28.82,28.66,28.47,28.3,28.12,27.94,27.77,27.46,N/A,N/A +2012,8,30,22,30,100640,99500,98410,78.43,0,8.64,9.42,9.57,9.63,9.66,9.66,9.66,9.65,9.67,200.55,200.8,200.94,201.1,201.28,201.47,201.73000000000002,202.01,203.02,29.23,28.94,28.79,28.6,28.43,28.25,28.080000000000002,27.92,27.64,N/A,N/A +2012,8,30,23,30,100660,99530,98430,78.69,0,9.09,9.92,10.09,10.15,10.19,10.200000000000001,10.22,10.23,10.34,199.58,199.75,199.86,200.01,200.17000000000002,200.36,200.61,200.89000000000001,202.03,29.36,29.09,28.94,28.76,28.59,28.41,28.25,28.09,27.84,N/A,N/A +2012,8,31,0,30,100690,99560,98460,79.93,0,9.34,10.24,10.41,10.49,10.52,10.53,10.53,10.51,10.47,195.81,196.01,196.08,196.17000000000002,196.26,196.35,196.46,196.57,196.95000000000002,29.46,29.2,29.05,28.86,28.69,28.52,28.35,28.18,27.88,N/A,N/A +2012,8,31,1,30,100720,99590,98490,78.83,0,9.68,10.6,10.790000000000001,10.86,10.9,10.91,10.9,10.88,10.82,197.23000000000002,197.4,197.47,197.55,197.63,197.72,197.84,197.96,198.45000000000002,29.66,29.42,29.28,29.1,28.94,28.77,28.61,28.45,28.17,N/A,N/A +2012,8,31,2,30,100790,99660,98560,74.07000000000001,0,9.120000000000001,10.13,10.46,10.82,11.06,11.19,11.39,11.63,12.02,201.53,201.27,201.19,201.1,201.17000000000002,201.42000000000002,202.08,202.94,205.31,30.21,30.12,30.060000000000002,29.98,29.88,29.72,29.67,29.68,29.69,N/A,N/A +2012,8,31,3,30,100860,99730,98630,74.64,0,8.44,9.67,10.11,10.4,10.700000000000001,11.05,11.38,11.69,11.9,198.55,199.34,199.83,200.06,200.70000000000002,201.75,202.94,204.20000000000002,206.42000000000002,30.240000000000002,30.21,30.150000000000002,29.990000000000002,29.89,29.87,29.85,29.84,29.68,N/A,N/A +2012,8,31,4,30,100920,99790,98690,80.11,0,9.08,10.09,10.41,10.75,11,11.19,11.42,11.66,12.200000000000001,196.37,196.57,196.76,196.94,197.21,197.6,198.09,198.67000000000002,200,29.990000000000002,29.86,29.77,29.63,29.52,29.39,29.27,29.16,29.02,N/A,N/A +2012,8,31,5,30,100960,99820,98720,81.29,0,9.69,10.77,11.07,11.28,11.450000000000001,11.6,11.75,11.89,12.25,197.66,197.96,198.15,198.35,198.54,198.74,198.94,199.14000000000001,199.61,29.86,29.650000000000002,29.52,29.35,29.19,29.02,28.86,28.7,28.400000000000002,N/A,N/A +2012,8,31,6,30,101030,99900,98800,80.99,0,11.43,12.72,13.06,13.280000000000001,13.450000000000001,13.58,13.700000000000001,13.8,14,201.49,201.36,201.31,201.27,201.25,201.24,201.24,201.25,201.31,29.97,29.76,29.63,29.46,29.3,29.13,28.97,28.810000000000002,28.48,N/A,N/A +2012,8,31,7,30,101090,99960,98860,82.97,0,11.450000000000001,12.780000000000001,13.120000000000001,13.35,13.52,13.64,13.74,13.82,13.950000000000001,200.72,200.81,200.83,200.85,200.87,200.89000000000001,200.91,200.93,200.96,29.94,29.7,29.560000000000002,29.38,29.2,29.03,28.85,28.67,28.310000000000002,N/A,N/A +2012,8,31,8,30,101140,100010,98910,84.24,0,11.1,12.49,12.83,13.06,13.24,13.36,13.46,13.540000000000001,13.65,196.62,197,197.11,197.20000000000002,197.28,197.34,197.39000000000001,197.44,197.5,29.77,29.490000000000002,29.330000000000002,29.14,28.96,28.77,28.580000000000002,28.39,28.01,N/A,N/A +2012,8,31,9,30,101200,100060,98960,81.07000000000001,0,11.4,12.77,13.09,13.31,13.46,13.57,13.64,13.71,13.780000000000001,197.86,198.12,198.17000000000002,198.19,198.20000000000002,198.19,198.18,198.16,198.1,29.91,29.64,29.48,29.29,29.11,28.92,28.73,28.55,28.17,N/A,N/A +2012,8,31,10,30,101270,100130,99030,78.62,0,11.34,12.55,12.86,13.040000000000001,13.17,13.26,13.34,13.39,13.49,194.69,194.8,194.91,195.07,195.22,195.39000000000001,195.56,195.74,196.14000000000001,29.900000000000002,29.67,29.53,29.35,29.18,29.01,28.830000000000002,28.650000000000002,28.3,N/A,N/A +2012,8,31,11,30,101320,100190,99080,77.37,0,10.3,11.42,11.71,11.89,12.02,12.120000000000001,12.200000000000001,12.27,12.39,193.67000000000002,194,194.27,194.59,194.9,195.22,195.56,195.9,196.63,29.98,29.75,29.62,29.44,29.28,29.11,28.93,28.76,28.42,N/A,N/A +2012,8,31,12,30,101370,100230,99130,78.73,0,10.84,12.120000000000001,12.43,12.63,12.780000000000001,12.88,12.96,13.02,13.09,194.24,194.41,194.49,194.56,194.62,194.68,194.73000000000002,194.78,194.86,29.71,29.43,29.27,29.07,28.89,28.7,28.51,28.32,27.94,N/A,N/A +2012,8,31,13,30,101450,100310,99200,77.16,0,10.33,11.43,11.700000000000001,11.85,11.96,12.02,12.07,12.1,12.13,191.74,192.02,192.18,192.35,192.49,192.62,192.74,192.87,193.1,29.71,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.98,N/A,N/A +2012,8,31,14,30,101490,100350,99240,76.2,0,9.24,10.28,10.52,10.66,10.76,10.83,10.88,10.92,10.96,193.9,193.98000000000002,194.01,194.05,194.08,194.11,194.13,194.15,194.19,29.73,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.97,N/A,N/A +2012,8,31,15,30,101550,100410,99300,77.55,0,8.31,9.17,9.370000000000001,9.49,9.57,9.63,9.67,9.700000000000001,9.74,187.75,187.97,188.14000000000001,188.31,188.45000000000002,188.6,188.75,188.89000000000001,189.16,29.69,29.41,29.25,29.05,28.87,28.68,28.490000000000002,28.3,27.92,N/A,N/A +2012,8,31,16,30,101570,100430,99330,74.17,0,7.59,8.35,8.53,8.63,8.71,8.76,8.790000000000001,8.82,8.85,192.95000000000002,192.85,192.81,192.77,192.73000000000002,192.70000000000002,192.67000000000002,192.65,192.6,29.86,29.59,29.44,29.25,29.060000000000002,28.88,28.69,28.5,28.13,N/A,N/A +2012,8,31,17,30,101590,100450,99340,77.62,0,7.6000000000000005,8.4,8.59,8.700000000000001,8.78,8.84,8.89,8.93,8.99,187.49,187.70000000000002,187.8,187.87,187.93,187.99,188.03,188.08,188.15,29.77,29.490000000000002,29.32,29.13,28.94,28.75,28.560000000000002,28.37,28,N/A,N/A +2012,8,31,18,30,101590,100450,99340,79.58,0,7.53,8.27,8.42,8.51,8.56,8.6,8.620000000000001,8.64,8.66,181.73,181.98,182.09,182.18,182.27,182.36,182.45000000000002,182.54,182.72,29.82,29.53,29.37,29.18,28.990000000000002,28.810000000000002,28.62,28.43,28.060000000000002,N/A,N/A +2012,8,31,19,30,101580,100440,99330,82.62,0,7.83,8.64,8.81,8.92,9,9.040000000000001,9.08,9.1,9.11,182.22,182.46,182.53,182.58,182.62,182.65,182.68,182.69,182.71,29.73,29.42,29.26,29.060000000000002,28.88,28.69,28.5,28.310000000000002,27.93,N/A,N/A +2012,8,31,20,30,101560,100420,99320,82.22,0,8.49,9.370000000000001,9.57,9.68,9.76,9.82,9.86,9.89,9.92,178.85,178.79,178.73,178.65,178.57,178.48,178.4,178.31,178.14000000000001,29.560000000000002,29.25,29.09,28.89,28.7,28.51,28.32,28.13,27.75,N/A,N/A +2012,8,31,21,30,101540,100400,99300,79.27,0,8.44,9.290000000000001,9.48,9.59,9.67,9.72,9.75,9.78,9.82,174.23,174.22,174.22,174.22,174.20000000000002,174.20000000000002,174.19,174.18,174.16,29.59,29.3,29.13,28.94,28.75,28.560000000000002,28.37,28.18,27.8,N/A,N/A +2012,8,31,22,30,101530,100390,99290,77.96000000000001,0,8.63,9.5,9.69,9.790000000000001,9.86,9.9,9.92,9.93,9.94,172.61,172.76,172.82,172.87,172.91,172.95000000000002,172.99,173.01,173.07,29.560000000000002,29.27,29.11,28.92,28.73,28.55,28.36,28.17,27.79,N/A,N/A +2012,8,31,23,30,101510,100360,99260,79.34,0,9.03,9.96,10.17,10.290000000000001,10.38,10.44,10.48,10.52,10.57,170.6,170.59,170.55,170.5,170.45000000000002,170.4,170.35,170.3,170.19,29.51,29.21,29.05,28.86,28.67,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A +2012,9,1,0,30,101510,100370,99260,84.9,0,9.790000000000001,10.89,11.16,11.32,11.44,11.52,11.57,11.620000000000001,11.66,166.70000000000002,166.66,166.68,166.70000000000002,166.73,166.75,166.77,166.79,166.84,29.240000000000002,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,9,1,1,30,101540,100400,99290,82.66,0,9.58,10.61,10.86,11.02,11.13,11.200000000000001,11.26,11.31,11.370000000000001,173.53,173.77,173.83,173.89000000000001,173.92000000000002,173.96,173.97,173.99,174,29.240000000000002,28.91,28.75,28.55,28.36,28.17,27.97,27.79,27.400000000000002,N/A,N/A +2012,9,1,2,30,101570,100430,99320,83.74,0,9.89,11,11.26,11.43,11.55,11.64,11.69,11.75,11.8,171.17000000000002,171,170.98,170.96,170.97,171,171.03,171.07,171.15,29.23,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,9,1,3,30,101610,100470,99360,81.95,0,9.36,10.34,10.59,10.74,10.83,10.91,10.97,11.01,11.08,172.3,172.46,172.51,172.53,172.54,172.55,172.54,172.53,172.49,29.34,29.04,28.87,28.68,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A +2012,9,1,4,30,101630,100480,99380,76.09,0,9.86,10.88,11.11,11.23,11.32,11.370000000000001,11.4,11.43,11.46,174.45000000000002,174.6,174.66,174.70000000000002,174.72,174.73,174.74,174.74,174.72,29.5,29.2,29.04,28.85,28.66,28.47,28.28,28.1,27.72,N/A,N/A +2012,9,1,5,30,101640,100490,99390,77.77,0,9.52,10.51,10.74,10.88,10.98,11.040000000000001,11.09,11.120000000000001,11.17,172.64000000000001,172.76,172.85,172.96,173.06,173.17000000000002,173.28,173.38,173.6,29.42,29.11,28.95,28.75,28.560000000000002,28.37,28.18,28,27.62,N/A,N/A +2012,9,1,6,30,101680,100540,99430,75.48,0,9.38,10.41,10.66,10.81,10.92,10.99,11.05,11.1,11.16,178.42000000000002,178.38,178.32,178.25,178.19,178.13,178.07,178.02,177.91,29.490000000000002,29.22,29.07,28.87,28.69,28.5,28.310000000000002,28.13,27.75,N/A,N/A +2012,9,1,7,30,101710,100560,99450,77.27,0,9.23,10.25,10.5,10.65,10.76,10.84,10.9,10.950000000000001,11.03,179.91,180.13,180.19,180.23,180.26,180.29,180.32,180.34,180.38,29.43,29.150000000000002,28.98,28.79,28.61,28.42,28.23,28.05,27.67,N/A,N/A +2012,9,1,8,30,101720,100580,99470,74.81,0,8.58,9.53,9.75,9.9,10.01,10.09,10.15,10.200000000000001,10.28,181.38,181.35,181.35,181.37,181.39000000000001,181.41,181.44,181.47,181.51,29.54,29.27,29.11,28.92,28.73,28.54,28.35,28.17,27.79,N/A,N/A +2012,9,1,9,30,101750,100600,99490,75.10000000000001,0,8.790000000000001,9.72,9.950000000000001,10.09,10.19,10.26,10.32,10.370000000000001,10.44,182.57,182.72,182.8,182.87,182.93,182.99,183.04,183.1,183.20000000000002,29.48,29.21,29.04,28.86,28.68,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A +2012,9,1,10,30,101760,100610,99500,73.8,0,8.64,9.55,9.76,9.89,9.98,10.05,10.1,10.14,10.18,188.41,188.24,188.19,188.15,188.12,188.09,188.06,188.03,187.99,29.52,29.25,29.1,28.91,28.73,28.54,28.35,28.17,27.8,N/A,N/A +2012,9,1,11,30,101790,100640,99530,74.39,0,7.75,8.620000000000001,8.85,9.02,9.14,9.24,9.32,9.39,9.51,190.38,190.3,190.28,190.27,190.25,190.25,190.25,190.24,190.26,29.490000000000002,29.22,29.060000000000002,28.87,28.69,28.5,28.310000000000002,28.12,27.75,N/A,N/A +2012,9,1,12,30,101810,100660,99550,76.94,0,8.18,9,9.17,9.26,9.32,9.36,9.38,9.4,9.41,189.62,189.45000000000002,189.4,189.35,189.31,189.28,189.24,189.21,189.14000000000001,29.330000000000002,29.04,28.88,28.69,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A +2012,9,1,13,30,101860,100710,99600,75.98,0,7.22,7.930000000000001,8.1,8.2,8.27,8.32,8.36,8.39,8.43,188.85,188.98,189.08,189.19,189.3,189.41,189.55,189.67000000000002,189.97,29.34,29.05,28.900000000000002,28.7,28.52,28.34,28.150000000000002,27.97,27.59,N/A,N/A +2012,9,1,14,30,101890,100750,99640,77.93,0,7.22,7.94,8.120000000000001,8.22,8.290000000000001,8.35,8.39,8.42,8.46,186.89000000000001,187.66,187.93,188.16,188.35,188.5,188.65,188.78,189,29.26,28.96,28.8,28.61,28.42,28.23,28.04,27.85,27.48,N/A,N/A +2012,9,1,15,30,101920,100770,99660,76.49,0,6.38,6.96,7.09,7.17,7.23,7.2700000000000005,7.3,7.34,7.390000000000001,188.55,188.6,188.62,188.65,188.67000000000002,188.70000000000002,188.73,188.76,188.85,29.27,28.97,28.82,28.63,28.44,28.26,28.07,27.88,27.52,N/A,N/A +2012,9,1,16,30,101920,100770,99660,78.14,0,6.42,6.97,7.09,7.140000000000001,7.19,7.21,7.22,7.23,7.24,189.92000000000002,189.71,189.64000000000001,189.59,189.55,189.52,189.49,189.47,189.44,29.16,28.84,28.67,28.48,28.29,28.1,27.91,27.72,27.34,N/A,N/A +2012,9,1,17,30,101920,100770,99660,76.34,0,6.05,6.58,6.69,6.76,6.82,6.8500000000000005,6.87,6.9,6.93,191.06,191.37,191.51,191.63,191.75,191.86,191.96,192.07,192.26,29.21,28.900000000000002,28.73,28.54,28.35,28.16,27.96,27.78,27.400000000000002,N/A,N/A +2012,9,1,18,30,101910,100760,99650,76.72,0,6.29,6.83,6.93,6.99,7.03,7.05,7.0600000000000005,7.07,7.08,191.04,191.08,191.12,191.16,191.19,191.20000000000002,191.21,191.24,191.26,29.18,28.86,28.69,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A +2012,9,1,19,30,101900,100750,99640,73.12,0,5.51,5.96,6.0600000000000005,6.1000000000000005,6.140000000000001,6.17,6.18,6.21,6.24,192.95000000000002,193.21,193.37,193.55,193.71,193.88,194.05,194.22,194.58,29.32,29.02,28.85,28.66,28.48,28.29,28.1,27.91,27.54,N/A,N/A +2012,9,1,20,30,101870,100720,99610,75.86,0,5.86,6.3100000000000005,6.4,6.44,6.46,6.47,6.48,6.47,6.46,189.47,189.63,189.76,189.89000000000001,190.02,190.14000000000001,190.26,190.39000000000001,190.62,29.21,28.89,28.73,28.53,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A +2012,9,1,21,30,101840,100700,99590,74.26,0,5.79,6.29,6.4,6.46,6.5,6.54,6.57,6.59,6.62,187.79,187.84,187.9,187.96,188.01,188.06,188.12,188.17000000000002,188.28,29.26,28.96,28.8,28.61,28.42,28.23,28.04,27.85,27.48,N/A,N/A +2012,9,1,22,30,101800,100650,99540,73.29,0,6.11,6.61,6.69,6.72,6.74,6.74,6.73,6.72,6.69,183.24,183.67000000000002,183.88,184.09,184.28,184.46,184.64000000000001,184.82,185.19,29.22,28.92,28.77,28.57,28.39,28.2,28,27.82,27.44,N/A,N/A +2012,9,1,23,30,101780,100630,99520,75.83,0,5.62,6.08,6.17,6.21,6.24,6.26,6.28,6.28,6.28,182.35,182.49,182.64000000000001,182.78,182.9,183.01,183.12,183.23,183.47,29.07,28.77,28.6,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.28,N/A,N/A +2012,9,2,0,30,101750,100600,99490,75.9,0,6.0200000000000005,6.49,6.57,6.6000000000000005,6.61,6.62,6.61,6.6000000000000005,6.57,175.89000000000001,176.47,176.68,176.9,177.11,177.31,177.54,177.76,178.25,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.71,27.53,27.14,N/A,N/A +2012,9,2,1,30,101730,100580,99470,78,0,6.3500000000000005,6.890000000000001,7,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.140000000000001,7.15,178.51,178.42000000000002,178.42000000000002,178.42000000000002,178.41,178.4,178.39000000000001,178.37,178.32,28.830000000000002,28.5,28.330000000000002,28.14,27.95,27.76,27.560000000000002,27.38,27,N/A,N/A +2012,9,2,2,30,101730,100590,99470,77.88,0,6.3100000000000005,6.8,6.890000000000001,6.92,6.94,6.95,6.94,6.93,6.9,170.62,170.86,170.98,171.07,171.16,171.24,171.32,171.39000000000001,171.55,28.77,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,9,2,3,30,101720,100580,99460,78.41,0,5.95,6.46,6.5600000000000005,6.63,6.67,6.7,6.72,6.73,6.76,169.70000000000002,169.55,169.55,169.55,169.56,169.57,169.59,169.61,169.65,28.75,28.42,28.25,28.05,27.86,27.68,27.48,27.3,26.92,N/A,N/A +2012,9,2,4,30,101690,100540,99430,79.04,0,6.18,6.65,6.76,6.8100000000000005,6.8500000000000005,6.88,6.9,6.91,6.93,169.82,169.86,169.84,169.8,169.77,169.72,169.67000000000002,169.62,169.51,28.66,28.32,28.150000000000002,27.96,27.77,27.580000000000002,27.39,27.2,26.82,N/A,N/A +2012,9,2,5,30,101710,100560,99450,75.75,0,7.13,7.74,7.88,7.95,8,8.03,8.06,8.08,8.120000000000001,171.16,171.39000000000001,171.47,171.55,171.61,171.67000000000002,171.73,171.79,171.91,28.88,28.57,28.400000000000002,28.2,28.02,27.830000000000002,27.64,27.45,27.080000000000002,N/A,N/A +2012,9,2,6,30,101710,100560,99450,82.2,0,6.69,7.25,7.36,7.41,7.44,7.45,7.45,7.44,7.4,177.23,177.29,177.32,177.36,177.39000000000001,177.41,177.45000000000002,177.48,177.53,28.580000000000002,28.23,28.060000000000002,27.86,27.67,27.47,27.28,27.09,26.7,N/A,N/A +2012,9,2,7,30,101720,100580,99470,80.72,0,7.21,7.82,7.96,8.03,8.08,8.11,8.13,8.14,8.15,180.47,180.9,181.13,181.36,181.55,181.73,181.9,182.05,182.36,28.740000000000002,28.41,28.240000000000002,28.04,27.86,27.67,27.48,27.29,26.91,N/A,N/A +2012,9,2,8,30,101730,100580,99470,81.76,0,6.12,6.67,6.8,6.88,6.93,6.98,7.01,7.04,7.08,188.27,188.22,188.23,188.27,188.32,188.37,188.43,188.49,188.64000000000001,28.78,28.46,28.29,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.95,N/A,N/A +2012,9,2,9,30,101730,100590,99470,78.62,0,6.76,7.36,7.5,7.5600000000000005,7.6000000000000005,7.63,7.640000000000001,7.65,7.65,198.25,198.33,198.31,198.3,198.28,198.27,198.24,198.21,198.12,28.94,28.62,28.46,28.26,28.07,27.88,27.69,27.5,27.13,N/A,N/A +2012,9,2,10,30,101750,100600,99490,79.69,0,6.49,7.09,7.23,7.32,7.38,7.43,7.46,7.49,7.54,202.62,202.35,202.20000000000002,202.03,201.87,201.70000000000002,201.53,201.36,201.01,28.84,28.52,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A +2012,9,2,11,30,101750,100600,99490,83.17,0,5.94,6.390000000000001,6.49,6.53,6.5600000000000005,6.59,6.6000000000000005,6.61,6.62,200.87,201.20000000000002,201.36,201.51,201.64000000000001,201.77,201.9,202.01,202.23000000000002,28.63,28.29,28.12,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A +2012,9,2,12,30,101770,100630,99520,80.19,0,5.71,6.2,6.32,6.38,6.42,6.46,6.48,6.5,6.53,199.9,200.32,200.49,200.64000000000001,200.78,200.9,201.02,201.14000000000001,201.37,28.86,28.53,28.37,28.17,27.98,27.79,27.6,27.41,27.03,N/A,N/A +2012,9,2,13,30,101790,100640,99530,81.05,0,5.15,5.51,5.58,5.61,5.63,5.64,5.65,5.65,5.65,205.76,205.62,205.57,205.53,205.5,205.47,205.45000000000002,205.42000000000002,205.35,28.740000000000002,28.41,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.91,N/A,N/A +2012,9,2,14,30,101810,100660,99550,81.69,0,4.39,4.68,4.75,4.78,4.8,4.8100000000000005,4.82,4.82,4.83,219.17000000000002,219.32,219.4,219.48000000000002,219.54,219.61,219.67000000000002,219.74,219.84,28.71,28.38,28.21,28.01,27.82,27.63,27.44,27.25,26.87,N/A,N/A +2012,9,2,15,30,101820,100670,99560,81.9,0,3.5100000000000002,3.71,3.7600000000000002,3.7800000000000002,3.79,3.8000000000000003,3.81,3.81,3.81,224.99,224.48000000000002,224.18,223.86,223.58,223.3,223.02,222.77,222.22,28.75,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.89,N/A,N/A +2012,9,2,16,30,101810,100670,99560,81.66,0,3.19,3.39,3.44,3.47,3.5,3.52,3.54,3.56,3.59,217.9,217.45000000000002,217.17000000000002,216.91,216.68,216.47,216.26,216.06,215.69,28.77,28.42,28.25,28.05,27.86,27.67,27.47,27.28,26.900000000000002,N/A,N/A +2012,9,2,17,30,101800,100650,99540,79.10000000000001,0,2.66,2.81,2.84,2.86,2.88,2.89,2.91,2.91,2.94,215.21,215.1,215.06,215.01,214.96,214.9,214.84,214.78,214.65,28.84,28.490000000000002,28.32,28.11,27.93,27.73,27.54,27.36,26.97,N/A,N/A +2012,9,2,18,30,101770,100620,99510,81.98,0,3.15,3.33,3.36,3.38,3.4,3.41,3.42,3.43,3.45,192.85,192.94,193.05,193.16,193.26,193.35,193.45000000000002,193.54,193.73000000000002,28.84,28.48,28.310000000000002,28.11,27.92,27.72,27.53,27.35,26.96,N/A,N/A +2012,9,2,19,30,101750,100610,99500,83.45,0,3.4,3.6,3.64,3.67,3.69,3.71,3.73,3.75,3.79,184.14000000000001,183.42000000000002,182.99,182.56,182.18,181.8,181.43,181.08,180.43,28.93,28.57,28.39,28.19,28.01,27.82,27.62,27.44,27.060000000000002,N/A,N/A +2012,9,2,20,30,101710,100560,99450,84.97,0,5.0200000000000005,5.4,5.48,5.53,5.5600000000000005,5.59,5.61,5.63,5.66,181.13,181.37,181.46,181.55,181.63,181.70000000000002,181.77,181.84,181.99,28.98,28.62,28.45,28.25,28.060000000000002,27.86,27.67,27.490000000000002,27.1,N/A,N/A +2012,9,2,21,30,101650,100500,99390,85.51,0,6.2,6.65,6.73,6.75,6.76,6.75,6.74,6.72,6.68,174.44,174.84,175.07,175.31,175.52,175.74,175.97,176.19,176.71,28.830000000000002,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.36,26.98,N/A,N/A +2012,9,2,22,30,101600,100460,99350,85.89,0,6.57,7.11,7.21,7.26,7.29,7.3,7.3,7.3,7.28,176.46,176.67000000000002,176.76,176.89000000000001,177.01,177.15,177.32,177.48,177.89000000000001,28.740000000000002,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,9,2,23,30,101580,100430,99320,84.65,0,5.9,6.3500000000000005,6.45,6.49,6.51,6.5200000000000005,6.5200000000000005,6.51,6.49,180.44,180.63,180.73,180.84,180.93,181.03,181.13,181.22,181.42000000000002,28.71,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,9,3,0,30,101550,100400,99290,85.06,0,6.8500000000000005,7.41,7.53,7.59,7.63,7.65,7.66,7.66,7.65,182.03,182.16,182.24,182.32,182.4,182.47,182.55,182.62,182.76,28.66,28.32,28.150000000000002,27.94,27.75,27.560000000000002,27.37,27.18,26.8,N/A,N/A +2012,9,3,1,30,101530,100380,99270,86.54,0,6.4,6.94,7.0600000000000005,7.140000000000001,7.19,7.22,7.25,7.2700000000000005,7.29,190.14000000000001,190,190,190.02,190.04,190.07,190.1,190.13,190.21,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A +2012,9,3,2,30,101530,100390,99280,85.18,0,6.38,6.890000000000001,7.01,7.07,7.12,7.15,7.17,7.19,7.21,185.70000000000002,186.09,186.27,186.45000000000002,186.61,186.76,186.91,187.04,187.32,28.57,28.22,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A +2012,9,3,3,30,101530,100390,99280,84.35000000000001,0,6.93,7.48,7.58,7.61,7.63,7.62,7.61,7.59,7.53,193.37,192.83,192.61,192.41,192.24,192.1,191.95000000000002,191.82,191.55,28.740000000000002,28.400000000000002,28.23,28.04,27.85,27.66,27.47,27.29,26.92,N/A,N/A +2012,9,3,4,30,101510,100370,99260,83.78,0,6.66,7.2,7.32,7.38,7.42,7.44,7.46,7.47,7.48,192.55,192.67000000000002,192.73000000000002,192.77,192.8,192.84,192.86,192.88,192.92000000000002,28.55,28.19,28.02,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A +2012,9,3,5,30,101530,100380,99280,82,0,6.37,6.88,6.99,7.04,7.07,7.1000000000000005,7.11,7.12,7.13,188.28,188.24,188.27,188.32,188.38,188.45000000000002,188.54,188.62,188.82,28.72,28.38,28.21,28.01,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A +2012,9,3,6,30,101540,100390,99280,86.42,0,6.41,6.95,7.08,7.15,7.2,7.24,7.2700000000000005,7.29,7.32,190.78,191.03,191.11,191.18,191.23000000000002,191.27,191.32,191.36,191.44,28.52,28.150000000000002,27.98,27.78,27.59,27.39,27.2,27.01,26.63,N/A,N/A +2012,9,3,7,30,101550,100400,99290,84.33,0,6.2,6.7,6.8100000000000005,6.87,6.91,6.94,6.97,6.99,7.03,194.64000000000001,194.85,194.95000000000002,195.06,195.17000000000002,195.27,195.38,195.49,195.73000000000002,28.62,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.76,N/A,N/A +2012,9,3,8,30,101550,100410,99300,84.64,0,7.17,7.79,7.930000000000001,8.01,8.06,8.1,8.13,8.15,8.17,200.72,201.03,201.12,201.22,201.3,201.38,201.45000000000002,201.52,201.66,28.740000000000002,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A +2012,9,3,9,30,101560,100410,99310,84.56,0,6.24,6.75,6.8500000000000005,6.92,6.96,6.99,7.0200000000000005,7.04,7.07,216.9,215.61,214.99,214.39000000000001,213.84,213.34,212.83,212.36,211.42000000000002,28.77,28.41,28.240000000000002,28.04,27.85,27.67,27.47,27.29,26.92,N/A,N/A +2012,9,3,10,30,101560,100410,99310,84,0,5.93,6.36,6.45,6.49,6.5200000000000005,6.54,6.55,6.5600000000000005,6.5600000000000005,215.82,215.93,216,216.04,216.06,216.07,216.07,216.07,216.05,28.76,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.900000000000002,N/A,N/A +2012,9,3,11,30,101600,100450,99340,83.73,0,5.88,6.33,6.43,6.49,6.5200000000000005,6.54,6.5600000000000005,6.57,6.59,227.34,227.06,226.82,226.56,226.32,226.07,225.83,225.59,225.09,28.73,28.37,28.2,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A +2012,9,3,12,30,101630,100480,99370,82.23,0,5.91,6.36,6.45,6.5,6.53,6.55,6.5600000000000005,6.57,6.58,222.14000000000001,222.24,222.19,222.14000000000001,222.08,222.01,221.94,221.86,221.69,28.650000000000002,28.29,28.12,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A +2012,9,3,13,30,101650,100500,99390,81.4,0,5.09,5.44,5.51,5.55,5.58,5.59,5.6000000000000005,5.61,5.62,221.69,221.65,221.62,221.58,221.56,221.54,221.51,221.49,221.43,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A +2012,9,3,14,30,101670,100530,99420,82.3,0,4.64,4.97,5.04,5.09,5.12,5.15,5.17,5.19,5.22,217.27,218.19,218.66,219.12,219.54,219.94,220.34,220.71,221.45000000000002,28.78,28.44,28.26,28.060000000000002,27.88,27.68,27.490000000000002,27.310000000000002,26.93,N/A,N/A +2012,9,3,15,30,101690,100550,99440,81.25,0,4.37,4.71,4.79,4.83,4.88,4.91,4.94,4.97,5.0200000000000005,253.59,252.51000000000002,251.94,251.35,250.82,250.3,249.77,249.27,248.22,28.89,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.43,27.05,N/A,N/A +2012,9,3,16,30,101680,100530,99420,80.64,0,4.74,5.04,5.08,5.09,5.1000000000000005,5.1000000000000005,5.09,5.08,5.0600000000000005,228.51,228.31,228.24,228.16,228.08,228.01,227.92000000000002,227.84,227.67000000000002,28.88,28.53,28.36,28.16,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A +2012,9,3,17,30,101650,100510,99400,81.43,0,4.28,4.55,4.61,4.64,4.67,4.68,4.69,4.71,4.72,235.03,235.04,235.1,235.15,235.21,235.26,235.32,235.38,235.5,28.84,28.48,28.310000000000002,28.11,27.92,27.72,27.53,27.35,26.97,N/A,N/A +2012,9,3,18,30,101650,100500,99400,80.96000000000001,0,4.5600000000000005,4.87,4.93,4.96,4.98,5,5.01,5.01,5.0200000000000005,216.77,216.94,217.03,217.1,217.16,217.21,217.27,217.32,217.39000000000001,28.98,28.63,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,9,3,19,30,101610,100470,99360,83.29,0,5.6000000000000005,6.0200000000000005,6.11,6.16,6.2,6.23,6.25,6.26,6.29,200.09,200.67000000000002,200.97,201.27,201.53,201.79,202.05,202.3,202.8,29,28.64,28.46,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A +2012,9,3,20,30,101570,100430,99320,83.42,0,5.83,6.25,6.33,6.36,6.37,6.38,6.38,6.37,6.34,202.84,202.74,202.70000000000002,202.65,202.59,202.53,202.46,202.39000000000001,202.23000000000002,28.95,28.6,28.43,28.22,28.03,27.84,27.650000000000002,27.46,27.080000000000002,N/A,N/A +2012,9,3,21,30,101520,100380,99270,79.05,0,6.8500000000000005,7.37,7.46,7.5,7.51,7.51,7.5,7.49,7.46,194.45000000000002,194.37,194.35,194.3,194.24,194.17000000000002,194.07,193.98000000000002,193.70000000000002,29.04,28.7,28.53,28.330000000000002,28.150000000000002,27.96,27.77,27.59,27.22,N/A,N/A +2012,9,3,22,30,101470,100330,99220,78.4,0,6.36,6.8500000000000005,6.94,6.97,6.99,7,6.99,6.99,6.96,198.23000000000002,198.16,198.1,198.03,197.96,197.89000000000001,197.81,197.74,197.56,29.04,28.71,28.54,28.34,28.16,27.97,27.78,27.6,27.23,N/A,N/A +2012,9,3,23,30,101450,100310,99200,76,0,6.38,6.890000000000001,6.98,7.03,7.05,7.0600000000000005,7.0600000000000005,7.0600000000000005,7.04,196.16,196.11,196.1,196.08,196.06,196.04,196.01,195.99,195.92000000000002,29.1,28.78,28.62,28.42,28.23,28.04,27.85,27.67,27.3,N/A,N/A +2012,9,4,0,30,101410,100270,99160,81.38,0,6.98,7.5600000000000005,7.68,7.73,7.7700000000000005,7.79,7.8100000000000005,7.8100000000000005,7.82,194.44,194.45000000000002,194.46,194.47,194.47,194.47,194.46,194.45000000000002,194.43,28.85,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A +2012,9,4,1,30,101410,100270,99160,80.83,0,6.51,7.03,7.13,7.17,7.2,7.21,7.22,7.22,7.21,202.38,202.15,202.04,201.93,201.84,201.74,201.64000000000001,201.54,201.34,28.8,28.45,28.28,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A +2012,9,4,2,30,101430,100290,99180,78.71000000000001,0,6.5600000000000005,7.09,7.19,7.25,7.28,7.3,7.3100000000000005,7.32,7.32,200.36,200.5,200.53,200.57,200.6,200.63,200.65,200.68,200.72,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.61,27.43,27.05,N/A,N/A +2012,9,4,3,30,101460,100310,99200,84.43,0,7.15,7.73,7.8500000000000005,7.91,7.94,7.96,7.97,7.97,7.96,202.25,202.26,202.23000000000002,202.21,202.18,202.15,202.13,202.12,202.07,28.59,28.22,28.05,27.85,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A +2012,9,4,4,30,101440,100300,99190,85.42,0,7.2,7.86,8.01,8.09,8.15,8.2,8.23,8.25,8.27,202.25,202.47,202.55,202.63,202.69,202.74,202.8,202.84,202.92000000000002,28.560000000000002,28.19,28.01,27.8,27.61,27.42,27.22,27.03,26.650000000000002,N/A,N/A +2012,9,4,5,30,101460,100320,99210,83.74,0,8.11,8.8,8.950000000000001,9.03,9.08,9.120000000000001,9.13,9.15,9.16,200.42000000000002,200.41,200.45000000000002,200.52,200.58,200.65,200.74,200.82,201,28.57,28.19,28.01,27.810000000000002,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A +2012,9,4,6,30,101460,100320,99210,84.26,0,8.540000000000001,9.32,9.5,9.59,9.66,9.700000000000001,9.73,9.75,9.76,208.28,208.3,208.3,208.3,208.3,208.31,208.31,208.31,208.32,28.490000000000002,28.1,27.92,27.72,27.52,27.330000000000002,27.13,26.94,26.560000000000002,N/A,N/A +2012,9,4,7,30,101490,100340,99240,80.2,0,8.69,9.49,9.67,9.77,9.84,9.89,9.92,9.950000000000001,9.98,217.46,217.66,217.70000000000002,217.72,217.73000000000002,217.74,217.75,217.75,217.75,28.560000000000002,28.19,28.01,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,9,4,8,30,101470,100320,99210,82.37,0,7.930000000000001,8.66,8.83,8.94,9.01,9.07,9.11,9.15,9.200000000000001,222.17000000000002,222.25,222.29,222.32,222.33,222.35,222.36,222.38,222.4,28.5,28.12,27.94,27.740000000000002,27.54,27.35,27.16,26.97,26.59,N/A,N/A +2012,9,4,9,30,101460,100320,99210,81.63,0,7.5200000000000005,8.22,8.38,8.48,8.55,8.6,8.64,8.67,8.72,223.83,223.3,223.08,222.87,222.68,222.51,222.34,222.18,221.87,28.740000000000002,28.38,28.2,28,27.810000000000002,27.62,27.42,27.240000000000002,26.86,N/A,N/A +2012,9,4,10,30,101480,100330,99220,82.51,0,7.37,7.97,8.120000000000001,8.2,8.25,8.28,8.31,8.33,8.35,220.61,220.59,220.6,220.6,220.61,220.62,220.63,220.65,220.68,28.59,28.23,28.05,27.85,27.66,27.46,27.27,27.09,26.71,N/A,N/A +2012,9,4,11,30,101500,100360,99240,82.14,0,8.08,8.77,8.93,9,9.040000000000001,9.06,9.07,9.07,9.05,219.04,219.03,219.06,219.1,219.13,219.18,219.22,219.27,219.37,28.67,28.310000000000002,28.13,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A +2012,9,4,12,30,101490,100340,99230,77.78,0,6.99,7.61,7.75,7.83,7.88,7.91,7.94,7.95,7.97,222.8,223.1,223.25,223.4,223.54,223.67000000000002,223.81,223.94,224.22,28.810000000000002,28.46,28.29,28.080000000000002,27.900000000000002,27.7,27.51,27.32,26.94,N/A,N/A +2012,9,4,13,30,101510,100370,99260,75.71000000000001,0,6.66,7.23,7.3500000000000005,7.42,7.46,7.49,7.51,7.53,7.54,226.33,226.36,226.35,226.35,226.35,226.36,226.38,226.4,226.44,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.05,N/A,N/A +2012,9,4,14,30,101540,100390,99290,77.58,0,5.62,6.140000000000001,6.2700000000000005,6.37,6.45,6.51,6.5600000000000005,6.6000000000000005,6.68,226.67000000000002,227.07,227.28,227.46,227.61,227.74,227.86,227.96,228.16,28.91,28.57,28.400000000000002,28.2,28.01,27.82,27.62,27.43,27.05,N/A,N/A +2012,9,4,15,30,101560,100420,99310,75.42,0,5.7,6.16,6.2700000000000005,6.33,6.38,6.41,6.44,6.46,6.5,230.3,230.15,230.15,230.17000000000002,230.19,230.22,230.25,230.29,230.36,28.96,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A +2012,9,4,16,30,101540,100390,99290,78.42,0,5.63,6.01,6.09,6.13,6.16,6.17,6.19,6.2,6.22,227.36,227.53,227.64000000000001,227.76,227.87,227.98000000000002,228.09,228.20000000000002,228.45000000000002,28.810000000000002,28.46,28.29,28.09,27.900000000000002,27.72,27.53,27.34,26.97,N/A,N/A +2012,9,4,17,30,101530,100380,99280,80.14,0,5.79,6.19,6.25,6.2700000000000005,6.28,6.28,6.2700000000000005,6.26,6.23,217.19,217.38,217.48000000000002,217.57,217.65,217.71,217.77,217.82,217.92000000000002,28.8,28.44,28.26,28.060000000000002,27.87,27.68,27.48,27.29,26.91,N/A,N/A +2012,9,4,18,30,101520,100370,99270,79.59,0,5.17,5.5200000000000005,5.6000000000000005,5.64,5.66,5.68,5.69,5.7,5.71,208.86,208.9,208.97,209.01,209.05,209.09,209.13,209.17000000000002,209.25,28.78,28.42,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A +2012,9,4,19,30,101490,100340,99240,80.12,0,5.97,6.4,6.49,6.5200000000000005,6.54,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.54,201.29,201.42000000000002,201.47,201.51,201.54,201.58,201.6,201.62,201.68,28.78,28.41,28.240000000000002,28.04,27.85,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,9,4,20,30,101420,100280,99170,79.52,0,6.45,6.96,7.0600000000000005,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.140000000000001,7.11,200.68,200.84,200.9,200.96,201.01,201.04,201.09,201.13,201.23000000000002,28.810000000000002,28.45,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,9,4,21,30,101380,100230,99130,76.34,0,7.18,7.76,7.87,7.92,7.94,7.95,7.95,7.95,7.92,201.09,201.08,201.09,201.12,201.14000000000001,201.18,201.20000000000002,201.23000000000002,201.29,28.88,28.54,28.36,28.17,27.98,27.79,27.6,27.42,27.05,N/A,N/A +2012,9,4,22,30,101350,100210,99100,78.87,0,6.3500000000000005,6.88,6.99,7.05,7.1000000000000005,7.13,7.16,7.18,7.21,202.49,202.62,202.71,202.8,202.89000000000001,202.98000000000002,203.08,203.17000000000002,203.4,28.84,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.37,27,N/A,N/A +2012,9,4,23,30,101290,100140,99040,81.57000000000001,0,6.84,7.390000000000001,7.51,7.57,7.6000000000000005,7.62,7.640000000000001,7.640000000000001,7.640000000000001,192.45000000000002,192.70000000000002,192.84,192.99,193.11,193.23000000000002,193.36,193.48000000000002,193.74,28.61,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A +2012,9,5,0,30,101290,100150,99040,80.77,0,7.03,7.59,7.7,7.75,7.79,7.8,7.8100000000000005,7.8100000000000005,7.8,197.02,197.18,197.26,197.33,197.38,197.43,197.47,197.52,197.6,28.68,28.32,28.14,27.94,27.75,27.560000000000002,27.37,27.18,26.810000000000002,N/A,N/A +2012,9,5,1,30,101260,100120,99010,79.17,0,6.92,7.47,7.58,7.640000000000001,7.67,7.69,7.7,7.7,7.69,198.54,198.62,198.66,198.70000000000002,198.74,198.78,198.81,198.85,198.93,28.7,28.34,28.16,27.96,27.77,27.580000000000002,27.39,27.21,26.830000000000002,N/A,N/A +2012,9,5,2,30,101260,100110,99010,80.7,0,6.7700000000000005,7.3100000000000005,7.41,7.47,7.5,7.5200000000000005,7.54,7.55,7.5600000000000005,196.32,196.28,196.35,196.44,196.53,196.62,196.73000000000002,196.82,197.06,28.54,28.17,28,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,9,5,3,30,101260,100120,99010,82.05,0,8,8.68,8.83,8.9,8.94,8.97,8.98,8.99,8.98,197.27,197.34,197.41,197.48000000000002,197.55,197.62,197.70000000000002,197.78,197.94,28.51,28.13,27.95,27.75,27.560000000000002,27.37,27.17,26.990000000000002,26.61,N/A,N/A +2012,9,5,4,30,101250,100110,99000,84.15,0,8.03,8.74,8.89,8.97,9.02,9.05,9.06,9.07,9.07,206.43,206.57,206.55,206.52,206.47,206.41,206.33,206.26,206.08,28.39,27.990000000000002,27.810000000000002,27.6,27.41,27.21,27.02,26.830000000000002,26.44,N/A,N/A +2012,9,5,5,30,101240,100090,98990,82.27,0,8.08,8.81,8.96,9.05,9.11,9.15,9.18,9.200000000000001,9.22,212.1,211.79,211.72,211.67000000000002,211.63,211.6,211.57,211.55,211.53,28.52,28.13,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.580000000000002,N/A,N/A +2012,9,5,6,30,101280,100140,99030,84.59,0,7.74,8.38,8.52,8.58,8.63,8.65,8.67,8.67,8.67,205.87,205.94,206.05,206.18,206.29,206.4,206.51,206.61,206.82,28.39,28.01,27.830000000000002,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A +2012,9,5,7,30,101300,100160,99050,83.28,0,7.67,8.4,8.58,8.68,8.75,8.8,8.84,8.870000000000001,8.9,212.6,213.08,213.25,213.41,213.54,213.66,213.77,213.86,214.04,28.55,28.18,28,27.8,27.61,27.41,27.22,27.03,26.64,N/A,N/A +2012,9,5,8,30,101280,100140,99030,83.36,0,7.49,8.23,8.41,8.52,8.6,8.66,8.71,8.75,8.8,215.46,215.53,215.57,215.63,215.68,215.74,215.79,215.84,215.95000000000002,28.55,28.17,27.990000000000002,27.79,27.6,27.400000000000002,27.21,27.02,26.63,N/A,N/A +2012,9,5,9,30,101280,100140,99040,80.13,0,7.92,8.59,8.73,8.8,8.85,8.870000000000001,8.89,8.9,8.91,215.51,216.08,216.39000000000001,216.70000000000002,216.98000000000002,217.24,217.51,217.76,218.27,28.8,28.45,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A +2012,9,5,10,30,101310,100170,99060,82.8,0,7.33,7.930000000000001,8.06,8.120000000000001,8.16,8.19,8.2,8.2,8.2,228.62,228.46,228.4,228.35,228.32,228.29,228.28,228.26,228.25,28.580000000000002,28.21,28.03,27.830000000000002,27.64,27.44,27.25,27.060000000000002,26.68,N/A,N/A +2012,9,5,11,30,101290,100150,99040,81.51,0,6.95,7.53,7.66,7.73,7.78,7.8100000000000005,7.83,7.8500000000000005,7.88,223.41,223.63,223.78,223.9,224.02,224.14000000000001,224.25,224.36,224.58,28.580000000000002,28.22,28.04,27.830000000000002,27.64,27.45,27.25,27.07,26.69,N/A,N/A +2012,9,5,12,30,101290,100150,99050,81.72,0,6.2700000000000005,6.8500000000000005,6.99,7.09,7.17,7.23,7.28,7.32,7.4,229.48000000000002,230.08,230.38,230.68,230.95000000000002,231.21,231.47,231.71,232.20000000000002,28.650000000000002,28.29,28.11,27.91,27.72,27.53,27.330000000000002,27.150000000000002,26.77,N/A,N/A +2012,9,5,13,30,101320,100180,99070,79.23,0,6.66,7.16,7.25,7.28,7.29,7.3,7.29,7.28,7.25,243.41,243.18,243.12,243.1,243.07,243.06,243.06,243.06,243.09,28.77,28.42,28.25,28.05,27.86,27.67,27.47,27.29,26.91,N/A,N/A +2012,9,5,14,30,101340,100200,99090,77.15,0,6.51,7.05,7.16,7.23,7.2700000000000005,7.3,7.32,7.34,7.36,241.96,242.49,242.76,243.01,243.24,243.45000000000002,243.66,243.84,244.20000000000002,28.87,28.53,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A +2012,9,5,15,30,101350,100210,99100,79.33,0,6.55,7.01,7.09,7.11,7.12,7.12,7.11,7.1000000000000005,7.0600000000000005,243.39000000000001,243.18,243.06,242.93,242.81,242.70000000000002,242.57,242.46,242.21,28.63,28.27,28.1,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.76,N/A,N/A +2012,9,5,16,30,101360,100210,99110,75.76,0,5.61,6.08,6.18,6.24,6.29,6.32,6.34,6.36,6.390000000000001,243.32,242.96,242.75,242.54,242.35,242.17000000000002,242,241.83,241.49,28.89,28.54,28.37,28.17,27.97,27.79,27.59,27.400000000000002,27.02,N/A,N/A +2012,9,5,17,30,101350,100210,99100,74.93,0,5.33,5.69,5.7700000000000005,5.8100000000000005,5.83,5.8500000000000005,5.86,5.87,5.87,233.07,233.31,233.52,233.72,233.92000000000002,234.1,234.3,234.49,234.87,28.91,28.57,28.400000000000002,28.21,28.02,27.830000000000002,27.64,27.46,27.080000000000002,N/A,N/A +2012,9,5,18,30,101320,100180,99070,79.22,0,5.99,6.46,6.5600000000000005,6.6000000000000005,6.63,6.65,6.66,6.67,6.66,226.37,226.58,226.70000000000002,226.82,226.92000000000002,227.01,227.11,227.19,227.39000000000001,28.73,28.37,28.2,28,27.8,27.61,27.42,27.23,26.85,N/A,N/A +2012,9,5,19,30,101280,100140,99030,79.22,0,6.53,7.04,7.140000000000001,7.19,7.21,7.22,7.23,7.22,7.21,217.47,217.56,217.61,217.65,217.70000000000002,217.74,217.79,217.84,217.95000000000002,28.810000000000002,28.45,28.28,28.080000000000002,27.89,27.7,27.51,27.330000000000002,26.95,N/A,N/A +2012,9,5,20,30,101250,100110,99000,80.21000000000001,0,6.93,7.53,7.640000000000001,7.69,7.72,7.74,7.74,7.73,7.71,213.34,213.49,213.58,213.64000000000001,213.70000000000002,213.75,213.79,213.84,213.94,28.78,28.42,28.240000000000002,28.04,27.86,27.67,27.47,27.29,26.91,N/A,N/A +2012,9,5,21,30,101230,100090,98990,80.2,0,7.29,7.92,8.040000000000001,8.09,8.120000000000001,8.13,8.120000000000001,8.11,8.06,211.92000000000002,212,212,211.97,211.93,211.88,211.81,211.73000000000002,211.55,28.77,28.41,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A +2012,9,5,22,30,101210,100070,98970,77.35000000000001,0,6.68,7.22,7.34,7.390000000000001,7.43,7.45,7.47,7.48,7.49,209.42000000000002,209.54,209.61,209.70000000000002,209.77,209.85,209.93,210.02,210.23000000000002,28.82,28.48,28.3,28.11,27.92,27.740000000000002,27.55,27.37,27,N/A,N/A +2012,9,5,23,30,101200,100050,98950,75.21000000000001,0,6.78,7.34,7.45,7.5,7.54,7.5600000000000005,7.57,7.58,7.59,212.16,212.33,212.44,212.54,212.63,212.72,212.82,212.91,213.1,28.87,28.52,28.35,28.16,27.97,27.79,27.59,27.42,27.05,N/A,N/A +2012,9,6,0,30,101170,100030,98920,73.81,0,7.390000000000001,8,8.13,8.18,8.22,8.23,8.24,8.24,8.22,207.71,207.71,207.74,207.79,207.83,207.88,207.92000000000002,207.95000000000002,208.02,28.810000000000002,28.47,28.3,28.1,27.92,27.73,27.53,27.35,26.97,N/A,N/A +2012,9,6,1,30,101150,100010,98910,74.02,0,7.21,7.8,7.91,7.97,8,8.02,8.040000000000001,8.05,8.08,208.41,208.38,208.38,208.39000000000001,208.39000000000001,208.4,208.42000000000002,208.44,208.52,28.810000000000002,28.47,28.3,28.11,27.93,27.75,27.560000000000002,27.39,27.03,N/A,N/A +2012,9,6,2,30,101180,100030,98930,78.13,0,6.95,7.5,7.59,7.62,7.640000000000001,7.640000000000001,7.63,7.61,7.57,215.29,215.14000000000001,215.04,214.92000000000002,214.78,214.65,214.49,214.34,213.98000000000002,28.55,28.19,28.02,27.82,27.63,27.45,27.25,27.07,26.7,N/A,N/A +2012,9,6,3,30,101190,100050,98940,70.07000000000001,0,6.37,6.93,7.05,7.11,7.16,7.19,7.21,7.22,7.24,213.09,213.42000000000002,213.56,213.67000000000002,213.77,213.86,213.94,214.01,214.14000000000001,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A +2012,9,6,4,30,101190,100050,98940,69.78,0,7.0200000000000005,7.57,7.7,7.78,7.84,7.890000000000001,7.930000000000001,7.97,8.05,219.5,219.42000000000002,219.44,219.46,219.48000000000002,219.5,219.51,219.52,219.48000000000002,28.87,28.55,28.39,28.2,28.02,27.84,27.66,27.48,27.13,N/A,N/A +2012,9,6,5,30,101190,100040,98940,72.63,0,7.41,8,8.1,8.13,8.14,8.13,8.11,8.08,8,221.15,221.08,221.01,220.95000000000002,220.89000000000001,220.83,220.77,220.70000000000002,220.55,28.75,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.45,27.27,26.88,N/A,N/A +2012,9,6,6,30,101250,100100,99000,75.87,0,7.48,8.1,8.21,8.25,8.27,8.26,8.25,8.22,8.15,223.71,223.73000000000002,223.72,223.68,223.65,223.61,223.57,223.52,223.42000000000002,28.580000000000002,28.22,28.04,27.84,27.650000000000002,27.46,27.26,27.07,26.69,N/A,N/A +2012,9,6,7,30,101280,100130,99030,74.92,0,6.55,7.07,7.17,7.22,7.25,7.2700000000000005,7.28,7.28,7.28,227.38,227.41,227.4,227.39000000000001,227.37,227.35,227.34,227.31,227.26,28.57,28.22,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.71,N/A,N/A +2012,9,6,8,30,101310,100170,99060,77.77,0,6.84,7.33,7.41,7.44,7.45,7.45,7.44,7.43,7.38,235.63,235.76,235.82,235.88,235.93,235.97,236.01,236.04,236.11,28.330000000000002,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A +2012,9,6,9,30,101320,100180,99070,76.57000000000001,0,6.18,6.68,6.78,6.84,6.88,6.91,6.93,6.94,6.96,237.81,237.91,237.97,238.03,238.09,238.15,238.20000000000002,238.26,238.37,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.2,27.02,26.63,N/A,N/A +2012,9,6,10,30,101340,100190,99080,79.63,0,6.44,6.9,6.98,7.01,7.0200000000000005,7.0200000000000005,7.01,6.99,6.96,243.8,243.81,243.81,243.83,243.84,243.86,243.88,243.9,243.95000000000002,28.28,27.91,27.73,27.53,27.34,27.150000000000002,26.95,26.76,26.38,N/A,N/A +2012,9,6,11,30,101350,100200,99090,80.22,0,5.49,5.86,5.93,5.97,6,6.0200000000000005,6.04,6.05,6.0600000000000005,243.72,243.52,243.33,243.1,242.87,242.62,242.38,242.14000000000001,241.62,28.19,27.830000000000002,27.650000000000002,27.46,27.26,27.07,26.88,26.7,26.32,N/A,N/A +2012,9,6,12,30,101380,100240,99130,82.21000000000001,0,5.3100000000000005,5.65,5.7,5.73,5.74,5.75,5.74,5.74,5.72,258.96,258.4,257.99,257.58,257.21,256.85,256.49,256.16,255.51000000000002,28.21,27.84,27.66,27.46,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,9,6,13,30,101410,100260,99150,82.65,0,5.24,5.51,5.5200000000000005,5.51,5.49,5.46,5.43,5.4,5.33,277.23,275.47,274.6,273.72,272.94,272.2,271.47,270.79,269.46,27.98,27.61,27.43,27.23,27.04,26.85,26.66,26.47,26.09,N/A,N/A +2012,9,6,14,30,101450,100300,99190,86.18,0,3.7,3.84,3.85,3.83,3.8000000000000003,3.7800000000000002,3.75,3.72,3.65,294.72,293.86,293.37,292.81,292.26,291.68,291,290.32,288.49,27.47,27.09,26.92,26.72,26.53,26.34,26.150000000000002,25.97,25.6,N/A,N/A +2012,9,6,15,30,101450,100310,99190,84.63,0,2.5,2.61,2.63,2.65,2.66,2.68,2.71,2.74,2.86,276.72,275.28000000000003,274.34000000000003,273.28000000000003,272.16,270.95,269.52,268.07,264.23,27.67,27.3,27.13,26.94,26.76,26.580000000000002,26.400000000000002,26.23,25.900000000000002,N/A,N/A +2012,9,6,16,30,101470,100320,99210,83.61,0,2.84,3,3.0300000000000002,3.0500000000000003,3.0700000000000003,3.09,3.1,3.12,3.15,266.96,266.43,266.23,266.02,265.84000000000003,265.66,265.47,265.27,264.86,27.87,27.5,27.32,27.12,26.92,26.740000000000002,26.54,26.35,25.98,N/A,N/A +2012,9,6,17,30,101440,100290,99180,82.24,0,2.93,3.12,3.17,3.21,3.25,3.2800000000000002,3.31,3.34,3.39,242.77,242.84,242.9,242.96,243,243.04,243.07,243.1,243.12,28.11,27.740000000000002,27.560000000000002,27.36,27.17,26.98,26.78,26.6,26.22,N/A,N/A +2012,9,6,18,30,101420,100280,99170,82.67,0,3.48,3.67,3.7,3.73,3.75,3.77,3.79,3.81,3.88,214.37,214.9,215.25,215.65,216.07,216.52,217.07,217.64000000000001,219.25,28.22,27.85,27.68,27.48,27.3,27.12,26.93,26.75,26.41,N/A,N/A +2012,9,6,19,30,101380,100230,99120,80.43,0,3.92,4.15,4.2,4.22,4.23,4.24,4.24,4.25,4.25,208.05,208.46,208.68,208.9,209.12,209.34,209.59,209.83,210.42000000000002,28.55,28.19,28.01,27.810000000000002,27.63,27.44,27.25,27.060000000000002,26.69,N/A,N/A +2012,9,6,20,30,101350,100200,99100,78.91,0,4.96,5.26,5.29,5.3,5.29,5.28,5.26,5.23,5.17,215.42000000000002,215.41,215.4,215.38,215.37,215.35,215.33,215.31,215.28,28.71,28.36,28.18,27.98,27.79,27.6,27.41,27.22,26.84,N/A,N/A +2012,9,6,21,30,101310,100170,99060,81.15,0,5.34,5.65,5.69,5.69,5.68,5.66,5.62,5.59,5.5,209.9,209.78,209.67000000000002,209.57,209.47,209.36,209.24,209.11,208.81,28.54,28.18,28.01,27.8,27.61,27.42,27.23,27.04,26.66,N/A,N/A +2012,9,6,22,30,101280,100140,99030,80.17,0,5.5600000000000005,5.93,5.99,6,6.01,6,5.98,5.96,5.91,213.17000000000002,213.27,213.26,213.26,213.26,213.26,213.25,213.25,213.21,28.55,28.21,28.04,27.84,27.650000000000002,27.46,27.28,27.09,26.73,N/A,N/A +2012,9,6,23,30,101250,100110,99010,79.73,0,6.48,6.94,7.01,7.03,7.03,7.0200000000000005,7,6.98,6.92,215.23000000000002,215.28,215.27,215.24,215.21,215.18,215.14000000000001,215.09,214.96,28.560000000000002,28.21,28.04,27.84,27.650000000000002,27.46,27.28,27.09,26.72,N/A,N/A +2012,9,7,0,30,101210,100070,98960,79.91,0,7.25,7.78,7.86,7.87,7.86,7.82,7.78,7.72,7.58,219.78,219.75,219.75,219.73000000000002,219.71,219.68,219.63,219.57,219.39000000000001,28.5,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.02,26.650000000000002,N/A,N/A +2012,9,7,1,30,101220,100070,98970,78.26,0,6.7700000000000005,7.2700000000000005,7.36,7.38,7.390000000000001,7.37,7.3500000000000005,7.32,7.23,221,221.01,221.02,221.01,221.01,221.01,220.99,220.97,220.88,28.580000000000002,28.240000000000002,28.07,27.87,27.68,27.5,27.310000000000002,27.13,26.76,N/A,N/A +2012,9,7,2,30,101200,100060,98950,79.11,0,6,6.44,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.6000000000000005,6.61,6.62,219.5,219.62,219.67000000000002,219.72,219.76,219.79,219.83,219.86,219.93,28.53,28.18,28.01,27.810000000000002,27.63,27.45,27.26,27.09,26.740000000000002,N/A,N/A +2012,9,7,3,30,101210,100060,98960,76.74,0,6.45,6.91,6.99,7.01,7.0200000000000005,7.01,6.99,6.97,6.91,226.51,226.51,226.49,226.47,226.46,226.44,226.42000000000002,226.41,226.38,28.53,28.19,28.01,27.82,27.63,27.45,27.26,27.080000000000002,26.71,N/A,N/A +2012,9,7,4,30,101210,100060,98960,77.85000000000001,0,6.29,6.74,6.8,6.82,6.82,6.8100000000000005,6.79,6.7700000000000005,6.71,228.69,228.69,228.69,228.68,228.66,228.63,228.6,228.56,228.47,28.47,28.12,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A +2012,9,7,5,30,101220,100070,98960,74.14,0,6.41,6.88,6.97,7,7.0200000000000005,7.0200000000000005,7.01,7,6.96,232.47,232.58,232.61,232.64000000000001,232.66,232.69,232.70000000000002,232.71,232.69,28.6,28.26,28.09,27.89,27.7,27.51,27.32,27.14,26.76,N/A,N/A +2012,9,7,6,30,101240,100100,98990,71.85000000000001,0,5.98,6.43,6.5200000000000005,6.5600000000000005,6.59,6.61,6.62,6.63,6.65,237.59,237.73000000000002,237.8,237.87,237.93,237.99,238.06,238.12,238.26,28.77,28.44,28.28,28.080000000000002,27.900000000000002,27.72,27.53,27.35,26.98,N/A,N/A +2012,9,7,7,30,101260,100120,99010,75.32000000000001,0,6.2700000000000005,6.71,6.78,6.79,6.78,6.76,6.73,6.69,6.6000000000000005,238,238.16,238.22,238.29,238.35,238.41,238.47,238.51,238.64000000000001,28.57,28.22,28.05,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A +2012,9,7,8,30,101250,100100,99000,71.67,0,6.38,6.88,6.97,7.01,7.03,7.03,7.0200000000000005,7,6.96,244.59,244.65,244.74,244.86,244.97,245.08,245.19,245.31,245.57,28.73,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A +2012,9,7,9,30,101280,100140,99030,75.78,0,5.97,6.390000000000001,6.46,6.49,6.5,6.5,6.49,6.48,6.45,243.57,243.87,243.96,244.05,244.12,244.20000000000002,244.28,244.34,244.49,28.44,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.580000000000002,N/A,N/A +2012,9,7,10,30,101270,100130,99020,78.99,0,6.24,6.68,6.76,6.79,6.8,6.8,6.78,6.7700000000000005,6.72,251.02,251.33,251.54,251.75,251.95000000000002,252.13,252.31,252.49,252.84,28.25,27.88,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.34,N/A,N/A +2012,9,7,11,30,101300,100160,99050,80.66,0,5.74,6.11,6.17,6.18,6.19,6.18,6.17,6.15,6.11,267.18,266.66,266.39,266.11,265.88,265.64,265.41,265.19,264.74,28.02,27.650000000000002,27.47,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A +2012,9,7,12,30,101300,100150,99040,82.64,0,5.75,6.11,6.17,6.2,6.2,6.2,6.19,6.17,6.140000000000001,266.83,266.42,266.18,265.94,265.71,265.49,265.26,265.05,264.6,27.69,27.3,27.12,26.92,26.73,26.53,26.34,26.150000000000002,25.77,N/A,N/A +2012,9,7,13,30,101320,100170,99060,80.97,0,5.17,5.49,5.55,5.57,5.58,5.58,5.58,5.57,5.55,267.73,267.17,266.84000000000003,266.5,266.19,265.88,265.57,265.26,264.63,27.7,27.32,27.14,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A +2012,9,7,14,30,101340,100190,99080,81.88,0,4.98,5.26,5.3100000000000005,5.32,5.32,5.32,5.3,5.29,5.26,274.17,273.89,273.69,273.49,273.3,273.12,272.91,272.72,272.26,27.48,27.09,26.91,26.71,26.51,26.32,26.13,25.94,25.560000000000002,N/A,N/A +2012,9,7,15,30,101330,100180,99070,81.07000000000001,0,4.69,4.99,5.05,5.09,5.11,5.13,5.15,5.15,5.17,269.71,269.2,268.94,268.69,268.46,268.26,268.05,267.85,267.44,27.57,27.18,26.990000000000002,26.79,26.6,26.41,26.21,26.03,25.650000000000002,N/A,N/A +2012,9,7,16,30,101350,100200,99090,78.33,0,4.57,4.86,4.93,4.96,4.98,5,5.01,5.0200000000000005,5.03,259.71,259.68,259.72,259.77,259.82,259.87,259.93,259.99,260.1,27.86,27.48,27.3,27.1,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,9,7,17,30,101320,100170,99060,78.36,0,3.98,4.21,4.25,4.26,4.2700000000000005,4.28,4.28,4.29,4.29,234.28,234.26,234.29,234.32,234.37,234.43,234.52,234.62,235.05,28,27.63,27.46,27.27,27.09,26.91,26.73,26.560000000000002,26.23,N/A,N/A +2012,9,7,18,30,101260,100120,99010,74.74,0,4.51,4.75,4.7700000000000005,4.7700000000000005,4.76,4.74,4.71,4.68,4.61,211.70000000000002,212.01,212.25,212.49,212.73000000000002,212.97,213.24,213.51,214.23000000000002,28.39,28.03,27.86,27.67,27.490000000000002,27.3,27.12,26.95,26.6,N/A,N/A +2012,9,7,19,30,101260,100120,99010,73.24,0,4.05,4.2700000000000005,4.3,4.3,4.29,4.28,4.25,4.23,4.15,211.36,211.66,211.8,211.94,212.09,212.23000000000002,212.39000000000001,212.53,212.9,28.62,28.27,28.1,27.91,27.72,27.54,27.36,27.18,26.82,N/A,N/A +2012,9,7,20,30,101190,100040,98940,73.86,0,5.18,5.48,5.51,5.51,5.49,5.47,5.43,5.39,5.29,209.8,209.86,209.9,209.93,209.96,209.98000000000002,210,210.02,210.02,28.64,28.29,28.12,27.93,27.740000000000002,27.55,27.36,27.19,26.82,N/A,N/A +2012,9,7,21,30,101170,100030,98920,76.16,0,5.64,6,6.05,6.05,6.04,6.0200000000000005,5.98,5.95,5.87,210.92000000000002,210.95000000000002,210.95000000000002,210.95000000000002,210.95000000000002,210.93,210.91,210.88,210.81,28.51,28.16,27.990000000000002,27.79,27.6,27.41,27.22,27.03,26.66,N/A,N/A +2012,9,7,22,30,101130,99990,98880,77.47,0,6.23,6.67,6.74,6.75,6.76,6.75,6.74,6.71,6.66,207.74,207.8,207.83,207.86,207.87,207.89000000000001,207.91,207.92000000000002,207.93,28.45,28.1,27.93,27.73,27.54,27.36,27.16,26.98,26.6,N/A,N/A +2012,9,7,23,30,101090,99950,98840,76.38,0,6.11,6.5600000000000005,6.65,6.68,6.7,6.71,6.7,6.7,6.67,210.29,210.35,210.37,210.39000000000001,210.4,210.41,210.4,210.38,210.33,28.53,28.19,28.02,27.82,27.63,27.44,27.25,27.07,26.7,N/A,N/A +2012,9,8,0,30,101070,99930,98820,76.34,0,5.8100000000000005,6.22,6.3,6.32,6.33,6.33,6.32,6.3100000000000005,6.2700000000000005,217.57,217.65,217.71,217.76,217.81,217.85,217.89000000000001,217.94,218.02,28.490000000000002,28.150000000000002,27.97,27.77,27.59,27.39,27.2,27.02,26.64,N/A,N/A +2012,9,8,1,30,101060,99910,98810,76.92,0,5.83,6.25,6.32,6.3500000000000005,6.36,6.36,6.3500000000000005,6.34,6.3,217.58,217.59,217.63,217.67000000000002,217.69,217.70000000000002,217.71,217.71,217.70000000000002,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.02,26.64,N/A,N/A +2012,9,8,2,30,101040,99900,98790,78.62,0,6.4,6.87,6.95,6.98,6.99,6.99,6.98,6.96,6.92,222.39000000000001,222.44,222.47,222.5,222.51,222.53,222.53,222.54,222.54,28.43,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.96,26.580000000000002,N/A,N/A +2012,9,8,3,30,101030,99890,98790,77.63,0,6.68,7.19,7.28,7.3100000000000005,7.32,7.32,7.3100000000000005,7.29,7.24,227.73000000000002,227.81,227.85,227.88,227.91,227.94,227.97,228,228.07,28.46,28.11,27.94,27.740000000000002,27.55,27.36,27.17,26.990000000000002,26.61,N/A,N/A +2012,9,8,4,30,101020,99880,98780,78.4,0,6.79,7.28,7.36,7.390000000000001,7.390000000000001,7.38,7.36,7.33,7.2700000000000005,229.75,229.74,229.75,229.75,229.74,229.74,229.72,229.70000000000002,229.67000000000002,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A +2012,9,8,5,30,101040,99900,98790,78.41,0,7.01,7.57,7.69,7.74,7.78,7.79,7.8,7.8100000000000005,7.8,231.19,231.27,231.31,231.34,231.37,231.4,231.42000000000002,231.45000000000002,231.5,28.48,28.13,27.95,27.75,27.57,27.38,27.18,27,26.63,N/A,N/A +2012,9,8,6,30,101060,99920,98810,76.59,0,6.3100000000000005,6.78,6.87,6.9,6.92,6.93,6.92,6.92,6.890000000000001,243.48000000000002,243.43,243.41,243.39000000000001,243.37,243.34,243.32,243.3,243.27,28.54,28.19,28.01,27.82,27.63,27.44,27.25,27.060000000000002,26.69,N/A,N/A +2012,9,8,7,30,101090,99950,98850,75.59,0,6.51,7,7.1000000000000005,7.140000000000001,7.16,7.17,7.18,7.18,7.17,235.15,235.24,235.3,235.36,235.43,235.49,235.57,235.64000000000001,235.8,28.68,28.330000000000002,28.16,27.96,27.77,27.59,27.39,27.21,26.84,N/A,N/A +2012,9,8,8,30,101150,100010,98900,76.28,0,5.98,6.45,6.53,6.58,6.6000000000000005,6.61,6.61,6.61,6.59,243.22,243.32,243.38,243.44,243.5,243.56,243.63,243.71,243.86,28.62,28.27,28.09,27.900000000000002,27.71,27.51,27.32,27.13,26.75,N/A,N/A +2012,9,8,9,30,101150,100010,98900,76.25,0,6.68,7.22,7.33,7.390000000000001,7.42,7.44,7.45,7.45,7.45,248.96,249.07,249.14000000000001,249.23000000000002,249.31,249.4,249.49,249.57,249.76000000000002,28.64,28.29,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.77,N/A,N/A +2012,9,8,10,30,101180,100040,98930,76.78,0,6.83,7.390000000000001,7.51,7.5600000000000005,7.6000000000000005,7.62,7.62,7.63,7.61,250.81,250.77,250.79,250.81,250.85,250.9,250.94,250.99,251.11,28.6,28.25,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A +2012,9,8,11,30,101230,100080,98980,77.15,0,6.04,6.5,6.6000000000000005,6.65,6.69,6.71,6.73,6.75,6.7700000000000005,267.33,266.81,266.5,266.17,265.88,265.58,265.28000000000003,264.98,264.36,28.52,28.17,27.990000000000002,27.79,27.61,27.42,27.22,27.04,26.66,N/A,N/A +2012,9,8,12,30,101300,100150,99040,77.46000000000001,0,7.62,8.23,8.35,8.4,8.44,8.45,8.45,8.44,8.42,284.79,284.40000000000003,284.14,283.87,283.63,283.39,283.15000000000003,282.92,282.45,28.19,27.810000000000002,27.63,27.42,27.23,27.04,26.85,26.66,26.28,N/A,N/A +2012,9,8,13,30,101340,100190,99070,79.51,0,8.13,8.76,8.89,8.950000000000001,8.98,9,9,9,8.98,290.81,290.77,290.7,290.63,290.56,290.49,290.42,290.34000000000003,290.18,27.37,26.94,26.75,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,8,14,30,101360,100210,99090,79.12,0,6.92,7.41,7.51,7.5600000000000005,7.59,7.61,7.62,7.62,7.63,295.89,296.09000000000003,296.22,296.36,296.49,296.61,296.74,296.86,297.13,27.060000000000002,26.63,26.44,26.240000000000002,26.04,25.86,25.66,25.48,25.11,N/A,N/A +2012,9,8,15,30,101360,100210,99100,75.24,0,5.69,6.09,6.18,6.24,6.28,6.3100000000000005,6.34,6.36,6.390000000000001,307.97,308.11,308.19,308.24,308.29,308.33,308.35,308.37,308.38,27.59,27.2,27.01,26.810000000000002,26.62,26.43,26.23,26.05,25.67,N/A,N/A +2012,9,8,16,30,101340,100200,99090,67.99,0,5.86,6.25,6.32,6.34,6.3500000000000005,6.34,6.34,6.33,6.32,318.75,317.99,317.54,317.08,316.66,316.25,315.82,315.41,314.56,28.38,28.04,27.87,27.68,27.5,27.32,27.13,26.96,26.6,N/A,N/A +2012,9,8,17,30,101340,100190,99080,67.33,0,5.57,6.03,6.13,6.2,6.26,6.3,6.33,6.36,6.41,320.74,321.46,321.85,322.23,322.57,322.89,323.19,323.47,324.02,28.91,28.580000000000002,28.42,28.22,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A +2012,9,8,18,30,101320,100180,99070,63.28,0,4.96,5.42,5.53,5.61,5.67,5.72,5.76,5.8,5.88,318.38,319.09000000000003,319.53000000000003,319.92,320.27,320.6,320.91,321.21,321.79,29.63,29.35,29.2,29,28.82,28.63,28.44,28.26,27.88,N/A,N/A +2012,9,8,19,30,101280,100140,99040,60.980000000000004,0,5,5.48,5.6000000000000005,5.68,5.74,5.79,5.83,5.87,5.94,331.31,331.13,331.03000000000003,330.92,330.83,330.74,330.65000000000003,330.57,330.37,30.240000000000002,30,29.85,29.67,29.490000000000002,29.310000000000002,29.12,28.94,28.57,N/A,N/A +2012,9,8,20,30,101250,100110,99010,60,0,4.48,4.93,5.05,5.13,5.2,5.26,5.32,5.37,5.49,332.79,332.71,332.71,332.69,332.67,332.66,332.64,332.63,332.64,30.68,30.490000000000002,30.36,30.18,30.01,29.84,29.66,29.490000000000002,29.14,N/A,N/A +2012,9,8,21,30,101210,100080,98980,60.58,0,4.78,5.24,5.3500000000000005,5.43,5.5,5.57,5.67,5.79,6.12,325.66,326.01,326.26,326.54,326.85,327.23,327.83,328.51,331.28000000000003,31.060000000000002,30.93,30.82,30.67,30.52,30.37,30.23,30.1,29.84,N/A,N/A +2012,9,8,22,30,101200,100070,98970,72.62,0,8.51,9.47,9.69,9.81,9.89,9.93,9.950000000000001,9.96,9.92,351.63,352.3,352.55,352.78000000000003,352.97,353.15000000000003,353.32,353.48,353.76,30.48,30.29,30.16,29.98,29.810000000000002,29.64,29.46,29.29,28.94,N/A,N/A +2012,9,8,23,30,101230,100100,99000,71.16,0,8.2,9.06,9.26,9.370000000000001,9.44,9.48,9.49,9.5,9.49,357.81,358.08,358.23,358.37,358.49,358.6,358.7,358.8,358.99,30.330000000000002,30.13,29.990000000000002,29.810000000000002,29.64,29.46,29.28,29.1,28.73,N/A,N/A +2012,9,9,0,30,101280,100140,99040,70.10000000000001,0,8.49,9.34,9.540000000000001,9.66,9.74,9.790000000000001,9.83,9.86,9.89,3.62,3.74,3.77,3.8000000000000003,3.8200000000000003,3.83,3.85,3.86,3.88,29.93,29.68,29.53,29.34,29.16,28.97,28.78,28.6,28.22,N/A,N/A +2012,9,9,1,30,101350,100210,99100,73.2,0,10.61,11.65,11.88,12,12.08,12.13,12.15,12.17,12.17,11.85,12.22,12.42,12.61,12.77,12.93,13.08,13.22,13.49,28.62,28.26,28.080000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A +2012,9,9,2,30,101390,100240,99130,75.16,0,11.43,12.530000000000001,12.790000000000001,12.91,12.99,13.040000000000001,13.07,13.08,13.07,17.62,17.69,17.72,17.75,17.78,17.8,17.830000000000002,17.85,17.900000000000002,27.580000000000002,27.14,26.94,26.73,26.53,26.330000000000002,26.13,25.95,25.560000000000002,N/A,N/A +2012,9,9,3,30,101440,100290,99170,75.16,0,10.34,11.290000000000001,11.5,11.620000000000001,11.69,11.74,11.77,11.8,11.81,27.7,27.91,27.990000000000002,28.07,28.14,28.21,28.27,28.330000000000002,28.45,27.27,26.810000000000002,26.62,26.41,26.2,26.01,25.810000000000002,25.62,25.23,N/A,N/A +2012,9,9,4,30,101470,100310,99190,72.96000000000001,0,10.13,11.05,11.27,11.39,11.47,11.52,11.56,11.59,11.620000000000001,33.06,33.22,33.29,33.36,33.42,33.480000000000004,33.54,33.59,33.69,27.19,26.73,26.53,26.32,26.12,25.92,25.72,25.53,25.14,N/A,N/A +2012,9,9,5,30,101470,100310,99200,71.68,0,10.32,11.27,11.5,11.61,11.69,11.74,11.78,11.8,11.83,33.6,33.79,33.94,34.07,34.18,34.29,34.4,34.5,34.7,27.11,26.650000000000002,26.45,26.23,26.03,25.84,25.63,25.44,25.05,N/A,N/A +2012,9,9,6,30,101530,100370,99250,73.63,0,9.71,10.53,10.72,10.82,10.870000000000001,10.91,10.93,10.950000000000001,10.950000000000001,39.32,39.71,39.93,40.15,40.34,40.51,40.69,40.85,41.18,26.830000000000002,26.35,26.16,25.94,25.740000000000002,25.54,25.34,25.150000000000002,24.76,N/A,N/A +2012,9,9,7,30,101570,100410,99290,70.78,0,9.31,10.09,10.25,10.34,10.39,10.43,10.44,10.46,10.46,38.54,39,39.28,39.56,39.800000000000004,40.04,40.27,40.47,40.89,26.740000000000002,26.26,26.05,25.84,25.64,25.44,25.240000000000002,25.05,24.66,N/A,N/A +2012,9,9,8,30,101600,100440,99320,69.11,0,9.94,10.81,11,11.11,11.19,11.24,11.27,11.290000000000001,11.32,47.15,47.25,47.31,47.36,47.39,47.42,47.44,47.46,47.480000000000004,26.47,25.97,25.76,25.55,25.34,25.14,24.93,24.740000000000002,24.35,N/A,N/A +2012,9,9,9,30,101630,100470,99340,65.8,0,9.6,10.38,10.55,10.64,10.700000000000001,10.73,10.75,10.76,10.77,45.06,45.19,45.27,45.34,45.4,45.46,45.52,45.57,45.68,26.16,25.650000000000002,25.45,25.23,25.02,24.830000000000002,24.62,24.43,24.04,N/A,N/A +2012,9,9,10,30,101650,100490,99360,68.41,0,9.32,10.06,10.23,10.31,10.36,10.4,10.42,10.43,10.44,44.85,45.03,45.13,45.230000000000004,45.31,45.39,45.47,45.54,45.68,25.73,25.2,24.98,24.76,24.560000000000002,24.36,24.150000000000002,23.96,23.56,N/A,N/A +2012,9,9,11,30,101710,100540,99410,67.95,0,8.82,9.46,9.59,9.64,9.67,9.69,9.700000000000001,9.700000000000001,9.68,39.46,39.95,40.25,40.54,40.79,41.03,41.26,41.480000000000004,41.92,25.35,24.82,24.6,24.38,24.18,23.98,23.78,23.59,23.19,N/A,N/A +2012,9,9,12,30,101750,100580,99450,65.11,0,8.44,9.02,9.13,9.17,9.19,9.200000000000001,9.19,9.18,9.14,38.160000000000004,38.6,38.86,39.11,39.33,39.54,39.76,39.95,40.35,25.04,24.5,24.28,24.07,23.86,23.66,23.46,23.27,22.88,N/A,N/A +2012,9,9,13,30,101760,100590,99460,64.32000000000001,0,8.55,9.14,9.25,9.290000000000001,9.31,9.32,9.31,9.3,9.27,35.68,36.06,36.28,36.49,36.68,36.85,37.03,37.19,37.52,24.79,24.240000000000002,24.02,23.81,23.6,23.400000000000002,23.2,23.01,22.62,N/A,N/A +2012,9,9,14,30,101810,100640,99500,62.28,0,8.07,8.6,8.69,8.73,8.74,8.75,8.74,8.73,8.700000000000001,34.93,35.29,35.51,35.71,35.89,36.050000000000004,36.22,36.37,36.67,24.62,24.060000000000002,23.85,23.63,23.42,23.23,23.02,22.84,22.44,N/A,N/A +2012,9,9,15,30,101820,100650,99520,58.69,0,7.87,8.41,8.51,8.55,8.58,8.59,8.59,8.59,8.58,34.77,35.01,35.15,35.29,35.410000000000004,35.52,35.62,35.72,35.93,24.75,24.21,23.990000000000002,23.78,23.57,23.38,23.17,22.98,22.59,N/A,N/A +2012,9,9,16,30,101840,100670,99530,53.72,0,6.93,7.390000000000001,7.49,7.54,7.57,7.6000000000000005,7.61,7.62,7.640000000000001,35.11,35.21,35.28,35.33,35.37,35.4,35.43,35.46,35.51,25.060000000000002,24.55,24.34,24.13,23.92,23.73,23.53,23.34,22.94,N/A,N/A +2012,9,9,17,30,101810,100640,99500,50.15,0,5.03,5.36,5.44,5.49,5.53,5.57,5.6000000000000005,5.62,5.67,37.97,37.5,37.22,36.96,36.71,36.47,36.230000000000004,36.01,35.54,25.53,25.07,24.87,24.66,24.46,24.27,24.060000000000002,23.88,23.490000000000002,N/A,N/A +2012,9,9,18,30,101780,100620,99490,48.01,0,4.12,4.4,4.47,4.54,4.58,4.63,4.67,4.71,4.79,43.7,42.230000000000004,41.37,40.57,39.85,39.19,38.56,37.980000000000004,36.82,26.240000000000002,25.810000000000002,25.63,25.42,25.23,25.04,24.84,24.650000000000002,24.26,N/A,N/A +2012,9,9,19,30,101760,100600,99470,45.87,0,3.19,3.35,3.38,3.41,3.43,3.45,3.48,3.5,3.5500000000000003,63.76,60.5,58.53,56.74,55.13,53.65,52.230000000000004,50.93,48.42,26.93,26.55,26.37,26.17,25.98,25.8,25.6,25.42,25.03,N/A,N/A +2012,9,9,20,30,101710,100550,99420,49.910000000000004,0,3.29,3.42,3.42,3.41,3.39,3.38,3.36,3.35,3.31,82.82000000000001,81.82000000000001,81.13,80.43,79.75,79.09,78.36,77.69,76.09,26.79,26.400000000000002,26.22,26.02,25.830000000000002,25.64,25.44,25.26,24.88,N/A,N/A +2012,9,9,21,30,101680,100520,99390,49.46,0,2.75,2.86,2.87,2.87,2.86,2.85,2.85,2.84,2.82,83.19,82.17,81.58,80.96000000000001,80.37,79.82000000000001,79.21000000000001,78.64,77.35000000000001,27.04,26.66,26.48,26.28,26.09,25.900000000000002,25.7,25.52,25.13,N/A,N/A +2012,9,9,22,30,101650,100490,99360,48.39,0,2.05,2.16,2.18,2.2,2.22,2.23,2.24,2.2600000000000002,2.29,79.57000000000001,78.42,77.7,76.99,76.31,75.65,74.97,74.33,72.84,27.34,26.97,26.79,26.59,26.400000000000002,26.21,26.02,25.830000000000002,25.45,N/A,N/A +2012,9,9,23,30,101640,100480,99360,47.95,0,1.1500000000000001,1.21,1.24,1.25,1.28,1.29,1.31,1.33,1.3800000000000001,96.27,94.27,93.15,92.06,91.03,90.04,88.99,87.99,85.83,27.580000000000002,27.23,27.05,26.85,26.66,26.47,26.28,26.09,25.71,N/A,N/A +2012,9,10,0,30,101640,100480,99360,48.82,0,0.99,1.11,1.17,1.23,1.28,1.34,1.4000000000000001,1.45,1.57,350.34000000000003,352.13,353.2,354.13,354.94,355.65000000000003,356.32,356.93,358.08,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.34,25.95,N/A,N/A +2012,9,10,1,30,101640,100490,99370,47.54,0,6.8100000000000005,7.2,7.22,7.2,7.17,7.13,7.08,7.03,6.93,28.54,28.44,28.39,28.35,28.32,28.3,28.29,28.27,28.28,28.14,27.78,27.6,27.400000000000002,27.21,27.02,26.82,26.64,26.25,N/A,N/A +2012,9,10,2,30,101660,100510,99380,51.81,0,7.17,7.66,7.74,7.7700000000000005,7.78,7.78,7.7700000000000005,7.76,7.72,26.63,26.85,26.93,27.02,27.09,27.150000000000002,27.22,27.29,27.42,27.51,27.11,26.92,26.72,26.52,26.34,26.13,25.95,25.560000000000002,N/A,N/A +2012,9,10,3,30,101700,100540,99420,51.81,0,6.69,7.13,7.21,7.24,7.25,7.25,7.24,7.24,7.21,35.22,35.36,35.43,35.5,35.56,35.62,35.68,35.74,35.87,27.3,26.89,26.71,26.5,26.310000000000002,26.11,25.91,25.73,25.34,N/A,N/A +2012,9,10,4,30,101680,100520,99400,53.64,0,5.72,6.05,6.11,6.13,6.13,6.140000000000001,6.13,6.13,6.1000000000000005,40.38,40.67,40.85,41.01,41.17,41.300000000000004,41.45,41.57,41.84,27.14,26.740000000000002,26.55,26.34,26.150000000000002,25.96,25.76,25.57,25.18,N/A,N/A +2012,9,10,5,30,101690,100530,99410,54.730000000000004,0,5.36,5.68,5.73,5.76,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,48.89,49.17,49.32,49.47,49.59,49.71,49.83,49.94,50.15,27.14,26.73,26.54,26.34,26.14,25.95,25.75,25.560000000000002,25.17,N/A,N/A +2012,9,10,6,30,101700,100540,99420,54.65,0,5.2,5.5,5.55,5.5600000000000005,5.57,5.57,5.57,5.57,5.55,55.63,55.88,56.06,56.24,56.39,56.54,56.7,56.83,57.11,27.02,26.62,26.44,26.240000000000002,26.04,25.85,25.650000000000002,25.46,25.07,N/A,N/A +2012,9,10,7,30,101720,100560,99430,54.03,0,5.63,5.97,6.03,6.05,6.0600000000000005,6.0600000000000005,6.0600000000000005,6.0600000000000005,6.04,63.24,63.03,62.89,62.76,62.63,62.52,62.4,62.300000000000004,62.1,27.01,26.61,26.42,26.22,26.02,25.830000000000002,25.63,25.44,25.05,N/A,N/A +2012,9,10,8,30,101720,100560,99430,54.61,0,5.25,5.55,5.6000000000000005,5.62,5.62,5.62,5.61,5.61,5.59,49.6,50.09,50.43,50.76,51.06,51.34,51.620000000000005,51.88,52.4,26.88,26.48,26.29,26.09,25.89,25.7,25.5,25.310000000000002,24.92,N/A,N/A +2012,9,10,9,30,101730,100570,99440,54.27,0,4.89,5.15,5.19,5.21,5.22,5.22,5.22,5.22,5.21,72.93,72,71.41,70.84,70.31,69.82000000000001,69.33,68.88,67.96000000000001,26.76,26.35,26.16,25.96,25.76,25.57,25.37,25.18,24.78,N/A,N/A +2012,9,10,10,30,101740,100580,99450,56.980000000000004,0,5.83,6.16,6.21,6.23,6.23,6.23,6.22,6.2,6.17,49.67,49.92,50.08,50.22,50.35,50.47,50.59,50.7,50.92,26.61,26.19,26,25.79,25.59,25.400000000000002,25.2,25.01,24.61,N/A,N/A +2012,9,10,11,30,101750,100590,99460,56.88,0,5.3500000000000005,5.64,5.67,5.68,5.68,5.68,5.67,5.66,5.63,66.8,66.22,65.83,65.44,65.08,64.75,64.41,64.11,63.480000000000004,26.44,26.02,25.830000000000002,25.62,25.42,25.22,25.02,24.830000000000002,24.44,N/A,N/A +2012,9,10,12,30,101790,100620,99490,54.59,0,3.96,4.19,4.23,4.25,4.2700000000000005,4.28,4.29,4.29,4.3,46.01,46.92,47.52,48.09,48.620000000000005,49.120000000000005,49.61,50.07,51,26.26,25.85,25.66,25.45,25.26,25.060000000000002,24.86,24.67,24.28,N/A,N/A +2012,9,10,13,30,101800,100630,99500,57.1,0,4.94,5.08,5.04,4.98,4.92,4.86,4.8100000000000005,4.75,4.65,75.13,74.51,74.05,73.58,73.14,72.72,72.28,71.86,71.01,26.13,25.7,25.51,25.310000000000002,25.11,24.92,24.72,24.53,24.14,N/A,N/A +2012,9,10,14,30,101840,100670,99550,59.18,0,4.89,5.18,5.24,5.28,5.3,5.32,5.34,5.3500000000000005,5.37,65.02,65.33,65.31,65.25,65.17,65.08,64.98,64.88,64.65,26.080000000000002,25.650000000000002,25.46,25.25,25.05,24.85,24.650000000000002,24.46,24.07,N/A,N/A +2012,9,10,15,30,101850,100690,99560,60.160000000000004,0,4.96,5.24,5.29,5.32,5.34,5.36,5.37,5.38,5.4,74.96000000000001,73.77,73.10000000000001,72.48,71.94,71.45,70.97,70.55,69.71000000000001,26.05,25.61,25.42,25.21,25.01,24.82,24.61,24.43,24.03,N/A,N/A +2012,9,10,16,30,101870,100700,99570,60.85,0,5.6000000000000005,5.91,5.96,5.98,5.98,5.98,5.98,5.97,5.95,65.65,65.5,65.41,65.33,65.25,65.17,65.1,65.03,64.89,25.96,25.51,25.32,25.11,24.91,24.71,24.51,24.32,23.92,N/A,N/A +2012,9,10,17,30,101850,100690,99560,64.04,0,6.43,6.82,6.890000000000001,6.91,6.92,6.93,6.93,6.92,6.91,50.02,50.85,51.32,51.77,52.2,52.59,52.980000000000004,53.35,54.1,25.76,25.3,25.1,24.89,24.68,24.490000000000002,24.29,24.1,23.71,N/A,N/A +2012,9,10,18,30,101830,100670,99540,63.85,0,5.04,5.29,5.32,5.33,5.33,5.32,5.3,5.29,5.26,72.15,72.75,73.04,73.31,73.54,73.76,73.98,74.17,74.54,25.84,25.400000000000002,25.2,25,24.8,24.6,24.400000000000002,24.21,23.82,N/A,N/A +2012,9,10,19,30,101820,100660,99530,59.31,0,4.38,4.59,4.62,4.63,4.63,4.63,4.62,4.61,4.59,98.14,97.95,97.85000000000001,97.74000000000001,97.63,97.53,97.42,97.31,97.07000000000001,26.060000000000002,25.64,25.45,25.25,25.05,24.86,24.66,24.47,24.080000000000002,N/A,N/A +2012,9,10,20,30,101770,100600,99480,60,0,4.44,4.69,4.74,4.7700000000000005,4.79,4.8,4.8100000000000005,4.82,4.82,101.8,101.44,101.23,101.02,100.82000000000001,100.65,100.47,100.3,99.94,26.14,25.72,25.53,25.32,25.12,24.93,24.73,24.54,24.16,N/A,N/A +2012,9,10,21,30,101750,100580,99460,57.84,0,4.25,4.49,4.54,4.5600000000000005,4.57,4.59,4.6000000000000005,4.6000000000000005,4.61,104.92,104.63,104.46000000000001,104.3,104.15,103.99000000000001,103.84,103.69,103.38,26.36,25.95,25.76,25.560000000000002,25.36,25.17,24.97,24.78,24.39,N/A,N/A +2012,9,10,22,30,101720,100550,99430,55.82,0,4.73,5.0200000000000005,5.07,5.11,5.13,5.15,5.16,5.17,5.19,103.63,103.26,103.04,102.82000000000001,102.61,102.41,102.19,101.99000000000001,101.56,26.560000000000002,26.150000000000002,25.96,25.76,25.560000000000002,25.37,25.17,24.990000000000002,24.6,N/A,N/A +2012,9,10,23,30,101720,100560,99430,54.84,0,5.64,6.0200000000000005,6.1000000000000005,6.15,6.18,6.2,6.22,6.23,6.25,113.9,113.4,113.13,112.85000000000001,112.60000000000001,112.36,112.10000000000001,111.87,111.36,26.78,26.38,26.19,25.990000000000002,25.79,25.6,25.400000000000002,25.22,24.830000000000002,N/A,N/A +2012,9,11,0,30,101690,100530,99400,56.04,0,5.55,5.93,6.01,6.05,6.08,6.1000000000000005,6.12,6.13,6.16,112.23,111.77,111.49000000000001,111.22,110.97,110.73,110.48,110.26,109.76,26.87,26.46,26.28,26.080000000000002,25.88,25.69,25.490000000000002,25.310000000000002,24.92,N/A,N/A +2012,9,11,1,30,101680,100520,99400,54.19,0,6.140000000000001,6.59,6.69,6.74,6.78,6.8100000000000005,6.84,6.86,6.890000000000001,110.82000000000001,110.33,110.06,109.81,109.58,109.35000000000001,109.13,108.92,108.47,27.05,26.650000000000002,26.46,26.26,26.060000000000002,25.87,25.67,25.490000000000002,25.1,N/A,N/A +2012,9,11,2,30,101700,100540,99420,56.6,0,6.5200000000000005,7,7.1000000000000005,7.16,7.2,7.23,7.25,7.2700000000000005,7.29,108.75,108.4,108.2,108,107.82000000000001,107.64,107.46000000000001,107.3,106.95,27.080000000000002,26.68,26.490000000000002,26.29,26.09,25.900000000000002,25.7,25.52,25.13,N/A,N/A +2012,9,11,3,30,101690,100530,99410,58.46,0,6.15,6.58,6.67,6.72,6.76,6.79,6.8100000000000005,6.82,6.8500000000000005,105.26,105,104.82000000000001,104.65,104.48,104.32000000000001,104.16,104.01,103.69,27.01,26.6,26.42,26.21,26.02,25.82,25.62,25.44,25.04,N/A,N/A +2012,9,11,4,30,101700,100540,99420,62.02,0,6.2,6.65,6.74,6.8,6.84,6.87,6.890000000000001,6.91,6.93,105.98,106.06,106.02,105.95,105.88,105.81,105.72,105.65,105.48,26.900000000000002,26.490000000000002,26.3,26.09,25.89,25.69,25.490000000000002,25.3,24.91,N/A,N/A +2012,9,11,5,30,101700,100540,99420,61.04,0,6.390000000000001,6.8500000000000005,6.96,7.03,7.07,7.11,7.140000000000001,7.16,7.2,105.68,105.61,105.55,105.49000000000001,105.44,105.38,105.33,105.28,105.19,26.88,26.46,26.27,26.060000000000002,25.87,25.67,25.47,25.28,24.89,N/A,N/A +2012,9,11,6,30,101710,100550,99420,59.36,0,6.09,6.640000000000001,6.78,6.890000000000001,6.97,7.03,7.09,7.140000000000001,7.22,102.73,103.62,103.98,104.26,104.49000000000001,104.69,104.86,105.01,105.26,26.97,26.57,26.39,26.19,25.990000000000002,25.8,25.6,25.41,25.02,N/A,N/A +2012,9,11,7,30,101720,100560,99440,58.43,0,7.390000000000001,7.92,7.99,8.02,8.02,8.02,8,7.98,7.930000000000001,117.26,117.25,117.23,117.21000000000001,117.19,117.18,117.16,117.13,117.08,27.07,26.68,26.490000000000002,26.29,26.09,25.900000000000002,25.69,25.51,25.12,N/A,N/A +2012,9,11,8,30,101730,100570,99440,55.77,0,4.51,4.82,4.9,4.96,5.01,5.0600000000000005,5.1000000000000005,5.13,5.21,109.91,110.18,110.39,110.58,110.75,110.9,111.06,111.21000000000001,111.48,26.73,26.34,26.150000000000002,25.95,25.75,25.560000000000002,25.36,25.17,24.77,N/A,N/A +2012,9,11,9,30,101740,100580,99450,61.93,0,5.48,5.78,5.8100000000000005,5.8100000000000005,5.8,5.78,5.76,5.74,5.69,126.92,126.9,126.9,126.9,126.9,126.9,126.91,126.91,126.91,26.54,26.13,25.94,25.73,25.53,25.34,25.14,24.95,24.560000000000002,N/A,N/A +2012,9,11,10,30,101760,100600,99470,59.78,0,5.57,5.84,5.87,5.87,5.86,5.8500000000000005,5.83,5.8100000000000005,5.7700000000000005,125.37,124.75,124.43,124.13000000000001,123.85000000000001,123.61,123.36,123.14,122.7,26.59,26.18,26,25.79,25.59,25.400000000000002,25.2,25.01,24.62,N/A,N/A +2012,9,11,11,30,101770,100610,99480,58.160000000000004,0,3.99,4.26,4.34,4.4,4.45,4.5,4.54,4.58,4.65,125.81,125.27,125.01,124.78,124.57000000000001,124.4,124.23,124.07000000000001,123.78,26.77,26.38,26.2,26,25.8,25.61,25.41,25.22,24.830000000000002,N/A,N/A +2012,9,11,12,30,101790,100630,99510,62.15,0,4.69,4.96,5.01,5.03,5.05,5.0600000000000005,5.07,5.08,5.09,109.08,109.4,109.60000000000001,109.78,109.94,110.10000000000001,110.25,110.39,110.67,26.78,26.38,26.2,25.990000000000002,25.8,25.61,25.400000000000002,25.22,24.830000000000002,N/A,N/A +2012,9,11,13,30,101790,100630,99500,64.64,0,4.66,4.92,4.96,4.97,4.98,4.99,4.99,4.98,4.97,105.83,105.5,105.31,105.08,104.87,104.67,104.46000000000001,104.26,103.86,26.92,26.54,26.35,26.150000000000002,25.95,25.76,25.560000000000002,25.37,24.98,N/A,N/A +2012,9,11,14,30,101830,100670,99550,66.08,0,4.47,4.76,4.82,4.86,4.89,4.91,4.93,4.94,4.97,85.53,86.79,87.5,88.18,88.78,89.35000000000001,89.9,90.41,91.43,26.98,26.59,26.41,26.21,26.01,25.82,25.62,25.43,25.04,N/A,N/A +2012,9,11,15,30,101840,100680,99560,68.42,0,5.23,5.5200000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,100.73,100.60000000000001,100.65,100.74000000000001,100.84,100.95,101.07000000000001,101.19,101.45,27.080000000000002,26.69,26.51,26.3,26.11,25.91,25.72,25.53,25.14,N/A,N/A +2012,9,11,16,30,101810,100650,99530,71.47,0,5.25,5.6000000000000005,5.67,5.7,5.73,5.74,5.75,5.76,5.7700000000000005,82.46000000000001,82.84,83.11,83.37,83.61,83.84,84.09,84.32000000000001,84.8,27.12,26.740000000000002,26.55,26.35,26.16,25.96,25.76,25.580000000000002,25.19,N/A,N/A +2012,9,11,17,30,101790,100640,99520,72.27,0,5.94,6.38,6.48,6.53,6.57,6.6000000000000005,6.62,6.640000000000001,6.67,90.2,89.76,89.47,89.17,88.89,88.63,88.38,88.14,87.69,27.240000000000002,26.85,26.67,26.46,26.27,26.080000000000002,25.88,25.69,25.310000000000002,N/A,N/A +2012,9,11,18,30,101800,100650,99530,71.87,0,7.58,8.2,8.34,8.43,8.49,8.540000000000001,8.57,8.6,8.64,94.93,94.7,94.63,94.60000000000001,94.60000000000001,94.62,94.66,94.7,94.83,27.38,26.98,26.8,26.59,26.400000000000002,26.2,26,25.810000000000002,25.42,N/A,N/A +2012,9,11,19,30,101770,100620,99500,73.10000000000001,0,8.19,8.870000000000001,9.02,9.08,9.120000000000001,9.14,9.16,9.16,9.16,92.56,93.14,93.46000000000001,93.78,94.07000000000001,94.33,94.60000000000001,94.84,95.31,27.39,26.990000000000002,26.810000000000002,26.6,26.400000000000002,26.21,26.01,25.82,25.43,N/A,N/A +2012,9,11,20,30,101760,100610,99490,75.28,0,7.68,8.32,8.46,8.55,8.61,8.66,8.69,8.71,8.74,100.75,101.17,101.37,101.55,101.71000000000001,101.86,101.99000000000001,102.13,102.36,27.38,26.990000000000002,26.810000000000002,26.6,26.400000000000002,26.2,26.01,25.82,25.43,N/A,N/A +2012,9,11,21,30,101730,100580,99460,76.26,0,8.44,9.200000000000001,9.370000000000001,9.48,9.55,9.6,9.64,9.67,9.71,100.79,101.12,101.32000000000001,101.53,101.71000000000001,101.89,102.07000000000001,102.24000000000001,102.57000000000001,27.46,27.060000000000002,26.88,26.67,26.47,26.28,26.080000000000002,25.89,25.51,N/A,N/A +2012,9,11,22,30,101690,100540,99420,76.08,0,7.47,8.09,8.23,8.31,8.370000000000001,8.41,8.44,8.45,8.48,102.14,102.38,102.51,102.62,102.72,102.81,102.9,102.98,103.13,27.5,27.12,26.93,26.73,26.53,26.34,26.14,25.95,25.57,N/A,N/A +2012,9,11,23,30,101720,100560,99450,75.7,0,8.56,9.32,9.5,9.6,9.67,9.71,9.74,9.77,9.790000000000001,110.28,110.26,110.23,110.19,110.15,110.11,110.07000000000001,110.03,109.94,27.67,27.29,27.11,26.900000000000002,26.71,26.51,26.32,26.13,25.740000000000002,N/A,N/A +2012,9,12,0,30,101670,100510,99400,77.62,0,8.05,8.76,8.91,9.01,9.06,9.11,9.14,9.16,9.19,107.41,107.77,107.97,108.15,108.31,108.45,108.60000000000001,108.74000000000001,109,27.62,27.23,27.05,26.85,26.650000000000002,26.46,26.26,26.07,25.69,N/A,N/A +2012,9,12,1,30,101640,100490,99370,79.37,0,7.7700000000000005,8.45,8.620000000000001,8.71,8.77,8.81,8.84,8.870000000000001,8.9,109.49000000000001,109.43,109.35000000000001,109.26,109.18,109.09,109.01,108.92,108.75,27.73,27.35,27.17,26.96,26.77,26.580000000000002,26.38,26.19,25.8,N/A,N/A +2012,9,12,2,30,101650,100500,99390,80.28,0,8.25,8.96,9.13,9.21,9.26,9.290000000000001,9.31,9.32,9.32,106.99000000000001,107.44,107.73,107.99000000000001,108.22,108.45,108.67,108.88,109.29,27.78,27.400000000000002,27.22,27.02,26.82,26.63,26.44,26.25,25.87,N/A,N/A +2012,9,12,3,30,101660,100510,99400,78.19,0,8.370000000000001,9.13,9.31,9.41,9.47,9.52,9.56,9.58,9.61,112.53,112.49000000000001,112.49000000000001,112.5,112.53,112.54,112.56,112.59,112.65,27.89,27.52,27.34,27.14,26.94,26.75,26.560000000000002,26.37,25.98,N/A,N/A +2012,9,12,4,30,101610,100460,99350,79.88,0,8.040000000000001,8.8,8.98,9.09,9.16,9.22,9.26,9.290000000000001,9.34,117.13,117.31,117.36,117.4,117.42,117.44,117.45,117.46000000000001,117.47,27.98,27.61,27.43,27.23,27.04,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A +2012,9,12,5,30,101620,100470,99350,82.60000000000001,0,6.99,7.58,7.72,7.79,7.84,7.87,7.9,7.91,7.930000000000001,132.26,132.4,132.46,132.51,132.57,132.63,132.69,132.75,132.88,27.900000000000002,27.53,27.36,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A +2012,9,12,6,30,101610,100460,99350,84.77,0,6.3500000000000005,6.82,6.91,6.96,6.98,6.99,6.99,6.99,6.99,136.21,136.70000000000002,136.97,137.23,137.48,137.72,137.97,138.20000000000002,138.67000000000002,27.89,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.03,N/A,N/A +2012,9,12,7,30,101650,100500,99380,85.2,0,4.39,4.7,4.79,4.86,4.91,4.97,5.0200000000000005,5.07,5.18,159.37,161.34,162.15,162.86,163.49,164.07,164.62,165.13,166.12,27.6,27.26,27.09,26.900000000000002,26.72,26.54,26.35,26.18,25.82,N/A,N/A +2012,9,12,8,30,101640,100490,99380,81.93,0,6.23,6.7700000000000005,6.9,6.98,7.03,7.07,7.09,7.11,7.15,180.54,180.97,181.22,181.47,181.69,181.9,182.1,182.29,182.67000000000002,28.11,27.77,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.64,26.26,N/A,N/A +2012,9,12,9,30,101610,100470,99350,82.13,0,5.37,5.83,5.93,6,6.0600000000000005,6.11,6.15,6.2,6.28,188.61,189.21,189.4,189.53,189.63,189.71,189.79,189.86,190,28.17,27.85,27.69,27.5,27.32,27.14,26.96,26.78,26.42,N/A,N/A +2012,9,12,10,30,101660,100510,99400,81.9,0,6.2,6.78,6.93,7.01,7.07,7.12,7.15,7.18,7.21,184.87,184.89000000000001,184.93,184.97,184.99,185.02,185.04,185.05,185.09,28.27,27.95,27.79,27.580000000000002,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A +2012,9,12,11,30,101650,100510,99390,79.91,0,6.86,7.5,7.65,7.73,7.79,7.83,7.86,7.88,7.9,190.46,190.78,190.88,190.92000000000002,190.94,190.93,190.9,190.87,190.78,28.26,27.94,27.77,27.57,27.38,27.19,27,26.810000000000002,26.43,N/A,N/A +2012,9,12,12,30,101680,100530,99420,83.73,0,6.08,6.59,6.7,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.87,6.88,6.91,194.63,194.6,194.66,194.70000000000002,194.74,194.78,194.81,194.84,194.91,28.150000000000002,27.82,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A +2012,9,12,13,30,101640,100480,99370,86.27,0,9.61,10.39,10.43,10.38,10.290000000000001,10.18,10.040000000000001,9.91,9.61,244.51,244.06,243.31,242.43,241.47,240.53,239.44,238.43,236.17000000000002,27.16,26.79,26.64,26.490000000000002,26.34,26.2,26.05,25.91,25.6,N/A,N/A +2012,9,12,14,30,101730,100580,99460,81.72,8.8,4.66,5.19,5.4,5.58,5.72,5.8500000000000005,5.97,6.08,6.3,214.29,214.57,214.86,215.25,215.61,216.01,216.44,216.86,217.77,27.85,27.53,27.37,27.18,27,26.82,26.64,26.47,26.11,N/A,N/A +2012,9,12,15,30,101800,100650,99540,79.44,0,6.16,6.71,6.83,6.9,6.94,6.97,6.99,7,7,216.9,216.79,216.69,216.6,216.53,216.46,216.4,216.34,216.23000000000002,28.44,28.13,27.96,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A +2012,9,12,16,30,101790,100620,99490,91.81,0.4,11.08,12.030000000000001,12.17,12.23,12.25,12.25,12.23,12.200000000000001,12.040000000000001,98.11,98.56,98.84,99.10000000000001,99.37,99.63,99.94,100.23,101.09,24.900000000000002,24.34,24.12,23.92,23.72,23.54,23.36,23.19,22.87,N/A,N/A +2012,9,12,17,30,101860,100690,99560,93.15,47.6,12.99,14.22,14.46,14.58,14.65,14.69,14.71,14.72,14.71,85.97,86.09,86.23,86.36,86.46000000000001,86.55,86.64,86.71000000000001,86.85000000000001,24.38,23.77,23.54,23.34,23.14,22.96,22.78,22.61,22.28,N/A,N/A +2012,9,12,18,30,101860,100700,99580,81.32000000000001,0,10.19,10.86,10.93,10.88,10.81,10.72,10.63,10.55,10.540000000000001,81.47,81.86,82.15,82.58,83.18,83.96000000000001,85.84,88.06,97.35000000000001,26.28,25.86,25.7,25.55,25.42,25.32,25.34,25.400000000000002,26.01,N/A,N/A +2012,9,12,19,30,101810,100650,99530,73.88,0,4.65,4.93,4.99,5.0200000000000005,5.04,5.0600000000000005,5.15,5.26,6.19,121.79,122.4,122.63,122.91,123.11,123.25,123.83,124.58,129.27,27.23,26.87,26.71,26.52,26.34,26.16,26.03,25.91,26.34,N/A,N/A +2012,9,12,20,30,101730,100570,99460,77.9,0.7000000000000001,4.14,4.4,4.49,4.64,4.93,5.34,5.59,5.76,5.5600000000000005,197.1,196.3,195.55,194.49,193.4,192.22,192.77,193.87,198.4,26.91,26.59,26.47,26.37,26.41,26.53,26.62,26.69,26.34,N/A,N/A +2012,9,12,21,30,101770,100620,99510,79.8,0,4.79,5.03,5.03,5.01,4.98,4.94,4.9,4.86,4.7700000000000005,275.84000000000003,274.27,273.14,271.94,270.83,269.73,268.62,267.57,265.35,27.62,27.28,27.11,26.92,26.740000000000002,26.560000000000002,26.37,26.19,25.830000000000002,N/A,N/A +2012,9,12,22,30,101660,100500,99380,79.69,0,1.6400000000000001,1.83,1.8800000000000001,1.94,1.99,2.04,2.09,2.14,2.24,93.82000000000001,94.69,95.3,95.9,96.46000000000001,97.01,97.62,98.22,99.58,26.82,26.46,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A +2012,9,12,23,30,101640,100490,99380,75.34,0,6.43,6.97,7.09,7.16,7.2,7.23,7.25,7.26,7.28,110.82000000000001,110.87,110.88,110.9,110.92,110.94,110.96000000000001,110.97,111,28.26,27.93,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A +2012,9,13,0,30,101640,100490,99370,88.04,0,7.6000000000000005,8.17,8.27,8.31,8.32,8.32,8.31,8.290000000000001,8.24,127.52,127.79,127.93,128.11,128.28,128.46,128.65,128.84,129.26,27.240000000000002,26.84,26.66,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A +2012,9,13,1,30,101620,100470,99350,83.95,0,7.04,7.61,7.73,7.79,7.83,7.8500000000000005,7.86,7.87,7.87,133.02,133.28,133.42000000000002,133.55,133.69,133.81,133.95,134.09,134.38,27.580000000000002,27.21,27.03,26.830000000000002,26.63,26.45,26.25,26.060000000000002,25.69,N/A,N/A +2012,9,13,2,30,101660,100510,99400,83.57000000000001,0,7.94,8.66,8.83,8.92,8.98,9.02,9.05,9.07,9.09,137.1,137.18,137.23,137.29,137.35,137.4,137.47,137.53,137.67000000000002,27.89,27.54,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A +2012,9,13,3,30,101710,100560,99440,84.99,0,8.26,8.98,9.15,9.22,9.27,9.290000000000001,9.3,9.3,9.290000000000001,138.98,139.13,139.22,139.31,139.39000000000001,139.48,139.56,139.65,139.82,27.78,27.41,27.240000000000002,27.03,26.84,26.650000000000002,26.46,26.27,25.89,N/A,N/A +2012,9,13,4,30,101710,100560,99440,86.02,0,9.67,10.6,10.8,10.9,10.97,11,11.01,11.02,10.99,142.69,142.72,142.78,142.87,142.96,143.07,143.18,143.29,143.51,27.740000000000002,27.36,27.18,26.97,26.78,26.580000000000002,26.38,26.19,25.8,N/A,N/A +2012,9,13,5,30,101710,100550,99440,84.55,0,8.59,9.36,9.53,9.620000000000001,9.67,9.71,9.73,9.74,9.75,141.94,141.91,141.92000000000002,141.93,141.94,141.95000000000002,141.96,141.98,142.02,27.63,27.25,27.07,26.87,26.68,26.490000000000002,26.29,26.1,25.72,N/A,N/A +2012,9,13,6,30,101740,100590,99470,84.69,0,7.640000000000001,8.32,8.47,8.55,8.61,8.65,8.67,8.69,8.700000000000001,138.54,138.68,138.76,138.84,138.92000000000002,138.99,139.07,139.14000000000001,139.28,27.68,27.310000000000002,27.13,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A +2012,9,13,7,30,101760,100610,99490,83.52,0,7.37,7.98,8.120000000000001,8.19,8.23,8.26,8.28,8.290000000000001,8.3,141.05,141.48,141.72,141.96,142.19,142.43,142.67000000000002,142.9,143.39000000000001,27.68,27.32,27.14,26.94,26.740000000000002,26.560000000000002,26.36,26.17,25.8,N/A,N/A +2012,9,13,8,30,101760,100610,99500,84.68,0,6.49,7,7.11,7.17,7.2,7.22,7.24,7.25,7.25,135.22,135.42000000000002,135.55,135.68,135.8,135.91,136.03,136.15,136.39000000000001,27.6,27.240000000000002,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A +2012,9,13,9,30,101780,100630,99520,84.34,0,6.88,7.43,7.5600000000000005,7.62,7.66,7.68,7.7,7.71,7.71,135.13,135.27,135.36,135.44,135.52,135.6,135.67000000000002,135.74,135.89000000000001,27.650000000000002,27.28,27.11,26.900000000000002,26.71,26.52,26.32,26.14,25.75,N/A,N/A +2012,9,13,10,30,101800,100650,99530,85.25,0,6.67,7.25,7.4,7.5,7.57,7.63,7.68,7.72,7.8,136.1,136.31,136.45,136.6,136.73,136.86,136.99,137.12,137.36,27.650000000000002,27.29,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.77,N/A,N/A +2012,9,13,11,30,101820,100670,99550,81.88,0,7.04,7.61,7.73,7.7700000000000005,7.8,7.8100000000000005,7.8100000000000005,7.8,7.7700000000000005,136.54,136.85,137.01,137.17000000000002,137.31,137.44,137.58,137.70000000000002,137.97,27.810000000000002,27.46,27.28,27.080000000000002,26.89,26.7,26.5,26.32,25.94,N/A,N/A +2012,9,13,12,30,101820,100670,99550,82.63,0,6.28,6.7700000000000005,6.88,6.94,6.98,7,7.03,7.04,7.07,127.07000000000001,127.23,127.3,127.39,127.48,127.57000000000001,127.66,127.75,127.95,27.73,27.38,27.2,27,26.810000000000002,26.62,26.43,26.240000000000002,25.86,N/A,N/A +2012,9,13,13,30,101860,100710,99590,80.5,0,6.49,7.0200000000000005,7.13,7.19,7.23,7.25,7.2700000000000005,7.2700000000000005,7.28,124,124.17,124.26,124.35000000000001,124.43,124.5,124.57000000000001,124.64,124.78,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A +2012,9,13,14,30,101880,100720,99610,81.5,0,5.96,6.43,6.5200000000000005,6.58,6.61,6.640000000000001,6.66,6.67,6.69,122.9,123.19,123.29,123.39,123.48,123.56,123.64,123.72,123.88000000000001,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A +2012,9,13,15,30,101870,100720,99610,80.72,0,5.88,6.34,6.44,6.49,6.53,6.55,6.5600000000000005,6.58,6.58,119.71000000000001,119.94,120.06,120.18,120.29,120.39,120.49000000000001,120.58,120.77,27.91,27.57,27.39,27.19,27,26.810000000000002,26.62,26.43,26.05,N/A,N/A +2012,9,13,16,30,101900,100740,99630,81.04,0,4.63,4.95,5.0200000000000005,5.05,5.08,5.09,5.1000000000000005,5.1000000000000005,5.1000000000000005,129.32,129.26,129.26,129.25,129.23,129.2,129.16,129.13,129.05,27.96,27.62,27.45,27.25,27.060000000000002,26.87,26.67,26.490000000000002,26.11,N/A,N/A +2012,9,13,17,30,101910,100760,99650,79.38,0,3.68,3.92,3.97,3.99,4.01,4.03,4.03,4.04,4.04,167.83,167.26,167.01,166.85,166.73,166.63,166.57,166.52,166.45000000000002,28.080000000000002,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A +2012,9,13,18,30,101930,100760,99630,91.65,123.4,9.3,9.94,10.02,9.97,9.88,9.75,9.540000000000001,9.34,8.61,270.88,271.02,271.04,271.1,271.21,271.34000000000003,271.57,271.8,272.69,24.95,24.43,24.240000000000002,24.05,23.87,23.71,23.55,23.400000000000002,23.16,N/A,N/A +2012,9,13,19,30,101910,100740,99600,88.74,79.80000000000001,3.12,3.15,3.13,3.11,2.98,2.81,2.49,2.2,2.45,243.42000000000002,241.86,240.9,239.95000000000002,237.13,233.70000000000002,221.49,209.98000000000002,166.39000000000001,24.34,23.91,23.72,23.54,23.36,23.2,23.080000000000002,22.98,23.18,N/A,N/A +2012,9,13,20,30,101870,100710,99580,79.53,0,1.17,1.25,1.28,1.33,1.43,1.56,1.85,2.24,2.8000000000000003,188.94,189.27,189.17000000000002,188.88,187.93,186.36,184.09,181.35,180.46,25.76,25.400000000000002,25.240000000000002,25.080000000000002,24.96,24.87,24.91,24.98,25.09,N/A,N/A +2012,9,13,21,30,101870,100710,99590,79.84,0,3.7600000000000002,3.89,3.89,3.88,3.86,3.85,3.85,3.86,4.09,178.19,178.59,178.76,178.99,179.3,179.66,180.32,181.06,183.89000000000001,26.48,26.1,25.94,25.75,25.580000000000002,25.41,25.27,25.14,25.09,N/A,N/A +2012,9,13,22,30,101830,100670,99550,79.86,0,1.61,1.6500000000000001,1.6600000000000001,1.6500000000000001,1.6500000000000001,1.6500000000000001,1.6600000000000001,1.67,1.77,160.59,160.91,161.14000000000001,161.44,161.82,162.26,163.01,163.81,165.93,26.53,26.17,25.990000000000002,25.8,25.62,25.44,25.27,25.12,24.95,N/A,N/A +2012,9,13,23,30,101840,100690,99570,78.37,0,0.9500000000000001,0.9400000000000001,0.92,0.91,0.89,0.88,0.86,0.85,0.8300000000000001,153.41,151.43,150.08,148.47,146.84,145.14000000000001,143,140.88,134.91,26.8,26.45,26.27,26.07,25.88,25.7,25.51,25.32,24.95,N/A,N/A +2012,9,14,0,30,101830,100670,99550,76.65,0,1.83,1.96,1.99,2.0300000000000002,2.05,2.08,2.11,2.14,2.2,48.03,48.96,49.36,49.76,50.14,50.52,50.910000000000004,51.300000000000004,52.160000000000004,27.07,26.72,26.55,26.35,26.16,25.97,25.78,25.6,25.22,N/A,N/A +2012,9,14,1,30,101830,100680,99560,74.17,0,3.46,3.66,3.69,3.71,3.73,3.74,3.75,3.77,3.8200000000000003,65.12,64.9,64.76,64.62,64.51,64.41,64.33,64.25,64.2,27.37,27.02,26.84,26.64,26.45,26.26,26.07,25.88,25.5,N/A,N/A +2012,9,14,2,30,101850,100690,99580,83.23,0,4.66,4.95,5.01,5.03,5.05,5.0600000000000005,5.07,5.07,5.08,63.68,63.95,64.11,64.3,64.49,64.69,64.91,65.12,65.66,27.29,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,14,3,30,101860,100710,99590,80.67,0,3.84,4.14,4.23,4.29,4.34,4.39,4.43,4.48,4.57,92.16,91.96000000000001,91.8,91.58,91.37,91.12,90.86,90.60000000000001,89.97,27.69,27.36,27.19,26.990000000000002,26.810000000000002,26.63,26.44,26.26,25.89,N/A,N/A +2012,9,14,4,30,101860,100710,99590,79.93,0,6.34,6.82,6.92,6.96,6.99,7,7.01,7.01,7.01,99.9,100.25,100.39,100.52,100.63,100.74000000000001,100.84,100.93,101.10000000000001,27.900000000000002,27.55,27.38,27.18,26.990000000000002,26.8,26.61,26.42,26.04,N/A,N/A +2012,9,14,5,30,101850,100690,99580,81.56,0,5.59,6,6.08,6.12,6.13,6.15,6.15,6.15,6.140000000000001,109.08,109.22,109.33,109.46000000000001,109.58,109.7,109.83,109.95,110.2,27.830000000000002,27.48,27.310000000000002,27.11,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A +2012,9,14,6,30,101900,100750,99630,84.49,71,6.32,6.78,6.92,7,7.07,7.12,7.18,7.24,7.36,121.08,119.74000000000001,119.03,118.34,117.73,117.13,116.52,115.94,114.76,27.16,26.810000000000002,26.650000000000002,26.46,26.3,26.13,25.97,25.810000000000002,25.5,N/A,N/A +2012,9,14,7,30,101870,100710,99600,78.68,1.1,7.04,7.61,7.72,7.76,7.8,7.82,7.83,7.83,7.84,107.28,107.43,107.47,107.53,107.58,107.64,107.7,107.76,107.89,27.900000000000002,27.54,27.37,27.17,26.98,26.79,26.6,26.41,26.03,N/A,N/A +2012,9,14,8,30,101930,100780,99660,75.69,0,5.4,5.8,5.89,5.94,5.97,5.99,6,6.01,6.0200000000000005,95,95.18,95.19,95.19,95.19,95.18,95.16,95.14,95.09,27.97,27.63,27.45,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.11,N/A,N/A +2012,9,14,9,30,101940,100790,99670,73.11,0,2.82,2.98,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.0700000000000003,3.08,3.09,97.98,98.06,98.11,98.15,98.2,98.26,98.31,98.36,98.46000000000001,27.91,27.580000000000002,27.400000000000002,27.21,27.02,26.82,26.63,26.44,26.060000000000002,N/A,N/A +2012,9,14,10,30,101910,100760,99640,75.84,0,3.21,3.4,3.43,3.45,3.45,3.45,3.45,3.45,3.44,104.38,104.69,104.83,104.96000000000001,105.08,105.2,105.31,105.43,105.64,27.76,27.42,27.25,27.05,26.85,26.67,26.47,26.28,25.89,N/A,N/A +2012,9,14,11,30,101880,100720,99610,75.34,0,3.48,3.67,3.7,3.71,3.72,3.72,3.72,3.71,3.71,91.71000000000001,91.79,91.95,92.08,92.21000000000001,92.32000000000001,92.44,92.55,92.75,27.72,27.38,27.21,27,26.810000000000002,26.62,26.43,26.240000000000002,25.86,N/A,N/A +2012,9,14,12,30,101900,100740,99620,83.27,0,8.57,9.120000000000001,9.13,9.06,8.97,8.85,8.700000000000001,8.56,8.19,85.97,85.99,86.08,86.2,86.33,86.49,86.7,86.9,87.5,26.330000000000002,25.88,25.7,25.51,25.32,25.150000000000002,24.97,24.8,24.47,N/A,N/A +2012,9,14,13,30,101920,100760,99630,77.10000000000001,0,5.4,5.65,5.67,5.65,5.62,5.57,5.51,5.45,5.37,46.83,47.42,47.75,48.120000000000005,48.57,49.07,50.04,51.04,58.95,25.75,25.330000000000002,25.16,24.98,24.82,24.67,24.54,24.43,24.490000000000002,N/A,N/A +2012,9,14,14,30,101980,100820,99690,74.01,0,3.29,3.47,3.5100000000000002,3.5300000000000002,3.54,3.5500000000000003,3.56,3.5700000000000003,3.61,73.65,74.5,74.94,75.48,76.08,76.72,77.63,78.58,81.99,26.89,26.51,26.34,26.13,25.94,25.75,25.560000000000002,25.37,24.990000000000002,N/A,N/A +2012,9,14,15,30,101990,100830,99710,79.83,5.5,7.12,7.54,7.54,7.48,7.390000000000001,7.3,7.18,7.07,6.8100000000000005,105.58,105.2,105.04,104.82000000000001,104.59,104.33,104,103.68,102.81,26.36,25.94,25.77,25.57,25.39,25.21,25.03,24.86,24.52,N/A,N/A +2012,9,14,16,30,102020,100850,99720,79.43,8.8,4.28,4.4,4.38,4.32,4.25,4.18,4.07,3.96,3.63,109.15,108.46000000000001,108.27,108.02,107.69,107.32000000000001,106.79,106.28,105.5,24.8,24.37,24.2,24.03,23.86,23.71,23.57,23.45,23.330000000000002,N/A,N/A +2012,9,14,17,30,102020,100850,99720,84.04,0,6.48,6.8,6.82,6.8,6.76,6.71,6.65,6.59,6.46,92.13,92.3,92.46000000000001,92.64,92.84,93.03,93.29,93.54,94.24,24.69,24.21,24.02,23.82,23.64,23.47,23.29,23.13,22.82,N/A,N/A +2012,9,14,18,30,101980,100810,99680,77.09,0,6.0200000000000005,6.38,6.44,6.46,6.48,6.49,6.49,6.49,6.22,93.55,93.62,93.72,93.87,94.12,94.42,95.10000000000001,95.82000000000001,99.7,25.64,25.240000000000002,25.09,24.93,24.810000000000002,24.7,24.64,24.59,24.69,N/A,N/A +2012,9,14,19,30,101960,100800,99680,61.17,0,4.22,4.5200000000000005,4.59,4.66,4.76,4.87,5.0600000000000005,5.2700000000000005,5.5200000000000005,104.88,104.52,104.31,104.05,103.69,103.27,102.57000000000001,101.81,100.35000000000001,27.63,27.32,27.18,27.02,26.88,26.76,26.7,26.650000000000002,26.46,N/A,N/A +2012,9,14,20,30,101890,100730,99610,79.14,0,4.97,5.25,5.3,5.3100000000000005,5.32,5.32,5.33,5.33,5.36,80.02,80.16,80.22,80.29,80.36,80.44,80.55,80.66,80.99,27.19,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.88,25.7,25.34,N/A,N/A +2012,9,14,21,30,101890,100740,99620,83.49,0,3.99,4.22,4.26,4.28,4.3,4.32,4.33,4.34,4.37,61.9,62.32,62.550000000000004,62.78,63.01,63.24,63.5,63.74,64.38,27.080000000000002,26.7,26.52,26.32,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A +2012,9,14,22,30,101880,100720,99610,84.8,0,4.19,4.5,4.59,4.66,4.72,4.76,4.8100000000000005,4.8500000000000005,4.93,70.59,71.73,72.38,73.02,73.59,74.14,74.69,75.2,76.26,27.22,26.85,26.68,26.48,26.29,26.1,25.91,25.73,25.35,N/A,N/A +2012,9,14,23,30,101880,100720,99610,80.09,0,4.15,4.39,4.43,4.45,4.46,4.46,4.46,4.46,4.45,88.52,88.77,88.88,88.98,89.07000000000001,89.16,89.24,89.32000000000001,89.49,27.5,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A +2012,9,15,0,30,101870,100710,99590,79.92,0,4.3,4.53,4.5600000000000005,4.57,4.5600000000000005,4.5600000000000005,4.54,4.54,4.51,88.65,88.59,88.51,88.44,88.36,88.28,88.18,88.09,87.88,27.47,27.11,26.93,26.740000000000002,26.54,26.35,26.16,25.97,25.59,N/A,N/A +2012,9,15,1,30,101880,100720,99600,77.5,0,3.5700000000000003,3.7800000000000002,3.81,3.83,3.85,3.85,3.86,3.86,3.87,99.45,99.02,98.76,98.5,98.25,98.01,97.76,97.53,97.06,27.54,27.19,27.01,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.67,N/A,N/A +2012,9,15,2,30,101920,100760,99640,72.53,0,2.73,2.91,2.95,2.98,3,3.02,3.04,3.06,3.09,110.4,110.42,110.44,110.43,110.43,110.43,110.43,110.42,110.4,27.75,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.900000000000002,N/A,N/A +2012,9,15,3,30,101920,100770,99650,66.95,0,1.87,1.99,2.02,2.05,2.07,2.09,2.11,2.14,2.18,64.76,66.47,67.55,68.63,69.60000000000001,70.51,71.44,72.32000000000001,74.04,27.97,27.650000000000002,27.490000000000002,27.3,27.11,26.92,26.740000000000002,26.55,26.18,N/A,N/A +2012,9,15,4,30,101940,100780,99660,69.58,0,3.0300000000000002,3.1,3.06,3.02,2.97,2.93,2.88,2.84,2.77,28.29,30.080000000000002,31.35,32.69,33.93,35.13,36.35,37.5,39.84,27.79,27.47,27.310000000000002,27.12,26.94,26.76,26.57,26.39,26.02,N/A,N/A +2012,9,15,5,30,101940,100780,99660,85.04,0,5.61,5.88,5.9,5.87,5.83,5.79,5.73,5.66,5.51,21.400000000000002,21.88,22.13,22.41,22.71,23.01,23.37,23.73,24.68,26.52,26.11,25.92,25.73,25.53,25.35,25.16,24.98,24.61,N/A,N/A +2012,9,15,6,30,101950,100790,99660,85.32000000000001,0,6.23,6.57,6.61,6.59,6.5600000000000005,6.5200000000000005,6.47,6.42,6.29,21.13,21.41,21.580000000000002,21.77,21.95,22.13,22.34,22.55,23.07,26.28,25.86,25.67,25.47,25.27,25.09,24.900000000000002,24.71,24.34,N/A,N/A +2012,9,15,7,30,101960,100800,99680,80.54,0,6.19,6.55,6.6000000000000005,6.6000000000000005,6.59,6.57,6.53,6.5,6.41,25.92,26.19,26.37,26.57,26.76,26.96,27.18,27.400000000000002,27.94,26.27,25.84,25.650000000000002,25.45,25.26,25.07,24.87,24.69,24.32,N/A,N/A +2012,9,15,8,30,101940,100780,99650,78.39,0,6.18,6.53,6.57,6.57,6.55,6.5200000000000005,6.48,6.44,6.33,21.64,21.84,21.98,22.14,22.29,22.45,22.62,22.79,23.23,26.32,25.91,25.72,25.51,25.330000000000002,25.14,24.94,24.76,24.39,N/A,N/A +2012,9,15,9,30,101950,100780,99660,82.37,0,6.51,6.87,6.91,6.9,6.88,6.84,6.79,6.75,6.63,25.66,25.98,26.17,26.38,26.59,26.810000000000002,27.080000000000002,27.34,28.080000000000002,26.04,25.61,25.42,25.23,25.04,24.86,24.68,24.5,24.16,N/A,N/A +2012,9,15,10,30,101980,100810,99690,80.56,0,4.45,4.68,4.74,4.7700000000000005,4.79,4.8100000000000005,4.83,4.8500000000000005,4.89,71.75,70.58,69.97,69.39,68.92,68.53,68.27,68.07000000000001,68.06,26.03,25.62,25.44,25.240000000000002,25.05,24.87,24.68,24.5,24.14,N/A,N/A +2012,9,15,11,30,101950,100790,99660,75.32000000000001,0,2.47,2.5,2.48,2.45,2.43,2.41,2.4,2.38,2.35,34.03,32.660000000000004,31.92,31.09,30.28,29.48,28.61,27.8,26.03,26.19,25.810000000000002,25.63,25.44,25.25,25.07,24.88,24.7,24.330000000000002,N/A,N/A +2012,9,15,12,30,101950,100790,99660,86.72,0,5.23,5.42,5.4,5.36,5.3100000000000005,5.25,5.19,5.14,5.01,19.36,20.580000000000002,21.34,22.12,22.85,23.57,24.330000000000002,25.04,26.6,25.86,25.44,25.25,25.04,24.85,24.66,24.47,24.29,23.91,N/A,N/A +2012,9,15,13,30,101970,100810,99680,88.08,0,4.6000000000000005,4.76,4.75,4.71,4.66,4.61,4.54,4.48,4.32,17.59,18.07,18.330000000000002,18.61,18.89,19.19,19.53,19.86,20.79,25.400000000000002,24.97,24.78,24.57,24.38,24.2,24,23.82,23.45,N/A,N/A +2012,9,15,14,30,101970,100810,99680,87.18,0,4.78,4.98,4.98,4.96,4.93,4.9,4.8500000000000005,4.8,4.68,13.32,13.51,13.63,13.77,13.89,14.02,14.17,14.31,14.68,25.37,24.93,24.740000000000002,24.54,24.34,24.16,23.96,23.78,23.42,N/A,N/A +2012,9,15,15,30,101980,100820,99690,85.85000000000001,0,4.46,4.66,4.67,4.66,4.64,4.62,4.59,4.5600000000000005,4.49,17.91,18.26,18.46,18.68,18.89,19.09,19.330000000000002,19.56,20.14,25.47,25.04,24.85,24.650000000000002,24.46,24.27,24.080000000000002,23.900000000000002,23.53,N/A,N/A +2012,9,15,16,30,101950,100790,99660,83.93,0,3.7,3.87,3.89,3.89,3.88,3.88,3.86,3.85,3.8200000000000003,17.78,18.09,18.3,18.51,18.71,18.900000000000002,19.11,19.31,19.77,25.91,25.5,25.32,25.12,24.93,24.740000000000002,24.54,24.36,23.990000000000002,N/A,N/A +2012,9,15,17,30,101930,100770,99650,81.39,0,3.22,3.37,3.38,3.39,3.39,3.39,3.39,3.39,3.38,25.18,25.17,25.21,25.25,25.29,25.32,25.36,25.41,25.46,26.37,25.97,25.79,25.59,25.400000000000002,25.21,25.01,24.830000000000002,24.46,N/A,N/A +2012,9,15,18,30,101930,100770,99650,77.98,0,1.6,1.6600000000000001,1.67,1.68,1.69,1.69,1.7,1.71,1.75,42.74,41.88,41.43,40.94,40.46,39.96,39.39,38.83,37.42,26.810000000000002,26.45,26.27,26.07,25.88,25.7,25.51,25.330000000000002,24.98,N/A,N/A +2012,9,15,19,30,101890,100730,99610,76.47,0,0.93,0.97,0.97,0.97,0.97,0.98,0.98,0.99,1,61.480000000000004,60.76,60.26,59.72,59.21,58.69,58.11,57.550000000000004,56.160000000000004,27.13,26.76,26.59,26.39,26.2,26.02,25.82,25.650000000000002,25.28,N/A,N/A +2012,9,15,20,30,101850,100700,99580,75.36,0,0.75,0.78,0.79,0.8,0.81,0.81,0.8200000000000001,0.8300000000000001,0.86,46.94,45.94,45.410000000000004,44.83,44.22,43.59,42.88,42.19,40.29,27.36,27,26.82,26.63,26.44,26.25,26.060000000000002,25.88,25.52,N/A,N/A +2012,9,15,21,30,101840,100680,99570,72.75,0,2.02,2.13,2.15,2.18,2.19,2.22,2.23,2.2600000000000002,2.31,57.56,55.72,54.7,53.61,52.58,51.54,50.43,49.35,46.85,27.68,27.32,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.21,25.84,N/A,N/A +2012,9,15,22,30,101790,100630,99510,76.29,0,1.45,1.46,1.43,1.41,1.3800000000000001,1.36,1.33,1.31,1.26,34.57,35.07,35.36,35.660000000000004,35.94,36.21,36.49,36.74,37.22,27.46,27.12,26.95,26.75,26.57,26.38,26.2,26.02,25.650000000000002,N/A,N/A +2012,9,15,23,30,101780,100630,99510,75.55,0,3.2,3.27,3.23,3.18,3.13,3.0700000000000003,3.0100000000000002,2.95,2.8000000000000003,17.28,17.84,18.12,18.44,18.75,19.07,19.45,19.81,20.75,27.34,26.990000000000002,26.810000000000002,26.62,26.43,26.240000000000002,26.05,25.87,25.5,N/A,N/A +2012,9,16,0,30,101730,100570,99460,72.64,0,1.54,1.6,1.6,1.59,1.58,1.58,1.57,1.57,1.56,36.62,36.5,36.34,36.17,35.95,35.67,35.32,34.95,33.54,27.48,27.150000000000002,26.98,26.79,26.6,26.42,26.240000000000002,26.060000000000002,25.72,N/A,N/A +2012,9,16,1,30,101740,100590,99470,70.69,0,1.32,1.36,1.36,1.36,1.35,1.35,1.35,1.35,1.35,72.68,71.75,71.12,70.39,69.63,68.83,67.77,66.67,62.99,27.67,27.35,27.18,26.990000000000002,26.810000000000002,26.63,26.44,26.27,25.94,N/A,N/A +2012,9,16,2,30,101750,100600,99480,68.52,0,1.03,1.09,1.1,1.11,1.12,1.1400000000000001,1.1500000000000001,1.17,1.24,44.94,43.38,42.32,41.24,40.17,39.04,37.74,36.43,32.89,27.87,27.560000000000002,27.39,27.2,27.02,26.830000000000002,26.650000000000002,26.47,26.13,N/A,N/A +2012,9,16,3,30,101750,100600,99490,66.21000000000001,0,2.2,2.35,2.38,2.4,2.43,2.44,2.46,2.47,2.49,9.82,9.61,9.540000000000001,9.48,9.42,9.370000000000001,9.32,9.27,9.18,28.150000000000002,27.84,27.67,27.47,27.29,27.1,26.900000000000002,26.72,26.34,N/A,N/A +2012,9,16,4,30,101730,100580,99460,72.65,0,3.96,4.14,4.14,4.13,4.11,4.09,4.0600000000000005,4.03,3.97,13.18,13.52,13.73,13.94,14.13,14.32,14.5,14.68,15.05,27.57,27.23,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A +2012,9,16,5,30,101710,100560,99440,72.99,0,3.69,3.8200000000000003,3.8200000000000003,3.79,3.77,3.74,3.7,3.66,3.58,28.92,29.560000000000002,29.96,30.36,30.740000000000002,31.13,31.53,31.92,32.8,27.26,26.91,26.740000000000002,26.53,26.34,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,16,6,30,101700,100550,99430,75.64,0,3.14,3.24,3.23,3.21,3.18,3.15,3.12,3.09,3.02,31.53,32.17,32.52,32.87,33.2,33.53,33.88,34.21,34.97,27.150000000000002,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.68,25.3,N/A,N/A +2012,9,16,7,30,101710,100560,99440,73.37,0,2.27,2.38,2.4,2.42,2.43,2.44,2.44,2.45,2.46,33.92,34.93,35.46,36,36.480000000000004,36.95,37.44,37.9,38.95,27.32,26.98,26.810000000000002,26.61,26.42,26.240000000000002,26.04,25.86,25.48,N/A,N/A +2012,9,16,8,30,101690,100540,99420,75.94,0,3.2600000000000002,3.37,3.36,3.34,3.31,3.2800000000000002,3.25,3.22,3.15,43.26,44.480000000000004,45.21,45.95,46.64,47.33,48.03,48.71,50.2,27.21,26.87,26.7,26.490000000000002,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A +2012,9,16,9,30,101670,100520,99400,75.09,0,2.89,3.02,3.02,3.02,3.02,3.0100000000000002,2.99,2.98,2.95,49.45,49.620000000000005,49.71,49.800000000000004,49.9,50,50.120000000000005,50.24,50.51,27.25,26.91,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,16,10,30,101650,100500,99380,79.29,0,3.7800000000000002,3.9,3.88,3.84,3.8000000000000003,3.75,3.7,3.65,3.54,36.39,37.07,37.53,38,38.45,38.89,39.35,39.79,40.76,27.05,26.69,26.52,26.32,26.13,25.95,25.75,25.57,25.2,N/A,N/A +2012,9,16,11,30,101650,100490,99370,79.2,0,4.3500000000000005,4.54,4.55,4.54,4.51,4.49,4.45,4.42,4.34,31.78,32.09,32.28,32.47,32.64,32.81,33,33.18,33.56,26.85,26.48,26.3,26.1,25.91,25.72,25.53,25.34,24.96,N/A,N/A +2012,9,16,12,30,101650,100500,99380,79.65,0,4.37,4.54,4.54,4.5,4.46,4.41,4.3500000000000005,4.29,4.14,27.69,28.060000000000002,28.29,28.53,28.77,29.02,29.32,29.63,30.490000000000002,26.42,26.04,25.86,25.66,25.47,25.29,25.09,24.92,24.55,N/A,N/A +2012,9,16,13,30,101660,100500,99380,80.09,0,4.43,4.61,4.61,4.59,4.5600000000000005,4.5200000000000005,4.47,4.42,4.29,29.310000000000002,29.77,30.02,30.28,30.55,30.82,31.14,31.44,32.27,26.3,25.91,25.73,25.53,25.34,25.16,24.97,24.79,24.43,N/A,N/A +2012,9,16,14,30,101670,100510,99390,80.56,0,4.04,4.21,4.21,4.19,4.16,4.13,4.09,4.05,3.93,32.53,33,33.32,33.65,33.980000000000004,34.31,34.68,35.050000000000004,36.08,26.3,25.91,25.73,25.54,25.35,25.17,24.98,24.8,24.45,N/A,N/A +2012,9,16,15,30,101650,100490,99370,80.33,0,3.61,3.77,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.74,3.73,3.69,41.22,42,42.39,42.83,43.24,43.67,44.160000000000004,44.63,45.83,26.53,26.16,25.98,25.78,25.59,25.400000000000002,25.21,25.03,24.66,N/A,N/A +2012,9,16,16,30,101640,100490,99370,80.77,0,2.95,3.09,3.12,3.13,3.14,3.15,3.15,3.16,3.16,62.14,62.93,63.440000000000005,63.940000000000005,64.39,64.84,65.29,65.73,66.67,26.87,26.5,26.32,26.12,25.93,25.740000000000002,25.55,25.37,24.990000000000002,N/A,N/A +2012,9,16,17,30,101600,100450,99330,76.02,0,2.54,2.68,2.71,2.74,2.7600000000000002,2.77,2.7800000000000002,2.8000000000000003,2.83,73.87,74.35000000000001,74.62,74.89,75.14,75.38,75.63,75.87,76.4,27.27,26.91,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A +2012,9,16,18,30,101580,100430,99310,75.37,0,2.65,2.8000000000000003,2.84,2.86,2.88,2.9,2.91,2.92,2.95,98.25,98.5,98.59,98.68,98.76,98.85000000000001,98.95,99.04,99.23,27.55,27.2,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A +2012,9,16,19,30,101530,100380,99270,74.99,0,2.96,3.13,3.16,3.19,3.21,3.22,3.23,3.24,3.2600000000000002,107.72,107.58,107.53,107.48,107.44,107.41,107.37,107.33,107.27,27.75,27.39,27.21,27.01,26.82,26.63,26.44,26.25,25.87,N/A,N/A +2012,9,16,20,30,101460,100310,99200,70.18,0,3.61,3.85,3.9,3.93,3.96,3.98,4,4.01,4.04,118.22,118.03,117.91,117.8,117.71000000000001,117.61,117.53,117.45,117.29,28.02,27.69,27.52,27.32,27.14,26.95,26.75,26.57,26.2,N/A,N/A +2012,9,16,21,30,101420,100270,99160,68.22,0,4.7,5.0200000000000005,5.08,5.11,5.13,5.14,5.15,5.15,5.16,127.95,127.87,127.83,127.8,127.77,127.75,127.73,127.71000000000001,127.68,28.13,27.82,27.650000000000002,27.45,27.26,27.07,26.88,26.7,26.310000000000002,N/A,N/A +2012,9,16,22,30,101350,100200,99090,69.47,0,4.04,4.3100000000000005,4.3500000000000005,4.37,4.38,4.39,4.39,4.39,4.39,122.62,122.73,122.79,122.85000000000001,122.91,122.96000000000001,123.02,123.08,123.19,27.95,27.64,27.47,27.27,27.09,26.900000000000002,26.71,26.52,26.14,N/A,N/A +2012,9,16,23,30,101320,100170,99060,70.87,0,3.63,3.86,3.91,3.93,3.95,3.96,3.96,3.97,3.98,135.16,135.12,135.11,135.1,135.09,135.08,135.08,135.07,135.06,27.82,27.5,27.330000000000002,27.14,26.95,26.76,26.57,26.38,26,N/A,N/A +2012,9,17,0,30,101310,100160,99050,70.44,0,4.03,4.28,4.32,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,143.76,143.95000000000002,144.04,144.13,144.21,144.29,144.36,144.44,144.6,27.84,27.52,27.35,27.150000000000002,26.96,26.78,26.580000000000002,26.39,26.01,N/A,N/A +2012,9,17,1,30,101290,100140,99030,74.71000000000001,0,3.62,3.8200000000000003,3.86,3.87,3.88,3.88,3.87,3.87,3.85,145.58,145.58,145.59,145.58,145.58,145.57,145.56,145.54,145.51,27.6,27.27,27.1,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.76,N/A,N/A +2012,9,17,2,30,101300,100150,99040,73.99,0,3.08,3.25,3.2800000000000002,3.3000000000000003,3.31,3.31,3.31,3.3200000000000003,3.31,158.34,158.04,157.78,157.54,157.34,157.15,156.96,156.79,156.43,27.59,27.26,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A +2012,9,17,3,30,101290,100150,99030,72.52,0,2.73,2.85,2.87,2.87,2.87,2.87,2.86,2.85,2.84,152.13,151.92000000000002,151.81,151.69,151.57,151.45000000000002,151.32,151.19,150.91,27.61,27.28,27.11,26.92,26.73,26.54,26.35,26.16,25.79,N/A,N/A +2012,9,17,4,30,101250,100100,98990,72.74,0,2.2600000000000002,2.33,2.33,2.32,2.31,2.29,2.2800000000000002,2.27,2.24,145.21,145.17000000000002,145.16,145.16,145.14000000000001,145.12,145.08,145.05,144.95000000000002,27.53,27.2,27.03,26.830000000000002,26.64,26.45,26.26,26.07,25.69,N/A,N/A +2012,9,17,5,30,101250,100090,98970,88.03,0,6.11,6.390000000000001,6.41,6.36,6.3,6.23,6.12,6.01,5.58,23.21,23.32,23.39,23.490000000000002,23.62,23.78,24.02,24.29,25.85,25.66,25.23,25.05,24.85,24.67,24.490000000000002,24.32,24.16,23.96,N/A,N/A +2012,9,17,6,30,101200,100050,98930,87.12,0,6.83,7.22,7.2700000000000005,7.25,7.22,7.17,7.11,7.05,6.88,19.6,19.95,20.14,20.36,20.57,20.79,21.02,21.26,21.830000000000002,25.55,25.11,24.91,24.71,24.52,24.330000000000002,24.14,23.96,23.6,N/A,N/A +2012,9,17,7,30,101160,100010,98890,86.2,0,6.88,7.28,7.34,7.34,7.32,7.3,7.26,7.22,7.12,13.57,13.93,14.13,14.34,14.55,14.74,14.96,15.17,15.65,25.38,24.92,24.73,24.52,24.330000000000002,24.14,23.96,23.78,23.41,N/A,N/A +2012,9,17,8,30,101150,99990,98870,86.65,0,6.98,7.390000000000001,7.44,7.44,7.42,7.390000000000001,7.3500000000000005,7.3100000000000005,7.18,8.98,9.1,9.18,9.26,9.32,9.38,9.44,9.49,9.6,25.23,24.76,24.57,24.37,24.18,23.990000000000002,23.81,23.63,23.28,N/A,N/A +2012,9,17,9,30,101130,99970,98850,88.57000000000001,38.5,7.140000000000001,7.57,7.62,7.62,7.61,7.58,7.54,7.5,7.41,348.33,348.54,348.71,348.87,349.01,349.14,349.28000000000003,349.40000000000003,349.66,24.740000000000002,24.26,24.07,23.86,23.67,23.490000000000002,23.31,23.13,22.78,N/A,N/A +2012,9,17,10,30,101080,99920,98790,86.55,7.300000000000001,6.640000000000001,7,7.04,7.04,7.0200000000000005,6.99,6.95,6.91,6.8100000000000005,344.54,344.59000000000003,344.67,344.72,344.77,344.81,344.84000000000003,344.87,344.90000000000003,23.95,23.44,23.240000000000002,23.03,22.830000000000002,22.64,22.45,22.27,21.900000000000002,N/A,N/A +2012,9,17,11,30,101120,99950,98820,86.83,79.5,6.99,7.4,7.47,7.5,7.51,7.51,7.51,7.5,7.48,330.67,331.40000000000003,331.83,332.23,332.6,332.95,333.32,333.66,334.41,23.19,22.66,22.45,22.240000000000002,22.05,21.87,21.68,21.5,21.14,N/A,N/A +2012,9,17,12,30,101090,99920,98800,82.32000000000001,0,5.53,5.8,5.84,5.84,5.83,5.82,5.8,5.78,5.73,349.5,349.88,350.14,350.41,350.67,350.92,351.22,351.48,352.16,23.51,23,22.8,22.59,22.39,22.19,22,21.82,21.43,N/A,N/A +2012,9,17,13,30,101110,99950,98820,79.23,2.6,5.75,6.05,6.1000000000000005,6.12,6.12,6.12,6.11,6.1000000000000005,6.07,8.42,8.43,8.42,8.38,8.35,8.31,8.27,8.23,8.16,23.86,23.36,23.150000000000002,22.94,22.740000000000002,22.55,22.35,22.16,21.77,N/A,N/A +2012,9,17,14,30,101110,99950,98820,78.63,0,6.23,6.6000000000000005,6.66,6.69,6.7,6.71,6.71,6.71,6.7,9.98,10.31,10.5,10.69,10.86,11.02,11.18,11.34,11.71,23.96,23.46,23.25,23.04,22.84,22.650000000000002,22.45,22.26,21.88,N/A,N/A +2012,9,17,15,30,101100,99940,98810,74.73,0,5.7700000000000005,6.07,6.12,6.13,6.13,6.12,6.11,6.1000000000000005,6.07,9.51,9.31,9.200000000000001,9.1,9.01,8.94,8.89,8.84,8.8,24.18,23.69,23.490000000000002,23.28,23.080000000000002,22.89,22.69,22.51,22.13,N/A,N/A +2012,9,17,16,30,101070,99910,98790,72.95,0,4.2,4.38,4.4,4.4,4.4,4.39,4.37,4.36,4.33,357.11,357,356.98,356.95,356.92,356.89,356.85,356.81,356.69,24.47,24.02,23.830000000000002,23.62,23.43,23.240000000000002,23.05,22.87,22.490000000000002,N/A,N/A +2012,9,17,17,30,101040,99890,98760,72.85000000000001,0,3.44,3.6,3.62,3.63,3.64,3.65,3.65,3.65,3.66,338.08,337.3,336.87,336.42,335.99,335.54,335.08,334.65000000000003,333.63,24.900000000000002,24.47,24.28,24.07,23.87,23.68,23.490000000000002,23.3,22.91,N/A,N/A +2012,9,17,18,30,101010,99850,98730,74.2,0,3.46,3.65,3.69,3.72,3.74,3.7600000000000002,3.77,3.7800000000000002,3.81,310.36,310.25,310.2,310.15000000000003,310.09000000000003,310.05,309.99,309.94,309.82,25.44,25.02,24.830000000000002,24.63,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A +2012,9,17,19,30,100970,99820,98700,69.7,0,4.69,4.97,5.04,5.07,5.09,5.11,5.12,5.14,5.15,316.44,316.53000000000003,316.55,316.55,316.54,316.53000000000003,316.5,316.48,316.39,26.03,25.63,25.45,25.240000000000002,25.05,24.86,24.66,24.48,24.1,N/A,N/A +2012,9,17,20,30,100920,99770,98660,66.28,0,3.9,4.16,4.23,4.28,4.32,4.3500000000000005,4.39,4.42,4.49,322.67,322.47,322.32,322.16,322,321.85,321.69,321.53000000000003,321.19,26.52,26.14,25.96,25.77,25.580000000000002,25.39,25.19,25.01,24.64,N/A,N/A +2012,9,17,21,30,100860,99720,98600,64.94,0,3.64,3.87,3.93,3.97,4.01,4.04,4.07,4.1,4.17,323.26,322.65000000000003,322.31,321.96,321.63,321.3,320.96,320.63,319.91,26.95,26.6,26.42,26.22,26.04,25.85,25.66,25.48,25.11,N/A,N/A +2012,9,17,22,30,100840,99700,98590,63.910000000000004,0,3.14,3.36,3.42,3.47,3.5100000000000002,3.54,3.58,3.61,3.68,322.41,321.97,321.63,321.3,321,320.72,320.44,320.18,319.65000000000003,27.330000000000002,27.01,26.84,26.64,26.45,26.26,26.07,25.89,25.51,N/A,N/A +2012,9,17,23,30,100850,99700,98590,71.58,0,6,6.36,6.42,6.44,6.44,6.44,6.42,6.41,6.38,325.44,326.90000000000003,327.91,328.90000000000003,329.8,330.67,331.53000000000003,332.35,334.04,26.650000000000002,26.27,26.1,25.900000000000002,25.72,25.54,25.35,25.18,24.82,N/A,N/A +2012,9,18,0,30,100890,99740,98630,72.14,0,4.5200000000000005,4.75,4.78,4.79,4.79,4.79,4.79,4.79,4.7700000000000005,297.17,298.39,299.17,299.88,300.5,301.09000000000003,301.66,302.18,303.25,26.67,26.3,26.12,25.92,25.73,25.53,25.330000000000002,25.150000000000002,24.76,N/A,N/A +2012,9,18,1,30,100880,99730,98610,79.05,0,4.55,4.79,4.84,4.86,4.88,4.89,4.89,4.9,4.9,297.57,298.88,299.58,300.25,300.83,301.38,301.92,302.42,303.64,26.01,25.61,25.43,25.22,25.03,24.84,24.650000000000002,24.46,24.080000000000002,N/A,N/A +2012,9,18,2,30,100910,99770,98650,70.05,0,3.3200000000000003,3.46,3.47,3.47,3.47,3.46,3.45,3.45,3.43,305.98,307.56,308.52,309.48,310.33,311.14,311.93,312.67,314.14,26.63,26.27,26.1,25.89,25.7,25.51,25.32,25.13,24.75,N/A,N/A +2012,9,18,3,30,100940,99790,98680,68.26,0,4.24,4.48,4.5200000000000005,4.53,4.53,4.53,4.5200000000000005,4.51,4.49,344.53000000000003,344.85,344.99,345.12,345.24,345.34000000000003,345.44,345.53000000000003,345.7,26.89,26.52,26.34,26.14,25.95,25.75,25.55,25.37,24.98,N/A,N/A +2012,9,18,4,30,100970,99820,98710,70.22,0,5.32,5.5600000000000005,5.57,5.54,5.51,5.48,5.44,5.4,5.33,2.85,1.99,1.4000000000000001,0.78,0.21,359.66,359.08,358.54,357.37,26.41,26.02,25.84,25.64,25.44,25.26,25.060000000000002,24.87,24.490000000000002,N/A,N/A +2012,9,18,5,30,101020,99870,98750,71.35000000000001,0,3.5100000000000002,3.64,3.64,3.63,3.62,3.61,3.59,3.5700000000000003,3.54,5.14,3.97,3.2,2.37,1.58,0.77,359.88,359.02,357,26.04,25.66,25.48,25.27,25.080000000000002,24.89,24.7,24.52,24.14,N/A,N/A +2012,9,18,6,30,101060,99910,98790,70.31,0,3.7600000000000002,3.97,4.01,4.03,4.05,4.07,4.08,4.09,4.11,353.53000000000003,352.66,352.16,351.64,351.15000000000003,350.67,350.18,349.71,348.69,26.09,25.71,25.53,25.330000000000002,25.13,24.94,24.740000000000002,24.560000000000002,24.17,N/A,N/A +2012,9,18,7,30,101110,99950,98830,73.12,0,4.94,5.21,5.26,5.28,5.29,5.29,5.28,5.28,5.26,335.09000000000003,334.11,333.54,332.98,332.48,332.02,331.56,331.13,330.28000000000003,25.87,25.47,25.28,25.080000000000002,24.88,24.69,24.490000000000002,24.3,23.91,N/A,N/A +2012,9,18,8,30,101140,99980,98860,76.55,0,5.11,5.41,5.47,5.5,5.51,5.5200000000000005,5.53,5.54,5.55,340.94,340.44,340.11,339.75,339.42,339.1,338.76,338.43,337.73,25.48,25.07,24.88,24.67,24.47,24.28,24.080000000000002,23.89,23.51,N/A,N/A +2012,9,18,9,30,101180,100020,98900,74.67,0,6,6.3500000000000005,6.41,6.42,6.42,6.41,6.4,6.38,6.34,332.59000000000003,332.15000000000003,331.90000000000003,331.64,331.40000000000003,331.17,330.95,330.73,330.28000000000003,25.650000000000002,25.22,25.04,24.830000000000002,24.63,24.44,24.240000000000002,24.05,23.67,N/A,N/A +2012,9,18,10,30,101200,100040,98920,77.25,0,6.33,6.74,6.82,6.86,6.88,6.890000000000001,6.9,6.9,6.9,327.01,326.76,326.6,326.43,326.28000000000003,326.12,325.96,325.82,325.5,25.3,24.86,24.66,24.45,24.26,24.07,23.87,23.68,23.3,N/A,N/A +2012,9,18,11,30,101260,100100,98980,75.55,0,6.92,7.390000000000001,7.49,7.53,7.5600000000000005,7.57,7.58,7.58,7.57,339.03000000000003,338.89,338.78000000000003,338.66,338.55,338.45,338.34000000000003,338.24,338.02,25.26,24.8,24.61,24.400000000000002,24.2,24.01,23.81,23.62,23.240000000000002,N/A,N/A +2012,9,18,12,30,101290,100130,99010,80.66,0,7.0600000000000005,7.5200000000000005,7.61,7.65,7.67,7.68,7.68,7.68,7.66,339.86,339.58,339.39,339.19,339,338.82,338.64,338.47,338.09000000000003,24.87,24.400000000000002,24.2,23.990000000000002,23.79,23.59,23.39,23.21,22.82,N/A,N/A +2012,9,18,13,30,101330,100170,99040,81.15,0,7.34,7.86,7.99,8.05,8.09,8.120000000000001,8.13,8.15,8.16,338.24,338.28000000000003,338.29,338.3,338.31,338.31,338.32,338.32,338.35,24.79,24.310000000000002,24.11,23.900000000000002,23.7,23.51,23.31,23.13,22.740000000000002,N/A,N/A +2012,9,18,14,30,101400,100240,99110,81.98,0,7.09,7.57,7.68,7.74,7.7700000000000005,7.79,7.8,7.8100000000000005,7.8100000000000005,348.24,347.89,347.66,347.45,347.25,347.06,346.88,346.7,346.33,24.66,24.18,23.98,23.77,23.57,23.38,23.18,22.990000000000002,22.61,N/A,N/A +2012,9,18,15,30,101430,100270,99150,79.83,0,7.2,7.72,7.86,7.930000000000001,7.97,8.01,8.03,8.05,8.08,345.05,345.07,345.09000000000003,345.1,345.12,345.15000000000003,345.18,345.21,345.27,24.98,24.51,24.310000000000002,24.1,23.900000000000002,23.71,23.51,23.32,22.94,N/A,N/A +2012,9,18,16,30,101480,100320,99190,73.72,0,7.21,7.75,7.88,7.95,8,8.03,8.06,8.08,8.11,352.16,352.05,351.99,351.92,351.87,351.81,351.77,351.72,351.64,25.45,25.01,24.82,24.6,24.41,24.21,24.01,23.830000000000002,23.44,N/A,N/A +2012,9,18,17,30,101490,100330,99200,69.34,0,6.73,7.24,7.36,7.44,7.49,7.53,7.5600000000000005,7.59,7.62,348.13,348.28000000000003,348.38,348.47,348.56,348.65000000000003,348.74,348.83,349.02,25.96,25.55,25.36,25.150000000000002,24.96,24.76,24.57,24.38,23.990000000000002,N/A,N/A +2012,9,18,18,30,101490,100330,99210,65.61,0,6,6.45,6.55,6.61,6.65,6.68,6.7,6.72,6.74,341.58,342.06,342.39,342.72,343.04,343.34000000000003,343.66,343.96,344.61,26.62,26.25,26.07,25.86,25.67,25.48,25.28,25.1,24.71,N/A,N/A +2012,9,18,19,30,101480,100320,99200,62.410000000000004,0,4.92,5.34,5.46,5.54,5.61,5.67,5.72,5.7700000000000005,5.8500000000000005,339.41,340.04,340.43,340.79,341.12,341.44,341.74,342.02,342.59000000000003,27.330000000000002,27,26.830000000000002,26.63,26.45,26.26,26.060000000000002,25.88,25.5,N/A,N/A +2012,9,18,20,30,101460,100310,99190,64.97,0,5.04,5.43,5.51,5.5600000000000005,5.59,5.62,5.64,5.66,5.69,332.35,333.75,334.6,335.43,336.16,336.85,337.52,338.15000000000003,339.39,27.82,27.52,27.36,27.16,26.98,26.79,26.6,26.42,26.04,N/A,N/A +2012,9,18,21,30,101450,100300,99180,67.25,0,3.8000000000000003,3.99,4.0200000000000005,4.01,4,3.98,3.93,3.88,3.5500000000000003,73.49,74.22,74.46000000000001,74.63,74.67,74.62,74.14,73.53,69.02,26.97,26.64,26.48,26.29,26.13,25.96,25.810000000000002,25.69,25.55,N/A,N/A +2012,9,18,22,30,101420,100270,99160,65.41,0,2.0100000000000002,2.04,2.02,1.98,1.94,1.9000000000000001,1.85,1.8,1.68,72.55,71.96000000000001,71.51,70.95,70.37,69.7,68.9,68.07000000000001,64.93,27.490000000000002,27.18,27.01,26.810000000000002,26.63,26.44,26.25,26.080000000000002,25.72,N/A,N/A +2012,9,18,23,30,101420,100270,99150,65.34,0,0.75,0.85,0.89,0.93,1,1.09,1.24,1.42,2.17,37.7,33.22,30.240000000000002,27.04,23.37,18.77,13.52,7.7,357.64,27.73,27.43,27.28,27.09,26.91,26.740000000000002,26.580000000000002,26.44,26.23,N/A,N/A +2012,9,19,0,30,101440,100290,99180,66.52,0,1.68,1.99,2.12,2.2600000000000002,2.37,2.49,2.6,2.71,2.98,21.37,17.78,15.89,14.3,13,11.870000000000001,10.870000000000001,9.97,8.34,28.05,27.79,27.63,27.45,27.27,27.1,26.91,26.740000000000002,26.37,N/A,N/A +2012,9,19,1,30,101450,100300,99190,65.22,0,6.79,7.41,7.54,7.61,7.67,7.7,7.72,7.74,7.78,355.2,355.93,356.37,356.86,357.32,357.78000000000003,358.28000000000003,358.75,359.81,28.400000000000002,28.150000000000002,28,27.82,27.64,27.46,27.27,27.1,26.73,N/A,N/A +2012,9,19,2,30,101510,100360,99240,65.41,0,6.68,7.28,7.42,7.48,7.53,7.5600000000000005,7.57,7.58,7.59,20.46,20.75,20.86,20.96,21.04,21.12,21.2,21.26,21.400000000000002,28.28,28.02,27.86,27.67,27.490000000000002,27.3,27.11,26.92,26.55,N/A,N/A +2012,9,19,3,30,101530,100380,99270,66.46000000000001,0,7.01,7.6000000000000005,7.72,7.76,7.79,7.8,7.8,7.79,7.7700000000000005,31.470000000000002,31.45,31.44,31.41,31.38,31.34,31.3,31.26,31.150000000000002,27.87,27.57,27.41,27.22,27.03,26.85,26.650000000000002,26.47,26.09,N/A,N/A +2012,9,19,4,30,101550,100400,99280,70.04,0,7.79,8.39,8.5,8.53,8.540000000000001,8.53,8.51,8.48,8.41,28.810000000000002,29.32,29.68,30.03,30.35,30.66,30.970000000000002,31.26,31.87,27.23,26.89,26.72,26.52,26.330000000000002,26.150000000000002,25.95,25.77,25.400000000000002,N/A,N/A +2012,9,19,5,30,101560,100410,99290,74.07000000000001,0,7.54,8.11,8.22,8.26,8.290000000000001,8.290000000000001,8.290000000000001,8.28,8.25,36.480000000000004,36.95,37.22,37.49,37.730000000000004,37.97,38.21,38.44,38.93,26.7,26.32,26.150000000000002,25.95,25.76,25.57,25.38,25.2,24.830000000000002,N/A,N/A +2012,9,19,6,30,101590,100440,99320,75.37,0,7.79,8.370000000000001,8.49,8.540000000000001,8.56,8.57,8.56,8.55,8.51,46.58,46.83,47,47.17,47.32,47.47,47.62,47.76,48.06,26.52,26.12,25.93,25.73,25.53,25.34,25.150000000000002,24.96,24.580000000000002,N/A,N/A +2012,9,19,7,30,101620,100460,99340,76.27,0,8.27,8.96,9.11,9.19,9.23,9.26,9.27,9.28,9.27,49.660000000000004,49.95,50.1,50.26,50.4,50.52,50.65,50.77,51.01,26.44,26.02,25.84,25.63,25.43,25.240000000000002,25.04,24.86,24.47,N/A,N/A +2012,9,19,8,30,101640,100480,99360,79.12,0,8.16,8.8,8.94,9.01,9.05,9.07,9.08,9.08,9.07,55.19,55.45,55.61,55.76,55.88,55.99,56.1,56.21,56.410000000000004,26.13,25.69,25.5,25.29,25.09,24.89,24.69,24.5,24.12,N/A,N/A +2012,9,19,9,30,101670,100510,99380,79.49,0,8.26,8.88,9.01,9.07,9.1,9.11,9.11,9.11,9.08,60.25,60.42,60.52,60.61,60.69,60.77,60.84,60.92,61.050000000000004,25.830000000000002,25.38,25.19,24.97,24.77,24.57,24.38,24.19,23.8,N/A,N/A +2012,9,19,10,30,101700,100540,99410,78.78,0,8.76,9.450000000000001,9.59,9.65,9.69,9.71,9.72,9.72,9.700000000000001,57.59,57.870000000000005,58.050000000000004,58.22,58.38,58.53,58.69,58.83,59.120000000000005,25.42,24.95,24.740000000000002,24.53,24.330000000000002,24.13,23.93,23.740000000000002,23.35,N/A,N/A +2012,9,19,11,30,101740,100570,99450,79.46000000000001,0,8.73,9.39,9.540000000000001,9.6,9.65,9.67,9.68,9.68,9.66,65,64.92,64.92,64.93,64.93,64.94,64.94,64.95,64.96000000000001,25.240000000000002,24.75,24.54,24.32,24.12,23.92,23.72,23.53,23.13,N/A,N/A +2012,9,19,12,30,101770,100600,99470,76.87,0,8.36,8.97,9.1,9.16,9.200000000000001,9.22,9.22,9.22,9.200000000000001,60.85,60.910000000000004,60.980000000000004,61.050000000000004,61.11,61.160000000000004,61.22,61.26,61.36,25.03,24.54,24.330000000000002,24.12,23.91,23.72,23.51,23.32,22.93,N/A,N/A +2012,9,19,13,30,101830,100660,99530,72.68,0,7.68,8.22,8.32,8.36,8.38,8.38,8.38,8.370000000000001,8.33,59.53,59.620000000000005,59.72,59.800000000000004,59.88,59.94,60.01,60.07,60.2,24.94,24.46,24.26,24.04,23.84,23.650000000000002,23.45,23.26,22.87,N/A,N/A +2012,9,19,14,30,101880,100710,99570,71.88,0,7.82,8.370000000000001,8.47,8.52,8.55,8.56,8.56,8.56,8.53,62.980000000000004,63.18,63.31,63.42,63.51,63.6,63.7,63.78,63.940000000000005,24.8,24.310000000000002,24.1,23.89,23.69,23.490000000000002,23.29,23.1,22.7,N/A,N/A +2012,9,19,15,30,101860,100690,99550,71.43,0,7.34,7.8100000000000005,7.9,7.930000000000001,7.94,7.94,7.930000000000001,7.92,7.88,58.53,58.51,58.49,58.47,58.45,58.42,58.39,58.36,58.300000000000004,24.62,24.13,23.92,23.71,23.5,23.31,23.1,22.91,22.52,N/A,N/A +2012,9,19,16,30,101870,100700,99560,68.47,0,6.5200000000000005,6.91,6.98,7.01,7.0200000000000005,7.0200000000000005,7.01,7,6.97,61.480000000000004,61.79,61.96,62.13,62.28,62.42,62.57,62.7,62.980000000000004,24.650000000000002,24.17,23.96,23.75,23.55,23.35,23.150000000000002,22.97,22.57,N/A,N/A +2012,9,19,17,30,101860,100690,99550,67.84,0,5.91,6.24,6.29,6.3100000000000005,6.32,6.3100000000000005,6.3100000000000005,6.29,6.26,63.15,63.18,63.22,63.24,63.25,63.26,63.27,63.28,63.28,24.66,24.19,23.990000000000002,23.78,23.580000000000002,23.38,23.18,22.990000000000002,22.6,N/A,N/A +2012,9,19,18,30,101880,100710,99570,67.59,0,5.05,5.3,5.33,5.34,5.33,5.32,5.3,5.28,5.24,77.32000000000001,77.19,77.10000000000001,77.01,76.91,76.81,76.7,76.59,76.35000000000001,24.76,24.310000000000002,24.12,23.91,23.71,23.52,23.31,23.13,22.740000000000002,N/A,N/A +2012,9,19,19,30,101840,100680,99540,64.94,0,3.6,3.74,3.75,3.75,3.74,3.73,3.71,3.7,3.67,74.87,74.38,74.11,73.83,73.56,73.28,72.99,72.72,72.07000000000001,24.990000000000002,24.57,24.38,24.17,23.97,23.78,23.580000000000002,23.39,23.01,N/A,N/A +2012,9,19,20,30,101810,100640,99510,63.18,0,2.94,3.04,3.0300000000000002,3.0100000000000002,2.99,2.98,2.95,2.93,2.88,93.08,92.60000000000001,92.24,91.86,91.51,91.16,90.79,90.45,89.68,25.22,24.82,24.63,24.43,24.23,24.04,23.84,23.650000000000002,23.27,N/A,N/A +2012,9,19,21,30,101770,100600,99470,61.31,0,1.71,1.75,1.75,1.74,1.72,1.72,1.7,1.69,1.6600000000000001,96.33,95.57000000000001,95.06,94.54,94.03,93.54,92.99,92.47,91.22,25.39,25,24.810000000000002,24.61,24.41,24.22,24.03,23.84,23.45,N/A,N/A +2012,9,19,22,30,101750,100580,99450,61.31,0,1.83,1.8800000000000001,1.87,1.86,1.85,1.83,1.82,1.81,1.78,104.74000000000001,104.26,103.92,103.58,103.26,102.93,102.60000000000001,102.29,101.55,25.57,25.19,25,24.8,24.61,24.42,24.21,24.03,23.64,N/A,N/A +2012,9,19,23,30,101740,100570,99440,61.08,0,2.2800000000000002,2.36,2.36,2.35,2.34,2.33,2.32,2.3000000000000003,2.27,104.52,104.19,103.95,103.68,103.42,103.15,102.86,102.59,101.93,25.72,25.34,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A +2012,9,20,0,30,101710,100550,99420,61.07,0,2.8000000000000003,2.89,2.89,2.88,2.87,2.86,2.84,2.83,2.8000000000000003,111.39,111.14,111,110.83,110.67,110.51,110.34,110.18,109.81,25.86,25.48,25.3,25.09,24.900000000000002,24.71,24.51,24.32,23.93,N/A,N/A +2012,9,20,1,30,101740,100570,99450,60.34,0,3.2,3.33,3.34,3.34,3.34,3.34,3.33,3.33,3.31,99.29,99.12,98.99000000000001,98.87,98.75,98.64,98.52,98.41,98.18,25.94,25.560000000000002,25.38,25.17,24.98,24.79,24.59,24.400000000000002,24.01,N/A,N/A +2012,9,20,2,30,101750,100580,99460,58.95,0,3.29,3.45,3.48,3.49,3.5,3.5,3.5,3.5100000000000002,3.5100000000000002,76.32000000000001,76.23,76.22,76.19,76.16,76.12,76.07000000000001,76.03,75.9,26.01,25.63,25.44,25.25,25.05,24.86,24.66,24.47,24.09,N/A,N/A +2012,9,20,3,30,101740,100580,99450,55.82,0,3.68,3.9,3.95,3.98,4,4.0200000000000005,4.04,4.05,4.07,59.550000000000004,59.01,58.72,58.45,58.21,57.99,57.77,57.58,57.2,26.16,25.78,25.6,25.400000000000002,25.2,25.01,24.810000000000002,24.63,24.240000000000002,N/A,N/A +2012,9,20,4,30,101720,100560,99430,56.56,0,3.74,3.94,3.97,3.99,4,4.01,4.01,4.0200000000000005,4.0200000000000005,63.39,63.800000000000004,63.95,64.09,64.22,64.34,64.45,64.55,64.76,26.11,25.73,25.55,25.35,25.150000000000002,24.96,24.76,24.57,24.18,N/A,N/A +2012,9,20,5,30,101720,100550,99420,50.33,0,3.65,3.85,3.88,3.9,3.92,3.93,3.94,3.95,3.96,55.57,56.07,56.31,56.52,56.7,56.88,57.04,57.17,57.45,26.330000000000002,25.96,25.78,25.580000000000002,25.39,25.19,24.990000000000002,24.810000000000002,24.42,N/A,N/A +2012,9,20,6,30,101740,100580,99450,55.49,0,4.5,4.71,4.73,4.73,4.72,4.71,4.69,4.68,4.63,45.17,45.65,45.83,46,46.15,46.300000000000004,46.46,46.61,46.95,25.89,25.5,25.32,25.12,24.92,24.73,24.54,24.35,23.96,N/A,N/A +2012,9,20,7,30,101730,100570,99440,51.35,0,3.02,3.16,3.18,3.19,3.19,3.2,3.2,3.2,3.2,50.49,51.43,51.980000000000004,52.49,52.97,53.410000000000004,53.85,54.25,55.07,25.990000000000002,25.62,25.44,25.240000000000002,25.04,24.85,24.650000000000002,24.47,24.07,N/A,N/A +2012,9,20,8,30,101760,100600,99470,51.52,0,3.34,3.52,3.56,3.58,3.59,3.6,3.61,3.61,3.62,55.93,56.56,56.980000000000004,57.36,57.7,58.02,58.33,58.61,59.160000000000004,26.17,25.810000000000002,25.63,25.43,25.23,25.04,24.84,24.650000000000002,24.26,N/A,N/A +2012,9,20,9,30,101770,100600,99470,49.84,0,2.59,2.7,2.71,2.72,2.73,2.73,2.73,2.73,2.74,57.6,58.38,58.9,59.410000000000004,59.88,60.33,60.800000000000004,61.230000000000004,62.13,26.12,25.76,25.580000000000002,25.38,25.19,24.990000000000002,24.79,24.61,24.22,N/A,N/A +2012,9,20,10,30,101740,100580,99450,54.2,0,3.16,3.2600000000000002,3.25,3.23,3.21,3.19,3.16,3.14,3.09,44.45,45.19,45.68,46.15,46.59,47,47.42,47.800000000000004,48.61,25.94,25.560000000000002,25.38,25.18,24.98,24.79,24.59,24.41,24.02,N/A,N/A +2012,9,20,11,30,101760,100590,99460,54.86,0,3.29,3.38,3.37,3.34,3.31,3.29,3.2600000000000002,3.24,3.19,79.5,78.83,78.35000000000001,77.86,77.41,76.98,76.54,76.14,75.3,25.810000000000002,25.43,25.25,25.04,24.85,24.66,24.46,24.27,23.88,N/A,N/A +2012,9,20,12,30,101770,100600,99470,56.34,0,3.37,3.46,3.44,3.41,3.38,3.35,3.3200000000000003,3.29,3.23,65.91,66.01,66.07000000000001,66.15,66.2,66.24,66.29,66.33,66.41,25.61,25.22,25.04,24.830000000000002,24.64,24.45,24.25,24.060000000000002,23.67,N/A,N/A +2012,9,20,13,30,101780,100610,99480,59.31,0,3.83,3.99,3.99,3.99,3.97,3.96,3.94,3.92,3.89,70.38,70.23,70.05,69.88,69.73,69.59,69.44,69.3,69.04,25.490000000000002,25.09,24.900000000000002,24.7,24.5,24.310000000000002,24.11,23.92,23.53,N/A,N/A +2012,9,20,14,30,101800,100640,99500,58.410000000000004,0,3.52,3.66,3.66,3.65,3.64,3.63,3.61,3.59,3.56,72.11,71.62,71.35000000000001,71.09,70.85000000000001,70.62,70.38,70.17,69.73,25.37,24.97,24.78,24.580000000000002,24.38,24.19,23.990000000000002,23.8,23.41,N/A,N/A +2012,9,20,15,30,101800,100630,99500,57.480000000000004,0,3.84,3.99,4,3.99,3.97,3.96,3.94,3.92,3.88,60.17,60.28,60.410000000000004,60.52,60.63,60.72,60.82,60.910000000000004,61.08,25.330000000000002,24.93,24.740000000000002,24.54,24.34,24.14,23.94,23.76,23.37,N/A,N/A +2012,9,20,16,30,101780,100610,99480,56.28,0,3.88,4.04,4.05,4.05,4.03,4.03,4.01,3.99,3.96,55.910000000000004,55.97,55.97,55.980000000000004,55.980000000000004,55.980000000000004,55.99,56,55.99,25.310000000000002,24.900000000000002,24.72,24.51,24.32,24.12,23.92,23.740000000000002,23.34,N/A,N/A +2012,9,20,17,30,101770,100600,99470,55.08,0,3.8200000000000003,3.98,3.99,3.98,3.97,3.95,3.94,3.92,3.88,60.160000000000004,60.17,60.09,60.01,59.93,59.870000000000005,59.79,59.72,59.58,25.29,24.88,24.69,24.490000000000002,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A +2012,9,20,18,30,101730,100560,99430,53.58,0,3.13,3.23,3.23,3.21,3.2,3.19,3.17,3.15,3.12,65.85,65.18,64.8,64.41,64.04,63.690000000000005,63.31,62.96,62.21,25.32,24.92,24.73,24.53,24.34,24.150000000000002,23.95,23.77,23.38,N/A,N/A +2012,9,20,19,30,101690,100530,99400,52.92,0,2.5300000000000002,2.6,2.6,2.58,2.57,2.5500000000000003,2.54,2.52,2.48,73.59,73.02,72.65,72.27,71.92,71.59,71.22,70.86,70.08,25.37,24.98,24.79,24.59,24.400000000000002,24.21,24.01,23.82,23.44,N/A,N/A +2012,9,20,20,30,101660,100490,99360,52.14,0,2.73,2.81,2.8000000000000003,2.79,2.77,2.7600000000000002,2.74,2.72,2.68,88.07000000000001,87.73,87.48,87.21000000000001,86.95,86.7,86.43,86.17,85.55,25.48,25.09,24.91,24.71,24.51,24.330000000000002,24.13,23.94,23.56,N/A,N/A +2012,9,20,21,30,101630,100460,99330,53.57,0,2.5300000000000002,2.61,2.61,2.59,2.58,2.56,2.54,2.52,2.48,98.18,97.9,97.65,97.42,97.19,96.97,96.73,96.51,95.98,25.51,25.12,24.94,24.740000000000002,24.54,24.36,24.16,23.97,23.580000000000002,N/A,N/A +2012,9,20,22,30,101590,100420,99300,54.03,0,2.33,2.4,2.4,2.39,2.38,2.37,2.36,2.35,2.32,89.62,89.04,88.74,88.43,88.13,87.85000000000001,87.52,87.21000000000001,86.51,25.580000000000002,25.2,25.02,24.82,24.63,24.44,24.240000000000002,24.060000000000002,23.67,N/A,N/A +2012,9,20,23,30,101590,100420,99290,54.24,0,3.15,3.2800000000000002,3.29,3.29,3.29,3.2800000000000002,3.2800000000000002,3.27,3.25,103.55,103.06,102.85000000000001,102.63,102.41,102.18,101.93,101.7,101.14,25.67,25.29,25.11,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A +2012,9,21,0,30,101550,100390,99260,56.480000000000004,0,3.52,3.7,3.73,3.75,3.7600000000000002,3.77,3.7800000000000002,3.7800000000000002,3.79,104.2,104.08,103.96000000000001,103.83,103.72,103.61,103.49000000000001,103.38,103.13,25.67,25.29,25.1,24.900000000000002,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A +2012,9,21,1,30,101550,100390,99260,52.620000000000005,0,2.8000000000000003,2.96,2.99,3.0100000000000002,3.0300000000000002,3.04,3.0500000000000003,3.0700000000000003,3.09,102.47,102.31,102.18,102.04,101.92,101.79,101.65,101.52,101.23,25.91,25.54,25.36,25.16,24.97,24.78,24.580000000000002,24.400000000000002,24.01,N/A,N/A +2012,9,21,2,30,101560,100400,99270,53.2,0,3.96,4.18,4.21,4.22,4.23,4.23,4.24,4.24,4.23,105.2,104.94,104.76,104.58,104.41,104.25,104.08,103.93,103.56,26.05,25.68,25.5,25.3,25.1,24.91,24.72,24.53,24.14,N/A,N/A +2012,9,21,3,30,101550,100390,99260,53.39,0,3.63,3.81,3.85,3.86,3.87,3.87,3.88,3.88,3.88,103.72,103.18,102.84,102.51,102.19,101.89,101.58,101.3,100.68,26.07,25.7,25.52,25.32,25.13,24.94,24.740000000000002,24.55,24.17,N/A,N/A +2012,9,21,4,30,101520,100360,99230,53.92,0,3.62,3.83,3.87,3.89,3.91,3.92,3.94,3.95,3.96,95.65,95.36,95.19,95.01,94.85000000000001,94.69,94.52,94.35000000000001,94.02,26.09,25.72,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A +2012,9,21,5,30,101550,100390,99260,54.32,0,4.28,4.5200000000000005,4.57,4.59,4.6000000000000005,4.61,4.62,4.62,4.62,97.06,96.73,96.53,96.36,96.19,96.02,95.86,95.72,95.39,26.14,25.77,25.59,25.39,25.19,25,24.8,24.62,24.23,N/A,N/A +2012,9,21,6,30,101550,100380,99260,54.04,0,3.92,4.15,4.2,4.23,4.25,4.2700000000000005,4.28,4.29,4.3100000000000005,88.44,88.62,88.7,88.75,88.8,88.85000000000001,88.88,88.92,88.98,26.12,25.75,25.57,25.37,25.18,24.990000000000002,24.79,24.6,24.21,N/A,N/A +2012,9,21,7,30,101560,100400,99270,54.85,0,3.49,3.69,3.74,3.77,3.79,3.8000000000000003,3.8200000000000003,3.83,3.85,88.46000000000001,88.46000000000001,88.46000000000001,88.45,88.43,88.4,88.37,88.33,88.23,26.05,25.68,25.5,25.3,25.1,24.91,24.71,24.53,24.14,N/A,N/A +2012,9,21,8,30,101540,100380,99250,54.96,0,3.3200000000000003,3.46,3.47,3.47,3.46,3.46,3.45,3.45,3.44,85.49,85.05,84.83,84.62,84.44,84.27,84.11,83.97,83.69,25.94,25.57,25.39,25.19,25,24.810000000000002,24.61,24.43,24.03,N/A,N/A +2012,9,21,9,30,101560,100400,99270,59.09,0,3.74,3.91,3.93,3.94,3.94,3.94,3.94,3.93,3.92,83.99,84.8,85.32000000000001,85.76,86.11,86.4,86.64,86.84,87.16,25.87,25.490000000000002,25.310000000000002,25.11,24.91,24.72,24.52,24.330000000000002,23.94,N/A,N/A +2012,9,21,10,30,101570,100400,99280,60.67,0,4.32,4.58,4.62,4.65,4.66,4.68,4.68,4.69,4.71,88.57000000000001,88.11,87.78,87.44,87.15,86.89,86.62,86.38,85.94,25.740000000000002,25.36,25.17,24.97,24.78,24.59,24.39,24.2,23.81,N/A,N/A +2012,9,21,11,30,101550,100390,99270,61.7,0,3.75,4.01,4.08,4.13,4.17,4.21,4.24,4.26,4.3100000000000005,74.78,74.53,74.5,74.46000000000001,74.43,74.4,74.37,74.35000000000001,74.32000000000001,25.76,25.37,25.19,24.990000000000002,24.79,24.6,24.400000000000002,24.21,23.82,N/A,N/A +2012,9,21,12,30,101540,100380,99260,62.74,0,4.17,4.4,4.45,4.48,4.5,4.51,4.53,4.54,4.55,64.48,64.8,64.94,65.07000000000001,65.18,65.29,65.4,65.51,65.72,25.82,25.43,25.25,25.05,24.85,24.66,24.46,24.28,23.89,N/A,N/A +2012,9,21,13,30,101540,100370,99250,61.44,0,3.7,3.88,3.9,3.91,3.92,3.92,3.92,3.91,3.9,73.08,73.47,73.69,73.88,74.04,74.2,74.34,74.46000000000001,74.7,26.02,25.64,25.46,25.26,25.060000000000002,24.87,24.67,24.490000000000002,24.1,N/A,N/A +2012,9,21,14,30,101540,100380,99260,66.83,0,3.43,3.62,3.67,3.69,3.71,3.72,3.74,3.74,3.7600000000000002,65.84,66.66,67.19,67.68,68.11,68.51,68.92,69.29,70.03,25.96,25.59,25.41,25.2,25.01,24.82,24.62,24.43,24.04,N/A,N/A +2012,9,21,15,30,101570,100410,99280,76.77,0,5.82,6.04,6.0200000000000005,5.96,5.89,5.82,5.75,5.68,5.54,33.37,34.97,36.04,37.14,38.17,39.17,40.19,41.15,43.22,25.580000000000002,25.18,25,24.8,24.61,24.43,24.23,24.05,23.68,N/A,N/A +2012,9,21,16,30,101550,100390,99270,76.08,0,3.92,4.15,4.21,4.24,4.2700000000000005,4.28,4.3,4.3100000000000005,4.33,60.46,61.34,61.730000000000004,62.04,62.28,62.49,62.67,62.83,63.08,26.02,25.64,25.45,25.25,25.05,24.86,24.66,24.48,24.09,N/A,N/A +2012,9,21,17,30,101490,100330,99210,77.99,0,5.0200000000000005,5.32,5.37,5.4,5.41,5.42,5.42,5.42,5.41,47.980000000000004,48.4,48.660000000000004,48.910000000000004,49.13,49.35,49.56,49.76,50.18,25.93,25.53,25.34,25.14,24.94,24.75,24.55,24.37,23.98,N/A,N/A +2012,9,21,18,30,101480,100330,99210,80.08,0,5.68,6.05,6.12,6.15,6.16,6.17,6.17,6.18,6.16,55.77,56.03,56.14,56.24,56.31,56.39,56.45,56.52,56.64,25.990000000000002,25.59,25.400000000000002,25.19,25,24.8,24.61,24.42,24.03,N/A,N/A +2012,9,21,19,30,101470,100310,99190,81.95,0,5.8500000000000005,6.24,6.32,6.3500000000000005,6.37,6.38,6.38,6.38,6.36,61.050000000000004,61.27,61.46,61.64,61.800000000000004,61.95,62.11,62.26,62.59,25.96,25.55,25.36,25.16,24.96,24.77,24.57,24.39,24.01,N/A,N/A +2012,9,21,20,30,101450,100290,99170,84.32000000000001,0,6.5,6.98,7.1000000000000005,7.15,7.19,7.22,7.24,7.26,7.28,71.02,71.13,71.22,71.3,71.37,71.44,71.51,71.58,71.73,26.12,25.71,25.53,25.330000000000002,25.13,24.94,24.75,24.560000000000002,24.18,N/A,N/A +2012,9,21,21,30,101460,100310,99190,81.62,0,7.05,7.62,7.75,7.82,7.87,7.9,7.930000000000001,7.94,7.96,83.15,83.3,83.37,83.45,83.53,83.60000000000001,83.69,83.76,83.94,26.52,26.14,25.96,25.75,25.560000000000002,25.37,25.18,24.990000000000002,24.61,N/A,N/A +2012,9,21,22,30,101410,100260,99140,80.04,0,6.36,6.84,6.94,6.98,7,7,7,6.99,6.97,92.63,92.66,92.74,92.82000000000001,92.89,92.96000000000001,93.04,93.10000000000001,93.26,26.77,26.400000000000002,26.22,26.02,25.830000000000002,25.64,25.45,25.26,24.88,N/A,N/A +2012,9,21,23,30,101410,100260,99150,79.35000000000001,0,5.0600000000000005,5.39,5.45,5.48,5.49,5.5,5.5,5.49,5.47,105.11,105.39,105.42,105.41,105.38,105.33,105.27,105.21000000000001,105.07000000000001,26.96,26.61,26.43,26.23,26.04,25.85,25.650000000000002,25.47,25.080000000000002,N/A,N/A +2012,9,22,0,30,101430,100270,99160,80.65,0,6.08,6.53,6.63,6.67,6.69,6.7,6.7,6.7,6.68,99.02,99.01,98.92,98.81,98.7,98.58,98.46000000000001,98.34,98.07000000000001,26.84,26.48,26.3,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A +2012,9,22,1,30,101450,100300,99180,79.28,0,5.71,6.12,6.19,6.23,6.25,6.26,6.26,6.26,6.25,98.17,98.12,98.09,98.07000000000001,98.04,98.02,98.01,98.01,98,26.82,26.46,26.29,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A +2012,9,22,2,30,101470,100320,99200,80.04,0,5.34,5.71,5.78,5.82,5.84,5.8500000000000005,5.8500000000000005,5.86,5.8500000000000005,98.63,98.55,98.55,98.56,98.56,98.56,98.56,98.56,98.54,26.78,26.42,26.240000000000002,26.04,25.85,25.66,25.46,25.28,24.89,N/A,N/A +2012,9,22,3,30,101480,100330,99210,80.83,0,6.05,6.5200000000000005,6.640000000000001,6.7,6.74,6.7700000000000005,6.79,6.8100000000000005,6.84,107.47,107.49000000000001,107.5,107.51,107.53,107.55,107.57000000000001,107.59,107.65,26.82,26.46,26.28,26.080000000000002,25.89,25.69,25.5,25.310000000000002,24.93,N/A,N/A +2012,9,22,4,30,101450,100300,99180,82.46000000000001,0,4.55,4.86,4.93,4.97,4.99,5.01,5.03,5.04,5.0600000000000005,125.38000000000001,125.74000000000001,125.96000000000001,126.17,126.36,126.54,126.73,126.89,127.25,26.740000000000002,26.38,26.21,26.01,25.82,25.62,25.43,25.240000000000002,24.86,N/A,N/A +2012,9,22,5,30,101490,100340,99220,81.18,0,5.14,5.51,5.58,5.63,5.66,5.67,5.69,5.7,5.71,125.60000000000001,125.8,125.87,125.93,126,126.06,126.12,126.17,126.29,26.87,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A +2012,9,22,6,30,101500,100350,99230,79.23,0,4.49,4.7700000000000005,4.82,4.8500000000000005,4.86,4.87,4.88,4.88,4.87,128.35,128.54,128.63,128.71,128.79,128.86,128.92000000000002,128.98,129.11,26.86,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.98,N/A,N/A +2012,9,22,7,30,101520,100370,99250,79.86,0,3.8200000000000003,4.08,4.14,4.17,4.2,4.22,4.24,4.25,4.28,136.46,136.93,137.14000000000001,137.33,137.53,137.71,137.9,138.07,138.43,26.89,26.54,26.36,26.16,25.97,25.78,25.59,25.400000000000002,25.01,N/A,N/A +2012,9,22,8,30,101540,100390,99280,80.10000000000001,0,4.1,4.37,4.43,4.47,4.5,4.51,4.53,4.54,4.5600000000000005,131.99,132.32,132.56,132.79,133,133.21,133.43,133.64000000000001,134.1,26.89,26.53,26.36,26.16,25.97,25.78,25.59,25.400000000000002,25.02,N/A,N/A +2012,9,22,9,30,101560,100400,99290,81.33,0,3.68,3.87,3.89,3.89,3.89,3.88,3.86,3.85,3.8200000000000003,153.69,153.17000000000002,152.98,152.8,152.63,152.47,152.3,152.15,151.81,26.87,26.52,26.34,26.150000000000002,25.96,25.77,25.57,25.38,25,N/A,N/A +2012,9,22,10,30,101600,100450,99330,78.73,0,3.71,3.93,3.96,3.98,3.99,3.99,4,4,3.99,134.43,134.47,134.55,134.63,134.69,134.75,134.81,134.85,134.97,26.91,26.560000000000002,26.39,26.19,26,25.810000000000002,25.61,25.42,25.04,N/A,N/A +2012,9,22,11,30,101640,100480,99360,79.99,0,3.84,4.04,4.07,4.08,4.08,4.08,4.07,4.0600000000000005,4.03,132.49,132.5,132.51,132.52,132.52,132.52,132.52,132.52,132.51,26.84,26.490000000000002,26.310000000000002,26.11,25.92,25.73,25.53,25.35,24.96,N/A,N/A +2012,9,22,12,30,101660,100500,99390,79.56,0,2.67,2.82,2.84,2.86,2.87,2.89,2.9,2.9,2.91,114.44,115.01,115.34,115.65,115.93,116.18,116.43,116.65,117.11,26.810000000000002,26.47,26.3,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.94,N/A,N/A +2012,9,22,13,30,101700,100550,99430,80.41,0,2.49,2.61,2.63,2.65,2.66,2.66,2.66,2.66,2.67,105.53,106.24000000000001,106.65,107.02,107.34,107.64,107.93,108.2,108.74000000000001,26.77,26.42,26.25,26.05,25.86,25.67,25.47,25.28,24.900000000000002,N/A,N/A +2012,9,22,14,30,101760,100600,99480,79.07000000000001,0,2.15,2.24,2.25,2.25,2.25,2.24,2.24,2.24,2.23,90.51,91.16,91.65,92.13,92.57000000000001,92.99,93.43,93.85000000000001,94.68,26.8,26.46,26.29,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A +2012,9,22,15,30,101770,100620,99500,80.60000000000001,0,2.67,2.7800000000000002,2.79,2.79,2.79,2.7800000000000002,2.77,2.77,2.75,70.74,71.13,71.39,71.64,71.86,72.06,72.27,72.48,72.87,26.79,26.44,26.26,26.060000000000002,25.87,25.68,25.490000000000002,25.3,24.92,N/A,N/A +2012,9,22,16,30,101790,100630,99510,79.71000000000001,0,3.31,3.47,3.49,3.5,3.5,3.5,3.5,3.49,3.48,66.73,67.12,67.28,67.45,67.61,67.77,67.93,68.08,68.41,26.88,26.52,26.34,26.14,25.95,25.76,25.560000000000002,25.37,24.990000000000002,N/A,N/A +2012,9,22,17,30,101790,100630,99510,79.51,0,3.52,3.71,3.74,3.74,3.75,3.75,3.74,3.74,3.73,70.92,70.94,71,71.06,71.11,71.16,71.22,71.28,71.38,26.93,26.57,26.39,26.19,26,25.810000000000002,25.61,25.43,25.04,N/A,N/A +2012,9,22,18,30,101780,100630,99510,80.03,0,3.73,3.92,3.94,3.95,3.95,3.94,3.94,3.93,3.91,81.98,82.01,82,81.99,81.98,81.96000000000001,81.94,81.93,81.92,27.04,26.68,26.5,26.3,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A +2012,9,22,19,30,101790,100640,99520,82.41,0,4.22,4.46,4.5,4.51,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.51,4.49,105.44,105.57000000000001,105.67,105.79,105.91,106.02,106.15,106.27,106.56,27.080000000000002,26.71,26.53,26.34,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A +2012,9,22,20,30,101760,100610,99490,82.39,0,4.8100000000000005,5.08,5.12,5.13,5.12,5.11,5.08,5.0600000000000005,5,115.85000000000001,116.01,116.05,116.10000000000001,116.16,116.22,116.3,116.39,116.60000000000001,27.07,26.7,26.52,26.330000000000002,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A +2012,9,22,21,30,101750,100600,99480,81.77,0,4.79,5.08,5.13,5.14,5.14,5.13,5.11,5.09,5.04,132.16,132.37,132.41,132.46,132.5,132.54,132.59,132.64000000000001,132.75,27.17,26.82,26.64,26.45,26.26,26.07,25.88,25.7,25.330000000000002,N/A,N/A +2012,9,22,22,30,101750,100600,99480,80.3,0,3.89,4.1,4.13,4.13,4.13,4.11,4.1,4.08,4.03,137.34,137.42000000000002,137.43,137.45000000000002,137.47,137.48,137.49,137.5,137.5,27.21,26.88,26.71,26.51,26.330000000000002,26.14,25.95,25.77,25.400000000000002,N/A,N/A +2012,9,22,23,30,101750,100590,99480,81.22,0,3.69,3.9,3.92,3.92,3.92,3.91,3.9,3.88,3.85,146.25,146.43,146.46,146.51,146.56,146.61,146.66,146.69,146.8,27.17,26.830000000000002,26.66,26.47,26.28,26.09,25.900000000000002,25.72,25.34,N/A,N/A +2012,9,23,0,30,101750,100600,99480,80.91,0,4,4.22,4.26,4.26,4.26,4.25,4.24,4.22,4.18,155.75,155.81,155.86,155.92000000000002,155.97,156.02,156.07,156.12,156.23,27.14,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.68,25.3,N/A,N/A +2012,9,23,1,30,101770,100620,99500,80.47,0,3.47,3.64,3.66,3.66,3.66,3.65,3.63,3.62,3.58,156.87,156.91,156.94,156.98,157.02,157.07,157.1,157.14000000000001,157.21,27.11,26.78,26.61,26.42,26.23,26.04,25.85,25.66,25.29,N/A,N/A +2012,9,23,2,30,101780,100630,99510,79.07000000000001,0,3.34,3.52,3.54,3.54,3.54,3.54,3.52,3.5100000000000002,3.48,152.4,152.35,152.34,152.31,152.29,152.25,152.19,152.13,151.93,27.14,26.810000000000002,26.63,26.44,26.25,26.07,25.87,25.69,25.32,N/A,N/A +2012,9,23,3,30,101800,100640,99520,76.61,0,3.74,3.96,3.99,4,4,4,3.99,3.99,3.97,162.4,162.34,162.25,162.16,162.06,161.97,161.86,161.76,161.49,27.240000000000002,26.91,26.740000000000002,26.55,26.36,26.18,25.98,25.8,25.43,N/A,N/A +2012,9,23,4,30,101800,100640,99520,75.25,0,3.63,3.84,3.87,3.88,3.88,3.88,3.88,3.87,3.86,165.12,164.96,164.88,164.79,164.71,164.63,164.53,164.44,164.18,27.29,26.96,26.8,26.6,26.41,26.23,26.03,25.85,25.48,N/A,N/A +2012,9,23,5,30,101820,100660,99540,78.16,0,2.85,3.02,3.06,3.08,3.09,3.1,3.1,3.11,3.12,153.21,153.31,153.35,153.38,153.4,153.42000000000002,153.43,153.43,153.43,27.14,26.810000000000002,26.64,26.44,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A +2012,9,23,6,30,101860,100700,99580,77.62,0,2.88,3.0100000000000002,3.02,3.0300000000000002,3.0300000000000002,3.02,3.02,3.02,3.0100000000000002,154.56,154.4,154.24,154.08,153.92000000000002,153.75,153.57,153.38,152.95000000000002,27.14,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A +2012,9,23,7,30,101880,100720,99600,78.39,0,2.07,2.15,2.17,2.18,2.19,2.19,2.19,2.19,2.2,161.33,161.06,160.86,160.66,160.45000000000002,160.25,160.03,159.81,159.34,27.060000000000002,26.72,26.55,26.35,26.16,25.97,25.77,25.59,25.21,N/A,N/A +2012,9,23,8,30,101890,100740,99610,79.43,0,1.75,1.82,1.83,1.83,1.83,1.83,1.83,1.83,1.83,159.54,159.37,159.25,159.13,159.01,158.89000000000001,158.75,158.61,158.28,27.01,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A +2012,9,23,9,30,101920,100770,99650,80.02,0,1.44,1.5,1.51,1.52,1.53,1.54,1.54,1.55,1.57,150.84,150.28,150.05,149.79,149.55,149.33,149.09,148.84,148.28,26.990000000000002,26.650000000000002,26.48,26.28,26.09,25.900000000000002,25.71,25.52,25.14,N/A,N/A +2012,9,23,10,30,101930,100780,99660,79.76,0,1.37,1.43,1.44,1.44,1.45,1.45,1.46,1.46,1.47,131.74,131.75,131.79,131.82,131.85,131.87,131.86,131.85,131.77,26.98,26.64,26.47,26.27,26.080000000000002,25.89,25.7,25.51,25.13,N/A,N/A +2012,9,23,11,30,101960,100800,99680,78.06,0,1.2,1.26,1.27,1.28,1.29,1.3,1.31,1.32,1.34,111.32000000000001,110.97,110.88,110.82000000000001,110.76,110.68,110.61,110.55,110.46000000000001,27.01,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A +2012,9,23,12,30,101990,100830,99710,77.34,0,1.8800000000000001,1.96,1.97,1.97,1.97,1.97,1.97,1.97,1.97,107.28,107.10000000000001,107.03,106.97,106.91,106.85000000000001,106.78,106.72,106.63,27.01,26.67,26.5,26.3,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A +2012,9,23,13,30,102010,100850,99730,77.23,0,1.86,1.95,1.96,1.97,1.98,1.99,1.99,2,2.0100000000000002,87.39,87.73,88.03,88.34,88.59,88.81,89.04,89.27,89.68,26.97,26.63,26.46,26.26,26.07,25.88,25.68,25.5,25.12,N/A,N/A +2012,9,23,14,30,102040,100880,99760,77.18,0,1.8900000000000001,1.97,1.98,1.98,1.99,1.99,1.99,1.99,1.99,87.04,87.23,87.31,87.39,87.46000000000001,87.54,87.64,87.73,87.92,26.97,26.63,26.46,26.26,26.07,25.88,25.68,25.5,25.11,N/A,N/A +2012,9,23,15,30,102080,100920,99790,78.28,0,2.31,2.42,2.44,2.44,2.45,2.46,2.46,2.47,2.47,97.94,97.76,97.75,97.73,97.71000000000001,97.69,97.67,97.64,97.62,26.98,26.63,26.46,26.26,26.07,25.87,25.68,25.490000000000002,25.11,N/A,N/A +2012,9,23,16,30,102050,100890,99770,76.86,0,2.15,2.25,2.2600000000000002,2.27,2.27,2.2800000000000002,2.2800000000000002,2.2800000000000002,2.29,95.16,95.48,95.58,95.68,95.78,95.86,95.98,96.09,96.31,27.04,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A +2012,9,23,17,30,102060,100900,99780,76.31,0,2.39,2.5100000000000002,2.5300000000000002,2.54,2.5500000000000003,2.56,2.57,2.58,2.59,77.52,77.74,77.82000000000001,77.9,77.98,78.05,78.13,78.2,78.35000000000001,27.14,26.78,26.6,26.400000000000002,26.21,26.02,25.82,25.64,25.25,N/A,N/A +2012,9,23,18,30,102060,100900,99780,76.01,0,2.67,2.8000000000000003,2.82,2.83,2.84,2.84,2.85,2.85,2.85,110.97,110.7,110.56,110.41,110.28,110.15,110.01,109.88,109.62,27.22,26.86,26.68,26.48,26.28,26.09,25.900000000000002,25.71,25.330000000000002,N/A,N/A +2012,9,23,19,30,102040,100880,99760,76.64,0,2.7800000000000002,2.9,2.91,2.92,2.92,2.92,2.92,2.91,2.9,109.07000000000001,108.56,108.14,107.71000000000001,107.34,106.98,106.61,106.27,105.58,27.25,26.89,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A +2012,9,23,20,30,102010,100850,99730,76.45,0,2.42,2.52,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.52,2.52,2.5100000000000002,2.5100000000000002,100.61,100.03,99.69,99.36,99.07000000000001,98.81,98.57000000000001,98.35000000000001,97.97,27.28,26.92,26.740000000000002,26.54,26.34,26.16,25.96,25.77,25.39,N/A,N/A +2012,9,23,21,30,102000,100840,99720,78.45,0,3.92,4.11,4.14,4.14,4.13,4.12,4.11,4.1,4.07,145.72,145.51,145.34,145.18,145.03,144.9,144.78,144.66,144.41,27.3,26.94,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A +2012,9,23,22,30,102000,100850,99720,78.61,0,4.36,4.63,4.68,4.71,4.72,4.73,4.74,4.74,4.75,149.76,149.8,149.87,149.95000000000002,150.02,150.11,150.19,150.27,150.46,27.28,26.93,26.76,26.560000000000002,26.37,26.18,25.990000000000002,25.8,25.43,N/A,N/A +2012,9,23,23,30,101990,100840,99720,80.43,0,4.2,4.46,4.5200000000000005,4.54,4.5600000000000005,4.57,4.57,4.58,4.58,157.65,157.72,157.78,157.85,157.91,157.96,158.03,158.09,158.22,27.21,26.87,26.7,26.5,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A +2012,9,24,0,30,102000,100840,99720,80.59,0,3.33,3.52,3.5500000000000003,3.5700000000000003,3.58,3.59,3.6,3.6,3.61,156.44,156.55,156.53,156.53,156.53,156.54,156.56,156.57,156.6,27.17,26.830000000000002,26.650000000000002,26.45,26.27,26.080000000000002,25.88,25.7,25.32,N/A,N/A +2012,9,24,1,30,101980,100820,99700,79.88,0,3.0700000000000003,3.23,3.25,3.25,3.25,3.25,3.24,3.23,3.22,173.9,173.5,173.28,173.06,172.86,172.67000000000002,172.46,172.25,171.73,27.14,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.86,25.68,25.3,N/A,N/A +2012,9,24,2,30,102020,100860,99740,79.42,0,3.36,3.5300000000000002,3.56,3.5700000000000003,3.58,3.58,3.58,3.58,3.58,177.59,177.47,177.31,177.14000000000001,176.99,176.82,176.64000000000001,176.45000000000002,175.97,27.22,26.89,26.71,26.52,26.330000000000002,26.14,25.95,25.77,25.39,N/A,N/A +2012,9,24,3,30,102010,100850,99730,81.03,0,4.67,4.98,5.04,5.07,5.09,5.11,5.12,5.12,5.13,171.71,171.58,171.48,171.38,171.29,171.19,171.1,171,170.8,27.18,26.830000000000002,26.650000000000002,26.45,26.27,26.080000000000002,25.88,25.69,25.32,N/A,N/A +2012,9,24,4,30,101980,100830,99710,82.19,0,3.98,4.21,4.25,4.26,4.2700000000000005,4.2700000000000005,4.2700000000000005,4.26,4.25,171.24,171.02,170.9,170.78,170.67000000000002,170.55,170.43,170.3,170.01,27.080000000000002,26.73,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.23,N/A,N/A +2012,9,24,5,30,101990,100830,99710,82.38,0,4.01,4.25,4.29,4.3,4.3100000000000005,4.32,4.32,4.32,4.3100000000000005,170.43,170.32,170.26,170.19,170.13,170.07,169.99,169.91,169.73,27.080000000000002,26.73,26.560000000000002,26.36,26.16,25.98,25.78,25.6,25.22,N/A,N/A +2012,9,24,6,30,102000,100840,99720,83.35000000000001,0,4.75,5.05,5.1000000000000005,5.13,5.14,5.15,5.15,5.15,5.14,172.55,172.52,172.48,172.42000000000002,172.38,172.32,172.27,172.22,172.09,27.07,26.71,26.53,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A +2012,9,24,7,30,102010,100850,99730,83.56,0,4.18,4.45,4.5,4.54,4.5600000000000005,4.57,4.58,4.59,4.6000000000000005,176.53,176.42000000000002,176.37,176.32,176.26,176.21,176.14000000000001,176.07,175.93,27.07,26.71,26.53,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A +2012,9,24,8,30,101990,100830,99710,83.89,0,3.11,3.27,3.31,3.3200000000000003,3.34,3.35,3.35,3.36,3.38,178.98,178.99,178.95000000000002,178.89000000000001,178.84,178.77,178.69,178.61,178.4,27,26.650000000000002,26.47,26.27,26.09,25.900000000000002,25.7,25.52,25.14,N/A,N/A +2012,9,24,9,30,102000,100840,99720,81.97,0,2.92,3.0700000000000003,3.1,3.11,3.12,3.13,3.13,3.13,3.13,167.88,167.95000000000002,168.01,168.07,168.11,168.14000000000001,168.17000000000002,168.19,168.22,27.07,26.72,26.55,26.35,26.16,25.97,25.77,25.580000000000002,25.2,N/A,N/A +2012,9,24,10,30,102000,100840,99720,83.31,0,2.95,3.12,3.16,3.19,3.2,3.22,3.24,3.25,3.2800000000000002,170.17000000000002,170.3,170.39000000000001,170.45000000000002,170.51,170.57,170.62,170.66,170.74,26.990000000000002,26.64,26.46,26.26,26.07,25.88,25.68,25.5,25.11,N/A,N/A +2012,9,24,11,30,102000,100840,99720,81.46000000000001,0,3.0100000000000002,3.18,3.22,3.24,3.2600000000000002,3.27,3.2800000000000002,3.29,3.31,164.22,164.08,163.97,163.87,163.79,163.71,163.64000000000001,163.56,163.45000000000002,27.060000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.75,25.57,25.18,N/A,N/A +2012,9,24,12,30,102010,100850,99730,79.69,0,2.81,2.99,3.02,3.0500000000000003,3.08,3.11,3.13,3.15,3.2,173.8,173.25,173.03,172.79,172.54,172.28,171.98,171.68,171.02,27.11,26.77,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.650000000000002,25.26,N/A,N/A +2012,9,24,13,30,102010,100850,99730,81.09,0,2.81,2.97,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.08,3.09,3.1,162.35,162.28,162.28,162.27,162.26,162.24,162.21,162.18,162.11,27,26.64,26.47,26.27,26.080000000000002,25.88,25.69,25.5,25.12,N/A,N/A +2012,9,24,14,30,102030,100870,99750,79.82000000000001,0,2.02,2.13,2.15,2.16,2.17,2.18,2.19,2.2,2.21,145.73,145.54,145.47,145.41,145.35,145.29,145.24,145.19,145.07,27.03,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A +2012,9,24,15,30,102030,100870,99750,79.64,0,2.05,2.15,2.17,2.18,2.19,2.2,2.21,2.22,2.24,133.74,133.72,133.76,133.81,133.85,133.88,133.92000000000002,133.96,134.04,27.03,26.68,26.51,26.310000000000002,26.12,25.92,25.73,25.54,25.16,N/A,N/A +2012,9,24,16,30,102010,100850,99730,79.37,0,2.29,2.4,2.42,2.44,2.44,2.45,2.45,2.46,2.47,128.43,128.57,128.63,128.69,128.76,128.83,128.88,128.92000000000002,129.04,27.060000000000002,26.7,26.52,26.330000000000002,26.13,25.94,25.75,25.560000000000002,25.18,N/A,N/A +2012,9,24,17,30,101980,100820,99700,78,0,2.82,2.96,2.98,3,3.0100000000000002,3.0100000000000002,3.02,3.02,3.02,127.22,127.54,127.72,127.88000000000001,128.03,128.17000000000002,128.31,128.45,128.72,27.17,26.8,26.63,26.42,26.23,26.04,25.84,25.66,25.27,N/A,N/A +2012,9,24,18,30,101950,100790,99670,77.65,0,3.0300000000000002,3.18,3.21,3.22,3.23,3.23,3.24,3.24,3.24,132.92000000000002,133.09,133.21,133.33,133.44,133.55,133.66,133.76,133.97,27.240000000000002,26.86,26.68,26.48,26.29,26.1,25.900000000000002,25.71,25.330000000000002,N/A,N/A +2012,9,24,19,30,101930,100770,99650,76.87,0,3.6,3.7800000000000002,3.81,3.83,3.84,3.85,3.85,3.85,3.85,136.79,136.91,136.97,137.02,137.08,137.13,137.19,137.25,137.36,27.29,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A +2012,9,24,20,30,101890,100730,99610,76.77,0,4.28,4.5600000000000005,4.62,4.65,4.67,4.68,4.69,4.69,4.69,142.37,142.46,142.52,142.57,142.61,142.65,142.68,142.71,142.79,27.36,26.990000000000002,26.810000000000002,26.61,26.41,26.22,26.02,25.84,25.45,N/A,N/A +2012,9,24,21,30,101850,100700,99580,75.32000000000001,0,3.91,4.12,4.16,4.18,4.19,4.21,4.21,4.22,4.23,147.70000000000002,147.89000000000001,147.96,148.05,148.13,148.21,148.29,148.36,148.52,27.37,27.03,26.85,26.650000000000002,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,9,24,22,30,101840,100690,99570,72.83,0,4.53,4.79,4.8500000000000005,4.88,4.9,4.91,4.92,4.93,4.95,150.51,150.67000000000002,150.72,150.75,150.77,150.79,150.8,150.8,150.81,27.48,27.16,26.98,26.79,26.6,26.42,26.22,26.04,25.66,N/A,N/A +2012,9,24,23,30,101810,100660,99540,71.86,0,5.15,5.5200000000000005,5.58,5.6000000000000005,5.61,5.61,5.6000000000000005,5.6000000000000005,5.57,150.29,150.22,150.24,150.28,150.32,150.37,150.41,150.46,150.58,27.57,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.3,26.11,25.73,N/A,N/A +2012,9,25,0,30,101780,100630,99510,66.19,0,5.45,5.87,5.95,6,6.03,6.0600000000000005,6.08,6.09,6.12,155.14000000000001,154.84,154.58,154.32,154.07,153.83,153.59,153.36,152.9,27.79,27.48,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A +2012,9,25,1,30,101790,100640,99520,73.24,0,5.72,6.16,6.24,6.2700000000000005,6.3,6.3100000000000005,6.3100000000000005,6.3100000000000005,6.29,146.4,146.55,146.70000000000002,146.86,147.01,147.15,147.3,147.45000000000002,147.75,27.52,27.18,27.01,26.810000000000002,26.62,26.43,26.240000000000002,26.05,25.67,N/A,N/A +2012,9,25,2,30,101800,100650,99530,68.03,0,6.57,7.11,7.23,7.28,7.3100000000000005,7.33,7.34,7.34,7.32,152.12,152.3,152.41,152.51,152.6,152.69,152.78,152.87,153.05,27.79,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.95,N/A,N/A +2012,9,25,3,30,101790,100640,99520,69.51,0,6.98,7.59,7.71,7.7700000000000005,7.8100000000000005,7.82,7.83,7.83,7.82,156.01,156.14000000000001,156.19,156.25,156.29,156.33,156.38,156.42000000000002,156.51,27.8,27.48,27.310000000000002,27.11,26.92,26.73,26.53,26.35,25.96,N/A,N/A +2012,9,25,4,30,101770,100620,99500,65.87,0,6.98,7.59,7.74,7.82,7.88,7.930000000000001,7.97,8,8.05,160.73,160.81,160.83,160.83,160.83,160.83,160.82,160.81,160.78,27.91,27.6,27.43,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A +2012,9,25,5,30,101770,100610,99490,65.7,0,7.32,7.95,8.09,8.16,8.22,8.25,8.28,8.3,8.33,161.17000000000002,161.36,161.5,161.64000000000001,161.76,161.89000000000001,162.01,162.12,162.37,27.94,27.63,27.46,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A +2012,9,25,6,30,101760,100610,99490,65.28,0,7.32,8.02,8.19,8.28,8.36,8.41,8.45,8.49,8.55,167.4,167.54,167.61,167.66,167.71,167.76,167.79,167.83,167.91,28.05,27.76,27.6,27.41,27.22,27.03,26.84,26.650000000000002,26.27,N/A,N/A +2012,9,25,7,30,101770,100620,99500,71.39,0,7.5,8.22,8.38,8.46,8.51,8.55,8.57,8.58,8.58,169.41,169.53,169.62,169.72,169.82,169.93,170.03,170.13,170.35,27.830000000000002,27.52,27.36,27.16,26.97,26.78,26.580000000000002,26.39,26.01,N/A,N/A +2012,9,25,8,30,101750,100600,99480,68.11,0,6.3,6.92,7.0600000000000005,7.15,7.22,7.28,7.32,7.36,7.42,180.5,179.88,179.66,179.45000000000002,179.27,179.09,178.93,178.78,178.48,27.990000000000002,27.69,27.52,27.32,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A +2012,9,25,9,30,101750,100600,99480,72.17,0,7,7.66,7.79,7.87,7.930000000000001,7.96,7.99,8.01,8.02,172.70000000000002,172.67000000000002,172.73,172.82,172.9,172.99,173.08,173.16,173.34,27.84,27.53,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.01,N/A,N/A +2012,9,25,10,30,101730,100580,99460,71.22,0,6.45,6.98,7.1000000000000005,7.17,7.21,7.25,7.28,7.3100000000000005,7.3500000000000005,178.1,178.09,177.95000000000002,177.78,177.6,177.42000000000002,177.24,177.06,176.68,27.79,27.48,27.32,27.12,26.94,26.75,26.560000000000002,26.37,25.990000000000002,N/A,N/A +2012,9,25,11,30,101730,100570,99460,74.27,0,6.34,6.94,7.08,7.17,7.23,7.28,7.32,7.3500000000000005,7.390000000000001,172.99,172.57,172.41,172.28,172.18,172.08,172.01,171.94,171.81,27.7,27.37,27.2,27,26.810000000000002,26.62,26.42,26.23,25.84,N/A,N/A +2012,9,25,12,30,101730,100580,99460,76.51,0,6.3100000000000005,6.88,7.0200000000000005,7.1000000000000005,7.17,7.21,7.25,7.28,7.33,167.77,168.05,168.27,168.47,168.65,168.82,168.98,169.13,169.44,27.61,27.28,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.76,N/A,N/A +2012,9,25,13,30,101750,100590,99480,76.19,0,6.19,6.73,6.86,6.94,6.99,7.04,7.07,7.1000000000000005,7.15,171.66,171.47,171.39000000000001,171.32,171.26,171.21,171.17000000000002,171.12,171.05,27.52,27.19,27.02,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.66,N/A,N/A +2012,9,25,14,30,101770,100620,99500,75.72,0,5.95,6.42,6.53,6.58,6.62,6.640000000000001,6.66,6.68,6.7,170.33,170.46,170.49,170.51,170.52,170.54,170.55,170.56,170.57,27.61,27.28,27.11,26.92,26.73,26.54,26.34,26.16,25.78,N/A,N/A +2012,9,25,15,30,101770,100610,99500,75.49,0,5.44,5.83,5.9,5.93,5.95,5.97,5.98,5.98,6,174.33,173.51,173.03,172.52,172.06,171.62,171.17000000000002,170.76,169.91,27.650000000000002,27.32,27.150000000000002,26.96,26.77,26.580000000000002,26.38,26.2,25.82,N/A,N/A +2012,9,25,16,30,101750,100600,99480,76.59,0,6.22,6.65,6.72,6.74,6.74,6.74,6.72,6.7,6.66,158.54,159.20000000000002,159.56,159.9,160.20000000000002,160.47,160.75,161.02,161.53,27.61,27.27,27.1,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.76,N/A,N/A +2012,9,25,17,30,101750,100590,99480,77.32000000000001,0,5.29,5.74,5.84,5.91,5.96,6,6.03,6.05,6.09,163.16,163.15,163.12,163.09,163.05,163.01,162.98,162.94,162.86,27.650000000000002,27.310000000000002,27.14,26.94,26.75,26.560000000000002,26.37,26.18,25.8,N/A,N/A +2012,9,25,18,30,101720,100570,99450,76.7,0,4.89,5.26,5.36,5.42,5.47,5.5,5.53,5.5600000000000005,5.6000000000000005,159.56,160.28,160.55,160.78,160.97,161.14000000000001,161.28,161.41,161.64000000000001,27.72,27.39,27.22,27.02,26.830000000000002,26.64,26.45,26.26,25.88,N/A,N/A +2012,9,25,19,30,101700,100550,99430,73.57000000000001,0,5.94,6.390000000000001,6.48,6.5200000000000005,6.55,6.57,6.58,6.59,6.6000000000000005,158.09,158.16,158.14000000000001,158.1,158.07,158.02,157.98,157.94,157.86,27.79,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,9,25,20,30,101660,100510,99390,74.33,0,5.61,6.07,6.18,6.24,6.3,6.33,6.37,6.390000000000001,6.44,156.42000000000002,156.3,156.20000000000002,156.1,156.01,155.91,155.82,155.73,155.55,27.79,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.95,N/A,N/A +2012,9,25,21,30,101640,100490,99380,75.47,0,6.67,7.24,7.3500000000000005,7.4,7.44,7.45,7.46,7.46,7.46,151.05,150.93,150.85,150.77,150.69,150.62,150.55,150.48,150.36,27.740000000000002,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.900000000000002,N/A,N/A +2012,9,25,22,30,101630,100480,99370,76.21000000000001,0,7.34,7.96,8.08,8.14,8.17,8.18,8.18,8.18,8.15,151.76,151.62,151.51,151.38,151.26,151.15,151.03,150.92000000000002,150.69,27.71,27.39,27.21,27.02,26.830000000000002,26.63,26.44,26.25,25.87,N/A,N/A +2012,9,25,23,30,101600,100450,99330,74.98,0,6.69,7.29,7.44,7.53,7.6000000000000005,7.640000000000001,7.68,7.71,7.76,144.18,144.08,144.08,144.08,144.07,144.07,144.06,144.05,144.03,27.63,27.3,27.13,26.93,26.740000000000002,26.55,26.35,26.16,25.78,N/A,N/A +2012,9,26,0,30,101580,100430,99320,77.11,0,7.34,8,8.17,8.26,8.33,8.38,8.42,8.45,8.49,140.73,140.88,140.99,141.09,141.17000000000002,141.26,141.33,141.41,141.56,27.53,27.19,27.02,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.67,N/A,N/A +2012,9,26,1,30,101580,100430,99320,78.35000000000001,0,8.22,8.94,9.09,9.17,9.22,9.25,9.27,9.27,9.26,141.19,141.39000000000001,141.52,141.65,141.77,141.88,142,142.1,142.32,27.46,27.11,26.93,26.73,26.54,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A +2012,9,26,2,30,101580,100430,99310,77.01,0,8.18,8.89,9.06,9.15,9.21,9.25,9.28,9.3,9.33,140.42000000000002,140.74,140.87,140.97,141.05,141.12,141.17000000000002,141.22,141.29,27.39,27.04,26.87,26.67,26.47,26.28,26.09,25.900000000000002,25.51,N/A,N/A +2012,9,26,3,30,101570,100420,99310,76.39,0,7.92,8.68,8.870000000000001,8.99,9.08,9.15,9.200000000000001,9.25,9.32,143.69,143.71,143.73,143.75,143.77,143.79,143.8,143.83,143.87,27.46,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A +2012,9,26,4,30,101550,100400,99280,79.12,0,8.39,9.16,9.35,9.46,9.540000000000001,9.6,9.64,9.68,9.73,136.43,136.65,136.82,136.98,137.13,137.27,137.4,137.54,137.8,27.330000000000002,26.97,26.8,26.6,26.41,26.21,26.02,25.830000000000002,25.45,N/A,N/A +2012,9,26,5,30,101550,100400,99280,78.3,0,8.17,9.02,9.22,9.35,9.44,9.51,9.56,9.6,9.66,148.03,147.84,147.75,147.68,147.62,147.56,147.5,147.46,147.37,27.47,27.13,26.95,26.75,26.560000000000002,26.36,26.16,25.98,25.59,N/A,N/A +2012,9,26,6,30,101570,100420,99310,77.37,0,8.23,8.950000000000001,9.120000000000001,9.19,9.23,9.25,9.26,9.26,9.24,153.1,153.1,153.06,153.01,152.96,152.91,152.86,152.8,152.70000000000002,27.47,27.14,26.97,26.77,26.580000000000002,26.38,26.19,26,25.62,N/A,N/A +2012,9,26,7,30,101610,100450,99340,77.57000000000001,0,7.2700000000000005,7.96,8.14,8.25,8.33,8.39,8.44,8.48,8.55,143.58,143.91,144.13,144.34,144.54,144.73,144.92000000000002,145.1,145.46,27.53,27.2,27.03,26.82,26.63,26.45,26.25,26.060000000000002,25.68,N/A,N/A +2012,9,26,8,30,101570,100420,99310,79.49,0,7.86,8.59,8.76,8.85,8.91,8.94,8.96,8.98,8.98,154.53,154.96,155.14000000000001,155.3,155.44,155.56,155.68,155.79,155.99,27.41,27.07,26.900000000000002,26.7,26.51,26.32,26.12,25.94,25.55,N/A,N/A +2012,9,26,9,30,101590,100430,99320,76.25,0,6.67,7.25,7.390000000000001,7.47,7.53,7.57,7.6000000000000005,7.63,7.67,151.12,151.29,151.41,151.52,151.63,151.72,151.81,151.89000000000001,152.05,27.43,27.09,26.91,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A +2012,9,26,10,30,101610,100460,99350,77.78,0,7.41,8.05,8.19,8.27,8.33,8.370000000000001,8.39,8.41,8.44,147.22,147.70000000000002,147.92000000000002,148.13,148.31,148.48,148.64000000000001,148.79,149.08,27.38,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.51,N/A,N/A +2012,9,26,11,30,101630,100470,99360,78.59,0,6.97,7.57,7.71,7.79,7.84,7.88,7.9,7.92,7.94,145.53,145.73,145.9,146.08,146.25,146.41,146.57,146.74,147.08,27.28,26.93,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A +2012,9,26,12,30,101610,100460,99340,77.02,0,6.58,7.140000000000001,7.25,7.3100000000000005,7.34,7.3500000000000005,7.36,7.36,7.3500000000000005,162.08,161.66,161.48,161.31,161.17000000000002,161.05,160.93,160.81,160.6,27.560000000000002,27.23,27.060000000000002,26.85,26.67,26.48,26.28,26.09,25.71,N/A,N/A +2012,9,26,13,30,101640,100490,99370,76.63,0,6.72,7.29,7.42,7.48,7.51,7.54,7.55,7.5600000000000005,7.5600000000000005,155.55,155.37,155.27,155.19,155.12,155.05,154.99,154.94,154.85,27.560000000000002,27.240000000000002,27.07,26.88,26.69,26.5,26.310000000000002,26.13,25.75,N/A,N/A +2012,9,26,14,30,101670,100520,99410,76.60000000000001,0,5.8100000000000005,6.2700000000000005,6.37,6.42,6.46,6.49,6.5,6.5200000000000005,6.53,148.58,148.77,148.93,149.09,149.23,149.37,149.51,149.64000000000001,149.91,27.580000000000002,27.25,27.080000000000002,26.89,26.7,26.51,26.310000000000002,26.13,25.75,N/A,N/A +2012,9,26,15,30,101700,100540,99430,77.97,0,7,7.63,7.7700000000000005,7.84,7.890000000000001,7.92,7.94,7.96,7.96,145.77,145.63,145.6,145.58,145.56,145.54,145.52,145.51,145.49,27.560000000000002,27.23,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A +2012,9,26,16,30,101700,100550,99430,77.66,0,5.8500000000000005,6.3100000000000005,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.58,146.07,146.52,146.75,146.96,147.13,147.28,147.42000000000002,147.55,147.78,27.61,27.28,27.11,26.92,26.73,26.53,26.34,26.150000000000002,25.77,N/A,N/A +2012,9,26,17,30,101680,100530,99410,75.02,0,5.21,5.67,5.8,5.9,5.97,6.03,6.08,6.13,6.21,147.38,147.78,148.07,148.33,148.53,148.70000000000002,148.85,148.98,149.22,27.59,27.26,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A +2012,9,26,18,30,101690,100540,99430,74.95,0,6.83,7.42,7.55,7.61,7.66,7.68,7.69,7.7,7.69,146.34,146.43,146.52,146.62,146.70000000000002,146.79,146.88,146.96,147.12,27.77,27.45,27.28,27.07,26.89,26.69,26.5,26.310000000000002,25.92,N/A,N/A +2012,9,26,19,30,101690,100530,99420,74.11,0,6.83,7.42,7.55,7.62,7.67,7.7,7.72,7.74,7.75,146.28,146.23,146.18,146.13,146.08,146.04,146,145.97,145.9,27.68,27.36,27.19,26.990000000000002,26.8,26.61,26.42,26.23,25.85,N/A,N/A +2012,9,26,20,30,101650,100500,99380,71.82000000000001,0,6.83,7.4,7.5200000000000005,7.59,7.63,7.66,7.68,7.69,7.71,146.18,145.8,145.67000000000002,145.54,145.44,145.34,145.24,145.16,145,27.69,27.36,27.19,26.990000000000002,26.810000000000002,26.61,26.42,26.23,25.85,N/A,N/A +2012,9,26,21,30,101660,100500,99390,74.45,0,7.13,7.73,7.88,7.95,8.01,8.040000000000001,8.07,8.09,8.120000000000001,146.92000000000002,146.85,146.72,146.58,146.46,146.34,146.22,146.1,145.85,27.54,27.21,27.04,26.84,26.650000000000002,26.46,26.26,26.080000000000002,25.69,N/A,N/A +2012,9,26,22,30,101650,100500,99380,76.46000000000001,0,6.92,7.51,7.65,7.73,7.78,7.82,7.8500000000000005,7.87,7.9,143.95000000000002,143.73,143.57,143.41,143.27,143.14000000000001,143.01,142.89000000000001,142.66,27.45,27.11,26.94,26.740000000000002,26.55,26.36,26.16,25.97,25.59,N/A,N/A +2012,9,26,23,30,101650,100500,99380,73.2,0,7.32,7.9,8.01,8.05,8.07,8.08,8.07,8.05,8.01,135.5,135.78,135.97,136.15,136.32,136.47,136.62,136.76,137.04,27.46,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.98,25.6,N/A,N/A +2012,9,27,0,30,101660,100510,99390,72.07000000000001,0,7.67,8.290000000000001,8.42,8.47,8.5,8.51,8.51,8.51,8.48,138.84,138.97,139.05,139.13,139.20000000000002,139.25,139.31,139.36,139.45000000000002,27.38,27.03,26.86,26.66,26.47,26.28,26.080000000000002,25.89,25.51,N/A,N/A +2012,9,27,1,30,101650,100500,99380,68.07000000000001,0,6.88,7.46,7.6000000000000005,7.67,7.72,7.7700000000000005,7.8,7.82,7.87,133.84,134.17000000000002,134.39000000000001,134.6,134.78,134.95,135.11,135.27,135.56,27.46,27.13,26.96,26.76,26.57,26.38,26.18,26,25.62,N/A,N/A +2012,9,27,2,30,101680,100520,99400,72.62,0,7.390000000000001,8.01,8.15,8.22,8.27,8.3,8.32,8.34,8.35,130.92000000000002,131.43,131.73,132.03,132.28,132.53,132.77,133,133.43,27.23,26.88,26.7,26.490000000000002,26.3,26.11,25.91,25.72,25.34,N/A,N/A +2012,9,27,3,30,101680,100520,99400,71.05,0,7.09,7.7,7.84,7.91,7.97,8.01,8.03,8.05,8.08,138.28,138.4,138.41,138.41,138.41,138.4,138.39000000000001,138.39000000000001,138.37,27.240000000000002,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.76,25.37,N/A,N/A +2012,9,27,4,30,101700,100540,99430,71.63,0,7.2700000000000005,7.79,7.9,7.94,7.96,7.97,7.97,7.97,7.95,137.49,137.89000000000001,138.19,138.49,138.76,139.02,139.27,139.51,139.98,27.18,26.84,26.66,26.46,26.27,26.080000000000002,25.88,25.69,25.310000000000002,N/A,N/A +2012,9,27,5,30,101700,100550,99430,72.79,0,5.5200000000000005,6,6.11,6.18,6.23,6.2700000000000005,6.3,6.32,6.3500000000000005,143.41,143.20000000000002,143.11,143.04,142.97,142.91,142.85,142.8,142.69,27.21,26.86,26.69,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A +2012,9,27,6,30,101700,100550,99430,75.45,0,6.0600000000000005,6.6000000000000005,6.72,6.79,6.84,6.88,6.91,6.93,6.96,146.43,146.18,146.09,146.03,145.99,145.95000000000002,145.93,145.92000000000002,145.89000000000001,27.21,26.86,26.68,26.48,26.29,26.09,25.900000000000002,25.71,25.32,N/A,N/A +2012,9,27,7,30,101740,100590,99470,73.43,0,5.6000000000000005,6.01,6.1000000000000005,6.15,6.18,6.2,6.21,6.23,6.24,137.89000000000001,138.16,138.31,138.45000000000002,138.58,138.70000000000002,138.81,138.92000000000002,139.12,27.32,26.98,26.810000000000002,26.61,26.42,26.23,26.04,25.85,25.47,N/A,N/A +2012,9,27,8,30,101770,100610,99490,76.02,0,4.46,4.79,4.89,4.95,5.01,5.05,5.1000000000000005,5.14,5.22,135.15,136.11,136.6,137.02,137.37,137.68,137.97,138.22,138.68,27.330000000000002,27.01,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.900000000000002,25.52,N/A,N/A +2012,9,27,9,30,101780,100620,99510,74.78,0,3.85,4.09,4.14,4.17,4.19,4.21,4.22,4.23,4.25,123.37,123.57000000000001,123.69,123.82000000000001,123.92,124.02,124.11,124.2,124.36,27.43,27.11,26.94,26.740000000000002,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A +2012,9,27,10,30,101770,100610,99500,78.10000000000001,0,4.28,4.5200000000000005,4.5600000000000005,4.58,4.59,4.59,4.59,4.6000000000000005,4.6000000000000005,87.88,88.89,89.73,90.62,91.43,92.22,93.02,93.78,95.4,27.38,27.05,26.89,26.69,26.5,26.310000000000002,26.12,25.94,25.560000000000002,N/A,N/A +2012,9,27,11,30,101770,100620,99500,78.24,0,3.9,4.11,4.15,4.17,4.17,4.17,4.17,4.17,4.16,108.94,109.16,109.3,109.43,109.54,109.64,109.73,109.82000000000001,110,27.35,27.03,26.85,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,9,27,12,30,101770,100610,99500,78.49,0,2.88,3.06,3.1,3.13,3.14,3.16,3.17,3.19,3.21,95.02,94.96000000000001,95.10000000000001,95.2,95.3,95.4,95.5,95.60000000000001,95.81,27.36,27.03,26.86,26.67,26.48,26.29,26.1,25.91,25.53,N/A,N/A +2012,9,27,13,30,101770,100610,99500,78.34,0,3.33,3.5300000000000002,3.5700000000000003,3.59,3.6,3.62,3.62,3.63,3.64,97.10000000000001,97.45,97.63,97.8,97.96000000000001,98.12,98.28,98.44,98.76,27.36,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A +2012,9,27,14,30,101790,100630,99520,79.98,0,3.5500000000000003,3.79,3.86,3.9,3.93,3.96,3.99,4.01,4.05,86.42,86.49,86.53,86.55,86.55,86.55,86.53,86.52,86.47,27.330000000000002,26.990000000000002,26.830000000000002,26.63,26.44,26.240000000000002,26.05,25.86,25.48,N/A,N/A +2012,9,27,15,30,101800,100650,99530,82.87,0,4.47,4.75,4.8,4.82,4.84,4.84,4.84,4.84,4.82,80.24,80.4,80.44,80.48,80.5,80.52,80.54,80.57000000000001,80.60000000000001,27.23,26.89,26.71,26.51,26.32,26.13,25.93,25.75,25.36,N/A,N/A +2012,9,27,16,30,101810,100660,99540,83.88,0,6.17,6.66,6.76,6.79,6.8100000000000005,6.8,6.79,6.78,6.72,65.21000000000001,65.27,65.29,65.3,65.32000000000001,65.32000000000001,65.32000000000001,65.31,65.3,27.27,26.92,26.75,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A +2012,9,27,17,30,101760,100610,99490,84.66,0,6.49,6.93,7,7.0200000000000005,7.0200000000000005,7.01,6.99,6.97,6.91,82.11,81.8,81.57000000000001,81.31,81.05,80.8,80.55,80.31,79.8,27.14,26.78,26.61,26.41,26.22,26.02,25.830000000000002,25.650000000000002,25.27,N/A,N/A +2012,9,27,18,30,101730,100570,99460,80.04,0,5.96,6.4,6.5,6.55,6.58,6.6000000000000005,6.61,6.62,6.62,85.55,85.36,85.29,85.21000000000001,85.12,85.04,84.95,84.86,84.69,27.22,26.87,26.7,26.490000000000002,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A +2012,9,27,19,30,101730,100580,99460,85.67,0,6.17,6.58,6.65,6.67,6.68,6.68,6.67,6.65,6.62,105.39,105.16,104.88,104.62,104.37,104.14,103.91,103.7,103.28,27.07,26.71,26.53,26.330000000000002,26.13,25.94,25.75,25.560000000000002,25.18,N/A,N/A +2012,9,27,20,30,101670,100510,99400,82.81,0,4.67,4.94,4.98,4.99,4.99,4.99,4.98,4.96,4.93,115.28,114.88,114.68,114.46000000000001,114.26,114.05,113.84,113.64,113.15,26.91,26.55,26.38,26.18,25.990000000000002,25.8,25.62,25.43,25.07,N/A,N/A +2012,9,27,21,30,101680,100520,99410,81.37,0,4.19,4.43,4.48,4.5,4.5,4.5,4.5,4.5,4.47,100.86,100.97,101.03,101.09,101.14,101.18,101.22,101.26,101.37,27.09,26.740000000000002,26.57,26.37,26.18,25.990000000000002,25.79,25.61,25.23,N/A,N/A +2012,9,27,22,30,101690,100530,99420,79.44,0,3.54,3.73,3.77,3.7800000000000002,3.79,3.79,3.79,3.79,3.7800000000000002,106.98,107.17,107.21000000000001,107.26,107.32000000000001,107.4,107.47,107.54,107.7,27.2,26.86,26.69,26.490000000000002,26.3,26.11,25.91,25.73,25.35,N/A,N/A +2012,9,27,23,30,101650,100500,99380,79.83,0,4.1,4.3500000000000005,4.41,4.44,4.46,4.47,4.48,4.49,4.5,109.68,109.93,110.01,110.12,110.22,110.32000000000001,110.42,110.52,110.73,27.22,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A +2012,9,28,0,30,101620,100470,99360,77.59,0,3.68,3.9,3.95,3.97,3.99,3.99,4,4.01,4.01,108.69,108.72,108.78,108.84,108.89,108.93,108.98,109.02,109.11,27.32,26.990000000000002,26.82,26.62,26.43,26.240000000000002,26.04,25.86,25.48,N/A,N/A +2012,9,28,1,30,101630,100470,99360,84.37,0,4.21,4.46,4.5200000000000005,4.55,4.57,4.58,4.59,4.59,4.59,113.44,113.16,113.10000000000001,113.04,112.98,112.93,112.87,112.8,112.64,26.95,26.6,26.43,26.23,26.04,25.85,25.66,25.47,25.09,N/A,N/A +2012,9,28,2,30,101630,100470,99350,84.28,0,5.0600000000000005,5.4,5.48,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,5.62,111.43,110.99000000000001,110.81,110.62,110.45,110.28,110.10000000000001,109.93,109.54,26.97,26.62,26.45,26.240000000000002,26.05,25.87,25.67,25.490000000000002,25.11,N/A,N/A +2012,9,28,3,30,101630,100470,99360,79.92,0,4.8,5.1000000000000005,5.16,5.18,5.2,5.2,5.21,5.21,5.2,124.8,124.84,124.88000000000001,124.92,124.95,124.97,125,125.01,125.06,27.12,26.78,26.61,26.41,26.22,26.04,25.84,25.66,25.29,N/A,N/A +2012,9,28,4,30,101600,100450,99330,86.48,0,4.44,4.74,4.8100000000000005,4.86,4.89,4.91,4.93,4.95,4.98,130.38,130.36,130.32,130.29,130.25,130.21,130.16,130.12,130.02,26.94,26.59,26.41,26.21,26.02,25.830000000000002,25.64,25.45,25.080000000000002,N/A,N/A +2012,9,28,5,30,101600,100450,99330,84.84,0,4.86,5.18,5.25,5.28,5.29,5.3,5.3,5.3,5.29,124.96000000000001,125.28,125.41,125.51,125.59,125.67,125.74000000000001,125.8,125.93,27.19,26.85,26.67,26.47,26.28,26.09,25.89,25.7,25.310000000000002,N/A,N/A +2012,9,28,6,30,101630,100480,99360,85.13,0,4.68,5,5.07,5.11,5.13,5.14,5.15,5.16,5.16,155.92000000000002,156.05,155.94,155.8,155.66,155.49,155.31,155.13,154.71,27.19,26.86,26.69,26.490000000000002,26.310000000000002,26.12,25.93,25.740000000000002,25.37,N/A,N/A +2012,9,28,7,30,101660,100510,99390,83.82000000000001,0,4.5200000000000005,4.84,4.92,4.98,5.0200000000000005,5.05,5.08,5.11,5.17,159.13,159.28,159.31,159.35,159.39000000000001,159.45000000000002,159.49,159.54,159.63,27.04,26.7,26.53,26.330000000000002,26.14,25.95,25.77,25.580000000000002,25.21,N/A,N/A +2012,9,28,8,30,101630,100480,99360,83.03,0,4.29,4.57,4.64,4.68,4.7,4.72,4.74,4.75,4.7700000000000005,161.78,162.03,162.16,162.29,162.4,162.5,162.6,162.70000000000002,162.91,27.18,26.830000000000002,26.66,26.46,26.27,26.080000000000002,25.89,25.7,25.32,N/A,N/A +2012,9,28,9,30,101640,100490,99370,82.83,0,4.78,5.19,5.3,5.37,5.41,5.45,5.48,5.5,5.54,195.74,195.58,195.49,195.4,195.31,195.23000000000002,195.14000000000001,195.06,194.87,27.34,27,26.830000000000002,26.63,26.44,26.25,26.060000000000002,25.87,25.490000000000002,N/A,N/A +2012,9,28,10,30,101630,100470,99360,82.13,0,4.1,4.41,4.49,4.54,4.57,4.61,4.63,4.65,4.68,200.73000000000002,199.62,199.11,198.63,198.20000000000002,197.81,197.45000000000002,197.12,196.57,27.44,27.1,26.93,26.73,26.54,26.35,26.16,25.97,25.580000000000002,N/A,N/A +2012,9,28,11,30,101630,100480,99370,80.39,9.5,4.42,5,5.2,5.36,5.5,5.62,5.72,5.79,5.88,188.72,189.87,190.55,191.06,191.35,191.5,191.63,191.74,191.87,27.46,27.16,27.01,26.82,26.64,26.46,26.27,26.09,25.71,N/A,N/A +2012,9,28,12,30,101660,100510,99400,77.57000000000001,7.300000000000001,4.96,5.38,5.48,5.54,5.58,5.6000000000000005,5.61,5.62,5.61,207.58,207.64000000000001,207.74,207.86,207.97,208.08,208.22,208.37,208.65,27.66,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.830000000000002,N/A,N/A +2012,9,28,13,30,101650,100500,99380,81.11,0,4.37,4.68,4.76,4.82,4.88,4.94,5.01,5.08,5.22,241.82,237.71,235.19,232.66,230.4,228.20000000000002,226.05,224.01,220.26,27.25,26.95,26.8,26.63,26.47,26.310000000000002,26.14,25.98,25.66,N/A,N/A +2012,9,28,14,30,101650,100500,99390,77.27,0,5,5.43,5.51,5.55,5.57,5.58,5.58,5.58,5.55,212.6,212.84,212.89000000000001,212.94,212.99,213.05,213.12,213.18,213.34,27.78,27.47,27.3,27.1,26.92,26.73,26.53,26.34,25.96,N/A,N/A +2012,9,28,15,30,101640,100490,99360,89.84,0.4,4.57,4.69,4.66,4.59,4.5,4.41,3.72,3,1.6400000000000001,327.04,326.7,326.52,326.25,325.91,325.53000000000003,323.21,320.81,298.79,25.67,25.28,25.11,24.91,24.72,24.54,24.490000000000002,24.5,24.45,N/A,N/A +2012,9,28,16,30,101650,100490,99370,89.48,33,2.21,2.17,2.1,2,1.78,1.51,1.43,1.4000000000000001,1.83,343.62,340.29,337.87,334.54,325.02,313.26,277.73,238.57,216.08,25.73,25.37,25.2,25.04,24.91,24.8,24.78,24.78,24.68,N/A,N/A +2012,9,28,17,30,101640,100480,99350,90.12,15,2.9,2.57,2.18,1.67,1.23,0.88,0.54,0.33,0.44,28.98,30.240000000000002,31.53,33.8,38.25,43.1,64.93,81.58,168.92000000000002,24.650000000000002,24.35,24.32,24.39,24.43,24.45,24.45,24.44,24.36,N/A,N/A +2012,9,28,18,30,101640,100470,99350,88.03,0,4.24,4.14,4,3.8000000000000003,3.6,3.38,3.13,2.9,2.4,93.63,94.67,95.07000000000001,95.37,95.62,95.83,96.44,97.12,101.28,25.37,24.98,24.810000000000002,24.63,24.46,24.3,24.150000000000002,24.01,23.75,N/A,N/A +2012,9,28,19,30,101570,100420,99300,82.67,0,1.92,1.94,1.93,1.92,1.92,1.92,1.99,2.09,3.12,129.68,134.34,137.45000000000002,141.38,145.89000000000001,151.19,159.52,169.11,190.76,26.310000000000002,25.95,25.79,25.6,25.43,25.26,25.11,24.97,24.85,N/A,N/A +2012,9,28,20,30,101520,100370,99250,82.01,0,3.14,3.33,3.38,3.42,3.45,3.49,3.54,3.59,3.77,138.26,139.55,140.31,141.21,142.18,143.29,144.75,146.29,151.08,26.8,26.44,26.27,26.060000000000002,25.88,25.69,25.51,25.330000000000002,24.98,N/A,N/A +2012,9,28,21,30,101490,100340,99220,80.13,0,2.27,2.5100000000000002,2.63,2.73,2.82,2.91,2.99,3.0700000000000003,3.23,155.24,157.47,158.59,159.58,160.43,161.22,161.95000000000002,162.64000000000001,163.95000000000002,27.330000000000002,27,26.830000000000002,26.64,26.45,26.27,26.080000000000002,25.900000000000002,25.53,N/A,N/A +2012,9,28,22,30,101470,100320,99210,76.68,0,3.75,4.01,4.07,4.1,4.13,4.15,4.16,4.17,4.19,187.92000000000002,188.08,188.19,188.29,188.39000000000001,188.47,188.55,188.64000000000001,188.78,27.69,27.37,27.2,27,26.810000000000002,26.62,26.42,26.23,25.85,N/A,N/A +2012,9,28,23,30,101450,100310,99190,75.79,0,3.83,4.11,4.17,4.2,4.23,4.25,4.26,4.2700000000000005,4.29,176.69,176.92000000000002,177.18,177.42000000000002,177.63,177.82,178.01,178.17000000000002,178.49,27.69,27.38,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A +2012,9,29,0,30,101460,100310,99190,77.91,0,3.6,3.79,3.81,3.8000000000000003,3.79,3.7800000000000002,3.7600000000000002,3.74,3.71,157.84,158.35,158.72,159.12,159.48,159.82,160.16,160.49,161.16,27.57,27.25,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A +2012,9,29,1,30,101440,100290,99170,77.99,0,2.7600000000000002,2.91,2.94,2.95,2.96,2.97,2.98,2.99,3,148.48,149.69,150.36,151.06,151.67000000000002,152.25,152.84,153.4,154.53,27.5,27.18,27.02,26.810000000000002,26.63,26.44,26.240000000000002,26.060000000000002,25.67,N/A,N/A +2012,9,29,2,30,101440,100290,99180,82.24,0,3.63,3.71,3.67,3.6,3.5500000000000003,3.49,3.42,3.37,3.25,150.93,152.12,152.86,153.64000000000001,154.37,155.08,155.81,156.51,157.98,27.26,26.93,26.77,26.580000000000002,26.39,26.21,26.02,25.84,25.47,N/A,N/A +2012,9,29,3,30,101440,100290,99180,82.95,0,3.48,3.62,3.63,3.61,3.6,3.5700000000000003,3.5500000000000003,3.52,3.45,136.97,136.96,136.95000000000002,136.93,136.92000000000002,136.9,136.89000000000001,136.88,136.84,27.14,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.67,25.29,N/A,N/A +2012,9,29,4,30,101410,100260,99150,82.22,0,3.34,3.5300000000000002,3.58,3.6,3.62,3.63,3.65,3.66,3.68,147.84,148.16,148.23,148.31,148.38,148.46,148.55,148.64000000000001,148.85,27.2,26.87,26.7,26.5,26.32,26.13,25.94,25.75,25.37,N/A,N/A +2012,9,29,5,30,101410,100260,99150,84.49,5.1000000000000005,4.54,4.82,4.89,4.93,4.95,4.97,4.98,4.99,5,164.18,164.14000000000001,164.13,164.12,164.13,164.14000000000001,164.16,164.19,164.27,27.14,26.8,26.63,26.43,26.25,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A +2012,9,29,6,30,101400,100250,99130,83.52,0,4.3500000000000005,4.62,4.67,4.69,4.7,4.71,4.71,4.71,4.7,174.41,174.31,174.15,173.99,173.84,173.69,173.54,173.4,173.09,27.2,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.72,25.330000000000002,N/A,N/A +2012,9,29,7,30,101390,100240,99130,82.65,0,4.83,5.19,5.2700000000000005,5.32,5.36,5.38,5.4,5.41,5.43,181.51,181.34,181.26,181.19,181.13,181.09,181.04,181,180.93,27.310000000000002,26.96,26.79,26.59,26.400000000000002,26.21,26.01,25.830000000000002,25.44,N/A,N/A +2012,9,29,8,30,101380,100230,99120,81.13,0,6.99,7.65,7.82,7.92,7.99,8.03,8.06,8.09,8.120000000000001,171.6,171.56,171.57,171.61,171.64000000000001,171.68,171.73,171.77,171.86,27.580000000000002,27.26,27.09,26.89,26.71,26.51,26.32,26.13,25.76,N/A,N/A +2012,9,29,9,30,101370,100220,99110,77.2,0,6.49,7.05,7.18,7.25,7.29,7.32,7.34,7.3500000000000005,7.36,181.19,181.36,181.45000000000002,181.52,181.58,181.63,181.68,181.73,181.82,27.77,27.45,27.28,27.080000000000002,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A +2012,9,29,10,30,101350,100200,99090,76.81,0,6.57,7.16,7.29,7.36,7.41,7.45,7.47,7.49,7.5,188.51,188.26,188.15,188.06,187.98,187.9,187.83,187.76,187.64000000000001,27.78,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A +2012,9,29,11,30,101360,100210,99100,73.53,0,6.5200000000000005,7.09,7.22,7.28,7.33,7.3500000000000005,7.37,7.390000000000001,7.4,184.24,184.36,184.32,184.24,184.14000000000001,184.03,183.91,183.79,183.53,27.89,27.59,27.43,27.23,27.04,26.85,26.650000000000002,26.47,26.09,N/A,N/A +2012,9,29,12,30,101350,100210,99090,74.17,0,6.34,6.890000000000001,7.01,7.09,7.140000000000001,7.17,7.19,7.21,7.24,186.77,186.75,186.72,186.67000000000002,186.63,186.58,186.52,186.47,186.36,27.93,27.62,27.46,27.26,27.07,26.89,26.69,26.5,26.12,N/A,N/A +2012,9,29,13,30,101360,100210,99100,72.37,0,5.97,6.53,6.67,6.75,6.8100000000000005,6.8500000000000005,6.890000000000001,6.92,6.96,187.15,186.84,186.72,186.59,186.48,186.36,186.24,186.13,185.89000000000001,28.01,27.72,27.55,27.36,27.17,26.98,26.78,26.6,26.21,N/A,N/A +2012,9,29,14,30,101360,100210,99100,71.06,0,5.5200000000000005,5.99,6.09,6.16,6.2,6.23,6.26,6.28,6.32,176.38,176.77,177.06,177.36,177.65,177.93,178.24,178.52,179.15,28.09,27.8,27.64,27.45,27.26,27.080000000000002,26.89,26.71,26.330000000000002,N/A,N/A +2012,9,29,15,30,101340,100190,99080,69.81,0,5.17,5.61,5.7,5.76,5.8,5.82,5.84,5.86,5.89,172.16,172.94,173.39000000000001,173.79,174.16,174.5,174.83,175.14000000000001,175.73,28.19,27.91,27.75,27.560000000000002,27.38,27.19,27,26.810000000000002,26.44,N/A,N/A +2012,9,29,16,30,101290,100140,99030,66.92,0,5.2,5.6000000000000005,5.68,5.72,5.74,5.75,5.76,5.7700000000000005,5.7700000000000005,167.8,168.06,168.34,168.66,168.96,169.27,169.6,169.91,170.56,28.310000000000002,28.05,27.900000000000002,27.71,27.53,27.34,27.16,26.97,26.6,N/A,N/A +2012,9,29,17,30,101220,100070,98960,66.78,0,5.68,6.16,6.2700000000000005,6.34,6.38,6.41,6.44,6.46,6.49,157.37,157.72,157.94,158.16,158.34,158.51,158.68,158.84,159.14000000000001,28.36,28.1,27.95,27.75,27.57,27.39,27.2,27.01,26.64,N/A,N/A +2012,9,29,18,30,101160,100020,98910,67.85,0,5.3500000000000005,5.76,5.8500000000000005,5.89,5.92,5.94,5.96,5.97,5.99,155.33,155.69,155.99,156.3,156.58,156.86,157.14000000000001,157.4,157.92000000000002,28.330000000000002,28.060000000000002,27.900000000000002,27.71,27.53,27.34,27.150000000000002,26.97,26.59,N/A,N/A +2012,9,29,19,30,101110,99970,98860,70.25,0,5.3500000000000005,5.78,5.87,5.91,5.94,5.96,5.98,5.99,6.01,150.46,150.33,150.3,150.33,150.36,150.42000000000002,150.5,150.58,150.81,28.26,27.990000000000002,27.830000000000002,27.64,27.46,27.27,27.080000000000002,26.900000000000002,26.53,N/A,N/A +2012,9,29,20,30,101060,99920,98810,72.81,0,5.74,6.23,6.34,6.4,6.43,6.46,6.47,6.49,6.5,156.03,156.27,156.41,156.54,156.67000000000002,156.79,156.92000000000002,157.03,157.26,28.240000000000002,27.96,27.8,27.61,27.42,27.23,27.04,26.85,26.48,N/A,N/A +2012,9,29,21,30,101050,99900,98780,89.29,91.9,11.620000000000001,12.59,12.790000000000001,12.88,12.91,12.92,12.9,12.88,12.81,155.47,156.76,157.64000000000001,158.6,159.6,160.59,161.78,162.93,165.76,24.86,24.38,24.2,24.04,23.89,23.75,23.61,23.48,23.2,N/A,N/A +2012,9,29,22,30,101040,99890,98770,87.22,2.9000000000000004,6.8500000000000005,7.33,7.44,7.5,7.53,7.55,7.5600000000000005,7.5600000000000005,7.55,161.41,161.86,162.03,162.19,162.32,162.45000000000002,162.58,162.70000000000002,162.95000000000002,25.18,24.72,24.53,24.32,24.13,23.94,23.740000000000002,23.56,23.19,N/A,N/A +2012,9,29,23,30,100990,99830,98710,83.83,20.5,7.390000000000001,7.94,8.06,8.120000000000001,8.16,8.18,8.19,8.19,8.19,143.43,143.73,143.73,143.72,143.71,143.69,143.67000000000002,143.66,143.6,25.150000000000002,24.69,24.5,24.29,24.09,23.900000000000002,23.71,23.53,23.150000000000002,N/A,N/A +2012,9,30,0,30,100930,99780,98660,91.15,15,7.54,8.3,8.49,8.620000000000001,8.73,8.82,8.91,8.99,9.18,147.84,148.79,149.05,149.26,149.47,149.67000000000002,149.89000000000001,150.08,150.63,24.61,24.13,23.93,23.73,23.54,23.36,23.17,23,22.650000000000002,N/A,N/A +2012,9,30,1,30,100880,99730,98610,88.81,0,8.27,8.89,9.040000000000001,9.1,9.14,9.16,9.17,9.17,9.17,142.47,142.58,142.72,142.87,143.02,143.18,143.36,143.54,143.99,25.400000000000002,24.94,24.740000000000002,24.53,24.34,24.150000000000002,23.95,23.77,23.400000000000002,N/A,N/A +2012,9,30,2,30,100880,99720,98610,90.79,0,9.39,10.11,10.28,10.34,10.38,10.39,10.4,10.41,10.41,138.77,138.99,139.23,139.5,139.78,140.07,140.42000000000002,140.76,141.68,25.29,24.8,24.6,24.39,24.2,24.01,23.82,23.64,23.28,N/A,N/A +2012,9,30,3,30,100840,99690,98580,88.79,0.7000000000000001,9.61,10.51,10.76,10.91,11.02,11.09,11.15,11.200000000000001,11.27,143.56,143.74,143.91,144.08,144.25,144.41,144.58,144.74,145.09,26.29,25.86,25.67,25.45,25.26,25.07,24.87,24.68,24.3,N/A,N/A +2012,9,30,4,30,100750,99610,98500,88.48,0.7000000000000001,11.99,13.200000000000001,13.5,13.66,13.76,13.82,13.85,13.870000000000001,13.870000000000001,163.49,163.78,163.84,163.93,164,164.08,164.17000000000002,164.26,164.47,27.05,26.66,26.47,26.26,26.07,25.87,25.68,25.490000000000002,25.11,N/A,N/A +2012,9,30,5,30,100690,99550,98450,92.17,0,10.38,11.33,11.58,11.71,11.8,11.86,11.9,11.93,11.98,166.95000000000002,167.51,167.85,168.18,168.49,168.79,169.11,169.43,170.17000000000002,27,26.62,26.45,26.25,26.07,25.89,25.71,25.54,25.19,N/A,N/A +2012,9,30,6,30,100550,99420,98320,86.05,7.300000000000001,10.9,12.200000000000001,12.49,12.68,12.82,12.92,13,13.07,13.19,174.5,175.19,175.57,175.93,176.28,176.59,176.92000000000002,177.23,177.88,27.73,27.41,27.240000000000002,27.04,26.85,26.67,26.48,26.3,25.92,N/A,N/A +2012,9,30,7,30,100610,99480,98380,75.18,0,11.38,12.71,13.1,13.36,13.57,13.72,13.84,13.94,14.09,210.86,210.99,211.04,211.11,211.16,211.22,211.27,211.33,211.43,28.740000000000002,28.560000000000002,28.43,28.26,28.09,27.92,27.740000000000002,27.57,27.21,N/A,N/A +2012,9,30,8,30,100600,99460,98360,72.2,0,11.16,12.49,12.89,13.17,13.39,13.55,13.68,13.8,13.98,213.86,213.99,214.03,214.08,214.11,214.14000000000001,214.17000000000002,214.19,214.22,28.8,28.62,28.490000000000002,28.310000000000002,28.14,27.96,27.78,27.6,27.23,N/A,N/A +2012,9,30,9,30,100550,99420,98320,73.55,0,11.52,12.86,13.26,13.52,13.71,13.86,13.97,14.07,14.21,219.67000000000002,219.74,219.79,219.83,219.87,219.9,219.93,219.95000000000002,220,28.71,28.52,28.38,28.2,28.03,27.85,27.67,27.490000000000002,27.12,N/A,N/A +2012,9,30,10,30,100470,99340,98240,79.4,0,11.08,12.4,12.8,13.05,13.24,13.370000000000001,13.47,13.55,13.66,210.65,210.71,210.81,210.89000000000001,210.95000000000002,210.99,211.03,211.06,211.1,28.400000000000002,28.17,28.02,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.71,N/A,N/A +2012,9,30,11,30,100470,99320,98210,86.58,1.8,9.99,10.950000000000001,11.23,11.4,11.53,11.620000000000001,11.700000000000001,11.76,11.86,271.19,270.32,269.87,269.41,269.01,268.62,268.26,267.92,267.24,26.080000000000002,25.66,25.47,25.26,25.07,24.87,24.68,24.5,24.13,N/A,N/A +2012,9,30,12,30,100430,99280,98170,83.46000000000001,0,9.51,10.33,10.540000000000001,10.65,10.72,10.77,10.81,10.83,10.86,268.87,268.87,268.81,268.73,268.66,268.59000000000003,268.5,268.41,268.21,25.69,25.240000000000002,25.04,24.830000000000002,24.63,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,9,30,13,30,100430,99280,98170,80.53,0,9.09,9.88,10.08,10.19,10.26,10.31,10.35,10.38,10.42,265.29,265.19,265.06,264.94,264.82,264.71,264.6,264.49,264.26,25.79,25.34,25.150000000000002,24.94,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A +2012,9,30,14,30,100430,99280,98160,93.52,0,9.44,10.14,10.3,10.370000000000001,10.41,10.43,10.43,10.43,10.42,273.66,273.41,273.24,273.06,272.9,272.73,272.56,272.39,272,24.01,23.47,23.25,23.03,22.830000000000002,22.64,22.44,22.26,21.88,N/A,N/A +2012,9,30,15,30,100450,99300,98180,89.3,0,8.84,9.49,9.64,9.700000000000001,9.74,9.76,9.76,9.76,9.73,281.35,281.34000000000003,281.31,281.24,281.14,281.03000000000003,280.87,280.71,280.23,24.29,23.77,23.56,23.34,23.150000000000002,22.95,22.76,22.580000000000002,22.22,N/A,N/A +2012,9,30,16,30,100460,99310,98180,89.64,0.4,8.08,8.63,8.75,8.81,8.84,8.86,8.870000000000001,8.870000000000001,8.870000000000001,280.03000000000003,280.35,280.53000000000003,280.7,280.85,280.99,281.15000000000003,281.29,281.61,23.34,22.79,22.580000000000002,22.36,22.150000000000002,21.96,21.76,21.580000000000002,21.2,N/A,N/A +2012,9,30,17,30,100470,99320,98190,88.95,5.5,9.93,10.700000000000001,10.88,10.950000000000001,11,11.02,11.03,11.040000000000001,11.02,286.86,287.15000000000003,287.33,287.49,287.65000000000003,287.8,287.95,288.1,288.42,23.31,22.72,22.490000000000002,22.26,22.06,21.86,21.66,21.48,21.1,N/A,N/A +2012,9,30,18,30,100490,99330,98200,87.48,0.7000000000000001,10.92,11.84,12.07,12.17,12.25,12.290000000000001,12.32,12.34,12.34,299.18,299.57,299.81,300.05,300.27,300.49,300.71,300.91,301.38,23.07,22.44,22.21,21.98,21.77,21.57,21.36,21.18,20.79,N/A,N/A +2012,9,30,19,30,100500,99340,98220,86.49,0.4,11.84,12.88,13.15,13.290000000000001,13.39,13.450000000000001,13.49,13.52,13.540000000000001,300.19,300.63,300.87,301.1,301.29,301.49,301.67,301.84000000000003,302.2,23.18,22.54,22.3,22.07,21.85,21.650000000000002,21.44,21.25,20.86,N/A,N/A +2012,9,30,20,30,100510,99350,98220,88.83,1.1,12.99,14.17,14.47,14.64,14.76,14.83,14.870000000000001,14.91,14.94,325.86,325.62,325.43,325.22,325.02,324.83,324.63,324.44,324.04,22.55,21.85,21.59,21.34,21.12,20.91,20.7,20.51,20.11,N/A,N/A +2012,9,30,21,30,100550,99390,98250,86.76,1.1,14.84,16.15,16.45,16.57,16.62,16.64,16.62,16.6,16.5,320.73,321.07,321.25,321.40000000000003,321.53000000000003,321.65000000000003,321.76,321.86,322.07,21.67,20.88,20.6,20.35,20.13,19.92,19.71,19.52,19.13,N/A,N/A +2012,9,30,22,30,100560,99400,98260,87.58,1.8,13.14,14.35,14.65,14.82,14.93,15.01,15.06,15.1,15.15,330.47,330.52,330.57,330.62,330.66,330.7,330.74,330.78000000000003,330.86,21.27,20.51,20.240000000000002,20,19.77,19.57,19.36,19.16,18.77,N/A,N/A +2012,9,30,23,30,100610,99450,98310,87,1.5,12.42,13.5,13.780000000000001,13.92,14.01,14.08,14.11,14.14,14.16,331.35,331.55,331.7,331.84000000000003,331.97,332.09000000000003,332.21,332.32,332.57,21.23,20.47,20.21,19.96,19.740000000000002,19.53,19.32,19.12,18.73,N/A,N/A +2012,10,1,0,30,100630,99460,98320,85.96000000000001,1.5,12.44,13.52,13.8,13.950000000000001,14.05,14.120000000000001,14.16,14.200000000000001,14.23,341.8,341.6,341.46,341.31,341.17,341.05,340.91,340.79,340.54,21.13,20.38,20.11,19.87,19.650000000000002,19.44,19.23,19.04,18.64,N/A,N/A +2012,10,1,1,30,100680,99500,98360,86.60000000000001,1.1,12.6,13.68,13.94,14.07,14.15,14.21,14.24,14.26,14.27,337.52,337.54,337.54,337.52,337.5,337.46,337.43,337.41,337.35,20.51,19.71,19.44,19.19,18.97,18.76,18.55,18.35,17.96,N/A,N/A +2012,10,1,2,30,100710,99530,98390,87,0.5,12.790000000000001,13.870000000000001,14.13,14.26,14.35,14.4,14.43,14.450000000000001,14.46,336.07,336.11,336.12,336.14,336.15000000000003,336.16,336.17,336.17,336.19,19.79,18.95,18.67,18.41,18.18,17.97,17.75,17.55,17.150000000000002,N/A,N/A +2012,10,1,3,30,100750,99570,98420,87.09,0.4,12.46,13.51,13.77,13.91,14.01,14.07,14.11,14.14,14.17,343.1,343.21,343.25,343.28000000000003,343.31,343.34000000000003,343.37,343.40000000000003,343.44,19.31,18.46,18.17,17.91,17.68,17.46,17.240000000000002,17.04,16.64,N/A,N/A +2012,10,1,4,30,100760,99580,98430,84.05,0,12.09,13.07,13.32,13.46,13.56,13.61,13.66,13.69,13.72,349.07,348.96,348.86,348.78000000000003,348.7,348.62,348.55,348.48,348.35,19.330000000000002,18.5,18.21,17.96,17.73,17.51,17.3,17.1,16.69,N/A,N/A +2012,10,1,5,30,100760,99580,98430,87.16,0,11.450000000000001,12.35,12.57,12.67,12.74,12.790000000000001,12.81,12.82,12.84,341.64,341.8,341.84000000000003,341.88,341.90000000000003,341.93,341.95,341.97,342,19.34,18.53,18.240000000000002,17.98,17.75,17.54,17.32,17.13,16.72,N/A,N/A +2012,10,1,6,30,100830,99640,98490,84.95,0,12.030000000000001,13,13.23,13.34,13.41,13.450000000000001,13.47,13.49,13.49,348.21,348.11,348.03000000000003,347.96,347.89,347.82,347.75,347.69,347.55,18.900000000000002,18.07,17.78,17.53,17.3,17.09,16.87,16.67,16.27,N/A,N/A +2012,10,1,7,30,100840,99660,98510,85.06,0,11.82,12.77,13.02,13.15,13.24,13.290000000000001,13.33,13.36,13.38,346.84000000000003,346.78000000000003,346.75,346.72,346.7,346.68,346.65000000000003,346.63,346.59000000000003,19.06,18.240000000000002,17.95,17.7,17.47,17.26,17.04,16.84,16.43,N/A,N/A +2012,10,1,8,30,100850,99670,98520,83,0,11.67,12.620000000000001,12.86,12.99,13.07,13.120000000000001,13.16,13.19,13.22,349.37,349.48,349.54,349.57,349.6,349.62,349.64,349.67,349.71,19.27,18.46,18.18,17.92,17.7,17.48,17.27,17.07,16.67,N/A,N/A +2012,10,1,9,30,100860,99680,98530,81.99,0,11.47,12.43,12.67,12.8,12.89,12.96,13.01,13.05,13.11,347.95,348.09000000000003,348.2,348.28000000000003,348.37,348.44,348.52,348.59000000000003,348.73,19.54,18.75,18.490000000000002,18.240000000000002,18.01,17.8,17.580000000000002,17.39,16.990000000000002,N/A,N/A +2012,10,1,10,30,100900,99720,98570,80.06,0,11.25,12.19,12.42,12.55,12.64,12.71,12.76,12.8,12.85,351.08,351.11,351.12,351.12,351.12,351.12,351.11,351.11,351.11,19.81,19.04,18.77,18.53,18.31,18.1,17.89,17.69,17.29,N/A,N/A +2012,10,1,11,30,100920,99740,98590,77.59,0,12.14,13.22,13.51,13.69,13.81,13.91,13.98,14.040000000000001,14.14,343.16,343.17,343.18,343.18,343.18,343.19,343.19,343.2,343.21,20.240000000000002,19.47,19.2,18.95,18.72,18.51,18.3,18.11,17.7,N/A,N/A +2012,10,1,12,30,100950,99770,98630,74.47,0,12.24,13.3,13.58,13.72,13.82,13.89,13.94,13.98,14.030000000000001,346.89,346.68,346.56,346.45,346.34000000000003,346.25,346.15000000000003,346.06,345.88,20.66,19.900000000000002,19.64,19.39,19.17,18.96,18.75,18.55,18.150000000000002,N/A,N/A +2012,10,1,13,30,100950,99770,98630,77.14,0,10.43,11.26,11.47,11.58,11.67,11.73,11.78,11.81,11.870000000000001,337.05,337.14,337.2,337.27,337.34000000000003,337.41,337.49,337.56,337.75,20.82,20.12,19.87,19.63,19.41,19.21,19,18.81,18.41,N/A,N/A +2012,10,1,14,30,100990,99820,98680,76.57000000000001,0,8.98,9.63,9.78,9.86,9.91,9.94,9.96,9.98,10,331.12,331.59000000000003,331.91,332.21,332.48,332.74,333.02,333.27,333.81,21.04,20.39,20.150000000000002,19.92,19.7,19.5,19.29,19.1,18.71,N/A,N/A +2012,10,1,15,30,100980,99810,98670,73.75,0,8.55,9.19,9.34,9.43,9.5,9.55,9.58,9.620000000000001,9.67,330.03000000000003,330.39,330.62,330.84000000000003,331.05,331.24,331.43,331.61,331.98,21.61,21,20.76,20.54,20.32,20.13,19.92,19.73,19.34,N/A,N/A +2012,10,1,16,30,100970,99790,98660,68.61,0,9.14,9.870000000000001,10.06,10.17,10.25,10.3,10.35,10.4,10.47,329.99,329.96,329.95,329.95,329.95,329.95,329.95,329.95,329.96,22.39,21.79,21.56,21.330000000000002,21.12,20.92,20.71,20.52,20.12,N/A,N/A +2012,10,1,17,30,100950,99780,98640,68.49,0,9.49,10.27,10.47,10.58,10.66,10.72,10.77,10.81,10.88,319.24,319.58,319.8,320.01,320.2,320.38,320.56,320.73,321.08,22.94,22.36,22.13,21.91,21.7,21.5,21.29,21.11,20.71,N/A,N/A +2012,10,1,18,30,100940,99770,98640,64.26,0,9.34,10.14,10.35,10.47,10.56,10.63,10.68,10.73,10.8,318.96,319.14,319.25,319.35,319.45,319.53000000000003,319.61,319.7,319.86,23.82,23.29,23.07,22.85,22.650000000000002,22.45,22.240000000000002,22.05,21.66,N/A,N/A +2012,10,1,19,30,100920,99760,98630,60.96,0,9.66,10.540000000000001,10.78,10.92,11.03,11.120000000000001,11.19,11.24,11.33,321.14,321.25,321.29,321.32,321.35,321.37,321.39,321.41,321.46,24.69,24.21,24,23.78,23.580000000000002,23.38,23.18,22.990000000000002,22.6,N/A,N/A +2012,10,1,20,30,100900,99740,98620,57.88,0,9.72,10.61,10.86,11.01,11.120000000000001,11.200000000000001,11.27,11.33,11.41,323.59000000000003,323.47,323.39,323.31,323.25,323.18,323.12,323.07,322.95,25.37,24.92,24.73,24.52,24.32,24.12,23.92,23.73,23.34,N/A,N/A +2012,10,1,21,30,100880,99720,98600,54.57,0,9.66,10.57,10.81,10.950000000000001,11.06,11.13,11.19,11.24,11.32,326.85,326.69,326.57,326.47,326.36,326.26,326.16,326.06,325.87,25.990000000000002,25.59,25.400000000000002,25.19,24.990000000000002,24.8,24.6,24.41,24.02,N/A,N/A +2012,10,1,22,30,100860,99710,98590,53.33,0,9.52,10.42,10.64,10.77,10.86,10.93,10.98,11.02,11.08,328.92,328.62,328.42,328.21,328.04,327.86,327.68,327.52,327.2,26.39,26.02,25.84,25.64,25.44,25.25,25.05,24.86,24.47,N/A,N/A +2012,10,1,23,30,100870,99720,98600,50.97,0,9.72,10.65,10.870000000000001,11,11.08,11.14,11.19,11.22,11.26,331.85,331.51,331.31,331.12,330.94,330.78000000000003,330.62,330.47,330.16,26.61,26.25,26.080000000000002,25.87,25.68,25.490000000000002,25.29,25.1,24.72,N/A,N/A +2012,10,2,0,30,100900,99750,98630,54.5,0,8.08,8.78,8.950000000000001,9.06,9.14,9.200000000000001,9.24,9.28,9.34,329.89,330.26,330.37,330.46,330.53000000000003,330.59000000000003,330.64,330.69,330.75,26.5,26.14,25.96,25.76,25.560000000000002,25.37,25.17,24.98,24.59,N/A,N/A +2012,10,2,1,30,100920,99760,98640,52.980000000000004,0,8.02,8.73,8.91,9.02,9.09,9.15,9.200000000000001,9.24,9.3,335.85,335.75,335.66,335.56,335.47,335.38,335.3,335.22,335.06,26.48,26.12,25.95,25.740000000000002,25.55,25.35,25.150000000000002,24.97,24.580000000000002,N/A,N/A +2012,10,2,2,30,100940,99790,98670,51.71,0,7.84,8.57,8.76,8.88,8.98,9.05,9.11,9.16,9.24,335.43,335.35,335.3,335.26,335.23,335.2,335.17,335.14,335.1,26.64,26.29,26.12,25.91,25.73,25.53,25.330000000000002,25.150000000000002,24.76,N/A,N/A +2012,10,2,3,30,100940,99790,98670,51.2,0,7.63,8.33,8.52,8.64,8.73,8.8,8.85,8.91,8.99,328.18,328.46,328.66,328.86,329.05,329.23,329.41,329.57,329.91,26.77,26.44,26.27,26.07,25.88,25.69,25.490000000000002,25.310000000000002,24.92,N/A,N/A +2012,10,2,4,30,100960,99810,98690,55.89,0,6.66,7.17,7.28,7.34,7.38,7.41,7.43,7.45,7.46,317.08,317.40000000000003,317.62,317.83,318.02,318.2,318.39,318.56,318.93,26.54,26.19,26.02,25.810000000000002,25.62,25.43,25.240000000000002,25.05,24.67,N/A,N/A +2012,10,2,5,30,100970,99820,98700,58.11,0,6.5200000000000005,6.97,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.15,7.15,7.17,304.72,305.56,306.16,306.75,307.31,307.84000000000003,308.40000000000003,308.92,310.09000000000003,26.13,25.76,25.59,25.39,25.21,25.02,24.830000000000002,24.66,24.3,N/A,N/A +2012,10,2,6,30,101020,99860,98740,58.33,0,5.88,6.28,6.36,6.4,6.43,6.45,6.47,6.49,6.54,310.87,311.73,312.27,312.85,313.42,314,314.62,315.21,316.61,25.72,25.36,25.19,25,24.82,24.64,24.45,24.28,23.93,N/A,N/A +2012,10,2,7,30,101040,99880,98760,58.84,0,6.72,7.19,7.28,7.32,7.36,7.38,7.4,7.42,7.49,311.49,312.58,313.28000000000003,314.03000000000003,314.75,315.47,316.26,317,318.77,25.52,25.150000000000002,24.98,24.79,24.61,24.43,24.25,24.080000000000002,23.740000000000002,N/A,N/A +2012,10,2,8,30,101060,99900,98770,62.84,0,6.65,7.13,7.24,7.3,7.3500000000000005,7.390000000000001,7.43,7.46,7.58,312.78000000000003,313.8,314.44,315.1,315.74,316.38,317.08,317.75,319.38,25,24.61,24.43,24.240000000000002,24.05,23.88,23.7,23.53,23.2,N/A,N/A +2012,10,2,9,30,101050,99890,98760,62.31,0,7.11,7.61,7.72,7.76,7.79,7.8100000000000005,7.82,7.82,7.83,322.18,322.64,322.92,323.21,323.49,323.76,324.07,324.36,325.07,25.17,24.77,24.59,24.39,24.2,24.01,23.82,23.650000000000002,23.29,N/A,N/A +2012,10,2,10,30,101090,99930,98800,62.43,0,6.96,7.44,7.53,7.57,7.58,7.59,7.58,7.58,7.55,328.79,329.16,329.39,329.62,329.83,330.05,330.28000000000003,330.48,330.97,25.11,24.7,24.52,24.310000000000002,24.12,23.93,23.740000000000002,23.56,23.19,N/A,N/A +2012,10,2,11,30,101120,99960,98840,59.550000000000004,0,6.53,6.96,7.03,7.0600000000000005,7.07,7.07,7.0600000000000005,7.05,7.0200000000000005,338.97,338.8,338.69,338.58,338.48,338.40000000000003,338.31,338.24,338.08,25.01,24.61,24.43,24.22,24.03,23.85,23.650000000000002,23.47,23.1,N/A,N/A +2012,10,2,12,30,101140,99980,98850,61.730000000000004,0,5.5600000000000005,5.86,5.9,5.91,5.91,5.89,5.87,5.8500000000000005,5.8,342.24,341.98,341.81,341.62,341.45,341.29,341.11,340.95,340.56,24.59,24.17,23.990000000000002,23.78,23.59,23.41,23.21,23.03,22.66,N/A,N/A +2012,10,2,13,30,101190,100030,98900,66.16,0,5.95,6.2700000000000005,6.32,6.32,6.3100000000000005,6.3,6.2700000000000005,6.25,6.19,340.7,340.42,340.21,339.99,339.79,339.59000000000003,339.38,339.18,338.75,24.11,23.67,23.48,23.27,23.07,22.88,22.69,22.5,22.12,N/A,N/A +2012,10,2,14,30,101230,100060,98930,68.56,0,4.96,5.18,5.2,5.2,5.19,5.16,5.14,5.11,5.04,343.77,343.63,343.53000000000003,343.42,343.29,343.17,343.04,342.91,342.56,23.740000000000002,23.3,23.1,22.900000000000002,22.71,22.52,22.330000000000002,22.150000000000002,21.78,N/A,N/A +2012,10,2,15,30,101250,100080,98950,64.79,0,4.26,4.43,4.43,4.41,4.38,4.3500000000000005,4.32,4.28,4.2,355.35,354.98,354.76,354.52,354.29,354.07,353.81,353.58,353,23.89,23.47,23.28,23.080000000000002,22.88,22.69,22.5,22.32,21.94,N/A,N/A +2012,10,2,16,30,101260,100100,98960,61.33,0,4.11,4.28,4.3,4.3,4.29,4.28,4.26,4.24,4.2,354.73,354.83,354.91,354.98,355.04,355.1,355.16,355.21,355.31,24.14,23.72,23.53,23.330000000000002,23.14,22.95,22.76,22.57,22.19,N/A,N/A +2012,10,2,17,30,101280,100110,98980,60.27,0,4.03,4.21,4.22,4.21,4.21,4.19,4.17,4.16,4.12,344.62,344.93,345.04,345.15000000000003,345.24,345.33,345.42,345.51,345.67,24.43,24.02,23.84,23.63,23.44,23.25,23.05,22.87,22.48,N/A,N/A +2012,10,2,18,30,101280,100110,98990,60.89,0,3.73,3.93,3.97,3.99,4,4.01,4.01,4.0200000000000005,4.03,344.18,343.6,343.3,343.01,342.75,342.5,342.25,342.01,341.51,24.76,24.37,24.19,23.990000000000002,23.79,23.6,23.41,23.22,22.84,N/A,N/A +2012,10,2,19,30,101280,100120,98990,57.2,0,3.7800000000000002,3.99,4.04,4.07,4.08,4.1,4.11,4.12,4.14,327.7,328.14,328.44,328.72,328.96,329.19,329.42,329.64,330.09000000000003,25.26,24.88,24.7,24.5,24.310000000000002,24.12,23.92,23.73,23.35,N/A,N/A +2012,10,2,20,30,101250,100090,98960,55.51,0,4.08,4.32,4.37,4.4,4.42,4.44,4.45,4.46,4.49,333.42,334.08,334.47,334.84000000000003,335.18,335.51,335.83,336.14,336.78000000000003,25.59,25.240000000000002,25.060000000000002,24.86,24.67,24.48,24.28,24.1,23.72,N/A,N/A +2012,10,2,21,30,101240,100080,98960,56.02,0,3.16,3.37,3.42,3.46,3.5,3.5300000000000002,3.56,3.59,3.64,333.98,334.89,335.42,335.91,336.36,336.79,337.22,337.61,338.43,25.79,25.45,25.27,25.07,24.88,24.7,24.5,24.32,23.93,N/A,N/A +2012,10,2,22,30,101250,100090,98960,51.550000000000004,0,2.4,2.58,2.64,2.69,2.74,2.7800000000000002,2.82,2.86,2.94,333.74,333.89,333.96,334.02,334.07,334.12,334.16,334.2,334.25,26.07,25.740000000000002,25.57,25.37,25.18,24.990000000000002,24.79,24.61,24.22,N/A,N/A +2012,10,2,23,30,101250,100090,98970,50.72,0,3.04,3.2,3.23,3.24,3.25,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.27,326.79,327.24,327.5,327.75,327.97,328.17,328.36,328.53000000000003,328.89,26.39,26.080000000000002,25.91,25.72,25.53,25.34,25.150000000000002,24.96,24.580000000000002,N/A,N/A +2012,10,3,0,30,101280,100120,99000,49.29,0,2.44,2.59,2.63,2.65,2.67,2.69,2.71,2.72,2.75,345.3,345.73,345.95,346.16,346.35,346.52,346.68,346.83,347.12,26.44,26.13,25.96,25.76,25.57,25.39,25.19,25.01,24.62,N/A,N/A +2012,10,3,1,30,101320,100160,99040,51.45,0,3.9,4.04,4.03,3.99,3.95,3.91,3.87,3.83,3.73,332.28000000000003,332.49,332.62,332.73,332.84000000000003,332.93,333.04,333.14,333.37,26.09,25.76,25.59,25.400000000000002,25.21,25.02,24.830000000000002,24.650000000000002,24.26,N/A,N/A +2012,10,3,2,30,101370,100210,99080,50.15,0,3.81,3.93,3.91,3.88,3.85,3.8200000000000003,3.79,3.7600000000000002,3.71,305.61,308.25,309.82,311.45,312.96,314.41,315.90000000000003,317.28000000000003,320.13,26.14,25.82,25.650000000000002,25.46,25.27,25.080000000000002,24.89,24.71,24.330000000000002,N/A,N/A +2012,10,3,3,30,101400,100240,99110,47.980000000000004,0,3.45,3.5700000000000003,3.56,3.5300000000000002,3.5,3.47,3.43,3.4,3.33,16.34,16.79,17.07,17.34,17.59,17.830000000000002,18.06,18.27,18.740000000000002,26.12,25.79,25.62,25.42,25.23,25.04,24.84,24.650000000000002,24.27,N/A,N/A +2012,10,3,4,30,101410,100250,99120,47.81,0,3.33,3.44,3.43,3.4,3.38,3.36,3.33,3.31,3.25,23.26,24.01,24.52,25.02,25.490000000000002,25.93,26.38,26.79,27.650000000000002,25.95,25.61,25.43,25.23,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A +2012,10,3,5,30,101420,100260,99140,49.38,0,3,3.08,3.0700000000000003,3.04,3.0100000000000002,2.99,2.96,2.93,2.87,45.47,46.35,46.84,47.31,47.74,48.14,48.54,48.910000000000004,49.660000000000004,25.82,25.48,25.3,25.11,24.91,24.72,24.53,24.34,23.95,N/A,N/A +2012,10,3,6,30,101450,100280,99160,50.51,0,2.47,2.5300000000000002,2.52,2.5,2.48,2.46,2.44,2.41,2.37,62.65,62.980000000000004,63.160000000000004,63.34,63.51,63.67,63.84,64,64.34,25.73,25.400000000000002,25.22,25.03,24.830000000000002,24.650000000000002,24.44,24.26,23.87,N/A,N/A +2012,10,3,7,30,101480,100310,99190,53.21,0,1.77,1.82,1.82,1.82,1.81,1.8,1.79,1.79,1.77,58.44,59.82,60.77,61.690000000000005,62.54,63.36,64.19,64.94,66.51,25.59,25.26,25.080000000000002,24.89,24.69,24.5,24.3,24.12,23.73,N/A,N/A +2012,10,3,8,30,101480,100310,99190,55.65,0,1.58,1.6,1.59,1.57,1.56,1.54,1.53,1.51,1.48,70.29,70.83,71.17,71.5,71.81,72.12,72.45,72.75,73.42,25.48,25.14,24.97,24.77,24.57,24.39,24.18,24,23.61,N/A,N/A +2012,10,3,9,30,101500,100330,99200,55.92,0,1.52,1.53,1.5,1.47,1.45,1.42,1.3900000000000001,1.37,1.33,75.04,76.66,77.55,78.43,79.24,80,80.79,81.51,83,25.45,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.97,23.580000000000002,N/A,N/A +2012,10,3,10,30,101500,100330,99210,57.07,0,1.1,1.1,1.07,1.05,1.03,1.01,0.99,0.97,0.93,91.43,93.02,93.88,94.81,95.69,96.55,97.48,98.36,100.29,25.37,25.04,24.86,24.66,24.47,24.28,24.080000000000002,23.89,23.5,N/A,N/A +2012,10,3,11,30,101530,100370,99240,58.08,0,1.23,1.23,1.2,1.17,1.1500000000000001,1.1300000000000001,1.1,1.08,1.03,100.41,101.61,102.32000000000001,103.09,103.84,104.58,105.35000000000001,106.05,107.7,25.330000000000002,24.990000000000002,24.810000000000002,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A +2012,10,3,12,30,101540,100380,99250,58.79,0,0.62,0.68,0.7000000000000001,0.73,0.75,0.77,0.78,0.8,0.8300000000000001,155.37,156.82,157.4,157.89000000000001,158.37,158.86,159.32,159.75,160.67000000000002,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A +2012,10,3,13,30,101590,100430,99300,60.370000000000005,0,1.46,1.36,1.27,1.17,1.09,1.02,0.9500000000000001,0.88,0.75,324.87,325.49,325.89,326.41,326.94,327.46,328.1,328.7,330.17,25.240000000000002,24.89,24.72,24.52,24.330000000000002,24.14,23.94,23.75,23.37,N/A,N/A +2012,10,3,14,30,101620,100450,99320,60.83,0,1.93,1.85,1.78,1.69,1.61,1.54,1.46,1.3900000000000001,1.24,319.16,319.29,319.48,319.71,319.97,320.26,320.63,320.98,321.88,25.11,24.76,24.580000000000002,24.39,24.19,24,23.81,23.63,23.240000000000002,N/A,N/A +2012,10,3,15,30,101650,100480,99350,61.370000000000005,0,0.56,0.49,0.45,0.4,0.36,0.33,0.29,0.26,0.2,323.27,324.74,326.06,327.94,330.29,332.87,337.06,340.98,355.8,25.17,24.82,24.650000000000002,24.45,24.25,24.07,23.87,23.68,23.3,N/A,N/A +2012,10,3,16,30,101650,100480,99350,62.04,0,0.6,0.5700000000000001,0.55,0.53,0.52,0.51,0.5,0.49,0.49,4.86,12.72,17.490000000000002,22.490000000000002,27.2,31.78,36.56,41,50.14,25.26,24.91,24.73,24.54,24.34,24.150000000000002,23.96,23.77,23.38,N/A,N/A +2012,10,3,17,30,101650,100490,99360,62.07,0,0.79,0.8200000000000001,0.8300000000000001,0.8300000000000001,0.84,0.84,0.84,0.85,0.86,45.87,50.7,53.5,56.2,58.730000000000004,61.18,63.660000000000004,65.96000000000001,70.74,25.37,25.02,24.84,24.64,24.45,24.26,24.060000000000002,23.88,23.490000000000002,N/A,N/A +2012,10,3,18,30,101640,100480,99350,64.47,0,1.75,1.68,1.6,1.54,1.47,1.42,1.3800000000000001,1.33,1.26,68.28,72.23,74.69,77.43,80.04,82.57000000000001,85.3,87.83,93.38,25.38,25.03,24.85,24.650000000000002,24.46,24.28,24.080000000000002,23.89,23.51,N/A,N/A +2012,10,3,19,30,101660,100490,99370,61.690000000000005,0,1.31,1.42,1.46,1.5,1.53,1.56,1.6,1.6300000000000001,1.68,140.22,144.66,146.98,148.96,150.58,151.96,153.19,154.3,156.21,25.650000000000002,25.3,25.12,24.92,24.72,24.54,24.34,24.150000000000002,23.76,N/A,N/A +2012,10,3,20,30,101660,100500,99370,61.09,0,2.16,2.27,2.3000000000000003,2.32,2.34,2.35,2.37,2.37,2.4,151.78,152.17000000000002,152.5,152.85,153.19,153.52,153.85,154.16,154.85,25.73,25.38,25.2,25,24.8,24.61,24.41,24.23,23.84,N/A,N/A +2012,10,3,21,30,101650,100490,99360,63,0,2.74,2.86,2.88,2.88,2.89,2.89,2.89,2.89,2.89,145.41,146.46,147.12,147.76,148.34,148.87,149.41,149.9,150.88,25.73,25.39,25.21,25.01,24.82,24.63,24.43,24.25,23.85,N/A,N/A +2012,10,3,22,30,101660,100500,99370,64.24,0,3.0100000000000002,3.22,3.27,3.3000000000000003,3.33,3.36,3.38,3.4,3.43,154.59,154.65,154.78,154.9,155.02,155.14000000000001,155.26,155.36,155.6,25.78,25.44,25.27,25.07,24.87,24.68,24.490000000000002,24.3,23.91,N/A,N/A +2012,10,3,23,30,101660,100500,99370,63.92,0,3.93,4.14,4.17,4.18,4.18,4.18,4.18,4.17,4.16,161.76,161.9,162,162.1,162.20000000000002,162.29,162.38,162.45000000000002,162.64000000000001,25.84,25.51,25.330000000000002,25.14,24.94,24.75,24.560000000000002,24.37,23.98,N/A,N/A +2012,10,4,0,30,101670,100510,99380,66.28,0,3.72,3.96,4.01,4.04,4.07,4.08,4.1,4.11,4.14,150.97,151.75,152.29,152.81,153.26,153.69,154.11,154.51,155.3,25.77,25.43,25.25,25.05,24.86,24.67,24.47,24.28,23.900000000000002,N/A,N/A +2012,10,4,1,30,101700,100530,99410,66.98,0,4.43,4.71,4.76,4.79,4.8,4.82,4.82,4.83,4.83,152.42000000000002,153.19,153.67000000000002,154.15,154.58,154.98,155.37,155.74,156.5,25.77,25.44,25.26,25.060000000000002,24.87,24.68,24.48,24.29,23.91,N/A,N/A +2012,10,4,2,30,101720,100560,99430,64.15,0,4.21,4.49,4.55,4.59,4.62,4.64,4.66,4.67,4.69,169.26,169.55,169.56,169.54,169.5,169.46,169.41,169.36,169.24,26.01,25.68,25.51,25.3,25.12,24.92,24.72,24.54,24.150000000000002,N/A,N/A +2012,10,4,3,30,101740,100580,99450,59.09,0,4.53,4.82,4.88,4.91,4.93,4.95,4.96,4.97,4.98,176.08,175.41,175.02,174.64000000000001,174.31,174,173.69,173.42000000000002,172.88,26.13,25.810000000000002,25.64,25.44,25.25,25.060000000000002,24.86,24.68,24.29,N/A,N/A +2012,10,4,4,30,101740,100580,99450,62.57,0,4.46,4.79,4.87,4.92,4.95,4.97,5,5.01,5.04,165.52,166.04,166.18,166.27,166.33,166.36,166.37,166.38,166.36,26.05,25.73,25.55,25.35,25.16,24.97,24.77,24.59,24.2,N/A,N/A +2012,10,4,5,30,101770,100600,99480,59.01,0,4.91,5.24,5.29,5.3100000000000005,5.32,5.32,5.32,5.3100000000000005,5.3,161.45000000000002,161.82,162.05,162.29,162.5,162.70000000000002,162.9,163.1,163.49,26.13,25.810000000000002,25.64,25.44,25.25,25.060000000000002,24.86,24.68,24.29,N/A,N/A +2012,10,4,6,30,101800,100630,99510,60.03,0,4.67,5.0200000000000005,5.1000000000000005,5.15,5.19,5.22,5.24,5.26,5.29,164.65,164.86,164.94,165.02,165.08,165.13,165.17000000000002,165.22,165.3,26.080000000000002,25.76,25.59,25.39,25.2,25.01,24.810000000000002,24.63,24.240000000000002,N/A,N/A +2012,10,4,7,30,101840,100680,99550,63,0,4.94,5.29,5.3500000000000005,5.39,5.41,5.42,5.43,5.44,5.44,173.45000000000002,173.36,173.29,173.19,173.11,173.03,172.95000000000002,172.88,172.73,26.01,25.68,25.51,25.310000000000002,25.12,24.93,24.73,24.55,24.16,N/A,N/A +2012,10,4,8,30,101860,100690,99570,67.77,0,5.5600000000000005,5.95,6.0200000000000005,6.05,6.07,6.08,6.08,6.08,6.0600000000000005,159.58,160.31,160.72,161.12,161.47,161.8,162.12,162.42000000000002,163,25.900000000000002,25.57,25.39,25.19,25,24.810000000000002,24.61,24.43,24.04,N/A,N/A +2012,10,4,9,30,101880,100710,99590,62.85,0,5.43,5.7700000000000005,5.83,5.84,5.8500000000000005,5.84,5.84,5.83,5.8,173.35,173.18,173.12,173.05,173,172.95000000000002,172.9,172.86,172.8,26.04,25.71,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A +2012,10,4,10,30,101920,100750,99620,64.72,0,5.22,5.63,5.72,5.7700000000000005,5.8100000000000005,5.84,5.87,5.89,5.92,163.1,163.78,164.16,164.51,164.83,165.13,165.43,165.70000000000002,166.26,26.080000000000002,25.76,25.59,25.39,25.2,25.01,24.82,24.63,24.240000000000002,N/A,N/A +2012,10,4,11,30,101930,100770,99640,67.1,0,5.45,5.8500000000000005,5.93,5.98,6.01,6.03,6.05,6.0600000000000005,6.08,160.8,160.83,160.88,160.93,160.97,161.02,161.06,161.11,161.21,26.03,25.7,25.53,25.330000000000002,25.14,24.95,24.75,24.57,24.18,N/A,N/A +2012,10,4,12,30,101980,100810,99680,67.86,0,5.55,6,6.1000000000000005,6.15,6.19,6.22,6.24,6.25,6.2700000000000005,148.56,148.9,149.18,149.45000000000002,149.69,149.92000000000002,150.15,150.36,150.8,26.04,25.71,25.53,25.330000000000002,25.14,24.95,24.75,24.57,24.18,N/A,N/A +2012,10,4,13,30,102010,100850,99720,68.71000000000001,0,5.34,5.74,5.82,5.86,5.88,5.9,5.91,5.92,5.92,157.11,157.14000000000001,157.08,156.99,156.89000000000001,156.79,156.67000000000002,156.56,156.32,26.03,25.69,25.52,25.32,25.13,24.94,24.75,24.560000000000002,24.17,N/A,N/A +2012,10,4,14,30,102060,100890,99760,69.86,0,5.5600000000000005,6,6.09,6.140000000000001,6.18,6.2,6.22,6.23,6.25,151.43,151.82,152,152.15,152.28,152.39000000000001,152.49,152.58,152.73,26.05,25.72,25.55,25.35,25.150000000000002,24.97,24.77,24.580000000000002,24.2,N/A,N/A +2012,10,4,15,30,102070,100900,99770,69.03,0,5.8,6.25,6.3500000000000005,6.4,6.44,6.46,6.48,6.5,6.5200000000000005,152.59,152.41,152.28,152.13,152,151.86,151.73,151.62,151.37,26.07,25.73,25.560000000000002,25.36,25.17,24.98,24.78,24.6,24.21,N/A,N/A +2012,10,4,16,30,102080,100910,99780,70.49,0,5.58,6.01,6.1000000000000005,6.15,6.18,6.2,6.21,6.22,6.23,148.92000000000002,149.12,149.24,149.35,149.46,149.57,149.69,149.79,150.04,26.01,25.67,25.5,25.3,25.11,24.92,24.72,24.54,24.150000000000002,N/A,N/A +2012,10,4,17,30,102080,100910,99780,71.79,0,5.25,5.67,5.76,5.82,5.87,5.91,5.93,5.96,6,145.77,146.4,146.8,147.18,147.52,147.84,148.16,148.44,149.02,26.02,25.68,25.5,25.3,25.11,24.92,24.72,24.54,24.14,N/A,N/A +2012,10,4,18,30,102070,100900,99770,70.29,0,5.59,6.03,6.13,6.18,6.22,6.25,6.2700000000000005,6.29,6.32,146.97,147.9,148.41,148.9,149.34,149.74,150.14000000000001,150.5,151.24,26.07,25.72,25.55,25.35,25.16,24.97,24.77,24.59,24.2,N/A,N/A +2012,10,4,19,30,102080,100920,99790,68.97,0,4.74,5.0600000000000005,5.13,5.17,5.2,5.22,5.23,5.24,5.26,160.99,160.61,160.41,160.22,160.06,159.91,159.76,159.63,159.35,26.19,25.86,25.69,25.490000000000002,25.3,25.11,24.91,24.72,24.34,N/A,N/A +2012,10,4,20,30,102040,100880,99750,73.43,0,5.42,5.8,5.87,5.9,5.92,5.93,5.94,5.94,5.93,153.36,154.08,154.48,154.87,155.21,155.54,155.86,156.16,156.75,26.13,25.78,25.61,25.41,25.22,25.03,24.830000000000002,24.64,24.25,N/A,N/A +2012,10,4,21,30,102040,100870,99740,71.99,0,4.46,4.76,4.82,4.8500000000000005,4.86,4.87,4.88,4.89,4.89,154.47,154.36,154.31,154.26,154.21,154.17000000000002,154.13,154.08,154,26.17,25.84,25.67,25.47,25.28,25.09,24.900000000000002,24.71,24.32,N/A,N/A +2012,10,4,22,30,102030,100870,99740,74.01,0,4.14,4.43,4.51,4.55,4.59,4.62,4.64,4.67,4.71,148.38,148.78,149.03,149.25,149.46,149.65,149.84,150.02,150.37,26.060000000000002,25.740000000000002,25.560000000000002,25.37,25.18,24.990000000000002,24.79,24.6,24.22,N/A,N/A +2012,10,4,23,30,102010,100850,99720,71.95,0,4.01,4.2700000000000005,4.32,4.34,4.3500000000000005,4.36,4.36,4.36,4.36,147.91,148.14000000000001,148.33,148.5,148.66,148.82,148.98,149.13,149.46,26.11,25.79,25.62,25.42,25.23,25.04,24.84,24.66,24.27,N/A,N/A +2012,10,5,0,30,101990,100830,99700,74.01,0,4.04,4.3,4.3500000000000005,4.39,4.4,4.42,4.43,4.44,4.45,144.93,145.38,145.68,145.97,146.23,146.48,146.72,146.94,147.4,25.98,25.64,25.47,25.27,25.080000000000002,24.89,24.69,24.51,24.12,N/A,N/A +2012,10,5,1,30,101990,100830,99700,75.69,0,4.19,4.44,4.48,4.5,4.51,4.51,4.51,4.51,4.5,142.84,143.07,143.23,143.38,143.52,143.65,143.78,143.9,144.16,25.87,25.53,25.36,25.16,24.97,24.78,24.580000000000002,24.39,24.01,N/A,N/A +2012,10,5,2,30,101990,100830,99700,72.36,0,4.19,4.46,4.51,4.54,4.55,4.57,4.57,4.58,4.58,148.91,148.81,148.8,148.79,148.78,148.77,148.77,148.77,148.78,25.92,25.59,25.42,25.22,25.03,24.84,24.64,24.46,24.07,N/A,N/A +2012,10,5,3,30,101960,100800,99670,76.52,0,4.3500000000000005,4.63,4.69,4.72,4.74,4.76,4.7700000000000005,4.78,4.79,143.27,143.63,143.85,144.06,144.26,144.45000000000002,144.64000000000001,144.83,145.22,25.7,25.35,25.18,24.97,24.78,24.59,24.39,24.21,23.82,N/A,N/A +2012,10,5,4,30,101950,100780,99650,75.86,0,4.62,4.93,5,5.04,5.0600000000000005,5.08,5.09,5.1000000000000005,5.11,146.26,146.31,146.36,146.41,146.46,146.5,146.56,146.6,146.70000000000002,25.68,25.330000000000002,25.16,24.96,24.76,24.57,24.38,24.19,23.81,N/A,N/A +2012,10,5,5,30,101930,100770,99640,74.97,0,4.26,4.55,4.61,4.64,4.67,4.69,4.7,4.72,4.74,149.11,149.06,149.03,148.99,148.96,148.92000000000002,148.88,148.84,148.76,25.650000000000002,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A +2012,10,5,6,30,101930,100760,99630,73.33,0,4.49,4.79,4.86,4.89,4.92,4.94,4.96,4.97,4.99,149.17000000000002,149.12,149.13,149.14000000000001,149.15,149.16,149.17000000000002,149.17000000000002,149.17000000000002,25.67,25.32,25.14,24.94,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A +2012,10,5,7,30,101940,100780,99650,79.78,0,4.89,5.21,5.2700000000000005,5.3,5.32,5.33,5.33,5.33,5.33,146.85,147.02,147.15,147.28,147.41,147.52,147.64000000000001,147.75,148,25.44,25.080000000000002,24.900000000000002,24.7,24.5,24.310000000000002,24.11,23.93,23.54,N/A,N/A +2012,10,5,8,30,101950,100780,99660,79.55,0,5.73,6.12,6.17,6.19,6.19,6.17,6.15,6.13,6.0600000000000005,148.83,149.05,149.19,149.33,149.45000000000002,149.56,149.68,149.79,150.01,25.5,25.13,24.95,24.75,24.55,24.36,24.16,23.97,23.580000000000002,N/A,N/A +2012,10,5,9,30,101940,100770,99640,78.19,0,4.01,4.3,4.38,4.43,4.48,4.5200000000000005,4.55,4.58,4.63,151.9,151.96,151.97,151.98,151.98,151.98,151.97,151.96,151.94,25.5,25.14,24.97,24.76,24.57,24.38,24.18,23.990000000000002,23.6,N/A,N/A +2012,10,5,10,30,101940,100780,99650,74.58,0,4.76,5.08,5.14,5.18,5.2,5.22,5.23,5.24,5.24,160.65,160.25,160.03,159.82,159.62,159.43,159.25,159.08,158.71,25.61,25.26,25.080000000000002,24.88,24.68,24.490000000000002,24.3,24.11,23.72,N/A,N/A +2012,10,5,11,30,101950,100780,99650,76.52,0,4.01,4.26,4.3100000000000005,4.34,4.36,4.37,4.38,4.39,4.4,162.87,162.37,162.06,161.76,161.48,161.22,160.95000000000002,160.70000000000002,160.21,25.59,25.23,25.060000000000002,24.86,24.66,24.47,24.27,24.080000000000002,23.7,N/A,N/A +2012,10,5,12,30,101940,100780,99650,73.9,0,3.41,3.63,3.69,3.72,3.75,3.7800000000000002,3.8000000000000003,3.8200000000000003,3.87,146.52,146.77,146.99,147.23,147.46,147.68,147.92000000000002,148.15,148.62,25.61,25.27,25.09,24.89,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A +2012,10,5,13,30,101940,100780,99650,75.06,0,3.38,3.56,3.6,3.63,3.64,3.65,3.66,3.67,3.67,157.28,157.47,157.57,157.65,157.71,157.77,157.81,157.85,157.89000000000001,25.68,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.19,23.8,N/A,N/A +2012,10,5,14,30,101950,100790,99660,74.86,0,3.12,3.31,3.35,3.38,3.4,3.42,3.43,3.45,3.47,161.95000000000002,162.01,162.02,162.02,162.02,162.01,162,161.98,161.93,25.560000000000002,25.22,25.04,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A +2012,10,5,15,30,101960,100800,99670,76.13,0,2.8000000000000003,2.94,2.97,2.98,2.99,3.0100000000000002,3.0100000000000002,3.02,3.0300000000000002,148.07,148.74,149.11,149.45000000000002,149.75,150.03,150.3,150.55,151.05,25.580000000000002,25.23,25.05,24.85,24.66,24.47,24.27,24.09,23.7,N/A,N/A +2012,10,5,16,30,101920,100760,99630,75.8,0,2.37,2.5100000000000002,2.5500000000000003,2.58,2.61,2.63,2.65,2.67,2.7,167.41,166.58,166.04,165.52,165.07,164.66,164.25,163.87,163.14000000000001,25.71,25.36,25.18,24.98,24.79,24.6,24.400000000000002,24.21,23.82,N/A,N/A +2012,10,5,17,30,101890,100730,99600,74.14,0,3.5100000000000002,3.65,3.65,3.63,3.62,3.6,3.5700000000000003,3.5500000000000003,3.5,154.20000000000002,154.43,154.62,154.84,155.04,155.24,155.46,155.66,156.08,25.77,25.42,25.240000000000002,25.04,24.85,24.66,24.46,24.28,23.89,N/A,N/A +2012,10,5,18,30,101840,100670,99550,75.76,0,2.43,2.5100000000000002,2.5100000000000002,2.5,2.49,2.48,2.47,2.46,2.44,137.34,138.51,139.31,140.11,140.87,141.59,142.34,143.04,144.52,25.66,25.3,25.12,24.93,24.73,24.54,24.34,24.16,23.77,N/A,N/A +2012,10,5,19,30,101820,100660,99530,76.04,0,3.0300000000000002,3.15,3.15,3.14,3.13,3.12,3.1,3.09,3.0500000000000003,152.09,152.51,152.73,152.95000000000002,153.15,153.34,153.53,153.71,154.08,25.69,25.330000000000002,25.150000000000002,24.95,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A +2012,10,5,20,30,101760,100600,99470,75.44,0,2.22,2.3000000000000003,2.3000000000000003,2.3000000000000003,2.29,2.29,2.2800000000000002,2.27,2.25,149.81,150.58,150.99,151.41,151.82,152.22,152.65,153.05,153.95000000000002,25.62,25.26,25.080000000000002,24.88,24.68,24.5,24.3,24.11,23.72,N/A,N/A +2012,10,5,21,30,101730,100570,99440,74.17,0,2.72,2.86,2.89,2.9,2.91,2.92,2.93,2.93,2.94,149.78,150.46,150.86,151.26,151.62,151.98,152.34,152.67000000000002,153.38,25.69,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A +2012,10,5,22,30,101700,100530,99410,74.47,0,2.84,2.95,2.96,2.96,2.96,2.95,2.95,2.94,2.92,147.26,147.59,147.77,147.95000000000002,148.13,148.3,148.49,148.67000000000002,149.07,25.64,25.3,25.12,24.92,24.73,24.54,24.34,24.16,23.77,N/A,N/A +2012,10,5,23,30,101670,100510,99380,73.17,0,2.86,3,3.02,3.02,3.0300000000000002,3.0300000000000002,3.02,3.02,3.0100000000000002,153.86,153.69,153.61,153.54,153.48,153.43,153.39000000000001,153.36,153.3,25.64,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A +2012,10,6,0,30,101640,100480,99350,73.72,0,3.2800000000000002,3.45,3.47,3.49,3.49,3.49,3.49,3.49,3.49,156.6,156.88,156.98,157.09,157.19,157.28,157.37,157.47,157.65,25.61,25.26,25.080000000000002,24.89,24.69,24.5,24.310000000000002,24.12,23.73,N/A,N/A +2012,10,6,1,30,101640,100480,99360,72.82000000000001,0,4.04,4.2700000000000005,4.3100000000000005,4.32,4.33,4.34,4.34,4.34,4.33,155.01,155,155.01,155.02,155.03,155.03,155.04,155.05,155.07,25.63,25.28,25.11,24.900000000000002,24.71,24.52,24.32,24.14,23.75,N/A,N/A +2012,10,6,2,30,101630,100470,99340,73.26,0,4.1,4.3100000000000005,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,4.3,159.31,159.45000000000002,159.56,159.66,159.77,159.88,160,160.11,160.34,25.57,25.22,25.04,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A +2012,10,6,3,30,101610,100450,99320,76.93,0,4.0200000000000005,4.25,4.29,4.3100000000000005,4.33,4.34,4.34,4.3500000000000005,4.3500000000000005,153.18,153.68,154.03,154.36,154.66,154.94,155.22,155.48,156.02,25.42,25.07,24.89,24.69,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A +2012,10,6,4,30,101590,100430,99310,76.83,0,4.05,4.28,4.3100000000000005,4.32,4.33,4.33,4.32,4.3100000000000005,4.29,158,158.22,158.39000000000001,158.56,158.72,158.88,159.04,159.17000000000002,159.49,25.39,25.03,24.85,24.650000000000002,24.45,24.26,24.07,23.88,23.490000000000002,N/A,N/A +2012,10,6,5,30,101600,100430,99310,77.19,0,4.03,4.28,4.32,4.3500000000000005,4.37,4.38,4.38,4.39,4.39,159.85,159.74,159.71,159.69,159.67000000000002,159.66,159.65,159.65,159.63,25.37,25.01,24.830000000000002,24.63,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A +2012,10,6,6,30,101600,100440,99310,74.48,0,3.48,3.69,3.75,3.7800000000000002,3.81,3.83,3.85,3.87,3.91,163.3,163.20000000000002,163.11,163.02,162.94,162.86,162.78,162.70000000000002,162.55,25.44,25.080000000000002,24.91,24.71,24.51,24.32,24.13,23.94,23.56,N/A,N/A +2012,10,6,7,30,101610,100450,99330,77.53,0,3.3000000000000003,3.46,3.49,3.5,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5,157.78,158.13,158.38,158.66,158.93,159.19,159.45000000000002,159.70000000000002,160.24,25.330000000000002,24.98,24.8,24.6,24.400000000000002,24.21,24.01,23.830000000000002,23.44,N/A,N/A +2012,10,6,8,30,101600,100440,99320,77.44,0,3.38,3.5100000000000002,3.5100000000000002,3.49,3.48,3.45,3.43,3.41,3.36,155.18,155.29,155.31,155.31,155.32,155.33,155.34,155.35,155.37,25.240000000000002,24.88,24.7,24.5,24.310000000000002,24.12,23.92,23.73,23.34,N/A,N/A +2012,10,6,9,30,101620,100460,99330,79.48,0,2.67,2.83,2.87,2.9,2.92,2.94,2.95,2.97,2.99,158.74,158.99,159.14000000000001,159.27,159.38,159.48,159.58,159.67000000000002,159.84,25.23,24.88,24.7,24.5,24.3,24.11,23.91,23.72,23.34,N/A,N/A +2012,10,6,10,30,101630,100470,99340,79.41,0,2.49,2.58,2.58,2.58,2.57,2.56,2.5500000000000003,2.5500000000000003,2.52,155.37,156.75,157.6,158.44,159.22,159.97,160.72,161.43,162.94,25.2,24.85,24.67,24.47,24.28,24.09,23.89,23.71,23.32,N/A,N/A +2012,10,6,11,30,101650,100490,99360,78.25,0,2.16,2.24,2.24,2.23,2.22,2.22,2.2,2.19,2.18,182.79,181.18,180.08,178.98,177.99,177.06,176.11,175.22,173.42000000000002,25.22,24.87,24.69,24.490000000000002,24.3,24.11,23.91,23.72,23.34,N/A,N/A +2012,10,6,12,30,101650,100480,99360,73.35000000000001,0,1.12,1.17,1.19,1.2,1.21,1.23,1.24,1.25,1.27,168.49,170.04,170.99,171.86,172.64000000000001,173.37,174.06,174.69,176,25.26,24.92,24.75,24.55,24.36,24.17,23.97,23.78,23.400000000000002,N/A,N/A +2012,10,6,13,30,101670,100500,99370,76.94,0,0.8200000000000001,0.8200000000000001,0.81,0.8,0.79,0.78,0.77,0.75,0.73,64.11,64.72,65.29,65.92,66.51,67.08,67.72,68.31,69.63,25.14,24.79,24.61,24.41,24.22,24.03,23.830000000000002,23.64,23.25,N/A,N/A +2012,10,6,14,30,101690,100530,99400,76.85000000000001,0,0.89,0.91,0.91,0.91,0.91,0.91,0.91,0.91,0.9,81.52,79.53,78.43,77.42,76.56,75.78,75.04,74.35000000000001,73.07000000000001,25.12,24.77,24.59,24.39,24.2,24.01,23.81,23.63,23.240000000000002,N/A,N/A +2012,10,6,15,30,101680,100510,99390,77.26,0,0.87,0.91,0.92,0.92,0.93,0.93,0.9400000000000001,0.9500000000000001,0.96,32.96,33.67,34.12,34.58,34.95,35.29,35.65,36.01,36.6,25.14,24.79,24.61,24.41,24.22,24.03,23.830000000000002,23.64,23.25,N/A,N/A +2012,10,6,16,30,101660,100490,99370,77.59,0,1.94,1.96,1.93,1.9000000000000001,1.8800000000000001,1.85,1.83,1.8,1.75,32.52,33.33,33.71,34.12,34.49,34.83,35.21,35.56,36.27,25.13,24.77,24.59,24.39,24.19,24,23.8,23.62,23.23,N/A,N/A +2012,10,6,17,30,101640,100480,99350,77.21000000000001,0,1.81,1.84,1.82,1.8,1.79,1.77,1.75,1.73,1.68,53.64,53.53,53.45,53.35,53.24,53.13,53.01,52.88,52.550000000000004,25.14,24.77,24.59,24.39,24.19,24,23.8,23.62,23.23,N/A,N/A +2012,10,6,18,30,101610,100440,99320,79.57000000000001,0,1.98,2.05,2.06,2.06,2.06,2.05,2.05,2.04,2.04,54.620000000000005,54.97,55.18,55.370000000000005,55.57,55.76,55.94,56.1,56.46,25.13,24.75,24.57,24.37,24.18,23.990000000000002,23.79,23.6,23.22,N/A,N/A +2012,10,6,19,30,101590,100420,99300,80.81,0,2,2.04,2.0300000000000002,2.0100000000000002,1.99,1.97,1.95,1.93,1.8800000000000001,73.5,73.24,73.05,72.86,72.67,72.48,72.27,72.07000000000001,71.61,25.18,24.8,24.62,24.42,24.22,24.03,23.830000000000002,23.650000000000002,23.26,N/A,N/A +2012,10,6,20,30,101540,100370,99250,81.60000000000001,0,1.84,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.8900000000000001,1.8900000000000001,1.8800000000000001,1.87,1.85,79.22,78.98,78.7,78.41,78.11,77.8,77.48,77.16,76.43,25.240000000000002,24.86,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.34,N/A,N/A +2012,10,6,21,30,101530,100370,99240,78.86,0,2.0100000000000002,2.07,2.07,2.06,2.05,2.04,2.0300000000000002,2.02,2,92.06,91.65,91.34,91,90.64,90.27,89.82000000000001,89.36,88.17,25.37,25.01,24.84,24.64,24.45,24.26,24.07,23.89,23.52,N/A,N/A +2012,10,6,22,30,101510,100350,99230,80.05,0,2.45,2.54,2.5500000000000003,2.54,2.54,2.5300000000000002,2.52,2.5100000000000002,2.48,101.69,101.43,101.26,101.07000000000001,100.87,100.67,100.43,100.2,99.59,25.38,25.03,24.85,24.650000000000002,24.46,24.28,24.080000000000002,23.900000000000002,23.52,N/A,N/A +2012,10,6,23,30,101510,100350,99220,79.36,0,2.56,2.66,2.66,2.66,2.66,2.65,2.63,2.62,2.6,99.97,99.79,99.65,99.52,99.37,99.22,99.02,98.81,98.23,25.38,25.03,24.86,24.66,24.47,24.28,24.09,23.91,23.53,N/A,N/A +2012,10,7,0,30,101510,100350,99230,78.54,0,2.77,2.9,2.92,2.92,2.92,2.92,2.92,2.91,2.91,106.2,105.95,105.78,105.59,105.38,105.15,104.87,104.60000000000001,103.77,25.39,25.04,24.87,24.67,24.48,24.29,24.1,23.92,23.55,N/A,N/A +2012,10,7,1,30,101530,100370,99240,77.05,0,2.52,2.63,2.65,2.66,2.66,2.67,2.67,2.67,2.68,96.69,96.5,96.48,96.42,96.36,96.28,96.18,96.07000000000001,95.77,25.45,25.12,24.94,24.740000000000002,24.560000000000002,24.37,24.18,23.990000000000002,23.62,N/A,N/A +2012,10,7,2,30,101530,100370,99250,75.68,0,3.0700000000000003,3.22,3.24,3.25,3.25,3.25,3.25,3.25,3.25,101.15,101.08,101,100.91,100.81,100.7,100.57000000000001,100.44,100.07000000000001,25.53,25.19,25.02,24.82,24.64,24.45,24.26,24.080000000000002,23.71,N/A,N/A +2012,10,7,3,30,101610,100430,99290,83.27,0,12.11,13.09,13.24,13.26,13.23,13.17,13.08,12.99,12.73,29.39,29.93,30.17,30.41,30.650000000000002,30.88,31.150000000000002,31.400000000000002,32.05,22.68,22.080000000000002,21.86,21.650000000000002,21.45,21.27,21.080000000000002,20.900000000000002,20.55,N/A,N/A +2012,10,7,4,30,101650,100470,99330,84.58,0,11.1,11.950000000000001,12.11,12.16,12.16,12.15,12.11,12.07,11.94,37.2,37.550000000000004,37.800000000000004,38.050000000000004,38.29,38.52,38.79,39.03,39.63,21.740000000000002,21.1,20.87,20.650000000000002,20.45,20.26,20.06,19.88,19.51,N/A,N/A +2012,10,7,5,30,101680,100490,99340,84.47,0,10.39,11.13,11.27,11.31,11.32,11.31,11.28,11.24,11.15,31.5,31.92,32.2,32.47,32.74,33,33.29,33.56,34.21,20.82,20.16,19.92,19.7,19.5,19.3,19.1,18.92,18.55,N/A,N/A +2012,10,7,6,30,101730,100540,99390,83.09,0,9.99,10.69,10.83,10.88,10.9,10.9,10.88,10.86,10.8,28.88,29.32,29.61,29.900000000000002,30.17,30.44,30.73,31,31.61,20.32,19.650000000000002,19.400000000000002,19.17,18.96,18.76,18.56,18.37,17.990000000000002,N/A,N/A +2012,10,7,7,30,101790,100600,99440,81.89,0,10.6,11.370000000000001,11.53,11.59,11.620000000000001,11.620000000000001,11.61,11.6,11.540000000000001,24.76,25.01,25.16,25.310000000000002,25.45,25.59,25.75,25.900000000000002,26.25,19.56,18.84,18.580000000000002,18.35,18.13,17.93,17.72,17.53,17.14,N/A,N/A +2012,10,7,8,30,101840,100640,99480,82.52,0,10.11,10.82,10.96,11.01,11.040000000000001,11.040000000000001,11.03,11.02,10.96,23.77,24.09,24.310000000000002,24.52,24.72,24.91,25.13,25.32,25.77,19.06,18.330000000000002,18.07,17.84,17.62,17.42,17.22,17.03,16.64,N/A,N/A +2012,10,7,9,30,101870,100670,99500,85.05,0,11.21,12.030000000000001,12.19,12.26,12.290000000000001,12.3,12.290000000000001,12.27,12.22,25.25,25.43,25.55,25.67,25.79,25.900000000000002,26.02,26.13,26.400000000000002,18.21,17.42,17.14,16.9,16.68,16.48,16.27,16.080000000000002,15.69,N/A,N/A +2012,10,7,10,30,101930,100730,99560,85.89,0,10.35,11.08,11.23,11.290000000000001,11.31,11.32,11.31,11.290000000000001,11.24,25.740000000000002,25.85,25.94,26.03,26.13,26.22,26.330000000000002,26.43,26.66,17.82,17.03,16.75,16.51,16.29,16.09,15.88,15.68,15.290000000000001,N/A,N/A +2012,10,7,11,30,101940,100740,99570,86.60000000000001,0,10.66,11.4,11.540000000000001,11.59,11.620000000000001,11.620000000000001,11.61,11.6,11.55,19.35,19.56,19.69,19.81,19.94,20.05,20.18,20.3,20.580000000000002,17.41,16.6,16.32,16.080000000000002,15.860000000000001,15.66,15.450000000000001,15.26,14.870000000000001,N/A,N/A +2012,10,7,12,30,101990,100780,99610,86.69,0,10.27,10.97,11.11,11.17,11.19,11.200000000000001,11.19,11.19,11.14,21.18,21.330000000000002,21.42,21.51,21.61,21.7,21.8,21.89,22.12,17.04,16.22,15.94,15.700000000000001,15.48,15.280000000000001,15.07,14.870000000000001,14.48,N/A,N/A +2012,10,7,13,30,102030,100820,99650,86.4,0,10.43,11.13,11.25,11.3,11.31,11.31,11.290000000000001,11.27,11.200000000000001,22.8,23,23.12,23.240000000000002,23.37,23.48,23.61,23.740000000000002,24.02,16.38,15.540000000000001,15.26,15.01,14.780000000000001,14.58,14.370000000000001,14.18,13.790000000000001,N/A,N/A +2012,10,7,14,30,102050,100840,99660,85.3,0,10.6,11.32,11.44,11.49,11.5,11.5,11.48,11.46,11.39,19.79,20.01,20.150000000000002,20.29,20.42,20.54,20.68,20.81,21.11,16.11,15.25,14.97,14.72,14.5,14.3,14.09,13.89,13.5,N/A,N/A +2012,10,7,15,30,102040,100830,99650,82.82000000000001,0,10.200000000000001,10.88,11,11.040000000000001,11.06,11.06,11.040000000000001,11.03,10.97,16.740000000000002,16.990000000000002,17.16,17.32,17.490000000000002,17.63,17.8,17.96,18.3,16.19,15.36,15.07,14.83,14.61,14.41,14.200000000000001,14,13.61,N/A,N/A +2012,10,7,16,30,102040,100830,99650,79.66,0,9.52,10.14,10.25,10.3,10.32,10.33,10.32,10.32,10.27,16.88,17.27,17.5,17.73,17.95,18.16,18.38,18.580000000000002,19.02,16.61,15.81,15.530000000000001,15.290000000000001,15.07,14.86,14.65,14.46,14.06,N/A,N/A +2012,10,7,17,30,101990,100790,99610,75.38,0,9.27,9.88,9.99,10.05,10.07,10.08,10.07,10.06,10.03,17.740000000000002,17.89,18.01,18.12,18.23,18.32,18.43,18.53,18.75,17.2,16.43,16.16,15.93,15.700000000000001,15.5,15.290000000000001,15.1,14.700000000000001,N/A,N/A +2012,10,7,18,30,101990,100780,99620,72.68,0,8.05,8.56,8.67,8.72,8.75,8.76,8.77,8.77,8.76,22.53,22.67,22.79,22.900000000000002,23,23.1,23.2,23.29,23.490000000000002,18.25,17.55,17.29,17.06,16.830000000000002,16.63,16.42,16.22,15.82,N/A,N/A +2012,10,7,19,30,101950,100760,99590,70.03,0,7.6000000000000005,8.07,8.16,8.21,8.23,8.25,8.26,8.26,8.25,22.79,22.81,22.82,22.82,22.82,22.81,22.81,22.81,22.81,19.14,18.490000000000002,18.25,18.02,17.8,17.6,17.39,17.2,16.8,N/A,N/A +2012,10,7,20,30,101910,100710,99560,67.08,0,7.29,7.74,7.84,7.9,7.930000000000001,7.95,7.96,7.97,7.97,19.580000000000002,19.830000000000002,19.92,20.02,20.11,20.2,20.3,20.39,20.57,20.02,19.400000000000002,19.16,18.94,18.72,18.52,18.31,18.12,17.72,N/A,N/A +2012,10,7,21,30,101850,100660,99510,67.04,0,7.61,8.1,8.2,8.25,8.28,8.290000000000001,8.3,8.31,8.31,11.14,11.55,11.83,12.09,12.31,12.52,12.73,12.92,13.3,20.64,20.05,19.81,19.59,19.37,19.17,18.97,18.77,18.37,N/A,N/A +2012,10,7,22,30,101880,100690,99540,65.34,0,7.29,7.75,7.84,7.88,7.91,7.92,7.930000000000001,7.930000000000001,7.92,16.5,17.11,17.44,17.75,18.05,18.34,18.63,18.89,19.45,20.94,20.37,20.14,19.91,19.7,19.51,19.3,19.11,18.71,N/A,N/A +2012,10,7,23,30,101890,100710,99550,66.77,0,7.26,7.69,7.7700000000000005,7.8,7.8100000000000005,7.8100000000000005,7.8100000000000005,7.8,7.7700000000000005,21.25,21.73,22.01,22.27,22.52,22.75,22.98,23.19,23.650000000000002,21,20.43,20.2,19.98,19.77,19.57,19.36,19.16,18.76,N/A,N/A +2012,10,8,0,30,101900,100710,99550,68.09,0,7.9,8.370000000000001,8.44,8.46,8.46,8.44,8.42,8.4,8.33,14.98,15.24,15.4,15.56,15.71,15.84,15.99,16.13,16.41,20.63,20.02,19.79,19.56,19.35,19.150000000000002,18.94,18.75,18.36,N/A,N/A +2012,10,8,1,30,101950,100750,99600,71.60000000000001,0,8.91,9.47,9.57,9.6,9.6,9.6,9.57,9.55,9.48,14.07,14.43,14.63,14.83,15.02,15.21,15.4,15.57,15.96,19.84,19.18,18.93,18.7,18.48,18.28,18.07,17.88,17.490000000000002,N/A,N/A +2012,10,8,2,30,101990,100790,99630,72.48,0,8.92,9.49,9.61,9.65,9.66,9.67,9.65,9.64,9.59,22.95,23.19,23.34,23.48,23.62,23.740000000000002,23.87,24,24.27,19.32,18.63,18.38,18.150000000000002,17.93,17.73,17.52,17.330000000000002,16.93,N/A,N/A +2012,10,8,3,30,101980,100780,99620,73.56,0,9.34,9.96,10.08,10.120000000000001,10.14,10.14,10.120000000000001,10.1,10.05,24.45,24.77,24.96,25.13,25.3,25.46,25.63,25.78,26.12,19.22,18.52,18.27,18.04,17.82,17.62,17.41,17.22,16.82,N/A,N/A +2012,10,8,4,30,101960,100760,99600,74.87,0,9.63,10.27,10.39,10.44,10.46,10.46,10.44,10.42,10.36,26.13,26.44,26.650000000000002,26.84,27.02,27.19,27.37,27.53,27.87,19.04,18.32,18.07,17.830000000000002,17.61,17.41,17.2,17.01,16.61,N/A,N/A +2012,10,8,5,30,101970,100780,99610,75.71000000000001,0,9.5,10.13,10.25,10.290000000000001,10.31,10.31,10.290000000000001,10.28,10.22,30.11,30.53,30.8,31.05,31.29,31.51,31.740000000000002,31.95,32.410000000000004,19.01,18.29,18.04,17.8,17.580000000000002,17.38,17.17,16.98,16.59,N/A,N/A +2012,10,8,6,30,102000,100800,99640,75.71000000000001,0,9.46,10.08,10.200000000000001,10.24,10.25,10.25,10.24,10.22,10.17,29.47,29.900000000000002,30.18,30.44,30.7,30.93,31.17,31.39,31.86,18.89,18.17,17.92,17.68,17.46,17.26,17.05,16.85,16.46,N/A,N/A +2012,10,8,7,30,102030,100830,99670,74.98,0,9.1,9.67,9.78,9.81,9.82,9.81,9.8,9.78,9.71,31.330000000000002,31.84,32.14,32.410000000000004,32.67,32.92,33.17,33.4,33.89,18.650000000000002,17.93,17.68,17.44,17.23,17.02,16.81,16.62,16.22,N/A,N/A +2012,10,8,8,30,102040,100840,99670,76.14,0,8.53,9.040000000000001,9.13,9.15,9.15,9.14,9.120000000000001,9.09,9.02,28.62,28.990000000000002,29.22,29.43,29.64,29.830000000000002,30.02,30.2,30.580000000000002,18.5,17.81,17.56,17.32,17.11,16.91,16.7,16.51,16.11,N/A,N/A +2012,10,8,9,30,102050,100850,99690,75.16,0,7.890000000000001,8.33,8.4,8.42,8.41,8.4,8.38,8.36,8.290000000000001,29.6,30.02,30.32,30.59,30.84,31.07,31.310000000000002,31.53,31.98,18.6,17.93,17.68,17.45,17.240000000000002,17.03,16.82,16.63,16.240000000000002,N/A,N/A +2012,10,8,10,30,102100,100890,99730,74.77,0,8.120000000000001,8.56,8.620000000000001,8.63,8.620000000000001,8.61,8.58,8.55,8.47,24.310000000000002,24.900000000000002,25.3,25.67,26.02,26.35,26.7,27.01,27.69,18.45,17.76,17.51,17.28,17.06,16.86,16.65,16.46,16.06,N/A,N/A +2012,10,8,11,30,102130,100920,99750,73.69,0,8.16,8.59,8.65,8.65,8.63,8.6,8.56,8.52,8.41,19.53,19.87,20.09,20.31,20.52,20.7,20.92,21.12,21.54,17.72,17.01,16.75,16.51,16.3,16.1,15.89,15.700000000000001,15.31,N/A,N/A +2012,10,8,12,30,102140,100930,99760,74.53,0,8.38,8.84,8.9,8.91,8.89,8.870000000000001,8.83,8.8,8.71,18.27,18.45,18.57,18.68,18.79,18.89,18.990000000000002,19.080000000000002,19.29,17.35,16.62,16.35,16.12,15.9,15.700000000000001,15.49,15.3,14.9,N/A,N/A +2012,10,8,13,30,102180,100970,99800,74.46000000000001,0,9.17,9.71,9.8,9.81,9.81,9.78,9.75,9.71,9.620000000000001,17.580000000000002,17.71,17.77,17.84,17.900000000000002,17.96,18.02,18.080000000000002,18.2,16.91,16.14,15.860000000000001,15.620000000000001,15.4,15.19,14.98,14.790000000000001,14.39,N/A,N/A +2012,10,8,14,30,102210,101000,99830,74.16,0,8.01,8.44,8.51,8.52,8.51,8.5,8.47,8.44,8.370000000000001,26.29,26.5,26.64,26.77,26.88,26.990000000000002,27.09,27.19,27.38,17.03,16.3,16.03,15.790000000000001,15.57,15.370000000000001,15.16,14.96,14.57,N/A,N/A +2012,10,8,15,30,102210,101000,99830,73.02,0,7.04,7.43,7.49,7.51,7.5200000000000005,7.5200000000000005,7.51,7.5,7.46,33.6,33.8,33.92,34.03,34.12,34.22,34.32,34.4,34.58,17.7,17.02,16.76,16.52,16.3,16.1,15.89,15.69,15.3,N/A,N/A +2012,10,8,16,30,102200,100990,99820,73.81,0,6.79,7.1000000000000005,7.12,7.11,7.08,7.0600000000000005,7.0200000000000005,6.98,6.890000000000001,19.91,20.48,20.830000000000002,21.18,21.5,21.8,22.11,22.400000000000002,23.01,17.77,17.11,16.86,16.62,16.41,16.2,16,15.8,15.41,N/A,N/A +2012,10,8,17,30,102140,100940,99770,70.78,0,6.8,7.12,7.16,7.15,7.140000000000001,7.12,7.08,7.05,6.98,16.78,17.080000000000002,17.27,17.46,17.63,17.79,17.97,18.13,18.48,17.85,17.19,16.94,16.71,16.5,16.3,16.09,15.9,15.5,N/A,N/A +2012,10,8,18,30,102140,100930,99760,68,0,5.5600000000000005,5.83,5.87,5.89,5.9,5.9,5.89,5.89,5.87,19.63,19.68,19.72,19.75,19.79,19.82,19.85,19.88,19.95,18.28,17.66,17.42,17.2,16.98,16.78,16.57,16.38,15.98,N/A,N/A +2012,10,8,19,30,102090,100890,99720,67.52,0,5.46,5.74,5.8,5.83,5.8500000000000005,5.86,5.87,5.87,5.88,17.59,17.55,17.56,17.57,17.580000000000002,17.580000000000002,17.59,17.6,17.61,19.05,18.46,18.23,18,17.78,17.580000000000002,17.37,17.18,16.78,N/A,N/A +2012,10,8,20,30,102030,100840,99680,64.81,0,4.96,5.19,5.22,5.23,5.24,5.24,5.23,5.22,5.21,16.73,16.9,17.04,17.18,17.3,17.41,17.53,17.64,17.86,19.54,18.98,18.75,18.53,18.32,18.12,17.91,17.72,17.32,N/A,N/A +2012,10,8,21,30,102010,100820,99660,64.42,0,3.72,3.89,3.92,3.94,3.96,3.96,3.97,3.97,3.98,26.25,26.71,26.97,27.22,27.45,27.66,27.87,28.060000000000002,28.46,20,19.48,19.26,19.04,18.830000000000002,18.63,18.43,18.23,17.830000000000002,N/A,N/A +2012,10,8,22,30,101990,100790,99640,64.28,0,3.45,3.6,3.62,3.63,3.64,3.65,3.65,3.65,3.66,39.02,38.68,38.37,38.06,37.79,37.54,37.28,37.04,36.58,20.45,19.95,19.73,19.51,19.3,19.11,18.900000000000002,18.71,18.31,N/A,N/A +2012,10,8,23,30,101950,100760,99600,61.92,0,4.04,4.19,4.21,4.2,4.19,4.18,4.17,4.15,4.12,50.01,49.09,48.51,47.94,47.410000000000004,46.910000000000004,46.36,45.86,44.800000000000004,20.78,20.27,20.06,19.84,19.64,19.44,19.240000000000002,19.05,18.66,N/A,N/A +2012,10,9,0,30,101920,100730,99580,61.46,0,3.7800000000000002,3.95,3.97,3.98,3.98,3.98,3.98,3.97,3.96,40.89,40.82,40.72,40.63,40.53,40.44,40.33,40.230000000000004,39.980000000000004,21.07,20.580000000000002,20.37,20.150000000000002,19.95,19.76,19.55,19.36,18.97,N/A,N/A +2012,10,9,1,30,101930,100740,99590,63.17,0,3.7600000000000002,3.92,3.94,3.94,3.93,3.93,3.92,3.91,3.89,36.94,37.35,37.61,37.87,38.1,38.31,38.54,38.75,39.19,21.29,20.8,20.6,20.38,20.17,19.98,19.77,19.59,19.19,N/A,N/A +2012,10,9,2,30,101940,100750,99600,64.84,0,4.32,4.48,4.48,4.47,4.45,4.43,4.41,4.39,4.34,49.18,49.64,49.980000000000004,50.32,50.64,50.94,51.26,51.550000000000004,52.2,21.330000000000002,20.84,20.63,20.41,20.21,20.01,19.81,19.62,19.22,N/A,N/A +2012,10,9,3,30,101910,100730,99580,68.07000000000001,0,4.72,4.91,4.93,4.93,4.91,4.9,4.88,4.86,4.82,49.51,50.34,50.89,51.43,51.92,52.38,52.86,53.300000000000004,54.19,21.32,20.81,20.6,20.38,20.18,19.98,19.78,19.59,19.19,N/A,N/A +2012,10,9,4,30,101880,100690,99540,69.57000000000001,0,4.62,4.82,4.84,4.84,4.84,4.83,4.82,4.8,4.7700000000000005,57.97,58.77,59.25,59.71,60.120000000000005,60.51,60.910000000000004,61.28,62.04,21.400000000000002,20.900000000000002,20.69,20.47,20.27,20.07,19.87,19.68,19.28,N/A,N/A +2012,10,9,5,30,101850,100670,99520,71.76,0,4.14,4.29,4.3100000000000005,4.3,4.29,4.28,4.2700000000000005,4.25,4.22,67.73,68.53,69.01,69.47,69.89,70.28,70.67,71.03,71.79,21.54,21.05,20.84,20.62,20.42,20.22,20.02,19.830000000000002,19.44,N/A,N/A +2012,10,9,6,30,101850,100670,99520,70.85000000000001,0,3.59,3.72,3.73,3.72,3.7,3.69,3.67,3.66,3.63,93.17,93.43,93.53,93.62,93.71000000000001,93.78,93.85000000000001,93.91,94.03,21.82,21.37,21.18,20.96,20.76,20.56,20.36,20.17,19.78,N/A,N/A +2012,10,9,7,30,101860,100680,99530,70.78,0,3.42,3.58,3.61,3.63,3.65,3.66,3.67,3.68,3.7,99.87,100.25,100.59,100.91,101.2,101.47,101.76,102.03,102.59,21.93,21.490000000000002,21.3,21.09,20.89,20.69,20.490000000000002,20.3,19.91,N/A,N/A +2012,10,9,8,30,101850,100670,99520,75.14,0,3.79,3.98,4.0200000000000005,4.04,4.05,4.07,4.07,4.08,4.09,105.31,106.10000000000001,106.46000000000001,106.8,107.11,107.41,107.7,107.97,108.53,22.14,21.7,21.5,21.29,21.09,20.89,20.69,20.5,20.11,N/A,N/A +2012,10,9,9,30,101840,100660,99520,73.39,0,3.71,3.86,3.87,3.87,3.87,3.86,3.85,3.85,3.8200000000000003,132.95,133.37,133.56,133.74,133.89000000000001,134.04,134.19,134.33,134.61,22.42,21.98,21.79,21.580000000000002,21.38,21.18,20.98,20.79,20.400000000000002,N/A,N/A +2012,10,9,10,30,101840,100660,99520,73.8,0,3.85,3.99,3.99,3.98,3.96,3.94,3.92,3.9,3.85,129.42000000000002,130.21,130.69,131.18,131.62,132.04,132.48,132.88,133.75,22.64,22.22,22.02,21.81,21.61,21.42,21.21,21.03,20.63,N/A,N/A +2012,10,9,11,30,101860,100680,99540,74.13,0,2.77,2.96,3.02,3.06,3.09,3.13,3.15,3.17,3.2,118.09,120.3,121.59,122.77,123.78,124.69,125.58,126.4,128.01,22.830000000000002,22.43,22.240000000000002,22.03,21.830000000000002,21.64,21.44,21.25,20.86,N/A,N/A +2012,10,9,12,30,101850,100670,99530,73.17,0,3.43,3.59,3.62,3.64,3.65,3.66,3.66,3.67,3.67,151.6,152.04,152.20000000000002,152.35,152.49,152.62,152.76,152.89000000000001,153.14000000000001,23.19,22.78,22.59,22.39,22.19,22,21.79,21.61,21.22,N/A,N/A +2012,10,9,13,30,101840,100660,99520,70.38,0,1.45,1.53,1.56,1.59,1.62,1.6400000000000001,1.67,1.69,1.75,147.9,149.36,150.29,151.13,151.86,152.52,153.16,153.75,154.86,23.41,23.04,22.85,22.650000000000002,22.46,22.27,22.07,21.89,21.5,N/A,N/A +2012,10,9,14,30,101820,100640,99510,74.08,0,3.24,3.37,3.38,3.37,3.35,3.34,3.33,3.31,3.2800000000000002,126.29,127.11,127.52,127.89,128.23,128.54,128.84,129.1,129.62,23.580000000000002,23.19,23,22.8,22.6,22.41,22.21,22.03,21.64,N/A,N/A +2012,10,9,15,30,101850,100680,99540,79.52,0,4,4.14,4.15,4.13,4.11,4.09,4.0600000000000005,4.03,3.98,133.97,134.72,135.21,135.71,136.19,136.65,137.13,137.57,138.55,23.330000000000002,22.92,22.740000000000002,22.53,22.34,22.150000000000002,21.95,21.76,21.38,N/A,N/A +2012,10,9,16,30,101810,100640,99500,79.39,0,3.22,3.36,3.39,3.4,3.41,3.42,3.42,3.43,3.44,117.07000000000001,118.86,119.99000000000001,121.08,122.07000000000001,123.02,123.97,124.84,126.67,23.5,23.11,22.92,22.72,22.52,22.330000000000002,22.13,21.94,21.56,N/A,N/A +2012,10,9,17,30,101780,100610,99470,76.60000000000001,0,3.63,3.8000000000000003,3.83,3.85,3.86,3.87,3.87,3.88,3.88,146.27,147.13,147.72,148.27,148.76,149.24,149.71,150.14000000000001,151.01,23.830000000000002,23.45,23.26,23.06,22.86,22.67,22.47,22.29,21.900000000000002,N/A,N/A +2012,10,9,18,30,101740,100570,99440,79.74,0,4.1,4.33,4.37,4.39,4.4,4.41,4.41,4.41,4.41,140.44,141.12,141.49,141.82,142.11,142.36,142.61,142.85,143.29,23.95,23.56,23.37,23.16,22.97,22.77,22.57,22.39,22,N/A,N/A +2012,10,9,19,30,101720,100550,99420,79.58,0,5.42,5.76,5.82,5.8500000000000005,5.87,5.88,5.88,5.88,5.87,139.6,140.11,140.42000000000002,140.72,140.98,141.23,141.49,141.73,142.24,24.07,23.67,23.48,23.27,23.080000000000002,22.89,22.69,22.5,22.11,N/A,N/A +2012,10,9,20,30,101670,100500,99370,79.24,0,5.08,5.36,5.41,5.43,5.44,5.44,5.43,5.43,5.41,145.27,145.68,145.94,146.18,146.4,146.61,146.81,147.01,147.41,24.2,23.81,23.62,23.42,23.22,23.03,22.830000000000002,22.650000000000002,22.26,N/A,N/A +2012,10,9,21,30,101630,100470,99330,77.77,0,4.92,5.18,5.21,5.21,5.19,5.18,5.15,5.13,5.08,165.56,165.37,165.28,165.20000000000002,165.12,165.05,164.99,164.94,164.82,24.400000000000002,24.03,23.85,23.64,23.45,23.26,23.06,22.87,22.48,N/A,N/A +2012,10,9,22,30,101610,100450,99320,79.83,0,5.48,5.86,5.95,6,6.03,6.05,6.07,6.08,6.09,151.23,151.39000000000001,151.48,151.57,151.66,151.74,151.82,151.91,152.08,24.38,24,23.82,23.61,23.42,23.23,23.03,22.84,22.45,N/A,N/A +2012,10,9,23,30,101580,100420,99290,78.19,0,4.29,4.57,4.64,4.67,4.7,4.72,4.74,4.75,4.7700000000000005,165.07,165.33,165.61,165.88,166.13,166.38,166.62,166.85,167.34,24.44,24.080000000000002,23.89,23.69,23.5,23.31,23.11,22.92,22.53,N/A,N/A +2012,10,10,0,30,101570,100410,99280,79.15,0,5.38,5.71,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8,5.8,5.76,161.03,161.35,161.72,162.11,162.48,162.85,163.25,163.62,164.45000000000002,24.6,24.23,24.060000000000002,23.85,23.66,23.47,23.27,23.09,22.7,N/A,N/A +2012,10,10,1,30,101580,100410,99280,79.73,0.4,6.05,6.49,6.58,6.63,6.65,6.66,6.67,6.67,6.65,166.62,166.65,166.81,167.01,167.22,167.43,167.67000000000002,167.9,168.46,24.66,24.29,24.11,23.91,23.71,23.53,23.330000000000002,23.150000000000002,22.77,N/A,N/A +2012,10,10,2,30,101600,100440,99310,76.67,0,6.45,6.890000000000001,6.98,7.01,7.03,7.04,7.03,7.03,7.01,171.49,171.36,171.33,171.32,171.3,171.28,171.27,171.25,171.27,24.91,24.55,24.38,24.18,23.98,23.79,23.6,23.41,23.03,N/A,N/A +2012,10,10,3,30,101590,100430,99300,77.16,0,7.32,7.8100000000000005,7.87,7.87,7.84,7.79,7.74,7.68,7.5600000000000005,177.81,177.98,178.02,178.03,178.03,178.02,178,177.97,177.87,25.03,24.68,24.51,24.310000000000002,24.12,23.93,23.740000000000002,23.55,23.17,N/A,N/A +2012,10,10,4,30,101590,100430,99300,79.68,0,6.3500000000000005,6.88,7.01,7.08,7.13,7.17,7.19,7.21,7.23,173.51,173.94,174.11,174.24,174.34,174.41,174.47,174.52,174.59,25,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A +2012,10,10,5,30,101610,100450,99320,77.99,0,7,7.54,7.68,7.73,7.7700000000000005,7.79,7.8,7.8,7.79,177.6,178.25,178.48,178.67000000000002,178.81,178.93,179.04,179.14000000000001,179.3,25.19,24.86,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A +2012,10,10,6,30,101630,100470,99340,77.65,0,6.54,7.09,7.21,7.26,7.29,7.3100000000000005,7.3100000000000005,7.3,7.2700000000000005,177.17000000000002,177.36,177.4,177.42000000000002,177.43,177.42000000000002,177.4,177.39000000000001,177.34,25.28,24.94,24.76,24.560000000000002,24.36,24.17,23.97,23.78,23.39,N/A,N/A +2012,10,10,7,30,101670,100510,99380,75.66,0,5.75,6.2,6.3100000000000005,6.38,6.42,6.46,6.48,6.51,6.54,176.19,176.73,177.03,177.28,177.48,177.68,177.85,178.02,178.34,25.400000000000002,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.54,N/A,N/A +2012,10,10,8,30,101710,100550,99430,76.63,0,4.87,5.21,5.28,5.32,5.34,5.36,5.37,5.37,5.38,180.11,180.75,181.11,181.43,181.70000000000002,181.96,182.18,182.38,182.76,25.48,25.150000000000002,24.98,24.78,24.59,24.39,24.2,24.01,23.62,N/A,N/A +2012,10,10,9,30,101760,100590,99470,73.81,0,4.14,4.5,4.61,4.69,4.76,4.82,4.88,4.93,5.0200000000000005,170.66,171.85,172.52,173.06,173.52,173.93,174.3,174.64000000000001,175.3,25.490000000000002,25.18,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,10,10,30,101790,100630,99500,72.86,0,3.3200000000000003,3.56,3.63,3.67,3.71,3.74,3.7600000000000002,3.79,3.83,178.53,178.65,178.68,178.64000000000001,178.57,178.48,178.37,178.27,177.99,25.59,25.27,25.1,24.900000000000002,24.72,24.53,24.330000000000002,24.150000000000002,23.76,N/A,N/A +2012,10,10,11,30,101820,100660,99530,75,0,2.59,2.7600000000000002,2.8000000000000003,2.83,2.85,2.86,2.88,2.89,2.91,155.73,157.36,158.31,159.21,160,160.76,161.49,162.17000000000002,163.53,25.560000000000002,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A +2012,10,10,12,30,101870,100710,99580,75.73,0,3.67,3.89,3.92,3.93,3.93,3.92,3.92,3.91,3.89,157.16,157.64000000000001,157.91,158.15,158.36,158.56,158.75,158.93,159.28,25.580000000000002,25.26,25.09,24.900000000000002,24.71,24.51,24.32,24.13,23.740000000000002,N/A,N/A +2012,10,10,13,30,101920,100750,99630,76.60000000000001,0,3.2800000000000002,3.49,3.5300000000000002,3.56,3.58,3.6,3.61,3.62,3.64,136.17000000000002,137.22,137.82,138.37,138.85,139.29,139.73,140.13,140.89000000000001,25.51,25.2,25.03,24.830000000000002,24.64,24.45,24.25,24.07,23.68,N/A,N/A +2012,10,10,14,30,101950,100780,99660,76.69,0,3.48,3.67,3.7,3.72,3.72,3.73,3.72,3.72,3.71,121.18,121.62,121.9,122.19,122.46000000000001,122.71000000000001,122.97,123.22,123.76,25.47,25.150000000000002,24.98,24.79,24.6,24.41,24.21,24.03,23.64,N/A,N/A +2012,10,10,15,30,101960,100800,99670,74.5,0,3.68,3.91,3.96,3.98,4,4.0200000000000005,4.03,4.03,4.05,131.68,132.15,132.4,132.65,132.88,133.11,133.35,133.56,134.05,25.54,25.22,25.05,24.85,24.66,24.47,24.28,24.09,23.71,N/A,N/A +2012,10,10,16,30,101950,100780,99650,76.84,0,3.74,3.96,4,4.0200000000000005,4.03,4.04,4.05,4.05,4.05,117.19,117.4,117.61,117.81,117.99000000000001,118.17,118.35000000000001,118.52,118.88,25.5,25.17,25,24.8,24.61,24.42,24.22,24.03,23.650000000000002,N/A,N/A +2012,10,10,17,30,101920,100760,99630,80.72,0,4.38,4.65,4.71,4.73,4.75,4.75,4.75,4.75,4.75,123.5,123.91,124.12,124.32000000000001,124.48,124.64,124.8,124.95,125.23,25.42,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.55,N/A,N/A +2012,10,10,18,30,101890,100730,99600,79.86,0,3.92,4.15,4.2,4.21,4.23,4.24,4.24,4.24,4.24,110.24000000000001,110.44,110.58,110.71000000000001,110.82000000000001,110.92,111.01,111.11,111.3,25.43,25.09,24.91,24.71,24.52,24.330000000000002,24.13,23.95,23.56,N/A,N/A +2012,10,10,19,30,101880,100710,99580,80.74,0,4.8500000000000005,5.16,5.23,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,5.32,108.34,108.5,108.62,108.74000000000001,108.83,108.93,109.02,109.10000000000001,109.29,25.45,25.1,24.93,24.73,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A +2012,10,10,20,30,101850,100690,99560,80.89,0,5.14,5.51,5.58,5.62,5.64,5.65,5.66,5.66,5.66,108.12,108.21000000000001,108.25,108.26,108.27,108.27,108.27,108.27,108.25,25.46,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A +2012,10,10,21,30,101870,100700,99570,81.39,0,5.78,6.21,6.3100000000000005,6.3500000000000005,6.38,6.4,6.41,6.41,6.42,110.78,111.01,111.19,111.37,111.54,111.7,111.87,112.04,112.39,25.42,25.080000000000002,24.91,24.71,24.52,24.330000000000002,24.13,23.95,23.56,N/A,N/A +2012,10,10,22,30,101880,100710,99580,82,0,6.36,6.8500000000000005,6.96,7.0200000000000005,7.05,7.07,7.07,7.07,7.07,118.19,118.33,118.4,118.47,118.52,118.58,118.62,118.67,118.75,25.400000000000002,25.060000000000002,24.89,24.68,24.5,24.3,24.11,23.92,23.54,N/A,N/A +2012,10,10,23,30,101880,100720,99590,84.43,0,6.41,6.91,7.0200000000000005,7.07,7.1000000000000005,7.12,7.12,7.12,7.11,122.73,122.91,123.02,123.14,123.26,123.38000000000001,123.51,123.62,123.89,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24.01,23.82,23.44,N/A,N/A +2012,10,11,0,30,101890,100730,99600,81.83,0,6.640000000000001,7.2,7.33,7.4,7.44,7.47,7.5,7.51,7.54,133.53,133.6,133.67000000000002,133.76,133.83,133.9,133.98,134.05,134.2,25.39,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A +2012,10,11,1,30,101880,100710,99590,81.76,0,6.24,6.72,6.84,6.890000000000001,6.93,6.95,6.96,6.97,6.98,122.98,123,123.06,123.10000000000001,123.12,123.14,123.15,123.16,123.16,25.37,25.04,24.86,24.67,24.48,24.29,24.09,23.91,23.53,N/A,N/A +2012,10,11,2,30,101940,100770,99650,81.45,0,6.09,6.6000000000000005,6.73,6.8,6.8500000000000005,6.88,6.91,6.93,6.96,137.63,137.76,137.83,137.9,137.97,138.05,138.12,138.19,138.34,25.42,25.09,24.92,24.72,24.52,24.330000000000002,24.14,23.95,23.57,N/A,N/A +2012,10,11,3,30,101930,100770,99640,78.65,0,5.8500000000000005,6.36,6.49,6.57,6.63,6.68,6.72,6.76,6.84,131.05,131.16,131.24,131.32,131.41,131.49,131.57,131.65,131.85,25.52,25.2,25.03,24.830000000000002,24.650000000000002,24.46,24.26,24.080000000000002,23.71,N/A,N/A +2012,10,11,4,30,101890,100720,99600,79.17,0,5.86,6.3500000000000005,6.47,6.54,6.6000000000000005,6.640000000000001,6.67,6.71,6.7700000000000005,130.19,130.27,130.32,130.4,130.46,130.53,130.61,130.69,130.87,25.47,25.14,24.97,24.77,24.580000000000002,24.400000000000002,24.2,24.02,23.64,N/A,N/A +2012,10,11,5,30,101900,100740,99610,78.49,0,6.01,6.51,6.63,6.71,6.76,6.8100000000000005,6.8500000000000005,6.890000000000001,6.97,131.4,131.58,131.72,131.87,132,132.14000000000001,132.3,132.44,132.77,25.54,25.22,25.05,24.86,24.67,24.490000000000002,24.3,24.12,23.76,N/A,N/A +2012,10,11,6,30,101910,100750,99620,78.53,0,6.92,7.49,7.61,7.67,7.7,7.72,7.73,7.73,7.72,133.45,133.74,133.88,134.01,134.12,134.23,134.32,134.41,134.57,25.66,25.36,25.2,25.01,24.82,24.64,24.45,24.27,23.900000000000002,N/A,N/A +2012,10,11,7,30,101950,100790,99660,80.42,0,7.12,7.78,7.930000000000001,8.02,8.08,8.11,8.13,8.14,8.15,135.97,136.06,136.14000000000001,136.21,136.28,136.33,136.39000000000001,136.44,136.55,25.61,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A +2012,10,11,8,30,101960,100800,99670,80.58,0,6.97,7.68,7.8500000000000005,7.96,8.040000000000001,8.09,8.120000000000001,8.15,8.18,131.87,131.94,132.03,132.12,132.2,132.27,132.34,132.41,132.53,25.64,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.39,24.2,23.81,N/A,N/A +2012,10,11,9,30,101970,100810,99680,78.62,0,6.63,7.29,7.44,7.53,7.59,7.63,7.66,7.68,7.7,129.81,129.77,129.82,129.9,129.97,130.04,130.12,130.2,130.37,25.73,25.42,25.25,25.060000000000002,24.87,24.68,24.48,24.3,23.91,N/A,N/A +2012,10,11,10,30,101990,100820,99690,79.46000000000001,0,6.54,7.0600000000000005,7.17,7.21,7.25,7.26,7.28,7.28,7.3,130.5,130.93,131.18,131.45,131.72,132.01,132.32,132.63,133.34,25.71,25.42,25.26,25.07,24.89,24.71,24.52,24.34,23.98,N/A,N/A +2012,10,11,11,30,102010,100850,99720,78.05,0,5.97,6.5200000000000005,6.66,6.74,6.8100000000000005,6.86,6.92,6.97,7.08,134.46,134.81,135.04,135.28,135.51,135.73,135.98,136.22,136.76,25.8,25.51,25.35,25.150000000000002,24.97,24.79,24.6,24.43,24.060000000000002,N/A,N/A +2012,10,11,12,30,102040,100880,99750,79.42,0,6.79,7.3500000000000005,7.5,7.57,7.62,7.66,7.68,7.71,7.75,128.39000000000001,128.64000000000001,128.81,128.98,129.14000000000001,129.29,129.45,129.6,129.92000000000002,25.73,25.43,25.27,25.07,24.89,24.7,24.51,24.330000000000002,23.96,N/A,N/A +2012,10,11,13,30,102050,100890,99760,79.22,0,6.7,7.25,7.38,7.45,7.49,7.51,7.53,7.54,7.5600000000000005,124.97,125.2,125.35000000000001,125.51,125.66,125.81,125.95,126.09,126.4,25.71,25.41,25.25,25.05,24.86,24.68,24.490000000000002,24.3,23.93,N/A,N/A +2012,10,11,14,30,102090,100920,99790,80.43,0,6.67,7.2700000000000005,7.42,7.5,7.55,7.58,7.6000000000000005,7.62,7.63,123.3,123.48,123.57000000000001,123.67,123.75,123.83,123.9,123.97,124.12,25.67,25.36,25.2,25,24.810000000000002,24.62,24.43,24.240000000000002,23.85,N/A,N/A +2012,10,11,15,30,102090,100930,99800,79.64,0,6.82,7.44,7.59,7.68,7.73,7.7700000000000005,7.8,7.82,7.84,120.07000000000001,120.28,120.37,120.46000000000001,120.54,120.62,120.69,120.76,120.89,25.69,25.38,25.21,25.01,24.830000000000002,24.64,24.44,24.26,23.87,N/A,N/A +2012,10,11,16,30,102090,100930,99800,80.41,0,6.73,7.34,7.48,7.5600000000000005,7.61,7.65,7.68,7.69,7.71,119.86,120.04,120.15,120.25,120.34,120.42,120.51,120.58,120.73,25.67,25.36,25.19,24.990000000000002,24.8,24.61,24.42,24.23,23.85,N/A,N/A +2012,10,11,17,30,102090,100930,99800,80.15,0,6.97,7.61,7.75,7.84,7.9,7.930000000000001,7.96,7.98,8.01,122.58,122.7,122.77,122.83,122.9,122.96000000000001,123.02,123.08,123.2,25.7,25.38,25.21,25.01,24.82,24.63,24.44,24.25,23.87,N/A,N/A +2012,10,11,18,30,102110,100940,99810,79.86,0,7.13,7.78,7.930000000000001,8.01,8.07,8.11,8.13,8.15,8.17,122.78,122.94,123,123.07000000000001,123.13000000000001,123.2,123.27,123.34,123.48,25.71,25.39,25.22,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.88,N/A,N/A +2012,10,11,19,30,102070,100910,99780,80.91,0,6.99,7.61,7.75,7.83,7.88,7.92,7.94,7.96,7.97,117.22,117.52,117.66,117.78,117.9,118,118.11,118.2,118.39,25.64,25.32,25.150000000000002,24.95,24.76,24.57,24.37,24.19,23.81,N/A,N/A +2012,10,11,20,30,102050,100880,99750,80.06,0,6.73,7.34,7.48,7.57,7.62,7.65,7.68,7.7,7.72,119.89,119.99000000000001,120.06,120.14,120.23,120.31,120.4,120.48,120.66,25.650000000000002,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.38,24.2,23.81,N/A,N/A +2012,10,11,21,30,102040,100870,99740,78.41,0,6.6000000000000005,7.18,7.32,7.390000000000001,7.43,7.47,7.49,7.5,7.5200000000000005,122.18,122.28,122.36,122.43,122.5,122.56,122.63,122.7,122.84,25.650000000000002,25.34,25.17,24.97,24.78,24.59,24.400000000000002,24.21,23.830000000000002,N/A,N/A +2012,10,11,22,30,102030,100860,99740,80.15,0,6.49,7.0600000000000005,7.2,7.2700000000000005,7.32,7.36,7.390000000000001,7.4,7.42,122.59,122.66,122.7,122.74000000000001,122.78,122.81,122.84,122.87,122.94,25.61,25.29,25.12,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A +2012,10,11,23,30,102010,100850,99720,82.60000000000001,0,7.34,8.01,8.17,8.26,8.32,8.36,8.39,8.41,8.44,127.03,127.14,127.19,127.23,127.28,127.31,127.36,127.4,127.48,25.51,25.19,25.01,24.82,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,12,0,30,101990,100830,99700,81.69,0,7.05,7.66,7.8,7.86,7.91,7.930000000000001,7.94,7.95,7.94,121.09,121.35000000000001,121.62,121.9,122.17,122.42,122.69,122.94,123.49000000000001,25.63,25.3,25.13,24.94,24.75,24.560000000000002,24.37,24.19,23.81,N/A,N/A +2012,10,12,1,30,102000,100840,99710,81.22,0,7.12,7.8100000000000005,7.96,8.040000000000001,8.09,8.11,8.13,8.13,8.120000000000001,120.05,120.48,120.71000000000001,120.95,121.16,121.36,121.58,121.79,122.2,25.75,25.44,25.28,25.080000000000002,24.900000000000002,24.71,24.52,24.34,23.96,N/A,N/A +2012,10,12,2,30,102020,100850,99720,83.94,0,7.34,7.97,8.11,8.18,8.22,8.24,8.24,8.24,8.22,121.29,121.64,121.84,122.03,122.22,122.4,122.58,122.76,123.13000000000001,25.41,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.55,N/A,N/A +2012,10,12,3,30,102030,100860,99730,83.44,0,6.890000000000001,7.49,7.640000000000001,7.72,7.78,7.82,7.84,7.86,7.890000000000001,129.13,129.41,129.56,129.71,129.85,129.98,130.1,130.21,130.42000000000002,25.580000000000002,25.25,25.080000000000002,24.87,24.68,24.490000000000002,24.3,24.11,23.72,N/A,N/A +2012,10,12,4,30,102020,100850,99720,84.89,0,7.16,7.75,7.88,7.94,7.98,8.01,8.01,8.02,8.01,120.11,120.45,120.72,120.99000000000001,121.24000000000001,121.49000000000001,121.73,121.97,122.44,25.47,25.14,24.97,24.78,24.59,24.400000000000002,24.2,24.02,23.64,N/A,N/A +2012,10,12,5,30,102000,100840,99710,82.82000000000001,0,7.48,8.17,8.32,8.39,8.44,8.46,8.46,8.46,8.44,121.55,121.73,121.86,122.01,122.17,122.32000000000001,122.48,122.64,123,25.63,25.32,25.150000000000002,24.95,24.76,24.57,24.38,24.2,23.81,N/A,N/A +2012,10,12,6,30,102010,100850,99720,84.32000000000001,0,7.29,7.92,8.05,8.11,8.15,8.17,8.18,8.18,8.17,122.48,122.84,123.05,123.25,123.44,123.61,123.8,123.97,124.33,25.59,25.26,25.09,24.89,24.7,24.51,24.32,24.14,23.75,N/A,N/A +2012,10,12,7,30,102030,100870,99740,83.9,0,7.28,7.98,8.15,8.25,8.32,8.370000000000001,8.4,8.42,8.45,121.67,122.22,122.5,122.76,122.99000000000001,123.21000000000001,123.42,123.61,124,25.78,25.46,25.29,25.09,24.900000000000002,24.72,24.52,24.330000000000002,23.95,N/A,N/A +2012,10,12,8,30,102030,100870,99740,81.48,0,6.51,7.0600000000000005,7.19,7.25,7.28,7.3100000000000005,7.32,7.32,7.32,123.2,123.61,123.87,124.14,124.39,124.63000000000001,124.88000000000001,125.11,125.62,25.830000000000002,25.52,25.36,25.16,24.98,24.79,24.6,24.42,24.04,N/A,N/A +2012,10,12,9,30,102040,100880,99750,84.73,0,6.51,7.07,7.2,7.28,7.33,7.37,7.390000000000001,7.41,7.44,118.67,118.95,119.18,119.43,119.67,119.9,120.14,120.38,120.89,25.61,25.28,25.11,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A +2012,10,12,10,30,102050,100890,99760,81.27,0,6.05,6.57,6.7,6.7700000000000005,6.82,6.86,6.88,6.91,6.94,126.23,126.4,126.52,126.64,126.76,126.87,126.99000000000001,127.11,127.36,25.77,25.45,25.28,25.080000000000002,24.89,24.71,24.51,24.32,23.94,N/A,N/A +2012,10,12,11,30,102070,100900,99780,84.48,0,4.63,4.97,5.05,5.1000000000000005,5.14,5.16,5.19,5.2,5.24,121.79,121.66,121.62,121.58,121.54,121.5,121.47,121.45,121.44,25.59,25.26,25.09,24.900000000000002,24.71,24.52,24.32,24.14,23.76,N/A,N/A +2012,10,12,12,30,102100,100930,99800,85.24,0,5.46,5.8500000000000005,5.93,5.97,5.98,5.99,6,6,5.98,126.37,126.99000000000001,127.36,127.73,128.08,128.42000000000002,128.78,129.12,129.89000000000001,25.55,25.22,25.05,24.86,24.67,24.48,24.29,24.11,23.73,N/A,N/A +2012,10,12,13,30,102110,100950,99820,82.02,0,5.07,5.45,5.54,5.58,5.61,5.63,5.64,5.66,5.67,127.09,127.39,127.59,127.8,128.01,128.22,128.45,128.66,129.17000000000002,25.77,25.46,25.29,25.1,24.91,24.72,24.53,24.35,23.97,N/A,N/A +2012,10,12,14,30,102140,100970,99850,84.06,0,5.09,5.49,5.57,5.62,5.64,5.66,5.67,5.68,5.68,110.06,110.28,110.42,110.56,110.69,110.83,110.98,111.12,111.44,25.67,25.34,25.17,24.97,24.79,24.6,24.400000000000002,24.22,23.84,N/A,N/A +2012,10,12,15,30,102140,100970,99840,83.29,0,4.8,5.12,5.18,5.2,5.2,5.2,5.19,5.18,5.15,103.53,103.91,104.18,104.5,104.82000000000001,105.15,105.54,105.91,106.84,25.73,25.400000000000002,25.23,25.04,24.85,24.66,24.47,24.29,23.91,N/A,N/A +2012,10,12,16,30,102150,100980,99850,87.86,29.3,5.12,5.57,5.72,5.84,5.93,6.01,6.09,6.15,6.29,119.01,118.12,117.51,116.98,116.55,116.19,115.94,115.73,115.61,25.400000000000002,25.07,24.91,24.73,24.55,24.38,24.2,24.03,23.67,N/A,N/A +2012,10,12,17,30,102130,100960,99830,84.94,0,3.24,3.66,3.87,4.13,4.42,4.75,5.0200000000000005,5.26,5.64,105.24000000000001,109.77,112.55,115.46000000000001,118.05,120.51,122.42,124.04,126.03,25.5,25.22,25.080000000000002,24.93,24.79,24.66,24.51,24.36,24.02,N/A,N/A +2012,10,12,18,30,102150,100980,99850,81.85000000000001,0,6.45,7.01,7.13,7.19,7.23,7.25,7.26,7.2700000000000005,7.2700000000000005,123.51,123.37,123.33,123.31,123.31,123.32000000000001,123.33,123.35000000000001,123.39,26.05,25.740000000000002,25.580000000000002,25.38,25.19,25,24.8,24.62,24.240000000000002,N/A,N/A +2012,10,12,19,30,102130,100960,99840,81.16,0,5.7700000000000005,6.22,6.32,6.36,6.390000000000001,6.41,6.41,6.42,6.41,106.45,106.72,106.88,107.05,107.22,107.38,107.54,107.69,108,26.01,25.7,25.53,25.330000000000002,25.14,24.95,24.76,24.57,24.19,N/A,N/A +2012,10,12,20,30,102090,100930,99800,82.36,0,6.05,6.55,6.66,6.71,6.75,6.7700000000000005,6.78,6.79,6.79,108,108.34,108.57000000000001,108.81,109.02,109.23,109.45,109.66,110.11,25.96,25.64,25.47,25.27,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A +2012,10,12,21,30,102070,100910,99780,84.63,0,6.55,7.11,7.22,7.28,7.3100000000000005,7.33,7.33,7.33,7.3100000000000005,104.04,104.46000000000001,104.68,104.88,105.06,105.21000000000001,105.36,105.49000000000001,105.76,25.91,25.59,25.43,25.23,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A +2012,10,12,22,30,102060,100890,99770,85.44,0,7.25,7.91,8.05,8.13,8.17,8.19,8.2,8.21,8.19,105.14,105.3,105.36,105.41,105.46000000000001,105.49000000000001,105.54,105.58,105.66,25.8,25.48,25.310000000000002,25.12,24.92,24.73,24.54,24.36,23.97,N/A,N/A +2012,10,12,23,30,102070,100910,99780,85.76,0,7.5200000000000005,8.19,8.34,8.41,8.45,8.48,8.49,8.49,8.48,106.77,106.79,106.85000000000001,106.91,106.98,107.04,107.13,107.2,107.38,25.72,25.39,25.21,25.01,24.830000000000002,24.64,24.44,24.26,23.88,N/A,N/A +2012,10,13,0,30,102050,100880,99760,87.65,0,7.96,8.69,8.870000000000001,8.97,9.03,9.07,9.1,9.13,9.16,99.7,100.07000000000001,100.28,100.51,100.71000000000001,100.92,101.14,101.36,101.82000000000001,25.66,25.330000000000002,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.2,23.82,N/A,N/A +2012,10,13,1,30,102030,100870,99740,87.26,0,8.88,9.790000000000001,10,10.120000000000001,10.200000000000001,10.26,10.290000000000001,10.32,10.34,112.04,112.46000000000001,112.61,112.75,112.87,112.97,113.07000000000001,113.17,113.38,25.830000000000002,25.5,25.330000000000002,25.13,24.93,24.75,24.55,24.37,23.98,N/A,N/A +2012,10,13,2,30,102030,100870,99750,87.47,0,8.21,9.040000000000001,9.23,9.34,9.4,9.44,9.450000000000001,9.46,9.44,120.32000000000001,120.68,120.85000000000001,121,121.14,121.27,121.4,121.52,121.8,25.94,25.63,25.46,25.26,25.080000000000002,24.89,24.7,24.52,24.14,N/A,N/A +2012,10,13,3,30,102010,100850,99730,87.12,0,8.26,8.99,9.15,9.21,9.26,9.28,9.290000000000001,9.31,9.370000000000001,122.13,122.04,122.06,122.13,122.24000000000001,122.37,122.59,122.83,123.8,25.810000000000002,25.5,25.330000000000002,25.150000000000002,24.97,24.79,24.62,24.45,24.14,N/A,N/A +2012,10,13,4,30,101990,100830,99700,89.56,6.2,7.8500000000000005,8.67,8.91,9.07,9.19,9.290000000000001,9.370000000000001,9.44,9.55,125.71000000000001,126.2,126.43,126.69,126.93,127.17,127.41,127.64,128.07,25.72,25.400000000000002,25.240000000000002,25.05,24.87,24.69,24.5,24.32,23.96,N/A,N/A +2012,10,13,5,30,101960,100800,99670,87.89,0,8.9,9.76,9.950000000000001,10.05,10.11,10.15,10.18,10.200000000000001,10.24,125.09,125.31,125.47,125.66,125.86,126.09,126.36,126.63000000000001,127.38000000000001,25.93,25.62,25.46,25.26,25.080000000000002,24.89,24.7,24.53,24.16,N/A,N/A +2012,10,13,6,30,101960,100800,99680,87.82000000000001,0,8.44,9.290000000000001,9.5,9.620000000000001,9.700000000000001,9.75,9.790000000000001,9.82,9.85,134.45,134.69,134.85,135.03,135.19,135.36,135.54,135.71,136.1,26.03,25.73,25.560000000000002,25.36,25.18,24.990000000000002,24.79,24.61,24.23,N/A,N/A +2012,10,13,7,30,101950,100790,99670,85.53,0,7.78,8.57,8.76,8.870000000000001,8.950000000000001,9.01,9.05,9.09,9.15,149.28,149.19,149.18,149.17000000000002,149.17000000000002,149.16,149.17000000000002,149.19,149.27,26.38,26.11,25.95,25.76,25.580000000000002,25.400000000000002,25.21,25.03,24.66,N/A,N/A +2012,10,13,8,30,101920,100760,99630,83.04,0,8.4,9.27,9.47,9.6,9.68,9.73,9.77,9.8,9.82,155.88,156.02,156.11,156.20000000000002,156.28,156.36,156.44,156.52,156.68,26.5,26.240000000000002,26.09,25.900000000000002,25.72,25.54,25.35,25.17,24.8,N/A,N/A +2012,10,13,9,30,101920,100760,99640,84.8,0,7.87,8.75,8.99,9.15,9.27,9.36,9.44,9.5,9.59,159.69,160,160.1,160.20000000000002,160.27,160.34,160.39000000000001,160.44,160.53,26.5,26.240000000000002,26.09,25.91,25.73,25.54,25.35,25.17,24.8,N/A,N/A +2012,10,13,10,30,101900,100740,99620,81.91,0,9.040000000000001,10.02,10.27,10.43,10.540000000000001,10.63,10.69,10.74,10.82,161.13,161.38,161.54,161.70000000000002,161.86,162.02,162.18,162.33,162.67000000000002,26.63,26.39,26.240000000000002,26.060000000000002,25.88,25.7,25.52,25.34,24.98,N/A,N/A +2012,10,13,11,30,101900,100740,99620,83.26,0,8.78,9.76,10.03,10.200000000000001,10.32,10.42,10.49,10.55,10.64,164.42000000000002,164.46,164.48,164.49,164.5,164.5,164.5,164.5,164.49,26.59,26.34,26.2,26.01,25.830000000000002,25.650000000000002,25.47,25.29,24.92,N/A,N/A +2012,10,13,12,30,101880,100720,99600,84.76,0,9.41,10.46,10.75,10.96,11.11,11.22,11.31,11.38,11.49,165.88,165.16,164.91,164.69,164.51,164.36,164.23,164.12,163.95000000000002,26.580000000000002,26.32,26.16,25.97,25.79,25.61,25.41,25.23,24.85,N/A,N/A +2012,10,13,13,30,101910,100750,99630,84.06,0,10.08,11.21,11.51,11.700000000000001,11.83,11.92,11.99,12.040000000000001,12.1,161.44,161.32,161.33,161.36,161.39000000000001,161.42000000000002,161.46,161.5,161.59,26.48,26.23,26.07,25.88,25.7,25.52,25.330000000000002,25.150000000000002,24.77,N/A,N/A +2012,10,13,14,30,101910,100750,99630,80.69,0,9.57,10.620000000000001,10.870000000000001,11.03,11.13,11.21,11.26,11.3,11.36,162.33,162.42000000000002,162.45000000000002,162.47,162.47,162.47,162.47,162.47,162.45000000000002,26.46,26.2,26.04,25.85,25.67,25.48,25.29,25.11,24.73,N/A,N/A +2012,10,13,15,30,101920,100760,99640,78.56,0,9.93,11.02,11.3,11.47,11.6,11.69,11.76,11.82,11.9,159.35,159.53,159.61,159.70000000000002,159.78,159.86,159.93,160,160.14000000000001,26.44,26.18,26.02,25.84,25.66,25.47,25.28,25.1,24.72,N/A,N/A +2012,10,13,16,30,101890,100730,99600,78.74,0,8.89,9.85,10.08,10.23,10.34,10.42,10.48,10.53,10.6,160.77,161.23,161.45000000000002,161.65,161.83,161.99,162.14000000000001,162.27,162.53,26.48,26.21,26.05,25.86,25.67,25.490000000000002,25.3,25.11,24.73,N/A,N/A +2012,10,13,17,30,101870,100710,99590,79.17,0,9.33,10.32,10.57,10.72,10.82,10.89,10.93,10.97,11.01,154.84,155.25,155.49,155.74,155.96,156.17000000000002,156.37,156.55,156.93,26.41,26.150000000000002,25.990000000000002,25.8,25.62,25.43,25.240000000000002,25.060000000000002,24.68,N/A,N/A +2012,10,13,18,30,101820,100670,99540,78.12,0,8.63,9.540000000000001,9.77,9.91,10.01,10.08,10.13,10.17,10.23,162.05,162.44,162.6,162.76,162.9,163.03,163.15,163.26,163.49,26.490000000000002,26.23,26.07,25.88,25.7,25.52,25.330000000000002,25.150000000000002,24.77,N/A,N/A +2012,10,13,19,30,101790,100640,99520,79.11,0,9.620000000000001,10.69,10.950000000000001,11.11,11.22,11.290000000000001,11.33,11.370000000000001,11.39,160.22,160.45000000000002,160.62,160.79,160.94,161.09,161.23,161.37,161.65,26.52,26.27,26.11,25.92,25.73,25.55,25.36,25.18,24.8,N/A,N/A +2012,10,13,20,30,101730,100570,99450,80.53,0,9.18,10.23,10.52,10.73,10.88,11,11.09,11.17,11.290000000000001,166.39000000000001,166.68,166.79,166.89000000000001,166.98,167.04,167.1,167.15,167.23,26.54,26.29,26.14,25.95,25.77,25.59,25.400000000000002,25.22,24.84,N/A,N/A +2012,10,13,21,30,101700,100540,99420,79.79,0,9.02,9.99,10.25,10.42,10.540000000000001,10.64,10.72,10.78,10.89,168.76,169.25,169.45000000000002,169.63,169.77,169.88,169.98,170.06,170.19,26.57,26.330000000000002,26.19,26,25.830000000000002,25.650000000000002,25.47,25.29,24.92,N/A,N/A +2012,10,13,22,30,101670,100510,99390,80.5,0,9.42,10.450000000000001,10.72,10.89,11.01,11.09,11.15,11.200000000000001,11.27,169.96,169.88,169.84,169.81,169.77,169.74,169.71,169.68,169.62,26.6,26.36,26.2,26.02,25.84,25.66,25.47,25.29,24.92,N/A,N/A +2012,10,13,23,30,101610,100460,99340,80.2,0,9.370000000000001,10.31,10.55,10.69,10.8,10.870000000000001,10.93,10.98,11.07,164.09,164.20000000000002,164.32,164.49,164.66,164.85,165.07,165.27,165.78,26.650000000000002,26.42,26.28,26.11,25.94,25.77,25.59,25.42,25.07,N/A,N/A +2012,10,14,0,30,101620,100470,99350,82.16,0,9.96,11.05,11.36,11.55,11.700000000000001,11.81,11.9,11.97,12.09,169.68,169.78,169.8,169.81,169.81,169.8,169.79,169.77,169.73,26.63,26.400000000000002,26.25,26.07,25.89,25.71,25.53,25.35,24.990000000000002,N/A,N/A +2012,10,14,1,30,101610,100460,99340,80.44,0,9.63,10.700000000000001,10.98,11.19,11.34,11.47,11.56,11.65,11.790000000000001,173.47,173,172.81,172.61,172.43,172.26,172.1,171.94,171.64000000000001,26.84,26.63,26.490000000000002,26.310000000000002,26.14,25.97,25.79,25.61,25.25,N/A,N/A +2012,10,14,2,30,101620,100470,99350,82.72,0,9.75,10.86,11.18,11.4,11.56,11.69,11.790000000000001,11.870000000000001,11.99,170.84,170.99,171.04,171.08,171.11,171.14000000000001,171.17000000000002,171.19,171.23,26.76,26.54,26.39,26.21,26.04,25.86,25.67,25.490000000000002,25.12,N/A,N/A +2012,10,14,3,30,101600,100450,99330,84.66,0,10.38,11.55,11.870000000000001,12.09,12.25,12.370000000000001,12.47,12.55,12.67,164.07,164.34,164.53,164.72,164.9,165.09,165.27,165.44,165.78,26.560000000000002,26.32,26.17,25.98,25.810000000000002,25.63,25.44,25.26,24.900000000000002,N/A,N/A +2012,10,14,4,30,101580,100420,99310,79.94,0,10.950000000000001,12.27,12.64,12.89,13.08,13.22,13.34,13.44,13.59,167.1,167.24,167.34,167.45000000000002,167.55,167.65,167.74,167.83,168.02,26.64,26.41,26.26,26.080000000000002,25.900000000000002,25.72,25.53,25.35,24.98,N/A,N/A +2012,10,14,5,30,101570,100410,99290,81.26,0,10.44,11.68,12.040000000000001,12.290000000000001,12.47,12.620000000000001,12.74,12.84,12.99,172.47,172.85,173.01,173.17000000000002,173.3,173.42000000000002,173.52,173.61,173.77,26.6,26.36,26.21,26.02,25.84,25.66,25.48,25.3,24.92,N/A,N/A +2012,10,14,6,30,101600,100450,99330,79.15,0,10.85,12.09,12.44,12.65,12.8,12.9,12.98,13.030000000000001,13.1,176.26,176.5,176.64000000000001,176.79,176.92000000000002,177.06,177.19,177.31,177.58,26.580000000000002,26.32,26.16,25.97,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A +2012,10,14,7,30,101600,100450,99330,79.03,0,10.18,11.3,11.620000000000001,11.83,11.98,12.09,12.18,12.26,12.370000000000001,181.59,181.87,181.96,182.02,182.05,182.07,182.07,182.07,182.04,26.57,26.310000000000002,26.150000000000002,25.96,25.78,25.59,25.400000000000002,25.21,24.830000000000002,N/A,N/A +2012,10,14,8,30,101570,100410,99290,75.07000000000001,0,11.22,12.46,12.76,12.93,13.040000000000001,13.120000000000001,13.18,13.22,13.26,186.37,186.39000000000001,186.36,186.31,186.24,186.17000000000002,186.1,186.03,185.88,26.650000000000002,26.39,26.23,26.04,25.86,25.67,25.48,25.3,24.92,N/A,N/A +2012,10,14,9,30,101620,100470,99350,72.62,0,9.41,10.43,10.71,10.88,11,11.09,11.15,11.21,11.28,188.97,188.9,188.93,188.97,189.01,189.05,189.1,189.14000000000001,189.23,26.72,26.47,26.32,26.13,25.95,25.76,25.57,25.38,25,N/A,N/A +2012,10,14,10,30,101620,100460,99340,73.71000000000001,0,10.21,11.290000000000001,11.57,11.72,11.83,11.89,11.94,11.96,11.99,194.18,194.12,194.08,194.02,193.96,193.89000000000001,193.82,193.75,193.6,26.7,26.46,26.310000000000002,26.12,25.94,25.76,25.57,25.39,25.02,N/A,N/A +2012,10,14,11,30,101650,100500,99380,75.25,0,9.73,10.77,11.07,11.25,11.38,11.48,11.56,11.620000000000001,11.72,193.4,192.98000000000002,192.81,192.65,192.52,192.4,192.3,192.21,192.04,26.64,26.39,26.240000000000002,26.04,25.86,25.68,25.48,25.3,24.92,N/A,N/A +2012,10,14,12,30,101700,100540,99420,73.56,0,7.74,8.5,8.700000000000001,8.82,8.9,8.96,9.01,9.040000000000001,9.09,199.25,198.92000000000002,198.78,198.61,198.45000000000002,198.3,198.16,198.03,197.77,26.72,26.490000000000002,26.34,26.150000000000002,25.97,25.78,25.59,25.41,25.04,N/A,N/A +2012,10,14,13,30,101720,100570,99450,74.05,0,7.72,8.53,8.76,8.89,8.99,9.06,9.11,9.15,9.200000000000001,199.34,199.65,199.77,199.9,200.02,200.14000000000001,200.26,200.37,200.59,26.740000000000002,26.5,26.34,26.150000000000002,25.97,25.78,25.59,25.400000000000002,25.02,N/A,N/A +2012,10,14,14,30,101750,100600,99480,74.73,0,6.71,7.390000000000001,7.57,7.69,7.7700000000000005,7.83,7.88,7.91,7.96,198.81,198.77,198.84,198.95000000000002,199.05,199.16,199.27,199.37,199.59,26.76,26.52,26.37,26.17,25.990000000000002,25.8,25.61,25.43,25.05,N/A,N/A +2012,10,14,15,30,101770,100610,99490,72,0,6.0600000000000005,6.59,6.72,6.78,6.82,6.8500000000000005,6.87,6.88,6.88,203.92000000000002,204.17000000000002,204.32,204.45000000000002,204.56,204.67000000000002,204.76,204.85,205.03,26.810000000000002,26.57,26.42,26.23,26.05,25.86,25.67,25.490000000000002,25.11,N/A,N/A +2012,10,14,16,30,101740,100580,99460,73.01,0,5.66,6.15,6.26,6.3100000000000005,6.3500000000000005,6.37,6.38,6.390000000000001,6.390000000000001,207.4,207.46,207.46,207.44,207.43,207.42000000000002,207.41,207.41,207.38,26.73,26.490000000000002,26.330000000000002,26.14,25.96,25.77,25.580000000000002,25.400000000000002,25.03,N/A,N/A +2012,10,14,17,30,101740,100580,99460,75.83,0,6.17,6.72,6.8500000000000005,6.92,6.96,6.98,6.99,6.99,6.98,210.86,210.83,210.82,210.77,210.73000000000002,210.68,210.62,210.56,210.42000000000002,26.69,26.43,26.27,26.080000000000002,25.89,25.7,25.51,25.330000000000002,24.95,N/A,N/A +2012,10,14,18,30,101700,100550,99420,74.96000000000001,0,5.75,6.24,6.34,6.4,6.43,6.45,6.47,6.48,6.49,211.27,211.3,211.31,211.32,211.33,211.34,211.34,211.36,211.36,26.66,26.39,26.23,26.03,25.85,25.66,25.47,25.29,24.91,N/A,N/A +2012,10,14,19,30,101700,100550,99420,77.07000000000001,0,5.51,5.98,6.09,6.140000000000001,6.17,6.2,6.21,6.21,6.22,207.8,208.05,208.09,208.14000000000001,208.20000000000002,208.25,208.32,208.38,208.52,26.71,26.43,26.27,26.07,25.89,25.69,25.5,25.32,24.94,N/A,N/A +2012,10,14,20,30,101690,100530,99410,77.62,0,6.05,6.57,6.7,6.76,6.8,6.82,6.83,6.84,6.82,206.52,206.56,206.54,206.52,206.51,206.49,206.48000000000002,206.47,206.43,26.740000000000002,26.490000000000002,26.330000000000002,26.13,25.95,25.77,25.57,25.39,25.01,N/A,N/A +2012,10,14,21,30,101750,100590,99450,76.46000000000001,7.7,7.23,7.72,7.82,7.8500000000000005,7.87,7.88,7.890000000000001,7.9,7.94,207.11,208.09,208.68,209.34,210.05,210.78,211.71,212.6,215.32,24.71,24.34,24.17,23.990000000000002,23.82,23.66,23.490000000000002,23.34,23.05,N/A,N/A +2012,10,14,22,30,101670,100510,99380,81.16,1.5,6.38,6.82,6.93,6.99,7.04,7.1000000000000005,7.23,7.37,7.9,254.35,253.36,252.81,252.11,251.3,250.36,248.84,247.17000000000002,240.94,24.76,24.41,24.25,24.07,23.91,23.76,23.64,23.53,23.56,N/A,N/A +2012,10,14,23,30,101600,100440,99310,71.18,0,4.22,4.37,4.36,4.3,4.26,4.23,4.22,4.21,4.09,225.55,224.69,224.17000000000002,223.4,222.06,220.03,216.55,212.53,204.56,25.42,25.12,24.97,24.79,24.66,24.54,24.490000000000002,24.48,24.57,N/A,N/A +2012,10,15,0,30,101580,100420,99300,66.81,0,1.21,1.6300000000000001,1.93,2.32,2.68,3.0500000000000003,3.37,3.66,4.12,249.56,232.66,221.79,215.72,211.66,209.72,208.75,208.32,208.26,26.39,26.560000000000002,26.69,26.84,26.86,26.77,26.63,26.46,26.080000000000002,N/A,N/A +2012,10,15,1,30,101630,100470,99350,72.77,0,2.2600000000000002,2.38,2.42,2.54,2.7800000000000002,3.22,3.61,3.94,4.47,234.92000000000002,234.04,233.26,231.81,230.21,228.05,226.59,225.64000000000001,224.62,26.42,26.16,26.03,25.89,25.86,25.96,25.98,25.97,25.78,N/A,N/A +2012,10,15,2,30,101630,100470,99350,81.91,0,1.68,1.8,1.83,1.86,1.9000000000000001,1.95,2.09,2.2800000000000002,2.95,227.3,227.14000000000001,227.07,227.02,227.15,227.44,228.23000000000002,229.24,231.68,26.26,25.97,25.8,25.61,25.43,25.25,25.09,24.95,24.77,N/A,N/A +2012,10,15,3,30,101630,100480,99360,84.01,0,3.49,3.75,3.81,3.84,3.86,3.88,3.89,3.9,3.99,270.05,269.51,269.01,268.53000000000003,268.16,267.89,267.64,267.39,266.75,26.330000000000002,26.05,25.89,25.69,25.51,25.330000000000002,25.150000000000002,24.97,24.61,N/A,N/A +2012,10,15,4,30,101650,100490,99370,82.07000000000001,0,2.14,2.29,2.34,2.4,2.5,2.63,2.84,3.09,3.52,283.74,281.49,279.45,276.79,273.72,269.85,266.28000000000003,262.84000000000003,258.72,26.13,25.830000000000002,25.67,25.48,25.3,25.11,24.93,24.76,24.41,N/A,N/A +2012,10,15,5,30,101650,100490,99370,83.23,0,2.35,2.48,2.5100000000000002,2.58,2.75,3.0100000000000002,3.31,3.63,3.99,290.81,289.17,287.88,285.78000000000003,282.75,278.5,274.40000000000003,270.38,268.88,25.900000000000002,25.6,25.44,25.27,25.13,25.01,24.91,24.830000000000002,24.62,N/A,N/A +2012,10,15,6,30,101660,100500,99380,84.09,0,3.8200000000000003,3.98,3.98,3.96,3.93,3.91,3.88,3.86,3.86,311.11,310.43,309.98,309.43,308.87,308.24,307.46,306.63,304.2,25.62,25.3,25.14,24.94,24.76,24.57,24.39,24.21,23.85,N/A,N/A +2012,10,15,7,30,101700,100540,99410,81.29,0,3.93,4.11,4.14,4.14,4.13,4.12,4.12,4.12,4.17,319.49,319.38,319.31,319.2,319.07,318.90000000000003,318.62,318.33,317,25.38,25.05,24.88,24.68,24.5,24.32,24.13,23.96,23.61,N/A,N/A +2012,10,15,8,30,101710,100550,99420,83.43,0,4.44,4.7,4.76,4.78,4.8,4.8100000000000005,4.82,4.83,4.86,320.11,320.3,320.45,320.61,320.75,320.89,321.02,321.15000000000003,321.40000000000003,25.2,24.85,24.68,24.48,24.29,24.1,23.91,23.73,23.35,N/A,N/A +2012,10,15,9,30,101700,100530,99410,83.8,0,3.67,3.99,4.1,4.18,4.25,4.3100000000000005,4.37,4.42,4.51,335.2,335.82,336.03000000000003,336.16,336.22,336.25,336.24,336.2,336.03000000000003,25,24.650000000000002,24.48,24.28,24.09,23.900000000000002,23.71,23.52,23.14,N/A,N/A +2012,10,15,10,30,101710,100550,99420,72.45,0,6.01,6.4,6.48,6.51,6.51,6.51,6.49,6.48,6.44,12.73,12.8,12.870000000000001,12.93,13,13.06,13.13,13.19,13.35,24.84,24.47,24.3,24.1,23.91,23.72,23.53,23.35,22.98,N/A,N/A +2012,10,15,11,30,101690,100530,99390,70.41,0,7.88,8.46,8.57,8.61,8.63,8.64,8.64,8.64,8.64,25.740000000000002,25.96,26.13,26.310000000000002,26.490000000000002,26.67,26.87,27.080000000000002,27.580000000000002,24.54,24.150000000000002,23.97,23.78,23.59,23.41,23.23,23.06,22.72,N/A,N/A +2012,10,15,12,30,101720,100550,99420,69.10000000000001,0,8.24,8.84,8.97,9.01,9.03,9.03,9.02,9.01,8.97,26.41,26.63,26.75,26.88,27.01,27.13,27.26,27.39,27.69,24.27,23.86,23.67,23.47,23.28,23.1,22.91,22.73,22.37,N/A,N/A +2012,10,15,13,30,101730,100550,99410,72.12,0,8.05,8.6,8.71,8.74,8.76,8.76,8.75,8.74,8.71,29.44,29.7,29.87,30.04,30.2,30.36,30.52,30.67,31.05,23.330000000000002,22.87,22.68,22.48,22.28,22.1,21.91,21.740000000000002,21.39,N/A,N/A +2012,10,15,14,30,101750,100580,99440,73.53,0,7.47,7.99,8.1,8.15,8.18,8.2,8.22,8.23,8.27,34.03,34.28,34.43,34.59,34.730000000000004,34.87,35.03,35.18,35.54,23.150000000000002,22.69,22.490000000000002,22.29,22.1,21.91,21.72,21.55,21.2,N/A,N/A +2012,10,15,15,30,101740,100570,99430,69.09,0,7.54,8.08,8.19,8.25,8.28,8.3,8.31,8.32,8.34,42.78,43,43.160000000000004,43.300000000000004,43.44,43.58,43.72,43.85,44.18,23.400000000000002,22.95,22.75,22.55,22.35,22.17,21.97,21.79,21.43,N/A,N/A +2012,10,15,16,30,101720,100540,99400,64.55,0,6.87,7.33,7.44,7.49,7.5200000000000005,7.54,7.55,7.5600000000000005,7.58,36.75,36.96,37.11,37.25,37.39,37.53,37.68,37.82,38.17,23.740000000000002,23.31,23.12,22.92,22.73,22.54,22.35,22.17,21.81,N/A,N/A +2012,10,15,17,30,101680,100510,99370,60.84,0,6.11,6.53,6.63,6.68,6.72,6.74,6.7700000000000005,6.79,6.83,30.11,30.09,30.12,30.14,30.150000000000002,30.16,30.18,30.2,30.25,24.19,23.79,23.61,23.41,23.22,23.03,22.84,22.66,22.28,N/A,N/A +2012,10,15,18,30,101660,100490,99360,55.870000000000005,0,4.89,5.22,5.3,5.34,5.38,5.41,5.43,5.45,5.49,41.08,40.63,40.29,39.95,39.65,39.35,39.04,38.75,38.13,24.84,24.48,24.3,24.1,23.92,23.73,23.53,23.35,22.97,N/A,N/A +2012,10,15,19,30,101640,100470,99340,53.29,0,3.5100000000000002,3.72,3.77,3.8000000000000003,3.8200000000000003,3.84,3.85,3.86,3.89,57.910000000000004,57.02,56.42,55.84,55.300000000000004,54.78,54.25,53.74,52.660000000000004,25.150000000000002,24.82,24.650000000000002,24.45,24.26,24.07,23.88,23.69,23.31,N/A,N/A +2012,10,15,20,30,101590,100420,99290,53.660000000000004,0,3.06,3.18,3.19,3.18,3.17,3.16,3.15,3.13,3.1,76.14,75.3,74.7,74.11,73.54,73,72.4,71.83,70.56,25.23,24.900000000000002,24.72,24.53,24.330000000000002,24.14,23.95,23.77,23.38,N/A,N/A +2012,10,15,21,30,101560,100390,99260,52.76,0,1.86,1.92,1.93,1.93,1.92,1.92,1.9100000000000001,1.9000000000000001,1.8800000000000001,89.03,88.18,87.73,87.24,86.76,86.27,85.69,85.14,83.68,25.35,25.03,24.86,24.66,24.47,24.28,24.09,23.91,23.53,N/A,N/A +2012,10,15,22,30,101510,100350,99220,51.9,0,1.8,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,82.74,81.91,81.32000000000001,80.72,80.12,79.5,78.79,78.12,76.35000000000001,25.47,25.16,24.990000000000002,24.79,24.6,24.42,24.22,24.04,23.66,N/A,N/A +2012,10,15,23,30,101510,100340,99220,51.7,0,1.1,1.1300000000000001,1.1300000000000001,1.1300000000000001,1.1300000000000001,1.12,1.12,1.11,1.1,119.47,118.45,117.69,116.9,116.13,115.37,114.53,113.74000000000001,111.84,25.55,25.240000000000002,25.07,24.87,24.68,24.5,24.3,24.12,23.740000000000002,N/A,N/A +2012,10,16,0,30,101500,100340,99210,51.910000000000004,0,1.1,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,125.18,123.89,123.09,122.28,121.5,120.74000000000001,119.92,119.17,117.4,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.53,24.330000000000002,24.14,23.76,N/A,N/A +2012,10,16,1,30,101500,100340,99210,52.050000000000004,0,0.49,0.52,0.53,0.54,0.55,0.56,0.5700000000000001,0.58,0.61,91.67,88.09,86.26,84.5,82.83,81.2,79.59,78.09,74.94,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.52,24.330000000000002,24.14,23.76,N/A,N/A +2012,10,16,2,30,101510,100350,99220,53.51,0,1.2,1.27,1.29,1.31,1.32,1.34,1.35,1.36,1.3900000000000001,58.77,57.47,56.82,56.2,55.64,55.120000000000005,54.59,54.1,53.13,25.560000000000002,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.73,N/A,N/A +2012,10,16,3,30,101500,100340,99210,53.14,0,4.25,4.5,4.5,4.48,4.45,4.42,4.38,4.34,4.25,40.79,41.13,41.32,41.52,41.7,41.87,42.050000000000004,42.22,42.51,25.66,25.35,25.18,24.98,24.79,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A +2012,10,16,4,30,101480,100310,99190,52.21,0,5.87,6.2700000000000005,6.34,6.36,6.37,6.37,6.36,6.3500000000000005,6.3100000000000005,52.14,52.65,52.94,53.21,53.46,53.68,53.910000000000004,54.120000000000005,54.550000000000004,25.51,25.19,25.02,24.82,24.63,24.44,24.25,24.060000000000002,23.67,N/A,N/A +2012,10,16,5,30,101460,100290,99160,52.34,0,5.89,6.2700000000000005,6.33,6.34,6.34,6.33,6.3100000000000005,6.29,6.24,62.18,62.38,62.49,62.61,62.72,62.82,62.93,63.02,63.24,25.38,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A +2012,10,16,6,30,101460,100300,99170,57.28,0,5.22,5.57,5.65,5.68,5.7,5.72,5.73,5.73,5.73,69.42,70.25,70.75,71.22,71.64,72.03,72.42,72.78,73.51,25.28,24.96,24.79,24.59,24.39,24.21,24.01,23.82,23.44,N/A,N/A +2012,10,16,7,30,101440,100280,99150,57.07,0,5.37,5.73,5.8,5.83,5.8500000000000005,5.86,5.86,5.86,5.8500000000000005,81,81.77,82.17,82.55,82.88,83.19,83.5,83.78,84.34,25.25,24.91,24.740000000000002,24.54,24.35,24.16,23.96,23.77,23.38,N/A,N/A +2012,10,16,8,30,101430,100270,99140,57.74,0,5.28,5.66,5.74,5.78,5.8100000000000005,5.83,5.8500000000000005,5.86,5.87,90.98,91.49,91.81,92.13,92.43,92.71000000000001,92.99,93.24,93.78,25.23,24.900000000000002,24.72,24.52,24.330000000000002,24.14,23.94,23.76,23.37,N/A,N/A +2012,10,16,9,30,101410,100250,99120,59.67,0,5.04,5.38,5.46,5.5,5.53,5.55,5.57,5.58,5.6000000000000005,101.17,101.58,101.87,102.18,102.45,102.72,102.99000000000001,103.24000000000001,103.76,25.09,24.75,24.57,24.37,24.18,23.990000000000002,23.79,23.61,23.22,N/A,N/A +2012,10,16,10,30,101390,100230,99100,59.870000000000005,0,5.07,5.4,5.47,5.5,5.5200000000000005,5.53,5.54,5.54,5.54,111.53,112,112.27,112.53,112.76,112.98,113.2,113.4,113.81,25.12,24.78,24.6,24.400000000000002,24.21,24.02,23.82,23.63,23.240000000000002,N/A,N/A +2012,10,16,11,30,101390,100220,99100,60.56,0,4.86,5.18,5.23,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.26,117.05,117.34,117.5,117.65,117.79,117.93,118.06,118.19,118.48,25.03,24.68,24.51,24.310000000000002,24.11,23.92,23.72,23.54,23.150000000000002,N/A,N/A +2012,10,16,12,30,101380,100210,99090,62.6,0,4.64,4.94,5,5.03,5.05,5.0600000000000005,5.07,5.08,5.08,123.66,124.09,124.36,124.63000000000001,124.86,125.08,125.3,125.51,125.93,25.03,24.69,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.150000000000002,N/A,N/A +2012,10,16,13,30,101350,100190,99060,64.24,0,4.3,4.6000000000000005,4.68,4.72,4.76,4.8,4.82,4.8500000000000005,4.89,131.75,131.93,132.08,132.24,132.38,132.52,132.66,132.8,133.09,24.95,24.6,24.42,24.22,24.03,23.84,23.64,23.45,23.06,N/A,N/A +2012,10,16,14,30,101370,100200,99080,66.73,0,4.82,5.11,5.17,5.19,5.21,5.22,5.22,5.22,5.21,137.8,138.4,138.77,139.11,139.42000000000002,139.71,139.99,140.26,140.77,24.97,24.62,24.44,24.240000000000002,24.05,23.85,23.66,23.47,23.080000000000002,N/A,N/A +2012,10,16,15,30,101340,100180,99050,68.11,0,3.96,4.23,4.3,4.3500000000000005,4.38,4.41,4.43,4.46,4.49,147.44,147.23,147.08,146.96,146.85,146.75,146.67000000000002,146.59,146.44,24.98,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A +2012,10,16,16,30,101310,100150,99030,68.77,0,3.95,4.18,4.23,4.26,4.28,4.29,4.3100000000000005,4.32,4.32,148.13,148.67000000000002,148.96,149.24,149.48,149.70000000000002,149.91,150.11,150.48,25.05,24.7,24.53,24.32,24.13,23.94,23.740000000000002,23.56,23.16,N/A,N/A +2012,10,16,17,30,101290,100130,99010,69,0,3.35,3.5700000000000003,3.64,3.68,3.72,3.75,3.7800000000000002,3.81,3.85,155.19,155.18,155.18,155.18,155.18,155.19,155.20000000000002,155.22,155.25,25.07,24.73,24.55,24.35,24.16,23.96,23.77,23.580000000000002,23.19,N/A,N/A +2012,10,16,18,30,101240,100090,98960,67.9,0,3.11,3.29,3.34,3.37,3.4,3.42,3.44,3.45,3.48,160.49,160.58,160.69,160.81,160.93,161.05,161.17000000000002,161.28,161.55,25.21,24.87,24.69,24.490000000000002,24.3,24.1,23.91,23.72,23.34,N/A,N/A +2012,10,16,19,30,101220,100060,98940,69.11,0,2.92,3.08,3.12,3.14,3.16,3.17,3.18,3.19,3.2,156.37,156.66,156.94,157.21,157.47,157.72,157.98,158.21,158.71,25.22,24.89,24.71,24.51,24.32,24.13,23.93,23.740000000000002,23.36,N/A,N/A +2012,10,16,20,30,101150,100000,98870,69.39,0,2.07,2.21,2.2600000000000002,2.29,2.33,2.35,2.38,2.4,2.45,161.76,162.32,162.68,163,163.27,163.51,163.75,163.98,164.38,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A +2012,10,16,21,30,101120,99960,98840,69.21000000000001,0,2.48,2.61,2.64,2.66,2.67,2.68,2.69,2.7,2.72,164.66,165.53,166.03,166.47,166.84,167.19,167.51,167.8,168.33,25.310000000000002,24.98,24.810000000000002,24.61,24.42,24.22,24.03,23.84,23.45,N/A,N/A +2012,10,16,22,30,101090,99940,98820,70.59,0,2.94,3.04,3.04,3.02,3,2.98,2.96,2.94,2.9,145.52,146.23,146.69,147.16,147.59,148.01,148.44,148.84,149.65,25.32,25,24.830000000000002,24.62,24.43,24.240000000000002,24.05,23.86,23.47,N/A,N/A +2012,10,16,23,30,101080,99920,98800,70.63,0,2.15,2.22,2.23,2.22,2.22,2.22,2.21,2.2,2.19,124.29,125.5,126.36,127.21000000000001,127.97,128.7,129.42000000000002,130.1,131.44,25.3,24.98,24.810000000000002,24.6,24.41,24.22,24.02,23.84,23.45,N/A,N/A +2012,10,17,0,30,101060,99910,98780,72.17,0.7000000000000001,2.04,2.09,2.08,2.07,2.05,2.04,2.02,2,1.96,85.85000000000001,86.11,86.29,86.5,86.7,86.9,87.12,87.34,87.84,24.97,24.64,24.46,24.26,24.07,23.88,23.69,23.5,23.12,N/A,N/A +2012,10,17,1,30,101070,99910,98790,74.87,0.4,2.9,2.88,2.7800000000000002,2.66,2.5500000000000003,2.44,2.34,2.24,2.06,10.9,12.13,13.35,14.84,16.32,17.86,19.580000000000002,21.2,25.01,24.52,24.18,24.02,23.84,23.66,23.48,23.3,23.13,22.77,N/A,N/A +2012,10,17,2,30,101090,99930,98800,87.8,0.7000000000000001,5.5,5.65,5.61,5.5,5.37,5.22,5.01,4.8,3.93,0.54,1.31,1.86,2.54,3.29,4.13,5.4,6.72,15.18,22.96,22.53,22.34,22.14,21.97,21.79,21.62,21.47,21.26,N/A,N/A +2012,10,17,3,30,101080,99910,98780,82.68,3.3000000000000003,6.19,6.47,6.49,6.46,6.41,6.36,6.29,6.22,6.0200000000000005,15.55,15.92,16.22,16.54,16.87,17.21,17.62,18.02,19.23,22.73,22.27,22.07,21.87,21.68,21.490000000000002,21.3,21.12,20.76,N/A,N/A +2012,10,17,4,30,101060,99900,98760,78.69,2.6,3.2600000000000002,3.35,3.35,3.33,3.3000000000000003,3.27,3.23,3.19,3.08,28.19,29.03,29.63,30.26,30.900000000000002,31.59,32.43,33.25,35.84,22.78,22.37,22.18,21.98,21.79,21.6,21.41,21.23,20.86,N/A,N/A +2012,10,17,5,30,100970,99810,98680,80.09,0.4,3.73,3.94,3.98,4,4.03,4.05,4.07,4.1,4.19,132.09,133.17000000000002,133.67000000000002,134.26,134.86,135.49,136.25,136.99,139.15,22.94,22.53,22.34,22.14,21.95,21.76,21.57,21.39,21.04,N/A,N/A +2012,10,17,6,30,100920,99760,98630,78.53,0,6.75,7.32,7.48,7.58,7.66,7.73,7.79,7.84,7.930000000000001,162.74,162.69,162.64000000000001,162.6,162.56,162.54,162.51,162.5,162.47,24.03,23.63,23.44,23.240000000000002,23.05,22.85,22.66,22.48,22.09,N/A,N/A +2012,10,17,7,30,100920,99770,98640,80.43,0,8.040000000000001,8.69,8.86,8.94,9,9.03,9.06,9.08,9.09,180.78,180.75,180.75,180.74,180.75,180.75,180.77,180.79,180.86,24.03,23.61,23.42,23.21,23.02,22.830000000000002,22.63,22.45,22.07,N/A,N/A +2012,10,17,8,30,100890,99730,98610,61.92,0,7.32,7.94,8.08,8.15,8.19,8.23,8.25,8.26,8.27,179.88,179.51,179.43,179.37,179.3,179.24,179.18,179.13,179.01,25.23,24.89,24.71,24.51,24.32,24.13,23.93,23.740000000000002,23.36,N/A,N/A +2012,10,17,9,30,100900,99740,98620,79.39,0,8.46,9.16,9.32,9.38,9.42,9.43,9.43,9.43,9.4,174.75,174.98,175.18,175.38,175.57,175.76,175.95000000000002,176.14000000000001,176.54,24.66,24.27,24.080000000000002,23.87,23.68,23.490000000000002,23.29,23.1,22.72,N/A,N/A +2012,10,17,10,30,100890,99730,98610,67.89,0,7.67,8.27,8.41,8.47,8.51,8.53,8.540000000000001,8.55,8.57,189.08,189.25,189.29,189.36,189.44,189.52,189.62,189.72,189.99,25.16,24.82,24.650000000000002,24.46,24.27,24.09,23.900000000000002,23.73,23.37,N/A,N/A +2012,10,17,11,30,100890,99740,98620,69.15,0,7.8,8.46,8.6,8.67,8.71,8.74,8.76,8.77,8.790000000000001,172.35,172.57,172.73,172.91,173.09,173.28,173.48,173.69,174.21,25.240000000000002,24.900000000000002,24.73,24.53,24.34,24.150000000000002,23.96,23.78,23.400000000000002,N/A,N/A +2012,10,17,12,30,100890,99740,98620,79.39,0,8.32,9.15,9.38,9.53,9.64,9.73,9.8,9.85,9.950000000000001,176.72,176.85,176.95000000000002,177.06,177.17000000000002,177.26,177.37,177.48,177.70000000000002,25.55,25.23,25.060000000000002,24.86,24.67,24.48,24.29,24.1,23.72,N/A,N/A +2012,10,17,13,30,100860,99710,98590,75.99,0,8.56,9.450000000000001,9.67,9.81,9.9,9.97,10.02,10.05,10.1,187.77,187.6,187.51,187.45000000000002,187.41,187.38,187.36,187.34,187.34,26.1,25.82,25.66,25.47,25.28,25.09,24.900000000000002,24.72,24.330000000000002,N/A,N/A +2012,10,17,14,30,100870,99720,98610,77.29,0,9.47,10.43,10.69,10.82,10.91,10.97,11,11.03,11.040000000000001,189.82,189.9,189.98,190.06,190.14000000000001,190.20000000000002,190.27,190.32,190.43,26.23,25.97,25.810000000000002,25.62,25.44,25.25,25.060000000000002,24.87,24.5,N/A,N/A +2012,10,17,15,30,100850,99700,98590,78.51,0,8.99,9.950000000000001,10.18,10.32,10.42,10.48,10.53,10.56,10.6,191.49,191.51,191.5,191.48000000000002,191.45000000000002,191.43,191.39000000000001,191.35,191.28,26.21,25.94,25.78,25.580000000000002,25.400000000000002,25.21,25.02,24.830000000000002,24.45,N/A,N/A +2012,10,17,16,30,100820,99680,98560,81.47,0,9.28,10.27,10.53,10.69,10.8,10.88,10.94,10.99,11.06,189.14000000000001,189.31,189.39000000000001,189.48,189.56,189.64000000000001,189.71,189.78,189.93,26.17,25.900000000000002,25.740000000000002,25.54,25.36,25.17,24.97,24.79,24.41,N/A,N/A +2012,10,17,17,30,100760,99610,98500,82.92,0,9.49,10.5,10.77,10.92,11.03,11.11,11.17,11.21,11.27,192.39000000000001,192.36,192.35,192.34,192.33,192.31,192.28,192.27,192.22,26.27,26,25.84,25.650000000000002,25.46,25.28,25.080000000000002,24.900000000000002,24.52,N/A,N/A +2012,10,17,18,30,100730,99580,98470,87.60000000000001,0,9.31,10.32,10.58,10.74,10.85,10.92,10.97,11.01,11.05,199.16,199.19,199.22,199.24,199.26,199.27,199.28,199.29,199.31,26.26,25.98,25.82,25.62,25.44,25.25,25.060000000000002,24.87,24.490000000000002,N/A,N/A +2012,10,17,19,30,100720,99570,98470,88.35000000000001,0,8.700000000000001,9.71,10.040000000000001,10.32,10.56,10.76,10.96,11.15,11.51,197.12,198.06,198.53,199.02,199.46,199.89000000000001,200.3,200.69,201.46,26.42,26.2,26.07,25.900000000000002,25.740000000000002,25.57,25.41,25.240000000000002,24.92,N/A,N/A +2012,10,17,20,30,100660,99520,98410,83.59,0,9.4,10.46,10.790000000000001,11.02,11.200000000000001,11.34,11.46,11.56,11.72,204.17000000000002,204.18,204.18,204.17000000000002,204.17000000000002,204.18,204.21,204.25,204.29,26.64,26.43,26.29,26.11,25.94,25.76,25.580000000000002,25.400000000000002,25.04,N/A,N/A +2012,10,17,21,30,100610,99470,98360,83.8,0,8.55,9.94,10.5,10.83,11.09,11.3,11.46,11.59,11.82,206.76,206.06,205.77,206.07,206.29,206.42000000000002,206.51,206.57,206.66,26.69,26.47,26.330000000000002,26.17,26.02,25.86,25.68,25.51,25.150000000000002,N/A,N/A +2012,10,17,22,30,100590,99450,98340,83.3,0,8.33,9.66,10.22,10.59,10.89,11.13,11.33,11.5,11.790000000000001,202.32,202.05,201.96,202.28,202.54,202.74,202.91,203.06,203.35,26.69,26.490000000000002,26.36,26.21,26.07,25.91,25.75,25.580000000000002,25.240000000000002,N/A,N/A +2012,10,17,23,30,100560,99420,98310,85.66,0,8.16,9.200000000000001,9.55,9.85,10.09,10.32,10.53,10.73,11.11,203.1,203.15,203.23000000000002,203.31,203.39000000000001,203.48000000000002,203.57,203.66,203.86,26.71,26.52,26.400000000000002,26.240000000000002,26.09,25.92,25.76,25.6,25.27,N/A,N/A +2012,10,18,0,30,100570,99430,98320,87.32000000000001,0,8.66,9.88,10.34,10.540000000000001,10.73,10.93,11.09,11.22,11.5,196.1,196.09,196.20000000000002,196.39000000000001,196.57,196.75,196.9,197.02,197.33,26.55,26.330000000000002,26.19,26.02,25.87,25.69,25.52,25.35,25,N/A,N/A +2012,10,18,1,30,100570,99430,98320,88.04,0,8.48,9.59,9.98,10.32,10.6,10.85,11.08,11.31,11.72,200.94,201,201.07,201.18,201.31,201.47,201.68,201.92000000000002,202.54,26.7,26.51,26.38,26.22,26.060000000000002,25.900000000000002,25.73,25.57,25.240000000000002,N/A,N/A +2012,10,18,2,30,100610,99470,98370,91.41,0,8.14,9.23,9.61,9.93,10.21,10.450000000000001,10.68,10.88,11.25,207.63,207.87,208.01,208.21,208.42000000000002,208.64000000000001,208.88,209.14000000000001,209.70000000000002,26.740000000000002,26.54,26.41,26.240000000000002,26.080000000000002,25.91,25.740000000000002,25.57,25.23,N/A,N/A +2012,10,18,3,30,100610,99470,98370,93.58,0,7.33,8.35,8.700000000000001,9.03,9.31,9.56,9.8,10.040000000000001,10.48,222.12,222.49,222.73000000000002,223.04,223.35,223.69,224.06,224.45000000000002,225.31,26.740000000000002,26.55,26.43,26.27,26.13,25.97,25.82,25.67,25.37,N/A,N/A +2012,10,18,4,30,100630,99490,98390,94.19,0,5.7700000000000005,6.7,7.0600000000000005,7.4,7.7,7.97,8.23,8.47,8.92,209.85,210.02,210.20000000000002,210.43,210.67000000000002,210.95000000000002,211.25,211.57,212.26,26.71,26.52,26.39,26.23,26.080000000000002,25.92,25.76,25.6,25.27,N/A,N/A +2012,10,18,5,30,100640,99500,98390,94.2,0,4.74,5.53,5.8500000000000005,6.17,6.46,6.73,6.98,7.21,7.62,224.06,223.62,223.37,223.24,223.18,223.19,223.24,223.33,223.56,26.66,26.46,26.330000000000002,26.17,26.02,25.85,25.69,25.53,25.2,N/A,N/A +2012,10,18,6,30,100650,99510,98400,93.34,0,5.5600000000000005,6.73,7.25,7.7700000000000005,8.24,8.71,9.19,9.67,10.57,218.94,218.65,218.57,218.68,219.02,219.63,220.6,221.76,224.69,26.67,26.52,26.41,26.27,26.12,25.97,25.810000000000002,25.650000000000002,25.32,N/A,N/A +2012,10,18,7,30,100700,99560,98460,94.43,0,5.0600000000000005,5.97,6.34,6.74,7.12,7.49,7.83,8.15,8.6,225.51,225.88,226.31,227.07,227.82,228.66,229.34,229.91,230.63,26.61,26.44,26.330000000000002,26.19,26.05,25.900000000000002,25.75,25.6,25.28,N/A,N/A +2012,10,18,8,30,100720,99570,98470,93.92,0,5.9,6.69,6.96,7.18,7.3500000000000005,7.49,7.6000000000000005,7.69,7.8,233.89000000000001,234.41,234.86,235.45000000000002,236.06,236.76,237.67000000000002,238.67000000000002,241.53,26.490000000000002,26.28,26.16,26,25.86,25.72,25.59,25.47,25.240000000000002,N/A,N/A +2012,10,18,9,30,100830,99680,98560,92.47,37,8.76,9.47,9.63,9.68,9.700000000000001,9.68,9.65,9.6,9.46,326.85,328,328.19,328.18,328.14,327.97,327.76,327.46,326.65000000000003,25.61,25.3,25.14,24.93,24.75,24.55,24.37,24.19,23.830000000000002,N/A,N/A +2012,10,18,10,30,100860,99700,98580,80.25,0,12.16,13.34,13.61,13.73,13.8,13.84,13.85,13.85,13.81,30.64,30.84,30.93,31,31.080000000000002,31.14,31.2,31.26,31.38,24.21,23.76,23.57,23.36,23.16,22.98,22.78,22.6,22.23,N/A,N/A +2012,10,18,11,30,100930,99770,98640,65.09,0,13,14.26,14.56,14.700000000000001,14.790000000000001,14.84,14.85,14.86,14.85,34.89,35.14,35.29,35.44,35.58,35.72,35.87,36,36.33,23.830000000000002,23.36,23.16,22.95,22.76,22.57,22.37,22.19,21.82,N/A,N/A +2012,10,18,12,30,100980,99810,98680,66.79,0,12.33,13.49,13.76,13.89,13.97,14.02,14.05,14.06,14.07,42.300000000000004,42.56,42.74,42.92,43.1,43.27,43.46,43.64,44.07,23.29,22.79,22.580000000000002,22.37,22.18,21.990000000000002,21.79,21.62,21.25,N/A,N/A +2012,10,18,13,30,101020,99850,98720,68.64,0,11.65,12.68,12.94,13.06,13.13,13.17,13.19,13.200000000000001,13.19,45.7,46.01,46.230000000000004,46.46,46.67,46.89,47.11,47.33,47.81,23.01,22.5,22.29,22.080000000000002,21.88,21.68,21.490000000000002,21.31,20.93,N/A,N/A +2012,10,18,14,30,101080,99910,98770,66.6,0,12.23,13.36,13.65,13.790000000000001,13.88,13.94,13.97,13.99,14,46.28,46.43,46.53,46.62,46.7,46.78,46.86,46.94,47.11,23.05,22.53,22.32,22.1,21.900000000000002,21.71,21.51,21.330000000000002,20.95,N/A,N/A +2012,10,18,15,30,101110,99940,98800,63.64,0,11.540000000000001,12.58,12.84,12.96,13.040000000000001,13.09,13.120000000000001,13.14,13.14,48.74,48.82,48.870000000000005,48.910000000000004,48.95,48.980000000000004,49.02,49.050000000000004,49.13,22.990000000000002,22.48,22.27,22.05,21.85,21.66,21.46,21.28,20.89,N/A,N/A +2012,10,18,16,30,101160,99990,98850,63.52,0,10.22,11.08,11.290000000000001,11.4,11.47,11.51,11.53,11.55,11.56,46.730000000000004,46.77,46.81,46.85,46.88,46.92,46.96,47,47.08,22.990000000000002,22.5,22.3,22.080000000000002,21.88,21.69,21.490000000000002,21.31,20.92,N/A,N/A +2012,10,18,17,30,101180,100010,98880,58.89,0,9.71,10.52,10.72,10.82,10.89,10.93,10.96,10.98,10.99,45.59,45.65,45.69,45.730000000000004,45.76,45.79,45.81,45.84,45.89,23.28,22.81,22.61,22.400000000000002,22.19,22,21.8,21.61,21.23,N/A,N/A +2012,10,18,18,30,101200,100040,98900,55.35,0,8.620000000000001,9.3,9.47,9.55,9.61,9.65,9.67,9.69,9.700000000000001,47.31,47.13,47.02,46.910000000000004,46.800000000000004,46.69,46.58,46.47,46.24,23.72,23.3,23.1,22.89,22.69,22.5,22.3,22.11,21.72,N/A,N/A +2012,10,18,19,30,101220,100050,98920,51.870000000000005,0,7.68,8.27,8.42,8.49,8.540000000000001,8.58,8.6,8.61,8.63,51.57,51.230000000000004,50.99,50.75,50.53,50.31,50.08,49.870000000000005,49.410000000000004,24.29,23.91,23.73,23.52,23.330000000000002,23.14,22.94,22.76,22.37,N/A,N/A +2012,10,18,20,30,101200,100030,98900,48.43,0,7.29,7.86,8,8.06,8.1,8.13,8.14,8.15,8.16,57.67,57.31,57.07,56.82,56.58,56.35,56.11,55.89,55.39,24.78,24.43,24.26,24.060000000000002,23.86,23.67,23.48,23.29,22.91,N/A,N/A +2012,10,18,21,30,101180,100020,98890,46.79,0,6.86,7.42,7.55,7.61,7.66,7.68,7.71,7.72,7.74,60,59.72,59.52,59.31,59.11,58.910000000000004,58.7,58.5,58.06,25.240000000000002,24.93,24.75,24.560000000000002,24.37,24.18,23.98,23.8,23.41,N/A,N/A +2012,10,18,22,30,101180,100030,98900,46.050000000000004,0,6.7,7.26,7.390000000000001,7.46,7.51,7.54,7.57,7.58,7.61,59.74,59.47,59.32,59.160000000000004,59,58.85,58.69,58.52,58.17,25.63,25.34,25.18,24.98,24.79,24.61,24.41,24.23,23.85,N/A,N/A +2012,10,18,23,30,101190,100030,98910,44.34,0,6.57,7.140000000000001,7.28,7.3500000000000005,7.390000000000001,7.43,7.46,7.48,7.5,58.160000000000004,57.94,57.79,57.64,57.5,57.36,57.21,57.07,56.77,25.93,25.67,25.51,25.32,25.13,24.94,24.75,24.57,24.18,N/A,N/A +2012,10,19,0,30,101220,100060,98940,45.94,0,6.82,7.42,7.55,7.63,7.69,7.73,7.76,7.78,7.8100000000000005,44.33,44.050000000000004,43.97,43.910000000000004,43.86,43.82,43.79,43.75,43.7,25.98,25.72,25.560000000000002,25.36,25.18,24.990000000000002,24.79,24.61,24.22,N/A,N/A +2012,10,19,1,30,101270,100110,98980,45.84,0,8.38,9.07,9.22,9.27,9.31,9.32,9.32,9.31,9.27,35.99,36.54,36.88,37.22,37.53,37.82,38.12,38.39,38.96,25.240000000000002,24.92,24.75,24.55,24.36,24.17,23.98,23.79,23.41,N/A,N/A +2012,10,19,2,30,101300,100130,99000,47.43,0,8.4,9.07,9.22,9.28,9.31,9.32,9.32,9.31,9.28,40.660000000000004,41.02,41.28,41.54,41.77,42,42.230000000000004,42.44,42.9,24.76,24.400000000000002,24.23,24.03,23.830000000000002,23.64,23.45,23.27,22.88,N/A,N/A +2012,10,19,3,30,101320,100150,99020,50.18,0,8.49,9.16,9.31,9.370000000000001,9.41,9.43,9.43,9.43,9.4,43.47,43.910000000000004,44.19,44.46,44.7,44.94,45.18,45.4,45.85,24.5,24.12,23.94,23.740000000000002,23.54,23.35,23.150000000000002,22.97,22.580000000000002,N/A,N/A +2012,10,19,4,30,101330,100160,99030,52.94,0,7.930000000000001,8.52,8.65,8.700000000000001,8.73,8.74,8.75,8.74,8.72,43.65,44.21,44.57,44.93,45.25,45.56,45.86,46.14,46.72,24.21,23.830000000000002,23.64,23.44,23.240000000000002,23.05,22.86,22.67,22.29,N/A,N/A +2012,10,19,5,30,101340,100170,99040,53.61,0,7.640000000000001,8.19,8.3,8.35,8.38,8.4,8.4,8.4,8.370000000000001,44.02,44.53,44.86,45.17,45.46,45.730000000000004,46,46.25,46.79,23.94,23.54,23.35,23.150000000000002,22.95,22.76,22.56,22.38,21.990000000000002,N/A,N/A +2012,10,19,6,30,101390,100220,99080,53.79,0,7.42,7.930000000000001,8.040000000000001,8.09,8.11,8.120000000000001,8.120000000000001,8.11,8.09,42.160000000000004,42.6,42.89,43.17,43.44,43.69,43.95,44.19,44.7,23.81,23.400000000000002,23.21,23,22.81,22.62,22.42,22.240000000000002,21.85,N/A,N/A +2012,10,19,7,30,101440,100270,99130,53.83,0,7.5200000000000005,8.05,8.17,8.22,8.25,8.27,8.27,8.28,8.27,40.69,41.15,41.45,41.74,42.02,42.28,42.550000000000004,42.800000000000004,43.34,23.57,23.150000000000002,22.96,22.76,22.57,22.38,22.18,22,21.62,N/A,N/A +2012,10,19,8,30,101460,100290,99150,52.63,0,7.97,8.55,8.68,8.73,8.77,8.790000000000001,8.8,8.8,8.790000000000001,40.300000000000004,40.78,41.1,41.43,41.730000000000004,42.02,42.33,42.61,43.230000000000004,23.37,22.93,22.740000000000002,22.54,22.34,22.150000000000002,21.96,21.78,21.400000000000002,N/A,N/A +2012,10,19,9,30,101470,100300,99150,53.34,0,7.53,8.040000000000001,8.15,8.2,8.23,8.25,8.26,8.26,8.27,35.04,35.38,35.61,35.86,36.1,36.33,36.6,36.85,37.47,22.91,22.46,22.27,22.07,21.88,21.69,21.5,21.330000000000002,20.97,N/A,N/A +2012,10,19,10,30,101500,100330,99190,55.870000000000005,0,7.18,7.65,7.74,7.78,7.79,7.8,7.8,7.8,7.8,38.6,38.980000000000004,39.24,39.53,39.800000000000004,40.08,40.4,40.69,41.45,22.78,22.330000000000002,22.14,21.94,21.75,21.57,21.39,21.22,20.87,N/A,N/A +2012,10,19,11,30,101510,100340,99190,55.61,0,7.33,7.79,7.87,7.9,7.9,7.9,7.88,7.86,7.82,37.92,38.29,38.54,38.79,39.04,39.28,39.57,39.84,40.53,22.7,22.240000000000002,22.05,21.85,21.66,21.48,21.3,21.13,20.78,N/A,N/A +2012,10,19,12,30,101540,100370,99220,54.17,0,7.24,7.7,7.79,7.82,7.84,7.84,7.83,7.82,7.79,41.95,42.32,42.56,42.800000000000004,43.03,43.26,43.51,43.74,44.27,22.72,22.26,22.07,21.87,21.68,21.5,21.31,21.13,20.77,N/A,N/A +2012,10,19,13,30,101550,100370,99230,53.67,0,6.71,7.11,7.18,7.21,7.21,7.21,7.2,7.18,7.15,40.57,40.88,41.06,41.25,41.44,41.61,41.81,41.99,42.4,22.61,22.150000000000002,21.96,21.76,21.57,21.39,21.2,21.02,20.66,N/A,N/A +2012,10,19,14,30,101580,100400,99260,51.76,0,5.98,6.3100000000000005,6.37,6.38,6.390000000000001,6.38,6.37,6.36,6.33,41.63,41.85,42.01,42.17,42.32,42.46,42.61,42.74,43.03,22.81,22.37,22.18,21.98,21.79,21.61,21.42,21.240000000000002,20.88,N/A,N/A +2012,10,19,15,30,101590,100420,99280,48.300000000000004,0,4.87,5.12,5.16,5.17,5.17,5.17,5.16,5.15,5.11,39.17,39.27,39.38,39.47,39.550000000000004,39.62,39.69,39.75,39.85,23.1,22.69,22.51,22.31,22.12,21.94,21.75,21.57,21.21,N/A,N/A +2012,10,19,16,30,101600,100420,99280,42.96,0,4.2,4.39,4.42,4.42,4.41,4.4,4.39,4.38,4.34,33.74,33.75,33.78,33.81,33.82,33.83,33.83,33.84,33.81,23.48,23.09,22.91,22.71,22.52,22.330000000000002,22.14,21.96,21.57,N/A,N/A +2012,10,19,17,30,101580,100410,99270,41.04,0,3.62,3.77,3.79,3.79,3.79,3.7800000000000002,3.7800000000000002,3.77,3.74,27.79,27.79,27.78,27.78,27.76,27.73,27.69,27.650000000000002,27.53,23.61,23.23,23.05,22.85,22.66,22.47,22.27,22.09,21.71,N/A,N/A +2012,10,19,18,30,101560,100390,99250,39.31,0,2.54,2.64,2.66,2.67,2.67,2.68,2.68,2.68,2.69,14.120000000000001,13.75,13.49,13.22,12.96,12.700000000000001,12.41,12.15,11.5,23.740000000000002,23.38,23.2,23,22.8,22.62,22.42,22.240000000000002,21.86,N/A,N/A +2012,10,19,19,30,101540,100360,99230,38.94,0,1.44,1.54,1.57,1.61,1.6500000000000001,1.68,1.72,1.76,1.84,2.11,0.46,359.38,358.34000000000003,357.37,356.45,355.51,354.63,352.82,23.89,23.54,23.36,23.16,22.97,22.78,22.59,22.400000000000002,22.02,N/A,N/A +2012,10,19,20,30,101510,100340,99200,35.29,0,1.71,1.76,1.77,1.77,1.77,1.77,1.77,1.77,1.78,319.09000000000003,318.84000000000003,318.95,319.05,319.15000000000003,319.23,319.33,319.43,319.67,24.5,24.16,23.990000000000002,23.79,23.6,23.41,23.21,23.03,22.64,N/A,N/A +2012,10,19,21,30,101470,100300,99170,35.6,0,2.7800000000000002,2.93,2.96,2.97,2.98,2.99,3,3.0100000000000002,3.02,313.88,314.11,314.27,314.41,314.54,314.65000000000003,314.77,314.87,315.11,24.92,24.6,24.43,24.23,24.04,23.85,23.66,23.47,23.080000000000002,N/A,N/A +2012,10,19,22,30,101440,100270,99140,36.9,0,2.81,3.0100000000000002,3.0500000000000003,3.09,3.11,3.14,3.16,3.18,3.2,310.3,311.31,311.88,312.38,312.81,313.19,313.56,313.89,314.5,25.29,24.98,24.810000000000002,24.62,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A +2012,10,19,23,30,101400,100240,99110,37.74,0,3.3200000000000003,3.52,3.5500000000000003,3.56,3.5700000000000003,3.5700000000000003,3.5700000000000003,3.56,3.5500000000000003,326.66,327,327.17,327.33,327.47,327.61,327.75,327.88,328.18,25.47,25.17,25,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,20,0,30,101400,100240,99110,38.51,0,2.91,3.1,3.12,3.13,3.13,3.13,3.12,3.11,3.09,339.27,339.56,339.71,339.86,340,340.14,340.29,340.43,340.73,25.62,25.330000000000002,25.16,24.97,24.78,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A +2012,10,20,1,30,101410,100250,99120,38.44,0,2.63,2.77,2.77,2.77,2.7600000000000002,2.74,2.73,2.71,2.67,2.02,2.3000000000000003,2.39,2.5100000000000002,2.63,2.77,2.93,3.08,3.48,25.69,25.41,25.25,25.060000000000002,24.87,24.69,24.5,24.310000000000002,23.94,N/A,N/A +2012,10,20,2,30,101420,100260,99130,39.09,0,1.58,1.6400000000000001,1.6300000000000001,1.62,1.61,1.6,1.58,1.57,1.54,42.71,43.660000000000004,44.2,44.75,45.300000000000004,45.83,46.410000000000004,46.95,48.18,25.650000000000002,25.37,25.2,25.01,24.82,24.64,24.44,24.26,23.87,N/A,N/A +2012,10,20,3,30,101400,100230,99100,38.85,0,1.51,1.57,1.56,1.55,1.54,1.52,1.51,1.5,1.47,60.99,61.34,61.52,61.72,61.92,62.120000000000005,62.34,62.550000000000004,63.03,25.59,25.3,25.13,24.94,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A +2012,10,20,4,30,101390,100230,99100,39.22,0,1.33,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3800000000000001,1.37,100.72,101.02,101.08,101.14,101.2,101.28,101.35000000000001,101.42,101.59,25.51,25.22,25.05,24.86,24.67,24.48,24.28,24.1,23.71,N/A,N/A +2012,10,20,5,30,101400,100230,99100,39.78,0,1.48,1.55,1.55,1.54,1.54,1.54,1.54,1.53,1.52,127.71000000000001,127.73,127.64,127.57000000000001,127.48,127.4,127.3,127.21000000000001,127.02,25.43,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A +2012,10,20,6,30,101400,100240,99110,44.7,0,2.0100000000000002,2.0100000000000002,1.97,1.92,1.87,1.83,1.78,1.74,1.6600000000000001,180.48,179.41,178.65,177.87,177.13,176.41,175.64000000000001,174.94,173.31,25.150000000000002,24.85,24.68,24.490000000000002,24.3,24.11,23.92,23.73,23.35,N/A,N/A +2012,10,20,7,30,101420,100260,99120,44.99,0,1.96,2.05,2.06,2.07,2.07,2.07,2.07,2.07,2.06,166.74,167.01,167.23,167.41,167.58,167.73,167.86,167.98,168.17000000000002,24.98,24.67,24.5,24.3,24.11,23.92,23.73,23.54,23.16,N/A,N/A +2012,10,20,8,30,101410,100250,99120,46.54,0,1.96,2.04,2.05,2.05,2.05,2.04,2.04,2.04,2.02,173.47,173.20000000000002,173.12,173.01,172.93,172.85,172.74,172.63,172.41,24.900000000000002,24.59,24.42,24.22,24.03,23.85,23.650000000000002,23.46,23.080000000000002,N/A,N/A +2012,10,20,9,30,101420,100250,99120,47.31,0,2.39,2.49,2.49,2.48,2.48,2.47,2.46,2.45,2.43,162.34,162.66,162.83,163.01,163.18,163.36,163.51,163.66,164.02,24.91,24.59,24.42,24.23,24.03,23.85,23.650000000000002,23.47,23.080000000000002,N/A,N/A +2012,10,20,10,30,101420,100250,99120,49.82,0,2.74,2.88,2.9,2.91,2.91,2.91,2.91,2.91,2.91,158.64000000000001,158.97,159.17000000000002,159.37,159.55,159.72,159.88,160.04,160.38,24.86,24.54,24.37,24.17,23.98,23.79,23.59,23.41,23.02,N/A,N/A +2012,10,20,11,30,101430,100270,99140,50.47,0,3.12,3.2800000000000002,3.3000000000000003,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,152.59,152.99,153.24,153.49,153.71,153.92000000000002,154.14000000000001,154.35,154.8,24.85,24.53,24.36,24.16,23.97,23.78,23.59,23.400000000000002,23.02,N/A,N/A +2012,10,20,12,30,101450,100280,99150,53.050000000000004,0,4.34,4.6000000000000005,4.64,4.66,4.67,4.68,4.68,4.68,4.67,151.22,151.51,151.70000000000002,151.89000000000001,152.06,152.21,152.39000000000001,152.55,152.88,24.84,24.51,24.34,24.14,23.95,23.76,23.57,23.38,23,N/A,N/A +2012,10,20,13,30,101440,100280,99150,54.72,0,4.74,5.07,5.13,5.17,5.19,5.21,5.22,5.23,5.25,152.05,152.37,152.53,152.69,152.84,152.98,153.12,153.25,153.53,24.89,24.560000000000002,24.39,24.19,24,23.81,23.61,23.43,23.05,N/A,N/A +2012,10,20,14,30,101460,100290,99160,55.550000000000004,0,5.37,5.76,5.84,5.88,5.91,5.92,5.93,5.94,5.95,151.18,151.42000000000002,151.57,151.71,151.85,151.97,152.1,152.22,152.47,25.01,24.69,24.51,24.32,24.13,23.94,23.740000000000002,23.56,23.17,N/A,N/A +2012,10,20,15,30,101460,100300,99170,55.49,0,6.24,6.74,6.8500000000000005,6.91,6.95,6.97,6.99,7.01,7.03,148.66,148.96,149.12,149.28,149.43,149.57,149.71,149.84,150.11,25.16,24.85,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A +2012,10,20,16,30,101450,100280,99150,57.11,0,6.61,7.17,7.29,7.36,7.41,7.44,7.47,7.49,7.5200000000000005,152.32,152.52,152.64000000000001,152.77,152.88,152.99,153.1,153.20000000000002,153.41,25.25,24.93,24.76,24.57,24.38,24.19,23.990000000000002,23.81,23.42,N/A,N/A +2012,10,20,17,30,101410,100250,99120,59.230000000000004,0,6.68,7.25,7.38,7.46,7.51,7.55,7.58,7.6000000000000005,7.63,155.01,155.20000000000002,155.31,155.43,155.53,155.64000000000001,155.75,155.85,156.07,25.310000000000002,24.990000000000002,24.830000000000002,24.63,24.44,24.25,24.05,23.87,23.48,N/A,N/A +2012,10,20,18,30,101390,100220,99100,59.21,0,6.67,7.2700000000000005,7.4,7.47,7.53,7.5600000000000005,7.59,7.61,7.640000000000001,152.62,152.65,152.78,152.91,153.04,153.18,153.31,153.45000000000002,153.72,25.43,25.12,24.95,24.75,24.560000000000002,24.37,24.18,23.990000000000002,23.6,N/A,N/A +2012,10,20,19,30,101360,100190,99070,59.88,0,6.78,7.41,7.5600000000000005,7.65,7.72,7.76,7.8,7.83,7.890000000000001,158.98,159.09,159.20000000000002,159.31,159.41,159.5,159.6,159.69,159.89000000000001,25.5,25.2,25.03,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A +2012,10,20,20,30,101340,100180,99050,62.88,0,7.46,8.17,8.33,8.43,8.49,8.540000000000001,8.57,8.59,8.620000000000001,159.07,159.34,159.47,159.59,159.68,159.77,159.84,159.92000000000002,160.05,25.560000000000002,25.27,25.1,24.91,24.72,24.53,24.34,24.150000000000002,23.76,N/A,N/A +2012,10,20,21,30,101310,100150,99030,63.85,0,7.7,8.43,8.6,8.69,8.76,8.8,8.83,8.85,8.88,154.4,154.93,155.25,155.56,155.84,156.1,156.37,156.61,157.09,25.59,25.3,25.13,24.93,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A +2012,10,20,22,30,101290,100140,99010,65.21000000000001,0,7.75,8.52,8.71,8.82,8.9,8.96,9.01,9.040000000000001,9.09,159.68,159.97,160.15,160.35,160.54,160.72,160.91,161.09,161.45000000000002,25.67,25.38,25.22,25.02,24.830000000000002,24.64,24.45,24.26,23.88,N/A,N/A +2012,10,20,23,30,101270,100120,98990,66.27,0,8.11,8.91,9.1,9.21,9.290000000000001,9.34,9.38,9.41,9.450000000000001,165.26,165.38,165.42000000000002,165.45000000000002,165.48,165.5,165.52,165.54,165.56,25.78,25.5,25.34,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.01,N/A,N/A +2012,10,21,0,30,101270,100110,98990,64.07000000000001,0,8.56,9.43,9.63,9.74,9.82,9.86,9.89,9.92,9.93,168.12,168.13,168.1,168.04,167.98,167.91,167.84,167.77,167.63,25.93,25.67,25.51,25.32,25.13,24.95,24.75,24.57,24.19,N/A,N/A +2012,10,21,1,30,101280,100120,99000,67.05,0,8.950000000000001,9.870000000000001,10.09,10.21,10.28,10.33,10.36,10.39,10.4,163.35,163.42000000000002,163.5,163.6,163.68,163.77,163.87,163.96,164.15,25.85,25.580000000000002,25.41,25.22,25.03,24.85,24.650000000000002,24.47,24.09,N/A,N/A +2012,10,21,2,30,101270,100110,98990,69.83,0,8.81,9.75,9.98,10.120000000000001,10.22,10.3,10.35,10.4,10.47,169.57,169.39000000000001,169.36,169.36,169.37,169.38,169.41,169.44,169.5,25.86,25.580000000000002,25.42,25.22,25.04,24.85,24.66,24.47,24.09,N/A,N/A +2012,10,21,3,30,101280,100130,99010,68.07000000000001,0,9.24,10.19,10.43,10.56,10.66,10.72,10.77,10.8,10.85,172.98,173.02,173.01,172.98,172.95000000000002,172.9,172.86,172.81,172.72,25.990000000000002,25.73,25.57,25.38,25.19,25.01,24.810000000000002,24.63,24.25,N/A,N/A +2012,10,21,4,30,101280,100130,99000,69.56,0,9.67,10.69,10.94,11.08,11.17,11.23,11.27,11.3,11.34,172.56,172.46,172.45000000000002,172.46,172.47,172.49,172.52,172.55,172.62,25.91,25.650000000000002,25.490000000000002,25.3,25.11,24.93,24.73,24.55,24.17,N/A,N/A +2012,10,21,5,30,101280,100130,99010,69.31,0,8.98,9.94,10.18,10.32,10.43,10.51,10.57,10.620000000000001,10.69,174.61,174.56,174.53,174.51,174.47,174.44,174.4,174.36,174.29,26.02,25.76,25.6,25.400000000000002,25.22,25.04,24.84,24.66,24.28,N/A,N/A +2012,10,21,6,30,101310,100160,99030,71.16,0,9.06,10.040000000000001,10.28,10.43,10.540000000000001,10.61,10.67,10.72,10.78,174.4,174.25,174.19,174.13,174.07,174.02,173.98,173.95000000000002,173.86,25.98,25.71,25.55,25.36,25.18,24.990000000000002,24.79,24.61,24.23,N/A,N/A +2012,10,21,7,30,101340,100190,99060,73.4,0,9.52,10.49,10.75,10.9,11,11.09,11.15,11.21,11.290000000000001,175.53,175.86,176.01,176.15,176.27,176.38,176.48,176.58,176.76,25.89,25.62,25.46,25.26,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A +2012,10,21,8,30,101350,100190,99070,77.47,0,9.15,10.16,10.42,10.59,10.71,10.790000000000001,10.86,10.91,10.97,177.70000000000002,177.82,177.87,177.9,177.93,177.96,177.97,177.99,178.02,25.86,25.59,25.43,25.240000000000002,25.05,24.87,24.68,24.490000000000002,24.11,N/A,N/A +2012,10,21,9,30,101370,100210,99090,71.88,0,9.6,10.64,10.91,11.06,11.17,11.24,11.290000000000001,11.33,11.38,175.88,176.22,176.32,176.39000000000001,176.45000000000002,176.48,176.52,176.55,176.59,25.98,25.73,25.57,25.38,25.2,25.01,24.82,24.64,24.26,N/A,N/A +2012,10,21,10,30,101410,100250,99130,74.21000000000001,0,9.21,10.23,10.48,10.63,10.73,10.8,10.85,10.89,10.93,174.15,174.48,174.62,174.74,174.85,174.94,175.03,175.12,175.28,25.900000000000002,25.64,25.48,25.28,25.1,24.91,24.72,24.54,24.150000000000002,N/A,N/A +2012,10,21,11,30,101420,100260,99140,76.27,0,8.64,9.540000000000001,9.76,9.89,9.97,10.03,10.07,10.1,10.120000000000001,173.68,174.21,174.49,174.76,175,175.21,175.42000000000002,175.61,176,25.85,25.580000000000002,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A +2012,10,21,12,30,101470,100310,99190,76.11,0,9.32,10.31,10.55,10.68,10.77,10.81,10.83,10.84,10.82,169.8,170.04,170.28,170.59,170.89000000000001,171.19,171.51,171.8,172.44,25.810000000000002,25.54,25.38,25.19,25.01,24.82,24.62,24.44,24.060000000000002,N/A,N/A +2012,10,21,13,30,101500,100340,99220,71.18,0,7.930000000000001,8.77,8.98,9.120000000000001,9.22,9.290000000000001,9.34,9.39,9.46,168.13,168.28,168.44,168.62,168.78,168.95000000000002,169.12,169.27,169.61,26.04,25.78,25.62,25.43,25.25,25.060000000000002,24.87,24.69,24.310000000000002,N/A,N/A +2012,10,21,14,30,101540,100380,99260,75.97,0,7.3,8.05,8.24,8.370000000000001,8.46,8.52,8.57,8.620000000000001,8.68,172.81,172.98,173.07,173.17000000000002,173.25,173.32,173.4,173.46,173.6,25.94,25.67,25.51,25.32,25.14,24.95,24.75,24.57,24.19,N/A,N/A +2012,10,21,15,30,101560,100410,99280,76.56,0,7.7700000000000005,8.55,8.73,8.85,8.94,9,9.040000000000001,9.08,9.13,172.36,172.9,173.11,173.29,173.43,173.55,173.64000000000001,173.73,173.86,25.900000000000002,25.63,25.47,25.28,25.09,24.900000000000002,24.71,24.53,24.14,N/A,N/A +2012,10,21,16,30,101570,100410,99290,75.56,0,8.05,8.82,8.99,9.06,9.1,9.120000000000001,9.120000000000001,9.11,9.07,165.84,166.06,166.22,166.39000000000001,166.55,166.70000000000002,166.84,166.98,167.26,25.85,25.580000000000002,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.09,N/A,N/A +2012,10,21,17,30,101570,100410,99280,69.77,0,7.1000000000000005,7.78,7.95,8.040000000000001,8.11,8.16,8.2,8.23,8.28,170.38,170.33,170.29,170.24,170.19,170.14000000000001,170.1,170.06,169.96,26.04,25.79,25.63,25.44,25.26,25.07,24.88,24.7,24.32,N/A,N/A +2012,10,21,18,30,101570,100410,99290,73.27,0,7.1000000000000005,7.8100000000000005,7.98,8.08,8.15,8.2,8.24,8.27,8.3,170.17000000000002,169.99,169.92000000000002,169.86,169.82,169.77,169.74,169.71,169.66,25.990000000000002,25.72,25.560000000000002,25.37,25.18,24.990000000000002,24.8,24.61,24.23,N/A,N/A +2012,10,21,19,30,101560,100400,99280,72.43,0,7.17,7.91,8.1,8.22,8.31,8.38,8.44,8.48,8.540000000000001,163.59,164.07,164.34,164.57,164.76,164.93,165.08,165.21,165.45000000000002,26.09,25.830000000000002,25.67,25.48,25.29,25.11,24.91,24.73,24.35,N/A,N/A +2012,10,21,20,30,101560,100400,99270,75,0,7.2700000000000005,7.98,8.16,8.25,8.32,8.370000000000001,8.4,8.42,8.44,156.18,156.3,156.42000000000002,156.55,156.67000000000002,156.79,156.9,157.01,157.24,25.91,25.650000000000002,25.490000000000002,25.29,25.11,24.92,24.72,24.54,24.16,N/A,N/A +2012,10,21,21,30,101530,100370,99250,72.72,0,7.5600000000000005,8.290000000000001,8.47,8.57,8.65,8.700000000000001,8.74,8.77,8.81,160.32,160.45000000000002,160.5,160.52,160.53,160.52,160.5,160.48,160.43,25.990000000000002,25.73,25.57,25.38,25.2,25.01,24.82,24.64,24.25,N/A,N/A +2012,10,21,22,30,101530,100370,99250,75.23,0,7.72,8.55,8.76,8.89,8.98,9.05,9.1,9.14,9.19,154.62,154.73,154.84,154.95000000000002,155.05,155.16,155.26,155.35,155.54,25.93,25.66,25.5,25.3,25.12,24.93,24.740000000000002,24.55,24.17,N/A,N/A +2012,10,21,23,30,101510,100350,99230,74.12,0,8.85,9.76,9.97,10.09,10.17,10.23,10.26,10.28,10.290000000000001,157.33,157.66,157.78,157.89000000000001,157.97,158.04,158.1,158.16,158.26,25.89,25.62,25.46,25.27,25.080000000000002,24.900000000000002,24.7,24.52,24.14,N/A,N/A +2012,10,22,0,30,101520,100360,99240,75.60000000000001,0,9.19,10.25,10.51,10.68,10.790000000000001,10.86,10.9,10.94,10.97,153.56,153.59,153.62,153.63,153.64000000000001,153.64000000000001,153.64000000000001,153.64000000000001,153.62,25.8,25.52,25.36,25.16,24.97,24.79,24.59,24.400000000000002,24.02,N/A,N/A +2012,10,22,1,30,101520,100360,99230,73.12,0,7.57,8.33,8.540000000000001,8.68,8.78,8.86,8.93,8.98,9.08,155.23,155.25,155.23,155.20000000000002,155.16,155.13,155.09,155.05,154.97,25.810000000000002,25.54,25.38,25.18,25,24.810000000000002,24.62,24.43,24.05,N/A,N/A +2012,10,22,2,30,101530,100370,99240,72.5,0,9.41,10.39,10.64,10.790000000000001,10.89,10.96,11.01,11.05,11.09,153.71,153.9,154.01,154.11,154.20000000000002,154.28,154.36,154.44,154.58,25.830000000000002,25.560000000000002,25.41,25.21,25.03,24.84,24.650000000000002,24.47,24.09,N/A,N/A +2012,10,22,3,30,101520,100360,99240,70.77,0,8.65,9.5,9.71,9.82,9.9,9.96,9.99,10.02,10.06,154.35,154.29,154.29,154.3,154.31,154.32,154.34,154.35,154.38,25.8,25.53,25.37,25.18,25,24.810000000000002,24.61,24.43,24.05,N/A,N/A +2012,10,22,4,30,101500,100340,99220,66.78,0,8.5,9.35,9.58,9.72,9.81,9.89,9.950000000000001,10,10.07,164.33,163.99,163.8,163.61,163.45000000000002,163.29,163.14000000000001,163,162.73,25.91,25.66,25.51,25.310000000000002,25.13,24.95,24.75,24.57,24.2,N/A,N/A +2012,10,22,5,30,101500,100340,99220,68.55,0,8.96,9.77,9.950000000000001,10.03,10.08,10.11,10.13,10.14,10.14,161.92000000000002,162.07,162.03,161.94,161.83,161.71,161.58,161.44,161.15,25.82,25.55,25.39,25.2,25.01,24.830000000000002,24.63,24.45,24.060000000000002,N/A,N/A +2012,10,22,6,30,101520,100360,99230,69.76,0,9.290000000000001,10.21,10.44,10.56,10.65,10.72,10.76,10.8,10.85,157.21,157.97,158.37,158.76,159.13,159.45000000000002,159.79,160.1,160.71,25.84,25.57,25.400000000000002,25.22,25.03,24.84,24.650000000000002,24.46,24.080000000000002,N/A,N/A +2012,10,22,7,30,101540,100380,99250,73.07000000000001,0,8.78,9.76,10.03,10.200000000000001,10.32,10.42,10.5,10.57,10.67,162.9,163.25,163.39000000000001,163.51,163.61,163.70000000000002,163.79,163.87,164,25.73,25.44,25.28,25.09,24.900000000000002,24.71,24.52,24.330000000000002,23.95,N/A,N/A +2012,10,22,8,30,101540,100380,99250,75.65,0,8.98,9.88,10.08,10.18,10.24,10.27,10.28,10.290000000000001,10.27,158.93,158.97,159,159.02,159.03,159.04,159.04,159.03,159.02,25.59,25.3,25.14,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A +2012,10,22,9,30,101560,100400,99280,75.3,0,7.86,8.700000000000001,8.91,9.040000000000001,9.13,9.200000000000001,9.25,9.290000000000001,9.34,160.38,159.8,159.67000000000002,159.59,159.56,159.55,159.56,159.58,159.67000000000002,25.67,25.37,25.2,25.01,24.810000000000002,24.62,24.43,24.240000000000002,23.85,N/A,N/A +2012,10,22,10,30,101580,100420,99290,75.03,0,7.98,8.790000000000001,8.99,9.1,9.18,9.23,9.27,9.290000000000001,9.33,158.9,158.47,158.3,158.14000000000001,158.01,157.88,157.76,157.65,157.43,25.560000000000002,25.26,25.09,24.89,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A +2012,10,22,11,30,101620,100450,99330,78.12,0,7.49,8.22,8.39,8.5,8.58,8.63,8.67,8.71,8.76,154.4,154.35,154.36,154.37,154.4,154.42000000000002,154.45000000000002,154.48,154.54,25.5,25.19,25.02,24.82,24.63,24.44,24.240000000000002,24.060000000000002,23.67,N/A,N/A +2012,10,22,12,30,101620,100460,99340,78.8,0,7.37,8.08,8.25,8.34,8.4,8.45,8.47,8.5,8.52,152.73,152.73,152.84,152.96,153.07,153.19,153.32,153.45000000000002,153.71,25.45,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A +2012,10,22,13,30,101670,100510,99380,74.89,0,6.92,7.63,7.82,7.96,8.06,8.14,8.22,8.28,8.4,150.29,150.43,150.53,150.62,150.70000000000002,150.78,150.86,150.93,151.09,25.57,25.28,25.12,24.93,24.75,24.560000000000002,24.37,24.19,23.81,N/A,N/A +2012,10,22,14,30,101680,100520,99390,77.98,0,6.99,7.7,7.87,7.97,8.040000000000001,8.1,8.14,8.17,8.22,152.42000000000002,152.23,152.08,151.92000000000002,151.77,151.62,151.47,151.32,151.02,25.54,25.240000000000002,25.07,24.87,24.68,24.5,24.3,24.12,23.73,N/A,N/A +2012,10,22,15,30,101690,100530,99400,75.39,0,6.87,7.48,7.62,7.7,7.75,7.78,7.8,7.82,7.8500000000000005,149.31,149.20000000000002,149.18,149.14000000000001,149.1,149.06,149.02,148.97,148.87,25.55,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A +2012,10,22,16,30,101690,100530,99400,78.3,0,6.32,6.95,7.11,7.21,7.29,7.3500000000000005,7.4,7.44,7.51,138.89000000000001,139.46,139.78,140.07,140.33,140.57,140.8,141.01,141.41,25.57,25.26,25.09,24.900000000000002,24.71,24.52,24.32,24.14,23.75,N/A,N/A +2012,10,22,17,30,101690,100520,99400,77.60000000000001,0,6.03,6.55,6.67,6.74,6.79,6.83,6.86,6.88,6.91,134.13,134.34,134.54,134.74,134.93,135.11,135.31,135.49,135.86,25.580000000000002,25.28,25.11,24.91,24.72,24.53,24.34,24.150000000000002,23.77,N/A,N/A +2012,10,22,18,30,101670,100510,99380,77.35000000000001,0,5.79,6.24,6.33,6.36,6.38,6.38,6.37,6.37,6.34,138.19,138.64000000000001,138.9,139.18,139.44,139.68,139.94,140.19,140.71,25.61,25.3,25.13,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A +2012,10,22,19,30,101660,100500,99380,75.56,0,6.69,7.2700000000000005,7.390000000000001,7.44,7.46,7.48,7.48,7.47,7.45,132.36,132.82,133.04,133.24,133.42000000000002,133.59,133.75,133.9,134.21,25.740000000000002,25.44,25.28,25.080000000000002,24.89,24.7,24.5,24.32,23.93,N/A,N/A +2012,10,22,20,30,101650,100490,99360,77.51,0,5.72,6.21,6.32,6.38,6.42,6.45,6.46,6.48,6.49,139.94,139.37,139.17000000000002,139.03,138.9,138.81,138.72,138.65,138.53,25.650000000000002,25.34,25.18,24.98,24.79,24.6,24.41,24.22,23.84,N/A,N/A +2012,10,22,21,30,101640,100480,99350,77.15,0,5.16,5.61,5.72,5.79,5.84,5.88,5.91,5.94,5.98,138.20000000000002,138.03,137.98,137.95000000000002,137.94,137.93,137.92000000000002,137.91,137.92000000000002,25.63,25.330000000000002,25.17,24.97,24.78,24.6,24.400000000000002,24.21,23.830000000000002,N/A,N/A +2012,10,22,22,30,101620,100450,99330,77.05,0,5.0200000000000005,5.48,5.58,5.65,5.7,5.73,5.76,5.78,5.8100000000000005,126.88000000000001,127.68,128.15,128.6,129.02,129.41,129.8,130.16,130.91,25.57,25.27,25.1,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A +2012,10,22,23,30,101600,100440,99320,79.14,0,6.18,6.75,6.88,6.96,7.01,7.04,7.07,7.08,7.1000000000000005,127.19,127.63000000000001,127.84,128.03,128.2,128.35,128.49,128.61,128.84,25.400000000000002,25.080000000000002,24.91,24.72,24.53,24.34,24.14,23.95,23.57,N/A,N/A +2012,10,23,0,30,101590,100430,99300,76.01,0,6.55,7.1000000000000005,7.22,7.28,7.33,7.3500000000000005,7.37,7.390000000000001,7.4,130.29,130.74,130.99,131.23,131.45,131.66,131.86,132.04,132.43,25.34,25.03,24.86,24.66,24.47,24.28,24.09,23.900000000000002,23.52,N/A,N/A +2012,10,23,1,30,101590,100420,99300,75.42,0,7.07,7.61,7.72,7.7700000000000005,7.8,7.8100000000000005,7.82,7.82,7.83,137.88,137.51,137.38,137.28,137.21,137.14000000000001,137.09,137.04,136.97,25.28,24.96,24.79,24.6,24.41,24.22,24.03,23.84,23.46,N/A,N/A +2012,10,23,2,30,101570,100410,99280,74.05,0,5.83,6.36,6.5,6.58,6.65,6.7,6.74,6.78,6.8500000000000005,132.27,132.5,132.69,132.88,133.06,133.25,133.44,133.61,133.98,25.28,24.96,24.79,24.59,24.400000000000002,24.21,24.02,23.830000000000002,23.45,N/A,N/A +2012,10,23,3,30,101580,100420,99290,74.82000000000001,0,6.5600000000000005,7.16,7.32,7.43,7.51,7.57,7.63,7.67,7.75,135.18,135.14000000000001,135.14000000000001,135.14000000000001,135.15,135.17000000000002,135.19,135.2,135.25,25.18,24.85,24.68,24.48,24.28,24.1,23.900000000000002,23.71,23.32,N/A,N/A +2012,10,23,4,30,101550,100390,99270,78.76,0,7.3,7.94,8.1,8.17,8.22,8.26,8.28,8.290000000000001,8.3,131.49,131.77,131.92000000000002,132.06,132.18,132.29,132.39000000000001,132.48,132.66,25.02,24.68,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.16,N/A,N/A +2012,10,23,5,30,101530,100370,99250,75.14,0,6.88,7.51,7.68,7.78,7.8500000000000005,7.9,7.95,7.98,8.040000000000001,141.1,140.78,140.68,140.61,140.56,140.52,140.49,140.46,140.43,25.23,24.900000000000002,24.73,24.54,24.35,24.16,23.96,23.78,23.39,N/A,N/A +2012,10,23,6,30,101520,100360,99230,72.87,0,6.8100000000000005,7.49,7.67,7.78,7.86,7.92,7.97,8.02,8.08,143.11,142.61,142.38,142.19,142.02,141.87,141.72,141.6,141.35,25.3,24.98,24.810000000000002,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A +2012,10,23,7,30,101530,100370,99250,75.13,0,7.58,8.32,8.51,8.63,8.73,8.8,8.85,8.9,8.98,142.68,143.63,144.1,144.51,144.86,145.18,145.47,145.75,146.24,25.26,24.96,24.79,24.6,24.41,24.23,24.03,23.85,23.47,N/A,N/A +2012,10,23,8,30,101540,100380,99250,76.61,0,7.13,7.75,7.9,7.97,8.03,8.06,8.08,8.1,8.11,143.01,143.21,143.37,143.56,143.74,143.91,144.1,144.27,144.64000000000001,25.2,24.88,24.71,24.51,24.32,24.13,23.93,23.75,23.36,N/A,N/A +2012,10,23,9,30,101520,100360,99240,75.84,0,6.0200000000000005,6.61,6.76,6.8500000000000005,6.92,6.97,7.01,7.04,7.09,147.21,146.99,146.99,147.02,147.06,147.11,147.17000000000002,147.23,147.37,25.22,24.900000000000002,24.72,24.52,24.330000000000002,24.14,23.94,23.76,23.37,N/A,N/A +2012,10,23,10,30,101540,100380,99260,72.93,0,6.29,6.8500000000000005,6.98,7.05,7.1000000000000005,7.140000000000001,7.17,7.2,7.24,150.18,150.03,149.95000000000002,149.86,149.78,149.71,149.64000000000001,149.58,149.47,25.400000000000002,25.1,24.93,24.73,24.54,24.36,24.16,23.97,23.59,N/A,N/A +2012,10,23,11,30,101550,100380,99260,73.14,0,5.82,6.2700000000000005,6.3500000000000005,6.390000000000001,6.41,6.42,6.42,6.42,6.41,151.19,151.41,151.58,151.75,151.91,152.06,152.20000000000002,152.34,152.62,25.36,25.05,24.89,24.69,24.5,24.32,24.12,23.93,23.55,N/A,N/A +2012,10,23,12,30,101570,100410,99290,71.2,0,5.66,6.1000000000000005,6.19,6.22,6.24,6.24,6.25,6.25,6.24,158.37,157.82,157.47,157.1,156.76,156.44,156.13,155.83,155.25,25.47,25.17,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,23,13,30,101570,100410,99280,71.95,0,4.8,5.26,5.37,5.44,5.49,5.54,5.57,5.6000000000000005,5.64,156.88,156.53,156.36,156.20000000000002,156.07,155.94,155.82,155.71,155.49,25.43,25.13,24.96,24.77,24.580000000000002,24.39,24.19,24.01,23.62,N/A,N/A +2012,10,23,14,30,101600,100430,99310,73.18,0,4.66,5.0200000000000005,5.09,5.13,5.15,5.17,5.18,5.19,5.2,151.76,151.96,152.05,152.1,152.15,152.19,152.22,152.24,152.27,25.39,25.080000000000002,24.92,24.72,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A +2012,10,23,15,30,101600,100430,99310,72.76,0,3.67,3.94,4,4.04,4.0600000000000005,4.08,4.1,4.11,4.13,159.13,158.25,157.70000000000002,157.18,156.71,156.27,155.84,155.44,154.63,25.45,25.150000000000002,24.990000000000002,24.79,24.61,24.42,24.22,24.04,23.650000000000002,N/A,N/A +2012,10,23,16,30,101610,100450,99320,72.83,0,3.47,3.73,3.79,3.84,3.87,3.9,3.92,3.95,3.99,137.89000000000001,138.47,138.81,139.1,139.34,139.57,139.77,139.95000000000002,140.3,25.44,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A +2012,10,23,17,30,101600,100440,99310,72.32000000000001,0,3.61,3.88,3.95,3.99,4.0200000000000005,4.05,4.07,4.09,4.12,129.41,129.7,129.91,130.09,130.25,130.41,130.56,130.7,130.98,25.5,25.18,25.01,24.82,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,23,18,30,101580,100420,99290,74,0,3.43,3.66,3.7,3.73,3.75,3.77,3.7800000000000002,3.79,3.81,125.5,126.37,126.87,127.34,127.75,128.13,128.5,128.85,129.53,25.51,25.18,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,23,19,30,101560,100400,99280,74.73,0,3.31,3.5,3.54,3.56,3.5700000000000003,3.58,3.58,3.59,3.59,123.38000000000001,123.61,123.78,123.94,124.08,124.22,124.35000000000001,124.48,124.76,25.45,25.12,24.95,24.75,24.560000000000002,24.37,24.17,23.990000000000002,23.6,N/A,N/A +2012,10,23,20,30,101540,100380,99250,74.67,0,2.99,3.18,3.22,3.25,3.27,3.2800000000000002,3.3000000000000003,3.31,3.34,115.51,115.57000000000001,115.66,115.74000000000001,115.82000000000001,115.9,115.98,116.05,116.22,25.47,25.14,24.97,24.77,24.580000000000002,24.39,24.19,24,23.62,N/A,N/A +2012,10,23,21,30,101530,100370,99250,75.47,0,3.18,3.37,3.42,3.44,3.46,3.47,3.48,3.49,3.5100000000000002,117.26,117.63,117.88,118.11,118.32000000000001,118.52,118.72,118.9,119.26,25.490000000000002,25.17,25,24.8,24.61,24.42,24.23,24.04,23.66,N/A,N/A +2012,10,23,22,30,101520,100360,99230,77.97,0,3.58,3.8200000000000003,3.87,3.91,3.93,3.94,3.96,3.97,3.98,116.22,116.49000000000001,116.7,116.91,117.11,117.3,117.5,117.68,118.06,25.400000000000002,25.09,24.92,24.72,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A +2012,10,23,23,30,101490,100330,99200,79.47,0,3.77,4.0200000000000005,4.07,4.09,4.11,4.12,4.12,4.13,4.13,106.91,107.32000000000001,107.54,107.77,107.99000000000001,108.2,108.43,108.65,109.16,-23.150000000000002,24.89,24.72,24.52,24.330000000000002,24.14,23.95,23.76,23.38,N/A,N/A +2012,10,24,0,30,101500,100340,99210,80.66,0,4.09,4.36,4.4,4.42,4.43,4.43,4.43,4.42,4.4,112.77,112.65,112.63,112.64,112.65,112.68,112.71000000000001,112.75,112.82000000000001,25.16,24.84,24.67,24.47,24.28,24.1,23.900000000000002,23.71,23.330000000000002,N/A,N/A +2012,10,24,1,30,101500,100340,99210,82.59,0,4.4,4.72,4.79,4.83,4.86,4.88,4.9,4.91,4.93,108.09,108.24000000000001,108.32000000000001,108.41,108.48,108.56,108.65,108.74000000000001,108.93,25.060000000000002,24.73,24.560000000000002,24.36,24.18,23.990000000000002,23.79,23.6,23.22,N/A,N/A +2012,10,24,2,30,101490,100330,99210,83.91,0,4.21,4.5,4.57,4.61,4.64,4.66,4.67,4.68,4.69,111.62,112.16,112.39,112.59,112.77,112.94,113.12,113.28,113.64,25.07,24.75,24.580000000000002,24.38,24.19,24,23.81,23.63,23.240000000000002,N/A,N/A +2012,10,24,3,30,101490,100330,99200,83.49,0,4.49,4.82,4.89,4.93,4.96,4.98,5,5.0200000000000005,5.04,119.32000000000001,119.49000000000001,119.56,119.63,119.71000000000001,119.78,119.86,119.94,120.13,25.150000000000002,24.830000000000002,24.66,24.46,24.27,24.09,23.89,23.71,23.330000000000002,N/A,N/A +2012,10,24,4,30,101470,100310,99190,83.84,0,5,5.44,5.55,5.62,5.66,5.7,5.74,5.76,5.8100000000000005,126.93,127.14,127.25,127.36,127.46000000000001,127.55,127.64,127.73,127.93,25.28,24.96,24.79,24.6,24.41,24.22,24.02,23.84,23.45,N/A,N/A +2012,10,24,5,30,101480,100320,99190,83.58,0,5.3500000000000005,5.8,5.91,5.97,6.01,6.05,6.07,6.09,6.13,130.91,131.44,131.75,132.05,132.32,132.59,132.86,133.11,133.65,25.32,25,24.84,24.64,24.45,24.26,24.07,23.89,23.5,N/A,N/A +2012,10,24,6,30,101480,100320,99190,83.53,0,4.65,5.03,5.11,5.17,5.2,5.23,5.26,5.2700000000000005,5.3100000000000005,135.8,136.07,136.2,136.3,136.38,136.47,136.54,136.61,136.76,25.48,25.17,25,24.810000000000002,24.62,24.43,24.23,24.05,23.67,N/A,N/A +2012,10,24,7,30,101500,100340,99210,84.38,0,5.4,5.89,6.01,6.09,6.140000000000001,6.19,6.23,6.26,6.3100000000000005,138.12,138.32,138.43,138.54,138.65,138.75,138.84,138.94,139.14000000000001,25.52,25.22,25.05,24.85,24.67,24.48,24.28,24.1,23.71,N/A,N/A +2012,10,24,8,30,101490,100330,99200,84.54,0,5.82,6.36,6.49,6.5600000000000005,6.61,6.65,6.67,6.7,6.73,152.29,152.13,152.01,151.88,151.75,151.63,151.51,151.39000000000001,151.14000000000001,25.52,25.21,25.04,24.85,24.66,24.47,24.28,24.1,23.72,N/A,N/A +2012,10,24,9,30,101490,100330,99210,85.59,0,5.79,6.3100000000000005,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.57,145.89000000000001,146.20000000000002,146.37,146.54,146.69,146.83,146.97,147.09,147.35,25.57,25.26,25.09,24.900000000000002,24.71,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A +2012,10,24,10,30,101500,100340,99220,84.23,0,5.66,6.23,6.38,6.49,6.58,6.65,6.71,6.76,6.8500000000000005,147.58,148.55,148.94,149.29,149.59,149.86,150.11,150.34,150.76,25.73,25.45,25.29,25.1,24.92,24.73,24.54,24.36,23.98,N/A,N/A +2012,10,24,11,30,101510,100350,99230,86.53,0,4.18,4.61,4.75,4.86,4.94,5.01,5.08,5.14,5.25,160.28,160.03,159.79,159.57,159.39000000000001,159.22,159.07,158.92000000000002,158.67000000000002,25.560000000000002,25.25,25.080000000000002,24.89,24.7,24.51,24.32,24.14,23.75,N/A,N/A +2012,10,24,12,30,101540,100380,99260,84.52,0,4.95,5.5200000000000005,5.69,5.82,5.93,6.0200000000000005,6.12,6.21,6.37,150.07,150.13,150.18,150.25,150.37,150.52,150.66,150.79,150.97,25.71,25.43,25.27,25.080000000000002,24.900000000000002,24.72,24.54,24.36,24,N/A,N/A +2012,10,24,13,30,101540,100380,99260,80.92,0,6.62,7.2,7.33,7.390000000000001,7.42,7.44,7.46,7.46,7.49,141.96,141.94,142.04,142.13,142.23,142.32,142.43,142.52,142.77,25.91,25.64,25.490000000000002,25.3,25.12,24.93,24.75,24.57,24.21,N/A,N/A +2012,10,24,14,30,101570,100410,99290,84.36,0,7.11,7.83,8.01,8.11,8.19,8.23,8.27,8.3,8.33,141.46,141.67000000000002,141.77,141.84,141.9,141.94,141.98,142,142.04,25.77,25.48,25.32,25.13,24.94,24.75,24.560000000000002,24.38,23.990000000000002,N/A,N/A +2012,10,24,15,30,101570,100410,99290,85.16,0,6.5600000000000005,7.19,7.33,7.41,7.46,7.5,7.53,7.55,7.57,136.3,136.26,136.28,136.32,136.36,136.4,136.45,136.49,136.59,25.71,25.41,25.240000000000002,25.04,24.86,24.67,24.47,24.29,23.900000000000002,N/A,N/A +2012,10,24,16,30,101560,100400,99280,85.34,0,6.2,6.75,6.890000000000001,6.96,7.01,7.04,7.07,7.08,7.1000000000000005,135.66,135.81,135.87,135.93,135.98,136.03,136.09,136.14000000000001,136.22,25.650000000000002,25.34,25.17,24.98,24.79,24.6,24.41,24.22,23.84,N/A,N/A +2012,10,24,17,30,101530,100370,99250,83.91,0,5.2700000000000005,5.69,5.78,5.82,5.8500000000000005,5.86,5.87,5.87,5.86,140.56,140.63,140.70000000000002,140.77,140.82,140.87,140.93,140.98,141.08,25.68,25.37,25.2,25,24.810000000000002,24.62,24.43,24.240000000000002,23.86,N/A,N/A +2012,10,24,18,30,101510,100350,99230,81.60000000000001,0,5.41,5.86,5.95,5.99,6.0200000000000005,6.03,6.03,6.03,6.0200000000000005,136.95000000000002,136.98,137.08,137.17000000000002,137.25,137.33,137.42000000000002,137.51,137.70000000000002,25.740000000000002,25.43,25.26,25.060000000000002,24.87,24.68,24.48,24.3,23.92,N/A,N/A +2012,10,24,19,30,101490,100340,99210,81.8,0,4.91,5.2700000000000005,5.34,5.37,5.39,5.4,5.41,5.41,5.41,132.63,132.92000000000002,133.06,133.19,133.28,133.36,133.44,133.51,133.64000000000001,25.650000000000002,25.330000000000002,25.16,24.97,24.78,24.59,24.400000000000002,24.21,23.830000000000002,N/A,N/A +2012,10,24,20,30,101470,100310,99190,84.06,0,4.86,5.26,5.34,5.38,5.41,5.43,5.44,5.44,5.44,129.79,129.95,130,130.02,130.03,130.04,130.03,130.02,129.98,25.580000000000002,25.26,25.080000000000002,24.89,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A +2012,10,24,21,30,101440,100280,99160,84.18,0,5.13,5.53,5.62,5.67,5.7,5.72,5.74,5.75,5.76,120.87,121.36,121.67,121.93,122.16,122.37,122.56,122.74000000000001,123.06,25.48,25.17,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A +2012,10,24,22,30,101420,100260,99140,82.97,0,4.95,5.36,5.46,5.5200000000000005,5.57,5.6000000000000005,5.63,5.66,5.72,124.89,124.87,124.9,124.94,124.98,125.02,125.07000000000001,125.13000000000001,125.27,25.57,25.26,25.1,24.900000000000002,24.72,24.54,24.34,24.16,23.78,N/A,N/A +2012,10,24,23,30,101390,100230,99110,86.43,0,5.09,5.46,5.53,5.5600000000000005,5.58,5.58,5.58,5.58,5.5600000000000005,127.56,127.26,127.09,126.92,126.75,126.60000000000001,126.45,126.3,125.98,25.43,25.11,24.95,24.75,24.560000000000002,24.37,24.18,23.990000000000002,23.61,N/A,N/A +2012,10,25,0,30,101360,100210,99080,86.16,0,4.86,5.25,5.33,5.38,5.42,5.44,5.47,5.49,5.55,128.05,128.26,128.37,128.49,128.62,128.74,128.88,129.03,129.43,25.44,25.13,24.97,24.77,24.59,24.400000000000002,24.21,24.03,23.66,N/A,N/A +2012,10,25,1,30,101370,100210,99090,84.07000000000001,0,7.94,8.63,8.78,8.85,8.9,8.92,8.93,8.94,8.94,133.36,133.58,133.72,133.88,134.04,134.19,134.36,134.51,134.84,25.75,25.46,25.3,25.1,24.92,24.73,24.54,24.36,23.98,N/A,N/A +2012,10,25,2,30,101340,100180,99060,87.94,0,7.55,8.27,8.44,8.53,8.59,8.63,8.65,8.66,8.66,132.56,132.73,132.8,132.86,132.9,132.93,132.96,132.98,133.01,25.490000000000002,25.18,25.01,24.82,24.63,24.44,24.25,24.07,23.69,N/A,N/A +2012,10,25,3,30,101330,100180,99060,87.54,0,8.23,9.05,9.24,9.34,9.41,9.450000000000001,9.48,9.49,9.49,133.56,133.65,133.7,133.75,133.8,133.84,133.88,133.93,134.03,25.53,25.22,25.05,24.85,24.66,24.48,24.28,24.1,23.71,N/A,N/A +2012,10,25,4,30,101290,100130,99010,88.71000000000001,0,8.59,9.52,9.75,9.9,10,10.08,10.14,10.19,10.26,135.61,135.97,136.11,136.25,136.38,136.49,136.61,136.71,136.92000000000002,25.61,25.3,25.13,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A +2012,10,25,5,30,101260,100100,98990,86.03,0,8.870000000000001,9.83,10.06,10.19,10.290000000000001,10.35,10.4,10.43,10.48,136.15,136.37,136.5,136.62,136.73,136.83,136.93,137.01,137.20000000000002,25.67,25.37,25.21,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.89,N/A,N/A +2012,10,25,6,30,101250,100090,98970,83.26,0,9.84,10.9,11.14,11.27,11.35,11.4,11.43,11.450000000000001,11.44,139.98,139.95000000000002,139.97,140,140.03,140.06,140.11,140.16,140.28,25.72,25.44,25.28,25.09,24.900000000000002,24.72,24.53,24.35,23.97,N/A,N/A +2012,10,25,7,30,101260,100110,98990,81.69,0,9.46,10.5,10.77,10.94,11.07,11.15,11.22,11.28,11.35,145.88,145.99,146.03,146.08,146.13,146.18,146.24,146.29,146.4,25.71,25.44,25.28,25.09,24.91,24.72,24.53,24.35,23.97,N/A,N/A +2012,10,25,8,30,101220,100070,98950,85.08,0,9.52,10.56,10.82,10.98,11.1,11.18,11.24,11.28,11.34,147.41,147.47,147.52,147.56,147.59,147.62,147.64000000000001,147.67000000000002,147.72,25.57,25.28,25.12,24.92,24.73,24.54,24.35,24.16,23.78,N/A,N/A +2012,10,25,9,30,101210,100050,98930,81.5,0,9.49,10.53,10.790000000000001,10.950000000000001,11.06,11.14,11.19,11.23,11.27,153.45000000000002,153.75,153.87,153.98,154.07,154.16,154.24,154.31,154.45000000000002,25.69,25.42,25.26,25.080000000000002,24.89,24.71,24.52,24.34,23.96,N/A,N/A +2012,10,25,10,30,101200,100050,98930,78.3,0,9.02,10.01,10.25,10.39,10.5,10.57,10.620000000000001,10.66,10.71,155.45000000000002,155.26,155.26,155.28,155.31,155.34,155.38,155.43,155.53,25.8,25.54,25.38,25.19,25,24.82,24.62,24.44,24.07,N/A,N/A +2012,10,25,11,30,101210,100050,98930,77.58,0,8.9,9.88,10.120000000000001,10.26,10.36,10.43,10.47,10.51,10.55,158.56,158.67000000000002,158.74,158.81,158.88,158.94,159.02,159.08,159.21,25.8,25.53,25.36,25.17,24.990000000000002,24.8,24.61,24.43,24.04,N/A,N/A +2012,10,25,12,30,101220,100060,98940,75.93,0,9.120000000000001,10.15,10.42,10.59,10.72,10.81,10.88,10.93,11.01,163.23,163.53,163.62,163.71,163.77,163.83,163.88,163.93,164.03,26.01,25.78,25.63,25.44,25.26,25.09,24.900000000000002,24.72,24.34,N/A,N/A +2012,10,25,13,30,101240,100080,98960,79.01,0,9.14,10.17,10.46,10.64,10.77,10.870000000000001,10.950000000000001,11.01,11.1,166.55,166.74,166.79,166.83,166.85,166.88,166.9,166.91,166.95000000000002,25.87,25.63,25.48,25.3,25.12,24.93,24.75,24.57,24.19,N/A,N/A +2012,10,25,14,30,101290,100130,99020,80.72,0,7.94,8.74,8.950000000000001,9.07,9.16,9.22,9.26,9.3,9.35,163.6,163.77,163.87,163.99,164.1,164.21,164.33,164.45000000000002,164.69,25.830000000000002,25.57,25.42,25.23,25.04,24.86,24.67,24.490000000000002,24.12,N/A,N/A +2012,10,25,15,30,101300,100140,99020,82.04,0,7.140000000000001,7.82,7.97,8.05,8.1,8.13,8.14,8.15,8.14,156.6,157.03,157.25,157.46,157.65,157.83,158.02,158.20000000000002,158.6,25.75,25.48,25.330000000000002,25.14,24.96,24.77,24.580000000000002,24.400000000000002,24.03,N/A,N/A +2012,10,25,16,30,101280,100130,99010,79.49,0,5.97,6.5600000000000005,6.72,6.8100000000000005,6.890000000000001,6.94,6.99,7.0200000000000005,7.08,162.69,162.56,162.51,162.47,162.42000000000002,162.38,162.34,162.31,162.22,25.91,25.650000000000002,25.5,25.310000000000002,25.12,24.94,24.75,24.57,24.19,N/A,N/A +2012,10,25,17,30,101280,100120,99000,79.21000000000001,0,5.53,6.03,6.140000000000001,6.2,6.25,6.28,6.3,6.32,6.37,157.75,158.08,158.26,158.42000000000002,158.56,158.70000000000002,158.83,158.96,159.27,25.94,25.67,25.51,25.330000000000002,25.150000000000002,24.96,24.78,24.6,24.23,N/A,N/A +2012,10,25,18,30,101290,100140,99020,80.7,0,5.28,5.73,5.83,5.87,5.91,5.93,5.94,5.95,5.96,156.31,156.46,156.54,156.63,156.71,156.8,156.88,156.97,157.16,25.91,25.63,25.47,25.28,25.09,24.900000000000002,24.72,24.53,24.150000000000002,N/A,N/A +2012,10,25,19,30,101300,100150,99030,81.10000000000001,0,4.6000000000000005,4.97,5.05,5.09,5.11,5.13,5.13,5.14,5.14,152.99,153.03,153.09,153.16,153.23,153.31,153.4,153.47,153.66,25.93,25.650000000000002,25.48,25.28,25.1,24.91,24.72,24.53,24.150000000000002,N/A,N/A +2012,10,25,20,30,101270,100110,99000,80.98,0,4.25,4.57,4.63,4.66,4.68,4.7,4.71,4.72,4.73,148.23,148.5,148.69,148.89000000000001,149.06,149.22,149.39000000000001,149.56,149.89000000000001,25.92,25.62,25.46,25.26,25.07,24.89,24.69,24.5,24.12,N/A,N/A +2012,10,25,21,30,101250,100090,98980,81.27,0,4.8500000000000005,5.25,5.33,5.38,5.4,5.43,5.44,5.45,5.47,145.5,145.77,145.91,146.04,146.16,146.27,146.38,146.47,146.66,25.900000000000002,25.62,25.45,25.26,25.07,24.88,24.69,24.5,24.12,N/A,N/A +2012,10,25,22,30,101220,100060,98950,80.21000000000001,0,4.07,4.4,4.47,4.5,4.53,4.54,4.55,4.5600000000000005,4.57,145.94,145.8,145.69,145.57,145.45000000000002,145.33,145.21,145.1,144.83,25.85,25.59,25.43,25.23,25.05,24.86,24.67,24.48,24.1,N/A,N/A +2012,10,25,23,30,101240,100090,98970,83.06,0,3.91,4.24,4.32,4.37,4.4,4.43,4.45,4.46,4.49,138.42000000000002,138.70000000000002,138.94,139.16,139.35,139.53,139.70000000000002,139.87,140.20000000000002,25.73,25.45,25.3,25.1,24.92,24.73,24.54,24.35,23.97,N/A,N/A +2012,10,26,0,30,101260,100110,98990,84.74,0,4.32,4.68,4.76,4.8,4.82,4.84,4.86,4.87,4.89,141.84,142.06,142.18,142.29,142.39000000000001,142.5,142.6,142.68,142.89000000000001,25.61,25.330000000000002,25.17,24.98,24.79,24.61,24.41,24.23,23.85,N/A,N/A +2012,10,26,1,30,101260,100110,98990,84.9,0,4.86,5.28,5.36,5.4,5.43,5.44,5.45,5.46,5.47,140.45000000000002,140.78,140.94,141.07,141.17000000000002,141.26,141.33,141.39000000000001,141.46,25.650000000000002,25.36,25.2,25.01,24.82,24.63,24.44,24.26,23.88,N/A,N/A +2012,10,26,2,30,101290,100140,99020,84.7,0,5.92,6.45,6.5600000000000005,6.61,6.640000000000001,6.65,6.66,6.66,6.63,139.06,139.21,139.36,139.52,139.66,139.81,139.95000000000002,140.09,140.35,25.7,25.42,25.26,25.07,24.89,24.7,24.5,24.32,23.94,N/A,N/A +2012,10,26,3,30,101300,100150,99030,84.55,0,5.46,5.96,6.07,6.140000000000001,6.18,6.21,6.22,6.23,6.23,135.94,136.53,136.92000000000002,137.33,137.70000000000002,138.06,138.43,138.77,139.47,25.67,25.39,25.23,25.04,24.86,24.67,24.48,24.29,23.92,N/A,N/A +2012,10,26,4,30,101310,100160,99030,84.3,0,4.9,5.32,5.41,5.46,5.5,5.5200000000000005,5.53,5.54,5.55,137.51,137.55,137.58,137.6,137.61,137.62,137.63,137.64000000000001,137.67000000000002,25.5,25.21,25.04,24.85,24.66,24.48,24.28,24.1,23.72,N/A,N/A +2012,10,26,5,30,101310,100150,99030,84.7,0,4.32,4.64,4.72,4.75,4.78,4.8,4.8100000000000005,4.82,4.83,134.29,134.48,134.51,134.55,134.59,134.64000000000001,134.69,134.73,134.85,25.37,25.07,24.900000000000002,24.7,24.51,24.330000000000002,24.13,23.95,23.56,N/A,N/A +2012,10,26,6,30,101330,100170,99050,87.56,0,4.72,5.05,5.11,5.13,5.14,5.15,5.14,5.13,5.11,139.02,139.34,139.51,139.70000000000002,139.88,140.07,140.28,140.48,140.96,25.22,24.900000000000002,24.72,24.53,24.34,24.150000000000002,23.96,23.78,23.39,N/A,N/A +2012,10,26,7,30,101360,100200,99080,87.97,0,4.0600000000000005,4.3100000000000005,4.3500000000000005,4.36,4.37,4.37,4.36,4.36,4.34,138.39000000000001,138.59,138.74,138.91,139.08,139.27,139.49,139.71,140.29,25.13,24.810000000000002,24.64,24.44,24.25,24.07,23.87,23.69,23.31,N/A,N/A +2012,10,26,8,30,101380,100220,99100,85.71000000000001,0,2.5500000000000003,2.66,2.66,2.66,2.65,2.64,2.62,2.61,2.58,151.68,151.83,152.03,152.24,152.45000000000002,152.65,152.88,153.1,153.63,25.17,24.86,24.69,24.5,24.310000000000002,24.12,23.93,23.740000000000002,23.36,N/A,N/A +2012,10,26,9,30,101390,100230,99100,86.64,0,2.58,2.71,2.74,2.75,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.77,160.59,161.15,161.46,161.81,162.17000000000002,162.54,162.97,163.39000000000001,164.42000000000002,25.080000000000002,24.76,24.59,24.39,24.21,24.02,23.82,23.64,23.26,N/A,N/A +2012,10,26,10,30,101420,100260,99140,86.53,0,1.68,1.77,1.79,1.81,1.82,1.83,1.84,1.85,1.87,170.59,171.88,172.53,173.17000000000002,173.75,174.33,174.93,175.51,176.8,25.1,24.79,24.62,24.43,24.240000000000002,24.05,23.85,23.67,23.29,N/A,N/A +2012,10,26,11,30,101450,100290,99170,84.85000000000001,0,1.1,1.18,1.2,1.23,1.25,1.27,1.29,1.31,1.36,218.71,219.07,219.43,219.76,220.05,220.35,220.61,220.84,221.38,25.19,24.88,24.71,24.52,24.330000000000002,24.14,23.95,23.77,23.39,N/A,N/A +2012,10,26,12,30,101490,100340,99210,83.92,0,0.8300000000000001,0.87,0.88,0.89,0.9,0.91,0.93,0.9400000000000001,0.98,304.59000000000003,300.74,298.45,296.13,294.05,292.04,290.08,288.23,284.54,25.23,24.93,24.76,24.57,24.38,24.19,24,23.81,23.43,N/A,N/A +2012,10,26,13,30,101520,100360,99230,85.34,0,1.78,1.83,1.82,1.8,1.78,1.77,1.75,1.73,1.69,358.69,357.17,356.18,355.15000000000003,354.16,353.18,352.12,351.12,348.86,25.150000000000002,24.84,24.67,24.47,24.29,24.1,23.91,23.72,23.34,N/A,N/A +2012,10,26,14,30,101590,100410,99280,99.42,0,9.89,10.44,10.46,10.33,10.09,9.78,9.14,8.49,7.19,337.75,337.8,337.77,337.66,337.36,336.93,335.93,334.90000000000003,333.05,21.96,21.490000000000002,21.330000000000002,21.21,21.14,21.12,21.19,21.29,21.53,N/A,N/A +2012,10,26,15,30,101600,100420,99280,94.03,1.5,10.620000000000001,11.41,11.540000000000001,11.58,11.57,11.55,11.5,11.450000000000001,11.3,350.74,350.79,350.74,350.69,350.63,350.57,350.5,350.42,350.17,21.16,20.57,20.35,20.13,19.93,19.75,19.55,19.38,19.02,N/A,N/A +2012,10,26,16,30,101650,100470,99320,92.8,0,9.39,10.040000000000001,10.17,10.22,10.24,10.24,10.22,10.21,10.15,1.3,1.36,1.4000000000000001,1.44,1.51,1.57,1.6500000000000001,1.74,1.97,20.490000000000002,19.89,19.67,19.45,19.25,19.06,18.86,18.68,18.31,N/A,N/A +2012,10,26,17,30,101610,100430,99280,90.5,0,10.48,11.23,11.35,11.38,11.370000000000001,11.35,11.31,11.26,11.15,353.19,353.55,353.73,353.91,354.12,354.31,354.57,354.82,355.57,20.32,19.7,19.47,19.26,19.07,18.88,18.69,18.52,18.17,N/A,N/A +2012,10,26,18,30,101650,100470,99320,86.25,0,10.11,10.86,11,11.06,11.08,11.08,11.06,11.040000000000001,10.96,355.90000000000003,356.08,356.18,356.3,356.42,356.54,356.69,356.83,357.2,20.490000000000002,19.87,19.64,19.41,19.21,19.01,18.81,18.63,18.240000000000002,N/A,N/A +2012,10,26,19,30,101670,100490,99330,84.37,0,10.74,11.57,11.73,11.790000000000001,11.82,11.83,11.81,11.790000000000001,11.72,352.38,352.85,353.14,353.43,353.71,353.97,354.25,354.52,355.11,20.29,19.650000000000002,19.41,19.19,18.98,18.79,18.580000000000002,18.39,18.01,N/A,N/A +2012,10,26,20,30,101690,100500,99350,83.2,0,10.98,11.84,12.01,12.09,12.120000000000001,12.13,12.13,12.120000000000001,12.06,359.35,359.51,359.6,359.69,359.77,359.85,359.93,0.01,0.17,19.84,19.17,18.92,18.69,18.47,18.28,18.07,17.88,17.48,N/A,N/A +2012,10,26,21,30,101730,100530,99380,84.36,0,11.28,12.16,12.35,12.44,12.49,12.52,12.52,12.51,12.47,355.69,355.84000000000003,355.94,356.03000000000003,356.12,356.2,356.29,356.37,356.53000000000003,19.11,18.39,18.13,17.89,17.67,17.47,17.26,17.06,16.67,N/A,N/A +2012,10,26,22,30,101750,100550,99390,85.19,0,11.84,12.780000000000001,12.99,13.08,13.120000000000001,13.15,13.15,13.15,13.11,356.28000000000003,356.40000000000003,356.47,356.54,356.62,356.68,356.75,356.82,356.98,18.43,17.67,17.400000000000002,17.16,16.94,16.73,16.52,16.330000000000002,15.93,N/A,N/A +2012,10,26,23,30,101780,100580,99410,86.53,0,12.76,13.85,14.1,14.22,14.290000000000001,14.34,14.36,14.370000000000001,14.36,0.9,0.97,0.97,0.97,0.96,0.96,0.96,0.96,0.96,17.78,16.95,16.67,16.43,16.19,15.99,15.77,15.58,15.18,N/A,N/A +2012,10,27,0,30,101830,100630,99460,85.27,0,12.19,13.15,13.35,13.43,13.46,13.47,13.450000000000001,13.43,13.370000000000001,358.47,358.63,358.71,358.79,358.87,358.95,359.04,359.13,359.32,17.09,16.26,15.98,15.74,15.51,15.31,15.1,14.9,14.51,N/A,N/A +2012,10,27,1,30,101890,100680,99500,86.32000000000001,0,12.67,13.69,13.92,14.030000000000001,14.1,14.14,14.16,14.17,14.16,6.54,6.69,6.78,6.86,6.94,7,7.08,7.15,7.3100000000000005,16.51,15.64,15.34,15.09,14.86,14.65,14.43,14.24,13.84,N/A,N/A +2012,10,27,2,30,101930,100720,99540,86.77,0,13.030000000000001,14.11,14.35,14.47,14.540000000000001,14.59,14.61,14.620000000000001,14.61,6.18,6.43,6.5600000000000005,6.69,6.8100000000000005,6.92,7.05,7.16,7.41,15.94,15.02,14.72,14.46,14.23,14.02,13.8,13.6,13.200000000000001,N/A,N/A +2012,10,27,3,30,101960,100740,99570,87.68,0,12.05,13.01,13.23,13.35,13.42,13.46,13.49,13.51,13.52,9.86,9.950000000000001,10.02,10.07,10.13,10.18,10.23,10.28,10.38,15.68,14.790000000000001,14.49,14.24,14,13.790000000000001,13.57,13.370000000000001,12.97,N/A,N/A +2012,10,27,4,30,101930,100720,99540,86.9,0,12.32,13.280000000000001,13.5,13.620000000000001,13.68,13.73,13.75,13.76,13.77,5.61,5.74,5.83,5.92,5.99,6.0600000000000005,6.140000000000001,6.21,6.36,15.42,14.51,14.21,13.950000000000001,13.72,13.51,13.290000000000001,13.09,12.69,N/A,N/A +2012,10,27,5,30,101940,100730,99550,85.67,0,12.49,13.51,13.75,13.88,13.950000000000001,14.01,14.040000000000001,14.06,14.07,7.72,7.99,8.13,8.27,8.4,8.53,8.65,8.77,9.03,15.13,14.200000000000001,13.89,13.63,13.39,13.18,12.96,12.76,12.36,N/A,N/A +2012,10,27,6,30,101930,100710,99530,83.76,0,13.120000000000001,14.23,14.49,14.63,14.72,14.77,14.8,14.83,14.84,10.49,10.64,10.73,10.82,10.9,10.98,11.06,11.15,11.31,15.1,14.15,13.84,13.58,13.33,13.120000000000001,12.9,12.700000000000001,12.290000000000001,N/A,N/A +2012,10,27,7,30,101980,100760,99580,77.46000000000001,0,13.280000000000001,14.4,14.66,14.8,14.88,14.94,14.97,14.99,15,13.51,13.66,13.76,13.84,13.91,13.99,14.06,14.13,14.280000000000001,15.09,14.13,13.82,13.56,13.32,13.11,12.89,12.68,12.290000000000001,N/A,N/A +2012,10,27,8,30,101960,100740,99560,73.72,0,13.38,14.51,14.780000000000001,14.91,15,15.05,15.08,15.11,15.120000000000001,12.31,12.48,12.56,12.64,12.71,12.780000000000001,12.85,12.91,13.05,15.030000000000001,14.08,13.76,13.5,13.26,13.05,12.83,12.620000000000001,12.22,N/A,N/A +2012,10,27,9,30,101980,100760,99570,70.74,0,13.42,14.55,14.8,14.94,15.02,15.07,15.1,15.120000000000001,15.13,11.120000000000001,11.26,11.35,11.43,11.51,11.59,11.67,11.74,11.9,14.700000000000001,13.73,13.41,13.15,12.91,12.69,12.47,12.27,11.870000000000001,N/A,N/A +2012,10,27,10,30,102010,100790,99600,70.87,0,14.32,15.56,15.85,15.99,16.080000000000002,16.14,16.16,16.18,16.18,17.86,18.02,18.12,18.22,18.3,18.37,18.45,18.52,18.67,14.1,13.07,12.74,12.47,12.23,12.01,11.790000000000001,11.59,11.19,N/A,N/A +2012,10,27,11,30,102080,100850,99660,71.93,0,14.14,15.34,15.620000000000001,15.76,15.84,15.9,15.92,15.94,15.94,19.05,19.2,19.31,19.400000000000002,19.490000000000002,19.57,19.650000000000002,19.73,19.89,13.75,12.71,12.370000000000001,12.1,11.85,11.64,11.42,11.21,10.81,N/A,N/A +2012,10,27,12,30,102130,100900,99710,71.75,0,13.52,14.63,14.88,15.02,15.09,15.14,15.16,15.17,15.17,17.72,17.900000000000002,18.01,18.11,18.2,18.29,18.38,18.47,18.650000000000002,13.370000000000001,12.33,12,11.73,11.49,11.27,11.05,10.84,10.44,N/A,N/A +2012,10,27,13,30,102130,100900,99710,73.27,0,13.66,14.77,15.02,15.15,15.21,15.26,15.27,15.280000000000001,15.27,16.16,16.32,16.4,16.47,16.55,16.61,16.68,16.740000000000002,16.88,13.05,12.01,11.68,11.41,11.16,10.950000000000001,10.73,10.52,10.120000000000001,N/A,N/A +2012,10,27,14,30,102150,100920,99720,74.09,0,12.61,13.57,13.790000000000001,13.89,13.950000000000001,13.99,14,14,13.99,14.02,14.17,14.26,14.34,14.42,14.49,14.57,14.63,14.780000000000001,12.870000000000001,11.86,11.53,11.27,11.03,10.81,10.59,10.4,10,N/A,N/A +2012,10,27,15,30,102160,100930,99740,73.01,0,10.96,11.73,11.9,11.98,12.02,12.040000000000001,12.05,12.05,12.040000000000001,10.32,10.42,10.49,10.55,10.620000000000001,10.67,10.74,10.8,10.93,13.09,12.16,11.85,11.59,11.35,11.15,10.93,10.73,10.34,N/A,N/A +2012,10,27,16,30,102120,100900,99710,69.99,0,10.47,11.200000000000001,11.35,11.43,11.47,11.5,11.51,11.52,11.52,6.3,6.390000000000001,6.46,6.5200000000000005,6.58,6.63,6.69,6.75,6.8500000000000005,13.700000000000001,12.82,12.52,12.26,12.030000000000001,11.82,11.6,11.41,11.01,N/A,N/A +2012,10,27,17,30,102080,100860,99670,65.51,0,9.66,10.31,10.46,10.53,10.58,10.61,10.620000000000001,10.64,10.64,1.35,1.5,1.6,1.7,1.79,1.87,1.96,2.04,2.2,14.52,13.69,13.4,13.14,12.91,12.700000000000001,12.48,12.280000000000001,11.88,N/A,N/A +2012,10,27,18,30,102040,100820,99640,60.71,0,9.15,9.76,9.89,9.96,10,10.03,10.040000000000001,10.05,10.05,359.33,359.45,359.52,359.59000000000003,359.65000000000003,359.71,359.77,359.83,359.95,15.33,14.55,14.27,14.030000000000001,13.8,13.6,13.38,13.18,12.780000000000001,N/A,N/A +2012,10,27,19,30,101990,100770,99590,58.79,0,9.43,10.07,10.22,10.3,10.35,10.38,10.4,10.42,10.43,355.04,355.07,355.11,355.14,355.18,355.21,355.24,355.28000000000003,355.35,16.18,15.42,15.15,14.9,14.67,14.46,14.24,14.040000000000001,13.64,N/A,N/A +2012,10,27,20,30,101930,100720,99540,56.5,0,9.21,9.83,9.97,10.05,10.09,10.13,10.14,10.16,10.17,353.47,353.69,353.84000000000003,353.98,354.12,354.25,354.37,354.49,354.73,16.89,16.16,15.9,15.65,15.43,15.22,15,14.8,14.39,N/A,N/A +2012,10,27,21,30,101910,100700,99530,54.5,0,9.21,9.84,9.98,10.07,10.120000000000001,10.15,10.17,10.19,10.200000000000001,354.7,354.91,355.04,355.15000000000003,355.26,355.36,355.46,355.56,355.74,17.37,16.66,16.4,16.15,15.93,15.72,15.5,15.3,14.89,N/A,N/A +2012,10,27,22,30,101900,100700,99530,53.65,0,9.17,9.8,9.94,10.02,10.07,10.1,10.11,10.13,10.14,356.06,356.19,356.28000000000003,356.37,356.46,356.54,356.62,356.7,356.86,17.56,16.85,16.59,16.35,16.12,15.92,15.700000000000001,15.5,15.09,N/A,N/A +2012,10,27,23,30,101920,100710,99540,50.050000000000004,0,9.870000000000001,10.55,10.68,10.74,10.77,10.790000000000001,10.790000000000001,10.790000000000001,10.78,0.46,0.23,0.04,359.84000000000003,359.64,359.46,359.27,359.09000000000003,358.74,17.42,16.69,16.43,16.2,15.98,15.780000000000001,15.56,15.36,14.97,N/A,N/A +2012,10,28,0,30,101960,100750,99570,55.01,0,10.59,11.34,11.51,11.58,11.620000000000001,11.65,11.65,11.65,11.63,1.6600000000000001,1.59,1.53,1.48,1.42,1.37,1.32,1.27,1.18,17,16.23,15.950000000000001,15.71,15.48,15.27,15.05,14.85,14.450000000000001,N/A,N/A +2012,10,28,1,30,101990,100780,99600,55.410000000000004,0,10.69,11.47,11.63,11.71,11.75,11.77,11.78,11.78,11.77,3.18,3.3000000000000003,3.37,3.43,3.49,3.54,3.6,3.65,3.75,16.44,15.64,15.370000000000001,15.13,14.9,14.69,14.48,14.280000000000001,13.88,N/A,N/A +2012,10,28,2,30,102040,100820,99640,57.93,0,10.81,11.61,11.78,11.86,11.91,11.94,11.950000000000001,11.96,11.950000000000001,10.14,10.16,10.16,10.17,10.17,10.17,10.17,10.16,10.16,16.12,15.31,15.030000000000001,14.780000000000001,14.55,14.34,14.120000000000001,13.92,13.51,N/A,N/A +2012,10,28,3,30,102060,100850,99670,58.1,0,11.08,11.9,12.08,12.17,12.22,12.25,12.27,12.27,12.27,14.39,14.4,14.41,14.42,14.42,14.43,14.42,14.41,14.41,15.83,14.99,14.71,14.46,14.22,14.01,13.790000000000001,13.59,13.18,N/A,N/A +2012,10,28,4,30,102080,100860,99680,59.35,0,11.08,11.89,12.07,12.16,12.21,12.23,12.25,12.25,12.24,18.51,18.55,18.55,18.56,18.56,18.56,18.57,18.57,18.57,15.47,14.620000000000001,14.33,14.08,13.85,13.64,13.42,13.22,12.81,N/A,N/A +2012,10,28,5,30,102110,100890,99700,58.1,0,11.26,12.08,12.26,12.34,12.39,12.42,12.42,12.43,12.41,21.23,21.330000000000002,21.39,21.43,21.47,21.51,21.54,21.580000000000002,21.650000000000002,15.23,14.370000000000001,14.07,13.82,13.59,13.370000000000001,13.15,12.950000000000001,12.55,N/A,N/A +2012,10,28,6,30,102120,100900,99710,58.9,0,11.35,12.19,12.38,12.47,12.52,12.540000000000001,12.55,12.55,12.530000000000001,21.57,21.78,21.89,21.98,22.07,22.150000000000002,22.23,22.3,22.45,14.96,14.120000000000001,13.83,13.58,13.35,13.14,12.92,12.72,12.32,N/A,N/A +2012,10,28,7,30,102150,100930,99740,58.79,0,11.11,11.93,12.11,12.200000000000001,12.24,12.27,12.280000000000001,12.290000000000001,12.27,24.91,25.080000000000002,25.16,25.240000000000002,25.310000000000002,25.37,25.43,25.490000000000002,25.6,14.68,13.84,13.55,13.3,13.07,12.86,12.64,12.44,12.040000000000001,N/A,N/A +2012,10,28,8,30,102170,100950,99760,58.7,0,10.72,11.49,11.66,11.74,11.790000000000001,11.82,11.82,11.83,11.81,27.32,27.48,27.59,27.68,27.76,27.830000000000002,27.91,27.98,28.11,14.56,13.72,13.44,13.19,12.950000000000001,12.75,12.530000000000001,12.33,11.92,N/A,N/A +2012,10,28,9,30,102170,100950,99760,58.72,0,10.790000000000001,11.57,11.73,11.81,11.85,11.88,11.88,11.88,11.86,26.19,26.37,26.48,26.57,26.66,26.740000000000002,26.82,26.900000000000002,27.05,14.36,13.52,13.24,12.99,12.76,12.55,12.33,12.13,11.73,N/A,N/A +2012,10,28,10,30,102190,100970,99780,58.39,0,10.76,11.52,11.69,11.76,11.8,11.82,11.83,11.83,11.81,25.740000000000002,25.92,26.02,26.12,26.2,26.28,26.36,26.43,26.580000000000002,14.18,13.33,13.040000000000001,12.790000000000001,12.56,12.35,12.14,11.94,11.540000000000001,N/A,N/A +2012,10,28,11,30,102210,100980,99790,58.96,0,10.620000000000001,11.36,11.51,11.58,11.61,11.63,11.620000000000001,11.620000000000001,11.59,24.96,25.18,25.3,25.42,25.52,25.62,25.71,25.810000000000002,25.990000000000002,14.06,13.21,12.92,12.67,12.44,12.23,12.02,11.82,11.42,N/A,N/A +2012,10,28,12,30,102230,101010,99820,58.9,0,10.32,11.03,11.18,11.24,11.28,11.290000000000001,11.3,11.290000000000001,11.27,23.79,23.990000000000002,24.12,24.240000000000002,24.35,24.45,24.560000000000002,24.650000000000002,24.84,13.98,13.14,12.85,12.61,12.370000000000001,12.17,11.950000000000001,11.75,11.36,N/A,N/A +2012,10,28,13,30,102260,101030,99840,59.96,0,10.3,10.99,11.13,11.19,11.21,11.22,11.21,11.200000000000001,11.16,23.07,23.29,23.42,23.54,23.66,23.76,23.87,23.98,24.18,13.71,12.86,12.57,12.32,12.09,11.89,11.67,11.48,11.08,N/A,N/A +2012,10,28,14,30,102300,101070,99870,59.92,0,9.74,10.38,10.51,10.56,10.59,10.6,10.6,10.6,10.57,22.990000000000002,23.150000000000002,23.26,23.36,23.45,23.53,23.62,23.69,23.85,13.66,12.83,12.55,12.3,12.07,11.870000000000001,11.65,11.450000000000001,11.06,N/A,N/A +2012,10,28,15,30,102300,101070,99880,59,0,9.35,9.950000000000001,10.07,10.13,10.15,10.17,10.17,10.17,10.15,20.19,20.330000000000002,20.400000000000002,20.46,20.51,20.57,20.62,20.67,20.77,13.84,13.030000000000001,12.75,12.51,12.280000000000001,12.08,11.86,11.67,11.27,N/A,N/A +2012,10,28,16,30,102290,101060,99870,57.01,0,8.75,9.3,9.41,9.47,9.49,9.51,9.52,9.52,9.51,17.31,17.36,17.400000000000002,17.43,17.46,17.48,17.51,17.53,17.580000000000002,14.25,13.47,13.200000000000001,12.96,12.73,12.530000000000001,12.32,12.120000000000001,11.72,N/A,N/A +2012,10,28,17,30,102270,101050,99860,54.230000000000004,0,8.040000000000001,8.540000000000001,8.65,8.700000000000001,8.74,8.76,8.77,8.78,8.790000000000001,11.540000000000001,11.620000000000001,11.67,11.72,11.77,11.8,11.84,11.870000000000001,11.94,14.8,14.06,13.8,13.56,13.34,13.14,12.92,12.73,12.33,N/A,N/A +2012,10,28,18,30,102240,101020,99840,50.44,0,7.96,8.47,8.58,8.65,8.69,8.72,8.73,8.75,8.77,7.930000000000001,7.84,7.8,7.76,7.72,7.69,7.66,7.63,7.58,15.540000000000001,14.84,14.58,14.35,14.13,13.92,13.71,13.51,13.11,N/A,N/A +2012,10,28,19,30,102220,101000,99820,47.63,0,7.74,8.23,8.35,8.42,8.47,8.5,8.52,8.540000000000001,8.57,5.25,5.11,5.04,4.98,4.92,4.88,4.84,4.8,4.72,16.46,15.790000000000001,15.540000000000001,15.3,15.08,14.870000000000001,14.66,14.46,14.06,N/A,N/A +2012,10,28,20,30,102170,100960,99780,45.980000000000004,0,7.46,7.930000000000001,8.040000000000001,8.09,8.13,8.16,8.18,8.19,8.22,0.58,0.76,0.87,0.97,1.05,1.12,1.2,1.27,1.41,17.07,16.44,16.19,15.96,15.74,15.540000000000001,15.33,15.13,14.73,N/A,N/A +2012,10,28,21,30,102150,100940,99770,44.37,0,7.57,8.040000000000001,8.14,8.21,8.25,8.27,8.290000000000001,8.31,8.33,3.19,3.12,3.0700000000000003,3,2.96,2.92,2.88,2.85,2.79,17.63,17.01,16.77,16.54,16.32,16.12,15.9,15.700000000000001,15.3,N/A,N/A +2012,10,28,22,30,102140,100930,99760,41.21,0,8.17,8.68,8.78,8.83,8.85,8.86,8.86,8.86,8.85,2.86,2.77,2.72,2.68,2.63,2.59,2.5500000000000003,2.5300000000000002,2.47,17.81,17.19,16.95,16.73,16.51,16.31,16.1,15.9,15.5,N/A,N/A +2012,10,28,23,30,102160,100950,99780,42.050000000000004,0,8.22,8.72,8.81,8.84,8.85,8.85,8.84,8.83,8.8,7.24,7.28,7.28,7.28,7.28,7.2700000000000005,7.26,7.25,7.21,17.78,17.150000000000002,16.91,16.69,16.47,16.28,16.07,15.870000000000001,15.47,N/A,N/A +2012,10,29,0,30,102180,100970,99800,45.13,0,8.4,8.94,9.040000000000001,9.09,9.1,9.120000000000001,9.11,9.11,9.09,6.8100000000000005,6.97,7.0600000000000005,7.140000000000001,7.21,7.28,7.34,7.41,7.53,17.490000000000002,16.84,16.6,16.37,16.15,15.96,15.74,15.55,15.15,N/A,N/A +2012,10,29,1,30,102200,100990,99820,49.56,0,8.66,9.22,9.34,9.39,9.42,9.44,9.44,9.44,9.43,13.55,13.71,13.790000000000001,13.88,13.950000000000001,14.01,14.08,14.14,14.27,17.23,16.56,16.31,16.080000000000002,15.860000000000001,15.66,15.44,15.25,14.85,N/A,N/A +2012,10,29,2,30,102230,101020,99840,50.2,0,8.32,8.85,8.97,9.02,9.05,9.06,9.07,9.07,9.06,19.48,19.5,19.5,19.51,19.51,19.51,19.51,19.52,19.52,17.05,16.38,16.14,15.9,15.68,15.48,15.27,15.07,14.67,N/A,N/A +2012,10,29,3,30,102240,101030,99850,50.44,0,8.31,8.83,8.93,8.98,9,9.01,9.01,9.01,8.99,22.37,22.47,22.52,22.57,22.62,22.650000000000002,22.69,22.740000000000002,22.82,16.95,16.28,16.04,15.8,15.58,15.39,15.17,14.98,14.58,N/A,N/A +2012,10,29,4,30,102240,101030,99850,51.51,0,8.57,9.11,9.22,9.26,9.28,9.290000000000001,9.290000000000001,9.290000000000001,9.26,24.18,24.28,24.32,24.37,24.41,24.45,24.490000000000002,24.53,24.6,16.84,16.16,15.92,15.68,15.47,15.26,15.05,14.85,14.46,N/A,N/A +2012,10,29,5,30,102260,101040,99860,51.15,0,8.32,8.83,8.93,8.98,8.99,9,9,8.99,8.97,26.44,26.650000000000002,26.77,26.88,26.98,27.07,27.17,27.26,27.44,16.78,16.11,15.860000000000001,15.63,15.41,15.21,14.99,14.8,14.4,N/A,N/A +2012,10,29,6,30,102280,101060,99880,52.31,0,8.8,9.36,9.47,9.51,9.53,9.540000000000001,9.540000000000001,9.53,9.5,25.66,25.900000000000002,26.04,26.18,26.310000000000002,26.42,26.54,26.650000000000002,26.88,16.6,15.91,15.66,15.43,15.200000000000001,15,14.790000000000001,14.59,14.200000000000001,N/A,N/A +2012,10,29,7,30,102320,101100,99920,52.85,0,8.53,9.05,9.15,9.18,9.200000000000001,9.200000000000001,9.19,9.18,9.13,27.73,28.03,28.2,28.37,28.53,28.66,28.810000000000002,28.94,29.21,16.45,15.76,15.51,15.280000000000001,15.06,14.86,14.65,14.450000000000001,14.06,N/A,N/A +2012,10,29,8,30,102330,101110,99930,54.300000000000004,0,8.46,8.97,9.06,9.09,9.1,9.1,9.09,9.07,9.02,29.19,29.53,29.740000000000002,29.92,30.09,30.25,30.42,30.560000000000002,30.87,16.28,15.59,15.34,15.1,14.89,14.68,14.47,14.280000000000001,13.88,N/A,N/A +2012,10,29,9,30,102350,101130,99950,54.6,0,8.45,8.950000000000001,9.040000000000001,9.07,9.08,9.08,9.06,9.05,9,30.55,30.94,31.17,31.38,31.580000000000002,31.76,31.95,32.13,32.49,16.1,15.41,15.15,14.92,14.700000000000001,14.5,14.290000000000001,14.09,13.700000000000001,N/A,N/A +2012,10,29,10,30,102360,101150,99960,55.46,0,8.36,8.85,8.94,8.97,8.97,8.97,8.950000000000001,8.94,8.88,31.76,32.21,32.480000000000004,32.730000000000004,32.96,33.17,33.39,33.6,34.01,16.080000000000002,15.39,15.13,14.9,14.68,14.48,14.27,14.07,13.68,N/A,N/A +2012,10,29,11,30,102390,101170,99990,56.46,0,8.55,9.05,9.13,9.16,9.16,9.16,9.13,9.11,9.05,33.43,33.85,34.11,34.35,34.58,34.78,35,35.2,35.6,15.98,15.27,15.02,14.790000000000001,14.56,14.36,14.15,13.96,13.56,N/A,N/A +2012,10,29,12,30,102400,101180,100000,60.31,0,8.57,9.07,9.16,9.19,9.19,9.18,9.16,9.14,9.08,33.28,33.74,34.02,34.28,34.53,34.75,34.980000000000004,35.19,35.64,15.72,15,14.74,14.51,14.290000000000001,14.09,13.88,13.68,13.280000000000001,N/A,N/A +2012,10,29,13,30,102420,101200,100020,59.44,0,8.2,8.66,8.73,8.74,8.74,8.73,8.700000000000001,8.68,8.61,33.45,33.95,34.25,34.53,34.79,35.04,35.29,35.53,36,15.71,15,14.75,14.52,14.3,14.1,13.89,13.69,13.3,N/A,N/A +2012,10,29,14,30,102450,101230,100050,60.88,0,7.5600000000000005,7.97,8.03,8.040000000000001,8.040000000000001,8.040000000000001,8.01,7.99,7.94,35.81,36.34,36.68,36.980000000000004,37.27,37.53,37.81,38.06,38.57,15.73,15.05,14.8,14.57,14.35,14.15,13.94,13.74,13.35,N/A,N/A +2012,10,29,15,30,102440,101220,100040,60.77,0,7.3500000000000005,7.73,7.79,7.8,7.79,7.78,7.76,7.74,7.68,34.22,34.69,34.980000000000004,35.230000000000004,35.480000000000004,35.7,35.94,36.160000000000004,36.6,15.84,15.17,14.92,14.69,14.47,14.27,14.06,13.870000000000001,13.48,N/A,N/A +2012,10,29,16,30,102420,101200,100020,58.550000000000004,0,6.91,7.26,7.3100000000000005,7.3100000000000005,7.3100000000000005,7.29,7.2700000000000005,7.25,7.2,33.84,34.22,34.45,34.660000000000004,34.86,35.04,35.230000000000004,35.410000000000004,35.77,15.950000000000001,15.290000000000001,15.05,14.82,14.6,14.41,14.200000000000001,14,13.61,N/A,N/A +2012,10,29,17,30,102390,101170,99990,52.93,0,6.49,6.8100000000000005,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.84,6.82,6.8,6.74,28.48,28.72,28.88,29.03,29.18,29.3,29.43,29.55,29.8,16.18,15.540000000000001,15.290000000000001,15.07,14.85,14.66,14.450000000000001,14.26,13.86,N/A,N/A +2012,10,29,18,30,102350,101140,99960,49.08,0,5.5,5.76,5.8,5.82,5.82,5.82,5.82,5.8100000000000005,5.8,22.52,22.73,22.86,22.98,23.09,23.19,23.29,23.39,23.580000000000002,16.55,15.96,15.72,15.5,15.290000000000001,15.09,14.89,14.69,14.3,N/A,N/A +2012,10,29,19,30,102320,101110,99930,46.660000000000004,0,4.8100000000000005,5.04,5.08,5.11,5.12,5.13,5.13,5.14,5.14,21.86,21.7,21.6,21.51,21.42,21.35,21.26,21.19,21.04,17.19,16.63,16.4,16.18,15.97,15.77,15.56,15.370000000000001,14.97,N/A,N/A +2012,10,29,20,30,102260,101050,99870,43.88,0,4.48,4.71,4.75,4.78,4.8,4.82,4.83,4.84,4.86,14.71,14.75,14.790000000000001,14.82,14.85,14.88,14.91,14.94,15,17.78,17.240000000000002,17.02,16.81,16.6,16.4,16.19,16,15.6,N/A,N/A +2012,10,29,21,30,102210,101010,99830,41.09,0,4.49,4.73,4.78,4.8,4.82,4.84,4.8500000000000005,4.86,4.88,12.35,12.46,12.530000000000001,12.59,12.63,12.67,12.69,12.71,12.74,18.37,17.85,17.63,17.42,17.22,17.02,16.81,16.62,16.23,N/A,N/A +2012,10,29,22,30,102160,100960,99790,41.04,0,4.62,4.87,4.92,4.95,4.98,4.99,5.01,5.0200000000000005,5.04,6.61,6.88,7.05,7.21,7.3500000000000005,7.48,7.61,7.72,7.97,18.8,18.29,18.080000000000002,17.87,17.67,17.47,17.27,17.07,16.68,N/A,N/A +2012,10,29,23,30,102150,100950,99780,42.6,0,5.23,5.5,5.55,5.5600000000000005,5.57,5.57,5.57,5.57,5.55,11.19,11.27,11.290000000000001,11.33,11.35,11.38,11.4,11.43,11.49,19.19,18.69,18.47,18.26,18.05,17.85,17.650000000000002,17.45,17.06,N/A,N/A +2012,10,30,0,30,102130,100930,99770,46.230000000000004,0,5.73,6.04,6.09,6.12,6.13,6.140000000000001,6.140000000000001,6.140000000000001,6.13,14.86,15.120000000000001,15.24,15.36,15.47,15.57,15.66,15.74,15.92,19.22,18.7,18.48,18.27,18.06,17.86,17.650000000000002,17.46,17.06,N/A,N/A +2012,10,30,1,30,102140,100940,99770,45.230000000000004,0,6.03,6.33,6.37,6.37,6.37,6.3500000000000005,6.34,6.3100000000000005,6.2700000000000005,21.740000000000002,21.91,22,22.09,22.17,22.240000000000002,22.32,22.400000000000002,22.55,19.06,18.53,18.31,18.1,17.89,17.7,17.490000000000002,17.3,16.9,N/A,N/A +2012,10,30,2,30,102150,100950,99780,46.11,0,5.34,5.58,5.61,5.61,5.6000000000000005,5.58,5.5600000000000005,5.55,5.5,29.86,30.03,30.11,30.19,30.27,30.35,30.42,30.490000000000002,30.650000000000002,18.94,18.42,18.21,17.990000000000002,17.78,17.59,17.38,17.19,16.8,N/A,N/A +2012,10,30,3,30,102130,100930,99760,48.65,0,5.28,5.51,5.54,5.54,5.53,5.51,5.5,5.48,5.43,34.04,34.31,34.47,34.62,34.76,34.89,35.03,35.15,35.42,18.86,18.330000000000002,18.12,17.91,17.7,17.5,17.3,17.1,16.71,N/A,N/A +2012,10,30,4,30,102110,100910,99740,51.32,0,5.32,5.54,5.55,5.54,5.5200000000000005,5.5,5.47,5.44,5.37,40.57,40.85,41.02,41.18,41.34,41.480000000000004,41.63,41.77,42.07,18.7,18.17,17.96,17.740000000000002,17.53,17.34,17.13,16.95,16.55,N/A,N/A +2012,10,30,5,30,102090,100890,99720,51.550000000000004,0,4.25,4.42,4.43,4.43,4.42,4.4,4.39,4.37,4.33,43.12,43.61,43.9,44.18,44.45,44.69,44.95,45.19,45.7,18.78,18.28,18.06,17.85,17.64,17.45,17.25,17.06,16.66,N/A,N/A +2012,10,30,6,30,102080,100880,99710,51.94,0,4.12,4.2700000000000005,4.28,4.2700000000000005,4.26,4.25,4.23,4.21,4.17,47.61,48.17,48.5,48.82,49.120000000000005,49.39,49.69,49.96,50.53,18.89,18.400000000000002,18.2,17.990000000000002,17.78,17.59,17.38,17.19,16.8,N/A,N/A +2012,10,30,7,30,102070,100870,99700,52.67,0,3.54,3.66,3.66,3.64,3.63,3.61,3.59,3.5700000000000003,3.52,51.300000000000004,51.86,52.18,52.49,52.78,53.04,53.33,53.59,54.14,18.94,18.47,18.26,18.06,17.85,17.66,17.45,17.26,16.87,N/A,N/A +2012,10,30,8,30,102050,100850,99680,53.93,0,2.94,3.02,3.02,3.0100000000000002,2.99,2.98,2.96,2.94,2.9,54.54,55.31,55.81,56.300000000000004,56.76,57.160000000000004,57.6,58,58.85,19,18.54,18.330000000000002,18.13,17.92,17.73,17.52,17.330000000000002,16.94,N/A,N/A +2012,10,30,9,30,102040,100840,99680,58.1,0,2.91,2.98,2.97,2.95,2.93,2.91,2.89,2.87,2.82,60.36,61.15,61.65,62.13,62.59,63.02,63.46,63.88,64.76,18.990000000000002,18.53,18.330000000000002,18.12,17.91,17.72,17.52,17.330000000000002,16.93,N/A,N/A +2012,10,30,10,30,102020,100820,99660,59.370000000000005,0,2.38,2.42,2.41,2.39,2.37,2.35,2.33,2.31,2.27,61.730000000000004,62.93,63.64,64.32000000000001,64.96000000000001,65.55,66.18,66.75,67.95,19.07,18.62,18.41,18.21,18,17.81,17.6,17.41,17.02,N/A,N/A +2012,10,30,11,30,102000,100810,99640,59.59,0,2.2,2.23,2.22,2.2,2.18,2.16,2.14,2.12,2.08,77.05,77.97,78.52,79.03,79.52,79.97,80.44,80.88,81.8,19.2,18.75,18.55,18.34,18.13,17.94,17.740000000000002,17.54,17.150000000000002,N/A,N/A +2012,10,30,12,30,102000,100800,99640,59.94,0,1.9000000000000001,1.93,1.9100000000000001,1.8900000000000001,1.87,1.85,1.83,1.81,1.77,79.04,80.26,81.08,81.88,82.64,83.34,84.09,84.78,86.26,19.28,18.830000000000002,18.63,18.43,18.22,18.03,17.82,17.63,17.240000000000002,N/A,N/A +2012,10,30,13,30,101990,100800,99640,60.02,0,1.76,1.79,1.77,1.75,1.74,1.72,1.71,1.69,1.67,63.050000000000004,64.78,65.93,67.06,68.16,69.18,70.27,71.26,73.4,19.39,18.95,18.75,18.54,18.34,18.150000000000002,17.94,17.75,17.36,N/A,N/A +2012,10,30,14,30,102010,100810,99650,61.04,0,1.78,1.82,1.81,1.8,1.79,1.78,1.77,1.76,1.74,85.15,87.58,88.98,90.32000000000001,91.54,92.66,93.82000000000001,94.88,97.03,19.6,19.17,18.97,18.76,18.56,18.37,18.16,17.97,17.57,N/A,N/A +2012,10,30,15,30,101990,100790,99630,60.99,0,1.27,1.3,1.3,1.3,1.3,1.3,1.3,1.31,1.32,85.96000000000001,89.26,91.38,93.42,95.3,97.03,98.78,100.37,103.60000000000001,19.73,19.31,19.11,18.900000000000002,18.7,18.51,18.31,18.12,17.72,N/A,N/A +2012,10,30,16,30,101960,100760,99600,62.74,0,2.04,2.06,2.04,2.0100000000000002,1.98,1.96,1.94,1.92,1.8800000000000001,118.5,120.34,121.42,122.5,123.52,124.47,125.48,126.4,128.36,19.89,19.47,19.27,19.06,18.86,18.67,18.46,18.28,17.88,N/A,N/A +2012,10,30,17,30,101920,100720,99570,63.42,0,1.37,1.44,1.46,1.48,1.49,1.5,1.52,1.54,1.56,149.06,151.42000000000002,152.79,154.05,155.18,156.20000000000002,157.19,158.08,159.91,20.01,19.59,19.39,19.19,18.990000000000002,18.79,18.59,18.400000000000002,18.01,N/A,N/A +2012,10,30,18,30,101890,100700,99550,66.21000000000001,0,2.16,2.22,2.21,2.2,2.19,2.18,2.17,2.16,2.15,146.39000000000001,148.5,149.76,150.97,152.08,153.1,154.14000000000001,155.09,157.04,20.16,19.740000000000002,19.55,19.34,19.14,18.95,18.740000000000002,18.56,18.16,N/A,N/A +2012,10,30,19,30,101860,100670,99520,65.89,0,2.02,2.13,2.17,2.19,2.22,2.24,2.2600000000000002,2.2800000000000002,2.32,173.20000000000002,174.18,174.79,175.35,175.87,176.35,176.82,177.25,178.12,20.38,19.97,19.78,19.57,19.37,19.18,18.97,18.79,18.39,N/A,N/A +2012,10,30,20,30,101800,100620,99460,67.15,0,2.59,2.69,2.7,2.71,2.72,2.73,2.73,2.73,2.75,167.95000000000002,170.12,171.41,172.63,173.74,174.73,175.74,176.65,178.49,20.56,20.150000000000002,19.95,19.75,19.55,19.36,19.150000000000002,18.97,18.580000000000002,N/A,N/A +2012,10,30,21,30,101770,100580,99430,67.35,0,2.58,2.73,2.77,2.8000000000000003,2.82,2.84,2.85,2.87,2.89,185.21,186.31,186.8,187.25,187.65,188.01,188.37,188.70000000000002,189.34,20.93,20.53,20.34,20.14,19.94,19.75,19.54,19.36,18.96,N/A,N/A +2012,10,30,22,30,101740,100550,99400,68.29,0,3.16,3.3000000000000003,3.3200000000000003,3.33,3.34,3.34,3.34,3.35,3.36,162.39000000000001,164.07,165.07,166.02,166.9,167.72,168.56,169.33,170.92000000000002,20.94,20.53,20.34,20.14,19.94,19.75,19.55,19.36,18.97,N/A,N/A +2012,10,30,23,30,101720,100540,99390,69.13,0,2.79,2.98,3.04,3.08,3.12,3.16,3.19,3.22,3.27,162.06,163.52,164.36,165.11,165.78,166.4,167,167.55,168.66,21.26,20.87,20.68,20.48,20.28,20.09,19.89,19.7,19.31,N/A,N/A +2012,10,31,0,30,101710,100530,99380,68.95,0,3.59,3.77,3.8000000000000003,3.8200000000000003,3.83,3.84,3.85,3.85,3.86,167.94,170.36,171.65,172.85,173.9,174.86,175.82,176.69,178.38,21.61,21.23,21.04,20.84,20.64,20.45,20.25,20.07,19.68,N/A,N/A +2012,10,31,1,30,101700,100520,99380,68.59,0,3.09,3.31,3.38,3.44,3.5,3.5500000000000003,3.6,3.65,3.74,167.61,169.41,170.46,171.41,172.25,173.02,173.79,174.5,175.84,21.7,21.32,21.14,20.94,20.740000000000002,20.56,20.36,20.17,19.78,N/A,N/A +2012,10,31,2,30,101710,100530,99380,68.31,0,3.62,3.87,3.95,4.01,4.05,4.09,4.13,4.17,4.23,192.04,192.95000000000002,193.44,193.87,194.23000000000002,194.56,194.86,195.13,195.68,22.04,21.67,21.490000000000002,21.28,21.09,20.900000000000002,20.7,20.51,20.12,N/A,N/A +2012,10,31,3,30,101700,100520,99370,67.29,0,4.33,4.62,4.7,4.75,4.8,4.84,4.87,4.9,4.96,208.4,208.85,209.1,209.32,209.53,209.72,209.9,210.06,210.4,22.21,21.84,21.650000000000002,21.45,21.26,21.07,20.86,20.68,20.29,N/A,N/A +2012,10,31,4,30,101680,100500,99360,65.49,0,5.5600000000000005,5.8500000000000005,5.9,5.91,5.91,5.91,5.89,5.88,5.8500000000000005,230.83,230.84,230.91,230.98000000000002,231.05,231.12,231.20000000000002,231.26,231.41,22.5,22.12,21.94,21.740000000000002,21.54,21.36,21.16,20.97,20.580000000000002,N/A,N/A +2012,10,31,5,30,101670,100490,99350,66.71000000000001,0,6.0200000000000005,6.46,6.53,6.55,6.5600000000000005,6.55,6.54,6.5200000000000005,6.48,237.65,237.85,237.81,237.74,237.66,237.58,237.49,237.39000000000001,237.18,22.62,22.25,22.07,21.86,21.67,21.47,21.27,21.09,20.69,N/A,N/A +2012,10,31,6,30,101670,100500,99360,68.27,0,5.13,5.5200000000000005,5.62,5.68,5.72,5.75,5.78,5.8,5.84,223.4,223.75,223.96,224.15,224.31,224.46,224.61,224.74,225.01,22.56,22.23,22.05,21.86,21.66,21.47,21.27,21.09,20.7,N/A,N/A +2012,10,31,7,30,101680,100510,99360,69.55,0,5.03,5.43,5.5200000000000005,5.58,5.62,5.66,5.68,5.7,5.73,228.33,228.69,228.89000000000001,229.07,229.23000000000002,229.37,229.52,229.66,229.93,22.68,22.35,22.18,21.98,21.79,21.6,21.400000000000002,21.21,20.82,N/A,N/A +2012,10,31,8,30,101670,100490,99350,69.59,0,4.09,4.54,4.69,4.8100000000000005,4.91,5,5.08,5.15,5.28,237.42000000000002,238.04,238.24,238.38,238.5,238.61,238.70000000000002,238.77,238.91,22.82,22.51,22.34,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A +2012,10,31,9,30,101670,100500,99360,70.45,0,3.95,4.24,4.32,4.37,4.41,4.44,4.48,4.5,4.5600000000000005,224.6,225.25,225.69,226.13,226.52,226.89000000000001,227.25,227.58,228.26,22.84,22.53,22.36,22.16,21.97,21.79,21.59,21.400000000000002,21.02,N/A,N/A +2012,10,31,10,30,101670,100500,99360,71.09,0,4.51,4.94,5.0600000000000005,5.15,5.22,5.2700000000000005,5.32,5.36,5.43,245.13,245.73000000000002,245.87,245.97,246.05,246.09,246.12,246.15,246.18,23.05,22.75,22.580000000000002,22.38,22.19,22.01,21.81,21.62,21.23,N/A,N/A +2012,10,31,11,30,101690,100510,99370,72.49,0,4.07,4.3500000000000005,4.4,4.43,4.46,4.48,4.49,4.5,4.53,258.92,257.64,256.74,255.86,255.07,254.32,253.59,252.92000000000002,251.58,22.89,22.580000000000002,22.41,22.22,22.03,21.84,21.650000000000002,21.46,21.07,N/A,N/A +2012,10,31,12,30,101700,100530,99390,72.94,0,3.46,3.67,3.71,3.73,3.75,3.7600000000000002,3.77,3.77,3.7800000000000002,265.48,263.8,262.68,261.53000000000003,260.47,259.49,258.49,257.57,255.81,22.87,22.57,22.400000000000002,22.21,22.02,21.830000000000002,21.64,21.46,21.07,N/A,N/A +2012,10,31,13,30,101710,100540,99400,77.49,0,2.98,3.13,3.15,3.16,3.16,3.16,3.17,3.17,3.2,283,280.93,279.54,278.17,276.86,275.61,274.23,272.95,269.85,22.51,22.19,22.02,21.830000000000002,21.650000000000002,21.47,21.27,21.1,20.72,N/A,N/A +2012,10,31,14,30,101740,100570,99430,77.24,0,2.09,2.22,2.2600000000000002,2.29,2.33,2.36,2.4,2.43,2.5300000000000002,263.78000000000003,262.11,261.09000000000003,260.11,259.19,258.3,257.29,256.33,254.17000000000002,22.5,22.18,22.01,21.82,21.63,21.45,21.25,21.07,20.71,N/A,N/A +2012,10,31,15,30,101740,100570,99430,76.32000000000001,0,1.99,2.09,2.11,2.14,2.15,2.17,2.19,2.21,2.27,268.38,266.4,265.07,263.77,262.53000000000003,261.33,260.09000000000003,258.93,256.23,22.63,22.31,22.14,21.94,21.76,21.57,21.38,21.2,20.82,N/A,N/A +2012,10,31,16,30,101740,100570,99430,77.57000000000001,0,1.96,2.08,2.12,2.15,2.18,2.21,2.25,2.2800000000000002,2.4,228.57,227.57,227.04,226.51,226,225.48000000000002,224.94,224.42000000000002,223.44,22.64,22.32,22.14,21.95,21.76,21.57,21.38,21.2,20.830000000000002,N/A,N/A +2012,10,31,17,30,101710,100540,99400,77.59,0,1.95,2.06,2.09,2.12,2.14,2.17,2.2,2.23,2.36,227.85,227.62,227.53,227.46,227.42000000000002,227.4,227.46,227.54,228.34,22.79,22.47,22.3,22.1,21.91,21.73,21.54,21.36,21,N/A,N/A +2012,10,31,18,30,101690,100520,99380,77.23,0,3.35,3.5500000000000003,3.59,3.61,3.63,3.65,3.67,3.68,3.74,202.47,202.6,202.68,202.76,202.85,202.95000000000002,203.1,203.27,204.63,23.06,22.73,22.55,22.36,22.17,21.990000000000002,21.79,21.61,21.25,N/A,N/A +2012,10,31,19,30,101660,100490,99350,76.77,0,4.3500000000000005,4.63,4.68,4.71,4.72,4.73,4.73,4.73,4.73,202.69,202.96,203.09,203.20000000000002,203.32,203.44,203.58,203.73000000000002,204.12,23.32,23,22.830000000000002,22.63,22.44,22.26,22.06,21.88,21.5,N/A,N/A +2012,10,31,20,30,101630,100460,99320,77.28,0,5.16,5.53,5.59,5.61,5.61,5.6000000000000005,5.59,5.57,5.5200000000000005,200.17000000000002,200.31,200.44,200.57,200.70000000000002,200.82,200.98000000000002,201.13,201.58,23.42,23.11,22.94,22.75,22.56,22.37,22.18,22,21.61,N/A,N/A +2012,10,31,21,30,101610,100440,99310,78.92,0,4.86,5.24,5.32,5.34,5.36,5.36,5.36,5.36,5.34,200,200.28,200.44,200.61,200.78,200.94,201.14000000000001,201.34,201.87,23.41,23.12,22.96,22.76,22.57,22.39,22.19,22.01,21.64,N/A,N/A +2012,10,31,22,30,101590,100420,99290,79.91,0,5.15,5.61,5.71,5.76,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8,200.23000000000002,200.5,200.64000000000001,200.79,200.92000000000002,201.03,201.15,201.27,201.52,23.42,23.14,22.98,22.79,22.6,22.42,22.22,22.04,21.66,N/A,N/A +2012,10,31,23,30,101590,100420,99290,81.61,0,4.99,5.42,5.51,5.5600000000000005,5.58,5.6000000000000005,5.61,5.61,5.61,206.70000000000002,206.93,207.06,207.20000000000002,207.32,207.44,207.57,207.70000000000002,208.02,23.41,23.13,22.97,22.78,22.59,22.41,22.21,22.03,21.650000000000002,N/A,N/A +2012,11,1,0,30,101600,100430,99300,82.33,0,5.99,6.55,6.69,6.76,6.8100000000000005,6.8500000000000005,6.87,6.88,6.9,209.02,209.23000000000002,209.36,209.49,209.61,209.73000000000002,209.85,209.96,210.20000000000002,23.490000000000002,23.22,23.06,22.87,22.68,22.5,22.3,22.12,21.740000000000002,N/A,N/A +2012,11,1,1,30,101620,100450,99320,83.35000000000001,0,6.1000000000000005,6.66,6.79,6.86,6.91,6.93,6.94,6.95,6.95,213.79,213.95000000000002,214.03,214.11,214.20000000000002,214.28,214.38,214.47,214.71,23.53,23.27,23.11,22.92,22.73,22.55,22.36,22.18,21.8,N/A,N/A +2012,11,1,2,30,101630,100470,99330,84.67,0,6.19,6.76,6.9,6.97,7.0200000000000005,7.05,7.0600000000000005,7.07,7.07,219.08,219.28,219.37,219.45000000000002,219.53,219.6,219.68,219.74,219.91,23.55,23.29,23.13,22.94,22.75,22.57,22.38,22.19,21.82,N/A,N/A +2012,11,1,3,30,101640,100470,99340,85.81,0,6.2700000000000005,6.86,7.01,7.07,7.12,7.16,7.18,7.2,7.21,222.72,222.85,222.91,222.99,223.05,223.11,223.18,223.24,223.39000000000001,23.56,23.29,23.13,22.94,22.76,22.57,22.38,22.2,21.82,N/A,N/A +2012,11,1,4,30,101640,100470,99340,86.24,0,6.37,6.98,7.12,7.2,7.24,7.2700000000000005,7.29,7.3100000000000005,7.32,224.98000000000002,225.04,225.11,225.17000000000002,225.24,225.31,225.39000000000001,225.46,225.65,23.59,23.32,23.16,22.97,22.79,22.6,22.41,22.23,21.85,N/A,N/A +2012,11,1,5,30,101650,100480,99350,87.25,0,6.0600000000000005,6.62,6.74,6.8100000000000005,6.86,6.9,6.92,6.93,6.95,228.37,228.47,228.53,228.58,228.64000000000001,228.70000000000002,228.77,228.84,229.02,23.59,23.330000000000002,23.17,22.98,22.79,22.61,22.42,22.240000000000002,21.86,N/A,N/A +2012,11,1,6,30,101670,100500,99370,88.43,0,6.0600000000000005,6.640000000000001,6.78,6.8500000000000005,6.9,6.93,6.95,6.97,6.99,230.68,230.82,230.89000000000001,230.96,231.03,231.1,231.17000000000002,231.23000000000002,231.39000000000001,23.63,23.35,23.19,22.990000000000002,22.81,22.62,22.43,22.240000000000002,21.86,N/A,N/A +2012,11,1,7,30,101710,100540,99410,88.92,0,5.88,6.42,6.5600000000000005,6.63,6.68,6.71,6.73,6.75,6.78,235.93,236.05,236.1,236.17000000000002,236.22,236.28,236.33,236.4,236.54,23.69,23.42,23.26,23.07,22.88,22.69,22.5,22.32,21.93,N/A,N/A +2012,11,1,8,30,101710,100540,99410,89.74,0,5.83,6.390000000000001,6.54,6.62,6.68,6.72,6.75,6.7700000000000005,6.8,239.32,239.41,239.45000000000002,239.51,239.56,239.61,239.66,239.71,239.82,23.72,23.45,23.29,23.1,22.91,22.72,22.53,22.35,21.97,N/A,N/A +2012,11,1,9,30,101710,100540,99410,89.52,0,5.41,5.92,6.05,6.12,6.17,6.19,6.22,6.23,6.26,245.35,245.43,245.46,245.5,245.54,245.57,245.6,245.63,245.71,23.71,23.44,23.28,23.080000000000002,22.900000000000002,22.71,22.52,22.34,21.95,N/A,N/A +2012,11,1,10,30,101730,100560,99430,89.52,0,5.25,5.73,5.8500000000000005,5.91,5.96,5.98,6,6.01,6.0200000000000005,243.46,243.65,243.78,243.94,244.08,244.23000000000002,244.4,244.56,244.97,23.79,23.52,23.35,23.16,22.97,22.78,22.580000000000002,22.39,21.990000000000002,N/A,N/A +2012,11,1,11,30,101740,100580,99440,89.05,0,4.47,4.91,5.03,5.1000000000000005,5.15,5.19,5.23,5.26,5.3100000000000005,249.21,249.61,249.92000000000002,250.22,250.53,250.83,251.14000000000001,251.45000000000002,252.16,23.73,23.44,23.27,23.06,22.87,22.67,22.46,22.26,21.84,N/A,N/A +2012,11,1,12,30,101750,100570,99440,94.45,0,3.94,4.0600000000000005,4.07,4.1,4.14,4.19,4.24,4.28,4.41,269.05,267.92,265.29,259.39,255.9,253.86,252.41,251.23000000000002,249.58,23.04,22.78,22.68,22.62,22.55,22.46,22.31,22.150000000000002,21.8,N/A,N/A +2012,11,1,13,30,101780,100600,99460,98.76,0,3.58,3.63,3.6,3.58,3.62,3.69,3.87,4.0600000000000005,4.3100000000000005,292.12,291.32,288.99,283.55,277.64,271.36,264.07,256.86,250.1,22.21,21.900000000000002,21.77,21.64,21.54,21.44,21.54,21.69,21.59,N/A,N/A +2012,11,1,14,30,101800,100620,99480,99.33,0,3.5,3.65,3.68,3.69,3.9,4.26,4.53,4.78,4.8100000000000005,286.89,285.83,285.07,284.13,280.81,275.67,270.19,264.91,260.07,21.87,21.57,21.43,21.28,21.16,21.080000000000002,21.17,21.28,21.19,N/A,N/A +2012,11,1,15,30,101800,100620,99480,99.37,0,3.35,3.49,3.5100000000000002,3.52,3.56,3.61,3.86,4.17,4.55,296.81,294.40000000000003,292.68,290.61,287.53000000000003,283.86,276.45,268.12,261.84000000000003,21.63,21.32,21.18,21.03,20.85,20.66,20.650000000000002,20.69,21.12,N/A,N/A +2012,11,1,16,30,101790,100610,99470,97.64,0,3.11,3.24,3.25,3.25,3.25,3.2600000000000002,3.27,3.29,3.5300000000000002,278.01,278.24,278.39,278.53000000000003,278.49,278.37,277.18,275.8,269.23,21.97,21.63,21.46,21.27,21.13,21.01,20.85,20.69,20.69,N/A,N/A +2012,11,1,17,30,101770,100590,99460,97.59,0.5,2.06,2.1,2.08,2.06,2.0300000000000002,2.0100000000000002,2.09,2.18,3.0700000000000003,287.29,285.18,283.79,282.13,280.15000000000003,278.02,272.93,267.2,255.17000000000002,22.02,21.69,21.53,21.36,21.22,21.1,20.93,20.77,20.8,N/A,N/A +2012,11,1,18,30,101750,100570,99440,95.97,0,2.61,2.59,2.5,2.38,2.25,2.15,2.17,2.21,2.72,295.3,293.65000000000003,292.24,290.16,286.84000000000003,283.03000000000003,280.27,277.93,262.5,22.19,21.87,21.72,21.57,21.46,21.36,21.23,21.09,20.98,N/A,N/A +2012,11,1,19,30,101720,100550,99410,95.28,0,1.8900000000000001,1.87,1.82,1.76,1.71,1.67,1.6500000000000001,1.6400000000000001,1.98,268.28000000000003,263.86,260.75,256.94,251.74,245.85,237.48000000000002,229.38,239.52,22.330000000000002,22.01,21.84,21.68,21.54,21.42,21.31,21.2,20.98,N/A,N/A +2012,11,1,20,30,101700,100530,99390,95.68,0,1.3900000000000001,1.43,1.44,1.45,1.5,1.57,1.87,2.29,3.0700000000000003,191.83,192.92000000000002,193.85,195.21,197.19,199.69,205.22,212.26,220.34,22.43,22.09,21.92,21.740000000000002,21.580000000000002,21.41,21.32,21.25,21.55,N/A,N/A +2012,11,1,21,30,101670,100500,99360,93.82000000000001,0,3.02,3.15,3.15,3.14,3.13,3.11,3.11,3.1,3.2800000000000002,180.27,180.56,180.77,181.03,181.4,181.86,183.72,185.84,205.38,22.86,22.51,22.34,22.150000000000002,21.97,21.8,21.63,21.48,21.73,N/A,N/A +2012,11,1,22,30,101660,100490,99350,96.05,0,4.36,4.54,4.54,4.5,4.47,4.43,4.43,4.42,4.09,174.08,174.28,174.49,174.86,175.70000000000002,176.86,181.1,186,195.99,22.57,22.23,22.05,21.86,21.68,21.53,21.45,21.42,21.97,N/A,N/A +2012,11,1,23,30,101630,100460,99330,94.54,0,4.25,4.47,4.49,4.51,4.61,4.7700000000000005,5.12,5.5,5.34,181.43,181.58,181.74,181.97,182.65,183.62,185.79,188.27,192.71,22.81,22.490000000000002,22.330000000000002,22.150000000000002,22.02,21.91,21.94,22.02,22.04,N/A,N/A +2012,11,2,0,30,101670,100500,99370,91.01,0,5.63,6.13,6.26,6.34,6.390000000000001,6.43,6.46,6.49,6.54,194.21,194.82,195.12,195.41,195.70000000000002,196.01,196.34,196.66,197.45000000000002,23.45,23.14,22.97,22.76,22.57,22.37,22.16,21.97,21.52,N/A,N/A +2012,11,2,1,30,101660,100490,99360,90.06,0,5.47,5.95,6.05,6.1000000000000005,6.13,6.15,6.15,6.16,6.15,203.20000000000002,203.42000000000002,203.57,203.74,203.91,204.08,204.28,204.47,204.97,23.56,23.27,23.1,22.900000000000002,22.71,22.52,22.330000000000002,22.14,21.75,N/A,N/A +2012,11,2,2,30,101660,100490,99360,90.08,0,5.17,5.64,5.75,5.8100000000000005,5.8500000000000005,5.88,5.9,5.92,5.96,198.78,199.14000000000001,199.36,199.59,199.8,200,200.21,200.41,200.9,23.63,23.34,23.18,22.990000000000002,22.8,22.62,22.43,22.240000000000002,21.86,N/A,N/A +2012,11,2,3,30,101660,100490,99360,90.55,0,5.61,6.12,6.23,6.28,6.32,6.34,6.36,6.38,6.4,197.01,197.18,197.31,197.46,197.61,197.77,197.94,198.12,198.56,23.64,23.37,23.2,23.01,22.830000000000002,22.64,22.45,22.26,21.89,N/A,N/A +2012,11,2,4,30,101640,100480,99340,89.89,0,5.12,5.58,5.69,5.74,5.78,5.8,5.82,5.84,5.88,198.6,198.66,198.74,198.84,198.95000000000002,199.07,199.23000000000002,199.38,199.85,23.68,23.41,23.25,23.06,22.87,22.69,22.490000000000002,22.31,21.94,N/A,N/A +2012,11,2,5,30,101650,100480,99350,89.52,0,6.05,6.61,6.74,6.8100000000000005,6.86,6.890000000000001,6.91,6.92,6.93,201.22,201.29,201.34,201.41,201.48000000000002,201.56,201.66,201.75,202,23.740000000000002,23.47,23.31,23.12,22.93,22.75,22.55,22.37,21.990000000000002,N/A,N/A +2012,11,2,6,30,101660,100490,99360,89.88,0,5.8500000000000005,6.38,6.51,6.57,6.61,6.63,6.65,6.66,6.66,205.13,205.22,205.29,205.37,205.45000000000002,205.52,205.61,205.69,205.92000000000002,23.76,23.490000000000002,23.330000000000002,23.13,22.95,22.76,22.57,22.39,22.01,N/A,N/A +2012,11,2,7,30,101670,100500,99370,88.23,0,5.64,6.16,6.28,6.3500000000000005,6.390000000000001,6.42,6.44,6.45,6.47,211.77,211.87,211.93,211.99,212.06,212.12,212.19,212.25,212.4,23.740000000000002,23.46,23.3,23.11,22.92,22.740000000000002,22.54,22.36,21.98,N/A,N/A +2012,11,2,8,30,101670,100510,99370,89.35000000000001,0,6.13,6.73,6.87,6.96,7.0200000000000005,7.0600000000000005,7.09,7.12,7.15,215.5,215.57,215.62,215.67000000000002,215.72,215.76,215.79,215.82,215.91,23.73,23.45,23.28,23.09,22.900000000000002,22.72,22.52,22.34,21.96,N/A,N/A +2012,11,2,9,30,101680,100510,99380,88.71000000000001,0,6.29,6.91,7.0600000000000005,7.15,7.22,7.26,7.3,7.32,7.36,216.66,216.77,216.82,216.88,216.93,216.99,217.05,217.1,217.22,23.78,23.51,23.35,23.16,22.97,22.78,22.59,22.41,22.02,N/A,N/A +2012,11,2,10,30,101690,100520,99390,87.15,0,5.99,6.58,6.73,6.83,6.9,6.95,6.99,7.0200000000000005,7.08,223.9,224.06,224.14000000000001,224.21,224.25,224.27,224.27,224.26,224.18,23.91,23.66,23.5,23.32,23.14,22.96,22.77,22.59,22.22,N/A,N/A +2012,11,2,11,30,101690,100520,99390,86.68,0,5.89,6.48,6.62,6.71,6.78,6.82,6.86,6.88,6.93,224.02,224.12,224.17000000000002,224.21,224.24,224.28,224.31,224.35,224.42000000000002,23.91,23.650000000000002,23.490000000000002,23.3,23.12,22.94,22.740000000000002,22.56,22.19,N/A,N/A +2012,11,2,12,30,101710,100540,99410,86.94,0,6.5200000000000005,7.17,7.34,7.44,7.51,7.5600000000000005,7.6000000000000005,7.62,7.65,223.72,223.77,223.79,223.81,223.83,223.84,223.84,223.85,223.85,23.89,23.63,23.47,23.28,23.09,22.91,22.72,22.53,22.150000000000002,N/A,N/A +2012,11,2,13,30,101720,100550,99420,86.94,0,4.88,5.37,5.49,5.57,5.64,5.69,5.74,5.78,5.88,224.16,223.87,223.78,223.67000000000002,223.56,223.45000000000002,223.32,223.19,222.89000000000001,23.89,23.62,23.46,23.28,23.09,22.91,22.72,22.55,22.17,N/A,N/A +2012,11,2,14,30,101740,100580,99440,85.17,0,4.37,4.82,4.93,5.0200000000000005,5.09,5.15,5.2,5.25,5.3500000000000005,224.86,224.85,224.86,224.85,224.83,224.8,224.77,224.73000000000002,224.63,23.96,23.7,23.54,23.36,23.17,22.990000000000002,22.8,22.62,22.240000000000002,N/A,N/A +2012,11,2,15,30,101760,100590,99460,85.55,0,5.01,5.46,5.57,5.63,5.66,5.69,5.7,5.71,5.72,222.99,223.15,223.25,223.34,223.41,223.47,223.53,223.58,223.67000000000002,23.96,23.7,23.54,23.35,23.16,22.98,22.78,22.6,22.22,N/A,N/A +2012,11,2,16,30,101760,100590,99460,85.06,0,4.89,5.33,5.44,5.51,5.55,5.59,5.62,5.64,5.68,221.16,221.34,221.4,221.45000000000002,221.49,221.51,221.54,221.56,221.57,23.990000000000002,23.72,23.56,23.37,23.18,22.990000000000002,22.8,22.62,22.23,N/A,N/A +2012,11,2,17,30,101740,100570,99440,84.65,0,4.08,4.42,4.49,4.5200000000000005,4.55,4.57,4.57,4.58,4.59,211.6,212.11,212.5,212.9,213.28,213.64000000000001,214.01,214.35,215.07,24.1,23.81,23.650000000000002,23.45,23.27,23.080000000000002,22.89,22.7,22.32,N/A,N/A +2012,11,2,18,30,101730,100560,99430,81.32000000000001,0,4.67,5.13,5.25,5.3100000000000005,5.36,5.39,5.41,5.43,5.46,206.65,207.27,207.63,207.97,208.3,208.62,208.96,209.27,209.98000000000002,24.39,24.13,23.97,23.78,23.6,23.42,23.23,23.05,22.67,N/A,N/A +2012,11,2,19,30,101710,100540,99410,83.61,0,4.3500000000000005,4.68,4.73,4.75,4.75,4.76,4.7700000000000005,4.78,4.88,176.31,176.24,176.31,176.37,176.46,176.54,176.71,176.9,177.75,24.23,23.94,23.78,23.59,23.400000000000002,23.22,23.03,22.86,22.52,N/A,N/A +2012,11,2,20,30,101680,100510,99380,84.18,0,5.15,5.61,5.71,5.7700000000000005,5.8,5.83,5.84,5.8500000000000005,5.8500000000000005,179.66,180.04,180.28,180.52,180.75,180.96,181.19,181.39000000000001,181.87,24.3,24.03,23.87,23.68,23.490000000000002,23.31,23.12,22.94,22.55,N/A,N/A +2012,11,2,21,30,101670,100500,99380,83.71000000000001,0,5.58,6.1000000000000005,6.23,6.3100000000000005,6.36,6.4,6.43,6.46,6.51,173.93,174.45000000000002,174.79,175.16,175.52,175.86,176.23,176.58,177.34,24.3,24.060000000000002,23.91,23.73,23.55,23.37,23.18,23,22.63,N/A,N/A +2012,11,2,22,30,101670,100500,99370,84.88,0,5.48,6.09,6.25,6.37,6.46,6.5200000000000005,6.57,6.62,6.67,173.56,174.19,174.61,175.1,175.58,176.06,176.56,177.03,178.01,24.27,24.060000000000002,23.92,23.740000000000002,23.57,23.39,23.21,23.03,22.66,N/A,N/A +2012,11,2,23,30,101670,100500,99370,85.43,0,5.3100000000000005,5.93,6.12,6.24,6.34,6.41,6.45,6.5,6.5600000000000005,176.79,176.93,177.01,177.01,176.97,176.9,176.75,176.58,176.03,24.11,23.900000000000002,23.76,23.59,23.42,23.240000000000002,23.06,22.89,22.52,N/A,N/A +2012,11,3,0,30,101690,100520,99390,82.11,0,6.140000000000001,6.92,7.17,7.3500000000000005,7.48,7.57,7.63,7.68,7.78,180.6,180.55,180.53,180.49,180.44,180.4,180.34,180.27,180.24,24.18,23.98,23.85,23.69,23.53,23.35,23.17,23,22.64,N/A,N/A +2012,11,3,1,30,101680,100510,99380,81.96000000000001,0,6.75,7.42,7.58,7.68,7.74,7.78,7.8100000000000005,7.82,7.83,173.20000000000002,173.4,173.51,173.62,173.72,173.81,173.9,173.99,174.18,24.11,23.88,23.73,23.55,23.37,23.2,23,22.830000000000002,22.45,N/A,N/A +2012,11,3,2,30,101680,100510,99380,80.69,0,7.1000000000000005,7.82,7.98,8.08,8.14,8.18,8.21,8.22,8.23,171.08,171.28,171.39000000000001,171.5,171.6,171.71,171.81,171.91,172.13,24.09,23.85,23.71,23.53,23.34,23.16,22.98,22.8,22.42,N/A,N/A +2012,11,3,3,30,101680,100510,99380,82.60000000000001,0,7.34,8.09,8.28,8.39,8.46,8.51,8.53,8.55,8.56,169.78,170,170.12,170.25,170.38,170.51,170.63,170.74,171.01,23.97,23.72,23.57,23.38,23.2,23.02,22.830000000000002,22.650000000000002,22.27,N/A,N/A +2012,11,3,4,30,101680,100520,99380,81.03,0,7.7700000000000005,8.58,8.78,8.91,8.98,9.040000000000001,9.08,9.11,9.13,171.9,172.01,172.07,172.12,172.17000000000002,172.22,172.27,172.3,172.39000000000001,23.990000000000002,23.740000000000002,23.59,23.41,23.22,23.04,22.85,22.67,22.3,N/A,N/A +2012,11,3,5,30,101680,100510,99370,78.85000000000001,0,7.68,8.48,8.68,8.8,8.88,8.950000000000001,8.99,9.03,9.09,175.67000000000002,175.63,175.65,175.68,175.71,175.73,175.76,175.79,175.86,24.05,23.8,23.650000000000002,23.46,23.28,23.1,22.91,22.73,22.35,N/A,N/A +2012,11,3,6,30,101700,100530,99390,77.82000000000001,0,8.13,9.01,9.24,9.38,9.49,9.56,9.620000000000001,9.66,9.73,179.34,179.52,179.61,179.69,179.76,179.82,179.88,179.95000000000002,180.05,24.150000000000002,23.91,23.75,23.57,23.38,23.2,23.01,22.830000000000002,22.45,N/A,N/A +2012,11,3,7,30,101720,100550,99420,76.54,0,7.9,8.77,8.99,9.14,9.24,9.32,9.38,9.43,9.49,182.68,182.74,182.75,182.74,182.74,182.74,182.74,182.73,182.73,24.3,24.060000000000002,23.91,23.73,23.55,23.37,23.18,23,22.62,N/A,N/A +2012,11,3,8,30,101730,100560,99430,76.33,0,7.68,8.51,8.73,8.88,8.98,9.06,9.13,9.18,9.25,181.97,181.79,181.74,181.70000000000002,181.67000000000002,181.66,181.65,181.65,181.66,24.37,24.14,23.98,23.8,23.62,23.43,23.240000000000002,23.06,22.68,N/A,N/A +2012,11,3,9,30,101750,100580,99450,77.01,0,8.22,9.08,9.28,9.39,9.46,9.5,9.52,9.53,9.52,182.61,183.08,183.31,183.52,183.72,183.91,184.09,184.26,184.61,24.37,24.150000000000002,24.01,23.830000000000002,23.650000000000002,23.47,23.28,23.1,22.72,N/A,N/A +2012,11,3,10,30,101760,100600,99460,74.94,0,7.1000000000000005,7.82,8,8.120000000000001,8.2,8.26,8.3,8.34,8.39,189.3,189.19,189.18,189.18,189.17000000000002,189.16,189.16,189.16,189.15,24.490000000000002,24.28,24.13,23.96,23.78,23.6,23.41,23.240000000000002,22.87,N/A,N/A +2012,11,3,11,30,101790,100630,99490,78.35000000000001,0,6.96,7.71,7.91,8.06,8.16,8.25,8.31,8.36,8.44,185.12,185.56,185.72,185.85,185.96,186.05,186.12,186.19,186.27,24.42,24.2,24.05,23.87,23.7,23.52,23.330000000000002,23.16,22.78,N/A,N/A +2012,11,3,12,30,101820,100650,99520,78.88,0,5.72,6.42,6.65,6.79,6.91,7.01,7.08,7.140000000000001,7.22,183.97,183.8,183.72,183.66,183.6,183.55,183.5,183.46,183.37,24.44,24.22,24.080000000000002,23.91,23.75,23.580000000000002,23.39,23.22,22.85,N/A,N/A +2012,11,3,13,30,101850,100680,99550,76.14,0,6.34,7.08,7.29,7.390000000000001,7.46,7.5200000000000005,7.54,7.54,7.53,186.89000000000001,187.04,187.14000000000001,187.3,187.46,187.63,187.79,187.93,188.21,24.55,24.37,24.25,24.07,23.91,23.740000000000002,23.55,23.38,23,N/A,N/A +2012,11,3,14,30,101890,100720,99590,78.66,0,4.63,5.18,5.36,5.48,5.58,5.67,5.74,5.79,5.88,186.39000000000001,186.18,186.14000000000001,186.20000000000002,186.22,186.21,186.20000000000002,186.19,186.17000000000002,24.46,24.240000000000002,24.1,23.93,23.77,23.6,23.41,23.240000000000002,22.87,N/A,N/A +2012,11,3,15,30,101900,100730,99600,81.7,0,3.96,4.29,4.38,4.49,4.58,4.65,4.72,4.78,4.9,167.46,168.19,168.76,169.66,170.36,170.94,171.66,172.38,173.75,24.400000000000002,24.18,24.05,23.89,23.73,23.56,23.38,23.22,22.87,N/A,N/A +2012,11,3,16,30,101880,100720,99580,78.42,0,4.07,4.47,4.57,4.65,4.7,4.75,4.78,4.8100000000000005,4.87,174.53,174.98,175.3,175.63,175.95000000000002,176.25,176.59,176.91,177.69,24.57,24.34,24.2,24.02,23.84,23.67,23.48,23.31,22.94,N/A,N/A +2012,11,3,17,30,101870,100700,99570,75.18,0,3.87,4.2,4.2700000000000005,4.3100000000000005,4.34,4.36,4.38,4.39,4.41,176.19,176.25,176.34,176.42000000000002,176.5,176.57,176.63,176.69,176.81,24.740000000000002,24.5,24.34,24.150000000000002,23.97,23.79,23.6,23.42,23.04,N/A,N/A +2012,11,3,18,30,101840,100670,99540,78.34,0,3.85,4.14,4.2,4.23,4.24,4.25,4.25,4.25,4.25,165.71,165.92000000000002,166.06,166.21,166.34,166.46,166.58,166.70000000000002,166.93,24.63,24.36,24.2,24.01,23.82,23.63,23.44,23.26,22.88,N/A,N/A +2012,11,3,19,30,101830,100670,99540,79.39,0,5.0200000000000005,5.47,5.5600000000000005,5.61,5.64,5.66,5.68,5.69,5.7,165.53,165.74,165.88,166.03,166.16,166.28,166.42000000000002,166.54,166.81,24.63,24.36,24.19,24,23.81,23.63,23.43,23.25,22.87,N/A,N/A +2012,11,3,20,30,101820,100650,99510,82,0,7.55,8.13,8.26,8.36,8.55,8.83,9.16,9.48,9.61,181.66,180.98,180.74,180.46,180.02,179.43,178.97,178.56,179.86,22.830000000000002,22.5,22.34,22.17,22.03,21.92,21.89,21.89,21.98,N/A,N/A +2012,11,3,21,30,101810,100640,99510,72.61,0,4.5200000000000005,4.8,4.88,4.98,4.98,4.87,4.68,4.47,4.13,171.22,171.08,170.69,170.02,169.79,169.93,172.20000000000002,175.02,183.78,23.42,23.17,23.07,23.01,22.98,22.97,22.95,22.94,23.25,N/A,N/A +2012,11,3,22,30,101870,100700,99560,77.96000000000001,0,2.62,2.6,2.54,2.47,2.43,2.41,2.4,2.41,2.46,274,269.78000000000003,266.31,261.72,257.01,251.84,246.84,242.22,233.64000000000001,23.22,22.94,22.8,22.63,22.48,22.330000000000002,22.17,22.02,21.69,N/A,N/A +2012,11,3,23,30,101880,100700,99560,80.14,0,1.72,1.7,1.68,1.6500000000000001,1.6300000000000001,1.61,1.68,1.78,2.59,270.18,266.64,263.7,259.86,255.29,249.77,241.45000000000002,232.23000000000002,213.83,22.67,22.35,22.19,22.01,21.830000000000002,21.67,21.51,21.36,21.09,N/A,N/A +2012,11,4,0,30,101810,100630,99500,82.17,0,2.08,2.2600000000000002,2.37,2.5300000000000002,2.84,3.27,3.68,4.07,4.43,237.89000000000001,236.70000000000002,235.47,233.49,229.99,225.18,221.54,218.31,213.25,22.78,22.46,22.3,22.13,21.98,21.85,21.73,21.63,21.36,N/A,N/A +2012,11,4,1,30,101810,100640,99500,81.82000000000001,0,1.04,1.05,1.04,1.03,1.02,1.02,1.31,1.77,2.3000000000000003,290.53000000000003,287.08,284.42,280.6,274.35,266.76,244.52,212.69,202.94,22.84,22.52,22.35,22.16,21.98,21.8,21.7,21.62,21.43,N/A,N/A +2012,11,4,2,30,101850,100680,99540,82.94,0,1.8800000000000001,1.86,1.8,1.72,1.6500000000000001,1.58,1.5,1.42,1.18,48.31,50.77,52.53,54.68,57.15,59.92,63.84,67.74,101.02,23,22.69,22.53,22.330000000000002,22.150000000000002,21.97,21.79,21.61,21.29,N/A,N/A +2012,11,4,3,30,101830,100650,99510,84.54,0,2.98,3.0100000000000002,2.97,2.9,2.83,2.7600000000000002,2.69,2.62,2.45,72.81,74.92,76.32000000000001,78,79.78,81.66,84.08,86.44,94.37,22.92,22.6,22.44,22.25,22.06,21.88,21.7,21.53,21.18,N/A,N/A +2012,11,4,4,30,101820,100650,99510,86.37,0,2.73,2.84,2.84,2.84,2.82,2.81,2.7800000000000002,2.7600000000000002,2.66,90.67,90.93,91.11,91.34,91.66,92.06,92.46000000000001,92.84,95.33,22.84,22.51,22.34,22.14,21.95,21.76,21.57,21.39,21.02,N/A,N/A +2012,11,4,5,30,101800,100620,99490,86.12,0,2.17,2.27,2.29,2.31,2.31,2.32,2.33,2.33,2.4,132.95,134.38,135.27,136.25,137.23,138.25,139.51,140.79,147.02,22.98,22.66,22.490000000000002,22.3,22.11,21.92,21.73,21.55,21.2,N/A,N/A +2012,11,4,6,30,101790,100620,99480,84.78,0,3.61,3.8000000000000003,3.84,3.85,3.85,3.85,3.85,3.84,3.8200000000000003,156.66,157.05,157.26,157.48,157.70000000000002,157.93,158.21,158.47,159.25,23.11,22.78,22.61,22.41,22.22,22.04,21.84,21.66,21.28,N/A,N/A +2012,11,4,7,30,101810,100640,99500,87.08,0,3.45,3.65,3.68,3.7,3.7,3.71,3.71,3.71,3.73,152.70000000000002,153.07,153.29,153.56,153.86,154.20000000000002,154.69,155.20000000000002,158.16,23.14,22.82,22.650000000000002,22.45,22.27,22.080000000000002,21.89,21.71,21.36,N/A,N/A +2012,11,4,8,30,101830,100660,99520,87.64,0,3.62,3.84,3.89,3.92,3.94,3.96,3.97,3.99,4.05,180.46,180.70000000000002,180.79,180.88,180.99,181.12,181.3,181.48,182.23,23.29,22.98,22.81,22.61,22.42,22.23,22.04,21.86,21.490000000000002,N/A,N/A +2012,11,4,9,30,101840,100670,99530,85.74,0,4.07,4.36,4.42,4.44,4.46,4.46,4.49,4.5200000000000005,4.59,217.54,217.5,217.46,217.41,217.36,217.31,217.23000000000002,217.16,218.48000000000002,23.67,23.39,23.23,23.04,22.87,22.69,22.53,22.38,22.150000000000002,N/A,N/A +2012,11,4,10,30,101860,100690,99550,86.65,0,3.09,3.27,3.29,3.29,3.29,3.29,3.29,3.29,3.38,220.63,220.96,221.11,221.33,221.57,221.86,222.3,222.78,225.85,23.61,23.32,23.16,22.97,22.78,22.6,22.41,22.240000000000002,21.97,N/A,N/A +2012,11,4,11,30,101870,100700,99560,86.76,0,2.72,2.88,2.91,2.91,2.92,2.92,2.92,2.93,2.97,214.96,215.4,215.64000000000001,215.95000000000002,216.28,216.66,217.15,217.66,220.28,23.56,23.27,23.1,22.91,22.72,22.53,22.34,22.16,21.79,N/A,N/A +2012,11,4,12,30,101870,100690,99560,85.17,0,3.0100000000000002,3.2,3.24,3.27,3.2800000000000002,3.3000000000000003,3.3200000000000003,3.33,3.38,234.07,234.33,234.45000000000002,234.58,234.70000000000002,234.84,234.99,235.15,235.72,23.57,23.28,23.11,22.91,22.73,22.54,22.34,22.16,21.78,N/A,N/A +2012,11,4,13,30,101890,100720,99580,84.92,0,3.16,3.43,3.5100000000000002,3.56,3.61,3.65,3.7,3.74,3.83,254.03,252.97,252.33,251.74,251.23000000000002,250.75,250.29,249.86,248.92000000000002,23.66,23.38,23.21,23.02,22.830000000000002,22.64,22.45,22.27,21.89,N/A,N/A +2012,11,4,14,30,101930,100760,99620,86.46000000000001,0,2.61,2.68,2.67,2.64,2.61,2.58,2.56,2.5500000000000003,2.56,295.62,293.74,291.88,289.53000000000003,287.28000000000003,284.94,281.87,278.65000000000003,272.23,23.5,23.21,23.06,22.86,22.69,22.51,22.330000000000002,22.150000000000002,21.81,N/A,N/A +2012,11,4,15,30,101920,100750,99610,94.58,0,4.28,4.41,4.39,4.33,4.2700000000000005,4.19,4.08,3.96,3.48,349.79,349.18,348.6,347.86,347,346,343.99,341.8,333.02,22.51,22.17,22,21.81,21.64,21.48,21.34,21.21,21.17,N/A,N/A +2012,11,4,16,30,101910,100730,99590,99.29,0,4.46,4.59,4.5600000000000005,4.49,4.39,4.28,4.0600000000000005,3.81,3.23,348.16,348.06,348.05,348.01,347.95,347.88,346.35,344.5,336.03000000000003,21.31,20.95,20.8,20.66,20.51,20.36,20.17,19.97,20.77,N/A,N/A +2012,11,4,17,30,101880,100700,99560,94.72,0,2.67,2.73,2.73,2.7,2.68,2.65,2.63,2.62,2.75,349.93,350.04,350.06,350.07,350,349.87,348.61,347.04,333,21.52,21.16,20.98,20.78,20.6,20.42,20.240000000000002,20.06,20.490000000000002,N/A,N/A +2012,11,4,18,30,101850,100680,99530,92.75,0,1.51,1.57,1.59,1.62,1.6500000000000001,1.7,1.87,2.08,3.35,359.35,358.11,357.18,356.01,354.63,352.96,350.33,347.27,341.72,21.85,21.5,21.330000000000002,21.14,20.97,20.8,20.68,20.59,21.09,N/A,N/A +2012,11,4,19,30,101810,100640,99500,89,0,0.52,0.54,0.55,0.56,0.59,0.63,0.8,1.07,2.0100000000000002,240.16,247.29,252.57,259.3,267.39,277.61,291.76,310.58,329.36,22.400000000000002,22.07,21.900000000000002,21.71,21.54,21.38,21.27,21.18,21.490000000000002,N/A,N/A +2012,11,4,20,30,101800,100620,99490,82.79,0,0.8300000000000001,0.8300000000000001,0.81,0.79,0.78,0.78,0.87,1.02,2.23,216.04,220.96,224.58,229.76,236.75,245.79,261.81,282.12,314.84000000000003,22.96,22.63,22.47,22.28,22.1,21.93,21.79,21.67,21.77,N/A,N/A +2012,11,4,21,30,101770,100600,99460,82.13,0,1.8,1.84,1.84,1.83,1.82,1.81,1.82,1.83,2.57,229.72,231.1,232.05,233.31,234.75,236.35,239.76,243.54,300.22,23.22,22.89,22.72,22.53,22.35,22.18,22.03,21.89,22.150000000000002,N/A,N/A +2012,11,4,22,30,101760,100590,99460,75.2,0,2.85,2.96,2.96,2.93,2.89,2.83,2.67,2.49,1.54,194.8,194.94,195.12,195.44,196.02,196.88,199.74,203.04,249.15,23.67,23.37,23.2,23,22.82,22.63,22.45,22.29,22.19,N/A,N/A +2012,11,4,23,30,101780,100610,99470,75.7,0,2.73,2.83,2.8000000000000003,2.75,2.62,2.42,1.84,1.32,0.87,190.07,190.71,191.11,191.63,192.77,194.49,204.38,213.87,248.02,23.740000000000002,23.45,23.29,23.1,22.95,22.81,22.77,22.75,22.57,N/A,N/A +2012,11,5,0,30,101800,100630,99500,79.42,0,3.06,3.22,3.22,3.19,3.16,3.13,3.06,2.98,2.35,212.73000000000002,213.27,213.61,213.99,214.34,214.68,215.20000000000002,215.76,223.21,23.68,23.400000000000002,23.240000000000002,23.04,22.86,22.67,22.48,22.3,22.07,N/A,N/A +2012,11,5,1,30,101820,100650,99510,81.64,0,2.58,2.7,2.71,2.7,2.69,2.67,2.65,2.62,2.57,232.70000000000002,232.32,232.09,231.77,231.41,231.01,230.52,230.02,228.55,23.61,23.32,23.16,22.96,22.78,22.59,22.400000000000002,22.21,21.830000000000002,N/A,N/A +2012,11,5,2,30,101820,100650,99510,82.3,0,2.05,2.15,2.16,2.16,2.16,2.16,2.15,2.14,2.12,238.34,238.1,237.95000000000002,237.8,237.66,237.52,237.35,237.19,236.62,23.47,23.17,23.01,22.81,22.62,22.43,22.240000000000002,22.05,21.67,N/A,N/A +2012,11,5,3,30,101810,100640,99510,78.88,0,2.06,2.2,2.24,2.2600000000000002,2.27,2.29,2.3000000000000003,2.32,2.35,243.24,244.41,244.99,245.62,246.23000000000002,246.86,247.55,248.22,249.8,23.650000000000002,23.36,23.2,23,22.81,22.62,22.43,22.25,21.86,N/A,N/A +2012,11,5,4,30,101790,100620,99480,77.95,0,2.17,2.35,2.4,2.44,2.48,2.5100000000000002,2.54,2.57,2.62,241.51,243.20000000000002,244.32,245.38,246.32,247.22,248.11,248.95000000000002,250.71,23.8,23.53,23.37,23.17,22.990000000000002,22.8,22.61,22.43,22.04,N/A,N/A +2012,11,5,5,30,101780,100610,99480,78.11,0,2.3000000000000003,2.47,2.5100000000000002,2.5300000000000002,2.5500000000000003,2.56,2.57,2.58,2.59,270.03000000000003,269.93,269.72,269.44,269.17,268.89,268.58,268.27,267.6,23.89,23.63,23.47,23.27,23.09,22.900000000000002,22.71,22.52,22.150000000000002,N/A,N/A +2012,11,5,6,30,101800,100630,99490,77.29,0,2.42,2.5500000000000003,2.58,2.6,2.61,2.62,2.63,2.64,2.65,262.13,261.41,260.96,260.48,260,259.49,258.88,258.25,256.48,23.63,23.330000000000002,23.16,22.96,22.77,22.59,22.39,22.21,21.830000000000002,N/A,N/A +2012,11,5,7,30,101800,100630,99490,78.28,0,3.15,3.34,3.39,3.41,3.43,3.44,3.45,3.45,3.47,262.08,261.44,260.98,260.52,260.09000000000003,259.67,259.22,258.8,257.86,23.66,23.35,23.19,22.990000000000002,22.8,22.61,22.41,22.23,21.84,N/A,N/A +2012,11,5,8,30,101770,100600,99460,80.07000000000001,0,3.81,4.05,4.09,4.11,4.12,4.13,4.13,4.13,4.13,268.07,267.49,267.11,266.72,266.36,266.01,265.65,265.31,264.56,23.580000000000002,23.27,23.09,22.900000000000002,22.71,22.52,22.32,22.14,21.75,N/A,N/A +2012,11,5,9,30,101770,100600,99460,82.66,0,4.44,4.7,4.75,4.7700000000000005,4.78,4.78,4.78,4.7700000000000005,4.75,273,272.16,271.6,271.02,270.48,269.95,269.39,268.85,267.7,23.41,23.09,22.92,22.72,22.53,22.34,22.150000000000002,21.96,21.580000000000002,N/A,N/A +2012,11,5,10,30,101770,100590,99460,83.5,0,4.22,4.45,4.48,4.49,4.49,4.48,4.46,4.45,4.41,275.86,274.84000000000003,274.16,273.42,272.72,272.02,271.26,270.51,268.74,23.12,22.78,22.61,22.41,22.22,22.04,21.84,21.66,21.29,N/A,N/A +2012,11,5,11,30,101780,100610,99470,84.47,0,3.98,4.16,4.17,4.16,4.14,4.12,4.1,4.07,4.05,289.32,288.67,288.2,287.64,287.05,286.41,285.57,284.72,281.71,22.67,22.32,22.14,21.95,21.76,21.580000000000002,21.39,21.22,20.89,N/A,N/A +2012,11,5,12,30,101780,100610,99470,85.79,0,4.51,4.72,4.74,4.73,4.71,4.68,4.64,4.61,4.5600000000000005,292.76,292.43,292.18,291.90000000000003,291.6,291.29,290.88,290.47,289.1,22.42,22.06,21.88,21.68,21.5,21.32,21.13,20.96,20.61,N/A,N/A +2012,11,5,13,30,101780,100600,99460,87.85000000000001,0,4.03,4.21,4.22,4.21,4.19,4.17,4.15,4.14,4.18,297.54,297.11,296.8,296.46,296.07,295.65000000000003,295.08,294.5,291.99,22.11,21.740000000000002,21.56,21.36,21.18,21,20.81,20.650000000000002,20.36,N/A,N/A +2012,11,5,14,30,101800,100620,99480,86.94,0,4.25,4.43,4.46,4.44,4.43,4.42,4.42,4.42,4.7,294.64,294.45,294.3,294.11,293.90000000000003,293.66,293.24,292.79,289.76,22.12,21.75,21.57,21.38,21.2,21.02,20.86,20.71,20.66,N/A,N/A +2012,11,5,15,30,101780,100600,99460,87.54,0,4.37,4.5600000000000005,4.58,4.57,4.5600000000000005,4.54,4.55,4.5600000000000005,4.88,295.51,295.28000000000003,295.12,294.93,294.71,294.46,294.03000000000003,293.57,290.98,22.150000000000002,21.78,21.61,21.42,21.240000000000002,21.07,20.91,20.77,20.76,N/A,N/A +2012,11,5,16,30,101760,100590,99450,87,0,3.88,4.05,4.07,4.07,4.07,4.07,4.07,4.08,4.23,294.51,294.42,294.36,294.29,294.21,294.13,294.01,293.89,293.29,22.240000000000002,21.87,21.69,21.490000000000002,21.31,21.13,20.95,20.78,20.490000000000002,N/A,N/A +2012,11,5,17,30,101730,100560,99420,86.68,0,3.63,3.77,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.7600000000000002,3.75,3.88,282.93,283.3,283.56,283.88,284.22,284.61,285.14,285.68,287.96,22.34,21.97,21.79,21.6,21.41,21.23,21.05,20.88,20.6,N/A,N/A +2012,11,5,18,30,101690,100510,99380,86.35000000000001,0,3.25,3.37,3.38,3.38,3.37,3.36,3.37,3.39,3.66,263.23,264.2,264.93,265.79,266.77,267.87,269.66,271.56,280.29,22.55,22.19,22.01,21.82,21.64,21.46,21.29,21.14,20.96,N/A,N/A +2012,11,5,19,30,101650,100480,99350,85.5,0,3.81,3.97,3.99,3.98,3.98,3.99,4.05,4.12,4.3500000000000005,238.79,239.38,239.94,240.84,242.33,244.52,249.05,254.36,263.97,22.95,22.62,22.46,22.28,22.14,22.03,22,22.02,22.07,N/A,N/A +2012,11,5,20,30,101560,100400,99270,82.66,0,4.9,5.13,5.15,5.13,5.15,5.2,5.34,5.53,5.8100000000000005,224.53,225.05,225.67000000000002,226.73000000000002,228.76,231.67000000000002,235.86,240.42000000000002,247.12,23.650000000000002,23.34,23.19,23.03,22.92,22.85,22.84,22.84,22.73,N/A,N/A +2012,11,5,21,30,101550,100390,99260,83.38,0,7.12,7.7,7.84,7.9,7.94,7.95,7.96,7.96,7.94,238.07,239.07,239.83,240.73000000000002,241.54,242.39000000000001,243.32,244.28,246.39000000000001,24.19,23.93,23.79,23.6,23.43,23.25,23.07,22.900000000000002,22.56,N/A,N/A +2012,11,5,22,30,101500,100340,99210,79.2,0,6.55,7.01,7.0600000000000005,7.05,7.0200000000000005,6.97,6.94,6.92,6.74,249.47,250.25,250.78,251.52,252.35,253.29,254.89000000000001,256.62,266.12,24.310000000000002,24.05,23.91,23.73,23.57,23.41,23.27,23.16,23.2,N/A,N/A +2012,11,5,23,30,101510,100340,99210,79.14,0,4.63,4.91,4.93,4.91,4.9,4.92,4.78,4.61,4.43,250.61,250.97,251.25,251.70000000000002,252.63,254.01000000000002,259.55,266.05,273.96,24.3,24.04,23.89,23.72,23.59,23.48,23.46,23.490000000000002,23.32,N/A,N/A +2012,11,6,0,30,101510,100350,99220,77.65,0,4.08,4.33,4.36,4.36,4.39,4.45,4.5,4.55,4.57,249.39000000000001,249.67000000000002,249.89000000000001,250.21,251.32,253.01000000000002,256.76,260.88,267.82,24.44,24.19,24.04,23.86,23.71,23.57,23.51,23.48,23.38,N/A,N/A +2012,11,6,1,30,101680,100500,99350,90.66,203.60000000000002,11.88,12.77,12.98,13.05,13.09,13.1,13.1,13.09,13.13,354.72,354.05,353.90000000000003,353.76,353.63,353.52,353.35,353.19,352.75,20.73,20.16,19.95,19.740000000000002,19.55,19.37,19.19,19.03,18.7,N/A,N/A +2012,11,6,2,30,101600,100430,99290,84.45,0,3.1,3.33,3.45,3.67,4.43,5.96,6.8500000000000005,7.44,8.2,327.52,328.29,328.83,329.7,331.58,334.96,336.66,337.6,339.39,21.71,21.37,21.22,21.07,21.18,21.5,21.82,22.1,22.400000000000002,N/A,N/A +2012,11,6,3,30,101590,100420,99280,72.41,0,6.88,7.390000000000001,7.5200000000000005,7.57,7.63,7.68,7.75,7.8100000000000005,7.94,9.040000000000001,9.38,9.26,9.06,8.89,8.75,8.68,8.63,8.57,23.400000000000002,23.150000000000002,23.02,22.88,22.740000000000002,22.6,22.45,22.31,22.01,N/A,N/A +2012,11,6,4,30,101610,100440,99300,70.43,0,6.67,7.2700000000000005,7.45,7.57,7.66,7.73,7.8100000000000005,7.87,8.01,1.53,2.04,2.39,2.7600000000000002,3.11,3.46,3.83,4.17,4.95,23.34,23,22.830000000000002,22.64,22.45,22.26,22.07,21.89,21.52,N/A,N/A +2012,11,6,5,30,101590,100420,99280,62.410000000000004,0,10.34,11.3,11.52,11.63,11.69,11.72,11.73,11.74,11.71,13.780000000000001,13.93,14.05,14.16,14.26,14.35,14.46,14.55,14.74,23.05,22.69,22.51,22.31,22.13,21.94,21.76,21.580000000000002,21.22,N/A,N/A +2012,11,6,6,30,101670,100490,99340,66.06,0,10.72,11.620000000000001,11.84,11.93,11.98,12,12.01,12.01,11.98,19.78,19.85,19.89,19.93,19.96,20,20.03,20.06,20.11,21.75,21.31,21.11,20.91,20.71,20.53,20.34,20.16,19.8,N/A,N/A +2012,11,6,7,30,101710,100530,99370,64.22,0,10.39,11.25,11.450000000000001,11.540000000000001,11.6,11.63,11.65,11.66,11.69,22.42,22.44,22.47,22.5,22.51,22.52,22.51,22.51,22.46,20.990000000000002,20.5,20.3,20.1,19.91,19.73,19.54,19.37,19.02,N/A,N/A +2012,11,6,8,30,101760,100570,99410,62.82,0,9.85,10.63,10.81,10.9,10.94,10.97,10.98,10.99,10.99,22.97,22.94,22.92,22.900000000000002,22.86,22.82,22.76,22.7,22.53,20.63,20.13,19.92,19.72,19.52,19.34,19.150000000000002,18.97,18.62,N/A,N/A +2012,11,6,9,30,101790,100600,99450,63.86,0,9.73,10.47,10.64,10.71,10.74,10.76,10.75,10.75,10.71,19.6,19.59,19.57,19.54,19.51,19.48,19.44,19.39,19.28,20.09,19.55,19.34,19.13,18.93,18.740000000000002,18.54,18.36,18,N/A,N/A +2012,11,6,10,30,101830,100630,99470,66.54,0,10,10.72,10.86,10.9,10.91,10.91,10.88,10.85,10.77,18.27,18.27,18.26,18.240000000000002,18.2,18.16,18.1,18.04,17.84,19.22,18.63,18.41,18.2,18,17.82,17.63,17.45,17.1,N/A,N/A +2012,11,6,11,30,101870,100670,99510,69.60000000000001,0,9.58,10.25,10.39,10.43,10.46,10.46,10.44,10.43,10.370000000000001,21.7,21.740000000000002,21.75,21.75,21.740000000000002,21.73,21.71,21.68,21.580000000000002,18.43,17.81,17.580000000000002,17.36,17.16,16.97,16.77,16.59,16.22,N/A,N/A +2012,11,6,12,30,101910,100710,99540,70.28,0,9.1,9.69,9.8,9.83,9.83,9.82,9.8,9.77,9.700000000000001,20.17,20.14,20.12,20.080000000000002,20.04,19.990000000000002,19.93,19.87,19.69,18.080000000000002,17.47,17.240000000000002,17.02,16.82,16.63,16.44,16.26,15.9,N/A,N/A +2012,11,6,13,30,101960,100760,99590,71.49,0,8.07,8.56,8.65,8.68,8.68,8.67,8.64,8.620000000000001,8.540000000000001,21.51,21.490000000000002,21.47,21.45,21.42,21.39,21.35,21.31,21.2,17.81,17.2,16.97,16.76,16.55,16.36,16.16,15.98,15.610000000000001,N/A,N/A +2012,11,6,14,30,101990,100780,99610,71.77,0,8.07,8.52,8.59,8.6,8.59,8.57,8.53,8.49,8.39,19.2,19.2,19.19,19.17,19.14,19.11,19.07,19.02,18.900000000000002,17.330000000000002,16.71,16.47,16.26,16.05,15.860000000000001,15.67,15.48,15.120000000000001,N/A,N/A +2012,11,6,15,30,102030,100820,99650,71.27,0,6.75,7.09,7.140000000000001,7.140000000000001,7.140000000000001,7.12,7.09,7.07,7,19.29,19.25,19.22,19.17,19.12,19.080000000000002,19.02,18.96,18.8,17.11,16.51,16.28,16.06,15.860000000000001,15.67,15.47,15.280000000000001,14.9,N/A,N/A +2012,11,6,16,30,102010,100810,99630,68.41,0,5.62,5.9,5.95,5.96,5.96,5.96,5.95,5.95,5.92,8.03,7.890000000000001,7.82,7.75,7.67,7.59,7.49,7.4,7.17,17.23,16.66,16.44,16.22,16.01,15.83,15.620000000000001,15.44,15.05,N/A,N/A +2012,11,6,17,30,101970,100770,99600,65.89,0,5.15,5.42,5.48,5.51,5.53,5.54,5.55,5.5600000000000005,5.58,356.67,356.18,355.87,355.58,355.31,355.07,354.82,354.59000000000003,354.13,17.68,17.14,16.91,16.7,16.490000000000002,16.3,16.1,15.91,15.52,N/A,N/A +2012,11,6,18,30,101990,100790,99620,57.22,0,5.09,5.3500000000000005,5.4,5.43,5.44,5.45,5.45,5.45,5.45,346.72,347.09000000000003,347.3,347.51,347.71,347.89,348.07,348.24,348.61,18.43,17.92,17.7,17.490000000000002,17.28,17.09,16.89,16.7,16.31,N/A,N/A +2012,11,6,19,30,101950,100750,99590,57.620000000000005,0,4.82,5.09,5.15,5.19,5.22,5.24,5.26,5.28,5.3100000000000005,334.98,334.98,335.02,335.07,335.11,335.15000000000003,335.19,335.23,335.32,19.080000000000002,18.59,18.38,18.17,17.96,17.77,17.56,17.37,16.98,N/A,N/A +2012,11,6,20,30,101920,100730,99570,56.26,0,6.44,6.83,6.9,6.93,6.95,6.96,6.96,6.96,6.95,332.37,332.71,332.93,333.13,333.33,333.51,333.71,333.89,334.28000000000003,19.52,19.02,18.8,18.59,18.39,18.2,17.990000000000002,17.8,17.41,N/A,N/A +2012,11,6,21,30,101900,100710,99550,53.9,0,6.87,7.32,7.42,7.46,7.49,7.51,7.5200000000000005,7.5200000000000005,7.5200000000000005,333.33,333.59000000000003,333.75,333.91,334.06,334.2,334.36,334.51,334.84000000000003,20.04,19.55,19.34,19.13,18.93,18.740000000000002,18.54,18.35,17.96,N/A,N/A +2012,11,6,22,30,101880,100690,99530,52.15,0,7.140000000000001,7.640000000000001,7.75,7.8,7.84,7.87,7.890000000000001,7.9,7.92,336.13,336.22,336.28000000000003,336.33,336.39,336.44,336.49,336.55,336.67,20.57,20.1,19.900000000000002,19.69,19.490000000000002,19.3,19.09,18.900000000000002,18.51,N/A,N/A +2012,11,6,23,30,101900,100710,99560,51.410000000000004,0,6.95,7.43,7.54,7.6000000000000005,7.63,7.66,7.68,7.69,7.71,341.53000000000003,341.56,341.57,341.58,341.58,341.58,341.59000000000003,341.59000000000003,341.6,20.92,20.47,20.27,20.06,19.86,19.67,19.46,19.28,18.88,N/A,N/A +2012,11,7,0,30,101910,100720,99570,53.08,0,6.390000000000001,6.8,6.88,6.92,6.95,6.97,6.98,6.98,6.99,346.90000000000003,346.67,346.54,346.41,346.28000000000003,346.17,346.05,345.93,345.71,20.97,20.53,20.330000000000002,20.13,19.92,19.73,19.53,19.34,18.95,N/A,N/A +2012,11,7,1,30,101920,100730,99570,51.95,0,5.8500000000000005,6.19,6.26,6.29,6.3,6.3100000000000005,6.3100000000000005,6.3,6.29,350.33,350.42,350.46,350.5,350.54,350.57,350.6,350.63,350.69,20.900000000000002,20.46,20.27,20.06,19.86,19.67,19.47,19.28,18.89,N/A,N/A +2012,11,7,2,30,101950,100760,99600,51.620000000000005,0,5.29,5.58,5.63,5.66,5.66,5.67,5.67,5.67,5.66,1.42,0.99,0.71,0.43,0.18,359.95,359.7,359.47,359.01,20.88,20.45,20.25,20.05,19.85,19.66,19.45,19.27,18.88,N/A,N/A +2012,11,7,3,30,101940,100750,99600,51.64,0,4.29,4.49,4.5200000000000005,4.53,4.53,4.53,4.5200000000000005,4.5200000000000005,4.5,2.97,2.27,1.82,1.37,0.9400000000000001,0.53,0.09,359.68,358.79,20.82,20.41,20.22,20.01,19.81,19.63,19.43,19.240000000000002,18.86,N/A,N/A +2012,11,7,4,30,101940,100750,99600,53.59,0,3.6,3.74,3.7600000000000002,3.7600000000000002,3.7600000000000002,3.75,3.74,3.74,3.72,5.14,4.21,3.62,3.04,2.48,1.96,1.41,0.9,359.79,20.82,20.42,20.22,20.02,19.830000000000002,19.64,19.44,19.25,18.87,N/A,N/A +2012,11,7,5,30,101940,100750,99590,55.99,0,3.67,3.8200000000000003,3.84,3.85,3.85,3.84,3.84,3.83,3.8200000000000003,357.96,357.01,356.40000000000003,355.79,355.2,354.65000000000003,354.07,353.52,352.32,20.85,20.44,20.25,20.04,19.85,19.66,19.46,19.28,18.89,N/A,N/A +2012,11,7,6,30,101950,100760,99600,57.910000000000004,0,3.13,3.27,3.29,3.29,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,349.16,348.51,348.12,347.73,347.38,347.05,346.7,346.38,345.63,20.89,20.51,20.32,20.12,19.93,19.740000000000002,19.54,19.36,18.97,N/A,N/A +2012,11,7,7,30,101970,100780,99630,58.86,0,2.97,3.11,3.13,3.14,3.15,3.15,3.16,3.16,3.17,339.5,339.03000000000003,338.76,338.48,338.22,337.97,337.69,337.44,336.85,20.96,20.580000000000002,20.39,20.19,19.990000000000002,19.81,19.61,19.42,19.04,N/A,N/A +2012,11,7,8,30,101990,100800,99650,58.35,0,2.5500000000000003,2.66,2.67,2.68,2.69,2.69,2.69,2.69,2.7,338.02,337.37,336.96,336.56,336.18,335.82,335.43,335.07,334.3,21.06,20.68,20.5,20.3,20.1,19.91,19.71,19.53,19.14,N/A,N/A +2012,11,7,9,30,101990,100800,99650,58.24,0,3.16,3.3000000000000003,3.3200000000000003,3.33,3.33,3.33,3.33,3.33,3.33,341.71,340.91,340.39,339.89,339.41,338.95,338.48,338.04,337.06,21.13,20.75,20.57,20.37,20.17,19.98,19.78,19.6,19.21,N/A,N/A +2012,11,7,10,30,102000,100810,99660,60.22,0,3.68,3.84,3.86,3.86,3.86,3.86,3.85,3.85,3.83,345.40000000000003,344.56,344.01,343.49,342.98,342.51,342.01,341.55,340.52,21.09,20.7,20.52,20.31,20.12,19.93,19.73,19.54,19.150000000000002,N/A,N/A +2012,11,7,11,30,102030,100840,99690,64.48,0,3.62,3.7600000000000002,3.77,3.77,3.7600000000000002,3.74,3.73,3.71,3.67,343.42,342.88,342.5,342.14,341.8,341.49,341.16,340.86,340.2,20.84,20.45,20.26,20.06,19.86,19.67,19.47,19.29,18.900000000000002,N/A,N/A +2012,11,7,12,30,102050,100860,99700,68.63,0,4.07,4.22,4.23,4.22,4.21,4.19,4.17,4.15,4.11,344.62,344.2,343.92,343.64,343.37,343.11,342.84000000000003,342.58,341.99,20.47,20.06,19.87,19.67,19.48,19.29,19.09,18.91,18.53,N/A,N/A +2012,11,7,13,30,102070,100880,99720,71.83,0,4.42,4.6000000000000005,4.6000000000000005,4.59,4.57,4.54,4.5200000000000005,4.49,4.43,357.13,356.64,356.31,355.99,355.67,355.36,355.02,354.7,353.95,20.080000000000002,19.650000000000002,19.46,19.26,19.06,18.88,18.68,18.5,18.13,N/A,N/A +2012,11,7,14,30,102090,100900,99740,66.47,0,4.1,4.26,4.28,4.2700000000000005,4.25,4.24,4.21,4.19,4.15,359.71,359.12,358.71,358.31,357.92,357.54,357.15000000000003,356.78000000000003,355.92,19.98,19.55,19.36,19.16,18.97,18.78,18.59,18.41,18.04,N/A,N/A +2012,11,7,15,30,102110,100910,99750,63.61,0,3.87,4.0200000000000005,4.03,4.0200000000000005,4.01,3.99,3.98,3.96,3.95,6.5,6.32,6.2,6.0600000000000005,5.91,5.74,5.5200000000000005,5.3,4.66,19.97,19.55,19.36,19.16,18.97,18.79,18.61,18.43,18.080000000000002,N/A,N/A +2012,11,7,16,30,102090,100890,99740,61.59,0,4.17,4.37,4.41,4.42,4.43,4.44,4.45,4.46,4.5,5.8,5.8100000000000005,5.8,5.8,5.78,5.78,5.76,5.74,5.67,20.27,19.86,19.67,19.48,19.29,19.11,18.91,18.740000000000002,18.38,N/A,N/A +2012,11,7,17,30,102060,100870,99710,57.620000000000005,0,3.73,3.92,3.96,3.98,3.99,4.01,4.0200000000000005,4.03,4.04,11.59,11.49,11.43,11.370000000000001,11.32,11.27,11.22,11.17,11.07,20.6,20.2,20.01,19.81,19.62,19.43,19.23,19.05,18.67,N/A,N/A +2012,11,7,18,30,102030,100840,99690,52.42,0,2.82,2.93,2.95,2.95,2.95,2.95,2.95,2.94,2.94,21.35,20.78,20.41,20.03,19.67,19.330000000000002,18.91,18.52,17.57,20.97,20.59,20.400000000000002,20.2,20.01,19.82,19.62,19.44,19.06,N/A,N/A +2012,11,7,19,30,102000,100810,99660,50.88,0,1.29,1.37,1.4000000000000001,1.43,1.46,1.48,1.51,1.54,1.6,11.31,10.28,9.68,9.01,8.370000000000001,7.74,7.01,6.32,4.65,21.21,20.85,20.67,20.47,20.27,20.09,19.89,19.7,19.32,N/A,N/A +2012,11,7,20,30,101960,100780,99620,52.4,0,0.54,0.68,0.77,0.86,0.9400000000000001,1.02,1.1,1.18,1.36,319.99,321.07,321.87,322.44,322.90000000000003,323.3,323.65000000000003,323.96,324.6,21.56,21.21,21.04,20.84,20.650000000000002,20.47,20.28,20.1,19.72,N/A,N/A +2012,11,7,21,30,101940,100760,99610,51.160000000000004,0,1.47,1.55,1.57,1.59,1.61,1.62,1.6400000000000001,1.6500000000000001,1.68,289.59000000000003,291.62,292.89,294.11,295.24,296.3,297.43,298.47,300.78000000000003,22.09,21.75,21.580000000000002,21.38,21.19,21,20.81,20.62,20.240000000000002,N/A,N/A +2012,11,7,22,30,101940,100750,99610,52.39,0,1.3900000000000001,1.5,1.54,1.59,1.6400000000000001,1.68,1.72,1.76,1.85,272.04,277.64,280.93,283.85,286.32,288.5,290.53000000000003,292.37,295.77,22.36,22.04,21.87,21.68,21.490000000000002,21.3,21.11,20.93,20.54,N/A,N/A +2012,11,7,23,30,101940,100760,99610,48.9,0,1.98,2.05,2.06,2.06,2.05,2.05,2.04,2.04,2.0300000000000002,302.2,303.53000000000003,304.38,305.22,306.01,306.77,307.58,308.32,309.97,22.7,22.39,22.22,22.03,21.84,21.650000000000002,21.45,21.27,20.89,N/A,N/A +2012,11,8,0,30,101960,100780,99630,49.29,0,1.12,1.16,1.17,1.17,1.18,1.18,1.19,1.19,1.21,279.58,281.34000000000003,282.5,283.7,284.87,285.99,287.26,288.45,291.2,22.76,22.45,22.28,22.09,21.900000000000002,21.71,21.51,21.330000000000002,20.95,N/A,N/A +2012,11,8,1,30,101980,100800,99650,51.300000000000004,0,1.59,1.69,1.72,1.75,1.78,1.8,1.84,1.87,1.96,335.67,336.54,337.13,337.75,338.39,339.04,339.82,340.56,342.57,22.79,22.48,22.31,22.12,21.93,21.75,21.55,21.37,20.990000000000002,N/A,N/A +2012,11,8,2,30,101970,100790,99650,47.86,0,2.92,3.09,3.09,3.08,3.06,3.04,3.0100000000000002,2.99,2.92,41.77,42.18,42.33,42.46,42.58,42.69,42.82,42.92,43.12,23.32,23.04,22.87,22.69,22.5,22.31,22.12,21.93,21.55,N/A,N/A +2012,11,8,3,30,101980,100800,99650,49.13,0,3.73,3.94,3.95,3.94,3.92,3.9,3.87,3.85,3.7800000000000002,71.31,71.83,72.08,72.34,72.59,72.83,73.08,73.31,73.81,23.14,22.85,22.68,22.490000000000002,22.3,22.12,21.93,21.75,21.37,N/A,N/A +2012,11,8,4,30,101980,100800,99650,53.39,0,3.83,4.01,4.03,4.01,3.99,3.97,3.95,3.92,3.85,84.04,84.78,85.2,85.63,86.06,86.47,86.93,87.35000000000001,88.4,22.77,22.45,22.28,22.09,21.900000000000002,21.72,21.53,21.35,20.97,N/A,N/A +2012,11,8,5,30,101990,100810,99660,57.76,0,4.0200000000000005,4.21,4.23,4.22,4.21,4.19,4.17,4.15,4.1,95.86,96.59,97.02,97.46000000000001,97.87,98.25,98.67,99.06,99.91,22.46,22.12,21.95,21.75,21.56,21.38,21.18,21,20.61,N/A,N/A +2012,11,8,6,30,102000,100820,99670,56.76,0,3.87,4.08,4.12,4.13,4.13,4.13,4.12,4.11,4.09,111,111.08,111.12,111.16,111.2,111.24000000000001,111.28,111.33,111.43,22.31,21.98,21.81,21.61,21.42,21.23,21.03,20.85,20.46,N/A,N/A +2012,11,8,7,30,102030,100840,99690,52.050000000000004,0,4.11,4.34,4.37,4.38,4.38,4.37,4.36,4.3500000000000005,4.32,104.18,104.47,104.66,104.84,105.02,105.18,105.36,105.53,105.89,22.400000000000002,22.080000000000002,21.91,21.72,21.52,21.34,21.14,20.95,20.56,N/A,N/A +2012,11,8,8,30,102040,100860,99710,54.89,0,4.43,4.68,4.71,4.72,4.71,4.71,4.69,4.68,4.65,105.08,105.5,105.78,106.05,106.31,106.55,106.81,107.04,107.55,22.22,21.89,21.72,21.52,21.330000000000002,21.14,20.94,20.76,20.37,N/A,N/A +2012,11,8,9,30,102050,100860,99710,55.44,0,4.82,5.11,5.15,5.17,5.17,5.17,5.16,5.15,5.12,106.2,106.49000000000001,106.66,106.83,106.99000000000001,107.14,107.31,107.47,107.83,22.12,21.78,21.6,21.400000000000002,21.21,21.02,20.82,20.63,20.240000000000002,N/A,N/A +2012,11,8,10,30,102060,100870,99720,56.07,0,5.17,5.48,5.54,5.55,5.5600000000000005,5.5600000000000005,5.55,5.54,5.51,107.07000000000001,107.47,107.71000000000001,107.95,108.18,108.39,108.62,108.83,109.3,22.01,21.66,21.48,21.28,21.09,20.900000000000002,20.7,20.52,20.13,N/A,N/A +2012,11,8,11,30,102090,100900,99750,60.68,0,5.69,6.05,6.12,6.140000000000001,6.15,6.16,6.15,6.140000000000001,6.12,114.26,114.63,114.84,115.05,115.25,115.44,115.64,115.83,116.22,21.75,21.38,21.2,21,20.81,20.62,20.42,20.23,19.84,N/A,N/A +2012,11,8,12,30,102100,100920,99760,62.04,0,5.73,6.09,6.16,6.19,6.2,6.2,6.2,6.19,6.17,114.65,115.02,115.26,115.49000000000001,115.71000000000001,115.91,116.12,116.33,116.76,21.69,21.32,21.13,20.93,20.740000000000002,20.55,20.35,20.16,19.77,N/A,N/A +2012,11,8,13,30,102130,100940,99790,61.84,0,5.99,6.390000000000001,6.47,6.51,6.5200000000000005,6.53,6.53,6.5200000000000005,6.51,121.59,122,122.24000000000001,122.46000000000001,122.68,122.87,123.08,123.28,123.7,21.73,21.36,21.17,20.97,20.78,20.59,20.39,20.2,19.81,N/A,N/A +2012,11,8,14,30,102170,100980,99830,64.1,0,6.390000000000001,6.83,6.91,6.95,6.97,6.98,6.98,6.98,6.96,122.36,122.82000000000001,123.10000000000001,123.37,123.63000000000001,123.87,124.13000000000001,124.36,124.85000000000001,21.64,21.25,21.07,20.87,20.67,20.48,20.28,20.09,19.7,N/A,N/A +2012,11,8,15,30,102180,100990,99840,66.14,0,6.53,7,7.1000000000000005,7.140000000000001,7.17,7.19,7.19,7.2,7.19,125.97,126.36,126.59,126.81,127.01,127.19,127.39,127.57000000000001,127.95,21.6,21.21,21.03,20.82,20.63,20.44,20.240000000000002,20.05,19.66,N/A,N/A +2012,11,8,16,30,102150,100970,99820,65.24,0,6.34,6.78,6.87,6.92,6.94,6.95,6.96,6.96,6.95,125.04,125.37,125.57000000000001,125.76,125.95,126.12,126.3,126.47,126.83,21.650000000000002,21.27,21.080000000000002,20.88,20.68,20.490000000000002,20.29,20.1,19.71,N/A,N/A +2012,11,8,17,30,102130,100950,99790,64.62,0,6.29,6.73,6.82,6.86,6.890000000000001,6.9,6.91,6.91,6.9,127.25,127.57000000000001,127.75,127.92,128.09,128.24,128.41,128.56,128.88,21.7,21.32,21.13,20.93,20.73,20.54,20.34,20.16,19.77,N/A,N/A +2012,11,8,18,30,102120,100930,99780,67.04,0,6.13,6.57,6.67,6.72,6.76,6.78,6.8,6.8100000000000005,6.82,133.5,133.66,133.77,133.87,133.98,134.08,134.17000000000002,134.26,134.47,21.75,21.37,21.18,20.98,20.78,20.59,20.39,20.21,19.81,N/A,N/A +2012,11,8,19,30,102100,100910,99760,66.86,0,6.34,6.8,6.9,6.95,6.98,6.99,7.01,7.01,7.01,130.98,131.52,131.83,132.13,132.41,132.67000000000002,132.93,133.17000000000002,133.69,21.86,21.490000000000002,21.31,21.1,20.91,20.72,20.52,20.34,19.95,N/A,N/A +2012,11,8,20,30,102050,100870,99720,66.43,0,6.28,6.74,6.8500000000000005,6.9,6.93,6.95,6.96,6.97,6.98,134.1,134.56,134.84,135.12,135.37,135.61,135.86,136.08,136.55,21.89,21.52,21.34,21.14,20.94,20.75,20.56,20.37,19.98,N/A,N/A +2012,11,8,21,30,102040,100850,99700,68.33,0,6.49,6.96,7.07,7.12,7.15,7.17,7.19,7.2,7.2,137.17000000000002,137.67000000000002,137.98,138.27,138.55,138.81,139.07,139.31,139.82,21.89,21.52,21.330000000000002,21.13,20.93,20.740000000000002,20.55,20.36,19.97,N/A,N/A +2012,11,8,22,30,102030,100840,99690,70.8,0,6.8,7.3100000000000005,7.42,7.48,7.51,7.53,7.54,7.55,7.55,136.42000000000002,136.89000000000001,137.18,137.46,137.71,137.95000000000002,138.20000000000002,138.42000000000002,138.89000000000001,21.85,21.48,21.29,21.09,20.900000000000002,20.71,20.51,20.32,19.93,N/A,N/A +2012,11,8,23,30,102010,100820,99680,72.05,0,7.25,7.82,7.96,8.03,8.08,8.11,8.120000000000001,8.14,8.15,139.45000000000002,139.85,140.09,140.31,140.51,140.70000000000002,140.89000000000001,141.07,141.44,21.88,21.51,21.32,21.12,20.92,20.73,20.53,20.35,19.95,N/A,N/A +2012,11,9,0,30,102010,100830,99680,72.34,0,7.58,8.21,8.36,8.44,8.5,8.53,8.56,8.58,8.6,140.01,140.43,140.68,140.93,141.16,141.37,141.59,141.79,142.20000000000002,21.95,21.580000000000002,21.39,21.19,21,20.8,20.6,20.42,20.03,N/A,N/A +2012,11,9,1,30,102010,100830,99680,73.03,0,8.11,8.8,8.97,9.06,9.11,9.15,9.18,9.200000000000001,9.21,142.69,143.03,143.24,143.45000000000002,143.64000000000001,143.82,144,144.17000000000002,144.53,21.98,21.6,21.41,21.21,21.01,20.82,20.62,20.44,20.05,N/A,N/A +2012,11,9,2,30,102000,100820,99670,74.21000000000001,0,8.3,9.03,9.200000000000001,9.3,9.36,9.41,9.44,9.46,9.48,145.53,145.76,145.9,146.03,146.16,146.28,146.4,146.51,146.75,22.01,21.63,21.45,21.25,21.05,20.86,20.66,20.47,20.080000000000002,N/A,N/A +2012,11,9,3,30,102000,100820,99670,74.3,0,8.42,9.17,9.36,9.450000000000001,9.52,9.57,9.6,9.620000000000001,9.64,148.22,148.48,148.64000000000001,148.81,148.96,149.11,149.25,149.38,149.67000000000002,22.13,21.76,21.57,21.37,21.18,20.990000000000002,20.78,20.6,20.21,N/A,N/A +2012,11,9,4,30,102000,100810,99670,74.27,0,8.58,9.35,9.540000000000001,9.65,9.71,9.76,9.790000000000001,9.81,9.83,149.91,150.16,150.31,150.47,150.62,150.75,150.89000000000001,151.02,151.3,22.23,21.86,21.68,21.48,21.28,21.1,20.89,20.71,20.32,N/A,N/A +2012,11,9,5,30,101990,100810,99660,75.10000000000001,0,8.68,9.48,9.68,9.790000000000001,9.870000000000001,9.92,9.96,9.99,10.03,152.46,152.84,153.06,153.27,153.47,153.66,153.85,154.03,154.39000000000001,22.28,21.92,21.740000000000002,21.54,21.34,21.150000000000002,20.95,20.77,20.38,N/A,N/A +2012,11,9,6,30,101990,100810,99670,75.23,0,8.48,9.26,9.450000000000001,9.57,9.65,9.700000000000001,9.74,9.78,9.82,156.3,156.64000000000001,156.85,157.05,157.24,157.42000000000002,157.59,157.76,158.09,22.45,22.1,21.92,21.72,21.53,21.330000000000002,21.14,20.95,20.56,N/A,N/A +2012,11,9,7,30,102010,100830,99680,74.97,0,8.43,9.23,9.43,9.55,9.63,9.69,9.73,9.77,9.81,159.16,159.5,159.69,159.87,160.03,160.17000000000002,160.32,160.46,160.72,22.64,22.3,22.12,21.92,21.73,21.54,21.34,21.150000000000002,20.76,N/A,N/A +2012,11,9,8,30,102010,100830,99680,72.9,0,8.56,9.370000000000001,9.58,9.69,9.77,9.82,9.870000000000001,9.9,9.94,160.39000000000001,160.8,161.02,161.22,161.42000000000002,161.6,161.78,161.95000000000002,162.31,22.77,22.44,22.26,22.06,21.87,21.68,21.48,21.3,20.91,N/A,N/A +2012,11,9,9,30,101990,100820,99670,74.35000000000001,0,8.2,8.99,9.200000000000001,9.33,9.41,9.48,9.53,9.57,9.63,163.61,163.82,163.94,164.05,164.15,164.24,164.33,164.4,164.56,22.87,22.55,22.37,22.18,21.98,21.79,21.6,21.41,21.02,N/A,N/A +2012,11,9,10,30,102010,100830,99690,73.43,0,8.34,9.16,9.370000000000001,9.5,9.59,9.66,9.71,9.76,9.83,163.76,163.86,163.97,164.1,164.21,164.33,164.44,164.55,164.79,22.95,22.63,22.46,22.26,22.07,21.88,21.68,21.5,21.11,N/A,N/A +2012,11,9,11,30,102010,100830,99690,71.76,0,8.72,9.6,9.81,9.93,10.02,10.07,10.11,10.14,10.16,160.62,160.94,161.09,161.23,161.36,161.48,161.59,161.70000000000002,161.92000000000002,23.04,22.73,22.56,22.37,22.17,21.98,21.79,21.6,21.21,N/A,N/A +2012,11,9,12,30,102010,100840,99690,73.42,0,8.42,9.26,9.47,9.59,9.67,9.73,9.78,9.81,9.85,158.05,158,158.01,158.03,158.05,158.07,158.1,158.12,158.19,23.04,22.73,22.55,22.36,22.16,21.97,21.78,21.59,21.2,N/A,N/A +2012,11,9,13,30,102020,100850,99700,73.67,0,8.39,9.22,9.43,9.55,9.64,9.700000000000001,9.75,9.790000000000001,9.85,157.78,157.83,157.91,158,158.1,158.19,158.29,158.38,158.58,23.06,22.76,22.59,22.39,22.19,22.01,21.81,21.63,21.240000000000002,N/A,N/A +2012,11,9,14,30,102050,100880,99730,73.83,0,8.53,9.39,9.61,9.73,9.81,9.870000000000001,9.91,9.93,9.96,152.55,152.81,152.97,153.12,153.25,153.38,153.5,153.62,153.85,23.07,22.77,22.6,22.400000000000002,22.21,22.02,21.830000000000002,21.64,21.25,N/A,N/A +2012,11,9,15,30,102060,100890,99740,72.84,0,8.02,8.84,9.05,9.17,9.26,9.33,9.370000000000001,9.41,9.46,153.52,153.49,153.53,153.59,153.65,153.71,153.77,153.84,153.97,23.17,22.87,22.7,22.51,22.32,22.13,21.93,21.75,21.36,N/A,N/A +2012,11,9,16,30,102060,100880,99740,73.68,0,7.95,8.74,8.94,9.05,9.120000000000001,9.17,9.200000000000001,9.23,9.25,150.01,150.24,150.41,150.57,150.72,150.85,150.99,151.12,151.37,23.17,22.88,22.71,22.52,22.330000000000002,22.14,21.94,21.76,21.37,N/A,N/A +2012,11,9,17,30,102040,100860,99720,74.97,0,7.390000000000001,8.11,8.290000000000001,8.4,8.47,8.53,8.57,8.61,8.66,149.95000000000002,150.11,150.18,150.24,150.29,150.34,150.38,150.42000000000002,150.5,23.16,22.86,22.69,22.5,22.31,22.12,21.92,21.740000000000002,21.35,N/A,N/A +2012,11,9,18,30,102020,100850,99700,74.37,0,6.97,7.68,7.86,7.98,8.08,8.14,8.2,8.25,8.32,151.49,152.03,152.32,152.59,152.82,153.04,153.24,153.43,153.77,23.28,23,22.830000000000002,22.64,22.45,22.26,22.07,21.88,21.5,N/A,N/A +2012,11,9,19,30,102020,100840,99700,75.4,0,6.76,7.42,7.58,7.68,7.76,7.8100000000000005,7.8500000000000005,7.88,7.92,153.63,153.68,153.72,153.76,153.79,153.82,153.85,153.88,153.93,23.31,23.02,22.85,22.650000000000002,22.46,22.28,22.080000000000002,21.900000000000002,21.51,N/A,N/A +2012,11,9,20,30,101980,100800,99660,76.52,0,6.67,7.32,7.48,7.58,7.65,7.71,7.75,7.78,7.82,144.85,145.17000000000002,145.44,145.72,145.97,146.22,146.46,146.69,147.16,23.27,22.97,22.8,22.61,22.42,22.23,22.04,21.85,21.47,N/A,N/A +2012,11,9,21,30,101970,100790,99650,76.18,0,7.01,7.640000000000001,7.79,7.87,7.92,7.95,7.97,7.99,8,140.69,141.16,141.49,141.83,142.13,142.42000000000002,142.72,142.99,143.56,23.22,22.92,22.76,22.56,22.37,22.19,21.990000000000002,21.81,21.42,N/A,N/A +2012,11,9,22,30,101930,100760,99620,77.63,0,6.76,7.3500000000000005,7.5,7.59,7.65,7.7,7.74,7.7700000000000005,7.8100000000000005,147.17000000000002,147.67000000000002,147.91,148.14000000000001,148.34,148.51,148.69,148.85,149.16,23.2,22.91,22.740000000000002,22.55,22.36,22.18,21.98,21.8,21.41,N/A,N/A +2012,11,9,23,30,101910,100740,99600,77.55,0,7.28,8.03,8.22,8.33,8.4,8.46,8.51,8.540000000000001,8.59,144.35,144.51,144.65,144.8,144.94,145.07,145.21,145.33,145.6,23.23,22.93,22.76,22.57,22.38,22.19,21.990000000000002,21.81,21.42,N/A,N/A +2012,11,10,0,30,101920,100740,99600,75.12,0,7.53,8.26,8.44,8.540000000000001,8.61,8.67,8.71,8.74,8.78,146.38,146.35,146.42000000000002,146.53,146.64000000000001,146.75,146.88,147,147.27,23.26,22.97,22.8,22.61,22.42,22.23,22.03,21.85,21.46,N/A,N/A +2012,11,10,1,30,101920,100740,99600,74.9,0,7.98,8.73,8.91,8.99,9.05,9.09,9.120000000000001,9.14,9.16,143.86,144.19,144.39000000000001,144.58,144.76,144.93,145.1,145.25,145.57,23.27,22.990000000000002,22.82,22.63,22.44,22.25,22.06,21.87,21.490000000000002,N/A,N/A +2012,11,10,2,30,101910,100740,99600,75.42,0,8.950000000000001,9.85,10.07,10.19,10.28,10.34,10.38,10.41,10.450000000000001,141.61,142.13,142.43,142.72,142.99,143.23,143.49,143.71,144.17000000000002,23.34,23.05,22.89,22.69,22.51,22.32,22.12,21.94,21.55,N/A,N/A +2012,11,10,3,30,101900,100730,99590,75.22,0,8.790000000000001,9.74,9.98,10.13,10.24,10.33,10.39,10.450000000000001,10.540000000000001,139.57,139.99,140.24,140.5,140.73,140.96,141.18,141.39000000000001,141.79,23.38,23.11,22.95,22.76,22.57,22.39,22.19,22.01,21.63,N/A,N/A +2012,11,10,4,30,101900,100720,99580,74.01,0,8.98,9.92,10.17,10.31,10.4,10.47,10.52,10.55,10.59,146.22,146.38,146.47,146.56,146.64000000000001,146.71,146.79,146.86,147.01,23.45,23.19,23.03,22.84,22.650000000000002,22.46,22.27,22.080000000000002,21.7,N/A,N/A +2012,11,10,5,30,101900,100720,99590,75.39,0,8.98,9.91,10.16,10.31,10.41,10.48,10.540000000000001,10.58,10.64,146.32,146.56,146.66,146.75,146.84,146.91,146.99,147.05,147.19,23.52,23.27,23.11,22.92,22.73,22.55,22.36,22.17,21.79,N/A,N/A +2012,11,10,6,30,101890,100720,99580,81.78,0,7.8,8.78,9.08,9.32,9.51,9.66,9.790000000000001,9.91,10.09,150.68,150.85,150.91,151,151.08,151.17000000000002,151.26,151.36,151.57,23.32,23.09,22.94,22.76,22.580000000000002,22.400000000000002,22.22,22.04,21.67,N/A,N/A +2012,11,10,7,30,101890,100710,99580,79.18,0,7.51,8.370000000000001,8.67,8.97,9.16,9.290000000000001,9.450000000000001,9.63,9.86,146.58,147.31,147.85,148.58,149.18,149.70000000000002,150.62,151.6,153.15,23.400000000000002,23.2,23.07,22.91,22.740000000000002,22.57,22.400000000000002,22.26,21.92,N/A,N/A +2012,11,10,8,30,101860,100690,99550,79.87,0,8.63,9.57,9.85,10.05,10.21,10.35,10.46,10.55,10.700000000000001,152.48,152.71,152.93,153.17000000000002,153.44,153.73,154.01,154.27,154.84,23.48,23.27,23.13,22.95,22.79,22.62,22.44,22.26,21.91,N/A,N/A +2012,11,10,9,30,101850,100680,99550,80.54,0,7.3100000000000005,8.57,9.03,9.3,9.56,9.8,10.01,10.19,10.49,158.67000000000002,160,160.66,160.9,161.1,161.27,161.41,161.53,161.72,23.53,23.31,23.17,22.990000000000002,22.84,22.68,22.51,22.36,22.01,N/A,N/A +2012,11,10,10,30,101840,100660,99530,81.15,0,7.58,8.59,8.92,9.18,9.39,9.58,9.78,9.97,10.32,149.57,149.8,150.07,150.56,150.91,151.20000000000002,151.62,152.04,152.91,23.45,23.26,23.13,22.95,22.78,22.61,22.44,22.29,21.95,N/A,N/A +2012,11,10,11,30,101830,100660,99520,82.67,0,7.42,8.33,8.6,8.8,8.94,9.040000000000001,9.13,9.200000000000001,9.34,154.11,154.29,154.49,154.74,154.97,155.19,155.37,155.52,156.02,23.41,23.2,23.06,22.88,22.7,22.53,22.34,22.16,21.8,N/A,N/A +2012,11,10,12,30,101850,100670,99540,83.4,0,6.5200000000000005,7.640000000000001,8.09,8.45,8.74,8.98,9.22,9.43,9.81,152.59,153.86,154.70000000000002,155.49,156.04,156.43,156.79,157.11,157.70000000000002,23.45,23.240000000000002,23.1,22.93,22.77,22.6,22.43,22.27,21.93,N/A,N/A +2012,11,10,13,30,101830,100660,99530,85.32000000000001,0,5.94,6.86,7.23,7.5600000000000005,7.86,8.13,8.39,8.620000000000001,8.99,148.8,151.70000000000002,153.54,155.38,157.01,158.49,159.97,161.33,164.22,23.36,23.16,23.05,22.92,22.79,22.67,22.54,22.43,22.19,N/A,N/A +2012,11,10,14,30,101870,100700,99570,82.3,0,7.11,8,8.3,8.52,8.67,8.76,8.81,8.84,8.88,158.22,159.06,159.5,159.84,160.21,160.6,161.07,161.53,162.58,23.56,23.39,23.27,23.12,22.97,22.81,22.64,22.48,22.13,N/A,N/A +2012,11,10,15,30,101870,100700,99560,83.09,0,7.5200000000000005,8.23,8.44,8.620000000000001,8.78,8.91,9.01,9.09,8.91,158.53,159.02,159.32,159.69,160.05,160.4,160.70000000000002,160.95000000000002,160.76,23.3,23.09,22.97,22.830000000000002,22.69,22.55,22.42,22.3,21.98,N/A,N/A +2012,11,10,16,30,101860,100690,99550,84.48,0,6.61,7.46,7.72,7.82,7.94,8.08,8.2,8.3,8.51,158.68,159.27,159.59,159.76,159.92000000000002,160.08,160.3,160.52,161.70000000000002,23.48,23.28,23.14,22.95,22.78,22.63,22.46,22.3,21.990000000000002,N/A,N/A +2012,11,10,17,30,101840,100660,99530,86.9,0,6.07,6.71,6.88,6.96,7.07,7.21,7.37,7.53,7.96,149.69,151.17000000000002,152.03,152.67000000000002,154.12,156.24,158.38,160.41,163.56,23.42,23.22,23.09,22.91,22.77,22.66,22.55,22.44,22.22,N/A,N/A +2012,11,10,18,30,101820,100650,99520,77.75,0,7.11,8.01,8.3,8.53,8.72,8.88,9.02,9.14,9.36,165.56,165.79,165.97,166.17000000000002,166.36,166.55,166.74,166.91,167.24,24.01,23.85,23.73,23.56,23.400000000000002,23.240000000000002,23.06,22.89,22.54,N/A,N/A +2012,11,10,19,30,101800,100630,99490,84.94,0,8.39,9.11,9.34,9.61,9.84,10.040000000000001,10.200000000000001,10.33,10.42,150.11,150.52,151.05,151.94,153.05,154.34,155.94,157.53,160.31,23.09,22.87,22.75,22.650000000000002,22.55,22.46,22.38,22.31,22.04,N/A,N/A +2012,11,10,20,30,101760,100600,99460,86.96000000000001,0,8.040000000000001,8.94,9.290000000000001,9.66,9.94,10.14,10.38,10.620000000000001,11.15,157.02,157.19,157.42000000000002,157.78,158.14000000000001,158.5,159.02,159.55,160.95000000000002,23.34,23.11,22.98,22.84,22.68,22.5,22.35,22.21,21.97,N/A,N/A +2012,11,10,21,30,101740,100570,99430,90,0,7.61,8.35,8.56,8.75,9.13,9.68,10.06,10.36,10.94,141.43,141.85,142.22,142.72,143.63,144.93,145.83,146.53,148.29,23.080000000000002,22.81,22.66,22.490000000000002,22.34,22.22,22.07,21.93,21.7,N/A,N/A +2012,11,10,22,30,101700,100530,99400,83.73,0,9.09,10.28,10.67,10.99,11.26,11.48,11.69,11.88,12.22,150.18,150.18,150.25,150.34,150.42000000000002,150.52,150.64000000000001,150.76,151.07,23.68,23.5,23.37,23.2,23.04,22.88,22.71,22.55,22.2,N/A,N/A +2012,11,10,23,30,101670,100500,99370,83.69,0,9.89,11.15,11.57,11.88,12.13,12.34,12.530000000000001,12.69,12.98,151.48,151.89000000000001,152.15,152.43,152.70000000000002,152.98,153.26,153.53,154.1,23.72,23.55,23.42,23.26,23.1,22.93,22.76,22.59,22.25,N/A,N/A +2012,11,11,0,30,101660,100490,99360,81.99,0,9.09,10.3,10.71,11.040000000000001,11.32,11.56,11.790000000000001,11.99,12.370000000000001,151.04,151.36,151.57,151.81,152.03,152.25,152.47,152.68,153.08,23.85,23.7,23.59,23.43,23.28,23.13,22.97,22.81,22.48,N/A,N/A +2012,11,11,1,30,101630,100470,99330,80.9,0,10.26,11.63,12.08,12.43,12.72,12.96,13.19,13.39,13.76,152.73,152.97,153.13,153.3,153.46,153.62,153.78,153.93,154.25,23.86,23.71,23.59,23.43,23.27,23.11,22.94,22.78,22.43,N/A,N/A +2012,11,11,2,30,101640,100470,99340,80.65,0,10.72,12.200000000000001,12.700000000000001,13.09,13.41,13.68,13.93,14.14,14.51,152.76,153.07,153.26,153.47,153.66,153.85,154.04,154.23,154.6,23.92,23.78,23.66,23.51,23.36,23.2,23.03,22.88,22.54,N/A,N/A +2012,11,11,3,30,101600,100430,99300,80.76,0,10.94,12.41,12.9,13.290000000000001,13.61,13.89,14.14,14.370000000000001,14.8,153.71,154.01,154.21,154.42000000000002,154.63,154.82,155.02,155.20000000000002,155.56,23.95,23.81,23.7,23.54,23.39,23.23,23.06,22.91,22.57,N/A,N/A +2012,11,11,4,30,101580,100410,99280,80.85000000000001,0,11.540000000000001,13.120000000000001,13.65,14.07,14.41,14.71,14.97,15.21,15.63,156.74,156.96,157.09,157.24,157.39000000000001,157.54,157.70000000000002,157.85,158.16,23.98,23.84,23.73,23.57,23.42,23.27,23.1,22.94,22.6,N/A,N/A +2012,11,11,5,30,101560,100390,99260,79.92,0,12.02,13.66,14.17,14.56,14.88,15.15,15.38,15.59,15.94,162.01,162.39000000000001,162.6,162.82,163.01,163.20000000000002,163.37,163.53,163.82,24.080000000000002,23.95,23.84,23.68,23.53,23.37,23.19,23.03,22.67,N/A,N/A +2012,11,11,6,30,101550,100380,99250,80.09,0,11.88,13.43,13.950000000000001,14.33,14.65,14.91,15.14,15.35,15.71,163.20000000000002,163.25,163.3,163.36,163.41,163.47,163.53,163.59,163.73,24.09,23.94,23.81,23.650000000000002,23.490000000000002,23.32,23.150000000000002,22.98,22.63,N/A,N/A +2012,11,11,7,30,101530,100360,99230,81.2,0,11.58,13.15,13.67,14.08,14.41,14.69,14.950000000000001,15.17,15.59,164.6,164.71,164.79,164.88,164.96,165.05,165.12,165.20000000000002,165.35,24.11,23.97,23.85,23.69,23.53,23.37,23.2,23.04,22.69,N/A,N/A +2012,11,11,8,30,101480,100320,99190,80.75,0,11.82,13.42,13.93,14.34,14.66,14.93,15.18,15.4,15.780000000000001,163.12,163.36,163.5,163.66,163.8,163.94,164.08,164.21,164.48,24.14,24,23.88,23.73,23.57,23.41,23.240000000000002,23.07,22.73,N/A,N/A +2012,11,11,9,30,101470,100310,99180,82.67,0,11.06,12.61,13.13,13.55,13.89,14.19,14.450000000000001,14.69,15.11,166.86,167.1,167.23,167.35,167.45000000000002,167.54,167.6,167.66,167.73,24.16,24.02,23.900000000000002,23.75,23.6,23.44,23.27,23.11,22.77,N/A,N/A +2012,11,11,10,30,101460,100290,99170,83.11,0,11.06,12.69,13.25,13.72,14.120000000000001,14.47,14.81,15.120000000000001,15.71,166.96,167.34,167.52,167.71,167.89000000000001,168.06,168.23,168.38,168.66,24.22,24.1,23.990000000000002,23.85,23.71,23.56,23.41,23.26,22.95,N/A,N/A +2012,11,11,11,30,101450,100290,99160,85.46000000000001,0,10.35,11.83,12.36,12.780000000000001,13.14,13.450000000000001,13.72,13.97,14.41,166.01,165.81,165.81,165.81,165.83,165.86,165.9,165.95000000000002,166.09,24.19,24.060000000000002,23.95,23.8,23.650000000000002,23.5,23.34,23.19,22.86,N/A,N/A +2012,11,11,12,30,101470,100300,99170,91.9,17.6,9.620000000000001,10.77,11.24,11.73,12.16,12.540000000000001,12.96,13.38,14.26,158.74,159.32,159.78,160.48,161.19,161.95000000000002,162.98,164.05,166.34,23.34,23.1,22.96,22.8,22.66,22.52,22.42,22.34,22.19,N/A,N/A +2012,11,11,13,30,101440,100280,99150,85.7,0,10.32,11.76,12.24,12.620000000000001,12.94,13.22,13.47,13.700000000000001,14.11,159.36,159.59,159.71,159.82,159.92000000000002,159.99,160.04,160.09,160.13,24.17,24.03,23.91,23.76,23.61,23.45,23.28,23.13,22.79,N/A,N/A +2012,11,11,14,30,101450,100290,99160,90.58,0,10,11.42,11.89,12.290000000000001,12.63,12.93,13.23,13.5,14.01,149.26,149.78,150.1,150.43,150.75,151.04,151.34,151.61,152.13,23.78,23.57,23.44,23.28,23.12,22.97,22.8,22.650000000000002,22.330000000000002,N/A,N/A +2012,11,11,15,30,101480,100310,99180,92.2,0,9.68,11.15,11.72,12.21,12.64,13.030000000000001,13.4,13.74,14.35,158.75,159.43,159.95000000000002,160.57,161.17000000000002,161.81,162.5,163.20000000000002,164.71,23.8,23.63,23.51,23.36,23.21,23.07,22.93,22.79,22.51,N/A,N/A +2012,11,11,16,30,101470,100300,99180,89.14,0,9,10.31,10.74,11.1,11.38,11.61,11.790000000000001,11.93,12.08,171.03,170.94,170.99,171.11,171.3,171.57,171.97,172.39000000000001,173.69,24.150000000000002,23.990000000000002,23.87,23.72,23.56,23.41,23.25,23.09,22.78,N/A,N/A +2012,11,11,17,30,101450,100290,99170,94.68,0,6.38,7.390000000000001,7.72,7.96,8.120000000000001,8.22,8.31,8.39,8.700000000000001,177.58,178.26,178.8,179.51,180.41,181.47,182.89000000000001,184.35,187.81,23.990000000000002,23.84,23.740000000000002,23.62,23.5,23.38,23.25,23.13,22.87,N/A,N/A +2012,11,11,18,30,101470,100310,99180,94.61,0,4.6000000000000005,5.5600000000000005,5.99,6.46,6.890000000000001,7.33,7.74,8.120000000000001,8.78,186.92000000000002,188.47,189.55,190.75,191.72,192.55,193.20000000000002,193.74,194.56,24.21,24.1,24.03,23.92,23.82,23.71,23.59,23.47,23.2,N/A,N/A +2012,11,11,19,30,101460,100300,99170,93.11,0,4.78,5.8,6.23,6.67,7.0600000000000005,7.44,7.8,8.15,8.86,190.98,191.87,192.52,193.24,193.84,194.35,194.73000000000002,195.04,195.41,24.44,24.330000000000002,24.25,24.14,24.03,23.91,23.78,23.650000000000002,23.39,N/A,N/A +2012,11,11,20,30,101460,100300,99170,88.37,0,7.95,9.17,9.65,10.09,10.48,10.86,11.25,11.63,12.450000000000001,194.43,194.46,194.47,194.45000000000002,194.41,194.35,194.29,194.22,194.13,24.25,24.14,24.060000000000002,23.93,23.81,23.68,23.55,23.42,23.18,N/A,N/A +2012,11,11,21,30,101480,100320,99200,84.31,0.4,12.200000000000001,14.030000000000001,14.69,15.23,15.67,16.03,16.330000000000002,16.57,16.92,181.57,181.99,182.26,182.55,182.82,183.09,183.36,183.61,184.18,24.32,24.21,24.1,23.96,23.82,23.68,23.53,23.400000000000002,23.13,N/A,N/A +2012,11,11,22,30,101460,100300,99170,88.42,0,7.69,8.97,9.5,10.03,10.52,11.01,11.49,11.93,12.64,182.22,182.97,183.52,184.29,185.05,185.87,186.72,187.55,189.33,24.34,24.3,24.25,24.17,24.09,24.02,23.94,23.87,23.68,N/A,N/A +2012,11,11,23,30,101470,100310,99190,90.26,0,6.3100000000000005,7.66,8.23,8.78,9.26,9.700000000000001,10.13,10.52,11.23,190.77,190.42000000000002,190.25,190.16,190.18,190.29,190.52,190.8,191.6,24.45,24.43,24.39,24.3,24.21,24.1,23.990000000000002,23.89,23.650000000000002,N/A,N/A +2012,11,12,0,30,101530,100370,99250,81.53,10.3,6.61,7.94,8.620000000000001,9.33,9.93,10.47,10.89,11.23,11.65,194.04,196.59,198.16,200.04,201.54,202.76,203.6,204.24,204.93,24.29,24.48,24.580000000000002,24.650000000000002,24.67,24.650000000000002,24.57,24.46,24.19,N/A,N/A +2012,11,12,1,30,101590,100430,99300,87.61,0,6.62,7.49,7.8100000000000005,8.08,8.31,8.52,8.700000000000001,8.84,8.94,182.87,183.04,183.22,183.5,183.88,184.37,185.19,186.1,189.95000000000002,23.94,23.79,23.69,23.56,23.45,23.35,23.26,23.18,23.05,N/A,N/A +2012,11,12,2,30,101640,100480,99350,91.38,0,4.8100000000000005,5.69,6.0200000000000005,6.25,6.38,6.43,6.54,6.68,7.05,190.62,192.49,194.33,197.51,201.52,206.54,210.44,213.68,216.39000000000001,23.93,23.87,23.830000000000002,23.8,23.76,23.71,23.61,23.5,23.240000000000002,N/A,N/A +2012,11,12,3,30,101680,100520,99390,94.2,0,3.31,4.2,4.57,5.01,5.55,6.24,6.61,6.82,7.28,199.59,204.37,207.54,210.64000000000001,212.26,212.53,212.5,212.33,212.56,23.96,23.98,23.96,23.92,23.87,23.830000000000002,23.71,23.57,23.31,N/A,N/A +2012,11,12,4,30,101730,100570,99440,95.61,0,2.36,3.64,4.28,4.91,5.37,5.66,5.84,5.97,6.09,221.44,220.76,220.29,220.22,220.62,221.49,222.16,222.72,223.27,23.88,23.990000000000002,24.03,24.03,23.990000000000002,23.900000000000002,23.77,23.63,23.29,N/A,N/A +2012,11,12,5,30,101780,100610,99480,95.14,0,2.46,3.92,4.55,4.79,4.9,4.9,4.92,4.94,5.0600000000000005,248.75,242.46,238.97,239.42000000000002,239.65,239.69,239.73000000000002,239.78,239.76,23.94,24.240000000000002,24.32,24.2,24.05,23.86,23.66,23.48,23.12,N/A,N/A +2012,11,12,6,30,101840,100670,99540,95.52,0,2.22,3.2,3.5300000000000002,3.79,3.99,4.13,4.28,4.42,4.7,269.72,264.77,261.59000000000003,259.92,258.91,258.47,258.01,257.55,256.63,23.830000000000002,24.04,24.07,23.96,23.84,23.71,23.57,23.43,23.13,N/A,N/A +2012,11,12,7,30,102000,100800,99650,92.08,0,13.83,14.94,15.14,15.16,15.120000000000001,15.040000000000001,14.93,14.82,14.36,343.21,343.03000000000003,342.95,342.84000000000003,342.71,342.56,342.32,342.06,340.81,19.25,18.66,18.44,18.25,18.07,17.92,17.78,17.66,17.63,N/A,N/A +2012,11,12,8,30,102030,100830,99670,69.97,0,13.41,14.69,15,15.16,15.27,15.34,15.39,15.44,15.57,351.56,351.62,351.67,351.74,351.82,351.89,351.99,352.08,352.31,19.66,19.11,18.89,18.68,18.490000000000002,18.31,18.13,17.96,17.63,N/A,N/A +2012,11,12,9,30,102080,100880,99720,68.82000000000001,0,13.67,14.97,15.27,15.43,15.52,15.58,15.620000000000001,15.65,15.700000000000001,0.65,0.8300000000000001,0.91,0.97,1.03,1.08,1.1300000000000001,1.16,1.23,19.05,18.45,18.22,18.01,17.81,17.62,17.43,17.26,16.91,N/A,N/A +2012,11,12,10,30,102140,100940,99770,70.33,0,14.08,15.41,15.75,15.93,16.04,16.11,16.15,16.18,16.21,10.59,10.620000000000001,10.620000000000001,10.61,10.59,10.56,10.53,10.5,10.42,18.64,18,17.76,17.53,17.32,17.12,16.92,16.740000000000002,16.36,N/A,N/A +2012,11,12,11,30,102240,101030,99860,74.08,0,13.38,14.66,14.96,15.120000000000001,15.22,15.290000000000001,15.33,15.36,15.39,19.580000000000002,19.47,19.41,19.34,19.29,19.23,19.17,19.12,18.98,17.85,17.16,16.91,16.68,16.46,16.26,16.05,15.860000000000001,15.47,N/A,N/A +2012,11,12,12,30,102360,101150,99970,73.24,0,13.82,15.1,15.41,15.57,15.67,15.74,15.780000000000001,15.81,15.84,9.76,9.77,9.88,9.96,10.040000000000001,10.1,10.16,10.22,10.32,17.16,16.43,16.16,15.93,15.71,15.51,15.3,15.11,14.72,N/A,N/A +2012,11,12,13,30,102470,101260,100080,73.84,0,12.71,13.86,14.15,14.31,14.42,14.49,14.540000000000001,14.58,14.64,15.39,15.51,15.57,15.65,15.71,15.77,15.84,15.9,16.04,16.59,15.84,15.58,15.34,15.120000000000001,14.92,14.71,14.52,14.13,N/A,N/A +2012,11,12,14,30,102530,101320,100130,72.52,0,12.290000000000001,13.35,13.61,13.75,13.83,13.9,13.94,13.97,14.01,18.54,18.66,18.7,18.740000000000002,18.78,18.81,18.86,18.900000000000002,18.98,16.18,15.43,15.16,14.92,14.700000000000001,14.5,14.280000000000001,14.09,13.700000000000001,N/A,N/A +2012,11,12,15,30,102570,101350,100170,70.13,0,12.120000000000001,13.14,13.39,13.52,13.6,13.66,13.69,13.72,13.76,20.09,20.21,20.29,20.37,20.44,20.51,20.57,20.63,20.76,16.04,15.290000000000001,15.02,14.780000000000001,14.56,14.36,14.15,13.96,13.57,N/A,N/A +2012,11,12,16,30,102630,101410,100230,63.46,0,11.26,12.200000000000001,12.44,12.58,12.67,12.73,12.780000000000001,12.82,12.88,18.45,18.59,18.68,18.78,18.86,18.95,19.03,19.11,19.29,16.44,15.74,15.48,15.25,15.030000000000001,14.83,14.620000000000001,14.43,14.040000000000001,N/A,N/A +2012,11,12,17,30,102660,101440,100260,55.08,0,11.040000000000001,11.96,12.19,12.32,12.4,12.46,12.51,12.540000000000001,12.59,18.29,18.52,18.68,18.830000000000002,18.96,19.080000000000002,19.2,19.330000000000002,19.56,16.89,16.22,15.97,15.74,15.52,15.32,15.1,14.91,14.51,N/A,N/A +2012,11,12,18,30,102680,101470,100290,49.370000000000005,0,10.67,11.56,11.78,11.91,11.99,12.06,12.1,12.14,12.19,18.47,18.66,18.78,18.89,18.98,19.080000000000002,19.17,19.25,19.42,17.400000000000002,16.76,16.52,16.3,16.080000000000002,15.870000000000001,15.66,15.47,15.07,N/A,N/A +2012,11,12,19,30,102700,101490,100310,47.75,0,10.66,11.55,11.78,11.9,11.98,12.05,12.09,12.13,12.18,15.64,15.85,15.99,16.11,16.22,16.32,16.42,16.51,16.7,17.78,17.16,16.92,16.69,16.48,16.28,16.07,15.870000000000001,15.47,N/A,N/A +2012,11,12,20,30,102710,101500,100320,47,0,10.44,11.32,11.540000000000001,11.66,11.75,11.81,11.85,11.89,11.93,16.53,16.75,16.87,16.990000000000002,17.11,17.21,17.32,17.42,17.62,18.01,17.41,17.17,16.95,16.73,16.53,16.32,16.12,15.72,N/A,N/A +2012,11,12,21,30,102690,101480,100300,47.74,0,10.790000000000001,11.69,11.91,12.02,12.1,12.15,12.18,12.21,12.24,14.71,14.93,15.06,15.19,15.3,15.41,15.51,15.610000000000001,15.8,17.95,17.330000000000002,17.09,16.87,16.65,16.45,16.240000000000002,16.04,15.64,N/A,N/A +2012,11,12,22,30,102710,101500,100320,49.52,0,10.69,11.55,11.75,11.85,11.91,11.950000000000001,11.97,11.98,11.98,16.92,17.17,17.32,17.46,17.59,17.71,17.84,17.96,18.19,17.66,17.03,16.8,16.57,16.35,16.15,15.94,15.74,15.34,N/A,N/A +2012,11,12,23,30,102750,101530,100350,51.45,0,11.22,12.13,12.34,12.450000000000001,12.52,12.56,12.58,12.6,12.6,16.25,16.51,16.67,16.830000000000002,16.97,17.11,17.240000000000002,17.37,17.62,17.21,16.55,16.3,16.07,15.85,15.65,15.43,15.24,14.84,N/A,N/A +2012,11,13,0,30,102810,101590,100410,55.45,0,11.69,12.65,12.870000000000001,12.99,13.06,13.11,13.13,13.15,13.15,19.29,19.48,19.59,19.7,19.79,19.88,19.97,20.05,20.22,16.39,15.67,15.41,15.18,14.950000000000001,14.75,14.530000000000001,14.33,13.93,N/A,N/A +2012,11,13,1,30,102860,101630,100440,58.44,0,12.43,13.49,13.73,13.86,13.94,14,14.030000000000001,14.05,14.06,27.09,27.330000000000002,27.46,27.580000000000002,27.7,27.810000000000002,27.93,28.04,28.27,15.620000000000001,14.84,14.57,14.33,14.1,13.89,13.67,13.47,13.07,N/A,N/A +2012,11,13,2,30,102890,101660,100470,59.74,0,12.8,13.89,14.15,14.290000000000001,14.38,14.44,14.47,14.49,14.51,32.89,33.17,33.34,33.5,33.65,33.78,33.92,34.05,34.31,15.200000000000001,14.39,14.11,13.870000000000001,13.64,13.43,13.21,13.01,12.6,N/A,N/A +2012,11,13,3,30,102900,101670,100470,60.18,0,12.72,13.81,14.08,14.21,14.290000000000001,14.36,14.39,14.41,14.43,37.45,37.74,37.9,38.050000000000004,38.18,38.31,38.44,38.56,38.800000000000004,15.030000000000001,14.22,13.94,13.700000000000001,13.46,13.26,13.040000000000001,12.83,12.43,N/A,N/A +2012,11,13,4,30,102910,101680,100480,64.34,0,12.4,13.43,13.67,13.790000000000001,13.86,13.91,13.93,13.950000000000001,13.950000000000001,40.09,40.45,40.67,40.88,41.07,41.24,41.43,41.6,41.93,14.83,14.02,13.74,13.49,13.26,13.05,12.83,12.63,12.23,N/A,N/A +2012,11,13,5,30,102900,101670,100470,67.02,0,11.89,12.870000000000001,13.1,13.23,13.32,13.370000000000001,13.41,13.43,13.46,42.61,43.04,43.29,43.51,43.72,43.910000000000004,44.1,44.28,44.63,14.790000000000001,13.98,13.71,13.46,13.23,13.02,12.8,12.6,12.200000000000001,N/A,N/A +2012,11,13,6,30,102920,101690,100490,60.730000000000004,0,12.82,13.93,14.21,14.36,14.450000000000001,14.52,14.56,14.59,14.63,47.71,47.81,47.89,47.95,48.01,48.06,48.11,48.160000000000004,48.26,14.84,14,13.71,13.46,13.23,13.02,12.8,12.59,12.19,N/A,N/A +2012,11,13,7,30,102950,101720,100520,64.41,0,12.42,13.48,13.74,13.89,13.99,14.06,14.11,14.15,14.19,44.410000000000004,44.81,45.050000000000004,45.27,45.47,45.660000000000004,45.84,46.02,46.36,14.65,13.82,13.530000000000001,13.280000000000001,13.040000000000001,12.83,12.61,12.41,12.01,N/A,N/A +2012,11,13,8,30,102940,101710,100520,64.09,0,12.68,13.77,14.040000000000001,14.19,14.280000000000001,14.35,14.39,14.43,14.47,44.44,44.81,45.02,45.22,45.410000000000004,45.58,45.75,45.910000000000004,46.24,14.51,13.66,13.370000000000001,13.120000000000001,12.89,12.68,12.46,12.25,11.85,N/A,N/A +2012,11,13,9,30,102970,101740,100540,62.190000000000005,0,13.16,14.33,14.63,14.8,14.91,15,15.05,15.09,15.15,46.76,47.11,47.31,47.51,47.68,47.84,48,48.15,48.45,14.5,13.63,13.34,13.08,12.84,12.63,12.41,12.21,11.8,N/A,N/A +2012,11,13,10,30,102990,101750,100550,56.9,0,14.3,15.620000000000001,15.950000000000001,16.13,16.240000000000002,16.32,16.37,16.4,16.44,52.33,52.42,52.480000000000004,52.53,52.58,52.620000000000005,52.660000000000004,52.7,52.79,14.57,13.67,13.370000000000001,13.11,12.870000000000001,12.66,12.43,12.23,11.82,N/A,N/A +2012,11,13,11,30,102990,101750,100550,56.7,0,14.22,15.52,15.84,16,16.11,16.18,16.22,16.25,16.28,52.52,52.69,52.800000000000004,52.89,52.980000000000004,53.06,53.15,53.230000000000004,53.4,14.39,13.49,13.19,12.93,12.69,12.47,12.25,12.05,11.64,N/A,N/A +2012,11,13,12,30,103000,101770,100570,57.99,0,14.07,15.33,15.63,15.790000000000001,15.89,15.96,15.99,16.02,16.04,53.19,53.410000000000004,53.54,53.660000000000004,53.78,53.88,53.99,54.09,54.300000000000004,14.26,13.36,13.06,12.8,12.56,12.35,12.120000000000001,11.92,11.51,N/A,N/A +2012,11,13,13,30,103000,101770,100570,59.74,0,13.83,15.05,15.34,15.5,15.59,15.65,15.69,15.71,15.73,52.88,53.15,53.31,53.46,53.59,53.71,53.84,53.96,54.2,14.14,13.23,12.94,12.68,12.44,12.23,12,11.8,11.39,N/A,N/A +2012,11,13,14,30,103000,101760,100570,61.03,0,13.47,14.65,14.92,15.07,15.16,15.22,15.25,15.27,15.290000000000001,52.46,52.75,52.93,53.09,53.25,53.38,53.53,53.660000000000004,53.93,14.13,13.23,12.94,12.68,12.44,12.23,12.01,11.8,11.4,N/A,N/A +2012,11,13,15,30,102990,101750,100550,61.25,0,13.19,14.32,14.58,14.72,14.81,14.870000000000001,14.89,14.91,14.92,52.75,53.02,53.18,53.33,53.480000000000004,53.6,53.74,53.870000000000005,54.13,14.1,13.22,12.93,12.68,12.43,12.22,12,11.8,11.39,N/A,N/A +2012,11,13,16,30,102950,101720,100520,58.68,0,12.08,13.05,13.27,13.38,13.450000000000001,13.49,13.51,13.52,13.52,50.06,50.29,50.44,50.57,50.69,50.800000000000004,50.92,51.03,51.25,14.120000000000001,13.27,12.98,12.73,12.5,12.290000000000001,12.07,11.870000000000001,11.46,N/A,N/A +2012,11,13,17,30,102910,101670,100480,56.76,0,10.870000000000001,11.68,11.870000000000001,11.950000000000001,12.01,12.05,12.06,12.07,12.07,49.74,49.9,49.99,50.08,50.17,50.24,50.32,50.39,50.54,14.27,13.48,13.200000000000001,12.950000000000001,12.72,12.52,12.3,12.1,11.69,N/A,N/A +2012,11,13,18,30,102860,101630,100430,54.36,0,10.08,10.82,10.98,11.06,11.11,11.14,11.16,11.17,11.17,46.49,46.53,46.56,46.58,46.6,46.62,46.63,46.64,46.68,14.67,13.91,13.64,13.4,13.17,12.97,12.75,12.55,12.14,N/A,N/A +2012,11,13,19,30,102830,101600,100410,56.92,0,9.11,9.74,9.88,9.96,10.01,10.040000000000001,10.06,10.07,10.08,43.65,43.79,43.9,44,44.08,44.160000000000004,44.230000000000004,44.300000000000004,44.45,15.06,14.35,14.09,13.85,13.620000000000001,13.42,13.200000000000001,13,12.6,N/A,N/A +2012,11,13,20,30,102760,101540,100340,50.09,0,8.07,8.58,8.700000000000001,8.76,8.8,8.82,8.84,8.85,8.86,38.19,38.26,38.33,38.38,38.44,38.480000000000004,38.53,38.57,38.660000000000004,15.540000000000001,14.870000000000001,14.620000000000001,14.39,14.17,13.97,13.75,13.55,13.15,N/A,N/A +2012,11,13,21,30,102720,101500,100310,46.6,0,7.32,7.7700000000000005,7.87,7.930000000000001,7.96,7.98,8,8.01,8.02,38.58,38.33,38.17,38.01,37.88,37.76,37.62,37.51,37.27,16.080000000000002,15.46,15.22,14.99,14.77,14.57,14.36,14.16,13.76,N/A,N/A +2012,11,13,22,30,102690,101470,100280,45.74,0,7.42,7.87,7.96,7.99,8.01,8.02,8.02,8.02,8.01,29.3,29.63,29.85,30.05,30.240000000000002,30.41,30.580000000000002,30.75,31.060000000000002,16.41,15.790000000000001,15.56,15.33,15.120000000000001,14.92,14.71,14.51,14.11,N/A,N/A +2012,11,13,23,30,102670,101450,100260,47.28,0,7.71,8.17,8.25,8.28,8.290000000000001,8.290000000000001,8.290000000000001,8.28,8.25,24.7,25.080000000000002,25.34,25.57,25.79,25.990000000000002,26.2,26.38,26.76,16.37,15.74,15.5,15.280000000000001,15.06,14.86,14.65,14.450000000000001,14.05,N/A,N/A +2012,11,14,0,30,102690,101460,100280,49.68,0,8.39,8.91,9,9.03,9.040000000000001,9.05,9.03,9.02,8.98,24.97,25.34,25.55,25.76,25.95,26.12,26.3,26.46,26.8,16.04,15.38,15.14,14.91,14.69,14.49,14.27,14.08,13.68,N/A,N/A +2012,11,14,1,30,102680,101460,100270,52.800000000000004,0,8.77,9.31,9.41,9.450000000000001,9.46,9.46,9.44,9.43,9.38,26.35,26.77,27.03,27.27,27.51,27.71,27.92,28.12,28.53,15.66,14.98,14.74,14.5,14.280000000000001,14.08,13.870000000000001,13.67,13.27,N/A,N/A +2012,11,14,2,30,102680,101460,100270,54.75,0,8.81,9.370000000000001,9.48,9.52,9.540000000000001,9.540000000000001,9.53,9.52,9.49,32.69,33.05,33.28,33.49,33.69,33.86,34.05,34.22,34.58,15.5,14.81,14.56,14.33,14.11,13.91,13.69,13.5,13.1,N/A,N/A +2012,11,14,3,30,102690,101470,100280,56.7,0,8.98,9.56,9.68,9.74,9.76,9.77,9.76,9.76,9.73,35.93,36.28,36.51,36.72,36.92,37.1,37.28,37.45,37.81,15.43,14.73,14.48,14.25,14.02,13.82,13.61,13.41,13.01,N/A,N/A +2012,11,14,4,30,102680,101450,100260,60.07,0,8.88,9.450000000000001,9.56,9.61,9.63,9.64,9.64,9.63,9.61,39.18,39.67,39.96,40.24,40.5,40.730000000000004,40.97,41.19,41.64,15.370000000000001,14.68,14.42,14.19,13.97,13.77,13.55,13.36,12.96,N/A,N/A +2012,11,14,5,30,102660,101430,100250,64.36,0,8.89,9.47,9.6,9.65,9.68,9.700000000000001,9.700000000000001,9.700000000000001,9.69,40.58,40.99,41.25,41.49,41.7,41.89,42.09,42.28,42.64,15.36,14.67,14.41,14.17,13.950000000000001,13.75,13.530000000000001,13.33,12.93,N/A,N/A +2012,11,14,6,30,102700,101480,100290,65.44,0,8.69,9.25,9.36,9.41,9.43,9.450000000000001,9.450000000000001,9.44,9.42,39.62,40.15,40.46,40.75,41.02,41.26,41.51,41.74,42.19,15.17,14.49,14.23,14,13.780000000000001,13.58,13.36,13.16,12.76,N/A,N/A +2012,11,14,7,30,102710,101480,100290,65.94,0,8.78,9.34,9.450000000000001,9.49,9.51,9.52,9.52,9.51,9.48,35.62,36.17,36.49,36.79,37.06,37.31,37.57,37.81,38.28,14.91,14.21,13.950000000000001,13.72,13.5,13.3,13.08,12.88,12.48,N/A,N/A +2012,11,14,8,30,102690,101470,100280,66.38,0,8.9,9.46,9.56,9.61,9.63,9.63,9.620000000000001,9.61,9.57,35.84,36.22,36.47,36.7,36.910000000000004,37.11,37.31,37.49,37.86,14.74,14.030000000000001,13.77,13.540000000000001,13.31,13.11,12.9,12.700000000000001,12.3,N/A,N/A +2012,11,14,9,30,102740,101510,100320,62.81,0,8.35,8.84,8.92,8.950000000000001,8.96,8.950000000000001,8.93,8.91,8.86,35.33,35.68,35.910000000000004,36.12,36.32,36.5,36.68,36.85,37.21,14.63,13.94,13.68,13.450000000000001,13.23,13.030000000000001,12.81,12.620000000000001,12.22,N/A,N/A +2012,11,14,10,30,102740,101510,100320,62.58,0,8.28,8.77,8.86,8.89,8.91,8.91,8.9,8.88,8.84,32.62,33.09,33.4,33.69,33.96,34.2,34.45,34.68,35.160000000000004,14.530000000000001,13.84,13.59,13.35,13.13,12.93,12.72,12.52,12.13,N/A,N/A +2012,11,14,11,30,102740,101510,100320,62.28,0,8.07,8.53,8.6,8.620000000000001,8.61,8.6,8.58,8.55,8.49,31.01,31.5,31.8,32.07,32.34,32.58,32.83,33.06,33.54,14.47,13.780000000000001,13.52,13.3,13.08,12.88,12.66,12.47,12.07,N/A,N/A +2012,11,14,12,30,102760,101530,100340,62.43,0,8.26,8.73,8.8,8.81,8.81,8.790000000000001,8.76,8.73,8.66,31.75,32.2,32.480000000000004,32.75,33,33.22,33.47,33.69,34.160000000000004,14.24,13.540000000000001,13.290000000000001,13.05,12.83,12.64,12.43,12.23,11.84,N/A,N/A +2012,11,14,13,30,102790,101560,100360,60.85,0,8.06,8.51,8.57,8.59,8.58,8.57,8.540000000000001,8.51,8.44,30.63,30.98,31.23,31.46,31.69,31.89,32.1,32.31,32.72,14.15,13.450000000000001,13.19,12.97,12.75,12.55,12.34,12.15,11.76,N/A,N/A +2012,11,14,14,30,102800,101570,100370,60.96,0,8.31,8.77,8.84,8.85,8.84,8.83,8.790000000000001,8.76,8.68,30.82,31.240000000000002,31.490000000000002,31.73,31.95,32.160000000000004,32.38,32.58,33,13.92,13.200000000000001,12.950000000000001,12.72,12.5,12.3,12.09,11.9,11.51,N/A,N/A +2012,11,14,15,30,102820,101580,100390,58.61,0,7.94,8.39,8.46,8.48,8.48,8.47,8.46,8.44,8.38,31.560000000000002,31.94,32.18,32.39,32.59,32.77,32.97,33.15,33.53,13.9,13.19,12.93,12.71,12.48,12.290000000000001,12.08,11.89,11.5,N/A,N/A +2012,11,14,16,30,102800,101570,100370,56.410000000000004,0,7.48,7.87,7.930000000000001,7.95,7.95,7.94,7.92,7.9,7.84,23.1,23.36,23.52,23.67,23.81,23.95,24.080000000000002,24.21,24.47,14.07,13.38,13.13,12.9,12.68,12.49,12.280000000000001,12.09,11.700000000000001,N/A,N/A +2012,11,14,17,30,102770,101540,100340,51.95,0,7.18,7.57,7.640000000000001,7.66,7.66,7.66,7.640000000000001,7.63,7.59,19.400000000000002,19.53,19.61,19.68,19.76,19.82,19.89,19.96,20.09,14.530000000000001,13.870000000000001,13.620000000000001,13.4,13.18,12.98,12.77,12.58,12.19,N/A,N/A +2012,11,14,18,30,102730,101510,100310,49.63,0,6.63,6.99,7.07,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.15,7.140000000000001,17.1,17.14,17.16,17.17,17.18,17.19,17.21,17.22,17.240000000000002,15,14.370000000000001,14.13,13.9,13.69,13.49,13.280000000000001,13.08,12.68,N/A,N/A +2012,11,14,19,30,102710,101490,100300,44.29,0,5.73,6.07,6.140000000000001,6.19,6.22,6.24,6.26,6.28,6.3,13.06,13.18,13.26,13.34,13.4,13.46,13.530000000000001,13.58,13.68,15.85,15.27,15.040000000000001,14.82,14.61,14.41,14.200000000000001,14.01,13.61,N/A,N/A +2012,11,14,20,30,102660,101440,100260,41.230000000000004,0,6.2,6.5600000000000005,6.640000000000001,6.67,6.7,6.72,6.73,6.74,6.75,7.01,7.19,7.3,7.390000000000001,7.48,7.55,7.640000000000001,7.71,7.86,16.6,16.03,15.81,15.59,15.38,15.18,14.98,14.780000000000001,14.38,N/A,N/A +2012,11,14,21,30,102630,101410,100230,39.28,0,6.44,6.82,6.890000000000001,6.93,6.95,6.96,6.96,6.97,6.96,7.91,7.88,7.86,7.84,7.83,7.82,7.82,7.8100000000000005,7.82,17.18,16.63,16.41,16.2,15.99,15.790000000000001,15.59,15.39,15,N/A,N/A +2012,11,14,22,30,102600,101380,100210,40.18,0,6.3,6.66,6.73,6.76,6.78,6.78,6.79,6.79,6.78,13.73,13.56,13.44,13.33,13.22,13.14,13.05,12.97,12.81,17.45,16.91,16.69,16.48,16.27,16.080000000000002,15.870000000000001,15.67,15.280000000000001,N/A,N/A +2012,11,14,23,30,102620,101400,100220,43.94,0,6.32,6.67,6.74,6.76,6.78,6.78,6.78,6.78,6.76,12.09,12.49,12.71,12.92,13.120000000000001,13.290000000000001,13.48,13.65,13.98,17.45,16.91,16.69,16.47,16.26,16.06,15.85,15.66,15.26,N/A,N/A +2012,11,15,0,30,102610,101400,100220,46.730000000000004,0,7.08,7.46,7.53,7.54,7.54,7.53,7.51,7.49,7.44,18.34,18.36,18.37,18.37,18.37,18.37,18.38,18.38,18.38,17.11,16.54,16.32,16.1,15.89,15.69,15.48,15.290000000000001,14.89,N/A,N/A +2012,11,15,1,30,102620,101400,100220,48.21,0,7.0200000000000005,7.390000000000001,7.45,7.46,7.46,7.45,7.43,7.41,7.3500000000000005,21.75,21.92,22,22.07,22.13,22.19,22.26,22.32,22.46,16.66,16.080000000000002,15.84,15.63,15.41,15.22,15.01,14.81,14.42,N/A,N/A +2012,11,15,2,30,102620,101410,100220,50.25,0,6.71,7.0600000000000005,7.11,7.12,7.12,7.11,7.09,7.07,7.01,26.23,26.39,26.5,26.59,26.69,26.77,26.86,26.93,27.09,16.41,15.83,15.6,15.38,15.17,14.97,14.76,14.57,14.17,N/A,N/A +2012,11,15,3,30,102600,101380,100190,53.620000000000005,0,6.97,7.34,7.390000000000001,7.4,7.390000000000001,7.390000000000001,7.36,7.34,7.28,27.12,27.35,27.490000000000002,27.63,27.77,27.88,28.01,28.13,28.37,16.11,15.5,15.27,15.05,14.84,14.64,14.43,14.24,13.84,N/A,N/A +2012,11,15,4,30,102590,101370,100180,53.19,0,6.79,7.15,7.2,7.21,7.21,7.2,7.18,7.16,7.11,37.9,38.26,38.49,38.71,38.93,39.11,39.31,39.5,39.88,16.14,15.55,15.32,15.1,14.88,14.69,14.48,14.280000000000001,13.89,N/A,N/A +2012,11,15,5,30,102550,101340,100150,51.83,0,6.75,7.09,7.140000000000001,7.140000000000001,7.140000000000001,7.12,7.1000000000000005,7.08,7.0200000000000005,35.54,35.94,36.18,36.42,36.64,36.84,37.06,37.26,37.68,16.16,15.57,15.34,15.120000000000001,14.91,14.71,14.5,14.31,13.92,N/A,N/A +2012,11,15,6,30,102530,101320,100130,59.33,0,6.25,6.57,6.61,6.62,6.61,6.6000000000000005,6.58,6.5600000000000005,6.51,38.46,39.03,39.33,39.62,39.89,40.14,40.4,40.65,41.15,16.05,15.5,15.280000000000001,15.07,14.85,14.66,14.450000000000001,14.26,13.870000000000001,N/A,N/A +2012,11,15,7,30,102540,101320,100140,61.120000000000005,0,6.5200000000000005,6.8500000000000005,6.9,6.91,6.91,6.9,6.88,6.86,6.8100000000000005,44.230000000000004,44.84,45.19,45.53,45.85,46.13,46.45,46.730000000000004,47.31,15.93,15.370000000000001,15.14,14.92,14.71,14.52,14.31,14.120000000000001,13.73,N/A,N/A +2012,11,15,8,30,102520,101300,100120,63.06,0,6.43,6.76,6.8,6.8100000000000005,6.8100000000000005,6.8,6.78,6.76,6.7,44.58,45.050000000000004,45.34,45.62,45.88,46.11,46.36,46.59,47.07,15.88,15.32,15.09,14.870000000000001,14.66,14.47,14.26,14.07,13.67,N/A,N/A +2012,11,15,9,30,102520,101300,100120,61.32,0,6.37,6.69,6.73,6.74,6.73,6.72,6.7,6.68,6.62,44.660000000000004,45.24,45.63,46,46.35,46.65,46.980000000000004,47.29,47.92,15.860000000000001,15.3,15.08,14.870000000000001,14.65,14.46,14.25,14.06,13.67,N/A,N/A +2012,11,15,10,30,102520,101300,100120,61.61,0,6.08,6.37,6.4,6.41,6.390000000000001,6.38,6.36,6.34,6.28,47.65,48.27,48.65,49,49.34,49.64,49.95,50.24,50.85,15.870000000000001,15.32,15.1,14.88,14.67,14.48,14.27,14.08,13.68,N/A,N/A +2012,11,15,11,30,102530,101320,100130,62.07,0,5.97,6.25,6.28,6.28,6.2700000000000005,6.25,6.23,6.2,6.140000000000001,47.84,48.32,48.59,48.85,49.09,49.31,49.56,49.78,50.24,15.83,15.27,15.05,14.83,14.620000000000001,14.43,14.22,14.030000000000001,13.63,N/A,N/A +2012,11,15,12,30,102540,101320,100130,64.18,0,6.44,6.76,6.79,6.8,6.78,6.7700000000000005,6.74,6.71,6.65,46.18,46.71,47.03,47.33,47.62,47.88,48.15,48.410000000000004,48.93,15.67,15.1,14.88,14.66,14.450000000000001,14.26,14.05,13.85,13.46,N/A,N/A +2012,11,15,13,30,102540,101320,100130,65.43,0,6.83,7.17,7.22,7.22,7.21,7.19,7.16,7.13,7.0600000000000005,43.52,43.95,44.230000000000004,44.5,44.76,44.980000000000004,45.230000000000004,45.45,45.910000000000004,15.46,14.88,14.65,14.43,14.22,14.030000000000001,13.82,13.63,13.24,N/A,N/A +2012,11,15,14,30,102550,101330,100140,66.07000000000001,0,6.97,7.33,7.37,7.37,7.3500000000000005,7.33,7.3,7.26,7.17,40.410000000000004,40.77,41,41.21,41.42,41.6,41.800000000000004,41.980000000000004,42.38,15.3,14.71,14.47,14.26,14.040000000000001,13.85,13.64,13.450000000000001,13.06,N/A,N/A +2012,11,15,15,30,102570,101350,100160,64.13,0,6.7700000000000005,7.12,7.16,7.17,7.16,7.140000000000001,7.12,7.09,7.0200000000000005,46.980000000000004,47.29,47.49,47.67,47.85,48.01,48.17,48.32,48.64,15.25,14.66,14.43,14.21,14,13.8,13.59,13.41,13.01,N/A,N/A +2012,11,15,16,30,102560,101340,100160,63.07,0,6.49,6.8100000000000005,6.8500000000000005,6.8500000000000005,6.84,6.82,6.79,6.76,6.69,45.69,45.94,46.12,46.28,46.42,46.56,46.71,46.85,47.12,15.200000000000001,14.61,14.38,14.16,13.950000000000001,13.76,13.55,13.36,12.97,N/A,N/A +2012,11,15,17,30,102550,101330,100140,59.81,0,5.92,6.2,6.23,6.23,6.22,6.2,6.18,6.16,6.09,44.160000000000004,44.4,44.53,44.64,44.76,44.86,44.97,45.07,45.27,15.370000000000001,14.81,14.58,14.36,14.15,13.96,13.75,13.56,13.17,N/A,N/A +2012,11,15,18,30,102510,101290,100110,59.07,0,5.5600000000000005,5.8,5.83,5.83,5.8100000000000005,5.8,5.7700000000000005,5.75,5.69,36.99,37.07,37.160000000000004,37.230000000000004,37.300000000000004,37.37,37.43,37.49,37.59,15.49,14.93,14.71,14.5,14.290000000000001,14.1,13.89,13.700000000000001,13.31,N/A,N/A +2012,11,15,19,30,102510,101290,100110,48.5,0,4.57,4.78,4.8,4.8100000000000005,4.8100000000000005,4.8,4.79,4.78,4.76,39.910000000000004,39.9,39.87,39.83,39.800000000000004,39.77,39.730000000000004,39.69,39.61,16.01,15.49,15.27,15.07,14.86,14.67,14.46,14.27,13.88,N/A,N/A +2012,11,15,20,30,102470,101250,100070,47.480000000000004,0,4.17,4.36,4.39,4.4,4.41,4.41,4.41,4.41,4.4,39.38,39.19,39.06,38.95,38.82,38.71,38.58,38.45,38.17,16.4,15.9,15.69,15.48,15.280000000000001,15.09,14.88,14.69,14.3,N/A,N/A +2012,11,15,21,30,102450,101230,100050,46.76,0,3.69,3.85,3.88,3.89,3.89,3.89,3.89,3.89,3.89,51.730000000000004,51.14,50.77,50.42,50.08,49.76,49.410000000000004,49.09,48.39,16.79,16.31,16.1,15.9,15.69,15.5,15.3,15.1,14.71,N/A,N/A +2012,11,15,22,30,102440,101220,100050,46.13,0,3.45,3.61,3.64,3.66,3.67,3.69,3.69,3.7,3.71,55.99,55.300000000000004,54.88,54.49,54.11,53.76,53.38,53.03,52.28,17.150000000000002,16.69,16.490000000000002,16.28,16.080000000000002,15.89,15.68,15.5,15.1,N/A,N/A +2012,11,15,23,30,102450,101240,100060,45.37,0,3.73,3.91,3.95,3.97,3.99,4,4.0200000000000005,4.03,4.05,60.36,59.28,58.550000000000004,57.88,57.24,56.67,56.050000000000004,55.480000000000004,54.34,17.580000000000002,17.13,16.93,16.73,16.52,16.34,16.13,15.94,15.55,N/A,N/A +2012,11,16,0,30,102450,101240,100070,39.46,0,4.7,4.93,4.95,4.96,4.95,4.94,4.93,4.91,4.87,32.69,32.52,32.53,32.55,32.58,32.6,32.62,32.65,32.71,18.330000000000002,17.89,17.69,17.48,17.28,17.09,16.88,16.69,16.29,N/A,N/A +2012,11,16,1,30,102480,101270,100100,43.85,0,5.87,6.15,6.18,6.17,6.16,6.13,6.11,6.08,6.01,31.27,31.810000000000002,32.14,32.44,32.72,32.99,33.26,33.5,34.04,17.82,17.35,17.14,16.94,16.73,16.54,16.330000000000002,16.15,15.75,N/A,N/A +2012,11,16,2,30,102500,101280,100100,47.58,0,6.3,6.61,6.65,6.65,6.63,6.62,6.59,6.5600000000000005,6.48,30.150000000000002,30.59,30.87,31.13,31.37,31.6,31.84,32.06,32.53,17.36,16.86,16.65,16.44,16.23,16.04,15.84,15.65,15.26,N/A,N/A +2012,11,16,3,30,102490,101270,100100,49.88,0,6.18,6.5,6.54,6.55,6.54,6.53,6.51,6.49,6.43,35.01,35.44,35.68,35.92,36.13,36.33,36.54,36.730000000000004,37.14,17.14,16.63,16.42,16.21,16,15.81,15.610000000000001,15.42,15.030000000000001,N/A,N/A +2012,11,16,4,30,102470,101260,100080,53.17,0,6.42,6.76,6.8100000000000005,6.82,6.82,6.8100000000000005,6.78,6.76,6.7,33.7,34.09,34.33,34.550000000000004,34.76,34.94,35.14,35.33,35.7,16.97,16.45,16.23,16.02,15.82,15.620000000000001,15.42,15.23,14.84,N/A,N/A +2012,11,16,5,30,102500,101280,100100,56.5,0,6.69,7.07,7.140000000000001,7.16,7.17,7.17,7.15,7.140000000000001,7.1000000000000005,40.51,40.84,41.06,41.26,41.45,41.62,41.800000000000004,41.97,42.31,16.85,16.32,16.1,15.88,15.67,15.48,15.27,15.08,14.68,N/A,N/A +2012,11,16,6,30,102500,101290,100110,59.83,0,7.16,7.57,7.640000000000001,7.65,7.66,7.65,7.63,7.61,7.5600000000000005,40.35,40.800000000000004,41.08,41.35,41.6,41.83,42.07,42.29,42.74,16.57,16.02,15.8,15.58,15.370000000000001,15.18,14.97,14.780000000000001,14.39,N/A,N/A +2012,11,16,7,30,102520,101300,100120,61.51,0,7.07,7.46,7.5200000000000005,7.54,7.54,7.53,7.51,7.49,7.43,38.480000000000004,38.83,39.06,39.28,39.480000000000004,39.67,39.85,40.03,40.39,16.32,15.77,15.55,15.33,15.120000000000001,14.93,14.72,14.530000000000001,14.14,N/A,N/A +2012,11,16,8,30,102520,101300,100120,62.09,0,7.43,7.86,7.930000000000001,7.95,7.95,7.94,7.92,7.9,7.84,37.97,38.33,38.550000000000004,38.75,38.94,39.11,39.300000000000004,39.47,39.82,16.12,15.56,15.33,15.11,14.9,14.71,14.5,14.31,13.92,N/A,N/A +2012,11,16,9,30,102530,101310,100120,63.96,0,7.3500000000000005,7.76,7.83,7.8500000000000005,7.84,7.83,7.8100000000000005,7.79,7.72,37.29,37.67,37.910000000000004,38.13,38.35,38.54,38.74,38.94,39.33,15.81,15.23,15,14.780000000000001,14.57,14.38,14.17,13.98,13.6,N/A,N/A +2012,11,16,10,30,102540,101320,100130,66.97,0,7.8500000000000005,8.31,8.39,8.41,8.41,8.4,8.370000000000001,8.35,8.290000000000001,36,36.4,36.65,36.88,37.1,37.300000000000004,37.51,37.71,38.12,15.530000000000001,14.92,14.69,14.47,14.26,14.06,13.86,13.67,13.280000000000001,N/A,N/A +2012,11,16,11,30,102580,101350,100170,67.9,0,8.05,8.52,8.6,8.63,8.63,8.620000000000001,8.6,8.58,8.51,36.22,36.62,36.88,37.12,37.34,37.550000000000004,37.77,37.97,38.39,15.14,14.51,14.27,14.06,13.84,13.65,13.44,13.25,12.86,N/A,N/A +2012,11,16,12,30,102590,101360,100170,70.12,0,8.46,8.98,9.07,9.1,9.1,9.09,9.07,9.05,8.98,33.62,33.980000000000004,34.21,34.43,34.63,34.82,35.02,35.21,35.61,14.700000000000001,14.05,13.8,13.58,13.370000000000001,13.17,12.97,12.780000000000001,12.4,N/A,N/A +2012,11,16,13,30,102600,101380,100180,69.5,0,8.46,8.96,9.05,9.07,9.07,9.05,9.02,8.99,8.91,30.47,30.830000000000002,31.060000000000002,31.28,31.490000000000002,31.69,31.89,32.09,32.5,14.34,13.67,13.43,13.200000000000001,12.99,12.8,12.59,12.4,12.030000000000001,N/A,N/A +2012,11,16,14,30,102640,101410,100210,70.03,0,8.42,8.91,8.99,9.01,9.01,9,8.97,8.94,8.86,30.22,30.6,30.84,31.07,31.29,31.490000000000002,31.71,31.91,32.36,14.1,13.43,13.18,12.96,12.75,12.55,12.35,12.16,11.78,N/A,N/A +2012,11,16,15,30,102630,101400,100210,71.32000000000001,0,8.47,8.98,9.07,9.09,9.1,9.09,9.07,9.040000000000001,8.98,30.04,30.37,30.580000000000002,30.76,30.95,31.11,31.3,31.470000000000002,31.82,14.030000000000001,13.36,13.11,12.89,12.67,12.48,12.280000000000001,12.09,11.71,N/A,N/A +2012,11,16,16,30,102640,101410,100220,69.97,0,7.8100000000000005,8.28,8.370000000000001,8.4,8.41,8.42,8.41,8.4,8.36,33.5,33.76,33.94,34.1,34.25,34.38,34.53,34.660000000000004,34.93,14.19,13.540000000000001,13.3,13.08,12.86,12.67,12.46,12.27,11.88,N/A,N/A +2012,11,16,17,30,102620,101400,100210,67.42,0,7.44,7.88,7.97,8,8.02,8.03,8.03,8.02,8.01,29.43,29.650000000000002,29.8,29.93,30.060000000000002,30.17,30.29,30.39,30.62,14.55,13.92,13.68,13.46,13.24,13.05,12.84,12.65,12.25,N/A,N/A +2012,11,16,18,30,102610,101380,100190,62.78,0,6.58,6.97,7.0600000000000005,7.1000000000000005,7.13,7.15,7.17,7.18,7.19,31.240000000000002,31.32,31.37,31.41,31.44,31.470000000000002,31.5,31.53,31.580000000000002,15.1,14.51,14.280000000000001,14.06,13.84,13.65,13.44,13.25,12.85,N/A,N/A +2012,11,16,19,30,102580,101360,100180,59.33,0,5.94,6.3100000000000005,6.4,6.45,6.49,6.5200000000000005,6.54,6.5600000000000005,6.6000000000000005,33.83,33.58,33.410000000000004,33.25,33.09,32.94,32.79,32.65,32.35,15.75,15.21,14.98,14.77,14.56,14.36,14.16,13.96,13.57,N/A,N/A +2012,11,16,20,30,102560,101340,100160,56.08,0,5.33,5.66,5.75,5.8100000000000005,5.8500000000000005,5.89,5.92,5.95,6,36.980000000000004,36.39,36.04,35.72,35.4,35.12,34.83,34.56,34.03,16.47,15.96,15.74,15.530000000000001,15.32,15.13,14.92,14.73,14.34,N/A,N/A +2012,11,16,21,30,102540,101320,100140,54.660000000000004,0,5.25,5.57,5.64,5.69,5.72,5.75,5.7700000000000005,5.79,5.83,43.480000000000004,42.83,42.410000000000004,42.02,41.660000000000004,41.33,40.97,40.660000000000004,40.02,17.09,16.61,16.4,16.19,15.98,15.790000000000001,15.58,15.39,15,N/A,N/A +2012,11,16,22,30,102530,101320,100140,52.94,0,5.54,5.9,5.98,6.04,6.09,6.12,6.15,6.17,6.22,39.44,38.84,38.480000000000004,38.15,37.86,37.6,37.34,37.11,36.660000000000004,17.68,17.21,17.01,16.8,16.59,16.4,16.19,16,15.6,N/A,N/A +2012,11,16,23,30,102540,101330,100150,51.660000000000004,0,5.87,6.24,6.32,6.37,6.41,6.43,6.45,6.47,6.49,36.5,35.96,35.72,35.5,35.31,35.13,34.96,34.800000000000004,34.49,17.93,17.46,17.25,17.05,16.84,16.65,16.44,16.240000000000002,15.85,N/A,N/A +2012,11,17,0,30,102570,101360,100180,52.21,0,7.07,7.48,7.54,7.5600000000000005,7.5600000000000005,7.5600000000000005,7.54,7.53,7.48,22.330000000000002,22.76,23.02,23.26,23.490000000000002,23.71,23.93,24.14,24.57,17.64,17.14,16.93,16.72,16.51,16.32,16.11,15.92,15.530000000000001,N/A,N/A +2012,11,17,1,30,102600,101380,100210,56.26,0,7.54,8.02,8.11,8.14,8.15,8.16,8.15,8.14,8.1,27.11,27.38,27.57,27.75,27.91,28.060000000000002,28.21,28.35,28.64,17.28,16.76,16.54,16.330000000000002,16.12,15.92,15.71,15.52,15.120000000000001,N/A,N/A +2012,11,17,2,30,102620,101400,100220,59.54,0,8.14,8.68,8.78,8.83,8.84,8.85,8.85,8.84,8.81,29,29.51,29.82,30.11,30.39,30.64,30.900000000000002,31.150000000000002,31.64,16.96,16.41,16.19,15.98,15.76,15.57,15.36,15.17,14.77,N/A,N/A +2012,11,17,3,30,102630,101410,100230,62.13,0,8.41,8.98,9.09,9.14,9.16,9.16,9.16,9.15,9.11,34.75,35.09,35.29,35.480000000000004,35.660000000000004,35.82,35.99,36.15,36.480000000000004,16.61,16.04,15.81,15.6,15.38,15.19,14.98,14.780000000000001,14.39,N/A,N/A +2012,11,17,4,30,102620,101400,100220,63.6,0,8.07,8.59,8.69,8.73,8.74,8.74,8.74,8.73,8.69,38.2,38.71,39.02,39.31,39.58,39.83,40.1,40.34,40.85,16.57,16,15.780000000000001,15.56,15.35,15.15,14.94,14.75,14.36,N/A,N/A +2012,11,17,5,30,102630,101410,100230,66.15,0,7.930000000000001,8.45,8.56,8.61,8.63,8.65,8.66,8.66,8.64,44.35,44.85,45.14,45.410000000000004,45.660000000000004,45.89,46.13,46.34,46.79,16.580000000000002,16.02,15.790000000000001,15.57,15.36,15.17,14.96,14.76,14.370000000000001,N/A,N/A +2012,11,17,6,30,102640,101420,100240,64.28,0,7.6000000000000005,8.09,8.19,8.24,8.26,8.27,8.27,8.27,8.25,47.38,47.65,47.81,47.96,48.1,48.22,48.35,48.47,48.71,16.53,15.99,15.77,15.55,15.34,15.15,14.94,14.74,14.35,N/A,N/A +2012,11,17,7,30,102660,101440,100260,63.27,0,7.99,8.53,8.64,8.69,8.71,8.73,8.72,8.72,8.700000000000001,48.56,48.94,49.18,49.410000000000004,49.620000000000005,49.81,50.02,50.2,50.59,16.42,15.870000000000001,15.65,15.43,15.22,15.030000000000001,14.82,14.63,14.23,N/A,N/A +2012,11,17,8,30,102650,101440,100250,63.21,0,7.640000000000001,8.14,8.23,8.27,8.290000000000001,8.3,8.3,8.3,8.27,51.47,51.870000000000005,52.120000000000005,52.35,52.550000000000004,52.74,52.94,53.13,53.5,16.39,15.84,15.620000000000001,15.41,15.200000000000001,15,14.790000000000001,14.6,14.200000000000001,N/A,N/A +2012,11,17,9,30,102650,101430,100250,60.92,0,7.43,7.9,7.98,8.02,8.040000000000001,8.040000000000001,8.040000000000001,8.03,8,50.85,51.17,51.370000000000005,51.550000000000004,51.72,51.870000000000005,52.04,52.19,52.49,16.35,15.81,15.59,15.38,15.17,14.97,14.76,14.57,14.18,N/A,N/A +2012,11,17,10,30,102670,101450,100260,61.54,0,6.97,7.38,7.45,7.48,7.49,7.49,7.49,7.48,7.45,52.33,52.76,53.03,53.27,53.51,53.71,53.94,54.14,54.57,16.2,15.66,15.44,15.23,15.02,14.83,14.620000000000001,14.43,14.030000000000001,N/A,N/A +2012,11,17,11,30,102660,101450,100260,65.25,0,6.73,7.11,7.18,7.21,7.22,7.22,7.21,7.21,7.18,51.89,52.410000000000004,52.72,53.01,53.28,53.52,53.79,54.03,54.53,16.09,15.56,15.34,15.13,14.92,14.72,14.51,14.32,13.93,N/A,N/A +2012,11,17,12,30,102690,101470,100290,67.5,0,6.48,6.8500000000000005,6.91,6.93,6.94,6.94,6.93,6.92,6.88,51.52,52.19,52.59,52.97,53.33,53.64,53.99,54.31,54.97,16.080000000000002,15.55,15.33,15.120000000000001,14.91,14.71,14.51,14.31,13.92,N/A,N/A +2012,11,17,13,30,102690,101470,100290,68.8,0,6.41,6.76,6.8100000000000005,6.83,6.84,6.83,6.82,6.8100000000000005,6.78,48.980000000000004,49.74,50.2,50.63,51.03,51.4,51.79,52.14,52.870000000000005,16.03,15.5,15.280000000000001,15.07,14.86,14.67,14.46,14.27,13.88,N/A,N/A +2012,11,17,14,30,102720,101500,100320,70.69,0,6.74,7.12,7.18,7.21,7.21,7.21,7.2,7.19,7.15,49.74,50.58,51.09,51.57,52.02,52.42,52.85,53.24,54.03,16.01,15.47,15.25,15.030000000000001,14.82,14.63,14.42,14.23,13.84,N/A,N/A +2012,11,17,15,30,102740,101520,100330,72.2,0,6.5200000000000005,6.88,6.93,6.95,6.95,6.95,6.93,6.92,6.88,49.57,50.53,51.11,51.64,52.15,52.61,53.1,53.550000000000004,54.47,15.98,15.44,15.22,15.01,14.8,14.61,14.4,14.21,13.82,N/A,N/A +2012,11,17,16,30,102730,101510,100320,72.13,0,6.11,6.42,6.47,6.48,6.48,6.47,6.45,6.44,6.4,46.980000000000004,47.95,48.52,49.050000000000004,49.56,50.02,50.52,50.980000000000004,51.93,15.97,15.44,15.22,15.02,14.81,14.620000000000001,14.41,14.22,13.83,N/A,N/A +2012,11,17,17,30,102720,101500,100310,72.55,0,5.66,5.95,5.99,6.01,6.01,6.01,6,5.99,5.96,46.74,47.75,48.36,48.92,49.47,49.96,50.480000000000004,50.96,51.96,16.15,15.64,15.42,15.21,15.01,14.82,14.61,14.42,14.030000000000001,N/A,N/A +2012,11,17,18,30,102710,101490,100310,71.59,0,5.28,5.53,5.57,5.58,5.58,5.57,5.5600000000000005,5.55,5.51,48.14,49.01,49.52,50.01,50.47,50.88,51.33,51.75,52.6,16.3,15.8,15.59,15.38,15.18,14.99,14.780000000000001,14.59,14.200000000000001,N/A,N/A +2012,11,17,19,30,102700,101480,100300,67.65,0,4.79,5.01,5.04,5.05,5.05,5.05,5.04,5.03,5.01,49.63,50.27,50.660000000000004,51.02,51.38,51.7,52.06,52.39,53.1,16.51,16.03,15.82,15.610000000000001,15.41,15.22,15.01,14.82,14.43,N/A,N/A +2012,11,17,20,30,102660,101440,100260,63.02,0,4.0200000000000005,4.2,4.23,4.24,4.24,4.25,4.24,4.24,4.23,52.32,52.67,52.85,53.02,53.18,53.33,53.51,53.660000000000004,54.02,16.84,16.37,16.17,15.97,15.76,15.57,15.370000000000001,15.18,14.790000000000001,N/A,N/A +2012,11,17,21,30,102650,101430,100250,58.9,0,3.83,4.01,4.04,4.0600000000000005,4.07,4.07,4.07,4.07,4.07,69.72,69.83,69.84,69.84,69.84,69.84,69.84,69.85000000000001,69.86,17.26,16.82,16.62,16.43,16.22,16.04,15.84,15.65,15.27,N/A,N/A +2012,11,17,22,30,102620,101410,100230,55.25,0,3.75,3.92,3.96,3.97,3.98,3.98,3.98,3.98,3.99,89.08,88.75,88.52,88.29,88.05,87.82000000000001,87.53,87.25,86.55,17.68,17.26,17.07,16.87,16.67,16.490000000000002,16.3,16.12,15.75,N/A,N/A +2012,11,17,23,30,102610,101400,100220,51.800000000000004,0,3.24,3.4,3.42,3.44,3.45,3.46,3.46,3.47,3.48,74.84,74.41,74.14,73.87,73.61,73.36,73.08,72.82000000000001,72.2,18.1,17.69,17.5,17.3,17.1,16.92,16.72,16.53,16.14,N/A,N/A +2012,11,18,0,30,102610,101400,100220,52.32,0,3.37,3.5500000000000003,3.58,3.6,3.62,3.63,3.64,3.65,3.66,61.730000000000004,61.64,61.56,61.47,61.38,61.31,61.22,61.13,60.93,18.36,17.96,17.77,17.57,17.37,17.18,16.98,16.79,16.4,N/A,N/A +2012,11,18,1,30,102590,101390,100210,53.21,0,3.93,4.16,4.21,4.25,4.2700000000000005,4.29,4.3100000000000005,4.32,4.3500000000000005,53.04,53.17,53.24,53.28,53.33,53.38,53.410000000000004,53.44,53.51,18.54,18.14,17.95,17.75,17.55,17.36,17.16,16.97,16.580000000000002,N/A,N/A +2012,11,18,2,30,102590,101380,100210,52.300000000000004,0,4.93,5.24,5.3,5.34,5.37,5.39,5.4,5.41,5.43,55.53,55.63,55.67,55.71,55.75,55.78,55.82,55.85,55.910000000000004,18.78,18.37,18.18,17.98,17.78,17.6,17.39,17.2,16.81,N/A,N/A +2012,11,18,3,30,102580,101380,100210,49.06,0,5.68,6.0600000000000005,6.13,6.17,6.2,6.21,6.22,6.23,6.23,51.27,51.79,52.15,52.49,52.83,53.13,53.44,53.730000000000004,54.32,19.06,18.66,18.47,18.27,18.07,17.88,17.68,17.490000000000002,17.09,N/A,N/A +2012,11,18,4,30,102570,101360,100190,54.81,0,5.67,5.97,6.01,6.0200000000000005,6.01,6,5.98,5.96,5.91,39.25,40.18,40.75,41.300000000000004,41.84,42.34,42.910000000000004,43.44,44.64,18.400000000000002,17.97,17.78,17.580000000000002,17.38,17.2,17,16.81,16.43,N/A,N/A +2012,11,18,5,30,102550,101350,100180,51.410000000000004,0,5.96,6.36,6.45,6.49,6.53,6.55,6.5600000000000005,6.58,6.59,67.65,68.13,68.45,68.74,69.02,69.27,69.53,69.78,70.27,19,18.6,18.41,18.21,18.01,17.82,17.61,17.42,17.03,N/A,N/A +2012,11,18,6,30,102540,101340,100160,53.36,0,6.91,7.38,7.48,7.53,7.55,7.57,7.57,7.57,7.5600000000000005,77.45,77.63,77.74,77.84,77.92,78.01,78.09,78.16,78.32000000000001,18.85,18.43,18.240000000000002,18.04,17.830000000000002,17.64,17.44,17.25,16.86,N/A,N/A +2012,11,18,7,30,102560,101350,100180,55.550000000000004,0,7.04,7.53,7.640000000000001,7.68,7.72,7.73,7.74,7.74,7.73,82.15,82.37,82.48,82.59,82.68,82.77,82.86,82.94,83.10000000000001,18.650000000000002,18.22,18.02,17.82,17.62,17.43,17.22,17.03,16.64,N/A,N/A +2012,11,18,8,30,102540,101330,100160,57.58,0,6.61,7.0600000000000005,7.15,7.2,7.22,7.24,7.25,7.25,7.25,84.64,84.85000000000001,84.99,85.12,85.25,85.37,85.49,85.60000000000001,85.82000000000001,18.51,18.080000000000002,17.88,17.67,17.47,17.28,17.080000000000002,16.89,16.490000000000002,N/A,N/A +2012,11,18,9,30,102530,101320,100150,58.910000000000004,0,6.18,6.58,6.66,6.7,6.72,6.74,6.74,6.74,6.74,86.4,86.55,86.65,86.75,86.84,86.92,87.01,87.09,87.26,18.43,18,17.81,17.6,17.400000000000002,17.21,17.01,16.82,16.42,N/A,N/A +2012,11,18,10,30,102540,101330,100160,59.050000000000004,0,6.0600000000000005,6.44,6.5200000000000005,6.55,6.5600000000000005,6.58,6.58,6.57,6.5600000000000005,90.21000000000001,90.35000000000001,90.43,90.52,90.60000000000001,90.68,90.77,90.85000000000001,91.03,18.47,18.04,17.84,17.64,17.43,17.240000000000002,17.04,16.85,16.45,N/A,N/A +2012,11,18,11,30,102530,101330,100160,60.15,0,6.19,6.58,6.66,6.7,6.72,6.74,6.74,6.75,6.74,89.24,89.45,89.57000000000001,89.7,89.8,89.9,90,90.10000000000001,90.3,18.41,17.98,17.78,17.580000000000002,17.38,17.19,16.98,16.79,16.4,N/A,N/A +2012,11,18,12,30,102540,101330,100160,61.34,0,5.86,6.23,6.3100000000000005,6.3500000000000005,6.38,6.4,6.41,6.41,6.42,90.71000000000001,90.78,90.85000000000001,90.92,91,91.07000000000001,91.15,91.22,91.39,18.400000000000002,17.97,17.77,17.57,17.37,17.18,16.97,16.78,16.39,N/A,N/A +2012,11,18,13,30,102540,101330,100160,59.730000000000004,0,5.14,5.44,5.51,5.54,5.5600000000000005,5.58,5.58,5.59,5.6000000000000005,101.84,101.01,100.55,100.15,99.78,99.45,99.12,98.81,98.24000000000001,18.47,18.05,17.85,17.650000000000002,17.45,17.26,17.06,16.87,16.47,N/A,N/A +2012,11,18,14,30,102560,101360,100180,61.730000000000004,0,5.09,5.4,5.48,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,5.62,94.82000000000001,94.9,94.88,94.83,94.78,94.74,94.71000000000001,94.67,94.63,18.5,18.09,17.900000000000002,17.7,17.490000000000002,17.3,17.1,16.91,16.51,N/A,N/A +2012,11,18,15,30,102570,101360,100190,64.01,0,5.07,5.32,5.36,5.36,5.36,5.36,5.3500000000000005,5.34,5.32,91.18,91.73,92.01,92.24,92.46000000000001,92.66,92.89,93.10000000000001,93.54,18.45,18.04,17.84,17.64,17.45,17.26,17.06,16.87,16.48,N/A,N/A +2012,11,18,16,30,102550,101350,100180,62.95,0,4.3500000000000005,4.61,4.67,4.7,4.73,4.75,4.76,4.78,4.8,98.59,97.55,96.99000000000001,96.51,96.09,95.73,95.39,95.08,94.52,18.59,18.18,17.990000000000002,17.79,17.59,17.400000000000002,17.19,17,16.61,N/A,N/A +2012,11,18,17,30,102540,101340,100170,66.34,0,4.89,5.14,5.18,5.19,5.19,5.19,5.18,5.17,5.14,85.45,86.04,86.44,86.8,87.14,87.44,87.74,88.02,88.59,18.5,18.09,17.89,17.69,17.490000000000002,17.3,17.09,16.9,16.51,N/A,N/A +2012,11,18,18,30,102540,101330,100160,64.99,0,4.62,4.88,4.93,4.96,4.97,4.99,4.99,5,5,90.44,90.15,90.03,89.94,89.87,89.82000000000001,89.77,89.72,89.64,18.54,18.14,17.94,17.740000000000002,17.53,17.35,17.14,16.95,16.56,N/A,N/A +2012,11,18,19,30,102520,101310,100140,63.86,0,4.68,4.93,4.97,4.98,4.99,4.99,4.98,4.98,4.96,82.43,82.81,83.02,83.21000000000001,83.39,83.55,83.73,83.89,84.25,18.53,18.12,17.93,17.73,17.53,17.34,17.13,16.95,16.55,N/A,N/A +2012,11,18,20,30,102500,101290,100120,64.63,0,4.86,5.11,5.14,5.15,5.15,5.14,5.12,5.11,5.07,84.44,84.83,85.05,85.25,85.45,85.63,85.82000000000001,86,86.37,18.490000000000002,18.080000000000002,17.89,17.68,17.490000000000002,17.3,17.09,16.91,16.51,N/A,N/A +2012,11,18,21,30,102470,101270,100100,63.4,0,4.91,5.15,5.19,5.19,5.19,5.18,5.16,5.14,5.1000000000000005,84.29,84.61,84.77,84.93,85.08,85.21000000000001,85.37,85.51,85.83,18.41,18,17.8,17.6,17.400000000000002,17.21,17.01,16.82,16.43,N/A,N/A +2012,11,18,22,30,102460,101260,100090,61.550000000000004,0,5.17,5.44,5.48,5.49,5.49,5.48,5.47,5.45,5.4,91.92,92.02,92.06,92.09,92.12,92.15,92.18,92.21000000000001,92.27,18.45,18.03,17.84,17.64,17.44,17.26,17.06,16.87,16.48,N/A,N/A +2012,11,18,23,30,102450,101250,100080,55.22,0,5.0600000000000005,5.33,5.37,5.39,5.39,5.39,5.38,5.37,5.34,97.96000000000001,97.89,97.83,97.75,97.69,97.62,97.53,97.45,97.23,18.650000000000002,18.25,18.06,17.86,17.67,17.48,17.28,17.1,16.72,N/A,N/A +2012,11,19,0,30,102450,101240,100070,52.42,0,5.45,5.78,5.8500000000000005,5.88,5.9,5.91,5.92,5.92,5.92,95.78,95.56,95.44,95.31,95.18,95.06,94.91,94.77,94.45,18.78,18.38,18.19,17.990000000000002,17.79,17.61,17.41,17.22,16.830000000000002,N/A,N/A +2012,11,19,1,30,102450,101240,100070,49.32,0,6.07,6.48,6.57,6.61,6.640000000000001,6.67,6.68,6.69,6.7,94.88,94.74,94.64,94.53,94.43,94.34,94.23,94.12,93.87,18.98,18.580000000000002,18.39,18.2,18,17.81,17.61,17.42,17.03,N/A,N/A +2012,11,19,2,30,102450,101250,100080,51.660000000000004,0,5.91,6.3100000000000005,6.390000000000001,6.43,6.45,6.47,6.48,6.49,6.49,92,91.94,91.88,91.82000000000001,91.76,91.71000000000001,91.65,91.59,91.47,19.03,18.63,18.45,18.25,18.05,17.86,17.66,17.47,17.080000000000002,N/A,N/A +2012,11,19,3,30,102460,101250,100080,52.94,0,6.08,6.49,6.58,6.62,6.65,6.67,6.68,6.69,6.69,93.58,93.65,93.68,93.71000000000001,93.73,93.75,93.78,93.8,93.83,19.06,18.66,18.47,18.27,18.07,17.88,17.68,17.490000000000002,17.1,N/A,N/A +2012,11,19,4,30,102440,101230,100070,54.29,0,5.46,5.83,5.91,5.95,5.98,6,6.0200000000000005,6.03,6.05,96.01,96.26,96.4,96.52,96.63,96.72,96.82000000000001,96.91,97.08,19.06,18.68,18.490000000000002,18.28,18.09,17.900000000000002,17.69,17.51,17.11,N/A,N/A +2012,11,19,5,30,102430,101230,100060,56.2,0,5.25,5.59,5.67,5.72,5.75,5.78,5.8,5.8100000000000005,5.83,106.25,106.01,105.84,105.68,105.54,105.42,105.3,105.19,104.97,19.17,18.79,18.6,18.400000000000002,18.2,18.01,17.8,17.62,17.22,N/A,N/A +2012,11,19,6,30,102440,101230,100070,52.88,0,4.8500000000000005,5.14,5.2,5.22,5.24,5.25,5.26,5.26,5.26,106.47,106.48,106.53,106.59,106.64,106.67,106.71000000000001,106.75,106.81,19.25,18.87,18.69,18.490000000000002,18.29,18.1,17.900000000000002,17.71,17.32,N/A,N/A +2012,11,19,7,30,102450,101250,100080,56.22,0,4.22,4.47,4.53,4.5600000000000005,4.59,4.61,4.63,4.64,4.67,110.37,110.39,110.45,110.54,110.61,110.69,110.77,110.84,111.02,19.17,18.8,18.62,18.42,18.22,18.03,17.830000000000002,17.64,17.25,N/A,N/A +2012,11,19,8,30,102440,101230,100070,63.4,0,4.25,4.5200000000000005,4.58,4.62,4.65,4.67,4.69,4.7,4.72,113.85000000000001,113.96000000000001,114.03,114.09,114.14,114.19,114.23,114.27,114.36,19.14,18.76,18.580000000000002,18.38,18.18,17.990000000000002,17.79,17.6,17.2,N/A,N/A +2012,11,19,9,30,102430,101230,100070,63.53,0,4.15,4.39,4.45,4.48,4.5,4.51,4.5200000000000005,4.5200000000000005,4.53,110.11,110.4,110.52,110.60000000000001,110.67,110.73,110.77,110.8,110.86,19.22,18.85,18.66,18.46,18.26,18.07,17.87,17.68,17.29,N/A,N/A +2012,11,19,10,30,102420,101210,100050,59.46,0,4.04,4.25,4.28,4.3,4.32,4.32,4.32,4.33,4.33,112.99000000000001,113.16,113.3,113.43,113.55,113.66,113.78,113.9,114.12,19.29,18.93,18.740000000000002,18.54,18.34,18.16,17.95,17.77,17.38,N/A,N/A +2012,11,19,11,30,102420,101220,100060,62.26,0,3.5500000000000003,3.74,3.79,3.81,3.83,3.85,3.86,3.87,3.88,111.17,111.41,111.56,111.72,111.86,111.98,112.12,112.26,112.53,19.31,18.95,18.77,18.57,18.37,18.18,17.98,17.8,17.400000000000002,N/A,N/A +2012,11,19,12,30,102420,101220,100050,68.56,0,3.5100000000000002,3.68,3.71,3.73,3.74,3.74,3.74,3.74,3.74,111.74000000000001,112.10000000000001,112.3,112.48,112.63,112.77,112.92,113.04,113.3,19.22,18.86,18.67,18.47,18.27,18.09,17.88,17.7,17.31,N/A,N/A +2012,11,19,13,30,102420,101220,100050,72.36,0,3.95,4.15,4.19,4.21,4.22,4.22,4.22,4.22,4.22,93.39,94.27,94.83,95.36,95.86,96.31,96.76,97.18,98.03,19.2,18.830000000000002,18.650000000000002,18.44,18.25,18.06,17.86,17.67,17.28,N/A,N/A +2012,11,19,14,30,102450,101250,100080,66.86,0,3.98,4.2,4.25,4.2700000000000005,4.29,4.3,4.3100000000000005,4.3100000000000005,4.32,117.52,117.04,116.8,116.58,116.4,116.24000000000001,116.09,115.96000000000001,115.68,19.38,19.02,18.84,18.64,18.44,18.25,18.05,17.86,17.47,N/A,N/A +2012,11,19,15,30,102440,101240,100070,72.56,0,3.75,3.94,3.97,3.99,3.99,3.99,3.99,3.98,3.96,102.62,102.96000000000001,103.25,103.53,103.79,104.03,104.29,104.51,105,19.25,18.88,18.69,18.5,18.3,18.11,17.91,17.72,17.330000000000002,N/A,N/A +2012,11,19,16,30,102440,101240,100070,75.72,0,3.74,3.9,3.92,3.92,3.91,3.9,3.88,3.87,3.83,98.83,99.09,99.24000000000001,99.4,99.54,99.67,99.8,99.92,100.19,19.14,18.77,18.59,18.38,18.19,18,17.79,17.61,17.22,N/A,N/A +2012,11,19,17,30,102430,101230,100070,75.86,0,3.3200000000000003,3.48,3.52,3.54,3.56,3.56,3.5700000000000003,3.58,3.59,87.54,88.09,88.42,88.7,88.95,89.17,89.38,89.57000000000001,89.98,19.12,18.75,18.56,18.36,18.16,17.97,17.77,17.580000000000002,17.19,N/A,N/A +2012,11,19,18,30,102420,101220,100050,76.16,0,3.23,3.38,3.41,3.42,3.43,3.44,3.44,3.44,3.44,83.83,83.78,83.82000000000001,83.83,83.83,83.81,83.77,83.72,83.63,19.12,18.75,18.57,18.36,18.17,17.98,17.78,17.59,17.2,N/A,N/A +2012,11,19,19,30,102390,101190,100030,76,0,2.8000000000000003,2.91,2.93,2.93,2.93,2.92,2.92,2.91,2.89,83.58,83.45,83.39,83.38,83.39,83.41,83.44,83.48,83.67,19.13,18.76,18.580000000000002,18.38,18.18,18,17.79,17.61,17.22,N/A,N/A +2012,11,19,20,30,102340,101150,99980,78.15,0,3.31,3.48,3.5100000000000002,3.52,3.5300000000000002,3.5300000000000002,3.5300000000000002,3.5300000000000002,3.5300000000000002,92.84,92.97,93.08,93.19,93.3,93.4,93.5,93.59,93.79,19.17,18.79,18.61,18.41,18.21,18.02,17.82,17.63,17.240000000000002,N/A,N/A +2012,11,19,21,30,102330,101130,99960,80.89,0,3.66,3.8200000000000003,3.84,3.83,3.8200000000000003,3.81,3.79,3.7800000000000002,3.73,97.52,97.75,97.91,98.08,98.25,98.41,98.59,98.77,99.18,19.07,18.7,18.51,18.31,18.11,17.92,17.72,17.54,17.150000000000002,N/A,N/A +2012,11,19,22,30,102290,101100,99930,79.84,0,3.42,3.59,3.62,3.63,3.64,3.64,3.64,3.63,3.62,103.43,103.79,103.99000000000001,104.21000000000001,104.44,104.65,104.89,105.11,105.66,19.13,18.77,18.580000000000002,18.39,18.19,18,17.8,17.62,17.23,N/A,N/A +2012,11,19,23,30,102270,101070,99910,77.08,0,3.56,3.72,3.75,3.7600000000000002,3.7600000000000002,3.75,3.74,3.73,3.7,119.26,119.38,119.49000000000001,119.58,119.68,119.78,119.89,119.99000000000001,120.22,19.36,19,18.82,18.62,18.43,18.240000000000002,18.04,17.85,17.47,N/A,N/A +2012,11,20,0,30,102280,101090,99930,79.16,0,3.15,3.3000000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,3.31,3.29,120.97,121.18,121.34,121.48,121.62,121.75,121.88,122,122.27,19.39,19.03,18.85,18.650000000000002,18.46,18.27,18.07,17.89,17.5,N/A,N/A +2012,11,20,1,30,102270,101070,99910,79.79,0,2.66,2.7600000000000002,2.7800000000000002,2.7800000000000002,2.7800000000000002,2.77,2.7600000000000002,2.7600000000000002,2.74,119.21000000000001,119.53,119.78,120,120.22,120.43,120.65,120.85000000000001,121.3,19.39,19.04,18.86,18.66,18.47,18.28,18.080000000000002,17.89,17.51,N/A,N/A +2012,11,20,2,30,102280,101080,99920,79.89,0,2.36,2.44,2.44,2.44,2.43,2.42,2.41,2.39,2.36,119.4,119.64,119.82000000000001,119.99000000000001,120.15,120.29,120.45,120.59,120.87,19.400000000000002,19.05,18.87,18.68,18.48,18.29,18.1,17.91,17.53,N/A,N/A +2012,11,20,3,30,102260,101060,99900,78.52,0,1.95,2.0100000000000002,2.02,2.02,2.0100000000000002,2.0100000000000002,2,1.99,1.97,109.97,110.61,110.96000000000001,111.3,111.62,111.94,112.26,112.56,113.24000000000001,19.41,19.07,18.900000000000002,18.7,18.5,18.32,18.12,17.93,17.55,N/A,N/A +2012,11,20,4,30,102240,101050,99890,76.77,0,1.77,1.83,1.83,1.82,1.82,1.81,1.8,1.79,1.77,111.9,112,112.07000000000001,112.14,112.19,112.23,112.27,112.3,112.36,19.45,19.12,18.94,18.740000000000002,18.55,18.36,18.16,17.98,17.59,N/A,N/A +2012,11,20,5,30,102240,101040,99880,75.4,0,1.74,1.79,1.79,1.79,1.79,1.78,1.77,1.77,1.75,104.37,104.82000000000001,105.06,105.3,105.53,105.74000000000001,105.96000000000001,106.16,106.63,19.47,19.13,18.95,18.75,18.56,18.37,18.17,17.990000000000002,17.6,N/A,N/A +2012,11,20,6,30,102240,101050,99890,77.19,0,1.53,1.57,1.57,1.56,1.55,1.54,1.54,1.53,1.5,79.82000000000001,79.94,80.05,80.15,80.24,80.33,80.42,80.5,80.7,19.42,19.09,18.91,18.71,18.52,18.330000000000002,18.13,17.95,17.56,N/A,N/A +2012,11,20,7,30,102240,101040,99880,75.88,0,1.21,1.22,1.21,1.2,1.19,1.17,1.16,1.1500000000000001,1.12,86.9,87.10000000000001,87.31,87.54,87.74,87.93,88.16,88.38,88.89,19.43,19.1,18.92,18.72,18.53,18.34,18.14,17.96,17.57,N/A,N/A +2012,11,20,8,30,102230,101030,99870,75.06,0,1.78,1.82,1.81,1.79,1.78,1.76,1.74,1.72,1.68,88.18,88.49,88.68,88.88,89.07000000000001,89.24,89.43,89.61,90.02,19.41,19.080000000000002,18.900000000000002,18.7,18.5,18.32,18.12,17.94,17.55,N/A,N/A +2012,11,20,9,30,102240,101040,99880,74.45,0,1.35,1.36,1.35,1.32,1.3,1.28,1.26,1.24,1.18,76.29,76.99,77.46000000000001,77.93,78.39,78.83,79.31,79.76,80.83,19.400000000000002,19.07,18.89,18.69,18.5,18.31,18.11,17.93,17.54,N/A,N/A +2012,11,20,10,30,102240,101040,99880,73.79,0,1.31,1.32,1.31,1.29,1.28,1.26,1.24,1.22,1.17,77.87,77.7,77.66,77.62,77.58,77.54,77.52,77.49,77.43,19.400000000000002,19.07,18.89,18.69,18.5,18.32,18.12,17.94,17.55,N/A,N/A +2012,11,20,11,30,102260,101060,99900,75.23,0,1.23,1.25,1.24,1.22,1.2,1.19,1.17,1.1500000000000001,1.1,72.5,72.92,73.14,73.36,73.56,73.75,73.93,74.09,74.37,19.39,19.06,18.88,18.68,18.490000000000002,18.31,18.11,17.92,17.54,N/A,N/A +2012,11,20,12,30,102260,101070,99900,74.74,0,2.06,2.12,2.12,2.11,2.09,2.08,2.06,2.04,2,62.52,62.49,62.54,62.58,62.61,62.620000000000005,62.61,62.59,62.5,19.44,19.1,18.93,18.73,18.53,18.35,18.150000000000002,17.96,17.580000000000002,N/A,N/A +2012,11,20,13,30,102290,101090,99930,75.41,0,2.11,2.17,2.17,2.15,2.14,2.12,2.11,2.09,2.04,60.17,60.18,60.17,60.15,60.11,60.08,60.01,59.94,59.64,19.43,19.09,18.91,18.72,18.52,18.34,18.14,17.96,17.57,N/A,N/A +2012,11,20,14,30,102280,101090,99920,76.09,0,1.49,1.51,1.5,1.48,1.46,1.44,1.42,1.3900000000000001,1.32,84.66,85.4,85.8,86.23,86.65,87.05,87.5,87.91,88.82000000000001,19.39,19.06,18.89,18.69,18.5,18.31,18.11,17.93,17.56,N/A,N/A +2012,11,20,15,30,102310,101110,99950,77.97,0,3.06,3.16,3.17,3.16,3.14,3.12,3.1,3.0700000000000003,3.02,52.230000000000004,52.26,52.24,52.230000000000004,52.19,52.160000000000004,52.1,52.04,51.82,19.39,19.04,18.86,18.67,18.47,18.28,18.09,17.91,17.52,N/A,N/A +2012,11,20,16,30,102280,101080,99920,85.92,0,2.62,2.68,2.67,2.64,2.61,2.58,2.5500000000000003,2.5100000000000002,2.42,62.53,62.7,62.82,62.93,63.02,63.11,63.18,63.24,63.26,19.12,18.77,18.59,18.39,18.2,18.02,17.82,17.64,17.26,N/A,N/A +2012,11,20,17,30,102250,101060,99900,87.05,0,2.27,2.31,2.29,2.25,2.22,2.18,2.12,2.07,1.85,74.21000000000001,74.57000000000001,74.72,74.88,75.02,75.14,75.25,75.34,74.28,19,18.64,18.46,18.26,18.07,17.89,17.7,17.52,17.17,N/A,N/A +2012,11,20,18,30,102230,101030,99870,85.43,0,1.48,1.48,1.45,1.42,1.3800000000000001,1.34,1.29,1.25,1.1,83.7,83.60000000000001,83.73,83.83,83.94,84.05,84.12,84.17,84.11,19.13,18.78,18.6,18.400000000000002,18.21,18.03,17.830000000000002,17.650000000000002,17.28,N/A,N/A +2012,11,20,19,30,102240,101040,99880,84.46000000000001,0,2.5100000000000002,2.56,2.5500000000000003,2.5100000000000002,2.48,2.44,2.4,2.35,2.17,76.17,76.39,76.38,76.37,76.36,76.34,76.23,76.12,74.8,19.25,18.88,18.7,18.5,18.31,18.13,17.93,17.75,17.39,N/A,N/A +2012,11,20,20,30,102200,101010,99850,82.09,0,1.77,1.76,1.72,1.6600000000000001,1.57,1.48,1.19,0.97,1.4000000000000001,107.44,106.82000000000001,106.26,105.5,104.15,102.54,93.23,83.31,348.28000000000003,19.41,19.07,18.89,18.7,18.52,18.35,18.2,18.080000000000002,18.18,N/A,N/A +2012,11,20,21,30,102190,100990,99840,80.76,0,0.68,0.63,0.58,0.5,0.27,0.11,0.36,1.7,2.2,150.28,151.6,152.48,153.96,186.02,209.42000000000002,231.21,325.22,326.69,19.67,19.35,19.18,18.990000000000002,18.830000000000002,18.68,18.77,18.900000000000002,19.04,N/A,N/A +2012,11,20,22,30,102170,100980,99820,81.34,0,1.3,1.29,1.25,1.18,1.01,0.8200000000000001,1.06,1.43,2.12,184.89000000000001,186.16,187.57,189.8,199.99,212.05,254.69,311.04,318.65000000000003,19.84,19.53,19.36,19.18,19.04,18.94,19.09,19.27,19.48,N/A,N/A +2012,11,20,23,30,102180,100980,99830,80.52,0,1.27,1.25,1.21,1.1300000000000001,1.09,1.07,1.28,1.6,2.37,203.59,206.08,209.23000000000002,215.34,240.75,278.5,296.98,311.89,323.71,20,19.7,19.55,19.400000000000002,19.38,19.46,19.490000000000002,19.51,19.96,N/A,N/A +2012,11,21,0,30,102190,101000,99840,80.75,0,1.61,1.61,1.54,1.41,0.98,0.6,0.81,1.18,1.79,177.5,178.26,179.95000000000002,183.16,242.09,298.22,313.1,325.29,333.29,20.16,19.86,19.72,19.580000000000002,19.650000000000002,19.82,20.05,20.27,20.400000000000002,N/A,N/A +2012,11,21,1,30,102200,101010,99860,82.47,0,1.71,1.7,1.61,1.44,1.08,0.74,0.91,1.23,1.98,176.45000000000002,177.08,178.05,179.93,231.36,289.68,309.63,326.5,337.77,20.16,19.86,19.71,19.55,19.64,19.86,20.09,20.29,20.55,N/A,N/A +2012,11,21,2,30,102210,101020,99860,81.35000000000001,0,1.73,1.75,1.73,1.71,1.3900000000000001,1.02,1.11,1.3,2.0300000000000002,209.49,209.92000000000002,210.22,210.44,233.19,259.68,285.81,313.15000000000003,333.21,20.330000000000002,20.03,19.84,19.6,19.57,19.650000000000002,19.92,20.21,20.71,N/A,N/A +2012,11,21,3,30,102210,101020,99870,80.87,0,2.18,2.24,2.22,2.19,2.14,2.09,1.8,1.54,1.07,199.92000000000002,201.04,201.86,202.9,204.35,205.96,215.1,224.44,265.75,20.47,20.17,20.01,19.82,19.64,19.46,19.330000000000002,19.23,19.31,N/A,N/A +2012,11,21,4,30,102220,101030,99880,83.18,0,2.24,2.33,2.33,2.31,2.29,2.27,2.25,2.22,1.77,200.23000000000002,201.62,202.56,203.65,205.01,206.48000000000002,209.88,213.93,248.51000000000002,20.38,20.080000000000002,19.91,19.72,19.53,19.35,19.18,19.02,19.01,N/A,N/A +2012,11,21,5,30,102220,101030,99880,83.65,0,2.3000000000000003,2.41,2.42,2.43,2.43,2.43,2.42,2.42,2.34,221.03,222.12,222.84,223.69,224.77,225.96,228.95000000000002,232.20000000000002,251.86,20.44,20.14,19.97,19.78,19.59,19.42,19.25,19.1,18.990000000000002,N/A,N/A +2012,11,21,6,30,102240,101050,99900,82.27,0,2.04,2.14,2.16,2.18,2.19,2.2,2.22,2.23,2.31,242.79,243.51,243.96,244.46,245.01,245.57,246.38,247.19,252.25,20.64,20.34,20.17,19.98,19.79,19.61,19.41,19.23,18.900000000000002,N/A,N/A +2012,11,21,7,30,102260,101070,99920,83.56,0,2.2,2.33,2.36,2.38,2.4,2.42,2.44,2.46,2.5500000000000003,268.53000000000003,268.65,268.7,268.77,268.88,269.01,269.23,269.46,271,20.73,20.43,20.26,20.06,19.87,19.69,19.490000000000002,19.31,18.94,N/A,N/A +2012,11,21,8,30,102270,101080,99920,85.75,0,2.65,2.82,2.86,2.88,2.9,2.91,2.93,2.94,2.99,293.47,293.18,292.97,292.77,292.56,292.36,292.16,291.99,291.51,20.78,20.48,20.31,20.11,19.92,19.740000000000002,19.54,19.36,18.97,N/A,N/A +2012,11,21,9,30,102280,101090,99940,92.09,0,2.81,2.86,2.83,2.7600000000000002,2.68,2.59,2.56,2.5500000000000003,2.81,316.48,315.56,314.65000000000003,313.25,306.8,297.83,290.72,284.75,283.52,20.13,19.81,19.650000000000002,19.47,19.35,19.26,19.21,19.18,19.080000000000002,N/A,N/A +2012,11,21,10,30,102300,101110,99950,88.71000000000001,0,3.58,3.69,3.67,3.63,3.59,3.5300000000000002,3.49,3.46,3.58,322.27,322.36,322.41,322.46,322.41,322.31,319.87,317.23,313.38,19.98,19.650000000000002,19.48,19.3,19.12,18.97,18.95,18.97,19.17,N/A,N/A +2012,11,21,11,30,102320,101130,99970,87.28,0,4.16,4.32,4.3100000000000005,4.2700000000000005,4.22,4.17,4.11,4.07,4.3100000000000005,333.03000000000003,332.63,332.35,332.01,331.58,331.11,330.06,328.94,325.15000000000003,19.75,19.400000000000002,19.23,19.04,18.86,18.68,18.51,18.38,18.72,N/A,N/A +2012,11,21,12,30,102360,101160,100000,90.25,0,4.23,4.41,4.42,4.41,4.41,4.41,4.5,4.61,4.82,337.82,337.87,337.89,337.93,338.01,338.1,338.27,338.40000000000003,337.14,19.400000000000002,19.04,18.86,18.68,18.5,18.34,18.23,18.17,18.63,N/A,N/A +2012,11,21,13,30,102370,101170,100010,91.38,0,4.73,4.94,4.96,4.94,4.93,4.91,4.95,5.0200000000000005,5.58,349.64,349.63,349.59000000000003,349.54,349.45,349.36,349.06,348.66,346.23,19.31,18.94,18.76,18.57,18.39,18.22,18.07,17.95,18.38,N/A,N/A +2012,11,21,14,30,102400,101190,100030,99.34,0,4.37,4.43,4.38,4.3100000000000005,4.46,4.72,5.11,5.49,5.84,8.3,6.93,5.41,3.08,357.5,350.31,348.27,347.33,350.27,17.96,17.59,17.42,17.26,17.44,17.77,18.19,18.580000000000002,19.1,N/A,N/A +2012,11,21,15,30,102410,101210,100050,99.35000000000001,0,4.04,4.13,4.11,4.09,4.46,5.03,5.42,5.74,5.89,8.45,8.06,7.65,7.0600000000000005,3.14,357.6,354.89,353.2,356.08,17.82,17.44,17.240000000000002,17.01,17.23,17.63,18.26,18.8,19.03,N/A,N/A +2012,11,21,16,30,102400,101190,100030,99.35000000000001,0,3.73,3.83,3.8200000000000003,3.81,4.07,4.46,4.97,5.44,5.59,0.59,0.35000000000000003,0.21,0.06,359.79,359.47,1.01,2.48,1.75,17.830000000000002,17.45,17.27,17.07,17.06,17.13,18.26,19.3,19.43,N/A,N/A +2012,11,21,17,30,102370,101160,100010,99.33,0,3.16,3.22,3.21,3.19,3.6,4.26,4.7,5.0600000000000005,5.15,359.04,358.73,358.47,358.14,357.81,357.44,358.96,0.6900000000000001,4.14,18.02,17.67,17.48,17.25,17.580000000000002,18.12,18.830000000000002,19.42,19.62,N/A,N/A +2012,11,21,18,30,102340,101140,99980,99.41,0,2.58,2.63,2.63,2.65,3.23,4.22,4.5,4.63,4.61,356.6,356.16,355.76,355.2,355.41,356.07,359.06,2.17,8.790000000000001,18.18,17.830000000000002,17.63,17.38,18.150000000000002,19.31,19.66,19.85,19.92,N/A,N/A +2012,11,21,19,30,102310,101110,99960,93.75,0,1.29,1.37,1.6300000000000001,2.39,2.86,3.09,3.34,3.58,3.95,341.68,343.76,346.37,351.98,358.55,4.94,9.49,13.4,17.88,19.23,18.92,18.92,19.1,19.51,20.01,20.2,20.31,20.240000000000002,N/A,N/A +2012,11,21,20,30,102260,101070,99920,90.58,0,0.6900000000000001,0.67,0.71,0.89,1.11,1.3900000000000001,1.6400000000000001,1.9000000000000001,2.31,264.31,269.11,288.19,339.44,7.44,21.29,26.330000000000002,29.43,29.93,20.04,19.740000000000002,19.79,20.11,20.44,20.76,20.85,20.88,20.79,N/A,N/A +2012,11,21,21,30,102230,101040,99890,88.22,0,1.44,1.41,1.25,0.96,0.68,0.47000000000000003,0.44,0.44,0.72,236.54,238.22,243.18,252.48000000000002,266.95,279.75,306.09000000000003,332.7,357.71,20.48,20.19,20.2,20.42,20.71,21.02,21.1,21.13,21.04,N/A,N/A +2012,11,21,22,30,102210,101020,99870,85.77,0,1.81,1.78,1.6500000000000001,1.45,1.27,1.12,1.05,1.01,0.98,219.70000000000002,221.77,226.27,234.65,242.33,249.03,256.93,264.14,280.5,20.79,20.57,20.66,21.01,21.240000000000002,21.39,21.37,21.32,21.14,N/A,N/A +2012,11,21,23,30,102200,101010,99870,87.5,0,2.35,2.33,2.22,2.04,1.81,1.6,1.47,1.37,1.3,204.24,205.35,208.91,216.12,222.78,228.45000000000002,235.64000000000001,242.11,256.47,20.75,20.490000000000002,20.5,20.71,20.96,21.22,21.240000000000002,21.22,21.03,N/A,N/A +2012,11,22,0,30,102210,101020,99870,90.28,0,2.79,2.73,2.5500000000000003,2.27,1.94,1.62,1.36,1.1500000000000001,0.97,186.94,187.34,188.34,190.26,193.59,197.07,204.77,211.73000000000002,236.94,20.5,20.22,20.21,20.37,20.72,21.16,21.27,21.31,21.11,N/A,N/A +2012,11,22,1,30,102210,101020,99870,99.49000000000001,0.4,3.2800000000000002,3.38,3.23,2.93,2.68,2.48,2.24,2.0300000000000002,1.6400000000000001,181.22,189.14000000000001,190.49,187.78,186.67000000000002,186.3,189.15,192.09,201.63,18.17,19.31,19.990000000000002,20.59,20.96,21.21,21.26,21.28,21.1,N/A,N/A +2012,11,22,2,30,102240,101040,99890,99.44,0,2.8000000000000003,2.77,2.72,2.68,2.59,2.49,2.33,2.18,1.8900000000000001,190.91,191.55,193.16,196.47,198.51,199.84,203.3,206.74,217.77,17.900000000000002,17.43,17.86,19.17,20.04,20.67,20.89,21.01,20.93,N/A,N/A +2012,11,22,3,30,102220,101020,99870,99.43,0.4,2.42,2.43,2.58,2.96,3.02,2.94,2.69,2.47,2.14,202.19,203.24,205.32,209.33,212.3,214.43,216.89000000000001,219.26,229.04,17.93,17.42,17.84,18.95,19.84,20.57,20.78,20.89,20.79,N/A,N/A +2012,11,22,4,30,102220,101020,99870,99.31,0,2.19,2.2800000000000002,2.35,2.48,2.71,3.0100000000000002,2.94,2.81,2.43,221.43,221.47,221.95000000000002,223.01,225.79,229.47,230.83,231.86,237.9,18.12,17.71,17.5,17.28,18.22,19.61,20.22,20.61,20.6,N/A,N/A +2012,11,22,5,30,102210,101010,99860,99.42,0,2.58,2.66,2.7,2.7600000000000002,3.04,3.45,3.2600000000000002,3.0300000000000002,2.57,225.88,226.36,226.86,227.67000000000002,229.84,232.84,234.49,235.92000000000002,242.35,18.3,17.92,17.68,17.35,18.080000000000002,19.27,20.01,20.580000000000002,20.68,N/A,N/A +2012,11,22,6,30,102220,101020,99860,99.34,0,2.0100000000000002,2.08,2.11,2.16,2.37,2.69,2.98,3.23,2.87,223.44,224.05,224.41,224.88,226.52,228.85,232.41,236.02,241.59,18.48,18.150000000000002,17.97,17.740000000000002,17.57,17.42,18.7,19.95,20.29,N/A,N/A +2012,11,22,7,30,102220,101020,99860,99.25,0.4,1.47,1.52,1.54,1.57,1.77,2.09,2.62,3.2,3.4,202.53,202.09,202.03,202.04,207.13,215.44,224.86,234.74,243.48000000000002,18.43,18.11,17.94,17.740000000000002,17.63,17.56,18.14,18.75,19.57,N/A,N/A +2012,11,22,8,30,102220,101020,99860,99.24000000000001,0,0.93,1.02,1.06,1.11,1.18,1.27,1.51,1.83,3.38,222.89000000000001,223.97,224.83,225.91,227.44,229.19,233.03,237.56,250.99,18.48,18.16,18.01,17.85,17.67,17.490000000000002,17.19,17.05,18.64,N/A,N/A +2012,11,22,9,30,102210,101010,99850,99.36,0,1.96,1.8900000000000001,1.8,1.7,1.59,1.49,1.37,1.27,1.1400000000000001,117.76,121.53,124.2,127.37,131.53,135.75,143.34,150.8,176.71,18.42,18.09,17.94,17.81,17.67,17.55,17.400000000000002,17.26,16.93,N/A,N/A +2012,11,22,10,30,102220,101020,99860,94.91,0.7000000000000001,1.97,1.8800000000000001,1.79,1.69,1.58,1.47,1.33,1.21,0.87,156.82,156.15,155.5,154.64000000000001,153.38,152.05,150.14000000000001,148.41,144.38,18.44,18.07,17.89,17.71,17.52,17.35,17.18,17.03,16.77,N/A,N/A +2012,11,22,11,30,102220,101020,99860,95.15,0.4,1.21,1.17,1.1300000000000001,1.09,1.04,0.99,0.93,0.87,0.71,126.42,131.21,134.28,137.32,140.36,143.13,147.29,151.31,169.5,18.17,17.8,17.62,17.43,17.240000000000002,17.080000000000002,16.92,16.78,16.55,N/A,N/A +2012,11,22,12,30,102240,101040,99880,95.93,0.7000000000000001,1.96,1.98,1.96,1.93,1.8900000000000001,1.84,1.76,1.69,1.33,127.76,128.2,128.51,128.87,129.14000000000001,129.34,129.03,128.53,127.64,18.07,17.7,17.53,17.34,17.16,17,16.85,16.72,16.47,N/A,N/A +2012,11,22,13,30,102240,101040,99870,95.51,0.7000000000000001,1.97,1.8900000000000001,1.8,1.71,1.61,1.51,1.4000000000000001,1.32,1.52,120.38,119.39,119.16,119.32000000000001,120.43,121.81,126.91,133.24,164.52,17.8,17.43,17.240000000000002,17.06,16.87,16.69,16.5,16.32,16.35,N/A,N/A +2012,11,22,14,30,102270,101070,99910,96.03,1.1,2.44,2.5,2.49,2.47,2.44,2.42,2.37,2.33,2.58,114.85000000000001,114.43,114.08,113.75,113.37,112.98,112.39,114.04,148.08,18.14,17.76,17.580000000000002,17.39,17.19,17.01,16.79,16.62,16.86,N/A,N/A +2012,11,22,15,30,102280,101080,99910,95.87,0.7000000000000001,2.62,2.71,2.71,2.71,2.7,2.69,2.66,2.64,2.94,107.94,109.25,110.2,111.24000000000001,112.49000000000001,113.74000000000001,115.48,117.99000000000001,141.07,18.29,17.93,17.75,17.56,17.38,17.2,17.01,16.84,16.8,N/A,N/A +2012,11,22,16,30,102270,101070,99910,96.62,0,2.84,2.94,2.93,2.91,2.88,2.85,2.8000000000000003,2.77,2.82,121.59,120.62,119.92,119.17,118.34,117.51,116.43,115.94,125.78,18.48,18.12,17.95,17.77,17.6,17.45,17.31,17.17,16.830000000000002,N/A,N/A +2012,11,22,17,30,102240,101040,99880,96.44,0.4,3.99,4.05,4,3.92,3.84,3.75,3.64,3.54,3.34,124.31,125.28,125.95,126.72,127.72,128.76,130.6,132.6,141.43,18.51,18.13,17.95,17.76,17.56,17.38,17.23,17.09,16.81,N/A,N/A +2012,11,22,18,30,102250,101050,99890,96.33,0.7000000000000001,3.36,3.5300000000000002,3.56,3.5700000000000003,3.59,3.59,3.6,3.62,3.72,124.71000000000001,124.31,124.01,123.7,123.37,123.06,122.69,122.37,125.52,18.97,18.61,18.44,18.25,18.05,17.87,17.71,17.56,17.29,N/A,N/A +2012,11,22,19,30,102240,101040,99880,96.67,0,3.85,3.97,3.96,3.92,3.87,3.8200000000000003,3.74,3.7,4.12,125.12,125.04,124.88000000000001,124.69,124.42,124.14,124,125.18,148.28,18.75,18.36,18.16,17.94,17.75,17.580000000000002,17.31,17.13,18.18,N/A,N/A +2012,11,22,20,30,102200,101000,99850,96.72,0,4.23,4.37,4.3500000000000005,4.3100000000000005,4.2700000000000005,4.23,4.39,4.57,5.01,118.66,118.69,118.64,118.59,118.29,117.88,127.96000000000001,138.82,147.88,18.92,18.56,18.38,18.19,18,17.84,18.05,18.31,18.93,N/A,N/A +2012,11,22,21,30,102170,100980,99830,94.08,0,4.67,4.8500000000000005,4.9,4.98,5.44,6.140000000000001,6.37,6.49,6.55,123.95,124.79,125.96000000000001,128.12,134.6,144.09,147.9,150.24,154.29,19.41,19.09,18.95,18.82,18.98,19.28,19.45,19.57,19.52,N/A,N/A +2012,11,22,22,30,102110,100920,99770,87.41,0,5.94,6.38,6.45,6.48,6.48,6.48,6.45,6.44,6.45,127.03,127.65,128.03,128.45,128.89000000000001,129.34,129.99,130.65,135.47,20.29,19.990000000000002,19.82,19.64,19.46,19.28,19.11,18.95,18.76,N/A,N/A +2012,11,22,23,30,102110,100920,99770,74.42,0,5.84,6.3500000000000005,6.48,6.55,6.59,6.62,6.63,6.65,6.7,139.51,139.93,140.1,140.31,140.53,140.76,141.05,141.34,142.22,20.89,20.64,20.48,20.3,20.12,19.94,19.75,19.580000000000002,19.22,N/A,N/A +2012,11,23,0,30,102120,100930,99780,76.18,0,6.12,6.61,6.69,6.73,6.74,6.75,6.7700000000000005,6.79,7,136.78,137.18,137.47,137.79,138.18,138.59,139.22,139.89000000000001,143.41,20.85,20.59,20.44,20.26,20.080000000000002,19.91,19.73,19.56,19.27,N/A,N/A +2012,11,23,1,30,102130,100950,99790,79.14,0,5.22,5.61,5.68,5.71,5.73,5.74,5.7700000000000005,5.8,6,138.07,138.53,138.93,139.42000000000002,140.04,140.72,142.02,143.36,148.98,20.85,20.61,20.46,20.28,20.1,19.93,19.76,19.61,19.35,N/A,N/A +2012,11,23,2,30,102110,100920,99770,80.68,0,5.63,6.08,6.19,6.3,6.390000000000001,6.47,6.59,6.72,6.99,139.81,140.11,140.5,141.18,142.11,143.18,144.91,146.67000000000002,149.9,20.93,20.71,20.57,20.42,20.27,20.14,20.02,19.92,19.69,N/A,N/A +2012,11,23,3,30,102130,100940,99790,82.19,0,4.2700000000000005,4.86,5.1000000000000005,5.29,5.44,5.58,5.7,5.82,6.04,148.06,149.95000000000002,151.41,153.29,155.28,157.31,159.49,161.55,165.51,20.95,20.75,20.63,20.5,20.38,20.28,20.16,20.04,19.78,N/A,N/A +2012,11,23,4,30,102120,100930,99780,83.36,0,3.58,4.1,4.3500000000000005,4.63,4.88,5.12,5.34,5.55,5.84,156.27,159.53,161.89000000000001,164.67000000000002,167.33,169.96,172.22,174.24,177.18,20.95,20.78,20.7,20.63,20.57,20.52,20.43,20.34,20.05,N/A,N/A +2012,11,23,5,30,102140,100950,99800,83.92,0,3.7,4.17,4.34,4.5,4.63,4.75,4.87,4.97,5.16,158.21,159.18,159.93,160.89000000000001,161.97,163.12,164.64000000000001,166.15,170.24,21.03,20.84,20.71,20.56,20.41,20.26,20.1,19.96,19.69,N/A,N/A +2012,11,23,6,30,102160,100970,99820,83.42,0,3.0500000000000003,3.52,3.75,3.95,4.13,4.28,4.48,4.69,5.09,165.6,169.23,172.04,175.74,179.20000000000002,182.52,185.14000000000001,187.42000000000002,190.51,21.07,20.92,20.830000000000002,20.73,20.62,20.51,20.400000000000002,20.3,20.05,N/A,N/A +2012,11,23,7,30,102190,101000,99850,83.95,0,2.64,3.0500000000000003,3.24,3.46,3.79,4.2,4.46,4.67,5.15,171.13,173.75,176.42000000000002,180.84,186.33,192.8,195.46,196.97,198.33,21.02,20.86,20.76,20.650000000000002,20.59,20.56,20.46,20.36,20.12,N/A,N/A +2012,11,23,8,30,102190,101010,99860,85.32000000000001,0,2.21,2.94,3.33,3.7800000000000002,4.08,4.26,4.45,4.63,4.93,167.94,176.70000000000002,182.99,190.07,194.41,196.78,198.22,199.34,199.64000000000001,21.06,21.1,21.09,21.03,20.94,20.82,20.71,20.6,20.34,N/A,N/A +2012,11,23,9,30,102230,101040,99890,85.83,0,1.6300000000000001,2.24,2.5,2.84,3.11,3.35,3.59,3.81,4.21,191.04,196,199.48000000000002,202.98000000000002,205.20000000000002,206.52,207.27,207.83,208.41,21.17,21.12,21.07,20.990000000000002,20.89,20.78,20.650000000000002,20.53,20.27,N/A,N/A +2012,11,23,10,30,102240,101050,99900,86.43,0,1.6500000000000001,2.31,2.64,2.96,3.18,3.33,3.5100000000000002,3.69,4.01,173.21,181.17000000000002,186.87,192.71,196.35,198.46,200.01,201.32,201.55,21.02,21.03,21,20.91,20.81,20.72,20.66,20.62,20.44,N/A,N/A +2012,11,23,11,30,102260,101080,99930,87.28,0,1.96,2.2,2.34,2.56,2.7600000000000002,2.95,3.12,3.2800000000000002,3.59,139.44,158.98,169.86,177.51,183.02,187.1,190.27,193.03,198.46,20.81,20.82,20.81,20.71,20.61,20.5,20.38,20.26,20.05,N/A,N/A +2012,11,23,12,30,102280,101090,99940,87.16,0,1.86,2.44,2.7,2.9,2.99,3.02,3.1,3.18,3.42,168.42000000000002,174.36,179.61,186.76,191.09,193.54,196.22,198.74,201.96,20.94,20.900000000000002,20.85,20.76,20.63,20.47,20.35,20.25,20.080000000000002,N/A,N/A +2012,11,23,13,30,102300,101120,99970,87.9,0,1.71,2.0300000000000002,2.15,2.22,2.29,2.34,2.47,2.62,3.04,156.22,160.70000000000002,167.20000000000002,179.78,188.26,194.12,199.67000000000002,204.87,209.1,20.85,20.7,20.64,20.61,20.56,20.5,20.490000000000002,20.5,20.42,N/A,N/A +2012,11,23,14,30,102340,101150,100000,87.44,0,1.43,1.57,1.61,1.6400000000000001,1.74,1.9000000000000001,2.11,2.33,2.71,146.17000000000002,159.88,169.31,179.64000000000001,188.05,195.65,200.59,204.74,208.42000000000002,20.85,20.82,20.8,20.76,20.740000000000002,20.73,20.740000000000002,20.740000000000002,20.59,N/A,N/A +2012,11,23,15,30,102360,101170,100020,85.54,0,1.03,1.19,1.29,1.43,1.6,1.79,2,2.22,2.59,157.39000000000001,178.64000000000001,190.59,198.47,204.43,209.18,211.77,213.76,214.22,20.98,21.12,21.17,21.11,21.07,21.03,21,20.98,20.79,N/A,N/A +2012,11,23,16,30,102320,101140,99990,86.7,0,1.6,1.84,1.97,2.1,2.2600000000000002,2.43,2.62,2.81,3.14,175.05,188.87,196.51,201.95000000000002,206.12,209.55,212,214.11,217.99,21.06,21.25,21.330000000000002,21.3,21.26,21.23,21.18,21.14,20.93,N/A,N/A +2012,11,23,17,30,102320,101130,99980,89.36,0,1.36,1.59,1.72,1.87,2.0300000000000002,2.19,2.37,2.54,2.84,177.53,193.89000000000001,203.48000000000002,210.87,216.75,221.69,225.92000000000002,229.79,235.8,21.1,21.27,21.36,21.36,21.32,21.26,21.2,21.14,20.96,N/A,N/A +2012,11,23,18,30,102310,101130,99980,90.19,0,0.77,0.96,1.11,1.32,1.5,1.68,1.85,2,2.2600000000000002,174.33,204.08,220.71,230.48000000000002,237.52,242.53,246.22,249.43,253.62,21.18,21.3,21.37,21.37,21.32,21.25,21.17,21.080000000000002,20.87,N/A,N/A +2012,11,23,19,30,102310,101130,99980,90.92,0,0.89,0.6900000000000001,0.64,0.6900000000000001,0.78,0.89,0.99,1.07,1.21,134.14000000000001,165.82,184.08,206.19,221.05,231.99,239.20000000000002,245.12,251.68,21.36,21.39,21.41,21.37,21.3,21.21,21.1,21,20.81,N/A,N/A +2012,11,23,20,30,102300,101110,99970,93.24,1.1,2.52,2.48,2.45,2.5100000000000002,2.65,2.85,3.0700000000000003,3.29,3.63,51.74,44.58,39.050000000000004,31.810000000000002,25.98,20.86,18.16,16.14,16.09,21.21,21.17,21.19,21.23,21.240000000000002,21.23,21.13,21.01,20.67,N/A,N/A +2012,11,23,21,30,102300,101110,99960,92.13,0,4.22,4.51,4.71,5.11,5.43,5.69,5.89,6.0600000000000005,6.34,28.84,28.92,28.6,27.650000000000002,26.71,25.82,25.01,24.29,23.12,20.92,20.650000000000002,20.53,20.44,20.34,20.26,20.14,20.03,19.76,N/A,N/A +2012,11,23,22,30,102330,101140,99980,86.46000000000001,0,9.09,9.82,9.96,10,10.06,10.11,10.26,10.41,10.32,10.94,11.16,11.31,11.52,11.82,12.15,12.89,13.69,16.830000000000002,20.07,19.740000000000002,19.57,19.39,19.22,19.05,18.92,18.8,18.830000000000002,N/A,N/A +2012,11,23,23,30,102390,101190,100030,92.9,0,8.15,8.72,8.84,8.91,9,9.1,9.41,9.73,10.23,12.370000000000001,12.17,11.99,11.72,11.290000000000001,10.77,9.49,8.11,5.05,19.19,18.82,18.650000000000002,18.47,18.32,18.17,18.09,18.03,18.150000000000002,N/A,N/A +2012,11,24,0,30,102390,101190,100030,91.29,0,9.38,10.21,10.4,10.51,10.59,10.66,10.74,10.83,11.22,22.330000000000002,22.43,22.490000000000002,22.55,22.62,22.69,22.78,22.86,23.2,19.17,18.76,18.580000000000002,18.38,18.19,18.02,17.830000000000002,17.66,17.330000000000002,N/A,N/A +2012,11,24,1,30,102480,101270,100110,89.77,5.5,11.620000000000001,12.69,12.92,13.030000000000001,13.09,13.120000000000001,13.13,13.13,13.11,22.06,22.02,21.96,21.91,21.85,21.8,21.75,21.7,21.61,18.23,17.740000000000002,17.53,17.330000000000002,17.13,16.94,16.740000000000002,16.55,16.18,N/A,N/A +2012,11,24,2,30,102550,101340,100170,89.78,0,11.44,12.38,12.58,12.66,12.69,12.700000000000001,12.67,12.64,12.55,19.27,19.57,19.78,19.98,20.19,20.39,20.61,20.830000000000002,21.34,16.91,16.34,16.12,15.9,15.69,15.5,15.3,15.11,14.73,N/A,N/A +2012,11,24,3,30,102590,101370,100190,77.98,0,11.71,12.68,12.88,12.98,13.01,13.030000000000001,13.01,12.99,12.93,19.13,19.53,19.77,20,20.22,20.42,20.66,20.89,21.42,15.98,15.36,15.120000000000001,14.9,14.69,14.5,14.290000000000001,14.11,13.73,N/A,N/A +2012,11,24,4,30,102590,101370,100190,64.81,0,12.82,13.97,14.24,14.38,14.47,14.530000000000001,14.56,14.58,14.61,27.07,27.36,27.53,27.7,27.86,28.02,28.19,28.35,28.740000000000002,16.15,15.52,15.280000000000001,15.06,14.85,14.66,14.46,14.27,13.9,N/A,N/A +2012,11,24,5,30,102620,101400,100210,68.27,0,11.98,13.05,13.32,13.46,13.55,13.620000000000001,13.66,13.700000000000001,13.74,27.8,28.07,28.25,28.42,28.580000000000002,28.740000000000002,28.900000000000002,29.05,29.400000000000002,15.83,15.200000000000001,14.96,14.74,14.530000000000001,14.33,14.13,13.94,13.56,N/A,N/A +2012,11,24,6,30,102630,101410,100230,69.21000000000001,0,11.72,12.75,13.01,13.15,13.24,13.3,13.35,13.39,13.44,29.07,29.330000000000002,29.5,29.66,29.810000000000002,29.95,30.1,30.240000000000002,30.54,15.68,15.040000000000001,14.8,14.58,14.370000000000001,14.18,13.97,13.780000000000001,13.41,N/A,N/A +2012,11,24,7,30,102660,101440,100250,67.97,0,12.030000000000001,13.08,13.33,13.46,13.530000000000001,13.59,13.61,13.63,13.64,28.89,29.14,29.3,29.45,29.6,29.740000000000002,29.88,30.02,30.32,15.34,14.67,14.42,14.200000000000001,13.98,13.790000000000001,13.58,13.39,13.01,N/A,N/A +2012,11,24,8,30,102690,101460,100270,69.03,0,12.76,13.86,14.11,14.23,14.3,14.34,14.34,14.35,14.32,31.240000000000002,31.55,31.740000000000002,31.92,32.09,32.25,32.42,32.58,32.93,14.450000000000001,13.72,13.46,13.23,13.01,12.81,12.6,12.41,12.02,N/A,N/A +2012,11,24,9,30,102700,101470,100270,67.32000000000001,0,12.870000000000001,13.96,14.21,14.33,14.39,14.43,14.44,14.44,14.4,31.02,31.25,31.41,31.55,31.7,31.830000000000002,31.98,32.12,32.43,13.73,12.96,12.69,12.46,12.24,12.040000000000001,11.83,11.64,11.26,N/A,N/A +2012,11,24,10,30,102720,101490,100290,69.44,0,12.040000000000001,13.01,13.22,13.33,13.38,13.41,13.41,13.41,13.38,30.72,30.990000000000002,31.17,31.330000000000002,31.490000000000002,31.64,31.8,31.95,32.28,13.13,12.36,12.09,11.85,11.63,11.44,11.23,11.040000000000001,10.66,N/A,N/A +2012,11,24,11,30,102720,101490,100290,73.13,0,11.65,12.55,12.74,12.83,12.870000000000001,12.89,12.88,12.88,12.84,32.47,32.82,33.03,33.230000000000004,33.43,33.61,33.82,34.01,34.43,12.75,11.97,11.700000000000001,11.47,11.25,11.06,10.85,10.66,10.290000000000001,N/A,N/A +2012,11,24,12,30,102750,101510,100310,76.79,0,10.78,11.56,11.72,11.790000000000001,11.82,11.83,11.82,11.81,11.76,36.79,37.26,37.550000000000004,37.81,38.07,38.31,38.57,38.83,39.37,12.51,11.74,11.48,11.25,11.03,10.83,10.63,10.44,10.06,N/A,N/A +2012,11,24,13,30,102760,101530,100320,78.23,0,10.200000000000001,10.91,11.05,11.11,11.13,11.15,11.13,11.120000000000001,11.07,38.42,39,39.35,39.68,40.01,40.31,40.63,40.93,41.56,12.42,11.67,11.41,11.18,10.96,10.76,10.55,10.36,9.98,N/A,N/A +2012,11,24,14,30,102780,101540,100330,77.75,0,9.5,10.120000000000001,10.23,10.28,10.290000000000001,10.290000000000001,10.27,10.25,10.200000000000001,37.27,37.88,38.25,38.59,38.94,39.24,39.58,39.89,40.550000000000004,12.22,11.49,11.22,10.99,10.78,10.58,10.370000000000001,10.18,9.8,N/A,N/A +2012,11,24,15,30,102760,101520,100320,78.08,0,8.97,9.52,9.63,9.67,9.68,9.68,9.67,9.65,9.6,36.81,37.38,37.730000000000004,38.06,38.38,38.67,38.99,39.28,39.9,12.18,11.46,11.21,10.98,10.76,10.56,10.36,10.16,9.78,N/A,N/A +2012,11,24,16,30,102730,101490,100290,75.19,0,8,8.45,8.52,8.55,8.55,8.540000000000001,8.51,8.49,8.43,32.61,33.14,33.480000000000004,33.79,34.1,34.38,34.68,34.980000000000004,35.58,12.25,11.56,11.31,11.09,10.870000000000001,10.68,10.47,10.28,9.89,N/A,N/A +2012,11,24,17,30,102670,101430,100230,68.21000000000001,0,7.11,7.48,7.54,7.5600000000000005,7.55,7.54,7.5200000000000005,7.5,7.45,28.310000000000002,28.740000000000002,29.02,29.27,29.53,29.76,30.01,30.25,30.77,12.39,11.73,11.49,11.26,11.05,10.86,10.65,10.46,10.07,N/A,N/A +2012,11,24,18,30,102620,101380,100190,62.85,0,6.42,6.76,6.82,6.8500000000000005,6.8500000000000005,6.86,6.8500000000000005,6.8500000000000005,6.82,25.68,25.87,25.98,26.09,26.2,26.3,26.41,26.51,26.71,12.97,12.35,12.11,11.89,11.67,11.48,11.27,11.08,10.69,N/A,N/A +2012,11,24,19,30,102580,101350,100160,57.800000000000004,0,5.29,5.5600000000000005,5.61,5.64,5.65,5.66,5.66,5.66,5.66,26.28,26.27,26.25,26.240000000000002,26.23,26.22,26.21,26.2,26.19,13.66,13.09,12.86,12.65,12.43,12.25,12.030000000000001,11.84,11.450000000000001,N/A,N/A +2012,11,24,20,30,102520,101290,100100,54.050000000000004,0,4.7,4.93,4.98,5,5.01,5.0200000000000005,5.03,5.03,5.03,23.900000000000002,23.96,23.98,23.990000000000002,24.01,24.03,24.04,24.07,24.1,14.32,13.790000000000001,13.57,13.35,13.14,12.950000000000001,12.74,12.55,12.15,N/A,N/A +2012,11,24,21,30,102470,101250,100060,51.29,0,3.97,4.16,4.2,4.22,4.24,4.25,4.26,4.26,4.28,21.98,22.12,22.21,22.29,22.37,22.43,22.51,22.580000000000002,22.71,14.88,14.38,14.16,13.950000000000001,13.74,13.55,13.34,13.15,12.75,N/A,N/A +2012,11,24,22,30,102430,101210,100030,49.45,0,3.71,3.89,3.93,3.96,3.97,3.98,3.99,4,4.0200000000000005,24.79,24.740000000000002,24.72,24.7,24.68,24.66,24.650000000000002,24.63,24.61,15.38,14.9,14.69,14.48,14.27,14.08,13.870000000000001,13.68,13.280000000000001,N/A,N/A +2012,11,24,23,30,102400,101180,99990,49.19,0,3.65,3.8200000000000003,3.85,3.87,3.88,3.89,3.89,3.89,3.9,29.1,29.04,28.990000000000002,28.94,28.900000000000002,28.87,28.830000000000002,28.8,28.73,15.77,15.3,15.09,14.89,14.67,14.49,14.27,14.08,13.69,N/A,N/A +2012,11,25,0,30,102380,101170,99980,49.33,0,4.33,4.5200000000000005,4.55,4.5600000000000005,4.5600000000000005,4.5600000000000005,4.55,4.54,4.5200000000000005,33.71,33.79,33.83,33.86,33.89,33.93,33.97,33.99,34.05,15.94,15.46,15.25,15.040000000000001,14.83,14.64,14.43,14.24,13.84,N/A,N/A +2012,11,25,1,30,102360,101140,99950,50.730000000000004,0,4.62,4.78,4.78,4.76,4.73,4.71,4.68,4.64,4.58,31.11,32.2,32.86,33.49,34.1,34.65,35.24,35.78,36.93,15.74,15.26,15.05,14.84,14.63,14.450000000000001,14.24,14.05,13.66,N/A,N/A +2012,11,25,2,30,102340,101120,99940,51.32,0,3.95,4.07,4.0600000000000005,4.04,4.0200000000000005,3.99,3.96,3.93,3.86,55.33,55.96,56.31,56.660000000000004,57,57.31,57.660000000000004,57.99,58.7,15.72,15.24,15.030000000000001,14.83,14.620000000000001,14.44,14.23,14.040000000000001,13.65,N/A,N/A +2012,11,25,3,30,102300,101080,99900,55.72,0,3.61,3.7600000000000002,3.7800000000000002,3.79,3.79,3.79,3.79,3.7800000000000002,3.7800000000000002,61.92,63.18,63.870000000000005,64.51,65.11,65.66,66.24,66.78,67.89,15.790000000000001,15.32,15.11,14.91,14.700000000000001,14.51,14.31,14.11,13.72,N/A,N/A +2012,11,25,4,30,102250,101040,99860,59.19,0,3.3200000000000003,3.48,3.5100000000000002,3.5300000000000002,3.5500000000000003,3.56,3.5700000000000003,3.58,3.59,73.58,74.75,75.43,76.06,76.66,77.2,77.76,78.28,79.36,15.89,15.43,15.23,15.02,14.82,14.63,14.42,14.23,13.84,N/A,N/A +2012,11,25,5,30,102200,100990,99810,61.63,0,3.19,3.31,3.33,3.33,3.33,3.3200000000000003,3.3200000000000003,3.31,3.3000000000000003,96.52,97.22,97.60000000000001,97.96000000000001,98.31,98.64,98.97,99.27,99.95,16.17,15.72,15.51,15.31,15.1,14.92,14.71,14.52,14.13,N/A,N/A +2012,11,25,6,30,102180,100970,99790,58.82,0,3.16,3.27,3.2800000000000002,3.2800000000000002,3.27,3.27,3.2600000000000002,3.25,3.23,118.45,119.09,119.5,119.89,120.27,120.62,121,121.36,122.12,16.47,16.03,15.83,15.63,15.43,15.24,15.030000000000001,14.84,14.450000000000001,N/A,N/A +2012,11,25,7,30,102160,100950,99770,60.75,0,3.09,3.18,3.18,3.18,3.16,3.15,3.14,3.13,3.1,130.24,130.93,131.38,131.82,132.24,132.63,133.05,133.45,134.28,16.71,16.28,16.080000000000002,15.88,15.68,15.49,15.290000000000001,15.1,14.71,N/A,N/A +2012,11,25,8,30,102120,100910,99740,62.33,0,2.54,2.65,2.67,2.68,2.69,2.7,2.71,2.71,2.72,145.72,146.01,146.22,146.42000000000002,146.62,146.8,147,147.18,147.56,16.97,16.55,16.36,16.15,15.950000000000001,15.76,15.56,15.370000000000001,14.98,N/A,N/A +2012,11,25,9,30,102090,100880,99710,62.78,0,2.7800000000000002,2.89,2.91,2.92,2.92,2.92,2.92,2.92,2.92,147.11,147.85,148.29,148.70000000000002,149.09,149.45000000000002,149.83,150.18,150.91,17.18,16.77,16.57,16.37,16.17,15.98,15.77,15.58,15.19,N/A,N/A +2012,11,25,10,30,102070,100860,99690,63.690000000000005,0,2.19,2.3000000000000003,2.33,2.35,2.37,2.38,2.4,2.41,2.43,156.03,156.61,157,157.37,157.71,158.03,158.37,158.67000000000002,159.31,17.45,17.06,16.86,16.66,16.46,16.27,16.07,15.88,15.49,N/A,N/A +2012,11,25,11,30,102060,100850,99680,64.52,0,2.2,2.32,2.36,2.38,2.4,2.42,2.44,2.46,2.5,156.59,156.98,157.27,157.54,157.8,158.04,158.28,158.52,159.02,17.6,17.21,17.02,16.82,16.62,16.43,16.23,16.04,15.65,N/A,N/A +2012,11,25,12,30,102050,100840,99680,65.58,0,2.41,2.54,2.57,2.6,2.62,2.64,2.66,2.68,2.71,155.11,155.5,155.75,155.98,156.20000000000002,156.4,156.61,156.81,157.22,17.830000000000002,17.44,17.25,17.05,16.85,16.66,16.46,16.27,15.88,N/A,N/A +2012,11,25,13,30,102040,100830,99670,68.08,0,2.67,2.81,2.85,2.87,2.9,2.92,2.94,2.95,2.99,154.74,155.23,155.58,155.9,156.20000000000002,156.48,156.78,157.05,157.63,18.01,17.63,17.44,17.240000000000002,17.04,16.85,16.65,16.46,16.07,N/A,N/A +2012,11,25,14,30,102050,100850,99680,70.53,0,3.16,3.34,3.39,3.43,3.45,3.48,3.5,3.52,3.5500000000000003,144.52,144.99,145.33,145.64000000000001,145.94,146.22,146.51,146.77,147.32,18.23,17.85,17.66,17.46,17.26,17.07,16.87,16.68,16.29,N/A,N/A +2012,11,25,15,30,102040,100840,99670,70.56,0,3.6,3.79,3.83,3.85,3.86,3.87,3.87,3.88,3.88,147.91,148.45000000000002,148.81,149.17000000000002,149.5,149.8,150.13,150.43,151.07,18.490000000000002,18.11,17.92,17.72,17.53,17.34,17.13,16.95,16.55,N/A,N/A +2012,11,25,16,30,102010,100810,99650,73.2,0,3.93,4.16,4.22,4.25,4.28,4.3,4.32,4.33,4.36,144.36,144.87,145.22,145.55,145.85,146.14000000000001,146.44,146.72,147.29,18.68,18.31,18.12,17.92,17.72,17.53,17.330000000000002,17.150000000000002,16.76,N/A,N/A +2012,11,25,17,30,101940,100750,99590,73.86,0,3.61,3.83,3.89,3.92,3.96,3.98,4,4.0200000000000005,4.0600000000000005,146.16,146.6,146.86,147.11,147.33,147.53,147.74,147.93,148.35,18.900000000000002,18.54,18.36,18.150000000000002,17.96,17.77,17.57,17.38,16.990000000000002,N/A,N/A +2012,11,25,18,30,101920,100720,99570,75.94,0,4.3100000000000005,4.59,4.67,4.72,4.75,4.78,4.8100000000000005,4.83,4.87,148.9,149.21,149.42000000000002,149.63,149.81,149.99,150.17000000000002,150.34,150.69,19.240000000000002,18.88,18.69,18.490000000000002,18.3,18.11,17.91,17.72,17.330000000000002,N/A,N/A +2012,11,25,19,30,101870,100680,99520,77.03,0,4.21,4.46,4.5200000000000005,4.5600000000000005,4.58,4.6000000000000005,4.61,4.62,4.64,140.05,140.65,141.06,141.46,141.84,142.19,142.57,142.91,143.68,19.400000000000002,19.05,18.87,18.67,18.48,18.29,18.09,17.900000000000002,17.52,N/A,N/A +2012,11,25,20,30,101820,100630,99470,77.63,0,4.23,4.53,4.61,4.65,4.69,4.72,4.74,4.76,4.79,141.65,142.08,142.37,142.65,142.91,143.15,143.4,143.63,144.12,19.69,19.36,19.18,18.98,18.78,18.6,18.39,18.21,17.82,N/A,N/A +2012,11,25,21,30,101770,100580,99430,77.32000000000001,0,4.64,4.96,5.03,5.07,5.1000000000000005,5.12,5.13,5.15,5.16,142.71,143.21,143.55,143.87,144.18,144.46,144.77,145.05,145.67000000000002,19.93,19.6,19.43,19.23,19.04,18.85,18.650000000000002,18.47,18.080000000000002,N/A,N/A +2012,11,25,22,30,101740,100550,99400,79.26,0,5.17,5.58,5.7,5.76,5.82,5.86,5.89,5.92,5.97,139.81,140.31,140.65,140.96,141.25,141.52,141.81,142.07,142.65,20.12,19.81,19.64,19.45,19.26,19.07,18.87,18.69,18.3,N/A,N/A +2012,11,25,23,30,101710,100530,99380,79.89,0,5.82,6.29,6.41,6.47,6.5200000000000005,6.55,6.57,6.58,6.61,140.96,141.27,141.5,141.74,141.97,142.18,142.41,142.62,143.08,20.35,20.05,19.88,19.69,19.5,19.31,19.12,18.93,18.54,N/A,N/A +2012,11,26,0,30,101710,100520,99380,80.60000000000001,0,6.12,6.7,6.86,6.96,7.03,7.08,7.13,7.16,7.22,141.55,141.96,142.24,142.54,142.8,143.05,143.32,143.56,144.09,20.63,20.36,20.2,20,19.82,19.63,19.44,19.26,18.88,N/A,N/A +2012,11,26,1,30,101680,100500,99350,83.11,0,6.48,7.07,7.23,7.33,7.41,7.48,7.57,7.65,7.9,148.41,148.53,148.62,148.74,148.87,149.01,149.20000000000002,149.39000000000001,149.98,20.81,20.56,20.41,20.23,20.05,19.88,19.69,19.52,19.17,N/A,N/A +2012,11,26,2,30,101660,100480,99340,86.32000000000001,0,5.84,6.63,6.96,7.25,7.51,7.75,7.98,8.19,8.57,148.02,148.35,148.64000000000001,149.07,149.52,149.99,150.57,151.13,152.6,20.97,20.79,20.67,20.53,20.400000000000002,20.27,20.13,20,19.71,N/A,N/A +2012,11,26,3,30,101630,100450,99310,87.47,0,6.63,7.5600000000000005,7.9,8.19,8.45,8.68,8.89,9.09,9.450000000000001,152.62,153.08,153.44,153.91,154.42000000000002,154.96,155.55,156.12,157.38,21.23,21.06,20.94,20.79,20.650000000000002,20.5,20.35,20.2,19.89,N/A,N/A +2012,11,26,4,30,101590,100410,99270,88.51,0,6.21,7.19,7.59,7.95,8.28,8.58,8.870000000000001,9.14,9.63,152.03,152.86,153.51,154.43,155.46,156.58,157.78,158.96,160.93,21.32,21.19,21.09,20.97,20.85,20.73,20.6,20.48,20.2,N/A,N/A +2012,11,26,5,30,101580,100400,99260,91.24,0,5.46,6.41,6.8100000000000005,7.18,7.5200000000000005,7.84,8.16,8.46,9.06,150.95000000000002,151.74,152.46,153.51,154.65,155.89000000000001,157.31,158.71,162.06,21.29,21.17,21.080000000000002,20.97,20.85,20.740000000000002,20.62,20.51,20.29,N/A,N/A +2012,11,26,6,30,101580,100400,99260,92.7,0,5.19,6.08,6.47,6.87,7.2700000000000005,7.68,8.120000000000001,8.55,9.36,145.3,146.65,147.79,149.37,150.97,152.65,154.14000000000001,155.49,157.41,21.42,21.29,21.2,21.1,21,20.92,20.830000000000002,20.75,20.55,N/A,N/A +2012,11,26,7,30,101580,100400,99260,94.52,0,4.94,5.99,6.47,6.96,7.41,7.8500000000000005,8.290000000000001,8.700000000000001,9.6,152.82,155.16,156.96,159.35,161.8,164.36,167.16,169.89000000000001,175.52,21.54,21.44,21.36,21.26,21.17,21.07,20.96,20.86,20.63,N/A,N/A +2012,11,26,8,30,101560,100380,99250,95.7,0,4.62,5.65,6.1000000000000005,6.55,6.94,7.3,7.66,7.99,9.25,166.17000000000002,168.58,170.52,172.9,175.27,177.73,180.16,182.47,187.06,21.59,21.5,21.44,21.35,21.27,21.19,21.11,21.03,20.89,N/A,N/A +2012,11,26,9,30,101570,100400,99260,95.06,0,5.46,6.72,7.32,7.92,8.47,8.99,9.49,9.96,10.74,183.16,184.32,185.32,186.22,186.9,187.42000000000002,187.88,188.29,189.4,21.81,21.830000000000002,21.81,21.75,21.68,21.59,21.5,21.41,21.21,N/A,N/A +2012,11,26,10,30,101580,100410,99280,93.61,0,6.25,7.640000000000001,8.23,8.78,9.22,9.6,9.9,10.15,10.5,191.65,191.91,192.28,192.99,193.77,194.67000000000002,195.64000000000001,196.6,198.94,22.13,22.17,22.150000000000002,22.09,22.02,21.93,21.830000000000002,21.72,21.44,N/A,N/A +2012,11,26,11,30,101590,100420,99290,94.10000000000001,0,5.5200000000000005,6.87,7.43,7.92,8.36,8.77,9.17,9.55,10.21,192.72,194.14000000000001,195.47,197.43,199.34,201.3,203.11,204.77,207.74,22.03,22.1,22.09,22.04,21.98,21.89,21.79,21.68,21.43,N/A,N/A +2012,11,26,12,30,101610,100440,99300,94.95,0,4.44,5.82,6.43,7.0200000000000005,7.51,7.930000000000001,8.27,8.57,8.97,192.99,195.6,197.8,200.74,203.68,206.73000000000002,209.26,211.46,214.27,21.84,21.900000000000002,21.91,21.900000000000002,21.86,21.81,21.71,21.6,21.32,N/A,N/A +2012,11,26,13,30,101620,100450,99320,95.39,0,3.45,4.82,5.41,5.94,6.44,6.94,7.42,7.88,8.370000000000001,201.27,204.83,207.70000000000002,211.47,214.79,217.86,219.79,221.18,221.71,21.77,21.91,21.93,21.89,21.830000000000002,21.740000000000002,21.64,21.54,21.25,N/A,N/A +2012,11,26,14,30,101670,100490,99360,96.37,0,2.87,4.14,4.74,5.34,6.1000000000000005,7.08,7.61,7.91,8.65,198.18,202.48000000000002,205.69,209.25,212.6,216.09,217.46,217.85,217.93,21.6,21.7,21.72,21.72,21.71,21.7,21.62,21.52,21.29,N/A,N/A +2012,11,26,15,30,101670,100500,99360,97,0,2.99,4.2,4.82,5.5600000000000005,6.54,7.8500000000000005,8.41,8.64,9.200000000000001,195.29,200.58,204.43,208.49,211,212.25,212.70000000000002,212.81,213.25,21.61,21.68,21.72,21.740000000000002,21.81,21.900000000000002,21.87,21.8,21.61,N/A,N/A +2012,11,26,16,30,101680,100510,99370,97.72,0,2.82,3.94,4.54,5.23,6.09,7.18,7.78,8.15,8.9,185.61,191.42000000000002,195.21,198.19,202.73000000000002,209.07,212.27,213.95000000000002,216.17000000000002,21.71,21.71,21.72,21.72,21.78,21.89,21.88,21.82,21.67,N/A,N/A +2012,11,26,17,30,101690,100510,99380,94.01,0,3.99,5,5.48,5.99,6.47,6.94,7.37,7.7700000000000005,9.19,205.21,207.81,209.66,211.66,213.34,214.82,215.57,216.02,218.07,22.150000000000002,22.11,22.07,22.02,21.95,21.88,21.79,21.69,21.6,N/A,N/A +2012,11,26,18,30,101660,100490,99350,92.55,0,4.28,5.3500000000000005,5.8500000000000005,6.4,6.91,7.4,7.88,8.34,9.35,216.42000000000002,217.33,218.01,218.78,219.45000000000002,220.09,220.6,221.05,221.53,22.39,22.32,22.27,22.21,22.150000000000002,22.080000000000002,22.01,21.94,21.79,N/A,N/A +2012,11,26,19,30,101670,100500,99360,92.48,0,4.58,5.55,5.96,6.4,6.8,7.19,7.58,7.94,8.73,202.57,204.65,206.18,208.03,209.71,211.32,212.70000000000002,213.93,215.89000000000001,22.47,22.39,22.330000000000002,22.25,22.17,22.080000000000002,21.990000000000002,21.900000000000002,21.7,N/A,N/A +2012,11,26,20,30,101660,100490,99360,92.42,0,4.19,5.2700000000000005,5.75,6.25,6.7,7.11,7.51,7.87,8.64,198.79,201.01,202.59,204.44,206.04,207.5,208.72,209.79,211.82,22.490000000000002,22.44,22.400000000000002,22.330000000000002,22.26,22.17,22.07,21.97,21.76,N/A,N/A +2012,11,26,21,30,101660,100490,99360,93.13,0,3.99,5.24,5.84,6.46,7.0200000000000005,7.54,8.01,8.44,9.33,207.66,209.3,210.5,211.85,213.06,214.18,215.13,215.97,217.43,22.44,22.47,22.45,22.42,22.37,22.31,22.22,22.14,21.95,N/A,N/A +2012,11,26,22,30,101670,100500,99370,93.25,0,3.96,5.23,5.8,6.390000000000001,6.92,7.42,7.97,8.52,9.05,203.59,206.6,208.76,211.06,212.99,214.68,216.27,217.77,218.86,22.3,22.400000000000002,22.41,22.39,22.35,22.3,22.23,22.17,21.93,N/A,N/A +2012,11,26,23,30,101700,100520,99390,93.92,0,3.65,4.98,5.58,6.19,6.83,7.55,7.930000000000001,8.15,8.620000000000001,203.57,207.1,209.69,212.56,215.44,218.48000000000002,219.83,220.48000000000002,221.73000000000002,22.080000000000002,22.26,22.31,22.330000000000002,22.34,22.330000000000002,22.26,22.17,21.93,N/A,N/A +2012,11,27,0,30,101710,100540,99410,94.43,0,3.69,5.0200000000000005,5.63,6.25,6.88,7.55,7.890000000000001,8.08,8.47,197.13,202.37,206.31,210.82,214.75,218.37,219.97,220.69,222,21.95,22.18,22.27,22.34,22.38,22.41,22.36,22.28,22.07,N/A,N/A +2012,11,27,1,30,101740,100570,99440,95.34,0,2.99,4.36,5.07,5.97,6.53,6.78,7.05,7.3,7.7700000000000005,200.51,204.56,208.61,215.5,219.75,221.52,223.01,224.32,226.13,21.830000000000002,22.06,22.19,22.35,22.400000000000002,22.38,22.35,22.32,22.17,N/A,N/A +2012,11,27,2,30,101770,100600,99470,95.19,0,3.37,4.75,5.44,6.18,6.6000000000000005,6.74,6.92,7.12,7.48,192.94,199.8,205.41,212.84,217.37,219.38,220.97,222.33,224.67000000000002,21.81,22.1,22.240000000000002,22.37,22.43,22.43,22.400000000000002,22.37,22.240000000000002,N/A,N/A +2012,11,27,3,30,101800,100620,99490,95.52,0,3.65,5.07,5.8,6.62,7.1000000000000005,7.2700000000000005,7.390000000000001,7.49,7.69,203.9,208.61,212.61,218.19,222.21,224.84,226.88,228.59,230.99,21.75,22.02,22.17,22.35,22.41,22.39,22.38,22.36,22.22,N/A,N/A +2012,11,27,4,30,101810,100640,99500,95.44,0,3.81,5.19,5.9,6.74,7.34,7.74,7.87,7.88,7.96,220.29,222.32,224.28,227.59,231.24,235.20000000000002,237.36,238.70000000000002,241.46,21.77,21.96,22.07,22.22,22.29,22.32,22.27,22.21,22.06,N/A,N/A +2012,11,27,5,30,101830,100650,99520,95.24,0,4.45,5.76,6.4,7.140000000000001,7.76,8.31,8.45,8.44,8.31,219.55,221.72,223.57,226.23000000000002,229.23000000000002,232.58,235.37,237.72,239.87,21.79,21.92,21.98,22.07,22.150000000000002,22.2,22.17,22.12,21.91,N/A,N/A +2012,11,27,6,30,101850,100680,99540,95.07000000000001,0,4.67,5.96,6.55,7.17,7.7700000000000005,8.370000000000001,8.66,8.84,8.69,233.15,233.91,234.61,235.84,237.52,239.64000000000001,242.46,245.32,247.21,21.79,21.88,21.91,21.93,21.96,22.01,22.01,22,21.75,N/A,N/A +2012,11,27,7,30,101900,100720,99580,95.26,0,4.72,5.98,6.53,7.08,7.58,8.06,8.55,9.02,9.47,239.08,240.33,241.17000000000002,242.29,243.39000000000001,244.51,246.13,247.86,252.78,21.75,21.78,21.77,21.73,21.69,21.63,21.59,21.56,21.5,N/A,N/A +2012,11,27,8,30,101890,100700,99550,85.58,0,3.35,3.8000000000000003,3.93,4.0600000000000005,4.19,4.3,4.42,4.53,4.73,305.7,306.39,306.8,307.22,307.99,308.77,309.94,311.12,313.8,21.11,20.82,20.64,20.47,20.28,20.11,19.91,19.73,19.36,N/A,N/A +2012,11,27,9,30,102020,100820,99660,86.18,0,10.11,10.89,11.040000000000001,11.09,11.09,11.06,11.01,10.96,10.82,336.77,337.15000000000003,337.41,337.65000000000003,337.89,338.11,338.35,338.58,339.1,18.47,18.01,17.81,17.6,17.400000000000002,17.21,17.02,16.84,16.46,N/A,N/A +2012,11,27,10,30,102050,100850,99680,83.47,0,7.78,8.3,8.4,8.44,8.44,8.44,8.43,8.41,8.39,340.87,341.07,341.28000000000003,341.49,341.72,341.93,342.22,342.5,343.36,17.82,17.36,17.16,16.96,16.76,16.580000000000002,16.38,16.2,15.82,N/A,N/A +2012,11,27,11,30,102160,100950,99780,83.3,0,11,11.86,12.030000000000001,12.09,12.09,12.08,12.040000000000001,12,11.870000000000001,335.16,335.53000000000003,335.73,335.93,336.12,336.31,336.52,336.71,337.18,16.740000000000002,16.16,15.93,15.71,15.5,15.31,15.11,14.92,14.540000000000001,N/A,N/A +2012,11,27,12,30,102240,101030,99850,81.23,0,11.05,11.94,12.13,12.21,12.25,12.26,12.25,12.24,12.19,339.72,339.89,340,340.1,340.21,340.31,340.43,340.55,340.87,16.23,15.63,15.39,15.18,14.97,14.780000000000001,14.58,14.39,14.02,N/A,N/A +2012,11,27,13,30,102270,101060,99880,81.34,0,10.53,11.32,11.47,11.540000000000001,11.56,11.56,11.55,11.53,11.49,351.61,351.83,351.97,352.11,352.26,352.41,352.59000000000003,352.78000000000003,353.31,15.97,15.370000000000001,15.14,14.93,14.73,14.55,14.35,14.17,13.8,N/A,N/A +2012,11,27,14,30,102270,101060,99880,82.15,0,10.09,10.82,10.96,11.02,11.040000000000001,11.040000000000001,11.040000000000001,11.03,11.03,4.76,4.94,5.1000000000000005,5.26,5.43,5.59,5.8,6.0200000000000005,6.61,15.8,15.21,14.98,14.77,14.57,14.38,14.19,14.01,13.64,N/A,N/A +2012,11,27,15,30,102370,101160,99980,82.89,0,8.51,9.08,9.200000000000001,9.24,9.27,9.28,9.27,9.27,9.25,356.12,356.34000000000003,356.56,356.77,356.98,357.19,357.43,357.66,358.24,15.88,15.31,15.09,14.870000000000001,14.67,14.48,14.280000000000001,14.09,13.71,N/A,N/A +2012,11,27,16,30,102440,101220,100040,83.23,0,9.19,9.82,9.950000000000001,9.99,10.01,10.01,10,9.98,9.92,342.99,343.3,343.47,343.64,343.8,343.96,344.15000000000003,344.33,344.77,15.72,15.120000000000001,14.89,14.67,14.47,14.27,14.07,13.88,13.5,N/A,N/A +2012,11,27,17,30,102410,101190,100010,87.2,0,9.44,10.08,10.22,10.26,10.28,10.28,10.26,10.24,10.17,353.89,354.08,354.19,354.3,354.42,354.53000000000003,354.65000000000003,354.77,355.06,15.55,14.950000000000001,14.71,14.49,14.280000000000001,14.09,13.89,13.700000000000001,13.32,N/A,N/A +2012,11,27,18,30,102420,101210,100020,86.78,0,9.65,10.33,10.48,10.540000000000001,10.56,10.57,10.56,10.540000000000001,10.49,352.5,353,353.28000000000003,353.55,353.81,354.05,354.31,354.56,355.08,15.4,14.780000000000001,14.540000000000001,14.32,14.11,13.91,13.71,13.52,13.13,N/A,N/A +2012,11,27,19,30,102450,101230,100050,85.3,0,8.67,9.290000000000001,9.44,9.52,9.58,9.620000000000001,9.64,9.66,9.68,3.69,3.65,3.62,3.58,3.54,3.5100000000000002,3.47,3.44,3.37,15.11,14.5,14.27,14.05,13.83,13.64,13.43,13.24,12.85,N/A,N/A +2012,11,27,20,30,102440,101230,100040,81.11,0,8.6,9.22,9.38,9.46,9.52,9.56,9.59,9.61,9.64,358.13,358.03000000000003,357.97,357.91,357.86,357.81,357.77,357.73,357.65000000000003,15.9,15.33,15.1,14.88,14.67,14.47,14.26,14.07,13.67,N/A,N/A +2012,11,27,21,30,102480,101260,100080,80.4,0,8.63,9.22,9.36,9.43,9.47,9.49,9.5,9.5,9.49,359.43,359.54,359.64,359.74,359.85,359.94,0.06,0.16,0.41000000000000003,15.870000000000001,15.290000000000001,15.06,14.84,14.620000000000001,14.42,14.21,14.02,13.620000000000001,N/A,N/A +2012,11,27,22,30,102520,101300,100120,80.84,0,8.950000000000001,9.540000000000001,9.66,9.700000000000001,9.72,9.72,9.71,9.69,9.64,11.13,11.01,10.89,10.78,10.67,10.56,10.44,10.33,10.07,15.48,14.88,14.64,14.42,14.21,14.01,13.8,13.61,13.22,N/A,N/A +2012,11,27,23,30,102560,101340,100160,82.59,0,8.96,9.56,9.68,9.73,9.74,9.74,9.73,9.71,9.65,20.34,20.21,20.06,19.91,19.76,19.62,19.46,19.330000000000002,19.03,15.15,14.530000000000001,14.3,14.07,13.85,13.66,13.450000000000001,13.26,12.86,N/A,N/A +2012,11,28,0,30,102630,101400,100210,82.15,0,7.75,8.23,8.33,8.370000000000001,8.4,8.41,8.42,8.42,8.41,19.04,19.23,19.36,19.490000000000002,19.61,19.73,19.85,19.97,20.23,14.63,14.030000000000001,13.790000000000001,13.57,13.35,13.16,12.950000000000001,12.76,12.370000000000001,N/A,N/A +2012,11,28,1,30,102650,101420,100230,80.24,0,7.46,7.95,8.05,8.11,8.14,8.17,8.18,8.19,8.21,24.13,23.990000000000002,23.92,23.86,23.8,23.740000000000002,23.68,23.63,23.52,14.780000000000001,14.18,13.950000000000001,13.73,13.52,13.33,13.120000000000001,12.93,12.540000000000001,N/A,N/A +2012,11,28,2,30,102660,101440,100250,79.95,0,8.370000000000001,8.92,9.03,9.07,9.09,9.1,9.09,9.09,9.05,29.21,29.18,29.11,29.04,28.97,28.91,28.84,28.78,28.64,15.030000000000001,14.42,14.19,13.97,13.75,13.56,13.35,13.15,12.76,N/A,N/A +2012,11,28,3,30,102670,101450,100260,79.13,0,8.48,9.040000000000001,9.15,9.19,9.21,9.21,9.200000000000001,9.19,9.14,31.19,31.34,31.44,31.52,31.6,31.66,31.73,31.8,31.94,14.89,14.280000000000001,14.040000000000001,13.82,13.6,13.41,13.200000000000001,13.01,12.61,N/A,N/A +2012,11,28,4,30,102660,101430,100240,77.49,0,8.74,9.32,9.43,9.48,9.49,9.5,9.49,9.47,9.43,31.26,31.55,31.7,31.84,31.970000000000002,32.08,32.2,32.32,32.55,14.57,13.94,13.700000000000001,13.48,13.27,13.07,12.86,12.67,12.280000000000001,N/A,N/A +2012,11,28,5,30,102660,101430,100240,77.99,0,7.61,8.07,8.16,8.19,8.2,8.2,8.19,8.18,8.13,38.34,38.71,38.910000000000004,39.11,39.300000000000004,39.480000000000004,39.67,39.84,40.230000000000004,14.46,13.86,13.63,13.41,13.200000000000001,13.01,12.790000000000001,12.6,12.21,N/A,N/A +2012,11,28,6,30,102660,101440,100250,83.35000000000001,0,7.43,7.86,7.930000000000001,7.95,7.95,7.95,7.930000000000001,7.9,7.8500000000000005,41.82,42.300000000000004,42.61,42.89,43.160000000000004,43.4,43.67,43.92,44.45,14.6,14,13.77,13.55,13.34,13.15,12.94,12.74,12.35,N/A,N/A +2012,11,28,7,30,102700,101470,100280,83.67,0,7.15,7.57,7.65,7.68,7.69,7.69,7.68,7.67,7.640000000000001,43.99,44.550000000000004,44.9,45.22,45.52,45.800000000000004,46.09,46.36,46.92,14.6,14,13.77,13.55,13.34,13.15,12.94,12.74,12.35,N/A,N/A +2012,11,28,8,30,102710,101480,100290,80.42,0,7.6000000000000005,8.07,8.15,8.18,8.19,8.19,8.18,8.17,8.120000000000001,47.24,47.58,47.78,47.96,48.14,48.31,48.480000000000004,48.65,49,14.69,14.09,13.85,13.63,13.42,13.22,13.01,12.82,12.43,N/A,N/A +2012,11,28,9,30,102720,101490,100300,79.63,0,7.15,7.5600000000000005,7.62,7.640000000000001,7.640000000000001,7.640000000000001,7.62,7.6000000000000005,7.54,47.72,48.11,48.32,48.52,48.71,48.89,49.08,49.26,49.64,14.65,14.06,13.83,13.61,13.4,13.200000000000001,12.99,12.8,12.41,N/A,N/A +2012,11,28,10,30,102770,101540,100350,80.71000000000001,0,7.03,7.41,7.47,7.48,7.47,7.46,7.43,7.41,7.34,48.230000000000004,48.550000000000004,48.75,48.93,49.120000000000005,49.28,49.46,49.63,49.99,14.530000000000001,13.94,13.700000000000001,13.48,13.27,13.08,12.870000000000001,12.68,12.290000000000001,N/A,N/A +2012,11,28,11,30,102810,101580,100390,80.55,0,7.36,7.7700000000000005,7.83,7.84,7.84,7.82,7.8,7.7700000000000005,7.7,43.77,44.13,44.37,44.58,44.79,44.980000000000004,45.19,45.39,45.800000000000004,14.39,13.790000000000001,13.55,13.34,13.120000000000001,12.93,12.72,12.530000000000001,12.14,N/A,N/A +2012,11,28,12,30,102850,101620,100430,83,0,7.47,7.9,7.96,7.98,7.98,7.97,7.95,7.930000000000001,7.87,38.78,39.37,39.72,40.04,40.36,40.65,40.96,41.25,41.87,14.08,13.47,13.23,13.01,12.8,12.61,12.4,12.21,11.82,N/A,N/A +2012,11,28,13,30,102890,101660,100460,84.64,0,7.45,7.86,7.930000000000001,7.95,7.94,7.930000000000001,7.91,7.890000000000001,7.83,37.67,38.31,38.7,39.06,39.410000000000004,39.730000000000004,40.08,40.410000000000004,41.12,13.8,13.17,12.94,12.72,12.5,12.31,12.1,11.92,11.53,N/A,N/A +2012,11,28,14,30,102930,101700,100500,84.03,0,7.0600000000000005,7.43,7.48,7.49,7.48,7.47,7.44,7.42,7.3500000000000005,36.07,36.72,37.13,37.51,37.89,38.230000000000004,38.62,38.980000000000004,39.74,13.620000000000001,13.01,12.77,12.55,12.34,12.15,11.94,11.75,11.370000000000001,N/A,N/A +2012,11,28,15,30,102950,101710,100520,83.79,0,6.95,7.32,7.36,7.37,7.36,7.3500000000000005,7.32,7.3,7.23,36.980000000000004,37.59,37.95,38.29,38.62,38.93,39.28,39.61,40.31,13.63,13.02,12.790000000000001,12.57,12.36,12.17,11.96,11.78,11.39,N/A,N/A +2012,11,28,16,30,102920,101690,100490,82.69,0,6.67,7.01,7.05,7.0600000000000005,7.05,7.04,7.01,6.99,6.92,37.480000000000004,37.97,38.29,38.59,38.88,39.15,39.45,39.730000000000004,40.33,13.76,13.16,12.93,12.71,12.5,12.31,12.11,11.92,11.53,N/A,N/A +2012,11,28,17,30,102900,101670,100470,80.05,0,6.03,6.32,6.3500000000000005,6.36,6.3500000000000005,6.34,6.3100000000000005,6.29,6.23,38.410000000000004,38.95,39.27,39.58,39.88,40.160000000000004,40.47,40.76,41.38,13.99,13.41,13.19,12.97,12.76,12.57,12.370000000000001,12.18,11.790000000000001,N/A,N/A +2012,11,28,18,30,102860,101630,100440,73.79,0,5.37,5.61,5.64,5.64,5.63,5.62,5.6000000000000005,5.58,5.5200000000000005,34.84,35.15,35.34,35.52,35.7,35.86,36.050000000000004,36.22,36.6,14.33,13.780000000000001,13.55,13.35,13.14,12.950000000000001,12.75,12.56,12.17,N/A,N/A +2012,11,28,19,30,102830,101600,100410,68.82000000000001,0,4.8100000000000005,5.0200000000000005,5.05,5.0600000000000005,5.0600000000000005,5.05,5.04,5.03,5,36.46,36.58,36.63,36.68,36.730000000000004,36.77,36.83,36.88,36.96,14.870000000000001,14.35,14.13,13.92,13.72,13.530000000000001,13.32,13.13,12.75,N/A,N/A +2012,11,28,20,30,102780,101560,100370,64.61,0,4.29,4.5,4.53,4.55,4.55,4.5600000000000005,4.5600000000000005,4.5600000000000005,4.55,45.88,45.77,45.67,45.59,45.480000000000004,45.39,45.29,45.18,44.95,15.43,14.93,14.72,14.52,14.31,14.13,13.92,13.73,13.34,N/A,N/A +2012,11,28,21,30,102740,101520,100340,62.370000000000005,0,4.12,4.32,4.36,4.38,4.39,4.4,4.41,4.42,4.42,53.26,53.03,52.88,52.72,52.57,52.43,52.25,52.09,51.71,15.99,15.52,15.31,15.1,14.9,14.71,14.51,14.32,13.93,N/A,N/A +2012,11,28,22,30,102700,101480,100300,63.29,0,4.15,4.3500000000000005,4.39,4.42,4.43,4.44,4.44,4.45,4.46,60.43,60.17,59.980000000000004,59.81,59.61,59.44,59.22,59.03,58.6,16.43,15.97,15.76,15.56,15.36,15.17,14.96,14.780000000000001,14.39,N/A,N/A +2012,11,28,23,30,102690,101480,100290,63.35,0,4.84,5.09,5.14,5.16,5.17,5.18,5.18,5.18,5.17,71.22,70.81,70.56,70.31,70.07000000000001,69.85000000000001,69.59,69.35000000000001,68.83,16.75,16.29,16.080000000000002,15.88,15.68,15.49,15.280000000000001,15.09,14.71,N/A,N/A +2012,11,29,0,30,102700,101490,100310,66.26,0,4.98,5.25,5.3,5.32,5.33,5.34,5.34,5.34,5.34,74.99,74.65,74.43,74.23,74.02,73.82000000000001,73.62,73.42,72.97,16.830000000000002,16.37,16.16,15.96,15.76,15.57,15.370000000000001,15.18,14.790000000000001,N/A,N/A +2012,11,29,1,30,102700,101480,100300,64.61,0,5.37,5.71,5.79,5.84,5.87,5.89,5.91,5.92,5.95,74.3,74.55,74.69,74.81,74.93,75.03,75.13,75.23,75.41,17.14,16.68,16.48,16.27,16.06,15.870000000000001,15.67,15.48,15.08,N/A,N/A +2012,11,29,2,30,102680,101470,100290,65.63,0,5.66,6.0200000000000005,6.1000000000000005,6.140000000000001,6.17,6.2,6.21,6.22,6.24,81.62,81.74,81.78,81.81,81.83,81.86,81.88,81.91,81.96000000000001,17.29,16.830000000000002,16.62,16.42,16.21,16.02,15.81,15.620000000000001,15.22,N/A,N/A +2012,11,29,3,30,102660,101440,100260,61.89,0,5.91,6.2700000000000005,6.34,6.38,6.4,6.41,6.41,6.42,6.41,83.87,84.03,84.15,84.26,84.37,84.48,84.59,84.7,84.92,17.44,16.98,16.78,16.57,16.37,16.18,15.97,15.780000000000001,15.39,N/A,N/A +2012,11,29,4,30,102610,101400,100220,63.38,0,5.66,6.0200000000000005,6.1000000000000005,6.15,6.18,6.2,6.22,6.23,6.25,86.42,86.88,87.16,87.42,87.66,87.89,88.12,88.33,88.79,17.53,17.080000000000002,16.88,16.67,16.47,16.28,16.07,15.88,15.49,N/A,N/A +2012,11,29,5,30,102580,101370,100200,66.16,0,5.94,6.32,6.4,6.45,6.48,6.5,6.51,6.5200000000000005,6.53,95.21000000000001,95.86,96.17,96.42,96.66,96.85000000000001,97.03,97.2,97.52,17.73,17.29,17.09,16.88,16.67,16.48,16.27,16.080000000000002,15.68,N/A,N/A +2012,11,29,6,30,102570,101360,100190,66.17,0,5.9,6.26,6.33,6.37,6.38,6.390000000000001,6.390000000000001,6.390000000000001,6.38,98.03,98.53,98.87,99.19,99.51,99.79,100.08,100.34,100.9,17.61,17.18,16.98,16.78,16.57,16.39,16.18,15.99,15.6,N/A,N/A +2012,11,29,7,30,102570,101360,100180,67.69,0,5.64,5.97,6.03,6.05,6.07,6.07,6.07,6.0600000000000005,6.05,103.4,103.93,104.25,104.55,104.83,105.08,105.36,105.61,106.13,17.580000000000002,17.150000000000002,16.95,16.75,16.55,16.36,16.15,15.96,15.57,N/A,N/A +2012,11,29,8,30,102550,101340,100160,70.94,0,5.37,5.68,5.74,5.76,5.78,5.78,5.79,5.78,5.7700000000000005,106.60000000000001,107.11,107.46000000000001,107.79,108.11,108.4,108.71000000000001,109,109.61,17.53,17.1,16.91,16.7,16.5,16.31,16.11,15.92,15.530000000000001,N/A,N/A +2012,11,29,9,30,102540,101330,100150,72.07000000000001,0,4.19,4.46,4.54,4.6000000000000005,4.64,4.69,4.73,4.76,4.84,97.89,98.58,99.07000000000001,99.52,99.95,100.34,100.75,101.12,101.89,17.57,17.16,16.96,16.76,16.56,16.37,16.17,15.98,15.59,N/A,N/A +2012,11,29,10,30,102520,101310,100140,70.44,0,5.28,5.54,5.5600000000000005,5.5600000000000005,5.54,5.5200000000000005,5.49,5.47,5.41,116.26,116.58,116.76,116.93,117.08,117.23,117.39,117.54,117.83,17.79,17.37,17.17,16.97,16.77,16.580000000000002,16.37,16.19,15.790000000000001,N/A,N/A +2012,11,29,11,30,102510,101300,100130,73.74,0,4.48,4.7700000000000005,4.8500000000000005,4.9,4.95,4.98,5.01,5.04,5.1000000000000005,94.54,95.44,96.02,96.55,97.05,97.52,97.98,98.42,99.31,17.71,17.31,17.11,16.91,16.71,16.52,16.32,16.13,15.74,N/A,N/A +2012,11,29,12,30,102500,101290,100120,72.47,0,4.89,5.18,5.24,5.28,5.3,5.32,5.33,5.34,5.3500000000000005,101.08,101.57000000000001,101.89,102.2,102.49000000000001,102.75,103.03,103.29,103.83,17.97,17.56,17.37,17.17,16.97,16.78,16.580000000000002,16.39,16,N/A,N/A +2012,11,29,13,30,102490,101280,100110,75.01,0,4.89,5.19,5.26,5.29,5.32,5.34,5.3500000000000005,5.36,5.38,94.68,95.5,95.97,96.41,96.83,97.2,97.58,97.92,98.65,18.05,17.650000000000002,17.45,17.25,17.05,16.87,16.66,16.48,16.080000000000002,N/A,N/A +2012,11,29,14,30,102500,101300,100130,75.78,0,4.83,5.11,5.17,5.2,5.22,5.23,5.24,5.24,5.24,101.46000000000001,101.8,102.04,102.27,102.51,102.73,102.96000000000001,103.17,103.62,18.150000000000002,17.75,17.56,17.36,17.16,16.97,16.76,16.580000000000002,16.18,N/A,N/A +2012,11,29,15,30,102500,101290,100120,77.49,0,5.26,5.6000000000000005,5.68,5.72,5.75,5.76,5.78,5.79,5.8,101.49000000000001,102.03,102.4,102.74000000000001,103.07000000000001,103.37,103.7,104,104.63,18.26,17.86,17.67,17.47,17.27,17.080000000000002,16.88,16.69,16.3,N/A,N/A +2012,11,29,16,30,102480,101270,100110,79.67,0,5,5.3,5.36,5.38,5.4,5.41,5.41,5.41,5.4,105.7,106.28,106.61,106.91,107.19,107.45,107.71000000000001,107.95,108.45,18.39,17.990000000000002,17.8,17.6,17.400000000000002,17.21,17.01,16.82,16.43,N/A,N/A +2012,11,29,17,30,102430,101230,100060,78.34,0,5.51,5.86,5.93,5.96,5.97,5.98,5.98,5.98,5.97,106.02,106.36,106.58,106.78,106.98,107.16,107.35000000000001,107.53,107.9,18.54,18.14,17.95,17.75,17.55,17.36,17.16,16.97,16.580000000000002,N/A,N/A +2012,11,29,18,30,102410,101200,100040,80.78,0,6.05,6.47,6.5600000000000005,6.6000000000000005,6.63,6.640000000000001,6.640000000000001,6.640000000000001,6.63,106,106.26,106.41,106.54,106.68,106.79,106.91,107.02,107.25,18.63,18.240000000000002,18.04,17.84,17.64,17.45,17.25,17.06,16.67,N/A,N/A +2012,11,29,19,30,102380,101180,100010,78.03,0,5.79,6.16,6.24,6.2700000000000005,6.28,6.29,6.29,6.29,6.2700000000000005,103.24000000000001,103.75,104.05,104.34,104.61,104.85000000000001,105.12,105.37,105.89,18.73,18.35,18.16,17.96,17.76,17.57,17.37,17.18,16.79,N/A,N/A +2012,11,29,20,30,102330,101130,99960,79.10000000000001,0,5.68,6.0600000000000005,6.140000000000001,6.17,6.19,6.2,6.2,6.2,6.17,101.53,101.86,102.03,102.2,102.35000000000001,102.48,102.63,102.76,103.05,18.78,18.400000000000002,18.21,18.01,17.81,17.62,17.42,17.23,16.84,N/A,N/A +2012,11,29,21,30,102310,101110,99950,77.49,0,5.44,5.8100000000000005,5.9,5.94,5.97,5.98,5.99,6,6,105.57000000000001,105.59,105.65,105.71000000000001,105.76,105.81,105.87,105.92,106.04,18.87,18.490000000000002,18.3,18.1,17.91,17.72,17.52,17.330000000000002,16.94,N/A,N/A +2012,11,29,22,30,102280,101080,99920,75.68,0,5.3500000000000005,5.71,5.8,5.84,5.87,5.88,5.9,5.9,5.91,104.63,104.83,104.92,105.01,105.08,105.15,105.22,105.3,105.45,18.93,18.56,18.37,18.17,17.98,17.79,17.59,17.400000000000002,17.01,N/A,N/A +2012,11,29,23,30,102270,101070,99910,80.17,0,5.93,6.34,6.43,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.51,107.03,107.49000000000001,107.79,108.08,108.35000000000001,108.60000000000001,108.87,109.11,109.64,18.95,18.580000000000002,18.39,18.19,18,17.81,17.6,17.42,17.03,N/A,N/A +2012,11,30,0,30,102270,101080,99910,80.82000000000001,0,5.95,6.38,6.49,6.54,6.57,6.6000000000000005,6.61,6.62,6.62,111.47,112,112.28,112.54,112.77,112.99000000000001,113.21000000000001,113.42,113.83,19.04,18.66,18.48,18.28,18.080000000000002,17.89,17.69,17.5,17.11,N/A,N/A +2012,11,30,1,30,102280,101080,99920,80.47,0,5.94,6.38,6.49,6.54,6.57,6.59,6.6000000000000005,6.61,6.61,115.54,115.87,116.10000000000001,116.3,116.5,116.68,116.87,117.04,117.4,19.13,18.76,18.57,18.37,18.18,17.990000000000002,17.79,17.6,17.21,N/A,N/A +2012,11,30,2,30,102280,101080,99920,81.03,0,6.08,6.53,6.63,6.68,6.72,6.74,6.75,6.76,6.7700000000000005,114.72,114.97,115.13,115.3,115.46000000000001,115.61,115.78,115.93,116.27,19.26,18.900000000000002,18.71,18.51,18.32,18.13,17.92,17.740000000000002,17.35,N/A,N/A +2012,11,30,3,30,102260,101060,99900,83.09,0,6.71,7.25,7.37,7.44,7.48,7.51,7.53,7.54,7.5600000000000005,120.42,120.84,121.08,121.31,121.52,121.71000000000001,121.91,122.10000000000001,122.51,19.41,19.06,18.88,18.68,18.48,18.29,18.1,17.91,17.52,N/A,N/A +2012,11,30,4,30,102240,101040,99880,82,0,7.4,8.02,8.16,8.22,8.26,8.27,8.27,8.27,8.23,115.47,115.88,116.13,116.37,116.58,116.79,117.01,117.21000000000001,117.65,19.580000000000002,19.23,19.05,18.85,18.650000000000002,18.47,18.27,18.080000000000002,17.7,N/A,N/A +2012,11,30,5,30,102200,101010,99850,82.06,0,7.43,8.1,8.26,8.35,8.41,8.45,8.48,8.5,8.52,109.87,110.22,110.47,110.71000000000001,110.94,111.15,111.39,111.60000000000001,112.09,19.77,19.44,19.26,19.07,18.87,18.69,18.490000000000002,18.31,17.92,N/A,N/A +2012,11,30,6,30,102220,101020,99870,81.98,0,7.28,8.01,8.2,8.31,8.38,8.44,8.48,8.51,8.57,117.63,117.77,117.9,118.05,118.22,118.38,118.57000000000001,118.75,119.2,19.92,19.63,19.46,19.27,19.080000000000002,18.900000000000002,18.71,18.53,18.14,N/A,N/A +2012,11,30,7,30,102220,101020,99870,82.04,0,7.3500000000000005,8.07,8.25,8.35,8.42,8.47,8.5,8.53,8.57,127.8,127.84,127.87,127.91,127.95,127.99000000000001,128.06,128.1,128.25,20.11,19.84,19.69,19.5,19.31,19.14,18.94,18.76,18.39,N/A,N/A +2012,11,30,8,30,102210,101020,99860,84.12,0,7.59,8.39,8.59,8.72,8.8,8.870000000000001,8.91,8.94,8.98,122.79,123.02,123.19,123.37,123.56,123.75,123.98,124.21000000000001,124.79,20.14,19.88,19.72,19.53,19.35,19.17,18.98,18.8,18.43,N/A,N/A +2012,11,30,9,30,102200,101010,99850,83.39,0,6.86,7.53,7.69,7.8,7.91,8.01,8.15,8.290000000000001,8.66,125.42,125.41,125.43,125.46000000000001,125.54,125.65,125.9,126.16,127.3,20.16,19.91,19.75,19.57,19.400000000000002,19.22,19.04,18.88,18.55,N/A,N/A +2012,11,30,10,30,102190,101000,99850,85.95,0,5.8100000000000005,6.62,6.94,7.25,7.51,7.76,8,8.21,8.59,133.11,133.63,133.93,134.29,134.56,134.77,135.03,135.28,136.06,20.28,20.06,19.93,19.78,19.63,19.48,19.330000000000002,19.19,18.87,N/A,N/A +2012,11,30,11,30,102180,100990,99830,83.13,0,7.0600000000000005,7.94,8.23,8.47,8.66,8.83,8.98,9.11,9.34,140.03,140.28,140.48,140.72,140.97,141.23,141.54,141.84,142.54,20.55,20.35,20.2,20.04,19.87,19.71,19.53,19.37,19.01,N/A,N/A +2012,11,30,12,30,102180,100990,99840,83.74,0,6.73,7.58,7.87,8.11,8.32,8.51,8.68,8.84,9.14,135.3,135.95,136.39000000000001,136.9,137.45000000000002,137.99,138.59,139.16,140.38,20.56,20.37,20.240000000000002,20.080000000000002,19.93,19.77,19.61,19.45,19.12,N/A,N/A +2012,11,30,13,30,102190,101000,99840,85.28,0,5.76,6.6000000000000005,6.92,7.19,7.43,7.65,7.86,8.05,8.4,140.77,141.3,141.67000000000002,142.1,142.55,142.99,143.46,143.92000000000002,144.89000000000001,20.64,20.46,20.330000000000002,20.18,20.03,19.88,19.72,19.57,19.25,N/A,N/A +2012,11,30,14,30,102200,101010,99860,85.74,0,6.04,6.96,7.28,7.57,7.82,8.040000000000001,8.25,8.43,8.76,138.12,138.85,139.46,140.12,140.77,141.39000000000001,142.08,142.73,144.32,20.67,20.52,20.41,20.28,20.14,20,19.86,19.72,19.42,N/A,N/A +2012,11,30,15,30,102220,101030,99880,85.4,0,6.36,7.3100000000000005,7.66,7.97,8.25,8.49,8.73,8.94,9.32,136.59,137.11,137.54,138.12,138.79,139.49,140.33,141.14000000000001,142.86,20.73,20.580000000000002,20.48,20.35,20.22,20.1,19.96,19.84,19.55,N/A,N/A +2012,11,30,16,30,102170,100980,99830,85.74,0,6.26,7.22,7.58,7.9,8.18,8.43,8.67,8.89,9.31,136.73,137.25,137.75,138.38,139.14000000000001,139.94,140.87,141.76,143.55,20.76,20.63,20.53,20.41,20.29,20.17,20.04,19.91,19.64,N/A,N/A +2012,11,30,17,30,102170,100980,99830,87.37,0,6.0200000000000005,6.96,7.32,7.640000000000001,7.930000000000001,8.19,8.42,8.63,9,134.12,134.73,135.17000000000002,135.75,136.42000000000002,137.15,138.04,138.9,141.02,20.77,20.63,20.53,20.400000000000002,20.28,20.16,20.03,19.91,19.66,N/A,N/A +2012,11,30,18,30,102160,100970,99820,87.28,0,6.3100000000000005,7.3100000000000005,7.7,8.05,8.36,8.64,8.89,9.13,9.540000000000001,141.27,141.84,142.21,142.67000000000002,143.18,143.72,144.35,144.95000000000002,146.31,20.86,20.72,20.61,20.490000000000002,20.35,20.23,20.09,19.95,19.67,N/A,N/A +2012,11,30,19,30,102110,100920,99770,86.7,0,6.23,7.29,7.69,8.06,8.39,8.69,8.950000000000001,9.200000000000001,9.6,134.6,135.33,135.88,136.54,137.26,137.98,138.84,139.67000000000002,141.71,20.900000000000002,20.77,20.68,20.56,20.44,20.32,20.19,20.07,19.81,N/A,N/A +2012,11,30,20,30,102070,100890,99740,85.94,0,7.18,8.34,8.77,9.16,9.51,9.82,10.11,10.370000000000001,10.84,133.79,134.75,135.41,136.2,136.99,137.78,138.62,139.4,141.06,20.92,20.82,20.73,20.62,20.5,20.39,20.26,20.14,19.87,N/A,N/A +2012,11,30,21,30,102070,100880,99730,88.48,0,6.63,7.76,8.19,8.58,8.94,9.26,9.57,9.85,10.39,137.28,138.29,139.01,139.82,140.66,141.5,142.41,143.27,145,20.85,20.73,20.63,20.51,20.39,20.27,20.14,20.02,19.75,N/A,N/A +2012,11,30,22,30,102030,100840,99690,86.49,0,6.92,8.11,8.56,8.98,9.35,9.700000000000001,10.02,10.31,10.8,137.03,137.74,138.25,138.87,139.54,140.23,141.01,141.76,143.47,20.91,20.8,20.71,20.6,20.48,20.37,20.240000000000002,20.12,19.85,N/A,N/A +2012,11,30,23,30,102030,100840,99690,86.24,0,7.47,8.69,9.16,9.59,9.96,10.31,10.64,10.93,11.43,136.89000000000001,137.78,138.42000000000002,139.15,139.85,140.55,141.25,141.91,143.28,20.92,20.830000000000002,20.740000000000002,20.64,20.53,20.42,20.3,20.19,19.93,N/A,N/A +2012,12,1,0,30,102070,100880,99730,87.55,0,6.6000000000000005,7.8,8.28,8.72,9.11,9.47,9.81,10.120000000000001,10.66,147.97,147.87,147.9,148.03,148.24,148.51,148.9,149.31,150.35,20.94,20.84,20.740000000000002,20.63,20.5,20.38,20.25,20.13,19.84,N/A,N/A +2012,12,1,1,30,102050,100870,99720,88.75,0,6.48,7.7,8.2,8.68,9.11,9.51,9.88,10.22,10.82,143.12,143.97,144.6,145.32,145.98,146.63,147.28,147.88,149.17000000000002,20.92,20.84,20.76,20.67,20.56,20.46,20.34,20.22,19.97,N/A,N/A +2012,12,1,2,30,102060,100880,99730,87.83,0,6.74,7.98,8.47,8.93,9.32,9.700000000000001,10.040000000000001,10.35,10.9,144.55,145.20000000000002,145.70000000000002,146.32,146.98,147.67000000000002,148.45000000000002,149.19,150.75,21.02,20.95,20.87,20.78,20.67,20.57,20.45,20.34,20.09,N/A,N/A +2012,12,1,3,30,102070,100880,99730,88,0,6.640000000000001,7.890000000000001,8.38,8.86,9.28,9.68,10.040000000000001,10.38,11,149.70000000000002,150.20000000000002,150.61,151.18,151.8,152.47,153.20000000000002,153.9,155.35,20.98,20.92,20.85,20.76,20.650000000000002,20.55,20.44,20.330000000000002,20.09,N/A,N/A +2012,12,1,4,30,102070,100880,99730,88.18,0.30000000000000004,6.23,7.47,7.95,8.41,8.81,9.18,9.53,9.84,10.41,152.34,152.31,152.43,152.65,152.95000000000002,153.28,153.72,154.16,155.27,21.04,20.98,20.92,20.82,20.72,20.61,20.490000000000002,20.38,20.12,N/A,N/A +2012,12,1,5,30,102090,100900,99750,89.25,5.6000000000000005,5.38,6.59,7.11,7.63,8.08,8.49,8.86,9.22,9.870000000000001,150.45000000000002,150.91,151.32,151.86,152.47,153.12,153.84,154.53,155.92000000000002,20.96,20.92,20.86,20.77,20.68,20.580000000000002,20.47,20.37,20.13,N/A,N/A +2012,12,1,6,30,102060,100870,99730,88.79,0.5,6.11,7.33,7.83,8.33,8.8,9.22,9.64,10.03,10.700000000000001,143.06,144.67000000000002,145.74,146.95000000000002,148.14000000000001,149.28,150.44,151.53,153.53,21.080000000000002,21,20.93,20.85,20.76,20.68,20.580000000000002,20.490000000000002,20.26,N/A,N/A +2012,12,1,7,30,102090,100910,99760,88.47,0,6.63,7.95,8.5,9.01,9.46,9.870000000000001,10.23,10.57,11.120000000000001,152.01,153.22,154.06,154.96,155.83,156.67000000000002,157.48,158.25,159.70000000000002,21.240000000000002,21.19,21.14,21.06,20.97,20.88,20.77,20.67,20.43,N/A,N/A +2012,12,1,8,30,102090,100900,99760,87.8,0,6.890000000000001,8.18,8.700000000000001,9.18,9.59,9.950000000000001,10.28,10.57,11.1,160.34,160.96,161.43,162.05,162.71,163.41,164.17000000000002,164.89000000000001,166.34,21.26,21.240000000000002,21.19,21.12,21.04,20.96,20.86,20.76,20.53,N/A,N/A +2012,12,1,9,30,102080,100900,99750,87.75,0,6.83,8.18,8.71,9.22,9.67,10.08,10.46,10.81,11.4,161.07,161.83,162.39000000000001,163.13,163.96,164.83,165.8,166.74,168.61,21.28,21.27,21.22,21.16,21.1,21.02,20.94,20.87,20.66,N/A,N/A +2012,12,1,10,30,102090,100900,99760,88.60000000000001,0,6.33,7.62,8.16,8.67,9.14,9.58,9.96,10.31,10.870000000000001,164.19,165.25,166.03,166.99,167.9,168.77,169.54,170.25,171.46,21.27,21.27,21.240000000000002,21.2,21.150000000000002,21.1,21.02,20.94,20.72,N/A,N/A +2012,12,1,11,30,102100,100920,99770,89.42,0,5.36,6.65,7.21,7.76,8.24,8.68,9.08,9.44,10.08,165.1,166.58,167.62,168.73,169.83,170.89000000000001,172.03,173.1,175,21.2,21.240000000000002,21.240000000000002,21.21,21.18,21.14,21.080000000000002,21.02,20.830000000000002,N/A,N/A +2012,12,1,12,30,102110,100930,99780,88.72,0,5.62,6.99,7.57,8.11,8.58,9,9.32,9.61,9.93,167.84,168.62,169.23,170,170.84,171.72,172.75,173.73,175.65,21.330000000000002,21.38,21.38,21.35,21.31,21.26,21.18,21.1,20.88,N/A,N/A +2012,12,1,13,30,102110,100930,99780,90.18,0,5.2700000000000005,6.5600000000000005,7.1000000000000005,7.640000000000001,8.09,8.5,8.86,9.18,9.84,163.48,165.26,166.6,168.24,169.88,171.5,173.02,174.4,176.82,21.21,21.240000000000002,21.23,21.2,21.17,21.13,21.080000000000002,21.02,20.84,N/A,N/A +2012,12,1,14,30,102130,100950,99800,90.57000000000001,0,4.83,6.140000000000001,6.7,7.2700000000000005,7.78,8.25,8.63,8.98,9.16,164.75,166.41,167.6,169.02,170.62,172.32,173.95000000000002,175.44,176.88,21.19,21.27,21.28,21.28,21.27,21.25,21.21,21.16,20.98,N/A,N/A +2012,12,1,15,30,102140,100950,99810,91.18,0,4.57,5.79,6.34,6.9,7.41,7.890000000000001,8.28,8.63,8.790000000000001,164.34,165.91,167.23,168.91,170.74,172.64000000000001,174.42000000000002,176.04,177.68,21.16,21.19,21.19,21.19,21.19,21.19,21.16,21.14,21.02,N/A,N/A +2012,12,1,16,30,102140,100950,99810,90.95,0,4.78,5.93,6.44,6.97,7.46,7.930000000000001,8.28,8.59,8.75,157.78,159.35,160.75,162.71,165.03,167.54,169.73,171.68,172.94,21.2,21.2,21.19,21.19,21.19,21.2,21.17,21.14,21.01,N/A,N/A +2012,12,1,17,30,102120,100940,99790,91.53,0,4.7,5.7700000000000005,6.25,6.76,7.28,7.7700000000000005,8.21,8.61,8.870000000000001,158.47,160.34,161.82,163.73,165.66,167.59,169.52,171.33,173.72,21.27,21.23,21.2,21.18,21.17,21.16,21.14,21.12,20.98,N/A,N/A +2012,12,1,18,30,102100,100920,99780,91.01,0,4.62,5.69,6.18,6.69,7.19,7.68,8.16,8.59,8.8,164.01,165.18,166.11,167.29,168.4,169.46,170.44,171.35,173.20000000000002,21.41,21.36,21.32,21.28,21.25,21.21,21.17,21.12,21.03,N/A,N/A +2012,12,1,19,30,102090,100910,99760,90.83,0,4.88,5.9,6.34,6.79,7.2,7.59,7.9,8.17,8.46,157.53,158.62,159.46,160.51,161.56,162.61,163.76,164.84,167.57,21.48,21.39,21.330000000000002,21.26,21.19,21.12,21.03,20.95,20.76,N/A,N/A +2012,12,1,20,30,102070,100890,99740,90.78,0,5.15,6.24,6.7,7.16,7.6000000000000005,8.01,8.41,8.76,9.24,158.41,159.6,160.54,161.73,162.97,164.24,165.55,166.78,168.57,21.48,21.42,21.37,21.31,21.240000000000002,21.18,21.1,21.02,20.82,N/A,N/A +2012,12,1,21,30,102040,100860,99720,91.39,0,5.19,6.42,6.94,7.48,7.95,8.38,8.72,9.02,9.31,158.16,159.45000000000002,160.42000000000002,161.64000000000001,162.72,163.70000000000002,164.36,164.9,165.66,21.41,21.400000000000002,21.38,21.34,21.3,21.25,21.18,21.11,20.85,N/A,N/A +2012,12,1,22,30,102020,100840,99690,91.73,0,5.57,6.86,7.390000000000001,7.9,8.35,8.73,9.040000000000001,9.32,9.63,156.23,157.65,158.74,160.1,161.39000000000001,162.61,163.73,164.75,166.39000000000001,21.25,21.27,21.26,21.23,21.18,21.13,21.06,20.990000000000002,20.77,N/A,N/A +2012,12,1,23,30,102010,100820,99680,92.58,0,5.58,6.88,7.43,7.96,8.41,8.81,9.15,9.44,9.93,157.01,157.74,158.36,159.19,160.21,161.36,162.8,164.21,165.83,21.150000000000002,21.16,21.14,21.11,21.07,21.03,20.98,20.92,20.75,N/A,N/A +2012,12,2,0,30,102020,100840,99700,92.4,0,5.71,7.04,7.61,8.19,8.71,9.19,9.620000000000001,10,10.51,158.72,159.32,159.81,160.49,161.26,162.06,162.86,163.59,164.59,21.12,21.13,21.11,21.09,21.080000000000002,21.06,21.03,20.990000000000002,20.81,N/A,N/A +2012,12,2,1,30,102020,100840,99700,91.72,0,5.76,7.0600000000000005,7.62,8.18,8.69,9.17,9.59,9.97,10.5,157.02,157.46,157.83,158.31,158.86,159.45000000000002,160.15,160.82,162.25,21.11,21.09,21.06,21.02,20.97,20.93,20.87,20.82,20.650000000000002,N/A,N/A +2012,12,2,2,30,102040,100850,99710,92.23,0,5.73,7.0600000000000005,7.640000000000001,8.22,8.76,9.27,9.75,10.18,10.65,155.70000000000002,156.34,156.82,157.44,158.12,158.83,159.70000000000002,160.55,162.11,21.1,21.09,21.07,21.03,20.990000000000002,20.95,20.900000000000002,20.85,20.66,N/A,N/A +2012,12,2,3,30,102040,100860,99710,92.8,0,5.84,7.19,7.79,8.4,8.96,9.47,9.92,10.33,10.870000000000001,157.9,158.47,158.88,159.36,159.9,160.47,161.20000000000002,161.93,163.31,21.1,21.09,21.06,21.02,20.98,20.93,20.87,20.81,20.63,N/A,N/A +2012,12,2,4,30,102030,100850,99710,92.81,0,5.5600000000000005,6.95,7.58,8.24,8.83,9.38,9.81,10.17,10.6,159.97,160.84,161.44,162.14000000000001,162.77,163.35,163.94,164.5,165.45000000000002,21.14,21.17,21.16,21.16,21.14,21.13,21.080000000000002,21.03,20.82,N/A,N/A +2012,12,2,5,30,102020,100840,99700,93.86,0,4.97,6.32,6.94,7.61,8.3,8.99,9.65,10.25,10.93,164.57,165.71,166.59,167.66,168.73,169.8,170.09,170.19,170.83,21.080000000000002,21.12,21.14,21.16,21.17,21.18,21.17,21.150000000000002,21.02,N/A,N/A +2012,12,2,6,30,102040,100860,99710,94.34,0,4.46,5.58,6.140000000000001,6.8100000000000005,7.48,8.15,8.71,9.21,9.51,159.88,161.53,162.68,163.99,164.97,165.75,166.76,167.78,169.53,21.16,21.11,21.1,21.11,21.14,21.18,21.21,21.22,21.1,N/A,N/A +2012,12,2,7,30,102070,100890,99740,96.37,0,4.17,5.3100000000000005,5.88,6.53,7.19,7.88,8.69,9.51,10.08,156.96,158.71,160.16,162.14000000000001,164.23,166.46,168.67000000000002,170.82,172.08,21.16,21.1,21.07,21.05,21.06,21.080000000000002,21.12,21.150000000000002,20.990000000000002,N/A,N/A +2012,12,2,8,30,102060,100880,99740,96.31,0,3.95,5.19,5.76,6.34,6.88,7.37,8.01,8.65,9.24,165.05,166.63,167.86,169.39000000000001,171.01,172.70000000000002,174.47,176.20000000000002,176.36,21.29,21.29,21.27,21.240000000000002,21.21,21.17,21.150000000000002,21.14,20.990000000000002,N/A,N/A +2012,12,2,9,30,102060,100880,99740,95.64,0,4.72,6.140000000000001,6.8500000000000005,7.62,8.36,9.09,9.77,10.39,11.25,164.74,166.15,167.08,168.04,168.84,169.55,170.53,171.55,173.83,21.41,21.45,21.45,21.43,21.400000000000002,21.35,21.28,21.2,21.01,N/A,N/A +2012,12,2,10,30,102080,100900,99760,91.10000000000001,0,5.92,7.49,8.1,8.58,8.92,9.18,9.38,9.56,9.84,171.91,172.48,172.76,172.91,172.86,172.68,172.46,172.24,172.14000000000001,22.05,22.2,22.22,22.17,22.06,21.92,21.740000000000002,21.57,21.21,N/A,N/A +2012,12,2,11,30,102100,100920,99780,94.95,0,4.1,5.58,6.24,6.86,7.36,7.78,8.370000000000001,8.98,9.46,160.55,162.4,163.49,164.29,164.57,164.47,163.99,163.43,163.76,21.57,21.71,21.75,21.77,21.75,21.7,21.61,21.53,21.26,N/A,N/A +2012,12,2,12,30,102110,100930,99790,96.45,0,3.13,4.49,5.2,6.0200000000000005,6.92,7.890000000000001,8.32,8.57,8.97,155.99,158.78,161.11,164.21,167.20000000000002,170.21,171.58,172.42000000000002,174.68,21.35,21.43,21.48,21.55,21.61,21.66,21.6,21.5,21.27,N/A,N/A +2012,12,2,13,30,102130,100950,99800,96.3,0,3.44,4.67,5.2700000000000005,5.98,6.45,6.75,7.08,7.41,7.97,149.5,153,157.62,166.33,170.69,172.07,172.85,173.43,172.9,21.25,21.35,21.43,21.56,21.56,21.48,21.400000000000002,21.330000000000002,21.13,N/A,N/A +2012,12,2,14,30,102160,100980,99840,96.36,0,2.6,3.67,4.3,5.29,5.98,6.4,6.83,7.25,8.02,143.01,146.69,149.95000000000002,154.8,157.91,159.53,160.98,162.32,164.87,21.32,21.36,21.400000000000002,21.5,21.53,21.52,21.52,21.53,21.54,N/A,N/A +2012,12,2,15,30,102170,100990,99850,96.25,0,3.02,4.3500000000000005,5.17,6.23,6.8500000000000005,7.13,7.34,7.51,7.73,124.81,132.54,138.54,145.81,150.08,151.86,153.27,154.49,156.88,21.16,21.35,21.53,21.82,21.96,22.01,21.98,21.93,21.68,N/A,N/A +2012,12,2,16,30,102160,100980,99840,94.94,0,3.24,4.3500000000000005,5.11,6.28,6.96,7.26,7.51,7.73,8.08,123.31,127.95,133.2,142.86,148.26,150.39000000000001,152.20000000000002,153.8,156.53,21.28,21.34,21.490000000000002,21.8,21.94,21.98,21.97,21.93,21.75,N/A,N/A +2012,12,2,17,30,102130,100950,99810,93.8,0,3.85,4.9,5.53,6.390000000000001,7.0200000000000005,7.47,7.67,7.78,7.99,115.21000000000001,120.29,124.99000000000001,131.96,138.05,143.39000000000001,145.92000000000002,147.55,150.12,21.43,21.47,21.55,21.72,21.85,21.96,21.93,21.88,21.68,N/A,N/A +2012,12,2,18,30,102120,100940,99790,94.25,0,3.34,4.36,4.9,5.58,6.36,7.23,7.66,7.96,8.34,115.61,119.13,122.52,128.09,135.14000000000001,143.4,146.86,148.96,151.70000000000002,21.42,21.38,21.39,21.46,21.59,21.76,21.79,21.79,21.63,N/A,N/A +2012,12,2,19,30,102120,100940,99800,92.95,0,4.13,5.21,5.76,6.51,7.29,8.11,8.48,8.72,9.040000000000001,125.63000000000001,129.06,132.25,137.18,141.8,146.25,148.24,149.47,151.4,21.580000000000002,21.63,21.68,21.8,21.91,22.01,21.98,21.92,21.71,N/A,N/A +2012,12,2,20,30,102100,100920,99780,93.11,0,4.3,5.45,6.03,6.72,7.41,8.13,8.57,8.89,9.17,120.8,124.9,127.99000000000001,131.79,135.74,139.99,143.78,147.17000000000002,150.14000000000001,21.490000000000002,21.53,21.55,21.57,21.62,21.69,21.71,21.71,21.53,N/A,N/A +2012,12,2,21,30,102050,100870,99730,93.10000000000001,0,5.28,6.47,6.99,7.57,8.120000000000001,8.66,9.1,9.5,9.73,123.48,126.7,129.42000000000002,133.03,136.36,139.49,142.15,144.49,146.08,21.52,21.580000000000002,21.62,21.67,21.71,21.740000000000002,21.72,21.68,21.43,N/A,N/A +2012,12,2,22,30,102030,100850,99710,93.42,0,5.65,6.96,7.57,8.25,8.9,9.53,10.06,10.52,10.94,125.63000000000001,127.81,129.45,131.54,133.55,135.53,137.43,139.19,142.69,21.5,21.5,21.51,21.53,21.55,21.580000000000002,21.57,21.54,21.36,N/A,N/A +2012,12,2,23,30,102020,100840,99700,92.41,0,6.45,7.82,8.42,9.040000000000001,9.61,10.14,10.53,10.870000000000001,11.05,130.69,131.71,132.46,133.39000000000001,134.38,135.39000000000001,136.6,137.75,141.1,21.580000000000002,21.56,21.54,21.51,21.48,21.46,21.400000000000002,21.36,21.2,N/A,N/A +2012,12,3,0,30,102030,100850,99700,92.83,0,6.42,7.86,8.5,9.16,9.78,10.36,10.89,11.36,11.88,134.5,135.21,135.75,136.44,137.14000000000001,137.84,138.69,139.53,142.07,21.55,21.55,21.53,21.5,21.46,21.42,21.37,21.31,21.13,N/A,N/A +2012,12,3,1,30,102020,100840,99700,92.62,0,6.4,7.75,8.33,8.92,9.46,9.97,10.46,10.9,11.620000000000001,133,134.01,134.76,135.65,136.53,137.39000000000001,138.27,139.11,141.01,21.51,21.47,21.43,21.36,21.3,21.240000000000002,21.16,21.09,20.91,N/A,N/A +2012,12,3,2,30,102020,100840,99690,92.51,0,6.67,8.03,8.6,9.14,9.64,10.1,10.55,10.97,11.69,131.86,132.71,133.39000000000001,134.19,135.01,135.84,136.72,137.56,139.18,21.52,21.48,21.43,21.36,21.3,21.23,21.16,21.09,20.91,N/A,N/A +2012,12,3,3,30,102000,100820,99680,92.57000000000001,0,6.72,8.14,8.75,9.36,9.94,10.49,11.03,11.53,12.41,132.19,133.05,133.71,134.49,135.27,136.01,136.77,137.48,139.16,21.52,21.48,21.44,21.39,21.330000000000002,21.27,21.18,21.11,20.900000000000002,N/A,N/A +2012,12,3,4,30,101990,100810,99660,91.09,0,7.34,8.790000000000001,9.4,9.99,10.53,11.040000000000001,11.53,11.98,12.8,135.15,136.01,136.69,137.51,138.34,139.16,139.92000000000002,140.61,141.64000000000001,21.61,21.580000000000002,21.54,21.48,21.42,21.36,21.29,21.21,21.02,N/A,N/A +2012,12,3,5,30,101950,100770,99630,90.28,0,6.8100000000000005,8.25,8.870000000000001,9.52,10.1,10.64,11.14,11.6,12.32,132.88,134.19,135.1,136.12,137.05,137.92000000000002,138.78,139.58,141.23,21.61,21.59,21.55,21.5,21.43,21.37,21.3,21.22,21.02,N/A,N/A +2012,12,3,6,30,101970,100790,99650,90.4,0,7.05,8.53,9.16,9.8,10.39,10.950000000000001,11.48,11.98,12.75,137.96,138.9,139.56,140.36,141.15,141.93,142.75,143.54,145.11,21.61,21.580000000000002,21.54,21.48,21.41,21.34,21.26,21.18,20.990000000000002,N/A,N/A +2012,12,3,7,30,101960,100780,99640,88.81,0,7.32,8.86,9.51,10.14,10.700000000000001,11.22,11.68,12.09,12.81,140.41,141.54,142.3,143.18,144.01,144.82,145.58,146.28,147.62,21.75,21.75,21.71,21.650000000000002,21.580000000000002,21.5,21.41,21.32,21.1,N/A,N/A +2012,12,3,8,30,101930,100760,99610,88.75,0,7.5600000000000005,9.14,9.78,10.39,10.93,11.43,11.86,12.25,12.81,146.52,147.18,147.69,148.3,148.91,149.49,150.03,150.52,151.37,21.82,21.84,21.81,21.76,21.7,21.63,21.54,21.46,21.23,N/A,N/A +2012,12,3,9,30,101920,100750,99600,88.07000000000001,0,7.66,9.200000000000001,9.85,10.49,11.07,11.620000000000001,12.15,12.64,13.47,143.55,144.35,144.97,145.78,146.56,147.34,148.09,148.81,150.06,21.81,21.81,21.77,21.72,21.66,21.6,21.53,21.46,21.27,N/A,N/A +2012,12,3,10,30,101900,100720,99580,89,0,8.040000000000001,9.64,10.3,10.94,11.51,12.05,12.56,13.030000000000001,13.83,142.74,143.68,144.33,145.1,145.85,146.61,147.37,148.09,149.5,21.85,21.85,21.81,21.75,21.68,21.61,21.52,21.45,21.240000000000002,N/A,N/A +2012,12,3,11,30,101900,100720,99580,88.39,0,8.2,9.77,10.39,10.97,11.47,11.93,12.36,12.75,13.48,146.66,147.23,147.69,148.28,148.88,149.51,150.20000000000002,150.86,152.25,21.94,21.94,21.900000000000002,21.830000000000002,21.75,21.66,21.56,21.46,21.240000000000002,N/A,N/A +2012,12,3,12,30,101900,100730,99590,86.56,0,8.56,10.17,10.82,11.43,11.97,12.47,12.92,13.33,14.030000000000001,148.88,149.33,149.67000000000002,150.14000000000001,150.68,151.25,151.95000000000002,152.62,154.19,22.04,22.07,22.04,21.98,21.91,21.84,21.76,21.68,21.47,N/A,N/A +2012,12,3,13,30,101890,100720,99580,88.51,0,8.72,10.41,11.08,11.72,12.290000000000001,12.82,13.32,13.780000000000001,14.59,151.08,151.91,152.49,153.17000000000002,153.83,154.48,155.15,155.8,157.17000000000002,22.02,22.080000000000002,22.06,22.03,21.98,21.93,21.86,21.8,21.61,N/A,N/A +2012,12,3,14,30,101920,100740,99600,89.25,0,8.75,10.47,11.17,11.83,12.41,12.96,13.44,13.870000000000001,14.63,153.83,154.63,155.25,156.04,156.82,157.61,158.38,159.09,160.31,22.11,22.18,22.17,22.13,22.080000000000002,22.04,21.97,21.900000000000002,21.7,N/A,N/A +2012,12,3,15,30,101900,100730,99590,90.69,0,8.13,9.790000000000001,10.450000000000001,11.08,11.63,12.15,12.620000000000001,13.040000000000001,13.86,151.88,152.93,153.64000000000001,154.46,155.23,155.96,156.63,157.24,158.36,21.94,21.97,21.95,21.91,21.86,21.8,21.72,21.650000000000002,21.45,N/A,N/A +2012,12,3,16,30,101880,100710,99570,91.19,2.6,6.88,8.44,9.1,9.74,10.35,10.91,11.44,11.93,12.790000000000001,155.44,155.91,156.32,156.88,157.48,158.1,158.73,159.32,160.56,21.93,22,21.990000000000002,21.97,21.93,21.900000000000002,21.830000000000002,21.77,21.61,N/A,N/A +2012,12,3,17,30,101840,100670,99530,91.24,0,7.34,9.03,9.75,10.44,11.05,11.61,12.11,12.56,13.39,151.03,151.82,152.43,153.12,153.87,154.67000000000002,155.6,156.51,158.37,21.990000000000002,22.06,22.06,22.04,22.01,21.96,21.87,21.79,21.55,N/A,N/A +2012,12,3,18,30,101820,100640,99500,90.66,0,8.52,10.25,10.950000000000001,11.63,12.24,12.8,13.34,13.83,14.68,156.13,157.08,157.71,158.42000000000002,159.05,159.65,160.20000000000002,160.70000000000002,161.55,22.12,22.150000000000002,22.12,22.07,22.01,21.93,21.85,21.77,21.57,N/A,N/A +2012,12,3,19,30,101790,100620,99480,90.73,0,8.25,9.84,10.450000000000001,11.03,11.56,12.07,12.58,13.06,13.94,154.09,154.59,155,155.5,156.09,156.75,157.55,158.35,159.94,22.18,22.25,22.240000000000002,22.18,22.12,22.04,21.94,21.85,21.64,N/A,N/A +2012,12,3,20,30,101800,100620,99480,95.55,9.9,9.01,10.5,11.07,11.58,12.02,12.43,12.790000000000001,13.11,13.71,164.54,166.1,167.05,168.24,169.54,170.91,172.48,173.98,177.62,21.39,21.26,21.16,21.04,20.93,20.81,20.69,20.580000000000002,20.34,N/A,N/A +2012,12,3,21,30,101800,100620,99480,93.86,0.4,6.8100000000000005,8.05,8.55,9.02,9.43,9.82,10.200000000000001,10.55,11.25,170.1,170.21,170.35,170.62,171.01,171.5,172.20000000000002,172.91,174.74,21.51,21.42,21.330000000000002,21.21,21.1,20.990000000000002,20.87,20.77,20.6,N/A,N/A +2012,12,3,22,30,101760,100580,99440,94.58,0,7.23,8.42,8.85,9.26,9.65,10.040000000000001,10.48,10.91,11.73,161.51,163.14000000000001,164.61,166.72,168.97,171.33,173.66,175.84,179.1,21.5,21.45,21.400000000000002,21.35,21.29,21.240000000000002,21.18,21.13,20.97,N/A,N/A +2012,12,3,23,30,101750,100580,99440,93.88,0,6.96,8.52,9.200000000000001,9.89,10.55,11.19,11.81,12.4,13.43,158.38,160,161.1,162.32,163.41,164.41,165.3,166.11,167.5,21.79,21.84,21.84,21.830000000000002,21.81,21.79,21.76,21.73,21.63,N/A,N/A +2012,12,4,0,30,101770,100590,99460,90.76,0,8.58,10.47,11.28,12.07,12.77,13.41,13.93,14.39,15.02,166.37,166.52,166.64000000000001,166.79,166.94,167.09,167.23,167.37,167.58,22.11,22.19,22.2,22.18,22.150000000000002,22.12,22.07,22.01,21.8,N/A,N/A +2012,12,4,1,30,101800,100620,99490,91.69,0,9,10.63,11.25,11.790000000000001,12.24,12.65,12.950000000000001,13.200000000000001,13.34,162.25,162.97,163.49,164.16,164.69,165.15,165.31,165.39000000000001,166.28,22.02,22.06,22.04,22.01,21.98,21.96,21.93,21.91,21.81,N/A,N/A +2012,12,4,2,30,101800,100630,99490,93.41,0,7.29,8.81,9.450000000000001,10.09,10.73,11.39,12.11,12.81,13.790000000000001,156.76,158.36,159.61,161.29,162.87,164.43,165.73,166.9,168.33,21.71,21.78,21.79,21.82,21.830000000000002,21.85,21.85,21.84,21.72,N/A,N/A +2012,12,4,3,30,101820,100640,99500,94.09,0,6.28,7.8,8.49,9.22,9.89,10.51,11.040000000000001,11.5,12.32,149.33,151.37,152.91,154.82,156.61,158.34,159.88,161.27,163.63,21.650000000000002,21.68,21.68,21.69,21.69,21.68,21.650000000000002,21.62,21.47,N/A,N/A +2012,12,4,4,30,101810,100630,99500,91.77,0,7.140000000000001,8.71,9.36,9.97,10.5,10.98,11.4,11.790000000000001,12.46,157.74,158.93,159.79,160.78,161.76,162.73,163.72,164.64000000000001,166.28,21.990000000000002,22.04,22.02,21.98,21.93,21.87,21.79,21.72,21.51,N/A,N/A +2012,12,4,5,30,101800,100620,99490,91.55,0,6.91,8.41,9.03,9.63,10.18,10.71,11.26,11.77,12.82,158.1,159.44,160.42000000000002,161.6,162.73,163.86,164.95000000000002,165.98,167.84,21.900000000000002,21.96,21.96,21.93,21.88,21.84,21.79,21.73,21.61,N/A,N/A +2012,12,4,6,30,101810,100640,99500,90.54,0,6.5600000000000005,8.14,8.82,9.49,10.1,10.68,11.22,11.73,12.65,163.01,163.99,164.65,165.37,166.07,166.76,167.45000000000002,168.11,169.37,22.03,22.06,22.04,21.990000000000002,21.94,21.88,21.81,21.740000000000002,21.580000000000002,N/A,N/A +2012,12,4,7,30,101820,100650,99510,89.97,0,7.41,9.02,9.68,10.32,10.88,11.41,11.88,12.32,13.040000000000001,166.55,167.55,168.24,169.01,169.72,170.38,171.01,171.6,172.8,22.11,22.18,22.18,22.150000000000002,22.1,22.05,21.98,21.92,21.73,N/A,N/A +2012,12,4,8,30,101850,100670,99540,91.45,0,6.140000000000001,7.69,8.38,9.09,9.75,10.39,11,11.55,12.44,170.95000000000002,172.14000000000001,173.08,174.28,175.42000000000002,176.56,177.55,178.45000000000002,179.91,22.03,22.09,22.09,22.06,22.04,22.01,21.97,21.93,21.8,N/A,N/A +2012,12,4,9,30,101880,100710,99570,92.17,0,4.19,5.7,6.390000000000001,7.09,7.72,8.290000000000001,8.9,9.49,10.46,175.69,176.29,176.93,177.88,178.93,180.04,181.16,182.24,183.61,21.98,22.13,22.16,22.16,22.14,22.1,22.04,21.98,21.8,N/A,N/A +2012,12,4,10,30,101890,100710,99580,90.96000000000001,0,6.51,8.08,8.73,9.33,9.85,10.33,10.77,11.16,11.78,175.83,177,177.79,178.75,179.69,180.63,181.47,182.22,183.19,22.07,22.23,22.28,22.3,22.27,22.22,22.13,22.04,21.79,N/A,N/A +2012,12,4,11,30,101930,100750,99620,93.11,0,4.19,5.82,6.6000000000000005,7.4,8.1,8.71,9.25,9.74,10.71,185.94,185.98,186.06,186.26,186.51,186.78,187.03,187.25,188.02,21.830000000000002,21.95,21.98,22,22,21.990000000000002,21.94,21.88,21.740000000000002,N/A,N/A +2012,12,4,12,30,101980,100800,99660,92.31,0,4.66,6.32,7.1000000000000005,7.930000000000001,8.66,9.31,9.9,10.43,11.23,189,189.34,189.57,189.93,190.26,190.57,190.72,190.82,190.45000000000002,21.97,22.17,22.23,22.29,22.31,22.3,22.25,22.19,21.96,N/A,N/A +2012,12,4,13,30,101990,100820,99680,92.07000000000001,0,4.93,6.46,7.17,7.930000000000001,8.58,9.17,9.63,10.02,10.5,185.92000000000002,186.43,186.77,187.05,187.4,187.8,188.25,188.68,189.36,21.89,22.05,22.11,22.150000000000002,22.16,22.150000000000002,22.1,22.04,21.79,N/A,N/A +2012,12,4,14,30,102030,100850,99710,93.23,0,4.5,6.04,6.78,7.57,8.26,8.88,9.35,9.75,9.96,173.44,176.09,177.95000000000002,179.99,181.6,182.92000000000002,183.72,184.33,185.8,21.77,21.97,22.06,22.12,22.150000000000002,22.150000000000002,22.09,22.03,21.85,N/A,N/A +2012,12,4,15,30,102020,100840,99700,92.10000000000001,0,5,6.5,7.22,7.99,8.72,9.44,10.01,10.51,10.69,179.41,180.67000000000002,181.79,183.29,184.47,185.45000000000002,185.95000000000002,186.27,187.48,21.86,22.05,22.14,22.22,22.28,22.330000000000002,22.3,22.27,22.03,N/A,N/A +2012,12,4,16,30,102020,100840,99700,91.68,0,4.88,6.23,6.87,7.5600000000000005,8.18,8.76,9.24,9.67,10.17,177.53,178.48,179.38,180.53,181.62,182.68,183.86,185.02,187.48,21.97,22.06,22.080000000000002,22.1,22.11,22.11,22.1,22.09,22.04,N/A,N/A +2012,12,4,17,30,101990,100810,99670,91.29,0,5.0200000000000005,6.49,7.18,7.87,8.44,8.92,9.3,9.61,9.700000000000001,178.63,180.14000000000001,181.01,181.84,182.66,183.48,184.25,184.96,185.82,21.990000000000002,22.12,22.16,22.2,22.19,22.16,22.09,22.03,21.89,N/A,N/A +2012,12,4,18,30,101980,100800,99670,90.37,0,5.39,6.62,7.11,7.59,8.08,8.59,9.18,9.77,10.02,182.95000000000002,183.5,184.24,185.36,186.79,188.47,190.1,191.65,194.95000000000002,22.03,22.06,22.04,22.01,21.98,21.96,21.96,21.96,21.98,N/A,N/A +2012,12,4,19,30,101970,100790,99650,88.92,0,5.66,7.07,7.68,8.290000000000001,8.84,9.35,9.77,10.14,10.290000000000001,184.16,185.19,185.93,186.71,187.41,188.06,188.9,189.75,191.33,22.150000000000002,22.27,22.3,22.31,22.3,22.28,22.23,22.18,22.01,N/A,N/A +2012,12,4,20,30,102060,100880,99740,92.14,0,6.38,7.54,7.92,8.290000000000001,8.6,8.870000000000001,9.11,9.32,9.64,236.16,235.07,234.18,233.24,232.42000000000002,231.68,231.05,230.51,229.74,21.92,21.86,21.78,21.67,21.56,21.44,21.31,21.19,20.91,N/A,N/A +2012,12,4,21,30,102070,100890,99740,91.07000000000001,0.4,5.2,5.12,4.94,4.76,4.59,4.44,4.23,4.0200000000000005,3.43,11.71,3.97,358.1,350.86,345.15000000000003,340.44,335.21,330.54,320.67,20.400000000000002,20.2,20.1,19.98,19.85,19.73,19.6,19.490000000000002,19.35,N/A,N/A +2012,12,4,22,30,102060,100870,99720,93.62,1.8,5.54,5.8500000000000005,5.74,5.41,5.08,4.75,4.45,4.19,3.8000000000000003,82.14,82.93,83.55,84.19,84.91,85.67,87.15,88.59,94.88,20.35,20.57,20.64,20.54,20.43,20.31,20.18,20.05,19.78,N/A,N/A +2012,12,4,23,30,102090,100900,99750,91.53,0,7.13,7.76,8.03,8.44,8.6,8.6,8.290000000000001,7.96,7.2,83.54,83.76,84.33,85.39,87.35000000000001,89.82000000000001,90.56,90.81,91.12,20.3,20.05,19.94,19.86,20.02,20.330000000000002,20.3,20.2,19.92,N/A,N/A +2012,12,5,0,30,102100,100910,99760,88.85000000000001,7.7,5.15,5.46,5.71,6.24,6.62,6.9,7.05,7.16,7.16,101.13,101.76,103.07000000000001,106.45,109.27,111.69,113.59,115.22,118.08,20.36,20.05,20.02,20.18,20.330000000000002,20.47,20.47,20.44,20.23,N/A,N/A +2012,12,5,1,30,102100,100910,99750,91.32000000000001,0,5.69,6.0600000000000005,6.26,6.63,6.96,7.25,7.42,7.55,7.73,114.54,115.44,116.73,119.10000000000001,122.54,126.45,129.31,131.75,136.12,20.05,19.76,19.64,19.55,19.57,19.650000000000002,19.69,19.72,19.650000000000002,N/A,N/A +2012,12,5,2,30,102100,100910,99770,90.01,0,4.09,4.82,5.16,5.48,5.74,5.98,6.21,6.43,6.8500000000000005,139.05,141.07,142.70000000000002,145.15,147.52,149.83,151.67000000000002,153.27,155.44,20.45,20.47,20.61,20.900000000000002,21.06,21.14,21.12,21.080000000000002,20.86,N/A,N/A +2012,12,5,3,30,102100,100910,99770,90.24,2.9000000000000004,2.92,3.12,3.33,3.81,4.18,4.5,4.76,5,5.22,182.84,181.23,180.1,178.3,177.67000000000002,177.75,178.69,179.79,182.92000000000002,20.5,20.23,20.11,20,19.96,19.95,19.97,19.98,19.86,N/A,N/A +2012,12,5,4,30,102110,100930,99780,90.86,0,3.0300000000000002,3.3200000000000003,3.47,3.66,3.91,4.19,4.44,4.67,4.64,176.32,176.73,176.93,177.19,177.36,177.48,177.71,177.96,179.75,20.71,20.46,20.31,20.14,20.080000000000002,20.080000000000002,20.14,20.21,20.11,N/A,N/A +2012,12,5,5,30,102110,100920,99770,90.78,0,3.09,3.31,3.39,3.52,3.66,3.79,3.81,3.8000000000000003,3.85,192.98000000000002,193.20000000000002,193.47,194,195.74,198.19,201.49,204.67000000000002,208.63,20.79,20.53,20.39,20.23,20.16,20.14,20.2,20.27,20.240000000000002,N/A,N/A +2012,12,5,6,30,102110,100920,99770,89.43,0,4.18,4.71,4.88,5.04,5.09,5.08,4.93,4.78,4.63,224.32,224.36,224.53,225.01,226.65,228.95000000000002,230.57,231.86,233.96,20.93,20.740000000000002,20.63,20.53,20.55,20.62,20.580000000000002,20.53,20.34,N/A,N/A +2012,12,5,7,30,102110,100920,99770,91.42,0,4.74,5.3100000000000005,5.47,5.59,5.67,5.71,5.67,5.62,5.25,255.23000000000002,255.51000000000002,255.74,256.22,257.19,258.44,260.97,263.52,268.6,20.830000000000002,20.61,20.47,20.31,20.150000000000002,20.01,19.88,19.77,19.62,N/A,N/A +2012,12,5,8,30,102110,100920,99770,93.52,0,3.54,3.94,4.0600000000000005,4.15,4.21,4.24,4.26,4.2700000000000005,4.23,287.85,288.58,288.63,288.43,287.90000000000003,287.21,286.09000000000003,284.99,282.03000000000003,20.71,20.46,20.31,20.150000000000002,19.98,19.82,19.650000000000002,19.490000000000002,19.14,N/A,N/A +2012,12,5,9,30,102120,100930,99770,97.13,0,4.7700000000000005,5,5.01,4.98,5,5.04,5.03,5,4.59,325.13,324.5,323.99,323.32,321.67,319.54,316.72,314.12,310.57,19.77,19.45,19.29,19.11,18.95,18.81,18.7,18.6,18.42,N/A,N/A +2012,12,5,10,30,102120,100930,99770,99.32000000000001,0,3.43,3.6,3.63,3.65,3.71,3.7800000000000002,3.86,3.93,3.8200000000000003,323.27,324.63,325.58,326.74,328.83,331.2,334.15000000000003,336.76,338.11,19.2,18.92,18.78,18.63,18.48,18.34,18.25,18.18,17.98,N/A,N/A +2012,12,5,11,30,102140,100940,99790,94.96000000000001,0,3.41,3.56,3.5700000000000003,3.56,3.5500000000000003,3.5300000000000002,3.5100000000000002,3.48,3.43,334.38,335.07,335.49,335.99,336.57,337.16,338.05,339.07,345.37,19.400000000000002,19.06,18.88,18.69,18.5,18.32,18.14,17.97,17.7,N/A,N/A +2012,12,5,12,30,102130,100930,99780,95.21000000000001,0,3.5,3.63,3.64,3.63,3.62,3.6,3.59,3.58,3.46,341.37,342.05,342.46,342.92,343.45,344,344.28000000000003,344.74,350.78000000000003,19.43,19.09,18.91,18.72,18.52,18.330000000000002,18.21,18.1,17.85,N/A,N/A +2012,12,5,13,30,102130,100940,99780,95.61,1.1,4.83,5.04,5.05,5.0200000000000005,4.97,4.92,4.84,4.7700000000000005,4.5200000000000005,30.87,30.810000000000002,30.810000000000002,30.82,30.85,30.87,30.88,30.8,29.740000000000002,18.97,18.61,18.43,18.240000000000002,18.06,17.89,17.72,17.57,17.35,N/A,N/A +2012,12,5,14,30,102140,100950,99790,94.35000000000001,0,4.26,4.41,4.4,4.3500000000000005,4.28,4.21,4.1,3.99,3.58,14.030000000000001,14.07,14.14,14.19,14.21,14.23,14.21,14.19,14.02,18.86,18.490000000000002,18.32,18.13,17.95,17.78,17.62,17.48,17.34,N/A,N/A +2012,12,5,15,30,102140,100940,99780,95.16,0,4.46,4.66,4.68,4.65,4.61,4.57,4.51,4.45,4.23,8.15,8.69,9.040000000000001,9.38,9.73,10.07,10.49,10.9,12.11,18.84,18.47,18.28,18.1,17.91,17.740000000000002,17.56,17.400000000000002,17.11,N/A,N/A +2012,12,5,16,30,102120,100920,99760,94.51,0,4.66,4.89,4.9,4.88,4.8500000000000005,4.82,4.7700000000000005,4.72,4.58,12.17,12.5,12.72,12.93,13.15,13.35,13.6,13.82,14.32,18.84,18.47,18.29,18.1,17.91,17.73,17.55,17.38,17.06,N/A,N/A +2012,12,5,17,30,102080,100880,99720,94,0,4.94,5.2,5.23,5.23,5.21,5.19,5.15,5.11,5.03,18.2,18.32,18.330000000000002,18.330000000000002,18.31,18.3,18.25,18.21,18.02,18.78,18.400000000000002,18.21,18.02,17.830000000000002,17.650000000000002,17.46,17.28,16.95,N/A,N/A +2012,12,5,18,30,102050,100850,99690,93.58,0,5.05,5.3100000000000005,5.34,5.33,5.3100000000000005,5.29,5.25,5.21,5.12,26.16,26.1,25.990000000000002,25.87,25.72,25.57,25.36,25.14,24.47,18.75,18.37,18.18,17.990000000000002,17.8,17.62,17.42,17.25,16.91,N/A,N/A +2012,12,5,19,30,102030,100830,99670,91.28,0,4.99,5.23,5.25,5.23,5.2,5.16,5.11,5.05,4.88,9.290000000000001,9.23,9.19,9.14,9.06,8.99,8.870000000000001,8.74,8.19,18.71,18.32,18.14,17.95,17.76,17.580000000000002,17.38,17.21,16.85,N/A,N/A +2012,12,5,20,30,101990,100790,99630,91.89,0,4.75,5.01,5.04,5.05,5.05,5.04,5.0200000000000005,5,4.94,358.58,358.64,358.69,358.75,358.81,358.88,358.95,359.02,359.2,18.61,18.23,18.04,17.85,17.650000000000002,17.47,17.27,17.09,16.71,N/A,N/A +2012,12,5,21,30,101970,100770,99610,91.18,0,4.48,4.7,4.74,4.74,4.73,4.72,4.69,4.67,4.61,349.01,349.27,349.48,349.71,349.95,350.19,350.51,350.84000000000003,351.84000000000003,18.650000000000002,18.27,18.080000000000002,17.89,17.69,17.51,17.31,17.13,16.75,N/A,N/A +2012,12,5,22,30,101920,100730,99570,90.82000000000001,0,4.93,5.2,5.24,5.25,5.25,5.24,5.22,5.22,5.19,355.18,355.76,356.12,356.48,356.86,357.22,357.68,358.12,359.37,18.81,18.44,18.25,18.06,17.87,17.69,17.490000000000002,17.32,16.95,N/A,N/A +2012,12,5,23,30,101940,100740,99580,89.63,11,5.71,6.03,6.07,6.07,6.04,6.01,5.96,5.91,5.79,17.09,17.330000000000002,17.490000000000002,17.64,17.79,17.93,18.080000000000002,18.22,18.53,18.72,18.330000000000002,18.14,17.95,17.76,17.580000000000002,17.39,17.21,16.85,N/A,N/A +2012,12,6,0,30,101930,100730,99570,88,0,6.7,7.15,7.24,7.28,7.29,7.28,7.2700000000000005,7.26,7.21,30.47,30.26,30.080000000000002,29.89,29.7,29.52,29.3,29.09,28.53,18.45,18.03,17.85,17.64,17.45,17.27,17.07,16.88,16.51,N/A,N/A +2012,12,6,1,30,101920,100720,99560,87.05,0,5.76,6.13,6.2,6.23,6.25,6.25,6.26,6.2700000000000005,6.3100000000000005,26.3,25.990000000000002,25.77,25.55,25.29,25.03,24.68,24.32,23.11,18.400000000000002,18,17.81,17.62,17.43,17.25,17.06,16.88,16.54,N/A,N/A +2012,12,6,2,30,101900,100700,99540,87.5,0,5.19,5.46,5.5,5.5,5.48,5.46,5.43,5.4,5.32,27.11,27.11,27.09,27.080000000000002,27.05,27.02,26.97,26.92,26.68,18.44,18.05,17.86,17.67,17.47,17.29,17.09,16.91,16.54,N/A,N/A +2012,12,6,3,30,101860,100660,99500,88.19,0,5.48,5.8,5.8500000000000005,5.87,5.87,5.87,5.86,5.8500000000000005,5.84,34.660000000000004,34.84,34.99,35.15,35.32,35.49,35.730000000000004,35.97,36.74,18.51,18.12,17.93,17.740000000000002,17.54,17.36,17.16,16.98,16.6,N/A,N/A +2012,12,6,4,30,101830,100630,99470,89.72,0,5.03,5.3,5.3500000000000005,5.36,5.36,5.36,5.3500000000000005,5.34,5.32,30.150000000000002,30.54,30.78,31.04,31.330000000000002,31.61,31.970000000000002,32.32,33.3,18.28,17.88,17.69,17.490000000000002,17.3,17.12,16.92,16.73,16.36,N/A,N/A +2012,12,6,5,30,101800,100610,99450,91.44,0,5.15,5.46,5.51,5.53,5.54,5.54,5.53,5.5200000000000005,5.49,49.71,50.45,50.82,51.18,51.54,51.88,52.27,52.64,53.550000000000004,18.34,17.93,17.740000000000002,17.54,17.34,17.16,16.95,16.77,16.38,N/A,N/A +2012,12,6,6,30,101790,100590,99430,91.3,0,4.82,5.12,5.18,5.2,5.22,5.22,5.22,5.21,5.19,61.11,61.940000000000005,62.46,62.99,63.51,63.99,64.52,65.02,66.19,18.67,18.28,18.09,17.89,17.69,17.5,17.31,17.12,16.73,N/A,N/A +2012,12,6,7,30,101750,100560,99400,93.9,1.8,7.13,7.61,7.7,7.74,7.75,7.74,7.71,7.69,7.6000000000000005,68.69,69.46000000000001,69.82000000000001,70.14,70.45,70.73,71.02,71.29,71.88,18.48,18.06,17.86,17.66,17.46,17.28,17.080000000000002,16.9,16.56,N/A,N/A +2012,12,6,8,30,101730,100530,99370,91.35000000000001,0.7000000000000001,5.87,6.23,6.3,6.33,6.34,6.34,6.33,6.32,6.28,75.84,76.45,76.81,77.17,77.53,77.86,78.25,78.60000000000001,79.47,18.19,17.77,17.57,17.37,17.17,16.98,16.78,16.6,16.21,N/A,N/A +2012,12,6,9,30,101720,100520,99360,90.83,0,5.63,5.96,6.0200000000000005,6.04,6.04,6.03,6.0200000000000005,6,5.94,92.29,92.55,92.65,92.74,92.84,92.93,93.02,93.11,93.23,18.23,17.81,17.61,17.41,17.21,17.02,16.82,16.63,16.25,N/A,N/A +2012,12,6,10,30,101680,100480,99330,87.44,0,4.28,4.43,4.42,4.39,4.3500000000000005,4.3100000000000005,4.25,4.2,4.05,78.97,79.14,79.34,79.54,79.75,79.96000000000001,80.33,80.77,83.24,18.27,17.87,17.69,17.490000000000002,17.3,17.12,16.92,16.75,16.38,N/A,N/A +2012,12,6,11,30,101660,100470,99310,88.46000000000001,0,4.5600000000000005,4.7700000000000005,4.79,4.79,4.7700000000000005,4.75,4.72,4.68,4.59,73.51,73.69,73.8,73.9,74.02,74.12,74.26,74.4,74.83,18.38,17.990000000000002,17.8,17.6,17.400000000000002,17.21,17.02,16.830000000000002,16.44,N/A,N/A +2012,12,6,12,30,101640,100450,99290,88.69,0,4.74,4.98,5.01,5.01,5,4.98,4.95,4.92,4.84,76.25,76.68,76.93,77.18,77.43,77.66,77.94,78.21000000000001,78.87,18.31,17.91,17.72,17.53,17.330000000000002,17.14,16.94,16.76,16.37,N/A,N/A +2012,12,6,13,30,101630,100430,99270,87.56,0,4.46,4.67,4.7,4.69,4.68,4.66,4.64,4.61,4.55,79.11,79.53,79.8,80.08,80.36,80.64,80.97,81.28,82.05,18.400000000000002,18.01,17.82,17.62,17.42,17.240000000000002,17.03,16.85,16.46,N/A,N/A +2012,12,6,14,30,101630,100440,99280,86.42,0,3.71,3.9,3.94,3.96,3.97,3.97,3.97,3.97,3.96,92.25,92.32000000000001,92.37,92.43,92.49,92.56,92.65,92.74,93.04,18.61,18.23,18.04,17.84,17.64,17.46,17.26,17.07,16.68,N/A,N/A +2012,12,6,15,30,101620,100420,99270,85.54,0,4.5,4.74,4.7700000000000005,4.78,4.7700000000000005,4.76,4.75,4.73,4.69,96.98,97.43,97.69,97.97,98.22,98.46000000000001,98.74000000000001,99.01,99.69,18.86,18.48,18.3,18.1,17.91,17.72,17.53,17.34,16.96,N/A,N/A +2012,12,6,16,30,101590,100400,99240,86.66,0,4.2700000000000005,4.46,4.47,4.46,4.44,4.41,4.38,4.3500000000000005,4.2700000000000005,90.43,90.99,91.34,91.71000000000001,92.08,92.43,92.85000000000001,93.23,94.17,18.87,18.5,18.32,18.12,17.92,17.740000000000002,17.54,17.35,16.97,N/A,N/A +2012,12,6,17,30,101550,100360,99200,84,0,4.17,4.39,4.43,4.44,4.44,4.44,4.43,4.42,4.4,94.39,94.78,95.02,95.26,95.49,95.7,95.94,96.15,96.67,19.02,18.66,18.47,18.27,18.07,17.89,17.69,17.5,17.11,N/A,N/A +2012,12,6,18,30,101530,100340,99180,86.82000000000001,0,4.68,4.91,4.93,4.92,4.9,4.87,4.84,4.8,4.71,93.33,93.92,94.33,94.75,95.17,95.58,96.03,96.46000000000001,97.45,18.87,18.490000000000002,18.3,18.1,17.900000000000002,17.71,17.51,17.330000000000002,16.94,N/A,N/A +2012,12,6,19,30,101490,100300,99150,86.23,0,4.74,5.01,5.05,5.07,5.08,5.07,5.0600000000000005,5.05,5.0200000000000005,100.02,100.51,100.84,101.18,101.51,101.82000000000001,102.16,102.48,103.2,19.02,18.64,18.46,18.25,18.06,17.87,17.67,17.48,17.09,N/A,N/A +2012,12,6,20,30,101470,100270,99120,89.02,0,5,5.29,5.34,5.3500000000000005,5.36,5.3500000000000005,5.33,5.32,5.28,98.14,99.17,99.79,100.39,100.96000000000001,101.5,102.09,102.64,103.85000000000001,18.81,18.43,18.240000000000002,18.04,17.84,17.66,17.46,17.27,16.89,N/A,N/A +2012,12,6,21,30,101440,100250,99100,86.7,0,5.09,5.38,5.44,5.45,5.45,5.44,5.42,5.4,5.3,101.16,101.53,101.8,102.09,102.38,102.67,103.02,103.34,104.25,19.02,18.64,18.46,18.26,18.07,17.88,17.68,17.5,17.12,N/A,N/A +2012,12,6,22,30,101390,100210,99050,85.66,0,4.68,4.93,4.96,4.95,4.94,4.91,4.88,4.84,4.72,104.82000000000001,105.05,105.36,105.7,106.09,106.5,107.07000000000001,107.63,109.58,19.27,18.92,18.73,18.54,18.35,18.16,17.96,17.78,17.41,N/A,N/A +2012,12,6,23,30,101380,100200,99040,87.56,0,5.8500000000000005,6.22,6.28,6.3,6.3,6.28,6.26,6.23,6.16,114.81,115.26,115.56,115.85000000000001,116.16,116.46000000000001,116.82000000000001,117.16,118.07000000000001,19.22,18.86,18.67,18.47,18.28,18.09,17.89,17.71,17.330000000000002,N/A,N/A +2012,12,7,0,30,101380,100200,99050,86.55,0,5.55,5.9,5.96,5.97,5.98,5.97,5.95,5.93,5.88,121.25,121.48,121.69,121.91,122.13,122.34,122.59,122.81,123.37,19.41,19.04,18.86,18.66,18.47,18.28,18.080000000000002,17.89,17.5,N/A,N/A +2012,12,7,1,30,101360,100180,99030,86.91,0,6.4,6.87,6.98,7.0200000000000005,7.05,7.0600000000000005,7.0600000000000005,7.05,7.0200000000000005,120.74000000000001,121.10000000000001,121.33,121.57000000000001,121.83,122.09,122.39,122.68,123.44,19.51,19.150000000000002,18.97,18.78,18.580000000000002,18.400000000000002,18.2,18.02,17.63,N/A,N/A +2012,12,7,2,30,101340,100160,99010,87.91,0,6.22,6.68,6.78,6.82,6.84,6.8500000000000005,6.84,6.84,6.8,128.13,128.32,128.42000000000002,128.51,128.6,128.69,128.79,128.88,129.11,19.62,19.27,19.09,18.89,18.69,18.51,18.31,18.12,17.73,N/A,N/A +2012,12,7,3,30,101340,100150,99010,87.65,0,6.51,6.98,7.07,7.1000000000000005,7.11,7.11,7.09,7.07,7,128.29,128.61,128.75,128.9,129.05,129.19,129.36,129.52,129.94,19.7,19.35,19.16,18.97,18.77,18.580000000000002,18.39,18.2,17.82,N/A,N/A +2012,12,7,4,30,101320,100140,98990,87.21000000000001,0,6.3100000000000005,6.78,6.890000000000001,6.93,6.96,6.97,6.97,6.96,6.94,138.9,139.54,139.92000000000002,140.34,140.75,141.15,141.6,142.01,142.96,19.91,19.57,19.39,19.19,19,18.81,18.61,18.43,18.05,N/A,N/A +2012,12,7,5,30,101320,100130,98990,87.01,0,5.7700000000000005,6.2700000000000005,6.4,6.47,6.5200000000000005,6.5600000000000005,6.59,6.61,6.65,149.78,149.84,149.95000000000002,150.06,150.18,150.29,150.42000000000002,150.54,150.85,20.06,19.740000000000002,19.56,19.36,19.17,18.98,18.79,18.6,18.21,N/A,N/A +2012,12,7,6,30,101300,100120,98970,88.18,0,6.390000000000001,6.92,7.03,7.09,7.11,7.13,7.13,7.13,7.11,144.55,144.79,144.96,145.14000000000001,145.33,145.5,145.72,145.92000000000002,146.47,20.19,19.86,19.68,19.490000000000002,19.3,19.11,18.91,18.73,18.35,N/A,N/A +2012,12,7,7,30,101310,100130,98980,87.97,0,6.01,6.46,6.55,6.58,6.6000000000000005,6.61,6.62,6.63,6.76,147.29,147.67000000000002,147.96,148.31,148.69,149.09,149.65,150.19,152.53,20.29,19.98,19.8,19.61,19.42,19.240000000000002,19.04,18.87,18.51,N/A,N/A +2012,12,7,8,30,101300,100120,98980,89.69,0,6.34,6.82,6.91,6.94,6.97,6.99,7.08,7.19,7.88,147.74,148.12,148.41,148.78,149.28,149.86,151.34,152.97,162.86,20.51,20.21,20.05,19.86,19.67,19.5,19.330000000000002,19.18,19.05,N/A,N/A +2012,12,7,9,30,101280,100100,98960,86.93,0,5.98,6.59,6.7700000000000005,6.88,6.97,7.04,7.1000000000000005,7.15,7.24,172.04,171.98,172.02,172.1,172.22,172.38,172.59,172.81,173.49,21.07,20.85,20.7,20.53,20.35,20.18,20.01,19.84,19.490000000000002,N/A,N/A +2012,12,7,10,30,101290,100110,98970,85.81,0,4.8100000000000005,5.4,5.59,5.74,5.86,5.96,6.05,6.12,6.24,164.88,164.85,164.94,165.09,165.28,165.51,165.84,166.16,167.12,21.150000000000002,20.95,20.81,20.64,20.48,20.31,20.13,19.97,19.62,N/A,N/A +2012,12,7,11,30,101280,100110,98970,87.21000000000001,0,4.6000000000000005,5.26,5.5200000000000005,5.75,5.96,6.140000000000001,6.3100000000000005,6.46,6.71,161.95000000000002,162.93,163.61,164.43,165.26,166.11,167.07,167.99,170.13,21.13,20.93,20.8,20.64,20.490000000000002,20.330000000000002,20.16,20,19.66,N/A,N/A +2012,12,7,12,30,101280,100110,98970,89.3,0,3.79,4.39,4.63,4.84,5.03,5.2,5.37,5.54,6.11,160.06,161.1,161.95000000000002,163.03,164.19,165.45000000000002,167.12,168.78,175.35,21.11,20.93,20.81,20.67,20.53,20.39,20.26,20.14,20.01,N/A,N/A +2012,12,7,13,30,101290,100120,98980,89.64,0,4.11,4.71,4.95,5.19,5.39,5.59,5.83,6.0600000000000005,6.5,155.04,156.01,156.81,158.04,159.71,161.72,165.8,170.24,181.99,21.07,20.88,20.76,20.62,20.5,20.38,20.3,20.23,20.21,N/A,N/A +2012,12,7,14,30,101300,100130,98990,89.66,0,3.24,4.01,4.37,4.7700000000000005,5.15,5.5,5.8,6.05,6.22,162.27,165.66,167.94,170.19,171.87,173.17000000000002,174.29,175.29,179.32,21.21,21.13,21.07,21,20.92,20.830000000000002,20.72,20.61,20.36,N/A,N/A +2012,12,7,15,30,101300,100120,98990,89.83,0,3.56,4.3500000000000005,4.7,5.08,5.42,5.74,6.03,6.3,6.8100000000000005,170.9,173.16,174.72,176.52,178.06,179.44,180.62,181.67000000000002,185.91,21.34,21.23,21.16,21.07,20.98,20.89,20.77,20.650000000000002,20.400000000000002,N/A,N/A +2012,12,7,16,30,101300,100120,98990,88.54,0,3.72,4.39,4.68,5.03,5.4,5.8100000000000005,6.24,6.66,7.25,170.85,173.44,175.45000000000002,178.09,180.41,182.57,183.87,184.85,185.3,21.48,21.36,21.28,21.2,21.12,21.04,20.96,20.88,20.64,N/A,N/A +2012,12,7,17,30,101280,100110,98970,86.59,0,4.11,4.7700000000000005,5.04,5.32,5.58,5.84,6.09,6.33,6.78,172.16,173.27,174.08,175.07,176.07,177.12,178.24,179.32,182.1,21.68,21.52,21.41,21.28,21.150000000000002,21.02,20.89,20.76,20.5,N/A,N/A +2012,12,7,18,30,101260,100090,98950,84.33,0,4.61,5.33,5.61,5.88,6.11,6.32,6.5200000000000005,6.69,7.01,180.12,180.49,180.79,181.12,181.43,181.74,182.04,182.33,182.99,21.900000000000002,21.740000000000002,21.64,21.5,21.36,21.23,21.080000000000002,20.94,20.650000000000002,N/A,N/A +2012,12,7,19,30,101230,100060,98930,84.19,0,4.32,4.95,5.2,5.43,5.64,5.82,5.99,6.140000000000001,6.390000000000001,171.94,172.75,173.39000000000001,174.14000000000001,174.91,175.70000000000002,176.58,177.44,179.29,21.900000000000002,21.740000000000002,21.63,21.5,21.36,21.22,21.07,20.94,20.63,N/A,N/A +2012,12,7,20,30,101210,100040,98900,83.63,0,4.49,5.18,5.44,5.69,5.9,6.09,6.2700000000000005,6.43,6.8,168.37,169.35,170.1,171.02,171.96,172.92000000000002,173.95000000000002,174.92000000000002,176.8,21.900000000000002,21.75,21.64,21.5,21.37,21.23,21.080000000000002,20.95,20.66,N/A,N/A +2012,12,7,21,30,101200,100030,98890,83.64,0,4.55,5.37,5.7,6.01,6.28,6.53,6.76,6.97,7.3100000000000005,173.4,174.11,174.63,175.29,175.96,176.65,177.41,178.14000000000001,179.86,21.86,21.75,21.66,21.54,21.41,21.28,21.14,21,20.7,N/A,N/A +2012,12,7,22,30,101200,100030,98890,87.21000000000001,0,4.18,5.05,5.4,5.71,5.96,6.17,6.390000000000001,6.59,7.01,170.25,171.6,172.66,174.02,175.44,176.94,178.54,180.07,182.5,21.64,21.580000000000002,21.52,21.43,21.32,21.21,21.09,20.98,20.72,N/A,N/A +2012,12,7,23,30,101200,100030,98900,87.35000000000001,0,4.45,5.37,5.76,6.13,6.44,6.72,6.96,7.17,7.49,160.66,162.27,163.5,165.04,166.47,167.85,169.03,170.07,171.79,21.5,21.45,21.400000000000002,21.330000000000002,21.25,21.16,21.05,20.94,20.67,N/A,N/A +2012,12,8,0,30,101210,100040,98900,88.21000000000001,0,4.18,5.08,5.48,5.89,6.26,6.61,6.91,7.17,7.38,156.45000000000002,158.23,159.69,161.62,163.5,165.37,167.17000000000002,168.84,172.59,21.41,21.36,21.32,21.27,21.21,21.150000000000002,21.07,20.98,20.82,N/A,N/A +2012,12,8,1,30,101200,100030,98900,87.3,0,5.08,6.0200000000000005,6.4,6.78,7.12,7.43,7.72,7.98,8.38,156.20000000000002,157.09,157.8,158.8,159.9,161.11,162.49,163.86,166.74,21.46,21.36,21.29,21.2,21.11,21.02,20.92,20.830000000000002,20.63,N/A,N/A +2012,12,8,2,30,101200,100030,98900,86.13,0,5.44,6.45,6.8500000000000005,7.25,7.58,7.88,8.120000000000001,8.34,8.63,154.74,155.53,156.19,157.1,158.08,159.14000000000001,160.41,161.67000000000002,164.88,21.54,21.47,21.41,21.32,21.240000000000002,21.16,21.06,20.96,20.72,N/A,N/A +2012,12,8,3,30,101200,100030,98890,85.52,0,6.03,7.05,7.47,7.87,8.24,8.58,8.91,9.22,9.68,152.49,153.12,153.66,154.4,155.19,156.04,156.99,157.92000000000002,159.95000000000002,21.55,21.47,21.39,21.29,21.2,21.11,21.01,20.92,20.71,N/A,N/A +2012,12,8,4,30,101180,100010,98880,87.02,0,6.09,7.0600000000000005,7.44,7.79,8.1,8.4,8.69,8.96,9.51,149.86,150.64000000000001,151.29,152.20000000000002,153.20000000000002,154.3,155.56,156.79,159.45000000000002,21.490000000000002,21.37,21.29,21.18,21.080000000000002,20.98,20.88,20.78,20.6,N/A,N/A +2012,12,8,5,30,101200,100020,98890,86.12,0,6.17,7.25,7.7,8.15,8.56,8.93,9.28,9.61,10.14,153.92000000000002,154.81,155.47,156.28,157.05,157.83,158.63,159.4,161.07,21.580000000000002,21.490000000000002,21.42,21.31,21.21,21.11,21,20.89,20.650000000000002,N/A,N/A +2012,12,8,6,30,101200,100030,98900,86.68,0,5.91,6.95,7.38,7.78,8.14,8.47,8.76,9.02,9.4,162.83,163.39000000000001,163.82,164.42000000000002,165.04,165.71,166.46,167.21,169.11,21.7,21.61,21.54,21.43,21.32,21.21,21.09,20.97,20.7,N/A,N/A +2012,12,8,7,30,101230,100060,98930,88.92,0,5.73,6.78,7.22,7.65,8.03,8.39,8.73,9.05,9.59,167.31,168.18,168.85,169.72,170.57,171.46,172.39000000000001,173.29,175.22,21.69,21.61,21.53,21.43,21.330000000000002,21.23,21.12,21.02,20.79,N/A,N/A +2012,12,8,8,30,101230,100060,98930,89.67,0,4.72,5.7700000000000005,6.24,6.72,7.15,7.5600000000000005,7.94,8.290000000000001,8.81,170.73,171.57,172.27,173.19,174.1,175.05,176.03,176.98,179.62,21.68,21.64,21.59,21.52,21.45,21.36,21.26,21.16,20.91,N/A,N/A +2012,12,8,9,30,101250,100080,98950,90.48,0,4.66,5.7700000000000005,6.2700000000000005,6.79,7.26,7.7,8.07,8.39,8.85,173.62,174.86,175.76,176.79,177.58,178.21,178.75,179.23,180.54,21.72,21.71,21.68,21.62,21.55,21.47,21.38,21.28,21.04,N/A,N/A +2012,12,8,10,30,101270,100100,98960,90.89,0,4.3,5.4,5.91,6.41,6.87,7.32,7.7700000000000005,8.19,8.77,175.08,176.03,176.81,177.93,179.06,180.25,181.26,182.18,183.33,21.68,21.67,21.64,21.580000000000002,21.52,21.46,21.39,21.330000000000002,21.11,N/A,N/A +2012,12,8,11,30,101310,100140,99010,91.71000000000001,0,4.03,5.12,5.63,6.12,6.5200000000000005,6.86,7.17,7.46,7.890000000000001,169.44,170.96,172.12,173.34,174.37,175.27,176.58,178.01,181.95000000000002,21.64,21.650000000000002,21.63,21.580000000000002,21.52,21.43,21.32,21.22,21.01,N/A,N/A +2012,12,8,12,30,101320,100150,99010,91.9,0,4.3100000000000005,5.37,5.86,6.38,6.7700000000000005,7.05,7.16,7.19,7.28,174.26,176.32,178.01,180.16,182.37,184.70000000000002,188.34,192.18,195.52,21.66,21.67,21.67,21.650000000000002,21.61,21.56,21.5,21.43,21.18,N/A,N/A +2012,12,8,13,30,101330,100160,99030,93.52,0,3.8200000000000003,4.8500000000000005,5.32,5.8100000000000005,6.26,6.68,6.88,6.99,7.18,166.39000000000001,170.4,174,179.97,184.70000000000002,188.59,190.42000000000002,191.39000000000001,193.52,21.53,21.6,21.64,21.7,21.73,21.73,21.68,21.61,21.37,N/A,N/A +2012,12,8,14,30,101360,100190,99060,93.27,0,3.9,4.88,5.37,5.95,6.54,7.17,7.61,7.930000000000001,8.19,169.55,172.86,175.8,180.35,184.37,188.13,190.07,191.12,192.02,21.52,21.54,21.55,21.59,21.62,21.650000000000002,21.650000000000002,21.650000000000002,21.47,N/A,N/A +2012,12,8,15,30,101370,100190,99060,92.58,0,4.1,5.0200000000000005,5.44,5.89,6.390000000000001,6.96,7.45,7.9,7.97,167.38,168.93,170.25,172.08,174.07,176.32,178.4,180.32,183.91,21.57,21.51,21.48,21.45,21.42,21.39,21.34,21.28,21.21,N/A,N/A +2012,12,8,16,30,101350,100180,99050,90.19,0,4.8500000000000005,5.8100000000000005,6.23,6.640000000000001,6.97,7.24,7.41,7.53,7.82,170.84,172.07,173.20000000000002,174.91,176.59,178.29,179.63,180.75,182.38,21.79,21.740000000000002,21.7,21.68,21.650000000000002,21.64,21.62,21.6,21.5,N/A,N/A +2012,12,8,17,30,101330,100160,99030,89.53,0,5.19,6.09,6.48,6.9,7.3100000000000005,7.73,8.11,8.44,8.620000000000001,166.48,167.75,168.89000000000001,170.79,172.63,174.52,175.96,177.16,178.65,21.87,21.79,21.740000000000002,21.7,21.67,21.66,21.67,21.68,21.62,N/A,N/A +2012,12,8,18,30,101310,100140,99010,88.74,0,5.5,6.41,6.7700000000000005,7.11,7.43,7.74,8.06,8.370000000000001,8.950000000000001,158.42000000000002,159.59,160.57,161.96,163.43,165.04,166.69,168.27,170.69,21.92,21.81,21.740000000000002,21.64,21.56,21.48,21.400000000000002,21.330000000000002,21.17,N/A,N/A +2012,12,8,19,30,101290,100120,98990,87.09,0,5.48,6.45,6.83,7.21,7.54,7.86,8.15,8.42,8.92,155.43,156.19,156.79,157.69,158.69,159.79,161.09,162.37,165.06,21.98,21.89,21.82,21.72,21.63,21.54,21.44,21.34,21.12,N/A,N/A +2012,12,8,20,30,101280,100110,98980,87.71000000000001,0,5.4,6.42,6.86,7.2700000000000005,7.640000000000001,7.99,8.32,8.63,9.17,159.31,160.24,160.93,161.77,162.6,163.45000000000002,164.31,165.13,166.63,21.97,21.91,21.85,21.75,21.67,21.57,21.47,21.38,21.17,N/A,N/A +2012,12,8,21,30,101270,100100,98970,86.22,0,5.73,6.87,7.3500000000000005,7.79,8.16,8.5,8.82,9.120000000000001,9.65,165.37,166.11,166.63,167.29,167.97,168.69,169.4,170.08,171.07,22.01,21.990000000000002,21.94,21.87,21.79,21.7,21.59,21.490000000000002,21.25,N/A,N/A +2012,12,8,22,30,101280,100110,98980,87.97,0,4.97,6.1000000000000005,6.6000000000000005,7.09,7.53,7.94,8.32,8.68,9.3,169.33,169.88,170.29,170.87,171.42000000000002,171.97,172.44,172.84,173.48,21.88,21.87,21.830000000000002,21.76,21.68,21.6,21.490000000000002,21.38,21.11,N/A,N/A +2012,12,8,23,30,101260,100090,98960,88.74,0,5.2,6.390000000000001,6.93,7.47,7.96,8.41,8.84,9.25,9.92,166.04,167.23,168.11,169.17000000000002,170.16,171.13,171.99,172.77,173.79,21.830000000000002,21.830000000000002,21.81,21.76,21.7,21.64,21.55,21.47,21.26,N/A,N/A +2012,12,9,0,30,101280,100110,98980,89.96000000000001,0,6.0200000000000005,7.23,7.76,8.27,8.72,9.13,9.5,9.84,10.4,161.91,163.05,163.95000000000002,165.03,166.06,167.12,168.19,169.22,171.02,21.830000000000002,21.82,21.78,21.72,21.650000000000002,21.57,21.48,21.39,21.16,N/A,N/A +2012,12,9,1,30,101270,100100,98970,89.71000000000001,0,5.79,7.07,7.61,8.13,8.59,9.02,9.4,9.75,10.34,168.20000000000002,169.04,169.65,170.28,170.83,171.32,171.78,172.19,173.08,21.830000000000002,21.8,21.75,21.68,21.6,21.51,21.400000000000002,21.31,21.080000000000002,N/A,N/A +2012,12,9,2,30,101300,100130,98990,88.62,0,5.2700000000000005,6.43,6.95,7.47,7.92,8.35,8.73,9.07,9.66,177.84,178.33,178.73,179.3,179.86,180.46,181.07,181.65,182.70000000000002,21.86,21.86,21.82,21.75,21.68,21.6,21.51,21.41,21.19,N/A,N/A +2012,12,9,3,30,101290,100120,98980,89.53,0,5.12,6.2700000000000005,6.7700000000000005,7.26,7.68,8.07,8.42,8.74,9.26,177.63,177.78,177.94,178.21,178.5,178.81,179.17000000000002,179.53,180.41,21.81,21.79,21.75,21.67,21.580000000000002,21.48,21.37,21.26,21,N/A,N/A +2012,12,9,4,30,101260,100090,98960,89.68,0,5.22,6.49,7.05,7.61,8.08,8.51,8.9,9.25,9.88,171.77,172.99,173.85,174.69,175.4,176.03,176.57,177.03,177.64000000000001,21.830000000000002,21.830000000000002,21.79,21.73,21.650000000000002,21.56,21.46,21.35,21.09,N/A,N/A +2012,12,9,5,30,101250,100080,98950,90.14,0,5.3100000000000005,6.54,7.09,7.640000000000001,8.11,8.56,8.93,9.27,9.790000000000001,169.8,170.77,171.49,172.34,173.13,173.9,174.66,175.38,176.91,21.830000000000002,21.82,21.78,21.72,21.650000000000002,21.57,21.47,21.37,21.14,N/A,N/A +2012,12,9,6,30,101260,100090,98960,88.17,0,6.13,7.36,7.9,8.41,8.86,9.27,9.65,9.99,10.53,171.59,172.39000000000001,172.96,173.58,174.12,174.61,175.04,175.44,176.15,22.01,21.97,21.92,21.84,21.75,21.650000000000002,21.55,21.44,21.18,N/A,N/A +2012,12,9,7,30,101270,100110,98970,88,0,6.3500000000000005,7.63,8.18,8.72,9.200000000000001,9.65,10.06,10.450000000000001,11.09,174.63,175.23,175.69,176.26,176.83,177.42000000000002,178,178.55,179.47,22.09,22.07,22.03,21.96,21.89,21.81,21.71,21.62,21.39,N/A,N/A +2012,12,9,8,30,101280,100110,98970,87.57000000000001,0,6.51,7.78,8.31,8.82,9.27,9.68,10.06,10.41,11.03,175.17000000000002,175.71,176.13,176.67000000000002,177.20000000000002,177.74,178.3,178.84,179.82,22.150000000000002,22.13,22.09,22.02,21.94,21.86,21.76,21.67,21.44,N/A,N/A +2012,12,9,9,30,101280,100110,98980,88.42,0,6.22,7.48,8.02,8.540000000000001,8.99,9.4,9.76,10.08,10.61,176.32,176.82,177.22,177.8,178.38,178.99,179.63,180.24,181.42000000000002,22.12,22.11,22.07,22,21.92,21.84,21.740000000000002,21.64,21.39,N/A,N/A +2012,12,9,10,30,101280,100110,98980,90.73,0,5.63,6.88,7.43,7.98,8.47,8.91,9.28,9.620000000000001,10.13,179.4,180.44,181.25,182.24,183.17000000000002,184.11,185.08,186,188,22.06,22.05,22.02,21.96,21.89,21.81,21.71,21.6,21.34,N/A,N/A +2012,12,9,11,30,101290,100120,98990,93.03,0,5.22,6.41,6.92,7.44,7.91,8.35,8.76,9.15,9.74,184.36,185.83,186.91,188.24,189.47,190.66,191.62,192.45000000000002,193.26,21.98,21.96,21.92,21.86,21.79,21.72,21.64,21.56,21.36,N/A,N/A +2012,12,9,12,30,101320,100150,99020,94.58,0,4.25,5.44,5.97,6.49,6.92,7.3,7.7700000000000005,8.26,9.06,187.76,189.1,190.11,191.28,192.61,194.11,196.25,198.57,200.74,21.91,21.92,21.900000000000002,21.85,21.78,21.71,21.650000000000002,21.580000000000002,21.44,N/A,N/A +2012,12,9,13,30,101330,100160,99030,94.92,0,4.3100000000000005,5.67,6.32,6.93,7.49,8,8.39,8.72,9.1,194.23000000000002,195.66,196.93,198.95000000000002,200.88,202.83,204.04,204.9,204.99,21.95,22.06,22.1,22.11,22.09,22.06,22,21.94,21.76,N/A,N/A +2012,12,9,14,30,101360,100190,99060,96.52,0,3.23,4.3500000000000005,4.93,5.62,6.49,7.58,8.19,8.540000000000001,9.17,179.88,184.75,188.28,192.05,195.53,199.06,200.92000000000002,201.99,203.39000000000001,21.75,21.78,21.79,21.8,21.85,21.93,21.92,21.87,21.81,N/A,N/A +2012,12,9,15,30,101360,100190,99060,97.58,0,3.04,3.98,4.48,5.19,6.07,7.2,7.87,8.3,9.03,171.88,178.69,183.79,190.07,194.43,197.27,199.20000000000002,200.64000000000001,202.57,21.68,21.63,21.63,21.67,21.72,21.77,21.75,21.72,21.67,N/A,N/A +2012,12,9,16,30,101330,100160,99030,95.81,0,4.54,5.69,6.2700000000000005,6.93,7.54,8.14,8.68,9.18,9.96,187.66,189.39000000000001,190.77,192.52,194.04,195.41,196.46,197.34,199.52,22.05,22,21.97,21.95,21.92,21.900000000000002,21.85,21.8,21.59,N/A,N/A +2012,12,9,17,30,101290,100130,99000,95.69,0,4.54,5.66,6.22,6.87,7.5200000000000005,8.22,8.94,9.65,10.26,191.44,192.84,194.01,195.85,197.72,199.70000000000002,201.15,202.34,202.59,22.17,22.11,22.080000000000002,22.07,22.1,22.150000000000002,22.19,22.23,22.13,N/A,N/A +2012,12,9,18,30,101280,100110,98980,95.98,0,5.04,6.05,6.51,6.99,7.46,7.92,8.4,8.870000000000001,10.09,184.38,185.59,186.61,188.1,189.77,191.70000000000002,194.4,197.3,202.47,22.26,22.150000000000002,22.080000000000002,22,21.94,21.88,21.85,21.830000000000002,21.95,N/A,N/A +2012,12,9,19,30,101250,100080,98960,93.96000000000001,0,5.21,6.43,7,7.65,8.31,9.02,9.790000000000001,10.56,11.99,192.35,193.87,195.1,196.81,198.38,199.92000000000002,201.14000000000001,202.20000000000002,203.21,22.47,22.46,22.45,22.46,22.47,22.5,22.52,22.55,22.45,N/A,N/A +2012,12,9,20,30,101210,100050,98920,93.75,0,5.51,6.8500000000000005,7.46,8.09,8.64,9.16,9.64,10.1,11.11,191.46,192.48000000000002,193.28,194.33,195.28,196.19,197.04,197.82,198.98000000000002,22.52,22.53,22.52,22.48,22.44,22.38,22.32,22.26,22.11,N/A,N/A +2012,12,9,21,30,101190,100030,98900,94.83,0,4.72,6.09,6.7,7.28,7.8100000000000005,8.3,8.8,9.3,10.450000000000001,186.45000000000002,188.19,189.58,191.4,193.18,195,196.64000000000001,198.17000000000002,200.35,22.41,22.490000000000002,22.5,22.48,22.45,22.42,22.38,22.34,22.25,N/A,N/A +2012,12,9,22,30,101150,99990,98860,92.42,0,4.92,6.38,7.07,7.7700000000000005,8.4,8.98,9.6,10.200000000000001,11.48,186.70000000000002,188.23,189.39000000000001,190.71,191.89000000000001,193.01,194.58,196.29,199.98000000000002,22.36,22.52,22.580000000000002,22.64,22.68,22.71,22.740000000000002,22.77,22.64,N/A,N/A +2012,12,9,23,30,101130,99970,98840,91.74,0,5.09,6.5200000000000005,7.17,7.8500000000000005,8.53,9.27,10.15,11.07,12.06,182.92000000000002,184.24,185.39000000000001,187.20000000000002,189.12,191.22,193.02,194.68,195.72,22.28,22.43,22.490000000000002,22.56,22.64,22.72,22.77,22.81,22.61,N/A,N/A +2012,12,10,0,30,101120,99960,98830,92.58,0,5.3,6.74,7.42,8.13,8.76,9.36,10.07,10.81,12.07,181.57,182.57,183.37,184.46,185.8,187.44,189.82,192.48000000000002,195.62,22.240000000000002,22.36,22.41,22.46,22.53,22.62,22.72,22.830000000000002,22.72,N/A,N/A +2012,12,10,1,30,101120,99950,98820,93.99,0,5.38,6.78,7.45,8.15,8.78,9.4,9.96,10.46,11.290000000000001,176.07,176.98,177.75,178.81,179.95000000000002,181.24,182.62,183.99,186.48,22.16,22.23,22.25,22.240000000000002,22.23,22.22,22.19,22.14,21.96,N/A,N/A +2012,12,10,2,30,101100,99930,98810,94.4,0,6.03,7.48,8.14,8.83,9.450000000000001,10.02,10.53,10.98,11.63,177.97,178.49,178.92000000000002,179.48,180.02,180.58,181.12,181.61,182.79,22.23,22.28,22.28,22.26,22.23,22.19,22.12,22.04,21.830000000000002,N/A,N/A +2012,12,10,3,30,101080,99910,98790,94.22,0,6.24,7.71,8.370000000000001,9.02,9.6,10.16,10.71,11.23,12.17,178.1,179.18,179.96,180.9,181.76,182.59,183.31,183.95000000000002,184.81,22.26,22.32,22.31,22.29,22.25,22.2,22.150000000000002,22.09,21.92,N/A,N/A +2012,12,10,4,30,101060,99890,98770,92.74,0,6.57,8.08,8.74,9.38,9.96,10.5,11,11.450000000000001,12.200000000000001,183.16,183.43,183.66,184.01,184.38,184.8,185.25,185.67000000000002,186.52,22.35,22.400000000000002,22.39,22.35,22.3,22.25,22.18,22.1,21.900000000000002,N/A,N/A +2012,12,10,5,30,101030,99860,98740,91.86,0,7.42,8.950000000000001,9.61,10.25,10.8,11.32,11.8,12.24,13.030000000000001,184.70000000000002,185.21,185.58,186.02,186.43,186.85,187.27,187.67000000000002,188.41,22.44,22.490000000000002,22.48,22.46,22.41,22.36,22.29,22.22,22.02,N/A,N/A +2012,12,10,6,30,101050,99890,98760,92.67,0,6.28,7.8100000000000005,8.5,9.18,9.77,10.33,10.85,11.33,12.200000000000001,186.65,187.23,187.69,188.28,188.82,189.36,189.86,190.31,191.17000000000002,22.3,22.400000000000002,22.41,22.38,22.34,22.29,22.22,22.14,21.95,N/A,N/A +2012,12,10,7,30,101050,99880,98760,93.31,0,6.34,7.9,8.620000000000001,9.36,10,10.58,11.11,11.61,12.44,193.46,193.96,194.32,194.84,195.33,195.8,196.21,196.56,197.06,22.28,22.37,22.38,22.37,22.34,22.3,22.23,22.17,21.97,N/A,N/A +2012,12,10,8,30,101010,99850,98720,94.36,0,4.86,6.38,7.11,7.86,8.540000000000001,9.19,9.790000000000001,10.35,11.44,202.20000000000002,202.09,202.06,202.24,202.5,202.86,203.24,203.6,204.04,22.080000000000002,22.18,22.19,22.19,22.16,22.13,22.07,22.01,21.85,N/A,N/A +2012,12,10,9,30,101110,99920,98770,99.10000000000001,4.4,11.76,12.81,13.19,13.4,13.55,13.66,13.75,13.82,13.94,330.29,330.1,330.24,330.41,330.57,330.73,330.90000000000003,331.06,331.43,17.26,16.73,16.53,16.36,16.22,16.080000000000002,15.950000000000001,15.83,15.59,N/A,N/A +2012,12,10,10,30,101190,99990,98830,95.18,150.9,12.89,13.99,14.290000000000001,14.43,14.51,14.57,14.6,14.63,14.72,349.23,349.25,349.21,349.13,349.04,348.94,348.81,348.68,348.25,15.89,15.23,14.99,14.780000000000001,14.59,14.41,14.23,14.07,13.76,N/A,N/A +2012,12,10,11,30,101240,100040,98870,91.9,12.8,12.950000000000001,14.040000000000001,14.3,14.4,14.450000000000001,14.47,14.47,14.450000000000001,14.4,340.15000000000003,340.55,340.8,341.06,341.33,341.59000000000003,341.88,342.16,342.82,15.290000000000001,14.6,14.35,14.13,13.92,13.73,13.540000000000001,13.370000000000001,13.01,N/A,N/A +2012,12,10,12,30,101330,100120,98940,86,0,14.09,15.35,15.67,15.83,15.93,15.99,16.02,16.03,16.03,346.93,346.72,346.58,346.44,346.31,346.18,346.04,345.91,345.62,14.040000000000001,13.24,12.950000000000001,12.71,12.48,12.280000000000001,12.07,11.870000000000001,11.48,N/A,N/A +2012,12,10,13,30,101380,100160,98980,75.71000000000001,0,16.22,17.79,18.19,18.41,18.53,18.62,18.67,18.7,18.72,344.26,344.19,344.18,344.15000000000003,344.11,344.07,344.01,343.96,343.86,13.32,12.42,12.120000000000001,11.86,11.620000000000001,11.41,11.19,10.99,10.59,N/A,N/A +2012,12,10,14,30,101450,100220,99040,72.65,0,16.080000000000002,17.61,18.01,18.22,18.34,18.43,18.490000000000002,18.52,18.56,346.61,346.51,346.45,346.40000000000003,346.34000000000003,346.29,346.23,346.18,346.07,12.76,11.84,11.53,11.27,11.03,10.82,10.6,10.4,10.01,N/A,N/A +2012,12,10,15,30,101550,100330,99140,72.59,0,14.33,15.6,15.950000000000001,16.13,16.25,16.32,16.37,16.41,16.45,352.22,351.97,351.8,351.64,351.48,351.34000000000003,351.18,351.04,350.75,12.21,11.31,11,10.74,10.51,10.3,10.08,9.88,9.48,N/A,N/A +2012,12,10,16,30,101620,100390,99200,71.67,0,12.67,13.700000000000001,13.96,14.09,14.17,14.23,14.26,14.280000000000001,14.290000000000001,351.16,350.94,350.79,350.66,350.53000000000003,350.43,350.31,350.21,349.99,11.67,10.8,10.5,10.24,10.01,9.8,9.58,9.38,8.98,N/A,N/A +2012,12,10,17,30,101620,100390,99200,65.02,0,12.89,13.91,14.15,14.27,14.33,14.36,14.370000000000001,14.370000000000001,14.35,354.89,354.83,354.79,354.74,354.68,354.63,354.58,354.52,354.39,11.450000000000001,10.57,10.27,10.02,9.790000000000001,9.59,9.370000000000001,9.18,8.790000000000001,N/A,N/A +2012,12,10,18,30,101650,100420,99230,63.83,0,11.55,12.450000000000001,12.68,12.8,12.88,12.93,12.97,12.99,13.030000000000001,351.05,350.85,350.75,350.64,350.55,350.46,350.36,350.27,350.09000000000003,11.700000000000001,10.88,10.59,10.35,10.120000000000001,9.91,9.700000000000001,9.5,9.11,N/A,N/A +2012,12,10,19,30,101680,100450,99260,59.93,0,11.1,11.94,12.15,12.26,12.32,12.370000000000001,12.4,12.42,12.44,350.75,350.69,350.64,350.6,350.56,350.53000000000003,350.49,350.46,350.39,12.07,11.27,10.99,10.74,10.51,10.31,10.09,9.89,9.49,N/A,N/A +2012,12,10,20,30,101660,100440,99240,58.88,0,10.53,11.3,11.49,11.58,11.65,11.69,11.71,11.73,11.75,347.17,347.14,347.12,347.1,347.07,347.04,347.01,346.99,346.93,12.290000000000001,11.52,11.24,10.99,10.77,10.56,10.34,10.14,9.74,N/A,N/A +2012,12,10,21,30,101660,100440,99250,57.03,0,10.14,10.86,11.040000000000001,11.13,11.19,11.22,11.25,11.26,11.27,350.27,350.12,350.01,349.90000000000003,349.79,349.7,349.6,349.5,349.32,12.49,11.74,11.47,11.23,11.01,10.8,10.58,10.38,9.97,N/A,N/A +2012,12,10,22,30,101660,100440,99250,57.32,0,9.86,10.55,10.71,10.78,10.83,10.86,10.870000000000001,10.88,10.870000000000001,351.54,351.48,351.42,351.36,351.3,351.25,351.19,351.14,351.05,12.47,11.73,11.450000000000001,11.21,10.98,10.78,10.56,10.36,9.950000000000001,N/A,N/A +2012,12,10,23,30,101710,100480,99290,55.730000000000004,0,9.99,10.68,10.85,10.92,10.96,10.99,11,11,11,354.63,354.51,354.45,354.40000000000003,354.35,354.3,354.25,354.2,354.1,12.18,11.43,11.16,10.91,10.69,10.48,10.26,10.06,9.66,N/A,N/A +2012,12,11,0,30,101780,100550,99360,55.59,0,9.84,10.48,10.63,10.69,10.72,10.74,10.74,10.73,10.71,1.34,1.09,0.92,0.75,0.6,0.46,0.31,0.18,359.90000000000003,11.6,10.83,10.55,10.3,10.08,9.870000000000001,9.65,9.450000000000001,9.05,N/A,N/A +2012,12,11,1,30,101830,100590,99390,55.730000000000004,0,9.8,10.44,10.57,10.63,10.65,10.66,10.66,10.65,10.620000000000001,1.59,1.3900000000000001,1.26,1.1400000000000001,1.02,0.91,0.8,0.6900000000000001,0.48,11.06,10.27,9.99,9.75,9.52,9.32,9.1,8.9,8.5,N/A,N/A +2012,12,11,2,30,101860,100630,99430,56.22,0,10.07,10.72,10.85,10.9,10.92,10.93,10.92,10.9,10.86,2.27,2.13,2.0300000000000002,1.94,1.86,1.78,1.69,1.61,1.44,10.68,9.870000000000001,9.59,9.35,9.120000000000001,8.91,8.700000000000001,8.5,8.1,N/A,N/A +2012,12,11,3,30,101890,100650,99440,56.800000000000004,0,9.870000000000001,10.49,10.6,10.64,10.65,10.65,10.63,10.61,10.55,4.11,4.09,4.08,4.07,4.05,4.04,4.0200000000000005,3.99,3.95,10.27,9.46,9.18,8.93,8.71,8.5,8.28,8.08,7.69,N/A,N/A +2012,12,11,4,30,101890,100640,99440,59.43,0,10.07,10.69,10.8,10.84,10.84,10.84,10.81,10.790000000000001,10.72,2.59,2.77,2.89,2.99,3.09,3.16,3.25,3.33,3.47,9.78,8.94,8.65,8.4,8.17,7.96,7.74,7.54,7.15,N/A,N/A +2012,12,11,5,30,101890,100650,99440,61.89,0,10.200000000000001,10.85,10.98,11.03,11.05,11.05,11.040000000000001,11.02,10.97,6.1000000000000005,6.34,6.48,6.6000000000000005,6.71,6.8100000000000005,6.91,7,7.17,9.34,8.48,8.18,7.930000000000001,7.7,7.48,7.26,7.0600000000000005,6.66,N/A,N/A +2012,12,11,6,30,101930,100690,99480,63.96,0,9.9,10.51,10.64,10.68,10.700000000000001,10.71,10.69,10.68,10.63,10.540000000000001,10.73,10.81,10.89,10.96,11.02,11.09,11.15,11.27,9.09,8.23,7.930000000000001,7.68,7.44,7.23,7.01,6.8,6.4,N/A,N/A +2012,12,11,7,30,101930,100680,99470,64.21000000000001,0,10.06,10.69,10.82,10.870000000000001,10.89,10.89,10.88,10.86,10.82,17.81,17.94,17.990000000000002,18.04,18.080000000000002,18.12,18.17,18.21,18.28,8.78,7.91,7.61,7.36,7.12,6.91,6.69,6.48,6.08,N/A,N/A +2012,12,11,8,30,101960,100720,99500,64.13,0,9.950000000000001,10.55,10.67,10.71,10.72,10.72,10.700000000000001,10.67,10.61,21.68,21.73,21.81,21.88,21.94,22,22.05,22.11,22.2,8.52,7.640000000000001,7.34,7.08,6.84,6.63,6.42,6.21,5.8100000000000005,N/A,N/A +2012,12,11,9,30,101970,100720,99510,64.15,0,9.51,10.07,10.17,10.21,10.22,10.22,10.200000000000001,10.18,10.120000000000001,20.900000000000002,21.080000000000002,21.2,21.32,21.42,21.52,21.62,21.7,21.89,8.49,7.63,7.33,7.08,6.8500000000000005,6.640000000000001,6.42,6.22,5.82,N/A,N/A +2012,12,11,10,30,102020,100770,99560,64.56,0,8.84,9.33,9.41,9.44,9.44,9.43,9.41,9.38,9.31,20.39,20.650000000000002,20.84,20.990000000000002,21.14,21.28,21.41,21.54,21.79,8.51,7.68,7.390000000000001,7.140000000000001,6.9,6.69,6.48,6.28,5.88,N/A,N/A +2012,12,11,11,30,102040,100800,99580,65.87,0,8.64,9.09,9.16,9.18,9.17,9.16,9.13,9.1,9.02,23.78,24.04,24.25,24.43,24.6,24.76,24.92,25.07,25.38,8.6,7.78,7.49,7.24,7.01,6.8,6.59,6.390000000000001,5.99,N/A,N/A +2012,12,11,12,30,102050,100800,99590,66.93,0,8.18,8.59,8.65,8.66,8.65,8.63,8.61,8.58,8.5,26.03,26.39,26.61,26.810000000000002,27.01,27.18,27.36,27.54,27.88,8.77,7.98,7.69,7.45,7.22,7.01,6.8,6.6000000000000005,6.21,N/A,N/A +2012,12,11,13,30,102030,100790,99580,69.18,0,8.77,9.23,9.3,9.31,9.3,9.27,9.24,9.200000000000001,9.120000000000001,26.32,26.76,27.02,27.25,27.48,27.68,27.900000000000002,28.1,28.5,8.84,8.03,7.74,7.49,7.26,7.0600000000000005,6.84,6.65,6.25,N/A,N/A +2012,12,11,14,30,102090,100850,99640,69,0,8.44,8.89,8.950000000000001,8.950000000000001,8.93,8.91,8.870000000000001,8.84,8.75,26.38,26.78,27.060000000000002,27.310000000000002,27.560000000000002,27.78,28.02,28.240000000000002,28.7,8.84,8.03,7.74,7.5,7.2700000000000005,7.07,6.8500000000000005,6.65,6.26,N/A,N/A +2012,12,11,15,30,102090,100840,99630,66.9,0,8.11,8.51,8.58,8.58,8.58,8.56,8.53,8.5,8.42,26.22,26.62,26.87,27.1,27.310000000000002,27.51,27.72,27.91,28.3,8.950000000000001,8.17,7.88,7.640000000000001,7.41,7.2,6.99,6.79,6.390000000000001,N/A,N/A +2012,12,11,16,30,102080,100840,99630,64.77,0,7.47,7.83,7.86,7.86,7.84,7.82,7.79,7.75,7.68,23.72,24.080000000000002,24.35,24.59,24.82,25.03,25.25,25.46,25.87,9.200000000000001,8.45,8.17,7.930000000000001,7.7,7.5,7.29,7.09,6.7,N/A,N/A +2012,12,11,17,30,102070,100820,99610,61.74,0,7.11,7.44,7.48,7.48,7.46,7.45,7.42,7.390000000000001,7.3100000000000005,15.06,15.46,15.69,15.91,16.12,16.32,16.53,16.73,17.13,9.58,8.85,8.58,8.34,8.120000000000001,7.92,7.71,7.5200000000000005,7.12,N/A,N/A +2012,12,11,18,30,102100,100860,99660,59.35,0,5.96,6.2,6.24,6.25,6.24,6.23,6.21,6.19,6.140000000000001,14.57,14.780000000000001,14.91,15.040000000000001,15.16,15.27,15.38,15.49,15.700000000000001,10.08,9.39,9.13,8.9,8.67,8.47,8.26,8.06,7.67,N/A,N/A +2012,12,11,19,30,102070,100830,99620,56.800000000000004,0,6.19,6.47,6.5200000000000005,6.53,6.53,6.5200000000000005,6.51,6.5,6.47,11.290000000000001,11.47,11.58,11.67,11.76,11.84,11.93,12,12.16,10.59,9.91,9.65,9.42,9.200000000000001,9,8.78,8.59,8.19,N/A,N/A +2012,12,11,20,30,102090,100850,99650,54.06,0,4.37,4.57,4.59,4.59,4.59,4.58,4.57,4.57,4.54,12.51,12.950000000000001,13.24,13.51,13.77,14,14.23,14.450000000000001,14.88,11.13,10.52,10.27,10.040000000000001,9.83,9.63,9.41,9.21,8.82,N/A,N/A +2012,12,11,21,30,102020,100790,99590,53.19,0,5.84,6.11,6.16,6.19,6.19,6.2,6.19,6.19,6.17,8.2,8.700000000000001,9,9.27,9.52,9.74,9.96,10.17,10.58,11.69,11.05,10.8,10.57,10.35,10.15,9.93,9.73,9.33,N/A,N/A +2012,12,11,22,30,102110,100880,99680,49.11,0,4.65,4.82,4.83,4.82,4.8,4.79,4.7700000000000005,4.75,4.71,2.7600000000000002,3.18,3.45,3.69,3.92,4.13,4.3500000000000005,4.5600000000000005,4.96,12.040000000000001,11.450000000000001,11.21,10.99,10.77,10.58,10.36,10.16,9.77,N/A,N/A +2012,12,11,23,30,102050,100820,99620,51.9,0,7.25,7.62,7.68,7.69,7.69,7.68,7.66,7.640000000000001,7.6000000000000005,12.88,13.120000000000001,13.25,13.370000000000001,13.49,13.59,13.71,13.8,14.01,12.290000000000001,11.63,11.38,11.15,10.92,10.72,10.51,10.31,9.91,N/A,N/A +2012,12,12,0,30,102100,100860,99670,54.57,0,8.14,8.58,8.64,8.65,8.64,8.620000000000001,8.6,8.57,8.51,15.41,15.66,15.73,15.81,15.89,15.96,16.05,16.12,16.28,12.13,11.43,11.18,10.950000000000001,10.72,10.52,10.31,10.11,9.71,N/A,N/A +2012,12,12,1,30,102210,100980,99780,54.49,0,6.76,7.09,7.140000000000001,7.15,7.140000000000001,7.13,7.1000000000000005,7.08,7.0200000000000005,16.68,16.96,17.06,17.16,17.240000000000002,17.32,17.400000000000002,17.46,17.61,11.91,11.25,11,10.77,10.540000000000001,10.34,10.13,9.93,9.53,N/A,N/A +2012,12,12,2,30,102210,100970,99770,55.660000000000004,0,7.97,8.4,8.46,8.47,8.47,8.46,8.43,8.4,8.33,21.62,21.76,21.85,21.92,22,22.06,22.13,22.19,22.31,11.73,11.03,10.77,10.540000000000001,10.32,10.120000000000001,9.9,9.700000000000001,9.3,N/A,N/A +2012,12,12,3,30,102250,101020,99810,55.56,0,7.67,8.07,8.13,8.14,8.13,8.11,8.08,8.06,7.99,22.53,22.91,23.16,23.37,23.59,23.78,23.990000000000002,24.18,24.57,11.65,10.96,10.700000000000001,10.47,10.24,10.040000000000001,9.83,9.63,9.23,N/A,N/A +2012,12,12,4,30,102280,101050,99840,57.15,0,7.33,7.7,7.75,7.76,7.75,7.74,7.72,7.69,7.63,27.02,27.35,27.59,27.810000000000002,28.01,28.2,28.39,28.57,28.93,11.71,11.02,10.77,10.540000000000001,10.31,10.120000000000001,9.9,9.700000000000001,9.3,N/A,N/A +2012,12,12,5,30,102310,101070,99870,58.19,0,8,8.41,8.47,8.48,8.47,8.45,8.41,8.38,8.3,22.41,22.830000000000002,23.1,23.34,23.57,23.78,24.01,24.21,24.64,11.53,10.82,10.56,10.33,10.1,9.9,9.69,9.49,9.09,N/A,N/A +2012,12,12,6,30,102340,101100,99900,57.4,0,6.86,7.2,7.25,7.26,7.25,7.25,7.22,7.2,7.140000000000001,31.54,31.84,32.05,32.230000000000004,32.410000000000004,32.57,32.730000000000004,32.88,33.2,11.75,11.11,10.86,10.63,10.41,10.22,10,9.81,9.41,N/A,N/A +2012,12,12,7,30,102380,101150,99950,56.34,0,6.7700000000000005,7.09,7.13,7.13,7.11,7.09,7.0600000000000005,7.03,6.96,26.62,27.02,27.26,27.48,27.7,27.88,28.09,28.28,28.67,11.82,11.17,10.93,10.700000000000001,10.48,10.290000000000001,10.07,9.88,9.49,N/A,N/A +2012,12,12,8,30,102410,101170,99970,56.870000000000005,0,7.5600000000000005,7.92,7.97,7.96,7.94,7.91,7.87,7.83,7.74,22.77,23.1,23.3,23.48,23.650000000000002,23.8,23.96,24.11,24.41,11.59,10.91,10.66,10.43,10.21,10.01,9.8,9.61,9.21,N/A,N/A +2012,12,12,9,30,102450,101210,100010,57.620000000000005,0,7.63,8,8.05,8.05,8.03,8.01,7.97,7.930000000000001,7.84,24.330000000000002,24.580000000000002,24.740000000000002,24.88,25.03,25.150000000000002,25.28,25.400000000000002,25.650000000000002,11.24,10.55,10.3,10.07,9.85,9.65,9.44,9.25,8.86,N/A,N/A +2012,12,12,10,30,102480,101240,100030,59.1,0,8.09,8.52,8.58,8.58,8.56,8.540000000000001,8.5,8.46,8.370000000000001,26.77,27.02,27.21,27.37,27.53,27.66,27.810000000000002,27.94,28.22,10.98,10.26,9.99,9.76,9.540000000000001,9.34,9.13,8.94,8.540000000000001,N/A,N/A +2012,12,12,11,30,102500,101260,100050,57.81,0,7.63,8.02,8.08,8.09,8.08,8.06,8.03,8,7.92,28.59,28.810000000000002,28.94,29.07,29.18,29.28,29.38,29.48,29.67,10.98,10.290000000000001,10.03,9.8,9.58,9.38,9.17,8.98,8.59,N/A,N/A +2012,12,12,12,30,102530,101290,100080,55.910000000000004,0,7.62,8,8.05,8.06,8.040000000000001,8.03,7.99,7.96,7.88,27.91,28.150000000000002,28.32,28.46,28.6,28.72,28.85,28.97,29.2,10.96,10.26,10,9.77,9.55,9.36,9.15,8.96,8.56,N/A,N/A +2012,12,12,13,30,102550,101310,100100,56.85,0,7.62,8.02,8.07,8.08,8.06,8.040000000000001,8.01,7.98,7.9,27.87,28.07,28.19,28.3,28.400000000000002,28.490000000000002,28.580000000000002,28.66,28.82,10.98,10.28,10.02,9.790000000000001,9.57,9.38,9.17,8.97,8.59,N/A,N/A +2012,12,12,14,30,102590,101350,100140,55.71,0,7.68,8.07,8.13,8.13,8.120000000000001,8.1,8.07,8.03,7.95,28.78,29.05,29.21,29.35,29.490000000000002,29.61,29.75,29.86,30.09,10.91,10.21,9.96,9.73,9.51,9.32,9.11,8.92,8.53,N/A,N/A +2012,12,12,15,30,102620,101380,100170,55.28,0,7.59,7.99,8.040000000000001,8.06,8.05,8.03,8,7.97,7.9,29.38,29.55,29.67,29.78,29.87,29.96,30.04,30.12,30.27,11.01,10.32,10.06,9.84,9.620000000000001,9.43,9.22,9.03,8.64,N/A,N/A +2012,12,12,16,30,102630,101390,100180,52.19,0,7.17,7.54,7.59,7.61,7.6000000000000005,7.59,7.57,7.54,7.49,28.310000000000002,28.47,28.55,28.64,28.7,28.76,28.830000000000002,28.88,28.98,11.200000000000001,10.52,10.27,10.05,9.83,9.64,9.43,9.24,8.85,N/A,N/A +2012,12,12,17,30,102620,101380,100170,48.54,0,6.94,7.29,7.34,7.36,7.3500000000000005,7.34,7.32,7.3,7.25,28.01,28.23,28.36,28.48,28.59,28.69,28.79,28.88,29.07,11.55,10.89,10.64,10.42,10.200000000000001,10.01,9.8,9.61,9.22,N/A,N/A +2012,12,12,18,30,102620,101380,100170,47.17,0,6.4,6.72,6.7700000000000005,6.78,6.78,6.78,6.7700000000000005,6.75,6.72,26.92,27.14,27.26,27.37,27.47,27.57,27.66,27.75,27.92,11.89,11.27,11.02,10.8,10.59,10.39,10.19,9.99,9.6,N/A,N/A +2012,12,12,19,30,102600,101360,100160,45.31,0,5.72,6,6.05,6.0600000000000005,6.07,6.07,6.0600000000000005,6.0600000000000005,6.04,27.830000000000002,27.900000000000002,27.94,27.97,28,28.03,28.05,28.07,28.1,12.33,11.74,11.5,11.28,11.07,10.88,10.66,10.47,10.08,N/A,N/A +2012,12,12,20,30,102570,101340,100140,43.5,0,5.39,5.65,5.7,5.72,5.73,5.73,5.73,5.73,5.72,29.79,29.69,29.63,29.55,29.490000000000002,29.43,29.36,29.29,29.14,12.790000000000001,12.22,11.99,11.77,11.56,11.36,11.15,10.96,10.56,N/A,N/A +2012,12,12,21,30,102560,101330,100130,40.43,0,4.86,5.1000000000000005,5.15,5.17,5.18,5.19,5.19,5.19,5.19,33.980000000000004,33.84,33.730000000000004,33.63,33.53,33.44,33.35,33.26,33.06,13.33,12.780000000000001,12.55,12.34,12.13,11.93,11.72,11.53,11.13,N/A,N/A +2012,12,12,22,30,102550,101320,100120,38.800000000000004,0,4.92,5.16,5.2,5.22,5.23,5.23,5.23,5.23,5.23,35.660000000000004,35.63,35.6,35.56,35.53,35.5,35.46,35.44,35.37,13.72,13.18,12.96,12.75,12.530000000000001,12.34,12.13,11.93,11.540000000000001,N/A,N/A +2012,12,12,23,30,102540,101310,100110,39.47,0,5.24,5.5,5.54,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.55,5.54,33.64,33.89,34.05,34.2,34.33,34.45,34.58,34.7,34.94,13.98,13.44,13.22,13.01,12.790000000000001,12.6,12.39,12.200000000000001,11.8,N/A,N/A +2012,12,13,0,30,102560,101330,100130,42.15,0,5.57,5.84,5.88,5.89,5.89,5.89,5.88,5.87,5.84,38.300000000000004,38.730000000000004,39,39.24,39.480000000000004,39.68,39.89,40.09,40.5,14.11,13.57,13.35,13.13,12.92,12.73,12.52,12.32,11.93,N/A,N/A +2012,12,13,1,30,102560,101330,100140,44.660000000000004,0,5.36,5.6000000000000005,5.63,5.64,5.63,5.62,5.6000000000000005,5.59,5.55,45.17,45.68,45.980000000000004,46.25,46.52,46.75,47,47.230000000000004,47.71,14.14,13.61,13.38,13.17,12.96,12.77,12.56,12.36,11.97,N/A,N/A +2012,12,13,2,30,102570,101340,100150,47.95,0,5.38,5.65,5.69,5.71,5.71,5.72,5.71,5.7,5.69,52.38,53.050000000000004,53.43,53.76,54.08,54.370000000000005,54.67,54.95,55.5,14.27,13.74,13.51,13.3,13.09,12.9,12.69,12.49,12.1,N/A,N/A +2012,12,13,3,30,102570,101350,100150,52.22,0,5.37,5.63,5.67,5.69,5.69,5.69,5.68,5.67,5.65,60.09,60.45,60.67,60.870000000000005,61.06,61.24,61.43,61.6,61.95,14.35,13.82,13.6,13.38,13.17,12.98,12.77,12.58,12.18,N/A,N/A +2012,12,13,4,30,102570,101340,100150,51.620000000000005,0,5.11,5.3500000000000005,5.38,5.39,5.39,5.39,5.37,5.37,5.34,68.06,68.3,68.45,68.58,68.71000000000001,68.82000000000001,68.94,69.06,69.28,14.56,14.040000000000001,13.82,13.61,13.4,13.21,13,12.8,12.41,N/A,N/A +2012,12,13,5,30,102560,101340,100150,54.44,0,4.98,5.22,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.26,5.25,5.22,67.89,68.27,68.52,68.75,68.97,69.17,69.38,69.57000000000001,69.97,14.63,14.11,13.89,13.68,13.47,13.280000000000001,13.07,12.88,12.48,N/A,N/A +2012,12,13,6,30,102580,101350,100160,56.49,0,4.79,5.01,5.04,5.04,5.04,5.04,5.0200000000000005,5.01,4.98,71.72,72.09,72.33,72.54,72.74,72.91,73.11,73.28,73.64,14.73,14.23,14.01,13.8,13.59,13.4,13.19,13,12.6,N/A,N/A +2012,12,13,7,30,102600,101370,100180,58.480000000000004,0,4.8100000000000005,5.01,5.04,5.04,5.04,5.03,5.01,5,4.97,74.62,74.93,75.10000000000001,75.25,75.4,75.52,75.65,75.78,76.03,14.71,14.21,14,13.790000000000001,13.58,13.39,13.18,12.98,12.59,N/A,N/A +2012,12,13,8,30,102590,101370,100180,57.6,0,4.8500000000000005,5.05,5.08,5.08,5.07,5.0600000000000005,5.04,5.03,4.99,70.08,70.36,70.55,70.72,70.89,71.03,71.18,71.32000000000001,71.61,14.790000000000001,14.290000000000001,14.07,13.870000000000001,13.66,13.47,13.26,13.06,12.67,N/A,N/A +2012,12,13,9,30,102590,101370,100180,59.1,0,5.21,5.45,5.48,5.48,5.48,5.47,5.46,5.44,5.4,66.56,66.86,67.05,67.23,67.39,67.54,67.71000000000001,67.85,68.15,14.790000000000001,14.280000000000001,14.06,13.85,13.64,13.450000000000001,13.24,13.05,12.65,N/A,N/A +2012,12,13,10,30,102590,101370,100180,57.910000000000004,0,5.32,5.57,5.6000000000000005,5.61,5.61,5.6000000000000005,5.59,5.57,5.54,65.04,65.25,65.38,65.5,65.62,65.72,65.83,65.93,66.13,14.83,14.33,14.11,13.9,13.69,13.5,13.290000000000001,13.1,12.700000000000001,N/A,N/A +2012,12,13,11,30,102610,101390,100200,59.9,0,6.09,6.4,6.44,6.45,6.45,6.44,6.42,6.4,6.3500000000000005,64.83,65.08,65.24,65.37,65.5,65.62,65.74,65.85,66.08,14.8,14.280000000000001,14.06,13.84,13.63,13.44,13.23,13.040000000000001,12.65,N/A,N/A +2012,12,13,12,30,102630,101400,100210,64.7,0,6.66,7.03,7.09,7.11,7.12,7.11,7.1000000000000005,7.09,7.05,65.02,65.31,65.49,65.66,65.82000000000001,65.96000000000001,66.12,66.27,66.57000000000001,14.57,14.02,13.8,13.59,13.370000000000001,13.18,12.97,12.780000000000001,12.39,N/A,N/A +2012,12,13,13,30,102630,101400,100210,65.72,0,6.65,7.0200000000000005,7.08,7.1000000000000005,7.1000000000000005,7.09,7.08,7.0600000000000005,7.0200000000000005,64.6,64.98,65.22,65.44,65.66,65.86,66.07000000000001,66.27,66.67,14.5,13.950000000000001,13.73,13.51,13.3,13.120000000000001,12.9,12.71,12.32,N/A,N/A +2012,12,13,14,30,102650,101430,100240,66.61,0,6.8100000000000005,7.2,7.26,7.29,7.3,7.3,7.29,7.28,7.25,66.06,66.5,66.77,67.02,67.27,67.49,67.73,67.95,68.4,14.48,13.92,13.700000000000001,13.48,13.27,13.08,12.870000000000001,12.68,12.290000000000001,N/A,N/A +2012,12,13,15,30,102670,101440,100250,65.01,0,6.68,7.0600000000000005,7.13,7.16,7.17,7.17,7.16,7.15,7.13,68.05,68.5,68.77,69.03,69.27,69.48,69.71000000000001,69.92,70.37,14.6,14.06,13.83,13.620000000000001,13.41,13.22,13.01,12.82,12.42,N/A,N/A +2012,12,13,16,30,102650,101420,100230,65.06,0,6.3100000000000005,6.66,6.72,6.75,6.75,6.76,6.75,6.74,6.71,72.17,72.47,72.65,72.82000000000001,72.97,73.12,73.28,73.42,73.71000000000001,14.77,14.24,14.02,13.8,13.59,13.4,13.19,13,12.6,N/A,N/A +2012,12,13,17,30,102630,101400,100220,66.89,0,6.21,6.5600000000000005,6.62,6.65,6.66,6.66,6.66,6.65,6.63,74.65,75.04,75.28,75.49,75.69,75.87,76.07000000000001,76.24,76.61,14.870000000000001,14.35,14.13,13.91,13.700000000000001,13.51,13.3,13.11,12.72,N/A,N/A +2012,12,13,18,30,102610,101380,100200,66.25,0,5.88,6.2,6.26,6.28,6.3,6.3,6.3,6.29,6.2700000000000005,76.12,76.47,76.69,76.88,77.07000000000001,77.24,77.43,77.59,77.93,15.030000000000001,14.52,14.3,14.09,13.88,13.69,13.48,13.280000000000001,12.89,N/A,N/A +2012,12,13,19,30,102590,101370,100180,67.54,0,5.8100000000000005,6.13,6.18,6.21,6.22,6.22,6.22,6.21,6.19,77.48,77.83,78.04,78.23,78.41,78.58,78.75,78.9,79.24,15.16,14.65,14.43,14.22,14.01,13.82,13.61,13.42,13.02,N/A,N/A +2012,12,13,20,30,102560,101330,100150,65.56,0,5.79,6.1000000000000005,6.16,6.18,6.19,6.2,6.19,6.18,6.16,79.55,79.9,80.11,80.3,80.48,80.65,80.83,80.99,81.33,15.3,14.790000000000001,14.58,14.370000000000001,14.16,13.97,13.76,13.57,13.17,N/A,N/A +2012,12,13,21,30,102520,101300,100110,63.88,0,5.44,5.73,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8100000000000005,5.8,5.78,80.81,81.22,81.47,81.71000000000001,81.93,82.14,82.35000000000001,82.55,82.97,15.44,14.950000000000001,14.74,14.530000000000001,14.32,14.13,13.93,13.73,13.34,N/A,N/A +2012,12,13,22,30,102490,101270,100090,63.35,0,5.36,5.64,5.7,5.72,5.73,5.73,5.73,5.73,5.72,83.8,84.16,84.39,84.60000000000001,84.81,84.99,85.19,85.38,85.77,15.610000000000001,15.13,14.92,14.71,14.51,14.31,14.11,13.92,13.52,N/A,N/A +2012,12,13,23,30,102480,101270,100080,64.29,0,5.39,5.68,5.74,5.7700000000000005,5.79,5.8,5.8,5.8,5.8,86.9,87.27,87.52,87.75,87.96000000000001,88.16,88.37,88.56,88.96000000000001,15.81,15.33,15.120000000000001,14.91,14.71,14.51,14.31,14.120000000000001,13.72,N/A,N/A +2012,12,14,0,30,102470,101250,100070,65.51,0,5.62,5.92,5.98,6.01,6.0200000000000005,6.0200000000000005,6.0200000000000005,6.01,6,86.71000000000001,87.03,87.25,87.45,87.65,87.83,88.04,88.22,88.62,15.92,15.44,15.23,15.02,14.82,14.63,14.42,14.23,13.84,N/A,N/A +2012,12,14,1,30,102450,101230,100050,65.55,0,5.94,6.29,6.36,6.4,6.42,6.44,6.45,6.45,6.44,93.11,93.22,93.33,93.47,93.62,93.77,93.93,94.08,94.41,16.17,15.700000000000001,15.49,15.280000000000001,15.07,14.88,14.67,14.48,14.09,N/A,N/A +2012,12,14,2,30,102440,101220,100040,63.58,0,5.83,6.17,6.25,6.29,6.32,6.34,6.3500000000000005,6.36,6.36,95.88,95.79,95.73,95.74000000000001,95.76,95.79,95.85000000000001,95.92,96.10000000000001,16.41,15.96,15.75,15.540000000000001,15.34,15.14,14.94,14.75,14.35,N/A,N/A +2012,12,14,3,30,102420,101210,100030,67.26,0,6.07,6.45,6.55,6.6000000000000005,6.63,6.66,6.67,6.69,6.71,95.8,96.29,96.67,97.03,97.39,97.71000000000001,98.06,98.37,99.02,16.56,16.1,15.9,15.69,15.49,15.3,15.09,14.9,14.51,N/A,N/A +2012,12,14,4,30,102390,101170,100000,66.65,0,6.22,6.61,6.69,6.73,6.75,6.76,6.7700000000000005,6.7700000000000005,6.76,101.41,101.44,101.51,101.58,101.68,101.76,101.88,101.99000000000001,102.27,16.87,16.42,16.22,16.01,15.81,15.620000000000001,15.41,15.22,14.83,N/A,N/A +2012,12,14,5,30,102370,101160,99980,67.85,0,6.3100000000000005,6.74,6.84,6.890000000000001,6.93,6.95,6.97,6.98,6.99,101.01,101.69,102.10000000000001,102.47,102.8,103.11,103.42,103.71000000000001,104.31,17.06,16.62,16.41,16.21,16,15.81,15.610000000000001,15.42,15.030000000000001,N/A,N/A +2012,12,14,6,30,102350,101140,99970,68.43,0,6.21,6.66,6.7700000000000005,6.84,6.88,6.91,6.94,6.96,6.99,105.01,105.5,105.77,106,106.22,106.42,106.61,106.78,107.14,17.23,16.81,16.62,16.41,16.21,16.02,15.81,15.620000000000001,15.23,N/A,N/A +2012,12,14,7,30,102350,101140,99970,70.09,0,6.6000000000000005,7.0600000000000005,7.17,7.22,7.26,7.28,7.29,7.3,7.3100000000000005,107.42,107.96000000000001,108.26,108.54,108.79,109.03,109.26,109.48,109.92,17.43,17.02,16.82,16.62,16.42,16.23,16.02,15.83,15.44,N/A,N/A +2012,12,14,8,30,102320,101110,99940,71.48,0,6.72,7.17,7.28,7.32,7.34,7.3500000000000005,7.36,7.36,7.34,110.21000000000001,110.41,110.54,110.67,110.8,110.92,111.05,111.18,111.47,17.56,17.16,16.96,16.76,16.56,16.37,16.17,15.98,15.59,N/A,N/A +2012,12,14,9,30,102300,101090,99920,72.88,0,6.93,7.45,7.58,7.65,7.69,7.72,7.74,7.76,7.78,111.83,112.28,112.55,112.8,113.03,113.24000000000001,113.46000000000001,113.66,114.09,17.82,17.43,17.240000000000002,17.03,16.830000000000002,16.64,16.44,16.25,15.860000000000001,N/A,N/A +2012,12,14,10,30,102280,101080,99910,72.31,0,7.3,7.87,8.01,8.08,8.120000000000001,8.15,8.17,8.19,8.2,114.76,114.99000000000001,115.18,115.38,115.57000000000001,115.76,115.95,116.14,116.56,18.06,17.67,17.48,17.28,17.080000000000002,16.9,16.69,16.51,16.12,N/A,N/A +2012,12,14,11,30,102280,101070,99910,73.81,0,7.29,7.87,8.01,8.08,8.13,8.16,8.18,8.19,8.2,115.76,116.04,116.24000000000001,116.45,116.64,116.82000000000001,117.01,117.19,117.58,18.28,17.91,17.72,17.52,17.32,17.13,16.93,16.740000000000002,16.35,N/A,N/A +2012,12,14,12,30,102270,101070,99910,76.78,0,7.75,8.4,8.57,8.66,8.73,8.77,8.8,8.82,8.85,117.32000000000001,117.66,117.91,118.16,118.4,118.62,118.86,119.08,119.55,18.45,18.080000000000002,17.89,17.69,17.490000000000002,17.31,17.1,16.92,16.53,N/A,N/A +2012,12,14,13,30,102250,101050,99890,79.61,0,7.94,8.66,8.85,8.96,9.040000000000001,9.1,9.14,9.18,9.23,121.52,121.89,122.12,122.35000000000001,122.56,122.75,122.96000000000001,123.14,123.53,18.6,18.240000000000002,18.06,17.86,17.66,17.47,17.27,17.09,16.69,N/A,N/A +2012,12,14,14,30,102240,101040,99880,80.4,0,8.120000000000001,8.86,9.05,9.15,9.22,9.27,9.3,9.32,9.35,127.2,127.26,127.36,127.47,127.58,127.69,127.81,127.93,128.19,18.86,18.51,18.330000000000002,18.13,17.94,17.75,17.55,17.36,16.97,N/A,N/A +2012,12,14,15,30,102190,100990,99830,81.64,0,7.930000000000001,8.620000000000001,8.790000000000001,8.870000000000001,8.93,8.97,8.99,9.01,9.040000000000001,125.94,126.41,126.79,127.18,127.59,127.98,128.42000000000002,128.82,129.77,19.02,18.69,18.51,18.32,18.13,17.94,17.75,17.56,17.19,N/A,N/A +2012,12,14,16,30,102140,100950,99790,83.97,0,8.02,8.8,9.01,9.14,9.23,9.28,9.33,9.36,9.41,127.31,127.60000000000001,127.82000000000001,128.06,128.29,128.51,128.75,128.97,129.45,19.21,18.89,18.71,18.52,18.32,18.14,17.94,17.75,17.37,N/A,N/A +2012,12,14,17,30,102100,100900,99740,84.22,0,8.44,9.3,9.53,9.67,9.75,9.81,9.84,9.86,9.870000000000001,128.3,128.26,128.36,128.48,128.62,128.76,128.93,129.1,129.48,19.47,19.17,19,18.8,18.61,18.42,18.22,18.04,17.650000000000002,N/A,N/A +2012,12,14,18,30,102040,100850,99690,84.09,0,8.25,9.03,9.24,9.36,9.450000000000001,9.51,9.57,9.63,9.790000000000001,129.07,129.57,129.92000000000002,130.3,130.69,131.09,131.58,132.05,133.34,19.68,19.400000000000002,19.240000000000002,19.05,18.87,18.69,18.5,18.330000000000002,17.96,N/A,N/A +2012,12,14,19,30,101970,100780,99630,86.59,0,7.71,8.45,8.67,8.85,9.02,9.200000000000001,9.38,9.55,9.9,121.64,122.08,122.46000000000001,122.99000000000001,123.64,124.37,125.23,126.04,127.96000000000001,19.79,19.53,19.37,19.19,19.02,18.86,18.68,18.51,18.16,N/A,N/A +2012,12,14,20,30,101880,100690,99540,88.64,0,8.38,9.61,10.05,10.18,10.41,10.72,10.99,11.22,11.61,125.24000000000001,126.58,127.46000000000001,128.17000000000002,129.1,130.24,131.5,132.72,134.64000000000001,19.88,19.66,19.51,19.32,19.17,19.04,18.88,18.73,18.43,N/A,N/A +2012,12,14,21,30,101800,100610,99460,86.32000000000001,0,8.76,9.86,10.25,10.55,10.790000000000001,11.01,11.200000000000001,11.370000000000001,11.69,133.71,134,134.22,134.5,134.8,135.11,135.47,135.82,136.68,20.2,20,19.86,19.69,19.53,19.37,19.19,19.03,18.68,N/A,N/A +2012,12,14,22,30,101730,100550,99400,87.17,0,9.16,10.39,10.82,11.17,11.47,11.73,11.96,12.17,12.56,137.28,137.72,138.04,138.42000000000002,138.83,139.24,139.73,140.19,141.29,20.36,20.19,20.06,19.91,19.75,19.59,19.43,19.27,18.94,N/A,N/A +2012,12,14,23,30,101700,100510,99370,87.33,0,9.77,11.09,11.61,12.040000000000001,12.39,12.69,12.96,13.200000000000001,13.6,142.45000000000002,142.77,143,143.24,143.47,143.69,143.95000000000002,144.19,144.83,20.54,20.42,20.31,20.16,20.01,19.86,19.7,19.55,19.22,N/A,N/A +2012,12,15,0,30,101640,100460,99320,88.63,0,8.94,10.3,10.82,11.290000000000001,11.68,12.040000000000001,12.370000000000001,12.68,13.25,147.39000000000001,147.8,148.13,148.53,148.91,149.27,149.64000000000001,149.99,150.65,20.66,20.54,20.44,20.31,20.16,20.02,19.87,19.73,19.41,N/A,N/A +2012,12,15,1,30,101610,100430,99290,88.23,0,8.94,10.33,10.84,11.28,11.66,11.99,12.290000000000001,12.55,13.02,151.73,152.08,152.34,152.68,153.05,153.45000000000002,153.91,154.35,155.45000000000002,20.77,20.68,20.59,20.46,20.34,20.21,20.06,19.92,19.62,N/A,N/A +2012,12,15,2,30,101570,100400,99250,88.63,0,8.85,10.33,10.91,11.4,11.81,12.18,12.51,12.81,13.36,155.21,155.71,156.08,156.35,156.53,156.64000000000001,156.66,156.65,156.45000000000002,20.91,20.85,20.76,20.63,20.5,20.37,20.21,20.06,19.73,N/A,N/A +2012,12,15,3,30,101610,100430,99290,88.2,0,7.18,8.63,9.290000000000001,9.94,10.5,11.01,11.47,11.89,12.66,155.73,156.48,157.09,157.95000000000002,158.82,159.76,160.74,161.69,163.52,20.96,20.95,20.89,20.8,20.7,20.6,20.47,20.36,20.09,N/A,N/A +2012,12,15,4,30,101580,100400,99260,89.97,0,6.63,7.92,8.45,8.950000000000001,9.41,9.85,10.31,10.75,11.66,154.94,156.37,157.5,158.97,160.42000000000002,161.91,163.27,164.53,166.26,20.95,20.95,20.900000000000002,20.830000000000002,20.740000000000002,20.66,20.56,20.46,20.25,N/A,N/A +2012,12,15,5,30,101540,100360,99220,90.74,0,7.55,9.040000000000001,9.64,10.17,10.620000000000001,11.040000000000001,11.43,11.8,12.620000000000001,161.43,162.51,163.29,164.21,165.14000000000001,166.09,167.09,168.02,169.9,20.97,20.990000000000002,20.96,20.89,20.82,20.740000000000002,20.63,20.53,20.29,N/A,N/A +2012,12,15,6,30,101530,100360,99220,90.4,0,7.19,8.68,9.25,9.81,10.27,10.68,11.05,11.39,11.96,164.68,165.62,166.38,167.33,168.27,169.17000000000002,170.07,170.91,172.41,21.03,21.07,21.04,20.990000000000002,20.92,20.830000000000002,20.73,20.63,20.37,N/A,N/A +2012,12,15,7,30,101540,100370,99230,90.27,0,6.37,7.82,8.46,9.09,9.67,10.24,10.81,11.34,12.32,168.73,169.17000000000002,169.53,170.04,170.55,171.1,171.61,172.08,172.78,21,21.07,21.05,21,20.95,20.88,20.8,20.73,20.53,N/A,N/A +2012,12,15,8,30,101520,100350,99210,91.15,0,6.93,8.44,9.08,9.67,10.17,10.61,11,11.34,11.870000000000001,170.85,171.47,172.01,172.67000000000002,173.28,173.86,174.4,174.91,175.83,21.07,21.16,21.16,21.13,21.080000000000002,21.01,20.92,20.82,20.56,N/A,N/A +2012,12,15,9,30,101500,100330,99190,90.89,0,7.1000000000000005,8.66,9.34,10.01,10.59,11.120000000000001,11.64,12.13,13.02,170.22,171.06,171.77,172.84,173.97,175.20000000000002,176.43,177.6,179.51,21.09,21.19,21.2,21.18,21.16,21.12,21.07,21.02,20.87,N/A,N/A +2012,12,15,10,30,101500,100320,99190,92.92,0,5.91,7.55,8.31,9.05,9.700000000000001,10.28,10.790000000000001,11.26,12.18,167.1,169.32,170.96,172.84,174.44,175.87,177.02,178.01,179.8,20.94,21.1,21.150000000000002,21.17,21.16,21.13,21.07,21,20.830000000000002,N/A,N/A +2012,12,15,11,30,101500,100320,99190,92.44,0,6.58,8.22,8.97,9.75,10.450000000000001,11.120000000000001,11.73,12.3,13.200000000000001,173.18,174.31,175.24,176.51,177.73,178.98,180.01,180.9,181.85,21.06,21.2,21.240000000000002,21.25,21.25,21.23,21.18,21.13,20.92,N/A,N/A +2012,12,15,12,30,101500,100320,99190,93,0,5.83,7.51,8.35,9.22,10.01,10.77,11.370000000000001,11.88,12.72,171.48,173.42000000000002,174.89000000000001,176.74,178.42000000000002,180.01,181.39000000000001,182.62,185.24,20.96,21.16,21.240000000000002,21.29,21.32,21.35,21.32,21.29,21.11,N/A,N/A +2012,12,15,13,30,101480,100310,99170,92.99,0,6.0200000000000005,7.72,8.55,9.43,10.24,11.02,11.71,12.34,13.25,170.98,172.86,174.28,176.01,177.56,179.03,180.25,181.32,182.76,20.96,21.16,21.23,21.31,21.36,21.39,21.36,21.32,21.09,N/A,N/A +2012,12,15,14,30,101490,100320,99180,93.11,0,5.67,7.32,8.11,8.9,9.6,10.23,10.77,11.25,11.81,173.18,174.99,176.34,177.82,179.1,180.24,181.16,181.94,183,20.96,21.150000000000002,21.21,21.26,21.28,21.29,21.26,21.23,21.02,N/A,N/A +2012,12,15,15,30,101500,100330,99190,93.45,0,5.1000000000000005,6.74,7.5600000000000005,8.4,9.15,9.82,10.38,10.88,11.56,171.19,173.08,174.5,176.11,177.57,178.96,180.14000000000001,181.21,183.19,20.96,21.14,21.21,21.26,21.28,21.29,21.25,21.21,21.03,N/A,N/A +2012,12,15,16,30,101490,100320,99180,93.48,0,4.96,6.5,7.28,8.13,8.870000000000001,9.55,10.1,10.58,11.28,177.67000000000002,178.85,179.88,181.32,182.75,184.21,185.52,186.71,188.19,21.02,21.17,21.23,21.27,21.3,21.3,21.27,21.240000000000002,21.07,N/A,N/A +2012,12,15,17,30,101480,100300,99170,95.54,0,3.46,4.84,5.55,6.33,7.13,8.02,8.61,9.03,9.88,170.53,173.46,175.72,178.15,180.76,183.72,185.5,186.67000000000002,188.42000000000002,20.96,21.080000000000002,21.13,21.18,21.22,21.26,21.23,21.18,21.04,N/A,N/A +2012,12,15,18,30,101470,100290,99160,96.26,0,3.25,4.43,5.09,5.86,6.73,7.7700000000000005,8.35,8.700000000000001,9.39,162.33,167.09,170.68,174.51,177.71,180.54,181.98,182.76,184.06,20.990000000000002,21.06,21.11,21.17,21.21,21.23,21.2,21.150000000000002,21.01,N/A,N/A +2012,12,15,19,30,101440,100260,99130,95.03,0,3.7600000000000002,4.9,5.51,6.3100000000000005,7.04,7.75,8.370000000000001,8.94,9.38,163.61,167,169.63,172.96,176.01,178.92000000000002,180.78,182.17000000000002,183.38,21.19,21.2,21.22,21.26,21.28,21.3,21.29,21.28,21.1,N/A,N/A +2012,12,15,20,30,101400,100230,99090,94.95,0,4.32,5.53,6.07,6.67,7.28,7.94,8.63,9.32,9.8,159.17000000000002,162.33,164.96,168.71,171.86,174.69,177.78,180.88,182.85,21.17,21.240000000000002,21.25,21.27,21.29,21.3,21.32,21.34,21.17,N/A,N/A +2012,12,15,21,30,101360,100190,99060,94.01,0,4.46,5.98,6.71,7.46,8.18,8.93,9.63,10.290000000000001,10.72,164.44,166.81,168.83,171.59,174.25,176.98,179.62,182.13,183.65,21.01,21.22,21.32,21.39,21.44,21.47,21.490000000000002,21.5,21.38,N/A,N/A +2012,12,15,22,30,101320,100150,99020,92.56,0,5.95,7.62,8.42,9.3,10.06,10.72,11.19,11.56,11.93,163.69,166.01,167.88,170.39000000000001,172.68,174.86,176.85,178.65,180.46,21.14,21.39,21.490000000000002,21.57,21.650000000000002,21.71,21.72,21.71,21.57,N/A,N/A +2012,12,15,23,30,101280,100110,98980,92.02,0,7.51,9.43,10.34,11.22,11.86,12.3,12.540000000000001,12.69,12.870000000000001,166.65,168.39000000000001,169.73,171.39000000000001,173,174.61,176.06,177.36,178.74,21.19,21.5,21.650000000000002,21.82,21.92,21.97,21.94,21.900000000000002,21.69,N/A,N/A +2012,12,16,0,30,101290,100120,98990,91.91,0,7.640000000000001,9.450000000000001,10.290000000000001,11.15,11.9,12.58,13.1,13.530000000000001,13.68,166.12,167.8,169.11,170.78,172.32,173.83,175.16,176.35,178.19,21.21,21.45,21.56,21.68,21.77,21.84,21.85,21.830000000000002,21.64,N/A,N/A +2012,12,16,1,30,101290,100120,98990,92.17,0,6.97,8.73,9.57,10.47,11.25,11.96,12.51,12.96,13.43,171.18,172.23,173.12,174.45000000000002,175.72,177,178.07,179.01,180.55,21.18,21.400000000000002,21.5,21.63,21.740000000000002,21.84,21.86,21.84,21.61,N/A,N/A +2012,12,16,2,30,101290,100120,98990,91.73,0,6.68,8.44,9.27,10.11,10.83,11.49,12.01,12.450000000000001,12.71,168.78,169.71,170.47,171.54,172.57,173.61,174.71,175.78,177.79,21.28,21.54,21.650000000000002,21.75,21.82,21.85,21.830000000000002,21.8,21.64,N/A,N/A +2012,12,16,3,30,101260,100090,98960,92.08,0,6.91,8.64,9.450000000000001,10.26,10.97,11.61,12.08,12.450000000000001,12.88,169.36,170.48,171.5,173.08,174.63,176.25,177.63,178.84,181.11,21.19,21.42,21.52,21.63,21.71,21.77,21.8,21.81,21.78,N/A,N/A +2012,12,16,4,30,101220,100050,98920,92.75,0,6.5600000000000005,8.25,9.08,10.02,10.86,11.67,12.41,13.09,14.16,169.25,171.89000000000001,173.73,175.64000000000001,177.14000000000001,178.34,179.42000000000002,180.41,181.94,21.03,21.28,21.38,21.46,21.5,21.5,21.48,21.46,21.36,N/A,N/A +2012,12,16,5,30,101180,100010,98880,90.84,0,8.78,10.63,11.43,12.19,12.83,13.41,13.9,14.33,14.93,175.78,176.35,176.84,177.54,178.31,179.19,180.14000000000001,181.08,182.69,21.44,21.62,21.66,21.68,21.68,21.68,21.650000000000002,21.61,21.44,N/A,N/A +2012,12,16,6,30,101190,100020,98890,91.35000000000001,0,8.34,10.14,10.950000000000001,11.76,12.46,13.1,13.69,14.22,15.05,180.72,181.47,182.09,182.94,183.78,184.69,185.6,186.48,187.88,21.57,21.73,21.77,21.79,21.8,21.81,21.79,21.77,21.650000000000002,N/A,N/A +2012,12,16,7,30,101180,100010,98880,91.77,0,7.97,9.69,10.44,11.16,11.790000000000001,12.38,12.86,13.280000000000001,13.75,180.79,181.83,182.71,183.86,184.96,186.07,187.12,188.09,189.92000000000002,21.48,21.63,21.67,21.69,21.71,21.72,21.72,21.71,21.6,N/A,N/A +2012,12,16,8,30,101150,99980,98850,92.38,0,7.38,9.06,9.85,10.66,11.38,12.07,12.63,13.11,13.620000000000001,183.25,184.61,185.69,187.1,188.31,189.38,190.14000000000001,190.72,191.26,21.34,21.490000000000002,21.54,21.57,21.6,21.62,21.61,21.6,21.41,N/A,N/A +2012,12,16,9,30,101110,99950,98810,92.49,0,7.21,8.84,9.56,10.23,10.8,11.3,11.72,12.08,12.76,182.48,183.55,184.39000000000001,185.48,186.46,187.39000000000001,188.21,188.92000000000002,190.14000000000001,21.32,21.48,21.53,21.56,21.57,21.56,21.52,21.47,21.3,N/A,N/A +2012,12,16,10,30,101100,99930,98800,92.28,0,7.15,8.790000000000001,9.56,10.27,10.89,11.450000000000001,11.97,12.450000000000001,13.31,189.29,189.49,189.67000000000002,189.98,190.32,190.70000000000002,191.07,191.41,192.1,21.36,21.48,21.51,21.5,21.490000000000002,21.46,21.41,21.36,21.19,N/A,N/A +2012,12,16,11,30,101100,99930,98800,92.55,0,6.11,7.75,8.540000000000001,9.31,9.97,10.57,11.1,11.58,12.35,197.4,197.26,197.12,197,196.94,196.94,197.01,197.11,197.36,21.31,21.45,21.48,21.46,21.43,21.38,21.31,21.240000000000002,21.05,N/A,N/A +2012,12,16,12,30,101080,99920,98780,92.66,0,6.74,8.33,9.05,9.77,10.39,10.94,11.44,11.88,12.56,197.8,198.03,198.19,198.38,198.56,198.75,199.01,199.28,200.17000000000002,21.27,21.37,21.39,21.37,21.34,21.29,21.240000000000002,21.17,21.01,N/A,N/A +2012,12,16,13,30,101090,99920,98790,92.81,0,6.5200000000000005,8.05,8.78,9.5,10.16,10.83,11.47,12.08,13.16,195.83,196.84,197.66,198.65,199.52,200.35,201.01,201.58,202.28,21.25,21.36,21.39,21.37,21.35,21.32,21.28,21.25,21.12,N/A,N/A +2012,12,16,14,30,101050,99880,98750,91.17,0,9.16,11.1,11.94,12.75,13.450000000000001,14.06,14.57,15.01,15.69,187.20000000000002,188.53,189.52,190.71,191.77,192.78,193.69,194.52,196.11,21.61,21.77,21.8,21.82,21.81,21.79,21.740000000000002,21.68,21.490000000000002,N/A,N/A +2012,12,16,15,30,101040,99880,98750,91.15,0,9.18,11,11.81,12.63,13.34,14.01,14.61,15.15,16.03,191.15,191.86,192.43,193.21,193.98000000000002,194.82,195.70000000000002,196.57,198.45000000000002,21.57,21.68,21.68,21.67,21.64,21.61,21.57,21.53,21.42,N/A,N/A +2012,12,16,16,30,101010,99840,98710,90.22,0,10.36,12.19,13,13.76,14.4,14.99,15.540000000000001,16.05,16.96,190.18,190.68,191.08,191.62,192.16,192.74,193.39000000000001,194.07,195.64000000000001,21.68,21.8,21.81,21.77,21.73,21.66,21.59,21.52,21.34,N/A,N/A +2012,12,16,17,30,101120,99930,98790,94.93,96.30000000000001,9.89,10.92,11.370000000000001,11.82,12.38,12.98,13.64,14.23,14.98,289.16,289.57,290.28000000000003,291.23,292.59000000000003,294.14,295.68,297.04,298.6,18.96,18.650000000000002,18.51,18.37,18.26,18.16,18.07,17.98,17.830000000000002,N/A,N/A +2012,12,16,18,30,101140,99960,98810,94.76,115.4,5.87,6.3100000000000005,6.51,6.71,7.05,7.53,8.45,9.56,10.77,290.88,291.74,292.12,292.79,293.68,294.84000000000003,296.06,297.33,299.27,18.66,18.330000000000002,18.17,17.990000000000002,17.84,17.71,17.64,17.61,17.66,N/A,N/A +2012,12,16,19,30,101170,99980,98840,95.51,33.300000000000004,4.37,4.76,4.98,5.45,6.05,6.78,7.23,7.58,8.27,282.44,281.94,283.87,287.77,291.44,295.11,297.29,299.01,301.57,18.59,18.29,18.16,18.05,18.02,18.05,18.03,18.02,17.88,N/A,N/A +2012,12,16,20,30,101040,99850,98710,94.57000000000001,9.9,0.5700000000000001,0.58,0.71,1.32,1.9000000000000001,2.27,2.56,2.81,3.3200000000000003,64.23,55.910000000000004,41.61,0.55,332.3,326.57,321.67,317.18,309.12,18.72,18.43,18.3,18.22,18.14,18.05,17.92,17.81,17.54,N/A,N/A +2012,12,16,21,30,101020,99840,98700,93.05,0,1.11,1.04,0.75,0.29,0.39,1.28,1.9100000000000001,2.19,2.66,110.99000000000001,109.33,79.33,21.63,1.02,319.76,298.71,297.32,294.72,18.92,18.64,18.5,18.38,18.35,18.39,18.28,18.14,17.81,N/A,N/A +2012,12,16,22,30,101000,99820,98670,90.36,0,2.22,2.2,2.0100000000000002,1.6300000000000001,1.56,1.69,1.9000000000000001,2.13,2.73,155.77,157.79,168.58,197.12,213.73000000000002,225.87,233.83,240.63,248.68,19.25,18.96,18.84,18.8,18.72,18.59,18.45,18.31,18.05,N/A,N/A +2012,12,16,23,30,100950,99770,98630,92.84,0,4.17,4.18,4.04,3.79,3.73,3.81,3.95,4.1,4.55,149.92000000000002,152.25,157.43,172.34,183.1,191.71,198.98000000000002,205.47,216.43,19.22,18.95,18.84,18.82,18.76,18.67,18.61,18.55,18.44,N/A,N/A +2012,12,17,0,30,100980,99810,98660,93.03,0,5.41,5.6000000000000005,5.57,5.46,5.38,5.3100000000000005,5.26,5.21,5.19,159.93,161.02,163.09,169.54,174.72,179.18,183.57,187.64000000000001,196.02,19.48,19.22,19.080000000000002,18.98,18.91,18.86,18.8,18.75,18.64,N/A,N/A +2012,12,17,1,30,100960,99790,98650,93.48,0,5.04,5.2,5.12,4.93,4.8,4.71,4.67,4.65,4.76,160.59,162.49,165.77,174.41,180.86,186,191.6,196.94,207.15,19.52,19.27,19.18,19.19,19.22,19.27,19.330000000000002,19.39,19.46,N/A,N/A +2012,12,17,2,30,101000,99820,98680,93.47,0,4.83,5.1000000000000005,5.13,5.16,5.0600000000000005,4.86,4.7700000000000005,4.73,4.75,164.14000000000001,164.76,165.96,169.53,174.3,180.18,185.67000000000002,190.64000000000001,201.17000000000002,19.67,19.400000000000002,19.26,19.11,19.09,19.17,19.2,19.21,19.23,N/A,N/A +2012,12,17,3,30,101020,99840,98700,94.16,0,4.51,4.76,4.79,4.8100000000000005,4.74,4.57,4.47,4.4,4.3500000000000005,168.8,169.39000000000001,170.5,173.93,179.14000000000001,186.23,192.42000000000002,197.85,208.72,19.69,19.43,19.28,19.13,19.080000000000002,19.13,19.19,19.25,19.400000000000002,N/A,N/A +2012,12,17,4,30,101010,99830,98690,95.27,0,3.5100000000000002,3.85,3.98,4.08,4.16,4.21,4.2700000000000005,4.32,4.42,179.97,182.66,185.20000000000002,189.79,194.3,198.93,204,208.88,218.38,19.830000000000002,19.61,19.490000000000002,19.38,19.32,19.29,19.32,19.37,19.42,N/A,N/A +2012,12,17,5,30,101020,99850,98710,96.08,0,2.75,3.16,3.34,3.58,3.8000000000000003,4.0200000000000005,4.17,4.2700000000000005,4.45,192.06,194.76,197.89000000000001,204.5,211.72,219.97,225.17000000000002,228.92000000000002,235.94,19.95,19.740000000000002,19.650000000000002,19.6,19.6,19.64,19.67,19.7,19.650000000000002,N/A,N/A +2012,12,17,6,30,101040,99870,98730,96.69,0,2.35,2.81,3.0700000000000003,3.52,3.84,4,4.17,4.32,4.6000000000000005,206.5,210.13,214.94,227.28,235.31,239.09,242.62,245.9,251.59,20.02,19.84,19.77,19.8,19.8,19.77,19.76,19.76,19.69,N/A,N/A +2012,12,17,7,30,101080,99900,98760,96.18,0,2.82,3.5,3.8200000000000003,4.17,4.48,4.7700000000000005,4.91,4.99,5.14,235.92000000000002,238.42000000000002,241.26,247.54,253.24,258.79,261.35,262.47,264.47,20.22,20.11,20.06,20.03,20,19.95,19.86,19.76,19.47,N/A,N/A +2012,12,17,8,30,101070,99900,98760,95.95,0,3.63,4.42,4.7700000000000005,5.09,5.36,5.61,5.8,5.96,6.16,256.65,257.38,258.07,259.13,260.2,261.37,262.54,263.65,267.35,20.3,20.150000000000002,20.05,19.900000000000002,19.76,19.6,19.45,19.3,19.150000000000002,N/A,N/A +2012,12,17,9,30,101080,99910,98770,92.77,0,5.73,6.44,6.72,6.95,7.13,7.26,7.3100000000000005,7.3100000000000005,7.44,266.27,266.29,266.33,266.43,266.93,267.95,270.27,273.09000000000003,277.57,20.28,20.1,20,19.91,19.91,20.02,20.21,20.44,20.67,N/A,N/A +2012,12,17,10,30,101100,99930,98790,92.18,0,7.17,8.05,8.38,8.56,8.84,9.21,9.51,9.76,9.950000000000001,277.57,277.64,277.65000000000003,277.81,278.14,278.65000000000003,280.02,281.65000000000003,284.31,20.06,19.84,19.71,19.59,19.6,19.73,20.07,20.45,20.82,N/A,N/A +2012,12,17,11,30,101160,99970,98830,95.01,0,7.79,8.4,8.58,8.76,9.09,9.59,10.46,11.450000000000001,12.280000000000001,296.17,296.16,296.13,296.09000000000003,296.05,295.99,296.04,296.12,296.58,18.66,18.31,18.150000000000002,17.97,17.82,17.67,17.68,17.73,18.580000000000002,N/A,N/A +2012,12,17,12,30,101190,100000,98860,76.64,0,8.16,8.76,8.950000000000001,9.21,10.02,11.5,12.3,12.780000000000001,13.6,293.95,294.26,294.54,295.11,296.57,299.16,300.66,301.59000000000003,303.11,19.34,19.080000000000002,18.95,18.84,18.900000000000002,19.13,19.32,19.490000000000002,19.84,N/A,N/A +2012,12,17,13,30,101200,100010,98860,63.980000000000004,0,9.78,10.67,10.950000000000001,11.25,11.8,12.6,13.36,14.07,14.26,296.73,296.58,296.5,296.37,296.26,296.15000000000003,295.95,295.73,294.74,19.36,19.09,18.97,18.84,18.79,18.8,18.92,19.07,19.3,N/A,N/A +2012,12,17,14,30,101240,100050,98890,63.24,0,10.14,10.96,11.16,11.25,11.31,11.35,11.39,11.44,11.69,295.32,295.53000000000003,295.63,295.77,295.93,296.1,296.37,296.65000000000003,297.86,18,17.6,17.41,17.21,17.03,16.85,16.67,16.51,16.2,N/A,N/A +2012,12,17,15,30,101260,100060,98900,65.38,0,8.78,9.41,9.57,9.64,9.700000000000001,9.74,9.81,9.88,10.49,306.85,307.09000000000003,307.24,307.42,307.63,307.85,308.17,308.51,310.19,17.2,16.77,16.580000000000002,16.38,16.2,16.02,15.85,15.69,15.48,N/A,N/A +2012,12,17,16,30,101270,100070,98910,63.65,0,7.890000000000001,8.49,8.65,8.73,8.790000000000001,8.84,8.89,8.94,9.08,313.29,313.34000000000003,313.33,313.31,313.31,313.31,313.31,313.32,313.45,17.59,17.17,16.98,16.78,16.59,16.4,16.21,16.03,15.66,N/A,N/A +2012,12,17,17,30,101280,100090,98930,56.27,0,7.01,7.49,7.61,7.67,7.72,7.76,7.8100000000000005,7.87,8.24,309.40000000000003,309.08,308.90000000000003,308.7,308.51,308.32,308.09000000000003,307.87,307.48,18.06,17.7,17.52,17.330000000000002,17.150000000000002,16.97,16.8,16.64,16.38,N/A,N/A +2012,12,17,18,30,101300,100110,98950,52.33,0,6.9,7.4,7.5200000000000005,7.57,7.6000000000000005,7.62,7.62,7.62,7.61,313.82,312.91,312.27,311.63,311.02,310.43,309.83,309.26,308.01,18.78,18.45,18.28,18.080000000000002,17.89,17.71,17.52,17.34,16.96,N/A,N/A +2012,12,17,19,30,101280,100090,98940,49.07,0,6.88,7.44,7.58,7.67,7.73,7.7700000000000005,7.8,7.82,7.86,303.85,303.57,303.36,303.15000000000003,302.96,302.8,302.63,302.48,302.18,19.11,18.81,18.64,18.44,18.25,18.06,17.87,17.68,17.3,N/A,N/A +2012,12,17,20,30,101270,100090,98930,46.93,0,6.72,7.32,7.49,7.59,7.66,7.71,7.75,7.79,7.84,302.06,301.8,301.65000000000003,301.5,301.37,301.25,301.13,301.02,300.83,19.48,19.2,19.03,18.84,18.650000000000002,18.47,18.27,18.080000000000002,17.7,N/A,N/A +2012,12,17,21,30,101290,100110,98950,45.28,0,6.55,7.11,7.25,7.33,7.38,7.42,7.45,7.47,7.5,306.43,306.15000000000003,305.96,305.76,305.58,305.41,305.24,305.09000000000003,304.78000000000003,19.62,19.35,19.18,18.990000000000002,18.8,18.62,18.42,18.240000000000002,17.85,N/A,N/A +2012,12,17,22,30,101300,100110,98950,43.230000000000004,0,6.65,7.23,7.37,7.45,7.5,7.54,7.57,7.59,7.62,302.75,302.75,302.73,302.7,302.67,302.64,302.6,302.57,302.49,19.59,19.32,19.150000000000002,18.96,18.77,18.580000000000002,18.39,18.2,17.81,N/A,N/A +2012,12,17,23,30,101330,100140,98980,47.71,0,6.61,7.12,7.24,7.29,7.32,7.34,7.3500000000000005,7.36,7.3500000000000005,301.52,301.14,300.93,300.73,300.56,300.39,300.23,300.08,299.78000000000003,19.27,18.97,18.79,18.6,18.400000000000002,18.22,18.02,17.830000000000002,17.44,N/A,N/A +2012,12,18,0,30,101360,100170,99010,47.28,0,6.8100000000000005,7.3,7.4,7.45,7.47,7.47,7.47,7.46,7.43,295.82,295.83,295.84000000000003,295.84000000000003,295.84000000000003,295.84000000000003,295.85,295.85,295.88,18.88,18.55,18.37,18.17,17.98,17.79,17.59,17.41,17.02,N/A,N/A +2012,12,18,1,30,101380,100190,99030,46.67,0,5.9,6.32,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,6.62,299.07,298.73,298.49,298.25,298.02,297.8,297.57,297.35,296.88,18.84,18.52,18.34,18.150000000000002,17.96,17.78,17.59,17.41,17.03,N/A,N/A +2012,12,18,2,30,101400,100210,99050,50.13,0,4.54,4.79,4.84,4.87,4.88,4.9,4.92,4.94,5.11,292.1,291.87,291.71,291.55,291.40000000000003,291.25,291.1,290.97,290.93,18.63,18.3,18.13,17.94,17.75,17.57,17.39,17.22,16.89,N/A,N/A +2012,12,18,3,30,101420,100230,99070,51.78,0,3.65,3.8000000000000003,3.8200000000000003,3.83,3.89,3.96,4.37,4.78,4.83,297.43,296.96,296.6,296.13,295.36,294.42,292.11,289.75,288.31,18.650000000000002,18.35,18.19,18.02,17.88,17.77,17.91,18.05,17.76,N/A,N/A +2012,12,18,4,30,101430,100230,99080,52.83,0,2.71,2.83,2.84,2.86,2.9,2.95,3.5100000000000002,4.16,4.67,282.27,281.72,281.34000000000003,280.86,280.18,279.40000000000003,277.06,274.56,273.63,18.68,18.37,18.2,18.02,17.86,17.71,17.84,17.990000000000002,18.05,N/A,N/A +2012,12,18,5,30,101440,100240,99090,54.64,0,1.92,2.02,2.05,2.07,2.1,2.14,2.22,2.34,3.63,257.35,256.82,256.51,256.19,255.87,255.58,255.49,255.74,262.44,18.86,18.55,18.38,18.19,18.01,17.830000000000002,17.66,17.52,17.64,N/A,N/A +2012,12,18,6,30,101450,100260,99110,55.61,0,1.94,2.08,2.12,2.15,2.19,2.23,2.31,2.43,3.38,230.97,230.9,230.95000000000002,231.06,231.27,231.53,232.59,234.21,248.11,19.16,18.87,18.71,18.52,18.330000000000002,18.150000000000002,17.98,17.84,17.89,N/A,N/A +2012,12,18,7,30,101460,100270,99120,55.17,0,2.5,2.69,2.73,2.77,2.8000000000000003,2.84,2.91,3.0100000000000002,3.8200000000000003,215.28,215.74,216.1,216.51,217.01,217.54,218.68,220.4,236.16,19.51,19.25,19.080000000000002,18.900000000000002,18.71,18.54,18.36,18.21,18.21,N/A,N/A +2012,12,18,8,30,101450,100260,99110,56.09,0,3.52,3.77,3.8200000000000003,3.84,3.85,3.87,3.89,3.91,4.1,214.58,214.82,215,215.18,215.39000000000001,215.6,215.94,216.34,220.97,19.76,19.51,19.35,19.17,18.98,18.8,18.61,18.44,18.2,N/A,N/A +2012,12,18,9,30,101450,100260,99110,61.6,0,4.13,4.39,4.42,4.42,4.41,4.39,4.36,4.34,4.46,199.27,199.45000000000002,199.64000000000001,199.84,200.08,200.34,200.51,201.20000000000002,215.04,19.69,19.44,19.27,19.080000000000002,18.900000000000002,18.72,18.52,18.35,18.44,N/A,N/A +2012,12,18,10,30,101460,100270,99120,63.81,0,5.33,5.74,5.82,5.8500000000000005,5.86,5.87,5.87,5.87,5.89,191.8,192.01,192.15,192.29,192.42000000000002,192.55,192.70000000000002,192.83,193.11,19.71,19.45,19.29,19.1,18.91,18.73,18.54,18.36,17.97,N/A,N/A +2012,12,18,11,30,101460,100270,99120,65.56,0,6.3,6.82,6.93,6.98,7,7.01,7,6.99,6.96,193.89000000000001,194.12,194.26,194.4,194.54,194.67000000000002,194.83,194.98000000000002,195.4,19.830000000000002,19.59,19.43,19.25,19.06,18.88,18.69,18.51,18.14,N/A,N/A +2012,12,18,12,30,101460,100270,99120,67.47,0,6.7,7.3,7.43,7.49,7.53,7.55,7.55,7.5600000000000005,7.55,191.38,191.61,191.77,191.93,192.09,192.24,192.42000000000002,192.59,193.06,19.92,19.68,19.52,19.34,19.16,18.98,18.79,18.61,18.240000000000002,N/A,N/A +2012,12,18,13,30,101470,100280,99130,65.86,0,6.33,6.87,6.99,7.05,7.09,7.12,7.15,7.19,7.48,187.88,188.11,188.28,188.47,188.68,188.91,189.23,189.57,191.82,20.14,19.93,19.79,19.62,19.44,19.27,19.1,18.94,18.68,N/A,N/A +2012,12,18,14,30,101480,100300,99150,68.79,0,6.6000000000000005,7.18,7.32,7.41,7.48,7.54,7.640000000000001,7.74,8.120000000000001,187.41,187.55,187.66,187.8,187.99,188.20000000000002,188.68,189.28,194.38,20.2,20,19.87,19.69,19.53,19.37,19.21,19.080000000000002,19.05,N/A,N/A +2012,12,18,15,30,101490,100300,99150,70.83,0,6.7,7.49,7.75,7.94,8.09,8.21,8.31,8.4,8.58,188.94,189.18,189.37,189.59,189.83,190.09,190.44,190.78,191.88,20.32,20.16,20.03,19.88,19.72,19.57,19.400000000000002,19.25,18.92,N/A,N/A +2012,12,18,16,30,101480,100290,99150,71.87,0,6.13,6.9,7.16,7.38,7.57,7.73,7.88,8.02,8.290000000000001,190.63,190.87,191.04,191.27,191.52,191.79,192.16,192.52,193.69,20.48,20.330000000000002,20.21,20.06,19.91,19.77,19.61,19.46,19.16,N/A,N/A +2012,12,18,17,30,101470,100290,99140,72.82000000000001,0,6.4,7.25,7.55,7.79,8,8.18,8.34,8.48,8.73,190.4,190.62,190.79,190.98,191.17000000000002,191.36,191.57,191.77,192.27,20.59,20.46,20.35,20.2,20.06,19.91,19.75,19.6,19.28,N/A,N/A +2012,12,18,18,30,101470,100290,99140,73.10000000000001,0,6.5,7.43,7.76,8.040000000000001,8.290000000000001,8.49,8.68,8.85,9.14,191.16,191.6,191.86,192.16,192.44,192.71,192.96,193.21,193.66,20.72,20.61,20.51,20.37,20.23,20.09,19.93,19.79,19.47,N/A,N/A +2012,12,18,19,30,101460,100280,99140,74.8,0,5.67,6.6000000000000005,6.96,7.28,7.55,7.8100000000000005,8.040000000000001,8.26,8.68,192.87,193.04,193.19,193.37,193.52,193.67000000000002,193.8,193.93,194.19,20.81,20.75,20.67,20.57,20.45,20.34,20.22,20.1,19.84,N/A,N/A +2012,12,18,20,30,101430,100250,99110,75.35000000000001,0,5.44,6.37,6.72,7.0200000000000005,7.28,7.5,7.68,7.84,8.1,185.5,185.99,186.42000000000002,186.93,187.43,187.94,188.49,188.99,190.14000000000001,20.82,20.76,20.69,20.580000000000002,20.47,20.35,20.21,20.09,19.8,N/A,N/A +2012,12,18,21,30,101390,100210,99070,75.57000000000001,0,5.59,6.6000000000000005,6.99,7.3500000000000005,7.66,7.94,8.19,8.41,8.8,180.95000000000002,181.52,181.94,182.44,182.95000000000002,183.47,184.01,184.52,185.53,20.79,20.76,20.7,20.61,20.51,20.41,20.29,20.17,19.900000000000002,N/A,N/A +2012,12,18,22,30,101360,100180,99040,77.72,0,5.75,6.82,7.25,7.65,8,8.3,8.58,8.83,9.26,178.9,179.52,180,180.58,181.15,181.73,182.35,182.93,184.1,20.740000000000002,20.72,20.67,20.580000000000002,20.490000000000002,20.39,20.27,20.16,19.91,N/A,N/A +2012,12,18,23,30,101330,100150,99010,78.89,0,5.5,6.62,7.09,7.54,7.94,8.32,8.65,8.950000000000001,9.4,170.91,171.91,172.63,173.48,174.23,174.94,175.51,176.01,176.74,20.740000000000002,20.77,20.75,20.72,20.67,20.62,20.54,20.46,20.21,N/A,N/A +2012,12,19,0,30,101340,100160,99020,79.11,0,6.29,7.43,7.88,8.3,8.68,9.02,9.35,9.65,10.24,170.87,171.34,171.68,172.08,172.48,172.89000000000001,173.34,173.77,174.74,20.740000000000002,20.72,20.66,20.580000000000002,20.5,20.42,20.32,20.240000000000002,20.03,N/A,N/A +2012,12,19,1,30,101330,100150,99010,80.15,0,6.5,7.74,8.26,8.75,9.200000000000001,9.620000000000001,10.01,10.370000000000001,10.96,167.01,167.95000000000002,168.65,169.49,170.27,171.01,171.64000000000001,172.19,172.64000000000001,20.81,20.81,20.78,20.72,20.66,20.6,20.52,20.44,20.21,N/A,N/A +2012,12,19,2,30,101330,100150,99010,80.77,0,6.79,8.11,8.64,9.16,9.6,10,10.35,10.66,11.13,166.8,167.32,167.76,168.34,168.95000000000002,169.59,170.21,170.79,171.58,20.85,20.86,20.830000000000002,20.78,20.72,20.650000000000002,20.57,20.490000000000002,20.26,N/A,N/A +2012,12,19,3,30,101320,100140,99010,81.68,0,7.12,8.44,8.96,9.47,9.92,10.33,10.72,11.09,11.8,167.67000000000002,168.15,168.49,168.94,169.42000000000002,169.91,170.47,171,172.08,20.89,20.88,20.830000000000002,20.76,20.69,20.61,20.52,20.44,20.23,N/A,N/A +2012,12,19,4,30,101300,100130,98990,83.07000000000001,0,6.78,8.15,8.72,9.26,9.74,10.18,10.61,11,11.78,167.93,168.41,168.78,169.22,169.62,170,170.28,170.52,170.53,20.91,20.94,20.91,20.86,20.81,20.75,20.67,20.6,20.39,N/A,N/A +2012,12,19,5,30,101290,100120,98980,83.43,0,7.26,8.69,9.290000000000001,9.86,10.370000000000001,10.84,11.28,11.68,12.39,166.05,166.71,167.21,167.83,168.45000000000002,169.08,169.68,170.22,170.96,20.95,20.97,20.95,20.91,20.86,20.81,20.740000000000002,20.67,20.5,N/A,N/A +2012,12,19,6,30,101300,100130,98990,84.9,0,7.47,8.91,9.5,10.07,10.57,11.05,11.5,11.92,12.68,165.98,166.62,167.14000000000001,167.78,168.45000000000002,169.14000000000001,169.85,170.52,171.64000000000001,21.01,21.01,20.98,20.92,20.86,20.8,20.73,20.66,20.47,N/A,N/A +2012,12,19,7,30,101300,100120,98990,85.2,0,7.890000000000001,9.46,10.1,10.72,11.26,11.77,12.24,12.67,13.41,164.73,165.39000000000001,165.87,166.44,167.04,167.65,168.28,168.86,169.83,21.13,21.14,21.11,21.04,20.97,20.89,20.79,20.7,20.45,N/A,N/A +2012,12,19,8,30,101270,100100,98960,87.83,0,8.22,9.8,10.43,11.01,11.52,11.99,12.42,12.81,13.49,163.26,163.67000000000002,164.01,164.48,164.99,165.56,166.26,166.95000000000002,168.70000000000002,21.14,21.16,21.12,21.07,21,20.94,20.87,20.8,20.650000000000002,N/A,N/A +2012,12,19,9,30,101250,100080,98940,86.7,0,8.17,9.790000000000001,10.44,11.06,11.61,12.11,12.57,13,13.75,166.61,167.28,167.77,168.4,169.06,169.72,170.4,171.04,172.17000000000002,21.3,21.36,21.35,21.3,21.240000000000002,21.18,21.1,21.01,20.8,N/A,N/A +2012,12,19,10,30,101220,100040,98910,90.36,0,8.06,9.77,10.49,11.18,11.790000000000001,12.35,12.870000000000001,13.34,14.17,158.98,159.64000000000001,160.16,160.85,161.58,162.33,163.12,163.87,165.32,21.240000000000002,21.29,21.28,21.240000000000002,21.19,21.14,21.07,21,20.8,N/A,N/A +2012,12,19,11,30,101190,100020,98890,92.76,0,8.18,9.9,10.61,11.31,11.93,12.5,13.01,13.48,14.25,159.67000000000002,160.46,161.01,161.73,162.48,163.25,164.08,164.87,166.5,21.23,21.29,21.28,21.25,21.21,21.16,21.1,21.03,20.85,N/A,N/A +2012,12,19,12,30,101180,100010,98880,93,0,7.79,9.51,10.24,10.94,11.55,12.11,12.6,13.040000000000001,13.75,159.38,160.29,161,161.92000000000002,162.88,163.88,164.92000000000002,165.91,167.68,21.23,21.31,21.31,21.3,21.28,21.240000000000002,21.19,21.14,20.96,N/A,N/A +2012,12,19,13,30,101170,100000,98860,92.79,0,7.7700000000000005,9.48,10.17,10.84,11.43,11.97,12.51,13.02,13.98,159.79,160.25,160.64000000000001,161.08,161.54,162,162.61,163.21,164.83,21.28,21.36,21.36,21.32,21.28,21.22,21.16,21.1,20.97,N/A,N/A +2012,12,19,14,30,101180,100010,98880,92.61,0,7.71,9.53,10.32,11.1,11.790000000000001,12.43,13.030000000000001,13.58,14.56,161.34,162.70000000000002,163.68,164.89000000000001,166.09,167.29,168.5,169.63,171.64000000000001,21.34,21.47,21.5,21.53,21.53,21.53,21.51,21.48,21.37,N/A,N/A +2012,12,19,15,30,101170,100000,98870,92.91,0,7.43,9.18,9.96,10.73,11.41,12.040000000000001,12.61,13.13,14,163.27,164.25,164.92000000000002,165.75,166.58,167.43,168.32,169.19,170.86,21.32,21.43,21.45,21.45,21.44,21.43,21.39,21.36,21.23,N/A,N/A +2012,12,19,16,30,101160,99990,98860,93.04,0,7.04,8.69,9.41,10.15,10.790000000000001,11.38,11.88,12.32,13.030000000000001,165.68,166.41,167.13,168.06,168.98,169.93,170.93,171.88,173.75,21.36,21.47,21.5,21.51,21.51,21.5,21.48,21.46,21.35,N/A,N/A +2012,12,19,17,30,101130,99960,98830,92.83,0,6.72,8.49,9.26,10,10.68,11.32,12,12.65,14.02,170.4,171.74,172.73,173.95000000000002,175.13,176.29,177.29,178.20000000000002,179.63,21.490000000000002,21.66,21.72,21.75,21.75,21.740000000000002,21.71,21.67,21.59,N/A,N/A +2012,12,19,18,30,101100,99930,98800,93.05,0,6.66,8.44,9.25,10.1,10.870000000000001,11.6,12.23,12.790000000000001,13.68,171.67000000000002,172.83,173.63,174.53,175.28,175.95000000000002,176.4,176.76,177.04,21.51,21.650000000000002,21.69,21.72,21.73,21.73,21.69,21.650000000000002,21.490000000000002,N/A,N/A +2012,12,19,19,30,101060,99900,98770,91.79,0,7.18,9.040000000000001,9.85,10.620000000000001,11.32,11.97,12.58,13.15,14.24,170.61,171.3,171.81,172.44,173.06,173.72,174.52,175.34,177.46,21.73,21.92,21.97,22,22,21.990000000000002,21.96,21.93,21.830000000000002,N/A,N/A +2012,12,19,20,30,101030,99860,98730,92.07000000000001,0,7.1000000000000005,8.94,9.76,10.59,11.32,11.99,12.61,13.19,14.22,169.16,170.32,171.13,172.06,172.91,173.73,174.52,175.25,176.54,21.6,21.78,21.84,21.87,21.88,21.87,21.830000000000002,21.78,21.61,N/A,N/A +2012,12,19,21,30,100990,99820,98700,91.83,0,7.22,9.1,9.94,10.76,11.5,12.200000000000001,12.870000000000001,13.5,14.75,171.52,172.70000000000002,173.56,174.48,175.26,175.96,176.51,177,177.95000000000002,21.59,21.79,21.85,21.88,21.89,21.89,21.86,21.830000000000002,21.7,N/A,N/A +2012,12,19,22,30,100930,99760,98640,91.76,0,7.43,9.3,10.13,10.94,11.66,12.34,12.96,13.530000000000001,14.43,166.5,167.41,168.1,168.82,169.46,170.04,170.63,171.18,172.33,21.55,21.77,21.85,21.900000000000002,21.93,21.94,21.92,21.89,21.740000000000002,N/A,N/A +2012,12,19,23,30,100920,99760,98630,91.68,0,7.95,9.85,10.73,11.57,12.32,13.02,13.67,14.280000000000001,15.31,170.43,170.49,170.61,170.82,171.12,171.5,172.03,172.61,173.81,21.54,21.79,21.88,21.94,21.97,21.990000000000002,21.98,21.96,21.85,N/A,N/A +2012,12,20,0,30,100910,99750,98620,92.27,0,7.57,9.46,10.32,11.200000000000001,11.97,12.67,13.290000000000001,13.85,14.92,161.36,162.47,163.49,165.16,166.82,168.54,170.06,171.42000000000002,174.16,21.42,21.650000000000002,21.76,21.89,21.990000000000002,22.080000000000002,22.1,22.1,22,N/A,N/A +2012,12,20,1,30,100900,99730,98610,91.84,0,8.14,10.02,10.86,11.700000000000001,12.47,13.22,13.92,14.58,15.69,167.21,168.46,169.41,170.63,171.75,172.83,173.75,174.58,175.75,21.54,21.67,21.73,21.82,21.87,21.89,21.86,21.830000000000002,21.67,N/A,N/A +2012,12,20,2,30,100890,99720,98600,91.42,0,8.48,10.46,11.33,12.17,12.93,13.63,14.32,14.97,16.05,174.95000000000002,175.55,175.95000000000002,176.35,176.75,177.15,177.64000000000001,178.15,179.38,21.62,21.86,21.94,21.97,21.98,21.97,21.96,21.94,21.84,N/A,N/A +2012,12,20,3,30,100900,99740,98620,91.07000000000001,0,8.21,10.08,10.870000000000001,11.63,12.290000000000001,12.9,13.47,14.01,15.08,178.64000000000001,178.91,179.18,179.64000000000001,180.16,180.77,181.51,182.26,184.06,21.69,21.89,21.95,21.98,21.990000000000002,21.97,21.93,21.89,21.75,N/A,N/A +2012,12,20,4,30,100940,99770,98650,92.18,0,6.6000000000000005,8.53,9.450000000000001,10.4,11.21,11.94,12.56,13.09,13.96,180.41,181.25,181.93,182.85,183.72,184.59,185.35,186.03,187.17000000000002,21.490000000000002,21.73,21.830000000000002,21.92,21.97,21.98,21.95,21.91,21.73,N/A,N/A +2012,12,20,5,30,100960,99800,98670,92.10000000000001,0,6.46,8.3,9.17,10.06,10.85,11.61,12.3,12.92,14.11,184.3,186.15,187.53,189.27,190.8,192.22,193.35,194.32,196.27,21.52,21.8,21.92,22.01,22.07,22.11,22.11,22.09,21.990000000000002,N/A,N/A +2012,12,20,6,30,100990,99820,98700,92,0,6.140000000000001,8.08,9.03,10.040000000000001,10.97,11.85,12.620000000000001,13.31,14.55,192.13,192.87,193.67000000000002,195.12,196.64000000000001,198.3,199.81,201.19,203.47,21.53,21.76,21.86,21.97,22.07,22.150000000000002,22.19,22.19,22.09,N/A,N/A +2012,12,20,7,30,101080,99920,98790,91.73,0,5.9,7.91,8.92,9.99,11.02,12.09,13.07,14,15.25,205.67000000000002,206.81,207.58,208.46,209.47,210.74,212.15,213.61,215.66,21.55,21.78,21.84,21.900000000000002,21.97,22.07,22.17,22.27,22.22,N/A,N/A +2012,12,20,8,30,101120,99950,98820,91.52,0,6.7700000000000005,8.9,9.99,11.14,12.14,13.05,13.75,14.32,14.97,220.66,220.05,219.65,219.8,220.22,220.94,221.76,222.58,224.84,21.61,22.04,22.23,22.330000000000002,22.41,22.46,22.45,22.43,22.26,N/A,N/A +2012,12,20,9,30,101160,99990,98860,91.12,0,8.3,10.14,10.9,11.58,12.15,12.64,13.05,13.41,14.05,221.61,223.44,224.72,226.35,227.81,229.19,230.43,231.57,233.79,21.650000000000002,21.8,21.82,21.81,21.79,21.78,21.740000000000002,21.69,21.54,N/A,N/A +2012,12,20,10,30,101380,100200,99050,74.88,0,6.93,8.08,8.65,9.31,9.98,10.67,11.44,12.200000000000001,13.8,303.46,307.61,310.09000000000003,312.90000000000003,315.45,317.91,320.13,322.19,325.38,20.46,20.400000000000002,20.36,20.3,20.22,20.13,20,19.88,19.53,N/A,N/A +2012,12,20,11,30,101560,100370,99210,52.25,0,15.22,17.1,17.7,18.080000000000002,18.36,18.57,18.740000000000002,18.88,19.09,330.23,330.43,330.54,330.66,330.76,330.86,330.97,331.06,331.25,19.03,18.68,18.5,18.29,18.1,17.91,17.7,17.52,17.13,N/A,N/A +2012,12,20,12,30,101710,100500,99330,54.980000000000004,0,15.98,17.66,18.13,18.37,18.51,18.6,18.650000000000002,18.67,18.66,327.77,328.21,328.42,328.63,328.84000000000003,329.03000000000003,329.24,329.44,329.84000000000003,17.1,16.57,16.34,16.12,15.91,15.71,15.5,15.31,14.92,N/A,N/A +2012,12,20,13,30,101860,100650,99460,60.4,0,14.17,15.52,15.88,16.080000000000002,16.2,16.29,16.35,16.39,16.43,339.89,339.51,339.3,339.09000000000003,338.90000000000003,338.73,338.55,338.39,338.08,15.01,14.35,14.09,13.85,13.63,13.42,13.21,13.01,12.6,N/A,N/A +2012,12,20,14,30,102030,100800,99610,63.46,0,14.46,15.84,16.23,16.44,16.580000000000002,16.69,16.76,16.82,16.89,339.81,339.75,339.69,339.64,339.58,339.52,339.46,339.41,339.29,13.26,12.47,12.18,11.93,11.69,11.48,11.26,11.06,10.65,N/A,N/A +2012,12,20,15,30,102140,100910,99710,65.6,0,15.96,17.47,17.89,18.11,18.25,18.35,18.41,18.45,18.5,333.81,334.01,334.15000000000003,334.29,334.42,334.54,334.66,334.78000000000003,335.01,11.99,11.08,10.77,10.5,10.26,10.040000000000001,9.82,9.61,9.200000000000001,N/A,N/A +2012,12,20,16,30,102230,100990,99780,65.58,0,16.01,17.57,18.04,18.3,18.48,18.62,18.71,18.79,18.900000000000002,334.88,334.99,335.05,335.1,335.15000000000003,335.19,335.24,335.27,335.35,11.24,10.290000000000001,9.97,9.69,9.450000000000001,9.22,9,8.790000000000001,8.38,N/A,N/A +2012,12,20,17,30,102270,101030,99830,65.17,0,14.870000000000001,16.29,16.68,16.9,17.05,17.16,17.240000000000002,17.3,17.400000000000002,333.67,333.66,333.68,333.69,333.7,333.71,333.73,333.74,333.75,11.44,10.540000000000001,10.23,9.97,9.72,9.51,9.28,9.08,8.67,N/A,N/A +2012,12,20,18,30,102360,101120,99920,63.08,0,15.16,16.63,17.04,17.27,17.43,17.55,17.63,17.7,17.8,334.6,334.65000000000003,334.69,334.73,334.76,334.79,334.81,334.84000000000003,334.90000000000003,11.71,10.82,10.52,10.26,10.01,9.8,9.57,9.36,8.950000000000001,N/A,N/A +2012,12,20,19,30,102430,101190,99990,61.04,0,14.69,16.09,16.490000000000002,16.71,16.86,16.98,17.06,17.13,17.22,332.97,333.05,333.09000000000003,333.12,333.15000000000003,333.18,333.21,333.24,333.29,12.05,11.19,10.89,10.63,10.39,10.17,9.950000000000001,9.74,9.33,N/A,N/A +2012,12,20,20,30,102470,101230,100030,58.15,0,14.39,15.76,16.14,16.35,16.5,16.6,16.68,16.740000000000002,16.82,332.7,332.76,332.8,332.84000000000003,332.86,332.88,332.92,332.94,332.99,12.48,11.65,11.370000000000001,11.11,10.88,10.66,10.44,10.23,9.82,N/A,N/A +2012,12,20,21,30,102550,101310,100110,55.480000000000004,0,13.88,15.14,15.5,15.700000000000001,15.83,15.93,16,16.05,16.13,333.48,333.54,333.59000000000003,333.63,333.66,333.7,333.73,333.76,333.81,12.66,11.86,11.58,11.32,11.09,10.88,10.65,10.450000000000001,10.040000000000001,N/A,N/A +2012,12,20,22,30,102600,101370,100160,54.44,0,13.64,14.86,15.200000000000001,15.39,15.51,15.6,15.66,15.71,15.77,333.93,334.01,334.06,334.1,334.14,334.18,334.22,334.25,334.33,12.58,11.78,11.5,11.25,11.02,10.8,10.58,10.370000000000001,9.96,N/A,N/A +2012,12,20,23,30,102720,101480,100270,54.39,0,12.77,13.870000000000001,14.18,14.34,14.46,14.540000000000001,14.6,14.64,14.700000000000001,337.19,337.31,337.38,337.44,337.5,337.55,337.61,337.66,337.77,12.35,11.56,11.27,11.02,10.790000000000001,10.58,10.35,10.15,9.74,N/A,N/A +2012,12,21,0,30,102830,101580,100380,53.24,0,12.21,13.24,13.530000000000001,13.69,13.8,13.88,13.93,13.98,14.05,342.28000000000003,342.34000000000003,342.36,342.38,342.39,342.41,342.43,342.44,342.47,12.06,11.27,10.99,10.74,10.5,10.290000000000001,10.07,9.86,9.450000000000001,N/A,N/A +2012,12,21,1,30,102900,101660,100450,51.13,0,12.68,13.76,14.06,14.22,14.33,14.4,14.46,14.5,14.55,343.36,343.40000000000003,343.43,343.45,343.48,343.5,343.53000000000003,343.55,343.61,11.81,11,10.71,10.46,10.23,10.01,9.790000000000001,9.58,9.17,N/A,N/A +2012,12,21,2,30,102940,101690,100480,52.34,0,12.14,13.14,13.41,13.55,13.64,13.71,13.75,13.790000000000001,13.84,345.53000000000003,345.67,345.76,345.84000000000003,345.90000000000003,345.96,346.03000000000003,346.09000000000003,346.2,11.64,10.84,10.56,10.31,10.08,9.86,9.64,9.43,9.03,N/A,N/A +2012,12,21,3,30,102970,101720,100510,53.160000000000004,0,11.47,12.38,12.61,12.73,12.81,12.86,12.89,12.92,12.950000000000001,353.72,353.51,353.36,353.24,353.12,353.01,352.89,352.79,352.59000000000003,11.51,10.72,10.44,10.200000000000001,9.96,9.76,9.540000000000001,9.33,8.92,N/A,N/A +2012,12,21,4,30,103010,101770,100550,50.120000000000005,0,11.57,12.49,12.73,12.85,12.94,13,13.040000000000001,13.07,13.1,354.98,354.88,354.81,354.74,354.67,354.61,354.55,354.49,354.38,11.4,10.61,10.33,10.08,9.84,9.64,9.42,9.21,8.81,N/A,N/A +2012,12,21,5,30,103050,101800,100590,48.86,0,11.09,11.93,12.15,12.27,12.34,12.39,12.42,12.450000000000001,12.48,0.38,0.09,359.90000000000003,359.72,359.56,359.42,359.27,359.14,358.88,11.27,10.48,10.21,9.96,9.73,9.53,9.31,9.11,8.71,N/A,N/A +2012,12,21,6,30,103080,101830,100620,47.94,0,9.85,10.57,10.75,10.85,10.91,10.950000000000001,10.98,11,11.040000000000001,0.96,0.58,0.32,0.09,359.88,359.69,359.5,359.33,358.99,11.3,10.57,10.3,10.07,9.84,9.64,9.43,9.22,8.82,N/A,N/A +2012,12,21,7,30,103130,101880,100660,47.160000000000004,0,9.44,10.1,10.26,10.35,10.4,10.43,10.46,10.47,10.5,2.32,1.92,1.6600000000000001,1.42,1.21,1.01,0.81,0.63,0.27,11.32,10.6,10.34,10.11,9.88,9.68,9.47,9.27,8.870000000000001,N/A,N/A +2012,12,21,8,30,103150,101900,100690,48.26,0,9.05,9.67,9.81,9.89,9.94,9.97,9.99,10,10.02,359.45,359.15000000000003,358.97,358.8,358.65000000000003,358.52,358.37,358.25,358.01,11.35,10.65,10.39,10.15,9.93,9.73,9.52,9.32,8.92,N/A,N/A +2012,12,21,9,30,103160,101910,100690,47.4,0,9.09,9.700000000000001,9.85,9.92,9.96,9.99,10.01,10.02,10.03,1.35,1.04,0.8300000000000001,0.64,0.47000000000000003,0.32,0.16,0.01,359.73,11.36,10.65,10.4,10.16,9.94,9.74,9.53,9.33,8.93,N/A,N/A +2012,12,21,10,30,103170,101920,100710,45.2,0,8.82,9.4,9.540000000000001,9.6,9.64,9.66,9.67,9.69,9.69,3.98,3.61,3.36,3.13,2.92,2.72,2.52,2.33,1.94,11.38,10.68,10.43,10.200000000000001,9.98,9.78,9.57,9.370000000000001,8.98,N/A,N/A +2012,12,21,11,30,103190,101940,100730,44.06,0,8.65,9.22,9.34,9.4,9.43,9.450000000000001,9.46,9.47,9.47,3.37,3.08,2.9,2.73,2.56,2.41,2.25,2.1,1.82,11.46,10.77,10.52,10.3,10.08,9.88,9.67,9.47,9.08,N/A,N/A +2012,12,21,12,30,103210,101970,100750,44.050000000000004,0,8.27,8.78,8.89,8.94,8.96,8.98,8.98,8.98,8.97,5.99,5.72,5.55,5.38,5.22,5.07,4.91,4.76,4.46,11.42,10.74,10.49,10.27,10.05,9.86,9.65,9.46,9.07,N/A,N/A +2012,12,21,13,30,103220,101970,100750,45.29,0,8.24,8.75,8.85,8.9,8.92,8.94,8.94,8.94,8.93,6.61,6.59,6.58,6.57,6.55,6.53,6.51,6.49,6.43,11.3,10.620000000000001,10.370000000000001,10.15,9.93,9.73,9.53,9.33,8.950000000000001,N/A,N/A +2012,12,21,14,30,103250,102000,100790,47.14,0,7.33,7.75,7.84,7.88,7.9,7.91,7.91,7.91,7.9,10.17,10.26,10.3,10.34,10.38,10.42,10.450000000000001,10.49,10.55,11.3,10.65,10.4,10.18,9.96,9.77,9.56,9.370000000000001,8.98,N/A,N/A +2012,12,21,15,30,103240,101990,100770,46.67,0,6.46,6.8100000000000005,6.87,6.9,6.91,6.92,6.92,6.92,6.91,11.09,11.17,11.200000000000001,11.23,11.26,11.28,11.31,11.33,11.38,11.450000000000001,10.82,10.58,10.36,10.15,9.96,9.75,9.56,9.17,N/A,N/A +2012,12,21,16,30,103200,101960,100750,45.59,0,5.79,6.07,6.13,6.15,6.16,6.16,6.16,6.16,6.15,13.42,13.41,13.41,13.4,13.39,13.39,13.38,13.38,13.35,11.75,11.15,10.92,10.700000000000001,10.49,10.3,10.09,9.9,9.51,N/A,N/A +2012,12,21,17,30,103150,101910,100700,44.730000000000004,0,5.4,5.67,5.72,5.74,5.75,5.76,5.76,5.76,5.76,9.28,9.28,9.3,9.31,9.32,9.33,9.33,9.34,9.35,12.17,11.6,11.370000000000001,11.15,10.94,10.75,10.55,10.36,9.97,N/A,N/A +2012,12,21,18,30,103120,101870,100670,44.79,0,4.39,4.58,4.62,4.64,4.64,4.65,4.65,4.65,4.65,6.5,6.18,5.99,5.8100000000000005,5.64,5.5,5.3500000000000005,5.21,4.94,12.68,12.14,11.92,11.71,11.5,11.31,11.1,10.91,10.52,N/A,N/A +2012,12,21,19,30,103090,101850,100640,45.300000000000004,0,3.85,4,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,4,3.99,0.04,0.46,0.75,1.03,1.29,1.52,1.74,1.94,2.35,13.16,12.65,12.43,12.22,12.01,11.82,11.61,11.42,11.03,N/A,N/A +2012,12,21,20,30,103030,101800,100590,41.81,0,3.5700000000000003,3.73,3.75,3.77,3.77,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.7800000000000002,355.81,355.76,355.73,355.69,355.67,355.65000000000003,355.63,355.62,355.62,13.65,13.16,12.950000000000001,12.74,12.540000000000001,12.35,12.14,11.96,11.56,N/A,N/A +2012,12,21,21,30,103000,101760,100560,43.18,0,2.9,3.02,3.04,3.0500000000000003,3.06,3.0700000000000003,3.0700000000000003,3.08,3.09,355.40000000000003,354.89,354.57,354.29,354.02,353.78000000000003,353.53000000000003,353.31,352.85,14.09,13.63,13.42,13.21,13.01,12.82,12.61,12.42,12.030000000000001,N/A,N/A +2012,12,21,22,30,102960,101730,100540,48.4,0,2.36,2.44,2.44,2.44,2.44,2.44,2.43,2.43,2.42,341.08,341.33,341.49,341.65000000000003,341.79,341.92,342.09000000000003,342.23,342.55,14.36,13.91,13.700000000000001,13.5,13.290000000000001,13.1,12.9,12.71,12.31,N/A,N/A +2012,12,21,23,30,102960,101730,100530,46.68,0,1.97,2.0100000000000002,2,1.98,1.97,1.95,1.94,1.92,1.8900000000000001,334.92,335.46,335.79,336.11,336.44,336.74,337.08,337.39,338.09000000000003,14.6,14.16,13.950000000000001,13.75,13.55,13.36,13.15,12.96,12.57,N/A,N/A +2012,12,22,0,30,102950,101720,100520,47.27,0,2.15,2.2,2.19,2.18,2.16,2.15,2.13,2.11,2.08,338.72,339.16,339.41,339.66,339.89,340.11,340.33,340.55,341.04,14.82,14.38,14.18,13.98,13.77,13.58,13.38,13.19,12.790000000000001,N/A,N/A +2012,12,22,1,30,102920,101700,100500,47.59,0,1.92,1.95,1.93,1.92,1.9000000000000001,1.8800000000000001,1.86,1.84,1.8,354.65000000000003,355.39,355.85,356.3,356.76,357.19,357.66,358.1,359.06,14.97,14.540000000000001,14.34,14.14,13.94,13.75,13.540000000000001,13.35,12.96,N/A,N/A +2012,12,22,2,30,102910,101690,100490,47.52,0,1.6,1.61,1.59,1.57,1.55,1.53,1.51,1.49,1.45,4.7700000000000005,5.89,6.59,7.28,7.97,8.6,9.35,10.040000000000001,11.55,15.1,14.68,14.48,14.27,14.07,13.88,13.68,13.49,13.1,N/A,N/A +2012,12,22,3,30,102910,101690,100500,47.75,0,1.09,1.07,1.05,1.02,1,0.97,0.9500000000000001,0.93,0.89,12.88,13.36,13.68,14.05,14.46,14.85,15.3,15.72,16.740000000000002,15.24,14.83,14.63,14.43,14.23,14.040000000000001,13.84,13.64,13.25,N/A,N/A +2012,12,22,4,30,102890,101660,100470,48.7,0,1.33,1.33,1.3,1.28,1.26,1.24,1.21,1.19,1.1500000000000001,25.2,25.25,25.27,25.29,25.34,25.400000000000002,25.51,25.62,25.93,15.33,14.92,14.73,14.52,14.32,14.13,13.93,13.74,13.35,N/A,N/A +2012,12,22,5,30,102870,101640,100450,49.65,0,1.12,1.11,1.09,1.06,1.04,1.02,0.99,0.97,0.92,40.53,41.22,41.61,41.95,42.27,42.54,42.82,43.07,43.68,15.41,15,14.81,14.61,14.41,14.22,14.02,13.83,13.44,N/A,N/A +2012,12,22,6,30,102870,101650,100460,51.11,0,0.99,0.99,0.96,0.9400000000000001,0.92,0.91,0.89,0.87,0.84,39.74,41.78,43.07,44.31,45.54,46.67,47.95,49.14,51.76,15.43,15.05,14.85,14.65,14.450000000000001,14.27,14.06,13.870000000000001,13.48,N/A,N/A +2012,12,22,7,30,102880,101650,100470,53.46,0,1.17,1.17,1.1400000000000001,1.12,1.1,1.07,1.05,1.03,0.99,46.800000000000004,48.24,49.11,49.97,50.83,51.620000000000005,52.52,53.35,55.18,15.43,15.040000000000001,14.85,14.64,14.44,14.25,14.05,13.86,13.47,N/A,N/A +2012,12,22,8,30,102860,101640,100450,54.79,0,1.3,1.28,1.25,1.22,1.2,1.17,1.1400000000000001,1.12,1.08,46.45,48.230000000000004,49.35,50.46,51.59,52.64,53.84,54.97,57.53,15.42,15.030000000000001,14.83,14.63,14.43,14.24,14.040000000000001,13.85,13.46,N/A,N/A +2012,12,22,9,30,102850,101630,100440,54.94,0,1.53,1.57,1.56,1.56,1.55,1.55,1.54,1.54,1.52,69.79,71.85000000000001,73.06,74.19,75.26,76.24,77.28,78.24,80.22,15.49,15.1,14.91,14.71,14.5,14.32,14.11,13.92,13.530000000000001,N/A,N/A +2012,12,22,10,30,102850,101620,100430,53.370000000000005,0,2.2600000000000002,2.2800000000000002,2.2600000000000002,2.23,2.21,2.18,2.15,2.13,2.08,86.44,86.83,87.13,87.43,87.74,88.03,88.35000000000001,88.66,89.33,15.52,15.120000000000001,14.93,14.73,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A +2012,12,22,11,30,102840,101620,100430,56.660000000000004,0,2.5500000000000003,2.64,2.65,2.66,2.66,2.66,2.66,2.67,2.67,69.46000000000001,71.73,73.13,74.44,75.69,76.85000000000001,78.04,79.13,81.31,15.52,15.120000000000001,14.93,14.73,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A +2012,12,22,12,30,102840,101620,100430,54.99,0,2.98,3.11,3.13,3.14,3.15,3.16,3.16,3.17,3.17,92.51,93.23,93.75,94.27,94.77,95.24,95.74000000000001,96.2,97.18,15.65,15.25,15.06,14.85,14.66,14.47,14.26,14.07,13.68,N/A,N/A +2012,12,22,13,30,102830,101610,100420,59.34,0,3.71,3.89,3.92,3.93,3.94,3.94,3.94,3.94,3.94,109.34,110.06,110.47,110.84,111.21000000000001,111.55,111.9,112.23,112.93,15.73,15.32,15.13,14.92,14.72,14.530000000000001,14.33,14.14,13.75,N/A,N/A +2012,12,22,14,30,102840,101610,100430,61.38,0,4.11,4.34,4.39,4.42,4.44,4.46,4.47,4.48,4.5,108.28,109.04,109.51,109.93,110.33,110.69,111.07000000000001,111.42,112.11,15.89,15.48,15.290000000000001,15.08,14.88,14.69,14.49,14.3,13.91,N/A,N/A +2012,12,22,15,30,102820,101600,100410,61.43,0,4.92,5.18,5.24,5.26,5.2700000000000005,5.28,5.29,5.29,5.28,120.71000000000001,121.16,121.41,121.64,121.86,122.05,122.25,122.45,122.85000000000001,16.13,15.72,15.530000000000001,15.32,15.120000000000001,14.93,14.73,14.540000000000001,14.15,N/A,N/A +2012,12,22,16,30,102770,101550,100370,64.03,0,5,5.3100000000000005,5.39,5.43,5.47,5.5,5.5200000000000005,5.54,5.57,126.96000000000001,127.22,127.39,127.55,127.7,127.85000000000001,127.99000000000001,128.13,128.42000000000002,16.330000000000002,15.93,15.73,15.530000000000001,15.33,15.14,14.94,14.75,14.35,N/A,N/A +2012,12,22,17,30,102700,101490,100310,63.370000000000005,0,5.23,5.58,5.66,5.71,5.75,5.7700000000000005,5.79,5.8100000000000005,5.83,130.6,131.16,131.48,131.79,132.06,132.31,132.58,132.81,133.3,16.61,16.22,16.02,15.82,15.620000000000001,15.43,15.23,15.040000000000001,14.64,N/A,N/A +2012,12,22,18,30,102670,101450,100270,64.5,0,5.55,5.93,6.03,6.08,6.12,6.15,6.17,6.19,6.22,137.71,138.09,138.35,138.59,138.82,139.03,139.24,139.44,139.84,16.85,16.46,16.26,16.06,15.860000000000001,15.68,15.47,15.280000000000001,14.89,N/A,N/A +2012,12,22,19,30,102630,101420,100240,66.63,0,5.69,6.1000000000000005,6.21,6.28,6.33,6.36,6.390000000000001,6.42,6.45,139.12,139.70000000000002,140.01,140.31,140.57,140.82,141.06,141.29,141.76,17.06,16.68,16.490000000000002,16.29,16.080000000000002,15.9,15.69,15.5,15.11,N/A,N/A +2012,12,22,20,30,102560,101350,100180,66.66,0,5.92,6.36,6.47,6.54,6.59,6.62,6.65,6.67,6.7,144.04,144.52,144.83,145.12,145.4,145.66,145.91,146.16,146.65,17.38,17.01,16.830000000000002,16.63,16.43,16.240000000000002,16.04,15.85,15.46,N/A,N/A +2012,12,22,21,30,102500,101290,100120,69.84,0,6.26,6.79,6.93,7.0200000000000005,7.08,7.13,7.16,7.19,7.23,146.51,147.13,147.49,147.82,148.12,148.4,148.67000000000002,148.92000000000002,149.42000000000002,17.71,17.36,17.18,16.98,16.78,16.59,16.39,16.21,15.81,N/A,N/A +2012,12,22,22,30,102450,101240,100070,71.44,0,6.28,6.82,6.98,7.09,7.17,7.23,7.29,7.34,7.43,147.35,148.18,148.71,149.22,149.67000000000002,150.08,150.5,150.87,151.63,17.990000000000002,17.650000000000002,17.48,17.28,17.09,16.9,16.7,16.52,16.13,N/A,N/A +2012,12,22,23,30,102400,101200,100030,73.06,0,7.37,8.01,8.17,8.26,8.33,8.370000000000001,8.4,8.43,8.47,149,149.45000000000002,149.76,150.05,150.31,150.56,150.81,151.04,151.51,18.41,18.1,17.92,17.72,17.53,17.35,17.150000000000002,16.96,16.57,N/A,N/A +2012,12,23,0,30,102360,101160,99990,71.95,0,8.17,8.98,9.19,9.3,9.38,9.43,9.47,9.49,9.52,155.97,156.51,156.84,157.15,157.44,157.71,157.98,158.22,158.74,18.740000000000002,18.47,18.3,18.1,17.92,17.73,17.53,17.35,16.96,N/A,N/A +2012,12,23,1,30,102300,101100,99930,74.34,0,6.98,7.7,7.9,8.02,8.11,8.19,8.25,8.3,8.38,157.88,158.03,158.16,158.28,158.39000000000001,158.49,158.6,158.69,158.89000000000001,18.97,18.71,18.54,18.36,18.17,17.990000000000002,17.79,17.61,17.22,N/A,N/A +2012,12,23,2,30,102260,101060,99900,75.3,0,6.92,7.69,7.930000000000001,8.120000000000001,8.28,8.41,8.53,8.64,8.84,159.3,160.06,160.48,160.92000000000002,161.32,161.70000000000002,162.09,162.44,163.12,19.17,18.95,18.8,18.63,18.45,18.27,18.080000000000002,17.91,17.53,N/A,N/A +2012,12,23,3,30,102220,101030,99870,77.48,0,7.58,8.370000000000001,8.620000000000001,8.78,8.89,8.98,9.040000000000001,9.08,9.13,158.98,158.94,159.02,159.16,159.34,159.54,159.78,160.01,160.78,19.27,19.07,18.93,18.75,18.580000000000002,18.41,18.22,18.05,17.68,N/A,N/A +2012,12,23,4,30,102150,100960,99800,80.05,0,7.0600000000000005,8.01,8.35,8.66,8.94,9.18,9.43,9.65,10.07,154.46,155.51,156.16,156.86,157.5,158.1,158.66,159.17000000000002,160.09,19.38,19.2,19.07,18.91,18.740000000000002,18.580000000000002,18.41,18.240000000000002,17.89,N/A,N/A +2012,12,23,5,30,102130,100930,99780,77.96000000000001,0,8.05,9.06,9.42,9.700000000000001,9.93,10.120000000000001,10.290000000000001,10.44,10.700000000000001,165.65,165.78,165.93,166.15,166.4,166.67000000000002,167.01,167.33,168.15,19.67,19.53,19.41,19.26,19.11,18.95,18.79,18.63,18.3,N/A,N/A +2012,12,23,6,30,102090,100900,99740,82.3,0,7.43,8.66,9.17,9.63,10.03,10.39,10.71,10.99,11.43,166.95000000000002,167.95000000000002,168.61,169.36,170.03,170.66,171.22,171.71,172.51,19.63,19.580000000000002,19.5,19.38,19.26,19.13,18.98,18.84,18.53,N/A,N/A +2012,12,23,7,30,102070,100880,99720,83.31,0,6.91,8.2,8.76,9.24,9.67,10.040000000000001,10.370000000000001,10.66,11.14,179.07,179.64000000000001,180,180.1,180.06,179.93,179.71,179.49,179.09,19.62,19.56,19.48,19.35,19.22,19.080000000000002,18.93,18.79,18.48,N/A,N/A +2012,12,23,8,30,102030,100840,99690,82.16,0,7.07,8.3,8.790000000000001,9.18,9.49,9.74,9.92,10.08,10.28,179.77,179.66,179.63,179.61,179.63,179.67000000000002,179.82,179.98,180.68,19.76,19.75,19.68,19.57,19.44,19.3,19.14,18.990000000000002,18.66,N/A,N/A +2012,12,23,9,30,102000,100810,99660,84.88,0,6.72,8.08,8.69,9.27,9.77,10.22,10.61,10.97,11.51,184.55,185.31,185.94,186.71,187.43,188.14000000000001,188.81,189.44,190.54,19.740000000000002,19.75,19.7,19.62,19.53,19.42,19.3,19.19,18.91,N/A,N/A +2012,12,23,10,30,101960,100770,99620,85.35000000000001,0,6.96,8.39,9.02,9.6,10.09,10.53,10.89,11.22,11.74,185.89000000000001,186.70000000000002,187.26,187.84,188.35,188.83,189.25,189.63,190.23,19.78,19.81,19.79,19.72,19.64,19.55,19.44,19.32,19.05,N/A,N/A +2012,12,23,11,30,101940,100760,99610,85.56,0,6.92,8.370000000000001,9,9.6,10.120000000000001,10.58,10.98,11.35,11.92,190.11,190.79,191.31,191.89000000000001,192.44,192.98000000000002,193.54,194.06,195.18,19.85,19.900000000000002,19.87,19.81,19.73,19.64,19.53,19.42,19.150000000000002,N/A,N/A +2012,12,23,12,30,101920,100730,99580,86.44,0,6.44,7.83,8.46,9.06,9.59,10.09,10.540000000000001,10.96,11.68,190.01,191.23000000000002,192.15,193.20000000000002,194.16,195.08,195.91,196.67000000000002,197.92000000000002,19.81,19.86,19.84,19.78,19.71,19.62,19.52,19.42,19.18,N/A,N/A +2012,12,23,13,30,101890,100700,99550,85.74,0,6.65,8.08,8.700000000000001,9.290000000000001,9.790000000000001,10.25,10.67,11.040000000000001,11.69,192.45000000000002,192.95000000000002,193.33,193.76,194.15,194.52,194.93,195.32,196.3,19.89,19.94,19.92,19.85,19.77,19.68,19.57,19.47,19.21,N/A,N/A +2012,12,23,14,30,101880,100700,99550,86.69,0,6.61,8.05,8.69,9.28,9.8,10.26,10.69,11.08,11.71,193.69,194.39000000000001,194.91,195.54,196.1,196.63,197.13,197.59,198.36,19.91,19.97,19.95,19.88,19.81,19.72,19.61,19.51,19.26,N/A,N/A +2012,12,23,15,30,101860,100670,99520,87.74,0,6.3100000000000005,7.74,8.38,8.98,9.52,10.02,10.49,10.92,11.74,194.47,195.35,196,196.73000000000002,197.42000000000002,198.12,198.86,199.56,200.96,19.95,20.02,20.01,19.96,19.89,19.81,19.72,19.63,19.41,N/A,N/A +2012,12,23,16,30,101820,100640,99490,87.58,0,6.45,7.92,8.6,9.25,9.8,10.290000000000001,10.700000000000001,11.06,11.63,198.73000000000002,199.74,200.46,201.23000000000002,201.84,202.35,202.74,203.07,203.59,20.01,20.1,20.11,20.07,20.02,19.95,19.86,19.76,19.5,N/A,N/A +2012,12,23,17,30,101760,100580,99430,87.82000000000001,0,6.29,7.73,8.370000000000001,9,9.55,10.06,10.52,10.94,11.68,198.77,199.51,200.07,200.68,201.20000000000002,201.67000000000002,202.1,202.5,203.37,20.06,20.13,20.12,20.07,20.01,19.93,19.830000000000002,19.73,19.490000000000002,N/A,N/A +2012,12,23,18,30,101710,100530,99390,87.19,0,6.43,7.91,8.55,9.14,9.63,10.07,10.450000000000001,10.790000000000001,11.43,195.1,196.29,197.14000000000001,198.05,198.76,199.34,199.75,200.09,200.63,20.150000000000002,20.25,20.25,20.21,20.14,20.06,19.94,19.82,19.54,N/A,N/A +2012,12,23,19,30,101670,100490,99340,90.37,0,6.140000000000001,7.6000000000000005,8.27,8.92,9.5,10.040000000000001,10.52,10.97,11.73,195.47,197.29,198.56,199.89000000000001,201.01,201.98000000000002,202.76,203.45000000000002,204.47,20.07,20.14,20.14,20.09,20.04,19.97,19.89,19.8,19.580000000000002,N/A,N/A +2012,12,23,20,30,101610,100430,99280,88.63,0,6.65,8.18,8.870000000000001,9.53,10.11,10.63,11.09,11.51,12.23,199.09,200.02,200.70000000000002,201.44,202.1,202.71,203.3,203.84,204.85,20.14,20.240000000000002,20.240000000000002,20.21,20.16,20.09,20.01,19.92,19.69,N/A,N/A +2012,12,23,21,30,101560,100380,99230,89.01,0,7.22,8.78,9.48,10.14,10.700000000000001,11.200000000000001,11.65,12.05,12.75,202.36,202.78,203.1,203.45000000000002,203.74,204,204.25,204.49,205.07,20.150000000000002,20.26,20.27,20.23,20.18,20.12,20.03,19.94,19.7,N/A,N/A +2012,12,23,22,30,101510,100330,99190,88.81,0,7.33,8.950000000000001,9.67,10.34,10.93,11.47,11.94,12.36,13.030000000000001,199.95000000000002,200.66,201.22,201.9,202.51,203.07,203.54,203.96,204.57,20.17,20.3,20.32,20.29,20.25,20.19,20.11,20.02,19.79,N/A,N/A +2012,12,23,23,30,101490,100320,99170,89.96000000000001,0,7.0200000000000005,8.56,9.25,9.91,10.47,10.98,11.44,11.86,12.59,200.53,201.05,201.48000000000002,202.02,202.51,203,203.44,203.85,204.49,20.14,20.26,20.28,20.25,20.2,20.14,20.06,19.97,19.740000000000002,N/A,N/A +2012,12,24,0,30,101470,100290,99150,90.48,0,6.95,8.57,9.31,10.01,10.61,11.16,11.64,12.07,12.8,201.46,201.92000000000002,202.28,202.75,203.23000000000002,203.73000000000002,204.23000000000002,204.70000000000002,205.55,20.150000000000002,20.28,20.29,20.26,20.21,20.150000000000002,20.06,19.98,19.75,N/A,N/A +2012,12,24,1,30,101460,100280,99140,90.9,0,6.8,8.44,9.200000000000001,9.92,10.53,11.1,11.61,12.09,12.88,203.42000000000002,204.1,204.59,205.08,205.47,205.77,206.02,206.23000000000002,206.62,20.18,20.330000000000002,20.35,20.330000000000002,20.29,20.22,20.13,20.04,19.81,N/A,N/A +2012,12,24,2,30,101440,100260,99120,91.24,0,7.23,8.91,9.66,10.370000000000001,11,11.57,12.09,12.58,13.47,205.25,205.70000000000002,206.04,206.43,206.8,207.15,207.48000000000002,207.79,208.32,20.18,20.32,20.34,20.32,20.27,20.21,20.13,20.05,19.84,N/A,N/A +2012,12,24,3,30,101420,100240,99100,91.37,0,7.73,9.49,10.3,11.06,11.73,12.33,12.88,13.38,14.24,206.29,206.65,206.92000000000002,207.24,207.52,207.8,208.05,208.29,208.68,20.25,20.400000000000002,20.43,20.42,20.38,20.330000000000002,20.25,20.17,19.96,N/A,N/A +2012,12,24,4,30,101410,100230,99090,91.43,0,7.57,9.31,10.11,10.870000000000001,11.53,12.120000000000001,12.66,13.15,14.01,208.6,208.77,208.91,209.08,209.26,209.44,209.65,209.85,210.25,20.25,20.400000000000002,20.43,20.41,20.37,20.31,20.23,20.150000000000002,19.93,N/A,N/A +2012,12,24,5,30,101410,100230,99090,91.63,0,6.84,8.57,9.38,10.16,10.84,11.47,12.040000000000001,12.57,13.48,211.61,211.72,211.83,212,212.17000000000002,212.35,212.53,212.71,213.04,20.22,20.39,20.43,20.41,20.38,20.32,20.25,20.17,19.96,N/A,N/A +2012,12,24,6,30,101410,100240,99100,91.55,0,6.92,8.66,9.47,10.24,10.92,11.55,12.120000000000001,12.64,13.57,212.18,212.56,212.84,213.15,213.43,213.71,213.95000000000002,214.18,214.59,20.17,20.37,20.42,20.42,20.38,20.34,20.26,20.19,19.98,N/A,N/A +2012,12,24,7,30,101410,100230,99090,91.73,0,6.88,8.59,9.4,10.18,10.86,11.49,12.07,12.61,13.57,214.02,214.4,214.70000000000002,215.02,215.3,215.55,215.78,215.99,216.35,20.13,20.32,20.38,20.38,20.36,20.32,20.26,20.19,20.01,N/A,N/A +2012,12,24,8,30,101390,100210,99070,91.58,0,7.36,9.13,9.94,10.73,11.42,12.05,12.63,13.17,14.120000000000001,215.05,215.73000000000002,216.23000000000002,216.82,217.35,217.86,218.32,218.73000000000002,219.37,20.16,20.35,20.400000000000002,20.41,20.400000000000002,20.36,20.31,20.240000000000002,20.07,N/A,N/A +2012,12,24,9,30,101380,100200,99070,91.39,0,7.24,9.02,9.82,10.59,11.27,11.9,12.47,12.99,14,217.33,218,218.5,219.08,219.56,220,220.37,220.71,221.32,20.2,20.39,20.44,20.44,20.41,20.36,20.28,20.2,20,N/A,N/A +2012,12,24,10,30,101380,100210,99070,91.78,0,6.67,8.42,9.23,10.01,10.700000000000001,11.35,11.96,12.530000000000001,13.58,223.70000000000002,223.81,223.92000000000002,224.14000000000001,224.41,224.78,225.15,225.52,226.08,20.14,20.31,20.35,20.330000000000002,20.29,20.23,20.150000000000002,20.080000000000002,19.89,N/A,N/A +2012,12,24,11,30,101410,100230,99090,92.16,0,5.97,7.66,8.48,9.290000000000001,9.98,10.59,11.120000000000001,11.59,12.39,232.85,233.23000000000002,233.44,233.5,233.5,233.44,233.47,233.53,233.96,20.080000000000002,20.27,20.32,20.32,20.3,20.240000000000002,20.16,20.07,19.830000000000002,N/A,N/A +2012,12,24,12,30,101420,100250,99100,93.10000000000001,0,5,6.6000000000000005,7.32,7.99,8.56,9.05,9.49,9.88,10.61,247.66,247.6,247.54,247.41,247.21,246.94,246.6,246.25,245.58,19.91,20.09,20.12,20.09,20.03,19.94,19.830000000000002,19.73,19.48,N/A,N/A +2012,12,24,13,30,101430,100250,99110,93.95,0,4.48,5.98,6.66,7.2700000000000005,7.7700000000000005,8.19,8.700000000000001,9.23,9.99,252.81,253.8,254.43,254.84,255.01000000000002,254.98000000000002,254.57,254.01000000000002,252.34,19.75,19.91,19.95,19.91,19.84,19.77,19.69,19.61,19.42,N/A,N/A +2012,12,24,14,30,101440,100260,99120,94.67,0,4.1,5.53,6.22,6.94,7.66,8.44,9.08,9.65,10.14,245.06,248.77,251.19,252.45000000000002,253.12,253.29,253.15,252.91,252.65,19.59,19.87,19.97,19.95,19.93,19.91,19.89,19.88,19.76,N/A,N/A +2012,12,24,15,30,101430,100250,99110,96.10000000000001,0,3.2,4.47,5.2,6.37,7.26,7.8500000000000005,8.32,8.73,9.36,245.53,248.46,250.81,254.06,255.76000000000002,255.88,255.67000000000002,255.33,254.57,19.38,19.650000000000002,19.78,19.85,19.84,19.77,19.73,19.69,19.580000000000002,N/A,N/A +2012,12,24,16,30,101410,100230,99080,97.33,0,3.1,4.48,5.34,6.2700000000000005,6.92,7.2700000000000005,7.57,7.84,8.25,257.26,258.35,259.37,260.6,260.94,260.37,259.83,259.31,258.81,19.150000000000002,19.39,19.55,19.66,19.7,19.7,19.650000000000002,19.57,19.35,N/A,N/A +2012,12,24,17,30,101360,100180,99030,98.14,0,1.69,2.69,3.09,3.35,3.48,3.5100000000000002,3.46,3.41,3.36,267.04,269.61,271.99,275.97,280.07,284.28000000000003,288.13,291.5,294.82,19.22,19.31,19.330000000000002,19.31,19.28,19.22,19.14,19.05,18.93,N/A,N/A +2012,12,24,18,30,101330,100150,99000,99.28,0,1.61,2.11,2.33,2.25,2.11,1.93,1.93,1.97,2.4,346.12,340.67,335.94,330.28000000000003,324.61,319.21,311.14,302.87,291.35,18.64,18.66,18.75,18.91,18.95,18.91,18.91,18.91,18.830000000000002,N/A,N/A +2012,12,24,19,30,101310,100120,98980,94.54,0,1.96,2.29,2.48,2.66,2.71,2.67,2.45,2.23,1.7,14.82,7.45,2.68,358.35,352.98,346.91,340.27,334.55,318.90000000000003,19.03,18.8,18.68,18.56,18.51,18.52,18.6,18.7,18.66,N/A,N/A +2012,12,24,20,30,101250,100060,98920,91.22,0,2.2,2.35,2.41,2.5300000000000002,2.46,2.2600000000000002,1.95,1.67,0.89,50.980000000000004,47.08,42.67,34.31,28.04,23.62,21.72,20.72,20.02,19.02,18.77,18.68,18.68,18.7,18.73,18.73,18.72,18.66,N/A,N/A +2012,12,24,21,30,101210,100030,98880,91.74,0,1.57,1.59,1.59,1.61,1.53,1.36,1.11,0.89,0.56,83.88,76.88,69.73,55.7,47.31,43.300000000000004,47.64,52.92,93.39,19,18.78,18.73,18.830000000000002,18.87,18.88,18.86,18.830000000000002,18.69,N/A,N/A +2012,12,24,22,30,101150,99960,98820,95.43,0,2.74,2.71,2.61,2.46,2.32,2.17,2.05,1.96,1.83,112.13,106.04,100.89,93.71000000000001,89.28,86.59,89.84,94.04,109.09,18.91,18.830000000000002,18.85,18.92,18.96,18.97,18.94,18.89,18.72,N/A,N/A +2012,12,24,23,30,101120,99940,98800,94.58,0,2.8000000000000003,3.11,3.17,3.09,2.98,2.86,2.66,2.46,1.98,106.88,108.7,110.24000000000001,112.10000000000001,113.49000000000001,114.56,116.10000000000001,117.55,128.21,18.97,19.13,19.21,19.16,19.06,18.91,18.79,18.68,18.66,N/A,N/A +2012,12,25,0,30,101090,99910,98770,96.48,0,2.17,2.25,2.19,2.21,2.29,2.4,2.45,2.48,2.5,115.62,129.15,136.02,139.17000000000002,144.24,151,153.12,153.82,156.02,19.26,19.25,19.18,18.96,18.79,18.650000000000002,18.54,18.45,18.29,N/A,N/A +2012,12,25,1,30,101060,99880,98740,97.14,0,2.79,2.63,2.42,2.4,2.4,2.42,2.44,2.47,2.5100000000000002,110.47,123.31,129.45,132.52,137.89000000000001,145.25,147.98,149.05,151.25,19.2,19.38,19.400000000000002,19.18,19.01,18.86,18.75,18.67,18.48,N/A,N/A +2012,12,25,2,30,101020,99840,98700,97.03,0,2.64,2.95,2.9,2.91,2.9,2.87,2.92,2.98,3.43,130.34,137.97,141.84,143.89000000000001,144.92000000000002,145.27,146.67000000000002,148.27,157.26,19.25,19.55,19.62,19.43,19.25,19.07,18.97,18.900000000000002,19.47,N/A,N/A +2012,12,25,3,30,100970,99790,98650,97.98,0,3.63,4.24,4.38,4.37,4.41,4.49,4.61,4.72,4.87,116.4,120.55,124.51,130.3,134.88,138.75,143.1,147.27,155.81,18.89,18.87,18.900000000000002,18.96,19.07,19.22,19.46,19.71,19.91,N/A,N/A +2012,12,25,4,30,100860,99690,98550,98.59,0,5.44,6.16,6.36,6.390000000000001,6.390000000000001,6.36,6.390000000000001,6.42,6.69,116.91,122.72,130.83,145,152.73,156.83,160.38,163.48,169,18.73,18.64,18.86,19.44,19.830000000000002,20.12,20.17,20.17,20.1,N/A,N/A +2012,12,25,5,30,100850,99670,98540,94.97,14.3,5.48,7.29,8.25,9.21,10.4,11.9,12.81,13.450000000000001,13.4,149.4,153.02,156.61,162.81,169.72,177.77,182.36,185.46,186.32,19.47,19.53,19.6,19.77,19.900000000000002,20,20.09,20.18,20.080000000000002,N/A,N/A +2012,12,25,6,30,100850,99680,98550,91.95,0,5.95,7.74,8.55,9.33,10.05,10.74,11.38,11.96,12.58,182.46,181.85,182.20000000000002,183.83,186.09,188.76,190.78,192.54,193.77,19.73,19.77,19.77,19.830000000000002,20.01,20.26,20.34,20.37,20.240000000000002,N/A,N/A +2012,12,25,7,30,100800,99630,98500,93.92,0,6.38,8.2,9.19,10.34,11.46,12.58,13.31,13.86,14.51,188.37,189.14000000000001,189.75,190.67000000000002,191.54,192.39000000000001,193,193.5,194.16,19.27,19.19,19.28,19.67,20.02,20.330000000000002,20.43,20.46,20.32,N/A,N/A +2012,12,25,8,30,100730,99550,98420,97.93,0,2.61,4.39,5.69,7.25,8.53,9.540000000000001,10.46,11.33,12.76,202.35,197.47,194.1,192.67000000000002,191.74,191.24,191.09,191.05,191.13,18.490000000000002,18.85,19.14,19.52,19.7,19.76,19.89,20.02,20.16,N/A,N/A +2012,12,25,9,30,100700,99530,98400,90.07000000000001,0,7.16,9.09,10.040000000000001,11.02,11.86,12.620000000000001,13.17,13.61,14.040000000000001,183.94,184.88,185.51,185.84,186.06,186.16,186.59,187.11,188.09,20.06,20.63,20.900000000000002,21.080000000000002,21.16,21.17,21.17,21.17,21.1,N/A,N/A +2012,12,25,10,30,100630,99460,98330,93.23,0,4.2700000000000005,6.09,7.1000000000000005,8.36,9.58,10.8,11.91,12.950000000000001,14.42,173.18,177.71,180.35,181.72,182.71,183.39000000000001,184.02,184.61,186.19,19.48,19.87,20.02,20.09,20.150000000000002,20.21,20.26,20.3,20.34,N/A,N/A +2012,12,25,11,30,100660,99490,98360,90.4,0,9.09,11.05,11.950000000000001,12.84,13.63,14.39,15.11,15.790000000000001,16.94,185.36,186.6,187.5,188.52,189.36,190.08,190.61,191.03,191.70000000000002,19.990000000000002,20.22,20.29,20.35,20.38,20.400000000000002,20.39,20.38,20.31,N/A,N/A +2012,12,25,12,30,100490,99330,98190,92.93,0,3.27,4.96,5.72,6.5200000000000005,7.4,8.4,9.42,10.43,12.290000000000001,164.20000000000002,166.63,169.16,173,175.86,178.02,178.96,179.44,179.58,19.68,20.09,20.12,19.91,19.75,19.62,19.490000000000002,19.37,19.14,N/A,N/A +2012,12,25,13,30,100490,99330,98200,89.73,0,8.91,10.82,11.72,12.57,13.3,13.97,14.540000000000001,15.06,15.85,178.32,177.94,177.6,177.18,176.84,176.54,176.46,176.47,177.32,20.13,20.35,20.400000000000002,20.42,20.42,20.400000000000002,20.37,20.34,20.21,N/A,N/A +2012,12,25,14,30,100520,99350,98220,91.2,0,8.2,10.14,11.1,12.08,12.97,13.83,14.620000000000001,15.35,16.51,180.07,179.88,179.73,179.54,179.38,179.25,179.19,179.14000000000001,179.37,19.84,20.05,20.12,20.17,20.21,20.25,20.27,20.27,20.22,N/A,N/A +2012,12,25,15,30,100440,99270,98140,91.13,5.9,8.81,10.82,11.75,12.72,13.65,14.59,15.59,16.59,18.57,177.48,178.70000000000002,179.48,180.41,181.41,182.52,183.85,185.22,187.94,19.84,19.91,19.900000000000002,19.87,19.830000000000002,19.79,19.75,19.72,19.57,N/A,N/A +2012,12,25,16,30,100440,99270,98140,90.03,0,11.85,14.22,15.26,16.29,17.16,17.96,18.68,19.34,20.54,190.79,191.71,192.18,192.66,193.06,193.43,193.76,194.07,194.69,20.080000000000002,20.22,20.23,20.21,20.17,20.12,20.06,19.990000000000002,19.830000000000002,N/A,N/A +2012,12,25,17,30,100280,99120,97990,90.10000000000001,0,15.77,18.26,19.26,20.12,20.84,21.48,22.080000000000002,22.63,23.59,194.54,194.84,195.14000000000001,195.53,195.92000000000002,196.34,196.83,197.33,198.52,20.080000000000002,20.18,20.17,20.1,20.03,19.95,19.87,19.8,19.650000000000002,N/A,N/A +2012,12,25,18,30,100390,99220,98100,89.94,1.5,14.51,17.080000000000002,18.07,18.94,19.69,20.37,20.990000000000002,21.56,22.57,214.73000000000002,215.78,216.23000000000002,216.73000000000002,217.18,217.63,218.07,218.48000000000002,219.28,20.1,20.22,20.21,20.14,20.080000000000002,19.990000000000002,19.900000000000002,19.81,19.61,N/A,N/A +2012,12,25,19,30,100420,99250,98120,90.82000000000001,0,10.790000000000001,12.780000000000001,13.64,14.44,15.08,15.610000000000001,15.860000000000001,15.99,15.56,237.64000000000001,238.55,239.28,240.36,241.51,242.82,244.57,246.36,254.17000000000002,19.95,20.06,20.080000000000002,20.09,20.12,20.16,20.21,20.28,20.54,N/A,N/A +2012,12,25,20,30,100480,99310,98180,79.87,0,10.02,11.84,12.6,13.280000000000001,13.83,14.290000000000001,14.66,14.98,15.44,308.16,306.5,305.56,304.78000000000003,304.26,303.92,303.66,303.44,302.68,20.01,20.16,20.17,20.14,20.080000000000002,19.990000000000002,19.87,19.740000000000002,19.44,N/A,N/A +2012,12,25,21,30,100570,99390,98260,58.65,0,12.01,13.91,14.66,15.3,15.83,16.29,16.7,17.05,17.61,307.74,307.40000000000003,307.17,306.92,306.7,306.48,306.27,306.08,305.68,19.92,19.98,19.92,19.81,19.68,19.54,19.37,19.2,18.830000000000002,N/A,N/A +2012,12,25,22,30,100700,99520,98380,51.89,0,12.26,13.780000000000001,14.370000000000001,14.8,15.16,15.47,15.75,16,16.45,304.08,304.47,304.69,304.91,305.09000000000003,305.26,305.41,305.55,305.76,19.22,19.150000000000002,19.04,18.88,18.72,18.55,18.37,18.2,17.830000000000002,N/A,N/A +2012,12,25,23,30,100830,99640,98490,55.72,0,13.8,15.48,16.06,16.45,16.740000000000002,16.97,17.150000000000002,17.31,17.57,305.91,305.78000000000003,305.76,305.76,305.75,305.75,305.75,305.76,305.76,17.830000000000002,17.56,17.400000000000002,17.2,17.01,16.82,16.62,16.43,16.04,N/A,N/A +2012,12,26,0,30,100950,99750,98590,76.75,0,15.99,17.650000000000002,18.16,18.42,18.59,18.69,18.740000000000002,18.77,18.76,326.23,326.22,326.12,325.98,325.85,325.72,325.57,325.44,325.14,15.57,15.040000000000001,14.82,14.58,14.36,14.16,13.950000000000001,13.76,13.36,N/A,N/A +2012,12,26,1,30,101150,99940,98750,81.77,0,15.34,16.81,17.32,17.580000000000002,17.76,17.87,17.94,17.990000000000002,18.03,314.27,314.35,314.49,314.63,314.75,314.86,314.97,315.08,315.28000000000003,12.9,12.19,11.91,11.64,11.41,11.19,10.97,10.77,10.36,N/A,N/A +2012,12,26,2,30,101300,100070,98870,82.72,0,16.72,18.23,18.67,18.85,18.95,19,19.01,19,18.93,318.17,318.34000000000003,318.43,318.52,318.6,318.66,318.73,318.8,318.94,10.19,9.26,8.94,8.67,8.43,8.22,8,7.8,7.4,N/A,N/A +2012,12,26,3,30,101410,100180,98970,87.37,0,14.23,15.44,15.81,16.02,16.15,16.240000000000002,16.3,16.35,16.4,327.78000000000003,327.5,327.40000000000003,327.33,327.28000000000003,327.22,327.18,327.14,327.06,8.9,7.98,7.65,7.37,7.12,6.9,6.66,6.45,6.03,N/A,N/A +2012,12,26,4,30,101510,100270,99060,85.96000000000001,0,14.22,15.39,15.700000000000001,15.85,15.94,16,16.03,16.05,16.06,331.69,331.33,331.08,330.85,330.63,330.43,330.22,330.02,329.63,7.57,6.59,6.25,5.98,5.73,5.51,5.28,5.07,4.66,N/A,N/A +2012,12,26,5,30,101630,100380,99160,84.72,0,14.41,15.66,16,16.19,16.31,16.39,16.44,16.48,16.53,330.85,330.65000000000003,330.52,330.40000000000003,330.28000000000003,330.17,330.07,329.97,329.77,6.59,5.5600000000000005,5.22,4.94,4.69,4.46,4.23,4.0200000000000005,3.61,N/A,N/A +2012,12,26,6,30,101730,100470,99250,87.39,0,13.5,14.58,14.85,14.99,15.07,15.13,15.16,15.18,15.19,331.42,331.41,331.43,331.46,331.49,331.51,331.54,331.57,331.63,6.1000000000000005,5.05,4.7,4.42,4.16,3.94,3.71,3.49,3.08,N/A,N/A +2012,12,26,7,30,101820,100560,99340,86.99,0,13.48,14.55,14.81,14.950000000000001,15.030000000000001,15.09,15.120000000000001,15.14,15.15,334.24,334.2,334.16,334.13,334.1,334.07,334.04,334.02,333.97,5.74,4.69,4.34,4.0600000000000005,3.81,3.58,3.36,3.14,2.73,N/A,N/A +2012,12,26,8,30,101880,100620,99400,87.56,0,13.86,14.92,15.200000000000001,15.33,15.41,15.46,15.48,15.5,15.5,335.7,335.71,335.7,335.7,335.7,335.69,335.7,335.7,335.7,5.46,4.38,4.0200000000000005,3.73,3.48,3.25,3.0300000000000002,2.82,2.41,N/A,N/A +2012,12,26,9,30,101930,100670,99440,89.59,0,13.24,14.27,14.540000000000001,14.67,14.75,14.8,14.82,14.83,14.83,337.7,337.77,337.81,337.86,337.91,337.94,337.99,338.03000000000003,338.13,5.3100000000000005,4.24,3.88,3.6,3.34,3.12,2.89,2.68,2.27,N/A,N/A +2012,12,26,10,30,102000,100730,99510,90.25,0,12.32,13.22,13.44,13.55,13.6,13.64,13.65,13.65,13.63,339.02,339.09000000000003,339.13,339.17,339.21,339.24,339.28000000000003,339.32,339.40000000000003,5.18,4.16,3.81,3.54,3.29,3.06,2.84,2.63,2.23,N/A,N/A +2012,12,26,11,30,102060,100800,99570,90.38,0,11.65,12.46,12.65,12.74,12.780000000000001,12.81,12.81,12.81,12.780000000000001,340.64,340.71,340.76,340.81,340.85,340.88,340.93,340.97,341.05,5.08,4.08,3.74,3.47,3.22,3,2.7800000000000002,2.57,2.17,N/A,N/A +2012,12,26,12,30,102130,100860,99630,89.52,0,11.01,11.76,11.92,12,12.030000000000001,12.05,12.05,12.05,12.01,342.26,342.32,342.37,342.40000000000003,342.45,342.49,342.53000000000003,342.57,342.66,4.98,4.01,3.67,3.4,3.16,2.94,2.72,2.5100000000000002,2.11,N/A,N/A +2012,12,26,13,30,102180,100910,99680,89.71000000000001,0,10.370000000000001,11.05,11.200000000000001,11.27,11.290000000000001,11.31,11.31,11.3,11.27,344.2,344.38,344.49,344.59000000000003,344.68,344.77,344.86,344.95,345.14,4.9,3.96,3.64,3.38,3.13,2.92,2.7,2.49,2.09,N/A,N/A +2012,12,26,14,30,102240,100970,99740,90.66,0,9.72,10.31,10.43,10.48,10.5,10.5,10.49,10.48,10.44,345.47,345.65000000000003,345.75,345.84000000000003,345.94,346.02,346.11,346.2,346.37,4.97,4.0600000000000005,3.74,3.48,3.24,3.0300000000000002,2.81,2.61,2.21,N/A,N/A +2012,12,26,15,30,102220,100960,99730,90.81,0,10.76,11.450000000000001,11.59,11.66,11.68,11.69,11.68,11.67,11.63,346.11,346.21,346.28000000000003,346.34000000000003,346.40000000000003,346.46,346.52,346.59000000000003,346.71,5.3100000000000005,4.37,4.04,3.7800000000000002,3.54,3.3200000000000003,3.11,2.91,2.5100000000000002,N/A,N/A +2012,12,26,16,30,102240,100980,99750,89.26,0,9.73,10.33,10.46,10.52,10.540000000000001,10.55,10.55,10.540000000000001,10.5,346.16,346.25,346.32,346.37,346.42,346.47,346.51,346.56,346.65000000000003,5.7700000000000005,4.89,4.57,4.3100000000000005,4.08,3.86,3.65,3.45,3.0500000000000003,N/A,N/A +2012,12,26,17,30,102220,100960,99730,86.94,0,9.3,9.86,9.98,10.03,10.05,10.06,10.06,10.040000000000001,10.01,343.92,344.01,344.08,344.14,344.2,344.25,344.31,344.36,344.48,6.3500000000000005,5.5,5.2,4.95,4.71,4.5,4.29,4.09,3.69,N/A,N/A +2012,12,26,18,30,102240,100980,99760,83.05,0,8.43,8.92,9.01,9.05,9.07,9.07,9.07,9.05,9.02,342.49,342.62,342.72,342.8,342.88,342.95,343.03000000000003,343.11,343.26,7.03,6.23,5.94,5.7,5.46,5.26,5.05,4.84,4.45,N/A,N/A +2012,12,26,19,30,102220,100960,99750,79.55,0,8.69,9.200000000000001,9.31,9.35,9.36,9.370000000000001,9.36,9.34,9.31,343.35,343.52,343.62,343.72,343.82,343.90000000000003,344,344.09000000000003,344.27,7.74,6.95,6.67,6.43,6.2,6,5.78,5.58,5.19,N/A,N/A +2012,12,26,20,30,102160,100910,99700,76.2,0,8.9,9.44,9.540000000000001,9.58,9.6,9.6,9.6,9.58,9.540000000000001,345.27,345.44,345.55,345.66,345.76,345.85,345.96,346.06,346.28000000000003,8.45,7.68,7.4,7.16,6.93,6.73,6.5200000000000005,6.32,5.92,N/A,N/A +2012,12,26,21,30,102170,100920,99710,75.02,0,7.29,7.69,7.78,7.82,7.83,7.84,7.84,7.83,7.8100000000000005,348.47,348.76,348.93,349.08,349.23,349.37,349.51,349.65000000000003,349.92,9.13,8.43,8.17,7.930000000000001,7.71,7.51,7.3,7.1000000000000005,6.7,N/A,N/A +2012,12,26,22,30,102150,100910,99700,69.65,0,6.21,6.51,6.5600000000000005,6.57,6.57,6.5600000000000005,6.55,6.54,6.5,357.04,356.95,356.88,356.82,356.77,356.72,356.67,356.62,356.53000000000003,9.61,8.96,8.71,8.48,8.26,8.06,7.8500000000000005,7.65,7.26,N/A,N/A +2012,12,26,23,30,102140,100900,99690,68.98,0,6.32,6.61,6.65,6.65,6.640000000000001,6.62,6.6000000000000005,6.58,6.5200000000000005,3.7,3.8200000000000003,3.88,3.93,3.99,4.03,4.08,4.12,4.22,9.790000000000001,9.15,8.9,8.67,8.46,8.26,8.05,7.86,7.46,N/A,N/A +2012,12,27,0,30,102160,100920,99710,70.42,0,6.74,7.0600000000000005,7.1000000000000005,7.1000000000000005,7.09,7.07,7.04,7.01,6.94,16.240000000000002,16.34,16.4,16.44,16.490000000000002,16.53,16.580000000000002,16.63,16.73,9.72,9.07,8.81,8.58,8.36,8.16,7.95,7.76,7.36,N/A,N/A +2012,12,27,1,30,102160,100910,99700,70.47,0,6.61,6.9,6.93,6.93,6.91,6.890000000000001,6.8500000000000005,6.82,6.74,23.330000000000002,23.54,23.67,23.79,23.91,24.01,24.13,24.240000000000002,24.47,9.52,8.86,8.6,8.38,8.16,7.96,7.75,7.55,7.16,N/A,N/A +2012,12,27,2,30,102160,100910,99700,70.57000000000001,0,6.34,6.61,6.640000000000001,6.63,6.61,6.59,6.5600000000000005,6.5200000000000005,6.45,31.220000000000002,31.68,31.98,32.25,32.53,32.77,33.05,33.32,33.87,9.46,8.81,8.55,8.33,8.11,7.91,7.7,7.51,7.12,N/A,N/A +2012,12,27,3,30,102130,100890,99680,72.28,0,6.36,6.66,6.7,6.7,6.69,6.68,6.66,6.63,6.58,37.92,38.550000000000004,38.93,39.29,39.64,39.96,40.300000000000004,40.63,41.32,9.68,9.03,8.78,8.55,8.33,8.13,7.930000000000001,7.73,7.34,N/A,N/A +2012,12,27,4,30,102100,100860,99660,75.58,0,5.94,6.21,6.26,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.25,6.24,6.2,46.26,47.1,47.61,48.08,48.53,48.95,49.39,49.800000000000004,50.64,10.11,9.48,9.23,9.01,8.790000000000001,8.6,8.38,8.19,7.79,N/A,N/A +2012,12,27,5,30,102090,100850,99640,75.48,0,5.8500000000000005,6.11,6.15,6.16,6.15,6.140000000000001,6.13,6.11,6.08,54.43,55.39,56,56.56,57.09,57.57,58.1,58.59,59.58,10.450000000000001,9.84,9.6,9.38,9.16,8.96,8.75,8.56,8.17,N/A,N/A +2012,12,27,6,30,102070,100830,99630,75.92,0,5.13,5.4,5.46,5.49,5.5200000000000005,5.54,5.55,5.5600000000000005,5.58,65.2,66.58,67.41,68.18,68.89,69.52,70.19,70.81,72.03,11.08,10.52,10.290000000000001,10.08,9.86,9.67,9.46,9.26,8.870000000000001,N/A,N/A +2012,12,27,7,30,102050,100820,99630,77.75,0,5.04,5.24,5.26,5.26,5.25,5.24,5.22,5.2,5.16,81.8,82.59,83.17,83.71000000000001,84.23,84.71000000000001,85.23,85.72,86.72,11.56,11.01,10.78,10.57,10.35,10.16,9.950000000000001,9.76,9.36,N/A,N/A +2012,12,27,8,30,102020,100800,99600,82.68,0,5.7700000000000005,6.11,6.18,6.21,6.23,6.25,6.25,6.25,6.25,88.4,89.88,90.55,91.15,91.67,92.14,92.63,93.07000000000001,93.94,12.09,11.540000000000001,11.31,11.09,10.88,10.68,10.47,10.27,9.88,N/A,N/A +2012,12,27,9,30,101990,100760,99570,76.12,0,5.48,5.78,5.8500000000000005,5.88,5.9,5.92,5.92,5.93,5.93,104.87,105.59,106.03,106.43,106.8,107.12,107.46000000000001,107.77,108.38,12.64,12.11,11.88,11.67,11.450000000000001,11.26,11.05,10.85,10.450000000000001,N/A,N/A +2012,12,27,10,30,101910,100690,99500,77.64,0,6.41,6.78,6.86,6.9,6.92,6.93,6.94,6.95,6.95,97.53,97.93,98.22,98.48,98.75,98.99000000000001,99.25,99.51,100.03,13.01,12.48,12.26,12.040000000000001,11.83,11.64,11.43,11.24,10.85,N/A,N/A +2012,12,27,11,30,101880,100660,99480,78.19,0.4,5.93,6.3100000000000005,6.4,6.45,6.49,6.51,6.53,6.55,6.58,107.9,109.32000000000001,110.03,110.69,111.31,111.88,112.48,113.04,114.19,13.700000000000001,13.200000000000001,12.99,12.77,12.57,12.38,12.17,11.98,11.59,N/A,N/A +2012,12,27,12,30,101850,100630,99440,81.28,2.9000000000000004,7.46,7.9,8.01,8.06,8.08,8.09,8.1,8.1,8.08,89.47,90.47,91.13,91.76,92.34,92.86,93.41,93.92,94.99,13.66,13.13,12.91,12.700000000000001,12.5,12.3,12.1,11.91,11.53,N/A,N/A +2012,12,27,13,30,101790,100570,99390,81.19,0,7.55,8.1,8.23,8.3,8.34,8.370000000000001,8.39,8.4,8.4,104.92,105.35000000000001,105.57000000000001,105.77,105.97,106.14,106.33,106.5,106.85000000000001,14.17,13.66,13.43,13.22,13.01,12.81,12.6,12.4,12.01,N/A,N/A +2012,12,27,14,30,101780,100560,99380,80.68,0,8.1,8.69,8.84,8.91,8.96,8.99,9.01,9.02,9.02,103.02,103.60000000000001,103.9,104.16,104.42,104.65,104.89,105.11,105.58,14.59,14.08,13.870000000000001,13.65,13.44,13.25,13.040000000000001,12.85,12.46,N/A,N/A +2012,12,27,15,30,101750,100540,99360,83.73,0,8.32,8.92,9.09,9.17,9.23,9.27,9.31,9.33,9.36,95.58,96.41,96.83,97.21000000000001,97.54,97.84,98.14,98.42,98.98,14.83,14.33,14.120000000000001,13.9,13.69,13.5,13.3,13.1,12.71,N/A,N/A +2012,12,27,16,30,101700,100490,99320,82.71000000000001,0,8.91,9.61,9.8,9.89,9.950000000000001,9.99,10.02,10.03,10.040000000000001,99.08,99.16,99.24000000000001,99.33,99.41,99.5,99.58,99.66,99.85000000000001,15.120000000000001,14.620000000000001,14.41,14.19,13.98,13.790000000000001,13.58,13.39,13,N/A,N/A +2012,12,27,17,30,101630,100420,99250,85.02,0,9.82,10.69,10.92,11.05,11.14,11.200000000000001,11.25,11.28,11.33,99.58,100,100.26,100.52,100.75,100.97,101.19,101.4,101.82000000000001,15.43,14.94,14.72,14.51,14.31,14.11,13.91,13.72,13.33,N/A,N/A +2012,12,27,18,30,101580,100380,99210,86.29,1.1,10.92,11.91,12.16,12.3,12.38,12.44,12.47,12.5,12.52,102.68,103.08,103.31,103.52,103.72,103.9,104.10000000000001,104.28,104.65,15.66,15.17,14.96,14.74,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A +2012,12,27,19,30,101540,100340,99170,85.49,0,10.64,11.65,11.92,12.08,12.18,12.25,12.3,12.34,12.38,107.27,107.61,107.8,107.99000000000001,108.16,108.31,108.48,108.63,108.94,16.21,15.76,15.55,15.34,15.13,14.94,14.74,14.55,14.16,N/A,N/A +2012,12,27,20,30,101500,100300,99140,86.09,0,11.36,12.43,12.76,12.93,13.040000000000001,13.120000000000001,13.17,13.200000000000001,13.23,110.16,110.32000000000001,110.45,110.58,110.7,110.81,110.93,111.05,111.31,16.55,16.12,15.92,15.71,15.5,15.31,15.11,14.92,14.530000000000001,N/A,N/A +2012,12,27,21,30,101420,100220,99060,90.68,1.1,11.08,12.23,12.56,12.76,12.9,13,13.07,13.13,13.200000000000001,112.11,112.68,112.93,113.15,113.35000000000001,113.54,113.74000000000001,113.92,114.29,16.86,16.45,16.26,16.05,15.85,15.67,15.47,15.290000000000001,14.9,N/A,N/A +2012,12,27,22,30,101360,100170,99010,89.55,4.800000000000001,12.09,13.23,13.52,13.65,13.72,13.76,13.76,13.76,13.72,114.71000000000001,114.94,115.11,115.31,115.52,115.73,115.99000000000001,116.23,116.88,17.18,16.79,16.6,16.4,16.21,16.02,15.83,15.65,15.280000000000001,N/A,N/A +2012,12,27,23,30,101300,100110,98950,91.72,0,10.14,11.01,11.22,11.33,11.4,11.46,11.56,11.69,12.43,104.94,105.44,105.86,106.38,107.05,107.77,108.99000000000001,110.51,118.67,17.41,17.05,16.88,16.69,16.51,16.34,16.17,16.03,15.88,N/A,N/A +2012,12,28,0,30,101270,100080,98920,91.7,5.5,11.42,12.57,12.88,13.06,13.19,13.290000000000001,13.370000000000001,13.44,13.68,114.8,115.13,115.41,115.72,116.04,116.38,116.8,117.22,118.53,17.82,17.490000000000002,17.32,17.12,16.94,16.76,16.57,16.4,16.05,N/A,N/A +2012,12,28,1,30,101250,100060,98910,93.45,0.4,8.34,9.61,10.1,10.34,10.620000000000001,10.94,11.21,11.44,11.83,121.44,122.63,123.61,124.89,126.29,127.81,129.49,131.1,134.34,18.36,18.12,17.98,17.8,17.66,17.55,17.44,17.34,17.11,N/A,N/A +2012,12,28,2,30,101210,100020,98870,91.04,0,8.41,9.5,9.89,10.23,10.52,10.790000000000001,11.040000000000001,11.28,11.77,125.54,126.14,126.57000000000001,127.09,127.65,128.24,128.93,129.6,131.38,18.740000000000002,18.54,18.400000000000002,18.25,18.1,17.96,17.81,17.67,17.400000000000002,N/A,N/A +2012,12,28,3,30,101190,100010,98860,90.73,0.7000000000000001,8.3,9.51,9.97,10.36,10.71,11.02,11.31,11.58,12.11,140.37,140.91,141.43,142.13,142.88,143.69,144.64000000000001,145.56,147.66,19.06,18.94,18.86,18.740000000000002,18.63,18.52,18.41,18.3,18.07,N/A,N/A +2012,12,28,4,30,101150,99970,98820,91.99,0.4,8.27,9.63,10.17,10.64,11.08,11.47,11.86,12.21,12.86,145.22,145.79,146.38,147.1,147.83,148.56,149.28,149.95000000000002,151.17000000000002,19.25,19.16,19.080000000000002,18.96,18.85,18.73,18.6,18.48,18.22,N/A,N/A +2012,12,28,5,30,101100,99920,98780,93.36,1.8,7.58,9.03,9.68,10.38,11.05,11.72,12.39,13.030000000000001,14.24,154.92000000000002,155.61,156.20000000000002,156.92000000000002,157.64000000000001,158.37,159.1,159.78,160.96,19.19,19.11,19.04,18.95,18.86,18.78,18.68,18.6,18.43,N/A,N/A +2012,12,28,6,30,101080,99900,98760,90.46000000000001,0,9.18,10.89,11.67,12.42,13.08,13.68,14.24,14.74,15.59,154.75,155.35,155.76,156.16,156.5,156.8,157.11,157.4,158.21,19.73,19.73,19.68,19.6,19.52,19.44,19.34,19.25,19.04,N/A,N/A +2012,12,28,7,30,101030,99850,98710,88.51,0,10.17,12.1,12.92,13.69,14.370000000000001,15.01,15.6,16.15,17.150000000000002,159.67000000000002,160.17000000000002,160.59,161.09,161.56,162.04,162.49,162.9,163.61,20.14,20.22,20.2,20.16,20.11,20.05,19.97,19.900000000000002,19.71,N/A,N/A +2012,12,28,8,30,101020,99850,98710,90.46000000000001,0,9.84,11.57,12.33,13.02,13.61,14.17,14.69,15.17,16.080000000000002,163.79,164.18,164.48,164.92000000000002,165.35,165.83,166.31,166.78,167.78,20.13,20.240000000000002,20.25,20.22,20.18,20.12,20.05,19.97,19.77,N/A,N/A +2012,12,28,9,30,100960,99790,98650,91.27,0,9.31,11.14,11.94,12.69,13.34,13.94,14.51,15.030000000000001,16.03,164.71,165.20000000000002,165.66,166.32,166.98,167.68,168.42000000000002,169.12,170.47,20.17,20.28,20.29,20.26,20.23,20.18,20.13,20.07,19.92,N/A,N/A +2012,12,28,10,30,100940,99770,98630,89.97,0,9.09,10.94,11.76,12.530000000000001,13.200000000000001,13.81,14.370000000000001,14.89,15.81,166.65,167.23,167.72,168.31,168.86,169.41,169.94,170.44,171.39000000000001,20.36,20.5,20.51,20.48,20.43,20.36,20.29,20.21,20.03,N/A,N/A +2012,12,28,11,30,100890,99720,98580,90.36,0,10.27,12.19,13.01,13.77,14.44,15.05,15.620000000000001,16.15,17.13,171.84,172.18,172.45000000000002,172.81,173.18,173.57,173.96,174.35,175.14000000000001,20.37,20.51,20.53,20.5,20.46,20.41,20.34,20.27,20.1,N/A,N/A +2012,12,28,12,30,100870,99700,98570,89.8,0.7000000000000001,10.78,12.870000000000001,13.77,14.620000000000001,15.36,16.04,16.66,17.21,18.2,175.58,175.86,176,176.18,176.34,176.48,176.61,176.73,176.92000000000002,20.490000000000002,20.67,20.69,20.68,20.650000000000002,20.6,20.53,20.46,20.27,N/A,N/A +2012,12,28,13,30,100810,99640,98510,89.5,0.4,11.14,13.24,14.15,14.950000000000001,15.65,16.3,16.89,17.42,18.43,176.17000000000002,176.12,176.38,176.64000000000001,176.89000000000001,177.13,177.36,177.58,178.04,20.56,20.75,20.78,20.76,20.72,20.68,20.61,20.54,20.37,N/A,N/A +2012,12,28,14,30,100900,99730,98590,92.79,99.2,8.89,10.46,11.23,11.97,12.61,13.23,13.84,14.44,15.620000000000001,192.1,191.78,191.4,190.73,189.99,189.02,187.87,186.63,184,19.85,19.87,19.84,19.740000000000002,19.66,19.57,19.48,19.38,19.19,N/A,N/A +2012,12,28,15,30,100990,99820,98680,98.78,566.9,9.5,9.97,10.200000000000001,10.46,10.68,10.88,11.05,11.19,11.4,301.94,293.14,285.98,279.35,274.25,270.4,267.46,265.23,262.25,18.45,18.62,18.8,18.93,19,18.96,18.900000000000002,18.830000000000002,18.650000000000002,N/A,N/A +2012,12,28,16,30,101050,99850,98690,93.94,24.5,9.78,10.51,10.72,10.78,10.82,10.82,10.82,10.82,10.89,322.88,323.3,323.26,323.22,323.17,323.12,323.05,322.97,322.73,15.8,15.34,15.14,14.93,14.74,14.55,14.36,14.19,13.84,N/A,N/A +2012,12,28,17,30,101030,99820,98650,91.52,0,11.01,11.88,12.09,12.17,12.21,12.23,12.23,12.23,12.23,328.09000000000003,328.03000000000003,328.02,328,327.97,327.94,327.91,327.87,327.74,14.71,14.16,13.94,13.73,13.52,13.33,13.14,12.96,12.58,N/A,N/A +2012,12,28,18,30,101070,99860,98690,90.98,2.6,10.540000000000001,11.35,11.55,11.64,11.69,11.72,11.73,11.75,11.8,326.72,326.77,326.77,326.75,326.73,326.69,326.66,326.62,326.5,14.34,13.77,13.55,13.34,13.14,12.950000000000001,12.76,12.57,12.21,N/A,N/A +2012,12,28,19,30,101150,99940,98770,88.13,0,9.55,10.25,10.450000000000001,10.540000000000001,10.59,10.63,10.65,10.66,10.69,330.33,330.2,330.12,330.04,329.97,329.90000000000003,329.82,329.74,329.58,14.39,13.85,13.620000000000001,13.41,13.200000000000001,13.01,12.81,12.620000000000001,12.24,N/A,N/A +2012,12,28,20,30,101210,100000,98830,86.12,0,10.41,11.28,11.53,11.66,11.75,11.81,11.86,11.89,11.950000000000001,327.72,327.75,327.77,327.78000000000003,327.79,327.8,327.81,327.82,327.84000000000003,14.58,14.030000000000001,13.8,13.58,13.370000000000001,13.18,12.97,12.780000000000001,12.39,N/A,N/A +2012,12,28,21,30,101310,100100,98930,83.76,0,11.05,11.96,12.22,12.35,12.44,12.49,12.530000000000001,12.55,12.58,331.12,331.06,331.01,330.96,330.92,330.88,330.84000000000003,330.8,330.73,14.18,13.6,13.36,13.13,12.91,12.71,12.5,12.31,11.91,N/A,N/A +2012,12,28,22,30,101400,100190,99000,83.89,0,12.63,13.72,14.030000000000001,14.18,14.280000000000001,14.35,14.39,14.42,14.44,332.88,332.95,332.98,333.02,333.05,333.08,333.11,333.14,333.2,13.13,12.450000000000001,12.19,11.950000000000001,11.73,11.53,11.31,11.11,10.71,N/A,N/A +2012,12,28,23,30,101500,100280,99090,85.23,0,11.73,12.700000000000001,12.98,13.120000000000001,13.21,13.280000000000001,13.33,13.36,13.41,338.89,338.85,338.8,338.75,338.71,338.66,338.62,338.58,338.49,12.21,11.5,11.23,10.99,10.76,10.55,10.33,10.13,9.73,N/A,N/A +2012,12,29,0,30,101610,100380,99190,85.55,0,12.22,13.26,13.56,13.72,13.82,13.89,13.94,13.98,14.02,340.33,340.34000000000003,340.36,340.37,340.38,340.39,340.41,340.42,340.44,11.57,10.82,10.540000000000001,10.290000000000001,10.06,9.85,9.63,9.43,9.02,N/A,N/A +2012,12,29,1,30,101710,100480,99280,86.3,0,12.07,13.05,13.33,13.46,13.55,13.61,13.64,13.67,13.69,342.2,342.1,342.06,342.03000000000003,342.01,341.99,341.98,341.97,341.95,10.78,10,9.71,9.46,9.22,9.01,8.790000000000001,8.59,8.18,N/A,N/A +2012,12,29,2,30,101810,100570,99370,86.31,0,12.47,13.46,13.74,13.89,13.97,14.040000000000001,14.07,14.09,14.11,341.32,341.65000000000003,341.88,342.1,342.3,342.48,342.66,342.84000000000003,343.19,10.27,9.44,9.15,8.89,8.65,8.44,8.22,8.02,7.61,N/A,N/A +2012,12,29,3,30,101890,100650,99450,88.38,0,11.3,12.18,12.43,12.57,12.66,12.72,12.76,12.790000000000001,12.82,346.8,347.11,347.22,347.29,347.35,347.40000000000003,347.44,347.48,347.54,9.9,9.09,8.790000000000001,8.53,8.290000000000001,8.07,7.84,7.640000000000001,7.23,N/A,N/A +2012,12,29,4,30,101970,100730,99520,88.74,0,11.69,12.59,12.84,12.97,13.05,13.1,13.13,13.15,13.16,344.82,344.90000000000003,345.02,345.14,345.26,345.37,345.48,345.59000000000003,345.79,9.49,8.64,8.33,8.07,7.83,7.61,7.38,7.18,6.76,N/A,N/A +2012,12,29,5,30,102040,100790,99580,89.71000000000001,0,10.46,11.19,11.38,11.47,11.53,11.56,11.58,11.59,11.59,346.97,347.49,347.65000000000003,347.78000000000003,347.89,347.98,348.05,348.12,348.26,8.78,7.97,7.67,7.42,7.18,6.97,6.75,6.54,6.140000000000001,N/A,N/A +2012,12,29,6,30,102160,100900,99680,82.29,0,13.31,14.35,14.620000000000001,14.74,14.81,14.86,14.870000000000001,14.88,14.870000000000001,356.90000000000003,356.68,356.51,356.35,356.19,356.06,355.90000000000003,355.76,355.46,7.6000000000000005,6.63,6.3100000000000005,6.04,5.8,5.58,5.36,5.16,4.76,N/A,N/A +2012,12,29,7,30,102250,101000,99770,81.2,0,12.94,13.96,14.22,14.35,14.42,14.47,14.5,14.51,14.51,1.43,1.18,1.01,0.85,0.7000000000000001,0.56,0.41000000000000003,0.26,359.97,7.26,6.3,5.98,5.71,5.47,5.26,5.04,4.84,4.44,N/A,N/A +2012,12,29,8,30,102310,101050,99830,81.07000000000001,0,12.61,13.6,13.86,13.99,14.07,14.120000000000001,14.15,14.17,14.19,359.08,358.82,358.66,358.51,358.37,358.24,358.11,357.99,357.75,7.11,6.15,5.83,5.57,5.33,5.11,4.89,4.69,4.29,N/A,N/A +2012,12,29,9,30,102400,101140,99920,78.04,0,12.96,13.96,14.21,14.32,14.38,14.42,14.44,14.450000000000001,14.44,1.33,1.1400000000000001,1.01,0.88,0.76,0.66,0.55,0.44,0.23,6.8,5.82,5.49,5.22,4.98,4.7700000000000005,4.55,4.3500000000000005,3.95,N/A,N/A +2012,12,29,10,30,102510,101250,100020,75.41,0,13.01,13.99,14.25,14.370000000000001,14.43,14.47,14.48,14.49,14.47,1.8800000000000001,1.73,1.6300000000000001,1.53,1.44,1.36,1.27,1.19,1.02,6.5,5.51,5.17,4.9,4.66,4.45,4.23,4.03,3.63,N/A,N/A +2012,12,29,11,30,102600,101330,100100,70.18,0,12.89,13.870000000000001,14.120000000000001,14.23,14.290000000000001,14.33,14.35,14.36,14.35,2.24,2.21,2.18,2.15,2.13,2.1,2.07,2.04,1.97,6.21,5.2,4.87,4.6000000000000005,4.36,4.15,3.93,3.73,3.34,N/A,N/A +2012,12,29,12,30,102670,101400,100170,68.39,0,12.67,13.63,13.870000000000001,13.99,14.06,14.1,14.13,14.14,14.15,4.33,4.5,4.61,4.7,4.78,4.8500000000000005,4.92,4.97,5.08,5.97,4.98,4.64,4.38,4.13,3.92,3.7,3.5,3.11,N/A,N/A +2012,12,29,13,30,102760,101490,100250,69.11,0,12.55,13.5,13.74,13.86,13.93,13.97,14,14.01,14.01,4.8,4.94,5.04,5.11,5.19,5.24,5.3,5.3500000000000005,5.44,5.82,4.8100000000000005,4.48,4.21,3.96,3.75,3.5300000000000002,3.33,2.94,N/A,N/A +2012,12,29,14,30,102840,101570,100330,69.91,0,11.92,12.790000000000001,13.01,13.13,13.19,13.24,13.26,13.280000000000001,13.290000000000001,6.76,6.8500000000000005,6.92,6.97,7.01,7.05,7.09,7.12,7.19,5.57,4.59,4.25,3.99,3.74,3.5300000000000002,3.31,3.11,2.72,N/A,N/A +2012,12,29,15,30,102860,101590,100350,69.3,0,10.74,11.49,11.68,11.78,11.84,11.88,11.91,11.93,11.97,1.75,1.86,1.93,2,2.07,2.12,2.17,2.22,2.3000000000000003,5.67,4.75,4.44,4.18,3.95,3.74,3.5300000000000002,3.33,2.95,N/A,N/A +2012,12,29,16,30,102900,101630,100390,67.44,0,9.64,10.290000000000001,10.46,10.55,10.61,10.66,10.69,10.72,10.77,359.46,359.38,359.34000000000003,359.3,359.26,359.24,359.2,359.17,359.11,6.3,5.44,5.14,4.89,4.66,4.46,4.25,4.05,3.67,N/A,N/A +2012,12,29,17,30,102880,101620,100390,66.02,0,9.61,10.26,10.43,10.53,10.59,10.63,10.67,10.69,10.74,354.52,354.51,354.51,354.52,354.53000000000003,354.55,354.56,354.57,354.61,7,6.16,5.86,5.61,5.38,5.17,4.96,4.7700000000000005,4.37,N/A,N/A +2012,12,29,18,30,102890,101630,100400,63.79,0,9.49,10.14,10.31,10.4,10.46,10.51,10.540000000000001,10.57,10.61,350.05,349.99,349.95,349.91,349.89,349.86,349.85,349.84000000000003,349.82,7.86,7.0600000000000005,6.7700000000000005,6.5200000000000005,6.29,6.09,5.88,5.68,5.28,N/A,N/A +2012,12,29,19,30,102890,101640,100410,62,0,9.5,10.16,10.34,10.43,10.49,10.53,10.56,10.58,10.61,350.19,350.12,350.07,350.04,350,349.97,349.95,349.93,349.89,8.67,7.88,7.6000000000000005,7.36,7.13,6.93,6.71,6.51,6.11,N/A,N/A +2012,12,29,20,30,102890,101640,100420,59.93,0,9.040000000000001,9.65,9.8,9.88,9.93,9.96,9.99,10.01,10.03,349.95,349.92,349.90000000000003,349.88,349.88,349.87,349.86,349.85,349.85,9.27,8.53,8.26,8.02,7.8,7.59,7.38,7.18,6.78,N/A,N/A +2012,12,29,21,30,102900,101650,100430,57.59,0,8.53,9.09,9.23,9.31,9.35,9.39,9.41,9.42,9.44,352.24,352.17,352.12,352.07,352.03000000000003,352,351.96,351.93,351.88,9.75,9.040000000000001,8.78,8.540000000000001,8.31,8.11,7.890000000000001,7.7,7.29,N/A,N/A +2012,12,29,22,30,102910,101660,100440,55.89,0,8.52,9.07,9.200000000000001,9.26,9.3,9.33,9.34,9.35,9.36,350.57,350.53000000000003,350.52,350.5,350.49,350.47,350.47,350.46,350.45,10.05,9.36,9.09,8.86,8.64,8.44,8.22,8.02,7.62,N/A,N/A +2012,12,29,23,30,102930,101680,100460,56.03,0,8.51,9.06,9.19,9.25,9.290000000000001,9.31,9.32,9.33,9.34,356.35,356.45,356.5,356.54,356.58,356.62,356.67,356.7,356.79,10.13,9.43,9.18,8.94,8.72,8.52,8.3,8.1,7.7,N/A,N/A +2012,12,30,0,30,103000,101750,100530,56.47,0,8.8,9.36,9.49,9.55,9.58,9.6,9.61,9.61,9.61,3.3200000000000003,3.21,3.12,3.0300000000000002,2.95,2.88,2.8000000000000003,2.74,2.6,10.02,9.32,9.05,8.82,8.59,8.39,8.17,7.98,7.58,N/A,N/A +2012,12,30,1,30,103030,101770,100560,55.57,0,9.22,9.82,9.950000000000001,10,10.03,10.05,10.05,10.05,10.03,6.24,6.140000000000001,6.08,6.03,5.98,5.93,5.88,5.83,5.74,9.72,8.99,8.73,8.49,8.27,8.07,7.86,7.66,7.2700000000000005,N/A,N/A +2012,12,30,2,30,103060,101810,100590,59.34,0,9.02,9.6,9.72,9.78,9.81,9.83,9.84,9.84,9.83,8.97,9.26,9.44,9.6,9.75,9.89,10.040000000000001,10.17,10.450000000000001,9.49,8.76,8.49,8.25,8.03,7.83,7.61,7.41,7.01,N/A,N/A +2012,12,30,3,30,103080,101830,100610,59.22,0,9.13,9.72,9.84,9.9,9.93,9.950000000000001,9.950000000000001,9.950000000000001,9.93,17.06,17.12,17.16,17.19,17.23,17.27,17.31,17.35,17.44,9.38,8.64,8.38,8.14,7.91,7.71,7.5,7.3,6.9,N/A,N/A +2012,12,30,4,30,103060,101800,100580,59.33,0,9.59,10.22,10.36,10.42,10.450000000000001,10.47,10.47,10.46,10.450000000000001,20.82,20.94,21,21.06,21.12,21.18,21.240000000000002,21.3,21.42,9.28,8.52,8.25,8.01,7.78,7.58,7.37,7.17,6.7700000000000005,N/A,N/A +2012,12,30,5,30,103060,101800,100580,60.34,0,9.61,10.25,10.39,10.450000000000001,10.48,10.5,10.5,10.49,10.47,25.400000000000002,25.63,25.79,25.92,26.05,26.18,26.310000000000002,26.43,26.69,9.17,8.41,8.13,7.9,7.67,7.47,7.25,7.05,6.66,N/A,N/A +2012,12,30,6,30,103080,101830,100600,61.58,0,9.52,10.15,10.28,10.35,10.38,10.39,10.4,10.39,10.370000000000001,32.25,32.53,32.69,32.84,32.99,33.12,33.27,33.4,33.67,9.16,8.41,8.14,7.9,7.67,7.47,7.26,7.0600000000000005,6.66,N/A,N/A +2012,12,30,7,30,103100,101840,100620,61.51,0,9.53,10.16,10.3,10.36,10.39,10.41,10.41,10.41,10.39,37.7,38.09,38.33,38.550000000000004,38.76,38.95,39.15,39.33,39.72,9.18,8.43,8.17,7.930000000000001,7.7,7.5,7.29,7.09,6.69,N/A,N/A +2012,12,30,8,30,103100,101850,100630,65.35,0,8.84,9.41,9.53,9.6,9.63,9.65,9.65,9.65,9.64,44.4,44.97,45.300000000000004,45.61,45.910000000000004,46.18,46.45,46.7,47.230000000000004,9.38,8.65,8.38,8.15,7.92,7.72,7.51,7.3100000000000005,6.91,N/A,N/A +2012,12,30,9,30,103090,101840,100620,70.09,0,9,9.6,9.73,9.8,9.83,9.85,9.86,9.870000000000001,9.86,51.660000000000004,52.02,52.24,52.44,52.63,52.800000000000004,52.980000000000004,53.14,53.47,9.51,8.790000000000001,8.52,8.28,8.06,7.8500000000000005,7.640000000000001,7.44,7.03,N/A,N/A +2012,12,30,10,30,103080,101830,100610,61.75,0,9.200000000000001,9.8,9.92,9.98,10,10.02,10.01,10.01,9.98,56.85,57.11,57.27,57.410000000000004,57.54,57.67,57.800000000000004,57.92,58.17,9.65,8.92,8.65,8.42,8.19,7.98,7.7700000000000005,7.57,7.17,N/A,N/A +2012,12,30,11,30,103080,101830,100610,69.78,0,8.86,9.44,9.56,9.620000000000001,9.65,9.67,9.67,9.67,9.65,58.230000000000004,58.72,59.02,59.29,59.550000000000004,59.78,60.03,60.26,60.72,9.700000000000001,8.98,8.72,8.49,8.26,8.06,7.84,7.640000000000001,7.24,N/A,N/A +2012,12,30,12,30,103090,101840,100620,71.62,0,8.67,9.23,9.36,9.41,9.450000000000001,9.47,9.47,9.48,9.46,63.95,64.38,64.63,64.87,65.09,65.29,65.5,65.7,66.1,9.99,9.290000000000001,9.03,8.8,8.57,8.370000000000001,8.16,7.96,7.5600000000000005,N/A,N/A +2012,12,30,13,30,103090,101840,100620,67.2,0,8.42,8.950000000000001,9.06,9.11,9.14,9.15,9.15,9.15,9.13,71.4,71.65,71.81,71.95,72.09,72.21000000000001,72.34,72.46000000000001,72.7,10.34,9.67,9.41,9.18,8.96,8.76,8.540000000000001,8.34,7.94,N/A,N/A +2012,12,30,14,30,103110,101860,100640,69.19,0,8.33,8.85,8.96,9.01,9.03,9.040000000000001,9.040000000000001,9.040000000000001,9.02,72.96000000000001,73.28,73.48,73.66,73.84,74,74.17,74.34,74.67,10.39,9.72,9.47,9.24,9.02,8.82,8.6,8.4,8,N/A,N/A +2012,12,30,15,30,103100,101850,100630,71.87,0,8.2,8.72,8.82,8.870000000000001,8.9,8.91,8.91,8.91,8.9,76.29,76.69,76.93,77.15,77.37,77.57000000000001,77.76,77.95,78.33,10.66,10.01,9.76,9.53,9.3,9.11,8.89,8.69,8.290000000000001,N/A,N/A +2012,12,30,16,30,103060,101810,100600,73.94,0,7.72,8.19,8.290000000000001,8.34,8.370000000000001,8.39,8.4,8.4,8.39,79.76,80.17,80.42,80.65,80.87,81.07000000000001,81.27,81.47,81.85000000000001,10.950000000000001,10.31,10.07,9.84,9.620000000000001,9.43,9.21,9.01,8.61,N/A,N/A +2012,12,30,17,30,103020,101770,100560,71.73,0,7.23,7.65,7.73,7.7700000000000005,7.78,7.79,7.79,7.78,7.76,84.09,84.51,84.78,85.02,85.25,85.45,85.67,85.87,86.28,11.23,10.620000000000001,10.38,10.15,9.94,9.74,9.53,9.33,8.93,N/A,N/A +2012,12,30,18,30,102980,101740,100530,74.5,0,6.7700000000000005,7.16,7.23,7.2700000000000005,7.28,7.29,7.29,7.29,7.2700000000000005,84.32000000000001,84.94,85.32000000000001,85.66,85.98,86.27,86.58,86.87,87.44,11.51,10.92,10.68,10.46,10.25,10.05,9.84,9.64,9.25,N/A,N/A +2012,12,30,19,30,102950,101710,100500,75.72,0,6.63,7,7.07,7.1000000000000005,7.11,7.12,7.12,7.11,7.1000000000000005,82.71000000000001,83.38,83.79,84.16,84.51,84.83,85.16,85.47,86.08,11.78,11.200000000000001,10.97,10.76,10.540000000000001,10.34,10.13,9.94,9.540000000000001,N/A,N/A +2012,12,30,20,30,102890,101650,100440,76.62,0,6.53,6.9,6.98,7.0200000000000005,7.04,7.05,7.05,7.0600000000000005,7.05,85.09,85.65,86.01,86.33,86.64,86.92,87.21000000000001,87.48,88.03,12.05,11.49,11.26,11.040000000000001,10.82,10.63,10.42,10.22,9.83,N/A,N/A +2012,12,30,21,30,102830,101600,100390,79.41,0,6.8500000000000005,7.26,7.36,7.41,7.43,7.45,7.46,7.46,7.46,85.53,86.33,86.76,87.15,87.5,87.82000000000001,88.15,88.45,89.05,12.41,11.85,11.620000000000001,11.4,11.18,10.99,10.78,10.58,10.19,N/A,N/A +2012,12,30,22,30,102750,101520,100320,78.61,0,6.96,7.390000000000001,7.49,7.54,7.5600000000000005,7.58,7.6000000000000005,7.61,7.62,91.83,91.91,92.05,92.19,92.34,92.49,92.66,92.82000000000001,93.18,12.56,12,11.78,11.56,11.35,11.15,10.94,10.74,10.35,N/A,N/A +2012,12,30,23,30,102700,101460,100270,79.09,0,7.890000000000001,8.4,8.52,8.57,8.6,8.620000000000001,8.63,8.63,8.63,92.16,93.06,93.58,94.05,94.48,94.86,95.27,95.64,96.4,13.16,12.61,12.38,12.17,11.950000000000001,11.76,11.55,11.35,10.96,N/A,N/A +2012,12,31,0,30,102660,101430,100240,79.2,0,7.54,8.08,8.21,8.290000000000001,8.33,8.370000000000001,8.39,8.41,8.44,98.85000000000001,99.43,99.76,100.06,100.34,100.59,100.85000000000001,101.09,101.59,13.6,13.07,12.85,12.63,12.42,12.22,12.01,11.82,11.42,N/A,N/A +2012,12,31,1,30,102610,101380,100190,78.48,0,7.95,8.52,8.66,8.74,8.790000000000001,8.82,8.85,8.870000000000001,8.89,102.65,103.35000000000001,103.7,104.02,104.31,104.56,104.82000000000001,105.07000000000001,105.55,14.02,13.51,13.280000000000001,13.07,12.86,12.66,12.450000000000001,12.26,11.86,N/A,N/A +2012,12,31,2,30,102580,101360,100170,77.87,0,7.57,8.16,8.32,8.42,8.49,8.55,8.59,8.63,8.69,106.64,107.46000000000001,107.87,108.24000000000001,108.57000000000001,108.87,109.17,109.44,109.98,14.57,14.08,13.870000000000001,13.66,13.450000000000001,13.26,13.05,12.85,12.46,N/A,N/A +2012,12,31,3,30,102520,101300,100110,77.65,0,7.17,7.66,7.7700000000000005,7.82,7.8500000000000005,7.87,7.88,7.88,7.890000000000001,111.82000000000001,112.21000000000001,112.51,112.81,113.10000000000001,113.38,113.7,114,114.67,15.09,14.620000000000001,14.42,14.21,14.01,13.82,13.61,13.42,13.040000000000001,N/A,N/A +2012,12,31,4,30,102460,101250,100070,80.9,0,7.2,7.79,7.96,8.06,8.14,8.2,8.25,8.290000000000001,8.35,105.71000000000001,106.37,106.72,107.06,107.37,107.65,107.94,108.2,108.75,15.700000000000001,15.27,15.07,14.86,14.66,14.47,14.27,14.08,13.69,N/A,N/A +2012,12,31,5,30,102410,101200,100020,83.57000000000001,0,8.35,9.01,9.16,9.24,9.290000000000001,9.32,9.33,9.34,9.34,102.15,102.42,102.67,102.92,103.17,103.4,103.67,103.92,104.49000000000001,16.05,15.620000000000001,15.42,15.21,15.01,14.82,14.620000000000001,14.44,14.05,N/A,N/A +2012,12,31,6,30,102380,101170,99990,83.93,0,8.75,9.56,9.78,9.91,9.99,10.040000000000001,10.07,10.09,10.11,108.52,108.9,109.14,109.37,109.57000000000001,109.76,109.94,110.12,110.48,16.69,16.330000000000002,16.14,15.94,15.74,15.55,15.35,15.17,14.780000000000001,N/A,N/A +2012,12,31,7,30,102360,101150,99970,85.54,0,8.88,9.69,9.91,10.02,10.08,10.13,10.14,10.15,10.14,103.81,104.13,104.43,104.73,105.02,105.28,105.57000000000001,105.85000000000001,106.46000000000001,16.86,16.51,16.330000000000002,16.13,15.93,15.75,15.55,15.36,14.98,N/A,N/A +2012,12,31,8,30,102280,101070,99900,87.4,0,9.91,10.790000000000001,11,11.09,11.15,11.17,11.18,11.19,11.200000000000001,109.34,109.57000000000001,109.75,109.95,110.18,110.4,110.7,110.99000000000001,111.93,16.94,16.59,16.41,16.21,16.02,15.84,15.64,15.46,15.09,N/A,N/A +2012,12,31,9,30,102240,101030,99860,88.60000000000001,0,9.31,10.16,10.38,10.5,10.57,10.63,10.67,10.71,10.9,113.31,113.68,113.88,114.12,114.4,114.7,115.11,115.53,117.41,17.41,17.11,16.94,16.75,16.56,16.38,16.19,16.02,15.67,N/A,N/A +2012,12,31,10,30,102180,100980,99810,90.73,0,8.65,9.51,9.78,9.99,10.200000000000001,10.41,10.73,11.040000000000001,11.09,117.18,117.44,117.71000000000001,118.11,118.67,119.32000000000001,120.3,121.3,125.16,17.650000000000002,17.38,17.23,17.04,16.87,16.7,16.54,16.38,16.13,N/A,N/A +2012,12,31,11,30,102110,100910,99750,93.61,0,8,9.31,9.74,9.870000000000001,10.14,10.46,10.71,10.9,11.1,113.31,115.23,116.21000000000001,116.72,117.89,119.38,121.06,122.65,126.45,17.63,17.39,17.25,17.07,16.94,16.84,16.72,16.62,16.41,N/A,N/A +2012,12,31,12,30,102070,100870,99700,93.51,0,8.2,9.21,9.57,9.88,10.15,10.4,10.67,10.91,11.46,116.12,116.53,116.87,117.29,117.79,118.32000000000001,119.10000000000001,119.92,124.06,17.89,17.650000000000002,17.51,17.35,17.19,17.04,16.9,16.77,16.65,N/A,N/A +2012,12,31,13,30,102010,100820,99660,94.8,0,7.7,8.76,9.16,9.52,9.85,10.14,10.44,10.72,11.26,119.09,119.74000000000001,120.17,120.72,121.34,121.99000000000001,122.93,123.89,127.85000000000001,18.03,17.82,17.68,17.53,17.38,17.240000000000002,17.11,16.990000000000002,16.86,N/A,N/A +2012,12,31,14,30,102000,100810,99650,93.58,0,7.74,8.92,9.39,9.82,10.200000000000001,10.540000000000001,10.85,11.13,11.84,122.41,123.65,124.84,126.7,129.18,132.13,136.3,140.49,149,18.42,18.34,18.29,18.25,18.25,18.27,18.32,18.37,18.36,N/A,N/A +2012,12,31,15,30,101970,100780,99620,93.84,0,6.57,7.78,8.32,8.870000000000001,9.39,9.89,10.33,10.73,11.31,132.14000000000001,133.27,134.21,135.49,136.82,138.20000000000002,139.68,141.08,144.24,18.580000000000002,18.51,18.46,18.400000000000002,18.36,18.32,18.28,18.240000000000002,18.13,N/A,N/A +2012,12,31,16,30,101920,100730,99580,93.26,0,6.55,8.01,8.72,9.450000000000001,10.14,10.82,11.41,11.950000000000001,12.71,144.82,146.84,148.37,150.13,151.68,153.12,154.37,155.52,159.33,18.95,19.01,19.04,19.06,19.09,19.12,19.11,19.1,19,N/A,N/A +2012,12,31,17,30,101860,100670,99520,93.35000000000001,0,6.09,7.5600000000000005,8.27,9.040000000000001,9.78,10.5,11.18,11.82,12.75,150.49,151.82,152.81,153.94,155.03,156.11,157.33,158.52,160.97,19.06,19.13,19.16,19.18,19.19,19.21,19.2,19.19,19.080000000000002,N/A,N/A +2012,12,31,18,30,101810,100620,99470,92.16,0,6.890000000000001,8.44,9.13,9.82,10.48,11.13,11.8,12.44,13.51,153.79,155.1,156.19,157.63,159.02,160.39000000000001,161.5,162.49,163.72,19.31,19.43,19.46,19.48,19.5,19.5,19.490000000000002,19.48,19.37,N/A,N/A +2012,12,31,19,30,101780,100590,99440,93.09,0,6.5200000000000005,8.11,8.85,9.6,10.31,10.98,11.64,12.25,13.27,155.75,157.24,158.45000000000002,160.03,161.51,162.92000000000002,164.03,165.01,166.77,19.32,19.45,19.5,19.54,19.56,19.59,19.580000000000002,19.57,19.47,N/A,N/A +2012,12,31,20,30,101720,100530,99390,91.79,0,6.61,8.32,9.120000000000001,9.93,10.65,11.32,11.94,12.51,13.4,161.15,162.17000000000002,162.87,163.56,164.06,164.41,164.56,164.64000000000001,164.68,19.48,19.66,19.72,19.77,19.78,19.77,19.740000000000002,19.7,19.53,N/A,N/A +2012,12,31,21,30,101680,100500,99350,92.01,0,6.640000000000001,8.41,9.23,10.05,10.78,11.46,12.06,12.61,13.5,159.20000000000002,160.91,162.17000000000002,163.67000000000002,165,166.23,167.25,168.15,169.4,19.43,19.64,19.71,19.78,19.82,19.84,19.830000000000002,19.8,19.66,N/A,N/A +2012,12,31,22,30,101650,100460,99320,92.33,0,6,7.74,8.57,9.43,10.21,10.94,11.59,12.200000000000001,13.42,160.17000000000002,161.85,163.20000000000002,164.87,166.42000000000002,167.89000000000001,169.15,170.29,172.26,19.31,19.55,19.650000000000002,19.73,19.78,19.82,19.81,19.8,19.73,N/A,N/A +2012,12,31,23,30,101610,100430,99280,92.32000000000001,0,6.16,7.91,8.74,9.6,10.38,11.11,11.8,12.44,13.5,160.8,162.20000000000002,163.34,164.83,166.22,167.56,168.65,169.6,170.55,19.29,19.53,19.62,19.72,19.78,19.830000000000002,19.84,19.84,19.72,N/A,N/A From 80dda6a62e5db550acbb17c1e1554e91d00067dc Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Wed, 1 Oct 2025 14:29:03 -0600 Subject: [PATCH 21/79] Optimized --- .../plant_config_co2h.yaml | 6 -- .../plot_co2h_methanol.py | 30 +++---- .../tech_config_co2h.yaml | 83 +++---------------- 3 files changed, 22 insertions(+), 97 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index 6cc130645..3d5426462 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -33,18 +33,12 @@ technology_interconnections: [ ["hopp", "electricity_splitter", "electricity", "cable"], ["electricity_splitter", "doc", "electricity", "cable"], ["electricity_splitter", "electrolyzer", "electricity", "cable"], - # ["hopp", "electrolyzer", "electricity", "cable"], ["electrolyzer", "h2_storage", "hydrogen", "pipe"], ["h2_storage", "methanol", "hydrogen", "pipe"], - # ["wind","doc","electricity","cable"], ["doc", "co2_storage", "co2", "pipe"], ["co2_storage","methanol","co2","pipe"], ] -# resource_to_tech_connections: [ -# ["wind_resource", "wind", "wind_resource_data"] -# ] - plant: plant_life: 30 grid_connection: True # option, can be turned on or off diff --git a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py index a3c2d7de9..30316bcb8 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py @@ -7,14 +7,6 @@ def plot_methanol(model): times = pd.date_range("2013", periods=8760, freq="1h") - # # HOPP Electricity for Electrolyzer - # plt.subplot(3, 2, 1) - # plt.title("HOPP for Electrolyzer") - # hopp_elec_out = model.plant.hopp.hopp.get_val("electricity_out") - # plt.plot(times, hopp_elec_out, label="electricity_out [kW]") - # # plt.yscale("log") - # plt.legend() - # Electricity to H2 using Electrolyzer plt.subplot(3, 2, 1) plt.title("Electrolyzer") @@ -26,28 +18,24 @@ def plot_methanol(model): / 1000 * 24 ) - plt.plot(times, elyzer_elec_in, label="electricity_in [MW]") + plt.plot(times, elyzer_elec_in, label="electricity_in [MW]", color=[0.5, 0.5, 1]) + plt.plot([times[0], times[-1]], [160, 160], "--", label="electrolyzer_max_input [MW]", color=[0.5, 0.5, 1]) plt.plot(times, elyzer_h2_out, label="hydrogen_out [t/d]", color=[1, 0.5, 0]) # plt.yscale("log") plt.legend() - - # # Wind Electricity for DOC - # plt.subplot(3, 2, 2) - # plt.title("Wind for DOC") - # wind_elec_out = model.plant.wind.wind_plant_performance.get_val("electricity_out") - # plt.plot(times, wind_elec_out, label="electricity_out [kW]") - # plt.yscale("log") - # plt.legend() + plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) # Electricity to CO2 using DOC plt.subplot(3, 2, 2) plt.title("DOC") doc_elec_in = model.plant.doc.direct_ocean_capture_performance.get_val("electricity_in") / 1e6 - doc_co2_out = model.plant.doc.direct_ocean_capture_performance.get_val("co2_out") / 1000 * 24 + doc_co2_out = model.plant.doc.direct_ocean_capture_performance.get_val("co2_out") / 1000 plt.plot(times, doc_elec_in, label="electricity_in [MW]") - plt.plot(times, doc_co2_out, label="co2_out [t/d]", color=[0.5, 0.25, 0]) + plt.plot([times[0], times[-1]], [43.32621908, 43.32621908], "--", label="doc_max_input [MW]", color=[0.5, 0.5, 1]) + plt.plot(times, doc_co2_out, label="co2_out [t/hr]", color=[0.5, 0.25, 0]) # plt.yscale("log") plt.legend() + plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) # H2 and Storage plt.subplot(3, 2, 3) @@ -58,6 +46,7 @@ def plot_methanol(model): plt.plot(times, h2_storage_out, label="hydrogen_out [kg/hr]", color=[0, 0.5, 0]) # plt.yscale("log") plt.legend() + plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) # H2 and Storage plt.subplot(3, 2, 4) @@ -68,6 +57,7 @@ def plot_methanol(model): plt.plot(times, co2_storage_out, label="co2_out [kg/hr]", color=[0, 0.25, 0.5]) # plt.yscale("log") plt.legend() + plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) # H2 and CO2 to Methanol plt.subplot(3, 2, 5) @@ -80,6 +70,7 @@ def plot_methanol(model): plt.plot(times, meoh_meoh_out, label="methanol_out [kg/hr]", color=[1, 0, 0.5]) # plt.yscale("log") plt.legend() + plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) # H2 and CO2 storage SOC plt.subplot(3, 2, 6) @@ -90,6 +81,7 @@ def plot_methanol(model): plt.plot(times, co2_soc, label="co2_soc [%]", color=[0.5, 0.25, 0]) # plt.yscale("log") plt.legend() + plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) fig = plt.gcf() fig.tight_layout() diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 7b1e1f507..2e127c56a 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -19,7 +19,7 @@ technologies: model: "splitter_performance" config: split_mode: "fraction" - fraction_to_priority_tech: 0.2 + fraction_to_priority_tech: 0.243998425816608 electrolyzer: performance_model: model: "eco_pem_electrolyzer_performance" @@ -36,7 +36,7 @@ technologies: resize_for_enduse: False size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) hydrogen_dmd: - n_clusters: 9 + n_clusters: 4 cluster_rating_MW: 40 pem_control_type: 'basic' eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol @@ -58,8 +58,8 @@ technologies: shared_parameters: resource_name: "hydrogen" resource_rate_units: "kg/h" - max_charge_rate: 5000.0 # kg/time step - max_capacity: 19500.0 # kg + max_charge_rate: 50000.0 # kg/time step + max_capacity: 103701.401563086 # kg control_parameters: max_charge_percent: 1.0 # percent as decimal min_charge_percent: 0.1 # percent as decimal @@ -67,73 +67,12 @@ technologies: max_discharge_rate: 5000.0 # kg/time step charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal - demand_profile: 780 + demand_profile: 2108.73919484047 cost_parameters: cost_year: 2022 energy_capex: 383 # $/kg power_capex: .000001 # $/kg/h opex_fraction: .000001 # percent of capex - # performance_model: - # model: "h2_storage" - # control_strategy: - # model: "demand_open_loop_controller" - # cost_model: - # model: "h2_storage" - # financial_model: - # group: default - # model_inputs: - # performance_parameters: - # rating: 300. - # size_capacity_from_demand: - # flag: True # If True, then storage is sized to provide steady-state storage - # capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - # type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - # days: 0 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - # control_parameters: - # resource_name: "hydrogen" - # resource_rate_units: "kg/h" - # max_capacity: 1000000.0 # kg - # max_charge_percent: 1.0 # percent as decimal - # min_charge_percent: 0.1 # percent as decimal - # init_charge_percent: 0.25 # percent as decimal - # max_charge_rate: 10000.0 # kg/time step - # max_discharge_rate: 10000.0 # kg/time step - # charge_efficiency: 1.0 # percent as decimal - # discharge_efficiency: 1.0 # percent as decimal - # demand_profile: 195 # Example: 10 time steps with 5000 kg/time step demand. Scalar indicates constant demand, array-like indicates dynamic demand - # wind: - # performance_model: - # model: "wind_plant_performance" - # cost_model: - # model: "wind_plant_cost" - # financial_model: - # group: "1" - # model_inputs: - # shared_parameters: - # num_turbines: 66 - # turbine_rating_kw: 15000 - # performance_parameters: - # rotor_diameter: 196. - # hub_height: 130. - # layout_mode: "basicgrid" - # model_name: "pysam" - # model_input_file: null - # layout_params: - # row_D_spacing: 10. - # turbine_D_spacing: 10. - # rating_range_kw: [1000, 5000] - # floris_config: null - # operational_losses: 10.0 - # timestep: [1, 60] - # fin_model: "default" - # name: "UtilityScaleWindPlant" - # turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use - # turbine_group: "onshore" - # override_wind_resource_height: True - # adjust_air_density_for_elevation: True - # cost_parameters: - # cost_per_kw: 1500.0 - # cost_year: 2019 doc: performance_model: model: "direct_ocean_capture_performance" @@ -143,7 +82,7 @@ technologies: group: "1" model_inputs: shared_parameters: - power_single_ed_w: 3000000.0 # W + power_single_ed_w: 2858628.25565643 # W flow_rate_single_ed_m3s: 0.075 # m^3/s number_ed_min: 1 number_ed_max: 10 @@ -173,16 +112,16 @@ technologies: shared_parameters: resource_name: "co2" resource_rate_units: "kg/h" - max_charge_rate: 5000.0 # kg/time step - max_capacity: 284600.0 # kg + max_charge_rate: 50000.0 # kg/time step + max_capacity: 961456.376748904 # kg control_parameters: max_charge_percent: 1.0 # percent as decimal min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal - max_discharge_rate: 5000.0 # kg/time step + max_discharge_rate: 50000.0 # kg/time step charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal - demand_profile: 5692 + demand_profile: 15388.3891 cost_parameters: cost_year: 2022 energy_capex: 5 # $/kg @@ -197,7 +136,7 @@ technologies: group: "1" model_inputs: shared_parameters: - plant_capacity_kgpy: 35040000 + plant_capacity_kgpy: 94731053.0605257 plant_capacity_flow: "methanol" performance_parameters: capacity_factor: 1 From fe8c3b792199c086f59229628eea9009e927570d Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Wed, 1 Oct 2025 14:50:50 -0600 Subject: [PATCH 22/79] Test fix --- tests/h2integrate/test_all_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index d9004f91c..ebd7631fb 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -263,7 +263,7 @@ def test_doc_methanol_example(subtests): # Check levelized cost of methanol (LCOM) with subtests.test("Check CO2 Hydrogenation LCOM"): - assert pytest.approx(model.prob.get_val("financials_group_1.LCOM"), rel=1e-6) == 6.79771486 + assert pytest.approx(model.prob.get_val("finance_subgroup_default.LCOM"), rel=1e-6) == 2.58989518 def test_wind_h2_opt_example(subtests): From d67adfa36ade163a05c25d6f73d3a4152908f99e Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Wed, 1 Oct 2025 15:15:08 -0600 Subject: [PATCH 23/79] Fix precommit --- .../plot_co2h_methanol.py | 34 +++++++++++-------- tests/h2integrate/test_all_examples.py | 5 ++- 2 files changed, 24 insertions(+), 15 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py index 30316bcb8..bbd81b4d7 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py @@ -19,11 +19,16 @@ def plot_methanol(model): * 24 ) plt.plot(times, elyzer_elec_in, label="electricity_in [MW]", color=[0.5, 0.5, 1]) - plt.plot([times[0], times[-1]], [160, 160], "--", label="electrolyzer_max_input [MW]", color=[0.5, 0.5, 1]) + plt.plot( + [times[0], times[-1]], + [160, 160], + "--", + label="electrolyzer_max_input [MW]", + color=[0.5, 0.5, 1], + ) plt.plot(times, elyzer_h2_out, label="hydrogen_out [t/d]", color=[1, 0.5, 0]) - # plt.yscale("log") plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) + plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) # Electricity to CO2 using DOC plt.subplot(3, 2, 2) @@ -31,11 +36,16 @@ def plot_methanol(model): doc_elec_in = model.plant.doc.direct_ocean_capture_performance.get_val("electricity_in") / 1e6 doc_co2_out = model.plant.doc.direct_ocean_capture_performance.get_val("co2_out") / 1000 plt.plot(times, doc_elec_in, label="electricity_in [MW]") - plt.plot([times[0], times[-1]], [43.32621908, 43.32621908], "--", label="doc_max_input [MW]", color=[0.5, 0.5, 1]) + plt.plot( + [times[0], times[-1]], + [43.32621908, 43.32621908], + "--", + label="doc_max_input [MW]", + color=[0.5, 0.5, 1], + ) plt.plot(times, doc_co2_out, label="co2_out [t/hr]", color=[0.5, 0.25, 0]) - # plt.yscale("log") plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) + plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) # H2 and Storage plt.subplot(3, 2, 3) @@ -44,9 +54,8 @@ def plot_methanol(model): h2_storage_out = model.plant.h2_storage_to_methanol_pipe.get_val("hydrogen_out") * 3600 plt.plot(times, h2_storage_in, label="hydrogen_in [kg/hr]", color=[1, 0.5, 0]) plt.plot(times, h2_storage_out, label="hydrogen_out [kg/hr]", color=[0, 0.5, 0]) - # plt.yscale("log") plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) + plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) # H2 and Storage plt.subplot(3, 2, 4) @@ -55,9 +64,8 @@ def plot_methanol(model): co2_storage_out = model.plant.co2_storage_to_methanol_pipe.get_val("co2_out") plt.plot(times, co2_storage_in, label="co2_in [kg/hr]", color=[0.5, 0.25, 0]) plt.plot(times, co2_storage_out, label="co2_out [kg/hr]", color=[0, 0.25, 0.5]) - # plt.yscale("log") plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) + plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) # H2 and CO2 to Methanol plt.subplot(3, 2, 5) @@ -68,9 +76,8 @@ def plot_methanol(model): plt.plot(times, meoh_h2_in, label="hydrogen_in [kg/hr]", color=[0, 0.5, 0]) plt.plot(times, meoh_co2_in, label="co2_in [kg/hr]", color=[0, 0.25, 0.5]) plt.plot(times, meoh_meoh_out, label="methanol_out [kg/hr]", color=[1, 0, 0.5]) - # plt.yscale("log") plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) + plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) # H2 and CO2 storage SOC plt.subplot(3, 2, 6) @@ -79,9 +86,8 @@ def plot_methanol(model): co2_soc = model.plant.co2_storage.get_val("co2_soc") * 100 plt.plot(times, h2_soc, label="hydrogen_soc [%]", color=[1, 0.5, 0]) plt.plot(times, co2_soc, label="co2_soc [%]", color=[0.5, 0.25, 0]) - # plt.yscale("log") plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"),pd.to_datetime("2013-01-31")) + plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) fig = plt.gcf() fig.tight_layout() diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index ebd7631fb..87db87f73 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -263,7 +263,10 @@ def test_doc_methanol_example(subtests): # Check levelized cost of methanol (LCOM) with subtests.test("Check CO2 Hydrogenation LCOM"): - assert pytest.approx(model.prob.get_val("finance_subgroup_default.LCOM"), rel=1e-6) == 2.58989518 + assert ( + pytest.approx(model.prob.get_val("finance_subgroup_default.LCOM"), rel=1e-6) + == 2.58989518 + ) def test_wind_h2_opt_example(subtests): From 1eac56d3ae3ce03abc45d101a59e4f0c6f6c9147 Mon Sep 17 00:00:00 2001 From: John Jasa Date: Mon, 6 Oct 2025 21:19:35 -0600 Subject: [PATCH 24/79] Removed co2 capture rate mt --- .../converters/co2/marine/direct_ocean_capture.py | 2 -- .../co2/marine/marine_carbon_capture_baseclass.py | 9 +-------- .../co2/marine/ocean_alkalinity_enhancement.py | 6 ++---- h2integrate/converters/co2/marine/test/test_doc.py | 4 ++-- h2integrate/converters/co2/marine/test/test_oae.py | 4 ++-- 5 files changed, 7 insertions(+), 18 deletions(-) diff --git a/h2integrate/converters/co2/marine/direct_ocean_capture.py b/h2integrate/converters/co2/marine/direct_ocean_capture.py index 7264d5895..c1903bcb9 100644 --- a/h2integrate/converters/co2/marine/direct_ocean_capture.py +++ b/h2integrate/converters/co2/marine/direct_ocean_capture.py @@ -76,7 +76,6 @@ class DOCPerformanceModel(MarineCarbonCapturePerformanceBaseClass): MarineCarbonCapturePerformanceBaseClass Computes: - - co2_capture_rate_mt: Hourly CO2 capture rate (t/h) - co2_out: Hourly CO2 capture rate (kg/h) - co2_capture_mtpy: Annual CO2 capture (t/year) - co2_capture_kgpy: Annual CO2 capture (kg/year) @@ -130,7 +129,6 @@ def compute(self, inputs, outputs): plot_range=[3910, 4030], ) - outputs["co2_capture_rate_mt"] = ed_outputs.ED_outputs["mCC"] outputs["co2_out"] = ed_outputs.ED_outputs["mCC"] * 1000 outputs["co2_capture_mtpy"] = max(ed_outputs.mCC_yr, 1e-6) # Must be >0 outputs["total_tank_volume_m3"] = range_outputs.V_aT_max + range_outputs.V_bT_max diff --git a/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py b/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py index 76d1178fc..dcda17246 100644 --- a/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py +++ b/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py @@ -42,19 +42,12 @@ def setup(self): self.add_input( "electricity_in", val=0.0, shape=8760, units="W", desc="Hourly input electricity (W)" ) - self.add_output( - "co2_capture_rate_mt", - val=0.0, - shape=8760, - units="t", - desc="Hourly CO₂ capture rate (t)", - ) self.add_output( "co2_out", val=0.0, shape=8760, units="kg/h", - desc="Hourly CO₂ capture rate (kg)", + desc="Hourly CO₂ capture rate (kg/h)", ) self.add_output("co2_capture_mtpy", units="t/year", desc="Annual CO₂ captured (t/year)") diff --git a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py index 69add76bf..9b57e7bf5 100644 --- a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py +++ b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py @@ -63,7 +63,7 @@ class OAEPerformanceModel(MarineCarbonCapturePerformanceBaseClass): MarineCarbonCapturePerformanceBaseClass Computes: - - co2_capture_rate_mt: Hourly CO₂ capture rate in metric tons. + - co2_out: Hourly CO₂ capture rate (kg/h). - co2_capture_mtpy: Annual CO₂ captured in metric tons per year. Notes: @@ -214,9 +214,7 @@ def compute(self, inputs, outputs): plot_range=[3910, 4030], ) - outputs["co2_capture_rate_mt"] = ( - oae_outputs.OAE_outputs["mass_CO2_absorbed"] / 1000 - ) # Convert from kg to metric tons + outputs["co2_out"] = oae_outputs.OAE_outputs["mass_CO2_absorbed"] outputs["co2_capture_mtpy"] = oae_outputs.M_co2est outputs["plant_mCC_capacity_mtph"] = max(range_outputs.S1["mass_CO2_absorbed"] / 1000) outputs["alkaline_seawater_flow_rate"] = oae_outputs.OAE_outputs["Qout"] diff --git a/h2integrate/converters/co2/marine/test/test_doc.py b/h2integrate/converters/co2/marine/test/test_doc.py index 40928be4e..5cf8f52a9 100644 --- a/h2integrate/converters/co2/marine/test/test_doc.py +++ b/h2integrate/converters/co2/marine/test/test_doc.py @@ -60,13 +60,13 @@ def test_performance_model(self): self.prob.run_model() # Additional asserts for output values - co2_capture_rate_mt = self.prob.get_val("co2_capture_rate_mt") + co2_out = self.prob.get_val("co2_out") co2_capture_mtpy = self.prob.get_val("co2_capture_mtpy") plant_mCC_capacity_mtph = self.prob.get_val("plant_mCC_capacity_mtph") total_tank_volume_m3 = self.prob.get_val("total_tank_volume_m3") # Assert values (allowing for small numerical tolerance) - assert_near_equal(np.linalg.norm(co2_capture_rate_mt), 11394.97006218, tolerance=1e-5) + assert_near_equal(np.linalg.norm(co2_out), 11394970.06218, tolerance=1e-1) assert_near_equal(np.linalg.norm(co2_capture_mtpy), [1041164.44000004], tolerance=1e-5) assert_near_equal(plant_mCC_capacity_mtph, [176.34], tolerance=1e-2) assert_near_equal(total_tank_volume_m3, [25920.0], tolerance=1e-2) diff --git a/h2integrate/converters/co2/marine/test/test_oae.py b/h2integrate/converters/co2/marine/test/test_oae.py index e1235c6d2..bdf380dd0 100644 --- a/h2integrate/converters/co2/marine/test/test_oae.py +++ b/h2integrate/converters/co2/marine/test/test_oae.py @@ -67,7 +67,7 @@ def test_performance_model(self): self.prob.run_model() # Get output values to determine expected values - co2_capture_rate_mt = self.prob.get_val("co2_capture_rate_mt") + co2_out = self.prob.get_val("co2_out") co2_capture_mtpy = self.prob.get_val("co2_capture_mtpy") plant_mCC_capacity_mtph = self.prob.get_val("plant_mCC_capacity_mtph") alkaline_seawater_flow_rate = self.prob.get_val("alkaline_seawater_flow_rate") @@ -75,7 +75,7 @@ def test_performance_model(self): excess_acid = self.prob.get_val("excess_acid") # Assert values (allowing for small numerical tolerance) - assert_near_equal(np.mean(co2_capture_rate_mt), 1.108394704250361, tolerance=1e-6) + assert_near_equal(np.mean(co2_out), 1108.394704250361, tolerance=1e-3) assert_near_equal(co2_capture_mtpy, [9709.53760923], tolerance=1e-6) assert_near_equal(plant_mCC_capacity_mtph, [1.10854656], tolerance=1e-6) assert_near_equal(np.mean(alkaline_seawater_flow_rate), 3.2395561643835618, tolerance=1e-6) From 8b65e31456df95dafeb5c428b744465c717d153b Mon Sep 17 00:00:00 2001 From: Jonathan Martin <94018654+jmartin4nrel@users.noreply.github.com> Date: Mon, 6 Oct 2025 21:40:18 -0600 Subject: [PATCH 25/79] Switching lots of tech config values from a .csv (#242) * Switching HB cases * Docstring updates * Running while checking data types * Test getting there * Test working * Docs * Updated docs and tests * pre-commit fix --------- Co-authored-by: John Jasa --- CHANGELOG.md | 3 + docs/_toc.yml | 1 + .../how_to_run_several_cases_in_sequence.md | 69 +++++++++ examples/12_ammonia_synloop/hb_inputs.csv | 6 + .../12_ammonia_synloop/run_ammonia_synloop.py | 19 ++- h2integrate/tools/inflation/cepci.csv | 1 + h2integrate/tools/run_cases.py | 131 ++++++++++++++++++ h2integrate/tools/test/test_inputs.csv | 5 + h2integrate/tools/test/test_tools.py | 55 ++++++++ 9 files changed, 287 insertions(+), 3 deletions(-) create mode 100644 docs/user_guide/how_to_run_several_cases_in_sequence.md create mode 100644 examples/12_ammonia_synloop/hb_inputs.csv create mode 100644 h2integrate/tools/run_cases.py create mode 100644 h2integrate/tools/test/test_inputs.csv create mode 100644 h2integrate/tools/test/test_tools.py diff --git a/CHANGELOG.md b/CHANGELOG.md index d8fc2ea6d..66322d67e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.4.x [TBD] +- Added `tools/run_cases.py` with tools to run different `tech_config` cases from a spreadsheet, with new docs page to describe: docs/user_guide/how_to_run_several_cases_in_sequence.md + ## 0.4.0 [October 1, 2025] This release introduces significant new technology models and framework capabilities for system design and optimization, alongside major refactoring and user experience improvements. diff --git a/docs/_toc.yml b/docs/_toc.yml index d118e9157..5811b0f2b 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -17,6 +17,7 @@ parts: - file: user_guide/design_optimization_in_h2i - file: user_guide/postprocessing_results - file: user_guide/how_to_interface_with_user_defined_model + - file: user_guide/how_to_run_several_cases_in_sequence - file: user_guide/specifying_finance_parameters sections: - file: user_guide/cost_years diff --git a/docs/user_guide/how_to_run_several_cases_in_sequence.md b/docs/user_guide/how_to_run_several_cases_in_sequence.md new file mode 100644 index 000000000..fc931b080 --- /dev/null +++ b/docs/user_guide/how_to_run_several_cases_in_sequence.md @@ -0,0 +1,69 @@ +# Running several cases in sequence + +## Overview + +If you have several different cases you want to run with different input parameters, these cases can be set up in an input spreadsheet rather than directly modifying the `tech_config`. +This is done using the functions in `h2integrate/tools/run_cases.py` + +## Setting up a variation of parameters in a .csv + +To set up the inputs for each case, the input .csv should be set up like so: +| Index 0 | Index 1 |...| Index N | Type | | |...| | +|--------------|----------------|---|----------------|-------|-----------------|-----------------|---|-----------------| +| technologies | |...| | float | | |...| | +| technologies | |...| | str | | |...| | +| ... | ... |...| ... | ... | ... | ... |...| ... | +| technologies | |...| | bool | | |...| | + + +## Example: Two different sizes of Haber Bosch ammonia plant + +To demonstrate this capability, we include a short example that modifies the size and hydrogen storage type for a Haber Bosch ammonia plant in `examples/12_ammonia_synloop`. +The example spreadsheet `hb_inputs.csv` shows the format: + +|Index 0|Index 1|Index 2|Index 3|Index 4|Index 5|Type|Haber Bosch Big|Haber Bosch Small +|--- |--- |--- |--- |--- |--- |--- |--- |--- | +technologies|ammonia|model_inputs|shared_parameters|production_capacity||float|100000|10000 +technologies|h2_storage|model_inputs|performance_parameters|type||str|salt_cavern|lined_rock_cavern +technologies|electrolyzer|model_inputs|performance_parameters|n_clusters||int|16|2 +technologies|electrolyzer|model_inputs|performance_parameters|include_degradation_penalty||bool|TRUE|FALSE +technologies|electrolyzer|model_inputs|financial_parameters|capital_items|replacement_cost_percent|float|0.15|0.25 + + +### Things to note about this format + +- The nested depth of the parameters in the `tech_config` can vary based on the parameter you're setting. If some parameters do not use as many levels, leave the unused levels blank (like the Index 5 level for most parameters in the above example) +- The currently available data types for each parameter are `float`, `str`, `int`, and `bool`. Be sure to specify the correct data type for each parameter. +- For parameters declared as `bool`, you can enter "0", "false", or "no" for `False`, and "1", "true", or "yes" for `True` (case insensitive). When making .csvs in Excel, the default "TRUE" and "FALSE" formatting will work. +- For all other parameters not included in the spreadsheet, their values will be kept the same as originally defined in the `tech_config.yaml`. + +The variation of parameters can be run by first creating an H2I model (with a `tech_config.yaml`), then modifying only the `tech_config` values that need to change. +First, the spreadsheet with each case is loaded into a Pandas DataFrame using `load_tech_config_cases`. +Then, in a loop, individual cases are selected and the model is modified to use these parameters using `modify_tech_config`. +An example is shown in `run_ammonia_synloop.py`: + +``` +from pathlib import Path + +from h2integrate.tools.run_cases import modify_tech_config, load_tech_config_cases +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +# Create a H2Integrate model +model = H2IntegrateModel("12_ammonia_synloop.yaml") + +# Load cases +case_file = Path("hb_inputs.csv") +cases = load_tech_config_cases(case_file) + +# Modify and run the model for different cases +caselist = [ + "Haber Bosch Big", + "Haber Bosch Small", +] +for casename in caselist: + case = cases[casename] + model = modify_tech_config(model, case) + model.run() + model.post_process() +``` diff --git a/examples/12_ammonia_synloop/hb_inputs.csv b/examples/12_ammonia_synloop/hb_inputs.csv new file mode 100644 index 000000000..20ca4db70 --- /dev/null +++ b/examples/12_ammonia_synloop/hb_inputs.csv @@ -0,0 +1,6 @@ +Index 0,Index 1,Index 2,Index 3,Index 4,Index 5,Type,Haber Bosch Big,Haber Bosch Small +technologies,ammonia,model_inputs,shared_parameters,production_capacity,,float,100000,10000 +technologies,h2_storage,model_inputs,performance_parameters,type,,str,salt_cavern,lined_rock_cavern +technologies,electrolyzer,model_inputs,performance_parameters,n_clusters,,int,16,2 +technologies,electrolyzer,model_inputs,performance_parameters,include_degradation_penalty,,bool,TRUE,FALSE +technologies,electrolyzer,model_inputs,financial_parameters,capital_items,replacement_cost_percent,float,0.15,0.25 diff --git a/examples/12_ammonia_synloop/run_ammonia_synloop.py b/examples/12_ammonia_synloop/run_ammonia_synloop.py index 2db1872cd..f81d9c6b2 100644 --- a/examples/12_ammonia_synloop/run_ammonia_synloop.py +++ b/examples/12_ammonia_synloop/run_ammonia_synloop.py @@ -1,10 +1,23 @@ +from pathlib import Path + +from h2integrate.tools.run_cases import modify_tech_config, load_tech_config_cases from h2integrate.core.h2integrate_model import H2IntegrateModel # Create a H2Integrate model model = H2IntegrateModel("12_ammonia_synloop.yaml") -# Run the model -model.run() +# Load cases +case_file = Path("hb_inputs.csv") +cases = load_tech_config_cases(case_file) -model.post_process() +# Modify and run the model for different cases +caselist = [ + "Haber Bosch Big", + "Haber Bosch Small", +] +for casename in caselist: + case = cases[casename] + model = modify_tech_config(model, case) + model.run() + model.post_process() diff --git a/h2integrate/tools/inflation/cepci.csv b/h2integrate/tools/inflation/cepci.csv index 21e801512..4aa6f59cc 100644 --- a/h2integrate/tools/inflation/cepci.csv +++ b/h2integrate/tools/inflation/cepci.csv @@ -27,3 +27,4 @@ Year,CEPCI 2021,628 2022,794 2023,801 +2024,800 diff --git a/h2integrate/tools/run_cases.py b/h2integrate/tools/run_cases.py new file mode 100644 index 000000000..65ef7e197 --- /dev/null +++ b/h2integrate/tools/run_cases.py @@ -0,0 +1,131 @@ +import operator +from functools import reduce + +import pandas as pd + + +def cast_by_name(type_name, value): + """Cast a string read in from an input file as a data type also given as a string. + Currently allowed data types: int, float, bool, str + + Args: + type_name (str): The data type to cast into, as a string. + value (str): The value, as a string. + + Returns: + The value in the specified data type + """ + + bool_map = {"true": True, "false": False, "yes": True, "no": False, "1": True, "0": False} + + trusted_types = ["int", "float", "bool", "str"] ## others as needed + if type_name in trusted_types: + if type_name == "bool": + return bool_map.get(value.lower()) + else: + return __builtins__[type_name](value) + else: + msg = f"Specified data type {type_name} invalid, must be one of {trusted_types}" + raise TypeError(msg) + + +def get_from_dict(dataDict, mapList): + """Get value from nested dictionary using a list of keys. + + Allows for programmatic calling of items in a nested dict using a variable-length list. + Instead of dataDict[item1][item2][item3][item4][item5], you can use + get_from_dict(dataDict, [item1, item2, item3, item4, item5]). + + Args: + dataDict (dict): The nested dictionary to access. + mapList (list): List of keys to traverse the nested dictionary. + + Returns: + The value at the specified nested location in the dictionary. + + Example: + >>> data = {"a": {"b": {"c": 42}}} + >>> get_from_dict(data, ["a", "b", "c"]) + 42 + """ + return reduce(operator.getitem, mapList, dataDict) + + +def set_in_dict(dataDict, mapList, value): + """Set value in nested dictionary using a list of keys. + + Allows for programmatic setting of items in a nested dict using a variable-length list. + Instead of dataDict[item1][item2][item3][item4][item5] = value, you can use + set_in_dict(dataDict, [item1, item2, item3, item4, item5], value). + + Args: + dataDict (dict): The nested dictionary to modify. + mapList (list): List of keys to traverse the nested dictionary. + value: The value to set at the specified nested location. + + Example: + >>> data = {"a": {"b": {}}} + >>> set_in_dict(data, ["a", "b", "c"], 42) + >>> data["a"]["b"]["c"] + 42 + """ + get_from_dict(dataDict, mapList[:-1])[mapList[-1]] = value + + +def load_tech_config_cases(case_file): + """Load extensive lists of values from a spreadsheet to run many different cases. + + Loads tech_config values from a CSV file to run multiple cases with different + technology configuration values. + + Args: + case_file (Path): Path to the .csv file where the different tech_config values + are listed. The CSV must be formatted with "Index 1", "Index 2", etc. + columns followed by case name columns. Each row should have "technologies" + as the first index value, followed by tech_name and parameter names. + + Returns: + pd.DataFrame: DataFrame with the indexes of the tech_config as a MultiIndex + and the different case names as the column names. + + Note: + The CSV format should be: + | "Index 1" |...| "Index " | "Type" | |...| | + | "technologies" |...| | "float" | |...| | + | "technologies" |...| | "str" | |...| | + + If some parameters are nested deeper than others, make as many Index columns for the deepest- + nested parameters and leave any unused Indexes blank. + + See example .csv in h2integrate/tools/test/test_inputs.csv + """ + tech_config_cases = pd.read_csv(case_file) + column_names = tech_config_cases.columns.values + index_names = list(filter(lambda x: "Index" in x, column_names)) + index_names.append("Type") + tech_config_cases = tech_config_cases.set_index(index_names) + + return tech_config_cases + + +def modify_tech_config(h2i_model, tech_config_case): + """Modify particular tech_config values on an existing H2I model before it is run. + + Args: + h2i_model: H2IntegrateModel that has been set up but not run. + tech_config_case (pd.Series): Series that was indexed from tech_config_cases + DataFrame containing the parameter values to modify. + + Returns: + H2IntegrateModel: The H2IntegrateModel with modified tech_config values. + """ + for index_tup, value in tech_config_case.items(): + index_list = list(index_tup) + data_type = index_list[-1] + index_list = index_list[:-1] + # Remove nans from blank index fields + while type(index_list[-1]) is not str: + index_list = index_list[:-1] + set_in_dict(h2i_model.technology_config, index_list, cast_by_name(data_type, value)) + + return h2i_model diff --git a/h2integrate/tools/test/test_inputs.csv b/h2integrate/tools/test/test_inputs.csv new file mode 100644 index 000000000..8194d3a11 --- /dev/null +++ b/h2integrate/tools/test/test_inputs.csv @@ -0,0 +1,5 @@ +Index 0,Index 1,Index 2,Index 3,Index 4,Index 5,Type,Float Test,Int Test,Bool Test,Str Test +technologies,solar,model_inputs,performance_parameters,pv_capacity_kWdc,,float,100000.,150000.,150000.,150000. +technologies,electrolyzer,model_inputs,performance_parameters,n_clusters,,int,18,20,18,18 +technologies,electrolyzer,model_inputs,performance_parameters,include_degradation_penalty,,bool,TRUE,TRUE,FALSE,TRUE +technologies,electrolyzer,model_inputs,performance_parameters,sizing,size_for,str,BOL,BOL,BOL,EOL diff --git a/h2integrate/tools/test/test_tools.py b/h2integrate/tools/test/test_tools.py new file mode 100644 index 000000000..1221a84df --- /dev/null +++ b/h2integrate/tools/test/test_tools.py @@ -0,0 +1,55 @@ +import os +from pathlib import Path + +import pytest + +from h2integrate import EXAMPLE_DIR +from h2integrate.tools.run_cases import modify_tech_config, load_tech_config_cases +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +def test_tech_config_modifier(subtests): + """Test cases for modifying and running tech_config from csv. + Using 15 example as test case + """ + + # Make an H2I model from the 15 example + os.chdir(EXAMPLE_DIR / "15_wind_solar_electrolyzer") + example_yaml = "15_wind_solar_electrolyzer.yaml" + model = H2IntegrateModel(example_yaml) + + # Modify using csv + case_file = Path(__file__).resolve().parent / "test_inputs.csv" + cases = load_tech_config_cases(case_file) + with subtests.test("float"): + case = cases["Float Test"] + model = modify_tech_config(model, case) + model.run() + assert ( + pytest.approx(model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0], rel=1e-3) + == 5.327792370180044 + ) + with subtests.test("bool"): + case = cases["Bool Test"] + model = modify_tech_config(model, case) + model.run() + assert ( + pytest.approx(model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0], rel=1e-3) + == 5.226443205147294 + ) + with subtests.test("int"): + case = cases["Int Test"] + model = modify_tech_config(model, case) + model.run() + assert ( + pytest.approx(model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0], rel=1e-3) + == 5.4601971211592115 + ) + with subtests.test("str"): + case = cases["Str Test"] + model = modify_tech_config(model, case) + model.run() + assert ( + pytest.approx(model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0], rel=1e-3) + == 5.22644320514729 + ) From ee0d2a777af0a290a46599e3897e0bd533f6ee36 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Mon, 6 Oct 2025 23:16:10 -0600 Subject: [PATCH 26/79] Custom Finance Model (#247) * intermediate udpates to h2integrate_model for user defined custom finance models * added ability to have user defined custom finance model and showcased in example 8 * updated docs * updated CHANGELOG * Minor reordering in docs * Fix pre-commit spacing * simplified simple_lco finance model in example 8 * updated doc page based on feedback * updated example 8 test value because of prior changes to wind resource --------- Co-authored-by: John Jasa --- CHANGELOG.md | 1 + docs/finance_models/finance_index.md | 16 +++ ...ow_to_interface_with_user_defined_model.md | 26 +++-- .../08_wind_electrolyzer/plant_config.yaml | 60 +++++++---- .../user_finance_model/simple_lco.py | 102 ++++++++++++++++++ h2integrate/core/h2integrate_model.py | 78 +++++++++++--- tests/h2integrate/test_all_examples.py | 33 ++++++ 7 files changed, 271 insertions(+), 45 deletions(-) create mode 100644 examples/08_wind_electrolyzer/user_finance_model/simple_lco.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 66322d67e..fd51251bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## 0.4.x [TBD] - Added `tools/run_cases.py` with tools to run different `tech_config` cases from a spreadsheet, with new docs page to describe: docs/user_guide/how_to_run_several_cases_in_sequence.md +- Added capability for user-defined finance models in the H2Integrate framework ## 0.4.0 [October 1, 2025] diff --git a/docs/finance_models/finance_index.md b/docs/finance_models/finance_index.md index 5df3e83e9..043c2e0ae 100644 --- a/docs/finance_models/finance_index.md +++ b/docs/finance_models/finance_index.md @@ -19,3 +19,19 @@ The `commodity_type` and `description` are used in the finance model naming conv ## Currently supported general finance models - [``ProFastComp``](profastcomp:profastcompmodel): calculates levelized cost of commodity using ProFAST. + +## Custom finance models + +A general finance model can be defined similarly to a custom technology model. A custom finance model should be defined in the plant configuration file within the `finance_groups` section under `finance_parameters`. + +Below shows an example, similar to the [Wind Electrolyzer Example](https://github.com/NREL/H2Integrate/tree/develop/examples/08_wind_electrolyzer/) of how to define a custom finance model within the `plant_config.yaml` file: +```yaml +finance_parameters: + finance_groups: + my_finance_model: + finance_model: simple_lco_finance #this is the key to give it in for supported models + finance_model_class_name: SimpleLCOFinance #name of the finance class + finance_model_location: user_finance_model/simple_lco.py #filepath of the finance model relative to the plant_config.yaml file + model_inputs: #inputs for the finance model + discount_rate: 0.09 +``` diff --git a/docs/user_guide/how_to_interface_with_user_defined_model.md b/docs/user_guide/how_to_interface_with_user_defined_model.md index 75d349fa4..709894cd9 100644 --- a/docs/user_guide/how_to_interface_with_user_defined_model.md +++ b/docs/user_guide/how_to_interface_with_user_defined_model.md @@ -13,19 +13,29 @@ Users may want to: This feature allows any custom model that conforms to OpenMDAO standards and uses the appropriate configuration interfaces to be used within the H2Integrate ecosystem. -## Example: paper mill model +## Examples -To demonstrate this capability, we include a minimal example of a custom model: a **paper mill**. This example includes: +The models in the following two examples use standard H2Integrate configuration utilities and OpenMDAO components. + +```{note} +You can combine an existing H2Integrate model and a custom model for the same technology within a single analysis. For example, you can use a built-in performance model and a custom finance model for a given technology. +``` + +### Custom Technology Model Example: paper mill model + +To demonstrate this capability, we include a minimal example of a custom technology model: a **paper mill**. This example includes: - A `PaperMillPerformance` model that converts electricity input to paper output. - A `PaperMillCost` model that estimates capital and operational expenditures. -- A `PaperMillFinance` model that computes the levelized cost of paper production (LCOP). +- A `PaperMillFinance` technology finance model that computes the levelized cost of paper production (LCOP). -These models use standard H2Integrate configuration utilities and OpenMDAO components. +Refer to the [Paper Mill Model Example](https://github.com/NREL/H2Integrate/tree/develop/examples/06_custom_tech/) for a complete walkthrough. -```{note} -You can combine an H2Integrate model and a custom model for the same technology within a single analysis. -``` +### Custom General Finance Model Example: simple LCO finance model + +To demonstrate this capability, we include an example of a custom general finance model: a **simple LCO (levelized cost of) calculation** found in [Example 08: Wind Electrolyzer Example](https://github.com/NREL/H2Integrate/tree/develop/examples/08_wind_electrolyzer/). This example includes: +- A `SimpleLCOFinanceConfig`: configuration class that is populated with inputs specific to that finance model. +- A `SimpleLCOFinance` general finance model that computes the levelized cost of a commodity ## Key benefits @@ -65,8 +75,6 @@ After learning the basic structure from those models, you can follow these steps Your custom model cannot have the same name as an existing H2Integrate model. To remove ambiguity of which model would be used, an error will be raised if a custom model shares a name with an existing H2Integrate model. ``` -Refer to the [Paper Mill Model Example](https://github.com/NREL/H2Integrate/tree/develop/examples/06_custom_tech/) for a complete walkthrough. - This feature supports broader adoption of H2I by allowing integration with the tools and models users already trust. ```{note} diff --git a/examples/08_wind_electrolyzer/plant_config.yaml b/examples/08_wind_electrolyzer/plant_config.yaml index 6a06fc1a7..841d53674 100644 --- a/examples/08_wind_electrolyzer/plant_config.yaml +++ b/examples/08_wind_electrolyzer/plant_config.yaml @@ -34,6 +34,7 @@ technology_interconnections: [ ["wind", "electrolyzer", "electricity", "cable"], # etc ] + resource_to_tech_connections: [ # connect the wind resource to the wind technology ['wind_resource', 'wind', 'wind_resource_data'], @@ -41,28 +42,49 @@ resource_to_tech_connections: [ finance_parameters: finance_groups: - commodity: "hydrogen" - finance_model: "ProFastComp" - model_inputs: - params: - analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis - discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default - capital_items: + custom_model: + finance_model: simple_lco_finance + finance_model_class_name: SimpleLCOFinance + finance_model_location: user_finance_model/simple_lco.py + model_inputs: + discount_rate: 0.09 + profast_model: + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: depr_type: "MACRS" # can be "MACRS" or "Straight line" depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] + finance_subgroups: + electricity_profast: + commodity: "electricity" + finance_groups: ["profast_model"] + technologies: ["wind"] + electricity_custom: + commodity: "electricity" + finance_groups: ["custom_model"] + technologies: ["wind"] + hydrogen: + commodity: "hydrogen" + commodity_desc: "produced" + finance_groups: ["custom_model","profast_model"] + technologies: ["wind", "electrolyzer"] + cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py b/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py new file mode 100644 index 000000000..aba42b3a6 --- /dev/null +++ b/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py @@ -0,0 +1,102 @@ +import numpy as np +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig +from h2integrate.core.validators import gt_zero, range_val + + +@define +class SimpleLCOFinanceConfig(BaseConfig): + discount_rate: float = field(validator=range_val(0, 1)) + plant_life: int = field(converter=int, validator=gt_zero) + + +class SimpleLCOFinance(om.ExplicitComponent): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + self.options.declare("commodity_type", types=str) + self.options.declare("description", types=str, default="") + + def setup(self): + if self.options["commodity_type"] == "electricity": + commodity_units = "kW*h/year" + lco_units = "USD/kW/h" + else: + commodity_units = "kg/year" + lco_units = "USD/kg" + + # Make unique names for outputs + LCO_base_str = f"LCO{self.options['commodity_type'][0].upper()}" + self.output_txt = ( + self.options["commodity_type"].lower() + if self.options["description"] == "" + else f"{self.options['commodity_type'].lower()}_{self.options['description']}" + ) + self.LCO_str = ( + LCO_base_str + if self.options["description"] == "" + else f"{LCO_base_str}_{self.options['description']}" + ) + + # add inputs for commodity production and costs + self.add_input( + f"total_{self.options['commodity_type']}_produced", + val=0.0, + units=commodity_units, + ) + tech_config = self.tech_config = self.options["tech_config"] + for tech in tech_config: + self.add_input(f"capex_adjusted_{tech}", val=0.0, units="USD") + self.add_input(f"opex_adjusted_{tech}", val=0.0, units="USD/year") + + # add plant life to the input config dictionary + finance_config = self.options["plant_config"]["finance_parameters"]["model_inputs"] + finance_config.update({"plant_life": self.options["plant_config"]["plant"]["plant_life"]}) + + # initialize config + self.config = SimpleLCOFinanceConfig.from_dict(finance_config) + + # add outputs + self.add_output(self.LCO_str, val=0.0, units=lco_units) + self.add_output(f"total_capital_cost_{self.output_txt}", val=0.0, units="USD") + self.add_output( + f"annual_fixed_costs_{self.output_txt}", + val=0.0, + shape=self.config.plant_life, + units="USD", + ) + + def compute(self, inputs, outputs): + annual_output = float(inputs[f"total_{self.options['commodity_type']}_produced"][0]) + + total_capex = 0 + total_fixed_om = 0 + + for tech in self.tech_config: + tech_model_inputs = self.tech_config[tech].get("model_inputs") + if tech_model_inputs is None: + continue # Skip this tech if no model_inputs + one_time_capital_cost = float(inputs[f"capex_adjusted_{tech}"][0]) + fixed_om_cost_per_year = float(inputs[f"opex_adjusted_{tech}"][0]) + + total_capex += one_time_capital_cost + total_fixed_om += fixed_om_cost_per_year + + # initialize outputs per year + annual_production = np.zeros(self.config.plant_life) + annual_OM = np.zeros(self.config.plant_life) + + for y in range(self.config.plant_life): + denom = (1 + self.config.discount_rate) ** y + annual_production[y] = annual_output / denom + annual_OM[y] = total_fixed_om / denom + + lco = (total_capex + np.sum(annual_OM)) / np.sum(annual_production) + + # add outputs + outputs[self.LCO_str] = lco + outputs[f"total_capital_cost_{self.output_txt}"] = total_capex + outputs[f"annual_fixed_costs_{self.output_txt}"] = annual_OM diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index a5f61a7e8..ea4dc8f30 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -71,31 +71,40 @@ def load_config(self, config_file): self.tech_config_path = config_path.parent / config.get("technology_config") self.technology_config = load_tech_yaml(self.tech_config_path) self.plant_config = load_plant_yaml(config_path.parent / config.get("plant_config")) + self.plant_config_path = config_path.parent / config.get("plant_config") - def collect_custom_models(self): - """ - Collect custom models from the technology configuration. - - This method loads custom models from the specified directory and adds them to the + def create_custom_models(self, model_config, config_parent_path, model_types, prefix=""): + """This method loads custom models from the specified directory and adds them to the supported models dictionary. + + Args: + model_config (dict): dictionary containing models, such as + `technology_config["technologies"]` + config_parent_path (Path): parent path of the input file that `model_config` comes from. + Should either be `plant_config_path.parent` or `tech_config_path.parent` + model_types (list[str]): list of keynames to search for in `model_config.values()`. + Should be ["performance_model", "cost_model", "financial_model"] if `model_config` + is technology_config["technologies"]. + prefix (str, optional): Prefix of "model_class_name", "model_location" and "model". + Defaults to "". Should be "finance_" if looking for custom general finance models. """ - for tech_name, tech_config in self.technology_config["technologies"].items(): - for model_type in ["performance_model", "cost_model", "finance_model"]: - if model_type in tech_config: - model_name = tech_config[model_type].get("model") + for name, config in model_config.items(): + for model_type in model_types: + if model_type in config: + model_name = config[model_type].get(f"{prefix}model") if (model_name not in self.supported_models) and (model_name is not None): - model_class_name = tech_config[model_type].get("model_class_name") - model_location = tech_config[model_type].get("model_location") + model_class_name = config[model_type].get(f"{prefix}model_class_name") + model_location = config[model_type].get(f"{prefix}model_location") if not model_class_name or not model_location: raise ValueError( - f"Custom {model_type} for {tech_name} must specify " - "'model_class_name' and 'model_location'." + f"Custom {model_type} for {name} must specify " + f"'{prefix}model_class_name' and '{prefix}model_location'." ) # Resolve the full path of the model location - model_path = self.tech_config_path.parent / model_location + model_path = config_parent_path / model_location if not model_path.exists(): raise FileNotFoundError( @@ -113,11 +122,11 @@ def collect_custom_models(self): else: if ( - tech_config[model_type].get("model_class_name") is not None - or tech_config[model_type].get("model_location") is not None + config[model_type].get(f"{prefix}model_class_name") is not None + or config[model_type].get(f"{prefix}model_location") is not None ): msg = ( - f"Custom model_class_name or model_location " + f"Custom {prefix}model_class_name or {prefix}model_location " f"specified for '{model_name}', " f"but '{model_name}' is a built-in H2Integrate " "model. Using built-in model instead is not allowed. " @@ -126,6 +135,41 @@ def collect_custom_models(self): ) raise ValueError(msg) + def collect_custom_models(self): + """Collect custom models from the technology configuration and + general finance models found in the plant configuration. + """ + # check for custom technology models + self.create_custom_models( + self.technology_config["technologies"], + self.tech_config_path.parent, + ["performance_model", "cost_model", "finance_model"], + ) + + # check for custom finance models + if "finance_parameters" in self.plant_config: + finance_groups = self.plant_config["finance_parameters"]["finance_groups"] + + # check for single custom finance models + if "model_inputs" in finance_groups: + self.create_custom_models( + self.plant_config, + self.plant_config_path.parent, + ["finance_groups"], + prefix="finance_", + ) + + # check for named finance models + if any("model_inputs" in v for k, v in finance_groups.items()): + finance_model_names = [k for k, v in finance_groups.items() if "model_inputs" in v] + finance_groups_config = {"finance_groups": finance_groups} + self.create_custom_models( + finance_groups_config, + self.plant_config_path.parent, + finance_model_names, + prefix="finance_", + ) + def create_site_model(self): site_group = om.Group() diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index d3300fb80..ff48c2b85 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -710,6 +710,39 @@ def test_electrolyzer_om_example(subtests): assert pytest.approx(lcoh_with_lcoe_finance, rel=1e-5) == 8.00321771 +def test_wombat_electrolyzer_example(subtests): + # Change the current working directory to the example's directory + os.chdir(EXAMPLE_DIR / "08_wind_electrolyzer") + + # Create a H2Integrate model + model = H2IntegrateModel(Path.cwd() / "wind_plant_electrolyzer.yaml") + + model.run() + + lcoe_with_profast_model = model.prob.get_val( + "finance_subgroup_electricity_profast.LCOE", units="USD/MW/h" + )[0] + lcoe_with_custom_model = model.prob.get_val( + "finance_subgroup_electricity_custom.LCOE", units="USD/MW/h" + )[0] + + lcoh_with_custom_model = model.prob.get_val( + "finance_subgroup_hydrogen.LCOH_produced_custom_model", units="USD/kg" + )[0] + lcoh_with_profast_model = model.prob.get_val( + "finance_subgroup_hydrogen.LCOH_produced_profast_model", units="USD/kg" + )[0] + + with subtests.test("Check LCOH from custom model"): + assert pytest.approx(lcoh_with_custom_model, rel=1e-5) == 4.19232346 + with subtests.test("Check LCOH from ProFAST model"): + assert pytest.approx(lcoh_with_profast_model, rel=1e-5) == 5.32632237 + with subtests.test("Check LCOE from custom model"): + assert pytest.approx(lcoe_with_custom_model, rel=1e-5) == 51.17615298 + with subtests.test("Check LCOE from ProFAST model"): + assert pytest.approx(lcoe_with_profast_model, rel=1e-5) == 59.0962084 + + def test_wind_battery_dispatch_example(subtests): # Change the current working directory to the example's directory os.chdir(EXAMPLE_DIR / "19_wind_battery_dispatch") From d18a47c8b487e91a458da15026d1bb060e7ec2f1 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Mon, 6 Oct 2025 23:41:32 -0600 Subject: [PATCH 27/79] Throw error for missing resource or missing resource connection (#284) * added errors for missing resource connection or missing resource * indented assert statements in new tests * Minor error message updates --------- Co-authored-by: John Jasa --- h2integrate/core/h2integrate_model.py | 35 +++++++++++ h2integrate/core/test/test_framework.py | 84 +++++++++++++++++++++++++ 2 files changed, 119 insertions(+) diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index ea4dc8f30..105524f10 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -737,6 +737,41 @@ def connect_technologies(self): resource_to_tech_connections = self.plant_config.get("resource_to_tech_connections", []) + resource_models = self.plant_config.get("site", {}).get("resources", {}) + resource_source_connections = [c[0] for c in resource_to_tech_connections] + # Check if there is a missing resource to tech connection or missing resource model + if len(resource_models) != len(resource_source_connections): + if len(resource_models) > len(resource_source_connections): + # more resource models than resources connected to technologies + non_connected_resource = [ + k for k in resource_models if k not in resource_source_connections + ] + # check if theres a resource model that isn't connected to a technology + if len(non_connected_resource) > 0: + msg = ( + "Some resources are not connected to a technology. Resource models " + f"{non_connected_resource} are not included in " + "`resource_to_tech_connections`. Please connect these resources " + "to their technologies under `resource_to_tech_connections` in " + "the plant config file." + ) + raise ValueError(msg) + if len(resource_source_connections) > len(resource_models): + # more resources connected than resource models + missing_resource = [ + k for k in resource_source_connections if k not in resource_models + ] + # check if theres a resource model that isn't connected to a technology + if len(missing_resource) > 0: + msg = ( + "Missing resource(s) are not defined but are connected to a technology. " + f"Missing resource(s) are {missing_resource}. " + "Please check ``resource_to_tech_connections`` in the plant config file " + "or add the missing resources" + " to plant_config['site']['resources']." + ) + raise ValueError(msg) + for connection in resource_to_tech_connections: if len(connection) != 3: err_msg = f"Invalid resource to tech connection: {connection}" diff --git a/h2integrate/core/test/test_framework.py b/h2integrate/core/test/test_framework.py index ac6b6387f..00e6e8898 100644 --- a/h2integrate/core/test/test_framework.py +++ b/h2integrate/core/test/test_framework.py @@ -191,3 +191,87 @@ def test_technology_connections(): # Clean up temporary YAML files temp_plant_config.unlink(missing_ok=True) temp_highlevel_yaml.unlink(missing_ok=True) + + +def test_resource_connection_error_missing_connection(): + os.chdir(examples_dir / "08_wind_electrolyzer") + + # Path to the original plant_config.yaml and high-level yaml in the example directory + orig_plant_config = Path.cwd() / "plant_config.yaml" + temp_plant_config = Path.cwd() / "temp_plant_config.yaml" + orig_highlevel_yaml = Path.cwd() / "wind_plant_electrolyzer.yaml" + temp_highlevel_yaml = Path.cwd() / "temp_08_wind_electrolyzer.yaml" + + shutil.copy(orig_plant_config, temp_plant_config) + shutil.copy(orig_highlevel_yaml, temp_highlevel_yaml) + + # Load the plant_config YAML content + plant_config_data = load_plant_yaml(temp_plant_config) + + # Remove resource to tech connection + plant_config_data.pop("resource_to_tech_connections") + + # Save the modified tech_config YAML back + with temp_plant_config.open("w") as f: + yaml.safe_dump(plant_config_data, f) + + # Load the high-level YAML content + with temp_highlevel_yaml.open() as f: + highlevel_data = yaml.safe_load(f) + + # Modify the high-level YAML to point to the temp tech_config file + highlevel_data["plant_config"] = str(temp_plant_config.name) + + # Save the modified high-level YAML back + with temp_highlevel_yaml.open("w") as f: + yaml.safe_dump(highlevel_data, f) + + with pytest.raises(ValueError) as excinfo: + H2IntegrateModel(temp_highlevel_yaml) + assert "Resource models ['wind_resource'] are not in" in str(excinfo.value) + + # Clean up temporary YAML files + temp_plant_config.unlink(missing_ok=True) + temp_highlevel_yaml.unlink(missing_ok=True) + + +def test_resource_connection_error_missing_resource(): + os.chdir(examples_dir / "08_wind_electrolyzer") + + # Path to the original plant_config.yaml and high-level yaml in the example directory + orig_plant_config = Path.cwd() / "plant_config.yaml" + temp_plant_config = Path.cwd() / "temp_plant_config.yaml" + orig_highlevel_yaml = Path.cwd() / "wind_plant_electrolyzer.yaml" + temp_highlevel_yaml = Path.cwd() / "temp_08_wind_electrolyzer.yaml" + + shutil.copy(orig_plant_config, temp_plant_config) + shutil.copy(orig_highlevel_yaml, temp_highlevel_yaml) + + # Load the plant_config YAML content + plant_config_data = load_plant_yaml(temp_plant_config) + + # Remove resource + plant_config_data["site"]["resources"].pop("wind_resource") + + # Save the modified tech_config YAML back + with temp_plant_config.open("w") as f: + yaml.safe_dump(plant_config_data, f) + + # Load the high-level YAML content + with temp_highlevel_yaml.open() as f: + highlevel_data = yaml.safe_load(f) + + # Modify the high-level YAML to point to the temp tech_config file + highlevel_data["plant_config"] = str(temp_plant_config.name) + + # Save the modified high-level YAML back + with temp_highlevel_yaml.open("w") as f: + yaml.safe_dump(highlevel_data, f) + + with pytest.raises(ValueError) as excinfo: + H2IntegrateModel(temp_highlevel_yaml) + assert "Missing resource(s) are ['wind_resource']." in str(excinfo.value) + + # Clean up temporary YAML files + temp_plant_config.unlink(missing_ok=True) + temp_highlevel_yaml.unlink(missing_ok=True) From bbe15280a6c22ff27cd6da41f274e64c95282a64 Mon Sep 17 00:00:00 2001 From: kbrunik Date: Tue, 7 Oct 2025 09:04:47 -0500 Subject: [PATCH 28/79] minor clean up --- .../plant_config_co2h.yaml | 11 - .../tech_config_co2h.yaml | 9 - .../tech_inputs/hopp_config.yaml | 21 +- ...29.2_-94.6_windtoolkit_2013_60min_100m.srw | 8765 ----------------- ...29.2_-94.6_windtoolkit_2013_60min_120m.srw | 8765 ----------------- h2integrate/storage/co2/tank_baseclass.py | 74 - 6 files changed, 2 insertions(+), 17643 deletions(-) delete mode 100644 examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m.srw delete mode 100644 examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_120m.srw delete mode 100644 h2integrate/storage/co2/tank_baseclass.py diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index 3d5426462..9b83cb92b 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -17,17 +17,6 @@ site: } ] - resources: - # probably want to pre-load wind and solar data for this site - # but also want to figure out why the API call isn't working - wind_resource: # API call isn't working right now (ask Elenya) - resource_model: "wind_toolkit_v2_api" - resource_parameters: - resource_year: 2012 - -# array of arrays containing left-to-right technology -# interconnections; can support bidirectional connections -# with the reverse definition. # this will naturally grow as we mature the interconnected tech technology_interconnections: [ ["hopp", "electricity_splitter", "electricity", "cable"], diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 2e127c56a..02358d7fe 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -8,9 +8,6 @@ technologies: config: !include tech_inputs/hopp_config.yaml cost_model: model: "hopp" - financial_model: - group: "1" - electrolyzer_rating: 300. # MW model_inputs: cost_parameters: cost_year: 2019 @@ -25,8 +22,6 @@ technologies: model: "eco_pem_electrolyzer_performance" cost_model: model: "singlitico_electrolyzer_cost" - financial_model: - group: "1" model_inputs: shared_parameters: location: "onshore" @@ -78,8 +73,6 @@ technologies: model: "direct_ocean_capture_performance" cost_model: model: "direct_ocean_capture_cost" - financial_model: - group: "1" model_inputs: shared_parameters: power_single_ed_w: 2858628.25565643 # W @@ -132,8 +125,6 @@ technologies: model: "co2h_methanol_plant_performance" cost_model: model: "co2h_methanol_plant_cost" - financial_model: - group: "1" model_inputs: shared_parameters: plant_capacity_kgpy: 94731053.0605257 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml index 69ff4dd17..8a33d84fa 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/hopp_config.yaml @@ -1,4 +1,4 @@ -site: #!include flatirons_site.yaml +site: data: lat: 29.2 lon: -94.6 @@ -31,31 +31,14 @@ technologies: wind: num_turbines: 24 turbine_rating_kw: 15000.0 - model_name: pysam #floris + model_name: pysam timestep: [0, 8760] - # floris_config: !include floris_input_lbw_6MW.yaml fin_model: !include default_fin_config.yaml grid: interconnect_kw: 360000 # Set higher than rated generation capacity fin_model: !include default_fin_config.yaml config: - simulation_options: - cache: true - wind: - skip_financial: false - dispatch_options: - battery_dispatch: load_following_heuristic # load_following_heuristic #heuristic - solver: cbc - n_look_ahead_periods: 48 - grid_charging: false - pv_charging_only: false - include_lifecycle_count: false cost_info: wind_installed_cost_mw: 1380000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for land-based wind. 2025 used as an overnight-capex lock-in date for 2030 operation - solar_installed_cost_mw: 1323000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale pv. 2025 used as an overnight-capex lock-in date for 2030 operation - storage_installed_cost_mwh: 310000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation - storage_installed_cost_mw: 311000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation wind_om_per_kw: 29 # (2022USD) 2030 costs in 2022 USD from 2024 ATB for land-based wind - pv_om_per_kw: 18 # (2022USD) 2030 costs in 2022 USD from NREL 2024 ATB for utility-scale PV - battery_om_per_kw: 15.525 # (2022USD) based on 2.5 percent of battery capex/kW for a 1-hour battery using both power and energy costs above diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m.srw b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m.srw deleted file mode 100644 index a1a04d5ef..000000000 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_100m.srw +++ /dev/null @@ -1,8765 +0,0 @@ -1379078,city??,state??,country??,2013,29.2054595947,-94.593170166,Not Available,1,8760 -WIND Toolkit data from NREL downloaded on 2025-8-5 -Temperature,Pressure,Speed,Direction -C,atm,m/s,Degrees -100,100,100,100 -20.1,0.99,12.400,179.6 -20.3,0.99,13.320,183.3 -20.2,0.99,13.250,187.3 -20.2,0.99,13.070,188.0 -20.2,0.99,13.430,187.3 -20.1,0.99,12.300,192.0 -20.4,0.99,11.630,184.2 -19.7,0.99,9.180,182.4 -14.9,0.99,11.510,347.4 -13.5,0.99,12.420,355.4 -12.8,0.99,13.690,5.8 -12.6,0.99,13.340,4.3 -12.3,0.99,13.450,5.3 -12.0,0.99,12.340,7.2 -12.0,0.99,11.260,13.8 -11.8,0.99,11.140,3.8 -11.5,0.99,10.530,5.2 -11.2,0.99,10.440,8.8 -11.0,0.99,10.190,9.9 -10.9,0.99,10.460,6.5 -10.6,1.00,11.700,10.2 -10.9,1.00,12.160,16.9 -11.0,1.00,11.520,15.1 -10.3,1.00,11.260,12.3 -9.9,1.00,10.940,16.5 -9.5,1.00,10.710,18.8 -9.2,1.00,11.690,18.1 -8.9,1.00,12.000,16.6 -8.6,1.00,12.500,13.3 -8.3,1.00,11.590,12.0 -8.1,1.00,11.120,15.2 -7.7,1.00,10.700,13.0 -7.4,1.00,10.330,11.3 -7.1,1.00,9.890,8.3 -7.1,1.00,9.320,9.8 -7.2,1.00,8.860,7.1 -7.6,1.00,7.670,7.5 -8.1,1.00,7.640,3.9 -8.6,1.00,7.240,1.6 -8.8,1.00,7.160,2.8 -8.9,1.00,7.440,4.9 -8.7,1.00,7.970,4.2 -8.6,1.00,7.950,9.0 -8.3,1.00,8.100,11.8 -8.0,1.00,8.420,13.8 -7.8,1.00,8.170,16.7 -7.7,1.00,8.980,17.7 -7.5,1.00,9.050,19.6 -7.2,1.00,10.100,18.8 -7.0,1.00,9.970,20.4 -6.9,1.00,10.660,20.9 -6.7,1.00,11.040,20.9 -6.6,1.00,11.320,22.1 -6.5,1.00,11.490,22.6 -6.3,1.00,11.640,22.3 -6.0,1.00,11.570,22.7 -5.8,1.00,11.880,23.4 -5.8,1.00,11.460,26.0 -5.8,1.00,10.810,25.4 -5.9,1.00,9.800,24.5 -6.3,1.00,8.720,21.2 -7.7,1.00,8.580,20.2 -9.1,1.00,7.870,20.9 -10.0,1.00,7.710,17.1 -10.3,1.00,8.500,14.5 -10.4,1.00,8.650,12.5 -10.3,1.00,9.640,16.3 -9.9,1.00,9.420,18.3 -9.7,1.00,10.270,22.3 -9.6,1.00,10.230,27.6 -9.4,1.00,11.060,32.4 -9.3,1.00,11.230,38.2 -9.4,1.00,11.320,41.2 -9.5,1.00,10.200,46.3 -9.6,1.00,10.930,48.5 -9.5,1.00,10.780,45.1 -9.4,1.00,10.810,47.7 -9.3,1.00,10.810,47.8 -9.2,1.00,10.890,40.1 -8.4,1.00,10.210,27.3 -7.9,1.00,10.510,28.2 -7.8,1.00,10.750,32.9 -7.9,1.00,10.750,35.3 -7.9,1.00,10.900,32.8 -7.8,1.00,10.460,34.8 -8.4,1.00,10.080,43.0 -9.0,1.00,10.260,45.0 -9.0,1.00,9.510,38.7 -9.1,1.00,9.310,42.1 -9.6,1.00,9.560,43.9 -9.9,1.00,9.050,42.1 -9.9,1.00,8.330,41.3 -10.3,1.00,8.660,51.9 -10.0,1.00,7.520,42.1 -10.4,1.00,7.740,54.3 -10.5,1.00,7.920,63.5 -10.6,1.00,7.310,76.4 -10.3,1.00,7.190,63.9 -10.6,1.00,5.760,63.4 -10.3,1.00,5.550,67.3 -8.8,1.00,8.420,25.4 -8.9,1.00,8.650,33.3 -8.6,1.00,8.730,20.1 -8.4,1.00,8.630,21.1 -8.3,1.00,9.080,16.4 -8.2,1.00,9.400,23.7 -8.2,1.00,8.550,16.2 -8.1,1.00,9.200,16.5 -8.3,1.00,9.580,19.1 -8.8,1.00,9.100,23.7 -8.8,1.00,9.060,27.1 -9.0,1.00,8.780,17.7 -8.7,1.00,7.780,16.9 -8.4,1.00,9.270,24.5 -8.5,1.00,8.270,17.9 -8.4,1.00,6.050,359.2 -8.4,1.00,7.950,19.7 -8.6,1.00,7.500,18.7 -8.9,1.00,6.410,24.4 -8.8,1.00,8.120,26.0 -8.5,1.00,8.380,10.7 -8.2,1.00,8.370,5.6 -8.4,1.00,8.260,6.2 -8.1,1.00,9.280,8.7 -8.0,1.00,9.850,6.8 -7.8,1.00,9.970,11.4 -7.4,1.00,10.400,10.9 -7.1,1.00,10.760,14.4 -6.7,1.00,10.820,14.4 -5.1,1.00,10.370,9.3 -5.1,1.00,9.930,9.1 -5.2,1.00,9.360,5.7 -5.4,1.00,8.430,0.9 -7.5,1.00,9.860,5.5 -8.5,1.00,8.860,7.9 -9.2,1.00,8.670,8.8 -9.8,1.00,9.110,7.2 -10.2,1.00,9.020,9.3 -10.0,1.00,10.050,14.3 -9.6,1.00,10.260,14.3 -9.3,1.00,10.340,18.4 -9.0,1.00,10.320,25.0 -8.9,1.00,10.090,28.9 -9.0,1.00,10.050,35.0 -9.3,1.00,9.710,42.3 -9.5,1.00,9.030,49.4 -10.2,1.00,10.580,58.4 -10.3,1.00,10.480,63.6 -10.6,1.00,11.010,69.0 -10.5,1.00,10.960,70.7 -10.4,1.00,10.510,66.5 -10.2,1.00,10.470,65.2 -10.0,1.00,10.480,63.1 -9.6,1.00,10.570,58.3 -9.1,1.00,9.680,55.4 -9.3,1.00,8.630,54.8 -9.9,1.00,8.100,63.3 -10.2,1.00,8.100,63.4 -10.4,1.00,7.670,63.1 -10.7,1.00,7.490,64.7 -11.1,1.00,7.280,64.8 -11.4,1.00,7.700,68.3 -12.0,1.00,8.360,72.0 -12.3,1.00,8.500,78.3 -12.6,1.00,9.230,79.5 -12.9,1.00,10.100,80.4 -13.8,0.99,9.750,89.4 -13.9,0.99,8.800,92.7 -14.3,0.99,9.170,87.8 -14.6,0.99,9.270,93.0 -14.8,0.99,9.610,95.4 -14.9,0.99,10.320,91.4 -15.1,0.99,10.850,93.0 -15.3,0.99,12.180,93.5 -15.6,0.99,12.170,95.1 -16.0,0.99,13.600,101.2 -16.1,0.99,12.570,102.2 -16.6,0.99,14.850,109.3 -17.1,0.99,13.870,114.9 -18.4,0.99,14.280,143.8 -18.3,0.99,12.680,137.3 -19.1,0.99,13.120,131.4 -18.8,0.99,12.830,122.0 -18.9,0.99,12.560,127.9 -19.4,0.99,12.770,138.3 -19.8,0.99,12.990,145.0 -19.9,0.99,13.650,145.4 -20.0,0.99,11.300,146.6 -18.9,0.99,10.380,159.1 -19.2,0.99,10.740,180.4 -19.7,0.99,10.250,169.6 -19.6,0.99,9.350,174.8 -19.7,0.99,9.890,172.9 -20.3,0.99,12.640,179.8 -20.7,0.99,10.590,160.7 -20.5,0.99,11.900,148.7 -19.9,0.99,12.820,141.8 -18.6,0.99,16.940,152.3 -18.8,0.99,14.120,152.1 -18.3,0.99,12.400,148.5 -20.1,0.99,12.330,127.4 -19.3,0.99,14.270,114.7 -18.8,0.99,15.400,110.6 -18.7,0.99,11.950,109.0 -18.3,0.99,3.890,125.4 -18.7,0.99,9.440,99.9 -19.5,0.99,9.850,103.0 -18.3,0.99,3.250,221.6 -18.0,0.99,3.010,128.2 -17.8,0.99,7.710,113.6 -18.2,0.99,8.010,118.9 -18.3,0.99,7.500,127.8 -18.7,0.99,10.150,142.7 -17.2,0.99,9.620,136.8 -18.1,0.99,9.630,153.7 -17.8,0.99,7.540,174.8 -17.4,0.99,6.260,199.6 -16.9,0.99,5.370,216.3 -16.2,0.99,6.670,223.6 -15.8,0.99,3.100,232.1 -15.7,0.99,2.620,174.9 -15.2,0.99,2.780,160.0 -15.0,0.99,3.990,170.8 -14.8,0.99,3.240,195.5 -14.7,0.99,3.820,220.5 -14.2,0.99,4.650,205.4 -13.9,0.99,3.850,197.7 -15.8,0.99,5.430,218.5 -16.1,0.99,5.110,213.8 -16.2,0.99,4.910,220.4 -15.5,0.99,5.400,221.0 -15.0,0.99,5.930,215.8 -14.1,0.99,6.180,226.5 -15.1,0.99,5.590,225.5 -15.4,0.99,5.960,222.9 -15.6,0.99,6.870,229.9 -15.5,0.99,6.150,220.5 -15.5,0.99,6.070,223.8 -15.4,0.99,5.780,235.1 -15.0,0.99,4.570,238.0 -15.0,0.99,4.020,241.1 -15.0,0.99,3.490,240.6 -15.2,0.99,2.750,217.7 -15.4,0.99,2.910,231.4 -15.6,0.99,2.440,223.1 -16.1,0.99,1.730,225.6 -16.3,0.99,1.420,198.8 -16.7,0.99,1.320,229.5 -16.5,0.99,1.530,153.3 -16.6,0.99,2.800,121.1 -17.5,0.99,2.390,110.4 -16.3,0.99,4.570,122.1 -16.5,0.99,5.520,121.4 -16.8,0.99,6.180,123.3 -17.2,0.99,5.230,130.0 -17.5,0.99,5.890,126.6 -18.1,0.99,6.180,140.1 -19.2,0.99,9.210,147.2 -19.4,0.99,10.720,155.6 -20.0,0.99,9.760,165.8 -19.9,0.99,11.430,159.5 -20.4,0.99,12.470,151.7 -20.9,0.99,12.320,167.4 -20.9,0.99,12.650,168.1 -21.3,0.99,11.460,167.0 -21.5,0.99,14.760,168.0 -20.7,0.99,12.290,171.8 -20.2,0.99,11.210,162.5 -19.2,0.99,11.740,163.4 -21.0,0.99,15.430,170.7 -19.1,0.99,12.450,158.7 -19.4,0.99,12.120,154.8 -21.7,0.99,13.570,161.2 -19.9,0.99,12.270,152.3 -19.7,0.99,12.850,150.4 -19.9,0.99,13.790,151.3 -20.2,0.99,13.440,158.0 -19.8,0.99,12.220,152.7 -19.9,0.99,12.260,157.0 -20.0,0.99,14.050,155.2 -20.6,0.98,13.820,158.5 -21.0,0.98,13.020,162.6 -20.5,0.98,12.470,158.4 -20.8,0.98,12.410,160.8 -21.1,0.98,12.570,159.1 -20.8,0.98,11.650,157.6 -20.5,0.98,12.130,158.4 -21.1,0.98,17.520,157.0 -21.0,0.98,12.150,162.5 -20.1,0.98,5.360,197.9 -21.2,0.98,8.200,213.4 -21.3,0.98,5.920,225.5 -21.4,0.99,6.860,233.1 -21.9,0.99,9.050,210.5 -15.2,0.99,12.410,320.2 -12.7,0.99,11.920,330.8 -11.1,0.99,13.230,336.3 -10.4,0.99,12.770,342.6 -9.7,0.99,15.090,347.7 -9.4,0.99,14.280,346.6 -9.1,0.99,14.910,356.6 -9.0,0.99,12.430,352.8 -8.9,0.99,12.420,349.9 -8.8,0.99,11.580,355.9 -8.8,0.99,11.790,4.0 -8.7,0.99,12.860,4.4 -8.8,0.99,11.990,9.0 -8.7,0.99,12.570,9.3 -8.5,0.99,12.550,13.0 -8.2,0.99,13.060,15.9 -8.2,0.99,13.070,19.9 -8.1,0.99,12.610,21.8 -8.1,0.99,12.170,21.8 -8.0,0.99,12.550,27.5 -7.9,0.99,11.030,28.0 -7.8,0.99,10.750,28.3 -7.5,0.99,11.200,27.6 -7.0,0.99,11.340,19.5 -6.8,0.99,10.040,11.1 -6.3,0.99,10.070,9.4 -5.9,0.99,11.430,10.0 -5.4,0.99,12.700,14.5 -5.2,1.00,11.710,13.4 -5.0,1.00,11.560,13.1 -4.8,1.00,12.140,12.4 -4.8,1.00,10.830,17.1 -4.8,1.00,11.090,14.9 -4.8,0.99,11.630,20.6 -4.9,0.99,11.560,26.1 -5.0,1.00,10.040,24.1 -5.0,0.99,11.290,25.7 -5.1,0.99,10.610,27.8 -5.2,0.99,9.150,24.7 -5.2,0.99,10.110,29.7 -5.3,0.99,9.250,28.3 -5.5,0.99,8.990,29.5 -5.6,0.99,8.890,31.0 -5.7,0.99,8.610,30.6 -5.6,0.99,8.260,22.4 -5.5,0.99,7.880,21.5 -5.5,0.99,7.320,15.5 -5.4,0.99,7.850,9.3 -5.2,0.99,7.970,4.2 -4.9,0.99,8.580,357.2 -4.8,0.99,9.030,356.5 -4.7,0.99,8.990,355.2 -4.6,0.99,8.850,353.7 -4.4,0.99,9.950,354.4 -4.3,0.99,9.440,356.4 -4.1,0.99,10.110,353.4 -4.0,0.99,9.470,356.7 -3.8,0.99,9.780,352.2 -3.7,0.99,9.660,356.0 -3.6,0.99,9.870,352.8 -3.4,0.99,10.240,350.9 -3.3,0.99,9.700,350.3 -3.1,0.99,11.760,346.2 -2.9,0.99,12.690,345.6 -3.0,1.00,10.010,341.8 -2.8,0.99,11.740,345.8 -2.8,0.99,10.960,347.8 -2.5,1.00,11.710,344.5 -2.4,1.00,12.080,342.1 -2.4,1.00,12.590,340.4 -2.4,1.00,12.790,340.3 -2.4,1.00,11.240,336.2 -2.1,1.00,13.350,343.9 -2.1,1.00,13.260,346.2 -2.3,1.00,13.430,346.4 -2.3,1.00,10.980,340.3 -2.7,1.00,10.290,332.9 -3.0,1.00,10.540,326.1 -3.6,1.00,11.020,319.3 -4.9,1.00,10.380,317.3 -6.0,1.00,9.820,316.6 -6.7,1.00,10.190,318.0 -7.3,1.00,10.900,313.2 -7.7,1.00,10.890,308.8 -7.6,1.00,10.850,304.3 -7.3,1.00,10.010,308.4 -7.2,1.00,9.540,313.4 -7.1,1.00,8.400,314.9 -7.1,1.00,7.420,319.3 -7.7,1.00,8.720,320.7 -7.7,1.00,7.060,322.5 -7.2,1.00,6.130,316.4 -7.0,1.00,5.730,314.0 -6.8,1.00,5.180,317.2 -6.5,1.00,4.900,313.3 -6.4,1.00,4.500,310.4 -6.2,1.00,4.690,308.1 -5.8,1.00,4.380,310.0 -5.7,1.00,4.520,314.4 -5.9,1.00,4.870,321.8 -6.6,1.00,5.370,325.4 -7.3,1.00,5.640,325.1 -8.1,1.00,6.010,324.0 -9.9,1.00,6.620,321.9 -11.0,1.00,6.870,327.9 -11.6,1.00,7.340,329.7 -12.3,1.00,7.540,334.8 -12.7,1.00,7.900,340.7 -12.9,1.00,8.460,347.6 -12.3,1.00,8.080,358.0 -12.1,1.00,8.660,355.4 -11.9,1.01,8.200,1.9 -11.2,1.01,6.680,15.2 -10.7,1.01,6.160,19.2 -10.1,1.01,6.540,23.9 -9.5,1.01,5.850,33.1 -9.7,1.01,5.900,41.3 -9.8,1.01,5.590,48.2 -10.1,1.01,5.590,49.9 -9.9,1.01,6.490,46.8 -10.0,1.01,7.030,55.0 -10.4,1.01,7.260,63.7 -10.5,1.01,7.620,68.1 -10.5,1.01,7.620,68.8 -10.5,1.01,7.550,71.5 -10.5,1.01,6.900,72.1 -10.4,1.01,6.650,76.1 -10.6,1.01,6.000,74.0 -10.6,1.01,5.450,77.5 -10.6,1.00,4.960,77.3 -10.7,1.00,4.740,79.1 -10.9,1.00,4.690,90.8 -11.1,1.00,4.700,91.2 -11.0,1.00,4.540,91.0 -11.0,1.00,4.580,92.4 -11.1,1.00,4.590,92.9 -11.2,1.00,4.050,94.3 -11.2,1.00,3.470,97.3 -11.4,1.00,3.400,105.9 -11.4,1.00,2.770,112.8 -11.4,1.00,2.040,94.3 -11.5,1.00,1.850,100.0 -11.6,1.00,1.710,93.4 -11.5,1.00,1.920,75.0 -11.6,1.00,2.200,73.2 -11.7,1.00,2.180,76.4 -12.0,1.00,2.270,88.4 -12.3,1.00,2.380,99.1 -12.7,1.00,2.570,111.5 -13.0,1.00,2.560,117.0 -13.2,1.00,2.820,119.2 -13.6,1.00,2.490,137.0 -13.8,1.00,2.550,146.2 -13.9,1.00,2.890,149.0 -14.0,1.00,3.050,143.0 -14.1,1.00,2.340,147.7 -14.0,1.00,2.720,135.9 -13.8,1.00,3.330,118.1 -13.6,1.00,3.340,118.6 -13.7,1.00,3.340,133.9 -13.9,1.00,4.650,151.6 -14.2,1.00,3.760,157.4 -14.2,1.00,2.520,170.2 -14.0,1.00,2.610,166.3 -13.7,1.00,2.270,140.1 -14.3,1.00,1.720,180.7 -14.2,1.00,1.660,172.4 -14.5,1.00,1.500,168.7 -14.7,1.00,0.970,179.7 -15.0,1.00,0.700,167.2 -15.3,1.00,0.230,124.0 -14.6,1.00,1.260,88.9 -14.9,1.00,1.710,89.5 -15.2,1.00,1.210,70.4 -14.5,1.00,1.760,71.3 -12.9,1.00,2.660,78.1 -13.6,1.00,2.890,72.2 -12.7,1.00,3.300,93.1 -12.1,1.00,2.600,110.9 -12.2,1.00,2.330,98.3 -11.3,1.00,2.380,118.4 -12.2,1.00,2.390,120.2 -13.4,1.00,3.280,131.2 -13.8,1.00,3.230,139.9 -13.8,1.00,2.880,144.2 -13.7,1.00,2.150,153.0 -14.3,1.00,2.090,162.5 -14.4,1.00,1.510,202.5 -13.1,1.00,0.840,202.6 -13.5,1.00,0.520,260.6 -13.5,1.00,0.530,307.4 -13.5,1.00,1.060,335.4 -13.1,1.00,1.530,353.4 -13.2,1.00,2.450,359.7 -12.3,1.00,2.520,15.9 -13.3,1.00,2.960,17.0 -13.3,1.00,2.750,22.1 -13.8,1.00,3.100,14.0 -14.2,1.00,2.660,26.4 -13.8,1.00,2.710,12.3 -14.6,1.00,2.820,0.9 -15.5,1.00,2.980,356.7 -16.2,1.00,2.780,358.0 -16.2,1.00,2.740,354.6 -16.1,1.00,3.670,348.6 -15.8,1.00,6.070,6.3 -14.4,1.00,6.860,32.0 -13.5,1.00,6.340,38.7 -13.1,1.00,5.700,45.8 -12.9,1.00,5.140,56.9 -13.2,1.00,4.860,64.7 -13.1,1.00,4.880,63.4 -13.1,1.00,5.520,70.3 -12.8,1.00,5.300,69.5 -12.7,1.00,4.880,64.7 -12.6,1.00,4.890,55.2 -12.3,1.00,5.470,51.9 -12.2,1.00,5.770,55.3 -12.1,1.00,5.560,59.8 -12.2,1.00,5.730,63.0 -12.3,1.00,5.410,72.0 -12.5,1.00,5.210,78.7 -12.7,1.00,5.340,90.2 -13.1,1.00,4.220,90.8 -13.2,1.00,4.440,90.6 -13.3,1.00,4.720,95.7 -13.5,1.00,4.840,100.1 -13.7,1.00,5.020,105.0 -13.9,1.00,5.430,111.0 -13.8,1.00,5.910,112.7 -13.9,1.00,6.100,117.2 -14.0,1.00,6.190,122.7 -14.2,1.00,6.160,128.3 -14.4,1.00,5.970,130.3 -14.5,1.00,6.060,134.3 -14.7,1.00,6.130,136.7 -15.1,1.00,6.200,139.8 -15.4,1.00,6.110,142.5 -15.8,1.00,5.930,140.5 -16.2,1.00,5.990,143.3 -16.3,1.00,5.650,146.0 -16.5,1.00,5.370,146.0 -16.7,1.00,5.500,144.9 -16.9,1.00,5.920,147.8 -17.3,1.00,5.850,157.0 -17.3,1.00,6.090,161.9 -17.7,1.00,6.340,164.4 -17.8,1.00,6.190,169.4 -17.7,1.00,6.030,170.9 -17.5,1.00,5.960,170.5 -17.6,1.00,5.960,173.6 -17.9,1.00,6.460,177.8 -17.9,1.00,6.860,182.3 -18.2,1.00,7.700,184.3 -18.3,1.00,8.500,186.0 -18.2,1.00,8.690,188.2 -18.3,1.00,9.460,190.2 -18.2,1.00,9.500,190.5 -18.3,1.00,9.600,192.6 -18.3,1.00,9.710,195.9 -18.4,1.00,9.890,197.4 -18.4,1.00,9.470,202.4 -18.4,1.00,9.170,204.7 -18.6,1.00,9.260,207.9 -18.6,1.00,8.560,209.7 -18.6,1.00,8.780,210.1 -18.7,1.00,7.910,207.8 -18.9,1.00,7.490,208.9 -19.0,1.00,7.400,203.1 -19.2,1.00,7.900,204.1 -19.2,1.00,7.800,200.2 -19.0,1.00,7.450,194.0 -18.6,1.00,7.600,191.0 -18.6,1.00,8.230,188.3 -18.6,1.00,8.370,188.2 -18.7,1.00,8.880,188.2 -18.6,1.00,9.030,187.2 -18.7,1.00,9.770,188.5 -18.6,1.00,10.140,189.2 -18.6,1.00,10.010,188.4 -18.6,1.00,10.500,186.4 -18.5,1.00,10.520,186.4 -18.4,1.00,10.790,185.1 -18.6,1.00,11.500,186.4 -18.6,1.00,10.840,188.1 -18.5,1.00,10.480,189.5 -18.7,1.00,10.910,191.1 -19.1,1.00,10.390,197.5 -18.8,1.00,8.760,200.8 -19.1,1.00,8.770,203.8 -20.0,1.00,9.970,208.9 -19.6,1.00,9.400,195.7 -19.4,1.00,8.540,202.5 -19.4,1.00,8.040,203.7 -19.7,1.00,7.710,208.4 -19.4,1.00,7.230,202.3 -19.1,1.00,7.420,198.4 -19.2,1.00,7.080,195.6 -19.2,1.00,7.750,198.3 -19.2,1.00,7.620,201.7 -19.3,1.00,7.470,199.2 -19.3,1.00,7.360,199.9 -19.4,1.00,6.720,197.8 -19.1,1.00,6.480,189.7 -19.1,1.00,6.710,190.2 -19.0,1.00,7.020,191.2 -18.9,1.00,7.200,196.4 -19.1,1.00,6.940,196.0 -18.9,1.00,6.130,195.9 -19.1,1.00,6.080,195.4 -18.9,1.00,5.240,194.3 -18.9,1.00,4.930,193.6 -19.2,1.00,5.080,194.0 -19.2,1.00,4.460,187.8 -19.1,1.00,4.560,174.6 -19.3,1.00,4.630,180.9 -19.7,1.00,4.900,181.9 -20.0,1.00,5.270,170.7 -19.8,1.00,6.250,170.8 -19.8,1.00,5.940,173.1 -19.5,1.00,5.860,173.4 -19.6,1.00,6.010,170.7 -19.2,1.00,6.140,161.8 -19.4,1.00,6.320,161.1 -19.2,1.00,6.590,152.6 -19.3,1.00,7.040,148.6 -19.4,1.00,7.760,143.9 -19.6,1.00,8.120,141.3 -19.4,1.00,8.680,136.6 -19.1,1.00,9.550,136.3 -19.1,1.00,10.080,136.5 -19.0,1.00,10.730,136.1 -19.0,1.00,10.630,136.3 -19.0,1.00,10.450,139.8 -18.8,1.00,10.140,141.0 -19.2,1.00,9.680,153.4 -19.1,1.00,9.340,160.0 -19.5,1.00,10.240,163.3 -19.1,1.00,10.400,163.8 -19.6,1.00,10.400,161.8 -19.1,1.00,9.910,157.5 -19.2,1.00,9.920,155.2 -19.3,1.00,10.050,155.0 -19.3,1.00,9.280,155.8 -19.4,1.00,9.700,155.8 -19.4,1.00,9.810,150.9 -19.4,0.99,10.480,149.6 -19.4,0.99,11.200,149.9 -19.5,0.99,11.340,150.2 -19.6,0.99,12.460,150.6 -19.6,0.99,12.250,151.8 -19.4,0.99,11.990,151.2 -19.5,0.99,12.010,150.6 -19.4,0.99,11.980,152.7 -19.7,0.99,12.040,154.9 -19.7,0.99,11.990,154.7 -19.5,0.99,11.310,155.8 -19.7,0.99,11.650,159.4 -19.8,0.99,11.860,162.8 -19.7,0.99,11.490,162.4 -19.8,0.99,11.230,162.0 -19.4,0.99,10.740,158.4 -19.9,0.99,10.980,159.0 -19.9,0.99,11.360,157.4 -19.8,1.00,10.810,153.3 -20.2,0.99,10.790,152.7 -20.5,0.99,11.690,152.8 -20.2,0.99,10.350,151.9 -20.2,0.99,10.400,151.6 -20.1,0.99,10.490,149.8 -20.0,0.99,10.920,151.5 -19.4,0.99,10.510,144.1 -19.1,0.99,11.200,148.5 -19.1,0.99,12.100,147.3 -19.1,0.99,11.680,147.1 -19.0,0.99,12.270,147.0 -19.2,0.99,13.130,149.0 -19.1,0.99,12.390,152.7 -19.1,0.99,11.760,155.5 -19.1,0.99,12.290,154.0 -19.0,0.99,11.460,151.6 -19.1,0.99,11.080,156.3 -19.9,0.99,12.310,159.8 -19.5,0.99,12.030,157.2 -19.4,0.99,11.130,157.1 -19.2,0.99,12.220,158.4 -19.2,0.99,12.720,159.7 -20.1,0.99,13.100,161.4 -20.2,0.99,12.940,164.2 -20.3,0.99,13.690,165.3 -20.2,0.99,12.980,169.6 -20.3,0.99,12.550,171.8 -20.5,0.98,13.300,173.6 -20.6,0.98,13.150,173.6 -20.5,0.98,12.900,172.5 -20.3,0.98,12.660,175.9 -20.6,0.98,15.250,177.4 -20.7,0.98,16.850,181.0 -21.0,0.98,16.640,179.9 -20.6,0.98,13.730,183.9 -20.6,0.98,13.580,184.0 -20.4,0.98,14.150,196.2 -20.4,0.98,12.730,212.5 -15.7,0.98,13.450,324.3 -16.8,0.98,10.630,326.8 -16.9,0.98,15.820,317.7 -15.8,0.99,13.730,314.8 -15.3,0.99,9.100,303.1 -14.5,0.99,12.980,308.8 -13.1,0.99,11.190,298.5 -12.3,0.99,11.760,296.8 -11.9,0.99,12.540,296.4 -11.9,0.99,12.020,297.0 -12.1,0.99,14.000,298.2 -12.0,0.99,13.460,306.5 -12.2,0.99,15.620,314.0 -12.2,0.99,15.280,315.7 -12.3,0.99,15.440,315.3 -12.6,0.99,13.730,319.1 -12.4,0.99,13.950,327.8 -12.3,1.00,12.420,331.5 -11.7,1.00,10.840,337.9 -11.5,1.00,11.060,332.1 -11.3,1.00,9.500,334.7 -11.2,1.00,7.550,338.5 -11.1,1.00,6.510,345.3 -11.0,1.00,5.750,343.5 -10.8,1.00,4.810,342.6 -10.6,1.00,3.420,344.1 -10.4,1.00,1.650,347.3 -10.4,1.00,0.650,332.0 -10.7,1.00,0.450,218.0 -10.9,1.00,1.210,199.5 -11.1,1.00,1.620,201.0 -11.3,1.00,2.310,213.3 -11.5,1.00,2.750,221.7 -11.7,1.00,3.050,217.8 -12.0,1.00,3.440,218.7 -12.3,1.00,3.740,219.9 -13.0,1.00,4.180,216.2 -13.4,1.00,4.690,215.8 -13.7,1.00,5.010,215.3 -14.1,1.00,5.710,212.4 -14.3,1.00,5.930,213.8 -14.6,1.00,6.180,211.5 -14.6,1.00,5.530,213.6 -14.7,1.00,5.570,215.9 -14.8,1.00,4.910,218.4 -14.9,1.00,4.560,221.5 -14.8,1.00,4.190,210.6 -15.0,1.00,4.450,212.4 -15.0,1.00,3.730,209.3 -14.8,1.00,3.630,216.4 -14.8,1.00,3.010,212.2 -14.8,1.00,2.990,205.9 -14.6,1.00,2.200,193.5 -14.5,1.00,2.160,183.9 -14.7,1.00,1.980,188.0 -14.6,1.00,1.350,156.0 -14.9,1.00,1.590,138.0 -15.2,1.00,2.500,136.2 -14.9,1.00,2.400,117.9 -14.9,1.00,2.920,112.9 -15.2,1.00,4.510,119.2 -15.2,1.00,5.220,118.9 -15.2,1.00,5.770,124.5 -15.3,1.00,5.740,128.6 -15.3,1.00,6.350,130.2 -15.4,1.00,6.640,135.2 -15.3,1.00,6.510,133.1 -15.4,1.00,6.010,133.5 -15.7,1.00,6.350,138.7 -15.9,1.00,6.900,141.8 -16.2,1.00,7.580,147.5 -16.3,1.00,8.010,146.1 -16.5,1.00,7.580,148.8 -16.6,1.00,6.900,146.8 -16.7,1.00,6.900,147.9 -16.8,1.00,5.740,148.6 -16.7,1.00,6.310,142.2 -16.9,1.00,5.380,138.3 -17.0,1.00,5.320,142.3 -17.0,1.00,5.280,147.3 -17.2,1.00,3.990,150.6 -17.2,1.00,3.030,143.8 -17.5,1.00,2.230,138.8 -17.6,1.00,2.390,127.1 -17.5,1.00,0.450,106.1 -17.5,1.00,1.420,122.9 -17.6,1.00,2.310,127.5 -17.6,1.00,2.770,132.8 -17.6,1.00,2.350,142.1 -17.4,1.00,3.540,146.1 -18.1,1.00,2.790,145.2 -17.9,1.00,2.940,154.5 -17.9,1.00,2.710,172.2 -18.2,1.00,2.240,185.2 -18.0,1.00,2.340,217.7 -18.0,1.00,2.580,245.1 -16.1,1.00,4.930,342.4 -16.2,1.00,5.490,337.3 -14.4,1.00,7.160,17.3 -14.6,1.00,7.690,26.2 -14.6,1.00,8.280,33.3 -14.5,1.00,8.730,36.6 -13.7,1.00,7.940,39.0 -13.6,1.00,7.440,45.8 -13.4,1.00,6.970,52.8 -13.5,1.00,7.100,52.1 -13.6,1.00,6.190,58.2 -13.9,1.00,5.380,72.8 -14.9,1.00,5.190,83.4 -15.3,1.00,5.460,94.8 -15.6,1.00,5.740,113.4 -15.6,1.00,5.160,119.3 -15.7,1.00,5.260,125.2 -15.8,1.00,5.020,126.8 -15.5,1.00,5.450,135.0 -15.5,1.00,5.220,138.3 -15.6,1.00,5.650,142.4 -15.7,1.00,5.940,143.9 -15.7,0.99,6.210,148.3 -15.9,0.99,6.510,148.5 -16.2,0.99,6.870,149.7 -16.4,0.99,7.290,149.7 -16.6,0.99,7.480,148.2 -16.9,0.99,7.290,148.4 -17.1,0.99,7.190,148.3 -17.3,0.99,7.440,148.6 -17.3,0.99,7.810,142.2 -17.7,0.99,7.480,151.1 -18.0,0.99,7.200,154.8 -18.2,0.99,6.990,156.6 -18.3,0.99,7.350,154.9 -18.6,0.99,5.430,159.2 -18.7,0.99,5.470,155.3 -18.6,0.99,5.790,141.5 -18.8,0.99,6.390,141.0 -18.4,0.99,7.930,140.6 -17.9,0.99,7.830,134.2 -18.5,0.99,7.000,138.5 -19.0,0.99,7.000,142.0 -18.3,0.99,5.840,150.8 -18.6,0.99,4.550,160.3 -19.0,0.99,4.270,165.1 -19.4,0.99,4.570,175.5 -19.9,0.99,4.840,173.5 -18.9,0.99,4.590,185.5 -19.8,0.99,4.990,209.8 -18.1,0.99,5.210,226.3 -17.3,0.99,3.770,227.8 -16.7,0.99,2.860,255.0 -16.8,0.99,2.680,258.4 -16.9,0.99,1.720,272.5 -16.9,0.99,1.130,263.1 -16.9,0.99,0.980,82.9 -16.9,0.99,1.570,85.0 -17.2,0.99,3.060,87.0 -17.1,0.99,3.110,77.7 -17.2,0.99,3.470,100.1 -17.6,0.99,4.330,98.4 -17.0,0.99,5.000,102.9 -17.2,0.99,5.060,104.3 -17.3,0.99,5.610,110.2 -17.5,0.99,5.860,119.4 -17.5,0.99,5.650,113.7 -17.6,0.99,6.580,123.0 -18.0,0.99,6.870,121.5 -17.9,0.99,6.730,120.9 -18.0,0.99,6.030,110.0 -17.8,0.99,6.130,108.8 -18.1,0.99,5.780,118.2 -18.0,0.99,6.490,112.7 -17.1,0.99,7.420,109.7 -16.8,0.99,6.360,115.0 -16.8,0.99,7.350,100.1 -17.5,0.99,7.510,114.4 -17.6,0.99,7.160,107.1 -18.9,0.99,6.630,83.4 -17.4,0.99,8.370,94.4 -17.1,0.99,5.970,94.9 -17.2,0.99,8.340,88.6 -16.8,0.99,8.220,77.5 -16.9,0.99,7.740,76.4 -16.8,0.99,8.890,79.4 -16.9,0.99,8.050,88.2 -17.0,0.99,10.200,93.0 -16.9,0.99,11.260,96.4 -16.8,0.99,11.090,95.6 -16.7,0.99,12.320,93.8 -16.6,0.99,12.100,92.5 -16.7,0.99,12.590,94.3 -16.7,0.99,10.850,89.4 -16.8,0.99,9.680,84.2 -16.7,0.99,8.610,83.2 -16.6,0.99,8.150,89.7 -16.6,0.99,6.890,82.9 -16.5,0.99,6.110,73.7 -16.5,0.99,6.100,83.1 -16.4,0.99,4.860,100.2 -16.4,0.99,3.150,96.1 -16.3,0.99,2.340,86.4 -16.1,0.99,1.380,98.6 -16.2,0.99,1.100,111.3 -16.4,0.99,2.650,46.8 -16.3,0.99,1.650,12.4 -16.3,0.99,1.410,356.5 -16.5,0.99,2.450,49.5 -16.7,0.99,2.100,75.7 -16.8,0.99,1.620,66.2 -16.9,0.99,2.170,69.4 -16.8,0.99,3.080,94.3 -16.9,0.99,2.960,110.9 -16.9,0.99,2.650,131.7 -18.2,0.99,2.050,162.0 -17.2,0.99,3.230,156.9 -17.3,0.99,4.330,185.2 -16.6,0.99,4.320,203.8 -16.5,0.99,3.990,230.0 -16.8,0.99,4.860,276.7 -17.4,0.99,6.780,286.5 -17.2,0.99,6.780,297.5 -14.0,0.99,10.690,340.4 -13.5,0.99,8.780,343.0 -12.7,0.99,9.630,345.3 -12.9,0.99,9.370,342.9 -12.1,0.99,10.380,352.7 -12.8,1.00,9.250,359.8 -13.7,1.00,8.270,4.9 -14.3,1.00,8.060,5.1 -14.5,1.00,5.820,349.6 -16.0,1.00,6.840,0.1 -17.1,1.00,7.010,3.5 -17.5,1.00,5.890,27.5 -17.6,1.00,5.010,26.1 -16.6,1.00,3.940,73.6 -17.1,1.00,7.190,38.0 -16.1,1.00,7.810,34.5 -15.9,1.00,8.710,37.6 -15.2,1.00,8.820,44.6 -15.0,1.00,9.370,59.2 -15.1,1.00,10.150,73.4 -14.9,1.00,9.940,81.2 -14.8,1.00,9.710,80.8 -14.8,1.00,9.450,86.4 -14.8,0.99,9.110,93.0 -14.9,0.99,8.750,95.1 -15.2,0.99,8.520,100.2 -15.7,0.99,7.620,106.5 -15.8,0.99,8.640,103.7 -16.2,0.99,7.710,110.3 -16.4,0.99,8.680,105.3 -16.4,0.99,8.880,105.5 -16.7,0.99,8.490,104.0 -16.8,0.99,9.150,107.9 -17.4,0.99,8.980,115.0 -17.6,0.99,8.800,112.1 -17.9,0.99,9.090,108.3 -18.4,0.99,10.150,119.1 -18.5,0.99,11.530,125.7 -18.6,0.99,11.970,129.0 -18.6,0.99,12.250,132.0 -18.8,0.99,11.890,133.7 -19.0,0.99,11.960,141.3 -19.3,0.99,12.370,146.2 -19.6,0.99,13.160,151.2 -19.5,0.99,12.790,153.4 -19.7,0.99,12.540,156.6 -19.8,0.99,12.860,157.6 -20.1,0.99,12.650,160.7 -20.0,0.99,11.960,162.0 -19.8,0.99,12.580,165.2 -19.5,0.99,12.930,165.2 -20.2,0.99,12.580,170.4 -20.2,0.99,11.780,170.8 -20.3,0.99,13.120,175.6 -20.3,0.99,12.490,178.2 -20.2,0.99,12.010,186.9 -20.4,0.99,11.260,192.0 -20.1,0.99,8.830,191.1 -20.8,0.99,10.530,196.1 -21.1,0.99,10.060,196.2 -21.5,0.99,9.480,197.3 -21.8,0.99,10.530,198.5 -19.6,0.99,6.060,197.5 -18.4,0.99,3.950,346.8 -18.4,0.99,5.320,23.4 -17.8,0.99,5.970,27.5 -17.7,0.99,7.450,35.9 -17.5,0.99,6.570,35.7 -17.3,0.99,6.400,41.8 -17.2,0.99,7.230,44.3 -17.2,0.99,7.280,46.6 -16.7,0.99,7.340,44.1 -16.2,0.99,6.700,43.6 -16.2,0.99,8.170,38.0 -15.4,0.99,9.390,29.7 -14.7,0.99,10.630,34.3 -13.2,0.99,12.810,34.3 -13.4,0.99,13.330,43.3 -13.3,0.99,13.700,51.6 -13.8,0.99,14.260,53.8 -14.0,0.99,13.440,57.4 -14.1,0.99,13.760,57.5 -13.7,0.99,13.210,60.0 -14.0,0.99,12.790,60.4 -14.3,0.99,12.680,61.3 -14.2,0.99,12.690,59.7 -14.0,0.99,12.900,55.5 -13.9,0.99,13.370,57.0 -13.6,0.99,13.930,56.8 -13.7,0.99,13.020,56.0 -13.8,0.99,13.030,57.5 -14.0,0.99,12.880,60.5 -14.1,0.99,13.110,63.7 -14.3,0.99,12.940,66.0 -14.6,0.99,12.440,68.6 -14.9,0.99,11.490,71.0 -15.1,0.99,11.410,74.2 -15.4,0.99,10.810,74.7 -15.8,0.99,10.860,81.8 -16.2,0.99,10.080,84.9 -16.6,0.99,9.960,86.2 -18.4,0.99,8.440,125.0 -20.5,0.99,7.820,183.2 -18.7,0.99,5.050,270.9 -17.5,0.99,5.280,297.8 -15.9,0.99,8.120,311.4 -15.8,0.99,7.490,325.8 -16.3,0.99,7.300,328.2 -16.8,0.99,6.730,329.1 -16.8,0.99,6.150,339.9 -17.2,0.99,7.210,335.8 -16.8,0.99,7.110,344.6 -15.9,0.99,6.660,3.0 -14.8,0.99,6.560,15.1 -14.1,0.99,7.840,10.8 -13.6,0.99,8.920,0.4 -13.2,0.99,9.730,356.0 -12.8,0.99,8.980,351.1 -12.4,0.99,8.670,346.0 -11.9,0.99,9.240,341.1 -11.2,0.99,11.230,337.0 -10.5,0.99,9.690,341.4 -10.1,0.99,11.660,332.3 -9.6,0.99,10.220,337.0 -9.1,0.99,10.200,342.9 -9.1,0.99,11.090,350.9 -9.0,0.99,11.660,345.6 -9.4,0.99,10.050,345.2 -9.5,0.99,9.500,339.2 -10.2,0.99,8.540,340.4 -11.0,0.99,8.350,336.9 -11.7,0.99,8.190,334.4 -12.2,0.99,7.450,335.3 -12.5,0.99,7.120,334.8 -12.6,0.99,7.280,340.2 -12.5,0.99,7.340,347.7 -12.5,0.99,7.060,3.3 -12.1,0.99,6.620,6.1 -12.0,0.99,6.340,9.8 -11.8,0.99,5.820,16.2 -11.7,0.99,5.290,15.6 -11.4,0.99,5.390,18.1 -10.9,0.99,4.870,13.9 -10.9,0.99,4.430,8.5 -10.7,0.99,4.580,11.9 -10.7,0.99,4.660,14.5 -10.6,0.99,4.180,23.0 -10.5,1.00,4.400,26.1 -10.4,1.00,4.570,29.7 -10.5,1.00,4.270,35.1 -10.7,1.00,3.800,35.3 -10.9,1.00,3.580,31.4 -11.1,1.00,3.190,29.8 -11.9,1.00,2.370,42.6 -12.5,0.99,1.940,72.5 -13.0,0.99,1.930,102.6 -13.2,0.99,1.590,116.9 -13.5,0.99,1.630,125.0 -13.7,0.99,1.680,125.9 -13.7,0.99,2.060,129.9 -13.7,0.99,2.140,126.0 -13.8,0.99,2.340,120.9 -13.9,0.99,2.100,118.3 -14.1,0.99,1.880,121.4 -14.2,0.99,1.840,114.2 -14.2,0.99,1.750,98.9 -14.0,0.99,1.530,81.9 -13.9,0.99,1.400,48.4 -13.7,1.00,2.230,29.0 -13.5,1.00,2.380,25.5 -13.2,1.00,2.930,22.0 -12.7,1.00,4.320,19.0 -12.5,1.00,4.400,25.8 -12.1,1.00,5.560,21.9 -12.3,1.00,5.530,23.1 -13.1,1.00,4.550,12.5 -13.4,1.00,4.370,353.2 -14.3,1.00,4.680,337.6 -15.1,1.00,4.640,335.1 -15.7,1.00,4.700,330.1 -16.3,1.00,5.260,328.5 -16.8,1.00,7.020,333.7 -16.9,1.00,8.500,340.6 -15.3,1.00,11.260,12.3 -14.4,1.00,11.510,14.7 -12.2,1.00,16.120,13.1 -11.0,1.00,14.400,13.5 -10.4,1.00,15.040,10.2 -9.9,1.00,12.880,6.0 -9.8,1.00,11.940,6.1 -10.2,1.00,13.320,2.1 -9.5,1.00,14.040,9.6 -8.8,1.00,13.500,10.6 -8.2,1.00,12.600,11.3 -7.7,1.00,11.990,10.6 -7.1,1.00,11.020,13.3 -6.7,1.00,10.980,15.0 -6.8,1.00,9.530,8.8 -7.0,1.00,7.580,359.4 -7.5,1.00,6.700,350.7 -8.0,1.00,4.960,333.6 -9.3,1.00,6.910,333.1 -9.9,1.00,7.310,328.7 -10.6,1.00,6.470,327.5 -11.1,1.00,5.200,337.6 -12.1,1.00,6.400,329.8 -12.4,1.00,5.400,325.8 -12.6,1.00,3.690,323.1 -12.7,1.00,2.810,319.6 -12.6,1.00,1.090,291.2 -12.8,1.00,2.050,234.3 -13.0,1.00,2.620,222.3 -13.2,1.00,3.010,225.5 -13.4,1.00,4.170,218.3 -13.6,1.00,5.170,210.8 -13.8,1.00,6.090,211.8 -13.9,1.00,5.680,222.9 -13.8,1.00,5.630,224.9 -14.0,1.00,5.130,221.8 -14.1,1.00,4.830,223.5 -14.5,1.00,5.080,213.5 -15.0,1.00,6.670,209.4 -15.1,1.00,6.040,199.2 -15.2,1.00,7.780,188.5 -15.6,1.00,7.330,190.8 -15.8,1.00,7.190,188.6 -16.1,1.00,7.810,187.6 -16.0,1.00,8.990,177.6 -16.2,1.00,9.240,171.3 -16.2,1.00,10.190,167.4 -16.3,1.00,9.500,168.8 -16.4,1.00,10.840,167.1 -16.7,1.00,10.960,169.6 -16.8,0.99,12.380,163.0 -17.3,0.99,13.000,170.4 -17.2,0.99,11.970,164.9 -16.9,0.99,13.340,157.3 -17.4,0.99,14.810,167.4 -17.8,0.99,14.770,169.7 -17.5,0.99,13.870,163.0 -17.3,0.99,14.760,161.8 -17.7,0.99,15.240,167.0 -18.0,0.99,15.520,168.0 -18.3,0.99,14.040,169.5 -18.4,0.99,13.510,169.5 -18.5,0.99,14.680,165.2 -18.6,0.99,12.630,170.3 -18.5,0.99,11.960,173.8 -18.1,0.99,16.370,178.5 -19.1,0.99,17.130,176.8 -19.4,0.99,13.690,182.2 -19.4,0.99,13.330,188.5 -19.4,0.99,13.550,188.5 -19.5,0.99,13.490,188.3 -19.6,0.99,14.080,193.4 -19.4,0.99,13.660,196.2 -19.3,0.99,11.730,211.7 -19.3,0.99,11.320,213.4 -19.2,0.99,11.480,220.8 -19.5,0.99,9.850,237.1 -19.5,0.99,9.930,241.2 -14.5,0.99,12.850,342.8 -14.4,0.99,9.950,5.2 -14.3,0.99,12.030,19.0 -13.9,0.99,13.840,27.7 -13.3,1.00,14.200,30.9 -12.7,1.00,15.370,36.5 -11.9,1.00,14.870,39.0 -11.7,1.00,13.790,45.8 -11.6,1.00,12.820,44.6 -11.6,1.00,11.420,43.1 -12.0,1.00,9.870,42.8 -12.6,1.00,8.790,49.2 -13.6,1.00,9.000,53.2 -14.1,1.00,9.320,63.0 -14.3,1.00,8.570,68.3 -14.7,1.00,8.610,73.6 -15.0,1.00,8.660,73.4 -15.4,1.00,9.640,72.1 -15.5,1.00,11.230,75.3 -15.4,1.00,11.470,74.8 -15.1,1.00,12.510,75.1 -14.6,1.00,12.930,74.7 -14.3,1.00,13.480,79.3 -14.3,1.00,13.030,86.0 -14.4,1.00,13.480,90.9 -14.4,1.00,13.670,92.6 -14.5,1.00,13.830,94.0 -14.5,0.99,13.920,96.0 -14.7,0.99,14.010,101.8 -14.7,0.99,13.590,103.6 -14.8,0.99,13.710,106.8 -14.8,0.99,13.560,108.1 -15.0,0.99,12.830,106.8 -15.0,0.99,12.370,98.4 -14.8,0.99,13.280,93.9 -14.7,0.99,16.870,111.6 -15.0,0.99,16.450,104.2 -14.7,0.99,14.380,95.7 -14.9,0.99,14.620,94.0 -15.1,0.99,15.290,97.6 -15.5,0.99,15.680,100.6 -16.0,0.99,15.930,105.4 -16.1,0.99,15.080,104.3 -16.3,0.99,15.540,105.6 -16.6,0.99,15.980,105.0 -16.9,0.99,14.010,115.6 -17.3,0.99,14.700,117.0 -18.1,0.99,14.340,123.7 -18.4,0.99,14.550,125.0 -18.5,0.98,15.090,131.3 -18.6,0.98,14.740,133.1 -18.7,0.98,13.220,142.8 -18.8,0.98,14.950,152.4 -19.3,0.98,16.010,155.0 -19.2,0.98,14.280,143.4 -19.4,0.98,14.000,147.3 -19.6,0.98,14.490,151.1 -20.0,0.98,14.660,150.8 -19.7,0.98,12.790,157.8 -20.1,0.98,12.950,164.2 -20.5,0.98,13.160,169.6 -20.8,0.98,12.690,179.3 -21.3,0.98,11.640,188.9 -20.8,0.98,9.740,198.1 -21.3,0.98,10.170,208.7 -21.2,0.98,10.050,226.0 -20.0,0.98,8.200,237.9 -19.3,0.98,8.350,236.7 -20.0,0.98,7.500,268.0 -20.8,0.99,6.940,1.6 -21.6,0.99,8.990,13.5 -20.3,0.99,7.320,21.6 -19.6,0.99,9.060,20.7 -18.1,0.99,8.960,35.9 -17.4,0.99,9.940,32.1 -17.3,0.99,11.010,33.9 -16.6,0.99,10.730,43.6 -16.2,0.99,11.360,38.5 -16.1,0.99,10.050,54.4 -16.3,0.99,11.380,49.6 -15.8,0.99,11.800,47.0 -15.8,0.99,10.820,47.7 -15.7,0.99,10.010,46.7 -15.6,0.99,10.620,43.7 -16.0,0.99,10.920,40.4 -15.7,0.99,10.090,30.3 -15.6,0.99,10.150,29.7 -15.1,0.99,10.790,28.0 -15.0,0.99,11.140,32.4 -14.6,0.99,10.540,30.0 -13.9,0.99,10.700,30.9 -14.0,0.99,10.280,34.4 -13.8,0.99,9.950,31.3 -13.6,0.99,9.480,32.2 -13.4,0.99,10.250,31.6 -13.2,0.99,10.360,29.7 -12.8,0.99,10.140,30.9 -12.7,0.99,9.480,27.7 -12.4,0.99,9.930,26.7 -12.3,0.99,9.700,27.6 -12.1,0.99,9.320,23.0 -11.8,0.99,10.030,21.7 -11.4,0.99,9.700,18.9 -10.6,0.99,10.170,20.5 -10.4,0.99,8.370,18.9 -10.5,0.99,7.620,25.3 -10.9,0.99,6.010,19.0 -11.6,0.99,4.540,16.3 -13.1,0.99,4.730,10.6 -14.1,0.99,1.840,355.3 -15.3,0.99,2.930,342.6 -16.1,0.99,4.430,328.8 -16.8,0.99,4.400,331.1 -17.2,0.99,5.170,341.7 -17.4,0.99,5.420,5.6 -16.8,0.99,6.000,32.6 -16.3,0.99,6.180,34.9 -15.8,0.99,7.290,41.7 -15.4,0.99,6.950,45.8 -15.2,0.99,7.730,59.0 -14.8,0.99,7.410,66.2 -15.0,0.99,7.470,73.8 -14.8,0.99,8.180,79.7 -14.7,0.99,7.770,74.9 -14.6,0.99,8.100,76.4 -14.6,0.99,8.260,77.5 -14.6,0.99,7.970,76.3 -14.8,0.99,8.350,83.6 -14.9,0.99,8.260,86.9 -15.1,0.99,8.120,87.2 -15.2,0.99,7.960,88.6 -15.4,0.99,8.000,87.1 -15.9,0.99,8.290,87.2 -15.8,0.99,8.670,86.6 -16.0,0.99,9.210,89.3 -16.2,0.98,9.100,88.0 -16.3,0.98,8.470,89.2 -16.6,0.98,7.440,93.9 -16.5,0.98,8.730,92.3 -16.7,0.98,8.480,91.7 -16.9,0.98,9.280,91.5 -17.1,0.98,8.460,86.1 -17.7,0.98,8.740,99.5 -18.2,0.98,9.750,116.7 -19.3,0.98,9.780,146.1 -19.3,0.98,10.350,156.6 -19.2,0.98,9.480,165.5 -18.8,0.98,9.970,160.3 -18.6,0.98,8.490,159.4 -19.6,0.98,9.830,172.7 -20.2,0.98,10.310,176.1 -19.7,0.98,10.230,182.3 -19.8,0.98,8.950,181.3 -17.4,0.98,13.160,179.4 -18.4,0.98,8.380,199.5 -17.5,0.98,8.280,233.2 -17.8,0.98,8.710,305.3 -19.7,0.98,9.940,275.8 -20.2,0.98,11.390,267.9 -19.6,0.98,12.600,270.0 -18.8,0.98,14.030,279.4 -17.8,0.98,14.050,277.9 -16.3,0.98,18.610,279.4 -14.8,0.98,19.730,280.2 -13.4,0.98,17.840,282.4 -12.3,0.98,19.200,286.1 -11.2,0.98,16.860,287.8 -9.6,0.98,21.630,291.0 -8.2,0.98,22.020,296.0 -7.3,0.98,18.710,297.0 -6.9,0.99,14.490,296.9 -6.6,0.99,14.750,296.4 -6.4,0.99,13.140,295.2 -6.2,0.99,12.810,296.8 -6.0,0.99,13.040,298.6 -6.0,0.99,10.900,299.8 -6.4,0.99,9.430,298.5 -7.1,0.99,9.100,299.7 -8.3,0.99,8.750,294.7 -9.7,0.99,7.890,291.8 -11.3,0.99,7.450,293.4 -12.6,0.99,7.690,294.4 -13.5,0.99,7.240,295.3 -14.2,0.99,6.710,294.1 -14.6,0.99,6.160,293.8 -14.8,0.99,6.430,285.8 -14.6,0.99,5.880,288.7 -14.6,0.99,3.570,279.7 -14.7,0.99,3.060,280.2 -14.6,0.99,2.690,271.5 -14.4,0.99,1.520,319.4 -14.3,0.99,0.540,61.3 -14.5,0.99,1.330,164.8 -14.6,0.99,1.780,164.0 -14.8,0.99,2.510,167.4 -14.8,0.99,3.380,174.6 -15.1,0.99,3.620,179.1 -15.4,0.99,3.990,200.8 -15.3,0.99,3.790,208.6 -15.3,0.99,4.040,208.5 -15.6,0.99,4.540,202.1 -15.7,0.99,5.420,214.2 -16.0,0.99,6.430,215.4 -16.1,0.99,5.930,225.4 -16.8,0.99,6.520,224.6 -17.2,0.99,7.350,226.6 -17.7,0.99,7.600,231.1 -19.4,0.99,10.890,311.9 -18.2,0.99,12.540,325.0 -17.1,0.99,12.360,331.5 -15.7,0.99,12.500,340.5 -14.7,0.99,11.880,344.0 -13.7,0.99,12.800,343.2 -13.2,1.00,13.120,344.2 -12.6,1.00,13.260,349.1 -12.3,1.00,12.820,351.5 -11.1,1.00,12.170,354.5 -10.3,1.00,12.460,357.8 -9.3,1.00,13.880,357.7 -8.3,1.00,14.300,357.5 -7.5,1.00,13.100,358.4 -6.7,1.00,12.180,359.7 -6.0,1.00,11.450,358.9 -5.6,1.00,10.620,356.2 -5.7,1.00,8.460,354.6 -6.0,1.00,7.560,349.4 -6.7,1.00,7.250,340.6 -7.6,1.00,7.840,336.2 -9.2,1.00,8.760,336.7 -10.4,1.00,8.850,335.4 -11.4,1.00,9.850,335.0 -11.9,1.00,9.440,336.5 -12.3,1.00,9.240,340.0 -12.6,1.00,10.290,341.2 -12.3,1.00,10.100,345.3 -12.0,1.00,9.800,343.7 -11.7,1.00,8.660,344.1 -11.6,1.00,8.500,343.9 -11.4,1.00,8.520,346.4 -11.2,1.00,8.140,349.1 -10.5,1.00,6.610,352.2 -10.0,1.00,6.570,345.0 -9.6,1.00,6.480,340.5 -9.0,1.00,6.890,342.4 -8.5,1.00,6.430,336.6 -7.9,1.00,6.630,347.4 -7.6,1.00,6.610,351.4 -7.1,1.00,6.520,350.0 -7.2,1.00,6.040,343.6 -7.7,1.00,6.190,334.5 -8.3,1.00,5.920,330.4 -8.7,1.00,5.470,325.6 -11.2,1.00,6.650,325.4 -12.5,1.00,7.950,325.3 -13.3,1.00,8.000,328.5 -13.8,1.00,7.170,331.3 -14.4,1.00,7.850,329.1 -14.9,1.00,7.900,329.7 -14.6,1.00,8.570,346.1 -14.1,1.00,7.190,3.9 -13.2,1.00,7.150,19.5 -13.1,1.00,7.370,7.6 -12.8,1.00,8.060,12.7 -12.3,1.00,5.260,6.3 -11.2,1.00,7.950,14.3 -10.8,1.00,6.860,18.2 -10.0,1.00,6.630,360.0 -9.6,1.00,8.710,358.3 -8.8,1.00,9.260,349.3 -8.3,1.00,10.400,351.4 -7.4,1.00,10.170,353.3 -7.0,1.00,10.360,346.7 -6.7,1.00,10.720,340.9 -6.4,1.00,11.640,337.8 -6.2,1.00,11.740,333.8 -6.3,1.00,11.130,331.4 -7.1,1.00,9.820,327.1 -8.6,1.00,11.070,328.7 -9.3,1.00,11.620,330.1 -9.7,1.00,11.390,332.2 -9.9,1.00,11.330,335.9 -9.9,1.00,11.800,340.7 -9.6,1.00,12.080,343.9 -9.3,1.00,9.600,349.1 -9.1,1.00,9.830,351.0 -9.1,1.00,8.910,352.9 -8.9,1.00,7.190,1.1 -9.0,1.00,6.250,4.9 -8.6,1.00,5.420,8.9 -8.6,1.00,4.390,13.3 -8.4,1.00,3.610,14.7 -8.4,1.00,3.350,16.9 -8.4,1.00,2.680,17.8 -8.5,1.00,1.980,22.2 -8.5,1.00,1.520,9.3 -8.7,1.00,0.940,50.9 -9.0,1.00,0.540,92.2 -9.3,1.00,0.500,151.9 -9.6,1.00,1.130,202.8 -10.1,1.00,1.420,183.4 -11.3,1.00,2.960,185.7 -12.2,1.00,3.920,180.8 -12.8,1.00,5.000,182.3 -13.3,1.00,6.170,178.0 -13.8,1.00,7.080,181.8 -14.3,1.00,8.120,185.5 -14.5,0.99,8.680,184.3 -14.9,0.99,9.840,185.2 -15.3,0.99,11.430,185.7 -15.7,0.99,11.640,187.0 -16.0,0.99,12.570,185.6 -16.2,0.99,11.900,187.6 -16.4,0.99,12.140,184.8 -16.7,0.99,13.310,188.4 -16.8,0.99,13.880,188.7 -17.0,0.99,13.820,188.7 -17.2,0.99,14.720,188.8 -17.2,0.99,14.390,191.6 -17.6,0.99,15.210,188.4 -17.7,0.99,14.310,188.7 -17.9,0.99,14.730,194.6 -17.9,0.99,13.890,194.3 -18.1,0.99,13.500,197.3 -18.2,0.99,12.800,197.9 -18.7,0.99,13.470,200.3 -18.9,0.99,12.590,200.2 -18.9,0.99,12.150,200.6 -18.9,0.99,12.270,200.6 -18.9,0.99,12.390,194.5 -18.9,0.99,13.080,191.6 -18.7,0.99,13.770,187.7 -18.7,0.99,14.010,192.1 -18.7,0.99,14.490,188.9 -18.7,0.99,14.630,191.9 -18.7,0.99,12.950,195.0 -18.6,0.99,12.040,197.7 -18.6,0.99,12.280,198.3 -18.6,0.99,11.000,202.5 -18.6,0.99,11.600,206.2 -18.5,0.99,9.860,206.9 -18.9,0.99,10.310,208.0 -18.9,0.99,8.490,239.8 -18.3,0.99,9.280,264.2 -17.3,0.99,9.250,272.6 -16.4,0.99,8.670,298.3 -17.3,0.99,10.640,315.6 -15.7,0.99,12.550,341.6 -16.4,1.00,11.030,346.6 -17.6,1.00,10.850,352.6 -18.0,1.00,11.370,348.4 -18.2,1.00,12.230,348.9 -18.0,1.00,12.180,348.9 -17.8,1.00,11.350,353.0 -17.4,1.00,12.180,353.1 -16.3,1.00,11.370,359.4 -14.9,1.00,12.410,355.8 -13.8,1.00,11.610,0.2 -13.1,1.00,14.130,3.4 -12.3,1.00,15.100,8.8 -11.7,1.00,15.270,12.8 -10.9,1.00,14.490,14.7 -10.6,1.00,14.010,19.1 -10.1,1.00,13.570,22.1 -9.7,1.00,13.370,27.3 -9.3,1.00,13.040,30.7 -9.0,1.00,12.830,33.0 -8.4,1.00,11.930,35.7 -8.3,1.00,11.810,36.4 -8.3,1.00,9.900,40.9 -8.6,1.00,8.500,37.2 -9.0,1.00,5.620,38.8 -9.5,1.00,3.950,32.4 -10.5,1.00,1.970,12.3 -11.2,1.00,1.360,283.8 -11.6,1.00,1.860,254.6 -12.3,1.00,1.800,241.8 -12.7,1.00,2.000,217.9 -13.3,1.00,1.370,229.1 -13.2,1.00,1.740,180.6 -13.2,1.00,3.040,170.2 -13.2,1.00,2.720,167.8 -13.3,1.00,2.520,157.7 -13.4,1.00,1.870,148.3 -13.5,1.00,1.480,140.8 -13.4,1.00,2.240,129.9 -13.4,1.00,2.440,128.8 -13.4,1.00,2.920,123.8 -13.6,1.00,3.140,111.0 -13.6,1.00,4.010,105.0 -13.5,1.00,4.850,104.1 -13.7,1.00,4.990,106.0 -13.8,1.00,4.720,105.7 -14.0,1.00,6.860,111.2 -14.0,1.00,6.910,107.2 -13.9,1.00,6.830,106.6 -14.0,1.00,7.050,108.1 -14.2,1.00,7.210,111.1 -14.3,1.00,7.290,112.8 -14.4,1.00,7.290,114.4 -14.5,1.00,7.510,115.6 -14.6,1.00,7.320,116.3 -14.7,1.00,7.490,117.5 -14.6,1.00,8.090,119.4 -14.7,1.00,8.390,123.0 -14.8,1.00,8.640,124.3 -15.1,1.00,8.710,125.8 -15.2,1.00,8.830,126.8 -15.4,1.00,8.000,126.6 -15.6,1.00,8.200,128.7 -15.7,1.00,7.780,131.2 -15.8,1.00,7.340,130.8 -16.0,1.00,7.590,128.5 -16.1,1.00,7.410,123.5 -16.1,1.00,8.030,125.2 -16.3,1.00,8.390,125.7 -16.2,1.00,8.040,117.6 -16.3,1.00,8.430,118.1 -16.4,1.00,8.120,112.5 -16.4,1.00,8.120,106.2 -16.4,1.00,8.720,107.9 -16.6,1.00,8.810,110.6 -16.6,1.00,9.200,109.9 -16.4,1.00,9.930,109.5 -16.4,1.00,10.030,111.5 -16.3,1.00,10.110,112.2 -16.0,1.00,9.370,110.2 -16.2,1.00,9.080,114.7 -16.2,1.00,10.140,118.5 -16.4,1.00,10.960,123.2 -16.6,0.99,10.500,126.0 -16.7,0.99,10.070,128.9 -17.1,0.99,10.460,133.8 -17.4,0.99,9.420,145.3 -17.8,0.99,11.160,144.8 -17.9,0.99,10.080,151.7 -17.8,0.99,8.160,146.2 -18.6,0.99,10.220,159.3 -18.7,0.99,9.200,159.1 -18.3,0.99,10.070,154.3 -18.4,0.99,10.190,142.6 -18.8,0.99,9.890,142.5 -18.9,0.99,10.380,148.0 -18.8,0.99,10.940,141.9 -18.5,0.99,10.990,135.5 -18.8,0.99,9.750,147.3 -18.9,0.99,11.160,149.2 -19.2,0.99,10.270,147.1 -18.1,0.99,9.140,133.8 -19.1,0.99,11.720,158.3 -19.1,0.99,12.320,157.7 -19.0,0.99,12.850,147.8 -18.5,0.99,12.620,146.5 -18.4,0.99,11.640,143.1 -18.7,0.99,13.150,153.6 -18.6,0.98,13.060,152.4 -18.7,0.98,12.990,152.8 -18.7,0.98,12.030,153.5 -18.8,0.98,12.360,155.8 -18.8,0.98,12.010,155.5 -18.5,0.98,10.870,153.3 -18.7,0.98,11.050,155.3 -19.0,0.98,8.340,176.6 -19.1,0.99,7.230,188.8 -19.5,0.99,8.640,191.5 -19.7,0.99,8.400,189.6 -20.3,0.99,11.470,175.9 -16.5,0.99,6.140,288.3 -14.3,0.99,11.310,345.6 -13.9,0.99,12.240,348.8 -13.9,0.99,11.620,345.2 -13.9,0.99,11.060,346.8 -14.0,0.99,10.070,348.5 -14.4,0.99,8.590,348.8 -15.0,0.99,7.260,352.6 -14.9,0.99,5.960,356.6 -15.6,0.99,9.680,344.6 -15.2,0.99,13.880,341.2 -14.2,0.99,14.690,342.5 -13.3,0.99,13.900,351.4 -12.2,0.99,14.450,355.6 -11.3,0.99,13.270,0.1 -10.8,0.99,12.200,359.2 -10.0,0.99,12.300,1.4 -9.7,0.99,11.540,2.7 -9.5,0.99,11.090,2.0 -9.3,0.99,11.160,1.6 -8.9,0.99,10.320,0.2 -8.7,0.99,9.950,357.3 -8.7,0.99,8.180,350.6 -8.9,0.99,7.450,343.3 -9.1,0.99,8.630,333.4 -9.3,0.99,7.630,329.2 -11.2,0.99,10.270,323.6 -12.1,0.99,10.080,328.1 -13.1,0.99,9.990,328.5 -13.6,0.99,10.480,330.6 -13.9,0.99,9.870,332.2 -14.0,0.99,8.440,328.1 -13.7,0.99,8.730,346.4 -13.3,0.99,8.090,347.5 -13.0,0.99,7.150,348.8 -12.6,0.99,5.520,6.9 -12.4,0.99,4.660,8.2 -12.4,0.99,4.980,7.8 -11.9,0.99,4.760,12.1 -11.5,0.99,4.110,13.3 -11.2,0.99,4.110,11.8 -11.0,0.99,3.690,22.8 -11.2,0.99,3.820,38.8 -11.3,1.00,3.820,42.1 -11.3,1.00,3.660,43.6 -11.5,1.00,3.150,49.2 -11.7,1.00,3.250,42.2 -11.8,1.00,3.290,39.4 -12.1,1.00,2.860,43.6 -12.5,1.00,2.410,63.5 -13.3,1.00,1.840,99.3 -13.8,1.00,1.700,129.4 -14.2,1.00,1.870,133.4 -14.4,1.00,2.100,151.9 -14.7,1.00,2.410,150.9 -14.9,1.00,2.770,144.6 -14.8,1.00,3.270,142.7 -14.8,1.00,2.900,142.2 -14.9,1.00,2.410,140.1 -15.0,1.00,2.230,130.6 -15.0,1.00,2.250,121.1 -15.1,1.00,1.690,116.7 -15.1,1.00,2.040,98.3 -15.0,1.00,1.940,77.8 -14.7,1.00,2.230,48.2 -14.2,1.00,2.880,20.3 -13.8,1.00,3.220,11.5 -13.5,1.00,3.590,13.4 -12.2,1.00,5.450,8.2 -11.8,1.00,5.180,19.8 -11.6,1.00,6.850,31.9 -12.8,1.00,7.030,44.4 -13.0,1.00,6.100,52.1 -13.6,1.00,5.810,64.3 -14.9,1.00,5.570,85.3 -15.2,1.00,4.790,91.6 -15.3,1.00,3.850,100.8 -15.5,1.00,3.160,107.4 -15.6,1.00,2.560,113.4 -15.7,1.00,2.630,113.6 -15.6,1.00,2.920,112.3 -15.5,1.00,2.810,113.2 -15.5,1.00,2.730,110.8 -15.4,1.00,2.940,107.6 -15.4,1.00,3.660,107.8 -15.4,1.00,3.960,109.6 -15.4,1.00,4.360,99.5 -15.7,1.00,5.150,104.6 -15.6,1.00,5.570,110.3 -15.5,1.00,5.540,109.1 -15.5,1.00,5.810,113.9 -15.4,1.00,5.810,115.0 -15.4,1.00,6.030,118.0 -15.4,1.00,6.630,119.6 -15.3,1.00,6.780,123.8 -15.3,1.00,6.550,122.7 -15.3,1.00,6.050,125.2 -15.3,1.00,5.740,129.8 -15.6,1.00,5.520,134.7 -15.6,1.00,5.570,138.4 -15.6,1.00,5.450,144.2 -15.6,1.00,5.450,150.8 -15.7,1.00,5.490,154.5 -15.6,1.00,5.810,156.9 -15.5,1.00,6.040,158.4 -15.6,1.00,6.280,160.4 -15.6,1.00,6.460,162.3 -15.7,1.00,6.360,164.5 -15.8,1.00,6.540,169.5 -15.9,1.00,6.590,172.7 -16.0,1.00,6.910,176.6 -16.0,1.00,6.550,179.9 -16.2,1.00,6.630,181.3 -16.3,1.00,6.650,183.2 -16.4,1.00,6.250,184.8 -16.5,1.00,6.470,183.3 -16.7,1.00,6.780,189.3 -16.8,1.00,6.530,189.1 -16.9,1.00,6.700,187.9 -17.1,1.00,7.040,187.3 -17.2,1.00,6.540,187.8 -17.4,1.00,7.170,192.6 -17.8,1.00,7.200,194.8 -18.0,1.00,8.140,194.5 -18.0,1.00,8.090,195.3 -18.0,1.00,8.000,194.3 -18.0,1.00,7.780,192.8 -18.0,1.00,7.520,190.8 -17.8,1.00,7.690,188.9 -17.7,0.99,7.870,186.1 -17.6,0.99,7.530,184.2 -17.6,0.99,8.280,183.9 -17.8,0.99,9.050,185.8 -17.8,0.99,9.510,188.5 -17.9,0.99,10.560,190.7 -17.8,0.99,10.660,190.6 -18.0,0.99,11.140,195.4 -17.8,0.99,10.670,196.9 -18.0,0.99,11.010,194.3 -17.9,0.99,10.760,190.5 -17.9,0.99,9.660,189.1 -18.1,0.99,10.210,187.2 -18.2,0.99,10.080,190.0 -18.2,0.99,8.850,187.3 -18.3,0.99,8.690,185.5 -18.4,0.99,8.890,186.2 -18.6,0.99,7.690,180.4 -18.8,0.99,8.310,181.3 -18.8,0.99,8.950,175.5 -18.8,0.99,8.510,170.8 -18.9,0.99,9.110,173.2 -18.9,0.99,9.800,168.9 -18.6,0.99,9.890,167.0 -18.9,0.99,10.260,165.7 -18.7,0.99,10.650,165.0 -18.8,0.99,10.520,166.9 -18.7,0.99,10.480,165.8 -18.7,0.99,10.470,167.2 -18.8,0.99,10.520,171.1 -18.8,0.99,10.550,169.4 -18.9,0.99,10.720,171.6 -19.0,0.99,10.850,171.7 -19.0,0.99,10.710,175.4 -19.0,0.99,10.330,171.0 -19.2,0.99,10.710,169.9 -19.2,0.99,10.330,166.4 -19.4,0.99,10.580,161.9 -19.3,0.99,9.900,160.9 -19.2,0.99,9.640,163.4 -19.3,0.99,8.940,165.2 -19.6,0.99,9.590,170.4 -19.7,0.99,9.900,168.5 -19.6,0.98,10.550,168.6 -19.6,0.98,9.950,170.2 -19.7,0.98,10.140,173.9 -19.4,0.98,9.530,167.6 -19.1,0.98,9.490,163.2 -18.7,0.98,9.940,165.3 -18.5,0.98,9.650,170.4 -18.3,0.98,8.850,167.8 -18.6,0.98,7.570,165.5 -19.5,0.98,12.020,179.3 -19.3,0.98,11.120,183.7 -18.5,0.98,10.000,191.5 -19.0,0.98,8.560,185.5 -18.6,0.98,6.760,188.2 -19.0,0.98,7.960,196.2 -19.0,0.98,8.500,196.3 -18.6,0.98,10.040,195.9 -18.2,0.99,7.250,218.6 -18.3,0.99,4.490,230.2 -18.6,0.99,2.340,209.7 -18.8,0.99,3.500,188.4 -19.2,0.99,4.760,181.0 -19.4,0.99,5.820,188.9 -19.6,0.98,5.170,199.6 -19.6,0.98,5.250,192.5 -19.7,0.98,4.440,184.6 -19.5,0.98,4.750,181.1 -19.4,0.98,4.420,182.0 -19.2,0.99,4.650,179.1 -19.2,0.99,4.240,194.0 -19.3,0.99,4.070,201.9 -19.4,0.99,2.170,218.1 -19.4,0.99,3.390,348.1 -19.8,0.99,4.740,13.6 -20.3,0.99,9.170,29.4 -19.0,0.99,10.550,43.8 -19.2,0.99,11.340,45.7 -18.4,0.99,12.620,55.1 -18.2,0.99,12.730,65.6 -18.2,0.99,12.390,76.2 -17.8,0.99,13.160,78.4 -17.7,0.99,11.600,87.1 -17.7,0.99,10.450,92.1 -17.6,0.99,9.730,96.1 -17.4,0.99,9.020,97.3 -17.5,0.99,8.160,99.4 -17.9,0.99,7.950,103.4 -17.9,0.99,7.210,101.2 -17.9,0.99,6.630,93.4 -17.8,0.99,6.610,81.7 -17.8,0.99,6.690,81.0 -18.0,0.99,6.220,81.8 -17.9,0.99,7.450,79.4 -17.9,0.99,8.200,77.0 -18.0,0.99,7.370,74.6 -18.3,0.99,7.490,78.8 -18.1,0.99,7.250,62.9 -18.1,0.99,7.130,68.1 -18.1,0.99,7.850,62.8 -17.6,0.99,8.600,48.0 -18.4,0.99,10.030,41.4 -17.8,0.99,13.370,25.9 -16.2,0.99,16.410,26.1 -14.8,0.99,15.030,22.4 -13.6,0.99,14.770,50.8 -13.4,1.00,14.110,58.8 -14.0,1.00,12.240,65.3 -14.5,1.00,12.060,44.7 -14.9,1.00,8.360,40.4 -15.7,1.00,6.830,43.0 -16.5,1.00,6.860,63.1 -17.8,0.99,8.070,69.9 -18.5,0.99,7.740,77.2 -18.1,0.99,6.760,95.1 -18.1,0.99,6.140,96.4 -18.7,0.99,6.540,91.0 -19.2,0.99,8.400,81.5 -18.9,0.99,7.680,62.6 -18.2,0.99,7.010,55.5 -18.0,0.99,7.630,75.0 -17.8,0.99,8.670,86.2 -17.5,0.99,8.230,93.8 -17.2,0.99,7.810,98.4 -17.1,0.99,8.370,113.2 -17.1,0.99,7.920,109.7 -17.0,0.99,8.210,110.9 -16.9,0.99,8.950,115.0 -16.8,0.99,9.160,119.9 -16.9,0.99,9.440,128.3 -16.9,0.99,9.770,129.0 -17.0,0.99,9.780,132.6 -17.0,0.99,9.430,132.6 -17.1,0.99,9.790,137.3 -17.4,0.99,9.480,137.6 -17.8,0.99,10.640,143.2 -18.0,0.99,10.900,144.0 -18.0,0.99,11.450,146.2 -18.2,0.99,11.860,147.8 -18.3,0.98,11.810,149.1 -18.5,0.98,12.480,152.4 -18.6,0.98,11.220,154.4 -18.7,0.98,11.690,155.9 -18.9,0.98,11.500,158.3 -18.9,0.98,9.730,158.5 -19.0,0.98,9.870,162.2 -19.1,0.98,10.530,167.0 -19.2,0.98,10.300,168.2 -19.1,0.98,10.530,172.2 -19.4,0.98,10.450,179.5 -19.8,0.98,10.260,180.1 -19.5,0.98,8.600,176.7 -19.7,0.98,10.050,181.4 -20.0,0.98,10.300,183.7 -20.1,0.98,9.640,186.7 -20.0,0.98,10.040,181.3 -19.7,0.98,8.880,176.8 -19.6,0.98,8.200,173.1 -19.8,0.98,8.660,172.1 -20.3,0.98,9.070,176.1 -20.1,0.98,8.020,172.7 -20.5,0.98,7.880,183.3 -20.5,0.98,7.320,181.5 -20.2,0.98,7.050,174.1 -20.3,0.98,6.240,174.5 -20.1,0.98,6.630,169.4 -20.4,0.98,5.960,164.5 -19.4,0.98,6.090,152.6 -18.8,0.98,6.530,149.5 -18.9,0.98,5.760,146.0 -19.1,0.98,6.340,144.0 -19.1,0.98,6.750,141.6 -19.0,0.98,5.850,130.6 -19.6,0.98,6.100,140.0 -19.1,0.98,5.220,140.4 -19.4,0.98,5.420,131.8 -19.7,0.98,4.530,122.6 -19.4,0.98,3.340,110.6 -19.6,0.98,3.010,114.8 -19.4,0.98,3.500,101.0 -19.7,0.98,2.210,106.4 -19.7,0.98,1.140,68.8 -19.4,0.98,2.520,39.3 -19.7,0.98,2.860,31.7 -19.9,0.98,2.450,31.9 -19.9,0.98,2.870,31.0 -20.0,0.98,2.100,31.3 -20.1,0.98,1.080,36.0 -19.9,0.98,0.390,201.6 -19.7,0.98,0.810,256.8 -19.6,0.98,1.080,323.1 -19.8,0.98,0.920,334.8 -19.2,0.98,1.810,271.7 -19.1,0.98,3.010,246.5 -19.4,0.98,3.660,281.4 -19.5,0.98,2.230,271.9 -19.4,0.98,6.630,322.3 -19.6,0.98,6.490,319.2 -18.9,0.98,5.490,5.6 -17.9,0.98,7.040,357.1 -16.0,0.99,13.730,340.4 -15.0,0.99,13.980,341.6 -13.9,0.99,16.160,333.2 -12.4,0.99,15.270,336.2 -11.8,0.99,14.350,335.5 -11.7,0.99,14.360,334.5 -12.1,0.99,12.750,331.1 -13.2,0.99,13.570,330.2 -13.8,0.99,14.120,331.1 -14.2,0.99,13.880,334.0 -14.1,0.99,14.260,332.6 -13.9,0.99,13.280,341.8 -13.6,0.99,12.750,343.5 -12.9,0.99,13.610,351.2 -12.0,0.99,13.250,355.9 -11.6,0.99,12.970,359.7 -10.8,0.99,13.840,3.8 -10.3,0.99,13.610,10.8 -9.9,1.00,14.420,14.9 -9.2,1.00,14.550,16.3 -8.8,1.00,14.410,21.2 -8.4,1.00,14.810,25.1 -7.9,1.00,14.670,25.5 -7.5,1.00,14.100,25.6 -7.1,1.00,12.930,25.7 -6.4,1.00,12.030,24.2 -6.2,1.00,10.780,24.2 -6.3,1.00,8.970,19.8 -6.9,1.00,8.230,12.6 -7.9,1.00,8.100,6.8 -9.3,1.00,7.290,0.9 -10.8,1.00,6.880,355.7 -11.7,1.00,7.190,350.2 -12.3,1.00,7.650,343.6 -12.7,1.00,7.400,341.3 -13.0,1.00,7.650,342.3 -13.1,1.00,8.850,344.9 -12.8,1.00,9.000,1.4 -12.6,1.00,8.680,358.2 -12.2,1.00,9.730,1.9 -11.9,1.00,10.630,7.5 -11.5,1.00,11.600,6.8 -11.0,1.00,12.650,10.9 -10.0,1.00,12.100,20.7 -9.8,1.00,11.910,20.9 -9.4,1.00,11.670,19.8 -9.0,1.00,10.820,22.5 -8.7,1.00,10.560,22.0 -8.4,1.00,9.990,24.8 -8.0,1.01,9.020,27.0 -7.8,1.01,8.560,29.4 -7.7,1.01,7.860,28.0 -7.8,1.01,6.780,26.9 -8.1,1.01,5.300,17.4 -9.2,1.01,4.840,355.2 -10.1,1.01,4.430,330.6 -11.5,1.00,5.490,349.3 -12.3,1.00,6.740,344.7 -12.7,1.00,6.230,340.4 -13.2,1.00,6.590,349.6 -13.3,1.00,7.780,349.4 -13.2,1.00,6.810,4.5 -12.8,1.00,6.180,11.4 -12.6,1.00,5.320,24.6 -12.5,1.00,4.660,38.0 -12.6,1.00,3.840,54.9 -12.7,1.00,3.750,65.0 -12.6,1.00,3.830,76.2 -12.6,1.00,3.390,83.2 -12.5,1.00,3.590,101.3 -12.6,1.00,3.810,98.7 -12.8,1.00,3.410,108.7 -12.8,1.00,4.110,115.7 -12.8,1.00,3.050,112.6 -13.0,1.00,4.340,121.4 -13.1,1.00,5.550,127.7 -13.3,1.00,4.410,136.1 -13.4,1.00,5.370,115.6 -13.6,1.00,4.800,136.8 -13.9,1.00,4.900,130.1 -14.1,1.00,5.950,135.8 -14.0,1.00,6.640,128.3 -14.1,1.00,7.600,126.4 -14.2,1.00,7.400,131.9 -14.3,1.00,8.220,131.8 -14.3,1.00,8.270,135.0 -14.5,1.00,8.390,139.8 -14.7,1.00,8.170,140.8 -14.9,1.00,8.330,142.2 -15.1,1.00,8.070,151.7 -15.2,1.00,8.140,150.1 -15.5,1.00,8.060,153.4 -15.7,1.00,7.330,153.3 -15.9,1.00,7.280,163.3 -16.0,1.00,6.240,153.2 -16.2,1.00,5.960,156.4 -16.3,1.00,5.500,149.4 -16.4,1.00,5.610,146.2 -16.4,1.00,6.790,135.4 -16.6,1.00,7.320,130.6 -16.6,1.00,7.190,121.2 -16.7,1.00,8.100,122.4 -16.8,1.00,7.880,122.0 -16.9,1.00,8.260,125.7 -17.1,1.00,8.210,131.0 -17.2,1.00,8.130,133.6 -17.1,1.00,8.790,129.0 -17.2,1.00,8.630,133.1 -17.3,1.00,8.890,135.2 -17.0,1.00,7.720,126.1 -17.2,1.00,8.350,135.6 -17.3,1.00,8.400,134.3 -17.3,1.00,7.680,134.4 -17.4,1.00,8.270,141.6 -17.5,1.00,8.350,145.0 -17.5,1.00,8.130,146.1 -17.5,1.00,8.050,145.3 -17.4,1.00,8.320,144.6 -17.6,1.00,8.030,146.1 -17.7,1.00,8.000,143.7 -17.8,1.00,8.720,144.9 -17.8,1.00,8.580,141.1 -17.9,1.00,8.940,144.3 -17.8,1.00,8.220,138.8 -17.9,1.00,8.510,141.7 -18.0,1.00,8.390,142.6 -18.0,1.00,7.870,142.3 -18.4,1.00,8.100,147.3 -18.4,1.00,8.000,143.7 -18.4,1.00,8.240,144.6 -18.4,1.00,7.690,141.8 -18.4,1.00,7.880,145.7 -18.4,1.00,7.520,138.7 -18.2,1.00,7.730,136.1 -18.1,1.00,8.060,136.7 -18.1,1.00,8.470,140.3 -18.2,1.00,7.910,142.4 -18.3,1.00,8.330,147.1 -18.3,1.00,8.080,150.8 -18.3,1.00,8.530,152.4 -18.3,0.99,8.220,148.6 -18.3,0.99,7.270,147.8 -18.5,0.99,8.650,154.7 -18.5,0.99,8.060,157.4 -18.7,0.99,7.080,163.5 -18.8,0.99,6.880,162.4 -18.8,0.99,6.320,163.1 -18.8,0.99,6.680,172.8 -19.0,0.99,6.460,178.3 -19.2,0.99,6.160,172.2 -19.3,0.99,7.320,175.2 -19.3,0.99,7.580,177.9 -19.3,0.99,7.150,178.8 -19.2,0.99,7.630,180.7 -19.3,0.99,7.610,183.1 -19.4,0.99,6.390,187.3 -19.3,0.99,6.390,186.8 -18.9,0.99,6.440,184.1 -18.9,0.99,7.350,185.4 -19.0,0.99,8.330,189.1 -18.9,0.99,9.170,187.5 -18.9,0.99,9.880,188.3 -19.1,0.99,9.270,194.1 -18.7,0.99,8.560,186.2 -18.7,0.99,9.360,190.3 -18.7,0.99,7.930,189.2 -18.9,0.99,5.740,197.8 -19.2,0.99,7.340,203.1 -19.5,0.99,8.200,192.7 -19.2,0.99,8.900,184.8 -19.2,0.99,5.930,183.4 -19.3,0.99,6.320,182.1 -19.4,0.99,7.980,185.1 -19.6,0.99,8.240,180.4 -19.5,0.99,7.660,175.9 -19.9,0.99,6.860,188.9 -20.0,0.99,5.480,189.5 -20.0,0.99,5.880,183.1 -20.1,0.99,6.910,175.3 -20.1,0.99,7.650,169.1 -18.4,0.99,13.110,56.1 -17.7,0.99,13.950,30.0 -17.9,0.99,5.580,14.0 -21.7,0.99,14.030,130.4 -18.7,0.99,10.740,144.2 -18.7,0.99,10.270,171.4 -19.0,0.99,7.570,161.4 -18.9,0.99,6.830,169.5 -19.1,0.99,6.080,164.3 -18.8,0.99,3.130,170.8 -18.5,0.99,1.800,187.4 -18.4,0.99,0.680,285.5 -18.2,0.99,1.020,343.6 -18.1,0.99,1.720,25.7 -18.1,0.99,2.980,54.3 -18.2,0.99,3.090,74.0 -18.0,0.99,3.920,99.6 -18.0,0.99,3.270,96.5 -17.9,0.99,3.880,89.7 -18.3,0.99,4.500,113.3 -18.5,0.99,4.900,122.3 -18.5,0.99,5.090,120.8 -18.5,0.99,5.480,121.0 -18.6,0.99,5.460,127.0 -18.5,0.99,5.740,129.4 -18.2,0.99,6.100,141.8 -18.3,0.99,6.130,143.3 -18.3,0.99,6.540,145.1 -18.4,0.99,6.830,144.2 -18.3,0.99,6.890,154.0 -18.2,0.99,5.630,152.3 -17.3,0.99,7.150,166.3 -18.2,0.99,6.480,173.4 -18.3,0.99,4.600,133.3 -18.5,0.99,6.320,132.5 -18.7,0.99,5.430,132.7 -18.7,0.99,5.420,135.2 -18.7,0.99,5.410,109.5 -18.8,0.99,8.270,114.9 -18.8,0.99,6.860,126.2 -19.3,0.99,9.590,130.1 -19.3,0.99,9.410,126.5 -19.1,0.99,6.960,132.7 -19.5,0.99,6.490,136.7 -19.6,0.99,5.380,127.6 -19.5,0.99,4.690,107.8 -19.6,0.99,5.200,96.7 -19.6,0.99,7.150,81.9 -19.7,0.99,8.280,93.7 -19.3,0.99,9.050,94.7 -19.5,0.99,10.440,112.1 -19.5,0.99,9.000,102.1 -19.4,0.99,8.190,91.6 -19.4,0.99,8.890,112.2 -19.1,0.99,7.190,108.0 -19.3,0.99,6.810,100.1 -19.4,0.99,6.290,107.0 -17.3,0.99,10.660,170.4 -17.9,0.99,3.180,162.3 -17.7,0.99,5.130,256.4 -18.0,0.99,2.390,234.5 -18.0,0.99,5.250,299.6 -14.8,0.99,14.650,0.1 -16.2,0.99,8.440,77.3 -16.3,0.99,7.850,14.0 -16.4,0.99,10.720,15.2 -16.4,0.99,8.430,24.8 -16.5,0.99,7.930,36.6 -17.4,0.99,5.360,39.9 -18.8,0.99,8.690,4.2 -17.8,0.99,11.590,7.0 -16.1,0.99,11.800,10.4 -14.3,0.99,11.090,12.5 -13.1,0.99,9.630,31.7 -12.4,0.99,9.510,14.1 -12.3,0.99,8.290,8.2 -12.1,0.99,9.190,15.4 -11.7,0.99,10.360,18.1 -11.9,0.99,8.650,1.0 -11.4,0.99,8.980,355.9 -11.3,0.99,8.230,350.2 -11.3,0.99,7.010,345.3 -11.1,0.99,6.760,354.1 -11.1,0.99,6.740,330.4 -10.9,0.99,8.080,335.2 -10.8,0.99,8.170,329.1 -10.3,0.99,9.780,332.3 -10.1,0.99,9.460,333.8 -10.0,0.99,9.380,332.6 -10.1,0.99,9.570,326.7 -10.1,0.99,11.410,322.9 -10.6,0.99,9.960,334.9 -11.0,0.99,10.830,335.7 -11.3,0.99,10.690,336.8 -11.4,0.99,11.710,333.3 -11.0,0.99,10.700,339.7 -10.9,0.99,10.580,337.6 -10.4,0.99,9.820,337.9 -10.2,0.99,9.600,343.8 -10.1,1.00,9.160,347.6 -10.3,1.00,8.680,348.7 -10.5,1.00,9.510,347.7 -9.9,1.00,9.350,0.7 -9.5,1.00,9.130,355.9 -9.3,1.00,8.660,354.6 -9.5,1.00,7.330,356.0 -9.6,1.00,6.870,351.3 -9.5,1.00,7.620,353.9 -9.8,1.00,7.680,352.4 -9.5,1.00,7.140,354.2 -9.5,1.00,6.200,353.1 -9.8,1.00,4.810,343.3 -10.3,1.00,3.840,340.0 -10.9,1.00,3.020,329.5 -11.6,1.00,2.810,283.5 -13.5,1.00,2.770,266.5 -14.7,1.00,2.600,265.9 -15.6,1.00,2.520,261.0 -16.1,1.00,1.750,214.7 -16.4,1.00,2.950,199.6 -16.6,1.00,3.360,190.7 -16.3,0.99,4.100,190.5 -16.4,0.99,4.020,180.0 -16.5,0.99,4.080,175.1 -16.6,0.99,4.110,172.8 -16.7,0.99,3.670,171.2 -16.8,0.99,4.190,164.4 -16.6,0.99,5.010,153.7 -16.5,0.99,5.130,146.7 -16.6,0.99,5.850,142.3 -16.8,0.99,7.670,138.1 -16.8,0.99,8.510,141.2 -16.9,0.99,9.220,146.6 -17.0,0.99,9.300,149.5 -17.2,0.99,9.350,152.8 -17.3,0.99,9.570,152.8 -17.5,0.99,8.280,166.8 -17.8,0.99,7.550,156.6 -18.0,0.99,7.250,167.6 -18.6,0.99,7.320,173.4 -18.7,0.99,8.710,169.6 -18.9,0.99,8.580,168.8 -18.9,0.99,8.910,169.2 -18.8,0.99,8.130,165.1 -18.8,0.99,7.530,159.8 -18.6,0.99,6.780,151.0 -18.6,0.99,7.700,160.4 -18.8,0.99,8.490,161.1 -18.8,0.99,8.630,157.1 -18.7,0.99,7.500,155.3 -18.9,0.99,8.650,163.6 -18.9,0.99,8.230,162.4 -19.0,0.99,7.900,165.2 -19.0,0.99,8.260,165.4 -19.1,0.99,8.090,165.7 -19.1,0.99,7.700,164.4 -19.1,0.99,8.080,162.7 -19.4,0.99,8.670,168.3 -19.1,0.99,7.550,155.2 -19.3,0.99,7.800,156.5 -19.2,0.99,7.750,152.4 -19.3,0.99,7.640,156.0 -19.4,0.99,7.690,155.1 -19.6,0.99,8.420,154.8 -19.7,0.99,8.050,151.9 -19.8,0.99,8.590,155.7 -19.7,0.99,8.980,149.5 -19.7,0.99,8.550,150.8 -19.6,0.99,9.330,149.3 -19.5,0.99,9.810,148.5 -19.5,0.99,10.370,154.3 -19.4,0.99,10.490,154.5 -19.4,0.99,11.240,153.7 -19.6,0.99,11.370,163.3 -19.4,0.99,10.930,160.7 -19.4,0.99,10.520,160.4 -19.5,0.99,9.490,162.5 -19.8,0.99,10.120,169.8 -19.7,0.99,9.860,168.9 -19.6,0.99,8.880,161.7 -19.5,0.99,9.340,159.3 -19.9,0.99,10.880,159.6 -19.6,0.99,10.090,153.8 -19.6,0.99,10.080,147.2 -19.8,0.99,10.720,143.7 -19.9,0.99,9.800,149.0 -20.0,0.99,9.570,141.6 -20.2,0.99,8.940,150.0 -20.7,0.99,10.770,157.4 -20.3,0.99,7.900,124.2 -20.3,0.99,10.140,138.0 -20.1,0.99,8.780,127.4 -20.2,0.99,9.190,144.6 -20.0,0.99,11.150,136.7 -20.0,0.99,10.230,141.4 -19.9,0.99,10.620,132.8 -20.1,0.98,10.760,144.2 -19.9,0.98,10.400,140.6 -20.0,0.98,9.710,149.8 -19.9,0.98,9.910,148.1 -20.3,0.98,12.140,147.2 -20.1,0.98,11.790,142.0 -20.1,0.98,12.160,145.6 -20.1,0.98,11.520,144.8 -20.3,0.98,12.780,147.6 -20.2,0.98,12.780,143.5 -20.3,0.98,13.420,138.5 -20.1,0.98,12.390,135.6 -20.1,0.99,13.500,138.9 -20.3,0.99,12.440,137.7 -20.4,0.99,12.470,137.0 -20.9,0.99,12.620,140.7 -20.9,0.99,12.030,139.6 -20.9,0.98,12.570,135.2 -20.9,0.98,12.790,132.7 -20.9,0.98,13.760,133.0 -21.1,0.98,14.550,137.3 -21.2,0.98,15.980,140.8 -21.2,0.98,16.170,140.7 -20.9,0.98,16.060,140.7 -20.7,0.98,16.360,141.0 -21.0,0.98,16.040,143.3 -20.8,0.98,17.140,145.6 -20.7,0.98,15.580,142.8 -20.6,0.98,14.910,142.4 -20.7,0.98,14.540,146.9 -20.6,0.98,13.550,144.0 -20.8,0.98,16.040,150.9 -20.9,0.98,15.550,151.1 -20.8,0.98,14.710,149.1 -21.2,0.98,14.330,147.8 -21.1,0.98,13.060,142.9 -21.2,0.98,13.840,142.5 -21.4,0.98,12.400,145.4 -21.2,0.98,12.260,142.6 -21.8,0.98,11.990,149.4 -21.7,0.98,9.710,158.7 -21.8,0.98,7.870,166.5 -21.4,0.98,4.620,153.2 -21.5,0.98,5.420,151.2 -21.4,0.98,7.110,143.6 -22.0,0.98,8.490,148.1 -21.6,0.98,7.060,154.5 -21.6,0.98,5.020,170.4 -16.5,0.98,8.060,344.3 -15.4,0.98,9.900,339.7 -14.8,0.98,10.740,339.9 -12.9,0.98,11.660,345.9 -11.5,0.98,12.230,345.6 -11.1,0.98,12.910,345.7 -10.6,0.98,12.490,349.0 -10.4,0.98,12.360,352.6 -9.5,0.99,16.150,341.4 -9.2,0.98,14.540,0.6 -9.4,0.99,11.720,348.9 -9.9,0.99,8.640,1.5 -10.3,0.99,7.850,358.6 -9.4,0.99,9.040,341.4 -10.4,0.99,10.490,333.5 -12.8,0.99,7.830,344.3 -14.5,0.99,6.760,335.3 -15.8,0.99,7.000,329.9 -17.0,0.99,7.020,329.0 -17.9,0.99,6.790,330.8 -18.1,0.99,6.240,329.9 -18.2,0.99,6.260,336.5 -18.2,0.99,5.860,348.0 -17.9,0.99,4.800,7.2 -17.6,0.99,4.910,9.5 -17.4,0.99,4.770,10.9 -17.3,0.99,4.210,10.2 -16.6,0.99,3.850,29.5 -16.0,0.99,3.570,34.3 -15.5,0.99,3.560,26.2 -15.0,0.99,3.150,25.2 -15.0,0.99,3.430,27.5 -14.9,0.99,4.070,35.0 -15.3,0.99,4.480,45.8 -15.8,0.99,4.840,50.7 -16.4,0.99,4.790,64.8 -16.4,0.99,4.460,55.9 -16.4,0.99,4.170,59.7 -16.8,0.99,4.000,71.4 -17.5,0.99,4.100,94.4 -17.7,0.99,4.440,111.6 -17.9,0.99,4.210,113.5 -18.1,0.99,3.980,113.8 -18.4,0.99,3.370,111.6 -18.4,0.99,4.460,115.5 -18.3,0.99,3.750,119.0 -18.4,0.99,4.480,120.3 -18.6,0.99,5.000,119.7 -18.7,0.99,5.670,122.3 -18.7,0.99,6.420,125.0 -18.7,0.99,7.150,130.1 -18.5,0.99,5.930,124.8 -18.5,0.99,5.770,119.1 -18.5,0.99,5.430,118.0 -18.6,0.99,5.490,119.2 -18.5,0.99,5.740,106.9 -18.5,0.99,5.810,100.3 -18.6,0.99,6.500,99.9 -19.0,0.99,7.990,101.5 -19.0,0.99,8.240,101.3 -18.9,0.99,8.190,103.3 -18.9,0.99,8.080,97.8 -18.9,0.99,8.450,100.0 -19.3,0.99,9.430,96.8 -19.2,0.99,10.460,102.0 -19.2,0.99,9.680,102.5 -19.2,0.99,8.740,100.1 -19.2,0.99,9.550,102.9 -19.2,0.99,10.220,105.8 -19.1,0.99,6.850,97.8 -19.3,0.99,7.680,76.8 -19.4,0.99,9.600,89.1 -19.1,0.98,8.870,101.4 -18.8,0.98,8.990,110.0 -18.1,0.98,9.460,110.0 -18.0,0.98,9.450,100.9 -18.3,0.98,7.000,96.8 -18.5,0.98,8.110,95.4 -18.4,0.98,7.180,89.5 -18.5,0.98,6.710,94.5 -18.5,0.98,6.960,92.7 -18.4,0.98,5.500,95.9 -18.5,0.98,4.980,100.5 -18.7,0.98,3.370,123.6 -18.8,0.98,2.150,140.4 -18.8,0.98,1.630,138.5 -18.8,0.98,2.290,134.4 -19.5,0.98,3.130,135.9 -19.9,0.98,3.320,151.4 -20.1,0.98,4.510,155.6 -20.2,0.98,5.440,157.6 -20.2,0.98,6.020,159.4 -20.1,0.98,6.680,160.7 -19.9,0.98,7.820,160.1 -19.8,0.98,8.520,162.3 -19.9,0.98,9.230,170.1 -19.8,0.98,8.290,176.1 -19.8,0.98,7.910,174.8 -20.1,0.98,9.880,180.8 -20.2,0.98,8.310,177.1 -20.4,0.98,8.150,171.5 -20.4,0.98,7.200,184.2 -20.4,0.98,7.730,186.3 -20.8,0.98,9.430,189.4 -20.8,0.98,6.260,179.0 -21.3,0.99,8.540,171.8 -20.5,0.99,7.540,162.7 -20.3,0.99,6.750,171.3 -20.6,0.99,6.980,169.8 -21.1,0.99,6.790,161.8 -21.0,0.99,7.030,160.0 -20.9,0.99,5.710,148.1 -20.9,0.99,5.060,143.0 -21.2,0.99,6.650,139.2 -21.1,0.99,7.560,141.4 -21.0,0.99,7.320,137.4 -20.7,0.99,7.450,136.4 -21.1,0.99,7.570,124.4 -21.0,0.99,7.980,119.9 -21.1,0.99,8.410,123.4 -21.4,0.99,9.060,134.0 -21.6,0.99,9.830,143.8 -21.5,0.99,9.320,147.1 -21.7,0.99,8.230,145.3 -21.7,0.99,9.530,152.3 -22.4,0.99,9.820,172.8 -22.1,0.99,8.620,156.1 -21.8,0.99,7.990,140.6 -21.4,0.99,10.120,154.3 -21.7,0.99,9.300,150.3 -22.2,0.99,9.280,150.4 -21.7,0.99,8.160,140.4 -21.6,0.99,8.550,133.1 -21.7,0.99,7.160,120.3 -22.1,0.99,8.170,123.0 -22.2,0.99,9.580,140.8 -22.1,0.99,7.730,124.6 -22.2,0.99,8.500,123.6 -22.0,0.99,8.450,122.7 -21.9,0.99,10.510,128.2 -21.8,0.99,9.930,120.7 -21.1,0.99,12.040,120.7 -22.2,0.99,11.570,131.8 -21.9,0.99,11.740,132.7 -21.9,0.99,10.060,134.6 -21.9,0.99,12.210,135.8 -21.6,0.99,12.840,142.9 -21.7,0.99,10.640,144.6 -21.6,0.99,10.130,145.2 -21.6,0.99,10.900,134.8 -21.7,0.99,10.860,139.9 -21.7,0.99,9.410,140.0 -21.5,0.99,8.910,135.3 -21.9,0.99,8.350,145.2 -22.4,0.99,9.510,149.1 -21.7,0.99,9.050,138.1 -21.5,0.99,10.470,123.4 -21.7,0.99,10.350,131.1 -21.6,0.99,10.620,125.3 -21.9,0.99,11.140,132.7 -22.2,0.99,12.080,138.9 -22.4,0.99,12.440,136.0 -22.4,0.99,12.820,142.1 -22.4,0.99,13.450,145.9 -22.7,0.98,13.550,150.4 -22.1,0.98,14.190,141.2 -21.8,0.98,14.570,146.3 -21.8,0.98,14.370,146.2 -21.9,0.98,15.000,147.3 -22.0,0.98,15.090,151.6 -21.8,0.98,14.450,150.8 -21.6,0.98,13.980,151.9 -21.7,0.98,13.820,157.4 -21.5,0.98,11.780,162.5 -21.5,0.98,12.780,157.3 -21.6,0.98,12.970,158.2 -21.5,0.98,10.460,157.2 -21.7,0.98,11.880,161.0 -21.6,0.98,10.550,162.6 -21.7,0.98,9.380,156.6 -21.7,0.98,8.720,158.6 -21.7,0.98,5.810,166.3 -21.9,0.98,5.050,181.5 -22.2,0.98,3.810,199.2 -22.4,0.98,3.130,180.8 -22.5,0.98,4.910,160.8 -22.5,0.98,5.520,157.0 -17.2,0.99,15.930,337.7 -16.3,0.99,16.370,348.8 -14.1,0.99,15.080,350.1 -13.7,0.99,14.690,354.4 -13.8,0.99,14.160,0.2 -14.0,0.99,13.490,1.0 -14.8,0.99,15.160,359.9 -14.7,0.99,16.940,359.2 -13.9,0.99,17.430,359.2 -13.0,0.99,17.020,2.1 -12.3,0.99,17.580,5.1 -11.6,0.99,17.850,6.4 -11.1,1.00,17.190,7.0 -10.6,1.00,16.100,8.7 -10.1,1.00,15.000,8.3 -9.9,1.00,13.850,5.2 -10.0,1.00,12.100,2.9 -11.0,1.00,10.190,358.1 -11.7,1.00,9.810,349.7 -12.3,1.00,8.660,336.7 -13.6,1.00,9.570,338.0 -14.7,1.00,10.670,340.2 -15.3,1.00,10.900,339.0 -15.7,1.00,10.600,340.0 -16.0,1.00,10.430,344.3 -16.1,1.00,9.820,347.7 -15.8,1.00,9.640,346.9 -15.5,1.00,8.200,356.3 -15.1,1.00,8.370,5.1 -14.9,1.00,8.320,8.2 -14.8,1.00,7.550,13.4 -14.6,1.00,7.330,23.8 -14.3,1.00,6.940,27.6 -14.2,1.00,6.820,32.7 -14.0,1.00,6.170,34.3 -13.9,1.00,6.320,38.7 -14.1,1.00,6.240,47.0 -14.3,1.00,6.610,61.0 -14.4,1.00,6.650,69.6 -14.6,1.00,6.790,83.8 -14.8,1.00,6.930,86.8 -14.9,1.00,6.860,93.2 -15.1,1.00,6.830,95.8 -15.2,1.00,6.140,96.9 -15.5,1.00,7.440,115.5 -15.6,1.00,6.910,110.5 -15.7,1.00,7.250,114.9 -15.8,1.00,6.450,111.4 -15.8,1.00,7.560,105.5 -15.9,1.00,7.250,107.5 -15.9,1.00,7.800,113.4 -16.0,1.00,7.540,126.2 -16.1,1.00,7.860,127.6 -16.6,1.00,8.400,130.6 -16.7,0.99,7.860,122.6 -16.9,0.99,9.250,118.6 -17.3,0.99,7.460,114.8 -17.5,0.99,7.060,115.9 -17.6,0.99,8.400,120.0 -17.8,1.00,7.150,124.3 -17.8,1.00,7.810,120.1 -17.7,1.00,6.450,110.8 -17.8,1.00,7.140,110.6 -17.9,1.00,7.270,97.8 -18.0,1.00,7.430,95.9 -18.2,1.00,6.790,94.2 -18.3,1.00,6.530,80.8 -18.3,1.00,6.030,81.5 -18.2,1.00,7.760,84.4 -18.1,1.00,7.790,90.1 -18.2,0.99,8.460,92.7 -18.2,0.99,8.160,92.6 -18.3,0.99,7.470,98.6 -18.4,0.99,7.390,98.8 -18.3,0.99,6.820,98.2 -18.2,0.99,6.850,98.3 -18.3,0.99,6.770,100.9 -18.4,0.99,6.670,104.0 -18.6,0.99,6.390,110.5 -18.7,0.99,5.050,92.0 -18.9,0.99,7.370,100.5 -19.1,0.99,6.930,107.7 -18.9,0.99,6.550,110.1 -18.9,0.99,6.180,118.0 -18.9,0.99,5.810,123.4 -18.9,0.99,5.320,119.2 -18.9,0.99,5.090,120.7 -18.9,0.99,5.250,122.2 -18.9,0.99,5.170,113.4 -18.9,0.99,4.620,108.7 -19.0,0.99,4.200,106.8 -19.1,0.99,4.090,109.2 -19.2,0.99,3.690,116.1 -19.3,0.99,4.030,124.8 -19.3,0.99,4.270,125.1 -19.3,0.99,4.560,129.5 -19.3,0.99,5.420,133.7 -19.3,0.99,6.790,138.7 -19.2,0.99,7.000,139.6 -19.2,0.99,7.670,144.7 -19.1,0.99,7.620,142.1 -19.1,0.99,9.440,143.5 -19.4,0.99,7.910,151.9 -19.3,0.99,8.660,141.7 -19.4,0.99,8.130,146.4 -19.4,0.99,7.880,160.8 -19.7,0.99,8.340,163.4 -19.7,0.99,6.240,155.4 -19.7,0.99,7.630,166.4 -19.9,0.99,7.990,157.9 -20.0,0.99,9.240,155.6 -20.3,0.99,8.440,147.9 -20.4,0.99,8.580,155.4 -20.6,0.99,8.200,159.8 -20.6,0.99,6.980,154.0 -20.7,0.99,6.900,150.5 -21.1,0.99,6.530,157.4 -21.1,0.99,6.490,150.5 -21.1,0.99,5.720,146.1 -21.2,0.99,5.760,139.3 -21.4,0.99,6.720,148.5 -21.3,0.99,6.900,140.7 -21.0,0.99,6.150,135.0 -21.4,0.99,7.450,157.0 -20.9,0.99,5.600,152.1 -21.0,0.99,5.520,155.7 -20.8,0.99,4.330,174.2 -21.1,0.99,4.420,168.6 -21.3,0.99,5.340,179.6 -21.3,0.99,4.370,183.8 -21.4,0.99,2.420,256.2 -15.0,0.99,12.720,343.4 -13.9,0.99,12.440,350.9 -13.5,0.99,11.530,350.7 -12.0,0.99,12.730,351.1 -11.0,1.00,11.430,357.6 -10.9,1.00,11.830,357.2 -11.6,1.00,11.030,1.7 -12.2,1.00,10.850,5.6 -13.6,1.00,8.680,7.6 -15.8,1.00,8.150,9.1 -17.2,1.00,8.280,17.8 -18.2,1.00,6.410,24.1 -19.1,1.00,7.150,14.8 -19.4,1.00,7.440,30.4 -19.8,1.00,6.650,32.4 -19.7,1.00,6.810,28.6 -19.4,1.00,7.710,27.6 -18.7,1.00,9.360,31.2 -18.1,1.00,9.600,32.9 -17.7,1.00,9.830,34.5 -17.5,1.00,9.910,40.8 -17.3,1.00,9.840,42.1 -17.1,1.00,9.780,46.0 -16.9,1.00,10.460,50.1 -16.5,1.00,10.460,46.3 -16.2,1.00,11.020,46.1 -15.7,1.00,10.730,47.9 -15.4,1.00,12.170,55.9 -15.0,1.00,11.230,52.6 -14.8,1.00,10.920,52.7 -14.7,1.00,9.410,56.6 -14.9,1.00,8.520,60.5 -15.2,1.00,8.880,63.5 -15.8,1.00,9.790,68.5 -16.4,1.00,8.790,73.7 -16.8,1.00,8.610,71.9 -17.1,1.00,7.900,81.1 -17.6,1.00,7.440,84.0 -18.1,1.00,7.330,91.7 -18.4,1.00,7.840,99.8 -18.5,1.00,7.200,107.1 -18.9,1.00,6.840,113.6 -18.9,1.00,8.030,127.0 -19.4,1.00,7.740,136.6 -19.4,1.00,7.210,130.8 -19.5,1.00,6.170,141.4 -19.6,1.00,5.700,139.1 -19.8,1.00,5.920,135.6 -19.9,1.00,8.140,142.6 -19.9,1.00,7.460,139.1 -19.8,1.00,8.380,140.9 -20.1,1.00,7.590,138.4 -20.3,1.00,8.660,135.0 -20.3,1.00,8.500,134.8 -20.6,1.00,8.530,136.9 -20.5,1.00,7.940,129.6 -20.3,1.00,7.680,128.0 -20.6,1.00,7.820,130.7 -20.7,1.00,7.600,126.6 -20.7,1.00,8.130,127.7 -20.6,1.00,7.940,123.6 -20.6,1.00,8.420,121.7 -20.7,1.00,8.300,125.8 -20.6,0.99,8.800,137.0 -20.3,0.99,9.320,138.9 -20.4,0.99,8.770,133.3 -20.5,0.99,9.260,140.1 -20.4,0.99,9.100,144.3 -20.5,0.99,8.600,150.8 -20.2,0.99,8.870,152.7 -20.4,0.99,7.770,160.8 -20.3,0.99,7.500,161.4 -20.4,0.99,6.410,166.3 -20.4,0.99,6.350,161.9 -20.5,0.99,7.700,162.5 -20.7,0.99,7.290,168.1 -20.5,0.99,7.250,160.8 -20.6,0.99,7.550,159.0 -20.6,0.99,6.570,155.7 -20.7,1.00,3.390,165.7 -20.8,0.99,5.630,151.5 -21.2,0.99,6.070,161.7 -21.2,0.99,6.610,158.3 -21.1,0.99,7.740,157.5 -21.1,0.99,7.960,154.1 -21.0,0.99,8.020,158.9 -21.2,0.99,8.700,159.5 -21.0,0.99,1.710,284.2 -18.6,0.99,11.140,6.1 -19.4,0.99,5.790,30.2 -20.6,0.99,4.140,51.2 -21.2,0.99,5.700,132.3 -20.9,0.99,7.210,134.7 -20.5,0.99,5.070,158.1 -20.4,0.99,4.940,178.0 -20.2,0.99,7.420,158.7 -20.5,0.99,4.970,173.3 -20.5,0.99,1.150,282.1 -20.4,0.99,1.000,8.3 -20.5,0.99,5.370,93.1 -20.6,0.99,3.150,80.8 -20.7,0.99,5.220,91.3 -20.8,0.99,6.020,102.5 -20.9,0.99,5.490,122.2 -20.7,0.99,5.400,119.2 -21.2,0.99,5.090,148.8 -21.6,0.99,5.370,167.9 -21.4,0.99,5.420,174.9 -21.3,0.99,4.280,191.9 -21.3,0.99,2.720,160.6 -21.3,0.99,2.070,154.6 -21.2,0.99,3.310,111.8 -21.4,0.99,3.950,111.8 -21.6,0.99,3.350,114.4 -21.1,0.99,4.950,94.6 -21.3,0.99,4.510,107.4 -21.0,0.99,4.700,119.6 -19.6,0.99,5.670,114.1 -19.8,0.99,4.710,127.8 -20.4,0.99,3.810,121.0 -20.4,0.99,2.870,129.3 -19.9,0.99,2.650,119.8 -20.5,0.99,3.370,135.1 -20.0,0.99,4.160,123.0 -20.1,0.99,4.120,109.6 -20.4,0.99,4.970,117.7 -20.6,0.99,3.980,122.9 -20.8,0.99,5.000,107.9 -20.9,0.99,5.370,118.0 -21.3,0.99,5.110,126.5 -21.1,0.99,3.880,148.8 -21.2,0.99,4.870,148.0 -21.1,0.99,5.670,141.2 -21.1,0.99,5.230,172.7 -21.0,0.99,4.180,175.7 -20.4,0.99,4.360,155.6 -20.3,0.99,4.400,145.8 -20.0,0.99,5.420,153.0 -19.9,0.99,4.550,155.7 -19.9,0.99,3.990,141.0 -19.8,0.99,4.720,140.2 -19.9,0.99,5.280,150.8 -20.6,0.99,6.110,159.2 -21.0,0.99,6.090,161.8 -20.6,0.99,5.050,147.6 -20.5,0.99,5.060,139.7 -20.2,0.99,4.660,140.1 -20.3,0.99,5.470,191.8 -20.1,0.99,5.980,158.7 -20.6,0.99,5.250,154.0 -19.8,0.99,2.380,184.8 -20.2,0.99,2.420,132.3 -19.9,0.99,5.590,118.0 -20.4,0.99,6.100,99.5 -20.2,0.99,6.870,106.5 -20.3,0.98,7.080,129.2 -20.6,0.98,6.190,131.6 -20.8,0.98,5.320,142.5 -21.0,0.98,4.180,152.7 -20.8,0.98,4.950,157.8 -20.9,0.98,4.320,158.7 -20.8,0.99,3.720,151.6 -20.8,0.99,4.140,151.5 -21.4,0.98,5.280,156.9 -21.7,0.99,4.210,163.8 -20.8,0.98,2.620,131.6 -20.8,0.99,1.490,97.4 -20.7,0.99,3.210,105.3 -20.8,0.99,3.560,103.1 -20.6,0.99,3.450,89.8 -20.7,0.99,1.690,100.1 -20.5,0.99,2.320,96.8 -20.3,0.99,3.390,75.2 -20.4,0.99,4.060,80.5 -20.4,0.99,4.230,77.3 -20.6,0.99,4.360,96.9 -20.8,0.99,4.580,107.8 -21.4,0.99,3.720,120.9 -21.7,0.99,4.150,137.0 -21.8,0.99,4.420,148.5 -21.8,0.99,3.860,149.3 -21.9,0.99,3.590,152.8 -21.9,0.99,4.700,166.4 -21.8,0.99,5.990,164.0 -21.6,0.99,4.930,157.0 -21.6,0.99,4.800,144.3 -21.5,0.99,4.020,148.8 -21.7,0.99,3.210,156.6 -21.4,0.99,2.720,182.3 -21.4,0.99,2.860,195.6 -21.3,0.99,2.640,252.5 -21.2,0.99,2.890,290.4 -20.2,0.99,4.060,273.1 -20.0,0.99,5.790,286.7 -19.9,0.99,3.050,331.1 -20.3,0.99,4.730,317.1 -19.7,0.99,8.000,354.6 -19.8,0.99,10.340,8.8 -18.7,0.99,9.500,351.1 -18.9,0.99,8.110,332.8 -21.4,0.99,6.930,332.7 -23.4,0.99,9.160,339.9 -22.7,0.99,8.020,337.5 -21.9,0.99,14.650,323.2 -21.5,0.99,15.680,331.9 -20.8,0.99,15.480,334.3 -19.5,0.99,16.800,333.9 -17.6,0.99,17.220,335.9 -16.0,0.99,16.520,334.0 -14.9,0.99,18.440,341.7 -13.7,0.99,17.530,337.7 -12.9,0.99,18.030,334.8 -12.3,0.99,16.960,333.8 -10.5,0.99,17.240,331.8 -10.1,0.99,15.260,333.3 -9.7,0.99,15.100,330.7 -9.1,0.99,17.220,333.2 -9.1,1.00,14.790,333.1 -8.7,1.00,15.650,336.8 -8.2,1.00,16.210,333.0 -7.9,1.00,16.930,334.6 -8.2,1.00,16.210,331.9 -9.1,1.00,14.920,332.5 -10.3,1.00,15.140,330.6 -11.4,1.00,13.850,329.8 -13.5,1.00,13.660,333.5 -14.8,0.99,14.130,336.6 -15.4,0.99,13.900,337.4 -16.0,0.99,13.760,339.4 -16.3,0.99,14.080,338.6 -16.4,0.99,13.480,333.2 -16.2,0.99,12.640,347.3 -16.0,0.99,12.470,344.9 -16.0,0.99,10.920,350.3 -16.1,0.99,8.460,356.2 -16.1,0.99,7.680,1.4 -16.2,0.99,5.890,9.1 -16.1,0.99,4.530,7.1 -15.7,0.99,2.760,15.7 -15.8,0.99,1.010,2.4 -15.9,0.99,0.430,283.3 -16.0,0.99,1.580,230.9 -16.0,0.99,3.160,224.5 -15.9,0.99,4.150,229.9 -16.0,0.99,4.630,232.0 -15.8,0.99,4.690,237.2 -15.5,0.99,5.200,241.9 -16.0,0.99,5.480,235.5 -16.9,0.99,6.910,223.8 -18.3,0.99,8.420,218.8 -18.8,0.99,9.700,217.4 -19.1,0.99,10.190,219.3 -19.5,0.99,11.020,218.2 -19.9,0.99,12.010,219.6 -20.0,0.99,12.380,223.4 -19.9,0.99,12.710,223.7 -20.0,0.99,12.730,229.1 -20.0,0.99,12.170,231.7 -20.0,0.99,12.230,229.7 -20.1,0.99,11.500,235.5 -20.1,0.99,11.080,240.5 -18.9,0.99,7.290,292.5 -17.8,0.99,8.900,295.4 -17.4,0.99,7.760,309.3 -16.3,0.99,8.090,20.3 -15.4,0.99,8.300,16.9 -14.5,0.99,8.990,15.1 -13.7,0.99,7.610,11.8 -13.2,0.99,6.910,6.8 -13.4,0.99,6.410,353.3 -14.0,0.99,7.180,347.6 -14.2,0.99,7.910,333.6 -14.9,0.99,8.240,330.6 -16.1,0.99,8.740,335.9 -17.2,0.99,8.140,340.9 -17.8,0.99,8.420,346.1 -18.4,0.99,8.230,348.0 -18.8,0.99,7.740,348.8 -18.9,0.99,7.460,352.1 -18.8,0.99,7.620,354.6 -18.4,0.99,7.990,2.7 -18.1,0.99,6.850,11.6 -17.7,0.99,5.910,21.3 -17.6,0.99,4.970,29.5 -17.6,0.99,4.460,26.8 -17.4,0.99,3.570,34.9 -17.2,0.99,2.810,27.6 -17.1,0.99,2.540,20.9 -17.1,0.99,1.440,18.0 -16.8,0.99,1.040,342.6 -15.4,0.99,2.340,333.2 -15.3,0.99,3.330,341.6 -15.5,0.99,2.880,325.8 -15.6,0.99,2.690,324.4 -15.9,0.99,3.120,315.1 -16.6,0.99,2.980,311.4 -16.8,0.99,1.910,281.5 -18.1,0.99,2.260,273.7 -18.2,0.99,2.720,219.3 -18.9,0.99,3.780,220.3 -20.2,0.99,3.480,219.4 -19.7,0.99,5.360,217.1 -19.9,0.99,5.740,220.7 -19.9,0.99,5.470,223.8 -19.9,0.99,6.150,227.4 -19.9,0.99,2.180,221.5 -20.2,0.99,4.950,239.2 -20.1,0.99,3.880,238.6 -19.9,0.99,4.800,225.9 -19.9,0.99,4.430,246.5 -19.9,0.99,4.980,252.1 -19.7,0.99,5.440,269.2 -19.4,0.99,4.840,272.8 -19.5,0.99,5.390,280.0 -19.2,0.99,5.410,280.0 -18.5,0.99,4.670,275.8 -18.1,0.99,5.010,274.2 -18.3,0.99,4.310,265.0 -18.9,0.99,3.880,250.5 -19.9,0.99,3.520,241.1 -20.2,0.99,3.620,226.2 -20.5,0.99,3.900,206.2 -20.7,0.99,5.350,187.7 -20.8,0.99,5.560,183.1 -20.8,0.99,6.600,186.8 -20.8,0.99,6.830,188.1 -20.7,0.99,7.280,187.7 -20.4,0.99,7.380,186.8 -20.4,0.99,7.580,188.0 -20.4,0.99,8.030,182.6 -20.4,0.99,7.680,182.8 -20.4,0.99,7.430,187.5 -20.2,0.99,6.900,199.1 -20.1,0.99,6.800,198.5 -19.9,0.99,6.680,191.3 -19.9,0.99,6.350,185.0 -19.9,0.99,6.240,178.8 -19.8,0.99,5.620,173.6 -19.9,0.99,6.170,183.5 -20.0,0.99,4.030,185.8 -20.3,0.99,8.060,152.6 -20.3,0.99,6.280,158.7 -20.4,0.99,4.870,176.0 -20.4,0.99,3.950,162.0 -20.5,0.99,5.270,153.0 -21.0,0.99,6.180,153.8 -21.0,0.99,7.120,152.6 -21.1,0.99,7.310,156.8 -21.1,0.99,7.390,147.6 -21.1,0.99,7.980,148.5 -21.1,0.99,8.590,141.5 -20.8,0.99,8.410,139.6 -20.9,0.99,8.360,141.9 -20.8,0.99,8.700,149.0 -20.9,0.99,9.540,156.0 -21.0,0.99,9.010,169.8 -20.9,0.99,8.390,166.7 -21.0,0.99,8.980,172.9 -21.9,0.99,10.240,176.2 -21.3,0.99,8.170,160.0 -21.4,0.99,7.250,152.8 -21.3,0.99,8.850,160.1 -21.4,0.99,8.570,156.2 -21.5,0.99,8.560,157.3 -21.5,0.99,8.720,151.6 -21.6,0.99,8.680,151.1 -21.6,0.99,7.940,145.0 -21.7,0.99,9.360,149.4 -21.8,0.99,9.150,152.8 -22.0,0.99,9.460,147.1 -22.0,0.99,9.930,145.1 -21.9,0.99,9.870,145.5 -21.9,0.99,10.760,143.1 -21.9,0.99,10.390,143.1 -21.8,0.99,9.600,143.5 -21.8,0.99,10.050,150.5 -21.9,0.99,8.960,144.3 -22.1,0.99,10.450,147.4 -21.9,0.99,8.500,155.3 -22.0,0.99,8.950,156.3 -22.1,0.99,10.100,162.3 -21.8,0.99,8.370,154.2 -21.7,0.99,7.450,160.1 -21.9,0.99,4.920,153.2 -21.4,0.99,4.780,91.1 -21.3,0.99,6.970,113.1 -21.3,0.99,6.680,111.5 -21.6,0.99,7.020,132.8 -21.7,0.99,7.640,138.4 -21.8,0.99,7.660,140.1 -21.9,0.99,7.870,146.9 -22.0,0.99,6.590,143.1 -21.9,0.99,6.850,133.8 -22.1,0.99,6.940,132.7 -22.2,0.99,6.550,138.2 -22.0,0.99,7.690,134.5 -22.1,0.99,8.680,143.3 -22.0,0.99,6.400,151.5 -22.2,0.99,4.850,276.9 -21.9,0.99,5.970,342.8 -20.4,0.99,6.470,25.5 -20.9,0.99,6.060,28.1 -22.5,0.99,2.830,66.3 -20.3,0.99,5.600,30.8 -20.8,0.99,3.880,38.4 -21.6,0.99,3.210,54.4 -22.1,0.99,2.900,55.3 -20.6,0.99,3.670,22.3 -20.6,0.99,2.560,47.4 -19.5,0.99,4.520,357.6 -19.3,0.99,6.060,337.1 -19.9,0.99,5.430,9.3 -19.9,0.99,4.240,14.0 -19.6,0.99,4.000,2.6 -20.4,0.99,3.210,21.0 -20.8,0.99,3.040,5.9 -21.2,0.99,3.210,340.9 -22.4,0.99,2.130,329.7 -23.2,0.99,1.970,295.8 -24.2,0.99,1.040,295.4 -24.2,0.99,1.390,193.3 -23.8,0.99,2.330,177.5 -25.1,0.99,2.620,309.1 -24.2,0.99,5.140,26.1 -25.5,0.99,9.130,12.8 -24.8,0.99,7.440,30.3 -24.0,0.99,7.570,29.4 -23.6,0.99,10.410,33.9 -23.0,0.99,10.970,38.3 -22.1,0.99,9.750,44.9 -21.6,0.99,8.110,40.1 -21.0,0.99,9.660,46.4 -21.0,0.99,7.520,53.8 -20.7,0.99,9.550,49.8 -20.7,0.99,8.910,55.1 -20.4,0.99,8.420,49.5 -20.2,1.00,9.220,44.7 -20.3,1.00,8.880,49.0 -20.5,1.00,7.270,58.4 -21.2,1.00,7.920,67.1 -21.4,1.00,7.320,83.8 -22.0,1.00,6.070,89.7 -22.3,1.00,5.700,101.8 -22.3,1.00,4.140,106.0 -22.4,1.00,2.720,129.2 -22.4,0.99,1.880,144.7 -22.3,0.99,1.510,167.7 -22.2,0.99,1.150,129.8 -22.2,1.00,1.770,44.4 -22.1,1.00,2.680,16.6 -22.2,1.00,7.370,18.4 -21.8,1.00,9.230,48.4 -21.7,1.00,9.370,62.8 -21.3,1.00,8.140,67.9 -21.2,1.00,8.290,69.2 -20.9,1.00,7.840,69.8 -20.7,1.00,7.660,74.6 -20.6,1.00,7.620,71.1 -20.5,1.00,7.310,77.3 -20.3,1.00,7.220,74.9 -20.2,1.00,7.070,77.0 -20.0,1.00,6.840,74.4 -20.0,1.00,6.920,78.6 -19.9,1.00,6.180,80.7 -19.9,1.00,5.990,90.5 -20.2,1.00,5.750,103.7 -20.3,1.00,5.370,106.9 -20.4,1.00,5.770,116.9 -20.3,1.00,5.620,120.5 -20.4,1.00,5.460,121.1 -20.4,1.00,5.120,127.2 -20.3,1.00,5.070,131.2 -20.3,1.00,4.980,139.3 -20.3,1.00,5.250,138.7 -20.3,1.00,5.250,149.2 -20.3,1.00,5.270,152.5 -20.3,1.00,5.440,160.3 -20.1,1.00,5.410,168.8 -20.1,1.00,5.090,167.8 -20.2,1.00,5.480,175.4 -20.1,1.00,4.810,180.0 -20.1,1.00,5.080,179.3 -20.1,1.00,5.460,163.6 -20.1,1.00,5.400,158.2 -20.0,1.00,4.710,152.7 -20.1,1.00,5.400,145.1 -20.3,1.00,5.730,140.3 -20.4,1.00,5.360,140.4 -20.8,1.00,4.850,146.6 -21.5,1.00,5.870,149.3 -21.9,1.00,6.950,155.3 -21.9,1.00,7.540,151.8 -22.0,1.00,7.230,155.2 -21.8,1.00,8.180,151.0 -21.5,1.00,8.460,149.0 -21.6,1.00,8.900,153.6 -21.6,1.00,9.870,152.9 -21.7,1.00,10.080,157.9 -21.5,1.00,10.740,157.4 -21.5,1.00,10.420,160.1 -21.6,1.00,9.680,162.5 -21.5,1.00,10.200,167.1 -21.7,1.00,8.850,168.8 -21.5,1.00,8.630,163.3 -21.5,0.99,9.030,165.9 -21.7,0.99,8.930,167.0 -21.8,0.99,8.470,170.3 -22.0,0.99,7.980,166.8 -21.9,0.99,8.910,168.0 -21.9,0.99,8.720,169.3 -21.8,0.99,8.570,161.1 -22.0,0.99,8.800,159.3 -21.9,0.99,8.810,155.5 -22.2,0.99,10.100,158.5 -22.3,0.99,9.680,162.9 -22.2,0.99,9.230,160.4 -22.2,0.99,10.020,162.1 -22.1,0.99,9.440,157.5 -21.9,0.99,9.620,160.5 -22.2,0.99,8.850,164.8 -21.8,0.99,10.580,161.5 -21.8,0.99,9.650,168.2 -21.8,0.99,10.300,165.4 -21.8,0.99,9.280,164.0 -21.8,0.99,11.790,166.5 -21.8,0.99,7.920,168.5 -21.7,0.99,9.950,174.5 -21.7,0.99,6.510,179.6 -21.5,0.99,4.540,185.8 -21.6,0.99,4.910,167.3 -21.5,0.99,5.890,163.9 -22.2,0.99,7.250,177.7 -21.6,0.99,7.860,161.8 -21.6,0.99,8.580,163.2 -21.7,0.99,7.970,166.3 -21.7,0.99,9.180,159.6 -21.9,0.99,8.680,162.8 -22.3,0.99,10.960,170.6 -22.3,0.99,10.920,167.8 -22.4,0.99,10.670,171.7 -22.4,0.99,10.900,165.3 -22.4,0.99,11.020,164.1 -22.3,0.99,11.240,163.2 -22.1,0.99,9.980,160.8 -22.2,0.99,9.530,162.7 -22.1,0.99,8.900,163.3 -22.3,0.99,8.960,167.4 -22.3,0.99,9.160,168.5 -22.3,0.99,8.820,169.4 -22.3,0.99,7.860,177.0 -22.2,0.99,10.550,174.5 -22.4,0.99,11.520,175.7 -22.5,0.99,7.160,183.3 -22.3,0.99,4.120,172.2 -22.3,0.99,5.190,153.6 -22.4,0.99,7.110,161.6 -22.2,0.99,4.600,141.0 -22.5,0.99,6.930,159.7 -22.6,0.99,8.960,166.3 -22.6,0.99,7.640,164.2 -22.8,0.99,6.860,166.1 -23.2,0.99,7.100,163.3 -23.1,0.99,9.100,164.8 -23.0,0.99,9.320,171.1 -23.0,0.99,8.850,163.3 -22.9,0.99,8.600,163.6 -22.8,0.99,9.010,160.2 -22.6,0.99,9.520,160.1 -22.5,0.99,9.130,159.7 -22.7,0.99,10.010,165.3 -22.7,0.99,9.690,164.3 -22.2,0.99,11.020,168.4 -22.4,0.99,11.830,174.5 -22.4,0.99,12.940,176.7 -22.4,0.99,9.650,163.3 -22.3,0.99,9.230,177.5 -22.5,0.99,8.890,175.3 -22.8,0.99,12.170,176.1 -22.6,0.99,10.300,176.9 -22.6,0.99,8.520,167.5 -22.6,0.99,7.860,164.9 -22.6,0.99,8.780,160.7 -22.6,0.99,8.700,164.0 -22.6,0.99,9.320,163.8 -22.8,0.99,8.190,159.9 -23.4,0.99,7.800,162.4 -23.4,0.99,8.850,151.9 -23.5,0.99,9.210,156.6 -23.4,0.99,8.410,154.8 -23.6,0.99,8.570,153.5 -23.4,0.99,9.230,147.2 -23.3,0.99,8.950,143.2 -23.5,0.99,10.030,147.3 -22.9,0.99,11.280,142.8 -22.6,0.99,9.990,150.6 -22.7,0.99,10.460,156.3 -22.9,0.99,11.200,160.2 -22.9,0.99,10.160,161.4 -22.8,0.99,9.590,163.8 -22.9,0.99,8.890,168.7 -22.9,0.99,9.990,161.6 -23.1,0.99,9.920,154.4 -23.1,0.99,9.470,154.8 -23.1,0.99,6.490,131.9 -23.1,0.99,5.140,169.4 -23.3,0.99,7.340,169.2 -23.3,0.99,9.770,168.4 -23.4,0.99,8.050,164.3 -23.4,0.99,9.090,153.4 -23.8,0.99,9.710,165.0 -24.0,0.99,9.730,163.3 -23.8,0.99,9.130,154.2 -23.9,0.99,9.630,150.5 -23.8,0.99,10.480,151.1 -23.6,0.99,10.260,145.2 -23.5,0.99,10.950,146.9 -23.7,0.99,11.430,150.7 -23.6,0.99,11.130,150.9 -23.6,0.99,11.380,156.3 -23.6,0.99,11.670,160.8 -23.7,0.99,11.710,160.0 -24.0,0.99,11.160,163.1 -24.0,0.99,10.010,161.8 -23.9,0.99,10.270,160.8 -23.9,0.99,10.080,164.0 -23.8,0.99,9.600,161.3 -24.0,0.99,9.680,159.0 -23.9,0.99,8.690,159.8 -23.9,0.99,8.710,151.8 -23.9,0.99,9.500,147.4 -23.9,0.99,9.610,147.0 -23.9,0.99,9.190,148.9 -23.8,0.99,9.900,145.5 -24.3,0.99,10.260,144.1 -24.1,0.99,11.050,147.9 -23.8,0.99,10.030,143.2 -23.8,0.99,10.550,144.4 -23.8,0.99,9.830,140.6 -23.8,0.99,10.290,142.0 -23.6,0.99,9.870,145.2 -23.5,0.99,11.170,143.4 -23.6,0.99,11.370,147.8 -23.6,0.99,11.310,151.2 -23.6,0.99,11.300,153.5 -23.7,0.99,10.710,160.8 -23.6,0.99,10.680,159.7 -23.6,0.99,9.930,164.1 -23.7,0.99,9.210,162.6 -23.8,0.99,9.460,158.7 -23.7,0.99,8.970,155.1 -23.7,0.99,8.920,154.8 -24.0,0.99,8.990,156.7 -24.1,0.99,8.870,157.3 -23.9,0.99,9.310,151.1 -23.9,0.99,7.600,152.3 -23.9,0.99,7.580,147.6 -24.0,0.99,8.500,152.5 -24.2,0.99,9.860,155.7 -24.2,0.99,9.250,153.4 -24.3,0.99,8.940,157.1 -24.4,0.99,9.100,151.9 -24.3,0.98,9.430,149.0 -24.2,0.98,9.460,150.6 -24.0,0.98,9.360,153.2 -23.9,0.98,10.880,162.2 -23.9,0.98,9.410,168.6 -23.9,0.99,4.310,176.6 -23.9,0.99,1.560,73.3 -24.2,0.99,1.090,137.5 -21.6,0.99,11.500,14.8 -22.7,0.99,6.810,40.3 -24.3,0.99,5.060,202.5 -24.1,0.98,15.100,176.2 -23.8,0.99,8.990,192.6 -24.1,0.99,1.950,208.3 -23.7,0.99,0.930,139.9 -23.7,0.99,0.850,99.5 -23.8,0.99,2.050,109.2 -23.9,0.99,2.130,128.8 -23.9,0.99,2.340,127.2 -24.1,0.99,2.490,132.3 -24.4,0.99,3.380,148.3 -24.4,0.99,3.260,151.7 -24.6,0.99,3.430,165.3 -24.6,0.99,4.190,155.0 -24.6,0.99,4.520,150.4 -24.5,0.99,5.030,147.9 -24.4,0.99,5.750,152.3 -24.0,0.99,4.850,151.7 -24.1,0.99,5.290,145.1 -23.9,0.99,5.120,151.6 -23.8,0.99,5.540,143.7 -23.7,0.99,4.830,158.7 -23.5,0.99,5.400,160.1 -24.0,0.99,4.510,163.6 -24.3,0.99,3.970,168.7 -23.6,0.99,4.560,150.9 -24.4,0.99,5.410,151.6 -23.6,0.99,4.800,139.1 -23.9,0.99,5.040,145.6 -24.1,0.99,5.500,151.4 -24.0,0.99,5.920,149.4 -23.8,0.99,4.960,146.9 -24.1,0.99,5.330,151.8 -24.3,0.99,5.390,151.7 -24.6,0.99,5.270,149.9 -24.6,0.99,4.490,140.7 -25.1,0.99,5.020,139.2 -25.4,0.99,5.920,145.1 -25.4,0.99,5.820,140.9 -25.2,0.99,6.350,135.4 -24.8,0.99,5.980,124.5 -24.8,0.99,7.650,131.8 -25.0,0.99,6.510,121.8 -24.9,0.99,6.340,128.9 -24.4,0.99,5.690,132.1 -24.7,0.99,6.030,140.3 -24.2,0.99,4.830,139.0 -24.2,0.99,5.330,151.4 -23.9,0.99,4.440,149.8 -24.1,0.99,3.870,147.9 -24.4,0.99,4.180,130.7 -24.3,0.99,4.090,140.6 -24.0,0.99,4.110,113.8 -23.9,0.99,5.100,109.9 -23.8,1.00,5.270,114.7 -24.0,1.00,4.520,114.6 -24.0,1.00,3.890,100.5 -24.1,1.00,4.760,111.8 -24.6,1.00,5.150,107.9 -24.7,1.00,5.720,110.2 -24.8,1.00,6.020,114.2 -24.7,0.99,5.560,117.5 -24.7,0.99,5.900,119.0 -24.6,0.99,5.810,121.6 -24.4,0.99,5.820,130.7 -24.3,0.99,7.130,115.7 -24.2,0.99,8.390,110.1 -24.3,0.99,7.300,129.0 -24.6,0.99,6.810,129.6 -24.4,0.99,5.910,134.5 -24.0,0.99,6.840,124.8 -23.9,0.99,8.630,121.0 -24.0,1.00,7.410,129.2 -24.3,1.00,6.210,127.5 -24.2,1.00,6.460,136.8 -24.1,1.00,6.810,138.8 -24.0,1.00,5.610,133.7 -24.0,1.00,6.210,129.9 -24.1,1.00,5.020,131.8 -24.0,1.00,5.740,133.1 -24.1,1.00,5.930,130.7 -24.3,1.00,6.120,128.7 -24.5,1.00,7.610,125.0 -25.0,1.00,6.210,127.5 -24.9,1.00,8.050,130.1 -24.6,1.00,8.330,137.4 -24.8,1.00,6.680,136.6 -25.1,0.99,7.030,137.8 -24.9,0.99,7.280,137.4 -24.8,0.99,7.870,130.4 -24.5,0.99,8.440,130.0 -24.8,0.99,8.220,137.7 -24.9,0.99,8.270,134.9 -24.5,0.99,8.890,146.0 -24.4,0.99,8.720,150.2 -24.4,0.99,8.090,155.2 -24.5,0.99,8.120,160.3 -24.5,0.99,6.290,159.7 -24.6,0.99,6.320,158.1 -24.5,0.99,5.910,171.0 -24.7,0.99,6.540,150.8 -24.6,0.99,6.640,152.3 -24.5,1.00,5.830,156.7 -24.5,1.00,6.100,149.1 -24.6,0.99,7.000,143.7 -24.9,0.99,6.550,152.8 -24.7,0.99,6.100,149.7 -25.0,0.99,6.980,147.7 -25.3,0.99,6.380,162.8 -25.2,0.99,8.500,156.3 -25.0,0.99,7.180,163.2 -25.0,0.99,6.270,161.3 -25.0,0.99,8.120,161.1 -24.6,0.99,7.700,152.3 -24.5,0.99,8.290,155.7 -24.6,0.99,9.270,153.0 -24.5,0.99,8.610,161.6 -24.5,0.99,9.470,154.9 -24.4,0.99,8.980,166.1 -24.3,0.99,8.140,173.6 -24.2,0.99,8.380,169.4 -24.3,0.99,7.610,170.8 -24.5,0.99,8.200,164.6 -24.8,0.99,8.230,171.7 -24.6,0.99,7.260,161.1 -25.3,0.99,7.870,172.3 -25.1,0.99,6.370,167.6 -25.1,0.99,7.680,168.6 -24.9,0.99,7.870,164.5 -25.0,0.99,7.660,167.1 -25.4,0.99,8.700,171.8 -25.2,0.99,9.030,170.8 -25.1,0.99,8.820,165.9 -24.9,0.99,8.380,159.3 -24.7,0.99,9.100,159.3 -24.8,0.99,8.880,163.6 -24.5,0.99,10.090,159.2 -24.5,0.99,10.060,160.5 -24.7,0.99,11.290,152.2 -24.8,0.99,10.850,154.8 -24.7,0.99,10.790,154.3 -24.7,0.99,11.310,160.3 -24.4,0.99,11.740,163.3 -24.4,0.99,10.700,160.0 -24.5,0.99,11.700,160.8 -24.6,0.99,11.090,162.5 -24.5,0.99,11.620,162.9 -24.7,0.99,12.000,164.0 -24.9,0.99,11.050,164.8 -25.1,0.99,10.200,160.6 -25.0,0.99,9.720,158.8 -25.0,0.99,10.000,158.9 -25.1,0.99,9.220,160.6 -25.1,0.99,9.760,161.6 -25.3,0.99,8.740,158.7 -25.4,0.99,8.660,160.0 -25.3,0.99,8.700,156.0 -25.3,0.99,9.290,151.9 -25.2,0.99,9.640,147.9 -25.0,0.99,8.850,151.8 -25.0,0.99,9.450,150.5 -24.8,0.99,9.660,146.3 -24.9,0.99,10.830,148.2 -24.7,0.99,10.580,154.4 -24.8,0.99,10.560,156.0 -24.8,0.99,11.820,157.4 -25.0,0.99,10.280,153.8 -24.8,0.99,10.700,157.9 -25.0,0.99,11.210,161.9 -25.0,0.99,9.310,164.9 -25.1,0.99,9.970,162.8 -25.1,0.99,9.490,167.9 -25.5,0.99,9.550,167.1 -25.1,0.99,10.520,157.5 -25.2,0.99,10.310,160.5 -25.4,0.99,10.490,157.5 -25.4,0.99,9.610,153.2 -25.3,0.99,10.230,147.1 -25.5,0.99,10.340,148.1 -25.5,0.99,10.970,149.4 -25.8,0.99,10.910,150.1 -26.3,0.99,11.510,160.1 -26.1,0.99,11.140,154.9 -25.4,0.99,10.920,149.5 -25.1,0.99,10.360,150.4 -25.1,0.99,10.030,152.1 -25.2,0.99,9.660,142.6 -25.3,0.99,9.440,147.6 -25.2,0.99,9.390,146.1 -25.5,0.99,10.850,153.4 -25.5,0.99,10.270,159.1 -25.1,0.99,11.150,155.5 -25.1,0.99,11.160,151.0 -25.4,0.99,10.940,159.2 -25.2,0.99,10.500,156.3 -25.2,0.99,11.860,155.9 -25.2,0.99,10.690,152.1 -25.5,0.99,9.540,150.0 -25.4,0.99,9.910,150.3 -25.5,0.99,10.300,147.2 -25.4,0.99,9.250,148.9 -25.5,0.99,9.070,144.0 -25.7,0.99,9.250,146.3 -25.7,0.99,9.470,146.0 -25.7,0.99,9.950,145.5 -25.7,0.99,10.850,145.4 -25.6,0.99,9.530,141.7 -25.6,0.99,10.090,149.4 -25.6,0.99,9.420,154.6 -25.3,0.99,10.840,150.6 -25.3,0.99,10.960,149.2 -25.2,0.99,11.020,148.1 -25.4,0.99,11.110,152.5 -25.3,0.99,9.750,154.2 -25.2,0.99,10.800,160.4 -25.3,0.99,9.590,164.5 -25.4,0.99,9.280,163.3 -25.7,0.99,9.940,166.3 -25.9,0.99,9.970,169.0 -25.6,0.99,9.410,174.1 -25.7,0.99,8.710,169.2 -25.8,0.99,9.090,173.1 -25.5,0.99,8.080,171.0 -25.4,0.99,8.160,165.0 -25.5,0.99,7.840,165.2 -25.8,0.99,7.650,169.2 -26.2,0.99,9.520,163.0 -26.0,0.99,9.220,161.1 -26.0,0.99,9.560,163.0 -26.0,0.99,9.880,165.0 -26.0,0.99,10.370,163.8 -25.9,0.99,10.950,161.2 -25.6,0.99,10.000,158.9 -25.6,0.99,10.710,156.8 -25.8,0.99,10.800,161.6 -25.4,0.99,11.140,159.3 -25.5,0.99,11.440,161.5 -26.0,0.99,12.610,168.3 -25.8,0.99,11.980,167.7 -25.4,0.99,11.630,166.0 -25.6,0.99,12.230,169.6 -25.4,0.99,10.460,165.1 -25.4,0.99,10.800,169.9 -25.6,0.99,12.210,172.7 -25.4,0.99,10.760,174.8 -25.6,0.99,11.150,175.5 -25.7,0.99,9.170,178.1 -25.6,0.99,8.670,174.0 -25.9,0.99,8.980,175.9 -25.8,0.99,7.340,174.8 -26.4,0.99,8.270,178.5 -26.2,0.99,6.530,169.5 -26.2,0.99,7.940,169.3 -26.2,0.99,8.190,169.2 -26.0,0.99,7.340,161.9 -25.8,0.99,7.950,164.5 -25.8,0.99,8.040,165.3 -25.6,0.99,7.480,160.4 -25.6,0.99,6.680,157.7 -25.5,0.99,5.710,161.8 -25.4,0.99,5.100,159.4 -25.6,0.99,4.780,168.1 -25.4,0.99,3.300,175.9 -25.1,0.99,2.710,185.4 -25.1,0.99,1.590,160.1 -25.0,0.99,2.200,206.5 -24.8,0.99,2.150,265.0 -24.5,0.99,2.230,346.8 -24.3,0.99,4.380,353.1 -24.2,0.99,3.990,346.2 -24.4,0.99,3.120,354.8 -24.6,0.99,1.540,12.0 -24.6,0.99,1.320,309.7 -24.8,0.99,1.060,3.9 -25.4,0.99,0.530,69.8 -25.8,0.99,1.730,118.0 -26.0,0.99,3.510,145.1 -26.1,0.99,5.370,142.1 -26.1,0.99,5.200,144.0 -26.1,0.99,3.560,146.9 -25.9,0.99,3.020,162.7 -25.8,0.99,3.430,167.0 -25.7,0.99,1.940,132.1 -25.7,0.99,1.170,93.5 -25.8,0.99,1.930,65.6 -25.7,0.99,2.170,55.2 -25.5,0.99,1.980,38.6 -25.0,0.99,5.360,25.5 -23.9,0.99,5.210,16.0 -24.1,0.99,5.370,22.5 -24.4,0.99,6.320,10.3 -23.5,0.99,5.640,14.9 -23.0,0.99,6.160,6.2 -22.8,0.99,5.450,11.1 -22.9,0.99,4.280,9.1 -23.5,0.99,3.180,5.1 -24.1,0.99,1.800,2.8 -24.3,0.99,0.790,345.4 -24.9,0.99,0.570,105.0 -25.2,0.99,1.880,116.0 -25.3,0.99,3.700,128.0 -25.6,0.99,4.040,133.3 -25.8,0.99,4.230,135.3 -25.8,0.99,4.670,131.9 -25.5,0.99,4.220,130.3 -25.3,0.99,4.990,134.5 -25.4,0.99,4.110,144.3 -25.2,0.99,4.510,156.8 -25.3,0.99,4.580,157.2 -25.2,0.99,4.710,156.9 -25.1,0.99,3.720,158.3 -24.9,0.99,3.060,166.8 -24.9,0.99,1.950,163.1 -24.9,0.99,1.910,159.8 -24.9,0.99,1.410,91.0 -25.0,0.99,2.710,149.6 -24.9,0.99,2.620,132.6 -24.9,0.99,2.360,109.7 -25.0,0.99,2.140,104.8 -25.1,0.99,2.450,98.6 -25.2,0.99,2.080,89.7 -25.4,0.99,3.200,86.5 -25.8,0.99,2.630,111.6 -26.3,0.99,3.610,116.2 -26.2,0.99,3.540,121.5 -26.4,0.99,5.050,121.6 -26.5,0.99,5.460,125.4 -26.4,0.99,5.710,139.7 -26.1,0.99,6.160,138.3 -26.1,0.99,6.750,145.4 -26.1,0.99,7.060,150.8 -26.1,0.99,6.190,145.7 -26.0,0.99,6.230,147.8 -25.9,0.99,6.190,151.5 -25.8,0.99,6.070,158.4 -25.5,0.99,4.840,171.0 -25.7,0.99,3.430,158.2 -25.6,0.99,4.120,157.3 -25.7,0.99,1.920,136.2 -25.5,0.99,1.680,160.1 -25.6,0.99,0.880,104.0 -25.5,0.99,1.000,21.2 -25.5,0.99,1.810,54.2 -25.3,0.99,2.030,50.5 -25.3,0.99,3.450,39.2 -25.7,0.99,2.900,77.0 -26.7,0.99,4.770,93.7 -27.0,0.99,5.660,110.6 -26.9,0.99,6.740,121.6 -27.0,0.98,6.260,137.2 -26.6,0.98,6.090,151.1 -26.6,0.98,6.530,146.8 -26.6,0.98,6.240,144.8 -26.5,0.98,6.610,150.0 -26.4,0.98,7.060,153.7 -26.4,0.98,6.450,134.8 -26.3,0.99,3.810,89.0 -21.9,0.99,19.930,26.6 -23.1,0.99,14.480,87.3 -23.4,0.98,8.630,89.8 -24.6,0.98,8.480,120.1 -26.1,0.98,6.030,147.1 -26.0,0.98,6.500,141.9 -23.8,0.99,9.020,33.4 -23.4,0.99,10.330,6.2 -23.3,0.99,11.220,348.1 -24.6,0.99,9.130,358.5 -25.9,0.99,6.720,358.4 -27.2,0.99,5.210,2.5 -26.9,0.99,4.070,106.5 -27.6,0.99,2.550,108.7 -27.6,0.99,2.810,183.9 -23.2,0.99,20.780,294.7 -24.7,0.99,5.990,265.3 -26.5,0.98,9.830,206.9 -27.4,0.98,6.460,227.0 -27.2,0.99,8.130,249.0 -27.6,0.98,8.670,258.3 -27.1,0.99,6.330,299.8 -27.1,0.98,6.340,336.3 -25.7,0.99,6.710,355.0 -24.9,0.99,6.900,19.2 -24.4,0.99,5.710,31.8 -24.3,0.99,5.690,25.5 -23.8,0.99,6.100,21.5 -23.2,0.99,5.530,9.7 -22.6,0.99,4.870,346.8 -22.1,0.99,5.210,351.1 -21.5,0.99,5.330,337.5 -21.3,0.99,6.540,331.8 -21.9,0.99,6.420,341.2 -22.6,0.99,6.500,343.5 -23.5,0.99,4.710,343.8 -24.2,0.99,2.990,283.9 -25.2,0.99,2.850,263.1 -25.7,0.99,3.320,202.5 -25.7,0.99,4.150,182.9 -25.7,0.99,4.340,188.2 -26.1,0.99,4.590,188.8 -25.9,0.99,4.410,184.8 -25.9,0.99,4.040,187.6 -26.1,0.99,2.830,209.5 -26.2,0.99,2.310,237.0 -26.4,0.99,3.590,254.3 -26.4,0.99,2.020,261.5 -25.0,0.99,3.060,290.9 -25.4,0.99,2.100,231.8 -25.7,0.99,1.540,163.3 -25.2,0.99,4.190,70.1 -25.2,0.99,3.870,95.7 -25.3,0.99,2.000,124.7 -25.2,0.99,2.240,133.5 -25.2,0.99,1.960,158.7 -25.4,0.99,3.210,204.5 -25.3,0.99,2.080,196.7 -25.5,0.99,2.870,200.1 -24.8,0.99,7.080,207.5 -23.6,0.99,15.350,203.2 -23.1,0.99,10.070,182.3 -24.7,0.99,3.860,146.7 -24.9,0.99,4.550,154.4 -25.6,0.99,5.410,179.1 -25.6,0.99,5.950,156.9 -26.0,0.99,5.740,163.0 -25.9,0.99,6.850,152.5 -26.1,0.99,7.260,137.8 -25.9,0.99,8.380,137.1 -26.0,0.99,7.880,140.9 -26.1,0.99,8.330,146.6 -26.3,0.99,7.510,149.8 -26.3,0.99,7.980,157.2 -26.2,0.99,9.980,167.2 -25.4,0.99,9.660,203.7 -24.7,0.99,7.250,214.2 -24.9,0.99,7.130,189.2 -25.1,0.99,5.350,196.3 -25.4,0.99,4.210,198.2 -25.8,0.99,3.250,167.1 -26.0,0.99,3.700,143.1 -25.9,0.99,5.170,120.2 -25.8,0.99,5.050,138.9 -26.2,0.99,3.480,163.1 -25.9,0.99,2.460,160.9 -26.6,0.99,9.280,177.4 -24.9,0.99,9.290,171.6 -26.2,0.99,3.690,212.7 -26.1,0.99,6.910,212.0 -25.5,0.99,4.670,193.9 -25.6,0.99,5.940,163.8 -25.7,0.99,5.380,157.3 -26.2,0.99,7.140,148.7 -26.3,0.99,7.250,152.8 -26.5,0.99,8.140,163.5 -26.4,0.99,7.420,182.2 -26.3,0.99,7.290,184.0 -26.2,0.99,6.390,191.6 -26.2,0.99,5.750,199.1 -26.2,0.99,4.780,199.1 -26.1,0.99,4.200,205.5 -26.0,0.99,3.000,203.8 -26.0,0.99,2.170,192.0 -26.2,0.99,2.730,177.3 -26.2,0.99,2.890,178.0 -26.2,0.99,2.810,165.1 -26.5,0.99,3.310,158.0 -26.5,0.99,3.280,161.3 -27.1,0.99,3.930,163.7 -27.1,0.99,4.850,148.6 -27.2,0.99,5.370,156.1 -27.0,0.99,6.110,156.8 -27.2,0.99,6.540,147.3 -27.2,0.99,6.490,151.7 -26.9,0.99,5.800,147.0 -26.8,0.99,6.340,149.8 -26.4,0.99,6.680,147.3 -26.2,0.99,6.610,160.4 -26.2,0.99,5.530,157.1 -26.1,0.99,6.970,148.3 -26.0,0.99,7.190,164.2 -26.1,0.99,7.160,172.5 -26.5,0.99,7.980,174.9 -26.2,0.99,8.660,178.3 -26.2,0.99,7.480,185.3 -26.3,0.99,7.080,188.3 -26.2,0.99,6.230,188.0 -26.4,0.99,5.320,181.0 -26.4,0.99,4.630,180.9 -26.6,0.99,4.350,171.9 -26.5,0.99,4.330,164.7 -26.6,0.99,4.950,162.6 -26.8,0.99,4.590,166.2 -27.0,0.99,4.760,165.6 -27.0,0.99,4.740,164.4 -27.1,0.99,4.970,172.7 -27.0,0.99,4.670,166.0 -27.3,0.99,5.220,160.1 -26.9,0.99,5.680,163.0 -26.8,0.99,5.080,143.8 -26.9,0.99,5.660,154.4 -26.7,0.99,5.410,153.1 -26.8,0.99,5.380,158.4 -26.5,0.99,5.770,161.8 -26.5,0.99,5.570,172.9 -26.4,0.99,6.200,185.5 -27.0,0.99,4.980,185.7 -26.6,0.99,4.630,186.3 -26.5,0.99,4.360,190.7 -26.4,0.99,3.980,183.7 -26.4,0.99,3.460,209.3 -26.4,0.99,2.620,214.6 -26.4,0.99,3.020,211.2 -26.5,0.99,3.000,180.9 -26.9,0.99,4.270,189.2 -26.9,0.99,5.200,171.8 -27.1,0.99,4.970,215.2 -27.3,0.99,4.630,216.4 -27.2,0.99,5.340,162.7 -26.7,0.99,7.070,165.0 -26.5,0.99,6.140,165.4 -26.9,0.99,7.080,174.5 -26.7,0.99,7.710,177.2 -26.6,0.99,7.400,180.6 -26.7,0.99,6.760,188.9 -26.8,0.99,7.350,196.7 -26.7,0.99,6.870,206.8 -26.6,0.99,6.810,204.3 -26.5,0.99,7.300,207.1 -26.4,0.99,6.860,205.1 -26.4,0.99,6.420,212.5 -26.7,0.99,6.320,220.7 -26.6,0.99,5.390,224.5 -26.5,0.99,5.170,236.9 -26.7,0.99,4.020,247.5 -26.3,0.99,3.010,264.5 -26.1,0.99,2.430,274.0 -26.2,0.99,2.280,278.8 -26.5,0.99,1.980,237.2 -26.9,0.99,1.630,213.9 -27.7,0.99,2.030,179.7 -28.1,0.99,2.420,174.0 -28.3,0.99,3.980,180.2 -28.2,0.99,5.180,188.6 -28.2,0.99,6.570,197.2 -27.8,0.99,7.260,207.0 -27.8,0.99,7.450,208.4 -27.7,0.99,7.740,217.1 -27.4,0.99,7.510,222.8 -27.5,0.99,6.710,228.7 -27.5,0.99,6.320,236.8 -27.7,0.99,5.510,246.2 -27.6,0.99,4.880,247.2 -27.2,0.99,4.700,252.8 -26.3,0.99,3.990,266.9 -26.2,0.99,4.070,268.0 -26.2,0.99,3.660,272.9 -25.9,0.99,3.520,265.9 -25.6,0.99,4.400,268.9 -25.4,0.99,4.110,286.0 -25.6,0.99,3.040,306.3 -26.1,0.99,2.690,268.1 -26.2,0.99,2.530,236.8 -26.7,0.99,3.190,227.4 -27.9,0.99,3.720,210.2 -28.2,0.99,5.050,203.8 -28.1,0.99,5.530,205.7 -28.2,0.99,5.730,202.0 -28.1,0.99,5.820,207.8 -28.2,0.99,5.950,211.0 -27.9,0.99,6.570,212.5 -28.0,0.99,6.900,213.1 -27.8,0.99,6.040,217.7 -27.9,0.99,5.750,218.0 -27.7,0.99,5.420,221.1 -27.8,0.99,5.040,229.5 -27.5,0.99,4.850,232.8 -27.5,0.99,4.620,240.1 -27.1,0.99,4.160,245.9 -27.2,0.99,3.720,249.8 -26.4,0.99,2.290,268.1 -26.5,0.99,2.460,294.5 -26.3,0.99,2.210,278.1 -26.3,0.99,2.380,286.9 -26.2,0.99,2.150,286.4 -26.2,0.99,2.520,258.2 -26.4,0.99,2.740,250.6 -26.6,0.99,2.880,222.8 -27.1,0.99,3.830,195.9 -27.3,0.99,4.060,197.7 -27.6,0.99,4.100,185.4 -27.7,0.99,5.160,184.4 -27.6,0.99,5.920,180.6 -28.3,0.99,5.810,180.7 -27.6,0.99,6.390,183.0 -27.6,0.99,6.490,182.1 -27.7,0.99,7.170,180.5 -28.0,0.99,7.130,183.9 -27.4,0.99,7.580,190.6 -27.3,0.99,7.940,184.4 -27.1,0.99,7.580,189.1 -27.0,0.99,7.490,189.6 -26.9,0.99,7.330,192.2 -26.9,0.99,6.250,197.9 -26.8,0.99,5.940,192.5 -26.9,0.99,4.450,192.4 -26.9,0.99,3.100,176.1 -26.9,0.99,4.120,178.0 -26.6,0.99,6.750,220.3 -26.0,0.99,4.370,215.5 -26.2,0.99,4.570,231.0 -27.0,0.99,4.120,215.8 -27.7,0.99,5.650,211.8 -28.0,0.99,6.710,205.3 -28.2,0.99,7.440,196.7 -28.4,0.99,7.550,201.6 -28.4,0.99,8.450,206.2 -28.7,0.99,7.990,203.0 -28.4,0.99,8.060,206.0 -28.5,0.99,8.450,200.7 -28.2,0.99,8.750,203.1 -28.4,0.99,8.700,200.6 -28.2,0.99,8.510,203.8 -28.2,0.99,8.250,198.2 -28.5,0.99,7.850,213.3 -28.2,0.99,7.990,215.2 -28.5,0.99,6.800,221.2 -28.4,0.99,6.580,218.4 -28.2,0.99,6.050,223.3 -28.1,0.99,6.270,233.6 -27.8,0.99,6.270,235.0 -26.5,0.99,3.770,277.0 -26.7,0.99,3.820,284.8 -27.0,0.99,3.570,263.2 -27.4,0.99,3.070,248.9 -27.3,0.99,3.920,203.8 -27.9,0.99,4.380,192.5 -28.3,0.99,5.000,181.6 -28.2,0.99,5.900,177.3 -28.6,0.99,5.860,176.8 -28.3,0.99,7.170,186.8 -28.1,0.99,6.950,184.8 -28.1,0.99,7.910,182.1 -28.2,0.99,7.790,184.3 -27.9,0.99,8.790,187.6 -28.2,0.99,7.600,195.7 -27.6,0.99,8.920,193.3 -27.7,0.99,7.510,207.2 -27.8,0.99,7.220,202.4 -27.9,0.99,8.090,218.7 -27.5,0.99,7.800,224.2 -27.5,0.99,7.280,227.1 -27.0,0.99,7.570,229.6 -27.3,0.99,6.520,244.4 -26.4,0.99,5.930,271.9 -26.0,0.99,4.510,267.0 -26.2,0.99,4.270,265.4 -26.3,0.99,5.340,267.0 -26.5,0.99,4.160,222.2 -26.9,0.99,4.250,214.1 -27.6,0.99,3.870,198.1 -27.7,0.99,3.610,182.3 -27.8,0.99,4.340,177.8 -27.9,0.99,5.160,176.7 -27.9,0.99,5.650,181.4 -27.9,0.99,6.310,180.1 -27.8,0.99,6.510,183.0 -27.6,0.99,7.170,187.5 -27.4,0.99,7.180,183.5 -27.4,0.99,7.680,186.4 -27.3,0.99,7.660,190.7 -27.4,0.99,7.680,194.3 -27.2,0.99,6.930,195.3 -27.2,0.99,6.890,198.0 -27.3,0.99,6.980,204.3 -27.4,0.99,6.330,215.0 -27.2,0.99,6.360,218.2 -27.0,0.99,5.990,214.0 -27.0,0.99,3.930,237.8 -27.0,0.99,2.490,239.4 -26.9,0.99,2.350,273.2 -26.6,0.99,1.030,296.1 -26.8,0.99,0.550,251.3 -27.0,0.99,1.680,127.5 -27.4,0.99,3.720,151.7 -27.8,0.99,4.220,168.0 -27.8,0.99,5.160,167.8 -28.0,0.99,5.490,184.8 -28.0,0.99,6.680,174.2 -28.0,0.99,7.820,175.5 -27.7,0.99,6.410,174.5 -27.6,0.99,7.590,177.2 -27.4,0.99,7.800,182.5 -27.4,0.99,8.220,183.4 -27.6,0.99,8.460,181.9 -27.5,0.99,8.590,182.1 -27.6,0.99,8.890,181.2 -27.3,0.99,9.160,184.5 -27.8,0.99,7.530,192.5 -27.8,0.99,7.100,194.0 -27.7,0.99,6.430,192.3 -27.7,0.99,6.040,194.7 -27.8,0.99,5.950,187.1 -27.6,0.99,5.060,181.5 -27.7,0.99,5.340,166.7 -27.7,0.99,4.530,164.5 -27.6,0.99,4.330,157.0 -27.8,0.99,4.000,165.6 -27.8,0.99,4.160,168.4 -27.9,0.99,4.550,163.6 -27.9,0.99,5.000,166.0 -28.0,0.99,4.660,158.6 -27.9,0.99,5.880,151.5 -28.0,0.99,5.650,152.3 -28.1,0.99,6.760,145.8 -27.7,0.99,7.610,150.1 -27.7,0.99,6.930,149.5 -27.8,0.99,7.620,149.6 -27.6,0.99,7.000,156.3 -27.4,0.99,7.200,152.2 -27.5,0.99,7.010,159.7 -27.3,0.99,6.500,167.0 -27.3,0.99,6.100,164.9 -27.4,0.99,6.040,170.5 -27.3,0.99,5.440,160.7 -27.4,0.99,6.110,151.2 -27.4,0.99,5.650,152.4 -27.4,0.99,5.170,144.1 -27.4,0.99,5.430,144.8 -27.4,0.99,6.260,179.0 -27.4,0.99,5.320,167.8 -27.3,0.99,5.560,161.3 -27.4,0.99,5.740,149.8 -27.6,0.99,5.680,163.4 -27.8,0.99,5.230,161.1 -27.9,0.99,5.600,161.4 -27.9,0.99,4.970,164.1 -27.8,0.99,5.220,169.2 -27.6,0.99,5.610,163.3 -27.3,0.99,6.050,158.1 -27.3,0.99,6.670,164.2 -27.2,0.99,6.050,162.3 -27.0,0.99,6.140,168.4 -27.2,0.99,6.390,180.4 -26.9,0.99,6.200,172.8 -26.9,0.99,5.740,178.8 -26.8,0.99,5.270,182.2 -26.9,0.99,5.350,184.0 -27.1,0.99,5.320,188.0 -27.0,0.99,5.420,184.2 -26.8,0.99,4.460,182.7 -27.1,0.99,3.280,170.0 -27.2,0.99,3.840,162.1 -27.3,0.99,3.420,162.4 -27.3,0.99,2.890,158.2 -27.5,0.99,3.910,141.2 -27.6,0.99,3.330,147.5 -27.8,0.99,4.570,146.0 -27.9,0.99,5.900,152.7 -27.8,0.99,6.190,147.8 -27.8,0.99,6.020,155.8 -27.8,0.99,6.280,148.6 -27.7,0.99,6.140,151.9 -27.6,0.99,6.220,149.6 -27.6,0.99,6.780,156.7 -27.4,0.99,6.840,157.1 -27.3,0.99,6.740,165.6 -27.4,0.99,6.710,166.9 -27.3,0.99,7.750,169.0 -27.4,0.99,6.830,163.9 -27.2,0.99,6.250,171.3 -27.4,0.99,6.210,162.0 -27.3,0.99,6.360,161.6 -27.3,0.99,5.630,171.3 -27.3,0.99,7.220,153.6 -27.4,0.99,5.810,154.9 -27.4,0.99,5.350,155.0 -27.5,0.99,5.780,162.0 -27.5,0.99,4.740,175.7 -27.6,0.99,5.010,182.2 -27.8,0.99,5.350,174.9 -27.9,0.99,5.990,171.7 -28.0,0.99,6.140,183.6 -27.9,0.99,6.640,181.2 -27.8,0.99,8.050,176.6 -27.8,0.99,6.880,181.0 -27.5,0.99,8.520,176.1 -27.4,0.99,8.240,174.6 -27.5,0.99,7.380,166.5 -27.5,0.99,9.280,159.6 -27.6,0.99,8.200,160.6 -27.8,0.99,8.310,163.0 -27.5,0.99,9.540,159.9 -27.8,0.99,8.050,167.9 -28.2,0.99,8.310,172.6 -28.0,0.99,9.510,169.4 -28.0,0.99,8.560,173.6 -27.9,0.99,7.430,169.0 -28.0,0.99,7.910,177.3 -27.9,0.99,6.860,181.5 -28.0,0.99,5.770,184.2 -27.9,0.99,6.050,179.5 -27.9,0.99,5.680,172.9 -28.0,0.99,5.580,174.2 -28.4,0.99,5.990,177.8 -28.2,0.99,5.430,180.9 -28.1,0.99,6.520,170.6 -28.2,0.99,6.000,172.4 -28.2,0.99,6.260,169.0 -28.1,0.99,6.740,159.8 -27.9,0.99,6.720,162.3 -27.8,0.99,6.770,159.4 -27.7,0.99,7.730,158.8 -28.0,0.99,8.270,161.0 -27.5,0.99,9.080,160.2 -27.9,0.99,8.240,168.1 -27.5,0.99,7.840,173.6 -27.3,0.99,8.280,173.3 -27.3,0.99,9.250,178.2 -27.6,0.99,8.250,189.8 -27.7,0.99,8.670,184.6 -27.5,0.99,7.960,188.5 -27.7,0.99,6.900,194.1 -27.7,0.99,7.390,197.3 -27.7,0.99,7.250,191.2 -27.9,0.99,6.680,188.4 -27.7,0.99,6.650,195.7 -28.3,0.99,5.940,200.2 -27.9,0.99,6.630,182.1 -28.2,0.99,6.730,191.9 -28.1,0.99,5.800,179.8 -28.1,0.99,6.640,170.9 -28.2,0.99,6.850,185.5 -28.2,0.99,5.930,183.5 -27.7,0.99,8.320,166.6 -27.4,0.99,8.210,170.5 -27.9,0.99,8.300,171.2 -27.6,0.99,8.370,172.8 -27.8,0.99,9.170,168.7 -27.7,0.99,10.470,172.5 -27.6,0.99,10.980,171.5 -27.9,0.99,10.330,182.5 -27.2,0.99,9.780,183.4 -27.0,0.99,9.560,191.1 -27.4,0.99,9.470,191.5 -27.0,0.99,9.230,204.0 -27.3,0.99,8.230,208.8 -27.3,0.99,7.160,218.7 -27.7,0.99,6.110,215.5 -27.7,0.99,6.340,223.1 -27.9,0.99,5.820,235.3 -28.1,0.99,4.490,194.5 -28.1,0.99,5.360,163.3 -28.1,0.99,6.210,149.5 -28.3,0.99,5.560,184.3 -28.3,0.99,7.080,202.5 -28.4,0.99,6.790,154.9 -28.3,0.99,6.560,165.1 -28.0,0.99,7.410,169.6 -27.4,0.99,7.380,172.9 -27.4,0.99,7.530,173.1 -27.3,0.99,6.930,176.5 -27.5,0.99,7.170,183.3 -27.9,0.99,7.680,192.8 -27.7,0.99,7.980,193.4 -27.5,0.99,7.290,197.1 -27.6,0.99,5.130,194.8 -27.4,0.99,6.350,202.2 -27.4,0.99,5.600,202.2 -27.3,0.99,3.750,212.2 -27.1,0.99,3.360,233.2 -27.0,0.99,2.840,279.4 -26.7,0.99,2.290,291.8 -26.9,0.99,1.430,296.3 -27.0,0.99,2.970,255.7 -25.8,0.99,13.530,207.6 -26.1,0.99,2.230,245.5 -27.4,0.99,2.200,8.8 -27.8,0.99,4.010,152.1 -26.8,0.99,7.350,183.3 -27.3,0.99,8.850,186.9 -27.3,0.99,8.420,194.2 -27.0,0.99,7.240,187.8 -27.0,0.99,7.070,191.4 -27.2,0.99,6.870,189.0 -27.4,0.99,6.050,181.6 -27.2,0.99,6.900,197.0 -27.4,0.99,7.000,210.8 -27.2,0.99,7.490,217.2 -27.3,0.99,7.960,223.8 -27.1,0.99,7.140,235.5 -27.3,0.99,6.980,233.0 -27.3,0.99,7.040,244.8 -26.9,0.99,7.540,245.3 -26.2,0.99,6.720,271.1 -26.1,0.99,7.370,262.2 -26.3,0.99,6.830,281.4 -26.7,0.99,5.280,255.1 -26.8,0.99,5.340,229.2 -27.2,0.99,5.350,218.9 -28.1,0.99,4.720,218.5 -28.4,0.99,6.300,199.9 -28.4,0.99,6.770,208.5 -28.6,0.99,8.070,204.7 -28.7,0.99,9.550,206.9 -28.9,0.99,9.830,209.2 -28.6,0.99,9.430,212.7 -28.6,0.99,9.970,214.6 -28.9,0.99,9.180,215.2 -28.9,0.99,9.690,220.1 -28.6,0.98,9.540,218.9 -29.1,0.99,9.910,222.0 -28.2,0.99,10.500,224.5 -27.9,0.99,11.370,227.0 -28.3,0.99,10.890,235.9 -27.9,0.99,10.430,239.6 -28.3,0.99,9.780,249.0 -27.9,0.99,8.670,253.7 -27.0,0.99,8.170,262.0 -26.8,0.99,7.900,259.1 -26.9,0.99,8.180,254.0 -27.4,0.99,6.310,240.6 -27.6,0.99,7.730,224.2 -27.7,0.99,7.860,228.7 -29.0,0.98,7.700,222.4 -29.4,0.98,9.010,219.7 -29.7,0.98,10.720,219.5 -29.7,0.98,11.810,218.5 -29.8,0.98,11.930,221.0 -29.9,0.98,11.550,223.1 -29.5,0.98,10.540,221.6 -29.6,0.98,9.430,226.0 -30.4,0.98,8.530,229.0 -29.8,0.98,8.430,231.2 -29.8,0.98,7.670,231.0 -30.2,0.98,7.850,240.7 -30.0,0.98,8.130,242.6 -29.4,0.98,7.320,258.5 -28.6,0.98,6.300,296.7 -28.6,0.98,7.340,304.0 -28.6,0.98,4.170,330.6 -27.8,0.99,3.270,353.9 -27.4,0.99,3.750,5.3 -27.4,0.99,3.200,9.0 -28.5,0.99,2.930,21.5 -29.1,0.99,1.240,1.0 -29.4,0.99,1.840,244.1 -29.4,0.99,3.120,252.7 -29.9,0.99,3.610,227.6 -32.8,0.98,8.050,325.9 -33.2,0.98,6.540,328.2 -31.4,0.98,5.770,247.6 -30.5,0.98,7.000,240.0 -30.9,0.98,6.940,252.0 -30.8,0.98,5.970,246.8 -30.3,0.98,4.260,264.9 -30.9,0.98,8.180,29.6 -30.0,0.98,7.820,41.6 -29.8,0.99,6.150,55.7 -29.1,0.99,8.210,66.2 -28.4,0.99,7.310,65.6 -28.1,0.99,7.700,56.9 -27.7,0.99,7.670,54.1 -27.3,0.99,7.010,51.3 -27.1,0.99,7.000,51.8 -26.8,0.99,6.320,52.3 -25.7,0.99,5.830,38.0 -25.2,0.99,5.930,33.2 -25.2,0.99,5.310,37.8 -25.7,0.99,5.020,42.0 -26.3,0.99,3.530,96.5 -26.6,0.99,1.650,94.0 -27.4,0.99,0.820,164.2 -27.7,0.99,2.300,156.8 -27.7,0.99,4.520,146.9 -27.7,0.99,6.720,145.4 -27.7,0.99,7.390,142.7 -27.7,0.99,5.770,148.8 -27.8,0.99,4.540,146.0 -28.0,0.99,2.750,119.0 -27.8,0.99,0.970,115.3 -28.3,0.99,4.480,11.6 -28.1,0.99,4.610,14.7 -27.9,0.99,3.800,31.6 -27.7,0.99,4.000,47.9 -27.3,0.99,3.340,59.9 -25.9,0.99,3.230,25.2 -26.3,0.99,4.140,47.8 -26.1,0.99,4.480,39.6 -25.1,0.99,5.210,24.9 -24.9,0.99,5.780,28.8 -25.0,0.99,4.360,37.5 -25.4,0.99,4.200,48.9 -25.8,0.99,4.580,65.9 -26.3,0.99,3.690,95.3 -26.7,0.99,3.550,131.6 -27.6,0.99,2.160,132.4 -27.6,0.99,3.830,128.6 -27.7,0.99,5.300,125.8 -27.8,0.99,5.830,130.0 -27.9,0.99,6.720,119.4 -28.1,0.99,6.320,115.6 -27.8,0.99,4.600,120.9 -27.7,0.99,3.800,138.1 -27.8,0.99,2.290,125.6 -27.7,0.99,1.750,113.3 -27.6,0.99,1.000,166.9 -27.6,0.99,0.800,194.3 -27.4,0.99,1.310,270.7 -27.3,0.99,0.600,357.1 -26.0,0.99,2.850,2.3 -25.1,0.99,4.640,13.7 -25.3,0.99,3.900,4.7 -25.0,0.99,4.570,21.9 -25.4,0.99,4.310,39.6 -25.6,0.99,4.190,42.8 -25.8,0.99,5.230,55.3 -26.1,0.99,4.860,67.8 -26.5,0.99,4.520,74.1 -26.9,0.99,4.820,97.5 -27.5,0.99,4.950,111.9 -27.7,0.99,5.060,120.9 -27.7,0.99,4.870,130.8 -27.8,0.99,4.680,137.7 -28.2,0.99,3.410,144.4 -28.1,0.99,4.870,132.7 -27.8,0.99,4.660,132.4 -27.6,0.99,4.600,132.4 -27.3,0.99,3.090,121.6 -27.2,0.99,3.390,129.0 -27.1,0.99,2.620,109.4 -27.0,0.99,2.590,115.8 -26.9,0.99,2.310,100.4 -26.8,0.99,2.670,86.1 -26.7,0.99,1.910,60.2 -26.6,0.99,1.900,27.6 -26.4,0.99,2.850,10.5 -25.7,0.99,4.570,18.1 -25.3,0.99,4.860,19.5 -25.1,0.99,4.360,13.7 -25.4,0.99,4.980,25.4 -25.4,0.99,3.670,50.0 -26.0,0.99,2.700,81.2 -26.4,0.99,3.550,99.6 -27.2,0.99,3.650,113.5 -27.5,0.99,3.470,122.4 -27.5,0.99,4.010,138.4 -27.8,0.99,4.370,150.9 -27.7,0.99,5.170,148.8 -27.8,0.99,5.870,143.4 -27.6,0.99,5.570,133.1 -27.4,0.99,5.310,134.5 -27.4,0.99,5.880,129.0 -27.3,0.99,5.340,126.3 -27.2,0.99,4.150,130.4 -27.3,0.99,3.480,136.9 -27.3,0.99,4.210,130.1 -27.1,0.99,3.390,127.3 -27.2,0.99,3.360,121.7 -27.1,0.99,2.530,108.7 -27.2,0.99,2.370,90.3 -27.0,0.99,2.440,76.2 -26.8,0.99,2.340,62.0 -26.5,0.99,3.480,43.1 -25.9,0.99,4.660,38.5 -26.6,0.99,5.180,45.4 -26.9,0.99,6.660,75.0 -26.9,0.99,7.570,102.9 -27.2,0.99,5.350,110.0 -27.2,0.99,7.030,125.1 -26.8,0.99,6.000,139.7 -26.9,0.99,3.760,118.3 -26.8,0.99,4.850,93.0 -27.0,0.99,6.500,119.8 -26.7,0.99,5.980,118.6 -26.8,0.99,7.680,120.0 -26.9,0.99,7.150,121.8 -26.8,0.99,6.830,126.3 -26.8,0.99,5.710,141.2 -27.1,0.99,5.330,138.5 -27.3,0.99,6.660,156.6 -27.2,0.99,4.290,152.1 -27.2,0.99,3.140,141.1 -27.1,0.99,1.980,142.2 -27.0,0.99,0.860,198.2 -27.0,0.99,2.190,109.0 -26.7,0.99,2.050,55.0 -26.3,0.99,6.130,41.1 -26.8,0.99,5.120,111.3 -25.8,0.99,4.480,83.9 -26.3,0.99,4.450,112.9 -26.6,0.99,4.360,111.9 -27.2,0.99,5.140,158.9 -27.3,0.99,5.700,129.8 -27.3,0.99,5.880,132.4 -27.2,0.99,6.230,126.1 -27.3,0.99,5.760,137.5 -27.3,0.99,6.380,140.8 -26.8,0.99,8.580,123.4 -26.4,0.99,6.850,142.8 -26.9,0.99,6.590,149.4 -27.0,0.99,7.000,161.4 -26.9,0.99,6.570,149.9 -27.0,0.99,7.510,157.8 -27.0,0.99,6.080,151.8 -27.0,0.99,6.410,165.4 -27.0,0.99,6.920,165.0 -27.1,0.99,6.790,169.9 -27.3,0.99,6.140,179.3 -27.0,0.99,9.330,170.8 -25.6,0.99,9.230,169.1 -25.9,0.99,8.250,163.9 -26.2,0.99,7.720,167.4 -26.5,0.99,10.800,173.9 -25.8,0.99,9.000,180.2 -25.5,0.99,7.640,198.5 -25.9,0.99,7.000,186.2 -26.4,0.99,6.340,182.0 -26.2,0.99,7.860,189.5 -23.8,0.99,9.300,196.1 -25.5,0.99,5.310,184.7 -26.4,0.99,5.160,157.4 -26.1,0.99,4.880,143.9 -26.9,0.99,7.090,139.7 -27.0,0.99,7.550,138.0 -27.2,0.99,8.160,140.2 -27.4,0.99,10.050,147.6 -27.2,0.99,8.630,156.8 -27.4,0.99,8.630,165.5 -27.5,0.99,8.420,168.0 -27.5,0.99,8.260,169.0 -27.5,0.99,8.350,170.9 -27.6,0.99,9.430,168.3 -27.8,0.99,9.650,174.3 -27.2,0.99,7.770,178.9 -27.7,0.99,7.200,171.3 -27.7,0.99,6.690,159.8 -24.4,0.99,3.140,312.0 -24.0,1.00,6.170,1.9 -24.6,1.00,4.870,296.7 -25.4,1.00,2.700,314.9 -26.0,1.00,1.840,53.5 -26.3,0.99,3.370,92.5 -26.3,0.99,3.490,97.4 -26.6,0.99,4.760,113.5 -26.8,0.99,5.810,120.5 -27.0,0.99,4.410,119.6 -27.8,0.99,7.180,141.1 -27.7,0.99,6.920,152.6 -27.9,0.99,6.640,153.6 -27.4,0.99,8.420,148.4 -27.4,0.99,7.100,157.8 -27.1,0.99,7.170,160.1 -27.4,0.99,6.180,168.0 -27.1,1.00,6.090,169.8 -27.1,1.00,5.170,176.7 -27.2,1.00,3.910,166.4 -27.1,1.00,4.140,165.0 -27.0,1.00,3.570,169.2 -27.0,1.00,3.330,154.5 -27.0,1.00,3.060,147.3 -27.1,1.00,2.810,151.2 -27.1,1.00,3.380,144.6 -27.1,1.00,3.320,130.2 -27.5,1.00,4.080,148.7 -27.5,1.00,6.030,146.4 -27.6,0.99,5.710,147.9 -27.6,0.99,5.960,147.9 -27.6,0.99,7.580,145.4 -27.7,0.99,6.630,159.0 -27.3,0.99,6.560,156.9 -27.0,0.99,6.420,165.9 -27.0,0.99,5.410,176.2 -26.9,0.99,5.970,174.9 -26.9,0.99,6.970,177.5 -26.9,0.99,6.400,178.8 -27.0,0.99,6.730,183.7 -26.8,0.99,5.780,180.7 -26.9,0.99,5.380,186.1 -27.1,0.99,5.270,193.1 -27.1,0.99,5.120,192.0 -27.0,0.99,4.380,201.3 -26.9,0.99,3.680,211.6 -26.9,0.99,2.890,228.0 -26.9,0.99,2.350,192.1 -26.9,0.99,2.360,199.7 -26.9,0.99,1.360,192.8 -27.0,0.99,2.850,168.6 -27.3,0.99,3.430,182.0 -27.4,0.99,5.380,176.0 -27.5,0.99,4.510,172.6 -27.6,0.99,4.570,171.4 -27.7,0.99,5.240,175.8 -27.6,0.99,5.450,178.1 -27.4,0.99,5.740,184.2 -27.4,0.99,6.570,182.0 -27.4,0.99,7.400,187.9 -27.6,0.99,7.290,190.1 -27.2,0.99,8.150,196.3 -27.3,0.99,7.840,197.9 -27.1,0.99,8.920,201.7 -27.2,0.99,7.610,209.1 -27.4,0.99,8.610,214.8 -27.2,0.99,8.600,221.1 -27.2,0.99,8.990,221.2 -27.3,0.99,7.530,227.2 -27.0,0.99,6.840,234.1 -27.0,0.99,7.400,237.4 -26.8,0.99,6.650,246.9 -27.0,0.99,6.130,240.7 -26.9,0.99,6.120,234.8 -27.0,0.99,6.280,216.9 -27.8,0.99,6.610,211.3 -27.9,0.99,6.920,203.3 -27.9,0.99,7.500,202.9 -27.8,0.99,8.110,199.6 -27.9,0.99,8.850,203.8 -28.0,0.99,8.760,201.5 -27.8,0.99,7.970,208.6 -28.0,0.99,3.390,226.9 -27.4,0.99,8.660,213.1 -26.7,0.99,6.750,234.9 -27.5,0.99,6.920,222.7 -27.9,0.99,7.950,228.0 -27.3,0.99,8.480,228.9 -27.4,0.99,8.470,233.8 -27.4,0.99,7.500,236.1 -27.1,0.99,7.410,245.2 -27.0,0.99,7.150,249.7 -26.6,0.99,6.540,267.8 -26.3,0.99,6.530,277.2 -26.1,0.99,5.780,276.5 -26.1,0.99,6.190,277.7 -26.3,0.99,4.590,276.8 -26.6,0.99,3.660,272.9 -26.9,0.99,2.880,250.6 -27.8,0.99,3.370,222.2 -28.2,0.99,4.140,208.2 -28.5,0.99,5.940,189.8 -28.2,0.99,7.080,189.9 -28.3,0.99,8.790,192.4 -27.6,0.99,9.020,204.9 -27.3,0.99,8.290,216.6 -27.2,0.99,7.590,217.0 -27.6,0.99,6.560,229.0 -27.7,0.99,5.840,235.5 -27.9,0.99,5.120,242.1 -28.0,0.99,4.210,247.6 -28.0,0.99,3.660,239.5 -27.7,0.99,3.190,246.6 -27.5,0.99,3.720,253.6 -26.8,0.99,4.320,285.2 -26.3,0.99,4.160,306.0 -26.1,0.99,4.060,304.6 -25.8,0.99,4.000,314.8 -25.8,0.99,3.930,312.5 -26.3,0.99,4.170,309.4 -26.8,0.99,3.210,314.3 -27.4,0.99,2.200,318.6 -27.4,0.99,1.580,261.3 -28.4,0.99,1.850,242.1 -29.0,0.99,2.050,172.0 -28.7,0.99,2.870,154.1 -28.8,0.99,5.750,178.9 -28.6,0.99,7.040,188.0 -28.4,0.99,6.510,181.9 -28.2,0.99,6.590,194.2 -28.0,0.99,6.610,201.6 -27.9,0.99,6.690,206.1 -27.9,0.99,6.430,215.5 -27.7,0.99,5.780,213.9 -27.8,0.99,4.910,215.8 -27.5,0.99,6.020,216.8 -27.3,0.99,5.270,225.2 -27.2,0.99,4.080,220.6 -27.3,0.99,4.450,228.4 -27.1,0.99,3.660,236.9 -27.1,0.99,3.660,253.7 -26.9,0.99,4.040,268.9 -26.4,0.99,3.790,285.1 -26.2,0.99,3.390,300.9 -26.5,0.99,1.880,279.4 -26.7,0.99,1.500,228.4 -26.8,0.99,1.680,196.8 -27.2,0.99,2.770,173.8 -27.6,0.99,4.090,150.3 -28.7,0.99,2.870,144.1 -29.0,0.99,4.600,156.3 -28.7,0.99,5.620,151.8 -28.3,0.99,6.220,154.5 -27.9,0.99,7.820,146.5 -27.9,0.99,7.350,152.9 -27.6,0.99,8.840,162.9 -27.2,0.99,8.230,167.7 -27.3,0.99,7.970,163.8 -27.7,0.99,7.250,153.7 -27.6,0.99,7.620,152.1 -27.4,0.99,8.260,154.9 -27.0,0.99,13.020,162.9 -27.6,0.99,9.420,164.3 -27.9,0.99,8.450,150.0 -28.2,0.99,7.220,156.3 -27.8,0.99,6.900,150.1 -27.7,0.99,7.460,148.4 -27.4,0.99,6.560,97.5 -24.1,0.99,7.110,11.1 -23.2,0.99,12.960,310.8 -22.4,0.99,5.370,290.9 -22.2,0.99,3.400,190.2 -23.2,0.99,3.840,66.4 -24.1,0.99,3.350,70.4 -25.5,0.99,6.280,84.2 -26.5,0.99,8.230,112.1 -26.6,0.99,7.370,108.5 -26.9,0.99,8.070,115.9 -26.9,0.99,7.330,119.5 -27.0,0.99,7.660,102.5 -27.0,0.99,7.410,106.6 -27.0,0.99,8.350,102.8 -24.6,0.99,6.750,102.1 -25.7,0.99,10.220,104.5 -23.7,0.99,6.780,183.5 -24.7,0.99,6.640,170.3 -24.1,0.99,1.980,144.2 -23.5,0.99,5.800,151.2 -25.3,0.99,5.070,99.1 -25.6,0.99,5.760,92.3 -26.0,0.99,4.680,82.4 -26.2,0.99,7.370,69.4 -26.0,0.99,9.590,81.4 -26.3,0.99,8.060,83.0 -26.5,0.99,7.240,78.3 -26.9,0.99,8.880,91.4 -27.0,0.99,7.130,101.0 -27.0,0.99,8.200,110.8 -26.7,0.99,7.800,108.1 -27.2,0.99,7.390,106.5 -25.8,0.99,8.850,85.0 -25.4,0.99,7.930,130.2 -24.7,0.99,1.420,84.7 -25.4,0.99,1.950,30.9 -26.3,0.99,5.640,102.3 -24.8,0.99,5.010,95.7 -25.7,0.99,5.920,111.6 -26.1,0.99,4.320,106.1 -26.6,0.99,5.160,91.0 -25.7,0.99,12.240,97.5 -24.9,1.00,8.760,113.7 -25.0,1.00,7.520,125.7 -25.2,1.00,4.580,124.4 -25.5,1.00,3.490,114.0 -25.9,1.00,3.180,99.0 -26.0,1.00,3.810,61.9 -26.2,1.00,4.840,55.7 -26.1,1.00,5.340,50.9 -26.4,1.00,6.050,61.9 -26.8,1.00,7.570,66.9 -26.8,1.00,7.120,99.8 -26.9,1.00,8.230,99.6 -27.0,1.00,5.560,114.7 -27.2,0.99,5.700,89.4 -27.6,0.99,6.150,104.2 -27.4,0.99,6.720,98.4 -27.5,0.99,6.170,94.7 -27.6,0.99,6.590,90.4 -27.7,0.99,5.860,91.2 -27.6,0.99,7.150,88.8 -27.4,0.99,6.010,90.6 -27.6,0.99,8.000,83.5 -27.6,0.99,6.250,96.5 -27.6,0.99,5.700,94.8 -27.0,0.99,5.820,81.2 -27.3,0.99,7.080,86.6 -27.4,0.99,5.260,82.4 -27.8,0.99,6.470,83.8 -27.1,1.00,7.200,70.3 -26.4,1.00,7.210,69.0 -26.4,1.00,6.400,69.5 -26.8,1.00,5.320,80.9 -26.9,0.99,4.530,86.5 -27.1,0.99,4.390,99.2 -27.1,0.99,3.600,101.1 -27.2,0.99,3.630,114.4 -27.3,0.99,3.340,128.0 -27.3,0.99,3.330,131.1 -27.2,0.99,2.800,111.6 -27.1,0.99,2.950,130.6 -26.9,0.99,1.280,86.7 -26.9,0.99,2.480,89.4 -27.2,0.99,5.040,98.5 -27.1,0.99,4.430,100.8 -27.0,0.99,4.000,110.4 -27.2,0.99,4.100,137.3 -27.1,0.99,3.840,113.6 -26.9,0.99,2.160,123.0 -26.2,0.99,3.720,213.7 -26.2,0.99,5.440,156.7 -23.5,0.99,5.610,229.1 -24.2,0.99,2.570,231.7 -24.6,0.99,2.300,285.4 -25.4,0.99,1.200,16.7 -25.1,0.99,2.780,6.0 -25.5,0.99,3.340,10.2 -25.9,0.99,2.460,30.8 -26.5,0.99,3.140,29.8 -26.2,0.99,5.640,41.0 -26.3,0.99,5.770,40.1 -26.5,0.99,4.270,80.8 -26.6,0.99,4.230,88.8 -26.7,0.99,3.700,91.6 -26.6,0.99,3.960,107.1 -26.6,0.99,4.050,112.3 -26.6,0.99,3.970,116.0 -26.8,0.99,3.710,134.3 -26.8,0.99,3.910,139.8 -26.9,0.99,3.790,152.2 -26.8,0.99,4.500,167.5 -26.7,0.99,3.650,175.8 -26.7,0.99,2.790,195.2 -26.6,0.99,3.190,186.8 -26.5,0.99,2.220,197.3 -26.6,0.99,2.090,181.9 -26.5,0.99,1.550,198.9 -26.4,0.99,0.870,255.1 -25.8,0.99,3.540,35.3 -25.7,0.99,5.700,84.2 -26.1,0.99,6.230,120.2 -26.0,0.99,7.830,141.6 -25.9,0.99,6.810,153.4 -27.2,0.99,5.910,159.5 -26.4,0.99,6.850,144.4 -26.9,0.99,6.320,134.6 -27.1,0.99,5.990,130.9 -27.3,0.99,5.380,133.4 -26.9,0.99,3.800,142.8 -27.0,0.99,6.350,178.7 -26.9,0.99,6.310,168.7 -26.9,0.99,7.400,181.7 -26.9,0.99,8.260,178.3 -27.2,0.99,8.300,187.3 -27.0,0.99,7.620,194.2 -27.0,0.99,5.030,192.2 -24.9,0.99,15.380,211.3 -24.3,0.99,4.970,200.9 -25.3,0.99,7.780,174.4 -27.7,0.99,7.490,215.1 -27.6,0.99,6.850,226.8 -27.5,0.99,7.100,235.1 -27.4,0.99,5.890,246.7 -27.6,0.99,4.690,244.8 -27.6,0.99,5.330,231.4 -27.9,0.99,5.750,220.9 -27.9,0.99,5.860,204.1 -28.4,0.99,5.410,181.8 -28.4,0.99,8.520,195.8 -28.1,0.99,7.950,189.3 -28.1,0.99,8.420,187.8 -28.1,0.99,8.600,178.3 -28.3,0.99,10.220,181.6 -28.3,0.99,10.000,178.1 -28.5,0.99,11.260,182.9 -28.5,0.99,11.520,184.1 -29.1,0.99,10.390,185.4 -28.7,0.99,11.140,193.3 -28.6,0.99,11.000,197.4 -29.0,0.99,9.170,189.1 -28.7,0.99,11.270,200.8 -28.3,0.99,9.570,198.1 -28.4,0.99,8.810,199.5 -28.0,0.99,9.040,200.8 -27.7,0.99,7.750,196.6 -27.4,0.99,7.140,197.3 -27.6,0.99,7.090,200.4 -27.7,0.99,4.710,201.8 -27.7,0.99,6.130,186.8 -27.9,0.99,8.000,194.8 -28.1,0.99,7.730,193.6 -28.2,0.99,8.320,191.4 -28.5,0.99,8.030,190.6 -28.2,0.99,8.850,194.4 -28.5,0.99,8.930,189.9 -28.4,0.99,8.370,191.9 -28.5,0.99,9.670,188.9 -28.1,0.99,9.680,191.3 -28.0,0.99,9.450,186.2 -27.6,0.99,9.600,180.9 -27.3,0.99,11.040,188.9 -27.6,0.99,10.320,193.2 -27.6,0.99,9.180,200.2 -27.3,0.99,9.980,193.8 -27.3,0.99,9.930,197.9 -27.3,0.99,9.220,197.3 -27.4,0.99,10.020,201.6 -27.7,0.99,8.560,201.5 -28.0,0.99,8.770,206.5 -27.6,0.99,8.990,205.3 -27.6,0.99,7.010,200.7 -27.5,0.99,6.130,210.9 -27.5,0.99,4.370,211.5 -27.6,0.99,4.510,223.5 -28.0,0.99,5.580,211.1 -28.1,0.99,6.070,207.4 -28.2,0.99,5.530,211.8 -28.2,0.99,5.860,195.8 -28.1,0.99,6.980,200.2 -28.0,0.99,7.330,193.6 -27.8,0.99,7.450,193.5 -27.9,0.99,7.530,197.6 -27.7,0.99,8.040,201.0 -27.5,0.99,8.060,185.7 -27.6,0.99,9.610,196.2 -27.4,0.99,8.140,207.1 -27.0,0.99,8.560,202.2 -27.2,0.99,8.600,205.8 -27.6,0.99,8.410,209.8 -27.7,0.99,8.460,212.7 -27.4,0.99,7.660,226.4 -27.3,0.99,7.410,221.7 -27.2,0.99,7.660,224.8 -27.3,0.99,6.340,239.5 -27.2,0.99,5.470,243.2 -27.2,0.99,5.110,241.7 -27.2,0.99,3.980,241.0 -27.1,0.99,4.590,221.1 -27.7,0.99,4.760,209.0 -27.9,0.99,4.680,196.1 -28.0,0.99,5.010,197.9 -27.7,0.99,6.460,196.3 -27.9,0.99,6.740,190.8 -27.8,0.99,7.220,196.2 -27.6,0.99,7.740,196.0 -27.3,0.99,7.140,196.0 -27.4,0.99,7.430,200.6 -27.3,0.99,7.800,208.0 -27.6,0.99,7.490,213.9 -27.2,0.99,7.370,219.4 -27.0,0.99,7.950,224.9 -26.9,0.99,8.810,233.0 -27.0,0.99,7.680,236.8 -27.1,0.99,7.940,244.6 -26.9,0.99,8.570,245.9 -26.4,0.99,7.870,261.1 -26.1,0.99,6.860,260.4 -25.8,0.99,6.240,267.9 -25.8,0.99,4.910,266.5 -26.1,0.99,4.600,250.2 -26.3,0.99,4.300,226.5 -26.9,0.99,3.200,225.2 -27.6,0.99,3.160,205.8 -27.9,0.99,4.180,200.7 -28.0,0.99,4.350,203.0 -28.0,0.99,5.640,200.8 -28.1,0.99,5.740,201.5 -28.2,0.99,5.390,198.5 -27.9,0.99,6.610,201.2 -27.7,0.99,6.770,202.6 -27.8,0.99,6.970,207.6 -27.7,0.99,7.410,207.0 -27.7,0.99,6.930,212.5 -27.6,0.99,7.370,215.4 -27.7,0.99,8.190,219.8 -27.4,0.99,7.330,219.5 -27.6,0.99,7.190,225.5 -27.5,0.99,6.960,233.7 -27.6,0.99,6.200,236.3 -27.4,0.99,6.030,239.3 -26.9,0.99,5.650,235.7 -27.1,0.99,5.120,236.8 -26.8,0.99,3.660,249.5 -26.6,0.99,2.550,235.8 -26.7,0.99,2.490,231.2 -27.0,0.99,3.850,201.0 -27.4,0.99,5.320,195.2 -27.7,0.99,6.220,187.2 -27.8,0.99,7.410,191.2 -27.8,0.99,7.910,192.8 -27.6,0.99,8.620,189.6 -27.9,0.99,8.820,194.7 -27.6,0.99,9.240,194.0 -27.3,0.99,10.010,199.8 -27.3,0.99,10.190,199.8 -27.2,0.99,10.860,201.3 -27.4,0.99,10.280,203.5 -27.6,0.99,10.520,203.4 -27.7,0.99,10.650,207.9 -28.4,0.99,9.630,206.9 -28.4,0.99,10.820,214.1 -28.5,0.99,8.870,214.2 -27.7,0.99,10.510,213.8 -28.2,0.99,8.140,220.3 -28.3,0.99,9.320,233.2 -27.8,0.99,8.440,237.6 -27.8,0.99,7.870,240.8 -27.8,0.99,7.450,234.8 -27.9,0.99,8.380,221.0 -28.3,0.99,8.020,214.5 -28.5,0.99,9.280,217.3 -28.9,0.99,9.930,216.9 -28.7,0.99,9.240,206.4 -29.3,0.99,8.350,223.2 -28.8,0.99,8.360,208.0 -28.7,0.99,9.460,205.0 -28.7,0.99,8.960,211.9 -28.7,0.99,7.720,205.8 -28.3,0.99,7.950,212.4 -28.2,0.99,7.570,213.9 -28.2,0.99,8.150,214.1 -27.8,0.99,7.770,213.4 -27.7,0.99,7.110,221.9 -27.6,0.99,6.210,217.2 -27.6,0.99,6.550,219.6 -27.6,0.99,6.420,224.9 -27.4,0.99,6.600,227.8 -27.6,0.99,5.830,231.8 -27.4,0.99,5.770,227.5 -27.4,0.99,4.540,232.9 -27.5,0.99,4.730,225.1 -27.6,0.99,4.660,221.4 -27.6,0.99,5.110,217.3 -27.6,0.99,5.970,207.5 -27.9,0.99,6.570,204.4 -28.2,0.99,5.600,197.7 -28.0,0.99,6.700,193.2 -27.9,0.99,6.900,191.0 -27.9,0.99,5.760,189.4 -27.8,0.99,5.860,183.7 -27.8,0.99,5.230,172.8 -27.7,0.99,6.970,177.2 -27.5,0.99,7.400,173.0 -27.6,0.99,7.190,173.7 -27.5,0.99,7.890,167.7 -27.7,0.99,7.160,166.2 -27.6,0.99,8.980,167.5 -27.7,0.99,8.070,171.9 -27.8,0.99,8.200,187.8 -27.8,0.99,8.830,194.5 -27.8,0.99,7.980,194.1 -27.9,0.99,8.540,192.9 -27.8,0.99,7.400,191.0 -27.8,0.99,7.020,180.8 -27.8,0.99,6.660,188.4 -27.7,0.99,6.550,175.1 -27.9,0.99,6.060,180.6 -27.8,0.99,7.660,173.4 -27.9,0.99,7.470,180.3 -27.9,0.99,7.520,181.9 -28.0,0.99,7.870,181.1 -28.0,0.99,7.170,176.9 -28.1,0.99,7.380,175.2 -27.9,0.99,7.630,170.1 -27.9,0.99,7.620,166.9 -27.9,0.99,8.300,165.3 -28.0,0.99,9.430,166.2 -28.2,0.99,9.010,168.3 -28.2,0.99,8.770,170.3 -28.0,0.99,8.760,172.0 -27.9,0.99,9.790,174.3 -27.7,0.99,9.120,176.9 -27.9,0.99,8.140,187.3 -27.7,0.99,8.440,179.1 -27.7,0.99,6.970,184.4 -27.8,0.99,6.810,188.2 -27.5,0.99,7.950,203.4 -27.4,0.99,4.730,190.5 -27.5,1.00,4.980,208.4 -27.5,0.99,3.800,207.3 -27.4,1.00,4.630,226.5 -27.5,0.99,3.840,214.4 -27.8,0.99,4.250,203.5 -28.1,0.99,4.040,188.1 -28.2,0.99,5.540,186.2 -28.3,0.99,5.290,185.6 -28.2,0.99,6.260,173.9 -28.2,0.99,6.460,173.4 -27.9,0.99,7.250,173.5 -27.9,0.99,7.190,173.0 -27.9,0.99,6.900,172.4 -27.8,0.99,8.070,178.5 -27.9,0.99,7.500,181.5 -27.7,0.99,7.810,181.4 -27.6,0.99,7.990,185.9 -27.5,0.99,8.650,190.3 -27.6,0.99,7.410,190.6 -27.5,0.99,7.030,195.1 -27.5,0.99,6.820,197.2 -27.6,0.99,6.890,206.0 -27.4,0.99,5.370,220.0 -27.0,0.99,6.340,244.8 -26.6,0.99,3.790,259.5 -26.7,0.99,3.500,252.4 -26.7,0.99,3.280,248.7 -26.8,0.99,3.440,230.9 -27.6,0.99,3.760,200.9 -27.9,0.99,4.560,193.3 -27.9,0.99,4.590,190.0 -27.8,0.99,5.650,184.4 -27.8,0.99,6.320,180.9 -27.7,0.99,6.410,183.6 -27.6,0.99,6.320,176.7 -27.4,0.99,6.610,183.2 -27.4,0.99,6.500,179.3 -27.5,0.99,6.720,181.5 -27.4,0.99,6.850,185.7 -27.4,0.99,7.430,190.3 -27.3,0.99,6.640,198.5 -27.2,0.99,6.030,206.4 -27.3,0.99,6.720,211.8 -27.3,0.99,7.050,219.8 -27.1,0.99,6.390,224.7 -26.9,0.99,6.280,219.6 -26.9,0.99,6.360,251.7 -26.4,0.99,5.080,263.6 -26.3,0.99,4.790,260.1 -26.3,0.99,4.080,252.8 -26.6,0.99,2.540,216.7 -26.9,0.99,1.740,191.2 -27.6,0.99,2.810,169.5 -27.8,0.99,2.720,179.0 -28.1,0.99,4.190,183.8 -28.2,0.99,4.640,189.8 -28.1,0.99,5.990,184.3 -28.1,0.99,5.450,190.5 -27.9,0.99,5.490,192.9 -27.8,0.99,5.580,199.4 -27.8,0.99,7.110,196.6 -27.7,0.99,6.140,194.3 -27.7,0.99,5.720,198.1 -27.6,0.99,6.830,202.6 -27.4,0.99,6.600,212.1 -27.3,0.99,6.020,213.6 -27.2,0.99,5.570,231.5 -27.1,0.99,5.630,225.7 -27.1,0.99,5.030,235.3 -26.9,0.99,4.840,228.2 -26.9,0.99,4.900,240.5 -26.3,0.99,3.700,272.9 -26.4,0.99,2.560,272.4 -26.5,0.99,2.050,249.5 -26.5,0.99,2.660,236.6 -26.9,0.99,3.640,211.4 -27.6,0.99,3.480,201.8 -28.0,0.99,3.380,189.4 -28.0,0.99,4.490,173.3 -28.1,0.99,5.350,175.0 -28.1,0.99,5.960,169.4 -28.1,0.99,6.860,170.8 -27.9,0.99,6.260,169.7 -27.9,0.99,5.960,163.0 -27.9,0.99,7.400,166.7 -27.9,0.99,7.260,167.4 -27.8,0.99,6.730,170.5 -27.9,0.99,6.720,176.8 -27.9,0.99,6.350,188.7 -27.7,0.99,6.310,191.5 -27.7,0.99,5.600,191.8 -27.6,0.99,7.170,194.9 -27.7,0.99,6.270,200.1 -27.6,0.99,5.840,202.8 -27.4,0.99,4.530,204.8 -27.4,0.99,3.580,208.8 -27.7,0.99,3.500,204.9 -27.9,0.99,5.330,203.7 -27.9,0.99,4.830,204.8 -28.0,0.99,4.900,196.6 -28.2,0.99,5.690,184.7 -28.4,0.99,5.390,181.7 -28.6,0.99,5.250,184.5 -28.5,0.99,6.640,186.9 -29.0,0.99,5.780,186.5 -28.3,0.99,5.740,177.8 -28.3,0.99,7.290,172.3 -28.2,0.99,7.370,169.6 -28.1,0.99,7.070,177.7 -28.1,0.99,7.200,179.3 -28.1,0.99,7.240,182.7 -28.1,0.99,7.060,179.6 -27.9,0.99,6.950,182.8 -27.7,0.99,6.480,194.6 -27.7,0.99,5.360,197.1 -27.5,0.99,6.030,199.8 -27.4,0.99,4.610,202.6 -27.4,0.99,4.020,191.2 -27.4,0.99,1.870,197.3 -27.3,0.99,1.550,177.8 -27.5,0.99,2.490,197.8 -27.5,0.99,1.520,195.0 -27.5,0.99,2.390,189.5 -27.6,0.99,2.680,158.9 -27.9,0.99,3.140,166.1 -28.1,0.99,3.040,171.6 -28.3,0.99,3.770,181.4 -28.5,0.99,5.430,191.4 -28.3,0.99,4.750,192.4 -28.3,0.99,5.760,190.0 -28.1,0.99,6.050,186.7 -28.1,0.99,6.650,194.8 -27.9,0.99,6.090,194.8 -27.8,0.99,6.170,196.8 -27.7,0.99,6.130,202.4 -27.9,0.99,7.310,203.5 -27.8,0.99,6.130,210.3 -27.6,0.99,6.320,216.6 -27.6,0.99,6.380,211.8 -27.7,0.99,6.250,218.8 -27.9,0.99,6.100,224.3 -27.9,0.99,5.790,229.2 -28.1,0.99,3.980,235.1 -27.8,0.99,4.090,237.7 -27.5,0.99,3.360,255.0 -27.3,0.99,2.210,237.2 -27.6,0.99,3.260,213.0 -27.5,0.99,3.360,197.9 -27.9,0.99,4.990,183.2 -28.2,0.99,5.810,184.0 -28.4,0.99,6.720,200.8 -28.9,0.99,6.400,206.3 -28.4,0.99,7.540,194.1 -28.3,0.99,8.410,194.3 -28.3,0.99,8.320,193.8 -27.9,0.99,8.780,192.6 -27.9,0.99,8.490,196.8 -28.0,0.99,8.790,197.8 -27.8,0.99,9.770,195.9 -28.1,0.99,9.120,210.5 -27.9,0.99,8.670,211.3 -27.6,0.99,8.870,209.8 -27.6,0.99,8.850,214.7 -27.5,0.99,9.330,223.7 -27.5,0.99,7.060,218.8 -27.6,0.99,7.160,224.0 -28.2,0.99,6.370,223.4 -28.1,0.99,6.680,228.7 -27.9,0.99,6.300,219.7 -28.0,0.99,6.420,218.1 -27.8,0.99,6.070,228.8 -28.1,0.99,7.130,230.0 -28.9,0.99,7.810,217.8 -29.0,0.99,8.380,209.4 -29.3,0.99,9.060,209.8 -29.4,0.99,8.970,210.5 -29.7,0.99,8.950,206.3 -29.1,0.99,9.910,202.5 -29.1,0.99,8.740,200.5 -28.5,0.99,8.560,197.5 -28.4,0.99,8.800,196.3 -28.5,0.99,8.840,189.1 -28.7,0.99,8.980,193.7 -28.4,0.99,8.370,193.8 -28.3,0.99,8.770,199.9 -28.3,0.99,9.370,203.6 -28.6,0.99,8.440,205.8 -27.9,0.99,9.940,212.8 -27.7,0.99,9.650,213.1 -28.1,0.99,7.200,220.0 -28.0,0.99,8.570,218.9 -27.9,0.99,5.780,219.4 -28.0,0.99,4.940,217.6 -28.0,0.99,6.320,219.2 -28.0,0.99,5.850,209.7 -28.2,0.99,4.380,209.8 -28.4,0.99,4.670,187.6 -28.5,0.99,5.890,194.2 -28.8,0.99,5.700,185.2 -28.9,0.99,7.170,184.4 -28.6,0.99,8.220,187.1 -28.7,0.99,7.910,178.2 -28.4,0.99,7.440,175.7 -28.1,0.99,8.610,180.2 -27.7,0.99,8.620,178.8 -27.5,0.99,8.400,189.6 -28.4,0.99,6.380,194.5 -28.6,0.99,7.410,202.1 -27.7,0.99,7.760,203.3 -27.9,0.99,6.700,209.5 -27.2,0.99,7.300,209.7 -27.0,0.99,6.280,215.5 -27.1,0.99,6.250,213.1 -27.2,0.99,5.990,212.9 -27.1,0.99,3.970,235.0 -26.7,0.99,2.380,273.6 -26.6,0.99,0.720,269.2 -26.6,0.99,0.490,304.6 -26.6,0.99,0.400,47.9 -26.8,0.99,0.830,116.2 -27.6,0.99,2.910,147.8 -28.1,0.99,3.920,158.3 -28.2,0.99,4.460,152.5 -28.1,0.99,4.620,148.8 -28.2,0.99,5.270,154.7 -28.3,0.99,5.790,153.7 -28.0,0.99,6.300,156.0 -27.8,0.99,6.430,151.4 -27.8,0.99,6.290,155.6 -27.9,0.99,6.970,153.0 -27.7,0.99,6.060,168.4 -27.5,0.99,5.860,159.8 -27.4,0.99,5.520,166.9 -27.4,0.99,5.030,169.2 -27.2,0.99,4.820,174.6 -27.4,0.99,4.360,172.5 -27.3,0.99,1.790,195.2 -27.3,0.99,1.510,195.5 -27.2,0.99,0.500,159.3 -27.0,0.99,0.840,334.8 -26.7,0.99,1.650,24.9 -26.7,0.99,2.220,32.1 -26.9,0.99,2.850,54.0 -27.2,0.99,2.050,53.8 -27.9,0.99,3.640,94.0 -28.4,0.99,5.680,110.9 -28.6,0.99,6.250,129.6 -28.5,0.99,5.590,127.0 -28.6,0.99,6.510,128.6 -28.4,0.99,6.630,126.2 -28.4,0.99,6.030,114.0 -28.2,0.99,7.720,116.7 -28.2,0.99,7.030,121.0 -27.8,0.99,6.840,131.7 -27.7,0.99,7.350,124.0 -28.2,0.99,6.180,129.3 -27.8,0.99,5.990,127.2 -27.9,0.99,4.320,126.1 -28.0,0.99,4.240,122.2 -28.0,0.99,6.900,130.4 -27.9,0.99,5.120,143.3 -28.1,0.99,5.120,148.3 -26.9,0.99,7.480,172.0 -25.9,0.99,3.160,142.8 -26.0,0.99,2.830,54.9 -25.7,0.99,4.040,45.8 -26.5,0.99,5.080,68.8 -26.2,0.99,4.120,102.4 -27.2,0.99,3.210,129.1 -27.3,0.99,2.260,138.3 -27.6,0.99,2.310,102.4 -27.4,0.99,2.180,128.0 -27.5,0.99,3.380,103.9 -27.6,0.99,4.350,98.2 -27.4,0.99,5.420,104.7 -28.0,0.99,5.170,107.0 -27.6,0.99,5.410,121.8 -27.9,0.99,5.480,110.0 -27.7,0.99,7.330,112.1 -27.6,0.99,8.350,124.1 -27.0,0.99,8.450,140.0 -27.2,0.99,5.750,146.1 -26.9,0.99,4.940,145.4 -27.4,0.99,4.560,127.8 -27.3,0.99,4.970,105.5 -27.3,0.99,4.410,187.0 -27.6,0.99,1.480,156.1 -27.5,0.99,2.000,129.7 -27.7,0.99,3.450,109.5 -27.9,0.99,5.110,107.3 -28.0,0.99,5.390,121.8 -28.0,0.99,7.280,126.8 -27.6,0.99,6.760,142.8 -27.6,0.99,6.700,149.1 -28.1,0.99,6.360,152.4 -27.9,0.99,6.500,154.1 -28.0,0.99,6.430,154.2 -28.0,0.99,5.510,168.3 -27.8,0.99,5.160,167.8 -27.7,0.99,4.840,152.3 -27.7,0.99,5.760,162.4 -27.8,0.99,5.660,157.3 -27.8,0.99,5.750,162.1 -27.8,0.99,6.640,165.1 -27.8,0.99,5.910,167.3 -27.8,0.99,6.040,170.8 -27.9,0.99,5.110,184.1 -27.9,0.99,5.100,178.9 -27.9,0.99,5.590,182.8 -27.8,0.99,4.250,207.4 -27.6,0.99,4.490,224.5 -27.4,0.99,4.580,230.1 -26.9,0.99,3.320,280.3 -26.9,0.99,1.830,286.4 -27.1,0.99,0.590,227.8 -27.3,0.99,1.450,148.3 -27.7,0.99,2.570,167.8 -28.0,0.99,4.020,165.1 -28.3,0.99,5.200,178.0 -28.5,0.99,5.330,178.5 -28.4,0.99,6.240,170.0 -28.3,0.99,6.110,175.5 -28.5,0.99,6.070,175.0 -28.4,0.99,7.280,170.5 -28.7,0.99,7.270,177.3 -28.8,0.99,6.700,174.7 -29.0,0.99,7.410,178.5 -29.0,0.99,7.050,186.7 -29.0,0.99,6.830,192.6 -29.3,0.99,6.730,196.1 -29.0,0.99,5.990,203.6 -28.7,0.99,5.980,200.8 -28.6,0.99,5.560,212.8 -28.1,0.99,4.480,225.0 -27.8,0.99,4.400,231.9 -27.6,0.99,2.890,261.1 -27.4,0.99,2.700,271.9 -27.3,0.99,1.820,306.9 -27.4,0.99,0.630,242.5 -27.6,0.99,2.000,154.1 -28.2,0.99,4.220,150.8 -28.4,0.99,5.270,145.2 -27.9,0.99,2.880,158.8 -28.1,0.99,3.100,177.4 -28.1,0.99,4.660,180.3 -28.0,0.99,6.300,176.4 -28.0,0.99,6.360,180.1 -28.1,0.99,7.630,185.6 -28.1,0.99,7.110,185.6 -28.3,0.99,7.110,186.5 -28.1,0.99,7.510,181.1 -28.2,0.99,7.210,185.4 -28.1,0.99,8.170,190.5 -28.1,0.99,7.930,194.1 -27.9,0.99,7.070,199.4 -28.1,0.99,6.360,213.7 -27.9,0.99,7.230,220.0 -28.0,0.99,5.870,225.9 -27.6,0.99,6.430,244.1 -27.4,0.99,4.920,257.6 -27.3,0.99,3.830,282.3 -27.5,0.99,5.240,266.2 -27.6,0.99,3.200,238.9 -27.7,0.99,1.750,258.6 -28.6,0.99,1.050,176.4 -28.9,0.99,3.880,171.4 -28.8,0.99,7.400,181.6 -28.8,0.99,6.860,188.2 -28.8,0.99,6.790,192.4 -25.4,0.99,11.490,38.9 -24.0,0.99,6.960,32.5 -25.0,0.99,2.490,84.7 -26.0,0.99,3.570,151.8 -27.4,0.99,2.930,134.6 -27.6,0.99,0.380,278.1 -27.6,0.99,1.800,55.1 -27.6,0.99,1.820,66.3 -27.4,0.99,1.630,52.8 -27.1,0.99,1.360,13.5 -26.8,0.99,3.260,356.6 -26.1,0.99,4.270,15.9 -26.2,0.99,3.710,19.0 -25.9,0.99,3.780,26.2 -25.9,0.99,5.860,12.0 -25.7,0.99,4.260,32.5 -25.6,0.99,4.810,20.9 -25.7,0.99,3.810,43.7 -26.2,0.99,2.470,36.1 -26.8,0.99,1.400,64.5 -27.3,0.99,1.660,118.2 -27.6,0.99,2.120,204.1 -26.7,0.99,7.100,261.0 -26.0,0.99,5.750,344.9 -25.4,0.99,4.500,44.9 -26.3,0.99,1.050,59.3 -26.9,0.99,1.520,19.1 -27.1,0.99,1.110,3.9 -27.4,0.99,1.640,29.3 -27.6,0.99,2.970,53.3 -27.7,0.99,3.360,68.4 -27.6,0.99,3.390,59.5 -27.0,0.99,3.450,44.9 -26.7,0.99,4.150,40.8 -26.4,0.99,5.010,24.7 -26.2,0.99,4.440,36.2 -25.9,0.99,3.970,18.1 -25.6,0.99,3.460,29.4 -25.7,0.99,4.150,15.8 -25.8,0.99,3.630,22.6 -26.1,0.99,5.800,34.4 -26.6,0.99,6.110,52.8 -26.9,0.99,5.190,71.4 -27.3,0.99,4.000,91.6 -27.5,0.99,4.680,102.7 -27.7,0.99,4.980,113.5 -27.9,0.99,5.480,117.3 -28.1,0.99,5.210,119.8 -28.2,0.99,4.900,119.1 -28.2,0.99,5.630,127.6 -28.3,0.99,5.240,124.9 -28.3,0.99,5.170,131.8 -28.2,0.99,5.010,132.7 -28.3,0.99,4.490,116.8 -28.2,0.99,4.220,120.6 -27.9,0.99,3.360,99.8 -27.8,0.99,3.750,81.7 -27.7,0.99,3.590,66.9 -26.5,0.99,5.270,21.4 -25.7,0.99,7.110,19.0 -25.7,0.99,6.100,23.0 -26.6,0.99,8.130,44.2 -25.9,0.99,8.100,44.6 -25.5,0.99,7.310,48.0 -25.4,0.99,6.930,38.0 -25.8,0.99,5.340,52.4 -26.3,0.99,3.980,69.6 -27.0,0.99,2.160,60.7 -27.4,0.99,1.710,98.8 -27.5,0.99,1.640,130.7 -27.6,0.99,2.700,150.7 -27.8,0.99,2.730,150.3 -28.1,0.99,2.200,136.8 -27.8,0.99,3.130,141.7 -27.9,0.99,2.500,141.7 -27.9,0.99,1.600,123.3 -27.9,0.99,1.100,71.5 -27.9,0.99,1.880,20.7 -27.8,0.99,3.570,10.3 -27.4,0.99,3.170,29.5 -27.6,0.99,6.810,46.0 -27.1,0.99,5.730,50.4 -26.1,0.99,5.680,34.3 -25.7,0.99,6.100,35.9 -25.4,0.99,5.960,32.5 -25.0,0.99,7.170,32.0 -25.1,0.99,7.400,42.2 -25.1,0.99,7.390,43.2 -25.2,0.99,6.830,46.0 -25.7,0.99,5.290,52.0 -26.2,0.99,4.470,83.0 -26.9,0.99,3.040,86.3 -27.1,0.99,3.230,104.8 -27.2,0.99,3.610,115.5 -27.3,0.99,2.390,134.9 -27.4,0.99,2.420,135.4 -27.5,0.99,3.270,143.9 -27.5,0.99,2.950,159.3 -27.4,0.99,2.630,154.0 -27.4,0.99,1.950,140.3 -27.4,0.99,1.910,134.4 -27.4,0.99,1.940,122.6 -27.4,0.99,1.910,87.9 -27.2,0.99,2.680,90.8 -27.1,0.99,2.840,75.3 -27.1,0.99,2.950,70.4 -27.1,0.99,3.660,60.5 -26.8,0.99,4.220,31.8 -26.0,0.99,5.940,23.9 -25.7,0.99,7.210,34.6 -25.6,0.99,7.710,44.6 -26.9,0.99,8.890,61.8 -26.7,0.99,7.350,60.2 -26.9,0.99,7.900,70.6 -27.0,0.99,6.490,81.1 -27.5,0.99,7.040,99.2 -27.6,0.99,7.360,111.7 -26.7,0.99,5.010,135.8 -26.9,0.99,3.940,139.0 -27.2,0.99,3.920,122.8 -27.3,0.99,4.870,133.5 -27.1,0.99,4.620,137.1 -27.1,0.99,3.920,146.0 -26.8,0.99,2.540,156.2 -26.7,0.99,3.380,155.4 -26.7,0.99,3.650,153.2 -26.7,0.99,4.360,172.6 -26.7,0.99,3.760,182.5 -26.7,0.99,3.410,189.8 -26.8,0.99,3.890,180.0 -26.8,0.99,2.550,177.5 -25.8,0.99,5.430,185.1 -26.1,0.99,2.600,197.8 -25.8,0.99,4.960,214.2 -25.7,0.99,2.810,196.3 -26.1,0.99,0.350,137.6 -26.1,0.99,1.330,43.6 -25.4,0.99,1.770,35.1 -25.9,0.99,1.550,31.4 -26.8,0.99,2.550,136.8 -26.8,0.99,2.550,98.9 -27.0,0.99,2.790,103.0 -27.2,0.99,2.130,114.3 -27.6,0.99,2.580,156.6 -27.8,0.99,3.510,147.1 -27.5,0.99,3.600,131.5 -27.6,0.99,2.570,129.3 -27.4,0.99,3.260,118.1 -27.6,0.99,3.540,118.7 -27.3,0.99,4.850,127.3 -27.3,0.99,3.200,132.3 -27.1,0.99,3.400,132.5 -27.1,0.99,3.560,129.1 -27.2,0.99,2.990,146.7 -27.2,0.99,1.930,130.4 -26.8,0.99,5.320,102.0 -26.2,0.99,5.790,92.1 -26.7,0.99,4.020,102.1 -27.2,0.99,3.180,90.8 -26.6,0.99,5.640,68.8 -25.5,0.99,6.050,82.0 -25.3,0.99,7.320,71.3 -25.2,0.99,8.050,94.0 -26.8,0.99,6.320,92.2 -27.2,0.99,5.580,101.5 -27.2,0.99,6.060,111.7 -27.3,0.99,6.190,111.0 -27.5,0.99,6.270,125.5 -27.4,0.99,4.310,101.7 -27.3,0.99,5.750,100.5 -27.2,0.99,4.860,97.9 -27.4,0.99,4.920,107.9 -27.1,0.99,5.110,122.2 -27.4,0.99,4.870,127.3 -27.5,0.99,5.140,130.8 -27.4,0.99,4.910,126.0 -27.6,0.99,4.800,120.0 -27.6,0.99,4.800,126.6 -27.5,0.99,5.690,133.7 -27.5,0.99,3.090,158.5 -26.4,0.99,2.720,204.2 -25.9,0.99,0.530,186.0 -25.1,0.99,3.620,16.9 -25.1,0.99,3.110,255.5 -25.8,0.99,0.930,272.9 -26.1,0.99,1.500,18.7 -26.0,0.99,8.180,96.9 -26.4,0.99,8.330,114.4 -27.1,0.99,5.650,106.2 -27.4,0.99,5.110,125.5 -27.8,0.99,5.020,113.2 -27.5,0.99,5.140,91.9 -27.5,0.99,4.150,91.2 -27.8,0.99,4.550,103.1 -27.7,0.99,5.830,121.0 -27.8,0.99,5.730,111.1 -27.9,0.99,6.440,129.2 -28.1,0.99,5.220,121.7 -27.8,0.99,5.510,126.8 -27.7,0.99,4.270,98.3 -27.9,0.99,4.550,85.3 -27.9,0.99,4.370,103.1 -27.9,0.99,3.830,94.2 -27.8,0.99,3.500,87.0 -27.7,0.99,4.110,71.0 -27.6,0.99,4.520,45.2 -26.6,0.99,5.890,29.6 -26.4,0.99,6.030,31.9 -26.6,0.99,5.430,29.0 -27.1,0.99,4.330,28.7 -27.7,0.99,3.890,59.1 -29.1,0.99,3.590,61.3 -29.4,0.99,3.960,89.1 -29.4,0.99,3.260,105.8 -29.0,0.99,4.020,116.5 -29.0,0.99,3.340,121.9 -28.9,0.99,3.390,139.5 -28.8,0.99,3.250,149.8 -28.7,0.99,3.370,144.7 -28.5,0.99,3.830,122.5 -28.3,0.99,3.980,111.2 -28.1,0.99,2.740,105.2 -28.2,0.99,3.030,97.6 -28.2,0.99,2.530,105.5 -27.8,0.99,3.540,70.2 -27.4,0.99,2.960,82.2 -27.3,0.99,2.130,53.2 -26.6,0.99,4.650,11.4 -26.4,0.99,6.760,28.0 -26.1,0.99,7.430,29.5 -26.2,0.99,7.130,42.9 -26.7,0.99,8.260,46.3 -26.9,0.99,8.420,49.7 -27.1,0.99,8.320,60.5 -27.1,0.99,7.350,67.3 -27.8,0.99,7.370,73.7 -28.0,0.99,6.880,94.4 -28.0,0.99,7.040,99.1 -28.1,0.99,6.780,104.2 -28.1,0.99,6.550,101.9 -28.1,0.99,7.620,105.4 -27.8,0.99,7.800,94.9 -27.8,0.99,7.820,90.6 -27.7,0.99,7.750,87.4 -27.7,0.99,8.490,81.1 -27.9,0.99,8.130,81.9 -27.1,0.99,6.480,95.5 -25.7,0.99,8.740,97.9 -26.1,0.99,6.480,138.7 -25.6,0.99,9.670,137.5 -25.1,0.99,3.540,189.7 -25.4,0.99,0.760,85.7 -25.1,0.99,5.440,126.5 -25.3,0.99,4.120,141.2 -24.7,0.99,6.210,164.8 -24.6,0.99,2.190,147.0 -25.1,0.99,1.750,315.8 -24.5,0.99,2.480,140.1 -24.7,0.99,4.410,158.1 -25.8,0.99,4.490,152.3 -25.6,0.99,1.300,137.1 -24.8,0.99,5.670,125.7 -25.2,0.99,7.650,106.9 -25.7,0.99,6.880,119.0 -25.5,0.99,6.520,149.5 -24.5,0.99,6.780,145.4 -25.4,0.99,6.860,142.0 -26.0,0.99,7.460,133.1 -25.1,0.99,4.810,143.0 -24.5,0.99,3.060,149.1 -26.3,0.99,6.410,158.9 -25.8,0.99,6.320,168.8 -25.6,0.99,7.280,148.0 -25.7,0.99,3.710,115.5 -26.1,0.99,5.310,154.0 -26.1,0.99,8.170,136.0 -26.1,0.99,6.100,147.5 -25.1,0.99,9.490,145.8 -24.9,0.99,5.390,142.1 -25.3,0.99,5.490,154.5 -25.7,0.99,5.970,147.2 -24.9,0.99,5.630,129.6 -24.8,0.99,5.290,116.0 -24.3,0.99,4.540,245.6 -23.8,1.00,5.680,195.4 -23.4,0.99,7.210,190.3 -24.9,0.99,5.100,165.3 -25.6,0.99,4.520,151.3 -25.5,0.99,3.830,131.8 -26.0,0.99,4.520,87.7 -26.2,0.99,4.540,96.7 -26.4,0.99,4.380,100.2 -26.8,0.99,3.990,108.3 -27.0,0.99,4.730,106.4 -27.0,0.99,5.240,103.2 -26.8,0.99,5.670,101.3 -26.9,0.99,6.570,101.6 -27.0,0.99,7.270,108.9 -24.6,0.99,16.910,155.5 -25.1,1.00,4.810,155.6 -24.9,0.99,2.000,351.4 -25.5,0.99,4.080,315.9 -24.6,0.99,7.990,359.3 -25.0,0.99,7.410,9.3 -26.4,0.99,3.810,11.7 -26.8,0.99,3.580,43.8 -26.7,0.99,2.180,69.5 -27.2,0.99,3.460,75.3 -27.8,0.99,4.120,112.1 -27.4,0.99,3.700,117.6 -27.5,0.99,4.340,126.2 -27.5,0.99,2.630,128.8 -27.8,0.99,2.550,122.7 -27.5,0.99,2.240,118.7 -27.6,0.99,3.130,126.2 -27.4,0.99,3.060,128.0 -27.5,0.99,3.160,117.4 -27.6,0.99,2.710,122.6 -27.6,0.99,2.950,118.8 -27.4,0.99,2.660,124.9 -27.3,0.99,2.920,113.7 -27.3,0.99,2.660,126.3 -27.3,0.99,2.080,115.1 -27.2,0.99,1.520,114.5 -27.2,0.99,1.230,79.3 -27.1,0.99,1.850,79.0 -26.4,0.99,2.910,44.0 -26.4,0.99,3.030,40.3 -26.6,0.99,3.530,41.9 -26.8,0.99,3.190,46.2 -27.0,0.99,2.140,61.9 -27.7,0.99,2.120,112.2 -27.9,0.99,2.700,160.5 -28.1,0.99,2.920,175.7 -28.3,0.99,3.770,176.7 -28.0,0.99,5.940,178.4 -28.0,0.99,4.460,190.4 -27.9,0.99,4.630,187.4 -27.9,0.99,4.610,192.9 -28.1,0.99,4.940,189.1 -28.1,0.99,3.890,192.9 -28.0,0.99,4.450,197.7 -27.9,0.99,3.750,196.8 -27.7,0.99,3.820,197.4 -27.6,0.99,3.720,206.8 -27.5,0.99,3.910,204.2 -27.4,0.99,3.590,224.4 -27.2,0.99,3.230,249.5 -26.6,0.99,4.050,273.5 -26.3,0.99,3.930,284.8 -26.3,0.99,4.120,279.5 -26.4,0.99,4.230,282.5 -26.7,0.99,3.440,288.0 -26.9,0.99,2.230,288.4 -27.1,0.99,0.790,269.3 -27.7,0.99,1.190,147.0 -28.0,0.99,3.270,178.5 -28.3,0.99,5.510,189.0 -28.3,0.99,6.410,187.0 -28.3,0.99,6.000,184.9 -28.2,0.99,6.680,191.9 -28.1,0.99,6.180,186.2 -28.0,0.99,5.860,188.2 -27.4,0.99,5.560,185.2 -27.4,0.99,5.620,186.4 -27.3,0.99,5.720,184.2 -27.4,0.99,5.170,185.2 -27.5,0.99,4.220,180.6 -27.3,0.99,4.190,195.3 -27.3,0.99,4.290,200.6 -27.2,0.99,3.420,221.3 -27.3,0.99,3.610,229.9 -27.2,0.99,2.860,251.1 -26.8,0.99,2.940,273.4 -26.4,0.99,2.740,284.1 -26.4,0.99,3.140,288.5 -26.5,0.99,2.400,283.9 -26.7,0.99,1.940,239.3 -27.1,0.99,1.310,218.5 -27.7,0.99,1.660,160.7 -27.9,0.99,2.520,162.3 -28.0,0.99,3.950,158.0 -28.0,0.99,5.130,153.4 -27.7,0.99,6.360,155.8 -28.0,0.99,5.720,158.7 -27.8,0.99,6.030,160.0 -27.8,0.99,6.480,172.2 -27.6,0.99,6.430,175.5 -27.6,0.99,5.550,174.8 -27.6,0.99,5.930,181.9 -27.6,0.99,5.440,180.9 -27.4,0.99,5.660,183.3 -27.3,0.99,4.790,192.7 -27.4,0.99,5.010,193.8 -27.4,0.99,3.790,201.1 -27.4,0.99,3.790,220.8 -27.3,0.99,4.470,233.4 -27.3,0.99,2.970,236.5 -26.9,0.99,2.340,272.6 -26.5,0.99,1.650,302.5 -26.5,0.99,1.970,295.6 -26.7,0.99,1.570,275.4 -26.8,0.99,1.850,224.7 -27.4,0.99,2.130,190.7 -27.6,0.99,2.450,177.2 -27.7,0.99,3.070,161.3 -27.8,0.99,4.120,149.9 -28.1,0.99,4.730,167.5 -27.9,0.99,4.740,168.6 -27.8,0.99,4.270,170.5 -27.8,0.99,4.720,178.5 -27.7,0.99,5.570,172.7 -27.7,0.99,4.670,173.0 -27.6,0.99,5.470,174.5 -27.6,0.99,5.380,164.2 -27.6,0.99,5.970,184.5 -27.6,0.99,5.420,196.0 -27.5,0.99,4.810,206.9 -27.4,0.99,3.780,206.5 -27.2,0.99,2.990,204.6 -27.0,0.99,4.800,260.1 -26.9,0.99,4.060,266.7 -26.9,0.99,3.780,276.8 -26.8,0.99,2.750,297.8 -26.9,0.99,1.630,310.7 -27.0,0.99,1.550,157.4 -27.4,0.99,1.660,204.8 -28.1,0.99,2.700,195.4 -28.2,0.99,5.050,180.7 -28.3,0.99,7.070,171.1 -28.2,0.99,9.380,193.9 -28.0,0.99,8.490,197.3 -28.2,0.99,6.800,194.3 -28.0,0.99,7.500,199.7 -27.9,0.99,7.630,203.1 -27.9,0.99,8.460,201.0 -27.8,0.99,7.880,208.9 -27.9,0.99,7.470,200.1 -28.0,0.99,6.880,207.9 -27.9,0.99,7.540,202.6 -27.7,0.99,7.400,197.6 -28.1,0.99,8.340,204.7 -27.6,0.99,7.480,201.0 -27.7,0.99,6.420,219.1 -27.8,0.99,5.670,223.0 -27.8,0.99,5.730,234.3 -27.5,0.99,4.380,253.2 -27.1,0.99,4.120,277.4 -27.2,0.99,3.430,282.5 -27.5,0.99,2.490,240.1 -27.7,0.99,0.980,228.3 -28.1,0.99,2.520,187.8 -28.4,0.99,3.590,211.6 -28.4,0.99,4.710,211.0 -28.5,0.99,5.650,201.6 -28.4,0.99,7.300,200.3 -28.5,0.99,7.270,203.1 -28.1,0.99,8.050,199.3 -27.5,0.99,8.250,205.5 -27.6,0.99,7.400,211.1 -27.5,0.99,6.430,213.1 -27.5,0.99,6.900,217.0 -27.6,0.99,6.610,225.3 -27.7,0.99,5.710,234.5 -27.6,0.99,5.930,236.3 -27.4,0.99,4.620,250.9 -27.6,0.99,5.020,269.0 -26.7,0.99,4.990,278.6 -26.4,0.99,4.730,284.3 -26.1,0.99,4.670,282.9 -26.0,0.99,4.510,294.3 -26.1,0.99,4.080,304.2 -26.4,0.99,2.070,312.3 -26.7,0.99,1.180,338.4 -27.1,0.99,0.570,170.1 -27.8,0.99,1.750,199.2 -28.2,0.99,3.260,187.8 -28.7,0.99,4.870,207.8 -28.8,0.99,6.110,207.0 -28.7,0.99,5.380,205.9 -28.4,0.99,5.860,196.3 -28.1,0.99,6.880,203.7 -28.1,0.99,4.970,204.3 -27.9,0.99,4.870,194.6 -27.8,0.99,4.500,204.2 -27.8,0.99,4.440,186.9 -27.7,0.99,4.020,172.1 -27.5,0.99,4.160,181.8 -27.4,0.99,2.820,192.7 -27.4,0.99,1.790,189.8 -27.4,0.99,1.240,181.6 -27.3,0.99,1.480,201.5 -27.2,0.99,0.340,222.2 -27.1,0.99,1.210,318.8 -26.9,0.99,2.050,9.6 -26.9,0.99,1.750,30.4 -26.9,0.99,1.550,331.6 -27.0,0.99,1.050,275.6 -24.7,0.99,7.900,215.7 -25.4,0.99,3.750,358.7 -26.2,0.99,4.000,76.7 -26.8,0.99,3.730,108.1 -27.2,0.99,3.820,101.6 -27.7,0.99,3.480,100.7 -27.4,0.99,3.940,133.2 -27.1,0.99,3.240,144.8 -27.3,0.99,3.160,92.5 -27.5,0.99,3.590,95.0 -27.5,0.99,4.020,105.0 -27.4,0.99,4.260,126.3 -27.3,0.99,4.220,133.8 -27.3,0.99,3.950,121.1 -27.5,0.99,2.910,131.5 -27.5,0.99,2.710,131.3 -27.4,0.99,2.410,125.3 -27.5,0.99,3.440,109.5 -27.6,0.99,2.380,119.9 -27.4,0.99,1.690,122.0 -25.9,0.99,4.240,85.2 -24.7,0.99,2.170,128.5 -25.4,0.99,0.770,155.6 -25.8,0.99,1.260,98.4 -26.3,0.99,2.470,68.2 -27.0,0.99,3.310,96.0 -27.6,0.99,4.440,101.5 -27.7,0.99,3.390,124.8 -28.3,0.99,4.280,130.7 -28.2,0.99,4.370,138.6 -28.0,0.99,3.550,122.5 -27.8,0.99,2.820,128.5 -27.8,0.99,3.430,120.9 -27.8,0.99,3.350,96.5 -27.8,0.99,3.230,113.8 -27.8,0.99,2.090,101.3 -27.9,0.99,2.520,125.4 -27.8,0.99,1.490,125.6 -27.8,0.99,2.100,105.3 -27.7,0.99,1.870,93.6 -27.6,0.99,2.350,87.4 -27.6,0.99,1.790,86.3 -27.7,0.99,2.420,68.2 -27.1,0.99,3.490,16.2 -26.4,0.99,5.570,16.3 -26.6,0.99,7.190,44.0 -27.3,0.99,7.000,46.6 -27.1,0.99,5.720,48.9 -27.8,0.99,4.020,85.2 -28.0,0.99,4.340,106.9 -28.0,0.99,4.500,103.1 -28.0,0.99,4.740,108.8 -28.1,0.99,5.200,125.5 -28.1,0.99,5.240,118.8 -28.2,0.99,4.790,125.9 -28.1,0.99,4.070,123.8 -28.0,0.99,4.330,123.8 -27.9,0.99,4.670,123.1 -28.0,0.99,5.130,117.4 -28.0,0.99,5.310,112.1 -28.0,0.99,4.410,118.2 -27.9,0.99,3.750,136.6 -27.9,0.99,4.380,125.3 -27.9,0.99,4.850,128.9 -28.0,0.99,3.420,129.6 -28.0,0.99,3.500,136.4 -27.9,0.99,2.860,106.5 -27.8,0.99,3.680,135.7 -28.0,0.99,2.270,87.1 -26.1,0.99,0.880,82.2 -25.5,0.99,0.990,197.5 -25.8,0.99,4.590,44.8 -25.8,0.99,2.420,172.8 -25.8,0.99,6.790,122.0 -26.1,0.99,7.220,125.1 -26.3,0.99,9.450,138.7 -26.3,0.99,7.270,193.9 -26.2,0.99,5.760,206.7 -26.6,0.99,4.520,213.9 -26.7,0.99,0.280,246.7 -26.7,0.99,2.470,58.3 -25.0,0.99,12.390,82.3 -25.6,0.99,4.490,135.0 -26.2,0.99,5.280,119.2 -26.7,0.99,5.040,115.8 -27.0,0.99,5.890,116.7 -27.2,0.99,6.030,148.4 -27.4,0.99,5.090,139.2 -27.3,0.99,4.180,140.3 -27.3,0.99,2.340,132.7 -26.7,0.99,2.690,59.9 -24.7,0.99,5.210,194.6 -25.7,0.99,3.000,188.1 -25.7,0.99,2.760,234.6 -24.3,0.99,12.950,158.9 -23.3,0.99,4.750,153.3 -23.9,0.99,3.160,35.3 -24.7,0.99,3.360,24.8 -25.3,0.99,4.250,90.2 -25.8,0.99,4.660,156.2 -25.9,0.99,3.870,134.7 -26.4,0.99,4.300,139.1 -26.6,0.99,5.420,142.2 -26.6,0.99,5.150,129.0 -27.1,0.99,7.480,123.9 -27.1,0.99,5.510,124.3 -26.9,0.99,5.030,119.3 -26.9,0.99,6.090,124.9 -27.2,0.99,6.870,125.9 -27.0,0.99,5.380,123.1 -27.2,0.99,5.470,125.4 -27.3,0.99,6.320,118.6 -27.4,0.99,6.560,119.5 -27.3,0.99,6.640,114.4 -27.3,0.99,6.440,107.7 -27.3,0.99,5.710,98.7 -27.6,0.99,7.500,98.3 -25.2,0.99,9.320,125.3 -24.8,0.99,1.960,223.8 -23.9,0.99,8.110,149.2 -23.5,0.99,4.580,111.7 -24.9,0.99,9.920,90.3 -25.5,0.99,7.870,108.9 -26.7,0.99,8.530,117.2 -24.9,0.99,10.110,156.3 -25.4,0.99,8.710,149.6 -27.3,0.99,7.150,120.1 -26.3,0.99,9.780,129.1 -25.8,0.99,12.220,124.9 -26.1,0.99,9.500,126.4 -26.3,0.99,9.210,128.3 -26.8,0.99,7.620,130.6 -26.7,0.99,6.590,134.1 -26.7,0.99,6.760,126.1 -24.7,0.99,11.130,125.3 -25.6,0.99,7.730,110.9 -25.4,0.99,6.650,98.0 -25.3,0.99,9.860,103.5 -24.6,0.99,10.050,116.5 -24.7,0.99,6.430,85.1 -25.1,0.99,5.770,92.7 -25.6,0.99,5.250,82.3 -26.2,0.99,4.940,92.2 -26.4,0.99,5.320,91.2 -25.2,0.99,12.910,137.2 -25.7,0.99,9.770,133.9 -26.9,0.99,7.640,103.0 -26.6,0.99,9.100,103.4 -27.8,0.99,8.620,113.5 -26.5,0.99,9.120,138.0 -27.2,0.99,4.410,111.9 -27.9,0.99,6.820,113.4 -28.2,0.99,6.790,104.5 -28.4,0.99,7.580,109.6 -28.2,0.99,7.660,107.7 -28.2,0.99,7.820,109.4 -28.3,0.99,7.790,110.4 -28.1,0.99,7.950,109.1 -28.2,0.99,7.470,114.6 -28.0,0.99,7.580,106.7 -28.1,0.99,6.940,107.7 -28.0,0.99,6.080,102.0 -27.7,0.99,5.790,100.6 -27.7,0.99,5.920,90.7 -27.5,0.99,7.900,77.4 -26.7,0.99,9.070,97.6 -25.2,0.99,8.030,107.2 -25.3,0.99,5.310,97.1 -23.8,0.99,12.500,101.8 -25.7,0.99,6.180,63.7 -25.0,0.99,8.680,43.2 -26.2,0.99,5.600,63.0 -28.2,0.99,7.010,120.2 -28.0,0.99,7.880,123.2 -28.7,0.99,7.120,117.6 -28.6,0.99,7.050,114.9 -28.7,0.99,7.250,108.3 -29.0,0.99,7.150,102.8 -28.5,0.99,6.430,113.5 -28.3,0.99,5.520,111.0 -28.2,0.99,5.080,114.4 -28.1,0.99,5.430,97.7 -28.0,0.99,5.060,97.4 -27.8,0.99,4.710,77.4 -27.8,0.99,5.610,87.0 -27.5,0.99,7.470,58.8 -27.1,0.99,7.400,58.8 -26.8,0.99,7.430,44.6 -26.4,0.99,6.250,24.3 -26.6,0.99,7.790,49.6 -26.5,0.99,7.540,53.6 -27.0,0.99,8.620,56.6 -27.2,0.99,7.360,60.5 -27.4,0.99,7.080,75.9 -27.5,0.99,6.600,79.8 -27.8,0.99,6.550,93.4 -27.9,0.99,6.310,110.3 -27.8,0.99,6.350,109.8 -27.8,0.99,6.380,111.8 -27.6,0.99,6.260,111.5 -27.7,0.99,5.520,113.8 -27.7,0.99,5.060,114.5 -27.7,0.99,5.080,102.3 -27.7,0.99,5.440,85.6 -27.7,0.99,5.790,88.8 -27.5,0.99,4.220,85.4 -27.4,0.99,4.340,68.7 -27.5,0.99,4.140,80.8 -27.4,0.99,4.510,67.5 -26.5,0.99,4.110,50.1 -26.1,0.99,5.090,39.8 -26.0,0.99,5.870,36.4 -25.9,0.99,5.700,38.1 -25.8,0.99,6.460,32.7 -26.0,0.99,6.150,38.6 -26.5,0.99,5.810,46.8 -26.8,0.99,5.910,63.9 -27.4,0.99,4.960,81.6 -27.6,0.99,5.040,92.3 -27.6,0.99,3.900,109.4 -27.6,0.99,3.900,121.4 -28.1,0.99,3.870,118.1 -27.8,0.99,4.510,118.5 -28.0,0.99,4.090,117.0 -28.2,0.99,5.130,120.4 -28.0,0.99,5.340,139.2 -28.2,0.99,6.630,133.6 -28.2,0.99,5.640,126.7 -28.2,0.99,4.790,110.4 -28.0,0.99,5.090,96.6 -28.0,0.99,4.580,89.6 -27.9,0.99,5.050,86.2 -27.8,0.99,5.600,88.4 -27.5,0.99,5.180,84.2 -27.5,0.99,5.860,90.9 -27.4,0.99,6.070,86.0 -27.5,0.99,6.600,87.5 -25.7,0.99,10.530,47.6 -26.3,0.99,9.540,65.7 -26.5,0.99,8.300,82.7 -26.3,0.99,5.830,63.6 -27.5,0.99,7.260,86.2 -27.5,0.99,6.930,92.6 -27.8,0.99,7.550,101.4 -28.0,0.99,8.240,115.2 -28.3,0.99,7.340,114.7 -28.6,0.99,8.180,107.2 -28.5,0.99,7.840,108.1 -28.4,0.99,7.600,105.3 -28.4,0.99,8.740,109.2 -28.1,0.99,8.960,110.9 -28.1,0.99,8.560,106.9 -28.1,0.99,8.790,104.6 -27.9,0.99,7.900,112.9 -27.9,0.99,7.690,107.9 -27.7,0.99,7.370,106.7 -27.7,0.99,7.840,108.4 -27.0,0.99,10.500,114.3 -26.7,0.99,11.130,113.0 -26.9,0.99,6.320,121.2 -27.6,0.99,6.330,117.1 -26.5,0.99,6.790,139.9 -28.0,0.99,7.280,120.2 -28.1,0.99,6.620,122.5 -28.4,0.99,7.370,117.8 -28.1,0.99,7.010,123.5 -28.0,0.99,6.540,117.2 -27.9,0.99,5.690,115.4 -27.8,0.99,6.500,102.0 -27.9,0.99,7.060,84.5 -27.9,0.99,7.280,92.8 -27.8,0.99,8.700,99.6 -27.9,0.99,8.130,97.1 -27.9,0.99,8.820,103.8 -28.2,0.99,8.820,102.9 -27.9,0.99,9.000,103.3 -27.9,0.99,9.570,111.4 -27.9,0.99,8.710,117.0 -27.9,0.99,8.110,110.2 -27.9,0.99,9.700,110.0 -28.0,0.99,7.730,120.3 -27.8,0.99,7.570,113.4 -27.9,0.99,6.650,103.5 -27.9,0.99,6.760,92.7 -27.6,0.99,6.030,97.4 -27.9,0.99,6.860,88.4 -27.8,0.99,6.410,92.4 -27.8,0.99,6.610,98.9 -27.7,0.99,6.470,87.2 -27.9,0.99,7.070,93.5 -27.8,0.99,6.370,101.1 -27.8,0.99,6.540,116.0 -28.1,0.99,6.890,117.3 -27.9,0.99,6.870,114.8 -28.2,0.99,8.280,114.7 -28.1,0.99,4.650,104.6 -27.9,0.99,5.060,94.5 -28.0,0.99,6.570,88.8 -26.6,0.99,8.450,86.8 -27.7,0.99,7.530,109.0 -27.8,0.99,7.630,121.3 -27.7,0.99,7.590,126.5 -27.6,0.99,6.840,113.9 -27.4,0.99,6.700,112.0 -27.6,0.99,6.560,113.1 -27.5,0.99,6.950,108.8 -27.5,0.99,7.020,110.4 -27.6,0.99,6.530,116.1 -27.5,0.99,4.970,104.9 -27.6,0.99,6.410,106.0 -27.8,0.99,5.250,94.2 -27.0,0.99,8.730,90.2 -25.9,0.99,6.360,66.6 -26.0,0.99,13.010,79.9 -26.4,0.99,5.830,90.2 -27.4,0.99,3.980,117.1 -27.6,0.99,5.950,105.3 -27.9,0.99,7.300,128.3 -27.9,0.99,7.080,123.7 -27.9,0.99,5.940,122.7 -27.9,0.99,6.600,107.8 -27.7,0.99,6.800,104.7 -27.8,0.99,6.780,95.2 -27.7,0.99,6.050,96.9 -27.7,0.99,6.570,104.6 -27.7,0.99,6.100,104.8 -27.5,0.99,6.300,97.5 -27.6,0.99,5.610,105.2 -27.6,0.99,5.280,93.3 -27.3,0.99,3.880,91.0 -27.4,0.99,5.400,80.6 -26.4,0.99,10.170,92.2 -27.1,0.99,9.910,92.7 -27.2,0.99,9.940,92.8 -27.0,0.99,9.560,97.6 -26.8,0.99,8.050,91.1 -27.3,0.99,6.410,85.6 -27.9,0.99,8.120,103.4 -27.8,0.99,8.850,108.6 -27.7,0.99,7.540,112.1 -28.2,0.99,8.690,110.9 -27.9,0.99,8.570,105.9 -27.7,0.99,8.750,106.8 -27.8,0.99,8.220,105.3 -27.9,0.99,8.460,108.8 -27.9,0.99,7.910,115.4 -27.6,0.99,8.370,112.3 -27.8,0.99,8.360,113.0 -27.7,0.99,9.740,118.9 -27.8,0.99,8.990,121.9 -27.7,0.99,8.020,125.6 -27.5,0.99,6.980,119.6 -27.6,0.99,7.340,119.8 -27.5,0.99,8.340,119.5 -27.6,0.99,7.470,125.9 -27.5,0.99,8.120,128.1 -27.8,0.99,6.250,125.8 -27.6,0.99,6.920,127.6 -27.8,0.99,6.840,125.8 -27.7,0.99,7.420,123.5 -27.7,0.99,7.220,117.3 -27.8,0.99,8.200,127.9 -27.9,0.99,7.650,134.4 -27.8,0.99,9.500,136.2 -27.4,0.99,8.360,142.7 -27.8,0.99,10.100,149.3 -27.9,0.99,10.170,138.5 -28.4,0.99,10.140,156.6 -28.2,0.99,10.860,152.3 -27.9,0.99,10.620,157.4 -27.7,0.99,10.200,148.1 -27.8,0.99,8.930,157.7 -27.9,0.99,10.040,156.4 -27.5,0.99,9.880,162.5 -27.5,0.99,8.940,165.4 -27.7,0.99,8.060,169.4 -28.1,0.99,8.860,166.8 -28.0,0.99,8.370,170.1 -27.8,0.99,8.700,167.3 -28.2,0.99,8.720,162.4 -28.0,0.99,8.570,164.0 -28.0,0.99,9.140,159.4 -27.8,0.99,9.830,158.0 -27.8,0.99,7.770,162.6 -28.0,0.99,7.870,163.9 -28.0,0.99,8.390,164.5 -27.9,0.99,8.670,159.2 -27.8,0.99,7.960,159.7 -27.9,0.99,7.890,161.8 -27.8,0.98,8.870,163.3 -28.4,0.98,9.560,161.6 -28.2,0.98,8.180,164.0 -28.6,0.98,9.190,164.4 -27.8,0.98,8.460,160.1 -28.2,0.98,6.770,161.3 -28.2,0.98,7.040,168.5 -28.0,0.98,6.770,169.2 -27.7,0.98,6.610,179.3 -27.9,0.98,6.540,180.1 -27.7,0.98,5.990,181.0 -27.7,0.98,5.880,182.4 -27.5,0.98,5.550,188.3 -27.0,0.98,3.680,223.0 -24.3,0.98,10.010,9.2 -24.4,0.98,8.520,3.6 -24.1,0.98,9.180,11.7 -24.0,0.98,8.120,21.5 -23.8,0.98,8.860,18.9 -22.8,0.98,11.750,22.8 -22.8,0.98,12.370,23.8 -22.7,0.98,12.550,22.1 -22.7,0.98,11.440,25.2 -22.4,0.98,11.340,10.7 -22.1,0.98,12.420,33.9 -22.0,0.98,13.560,25.1 -21.9,0.98,12.750,28.1 -22.0,0.98,13.250,31.2 -22.3,0.98,14.130,36.4 -22.7,0.98,14.190,35.2 -22.5,0.98,13.850,36.0 -23.1,0.98,13.740,43.7 -23.0,0.98,13.530,43.5 -22.9,0.98,13.170,41.6 -22.8,0.98,12.860,41.2 -23.0,0.98,13.720,45.6 -22.8,0.98,13.170,43.5 -22.4,0.98,12.520,40.2 -22.1,0.98,12.350,41.5 -21.9,0.98,11.810,38.5 -21.6,0.98,11.520,39.3 -21.6,0.98,11.190,36.0 -21.7,0.98,10.610,35.1 -22.5,0.98,10.600,35.0 -23.5,0.98,10.600,40.7 -24.4,0.98,10.150,39.5 -25.2,0.98,9.530,47.0 -25.7,0.98,9.780,52.3 -26.0,0.98,9.430,48.8 -26.3,0.98,9.600,46.0 -26.3,0.98,10.380,45.9 -26.4,0.98,10.940,55.6 -26.0,0.98,12.060,68.0 -25.2,0.98,11.370,69.9 -25.2,0.98,11.360,66.8 -25.5,0.98,11.340,72.0 -25.2,0.98,10.960,65.3 -25.0,0.98,10.690,61.6 -25.1,0.98,10.980,69.8 -24.9,0.98,12.670,76.3 -25.2,0.98,7.910,78.0 -25.1,0.98,8.620,82.7 -25.9,0.98,8.730,77.4 -25.4,0.98,10.250,67.0 -26.3,0.98,9.490,89.5 -24.4,0.98,9.010,44.3 -26.4,0.98,8.730,82.1 -26.3,0.98,8.270,77.6 -26.5,0.98,9.280,71.8 -26.3,0.98,9.480,71.9 -26.3,0.98,8.930,70.7 -26.0,0.98,9.450,82.9 -26.5,0.98,7.200,74.0 -27.1,0.98,7.870,86.0 -26.8,0.98,8.510,86.2 -26.9,0.98,6.720,83.8 -27.1,0.98,6.750,87.0 -27.2,0.98,5.910,90.5 -27.3,0.98,6.700,81.2 -27.5,0.98,6.510,83.0 -27.4,0.98,5.960,74.9 -27.1,0.98,6.360,61.8 -26.6,0.98,6.740,88.3 -26.7,0.98,4.120,74.3 -26.7,0.98,5.230,46.7 -26.5,0.98,6.560,32.1 -25.6,0.98,8.320,22.2 -25.9,0.98,7.540,21.9 -25.4,0.99,7.400,21.1 -26.1,0.99,6.840,13.0 -27.1,0.99,6.750,17.6 -27.6,0.99,3.290,36.6 -27.9,0.99,2.960,345.7 -27.9,0.99,1.780,48.6 -28.3,0.98,2.360,63.1 -28.8,0.98,3.580,80.2 -28.8,0.98,3.240,69.8 -28.5,0.98,3.090,67.0 -28.3,0.98,2.680,80.3 -27.9,0.99,3.390,56.1 -27.6,0.99,2.880,34.8 -27.6,0.99,3.670,27.4 -27.3,0.99,3.980,34.9 -27.4,0.99,4.020,41.3 -26.9,0.99,3.730,43.1 -27.3,0.99,3.180,38.0 -27.3,0.99,3.720,26.7 -27.0,0.99,4.390,15.7 -26.7,0.99,4.090,7.0 -26.0,0.99,3.550,7.5 -25.6,0.99,4.040,359.7 -25.3,0.99,3.540,2.0 -25.2,0.99,2.980,356.3 -24.5,0.99,3.300,358.1 -24.9,0.99,2.270,0.2 -26.2,0.99,2.810,343.0 -26.9,0.99,1.590,339.0 -28.0,0.99,0.930,288.4 -28.6,0.99,1.160,198.8 -28.4,0.99,3.880,167.1 -28.5,0.98,4.440,161.4 -27.8,0.99,6.670,163.6 -27.4,0.98,5.670,171.5 -27.1,0.99,5.680,165.4 -27.1,0.99,5.220,176.0 -27.0,0.99,4.280,185.9 -27.0,0.99,5.090,208.0 -26.9,0.99,3.740,216.2 -26.7,0.99,3.700,218.4 -26.4,0.99,3.740,214.3 -26.4,0.99,3.120,222.8 -26.5,0.99,3.550,217.3 -26.4,0.99,2.580,199.3 -26.4,0.99,2.540,200.2 -26.0,0.99,1.490,203.0 -25.8,0.99,1.140,208.3 -26.0,0.99,0.840,147.8 -25.9,0.99,1.200,100.3 -25.8,0.99,2.050,99.2 -25.7,0.99,2.470,74.2 -27.0,0.99,3.370,111.7 -27.3,0.99,4.370,114.9 -27.4,0.99,4.920,118.0 -27.4,0.99,6.090,127.5 -27.4,0.99,6.500,128.8 -27.4,0.99,6.860,135.3 -27.2,0.99,6.940,142.9 -27.2,0.99,6.730,144.4 -27.4,0.99,7.240,144.6 -27.1,0.99,7.430,149.5 -27.2,0.99,7.460,152.3 -27.3,0.99,7.910,155.4 -27.2,0.99,7.730,163.5 -27.1,0.99,7.800,163.7 -27.3,0.99,7.700,163.3 -27.2,0.99,6.920,165.2 -27.0,0.99,6.350,159.7 -26.9,0.99,6.370,156.7 -26.8,0.99,5.630,145.9 -26.8,0.99,5.930,142.4 -27.0,0.99,5.910,135.3 -26.9,0.99,6.070,135.3 -27.0,0.99,6.460,127.2 -27.1,0.99,6.670,129.8 -27.2,0.99,6.700,125.6 -27.3,0.99,6.810,126.4 -27.3,0.99,7.030,125.7 -27.3,0.99,7.500,119.3 -27.1,0.99,8.400,117.7 -27.3,0.99,8.580,118.0 -26.9,0.99,8.930,123.0 -26.9,0.99,9.300,126.8 -26.9,0.99,9.120,124.6 -27.0,0.99,9.630,129.5 -26.7,0.99,10.020,135.7 -26.8,0.99,9.240,134.8 -26.7,0.99,9.900,143.0 -26.7,0.99,9.740,142.5 -26.7,0.99,10.170,143.5 -26.8,0.99,9.780,148.2 -26.7,0.99,9.280,144.7 -26.7,0.99,9.310,145.5 -26.9,0.99,8.950,136.7 -26.9,0.99,8.790,141.4 -27.0,0.99,9.490,134.7 -27.0,0.99,8.890,139.1 -27.1,0.99,9.010,139.1 -27.2,0.99,8.630,139.1 -27.4,0.99,9.220,135.4 -26.6,0.99,10.680,142.0 -26.6,0.99,10.500,151.8 -26.8,0.99,8.320,148.3 -26.6,0.99,7.930,148.6 -27.2,0.99,7.730,151.0 -26.8,0.99,7.720,151.5 -26.9,0.99,7.550,148.3 -26.9,0.99,7.680,151.7 -26.7,0.99,7.620,151.1 -26.6,0.99,7.330,155.8 -26.9,0.99,7.420,158.8 -26.8,0.99,8.570,160.9 -26.8,0.99,7.610,160.6 -26.8,0.99,6.890,166.2 -26.8,0.99,7.210,173.9 -26.8,0.99,7.240,185.1 -26.6,0.99,6.700,174.9 -26.6,0.99,6.030,184.0 -26.7,0.99,6.530,194.6 -26.5,0.99,5.320,181.0 -26.6,0.99,6.890,200.5 -24.6,0.99,8.290,184.7 -24.5,0.99,4.770,209.8 -25.6,0.99,5.510,195.1 -25.9,0.99,4.820,184.3 -26.4,0.99,5.130,178.7 -26.1,0.99,6.390,169.6 -26.1,0.99,5.800,159.5 -26.2,0.99,6.620,165.5 -26.1,0.99,4.640,166.3 -26.2,0.99,6.050,168.9 -26.2,0.99,5.160,177.4 -26.5,0.99,6.090,181.6 -26.6,0.99,7.130,164.1 -26.6,0.99,9.070,170.7 -26.7,0.99,8.530,181.3 -26.7,0.99,8.520,171.0 -26.7,0.99,8.130,188.9 -24.1,0.99,7.250,149.5 -24.0,0.99,11.160,167.4 -24.6,0.99,10.150,170.0 -24.5,0.99,10.150,166.0 -24.1,0.99,7.200,211.8 -24.4,0.99,6.500,209.9 -24.4,0.99,7.360,237.5 -24.3,0.99,5.470,179.0 -23.8,0.99,5.250,141.4 -25.2,0.99,5.160,210.6 -25.9,0.99,6.090,218.4 -25.9,0.99,5.170,195.2 -26.1,0.99,5.530,183.5 -26.4,0.99,5.170,186.4 -26.4,0.99,4.450,160.6 -26.4,0.99,4.380,163.8 -26.2,0.99,6.320,153.5 -26.3,0.99,7.710,156.5 -26.4,0.99,8.460,165.9 -26.4,0.99,8.750,173.4 -26.8,0.99,8.320,182.3 -26.6,0.99,8.730,188.8 -26.8,0.99,8.260,185.2 -26.8,0.99,8.890,178.2 -26.8,0.99,8.810,168.4 -26.8,0.99,8.210,189.7 -26.2,0.99,8.930,205.5 -26.8,0.99,5.350,169.2 -26.9,0.99,4.660,184.9 -26.4,0.99,8.110,166.3 -26.3,0.99,4.250,173.0 -26.3,0.99,2.280,193.8 -26.6,0.99,2.810,196.0 -26.3,0.99,9.030,159.5 -25.5,0.99,10.670,162.4 -25.5,0.99,6.580,164.7 -26.0,0.99,6.430,159.0 -26.3,0.99,7.390,153.9 -26.7,0.99,5.650,149.4 -26.3,0.99,5.110,141.0 -26.7,0.99,7.380,134.6 -26.2,0.99,7.220,124.6 -26.6,0.99,8.510,140.1 -26.7,0.99,8.350,142.6 -26.6,0.99,9.700,134.6 -26.7,0.99,8.270,145.5 -26.6,0.99,8.780,146.4 -26.8,0.99,7.980,154.9 -26.8,0.99,7.800,160.0 -26.5,0.99,7.630,160.0 -27.0,0.99,6.270,172.0 -26.9,0.99,5.430,172.1 -27.0,0.99,4.890,170.3 -26.9,0.99,3.480,144.1 -26.6,0.99,3.230,129.2 -25.8,0.99,3.010,102.3 -26.3,0.99,5.580,106.8 -26.2,0.99,6.970,105.8 -25.7,0.99,5.610,121.4 -26.0,0.99,3.900,144.2 -26.1,0.99,3.990,137.1 -26.4,0.99,5.210,122.6 -26.2,0.99,6.290,117.6 -26.2,0.99,7.460,116.1 -26.3,0.99,6.840,126.8 -26.5,0.99,7.870,130.3 -26.6,0.99,7.700,144.5 -26.5,0.99,7.770,145.7 -26.6,0.99,7.530,148.2 -26.7,0.99,6.430,154.2 -27.2,0.99,6.970,163.2 -26.9,0.99,7.060,166.0 -26.8,0.99,6.870,172.4 -26.6,0.99,5.970,171.2 -26.7,0.99,5.840,168.4 -26.5,0.99,6.050,162.7 -26.4,0.99,4.780,165.2 -26.2,0.99,5.160,161.5 -26.3,0.99,3.800,159.4 -26.3,0.99,3.680,153.8 -26.5,0.99,4.010,142.1 -26.8,0.99,3.900,143.8 -26.9,0.99,5.320,136.3 -27.0,0.99,5.110,145.3 -26.9,0.99,5.670,146.6 -26.5,0.99,5.790,140.3 -26.5,0.99,5.710,141.6 -26.3,0.99,5.810,140.7 -26.3,0.99,5.480,143.5 -26.2,0.99,5.910,144.2 -26.2,0.99,3.630,161.3 -26.1,0.99,4.790,135.8 -26.2,0.99,5.390,140.0 -26.3,0.99,5.020,143.2 -26.3,0.99,5.160,147.0 -26.2,0.99,4.670,161.0 -26.2,0.99,3.430,164.4 -26.6,0.99,5.600,154.5 -26.5,0.99,4.740,157.1 -26.4,0.99,4.000,158.7 -26.4,0.99,3.390,158.4 -26.3,0.99,3.170,149.8 -26.2,0.99,2.840,151.5 -26.6,0.99,2.410,148.9 -26.6,0.99,2.300,158.8 -26.6,0.99,7.040,133.9 -27.2,0.99,8.390,132.8 -27.2,0.99,8.660,137.5 -27.4,0.99,8.930,132.4 -27.2,0.99,8.780,130.1 -27.1,0.99,8.630,127.0 -27.0,0.99,8.630,122.5 -26.9,0.99,8.990,128.6 -26.8,0.99,9.100,128.3 -26.9,0.99,9.000,129.0 -26.9,0.99,9.100,121.0 -26.8,0.99,8.230,123.8 -27.0,0.99,7.480,124.1 -26.9,0.99,6.760,125.0 -26.7,0.99,5.830,122.2 -26.6,0.99,5.260,123.1 -26.8,0.99,4.450,128.1 -26.6,0.99,3.840,115.1 -26.4,0.99,3.410,102.3 -26.4,0.99,3.630,88.8 -26.4,0.99,3.930,82.5 -26.4,0.99,2.890,72.2 -26.2,0.99,3.220,57.3 -26.4,0.99,4.510,109.0 -26.8,0.99,4.240,103.2 -26.9,0.99,4.390,101.7 -26.8,0.99,3.730,100.6 -26.8,0.99,3.770,105.9 -26.8,0.99,1.830,111.4 -27.0,0.99,0.650,87.0 -27.5,0.99,1.600,10.2 -26.2,0.99,2.560,354.6 -26.1,0.99,5.370,345.5 -25.8,0.99,7.080,6.7 -25.3,0.99,7.100,11.4 -24.5,0.99,10.570,355.1 -22.2,0.99,11.520,346.5 -20.8,0.99,11.230,349.4 -20.3,0.99,11.770,350.3 -19.9,0.99,13.100,350.8 -19.3,0.99,13.820,348.4 -19.2,0.99,14.060,354.0 -18.7,0.99,12.390,2.6 -18.4,0.99,13.410,354.9 -18.5,0.99,12.670,352.3 -19.0,0.99,9.850,359.7 -20.3,0.99,9.390,352.7 -20.1,0.99,9.820,341.0 -21.4,0.99,10.310,354.1 -22.4,0.99,8.810,344.1 -22.6,0.99,10.090,340.0 -23.2,0.99,11.780,338.7 -23.4,0.99,10.580,340.7 -23.6,0.99,10.520,340.0 -23.1,0.99,10.190,343.2 -22.9,0.99,9.450,343.0 -22.3,0.99,10.840,348.4 -22.0,0.99,11.430,348.8 -21.4,0.99,10.400,352.5 -21.0,0.99,10.220,350.7 -20.8,0.99,8.540,356.0 -20.3,0.99,8.720,351.7 -19.4,0.99,9.280,359.1 -19.2,0.99,8.710,6.2 -19.0,0.99,8.440,3.4 -19.0,0.99,8.570,9.1 -18.7,0.99,8.310,8.1 -18.4,0.99,7.060,12.2 -18.6,0.99,6.770,7.9 -19.0,0.99,5.920,5.6 -19.5,0.99,5.140,356.5 -20.2,0.99,4.300,346.5 -21.3,0.99,4.850,334.0 -22.6,0.99,5.020,336.5 -23.6,0.99,5.550,348.0 -23.8,0.99,6.680,337.3 -24.0,0.99,6.730,336.3 -24.2,0.99,6.760,347.8 -23.9,0.99,7.060,9.5 -23.6,0.99,6.660,18.9 -23.4,0.99,5.820,21.9 -23.4,0.99,5.090,21.7 -23.2,0.99,4.820,30.5 -23.1,0.99,4.810,28.8 -22.8,0.99,5.210,26.2 -21.3,0.99,4.340,22.6 -20.8,0.99,4.440,20.7 -20.5,0.99,5.120,26.5 -20.5,0.99,4.970,32.4 -21.3,0.99,4.550,42.2 -21.9,0.99,4.350,38.1 -22.2,0.99,4.350,60.8 -22.0,0.99,4.570,57.3 -21.8,0.99,4.740,59.3 -21.6,0.99,4.650,59.5 -21.5,0.99,4.130,59.2 -21.9,0.99,2.920,61.0 -22.4,0.99,0.960,52.8 -22.7,0.99,0.310,114.6 -22.8,0.99,0.910,135.3 -22.9,0.99,1.000,132.4 -23.0,0.99,1.000,126.5 -23.0,0.99,1.300,114.2 -22.8,0.99,1.780,115.6 -22.8,0.99,2.360,101.1 -22.8,0.99,2.920,92.8 -22.8,0.99,2.820,89.0 -22.9,0.99,3.380,84.1 -22.8,0.99,3.540,98.9 -22.7,0.99,3.070,116.5 -22.7,0.99,2.220,107.2 -22.7,0.99,2.110,113.4 -22.8,0.99,1.470,90.5 -21.4,0.99,3.620,21.3 -21.8,0.99,2.210,12.5 -21.5,0.99,1.920,8.7 -21.9,0.99,1.900,9.1 -22.2,0.99,1.600,349.7 -21.9,0.99,3.170,2.6 -22.4,0.99,2.850,1.8 -22.8,0.99,2.540,39.2 -23.1,0.99,1.630,51.2 -23.3,0.99,1.510,87.5 -23.7,0.99,2.420,105.3 -23.6,0.99,3.730,100.8 -23.7,0.99,5.950,111.3 -23.6,0.99,5.250,115.0 -23.5,0.99,6.180,110.9 -23.5,0.99,6.050,117.5 -23.8,0.99,6.900,109.4 -23.9,0.99,5.710,135.3 -23.8,0.99,6.150,134.6 -23.8,0.99,5.300,133.9 -23.8,0.99,5.810,141.6 -24.1,0.99,5.460,148.6 -24.1,0.99,4.350,172.3 -23.8,0.99,3.290,128.1 -24.3,0.99,3.530,187.0 -24.1,0.99,1.620,198.8 -24.1,0.99,2.890,189.1 -24.3,0.99,2.580,169.0 -24.2,0.99,1.550,163.9 -24.2,0.99,1.540,128.5 -24.3,0.99,2.010,107.8 -24.6,0.99,3.030,111.3 -24.6,0.99,3.080,117.9 -24.8,0.99,3.930,128.9 -24.6,0.99,4.780,123.2 -24.8,0.99,5.310,131.8 -24.7,0.99,6.460,136.3 -24.7,0.99,6.720,137.8 -24.8,0.99,6.000,145.4 -24.8,0.99,6.050,148.7 -25.0,0.99,5.110,156.1 -24.8,0.99,5.680,157.3 -24.6,0.99,5.770,161.7 -24.5,0.99,5.350,161.8 -24.6,0.99,5.170,165.6 -24.8,0.99,5.540,185.1 -25.0,0.99,6.260,175.0 -25.1,0.99,6.880,179.2 -25.1,0.99,6.320,175.8 -25.1,0.99,5.630,167.3 -25.0,0.99,5.020,160.2 -25.3,0.99,5.450,160.8 -25.8,0.99,6.000,174.8 -25.7,0.99,6.760,169.8 -25.6,0.99,7.100,154.9 -25.8,0.99,7.990,160.9 -25.5,0.99,6.650,155.5 -25.6,0.99,6.650,148.6 -25.6,0.99,7.410,140.0 -25.6,0.99,7.480,144.5 -25.5,0.99,7.820,142.1 -25.4,0.99,9.440,149.2 -25.4,0.99,8.970,152.1 -25.4,0.99,8.640,149.1 -25.5,0.99,9.940,151.8 -25.6,0.99,9.690,150.5 -25.7,0.99,9.100,164.1 -25.4,0.99,8.460,164.9 -25.5,0.99,8.780,163.3 -25.6,0.99,8.170,167.0 -25.7,0.99,7.780,169.1 -25.9,0.99,6.930,175.1 -26.0,0.99,5.690,157.6 -26.0,0.99,6.940,160.1 -25.0,0.99,8.250,195.6 -24.3,0.99,5.820,155.7 -25.4,0.99,6.580,187.7 -24.3,0.99,9.900,174.0 -24.8,0.99,3.930,192.7 -25.7,0.99,3.810,148.1 -25.0,0.99,7.370,155.7 -25.1,0.99,6.610,178.0 -25.5,0.99,6.210,179.1 -25.5,0.99,7.020,171.8 -25.7,0.99,6.100,167.6 -25.5,0.99,5.480,174.6 -25.3,0.99,5.690,154.3 -25.3,0.99,6.430,137.5 -25.4,0.99,6.590,126.1 -25.2,0.99,5.930,124.9 -25.4,0.99,5.890,133.3 -25.4,0.99,5.670,156.4 -25.3,0.99,5.220,170.7 -25.4,0.99,4.200,168.3 -25.4,0.99,3.510,178.7 -25.4,0.99,2.890,176.4 -25.5,0.99,2.100,173.7 -25.4,0.99,2.090,126.1 -25.4,0.99,2.410,109.9 -25.2,1.00,2.190,86.8 -25.2,1.00,2.330,81.1 -24.7,1.00,3.360,51.3 -25.5,0.99,3.250,97.9 -25.9,0.99,4.610,122.1 -25.9,0.99,5.600,120.5 -25.8,0.99,5.680,115.0 -25.7,0.99,5.760,119.7 -25.7,0.99,6.040,125.0 -25.7,0.99,6.170,120.0 -25.5,0.99,5.910,120.9 -25.5,0.99,5.280,123.5 -25.8,0.99,5.780,126.4 -25.6,0.99,5.480,131.0 -25.6,0.99,5.110,130.8 -25.6,0.99,3.600,133.6 -25.4,0.99,4.680,120.0 -25.6,0.99,4.310,142.8 -25.4,0.99,4.190,118.6 -25.4,0.99,5.440,137.0 -25.4,0.99,5.810,136.4 -25.5,0.99,5.520,145.2 -25.7,0.99,5.450,137.4 -25.4,0.99,5.510,136.5 -25.4,0.99,4.960,134.9 -25.4,0.99,4.840,138.1 -25.3,0.99,4.570,130.3 -25.4,0.99,4.790,133.0 -25.0,0.99,3.530,137.5 -25.4,0.99,5.070,138.0 -25.4,0.99,4.420,131.3 -25.5,0.99,5.810,147.5 -25.4,0.99,5.920,139.2 -25.3,0.99,6.720,138.2 -25.5,0.99,6.270,138.2 -25.4,0.99,7.190,141.0 -25.4,0.99,8.030,146.0 -25.3,0.99,8.120,143.2 -25.4,0.99,7.280,151.7 -25.4,0.99,7.750,146.7 -25.4,0.99,7.230,153.1 -25.4,0.99,7.800,163.3 -25.4,0.99,7.020,164.5 -25.3,0.99,7.120,165.3 -25.4,0.99,7.570,165.7 -25.3,0.99,7.210,171.1 -25.2,0.99,6.880,169.0 -25.3,0.99,5.690,176.9 -25.3,0.99,5.390,175.6 -25.3,0.99,5.340,173.5 -25.3,0.99,4.640,161.8 -25.2,0.99,5.130,170.6 -25.4,0.99,5.860,166.8 -25.4,0.99,5.850,163.6 -25.5,0.99,6.350,170.3 -25.5,0.99,6.750,164.1 -25.4,0.99,6.350,168.8 -25.4,0.99,6.790,164.1 -25.2,0.99,6.930,163.5 -25.2,0.99,7.010,158.0 -25.1,0.99,6.520,167.1 -25.3,0.99,6.600,164.8 -25.2,0.99,6.670,179.2 -25.2,0.99,5.470,179.4 -25.0,0.99,5.020,180.6 -25.0,0.99,5.160,197.1 -25.0,0.99,4.650,188.0 -25.2,0.99,5.080,190.6 -25.1,0.99,4.340,208.8 -24.8,0.99,2.630,237.6 -24.6,0.99,3.220,257.5 -24.4,0.99,3.630,269.4 -24.4,0.99,3.690,273.9 -24.2,0.99,3.300,267.4 -24.5,0.99,2.570,260.1 -24.5,0.99,1.980,242.5 -24.7,0.99,2.350,206.8 -25.0,0.99,3.360,205.4 -25.3,0.99,3.190,206.5 -25.7,0.99,4.020,213.5 -24.9,0.99,5.270,284.8 -23.3,0.99,9.500,338.5 -22.1,0.99,9.090,342.1 -20.8,0.99,8.930,343.7 -20.1,0.99,8.960,343.3 -19.6,0.99,9.130,340.9 -19.4,0.99,8.630,344.0 -19.2,0.99,8.820,341.3 -18.6,0.99,9.040,342.3 -18.2,0.99,9.330,342.1 -17.8,0.99,9.380,343.9 -17.8,0.99,10.000,348.0 -17.8,0.99,9.090,353.5 -17.6,0.99,8.520,357.9 -17.1,0.99,7.950,3.2 -16.8,0.99,8.670,2.3 -17.1,0.99,7.230,5.0 -17.2,0.99,7.860,10.0 -17.8,0.99,6.620,4.3 -18.6,0.99,5.770,2.6 -20.1,0.99,4.970,10.4 -21.4,0.99,4.540,13.7 -22.2,0.99,3.790,352.5 -22.6,0.99,3.260,340.2 -23.0,0.99,4.240,349.4 -23.5,0.99,3.720,2.8 -23.4,0.99,5.250,15.7 -22.6,0.99,6.710,27.0 -22.1,0.99,7.240,31.3 -21.8,0.99,7.300,39.5 -21.7,0.99,6.870,44.1 -21.9,0.99,6.280,51.7 -21.9,0.99,6.550,56.8 -21.9,0.99,6.250,60.8 -21.8,0.99,6.700,64.7 -21.9,0.99,6.870,70.9 -22.0,0.99,7.190,76.9 -21.9,0.99,8.150,81.7 -22.0,0.99,7.940,84.9 -22.0,0.99,8.470,89.2 -22.0,0.99,8.160,73.5 -21.8,0.99,9.350,70.8 -21.7,0.99,9.810,74.8 -21.7,0.99,10.350,82.1 -22.0,0.99,9.540,90.2 -22.2,0.99,9.840,96.4 -22.5,0.99,8.260,99.4 -22.3,0.99,8.660,97.8 -21.9,0.99,9.280,92.3 -21.8,0.99,8.850,94.9 -22.2,0.99,9.920,90.8 -22.5,0.99,8.020,99.5 -22.8,0.99,7.090,101.6 -23.0,0.99,6.760,94.6 -23.5,0.99,5.390,116.7 -23.4,0.99,5.700,87.8 -23.0,0.99,7.480,53.5 -21.4,0.99,8.800,23.4 -18.1,0.99,13.350,1.4 -17.5,0.99,14.030,6.9 -17.6,0.99,10.900,4.8 -17.1,0.99,11.670,2.9 -17.1,0.99,10.350,8.2 -17.0,0.99,11.570,1.0 -16.6,0.99,11.240,2.3 -16.8,0.99,10.310,356.5 -17.2,0.99,9.880,354.2 -17.8,0.99,9.640,350.3 -18.6,0.99,9.420,347.2 -19.5,0.99,9.120,349.6 -20.1,0.99,9.310,349.7 -20.3,0.99,9.290,349.6 -20.3,0.99,8.780,355.3 -20.0,0.99,8.540,2.2 -19.0,0.99,9.920,3.1 -18.6,0.99,9.580,11.6 -18.3,0.99,8.890,20.2 -18.1,0.99,8.640,21.3 -17.7,0.99,8.800,28.4 -17.6,0.99,8.210,32.4 -17.3,0.99,7.930,33.1 -17.1,0.99,7.330,36.1 -17.2,0.99,7.150,36.1 -17.4,0.99,6.860,37.8 -17.7,0.99,6.430,51.0 -18.0,0.99,5.820,50.3 -18.1,0.99,5.750,47.0 -18.3,0.99,5.600,49.4 -18.4,0.99,5.420,54.1 -18.8,0.99,5.050,80.3 -19.2,0.99,4.690,78.4 -19.4,0.99,4.110,83.5 -19.8,0.99,4.130,82.1 -20.0,0.99,4.500,73.4 -20.4,0.99,4.020,103.2 -20.6,0.99,4.220,89.9 -20.7,0.99,4.250,97.7 -21.0,0.99,4.770,104.9 -21.1,0.99,5.760,104.6 -21.3,0.99,5.630,101.6 -21.6,0.99,5.670,111.6 -21.8,0.99,5.720,118.9 -22.1,0.99,6.420,126.1 -22.2,0.99,6.150,134.5 -22.5,0.99,6.750,139.7 -22.8,0.99,6.820,150.5 -22.8,0.99,6.900,142.5 -23.1,0.99,6.780,142.8 -23.4,0.99,5.420,147.3 -23.4,0.99,5.540,148.3 -23.6,0.99,5.710,137.6 -23.7,0.99,4.930,130.1 -23.7,0.99,6.250,137.5 -22.1,0.99,8.350,169.6 -21.5,0.99,3.910,107.0 -20.7,0.99,3.660,115.3 -22.3,0.99,7.420,148.2 -20.9,0.99,2.380,194.8 -19.2,0.99,11.360,2.9 -20.3,0.99,10.050,52.3 -20.9,0.99,10.720,70.4 -21.3,0.99,10.640,91.6 -21.4,0.99,8.350,81.5 -21.7,0.99,6.550,91.5 -22.0,0.99,6.410,87.3 -22.4,0.99,5.110,97.1 -22.4,0.99,4.000,92.0 -22.5,0.99,2.060,100.5 -22.6,0.99,2.070,47.0 -21.2,0.99,6.380,9.5 -20.4,0.99,8.010,8.0 -19.9,0.99,8.320,9.5 -20.1,0.99,7.910,14.7 -19.9,0.99,7.670,4.6 -18.6,0.99,7.900,357.3 -17.6,0.99,8.830,355.0 -17.6,0.99,8.010,356.7 -17.7,0.99,8.280,351.5 -18.0,0.99,7.770,351.8 -19.2,0.99,7.120,347.5 -20.3,0.99,7.310,344.9 -21.2,0.99,7.490,345.9 -21.9,0.99,8.760,342.4 -22.4,0.99,7.870,346.8 -22.6,0.99,8.650,355.6 -22.4,0.99,9.070,6.3 -21.7,0.99,9.440,10.6 -21.3,0.99,8.950,10.7 -21.2,0.99,8.460,14.8 -21.1,0.99,7.370,19.0 -21.2,0.99,6.630,18.2 -21.0,0.99,5.620,13.6 -20.0,0.99,4.040,4.7 -19.1,0.99,4.010,348.0 -18.0,0.99,4.140,338.9 -18.0,0.99,4.030,343.7 -18.2,0.99,4.150,348.2 -18.1,0.99,3.960,352.8 -17.9,1.00,3.830,357.5 -17.7,1.00,4.010,0.1 -17.7,1.00,4.000,2.4 -17.9,1.00,3.720,4.3 -18.4,1.00,3.500,3.5 -18.9,1.00,3.340,3.9 -20.7,1.00,2.940,25.7 -21.4,0.99,2.760,40.8 -22.0,0.99,1.950,71.2 -22.3,0.99,1.370,94.9 -22.5,0.99,0.970,105.7 -22.7,0.99,0.830,121.4 -22.6,1.00,1.050,125.1 -22.5,1.00,0.920,134.2 -22.4,1.00,1.770,139.9 -22.4,1.00,1.580,136.8 -22.4,1.00,1.590,141.4 -22.4,1.00,0.820,155.0 -22.3,1.00,0.450,179.5 -22.1,1.00,0.540,268.1 -21.8,1.00,0.570,281.4 -21.9,1.00,0.690,292.2 -21.9,1.00,0.940,321.6 -21.8,1.00,1.290,327.3 -21.9,1.00,1.600,335.8 -21.7,1.00,1.900,350.0 -21.2,1.00,2.700,0.3 -21.3,1.00,2.880,2.7 -21.4,1.00,2.560,15.8 -21.6,1.00,2.740,12.3 -22.1,1.00,2.260,29.3 -22.4,1.00,1.650,52.1 -22.6,1.00,1.140,91.2 -22.7,1.00,1.300,99.8 -22.8,1.00,1.850,118.0 -22.9,1.00,2.280,121.7 -22.8,1.00,2.840,128.4 -22.6,1.00,3.030,126.4 -22.5,1.00,2.610,127.5 -22.7,1.00,2.620,124.9 -22.6,1.00,2.460,121.2 -22.6,1.00,2.130,120.5 -22.6,1.00,1.940,119.5 -22.5,1.00,1.620,95.5 -22.3,1.00,1.340,43.7 -19.4,1.00,6.400,16.4 -19.5,1.00,7.020,30.2 -20.0,1.00,8.680,50.3 -20.0,1.00,10.360,58.2 -19.7,1.00,10.750,63.8 -19.6,1.00,11.200,68.7 -19.5,1.00,11.170,73.6 -19.4,1.00,11.030,73.5 -19.4,1.00,10.400,74.1 -19.6,1.00,9.930,74.6 -19.7,1.00,9.280,75.6 -20.0,1.00,8.850,76.2 -20.3,1.00,8.600,76.9 -20.7,1.00,8.770,81.3 -21.0,1.00,8.650,82.5 -21.1,1.00,8.570,83.7 -21.4,1.00,8.720,90.0 -21.6,1.00,8.690,87.3 -21.8,1.00,8.050,103.9 -21.7,1.00,9.040,96.0 -21.4,1.00,8.870,99.7 -21.5,1.00,8.020,110.7 -21.4,1.00,8.140,104.8 -21.5,1.00,7.410,113.9 -21.5,1.00,7.350,112.6 -21.5,1.00,6.990,117.0 -21.6,1.00,6.450,119.5 -21.6,1.00,6.620,117.2 -21.8,1.00,6.600,120.4 -21.9,1.00,6.330,122.0 -22.0,1.00,5.980,124.8 -22.2,1.00,5.720,133.8 -22.4,1.00,5.600,133.1 -22.6,1.00,5.790,131.8 -22.6,1.00,5.800,136.7 -22.7,1.00,5.110,138.6 -22.8,1.00,5.680,137.5 -22.7,1.00,5.820,134.0 -22.8,1.00,6.340,138.6 -22.8,1.00,6.690,139.0 -22.8,1.00,6.660,137.8 -22.9,1.00,6.650,140.5 -22.8,1.00,4.960,133.5 -22.9,0.99,4.780,131.0 -23.0,0.99,6.140,152.0 -23.0,0.99,7.670,153.7 -23.0,0.99,7.080,151.9 -23.1,0.99,6.850,154.0 -23.3,0.99,4.370,150.5 -23.4,0.99,5.290,141.3 -23.2,0.99,4.970,128.4 -23.5,0.99,6.860,153.3 -21.3,0.99,5.120,57.0 -18.6,0.99,13.520,21.4 -19.2,0.99,10.360,51.6 -19.6,0.99,7.810,66.9 -19.7,0.99,6.960,92.3 -20.7,0.99,5.790,114.4 -21.0,0.99,3.590,146.3 -21.6,0.99,3.520,156.7 -21.9,0.99,1.450,232.6 -22.1,0.99,1.510,237.2 -22.2,0.99,1.440,239.4 -22.2,0.99,0.320,226.9 -22.1,0.99,1.040,120.0 -22.0,0.99,1.170,112.4 -22.1,0.99,1.870,141.5 -22.1,0.99,1.760,113.8 -22.1,0.99,0.890,86.4 -22.1,0.99,1.560,116.0 -22.1,0.99,1.840,128.4 -22.2,0.99,1.970,119.7 -22.4,0.99,1.940,116.4 -22.5,0.99,3.130,115.6 -22.8,0.99,2.830,121.2 -22.8,0.99,3.630,107.6 -23.0,0.99,4.120,104.1 -23.0,0.99,4.230,102.3 -23.1,0.99,4.800,96.6 -23.2,0.99,5.050,102.9 -23.3,0.99,6.020,104.0 -23.6,0.99,6.080,109.0 -23.7,0.99,6.620,114.3 -23.8,0.99,7.030,119.3 -24.1,0.99,7.750,127.0 -24.3,0.99,7.550,134.9 -24.2,0.99,8.210,139.0 -23.9,0.99,7.840,132.7 -24.1,0.99,8.890,136.1 -24.3,0.99,8.750,139.4 -24.3,0.99,9.540,147.4 -24.3,0.99,10.020,147.8 -24.4,0.99,10.400,153.9 -24.3,0.99,10.770,150.0 -24.4,0.99,9.480,157.5 -24.4,0.99,10.020,160.3 -24.2,0.99,9.530,158.3 -24.5,0.99,9.100,155.8 -24.3,0.99,8.630,158.5 -24.4,0.99,8.260,162.8 -24.4,1.00,8.350,153.1 -24.2,1.00,7.880,148.6 -24.4,1.00,7.080,146.8 -24.6,1.00,8.160,151.7 -24.4,0.99,6.870,146.2 -24.8,0.99,7.940,150.1 -24.8,0.99,7.450,151.7 -24.7,0.99,8.470,144.7 -24.6,0.99,9.060,140.7 -24.7,0.99,9.180,143.3 -24.6,0.99,9.240,140.0 -24.4,0.99,9.640,137.8 -24.5,0.99,9.480,138.2 -24.5,0.99,10.050,137.6 -24.6,0.99,10.460,140.8 -24.4,0.99,11.290,143.3 -24.5,0.99,10.990,142.1 -24.4,0.99,10.840,142.3 -24.4,0.99,11.420,147.0 -24.3,0.99,11.370,142.2 -24.3,0.99,11.420,144.4 -24.5,0.99,10.500,142.9 -24.6,0.99,11.230,144.5 -24.7,0.99,11.400,148.3 -24.8,0.99,11.650,143.3 -24.7,0.99,11.420,144.3 -24.8,0.99,10.700,143.6 -24.8,0.99,10.990,147.2 -24.9,0.99,11.520,149.2 -25.0,0.99,11.330,148.1 -25.0,0.99,11.420,148.5 -24.9,0.99,11.280,155.0 -24.9,0.99,12.990,149.4 -25.1,0.99,14.200,150.4 -24.5,0.99,12.840,158.5 -24.7,0.99,15.900,162.7 -24.6,0.99,13.990,161.6 -24.5,0.99,12.470,156.1 -25.0,0.99,13.480,162.1 -24.8,0.99,13.410,170.6 -25.2,0.99,10.700,178.8 -25.2,0.99,11.220,179.8 -25.4,0.99,13.180,183.6 -25.4,0.99,14.120,184.0 -25.3,0.99,14.090,182.5 -25.2,0.99,15.880,188.5 -25.1,0.99,16.470,191.8 -25.5,0.99,13.610,206.6 -25.6,0.99,13.360,213.7 -25.6,0.99,12.260,213.4 -25.4,0.99,10.210,231.0 -25.4,0.99,9.050,236.0 -25.9,0.99,10.750,245.3 -25.9,0.99,10.480,253.7 -25.2,0.99,8.830,242.3 -24.8,0.99,7.980,237.8 -25.1,0.99,8.340,227.8 -25.1,0.99,7.910,224.6 -24.6,0.99,6.700,202.5 -24.9,0.99,6.910,212.5 -24.2,0.99,5.800,242.6 -24.1,0.99,4.860,242.7 -23.8,0.99,3.750,233.9 -23.5,0.99,3.520,249.4 -22.9,0.99,3.500,260.7 -22.3,0.99,3.860,298.9 -21.9,0.99,5.020,317.3 -20.4,0.99,5.970,350.5 -20.2,0.99,5.210,14.8 -20.2,0.99,5.220,33.5 -20.4,0.99,5.510,38.2 -20.4,0.99,5.160,49.7 -20.3,0.99,4.840,52.7 -20.5,0.99,4.760,57.1 -20.6,0.99,4.320,60.7 -20.6,0.99,4.340,76.7 -20.9,0.99,3.540,82.1 -21.6,0.99,2.780,84.2 -21.9,0.99,2.760,97.5 -22.2,0.99,3.280,113.8 -22.3,0.99,3.480,129.2 -22.5,0.99,3.800,138.3 -22.4,0.99,2.790,146.1 -22.3,0.99,2.800,147.5 -22.2,0.99,3.200,158.6 -22.2,0.99,2.700,185.0 -22.2,0.99,2.640,198.4 -22.3,0.99,2.780,215.3 -22.2,0.99,4.090,285.8 -20.8,0.99,8.640,315.7 -20.8,0.99,9.280,308.7 -19.7,0.99,10.570,327.4 -17.9,0.99,11.610,348.7 -18.5,0.99,13.440,356.6 -17.7,0.99,13.030,6.3 -17.2,0.99,14.710,9.4 -16.7,1.00,13.830,13.3 -16.6,1.00,13.000,12.3 -16.6,1.00,11.940,6.6 -17.3,1.00,10.850,1.2 -18.6,1.00,10.710,2.4 -19.3,1.00,11.590,3.3 -19.4,1.00,10.350,0.4 -19.7,1.00,10.400,356.3 -19.6,1.00,10.130,351.6 -19.6,1.00,9.970,351.4 -19.2,1.00,10.070,0.6 -18.6,1.00,9.840,4.8 -18.6,1.00,9.920,11.3 -18.1,1.00,10.630,19.7 -17.5,1.00,10.050,21.8 -17.4,1.00,9.260,27.8 -17.1,1.00,9.460,31.1 -16.7,1.00,9.230,36.6 -16.9,1.00,8.660,39.9 -16.8,1.00,8.440,43.2 -16.8,1.00,8.230,52.1 -16.9,1.00,7.860,54.4 -17.0,1.00,7.510,66.8 -17.1,1.00,7.230,74.6 -16.9,1.00,8.080,72.8 -17.1,1.00,7.220,77.5 -17.2,1.00,7.070,83.9 -17.3,1.00,7.120,85.5 -17.4,1.00,7.270,90.6 -17.7,1.00,6.640,93.1 -17.8,1.00,6.080,102.1 -17.9,1.00,7.280,89.0 -18.0,1.00,7.220,109.6 -18.1,0.99,6.570,105.0 -18.4,0.99,6.420,127.4 -18.4,0.99,6.490,123.0 -18.6,0.99,6.680,118.5 -18.9,0.99,7.660,125.5 -19.1,0.99,6.860,125.1 -19.3,0.99,7.130,124.7 -19.7,0.99,6.670,118.4 -20.3,0.99,7.370,127.4 -20.4,0.99,8.460,121.7 -21.1,0.99,7.880,128.4 -21.4,0.99,8.120,134.4 -21.5,0.99,8.510,126.2 -21.6,0.99,8.870,136.3 -21.7,0.99,8.660,118.9 -21.4,0.99,8.710,115.0 -22.1,0.99,9.060,125.5 -22.3,0.99,8.960,123.6 -21.6,0.99,10.360,101.5 -21.6,0.99,10.790,109.4 -21.8,0.99,11.200,102.9 -22.4,0.99,12.370,115.7 -22.6,0.99,12.820,114.9 -22.8,0.99,14.100,121.2 -22.8,0.99,14.540,115.7 -22.8,0.99,15.560,118.4 -22.9,0.99,15.470,120.8 -22.9,0.99,15.860,121.7 -23.1,0.99,15.280,126.9 -23.3,0.99,15.280,125.1 -23.4,0.99,15.120,129.1 -23.4,0.99,15.040,131.3 -23.4,0.99,13.240,134.2 -23.3,0.99,12.980,132.3 -23.5,0.99,12.870,137.2 -23.6,0.99,11.870,138.8 -23.7,0.99,12.390,141.8 -23.6,0.99,11.730,141.2 -23.6,0.99,11.140,139.4 -23.7,0.99,11.760,138.9 -23.7,0.99,11.690,137.3 -23.8,0.99,10.890,139.9 -23.8,0.99,10.680,140.1 -24.2,0.99,9.900,144.1 -24.3,0.99,9.320,144.3 -23.9,0.99,10.120,135.9 -23.6,0.99,9.010,133.2 -23.6,0.99,9.340,133.9 -23.9,0.99,8.540,138.8 -23.6,0.99,7.280,139.4 -23.8,0.99,8.210,143.1 -23.6,0.99,8.650,137.7 -23.6,0.99,9.070,137.1 -23.5,0.99,8.350,133.6 -23.3,0.99,8.210,143.5 -23.4,0.99,7.390,142.8 -23.5,0.99,7.870,141.8 -23.4,0.99,5.880,133.8 -23.5,0.99,6.510,147.3 -23.5,0.99,6.870,148.2 -23.5,0.99,6.220,150.3 -23.7,0.99,6.310,159.8 -23.6,0.99,5.630,150.2 -23.7,0.99,5.160,166.1 -23.7,0.99,4.840,171.4 -23.6,0.99,2.250,183.0 -23.8,0.99,1.570,227.9 -23.9,0.99,1.250,299.0 -23.9,0.99,1.700,312.9 -24.2,0.99,2.530,6.8 -25.3,0.99,6.050,344.8 -25.1,0.99,6.670,351.4 -24.1,0.99,12.300,348.8 -23.1,0.99,12.430,349.1 -19.7,1.00,12.640,348.7 -18.2,1.00,11.490,355.5 -17.8,1.00,12.060,356.1 -17.1,1.00,12.710,357.2 -16.3,1.00,12.130,356.2 -15.8,1.00,12.900,5.1 -15.3,1.00,13.050,8.2 -14.8,1.00,13.690,11.8 -14.6,1.00,14.110,11.6 -14.1,1.00,14.530,13.7 -13.3,1.00,15.250,16.5 -12.8,1.00,15.270,20.3 -12.1,1.00,14.830,23.4 -11.5,1.00,15.430,23.6 -11.5,1.00,13.330,25.3 -11.8,1.00,12.320,20.9 -12.4,1.00,11.570,17.3 -13.5,1.00,11.370,16.0 -15.0,1.00,11.330,16.1 -15.9,1.00,11.520,14.4 -16.5,1.00,11.460,15.0 -16.9,1.00,11.840,18.0 -16.9,1.00,11.830,17.6 -16.4,1.00,12.510,20.9 -15.5,1.00,13.050,23.6 -15.0,1.00,13.650,30.2 -14.8,1.00,13.730,32.5 -14.6,1.00,13.270,35.1 -14.5,1.00,13.020,37.3 -14.6,1.00,13.060,39.5 -14.5,1.00,12.540,41.2 -14.5,1.00,12.100,43.4 -14.4,1.00,11.580,43.6 -14.5,1.00,12.230,47.8 -14.8,1.00,13.520,51.9 -14.9,1.00,13.290,55.2 -15.0,1.00,12.670,58.1 -15.2,1.00,12.610,61.0 -15.6,1.00,12.510,65.1 -15.6,1.00,11.960,63.8 -15.7,1.00,11.140,64.3 -15.8,1.00,10.320,63.4 -16.1,1.00,9.430,62.9 -16.3,1.00,8.220,63.0 -16.5,1.00,7.220,61.0 -16.8,1.00,6.390,59.9 -17.2,1.00,5.850,66.6 -17.5,1.00,5.780,68.3 -17.7,1.00,5.370,63.8 -17.9,1.00,4.860,66.1 -18.0,1.00,4.820,58.5 -18.2,1.00,4.950,65.5 -18.4,1.00,4.550,94.1 -18.5,1.00,3.870,93.6 -18.6,1.00,4.470,105.7 -18.8,1.00,4.030,120.6 -18.6,1.00,4.280,83.6 -18.7,1.00,3.660,110.4 -19.2,1.00,2.740,109.4 -17.5,1.00,6.530,29.9 -17.4,1.00,8.120,31.8 -17.5,1.00,9.040,37.5 -17.9,1.00,9.160,37.5 -18.2,1.00,8.260,43.3 -19.4,1.00,4.420,73.9 -19.3,1.00,5.170,79.4 -19.2,1.00,7.570,83.9 -18.9,1.00,7.410,83.1 -18.9,1.00,6.920,88.6 -19.0,1.00,6.260,86.3 -19.2,1.00,5.440,88.8 -19.4,1.00,4.800,85.7 -19.4,1.00,4.670,78.9 -19.9,1.00,5.410,83.5 -20.4,1.00,5.850,77.4 -20.3,1.00,5.860,65.4 -19.8,1.00,7.100,55.0 -19.7,1.00,6.570,55.4 -19.3,1.00,6.570,54.8 -19.0,1.00,7.040,48.0 -18.2,1.00,7.730,42.8 -18.2,1.00,7.300,40.2 -18.1,1.00,7.300,40.2 -17.8,1.00,7.300,41.6 -17.2,1.00,7.420,41.0 -17.5,1.00,7.790,44.8 -16.5,1.00,7.410,34.2 -16.5,1.00,7.250,40.6 -16.8,1.00,6.830,40.4 -17.3,1.00,6.270,40.4 -18.4,1.00,6.280,44.3 -19.4,1.00,4.950,44.6 -19.9,1.00,4.310,50.6 -20.3,1.00,3.840,43.2 -20.6,1.00,3.730,47.9 -20.8,1.00,3.930,48.9 -20.8,1.00,4.380,49.4 -20.0,1.00,5.990,16.4 -19.5,1.00,6.640,29.2 -19.4,1.00,7.420,36.2 -19.1,1.00,7.350,41.1 -19.6,1.00,7.260,55.9 -19.6,1.00,7.060,55.2 -19.7,1.00,6.550,58.2 -19.5,1.00,6.470,57.5 -19.2,1.00,6.430,48.3 -19.1,1.00,6.030,53.7 -18.7,1.00,5.970,44.7 -18.5,1.00,6.240,49.5 -18.4,1.00,5.860,45.0 -17.9,1.00,5.720,36.9 -17.8,1.00,5.560,40.7 -17.8,1.00,4.540,31.8 -17.8,1.00,4.050,37.9 -19.1,1.00,3.410,51.9 -19.6,1.00,1.910,38.6 -19.9,1.00,0.930,41.1 -20.1,1.00,0.440,58.2 -20.4,1.00,0.280,84.0 -20.5,1.00,0.360,109.8 -20.4,1.00,1.520,119.2 -20.3,1.00,1.910,87.0 -20.1,1.00,2.450,49.0 -20.1,1.00,3.500,23.3 -19.4,1.00,4.480,9.9 -19.2,1.00,6.640,23.8 -18.8,1.00,6.860,28.6 -18.6,1.00,6.320,31.3 -18.1,1.00,6.690,26.4 -17.6,1.00,6.670,22.9 -17.4,1.00,7.200,20.6 -16.6,1.00,8.800,18.7 -16.2,1.00,9.550,17.0 -15.8,1.00,10.120,20.1 -15.7,1.00,10.570,20.7 -16.3,1.00,10.380,18.2 -17.4,1.00,9.530,15.4 -18.8,1.00,11.880,20.3 -19.5,1.00,12.830,20.9 -19.3,1.00,13.860,16.4 -18.5,1.00,14.250,16.3 -17.8,1.00,14.460,15.0 -16.9,1.00,15.380,20.6 -15.8,1.00,15.290,16.1 -14.6,1.01,15.630,21.4 -13.3,1.01,17.760,27.2 -12.1,1.01,18.120,28.6 -10.6,1.01,19.020,30.0 -9.5,1.01,19.350,30.9 -8.4,1.01,17.170,32.1 -7.4,1.01,17.130,34.7 -6.9,1.01,16.190,34.4 -6.7,1.01,15.860,36.3 -6.4,1.01,15.380,35.4 -6.3,1.01,15.190,36.8 -6.2,1.01,14.960,36.8 -5.9,1.01,14.540,34.8 -5.7,1.01,13.860,35.5 -5.9,1.01,13.670,35.3 -6.0,1.01,12.340,33.4 -6.4,1.01,11.640,30.1 -7.3,1.01,10.330,27.2 -8.7,1.01,9.470,27.4 -9.8,1.01,8.800,26.6 -10.7,1.01,8.130,25.9 -11.3,1.01,7.760,24.8 -11.7,1.01,7.520,24.1 -11.7,1.01,8.200,22.7 -11.0,1.01,9.040,24.2 -10.8,1.01,9.200,30.0 -10.9,1.00,8.930,33.5 -11.7,1.00,8.670,41.7 -11.9,1.00,7.690,51.7 -12.4,1.00,7.610,55.8 -12.9,1.00,6.610,70.2 -13.4,1.00,6.370,66.3 -12.9,1.00,6.060,51.1 -13.8,1.00,5.670,70.2 -14.1,1.00,6.150,72.1 -14.2,1.00,5.320,79.2 -14.5,1.00,5.760,70.1 -14.5,1.00,5.700,60.9 -14.8,1.00,5.830,76.3 -15.1,1.00,6.230,74.5 -15.2,1.00,6.530,73.5 -15.3,1.00,6.660,74.2 -15.5,1.00,7.190,73.3 -15.9,1.00,6.680,83.6 -16.2,1.00,6.460,83.4 -16.5,1.00,6.980,91.7 -16.9,1.00,6.720,103.2 -16.9,1.00,6.980,99.6 -17.3,1.00,6.740,93.6 -17.7,0.99,7.240,100.8 -17.7,0.99,6.430,103.4 -18.8,0.99,7.500,116.7 -18.9,0.99,6.990,116.6 -19.2,0.99,6.280,114.7 -19.2,0.99,6.060,92.9 -19.1,0.99,5.530,74.2 -19.2,0.99,4.180,60.4 -18.2,0.99,6.510,55.9 -17.9,0.99,6.450,53.5 -18.0,0.99,6.570,52.1 -18.6,0.99,6.180,61.9 -18.9,0.99,5.850,68.8 -19.4,0.99,5.780,73.9 -19.3,0.99,6.260,78.6 -19.6,0.99,6.300,86.2 -19.7,0.99,6.340,89.7 -20.1,0.99,6.260,99.6 -20.3,0.99,6.220,109.0 -20.4,0.99,6.530,113.5 -20.5,0.99,7.050,117.7 -20.4,0.99,7.160,130.7 -20.6,0.99,8.690,125.8 -20.7,0.99,8.120,131.2 -20.8,0.99,8.800,130.0 -21.0,0.99,8.880,134.2 -20.9,0.99,8.630,137.6 -21.0,0.99,8.700,141.0 -21.4,0.99,7.650,147.3 -21.5,0.99,8.240,151.0 -21.8,0.99,7.790,148.8 -22.0,0.99,8.060,145.2 -22.0,0.99,8.610,154.8 -22.1,0.99,10.030,155.8 -22.2,0.99,10.070,157.2 -22.1,0.99,9.660,151.5 -22.2,0.99,10.350,150.0 -22.3,0.99,9.230,147.6 -22.3,0.99,9.750,145.3 -22.2,0.99,9.490,142.8 -22.3,0.99,9.600,144.7 -22.5,0.99,10.020,146.7 -22.6,0.99,9.880,149.7 -22.6,0.99,9.170,149.0 -22.6,0.99,9.210,150.4 -22.7,0.99,9.240,152.1 -22.8,0.99,10.110,151.4 -23.0,0.99,11.380,152.9 -22.9,0.99,11.610,153.6 -23.1,0.99,11.770,160.2 -23.2,0.99,11.280,164.6 -23.3,0.99,11.230,171.0 -23.3,0.99,11.130,169.8 -23.3,0.99,10.490,171.3 -23.4,0.99,11.010,176.0 -23.6,0.99,10.670,182.8 -23.6,0.99,11.050,180.6 -23.5,0.99,10.400,184.8 -23.7,0.99,11.130,186.1 -23.5,0.99,9.860,187.4 -23.4,0.99,8.460,191.3 -23.3,0.99,8.180,189.1 -23.4,0.99,7.360,196.0 -23.3,0.99,6.280,199.0 -23.4,0.99,6.280,200.1 -23.8,0.99,8.340,202.9 -23.7,0.99,7.740,201.2 -23.6,0.99,6.880,203.2 -23.6,0.99,6.910,206.2 -23.9,0.99,6.650,216.6 -23.6,0.99,4.400,205.5 -23.8,0.99,4.690,211.5 -23.3,0.99,4.120,211.0 -23.6,0.99,4.180,216.0 -23.3,0.99,3.380,209.3 -23.2,0.99,4.710,186.5 -23.4,0.99,3.180,202.0 -23.1,0.99,3.260,194.9 -23.1,0.99,2.670,210.1 -22.9,0.99,1.710,260.8 -23.5,0.99,3.640,278.7 -22.8,0.99,3.030,301.8 -22.4,0.99,3.070,334.9 -22.3,0.99,4.140,359.7 -22.1,0.99,5.350,5.6 -21.9,0.99,5.910,358.0 -20.5,0.99,10.290,34.8 -19.9,0.99,10.680,46.0 -19.7,0.99,10.260,51.6 -20.3,0.99,10.270,59.2 -20.9,0.99,10.500,61.9 -21.4,0.99,11.450,62.8 -20.9,0.99,10.190,47.9 -20.8,0.99,10.870,49.5 -20.6,0.99,11.850,52.6 -20.6,0.99,12.080,54.6 -21.0,0.99,12.530,57.6 -20.9,0.99,12.410,56.1 -20.5,0.99,12.970,61.4 -19.9,0.99,12.910,62.2 -19.5,0.99,12.850,64.7 -19.2,0.99,13.420,64.6 -18.9,0.99,13.190,67.5 -18.7,0.99,13.450,72.9 -18.6,0.99,13.140,72.5 -18.4,0.99,14.800,72.9 -18.2,0.99,13.940,73.8 -17.7,0.99,13.270,69.4 -17.5,0.99,13.420,70.3 -17.6,0.99,12.900,75.5 -17.1,0.99,12.650,76.1 -17.1,0.99,11.920,82.0 -17.2,0.99,10.550,78.8 -17.1,0.99,11.080,77.0 -17.1,0.99,9.650,73.7 -17.0,0.99,10.260,70.2 -17.4,0.99,9.140,72.5 -17.6,0.99,9.130,73.0 -17.9,0.99,9.700,70.4 -18.1,0.99,9.900,76.0 -18.3,0.99,10.220,80.2 -18.3,0.99,10.130,85.2 -18.2,0.99,10.240,86.2 -18.1,0.99,10.410,87.7 -18.2,0.99,10.370,90.1 -18.4,0.99,9.620,92.8 -18.5,0.99,9.140,99.3 -18.7,0.99,9.100,105.0 -18.7,0.99,8.950,105.9 -18.8,0.99,8.680,104.8 -18.9,0.99,8.490,106.8 -19.0,0.99,8.470,107.5 -19.2,0.99,8.290,112.5 -19.4,0.99,8.610,113.1 -19.5,0.99,8.830,113.0 -19.7,0.99,9.040,109.3 -19.9,0.99,9.060,111.8 -20.1,0.99,8.850,110.4 -20.3,0.99,8.930,109.7 -20.4,0.99,9.670,107.5 -20.6,0.99,10.220,110.4 -20.7,0.99,10.580,111.2 -20.8,0.99,10.810,114.2 -20.9,0.99,10.520,118.5 -21.2,0.99,11.450,113.8 -21.3,0.99,11.130,118.6 -21.5,0.99,11.460,122.1 -21.6,0.99,10.990,127.7 -21.7,0.99,11.130,129.7 -21.8,0.99,11.080,128.6 -21.9,0.99,11.340,131.2 -22.0,0.99,10.980,132.5 -22.1,0.99,10.780,138.3 -22.1,0.99,10.150,135.7 -22.1,0.99,10.350,127.1 -22.2,0.99,11.150,143.4 -22.2,0.99,10.390,135.6 -22.2,0.99,10.590,139.0 -22.2,0.99,10.370,138.7 -22.3,0.99,9.940,135.4 -22.3,0.99,9.900,138.7 -22.3,0.99,8.920,135.3 -22.3,0.99,8.710,136.2 -22.4,0.99,8.160,137.0 -22.2,0.99,7.120,125.0 -22.1,0.99,7.590,115.6 -22.3,0.99,8.560,120.8 -22.2,0.99,8.200,127.9 -22.1,0.99,8.280,129.3 -22.2,0.99,8.220,123.7 -22.4,0.99,7.610,126.4 -22.4,0.99,8.220,125.1 -22.4,0.99,7.560,130.1 -22.4,0.99,8.310,128.7 -22.4,0.99,7.130,118.3 -22.1,0.99,9.000,122.2 -22.1,0.99,8.320,135.8 -22.3,1.00,7.230,114.9 -22.1,1.00,6.850,114.9 -21.8,1.00,7.070,109.2 -21.8,1.00,7.480,119.2 -22.0,1.00,5.470,112.3 -21.6,1.00,5.890,70.5 -21.4,1.00,7.000,51.6 -20.5,1.00,9.200,39.4 -20.5,1.00,8.820,45.1 -20.4,1.00,7.310,8.3 -17.8,1.00,9.360,341.8 -16.4,1.00,11.010,337.1 -15.6,1.00,11.530,342.1 -14.8,1.00,11.280,345.3 -13.6,1.00,12.500,349.4 -13.0,1.00,12.640,352.9 -12.7,1.00,12.360,349.3 -12.3,1.00,12.030,349.2 -11.8,1.00,12.320,349.7 -11.6,1.00,12.570,351.5 -10.9,1.00,12.560,351.5 -10.5,1.00,11.540,350.5 -10.3,1.00,12.740,350.3 -10.3,1.00,12.800,353.0 -10.3,1.00,12.350,358.2 -10.3,1.00,12.560,356.7 -10.2,1.00,13.260,357.4 -10.4,1.00,11.970,4.8 -10.4,1.00,11.840,2.0 -10.1,1.00,12.090,5.0 -10.0,1.00,13.530,4.9 -10.0,1.00,12.610,8.2 -9.8,1.00,13.570,7.2 -9.8,1.00,13.830,8.4 -9.7,1.00,13.970,14.3 -9.4,1.00,14.380,15.9 -9.3,1.00,15.000,19.1 -9.3,1.00,13.910,19.2 -9.1,1.00,14.310,21.8 -8.9,1.00,14.790,26.2 -9.0,1.00,14.640,29.0 -9.0,1.00,14.550,29.4 -8.9,1.00,13.520,30.0 -9.1,1.00,15.290,35.8 -9.1,1.00,14.760,36.8 -9.2,1.00,14.850,38.9 -9.4,1.00,15.050,40.7 -9.2,1.00,14.790,40.5 -9.0,1.00,14.920,40.9 -9.1,1.00,15.490,42.9 -8.9,1.00,16.070,45.5 -8.4,1.00,15.880,46.0 -7.9,1.00,15.920,44.6 -7.1,1.00,13.620,37.5 -6.6,1.00,12.520,34.6 -6.2,1.00,11.790,29.2 -6.4,1.00,10.890,26.8 -6.5,1.00,9.780,23.0 -6.7,1.00,9.750,17.7 -7.3,1.00,9.340,18.1 -8.2,1.00,9.460,20.5 -8.1,1.00,9.860,22.7 -8.2,1.00,10.280,22.1 -8.4,1.00,10.620,29.3 -8.7,1.00,11.020,35.3 -9.0,1.00,11.080,42.3 -9.5,1.00,10.450,53.3 -9.5,1.00,10.190,52.8 -9.4,1.00,10.480,51.5 -9.5,1.00,10.070,45.2 -9.1,1.00,10.720,47.0 -9.1,1.00,10.150,46.5 -8.7,1.00,11.140,45.3 -7.8,1.00,10.930,36.9 -7.8,1.00,10.330,37.1 -6.9,1.00,10.140,18.6 -6.1,1.00,12.280,20.9 -6.5,1.00,10.940,14.7 -6.1,0.99,11.910,17.9 -5.7,0.99,12.670,11.1 -6.5,0.99,12.300,18.6 -5.9,0.99,12.900,7.9 -5.9,0.99,13.020,356.9 -5.6,0.99,12.930,354.5 -6.4,0.99,12.180,0.9 -6.2,0.99,13.350,358.5 -6.5,0.99,12.700,342.4 -6.6,0.99,12.640,355.9 -6.4,0.99,12.660,1.0 -6.3,0.99,13.150,359.9 -6.3,0.99,13.150,356.8 -6.2,0.99,13.280,354.6 -6.0,0.99,13.750,350.2 -5.8,0.99,11.780,337.7 -5.8,0.99,14.490,342.1 -5.8,0.99,15.140,341.8 -5.6,0.99,13.440,342.3 -5.5,0.99,12.740,340.1 -5.1,0.99,14.290,339.6 -4.9,0.99,13.460,337.2 -4.8,0.99,13.300,335.5 -4.8,0.99,13.600,331.5 -4.9,0.99,13.470,331.5 -4.9,0.99,13.790,325.9 -5.0,0.99,14.260,325.8 -5.0,0.99,14.580,322.5 -5.1,0.99,14.490,324.4 -5.0,1.00,14.340,324.5 -5.2,1.00,15.080,325.6 -5.2,1.00,15.160,326.5 -5.2,1.00,15.720,332.6 -5.4,1.00,16.280,336.6 -6.1,1.00,15.630,342.3 -6.4,1.00,15.510,341.8 -6.6,1.00,16.330,349.3 -6.5,1.00,17.390,355.9 -6.1,1.00,16.870,359.2 -5.6,1.00,15.790,1.9 -5.2,1.00,14.300,6.3 -4.9,1.00,13.970,9.0 -4.5,1.00,13.930,12.4 -4.2,1.00,13.910,13.1 -3.6,1.00,13.470,13.4 -3.3,1.00,12.890,15.7 -3.1,1.00,11.930,14.1 -3.4,1.00,10.290,10.0 -3.8,1.00,10.230,2.3 -4.1,1.00,8.430,352.0 -5.2,1.00,8.290,348.7 -5.8,1.00,8.270,344.5 -6.6,1.00,7.820,343.1 -7.0,1.00,8.040,344.9 -7.4,1.00,8.470,346.5 -7.7,1.00,7.690,358.2 -7.1,1.00,7.450,4.3 -6.8,1.00,7.390,8.1 -6.8,1.00,7.820,9.4 -6.9,1.00,7.770,18.7 -7.1,1.00,7.000,22.7 -7.5,1.00,6.770,30.0 -7.7,1.00,6.590,32.1 -8.0,1.00,6.780,33.1 -8.6,1.00,6.190,46.9 -9.1,1.00,5.540,49.4 -9.5,1.00,5.500,55.1 -10.0,1.00,5.180,68.6 -10.4,1.00,5.080,67.3 -10.6,1.00,5.060,71.7 -10.8,1.00,5.250,67.5 -11.0,1.00,5.270,62.5 -11.3,1.00,5.320,66.0 -11.4,1.00,5.580,67.4 -11.6,1.00,5.650,68.0 -11.5,1.00,6.340,65.6 -11.5,1.00,6.930,68.7 -11.5,1.00,6.690,59.7 -11.6,1.00,5.880,53.6 -11.8,1.00,5.130,48.8 -11.7,1.00,5.530,52.8 -11.7,1.00,6.640,53.5 -11.5,1.01,6.810,45.6 -11.3,1.01,6.870,43.7 -11.4,1.01,6.800,45.8 -11.6,1.01,6.570,44.4 -11.7,1.01,6.520,48.1 -11.8,1.01,6.470,47.1 -11.8,1.01,6.320,48.6 -11.9,1.01,6.600,49.1 -11.8,1.01,6.910,54.6 -12.0,1.01,6.710,53.8 -11.9,1.01,7.230,54.3 -11.8,1.01,7.440,53.2 -11.7,1.01,7.120,49.0 -11.7,1.01,7.430,48.7 -11.5,1.01,7.470,49.4 -11.5,1.01,7.330,48.6 -12.0,1.01,6.720,52.7 -12.2,1.01,6.520,49.5 -12.7,1.01,6.420,51.7 -12.9,1.00,6.600,61.9 -13.2,1.00,6.690,61.6 -13.6,1.00,6.410,63.8 -13.5,1.00,6.790,73.0 -13.8,1.00,6.090,74.1 -14.0,1.00,6.070,80.4 -14.3,1.00,5.340,87.4 -14.6,1.00,4.870,93.5 -14.8,1.00,4.680,94.5 -15.0,1.00,5.350,110.5 -15.2,1.00,5.350,106.7 -15.3,1.00,4.840,106.7 -15.6,1.00,4.390,110.4 -15.8,1.00,3.680,113.7 -15.8,1.00,4.010,101.2 -15.9,1.00,4.040,88.4 -16.0,1.00,3.500,84.9 -16.0,1.00,3.350,78.9 -16.0,1.00,4.250,76.9 -16.2,1.00,4.310,82.1 -16.1,1.00,4.820,85.2 -16.4,1.00,4.900,92.5 -16.5,1.00,4.910,90.5 -16.6,1.00,5.530,98.6 -16.6,1.00,5.390,104.1 -16.6,1.00,5.840,107.7 -16.8,1.00,5.430,114.3 -16.9,1.00,5.490,124.3 -16.7,1.00,5.930,129.7 -16.8,1.00,6.080,135.9 -16.9,1.00,6.150,139.5 -17.1,1.00,5.560,142.3 -17.2,1.00,5.380,147.3 -17.3,1.00,5.380,148.8 -17.4,1.00,4.740,153.8 -17.4,1.00,4.520,147.0 -17.5,1.00,4.180,147.7 -17.5,1.00,4.040,130.8 -17.5,1.00,4.540,121.5 -17.5,1.00,4.830,119.7 -17.4,1.00,5.220,114.1 -17.5,1.00,5.820,113.0 -17.8,1.00,5.390,119.3 -17.7,1.00,6.110,116.0 -17.8,1.00,6.480,118.6 -18.0,1.00,5.690,133.8 -18.1,1.00,6.050,135.9 -18.2,0.99,5.820,146.5 -18.3,0.99,6.500,147.4 -18.4,0.99,6.820,151.1 -18.4,0.99,7.090,161.2 -18.4,0.99,7.520,162.9 -18.7,0.99,8.530,167.9 -19.0,0.99,8.980,172.8 -19.3,0.99,8.670,178.4 -19.6,0.99,9.430,187.3 -19.6,0.99,9.040,194.2 -19.8,0.99,8.270,203.1 -19.9,0.99,7.540,216.9 -19.9,0.99,8.530,223.5 -20.1,0.99,8.380,227.3 -20.1,0.99,9.110,223.6 -19.6,0.99,8.350,231.5 -19.1,0.99,6.720,237.4 -18.8,0.99,6.430,249.9 -18.2,0.99,6.430,253.0 -17.7,0.99,8.730,247.3 -18.1,0.99,7.710,258.6 -18.1,0.99,6.010,251.2 -18.7,0.99,4.660,239.5 -19.9,0.98,6.790,241.6 -20.4,0.98,9.670,235.5 -20.2,0.98,9.220,230.9 -19.9,0.98,8.450,227.0 -19.9,0.98,8.430,222.6 -19.7,0.98,8.370,225.3 -19.6,0.98,7.810,224.3 -19.5,0.98,8.440,225.2 -19.5,0.98,7.620,215.8 -19.4,0.98,7.760,218.8 -19.5,0.98,8.370,220.3 -19.4,0.98,8.660,223.1 -19.6,0.98,9.070,217.2 -20.3,0.98,12.350,229.0 -20.4,0.98,10.830,218.3 -20.2,0.98,9.490,211.4 -20.5,0.98,10.050,220.4 -20.2,0.98,9.950,214.9 -20.1,0.98,9.170,216.5 -20.2,0.98,8.480,215.7 -20.4,0.98,9.110,215.0 -20.9,0.98,10.710,211.7 -20.9,0.98,9.840,213.1 -21.2,0.98,9.130,211.0 -21.3,0.98,9.490,212.3 -21.3,0.98,9.170,208.3 -21.4,0.98,9.460,207.8 -21.4,0.98,9.190,210.8 -21.3,0.98,9.640,208.2 -21.2,0.98,9.620,203.4 -21.2,0.98,10.540,203.4 -21.5,0.98,10.630,198.0 -21.3,0.98,9.920,196.5 -21.5,0.98,10.570,195.0 -21.7,0.98,11.230,199.1 -21.6,0.98,10.320,191.6 -21.8,0.98,10.650,194.3 -21.7,0.98,10.120,192.5 -21.8,0.98,10.250,189.8 -21.9,0.98,10.360,188.2 -22.0,0.98,10.360,187.7 -22.0,0.98,9.520,187.0 -21.9,0.98,9.250,187.1 -22.1,0.98,9.310,189.5 -22.4,0.98,10.250,188.5 -22.7,0.98,10.400,183.8 -22.4,0.98,9.610,176.5 -21.9,0.98,9.330,167.0 -21.8,0.98,9.020,163.5 -22.2,0.98,9.960,169.3 -21.5,0.98,9.360,159.9 -21.8,0.98,10.630,163.0 -21.8,0.98,10.550,164.9 -21.8,0.98,11.080,166.5 -21.6,0.99,9.400,164.8 -21.1,0.99,10.040,172.5 -20.8,0.99,10.050,166.7 -21.0,0.99,10.870,170.3 -21.1,0.99,10.650,167.8 -21.2,0.99,10.940,168.6 -21.3,0.99,10.500,166.4 -21.6,0.99,11.100,172.3 -22.6,0.99,11.360,176.3 -22.9,0.99,11.230,176.3 -22.7,0.99,11.090,177.1 -22.4,0.99,9.930,172.8 -22.1,0.99,9.370,173.6 -21.9,0.99,8.150,163.9 -21.7,0.99,8.270,163.3 -21.4,0.99,7.530,156.5 -21.9,0.99,7.960,160.5 -22.2,0.99,8.450,160.2 -23.0,0.99,9.190,165.6 -22.3,0.99,8.230,163.0 -22.9,0.99,7.860,174.8 -21.8,0.99,7.490,166.7 -22.7,0.99,9.510,164.5 -15.9,0.99,8.570,343.2 -14.5,0.99,9.680,346.4 -13.7,0.99,10.100,357.8 -13.0,0.99,9.620,359.7 -12.7,0.99,9.660,4.8 -12.2,0.99,9.820,1.3 -11.0,0.99,8.750,353.3 -10.3,0.99,8.990,0.1 -10.0,0.99,9.570,353.5 -9.4,0.99,9.680,358.7 -8.7,0.99,10.130,0.9 -8.4,0.99,10.940,350.7 -7.9,0.99,11.160,352.2 -7.7,0.99,10.540,341.1 -7.3,0.99,12.070,342.0 -7.1,0.99,12.750,342.1 -6.9,0.99,12.630,345.9 -6.6,0.99,13.140,342.9 -6.5,1.00,12.750,346.4 -6.5,1.00,12.690,348.6 -6.4,1.00,12.540,349.1 -6.2,1.00,13.340,354.7 -6.0,1.00,13.370,359.5 -5.8,1.00,13.280,357.8 -5.3,1.00,13.340,358.3 -5.1,1.00,14.450,1.0 -4.9,1.00,16.340,2.0 -4.8,1.00,15.150,2.2 -4.8,1.00,12.920,3.2 -4.2,1.00,13.710,6.7 -3.6,1.00,14.360,9.5 -3.1,1.00,15.290,7.6 -2.9,1.00,15.340,10.9 -2.8,1.00,14.120,12.1 -2.6,1.00,15.500,12.7 -2.4,1.00,12.860,19.0 -2.4,1.00,11.300,21.7 -2.2,1.00,11.540,14.5 -1.9,1.00,12.090,14.0 -2.0,1.00,11.610,13.5 -2.1,1.00,10.550,7.8 -2.3,1.00,10.510,8.1 -3.1,1.00,9.680,8.5 -3.6,1.00,9.150,7.3 -3.7,1.00,9.190,7.7 -3.9,1.00,8.850,4.0 -4.1,1.00,8.530,6.5 -4.2,1.00,8.570,9.3 -4.1,1.00,8.490,10.9 -4.3,1.00,7.910,11.7 -4.4,1.00,7.640,9.5 -4.6,1.00,7.510,7.7 -4.7,1.00,7.620,4.8 -4.8,1.00,7.440,7.3 -4.7,1.00,7.400,5.8 -4.6,1.00,7.370,5.4 -4.6,1.00,7.780,3.3 -4.8,1.00,7.410,4.4 -5.2,1.00,6.970,7.2 -5.4,1.00,6.950,11.7 -5.7,1.00,7.150,6.8 -5.7,1.00,6.960,5.9 -5.7,1.00,7.370,5.8 -6.1,1.00,7.210,355.1 -5.9,1.00,6.400,1.1 -6.4,0.99,6.100,3.6 -7.1,0.99,7.040,0.0 -7.4,0.99,6.800,355.8 -7.5,0.99,6.780,0.4 -7.8,0.99,6.420,359.6 -8.0,0.99,6.270,4.5 -8.1,0.99,6.050,10.1 -8.1,0.99,6.430,13.0 -8.5,0.99,6.390,10.8 -8.7,0.99,6.720,15.7 -9.3,0.99,6.220,13.5 -9.1,0.99,6.370,14.0 -9.6,0.99,6.380,20.3 -9.3,0.99,6.990,20.9 -9.7,0.99,7.340,27.0 -10.3,0.99,7.390,29.6 -10.3,0.99,6.590,34.6 -10.2,0.99,6.970,34.5 -10.0,0.99,6.810,30.1 -10.2,0.99,7.120,31.1 -10.0,0.99,7.600,35.2 -9.5,0.99,9.390,28.9 -9.6,0.99,8.620,38.7 -9.8,0.99,8.000,29.3 -9.7,0.99,8.300,30.0 -9.5,0.99,8.220,27.8 -9.5,0.99,9.030,30.6 -9.1,0.99,8.940,18.4 -8.7,0.99,9.050,20.4 -8.4,0.99,9.710,15.2 -7.8,0.99,9.930,6.7 -7.0,0.99,11.570,1.7 -6.9,1.00,10.920,0.5 -6.6,1.00,11.760,358.7 -6.4,1.00,12.440,355.1 -6.0,1.00,13.040,354.2 -5.7,1.00,13.890,353.5 -5.2,1.00,14.240,356.5 -5.1,1.00,13.770,354.8 -5.0,1.00,14.390,354.3 -4.9,1.00,14.890,354.6 -4.1,1.00,14.850,359.1 -3.6,1.00,13.900,4.3 -3.0,1.00,13.050,9.8 -2.6,1.00,13.280,14.7 -2.5,1.00,12.630,17.7 -2.8,1.00,10.950,15.2 -3.3,1.00,9.640,11.3 -4.0,1.00,9.490,7.7 -5.3,1.00,9.030,9.2 -6.4,1.00,8.510,8.4 -7.1,1.00,8.560,8.3 -7.7,1.00,7.990,14.4 -8.0,1.00,7.720,14.3 -8.0,1.00,7.890,17.8 -7.5,1.00,8.060,23.1 -7.4,1.00,8.200,28.0 -7.3,1.00,7.950,28.6 -7.6,1.00,7.460,33.0 -7.9,1.00,7.040,30.1 -8.1,1.00,7.320,31.6 -7.4,1.00,7.800,25.1 -7.4,1.00,7.990,24.6 -7.5,1.00,8.310,23.7 -7.4,1.00,8.020,25.9 -7.5,1.00,7.840,27.2 -7.7,1.00,7.390,32.6 -8.2,1.00,6.990,38.8 -8.7,1.00,6.340,34.0 -8.4,1.00,6.900,29.4 -8.4,1.00,5.960,25.2 -8.5,1.00,5.640,25.3 -8.5,1.00,6.150,21.7 -9.1,1.00,4.800,8.3 -9.7,1.00,5.190,4.4 -10.2,1.00,6.150,6.6 -10.2,1.00,6.830,11.1 -10.3,1.00,7.790,13.5 -10.5,1.00,8.220,16.9 -10.8,1.00,8.320,21.3 -10.7,1.01,9.390,20.4 -10.1,1.01,10.610,21.8 -9.7,1.01,11.290,25.5 -9.3,1.01,11.150,30.4 -9.2,1.01,11.140,33.0 -8.6,1.01,11.160,31.1 -8.3,1.01,11.130,35.6 -8.1,1.01,11.400,34.6 -7.8,1.01,10.970,35.2 -7.2,1.01,12.120,35.2 -7.1,1.01,11.120,35.6 -6.9,1.01,10.840,38.6 -7.0,1.01,10.330,39.3 -6.4,1.01,10.220,38.4 -7.3,1.01,9.830,41.1 -6.7,1.01,8.770,30.9 -7.3,1.01,7.940,26.2 -8.7,1.01,7.200,27.3 -9.9,1.01,6.570,25.8 -10.7,1.00,6.260,28.8 -11.3,1.00,5.660,33.7 -11.7,1.00,6.180,32.5 -11.9,1.00,6.390,35.3 -11.3,1.00,7.420,31.4 -10.8,1.00,7.530,33.5 -11.2,1.00,6.870,44.9 -11.8,1.00,6.830,68.5 -12.2,1.00,6.760,80.5 -12.4,1.00,6.710,89.4 -12.7,1.00,6.010,90.8 -13.1,1.00,5.740,102.7 -13.8,1.00,6.190,116.1 -13.9,1.00,5.620,106.3 -14.5,1.00,6.150,124.0 -14.7,1.00,5.950,115.6 -15.1,1.00,5.990,122.2 -15.4,1.00,6.810,119.2 -15.8,1.00,6.810,119.1 -16.0,1.00,7.190,111.9 -16.5,0.99,7.740,114.4 -17.2,0.99,8.120,126.4 -17.8,0.99,9.330,130.3 -18.0,0.99,9.590,131.3 -18.5,0.99,10.330,140.3 -18.8,0.99,12.400,145.6 -19.0,0.99,11.100,147.7 -19.7,0.99,10.980,155.5 -19.7,0.99,12.650,174.4 -19.8,0.99,12.370,178.7 -20.2,0.99,11.680,187.7 -20.6,0.99,11.440,203.1 -19.0,0.99,9.790,249.4 -17.5,0.99,8.560,263.6 -16.5,0.99,8.320,273.6 -16.2,0.99,7.400,273.3 -15.8,0.99,6.800,295.5 -15.0,0.99,5.340,302.6 -15.0,0.99,5.120,293.3 -15.3,0.99,6.040,285.3 -14.6,0.99,5.370,280.6 -13.9,0.99,6.390,287.5 -13.0,0.99,6.450,307.9 -13.1,0.99,7.570,319.1 -13.3,0.99,8.300,317.7 -13.3,0.99,7.670,319.4 -14.0,0.99,10.480,320.2 -13.7,0.99,12.850,326.9 -11.1,0.99,15.870,330.9 -10.2,0.99,15.480,339.4 -10.6,0.99,15.200,340.0 -10.4,0.99,15.100,344.9 -9.1,1.00,14.740,339.8 -7.9,1.00,15.880,345.8 -6.5,1.00,17.850,352.4 -6.3,1.00,14.060,356.3 -5.8,1.00,13.470,356.4 -5.2,1.00,15.170,1.4 -4.5,1.00,13.650,4.8 -4.2,1.00,13.350,6.8 -4.0,1.00,13.080,6.7 -3.9,1.00,12.410,6.0 -3.8,1.00,11.750,6.6 -3.8,1.00,11.270,7.5 -3.7,1.00,10.570,7.9 -3.7,1.00,9.850,8.6 -3.9,1.00,8.820,7.8 -4.3,1.00,7.140,5.7 -4.7,1.00,6.440,352.4 -5.4,1.00,5.990,346.9 -6.8,1.00,5.580,344.3 -8.1,1.00,6.150,343.0 -9.0,1.00,6.550,339.6 -9.7,1.00,6.510,339.4 -10.2,1.00,6.140,342.4 -10.5,1.00,6.070,344.7 -10.4,1.00,5.340,347.7 -10.3,1.00,5.050,350.3 -10.1,1.00,4.070,356.0 -10.2,1.00,3.880,358.5 -10.2,1.00,3.570,359.1 -10.2,1.00,3.230,0.3 -9.6,1.00,2.850,354.0 -9.2,1.00,2.480,354.3 -9.0,1.00,2.340,343.0 -9.0,1.00,2.200,346.5 -9.1,1.00,1.920,349.4 -9.1,1.00,1.930,348.2 -9.1,1.00,2.000,352.3 -9.1,1.00,1.570,11.1 -9.2,1.00,1.430,14.7 -9.5,1.00,0.910,11.5 -9.8,1.00,1.120,1.5 -10.3,1.00,0.620,19.7 -11.3,1.00,0.270,339.6 -11.8,1.00,0.620,232.1 -12.3,1.00,0.850,190.4 -12.6,1.00,1.050,195.5 -12.9,1.00,1.660,186.3 -13.1,1.00,2.200,183.4 -13.1,1.00,2.360,185.9 -13.1,1.00,2.540,185.3 -13.1,1.00,2.390,194.4 -13.2,1.00,2.350,191.4 -13.2,1.00,2.370,193.8 -13.3,1.00,2.420,192.0 -13.4,1.00,2.450,179.4 -13.0,1.00,1.230,233.7 -12.7,1.00,1.780,257.7 -12.7,1.00,2.770,269.1 -12.3,1.00,3.710,274.3 -11.8,1.00,4.070,276.2 -12.0,1.00,3.670,283.8 -12.2,1.00,2.930,296.1 -12.3,1.00,2.680,304.5 -12.9,1.00,2.890,305.6 -13.3,1.00,2.870,311.6 -13.5,1.00,1.820,296.9 -13.5,1.00,1.370,316.3 -14.2,1.00,1.160,298.6 -14.6,1.00,0.820,5.2 -15.0,1.00,0.250,321.4 -15.3,1.00,0.160,240.4 -15.4,1.00,0.330,332.4 -15.3,1.00,0.360,81.2 -15.4,1.00,0.300,259.4 -15.1,1.00,0.550,154.1 -15.0,1.00,1.010,163.4 -14.7,1.00,1.500,189.7 -14.7,1.00,1.530,204.6 -14.6,1.00,1.350,201.0 -14.5,1.00,1.810,197.2 -14.5,1.00,1.620,205.3 -14.4,1.00,1.430,207.0 -14.1,1.00,0.890,186.3 -13.8,1.00,0.500,149.0 -13.7,1.00,0.030,318.2 -13.8,1.00,0.800,90.1 -14.0,1.00,1.360,95.9 -14.3,1.00,2.170,97.4 -14.6,1.00,2.770,91.1 -14.9,1.00,3.290,91.2 -15.2,1.00,3.520,96.7 -15.8,1.00,4.220,122.0 -16.0,1.00,4.850,125.5 -16.2,1.00,5.590,127.0 -16.3,1.00,6.530,134.2 -16.5,1.00,7.910,140.5 -16.5,1.00,8.040,141.8 -16.7,1.00,8.430,145.7 -16.9,1.00,8.990,144.3 -17.2,1.00,9.520,149.6 -17.5,1.00,10.750,151.0 -17.7,1.00,10.760,157.3 -17.8,1.00,10.090,160.8 -18.0,1.00,9.470,160.1 -18.3,0.99,10.290,160.8 -18.4,0.99,9.880,161.1 -18.8,0.99,10.240,162.6 -19.2,0.99,10.400,166.8 -19.3,0.99,10.020,162.7 -19.2,0.99,11.130,160.8 -19.7,0.99,10.950,163.1 -19.7,0.99,10.610,162.2 -19.9,0.99,10.820,160.2 -19.9,0.99,11.090,159.2 -20.2,0.99,11.000,162.0 -20.3,0.99,11.190,161.7 -19.9,0.99,10.950,160.3 -20.0,0.99,11.520,161.3 -20.3,0.99,12.240,163.3 -20.3,0.99,14.030,165.8 -20.3,0.99,14.010,166.3 -20.2,0.99,13.110,164.1 -20.2,0.99,13.070,164.4 -20.1,0.99,13.380,164.7 -20.1,0.99,13.040,165.9 -20.2,0.99,13.620,164.3 -20.1,0.99,12.640,162.3 -20.2,0.99,12.300,164.6 -19.9,0.99,10.620,163.5 -19.8,0.99,9.060,167.6 -20.1,0.99,8.790,169.9 -20.2,0.99,9.910,166.5 -20.4,0.99,10.780,170.8 -20.4,0.99,11.400,169.0 -20.5,0.99,11.380,169.1 -20.9,0.99,12.410,161.4 -21.1,0.99,11.900,158.1 -21.2,0.99,11.060,154.9 -21.1,0.99,11.120,154.2 -21.3,0.99,10.200,153.4 -21.3,0.99,12.380,143.5 -20.4,0.99,12.490,140.3 -20.5,0.99,13.110,144.2 -20.8,0.99,13.070,145.9 -20.5,0.99,12.470,150.4 -20.4,0.99,11.910,151.1 -20.9,0.99,11.610,151.8 -21.0,0.98,13.170,149.4 -20.8,0.98,12.480,151.9 -20.7,0.98,13.900,154.2 -20.2,0.98,12.350,154.0 -20.2,0.98,12.920,156.0 -20.5,0.98,13.490,158.7 -21.2,0.98,14.470,161.5 -21.1,0.98,14.610,162.3 -21.1,0.98,14.210,166.7 -21.1,0.98,13.070,176.8 -21.0,0.98,11.550,175.7 -21.0,0.98,12.020,172.7 -21.0,0.98,11.630,183.0 -21.6,0.98,12.900,185.8 -21.5,0.98,13.150,188.7 -21.6,0.98,13.290,195.1 -21.6,0.98,13.090,197.5 -21.5,0.98,11.940,205.5 -21.8,0.98,13.300,209.1 -21.6,0.98,13.350,220.1 -21.5,0.98,13.070,218.5 -20.5,0.98,8.330,252.9 -19.0,0.98,6.660,335.1 -18.3,0.98,5.880,340.2 -17.8,0.98,5.950,349.5 -18.0,0.98,6.430,355.9 -18.1,0.98,4.740,10.3 -17.5,0.99,4.130,19.6 -17.7,0.99,3.740,15.1 -17.4,0.99,3.610,27.6 -17.1,0.99,4.020,16.4 -16.6,0.99,3.820,27.6 -16.6,0.99,3.670,28.9 -16.0,0.99,5.070,12.9 -15.9,0.99,5.310,8.3 -15.6,0.99,3.820,6.6 -14.9,0.99,7.090,347.8 -14.9,0.99,7.480,345.2 -13.6,0.99,8.870,336.3 -13.7,0.99,9.730,341.9 -13.0,0.99,11.240,338.4 -12.3,0.99,11.640,338.6 -11.9,0.99,11.620,342.4 -12.4,0.99,9.960,348.9 -12.7,1.00,11.410,349.2 -11.7,1.00,11.460,353.4 -10.0,1.00,12.920,351.4 -9.0,1.00,13.090,350.9 -7.9,1.00,13.740,353.9 -7.0,1.00,13.700,358.1 -6.3,1.00,14.180,1.7 -5.3,1.00,14.050,3.0 -4.8,1.00,13.500,7.1 -4.5,1.00,13.650,8.7 -4.2,1.00,13.510,11.1 -3.9,1.00,13.360,15.2 -3.6,1.00,13.070,18.5 -3.4,1.00,12.850,17.6 -3.3,1.00,12.500,18.9 -3.3,1.00,11.630,18.7 -3.6,1.00,10.020,17.6 -4.3,1.00,9.110,11.5 -5.0,1.01,9.000,2.9 -6.5,1.01,8.720,359.9 -7.9,1.01,8.430,0.7 -8.8,1.01,9.060,1.3 -9.4,1.01,9.440,2.9 -9.3,1.01,9.600,2.6 -9.1,1.01,10.660,7.5 -8.3,1.01,10.180,10.2 -8.0,1.01,10.140,16.1 -7.8,1.01,10.500,23.4 -7.7,1.01,10.320,25.9 -7.5,1.01,10.430,28.7 -7.4,1.01,9.890,33.6 -7.2,1.01,9.490,34.7 -7.1,1.01,9.370,33.8 -6.9,1.01,9.300,35.9 -6.9,1.01,8.980,37.9 -7.1,1.01,8.460,42.5 -7.2,1.01,8.970,44.6 -7.2,1.01,8.890,45.7 -7.4,1.01,9.000,47.5 -7.5,1.01,8.940,48.1 -7.7,1.01,8.790,47.8 -7.8,1.01,8.560,48.1 -7.9,1.01,8.320,50.1 -8.7,1.01,7.290,49.6 -9.3,1.01,6.630,55.5 -9.7,1.01,6.030,61.8 -10.2,1.00,5.920,64.2 -10.7,1.00,6.040,67.5 -11.1,1.00,6.340,74.2 -11.2,1.00,6.720,80.4 -11.5,1.00,6.900,87.2 -11.8,1.00,6.940,92.2 -12.0,1.00,7.120,97.9 -12.2,1.00,7.210,99.8 -12.3,1.00,7.060,100.9 -12.4,1.00,7.120,103.0 -12.6,1.00,6.690,102.7 -12.8,1.00,6.160,101.6 -12.8,1.00,6.100,97.9 -12.9,1.00,6.020,92.4 -13.0,1.00,6.170,90.6 -13.0,1.00,6.550,83.2 -13.0,1.00,6.920,81.3 -12.9,1.00,7.100,82.7 -12.9,1.00,6.950,82.8 -12.9,1.00,6.270,87.2 -12.9,1.00,7.210,72.4 -12.8,1.00,7.180,73.6 -12.7,1.00,6.620,73.8 -12.7,1.00,6.960,74.0 -12.8,1.00,7.100,78.9 -13.2,1.00,6.470,77.7 -13.5,1.00,7.150,74.5 -13.4,1.00,6.880,66.8 -13.5,1.00,6.830,59.5 -13.6,1.00,6.270,50.5 -13.3,1.00,6.890,45.9 -13.0,1.00,6.780,42.4 -12.8,1.00,6.810,45.7 -12.5,1.00,6.240,35.7 -11.8,1.00,7.780,34.7 -11.3,1.00,7.330,40.5 -11.3,1.00,7.210,46.6 -11.7,1.00,7.440,52.7 -11.9,1.00,7.780,51.1 -11.5,1.00,8.110,44.8 -11.3,1.00,7.540,45.1 -10.5,1.00,7.990,38.5 -10.5,1.00,7.790,45.6 -10.5,1.00,7.400,45.4 -10.7,1.00,6.890,44.4 -11.7,1.00,6.410,48.1 -12.3,1.00,6.520,54.3 -12.6,1.00,6.070,65.1 -12.9,1.00,5.230,77.0 -13.3,1.00,4.260,66.0 -13.5,1.00,4.080,55.4 -13.5,1.00,4.360,44.9 -13.4,1.00,5.150,34.0 -13.0,1.00,6.310,31.7 -12.9,1.00,6.860,37.1 -12.9,1.00,7.010,45.9 -13.0,1.00,6.400,48.5 -12.9,1.00,6.760,49.7 -12.7,1.00,6.900,47.4 -12.4,1.00,7.050,47.1 -12.3,1.00,7.460,51.7 -12.1,1.00,8.260,48.3 -11.9,1.00,8.730,49.0 -11.7,1.00,8.560,48.0 -11.6,1.00,8.630,49.3 -11.4,1.00,9.120,47.6 -11.3,1.00,7.870,51.3 -11.2,1.00,7.580,42.8 -11.0,1.00,7.390,39.8 -11.5,1.00,6.650,42.2 -11.9,1.00,6.510,42.5 -12.4,1.00,6.580,43.7 -12.9,1.00,6.550,40.9 -13.2,1.00,6.760,41.9 -13.8,1.00,6.910,42.2 -13.6,1.00,7.480,33.6 -13.3,1.00,8.250,34.9 -12.7,1.00,8.210,29.2 -12.5,1.00,8.430,40.9 -12.4,1.00,8.230,43.7 -12.2,1.00,8.200,46.3 -12.0,1.00,8.670,49.8 -11.8,1.00,8.490,44.8 -11.6,1.00,7.950,42.5 -11.4,1.00,7.650,41.1 -11.5,1.00,7.110,49.0 -11.8,1.00,6.410,55.0 -11.8,1.00,5.660,50.2 -11.8,1.00,5.660,44.2 -10.6,1.00,5.660,25.3 -10.4,1.00,5.210,26.7 -10.6,1.00,5.290,22.2 -10.6,1.00,4.830,17.2 -11.1,1.00,3.680,9.3 -11.8,1.00,2.720,12.3 -12.2,0.99,1.690,11.5 -12.5,0.99,1.280,325.3 -12.7,0.99,1.610,290.2 -12.9,0.99,1.620,302.8 -13.1,0.99,1.900,288.0 -13.2,0.99,1.890,293.4 -13.1,0.99,2.120,296.7 -12.9,0.99,2.210,301.4 -12.7,0.99,1.910,295.4 -12.7,0.99,2.160,290.6 -12.4,0.99,2.430,283.9 -12.2,0.99,3.160,278.6 -12.2,0.99,3.100,295.2 -12.3,0.99,3.050,277.1 -11.8,0.99,2.230,287.8 -12.0,0.99,1.810,285.2 -12.2,0.99,1.590,281.2 -12.0,0.99,0.830,283.7 -11.9,0.99,0.390,328.9 -12.3,0.99,0.570,344.7 -12.4,0.99,0.460,53.1 -12.5,0.99,1.150,36.0 -13.1,0.99,1.360,61.8 -13.6,0.99,1.480,66.4 -13.9,0.99,1.960,86.3 -14.3,0.99,2.040,107.6 -14.7,0.99,1.690,117.1 -14.8,0.99,1.610,96.9 -14.7,0.99,2.110,116.9 -14.6,0.99,2.250,80.2 -14.5,0.99,3.460,58.1 -14.5,1.00,2.660,55.2 -14.5,1.00,2.450,49.0 -15.1,1.00,2.550,62.6 -11.1,1.00,9.760,352.9 -10.2,1.00,9.800,352.1 -9.3,1.00,10.310,349.7 -8.6,1.00,9.870,350.4 -8.3,1.00,9.980,353.3 -8.0,1.00,9.750,355.3 -7.6,1.00,9.440,355.5 -7.2,1.00,9.410,351.5 -7.0,1.00,8.980,351.6 -6.8,1.00,8.010,343.1 -6.8,1.00,8.450,346.7 -6.9,1.00,8.350,344.6 -7.3,1.00,7.990,347.3 -7.8,1.00,7.980,346.8 -8.3,1.00,7.860,346.5 -8.7,1.00,7.420,349.0 -8.9,1.00,7.270,348.7 -8.9,1.00,7.110,357.2 -8.5,1.00,7.940,2.6 -8.2,1.00,8.340,7.6 -7.9,1.00,8.030,6.9 -7.7,1.00,8.300,8.6 -7.4,1.00,8.350,10.5 -7.1,1.00,8.670,11.1 -6.8,1.00,9.270,14.4 -6.7,1.00,8.900,18.5 -6.7,1.00,8.920,20.9 -6.7,1.00,9.000,23.3 -6.6,1.00,8.630,24.4 -6.6,1.00,8.370,28.2 -6.8,1.00,8.240,30.1 -6.7,1.00,8.170,31.5 -6.8,1.00,7.850,31.3 -6.8,1.00,7.050,30.7 -6.9,1.00,6.080,30.6 -7.1,1.00,5.430,26.3 -7.7,1.00,4.940,25.2 -8.3,1.00,4.470,23.2 -8.8,1.00,4.090,22.7 -9.3,1.00,3.810,24.5 -9.8,1.00,3.450,35.2 -19.8,0.99,10.300,165.8 -20.2,0.99,12.230,165.8 -20.2,0.99,12.520,168.2 -20.2,0.99,13.070,168.6 -20.1,0.99,12.700,172.2 -20.2,0.99,13.250,176.8 diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_120m.srw b/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_120m.srw deleted file mode 100644 index fd1ccfd37..000000000 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_inputs/weather/wind/29.2_-94.6_windtoolkit_2013_60min_120m.srw +++ /dev/null @@ -1,8765 +0,0 @@ -1379078,city??,state??,country??,2013,29.2054595947,-94.593170166,Not Available,1,8760 -WIND Toolkit data from NREL downloaded on 2025-8-5 -Temperature,Pressure,Speed,Direction -C,atm,m/s,Degrees -120,120,120,120 -20.1,0.99,13.230,180.2 -20.3,0.99,14.120,183.7 -20.3,0.99,14.080,187.5 -20.3,0.99,13.980,188.3 -20.3,0.99,14.280,187.8 -20.2,0.99,13.200,192.4 -20.4,0.99,12.410,184.8 -19.7,0.99,10.380,182.5 -14.9,0.99,11.920,346.3 -13.3,0.99,12.420,355.3 -12.6,0.99,13.740,5.9 -12.4,0.99,13.410,4.4 -12.1,0.99,13.520,5.4 -11.8,0.99,12.400,7.3 -11.8,0.99,11.310,14.0 -11.6,0.99,11.190,4.0 -11.3,0.99,10.570,5.4 -11.0,0.99,10.470,9.0 -10.8,0.99,10.220,10.0 -10.7,0.99,10.490,6.6 -10.4,1.00,11.750,10.3 -10.7,1.00,12.240,17.0 -10.8,1.00,11.600,15.1 -10.1,1.00,11.310,12.4 -9.7,1.00,10.980,16.6 -9.3,1.00,10.750,19.0 -9.0,1.00,11.730,18.3 -8.8,1.00,12.040,16.8 -8.4,1.00,12.540,13.5 -8.1,1.00,11.630,12.1 -7.9,1.00,11.150,15.4 -7.5,1.00,10.730,13.1 -7.2,1.00,10.350,11.4 -7.0,1.00,9.900,8.5 -6.9,1.00,9.330,10.0 -7.0,1.00,8.870,7.3 -7.4,1.00,7.690,7.5 -7.9,1.00,7.660,4.0 -8.4,1.00,7.260,1.8 -8.7,1.00,7.160,3.0 -8.7,1.00,7.460,4.8 -8.5,1.00,7.990,4.2 -8.4,1.00,7.970,9.1 -8.1,1.00,8.120,11.8 -7.8,1.00,8.430,14.0 -7.6,1.00,8.180,16.8 -7.5,1.00,8.990,17.8 -7.3,1.00,9.070,19.6 -7.0,1.00,10.120,19.0 -6.8,1.00,10.000,20.6 -6.7,1.00,10.680,21.1 -6.5,1.00,11.060,21.0 -6.4,1.00,11.350,22.3 -6.3,1.00,11.520,22.8 -6.1,1.00,11.670,22.5 -5.8,1.00,11.600,22.9 -5.6,1.00,11.900,23.6 -5.6,1.00,11.490,26.2 -5.6,1.00,10.830,25.6 -5.7,1.00,9.820,24.8 -6.1,1.00,8.760,21.4 -7.5,1.00,8.620,20.3 -8.9,1.00,7.900,20.9 -9.8,1.00,7.750,17.3 -10.2,1.00,8.520,14.7 -10.2,1.00,8.680,12.7 -10.1,1.00,9.670,16.4 -9.7,1.00,9.450,18.6 -9.5,1.00,10.300,22.5 -9.4,1.00,10.260,27.8 -9.2,1.00,11.100,32.5 -9.2,1.00,11.270,38.4 -9.2,1.00,11.360,41.5 -9.3,1.00,10.230,46.6 -9.4,1.00,10.970,48.6 -9.3,1.00,10.820,45.2 -9.2,1.00,10.850,47.8 -9.1,1.00,10.840,48.0 -9.0,1.00,10.920,40.2 -8.2,1.00,10.210,27.8 -7.7,1.00,10.520,28.4 -7.6,1.00,10.770,33.1 -7.7,1.00,10.780,35.6 -7.7,1.00,10.930,33.1 -7.6,1.00,10.480,35.0 -8.3,1.00,10.110,43.1 -8.8,1.00,10.290,45.2 -8.8,1.00,9.530,39.1 -8.9,1.00,9.330,42.3 -9.4,1.00,9.580,44.1 -9.7,1.00,9.070,42.4 -9.7,1.00,8.340,41.6 -10.2,1.00,8.690,51.9 -9.8,1.00,7.540,43.0 -10.2,1.00,7.770,54.9 -10.3,1.00,7.950,64.0 -10.4,1.00,7.290,76.2 -10.2,1.00,7.210,63.9 -10.4,1.00,5.780,63.9 -10.1,1.00,5.540,67.0 -8.7,1.00,8.320,26.6 -8.7,1.00,8.630,33.6 -8.4,1.00,8.700,20.6 -8.2,1.00,8.600,21.5 -8.1,1.00,9.040,16.7 -8.0,1.00,9.370,23.9 -8.1,1.00,8.540,16.4 -7.9,1.00,9.200,16.7 -8.1,1.00,9.580,19.3 -8.6,1.00,9.090,23.8 -8.6,1.00,9.050,27.3 -8.8,1.00,8.770,17.9 -8.5,1.00,7.750,17.3 -8.3,1.00,9.250,24.9 -8.3,1.00,8.260,18.1 -8.3,1.00,6.030,359.4 -8.2,1.00,7.920,19.9 -8.4,1.00,7.490,18.9 -8.7,1.00,6.390,24.8 -8.6,1.00,8.080,26.4 -8.3,1.00,8.340,10.9 -8.0,1.00,8.350,5.9 -8.2,1.00,8.250,6.5 -7.9,1.00,9.280,8.9 -7.8,1.00,9.850,7.0 -7.6,1.00,9.980,11.7 -7.3,1.00,10.410,11.1 -6.9,1.00,10.780,14.5 -6.5,1.00,10.830,14.7 -4.9,1.00,10.370,9.5 -5.0,1.00,9.930,9.4 -5.0,1.00,9.370,5.4 -5.3,1.00,8.400,1.3 -7.3,1.00,9.890,5.3 -8.3,1.00,8.880,7.9 -9.0,1.00,8.690,8.8 -9.6,1.00,9.130,7.3 -10.1,1.00,9.050,9.5 -9.8,1.00,10.080,14.4 -9.4,1.00,10.290,14.4 -9.1,1.00,10.360,18.6 -8.8,1.00,10.330,25.1 -8.7,1.00,10.110,29.2 -8.8,1.00,10.080,35.3 -9.2,1.00,9.730,42.6 -9.3,1.00,9.070,49.9 -10.0,1.00,10.630,58.5 -10.1,1.00,10.530,63.8 -10.4,1.00,11.060,69.2 -10.3,1.00,11.010,70.9 -10.2,1.00,10.530,66.7 -10.0,1.00,10.490,65.4 -9.8,1.00,10.500,63.3 -9.4,1.00,10.600,58.9 -9.0,1.00,9.690,55.9 -9.1,1.00,8.650,55.4 -9.7,1.00,8.110,63.5 -10.0,1.00,8.110,63.6 -10.2,1.00,7.680,63.3 -10.5,1.00,7.500,64.9 -10.9,1.00,7.290,64.8 -11.2,1.00,7.720,68.4 -11.8,1.00,8.390,72.1 -12.1,1.00,8.530,78.4 -12.4,1.00,9.270,79.7 -12.8,1.00,10.130,80.7 -13.6,0.99,9.850,89.7 -13.8,0.99,8.890,92.9 -14.1,0.99,9.330,88.1 -14.4,0.99,9.470,93.6 -14.6,0.99,9.830,96.2 -14.8,0.99,10.580,92.4 -15.0,0.99,11.210,93.7 -15.2,0.99,12.560,94.4 -15.5,0.99,12.620,96.1 -15.8,0.99,14.080,101.8 -16.0,0.99,13.090,103.0 -16.6,0.99,15.440,110.1 -17.1,0.99,14.660,115.1 -18.8,0.99,14.990,145.9 -18.4,0.99,13.500,139.3 -19.3,0.99,13.940,132.5 -18.9,0.99,13.920,124.2 -19.2,0.99,13.740,131.2 -19.7,0.99,13.690,140.6 -20.1,0.99,14.110,149.8 -20.1,0.99,14.570,147.8 -20.1,0.99,12.140,151.7 -18.6,0.99,11.300,163.4 -19.2,0.99,11.650,178.2 -19.7,0.99,10.600,169.3 -19.6,0.99,9.720,173.9 -19.7,0.99,10.290,170.5 -20.9,0.99,14.390,174.4 -20.8,0.99,10.960,159.6 -20.4,0.99,12.930,148.2 -20.3,0.99,13.940,143.8 -18.6,0.99,17.960,153.3 -18.9,0.99,14.900,152.6 -18.4,0.99,13.110,149.9 -20.6,0.99,12.610,129.9 -19.9,0.99,15.080,115.8 -19.4,0.99,16.150,114.2 -19.2,0.99,12.990,113.4 -18.4,0.99,4.470,128.7 -19.1,0.99,10.500,107.7 -19.7,0.99,10.070,106.7 -18.3,0.99,3.960,220.0 -18.1,0.99,3.140,139.5 -17.9,0.99,7.590,117.8 -18.3,0.99,8.090,123.2 -18.3,0.99,7.500,131.6 -18.7,0.99,10.170,146.5 -17.8,0.99,9.760,153.1 -18.2,0.99,9.230,164.2 -17.8,0.99,7.600,177.7 -17.2,0.99,6.290,200.4 -16.8,0.99,5.430,217.4 -16.1,0.99,6.640,224.5 -16.0,0.99,2.940,233.9 -15.8,0.99,2.590,182.3 -15.9,0.99,2.610,171.2 -14.8,0.99,3.980,172.5 -15.0,0.99,3.370,201.5 -15.0,0.99,4.190,223.6 -14.2,0.99,4.790,207.9 -14.3,0.99,4.070,202.7 -15.8,0.99,5.690,218.4 -16.0,0.99,5.340,214.4 -16.2,0.99,5.300,218.0 -15.8,0.99,5.760,218.3 -15.5,0.99,6.280,213.5 -15.3,0.99,6.960,224.8 -14.9,0.99,5.700,225.7 -15.3,0.99,6.250,222.8 -15.7,0.99,7.220,229.3 -15.5,0.99,6.640,222.8 -15.6,0.99,6.630,226.2 -15.5,0.99,6.620,236.9 -15.2,0.99,5.720,240.7 -15.2,0.99,5.270,244.2 -15.1,0.99,3.890,242.0 -15.1,0.99,3.000,221.1 -15.4,0.99,3.180,232.2 -15.7,0.99,2.730,224.1 -16.3,0.99,2.020,225.2 -16.4,0.99,1.660,201.6 -16.9,0.99,1.630,226.5 -16.6,0.99,1.620,163.3 -16.7,0.99,2.690,126.2 -17.6,0.99,2.280,117.0 -16.9,0.99,4.350,127.0 -16.6,0.99,5.350,124.4 -16.9,0.99,6.290,126.8 -17.3,0.99,5.350,133.8 -17.5,0.99,5.990,130.7 -18.3,0.99,6.430,144.7 -19.7,0.99,9.940,152.9 -19.8,0.99,11.300,162.5 -20.1,0.99,10.440,169.4 -19.9,0.99,11.410,157.4 -20.3,0.99,13.310,153.8 -21.0,0.99,13.800,171.8 -20.9,0.99,13.140,168.8 -21.3,0.99,12.770,169.6 -21.9,0.99,15.440,169.7 -20.7,0.99,13.420,174.9 -20.1,0.99,12.140,167.1 -19.3,0.99,12.860,167.9 -21.8,0.99,16.470,172.0 -20.0,0.99,13.590,162.1 -20.4,0.99,13.710,160.0 -22.6,0.99,15.690,166.7 -21.0,0.99,14.040,158.9 -20.3,0.99,14.090,156.0 -19.9,0.99,14.730,153.4 -21.0,0.99,14.850,161.6 -20.1,0.99,13.200,155.0 -20.2,0.99,13.200,159.0 -20.8,0.99,15.350,158.6 -21.1,0.98,14.830,160.8 -21.3,0.98,13.980,164.1 -20.7,0.98,13.570,159.4 -21.1,0.98,13.330,163.5 -21.7,0.98,14.360,162.3 -21.3,0.98,13.150,161.4 -20.8,0.98,13.220,160.4 -21.4,0.98,18.500,159.1 -21.2,0.98,13.170,163.6 -19.9,0.98,6.450,192.1 -20.9,0.98,8.240,211.6 -21.2,0.98,6.190,224.2 -21.3,0.99,7.180,232.3 -21.7,0.99,9.250,210.4 -15.5,0.99,12.130,319.5 -12.6,0.99,11.910,330.8 -10.9,0.99,13.230,336.4 -10.2,0.99,12.790,342.7 -9.5,0.99,15.130,347.7 -9.2,0.99,14.330,346.6 -8.9,0.99,14.960,356.7 -8.8,0.99,12.470,353.0 -8.7,0.99,12.460,350.1 -8.6,0.99,11.610,356.2 -8.6,0.99,11.830,4.2 -8.5,0.99,12.900,4.4 -8.6,0.99,12.030,9.1 -8.5,0.99,12.620,9.4 -8.3,0.99,12.590,13.1 -8.0,0.99,13.090,16.0 -8.0,0.99,13.110,20.1 -7.9,0.99,12.640,21.9 -7.9,0.99,12.200,22.0 -7.8,0.99,12.570,27.7 -7.7,0.99,11.050,28.2 -7.6,0.99,10.770,28.5 -7.3,0.99,11.210,27.8 -6.8,0.99,11.340,19.7 -6.6,0.99,10.050,11.3 -6.1,0.99,10.080,9.6 -5.7,0.99,11.430,10.2 -5.2,0.99,12.700,14.6 -5.0,1.00,11.710,13.6 -4.8,1.00,11.570,13.2 -4.6,1.00,12.140,12.5 -4.6,1.00,10.840,17.2 -4.6,1.00,11.110,15.1 -4.6,0.99,11.640,20.8 -4.7,0.99,11.560,26.3 -4.8,1.00,10.050,24.4 -4.8,0.99,11.300,26.0 -4.9,0.99,10.620,28.1 -5.0,0.99,9.150,25.0 -5.0,0.99,10.100,30.0 -5.1,0.99,9.250,28.6 -5.3,0.99,8.980,29.8 -5.4,0.99,8.880,31.4 -5.5,0.99,8.590,31.0 -5.4,0.99,8.230,22.8 -5.4,0.99,7.850,21.7 -5.4,0.99,7.280,15.7 -5.2,0.99,7.810,9.6 -5.0,0.99,7.930,4.4 -4.8,0.99,8.540,357.4 -4.6,0.99,9.000,356.6 -4.5,0.99,8.980,355.2 -4.4,0.99,8.830,353.7 -4.2,0.99,9.930,354.4 -4.1,0.99,9.430,356.4 -3.9,0.99,10.090,353.4 -3.8,0.99,9.460,356.7 -3.6,0.99,9.780,352.2 -3.5,0.99,9.670,356.0 -3.4,0.99,9.870,352.8 -3.2,0.99,10.250,350.9 -3.1,0.99,9.710,350.3 -2.9,0.99,11.760,346.4 -2.7,0.99,12.710,345.6 -2.8,1.00,10.040,341.9 -2.6,0.99,11.760,346.0 -2.6,0.99,10.990,347.9 -2.3,1.00,11.730,344.6 -2.2,1.00,12.110,342.3 -2.2,1.00,12.620,340.5 -2.2,1.00,12.820,340.4 -2.2,1.00,11.250,336.3 -1.9,1.00,13.380,344.0 -1.9,1.00,13.310,346.3 -2.1,1.00,13.480,346.5 -2.1,1.00,11.020,340.4 -2.5,1.00,10.330,333.0 -2.8,1.00,10.570,326.3 -3.4,1.00,11.050,319.4 -4.8,1.00,10.420,317.4 -5.8,1.00,9.850,316.6 -6.5,1.00,10.230,317.9 -7.1,1.00,10.940,313.1 -7.5,1.00,10.940,308.8 -7.4,1.00,10.890,304.4 -7.1,1.00,10.060,308.5 -7.0,1.00,9.600,313.5 -7.0,1.00,8.440,315.0 -7.0,1.00,7.480,319.6 -7.5,1.00,8.800,320.8 -7.5,1.00,7.130,322.8 -7.0,1.00,6.160,316.7 -6.8,1.00,5.780,314.2 -6.7,1.00,5.220,317.6 -6.4,1.00,4.920,313.6 -6.3,1.00,4.510,310.8 -6.0,1.00,4.710,308.6 -5.7,1.00,4.470,311.0 -5.6,1.00,4.650,315.3 -6.0,1.00,5.090,322.5 -6.9,1.00,6.050,327.0 -7.9,1.00,6.500,326.0 -8.6,1.00,6.760,324.5 -9.8,1.00,6.670,322.1 -10.8,1.00,6.910,327.9 -11.4,1.00,7.390,329.6 -12.1,1.00,7.590,334.8 -12.5,1.00,7.940,340.7 -12.7,1.00,8.500,347.7 -12.1,1.00,8.290,357.6 -12.1,1.00,9.060,354.9 -12.1,1.01,8.560,3.5 -11.2,1.01,7.110,17.9 -10.6,1.01,6.230,20.4 -10.0,1.01,6.540,24.9 -9.4,1.01,5.920,35.1 -9.8,1.01,6.340,46.9 -9.8,1.01,5.990,54.5 -9.9,1.01,5.670,51.7 -9.7,1.01,6.470,47.7 -9.8,1.01,7.050,55.6 -10.2,1.01,7.290,64.3 -10.4,1.01,7.650,68.3 -10.3,1.01,7.650,69.0 -10.3,1.01,7.580,71.8 -10.3,1.01,6.930,72.3 -10.2,1.01,6.670,76.3 -10.4,1.01,6.000,74.1 -10.4,1.01,5.450,77.6 -10.4,1.00,4.950,77.4 -10.5,1.00,4.730,79.1 -10.8,1.00,4.690,90.7 -10.9,1.00,4.690,91.0 -10.8,1.00,4.540,90.9 -10.9,1.00,4.590,92.5 -10.9,1.00,4.610,93.0 -11.0,1.00,4.060,94.4 -11.0,1.00,3.490,97.7 -11.2,1.00,3.430,106.2 -11.3,1.00,2.790,113.1 -11.2,1.00,2.110,97.5 -11.4,1.00,1.980,105.0 -11.5,1.00,1.840,100.9 -11.5,1.00,2.020,81.9 -11.5,1.00,2.250,81.9 -11.7,1.00,2.230,86.2 -12.0,1.00,2.400,96.5 -12.3,1.00,2.530,105.2 -12.6,1.00,2.710,115.8 -12.8,1.00,2.690,120.5 -13.0,1.00,2.910,122.6 -13.4,1.00,2.510,137.5 -13.6,1.00,2.560,146.9 -13.8,1.00,2.890,149.4 -13.8,1.00,3.060,143.5 -13.9,1.00,2.340,148.3 -13.8,1.00,2.710,136.5 -13.6,1.00,3.290,119.4 -13.4,1.00,3.280,121.1 -13.7,1.00,3.130,139.6 -13.9,1.00,4.510,156.5 -14.3,1.00,3.720,163.0 -14.3,1.00,2.510,175.9 -14.0,1.00,2.590,174.4 -13.7,1.00,2.140,146.1 -14.4,1.00,1.730,187.8 -14.4,1.00,1.600,180.8 -14.6,1.00,1.450,175.9 -14.8,1.00,0.880,188.3 -15.1,1.00,0.610,169.9 -15.3,1.00,0.240,106.2 -14.8,1.00,0.970,91.3 -14.8,1.00,1.550,89.1 -15.2,1.00,1.170,76.9 -14.8,1.00,1.510,79.4 -13.5,1.00,2.650,93.7 -13.4,1.00,2.840,73.5 -12.5,1.00,3.170,93.3 -11.8,1.00,2.560,115.5 -11.9,1.00,2.340,95.1 -10.9,1.00,2.380,121.1 -13.9,1.00,2.890,123.7 -14.2,1.00,3.570,133.5 -14.5,1.00,3.370,140.3 -14.4,1.00,2.920,144.4 -14.5,1.00,2.150,151.9 -14.6,1.00,2.220,160.7 -15.1,1.00,1.540,195.4 -14.3,1.00,1.290,184.9 -14.5,1.00,0.590,219.6 -14.6,1.00,0.390,288.3 -14.8,1.00,0.900,332.1 -14.5,1.00,1.330,353.5 -14.8,1.00,2.200,2.1 -14.2,1.00,2.410,17.0 -14.8,1.00,2.830,24.0 -15.1,1.00,2.710,29.8 -15.4,1.00,3.040,22.1 -15.6,1.00,2.810,34.2 -15.0,1.00,2.810,24.0 -15.1,1.00,2.680,13.6 -16.0,1.00,2.850,10.9 -16.5,1.00,2.540,15.6 -16.2,1.00,2.100,8.7 -16.2,1.00,3.240,351.6 -15.8,1.00,6.020,9.4 -14.9,1.00,6.590,34.6 -14.1,1.00,6.180,42.3 -13.6,1.00,5.730,50.8 -13.1,1.00,5.420,64.3 -13.3,1.00,5.050,69.0 -13.6,1.00,4.520,78.0 -13.2,1.00,5.310,78.3 -12.7,1.00,5.310,74.3 -12.9,1.00,4.340,72.6 -12.8,1.00,4.200,61.4 -12.2,1.00,5.470,55.4 -12.0,1.00,6.090,57.8 -12.0,1.00,5.710,62.3 -12.1,1.00,5.960,65.7 -12.2,1.00,5.500,74.2 -12.3,1.00,5.280,81.1 -12.6,1.00,5.320,93.5 -12.9,1.00,4.160,91.1 -13.1,1.00,4.400,90.9 -13.1,1.00,4.690,96.0 -13.3,1.00,4.810,100.5 -13.6,1.00,4.980,105.4 -13.7,1.00,5.410,111.3 -13.7,1.00,6.040,113.4 -13.8,1.00,6.290,117.8 -13.9,1.00,6.410,123.3 -14.1,1.00,6.400,129.0 -14.3,1.00,6.240,131.4 -14.4,1.00,6.370,135.5 -14.6,1.00,6.540,139.1 -15.1,1.00,6.440,141.1 -15.4,1.00,6.310,144.0 -15.8,1.00,6.160,142.5 -16.2,1.00,6.160,145.1 -16.4,1.00,5.830,148.2 -16.6,1.00,5.590,148.3 -16.7,1.00,5.720,146.8 -16.9,1.00,6.130,149.8 -17.3,1.00,6.050,158.8 -17.4,1.00,6.270,164.8 -17.7,1.00,6.450,166.6 -17.8,1.00,6.430,171.4 -17.6,1.00,6.280,172.3 -17.5,1.00,6.190,172.5 -17.6,1.00,6.440,176.6 -17.9,1.00,7.000,180.1 -17.9,1.00,7.470,185.3 -18.2,1.00,7.780,185.6 -18.3,1.00,8.580,186.8 -18.3,1.00,8.840,190.2 -18.3,1.00,9.870,191.2 -18.3,1.00,10.090,191.3 -18.4,1.00,10.080,193.9 -18.3,1.00,10.220,197.4 -18.3,1.00,10.390,198.0 -18.4,1.00,9.910,203.3 -18.4,1.00,9.370,205.5 -18.5,1.00,9.420,208.9 -18.6,1.00,8.810,210.9 -18.6,1.00,8.970,211.2 -18.7,1.00,8.100,209.3 -18.9,1.00,7.740,210.8 -19.0,1.00,7.630,205.4 -19.3,1.00,8.000,206.5 -19.2,1.00,7.810,202.3 -19.0,1.00,7.720,196.5 -18.5,1.00,8.070,192.5 -18.6,1.00,8.700,190.0 -18.6,1.00,8.860,190.0 -18.7,1.00,9.450,189.8 -18.7,1.00,9.650,188.6 -18.8,1.00,10.400,189.9 -18.7,1.00,10.840,190.1 -18.7,1.00,10.690,189.3 -18.7,1.00,11.210,187.3 -18.5,1.00,11.180,187.4 -18.5,1.00,11.490,186.2 -18.7,1.00,12.180,187.6 -18.6,1.00,11.410,188.8 -18.6,1.00,11.200,190.0 -18.7,1.00,11.690,192.2 -19.1,1.00,11.050,198.6 -18.8,1.00,9.220,201.6 -19.1,1.00,9.140,204.4 -19.8,1.00,10.130,209.4 -19.6,1.00,9.690,197.4 -19.4,1.00,8.840,203.2 -19.4,1.00,8.390,204.2 -19.7,1.00,8.000,209.4 -19.4,1.00,7.790,204.7 -19.1,1.00,8.010,200.9 -19.2,1.00,7.670,198.7 -19.2,1.00,8.360,200.7 -19.2,1.00,8.200,204.9 -19.3,1.00,8.220,202.2 -19.3,1.00,7.510,201.3 -19.3,1.00,6.970,198.9 -19.2,1.00,6.800,191.5 -19.2,1.00,6.970,191.8 -19.1,1.00,7.220,192.8 -19.0,1.00,7.450,197.4 -19.2,1.00,7.260,197.2 -19.0,1.00,6.560,197.6 -19.2,1.00,6.500,197.0 -18.9,1.00,5.580,196.7 -18.9,1.00,5.240,196.2 -19.3,1.00,5.470,195.9 -19.3,1.00,4.810,190.5 -19.2,1.00,4.680,178.6 -19.4,1.00,4.840,184.3 -19.7,1.00,5.080,184.7 -20.0,1.00,5.440,174.1 -19.9,1.00,6.270,172.9 -19.8,1.00,6.150,175.5 -19.6,1.00,6.040,176.2 -19.7,1.00,6.260,173.7 -19.4,1.00,6.430,164.8 -19.5,1.00,6.530,163.3 -19.3,1.00,6.890,154.7 -19.4,1.00,7.190,150.4 -19.4,1.00,7.890,145.5 -19.6,1.00,8.250,142.5 -19.4,1.00,8.690,138.2 -19.3,1.00,9.620,140.9 -19.3,1.00,10.400,141.5 -19.3,1.00,11.260,140.9 -19.4,1.00,11.050,143.0 -19.4,1.00,10.670,146.9 -19.3,1.00,10.190,149.9 -19.4,1.00,9.890,155.9 -19.5,1.00,9.660,162.6 -19.6,1.00,10.520,164.3 -19.5,1.00,10.880,165.1 -19.7,1.00,10.920,163.0 -19.5,1.00,10.980,161.5 -19.4,1.00,10.900,157.6 -19.4,1.00,10.820,157.4 -19.4,1.00,10.010,156.9 -19.4,1.00,10.440,156.8 -19.5,1.00,10.590,152.8 -19.4,0.99,11.220,150.9 -19.5,0.99,11.960,151.5 -19.6,0.99,12.140,152.0 -19.8,0.99,13.410,152.1 -19.8,0.99,13.060,152.9 -19.5,0.99,12.880,152.2 -19.6,0.99,12.810,151.7 -19.5,0.99,12.790,153.6 -19.8,0.99,12.900,156.0 -19.8,0.99,12.780,156.1 -19.6,0.99,12.220,157.2 -19.9,0.99,12.550,160.9 -20.0,0.99,12.840,164.3 -19.9,0.99,12.440,163.9 -20.0,0.99,12.300,163.9 -19.6,0.99,11.560,160.2 -20.2,0.99,12.150,161.7 -20.3,0.99,12.630,160.7 -20.0,1.00,11.760,155.7 -20.5,0.99,12.200,156.8 -20.7,0.99,12.450,156.3 -20.4,0.99,11.180,155.3 -20.5,0.99,11.400,156.7 -20.4,0.99,11.410,154.0 -20.2,0.99,11.850,154.6 -19.5,0.99,11.320,146.1 -19.1,0.99,12.080,151.0 -19.2,0.99,13.020,149.0 -19.1,0.99,12.780,150.1 -18.8,0.99,13.290,149.7 -19.1,0.99,14.100,150.9 -19.0,0.99,13.370,154.1 -18.9,0.99,12.760,157.2 -19.0,0.99,13.350,155.4 -19.1,0.99,12.510,153.6 -19.1,0.99,12.160,157.7 -19.9,0.99,13.080,161.1 -19.4,0.99,12.970,158.8 -19.3,0.99,11.960,158.4 -19.1,0.99,13.360,161.0 -19.6,0.99,13.620,160.7 -20.2,0.99,14.080,162.7 -20.3,0.99,13.850,165.2 -20.5,0.99,14.690,166.1 -20.3,0.99,13.900,170.3 -20.3,0.99,13.300,172.6 -20.5,0.98,14.050,174.9 -20.6,0.98,14.080,175.1 -20.4,0.98,13.750,173.2 -20.3,0.98,13.510,176.8 -20.6,0.98,16.040,178.1 -20.7,0.98,17.670,181.4 -21.0,0.98,17.460,180.6 -20.6,0.98,14.540,184.3 -20.6,0.98,14.430,185.0 -20.5,0.98,15.010,196.6 -20.4,0.98,13.450,212.8 -15.5,0.98,13.820,324.5 -16.7,0.98,11.080,326.4 -16.7,0.98,15.940,317.8 -15.6,0.99,13.810,314.8 -15.1,0.99,9.140,303.5 -14.3,0.99,13.090,309.1 -13.0,0.99,11.370,299.2 -12.2,0.99,11.900,297.3 -11.7,0.99,12.660,296.6 -11.7,0.99,12.130,297.2 -11.9,0.99,14.120,298.3 -11.8,0.99,13.580,306.5 -12.0,0.99,15.720,313.8 -12.0,0.99,15.390,315.7 -12.1,0.99,15.550,315.3 -12.4,0.99,13.840,319.1 -12.2,0.99,14.030,327.6 -12.1,1.00,12.500,331.3 -11.5,1.00,10.900,337.5 -11.3,1.00,11.140,332.1 -11.1,1.00,9.570,334.6 -11.0,1.00,7.590,338.4 -10.9,1.00,6.560,345.1 -10.8,1.00,5.790,343.4 -10.6,1.00,4.840,342.8 -10.4,1.00,3.440,344.4 -10.2,1.00,1.640,348.3 -10.3,1.00,0.620,334.2 -10.5,1.00,0.430,215.4 -10.7,1.00,1.210,198.7 -10.9,1.00,1.630,200.2 -11.1,1.00,2.320,212.6 -11.3,1.00,2.760,221.1 -11.5,1.00,3.070,217.3 -11.8,1.00,3.460,218.2 -12.1,1.00,3.780,219.3 -12.8,1.00,4.210,216.0 -13.2,1.00,4.720,215.6 -13.6,1.00,5.040,215.1 -13.9,1.00,5.730,212.4 -14.2,1.00,5.960,213.7 -14.4,1.00,6.190,211.4 -14.4,1.00,5.570,213.7 -14.6,1.00,5.610,215.9 -14.6,1.00,4.950,218.3 -14.7,1.00,4.590,221.2 -14.7,1.00,4.260,210.2 -14.8,1.00,4.510,212.0 -14.8,1.00,3.810,209.8 -14.7,1.00,3.680,215.2 -14.7,1.00,3.150,212.2 -14.7,1.00,3.180,206.1 -14.5,1.00,2.380,192.8 -14.5,1.00,2.360,184.1 -14.7,1.00,2.230,188.5 -14.5,1.00,1.570,158.6 -14.8,1.00,1.770,142.6 -15.1,1.00,2.670,139.9 -14.9,1.00,2.530,122.3 -14.8,1.00,3.060,114.6 -15.0,1.00,4.510,119.3 -15.0,1.00,5.230,119.0 -15.1,1.00,5.780,124.8 -15.1,1.00,5.750,128.7 -15.1,1.00,6.380,130.3 -15.2,1.00,6.660,135.3 -15.2,1.00,6.600,133.4 -15.3,1.00,6.130,134.0 -15.5,1.00,6.540,139.4 -15.8,1.00,7.110,142.0 -16.1,1.00,7.780,147.7 -16.2,1.00,8.310,146.2 -16.4,1.00,7.780,150.0 -16.5,1.00,7.240,147.8 -16.7,1.00,7.290,150.5 -16.7,1.00,5.730,150.7 -16.6,1.00,6.320,144.0 -16.9,1.00,5.300,140.6 -17.0,1.00,5.270,145.1 -17.0,1.00,5.210,150.9 -17.3,1.00,4.050,154.3 -17.2,1.00,3.010,148.1 -17.6,1.00,2.080,143.8 -17.6,1.00,2.220,130.9 -17.7,1.00,0.670,115.9 -17.4,1.00,1.470,123.3 -17.4,1.00,2.250,127.6 -17.5,1.00,2.680,131.8 -17.6,1.00,2.170,139.9 -17.5,1.00,3.390,142.8 -18.4,1.00,2.550,142.5 -18.2,1.00,2.620,152.6 -18.1,1.00,2.370,171.9 -18.4,1.00,1.950,187.3 -18.3,1.00,2.090,221.7 -18.2,1.00,2.450,250.5 -16.3,1.00,4.650,340.1 -16.9,1.00,5.630,335.2 -16.1,1.00,7.840,20.2 -14.8,1.00,8.200,28.3 -14.9,1.00,8.670,35.9 -14.7,1.00,9.150,38.1 -13.7,1.00,8.460,41.3 -13.4,1.00,7.620,47.0 -13.3,1.00,7.010,53.3 -13.3,1.00,7.150,52.6 -13.5,1.00,6.250,58.6 -13.7,1.00,5.490,72.8 -14.7,1.00,5.220,83.0 -15.2,1.00,5.490,94.0 -15.4,1.00,5.710,113.0 -15.5,1.00,5.130,119.1 -15.6,1.00,5.230,125.1 -15.6,1.00,5.000,126.8 -15.3,1.00,5.460,135.1 -15.4,1.00,5.270,138.3 -15.5,1.00,5.730,142.5 -15.5,1.00,6.040,144.0 -15.6,0.99,6.340,148.5 -15.8,0.99,6.690,148.9 -16.1,0.99,7.110,150.3 -16.2,0.99,7.580,150.4 -16.5,0.99,7.780,149.4 -16.8,0.99,7.680,150.5 -17.1,0.99,7.580,151.4 -17.3,0.99,7.860,151.9 -17.4,0.99,8.140,146.2 -17.7,0.99,7.500,153.7 -18.1,0.99,7.110,157.4 -18.2,0.99,6.940,159.0 -18.3,0.99,7.270,157.3 -18.6,0.99,5.390,162.3 -18.7,0.99,5.570,159.1 -18.7,0.99,5.960,145.4 -18.9,0.99,6.570,144.9 -18.4,0.99,8.170,144.2 -17.9,0.99,8.100,137.0 -18.9,0.99,6.790,142.1 -19.3,0.99,6.680,144.6 -18.7,0.99,5.800,155.7 -18.9,0.99,4.490,165.9 -19.2,0.99,4.240,170.3 -19.7,0.99,4.730,180.0 -20.0,0.99,4.840,177.2 -19.3,0.99,4.800,190.3 -19.9,0.99,5.160,213.1 -18.4,0.99,5.160,226.2 -17.3,0.99,3.900,224.1 -16.6,0.99,2.890,254.5 -16.7,0.99,2.700,258.4 -16.8,0.99,1.930,272.8 -16.9,0.99,1.390,262.6 -16.9,0.99,0.780,78.7 -16.9,0.99,1.440,83.1 -17.1,0.99,2.870,88.0 -17.1,0.99,2.880,79.2 -17.1,0.99,3.310,100.7 -17.6,0.99,4.120,101.0 -17.1,0.99,4.910,105.5 -17.1,0.99,5.050,104.8 -17.3,0.99,5.570,113.8 -17.4,0.99,5.850,120.9 -17.6,0.99,5.200,121.5 -17.7,0.99,6.140,127.5 -18.1,0.99,6.680,123.4 -18.0,0.99,6.490,122.1 -18.1,0.99,5.730,112.6 -18.0,0.99,5.720,114.0 -18.1,0.99,5.550,121.1 -18.1,0.99,6.170,115.0 -17.2,0.99,7.600,114.8 -16.7,0.99,6.690,116.3 -16.7,0.99,7.610,102.8 -17.7,0.99,7.240,121.7 -17.8,0.99,7.150,113.4 -18.9,0.99,6.510,84.0 -17.4,0.99,8.630,97.9 -17.3,0.99,5.900,103.0 -17.1,0.99,8.830,91.0 -16.8,0.99,8.520,80.6 -16.8,0.99,8.010,79.0 -16.7,0.99,9.310,81.5 -16.8,0.99,8.410,90.4 -16.9,0.99,10.550,94.5 -16.7,0.99,11.540,97.2 -16.6,0.99,11.370,95.8 -16.5,0.99,12.640,94.1 -16.5,0.99,12.370,92.8 -16.6,0.99,12.890,94.4 -16.6,0.99,11.170,89.7 -16.6,0.99,10.070,84.6 -16.6,0.99,8.960,83.7 -16.5,0.99,8.620,89.8 -16.5,0.99,7.360,84.1 -16.3,0.99,6.460,75.2 -16.4,0.99,6.390,84.1 -16.3,0.99,5.160,101.6 -16.3,0.99,3.180,95.9 -16.2,0.99,2.240,89.0 -16.1,0.99,1.280,104.9 -16.2,0.99,1.240,119.2 -16.2,0.99,2.490,50.1 -16.2,0.99,1.450,14.9 -16.2,0.99,1.250,350.5 -16.4,0.99,2.210,50.1 -16.5,0.99,1.890,75.8 -16.6,0.99,1.510,66.0 -16.8,0.99,1.830,67.1 -16.7,0.99,2.810,92.4 -16.8,0.99,2.500,108.3 -17.1,0.99,2.340,131.3 -18.3,0.99,1.730,166.8 -17.3,0.99,2.990,160.5 -17.3,0.99,4.150,188.1 -16.5,0.99,4.240,202.3 -16.4,0.99,4.010,230.0 -16.6,0.99,5.210,279.3 -17.2,0.99,6.960,286.0 -17.2,0.99,7.120,298.4 -13.8,0.99,11.320,341.3 -13.9,0.99,10.280,345.1 -13.1,0.99,10.660,346.6 -12.7,0.99,9.390,343.2 -11.9,0.99,10.410,352.8 -12.6,1.00,9.330,360.0 -13.6,1.00,8.370,5.5 -14.1,1.00,8.110,5.1 -14.4,1.00,5.810,350.4 -15.8,1.00,6.900,0.4 -16.9,1.00,7.070,3.7 -17.3,1.00,5.950,27.8 -17.4,1.00,5.060,26.0 -16.5,1.00,3.920,69.9 -16.9,1.00,7.230,38.0 -16.0,1.00,8.060,35.0 -15.8,1.00,8.950,38.7 -15.0,1.00,8.850,44.8 -14.8,1.00,9.410,59.4 -14.9,1.00,10.200,73.6 -14.7,1.00,9.990,81.3 -14.6,1.00,9.760,81.0 -14.6,1.00,9.510,86.5 -14.6,0.99,9.170,93.2 -14.8,0.99,8.810,95.3 -15.0,0.99,8.610,100.5 -15.5,0.99,7.820,107.1 -15.7,0.99,8.800,104.2 -16.0,0.99,8.030,110.7 -16.2,0.99,8.850,106.2 -16.2,0.99,9.120,106.3 -16.6,0.99,8.780,105.2 -16.6,0.99,9.480,108.9 -17.2,0.99,9.070,115.6 -17.4,0.99,9.120,113.4 -17.8,0.99,9.420,111.0 -18.3,0.99,10.500,119.8 -18.4,0.99,11.900,126.4 -18.5,0.99,12.430,129.7 -18.6,0.99,12.860,132.8 -18.7,0.99,12.530,135.1 -19.0,0.99,12.670,142.4 -19.4,0.99,13.150,147.8 -19.7,0.99,13.940,152.3 -19.5,0.99,13.660,154.4 -19.8,0.99,13.260,157.8 -19.8,0.99,13.630,158.6 -20.1,0.99,13.360,161.7 -20.1,0.99,12.900,164.2 -19.7,0.99,13.280,166.8 -19.7,0.99,13.830,166.5 -20.3,0.99,13.490,171.6 -20.3,0.99,12.720,172.3 -20.5,0.99,14.060,176.5 -20.4,0.99,13.400,178.8 -20.4,0.99,12.920,187.4 -20.5,0.99,12.160,193.4 -20.4,0.99,9.900,194.0 -21.2,0.99,11.740,202.0 -21.4,0.99,11.120,202.8 -21.6,0.99,9.610,199.7 -21.9,0.99,10.550,200.5 -19.7,0.99,6.790,200.5 -18.4,0.99,3.950,348.7 -18.7,0.99,4.730,23.6 -18.0,0.99,5.390,30.1 -18.0,0.99,6.420,40.7 -18.0,0.99,5.690,39.1 -17.7,0.99,5.660,47.2 -17.4,0.99,6.680,47.7 -17.4,0.99,6.930,50.7 -16.8,0.99,7.370,49.4 -16.1,0.99,6.930,46.4 -16.1,0.99,8.160,40.5 -15.3,0.99,9.460,30.9 -14.5,0.99,10.660,34.6 -13.1,0.99,12.790,34.6 -13.2,0.99,13.360,43.5 -13.2,0.99,13.730,51.8 -13.6,0.99,14.310,53.8 -13.8,0.99,13.490,57.5 -13.9,0.99,13.800,57.6 -13.6,0.99,13.250,60.2 -13.8,0.99,12.830,60.5 -14.1,0.99,12.740,61.5 -14.0,0.99,12.750,59.9 -13.8,0.99,12.960,55.7 -13.7,0.99,13.440,57.1 -13.5,0.99,13.990,57.1 -13.5,0.99,13.070,56.3 -13.6,0.99,13.080,57.8 -13.9,0.99,12.930,60.7 -14.0,0.99,13.150,63.8 -14.1,0.99,12.980,66.1 -14.4,0.99,12.480,68.8 -14.7,0.99,11.530,71.2 -14.9,0.99,11.460,74.4 -15.2,0.99,10.910,75.1 -15.6,0.99,11.020,82.3 -16.1,0.99,10.300,85.9 -16.5,0.99,10.300,88.4 -18.9,0.99,8.110,141.3 -20.5,0.99,8.630,185.9 -18.8,0.99,5.160,265.1 -17.8,0.99,5.270,290.6 -16.0,0.99,8.000,305.9 -15.6,0.99,7.450,325.0 -16.1,0.99,7.280,327.7 -16.7,0.99,6.890,326.7 -16.7,0.99,6.220,338.3 -17.0,0.99,7.220,335.4 -16.6,0.99,7.280,344.4 -15.7,0.99,6.730,2.8 -14.7,0.99,6.560,14.8 -14.0,0.99,7.830,10.7 -13.5,0.99,8.970,0.4 -13.1,0.99,9.790,356.0 -12.7,0.99,9.010,351.1 -12.2,0.99,8.700,346.0 -11.7,0.99,9.280,341.0 -11.0,0.99,11.270,337.1 -10.3,0.99,9.730,341.4 -9.9,0.99,11.670,332.2 -9.4,0.99,10.230,337.1 -8.9,0.99,10.210,343.0 -8.9,0.99,11.110,351.0 -8.8,0.99,11.680,345.7 -9.2,0.99,10.080,345.2 -9.3,0.99,9.510,339.5 -10.0,0.99,8.550,340.7 -10.8,0.99,8.370,337.2 -11.5,0.99,8.210,334.7 -12.0,0.99,7.460,335.6 -12.3,0.99,7.130,335.1 -12.5,0.99,7.280,340.5 -12.3,0.99,7.350,347.9 -12.3,0.99,7.070,3.3 -11.9,0.99,6.610,6.1 -11.8,0.99,6.330,9.9 -11.6,0.99,5.820,16.2 -11.5,0.99,5.290,15.7 -11.2,0.99,5.370,18.3 -10.8,0.99,4.840,14.4 -10.7,0.99,4.410,9.1 -10.6,0.99,4.570,12.6 -10.5,0.99,4.640,15.0 -10.4,0.99,4.160,23.5 -10.3,1.00,4.380,26.7 -10.2,1.00,4.540,30.3 -10.3,1.00,4.250,35.8 -10.5,1.00,3.790,36.1 -10.7,1.00,3.570,32.3 -10.9,1.00,3.180,31.0 -11.7,1.00,2.370,43.2 -12.3,0.99,1.940,72.9 -12.8,0.99,1.930,102.5 -13.1,0.99,1.580,116.6 -13.3,0.99,1.620,124.8 -13.5,0.99,1.670,126.0 -13.5,0.99,2.060,129.7 -13.5,0.99,2.140,126.0 -13.6,0.99,2.350,120.7 -13.8,0.99,2.120,118.4 -13.9,0.99,1.900,121.4 -14.0,0.99,1.860,114.3 -14.0,0.99,1.810,99.8 -13.9,0.99,1.600,86.3 -13.8,0.99,1.420,58.5 -13.6,1.00,2.100,35.9 -13.5,1.00,2.240,32.3 -13.3,1.00,2.750,26.9 -12.9,1.00,4.060,21.6 -12.7,1.00,4.170,27.3 -12.5,1.00,5.340,22.5 -12.7,1.00,5.460,23.3 -13.2,1.00,4.390,13.2 -13.3,1.00,4.400,354.9 -14.1,1.00,4.690,337.8 -14.9,1.00,4.650,335.4 -15.5,1.00,4.720,330.5 -16.1,1.00,5.290,328.8 -16.6,1.00,7.060,333.8 -16.7,1.00,8.540,341.0 -15.1,1.00,11.330,12.4 -14.3,1.00,11.590,14.8 -12.0,1.00,16.180,13.3 -10.8,1.00,14.490,13.6 -10.2,1.00,15.130,10.3 -9.7,1.00,12.950,6.1 -9.6,1.00,12.020,6.2 -10.0,1.00,13.390,2.2 -9.3,1.00,14.110,9.8 -8.6,1.00,13.560,10.6 -8.0,1.00,12.640,11.4 -7.5,1.00,12.010,10.7 -6.9,1.00,11.050,13.3 -6.5,1.00,11.010,15.0 -6.6,1.00,9.550,8.8 -6.8,1.00,7.600,359.4 -7.3,1.00,6.720,350.9 -7.9,1.00,4.970,334.1 -9.1,1.00,6.930,333.4 -9.7,1.00,7.340,328.9 -10.4,1.00,6.510,327.6 -10.9,1.00,5.250,337.1 -11.9,1.00,6.450,329.6 -12.2,1.00,5.430,325.8 -12.4,1.00,3.720,323.0 -12.5,1.00,2.800,318.6 -12.4,1.00,1.100,288.7 -12.7,1.00,2.070,234.1 -12.8,1.00,2.640,222.4 -13.0,1.00,3.040,225.6 -13.2,1.00,4.190,218.2 -13.4,1.00,5.230,210.7 -13.6,1.00,6.180,211.8 -13.8,1.00,5.780,222.5 -13.7,1.00,5.780,224.4 -13.8,1.00,5.290,221.0 -14.0,1.00,5.060,222.2 -14.5,1.00,5.400,212.9 -14.8,1.00,6.710,209.6 -14.9,1.00,6.160,198.0 -15.1,1.00,7.950,188.6 -15.4,1.00,7.340,190.6 -15.6,1.00,7.230,188.7 -15.9,1.00,7.850,187.3 -15.8,1.00,9.030,177.6 -16.0,1.00,9.310,171.4 -16.0,1.00,10.260,167.6 -16.1,1.00,9.580,168.8 -16.3,1.00,10.960,167.0 -16.6,1.00,11.120,169.4 -16.6,0.99,12.560,163.2 -17.1,0.99,13.250,170.3 -17.0,0.99,12.230,165.0 -16.8,0.99,13.580,157.7 -17.3,0.99,15.180,167.5 -17.7,0.99,15.140,169.8 -17.4,0.99,14.290,163.3 -17.2,0.99,15.100,162.1 -17.6,0.99,15.590,167.3 -17.9,0.99,15.930,168.2 -18.2,0.99,14.480,169.6 -18.3,0.99,14.100,169.5 -18.4,0.99,15.250,165.7 -18.6,0.99,13.190,170.7 -18.4,0.99,12.640,174.0 -18.0,0.99,16.900,178.7 -19.0,0.99,17.510,177.2 -19.3,0.99,14.150,182.5 -19.3,0.99,13.760,188.8 -19.3,0.99,14.020,188.8 -19.4,0.99,13.980,188.7 -19.5,0.99,14.630,193.8 -19.4,0.99,14.340,196.6 -19.3,0.99,12.390,211.3 -19.3,0.99,12.030,212.7 -19.2,0.99,12.180,220.7 -19.4,0.99,10.420,236.8 -19.5,0.99,10.700,240.2 -14.5,0.99,13.060,341.6 -14.3,0.99,10.010,5.2 -14.1,0.99,12.140,19.0 -13.7,0.99,13.950,27.7 -13.1,1.00,14.290,31.0 -12.6,1.00,15.460,36.6 -11.8,1.00,14.950,39.1 -11.5,1.00,13.860,45.9 -11.4,1.00,12.870,44.8 -11.4,1.00,11.470,43.2 -11.8,1.00,9.910,42.9 -12.4,1.00,8.830,49.2 -13.4,1.00,9.040,53.1 -14.0,1.00,9.360,62.6 -14.2,1.00,8.600,68.0 -14.6,1.00,8.630,73.5 -14.8,1.00,8.690,73.2 -15.2,1.00,9.690,72.0 -15.3,1.00,11.300,75.3 -15.2,1.00,11.560,74.9 -14.9,1.00,12.580,75.2 -14.4,1.00,13.000,74.7 -14.1,1.00,13.550,79.4 -14.1,1.00,13.110,86.1 -14.2,1.00,13.570,90.9 -14.2,1.00,13.770,92.7 -14.3,1.00,13.930,94.2 -14.3,0.99,14.030,96.1 -14.5,0.99,14.120,101.9 -14.5,0.99,13.690,103.7 -14.6,0.99,13.820,106.9 -14.6,0.99,13.660,108.2 -14.8,0.99,12.930,106.9 -14.8,0.99,12.460,98.6 -14.6,0.99,13.370,94.1 -14.5,0.99,16.970,111.7 -14.8,0.99,16.590,104.5 -14.5,0.99,14.450,95.8 -14.7,0.99,14.700,94.2 -14.9,0.99,15.380,97.8 -15.3,0.99,15.780,100.7 -15.8,0.99,16.060,105.6 -15.9,0.99,15.380,104.6 -16.1,0.99,15.840,105.9 -16.5,0.99,16.320,105.4 -16.7,0.99,14.380,115.7 -17.2,0.99,15.070,117.4 -18.1,0.99,14.860,124.5 -18.4,0.99,15.200,126.0 -18.4,0.98,15.690,131.9 -18.6,0.98,15.440,133.4 -18.7,0.98,13.930,143.5 -18.8,0.98,15.680,152.6 -19.3,0.98,16.780,155.1 -19.2,0.98,14.960,144.2 -19.4,0.98,14.770,148.2 -19.7,0.98,15.270,151.9 -20.1,0.98,15.490,152.5 -19.7,0.98,13.570,158.9 -20.2,0.98,13.840,165.8 -20.7,0.98,14.210,171.5 -20.9,0.98,13.600,180.9 -21.2,0.98,12.710,188.8 -20.8,0.98,10.430,200.9 -21.5,0.98,11.030,212.1 -21.1,0.98,10.350,227.8 -19.9,0.98,9.210,238.8 -19.2,0.98,8.220,238.5 -19.9,0.98,7.980,270.9 -21.0,0.99,7.410,1.3 -21.5,0.99,9.030,14.2 -20.4,0.99,7.540,21.5 -19.6,0.99,9.300,20.5 -18.1,0.99,10.000,35.3 -17.5,0.99,10.550,33.2 -17.2,0.99,11.350,34.3 -16.4,0.99,11.360,43.9 -16.1,0.99,11.650,39.0 -16.0,0.99,10.390,54.5 -16.2,0.99,11.680,49.9 -15.7,0.99,12.330,48.0 -15.6,0.99,11.070,48.3 -15.5,0.99,10.100,46.9 -15.4,0.99,10.720,43.8 -15.8,0.99,10.980,40.4 -15.6,0.99,10.160,30.2 -15.4,0.99,10.190,29.8 -14.9,0.99,10.850,28.3 -14.8,0.99,11.170,32.4 -14.4,0.99,10.560,30.2 -13.8,0.99,10.720,31.0 -13.8,0.99,10.310,34.5 -13.6,0.99,9.970,31.5 -13.4,0.99,9.500,32.4 -13.2,0.99,10.270,31.8 -13.0,0.99,10.370,29.9 -12.7,0.99,10.160,31.0 -12.5,0.99,9.500,27.8 -12.2,0.99,9.950,26.9 -12.1,0.99,9.730,27.7 -11.9,0.99,9.330,23.2 -11.6,0.99,10.040,21.9 -11.2,0.99,9.710,19.1 -10.5,0.99,10.150,20.6 -10.3,0.99,8.370,19.2 -10.3,0.99,7.620,25.5 -10.7,0.99,6.010,19.4 -11.4,0.99,4.550,16.6 -12.9,0.99,4.770,10.5 -13.9,0.99,1.890,355.4 -15.1,0.99,3.030,342.5 -15.9,0.99,4.410,329.3 -16.6,0.99,4.430,331.4 -17.1,0.99,5.160,341.8 -17.3,0.99,5.260,12.1 -16.7,0.99,6.190,33.3 -16.2,0.99,6.390,35.6 -15.6,0.99,7.300,41.9 -15.2,0.99,6.960,46.2 -15.0,0.99,7.720,59.2 -14.7,0.99,7.460,66.6 -14.8,0.99,7.550,74.1 -14.6,0.99,8.230,79.9 -14.6,0.99,7.800,75.1 -14.5,0.99,8.130,76.6 -14.4,0.99,8.290,77.6 -14.4,0.99,8.000,76.5 -14.6,0.99,8.400,83.8 -14.7,0.99,8.320,87.1 -14.9,0.99,8.210,87.5 -15.0,0.99,8.050,88.9 -15.2,0.99,8.110,87.6 -15.7,0.99,8.310,87.5 -15.7,0.99,8.700,86.8 -15.8,0.99,9.240,89.5 -16.0,0.98,9.120,88.2 -16.1,0.98,8.480,89.4 -16.4,0.98,7.470,94.1 -16.3,0.98,8.840,93.1 -16.5,0.98,8.680,92.5 -16.8,0.98,9.570,92.1 -17.0,0.98,8.780,87.3 -17.6,0.98,9.480,100.5 -18.6,0.98,9.970,132.3 -19.8,0.98,10.210,160.3 -19.7,0.98,10.380,164.7 -19.5,0.98,9.950,172.0 -19.0,0.98,10.760,167.5 -18.8,0.98,9.680,165.0 -20.1,0.98,10.820,180.9 -20.3,0.98,10.830,182.0 -20.0,0.98,11.440,190.8 -20.1,0.98,9.430,191.3 -18.0,0.98,12.950,182.6 -18.5,0.98,8.710,204.0 -17.3,0.98,8.730,233.8 -17.7,0.98,8.810,305.1 -19.6,0.98,10.160,275.9 -20.1,0.98,11.610,268.3 -19.4,0.98,12.780,270.1 -18.6,0.98,14.190,279.4 -17.6,0.98,14.200,277.8 -16.1,0.98,18.850,279.6 -14.6,0.98,19.970,280.2 -13.2,0.98,18.060,282.4 -12.1,0.98,19.440,286.1 -11.0,0.98,17.010,287.7 -9.3,0.98,21.830,291.2 -8.0,0.98,22.240,296.0 -7.1,0.98,18.870,297.1 -6.7,0.99,14.630,297.0 -6.4,0.99,14.860,296.5 -6.2,0.99,13.230,295.3 -6.0,0.99,12.900,296.9 -5.8,0.99,13.130,298.7 -5.8,0.99,10.990,300.0 -6.2,0.99,9.490,298.8 -6.9,0.99,9.150,299.9 -8.2,0.99,8.790,294.9 -9.5,0.99,7.950,291.9 -11.1,0.99,7.510,293.4 -12.4,0.99,7.740,294.5 -13.3,0.99,7.300,295.3 -14.0,0.99,6.760,294.1 -14.4,0.99,6.200,293.8 -14.6,0.99,6.440,286.1 -14.4,0.99,5.890,288.6 -14.4,0.99,3.590,279.9 -14.5,0.99,3.100,280.4 -14.4,0.99,2.710,272.1 -14.2,0.99,1.480,316.4 -14.1,0.99,0.470,63.1 -14.3,0.99,1.430,175.9 -14.5,0.99,1.890,170.7 -14.7,0.99,2.520,170.5 -14.6,0.99,3.460,175.5 -14.9,0.99,3.700,180.4 -15.3,0.99,4.110,202.5 -15.2,0.99,3.970,208.1 -15.2,0.99,4.300,207.6 -15.5,0.99,4.650,203.1 -15.6,0.99,5.580,214.7 -15.9,0.99,6.540,216.9 -16.1,0.99,6.040,227.5 -16.6,0.99,6.550,224.8 -17.0,0.99,7.360,226.8 -17.5,0.99,7.610,231.5 -19.3,0.99,10.970,311.7 -18.0,0.99,12.610,324.8 -16.9,0.99,12.430,331.5 -15.6,0.99,12.640,340.6 -14.5,0.99,11.990,344.1 -13.5,0.99,12.890,343.3 -13.0,1.00,13.210,344.3 -12.4,1.00,13.340,349.1 -12.1,1.00,12.900,351.4 -10.9,1.00,12.230,354.5 -10.1,1.00,12.540,357.8 -9.2,1.00,13.950,357.8 -8.1,1.00,14.350,357.5 -7.3,1.00,13.140,358.4 -6.5,1.00,12.220,359.6 -5.8,1.00,11.470,358.9 -5.4,1.00,10.640,356.2 -5.5,1.00,8.480,354.7 -5.9,1.00,7.580,349.5 -6.5,1.00,7.270,340.9 -7.4,1.00,7.850,336.4 -9.0,1.00,8.790,336.9 -10.2,1.00,8.900,335.5 -11.2,1.00,9.900,335.1 -11.7,1.00,9.490,336.5 -12.2,1.00,9.300,340.0 -12.4,1.00,10.330,341.1 -12.1,1.00,10.150,345.1 -11.8,1.00,9.860,343.6 -11.5,1.00,8.720,344.1 -11.4,1.00,8.570,344.0 -11.2,1.00,8.580,346.5 -11.0,1.00,8.160,349.3 -10.3,1.00,6.620,352.4 -9.8,1.00,6.640,345.5 -9.5,1.00,6.630,342.4 -8.9,1.00,6.920,343.3 -8.3,1.00,6.460,337.4 -7.7,1.00,6.620,347.9 -7.4,1.00,6.600,351.8 -7.0,1.00,6.510,350.4 -7.0,1.00,6.070,344.1 -7.7,1.00,6.440,336.6 -8.2,1.00,6.080,332.1 -8.6,1.00,5.690,327.0 -11.0,1.00,6.730,325.2 -12.3,1.00,8.000,325.2 -13.1,1.00,8.050,328.3 -13.7,1.00,7.220,331.1 -14.2,1.00,7.910,329.0 -14.7,1.00,7.940,329.4 -14.5,1.00,8.620,345.9 -13.9,1.00,7.230,3.3 -13.0,1.00,7.150,19.2 -12.9,1.00,7.370,7.3 -12.6,1.00,8.060,12.6 -12.1,1.00,5.290,6.0 -11.0,1.00,7.890,14.3 -10.6,1.00,6.890,18.2 -9.8,1.00,6.650,0.2 -9.4,1.00,8.740,358.3 -8.7,1.00,9.340,349.4 -8.1,1.00,10.470,351.4 -7.2,1.00,10.210,353.3 -6.8,1.00,10.420,346.8 -6.5,1.00,10.760,341.0 -6.2,1.00,11.690,337.9 -6.0,1.00,11.800,333.9 -6.1,1.00,11.190,331.4 -6.9,1.00,9.880,327.1 -8.4,1.00,11.140,328.8 -9.1,1.00,11.700,330.1 -9.5,1.00,11.470,332.2 -9.7,1.00,11.390,335.7 -9.7,1.00,11.860,340.6 -9.4,1.00,12.140,343.8 -9.1,1.00,9.640,348.9 -8.9,1.00,9.860,351.0 -8.9,1.00,8.950,352.8 -8.7,1.00,7.210,1.1 -8.8,1.00,6.280,4.8 -8.4,1.00,5.420,9.0 -8.4,1.00,4.400,13.3 -8.3,1.00,3.600,14.7 -8.2,1.00,3.330,17.1 -8.2,1.00,2.660,18.1 -8.3,1.00,1.960,22.9 -8.3,1.00,1.490,10.4 -8.5,1.00,0.940,54.3 -8.8,1.00,0.580,96.9 -9.1,1.00,0.570,150.4 -9.5,1.00,1.170,199.6 -9.9,1.00,1.490,181.7 -11.1,1.00,2.990,185.5 -12.0,1.00,3.940,181.0 -12.7,1.00,5.020,182.5 -13.2,1.00,6.180,178.4 -13.6,1.00,7.110,182.0 -14.1,1.00,8.160,185.5 -14.4,0.99,8.740,184.2 -14.7,0.99,9.930,185.2 -15.2,0.99,11.510,185.7 -15.6,0.99,11.790,187.0 -15.9,0.99,12.790,185.5 -16.1,0.99,12.190,187.7 -16.2,0.99,12.460,184.7 -16.6,0.99,13.720,188.5 -16.7,0.99,14.240,188.8 -16.9,0.99,14.330,188.7 -17.1,0.99,15.220,188.8 -17.2,0.99,14.920,191.9 -17.5,0.99,15.780,188.5 -17.7,0.99,14.860,188.8 -17.9,0.99,15.340,194.7 -17.9,0.99,14.510,194.8 -18.0,0.99,14.190,197.7 -18.2,0.99,13.470,198.3 -18.6,0.99,13.760,200.6 -18.8,0.99,12.930,200.4 -18.8,0.99,12.520,200.9 -18.8,0.99,12.670,201.1 -18.8,0.99,12.820,194.8 -18.8,0.99,13.510,192.2 -18.7,0.99,14.430,188.7 -18.7,0.99,14.650,192.7 -18.7,0.99,15.200,189.6 -18.7,0.99,15.320,192.5 -18.6,0.99,13.580,195.4 -18.6,0.99,12.710,198.1 -18.7,0.99,13.070,198.8 -18.6,0.99,11.760,203.1 -18.6,0.99,12.350,206.6 -18.6,0.99,10.710,207.5 -19.0,0.99,11.310,209.3 -18.9,0.99,9.010,239.6 -18.4,0.99,9.980,261.9 -17.8,0.99,10.280,269.3 -16.3,0.99,9.310,297.9 -17.1,0.99,11.020,318.4 -15.6,0.99,12.870,342.4 -16.2,1.00,11.290,347.1 -17.4,1.00,10.920,353.0 -17.8,1.00,11.420,348.6 -18.0,1.00,12.290,349.0 -17.8,1.00,12.250,349.2 -17.6,1.00,11.450,353.1 -17.2,1.00,12.250,353.3 -16.1,1.00,11.580,359.5 -14.7,1.00,12.500,355.8 -13.6,1.00,11.670,0.2 -12.9,1.00,14.220,3.5 -12.2,1.00,15.170,8.9 -11.5,1.00,15.330,12.8 -10.8,1.00,14.570,14.8 -10.4,1.00,14.100,19.1 -9.9,1.00,13.650,22.1 -9.5,1.00,13.450,27.3 -9.2,1.00,13.110,30.8 -8.8,1.00,12.880,33.1 -8.3,1.00,11.980,35.9 -8.1,1.00,11.850,36.6 -8.1,1.00,9.930,41.1 -8.4,1.00,8.510,37.5 -8.8,1.00,5.640,39.2 -9.3,1.00,3.970,32.4 -10.3,1.00,1.990,12.4 -11.0,1.00,1.360,284.6 -11.4,1.00,1.840,255.3 -12.1,1.00,1.810,244.0 -12.6,1.00,1.970,219.6 -13.1,1.00,1.350,232.4 -13.0,1.00,1.690,181.0 -13.0,1.00,2.980,170.4 -13.0,1.00,2.690,168.0 -13.1,1.00,2.490,157.7 -13.2,1.00,1.860,148.2 -13.3,1.00,1.480,140.6 -13.2,1.00,2.250,129.9 -13.2,1.00,2.460,129.0 -13.3,1.00,2.960,123.9 -13.4,1.00,3.210,111.8 -13.4,1.00,4.070,105.5 -13.4,1.00,4.890,104.7 -13.5,1.00,5.060,106.6 -13.7,1.00,4.800,106.3 -13.9,1.00,6.940,111.5 -13.8,1.00,7.000,107.5 -13.8,1.00,6.930,107.0 -13.8,1.00,7.150,108.4 -14.0,1.00,7.230,111.3 -14.1,1.00,7.300,113.0 -14.2,1.00,7.310,114.5 -14.3,1.00,7.530,115.8 -14.4,1.00,7.340,116.4 -14.5,1.00,7.510,117.7 -14.5,1.00,8.130,119.6 -14.5,1.00,8.430,123.2 -14.7,1.00,8.690,124.5 -14.9,1.00,8.760,126.0 -15.0,1.00,8.880,127.0 -15.2,1.00,8.070,127.1 -15.5,1.00,8.400,128.8 -15.6,1.00,8.030,132.1 -15.7,1.00,7.660,132.1 -15.9,1.00,7.850,129.4 -16.0,1.00,7.740,124.5 -16.0,1.00,8.220,126.5 -16.2,1.00,8.710,127.3 -16.1,1.00,8.300,119.1 -16.3,1.00,8.770,119.7 -16.3,1.00,8.380,114.0 -16.3,1.00,8.320,107.8 -16.3,1.00,9.010,109.1 -16.4,1.00,8.850,111.0 -16.4,1.00,9.270,110.1 -16.3,1.00,9.980,109.8 -16.3,1.00,10.110,111.8 -16.1,1.00,10.190,112.5 -15.8,1.00,9.400,110.7 -16.0,1.00,9.350,115.2 -16.1,1.00,10.400,118.9 -16.3,1.00,11.260,123.7 -16.4,0.99,10.820,126.6 -16.6,0.99,10.410,129.6 -17.0,0.99,10.890,134.6 -17.4,0.99,10.040,146.3 -17.7,0.99,11.590,145.9 -17.9,0.99,10.740,152.9 -17.8,0.99,8.780,148.5 -18.7,0.99,10.910,161.6 -18.6,0.99,9.430,160.4 -18.4,0.99,10.540,157.2 -18.4,0.99,10.620,145.5 -19.0,0.99,10.620,151.1 -19.1,0.99,11.170,155.6 -19.1,0.99,11.730,150.9 -18.7,0.99,11.470,141.4 -18.7,0.99,10.200,149.3 -18.9,0.99,11.580,151.1 -19.1,0.99,10.680,149.4 -18.0,0.99,9.500,136.6 -19.0,0.99,12.250,158.9 -19.0,0.99,12.810,158.3 -19.1,0.99,13.340,149.5 -18.6,0.99,13.290,148.4 -18.4,0.99,12.310,144.6 -18.7,0.99,13.910,154.5 -18.5,0.98,13.720,153.4 -18.7,0.98,13.730,153.9 -18.6,0.98,12.680,154.5 -18.8,0.98,13.000,156.8 -18.8,0.98,12.670,156.6 -18.6,0.98,11.540,155.1 -18.7,0.98,11.790,156.9 -19.1,0.98,9.720,177.1 -19.1,0.99,7.720,188.4 -19.5,0.99,9.050,191.4 -19.7,0.99,8.810,189.9 -20.3,0.99,11.900,177.3 -16.6,0.99,5.830,283.2 -14.1,0.99,11.310,345.6 -13.7,0.99,12.270,348.8 -13.7,0.99,11.660,345.2 -13.7,0.99,11.100,346.6 -13.8,0.99,10.110,348.4 -14.3,0.99,8.630,348.5 -14.8,0.99,7.280,352.4 -14.8,0.99,6.380,354.5 -15.6,0.99,10.130,343.8 -15.0,0.99,14.040,341.2 -14.0,0.99,14.840,342.6 -13.1,0.99,14.000,351.5 -12.0,0.99,14.550,355.6 -11.1,0.99,13.390,359.9 -10.6,0.99,12.320,359.2 -9.8,0.99,12.370,1.3 -9.5,0.99,11.630,2.5 -9.3,0.99,11.160,1.9 -9.1,0.99,11.210,1.5 -8.7,0.99,10.360,0.1 -8.6,0.99,9.980,357.1 -8.5,0.99,8.220,350.5 -8.7,0.99,7.480,343.2 -8.9,0.99,8.670,333.5 -9.2,0.99,7.690,329.1 -11.0,0.99,10.350,323.7 -11.9,0.99,10.150,328.0 -12.9,0.99,10.060,328.4 -13.4,0.99,10.540,330.4 -13.7,0.99,9.930,332.0 -13.8,0.99,8.490,328.2 -13.5,0.99,8.760,346.3 -13.1,0.99,8.120,347.4 -12.8,0.99,7.180,348.8 -12.4,0.99,5.490,6.2 -12.2,0.99,4.680,8.1 -12.2,0.99,4.980,7.9 -11.7,0.99,4.730,12.3 -11.3,0.99,4.140,14.2 -11.2,0.99,4.370,13.9 -10.8,0.99,3.690,24.0 -11.0,0.99,3.810,39.7 -11.2,1.00,3.810,42.9 -11.2,1.00,3.650,44.7 -11.3,1.00,3.160,50.8 -11.5,1.00,3.250,44.5 -11.6,1.00,3.280,43.1 -11.9,1.00,2.870,47.1 -12.3,1.00,2.430,65.1 -13.1,1.00,1.830,99.6 -13.6,1.00,1.690,129.5 -14.0,1.00,1.850,133.4 -14.3,1.00,2.080,151.9 -14.5,1.00,2.370,151.0 -14.7,1.00,2.740,144.6 -14.6,1.00,3.230,142.6 -14.6,1.00,2.860,141.8 -14.7,1.00,2.380,139.1 -14.8,1.00,2.210,129.6 -14.8,1.00,2.240,120.2 -14.9,1.00,1.700,115.1 -14.9,1.00,2.180,95.7 -14.9,1.00,2.110,77.4 -14.6,1.00,2.380,50.9 -14.2,1.00,2.850,25.2 -13.9,1.00,3.070,15.5 -13.6,1.00,3.350,14.1 -12.6,1.00,5.240,10.5 -12.6,1.00,5.150,22.8 -11.7,1.00,7.470,35.9 -13.2,1.00,7.450,47.3 -13.0,1.00,6.550,55.5 -13.6,1.00,6.260,65.1 -14.8,1.00,5.610,84.6 -15.0,1.00,4.780,91.3 -15.2,1.00,3.830,100.5 -15.3,1.00,3.140,107.0 -15.4,1.00,2.550,113.0 -15.5,1.00,2.630,113.2 -15.4,1.00,2.920,112.0 -15.3,1.00,2.840,112.6 -15.4,1.00,2.920,108.4 -15.2,1.00,2.960,107.9 -15.2,1.00,3.700,107.6 -15.2,1.00,3.970,109.7 -15.2,1.00,4.380,100.0 -15.5,1.00,5.350,105.4 -15.5,1.00,5.710,110.7 -15.3,1.00,5.660,109.4 -15.3,1.00,5.950,114.1 -15.3,1.00,5.920,115.3 -15.3,1.00,6.160,118.2 -15.2,1.00,6.770,119.8 -15.2,1.00,6.910,123.9 -15.1,1.00,6.680,122.9 -15.1,1.00,6.140,125.4 -15.1,1.00,5.830,130.0 -15.4,1.00,5.530,134.8 -15.4,1.00,5.570,138.6 -15.4,1.00,5.460,144.3 -15.5,1.00,5.450,150.9 -15.5,1.00,5.500,154.7 -15.5,1.00,5.820,157.0 -15.4,1.00,6.060,158.6 -15.4,1.00,6.300,160.6 -15.4,1.00,6.470,162.5 -15.5,1.00,6.380,164.7 -15.6,1.00,6.560,169.7 -15.7,1.00,6.620,172.9 -15.8,1.00,7.060,177.0 -15.9,1.00,6.780,180.6 -16.1,1.00,6.880,182.0 -16.2,1.00,6.920,183.7 -16.4,1.00,6.630,186.1 -16.4,1.00,6.620,184.3 -16.6,1.00,6.950,189.3 -16.7,1.00,6.690,189.8 -16.9,1.00,6.880,188.9 -17.0,1.00,7.180,188.0 -17.1,1.00,6.610,188.9 -17.3,1.00,7.380,194.1 -17.6,1.00,7.260,194.9 -17.8,1.00,8.180,194.6 -17.8,1.00,8.130,195.5 -17.8,1.00,8.070,194.5 -17.9,1.00,7.860,193.0 -17.9,1.00,7.640,191.2 -17.7,1.00,8.020,189.7 -17.7,0.99,8.360,187.3 -17.6,0.99,8.060,185.6 -17.6,0.99,8.680,184.8 -17.7,0.99,9.530,186.2 -17.8,0.99,9.990,189.2 -17.9,0.99,11.130,191.3 -17.8,0.99,11.270,191.1 -17.9,0.99,11.730,195.8 -17.7,0.99,11.180,197.2 -17.9,0.99,11.510,194.7 -17.9,0.99,11.320,191.1 -17.9,0.99,10.240,189.3 -18.1,0.99,10.760,187.4 -18.2,0.99,10.710,190.1 -18.2,0.99,9.420,188.5 -18.2,0.99,9.190,186.7 -18.4,0.99,9.400,187.7 -18.4,0.99,8.000,181.6 -18.6,0.99,8.580,181.8 -18.7,0.99,9.350,176.1 -18.7,0.99,9.030,172.4 -18.8,0.99,9.580,174.1 -18.8,0.99,10.230,169.8 -18.6,0.99,10.440,168.1 -18.9,0.99,10.930,167.0 -18.7,0.99,11.280,166.5 -18.7,0.99,11.040,167.6 -18.7,0.99,11.120,166.3 -18.7,0.99,11.120,168.1 -18.8,0.99,11.240,172.3 -18.9,0.99,11.340,171.3 -18.9,0.99,11.510,172.8 -19.1,0.99,11.580,173.2 -19.1,0.99,11.460,177.4 -19.1,0.99,11.070,172.7 -19.3,0.99,11.570,172.0 -19.2,0.99,11.080,168.4 -19.6,0.99,11.420,164.8 -19.4,0.99,10.760,162.9 -19.3,0.99,10.430,165.8 -19.4,0.99,9.770,168.2 -19.6,0.99,10.090,171.5 -19.6,0.99,10.420,169.4 -19.6,0.98,11.060,169.3 -19.6,0.98,10.490,171.1 -19.7,0.98,10.710,174.8 -19.4,0.98,10.060,169.1 -19.1,0.98,10.350,165.3 -18.8,0.98,10.760,167.1 -18.4,0.98,10.610,172.0 -18.1,0.98,9.710,170.2 -18.6,0.98,8.610,168.5 -19.7,0.98,12.370,181.5 -19.8,0.98,11.670,185.5 -18.6,0.98,10.730,193.6 -19.0,0.98,8.830,186.7 -18.7,0.98,7.270,192.0 -19.6,0.98,8.220,195.8 -19.0,0.98,8.800,196.0 -19.3,0.98,10.290,196.8 -17.9,0.99,7.730,219.4 -18.3,0.99,4.780,228.2 -18.6,0.99,2.560,212.3 -18.7,0.99,3.740,190.2 -19.1,0.99,4.930,183.2 -19.3,0.99,6.300,191.5 -19.4,0.98,5.610,201.2 -19.4,0.98,5.290,193.4 -19.6,0.98,4.460,185.9 -19.4,0.98,4.760,182.5 -19.2,0.98,4.450,182.6 -19.1,0.99,4.680,179.6 -19.2,0.99,4.230,195.9 -19.2,0.99,4.100,202.3 -19.3,0.99,2.180,217.9 -19.3,0.99,3.540,346.7 -19.7,0.99,5.090,14.3 -20.1,0.99,9.360,29.8 -19.1,0.99,11.530,43.5 -19.1,0.99,12.330,46.5 -18.3,0.99,13.110,55.6 -18.1,0.99,13.140,66.1 -18.0,0.99,12.780,76.3 -17.7,0.99,13.510,78.7 -17.6,0.99,11.930,87.4 -17.6,0.99,10.750,92.5 -17.4,0.99,10.040,96.1 -17.3,0.99,9.260,97.7 -17.4,0.99,8.380,99.8 -17.7,0.99,7.970,103.5 -17.7,0.99,7.220,101.3 -17.7,0.99,6.640,93.7 -17.6,0.99,6.600,81.9 -17.6,0.99,6.670,81.2 -17.9,0.99,6.210,82.1 -17.7,0.99,7.440,80.1 -17.8,0.99,8.260,77.8 -17.9,0.99,7.390,76.5 -18.3,0.99,7.740,81.5 -17.9,0.99,7.300,63.8 -18.0,0.99,7.300,69.0 -18.0,0.99,7.980,63.4 -17.4,0.99,8.650,48.0 -18.2,0.99,10.160,41.6 -17.7,0.99,13.470,26.1 -16.0,0.99,16.480,26.2 -14.6,0.99,15.100,22.7 -13.4,0.99,14.820,51.0 -13.2,1.00,14.190,58.8 -13.8,1.00,12.300,65.2 -14.3,1.00,12.100,44.9 -14.8,1.00,8.410,40.2 -15.5,1.00,6.860,42.7 -16.3,1.00,6.920,63.0 -17.6,0.99,8.080,69.6 -18.3,0.99,7.790,76.8 -17.9,0.99,6.780,94.3 -17.9,0.99,6.220,95.5 -18.5,0.99,6.620,90.6 -19.0,0.99,8.570,81.2 -18.7,0.99,7.760,62.4 -18.0,0.99,7.150,56.0 -17.8,0.99,7.670,75.1 -17.6,0.99,8.700,86.2 -17.4,0.99,8.260,93.9 -17.1,0.99,7.930,98.4 -16.9,0.99,8.470,113.1 -16.9,0.99,8.010,109.8 -16.8,0.99,8.320,111.0 -16.7,0.99,9.050,115.1 -16.6,0.99,9.260,120.0 -16.7,0.99,9.540,128.3 -16.7,0.99,9.870,129.1 -16.8,0.99,9.900,132.8 -16.9,0.99,9.540,132.7 -16.9,0.99,9.920,137.5 -17.2,0.99,9.640,137.9 -17.6,0.99,10.710,143.3 -17.8,0.99,10.970,144.2 -17.8,0.99,11.530,146.4 -18.0,0.99,11.960,148.0 -18.1,0.98,11.900,149.2 -18.3,0.98,12.610,152.6 -18.4,0.98,11.450,154.6 -18.6,0.98,11.960,156.1 -18.8,0.98,11.770,158.7 -18.8,0.98,10.080,158.9 -18.9,0.98,10.310,162.7 -19.0,0.98,11.000,167.5 -19.1,0.98,10.880,168.2 -19.0,0.98,11.160,172.5 -19.4,0.98,11.010,181.2 -19.9,0.98,11.040,182.7 -19.5,0.98,9.460,178.2 -19.9,0.98,10.950,184.2 -20.1,0.98,11.130,186.7 -20.3,0.98,10.380,189.8 -20.1,0.98,10.890,184.0 -19.8,0.98,9.710,179.4 -19.7,0.98,8.980,176.3 -19.8,0.98,9.340,173.7 -20.3,0.98,9.470,177.3 -20.0,0.98,8.490,175.2 -20.5,0.98,8.290,184.8 -20.5,0.98,7.690,182.8 -20.1,0.98,7.370,175.7 -20.3,0.98,6.600,176.2 -20.2,0.98,6.750,172.3 -20.6,0.98,6.200,167.5 -20.0,0.98,6.220,156.4 -18.7,0.98,6.570,149.7 -18.8,0.98,5.780,146.8 -19.0,0.98,6.450,145.8 -19.0,0.98,6.770,146.6 -18.9,0.98,6.220,139.3 -19.5,0.98,6.120,142.3 -19.4,0.98,5.380,143.6 -19.5,0.98,5.340,135.3 -19.8,0.98,4.570,127.6 -19.4,0.98,3.490,117.7 -19.7,0.98,3.110,124.1 -19.4,0.98,3.430,105.8 -19.8,0.98,2.250,116.6 -19.8,0.98,0.930,84.9 -19.5,0.98,2.190,42.9 -19.8,0.98,2.520,32.6 -19.9,0.98,2.210,30.3 -19.9,0.98,2.740,26.3 -20.0,0.98,1.950,26.2 -19.9,0.98,1.080,33.8 -19.8,0.98,0.360,210.6 -19.7,0.98,0.850,268.0 -20.1,0.98,1.470,337.2 -20.7,0.98,1.520,337.1 -20.3,0.98,1.750,295.3 -20.1,0.98,2.540,253.7 -19.3,0.98,3.700,281.9 -19.4,0.98,2.290,275.3 -19.3,0.98,6.790,324.4 -19.5,0.98,6.550,319.5 -18.9,0.98,5.600,7.6 -17.8,0.98,7.180,358.3 -15.8,0.99,13.860,340.6 -14.8,0.99,14.110,341.7 -13.7,0.99,16.230,333.4 -12.2,0.99,15.340,336.2 -11.6,0.99,14.430,335.5 -11.5,0.99,14.430,334.5 -11.9,0.99,12.850,331.1 -13.0,0.99,13.670,330.3 -13.6,0.99,14.210,331.1 -14.0,0.99,13.980,334.0 -13.9,0.99,14.350,332.8 -13.7,0.99,13.360,341.7 -13.4,0.99,12.820,343.5 -12.7,0.99,13.660,351.0 -11.8,0.99,13.320,355.8 -11.4,0.99,13.040,359.7 -10.6,0.99,13.890,3.8 -10.2,0.99,13.670,10.8 -9.7,1.00,14.490,14.9 -9.0,1.00,14.630,16.4 -8.6,1.00,14.490,21.2 -8.2,1.00,14.880,25.2 -7.7,1.00,14.740,25.6 -7.3,1.00,14.150,25.7 -6.9,1.00,12.980,25.9 -6.2,1.00,12.060,24.3 -6.0,1.00,10.800,24.4 -6.1,1.00,8.990,20.0 -6.7,1.00,8.250,12.8 -7.7,1.00,8.140,6.8 -9.1,1.00,7.320,1.0 -10.6,1.00,6.930,356.1 -11.5,1.00,7.220,350.5 -12.1,1.00,7.670,344.0 -12.5,1.00,7.430,341.6 -12.8,1.00,7.670,342.4 -12.9,1.00,8.880,345.1 -12.7,1.00,9.020,1.3 -12.4,1.00,8.700,358.2 -12.0,1.00,9.750,1.8 -11.7,1.00,10.650,7.5 -11.3,1.00,11.630,6.9 -10.8,1.00,12.700,10.9 -9.8,1.00,12.140,20.6 -9.6,1.00,11.950,20.8 -9.2,1.00,11.700,19.8 -8.8,1.00,10.860,22.4 -8.6,1.00,10.590,22.0 -8.2,1.00,10.010,24.8 -7.8,1.01,9.040,27.0 -7.6,1.01,8.570,29.5 -7.5,1.01,7.870,28.1 -7.6,1.01,6.790,26.9 -7.9,1.01,5.340,17.5 -9.0,1.01,4.870,355.8 -9.9,1.01,4.420,331.9 -11.3,1.00,5.520,349.4 -12.1,1.00,6.770,344.8 -12.6,1.00,6.250,340.8 -13.0,1.00,6.610,349.6 -13.1,1.00,7.790,349.5 -13.0,1.00,6.810,4.6 -12.6,1.00,6.190,11.7 -12.4,1.00,5.320,24.9 -12.3,1.00,4.650,38.0 -12.4,1.00,3.840,55.0 -12.5,1.00,3.740,65.1 -12.4,1.00,3.830,76.5 -12.4,1.00,3.390,83.5 -12.3,1.00,3.590,101.4 -12.4,1.00,3.790,99.3 -12.6,1.00,3.430,108.8 -12.7,1.00,4.120,115.8 -12.6,1.00,3.090,112.7 -12.8,1.00,4.380,121.6 -12.9,1.00,5.540,127.6 -13.1,1.00,4.440,135.6 -13.2,1.00,5.410,115.9 -13.4,1.00,4.810,136.6 -13.7,1.00,4.920,129.9 -13.9,1.00,5.950,135.6 -13.8,1.00,6.650,128.5 -13.9,1.00,7.620,126.6 -14.0,1.00,7.420,132.1 -14.1,1.00,8.230,131.9 -14.1,1.00,8.310,135.2 -14.3,1.00,8.430,139.9 -14.5,1.00,8.220,140.8 -14.7,1.00,8.390,142.4 -14.9,1.00,8.110,151.8 -15.1,1.00,8.170,150.2 -15.3,1.00,8.090,153.5 -15.5,1.00,7.390,153.4 -15.7,1.00,7.330,163.3 -15.8,1.00,6.360,153.6 -16.1,1.00,6.010,156.2 -16.1,1.00,5.550,150.0 -16.3,1.00,5.700,147.2 -16.3,1.00,6.910,135.5 -16.5,1.00,7.400,130.9 -16.4,1.00,7.300,121.6 -16.5,1.00,8.220,122.6 -16.6,1.00,8.020,122.4 -16.7,1.00,8.280,125.9 -16.9,1.00,8.240,131.2 -17.0,1.00,8.160,133.7 -16.9,1.00,8.820,129.2 -17.0,1.00,8.660,133.1 -17.1,1.00,8.920,135.4 -16.8,1.00,7.730,126.6 -17.1,1.00,8.380,135.7 -17.1,1.00,8.450,134.5 -17.1,1.00,7.830,134.8 -17.3,1.00,8.500,142.5 -17.3,1.00,8.490,145.5 -17.4,1.00,8.410,146.4 -17.3,1.00,8.320,146.2 -17.3,1.00,8.630,145.0 -17.5,1.00,8.370,146.9 -17.5,1.00,8.310,144.2 -17.7,1.00,9.080,145.4 -17.7,1.00,8.890,142.3 -17.8,1.00,9.310,145.0 -17.7,1.00,8.480,140.2 -17.8,1.00,8.850,142.2 -17.9,1.00,8.690,143.5 -17.9,1.00,8.180,142.8 -18.2,1.00,8.160,147.6 -18.2,1.00,8.040,144.0 -18.2,1.00,8.290,144.8 -18.2,1.00,7.740,142.1 -18.3,1.00,7.950,146.0 -18.2,1.00,7.580,139.1 -18.0,1.00,7.940,136.8 -17.9,1.00,8.290,137.5 -18.0,1.00,8.730,140.9 -18.0,1.00,8.140,143.1 -18.1,1.00,8.620,147.6 -18.2,1.00,8.400,151.1 -18.2,1.00,8.990,153.0 -18.2,0.99,8.680,149.5 -18.3,0.99,7.780,149.6 -18.4,0.99,9.180,155.9 -18.5,0.99,8.530,158.6 -18.7,0.99,7.840,167.2 -18.7,0.99,7.260,164.8 -18.7,0.99,6.570,165.0 -18.8,0.99,6.890,174.4 -18.9,0.99,6.760,179.8 -19.1,0.99,6.350,174.0 -19.2,0.99,7.490,176.1 -19.2,0.99,7.930,179.4 -19.1,0.99,7.230,179.8 -19.1,0.99,7.840,182.7 -19.1,0.99,7.760,184.2 -19.2,0.99,6.550,188.2 -19.2,0.99,6.570,187.7 -18.8,0.99,6.800,186.4 -18.9,0.99,7.890,188.5 -19.0,0.99,8.920,190.6 -18.9,0.99,9.660,188.3 -18.8,0.99,10.290,188.6 -19.0,0.99,9.780,194.5 -18.6,0.99,9.110,186.9 -18.6,0.99,9.970,191.4 -18.7,0.99,8.600,190.4 -18.9,0.99,6.430,199.0 -19.1,0.99,7.640,203.8 -19.4,0.99,8.400,193.7 -19.2,0.99,9.430,187.7 -19.2,0.99,6.170,185.3 -19.3,0.99,6.460,184.4 -19.4,0.99,8.550,190.4 -19.6,0.99,8.710,186.0 -19.5,0.99,8.210,182.4 -19.7,0.99,6.920,189.7 -19.9,0.99,5.520,190.1 -19.9,0.99,5.920,183.7 -19.9,0.99,6.980,176.4 -20.0,0.99,8.040,172.2 -18.3,0.99,13.210,56.4 -17.5,0.99,14.230,29.6 -17.9,0.99,5.490,11.8 -22.5,0.99,13.620,131.3 -19.1,0.99,11.340,143.5 -18.9,0.99,10.860,170.3 -18.9,0.99,7.950,161.4 -18.9,0.99,7.510,169.9 -19.1,0.99,6.250,164.3 -18.7,0.99,3.350,174.4 -18.4,0.99,1.950,191.1 -18.3,0.99,0.870,273.0 -18.0,0.99,0.830,335.5 -18.0,0.99,1.600,21.2 -18.0,0.99,2.760,51.6 -18.1,0.99,2.890,72.3 -17.9,0.99,3.730,97.5 -17.8,0.99,3.150,94.6 -17.7,0.99,3.790,87.4 -18.1,0.99,4.460,113.1 -18.3,0.99,4.840,122.0 -18.3,0.99,5.060,120.6 -18.3,0.99,5.450,120.9 -18.4,0.99,5.430,126.8 -18.3,0.99,5.730,129.3 -18.0,0.99,6.120,141.7 -18.2,0.99,6.250,143.1 -18.1,0.99,6.620,144.8 -18.2,0.99,7.190,143.5 -18.2,0.99,7.020,153.7 -18.0,0.99,5.670,152.0 -17.1,0.99,7.300,166.9 -17.9,0.99,6.620,171.5 -18.2,0.99,5.020,137.7 -18.4,0.99,6.560,136.5 -18.6,0.99,5.960,135.8 -18.6,0.99,5.990,135.9 -18.7,0.99,5.920,117.9 -18.8,0.99,8.560,118.9 -18.7,0.99,7.390,128.9 -19.3,0.99,9.830,132.3 -19.2,0.99,9.710,129.6 -19.0,0.99,7.430,133.9 -19.4,0.99,6.790,138.4 -19.5,0.99,5.450,128.3 -19.4,0.99,5.050,112.8 -19.4,0.99,5.480,100.8 -19.5,0.99,7.610,87.0 -19.6,0.99,8.760,98.4 -19.2,0.99,9.560,99.2 -19.4,0.99,10.820,114.2 -19.5,0.99,9.380,105.7 -19.3,0.99,8.530,93.7 -19.4,0.99,9.220,114.8 -19.1,0.99,7.550,110.6 -19.3,0.99,6.650,102.1 -19.4,0.99,6.460,109.3 -17.2,0.99,10.580,171.3 -17.8,0.99,3.510,158.8 -17.6,0.99,4.990,252.2 -18.0,0.99,2.380,223.2 -17.9,0.99,5.200,297.0 -14.7,0.99,14.690,0.1 -16.4,0.99,7.600,82.0 -16.1,0.99,7.820,13.8 -16.2,0.99,10.700,15.2 -16.3,0.99,8.480,24.6 -16.4,0.99,7.940,36.2 -17.3,0.99,5.410,39.4 -18.6,0.99,8.770,4.2 -17.6,0.99,11.590,7.0 -15.9,0.99,11.800,10.5 -14.1,0.99,11.100,12.6 -12.9,0.99,9.650,31.1 -12.2,0.99,9.480,14.4 -12.1,0.99,8.260,8.3 -11.9,0.99,9.180,15.6 -11.6,0.99,10.360,18.2 -11.7,0.99,8.670,0.9 -11.2,0.99,8.990,356.0 -11.1,0.99,8.230,350.2 -11.1,0.99,7.000,345.4 -11.0,0.99,6.750,354.1 -10.9,0.99,6.740,330.4 -10.7,0.99,8.080,335.2 -10.6,0.99,8.180,329.1 -10.2,0.99,9.810,332.2 -9.9,0.99,9.490,333.7 -9.8,0.99,9.400,332.5 -9.9,0.99,9.600,326.8 -9.9,0.99,11.450,322.9 -10.4,0.99,10.010,334.9 -10.8,0.99,10.870,335.6 -11.1,0.99,10.730,336.8 -11.2,0.99,11.760,333.2 -10.8,0.99,10.740,339.6 -10.7,0.99,10.610,337.6 -10.2,0.99,9.830,338.0 -10.0,0.99,9.620,344.0 -9.9,1.00,9.180,347.6 -10.1,1.00,8.720,348.8 -10.3,1.00,9.540,347.8 -9.7,1.00,9.360,0.6 -9.3,1.00,9.150,355.9 -9.1,1.00,8.670,354.7 -9.3,1.00,7.340,356.2 -9.4,1.00,6.890,351.7 -9.3,1.00,7.650,354.1 -9.6,1.00,7.690,352.7 -9.3,1.00,7.140,354.6 -9.3,1.00,6.190,353.6 -9.6,1.00,4.790,344.2 -10.1,1.00,3.820,341.1 -10.7,1.00,2.990,330.5 -11.4,1.00,2.760,284.2 -13.3,1.00,2.770,267.1 -14.5,1.00,2.600,267.1 -15.4,1.00,2.540,262.0 -15.9,1.00,1.710,216.1 -16.2,1.00,2.920,200.3 -16.4,1.00,3.310,191.1 -16.2,0.99,4.060,190.7 -16.2,0.99,3.960,180.1 -16.4,0.99,4.030,175.0 -16.4,0.99,4.050,172.6 -16.5,0.99,3.610,170.9 -16.6,0.99,4.150,163.9 -16.5,0.99,5.020,151.6 -16.4,0.99,5.220,145.9 -16.5,0.99,5.930,142.2 -16.6,0.99,7.780,138.1 -16.6,0.99,8.640,141.2 -16.7,0.99,9.380,146.6 -16.8,0.99,9.430,149.6 -17.0,0.99,9.520,152.8 -17.2,0.99,9.730,152.9 -17.4,0.99,8.480,167.1 -17.6,0.99,7.780,157.1 -17.9,0.99,7.450,167.5 -18.4,0.99,7.380,173.3 -18.6,0.99,8.780,169.9 -18.7,0.99,8.650,169.0 -18.7,0.99,8.950,169.3 -18.6,0.99,8.200,165.7 -18.6,0.99,7.610,160.1 -18.4,0.99,6.930,151.3 -18.4,0.99,7.890,161.0 -18.6,0.99,8.630,161.2 -18.7,0.99,8.860,157.4 -18.6,0.99,7.650,156.1 -18.8,0.99,8.950,164.3 -18.8,0.99,8.620,163.7 -18.9,0.99,8.260,167.0 -18.9,0.99,8.630,166.6 -19.0,0.99,8.450,166.5 -19.0,0.99,8.150,166.9 -19.0,0.99,8.380,164.2 -19.4,0.99,9.190,171.3 -19.1,0.99,8.130,157.0 -19.2,0.99,8.030,159.1 -19.1,0.99,8.290,154.4 -19.2,0.99,8.060,157.3 -19.3,0.99,8.190,156.2 -19.5,0.99,8.510,155.2 -19.5,0.99,8.120,152.3 -19.6,0.99,8.700,156.2 -19.6,0.99,9.130,149.8 -19.5,0.99,8.720,151.1 -19.4,0.99,9.480,149.6 -19.3,0.99,10.160,149.2 -19.3,0.99,10.690,154.5 -19.3,0.99,10.840,154.9 -19.3,0.99,11.610,154.1 -19.4,0.99,11.780,163.6 -19.3,0.99,11.280,161.2 -19.3,0.99,10.920,161.1 -19.3,0.99,9.890,163.1 -19.7,0.99,10.620,170.4 -19.7,0.99,10.360,169.5 -19.5,0.99,9.350,162.8 -19.4,0.99,9.820,160.4 -19.8,0.99,11.360,160.7 -19.5,0.99,10.520,154.7 -19.5,0.99,10.530,148.1 -19.7,0.99,11.210,144.6 -19.8,0.99,10.300,149.9 -19.9,0.99,10.010,142.7 -20.0,0.99,9.060,150.2 -20.6,0.99,11.620,158.5 -20.1,0.99,8.100,126.0 -20.2,0.99,10.550,138.8 -19.9,0.99,9.190,128.8 -20.1,0.99,9.940,147.9 -19.9,0.99,11.560,138.7 -19.9,0.99,10.610,143.4 -19.7,0.99,11.030,133.4 -20.0,0.98,11.490,146.2 -19.8,0.98,10.900,142.2 -19.9,0.98,10.230,151.2 -19.8,0.98,10.540,149.5 -20.2,0.98,12.640,148.2 -20.1,0.98,12.280,143.3 -20.0,0.98,12.750,146.9 -20.0,0.98,12.060,145.9 -20.2,0.98,13.290,148.3 -20.1,0.98,13.440,144.7 -20.3,0.98,14.100,139.2 -20.0,0.98,12.970,136.4 -20.0,0.99,14.210,140.0 -20.3,0.99,13.080,138.2 -20.4,0.99,13.060,137.9 -20.8,0.99,13.100,141.2 -20.8,0.99,12.540,140.4 -20.8,0.98,13.050,136.0 -20.7,0.98,13.260,133.2 -20.8,0.98,14.240,133.5 -21.1,0.98,15.210,138.1 -21.1,0.98,16.620,141.2 -21.1,0.98,16.850,141.0 -20.8,0.98,16.670,141.1 -20.6,0.98,16.940,141.2 -20.9,0.98,16.610,143.7 -20.7,0.98,17.700,146.0 -20.6,0.98,16.250,143.4 -20.6,0.98,15.470,142.9 -20.6,0.98,15.150,147.5 -20.5,0.98,14.140,144.7 -20.8,0.98,16.710,151.4 -20.9,0.98,16.310,151.7 -20.7,0.98,15.360,149.6 -21.2,0.98,15.090,148.9 -21.1,0.98,13.760,144.1 -21.1,0.98,14.430,143.2 -21.5,0.98,13.040,147.0 -21.2,0.98,12.840,143.3 -21.8,0.98,12.710,150.8 -21.7,0.98,10.550,159.9 -21.7,0.98,8.520,167.6 -21.2,0.98,5.180,157.3 -21.4,0.98,5.850,155.0 -21.4,0.98,7.360,146.5 -22.1,0.98,8.610,150.8 -21.8,0.98,7.340,159.6 -21.7,0.98,5.430,173.0 -16.4,0.98,7.730,345.4 -15.2,0.98,9.800,339.8 -14.6,0.98,10.680,339.9 -12.7,0.98,11.620,345.8 -11.3,0.98,12.210,345.8 -10.9,0.98,12.930,345.9 -10.5,0.98,12.480,349.2 -10.2,0.98,12.380,352.8 -9.3,0.99,16.210,341.6 -9.1,0.98,14.660,0.9 -9.2,0.99,11.760,349.1 -9.7,0.99,8.660,1.8 -10.1,0.99,7.850,358.9 -9.2,0.99,9.010,341.7 -10.2,0.99,10.500,333.6 -12.6,0.99,7.870,344.6 -14.3,0.99,6.780,335.5 -15.6,0.99,7.020,330.2 -16.8,0.99,7.070,329.1 -17.7,0.99,6.830,331.1 -17.9,0.99,6.270,330.4 -18.0,0.99,6.280,336.6 -18.0,0.99,5.850,348.0 -17.7,0.99,4.770,6.9 -17.4,0.99,4.880,9.3 -17.2,0.99,4.750,11.1 -17.2,0.99,4.190,10.4 -16.5,0.99,3.790,30.5 -16.1,0.99,3.700,38.0 -15.6,0.99,3.700,31.4 -15.0,0.99,3.160,29.9 -15.0,0.99,3.460,36.6 -14.9,0.99,3.970,44.0 -15.4,0.99,4.580,52.5 -15.9,0.99,4.890,55.2 -16.3,0.99,4.800,65.7 -16.2,0.99,4.460,57.6 -16.3,0.99,4.190,60.8 -16.7,0.99,4.030,72.1 -17.3,0.99,4.080,94.3 -17.5,0.99,4.410,111.5 -17.7,0.99,4.190,113.4 -17.9,0.99,3.960,113.6 -18.2,0.99,3.370,111.2 -18.3,0.99,4.460,115.3 -18.1,0.99,3.750,118.6 -18.2,0.99,4.530,119.8 -18.4,0.99,5.020,119.7 -18.5,0.99,5.740,121.8 -18.5,0.99,6.450,124.9 -18.5,0.99,7.170,130.0 -18.4,0.99,6.110,124.3 -18.4,0.99,6.020,119.2 -18.3,0.99,5.620,118.1 -18.5,0.99,5.820,119.5 -18.3,0.99,5.910,107.5 -18.3,0.99,5.990,101.0 -18.4,0.99,6.710,100.8 -18.9,0.99,8.260,102.1 -18.8,0.99,8.500,101.9 -18.8,0.99,8.450,103.7 -18.8,0.99,8.290,98.2 -18.8,0.99,8.710,100.5 -19.2,0.99,9.480,96.9 -19.0,0.99,10.510,102.1 -19.0,0.99,9.730,102.6 -19.0,0.99,8.800,100.6 -19.0,0.99,9.610,103.0 -19.0,0.99,10.320,106.1 -18.9,0.99,7.090,98.9 -19.2,0.99,7.840,78.2 -19.3,0.99,9.900,90.4 -18.9,0.98,9.190,102.1 -18.7,0.98,9.060,110.1 -17.9,0.98,9.520,110.2 -17.9,0.98,9.590,101.3 -18.1,0.98,7.250,96.8 -18.3,0.98,8.300,94.9 -18.3,0.98,7.420,89.8 -18.3,0.98,6.910,95.0 -18.3,0.98,7.140,93.5 -18.2,0.98,5.670,96.5 -18.5,0.98,4.330,104.9 -18.6,0.98,3.160,129.1 -18.7,0.98,1.950,148.1 -18.7,0.98,1.480,144.8 -18.6,0.98,2.120,139.6 -19.3,0.98,3.080,136.6 -19.7,0.98,3.290,152.1 -19.9,0.98,4.490,156.0 -20.0,0.98,5.430,157.8 -20.0,0.98,6.010,159.6 -19.9,0.98,6.680,160.8 -19.7,0.98,7.970,160.1 -19.7,0.98,8.790,162.3 -19.7,0.98,9.410,170.1 -19.6,0.98,8.500,176.1 -19.7,0.98,8.200,175.2 -20.0,0.98,10.130,180.7 -20.0,0.98,8.540,176.1 -20.5,0.98,9.070,174.3 -20.4,0.98,8.070,186.2 -20.2,0.98,8.020,187.0 -20.7,0.98,9.580,189.6 -20.8,0.98,6.550,181.7 -21.1,0.99,8.630,175.4 -20.3,0.99,7.610,166.9 -20.3,0.99,7.110,183.1 -20.5,0.99,7.590,173.9 -21.0,0.99,6.940,167.0 -20.9,0.99,7.180,166.1 -20.7,0.99,5.690,148.5 -20.8,0.99,5.050,143.3 -21.0,0.99,6.620,139.4 -20.9,0.99,7.560,142.1 -20.8,0.99,7.350,138.4 -20.5,0.99,7.670,136.4 -21.1,0.99,8.050,126.6 -20.9,0.99,8.450,122.3 -21.1,0.99,8.910,125.4 -21.4,0.99,9.620,136.4 -21.6,0.99,10.470,145.2 -21.4,0.99,9.860,148.2 -21.6,0.99,8.680,147.6 -21.7,0.99,10.320,153.1 -22.6,0.99,10.740,175.2 -22.2,0.99,9.430,157.4 -21.8,0.99,8.670,144.7 -21.4,0.99,10.870,156.1 -21.7,0.99,9.680,151.1 -22.3,0.99,10.280,153.7 -21.7,0.99,8.810,144.7 -21.6,0.99,8.920,135.7 -21.7,0.99,7.730,132.3 -22.0,0.99,9.180,129.6 -22.1,0.99,9.840,143.3 -22.0,0.99,8.170,128.5 -22.1,0.99,8.740,125.9 -21.9,0.99,8.640,124.4 -21.8,0.99,10.900,129.7 -21.7,0.99,10.210,123.9 -21.0,0.99,12.430,122.3 -22.3,0.99,12.460,134.5 -21.9,0.99,12.340,134.2 -21.9,0.99,10.790,136.4 -21.9,0.99,12.820,137.1 -21.5,0.99,13.380,143.5 -21.6,0.99,11.200,145.3 -21.5,0.99,10.680,145.9 -21.6,0.99,11.410,136.1 -21.6,0.99,11.350,140.7 -21.6,0.99,10.000,141.0 -21.5,0.99,9.520,137.6 -22.2,0.99,9.350,149.8 -22.7,0.99,11.260,153.4 -21.8,0.99,9.720,142.0 -21.4,0.99,10.970,124.7 -21.7,0.99,10.950,133.2 -21.5,0.99,11.160,126.6 -21.8,0.99,11.630,134.4 -22.1,0.99,12.730,140.6 -22.3,0.99,13.030,137.5 -22.2,0.99,13.380,142.7 -22.3,0.99,14.030,146.1 -22.8,0.98,14.270,151.3 -21.9,0.98,14.670,141.5 -21.7,0.98,15.020,146.6 -21.7,0.98,14.880,146.6 -21.8,0.98,15.500,147.6 -21.9,0.98,15.600,151.8 -21.7,0.98,14.920,150.9 -21.5,0.98,14.580,152.1 -21.6,0.98,14.450,157.8 -21.4,0.98,12.230,162.7 -21.4,0.98,13.410,157.8 -21.5,0.98,13.580,158.5 -21.4,0.98,11.070,157.8 -21.6,0.98,12.440,161.2 -21.6,0.98,11.110,163.0 -21.6,0.98,9.950,157.4 -21.6,0.98,9.270,159.2 -21.6,0.98,6.360,167.2 -21.8,0.98,5.510,182.2 -22.1,0.98,4.840,198.9 -22.2,0.98,3.390,183.7 -22.3,0.98,4.960,162.3 -22.4,0.98,5.560,158.1 -17.0,0.99,15.880,337.7 -16.1,0.99,16.430,348.7 -13.9,0.99,15.170,350.1 -13.5,0.99,14.790,354.5 -13.7,0.99,14.250,0.2 -13.8,0.99,13.610,1.0 -14.6,0.99,15.320,359.9 -14.5,0.99,17.110,359.3 -13.7,0.99,17.580,359.3 -12.8,0.99,17.130,2.3 -12.1,0.99,17.710,5.1 -11.4,0.99,17.990,6.4 -10.9,1.00,17.320,7.0 -10.4,1.00,16.220,8.7 -9.9,1.00,15.090,8.4 -9.7,1.00,13.940,5.2 -9.8,1.00,12.170,3.0 -10.8,1.00,10.260,358.2 -11.5,1.00,9.860,349.8 -12.1,1.00,8.690,337.1 -13.4,1.00,9.610,338.3 -14.5,1.00,10.710,340.4 -15.1,1.00,10.970,339.2 -15.5,1.00,10.660,340.2 -15.8,1.00,10.490,344.4 -15.9,1.00,9.860,347.7 -15.7,1.00,9.670,347.2 -15.3,1.00,8.220,356.4 -14.9,1.00,8.380,5.0 -14.8,1.00,8.330,8.2 -14.6,1.00,7.570,13.5 -14.4,1.00,7.350,23.8 -14.1,1.00,6.950,27.7 -14.0,1.00,6.830,32.9 -13.8,1.00,6.180,34.6 -13.8,1.00,6.320,39.1 -13.9,1.00,6.260,47.5 -14.1,1.00,6.630,61.4 -14.2,1.00,6.690,70.0 -14.5,1.00,6.820,84.0 -14.7,1.00,6.960,87.1 -14.7,1.00,6.890,93.4 -14.9,1.00,6.850,96.1 -15.0,1.00,6.180,96.8 -15.3,1.00,7.400,115.5 -15.4,1.00,6.900,110.6 -15.6,1.00,7.280,114.8 -15.7,1.00,6.500,111.4 -15.6,1.00,7.580,105.8 -15.7,1.00,7.300,107.7 -15.7,1.00,7.840,113.8 -15.8,1.00,7.570,126.2 -16.0,1.00,7.910,127.5 -16.4,1.00,8.510,131.0 -16.6,0.99,7.900,123.1 -16.7,0.99,9.230,118.9 -17.1,0.99,7.570,114.9 -17.3,0.99,7.130,115.9 -17.4,0.99,8.400,120.2 -17.6,1.00,7.220,124.0 -17.7,1.00,7.890,120.0 -17.5,1.00,6.490,110.8 -17.7,1.00,7.190,111.3 -17.7,1.00,7.360,98.3 -17.8,1.00,7.500,96.2 -18.0,1.00,6.850,94.4 -18.1,1.00,6.570,81.0 -18.1,1.00,6.140,81.8 -18.0,1.00,7.740,84.4 -17.9,1.00,7.800,90.1 -18.0,0.99,8.470,92.6 -18.0,0.99,8.160,92.6 -18.1,0.99,7.480,98.6 -18.2,0.99,7.400,98.7 -18.1,0.99,6.850,98.2 -18.1,0.99,6.870,98.4 -18.1,0.99,6.800,100.9 -18.2,0.99,6.680,104.2 -18.4,0.99,6.410,110.7 -18.5,0.99,5.050,92.4 -18.7,0.99,7.520,101.2 -18.9,0.99,7.090,107.7 -18.8,0.99,6.710,110.6 -18.7,0.99,6.290,118.2 -18.8,0.99,5.930,123.5 -18.7,0.99,5.410,119.4 -18.7,0.99,5.180,120.7 -18.7,0.99,5.310,122.0 -18.8,0.99,5.260,113.7 -18.8,0.99,4.680,108.8 -18.8,0.99,4.220,107.0 -18.9,0.99,4.100,109.3 -19.0,0.99,3.680,116.3 -19.1,0.99,4.030,125.0 -19.1,0.99,4.260,125.2 -19.1,0.99,4.550,129.7 -19.1,0.99,5.420,133.8 -19.1,0.99,6.790,138.8 -19.0,0.99,7.010,139.6 -19.0,0.99,7.680,144.9 -18.9,0.99,7.650,142.1 -18.9,0.99,9.470,143.6 -19.3,0.99,7.980,152.0 -19.1,0.99,8.710,141.8 -19.3,0.99,8.350,146.6 -19.2,0.99,8.090,161.0 -19.5,0.99,8.610,163.5 -19.6,0.99,6.430,156.2 -19.5,0.99,8.010,167.8 -19.8,0.99,8.270,158.8 -19.9,0.99,9.620,155.9 -20.2,0.99,8.860,148.8 -20.3,0.99,9.110,156.0 -20.5,0.99,8.740,160.7 -20.5,0.99,7.330,155.1 -20.6,0.99,7.250,151.5 -20.9,0.99,6.570,157.8 -20.9,0.99,6.510,150.7 -20.9,0.99,5.770,146.5 -21.0,0.99,5.790,139.6 -21.3,0.99,6.790,149.1 -21.1,0.99,6.960,141.3 -20.9,0.99,6.390,136.0 -21.3,0.99,7.800,158.1 -20.8,0.99,5.960,154.1 -20.9,0.99,6.000,157.7 -20.7,0.99,4.670,175.9 -21.1,0.99,4.740,170.0 -21.3,0.99,5.450,181.5 -21.3,0.99,4.660,185.3 -21.4,0.99,2.570,250.4 -14.9,0.99,12.690,343.4 -13.7,0.99,12.430,350.7 -13.3,0.99,11.540,350.6 -11.8,0.99,12.720,351.3 -10.8,1.00,11.440,357.9 -10.7,1.00,11.860,357.2 -11.4,1.00,11.050,1.9 -12.1,1.00,10.870,5.6 -13.5,1.00,8.710,7.9 -15.7,1.00,8.190,9.3 -17.0,1.00,8.310,18.1 -18.0,1.00,6.460,23.6 -18.9,1.00,7.180,15.6 -19.3,1.00,7.430,30.2 -19.6,1.00,6.720,32.6 -19.6,1.00,6.860,28.7 -19.3,1.00,7.730,28.3 -18.5,1.00,9.370,31.3 -17.9,1.00,9.620,33.1 -17.5,1.00,9.850,34.7 -17.3,1.00,9.940,41.1 -17.1,1.00,9.870,42.5 -16.9,1.00,9.820,46.4 -16.7,1.00,10.480,50.2 -16.3,1.00,10.500,46.5 -16.0,1.00,11.040,46.3 -15.5,1.00,10.750,48.0 -15.3,1.00,12.210,56.1 -14.8,1.00,11.260,52.6 -14.6,1.00,10.950,53.0 -14.5,1.00,9.430,56.9 -14.7,1.00,8.540,60.8 -15.0,1.00,8.900,63.6 -15.7,1.00,9.820,68.6 -16.2,1.00,8.810,73.7 -16.6,1.00,8.630,72.1 -16.9,1.00,7.920,81.2 -17.4,1.00,7.470,84.2 -17.9,1.00,7.350,91.8 -18.2,1.00,7.870,99.9 -18.4,1.00,7.220,107.2 -18.7,1.00,6.900,113.5 -18.7,1.00,7.980,127.1 -19.3,1.00,7.770,136.8 -19.2,1.00,7.210,131.0 -19.3,1.00,6.330,141.9 -19.4,1.00,5.870,139.4 -19.6,1.00,6.110,136.3 -19.8,1.00,8.370,142.9 -19.7,1.00,7.690,139.8 -19.7,1.00,8.590,141.3 -19.9,1.00,7.790,138.8 -20.1,1.00,8.880,135.7 -20.1,1.00,8.710,135.4 -20.4,1.00,8.750,137.8 -20.3,1.00,8.110,130.7 -20.2,1.00,7.820,129.1 -20.4,1.00,7.850,131.1 -20.5,1.00,7.630,127.1 -20.5,1.00,8.160,128.0 -20.5,1.00,7.960,124.1 -20.5,1.00,8.480,122.3 -20.5,1.00,8.350,126.5 -20.5,0.99,9.160,138.2 -20.1,0.99,9.580,139.6 -20.2,0.99,8.990,133.6 -20.3,0.99,9.550,140.7 -20.3,0.99,9.330,144.7 -20.4,0.99,8.950,152.0 -20.1,0.99,9.240,152.9 -20.2,0.99,8.220,162.0 -20.2,0.99,7.940,162.2 -20.3,0.99,6.860,167.3 -20.3,0.99,6.770,163.4 -20.5,0.99,8.290,165.1 -20.7,0.99,7.910,171.1 -20.4,0.99,7.710,163.0 -20.4,0.99,7.890,160.3 -20.5,0.99,6.990,157.2 -20.5,1.00,3.870,166.5 -20.6,0.99,5.830,152.9 -21.0,0.99,6.110,162.0 -21.0,0.99,6.650,158.6 -20.9,0.99,7.770,157.7 -20.9,0.99,8.000,154.2 -20.9,0.99,8.050,159.0 -21.0,0.99,8.750,159.7 -20.9,0.99,1.600,276.9 -18.4,0.99,11.180,5.9 -19.5,0.99,5.520,27.9 -20.8,0.99,4.000,55.7 -21.3,0.99,5.730,135.3 -20.8,0.99,7.300,136.6 -20.5,0.99,5.410,161.3 -20.3,0.99,5.100,179.2 -20.1,0.99,7.700,159.8 -20.4,0.99,5.560,171.7 -20.3,0.99,1.150,266.2 -20.2,0.99,0.800,2.7 -20.3,0.99,5.260,95.8 -20.5,0.99,3.050,84.0 -20.6,0.99,5.090,94.2 -20.7,0.99,5.890,105.5 -20.9,0.99,5.440,129.0 -20.7,0.99,5.600,121.7 -21.0,0.99,5.140,149.5 -21.4,0.99,5.390,168.2 -21.2,0.99,5.420,174.9 -21.2,0.99,4.290,192.0 -21.1,0.99,2.730,160.8 -21.1,0.99,2.090,155.3 -21.1,0.99,3.270,115.7 -21.3,0.99,3.900,115.0 -21.7,0.99,3.280,119.3 -21.1,0.99,4.740,96.9 -21.3,0.99,4.360,109.5 -21.1,0.99,4.630,122.2 -19.1,0.99,5.270,116.1 -19.7,0.99,4.660,129.9 -20.5,0.99,4.080,122.0 -20.6,0.99,2.980,134.6 -21.0,0.99,3.210,126.0 -20.8,0.99,3.630,135.3 -20.4,0.99,4.530,124.5 -20.2,0.99,4.470,113.2 -20.2,0.99,5.340,120.3 -20.7,0.99,4.300,125.3 -20.7,0.99,5.280,110.8 -20.7,0.99,5.580,119.9 -21.1,0.99,5.110,126.5 -20.9,0.99,3.900,148.8 -21.1,0.99,4.900,148.1 -20.9,0.99,5.650,141.3 -20.9,0.99,5.220,172.7 -20.8,0.99,4.180,175.7 -20.2,0.99,4.340,155.7 -20.2,0.99,4.580,142.2 -19.8,0.99,5.420,152.9 -19.8,0.99,4.550,155.6 -19.7,0.99,3.990,141.1 -19.7,0.99,4.720,140.3 -19.9,0.99,5.580,152.5 -20.9,0.99,6.530,161.9 -21.3,0.99,6.850,159.5 -20.7,0.99,5.770,148.4 -20.4,0.99,5.440,141.8 -20.0,0.99,4.870,140.6 -20.1,0.99,5.620,189.6 -20.0,0.99,6.170,159.7 -20.6,0.99,5.150,154.7 -19.8,0.99,2.560,187.7 -20.3,0.99,2.320,138.2 -19.8,0.99,5.600,121.6 -20.2,0.99,6.100,99.8 -20.0,0.99,6.850,106.7 -20.2,0.98,7.080,129.4 -20.4,0.98,6.180,131.8 -20.6,0.98,5.320,142.8 -20.8,0.98,4.180,153.2 -20.7,0.98,4.990,160.5 -20.9,0.98,4.450,161.7 -20.7,0.99,3.920,153.9 -20.6,0.99,4.370,153.5 -21.5,0.98,5.350,161.9 -21.8,0.99,4.370,166.1 -20.7,0.98,2.690,135.7 -20.7,0.99,1.410,106.7 -20.5,0.99,3.010,108.5 -20.6,0.99,3.360,107.7 -20.6,0.99,3.370,95.7 -20.6,0.99,1.600,107.0 -20.4,0.99,2.320,103.2 -20.4,0.99,3.150,81.3 -20.3,0.99,4.020,83.3 -20.1,0.99,4.200,81.2 -20.5,0.99,4.370,96.5 -20.6,0.99,4.710,108.3 -21.3,0.99,3.720,121.2 -21.5,0.99,4.140,137.2 -21.6,0.99,4.420,148.7 -21.7,0.99,3.860,149.6 -21.8,0.99,3.580,153.1 -21.7,0.99,4.690,166.4 -21.7,0.99,6.040,163.9 -21.5,0.99,5.030,157.3 -21.5,0.99,4.960,144.9 -21.5,0.99,4.170,149.0 -21.7,0.99,3.370,155.0 -21.4,0.99,2.830,179.9 -21.4,0.99,2.890,193.0 -21.3,0.99,2.590,252.2 -21.2,0.99,2.810,290.9 -20.5,0.99,4.000,274.9 -19.9,0.99,5.700,286.5 -19.8,0.99,3.240,325.6 -20.3,0.99,5.050,316.5 -19.7,0.99,8.410,354.6 -19.7,0.99,10.520,9.4 -18.5,0.99,9.510,351.2 -18.8,0.99,8.360,335.0 -21.4,0.99,7.150,336.7 -23.3,0.99,9.300,339.9 -22.6,0.99,8.130,337.5 -21.7,0.99,14.700,323.3 -21.3,0.99,15.770,332.0 -20.6,0.99,15.540,334.3 -19.3,0.99,16.890,333.9 -17.3,0.99,17.320,335.9 -15.8,0.99,16.590,334.1 -14.7,0.99,18.530,341.6 -13.5,0.99,17.610,337.8 -12.7,0.99,18.110,334.9 -12.0,0.99,17.040,333.9 -10.3,0.99,17.310,331.9 -9.8,0.99,15.340,333.3 -9.5,0.99,15.170,330.7 -8.9,0.99,17.310,333.2 -8.8,1.00,14.850,333.2 -8.5,1.00,15.740,336.8 -8.0,1.00,16.280,333.1 -7.7,1.00,17.010,334.8 -8.0,1.00,16.290,332.0 -8.9,1.00,15.000,332.6 -10.1,1.00,15.250,330.7 -11.2,1.00,13.960,330.0 -13.3,1.00,13.770,333.5 -14.6,0.99,14.220,336.5 -15.2,0.99,14.000,337.4 -15.7,0.99,13.840,339.3 -16.1,0.99,14.140,338.5 -16.2,0.99,13.530,333.4 -16.0,0.99,12.690,347.1 -15.8,0.99,12.550,344.9 -15.8,0.99,10.990,350.3 -15.9,0.99,8.510,356.1 -15.9,0.99,7.720,1.3 -16.0,0.99,5.930,8.9 -15.9,0.99,4.540,7.4 -15.6,0.99,2.740,16.0 -15.7,0.99,1.010,3.6 -15.7,0.99,0.410,283.7 -15.8,0.99,1.570,230.3 -15.8,0.99,3.160,224.0 -15.8,0.99,4.150,229.0 -15.8,0.99,4.650,230.9 -15.7,0.99,4.820,234.9 -15.4,0.99,5.320,240.4 -15.9,0.99,5.640,234.4 -16.8,0.99,6.950,223.6 -18.1,0.99,8.440,218.9 -18.6,0.99,9.730,217.5 -18.9,0.99,10.230,219.4 -19.3,0.99,11.080,218.4 -19.7,0.99,12.070,219.8 -19.8,0.99,12.440,223.5 -19.7,0.99,12.780,223.8 -19.8,0.99,12.790,229.2 -19.8,0.99,12.220,231.8 -19.8,0.99,12.280,229.8 -19.9,0.99,11.560,235.6 -19.9,0.99,11.130,240.5 -18.8,0.99,7.390,290.7 -17.7,0.99,9.600,293.2 -17.3,0.99,7.780,309.9 -16.2,0.99,8.050,20.6 -15.3,0.99,8.250,16.9 -14.3,0.99,8.960,15.1 -13.5,0.99,7.620,11.8 -13.0,0.99,6.930,6.8 -13.2,0.99,6.410,353.6 -13.8,0.99,7.190,347.6 -14.0,0.99,7.910,333.9 -14.7,0.99,8.290,330.9 -15.9,0.99,8.780,336.0 -17.0,0.99,8.200,340.9 -17.6,0.99,8.460,345.9 -18.2,0.99,8.270,347.8 -18.6,0.99,7.780,348.6 -18.7,0.99,7.480,351.9 -18.6,0.99,7.630,354.5 -18.2,0.99,8.000,2.6 -17.9,0.99,6.850,11.4 -17.5,0.99,5.900,21.1 -17.4,0.99,4.960,29.3 -17.4,0.99,4.470,26.6 -17.3,0.99,3.560,34.9 -17.0,0.99,2.800,27.5 -16.9,0.99,2.540,21.0 -16.9,0.99,1.450,18.4 -16.6,0.99,0.990,344.5 -15.5,0.99,1.740,330.4 -15.8,0.99,2.960,337.5 -15.9,0.99,2.810,320.2 -16.0,0.99,2.670,318.6 -16.1,0.99,3.160,311.2 -16.6,0.99,2.940,309.0 -16.7,0.99,2.070,283.1 -17.9,0.99,2.280,274.9 -18.0,0.99,2.650,220.9 -18.7,0.99,3.770,220.6 -20.0,0.99,3.310,221.0 -19.5,0.99,5.270,217.4 -19.7,0.99,5.670,221.0 -19.8,0.99,5.300,225.6 -19.7,0.99,6.070,227.9 -19.7,0.99,2.120,222.6 -20.0,0.99,4.910,239.7 -19.9,0.99,3.860,238.9 -19.7,0.99,4.770,226.1 -19.7,0.99,4.380,247.5 -19.8,0.99,4.800,255.4 -19.7,0.99,5.520,271.6 -19.5,0.99,5.120,274.7 -19.7,0.99,5.600,282.2 -19.5,0.99,5.600,282.3 -18.8,0.99,4.930,278.5 -18.4,0.99,5.250,277.5 -18.6,0.99,4.330,269.3 -19.1,0.99,3.720,254.4 -19.9,0.99,3.330,243.8 -20.2,0.99,3.400,228.0 -20.3,0.99,3.860,206.6 -20.5,0.99,5.320,187.8 -20.7,0.99,5.530,183.3 -20.6,0.99,6.590,186.9 -20.7,0.99,6.820,188.2 -20.5,0.99,7.270,187.8 -20.2,0.99,7.380,186.9 -20.3,0.99,7.580,188.1 -20.2,0.99,8.050,182.6 -20.2,0.99,7.700,182.9 -20.2,0.99,7.440,187.5 -20.1,0.99,6.920,199.1 -19.9,0.99,6.980,198.5 -19.7,0.99,6.840,191.5 -19.7,0.99,6.490,185.0 -19.7,0.99,6.390,179.0 -19.7,0.99,5.780,173.7 -19.7,0.99,6.280,183.7 -19.9,0.99,4.260,186.8 -20.1,0.99,8.140,154.0 -20.1,0.99,6.530,159.0 -20.2,0.99,5.150,175.6 -20.3,0.99,4.190,162.8 -20.3,0.99,5.310,153.6 -20.8,0.99,6.220,153.9 -20.8,0.99,7.140,153.0 -20.9,0.99,7.340,156.8 -20.9,0.99,7.410,147.8 -20.9,0.99,8.020,148.6 -20.9,0.99,8.620,141.7 -20.6,0.99,8.470,139.8 -20.7,0.99,8.410,142.1 -20.6,0.99,8.750,148.9 -20.7,0.99,9.630,156.1 -20.8,0.99,9.170,169.7 -20.7,0.99,8.490,166.9 -20.9,0.99,9.300,172.9 -21.8,0.99,10.610,177.8 -21.2,0.99,8.700,162.0 -21.3,0.99,7.480,155.3 -21.2,0.99,9.260,161.0 -21.4,0.99,9.050,157.6 -21.4,0.99,8.920,158.2 -21.4,0.99,9.100,152.2 -21.5,0.99,9.130,152.3 -21.4,0.99,8.260,146.2 -21.5,0.99,9.730,150.3 -21.7,0.99,9.510,153.5 -21.8,0.99,9.600,147.6 -21.8,0.99,10.050,145.5 -21.7,0.99,10.000,145.9 -21.7,0.99,10.950,143.5 -21.7,0.99,10.580,143.6 -21.7,0.99,9.800,143.9 -21.7,0.99,10.440,150.8 -21.7,0.99,9.300,144.9 -21.9,0.99,10.870,148.4 -21.8,0.99,8.760,156.3 -21.9,0.99,9.260,156.8 -21.9,0.99,10.390,162.8 -21.7,0.99,8.860,155.8 -21.7,0.99,7.980,161.6 -21.9,0.99,5.650,158.3 -21.4,0.99,4.980,104.4 -21.2,0.99,7.180,117.7 -21.2,0.99,6.850,114.8 -21.5,0.99,7.530,135.1 -21.6,0.99,8.100,140.0 -21.7,0.99,8.140,141.9 -21.8,0.99,8.320,147.8 -21.8,0.99,6.970,144.3 -21.7,0.99,7.070,134.4 -21.9,0.99,6.960,133.0 -22.0,0.99,6.570,138.3 -21.8,0.99,7.710,134.7 -21.9,0.99,8.700,143.3 -21.8,0.99,6.470,151.6 -22.0,0.99,4.810,276.4 -21.7,0.99,5.730,342.0 -20.4,0.99,6.530,26.4 -21.2,0.99,5.820,28.3 -22.6,0.99,2.500,66.1 -20.2,0.99,5.490,32.9 -20.8,0.99,3.870,40.9 -21.7,0.99,2.990,52.7 -22.2,0.99,2.690,51.1 -20.7,0.99,3.590,25.9 -20.8,0.99,2.480,53.1 -19.7,0.99,4.270,2.3 -19.3,0.99,6.050,340.1 -20.1,0.99,5.510,11.7 -20.0,0.99,4.540,16.0 -19.6,0.99,4.280,7.2 -20.5,0.99,3.390,25.1 -20.8,0.99,3.190,9.1 -21.2,0.99,3.300,345.3 -22.3,0.99,2.190,331.5 -23.1,0.99,2.070,297.4 -24.1,0.99,1.150,297.6 -24.6,0.99,1.080,236.0 -24.1,0.99,1.690,210.0 -25.2,0.99,2.850,320.9 -24.3,0.99,5.460,24.4 -25.5,0.99,10.030,14.5 -24.7,0.99,7.700,29.6 -23.9,0.99,8.410,29.3 -23.5,0.99,10.840,34.6 -22.8,0.99,11.230,38.7 -22.1,0.99,10.110,46.1 -21.5,0.99,8.340,41.5 -20.9,0.99,10.070,47.5 -20.9,0.99,7.760,54.4 -20.5,0.99,9.590,50.1 -20.5,0.99,8.960,55.5 -20.3,0.99,8.550,50.2 -20.1,1.00,9.270,45.0 -20.1,1.00,8.920,49.3 -20.3,1.00,7.360,58.5 -21.3,1.00,8.530,64.2 -21.4,1.00,7.690,81.5 -21.8,1.00,6.110,89.4 -22.1,1.00,5.730,101.6 -22.1,1.00,4.150,105.6 -22.2,1.00,2.730,128.6 -22.2,0.99,1.880,143.6 -22.1,0.99,1.480,166.8 -22.1,0.99,1.230,120.0 -22.0,1.00,2.020,47.9 -22.0,1.00,2.720,17.3 -22.1,1.00,7.540,19.1 -21.6,1.00,9.300,48.9 -21.6,1.00,9.410,63.0 -21.2,1.00,8.330,68.5 -21.0,1.00,8.440,69.4 -20.7,1.00,7.960,70.0 -20.5,1.00,7.740,74.8 -20.4,1.00,7.690,71.4 -20.3,1.00,7.370,77.6 -20.1,1.00,7.300,75.2 -20.0,1.00,7.140,77.3 -19.8,1.00,6.880,74.6 -19.8,1.00,6.960,78.8 -19.7,1.00,6.200,80.9 -19.7,1.00,6.010,90.7 -20.0,1.00,5.750,103.8 -20.1,1.00,5.370,107.0 -20.2,1.00,5.770,117.0 -20.2,1.00,5.610,120.5 -20.2,1.00,5.450,121.1 -20.2,1.00,5.120,127.3 -20.1,1.00,5.070,131.2 -20.1,1.00,4.980,139.3 -20.1,1.00,5.260,138.8 -20.1,1.00,5.260,149.3 -20.1,1.00,5.290,152.6 -20.1,1.00,5.450,160.3 -20.0,1.00,5.480,168.8 -19.9,1.00,5.150,167.8 -20.0,1.00,5.480,174.6 -19.9,1.00,4.920,179.3 -19.9,1.00,5.130,179.4 -19.9,1.00,5.530,163.3 -19.9,1.00,5.510,157.9 -19.9,1.00,4.750,154.7 -19.9,1.00,5.560,145.2 -20.1,1.00,5.800,140.7 -20.2,1.00,5.420,140.7 -20.6,1.00,4.950,146.6 -21.3,1.00,5.920,149.5 -21.7,1.00,6.990,155.4 -21.7,1.00,7.550,152.0 -21.8,1.00,7.260,155.3 -21.6,1.00,8.200,151.1 -21.3,1.00,8.490,149.1 -21.4,1.00,8.950,153.7 -21.4,1.00,9.920,153.0 -21.5,1.00,10.170,157.9 -21.3,1.00,10.790,157.4 -21.3,1.00,10.470,160.1 -21.4,1.00,9.750,162.5 -21.4,1.00,10.400,167.4 -21.6,1.00,9.170,168.9 -21.3,1.00,8.860,163.7 -21.4,0.99,9.270,166.3 -21.6,0.99,9.080,167.4 -21.6,0.99,8.670,170.5 -21.8,0.99,8.220,167.4 -21.8,0.99,9.180,168.5 -21.8,0.99,8.970,169.5 -21.7,0.99,8.750,161.2 -21.8,0.99,9.030,159.4 -21.7,0.99,8.960,155.9 -22.1,0.99,10.160,158.5 -22.1,0.99,9.730,162.9 -22.0,0.99,9.290,160.5 -22.0,0.99,10.100,162.0 -21.9,0.99,9.510,157.5 -21.7,0.99,9.660,160.6 -22.0,0.99,8.990,165.0 -21.6,0.99,10.660,161.8 -21.7,0.99,9.750,168.2 -21.6,0.99,10.330,165.5 -21.6,0.99,9.360,164.3 -21.6,0.99,11.820,166.6 -21.7,0.99,8.170,169.1 -21.5,0.99,10.150,174.7 -21.5,0.99,6.730,179.7 -21.4,0.99,4.780,186.0 -21.4,0.99,5.110,168.7 -21.4,0.99,6.070,164.5 -22.1,0.99,7.640,179.3 -21.5,0.99,8.070,162.5 -21.5,0.99,8.780,163.3 -21.6,0.99,8.170,166.6 -21.5,0.99,9.360,160.0 -21.7,0.99,8.880,163.2 -22.1,0.99,11.000,170.8 -22.1,0.99,10.960,168.0 -22.2,0.99,10.730,171.8 -22.2,0.99,10.950,165.5 -22.2,0.99,11.090,164.2 -22.1,0.99,11.310,163.4 -21.9,0.99,10.050,161.0 -22.0,0.99,9.640,162.9 -21.9,0.99,9.030,163.4 -22.1,0.99,9.260,167.7 -22.2,0.99,9.370,168.8 -22.1,0.99,9.000,169.6 -22.1,0.99,8.090,177.1 -22.0,0.99,10.800,174.8 -22.3,0.99,11.820,176.2 -22.3,0.99,7.480,183.4 -22.2,0.99,4.370,173.1 -22.2,0.99,5.550,157.6 -22.3,0.99,7.580,165.0 -22.1,0.99,4.760,148.9 -22.4,0.99,7.240,163.5 -22.4,0.99,9.170,167.3 -22.4,0.99,7.870,165.2 -22.6,0.99,7.100,167.3 -23.0,0.99,7.140,163.8 -23.0,0.99,9.120,165.2 -22.8,0.99,9.350,171.4 -22.8,0.99,8.890,163.8 -22.8,0.99,8.640,164.0 -22.6,0.99,9.060,160.5 -22.4,0.99,9.660,160.5 -22.3,0.99,9.270,160.2 -22.6,0.99,10.430,165.7 -22.5,0.99,9.990,164.6 -22.0,0.99,11.160,168.6 -22.2,0.99,11.940,174.8 -22.2,0.99,13.190,177.2 -22.3,0.99,10.000,163.8 -22.2,0.99,9.590,177.6 -22.4,0.99,9.480,176.6 -22.6,0.99,12.530,176.5 -22.4,0.99,10.900,177.3 -22.4,0.99,8.840,167.8 -22.5,0.99,8.230,166.1 -22.4,0.99,9.140,161.6 -22.5,0.99,9.030,164.4 -22.4,0.99,9.590,164.0 -22.7,0.99,8.520,160.4 -23.2,0.99,7.860,162.8 -23.2,0.99,8.880,152.2 -23.3,0.99,9.230,156.9 -23.2,0.99,8.450,155.0 -23.4,0.99,8.650,153.6 -23.2,0.99,9.300,147.1 -23.2,0.99,9.520,144.2 -23.5,0.99,10.420,148.0 -22.7,0.99,11.380,143.1 -22.4,0.99,10.090,150.8 -22.5,0.99,10.660,156.5 -22.7,0.99,11.350,160.3 -22.7,0.99,10.480,161.5 -22.7,0.99,9.930,163.9 -22.7,0.99,9.280,169.0 -22.8,0.99,10.370,162.3 -22.9,0.99,10.190,155.4 -23.0,0.99,9.820,155.8 -23.0,0.99,6.530,135.8 -22.9,0.99,5.660,171.4 -23.2,0.99,7.770,169.9 -23.2,0.99,10.120,168.7 -23.3,0.99,8.380,164.8 -23.2,0.99,9.390,154.3 -23.6,0.99,9.880,165.5 -23.8,0.99,9.840,163.3 -23.6,0.99,9.200,154.6 -23.7,0.99,9.740,150.9 -23.6,0.99,10.550,151.3 -23.4,0.99,10.350,145.5 -23.4,0.99,11.260,147.6 -23.5,0.99,11.670,151.0 -23.4,0.99,11.470,151.3 -23.4,0.99,11.690,156.7 -23.5,0.99,12.100,161.0 -23.5,0.99,12.020,160.3 -23.9,0.99,11.630,163.6 -23.9,0.99,10.460,162.5 -23.7,0.99,10.620,161.2 -23.8,0.99,10.520,164.3 -23.7,0.99,9.910,161.9 -23.9,0.99,10.180,159.2 -23.9,0.99,9.250,161.0 -23.8,0.99,9.090,152.5 -23.8,0.99,9.780,148.1 -23.8,0.99,9.950,147.8 -23.8,0.99,9.550,149.6 -23.7,0.99,10.130,145.8 -24.1,0.99,10.350,144.5 -23.9,0.99,11.080,148.1 -23.7,0.99,10.060,143.5 -23.6,0.99,10.640,144.5 -23.7,0.99,9.930,140.8 -23.7,0.99,10.390,142.3 -23.5,0.99,10.100,145.5 -23.4,0.99,11.400,143.7 -23.4,0.99,11.610,148.0 -23.4,0.99,11.600,151.5 -23.5,0.99,11.560,153.7 -23.5,0.99,10.950,160.9 -23.4,0.99,11.010,159.9 -23.5,0.99,10.280,164.2 -23.6,0.99,9.590,162.9 -23.7,0.99,9.860,158.9 -23.6,0.99,9.310,155.6 -23.6,0.99,9.250,154.9 -23.9,0.99,9.370,157.3 -24.0,0.99,9.200,158.0 -23.7,0.99,9.570,151.7 -23.7,0.99,7.830,152.8 -23.7,0.99,7.820,147.9 -23.9,0.99,8.740,152.9 -24.0,0.99,9.930,155.8 -24.0,0.99,9.340,153.6 -24.1,0.99,9.040,157.5 -24.2,0.99,9.210,152.3 -24.1,0.98,9.510,149.3 -24.0,0.98,9.550,150.9 -23.9,0.98,9.550,153.5 -23.7,0.98,11.110,162.3 -23.7,0.98,9.660,168.9 -23.8,0.99,4.430,176.8 -23.9,0.99,1.520,106.9 -24.1,0.99,1.370,148.6 -21.4,0.99,11.490,15.0 -23.1,0.99,6.180,40.7 -24.3,0.99,5.330,207.2 -24.4,0.98,15.040,176.2 -23.9,0.99,9.530,191.8 -23.9,0.99,2.550,200.9 -23.7,0.99,1.310,163.3 -23.6,0.99,0.800,131.0 -23.7,0.99,2.040,121.5 -23.8,0.99,2.170,136.3 -23.8,0.99,2.360,132.3 -23.9,0.99,2.500,133.3 -24.3,0.99,3.390,148.5 -24.3,0.99,3.250,152.0 -24.4,0.99,3.430,165.5 -24.4,0.99,4.170,155.2 -24.4,0.99,4.530,150.5 -24.3,0.99,5.020,147.9 -24.3,0.99,5.880,152.5 -23.9,0.99,4.980,152.0 -23.9,0.99,5.510,145.3 -23.8,0.99,5.360,151.6 -23.6,0.99,5.780,144.1 -23.5,0.99,5.050,158.7 -23.4,0.99,5.850,161.4 -24.1,0.99,5.240,164.4 -24.2,0.99,4.330,165.5 -23.5,0.99,4.700,152.4 -24.2,0.99,5.580,151.7 -23.5,0.99,4.980,140.2 -23.9,0.99,5.400,146.7 -24.1,0.99,5.810,152.6 -23.8,0.99,6.030,150.0 -23.7,0.99,4.980,147.2 -23.9,0.99,5.330,152.0 -24.2,0.99,5.420,151.9 -24.4,0.99,5.250,150.2 -24.5,0.99,4.490,141.2 -24.9,0.99,5.020,139.3 -25.2,0.99,5.920,145.2 -25.2,0.99,5.830,141.2 -25.0,0.99,6.360,135.3 -24.6,0.99,5.970,124.5 -24.7,0.99,7.750,132.0 -25.0,0.99,6.940,123.5 -24.8,0.99,6.590,129.9 -24.2,0.99,5.780,132.5 -24.7,0.99,6.340,141.2 -24.0,0.99,5.010,139.7 -24.2,0.99,5.680,151.8 -23.8,0.99,4.620,150.3 -24.1,0.99,4.170,148.2 -24.4,0.99,4.660,133.6 -24.2,0.99,4.400,140.7 -23.8,0.99,4.270,115.3 -23.8,0.99,5.210,110.5 -23.6,1.00,5.300,114.8 -23.9,1.00,4.520,114.6 -23.8,1.00,3.930,100.7 -23.9,1.00,4.780,111.8 -24.4,1.00,5.150,108.0 -24.5,1.00,5.730,110.4 -24.6,1.00,6.030,114.4 -24.5,0.99,5.570,117.6 -24.6,0.99,5.920,119.0 -24.4,0.99,5.820,121.6 -24.2,0.99,5.830,130.6 -24.1,0.99,7.150,115.7 -24.0,0.99,8.420,110.1 -24.1,0.99,7.330,129.3 -24.4,0.99,6.820,129.8 -24.2,0.99,5.960,134.5 -23.8,0.99,6.950,125.2 -23.8,0.99,8.730,121.5 -23.8,1.00,7.520,129.9 -24.2,1.00,6.370,128.3 -24.0,1.00,6.640,136.9 -23.9,1.00,6.880,139.0 -23.9,1.00,5.660,133.9 -23.9,1.00,6.240,130.0 -23.9,1.00,5.030,132.1 -23.8,1.00,5.770,133.2 -23.9,1.00,5.940,130.8 -24.1,1.00,6.170,128.9 -24.3,1.00,7.620,125.1 -24.9,1.00,6.250,127.7 -24.7,1.00,8.040,130.0 -24.4,1.00,8.280,137.3 -24.6,1.00,6.750,136.7 -24.9,0.99,7.060,137.9 -24.7,0.99,7.320,137.6 -24.6,0.99,7.930,130.5 -24.4,0.99,8.450,130.1 -24.7,0.99,8.300,137.9 -24.7,0.99,8.300,135.0 -24.3,0.99,8.930,146.0 -24.3,0.99,8.780,150.2 -24.2,0.99,8.090,155.2 -24.3,0.99,8.170,160.3 -24.3,0.99,6.350,159.6 -24.4,0.99,6.380,158.5 -24.4,0.99,5.950,170.7 -24.5,0.99,6.710,150.9 -24.4,0.99,6.690,152.6 -24.3,1.00,5.860,156.8 -24.3,1.00,6.100,149.2 -24.4,0.99,7.050,144.0 -24.7,0.99,6.570,153.0 -24.5,0.99,6.130,149.7 -24.8,0.99,7.010,147.7 -25.1,0.99,6.430,162.7 -25.0,0.99,8.510,156.4 -24.9,0.99,7.190,163.0 -24.9,0.99,6.290,161.3 -24.8,0.99,8.200,161.2 -24.4,0.99,7.730,152.2 -24.3,0.99,8.320,155.7 -24.4,0.99,9.330,153.1 -24.3,0.99,8.670,161.6 -24.3,0.99,9.490,155.1 -24.2,0.99,9.040,166.0 -24.1,0.99,8.200,173.5 -24.0,0.99,8.430,169.4 -24.1,0.99,7.670,170.8 -24.4,0.99,8.310,165.6 -24.7,0.99,8.290,171.8 -24.4,0.99,7.270,161.6 -25.1,0.99,7.980,172.2 -24.9,0.99,6.460,168.1 -24.9,0.99,7.730,168.6 -24.8,0.99,7.910,164.7 -24.9,0.99,7.700,167.2 -25.2,0.99,8.770,171.8 -25.0,0.99,9.070,170.9 -24.9,0.99,8.850,166.0 -24.7,0.99,8.420,159.3 -24.5,0.99,9.140,159.3 -24.6,0.99,8.930,163.7 -24.3,0.99,10.130,159.1 -24.3,0.99,10.140,160.4 -24.5,0.99,11.390,152.4 -24.6,0.99,10.920,155.1 -24.5,0.99,10.880,154.6 -24.5,0.99,11.390,160.4 -24.2,0.99,11.820,163.2 -24.2,0.99,10.790,160.0 -24.3,0.99,11.770,160.8 -24.4,0.99,11.210,162.3 -24.3,0.99,11.740,163.1 -24.5,0.99,12.070,163.9 -24.8,0.99,11.200,164.7 -24.9,0.99,10.380,160.6 -24.8,0.99,9.850,158.8 -24.8,0.99,10.070,158.8 -24.9,0.99,9.300,160.8 -24.9,0.99,9.830,161.6 -25.1,0.99,8.770,158.8 -25.2,0.99,8.710,160.1 -25.1,0.99,8.750,156.0 -25.1,0.99,9.340,152.1 -25.0,0.99,9.650,147.9 -24.8,0.99,8.900,152.2 -24.8,0.99,9.500,150.6 -24.6,0.99,9.720,146.4 -24.7,0.99,10.920,148.4 -24.5,0.99,10.640,154.5 -24.6,0.99,10.630,156.0 -24.7,0.99,11.890,157.4 -24.9,0.99,10.490,153.8 -24.6,0.99,10.810,157.9 -24.8,0.99,11.320,162.1 -24.9,0.99,9.520,165.2 -24.9,0.99,10.050,163.0 -25.0,0.99,9.730,168.1 -25.3,0.99,9.760,166.9 -24.9,0.99,10.670,157.6 -25.0,0.99,10.440,160.4 -25.2,0.99,10.650,157.5 -25.2,0.99,9.770,153.2 -25.1,0.99,10.330,147.3 -25.4,0.99,10.390,148.1 -25.3,0.99,11.000,149.4 -25.6,0.99,10.980,150.2 -26.1,0.99,11.610,160.1 -25.9,0.99,11.220,154.9 -25.2,0.99,10.980,149.6 -24.9,0.99,10.430,150.5 -24.9,0.99,10.110,152.3 -25.0,0.99,9.680,142.7 -25.1,0.99,9.520,147.7 -25.0,0.99,9.510,146.3 -25.3,0.99,11.090,153.6 -25.4,0.99,10.610,159.6 -24.9,0.99,11.340,155.7 -24.9,0.99,11.310,151.1 -25.2,0.99,11.230,159.4 -25.0,0.99,10.690,156.1 -25.0,0.99,12.000,156.0 -25.0,0.99,10.890,152.1 -25.4,0.99,9.710,150.2 -25.3,0.99,10.080,150.7 -25.4,0.99,10.500,147.7 -25.3,0.99,9.470,149.2 -25.3,0.99,9.200,144.2 -25.5,0.99,9.310,146.5 -25.5,0.99,9.550,146.0 -25.5,0.99,9.980,145.6 -25.5,0.99,10.950,145.6 -25.4,0.99,9.580,141.9 -25.4,0.99,10.170,149.5 -25.5,0.99,9.650,154.7 -25.1,0.99,10.930,150.6 -25.1,0.99,11.050,149.3 -25.0,0.99,11.110,148.2 -25.2,0.99,11.200,152.8 -25.1,0.99,9.860,154.3 -25.1,0.99,11.100,160.3 -25.2,0.99,9.880,164.6 -25.3,0.99,9.530,163.5 -25.6,0.99,10.150,166.8 -25.7,0.99,10.190,169.2 -25.5,0.99,9.800,174.5 -25.5,0.99,8.940,169.6 -25.6,0.99,9.300,173.2 -25.4,0.99,8.360,171.8 -25.3,0.99,8.230,165.3 -25.3,0.99,8.010,165.9 -25.6,0.99,7.770,169.2 -26.0,0.99,9.560,163.3 -25.8,0.99,9.230,161.3 -25.9,0.99,9.630,163.1 -25.8,0.99,9.920,165.1 -25.8,0.99,10.420,163.8 -25.7,0.99,11.030,161.3 -25.4,0.99,10.050,159.0 -25.4,0.99,10.770,157.0 -25.6,0.99,11.010,161.8 -25.3,0.99,11.180,159.5 -25.3,0.99,11.480,161.6 -25.8,0.99,12.790,168.1 -25.7,0.99,12.320,167.7 -25.2,0.99,11.740,166.0 -25.5,0.99,12.640,169.8 -25.2,0.99,10.550,165.4 -25.2,0.99,10.990,170.0 -25.4,0.99,12.490,172.6 -25.2,0.99,10.980,175.0 -25.4,0.99,11.490,176.0 -25.5,0.99,9.440,178.2 -25.4,0.99,8.810,174.0 -25.7,0.99,9.070,175.6 -25.6,0.99,7.400,175.0 -26.3,0.99,8.320,178.5 -26.0,0.99,6.560,169.7 -26.0,0.99,7.960,169.4 -26.0,0.99,8.210,169.2 -25.8,0.99,7.350,162.0 -25.7,0.99,7.970,164.5 -25.6,0.99,8.060,165.3 -25.4,0.99,7.510,160.4 -25.4,0.99,6.690,157.8 -25.3,0.99,5.710,161.9 -25.2,0.99,5.130,159.2 -25.4,0.99,4.810,167.9 -25.3,0.99,3.380,175.7 -24.9,0.99,2.740,185.1 -24.9,0.99,1.650,159.8 -24.9,0.99,2.270,205.0 -24.7,0.99,2.140,261.8 -24.3,0.99,2.140,345.8 -24.1,0.99,4.340,353.0 -24.0,0.99,3.960,346.0 -24.2,0.99,3.120,354.5 -24.4,0.99,1.560,10.9 -24.4,0.99,1.320,311.1 -24.7,0.99,1.110,4.2 -25.2,0.99,0.520,66.0 -25.6,0.99,1.700,117.0 -25.9,0.99,3.440,144.7 -25.9,0.99,5.310,141.9 -25.9,0.99,5.160,143.8 -25.9,0.99,3.540,146.5 -25.7,0.99,2.960,162.1 -25.6,0.99,3.360,166.5 -25.5,0.99,1.940,130.7 -25.5,0.99,1.210,89.7 -25.6,0.99,1.990,64.8 -25.5,0.99,2.220,54.6 -25.3,0.99,2.020,37.8 -24.9,0.99,5.430,26.8 -23.9,0.99,5.240,19.7 -24.2,0.99,5.300,26.0 -24.7,0.99,6.440,12.9 -23.8,0.99,5.970,17.3 -23.2,0.99,6.460,9.8 -23.0,0.99,6.090,14.0 -22.8,0.99,4.510,11.3 -23.6,0.99,3.760,8.9 -24.1,0.99,2.020,4.4 -24.1,0.99,0.810,351.0 -24.7,0.99,0.570,102.5 -25.0,0.99,1.870,115.1 -25.1,0.99,3.680,127.3 -25.4,0.99,4.010,132.5 -25.6,0.99,4.200,134.7 -25.6,0.99,4.630,131.5 -25.4,0.99,4.220,129.6 -25.1,0.99,4.980,134.3 -25.2,0.99,4.120,144.1 -25.0,0.99,4.510,156.7 -25.1,0.99,4.580,157.2 -25.0,0.99,4.720,156.8 -24.9,0.99,3.730,158.2 -24.8,0.99,3.080,166.6 -24.7,0.99,1.980,162.8 -24.7,0.99,1.960,159.0 -24.8,0.99,1.460,94.4 -24.8,0.99,2.730,149.6 -24.7,0.99,2.630,132.9 -24.7,0.99,2.390,110.3 -24.8,0.99,2.180,105.0 -24.9,0.99,2.480,99.1 -25.0,0.99,2.110,90.1 -25.2,0.99,3.200,87.5 -25.6,0.99,2.650,111.4 -26.1,0.99,3.620,115.9 -26.0,0.99,3.570,121.8 -26.2,0.99,5.020,121.7 -26.3,0.99,5.480,125.3 -26.2,0.99,5.720,139.6 -25.9,0.99,6.170,138.3 -25.9,0.99,6.770,145.5 -25.9,0.99,7.090,150.9 -25.9,0.99,6.210,145.8 -25.8,0.99,6.260,147.7 -25.8,0.99,6.200,151.5 -25.7,0.99,6.140,158.5 -25.4,0.99,4.940,170.7 -25.5,0.99,3.560,156.8 -25.4,0.99,4.090,157.2 -25.5,0.99,1.910,137.0 -25.3,0.99,1.680,159.3 -25.4,0.99,0.820,103.9 -25.3,0.99,0.960,21.5 -25.4,0.99,1.910,56.6 -25.2,0.99,2.160,56.6 -25.2,0.99,3.450,40.5 -25.5,0.99,2.990,77.0 -26.5,0.99,4.770,94.0 -26.8,0.99,5.660,110.7 -26.7,0.99,6.750,121.7 -26.8,0.98,6.270,137.2 -26.5,0.98,6.100,150.8 -26.4,0.98,6.540,146.8 -26.4,0.98,6.230,144.8 -26.3,0.98,6.610,150.1 -26.2,0.98,7.070,153.8 -26.2,0.98,6.450,134.8 -26.1,0.99,3.820,89.2 -21.7,0.99,19.960,26.5 -23.0,0.99,14.570,86.8 -23.2,0.98,8.700,89.1 -24.4,0.98,8.520,119.8 -26.0,0.98,6.160,147.1 -25.8,0.98,6.530,141.7 -23.6,0.99,8.950,33.9 -23.2,0.99,10.300,6.6 -23.2,0.99,11.240,348.3 -24.5,0.99,9.240,358.6 -26.1,0.99,7.150,358.6 -27.1,0.99,5.260,2.8 -26.9,0.99,4.080,105.3 -27.4,0.99,2.550,108.9 -27.4,0.99,2.780,184.1 -23.2,0.99,20.690,294.6 -24.7,0.99,6.350,265.7 -26.9,0.98,10.080,207.0 -27.2,0.98,6.470,227.0 -27.0,0.99,8.180,249.2 -27.5,0.98,8.630,258.7 -26.9,0.99,6.340,299.8 -26.9,0.98,6.320,335.9 -25.5,0.99,6.690,354.6 -24.8,0.99,6.870,19.2 -24.3,0.99,5.710,32.0 -24.1,0.99,5.660,26.1 -23.6,0.99,6.090,21.7 -23.1,0.99,5.490,10.0 -22.4,0.99,4.820,346.8 -21.9,0.99,5.170,350.9 -21.3,0.99,5.310,337.3 -21.1,0.99,6.530,332.1 -21.7,0.99,6.420,341.6 -22.4,0.99,6.500,343.9 -23.3,0.99,4.740,344.2 -24.0,0.99,2.980,284.9 -25.0,0.99,2.850,264.1 -25.5,0.99,3.250,204.0 -25.5,0.99,4.090,183.3 -25.5,0.99,4.280,188.8 -25.9,0.99,4.530,189.4 -25.7,0.99,4.370,185.0 -25.7,0.99,3.950,187.9 -25.9,0.99,2.760,210.4 -26.0,0.99,2.300,237.5 -26.2,0.99,3.590,254.6 -26.2,0.99,2.030,262.2 -25.1,0.99,2.930,292.7 -25.4,0.99,2.090,227.0 -25.6,0.99,1.580,163.2 -25.0,0.99,3.700,70.2 -25.0,0.99,3.570,94.8 -25.1,0.99,1.910,123.1 -25.0,0.99,2.260,135.0 -25.0,0.99,2.030,165.0 -25.2,0.99,3.180,204.1 -25.2,0.99,2.130,196.3 -25.3,0.99,2.880,199.8 -24.6,0.99,6.890,206.8 -23.4,0.99,15.340,203.3 -22.9,0.99,10.110,182.0 -24.5,0.99,3.850,146.6 -24.7,0.99,4.540,154.9 -25.4,0.99,5.400,179.3 -25.4,0.99,5.940,157.4 -25.8,0.99,5.760,163.4 -25.7,0.99,6.880,152.6 -25.9,0.99,7.280,137.9 -25.7,0.99,8.400,137.2 -25.8,0.99,7.910,141.0 -26.0,0.99,8.350,146.7 -26.1,0.99,7.550,149.8 -26.1,0.99,8.040,157.2 -26.0,0.99,10.010,167.1 -25.3,0.99,9.820,202.9 -24.6,0.99,7.250,214.3 -24.7,0.99,7.150,189.3 -24.9,0.99,5.380,196.2 -25.2,0.99,4.240,198.0 -25.6,0.99,3.280,166.8 -25.8,0.99,3.730,142.7 -25.7,0.99,5.190,120.2 -25.6,0.99,5.070,138.8 -26.0,0.99,3.510,163.3 -25.7,0.99,2.440,161.1 -26.4,0.99,9.300,177.4 -24.8,0.99,9.360,171.7 -26.2,0.99,3.740,214.7 -25.9,0.99,6.940,212.2 -25.3,0.99,4.700,192.9 -25.4,0.99,5.940,163.9 -25.5,0.99,5.370,157.5 -26.0,0.99,7.150,148.8 -26.1,0.99,7.260,152.7 -26.3,0.99,8.160,163.5 -26.3,0.99,7.460,182.0 -26.1,0.99,7.330,184.2 -26.1,0.99,6.480,191.7 -26.0,0.99,5.790,199.3 -26.0,0.99,4.820,198.8 -25.9,0.99,4.220,205.4 -25.9,0.99,3.010,203.2 -25.9,0.99,2.280,190.7 -26.0,0.99,2.770,176.9 -26.1,0.99,2.900,178.0 -26.0,0.99,2.820,165.2 -26.3,0.99,3.340,158.1 -26.3,0.99,3.310,161.1 -26.9,0.99,3.950,163.8 -26.9,0.99,4.870,149.0 -27.0,0.99,5.370,156.4 -26.8,0.99,6.110,156.7 -27.0,0.99,6.540,147.4 -27.0,0.99,6.520,151.6 -26.7,0.99,5.830,147.0 -26.6,0.99,6.340,149.9 -26.2,0.99,6.680,147.3 -26.0,0.99,6.620,160.5 -26.0,0.99,5.550,157.2 -25.9,0.99,6.970,148.4 -25.8,0.99,7.220,164.2 -26.0,0.99,7.220,172.7 -26.3,0.99,8.050,175.0 -26.0,0.99,8.700,178.3 -26.0,0.99,7.510,185.3 -26.1,0.99,7.120,188.2 -26.1,0.99,6.220,188.1 -26.2,0.99,5.340,181.1 -26.3,0.99,4.660,180.9 -26.4,0.99,4.350,172.0 -26.3,0.99,4.340,164.8 -26.4,0.99,4.930,162.7 -26.6,0.99,4.600,166.3 -26.8,0.99,4.760,165.7 -26.8,0.99,4.740,164.5 -26.9,0.99,4.990,172.5 -26.8,0.99,4.660,166.2 -27.1,0.99,5.220,160.4 -26.7,0.99,5.680,163.2 -26.6,0.99,5.060,143.8 -26.7,0.99,5.670,154.5 -26.5,0.99,5.430,153.3 -26.6,0.99,5.390,158.3 -26.4,0.99,5.760,162.0 -26.3,0.99,5.600,172.7 -26.2,0.99,6.160,185.2 -26.9,0.99,5.200,183.6 -26.4,0.99,4.660,186.1 -26.3,0.99,4.380,190.6 -26.3,0.99,4.000,183.5 -26.2,0.99,3.470,209.1 -26.2,0.99,2.640,214.3 -26.2,0.99,3.040,210.6 -26.3,0.99,3.000,181.2 -26.7,0.99,4.330,189.6 -26.8,0.99,5.220,171.9 -26.9,0.99,4.980,215.2 -27.1,0.99,4.650,216.5 -27.0,0.99,5.340,162.8 -26.5,0.99,7.010,165.1 -26.4,0.99,6.140,165.9 -26.7,0.99,7.070,174.6 -26.5,0.99,7.720,177.3 -26.4,0.99,7.430,180.6 -26.5,0.99,6.780,189.0 -26.7,0.99,7.390,196.7 -26.4,0.99,6.890,206.7 -26.4,0.99,6.830,204.3 -26.3,0.99,7.310,207.0 -26.2,0.99,6.880,205.0 -26.3,0.99,6.440,212.4 -26.5,0.99,6.360,220.6 -26.4,0.99,5.410,224.4 -26.3,0.99,5.180,236.8 -26.5,0.99,4.060,246.8 -26.2,0.99,3.020,262.4 -25.9,0.99,2.450,273.0 -26.0,0.99,2.270,277.1 -26.4,0.99,2.050,236.8 -26.7,0.99,1.640,214.4 -27.6,0.99,2.010,179.6 -27.9,0.99,2.400,174.0 -28.1,0.99,3.950,180.3 -28.1,0.99,5.170,188.7 -28.0,0.99,6.560,197.3 -27.6,0.99,7.240,206.8 -27.7,0.99,7.440,208.5 -27.5,0.99,7.730,217.0 -27.2,0.99,7.500,222.7 -27.3,0.99,6.720,228.8 -27.3,0.99,6.310,237.0 -27.5,0.99,5.510,246.1 -27.4,0.99,4.870,247.2 -27.0,0.99,4.700,252.6 -26.2,0.99,4.100,264.0 -26.1,0.99,4.180,265.9 -26.1,0.99,3.820,270.1 -25.8,0.99,3.590,264.3 -25.5,0.99,4.440,267.7 -25.3,0.99,4.180,283.7 -25.5,0.99,3.040,304.9 -25.9,0.99,2.690,268.2 -26.0,0.99,2.480,237.1 -26.6,0.99,3.140,227.3 -27.7,0.99,3.680,210.3 -28.0,0.99,5.010,203.9 -27.9,0.99,5.510,205.7 -28.0,0.99,5.700,201.9 -27.9,0.99,5.790,207.8 -28.0,0.99,5.930,211.0 -27.7,0.99,6.540,212.5 -27.8,0.99,6.880,213.0 -27.6,0.99,6.020,217.7 -27.7,0.99,5.730,218.0 -27.5,0.99,5.400,221.1 -27.6,0.99,5.030,229.7 -27.3,0.99,4.840,233.0 -27.3,0.99,4.620,240.0 -26.9,0.99,4.150,246.0 -27.0,0.99,3.720,249.9 -26.2,0.99,2.270,266.1 -26.3,0.99,2.410,292.1 -26.1,0.99,2.170,276.1 -26.1,0.99,2.350,285.7 -26.0,0.99,2.120,284.8 -26.0,0.99,2.510,257.2 -26.2,0.99,2.740,249.5 -26.4,0.99,2.920,222.2 -26.9,0.99,3.860,196.0 -27.1,0.99,4.070,197.9 -27.4,0.99,4.110,185.6 -27.5,0.99,5.150,184.4 -27.4,0.99,5.890,180.5 -28.1,0.99,5.800,181.2 -27.4,0.99,6.380,182.8 -27.4,0.99,6.500,182.1 -27.5,0.99,7.170,180.4 -27.8,0.99,7.150,183.9 -27.2,0.99,7.590,190.7 -27.1,0.99,7.950,184.5 -26.9,0.99,7.620,189.2 -26.8,0.99,7.530,189.6 -26.8,0.99,7.350,192.4 -26.7,0.99,6.280,197.8 -26.6,0.99,5.960,192.6 -26.7,0.99,4.470,192.6 -26.7,0.99,3.100,176.4 -26.8,0.99,4.140,178.3 -26.4,0.99,6.650,219.5 -25.8,0.99,4.410,215.3 -26.2,0.99,4.880,231.8 -26.9,0.99,4.110,215.4 -27.5,0.99,5.670,211.8 -27.8,0.99,6.710,205.3 -28.1,0.99,7.450,196.8 -28.2,0.99,7.550,201.5 -28.2,0.99,8.450,206.1 -28.5,0.99,8.020,203.2 -28.2,0.99,8.080,205.9 -28.4,0.99,8.470,200.7 -28.1,0.99,8.760,202.9 -28.2,0.99,8.730,200.4 -28.1,0.99,8.520,203.6 -28.1,0.99,8.280,198.5 -28.3,0.99,7.890,213.4 -28.0,0.99,8.010,215.3 -28.3,0.99,6.850,221.0 -28.2,0.99,6.610,218.4 -28.0,0.99,6.090,223.4 -27.9,0.99,6.300,233.4 -27.7,0.99,6.250,235.0 -26.4,0.99,3.740,273.6 -26.5,0.99,3.770,282.3 -26.9,0.99,3.610,261.7 -27.2,0.99,3.150,247.3 -27.1,0.99,3.940,204.0 -27.7,0.99,4.410,192.6 -28.1,0.99,5.000,181.8 -28.0,0.99,5.900,177.6 -28.4,0.99,5.890,177.3 -28.1,0.99,7.180,186.7 -27.9,0.99,6.960,184.7 -27.9,0.99,7.930,182.0 -28.1,0.99,7.830,184.4 -27.7,0.99,8.770,187.2 -28.0,0.99,7.590,195.8 -27.4,0.99,8.940,193.5 -27.5,0.99,7.530,207.4 -27.6,0.99,7.260,202.3 -27.7,0.99,8.130,218.3 -27.3,0.99,7.830,224.1 -27.3,0.99,7.340,226.9 -26.8,0.99,7.560,229.6 -27.1,0.99,6.570,243.9 -26.3,0.99,5.920,270.9 -25.8,0.99,4.540,265.6 -26.0,0.99,4.280,264.6 -26.1,0.99,5.350,266.4 -26.4,0.99,4.250,222.4 -26.7,0.99,4.260,214.4 -27.4,0.99,3.850,198.4 -27.5,0.99,3.600,182.5 -27.6,0.99,4.350,178.0 -27.7,0.99,5.150,177.1 -27.7,0.99,5.640,181.2 -27.7,0.99,6.330,180.0 -27.6,0.99,6.500,183.2 -27.4,0.99,7.180,187.3 -27.2,0.99,7.210,183.5 -27.2,0.99,7.710,186.5 -27.1,0.99,7.680,190.6 -27.2,0.99,7.700,194.3 -27.0,0.99,6.970,195.4 -27.0,0.99,6.930,197.9 -27.1,0.99,7.010,204.5 -27.2,0.99,6.380,214.8 -27.0,0.99,6.400,218.3 -26.8,0.99,6.000,214.0 -26.8,0.99,3.950,237.0 -26.8,0.99,2.520,237.8 -26.7,0.99,2.340,272.3 -26.4,0.99,1.010,292.9 -26.6,0.99,0.590,249.1 -26.8,0.99,1.660,128.6 -27.2,0.99,3.700,152.2 -27.6,0.99,4.220,168.2 -27.6,0.99,5.170,168.0 -27.8,0.99,5.520,185.0 -27.8,0.99,6.680,174.4 -27.8,0.99,7.840,175.5 -27.5,0.99,6.430,174.6 -27.4,0.99,7.600,177.3 -27.3,0.99,7.840,182.6 -27.3,0.99,8.250,183.5 -27.4,0.99,8.490,181.9 -27.3,0.99,8.610,182.3 -27.4,0.99,8.930,181.1 -27.1,0.99,9.180,184.6 -27.6,0.99,7.560,192.2 -27.6,0.99,7.170,194.2 -27.5,0.99,6.470,192.3 -27.6,0.99,6.060,194.3 -27.6,0.99,5.970,187.0 -27.4,0.99,5.050,181.4 -27.5,0.99,5.350,166.9 -27.5,0.99,4.550,164.5 -27.4,0.99,4.330,157.4 -27.6,0.99,4.020,165.5 -27.6,0.99,4.190,168.4 -27.8,0.99,4.550,163.6 -27.7,0.99,5.010,166.2 -27.8,0.99,4.680,158.7 -27.7,0.99,5.870,151.5 -27.8,0.99,5.670,152.5 -27.9,0.99,6.810,145.8 -27.5,0.99,7.610,150.1 -27.6,0.99,6.940,149.5 -27.6,0.99,7.670,149.8 -27.4,0.99,7.060,156.3 -27.2,0.99,7.210,152.6 -27.3,0.99,7.040,159.8 -27.1,0.99,6.530,166.9 -27.1,0.99,6.120,164.9 -27.2,0.99,6.060,170.3 -27.1,0.99,5.490,160.7 -27.2,0.99,6.130,151.6 -27.2,0.99,5.650,152.4 -27.2,0.99,5.170,144.3 -27.2,0.99,5.450,145.1 -27.2,0.99,6.300,178.7 -27.4,0.99,5.620,167.6 -27.1,0.99,5.700,161.4 -27.2,0.99,5.750,149.8 -27.4,0.99,5.670,163.8 -27.6,0.99,5.240,161.6 -27.7,0.99,5.600,161.6 -27.7,0.99,4.990,164.0 -27.6,0.99,5.210,169.3 -27.4,0.99,5.620,163.2 -27.2,0.99,6.050,158.0 -27.1,0.99,6.670,163.9 -27.0,0.99,6.060,162.1 -26.8,0.99,6.150,168.4 -27.0,0.99,6.360,180.0 -26.7,0.99,6.190,172.6 -26.7,0.99,5.770,178.8 -26.6,0.99,5.310,182.2 -26.7,0.99,5.350,184.1 -26.9,0.99,5.350,187.6 -26.8,0.99,5.440,184.2 -26.7,0.99,4.450,183.3 -26.9,0.99,3.320,169.7 -27.0,0.99,3.860,162.0 -27.2,0.99,3.440,162.3 -27.1,0.99,2.920,158.2 -27.4,0.99,3.930,141.4 -27.4,0.99,3.340,147.5 -27.6,0.99,4.560,146.1 -27.7,0.99,5.890,152.6 -27.6,0.99,6.190,148.0 -27.6,0.99,6.030,155.9 -27.6,0.99,6.290,148.7 -27.5,0.99,6.140,151.8 -27.4,0.99,6.220,149.8 -27.4,0.99,6.800,156.6 -27.2,0.99,6.860,157.3 -27.1,0.99,6.760,165.6 -27.2,0.99,6.730,166.7 -27.1,0.99,7.810,169.2 -27.2,0.99,6.890,164.4 -27.0,0.99,6.270,171.4 -27.2,0.99,6.210,162.6 -27.2,0.99,6.380,162.1 -27.1,0.99,5.670,171.3 -27.2,0.99,7.260,153.8 -27.2,0.99,5.820,154.9 -27.2,0.99,5.380,154.9 -27.4,0.99,5.810,162.1 -27.3,0.99,4.740,175.2 -27.4,0.99,5.030,181.9 -27.6,0.99,5.360,174.9 -27.7,0.99,6.000,171.9 -27.8,0.99,6.160,183.6 -27.7,0.99,6.670,181.1 -27.6,0.99,8.070,177.0 -27.6,0.99,6.900,180.7 -27.3,0.99,8.550,176.2 -27.2,0.99,8.300,174.5 -27.3,0.99,7.410,166.5 -27.3,0.99,9.280,159.8 -27.4,0.99,8.230,160.8 -27.6,0.99,8.350,163.0 -27.3,0.99,9.590,159.9 -27.6,0.99,8.130,168.0 -28.1,0.99,8.390,172.5 -27.8,0.99,9.580,169.5 -27.8,0.99,8.630,173.4 -27.8,0.99,7.440,168.9 -27.8,0.99,7.930,177.3 -27.8,0.99,6.900,181.2 -27.8,0.99,5.770,184.1 -27.8,0.99,6.080,179.5 -27.7,0.99,5.710,172.7 -27.8,0.99,5.620,174.3 -28.2,0.99,6.040,177.8 -28.0,0.99,5.450,180.7 -27.9,0.99,6.540,170.8 -28.0,0.99,6.020,172.6 -28.0,0.99,6.290,169.0 -27.9,0.99,6.770,160.2 -27.8,0.99,6.770,162.1 -27.6,0.99,6.820,159.4 -27.5,0.99,7.750,158.9 -27.9,0.99,8.300,160.8 -27.4,0.99,9.100,160.1 -27.7,0.99,8.300,168.1 -27.3,0.99,7.900,173.5 -27.1,0.99,8.330,173.3 -27.1,0.99,9.320,178.2 -27.4,0.99,8.310,189.6 -27.5,0.99,8.690,184.5 -27.4,0.99,7.980,188.7 -27.5,0.99,6.960,193.7 -27.5,0.99,7.460,197.0 -27.5,0.99,7.300,190.8 -27.7,0.99,6.730,188.1 -27.5,0.99,6.680,195.5 -28.2,0.99,5.950,200.0 -27.7,0.99,6.630,182.2 -28.0,0.99,6.750,191.7 -27.9,0.99,5.820,180.1 -27.9,0.99,6.650,171.3 -28.1,0.99,6.840,185.5 -28.0,0.99,5.970,183.7 -27.6,0.99,8.320,166.7 -27.2,0.99,8.220,170.5 -27.7,0.99,8.350,171.4 -27.4,0.99,8.410,172.8 -27.6,0.99,9.250,168.7 -27.5,0.99,10.550,172.5 -27.4,0.99,11.030,171.8 -27.7,0.99,10.400,182.5 -27.0,0.99,9.900,183.4 -26.8,0.99,9.590,191.3 -27.2,0.99,9.550,191.5 -26.8,0.99,9.280,203.8 -27.1,0.99,8.270,208.7 -27.2,0.99,7.200,218.5 -27.5,0.99,6.160,215.4 -27.5,0.99,6.380,223.2 -27.8,0.99,5.850,235.1 -27.9,0.99,4.520,194.7 -27.9,0.99,5.350,163.3 -27.9,0.99,6.200,149.9 -28.1,0.99,5.550,183.9 -28.1,0.99,7.080,202.4 -28.2,0.99,6.800,155.1 -28.1,0.99,6.590,165.0 -27.8,0.99,7.440,169.5 -27.3,0.99,7.380,172.8 -27.2,0.99,7.550,173.3 -27.1,0.99,6.950,176.6 -27.3,0.99,7.210,183.3 -27.8,0.99,7.680,192.6 -27.6,0.99,8.020,193.3 -27.3,0.99,7.360,197.1 -27.4,0.99,5.210,195.1 -27.3,0.99,6.370,201.8 -27.2,0.99,5.630,202.3 -27.1,0.99,3.760,211.8 -26.9,0.99,3.370,233.2 -26.9,0.99,2.970,270.0 -26.5,0.99,2.320,288.4 -26.8,0.99,1.440,294.5 -26.9,0.99,2.980,255.6 -25.6,0.99,13.500,208.5 -25.9,0.99,2.280,249.6 -27.2,0.99,2.200,6.2 -27.6,0.99,4.020,153.4 -26.6,0.99,7.320,183.4 -27.1,0.99,8.830,186.9 -27.1,0.99,8.410,194.1 -26.8,0.99,7.240,187.7 -26.9,0.99,7.070,191.3 -27.0,0.99,6.860,189.0 -27.2,0.99,6.030,181.9 -27.0,0.99,6.900,197.1 -27.2,0.99,7.010,210.9 -27.0,0.99,7.540,217.1 -27.1,0.99,7.990,223.7 -26.9,0.99,7.160,235.5 -27.1,0.99,7.020,232.9 -27.1,0.99,7.060,244.7 -26.7,0.99,7.560,245.2 -26.0,0.99,6.690,270.6 -25.9,0.99,7.420,261.9 -26.1,0.99,6.890,281.1 -26.5,0.99,5.290,255.4 -26.6,0.99,5.330,229.7 -27.0,0.99,5.330,219.0 -27.9,0.99,4.690,218.7 -28.2,0.99,6.280,200.0 -28.2,0.99,6.750,208.6 -28.4,0.99,8.040,204.8 -28.5,0.99,9.530,207.0 -28.7,0.99,9.820,209.4 -28.4,0.99,9.420,212.8 -28.4,0.99,9.980,214.6 -28.7,0.99,9.180,215.3 -28.8,0.99,9.710,220.1 -28.4,0.98,9.530,218.8 -28.9,0.99,9.970,222.3 -28.0,0.99,10.530,224.7 -27.8,0.99,11.400,227.0 -28.1,0.99,10.960,235.9 -27.7,0.99,10.460,239.6 -28.1,0.99,9.880,248.8 -27.8,0.99,8.800,252.9 -26.9,0.99,8.180,261.4 -26.6,0.99,7.980,259.1 -26.8,0.99,8.280,254.1 -27.4,0.99,6.680,244.0 -27.4,0.99,7.700,224.7 -27.5,0.99,7.840,228.9 -28.8,0.98,7.680,222.7 -29.3,0.98,8.970,219.9 -29.5,0.98,10.680,219.7 -29.5,0.98,11.750,218.7 -29.6,0.98,11.870,221.1 -29.7,0.98,11.520,223.3 -29.3,0.98,10.510,221.8 -29.4,0.98,9.400,226.2 -30.3,0.98,8.530,229.3 -29.6,0.98,8.410,231.5 -29.7,0.98,7.640,231.2 -30.0,0.98,7.850,240.9 -29.9,0.98,8.340,243.5 -29.4,0.98,7.230,262.4 -28.6,0.98,6.860,295.3 -28.7,0.98,7.640,305.3 -28.6,0.98,3.950,334.6 -27.9,0.99,3.580,4.3 -27.4,0.99,4.000,10.9 -27.8,0.99,3.670,16.6 -28.8,0.99,3.120,27.1 -29.1,0.99,1.300,12.6 -29.4,0.99,1.840,253.8 -29.4,0.99,3.220,259.6 -29.8,0.99,3.580,229.3 -32.6,0.98,8.120,326.2 -33.0,0.98,6.590,328.7 -31.3,0.98,5.610,249.5 -30.3,0.98,6.980,240.6 -30.8,0.98,6.930,252.5 -30.6,0.98,5.970,247.7 -30.2,0.98,4.230,265.4 -30.7,0.98,8.320,29.5 -29.8,0.98,7.890,41.5 -29.6,0.99,6.250,55.2 -28.9,0.99,8.250,66.2 -28.3,0.99,7.360,65.9 -28.0,0.99,7.730,57.0 -27.6,0.99,7.690,54.2 -27.1,0.99,7.030,51.5 -26.9,0.99,7.000,52.1 -26.6,0.99,6.340,52.6 -25.5,0.99,5.800,38.9 -25.0,0.99,5.910,33.8 -25.1,0.99,5.310,38.5 -25.5,0.99,5.050,42.4 -26.1,0.99,3.530,95.9 -26.4,0.99,1.640,93.6 -27.2,0.99,0.790,164.8 -27.5,0.99,2.250,157.3 -27.5,0.99,4.490,146.9 -27.5,0.99,6.690,145.3 -27.5,0.99,7.360,142.7 -27.5,0.99,5.740,148.8 -27.6,0.99,4.510,145.9 -27.8,0.99,2.680,116.5 -27.7,0.99,0.960,112.5 -28.1,0.99,4.560,12.3 -27.9,0.99,4.640,15.3 -27.7,0.99,3.830,32.0 -27.6,0.99,4.000,48.4 -27.2,0.99,3.470,61.1 -26.0,0.99,3.150,30.2 -26.4,0.99,4.570,48.8 -25.9,0.99,4.440,40.5 -24.9,0.99,5.130,26.1 -25.1,0.99,6.020,31.3 -25.1,0.99,4.710,40.9 -25.2,0.99,4.220,49.6 -25.6,0.99,4.600,66.5 -26.1,0.99,3.680,95.6 -26.5,0.99,3.550,131.5 -27.4,0.99,2.110,132.2 -27.4,0.99,3.790,128.6 -27.5,0.99,5.280,125.6 -27.6,0.99,5.800,129.8 -27.7,0.99,6.710,119.2 -27.9,0.99,6.300,115.2 -27.6,0.99,4.590,120.6 -27.5,0.99,3.810,137.8 -27.6,0.99,2.300,125.3 -27.5,0.99,1.750,112.8 -27.4,0.99,0.980,167.0 -27.4,0.99,0.790,195.6 -27.3,0.99,1.330,270.5 -27.1,0.99,0.560,352.0 -25.9,0.99,2.720,2.6 -24.9,0.99,4.500,14.1 -25.2,0.99,3.900,4.6 -24.8,0.99,4.520,22.0 -25.2,0.99,4.330,40.1 -25.4,0.99,4.180,43.2 -25.6,0.99,5.210,55.6 -25.9,0.99,4.880,68.2 -26.3,0.99,4.540,74.4 -26.7,0.99,4.840,97.6 -27.3,0.99,4.950,111.8 -27.5,0.99,5.050,120.8 -27.5,0.99,4.860,130.7 -27.7,0.99,4.680,137.5 -28.0,0.99,3.410,143.9 -27.9,0.99,4.870,132.5 -27.7,0.99,4.670,132.2 -27.4,0.99,4.610,132.3 -27.1,0.99,3.100,121.5 -27.0,0.99,3.390,128.9 -26.9,0.99,2.630,109.2 -26.8,0.99,2.590,115.6 -26.7,0.99,2.320,100.7 -26.6,0.99,2.700,86.0 -26.5,0.99,1.930,60.6 -26.4,0.99,1.900,28.4 -26.3,0.99,2.840,10.9 -25.5,0.99,4.540,18.2 -25.1,0.99,4.840,19.8 -24.9,0.99,4.360,13.5 -25.2,0.99,4.990,25.4 -25.2,0.99,3.680,50.1 -25.8,0.99,2.720,80.5 -26.2,0.99,3.560,99.4 -27.0,0.99,3.650,113.3 -27.3,0.99,3.470,122.1 -27.3,0.99,3.990,138.2 -27.6,0.99,4.350,150.7 -27.6,0.99,5.170,148.6 -27.6,0.99,5.890,143.1 -27.4,0.99,5.630,132.8 -27.2,0.99,5.320,134.5 -27.2,0.99,5.920,128.8 -27.1,0.99,5.370,126.2 -27.0,0.99,4.160,130.3 -27.1,0.99,3.500,136.9 -27.1,0.99,4.240,130.3 -26.9,0.99,3.410,127.2 -27.0,0.99,3.380,121.7 -26.9,0.99,2.540,108.6 -27.0,0.99,2.400,91.2 -26.8,0.99,2.460,76.7 -26.6,0.99,2.380,63.2 -26.4,0.99,3.510,46.2 -25.9,0.99,4.680,43.1 -26.4,0.99,5.190,46.8 -26.8,0.99,6.690,75.4 -26.8,0.99,7.420,103.2 -27.0,0.99,5.340,110.3 -27.0,0.99,7.050,125.0 -26.6,0.99,5.980,139.5 -26.7,0.99,3.760,118.1 -26.6,0.99,4.860,92.8 -26.8,0.99,6.510,119.7 -26.5,0.99,6.030,118.4 -26.6,0.99,7.680,120.0 -26.7,0.99,7.190,121.9 -26.6,0.99,6.850,126.2 -26.6,0.99,5.730,141.3 -26.9,0.99,5.340,138.9 -27.1,0.99,6.670,156.4 -27.0,0.99,4.330,151.9 -27.0,0.99,3.180,140.7 -27.0,0.99,2.040,142.0 -26.8,0.99,0.720,189.6 -26.9,0.99,2.330,114.0 -26.6,0.99,2.090,55.2 -26.1,0.99,6.100,40.7 -26.8,0.99,5.140,106.5 -25.7,0.99,4.480,83.0 -26.1,0.99,4.450,112.8 -26.4,0.99,4.410,112.4 -27.0,0.99,5.130,158.6 -27.1,0.99,5.680,129.9 -27.1,0.99,5.890,132.3 -27.0,0.99,6.240,126.1 -27.1,0.99,5.770,137.8 -27.1,0.99,6.360,140.7 -26.6,0.99,8.520,123.7 -26.2,0.99,6.850,143.5 -26.7,0.99,6.620,149.5 -26.8,0.99,7.010,161.4 -26.8,0.99,6.590,149.9 -26.8,0.99,7.540,157.9 -26.8,0.99,6.110,152.0 -26.8,0.99,6.430,165.4 -26.8,0.99,6.930,165.0 -26.9,0.99,6.830,169.9 -27.1,0.99,6.180,179.2 -26.8,0.99,9.250,171.4 -25.4,0.99,9.230,169.3 -25.7,0.99,8.300,164.1 -26.0,0.99,7.740,167.4 -26.3,0.99,10.860,174.0 -25.6,0.99,9.030,180.3 -25.3,0.99,7.670,198.5 -25.7,0.99,7.020,186.0 -26.2,0.99,6.540,180.9 -26.0,0.99,7.870,189.5 -23.7,0.99,9.360,196.7 -25.3,0.99,5.330,184.6 -26.2,0.99,5.210,157.3 -25.9,0.99,4.920,144.3 -26.7,0.99,7.210,140.0 -26.8,0.99,7.570,138.2 -27.0,0.99,8.220,140.3 -27.2,0.99,10.100,147.6 -27.0,0.99,8.680,156.8 -27.2,0.99,8.700,165.5 -27.3,0.99,8.460,168.0 -27.3,0.99,8.320,169.0 -27.3,0.99,8.410,170.9 -27.4,0.99,9.520,168.2 -27.6,0.99,9.720,174.2 -27.1,0.99,7.890,178.8 -27.5,0.99,7.260,171.2 -27.6,0.99,6.710,159.8 -24.3,0.99,3.170,313.4 -23.8,1.00,6.140,2.1 -24.5,1.00,4.730,296.9 -25.3,1.00,2.620,316.3 -25.8,1.00,1.850,54.3 -26.1,0.99,3.340,92.5 -26.1,0.99,3.480,97.7 -26.4,0.99,4.770,113.8 -26.7,0.99,5.820,120.8 -26.8,0.99,4.440,120.3 -27.6,0.99,7.210,141.1 -27.5,0.99,6.950,152.5 -27.7,0.99,6.660,153.6 -27.2,0.99,8.430,148.5 -27.3,0.99,7.140,157.9 -26.9,0.99,7.200,160.0 -27.2,0.99,6.230,168.1 -26.9,1.00,6.110,169.8 -26.9,1.00,5.190,176.7 -27.1,1.00,3.950,166.4 -26.9,1.00,4.160,165.0 -26.8,1.00,3.590,169.3 -26.8,1.00,3.330,154.5 -26.8,1.00,3.070,147.3 -26.9,1.00,2.830,150.9 -26.9,1.00,3.390,144.5 -26.9,1.00,3.340,130.2 -27.3,1.00,4.070,148.7 -27.3,1.00,6.030,146.5 -27.4,0.99,5.720,148.0 -27.4,0.99,5.980,147.8 -27.4,0.99,7.590,145.5 -27.6,0.99,6.620,158.9 -27.1,0.99,6.580,156.8 -26.9,0.99,6.410,166.0 -26.8,0.99,5.430,176.1 -26.8,0.99,5.990,175.0 -26.7,0.99,6.980,177.7 -26.8,0.99,6.420,178.8 -26.9,0.99,6.750,183.8 -26.6,0.99,5.800,180.7 -26.7,0.99,5.400,186.1 -26.9,0.99,5.270,193.0 -26.9,0.99,5.130,191.8 -26.9,0.99,4.370,201.4 -26.7,0.99,3.690,211.7 -26.8,0.99,2.870,227.6 -26.7,0.99,2.340,192.4 -26.7,0.99,2.370,199.7 -26.7,0.99,1.370,192.3 -26.8,0.99,2.870,168.3 -27.1,0.99,3.440,182.0 -27.3,0.99,5.380,176.3 -27.3,0.99,4.500,172.3 -27.4,0.99,4.570,171.5 -27.5,0.99,5.250,175.7 -27.4,0.99,5.460,178.1 -27.2,0.99,5.750,184.3 -27.2,0.99,6.590,182.1 -27.2,0.99,7.410,187.8 -27.4,0.99,7.290,189.9 -27.0,0.99,8.160,196.3 -27.1,0.99,7.870,198.0 -26.9,0.99,8.960,201.8 -27.0,0.99,7.670,209.1 -27.3,0.99,8.650,214.8 -27.0,0.99,8.620,221.0 -27.0,0.99,9.040,221.1 -27.1,0.99,7.560,227.5 -26.9,0.99,6.870,233.8 -26.9,0.99,7.450,237.4 -26.6,0.99,6.650,246.5 -26.8,0.99,6.190,240.4 -26.7,0.99,6.140,234.7 -26.9,0.99,6.290,216.9 -27.6,0.99,6.600,211.4 -27.7,0.99,6.920,203.5 -27.7,0.99,7.500,203.0 -27.6,0.99,8.110,199.7 -27.7,0.99,8.880,203.9 -27.8,0.99,8.780,201.6 -27.6,0.99,7.980,208.6 -27.8,0.99,3.440,228.4 -27.2,0.99,8.700,213.2 -26.5,0.99,6.800,235.1 -27.4,0.99,6.930,222.8 -27.7,0.99,7.990,228.0 -27.1,0.99,8.500,228.9 -27.2,0.99,8.520,233.9 -27.2,0.99,7.530,236.0 -26.9,0.99,7.430,245.2 -26.8,0.99,7.180,249.6 -26.4,0.99,6.540,267.5 -26.1,0.99,6.560,276.9 -26.0,0.99,5.810,276.3 -25.9,0.99,6.210,278.1 -26.2,0.99,4.570,277.6 -26.4,0.99,3.590,274.0 -26.7,0.99,2.780,251.1 -27.6,0.99,3.330,222.7 -28.0,0.99,4.090,208.6 -28.3,0.99,5.890,189.9 -28.0,0.99,7.040,189.9 -28.1,0.99,8.750,192.3 -27.4,0.99,8.960,205.0 -27.1,0.99,8.250,216.6 -27.0,0.99,7.570,217.1 -27.4,0.99,6.550,229.1 -27.5,0.99,5.830,235.6 -27.7,0.99,5.110,242.3 -27.8,0.99,4.190,247.9 -27.9,0.99,3.660,240.1 -27.6,0.99,3.230,247.3 -27.4,0.99,3.900,254.0 -26.8,0.99,4.380,280.1 -26.2,0.99,4.250,302.9 -25.9,0.99,4.080,303.6 -25.6,0.99,4.010,313.5 -25.7,0.99,4.010,311.8 -26.2,0.99,4.220,308.4 -26.7,0.99,3.280,314.5 -27.5,0.99,2.360,320.1 -27.3,0.99,1.540,272.1 -28.2,0.99,1.820,243.7 -28.8,0.99,1.990,171.9 -28.5,0.99,2.880,155.7 -28.6,0.99,5.720,178.9 -28.4,0.99,7.020,188.0 -28.3,0.99,6.500,182.0 -28.0,0.99,6.590,194.1 -27.8,0.99,6.620,201.5 -27.8,0.99,6.700,206.2 -27.7,0.99,6.440,215.7 -27.5,0.99,5.780,214.0 -27.6,0.99,4.910,216.0 -27.3,0.99,6.030,216.9 -27.1,0.99,5.270,225.2 -27.0,0.99,4.090,220.7 -27.1,0.99,4.460,228.5 -26.9,0.99,3.660,236.7 -26.9,0.99,3.640,253.5 -26.7,0.99,4.040,267.8 -26.2,0.99,3.760,283.8 -26.1,0.99,3.340,300.1 -26.4,0.99,1.890,278.4 -26.5,0.99,1.500,228.1 -26.6,0.99,1.700,196.4 -27.0,0.99,2.800,174.2 -27.4,0.99,4.100,150.4 -28.5,0.99,2.870,144.5 -28.8,0.99,4.590,156.6 -28.5,0.99,5.600,152.1 -28.1,0.99,6.230,154.7 -27.7,0.99,7.810,146.7 -27.7,0.99,7.380,153.1 -27.4,0.99,8.850,162.8 -27.0,0.99,8.250,167.6 -27.1,0.99,8.000,163.8 -27.5,0.99,7.280,153.7 -27.4,0.99,7.650,152.2 -27.3,0.99,8.310,155.0 -26.8,0.99,12.910,162.2 -27.5,0.99,9.710,162.9 -27.8,0.99,8.490,150.2 -28.1,0.99,7.310,156.0 -27.7,0.99,7.020,149.6 -27.5,0.99,7.550,148.3 -27.3,0.99,6.580,99.7 -23.9,0.99,7.000,11.3 -23.0,0.99,12.950,310.7 -22.3,0.99,5.360,287.5 -22.1,0.99,3.460,187.6 -23.1,0.99,3.800,67.1 -23.9,0.99,3.360,70.7 -25.3,0.99,6.290,84.1 -26.3,0.99,8.280,112.2 -26.4,0.99,7.380,108.5 -26.7,0.99,8.100,116.1 -26.7,0.99,7.350,119.5 -26.8,0.99,7.690,102.7 -26.8,0.99,7.440,106.7 -26.9,0.99,8.380,102.9 -24.4,0.99,6.790,103.2 -25.5,0.99,10.210,104.7 -23.6,0.99,6.680,183.1 -24.7,0.99,6.650,171.1 -24.2,0.99,2.230,136.3 -23.6,0.99,6.440,147.3 -25.1,0.99,5.050,98.9 -25.4,0.99,5.730,92.4 -25.8,0.99,4.690,82.7 -26.0,0.99,7.400,69.6 -25.8,0.99,9.590,81.5 -26.1,0.99,8.110,83.1 -26.3,0.99,7.280,78.5 -26.7,0.99,8.910,91.3 -26.8,0.99,7.150,101.0 -26.9,0.99,8.210,110.9 -26.5,0.99,7.820,108.0 -27.0,0.99,7.480,105.3 -25.7,0.99,8.870,85.3 -25.2,0.99,7.940,129.3 -24.7,0.99,1.520,112.9 -25.4,0.99,1.810,47.4 -26.1,0.99,5.620,103.4 -24.6,0.99,5.120,96.6 -25.5,0.99,5.950,110.9 -25.9,0.99,4.320,106.5 -26.4,0.99,5.160,91.1 -25.5,0.99,12.150,97.6 -24.7,1.00,8.780,113.7 -24.9,1.00,7.550,126.0 -25.0,1.00,4.550,125.0 -25.3,1.00,3.530,114.6 -25.7,1.00,3.180,98.8 -25.8,1.00,3.830,62.1 -26.0,1.00,4.840,56.0 -25.9,1.00,5.340,51.3 -26.2,1.00,6.070,62.1 -26.7,1.00,7.580,67.1 -26.6,1.00,7.150,100.2 -26.7,1.00,8.280,99.6 -26.9,1.00,5.870,112.6 -27.1,0.99,5.770,89.6 -27.4,0.99,6.180,104.4 -27.2,0.99,6.740,98.5 -27.3,0.99,6.200,94.8 -27.4,0.99,6.630,90.7 -27.5,0.99,5.930,91.2 -27.4,0.99,7.180,88.8 -27.2,0.99,6.060,90.6 -27.4,0.99,8.030,83.6 -27.4,0.99,6.310,96.6 -27.5,0.99,5.860,94.5 -26.8,0.99,5.780,81.6 -27.1,0.99,7.120,86.8 -27.2,0.99,5.290,82.7 -27.6,0.99,6.470,83.7 -26.9,1.00,7.220,70.7 -26.3,1.00,7.240,69.3 -26.3,1.00,6.420,69.7 -26.6,1.00,5.330,81.1 -26.7,0.99,4.550,86.2 -26.9,0.99,4.390,99.4 -26.9,0.99,3.600,101.4 -27.0,0.99,3.630,114.1 -27.1,0.99,3.340,127.9 -27.1,0.99,3.330,131.0 -27.0,0.99,2.800,111.5 -26.9,0.99,2.950,130.5 -26.7,0.99,1.280,86.8 -26.7,0.99,2.490,89.5 -27.0,0.99,5.050,98.4 -26.9,0.99,4.440,100.3 -26.9,0.99,4.020,110.8 -27.0,0.99,4.110,137.1 -26.9,0.99,3.840,113.7 -26.7,0.99,2.180,122.5 -26.1,0.99,3.590,208.7 -26.2,0.99,5.690,151.3 -23.3,0.99,5.570,228.5 -24.1,0.99,2.490,231.2 -24.4,0.99,2.240,285.4 -25.4,0.99,1.260,22.9 -24.9,0.99,2.710,7.0 -25.3,0.99,3.280,11.0 -25.7,0.99,2.460,31.8 -26.3,0.99,3.140,29.9 -26.0,0.99,5.600,41.2 -26.1,0.99,5.760,40.4 -26.3,0.99,4.250,81.1 -26.4,0.99,4.220,89.0 -26.5,0.99,3.680,91.9 -26.4,0.99,3.960,107.2 -26.4,0.99,4.050,112.4 -26.4,0.99,3.970,116.0 -26.6,0.99,3.730,134.4 -26.6,0.99,3.920,139.9 -26.7,0.99,3.790,152.3 -26.6,0.99,4.520,167.5 -26.5,0.99,3.670,176.0 -26.5,0.99,2.770,195.0 -26.4,0.99,3.200,186.2 -26.3,0.99,2.250,196.8 -26.4,0.99,2.110,181.7 -26.3,0.99,1.570,198.2 -26.3,0.99,0.850,246.5 -25.7,0.99,3.430,35.7 -25.6,0.99,5.510,82.9 -26.0,0.99,6.180,121.3 -25.9,0.99,7.880,141.6 -25.8,0.99,6.840,153.7 -27.0,0.99,5.960,159.8 -26.2,0.99,6.860,144.7 -26.7,0.99,6.330,134.8 -26.9,0.99,6.000,131.2 -27.1,0.99,5.380,133.6 -26.7,0.99,3.780,144.8 -26.8,0.99,6.340,178.7 -26.7,0.99,6.330,168.8 -26.7,0.99,7.430,181.6 -26.7,0.99,8.310,178.3 -27.0,0.99,8.350,187.6 -26.8,0.99,7.650,194.1 -26.8,0.99,5.040,192.2 -24.7,0.99,15.410,211.1 -24.2,0.99,5.260,198.5 -25.1,0.99,7.930,174.3 -27.5,0.99,7.560,215.2 -27.4,0.99,6.930,226.7 -27.3,0.99,7.170,234.4 -27.2,0.99,5.910,245.9 -27.5,0.99,4.750,241.5 -27.4,0.99,5.360,230.7 -27.7,0.99,5.850,220.8 -27.7,0.99,5.920,204.1 -28.2,0.99,5.490,181.7 -28.3,0.99,8.540,195.8 -27.9,0.99,7.990,189.5 -27.9,0.99,8.490,187.7 -27.9,0.99,8.660,178.2 -28.1,0.99,10.290,181.8 -28.1,0.99,10.040,178.3 -28.3,0.99,11.340,182.7 -28.3,0.99,11.560,184.2 -28.9,0.99,10.500,185.7 -28.5,0.99,11.210,193.2 -28.4,0.99,11.090,197.3 -28.9,0.99,9.260,189.4 -28.5,0.99,11.330,200.9 -28.2,0.99,9.620,198.3 -28.3,0.99,8.880,199.6 -27.8,0.99,9.090,200.7 -27.5,0.99,7.800,196.6 -27.2,0.99,7.190,197.3 -27.4,0.99,7.100,200.2 -27.5,0.99,4.770,201.6 -27.5,0.99,6.140,186.9 -27.7,0.99,8.050,194.6 -27.9,0.99,7.750,193.6 -28.0,0.99,8.330,191.6 -28.3,0.99,8.050,190.8 -28.0,0.99,8.850,194.2 -28.3,0.99,8.980,189.9 -28.3,0.99,8.390,191.8 -28.3,0.99,9.720,188.7 -27.9,0.99,9.690,191.1 -27.8,0.99,9.500,186.2 -27.4,0.99,9.610,181.1 -27.1,0.99,11.070,188.9 -27.4,0.99,10.330,193.1 -27.4,0.99,9.260,200.0 -27.1,0.99,10.050,193.8 -27.1,0.99,9.980,197.9 -27.1,0.99,9.280,197.5 -27.2,0.99,10.060,201.6 -27.5,0.99,8.630,201.4 -27.9,0.99,8.860,206.5 -27.4,0.99,9.030,205.3 -27.4,0.99,7.070,200.6 -27.4,0.99,6.160,211.0 -27.3,0.99,4.420,211.7 -27.4,0.99,4.550,223.6 -27.8,0.99,5.600,211.6 -27.9,0.99,6.100,207.7 -28.0,0.99,5.550,211.5 -28.0,0.99,5.890,196.1 -27.9,0.99,7.000,200.3 -27.8,0.99,7.330,193.7 -27.6,0.99,7.470,193.5 -27.7,0.99,7.540,197.8 -27.6,0.99,8.040,201.2 -27.3,0.99,8.070,186.0 -27.4,0.99,9.610,196.3 -27.2,0.99,8.180,207.1 -26.9,0.99,8.610,202.2 -27.0,0.99,8.640,205.8 -27.4,0.99,8.510,209.9 -27.5,0.99,8.540,213.0 -27.2,0.99,7.700,226.3 -27.1,0.99,7.470,221.9 -27.0,0.99,7.690,224.8 -27.1,0.99,6.380,239.3 -27.0,0.99,5.490,242.4 -27.0,0.99,5.130,241.8 -27.0,0.99,4.040,240.8 -26.9,0.99,4.630,221.0 -27.6,0.99,4.770,209.2 -27.7,0.99,4.690,196.4 -27.8,0.99,5.000,197.9 -27.5,0.99,6.450,196.2 -27.7,0.99,6.740,190.9 -27.6,0.99,7.210,196.3 -27.4,0.99,7.750,196.1 -27.1,0.99,7.150,196.1 -27.2,0.99,7.450,200.7 -27.2,0.99,7.810,208.1 -27.4,0.99,7.520,214.0 -27.0,0.99,7.390,219.5 -26.8,0.99,7.960,224.9 -26.7,0.99,8.830,232.9 -26.8,0.99,7.710,236.8 -26.9,0.99,7.980,244.6 -26.7,0.99,8.590,246.0 -26.2,0.99,7.880,261.0 -26.0,0.99,6.890,260.2 -25.6,0.99,6.260,267.6 -25.6,0.99,4.940,266.1 -26.0,0.99,4.660,250.5 -26.2,0.99,4.290,227.0 -26.7,0.99,3.180,225.4 -27.4,0.99,3.130,206.0 -27.7,0.99,4.150,200.8 -27.8,0.99,4.330,203.1 -27.8,0.99,5.620,200.8 -27.9,0.99,5.720,201.5 -28.0,0.99,5.380,198.5 -27.7,0.99,6.590,201.1 -27.5,0.99,6.770,202.6 -27.6,0.99,6.970,207.6 -27.5,0.99,7.430,207.1 -27.5,0.99,6.940,212.5 -27.4,0.99,7.380,215.4 -27.5,0.99,8.210,219.8 -27.2,0.99,7.360,219.5 -27.4,0.99,7.250,225.6 -27.3,0.99,7.010,233.6 -27.4,0.99,6.240,236.0 -27.2,0.99,6.070,239.1 -26.8,0.99,5.680,235.3 -26.9,0.99,5.110,236.5 -26.7,0.99,3.680,247.0 -26.4,0.99,2.680,234.3 -26.5,0.99,2.550,229.8 -26.8,0.99,3.890,200.9 -27.2,0.99,5.340,195.4 -27.5,0.99,6.240,187.4 -27.6,0.99,7.400,191.2 -27.6,0.99,7.930,192.7 -27.4,0.99,8.650,189.7 -27.7,0.99,8.870,194.9 -27.4,0.99,9.280,194.1 -27.1,0.99,10.020,199.7 -27.1,0.99,10.240,199.9 -27.0,0.99,10.910,201.3 -27.2,0.99,10.340,203.6 -27.4,0.99,10.550,203.5 -27.5,0.99,10.740,208.1 -28.2,0.99,9.680,207.1 -28.2,0.99,10.950,214.3 -28.3,0.99,9.000,214.3 -27.5,0.99,10.550,213.8 -28.0,0.99,8.240,220.6 -28.2,0.99,9.450,233.1 -27.6,0.99,8.450,237.4 -27.6,0.99,7.960,240.7 -27.7,0.99,7.530,234.5 -27.7,0.99,8.520,221.6 -28.2,0.99,8.390,216.0 -28.3,0.99,9.290,217.3 -28.7,0.99,9.980,217.0 -28.6,0.99,9.240,206.3 -29.1,0.99,8.380,223.4 -28.6,0.99,8.390,207.9 -28.5,0.99,9.490,205.1 -28.6,0.99,8.970,211.8 -28.6,0.99,7.780,206.1 -28.1,0.99,7.990,212.5 -28.1,0.99,7.620,214.0 -28.0,0.99,8.150,214.2 -27.6,0.99,7.800,213.5 -27.5,0.99,7.130,221.6 -27.4,0.99,6.270,217.3 -27.4,0.99,6.620,219.6 -27.4,0.99,6.440,224.7 -27.3,0.99,6.630,227.6 -27.4,0.99,5.860,231.7 -27.2,0.99,5.810,227.2 -27.2,0.99,4.630,232.0 -27.3,0.99,4.750,225.1 -27.4,0.99,4.710,221.2 -27.4,0.99,5.140,217.1 -27.4,0.99,5.980,207.5 -27.7,0.99,6.580,204.3 -28.0,0.99,5.650,198.0 -27.8,0.99,6.740,193.5 -27.7,0.99,6.910,190.9 -27.7,0.99,5.730,188.9 -27.6,0.99,5.900,183.9 -27.6,0.99,5.250,173.5 -27.5,0.99,6.990,177.2 -27.3,0.99,7.420,173.0 -27.4,0.99,7.230,174.2 -27.3,0.99,7.900,167.8 -27.5,0.99,7.200,166.4 -27.4,0.99,9.010,167.8 -27.6,0.99,8.120,172.0 -27.6,0.99,8.270,187.8 -27.6,0.99,8.880,194.4 -27.6,0.99,8.020,193.9 -27.7,0.99,8.550,192.8 -27.6,0.99,7.420,191.0 -27.6,0.99,7.040,181.1 -27.6,0.99,6.680,188.5 -27.5,0.99,6.560,175.4 -27.7,0.99,6.100,180.9 -27.7,0.99,7.680,173.6 -27.8,0.99,7.500,180.5 -27.7,0.99,7.520,181.9 -27.8,0.99,7.880,181.2 -27.9,0.99,7.210,176.8 -27.9,0.99,7.410,175.2 -27.7,0.99,7.650,170.2 -27.7,0.99,7.650,166.9 -27.8,0.99,8.350,165.4 -27.8,0.99,9.480,166.3 -28.0,0.99,9.080,168.4 -27.9,0.99,8.800,170.3 -27.8,0.99,8.810,172.1 -27.7,0.99,9.890,174.3 -27.5,0.99,9.200,177.1 -27.8,0.99,8.250,186.5 -27.5,0.99,8.550,179.2 -27.6,0.99,7.150,185.0 -27.6,0.99,6.900,188.7 -27.3,0.99,8.030,203.2 -27.2,0.99,4.900,190.5 -27.4,1.00,5.110,207.6 -27.3,0.99,3.830,207.4 -27.2,1.00,4.630,225.8 -27.3,0.99,3.860,213.8 -27.6,0.99,4.290,203.1 -27.9,0.99,4.060,188.2 -28.0,0.99,5.540,186.3 -28.1,0.99,5.290,185.5 -28.0,0.99,6.260,174.1 -28.0,0.99,6.490,173.4 -27.8,0.99,7.260,173.6 -27.7,0.99,7.220,173.0 -27.8,0.99,6.920,172.8 -27.6,0.99,8.120,178.4 -27.7,0.99,7.550,181.4 -27.5,0.99,7.850,181.4 -27.4,0.99,8.060,186.1 -27.3,0.99,8.700,190.0 -27.4,0.99,7.470,190.5 -27.3,0.99,7.080,195.2 -27.4,0.99,6.910,197.3 -27.4,0.99,6.980,205.8 -27.3,0.99,5.540,219.6 -26.9,0.99,6.390,244.9 -26.4,0.99,3.860,258.4 -26.6,0.99,3.650,251.3 -26.6,0.99,3.330,247.9 -26.6,0.99,3.460,231.0 -27.4,0.99,3.770,201.0 -27.7,0.99,4.550,193.5 -27.7,0.99,4.590,190.0 -27.6,0.99,5.640,184.3 -27.6,0.99,6.310,180.9 -27.5,0.99,6.410,183.5 -27.4,0.99,6.330,176.7 -27.2,0.99,6.630,183.2 -27.3,0.99,6.510,179.2 -27.3,0.99,6.730,181.5 -27.2,0.99,6.860,185.7 -27.2,0.99,7.440,190.3 -27.1,0.99,6.660,198.5 -27.0,0.99,6.070,206.3 -27.1,0.99,6.750,211.9 -27.1,0.99,7.060,219.9 -26.9,0.99,6.420,224.8 -26.8,0.99,6.290,219.7 -26.7,0.99,6.370,251.4 -26.2,0.99,5.090,263.1 -26.1,0.99,4.800,259.9 -26.2,0.99,4.110,252.7 -26.4,0.99,2.520,217.6 -26.8,0.99,1.710,191.7 -27.4,0.99,2.780,169.4 -27.6,0.99,2.680,179.1 -27.9,0.99,4.150,183.8 -28.0,0.99,4.610,189.8 -27.9,0.99,5.960,184.2 -28.0,0.99,5.420,190.4 -27.7,0.99,5.460,192.5 -27.6,0.99,5.550,199.2 -27.6,0.99,7.110,196.5 -27.5,0.99,6.140,194.2 -27.5,0.99,5.740,198.3 -27.4,0.99,6.830,202.6 -27.2,0.99,6.610,212.0 -27.1,0.99,6.030,213.7 -27.0,0.99,5.600,231.4 -26.9,0.99,5.650,225.7 -26.9,0.99,5.060,235.3 -26.8,0.99,4.870,228.5 -26.7,0.99,4.910,239.8 -26.2,0.99,3.700,270.8 -26.2,0.99,2.660,269.3 -26.3,0.99,2.090,248.9 -26.4,0.99,2.690,236.5 -26.7,0.99,3.680,211.8 -27.4,0.99,3.480,202.2 -27.8,0.99,3.360,189.8 -27.8,0.99,4.480,173.5 -27.9,0.99,5.330,175.1 -27.9,0.99,5.960,169.5 -27.9,0.99,6.860,170.9 -27.7,0.99,6.280,169.7 -27.7,0.99,5.980,163.0 -27.7,0.99,7.420,166.7 -27.7,0.99,7.290,167.5 -27.7,0.99,6.750,170.5 -27.7,0.99,6.740,176.9 -27.7,0.99,6.380,188.7 -27.5,0.99,6.320,191.5 -27.5,0.99,5.640,191.5 -27.4,0.99,7.200,194.9 -27.5,0.99,6.290,200.2 -27.4,0.99,5.860,202.8 -27.2,0.99,4.560,204.8 -27.3,0.99,3.660,208.7 -27.5,0.99,3.530,205.0 -27.8,0.99,5.370,203.8 -27.7,0.99,4.850,205.0 -27.9,0.99,4.910,196.3 -28.0,0.99,5.700,184.9 -28.2,0.99,5.380,181.9 -28.4,0.99,5.260,184.2 -28.3,0.99,6.630,186.5 -28.8,0.99,5.810,186.1 -28.1,0.99,5.770,178.0 -28.1,0.99,7.300,172.5 -28.0,0.99,7.350,169.9 -27.9,0.99,7.080,177.8 -27.9,0.99,7.200,179.5 -27.9,0.99,7.220,182.8 -27.9,0.99,7.070,179.8 -27.7,0.99,6.970,182.7 -27.5,0.99,6.510,194.5 -27.6,0.99,5.400,197.2 -27.3,0.99,6.040,199.7 -27.2,0.99,4.630,202.6 -27.2,0.99,4.040,191.3 -27.2,0.99,1.900,197.2 -27.1,0.99,1.570,178.0 -27.3,0.99,2.500,197.9 -27.3,0.99,1.530,196.1 -27.4,0.99,2.390,188.9 -27.4,0.99,2.680,159.3 -27.7,0.99,3.140,166.2 -27.9,0.99,3.040,171.6 -28.1,0.99,3.780,181.2 -28.3,0.99,5.410,191.2 -28.2,0.99,4.760,192.4 -28.1,0.99,5.750,189.8 -27.9,0.99,6.070,186.8 -27.9,0.99,6.680,194.8 -27.8,0.99,6.110,194.8 -27.7,0.99,6.200,196.7 -27.5,0.99,6.160,202.5 -27.7,0.99,7.330,203.6 -27.6,0.99,6.150,210.2 -27.4,0.99,6.350,216.5 -27.4,0.99,6.430,211.9 -27.5,0.99,6.270,218.6 -27.7,0.99,6.140,224.2 -27.7,0.99,5.840,229.0 -28.0,0.99,4.000,234.5 -27.6,0.99,4.120,237.5 -27.3,0.99,3.350,253.9 -27.1,0.99,2.270,235.9 -27.4,0.99,3.270,212.9 -27.4,0.99,3.390,197.9 -27.7,0.99,5.000,183.4 -28.0,0.99,5.830,184.3 -28.2,0.99,6.760,201.0 -28.7,0.99,6.450,206.6 -28.2,0.99,7.580,194.3 -28.1,0.99,8.430,194.4 -28.1,0.99,8.350,193.9 -27.8,0.99,8.810,192.6 -27.8,0.99,8.520,196.8 -27.8,0.99,8.820,197.8 -27.6,0.99,9.810,195.8 -27.9,0.99,9.140,210.5 -27.7,0.99,8.720,211.4 -27.4,0.99,8.910,209.9 -27.4,0.99,8.900,214.6 -27.3,0.99,9.380,223.5 -27.3,0.99,7.090,218.9 -27.4,0.99,7.260,223.6 -28.0,0.99,6.530,223.3 -27.9,0.99,6.770,228.3 -27.7,0.99,6.370,219.5 -27.9,0.99,6.460,218.1 -27.6,0.99,6.100,228.5 -27.9,0.99,7.170,229.8 -28.7,0.99,7.850,217.8 -28.9,0.99,8.440,209.6 -29.1,0.99,9.100,210.0 -29.2,0.99,9.000,210.5 -29.5,0.99,8.970,206.4 -28.9,0.99,9.940,202.6 -28.9,0.99,8.780,200.7 -28.3,0.99,8.570,197.3 -28.2,0.99,8.800,196.0 -28.3,0.99,8.850,189.1 -28.6,0.99,9.020,194.0 -28.3,0.99,8.420,193.9 -28.1,0.99,8.810,199.9 -28.1,0.99,9.440,203.9 -28.4,0.99,8.530,206.1 -27.7,0.99,9.960,212.8 -27.5,0.99,9.640,213.0 -28.0,0.99,7.230,220.0 -27.8,0.99,8.630,219.0 -27.8,0.99,5.790,219.3 -27.8,0.99,4.950,217.6 -27.8,0.99,6.370,219.4 -27.8,0.99,5.870,209.9 -28.0,0.99,4.390,209.8 -28.2,0.99,4.670,187.8 -28.3,0.99,5.920,194.4 -28.6,0.99,5.730,186.0 -28.7,0.99,7.170,184.8 -28.4,0.99,8.240,187.0 -28.5,0.99,7.920,178.1 -28.2,0.99,7.470,176.1 -27.9,0.99,8.630,180.4 -27.5,0.99,8.600,178.7 -27.3,0.99,8.400,189.4 -28.2,0.99,6.400,194.3 -28.4,0.99,7.460,202.0 -27.5,0.99,7.710,203.2 -27.7,0.99,6.740,209.5 -27.0,0.99,7.300,209.7 -26.9,0.99,6.320,215.4 -26.9,0.99,6.240,212.9 -27.0,0.99,5.950,212.6 -26.9,0.99,3.970,233.7 -26.5,0.99,2.340,272.4 -26.4,0.99,0.740,253.4 -26.4,0.99,0.430,293.6 -26.4,0.99,0.390,55.1 -26.6,0.99,0.860,119.1 -27.4,0.99,2.940,148.5 -27.9,0.99,3.930,158.5 -28.0,0.99,4.460,152.8 -27.9,0.99,4.620,149.0 -28.0,0.99,5.280,154.6 -28.1,0.99,5.800,153.7 -27.8,0.99,6.310,156.0 -27.6,0.99,6.430,151.5 -27.6,0.99,6.310,155.7 -27.7,0.99,6.960,153.4 -27.5,0.99,6.070,168.5 -27.3,0.99,5.880,160.0 -27.2,0.99,5.510,167.1 -27.2,0.99,5.060,169.1 -27.0,0.99,4.840,174.6 -27.2,0.99,4.360,172.6 -27.1,0.99,1.830,194.6 -27.1,0.99,1.530,194.5 -27.0,0.99,0.560,163.2 -26.9,0.99,0.650,333.0 -26.6,0.99,1.430,29.6 -26.7,0.99,2.060,37.4 -26.7,0.99,2.820,55.0 -27.1,0.99,2.070,55.8 -27.8,0.99,3.650,94.2 -28.2,0.99,5.670,111.1 -28.4,0.99,6.260,129.7 -28.3,0.99,5.570,127.2 -28.4,0.99,6.530,128.6 -28.2,0.99,6.640,126.1 -28.2,0.99,6.050,114.1 -28.0,0.99,7.740,116.7 -28.0,0.99,7.060,120.9 -27.6,0.99,6.840,131.6 -27.5,0.99,7.370,124.1 -28.0,0.99,6.250,129.0 -27.6,0.99,5.990,127.2 -27.7,0.99,4.370,125.9 -27.8,0.99,4.260,122.2 -27.8,0.99,6.930,130.5 -27.7,0.99,5.140,143.2 -27.9,0.99,5.130,147.7 -26.7,0.99,7.440,171.4 -26.1,0.99,2.880,143.1 -26.0,0.99,2.830,59.8 -25.5,0.99,3.930,46.3 -26.4,0.99,5.030,69.0 -26.0,0.99,4.140,102.8 -27.0,0.99,3.220,128.8 -27.1,0.99,2.260,138.1 -27.4,0.99,2.320,102.4 -27.2,0.99,2.150,127.0 -27.3,0.99,3.380,103.7 -27.4,0.99,4.370,98.2 -27.3,0.99,5.520,103.9 -27.8,0.99,5.210,106.7 -27.4,0.99,5.410,121.8 -27.7,0.99,5.520,110.2 -27.5,0.99,7.330,112.3 -27.4,0.99,8.400,124.3 -26.8,0.99,8.440,140.3 -27.0,0.99,5.760,146.0 -26.8,0.99,5.110,144.3 -27.3,0.99,4.580,128.3 -27.2,0.99,5.000,107.3 -27.2,0.99,4.190,180.0 -27.4,0.99,1.800,148.6 -27.4,0.99,2.280,131.5 -27.5,0.99,3.500,110.6 -27.7,0.99,5.100,107.3 -27.8,0.99,5.420,122.0 -27.8,0.99,7.230,127.0 -27.4,0.99,6.770,142.8 -27.4,0.99,6.710,149.3 -27.9,0.99,6.390,152.5 -27.8,0.99,6.510,154.1 -27.8,0.99,6.450,154.3 -27.8,0.99,5.520,168.5 -27.6,0.99,5.180,167.8 -27.5,0.99,4.870,152.3 -27.5,0.99,5.790,162.3 -27.7,0.99,5.670,157.2 -27.6,0.99,5.780,162.0 -27.6,0.99,6.670,165.1 -27.6,0.99,5.950,167.2 -27.6,0.99,6.080,170.5 -27.7,0.99,5.130,183.6 -27.7,0.99,5.140,178.6 -27.7,0.99,5.570,182.8 -27.6,0.99,4.250,207.1 -27.4,0.99,4.510,224.1 -27.3,0.99,4.590,229.9 -26.9,0.99,3.380,272.6 -26.7,0.99,1.790,283.1 -26.9,0.99,0.630,223.7 -27.1,0.99,1.480,149.3 -27.5,0.99,2.580,167.9 -27.8,0.99,4.040,165.2 -28.1,0.99,5.240,177.8 -28.3,0.99,5.340,178.3 -28.3,0.99,6.230,170.2 -28.1,0.99,6.120,175.4 -28.3,0.99,6.090,174.7 -28.2,0.99,7.280,170.6 -28.6,0.99,7.300,177.3 -28.6,0.99,6.680,175.0 -28.8,0.99,7.440,178.5 -28.8,0.99,7.050,186.8 -28.8,0.99,6.840,192.7 -29.1,0.99,6.830,195.6 -28.8,0.99,6.020,203.1 -28.5,0.99,6.020,200.9 -28.4,0.99,5.630,212.7 -27.9,0.99,4.480,225.2 -27.6,0.99,4.410,231.8 -27.4,0.99,2.890,260.5 -27.2,0.99,2.680,270.1 -27.1,0.99,1.810,304.4 -27.3,0.99,0.670,242.0 -27.4,0.99,2.000,156.4 -28.1,0.99,4.200,151.6 -28.2,0.99,5.270,145.5 -27.7,0.99,2.830,159.8 -27.9,0.99,3.070,178.7 -27.9,0.99,4.660,180.6 -27.8,0.99,6.300,176.8 -27.8,0.99,6.360,180.3 -27.9,0.99,7.630,185.5 -27.9,0.99,7.120,185.7 -28.1,0.99,7.140,186.4 -27.9,0.99,7.520,181.1 -28.0,0.99,7.230,185.4 -27.9,0.99,8.220,190.3 -27.9,0.99,7.980,193.9 -27.7,0.99,7.110,199.6 -27.9,0.99,6.410,213.4 -27.8,0.99,7.270,219.9 -27.8,0.99,5.940,225.8 -27.4,0.99,6.440,243.7 -27.3,0.99,5.130,255.0 -27.4,0.99,4.160,276.0 -27.5,0.99,5.530,266.9 -27.4,0.99,3.320,239.4 -27.5,0.99,1.760,259.1 -28.4,0.99,1.020,177.0 -28.7,0.99,3.860,171.6 -28.6,0.99,7.380,181.6 -28.6,0.99,6.850,188.2 -28.6,0.99,6.790,192.4 -25.2,0.99,11.610,38.6 -23.8,0.99,7.040,31.5 -25.0,0.99,1.970,78.3 -25.8,0.99,3.480,151.7 -27.3,0.99,2.890,134.2 -27.4,0.99,0.360,281.0 -27.4,0.99,1.780,53.9 -27.4,0.99,1.810,66.4 -27.2,0.99,1.620,52.5 -26.9,0.99,1.300,15.4 -26.6,0.99,3.230,356.7 -25.9,0.99,4.200,15.6 -26.0,0.99,3.670,19.1 -25.8,0.99,3.700,25.9 -25.7,0.99,5.810,11.9 -25.5,0.99,4.220,32.3 -25.4,0.99,4.790,20.6 -25.6,0.99,3.790,43.3 -26.0,0.99,2.470,34.7 -26.6,0.99,1.400,62.6 -27.1,0.99,1.600,116.2 -27.4,0.99,2.090,205.3 -26.6,0.99,7.010,260.5 -25.8,0.99,5.740,345.0 -25.2,0.99,4.420,44.1 -26.1,0.99,1.080,62.3 -26.7,0.99,1.490,20.0 -26.9,0.99,1.120,6.1 -27.2,0.99,1.650,30.1 -27.4,0.99,2.990,53.7 -27.5,0.99,3.360,68.6 -27.4,0.99,3.390,59.9 -26.8,0.99,3.440,45.6 -26.5,0.99,4.110,41.8 -26.3,0.99,4.980,25.0 -26.1,0.99,4.430,36.7 -25.7,0.99,3.940,18.6 -25.4,0.99,3.440,30.2 -25.5,0.99,4.130,16.6 -25.6,0.99,3.600,23.6 -25.9,0.99,5.810,34.9 -26.4,0.99,6.110,53.1 -26.7,0.99,5.180,71.4 -27.1,0.99,3.980,91.3 -27.3,0.99,4.660,102.3 -27.5,0.99,4.980,113.3 -27.7,0.99,5.470,117.1 -27.9,0.99,5.220,119.6 -28.0,0.99,4.920,118.8 -28.0,0.99,5.630,127.4 -28.1,0.99,5.260,124.8 -28.1,0.99,5.190,131.6 -28.0,0.99,5.020,132.5 -28.1,0.99,4.510,116.6 -28.0,0.99,4.230,120.4 -27.8,0.99,3.390,99.9 -27.6,0.99,3.790,82.0 -27.5,0.99,3.620,67.0 -26.4,0.99,5.240,24.2 -25.6,0.99,7.090,19.2 -25.6,0.99,6.130,24.0 -26.4,0.99,8.100,44.6 -25.7,0.99,8.090,44.8 -25.3,0.99,7.320,48.4 -25.2,0.99,6.920,38.4 -25.6,0.99,5.360,52.6 -26.1,0.99,3.990,69.5 -26.9,0.99,2.160,60.0 -27.2,0.99,1.690,98.0 -27.3,0.99,1.610,130.3 -27.4,0.99,2.670,150.7 -27.6,0.99,2.690,149.8 -27.9,0.99,2.190,136.4 -27.6,0.99,3.120,141.4 -27.7,0.99,2.490,141.1 -27.7,0.99,1.600,122.5 -27.8,0.99,1.110,71.2 -27.7,0.99,1.930,20.4 -27.6,0.99,3.570,10.6 -27.3,0.99,3.280,31.7 -27.4,0.99,6.860,46.6 -27.0,0.99,5.750,51.3 -25.9,0.99,5.690,36.1 -25.5,0.99,6.090,37.2 -25.2,0.99,5.950,33.3 -24.8,0.99,7.160,32.5 -24.9,0.99,7.400,42.6 -24.9,0.99,7.390,43.4 -25.0,0.99,6.840,46.3 -25.5,0.99,5.320,52.0 -26.0,0.99,4.480,82.9 -26.7,0.99,3.030,85.7 -26.9,0.99,3.220,104.4 -27.0,0.99,3.590,115.3 -27.1,0.99,2.380,134.6 -27.3,0.99,2.420,135.0 -27.3,0.99,3.260,143.7 -27.3,0.99,2.940,159.0 -27.3,0.99,2.630,153.7 -27.2,0.99,1.950,139.8 -27.2,0.99,1.920,134.0 -27.2,0.99,1.950,122.3 -27.2,0.99,1.920,87.8 -27.1,0.99,2.690,90.7 -26.9,0.99,2.850,75.4 -26.9,0.99,2.970,70.7 -26.9,0.99,3.690,60.9 -26.6,0.99,4.190,33.4 -25.9,0.99,5.920,24.8 -25.5,0.99,7.170,35.0 -25.4,0.99,7.740,45.3 -26.8,0.99,8.930,62.0 -26.5,0.99,7.380,60.4 -26.7,0.99,7.940,70.8 -26.8,0.99,6.530,81.2 -27.3,0.99,7.050,99.1 -27.4,0.99,7.360,111.5 -26.5,0.99,4.990,135.4 -26.7,0.99,3.960,138.4 -27.0,0.99,3.930,122.5 -27.1,0.99,4.880,133.3 -26.9,0.99,4.610,137.1 -26.9,0.99,3.920,145.8 -26.6,0.99,2.530,156.0 -26.5,0.99,3.370,155.1 -26.5,0.99,3.660,152.9 -26.5,0.99,4.370,172.4 -26.5,0.99,3.760,182.3 -26.5,0.99,3.440,189.9 -26.6,0.99,3.900,180.3 -26.6,0.99,2.570,177.0 -25.8,0.99,4.950,184.2 -26.1,0.99,2.500,188.6 -25.7,0.99,4.700,210.1 -25.6,0.99,2.950,191.3 -26.1,0.99,0.810,161.4 -26.0,0.99,1.370,49.4 -25.3,0.99,1.720,36.0 -25.7,0.99,1.540,32.6 -26.6,0.99,2.540,136.8 -26.7,0.99,2.560,99.3 -26.8,0.99,2.790,103.4 -27.0,0.99,2.150,114.5 -27.4,0.99,2.610,156.5 -27.6,0.99,3.520,147.1 -27.3,0.99,3.610,131.5 -27.4,0.99,2.570,129.4 -27.3,0.99,3.270,117.9 -27.4,0.99,3.560,118.7 -27.1,0.99,4.860,127.4 -27.1,0.99,3.210,132.3 -26.9,0.99,3.410,132.5 -26.9,0.99,3.600,129.0 -27.0,0.99,3.020,146.3 -27.0,0.99,1.950,130.0 -26.6,0.99,5.280,101.6 -26.1,0.99,5.740,92.6 -26.5,0.99,4.060,102.5 -27.0,0.99,3.230,91.0 -26.5,0.99,5.490,69.4 -25.5,0.99,6.110,84.6 -25.1,0.99,7.280,71.7 -25.0,0.99,8.050,94.3 -26.6,0.99,6.340,92.3 -27.0,0.99,5.600,101.7 -27.0,0.99,6.070,111.9 -27.1,0.99,6.180,111.1 -27.3,0.99,6.270,125.6 -27.3,0.99,4.310,101.7 -27.1,0.99,5.730,100.5 -27.0,0.99,4.870,97.9 -27.2,0.99,4.950,108.1 -26.9,0.99,5.100,122.3 -27.2,0.99,4.950,127.2 -27.3,0.99,5.160,130.8 -27.3,0.99,4.940,125.8 -27.5,0.99,4.810,120.1 -27.4,0.99,4.830,126.8 -27.3,0.99,5.710,133.8 -27.3,0.99,3.090,158.5 -26.2,0.99,2.930,201.2 -25.7,0.99,0.720,172.9 -24.9,0.99,3.600,18.3 -24.9,0.99,2.890,256.6 -25.6,0.99,0.760,279.2 -25.9,0.99,1.550,25.7 -25.8,0.99,8.130,96.9 -26.2,0.99,8.290,114.4 -26.9,0.99,5.660,106.3 -27.2,0.99,5.120,125.5 -27.6,0.99,5.020,113.1 -27.3,0.99,5.140,92.0 -27.3,0.99,4.190,91.3 -27.6,0.99,4.580,103.0 -27.5,0.99,5.840,120.3 -27.6,0.99,5.730,111.2 -27.7,0.99,6.440,129.2 -27.9,0.99,5.210,122.1 -27.6,0.99,5.510,126.7 -27.5,0.99,4.310,98.3 -27.7,0.99,4.570,85.8 -27.8,0.99,4.370,103.3 -27.7,0.99,3.850,93.9 -27.6,0.99,3.500,86.4 -27.5,0.99,4.080,71.6 -27.4,0.99,4.570,45.9 -26.5,0.99,5.870,32.1 -26.2,0.99,5.980,32.2 -26.4,0.99,5.420,29.1 -26.9,0.99,4.390,29.0 -27.5,0.99,3.940,59.1 -28.9,0.99,3.600,61.0 -29.2,0.99,3.940,88.7 -29.2,0.99,3.260,105.4 -28.9,0.99,4.010,116.2 -28.8,0.99,3.340,121.6 -28.7,0.99,3.390,139.2 -28.6,0.99,3.250,149.5 -28.5,0.99,3.380,144.5 -28.3,0.99,3.840,122.4 -28.1,0.99,4.000,111.2 -27.9,0.99,2.750,105.3 -28.0,0.99,3.040,97.6 -28.0,0.99,2.570,105.3 -27.6,0.99,3.530,69.2 -27.3,0.99,3.180,80.1 -27.2,0.99,2.360,55.9 -26.5,0.99,4.720,15.8 -26.3,0.99,6.740,28.7 -25.9,0.99,7.410,30.1 -26.1,0.99,7.130,43.4 -26.5,0.99,8.280,46.5 -26.8,0.99,8.440,49.9 -26.9,0.99,8.350,60.5 -26.9,0.99,7.370,67.4 -27.6,0.99,7.390,73.6 -27.8,0.99,6.910,94.2 -27.8,0.99,7.060,98.9 -27.9,0.99,6.800,103.9 -27.9,0.99,6.580,101.8 -27.9,0.99,7.640,105.3 -27.6,0.99,7.840,94.8 -27.6,0.99,7.860,90.5 -27.5,0.99,7.780,87.3 -27.5,0.99,8.520,81.3 -27.7,0.99,8.160,81.9 -27.1,0.99,6.380,96.5 -25.5,0.99,8.730,98.1 -25.9,0.99,6.710,137.3 -25.5,0.99,9.770,137.1 -24.9,0.99,3.580,189.1 -25.3,0.99,0.770,89.9 -24.9,0.99,5.420,126.6 -25.1,0.99,4.120,140.9 -24.5,0.99,6.220,164.6 -24.6,0.99,2.660,137.7 -25.0,0.99,1.660,317.5 -24.4,0.99,2.420,138.6 -24.5,0.99,4.440,156.7 -25.6,0.99,4.530,149.9 -25.4,0.99,1.320,136.1 -24.7,0.99,5.640,125.2 -25.0,0.99,7.690,106.9 -25.5,0.99,6.880,119.1 -25.3,0.99,6.500,149.1 -24.3,0.99,6.770,146.0 -25.3,0.99,6.800,142.3 -25.8,0.99,7.490,133.2 -24.9,0.99,4.890,141.9 -24.3,0.99,3.160,147.8 -26.1,0.99,6.450,158.1 -25.7,0.99,6.350,168.8 -25.4,0.99,7.430,147.4 -25.6,0.99,3.850,116.7 -25.9,0.99,5.420,153.6 -25.9,0.99,8.180,135.9 -25.9,0.99,6.160,147.6 -24.9,0.99,9.440,146.3 -24.7,0.99,5.400,142.0 -25.1,0.99,5.490,154.7 -25.5,0.99,5.990,147.5 -24.7,0.99,5.650,129.4 -24.6,0.99,5.260,116.9 -24.1,0.99,4.480,244.9 -23.6,1.00,5.820,194.3 -23.2,0.99,7.300,189.9 -24.7,0.99,5.170,164.8 -25.4,0.99,4.530,151.2 -25.4,0.99,3.860,131.4 -25.8,0.99,4.490,88.5 -26.0,0.99,4.540,96.8 -26.2,0.99,4.380,99.9 -26.6,0.99,4.000,108.4 -26.8,0.99,4.730,106.5 -26.8,0.99,5.260,103.3 -26.6,0.99,5.680,101.4 -26.7,0.99,6.590,101.8 -26.8,0.99,7.310,108.6 -24.4,0.99,16.970,155.3 -24.9,1.00,5.250,153.8 -24.9,0.99,1.820,357.2 -25.3,0.99,3.930,313.5 -24.7,0.99,7.710,3.3 -25.1,0.99,6.830,13.1 -26.6,0.99,3.610,19.0 -26.6,0.99,3.550,44.6 -26.5,0.99,2.190,71.4 -27.0,0.99,3.480,75.7 -27.6,0.99,4.110,112.4 -27.2,0.99,3.690,117.4 -27.3,0.99,4.330,125.9 -27.3,0.99,2.650,128.4 -27.6,0.99,2.560,122.8 -27.4,0.99,2.210,118.5 -27.4,0.99,3.130,126.1 -27.2,0.99,3.070,127.7 -27.3,0.99,3.170,117.4 -27.4,0.99,2.710,122.5 -27.4,0.99,2.960,118.7 -27.3,0.99,2.670,124.9 -27.1,0.99,2.930,113.5 -27.1,0.99,2.660,126.1 -27.1,0.99,2.090,115.2 -27.0,0.99,1.540,114.7 -27.0,0.99,1.250,80.5 -27.0,0.99,1.890,81.5 -26.3,0.99,2.760,50.7 -26.2,0.99,2.970,42.6 -26.4,0.99,3.500,43.2 -26.6,0.99,3.190,46.8 -26.8,0.99,2.140,62.4 -27.5,0.99,2.130,112.0 -27.8,0.99,2.690,160.4 -27.9,0.99,2.920,175.5 -28.1,0.99,3.770,176.5 -27.9,0.99,5.920,178.3 -27.8,0.99,4.440,190.5 -27.8,0.99,4.630,187.2 -27.7,0.99,4.590,192.9 -27.9,0.99,4.950,188.9 -28.0,0.99,3.900,192.7 -27.8,0.99,4.450,197.6 -27.7,0.99,3.750,196.8 -27.5,0.99,3.830,197.3 -27.4,0.99,3.730,206.6 -27.3,0.99,3.920,204.0 -27.2,0.99,3.610,224.1 -27.0,0.99,3.240,248.7 -26.4,0.99,4.040,271.9 -26.2,0.99,4.140,281.7 -26.3,0.99,4.400,276.3 -26.4,0.99,4.580,280.2 -26.6,0.99,3.500,288.1 -26.7,0.99,2.240,289.9 -26.9,0.99,0.800,270.1 -27.6,0.99,1.140,146.2 -27.9,0.99,3.190,178.9 -28.1,0.99,5.460,189.2 -28.1,0.99,6.390,187.0 -28.1,0.99,5.990,185.0 -28.0,0.99,6.680,192.0 -27.9,0.99,6.180,186.2 -27.9,0.99,5.860,188.4 -27.2,0.99,5.560,185.0 -27.2,0.99,5.620,186.2 -27.1,0.99,5.740,184.0 -27.3,0.99,5.180,184.8 -27.4,0.99,4.220,181.3 -27.1,0.99,4.200,195.0 -27.1,0.99,4.290,200.8 -27.0,0.99,3.450,221.3 -27.1,0.99,3.620,229.8 -27.0,0.99,2.870,250.9 -26.7,0.99,2.900,272.2 -26.3,0.99,2.790,278.9 -26.3,0.99,3.170,286.4 -26.3,0.99,2.420,282.7 -26.5,0.99,1.930,239.3 -26.9,0.99,1.280,219.5 -27.5,0.99,1.620,160.8 -27.7,0.99,2.510,162.1 -27.9,0.99,3.940,157.9 -27.9,0.99,5.110,153.3 -27.5,0.99,6.340,156.0 -27.8,0.99,5.700,158.6 -27.6,0.99,6.030,159.9 -27.6,0.99,6.490,172.2 -27.4,0.99,6.430,175.5 -27.4,0.99,5.550,175.1 -27.4,0.99,5.930,182.0 -27.4,0.99,5.450,180.8 -27.2,0.99,5.660,183.6 -27.1,0.99,4.810,192.7 -27.2,0.99,5.040,193.7 -27.2,0.99,3.810,200.8 -27.2,0.99,3.790,220.9 -27.2,0.99,4.480,233.1 -27.1,0.99,2.990,237.1 -26.7,0.99,2.320,269.5 -26.4,0.99,1.600,294.6 -26.3,0.99,1.970,293.8 -26.5,0.99,1.580,274.2 -26.6,0.99,1.870,224.0 -27.2,0.99,2.140,190.9 -27.4,0.99,2.440,177.4 -27.5,0.99,3.070,161.5 -27.6,0.99,4.130,150.1 -27.9,0.99,4.720,167.5 -27.7,0.99,4.740,168.7 -27.6,0.99,4.280,170.4 -27.6,0.99,4.730,178.6 -27.5,0.99,5.590,172.6 -27.5,0.99,4.670,173.0 -27.4,0.99,5.490,174.5 -27.4,0.99,5.420,164.5 -27.4,0.99,6.000,184.7 -27.5,0.99,5.450,196.0 -27.3,0.99,4.830,206.4 -27.3,0.99,3.820,206.2 -27.1,0.99,3.180,207.6 -26.8,0.99,4.800,259.6 -26.8,0.99,4.400,264.8 -26.8,0.99,3.960,275.7 -26.8,0.99,2.930,295.4 -26.8,0.99,1.900,300.7 -26.8,0.99,1.530,161.3 -27.3,0.99,1.750,210.5 -27.9,0.99,2.700,196.0 -28.0,0.99,5.050,181.0 -28.1,0.99,7.080,171.3 -28.0,0.99,9.400,194.0 -27.8,0.99,8.520,197.7 -28.1,0.99,6.810,194.5 -27.8,0.99,7.520,199.8 -27.7,0.99,7.660,203.1 -27.7,0.99,8.480,201.0 -27.6,0.99,7.910,208.8 -27.7,0.99,7.500,200.1 -27.8,0.99,6.920,207.7 -27.7,0.99,7.580,202.5 -27.5,0.99,7.440,197.5 -27.9,0.99,8.380,204.7 -27.4,0.99,7.510,201.3 -27.5,0.99,6.450,219.1 -27.6,0.99,5.720,222.9 -27.6,0.99,5.870,234.4 -27.3,0.99,4.510,252.5 -26.9,0.99,4.300,274.6 -27.0,0.99,3.600,280.9 -27.4,0.99,2.890,243.4 -27.5,0.99,1.000,229.3 -27.9,0.99,2.520,188.2 -28.2,0.99,3.590,211.8 -28.2,0.99,4.710,211.2 -28.3,0.99,5.650,201.7 -28.2,0.99,7.310,200.3 -28.3,0.99,7.280,203.2 -27.9,0.99,8.070,199.4 -27.3,0.99,8.270,205.6 -27.4,0.99,7.440,211.1 -27.3,0.99,6.460,213.2 -27.3,0.99,6.900,216.9 -27.4,0.99,6.620,225.3 -27.5,0.99,5.770,234.4 -27.4,0.99,5.970,236.1 -27.2,0.99,4.670,250.7 -27.4,0.99,5.070,268.2 -26.6,0.99,5.010,277.9 -26.3,0.99,4.760,284.0 -25.9,0.99,4.680,282.8 -25.8,0.99,4.570,293.9 -26.0,0.99,4.130,304.4 -26.3,0.99,2.090,310.8 -26.5,0.99,1.190,336.9 -26.9,0.99,0.520,170.2 -27.6,0.99,1.730,200.1 -28.0,0.99,3.230,188.4 -28.5,0.99,4.860,208.1 -28.6,0.99,6.100,207.2 -28.5,0.99,5.370,206.0 -28.2,0.99,5.850,196.3 -27.9,0.99,6.870,203.7 -27.9,0.99,4.960,204.4 -27.7,0.99,4.870,194.5 -27.6,0.99,4.500,204.1 -27.6,0.99,4.440,187.1 -27.5,0.99,4.020,172.5 -27.3,0.99,4.180,182.1 -27.3,0.99,2.830,192.5 -27.2,0.99,1.790,189.8 -27.2,0.99,1.260,180.8 -27.1,0.99,1.490,201.5 -27.0,0.99,0.350,220.9 -26.9,0.99,1.170,319.2 -26.8,0.99,2.020,9.6 -26.7,0.99,1.730,31.0 -26.7,0.99,1.540,331.3 -26.8,0.99,1.070,274.9 -24.6,0.99,7.910,214.3 -25.2,0.99,3.650,359.0 -26.0,0.99,4.060,77.7 -26.6,0.99,3.740,108.2 -27.0,0.99,3.850,102.2 -27.6,0.99,3.470,100.2 -27.2,0.99,3.900,132.7 -26.9,0.99,3.220,144.3 -27.2,0.99,3.150,92.7 -27.3,0.99,3.600,95.1 -27.3,0.99,4.020,105.0 -27.2,0.99,4.260,126.1 -27.2,0.99,4.210,133.7 -27.1,0.99,3.950,121.2 -27.3,0.99,2.940,131.5 -27.3,0.99,2.700,131.6 -27.2,0.99,2.450,125.1 -27.3,0.99,3.440,109.2 -27.4,0.99,2.400,119.7 -27.3,0.99,1.640,122.1 -25.8,0.99,4.330,83.2 -24.6,0.99,2.390,131.8 -25.2,0.99,0.830,152.9 -25.6,0.99,1.280,96.8 -26.1,0.99,2.520,68.8 -26.8,0.99,3.360,96.1 -27.4,0.99,4.500,101.6 -27.5,0.99,3.370,124.8 -28.1,0.99,4.280,130.8 -28.0,0.99,4.360,138.6 -27.9,0.99,3.540,122.6 -27.6,0.99,2.840,128.3 -27.6,0.99,3.430,121.0 -27.6,0.99,3.370,96.8 -27.6,0.99,3.240,114.3 -27.6,0.99,2.090,101.3 -27.7,0.99,2.530,125.4 -27.6,0.99,1.520,125.5 -27.6,0.99,2.100,105.8 -27.5,0.99,1.890,94.2 -27.4,0.99,2.360,88.1 -27.4,0.99,1.800,85.5 -27.5,0.99,2.430,69.3 -26.9,0.99,3.400,17.7 -26.2,0.99,5.510,16.9 -26.4,0.99,7.180,44.1 -27.2,0.99,7.000,48.8 -27.0,0.99,5.700,52.6 -27.6,0.99,4.050,85.0 -27.8,0.99,4.310,106.6 -27.8,0.99,4.540,103.3 -27.9,0.99,4.730,109.0 -27.9,0.99,5.210,125.4 -27.9,0.99,5.260,118.9 -28.0,0.99,4.800,126.1 -27.9,0.99,4.080,123.6 -27.9,0.99,4.350,123.7 -27.7,0.99,4.680,122.7 -27.8,0.99,5.160,117.5 -27.8,0.99,5.310,112.0 -27.8,0.99,4.420,118.3 -27.8,0.99,3.780,136.6 -27.7,0.99,4.400,125.3 -27.7,0.99,4.860,129.0 -27.8,0.99,3.470,129.7 -27.9,0.99,3.480,136.3 -27.7,0.99,2.870,107.0 -27.6,0.99,3.750,135.9 -27.8,0.99,2.300,87.4 -25.9,0.99,0.920,73.2 -25.6,0.99,1.250,176.3 -25.6,0.99,4.660,45.5 -25.8,0.99,2.370,167.1 -25.7,0.99,6.790,121.9 -25.9,0.99,7.180,125.2 -26.1,0.99,9.480,138.8 -26.1,0.99,7.300,193.9 -26.0,0.99,5.760,206.4 -26.4,0.99,4.520,213.8 -26.5,0.99,0.270,248.6 -26.5,0.99,2.470,58.4 -24.9,0.99,12.410,82.3 -25.5,0.99,4.510,133.6 -26.0,0.99,5.220,119.0 -26.5,0.99,5.050,115.9 -26.8,0.99,5.910,116.7 -27.0,0.99,6.050,148.5 -27.2,0.99,5.120,139.0 -27.1,0.99,4.220,140.2 -27.1,0.99,2.390,132.3 -26.6,0.99,2.290,67.2 -24.5,0.99,5.030,194.3 -25.7,0.99,3.070,185.1 -25.6,0.99,2.740,233.2 -24.1,0.99,12.910,158.7 -23.1,0.99,4.730,152.9 -23.7,0.99,3.200,35.9 -24.5,0.99,3.310,24.8 -25.1,0.99,4.260,90.7 -25.6,0.99,4.600,155.9 -25.7,0.99,3.900,134.8 -26.2,0.99,4.330,139.2 -26.4,0.99,5.450,142.1 -26.4,0.99,5.180,129.0 -26.9,0.99,7.510,124.0 -26.9,0.99,5.520,124.2 -26.7,0.99,5.050,119.3 -26.7,0.99,6.140,124.5 -27.0,0.99,6.890,125.9 -26.8,0.99,5.410,123.1 -27.0,0.99,5.510,125.4 -27.1,0.99,6.350,118.7 -27.2,0.99,6.590,119.6 -27.1,0.99,6.670,114.5 -27.1,0.99,6.470,107.8 -27.1,0.99,5.740,98.9 -27.4,0.99,7.560,98.5 -25.2,0.99,9.480,126.8 -24.6,0.99,2.040,221.0 -23.8,0.99,8.190,148.7 -23.3,0.99,4.690,112.7 -24.7,0.99,9.900,90.4 -25.3,0.99,7.890,109.2 -26.6,0.99,8.700,117.9 -24.8,0.99,10.140,155.8 -25.2,0.99,8.710,149.5 -27.1,0.99,7.170,120.0 -26.1,0.99,9.790,129.0 -25.6,0.99,12.200,124.7 -25.9,0.99,9.540,126.3 -26.1,0.99,9.250,128.3 -26.6,0.99,7.650,130.4 -26.5,0.99,6.610,133.9 -26.5,0.99,6.790,126.1 -24.7,0.99,10.850,125.0 -25.4,0.99,7.740,111.1 -25.2,0.99,6.660,98.3 -25.1,0.99,9.840,103.8 -24.4,0.99,10.050,116.7 -24.5,0.99,6.410,84.7 -24.9,0.99,5.770,92.9 -25.4,0.99,5.250,82.7 -26.0,0.99,4.950,92.5 -26.2,0.99,5.340,91.3 -25.1,0.99,13.230,136.3 -25.6,0.99,9.830,133.2 -26.7,0.99,7.660,103.0 -26.4,0.99,9.130,103.6 -27.6,0.99,8.700,113.2 -26.3,0.99,9.130,137.6 -27.1,0.99,4.470,111.5 -27.7,0.99,6.840,113.1 -28.0,0.99,6.840,104.7 -28.2,0.99,7.630,109.4 -28.0,0.99,7.660,107.8 -28.0,0.99,7.860,109.4 -28.1,0.99,7.850,110.5 -27.9,0.99,8.020,109.4 -28.0,0.99,7.520,114.6 -27.8,0.99,7.630,106.7 -27.9,0.99,7.010,108.0 -27.8,0.99,6.110,102.2 -27.6,0.99,5.850,100.6 -27.6,0.99,6.080,89.8 -27.3,0.99,7.910,77.7 -26.5,0.99,9.070,97.3 -25.1,0.99,8.190,107.8 -25.2,0.99,5.500,97.8 -23.6,0.99,12.590,101.6 -25.5,0.99,6.290,64.2 -25.1,0.99,8.990,46.8 -26.1,0.99,5.700,63.4 -28.0,0.99,7.050,120.0 -27.8,0.99,7.900,123.1 -28.5,0.99,7.160,117.6 -28.4,0.99,7.100,115.0 -28.6,0.99,7.270,108.5 -28.8,0.99,7.210,102.9 -28.3,0.99,6.520,113.5 -28.2,0.99,5.570,111.0 -28.0,0.99,5.110,114.4 -27.9,0.99,5.460,97.8 -27.8,0.99,5.090,97.1 -27.6,0.99,4.760,77.8 -27.6,0.99,5.620,86.9 -27.4,0.99,7.480,59.0 -27.0,0.99,7.420,58.9 -26.6,0.99,7.450,45.8 -26.2,0.99,6.300,25.5 -26.4,0.99,7.830,50.0 -26.4,0.99,7.570,53.8 -26.9,0.99,8.650,56.7 -27.0,0.99,7.380,60.7 -27.2,0.99,7.100,76.0 -27.3,0.99,6.610,79.8 -27.7,0.99,6.590,93.3 -27.7,0.99,6.330,110.2 -27.7,0.99,6.370,109.6 -27.6,0.99,6.410,111.7 -27.4,0.99,6.280,111.4 -27.5,0.99,5.530,113.8 -27.5,0.99,5.080,114.4 -27.5,0.99,5.100,102.4 -27.5,0.99,5.470,85.7 -27.5,0.99,5.810,88.8 -27.3,0.99,4.280,85.7 -27.3,0.99,4.390,69.1 -27.3,0.99,4.200,81.1 -27.2,0.99,4.570,68.0 -26.5,0.99,4.160,55.8 -26.1,0.99,5.090,45.7 -26.0,0.99,5.960,41.7 -25.8,0.99,5.830,43.0 -25.7,0.99,6.510,34.6 -25.9,0.99,6.190,39.6 -26.3,0.99,5.810,47.5 -26.6,0.99,5.910,64.0 -27.2,0.99,4.950,81.7 -27.4,0.99,5.040,92.2 -27.4,0.99,3.900,109.3 -27.5,0.99,3.930,121.7 -27.9,0.99,3.870,117.9 -27.6,0.99,4.510,118.5 -27.8,0.99,4.250,117.2 -28.0,0.99,5.240,120.8 -27.8,0.99,5.410,139.2 -28.0,0.99,6.640,133.6 -28.0,0.99,5.650,126.7 -28.1,0.99,4.830,110.6 -27.8,0.99,5.100,96.5 -27.8,0.99,4.620,90.1 -27.7,0.99,5.080,86.5 -27.6,0.99,5.600,88.6 -27.3,0.99,5.220,84.6 -27.3,0.99,5.890,90.8 -27.3,0.99,6.120,85.9 -27.3,0.99,6.630,87.7 -25.5,0.99,10.770,48.5 -26.4,0.99,9.680,67.5 -26.5,0.99,8.600,83.0 -26.2,0.99,6.150,66.0 -27.3,0.99,7.280,86.1 -27.3,0.99,6.960,92.8 -27.6,0.99,7.560,101.4 -27.8,0.99,8.260,115.2 -28.1,0.99,7.370,114.6 -28.5,0.99,8.220,107.2 -28.3,0.99,7.890,108.2 -28.2,0.99,7.630,105.4 -28.2,0.99,8.780,109.2 -27.9,0.99,8.980,110.8 -27.9,0.99,8.610,107.0 -27.9,0.99,8.850,104.7 -27.8,0.99,7.960,113.0 -27.8,0.99,7.750,108.1 -27.5,0.99,7.430,106.9 -27.6,0.99,7.880,108.4 -26.8,0.99,10.450,114.2 -26.5,0.99,11.160,113.1 -26.7,0.99,6.370,121.0 -27.4,0.99,6.420,117.0 -26.4,0.99,7.160,139.0 -27.8,0.99,7.310,120.2 -28.0,0.99,6.660,122.6 -28.2,0.99,7.420,117.8 -27.9,0.99,7.020,123.3 -27.9,0.99,6.560,117.3 -27.8,0.99,5.710,115.2 -27.6,0.99,6.520,102.1 -27.7,0.99,7.060,85.5 -27.7,0.99,7.300,92.8 -27.6,0.99,8.760,99.7 -27.7,0.99,8.180,97.3 -27.8,0.99,8.880,103.7 -28.0,0.99,8.880,103.0 -27.7,0.99,9.040,103.4 -27.7,0.99,9.630,111.5 -27.7,0.99,8.760,117.0 -27.8,0.99,8.160,110.4 -27.7,0.99,9.740,110.1 -27.8,0.99,7.820,120.3 -27.6,0.99,7.610,113.4 -27.7,0.99,6.690,103.6 -27.8,0.99,6.750,93.0 -27.4,0.99,6.040,97.5 -27.7,0.99,6.880,88.7 -27.6,0.99,6.440,92.2 -27.6,0.99,6.640,98.9 -27.5,0.99,6.500,87.7 -27.7,0.99,7.070,93.6 -27.6,0.99,6.370,101.1 -27.7,0.99,6.550,116.0 -27.9,0.99,6.910,117.2 -27.7,0.99,6.900,114.8 -28.0,0.99,8.310,114.5 -27.9,0.99,4.760,105.0 -27.8,0.99,5.120,93.7 -27.9,0.99,6.630,89.0 -26.6,0.99,8.380,87.9 -27.5,0.99,7.520,109.2 -27.6,0.99,7.710,121.5 -27.5,0.99,7.630,126.5 -27.4,0.99,6.890,114.1 -27.3,0.99,6.740,112.1 -27.4,0.99,6.580,113.1 -27.3,0.99,7.010,108.9 -27.4,0.99,7.060,110.6 -27.4,0.99,6.580,116.1 -27.3,0.99,5.020,105.0 -27.4,0.99,6.440,106.0 -27.6,0.99,5.290,93.9 -27.1,0.99,8.990,94.1 -25.7,0.99,6.210,67.7 -25.8,0.99,13.010,80.5 -26.2,0.99,5.820,90.7 -27.3,0.99,4.020,116.8 -27.4,0.99,5.970,105.3 -27.7,0.99,7.370,128.3 -27.7,0.99,7.100,123.7 -27.7,0.99,5.980,122.7 -27.7,0.99,6.650,107.7 -27.5,0.99,6.810,104.7 -27.6,0.99,6.800,95.1 -27.5,0.99,6.090,97.0 -27.5,0.99,6.610,104.6 -27.5,0.99,6.140,105.0 -27.3,0.99,6.340,97.6 -27.4,0.99,5.660,105.0 -27.4,0.99,5.450,93.0 -27.2,0.99,3.900,91.7 -27.2,0.99,5.410,80.9 -26.3,0.99,10.200,92.2 -26.9,0.99,9.920,92.7 -27.1,0.99,10.000,92.8 -26.8,0.99,9.630,96.7 -26.6,0.99,8.060,91.1 -27.2,0.99,6.560,87.3 -27.7,0.99,8.160,103.3 -27.6,0.99,8.880,108.6 -27.5,0.99,7.600,112.2 -28.1,0.99,8.750,111.2 -27.7,0.99,8.590,105.8 -27.5,0.99,8.810,106.8 -27.6,0.99,8.270,105.5 -27.7,0.99,8.530,108.9 -27.7,0.99,7.940,115.5 -27.4,0.99,8.430,112.4 -27.6,0.99,8.410,113.1 -27.5,0.99,9.780,118.9 -27.6,0.99,8.990,122.0 -27.5,0.99,8.060,125.5 -27.3,0.99,7.020,119.8 -27.4,0.99,7.410,120.1 -27.4,0.99,8.420,119.7 -27.4,0.99,7.530,126.0 -27.3,0.99,8.160,128.0 -27.6,0.99,6.320,126.1 -27.4,0.99,6.950,127.7 -27.6,0.99,6.870,125.9 -27.5,0.99,7.440,123.5 -27.5,0.99,7.240,117.5 -27.7,0.99,8.230,128.0 -27.7,0.99,7.690,134.5 -27.6,0.99,9.570,136.3 -27.2,0.99,8.510,143.3 -27.6,0.99,10.160,149.4 -27.7,0.99,10.170,139.0 -28.2,0.99,10.250,156.4 -28.1,0.99,10.970,152.3 -27.7,0.99,10.700,157.3 -27.5,0.99,10.250,148.1 -27.6,0.99,8.990,157.8 -27.7,0.99,10.140,156.4 -27.3,0.99,9.930,162.7 -27.3,0.99,8.970,165.4 -27.5,0.99,8.090,169.9 -27.9,0.99,9.010,166.6 -27.8,0.99,8.470,169.9 -27.6,0.99,8.800,167.2 -28.1,0.99,8.980,162.7 -27.9,0.99,8.660,164.5 -27.8,0.99,9.230,159.4 -27.7,0.99,9.900,158.2 -27.6,0.99,7.850,162.6 -27.8,0.99,7.960,163.8 -27.9,0.99,8.430,164.6 -27.7,0.99,8.700,159.2 -27.7,0.99,7.990,159.8 -27.7,0.99,7.940,162.0 -27.6,0.98,8.900,163.3 -28.3,0.98,9.660,161.9 -28.1,0.98,8.270,165.1 -28.5,0.98,9.350,164.6 -27.6,0.98,8.490,160.3 -28.0,0.98,6.830,161.2 -28.0,0.98,7.090,168.3 -27.8,0.98,6.820,169.3 -27.5,0.98,6.660,179.3 -27.8,0.98,6.570,180.2 -27.5,0.98,6.080,181.0 -27.5,0.98,5.940,182.3 -27.3,0.98,5.570,188.2 -26.9,0.98,3.880,217.4 -24.1,0.98,9.940,9.2 -24.3,0.98,8.450,3.9 -23.9,0.98,9.170,11.8 -23.8,0.98,8.140,21.6 -23.6,0.98,8.830,18.9 -22.6,0.98,11.770,22.9 -22.6,0.98,12.390,24.0 -22.5,0.98,12.590,22.3 -22.5,0.98,11.490,25.4 -22.2,0.98,11.350,10.8 -21.9,0.98,12.450,34.1 -21.8,0.98,13.620,25.4 -21.7,0.98,12.820,28.2 -21.8,0.98,13.310,31.3 -22.1,0.98,14.190,36.6 -22.5,0.98,14.260,35.4 -22.3,0.98,13.890,36.3 -22.9,0.98,13.840,43.9 -22.8,0.98,13.630,43.7 -22.7,0.98,13.250,41.9 -22.6,0.98,12.940,41.6 -22.8,0.98,13.800,45.7 -22.6,0.98,13.230,43.8 -22.2,0.98,12.570,40.6 -21.9,0.98,12.410,41.9 -21.7,0.98,11.850,39.0 -21.4,0.98,11.550,39.7 -21.4,0.98,11.210,36.3 -21.5,0.98,10.630,35.5 -22.3,0.98,10.640,35.2 -23.3,0.98,10.630,40.6 -24.2,0.98,10.210,39.5 -25.0,0.98,9.580,46.8 -25.5,0.98,9.830,52.1 -25.8,0.98,9.480,48.8 -26.1,0.98,9.640,46.2 -26.1,0.98,10.430,46.4 -26.2,0.98,10.990,55.6 -25.9,0.98,12.130,67.9 -25.0,0.98,11.420,69.7 -25.0,0.98,11.390,66.7 -25.3,0.98,11.410,72.0 -25.0,0.98,10.990,65.7 -24.8,0.98,10.730,62.0 -24.9,0.98,11.020,70.2 -24.7,0.98,12.690,76.3 -25.0,0.98,7.910,78.3 -24.9,0.98,8.660,83.0 -25.7,0.98,8.740,77.5 -25.3,0.98,10.260,67.5 -26.1,0.98,9.520,89.5 -24.3,0.98,8.910,46.1 -26.3,0.98,8.790,82.5 -26.1,0.98,8.290,78.0 -26.3,0.98,9.310,71.9 -26.2,0.98,9.490,72.0 -26.1,0.98,8.960,70.8 -25.8,0.98,9.430,81.9 -26.3,0.98,7.260,73.6 -26.9,0.98,7.910,86.2 -26.6,0.98,8.580,86.3 -26.8,0.98,6.740,84.1 -26.9,0.98,6.800,87.4 -27.1,0.98,6.040,90.7 -27.1,0.98,6.750,81.5 -27.3,0.98,6.520,83.2 -27.2,0.98,6.070,76.2 -26.9,0.98,6.490,62.6 -26.4,0.98,6.700,88.2 -26.5,0.98,4.140,75.6 -26.5,0.98,5.190,47.4 -26.3,0.98,6.500,33.1 -25.4,0.98,8.260,22.8 -25.8,0.98,7.790,23.5 -25.3,0.99,7.420,22.0 -25.9,0.99,6.870,13.2 -27.0,0.99,7.030,17.4 -27.6,0.99,3.520,34.0 -27.8,0.99,3.000,346.8 -27.7,0.99,1.740,45.1 -28.1,0.98,2.230,56.5 -28.7,0.98,3.570,79.4 -28.6,0.98,3.270,69.1 -28.3,0.98,3.140,67.8 -28.1,0.98,2.830,77.4 -27.9,0.99,3.810,54.0 -27.6,0.99,2.990,37.2 -27.6,0.99,3.930,27.9 -27.3,0.99,4.200,36.5 -27.4,0.99,4.150,44.6 -26.9,0.99,3.650,48.4 -27.4,0.99,3.200,41.6 -27.5,0.99,3.830,29.1 -27.4,0.99,4.510,18.4 -27.0,0.99,4.220,8.5 -26.5,0.99,3.700,9.8 -26.1,0.99,4.070,1.7 -25.7,0.99,3.510,1.9 -25.8,0.99,3.050,355.3 -24.9,0.99,3.570,355.4 -25.4,0.99,2.750,356.6 -26.5,0.99,3.100,344.7 -26.9,0.99,1.790,339.8 -27.8,0.99,1.040,294.3 -28.5,0.99,0.980,207.7 -28.6,0.99,3.390,170.2 -28.8,0.98,3.800,162.5 -27.6,0.99,6.590,163.7 -27.4,0.98,5.590,171.8 -26.9,0.99,5.650,165.4 -26.9,0.99,5.210,176.1 -26.8,0.99,4.250,186.2 -26.8,0.99,5.090,207.7 -26.7,0.99,3.750,216.0 -26.5,0.99,3.770,217.9 -26.4,0.99,3.870,213.4 -26.3,0.99,3.180,220.8 -26.4,0.99,3.780,216.0 -26.3,0.99,2.890,197.9 -26.4,0.99,2.880,197.9 -25.9,0.99,1.730,197.2 -25.8,0.99,1.320,200.2 -26.0,0.99,1.140,153.1 -25.9,0.99,1.370,113.2 -25.8,0.99,2.210,107.8 -25.6,0.99,2.480,76.7 -26.8,0.99,3.400,111.9 -27.1,0.99,4.380,114.8 -27.2,0.99,4.920,118.0 -27.2,0.99,6.100,127.5 -27.2,0.99,6.530,128.9 -27.2,0.99,6.850,135.3 -27.0,0.99,6.970,142.9 -27.0,0.99,6.770,144.5 -27.2,0.99,7.290,144.7 -26.9,0.99,7.470,149.4 -27.1,0.99,7.510,152.3 -27.1,0.99,7.950,155.7 -27.1,0.99,7.800,163.5 -26.9,0.99,7.840,163.8 -27.1,0.99,7.760,163.3 -27.0,0.99,6.970,165.2 -26.8,0.99,6.410,159.7 -26.7,0.99,6.400,156.8 -26.6,0.99,5.670,146.0 -26.6,0.99,5.990,142.5 -26.8,0.99,5.920,135.4 -26.8,0.99,6.100,135.4 -26.8,0.99,6.490,127.4 -26.9,0.99,6.690,129.9 -27.0,0.99,6.720,125.8 -27.1,0.99,6.820,126.4 -27.1,0.99,7.040,125.8 -27.1,0.99,7.510,119.3 -26.9,0.99,8.400,117.7 -27.1,0.99,8.600,118.1 -26.7,0.99,8.950,122.9 -26.7,0.99,9.360,127.0 -26.7,0.99,9.180,124.7 -26.8,0.99,9.690,129.6 -26.6,0.99,10.080,135.7 -26.7,0.99,9.310,134.9 -26.5,0.99,9.960,143.0 -26.6,0.99,9.800,142.5 -26.5,0.99,10.200,143.6 -26.6,0.99,9.830,148.1 -26.5,0.99,9.360,144.7 -26.5,0.99,9.350,145.7 -26.7,0.99,8.980,136.7 -26.7,0.99,8.850,141.4 -26.9,0.99,9.540,134.8 -26.9,0.99,8.950,139.1 -26.9,0.99,9.070,139.0 -27.0,0.99,8.700,139.0 -27.2,0.99,9.250,135.3 -26.4,0.99,10.730,142.1 -26.4,0.99,10.510,151.9 -26.6,0.99,8.360,148.3 -26.4,0.99,7.940,148.9 -26.9,0.99,7.770,151.0 -26.6,0.99,7.750,151.4 -26.7,0.99,7.600,148.2 -26.7,0.99,7.720,151.7 -26.5,0.99,7.660,151.1 -26.4,0.99,7.370,155.7 -26.7,0.99,7.460,158.9 -26.6,0.99,8.610,161.3 -26.6,0.99,7.650,160.7 -26.6,0.99,6.940,166.7 -26.6,0.99,7.250,173.8 -26.6,0.99,7.250,185.0 -26.4,0.99,6.750,175.2 -26.4,0.99,6.070,184.1 -26.5,0.99,6.540,194.5 -26.4,0.99,5.330,181.3 -26.4,0.99,6.870,200.6 -24.5,0.99,8.210,186.2 -24.5,0.99,5.100,215.5 -25.4,0.99,5.520,196.3 -25.7,0.99,4.830,184.4 -26.3,0.99,5.140,179.1 -25.9,0.99,6.370,169.3 -25.9,0.99,5.780,159.8 -26.0,0.99,6.630,165.6 -25.9,0.99,4.640,167.0 -26.0,0.99,6.070,168.9 -26.1,0.99,5.200,177.2 -26.3,0.99,6.120,181.3 -26.4,0.99,7.170,164.4 -26.4,0.99,9.120,170.9 -26.5,0.99,8.570,181.2 -26.5,0.99,8.570,171.3 -26.5,0.99,8.160,188.9 -23.9,0.99,7.340,150.2 -23.8,0.99,11.170,167.5 -24.5,0.99,10.270,170.1 -24.4,0.99,10.100,166.0 -24.0,0.99,7.520,213.1 -24.4,0.99,6.720,210.5 -24.2,0.99,7.580,237.2 -24.1,0.99,5.500,179.2 -23.6,0.99,5.150,142.7 -25.0,0.99,5.210,210.8 -25.7,0.99,6.120,218.3 -25.7,0.99,5.180,195.5 -25.9,0.99,5.530,183.7 -26.2,0.99,5.180,186.3 -26.3,0.99,4.460,160.7 -26.2,0.99,4.410,164.2 -26.1,0.99,6.320,153.5 -26.1,0.99,7.740,156.4 -26.2,0.99,8.490,165.8 -26.3,0.99,8.810,173.3 -26.7,0.99,8.550,182.1 -26.4,0.99,8.800,188.6 -26.6,0.99,8.390,185.2 -26.7,0.99,9.020,178.0 -26.6,0.99,8.920,168.6 -26.6,0.99,8.310,189.5 -26.1,0.99,9.120,203.2 -26.7,0.99,5.450,170.0 -26.7,0.99,4.720,185.4 -26.3,0.99,7.780,168.6 -26.2,0.99,4.480,177.8 -26.1,0.99,2.370,197.9 -26.4,0.99,3.010,193.3 -26.1,0.99,9.050,159.8 -25.5,0.99,10.730,163.5 -25.5,0.99,6.890,166.6 -25.8,0.99,6.470,159.1 -26.1,0.99,7.410,154.2 -26.5,0.99,5.710,149.1 -26.1,0.99,5.190,140.3 -26.5,0.99,7.410,134.7 -26.0,0.99,7.210,125.3 -26.4,0.99,8.570,140.1 -26.5,0.99,8.440,142.5 -26.4,0.99,9.750,134.8 -26.6,0.99,8.340,145.6 -26.5,0.99,8.820,146.5 -26.6,0.99,8.020,155.0 -26.7,0.99,7.880,160.1 -26.4,0.99,7.640,159.8 -26.8,0.99,6.360,171.8 -26.7,0.99,5.480,171.8 -26.8,0.99,4.980,169.7 -26.7,0.99,3.550,144.6 -26.4,0.99,3.140,129.6 -25.7,0.99,2.800,101.9 -26.1,0.99,5.520,106.4 -26.0,0.99,6.940,106.1 -25.6,0.99,5.610,121.6 -25.9,0.99,3.890,144.2 -25.9,0.99,3.980,137.4 -26.2,0.99,5.220,123.0 -26.0,0.99,6.330,117.8 -26.0,0.99,7.490,116.3 -26.1,0.99,6.880,126.9 -26.3,0.99,7.890,130.4 -26.4,0.99,7.750,144.4 -26.4,0.99,7.820,145.7 -26.4,0.99,7.570,148.1 -26.5,0.99,6.450,154.4 -27.1,0.99,7.190,162.4 -26.7,0.99,7.130,166.1 -26.6,0.99,6.920,172.2 -26.4,0.99,6.000,171.3 -26.5,0.99,5.870,168.4 -26.3,0.99,6.080,163.1 -26.3,0.99,4.800,165.4 -26.0,0.99,5.130,161.8 -26.1,0.99,3.820,159.5 -26.1,0.99,3.710,153.5 -26.3,0.99,4.000,142.1 -26.6,0.99,3.920,143.8 -26.7,0.99,5.320,136.4 -26.8,0.99,5.140,145.3 -26.7,0.99,5.680,146.5 -26.3,0.99,5.830,140.3 -26.3,0.99,5.730,141.6 -26.1,0.99,5.820,140.9 -26.1,0.99,5.490,143.6 -26.0,0.99,5.930,144.2 -26.1,0.99,3.720,161.3 -25.9,0.99,4.830,135.9 -26.0,0.99,5.460,139.8 -26.1,0.99,5.130,143.0 -26.1,0.99,5.210,147.0 -26.1,0.99,4.720,160.9 -26.1,0.99,3.560,163.4 -26.4,0.99,5.650,154.7 -26.3,0.99,4.810,157.3 -26.3,0.99,4.090,158.8 -26.2,0.99,3.460,158.6 -26.2,0.99,3.240,150.2 -26.1,0.99,2.850,152.0 -26.5,0.99,2.330,148.8 -26.5,0.99,2.550,160.3 -26.4,0.99,6.930,135.0 -27.0,0.99,8.440,132.8 -27.0,0.99,8.710,137.5 -27.2,0.99,8.970,132.6 -27.0,0.99,8.820,130.2 -26.9,0.99,8.680,127.0 -26.8,0.99,8.690,122.5 -26.7,0.99,9.070,128.7 -26.6,0.99,9.190,128.3 -26.8,0.99,9.070,129.0 -26.7,0.99,9.120,121.0 -26.7,0.99,8.310,123.8 -26.8,0.99,7.530,124.7 -26.7,0.99,6.840,125.0 -26.6,0.99,5.940,122.2 -26.4,0.99,5.330,122.9 -26.6,0.99,4.510,128.8 -26.4,0.99,3.870,115.2 -26.3,0.99,3.510,102.0 -26.2,0.99,3.690,89.1 -26.2,0.99,3.990,82.6 -26.2,0.99,2.910,71.7 -26.0,0.99,3.170,58.1 -26.2,0.99,4.510,109.1 -26.6,0.99,4.250,103.0 -26.7,0.99,4.370,101.8 -26.6,0.99,3.730,100.8 -26.7,0.99,3.750,105.9 -26.6,0.99,1.850,110.5 -26.8,0.99,0.650,86.3 -27.4,0.99,1.820,4.2 -26.1,0.99,2.720,357.5 -26.0,0.99,5.400,345.9 -25.6,0.99,7.040,6.9 -25.1,0.99,7.110,11.5 -24.3,0.99,10.600,355.2 -22.0,0.99,11.500,346.9 -20.6,0.99,11.220,349.6 -20.1,0.99,11.790,350.4 -19.7,0.99,13.130,350.9 -19.1,0.99,13.850,348.5 -19.0,0.99,14.110,354.1 -18.5,0.99,12.440,2.7 -18.3,0.99,13.470,355.0 -18.3,0.99,12.710,352.4 -18.8,0.99,9.900,360.0 -20.1,0.99,9.430,353.1 -19.9,0.99,9.840,341.5 -21.3,0.99,10.370,354.5 -22.2,0.99,8.850,344.2 -22.4,0.99,10.120,340.4 -23.0,0.99,11.810,339.0 -23.2,0.99,10.630,340.8 -23.4,0.99,10.580,340.0 -22.9,0.99,10.240,343.1 -22.7,0.99,9.540,342.8 -22.2,0.99,10.910,348.4 -21.8,0.99,11.520,348.9 -21.2,0.99,10.460,352.5 -20.8,0.99,10.280,350.7 -20.6,0.99,8.630,356.1 -20.1,0.99,8.790,351.9 -19.3,0.99,9.320,359.3 -19.0,0.99,8.740,6.5 -18.9,0.99,8.460,3.8 -18.8,0.99,8.600,9.4 -18.6,0.99,8.330,8.4 -18.2,0.99,7.070,12.6 -18.4,0.99,6.790,8.4 -18.8,0.99,5.950,6.3 -19.3,0.99,5.160,357.1 -20.0,0.99,4.330,347.0 -21.1,0.99,4.870,334.4 -22.4,0.99,5.010,337.5 -23.4,0.99,5.600,348.4 -23.6,0.99,6.700,337.9 -23.8,0.99,6.740,336.7 -24.0,0.99,6.780,348.1 -23.7,0.99,7.060,9.3 -23.4,0.99,6.660,18.6 -23.3,0.99,5.830,21.6 -23.2,0.99,5.110,21.6 -23.0,0.99,4.830,30.7 -22.9,0.99,4.820,29.0 -22.6,0.99,5.190,26.7 -21.2,0.99,4.320,24.0 -20.7,0.99,4.410,22.1 -20.4,0.99,5.070,27.5 -20.3,0.99,4.950,33.5 -21.1,0.99,4.570,43.4 -21.7,0.99,4.360,39.4 -22.0,0.99,4.360,61.1 -21.8,0.99,4.560,57.7 -21.6,0.99,4.730,59.7 -21.4,0.99,4.640,59.8 -21.3,0.99,4.120,59.6 -21.7,0.99,2.900,61.1 -22.2,0.99,0.950,52.0 -22.5,0.99,0.300,115.2 -22.7,0.99,0.890,135.8 -22.7,0.99,0.980,132.4 -22.8,0.99,0.970,126.1 -22.8,0.99,1.290,114.0 -22.7,0.99,1.780,115.5 -22.6,0.99,2.360,101.3 -22.6,0.99,2.930,92.8 -22.6,0.99,2.840,89.1 -22.7,0.99,3.400,84.2 -22.6,0.99,3.550,98.9 -22.6,0.99,3.070,116.3 -22.5,0.99,2.260,107.2 -22.5,0.99,2.160,112.4 -22.6,0.99,1.480,94.1 -21.5,0.99,3.240,24.6 -21.8,0.99,1.870,17.3 -21.5,0.99,1.650,15.4 -21.9,0.99,1.600,13.7 -22.1,0.99,1.300,345.2 -21.9,0.99,2.730,358.8 -22.2,0.99,2.720,0.4 -22.6,0.99,2.490,39.8 -22.9,0.99,1.630,52.2 -23.1,0.99,1.530,88.0 -23.4,0.99,2.440,105.1 -23.4,0.99,3.720,101.5 -23.5,0.99,5.910,111.9 -23.4,0.99,5.260,115.0 -23.3,0.99,6.180,111.2 -23.4,0.99,6.100,117.8 -23.6,0.99,6.950,109.7 -23.7,0.99,5.710,135.0 -23.6,0.99,6.160,134.8 -23.6,0.99,5.310,134.7 -23.6,0.99,5.810,141.5 -23.9,0.99,5.510,149.5 -23.9,0.99,4.380,172.5 -23.6,0.99,3.360,129.8 -24.1,0.99,3.550,187.2 -23.9,0.99,1.720,198.3 -23.9,0.99,2.920,187.7 -24.1,0.99,2.630,168.7 -24.0,0.99,1.590,164.5 -24.0,0.99,1.550,129.3 -24.1,0.99,2.030,108.3 -24.4,0.99,3.040,111.8 -24.4,0.99,3.110,118.2 -24.6,0.99,3.940,129.0 -24.4,0.99,4.760,123.6 -24.6,0.99,5.320,131.8 -24.5,0.99,6.460,136.3 -24.5,0.99,6.750,137.9 -24.6,0.99,6.050,145.4 -24.6,0.99,6.070,148.5 -24.8,0.99,5.170,156.1 -24.6,0.99,5.710,157.2 -24.5,0.99,5.810,161.9 -24.3,0.99,5.390,161.9 -24.4,0.99,5.210,165.8 -24.6,0.99,5.550,184.6 -24.8,0.99,6.290,175.1 -24.9,0.99,6.930,179.3 -24.9,0.99,6.370,175.8 -24.9,0.99,5.710,167.7 -24.8,0.99,5.080,160.7 -25.1,0.99,5.630,161.8 -25.6,0.99,6.160,174.7 -25.5,0.99,6.840,170.0 -25.4,0.99,7.200,155.1 -25.6,0.99,8.020,161.1 -25.3,0.99,6.650,155.6 -25.4,0.99,6.660,148.8 -25.4,0.99,7.440,140.1 -25.4,0.99,7.500,144.6 -25.3,0.99,7.850,142.1 -25.2,0.99,9.510,149.3 -25.2,0.99,9.030,152.2 -25.2,0.99,8.690,149.2 -25.3,0.99,10.010,151.9 -25.4,0.99,9.800,150.7 -25.5,0.99,9.210,164.3 -25.3,0.99,8.540,164.8 -25.3,0.99,8.900,163.4 -25.4,0.99,8.310,167.1 -25.6,0.99,7.900,169.0 -25.8,0.99,7.150,175.2 -25.9,0.99,5.890,157.5 -25.8,0.99,7.140,161.3 -24.8,0.99,8.270,194.7 -24.2,0.99,5.870,154.8 -25.4,0.99,6.570,189.4 -24.1,0.99,9.960,175.0 -24.7,0.99,4.120,194.0 -25.7,0.99,3.780,145.7 -24.8,0.99,7.320,156.1 -24.9,0.99,6.550,178.2 -25.3,0.99,6.150,179.4 -25.4,0.99,6.990,172.0 -25.5,0.99,6.080,167.8 -25.3,0.99,5.480,174.8 -25.1,0.99,5.670,154.3 -25.1,0.99,6.420,137.7 -25.2,0.99,6.590,126.2 -25.1,0.99,5.940,125.0 -25.2,0.99,5.910,133.5 -25.2,0.99,5.740,156.6 -25.2,0.99,5.300,170.6 -25.2,0.99,4.300,168.7 -25.3,0.99,3.610,178.9 -25.3,0.99,3.010,176.6 -25.3,0.99,2.170,174.7 -25.2,0.99,2.110,128.9 -25.2,0.99,2.400,112.5 -25.0,1.00,2.190,88.1 -25.0,1.00,2.340,84.7 -24.6,1.00,3.280,53.3 -25.3,0.99,3.310,99.7 -25.8,0.99,4.630,122.1 -25.7,0.99,5.610,120.6 -25.6,0.99,5.690,115.2 -25.5,0.99,5.780,119.8 -25.5,0.99,6.050,124.8 -25.5,0.99,6.180,120.1 -25.3,0.99,5.940,121.1 -25.3,0.99,5.310,123.8 -25.6,0.99,5.810,126.4 -25.4,0.99,5.490,131.1 -25.4,0.99,5.130,130.7 -25.4,0.99,3.610,133.4 -25.2,0.99,4.700,120.3 -25.4,0.99,4.290,142.5 -25.2,0.99,4.200,118.7 -25.3,0.99,5.460,137.0 -25.2,0.99,5.820,136.8 -25.3,0.99,5.550,145.3 -25.5,0.99,5.530,137.9 -25.2,0.99,5.540,136.4 -25.2,0.99,5.010,135.2 -25.3,0.99,4.870,138.1 -25.1,0.99,4.570,130.6 -25.2,0.99,4.790,133.0 -24.9,0.99,3.610,136.1 -25.2,0.99,5.100,138.0 -25.2,0.99,4.440,131.4 -25.3,0.99,5.820,147.1 -25.2,0.99,5.920,139.5 -25.1,0.99,6.720,138.2 -25.3,0.99,6.310,138.2 -25.2,0.99,7.230,141.0 -25.2,0.99,8.040,145.8 -25.2,0.99,8.180,143.3 -25.2,0.99,7.330,151.6 -25.2,0.99,7.800,146.8 -25.2,0.99,7.300,153.2 -25.2,0.99,7.850,163.3 -25.2,0.99,7.090,164.8 -25.1,0.99,7.170,165.4 -25.2,0.99,7.580,165.6 -25.1,0.99,7.240,170.9 -25.1,0.99,6.920,168.8 -25.1,0.99,5.750,176.9 -25.1,0.99,5.440,175.4 -25.1,0.99,5.370,173.3 -25.1,0.99,4.680,162.1 -25.0,0.99,5.160,170.5 -25.2,0.99,5.860,166.9 -25.2,0.99,5.870,163.7 -25.3,0.99,6.360,170.1 -25.3,0.99,6.770,164.3 -25.2,0.99,6.370,168.9 -25.2,0.99,6.810,164.4 -25.0,0.99,6.960,163.6 -25.0,0.99,7.070,158.0 -24.9,0.99,6.550,167.0 -25.1,0.99,6.640,164.7 -25.0,0.99,6.670,179.2 -25.0,0.99,5.490,179.3 -24.8,0.99,5.060,180.7 -24.8,0.99,5.180,196.9 -24.9,0.99,4.690,188.2 -25.0,0.99,5.110,191.1 -24.9,0.99,4.390,209.0 -24.6,0.99,2.730,241.2 -24.5,0.99,3.430,257.5 -24.4,0.99,3.820,266.5 -24.4,0.99,3.840,269.6 -24.2,0.99,3.520,266.0 -24.4,0.99,2.800,261.8 -24.4,0.99,2.050,247.8 -24.5,0.99,2.380,207.1 -24.8,0.99,3.390,205.5 -25.1,0.99,3.240,206.5 -25.5,0.99,4.040,213.8 -24.7,0.99,5.130,282.6 -23.1,0.99,9.410,338.4 -21.9,0.99,9.050,342.2 -20.6,0.99,8.890,344.0 -19.9,0.99,8.920,343.5 -19.4,0.99,9.100,341.1 -19.2,0.99,8.610,344.1 -19.0,0.99,8.810,341.3 -18.4,0.99,9.020,342.4 -18.0,0.99,9.310,342.3 -17.7,0.99,9.370,344.1 -17.6,0.99,9.980,348.2 -17.6,0.99,9.080,353.7 -17.4,0.99,8.510,358.1 -16.9,0.99,7.950,3.4 -16.6,0.99,8.660,2.4 -16.9,0.99,7.230,5.4 -17.0,0.99,7.850,10.4 -17.6,0.99,6.620,4.8 -18.4,0.99,5.790,2.9 -19.9,0.99,5.030,10.4 -21.2,0.99,4.550,13.2 -22.0,0.99,3.800,353.1 -22.4,0.99,3.290,341.2 -22.8,0.99,4.220,350.2 -23.4,0.99,3.720,3.9 -23.2,0.99,5.230,15.9 -22.4,0.99,6.680,27.1 -21.9,0.99,7.220,31.6 -21.6,0.99,7.290,39.7 -21.5,0.99,6.860,44.5 -21.7,0.99,6.300,52.1 -21.7,0.99,6.560,57.1 -21.7,0.99,6.260,61.1 -21.6,0.99,6.710,65.1 -21.7,0.99,6.890,71.2 -21.8,0.99,7.220,77.2 -21.7,0.99,8.180,81.9 -21.8,0.99,7.970,85.1 -21.8,0.99,8.510,89.3 -21.8,0.99,8.190,73.7 -21.6,0.99,9.370,71.0 -21.5,0.99,9.840,75.0 -21.5,0.99,10.390,82.2 -21.8,0.99,9.580,90.3 -22.0,0.99,9.860,96.5 -22.3,0.99,8.300,99.6 -22.1,0.99,8.690,97.9 -21.7,0.99,9.300,92.3 -21.6,0.99,8.850,95.0 -22.0,0.99,9.940,91.1 -22.3,0.99,8.060,100.2 -22.6,0.99,7.060,101.6 -22.8,0.99,6.780,95.3 -23.3,0.99,5.420,116.9 -23.2,0.99,5.720,88.3 -22.8,0.99,7.470,53.9 -21.2,0.99,8.760,23.9 -17.9,0.99,13.340,1.5 -17.4,0.99,14.090,7.0 -17.4,0.99,10.910,5.0 -16.9,0.99,11.730,3.0 -16.9,0.99,10.400,8.3 -16.8,0.99,11.610,1.2 -16.4,0.99,11.270,2.4 -16.6,0.99,10.330,356.7 -17.0,0.99,9.910,354.5 -17.6,0.99,9.650,350.8 -18.4,0.99,9.440,347.7 -19.3,0.99,9.130,349.8 -19.9,0.99,9.330,350.1 -20.1,0.99,9.320,350.0 -20.1,0.99,8.780,355.3 -19.8,0.99,8.530,2.5 -18.8,0.99,9.940,3.4 -18.4,0.99,9.600,11.7 -18.1,0.99,8.910,20.3 -17.9,0.99,8.650,21.4 -17.5,0.99,8.800,28.5 -17.4,0.99,8.210,32.6 -17.1,0.99,7.920,33.5 -16.9,0.99,7.320,36.6 -17.0,0.99,7.140,36.8 -17.2,0.99,6.850,38.7 -17.6,0.99,6.440,51.6 -17.8,0.99,5.810,51.1 -17.9,0.99,5.740,47.7 -18.1,0.99,5.590,50.9 -18.3,0.99,5.410,56.4 -18.6,0.99,5.030,80.4 -19.0,0.99,4.710,78.7 -19.2,0.99,4.110,83.8 -19.6,0.99,4.110,82.5 -19.8,0.99,4.490,74.3 -20.2,0.99,4.010,102.9 -20.4,0.99,4.220,90.6 -20.5,0.99,4.240,97.9 -20.8,0.99,4.770,104.9 -20.9,0.99,5.780,104.6 -21.1,0.99,5.650,101.9 -21.4,0.99,5.700,111.8 -21.6,0.99,5.740,119.0 -21.9,0.99,6.450,126.3 -22.0,0.99,6.180,134.7 -22.3,0.99,6.790,139.7 -22.6,0.99,6.850,150.4 -22.7,0.99,6.930,142.7 -23.0,0.99,6.830,142.9 -23.2,0.99,5.470,147.3 -23.3,0.99,5.590,148.4 -23.4,0.99,5.740,137.8 -23.6,0.99,5.010,130.6 -23.5,0.99,6.410,138.4 -21.9,0.99,8.580,166.6 -21.4,0.99,4.260,110.7 -20.8,0.99,4.250,122.1 -22.1,0.99,7.470,148.2 -20.7,0.99,2.400,191.9 -19.1,0.99,11.240,2.9 -20.1,0.99,10.020,52.4 -20.7,0.99,10.720,70.5 -21.1,0.99,10.620,91.6 -21.2,0.99,8.370,81.7 -21.5,0.99,6.560,91.6 -21.8,0.99,6.430,87.6 -22.2,0.99,5.150,97.6 -22.2,0.99,4.010,92.2 -22.3,0.99,2.060,101.2 -22.4,0.99,2.100,48.1 -21.1,0.99,6.180,10.9 -20.3,0.99,7.950,9.0 -19.8,0.99,8.400,9.8 -20.0,0.99,7.910,15.2 -19.8,0.99,7.730,5.2 -18.4,0.99,7.840,358.2 -17.4,0.99,8.810,355.3 -17.5,0.99,7.990,356.8 -17.6,0.99,8.270,351.7 -17.9,0.99,7.760,352.2 -19.1,0.99,7.140,348.0 -20.2,0.99,7.310,345.7 -21.0,0.99,7.520,346.7 -21.7,0.99,8.780,342.9 -22.2,0.99,7.890,347.3 -22.4,0.99,8.670,356.2 -22.2,0.99,9.100,6.0 -21.5,0.99,9.480,10.7 -21.1,0.99,8.980,10.7 -21.0,0.99,8.500,14.8 -20.9,0.99,7.410,19.0 -21.0,0.99,6.650,18.3 -20.8,0.99,5.640,13.7 -19.9,0.99,4.000,5.9 -19.0,0.99,3.870,349.7 -17.9,0.99,4.010,340.1 -18.1,0.99,3.970,345.6 -18.3,0.99,4.150,351.7 -18.2,0.99,3.950,357.2 -18.0,1.00,3.850,2.8 -17.7,1.00,3.950,3.9 -17.8,1.00,3.920,7.5 -18.1,1.00,3.630,10.2 -18.6,1.00,3.470,10.9 -18.9,1.00,3.360,10.4 -20.5,1.00,2.950,26.3 -21.3,0.99,2.780,40.9 -21.8,0.99,1.960,70.9 -22.1,0.99,1.370,94.2 -22.3,0.99,0.960,104.7 -22.5,0.99,0.810,120.6 -22.4,1.00,1.040,124.7 -22.3,1.00,0.920,133.8 -22.2,1.00,1.770,139.7 -22.2,1.00,1.580,136.4 -22.2,1.00,1.590,140.9 -22.2,1.00,0.830,153.9 -22.2,1.00,0.500,168.7 -22.0,1.00,0.360,258.7 -21.9,1.00,0.320,275.2 -21.9,1.00,0.440,286.4 -22.0,1.00,0.670,322.8 -21.9,1.00,0.980,329.1 -21.9,1.00,1.330,339.0 -21.8,1.00,1.600,354.1 -21.6,1.00,2.340,1.7 -21.7,1.00,2.560,5.4 -21.7,1.00,2.330,20.4 -21.8,1.00,2.550,16.7 -21.9,1.00,2.250,29.9 -22.2,1.00,1.630,51.6 -22.4,1.00,1.120,90.4 -22.5,1.00,1.300,99.1 -22.6,1.00,1.840,117.7 -22.7,1.00,2.260,121.5 -22.6,1.00,2.840,128.3 -22.4,1.00,3.030,126.2 -22.4,1.00,2.630,127.3 -22.5,1.00,2.650,125.0 -22.4,1.00,2.490,121.4 -22.4,1.00,2.160,120.3 -22.4,1.00,1.930,119.5 -22.3,1.00,1.690,98.6 -22.2,1.00,1.290,51.1 -19.7,1.00,6.040,16.0 -19.4,1.00,7.030,30.9 -19.8,1.00,8.670,50.7 -19.9,1.00,10.370,58.4 -19.6,1.00,10.770,64.1 -19.4,1.00,11.240,68.9 -19.3,1.00,11.210,73.8 -19.2,1.00,11.070,73.7 -19.2,1.00,10.440,74.4 -19.4,1.00,9.950,74.8 -19.6,1.00,9.310,75.8 -19.8,1.00,8.880,76.4 -20.1,1.00,8.630,77.1 -20.5,1.00,8.800,81.3 -20.8,1.00,8.680,82.6 -20.9,1.00,8.620,83.9 -21.2,1.00,8.760,89.9 -21.4,1.00,8.740,87.7 -21.6,1.00,8.090,103.6 -21.5,1.00,9.050,96.4 -21.3,1.00,8.920,99.9 -21.4,1.00,8.050,110.6 -21.2,1.00,8.190,105.1 -21.3,1.00,7.450,113.8 -21.3,1.00,7.380,112.8 -21.3,1.00,7.030,117.2 -21.4,1.00,6.490,119.7 -21.4,1.00,6.660,117.5 -21.6,1.00,6.670,120.5 -21.7,1.00,6.370,122.3 -21.8,1.00,6.040,125.0 -22.0,1.00,5.760,133.4 -22.2,1.00,5.630,133.3 -22.4,1.00,5.810,132.0 -22.4,1.00,5.820,136.6 -22.5,1.00,5.160,138.9 -22.6,1.00,5.710,137.7 -22.5,1.00,5.850,134.1 -22.6,1.00,6.350,138.6 -22.6,1.00,6.720,139.1 -22.6,1.00,6.690,138.1 -22.7,1.00,6.680,140.7 -22.6,1.00,4.990,133.6 -22.7,0.99,4.780,131.4 -22.8,0.99,6.180,151.8 -22.9,0.99,7.740,154.2 -22.9,0.99,7.130,151.9 -23.0,0.99,6.910,154.1 -23.1,0.99,4.440,150.6 -23.2,0.99,5.440,142.1 -23.0,0.99,5.010,129.4 -23.3,0.99,7.010,153.5 -21.2,0.99,4.640,63.6 -18.4,0.99,13.550,21.7 -19.0,0.99,10.320,51.6 -19.4,0.99,7.730,67.4 -19.5,0.99,6.860,92.8 -20.5,0.99,5.750,114.9 -20.8,0.99,3.570,147.2 -21.4,0.99,3.490,157.1 -21.7,0.99,1.450,233.5 -21.9,0.99,1.490,237.0 -22.0,0.99,1.420,239.5 -22.0,0.99,0.330,225.4 -21.9,0.99,1.020,121.7 -21.8,0.99,1.180,113.8 -21.9,0.99,1.910,142.2 -21.9,0.99,1.750,114.9 -21.9,0.99,0.880,89.2 -21.9,0.99,1.660,120.6 -22.0,0.99,1.950,134.1 -22.1,0.99,2.050,124.8 -22.4,0.99,1.960,125.2 -22.4,0.99,3.140,123.4 -22.7,0.99,2.820,127.3 -22.7,0.99,3.510,114.4 -22.9,0.99,3.740,113.5 -23.0,0.99,3.650,114.1 -23.0,0.99,4.590,100.2 -23.1,0.99,5.090,104.5 -23.2,0.99,6.090,104.3 -23.4,0.99,6.070,109.2 -23.5,0.99,6.630,114.5 -23.6,0.99,7.040,119.6 -23.9,0.99,7.770,127.2 -24.1,0.99,7.580,135.2 -24.0,0.99,8.230,139.0 -23.8,0.99,7.920,133.0 -23.9,0.99,9.010,136.3 -24.1,0.99,8.860,139.5 -24.1,0.99,9.730,147.6 -24.1,0.99,10.220,148.1 -24.2,0.99,10.610,153.9 -24.2,0.99,10.970,150.1 -24.3,0.99,9.680,157.6 -24.3,0.99,10.210,160.4 -24.1,0.99,9.710,158.7 -24.3,0.99,9.300,155.9 -24.2,0.99,8.810,158.7 -24.3,0.99,8.430,162.8 -24.2,1.00,8.520,153.6 -24.1,1.00,8.000,149.0 -24.2,1.00,7.250,146.9 -24.4,1.00,8.270,151.9 -24.2,0.99,7.000,146.6 -24.6,0.99,7.970,150.3 -24.6,0.99,7.500,151.7 -24.5,0.99,8.510,144.8 -24.4,0.99,9.080,140.8 -24.5,0.99,9.230,143.4 -24.4,0.99,9.290,140.0 -24.3,0.99,9.750,137.9 -24.3,0.99,9.640,138.4 -24.4,0.99,10.240,137.6 -24.4,0.99,10.660,140.7 -24.2,0.99,11.520,143.2 -24.3,0.99,11.190,142.3 -24.2,0.99,11.040,142.5 -24.2,0.99,11.600,147.2 -24.2,0.99,11.520,142.3 -24.1,0.99,11.600,144.6 -24.3,0.99,10.700,143.0 -24.4,0.99,11.460,144.7 -24.5,0.99,11.660,148.4 -24.6,0.99,11.870,143.6 -24.6,0.99,11.670,144.7 -24.6,0.99,10.980,144.0 -24.7,0.99,11.270,147.4 -24.7,0.99,11.820,149.4 -24.8,0.99,11.530,148.4 -24.8,0.99,11.610,148.8 -24.8,0.99,11.790,155.1 -24.8,0.99,13.240,149.5 -24.9,0.99,14.500,150.6 -24.4,0.99,13.090,158.3 -24.5,0.99,16.160,162.8 -24.4,0.99,14.230,161.7 -24.4,0.99,12.720,155.8 -24.9,0.99,13.840,162.1 -24.7,0.99,13.730,170.7 -25.1,0.99,10.980,179.7 -25.1,0.99,11.630,180.4 -25.2,0.99,13.680,183.8 -25.3,0.99,14.600,184.0 -25.1,0.99,14.480,182.7 -25.0,0.99,16.230,188.7 -24.9,0.99,16.800,191.8 -25.4,0.99,14.080,206.6 -25.4,0.99,13.800,213.8 -25.4,0.99,12.710,213.5 -25.4,0.99,10.680,231.1 -25.3,0.99,9.390,235.6 -25.9,0.99,11.520,245.8 -26.0,0.99,10.830,255.9 -25.2,0.99,9.040,241.1 -24.8,0.99,8.440,238.0 -25.1,0.99,8.850,229.7 -25.1,0.99,8.460,227.2 -24.6,0.99,6.800,204.0 -24.8,0.99,7.150,213.6 -24.3,0.99,6.140,240.6 -23.8,0.99,4.570,238.8 -23.7,0.99,3.550,233.3 -23.4,0.99,3.300,250.7 -22.9,0.99,3.240,262.3 -22.3,0.99,3.720,301.4 -21.8,0.99,5.220,318.3 -20.7,0.99,6.010,353.0 -20.0,0.99,5.140,16.2 -20.1,0.99,5.200,34.4 -20.3,0.99,5.480,38.5 -20.2,0.99,5.140,50.1 -20.2,0.99,4.820,53.4 -20.4,0.99,4.750,57.7 -20.4,0.99,4.310,61.4 -20.4,0.99,4.330,77.1 -20.8,0.99,3.540,82.8 -21.4,0.99,2.760,84.6 -21.7,0.99,2.740,98.0 -22.0,0.99,3.270,114.1 -22.1,0.99,3.460,129.6 -22.3,0.99,3.790,138.7 -22.2,0.99,2.790,146.6 -22.1,0.99,2.790,147.8 -22.1,0.99,3.200,158.8 -22.0,0.99,2.710,185.0 -22.0,0.99,2.660,198.6 -22.1,0.99,2.790,215.8 -22.1,0.99,4.410,286.4 -20.9,0.99,9.300,316.0 -20.6,0.99,9.370,309.3 -19.5,0.99,10.580,327.7 -17.7,0.99,11.620,348.9 -18.3,0.99,13.550,356.7 -17.5,0.99,13.120,6.4 -17.0,0.99,14.800,9.6 -16.5,1.00,13.900,13.5 -16.4,1.00,13.080,12.4 -16.5,1.00,12.010,6.7 -17.1,1.00,10.930,1.3 -18.4,1.00,10.800,2.5 -19.1,1.00,11.650,3.2 -19.2,1.00,10.390,0.1 -19.5,1.00,10.440,356.5 -19.4,1.00,10.150,351.7 -19.4,1.00,10.000,351.6 -19.1,1.00,10.110,0.7 -18.4,1.00,9.880,4.9 -18.4,1.00,9.950,11.3 -17.9,1.00,10.660,19.5 -17.4,1.00,10.080,22.0 -17.3,1.00,9.270,28.0 -16.9,1.00,9.470,31.3 -16.5,1.00,9.240,36.9 -16.7,1.00,8.670,40.3 -16.6,1.00,8.450,43.6 -16.6,1.00,8.230,52.4 -16.7,1.00,7.880,54.9 -16.8,1.00,7.530,67.0 -16.9,1.00,7.250,74.8 -16.8,1.00,8.100,73.1 -16.9,1.00,7.230,77.7 -17.1,1.00,7.090,84.2 -17.1,1.00,7.140,85.7 -17.2,1.00,7.290,90.8 -17.5,1.00,6.640,93.2 -17.7,1.00,6.070,101.8 -17.7,1.00,7.290,89.8 -17.8,1.00,7.170,109.5 -17.9,0.99,6.590,105.1 -18.2,0.99,6.450,127.3 -18.2,0.99,6.510,122.9 -18.4,0.99,6.720,119.0 -18.7,0.99,7.660,125.9 -18.9,0.99,6.870,125.7 -19.1,0.99,7.150,124.9 -19.5,0.99,6.720,118.8 -20.1,0.99,7.440,127.5 -20.3,0.99,8.500,121.9 -20.9,0.99,7.910,128.4 -21.2,0.99,8.170,134.6 -21.3,0.99,8.580,126.5 -21.4,0.99,8.990,136.6 -21.5,0.99,8.710,119.7 -21.3,0.99,8.710,115.2 -21.9,0.99,9.070,125.7 -22.1,0.99,9.040,123.9 -21.5,0.99,10.400,101.7 -21.4,0.99,10.840,109.5 -21.6,0.99,11.230,103.2 -22.3,0.99,12.380,115.8 -22.4,0.99,12.900,115.0 -22.6,0.99,14.190,121.1 -22.6,0.99,14.650,115.8 -22.6,0.99,15.680,118.5 -22.7,0.99,15.630,121.0 -22.7,0.99,16.020,121.8 -22.9,0.99,15.460,126.9 -23.1,0.99,15.440,125.1 -23.2,0.99,15.270,129.2 -23.2,0.99,15.190,131.3 -23.2,0.99,13.440,134.3 -23.2,0.99,13.150,132.5 -23.3,0.99,13.020,137.4 -23.4,0.99,12.050,139.0 -23.6,0.99,12.610,141.8 -23.4,0.99,11.930,141.3 -23.5,0.99,11.310,139.8 -23.5,0.99,11.930,138.9 -23.5,0.99,11.870,137.4 -23.6,0.99,11.110,140.1 -23.7,0.99,10.880,140.2 -24.0,0.99,10.150,144.3 -24.1,0.99,9.400,144.4 -23.7,0.99,10.150,136.1 -23.4,0.99,9.050,133.3 -23.4,0.99,9.400,134.0 -23.8,0.99,8.670,138.9 -23.5,0.99,7.340,139.5 -23.6,0.99,8.470,143.4 -23.5,0.99,8.810,138.0 -23.4,0.99,9.200,137.3 -23.3,0.99,8.450,134.1 -23.2,0.99,8.420,143.9 -23.3,0.99,7.610,143.3 -23.3,0.99,8.050,141.8 -23.2,0.99,6.000,135.1 -23.4,0.99,6.840,148.8 -23.4,0.99,7.140,148.8 -23.4,0.99,6.460,151.1 -23.6,0.99,6.640,161.0 -23.5,0.99,5.890,152.3 -23.6,0.99,5.160,167.3 -23.6,0.99,5.030,171.7 -23.6,0.99,2.460,184.2 -23.7,0.99,1.570,234.6 -23.8,0.99,1.290,303.1 -23.8,0.99,1.720,312.1 -24.0,0.99,2.560,6.7 -25.1,0.99,6.070,344.9 -24.9,0.99,6.730,351.3 -23.9,0.99,12.340,348.7 -22.9,0.99,12.480,349.1 -19.5,1.00,12.670,348.9 -18.0,1.00,11.520,355.6 -17.7,1.00,12.090,356.1 -16.9,1.00,12.740,357.1 -16.1,1.00,12.150,356.3 -15.6,1.00,12.940,5.3 -15.1,1.00,13.100,8.4 -14.6,1.00,13.750,11.9 -14.4,1.00,14.180,11.7 -13.9,1.00,14.590,13.8 -13.1,1.00,15.310,16.7 -12.6,1.00,15.340,20.4 -11.9,1.00,14.900,23.6 -11.3,1.00,15.490,23.8 -11.3,1.00,13.380,25.5 -11.6,1.00,12.360,21.1 -12.2,1.00,11.620,17.5 -13.3,1.00,11.420,16.2 -14.8,1.00,11.380,16.2 -15.7,1.00,11.570,14.5 -16.3,1.00,11.520,15.1 -16.7,1.00,11.890,18.1 -16.7,1.00,11.890,17.7 -16.2,1.00,12.580,21.0 -15.3,1.00,13.120,23.8 -14.8,1.00,13.720,30.4 -14.6,1.00,13.790,32.8 -14.4,1.00,13.330,35.3 -14.3,1.00,13.080,37.6 -14.4,1.00,13.110,39.8 -14.3,1.00,12.590,41.6 -14.3,1.00,12.150,43.7 -14.2,1.00,11.630,44.0 -14.3,1.00,12.300,48.2 -14.6,1.00,13.590,52.0 -14.7,1.00,13.350,55.4 -14.8,1.00,12.730,58.4 -15.0,1.00,12.680,61.2 -15.3,1.00,12.570,65.2 -15.4,1.00,12.020,64.0 -15.5,1.00,11.190,64.5 -15.6,1.00,10.360,63.6 -15.9,1.00,9.460,63.0 -16.1,1.00,8.240,63.2 -16.3,1.00,7.230,61.2 -16.6,1.00,6.410,60.0 -17.0,1.00,5.860,66.6 -17.3,1.00,5.780,68.4 -17.5,1.00,5.390,64.0 -17.8,1.00,4.870,66.3 -17.9,1.00,4.830,59.3 -18.0,1.00,4.980,66.7 -18.3,1.00,4.530,93.8 -18.3,1.00,3.890,93.4 -18.5,1.00,4.470,105.2 -18.6,1.00,4.060,121.3 -18.4,1.00,4.310,85.7 -18.6,1.00,3.660,110.9 -19.0,1.00,2.870,109.8 -17.4,1.00,6.260,32.3 -17.3,1.00,7.840,33.1 -17.4,1.00,8.740,38.9 -17.8,1.00,9.080,38.1 -18.1,1.00,8.000,45.0 -19.2,1.00,4.440,75.2 -19.1,1.00,5.180,79.8 -19.0,1.00,7.550,84.2 -18.8,1.00,7.400,83.5 -18.7,1.00,6.910,88.7 -18.8,1.00,6.260,86.4 -19.0,1.00,5.420,88.9 -19.2,1.00,4.800,85.6 -19.2,1.00,4.680,78.9 -19.7,1.00,5.430,83.5 -20.2,1.00,5.890,77.4 -20.1,1.00,5.880,65.8 -19.6,1.00,7.110,55.0 -19.5,1.00,6.580,55.9 -19.1,1.00,6.570,55.0 -18.8,1.00,7.050,48.4 -18.0,1.00,7.720,43.3 -18.0,1.00,7.280,41.1 -17.9,1.00,7.290,40.6 -17.6,1.00,7.290,42.0 -17.0,1.00,7.400,41.6 -17.3,1.00,7.800,45.2 -16.4,1.00,7.350,34.9 -16.4,1.00,7.240,41.1 -16.6,1.00,6.830,40.8 -17.1,1.00,6.280,40.8 -18.3,1.00,6.310,44.3 -19.2,1.00,4.970,44.4 -19.7,1.00,4.330,50.6 -20.1,1.00,3.860,43.5 -20.4,1.00,3.750,48.0 -20.6,1.00,3.960,49.0 -20.6,1.00,4.430,49.6 -19.8,1.00,6.080,17.9 -19.3,1.00,6.690,30.0 -19.3,1.00,7.440,36.6 -19.0,1.00,7.360,41.8 -19.4,1.00,7.270,56.2 -19.4,1.00,7.090,55.8 -19.5,1.00,6.570,58.6 -19.3,1.00,6.470,58.0 -19.0,1.00,6.420,48.9 -18.9,1.00,6.030,54.4 -18.6,1.00,5.940,45.4 -18.3,1.00,6.230,50.2 -18.3,1.00,5.850,45.8 -17.8,1.00,5.680,38.5 -17.6,1.00,5.540,41.7 -17.6,1.00,4.480,33.0 -17.6,1.00,4.040,39.1 -18.9,1.00,3.420,52.0 -19.4,1.00,1.910,38.2 -19.7,1.00,0.940,39.8 -19.9,1.00,0.440,55.0 -20.2,1.00,0.260,76.6 -20.3,1.00,0.320,107.4 -20.2,1.00,1.510,119.4 -20.1,1.00,1.880,87.0 -20.0,1.00,2.450,47.6 -20.0,1.00,3.610,23.7 -19.4,1.00,4.460,12.5 -19.1,1.00,6.610,24.2 -18.8,1.00,7.080,31.1 -18.8,1.00,6.610,36.8 -18.1,1.00,6.810,29.1 -17.5,1.00,6.720,24.4 -17.5,1.00,7.490,23.5 -16.5,1.00,8.810,19.2 -16.1,1.00,9.600,17.5 -15.6,1.00,10.180,20.6 -15.6,1.00,10.620,21.2 -16.2,1.00,10.450,18.7 -17.3,1.00,9.640,15.8 -18.6,1.00,12.000,20.4 -19.3,1.00,12.930,20.9 -19.1,1.00,13.940,16.6 -18.3,1.00,14.320,16.4 -17.6,1.00,14.520,15.2 -16.7,1.00,15.440,20.5 -15.7,1.00,15.360,16.4 -14.3,1.01,15.730,21.5 -13.1,1.01,17.860,27.3 -11.8,1.01,18.220,28.7 -10.4,1.01,19.110,30.1 -9.3,1.01,19.450,30.9 -8.2,1.01,17.240,32.3 -7.2,1.01,17.210,34.9 -6.6,1.01,16.250,34.7 -6.4,1.01,15.920,36.6 -6.2,1.01,15.430,35.8 -6.1,1.01,15.240,37.1 -6.0,1.01,15.010,37.2 -5.7,1.01,14.590,35.3 -5.5,1.01,13.900,35.9 -5.7,1.01,13.710,35.8 -5.8,1.01,12.360,33.8 -6.2,1.01,11.670,30.4 -7.1,1.01,10.360,27.5 -8.4,1.01,9.500,27.6 -9.6,1.01,8.820,26.8 -10.5,1.01,8.160,26.1 -11.1,1.01,7.770,25.0 -11.5,1.01,7.530,24.4 -11.5,1.01,8.190,23.0 -10.8,1.01,9.040,24.6 -10.6,1.01,9.210,30.3 -10.7,1.00,8.940,34.0 -11.5,1.00,8.690,42.6 -11.7,1.00,7.710,52.2 -12.2,1.00,7.620,56.2 -12.7,1.00,6.610,70.2 -13.2,1.00,6.430,67.5 -12.8,1.00,6.030,53.8 -13.6,1.00,5.700,71.8 -13.9,1.00,6.190,73.1 -14.0,1.00,5.340,78.9 -14.3,1.00,5.780,71.0 -14.3,1.00,5.680,63.0 -14.7,1.00,5.860,76.6 -14.9,1.00,6.250,74.9 -15.0,1.00,6.540,73.8 -15.1,1.00,6.670,74.8 -15.3,1.00,7.170,73.5 -15.7,1.00,6.690,84.0 -16.0,1.00,6.490,83.9 -16.3,1.00,7.000,92.0 -16.7,1.00,6.720,103.4 -16.8,1.00,6.980,100.0 -17.2,1.00,6.760,94.3 -17.5,0.99,7.260,101.1 -17.6,0.99,6.290,104.6 -18.6,0.99,7.540,116.9 -18.7,0.99,7.060,116.9 -19.0,0.99,6.340,115.0 -19.0,0.99,6.110,93.2 -18.9,0.99,5.600,75.3 -19.1,0.99,4.170,64.0 -18.0,0.99,6.290,59.2 -18.0,0.99,5.980,58.9 -17.9,0.99,6.220,55.8 -18.6,0.99,5.770,64.4 -19.0,0.99,5.220,72.0 -19.4,0.99,5.410,74.8 -19.2,0.99,6.210,79.5 -19.5,0.99,6.320,86.9 -19.6,0.99,6.390,90.0 -19.9,0.99,6.250,99.8 -20.1,0.99,6.200,109.2 -20.3,0.99,6.520,113.8 -20.3,0.99,7.050,117.9 -20.2,0.99,7.150,130.8 -20.4,0.99,8.650,125.9 -20.5,0.99,8.320,131.2 -20.6,0.99,8.990,130.1 -20.8,0.99,9.110,134.5 -20.8,0.99,8.870,137.9 -20.9,0.99,8.910,141.3 -21.3,0.99,7.950,148.7 -21.4,0.99,8.560,150.7 -21.7,0.99,8.200,149.5 -22.0,0.99,8.580,146.9 -21.9,0.99,9.060,156.2 -22.1,0.99,10.460,156.9 -22.1,0.99,10.620,157.7 -22.0,0.99,10.100,151.9 -22.2,0.99,10.820,150.8 -22.3,0.99,9.720,148.8 -22.3,0.99,10.260,146.5 -22.1,0.99,10.050,143.5 -22.3,0.99,10.080,145.6 -22.4,0.99,10.330,147.0 -22.5,0.99,10.150,150.1 -22.5,0.99,9.450,149.6 -22.5,0.99,9.520,151.0 -22.5,0.99,9.630,152.7 -22.7,0.99,10.500,152.0 -22.9,0.99,11.910,153.0 -22.8,0.99,12.140,154.1 -23.1,0.99,12.240,161.1 -23.1,0.99,11.830,165.4 -23.3,0.99,11.860,171.8 -23.3,0.99,11.680,170.4 -23.3,0.99,11.060,172.2 -23.4,0.99,11.620,176.9 -23.6,0.99,11.360,183.6 -23.6,0.99,11.700,181.8 -23.6,0.99,11.000,185.9 -23.7,0.99,11.840,187.5 -23.4,0.99,10.460,187.9 -23.4,0.99,9.000,192.0 -23.3,0.99,8.820,190.5 -23.3,0.99,8.110,196.6 -23.5,0.99,7.690,205.3 -23.6,0.99,7.340,206.1 -23.7,0.99,8.710,204.6 -23.6,0.99,8.020,202.2 -23.4,0.99,7.230,204.5 -23.5,0.99,7.360,207.7 -24.0,0.99,7.410,219.7 -23.6,0.99,4.710,209.2 -23.9,0.99,4.850,215.0 -23.9,0.99,4.250,217.3 -24.4,0.99,4.290,219.3 -23.8,0.99,3.580,216.2 -23.2,0.99,4.670,188.6 -23.3,0.99,3.210,202.2 -23.0,0.99,3.210,195.4 -23.0,0.99,2.560,210.3 -22.9,0.99,1.940,258.6 -23.6,0.99,3.910,273.6 -22.7,0.99,3.040,299.6 -22.3,0.99,3.070,334.8 -22.3,0.99,4.120,358.3 -22.1,0.99,5.660,1.8 -21.8,0.99,6.640,358.0 -20.4,0.99,10.600,35.5 -19.7,0.99,10.720,46.0 -19.5,0.99,10.280,51.8 -20.1,0.99,10.310,59.3 -20.7,0.99,10.560,61.9 -21.2,0.99,11.510,62.6 -20.8,0.99,10.220,48.2 -20.6,0.99,10.910,49.7 -20.4,0.99,11.900,52.8 -20.4,0.99,12.160,54.7 -20.8,0.99,12.620,57.7 -20.7,0.99,12.500,56.2 -20.3,0.99,13.050,61.5 -19.7,0.99,12.990,62.3 -19.3,0.99,12.930,64.9 -19.0,0.99,13.510,64.8 -18.7,0.99,13.270,67.6 -18.5,0.99,13.540,73.0 -18.4,0.99,13.230,72.7 -18.2,0.99,14.870,73.0 -18.0,0.99,14.030,73.9 -17.5,0.99,13.330,69.6 -17.3,0.99,13.480,70.5 -17.4,0.99,12.950,75.6 -16.9,0.99,12.700,76.4 -16.9,0.99,11.970,82.1 -17.0,0.99,10.620,78.9 -16.9,0.99,11.100,77.0 -16.9,0.99,9.680,73.9 -16.9,0.99,10.270,70.5 -17.2,0.99,9.170,72.6 -17.4,0.99,9.160,73.0 -17.7,0.99,9.730,70.4 -17.9,0.99,9.950,76.0 -18.1,0.99,10.280,80.2 -18.1,0.99,10.180,85.2 -18.0,0.99,10.270,86.2 -17.9,0.99,10.460,87.7 -18.0,0.99,10.420,90.3 -18.2,0.99,9.670,92.9 -18.3,0.99,9.190,99.4 -18.5,0.99,9.160,105.1 -18.6,0.99,8.990,106.1 -18.6,0.99,8.720,105.0 -18.7,0.99,8.530,106.9 -18.8,0.99,8.510,107.7 -19.0,0.99,8.330,112.6 -19.2,0.99,8.660,113.3 -19.4,0.99,8.890,113.2 -19.5,0.99,9.100,109.5 -19.7,0.99,9.130,112.0 -19.9,0.99,8.890,110.6 -20.1,0.99,8.970,109.9 -20.3,0.99,9.710,107.7 -20.4,0.99,10.280,110.7 -20.5,0.99,10.620,111.4 -20.6,0.99,10.880,114.4 -20.8,0.99,10.740,118.9 -21.1,0.99,11.730,114.4 -21.2,0.99,11.480,118.9 -21.3,0.99,11.790,122.6 -21.4,0.99,11.380,128.1 -21.5,0.99,11.520,130.0 -21.7,0.99,11.470,129.3 -21.7,0.99,11.740,131.7 -21.9,0.99,11.440,133.3 -21.9,0.99,11.230,138.9 -21.9,0.99,10.570,136.6 -22.0,0.99,10.830,128.2 -22.2,0.99,11.620,143.8 -22.2,0.99,10.910,136.6 -22.2,0.99,11.140,139.6 -22.1,0.99,10.900,139.4 -22.2,0.99,10.400,136.4 -22.2,0.99,10.430,139.5 -22.2,0.99,9.300,136.0 -22.2,0.99,9.100,137.1 -22.3,0.99,8.610,138.5 -22.2,0.99,7.550,127.1 -22.1,0.99,8.030,118.5 -22.3,0.99,8.980,122.9 -22.2,0.99,8.500,133.4 -21.9,0.99,8.480,134.1 -22.1,0.99,8.800,128.0 -22.4,0.99,8.230,127.9 -22.4,0.99,8.380,129.0 -22.4,0.99,8.350,135.3 -22.3,0.99,8.290,132.3 -22.4,0.99,7.780,118.9 -22.0,0.99,9.150,125.9 -21.9,0.99,8.380,141.2 -22.2,1.00,7.620,119.5 -22.0,1.00,7.300,115.3 -21.8,1.00,7.300,115.6 -21.6,1.00,7.510,121.6 -21.9,1.00,5.650,114.6 -21.6,1.00,5.510,84.4 -21.4,1.00,6.710,55.7 -20.5,1.00,9.490,41.3 -20.7,1.00,9.230,44.2 -20.2,1.00,7.430,9.6 -17.6,1.00,9.250,343.1 -16.3,1.00,10.940,337.4 -15.4,1.00,11.480,342.4 -14.6,1.00,11.270,345.6 -13.5,1.00,12.480,349.6 -12.9,1.00,12.620,353.1 -12.5,1.00,12.350,349.6 -12.1,1.00,12.030,349.4 -11.7,1.00,12.310,349.9 -11.4,1.00,12.570,351.6 -10.7,1.00,12.550,351.7 -10.3,1.00,11.540,350.8 -10.2,1.00,12.730,350.5 -10.1,1.00,12.810,353.3 -10.2,1.00,12.360,358.3 -10.1,1.00,12.580,356.9 -10.1,1.00,13.270,357.5 -10.2,1.00,12.000,4.9 -10.2,1.00,11.870,2.3 -9.9,1.00,12.120,5.2 -9.8,1.00,13.570,5.0 -9.8,1.00,12.650,8.3 -9.6,1.00,13.600,7.3 -9.6,1.00,13.870,8.6 -9.5,1.00,14.010,14.5 -9.2,1.00,14.420,16.1 -9.1,1.00,15.050,19.2 -9.0,1.00,13.950,19.4 -8.9,1.00,14.380,22.0 -8.7,1.00,14.850,26.4 -8.8,1.00,14.710,29.1 -8.8,1.00,14.600,29.6 -8.7,1.00,13.580,30.3 -8.9,1.00,15.370,36.0 -8.9,1.00,14.820,37.1 -9.0,1.00,14.920,39.1 -9.2,1.00,15.120,41.0 -9.0,1.00,14.850,40.9 -8.8,1.00,14.990,41.3 -8.8,1.00,15.570,43.3 -8.7,1.00,16.150,45.8 -8.2,1.00,15.960,46.2 -7.7,1.00,15.990,44.8 -6.9,1.00,13.660,37.9 -6.4,1.00,12.540,35.0 -5.9,1.00,11.800,29.6 -6.2,1.00,10.900,27.1 -6.3,1.00,9.780,23.3 -6.5,1.00,9.750,18.1 -7.1,1.00,9.350,18.4 -8.0,1.00,9.480,20.7 -7.9,1.00,9.880,22.8 -8.0,1.00,10.300,22.5 -8.2,1.00,10.640,29.7 -8.5,1.00,11.040,35.8 -8.8,1.00,11.110,42.8 -9.3,1.00,10.470,53.5 -9.3,1.00,10.210,53.2 -9.2,1.00,10.500,51.8 -9.3,1.00,10.080,46.4 -8.9,1.00,10.720,47.5 -8.9,1.00,10.170,46.8 -8.6,1.00,11.160,46.0 -7.6,1.00,10.930,37.6 -7.6,1.00,10.330,37.5 -6.7,1.00,10.110,19.1 -5.9,1.00,12.240,21.2 -6.3,1.00,10.920,14.9 -5.9,0.99,11.900,18.1 -5.5,0.99,12.660,11.3 -6.3,0.99,12.300,18.8 -5.7,0.99,12.900,8.1 -5.7,0.99,13.030,357.1 -5.4,0.99,12.940,354.7 -6.2,0.99,12.160,1.2 -6.0,0.99,13.360,358.6 -6.3,0.99,12.710,342.6 -6.4,0.99,12.670,356.0 -6.2,0.99,12.680,1.1 -6.1,0.99,13.170,0.1 -6.0,0.99,13.180,356.9 -6.0,0.99,13.300,354.7 -5.8,0.99,13.780,350.3 -5.6,0.99,11.800,337.9 -5.6,0.99,14.540,342.3 -5.6,0.99,15.190,341.9 -5.4,0.99,13.480,342.5 -5.3,0.99,12.760,340.3 -4.9,0.99,14.330,339.7 -4.7,0.99,13.510,337.3 -4.6,0.99,13.330,335.6 -4.6,0.99,13.640,331.6 -4.7,0.99,13.520,331.6 -4.7,0.99,13.830,326.0 -4.8,0.99,14.310,325.9 -4.8,0.99,14.630,322.6 -4.9,0.99,14.540,324.5 -4.8,1.00,14.400,324.6 -4.9,1.00,15.150,325.7 -5.0,1.00,15.230,326.6 -5.0,1.00,15.800,332.7 -5.2,1.00,16.380,336.7 -5.9,1.00,15.760,342.6 -6.2,1.00,15.640,342.0 -6.4,1.00,16.460,349.6 -6.3,1.00,17.520,356.1 -5.9,1.00,16.960,359.3 -5.4,1.00,15.850,2.1 -5.0,1.00,14.350,6.5 -4.6,1.00,14.020,9.2 -4.3,1.00,13.970,12.5 -4.0,1.00,13.940,13.2 -3.4,1.00,13.500,13.5 -3.1,1.00,12.910,15.9 -2.9,1.00,11.950,14.2 -3.2,1.00,10.300,10.1 -3.6,1.00,10.250,2.4 -3.9,1.00,8.440,352.2 -5.0,1.00,8.290,348.8 -5.6,1.00,8.270,344.7 -6.4,1.00,7.830,343.3 -6.8,1.00,8.050,345.1 -7.2,1.00,8.480,346.8 -7.4,1.00,7.690,358.1 -6.9,1.00,7.430,4.3 -6.6,1.00,7.370,8.2 -6.6,1.00,7.820,9.6 -6.7,1.00,7.770,18.9 -6.9,1.00,7.000,23.0 -7.3,1.00,6.770,30.3 -7.5,1.00,6.580,32.7 -7.8,1.00,6.770,33.8 -8.4,1.00,6.190,47.5 -8.9,1.00,5.540,50.3 -9.3,1.00,5.500,55.9 -9.8,1.00,5.180,69.0 -10.2,1.00,5.080,67.9 -10.4,1.00,5.050,72.3 -10.6,1.00,5.240,67.9 -10.9,1.00,5.270,63.5 -11.1,1.00,5.320,66.8 -11.2,1.00,5.560,67.6 -11.4,1.00,5.630,68.3 -11.3,1.00,6.320,65.9 -11.3,1.00,6.920,68.9 -11.3,1.00,6.680,60.0 -11.4,1.00,5.880,53.7 -11.6,1.00,5.120,48.8 -11.5,1.00,5.530,52.9 -11.5,1.00,6.630,53.8 -11.3,1.01,6.790,46.0 -11.1,1.01,6.860,44.1 -11.2,1.01,6.800,46.1 -11.4,1.01,6.570,44.7 -11.6,1.01,6.520,48.5 -11.6,1.01,6.470,47.4 -11.7,1.01,6.320,49.0 -11.7,1.01,6.590,49.5 -11.7,1.01,6.910,55.0 -11.8,1.01,6.700,54.1 -11.7,1.01,7.230,54.7 -11.6,1.01,7.440,53.6 -11.6,1.01,7.110,49.4 -11.5,1.01,7.420,49.1 -11.3,1.01,7.450,49.8 -11.3,1.01,7.320,49.0 -11.8,1.01,6.710,53.0 -12.0,1.01,6.500,49.6 -12.5,1.01,6.420,51.7 -12.7,1.00,6.600,61.8 -13.0,1.00,6.690,61.6 -13.4,1.00,6.420,63.9 -13.3,1.00,6.800,72.9 -13.6,1.00,6.110,74.3 -13.8,1.00,6.090,80.6 -14.2,1.00,5.360,87.6 -14.4,1.00,4.910,93.9 -14.6,1.00,4.700,94.9 -14.9,1.00,5.380,110.8 -15.1,1.00,5.420,107.4 -15.2,1.00,4.870,106.9 -15.5,1.00,4.440,110.9 -15.7,1.00,3.730,114.0 -15.6,1.00,4.010,102.0 -15.7,1.00,4.090,90.6 -15.8,1.00,3.560,86.0 -15.8,1.00,3.410,81.6 -15.9,1.00,4.410,79.9 -16.0,1.00,4.380,83.1 -15.9,1.00,4.870,86.3 -16.2,1.00,4.910,92.6 -16.3,1.00,4.910,90.6 -16.4,1.00,5.540,98.7 -16.4,1.00,5.390,104.1 -16.4,1.00,5.850,107.9 -16.6,1.00,5.450,114.4 -16.8,1.00,5.540,124.4 -16.6,1.00,5.980,130.0 -16.6,1.00,6.120,136.1 -16.8,1.00,6.230,139.6 -16.9,1.00,5.620,142.6 -17.0,1.00,5.430,147.6 -17.1,1.00,5.450,149.2 -17.2,1.00,4.800,154.5 -17.3,1.00,4.550,147.9 -17.4,1.00,4.300,149.0 -17.4,1.00,4.190,137.7 -17.3,1.00,4.550,123.9 -17.4,1.00,4.700,121.8 -17.3,1.00,5.170,116.8 -17.3,1.00,5.860,115.1 -17.7,1.00,5.510,119.8 -17.5,1.00,6.120,116.7 -17.6,1.00,6.610,119.2 -17.8,1.00,5.700,134.0 -17.9,1.00,6.060,136.1 -18.0,0.99,5.830,146.7 -18.1,0.99,6.500,147.7 -18.2,0.99,6.830,151.4 -18.2,0.99,7.100,161.4 -18.3,0.99,7.720,163.4 -18.5,0.99,8.760,168.4 -18.9,0.99,9.270,173.6 -19.2,0.99,8.920,179.5 -19.5,0.99,9.800,187.9 -19.5,0.99,9.440,195.3 -19.7,0.99,8.680,204.1 -19.8,0.99,8.110,217.8 -19.8,0.99,9.050,224.1 -20.0,0.99,8.930,228.7 -20.0,0.99,9.400,225.0 -19.5,0.99,8.850,233.3 -19.2,0.99,7.980,241.8 -18.7,0.99,7.010,249.9 -18.1,0.99,7.370,251.1 -17.6,0.99,9.190,248.7 -18.0,0.99,8.320,257.1 -18.0,0.99,6.570,253.9 -18.6,0.99,5.040,239.6 -19.9,0.98,7.420,241.1 -20.3,0.98,9.930,236.6 -20.1,0.98,9.570,231.7 -19.7,0.98,8.680,228.1 -19.7,0.98,8.600,223.0 -19.6,0.98,8.700,225.9 -19.5,0.98,8.160,225.6 -19.4,0.98,8.890,226.5 -19.4,0.98,8.200,217.8 -19.4,0.98,8.280,219.5 -19.4,0.98,8.910,220.9 -19.4,0.98,9.210,223.7 -19.6,0.98,9.690,217.1 -20.3,0.98,12.970,229.7 -20.4,0.98,11.460,218.7 -20.2,0.98,9.950,211.8 -20.5,0.98,10.470,221.0 -20.1,0.98,10.540,215.2 -20.1,0.98,9.820,216.6 -20.3,0.98,9.450,215.7 -20.4,0.98,9.910,215.3 -20.9,0.98,11.250,212.3 -20.9,0.98,10.480,213.9 -21.0,0.98,9.480,211.5 -21.2,0.98,9.890,212.8 -21.2,0.98,9.610,208.9 -21.2,0.98,9.900,208.7 -21.4,0.98,9.760,211.7 -21.2,0.98,10.140,209.0 -21.2,0.98,10.080,205.0 -21.3,0.98,11.260,205.0 -21.6,0.98,11.440,200.8 -21.4,0.98,10.630,198.8 -21.6,0.98,11.380,197.4 -21.9,0.98,12.240,201.8 -21.8,0.98,11.400,194.1 -21.9,0.98,11.220,195.8 -21.8,0.98,10.920,194.3 -22.0,0.98,11.370,192.1 -22.1,0.98,11.290,191.1 -22.2,0.98,11.260,191.5 -22.0,0.98,10.200,189.7 -21.9,0.98,9.780,190.1 -22.2,0.98,9.630,190.8 -22.5,0.98,10.590,191.2 -22.6,0.98,10.550,185.3 -22.4,0.98,9.960,182.0 -22.3,0.98,10.030,173.9 -22.1,0.98,9.930,170.1 -22.5,0.98,10.530,175.4 -21.7,0.98,10.480,163.3 -22.1,0.98,11.450,168.7 -22.2,0.98,11.360,170.9 -21.9,0.98,11.550,172.8 -21.4,0.99,10.190,168.9 -21.0,0.99,10.690,176.0 -21.2,0.99,10.910,170.8 -22.1,0.99,11.980,174.4 -22.2,0.99,11.830,173.5 -22.1,0.99,11.860,173.5 -22.1,0.99,11.480,173.3 -22.7,0.99,11.830,177.0 -22.9,0.99,11.580,178.7 -23.0,0.99,11.400,178.1 -22.9,0.99,11.310,179.0 -22.7,0.99,10.160,174.9 -22.5,0.99,9.660,175.8 -22.4,0.99,8.320,166.8 -22.1,0.99,8.340,166.6 -21.5,0.99,7.670,159.3 -21.9,0.99,8.090,163.2 -22.3,0.99,8.870,165.9 -23.4,0.99,9.180,170.0 -22.4,0.99,8.630,166.7 -23.2,0.99,8.100,178.6 -22.1,0.99,7.660,172.4 -22.7,0.99,9.490,170.9 -16.1,0.99,7.720,342.0 -14.3,0.99,9.620,346.6 -13.5,0.99,10.020,357.9 -12.8,0.99,9.570,359.7 -12.5,0.99,9.610,4.8 -12.0,0.99,9.780,1.5 -10.8,0.99,8.720,353.5 -10.1,0.99,8.950,0.2 -9.8,0.99,9.540,353.7 -9.2,0.99,9.630,359.0 -8.5,0.99,10.080,1.1 -8.2,0.99,10.910,350.8 -7.7,0.99,11.130,352.4 -7.5,0.99,10.530,341.2 -7.1,0.99,12.050,342.1 -6.9,0.99,12.750,342.2 -6.7,0.99,12.640,346.0 -6.4,0.99,13.170,342.9 -6.3,1.00,12.790,346.4 -6.3,1.00,12.730,348.7 -6.2,1.00,12.540,349.3 -6.0,1.00,13.380,354.7 -5.8,1.00,13.410,359.5 -5.6,1.00,13.270,358.0 -5.1,1.00,13.370,358.4 -4.9,1.00,14.470,1.1 -4.7,1.00,16.410,2.1 -4.6,1.00,15.220,2.3 -4.5,1.00,12.960,3.4 -4.0,1.00,13.730,6.9 -3.4,1.00,14.410,9.6 -2.9,1.00,15.320,7.8 -2.7,1.00,15.390,11.0 -2.5,1.00,14.160,12.2 -2.4,1.00,15.540,12.8 -2.2,1.00,12.890,19.1 -2.1,1.00,11.340,21.8 -2.0,1.00,11.560,14.7 -1.7,1.00,12.100,14.2 -1.8,1.00,11.610,13.7 -1.9,1.00,10.550,8.0 -2.1,1.00,10.500,8.3 -2.8,1.00,9.660,8.6 -3.4,1.00,9.160,7.6 -3.5,1.00,9.170,7.9 -3.6,1.00,8.830,4.1 -3.9,1.00,8.530,6.8 -4.0,1.00,8.560,9.6 -3.9,1.00,8.470,11.2 -4.1,1.00,7.880,12.0 -4.2,1.00,7.610,9.8 -4.5,1.00,7.480,7.9 -4.5,1.00,7.580,5.2 -4.6,1.00,7.410,7.5 -4.5,1.00,7.360,6.1 -4.4,1.00,7.340,5.7 -4.4,1.00,7.740,3.6 -4.6,1.00,7.370,4.7 -5.0,1.00,6.930,7.5 -5.2,1.00,6.900,12.0 -5.5,1.00,7.110,7.1 -5.5,1.00,6.920,6.1 -5.5,1.00,7.330,6.0 -5.9,1.00,7.160,355.4 -5.7,1.00,6.360,1.3 -6.3,0.99,6.060,3.9 -6.9,0.99,7.010,0.2 -7.2,0.99,6.770,355.9 -7.4,0.99,6.740,0.6 -7.6,0.99,6.380,359.7 -7.8,0.99,6.220,4.7 -7.9,0.99,6.020,10.4 -7.9,0.99,6.380,13.2 -8.3,0.99,6.350,11.0 -8.6,0.99,6.670,16.0 -9.1,0.99,6.180,13.8 -9.0,0.99,6.330,14.2 -9.4,0.99,6.350,20.6 -9.1,0.99,6.940,21.2 -9.5,0.99,7.310,27.1 -10.1,0.99,7.360,29.8 -10.2,0.99,6.570,35.0 -10.0,0.99,6.950,35.0 -9.8,0.99,6.780,30.6 -10.0,0.99,7.090,31.6 -9.8,0.99,7.570,35.8 -9.3,0.99,9.360,29.3 -9.4,0.99,8.600,39.1 -9.6,0.99,7.970,29.7 -9.5,0.99,8.270,30.5 -9.3,0.99,8.200,28.2 -9.3,0.99,9.000,30.9 -8.9,0.99,8.910,18.7 -8.6,0.99,9.020,20.6 -8.2,0.99,9.680,15.4 -7.6,0.99,9.900,6.9 -6.9,0.99,11.540,1.8 -6.7,1.00,10.910,0.6 -6.4,1.00,11.760,358.7 -6.2,1.00,12.460,355.1 -5.8,1.00,13.060,354.2 -5.5,1.00,13.920,353.5 -5.0,1.00,14.280,356.5 -4.9,1.00,13.830,354.8 -4.8,1.00,14.450,354.4 -4.7,1.00,14.940,354.7 -3.9,1.00,14.900,359.1 -3.4,1.00,13.940,4.5 -2.8,1.00,13.100,10.0 -2.4,1.00,13.320,14.9 -2.3,1.00,12.670,17.9 -2.6,1.00,10.970,15.4 -3.1,1.00,9.650,11.6 -3.8,1.00,9.500,7.9 -5.1,1.00,9.050,9.2 -6.2,1.00,8.520,8.5 -6.9,1.00,8.570,8.3 -7.5,1.00,7.990,14.5 -7.8,1.00,7.720,14.5 -7.8,1.00,7.890,18.0 -7.3,1.00,8.050,23.4 -7.2,1.00,8.200,28.3 -7.1,1.00,7.940,29.1 -7.5,1.00,7.460,33.7 -7.7,1.00,7.020,31.1 -8.0,1.00,7.300,32.6 -7.3,1.00,7.770,25.7 -7.3,1.00,7.970,24.9 -7.3,1.00,8.290,24.3 -7.2,1.00,7.990,26.4 -7.3,1.00,7.800,27.7 -7.6,1.00,7.360,33.1 -8.1,1.00,6.970,39.4 -8.5,1.00,6.310,34.7 -8.2,1.00,6.860,30.1 -8.2,1.00,5.910,25.8 -8.4,1.00,5.590,25.7 -8.3,1.00,6.110,22.0 -8.9,1.00,4.770,8.3 -9.6,1.00,5.160,4.4 -10.0,1.00,6.140,6.8 -10.1,1.00,6.820,11.2 -10.1,1.00,7.800,13.6 -10.3,1.00,8.240,16.9 -10.6,1.00,8.350,21.3 -10.5,1.01,9.420,20.4 -9.9,1.01,10.620,21.9 -9.5,1.01,11.300,25.6 -9.2,1.01,11.170,30.5 -9.0,1.01,11.150,33.2 -8.4,1.01,11.180,31.3 -8.2,1.01,11.150,35.8 -7.9,1.01,11.420,34.8 -7.6,1.01,10.980,35.5 -7.0,1.01,12.140,35.5 -6.9,1.01,11.130,35.9 -6.8,1.01,10.860,38.9 -6.9,1.01,10.350,39.7 -6.3,1.01,10.240,38.8 -7.1,1.01,9.860,41.5 -6.5,1.01,8.760,31.4 -7.1,1.01,7.940,26.6 -8.5,1.01,7.210,27.5 -9.7,1.01,6.590,25.9 -10.5,1.00,6.280,29.0 -11.1,1.00,5.680,33.8 -11.6,1.00,6.190,32.7 -11.7,1.00,6.400,35.6 -11.2,1.00,7.410,31.9 -10.6,1.00,7.530,34.1 -11.1,1.00,6.900,46.2 -11.6,1.00,6.840,68.8 -12.0,1.00,6.790,80.8 -12.2,1.00,6.740,89.7 -12.5,1.00,6.060,91.3 -13.0,1.00,5.790,103.0 -13.6,1.00,6.240,116.5 -13.7,1.00,5.650,106.5 -14.3,1.00,6.180,124.2 -14.5,1.00,6.030,116.1 -15.0,1.00,6.130,123.1 -15.2,1.00,6.860,119.5 -15.7,1.00,7.050,120.3 -15.9,1.00,7.390,113.4 -16.4,0.99,8.000,115.6 -17.1,0.99,8.560,127.8 -17.6,0.99,9.570,130.6 -17.9,0.99,9.950,131.9 -18.4,0.99,10.770,141.1 -18.7,0.99,12.830,146.4 -19.0,0.99,11.560,149.5 -19.8,0.99,11.370,158.5 -19.7,0.99,13.200,175.0 -19.8,0.99,13.010,179.3 -20.3,0.99,12.420,189.1 -20.8,0.99,12.280,206.7 -19.1,0.99,10.100,246.4 -17.9,0.99,9.350,257.9 -16.7,0.99,8.730,270.4 -16.1,0.99,7.930,272.1 -15.9,0.99,7.550,290.3 -14.9,0.99,5.910,298.7 -14.9,0.99,5.730,292.3 -15.5,0.99,7.280,285.4 -14.6,0.99,6.150,283.2 -13.7,0.99,6.550,287.8 -12.8,0.99,6.460,307.8 -12.9,0.99,7.650,318.8 -13.2,0.99,8.350,317.9 -13.2,0.99,7.720,319.4 -13.8,0.99,10.550,320.1 -13.5,0.99,12.900,327.0 -10.9,0.99,15.910,331.0 -10.0,0.99,15.560,339.4 -10.4,0.99,15.300,340.0 -10.2,0.99,15.170,345.0 -8.9,1.00,14.810,340.0 -7.7,1.00,15.940,345.9 -6.3,1.00,17.930,352.5 -6.1,1.00,14.120,356.2 -5.6,1.00,13.530,356.6 -5.0,1.00,15.220,1.5 -4.3,1.00,13.710,5.0 -4.0,1.00,13.400,7.0 -3.9,1.00,13.120,6.9 -3.7,1.00,12.440,6.2 -3.6,1.00,11.770,6.7 -3.6,1.00,11.290,7.7 -3.5,1.00,10.590,8.1 -3.5,1.00,9.860,8.7 -3.7,1.00,8.830,7.9 -4.1,1.00,7.150,6.0 -4.5,1.00,6.440,352.7 -5.2,1.00,6.000,347.2 -6.6,1.00,5.600,344.6 -7.9,1.00,6.160,343.1 -8.8,1.00,6.570,339.7 -9.5,1.00,6.520,339.7 -10.0,1.00,6.150,342.6 -10.3,1.00,6.070,344.8 -10.2,1.00,5.350,348.1 -10.1,1.00,5.050,350.3 -9.9,1.00,4.060,356.1 -10.0,1.00,3.870,358.5 -10.0,1.00,3.550,359.4 -10.0,1.00,3.210,0.8 -9.4,1.00,2.780,355.4 -9.0,1.00,2.350,356.9 -8.9,1.00,2.130,345.7 -9.0,1.00,1.920,349.9 -9.2,1.00,1.560,354.2 -9.3,1.00,1.570,352.9 -9.5,1.00,1.630,357.9 -9.6,1.00,1.240,22.2 -9.7,1.00,1.100,27.7 -10.0,1.00,0.580,25.8 -10.4,1.00,0.800,6.1 -10.7,1.00,0.380,28.7 -11.1,1.00,0.250,337.5 -11.7,1.00,0.620,231.5 -12.1,1.00,0.850,190.4 -12.4,1.00,1.050,195.7 -12.7,1.00,1.670,186.6 -13.0,1.00,2.210,183.5 -13.0,1.00,2.400,186.1 -12.9,1.00,2.580,185.4 -13.0,1.00,2.450,194.7 -13.0,1.00,2.420,191.7 -13.1,1.00,2.440,194.0 -13.1,1.00,2.580,191.7 -13.3,1.00,2.680,179.9 -13.0,1.00,1.270,217.8 -12.9,1.00,1.800,249.2 -12.8,1.00,2.840,264.1 -12.6,1.00,3.920,269.2 -12.3,1.00,4.490,271.3 -12.6,1.00,4.000,278.7 -12.7,1.00,3.280,291.8 -12.8,1.00,2.990,297.9 -13.3,1.00,3.110,298.9 -13.5,1.00,3.030,304.8 -13.8,1.00,2.070,287.6 -13.6,1.00,1.710,295.5 -14.0,1.00,1.220,297.0 -14.4,1.00,0.820,2.8 -14.8,1.00,0.330,321.4 -15.1,1.00,0.220,293.8 -15.3,1.00,0.470,339.2 -15.3,1.00,0.370,37.0 -15.4,1.00,0.430,324.9 -15.1,1.00,0.320,147.0 -15.0,1.00,0.790,159.2 -14.8,1.00,1.290,190.6 -14.8,1.00,1.450,205.5 -14.7,1.00,1.470,202.4 -14.7,1.00,2.040,198.8 -14.6,1.00,1.870,206.2 -14.6,1.00,1.710,208.4 -14.2,1.00,1.210,189.2 -14.0,1.00,0.860,167.9 -14.0,1.00,0.660,180.2 -14.0,1.00,0.830,117.0 -14.3,1.00,1.480,111.4 -14.5,1.00,2.320,107.2 -14.8,1.00,2.850,98.9 -15.0,1.00,3.320,97.2 -15.1,1.00,3.550,99.2 -15.7,1.00,4.220,122.2 -15.9,1.00,4.860,125.8 -16.0,1.00,5.600,127.2 -16.1,1.00,6.560,134.3 -16.4,1.00,7.950,140.6 -16.4,1.00,8.250,142.2 -16.6,1.00,8.670,146.0 -16.7,1.00,9.330,145.3 -17.1,1.00,9.860,151.1 -17.4,1.00,10.980,151.2 -17.6,1.00,11.090,157.7 -17.7,1.00,10.560,161.6 -17.9,1.00,9.870,161.6 -18.2,0.99,10.620,161.4 -18.4,0.99,10.320,162.4 -18.8,0.99,10.710,164.2 -19.2,0.99,11.110,168.3 -19.3,0.99,10.680,163.9 -19.3,0.99,11.740,162.0 -19.8,0.99,11.700,165.4 -19.8,0.99,11.320,164.7 -20.0,0.99,11.490,162.4 -20.0,0.99,11.750,162.1 -20.3,0.99,11.700,163.4 -20.4,0.99,11.890,163.1 -19.9,0.99,11.670,161.9 -20.1,0.99,12.230,162.8 -20.3,0.99,12.980,164.6 -20.3,0.99,14.750,166.3 -20.4,0.99,14.800,167.1 -20.3,0.99,13.840,165.0 -20.3,0.99,13.860,165.3 -20.2,0.99,14.250,165.8 -20.2,0.99,13.760,167.1 -20.2,0.99,14.400,164.8 -20.1,0.99,13.440,163.3 -20.3,0.99,13.070,165.9 -20.0,0.99,11.380,165.4 -19.9,0.99,9.870,171.0 -20.5,0.99,10.500,175.6 -20.8,0.99,11.630,174.2 -21.0,0.99,12.220,174.4 -20.8,0.99,12.490,170.9 -20.8,0.99,12.270,171.4 -21.1,0.99,13.270,164.9 -21.3,0.99,12.650,160.9 -21.3,0.99,11.590,160.5 -21.3,0.99,11.910,161.3 -21.8,0.99,11.300,163.0 -21.7,0.99,12.880,149.4 -20.6,0.99,13.420,144.5 -21.0,0.99,14.110,147.5 -21.0,0.99,14.020,148.2 -20.6,0.99,13.380,151.4 -20.5,0.99,13.040,153.5 -21.0,0.99,12.320,153.0 -21.1,0.98,14.120,150.8 -20.7,0.98,13.230,152.9 -20.6,0.98,14.850,155.5 -20.2,0.98,13.320,155.9 -20.4,0.98,13.830,157.0 -20.8,0.98,14.460,160.0 -21.4,0.98,15.480,163.0 -21.2,0.98,15.460,163.3 -21.1,0.98,15.100,167.6 -21.2,0.98,13.960,177.5 -21.1,0.98,12.710,176.8 -21.2,0.98,13.120,174.3 -21.2,0.98,12.630,183.7 -21.8,0.98,14.050,187.1 -21.6,0.98,14.100,189.5 -21.7,0.98,14.200,196.0 -21.7,0.98,13.970,198.7 -21.5,0.98,12.860,206.8 -21.8,0.98,13.980,209.4 -21.9,0.98,14.450,220.2 -21.9,0.98,14.070,218.6 -20.5,0.98,8.810,250.1 -19.1,0.98,6.500,332.0 -18.4,0.98,6.180,338.5 -17.9,0.98,6.280,348.4 -18.3,0.98,6.470,353.9 -18.2,0.98,4.670,6.8 -17.6,0.99,4.180,13.9 -18.1,0.99,3.870,7.8 -17.7,0.99,3.610,21.7 -17.4,0.99,4.100,12.1 -16.8,0.99,3.810,22.4 -16.8,0.99,3.690,24.2 -16.0,0.99,5.070,12.4 -15.9,0.99,5.450,7.9 -15.6,0.99,4.040,6.1 -15.0,0.99,7.360,348.7 -15.2,0.99,7.930,344.6 -13.4,0.99,9.100,336.7 -13.5,0.99,9.720,342.1 -12.8,0.99,11.240,338.4 -12.1,0.99,11.650,338.6 -11.7,0.99,11.660,342.5 -12.2,0.99,10.020,348.8 -12.6,1.00,11.440,349.2 -11.5,1.00,11.500,353.3 -9.8,1.00,12.960,351.5 -8.8,1.00,13.140,351.0 -7.7,1.00,13.790,353.9 -6.8,1.00,13.750,358.1 -6.1,1.00,14.220,1.7 -5.1,1.00,14.090,3.1 -4.6,1.00,13.550,7.3 -4.3,1.00,13.690,8.9 -4.0,1.00,13.550,11.2 -3.7,1.00,13.400,15.3 -3.4,1.00,13.100,18.6 -3.2,1.00,12.870,17.8 -3.1,1.00,12.530,19.1 -3.1,1.00,11.650,18.9 -3.4,1.00,10.030,17.8 -4.1,1.00,9.120,11.8 -4.9,1.01,9.020,3.2 -6.3,1.01,8.750,360.0 -7.8,1.01,8.460,0.9 -8.7,1.01,9.070,1.3 -9.2,1.01,9.460,2.7 -9.2,1.01,9.600,2.7 -8.9,1.01,10.670,7.5 -8.1,1.01,10.200,10.3 -7.8,1.01,10.170,16.1 -7.6,1.01,10.530,23.5 -7.5,1.01,10.340,26.0 -7.3,1.01,10.460,28.8 -7.2,1.01,9.910,33.8 -7.0,1.01,9.500,35.0 -6.9,1.01,9.380,34.1 -6.8,1.01,9.300,36.3 -6.7,1.01,8.990,38.3 -6.9,1.01,8.470,42.8 -7.0,1.01,8.980,44.9 -7.0,1.01,8.900,46.0 -7.2,1.01,9.010,47.8 -7.3,1.01,8.940,48.4 -7.5,1.01,8.790,48.2 -7.7,1.01,8.570,48.5 -7.7,1.01,8.330,50.5 -8.6,1.01,7.290,49.8 -9.1,1.01,6.630,55.7 -9.5,1.01,6.030,61.9 -10.0,1.00,5.930,64.3 -10.5,1.00,6.040,67.6 -10.9,1.00,6.350,74.3 -11.0,1.00,6.740,80.6 -11.3,1.00,6.920,87.3 -11.6,1.00,6.970,92.3 -11.9,1.00,7.150,98.0 -12.0,1.00,7.240,100.0 -12.1,1.00,7.090,101.1 -12.3,1.00,7.150,103.3 -12.4,1.00,6.720,103.0 -12.6,1.00,6.190,101.9 -12.7,1.00,6.120,98.3 -12.7,1.00,6.060,92.8 -12.8,1.00,6.210,91.0 -12.8,1.00,6.540,83.4 -12.8,1.00,6.920,81.5 -12.7,1.00,7.110,83.0 -12.7,1.00,6.970,82.9 -12.7,1.00,6.290,87.3 -12.7,1.00,7.220,72.6 -12.6,1.00,7.180,73.8 -12.6,1.00,6.610,73.9 -12.5,1.00,6.950,74.2 -12.6,1.00,7.080,78.9 -13.0,1.00,6.460,77.6 -13.3,1.00,7.140,74.4 -13.3,1.00,6.880,66.9 -13.3,1.00,6.840,59.5 -13.4,1.00,6.290,50.7 -13.1,1.00,6.890,46.1 -12.8,1.00,6.770,42.8 -12.6,1.00,6.800,46.1 -12.3,1.00,6.240,36.2 -11.6,1.00,7.780,35.2 -11.1,1.00,7.320,41.0 -11.1,1.00,7.220,47.0 -11.5,1.00,7.450,53.0 -11.7,1.00,7.790,51.4 -11.3,1.00,8.110,45.2 -11.1,1.00,7.530,45.6 -10.3,1.00,7.960,39.2 -10.3,1.00,7.800,46.1 -10.3,1.00,7.410,46.0 -10.5,1.00,6.890,45.1 -11.5,1.00,6.420,48.5 -12.1,1.00,6.530,54.4 -12.4,1.00,6.080,65.0 -12.7,1.00,5.240,76.8 -13.1,1.00,4.270,65.8 -13.3,1.00,4.090,55.2 -13.3,1.00,4.380,44.9 -13.2,1.00,5.180,34.1 -12.8,1.00,6.310,31.9 -12.7,1.00,6.860,37.2 -12.7,1.00,7.020,46.0 -12.8,1.00,6.400,48.5 -12.7,1.00,6.770,49.8 -12.5,1.00,6.900,47.6 -12.2,1.00,7.050,47.4 -12.1,1.00,7.460,51.9 -11.9,1.00,8.260,48.5 -11.7,1.00,8.740,49.2 -11.5,1.00,8.560,48.2 -11.4,1.00,8.640,49.5 -11.2,1.00,9.130,47.9 -11.1,1.00,7.880,51.6 -11.0,1.00,7.580,43.1 -10.8,1.00,7.400,40.2 -11.3,1.00,6.660,42.4 -11.8,1.00,6.520,42.4 -12.3,1.00,6.610,43.6 -12.7,1.00,6.560,40.8 -13.0,1.00,6.800,41.9 -13.6,1.00,6.940,42.0 -13.4,1.00,7.480,33.8 -13.1,1.00,8.290,35.1 -12.5,1.00,8.230,29.4 -12.3,1.00,8.450,41.1 -12.2,1.00,8.250,43.9 -12.0,1.00,8.220,46.4 -11.8,1.00,8.690,49.9 -11.6,1.00,8.510,45.1 -11.4,1.00,7.960,42.9 -11.2,1.00,7.660,41.5 -11.3,1.00,7.130,49.5 -11.6,1.00,6.420,55.4 -11.7,1.00,5.660,50.6 -11.6,1.00,5.650,44.6 -10.5,1.00,5.610,26.9 -10.3,1.00,5.180,27.4 -10.4,1.00,5.250,22.9 -10.4,1.00,4.790,17.7 -11.0,1.00,3.650,9.7 -11.6,1.00,2.720,12.3 -12.0,0.99,1.690,11.4 -12.3,0.99,1.280,325.8 -12.5,0.99,1.610,290.9 -12.7,0.99,1.610,303.1 -13.0,0.99,1.930,287.9 -13.0,0.99,1.880,294.3 -12.9,0.99,2.140,298.9 -12.7,0.99,2.210,302.9 -12.6,0.99,1.910,297.1 -12.5,0.99,2.130,290.9 -12.4,0.99,2.380,282.7 -12.3,0.99,3.260,277.3 -12.3,0.99,3.290,292.3 -12.5,0.99,3.230,274.4 -12.1,0.99,2.430,279.8 -12.2,0.99,2.040,278.7 -12.4,0.99,1.800,275.0 -12.2,0.99,1.060,267.1 -12.1,0.99,0.290,275.1 -12.4,0.99,0.500,318.3 -12.5,0.99,0.280,45.7 -12.6,0.99,0.980,32.4 -12.9,0.99,1.340,61.9 -13.4,0.99,1.470,66.7 -13.8,0.99,1.960,86.6 -14.1,0.99,2.030,107.7 -14.5,0.99,1.670,116.9 -14.6,0.99,1.590,96.5 -14.5,0.99,2.040,116.2 -14.5,0.99,2.270,76.9 -14.4,0.99,3.580,57.9 -14.3,1.00,2.750,58.1 -14.5,1.00,2.500,53.1 -15.2,1.00,2.680,61.8 -10.9,1.00,9.710,353.1 -10.0,1.00,9.780,352.3 -9.1,1.00,10.290,349.8 -8.4,1.00,9.850,350.6 -8.1,1.00,9.960,353.5 -7.9,1.00,9.740,355.5 -7.5,1.00,9.420,355.7 -7.0,1.00,9.390,351.6 -6.9,1.00,8.960,351.7 -6.7,1.00,7.990,343.2 -6.6,1.00,8.430,346.9 -6.7,1.00,8.340,344.8 -7.1,1.00,7.980,347.5 -7.6,1.00,7.970,347.1 -8.2,1.00,7.860,346.8 -8.5,1.00,7.420,349.3 -8.7,1.00,7.270,348.9 -8.7,1.00,7.100,357.4 -8.3,1.00,7.930,2.7 -8.0,1.00,8.340,7.7 -7.7,1.00,8.020,7.1 -7.5,1.00,8.290,8.8 -7.2,1.00,8.340,10.6 -7.0,1.00,8.650,11.3 -6.6,1.00,9.260,14.6 -6.5,1.00,8.890,18.7 -6.5,1.00,8.910,21.2 -6.5,1.00,8.990,23.6 -6.4,1.00,8.610,24.7 -6.4,1.00,8.360,28.5 -6.6,1.00,8.240,30.5 -6.5,1.00,8.160,32.0 -6.6,1.00,7.840,31.8 -6.6,1.00,7.030,31.2 -6.7,1.00,6.060,31.2 -6.9,1.00,5.420,26.9 -7.5,1.00,4.930,25.7 -8.1,1.00,4.460,23.6 -8.6,1.00,4.090,23.0 -9.1,1.00,3.810,24.9 -9.6,1.00,3.450,35.6 -19.9,0.99,11.030,167.5 -20.3,0.99,12.970,167.3 -20.3,0.99,13.370,169.2 -20.3,0.99,13.860,169.5 -20.2,0.99,13.540,172.9 -20.3,0.99,13.990,177.4 diff --git a/h2integrate/storage/co2/tank_baseclass.py b/h2integrate/storage/co2/tank_baseclass.py deleted file mode 100644 index b081ac062..000000000 --- a/h2integrate/storage/co2/tank_baseclass.py +++ /dev/null @@ -1,74 +0,0 @@ -import openmdao.api as om -from attrs import field, define - -from h2integrate.core.utilities import CostModelBaseConfig -from h2integrate.core.model_baseclasses import CostModelBaseClass - - -class CO2TankPerformanceModel(om.ExplicitComponent): - def initialize(self): - self.options.declare("driver_config", types=dict) - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - - def setup(self): - config_details = self.options["tech_config"]["details"] - self.add_input( - "co2_in", - val=0.0, - shape_by_conn=True, - copy_shape="co2_out", - units="kg/h", - desc="CO2 input over a year", - ) - self.add_input("initial_co2", val=0.0, units="kg", desc="Initial amount of co2 in the tank") - self.add_input( - "total_capacity", - val=float(config_details["total_capacity"]), - units="kg", - desc="Total storage capacity", - ) - self.add_input( - "co2_out", - val=0.0, - shape_by_conn=True, - copy_shape="co2_in", - units="kg/h", - desc="CO2 output over a year", - ) - self.add_output( - "stored_co2", - val=0.0, - shape_by_conn=True, - copy_shape="co2_in", - units="kg", - desc="Amount of co2 stored", - ) - - def compute(self, inputs, outputs): - initial_co2 = inputs["initial_co2"] - co2_in = inputs["co2_in"] - co2_out = inputs["co2_out"] - - outputs["stored_co2"] = initial_co2 + co2_in - co2_out - - -@define -class TankCostModelConfig(CostModelBaseConfig): - total_capacity: float = field() - - -class CO2TankCostModel(CostModelBaseClass): - def setup(self): - self.config = TankCostModelConfig.from_dict(self.options["tech_config"]["details"]) - super().setup() - self.add_input( - "total_capacity", - val=self.config.total_capacity, - units="kg", - desc="Total storage capacity", - ) - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - outputs["CapEx"] = inputs["total_capacity"] * 0.1 - outputs["OpEx"] = inputs["total_capacity"] * 0.01 From c7f279d429f6a4bb689e0aa8058a467dffeb8036 Mon Sep 17 00:00:00 2001 From: kbrunik Date: Tue, 7 Oct 2025 09:12:45 -0500 Subject: [PATCH 29/79] minor clean up --- .../03_methanol/smr/plant_config_smr.yaml | 2 - .../co2/marine/direct_ocean_capture.py | 1 - .../29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv | 8762 ----------------- 3 files changed, 8765 deletions(-) delete mode 100644 resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv diff --git a/examples/03_methanol/smr/plant_config_smr.yaml b/examples/03_methanol/smr/plant_config_smr.yaml index 6100bdd77..e39c23243 100644 --- a/examples/03_methanol/smr/plant_config_smr.yaml +++ b/examples/03_methanol/smr/plant_config_smr.yaml @@ -52,8 +52,6 @@ finance_parameters: capital_items: depr_type: "MACRS" # can be "MACRS" or "Straight line" depr_period: 5 # 5 y - options: - commodity: "methanol" cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 diff --git a/h2integrate/converters/co2/marine/direct_ocean_capture.py b/h2integrate/converters/co2/marine/direct_ocean_capture.py index c1903bcb9..05116d9e8 100644 --- a/h2integrate/converters/co2/marine/direct_ocean_capture.py +++ b/h2integrate/converters/co2/marine/direct_ocean_capture.py @@ -78,7 +78,6 @@ class DOCPerformanceModel(MarineCarbonCapturePerformanceBaseClass): Computes: - co2_out: Hourly CO2 capture rate (kg/h) - co2_capture_mtpy: Annual CO2 capture (t/year) - - co2_capture_kgpy: Annual CO2 capture (kg/year) - total_tank_volume_m3: Total tank volume (m^3) - plant_mCC_capacity_mtph: Plant carbon capture capacity (t/h) """ diff --git a/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv b/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv deleted file mode 100644 index d4a3ab279..000000000 --- a/resource_files/wind/29.2_-94.6_2012_wtk_v2_60min_utc_tz.csv +++ /dev/null @@ -1,8762 +0,0 @@ -SiteID,1379078,Site Timezone,-6,Data Timezone,0,Longitude,-94.593170166,Latitude,29.2054595947 -Year,Month,Day,Hour,Minute,surface air pressure (Pa),air pressure at 100m (Pa),air pressure at 200m (Pa),relative humidity at 2m (%),surface precipitation rate (mm/h),wind speed at 10m (m/s),wind speed at 40m (m/s),wind speed at 60m (m/s),wind speed at 80m (m/s),wind speed at 100m (m/s),wind speed at 120m (m/s),wind speed at 140m (m/s),wind speed at 160m (m/s),wind speed at 200m (m/s),wind direction at 10m (deg),wind direction at 40m (deg),wind direction at 60m (deg),wind direction at 80m (deg),wind direction at 100m (deg),wind direction at 120m (deg),wind direction at 140m (deg),wind direction at 160m (deg),wind direction at 200m (deg),air temperature at 10m (C),air temperature at 40m (C),air temperature at 60m (C),air temperature at 80m (C),air temperature at 100m (C),air temperature at 120m (C),air temperature at 140m (C),air temperature at 160m (C),air temperature at 200m (C),density - DEPRECATED,power - DEPRECATED -2012,1,1,0,30,101850,100660,99520,89.26,0,5.3100000000000005,7.38,8.3,9.21,10.06,10.870000000000001,11.53,12.1,12.77,188.64000000000001,188.75,189.61,191.37,193.81,196.68,200.71,204.78,212.06,19.45,19.82,19.91,19.98,19.98,19.95,19.88,19.81,20.27,N/A,N/A -2012,1,1,1,30,101870,100680,99540,89.31,0,5.8,7.99,9,9.99,10.86,11.63,12.17,12.61,13.01,184.22,185.72,186.99,188.65,190.47,192.37,194.85,197.33,202.28,19.36,19.7,19.77,19.78,19.76,19.71,19.72,19.740000000000002,19.89,N/A,N/A -2012,1,1,2,30,101910,100720,99570,90.13,0,5.19,7.41,8.45,9.5,10.39,11.15,11.82,12.41,12.9,186.20000000000002,187.37,188.1,188.73,189.94,191.51,193.34,195.12,199.28,19.23,19.580000000000002,19.650000000000002,19.650000000000002,19.62,19.580000000000002,19.44,19.29,19.88,N/A,N/A -2012,1,1,3,30,101920,100730,99590,89.62,0,5.6000000000000005,7.97,9.06,10.14,11.040000000000001,11.8,12.16,12.38,12.34,180.64000000000001,183.39000000000001,185.51,188.14000000000001,190.98,193.93,196.37,198.49,201.35,19.330000000000002,19.69,19.73,19.66,19.51,19.330000000000002,19.61,19.97,20.94,N/A,N/A -2012,1,1,4,30,101950,100760,99620,90.15,0.4,5.59,7.930000000000001,9.05,10.25,11.28,12.17,12.63,12.94,12.97,189.75,191.63,193.12,195.13,196.9,198.5,200.21,201.81,203.76,19.19,19.44,19.46,19.400000000000002,19.35,19.3,19.77,20.31,20.87,N/A,N/A -2012,1,1,5,30,101990,100800,99650,91.59,0.4,5.7,7.55,8.45,9.49,10.53,11.57,12.16,12.59,12.790000000000001,180.34,183.72,186.59,190.48,193.39000000000001,195.69,198.11,200.34,202.75,18.79,18.95,18.92,18.8,19.1,19.62,20.2,20.72,20.84,N/A,N/A -2012,1,1,6,30,102040,100850,99700,92.71000000000001,0.7000000000000001,4.64,6.62,7.68,8.99,10.25,11.5,12.040000000000001,12.370000000000001,12.44,189.88,191.34,192.58,194.31,196.61,199.33,202.24,204.92000000000002,207.91,18.92,19.13,19.03,18.67,19.080000000000002,19.95,20.53,20.98,21.05,N/A,N/A -2012,1,1,7,30,102110,100920,99770,92.46000000000001,0,4.32,6.22,7.15,8.21,9.3,10.42,10.97,11.32,11.57,194.88,195.43,196.03,197.04,198.74,200.95000000000002,204.18,207.4,211.05,19.01,19.25,19.23,19.06,19.27,19.7,20.240000000000002,20.740000000000002,21.03,N/A,N/A -2012,1,1,8,30,102170,100980,99830,93.10000000000001,0.4,3.34,5.18,5.94,6.71,7.57,8.53,9.5,10.450000000000001,11,211.8,209.43,208.4,208.71,209.26,209.96,212.24,214.86,218.57,19.080000000000002,19.41,19.45,19.41,19.3,19.16,19.23,19.35,20,N/A,N/A -2012,1,1,9,30,102240,101050,99900,93.13,0.4,2.59,4.45,5.41,6.46,7.32,8.02,8.26,8.34,8.45,233.77,232.8,231.59,229.9,229.86,231.21,231.70000000000002,231.88,233.37,19.19,19.73,19.84,19.8,19.75,19.71,19.63,19.56,19.41,N/A,N/A -2012,1,1,10,30,102310,101120,99970,90.32000000000001,12.8,4.63,6.49,7.0200000000000005,7.11,7.24,7.4,7.5600000000000005,7.72,8.03,255.67000000000002,256.07,256.03000000000003,255.6,255.86,256.56,256.77,256.85,256.76,19.62,20.06,20.14,20.14,20.16,20.19,20.14,20.080000000000002,19.91,N/A,N/A -2012,1,1,11,30,102380,101190,100040,92.89,0,4.42,6.23,6.96,7.390000000000001,7.61,7.69,7.79,7.9,8.06,275.26,272.61,272.82,277.35,280.37,282.41,283.61,284.52,284.63,18.900000000000002,19.34,19.55,19.73,19.8,19.8,19.830000000000002,19.86,19.77,N/A,N/A -2012,1,1,12,30,102450,101260,100100,90.89,0,4.45,6.74,7.71,8.41,9.07,9.71,10.18,10.59,10.97,290.21,291.44,292.46,293.83,294.79,295.5,296.09000000000003,296.59000000000003,296.59000000000003,19.48,19.740000000000002,19.71,19.55,19.53,19.580000000000002,19.61,19.62,19.44,N/A,N/A -2012,1,1,13,30,102560,101350,100170,86.29,0,10.73,11.86,12.19,12.450000000000001,12.72,12.98,13.42,13.89,14.82,350.6,351.06,351.35,351.69,352.11,352.53000000000003,353.19,353.84000000000003,354.42,16.89,16.580000000000002,16.41,16.22,16.04,15.88,15.73,15.620000000000001,15.71,N/A,N/A -2012,1,1,14,30,102700,101480,100300,79.41,0,10.540000000000001,11.64,11.96,12.19,12.38,12.540000000000001,12.73,12.92,13.46,3.3000000000000003,4,4.37,4.75,5.15,5.5200000000000005,6,6.48,7.73,15.77,15.370000000000001,15.18,15,14.81,14.63,14.450000000000001,14.280000000000001,13.950000000000001,N/A,N/A -2012,1,1,15,30,102760,101540,100350,69.58,0,10.8,11.82,12.06,12.200000000000001,12.3,12.36,12.41,12.46,12.56,5.6000000000000005,5.76,5.87,5.97,6.07,6.17,6.29,6.41,6.71,15.290000000000001,14.85,14.65,14.450000000000001,14.25,14.07,13.870000000000001,13.68,13.31,N/A,N/A -2012,1,1,16,30,102780,101560,100370,67.46000000000001,0,10.4,11.36,11.61,11.74,11.84,11.9,11.950000000000001,11.99,12.05,6.11,6.16,6.2,6.24,6.28,6.32,6.38,6.43,6.58,15.15,14.71,14.5,14.3,14.09,13.91,13.71,13.52,13.13,N/A,N/A -2012,1,1,17,30,102760,101540,100350,65.26,0,10.78,11.790000000000001,12.040000000000001,12.19,12.280000000000001,12.35,12.39,12.43,12.49,1.1500000000000001,1.22,1.25,1.29,1.32,1.36,1.41,1.46,1.57,15.44,15.01,14.82,14.61,14.41,14.23,14.02,13.84,13.450000000000001,N/A,N/A -2012,1,1,18,30,102810,101580,100400,60.13,0,10.18,11.17,11.43,11.58,11.69,11.77,11.83,11.870000000000001,11.94,0.41000000000000003,0.65,0.8200000000000001,0.98,1.1300000000000001,1.27,1.41,1.55,1.82,16,15.620000000000001,15.43,15.24,15.040000000000001,14.85,14.65,14.46,14.08,N/A,N/A -2012,1,1,19,30,102840,101620,100440,55.57,0,10.11,11.16,11.44,11.620000000000001,11.73,11.83,11.89,11.950000000000001,12.030000000000001,3.13,3.2600000000000002,3.35,3.46,3.5500000000000003,3.65,3.7600000000000002,3.86,4.07,16.54,16.21,16.03,15.84,15.64,15.46,15.26,15.07,14.69,N/A,N/A -2012,1,1,20,30,102840,101620,100440,53.34,0,10.71,11.89,12.200000000000001,12.4,12.540000000000001,12.65,12.72,12.790000000000001,12.88,0.5,0.64,0.74,0.8300000000000001,0.92,1.01,1.09,1.17,1.33,16.96,16.67,16.51,16.32,16.13,15.950000000000001,15.75,15.57,15.18,N/A,N/A -2012,1,1,21,30,102870,101650,100470,54.04,0,9.93,10.99,11.26,11.44,11.56,11.65,11.71,11.77,11.84,1.75,1.77,1.77,1.76,1.76,1.75,1.75,1.76,1.79,17.1,16.830000000000002,16.66,16.48,16.29,16.11,15.92,15.73,15.35,N/A,N/A -2012,1,1,22,30,102920,101700,100510,52.56,0,10.48,11.56,11.84,12,12.120000000000001,12.200000000000001,12.24,12.280000000000001,12.33,2.87,3.0500000000000003,3.15,3.25,3.35,3.44,3.54,3.63,3.8200000000000003,16.91,16.61,16.44,16.25,16.06,15.88,15.68,15.49,15.1,N/A,N/A -2012,1,1,23,30,103000,101770,100590,50.65,0,11.64,12.8,13.06,13.200000000000001,13.27,13.32,13.33,13.34,13.32,1.81,2.09,2.24,2.37,2.49,2.59,2.7,2.8000000000000003,3.02,16.23,15.870000000000001,15.68,15.49,15.290000000000001,15.1,14.9,14.71,14.32,N/A,N/A -2012,1,2,0,30,103110,101880,100680,53.27,0,11.88,13.07,13.370000000000001,13.55,13.66,13.75,13.8,13.85,13.91,4.83,4.94,5.0200000000000005,5.09,5.15,5.2,5.26,5.3100000000000005,5.42,15.44,15.01,14.81,14.61,14.4,14.22,14.01,13.82,13.42,N/A,N/A -2012,1,2,1,30,103160,101930,100730,54.76,0,12.32,13.57,13.9,14.09,14.22,14.32,14.4,14.450000000000001,14.540000000000001,7.83,7.9,7.96,8.01,8.06,8.1,8.15,8.19,8.28,14.8,14.32,14.11,13.9,13.700000000000001,13.51,13.3,13.11,12.72,N/A,N/A -2012,1,2,2,30,103210,101970,100770,57.27,0,12.51,13.77,14.1,14.3,14.43,14.530000000000001,14.6,14.66,14.75,9.06,9.290000000000001,9.4,9.52,9.63,9.73,9.84,9.94,10.16,14.18,13.66,13.44,13.23,13.02,12.83,12.620000000000001,12.43,12.040000000000001,N/A,N/A -2012,1,2,3,30,103260,102020,100810,59.64,0,12.780000000000001,14.05,14.38,14.58,14.72,14.83,14.91,14.98,15.09,10.790000000000001,11,11.13,11.26,11.39,11.51,11.64,11.77,12.040000000000001,13.52,12.950000000000001,12.72,12.5,12.290000000000001,12.1,11.9,11.71,11.33,N/A,N/A -2012,1,2,4,30,103270,102030,100820,61.47,0,12.700000000000001,13.950000000000001,14.27,14.47,14.61,14.71,14.790000000000001,14.86,14.98,14.41,14.59,14.71,14.82,14.94,15.05,15.18,15.3,15.56,13,12.4,12.16,11.950000000000001,11.73,11.540000000000001,11.34,11.15,10.77,N/A,N/A -2012,1,2,5,30,103290,102050,100840,61.690000000000005,0,12.8,14.030000000000001,14.35,14.540000000000001,14.66,14.76,14.84,14.91,15.040000000000001,15.6,15.790000000000001,15.92,16.05,16.18,16.3,16.45,16.580000000000002,16.89,12.61,11.98,11.74,11.52,11.31,11.13,10.92,10.74,10.370000000000001,N/A,N/A -2012,1,2,6,30,103340,102090,100880,63.25,0,13.030000000000001,14.26,14.58,14.76,14.88,14.98,15.05,15.120000000000001,15.25,18.400000000000002,18.580000000000002,18.69,18.8,18.92,19.02,19.150000000000002,19.28,19.55,12.24,11.56,11.32,11.1,10.88,10.700000000000001,10.5,10.31,9.94,N/A,N/A -2012,1,2,7,30,103400,102150,100940,64.03,0,13.25,14.5,14.81,14.99,15.120000000000001,15.21,15.290000000000001,15.36,15.5,20.35,20.51,20.63,20.740000000000002,20.85,20.96,21.09,21.22,21.52,11.92,11.22,10.97,10.75,10.540000000000001,10.35,10.15,9.97,9.61,N/A,N/A -2012,1,2,8,30,103430,102180,100970,63.31,0,13.67,14.97,15.3,15.49,15.610000000000001,15.700000000000001,15.780000000000001,15.85,15.99,23.13,23.32,23.43,23.55,23.67,23.78,23.91,24.04,24.36,11.65,10.93,10.68,10.46,10.24,10.06,9.86,9.68,9.32,N/A,N/A -2012,1,2,9,30,103470,102210,101000,64.3,0,13.46,14.700000000000001,15.02,15.19,15.31,15.4,15.47,15.540000000000001,15.68,24.5,24.67,24.78,24.88,24.990000000000002,25.080000000000002,25.2,25.310000000000002,25.57,11.27,10.53,10.27,10.040000000000001,9.83,9.65,9.450000000000001,9.27,8.92,N/A,N/A -2012,1,2,10,30,103500,102250,101030,63.71,0,13.21,14.41,14.71,14.870000000000001,14.99,15.07,15.14,15.200000000000001,15.33,26.93,27.1,27.21,27.3,27.400000000000002,27.490000000000002,27.59,27.69,27.91,10.950000000000001,10.200000000000001,9.94,9.72,9.5,9.31,9.120000000000001,8.94,8.58,N/A,N/A -2012,1,2,11,30,103560,102300,101080,63.25,0,12.83,13.97,14.26,14.42,14.52,14.6,14.66,14.71,14.81,29.580000000000002,29.740000000000002,29.830000000000002,29.91,29.990000000000002,30.07,30.150000000000002,30.23,30.400000000000002,10.73,9.97,9.71,9.48,9.27,9.08,8.88,8.700000000000001,8.33,N/A,N/A -2012,1,2,12,30,103620,102360,101140,63.5,0,12.620000000000001,13.73,14,14.16,14.26,14.33,14.39,14.44,14.530000000000001,30.69,30.82,30.92,31,31.09,31.16,31.25,31.32,31.48,10.540000000000001,9.790000000000001,9.52,9.290000000000001,9.08,8.89,8.69,8.51,8.14,N/A,N/A -2012,1,2,13,30,103670,102410,101190,63.4,0,12.44,13.530000000000001,13.790000000000001,13.93,14.030000000000001,14.1,14.15,14.200000000000001,14.290000000000001,30.8,30.94,31.03,31.1,31.18,31.25,31.32,31.39,31.53,10.38,9.620000000000001,9.36,9.13,8.92,8.73,8.53,8.35,7.98,N/A,N/A -2012,1,2,14,30,103730,102470,101250,64.26,0,11.44,12.36,12.57,12.69,12.76,12.81,12.84,12.870000000000001,12.92,31.080000000000002,31.240000000000002,31.330000000000002,31.41,31.490000000000002,31.55,31.62,31.68,31.8,10.13,9.38,9.120000000000001,8.9,8.68,8.49,8.3,8.11,7.75,N/A,N/A -2012,1,2,15,30,103750,102490,101260,62.65,0,10.24,11.03,11.22,11.33,11.4,11.46,11.51,11.55,11.63,30.68,30.82,30.91,30.990000000000002,31.060000000000002,31.13,31.2,31.27,31.39,10.13,9.42,9.16,8.94,8.73,8.540000000000001,8.34,8.15,7.79,N/A,N/A -2012,1,2,16,30,103730,102470,101240,59.47,0,9.22,9.91,10.09,10.19,10.26,10.32,10.370000000000001,10.42,10.51,24.69,24.78,24.85,24.91,24.97,25.03,25.09,25.150000000000002,25.27,10.38,9.700000000000001,9.46,9.24,9.02,8.83,8.63,8.44,8.06,N/A,N/A -2012,1,2,17,30,103700,102450,101230,55.49,0,7.62,8.15,8.28,8.36,8.42,8.46,8.5,8.53,8.59,14.72,14.790000000000001,14.84,14.88,14.93,14.96,15.01,15.05,15.15,10.83,10.22,9.98,9.76,9.55,9.36,9.15,8.96,8.57,N/A,N/A -2012,1,2,18,30,103680,102430,101210,49.9,0,7.36,7.88,8.01,8.09,8.15,8.2,8.24,8.27,8.33,7.2,7.21,7.22,7.22,7.23,7.23,7.23,7.24,7.26,11.68,11.1,10.88,10.66,10.44,10.25,10.040000000000001,9.85,9.450000000000001,N/A,N/A -2012,1,2,19,30,103660,102410,101200,48.18,0,6.94,7.390000000000001,7.51,7.58,7.62,7.66,7.69,7.71,7.74,357.68,357.79,357.88,357.96,358.05,358.13,358.2,358.28000000000003,358.42,12.51,11.98,11.76,11.55,11.33,11.14,10.93,10.73,10.33,N/A,N/A -2012,1,2,20,30,103610,102360,101150,46.36,0,7.01,7.48,7.58,7.65,7.69,7.72,7.74,7.76,7.78,345.68,346.11,346.40000000000003,346.66,346.92,347.15000000000003,347.39,347.62,348.06,13.02,12.51,12.290000000000001,12.08,11.870000000000001,11.68,11.47,11.27,10.88,N/A,N/A -2012,1,2,21,30,103570,102320,101110,46.29,0,7.8,8.34,8.46,8.53,8.56,8.59,8.6,8.61,8.620000000000001,343.08,343.58,343.89,344.17,344.44,344.68,344.92,345.14,345.59000000000003,13.24,12.73,12.51,12.3,12.09,11.89,11.69,11.49,11.1,N/A,N/A -2012,1,2,22,30,103530,102290,101080,45.93,0,7.74,8.27,8.38,8.44,8.47,8.5,8.51,8.52,8.52,340.56,341,341.28000000000003,341.53000000000003,341.76,341.97,342.19,342.39,342.79,13.31,12.8,12.58,12.370000000000001,12.16,11.97,11.76,11.57,11.17,N/A,N/A -2012,1,2,23,30,103530,102280,101080,49.15,0,7.46,7.97,8.09,8.15,8.19,8.22,8.24,8.26,8.27,342.72,342.90000000000003,343.01,343.1,343.2,343.28000000000003,343.37,343.45,343.61,13.31,12.8,12.58,12.370000000000001,12.16,11.96,11.75,11.56,11.16,N/A,N/A -2012,1,3,0,30,103550,102310,101100,51.47,0,8.35,8.93,9.05,9.11,9.13,9.16,9.16,9.16,9.15,342.81,343.28000000000003,343.56,343.81,344.05,344.27,344.49,344.69,345.09000000000003,13,12.46,12.24,12.030000000000001,11.81,11.620000000000001,11.41,11.21,10.81,N/A,N/A -2012,1,3,1,30,103580,102330,101120,50.76,0,8.44,9.02,9.14,9.200000000000001,9.22,9.23,9.23,9.23,9.21,350.6,350.65000000000003,350.67,350.69,350.71,350.73,350.74,350.76,350.79,12.57,12.01,11.78,11.57,11.35,11.16,10.950000000000001,10.75,10.36,N/A,N/A -2012,1,3,2,30,103600,102350,101140,49.25,0,8.51,9.1,9.23,9.3,9.33,9.35,9.36,9.36,9.35,353.62,353.59000000000003,353.57,353.55,353.52,353.5,353.48,353.46,353.41,12.370000000000001,11.8,11.57,11.35,11.14,10.950000000000001,10.74,10.540000000000001,10.15,N/A,N/A -2012,1,3,3,30,103600,102350,101130,49.28,0,8.91,9.53,9.65,9.71,9.73,9.75,9.75,9.74,9.72,357.1,356.82,356.65000000000003,356.5,356.35,356.23,356.11,355.99,355.77,12.01,11.42,11.19,10.97,10.76,10.57,10.36,10.17,9.78,N/A,N/A -2012,1,3,4,30,103600,102350,101140,49.14,0,8.41,8.97,9.08,9.13,9.15,9.16,9.15,9.15,9.13,1.6,1.46,1.36,1.26,1.16,1.07,0.96,0.85,0.62,11.67,11.07,10.84,10.63,10.41,10.23,10.02,9.83,9.450000000000001,N/A,N/A -2012,1,3,5,30,103620,102370,101150,53.28,0,8.45,8.99,9.09,9.14,9.15,9.16,9.15,9.14,9.11,4.74,4.8100000000000005,4.83,4.8500000000000005,4.86,4.8500000000000005,4.8500000000000005,4.83,4.7700000000000005,10.97,10.34,10.11,9.89,9.68,9.49,9.290000000000001,9.11,8.73,N/A,N/A -2012,1,3,6,30,103650,102390,101170,55.4,0,8.61,9.17,9.27,9.31,9.33,9.33,9.32,9.31,9.27,11.93,11.97,11.99,12,12,12.01,12.01,12.01,11.99,10.61,9.99,9.75,9.540000000000001,9.32,9.13,8.93,8.74,8.36,N/A,N/A -2012,1,3,7,30,103670,102410,101190,56,0,8.69,9.26,9.36,9.41,9.41,9.42,9.4,9.39,9.34,15.120000000000001,15.16,15.16,15.15,15.14,15.120000000000001,15.11,15.08,15,10.32,9.68,9.44,9.22,9.01,8.82,8.620000000000001,8.43,8.05,N/A,N/A -2012,1,3,8,30,103650,102390,101170,57.53,0,8.870000000000001,9.44,9.540000000000001,9.57,9.58,9.58,9.56,9.540000000000001,9.49,23.42,23.45,23.44,23.42,23.39,23.36,23.32,23.29,23.18,9.97,9.31,9.07,8.85,8.64,8.45,8.25,8.06,7.69,N/A,N/A -2012,1,3,9,30,103630,102370,101140,56.800000000000004,0,9.47,10.11,10.22,10.27,10.28,10.28,10.26,10.23,10.17,26.19,26.26,26.29,26.3,26.32,26.34,26.35,26.35,26.35,9.74,9.06,8.81,8.59,8.38,8.19,7.98,7.8,7.42,N/A,N/A -2012,1,3,10,30,103610,102350,101120,55.99,0,8.73,9.3,9.4,9.44,9.450000000000001,9.450000000000001,9.44,9.42,9.38,32.18,32.37,32.49,32.59,32.69,32.77,32.87,32.95,33.13,9.61,8.94,8.700000000000001,8.48,8.27,8.08,7.88,7.68,7.3,N/A,N/A -2012,1,3,11,30,103610,102350,101120,57.550000000000004,0,8.44,8.97,9.07,9.11,9.13,9.13,9.120000000000001,9.11,9.07,42.11,42.51,42.730000000000004,42.94,43.14,43.32,43.52,43.7,44.08,9.700000000000001,9.05,8.81,8.59,8.370000000000001,8.18,7.97,7.78,7.4,N/A,N/A -2012,1,3,12,30,103610,102350,101120,58.370000000000005,0,8.22,8.73,8.83,8.870000000000001,8.89,8.9,8.89,8.88,8.85,43.33,43.77,44.03,44.25,44.480000000000004,44.69,44.9,45.11,45.54,9.57,8.92,8.67,8.45,8.24,8.040000000000001,7.84,7.640000000000001,7.26,N/A,N/A -2012,1,3,13,30,103600,102340,101120,63.56,0,7.5,7.930000000000001,8.01,8.040000000000001,8.05,8.05,8.040000000000001,8.03,7.99,51.300000000000004,51.63,51.84,52.02,52.21,52.38,52.550000000000004,52.72,53.08,9.81,9.18,8.94,8.72,8.51,8.31,8.1,7.91,7.5200000000000005,N/A,N/A -2012,1,3,14,30,103600,102340,101120,57.94,0,7.72,8.18,8.26,8.290000000000001,8.31,8.31,8.3,8.290000000000001,8.25,55.730000000000004,56.03,56.21,56.370000000000005,56.53,56.68,56.83,56.980000000000004,57.28,9.99,9.36,9.120000000000001,8.9,8.69,8.49,8.28,8.09,7.7,N/A,N/A -2012,1,3,15,30,103580,102320,101100,59.93,0,7.01,7.41,7.48,7.51,7.5200000000000005,7.5200000000000005,7.5200000000000005,7.51,7.48,58.39,58.86,59.13,59.370000000000005,59.61,59.82,60.050000000000004,60.26,60.7,10.17,9.57,9.33,9.11,8.9,8.71,8.5,8.3,7.91,N/A,N/A -2012,1,3,16,30,103540,102280,101060,60.17,0,6.3100000000000005,6.66,6.73,6.76,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.75,66.15,66.57000000000001,66.8,67.02,67.24,67.43,67.63,67.82000000000001,68.22,10.47,9.9,9.66,9.450000000000001,9.24,9.040000000000001,8.83,8.64,8.24,N/A,N/A -2012,1,3,17,30,103490,102240,101020,60.4,0,5.8100000000000005,6.11,6.16,6.17,6.18,6.17,6.17,6.16,6.13,74.28,74.61,74.81,74.99,75.18,75.34,75.51,75.67,76.01,10.73,10.18,9.950000000000001,9.74,9.53,9.33,9.13,8.93,8.540000000000001,N/A,N/A -2012,1,3,18,30,103450,102200,100980,61.92,0,5.16,5.41,5.45,5.46,5.47,5.47,5.46,5.45,5.42,81.14,81.54,81.77,81.98,82.17,82.36,82.55,82.73,83.10000000000001,11.02,10.49,10.27,10.06,9.85,9.65,9.450000000000001,9.25,8.86,N/A,N/A -2012,1,3,19,30,103390,102140,100930,63.230000000000004,0,4.44,4.64,4.67,4.68,4.68,4.68,4.68,4.67,4.66,90.37,90.88,91.16,91.43,91.68,91.92,92.18,92.41,92.9,11.35,10.85,10.63,10.42,10.21,10.02,9.81,9.620000000000001,9.22,N/A,N/A -2012,1,3,20,30,103320,102070,100860,65.71000000000001,0,4.41,4.6000000000000005,4.63,4.64,4.64,4.63,4.62,4.61,4.59,104.02,104.47,104.7,104.93,105.15,105.36,105.57000000000001,105.77,106.19,11.59,11.09,10.88,10.67,10.46,10.27,10.06,9.86,9.47,N/A,N/A -2012,1,3,21,30,103250,102000,100790,62.93,0,3.91,4.09,4.13,4.15,4.16,4.16,4.17,4.17,4.17,119.45,120.08,120.44,120.77,121.09,121.38,121.68,121.96000000000001,122.56,11.950000000000001,11.47,11.26,11.06,10.85,10.66,10.450000000000001,10.26,9.86,N/A,N/A -2012,1,3,22,30,103170,101930,100720,65.42,0,4.05,4.25,4.28,4.3,4.3100000000000005,4.32,4.33,4.33,4.33,127.76,128.43,128.81,129.16,129.5,129.81,130.14000000000001,130.44,131.09,12.280000000000001,11.81,11.6,11.4,11.19,11,10.790000000000001,10.6,10.21,N/A,N/A -2012,1,3,23,30,103120,101880,100680,66.89,0,4.34,4.57,4.62,4.65,4.67,4.69,4.7,4.71,4.73,140.01,140.54,140.87,141.18,141.49,141.76,142.06,142.33,142.91,12.66,12.19,11.98,11.78,11.57,11.38,11.18,10.98,10.59,N/A,N/A -2012,1,4,0,30,103090,101850,100650,65.61,0,4.83,5.12,5.19,5.23,5.26,5.28,5.3,5.32,5.3500000000000005,152.18,152.69,152.98,153.25,153.52,153.75,154,154.24,154.73,13.15,12.69,12.48,12.280000000000001,12.07,11.89,11.68,11.49,11.09,N/A,N/A -2012,1,4,1,30,103030,101800,100600,67.44,0,5.44,5.78,5.86,5.91,5.95,5.97,5.99,6.01,6.04,159.29,159.76,160.03,160.28,160.53,160.75,160.98,161.21,161.66,13.61,13.16,12.96,12.76,12.55,12.36,12.15,11.96,11.57,N/A,N/A -2012,1,4,2,30,102970,101740,100550,71.66,0,6.34,6.79,6.9,6.97,7.01,7.05,7.07,7.1000000000000005,7.13,167.1,167.54,167.79,168.01,168.23,168.41,168.62,168.8,169.18,14.17,13.73,13.530000000000001,13.33,13.120000000000001,12.93,12.72,12.530000000000001,12.14,N/A,N/A -2012,1,4,3,30,102920,101690,100500,74.09,0,6.93,7.49,7.640000000000001,7.73,7.79,7.8500000000000005,7.890000000000001,7.930000000000001,7.99,172.3,172.8,173.08,173.33,173.57,173.78,174,174.19,174.6,14.67,14.24,14.040000000000001,13.84,13.63,13.450000000000001,13.24,13.05,12.66,N/A,N/A -2012,1,4,4,30,102840,101620,100430,74.82000000000001,0,7.13,7.76,7.930000000000001,8.040000000000001,8.120000000000001,8.19,8.24,8.28,8.36,179.02,179.51,179.76,179.99,180.20000000000002,180.38,180.59,180.77,181.13,15.290000000000001,14.89,14.700000000000001,14.5,14.290000000000001,14.11,13.9,13.71,13.32,N/A,N/A -2012,1,4,5,30,102800,101580,100390,75.15,0,7.48,8.08,8.24,8.34,8.4,8.45,8.49,8.53,8.58,194.38,193.78,193.46,193.16,192.88,192.63,192.39000000000001,192.17000000000002,191.74,15.83,15.450000000000001,15.26,15.06,14.86,14.67,14.47,14.27,13.88,N/A,N/A -2012,1,4,6,30,102760,101540,100360,73.16,0,8.66,9.52,9.74,9.86,9.94,9.99,10.03,10.06,10.09,191.12,191.66,192.06,192.44,192.81,193.14000000000001,193.48000000000002,193.79,194.43,16.57,16.26,16.080000000000002,15.88,15.68,15.5,15.3,15.11,14.72,N/A,N/A -2012,1,4,7,30,102740,101520,100340,75.86,0,8.08,8.9,9.14,9.3,9.42,9.52,9.6,9.67,9.790000000000001,194.12,195.02,195.42000000000002,195.78,196.11,196.4,196.66,196.9,197.35,16.81,16.52,16.36,16.16,15.97,15.790000000000001,15.59,15.4,15.01,N/A,N/A -2012,1,4,8,30,102680,101470,100290,76.06,0,7.140000000000001,7.94,8.18,8.36,8.5,8.620000000000001,8.72,8.81,8.98,196.08,196.23000000000002,196.39000000000001,196.55,196.70000000000002,196.85,197,197.13,197.38,17.12,16.88,16.72,16.55,16.36,16.18,15.99,15.8,15.42,N/A,N/A -2012,1,4,9,30,102670,101460,100280,77.18,0,7.88,8.78,9.06,9.25,9.4,9.52,9.61,9.700000000000001,9.83,196.23000000000002,196.59,196.83,197.07,197.31,197.54,197.78,198.01,198.49,17.43,17.240000000000002,17.09,16.92,16.740000000000002,16.57,16.38,16.2,15.82,N/A,N/A -2012,1,4,10,30,102630,101420,100250,80.32000000000001,0,6.08,7.01,7.34,7.62,7.8500000000000005,8.040000000000001,8.2,8.33,8.51,194.56,195.98000000000002,196.71,197.41,198,198.51,198.94,199.3,199.87,17.62,17.46,17.330000000000002,17.18,17.02,16.86,16.68,16.51,16.15,N/A,N/A -2012,1,4,11,30,102630,101420,100250,80.18,0,6.67,7.67,7.99,8.22,8.39,8.52,8.59,8.66,8.72,201.12,201.33,201.47,201.57,201.64000000000001,201.71,201.79,201.86,202.11,17.81,17.7,17.580000000000002,17.44,17.27,17.12,16.93,16.76,16.39,N/A,N/A -2012,1,4,12,30,102620,101420,100240,82.39,0,5.45,6.37,6.7,6.98,7.23,7.44,7.640000000000001,7.82,8.09,201.4,201.99,202.59,203.43,204.56,205.77,207.35,208.84,211.6,17.64,17.5,17.39,17.25,17.11,16.98,16.85,16.73,16.54,N/A,N/A -2012,1,4,13,30,102630,101420,100250,87.25,0,3.85,4.83,5.24,5.61,5.9,6.140000000000001,6.34,6.54,6.96,185.82,186.1,186.55,187.33,188.54,189.94,191.94,193.98000000000002,198.77,17.59,17.54,17.47,17.37,17.25,17.13,16.990000000000002,16.86,16.580000000000002,N/A,N/A -2012,1,4,14,30,102660,101450,100280,86.5,0,3.0100000000000002,3.92,4.2700000000000005,4.57,4.84,5.08,5.48,5.86,6.25,194.19,193.71,193.27,192.43,191.95000000000002,191.67000000000002,193.89000000000001,196.44,201.96,17.76,17.740000000000002,17.66,17.53,17.39,17.25,17.14,17.05,16.87,N/A,N/A -2012,1,4,15,30,102670,101470,100300,89.13,0,3.98,4.96,5.29,5.47,5.59,5.68,5.8100000000000005,5.93,6.16,177.04,180.06,182.84,186.78,191.43,196.32,199.15,201.32,203.46,17.740000000000002,17.76,17.740000000000002,17.67,17.580000000000002,17.48,17.37,17.26,17.03,N/A,N/A -2012,1,4,16,30,102640,101430,100260,90.55,0,2.6,3.56,4.01,4.48,4.84,5.11,5.29,5.41,5.37,173.52,176.18,178.70000000000002,182.21,185.8,189.31,192.4,195.22,201.26,17.72,17.77,17.77,17.73,17.67,17.59,17.52,17.45,17.31,N/A,N/A -2012,1,4,17,30,102600,101400,100230,89.10000000000001,0,3.71,4.46,4.76,5.04,5.37,5.7,5.92,6.11,6.36,178.14000000000001,179.75,181.57,184.45000000000002,187.93,191.6,193.94,195.86,198.68,17.85,17.75,17.7,17.650000000000002,17.6,17.54,17.48,17.42,17.23,N/A,N/A -2012,1,4,18,30,102600,101390,100230,90.87,0,2.87,3.4,3.69,4.09,4.45,4.79,4.88,4.91,4.93,165.25,168.43,172.01,177.83,184.43,191.39000000000001,195.82,199.4,205.89000000000001,17.900000000000002,17.75,17.69,17.66,17.69,17.740000000000002,17.75,17.740000000000002,17.59,N/A,N/A -2012,1,4,19,30,102590,101390,100220,89.68,0,3.02,3.62,3.9,4.23,4.42,4.53,4.39,4.24,3.98,162.8,164.53,165.74,167.35,170.18,173.48,179.55,185.04,192.77,18.04,17.84,17.72,17.59,17.5,17.43,17.400000000000002,17.36,17.240000000000002,N/A,N/A -2012,1,4,20,30,102560,101360,100190,90.32000000000001,0,3.69,4.32,4.54,4.66,4.71,4.71,4.7,4.7,4.58,177.43,181.4,185,189.86,193.27,195.75,198.01,199.99,203.25,18.19,18.19,18.22,18.28,18.28,18.25,18.16,18.080000000000002,17.830000000000002,N/A,N/A -2012,1,4,21,30,102530,101330,100170,91.69,0,3.21,3.9,4.09,4.1,4.05,3.95,3.87,3.8000000000000003,3.71,159.89000000000001,166.15,171.3,177.94,182.57,185.9,189.33,192.4,197.97,18.07,18.14,18.2,18.28,18.29,18.28,18.22,18.18,18,N/A,N/A -2012,1,4,22,30,102510,101310,100140,92.37,0,3.3200000000000003,4.21,4.51,4.69,4.79,4.83,4.92,5.01,5.26,165.42000000000002,171.97,177.98,185.74,190.84,194.28,197.91,201.25,206.07,18.04,18.18,18.25,18.29,18.32,18.330000000000002,18.36,18.38,18.3,N/A,N/A -2012,1,4,23,30,102500,101300,100140,93.82000000000001,0,4.4,5.5,5.92,6.2700000000000005,6.48,6.6000000000000005,6.71,6.8,6.92,172.87,176.14000000000001,179.8,185.72,189.24,191.29,192.41,193.28,195.38,17.97,18.03,18.13,18.32,18.41,18.44,18.39,18.330000000000002,18.13,N/A,N/A -2012,1,5,0,30,102530,101330,100170,95.24,0,3.86,5.11,5.66,6.2,6.51,6.67,6.78,6.87,6.91,173.47,180.98,186.24,191.56,194.49,195.97,197.26,198.41,200.89000000000001,17.84,18.16,18.35,18.57,18.69,18.76,18.75,18.73,18.57,N/A,N/A -2012,1,5,1,30,102540,101330,100170,95.24,0,3.81,5.32,5.97,6.44,6.7,6.8100000000000005,6.93,7.03,7.22,171.95000000000002,179.15,183.64000000000001,187.08,189.37,190.9,192.63,194.25,197.28,17.740000000000002,18.16,18.39,18.580000000000002,18.68,18.72,18.72,18.7,18.52,N/A,N/A -2012,1,5,2,30,102560,101360,100200,94.42,0,3.77,5.36,6.09,6.76,7.15,7.34,7.57,7.78,7.95,184.05,189.09,193.49,199.23000000000002,201.71,202.15,202.56,202.96,205.1,17.94,18.400000000000002,18.580000000000002,18.650000000000002,18.67,18.67,18.68,18.69,18.59,N/A,N/A -2012,1,5,3,30,102560,101360,100200,94.81,0,3.63,5.26,5.98,6.55,6.8,6.86,6.8500000000000005,6.84,6.74,192.54,195.6,197.8,200.05,202.35,204.56,206.9,209.03,213.31,17.85,18.18,18.35,18.53,18.66,18.76,18.830000000000002,18.87,18.78,N/A,N/A -2012,1,5,4,30,102550,101340,100180,94.5,0,4.51,5.99,6.5600000000000005,6.890000000000001,6.98,6.92,6.92,6.93,6.8500000000000005,198.23000000000002,199.11,200.84,204.29,207.51,210.42000000000002,213.07,215.43,220,17.900000000000002,18.16,18.32,18.53,18.6,18.59,18.66,18.73,18.71,N/A,N/A -2012,1,5,5,30,102550,101350,100190,94.7,0,4.01,5.54,6.16,6.57,6.76,6.82,6.83,6.82,6.67,210.15,211.70000000000002,214.1,218.62,221.78,224.05,226.47,228.69,232.92000000000002,17.86,18.21,18.41,18.63,18.77,18.86,18.96,19.04,19.02,N/A,N/A -2012,1,5,6,30,102580,101370,100210,96.59,0,2.17,3.44,4.0600000000000005,4.82,5.39,5.83,6.16,6.45,6.76,252.89000000000001,243.67000000000002,238.91,237.91,238.20000000000002,239.21,240.6,241.96,244.88,17.63,17.85,17.97,18.12,18.25,18.36,18.48,18.580000000000002,18.72,N/A,N/A -2012,1,5,7,30,102620,101410,100240,99.23,0,2.77,2.7800000000000002,2.8000000000000003,2.9,3.08,3.29,3.5500000000000003,3.8000000000000003,4.36,335.01,314.33,301.81,289.49,280.5,273.21,268.05,263.62,258.07,15.99,16.5,16.8,17,17.11,17.17,17.18,17.18,17.150000000000002,N/A,N/A -2012,1,5,8,30,102610,101400,100230,99.19,0,2.23,2.39,2.49,2.65,2.7800000000000002,2.91,3.09,3.31,4.18,320.53000000000003,307.54,298.78000000000003,289.18,283.03000000000003,278.8,272.17,265.44,251.83,16.71,16.59,16.55,16.53,16.47,16.38,16.36,16.43,17.31,N/A,N/A -2012,1,5,9,30,102610,101400,100230,99.31,0,2.37,2.59,2.66,2.72,2.7600000000000002,2.8000000000000003,2.82,2.84,2.97,292.03000000000003,288.99,287.25,285.77,284.31,282.93,281.96,281.2,278.46,16.96,16.77,16.68,16.580000000000002,16.47,16.37,16.26,16.15,16.01,N/A,N/A -2012,1,5,10,30,102620,101410,100240,99.3,0,3.54,3.71,3.73,3.72,3.68,3.63,3.5500000000000003,3.48,3.38,309.38,306.93,305.37,303.65000000000003,301.96,300.40000000000003,298.01,295.82,292.14,16.73,16.52,16.43,16.330000000000002,16.23,16.13,16.04,15.950000000000001,15.75,N/A,N/A -2012,1,5,11,30,102610,101400,100220,99.16,0,2.3000000000000003,2.57,2.69,2.8000000000000003,2.91,3,3.09,3.17,3.29,311.17,303.82,299.34000000000003,295.39,291.08,286.8,283.68,281.05,277.61,16.59,16.38,16.3,16.22,16.13,16.04,15.950000000000001,15.860000000000001,15.68,N/A,N/A -2012,1,5,12,30,102600,101390,100210,99.19,0,2.06,1.85,1.7,1.55,1.58,1.69,1.75,1.8,2.0100000000000002,341.03000000000003,332.25,320.17,301.43,286.26,272.38,267.07,263.64,266.9,15.91,15.72,15.67,15.65,15.64,15.620000000000001,15.540000000000001,15.450000000000001,15.33,N/A,N/A -2012,1,5,13,30,102600,101390,100210,99.26,0,1.25,1.11,0.97,0.81,0.8,0.85,1.1400000000000001,1.52,2.48,353.42,348.44,340.72,328.94,318.40000000000003,308.07,307.18,306.79,305.02,15.5,15.24,15.11,14.97,14.81,14.64,14.57,14.73,16.26,N/A,N/A -2012,1,5,14,30,102610,101390,100210,99.2,0,1.76,1.74,1.69,1.6300000000000001,1.57,1.52,1.9000000000000001,2.2600000000000002,2.34,18.53,21.900000000000002,24.62,27.96,32.93,37.96,25.09,9.84,344.16,14.84,14.530000000000001,14.36,14.18,13.9,13.61,15.030000000000001,16.240000000000002,17.03,N/A,N/A -2012,1,5,15,30,102600,101380,100200,99.17,0,0.88,0.84,0.81,0.77,0.74,0.72,1.24,1.84,2.04,52.18,53.79,54.39,54.800000000000004,50.57,45.09,17.82,345.11,326.39,14.72,14.41,14.25,14.07,13.8,13.52,15.610000000000001,17.150000000000002,17.42,N/A,N/A -2012,1,5,16,30,102570,101350,100180,99.2,0,1.8800000000000001,1.92,1.9100000000000001,1.8900000000000001,1.74,1.58,1.21,0.98,0.99,96.27,99.92,103.01,106.9,108.72,109.62,66.63,35.31,345.53000000000003,14.85,14.540000000000001,14.39,14.24,14.09,13.950000000000001,15.67,17.02,17.56,N/A,N/A -2012,1,5,17,30,102520,101300,100130,99.18,0,1.84,1.95,2,2.04,2.11,2.19,1.6400000000000001,1.21,0.61,99.62,102.71000000000001,105.3,108.51,114.31,120.91,112.28,101.74000000000001,48.71,15.46,15.19,15.05,14.89,14.64,14.38,15.41,16.34,17.17,N/A,N/A -2012,1,5,18,30,102480,101260,100090,98.41,0,1.12,1.17,1.19,1.23,1.52,2,1.86,1.6400000000000001,0.8,142.31,142.3,142.23,142.06,150.13,163.79,162.63,159.58,149.58,15.96,15.65,15.48,15.280000000000001,15.42,15.67,16.06,16.42,17.09,N/A,N/A -2012,1,5,19,30,102450,101240,100070,98.09,0,1.3900000000000001,1.52,1.58,1.6400000000000001,1.8,1.99,1.9000000000000001,1.8,1.42,154.83,154.24,153.52,152.45000000000002,152.24,152.38,158.07,162.92000000000002,169.11,16.42,16.11,15.97,15.84,15.57,15.280000000000001,15.860000000000001,16.43,17.34,N/A,N/A -2012,1,5,20,30,102400,101190,100030,97.85000000000001,0,0.6,0.78,1.02,1.54,2.05,2.57,3.02,3.38,3.2800000000000002,201.27,204.85,206.39000000000001,207.64000000000001,206.70000000000002,204.54,202.08,199.72,196.82,16.5,16.18,16.05,15.950000000000001,16.11,16.35,16.78,17.13,17.28,N/A,N/A -2012,1,5,21,30,102370,101160,99990,98.43,0,0.68,0.73,0.9500000000000001,1.61,2.16,2.61,3.02,3.41,3.85,176.29,174.70000000000002,175.34,178.4,181.16,183.55,186.26,188.81,192.27,16.7,16.42,16.31,16.23,16.37,16.580000000000002,16.88,17.12,17.32,N/A,N/A -2012,1,5,22,30,102320,101120,99950,97.3,0,1.97,2.32,2.62,3.06,3.43,3.73,3.89,4,4.08,133.98,141.08,146.78,154.34,158.54,160.92000000000002,163.78,166.71,175.18,17.1,16.88,16.94,17.2,17.34,17.43,17.47,17.51,17.57,N/A,N/A -2012,1,5,23,30,102290,101080,99920,97.41,0,3.94,4.59,4.75,4.86,4.89,4.89,4.91,4.93,5.03,151.42000000000002,151.56,151.78,152.20000000000002,154.29,156.93,160.62,164.05,170.61,17.73,17.53,17.46,17.45,17.59,17.77,17.85,17.91,17.87,N/A,N/A -2012,1,6,0,30,102270,101070,99910,97.04,0,4.86,5.69,5.93,6.09,6.04,5.91,5.87,5.84,5.96,158.93,159.41,160.34,162,164.38,166.81,169.52,172.01,177.23,17.66,17.52,17.5,17.55,17.69,17.85,17.95,18.03,18.12,N/A,N/A -2012,1,6,1,30,102250,101040,99890,99.26,0,5.19,5.5600000000000005,5.69,5.86,6.24,6.71,6.84,6.91,6.88,169.13,170.07,170.89000000000001,172.02,175.3,179.43,181.22,182.57,184.88,16.75,16.52,16.41,16.32,17.44,18.97,19.06,18.98,18.68,N/A,N/A -2012,1,6,2,30,102240,101030,99870,99.23,0,5.01,5.33,5.53,5.8500000000000005,6.25,6.68,6.98,7.22,7.38,161.57,162.98,165.24,169.02,174.14000000000001,179.65,183.1,185.92000000000002,189.15,16.65,16.39,16.27,16.16,17.11,18.400000000000002,18.79,19.01,18.8,N/A,N/A -2012,1,6,3,30,102210,101010,99850,99.24000000000001,0,4.79,5.29,5.58,6.0200000000000005,6.49,6.96,7.28,7.53,7.79,165.74,168.26,171.23,176.13,180.65,184.86,187.93,190.53,194.03,16.84,16.66,16.73,16.990000000000002,17.59,18.26,18.54,18.72,18.64,N/A,N/A -2012,1,6,4,30,102170,100970,99810,98.47,0,4.29,5.32,6.11,7.3100000000000005,7.8500000000000005,8.02,8.22,8.42,8.700000000000001,175.8,179.36,183.41,189.93,192.85,193.82,194.82,195.73000000000002,197.31,17.28,17.32,17.72,18.48,18.740000000000002,18.77,18.77,18.76,18.580000000000002,N/A,N/A -2012,1,6,5,30,102130,100940,99780,94.8,0,4.55,6.01,6.7,7.44,8.05,8.57,8.82,9.02,9.26,180.28,183.55,186.73,191.31,194.6,197.13,197.28,197.05,195.97,18,18.150000000000002,18.26,18.41,18.5,18.56,18.51,18.44,18.25,N/A,N/A -2012,1,6,6,30,102120,100920,99760,94.4,0,3.75,5.23,5.92,6.66,7.42,8.17,8.47,8.66,8.91,182.76,186.28,188.95000000000002,191.99,194.88,197.66,199.21,200.44,202.12,18.05,18.26,18.31,18.32,18.36,18.42,18.41,18.39,18.21,N/A,N/A -2012,1,6,7,30,102100,100910,99750,94.39,0,4.6000000000000005,6.11,6.76,7.3500000000000005,7.930000000000001,8.49,8.97,9.36,9.41,181.91,183.96,185.6,187.65,189.36,190.85,192.78,194.57,196.96,18.02,18.18,18.22,18.240000000000002,18.23,18.21,18.17,18.12,17.95,N/A,N/A -2012,1,6,8,30,102060,100860,99700,94.62,0,4.58,6.09,6.8,7.5600000000000005,8.21,8.790000000000001,9.3,9.73,10.08,178.93,181.92000000000002,184,186.31,188.89000000000001,191.52,195.03,198.13,199.63,17.97,18.1,18.150000000000002,18.19,18.26,18.330000000000002,18.400000000000002,18.44,18.28,N/A,N/A -2012,1,6,9,30,102020,100830,99670,93.27,0,5.45,7.1000000000000005,7.82,8.540000000000001,9.18,9.76,10.17,10.5,10.84,187.74,188.67000000000002,189.6,190.89000000000001,192.71,194.71,196.08,197.12,196.92000000000002,18.25,18.42,18.490000000000002,18.55,18.6,18.64,18.580000000000002,18.51,18.27,N/A,N/A -2012,1,6,10,30,102000,100810,99650,93.43,0,5.48,7.2,8,8.8,9.49,10.1,10.540000000000001,10.92,11.46,182.42000000000002,184.4,185.89000000000001,187.59,189.06,190.38,191.51,192.53,194.31,18.22,18.43,18.51,18.580000000000002,18.61,18.63,18.59,18.54,18.32,N/A,N/A -2012,1,6,11,30,101990,100790,99640,91.66,0,6.55,8.27,9,9.69,10.26,10.75,11.1,11.4,11.8,188.52,189.70000000000002,190.54,191.51,192.41,193.24,193.95000000000002,194.57,195.4,18.43,18.59,18.63,18.650000000000002,18.650000000000002,18.63,18.57,18.490000000000002,18.240000000000002,N/A,N/A -2012,1,6,12,30,101970,100770,99620,92.57000000000001,0,6.1000000000000005,7.71,8.41,9.11,9.74,10.31,10.77,11.19,11.84,192.59,193.64000000000001,194.46,195.41,196.01,196.41,196.52,196.59,197.01,18.41,18.57,18.63,18.68,18.71,18.73,18.67,18.6,18.34,N/A,N/A -2012,1,6,13,30,101950,100760,99600,91.37,0,6.63,8.24,8.870000000000001,9.44,9.91,10.32,10.620000000000001,10.870000000000001,11.19,197.18,197.98000000000002,198.62,199.35,199.97,200.51,200.72,200.83,200.12,18.5,18.61,18.6,18.54,18.47,18.37,18.240000000000002,18.12,17.85,N/A,N/A -2012,1,6,14,30,101980,100790,99630,90.29,0,6.93,8.57,9.24,9.85,10.290000000000001,10.63,10.75,10.83,11,196.31,197.45000000000002,198.29,199.24,199.84,200.22,199.98000000000002,199.65,198.8,18.48,18.61,18.64,18.66,18.69,18.72,18.72,18.7,18.48,N/A,N/A -2012,1,6,15,30,102000,100810,99650,91.88,0,6.74,8.3,8.98,9.65,10.28,10.88,11.4,11.85,12.32,198.4,199.46,200.33,201.48000000000002,202.86,204.3,205.6,206.70000000000002,207.22,18.330000000000002,18.39,18.37,18.34,18.29,18.25,18.19,18.13,17.97,N/A,N/A -2012,1,6,16,30,102000,100800,99640,80.48,0,11.53,13.68,14.58,15.39,16.09,16.7,17.22,17.68,18.27,225.3,224.45000000000002,223.93,223.4,222.85,222.31,221.73000000000002,221.19,220.33,18.18,18.19,18.16,18.13,18.1,18.09,18.080000000000002,18.07,17.98,N/A,N/A -2012,1,6,17,30,101920,100730,99570,86.8,0,4.74,5.93,6.47,7.01,7.55,8.07,8.51,8.88,9.36,220.72,218.14000000000001,216.64000000000001,215.26,214.42000000000002,213.85,213.34,212.87,211.97,17.96,17.98,17.98,18,18.06,18.14,18.2,18.240000000000002,18.16,N/A,N/A -2012,1,6,18,30,101890,100700,99540,89.29,0,4.21,5.49,6.11,6.74,7.19,7.53,7.7700000000000005,7.99,8.48,199.47,200.36,201.29,202.44,203.57,204.61,205.14000000000001,205.54,205.75,18.07,18.21,18.330000000000002,18.48,18.55,18.580000000000002,18.54,18.5,18.35,N/A,N/A -2012,1,6,19,30,101860,100660,99510,91.84,0,3.23,4.23,4.72,5.28,5.74,6.13,6.43,6.68,7.140000000000001,177.55,178.13,179.58,182.44,185.97,189.68,191.29,192.43,193.35,18.1,18.07,18.07,18.12,18.2,18.29,18.36,18.41,18.39,N/A,N/A -2012,1,6,20,30,101820,100630,99470,93.72,0,4.7700000000000005,5.87,6.41,7.0200000000000005,7.48,7.8500000000000005,8.040000000000001,8.19,8.540000000000001,160.58,163.01,165.62,169.75,174.53,179.39000000000001,181.69,183.41,185.86,18.21,18.21,18.27,18.41,18.53,18.650000000000002,18.650000000000002,18.64,18.46,N/A,N/A -2012,1,6,21,30,101770,100580,99430,94.61,0,4.7,6.04,6.640000000000001,7.2700000000000005,7.88,8.48,8.89,9.21,9.38,162.72,166.32,169.47,173.79,177.58,181.03,183.81,186.17000000000002,188.54,18.330000000000002,18.490000000000002,18.56,18.650000000000002,18.69,18.72,18.68,18.64,18.42,N/A,N/A -2012,1,6,22,30,101720,100530,99380,93.01,0,4.87,6.37,7.01,7.640000000000001,8.18,8.65,8.76,8.8,8.92,157.87,160.95000000000002,163.82,167.89000000000001,172.97,178.49,181.12,183.13,187.28,18.32,18.56,18.66,18.78,18.89,18.990000000000002,18.95,18.89,18.740000000000002,N/A,N/A -2012,1,6,23,30,101710,100510,99360,93.2,0,6.08,7.68,8.44,9.25,9.950000000000001,10.57,10.97,11.26,11.18,153.42000000000002,155.76,157.8,160.66,163.86,167.1,169.62,171.71,173.47,18.05,18.19,18.28,18.41,18.52,18.62,18.580000000000002,18.51,18.240000000000002,N/A,N/A -2012,1,7,0,30,101700,100510,99360,92.82000000000001,0,6.93,8.4,8.99,9.56,10.13,10.69,11.17,11.58,11.94,183.66,184.87,185.86,187.03,187.97,188.76,189.39000000000001,189.95000000000002,191.07,18.330000000000002,18.42,18.43,18.42,18.39,18.37,18.31,18.25,18.01,N/A,N/A -2012,1,7,1,30,101670,100480,99330,91.82000000000001,0,5.25,6.8100000000000005,7.5200000000000005,8.22,8.82,9.34,9.78,10.15,10.55,182.08,183.33,184.21,185.15,186.19,187.22,188.67000000000002,190.08,192.73000000000002,18.11,18.23,18.25,18.25,18.2,18.14,18.02,17.89,17.580000000000002,N/A,N/A -2012,1,7,2,30,101680,100480,99330,93.43,0,6.09,7.62,8.26,8.88,9.42,9.9,10.31,10.66,11.13,180.29,180.73,181.08,181.42000000000002,181.78,182.13,182.55,182.96,183.82,18.11,18.16,18.13,18.080000000000002,18.01,17.93,17.82,17.72,17.47,N/A,N/A -2012,1,7,3,30,101660,100470,99310,92.10000000000001,0,5.5200000000000005,6.88,7.46,8.03,8.53,8.98,9.27,9.5,9.700000000000001,179.9,180.93,181.79,182.86,184.02,185.17000000000002,186.5,187.81,191.52,17.96,17.96,17.93,17.87,17.79,17.71,17.61,17.51,17.28,N/A,N/A -2012,1,7,4,30,101660,100460,99310,91.62,0,5.92,7.36,7.97,8.55,9.06,9.53,9.96,10.35,11.03,187.08,187.34,187.5,187.65,187.75,187.83,187.91,188,188.81,18.11,18.16,18.14,18.09,18.01,17.93,17.830000000000002,17.73,17.5,N/A,N/A -2012,1,7,5,30,101620,100430,99280,92.02,0,6.18,7.76,8.45,9.11,9.69,10.22,10.69,11.11,11.66,188.58,189.62,190.31,190.98,191.44,191.78,191.79,191.73000000000002,191.24,18.23,18.330000000000002,18.34,18.32,18.29,18.240000000000002,18.17,18.09,17.830000000000002,N/A,N/A -2012,1,7,6,30,101630,100440,99290,92.5,0,5.32,6.69,7.25,7.7700000000000005,8.19,8.55,8.89,9.200000000000001,9.82,174.76,175.82,176.62,177.54,178.61,179.72,181.25,182.75,185.52,18.07,18.150000000000002,18.150000000000002,18.13,18.09,18.04,17.97,17.91,17.78,N/A,N/A -2012,1,7,7,30,101650,100460,99300,94.28,0,4.8500000000000005,6.2700000000000005,6.93,7.6000000000000005,8.2,8.76,9.290000000000001,9.77,10.34,176.20000000000002,178.1,179.61,181.43,183.18,184.86,186.6,188.28,192.01,18.02,18.14,18.17,18.19,18.18,18.16,18.11,18.07,17.94,N/A,N/A -2012,1,7,8,30,101630,100440,99290,94.68,0,4.16,5.5200000000000005,6.15,6.8100000000000005,7.58,8.42,8.790000000000001,9.05,9.52,173.78,177.95000000000002,181.36,185.65,190.05,194.55,196.42000000000002,197.68,199.69,17.94,18.1,18.17,18.240000000000002,18.31,18.39,18.35,18.3,18.17,N/A,N/A -2012,1,7,9,30,101630,100440,99290,94.64,0,4.23,5.67,6.3100000000000005,6.9,7.53,8.19,8.45,8.64,9.07,168.52,172.24,175.63,180.20000000000002,185.21,190.44,192.48000000000002,193.84,196.4,17.95,18.16,18.26,18.34,18.39,18.43,18.400000000000002,18.36,18.2,N/A,N/A -2012,1,7,10,30,101640,100450,99300,94.58,0,4.2,5.72,6.46,7.2700000000000005,7.97,8.6,8.89,9.09,9.44,173.47,176.93,180.24,185.42000000000002,189.6,193.12,194.63,195.58,197.31,17.97,18.2,18.330000000000002,18.5,18.61,18.7,18.71,18.7,18.57,N/A,N/A -2012,1,7,11,30,101660,100470,99320,95.33,0,4.69,6.08,6.7700000000000005,7.5200000000000005,7.92,8.1,8.2,8.290000000000001,8.55,157.68,159.32,161.1,164.01,171.14000000000001,180.46,184.02,186.19,189.79,17.79,17.87,17.94,18.07,18.23,18.400000000000002,18.43,18.43,18.34,N/A,N/A -2012,1,7,12,30,101670,100480,99330,96.76,0,4.5200000000000005,5.98,6.84,7.84,8.48,8.86,9.06,9.200000000000001,9.34,170.41,173.46,176.76,182.17000000000002,185.63,187.74,189.20000000000002,190.39000000000001,191.77,17.61,18.06,18.38,18.75,18.96,19.080000000000002,19.080000000000002,19.06,18.76,N/A,N/A -2012,1,7,13,30,101690,100500,99350,96.02,0,4.17,5.46,6.12,6.88,7.54,8.14,8.43,8.620000000000001,8.84,158.99,162.02,164.83,168.88,174.29,180.48,183.62,185.86,189.37,17.78,17.95,18.07,18.2,18.41,18.650000000000002,18.71,18.73,18.63,N/A,N/A -2012,1,7,14,30,101720,100530,99380,97.83,0.4,4.54,6.12,7.17,8.55,9.15,9.24,9.200000000000001,9.14,8.88,160.53,166.20000000000002,171.95000000000002,181.06,185.49,186.86,188.71,190.44,193.42000000000002,17.400000000000002,16.92,17.27,18.580000000000002,19.03,19.03,19.01,18.990000000000002,18.79,N/A,N/A -2012,1,7,15,30,101750,100560,99410,95.9,0,4.67,6.23,7.09,8.08,8.52,8.6,8.61,8.61,8.59,158.42000000000002,160.97,163.9,169.22,173.16,176.01,178.13,179.9,183.21,17.82,17.6,17.77,18.47,18.86,19.05,19.06,19.04,18.84,N/A,N/A -2012,1,7,16,30,101730,100540,99390,97.14,0,4.09,5.58,6.48,7.55,8.040000000000001,8.13,8.13,8.120000000000001,8.07,159.98,162.79,167.78,178.09,183.76,186.12,188.17000000000002,189.94,192.94,17.6,18,18.43,19.16,19.5,19.61,19.54,19.44,19.13,N/A,N/A -2012,1,7,17,30,101720,100530,99380,97.06,0,4.59,6.07,6.78,7.390000000000001,7.61,7.59,7.5600000000000005,7.54,7.47,159.36,162.49,167.57,177.36,182.71,185.13,187.48,189.57,193.99,17.7,18.14,18.59,19.32,19.61,19.650000000000002,19.59,19.51,19.28,N/A,N/A -2012,1,7,18,30,101730,100540,99400,95.92,0,4.66,6.34,7.05,7.29,7.33,7.26,7.18,7.12,7.0200000000000005,157.22,160.36,165.77,176.59,182.41,185.02,187.8,190.34,195.70000000000002,18,18.46,18.79,19.19,19.35,19.36,19.32,19.27,19.1,N/A,N/A -2012,1,7,19,30,101720,100530,99380,95.02,0,4.93,6.32,6.78,6.94,6.99,6.97,6.99,7.01,7.11,155.3,161,170.53,189.21,197.8,200.47,203.36,206.05,211.98000000000002,18.240000000000002,18.31,18.54,19.11,19.29,19.26,19.19,19.12,19.01,N/A,N/A -2012,1,7,20,30,101690,100510,99360,93.89,0,4.57,6.11,6.62,6.7700000000000005,6.84,6.86,6.890000000000001,6.92,7.12,181.6,185.77,191.9,203.11,209.08,211.88,215.09,218.07,223.18,18.51,18.86,19.07,19.330000000000002,19.43,19.44,19.46,19.490000000000002,19.43,N/A,N/A -2012,1,7,21,30,101690,100500,99360,93.19,0,4.92,6.44,6.92,6.98,7.04,7.1000000000000005,7.19,7.28,7.51,174,178.06,184.95000000000002,199.17000000000002,206.35,209.03,211.64000000000001,214.03,217.66,18.59,18.85,19.05,19.42,19.580000000000002,19.62,19.66,19.69,19.59,N/A,N/A -2012,1,7,22,30,101670,100480,99330,94.46000000000001,0,5.08,6.42,6.84,6.92,6.96,6.96,6.99,7.0200000000000005,7.12,168.63,175.13,181.44,190.83,195.67000000000002,197.5,199.5,201.35,204.4,18.14,18.2,18.5,19.330000000000002,19.68,19.69,19.66,19.62,19.43,N/A,N/A -2012,1,7,23,30,101680,100490,99340,94.56,0,5.07,6.82,7.53,7.82,7.930000000000001,7.91,7.91,7.92,7.890000000000001,167.09,172.44,176.89000000000001,182.15,185.07,186.37,187.93,189.4,192.29,18.080000000000002,18.22,18.61,19.53,19.84,19.73,19.66,19.59,19.36,N/A,N/A -2012,1,8,0,30,101690,100500,99350,95.55,0,5.51,7.15,7.82,8.21,8.34,8.32,8.33,8.35,8.34,164.44,168.73,172.6,177.89000000000001,180.71,182,183.63,185.17000000000002,188.25,17.85,18.09,18.56,19.55,19.86,19.77,19.7,19.63,19.41,N/A,N/A -2012,1,8,1,30,101690,100500,99360,96.16,0.4,5.05,6.7,7.48,8.13,8.38,8.4,8.39,8.370000000000001,8.32,164.82,168.38,172.14000000000001,178.26,181.71,183.43,184.78,185.94,188.14000000000001,17.740000000000002,17.37,17.76,19.16,19.78,19.96,19.900000000000002,19.8,19.51,N/A,N/A -2012,1,8,2,30,101700,100510,99370,96.83,0,4.7,6.28,7.04,7.61,7.9,8.02,8.09,8.15,8.23,166.88,172.22,177.05,183.6,187.29,189.17000000000002,190.6,191.81,194.01,17.6,17.2,17.66,19.3,19.98,20.1,20.02,19.91,19.61,N/A,N/A -2012,1,8,3,30,101720,100530,99380,97.35000000000001,0,4.8100000000000005,6.05,6.75,7.63,8.1,8.290000000000001,8.370000000000001,8.43,8.45,167.93,169.52,171.22,174.13,176.48,178.37,180.12,181.69,184.71,17.490000000000002,17.71,18.14,19.07,19.55,19.77,19.77,19.72,19.47,N/A,N/A -2012,1,8,4,30,101700,100510,99360,95.2,0,4.22,6.11,7.04,7.8100000000000005,8.19,8.31,8.33,8.34,8.22,150.6,158.41,164.68,171.99,175.95000000000002,177.6,178.83,179.84,181.47,17.98,18.5,18.96,19.67,19.97,20.04,19.98,19.89,19.62,N/A,N/A -2012,1,8,5,30,101710,100520,99380,95.51,0,4.44,6.17,7.29,8.85,9.65,9.88,10.05,10.200000000000001,10.27,162.3,166.24,171.58,181.85,187.47,189.49,191.3,192.9,195.46,17.900000000000002,17.900000000000002,18.25,19.18,19.64,19.830000000000002,19.87,19.87,19.66,N/A,N/A -2012,1,8,6,30,101720,100530,99390,95.62,0,4.64,6.38,7.46,8.88,9.77,10.28,10.44,10.5,10.46,160.47,164.9,168.74,174.54,179.68,184.13,186.16,187.49,189.85,18.01,17.88,18.1,18.86,19.36,19.71,19.73,19.69,19.5,N/A,N/A -2012,1,8,7,30,101750,100560,99410,93.78,0,5.08,6.8,7.84,9.36,10.55,11.44,11.71,11.78,11.69,170.11,172.20000000000002,174.08,177.1,180.34,183.77,185.53,186.66,188.23,18.41,18.43,18.55,19.01,19.5,20.03,20.13,20.11,19.81,N/A,N/A -2012,1,8,8,30,101720,100540,99390,92.67,0,5.12,7.13,8.16,9.3,10.27,11.13,11.41,11.55,11.61,161.61,164.70000000000002,167.33,171.13,175.11,179.18,181.4,182.99,185.77,18.68,18.85,19.05,19.56,19.89,20.12,20.13,20.1,19.92,N/A,N/A -2012,1,8,9,30,101690,100500,99360,92.42,0,5.93,8.08,9.13,10.13,11.02,11.84,12.67,13.46,13.81,158.49,161.83,164.4,167.29,170.76,174.61,177.89000000000001,180.87,183.38,18.69,18.85,18.97,19.23,19.45,19.63,19.81,19.97,19.92,N/A,N/A -2012,1,8,10,30,101700,100510,99360,92.16,0,7.33,9.13,9.99,10.93,11.89,12.89,13.55,14.08,14.13,168.52,170.45000000000002,172.22,174.52,176.59,178.55,180.43,182.16,185.70000000000002,18.72,18.88,19.01,19.240000000000002,19.53,19.84,19.96,20.03,19.87,N/A,N/A -2012,1,8,11,30,101720,100530,99390,92.19,0,5.95,7.71,8.51,9.34,10.14,10.89,11.63,12.31,13.31,176.66,177.24,177.58,177.94,178.36,178.81,179.53,180.31,183.62,18.740000000000002,18.94,19.01,19.09,19.17,19.240000000000002,19.3,19.35,19.39,N/A,N/A -2012,1,8,12,30,101740,100550,99400,91.92,7,5.86,7.68,8.53,9.39,10.19,10.97,11.67,12.33,13.450000000000001,191.11,189.29,188.36,187.75,187.47,187.41,187.72,188.11,189.35,18.82,18.95,18.97,19.01,19.080000000000002,19.17,19.22,19.27,19.23,N/A,N/A -2012,1,8,13,30,101750,100560,99410,91.99,0.4,5.9,7.7,8.53,9.44,10.32,11.17,11.98,12.72,13.97,187.6,186.41,185.77,185.39000000000001,185.27,185.32,185.8,186.35,187.93,18.81,18.94,18.97,19,19.080000000000002,19.2,19.3,19.39,19.47,N/A,N/A -2012,1,8,14,30,101780,100600,99450,92.23,0,6.54,8.4,9.25,10.15,11.01,11.85,12.67,13.450000000000001,13.88,185.22,185.36,185.5,185.78,186.31,187,188.78,190.75,194.44,18.73,19.09,19.25,19.38,19.51,19.63,19.8,19.96,20.04,N/A,N/A -2012,1,8,15,30,101780,100600,99450,90.58,0,7.2700000000000005,9.36,10.31,11.22,11.77,12.1,12.11,12.05,12.120000000000001,182.05,183.17000000000002,184.28,185.96,187.61,189.20000000000002,190.5,191.61,192.94,19.11,19.56,19.8,20.09,20.3,20.46,20.51,20.53,20.3,N/A,N/A -2012,1,8,16,30,101790,100610,99460,92.65,0,5.8,7.67,8.66,9.85,10.73,11.370000000000001,11.6,11.71,11.74,174.85,177.58,179.76,182.48,184.52,186.04,187.01,187.76,189.32,18.78,19.14,19.39,19.77,20.05,20.26,20.34,20.39,20.17,N/A,N/A -2012,1,8,17,30,101790,100600,99450,93.21000000000001,0,5.0600000000000005,6.94,7.94,9.09,9.870000000000001,10.39,10.59,10.71,10.93,170.29,172.9,175.25,178.41,180.65,182.22,183.04,183.61,185.06,18.79,19.18,19.44,19.8,20.02,20.150000000000002,20.2,20.23,20.07,N/A,N/A -2012,1,8,18,30,101790,100610,99460,94.13,0,4.68,6.41,7.36,8.56,9.47,10.15,10.39,10.51,10.67,163.44,166.54,169.19,172.87,175.81,178.18,179.23,179.86,181.16,18.740000000000002,19.06,19.29,19.64,19.89,20.09,20.16,20.2,20.03,N/A,N/A -2012,1,8,19,30,101800,100610,99460,95.43,0,4.5,6.19,7.17,8.43,9.27,9.78,10.08,10.3,10.55,156.67000000000002,160.96,164.22,168.21,170.9,172.62,173.75,174.66,176.28,18.46,18.93,19.25,19.650000000000002,19.88,20.01,20.07,20.12,19.97,N/A,N/A -2012,1,8,20,30,101780,100590,99440,94.02,0,4.72,6.49,7.41,8.47,9.3,9.94,10.19,10.32,10.56,150.74,153.49,156.03,159.77,163.02,165.88,167.32,168.29,170.19,18.72,19.06,19.27,19.54,19.740000000000002,19.900000000000002,19.96,20,19.91,N/A,N/A -2012,1,8,21,30,101750,100570,99420,94.88,0,4.53,6.18,7.09,8.13,8.92,9.53,9.8,9.96,10.23,144.05,147.73,150.82,154.70000000000002,158.81,162.98,165.15,166.68,169.5,18.41,18.82,19.080000000000002,19.37,19.61,19.81,19.93,20,20.05,N/A,N/A -2012,1,8,22,30,101730,100540,99400,95.75,0,4.41,6.29,7.390000000000001,8.6,9.21,9.4,9.620000000000001,9.82,9.99,141.05,145.75,150.37,157.29,161.31,163.27,165.27,167.11,169.88,18.05,18.79,19.26,19.75,19.990000000000002,20.09,20.17,20.25,20.16,N/A,N/A -2012,1,8,23,30,101740,100550,99400,95.4,0,5.15,6.83,7.8500000000000005,9.27,10.17,10.68,10.82,10.870000000000001,10.97,142.31,144.9,147.51,151.96,156.31,160.37,162.17000000000002,163.34,165.69,18.06,18.01,18.29,19.1,19.6,19.92,20.01,20.04,19.98,N/A,N/A -2012,1,9,0,30,101740,100550,99410,95.61,0.4,5.34,7.07,8.11,9.46,10.16,10.43,10.6,10.73,10.75,134.14000000000001,136.69,140.36,147.63,151.95000000000002,154.24,156.21,157.94,160.64000000000001,18,17.54,17.78,18.86,19.48,19.85,19.990000000000002,20.07,19.94,N/A,N/A -2012,1,9,1,30,101740,100540,99400,97.46000000000001,0.4,5.0600000000000005,6.63,7.72,9.35,10.19,10.47,10.61,10.69,10.73,125.52,128.07,132.47,142.48,148.01,150.36,152.29,153.96,156.83,17.62,17.14,17.400000000000002,18.61,19.36,19.86,20.02,20.1,20.01,N/A,N/A -2012,1,9,2,30,101740,100540,99400,98.64,0.7000000000000001,5.21,6.65,7.65,9.1,9.83,10.07,10.15,10.19,10.22,124.53,127.28,132.23,143.11,149.23,152.02,154.21,156.08,158.99,17.39,16.81,17.07,18.32,19.2,19.85,20.080000000000002,20.2,20.13,N/A,N/A -2012,1,9,3,30,101720,100530,99380,99.14,0.4,6.74,7.930000000000001,8.68,9.8,10.47,10.82,10.89,10.9,10.86,129.26,130.96,133.22,137.57,142.23,146.94,149.12,150.62,153.13,17.3,17.240000000000002,17.400000000000002,17.8,18.57,19.55,19.78,19.86,19.73,N/A,N/A -2012,1,9,4,30,101700,100510,99370,95.07000000000001,0,6,7.63,8.51,9.540000000000001,10.06,10.22,10.24,10.24,10.32,130.86,133.09,135.99,141.16,146.25,151.04,152.14000000000001,152.42000000000002,154.66,18.1,18.14,18.150000000000002,18.16,18.97,20.26,20.32,20.14,19.92,N/A,N/A -2012,1,9,5,30,101680,100480,99340,98.8,0.4,6.05,7.3,8.17,9.540000000000001,10.23,10.48,10.43,10.33,10.13,125.24000000000001,126.88000000000001,129.41,134.54,139.27,143.42000000000002,145.16,146.25,148.3,17.36,17.21,17.44,18.13,18.990000000000002,19.91,20.080000000000002,20.080000000000002,19.91,N/A,N/A -2012,1,9,6,30,101660,100470,99320,96.72,0,6.69,8.09,8.84,9.81,10.82,11.870000000000001,11.76,11.44,11.16,124.5,125.9,127.3,129.6,133.24,137.70000000000002,143.08,147.8,149.9,18.14,18.080000000000002,18.05,18.01,18.13,18.31,19.2,20.11,20.17,N/A,N/A -2012,1,9,7,30,101650,100460,99310,95.65,0,6.46,7.930000000000001,8.67,9.49,10.44,11.47,12.200000000000001,12.77,12.35,123.81,124.75,125.71000000000001,127.2,129.62,132.69,137.32,141.81,146.3,18.35,18.32,18.29,18.26,18.16,18.03,18.41,18.84,19.56,N/A,N/A -2012,1,9,8,30,101630,100440,99290,95.38,0,4.22,5.95,6.890000000000001,7.88,8.84,9.8,10.76,11.69,13.14,126.97,127,127.21000000000001,127.68,128.7,130.14000000000001,132.42000000000002,134.9,141.71,18.47,18.54,18.55,18.56,18.53,18.490000000000002,18.46,18.44,18.68,N/A,N/A -2012,1,9,9,30,101630,100450,99300,93.86,0,5.38,6.91,7.7,8.620000000000001,9.49,10.35,11.15,11.88,12.870000000000001,130.14000000000001,130.6,131.39000000000001,133.37,135.44,137.71,140.23,142.72,147.11,18.75,18.87,18.91,18.94,18.96,18.98,19.01,19.04,19.22,N/A,N/A -2012,1,9,10,30,101540,100350,99200,93.62,53.1,6.5600000000000005,8.38,9.200000000000001,10.040000000000001,10.94,11.82,12.700000000000001,13.48,14.27,97.86,101.14,104.21000000000001,108.09,113.04,118.16,123.11,127.5,132.61,18.79,18.85,18.900000000000002,18.96,19.04,19.12,19.2,19.27,19.37,N/A,N/A -2012,1,9,11,30,101540,100360,99210,92.58,169.60000000000002,6.51,8.4,9.38,10.24,11.03,11.78,12.56,13.32,14.84,75.94,80.66,84.68,89.35000000000001,93.87,98.48,103.27,107.95,116.58,18.990000000000002,19.150000000000002,19.17,19.11,19.04,18.97,18.92,18.89,18.85,N/A,N/A -2012,1,9,12,30,101580,100390,99250,91.57000000000001,2.6,6.29,8.34,9.24,10.07,10.790000000000001,11.44,11.99,12.49,13.23,164.70000000000002,163.54,162.5,160.92000000000002,159.72,158.77,158.35,158.08,158.11,19.27,19.41,19.43,19.43,19.42,19.41,19.39,19.36,19.26,N/A,N/A -2012,1,9,13,30,101570,100380,99240,91.95,0,7.26,9.13,9.97,10.81,11.57,12.280000000000001,12.98,13.64,14.950000000000001,150.76,151.32,151.88,152.75,153.65,154.59,155.54,156.46,158.11,19.150000000000002,19.26,19.27,19.28,19.28,19.27,19.32,19.37,19.400000000000002,N/A,N/A -2012,1,9,14,30,101590,100400,99260,92.76,0,7.140000000000001,8.97,9.81,10.700000000000001,11.55,12.370000000000001,13.22,14.040000000000001,15.530000000000001,150.99,152.13,152.93,153.86,154.71,155.52,156.36,157.16,158.56,18.98,19.04,19.07,19.13,19.21,19.3,19.39,19.47,19.5,N/A,N/A -2012,1,9,15,30,101550,100370,99230,92.28,0,7.41,9.3,10.21,11.15,12.030000000000001,12.9,13.76,14.58,15.85,149.02,150.24,151.15,152.14000000000001,153.07,153.96,154.76,155.51,156.75,19.07,19.23,19.29,19.34,19.39,19.44,19.48,19.51,19.47,N/A,N/A -2012,1,9,16,30,101520,100340,99200,92.84,0,7.34,9.15,10.05,11.05,12,12.93,13.85,14.72,16.54,144.3,145.77,146.9,148.26,149.56,150.84,152.34,153.84,156.87,18.96,19.03,19.080000000000002,19.27,19.400000000000002,19.5,19.6,19.7,19.89,N/A,N/A -2012,1,9,17,30,101500,100320,99170,93.31,0,6.84,8.56,9.39,10.27,11.1,11.89,12.67,13.4,14.59,137.36,139.20000000000002,140.6,142.28,143.85,145.36,146.79,148.13,150.26,18.900000000000002,19.06,19.12,19.14,19.18,19.22,19.240000000000002,19.26,19.240000000000002,N/A,N/A -2012,1,9,18,30,101440,100260,99110,93.07000000000001,0.4,7.51,9.24,10.1,11,11.85,12.700000000000001,13.48,14.200000000000001,15.32,129.34,131.2,132.74,134.75,136.69,138.67000000000002,140.66,142.56,147.23,18.95,19.02,19.05,19.13,19.2,19.26,19.35,19.42,19.63,N/A,N/A -2012,1,9,19,30,101450,100260,99120,92.63,0,6.62,8.47,9.36,10.290000000000001,11.14,11.93,12.63,13.27,14.290000000000001,123,126.04,128.32,130.92000000000002,133.5,136.09,139.18,142.19,148.25,19.07,19.16,19.2,19.28,19.39,19.52,19.66,19.79,20.01,N/A,N/A -2012,1,9,20,30,101430,100250,99100,93.09,0,6.6000000000000005,8.290000000000001,9.1,10,10.86,11.73,12.43,13.06,13.39,114.83,117.83,120.4,123.97,127.49000000000001,131.14000000000001,134.31,137.17000000000002,143.94,18.94,19.01,19.04,19.150000000000002,19.3,19.5,19.64,19.77,19.88,N/A,N/A -2012,1,9,21,30,101300,100120,98980,92.61,0,8.870000000000001,10.73,11.52,12.31,13.02,13.66,14.18,14.620000000000001,14.93,113.42,114.96000000000001,116.56,119.11,122.5,126.39,130.88,135.15,140.65,18.990000000000002,19.06,19.080000000000002,19.11,19.26,19.48,19.73,19.95,19.91,N/A,N/A -2012,1,9,22,30,101320,100140,98990,93.42,0,7.82,9.52,10.290000000000001,11.02,11.67,12.26,12.82,13.32,13.86,97.29,99.17,100.76,102.77,105.17,107.87,111.45,115.06,124.56,18.8,18.88,18.900000000000002,18.91,18.93,18.95,18.92,18.89,19.12,N/A,N/A -2012,1,9,23,30,101310,100130,98980,93.83,0,7.8500000000000005,9.52,10.27,11,11.71,12.4,13.08,13.72,14.780000000000001,109.77,110.63,111.39,112.61,114.16,115.9,118.56,121.29,133.54,18.71,18.76,18.77,18.78,18.79,18.81,18.82,18.830000000000002,18.98,N/A,N/A -2012,1,10,0,30,101300,100120,98980,93.15,6.6000000000000005,7.3,9.1,9.950000000000001,10.83,11.66,12.450000000000001,13.1,13.68,13.86,122.03,122.13,122.4,122.93,123.81,124.93,127.41,130.05,142.21,18.88,18.96,18.96,18.97,18.97,18.97,18.94,18.91,19.55,N/A,N/A -2012,1,10,1,30,101280,100100,98960,92.73,16.1,7.4,9.21,10.05,10.96,11.74,12.44,12.97,13.42,14.040000000000001,112.57000000000001,114.95,116.31,117.95,119.89,121.99000000000001,125.37,128.83,138.26,18.96,19.02,19.02,19.01,19,19.01,19.02,19.04,19.26,N/A,N/A -2012,1,10,2,30,101290,100110,98970,91.94,56,8.69,10.63,11.4,11.98,12.34,12.55,12.6,12.6,12.64,110.45,112.39,114.44,117.29,120.33,123.4,127.18,130.8,140.54,19.11,19.2,19.21,19.2,19.240000000000002,19.3,19.28,19.240000000000002,19.11,N/A,N/A -2012,1,10,3,30,101370,100190,99040,93.34,132.6,4.14,5.78,6.28,6.2700000000000005,6.2,6.0600000000000005,5.99,5.94,5.91,135.49,130.3,130.06,137.16,142.96,147.92000000000002,150.42000000000002,151.99,152.9,18.97,19.16,19.16,19.02,18.92,18.830000000000002,18.68,18.54,18.21,N/A,N/A -2012,1,10,4,30,101260,100080,98940,94.2,22.700000000000003,3.97,5.24,5.87,6.65,7.36,8.01,8.49,8.870000000000001,9.06,34.11,48.78,60.74,72.46000000000001,82.16,90.3,97.14,103.13,108.52,18.76,18.830000000000002,18.82,18.8,18.8,18.830000000000002,18.81,18.77,18.41,N/A,N/A -2012,1,10,5,30,101230,100050,98900,93.99,18.7,1.9100000000000001,2.88,3.27,3.8200000000000003,4.32,4.79,5.33,5.86,6.5200000000000005,84.97,105.67,116.42,124.34,130.37,135.11,140.21,145.24,151.22,19.09,19.11,18.990000000000002,18.830000000000002,18.72,18.63,18.54,18.45,18.28,N/A,N/A -2012,1,10,6,30,101230,100050,98910,91.39,0.4,4.99,6.0600000000000005,6.3100000000000005,6.48,6.57,6.61,6.62,6.61,6.59,222.1,228.45000000000002,232.65,236.94,240.47,243.48000000000002,246.57,249.41,255.68,19.47,19.89,19.98,19.91,19.85,19.78,19.72,19.67,19.55,N/A,N/A -2012,1,10,7,30,101300,100120,98970,94.92,0,7.25,8.6,9.15,9.64,10.01,10.28,10.32,10.290000000000001,9.58,280.89,281.76,282.46,283.29,283.99,284.61,285.28000000000003,285.90000000000003,287.51,18.63,18.6,18.53,18.43,18.28,18.12,17.92,17.73,17.47,N/A,N/A -2012,1,10,8,30,101340,100150,98990,93.44,0,9.450000000000001,10.34,10.58,10.71,10.8,10.870000000000001,10.950000000000001,11.03,11.36,289.21,289.65000000000003,289.95,290.33,290.75,291.19,291.81,292.44,294.65000000000003,17.36,17.06,16.89,16.7,16.51,16.330000000000002,16.15,15.97,15.63,N/A,N/A -2012,1,10,9,30,101350,100150,98990,91.67,0,10.25,11.09,11.28,11.36,11.39,11.41,11.42,11.44,11.64,291.24,291.44,291.6,291.76,291.94,292.12,292.37,292.62,293.64,16.35,15.96,15.77,15.57,15.38,15.200000000000001,15.01,14.84,14.5,N/A,N/A -2012,1,10,10,30,101370,100170,99000,91.26,0,9.540000000000001,10.28,10.46,10.53,10.56,10.58,10.59,10.59,10.61,293.01,293.21,293.32,293.43,293.55,293.66,293.79,293.92,294.28000000000003,15.200000000000001,14.74,14.530000000000001,14.33,14.13,13.94,13.74,13.55,13.17,N/A,N/A -2012,1,10,11,30,101400,100190,99010,90.54,0,10.14,10.93,11.11,11.18,11.22,11.23,11.23,11.23,11.23,289.73,289.83,289.91,289.98,290.05,290.12,290.21,290.3,290.55,14.19,13.66,13.44,13.23,13.030000000000001,12.84,12.64,12.46,12.08,N/A,N/A -2012,1,10,12,30,101440,100230,99040,90.62,0,10.51,11.34,11.540000000000001,11.64,11.69,11.73,11.74,11.76,11.8,287.08,287.19,287.27,287.35,287.44,287.52,287.63,287.75,288.06,13.14,12.55,12.32,12.1,11.89,11.71,11.5,11.32,10.94,N/A,N/A -2012,1,10,13,30,101460,100240,99060,87.91,0,8.870000000000001,9.51,9.67,9.76,9.81,9.86,9.89,9.91,9.96,287.58,287.76,287.91,288.04,288.19,288.31,288.47,288.61,288.94,12.8,12.24,12.01,11.790000000000001,11.58,11.39,11.19,11,10.620000000000001,N/A,N/A -2012,1,10,14,30,101490,100270,99080,87.88,0,9.83,10.55,10.72,10.8,10.85,10.870000000000001,10.89,10.9,10.9,288.72,288.95,289.09000000000003,289.23,289.36,289.49,289.63,289.76,290.08,12.05,11.42,11.18,10.950000000000001,10.74,10.55,10.34,10.15,9.77,N/A,N/A -2012,1,10,15,30,101480,100260,99070,86.71000000000001,0,8.85,9.48,9.65,9.74,9.8,9.84,9.870000000000001,9.9,9.94,292.05,292.25,292.36,292.46,292.57,292.66,292.78000000000003,292.89,293.13,11.86,11.25,11.01,10.790000000000001,10.57,10.38,10.17,9.98,9.6,N/A,N/A -2012,1,10,16,30,101460,100240,99050,84.57000000000001,0,7.8500000000000005,8.39,8.53,8.6,8.65,8.69,8.72,8.74,8.77,290.45,290.42,290.39,290.36,290.32,290.29,290.26,290.22,290.16,12.18,11.6,11.370000000000001,11.15,10.94,10.75,10.540000000000001,10.35,9.96,N/A,N/A -2012,1,10,17,30,101420,100200,99020,83.29,0,8.53,9.13,9.28,9.35,9.39,9.42,9.43,9.44,9.43,288.98,289.05,289.11,289.17,289.23,289.27,289.33,289.38,289.47,12.65,12.07,11.84,11.620000000000001,11.4,11.200000000000001,10.99,10.8,10.4,N/A,N/A -2012,1,10,18,30,101410,100200,99010,79.49,0,7.98,8.53,8.67,8.74,8.790000000000001,8.83,8.85,8.870000000000001,8.89,292.53000000000003,292.40000000000003,292.34000000000003,292.27,292.2,292.14,292.07,292.01,291.88,12.57,12.01,11.78,11.56,11.35,11.15,10.94,10.75,10.35,N/A,N/A -2012,1,10,19,30,101380,100160,98980,76.32000000000001,0,8.32,8.92,9.08,9.17,9.23,9.27,9.3,9.33,9.370000000000001,289.25,289.15000000000003,289.08,289.02,288.96,288.91,288.84000000000003,288.78000000000003,288.66,12.81,12.25,12.030000000000001,11.81,11.6,11.4,11.19,11,10.6,N/A,N/A -2012,1,10,20,30,101350,100140,98960,74.65,0,8.22,8.83,8.99,9.08,9.14,9.19,9.22,9.24,9.28,288.40000000000003,288.53000000000003,288.54,288.54,288.53000000000003,288.53000000000003,288.5,288.48,288.44,13.39,12.870000000000001,12.65,12.42,12.21,12.02,11.81,11.61,11.21,N/A,N/A -2012,1,10,21,30,101320,100110,98930,71.58,0,8.45,9.1,9.290000000000001,9.39,9.47,9.52,9.57,9.6,9.66,284.46,284.92,285.22,285.49,285.74,285.96,286.19,286.40000000000003,286.8,13.69,13.17,12.96,12.74,12.530000000000001,12.33,12.120000000000001,11.93,11.53,N/A,N/A -2012,1,10,22,30,101290,100080,98900,69.73,0,9.05,9.74,9.92,10.01,10.07,10.11,10.14,10.16,10.19,293.09000000000003,292.88,292.78000000000003,292.68,292.58,292.49,292.38,292.29,292.09000000000003,13.71,13.19,12.97,12.75,12.540000000000001,12.35,12.14,11.94,11.540000000000001,N/A,N/A -2012,1,10,23,30,101310,100100,98920,72.53,0,9.94,10.71,10.9,11,11.06,11.1,11.120000000000001,11.14,11.14,295.71,295.62,295.54,295.45,295.38,295.3,295.22,295.15000000000003,295,13.3,12.73,12.5,12.27,12.06,11.86,11.65,11.450000000000001,11.05,N/A,N/A -2012,1,11,0,30,101350,100130,98950,72.68,0,10.28,11.16,11.41,11.55,11.65,11.73,11.790000000000001,11.84,11.92,292.11,291.97,291.89,291.81,291.73,291.67,291.6,291.54,291.41,12.790000000000001,12.200000000000001,11.96,11.73,11.51,11.31,11.1,10.91,10.51,N/A,N/A -2012,1,11,1,30,101340,100120,98940,73.26,0,8.96,9.66,9.85,9.96,10.040000000000001,10.1,10.15,10.200000000000001,10.27,287.48,287.08,286.83,286.6,286.37,286.18,285.96,285.76,285.36,12.780000000000001,12.21,11.99,11.77,11.55,11.36,11.15,10.96,10.56,N/A,N/A -2012,1,11,2,30,101340,100120,98940,73.75,0,7.140000000000001,7.640000000000001,7.79,7.88,7.95,8.01,8.06,8.11,8.22,280.69,280.23,279.95,279.67,279.41,279.16,278.91,278.67,278.18,12.77,12.24,12.02,11.81,11.6,11.41,11.200000000000001,11.02,10.63,N/A,N/A -2012,1,11,3,30,101300,100090,98910,74.38,0,7.75,8.36,8.540000000000001,8.66,8.75,8.83,8.91,8.98,9.14,276.87,276.84000000000003,276.79,276.75,276.7,276.67,276.63,276.6,276.56,13.17,12.65,12.43,12.21,12.01,11.82,11.620000000000001,11.44,11.06,N/A,N/A -2012,1,11,4,30,101260,100040,98870,71.83,0,8.290000000000001,8.97,9.16,9.28,9.38,9.450000000000001,9.53,9.6,9.76,275.91,275.74,275.64,275.54,275.45,275.38,275.3,275.24,275.16,13.91,13.41,13.19,12.99,12.790000000000001,12.61,12.41,12.23,11.86,N/A,N/A -2012,1,11,5,30,101240,100030,98850,71.93,0,8.8,9.52,9.73,9.85,9.94,10.01,10.07,10.120000000000001,10.22,275.26,275.16,275.09000000000003,275.04,275,274.96,274.93,274.90000000000003,274.87,14.49,14.01,13.8,13.59,13.38,13.19,12.99,12.8,12.41,N/A,N/A -2012,1,11,6,30,101220,100010,98840,70.65,0,9.53,10.35,10.58,10.72,10.81,10.870000000000001,10.92,10.96,11.03,274.03000000000003,273.99,273.97,273.97,273.99,274,274.02,274.05,274.12,14.9,14.450000000000001,14.24,14.030000000000001,13.83,13.64,13.44,13.25,12.86,N/A,N/A -2012,1,11,7,30,101230,100020,98850,71.97,0,9.16,9.83,9.99,10.05,10.08,10.09,10.09,10.09,10.07,287.6,286.78000000000003,286.22,285.67,285.13,284.62,284.05,283.52,282.3,14.11,13.63,13.42,13.22,13.02,12.84,12.65,12.47,12.11,N/A,N/A -2012,1,11,8,30,101220,100010,98830,76.05,0,7.69,8.2,8.31,8.36,8.39,8.41,8.43,8.45,8.540000000000001,285.36,285.19,285.06,284.93,284.8,284.68,284.52,284.36,283.95,13.370000000000001,12.870000000000001,12.67,12.47,12.27,12.09,11.9,11.73,11.38,N/A,N/A -2012,1,11,9,30,101220,100010,98830,74.72,0,6.83,7.26,7.36,7.41,7.44,7.47,7.5,7.54,7.65,280.41,280.5,280.57,280.63,280.71,280.79,280.91,281.04,281.45,13.450000000000001,12.98,12.77,12.57,12.38,12.200000000000001,12.01,11.83,11.48,N/A,N/A -2012,1,11,10,30,101210,100000,98820,74.61,0,6.34,6.72,6.8100000000000005,6.86,6.890000000000001,6.92,6.95,6.98,7.1000000000000005,277.12,277.14,277.17,277.2,277.25,277.31,277.40000000000003,277.51,277.94,13.49,13.02,12.82,12.620000000000001,12.43,12.25,12.05,11.88,11.52,N/A,N/A -2012,1,11,11,30,101210,100000,98820,72.69,0,5.82,6.16,6.23,6.2700000000000005,6.29,6.3,6.3100000000000005,6.33,6.38,274.34000000000003,273.88,273.55,273.21,272.85,272.52,272.15,271.8,271.09000000000003,13.870000000000001,13.43,13.23,13.030000000000001,12.84,12.66,12.47,12.290000000000001,11.92,N/A,N/A -2012,1,11,12,30,101220,100010,98840,74.04,0,5.62,5.95,6.03,6.07,6.09,6.11,6.13,6.15,6.2,270.22,269.78000000000003,269.48,269.17,268.86,268.57,268.25,267.95,267.31,14.22,13.8,13.6,13.4,13.200000000000001,13.02,12.83,12.64,12.27,N/A,N/A -2012,1,11,13,30,101200,99990,98820,72.61,0,5.97,6.3500000000000005,6.44,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,6.63,269.57,269.21,268.95,268.7,268.44,268.18,267.89,267.62,266.96,14.59,14.17,13.98,13.780000000000001,13.58,13.4,13.200000000000001,13.02,12.65,N/A,N/A -2012,1,11,14,30,101220,100010,98840,70.85000000000001,0,6.22,6.61,6.69,6.73,6.75,6.76,6.7700000000000005,6.78,6.8100000000000005,268.96,268.57,268.31,268.05,267.78000000000003,267.53000000000003,267.23,266.94,266.25,14.71,14.290000000000001,14.1,13.9,13.71,13.52,13.33,13.15,12.780000000000001,N/A,N/A -2012,1,11,15,30,101200,100000,98820,66.62,0,6.01,6.36,6.42,6.45,6.46,6.46,6.46,6.46,6.5200000000000005,262.1,262.05,262.02,261.98,261.93,261.87,261.78000000000003,261.69,261.46,14.85,14.450000000000001,14.26,14.06,13.870000000000001,13.69,13.5,13.32,12.98,N/A,N/A -2012,1,11,16,30,101160,99960,98790,64.94,0,5.74,6.09,6.15,6.18,6.2,6.21,6.23,6.26,6.46,257.08,256.84000000000003,256.7,256.56,256.41,256.27,256.09000000000003,255.92000000000002,255.52,15.02,14.63,14.450000000000001,14.26,14.07,13.89,13.71,13.540000000000001,13.23,N/A,N/A -2012,1,11,17,30,101100,99900,98730,63.89,0,6.03,6.41,6.49,6.53,6.5600000000000005,6.57,6.6000000000000005,6.63,6.83,249.29,249.17000000000002,249.13,249.11,249.09,249.07,249.08,249.12,249.55,15.46,15.09,14.9,14.71,14.530000000000001,14.35,14.16,13.99,13.68,N/A,N/A -2012,1,11,18,30,101070,99870,98710,60.86,0,6.3100000000000005,6.7700000000000005,6.88,6.94,6.98,7,7.03,7.05,7.11,236.20000000000002,236.07,236,235.93,235.87,235.81,235.75,235.71,235.69,16.17,15.83,15.65,15.46,15.27,15.09,14.89,14.71,14.35,N/A,N/A -2012,1,11,19,30,101020,99830,98670,61.78,0,6.3,6.8100000000000005,6.92,6.97,7,7.0200000000000005,7.04,7.0600000000000005,7.140000000000001,233.98000000000002,233.97,233.99,234.02,234.05,234.08,234.16,234.26,234.74,16.9,16.6,16.43,16.240000000000002,16.05,15.870000000000001,15.68,15.5,15.15,N/A,N/A -2012,1,11,20,30,100960,99760,98610,69.98,0,7.43,8.120000000000001,8.28,8.36,8.4,8.43,8.44,8.45,8.47,226.9,227.06,227.21,227.37,227.54,227.72,227.93,228.14000000000001,228.72,17.43,17.17,17.01,16.830000000000002,16.64,16.47,16.27,16.1,15.73,N/A,N/A -2012,1,11,21,30,100900,99720,98560,74.60000000000001,0,8.8,9.69,9.93,10.08,10.17,10.25,10.290000000000001,10.33,10.370000000000001,220.73000000000002,220.88,220.99,221.11,221.23000000000002,221.35,221.5,221.63,222.01,17.6,17.37,17.22,17.04,16.85,16.68,16.48,16.31,15.94,N/A,N/A -2012,1,11,22,30,100850,99660,98510,75.53,0,8.83,9.870000000000001,10.200000000000001,10.46,10.68,10.88,11.09,11.290000000000001,11.76,219.43,219.79,220.06,220.39000000000001,220.79,221.22,221.86,222.5,224.41,17.82,17.62,17.490000000000002,17.330000000000002,17.16,17.01,16.86,16.72,16.47,N/A,N/A -2012,1,11,23,30,100840,99650,98500,79.19,0,8.73,9.85,10.23,10.53,10.76,10.96,11.13,11.28,11.55,222.76,223,223.16,223.32,223.49,223.64000000000001,223.84,224.05,224.63,18,17.82,17.69,17.53,17.36,17.2,17.02,16.85,16.51,N/A,N/A -2012,1,12,0,30,100830,99650,98500,82.28,0,8.26,9.38,9.8,10.13,10.41,10.64,10.870000000000001,11.07,11.53,221.94,222.14000000000001,222.3,222.5,222.72,222.97,223.3,223.64000000000001,224.57,18.14,18.01,17.900000000000002,17.76,17.62,17.48,17.330000000000002,17.2,16.94,N/A,N/A -2012,1,12,1,30,100820,99640,98490,82.11,0,7.87,9.1,9.58,9.98,10.34,10.67,11,11.33,12.11,219.03,219.33,219.58,219.9,220.23000000000002,220.58,220.98000000000002,221.37,222.33,18.32,18.25,18.16,18.04,17.92,17.8,17.67,17.55,17.31,N/A,N/A -2012,1,12,2,30,100840,99650,98510,80.24,0,8.24,9.63,10.18,10.68,11.11,11.51,11.870000000000001,12.21,12.81,220.70000000000002,221.03,221.28,221.58,221.89000000000001,222.19,222.53,222.85,223.6,18.54,18.51,18.44,18.330000000000002,18.22,18.1,17.98,17.86,17.6,N/A,N/A -2012,1,12,3,30,100850,99670,98520,80.4,0,8.57,10.02,10.6,11.120000000000001,11.56,11.96,12.33,12.66,13.280000000000001,224.70000000000002,225.08,225.37,225.73000000000002,226.11,226.5,226.96,227.39000000000001,228.5,18.64,18.62,18.56,18.46,18.35,18.23,18.11,18,17.76,N/A,N/A -2012,1,12,4,30,100880,99700,98560,80.86,0,8.620000000000001,10.1,10.71,11.25,11.71,12.13,12.52,12.88,13.55,233.21,233.55,233.8,234.11,234.44,234.8,235.24,235.66,236.82,18.69,18.69,18.64,18.55,18.46,18.36,18.25,18.150000000000002,17.96,N/A,N/A -2012,1,12,5,30,100920,99740,98590,79.96000000000001,0,8.59,10.08,10.700000000000001,11.26,11.73,12.16,12.56,12.92,13.57,240.98000000000002,241.15,241.28,241.45000000000002,241.65,241.85,242.15,242.45000000000002,243.48000000000002,18.76,18.8,18.77,18.7,18.62,18.54,18.47,18.39,18.29,N/A,N/A -2012,1,12,6,30,100990,99810,98660,83.37,0,7.66,9.28,9.96,10.6,11.14,11.61,12,12.34,12.89,247.53,247.89000000000001,248.14000000000001,248.52,248.93,249.36,249.81,250.24,251.19,18.45,18.6,18.62,18.580000000000002,18.53,18.46,18.35,18.25,18,N/A,N/A -2012,1,12,7,30,101110,99910,98740,73.63,0,10.040000000000001,10.93,11.17,11.3,11.42,11.52,11.69,11.88,12.86,295.16,295.7,296.04,296.46,296.96,297.47,298.26,299.11,302.27,15.64,15.290000000000001,15.11,14.92,14.73,14.56,14.38,14.22,13.96,N/A,N/A -2012,1,12,8,30,101210,100000,98830,74.25,0,13.32,14.59,14.91,15.06,15.15,15.21,15.23,15.25,15.27,318.85,318.92,318.97,319.01,319.07,319.12,319.19,319.26,319.46,14.4,13.91,13.700000000000001,13.49,13.290000000000001,13.1,12.9,12.71,12.34,N/A,N/A -2012,1,12,9,30,101370,100150,98960,79.08,0,13.97,15.290000000000001,15.63,15.81,15.92,15.99,16.03,16.06,16.080000000000002,337.54,337.73,337.84000000000003,337.94,338.05,338.15000000000003,338.26,338.37,338.61,12.48,11.85,11.6,11.370000000000001,11.15,10.950000000000001,10.74,10.55,10.16,N/A,N/A -2012,1,12,10,30,101500,100280,99080,79.96000000000001,0,13.780000000000001,15.040000000000001,15.370000000000001,15.52,15.610000000000001,15.67,15.700000000000001,15.71,15.71,339.83,340.09000000000003,340.24,340.37,340.5,340.62,340.76,340.89,341.16,11.13,10.42,10.15,9.91,9.69,9.49,9.28,9.09,8.700000000000001,N/A,N/A -2012,1,12,11,30,101660,100420,99220,80.43,0,14.51,15.88,16.26,16.47,16.6,16.7,16.76,16.8,16.86,348.87,348.79,348.72,348.65000000000003,348.58,348.52,348.45,348.39,348.26,9.93,9.120000000000001,8.83,8.58,8.35,8.14,7.92,7.72,7.32,N/A,N/A -2012,1,12,12,30,101770,100530,99320,78.75,0,16.14,17.7,18.12,18.34,18.48,18.59,18.650000000000002,18.7,18.77,349.93,349.93,349.91,349.89,349.86,349.84000000000003,349.81,349.79,349.74,8.96,8.05,7.74,7.48,7.24,7.03,6.8100000000000005,6.61,6.21,N/A,N/A -2012,1,12,13,30,101900,100660,99440,78.15,0,16.26,17.86,18.3,18.54,18.69,18.8,18.87,18.92,18.98,352.18,352.09000000000003,352.02,351.96,351.90000000000003,351.85,351.79,351.74,351.63,8.17,7.21,6.890000000000001,6.62,6.37,6.16,5.93,5.73,5.32,N/A,N/A -2012,1,12,14,30,102020,100760,99550,77.15,0,15.97,17.47,17.88,18.09,18.23,18.330000000000002,18.39,18.44,18.51,352.75,352.75,352.75,352.74,352.73,352.72,352.71,352.69,352.68,7.53,6.54,6.22,5.95,5.71,5.49,5.2700000000000005,5.07,4.67,N/A,N/A -2012,1,12,15,30,102090,100840,99620,74.92,0,14.6,15.89,16.240000000000002,16.42,16.54,16.62,16.68,16.72,16.78,349.77,349.81,349.84000000000003,349.86,349.88,349.89,349.91,349.93,349.96,7.38,6.43,6.11,5.8500000000000005,5.61,5.4,5.18,4.98,4.59,N/A,N/A -2012,1,12,16,30,102110,100860,99640,69.34,0,13.71,14.88,15.200000000000001,15.38,15.48,15.56,15.620000000000001,15.66,15.71,348.35,348.37,348.37,348.37,348.37,348.37,348.37,348.37,348.37,7.55,6.65,6.34,6.09,5.8500000000000005,5.64,5.42,5.22,4.83,N/A,N/A -2012,1,12,17,30,102150,100890,99680,63.480000000000004,0,12.41,13.44,13.73,13.88,13.98,14.06,14.11,14.15,14.21,346.73,346.72,346.71,346.7,346.7,346.69,346.68,346.68,346.67,8.06,7.22,6.93,6.68,6.44,6.23,6.01,5.8100000000000005,5.41,N/A,N/A -2012,1,12,18,30,102180,100930,99720,61.13,0,11.48,12.39,12.63,12.77,12.86,12.92,12.97,13,13.05,342.64,342.68,342.72,342.77,342.8,342.83,342.87,342.90000000000003,342.98,8.59,7.8100000000000005,7.53,7.28,7.05,6.84,6.62,6.42,6.0200000000000005,N/A,N/A -2012,1,12,19,30,102200,100950,99740,56.36,0,12.200000000000001,13.22,13.5,13.65,13.75,13.83,13.870000000000001,13.91,13.96,339.06,339.19,339.28000000000003,339.36,339.43,339.5,339.57,339.64,339.76,9.040000000000001,8.26,7.98,7.73,7.5,7.3,7.08,6.87,6.47,N/A,N/A -2012,1,12,20,30,102220,100970,99760,53.95,0,11.26,12.15,12.4,12.530000000000001,12.620000000000001,12.68,12.72,12.76,12.8,338.94,338.92,338.91,338.89,338.88,338.86,338.85,338.83,338.8,9.32,8.57,8.3,8.06,7.83,7.62,7.4,7.2,6.79,N/A,N/A -2012,1,12,21,30,102220,100970,99760,51.77,0,10.93,11.77,12,12.120000000000001,12.200000000000001,12.26,12.290000000000001,12.32,12.36,339.72,339.58,339.48,339.39,339.3,339.22,339.15000000000003,339.08,338.93,9.44,8.72,8.45,8.21,7.98,7.78,7.5600000000000005,7.36,6.95,N/A,N/A -2012,1,12,22,30,102210,100960,99750,51.44,0,10.540000000000001,11.34,11.55,11.66,11.73,11.78,11.81,11.83,11.84,334.63,334.79,334.90000000000003,335.01,335.1,335.19,335.28000000000003,335.36,335.53000000000003,9.49,8.78,8.51,8.27,8.040000000000001,7.84,7.62,7.41,7.01,N/A,N/A -2012,1,12,23,30,102280,101030,99820,50.47,0,9.92,10.63,10.82,10.92,10.98,11.03,11.05,11.07,11.09,340.22,339.93,339.75,339.58,339.41,339.26,339.11,338.98,338.71,9.450000000000001,8.76,8.5,8.26,8.03,7.83,7.61,7.41,7.01,N/A,N/A -2012,1,13,0,30,102350,101100,99880,46.25,0,10.56,11.33,11.53,11.620000000000001,11.68,11.72,11.74,11.76,11.77,339.74,339.69,339.61,339.54,339.47,339.40000000000003,339.33,339.26,339.13,9.18,8.46,8.19,7.95,7.73,7.5200000000000005,7.3100000000000005,7.11,6.71,N/A,N/A -2012,1,13,1,30,102390,101130,99920,50,0,9.89,10.58,10.75,10.83,10.88,10.91,10.93,10.94,10.94,340.40000000000003,340.3,340.21,340.13,340.04,339.97,339.88,339.8,339.65000000000003,8.89,8.18,7.91,7.68,7.45,7.25,7.03,6.83,6.43,N/A,N/A -2012,1,13,2,30,102440,101190,99970,51.85,0,9.49,10.13,10.290000000000001,10.370000000000001,10.42,10.450000000000001,10.47,10.48,10.49,342.01,341.71,341.51,341.34000000000003,341.19,341.04,340.89,340.76,340.49,8.61,7.9,7.63,7.390000000000001,7.16,6.96,6.74,6.54,6.140000000000001,N/A,N/A -2012,1,13,3,30,102480,101230,100010,50.27,0,9.6,10.25,10.41,10.48,10.53,10.56,10.57,10.58,10.59,344.85,344.65000000000003,344.54,344.43,344.33,344.25,344.16,344.08,343.92,8.290000000000001,7.5600000000000005,7.29,7.0600000000000005,6.83,6.62,6.4,6.2,5.8,N/A,N/A -2012,1,13,4,30,102510,101250,100030,52.86,0,8.5,9.03,9.16,9.22,9.25,9.28,9.290000000000001,9.3,9.3,345.12,345.24,345.31,345.35,345.40000000000003,345.45,345.49,345.53000000000003,345.6,8.11,7.41,7.140000000000001,6.9,6.68,6.47,6.26,6.05,5.65,N/A,N/A -2012,1,13,5,30,102540,101280,100060,54.75,0,8.08,8.55,8.66,8.71,8.73,8.74,8.74,8.74,8.73,352.81,352.64,352.53000000000003,352.44,352.35,352.27,352.19,352.12,351.97,7.96,7.2700000000000005,7.01,6.7700000000000005,6.54,6.34,6.12,5.92,5.5200000000000005,N/A,N/A -2012,1,13,6,30,102560,101300,100080,51.96,0,7.8,8.26,8.35,8.4,8.42,8.43,8.44,8.44,8.42,358.8,358.38,358.1,357.85,357.62,357.42,357.2,357.01,356.63,7.86,7.17,6.91,6.68,6.45,6.25,6.03,5.83,5.43,N/A,N/A -2012,1,13,7,30,102600,101340,100120,47.52,0,7.91,8.35,8.44,8.47,8.48,8.49,8.48,8.47,8.44,5.08,4.6000000000000005,4.2700000000000005,3.97,3.66,3.39,3.11,2.84,2.29,7.73,7.03,6.7700000000000005,6.54,6.32,6.12,5.91,5.71,5.3100000000000005,N/A,N/A -2012,1,13,8,30,102610,101350,100130,46.300000000000004,0,7.8,8.24,8.34,8.38,8.39,8.4,8.4,8.4,8.39,4.42,4.3100000000000005,4.24,4.16,4.08,4.01,3.93,3.84,3.66,7.61,6.92,6.66,6.43,6.21,6.01,5.8,5.6000000000000005,5.21,N/A,N/A -2012,1,13,9,30,102630,101370,100150,46.63,0,7.46,7.87,7.95,7.99,8,8.01,8,8,7.98,7.55,7.58,7.6000000000000005,7.61,7.62,7.62,7.62,7.62,7.6000000000000005,7.61,6.93,6.67,6.44,6.22,6.0200000000000005,5.8100000000000005,5.62,5.22,N/A,N/A -2012,1,13,10,30,102650,101390,100170,48.5,0,7.18,7.57,7.65,7.69,7.71,7.72,7.72,7.72,7.7,11.35,11.370000000000001,11.38,11.39,11.39,11.4,11.4,11.4,11.4,7.65,6.97,6.72,6.49,6.26,6.07,5.8500000000000005,5.66,5.26,N/A,N/A -2012,1,13,11,30,102670,101410,100190,47.69,0,7.15,7.53,7.61,7.640000000000001,7.65,7.66,7.65,7.65,7.63,13.01,12.950000000000001,12.9,12.870000000000001,12.83,12.790000000000001,12.74,12.700000000000001,12.61,7.7700000000000005,7.1000000000000005,6.84,6.61,6.390000000000001,6.2,5.99,5.79,5.4,N/A,N/A -2012,1,13,12,30,102700,101440,100220,47.37,0,6.62,6.96,7.0200000000000005,7.05,7.0600000000000005,7.0600000000000005,7.0600000000000005,7.05,7.03,14.24,14.19,14.16,14.120000000000001,14.09,14.06,14.02,13.99,13.92,7.91,7.26,7.01,6.79,6.57,6.37,6.16,5.97,5.58,N/A,N/A -2012,1,13,13,30,102710,101460,100230,47.42,0,6.25,6.55,6.6000000000000005,6.61,6.62,6.61,6.6000000000000005,6.59,6.5600000000000005,17.05,16.98,16.92,16.87,16.82,16.77,16.71,16.66,16.54,7.99,7.36,7.12,6.890000000000001,6.67,6.48,6.2700000000000005,6.07,5.68,N/A,N/A -2012,1,13,14,30,102770,101510,100290,46.410000000000004,0,5.69,5.95,5.98,5.99,5.99,5.98,5.97,5.95,5.92,24.79,24.77,24.75,24.740000000000002,24.72,24.71,24.68,24.66,24.62,8.120000000000001,7.51,7.26,7.04,6.83,6.63,6.42,6.23,5.84,N/A,N/A -2012,1,13,15,30,102780,101520,100300,44.71,0,5.25,5.47,5.5,5.51,5.51,5.5,5.48,5.47,5.44,25.76,25.84,25.900000000000002,25.94,25.98,26.02,26.060000000000002,26.1,26.16,8.3,7.7,7.46,7.24,7.03,6.84,6.63,6.43,6.04,N/A,N/A -2012,1,13,16,30,102770,101520,100290,43.95,0,5.03,5.24,5.26,5.2700000000000005,5.26,5.26,5.24,5.23,5.2,23.82,23.91,23.97,24.02,24.060000000000002,24.1,24.14,24.17,24.240000000000002,8.540000000000001,7.95,7.72,7.5,7.28,7.09,6.88,6.69,6.3,N/A,N/A -2012,1,13,17,30,102760,101510,100290,42.730000000000004,0,4.2700000000000005,4.43,4.45,4.46,4.45,4.44,4.43,4.43,4.4,22.56,22.5,22.47,22.43,22.39,22.35,22.3,22.27,22.18,8.81,8.25,8.02,7.8,7.59,7.4,7.19,6.99,6.6000000000000005,N/A,N/A -2012,1,13,18,30,102750,101500,100280,42.11,0,3.6,3.73,3.74,3.74,3.73,3.73,3.72,3.71,3.69,19.84,19.77,19.73,19.68,19.64,19.61,19.57,19.52,19.42,9.15,8.620000000000001,8.39,8.18,7.97,7.78,7.57,7.37,6.98,N/A,N/A -2012,1,13,19,30,102740,101490,100270,41.81,0,3.0700000000000003,3.16,3.16,3.15,3.14,3.13,3.12,3.1,3.08,8.24,8.22,8.23,8.25,8.25,8.24,8.22,8.21,8.15,9.49,8.97,8.75,8.540000000000001,8.33,8.14,7.930000000000001,7.74,7.3500000000000005,N/A,N/A -2012,1,13,20,30,102720,101470,100260,44.74,0,2.2800000000000002,2.38,2.4,2.41,2.43,2.44,2.45,2.46,2.48,4.8,3.17,2.15,1.21,0.34,359.54,358.75,358.02,356.63,9.88,9.39,9.17,8.96,8.75,8.56,8.35,8.16,7.76,N/A,N/A -2012,1,13,21,30,102710,101470,100250,39.92,0,2.89,3.0100000000000002,3.0300000000000002,3.04,3.0500000000000003,3.0500000000000003,3.06,3.06,3.0700000000000003,354.25,353.98,353.8,353.63,353.48,353.34000000000003,353.19,353.04,352.73,10.41,9.92,9.71,9.5,9.290000000000001,9.1,8.89,8.700000000000001,8.31,N/A,N/A -2012,1,13,22,30,102680,101440,100230,46.65,0,1.62,1.71,1.75,1.78,1.81,1.83,1.86,1.8800000000000001,1.93,333.59000000000003,333.1,332.77,332.45,332.14,331.87,331.59000000000003,331.33,330.82,10.71,10.25,10.040000000000001,9.83,9.63,9.44,9.23,9.040000000000001,8.65,N/A,N/A -2012,1,13,23,30,102710,101460,100250,46.18,0,2.89,2.98,2.98,2.97,2.97,2.96,2.95,2.94,2.91,339.51,339.71,339.82,339.91,340,340.08,340.17,340.26,340.44,11.120000000000001,10.65,10.44,10.23,10.02,9.83,9.620000000000001,9.43,9.03,N/A,N/A -2012,1,14,0,30,102730,101490,100280,45.89,0,2.82,2.9,2.89,2.88,2.87,2.86,2.84,2.83,2.79,338.11,338.24,338.26,338.29,338.33,338.36,338.38,338.41,338.5,11.33,10.88,10.67,10.46,10.25,10.06,9.86,9.66,9.27,N/A,N/A -2012,1,14,1,30,102770,101520,100320,44.57,0,2.41,2.48,2.47,2.46,2.45,2.44,2.43,2.42,2.39,349.40000000000003,349.12,348.92,348.72,348.53000000000003,348.36,348.18,348.02,347.69,11.57,11.13,10.92,10.71,10.51,10.32,10.11,9.92,9.53,N/A,N/A -2012,1,14,2,30,102780,101540,100340,41.97,0,1.94,2.0100000000000002,2.02,2.02,2.02,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,352.34000000000003,351.85,351.54,351.25,350.99,350.76,350.51,350.29,349.88,11.83,11.4,11.200000000000001,10.99,10.78,10.6,10.39,10.200000000000001,9.8,N/A,N/A -2012,1,14,3,30,102790,101550,100350,40.9,0,2.17,2.22,2.22,2.2,2.19,2.18,2.17,2.15,2.13,352.81,352.69,352.67,352.65000000000003,352.63,352.62,352.6,352.58,352.53000000000003,12,11.57,11.370000000000001,11.16,10.950000000000001,10.77,10.56,10.370000000000001,9.97,N/A,N/A -2012,1,14,4,30,102790,101550,100350,41.300000000000004,0,1.75,1.79,1.78,1.77,1.76,1.75,1.74,1.73,1.71,350.16,349.33,348.76,348.21,347.69,347.24,346.74,346.28000000000003,345.31,12.13,11.71,11.5,11.3,11.09,10.91,10.700000000000001,10.51,10.120000000000001,N/A,N/A -2012,1,14,5,30,102790,101550,100350,47.25,0,1.4000000000000001,1.43,1.43,1.42,1.42,1.42,1.41,1.41,1.41,338.79,336.65000000000003,335.3,334.01,332.79,331.67,330.51,329.44,327.22,12.21,11.790000000000001,11.59,11.38,11.18,10.99,10.790000000000001,10.59,10.200000000000001,N/A,N/A -2012,1,14,6,30,102810,101570,100370,45.76,0,2.99,3.02,2.97,2.92,2.87,2.82,2.7600000000000002,2.72,2.62,300.86,300.38,300.09000000000003,299.81,299.54,299.29,299.04,298.79,298.26,12.39,11.97,11.78,11.57,11.36,11.18,10.97,10.78,10.39,N/A,N/A -2012,1,14,7,30,102840,101600,100400,45.83,0,3.4,3.48,3.45,3.42,3.38,3.35,3.31,3.27,3.18,302.17,301.46,300.97,300.51,300.06,299.64,299.16,298.71,297.73,12.14,11.71,11.5,11.3,11.1,10.91,10.71,10.52,10.13,N/A,N/A -2012,1,14,8,30,102850,101610,100400,45.4,0,3.77,3.86,3.85,3.81,3.77,3.73,3.69,3.64,3.5500000000000003,291.56,290.94,290.54,290.14,289.74,289.38,288.97,288.58,287.7,12.1,11.66,11.46,11.26,11.06,10.870000000000001,10.66,10.48,10.09,N/A,N/A -2012,1,14,9,30,102870,101620,100420,42.27,0,3.54,3.66,3.66,3.64,3.63,3.61,3.59,3.56,3.52,297.59000000000003,296.87,296.41,295.97,295.53000000000003,295.13,294.66,294.22,293.26,12.040000000000001,11.6,11.39,11.19,10.99,10.8,10.6,10.41,10.03,N/A,N/A -2012,1,14,10,30,102880,101640,100430,44.24,0,3.38,3.48,3.47,3.45,3.43,3.41,3.38,3.35,3.3000000000000003,285.64,284.87,284.35,283.85,283.35,282.90000000000003,282.36,281.86,280.75,12,11.56,11.36,11.16,10.96,10.77,10.57,10.38,9.99,N/A,N/A -2012,1,14,11,30,102910,101660,100460,44.62,0,3.43,3.52,3.52,3.5,3.47,3.45,3.42,3.4,3.34,290.61,289.55,288.85,288.16,287.48,286.85,286.12,285.44,283.93,11.97,11.53,11.33,11.13,10.93,10.74,10.540000000000001,10.35,9.97,N/A,N/A -2012,1,14,12,30,102940,101690,100490,44.22,0,3.2800000000000002,3.37,3.36,3.34,3.3200000000000003,3.3000000000000003,3.27,3.25,3.2,289.28000000000003,288.32,287.69,287.08,286.47,285.91,285.24,284.62,283.23,12,11.56,11.36,11.16,10.96,10.78,10.57,10.38,10,N/A,N/A -2012,1,14,13,30,102960,101710,100510,44.35,0,3.34,3.44,3.43,3.42,3.4,3.38,3.35,3.33,3.2800000000000002,291.44,290.56,289.97,289.39,288.81,288.28000000000003,287.66,287.08,285.8,12.11,11.67,11.47,11.27,11.07,10.88,10.68,10.49,10.11,N/A,N/A -2012,1,14,14,30,102990,101750,100540,44.47,0,3.61,3.73,3.73,3.72,3.7,3.68,3.66,3.63,3.58,287.18,286.3,285.73,285.16,284.59000000000003,284.06,283.46,282.89,281.61,12.22,11.78,11.58,11.38,11.18,11,10.790000000000001,10.61,10.22,N/A,N/A -2012,1,14,15,30,103010,101770,100560,43.67,0,3.41,3.52,3.52,3.5,3.48,3.46,3.44,3.42,3.37,282.26,281.26,280.6,279.98,279.34000000000003,278.76,278.11,277.49,276.12,12.35,11.92,11.72,11.52,11.32,11.13,10.93,10.74,10.36,N/A,N/A -2012,1,14,16,30,103000,101760,100560,43.46,0,3.0300000000000002,3.13,3.14,3.13,3.13,3.12,3.1,3.09,3.06,284.51,283.56,282.93,282.32,281.73,281.18,280.54,279.95,278.68,12.5,12.08,11.88,11.68,11.48,11.3,11.09,10.91,10.52,N/A,N/A -2012,1,14,17,30,102980,101740,100540,43.92,0,2.86,2.96,2.98,2.98,2.98,2.97,2.97,2.96,2.95,276.41,275.59000000000003,275.04,274.5,273.95,273.45,272.87,272.32,271.07,12.72,12.31,12.11,11.91,11.71,11.53,11.32,11.13,10.75,N/A,N/A -2012,1,14,18,30,102980,101740,100540,43.33,0,2.57,2.68,2.69,2.7,2.71,2.71,2.71,2.72,2.72,271.37,270.72,270.32,269.91,269.49,269.1,268.64,268.21,267.26,13.01,12.61,12.41,12.21,12.01,11.83,11.620000000000001,11.43,11.05,N/A,N/A -2012,1,14,19,30,102960,101730,100530,43.410000000000004,0,2.19,2.2800000000000002,2.3000000000000003,2.31,2.32,2.33,2.33,2.34,2.35,256.86,257.17,257.4,257.6,257.77,257.92,258.03000000000003,258.12,258.2,13.31,12.92,12.73,12.530000000000001,12.33,12.15,11.94,11.75,11.36,N/A,N/A -2012,1,14,20,30,102920,101680,100480,44.35,0,2.5500000000000003,2.67,2.69,2.71,2.72,2.73,2.74,2.75,2.7600000000000002,244.9,245.06,245.23000000000002,245.39000000000001,245.55,245.69,245.88,246.05,246.44,13.59,13.21,13.02,12.82,12.620000000000001,12.44,12.24,12.05,11.66,N/A,N/A -2012,1,14,21,30,102880,101650,100450,41.980000000000004,0,3.0700000000000003,3.2,3.22,3.23,3.23,3.23,3.23,3.23,3.23,226.89000000000001,227.43,227.75,228.06,228.37,228.67000000000002,229.02,229.37,230.23000000000002,13.91,13.540000000000001,13.35,13.15,12.96,12.780000000000001,12.57,12.39,12,N/A,N/A -2012,1,14,22,30,102860,101630,100430,44.39,0,3.02,3.14,3.15,3.16,3.15,3.15,3.14,3.13,3.1,207.98000000000002,208.48000000000002,208.83,209.16,209.52,209.85,210.24,210.61,211.53,14.15,13.790000000000001,13.6,13.41,13.21,13.030000000000001,12.83,12.64,12.26,N/A,N/A -2012,1,14,23,30,102840,101610,100420,43.85,0,3.2600000000000002,3.4,3.41,3.41,3.41,3.4,3.38,3.37,3.33,204.8,205.24,205.6,205.94,206.3,206.64000000000001,207.03,207.42000000000002,208.37,14.41,14.05,13.870000000000001,13.67,13.48,13.290000000000001,13.09,12.9,12.52,N/A,N/A -2012,1,15,0,30,102860,101630,100440,45.15,0,3.17,3.31,3.3200000000000003,3.33,3.33,3.3200000000000003,3.31,3.31,3.2800000000000002,206.29,206.83,207.18,207.52,207.85,208.16,208.51,208.85,209.66,14.6,14.25,14.07,13.88,13.68,13.5,13.290000000000001,13.11,12.72,N/A,N/A -2012,1,15,1,30,102870,101640,100440,45.83,0,3.31,3.48,3.52,3.5300000000000002,3.5500000000000003,3.56,3.56,3.56,3.5700000000000003,210.05,210.45000000000002,210.71,210.94,211.19,211.41,211.65,211.88,212.41,14.83,14.48,14.3,14.11,13.91,13.73,13.52,13.33,12.950000000000001,N/A,N/A -2012,1,15,2,30,102870,101640,100450,45.88,0,3.18,3.36,3.4,3.43,3.45,3.46,3.47,3.48,3.5,214.99,215.45000000000002,215.69,215.92000000000002,216.13,216.32,216.54,216.73000000000002,217.18,15.040000000000001,14.71,14.530000000000001,14.34,14.14,13.950000000000001,13.75,13.56,13.17,N/A,N/A -2012,1,15,3,30,102870,101650,100460,48.68,0,3.3200000000000003,3.49,3.5300000000000002,3.5500000000000003,3.56,3.58,3.58,3.59,3.59,212.98000000000002,213.28,213.45000000000002,213.6,213.75,213.87,214.01,214.14000000000001,214.42000000000002,15.18,14.85,14.67,14.48,14.280000000000001,14.09,13.89,13.700000000000001,13.31,N/A,N/A -2012,1,15,4,30,102870,101650,100460,52.56,0,3.6,3.8000000000000003,3.84,3.87,3.88,3.89,3.9,3.9,3.91,212.73000000000002,212.97,213.13,213.28,213.42000000000002,213.55,213.67000000000002,213.79,214.03,15.21,14.88,14.700000000000001,14.5,14.31,14.120000000000001,13.92,13.73,13.34,N/A,N/A -2012,1,15,5,30,102870,101640,100450,58.64,0,3.86,4.08,4.13,4.16,4.17,4.18,4.19,4.19,4.19,211.11,211.43,211.64000000000001,211.83,212.02,212.19,212.36,212.53,212.87,15.15,14.82,14.63,14.44,14.24,14.06,13.85,13.66,13.27,N/A,N/A -2012,1,15,6,30,102880,101660,100470,63.86,0,4,4.24,4.29,4.32,4.33,4.34,4.34,4.34,4.34,208.88,209.28,209.5,209.70000000000002,209.88,210.06,210.25,210.42000000000002,210.76,15.11,14.780000000000001,14.6,14.41,14.21,14.02,13.82,13.63,13.24,N/A,N/A -2012,1,15,7,30,102900,101670,100480,64.88,0,4.0200000000000005,4.25,4.3,4.33,4.34,4.3500000000000005,4.3500000000000005,4.36,4.36,206.69,207.09,207.3,207.49,207.67000000000002,207.83,208.02,208.18,208.53,15.1,14.76,14.58,14.39,14.19,14.01,13.8,13.620000000000001,13.22,N/A,N/A -2012,1,15,8,30,102880,101650,100460,66.73,0,3.8200000000000003,4.05,4.09,4.11,4.13,4.13,4.14,4.14,4.14,201.89000000000001,202.55,202.95000000000002,203.32,203.67000000000002,203.98000000000002,204.32,204.64000000000001,205.31,15.11,14.780000000000001,14.6,14.41,14.21,14.02,13.82,13.63,13.24,N/A,N/A -2012,1,15,9,30,102880,101650,100460,69.24,0,3.65,3.87,3.92,3.95,3.96,3.98,3.99,3.99,4,196.24,196.67000000000002,196.96,197.22,197.47,197.71,197.96,198.20000000000002,198.68,15.14,14.81,14.63,14.44,14.24,14.05,13.85,13.66,13.27,N/A,N/A -2012,1,15,10,30,102870,101650,100460,71.13,0,3.7800000000000002,4,4.04,4.07,4.07,4.08,4.08,4.08,4.08,185.92000000000002,186.62,187.03,187.41,187.78,188.11,188.47,188.79,189.48,15.14,14.82,14.63,14.44,14.24,14.06,13.85,13.66,13.27,N/A,N/A -2012,1,15,11,30,102870,101650,100460,70.95,0,3.89,4.13,4.18,4.2,4.21,4.22,4.23,4.23,4.23,177.37,177.9,178.22,178.5,178.76,179,179.24,179.46,179.89000000000001,15.19,14.86,14.68,14.49,14.290000000000001,14.11,13.9,13.71,13.32,N/A,N/A -2012,1,15,12,30,102880,101660,100470,71.2,0,3.86,4.12,4.18,4.22,4.25,4.28,4.3,4.32,4.3500000000000005,170.26,170.53,170.74,170.93,171.11,171.27,171.44,171.6,171.94,15.290000000000001,14.96,14.790000000000001,14.59,14.39,14.21,14.01,13.82,13.43,N/A,N/A -2012,1,15,13,30,102890,101660,100470,73.53,0,4.25,4.55,4.63,4.67,4.7,4.73,4.75,4.76,4.79,156.1,156.55,156.86,157.14000000000001,157.41,157.65,157.92000000000002,158.16,158.66,15.35,15.030000000000001,14.85,14.65,14.450000000000001,14.27,14.07,13.88,13.49,N/A,N/A -2012,1,15,14,30,102910,101680,100500,75.61,0,4.7700000000000005,5.15,5.25,5.3100000000000005,5.3500000000000005,5.39,5.41,5.44,5.48,154.26,154.77,155.1,155.41,155.71,155.97,156.25,156.5,157.03,15.55,15.24,15.06,14.86,14.67,14.49,14.280000000000001,14.09,13.71,N/A,N/A -2012,1,15,15,30,102900,101680,100490,78.63,0,5.09,5.54,5.66,5.74,5.8,5.8500000000000005,5.88,5.92,5.98,146.27,146.95000000000002,147.38,147.77,148.14000000000001,148.48,148.85,149.18,149.89000000000001,15.780000000000001,15.48,15.3,15.11,14.92,14.74,14.540000000000001,14.35,13.96,N/A,N/A -2012,1,15,16,30,102880,101660,100470,80.11,0,5.48,6.0200000000000005,6.18,6.28,6.3500000000000005,6.41,6.47,6.51,6.59,146.05,146.55,146.85,147.13,147.4,147.63,147.88,148.1,148.56,16.1,15.82,15.65,15.46,15.27,15.09,14.89,14.700000000000001,14.31,N/A,N/A -2012,1,15,17,30,102850,101630,100450,79.93,0,5.82,6.390000000000001,6.54,6.63,6.7,6.74,6.78,6.8,6.83,147.73,148.20000000000002,148.51,148.8,149.09,149.34,149.61,149.86,150.41,16.39,16.13,15.97,15.790000000000001,15.6,15.42,15.22,15.040000000000001,14.66,N/A,N/A -2012,1,15,18,30,102820,101610,100430,79.83,0,5.55,6.16,6.34,6.48,6.59,6.7,6.8100000000000005,6.91,7.09,146.14000000000001,146.37,146.57,146.79,147.01,147.22,147.59,147.97,149.05,16.59,16.37,16.22,16.03,15.860000000000001,15.700000000000001,15.51,15.34,14.97,N/A,N/A -2012,1,15,19,30,102790,101580,100400,79.56,0,5.54,6.25,6.5200000000000005,6.74,6.93,7.1000000000000005,7.25,7.390000000000001,7.61,142.57,142.74,143.02,143.46,144,144.56,145.27,145.96,147.57,16.77,16.56,16.43,16.26,16.1,15.94,15.76,15.59,15.23,N/A,N/A -2012,1,15,20,30,102740,101520,100350,81.72,0,5.92,6.67,6.93,7.140000000000001,7.3100000000000005,7.45,7.57,7.68,7.88,138.94,139.63,140.17000000000002,140.8,141.46,142.11,142.85,143.54,145,16.830000000000002,16.64,16.51,16.35,16.19,16.03,15.860000000000001,15.700000000000001,15.36,N/A,N/A -2012,1,15,21,30,102670,101460,100290,83.44,0,5.93,6.84,7.17,7.46,7.71,7.930000000000001,8.13,8.32,8.68,136.73,137.62,138.31,139.14000000000001,140.04,140.94,141.96,142.92000000000002,144.94,16.89,16.740000000000002,16.63,16.5,16.36,16.22,16.080000000000002,15.94,15.64,N/A,N/A -2012,1,15,22,30,102610,101390,100220,85.08,0,6.390000000000001,7.44,7.86,8.26,8.61,8.94,9.23,9.5,9.92,135.75,136.53,137.14000000000001,137.92000000000002,138.78,139.67000000000002,140.65,141.57,143.47,16.92,16.8,16.7,16.59,16.48,16.37,16.240000000000002,16.12,15.860000000000001,N/A,N/A -2012,1,15,23,30,102570,101360,100190,87.21000000000001,0,6.3,7.42,7.9,8.34,8.76,9.15,9.540000000000001,9.89,10.52,139.51,140.46,141.21,142.13,143.14000000000001,144.16,145.31,146.4,148.48,17.06,16.98,16.91,16.81,16.72,16.63,16.53,16.44,16.23,N/A,N/A -2012,1,16,0,30,102560,101350,100180,87.23,0,6.8500000000000005,8.15,8.68,9.18,9.63,10.03,10.43,10.8,11.53,144.91,145.37,145.8,146.41,147.17000000000002,147.98,149.12,150.25,152.92000000000002,17.31,17.29,17.240000000000002,17.16,17.09,17.01,16.93,16.85,16.67,N/A,N/A -2012,1,16,1,30,102510,101300,100130,87.76,0,7.08,8.59,9.26,9.91,10.49,11.02,11.48,11.89,12.56,151.89000000000001,152.71,153.33,154.03,154.78,155.53,156.28,156.95000000000002,157.91,17.48,17.52,17.51,17.490000000000002,17.46,17.43,17.37,17.31,17.11,N/A,N/A -2012,1,16,2,30,102500,101300,100130,89.29,0,6.49,8.040000000000001,8.74,9.44,10.08,10.69,11.24,11.73,12.41,153.66,154.54,155.22,156.07,156.88,157.68,158.36,158.98,159.82,17.57,17.650000000000002,17.650000000000002,17.650000000000002,17.63,17.61,17.57,17.53,17.34,N/A,N/A -2012,1,16,3,30,102470,101270,100100,89.9,0,6.41,8,8.73,9.47,10.13,10.75,11.31,11.82,12.74,152.6,154.02,155.02,156.15,157.13,158,158.66,159.23,159.99,17.62,17.73,17.75,17.76,17.75,17.740000000000002,17.69,17.64,17.490000000000002,N/A,N/A -2012,1,16,4,30,102450,101250,100090,90.86,0,6.73,8.44,9.24,10.03,10.75,11.41,12,12.530000000000001,13.4,160.56,161.11,161.55,162.12,162.71,163.31,163.87,164.37,165.37,17.69,17.830000000000002,17.87,17.900000000000002,17.92,17.92,17.89,17.86,17.7,N/A,N/A -2012,1,16,5,30,102440,101230,100070,90.89,0,7.15,8.94,9.77,10.61,11.370000000000001,12.08,12.75,13.38,14.36,161.52,162.56,163.31,164.18,164.99,165.76,166.4,166.95000000000002,167.52,17.84,18.01,18.06,18.1,18.13,18.14,18.14,18.14,18.04,N/A,N/A -2012,1,16,6,30,102430,101230,100070,91.64,0,6.6000000000000005,8.42,9.28,10.16,10.950000000000001,11.69,12.290000000000001,12.81,13.56,164.94,165.59,166.1,166.65,167.21,167.77,168.3,168.79,169.86,17.79,17.990000000000002,18.07,18.14,18.2,18.25,18.27,18.27,18.13,N/A,N/A -2012,1,16,7,30,102430,101230,100070,92.11,0,6.33,8.15,9.05,9.97,10.8,11.57,12.27,12.92,14.08,162.03,163.36,164.41,165.73,166.94,168.07,169.01,169.86,171.07,17.69,17.96,18.080000000000002,18.2,18.29,18.36,18.37,18.37,18.3,N/A,N/A -2012,1,16,8,30,102400,101190,100040,92.28,0,6.13,7.9,8.77,9.700000000000001,10.540000000000001,11.33,12.08,12.780000000000001,13.73,161.34,162.56,163.64000000000001,165.11,166.76,168.52,170.03,171.36,172.56,17.66,17.92,18.05,18.19,18.34,18.48,18.55,18.6,18.490000000000002,N/A,N/A -2012,1,16,9,30,102370,101170,100010,92.41,0,5.96,7.83,8.77,9.78,10.69,11.540000000000001,12.290000000000001,12.97,14.11,160.62,162.48,164,165.97,167.88,169.75,171.47,173.05,175.34,17.63,17.95,18.11,18.3,18.45,18.580000000000002,18.64,18.67,18.68,N/A,N/A -2012,1,16,10,30,102340,101140,99980,92.46000000000001,0,6.04,7.890000000000001,8.84,9.9,10.97,12.040000000000001,12.97,13.790000000000001,14.23,159.48,161.08,162.47,164.33,166.33,168.41,171.08,173.65,175.72,17.63,17.92,18.07,18.26,18.48,18.7,18.88,19.02,18.94,N/A,N/A -2012,1,16,11,30,102310,101110,99960,92.03,0,6.36,8.26,9.16,10.11,11.07,12.030000000000001,12.98,13.870000000000001,15.08,157.37,159.28,160.71,162.3,163.88,165.44,167.1,168.71,172.08,17.72,18.03,18.18,18.32,18.48,18.650000000000002,18.79,18.900000000000002,18.88,N/A,N/A -2012,1,16,12,30,102310,101110,99950,91.18,0,7.13,9.19,10.200000000000001,11.24,12.21,13.120000000000001,13.93,14.65,15.530000000000001,160.76,162.04,162.98,164.08,165.29,166.57,168.11,169.61,172.92000000000002,17.91,18.22,18.36,18.5,18.62,18.73,18.82,18.900000000000002,18.89,N/A,N/A -2012,1,16,13,30,102290,101090,99940,90.98,0,7.54,9.56,10.5,11.450000000000001,12.31,13.11,13.85,14.52,15.44,161.09,162.18,163.12,164.47,165.97,167.55,169.18,170.71,173.68,17.95,18.26,18.41,18.57,18.71,18.84,18.94,19.01,18.97,N/A,N/A -2012,1,16,14,30,102300,101100,99940,91.9,0,6.84,8.790000000000001,9.72,10.73,11.69,12.620000000000001,13.48,14.26,15.35,158.75,160.68,162.21,164.20000000000002,165.95000000000002,167.56,168.99,170.32,173.46,17.79,18.06,18.21,18.39,18.56,18.71,18.830000000000002,18.92,18.93,N/A,N/A -2012,1,16,15,30,102290,101090,99930,91.22,0,7.22,9.17,10.07,10.97,11.82,12.620000000000001,13.370000000000001,14.06,15.32,162.32,163.49,164.43,165.56,166.81,168.11,169.5,170.83,173.5,17.97,18.240000000000002,18.34,18.44,18.54,18.64,18.73,18.8,18.85,N/A,N/A -2012,1,16,16,30,102270,101070,99920,91.28,0,7.3100000000000005,9.3,10.24,11.200000000000001,12.08,12.92,13.700000000000001,14.42,15.73,165.07,166.22,167.16,168.43,169.73,171.07,172.31,173.46,175.70000000000002,18.01,18.31,18.45,18.6,18.73,18.85,18.91,18.96,18.97,N/A,N/A -2012,1,16,17,30,102230,101030,99880,92.17,0,6.76,8.5,9.290000000000001,10.120000000000001,10.950000000000001,11.78,12.67,13.530000000000001,15.06,162.26,164.18,165.71,167.67000000000002,169.49,171.23,172.70000000000002,174.03,176.09,17.89,18.09,18.16,18.22,18.3,18.38,18.48,18.57,18.66,N/A,N/A -2012,1,16,18,30,102190,101000,99840,91.24,0,7.1000000000000005,9.02,9.92,10.82,11.66,12.48,13.280000000000001,14.040000000000001,15.36,168.36,169.36,170.22,171.34,172.45000000000002,173.56,174.57,175.5,177.12,18.12,18.400000000000002,18.52,18.62,18.72,18.8,18.87,18.92,18.92,N/A,N/A -2012,1,16,19,30,102150,100960,99810,90.46000000000001,0,7.38,9.450000000000001,10.43,11.44,12.41,13.35,14.3,15.19,16.48,170.85,171.8,172.47,173.27,174.06,174.84,175.58,176.28,177.82,18.25,18.54,18.67,18.79,18.92,19.04,19.16,19.26,19.32,N/A,N/A -2012,1,16,20,30,102110,100910,99760,90.72,0,6.97,8.98,9.93,10.870000000000001,11.700000000000001,12.450000000000001,13.07,13.63,14.73,166.89000000000001,167.56,168.24,169.20000000000002,170.25,171.36,172.58,173.74,176.51,18.16,18.490000000000002,18.62,18.73,18.830000000000002,18.900000000000002,18.91,18.91,18.84,N/A,N/A -2012,1,16,21,30,102050,100860,99700,90.87,0,6.7700000000000005,8.77,9.75,10.76,11.700000000000001,12.61,13.43,14.18,15.42,170.39000000000001,171.62,172.61,173.76,174.89000000000001,175.99,177.18,178.31,180.64000000000001,18.080000000000002,18.36,18.5,18.650000000000002,18.79,18.92,19.01,19.09,19.11,N/A,N/A -2012,1,16,22,30,102010,100820,99660,90.71000000000001,0,7.2700000000000005,9.31,10.24,11.17,12.01,12.790000000000001,13.540000000000001,14.24,15.56,167.44,168.52,169.41,170.58,171.86,173.19,174.58,175.9,178.65,18.07,18.400000000000002,18.55,18.71,18.81,18.89,18.94,18.990000000000002,19.02,N/A,N/A -2012,1,16,23,30,101970,100770,99620,91.44,0,7.78,9.84,10.81,11.870000000000001,12.82,13.71,14.49,15.19,16.240000000000002,167.78,169.06,170.06,171.38,172.72,174.08,175.46,176.76,179.34,17.89,18.1,18.27,18.63,18.87,19.03,19.12,19.19,19.150000000000002,N/A,N/A -2012,1,17,0,30,101950,100750,99600,91.66,0,7.57,9.53,10.49,11.48,12.46,13.47,14.48,15.44,16.96,165.65,167.01,168.08,169.49,170.95000000000002,172.49,174.02,175.47,178.39000000000001,17.82,17.89,17.94,18.1,18.31,18.57,18.79,18.98,19.2,N/A,N/A -2012,1,17,1,30,101910,100720,99570,91.10000000000001,0,8.620000000000001,10.65,11.620000000000001,12.620000000000001,13.540000000000001,14.4,15.200000000000001,15.91,17.06,169.07,170.05,170.8,171.81,172.88,173.97,175.13,176.23,178.22,17.92,18,18.05,18.21,18.400000000000002,18.62,18.75,18.85,18.81,N/A,N/A -2012,1,17,2,30,101910,100720,99560,91.11,0,8.32,10.35,11.33,12.39,13.33,14.200000000000001,14.94,15.6,16.64,167.79,168.52,169.19,170.23,171.29,172.4,173.62,174.78,179.14000000000001,17.94,18.07,18.16,18.41,18.61,18.8,18.91,18.990000000000002,19.2,N/A,N/A -2012,1,17,3,30,101890,100700,99540,91.25,0,7.28,9.32,10.290000000000001,11.33,12.32,13.27,14.16,14.97,16.12,161.97,164.12,165.78,167.83,169.74,171.57,173.22,174.73,177.23,17.93,18.03,18.04,18.04,18.16,18.35,18.54,18.72,18.81,N/A,N/A -2012,1,17,4,30,101880,100680,99530,91.14,0,7.5200000000000005,9.5,10.46,11.47,12.41,13.290000000000001,14.21,15.09,16.48,168.98,170.34,171.33,172.53,173.72,174.89000000000001,176.14000000000001,177.35,179.27,17.93,18.03,18.01,17.96,18.03,18.14,18.36,18.580000000000002,18.71,N/A,N/A -2012,1,17,5,30,101850,100660,99510,90.33,0,8.69,10.82,11.82,12.82,13.75,14.63,15.46,16.23,17.490000000000002,172.89000000000001,173.77,174.5,175.42000000000002,176.34,177.29,178.28,179.21,181.02,18.12,18.3,18.39,18.56,18.71,18.830000000000002,18.900000000000002,18.94,18.990000000000002,N/A,N/A -2012,1,17,6,30,101840,100650,99490,92.08,0,8.8,10.72,11.6,12.52,13.38,14.21,15.040000000000001,15.84,17.19,176.36,176.91,177.37,177.95000000000002,178.51,179.06,179.62,180.14000000000001,181.20000000000002,18.29,18.36,18.35,18.34,18.39,18.490000000000002,18.650000000000002,18.82,18.89,N/A,N/A -2012,1,17,7,30,101840,100650,99500,91.11,0,8.56,10.57,11.46,12.34,13.16,13.93,14.67,15.370000000000001,16.62,181.3,181.57,181.8,182.09,182.42000000000002,182.77,183.20000000000002,183.63,184.59,18.52,18.740000000000002,18.8,18.84,18.86,18.87,18.87,18.86,18.79,N/A,N/A -2012,1,17,8,30,101820,100630,99490,90.33,0,7.82,9.93,10.93,11.870000000000001,12.68,13.41,14.06,14.63,15.610000000000001,181.73,182.89000000000001,183.74,184.57,185.3,185.95000000000002,186.53,187.05,187.88,18.69,18.98,19.080000000000002,19.14,19.17,19.18,19.150000000000002,19.11,18.94,N/A,N/A -2012,1,17,9,30,101820,100630,99480,90.38,0,6.2,8.28,9.290000000000001,10.28,11.19,12.030000000000001,12.81,13.540000000000001,14.85,178.53,179.87,180.84,181.76,182.61,183.4,184.15,184.85,186.22,18.740000000000002,18.96,19.01,19.04,19.06,19.07,19.06,19.04,18.97,N/A,N/A -2012,1,17,10,30,101830,100640,99490,91.02,0,6,7.99,8.98,9.950000000000001,10.82,11.63,12.38,13.07,14.36,181.36,182.59,183.51,184.43,185.27,186.06,186.83,187.56,189.20000000000002,18.59,18.79,18.84,18.85,18.900000000000002,18.96,19.01,19.06,19.03,N/A,N/A -2012,1,17,11,30,101830,100650,99500,90.3,0,6.71,8.84,9.81,10.76,11.6,12.36,13.09,13.77,15.44,183.94,185.42000000000002,186.47,187.69,188.81,189.84,190.79,191.66,194.15,18.76,19.03,19.12,19.21,19.27,19.31,19.330000000000002,19.35,19.330000000000002,N/A,N/A -2012,1,17,12,30,101860,100670,99530,90.10000000000001,0,6.01,8.21,9.290000000000001,10.32,11.22,12.05,12.84,13.59,15,185.45000000000002,187,188.26,190,191.89000000000001,193.95000000000002,196.25,198.52,202.78,18.830000000000002,19.2,19.330000000000002,19.42,19.51,19.59,19.64,19.66,19.61,N/A,N/A -2012,1,17,13,30,101830,100640,99500,89.47,0,6.8,9.05,10.16,11.31,12.36,13.370000000000001,14.36,15.31,16.65,179.96,182.89000000000001,185.17000000000002,187.85,190.13,192.16,193.92000000000002,195.52,197.95000000000002,18.95,19.31,19.47,19.71,19.93,20.16,20.26,20.31,20.28,N/A,N/A -2012,1,17,14,30,101890,100700,99550,90.15,0,5.8100000000000005,7.8100000000000005,8.77,9.71,10.61,11.49,12.41,13.3,14.91,178.02,181.15,183.59,186.37,188.9,191.34,193.4,195.27,198.33,18.830000000000002,19.1,19.17,19.26,19.36,19.45,19.57,19.69,19.77,N/A,N/A -2012,1,17,15,30,101970,100780,99640,93.55,0,2.5,4.62,5.98,7.8500000000000005,9.19,9.99,10.64,11.22,12.21,165.84,176.79,185.22,192.9,197.84,200.09,201.8,203.25,205.83,18.45,18.97,19.21,19.52,19.79,20.02,20.18,20.3,20.31,N/A,N/A -2012,1,17,16,30,101950,100770,99620,91.42,0,4.96,7.4,8.84,10.43,11.450000000000001,11.97,12.31,12.57,13.06,174.73,186.02,194.03,200.06,203.64000000000001,205.02,205.88,206.52,207.96,18.650000000000002,19.23,19.580000000000002,20.05,20.34,20.490000000000002,20.51,20.48,20.330000000000002,N/A,N/A -2012,1,17,17,30,101960,100770,99620,92.11,0,3.96,6.25,7.5,8.81,9.9,10.81,11.34,11.72,12.280000000000001,179.6,190.37,197.86,203.03,206.46,208.47,209.63,210.43,211.79,18.650000000000002,19.07,19.26,19.51,19.77,20.04,20.16,20.23,20.16,N/A,N/A -2012,1,17,18,30,101950,100760,99620,92.61,4.800000000000001,3.86,5.78,6.76,7.79,8.45,8.76,9.05,9.32,9.8,184.36,197.06,206.15,213.21,217.25,218.37,219.12,219.71,220.35,18.59,19.13,19.400000000000002,19.71,19.88,19.94,19.96,19.97,19.900000000000002,N/A,N/A -2012,1,17,19,30,101910,100720,99580,92.4,0,4.29,5.88,6.62,7.5200000000000005,8.11,8.44,8.8,9.15,9.82,187.53,199.44,208.38,217.17000000000002,222.28,224.43,226.36,228.11,230.78,18.61,19.240000000000002,19.56,19.86,20.05,20.16,20.240000000000002,20.31,20.36,N/A,N/A -2012,1,17,20,30,101870,100690,99550,91.7,2.6,4.38,6.78,7.890000000000001,8.48,8.81,8.950000000000001,9.13,9.31,9.66,206.85,216.24,222.43,226.22,228.65,230.03,230.86,231.45000000000002,231.34,18.8,19.44,19.84,20.47,20.79,20.89,20.91,20.900000000000002,20.77,N/A,N/A -2012,1,17,21,30,101860,100670,99530,90.68,0,5.05,6.890000000000001,7.62,8.1,8.42,8.61,8.790000000000001,8.96,9.23,200.23000000000002,209.19,215.66,221.31,224.87,226.89000000000001,228.21,229.24,230.66,18.900000000000002,19.13,19.400000000000002,20.19,20.63,20.830000000000002,20.86,20.84,20.64,N/A,N/A -2012,1,17,22,30,101870,100680,99540,90.99,0,5.29,7.140000000000001,7.82,8.06,8.21,8.3,8.45,8.61,8.92,207.94,215.72,221.12,226.17000000000002,229.42000000000002,231.39000000000001,232.71,233.73000000000002,234.49,18.72,18.82,19.11,20.22,20.78,20.96,20.97,20.92,20.73,N/A,N/A -2012,1,17,23,30,101880,100690,99550,91.51,0.4,5.33,7.1000000000000005,7.82,8.27,8.48,8.52,8.540000000000001,8.55,8.8,202.62,211.42000000000002,217.87,224.39000000000001,228.16,229.85,230.21,230.13,229.06,18.54,18.580000000000002,18.830000000000002,19.900000000000002,20.72,21.37,21.39,21.2,20.900000000000002,N/A,N/A -2012,1,18,0,30,101980,100780,99630,92.59,0.4,3.2800000000000002,4.68,5.08,5.61,6.1000000000000005,6.5600000000000005,6.94,7.2700000000000005,7.72,287.94,279.25,273.84000000000003,271.65,271.17,271.96,272.86,273.76,273.85,18.68,18.62,18.45,18.330000000000002,18.28,18.27,18.29,18.330000000000002,18.42,N/A,N/A -2012,1,18,1,30,102010,100820,99660,92.23,4.4,6.3,7.8,8.09,7.88,7.79,7.76,7.68,7.61,7.44,335.8,338.24,339.83,341.62,342.97,344.05,345.03000000000003,345.90000000000003,348.51,18.330000000000002,18.7,18.8,18.78,18.71,18.61,18.490000000000002,18.37,18.150000000000002,N/A,N/A -2012,1,18,2,30,102090,100900,99730,92.78,3.7,5.87,7.65,8.48,9.15,9.620000000000001,9.950000000000001,10.120000000000001,10.24,10.38,12.17,17.490000000000002,20.900000000000002,23.41,24.6,24.810000000000002,24.2,23.46,21.35,18.18,18.47,18.5,18.330000000000002,18.17,18.01,17.88,17.75,17.54,N/A,N/A -2012,1,18,3,30,102150,100950,99780,88.95,14.3,8.52,10.05,10.72,11.31,11.790000000000001,12.19,12.4,12.51,11.91,0.47000000000000003,0.1,359.92,359.91,0.05,0.3,1.12,2.0300000000000002,5.25,17.31,17.12,16.97,16.78,16.59,16.38,16.18,16,15.74,N/A,N/A -2012,1,18,4,30,102220,101000,99820,67.98,0,13.59,14.94,15.280000000000001,15.450000000000001,15.540000000000001,15.6,15.620000000000001,15.63,15.65,15.8,15.97,16.11,16.27,16.45,16.62,16.85,17.09,17.72,15.530000000000001,15.14,14.950000000000001,14.75,14.56,14.38,14.18,14,13.620000000000001,N/A,N/A -2012,1,18,5,30,102280,101050,99870,69.41,0,12.38,13.57,13.88,14.05,14.16,14.24,14.280000000000001,14.32,14.370000000000001,20.81,21.11,21.3,21.490000000000002,21.68,21.85,22.04,22.22,22.62,14.57,14.11,13.9,13.69,13.48,13.290000000000001,13.08,12.9,12.51,N/A,N/A -2012,1,18,6,30,102330,101100,99910,68.65,0,13.32,14.61,14.94,15.120000000000001,15.24,15.32,15.370000000000001,15.41,15.450000000000001,26.75,27.02,27.19,27.36,27.52,27.68,27.86,28.03,28.43,13.48,12.91,12.68,12.47,12.25,12.06,11.85,11.66,11.28,N/A,N/A -2012,1,18,7,30,102390,101160,99960,70.46000000000001,0,12.780000000000001,13.94,14.24,14.4,14.49,14.55,14.58,14.61,14.620000000000001,29.7,30.04,30.26,30.47,30.66,30.85,31.05,31.25,31.67,12.700000000000001,12.1,11.85,11.63,11.42,11.22,11.02,10.83,10.44,N/A,N/A -2012,1,18,8,30,102410,101180,99980,71.5,0,12.75,13.88,14.16,14.31,14.39,14.44,14.47,14.48,14.47,31.86,32.17,32.37,32.56,32.75,32.92,33.12,33.3,33.7,12.05,11.4,11.16,10.93,10.71,10.52,10.31,10.120000000000001,9.74,N/A,N/A -2012,1,18,9,30,102440,101210,100000,72.12,0,12.41,13.47,13.73,13.86,13.93,13.97,13.99,14,13.98,34.72,35.04,35.25,35.44,35.64,35.81,36,36.18,36.59,11.52,10.84,10.59,10.370000000000001,10.15,9.96,9.75,9.56,9.17,N/A,N/A -2012,1,18,10,30,102450,101220,100010,73.07000000000001,0,11.91,12.9,13.14,13.25,13.32,13.35,13.370000000000001,13.370000000000001,13.35,38.07,38.410000000000004,38.63,38.83,39.04,39.230000000000004,39.44,39.63,40.06,11.15,10.47,10.22,9.99,9.77,9.58,9.370000000000001,9.18,8.8,N/A,N/A -2012,1,18,11,30,102490,101250,100050,74.56,0,11.450000000000001,12.36,12.58,12.68,12.74,12.77,12.780000000000001,12.780000000000001,12.76,41.08,41.5,41.78,42.03,42.29,42.52,42.78,43.03,43.56,10.97,10.290000000000001,10.040000000000001,9.82,9.6,9.41,9.200000000000001,9.01,8.63,N/A,N/A -2012,1,18,12,30,102520,101280,100070,75.31,0,11.06,11.94,12.16,12.280000000000001,12.34,12.39,12.41,12.42,12.42,45.03,45.46,45.730000000000004,45.980000000000004,46.230000000000004,46.44,46.68,46.9,47.35,11.120000000000001,10.46,10.21,9.99,9.77,9.58,9.370000000000001,9.18,8.8,N/A,N/A -2012,1,18,13,30,102530,101290,100090,72.55,0,11.01,11.86,12.07,12.16,12.21,12.24,12.24,12.24,12.21,50.7,50.86,50.95,51.03,51.120000000000005,51.19,51.28,51.36,51.53,11.03,10.36,10.11,9.88,9.67,9.47,9.26,9.07,8.69,N/A,N/A -2012,1,18,14,30,102550,101310,100100,74.41,0,9.85,10.540000000000001,10.700000000000001,10.77,10.8,10.82,10.81,10.8,10.76,54.04,54.31,54.480000000000004,54.65,54.81,54.96,55.13,55.28,55.65,10.91,10.26,10.01,9.790000000000001,9.58,9.39,9.18,8.99,8.6,N/A,N/A -2012,1,18,15,30,102540,101300,100100,76.31,0,8.99,9.6,9.74,9.81,9.84,9.86,9.86,9.85,9.83,55.92,56.27,56.5,56.72,56.93,57.120000000000005,57.34,57.54,57.99,11.1,10.49,10.26,10.040000000000001,9.83,9.63,9.43,9.24,8.85,N/A,N/A -2012,1,18,16,30,102520,101280,100080,75.35000000000001,0,8.22,8.74,8.870000000000001,8.92,8.94,8.96,8.950000000000001,8.950000000000001,8.92,59.160000000000004,59.5,59.730000000000004,59.95,60.17,60.36,60.57,60.77,61.21,11.5,10.92,10.69,10.47,10.26,10.07,9.870000000000001,9.68,9.290000000000001,N/A,N/A -2012,1,18,17,30,102480,101240,100040,75.33,0,7.19,7.6000000000000005,7.68,7.71,7.72,7.72,7.7,7.69,7.640000000000001,52.96,53.36,53.65,53.93,54.2,54.45,54.730000000000004,54.99,55.58,11.620000000000001,11.08,10.86,10.64,10.44,10.25,10.040000000000001,9.85,9.47,N/A,N/A -2012,1,18,18,30,102450,101210,100010,72.43,0,5.73,6.01,6.05,6.0600000000000005,6.0600000000000005,6.05,6.03,6.0200000000000005,5.97,53,53.46,53.78,54.09,54.39,54.68,55,55.31,56,11.81,11.3,11.09,10.88,10.68,10.49,10.290000000000001,10.1,9.72,N/A,N/A -2012,1,18,19,30,102420,101190,99990,69.98,0,4.55,4.74,4.7700000000000005,4.78,4.7700000000000005,4.7700000000000005,4.75,4.74,4.71,44.28,44.79,45.17,45.52,45.87,46.19,46.56,46.910000000000004,47.71,12.030000000000001,11.56,11.35,11.14,10.94,10.76,10.55,10.370000000000001,9.98,N/A,N/A -2012,1,18,20,30,102360,101120,99930,67.7,0,3.12,3.23,3.23,3.23,3.21,3.2,3.19,3.17,3.14,41.58,42.08,42.49,42.89,43.29,43.67,44.13,44.57,45.68,12.32,11.89,11.68,11.48,11.28,11.1,10.9,10.71,10.33,N/A,N/A -2012,1,18,21,30,102320,101100,99900,59.82,0,3.67,3.84,3.87,3.89,3.9,3.9,3.91,3.91,3.91,39.6,39.45,39.32,39.2,39.09,39,38.89,38.79,38.59,12.94,12.51,12.31,12.11,11.91,11.72,11.52,11.34,10.950000000000001,N/A,N/A -2012,1,18,22,30,102260,101030,99840,61.01,0,2.17,2.25,2.25,2.25,2.25,2.24,2.24,2.24,2.23,32.67,33,33.34,33.67,34,34.300000000000004,34.64,34.97,35.730000000000004,13.19,12.790000000000001,12.6,12.4,12.200000000000001,12.02,11.82,11.63,11.25,N/A,N/A -2012,1,18,23,30,102230,101000,99810,61.54,0,0.12,0.13,0.14,0.15,0.15,0.16,0.16,0.16,0.17,104.14,119.48,119.69,119.89,119.9,119.83,119.85000000000001,119.69,117.73,13.42,13.040000000000001,12.85,12.65,12.46,12.27,12.07,11.89,11.5,N/A,N/A -2012,1,19,0,30,102250,101030,99840,63.870000000000005,0,2.91,3.0100000000000002,3.02,3.0100000000000002,3.0100000000000002,3,2.99,2.98,2.96,31.36,31.43,31.48,31.52,31.55,31.580000000000002,31.62,31.66,31.75,13.69,13.3,13.11,12.9,12.71,12.52,12.32,12.13,11.74,N/A,N/A -2012,1,19,1,30,102200,100980,99790,64.14,0,1.67,1.74,1.75,1.75,1.75,1.75,1.76,1.76,1.76,79.91,79.44,79.85000000000001,80.2,80.53,80.82000000000001,81.14,81.44,82.14,13.88,13.5,13.32,13.120000000000001,12.92,12.74,12.540000000000001,12.35,11.96,N/A,N/A -2012,1,19,2,30,102160,100940,99750,64.45,0,1.79,1.85,1.86,1.86,1.86,1.86,1.86,1.85,1.85,91.82000000000001,92.78,93.29,93.8,94.3,94.77,95.35000000000001,95.9,97.3,14.05,13.68,13.5,13.3,13.1,12.92,12.72,12.530000000000001,12.15,N/A,N/A -2012,1,19,3,30,102120,100900,99710,63.33,0,2.58,2.69,2.71,2.72,2.73,2.73,2.74,2.75,2.7600000000000002,127.43,127.85000000000001,128.07,128.3,128.54,128.76,129.04,129.3,129.97,14.35,13.98,13.8,13.6,13.41,13.22,13.02,12.83,12.450000000000001,N/A,N/A -2012,1,19,4,30,102090,100870,99690,62.47,0,2.88,3,3.02,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.02,117.73,118.21000000000001,118.54,118.86,119.18,119.48,119.8,120.12,120.88,14.67,14.3,14.120000000000001,13.92,13.72,13.540000000000001,13.33,13.15,12.76,N/A,N/A -2012,1,19,5,30,102040,100820,99640,68.93,0,3,3.13,3.15,3.16,3.16,3.16,3.16,3.16,3.16,144.71,145.28,145.63,145.98,146.35,146.70000000000002,147.16,147.61,148.89000000000001,14.77,14.41,14.22,14.030000000000001,13.83,13.65,13.450000000000001,13.26,12.88,N/A,N/A -2012,1,19,6,30,102020,100810,99630,73.52,0,3.39,3.56,3.59,3.6,3.6,3.61,3.61,3.61,3.62,155.68,156.18,156.49,156.8,157.13,157.44,157.81,158.17000000000002,159.08,14.950000000000001,14.59,14.4,14.200000000000001,14.01,13.82,13.620000000000001,13.44,13.05,N/A,N/A -2012,1,19,7,30,101980,100770,99590,77.21000000000001,0,3.65,3.85,3.9,3.92,3.94,3.96,3.97,3.98,4.01,165.96,166.3,166.5,166.72,166.94,167.16,167.44,167.71,168.46,15.19,14.84,14.65,14.46,14.26,14.08,13.88,13.69,13.3,N/A,N/A -2012,1,19,8,30,101950,100740,99560,80.67,0,4.1,4.34,4.39,4.43,4.44,4.46,4.47,4.48,4.5,170.54,170.72,170.8,170.9,171.01,171.1,171.22,171.34,171.62,15.5,15.15,14.97,14.77,14.57,14.39,14.19,14,13.61,N/A,N/A -2012,1,19,9,30,101900,100690,99520,83.86,0,4.25,4.53,4.6000000000000005,4.64,4.67,4.69,4.71,4.73,4.78,177.78,177.91,177.99,178.08,178.18,178.28,178.41,178.54,178.95000000000002,15.790000000000001,15.450000000000001,15.27,15.07,14.88,14.69,14.49,14.31,13.92,N/A,N/A -2012,1,19,10,30,101880,100670,99500,86.57000000000001,0,4.7700000000000005,5.09,5.17,5.21,5.23,5.25,5.26,5.28,5.33,176.53,176.79,176.98,177.18,177.41,177.63,177.92000000000002,178.23,179.24,16.11,15.780000000000001,15.610000000000001,15.41,15.22,15.030000000000001,14.83,14.65,14.27,N/A,N/A -2012,1,19,11,30,101860,100650,99480,88.78,0,5.25,5.67,5.78,5.84,5.89,5.92,5.95,5.98,6.04,183.08,183.32,183.46,183.59,183.72,183.85,184,184.14000000000001,184.48,16.490000000000002,16.18,16.01,15.81,15.620000000000001,15.43,15.24,15.05,14.67,N/A,N/A -2012,1,19,12,30,101850,100640,99480,88.7,0,7.57,7.96,7.95,7.8500000000000005,7.74,7.640000000000001,7.54,7.46,7.3500000000000005,218.48000000000002,217.77,217.17000000000002,216.46,215.65,214.83,213.77,212.77,210.56,16.76,16.46,16.28,16.09,15.9,15.72,15.540000000000001,15.36,14.99,N/A,N/A -2012,1,19,13,30,101810,100620,99450,90.24,0,5.08,5.9,6.2,6.44,6.63,6.78,6.92,7.03,7.21,221.04,222.73000000000002,223.67000000000002,224.46,224.92000000000002,225.18,224.97,224.68,223.23000000000002,17.43,17.240000000000002,17.11,16.96,16.81,16.67,16.52,16.37,16.05,N/A,N/A -2012,1,19,14,30,101810,100610,99450,90.53,0,4.28,5.01,5.3100000000000005,5.58,5.84,6.07,6.32,6.5600000000000005,7.08,200.46,199.97,199.66,199.21,198.84,198.52,198.55,198.69,200.17000000000002,17.42,17.240000000000002,17.12,16.98,16.84,16.71,16.580000000000002,16.47,16.23,N/A,N/A -2012,1,19,15,30,101800,100600,99440,92.33,0,3.0100000000000002,3.81,4.21,4.69,5.25,5.87,6.43,6.96,7.82,194.16,197.53,200.11,203.27,205.65,207.6,208.25,208.63,209.67000000000002,17.41,17.32,17.27,17.2,17.11,17.03,16.91,16.8,16.68,N/A,N/A -2012,1,19,16,30,101750,100560,99400,90.45,0,3.8000000000000003,4.6000000000000005,4.99,5.4,5.86,6.33,6.83,7.28,7.78,202.53,203.92000000000002,205.03,206.48000000000002,207.70000000000002,208.8,208.58,208.11,206.96,17.64,17.5,17.42,17.34,17.29,17.25,17.240000000000002,17.240000000000002,17.16,N/A,N/A -2012,1,19,17,30,101700,100510,99350,92.49,0,4.41,5.11,5.41,5.73,6.05,6.37,6.890000000000001,7.45,8.790000000000001,187.41,188.54,189.46,190.61,191.83,193.09,194.95000000000002,196.95000000000002,202.23000000000002,17.75,17.55,17.43,17.3,17.18,17.07,17.04,17.03,17.19,N/A,N/A -2012,1,19,18,30,101680,100480,99330,93.38,0,5.11,6.03,6.43,6.84,7.21,7.58,7.97,8.34,9.32,190.87,191.59,192.11,192.73000000000002,193.39000000000001,194.05,195.02,196.1,201.15,18.03,17.87,17.76,17.64,17.53,17.42,17.330000000000002,17.25,17.25,N/A,N/A -2012,1,19,19,30,101650,100450,99300,94.73,0,4.61,5.61,6.05,6.5,6.890000000000001,7.25,7.62,7.98,8.94,188.5,189.21,189.76,190.35,190.92000000000002,191.46,192.68,194.06,203,18.080000000000002,17.98,17.900000000000002,17.8,17.7,17.61,17.53,17.46,17.46,N/A,N/A -2012,1,19,20,30,101580,100390,99240,96.03,0,4.79,5.91,6.41,6.94,7.53,8.18,8.8,9.38,9.71,192.82,193.77,194.99,197.19,200.32,204.01,207.41,210.47,212.64000000000001,18.23,18.2,18.18,18.16,18.17,18.2,18.240000000000002,18.26,18.18,N/A,N/A -2012,1,19,21,30,101540,100350,99200,95.91,0,3.91,5.0600000000000005,5.57,6.09,6.68,7.3500000000000005,8.25,9.19,9.78,188.31,190.78,192.75,195.16,197.67000000000002,200.34,204.18,208.21,210.20000000000002,18.18,18.17,18.14,18.09,18.07,18.07,18.14,18.23,18.18,N/A,N/A -2012,1,19,22,30,101510,100320,99170,95.79,0,3.61,4.76,5.2700000000000005,5.84,6.68,7.8100000000000005,8.45,8.92,9.75,186.12,190.65,193.6,196.26,200.34,205.84,208.31,209.85,212.83,18.14,18.16,18.14,18.1,18.18,18.34,18.35,18.32,18.400000000000002,N/A,N/A -2012,1,19,23,30,101480,100290,99150,94.72,0,3.5500000000000003,5.09,5.84,6.640000000000001,7.41,8.17,8.59,8.9,9.38,191.07,193.03,194.43,195.89000000000001,197.26,198.58,199.54,200.32,201.94,18.09,18.34,18.45,18.55,18.61,18.64,18.650000000000002,18.650000000000002,18.6,N/A,N/A -2012,1,20,0,30,101460,100280,99140,93.9,0,3.93,5.84,6.93,8.18,9.01,9.48,9.81,10.08,10.540000000000001,190.36,194.8,197.70000000000002,199.8,201.17000000000002,201.93,202.58,203.15,204.31,18.25,18.7,18.94,19.16,19.32,19.43,19.5,19.55,19.57,N/A,N/A -2012,1,20,1,30,101460,100280,99130,95.26,0,4.2,6.22,7.4,8.51,9.18,9.51,9.85,10.18,10.700000000000001,187.98,193.21,196.44,197.88,198.89000000000001,199.56,200.22,200.84,202.46,17.91,18.6,18.95,19.12,19.23,19.31,19.38,19.44,19.53,N/A,N/A -2012,1,20,2,30,101450,100270,99120,95.06,0,3.41,5.01,6.08,7.87,8.98,9.5,10.03,10.52,11.21,180.62,185.95000000000002,189.71,194.08,196.58,197.52,198.43,199.3,202,18.05,18.25,18.46,18.88,19.04,19.04,19.1,19.16,19.29,N/A,N/A -2012,1,20,3,30,101450,100260,99120,93.92,0.4,3.47,5.34,6.3100000000000005,7.4,8.51,9.69,10.53,11.23,11.99,178.4,190.18,197.31,200.92000000000002,202.85,203.53,204.56,205.63,206.77,18.36,18.73,18.900000000000002,19.07,19.150000000000002,19.19,19.17,19.14,18.98,N/A,N/A -2012,1,20,4,30,101440,100250,99110,91.10000000000001,0,4.67,7.390000000000001,8.85,10.21,11.22,11.96,12.09,12.05,12.88,202.47,205.07,207.16,209.58,211.15,212.07,210.52,208.53,205.21,18.97,19.28,19.330000000000002,19.29,19.26,19.22,19.23,19.26,19.27,N/A,N/A -2012,1,20,5,30,101430,100240,99100,91.96000000000001,0,4.0600000000000005,6.01,6.95,7.99,8.94,9.84,10.39,10.82,12,214.05,213.95000000000002,213.76,213.27,211.97,210.04,207.25,204.47,202.91,18.82,19.17,19.23,19.22,19.14,19.02,18.95,18.89,18.61,N/A,N/A -2012,1,20,6,30,101430,100250,99100,92.13,0,4.18,6.2,7.17,8.13,9.07,10.01,10.82,11.56,12.540000000000001,198.47,199.77,200.9,202.46,203.71,204.76,205.97,207.16,208.72,18.650000000000002,18.95,19.01,19.01,18.98,18.94,18.990000000000002,19.07,19.740000000000002,N/A,N/A -2012,1,20,7,30,101440,100250,99110,92.93,0,4.05,6.24,7.51,8.93,10.02,10.8,11.13,11.290000000000001,11.540000000000001,181.31,185.81,189.26,192.38,195.48000000000002,198.55,200.35,201.63,204.44,18.43,18.59,18.62,18.66,19.150000000000002,20.03,20.28,20.32,20.27,N/A,N/A -2012,1,20,8,30,101410,100220,99080,93.66,0,3.98,5.95,7.11,8.68,10.05,11.24,11.790000000000001,12.13,12.56,176.07,180.99,184.55,188.46,191.74,194.54,196.13,197.31,199.73000000000002,18.26,18.43,18.56,18.84,19.3,19.84,20.01,20.080000000000002,20,N/A,N/A -2012,1,20,9,30,101390,100210,99070,93.5,2.2,5.69,7.66,8.8,10.15,11.48,12.81,13.82,14.68,15.21,171.91,176.94,180.68,184.20000000000002,187.36,190.28,192.8,195.05,196.68,18.150000000000002,18.400000000000002,18.62,18.98,19.34,19.7,19.91,20.05,19.97,N/A,N/A -2012,1,20,10,30,101390,100210,99070,91.55,0.4,5.87,7.95,9.03,10.21,11.33,12.41,13.5,14.540000000000001,15.59,179.57,181.24,182.65,184.39000000000001,185.95000000000002,187.41,189.44,191.55,197.06,18.6,18.79,18.900000000000002,19.12,19.330000000000002,19.55,19.66,19.740000000000002,19.77,N/A,N/A -2012,1,20,11,30,101390,100210,99070,92.02,0,7.18,9.16,10.16,11.31,12.44,13.56,14.26,14.82,15.06,180.79,182.58,184.21,186.65,189.24,191.98000000000002,194.19,196.12,197.52,18.46,18.68,18.88,19.22,19.55,19.84,19.95,20,19.830000000000002,N/A,N/A -2012,1,20,12,30,101400,100220,99080,92.27,1.1,5.43,7.41,8.48,9.64,10.66,11.56,12.48,13.370000000000001,15.64,175.15,177.83,179.93,182.22,183.95000000000002,185.24,186.36,187.38,192.71,18.44,18.68,18.79,18.93,19.03,19.1,19.17,19.23,19.61,N/A,N/A -2012,1,20,13,30,101400,100220,99080,91.44,0,6.66,8.76,9.8,10.97,12.06,13.120000000000001,14.08,14.96,16.15,178.24,179.43,180.29,181.32,182.43,183.61,185.16,186.72,191.21,18.61,18.82,18.92,19.06,19.21,19.35,19.51,19.650000000000002,19.87,N/A,N/A -2012,1,20,14,30,101420,100240,99090,91.02,0,7.1000000000000005,9.16,10.14,11.17,12.1,12.950000000000001,13.68,14.33,14.88,183.29,184.03,184.72,185.77,187.08,188.54,190.77,193.04,197.27,18.67,19.03,19.21,19.43,19.61,19.77,19.89,20,20.05,N/A,N/A -2012,1,20,15,30,101430,100250,99100,92.33,0,6.19,8.040000000000001,8.98,9.99,10.99,12,13,13.96,14.42,177.8,179.21,180.46,182.09,184.20000000000002,186.72,189.81,192.93,195.64000000000001,18.44,18.740000000000002,18.92,19.16,19.38,19.59,19.79,19.98,20.07,N/A,N/A -2012,1,20,16,30,101410,100220,99080,92.02,0,5.98,7.98,9.02,10.15,11.24,12.31,13.15,13.89,14.39,175.92000000000002,178.02,179.73,181.81,184.31,187.15,190.04,192.77,195.45000000000002,18.54,18.740000000000002,18.900000000000002,19.19,19.47,19.75,19.94,20.09,20.17,N/A,N/A -2012,1,20,17,30,101390,100210,99060,92.11,0,6.94,8.77,9.65,10.67,11.700000000000001,12.77,13.620000000000001,14.36,14.8,177.26,178.09,179.04,180.86,183.43,186.6,189.67000000000002,192.54,195.38,18.53,18.64,18.72,18.91,19.26,19.72,19.990000000000002,20.18,20.26,N/A,N/A -2012,1,20,18,30,101380,100190,99050,91.89,0,6.96,8.91,9.86,10.92,11.93,12.93,13.700000000000001,14.35,14.64,175.44,176.41,177.75,180.54,183.6,186.88,189.52,191.83,193.62,18.56,18.68,18.87,19.37,19.73,20,20.150000000000002,20.25,20.22,N/A,N/A -2012,1,20,19,30,101370,100180,99040,92.4,0,5.84,7.66,8.58,9.620000000000001,10.700000000000001,11.85,12.94,13.98,14.4,169.07,171.5,173.62,176.65,179.64000000000001,182.68,185.86,188.96,191.20000000000002,18.5,18.580000000000002,18.7,19.07,19.36,19.59,19.77,19.94,19.93,N/A,N/A -2012,1,20,20,30,101350,100160,99020,92.5,0,5.39,7.33,8.33,9.46,10.5,11.5,12.67,13.870000000000001,14.69,171.71,174.9,177.07,179.21,181.1,182.83,185.97,189.46,192.72,18.53,18.66,18.77,19.04,19.26,19.47,19.740000000000002,20.02,20.11,N/A,N/A -2012,1,20,21,30,101310,100130,98990,92.61,0,5.71,7.58,8.55,9.56,10.61,11.74,13,14.280000000000001,14.98,174.57,176.89000000000001,178.69,180.70000000000002,182.37,183.82,186.97,190.55,193.16,18.42,18.77,18.95,19.12,19.32,19.54,19.87,20.2,20.23,N/A,N/A -2012,1,20,22,30,101280,100090,98950,92.63,0,5.9,7.7700000000000005,8.73,9.78,10.72,11.620000000000001,12.77,13.98,14.57,170.1,172.64000000000001,174.58,176.78,178.84,180.84,184.82,189.31,191.99,18.36,18.67,18.87,19.16,19.38,19.55,19.84,20.13,20.16,N/A,N/A -2012,1,20,23,30,101250,100070,98930,93.28,0,5.29,7.11,8.11,9.32,10.48,11.64,12.92,14.22,14.84,167.32,171.17000000000002,174.03,177.04,179.62,181.92000000000002,185.95000000000002,190.38,192.89000000000001,18.22,18.27,18.41,18.830000000000002,19.2,19.54,19.93,20.3,20.39,N/A,N/A -2012,1,21,0,30,101260,100080,98930,92.57000000000001,0,6.01,7.87,8.84,9.89,10.86,11.8,13.01,14.290000000000001,15.05,165.97,169.21,171.54,173.88,175.97,177.91,181.88,186.41,189.83,18.35,18.57,18.73,19,19.21,19.38,19.69,20.01,20.1,N/A,N/A -2012,1,21,1,30,101240,100060,98920,92.31,0,6.7,8.61,9.56,10.620000000000001,11.65,12.65,13.68,14.66,16.6,172.11,173.99,175.36,177,178.6,180.21,181.94,183.64000000000001,190.06,18.400000000000002,18.490000000000002,18.57,18.8,19.06,19.32,19.55,19.75,20.18,N/A,N/A -2012,1,21,2,30,101270,100080,98940,92.11,0,6.890000000000001,8.89,9.93,11.040000000000001,12.09,13.11,14.1,15.02,16.580000000000002,176.69,178.08,179.24,180.71,182.15,183.57,185.14000000000001,186.67000000000002,191.96,18.43,18.740000000000002,18.94,19.23,19.45,19.63,19.76,19.87,20.06,N/A,N/A -2012,1,21,3,30,101300,100120,98980,90.24,0,6.29,8.39,9.41,10.46,11.450000000000001,12.43,13.43,14.38,15.9,176.93,178.86,180.39000000000001,182.27,183.89000000000001,185.35,186.52,187.53,189.45000000000002,18.900000000000002,19.22,19.34,19.45,19.55,19.650000000000002,19.64,19.61,19.2,N/A,N/A -2012,1,21,4,30,101300,100120,98970,89.22,0,6.88,9.14,10.27,11.38,12.34,13.22,14.040000000000001,14.81,16.18,180.86,182.08,183.09,184.39000000000001,185.76,187.23,188.88,190.51,194.51,19.1,19.43,19.53,19.6,19.62,19.62,19.52,19.400000000000002,18.92,N/A,N/A -2012,1,21,5,30,101290,100110,98970,89.04,0,7.37,9.6,10.64,11.700000000000001,12.65,13.530000000000001,14.34,15.09,16.44,184.31,185.16,185.91,187.04,188.31,189.76,191.45000000000002,193.15,196.72,19.150000000000002,19.400000000000002,19.44,19.45,19.39,19.29,19.09,18.89,18.990000000000002,N/A,N/A -2012,1,21,6,30,101330,100150,99010,90.43,0,6.21,8.290000000000001,9.31,10.38,11.43,12.49,13.57,14.620000000000001,15.88,185.94,186.76,187.48,188.62,189.92000000000002,191.39000000000001,193.21,195.08,198.72,18.96,19.18,19.2,19.17,19.07,18.92,18.86,18.830000000000002,20.03,N/A,N/A -2012,1,21,7,30,101340,100160,99020,90.92,0,7.140000000000001,9.120000000000001,10.1,11.22,12.32,13.46,14.540000000000001,15.55,16.35,189.57,190.41,191.13,192.15,193.33,194.69,196.57,198.53,202.64000000000001,18.78,18.92,18.92,18.87,18.78,18.66,19.26,20,20.5,N/A,N/A -2012,1,21,8,30,101340,100160,99010,91.29,0,6.7700000000000005,8.75,9.72,10.790000000000001,11.85,12.92,14.01,15.05,15.71,187.85,188.73,189.51,190.68,192.29,194.28,197.67000000000002,201.33,206.67000000000002,18.73,18.86,18.85,18.79,18.73,18.68,19.38,20.240000000000002,20.71,N/A,N/A -2012,1,21,9,30,101360,100180,99030,91.61,0,5.44,7.4,8.39,9.5,10.66,11.9,12.94,13.88,14.34,186.8,188.62,190.14000000000001,192.16,194.61,197.52,201.15,204.83,208.22,18.72,18.88,18.87,18.8,18.740000000000002,18.68,19.240000000000002,19.91,20.55,N/A,N/A -2012,1,21,10,30,101360,100180,99040,92.23,0.4,5.15,6.91,7.82,8.84,9.98,11.25,12.31,13.280000000000001,13.73,180.46,183.25,185.58,188.44,191.86,195.87,200.52,205.18,208.42000000000002,18.57,18.69,18.580000000000002,18.18,18.240000000000002,18.59,19.32,20.1,20.54,N/A,N/A -2012,1,21,11,30,101420,100230,99090,93.43,0,3.73,5.61,6.62,7.82,8.870000000000001,9.790000000000001,10.47,11.02,11.540000000000001,177.06,180.71,184.32,190.16,195.33,199.97,203.4,206.26,209.37,18.43,18.6,18.55,18.36,18.36,18.52,19.02,19.57,20.13,N/A,N/A -2012,1,21,12,30,101440,100250,99110,95.28,0.4,1.97,3.94,5.3,6.95,8.11,8.78,9.31,9.76,10.31,194.70000000000002,192.36,193.1,200.75,205.66,208.06,209.49,210.58,212.04,18.18,18.07,17.93,17.85,17.98,18.240000000000002,18.73,19.240000000000002,19.78,N/A,N/A -2012,1,21,13,30,101450,100260,99110,95.95,0,1.73,3.18,4.17,5.63,6.6000000000000005,7.1000000000000005,7.75,8.43,9.09,227.57,221.43,218.51,220.89000000000001,222.05,222.13,221.24,220.13,217.9,18.02,18.09,18.05,17.990000000000002,17.95,17.91,18,18.1,18.26,N/A,N/A -2012,1,21,14,30,101490,100300,99150,95.97,0.4,1.21,2.5,3.54,5.22,6.44,7.12,7.47,7.71,7.82,238.52,229.13,223.91,225.94,227.42000000000002,228.23000000000002,228.01,227.57,227.18,18.03,18.17,18.19,18.23,18.28,18.32,18.28,18.22,18.04,N/A,N/A -2012,1,21,15,30,101510,100320,99170,95.4,0,2.0300000000000002,3.2,3.67,4.15,4.58,4.97,5.34,5.68,6.24,227.43,230.86,233.07,234.66,235.72,236.43,236.64000000000001,236.71,235.87,18.240000000000002,18.48,18.53,18.57,18.580000000000002,18.57,18.55,18.53,18.44,N/A,N/A -2012,1,21,16,30,101510,100330,99180,94.96000000000001,0,2.5300000000000002,3.85,4.3,4.72,5.0600000000000005,5.3500000000000005,5.62,5.86,6.3500000000000005,211.04,216.5,219.87,221.8,223.15,224.09,225,225.84,227.29,18.400000000000002,18.75,18.830000000000002,18.85,18.84,18.82,18.79,18.76,18.71,N/A,N/A -2012,1,21,17,30,101500,100320,99170,95.2,1.8,2.66,3.85,4.26,4.7,5.04,5.3100000000000005,5.5600000000000005,5.78,6.22,214.37,220.43,223.84,225.77,226.85,227.35,227.58,227.72,227.45000000000002,18.38,18.66,18.73,18.78,18.8,18.81,18.79,18.77,18.69,N/A,N/A -2012,1,21,18,30,101500,100310,99170,95.12,6.2,2.2,3.44,3.91,4.33,4.68,4.98,5.22,5.42,5.8,213.58,219.16,222.49,224.56,226.06,227.12,227.98000000000002,228.74,230.41,18.52,18.93,19.05,19.1,19.1,19.080000000000002,19.03,18.990000000000002,18.88,N/A,N/A -2012,1,21,19,30,101500,100320,99170,94.67,0.4,2.52,3.72,4.07,4.33,4.54,4.73,4.92,5.11,5.55,203.78,209.74,213.45000000000002,215.98000000000002,218.15,220.08,222.3,224.46,228.17000000000002,18.75,19.11,19.19,19.17,19.150000000000002,19.14,19.18,19.22,19.23,N/A,N/A -2012,1,21,20,30,101470,100290,99140,94.5,0,3.18,4.25,4.57,4.89,5.15,5.38,5.63,5.87,6.34,187.54,194.86,200.03,205.36,209.42000000000002,212.61,215.62,218.4,223.45000000000002,18.77,19.02,19.11,19.21,19.32,19.42,19.51,19.580000000000002,19.62,N/A,N/A -2012,1,21,21,30,101440,100260,99120,94.08,0,3.62,4.64,4.91,5.21,5.44,5.61,5.79,5.96,6.2700000000000005,179.82,188,195.01,206.64000000000001,214.03,218.41,222.06,225.26,230.12,18.81,18.96,19.12,19.6,19.93,20.14,20.25,20.31,20.240000000000002,N/A,N/A -2012,1,21,22,30,101420,100230,99090,93.10000000000001,0,4.8500000000000005,6.16,6.48,6.48,6.43,6.37,6.3100000000000005,6.26,6.22,175.93,182.53,188,194.76,199.35,202.54,205.65,208.47,213.55,18.63,18.5,18.6,19.09,19.43,19.66,19.8,19.900000000000002,19.88,N/A,N/A -2012,1,21,23,30,101400,100220,99080,92.77,0,4.39,5.75,6.1000000000000005,6.09,6.1000000000000005,6.13,6.17,6.21,6.21,170.94,180.83,187.61,193.48000000000002,198.01,201.71,204.73000000000002,207.33,211.84,18.57,18.61,18.86,19.66,20.14,20.42,20.5,20.51,20.36,N/A,N/A -2012,1,22,0,30,101410,100230,99080,93.79,0,3.81,5.1000000000000005,5.45,5.55,5.59,5.61,5.63,5.64,5.65,176.88,183.86,189.87,198.29,204.67000000000002,209.69,213.1,215.81,218.97,18.32,18.46,18.55,18.78,19.03,19.29,19.57,19.830000000000002,19.990000000000002,N/A,N/A -2012,1,22,1,30,101420,100230,99090,95.78,0,2.04,3.27,3.74,4.07,4.2700000000000005,4.38,4.49,4.58,4.79,190.18,195.08,200.07,207.68,213.05,216.85,220.02,222.75,224.63,18.07,18.14,18.13,18.16,18.240000000000002,18.330000000000002,18.400000000000002,18.47,18.7,N/A,N/A -2012,1,22,2,30,101430,100240,99090,96.23,0,2.08,3.27,3.65,3.8200000000000003,3.93,3.99,4.1,4.2,4.67,180.44,191.52,200.19,208.77,214.32,217.83,220.69,223.19,224.25,17.96,18.06,18.11,18.26,18.38,18.47,18.55,18.63,18.78,N/A,N/A -2012,1,22,3,30,101400,100210,99060,96.7,0,1.9100000000000001,3,3.35,3.5500000000000003,3.68,3.7800000000000002,4,4.25,4.99,161.84,180.03,192.07,202.12,208.79,213.34,215.3,216.51,212.69,17.85,17.97,18.02,18.11,18.150000000000002,18.18,18.29,18.42,18.79,N/A,N/A -2012,1,22,4,30,101380,100200,99050,96.66,0,2.07,3.66,4.34,4.7,5.08,5.48,5.8500000000000005,6.21,6.86,177.41,193.06,201.63,203.06,203.28,202.73000000000002,202.06,201.39000000000001,199.98000000000002,17.87,17.84,17.81,17.88,17.98,18.11,18.400000000000002,18.69,19.18,N/A,N/A -2012,1,22,5,30,101390,100200,99050,96.37,0,2.48,3.71,4.41,5.54,6.05,6.1000000000000005,6.3100000000000005,6.5600000000000005,7.34,155.93,169.11,177.87,185.75,189.17000000000002,189.38,189.28,189.1,188.73,17.87,18.11,18.21,18.26,18.22,18.12,18.080000000000002,18.06,18.56,N/A,N/A -2012,1,22,6,30,101370,100180,99040,96.13,0,2.6,4.03,4.92,6.3500000000000005,7.25,7.68,8.040000000000001,8.370000000000001,9.05,188.29,186.8,186.36,187.11,187.78,188.34,188.95000000000002,189.53,191.05,18.150000000000002,18.34,18.47,18.72,18.87,18.96,18.97,18.96,19,N/A,N/A -2012,1,22,7,30,101370,100180,99040,95.8,0,2.69,4.82,6.21,7.99,8.88,9.08,9.15,9.18,9.21,166.36,174.29,180.95000000000002,188.83,192.92000000000002,194,194.44,194.71,195.05,18.240000000000002,18.86,19.18,19.44,19.51,19.45,19.36,19.28,19.09,N/A,N/A -2012,1,22,8,30,101340,100150,99010,92.44,0,4.96,6.86,7.79,8.790000000000001,9.6,10.27,10.96,11.620000000000001,11.870000000000001,183.62,184.54,185.43,186.81,186.71,185.53,188.02,191.38,193.3,18.81,19.04,19.11,19.2,19.26,19.3,19.3,19.29,19.13,N/A,N/A -2012,1,22,9,30,101300,100120,98980,91.34,0,6.47,8.51,9.48,10.38,10.950000000000001,11.27,11.28,11.21,11.53,183.5,186.89000000000001,189.26,191.72,192.81,192.93,191.4,189.65,190.39000000000001,18.96,19.080000000000002,19.05,18.97,18.85,18.69,18.71,18.78,19.16,N/A,N/A -2012,1,22,10,30,101280,100100,98960,92.78,0,6.5200000000000005,8.08,8.67,9.14,9.620000000000001,10.11,10.540000000000001,10.93,10.86,171.17000000000002,173.57,175.47,178.09,181.03,184.25,187.3,190.11,196.34,18.64,18.7,18.7,18.7,18.69,18.66,18.650000000000002,18.64,18.68,N/A,N/A -2012,1,22,11,30,101270,100080,98940,93.36,0,6.0600000000000005,7.3,7.73,8.040000000000001,8.34,8.65,9.75,11.1,13.25,174.74,172.87,171.27,168.87,167.34,166.42000000000002,170.25,175.53,182.78,18.5,18.580000000000002,18.59,18.6,18.55,18.47,18.46,18.48,19.64,N/A,N/A -2012,1,22,12,30,101250,100070,98930,93.29,0,5.79,7.65,8.63,9.790000000000001,10.93,12.08,12.81,13.370000000000001,13.790000000000001,162.94,167.35,171.06,176.39000000000001,179.68,181.41,181.87,181.96,183.16,18.54,18.44,18.26,17.93,18.3,19.16,19.72,20.16,20.31,N/A,N/A -2012,1,22,13,30,101250,100060,98920,97.22,0.4,5.16,6.69,8.1,10.89,12.530000000000001,13.18,13.8,14.38,15.05,159.22,161.65,165.11,172.65,176.87,178.22,179.47,180.62,182.52,17.7,17.37,17.61,18.580000000000002,19.34,19.98,20.29,20.5,20.56,N/A,N/A -2012,1,22,14,30,101250,100060,98920,91.04,0,6.92,8.870000000000001,9.81,10.78,11.69,12.56,13.4,14.19,15.69,170.66,171.37,172.01,173,174.16,175.48,176.86,178.17000000000002,180.03,19.01,19.34,19.5,19.68,19.82,19.95,20.06,20.14,20.2,N/A,N/A -2012,1,22,15,30,101240,100060,98920,91.16,0,6.8100000000000005,8.700000000000001,9.620000000000001,10.61,11.56,12.5,13.370000000000001,14.19,15.63,166.32,167.71,168.88,170.49,172.01,173.51,174.72,175.8,178.52,19.02,19.35,19.51,19.7,19.86,20.02,20.12,20.2,20.35,N/A,N/A -2012,1,22,16,30,101220,100040,98900,91.37,0,6.67,8.5,9.41,10.43,11.4,12.36,13.27,14.13,15.42,164.85,166.44,167.67000000000002,169.24,170.56,171.72,172.71,173.61,175.62,19.02,19.330000000000002,19.48,19.64,19.79,19.93,20.06,20.17,20.22,N/A,N/A -2012,1,22,17,30,101220,100040,98900,91.86,0,5.12,6.92,7.8500000000000005,8.86,9.83,10.81,11.74,12.63,14.6,163.37,164.96,166.31,167.92000000000002,169.32,170.59,171.79,172.92000000000002,177.02,19.07,19.35,19.43,19.47,19.52,19.59,19.69,19.8,20.05,N/A,N/A -2012,1,22,18,30,101190,100010,98870,89.95,0,8.15,10.11,11.02,11.96,12.85,13.72,14.56,15.35,16.54,171.66,172.25,172.8,173.79,174.97,176.34,177.89000000000001,179.41,182.51,19.38,19.66,19.78,19.92,20.07,20.23,20.37,20.48,20.55,N/A,N/A -2012,1,22,19,30,101160,99980,98840,90.51,0,8.700000000000001,10.67,11.59,12.58,13.51,14.44,15.36,16.23,17.81,169.52,171.11,172.22,173.68,175.06,176.42000000000002,177.70000000000002,178.88,181.76,19.13,19.42,19.56,19.740000000000002,19.91,20.1,20.26,20.41,20.63,N/A,N/A -2012,1,22,20,30,101160,99990,98850,89.16,0,8.19,10.34,11.36,12.4,13.35,14.25,15.05,15.77,16.71,175.49,175.85,176.17000000000002,176.67000000000002,177.3,178.04,179.15,180.31,184.15,19.48,19.92,20.13,20.36,20.55,20.72,20.84,20.94,21,N/A,N/A -2012,1,22,21,30,101130,99950,98820,90.48,0,7.07,9.17,10.24,11.39,12.43,13.43,14.25,14.97,15.83,168.96,170.13,171.03,172.01,173.03,174.14000000000001,176.09,178.22,184.31,19.2,19.650000000000002,19.88,20.14,20.37,20.59,20.740000000000002,20.86,20.93,N/A,N/A -2012,1,22,22,30,101100,99920,98790,89.98,0,6.86,9.02,10.07,11.16,12.13,13.01,13.790000000000001,14.48,15.23,167.77,168.67000000000002,169.58,171.06,173,175.32,178.56,181.92000000000002,187.70000000000002,19.3,19.69,19.89,20.150000000000002,20.36,20.55,20.68,20.79,20.84,N/A,N/A -2012,1,22,23,30,101080,99900,98770,89.4,0,8.01,10.22,11.27,12.36,13.33,14.25,15.08,15.85,16.740000000000002,167.54,168.89000000000001,170.11,171.96,174.19,176.73,180.26,183.91,190.17000000000002,19.37,19.68,19.84,20.05,20.3,20.580000000000002,20.77,20.92,21.01,N/A,N/A -2012,1,23,0,30,101120,99950,98820,88.62,0,7.8500000000000005,10.08,11.22,12.41,13.47,14.46,15.21,15.83,16.31,174.43,175.42000000000002,176.41,178.19,180.46,183.36,186.91,190.49,195.91,19.54,19.87,19.990000000000002,20.150000000000002,20.38,20.68,20.97,21.23,21.35,N/A,N/A -2012,1,23,1,30,101130,99960,98820,88.07000000000001,0.4,7.61,10,11.22,12.5,13.620000000000001,14.64,15.4,16.02,16.69,178.51,179.21,179.82,180.87,182.21,183.88,186.66,189.71,198.45000000000002,19.69,20.04,20.16,20.27,20.31,20.31,20.580000000000002,20.93,21.240000000000002,N/A,N/A -2012,1,23,2,30,101170,100000,98870,87.46000000000001,0.4,8.02,10.44,11.620000000000001,12.790000000000001,13.73,14.51,14.950000000000001,15.24,15.26,185.19,185.94,186.73,188.21,190.42000000000002,193.32,197.8,202.55,210.32,19.830000000000002,20.14,20.22,20.29,20.53,20.900000000000002,21.19,21.44,21.54,N/A,N/A -2012,1,23,3,30,101240,100070,98930,88.37,0,6.6000000000000005,8.97,10.17,11.55,12.64,13.49,13.82,13.950000000000001,13.91,192.83,192.77,193.21,194.93,197.76,201.83,209.12,216.98000000000002,220.71,19.7,20.080000000000002,20.18,20.240000000000002,20.43,20.740000000000002,20.93,21.07,21.150000000000002,N/A,N/A -2012,1,23,4,30,101270,100090,98960,89.33,0,5.61,8.08,9.27,10.47,11.33,11.950000000000001,12.15,12.23,12.44,203.71,203.79,204.33,205.8,209.38,214.18,222.17000000000002,230.25,233.42000000000002,19.55,20,20.16,20.32,20.44,20.52,20.41,20.27,20.32,N/A,N/A -2012,1,23,5,30,101360,100180,99040,91.38,0.4,3.83,5.71,6.55,7.53,8.36,9.08,9.46,9.71,9.89,245.47,241.95000000000002,239,235.28,236.38,241.65,244.12,245.52,247.3,19.330000000000002,19.85,20.02,20.18,20.23,20.21,20.150000000000002,20.09,19.91,N/A,N/A -2012,1,23,6,30,101410,100230,99090,92.13,0,3.41,5.24,6.09,7.2700000000000005,8,8.31,8.63,8.93,9.65,236.05,239.26,242.78,249.34,252.54,252.66,252.73000000000002,252.79,252.29,19.3,19.91,20.09,20.17,20.19,20.17,20.14,20.11,20.05,N/A,N/A -2012,1,23,7,30,101480,100300,99160,92.94,0.4,3.12,5.54,6.72,7.61,8.120000000000001,8.32,8.370000000000001,8.370000000000001,8.370000000000001,247.48000000000002,249.70000000000002,252.56,257.98,260.88,261.64,261.77,261.69,261.55,19.150000000000002,19.8,20,20.03,19.990000000000002,19.88,19.78,19.69,19.51,N/A,N/A -2012,1,23,8,30,101520,100330,99190,91.72,0,4.57,6.46,7.2700000000000005,7.930000000000001,8.47,8.9,8.94,8.870000000000001,8.85,279.76,282.21,284.19,286.75,287.57,287.16,285.76,284.23,283.92,19.1,19.580000000000002,19.7,19.64,19.55,19.43,19.3,19.19,19.01,N/A,N/A -2012,1,23,9,30,101550,100360,99220,93.68,0.4,3.84,5.37,5.89,6.13,6.23,6.24,6.22,6.19,6.15,302.13,304,304.29,302.57,300.78000000000003,298.94,297.44,296.17,294.22,18.68,19.25,19.51,19.69,19.77,19.78,19.73,19.650000000000002,19.43,N/A,N/A -2012,1,23,10,30,101570,100380,99230,96.11,0,4.42,5.78,6.36,6.78,6.98,7.04,7,6.95,6.84,333.95,331.01,329.24,328.03000000000003,327.07,326.3,325.96,325.75,325.83,18.02,18.240000000000002,18.36,18.490000000000002,18.61,18.740000000000002,18.77,18.78,18.650000000000002,N/A,N/A -2012,1,23,11,30,101600,100410,99260,99.33,0,5.88,6.37,6.6000000000000005,6.91,7.01,6.95,6.98,7.04,6.82,352.92,355.31,357.61,0.96,2.2,1.83,1.3800000000000001,0.9400000000000001,0.6,16.68,16.01,16.7,18.72,19.490000000000002,19.34,19.26,19.19,18.94,N/A,N/A -2012,1,23,12,30,101660,100460,99290,69.17,0,9.42,10.27,10.47,10.61,10.83,11.08,11.55,11.870000000000001,11.200000000000001,359.15000000000003,359.07,359.04,359.02,359.03000000000003,359.06,359.45,359.87,0.59,16.88,16.59,16.44,16.27,16.13,16.01,16.1,16.3,17.25,N/A,N/A -2012,1,23,13,30,101710,100500,99330,69.98,0,8.15,8.74,8.870000000000001,8.950000000000001,9.14,9.370000000000001,10.200000000000001,10.92,10.55,12.09,12.370000000000001,12.56,12.790000000000001,13.23,13.75,15.22,16.56,16.8,16.11,15.780000000000001,15.620000000000001,15.44,15.3,15.17,15.39,15.68,16.75,N/A,N/A -2012,1,23,14,30,101740,100530,99360,72.82000000000001,0,8.66,9.18,9.290000000000001,9.39,9.89,10.59,10.81,10.9,10.32,12.25,12.77,13.06,13.5,14.57,15.94,16.91,17.56,16.88,15.75,15.42,15.27,15.13,15.19,15.35,16.17,16.85,17.18,N/A,N/A -2012,1,23,15,30,101780,100570,99400,74.69,0,7.5600000000000005,8.040000000000001,8.11,8.13,8.17,8.21,8.59,8.99,9.65,28.88,29.080000000000002,29.21,29.36,29.560000000000002,29.77,30.38,30.830000000000002,30.54,15.5,15.14,14.96,14.780000000000001,14.620000000000001,14.47,14.42,14.51,15.73,N/A,N/A -2012,1,23,16,30,101780,100570,99390,75.24,0,6.23,6.59,6.65,6.66,6.67,6.67,6.72,6.8500000000000005,7.79,26.900000000000002,27.01,27.080000000000002,27.150000000000002,27.240000000000002,27.32,27.490000000000002,27.64,27.84,15.56,15.19,15.01,14.82,14.64,14.47,14.290000000000001,14.19,14.82,N/A,N/A -2012,1,23,17,30,101790,100580,99410,72.96000000000001,0,5.19,5.5200000000000005,5.58,5.62,5.63,5.65,5.66,5.67,5.73,39.6,39.32,39.13,38.93,38.71,38.49,38.2,37.9,36.95,15.860000000000001,15.51,15.33,15.14,14.94,14.76,14.56,14.38,14.01,N/A,N/A -2012,1,23,18,30,101790,100580,99410,68.93,0,4.17,4.39,4.44,4.45,4.46,4.47,4.5,4.55,5.01,41.58,41.04,40.59,40.07,39.46,38.83,37.79,36.53,30.59,16.42,16.1,15.93,15.74,15.56,15.38,15.200000000000001,15.040000000000001,14.86,N/A,N/A -2012,1,23,19,30,101800,100590,99430,69.5,0,2.98,3.08,3.09,3.11,3.37,3.7800000000000002,4.0200000000000005,4.23,4.7,63.56,62.74,61.78,60.14,54.6,46.74,43.13,40.45,36.65,16.63,16.330000000000002,16.17,16.01,15.96,15.98,16.04,16.080000000000002,16.06,N/A,N/A -2012,1,23,20,30,101760,100560,99390,70.72,0,2.83,2.95,3.02,3.18,3.5300000000000002,4.01,4.28,4.48,4.83,63.57,62.9,62.050000000000004,60.46,56.89,52.03,48.64,45.71,40.35,16.85,16.56,16.43,16.32,16.4,16.57,16.71,16.82,16.84,N/A,N/A -2012,1,23,21,30,101730,100530,99370,73.91,0,2.45,2.5500000000000003,2.74,3.23,3.62,3.93,4.19,4.42,4.76,63.52,62.940000000000005,61.85,59.36,56.4,53.300000000000004,49.78,46.4,40.35,17.02,16.740000000000002,16.66,16.66,16.8,17.01,17.2,17.38,17.51,N/A,N/A -2012,1,23,22,30,101710,100510,99340,76.93,0,2.23,2.35,2.47,2.73,3.09,3.52,3.8000000000000003,4.04,4.46,79.16,77.7,76.14,73.26,69.54,65.23,62.31,59.64,53.160000000000004,17.080000000000002,16.81,16.68,16.580000000000002,16.6,16.69,16.830000000000002,16.96,17.25,N/A,N/A -2012,1,23,23,30,101710,100510,99350,79.32000000000001,0,2.27,2.3000000000000003,2.47,3.02,3.43,3.74,4.04,4.34,4.82,94.27,94.39,92.32000000000001,86.45,82.62,80.15,77.31,74.52,68.52,17.04,16.76,16.67,16.68,16.77,16.91,17.13,17.330000000000002,17.6,N/A,N/A -2012,1,24,0,30,101710,100510,99350,78.9,0,2.42,2.97,3.3200000000000003,3.7600000000000002,4.18,4.6000000000000005,4.97,5.32,5.88,89.61,88.48,87.21000000000001,85.10000000000001,82.67,80.04,77.55,75.21000000000001,70.84,17.16,17.06,17.13,17.330000000000002,17.6,17.87,18.07,18.240000000000002,18.36,N/A,N/A -2012,1,24,1,30,101710,100510,99360,75.05,0,2.62,3.46,3.99,4.53,5.04,5.53,5.9,6.21,6.65,65.41,66.97,67.64,67.61,67.22,66.63,65.59,64.53,62.14,17.54,17.740000000000002,17.92,18.19,18.45,18.71,18.86,18.97,18.96,N/A,N/A -2012,1,24,2,30,101710,100520,99360,72.33,0,3.27,4.19,4.79,5.48,5.92,6.21,6.47,6.7,7.07,63.27,65.97,67.26,67.57000000000001,67.18,66.45,65.65,64.89,63.42,17.71,17.82,18.04,18.490000000000002,18.740000000000002,18.88,18.92,18.93,18.79,N/A,N/A -2012,1,24,3,30,101710,100520,99360,77.31,0,3.69,4.23,4.61,5.21,5.5200000000000005,5.66,5.76,5.84,5.97,67.7,68.24,68.95,70.17,70.57000000000001,70.53,70.98,71.62,74.99,17.54,17.41,17.6,18.150000000000002,18.43,18.56,18.59,18.6,18.54,N/A,N/A -2012,1,24,4,30,101710,100510,99360,73.43,0,3.42,4.48,5.36,6.79,8.120000000000001,9.38,9.66,9.73,9.14,53.59,56.76,59.33,62.67,66.5,70.58,75.31,79.32000000000001,81.04,17.73,17.87,18,18.19,18.150000000000002,18.02,18.1,18.21,18.55,N/A,N/A -2012,1,24,5,30,101700,100500,99340,79.51,0,6.43,7.34,7.72,8.120000000000001,8.56,9.01,9.59,10.15,10.97,78.02,78.94,79.67,80.63,81.87,83.22,85.09,87,91.33,17.650000000000002,17.51,17.43,17.35,17.29,17.26,17.31,17.38,17.8,N/A,N/A -2012,1,24,6,30,101700,100500,99340,80.2,0,7.48,8.44,8.82,9.17,9.56,9.96,10.5,11.01,11.540000000000001,81.09,81.85000000000001,82.43,83.16,84.15,85.2,87.03,89.17,96.29,17.650000000000002,17.47,17.37,17.26,17.17,17.11,17.16,17.28,18.13,N/A,N/A -2012,1,24,7,30,101700,100510,99350,80.24,0,7.98,8.950000000000001,9.31,9.63,9.950000000000001,10.26,10.67,11.09,11.94,85.16,85.62,85.99,86.43,86.97,87.55,88.57000000000001,89.82000000000001,95.69,17.62,17.42,17.31,17.17,17.06,16.96,16.91,16.92,17.52,N/A,N/A -2012,1,24,8,30,101700,100500,99340,81.5,0,7.17,8.11,8.47,8.790000000000001,9.09,9.370000000000001,9.700000000000001,10.03,10.83,89.19,89.4,89.57000000000001,89.82000000000001,90.17,90.57000000000001,91.5,92.60000000000001,97.22,17.57,17.36,17.240000000000002,17.09,16.96,16.84,16.77,16.73,17.13,N/A,N/A -2012,1,24,9,30,101690,100490,99330,82.34,0,7.44,8.48,8.89,9.26,9.6,9.92,10.28,10.63,11.33,86.48,87.14,87.67,88.31,89.09,89.9,91.18,92.52,96.68,17.57,17.38,17.26,17.14,17.03,16.93,16.9,16.9,17.29,N/A,N/A -2012,1,24,10,30,101680,100480,99320,82.06,0,7.28,8.18,8.51,8.8,9.09,9.370000000000001,9.71,10.05,10.99,88.2,88.75,89.19,89.72,90.34,91,91.97,93.05,98.23,17.62,17.42,17.29,17.14,17.01,16.88,16.77,16.68,16.86,N/A,N/A -2012,1,24,11,30,101680,100490,99330,83.37,0,7.44,8.36,8.700000000000001,9,9.290000000000001,9.56,9.91,10.26,11.200000000000001,90.60000000000001,91.13,91.53,91.99,92.55,93.14,93.94,94.78,100.31,17.59,17.38,17.240000000000002,17.09,16.94,16.81,16.68,16.57,16.73,N/A,N/A -2012,1,24,12,30,101670,100480,99320,85.43,0,7.5200000000000005,8.47,8.84,9.18,9.540000000000001,9.91,10.43,10.86,10.75,90.17,90.66,91.08,91.61,92.39,93.27,95.49,98.69,112.61,17.64,17.43,17.31,17.16,17.05,16.95,17.01,17.18,18.330000000000002,N/A,N/A -2012,1,24,13,30,101690,100490,99330,88.46000000000001,0,7.32,8.290000000000001,8.66,9.03,9.44,9.85,10.23,10.53,10.43,87.73,88.38,88.98,89.8,91.26,92.94,101.75,109.73,114.44,17.63,17.43,17.32,17.2,17.13,17.09,17.66,18.16,18.2,N/A,N/A -2012,1,24,14,30,101710,100520,99360,90.17,0,7.17,8.16,8.55,8.94,9.38,9.81,10.28,10.66,10.63,92.79,93.3,93.84,94.68,96.34,98.4,107.28,116.39,128.26,17.73,17.56,17.45,17.35,17.29,17.26,17.42,17.59,17.89,N/A,N/A -2012,1,24,15,30,101720,100520,99370,94.56,0.7000000000000001,7.38,8.38,8.790000000000001,9.21,9.67,10.14,10.57,10.94,11.24,92.95,94.03,95.03,96.5,100.21000000000001,105.02,117.12,128.36,133.78,17.56,17.36,17.26,17.16,17.2,17.3,17.78,18.22,18.36,N/A,N/A -2012,1,24,16,30,101680,100490,99330,96.66,1.1,7.63,8.620000000000001,9,9.36,9.68,9.96,10.15,10.32,10.73,93.27,93.47,93.72,94.14,95.54,97.35000000000001,104.32000000000001,111.60000000000001,127.31,17.53,17.31,17.19,17.07,17.02,17.01,17.25,17.5,17.96,N/A,N/A -2012,1,24,17,30,101650,100460,99310,97.29,0,5.62,6.67,7.12,7.58,8.27,9.120000000000001,9.4,9.56,9.6,94.9,96.8,99.35000000000001,103.88,111.13,120.08,122.97,124.58,127.34,17.89,17.8,17.77,17.76,18.150000000000002,18.740000000000002,18.900000000000002,18.96,18.84,N/A,N/A -2012,1,24,18,30,101650,100460,99310,89.2,0,6.140000000000001,7.48,8.08,8.66,9,9.21,9.26,9.290000000000001,9.47,97,98.94,101.01,104.37,107.74000000000001,110.95,113.12,114.88,117.62,18.5,18.62,18.75,18.96,19.080000000000002,19.16,19.05,18.92,18.64,N/A,N/A -2012,1,24,19,30,101600,100410,99260,94.04,0,7.7700000000000005,9.15,9.78,10.46,11.11,11.72,11.96,12.08,11.620000000000001,92.06,92.61,93.21000000000001,94.21000000000001,96.10000000000001,98.45,104.85000000000001,111.37,121.53,18.14,18.06,18.01,17.97,17.97,17.990000000000002,18.2,18.42,18.51,N/A,N/A -2012,1,24,20,30,101550,100350,99200,94.7,0,8.040000000000001,9.41,10,10.61,11.22,11.83,12.280000000000001,12.620000000000001,12.39,88.38,89.45,90.32000000000001,91.42,92.83,94.34,99.24000000000001,105.12,125.19,17.97,17.84,17.76,17.68,17.63,17.6,17.82,18.06,18.67,N/A,N/A -2012,1,24,21,30,101520,100320,99170,94.07000000000001,0,8.790000000000001,10.06,10.55,11.02,11.51,11.99,12.26,12.46,12.59,91.35000000000001,91.55,91.82000000000001,92.23,93.29,94.64,107.56,119.83,128.02,17.79,17.6,17.48,17.36,17.28,17.23,17.82,18.38,18.62,N/A,N/A -2012,1,24,22,30,101480,100280,99140,92.87,0,8.28,9.63,10.25,10.93,11.56,12.13,12.52,12.84,13.09,92.8,93.33,93.77,94.35000000000001,96.34,99.06,117,134.37,137.57,17.85,17.68,17.57,17.46,17.52,17.66,18.56,19.400000000000002,19.22,N/A,N/A -2012,1,24,23,30,101430,100240,99100,96.27,0,9.13,10.53,11.120000000000001,11.73,12.41,13.120000000000001,13.39,13.57,13.86,96.67,97.04,97.36,97.84,98.85000000000001,100.12,115.4,130.34,135,17.77,17.59,17.48,17.36,17.3,17.27,18.39,19.490000000000002,19.78,N/A,N/A -2012,1,25,0,30,101440,100250,99100,96.82000000000001,0,9.49,10.98,11.57,12.16,12.75,13.34,13.84,14.3,15.370000000000001,101.34,102.06,102.75,103.82000000000001,105.88,108.39,117.65,126.95,139.14000000000001,17.91,17.77,17.71,17.7,17.77,17.89,18.39,18.89,19.580000000000002,N/A,N/A -2012,1,25,1,30,101430,100240,99090,94.81,0,9.32,11,11.72,12.43,13.14,13.83,14.56,15.25,16.15,105.89,106.35000000000001,106.75,107.3,108.14,109.10000000000001,111.58,114.58,133.51,18.31,18.29,18.26,18.23,18.21,18.21,18.29,18.42,19.26,N/A,N/A -2012,1,25,2,30,101430,100240,99100,91.81,0,9.59,11.65,12.55,13.46,14.23,14.91,15.370000000000001,15.74,16.28,107.5,109.5,111.17,113.47,116.2,119.14,122.85000000000001,126.42,135.16,18.94,19.12,19.22,19.34,19.48,19.63,19.740000000000002,19.82,19.71,N/A,N/A -2012,1,25,3,30,101420,100240,99100,91.06,0,7.930000000000001,9.98,10.870000000000001,11.76,12.5,13.15,13.68,14.14,15.33,110.05,112.21000000000001,113.95,116.21000000000001,118.67,121.2,124.03,126.73,132.58,19.13,19.35,19.45,19.56,19.67,19.77,19.78,19.77,19.37,N/A,N/A -2012,1,25,4,30,101350,100170,99030,90.15,0,9.200000000000001,11.22,12.08,12.96,13.780000000000001,14.55,15.44,16.31,17.82,114.24000000000001,115.13,115.84,117.03,118.53,120.18,122.48,124.85000000000001,129.49,19.32,19.46,19.490000000000002,19.52,19.54,19.55,19.56,19.57,19.5,N/A,N/A -2012,1,25,5,30,101320,100140,99000,90.31,0,8.93,11.11,12.09,13.08,13.99,14.85,15.67,16.43,17.69,118.57000000000001,119.46000000000001,120.18,121.10000000000001,122.08,123.08,124.19,125.26,128.12,19.27,19.400000000000002,19.42,19.43,19.43,19.42,19.39,19.36,19.25,N/A,N/A -2012,1,25,6,30,101350,100160,99020,92.07000000000001,0,7.58,9.48,10.370000000000001,11.27,12.120000000000001,12.93,13.77,14.57,16.07,111.16,112.92,114.43,116.43,118.60000000000001,120.9,123.52,126.10000000000001,131.88,19.11,19.21,19.22,19.23,19.22,19.22,19.19,19.17,19.2,N/A,N/A -2012,1,25,7,30,101330,100150,99010,93.13,0,7.3,9.040000000000001,9.84,10.66,11.46,12.23,12.96,13.64,14.96,107.38,109.54,111.22,113.34,115.38,117.35000000000001,119.60000000000001,121.78,126.61,18.89,18.96,18.96,18.94,18.900000000000002,18.86,18.8,18.75,18.95,N/A,N/A -2012,1,25,8,30,101300,100120,98980,93.64,0,6.99,8.73,9.55,10.42,11.22,11.98,12.700000000000001,13.370000000000001,14.93,111.23,113.22,114.82000000000001,116.87,119,121.16,123.55,125.87,133.09,18.79,18.88,18.91,18.93,18.93,18.93,18.95,18.98,19.46,N/A,N/A -2012,1,25,9,30,101210,100030,98890,91.95,6.2,11.26,13.290000000000001,14.08,14.85,15.59,16.31,17,17.650000000000002,18.47,110,111.99000000000001,113.94,116.88,120.08,123.36,126.47,129.3,132.56,19.13,19.29,19.35,19.42,19.64,19.93,20.11,20.25,20.23,N/A,N/A -2012,1,25,10,30,101180,100000,98860,92.46000000000001,3.7,10.25,12.07,12.74,13.33,13.97,14.620000000000001,15.530000000000001,16.45,18.39,107.38,109.12,110.87,113.62,116.91,120.5,124.33,127.99000000000001,133.89000000000001,19.01,19.080000000000002,19.11,19.14,19.22,19.31,19.41,19.51,19.73,N/A,N/A -2012,1,25,11,30,101100,99930,98790,90.44,2.2,11.8,14.120000000000001,15.040000000000001,15.91,16.71,17.47,18.18,18.84,20.06,118.79,120.36,121.49000000000001,122.87,124.41,126.03,127.82000000000001,129.51,133.39000000000001,19.45,19.57,19.59,19.6,19.61,19.62,19.6,19.59,19.75,N/A,N/A -2012,1,25,12,30,101200,100020,98880,90.8,0,7.22,9.23,10.13,10.99,11.77,12.52,13.24,13.91,15.31,128.54,128.7,129.07,129.78,130.86,132.18,133.85,135.49,139.18,19.41,19.54,19.54,19.51,19.490000000000002,19.47,19.47,19.47,19.46,N/A,N/A -2012,1,25,13,30,101190,100010,98870,90.92,0,8.03,10.08,11.02,11.97,12.85,13.69,14.52,15.31,16.67,135.99,137.02,137.82,138.76,139.68,140.59,141.48,142.31,143.78,19.37,19.47,19.48,19.48,19.48,19.48,19.490000000000002,19.5,19.47,N/A,N/A -2012,1,25,14,30,101190,100010,98870,90.98,0,6.99,9.1,10.08,11.07,11.98,12.82,13.63,14.370000000000001,15.700000000000001,144.88,145.28,145.66,146.13,146.69,147.31,148.09,148.85,150.57,19.39,19.490000000000002,19.490000000000002,19.48,19.51,19.56,19.63,19.69,19.740000000000002,N/A,N/A -2012,1,25,15,30,101210,100030,98890,91.95,0.4,6.8500000000000005,8.73,9.65,10.69,11.73,12.790000000000001,13.73,14.6,15.99,136.2,139.15,141.28,143.66,145.51,147.03,148.33,149.5,152.38,19.19,19.42,19.53,19.67,19.82,19.96,20.07,20.16,20.19,N/A,N/A -2012,1,25,16,30,101210,100030,98890,91.36,0.7000000000000001,6.8,8.790000000000001,9.73,10.72,11.66,12.59,13.530000000000001,14.43,16.17,137.15,140.17000000000002,142.39000000000001,144.94,147.39000000000001,149.8,152.09,154.25,157.69,19.330000000000002,19.56,19.650000000000002,19.740000000000002,19.830000000000002,19.900000000000002,19.97,20.02,20.07,N/A,N/A -2012,1,25,17,30,101160,99980,98850,91.05,0,8.290000000000001,10.31,11.22,12.16,13.06,13.93,14.8,15.620000000000001,17.04,135.32,137.75,139.62,142,144.4,146.81,149.15,151.33,155.21,19.37,19.580000000000002,19.650000000000002,19.72,19.79,19.86,19.91,19.97,19.95,N/A,N/A -2012,1,25,18,30,101090,99910,98780,90.92,0.7000000000000001,8.57,10.72,11.700000000000001,12.72,13.63,14.47,15.18,15.82,16.67,141.58,143.33,144.68,146.34,148.12,149.95000000000002,151.91,153.76,157.4,19.41,19.73,19.89,20.06,20.22,20.38,20.490000000000002,20.57,20.56,N/A,N/A -2012,1,25,19,30,100980,99800,98670,89.62,0,9.35,11.540000000000001,12.450000000000001,13.280000000000001,13.950000000000001,14.530000000000001,14.97,15.34,15.85,135.19,137.12,138.91,141.45000000000002,144.52,147.88,151.26,154.4,158.78,19.69,20.05,20.21,20.38,20.55,20.69,20.77,20.82,20.68,N/A,N/A -2012,1,25,20,30,100900,99720,98590,91.11,0,8.1,10.13,11.01,11.870000000000001,12.57,13.17,13.75,14.27,14.55,120.67,122.72,124.54,127.04,130.12,133.47,137.56,141.65,153.41,19.35,19.55,19.63,19.73,19.830000000000002,19.91,19.95,19.98,20.26,N/A,N/A -2012,1,25,21,30,101070,99890,98750,96.55,306.2,2.07,2.95,3.1,3.1,3.18,3.3000000000000003,3.43,3.5700000000000003,4.08,246.41,240.95000000000002,238.27,235.82,231.23000000000002,225.53,220.57,216.09,207.4,18.44,19.51,19.77,19.54,19.330000000000002,19.16,19,18.85,18.55,N/A,N/A -2012,1,25,22,30,100940,99760,98620,95.2,4,5.33,6.8,7.43,7.99,8.51,9,9.58,10.14,11.24,163.07,165.93,168.52,171.81,174.92000000000002,177.85,181.07,184.25,192.61,18.48,18.400000000000002,18.330000000000002,18.22,18.14,18.080000000000002,18.03,17.98,18.02,N/A,N/A -2012,1,25,23,30,100960,99780,98630,95.43,0,6.63,7.87,8.38,8.870000000000001,9.35,9.82,10.17,10.44,10.17,165.44,166.62,167.88,169.8,172.49,175.54,179.18,182.8,191.54,18.38,18.28,18.21,18.14,18.12,18.13,18.14,18.14,18.01,N/A,N/A -2012,1,26,0,30,101010,99830,98690,96.44,0,5.24,6.24,6.640000000000001,7.03,7.59,8.28,8.26,8.120000000000001,8.290000000000001,172.09,171.84,171.81,172.14000000000001,171.16,169.32,185.53,202.73000000000002,209.32,18.21,18.14,18.09,18.03,17.97,17.92,18,18.1,18,N/A,N/A -2012,1,26,1,30,101030,99850,98710,95.55,0,3.95,5.13,5.39,5.05,4.98,5.12,5.22,5.28,5.36,177.83,180.82,192.59,223.46,239.54,246.11,251.21,255.48000000000002,260.66,18.44,18.490000000000002,18.52,18.580000000000002,18.580000000000002,18.53,18.45,18.36,18.14,N/A,N/A -2012,1,26,2,30,101110,99930,98780,94.64,0,4.25,5,4.99,4.78,4.51,4.24,3.91,3.63,4.07,189.19,201.35,210.6,220.47,226.02,229.1,236.48000000000002,243.75,277.48,18.64,18.64,18.5,18.23,18.01,17.82,17.6,17.42,17.28,N/A,N/A -2012,1,26,3,30,101180,99990,98840,96.28,0,2.9,3.95,4.28,4.49,4.67,4.83,4.74,4.63,4.62,197.1,209.93,219.83,231.04,237.61,241.52,252.61,263.21,270.57,18.35,18.2,18.05,17.85,17.72,17.62,17.53,17.44,17.27,N/A,N/A -2012,1,26,4,30,101200,100000,98840,91.13,0,7.68,8.23,8.33,8.36,8.45,8.55,8.700000000000001,8.77,8.11,285.41,285.86,286.26,286.83,287.93,289.21,292.07,294.83,298.94,17.13,16.82,16.65,16.47,16.3,16.14,16.07,16.05,16.4,N/A,N/A -2012,1,26,5,30,101270,100070,98910,90.32000000000001,0,5.28,5.58,5.62,5.62,5.63,5.65,5.76,5.8500000000000005,5.68,292.37,292.65000000000003,292.81,292.96,293.22,293.5,294.35,295.11,294.63,16.85,16.53,16.36,16.17,15.98,15.81,15.700000000000001,15.620000000000001,15.72,N/A,N/A -2012,1,26,6,30,101310,100110,98950,90.92,0,6.9,7.32,7.37,7.34,7.29,7.23,7.140000000000001,7.04,6.5600000000000005,279.09000000000003,279.34000000000003,279.48,279.61,279.74,279.87,280.06,280.25,281.1,16.21,15.85,15.67,15.48,15.290000000000001,15.11,14.92,14.74,14.44,N/A,N/A -2012,1,26,7,30,101320,100120,98950,89.52,0,5.73,6.01,6.03,6,5.95,5.89,5.79,5.66,5.08,276.34000000000003,276.22,276.15000000000003,276.05,275.88,275.68,275.09000000000003,274.18,269.07,15.950000000000001,15.6,15.42,15.23,15.040000000000001,14.870000000000001,14.700000000000001,14.56,14.540000000000001,N/A,N/A -2012,1,26,8,30,101320,100120,98950,91.32000000000001,0,6.67,7.09,7.15,7.16,7.140000000000001,7.11,7.07,7.0200000000000005,6.890000000000001,266.04,265.88,265.74,265.59000000000003,265.41,265.23,265,264.77,264.05,15.780000000000001,15.4,15.21,15.01,14.82,14.63,14.43,14.25,13.870000000000001,N/A,N/A -2012,1,26,9,30,101340,100130,98960,86.67,0,6.95,7.37,7.44,7.46,7.45,7.43,7.41,7.390000000000001,7.3500000000000005,270.54,270.33,270.17,270,269.81,269.62,269.38,269.13,268.4,14.69,14.26,14.07,13.88,13.68,13.51,13.31,13.14,12.8,N/A,N/A -2012,1,26,10,30,101370,100160,98990,88.81,0,8.48,9.08,9.21,9.26,9.27,9.28,9.27,9.25,9.200000000000001,275.41,274.94,274.59000000000003,274.24,273.90000000000003,273.58,273.22,272.88,272.12,14.530000000000001,14.06,13.85,13.65,13.44,13.26,13.06,12.870000000000001,12.49,N/A,N/A -2012,1,26,11,30,101420,100200,99020,92.36,0,9.58,10.24,10.39,10.44,10.450000000000001,10.46,10.44,10.42,10.36,280.45,280.36,280.3,280.24,280.15000000000003,280.07,279.96,279.84000000000003,279.52,12.86,12.280000000000001,12.040000000000001,11.82,11.61,11.42,11.200000000000001,11.01,10.61,N/A,N/A -2012,1,26,12,30,101440,100220,99040,92,0,7.68,8.15,8.25,8.28,8.290000000000001,8.290000000000001,8.28,8.27,8.25,278.5,278.13,277.86,277.59000000000003,277.33,277.08,276.78000000000003,276.49,275.82,12.620000000000001,12.07,11.84,11.63,11.41,11.22,11,10.8,10.39,N/A,N/A -2012,1,26,13,30,101480,100260,99070,88.53,0,9.200000000000001,9.85,10,10.06,10.1,10.11,10.11,10.11,10.09,279.43,279.74,279.96,280.17,280.37,280.54,280.73,280.91,281.26,12.61,12.040000000000001,11.81,11.59,11.38,11.19,10.98,10.8,10.41,N/A,N/A -2012,1,26,14,30,101520,100300,99120,86.18,0,8.51,9.15,9.31,9.4,9.46,9.51,9.53,9.56,9.6,279.06,279.40000000000003,279.63,279.82,280.02,280.19,280.36,280.52,280.86,12.92,12.370000000000001,12.14,11.92,11.700000000000001,11.5,11.290000000000001,11.1,10.700000000000001,N/A,N/A -2012,1,26,15,30,101510,100290,99110,85.63,0,8.01,8.56,8.700000000000001,8.77,8.82,8.86,8.88,8.9,8.92,294.49,294.59000000000003,294.61,294.63,294.65000000000003,294.66,294.67,294.67,294.69,12.530000000000001,11.98,11.75,11.53,11.32,11.13,10.92,10.73,10.34,N/A,N/A -2012,1,26,16,30,101510,100290,99110,81.64,0,6.12,6.55,6.67,6.74,6.8100000000000005,6.86,6.91,6.95,7.04,286.85,286.88,286.89,286.91,286.93,286.96,286.99,287.02,287.09000000000003,13.21,12.73,12.52,12.31,12.1,11.92,11.71,11.53,11.14,N/A,N/A -2012,1,26,17,30,101520,100310,99130,76.95,0,7.0600000000000005,7.57,7.71,7.79,7.86,7.9,7.94,7.97,8.02,291.71,292.02,292.21,292.39,292.55,292.7,292.85,292.98,293.26,14.040000000000001,13.58,13.370000000000001,13.16,12.950000000000001,12.76,12.55,12.36,11.97,N/A,N/A -2012,1,26,18,30,101510,100300,99120,73.91,0,7.05,7.58,7.72,7.8,7.86,7.91,7.94,7.97,8.02,292.5,292.61,292.67,292.73,292.78000000000003,292.82,292.86,292.90000000000003,292.98,14.63,14.19,13.99,13.780000000000001,13.57,13.38,13.18,12.98,12.59,N/A,N/A -2012,1,26,19,30,101530,100320,99140,73.08,0,8.52,9.14,9.27,9.33,9.35,9.36,9.35,9.34,9.31,303.75,303.27,303.01,302.78000000000003,302.55,302.35,302.13,301.94,301.53000000000003,14.82,14.38,14.17,13.96,13.76,13.57,13.370000000000001,13.17,12.780000000000001,N/A,N/A -2012,1,26,20,30,101520,100310,99130,74.06,0,7.65,8.24,8.39,8.48,8.540000000000001,8.58,8.620000000000001,8.64,8.68,289.08,289.23,289.31,289.37,289.43,289.49,289.54,289.59000000000003,289.69,14.48,14.02,13.81,13.61,13.4,13.21,13,12.8,12.41,N/A,N/A -2012,1,26,21,30,101540,100330,99150,71.81,0,6.75,7.29,7.46,7.5600000000000005,7.640000000000001,7.71,7.7700000000000005,7.82,7.9,300.62,301.28000000000003,301.61,301.89,302.14,302.36,302.58,302.76,303.12,14.94,14.52,14.32,14.120000000000001,13.91,13.73,13.52,13.33,12.93,N/A,N/A -2012,1,26,22,30,101560,100350,99170,72.62,0,10.56,11.61,11.9,12.07,12.19,12.280000000000001,12.34,12.4,12.48,314.74,314.81,314.84000000000003,314.87,314.91,314.93,314.96,314.99,315.05,15.280000000000001,14.84,14.63,14.42,14.22,14.02,13.82,13.620000000000001,13.23,N/A,N/A -2012,1,26,23,30,101630,100420,99240,72.01,0,10.3,11.22,11.450000000000001,11.58,11.66,11.72,11.76,11.790000000000001,11.83,329.34000000000003,329.21,329.12,329.02,328.92,328.83,328.7,328.59000000000003,328.34000000000003,14.93,14.47,14.26,14.06,13.85,13.66,13.46,13.280000000000001,12.9,N/A,N/A -2012,1,27,0,30,101680,100470,99290,74,0,6.83,7.3100000000000005,7.43,7.49,7.53,7.5600000000000005,7.58,7.6000000000000005,7.65,322.21,321.82,321.57,321.32,321.04,320.78000000000003,320.45,320.13,319.32,14.94,14.52,14.32,14.13,13.93,13.75,13.55,13.370000000000001,12.99,N/A,N/A -2012,1,27,1,30,101710,100500,99320,74.69,0,5.54,5.8500000000000005,5.91,5.94,5.94,5.95,5.95,5.94,5.95,330.55,329.89,329.39,328.89,328.35,327.85,327.25,326.66,325.2,15.1,14.700000000000001,14.51,14.32,14.120000000000001,13.94,13.74,13.56,13.19,N/A,N/A -2012,1,27,2,30,101750,100530,99360,76.57000000000001,0,4.28,4.45,4.47,4.47,4.46,4.45,4.47,4.53,4.98,345.62,344.91,344.43,343.88,343.11,342.33,340.71,338.66,330.40000000000003,14.72,14.33,14.15,13.96,13.780000000000001,13.61,13.44,13.31,13.23,N/A,N/A -2012,1,27,3,30,101760,100550,99370,74.75,0,2.3000000000000003,2.4,2.42,2.45,2.54,2.64,3.21,3.7800000000000002,4.4,325.58,324.8,324.3,323.7,322.67,321.53000000000003,318.84000000000003,316.44,315.19,15.040000000000001,14.69,14.52,14.35,14.18,14.030000000000001,14.07,14.13,14.23,N/A,N/A -2012,1,27,4,30,101790,100580,99410,74.85000000000001,0,2.99,3.14,3.18,3.21,3.25,3.29,3.37,3.54,4.5,306.61,307.09000000000003,307.15000000000003,307.23,307.36,307.49,307.7,308.01,309.16,15.31,14.96,14.780000000000001,14.6,14.41,14.24,14.05,13.9,13.790000000000001,N/A,N/A -2012,1,27,5,30,101830,100620,99440,78.33,0,3.04,3.13,3.12,3.1,3.08,3.06,3.0300000000000002,3.0100000000000002,2.97,347.62,345.85,344.64,343.42,342.21,341.11,339.81,338.59000000000003,335.88,15.13,14.76,14.57,14.38,14.19,14.01,13.8,13.620000000000001,13.24,N/A,N/A -2012,1,27,6,30,101880,100660,99490,80.5,0,2.62,2.64,2.61,2.56,2.5100000000000002,2.46,2.4,2.33,2.18,38.01,37.45,36.99,36.49,35.93,35.39,34.62,33.83,31.470000000000002,14.530000000000001,14.15,13.96,13.77,13.57,13.39,13.19,13.01,12.620000000000001,N/A,N/A -2012,1,27,7,30,101920,100710,99520,81.99,0,1.79,1.77,1.73,1.68,1.6300000000000001,1.58,1.53,1.47,1.36,28.37,26.46,25.25,23.94,22.3,20.72,18.19,15.44,4.97,14.26,13.88,13.700000000000001,13.5,13.31,13.13,12.94,12.75,12.39,N/A,N/A -2012,1,27,8,30,101940,100720,99540,82.60000000000001,0,1.47,1.5,1.49,1.48,1.49,1.49,1.5,1.52,1.62,358.03000000000003,354.8,352.65000000000003,350.47,348.13,345.95,343.21,340.56,334.3,14.32,13.950000000000001,13.76,13.57,13.38,13.200000000000001,13,12.82,12.46,N/A,N/A -2012,1,27,9,30,101940,100720,99540,78.81,0,2.97,3.09,3.1,3.09,3.09,3.08,3.0700000000000003,3.06,3.0300000000000002,339.89,339.86,339.87,339.89,339.92,339.94,339.98,340.02,340.13,14.55,14.17,13.98,13.780000000000001,13.58,13.4,13.19,13,12.620000000000001,N/A,N/A -2012,1,27,10,30,101960,100740,99560,76.05,0,3.73,3.88,3.89,3.89,3.89,3.88,3.86,3.85,3.83,0.35000000000000003,0.68,0.88,1.07,1.27,1.46,1.68,1.9000000000000001,2.42,14.42,14.02,13.83,13.64,13.44,13.26,13.06,12.88,12.5,N/A,N/A -2012,1,27,11,30,101980,100760,99580,76.04,0,3.96,4.09,4.09,4.07,4.04,4.01,3.98,3.94,3.85,17.490000000000002,17.89,18.12,18.330000000000002,18.56,18.78,19.02,19.25,19.76,14.27,13.870000000000001,13.68,13.48,13.290000000000001,13.11,12.91,12.73,12.36,N/A,N/A -2012,1,27,12,30,101990,100770,99590,73.52,0,3.5700000000000003,3.69,3.69,3.68,3.65,3.63,3.6,3.5700000000000003,3.49,31.650000000000002,31.98,32.14,32.3,32.45,32.6,32.78,32.95,33.37,14.22,13.82,13.63,13.44,13.24,13.06,12.85,12.67,12.290000000000001,N/A,N/A -2012,1,27,13,30,102010,100790,99610,71.71000000000001,0,3.34,3.45,3.44,3.42,3.4,3.38,3.35,3.3200000000000003,3.25,60.99,61.83,62.35,62.88,63.42,63.9,64.48,65.04,66.38,14.200000000000001,13.81,13.620000000000001,13.42,13.22,13.040000000000001,12.84,12.65,12.27,N/A,N/A -2012,1,27,14,30,102020,100800,99620,72.29,0,3.65,3.79,3.81,3.8000000000000003,3.79,3.77,3.75,3.73,3.69,77.19,77.82000000000001,78.26,78.69,79.13,79.52,80.01,80.48,81.60000000000001,14.290000000000001,13.89,13.700000000000001,13.5,13.3,13.120000000000001,12.91,12.73,12.34,N/A,N/A -2012,1,27,15,30,102000,100780,99600,72.46000000000001,0,4.14,4.33,4.3500000000000005,4.36,4.3500000000000005,4.3500000000000005,4.33,4.32,4.28,91.09,91.60000000000001,91.94,92.27,92.60000000000001,92.91,93.28,93.64,94.48,14.46,14.06,13.870000000000001,13.67,13.47,13.280000000000001,13.08,12.9,12.51,N/A,N/A -2012,1,27,16,30,101970,100760,99570,72.19,0,4.48,4.7,4.74,4.75,4.75,4.75,4.74,4.73,4.7,102.58,103.05,103.31,103.55,103.8,104.04,104.33,104.60000000000001,105.25,14.700000000000001,14.3,14.11,13.91,13.71,13.530000000000001,13.32,13.14,12.75,N/A,N/A -2012,1,27,17,30,101940,100730,99550,72.21000000000001,0,4.67,4.93,4.97,5,5.01,5.01,5.01,5.01,5,115.32000000000001,115.67,115.91,116.15,116.38,116.60000000000001,116.85000000000001,117.08,117.64,14.950000000000001,14.56,14.36,14.16,13.97,13.780000000000001,13.58,13.39,13.01,N/A,N/A -2012,1,27,18,30,101910,100700,99520,71.7,0,5.08,5.38,5.44,5.48,5.49,5.51,5.51,5.51,5.51,124.32000000000001,124.59,124.77,124.95,125.12,125.27,125.45,125.62,126.01,15.22,14.83,14.64,14.44,14.24,14.06,13.86,13.67,13.280000000000001,N/A,N/A -2012,1,27,19,30,101890,100680,99500,71.59,0,5.55,5.93,6.01,6.0600000000000005,6.09,6.11,6.13,6.140000000000001,6.15,134.82,135.07,135.2,135.33,135.47,135.59,135.72,135.84,136.11,15.57,15.200000000000001,15.01,14.81,14.61,14.43,14.22,14.030000000000001,13.65,N/A,N/A -2012,1,27,20,30,101860,100650,99480,73.57000000000001,0,5.71,6.11,6.21,6.26,6.3,6.32,6.34,6.3500000000000005,6.37,145.05,145.3,145.45000000000002,145.59,145.73,145.87,146.01,146.14000000000001,146.44,15.81,15.44,15.26,15.06,14.86,14.67,14.47,14.280000000000001,13.89,N/A,N/A -2012,1,27,21,30,101840,100630,99450,73.98,0,5.82,6.25,6.36,6.41,6.45,6.48,6.5,6.5200000000000005,6.54,154.02,154.37,154.58,154.79,154.98,155.16,155.36,155.54,155.92000000000002,16.02,15.66,15.48,15.280000000000001,15.08,14.9,14.69,14.5,14.11,N/A,N/A -2012,1,27,22,30,101800,100590,99420,74.65,0,6.15,6.640000000000001,6.7700000000000005,6.84,6.890000000000001,6.93,6.96,6.98,7.0200000000000005,162.97,163.36,163.59,163.8,164.01,164.20000000000002,164.4,164.59,164.99,16.27,15.93,15.75,15.55,15.35,15.16,14.96,14.780000000000001,14.38,N/A,N/A -2012,1,27,23,30,101800,100600,99430,75,0,5.88,6.390000000000001,6.5200000000000005,6.6000000000000005,6.67,6.71,6.75,6.78,6.83,167.64000000000001,168.1,168.38,168.64000000000001,168.89000000000001,169.12,169.36,169.58,170.04,16.580000000000002,16.26,16.080000000000002,15.89,15.69,15.51,15.31,15.120000000000001,14.73,N/A,N/A -2012,1,28,0,30,101820,100610,99440,77.29,0,5.92,6.46,6.61,6.7,6.7700000000000005,6.82,6.86,6.890000000000001,6.95,172.36,172.72,172.94,173.15,173.35,173.53,173.70000000000002,173.87,174.23,16.830000000000002,16.53,16.35,16.16,15.97,15.780000000000001,15.58,15.39,15,N/A,N/A -2012,1,28,1,30,101840,100630,99470,79.10000000000001,0,6.01,6.59,6.76,6.86,6.93,6.99,7.03,7.07,7.140000000000001,176.35,176.74,176.97,177.18,177.38,177.55,177.73,177.9,178.23,17.080000000000002,16.79,16.62,16.43,16.240000000000002,16.06,15.860000000000001,15.67,15.280000000000001,N/A,N/A -2012,1,28,2,30,101860,100660,99490,78.92,0,5.21,5.73,5.88,5.98,6.0600000000000005,6.12,6.17,6.21,6.29,179.57,180.20000000000002,180.58,180.95000000000002,181.28,181.58,181.88,182.15,182.69,17.35,17.09,16.92,16.73,16.55,16.37,16.17,15.98,15.6,N/A,N/A -2012,1,28,3,30,101880,100680,99510,79.5,0,5,5.46,5.59,5.69,5.7700000000000005,5.84,5.9,5.96,6.09,199.9,198.85,198.25,197.63,197.05,196.51,195.97,195.47,194.47,17.41,17.16,17,16.81,16.62,16.45,16.25,16.07,15.69,N/A,N/A -2012,1,28,4,30,101890,100690,99530,79.05,0,6.3,6.98,7.17,7.24,7.28,7.32,7.3100000000000005,7.28,7.18,188.11,188.72,189.04,189.36,189.72,190.1,190.44,190.75,191.32,17.52,17.3,17.14,16.96,16.78,16.61,16.41,16.23,15.84,N/A,N/A -2012,1,28,5,30,101930,100730,99570,82.19,0,3.94,4.46,4.67,4.84,4.99,5.13,5.24,5.3500000000000005,5.5,184.62,185,185.34,185.74,186.11,186.47,186.8,187.09,187.52,17.48,17.26,17.11,16.94,16.77,16.6,16.43,16.26,15.9,N/A,N/A -2012,1,28,6,30,101980,100780,99620,83.46000000000001,0,3.0500000000000003,3.58,3.79,3.97,4.12,4.26,4.42,4.57,4.84,178,179.47,180.75,182.49,184.44,186.44,188.93,191.31,195.4,17.48,17.31,17.2,17.06,16.92,16.79,16.65,16.52,16.23,N/A,N/A -2012,1,28,7,30,102030,100830,99670,86.61,0,2.6,3.14,3.37,3.6,3.81,4.0200000000000005,4.22,4.41,4.75,176.70000000000002,178.49,179.66,180.73,181.55,182.20000000000002,182.68,183.14000000000001,184.88,17.38,17.21,17.09,16.95,16.8,16.66,16.5,16.36,16.080000000000002,N/A,N/A -2012,1,28,8,30,102060,100860,99690,86.31,0,2.84,3.44,3.73,3.99,4.19,4.34,4.34,4.3100000000000005,4.33,177.56,180.09,181.61,182.75,185.21,188.29,191.59,194.61,201.28,17.35,17.23,17.14,17.04,16.95,16.86,16.75,16.65,16.42,N/A,N/A -2012,1,28,9,30,102110,100910,99740,87.87,0,1.94,2.46,2.65,2.73,2.73,2.67,2.65,2.64,2.79,170.67000000000002,178.16,184.04,190.87,195.41,198.55,201.46,203.95000000000002,207.59,17.27,17.18,17.12,17.04,16.95,16.86,16.75,16.65,16.38,N/A,N/A -2012,1,28,10,30,102170,100970,99800,91.84,0,0.87,1.33,1.51,1.61,1.6,1.52,1.5,1.48,1.57,182.91,189.34,193.73000000000002,198.01,203.4,208.74,216.67000000000002,224.11,239.09,17.16,17.05,16.96,16.84,16.73,16.61,16.52,16.44,16.26,N/A,N/A -2012,1,28,11,30,102220,101010,99850,90.03,0,0.6,0.76,0.86,0.99,1.1,1.21,1.35,1.5,1.82,292.01,281.35,276.18,274.32,277.09000000000003,282.35,287.94,293.29,301.23,17.07,16.94,16.86,16.76,16.64,16.53,16.42,16.32,16.09,N/A,N/A -2012,1,28,12,30,102310,101100,99940,91.48,0,2.42,2.84,3.0100000000000002,3.1,3.17,3.23,3.36,3.5,3.85,331.46,328.91,326.95,324.85,322.78000000000003,320.81,319.81,319.2,321.27,16.94,16.85,16.79,16.68,16.56,16.44,16.31,16.2,15.96,N/A,N/A -2012,1,28,13,30,102400,101190,100010,97.51,0,8.16,8.66,8.72,8.69,8.64,8.57,8.48,8.38,8.03,346.65000000000003,346.71,346.67,346.6,346.49,346.37,346.13,345.90000000000003,345.77,15.34,14.950000000000001,14.77,14.6,14.44,14.290000000000001,14.16,14.030000000000001,13.8,N/A,N/A -2012,1,28,14,30,102500,101270,100080,93.74,0,10.68,11.53,11.71,11.78,11.8,11.81,11.8,11.8,11.82,13.93,14.05,14.08,14.120000000000001,14.17,14.21,14.27,14.33,14.530000000000001,14.02,13.51,13.3,13.09,12.9,12.72,12.530000000000001,12.36,12.01,N/A,N/A -2012,1,28,15,30,102540,101310,100120,78.75,0,11.200000000000001,12.09,12.280000000000001,12.36,12.39,12.41,12.41,12.42,12.5,20.35,20.41,20.46,20.52,20.57,20.62,20.69,20.76,20.990000000000002,13.64,13.1,12.88,12.68,12.48,12.3,12.11,11.93,11.6,N/A,N/A -2012,1,28,16,30,102560,101330,100140,70.02,0,10.64,11.5,11.69,11.77,11.81,11.83,11.84,11.85,11.88,21.09,21.23,21.330000000000002,21.43,21.56,21.67,21.81,21.96,22.38,13.700000000000001,13.18,12.96,12.76,12.56,12.38,12.18,12,11.65,N/A,N/A -2012,1,28,17,30,102600,101370,100180,65.59,0,9.94,10.78,10.98,11.08,11.15,11.200000000000001,11.22,11.25,11.28,21.080000000000002,21.25,21.37,21.48,21.59,21.69,21.81,21.93,22.2,14.14,13.65,13.43,13.23,13.02,12.83,12.63,12.44,12.05,N/A,N/A -2012,1,28,18,30,102630,101410,100220,61.99,0,9.09,9.88,10.08,10.19,10.27,10.33,10.370000000000001,10.4,10.46,21.55,21.7,21.78,21.86,21.93,22,22.07,22.14,22.28,14.77,14.33,14.120000000000001,13.91,13.71,13.52,13.32,13.13,12.74,N/A,N/A -2012,1,28,19,30,102660,101440,100250,59.18,0,8.77,9.55,9.76,9.88,9.97,10.03,10.08,10.120000000000001,10.18,22.28,22.400000000000002,22.46,22.51,22.55,22.59,22.63,22.66,22.73,15.46,15.06,14.870000000000001,14.67,14.46,14.27,14.07,13.88,13.49,N/A,N/A -2012,1,28,20,30,102660,101440,100260,56.31,0,8.69,9.48,9.68,9.81,9.9,9.96,10.01,10.05,10.11,21.84,21.89,21.93,21.96,21.98,22,22.02,22.04,22.07,15.91,15.540000000000001,15.36,15.16,14.96,14.77,14.56,14.38,13.98,N/A,N/A -2012,1,28,21,30,102690,101470,100290,54.01,0,8.53,9.32,9.53,9.65,9.74,9.81,9.85,9.89,9.950000000000001,21.54,21.650000000000002,21.72,21.78,21.84,21.89,21.94,21.98,22.07,16.2,15.860000000000001,15.68,15.48,15.280000000000001,15.1,14.89,14.700000000000001,14.31,N/A,N/A -2012,1,28,22,30,102710,101490,100310,51.31,0,8.89,9.700000000000001,9.91,10.03,10.11,10.17,10.200000000000001,10.23,10.26,19,19.27,19.45,19.61,19.77,19.91,20.05,20.18,20.45,16.19,15.84,15.65,15.46,15.26,15.07,14.870000000000001,14.68,14.290000000000001,N/A,N/A -2012,1,28,23,30,102770,101550,100360,49.93,0,9.33,10.17,10.39,10.5,10.58,10.63,10.66,10.69,10.71,21.990000000000002,21.88,21.81,21.740000000000002,21.68,21.62,21.56,21.5,21.39,15.870000000000001,15.5,15.31,15.11,14.91,14.72,14.52,14.33,13.93,N/A,N/A -2012,1,29,0,30,102850,101620,100430,52.21,0,10.3,11.200000000000001,11.42,11.53,11.59,11.63,11.64,11.65,11.64,19.06,19.37,19.55,19.71,19.87,20.01,20.16,20.29,20.56,15.13,14.700000000000001,14.5,14.3,14.09,13.9,13.700000000000001,13.51,13.11,N/A,N/A -2012,1,29,1,30,102890,101660,100470,55.29,0,10.47,11.38,11.6,11.72,11.790000000000001,11.84,11.86,11.88,11.88,21.46,21.76,21.95,22.13,22.31,22.47,22.64,22.8,23.14,14.33,13.85,13.64,13.43,13.22,13.030000000000001,12.82,12.63,12.24,N/A,N/A -2012,1,29,2,30,102930,101690,100500,57.57,0,10.4,11.28,11.49,11.61,11.67,11.72,11.74,11.76,11.77,28.650000000000002,28.92,29.080000000000002,29.23,29.38,29.51,29.66,29.8,30.11,13.82,13.3,13.08,12.870000000000001,12.66,12.47,12.27,12.08,11.69,N/A,N/A -2012,1,29,3,30,102950,101720,100520,58.74,0,10.58,11.450000000000001,11.66,11.76,11.82,11.86,11.870000000000001,11.88,11.870000000000001,35.18,35.4,35.54,35.660000000000004,35.79,35.9,36.03,36.160000000000004,36.42,13.450000000000001,12.91,12.69,12.48,12.27,12.08,11.870000000000001,11.68,11.3,N/A,N/A -2012,1,29,4,30,102950,101710,100510,60.47,0,9.98,10.77,10.96,11.06,11.11,11.15,11.16,11.17,11.18,40.08,40.37,40.54,40.71,40.87,41.02,41.19,41.35,41.71,13.290000000000001,12.75,12.530000000000001,12.32,12.11,11.92,11.72,11.53,11.15,N/A,N/A -2012,1,29,5,30,102950,101710,100510,63.1,0,9.31,10.02,10.18,10.26,10.31,10.34,10.35,10.35,10.34,43.61,43.980000000000004,44.22,44.45,44.660000000000004,44.86,45.07,45.27,45.7,13.3,12.77,12.55,12.34,12.13,11.94,11.74,11.55,11.17,N/A,N/A -2012,1,29,6,30,102980,101740,100540,66.63,0,8.870000000000001,9.53,9.69,9.77,9.82,9.85,9.870000000000001,9.88,9.88,48.64,49.02,49.24,49.44,49.63,49.79,49.980000000000004,50.15,50.51,13.22,12.69,12.47,12.26,12.05,11.86,11.65,11.46,11.07,N/A,N/A -2012,1,29,7,30,103010,101780,100580,61.27,0,9.59,10.33,10.51,10.6,10.66,10.69,10.71,10.72,10.71,52.64,52.86,52.99,53.11,53.230000000000004,53.33,53.45,53.550000000000004,53.79,13.36,12.82,12.6,12.39,12.18,11.99,11.78,11.59,11.200000000000001,N/A,N/A -2012,1,29,8,30,103010,101770,100570,62.88,0,8.44,9.05,9.19,9.26,9.3,9.33,9.34,9.34,9.34,56.44,56.800000000000004,57.02,57.22,57.410000000000004,57.59,57.78,57.96,58.34,13.38,12.86,12.65,12.44,12.23,12.040000000000001,11.84,11.65,11.26,N/A,N/A -2012,1,29,9,30,103020,101780,100580,63.72,0,9.040000000000001,9.700000000000001,9.85,9.92,9.96,9.97,9.97,9.97,9.94,51.65,52.04,52.29,52.52,52.74,52.94,53.15,53.36,53.78,13.24,12.71,12.48,12.27,12.06,11.870000000000001,11.66,11.47,11.08,N/A,N/A -2012,1,29,10,30,103030,101800,100600,63.74,0,9.200000000000001,9.89,10.05,10.13,10.17,10.200000000000001,10.21,10.21,10.200000000000001,53.17,53.410000000000004,53.59,53.76,53.92,54.07,54.22,54.370000000000005,54.69,13.26,12.72,12.5,12.290000000000001,12.08,11.89,11.68,11.49,11.1,N/A,N/A -2012,1,29,11,30,103050,101820,100610,62.75,0,8.83,9.49,9.64,9.72,9.76,9.790000000000001,9.8,9.8,9.8,59.120000000000005,59.370000000000005,59.550000000000004,59.72,59.89,60.04,60.2,60.35,60.660000000000004,13.33,12.8,12.58,12.370000000000001,12.16,11.97,11.76,11.57,11.18,N/A,N/A -2012,1,29,12,30,103080,101840,100640,62.5,0,8.38,8.99,9.14,9.22,9.27,9.3,9.31,9.32,9.33,61.57,61.79,61.92,62.04,62.160000000000004,62.26,62.370000000000005,62.46,62.660000000000004,13.41,12.89,12.67,12.46,12.25,12.06,11.85,11.66,11.27,N/A,N/A -2012,1,29,13,30,103090,101850,100650,66.75,0,8.36,8.96,9.1,9.18,9.22,9.24,9.25,9.26,9.26,61.68,61.92,62.06,62.18,62.29,62.39,62.5,62.6,62.81,13.27,12.75,12.530000000000001,12.32,12.1,11.92,11.71,11.52,11.13,N/A,N/A -2012,1,29,14,30,103130,101890,100690,62.03,0,8.45,9.06,9.200000000000001,9.27,9.31,9.34,9.35,9.36,9.35,63.39,63.51,63.58,63.63,63.68,63.730000000000004,63.77,63.82,63.9,13.32,12.790000000000001,12.58,12.36,12.15,11.96,11.76,11.56,11.17,N/A,N/A -2012,1,29,15,30,103150,101910,100710,58.13,0,8.35,8.94,9.08,9.15,9.18,9.200000000000001,9.21,9.21,9.200000000000001,65.87,66.06,66.19,66.3,66.42,66.52,66.63,66.73,66.95,13.41,12.9,12.68,12.47,12.26,12.07,11.86,11.67,11.28,N/A,N/A -2012,1,29,16,30,103140,101910,100700,55.870000000000005,0,7.71,8.24,8.36,8.42,8.45,8.47,8.47,8.47,8.46,66.44,66.71000000000001,66.86,67,67.14,67.27,67.4,67.53,67.8,13.450000000000001,12.950000000000001,12.74,12.530000000000001,12.32,12.14,11.93,11.74,11.35,N/A,N/A -2012,1,29,17,30,103130,101890,100690,59.7,0,7.11,7.57,7.67,7.72,7.74,7.75,7.75,7.75,7.73,65.12,65.45,65.67,65.87,66.06,66.23,66.41,66.58,66.95,13.52,13.040000000000001,12.83,12.620000000000001,12.41,12.23,12.02,11.83,11.44,N/A,N/A -2012,1,29,18,30,103130,101890,100690,57.44,0,6.46,6.8500000000000005,6.94,6.97,6.99,7,7,6.99,6.98,66.63,66.94,67.13,67.32000000000001,67.5,67.66,67.84,68,68.36,13.67,13.200000000000001,12.99,12.790000000000001,12.58,12.39,12.19,12,11.61,N/A,N/A -2012,1,29,19,30,103110,101880,100680,58.6,0,5.96,6.3,6.38,6.41,6.42,6.43,6.43,6.43,6.41,68.1,68.46000000000001,68.69,68.91,69.12,69.3,69.51,69.69,70.10000000000001,13.780000000000001,13.33,13.120000000000001,12.92,12.72,12.530000000000001,12.32,12.13,11.74,N/A,N/A -2012,1,29,20,30,103060,101830,100630,58.47,0,5.38,5.67,5.73,5.75,5.76,5.76,5.76,5.76,5.74,68.72,69.13,69.42,69.68,69.92,70.15,70.41,70.64,71.16,13.94,13.5,13.3,13.1,12.89,12.71,12.5,12.31,11.92,N/A,N/A -2012,1,29,21,30,103010,101780,100580,58.39,0,5,5.26,5.3100000000000005,5.33,5.34,5.34,5.34,5.33,5.32,70.58,70.93,71.13,71.31,71.5,71.68,71.87,72.05,72.46000000000001,14.1,13.67,13.48,13.27,13.07,12.89,12.68,12.49,12.11,N/A,N/A -2012,1,29,22,30,102960,101730,100530,59.6,0,4.74,4.98,5.03,5.04,5.05,5.0600000000000005,5.05,5.05,5.04,74.96000000000001,75.21000000000001,75.35000000000001,75.48,75.62,75.75,75.9,76.04,76.37,14.26,13.84,13.65,13.450000000000001,13.25,13.07,12.870000000000001,12.68,12.3,N/A,N/A -2012,1,29,23,30,102920,101700,100500,56.620000000000005,0,4.83,5.1000000000000005,5.15,5.17,5.19,5.19,5.2,5.2,5.21,78.97,79.07000000000001,79.11,79.16,79.22,79.26,79.32000000000001,79.37,79.48,14.56,14.16,13.97,13.77,13.58,13.4,13.200000000000001,13.01,12.64,N/A,N/A -2012,1,30,0,30,102920,101690,100500,54.63,0,4.97,5.26,5.32,5.3500000000000005,5.37,5.38,5.39,5.4,5.42,88.33,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.35000000000001,88.36,14.86,14.46,14.27,14.08,13.88,13.700000000000001,13.5,13.32,12.94,N/A,N/A -2012,1,30,1,30,102900,101670,100480,52.47,0,5.16,5.48,5.55,5.59,5.62,5.63,5.64,5.66,5.68,93.25,93.29,93.31,93.32000000000001,93.33,93.34,93.36,93.38,93.4,15.18,14.8,14.61,14.41,14.21,14.030000000000001,13.83,13.65,13.26,N/A,N/A -2012,1,30,2,30,102880,101660,100470,53.050000000000004,0,5.21,5.53,5.61,5.64,5.66,5.68,5.69,5.7,5.71,97.95,98.02,98.06,98.09,98.12,98.15,98.18,98.22,98.28,15.39,15.02,14.83,14.64,14.44,14.25,14.05,13.870000000000001,13.48,N/A,N/A -2012,1,30,3,30,102870,101640,100450,55.83,0,4.98,5.28,5.3500000000000005,5.39,5.41,5.43,5.44,5.44,5.45,102.54,102.66,102.75,102.82000000000001,102.91,102.98,103.06,103.14,103.31,15.49,15.120000000000001,14.94,14.74,14.540000000000001,14.36,14.15,13.97,13.58,N/A,N/A -2012,1,30,4,30,102840,101610,100430,58.92,0,4.95,5.2700000000000005,5.3500000000000005,5.39,5.42,5.44,5.46,5.47,5.49,105.55,105.87,106.07000000000001,106.26,106.43,106.59,106.77,106.93,107.28,15.67,15.31,15.13,14.93,14.73,14.55,14.34,14.16,13.77,N/A,N/A -2012,1,30,5,30,102820,101600,100410,59.58,0,5.12,5.47,5.55,5.6000000000000005,5.63,5.66,5.67,5.69,5.71,113.43,113.71000000000001,113.87,114.02,114.16,114.29,114.43,114.57000000000001,114.85000000000001,15.870000000000001,15.52,15.33,15.14,14.94,14.75,14.55,14.36,13.97,N/A,N/A -2012,1,30,6,30,102820,101600,100410,62.75,0,4.66,4.98,5.0600000000000005,5.11,5.14,5.16,5.18,5.2,5.22,116.06,116.32000000000001,116.51,116.68,116.85000000000001,117,117.17,117.33,117.67,15.96,15.620000000000001,15.44,15.25,15.05,14.870000000000001,14.67,14.48,14.09,N/A,N/A -2012,1,30,7,30,102820,101600,100410,61.95,0,4.89,5.25,5.34,5.39,5.43,5.46,5.48,5.5,5.53,114.61,115.05,115.31,115.55,115.78,115.99000000000001,116.21000000000001,116.42,116.85000000000001,16.25,15.93,15.75,15.56,15.36,15.18,14.98,14.790000000000001,14.4,N/A,N/A -2012,1,30,8,30,102800,101580,100390,62.2,0,4.8500000000000005,5.21,5.3,5.3500000000000005,5.38,5.41,5.43,5.44,5.46,121,121.39,121.59,121.78,121.95,122.09,122.25,122.4,122.7,16.4,16.080000000000002,15.91,15.72,15.52,15.33,15.13,14.950000000000001,14.56,N/A,N/A -2012,1,30,9,30,102770,101550,100370,63.82,0,4.42,4.72,4.79,4.83,4.8500000000000005,4.87,4.88,4.89,4.9,122.52,122.78,122.95,123.11,123.26,123.4,123.55,123.68,123.98,16.44,16.12,15.950000000000001,15.75,15.56,15.370000000000001,15.17,14.98,14.59,N/A,N/A -2012,1,30,10,30,102750,101530,100350,67.16,0,4.05,4.33,4.4,4.44,4.46,4.49,4.5,4.51,4.54,124.98,125.34,125.58,125.81,126.03,126.23,126.45,126.65,127.09,16.490000000000002,16.18,16,15.81,15.610000000000001,15.43,15.23,15.040000000000001,14.65,N/A,N/A -2012,1,30,11,30,102740,101520,100340,71.37,0,4.01,4.3100000000000005,4.39,4.43,4.47,4.5,4.5200000000000005,4.54,4.58,123.46000000000001,124.12,124.53,124.93,125.3,125.62,125.97,126.3,126.96000000000001,16.54,16.23,16.06,15.870000000000001,15.67,15.49,15.290000000000001,15.1,14.71,N/A,N/A -2012,1,30,12,30,102720,101510,100330,72.24,0,4.34,4.68,4.7700000000000005,4.82,4.86,4.89,4.92,4.94,4.98,122.95,123.56,123.95,124.32000000000001,124.67,125,125.33,125.64,126.29,16.69,16.39,16.22,16.03,15.83,15.65,15.450000000000001,15.27,14.88,N/A,N/A -2012,1,30,13,30,102700,101490,100310,71.83,0,4.33,4.7,4.79,4.8500000000000005,4.89,4.92,4.95,4.97,5,122.4,122.84,123.14,123.43,123.69,123.93,124.18,124.41,124.9,16.95,16.68,16.51,16.32,16.13,15.950000000000001,15.75,15.56,15.18,N/A,N/A -2012,1,30,14,30,102720,101500,100320,72.96000000000001,0,4.96,5.39,5.5,5.5600000000000005,5.6000000000000005,5.62,5.65,5.66,5.69,123.34,123.73,124,124.25,124.49000000000001,124.71000000000001,124.95,125.17,125.64,17.03,16.76,16.59,16.41,16.21,16.03,15.83,15.65,15.26,N/A,N/A -2012,1,30,15,30,102720,101500,100330,75.64,0,5.22,5.69,5.82,5.89,5.95,5.98,6.01,6.04,6.07,120.53,120.96000000000001,121.25,121.53,121.8,122.06,122.33,122.58,123.12,17.11,16.84,16.67,16.48,16.3,16.12,15.92,15.73,15.35,N/A,N/A -2012,1,30,16,30,102700,101490,100310,77.23,0,5.4,5.91,6.04,6.12,6.18,6.22,6.26,6.29,6.34,121.78,122.14,122.4,122.67,122.93,123.18,123.46000000000001,123.72,124.3,17.23,16.97,16.8,16.62,16.43,16.25,16.05,15.870000000000001,15.49,N/A,N/A -2012,1,30,17,30,102670,101460,100290,76.86,0,5.68,6.24,6.4,6.5,6.57,6.63,6.67,6.71,6.78,123.45,123.99000000000001,124.33,124.66,124.97,125.25,125.54,125.81,126.39,17.45,17.2,17.05,16.87,16.68,16.51,16.32,16.14,15.76,N/A,N/A -2012,1,30,18,30,102640,101430,100260,81.52,0,5.44,5.98,6.13,6.23,6.32,6.390000000000001,6.46,6.5200000000000005,6.67,121.46000000000001,122.04,122.42,122.82000000000001,123.23,123.63000000000001,124.11,124.55,125.62,17.46,17.21,17.06,16.88,16.69,16.52,16.330000000000002,16.15,15.790000000000001,N/A,N/A -2012,1,30,19,30,102610,101400,100230,83.66,0,5.4,5.93,6.1000000000000005,6.25,6.390000000000001,6.53,6.7,6.86,7.0200000000000005,121.53,121.88,122.17,122.54,122.97,123.44,123.95,124.42,125.22,17.51,17.26,17.11,16.94,16.77,16.6,16.42,16.26,15.88,N/A,N/A -2012,1,30,20,30,102540,101340,100170,84.32000000000001,0,5.29,5.95,6.21,6.47,6.67,6.83,7.0200000000000005,7.19,7.51,115.14,115.98,116.34,116.39,116.77,117.32000000000001,118.24000000000001,119.2,121.84,17.53,17.31,17.16,16.98,16.81,16.64,16.47,16.31,16,N/A,N/A -2012,1,30,21,30,102500,101290,100120,84.75,0,5.17,5.86,6.12,6.36,6.57,6.7700000000000005,6.95,7.12,7.42,114.98,115.92,116.60000000000001,117.35000000000001,118.08,118.79,119.54,120.25,122,17.62,17.42,17.29,17.14,16.98,16.830000000000002,16.66,16.51,16.19,N/A,N/A -2012,1,30,22,30,102460,101250,100080,86.23,0,5.23,6.04,6.37,6.67,6.94,7.19,7.44,7.66,8.08,115.34,116.19,116.87,117.74000000000001,118.71000000000001,119.71000000000001,120.88,122.01,124.34,17.59,17.43,17.32,17.19,17.06,16.92,16.79,16.66,16.37,N/A,N/A -2012,1,30,23,30,102420,101210,100040,87,0,5.5600000000000005,6.51,6.91,7.3,7.66,8,8.31,8.59,9.03,120.22,121.05,121.7,122.53,123.41,124.32000000000001,125.35000000000001,126.35000000000001,128.77,17.62,17.48,17.39,17.27,17.16,17.06,16.94,16.830000000000002,16.57,N/A,N/A -2012,1,31,0,30,102390,101180,100020,87.96000000000001,0,5.87,6.88,7.32,7.75,8.15,8.52,8.9,9.24,9.82,121.01,121.85000000000001,122.52,123.39,124.35000000000001,125.35000000000001,126.49000000000001,127.59,129.98,17.7,17.57,17.490000000000002,17.38,17.28,17.18,17.07,16.98,16.77,N/A,N/A -2012,1,31,1,30,102370,101170,100000,88.77,0,6.140000000000001,7.21,7.66,8.09,8.48,8.85,9.22,9.56,10.22,125.82000000000001,126.57000000000001,127.17,127.92,128.76,129.64000000000001,130.71,131.78,134.41,17.77,17.66,17.57,17.46,17.36,17.26,17.150000000000002,17.06,16.87,N/A,N/A -2012,1,31,2,30,102340,101130,99970,88.29,0,6.640000000000001,7.8500000000000005,8.370000000000001,8.86,9.3,9.72,10.13,10.51,11.16,128.49,129.19,129.81,130.64000000000001,131.64000000000001,132.73,134.11,135.47,138.04,17.91,17.84,17.78,17.71,17.64,17.580000000000002,17.51,17.45,17.27,N/A,N/A -2012,1,31,3,30,102310,101110,99940,89.96000000000001,0,6.2,7.44,7.98,8.51,9,9.450000000000001,9.870000000000001,10.26,10.950000000000001,131.79,132.54,133.21,134.18,135.34,136.58,138.02,139.39000000000001,142,17.92,17.88,17.84,17.79,17.740000000000002,17.69,17.63,17.56,17.37,N/A,N/A -2012,1,31,4,30,102270,101070,99910,90.51,0,6.22,7.55,8.16,8.790000000000001,9.39,9.98,10.56,11.09,11.96,136.71,137.9,138.85,140.04,141.27,142.51,143.76,144.93,146.91,18,17.97,17.94,17.91,17.87,17.84,17.81,17.78,17.63,N/A,N/A -2012,1,31,5,30,102250,101050,99890,90.94,0,6.2700000000000005,7.6000000000000005,8.21,8.84,9.43,10,10.57,11.1,12.02,141.86,142.84,143.61,144.58,145.58,146.61,147.68,148.69,150.44,18.09,18.080000000000002,18.05,18.02,17.98,17.95,17.91,17.87,17.73,N/A,N/A -2012,1,31,6,30,102240,101040,99880,92.18,0,5.98,7.37,8.01,8.65,9.26,9.84,10.44,11.01,12.07,147.68,148.37,148.93,149.61,150.39000000000001,151.21,152.26,153.29,155.28,18.16,18.16,18.14,18.1,18.07,18.03,18.01,17.990000000000002,17.92,N/A,N/A -2012,1,31,7,30,102230,101030,99880,93.26,0,5.8,7.26,7.95,8.68,9.34,9.97,10.53,11.03,11.75,149.31,150.38,151.18,152.14000000000001,153.02,153.84,154.59,155.27,156.72,18.2,18.25,18.25,18.25,18.240000000000002,18.23,18.19,18.14,17.98,N/A,N/A -2012,1,31,8,30,102200,101000,99850,93.77,0,5.46,7.1000000000000005,7.95,8.88,9.73,10.51,11.16,11.73,12.36,150.53,151.97,153.05,154.3,155.47,156.58,157.37,158.04,159.3,18.21,18.34,18.400000000000002,18.46,18.5,18.53,18.5,18.45,18.25,N/A,N/A -2012,1,31,9,30,102210,101010,99850,93.42,0,5.74,7.32,8.09,8.88,9.6,10.28,10.94,11.56,12.200000000000001,155.71,157.48,158.77,160.09,161.03,161.70000000000002,161.92000000000002,162,162.79,18.29,18.43,18.48,18.52,18.53,18.53,18.5,18.47,18.27,N/A,N/A -2012,1,31,10,30,102200,101000,99850,94.16,0,4.82,6.34,7.140000000000001,8.03,8.8,9.48,9.96,10.36,10.56,148.17000000000002,150.67000000000002,152.59,154.86,156.66,158.13,160.14000000000001,162.14000000000001,164.83,18.2,18.35,18.43,18.56,18.66,18.76,18.77,18.77,18.6,N/A,N/A -2012,1,31,11,30,102200,101000,99850,94.99,0,4.65,6.15,6.96,7.91,8.73,9.450000000000001,10.11,10.700000000000001,11.02,148,149.94,151.79,154.59,157.34,160.04,162.69,165.12,166.76,18.07,18.2,18.29,18.43,18.55,18.64,18.66,18.66,18.51,N/A,N/A -2012,1,31,12,30,102200,101010,99850,94.73,0,4.62,6.16,6.92,7.7,8.52,9.370000000000001,9.71,9.9,10.23,146.99,149.24,151.4,154.63,159.03,164.28,166.44,167.72,169.64000000000001,18.12,18.32,18.43,18.59,18.75,18.92,18.91,18.86,18.67,N/A,N/A -2012,1,31,13,30,102200,101010,99850,94.99,0,4.8100000000000005,6.5,7.45,8.61,9.35,9.78,9.97,10.08,10.33,146.29,150.29,154.02,159.89000000000001,163.95000000000002,166.66,167.71,168.29,169.53,18.06,18.38,18.6,18.89,19.02,19.06,19,18.91,18.67,N/A,N/A -2012,1,31,14,30,102230,101030,99870,95.09,0,4.86,6.41,7.26,8.28,9.08,9.72,9.950000000000001,10.06,10.3,141.62,145.37,149.14000000000001,155.1,160.22,164.70000000000002,166.46,167.45000000000002,168.94,18.09,18.3,18.47,18.740000000000002,18.92,19.05,19.04,19,18.8,N/A,N/A -2012,1,31,15,30,102230,101030,99880,96.04,0,4.21,5.51,6.36,7.66,8.55,9.120000000000001,9.53,9.870000000000001,10.46,142.78,145.31,150.17000000000002,160.89000000000001,167.91,172.05,173.98,175.23,177.09,18.01,18.05,18.27,18.79,19.080000000000002,19.21,19.29,19.34,19.330000000000002,N/A,N/A -2012,1,31,16,30,102210,101010,99860,96.16,0,4.5,5.89,6.73,7.88,8.84,9.67,10.03,10.24,10.6,144.4,147.21,151.03,158.71,164.5,168.88,170.19,170.64000000000001,171.35,18.14,18.240000000000002,18.43,18.86,19.150000000000002,19.35,19.37,19.36,19.17,N/A,N/A -2012,1,31,17,30,102190,100990,99840,96.26,0,4.46,5.8,6.62,7.78,8.78,9.64,10,10.21,10.450000000000001,145.03,148.38,151.74,157.20000000000002,162.32,167.16,169.16,170.38,172.38,18.31,18.39,18.53,18.82,19.080000000000002,19.32,19.35,19.34,19.18,N/A,N/A -2012,1,31,18,30,102160,100970,99820,96.14,0,4.88,6.25,7.05,8.13,9.03,9.81,10.03,10.1,10.38,145.35,147.78,150.82,156.70000000000002,162.3,167.63,169.71,170.88,172.85,18.52,18.61,18.75,19.06,19.31,19.51,19.5,19.45,19.3,N/A,N/A -2012,1,31,19,30,102140,100950,99800,95.96000000000001,0,4.93,6.24,6.92,7.76,8.61,9.5,9.86,10.08,10.35,145.22,147.14000000000001,149.26,152.89000000000001,158.4,165.22,168.1,169.89000000000001,172.21,18.66,18.69,18.76,18.91,19.150000000000002,19.44,19.51,19.52,19.42,N/A,N/A -2012,1,31,20,30,102100,100910,99760,95.37,0,4.83,6.25,7.0200000000000005,8,8.8,9.48,9.61,9.6,9.83,148.17000000000002,150.34,153.01,157.94,162.93,167.91,170.08,171.37,173.85,18.68,18.8,18.93,19.150000000000002,19.35,19.52,19.52,19.490000000000002,19.54,N/A,N/A -2012,1,31,21,30,102070,100880,99730,94.79,0,5.34,6.92,7.71,8.58,9.31,9.950000000000001,10.02,9.96,9.94,146.18,146.91,148.87,153.57,159.26,165.63,167.96,169.17000000000002,172.39000000000001,18.6,18.75,18.89,19.11,19.3,19.48,19.43,19.330000000000002,19.22,N/A,N/A -2012,1,31,22,30,102050,100850,99700,93.59,0,5.12,6.78,7.5600000000000005,8.36,8.97,9.450000000000001,9.66,9.790000000000001,10.11,144.08,146.34,149.44,155.44,161.06,166.35,168,168.75,170.67000000000002,18.57,18.84,19.04,19.37,19.580000000000002,19.73,19.73,19.69,19.72,N/A,N/A -2012,1,31,23,30,102040,100850,99700,97.36,0,5.33,6.92,7.8100000000000005,8.790000000000001,9.21,9.26,9.24,9.21,9.06,144.1,146.17000000000002,149.81,157.21,161.38,163.26,164.94,166.41,168.81,17.69,18.25,18.75,19.44,19.67,19.64,19.55,19.46,19.17,N/A,N/A -2012,2,1,0,30,102050,100860,99710,96.56,0.4,5.0200000000000005,6.79,7.83,9.07,9.51,9.44,9.290000000000001,9.14,9.05,139.42000000000002,142.95000000000002,147.75,156.65,161.11,162.53,163.96,165.23,167.21,17.85,17.45,17.900000000000002,19.39,19.94,19.94,19.85,19.740000000000002,19.52,N/A,N/A -2012,2,1,1,30,102060,100860,99710,97.81,0.7000000000000001,4.65,6.33,7.44,8.790000000000001,9.33,9.36,9.31,9.24,8.97,135.3,138.91,144.4,155.29,160.3,161.57,162.69,163.67000000000002,165.56,17.59,17.05,17.61,19.5,20.18,20.21,20.14,20.07,19.85,N/A,N/A -2012,2,1,2,30,102070,100870,99720,99.2,0.6000000000000001,5.5600000000000005,6.53,7.34,8.81,9.450000000000001,9.56,9.6,9.620000000000001,9.8,133.75,134.72,139.38,151.20000000000002,157.31,159.56,161.31,162.79,165.07,17.1,16.62,17.05,18.54,19.330000000000002,19.76,19.92,20.01,20.01,N/A,N/A -2012,2,1,3,30,102070,100870,99720,99.12,0.7000000000000001,5.51,6.16,6.95,8.69,9.540000000000001,9.78,9.86,9.91,9.94,135.69,137.56,142.1,152.78,158.6,160.95000000000002,162.98,164.76,167.78,16.92,16.53,16.95,18.3,19.17,19.77,19.96,20.06,20.04,N/A,N/A -2012,2,1,4,30,102080,100880,99730,98.8,0.4,5.43,6.1000000000000005,6.91,8.870000000000001,9.84,10.1,10.200000000000001,10.26,10.28,136.08,137.12,140.69,150.32,155.6,157.54,159.3,160.87,163.83,16.98,16.55,16.89,18.12,18.84,19.26,19.39,19.46,19.42,N/A,N/A -2012,2,1,5,30,102050,100850,99700,96.77,0.2,5.37,6.91,7.86,9.13,9.92,10.35,10.34,10.23,10.22,145.82,147.41,149.97,155.34,160.36,164.98,167.20000000000002,168.70000000000002,171.73,17.79,17.64,17.69,17.94,18.66,19.64,19.830000000000002,19.85,19.8,N/A,N/A -2012,2,1,6,30,102050,100850,99700,97.06,0.1,6.0600000000000005,7.43,8.25,9.39,10.05,10.36,10.38,10.34,10.35,154.54,155.4,157.06,160.78,164.20000000000002,167.32,169.31,170.87,173.68,18.01,17.87,17.94,18.26,18.92,19.79,19.96,19.98,19.89,N/A,N/A -2012,2,1,7,30,102050,100860,99710,97.26,0.1,6.34,7.65,8.45,9.620000000000001,10.41,10.96,10.97,10.870000000000001,10.81,159.88,160.51,161.8,164.6,167.77,171.1,172.87,174.14000000000001,176.91,17.97,17.86,17.990000000000002,18.37,19.06,19.92,20.05,20.04,19.95,N/A,N/A -2012,2,1,8,30,102050,100860,99700,96.25,0.1,5.55,6.890000000000001,7.65,8.61,9.6,10.63,11.08,11.33,11.15,166.07,166.11,166.48,167.37,169.25,171.87,175.92000000000002,179.9,183.28,18.18,18.12,18.080000000000002,18.02,18.06,18.14,18.67,19.25,19.61,N/A,N/A -2012,2,1,9,30,102050,100850,99700,94.77,0,5.11,6.7,7.58,8.67,9.77,10.88,11.36,11.67,11.57,161.69,164.04,165.88,168.18,170.68,173.37,176.54,179.56,183.35,18.5,18.59,18.63,18.7,18.82,18.96,18.94,18.900000000000002,18.87,N/A,N/A -2012,2,1,10,30,102030,100840,99690,93.46000000000001,0,4.91,6.79,7.71,8.58,9.370000000000001,10.120000000000001,10.36,10.46,10.02,154.62,157.33,160.05,164.32,168.49,172.56,174.63,176.05,179.32,18.82,19,19.04,19.03,19.05,19.080000000000002,19.1,19.12,19.080000000000002,N/A,N/A -2012,2,1,11,30,102030,100840,99690,92.78,0,4.7,6.8100000000000005,7.87,8.790000000000001,9.4,9.8,9.81,9.72,9.5,151.27,155.97,159.88,164.47,168.78,172.78,175.91,178.48,180.4,19,19.35,19.47,19.53,19.54,19.53,19.42,19.31,19.31,N/A,N/A -2012,2,1,12,30,102030,100840,99690,93.09,0,4.58,6.390000000000001,7.28,8.19,8.76,9.09,9.02,8.85,8.790000000000001,142.19,147.27,151.8,158.07,164.26,170.18,174.42000000000002,177.84,184.05,18.94,19.13,19.16,19.14,19.19,19.28,19.35,19.400000000000002,19.84,N/A,N/A -2012,2,1,13,30,102040,100850,99700,91.78,0.2,5.41,7.8,8.93,9.78,10.21,10.35,10.05,9.67,9.120000000000001,154.76,160.82,165.09,169.16,172.36,174.92000000000002,177.47,179.66,181.61,19.22,19.48,19.490000000000002,19.37,19.150000000000002,18.88,19.17,19.55,19.77,N/A,N/A -2012,2,1,14,30,102080,100890,99740,93.18,0,4.16,6.09,7.07,8.120000000000001,8.75,9.07,9,8.85,8.83,143.01,155.81,163.89000000000001,169.11,172.70000000000002,175.04,178.48,181.78,184.51,18.97,19.51,19.76,19.97,20.02,19.97,19.91,19.84,19.68,N/A,N/A -2012,2,1,15,30,102080,100890,99740,93.47,0,3.97,6.140000000000001,7.13,7.65,7.84,7.8,7.71,7.61,7.36,137.8,150.82,159.9,167.61,173.57,178.13,180.69,182.5,186.42000000000002,18.96,19.54,19.88,20.240000000000002,20.41,20.45,20.41,20.34,20.150000000000002,N/A,N/A -2012,2,1,16,30,102030,100850,99700,92.47,3.8000000000000003,3.77,5.19,5.61,5.8,5.98,6.13,6.28,6.43,6.65,153.64000000000001,156.74,160.46,167.66,172.03,174.51,176.25,177.67000000000002,179.33,19.34,19.94,20.17,20.31,20.37,20.38,20.32,20.25,20.01,N/A,N/A -2012,2,1,17,30,102020,100840,99690,93.14,2.1,3.17,4.8100000000000005,5.5,6.15,6.55,6.73,6.86,6.95,6.95,164.94,169.61,174.04,182.58,188.06,191.29,194.20000000000002,196.83,201.08,19.3,19.62,19.72,19.85,19.92,19.96,19.990000000000002,20.03,20.01,N/A,N/A -2012,2,1,18,30,102060,100870,99720,94.11,13.3,2.23,3.29,3.68,4.11,4.45,4.71,4.94,5.14,5.5200000000000005,175.68,190.79,200.13,208.09,213.08,215.92000000000002,218.06,219.88,222.71,19.31,19.59,19.62,19.64,19.64,19.62,19.6,19.59,19.6,N/A,N/A -2012,2,1,19,30,102040,100850,99700,95.11,1.2000000000000002,2.09,2.38,2.24,2.04,1.97,1.95,2.07,2.23,2.62,116.66,129.44,139.72,153.62,170.82,190,205.1,219.23000000000002,234.31,19.1,19.21,19.23,19.35,19.490000000000002,19.650000000000002,19.7,19.71,19.66,N/A,N/A -2012,2,1,20,30,102030,100840,99690,95.61,22.3,1.37,1.3,1.1500000000000001,1.07,1.11,1.24,1.41,1.6,1.94,95.64,90.65,81.06,57.1,40.53,332.67,323.12,315.73,306.24,19.02,19.38,19.46,19.37,19.28,19.21,19.14,19.09,18.94,N/A,N/A -2012,2,1,21,30,102050,100860,99700,96.2,264,1.29,1.23,1.05,0.97,1.04,1.31,1.59,1.8900000000000001,2.47,117.19,92.76,74.91,34.27,333.01,311.7,298.72,290.46,279.88,18.900000000000002,19.150000000000002,19.22,19.2,19.19,19.18,19.18,19.16,19.02,N/A,N/A -2012,2,1,22,30,101980,100790,99640,95.38,7.2,3.0300000000000002,3.4,3.36,3.46,3.6,3.74,3.89,4.0200000000000005,4.25,148.68,157.57,163.13,169.34,174.46,178.93,182.08,184.68,186.53,18.93,19.13,19.19,19.26,19.35,19.45,19.5,19.55,19.5,N/A,N/A -2012,2,1,23,30,101960,100770,99620,96.55,0,2.25,2.72,2.65,2.5500000000000003,2.49,2.45,2.52,2.62,3.17,130.18,141.96,149.19,156.03,162.82,169.54,179.35,189.07,203.04,18.62,18.92,19,19.02,19.01,18.96,19.07,19.2,19.44,N/A,N/A -2012,2,2,0,30,102000,100810,99660,94.73,0,3.56,4.34,4.43,4.45,4.46,4.45,4.49,4.53,4.59,153.54,158.42000000000002,161.70000000000002,165.22,168.51,171.61,174.54,177.19,182.77,18.85,19.02,19.2,19.59,19.75,19.77,19.68,19.59,19.35,N/A,N/A -2012,2,2,1,30,102000,100810,99660,92.88,8.4,5.18,6.55,6.8,6.51,6.37,6.3100000000000005,6.28,6.26,6.16,160.31,167.88,173.70000000000002,180.07,183.06,184.1,184.43,184.59,185.69,18.95,19.28,19.38,19.36,19.3,19.21,19.11,19.02,18.96,N/A,N/A -2012,2,2,2,30,102010,100810,99670,92.33,0,5.14,6.44,6.63,6.42,6.34,6.33,6.34,6.3500000000000005,6.54,175.98,179.54,182.24,185.36,187.1,188.06,189.89000000000001,191.78,193.13,19.1,19.32,19.3,19.14,18.94,18.73,19.07,19.52,19.93,N/A,N/A -2012,2,2,3,30,101990,100800,99650,92.98,0,4.62,5.98,6.29,6.25,6.18,6.1000000000000005,6.03,5.97,5.7,177.12,180.57,183.09,185.62,187.17000000000002,188.15,189.06,189.92000000000002,193.18,18.97,19.150000000000002,19.14,19,18.86,18.72,18.6,18.51,18.830000000000002,N/A,N/A -2012,2,2,4,30,101980,100790,99640,93.77,0.4,4.75,6.28,6.79,7.03,6.97,6.7700000000000005,6.71,6.68,6.7,177.73,178.04,179.43,182.88,188.48,194.71,197.08,198.47,198.81,18.75,18.88,18.92,18.97,19.03,19.080000000000002,19.04,18.98,18.81,N/A,N/A -2012,2,2,5,30,101990,100800,99640,94.56,0,4.18,5.41,5.79,5.99,6.08,6.11,6.0600000000000005,6.01,5.86,171.85,173.91,176.78,182.07,184.88,186.21,188.01,189.75,194.70000000000002,18.61,18.68,18.68,18.64,18.57,18.490000000000002,18.44,18.400000000000002,18.35,N/A,N/A -2012,2,2,6,30,102000,100800,99650,96.10000000000001,0,4.47,5.53,5.75,5.68,5.58,5.48,5.44,5.42,5.41,182.36,184.22,186.13,189,191.92000000000002,194.68,195.83,196.64000000000001,200.62,18.5,18.38,18.3,18.23,18.2,18.19,18.12,18.05,17.93,N/A,N/A -2012,2,2,7,30,102020,100820,99660,98.22,0,4.1,4.59,4.58,4.4,4.34,4.3500000000000005,4.37,4.38,4.43,164.74,171.75,180.59,194.97,199.83,199.96,200.18,200.4,200.89000000000001,18.06,18.02,18.05,18.150000000000002,18.13,18.04,17.95,17.86,17.66,N/A,N/A -2012,2,2,8,30,102000,100810,99650,97.75,0.4,2.48,3.1,3.14,2.96,2.9,2.89,2.9,2.91,2.92,144.11,155.54,170.72,195.39000000000001,202.62,201.41,200.99,200.74,200.45000000000002,18.2,18.09,18.080000000000002,18.14,18.1,18.01,17.91,17.82,17.6,N/A,N/A -2012,2,2,9,30,102000,100800,99650,98.93,0,2.34,2.33,2.22,2.15,2.13,2.15,2.16,2.17,2.19,153.37,167.78,176.74,186.16,194.56,202.28,204.29,205.27,206.41,17.93,17.98,18.02,18.03,18.01,17.97,17.88,17.79,17.6,N/A,N/A -2012,2,2,10,30,101990,100790,99640,99.2,0,2.1,2.2800000000000002,2.19,1.96,1.81,1.71,1.68,1.67,1.6600000000000001,173.41,189.31,198.22,204.71,210.13,214.78,216.59,217.65,219.5,17.88,17.84,17.830000000000002,17.81,17.75,17.67,17.59,17.51,17.34,N/A,N/A -2012,2,2,11,30,102010,100810,99650,99.29,0,2.82,2.7,2.5300000000000002,2.34,2.15,1.99,1.9100000000000001,1.84,1.41,128.37,128.37,128.72,129.48,130.61,131.81,132.27,132.87,138.79,17.69,17.59,17.54,17.48,17.41,17.34,17.25,17.18,17.12,N/A,N/A -2012,2,2,12,30,102010,100820,99650,99.24000000000001,0,3.13,3.3200000000000003,3.36,3.38,3.34,3.2800000000000002,3.2600000000000002,3.24,2.9,115.37,114.55,113.44,111.60000000000001,110.03,108.68,108.45,108.37,108.25,17.62,17.45,17.37,17.29,17.21,17.16,17.06,16.97,16.9,N/A,N/A -2012,2,2,13,30,102020,100820,99660,99.21000000000001,0,4.61,4.88,4.92,4.93,4.8,4.62,4.42,4.25,3.96,116.9,116.68,116.52,116.37,116.04,115.65,115.60000000000001,115.67,117.31,17.35,17.150000000000002,17.06,16.96,16.91,16.89,16.84,16.8,16.69,N/A,N/A -2012,2,2,14,30,102040,100840,99680,99.26,0,5.15,5.54,5.6000000000000005,5.62,5.62,5.62,5.47,5.29,4.61,123.92,124.05,124.11,124.14,124.15,124.16,124.28,124.36,123.76,17.42,17.21,17.11,17.02,16.92,16.82,16.76,16.71,16.81,N/A,N/A -2012,2,2,15,30,102040,100840,99670,97.26,0,4.99,5.29,5.42,5.64,5.76,5.83,5.65,5.48,5.26,120.38,120.29,120.3,120.34,120.56,120.86,121.5,122.06,122.85000000000001,17.43,17.13,16.98,16.830000000000002,16.72,16.64,16.54,16.44,16.21,N/A,N/A -2012,2,2,16,30,101990,100790,99630,96.49000000000001,0,4.93,5.22,5.34,5.54,5.66,5.73,5.65,5.5600000000000005,5.3,126.56,126.01,125.01,123.21000000000001,120.13,116.69,115.65,115.25,117.55,17.55,17.27,17.13,17,17.01,17.080000000000002,17.03,16.97,16.8,N/A,N/A -2012,2,2,17,30,101960,100760,99600,95.07000000000001,0,3.64,4.25,4.5600000000000005,4.88,5.11,5.29,5.38,5.44,5.39,109.14,108.24000000000001,108.04,108.24000000000001,109.48,111.16,113.42,115.63,121.19,17.89,17.71,17.67,17.66,17.63,17.6,17.56,17.54,17.66,N/A,N/A -2012,2,2,18,30,101940,100740,99580,95.85000000000001,0,4.42,4.78,5.11,5.8100000000000005,6.23,6.5,6.5600000000000005,6.59,6.58,106.33,106.55,106.64,106.74000000000001,107.32000000000001,108.09,109.99000000000001,111.89,116.21000000000001,18.03,17.77,17.71,17.740000000000002,17.78,17.82,17.78,17.73,17.7,N/A,N/A -2012,2,2,19,30,101910,100710,99550,96.41,0,4.16,4.54,4.9,5.6000000000000005,6.05,6.37,6.66,6.92,7.24,105.21000000000001,106.10000000000001,107.84,111.36,114.11,116.33,118.72,120.97,125.31,18.19,17.92,17.81,17.740000000000002,17.75,17.79,17.85,17.91,17.900000000000002,N/A,N/A -2012,2,2,20,30,101880,100680,99530,95.97,0,4.22,4.83,5.12,5.43,5.67,5.88,6.07,6.23,6.59,101.62,103.05,104.58,106.94,110.2,113.76,117.10000000000001,120.08,124.55,18.3,18.05,17.96,17.92,18,18.12,18.18,18.2,18.1,N/A,N/A -2012,2,2,21,30,101850,100660,99500,98.11,0,4.99,5.7700000000000005,6.0600000000000005,6.32,6.51,6.65,6.73,6.8100000000000005,7.140000000000001,98.91,99.82000000000001,100.81,102.33,104.81,107.7,111.77,115.55,121.08,18.34,18.14,18.03,17.92,17.8,17.7,17.55,17.41,17.31,N/A,N/A -2012,2,2,22,30,101850,100650,99490,97.83,0,5.48,6.3,6.55,6.7,6.8100000000000005,6.91,7.16,7.42,8.11,108.88,110.61,112.43,115.14,118.46000000000001,121.89,125.05,127.77,130.16,18.16,17.94,17.78,17.59,17.400000000000002,17.22,17.1,17.01,17.06,N/A,N/A -2012,2,2,23,30,101850,100650,99500,97.14,0,4.5200000000000005,5.67,6.23,6.8100000000000005,7.33,7.8100000000000005,8.19,8.53,8.950000000000001,110.10000000000001,111.11,112.11,113.56,115.69,118.13,122.39,126.63000000000001,133.78,18.27,18.16,18.11,18.07,18.03,17.990000000000002,17.92,17.84,17.51,N/A,N/A -2012,2,3,0,30,101850,100650,99500,95.09,1.5,5.82,6.73,7.04,7.3,7.53,7.75,7.930000000000001,8.08,8.3,120.32000000000001,121.43,121.91,122.01,122.14,122.28,123.67,125.2,129.65,18.39,18.28,18.2,18.11,18.05,18.02,18.07,18.14,18.52,N/A,N/A -2012,2,3,1,30,101810,100610,99460,97.16,0,6.75,7.9,8.38,8.870000000000001,9.3,9.69,9.85,9.96,9.93,94.61,95.86,97.16,99.2,102.33,105.89,110.44,114.55,119.13,18.240000000000002,18.1,18.03,17.97,17.96,17.96,18.02,18.080000000000002,18.42,N/A,N/A -2012,2,3,2,30,101790,100590,99440,97.87,0,7.74,8.88,9.36,9.870000000000001,10.25,10.55,10.74,10.870000000000001,10.66,95.96000000000001,97.86,100.10000000000001,103.85000000000001,108.05,112.28,116.34,119.81,121.97,18,17.85,17.85,17.98,18.42,18.98,19.92,20.75,20.57,N/A,N/A -2012,2,3,3,30,101790,100590,99440,96.11,0,7.8,8.98,9.450000000000001,9.93,10.47,11.01,11.3,11.51,11.620000000000001,108.32000000000001,108.15,108.13,108.25,109.52,111.33,113.94,116.32000000000001,118.29,18.23,18.080000000000002,18.02,17.990000000000002,18.18,18.48,19.080000000000002,19.63,19.75,N/A,N/A -2012,2,3,4,30,101790,100590,99440,96.71000000000001,0,6.88,8.07,8.56,9.05,9.52,9.98,10.44,10.84,10.93,124.03,123.52,123.09,122.56,122.01,121.46000000000001,120.89,120.43,121.34,18.3,18.14,18.05,17.95,17.88,17.82,17.77,17.73,17.77,N/A,N/A -2012,2,3,5,30,101740,100540,99390,98.21000000000001,0,7.45,8.48,8.86,9.21,9.57,9.92,10.370000000000001,10.83,11.75,116.10000000000001,116.54,117.02,117.74000000000001,118.88,120.2,122.63,125.18,130.94,18.04,17.94,17.89,17.82,17.78,17.740000000000002,17.72,17.7,17.54,N/A,N/A -2012,2,3,6,30,101710,100520,99360,97.53,0,8.55,9.81,10.28,10.73,11.16,11.58,11.950000000000001,12.280000000000001,12.56,115.10000000000001,115.89,116.71000000000001,117.94,119.82000000000001,121.97,125.35000000000001,128.68,135.38,18.43,18.28,18.22,18.18,18.16,18.16,18.16,18.17,18.1,N/A,N/A -2012,2,3,7,30,101710,100520,99370,96.10000000000001,0.4,6.34,7.6000000000000005,8.16,8.76,9.43,10.13,10.74,11.26,11.55,113.32000000000001,113.31,113.78,114.86,117.99000000000001,122.21000000000001,128.64000000000001,134.73,138.58,18.66,18.580000000000002,18.53,18.5,18.61,18.79,19.11,19.400000000000002,19.54,N/A,N/A -2012,2,3,8,30,101700,100510,99360,96.71000000000001,0.4,6.5,7.8,8.41,9.07,9.73,10.39,11.15,11.85,11.85,100.23,101.62,102.81,104.47,107.02,110.05,114.33,118.67,128.14000000000001,18.59,18.46,18.36,18.23,18.21,18.25,18.43,18.6,18.96,N/A,N/A -2012,2,3,9,30,101710,100520,99370,96.16,0,6.36,7.67,8.27,8.91,9.61,10.36,11.22,11.99,11.950000000000001,107.94,110.36,112.33,114.98,117.94,121.10000000000001,124.96000000000001,128.66,137.19,18.7,18.650000000000002,18.6,18.55,18.48,18.400000000000002,18.35,18.3,18.400000000000002,N/A,N/A -2012,2,3,10,30,101710,100520,99370,95.28,0,6.47,7.97,8.69,9.42,10.14,10.83,11.49,12.09,12.64,115.59,117.11,118.19,119.51,120.91,122.36,124.41,126.58,133.82,18.88,18.84,18.78,18.68,18.57,18.45,18.400000000000002,18.38,18.61,N/A,N/A -2012,2,3,11,30,101710,100520,99370,95.79,0,6.140000000000001,7.5200000000000005,8.14,8.78,9.39,9.99,10.53,11.05,12.15,123.58,124.19,124.53,124.86,125.31,125.82000000000001,127.3,128.94,136.54,18.78,18.73,18.68,18.61,18.54,18.45,18.39,18.35,18.43,N/A,N/A -2012,2,3,12,30,101740,100550,99400,96.12,0.7000000000000001,5.22,6.44,7.04,7.79,8.540000000000001,9.31,9.53,9.63,9.89,123.84,124.83,126.02,128.08,133.71,141.46,149.03,155.64000000000001,161.48,18.73,18.64,18.580000000000002,18.56,18.71,18.95,19.07,19.150000000000002,19.1,N/A,N/A -2012,2,3,13,30,101750,100560,99410,95.11,0,4.23,5.79,6.45,6.99,7.75,8.67,9.13,9.46,9.82,119.63,121.57000000000001,123.25,125.42,134.15,146.72,150.93,153.14000000000001,155.1,18.98,19.12,19.17,19.23,19.26,19.26,19.23,19.18,19.02,N/A,N/A -2012,2,3,14,30,101780,100590,99440,94.4,0,4.41,5.91,6.62,7.41,8.26,9.17,9.85,10.43,11.23,125.29,127.52,129.38,131.77,133.66,135.28,139.62,144.27,155.04,19.14,19.19,19.13,18.97,18.7,18.37,18.25,18.19,19.06,N/A,N/A -2012,2,3,15,30,101790,100600,99450,96.19,0,5.16,6.640000000000001,7.390000000000001,8.2,8.77,9.19,9.35,9.450000000000001,9.5,117.41,118.82000000000001,120.54,123.52,130.04,138.26,142.19,145.1,149.07,18.740000000000002,18.7,18.6,18.400000000000002,18.56,18.89,19.150000000000002,19.36,19.32,N/A,N/A -2012,2,3,16,30,101770,100580,99440,95.29,0,6.140000000000001,7.65,8.38,9.16,9.85,10.46,10.63,10.69,10.74,114.59,116.89,119.8,124.78,132.43,141.37,143.95000000000002,145.06,146.73,18.94,18.95,18.97,19.02,19.400000000000002,19.92,19.990000000000002,19.98,19.87,N/A,N/A -2012,2,3,17,30,101750,100560,99420,94.5,0,5.92,7.6000000000000005,8.41,9.34,10,10.47,10.290000000000001,10.02,9.82,117.16,118.83,120.52,123.47,129,136.08,141.3,145.44,149.29,19.16,19.18,19.2,19.28,19.45,19.67,19.73,19.76,19.76,N/A,N/A -2012,2,3,18,30,101730,100550,99400,95.71000000000001,0,5.83,7.23,7.890000000000001,8.63,9.32,9.96,10.44,10.85,11.19,116.46000000000001,117.69,118.78,120.41,123.75,128.04,136.21,144.25,149.31,18.94,18.92,18.92,18.94,19,19.080000000000002,19.07,19.080000000000002,19.81,N/A,N/A -2012,2,3,19,30,101740,100550,99410,95.7,0,6.2700000000000005,7.65,8.290000000000001,8.98,9.67,10.36,10.64,10.8,10.97,112.67,113.9,115.01,116.63,118.64,120.9,128.75,136.86,143.8,19.02,18.96,18.92,18.900000000000002,18.900000000000002,18.94,19.14,19.35,19.38,N/A,N/A -2012,2,3,20,30,101700,100510,99370,95.05,0,6.63,8.16,8.88,9.66,10.34,10.96,11.290000000000001,11.53,11.42,114.54,115.89,117.21000000000001,119.17,121.93,125.14,129.99,134.7,140.4,19.12,19.14,19.16,19.22,19.32,19.43,19.55,19.66,19.64,N/A,N/A -2012,2,3,21,30,101690,100500,99360,93.92,0,6.99,8.58,9.34,10.200000000000001,10.86,11.370000000000001,11.290000000000001,11.09,10.85,118.89,120.37,121.88,124.33,128.19,132.86,137.01,140.53,142.57,19.26,19.34,19.42,19.57,19.830000000000002,20.16,20.31,20.41,20.240000000000002,N/A,N/A -2012,2,3,22,30,101670,100480,99340,94.88,0,6.63,8.120000000000001,8.81,9.58,10.44,11.370000000000001,11.77,12.040000000000001,12.01,114.3,115.4,116.33,117.62,119.14,120.81,127.18,133.6,139.89000000000001,18.97,18.96,18.94,18.94,18.97,19.01,19.27,19.52,19.68,N/A,N/A -2012,2,3,23,30,101660,100470,99330,94.36,0,6.88,8.55,9.38,10.33,11.32,12.32,12.35,12.21,11.9,115.41,116.83,117.93,119.33,121.44,124.01,131.8,139.4,143.86,19.05,19.080000000000002,19.1,19.14,19.25,19.400000000000002,19.82,20.240000000000002,20.38,N/A,N/A -2012,2,4,0,30,101650,100470,99320,93.10000000000001,0,7.71,9.5,10.32,11.22,12.09,12.91,13.33,13.63,12.97,120.81,122.63,124.09,126.13000000000001,128.65,131.43,136.70000000000002,142,149.15,19.35,19.39,19.39,19.41,19.45,19.51,19.79,20.09,20.53,N/A,N/A -2012,2,4,1,30,101660,100480,99330,92.57000000000001,0,7.87,9.8,10.66,11.55,12.31,12.99,13.46,13.84,13.68,125.38000000000001,126.95,128.28,130.09,132.44,135.1,139.42000000000002,143.74,152.22,19.45,19.55,19.57,19.61,19.63,19.650000000000002,19.59,19.51,19.64,N/A,N/A -2012,2,4,2,30,101690,100500,99360,92.60000000000001,0,7.43,9.27,10.08,10.86,11.49,12.02,12.15,12.17,11.23,136.44,137.24,138.1,139.6,142.32,145.79,150.08,154.12,156.52,19.45,19.5,19.47,19.41,19.36,19.31,19.37,19.44,19.44,N/A,N/A -2012,2,4,3,30,101690,100500,99360,92.24,0,8.28,10.27,11.09,11.8,12.280000000000001,12.64,12.790000000000001,12.88,12.73,148.55,149.09,149.22,149.02,149.12,149.38,150.85,152.43,156.43,19.52,19.61,19.62,19.59,19.55,19.5,19.43,19.36,19.22,N/A,N/A -2012,2,4,4,30,101700,100520,99370,92.38,0,6.49,8.14,8.78,9.31,9.790000000000001,10.25,10.6,10.9,11.4,142.61,142.52,142.33,141.87,141.94,142.32,143.94,145.91,156.20000000000002,19.52,19.62,19.61,19.54,19.47,19.39,19.330000000000002,19.29,19.17,N/A,N/A -2012,2,4,5,30,101690,100510,99360,92.60000000000001,0,6.18,8.23,9.13,9.91,10.58,11.18,11.55,11.84,11.55,124.53,127.08,129.44,132.78,136.83,141.22,146.02,150.57,161.17000000000002,19.490000000000002,19.62,19.6,19.51,19.41,19.31,19.21,19.13,18.97,N/A,N/A -2012,2,4,6,30,101700,100510,99360,94.36,0,5.79,7.640000000000001,8.5,9.28,9.88,10.370000000000001,10.58,10.71,10.77,137.70000000000002,141.38,144.25,147.83,151.59,155.38,159.05,162.33,167.06,19.26,19.26,19.2,19.080000000000002,18.92,18.75,18.7,18.73,19.81,N/A,N/A -2012,2,4,7,30,101700,100510,99360,95.14,0.4,4.75,6.25,7.0200000000000005,7.9,8.870000000000001,9.93,10.32,10.53,10.55,142.16,143.05,144.04,145.72,148.5,152,159.39000000000001,166.79,172.86,19.12,19.11,19.07,19.01,18.72,18.330000000000002,18.76,19.330000000000002,20.71,N/A,N/A -2012,2,4,8,30,101710,100520,99380,95.47,0.4,4.8100000000000005,6.36,7.22,8.3,9.38,10.47,10.85,10.99,10.450000000000001,144.67000000000002,146.46,148.26,151.20000000000002,154.42000000000002,157.87,162.89000000000001,167.66,172.29,19.04,19.080000000000002,19.06,19,18.77,18.46,18.66,18.990000000000002,20.42,N/A,N/A -2012,2,4,9,30,101730,100540,99390,95.26,0.4,5.01,6.7,7.54,8.42,9.22,9.97,10.02,9.950000000000001,10.07,154.62,158.49,161.6,165.65,169.94,174.37,176.27,177.56,179.71,19.080000000000002,18.94,18.72,18.36,17.94,17.490000000000002,18.88,20.35,21.240000000000002,N/A,N/A -2012,2,4,10,30,101730,100540,99390,95.94,0.4,4.04,5.92,6.99,8.13,8.92,9.46,9.5,9.42,9.33,162.65,165.27,167.32,169.84,172.62,175.44,178.38,180.99,183.29,18.96,18.75,18.57,18.32,18.21,18.150000000000002,19.3,20.580000000000002,20.78,N/A,N/A -2012,2,4,11,30,101750,100560,99420,96.57000000000001,0,3.52,5.33,6.4,7.55,8.26,8.65,8.66,8.61,8.6,166.62,169.42000000000002,172.51,177.6,180.96,183.06,183.92000000000002,184.43,184.36,18.84,18.73,18.61,18.46,18.43,18.46,19.830000000000002,21.27,20.91,N/A,N/A -2012,2,4,12,30,101770,100580,99430,97.16,0.7000000000000001,3.6,5.26,6.140000000000001,6.890000000000001,7.49,7.97,8.290000000000001,8.56,8.83,175.91,182.21,186.19,189.32,191.99,194.32,195.24,195.84,196.87,18.7,18.43,18.03,17.31,17.82,18.95,19.86,20.61,20.8,N/A,N/A -2012,2,4,13,30,101820,100630,99470,97.64,0,0.51,1.29,1.8800000000000001,2.36,2.7600000000000002,3.09,3.5300000000000002,4.0200000000000005,5.58,191.85,179.20000000000002,173.23,179.83,185.20000000000002,189.6,193.17000000000002,196.56,203.51,18.75,18.68,18.580000000000002,18.47,18.35,18.23,18.14,18.080000000000002,18.67,N/A,N/A -2012,2,4,14,30,101900,100710,99550,98.32000000000001,0,1.12,1.48,1.52,1.54,1.6,1.67,1.82,1.98,2.46,290.03000000000003,281.81,277.2,273.75,270.73,267.94,262.21,255.98000000000002,243.31,18.61,18.580000000000002,18.54,18.47,18.39,18.31,18.240000000000002,18.18,18.07,N/A,N/A -2012,2,4,15,30,101940,100740,99590,98.87,0,0.8,0.86,0.7000000000000001,0.49,0.27,0.13,0.26,0.58,1.1,86.62,84.28,85.25,88.57000000000001,127.4,159.36,184.70000000000002,233.4,237.5,18.5,18.45,18.41,18.38,18.330000000000002,18.28,18.240000000000002,18.2,18.06,N/A,N/A -2012,2,4,16,30,101950,100750,99600,98.73,0,0.8,1.1300000000000001,1.28,1.56,1.81,2.0300000000000002,2.11,2.17,2.23,17.44,342.75,324.53000000000003,312.3,303.64,297.47,294.64,292.61,287.88,18.59,18.650000000000002,18.650000000000002,18.63,18.59,18.53,18.44,18.35,18.17,N/A,N/A -2012,2,4,17,30,101940,100750,99590,99.01,0,1.07,1.44,1.46,1.44,1.3800000000000001,1.3,1.27,1.24,1.21,33.3,21.28,13.34,5.5600000000000005,356.34000000000003,347.21,342.89,339.89,334.97,18.6,18.57,18.55,18.51,18.46,18.400000000000002,18.32,18.23,18.06,N/A,N/A -2012,2,4,18,30,101960,100760,99610,99.31,0,2.19,2.73,2.83,2.69,2.62,2.58,2.3000000000000003,2.04,1.6300000000000001,21.69,15.56,11.93,9.3,7.54,6.23,3.46,0.9,352.42,18.5,18.43,18.39,18.34,18.26,18.18,18.12,18.06,17.96,N/A,N/A -2012,2,4,19,30,101960,100760,99610,99.32000000000001,0,3.1,3.5100000000000002,3.67,3.7800000000000002,3.74,3.63,3.49,3.37,3.0500000000000003,14.32,14.6,14.31,13.44,12.530000000000001,11.66,11.02,10.450000000000001,8.120000000000001,18.42,18.26,18.26,18.330000000000002,18.28,18.18,18.080000000000002,18,17.85,N/A,N/A -2012,2,4,20,30,101930,100740,99580,99.33,0,2.4,3.0500000000000003,3.35,3.49,3.54,3.56,3.48,3.39,3.22,26.43,26.05,25.12,23.35,21.46,19.59,17.63,15.85,11.65,18.14,18.39,18.46,18.38,18.3,18.23,18.14,18.06,17.87,N/A,N/A -2012,2,4,21,30,101900,100710,99560,99.35000000000001,0,2.34,3.06,3.37,3.45,3.49,3.52,3.54,3.56,3.6,53.480000000000004,50.74,48.04,44.43,40.37,36.25,32.05,28.2,20.76,17.82,18.48,18.72,18.67,18.63,18.61,18.56,18.5,18.35,N/A,N/A -2012,2,4,22,30,101890,100690,99540,99.24000000000001,0,2.2600000000000002,2.7600000000000002,2.91,2.84,2.81,2.8000000000000003,2.8000000000000003,2.82,2.85,92.03,80.57000000000001,73.03,66.85,60.29,53.79,47,40.78,28.76,17.21,18.26,18.69,18.7,18.71,18.73,18.72,18.71,18.61,N/A,N/A -2012,2,4,23,30,101920,100720,99560,99.21000000000001,0,0.21,0.56,0.93,1.4000000000000001,1.83,2.19,2.52,2.82,3.33,44.12,42.54,38.15,20.26,8.43,1.24,356.81,353.06,348.23,17.02,16.84,17.05,17.66,17.94,18.06,18.03,17.97,17.71,N/A,N/A -2012,2,5,0,30,101970,100770,99600,98.93,0,4.26,5.25,5.75,6.21,6.5600000000000005,6.8500000000000005,7.04,7.21,7.3500000000000005,322.79,327.29,329.65000000000003,331.7,333.32,334.66,335.88,336.98,339.08,17.42,17.38,17.37,17.32,17.240000000000002,17.13,16.990000000000002,16.85,16.53,N/A,N/A -2012,2,5,1,30,102020,100810,99650,82.58,0,8.81,9.52,9.66,9.71,9.72,9.71,9.69,9.66,9.61,338.57,338.92,339.17,339.43,339.7,339.97,340.32,340.68,341.84000000000003,17.19,16.84,16.66,16.46,16.27,16.09,15.89,15.71,15.34,N/A,N/A -2012,2,5,2,30,102080,100880,99700,80.68,0,9.26,10.03,10.19,10.25,10.28,10.28,10.26,10.24,10.17,346.48,346.73,346.87,347.02,347.17,347.32,347.51,347.69,348.18,16.740000000000002,16.35,16.16,15.96,15.76,15.58,15.38,15.19,14.81,N/A,N/A -2012,2,5,3,30,102120,100910,99730,78.88,0,9.34,10.1,10.27,10.34,10.38,10.39,10.39,10.370000000000001,10.33,354.47,354.85,355.06,355.28000000000003,355.5,355.71,355.95,356.17,356.72,16.41,16,15.8,15.6,15.4,15.21,15.01,14.82,14.44,N/A,N/A -2012,2,5,4,30,102130,100920,99740,76.47,0,9.15,9.9,10.06,10.13,10.17,10.19,10.200000000000001,10.200000000000001,10.19,4.0600000000000005,4.15,4.21,4.26,4.33,4.4,4.49,4.59,4.87,16.11,15.68,15.47,15.27,15.07,14.89,14.69,14.5,14.11,N/A,N/A -2012,2,5,5,30,102130,100910,99740,74.07000000000001,0,8.43,9.1,9.25,9.33,9.38,9.41,9.43,9.450000000000001,9.48,7.51,7.73,7.86,7.98,8.1,8.22,8.370000000000001,8.5,8.84,16.06,15.63,15.43,15.23,15.030000000000001,14.85,14.65,14.46,14.07,N/A,N/A -2012,2,5,6,30,102170,100960,99790,73.51,0,8.370000000000001,9.05,9.21,9.290000000000001,9.33,9.36,9.370000000000001,9.38,9.38,358.57,358.81,358.99,359.18,359.35,359.52,359.69,359.86,0.24,16.15,15.73,15.530000000000001,15.33,15.13,14.94,14.73,14.540000000000001,14.15,N/A,N/A -2012,2,5,7,30,102210,101000,99820,74.22,0,8.36,9,9.14,9.21,9.24,9.27,9.27,9.26,9.24,356.79,356.89,356.98,357.09000000000003,357.2,357.3,357.42,357.53000000000003,357.78000000000003,15.81,15.370000000000001,15.17,14.96,14.75,14.56,14.36,14.17,13.780000000000001,N/A,N/A -2012,2,5,8,30,102220,101000,99820,83.66,0,10.06,10.86,11.040000000000001,11.13,11.16,11.18,11.18,11.16,11.11,2.87,3.16,3.3200000000000003,3.46,3.61,3.74,3.89,4.03,4.34,14.43,13.89,13.66,13.450000000000001,13.24,13.05,12.85,12.65,12.27,N/A,N/A -2012,2,5,9,30,102210,100990,99810,82.05,0.4,10.13,10.950000000000001,11.14,11.24,11.290000000000001,11.33,11.35,11.36,11.36,9.120000000000001,9.200000000000001,9.26,9.32,9.38,9.44,9.5,9.56,9.700000000000001,14.41,13.870000000000001,13.64,13.43,13.22,13.030000000000001,12.82,12.63,12.24,N/A,N/A -2012,2,5,10,30,102240,101020,99830,78.25,0,9.74,10.52,10.69,10.78,10.83,10.86,10.870000000000001,10.88,10.870000000000001,7.69,7.8500000000000005,7.96,8.06,8.17,8.27,8.38,8.49,8.72,14.33,13.790000000000001,13.57,13.35,13.14,12.950000000000001,12.74,12.55,12.16,N/A,N/A -2012,2,5,11,30,102300,101070,99880,73.63,0,10.02,10.790000000000001,10.96,11.040000000000001,11.07,11.09,11.09,11.09,11.06,0.48,0.8300000000000001,1.04,1.24,1.44,1.6300000000000001,1.83,2.0300000000000002,2.43,13.92,13.35,13.13,12.91,12.700000000000001,12.51,12.3,12.1,11.71,N/A,N/A -2012,2,5,12,30,102300,101070,99880,74.76,0,10.96,11.86,12.05,12.15,12.200000000000001,12.23,12.24,12.24,12.21,2.8000000000000003,3.0700000000000003,3.25,3.41,3.5700000000000003,3.71,3.86,4,4.28,13.31,12.700000000000001,12.46,12.24,12.02,11.82,11.61,11.42,11.03,N/A,N/A -2012,2,5,13,30,102330,101100,99900,72.05,0,11.51,12.46,12.67,12.76,12.81,12.83,12.83,12.82,12.77,8.68,8.89,9.01,9.120000000000001,9.23,9.33,9.44,9.55,9.790000000000001,12.73,12.08,11.83,11.61,11.39,11.200000000000001,10.99,10.8,10.41,N/A,N/A -2012,2,5,14,30,102390,101160,99960,73.54,0,10.08,10.83,11,11.08,11.13,11.16,11.17,11.17,11.16,7.05,6.94,6.88,6.82,6.75,6.7,6.63,6.57,6.45,12.5,11.870000000000001,11.620000000000001,11.4,11.18,10.99,10.78,10.59,10.19,N/A,N/A -2012,2,5,15,30,102410,101180,99980,71.28,0,11.15,12.05,12.26,12.370000000000001,12.43,12.47,12.48,12.49,12.49,8.38,8.48,8.56,8.63,8.700000000000001,8.76,8.83,8.9,9.05,12.11,11.43,11.18,10.950000000000001,10.73,10.53,10.32,10.120000000000001,9.73,N/A,N/A -2012,2,5,16,30,102420,101190,99980,72.48,0,10.05,10.76,10.9,10.950000000000001,10.97,10.97,10.950000000000001,10.93,10.86,3.06,3.38,3.5500000000000003,3.72,3.88,4.0200000000000005,4.19,4.3500000000000005,4.7,11.83,11.17,10.92,10.700000000000001,10.48,10.28,10.08,9.88,9.5,N/A,N/A -2012,2,5,17,30,102410,101180,99970,73.74,0,9.84,10.55,10.69,10.75,10.790000000000001,10.8,10.8,10.790000000000001,10.76,2.92,3.27,3.46,3.63,3.8000000000000003,3.95,4.12,4.2700000000000005,4.61,11.51,10.84,10.59,10.36,10.14,9.94,9.74,9.540000000000001,9.15,N/A,N/A -2012,2,5,18,30,102410,101180,99970,70.92,0,9.58,10.27,10.42,10.49,10.53,10.56,10.57,10.57,10.56,0.41000000000000003,0.5700000000000001,0.7000000000000001,0.8200000000000001,0.9400000000000001,1.05,1.16,1.27,1.51,11.67,11.01,10.76,10.540000000000001,10.32,10.120000000000001,9.91,9.72,9.32,N/A,N/A -2012,2,5,19,30,102430,101200,100000,67.17,0,8.55,9.15,9.290000000000001,9.370000000000001,9.41,9.450000000000001,9.46,9.48,9.49,359.81,359.95,0.16,0.33,0.49,0.63,0.76,0.9,1.16,12.120000000000001,11.51,11.27,11.05,10.83,10.64,10.43,10.23,9.84,N/A,N/A -2012,2,5,20,30,102360,101130,99940,64.04,0,8.66,9.31,9.47,9.56,9.620000000000001,9.67,9.700000000000001,9.72,9.76,358.49,358.66,358.76,358.86,358.97,359.07,359.19,359.3,359.53000000000003,13.18,12.61,12.38,12.17,11.950000000000001,11.75,11.540000000000001,11.35,10.950000000000001,N/A,N/A -2012,2,5,21,30,102320,101100,99900,61.06,0,9.38,10.07,10.21,10.27,10.3,10.32,10.32,10.32,10.290000000000001,357.02,357.45,357.68,357.89,358.1,358.29,358.49,358.68,359.08,13.77,13.22,12.99,12.780000000000001,12.57,12.370000000000001,12.16,11.97,11.58,N/A,N/A -2012,2,5,22,30,102310,101090,99900,61,0,9.290000000000001,10.01,10.17,10.27,10.32,10.36,10.38,10.39,10.4,0.86,0.97,1.08,1.18,1.27,1.36,1.44,1.53,1.69,13.950000000000001,13.41,13.18,12.96,12.75,12.55,12.34,12.15,11.75,N/A,N/A -2012,2,5,23,30,102390,101160,99970,56.77,0,9.34,10.05,10.200000000000001,10.27,10.31,10.33,10.34,10.34,10.33,354.63,354.76,354.87,354.96,355.04,355.12,355.21,355.3,355.5,13.84,13.290000000000001,13.06,12.85,12.64,12.450000000000001,12.24,12.05,11.65,N/A,N/A -2012,2,6,0,30,102390,101170,99970,62.4,0,10.18,10.94,11.08,11.13,11.14,11.14,11.120000000000001,11.1,11.03,357.7,358.18,358.46,358.73,358.99,359.24,359.5,359.75,0.29,13.56,12.98,12.75,12.530000000000001,12.32,12.13,11.92,11.73,11.34,N/A,N/A -2012,2,6,1,30,102430,101200,100000,63.15,0,11.1,12.02,12.22,12.32,12.38,12.41,12.43,12.44,12.43,5.61,5.72,5.7700000000000005,5.8100000000000005,5.86,5.89,5.94,5.98,6.08,13.05,12.42,12.18,11.96,11.74,11.540000000000001,11.33,11.13,10.74,N/A,N/A -2012,2,6,2,30,102460,101230,100030,65.19,0,11.28,12.26,12.51,12.65,12.74,12.81,12.85,12.88,12.92,13.81,13.700000000000001,13.620000000000001,13.540000000000001,13.450000000000001,13.38,13.3,13.23,13.08,12.98,12.34,12.1,11.870000000000001,11.65,11.450000000000001,11.24,11.040000000000001,10.65,N/A,N/A -2012,2,6,3,30,102460,101230,100030,63.34,0,11.290000000000001,12.24,12.47,12.59,12.67,12.72,12.75,12.780000000000001,12.8,14.08,14.13,14.16,14.200000000000001,14.24,14.280000000000001,14.33,14.370000000000001,14.47,13.030000000000001,12.39,12.15,11.93,11.71,11.51,11.3,11.1,10.71,N/A,N/A -2012,2,6,4,30,102440,101210,100010,63.45,0,11.26,12.22,12.43,12.55,12.620000000000001,12.66,12.69,12.700000000000001,12.71,18.92,18.98,19.01,19.03,19.07,19.09,19.13,19.17,19.25,13,12.36,12.120000000000001,11.9,11.68,11.48,11.27,11.07,10.67,N/A,N/A -2012,2,6,5,30,102450,101220,100020,64.78,0,10.450000000000001,11.28,11.47,11.57,11.620000000000001,11.66,11.68,11.69,11.69,21.830000000000002,22.09,22.21,22.31,22.42,22.52,22.62,22.73,22.93,12.74,12.120000000000001,11.88,11.65,11.44,11.24,11.03,10.83,10.44,N/A,N/A -2012,2,6,6,30,102480,101240,100040,66.19,0,9.64,10.370000000000001,10.53,10.620000000000001,10.67,10.700000000000001,10.71,10.72,10.72,24.01,24.29,24.46,24.62,24.77,24.900000000000002,25.04,25.18,25.44,12.5,11.89,11.65,11.43,11.21,11.01,10.8,10.61,10.21,N/A,N/A -2012,2,6,7,30,102480,101240,100040,68.1,0,10.07,10.81,10.96,11.03,11.06,11.08,11.07,11.06,11.02,25.26,25.51,25.68,25.810000000000002,25.95,26.080000000000002,26.21,26.34,26.59,12.05,11.4,11.16,10.94,10.72,10.52,10.31,10.11,9.72,N/A,N/A -2012,2,6,8,30,102490,101260,100050,68.13,0,9.32,9.98,10.120000000000001,10.19,10.22,10.24,10.24,10.23,10.200000000000001,22.830000000000002,23.12,23.31,23.48,23.64,23.79,23.94,24.080000000000002,24.38,11.82,11.19,10.94,10.72,10.5,10.3,10.09,9.9,9.5,N/A,N/A -2012,2,6,9,30,102480,101240,100040,68.91,0,9.370000000000001,10.03,10.16,10.23,10.26,10.27,10.27,10.27,10.24,27.42,27.61,27.75,27.87,27.990000000000002,28.1,28.22,28.34,28.580000000000002,11.64,10.99,10.74,10.52,10.3,10.11,9.9,9.700000000000001,9.31,N/A,N/A -2012,2,6,10,30,102490,101250,100050,70.08,0,8.66,9.24,9.35,9.4,9.42,9.43,9.42,9.41,9.38,29.55,29.77,29.91,30.03,30.150000000000002,30.26,30.38,30.490000000000002,30.72,11.6,10.97,10.73,10.51,10.290000000000001,10.09,9.89,9.69,9.3,N/A,N/A -2012,2,6,11,30,102500,101260,100060,72.69,0,8.77,9.33,9.43,9.47,9.48,9.48,9.46,9.44,9.39,25.490000000000002,25.92,26.2,26.44,26.69,26.91,27.150000000000002,27.38,27.84,11.36,10.71,10.47,10.25,10.03,9.83,9.63,9.43,9.040000000000001,N/A,N/A -2012,2,6,12,30,102500,101260,100050,74.76,0,8.47,9,9.09,9.120000000000001,9.120000000000001,9.120000000000001,9.09,9.07,9.01,22.34,22.71,22.96,23.19,23.41,23.62,23.830000000000002,24.04,24.48,11.17,10.53,10.290000000000001,10.07,9.85,9.65,9.450000000000001,9.25,8.86,N/A,N/A -2012,2,6,13,30,102520,101280,100070,77.34,0,8.620000000000001,9.15,9.24,9.27,9.28,9.27,9.25,9.23,9.17,20.580000000000002,20.89,21.080000000000002,21.26,21.43,21.59,21.76,21.92,22.26,10.59,9.93,9.68,9.450000000000001,9.23,9.03,8.82,8.63,8.24,N/A,N/A -2012,2,6,14,30,102540,101290,100090,77.36,0,8.64,9.18,9.28,9.31,9.32,9.32,9.31,9.290000000000001,9.23,20.8,21.07,21.240000000000002,21.400000000000002,21.54,21.68,21.830000000000002,21.97,22.27,10.49,9.82,9.57,9.35,9.13,8.93,8.72,8.53,8.14,N/A,N/A -2012,2,6,15,30,102540,101300,100090,76.38,0,7.640000000000001,8.08,8.16,8.19,8.19,8.19,8.18,8.16,8.11,22.26,22.43,22.54,22.650000000000002,22.76,22.86,22.97,23.080000000000002,23.31,10.49,9.85,9.61,9.39,9.17,8.98,8.77,8.58,8.2,N/A,N/A -2012,2,6,16,30,102530,101290,100080,75.64,0,6.9,7.28,7.3500000000000005,7.37,7.38,7.38,7.36,7.3500000000000005,7.32,20.41,20.5,20.55,20.61,20.67,20.72,20.79,20.85,21.01,10.74,10.13,9.89,9.68,9.46,9.27,9.06,8.870000000000001,8.48,N/A,N/A -2012,2,6,17,30,102490,101250,100040,72.99,0,6.3100000000000005,6.66,6.72,6.74,6.76,6.76,6.76,6.75,6.73,19.03,18.92,18.82,18.740000000000002,18.650000000000002,18.57,18.490000000000002,18.400000000000002,18.25,11.15,10.57,10.34,10.120000000000001,9.91,9.72,9.52,9.33,8.950000000000001,N/A,N/A -2012,2,6,18,30,102440,101210,100010,68.49,0,5.21,5.5,5.5600000000000005,5.6000000000000005,5.63,5.65,5.67,5.69,5.71,21.3,21.21,21.12,21.03,20.94,20.86,20.76,20.68,20.5,11.99,11.46,11.24,11.03,10.82,10.63,10.43,10.24,9.85,N/A,N/A -2012,2,6,19,30,102410,101170,99980,63.49,0,3.7,3.89,3.93,3.96,3.99,4.01,4.03,4.05,4.1,27.44,26.25,25.490000000000002,24.78,24.09,23.47,22.79,22.150000000000002,20.85,12.88,12.41,12.200000000000001,12,11.8,11.61,11.41,11.22,10.83,N/A,N/A -2012,2,6,20,30,102350,101120,99930,62.67,0,2.05,2.08,2.06,2.04,2.0300000000000002,2.0100000000000002,1.99,1.98,1.96,61.08,58.42,56.59,54.82,52.97,51.27,49.19,47.2,42.74,13.48,13.06,12.86,12.66,12.46,12.280000000000001,12.08,11.89,11.52,N/A,N/A -2012,2,6,21,30,102300,101080,99890,63.5,0,1.83,1.8,1.75,1.69,1.6400000000000001,1.58,1.52,1.47,1.36,91.5,89.55,88.14,86.65,84.9,83.28,80.83,78.32000000000001,70.94,13.950000000000001,13.540000000000001,13.34,13.15,12.950000000000001,12.77,12.58,12.39,12.030000000000001,N/A,N/A -2012,2,6,22,30,102260,101040,99860,61.86,0,0.5700000000000001,0.49,0.44,0.4,0.36,0.33,0.33,0.34,0.43,95.43,87.60000000000001,81.3,73.95,63.51,53.63,38.85,25.66,1.42,14.38,13.98,13.8,13.6,13.41,13.23,13.02,12.84,12.46,N/A,N/A -2012,2,6,23,30,102240,101020,99840,62.410000000000004,0,0.38,0.33,0.3,0.27,0.27,0.27,0.29,0.32,0.43,85.31,72.9,63.42,52.42,39.49,27.02,14.58,3.5300000000000002,347.17,14.700000000000001,14.32,14.13,13.94,13.74,13.56,13.36,13.17,12.790000000000001,N/A,N/A -2012,2,7,0,30,102240,101020,99840,63,0,0.9500000000000001,0.9,0.86,0.81,0.77,0.73,0.6900000000000001,0.66,0.6,93.74,90.17,87.76,85.13,81.88,78.83,74.11,69.23,54.480000000000004,14.950000000000001,14.58,14.39,14.200000000000001,14,13.82,13.620000000000001,13.43,13.06,N/A,N/A -2012,2,7,1,30,102220,101010,99820,62.690000000000005,0,0.84,0.85,0.85,0.85,0.86,0.87,0.89,0.91,1.01,55.980000000000004,50.81,47.51,44.17,40.68,37.4,33.55,29.87,21.7,15.21,14.85,14.66,14.47,14.27,14.09,13.9,13.71,13.34,N/A,N/A -2012,2,7,2,30,102230,101010,99830,58.5,0,2.36,2.5500000000000003,2.62,2.67,2.73,2.7800000000000002,2.83,2.88,2.99,21.42,22.19,22.650000000000002,23.09,23.52,23.91,24.35,24.76,25.69,15.51,15.14,14.950000000000001,14.76,14.56,14.370000000000001,14.17,13.98,13.59,N/A,N/A -2012,2,7,3,30,102240,101030,99840,64.35,0,3.86,4.05,4.09,4.1,4.11,4.11,4.11,4.11,4.1,37.18,37.7,38.04,38.36,38.67,38.94,39.230000000000004,39.49,40.03,15.540000000000001,15.15,14.96,14.76,14.56,14.370000000000001,14.16,13.98,13.58,N/A,N/A -2012,2,7,4,30,102240,101020,99840,61.76,0,5.3,5.53,5.54,5.5200000000000005,5.49,5.45,5.41,5.37,5.2700000000000005,33.59,34.12,34.45,34.77,35.09,35.38,35.71,36.02,36.67,15.290000000000001,14.88,14.68,14.49,14.280000000000001,14.1,13.89,13.700000000000001,13.32,N/A,N/A -2012,2,7,5,30,102220,101000,99810,63.190000000000005,0,5.04,5.29,5.32,5.32,5.3100000000000005,5.29,5.2700000000000005,5.25,5.2,32.39,33.14,33.61,34.05,34.49,34.88,35.33,35.75,36.62,15.09,14.67,14.47,14.27,14.07,13.89,13.68,13.49,13.11,N/A,N/A -2012,2,7,6,30,102240,101020,99830,67.86,0,5.0600000000000005,5.3100000000000005,5.34,5.34,5.33,5.32,5.29,5.2700000000000005,5.22,41.5,42.22,42.660000000000004,43.06,43.46,43.82,44.22,44.59,45.38,14.92,14.51,14.31,14.11,13.91,13.73,13.52,13.33,12.950000000000001,N/A,N/A -2012,2,7,7,30,102250,101030,99850,71.48,0,4.9,5.15,5.2,5.22,5.22,5.22,5.21,5.2,5.17,47.92,48.6,49.03,49.43,49.82,50.17,50.54,50.9,51.660000000000004,14.91,14.49,14.3,14.1,13.9,13.71,13.51,13.32,12.93,N/A,N/A -2012,2,7,8,30,102230,101010,99830,72.23,0,4.83,5.09,5.14,5.15,5.16,5.17,5.16,5.16,5.14,48.370000000000005,49.22,49.730000000000004,50.21,50.67,51.08,51.53,51.94,52.81,15.06,14.65,14.46,14.26,14.06,13.88,13.67,13.48,13.09,N/A,N/A -2012,2,7,9,30,102220,101000,99820,74.67,0,4.79,5.04,5.07,5.08,5.08,5.07,5.05,5.04,5,52.79,53.53,53.93,54.31,54.68,55.02,55.38,55.72,56.46,15.030000000000001,14.63,14.43,14.23,14.030000000000001,13.84,13.64,13.450000000000001,13.06,N/A,N/A -2012,2,7,10,30,102210,100990,99810,77.47,0,5.18,5.47,5.5200000000000005,5.54,5.54,5.54,5.54,5.53,5.5,62.21,62.99,63.440000000000005,63.870000000000005,64.27,64.64,65.04,65.41,66.21000000000001,14.98,14.57,14.370000000000001,14.17,13.97,13.780000000000001,13.58,13.39,13,N/A,N/A -2012,2,7,11,30,102220,101000,99820,76.09,0,4.88,5.14,5.19,5.21,5.22,5.22,5.22,5.21,5.19,63.95,64.33,64.58,64.81,65.02,65.21000000000001,65.42,65.61,66.01,15.07,14.66,14.46,14.26,14.06,13.88,13.67,13.48,13.09,N/A,N/A -2012,2,7,12,30,102220,101000,99820,76.12,0,5.26,5.5600000000000005,5.61,5.63,5.64,5.64,5.63,5.62,5.6000000000000005,65.98,66.24,66.38,66.51,66.64,66.75,66.88,67,67.24,15.120000000000001,14.71,14.52,14.31,14.11,13.93,13.72,13.530000000000001,13.14,N/A,N/A -2012,2,7,13,30,102240,101020,99840,74.49,0,4.99,5.26,5.3,5.32,5.32,5.3100000000000005,5.3,5.28,5.25,62.57,62.79,62.93,63.06,63.18,63.300000000000004,63.42,63.54,63.78,15.1,14.700000000000001,14.5,14.3,14.1,13.91,13.71,13.52,13.13,N/A,N/A -2012,2,7,14,30,102280,101060,99880,74.77,0,5.18,5.46,5.51,5.53,5.53,5.53,5.51,5.5,5.47,58.89,59.06,59.17,59.27,59.36,59.44,59.52,59.6,59.76,15.1,14.69,14.5,14.3,14.09,13.91,13.700000000000001,13.51,13.120000000000001,N/A,N/A -2012,2,7,15,30,102290,101070,99890,78.29,0,5.49,5.8,5.8500000000000005,5.86,5.87,5.86,5.8500000000000005,5.83,5.79,50.28,50.620000000000005,50.84,51.04,51.24,51.42,51.61,51.79,52.160000000000004,15.01,14.59,14.39,14.19,13.99,13.8,13.6,13.41,13.02,N/A,N/A -2012,2,7,16,30,102290,101070,99880,78.76,0,5.53,5.8,5.83,5.82,5.8,5.78,5.75,5.72,5.64,47.02,47.65,48.050000000000004,48.43,48.81,49.17,49.58,49.97,50.84,14.65,14.22,14.02,13.82,13.620000000000001,13.43,13.23,13.040000000000001,12.66,N/A,N/A -2012,2,7,17,30,102290,101070,99880,77.28,0,5.41,5.67,5.71,5.71,5.7,5.68,5.65,5.62,5.55,48.64,49.09,49.39,49.67,49.96,50.21,50.51,50.79,51.42,14.56,14.13,13.93,13.73,13.530000000000001,13.34,13.14,12.950000000000001,12.57,N/A,N/A -2012,2,7,18,30,102280,101060,99870,77.23,0,5.58,5.8500000000000005,5.88,5.87,5.8500000000000005,5.83,5.79,5.75,5.66,38.71,39.17,39.46,39.74,40.03,40.29,40.59,40.88,41.550000000000004,14.46,14.02,13.82,13.620000000000001,13.42,13.24,13.040000000000001,12.85,12.47,N/A,N/A -2012,2,7,19,30,102300,101080,99890,75.76,0,4.41,4.58,4.59,4.58,4.5600000000000005,4.54,4.5,4.46,4.38,37.12,37.47,37.71,37.93,38.160000000000004,38.37,38.61,38.84,39.36,14.43,14.01,13.81,13.620000000000001,13.42,13.23,13.040000000000001,12.85,12.47,N/A,N/A -2012,2,7,20,30,102280,101060,99870,70.22,0,4.09,4.2700000000000005,4.29,4.29,4.28,4.2700000000000005,4.26,4.24,4.2,30.29,30.38,30.46,30.52,30.580000000000002,30.63,30.69,30.740000000000002,30.830000000000002,14.55,14.14,13.94,13.74,13.540000000000001,13.36,13.15,12.97,12.58,N/A,N/A -2012,2,7,21,30,102270,101050,99860,65.13,0,4.53,4.73,4.76,4.76,4.75,4.75,4.73,4.71,4.67,25.04,25.16,25.21,25.27,25.32,25.36,25.41,25.46,25.57,14.77,14.36,14.16,13.96,13.76,13.58,13.370000000000001,13.19,12.8,N/A,N/A -2012,2,7,22,30,102280,101060,99880,65.43,0,5.16,5.39,5.42,5.41,5.39,5.37,5.34,5.3100000000000005,5.23,8.93,9.17,9.34,9.5,9.66,9.790000000000001,9.96,10.11,10.46,14.73,14.31,14.120000000000001,13.92,13.72,13.530000000000001,13.33,13.14,12.76,N/A,N/A -2012,2,7,23,30,102310,101090,99910,63.940000000000005,0,5.12,5.38,5.41,5.42,5.42,5.41,5.39,5.37,5.33,10.28,10.42,10.52,10.6,10.67,10.74,10.82,10.89,11.05,14.77,14.35,14.16,13.96,13.76,13.57,13.370000000000001,13.19,12.8,N/A,N/A -2012,2,8,0,30,102350,101130,99940,67.59,0,5.24,5.48,5.5,5.49,5.47,5.44,5.4,5.36,5.26,10.620000000000001,10.950000000000001,11.1,11.24,11.39,11.53,11.68,11.85,12.26,14.55,14.13,13.93,13.73,13.540000000000001,13.35,13.15,12.97,12.59,N/A,N/A -2012,2,8,1,30,102390,101170,99980,69.18,0,6.34,6.7,6.76,6.78,6.7700000000000005,6.76,6.73,6.71,6.640000000000001,20.830000000000002,21.03,21.13,21.23,21.330000000000002,21.42,21.52,21.62,21.89,14.42,13.98,13.780000000000001,13.58,13.370000000000001,13.19,12.99,12.81,12.43,N/A,N/A -2012,2,8,2,30,102440,101220,100030,67.2,0,7.49,7.98,8.08,8.120000000000001,8.13,8.14,8.13,8.120000000000001,8.09,19.98,20.27,20.44,20.59,20.76,20.92,21.11,21.29,21.75,14.51,14.05,13.85,13.65,13.450000000000001,13.26,13.06,12.88,12.5,N/A,N/A -2012,2,8,3,30,102490,101260,100070,70.65,0,7.8,8.34,8.46,8.51,8.540000000000001,8.55,8.55,8.55,8.53,17.66,17.830000000000002,17.98,18.11,18.240000000000002,18.36,18.5,18.63,18.93,14.27,13.790000000000001,13.58,13.370000000000001,13.17,12.98,12.780000000000001,12.6,12.22,N/A,N/A -2012,2,8,4,30,102490,101260,100070,73.39,0,8.18,8.73,8.84,8.88,8.89,8.89,8.870000000000001,8.85,8.8,20.89,20.97,21.02,21.06,21.11,21.150000000000002,21.19,21.240000000000002,21.34,14.1,13.6,13.39,13.19,12.99,12.8,12.6,12.42,12.040000000000001,N/A,N/A -2012,2,8,5,30,102520,101290,100100,76.25,0,8.07,8.61,8.72,8.76,8.78,8.790000000000001,8.78,8.77,8.75,22.09,22.13,22.16,22.19,22.21,22.23,22.26,22.29,22.36,13.84,13.34,13.120000000000001,12.92,12.72,12.530000000000001,12.33,12.14,11.77,N/A,N/A -2012,2,8,6,30,102570,101340,100150,78.8,0,8.57,9.17,9.290000000000001,9.34,9.36,9.370000000000001,9.36,9.36,9.34,18.91,19.05,19.12,19.2,19.28,19.35,19.43,19.51,19.72,13.56,13.030000000000001,12.82,12.61,12.41,12.22,12.02,11.84,11.47,N/A,N/A -2012,2,8,7,30,102620,101390,100190,76.24,0,8.78,9.41,9.55,9.61,9.64,9.67,9.67,9.67,9.67,23.2,23.39,23.51,23.63,23.740000000000002,23.85,23.97,24.09,24.38,13.47,12.94,12.72,12.51,12.3,12.120000000000001,11.92,11.73,11.35,N/A,N/A -2012,2,8,8,30,102630,101400,100210,76.19,0,8.74,9.370000000000001,9.51,9.57,9.6,9.620000000000001,9.63,9.63,9.64,23.54,23.77,23.900000000000002,24.02,24.150000000000002,24.27,24.41,24.560000000000002,24.89,13.36,12.82,12.6,12.39,12.19,12,11.8,11.61,11.23,N/A,N/A -2012,2,8,9,30,102650,101420,100220,76.22,0,8.93,9.59,9.74,9.81,9.85,9.88,9.89,9.9,9.9,20.87,21.080000000000002,21.23,21.37,21.51,21.64,21.79,21.93,22.25,13.3,12.76,12.530000000000001,12.32,12.11,11.92,11.71,11.53,11.14,N/A,N/A -2012,2,8,10,30,102680,101450,100250,75.8,0,9.17,9.86,10.02,10.11,10.16,10.19,10.21,10.23,10.25,19.46,19.68,19.81,19.94,20.07,20.2,20.35,20.48,20.81,12.99,12.42,12.19,11.98,11.77,11.58,11.38,11.19,10.8,N/A,N/A -2012,2,8,11,30,102730,101490,100290,73.57000000000001,0,9.26,9.96,10.13,10.22,10.27,10.31,10.34,10.36,10.4,23.01,23.22,23.36,23.51,23.650000000000002,23.79,23.95,24.1,24.48,12.92,12.36,12.13,11.92,11.71,11.53,11.32,11.14,10.76,N/A,N/A -2012,2,8,12,30,102760,101530,100330,71.31,0,9.78,10.53,10.71,10.790000000000001,10.85,10.88,10.9,10.91,10.93,24.84,25.060000000000002,25.19,25.32,25.46,25.580000000000002,25.72,25.86,26.16,12.71,12.120000000000001,11.89,11.68,11.47,11.290000000000001,11.09,10.9,10.53,N/A,N/A -2012,2,8,13,30,102780,101540,100340,73.42,0,10.07,10.84,11,11.08,11.120000000000001,11.15,11.15,11.15,11.14,25.68,25.88,26.01,26.13,26.25,26.35,26.48,26.6,26.86,12.34,11.73,11.49,11.28,11.07,10.88,10.68,10.5,10.13,N/A,N/A -2012,2,8,14,30,102820,101580,100370,73.49,0,9.16,9.82,9.96,10.03,10.06,10.08,10.09,10.09,10.09,30.16,30.42,30.580000000000002,30.71,30.86,30.98,31.13,31.26,31.57,12.19,11.6,11.36,11.15,10.950000000000001,10.76,10.56,10.370000000000001,10,N/A,N/A -2012,2,8,15,30,102820,101580,100380,70.73,0,9.05,9.700000000000001,9.85,9.92,9.97,9.99,10.01,10.03,10.040000000000001,30.64,30.89,31.060000000000002,31.21,31.37,31.5,31.66,31.810000000000002,32.14,12.290000000000001,11.700000000000001,11.47,11.26,11.05,10.870000000000001,10.66,10.48,10.1,N/A,N/A -2012,2,8,16,30,102800,101560,100360,65.64,0,8.93,9.6,9.76,9.85,9.9,9.94,9.97,10,10.040000000000001,24.97,25.13,25.23,25.330000000000002,25.43,25.52,25.63,25.73,25.97,12.73,12.16,11.94,11.72,11.51,11.32,11.120000000000001,10.93,10.55,N/A,N/A -2012,2,8,17,30,102760,101530,100330,57.46,0,8.51,9.18,9.36,9.46,9.53,9.59,9.63,9.66,9.72,26.94,26.85,26.79,26.73,26.68,26.62,26.57,26.52,26.42,13.780000000000001,13.26,13.05,12.84,12.63,12.44,12.23,12.040000000000001,11.65,N/A,N/A -2012,2,8,18,30,102740,101510,100320,53.71,0,7.58,8.2,8.370000000000001,8.47,8.55,8.61,8.66,8.700000000000001,8.77,29.26,28.93,28.72,28.52,28.32,28.150000000000002,27.96,27.79,27.44,14.700000000000001,14.25,14.05,13.84,13.64,13.450000000000001,13.24,13.05,12.66,N/A,N/A -2012,2,8,19,30,102710,101490,100300,52.61,0,6.72,7.25,7.4,7.5,7.57,7.62,7.67,7.71,7.7700000000000005,29.27,28.810000000000002,28.54,28.29,28.05,27.85,27.64,27.44,27.07,15.5,15.1,14.91,14.71,14.51,14.32,14.11,13.92,13.530000000000001,N/A,N/A -2012,2,8,20,30,102640,101420,100230,51.620000000000005,0,6.19,6.66,6.79,6.86,6.92,6.97,7,7.03,7.08,15.18,15.450000000000001,15.65,15.82,15.98,16.13,16.27,16.4,16.66,15.96,15.58,15.39,15.200000000000001,15,14.81,14.6,14.42,14.02,N/A,N/A -2012,2,8,21,30,102600,101380,100200,50.01,0,6.32,6.84,6.97,7.05,7.11,7.16,7.19,7.22,7.2700000000000005,11.02,11.39,11.63,11.84,12.030000000000001,12.200000000000001,12.370000000000001,12.530000000000001,12.84,16.41,16.06,15.870000000000001,15.68,15.48,15.290000000000001,15.09,14.9,14.51,N/A,N/A -2012,2,8,22,30,102570,101350,100170,50.68,0,6.74,7.3,7.44,7.5200000000000005,7.58,7.62,7.66,7.68,7.72,13.11,13.66,14.02,14.35,14.65,14.91,15.17,15.4,15.84,16.66,16.330000000000002,16.15,15.950000000000001,15.75,15.57,15.36,15.18,14.780000000000001,N/A,N/A -2012,2,8,23,30,102570,101350,100170,51.800000000000004,0,7.09,7.68,7.82,7.9,7.95,7.99,8.01,8.03,8.05,14.52,14.97,15.24,15.49,15.72,15.92,16.13,16.32,16.67,16.64,16.3,16.12,15.92,15.72,15.540000000000001,15.33,15.14,14.75,N/A,N/A -2012,2,9,0,30,102580,101370,100180,53.72,0,8.08,8.74,8.89,8.97,9.02,9.040000000000001,9.05,9.06,9.05,19.59,19.75,19.87,19.990000000000002,20.1,20.19,20.29,20.39,20.56,16.240000000000002,15.870000000000001,15.68,15.48,15.280000000000001,15.1,14.89,14.700000000000001,14.31,N/A,N/A -2012,2,9,1,30,102600,101380,100190,55.92,0,9.08,9.82,9.98,10.05,10.09,10.11,10.11,10.11,10.08,21.63,21.89,22.03,22.17,22.3,22.42,22.54,22.650000000000002,22.89,15.58,15.17,14.97,14.77,14.56,14.370000000000001,14.17,13.98,13.59,N/A,N/A -2012,2,9,2,30,102600,101380,100190,57.43,0,9.51,10.290000000000001,10.47,10.56,10.6,10.63,10.64,10.64,10.61,26.41,26.68,26.830000000000002,26.98,27.12,27.240000000000002,27.38,27.51,27.77,15.07,14.61,14.4,14.200000000000001,13.99,13.8,13.59,13.4,13.01,N/A,N/A -2012,2,9,3,30,102610,101390,100200,59.17,0,9,9.71,9.870000000000001,9.950000000000001,9.99,10.02,10.03,10.03,10.02,35.06,35.300000000000004,35.45,35.6,35.730000000000004,35.85,35.99,36.11,36.37,14.73,14.26,14.06,13.85,13.64,13.450000000000001,13.24,13.05,12.66,N/A,N/A -2012,2,9,4,30,102610,101390,100200,61.46,0,9.16,9.89,10.07,10.15,10.200000000000001,10.23,10.25,10.25,10.25,37.77,38.04,38.21,38.36,38.51,38.65,38.79,38.93,39.19,14.450000000000001,13.96,13.75,13.540000000000001,13.33,13.14,12.93,12.74,12.35,N/A,N/A -2012,2,9,5,30,102600,101370,100180,62.78,0,8.790000000000001,9.450000000000001,9.6,9.67,9.72,9.74,9.75,9.76,9.75,41.44,41.84,42.09,42.32,42.53,42.72,42.92,43.11,43.51,14.22,13.72,13.51,13.3,13.09,12.9,12.69,12.5,12.1,N/A,N/A -2012,2,9,6,30,102580,101360,100170,66.2,0,8.370000000000001,8.99,9.13,9.21,9.25,9.28,9.290000000000001,9.3,9.3,46.480000000000004,46.87,47.11,47.33,47.53,47.72,47.910000000000004,48.09,48.46,14.11,13.620000000000001,13.41,13.200000000000001,12.99,12.8,12.59,12.4,12.01,N/A,N/A -2012,2,9,7,30,102600,101370,100180,65.86,0,8.040000000000001,8.64,8.78,8.85,8.9,8.93,8.950000000000001,8.96,8.97,47.95,48.370000000000005,48.620000000000005,48.85,49.07,49.26,49.47,49.65,50.03,14.06,13.58,13.370000000000001,13.15,12.950000000000001,12.76,12.55,12.36,11.96,N/A,N/A -2012,2,9,8,30,102590,101360,100170,65.75,0,8.34,8.96,9.11,9.19,9.23,9.26,9.27,9.28,9.28,50.96,51.230000000000004,51.4,51.550000000000004,51.69,51.82,51.94,52.06,52.300000000000004,13.950000000000001,13.46,13.24,13.030000000000001,12.82,12.63,12.42,12.23,11.83,N/A,N/A -2012,2,9,9,30,102580,101350,100160,66.46000000000001,0,7.61,8.13,8.25,8.3,8.32,8.34,8.34,8.33,8.31,54.17,54.5,54.71,54.910000000000004,55.1,55.26,55.44,55.6,55.93,13.75,13.25,13.040000000000001,12.83,12.620000000000001,12.43,12.22,12.030000000000001,11.63,N/A,N/A -2012,2,9,10,30,102580,101350,100150,69.08,0,7.62,8.14,8.25,8.3,8.32,8.34,8.34,8.34,8.32,55.19,55.57,55.800000000000004,56.02,56.230000000000004,56.42,56.61,56.800000000000004,57.19,13.59,13.09,12.870000000000001,12.66,12.450000000000001,12.26,12.05,11.86,11.46,N/A,N/A -2012,2,9,11,30,102560,101330,100140,71.57000000000001,0,7.8,8.33,8.45,8.51,8.540000000000001,8.56,8.57,8.57,8.55,54.13,54.6,54.88,55.14,55.38,55.61,55.85,56.06,56.51,13.48,12.97,12.75,12.540000000000001,12.33,12.14,11.93,11.73,11.34,N/A,N/A -2012,2,9,12,30,102560,101330,100130,74.13,0,7.82,8.370000000000001,8.49,8.55,8.58,8.6,8.61,8.61,8.61,58.800000000000004,59.27,59.58,59.870000000000005,60.14,60.38,60.64,60.870000000000005,61.34,13.43,12.92,12.700000000000001,12.48,12.27,12.08,11.870000000000001,11.68,11.28,N/A,N/A -2012,2,9,13,30,102560,101330,100130,74.49,0,7.9,8.45,8.58,8.65,8.69,8.72,8.73,8.74,8.73,58.79,59.04,59.160000000000004,59.27,59.38,59.480000000000004,59.59,59.68,59.870000000000005,13.41,12.89,12.67,12.46,12.24,12.05,11.84,11.65,11.25,N/A,N/A -2012,2,9,14,30,102570,101340,100150,71.88,0,7.92,8.46,8.58,8.64,8.67,8.69,8.69,8.69,8.68,64.65,64.9,65.05,65.18,65.32000000000001,65.44,65.56,65.68,65.91,13.38,12.870000000000001,12.65,12.43,12.22,12.030000000000001,11.82,11.63,11.23,N/A,N/A -2012,2,9,15,30,102570,101340,100140,73.27,0,7.3,7.7700000000000005,7.86,7.91,7.930000000000001,7.94,7.94,7.94,7.92,63.2,63.57,63.81,64.03,64.23,64.41,64.6,64.78,65.14,13.31,12.8,12.59,12.38,12.17,11.97,11.76,11.57,11.18,N/A,N/A -2012,2,9,16,30,102560,101330,100130,75.65,0,7.23,7.68,7.78,7.82,7.84,7.8500000000000005,7.8500000000000005,7.84,7.82,63.690000000000005,64.22,64.5,64.77,65.02,65.26,65.5,65.72,66.18,13.25,12.74,12.52,12.31,12.1,11.91,11.700000000000001,11.5,11.11,N/A,N/A -2012,2,9,17,30,102530,101300,100110,76,0,6.57,6.96,7.04,7.08,7.1000000000000005,7.11,7.11,7.1000000000000005,7.09,67.34,67.71000000000001,67.97,68.22,68.46000000000001,68.67,68.89,69.10000000000001,69.52,13.34,12.85,12.64,12.43,12.21,12.030000000000001,11.82,11.620000000000001,11.23,N/A,N/A -2012,2,9,18,30,102480,101250,100050,75.88,0,6.43,6.8,6.87,6.9,6.92,6.92,6.92,6.92,6.890000000000001,65.52,65.95,66.17,66.37,66.57000000000001,66.74,66.94,67.11,67.48,13.39,12.9,12.68,12.47,12.26,12.07,11.86,11.67,11.28,N/A,N/A -2012,2,9,19,30,102470,101240,100050,75.22,0,5.53,5.83,5.89,5.91,5.93,5.93,5.93,5.92,5.91,70.71000000000001,71.17,71.43,71.67,71.9,72.12,72.34,72.55,72.99,13.540000000000001,13.07,12.86,12.65,12.450000000000001,12.26,12.05,11.86,11.47,N/A,N/A -2012,2,9,20,30,102410,101190,99990,74.59,0,4.86,5.1000000000000005,5.14,5.15,5.16,5.16,5.15,5.15,5.12,79.93,80.43,80.7,80.96000000000001,81.21000000000001,81.44,81.7,81.94,82.46000000000001,13.69,13.24,13.040000000000001,12.83,12.63,12.44,12.23,12.040000000000001,11.65,N/A,N/A -2012,2,9,21,30,102350,101130,99940,73.62,0,4.57,4.79,4.82,4.84,4.84,4.84,4.83,4.82,4.79,84.19,84.58,84.82000000000001,85.06,85.3,85.51,85.76,85.98,86.48,13.92,13.48,13.280000000000001,13.08,12.870000000000001,12.68,12.48,12.290000000000001,11.9,N/A,N/A -2012,2,9,22,30,102300,101080,99890,71.58,0,4.15,4.33,4.36,4.37,4.36,4.36,4.3500000000000005,4.34,4.3100000000000005,92.55,92.89,93.10000000000001,93.29,93.48,93.66,93.86,94.06,94.47,14.18,13.76,13.56,13.36,13.15,12.97,12.76,12.57,12.18,N/A,N/A -2012,2,9,23,30,102250,101030,99850,72.36,0,4.22,4.42,4.45,4.46,4.46,4.46,4.45,4.44,4.42,99.3,99.73,99.99000000000001,100.26,100.51,100.75,101.02,101.27,101.85000000000001,14.370000000000001,13.950000000000001,13.75,13.55,13.35,13.16,12.96,12.77,12.38,N/A,N/A -2012,2,10,0,30,102210,100990,99810,77.17,0,5.36,5.66,5.71,5.73,5.73,5.73,5.72,5.71,5.68,104.38,104.5,104.57000000000001,104.64,104.71000000000001,104.78,104.86,104.94,105.14,14.33,13.89,13.69,13.49,13.280000000000001,13.1,12.89,12.700000000000001,12.31,N/A,N/A -2012,2,10,1,30,102200,100980,99800,75.81,0.7000000000000001,4.5,4.7,4.73,4.73,4.72,4.71,4.69,4.67,4.62,112.46000000000001,112.82000000000001,113.07000000000001,113.31,113.54,113.76,114,114.23,114.75,14.35,13.93,13.73,13.52,13.33,13.14,12.94,12.75,12.36,N/A,N/A -2012,2,10,2,30,102190,100970,99780,74.98,0.4,4.04,4.22,4.25,4.25,4.25,4.24,4.22,4.2,4.16,108.58,108.93,109.17,109.41,109.64,109.84,110.08,110.3,110.81,14.38,13.97,13.77,13.57,13.370000000000001,13.19,12.98,12.790000000000001,12.4,N/A,N/A -2012,2,10,3,30,102170,100950,99760,74.92,0.7000000000000001,3.5700000000000003,3.72,3.74,3.74,3.74,3.73,3.71,3.7,3.66,105.49000000000001,105.98,106.33,106.68,107.02,107.34,107.7,108.03,108.79,14.58,14.17,13.98,13.780000000000001,13.58,13.39,13.19,13,12.61,N/A,N/A -2012,2,10,4,30,102140,100930,99740,74.7,0,3.61,3.8000000000000003,3.85,3.87,3.89,3.9,3.92,3.93,3.95,87.86,88.94,89.67,90.37,91.04,91.66,92.31,92.91,94.22,14.780000000000001,14.39,14.200000000000001,14,13.8,13.620000000000001,13.41,13.23,12.84,N/A,N/A -2012,2,10,5,30,102120,100910,99730,74.31,0,3.93,4.15,4.21,4.24,4.2700000000000005,4.28,4.3,4.3100000000000005,4.33,95.19,95.87,96.27,96.64,96.99000000000001,97.32000000000001,97.66,97.98,98.67,15.17,14.780000000000001,14.59,14.39,14.19,14,13.8,13.61,13.22,N/A,N/A -2012,2,10,6,30,102130,100910,99730,78.92,4.4,3.63,3.81,3.85,3.87,3.89,3.9,3.91,3.91,3.92,83.54,84.95,85.9,86.79,87.62,88.4,89.21000000000001,89.96000000000001,91.54,14.950000000000001,14.56,14.38,14.18,13.98,13.8,13.6,13.42,13.040000000000001,N/A,N/A -2012,2,10,7,30,102130,100910,99730,82.49,2.2,3.8200000000000003,4.03,4.08,4.11,4.13,4.14,4.15,4.16,4.18,71.31,72.3,72.94,73.54,74.08,74.57000000000001,75.08,75.55,76.55,14.93,14.540000000000001,14.36,14.16,13.96,13.77,13.57,13.39,13.01,N/A,N/A -2012,2,10,8,30,102090,100880,99690,82.98,5.5,5.01,5.25,5.28,5.28,5.2700000000000005,5.26,5.24,5.21,5.15,63.58,63.89,64.12,64.36,64.58,64.78,65.01,65.23,65.7,14.73,14.32,14.13,13.93,13.73,13.55,13.35,13.16,12.780000000000001,N/A,N/A -2012,2,10,9,30,102030,100820,99640,82.64,1.1,5.84,6.16,6.22,6.24,6.24,6.23,6.2,6.18,6.12,67.13,67.34,67.46000000000001,67.59,67.73,67.88,68.05,68.23,68.71000000000001,14.68,14.26,14.06,13.86,13.66,13.47,13.27,13.08,12.700000000000001,N/A,N/A -2012,2,10,10,30,102010,100790,99610,85.46000000000001,4.4,5.93,6.25,6.3100000000000005,6.32,6.3100000000000005,6.3,6.28,6.25,6.19,62.59,62.940000000000005,63.2,63.47,63.75,64.01,64.34,64.67,65.48,14.43,13.99,13.8,13.59,13.39,13.21,13.01,12.83,12.450000000000001,N/A,N/A -2012,2,10,11,30,102000,100780,99600,87.7,1.1,6.5200000000000005,6.91,6.99,7.01,7.01,7.01,6.99,6.97,6.92,57.24,57.46,57.64,57.82,58,58.17,58.410000000000004,58.63,59.230000000000004,14.27,13.83,13.620000000000001,13.42,13.22,13.040000000000001,12.84,12.65,12.280000000000001,N/A,N/A -2012,2,10,12,30,101970,100750,99570,92.05,5.9,6.42,6.82,6.9,6.93,6.94,6.94,6.93,6.92,6.88,53.32,53.49,53.59,53.7,53.81,53.92,54.07,54.2,54.58,14.26,13.81,13.620000000000001,13.41,13.22,13.040000000000001,12.85,12.67,12.31,N/A,N/A -2012,2,10,13,30,102000,100780,99600,94.89,6.2,7.66,8.05,8.1,8.09,8.05,8.01,7.95,7.890000000000001,7.75,16.13,17.17,17.76,18.38,19.02,19.62,20.37,21.12,23.01,13.39,12.89,12.68,12.49,12.3,12.13,11.950000000000001,11.78,11.450000000000001,N/A,N/A -2012,2,10,14,30,102010,100790,99600,92.65,2.6,7.26,7.67,7.75,7.76,7.75,7.73,7.69,7.640000000000001,7.54,29.36,29.7,29.91,30.13,30.37,30.59,30.89,31.2,32.01,13.23,12.72,12.51,12.31,12.1,11.92,11.73,11.55,11.18,N/A,N/A -2012,2,10,15,30,102030,100800,99620,92.75,22.700000000000003,8.1,8.59,8.67,8.69,8.67,8.65,8.61,8.56,8.45,20.080000000000002,20.41,20.61,20.81,21.02,21.22,21.46,21.7,22.29,13.15,12.63,12.42,12.21,12.02,11.84,11.64,11.46,11.11,N/A,N/A -2012,2,10,16,30,102060,100840,99660,91.72,15.4,8.1,8.66,8.78,8.83,8.85,8.86,8.85,8.84,8.8,7.390000000000001,7.17,7.23,7.28,7.32,7.36,7.41,7.45,7.53,13.32,12.8,12.58,12.370000000000001,12.16,11.98,11.78,11.59,11.21,N/A,N/A -2012,2,10,17,30,102020,100800,99610,93.11,27.5,6.97,7.3500000000000005,7.42,7.44,7.43,7.43,7.42,7.43,7.54,8.68,8.84,8.51,8.19,7.83,7.47,6.92,6.3,3.61,13.31,12.82,12.620000000000001,12.43,12.24,12.07,11.89,11.72,11.43,N/A,N/A -2012,2,10,18,30,102020,100800,99620,94.12,11.700000000000001,5.58,5.86,5.91,5.93,5.93,5.93,5.92,5.92,5.93,357.46,357.28000000000003,357.05,356.79,356.5,356.21,355.8,355.37,353.99,13.41,12.94,12.74,12.540000000000001,12.35,12.17,11.98,11.8,11.44,N/A,N/A -2012,2,10,19,30,102060,100840,99660,92.88,2.2,5.86,6.23,6.34,6.390000000000001,6.44,6.47,6.5,6.5200000000000005,6.57,340.3,339.65000000000003,339.17,338.71,338.27,337.86,337.41,336.98,336.07,13.76,13.3,13.09,12.88,12.68,12.5,12.31,12.13,11.76,N/A,N/A -2012,2,10,20,30,102000,100780,99600,90.99,1.1,4.89,5.16,5.22,5.25,5.2700000000000005,5.29,5.3100000000000005,5.33,5.39,341.06,341.36,341.42,341.48,341.54,341.59000000000003,341.63,341.67,341.71,13.72,13.280000000000001,13.08,12.88,12.68,12.5,12.3,12.11,11.73,N/A,N/A -2012,2,10,21,30,102030,100810,99630,87.41,0,6.36,6.8,6.92,7,7.05,7.1000000000000005,7.140000000000001,7.18,7.26,335.71,336.1,336.35,336.58,336.82,337.04,337.29,337.52,338.06,14.15,13.700000000000001,13.49,13.290000000000001,13.08,12.9,12.700000000000001,12.51,12.13,N/A,N/A -2012,2,10,22,30,102030,100810,99630,78.58,0,8.84,9.56,9.74,9.84,9.89,9.93,9.950000000000001,9.96,9.96,348.94,348.56,348.32,348.1,347.88,347.68,347.47,347.27,346.85,15.22,14.780000000000001,14.58,14.370000000000001,14.16,13.97,13.77,13.58,13.18,N/A,N/A -2012,2,10,23,30,102050,100840,99660,79.76,0,9,9.74,9.950000000000001,10.06,10.14,10.19,10.23,10.26,10.3,344,343.98,343.98,343.99,343.99,344,344,344.01,344.02,15.07,14.620000000000001,14.42,14.200000000000001,14,13.8,13.6,13.41,13.01,N/A,N/A -2012,2,11,0,30,102100,100880,99700,77,0,8.33,8.96,9.13,9.23,9.290000000000001,9.33,9.370000000000001,9.39,9.43,355.83,356.08,356.2,356.3,356.39,356.46,356.53000000000003,356.59000000000003,356.69,14.75,14.3,14.09,13.88,13.68,13.49,13.280000000000001,13.09,12.700000000000001,N/A,N/A -2012,2,11,1,30,102140,100920,99740,76.61,0,8.28,8.93,9.120000000000001,9.22,9.290000000000001,9.34,9.39,9.43,9.49,2.39,2.44,2.44,2.43,2.41,2.39,2.35,2.31,2.2,14.48,14.02,13.81,13.6,13.4,13.21,13.01,12.82,12.43,N/A,N/A -2012,2,11,2,30,102210,100980,99800,79.56,0,9.76,10.57,10.78,10.89,10.96,11.01,11.040000000000001,11.07,11.1,359.67,359.47,359.35,359.22,359.1,358.99,358.87,358.75,358.52,14.15,13.64,13.43,13.21,13,12.81,12.6,12.41,12.02,N/A,N/A -2012,2,11,3,30,102280,101050,99860,79.83,0,10.11,10.91,11.120000000000001,11.22,11.27,11.31,11.33,11.33,11.33,3.19,3.42,3.54,3.64,3.74,3.8200000000000003,3.89,3.96,4.09,13.73,13.200000000000001,12.98,12.76,12.55,12.36,12.15,11.96,11.56,N/A,N/A -2012,2,11,4,30,102350,101120,99920,81.14,0,10.4,11.24,11.46,11.57,11.64,11.69,11.72,11.75,11.77,3.3200000000000003,3.42,3.49,3.54,3.59,3.63,3.65,3.68,3.72,12.85,12.26,12.030000000000001,11.81,11.59,11.4,11.19,10.99,10.6,N/A,N/A -2012,2,11,5,30,102380,101150,99950,78.06,0,10.61,11.53,11.76,11.9,11.99,12.05,12.1,12.14,12.19,12.59,12.52,12.47,12.41,12.35,12.3,12.23,12.17,12.030000000000001,12.58,11.98,11.74,11.52,11.31,11.11,10.9,10.71,10.32,N/A,N/A -2012,2,11,6,30,102450,101220,100020,78.72,0,10.3,11.15,11.370000000000001,11.49,11.58,11.64,11.68,11.72,11.77,12.72,12.55,12.44,12.34,12.23,12.13,12.02,11.92,11.700000000000001,12.4,11.790000000000001,11.55,11.33,11.11,10.92,10.71,10.51,10.120000000000001,N/A,N/A -2012,2,11,7,30,102510,101280,100080,79.62,0,10.84,11.76,12.01,12.14,12.23,12.290000000000001,12.33,12.36,12.4,10.88,10.790000000000001,10.74,10.71,10.67,10.64,10.6,10.56,10.49,12.21,11.58,11.33,11.1,10.88,10.69,10.47,10.28,9.88,N/A,N/A -2012,2,11,8,30,102540,101300,100100,83.85000000000001,0,11.66,12.63,12.88,13,13.07,13.120000000000001,13.15,13.17,13.17,11.81,11.92,11.950000000000001,11.96,11.96,11.97,11.97,11.96,11.950000000000001,11.3,10.61,10.35,10.120000000000001,9.89,9.69,9.48,9.28,8.89,N/A,N/A -2012,2,11,9,30,102590,101340,100130,77,0,13.57,14.780000000000001,15.07,15.21,15.290000000000001,15.34,15.35,15.35,15.31,16.29,16.38,16.41,16.43,16.45,16.47,16.48,16.490000000000002,16.5,10.64,9.86,9.58,9.34,9.11,8.91,8.700000000000001,8.5,8.120000000000001,N/A,N/A -2012,2,11,10,30,102670,101420,100200,75.87,0,13,14.11,14.38,14.52,14.6,14.65,14.67,14.69,14.68,22.78,22.84,22.89,22.93,22.97,23.01,23.04,23.07,23.14,9.73,8.92,8.63,8.39,8.16,7.95,7.74,7.54,7.15,N/A,N/A -2012,2,11,11,30,102740,101490,100270,73.58,0,12.44,13.450000000000001,13.700000000000001,13.82,13.89,13.93,13.94,13.950000000000001,13.93,25.080000000000002,25.2,25.26,25.32,25.38,25.44,25.490000000000002,25.54,25.63,9.07,8.24,7.96,7.71,7.48,7.2700000000000005,7.0600000000000005,6.86,6.47,N/A,N/A -2012,2,11,12,30,102810,101550,100330,73.95,0,12.290000000000001,13.26,13.49,13.61,13.67,13.71,13.72,13.73,13.72,29.27,29.43,29.53,29.61,29.68,29.75,29.82,29.88,29.990000000000002,8.35,7.49,7.2,6.95,6.72,6.51,6.29,6.1000000000000005,5.7,N/A,N/A -2012,2,11,13,30,102880,101620,100390,75.81,0,12.32,13.280000000000001,13.51,13.620000000000001,13.68,13.71,13.72,13.73,13.71,31.66,31.92,32.08,32.230000000000004,32.37,32.49,32.61,32.730000000000004,32.980000000000004,7.8,6.92,6.62,6.37,6.140000000000001,5.93,5.71,5.5200000000000005,5.12,N/A,N/A -2012,2,11,14,30,102940,101680,100450,76.17,0,12.02,12.93,13.15,13.25,13.31,13.34,13.35,13.35,13.33,31.77,32.09,32.28,32.46,32.63,32.78,32.94,33.1,33.410000000000004,7.390000000000001,6.51,6.21,5.96,5.72,5.5200000000000005,5.3,5.1000000000000005,4.71,N/A,N/A -2012,2,11,15,30,102990,101720,100500,72.63,0,10.53,11.27,11.450000000000001,11.53,11.58,11.61,11.620000000000001,11.63,11.63,31.98,32.27,32.46,32.64,32.8,32.95,33.11,33.26,33.57,7.32,6.49,6.2,5.96,5.73,5.5200000000000005,5.3100000000000005,5.11,4.72,N/A,N/A -2012,2,11,16,30,103000,101740,100510,67.06,0,9.72,10.370000000000001,10.52,10.59,10.63,10.66,10.67,10.68,10.68,28.26,28.490000000000002,28.650000000000002,28.79,28.93,29.05,29.18,29.3,29.54,7.5,6.71,6.43,6.19,5.96,5.75,5.54,5.3500000000000005,4.95,N/A,N/A -2012,2,11,17,30,103010,101750,100520,65.65,0,8.99,9.59,9.72,9.8,9.84,9.870000000000001,9.89,9.9,9.91,21.64,21.7,21.75,21.79,21.830000000000002,21.86,21.900000000000002,21.93,22.01,7.92,7.17,6.890000000000001,6.66,6.43,6.23,6.0200000000000005,5.82,5.42,N/A,N/A -2012,2,11,18,30,103020,101760,100530,58.480000000000004,0,8.78,9.370000000000001,9.51,9.59,9.64,9.68,9.700000000000001,9.72,9.75,20.11,20.11,20.12,20.13,20.14,20.16,20.17,20.18,20.2,8.8,8.09,7.83,7.59,7.37,7.16,6.95,6.75,6.3500000000000005,N/A,N/A -2012,2,11,19,30,103030,101780,100560,55.46,0,8.35,8.91,9.05,9.120000000000001,9.16,9.200000000000001,9.22,9.24,9.26,16.69,16.79,16.86,16.92,16.990000000000002,17.04,17.1,17.16,17.27,9.49,8.82,8.56,8.33,8.1,7.9,7.69,7.48,7.08,N/A,N/A -2012,2,11,20,30,103010,101760,100550,52.14,0,8.28,8.84,8.98,9.06,9.120000000000001,9.16,9.18,9.200000000000001,9.23,15.82,15.85,15.88,15.9,15.92,15.94,15.950000000000001,15.97,16,10.23,9.58,9.34,9.11,8.89,8.69,8.47,8.27,7.87,N/A,N/A -2012,2,11,21,30,103010,101760,100550,48.46,0,8.61,9.21,9.36,9.44,9.49,9.53,9.55,9.57,9.59,15.09,15.25,15.35,15.44,15.52,15.6,15.68,15.74,15.89,10.84,10.21,9.97,9.74,9.52,9.32,9.1,8.9,8.5,N/A,N/A -2012,2,11,22,30,103020,101780,100560,48.58,0,8.8,9.4,9.55,9.63,9.67,9.700000000000001,9.72,9.74,9.75,21.48,21.29,21.14,21,20.87,20.75,20.62,20.51,20.29,11.02,10.4,10.15,9.93,9.700000000000001,9.5,9.290000000000001,9.09,8.68,N/A,N/A -2012,2,11,23,30,103060,101810,100600,51.34,0,9.4,10.06,10.200000000000001,10.28,10.32,10.34,10.35,10.35,10.35,15.33,15.63,15.82,15.99,16.16,16.3,16.45,16.580000000000002,16.85,10.81,10.15,9.91,9.68,9.450000000000001,9.25,9.03,8.83,8.43,N/A,N/A -2012,2,12,0,30,103120,101870,100650,51.72,0,10.05,10.76,10.91,10.98,11.01,11.03,11.03,11.02,10.99,17.36,17.64,17.8,17.95,18.1,18.23,18.36,18.490000000000002,18.740000000000002,10.19,9.5,9.24,9.01,8.78,8.58,8.36,8.16,7.76,N/A,N/A -2012,2,12,1,30,103170,101920,100690,53.79,0,10.370000000000001,11.13,11.3,11.39,11.43,11.46,11.47,11.48,11.47,22.48,22.69,22.82,22.93,23.04,23.150000000000002,23.25,23.35,23.54,9.71,8.99,8.72,8.49,8.26,8.05,7.84,7.63,7.23,N/A,N/A -2012,2,12,2,30,103220,101960,100740,55.59,0,11.28,12.14,12.34,12.450000000000001,12.5,12.540000000000001,12.55,12.56,12.56,26.92,27.150000000000002,27.29,27.41,27.53,27.63,27.740000000000002,27.85,28.05,9.25,8.47,8.2,7.95,7.73,7.5200000000000005,7.3,7.1000000000000005,6.7,N/A,N/A -2012,2,12,3,30,103250,101990,100760,57.61,0,11.49,12.38,12.59,12.69,12.74,12.780000000000001,12.8,12.81,12.8,32.49,32.76,32.94,33.09,33.24,33.37,33.51,33.64,33.9,8.9,8.1,7.82,7.58,7.34,7.13,6.92,6.71,6.3100000000000005,N/A,N/A -2012,2,12,4,30,103240,101980,100750,59.42,0,11.55,12.450000000000001,12.65,12.75,12.81,12.84,12.86,12.86,12.86,37.02,37.4,37.63,37.83,38.02,38.19,38.37,38.54,38.86,8.68,7.88,7.59,7.3500000000000005,7.12,6.91,6.69,6.49,6.08,N/A,N/A -2012,2,12,5,30,103270,102000,100770,61.9,0,11.620000000000001,12.52,12.72,12.83,12.89,12.93,12.950000000000001,12.96,12.96,40.9,41.34,41.61,41.85,42.08,42.29,42.5,42.7,43.1,8.41,7.59,7.3,7.05,6.82,6.61,6.390000000000001,6.18,5.78,N/A,N/A -2012,2,12,6,30,103300,102040,100810,66.23,0,11.700000000000001,12.620000000000001,12.84,12.96,13.030000000000001,13.08,13.1,13.120000000000001,13.13,49.36,49.46,49.52,49.57,49.620000000000005,49.67,49.7,49.75,49.83,8.23,7.390000000000001,7.1000000000000005,6.8500000000000005,6.61,6.4,6.18,5.97,5.5600000000000005,N/A,N/A -2012,2,12,7,30,103340,102080,100850,62.59,0,11.6,12.48,12.68,12.780000000000001,12.83,12.86,12.88,12.88,12.870000000000001,50.25,50.54,50.730000000000004,50.89,51.04,51.19,51.33,51.47,51.730000000000004,7.91,7.07,6.78,6.53,6.29,6.08,5.86,5.66,5.25,N/A,N/A -2012,2,12,8,30,103350,102080,100850,65.84,0,11.35,12.19,12.38,12.47,12.52,12.55,12.56,12.56,12.540000000000001,50.95,51.25,51.45,51.620000000000005,51.78,51.93,52.08,52.22,52.51,7.5,6.65,6.36,6.11,5.87,5.66,5.44,5.24,4.83,N/A,N/A -2012,2,12,9,30,103360,102090,100860,68.71000000000001,0,11.21,12.030000000000001,12.23,12.32,12.38,12.41,12.43,12.44,12.44,53.550000000000004,53.71,53.82,53.910000000000004,54,54.08,54.160000000000004,54.24,54.39,7.25,6.390000000000001,6.09,5.84,5.6000000000000005,5.39,5.17,4.97,4.5600000000000005,N/A,N/A -2012,2,12,10,30,103360,102090,100850,67.67,0,11.44,12.290000000000001,12.48,12.58,12.63,12.66,12.68,12.68,12.67,53.75,53.99,54.15,54.29,54.42,54.54,54.67,54.79,55.04,6.97,6.1000000000000005,5.8,5.54,5.3100000000000005,5.09,4.87,4.67,4.26,N/A,N/A -2012,2,12,11,30,103350,102080,100840,68.84,0,11.5,12.35,12.55,12.64,12.69,12.73,12.74,12.75,12.74,52.6,52.93,53.15,53.34,53.53,53.7,53.870000000000005,54.04,54.370000000000005,6.83,5.96,5.65,5.4,5.16,4.95,4.73,4.5200000000000005,4.12,N/A,N/A -2012,2,12,12,30,103360,102080,100850,70.72,0,11.52,12.38,12.58,12.68,12.73,12.77,12.780000000000001,12.790000000000001,12.790000000000001,53.77,54.18,54.44,54.67,54.910000000000004,55.11,55.32,55.53,55.93,6.8,5.92,5.62,5.37,5.13,4.91,4.7,4.49,4.09,N/A,N/A -2012,2,12,13,30,103330,102060,100820,73.15,0,11.76,12.65,12.85,12.950000000000001,13.01,13.05,13.06,13.07,13.06,54.49,55.03,55.36,55.65,55.93,56.19,56.44,56.7,57.18,6.890000000000001,6,5.7,5.45,5.21,5,4.78,4.57,4.17,N/A,N/A -2012,2,12,14,30,103320,102050,100820,74.89,0,12.08,13.02,13.23,13.35,13.4,13.450000000000001,13.46,13.47,13.47,55.050000000000004,55.51,55.79,56.04,56.28,56.5,56.730000000000004,56.94,57.36,7.16,6.2700000000000005,5.96,5.71,5.47,5.25,5.03,4.83,4.42,N/A,N/A -2012,2,12,15,30,103310,102040,100810,77.03,0,11.58,12.46,12.67,12.780000000000001,12.84,12.88,12.91,12.92,12.92,58.75,59.300000000000004,59.65,59.97,60.26,60.53,60.81,61.06,61.57,7.36,6.5,6.2,5.95,5.71,5.5,5.28,5.08,4.67,N/A,N/A -2012,2,12,16,30,103260,101990,100760,73.99,0,10.96,11.76,11.96,12.06,12.120000000000001,12.16,12.18,12.19,12.200000000000001,62.77,63.18,63.440000000000005,63.68,63.9,64.1,64.3,64.49,64.87,7.71,6.88,6.59,6.34,6.1000000000000005,5.89,5.67,5.47,5.0600000000000005,N/A,N/A -2012,2,12,17,30,103210,101950,100720,69.93,0,10.22,10.94,11.11,11.200000000000001,11.24,11.27,11.290000000000001,11.290000000000001,11.290000000000001,64.05,64.29,64.45,64.58,64.71000000000001,64.82000000000001,64.94,65.05,65.26,8.05,7.25,6.97,6.73,6.49,6.28,6.07,5.86,5.46,N/A,N/A -2012,2,12,18,30,103190,101930,100700,67.03,0,8.96,9.55,9.67,9.74,9.77,9.8,9.8,9.81,9.790000000000001,63.31,63.43,63.53,63.620000000000005,63.7,63.77,63.83,63.9,64.02,8.35,7.61,7.34,7.1000000000000005,6.87,6.66,6.45,6.25,5.84,N/A,N/A -2012,2,12,19,30,103110,101850,100630,64.13,0,8.950000000000001,9.53,9.65,9.71,9.74,9.76,9.77,9.77,9.75,68.89,68.95,69,69.03,69.07000000000001,69.11,69.14,69.17,69.23,8.73,8.01,7.74,7.51,7.28,7.07,6.86,6.66,6.26,N/A,N/A -2012,2,12,20,30,103050,101790,100570,62.67,0,8.08,8.58,8.69,8.74,8.77,8.790000000000001,8.8,8.8,8.790000000000001,70.64,70.81,70.91,71,71.08,71.16,71.24,71.32000000000001,71.47,9.120000000000001,8.44,8.18,7.95,7.73,7.5200000000000005,7.3100000000000005,7.11,6.71,N/A,N/A -2012,2,12,21,30,102990,101740,100520,64.05,0,7.53,7.99,8.09,8.15,8.18,8.2,8.21,8.22,8.22,74.17,74.61,74.85000000000001,75.07000000000001,75.28,75.46000000000001,75.65,75.83,76.18,9.63,8.99,8.73,8.51,8.28,8.08,7.87,7.67,7.2700000000000005,N/A,N/A -2012,2,12,22,30,102920,101670,100450,62,0,7.15,7.57,7.66,7.71,7.73,7.75,7.76,7.76,7.76,76.7,76.98,77.16,77.32000000000001,77.49,77.64,77.8,77.95,78.27,10.040000000000001,9.42,9.18,8.96,8.74,8.540000000000001,8.32,8.13,7.73,N/A,N/A -2012,2,12,23,30,102820,101570,100360,62.620000000000005,0,7.99,8.51,8.620000000000001,8.68,8.72,8.74,8.75,8.76,8.76,82.05,82.12,82.17,82.22,82.27,82.31,82.37,82.42,82.52,10.59,9.97,9.72,9.5,9.28,9.08,8.870000000000001,8.67,8.27,N/A,N/A -2012,2,13,0,30,102780,101540,100330,60.08,0,7.86,8.370000000000001,8.49,8.55,8.58,8.61,8.620000000000001,8.63,8.64,89.15,89.28,89.39,89.5,89.62,89.72,89.83,89.93,90.15,11.13,10.52,10.28,10.06,9.84,9.65,9.43,9.24,8.84,N/A,N/A -2012,2,13,1,30,102740,101500,100290,63.730000000000004,0,8.2,8.78,8.93,9.02,9.08,9.120000000000001,9.15,9.18,9.21,92.82000000000001,93.4,93.69,93.92,94.14,94.32000000000001,94.5,94.66,94.95,11.6,11.01,10.77,10.55,10.33,10.13,9.92,9.72,9.32,N/A,N/A -2012,2,13,2,30,102670,101430,100230,58.83,0,8.26,8.85,9,9.09,9.14,9.18,9.22,9.24,9.290000000000001,91.97,92.18,92.45,92.74,93.04,93.31,93.62,93.9,94.47,11.98,11.41,11.18,10.96,10.74,10.55,10.34,10.14,9.75,N/A,N/A -2012,2,13,3,30,102590,101360,100160,62.35,0,9.03,9.74,9.93,10.040000000000001,10.120000000000001,10.18,10.23,10.27,10.33,97.02,97.35000000000001,97.62,97.87,98.12,98.34,98.58,98.81,99.27,12.46,11.89,11.66,11.43,11.22,11.02,10.81,10.620000000000001,10.22,N/A,N/A -2012,2,13,4,30,102510,101280,100080,66.32000000000001,0,9.57,10.35,10.56,10.68,10.76,10.82,10.86,10.89,10.94,105.04,105.31,105.48,105.63,105.77,105.89,106.03,106.15,106.39,12.9,12.33,12.1,11.89,11.67,11.47,11.26,11.06,10.66,N/A,N/A -2012,2,13,5,30,102430,101200,100010,65.7,0,9.82,10.63,10.84,10.96,11.040000000000001,11.09,11.13,11.16,11.200000000000001,110.87,110.96000000000001,111.04,111.11,111.17,111.23,111.3,111.36,111.49000000000001,13.34,12.790000000000001,12.57,12.35,12.13,11.93,11.72,11.53,11.13,N/A,N/A -2012,2,13,6,30,102380,101150,99960,70.34,0,10.01,10.86,11.08,11.21,11.290000000000001,11.36,11.4,11.44,11.49,112.18,112.35000000000001,112.48,112.61,112.75,112.87,113,113.12,113.38,13.540000000000001,13.01,12.790000000000001,12.57,12.36,12.16,11.950000000000001,11.75,11.35,N/A,N/A -2012,2,13,7,30,102330,101100,99910,76.22,5.9,10.3,11.18,11.44,11.58,11.67,11.75,11.8,11.84,11.91,107.64,108.33,108.78,109.23,109.65,110.04,110.45,110.83,111.61,13.44,12.9,12.68,12.47,12.26,12.07,11.870000000000001,11.68,11.3,N/A,N/A -2012,2,13,8,30,102220,101000,99820,72.68,0,10.03,10.9,11.15,11.290000000000001,11.39,11.46,11.51,11.55,11.61,116.79,117.41,117.8,118.15,118.47,118.76,119.05,119.31,119.83,14.25,13.76,13.55,13.33,13.120000000000001,12.93,12.72,12.530000000000001,12.13,N/A,N/A -2012,2,13,9,30,102140,100920,99740,76.71000000000001,0,10.69,11.64,11.9,12.030000000000001,12.120000000000001,12.17,12.200000000000001,12.23,12.24,125.01,124.96000000000001,124.91,124.85000000000001,124.8,124.75,124.7,124.65,124.57000000000001,14.51,14.01,13.8,13.58,13.370000000000001,13.17,12.97,12.77,12.370000000000001,N/A,N/A -2012,2,13,10,30,102070,100860,99680,79.76,0,10.75,11.76,12.05,12.22,12.34,12.43,12.5,12.55,12.63,122.2,122.51,122.7,122.88,123.04,123.19,123.34,123.47,123.73,14.92,14.46,14.25,14.030000000000001,13.83,13.63,13.42,13.23,12.84,N/A,N/A -2012,2,13,11,30,102000,100790,99610,82.92,0,10.96,11.98,12.25,12.4,12.5,12.57,12.61,12.65,12.68,121.62,121.75,121.89,122.03,122.18,122.31,122.46000000000001,122.60000000000001,122.89,15.27,14.82,14.61,14.4,14.19,14,13.790000000000001,13.6,13.21,N/A,N/A -2012,2,13,12,30,101920,100710,99540,84.62,1.8,11.26,12.370000000000001,12.69,12.870000000000001,12.99,13.07,13.13,13.18,13.24,123.15,123.4,123.58,123.78,123.96000000000001,124.14,124.34,124.52,124.92,15.69,15.27,15.07,14.86,14.67,14.48,14.27,14.09,13.700000000000001,N/A,N/A -2012,2,13,13,30,101860,100650,99480,86.25,0.4,11.01,12.23,12.6,12.83,13,13.14,13.24,13.33,13.46,127.91,128.43,128.72,128.98,129.21,129.43,129.65,129.86,130.27,16.07,15.69,15.5,15.3,15.11,14.92,14.72,14.540000000000001,14.16,N/A,N/A -2012,2,13,14,30,101780,100580,99420,83.98,0,11.1,12.27,12.620000000000001,12.83,12.98,13.09,13.17,13.24,13.33,137.25,137.6,137.87,138.14000000000001,138.39000000000001,138.61,138.85,139.06,139.51,16.92,16.61,16.44,16.240000000000002,16.05,15.860000000000001,15.67,15.49,15.1,N/A,N/A -2012,2,13,15,30,101740,100540,99380,87.9,35.9,10.59,11.68,11.99,12.18,12.31,12.41,12.48,12.530000000000001,12.620000000000001,137.9,138.21,138.33,138.46,138.59,138.70000000000002,138.82,138.94,139.20000000000002,16.69,16.36,16.19,16,15.81,15.63,15.44,15.26,14.89,N/A,N/A -2012,2,13,16,30,101650,100450,99280,92.85000000000001,7,10.5,11.57,11.88,12.07,12.200000000000001,12.3,12.36,12.41,12.47,137.49,137.57,137.64000000000001,137.73,137.83,137.94,138.07,138.19,138.5,16.91,16.59,16.42,16.22,16.03,15.85,15.66,15.48,15.11,N/A,N/A -2012,2,13,17,30,101520,100330,99170,91.94,2.6,9.26,10.36,10.72,11.01,11.26,11.47,11.67,11.86,12.23,141.55,142.06,142.36,142.66,142.97,143.26,143.6,143.9,144.43,17.330000000000002,17.06,16.89,16.71,16.52,16.34,16.15,15.98,15.610000000000001,N/A,N/A -2012,2,13,18,30,101430,100240,99080,93.59,0.4,10.36,11.76,12.33,12.81,13.22,13.57,13.9,14.200000000000001,14.75,144.35,145.34,145.98,146.67000000000002,147.28,147.87,148.46,149,150.09,17.51,17.3,17.16,17,16.84,16.69,16.52,16.37,16.05,N/A,N/A -2012,2,13,19,30,101390,100200,99050,94.89,3.7,9.02,10.32,10.86,11.33,11.75,12.13,12.5,12.85,13.52,164.87,165.72,166.19,166.70000000000002,167.17000000000002,167.62,168.07,168.5,169.34,17.8,17.62,17.5,17.35,17.21,17.07,16.93,16.79,16.51,N/A,N/A -2012,2,13,20,30,101290,100100,98950,94.18,4.800000000000001,9.700000000000001,11.16,11.78,12.32,12.780000000000001,13.21,13.63,14.01,14.780000000000001,171.38,171.55,171.74,171.93,172.11,172.28,172.46,172.63,172.97,18.150000000000002,18.03,17.92,17.78,17.650000000000002,17.51,17.36,17.23,16.95,N/A,N/A -2012,2,13,21,30,101310,100120,98970,93.12,13.600000000000001,9.07,10.64,11.33,11.97,12.52,13.040000000000001,13.52,13.96,14.77,189.37,190.09,190.28,190.37,190.42000000000002,190.43,190.44,190.43,190.45000000000002,18.47,18.43,18.36,18.240000000000002,18.13,18.01,17.89,17.77,17.5,N/A,N/A -2012,2,13,22,30,101270,100080,98930,96.13,7.7,4.9,5.8100000000000005,6.15,6.44,6.7,6.92,7.13,7.34,8.22,248.87,247.14000000000001,245.65,243.82,242.14000000000001,240.53,238.97,237.5,234.4,18.09,17.98,17.88,17.75,17.650000000000002,17.580000000000002,17.5,17.42,17.240000000000002,N/A,N/A -2012,2,13,23,30,101240,100050,98900,96.72,0,3.86,4.82,5.24,5.62,5.94,6.21,6.5,6.78,7.4,248.83,249.84,251.03,253.51000000000002,256.69,260.44,263.72,266.7,270.45,17.98,17.92,17.86,17.78,17.69,17.59,17.48,17.37,17.19,N/A,N/A -2012,2,14,0,30,101260,100070,98910,95.46000000000001,0,4.33,5.11,5.42,5.69,5.97,6.24,6.49,6.72,7.1000000000000005,266.32,267.75,268.9,270.54,272.37,274.36,277.03000000000003,279.69,285.53000000000003,17.85,17.69,17.580000000000002,17.45,17.330000000000002,17.21,17.1,17,16.72,N/A,N/A -2012,2,14,1,30,101290,100100,98950,95.04,0,4.37,5.09,5.41,5.71,6.0200000000000005,6.34,6.6000000000000005,6.83,6.99,286.69,288.62,290.49,293.65000000000003,295.97,297.7,297.93,297.69,293.87,17.650000000000002,17.5,17.39,17.25,17.11,16.96,16.8,16.66,16.39,N/A,N/A -2012,2,14,2,30,101340,100150,98990,91.53,0,4.3100000000000005,4.96,5.24,5.39,5.59,5.84,6.0200000000000005,6.16,6.24,305.95,306.5,306.88,307.26,307.69,308.18,308.08,307.82,304.92,17.39,17.150000000000002,17,16.81,16.65,16.51,16.35,16.21,15.9,N/A,N/A -2012,2,14,3,30,101360,100160,99000,89.4,0,4.0600000000000005,4.39,4.5,4.61,4.8,5.05,5.44,5.83,6.1000000000000005,290.86,290.62,290.43,290.11,289.65000000000003,289.09000000000003,287.21,285.11,282.32,17.2,16.92,16.76,16.580000000000002,16.41,16.240000000000002,16.09,15.96,15.66,N/A,N/A -2012,2,14,4,30,101370,100180,99020,91.4,0,5.33,5.72,5.8100000000000005,5.84,5.86,5.87,5.88,5.89,5.96,307.35,307.3,307.24,307.12,306.97,306.81,306.56,306.3,305.07,16.89,16.59,16.41,16.22,16.03,15.85,15.65,15.48,15.120000000000001,N/A,N/A -2012,2,14,5,30,101400,100200,99040,91.5,0,5.74,6.0600000000000005,6.1000000000000005,6.08,6.05,6.01,5.95,5.89,5.69,306.64,306.62,306.57,306.51,306.43,306.35,306.21,306.04,304.56,16.27,15.92,15.74,15.55,15.36,15.17,14.98,14.8,14.44,N/A,N/A -2012,2,14,6,30,101440,100240,99070,90.02,0,4.83,5.0600000000000005,5.09,5.07,5.04,5.01,4.96,4.92,4.82,296.82,296.98,297.13,297.3,297.46,297.63,297.83,298,298.2,15.860000000000001,15.51,15.33,15.13,14.94,14.76,14.57,14.39,14.030000000000001,N/A,N/A -2012,2,14,7,30,101460,100260,99090,91.52,0,4.73,4.97,5,5,4.98,4.96,4.93,4.89,4.7700000000000005,302.28000000000003,302.91,303.33,303.8,304.29,304.78000000000003,305.45,306.17,310,15.75,15.4,15.22,15.030000000000001,14.83,14.65,14.450000000000001,14.27,13.91,N/A,N/A -2012,2,14,8,30,101470,100270,99100,89.54,0,3.1,3.2,3.19,3.16,3.13,3.09,3.0500000000000003,3,2.84,308.99,308.87,308.74,308.61,308.48,308.35,308.2,308.07,307.82,15.620000000000001,15.290000000000001,15.11,14.91,14.72,14.540000000000001,14.34,14.16,13.790000000000001,N/A,N/A -2012,2,14,9,30,101480,100270,99100,90.78,0,2.37,2.4,2.38,2.35,2.31,2.2600000000000002,2.21,2.15,1.97,308.46,307.32,306.52,305.63,304.64,303.66,302.23,300.74,294.90000000000003,15.36,15.02,14.83,14.63,14.44,14.25,14.040000000000001,13.85,13.46,N/A,N/A -2012,2,14,10,30,101500,100300,99130,89.89,0,1.09,1.07,1.04,1.01,0.97,0.9400000000000001,0.9,0.86,0.77,340.61,339.54,338.44,337.2,335.81,334.38,332.23,330.02,320.82,15.3,14.97,14.8,14.6,14.41,14.22,14.030000000000001,13.84,13.47,N/A,N/A -2012,2,14,11,30,101540,100330,99160,91.17,0,1.3800000000000001,1.28,1.2,1.12,1.06,1,0.9400000000000001,0.89,0.81,123.47,124.17,124.78,125.76,127.23,128.84,131.65,134.52,144.25,15.21,14.86,14.67,14.46,14.26,14.06,13.84,13.64,13.22,N/A,N/A -2012,2,14,12,30,101560,100350,99180,93.36,0,2.37,2.3000000000000003,2.22,2.14,2.09,2.06,2.05,2.06,2.21,76.53,82.52,86.93,92.2,97.89,103.57000000000001,110.58,117.38,135.05,14.75,14.39,14.22,14.02,13.84,13.66,13.48,13.31,13.09,N/A,N/A -2012,2,14,13,30,101580,100370,99200,92.96000000000001,0,2.09,2.14,2.15,2.16,2.19,2.23,2.29,2.36,2.47,87.26,93.74,98.03,102.93,107.93,112.83,118.09,123.09,135.91,14.9,14.56,14.38,14.19,14,13.82,13.63,13.47,13.23,N/A,N/A -2012,2,14,14,30,101600,100400,99220,92.05,0,3.04,3.16,3.18,3.18,3.19,3.19,3.2,3.2,3.21,148.14000000000001,147.95000000000002,147.96,147.93,147.86,147.79,147.74,147.70000000000002,147.65,15.13,14.76,14.58,14.38,14.19,14,13.8,13.620000000000001,13.26,N/A,N/A -2012,2,14,15,30,101620,100410,99240,92.07000000000001,0,2.85,2.96,2.97,2.98,2.98,2.99,3,3.0100000000000002,3.0700000000000003,97.22,100.31,102.32000000000001,104.43,106.52,108.52,110.81,112.99000000000001,118.7,15.030000000000001,14.67,14.49,14.290000000000001,14.1,13.92,13.73,13.55,13.200000000000001,N/A,N/A -2012,2,14,16,30,101610,100400,99230,93.59,0,3.02,3.12,3.12,3.1,3.08,3.06,3.0300000000000002,3.02,2.97,94.49,96.14,97.31,98.52,99.73,100.89,102.21000000000001,103.33,108.69,15.17,14.81,14.63,14.43,14.24,14.06,13.86,13.68,13.41,N/A,N/A -2012,2,14,17,30,101600,100390,99220,92.72,0,3.99,4.1,4.07,4.01,3.94,3.87,3.79,3.71,3.52,102.31,103.42,104.24000000000001,105.12,106.06,106.98,108.18,109.37,112.47,15.35,14.98,14.8,14.61,14.42,14.24,14.040000000000001,13.870000000000001,13.51,N/A,N/A -2012,2,14,18,30,101590,100390,99220,92.8,0,3.73,3.85,3.85,3.8200000000000003,3.79,3.7600000000000002,3.73,3.71,3.84,101.73,103.43,104.75,106.21000000000001,107.83,109.47,111.86,114.33,123.06,15.530000000000001,15.18,15,14.81,14.620000000000001,14.44,14.25,14.07,13.73,N/A,N/A -2012,2,14,19,30,101580,100380,99210,93.68,0,3.8200000000000003,4.05,4.12,4.16,4.19,4.22,4.26,4.29,4.45,98.64,99.93,100.79,101.69,102.60000000000001,103.48,104.55,105.61,110.17,15.69,15.34,15.16,14.96,14.77,14.59,14.39,14.21,13.93,N/A,N/A -2012,2,14,20,30,101550,100350,99180,93.9,0,4.39,4.7,4.78,4.83,4.88,4.91,4.94,4.97,5.08,100.12,101.17,101.7,102.2,102.67,103.12,103.57000000000001,103.97,105.89,16.12,15.780000000000001,15.6,15.4,15.21,15.030000000000001,14.83,14.66,14.36,N/A,N/A -2012,2,14,21,30,101530,100320,99160,92.91,0,4.42,4.66,4.72,4.74,4.78,4.82,4.93,5.0600000000000005,5.62,100.71000000000001,101.57000000000001,102.37,103.41,104.87,106.45,109.22,112.21000000000001,122.2,15.860000000000001,15.5,15.32,15.13,14.94,14.76,14.58,14.42,14.17,N/A,N/A -2012,2,14,22,30,101520,100320,99160,93.15,0,6.0600000000000005,6.46,6.53,6.53,6.51,6.48,6.42,6.3500000000000005,6.15,100.4,101.48,102.13,102.8,103.49000000000001,104.18,105.09,106,108.94,16.14,15.8,15.620000000000001,15.43,15.24,15.05,14.86,14.68,14.33,N/A,N/A -2012,2,14,23,30,101510,100310,99140,95.61,0,6.2,6.58,6.65,6.66,6.66,6.66,6.69,6.73,6.92,96.44,97.14,97.58,98.06,98.58,99.09,99.76,101.74000000000001,121.24000000000001,15.97,15.610000000000001,15.43,15.25,15.06,14.88,14.71,14.59,14.56,N/A,N/A -2012,2,15,0,30,101510,100310,99140,94.79,0,6.890000000000001,7.32,7.390000000000001,7.38,7.3500000000000005,7.3100000000000005,7.28,7.26,7.3500000000000005,104.15,104.71000000000001,105.07000000000001,105.52,106.16,106.85000000000001,108.28,110.38,122.14,16.25,15.91,15.73,15.540000000000001,15.36,15.18,15,14.85,14.71,N/A,N/A -2012,2,15,1,30,101530,100330,99170,94.18,0,5.88,6.2700000000000005,6.34,6.36,6.41,6.47,6.58,6.71,7.1000000000000005,106.36,107.31,108.15,109.33,111.72,114.69,119.43,123.99000000000001,131.08,16.7,16.4,16.23,16.05,15.88,15.72,15.56,15.42,15.1,N/A,N/A -2012,2,15,2,30,101540,100340,99180,95.63,0,6.1000000000000005,6.55,6.640000000000001,6.69,6.71,6.72,7.0200000000000005,7.32,7.69,113.41,113.79,114.10000000000001,114.43,114.77,115.10000000000001,117.7,120.42,124.8,16.7,16.4,16.22,16.03,15.83,15.65,15.530000000000001,15.43,15.280000000000001,N/A,N/A -2012,2,15,3,30,101530,100330,99170,96.91,0,6.47,7.390000000000001,7.78,8.15,8.48,8.78,9.09,9.39,10.02,113.77,115.95,117.46000000000001,119.21000000000001,120.8,122.27,123.72,125.09,128.26,17.06,16.81,16.69,16.57,16.47,16.37,16.27,16.19,16.080000000000002,N/A,N/A -2012,2,15,4,30,101520,100330,99170,97.12,0.4,6.87,7.83,8.22,8.59,8.93,9.25,9.58,9.9,10.74,115.48,116.28,116.9,117.75,118.74000000000001,119.83,121.46000000000001,123.18,129.97,17.5,17.3,17.18,17.05,16.93,16.830000000000002,16.77,16.740000000000002,16.78,N/A,N/A -2012,2,15,5,30,101490,100300,99150,97.04,0,7.7700000000000005,8.94,9.43,9.92,10.43,10.950000000000001,11.41,11.8,11.69,119.69,120.5,121.27,122.48,124.47,126.95,132.03,137.3,146.34,17.71,17.57,17.490000000000002,17.42,17.39,17.39,17.57,17.77,18.080000000000002,N/A,N/A -2012,2,15,6,30,101510,100320,99170,96.17,0,7.36,8.69,9.25,9.82,10.39,10.94,11.56,12.15,13.14,130.03,130.47,130.87,131.49,132.36,133.36,135.16,137.12,145.3,17.82,17.72,17.66,17.61,17.56,17.52,17.47,17.44,17.64,N/A,N/A -2012,2,15,7,30,101540,100350,99200,95.19,0,7.53,9.01,9.68,10.38,11.07,11.75,12.38,12.98,13.61,130.21,130.94,131.62,132.66,134,135.56,137.94,140.34,149.82,18.02,18,17.98,17.97,17.98,17.990000000000002,18,18.02,17.98,N/A,N/A -2012,2,15,8,30,101510,100320,99170,93.93,0,6.92,8.66,9.49,10.32,10.97,11.51,11.94,12.31,13.120000000000001,139.59,141.24,142.56,144.24,146.1,148.05,150.01,151.83,154.61,18.28,18.35,18.37,18.41,18.43,18.43,18.41,18.38,18.28,N/A,N/A -2012,2,15,9,30,101480,100300,99150,93.52,5.5,6.75,8.44,9.24,10.1,10.83,11.46,11.86,12.17,12.51,134.23,136.4,138.07,140.32,142.65,145.02,147.52,149.87,155.84,18.39,18.46,18.48,18.51,18.51,18.5,18.45,18.400000000000002,18.25,N/A,N/A -2012,2,15,10,30,101490,100300,99160,92.72,0,6.6000000000000005,8.35,9.14,9.92,10.55,11.1,11.58,12.01,12.780000000000001,144.44,146.93,148.64000000000001,150.45000000000002,151.52,152.06,153.07,154.15,165.35,18.57,18.72,18.76,18.82,18.84,18.85,18.85,18.84,18.92,N/A,N/A -2012,2,15,11,30,101480,100300,99150,91.56,0,6.37,8.38,9.44,10.57,11.43,12.08,12.33,12.44,13.08,142.58,144.97,147.01,149.63,153.26,157.81,163.42000000000002,168.89000000000001,175.3,18.830000000000002,19.09,19.2,19.3,19.37,19.400000000000002,19.47,19.54,19.59,N/A,N/A -2012,2,15,12,30,101470,100280,99140,92.35000000000001,0,5.99,8.06,9.120000000000001,10.15,10.97,11.66,12.31,12.92,13.790000000000001,127.47,132.85,136.35,138.97,141.48,143.92000000000002,147.85,152.03,160.05,18.66,18.98,19.12,19.19,19.23,19.26,19.3,19.330000000000002,19.400000000000002,N/A,N/A -2012,2,15,13,30,101470,100290,99140,92.05,0.4,5.0600000000000005,6.84,7.66,8.51,9.13,9.58,10.6,11.8,13.34,138.37,139.99,141.64000000000001,144.51,147.48,150.51,154.35,158.44,164.09,18.81,19.03,19.1,19.19,19.25,19.28,19.3,19.31,19.22,N/A,N/A -2012,2,15,14,30,101480,100300,99160,91.38,0.4,5.73,7.73,8.67,9.620000000000001,10.41,11.11,11.78,12.41,13.16,137.81,141.94,145.31,149.96,153.74,156.93,159.45000000000002,161.65,165,18.94,19.240000000000002,19.31,19.28,19.3,19.36,19.38,19.39,19.43,N/A,N/A -2012,2,15,15,30,101500,100320,99180,91.26,0,5.36,7.4,8.45,9.41,10.23,10.96,11.6,12.18,13.67,138.18,142.21,145.02,146.86,148.42000000000002,149.8,152.37,155.31,164.52,18.990000000000002,19.35,19.48,19.580000000000002,19.62,19.61,19.6,19.59,19.62,N/A,N/A -2012,2,15,16,30,101470,100290,99150,90.41,0,5.61,7.68,8.59,9.38,10,10.5,11.03,11.53,13.13,145.08,146.20000000000002,147.1,148.14000000000001,148.79,149.16,149.19,149.13,156.68,19.25,19.52,19.59,19.650000000000002,19.67,19.67,19.66,19.63,19.48,N/A,N/A -2012,2,15,17,30,101470,100290,99150,89.59,3.7,6.63,8.96,10.07,10.9,11.57,12.120000000000001,12.67,13.21,14.58,146.66,149.79,151.86,153.34,154.07,154.20000000000002,154.5,154.85,158.76,19.400000000000002,19.67,19.73,19.75,19.75,19.72,19.650000000000002,19.57,19.28,N/A,N/A -2012,2,15,18,30,101450,100270,99130,90.89,0,5.15,7.5,8.700000000000001,9.9,10.89,11.73,12.41,13.01,13.91,132.94,137.6,140.9,144,146.94,149.74,153.1,156.41,162.56,19.26,19.650000000000002,19.78,19.87,19.900000000000002,19.900000000000002,19.78,19.66,19.5,N/A,N/A -2012,2,15,19,30,101430,100250,99110,90.84,0,5.34,7.53,8.620000000000001,9.74,10.76,11.700000000000001,12.48,13.17,14.23,138.02,142.1,145.14000000000001,148.38,151.35,154.16,156.38,158.31,163.86,19.25,19.62,19.740000000000002,19.830000000000002,19.87,19.89,19.86,19.81,19.580000000000002,N/A,N/A -2012,2,15,20,30,101400,100220,99080,90.65,0,5.25,7.42,8.48,9.52,10.44,11.290000000000001,12.030000000000001,12.69,13.82,150.42000000000002,152.56,154.27,156.36,158.39000000000001,160.41,162.18,163.78,172.39000000000001,19.29,19.69,19.82,19.900000000000002,19.91,19.89,19.81,19.72,19.78,N/A,N/A -2012,2,15,21,30,101410,100230,99090,91.22,0,4.25,6.38,7.45,8.55,9.49,10.290000000000001,11.21,12.14,12.63,150.96,155,157.95000000000002,160.54,162.69,164.49,168.65,173.52,178.48,19.25,19.67,19.8,19.88,19.92,19.94,19.98,20.02,20.02,N/A,N/A -2012,2,15,22,30,101390,100210,99070,92.16,0.4,3.86,6,6.98,7.9,9.06,10.46,11.01,11.28,11.72,150.06,155.48,159.32,162.95000000000002,168.76,176.53,179.87,181.63,185.35,19.07,19.57,19.740000000000002,19.88,20.06,20.26,20.31,20.32,20.330000000000002,N/A,N/A -2012,2,15,23,30,101400,100220,99080,92.45,0,3.65,5.8500000000000005,7.04,8.43,9.450000000000001,10.16,10.620000000000001,10.97,11.24,157.41,162.78,167.59,174.45000000000002,179.8,183.82,187.15,190.03,194.31,18.97,19.56,19.830000000000002,20.150000000000002,20.34,20.44,20.53,20.62,20.71,N/A,N/A -2012,2,16,0,30,101410,100230,99090,91.21000000000001,0.4,4.45,6.8100000000000005,8.01,9.28,10.15,10.66,10.75,10.69,10.65,168.51,173.94,178.14000000000001,183.17000000000002,189.56,196.92000000000002,200.14000000000001,201.81,205.77,19.150000000000002,19.830000000000002,20.12,20.39,20.580000000000002,20.71,20.81,20.89,21.12,N/A,N/A -2012,2,16,1,30,101460,100280,99140,92.34,0,3.37,5.74,6.98,8.23,8.790000000000001,8.78,8.82,8.870000000000001,8.93,174.65,177.96,182.69,192.55,198.44,200.85,202.91,204.72,207.76,19.11,19.84,20.14,20.44,20.56,20.57,20.52,20.46,20.35,N/A,N/A -2012,2,16,2,30,101500,100320,99180,92.64,0.4,3.18,5.79,7,7.57,7.83,7.86,7.890000000000001,7.92,7.98,186.91,188.87,193.22,203.87,209.58,211.44,213.22,214.84,218.83,19.09,19.97,20.34,20.63,20.75,20.740000000000002,20.7,20.64,20.59,N/A,N/A -2012,2,16,3,30,101550,100370,99230,91.91,0,3.38,5.79,6.59,6.61,6.58,6.5200000000000005,6.49,6.48,6.49,196.47,201.65,208.85,222.89000000000001,229.8,231.72,233.43,234.94,238.84,19.330000000000002,20.29,20.6,20.71,20.740000000000002,20.7,20.64,20.59,20.5,N/A,N/A -2012,2,16,4,30,101580,100400,99260,92.48,0.4,2.63,3.81,4.14,4.38,4.59,4.79,4.97,5.13,5.39,248.23000000000002,252.05,254.93,258.51,261.28000000000003,263.54,264.61,265.29,265.9,19.14,19.66,19.8,19.900000000000002,19.96,20,20,19.990000000000002,19.900000000000002,N/A,N/A -2012,2,16,5,30,101600,100420,99280,92.66,0.4,2.58,3.62,3.79,3.77,3.7,3.6,3.5300000000000002,3.47,3.59,266.41,272.29,275.81,277.96,280.18,282.47,284.05,285.29,285.81,19.13,19.84,20.02,20.03,20.05,20.09,20.16,20.240000000000002,20.25,N/A,N/A -2012,2,16,6,30,101650,100470,99330,93.4,0,3.15,4.17,4.3500000000000005,4.58,4.83,5.08,5.34,5.58,6.08,292.82,303.23,309.08,313.69,316.97,319.39,321.02,322.36,324.51,19.06,19.59,19.75,19.82,19.85,19.86,19.830000000000002,19.8,19.77,N/A,N/A -2012,2,16,7,30,101690,100510,99370,93.19,0,2.77,4.13,4.44,4.51,4.58,4.66,4.78,4.9,5.22,321.68,327.97,331.85,335.13,337.76,339.99,341.7,343.16,344.48,19.17,19.6,19.64,19.53,19.69,20.03,20.23,20.38,20.150000000000002,N/A,N/A -2012,2,16,8,30,101740,100550,99400,93.28,0,3.59,4.72,4.98,5.14,5.19,5.18,5.51,5.91,6.640000000000001,333.27,340.43,345.57,351.09000000000003,354.35,356.05,356.49,356.58,353.96,18.900000000000002,19.150000000000002,19.11,18.88,18.64,18.39,18.52,18.72,19.95,N/A,N/A -2012,2,16,9,30,101770,100570,99420,96.04,0,3.73,4.8500000000000005,5.33,5.74,6.11,6.44,6.63,6.7700000000000005,7.03,347.04,349.65000000000003,351.91,354.90000000000003,356.76,357.85,358.6,359.23,0.15,18.12,17.96,17.76,17.42,17.35,17.45,18.28,19.2,20,N/A,N/A -2012,2,16,10,30,101800,100600,99450,99.16,0,4.08,4.83,5.26,5.8,6.28,6.74,6.96,7.12,7.6000000000000005,354.43,359.27,3.86,10.89,14.59,16.27,16.080000000000002,15.52,12.76,17.43,17.330000000000002,17.29,17.240000000000002,16.87,16.35,17.39,18.56,19.96,N/A,N/A -2012,2,16,11,30,101840,100640,99480,99.21000000000001,0,4.13,4.69,4.95,5.28,5.78,6.4,6.8500000000000005,7.25,8.18,5.93,9.9,12.46,15,17.740000000000002,20.67,22.95,24.82,24.16,17.42,17.32,17.27,17.19,16.96,16.66,16.32,16.12,18.28,N/A,N/A -2012,2,16,12,30,101870,100670,99510,99.26,0,5.51,5.82,5.97,6.25,6.78,7.43,7.930000000000001,8.38,9.120000000000001,14.69,15.24,16.26,18.330000000000002,20.98,23.98,26.17,27.92,28.2,16.51,16.23,16.080000000000002,15.89,16.1,16.490000000000002,17.6,18.67,19.84,N/A,N/A -2012,2,16,13,30,101930,100730,99560,99.23,0,5.15,5.37,5.41,5.48,5.91,6.57,7,7.390000000000001,8.17,26.82,26.77,26.77,26.830000000000002,28.080000000000002,30.04,31.67,33.04,34.19,16,15.68,15.52,15.32,15.34,15.46,16,16.55,17.75,N/A,N/A -2012,2,16,14,30,102000,100790,99630,99.23,0,4.96,5.19,5.22,5.21,5.23,5.26,6.19,7.21,8.14,25.27,26.75,27.830000000000002,29.16,31.17,33.36,37.33,41.18,42.31,16.1,15.82,15.69,15.55,15.33,15.08,15.36,15.76,17.19,N/A,N/A -2012,2,16,15,30,102010,100800,99630,98.52,0,5.44,5.71,5.74,5.75,5.9,6.11,6.86,7.57,8.28,19.37,19.62,19.92,20.38,22.13,24.32,30.54,36.09,39.17,15.63,15.26,15.09,14.94,14.74,14.55,15.3,16.01,17.12,N/A,N/A -2012,2,16,16,30,102030,100820,99650,96.89,0,4.89,5.16,5.25,5.36,5.87,6.59,7.140000000000001,7.62,8.32,26.42,26.73,27.18,27.93,30.35,33.65,36.02,38.11,41.53,15.77,15.43,15.26,15.09,15.01,14.98,15.18,15.43,16.26,N/A,N/A -2012,2,16,17,30,102010,100810,99640,93.12,0,5.76,6.13,6.24,6.38,6.8100000000000005,7.390000000000001,7.86,8.28,8.92,38.65,39.050000000000004,39.45,40.11,41.36,42.910000000000004,43.86,44.61,45.29,16.29,15.96,15.8,15.64,15.540000000000001,15.48,15.55,15.66,16.12,N/A,N/A -2012,2,16,18,30,102000,100790,99630,90.94,0,5.0200000000000005,5.33,5.4,5.48,6.03,6.88,7.28,7.6000000000000005,8.22,64.09,63.9,63.61,63.22,61.46,58.86,57.15,55.67,52.97,16.79,16.48,16.32,16.15,16.07,16.05,16.06,16.09,16.330000000000002,N/A,N/A -2012,2,16,19,30,102000,100790,99630,89.44,0,4.51,4.83,5.16,5.88,6.38,6.74,7.05,7.32,7.9,47.980000000000004,48.120000000000005,48.28,48.46,47.59,46.19,44.63,43.25,41.94,17.1,16.830000000000002,16.73,16.68,16.79,16.97,17.11,17.240000000000002,17.44,N/A,N/A -2012,2,16,20,30,101960,100760,99600,86.06,0,3.18,4.12,4.64,5.07,5.51,5.95,6.3500000000000005,6.71,7.33,64.47,62.83,61.85,60.870000000000005,59.79,58.660000000000004,57.54,56.49,54.58,17.47,17.37,17.39,17.490000000000002,17.650000000000002,17.830000000000002,17.96,18.06,18.18,N/A,N/A -2012,2,16,21,30,101980,100780,99620,83.39,0,1.76,1.97,2.21,2.82,3.29,3.62,3.94,4.25,4.7700000000000005,116.3,119.29,116.42,102.81,94.7,91,87.63,84.47,78.16,17.87,17.56,17.47,17.54,17.56,17.54,17.53,17.53,17.54,N/A,N/A -2012,2,16,22,30,101900,100710,99550,85.37,0,3.87,4.59,4.98,5.51,5.82,6.01,6.17,6.3100000000000005,6.47,101.63,99.5,97.31,93.52,90.67,88.46000000000001,86.43,84.58,80.84,17.84,17.73,17.71,17.740000000000002,17.77,17.79,17.900000000000002,18.01,18.05,N/A,N/A -2012,2,16,23,30,101910,100710,99560,88.58,0,3.13,4.22,4.8500000000000005,5.54,6.05,6.44,6.63,6.78,6.92,77.14,80.24,82.34,84.07000000000001,84.27,83.63,82.05,80.42,76.24,17.86,17.85,17.85,17.89,17.95,18.01,18.09,18.16,18.32,N/A,N/A -2012,2,17,0,30,101940,100740,99590,91.66,0,1.95,3.14,3.83,4.51,4.98,5.3100000000000005,5.63,5.92,6.3500000000000005,42.45,59,68.60000000000001,72.8,74.67,75.17,74.82000000000001,74.31,72.36,17.71,17.87,17.97,18.06,18.17,18.29,18.490000000000002,18.68,18.93,N/A,N/A -2012,2,17,1,30,101970,100770,99610,92.32000000000001,0,1.79,2.24,2.35,2.54,2.7600000000000002,3,3.2800000000000002,3.56,4.11,5.68,23.31,33.77,42.47,49.2,54.86,58.89,62.36,66.57000000000001,17.79,17.85,17.88,17.900000000000002,17.92,17.95,17.98,18.02,18.09,N/A,N/A -2012,2,17,2,30,101960,100770,99610,90.07000000000001,0,2.48,3.31,3.63,3.81,4.01,4.22,4.44,4.65,5.08,43.71,54.06,60,63.61,66.84,69.85000000000001,72.47,74.81,78.66,17.72,17.86,17.91,17.900000000000002,17.89,17.89,17.87,17.85,17.81,N/A,N/A -2012,2,17,3,30,101950,100750,99590,90.69,0,2.92,3.58,3.9,4.2,4.39,4.5,4.64,4.7700000000000005,5.11,30.92,35.72,40.68,48.44,53.44,56.65,59.620000000000005,62.300000000000004,67.1,17.6,17.57,17.6,17.69,17.71,17.7,17.66,17.62,17.54,N/A,N/A -2012,2,17,4,30,101880,100680,99520,89.74,0,4.0600000000000005,4.73,5.07,5.47,5.7700000000000005,6.01,6.2,6.37,6.78,54.17,55.24,57.47,62.31,66.58,70.39,72.67,74.52,77.67,17.56,17.46,17.45,17.51,17.53,17.54,17.51,17.47,17.36,N/A,N/A -2012,2,17,5,30,101880,100680,99520,91.08,0.7000000000000001,3.5300000000000002,4.16,4.49,4.8100000000000005,5.13,5.45,5.73,5.98,6.2700000000000005,41.51,47.63,52.24,57.75,62.22,66.08,68.78,71.06,74.35000000000001,17.35,17.23,17.2,17.19,17.18,17.17,17.11,17.04,16.75,N/A,N/A -2012,2,17,6,30,101860,100660,99500,87.63,0,4.25,4.9,5.24,5.66,6.03,6.38,6.61,6.8100000000000005,7.0600000000000005,46.2,50.35,53.85,58.61,63.7,68.68,71.09,72.79,73.31,17.52,17.35,17.27,17.23,17.21,17.19,17.080000000000002,16.95,16.6,N/A,N/A -2012,2,17,7,30,101840,100640,99470,87.98,0,6.6000000000000005,7.09,7.22,7.34,7.62,7.96,8.19,8.31,7.76,74.46000000000001,74.45,74.45,74.43,74.37,74.28,73.98,73.63,72.59,16.79,16.490000000000002,16.32,16.15,16.01,15.89,15.870000000000001,15.860000000000001,15.790000000000001,N/A,N/A -2012,2,17,8,30,101820,100610,99450,85.99,0,7.63,8.2,8.31,8.35,8.370000000000001,8.370000000000001,8.38,8.42,8.69,64.69,64.9,65.05,65.22,65.44,65.66,66.06,66.67,71.19,16.61,16.28,16.11,15.91,15.73,15.55,15.36,15.19,15,N/A,N/A -2012,2,17,9,30,101800,100600,99430,90.23,0,7.07,7.61,7.73,7.78,7.8,7.82,7.83,7.8500000000000005,8.08,62.39,62.660000000000004,62.85,63.08,63.34,63.6,63.980000000000004,64.38,66.51,16.57,16.23,16.05,15.860000000000001,15.67,15.49,15.3,15.120000000000001,14.780000000000001,N/A,N/A -2012,2,17,10,30,101790,100590,99420,87.98,0,7.5200000000000005,8.14,8.290000000000001,8.35,8.39,8.4,8.41,8.41,8.44,64.26,64.43,64.54,64.68,64.83,64.99,65.22,65.44,66.17,16.69,16.37,16.19,15.99,15.8,15.620000000000001,15.42,15.24,14.870000000000001,N/A,N/A -2012,2,17,11,30,101780,100570,99410,86.36,0,8.040000000000001,8.700000000000001,8.85,8.91,8.94,8.96,8.96,8.96,8.98,69.03,69.19,69.32000000000001,69.46000000000001,69.61,69.76,69.96000000000001,70.16,70.82000000000001,16.61,16.28,16.1,15.9,15.71,15.530000000000001,15.33,15.15,14.780000000000001,N/A,N/A -2012,2,17,12,30,101770,100570,99400,86.38,0.4,7.8500000000000005,8.51,8.67,8.74,8.77,8.790000000000001,8.790000000000001,8.790000000000001,8.78,69.5,69.73,69.89,70.07000000000001,70.27,70.46000000000001,70.72,70.97,71.7,16.5,16.16,15.98,15.790000000000001,15.59,15.41,15.21,15.030000000000001,14.66,N/A,N/A -2012,2,17,13,30,101770,100570,99400,87.32000000000001,0,7.98,8.620000000000001,8.75,8.8,8.82,8.83,8.82,8.8,8.78,64.95,65.24,65.43,65.62,65.82000000000001,66.01,66.26,66.51,67.26,16.4,16.05,15.870000000000001,15.67,15.48,15.290000000000001,15.1,14.92,14.540000000000001,N/A,N/A -2012,2,17,14,30,101790,100590,99420,88.04,0,7.84,8.46,8.61,8.67,8.69,8.71,8.700000000000001,8.69,8.68,74.75,75.02,75.19,75.37,75.57000000000001,75.77,76.03,76.29,77.07000000000001,16.4,16.05,15.870000000000001,15.68,15.48,15.3,15.1,14.92,14.55,N/A,N/A -2012,2,17,15,30,101800,100600,99430,88.42,0,7.33,7.9,8.02,8.08,8.1,8.1,8.1,8.09,8.08,74.12,74.35000000000001,74.54,74.74,74.95,75.14,75.4,75.65,76.44,16.5,16.16,15.98,15.780000000000001,15.59,15.41,15.21,15.030000000000001,14.65,N/A,N/A -2012,2,17,16,30,101770,100570,99400,89.53,0,7.25,7.79,7.9,7.930000000000001,7.94,7.94,7.930000000000001,7.930000000000001,7.96,79.62,79.85000000000001,80.03,80.22,80.43,80.65,80.98,81.34,83.65,16.51,16.18,16,15.8,15.610000000000001,15.43,15.24,15.06,14.75,N/A,N/A -2012,2,17,17,30,101760,100560,99390,90.69,0,6.87,7.4,7.5200000000000005,7.57,7.6000000000000005,7.61,7.61,7.61,7.61,72.71000000000001,73.06,73.32000000000001,73.59,73.86,74.13,74.44,74.74,75.60000000000001,16.6,16.27,16.09,15.89,15.700000000000001,15.52,15.32,15.14,14.76,N/A,N/A -2012,2,17,18,30,101730,100530,99360,91.04,0,7.62,8.22,8.36,8.41,8.44,8.44,8.44,8.42,8.38,67.43,67.84,68.11,68.41,68.71000000000001,69,69.35000000000001,69.69,70.58,16.56,16.22,16.04,15.84,15.65,15.47,15.27,15.09,14.71,N/A,N/A -2012,2,17,19,30,101730,100530,99360,91.09,0,7.44,8.02,8.15,8.2,8.22,8.22,8.21,8.19,8.14,68.14,68.53,68.79,69.07000000000001,69.35000000000001,69.63,69.97,70.31,71.31,16.55,16.21,16.03,15.83,15.64,15.46,15.26,15.08,14.700000000000001,N/A,N/A -2012,2,17,20,30,101690,100490,99320,91.24,0,7.68,8.25,8.35,8.370000000000001,8.370000000000001,8.34,8.3,8.27,8.18,64.83,65.21000000000001,65.54,65.9,66.28,66.67,67.18,67.71000000000001,69.57000000000001,16.32,15.97,15.790000000000001,15.59,15.4,15.22,15.030000000000001,14.85,14.49,N/A,N/A -2012,2,17,21,30,101660,100460,99290,88.94,0,7.3100000000000005,7.8500000000000005,7.96,7.99,8,7.99,7.97,7.96,7.930000000000001,66.51,66.69,66.78,66.89,67.02,67.16,67.39,67.64,69.35000000000001,16.35,16,15.82,15.620000000000001,15.43,15.25,15.05,14.870000000000001,14.5,N/A,N/A -2012,2,17,22,30,101630,100420,99260,88.83,0,7.43,7.95,8.05,8.08,8.09,8.08,8.06,8.040000000000001,8.040000000000001,69.34,69.53,69.7,69.89,70.09,70.31,70.63,70.96000000000001,72.51,16.39,16.04,15.860000000000001,15.67,15.47,15.290000000000001,15.1,14.91,14.540000000000001,N/A,N/A -2012,2,17,23,30,101600,100390,99230,89.57000000000001,0,7.5,8.06,8.16,8.2,8.2,8.19,8.17,8.15,8.11,65.84,66.14,66.35,66.56,66.81,67.05,67.43,67.84,69.99,16.46,16.11,15.94,15.74,15.55,15.370000000000001,15.17,15,14.65,N/A,N/A -2012,2,18,0,30,101610,100410,99250,89.55,0,7.5,8.07,8.17,8.2,8.21,8.21,8.21,8.21,8.2,67.73,67.93,68.06,68.22,68.44,68.67,69.10000000000001,69.64,73.27,16.59,16.26,16.080000000000002,15.89,15.700000000000001,15.52,15.32,15.15,14.88,N/A,N/A -2012,2,18,1,30,101630,100430,99260,90.11,0,7.04,7.57,7.67,7.7,7.72,7.72,7.74,7.7700000000000005,7.94,62.74,63.11,63.35,63.63,63.96,64.3,64.95,65.74,70.68,16.7,16.38,16.2,16.01,15.82,15.64,15.46,15.290000000000001,15.05,N/A,N/A -2012,2,18,2,30,101600,100400,99230,90.31,0,7.26,7.8,7.91,7.95,7.99,8.01,8.120000000000001,8.25,8.620000000000001,74.94,75.19,75.39,75.67,76.05,76.48,77.49,78.71000000000001,84.93,16.77,16.45,16.28,16.09,15.91,15.73,15.56,15.41,15.34,N/A,N/A -2012,2,18,3,30,101540,100350,99180,91.15,0,7.18,7.72,7.82,7.87,7.91,7.94,8.040000000000001,8.18,8.790000000000001,75.91,76.28,76.52,76.85000000000001,77.27,77.72,78.64,79.96000000000001,88.03,16.81,16.5,16.330000000000002,16.14,15.950000000000001,15.780000000000001,15.59,15.43,15.32,N/A,N/A -2012,2,18,4,30,101480,100290,99130,92.32000000000001,0,7.04,7.6000000000000005,7.73,7.83,7.97,8.120000000000001,8.5,8.85,9.120000000000001,78.25,78.74,79.16,79.69,80.54,81.5,84.27,87.02,91.56,16.85,16.55,16.38,16.19,16.02,15.860000000000001,15.72,15.620000000000001,15.540000000000001,N/A,N/A -2012,2,18,5,30,101430,100240,99080,93.34,0,6.67,7.2,7.3500000000000005,7.48,7.8,8.22,8.58,8.89,9.28,82.08,82.67,83.15,83.86,85.41,87.43,89.77,91.97,95.85000000000001,16.91,16.62,16.46,16.28,16.12,15.98,15.88,15.8,15.73,N/A,N/A -2012,2,18,6,30,101380,100190,99030,93.96000000000001,0,6.6000000000000005,7.26,7.58,8.07,8.44,8.73,9.02,9.28,9.69,91.57000000000001,92.32000000000001,93.05,94.26,95.7,97.24000000000001,98.92,100.5,103.65,17.080000000000002,16.81,16.66,16.5,16.35,16.21,16.1,16.01,15.8,N/A,N/A -2012,2,18,7,30,101310,100120,98960,94.9,0,6.46,7.3500000000000005,7.71,8,8.26,8.5,8.74,8.96,9.39,89.84,90.85000000000001,91.62,92.52,93.72,95.05,96.99000000000001,98.96000000000001,104.18,17.26,17.01,16.87,16.7,16.54,16.39,16.26,16.15,16.05,N/A,N/A -2012,2,18,8,30,101220,100030,98880,95.88,0,6.78,7.6000000000000005,7.92,8.2,8.47,8.73,9.03,9.31,9.83,82.39,83.14,83.81,84.82000000000001,86.31,88.09,91.41,94.96000000000001,105.44,17.28,17.04,16.9,16.740000000000002,16.61,16.5,16.47,16.46,16.54,N/A,N/A -2012,2,18,9,30,101140,99950,98800,96.41,0,7.18,8.03,8.35,8.63,8.91,9.17,9.49,9.81,10.67,85.10000000000001,85.99,86.61,87.46000000000001,88.53,89.73,91.55,93.41,100.58,17.36,17.13,16.990000000000002,16.830000000000002,16.69,16.56,16.490000000000002,16.45,16.48,N/A,N/A -2012,2,18,10,30,101080,99890,98740,97.57000000000001,0,7.13,8.120000000000001,8.51,8.89,9.26,9.61,10.01,10.39,11.46,99.22,99.62,99.96000000000001,100.41,100.98,101.61,102.54,103.48,109.27,17.52,17.3,17.18,17.06,16.97,16.91,16.86,16.82,16.9,N/A,N/A -2012,2,18,11,30,101050,99870,98720,97.37,0,6.91,8.17,8.78,9.44,10.06,10.65,11.03,11.34,11.68,100.91,102.03,103.10000000000001,104.7,107.29,110.55,116.87,123.34,133.9,17.72,17.64,17.6,17.57,17.57,17.6,17.64,17.69,17.73,N/A,N/A -2012,2,18,12,30,101030,99840,98700,96.67,0,6.12,7.33,7.930000000000001,8.6,9.28,9.98,10.59,11.14,11.1,101.19,102.74000000000001,104.37,107.18,110.8,115.04,122.9,131.15,140.70000000000002,17.86,17.82,17.82,17.85,17.89,17.95,18.04,18.14,18.16,N/A,N/A -2012,2,18,13,30,100970,99790,98650,96.23,78.4,4.67,5.7,6.3,7.0200000000000005,7.5,7.74,7.83,7.86,7.76,90.53,93.10000000000001,96.01,100.82000000000001,109.4,123.10000000000001,130.77,135.28,142.48,17.96,17.98,17.98,17.990000000000002,18.07,18.22,18.28,18.3,18.330000000000002,N/A,N/A -2012,2,18,14,30,100860,99680,98540,95.31,11.4,4.73,6.28,6.68,6.69,6.74,6.8100000000000005,6.96,7.11,7.41,115.93,120.61,126.28,134.62,138.70000000000002,140.84,142.65,144.24,147.39000000000001,18.17,18.61,18.87,19.14,19.240000000000002,19.26,19.23,19.19,19.1,N/A,N/A -2012,2,18,15,30,100860,99670,98530,99.33,16.1,7.51,7.75,7.44,6.57,5.72,4.94,4.14,3.49,2.31,25.150000000000002,27.88,29.87,31.76,33.26,34.45,36.31,37.96,48.26,16.39,16.59,16.84,17.27,17.56,17.78,17.900000000000002,18,18.06,N/A,N/A -2012,2,18,16,30,100850,99660,98520,98.56,28.900000000000002,6.140000000000001,5.55,5.01,4.36,3.68,3.06,2.36,1.81,0.8,52.81,56.07,58.13,59.9,59.92,59.19,54.42,49.59,4.93,16.79,16.98,17.12,17.19,17.27,17.35,17.400000000000002,17.44,17.52,N/A,N/A -2012,2,18,17,30,100760,99570,98430,98.2,133.3,4.43,3.52,2.74,2.0100000000000002,1.68,1.48,2.08,2.84,4.72,42.12,34.65,24.59,12.74,340.02,307.48,287.26,266.92,254.56,17.080000000000002,17.55,17.71,17.740000000000002,17.76,17.78,17.77,17.76,17.740000000000002,N/A,N/A -2012,2,18,18,30,100790,99610,98460,97.99000000000001,1.1,1.11,1.96,2.47,3.16,3.8200000000000003,4.45,5.05,5.62,6.7,165.55,195.32,213.9,224.3,231.21,235.39000000000001,238,240.15,242.93,17.76,17.71,17.66,17.57,17.5,17.45,17.42,17.400000000000002,17.42,N/A,N/A -2012,2,18,19,30,100810,99630,98480,98.03,0.4,3,3.33,3.43,3.48,3.49,3.49,3.5500000000000003,3.62,4.03,300.97,300.12,298.68,295.93,293.85,292.22,291.25,290.42,287.65000000000003,17.53,17.28,17.17,17.1,17.04,16.98,16.91,16.86,16.79,N/A,N/A -2012,2,18,20,30,100850,99660,98510,98.04,0.4,3.83,3.95,3.96,4.11,4.17,4.15,4.11,4.08,4.34,318.33,318.33,317.86,315.93,314.53000000000003,313.5,309.47,304.87,294.67,17.03,16.75,16.6,16.46,16.35,16.26,16.23,16.22,16.26,N/A,N/A -2012,2,18,21,30,100840,99640,98490,95.35000000000001,0,4.84,5.03,5.0200000000000005,4.97,4.9,4.82,4.64,4.5,4.41,329.87,329.81,329.69,329.51,328.73,327.74,322.88,318.1,308.62,16.41,16.080000000000002,15.91,15.72,15.52,15.34,15.35,15.38,15.59,N/A,N/A -2012,2,18,22,30,100880,99690,98530,94.34,0,3.7600000000000002,3.93,3.96,3.97,4.0200000000000005,4.11,4.43,4.78,5.25,318.81,318.59000000000003,318.31,317.82,316.46,314.65000000000003,309.62,304.49,299.3,16.490000000000002,16.17,16,15.8,15.620000000000001,15.44,15.33,15.25,15.15,N/A,N/A -2012,2,18,23,30,100900,99710,98550,94.33,0,4.9,5.19,5.2700000000000005,5.34,5.5600000000000005,5.87,6.5,7.140000000000001,7.72,312.69,311.85,311.02,309.64,306.92,303.29,298.1,293.03000000000003,289.76,16.34,16.02,15.85,15.67,15.51,15.370000000000001,15.290000000000001,15.21,15.11,N/A,N/A -2012,2,19,0,30,100980,99790,98630,94.43,0,6.37,6.8,6.9,6.95,6.98,7,7.05,7.09,7.42,296.96,295.91,295.26,294.51,293.72,292.90000000000003,291.83,290.76,286.87,16.11,15.780000000000001,15.6,15.4,15.22,15.040000000000001,14.85,14.68,14.370000000000001,N/A,N/A -2012,2,19,1,30,101030,99840,98670,90.99,3.3000000000000003,8.71,9.450000000000001,9.66,9.77,9.84,9.89,9.92,9.94,9.97,293.90000000000003,294.17,294.24,294.29,294.31,294.33,294.33,294.33,294.29,16.09,15.72,15.540000000000001,15.33,15.14,14.950000000000001,14.75,14.56,14.18,N/A,N/A -2012,2,19,2,30,101100,99900,98730,89.29,0,10.92,11.950000000000001,12.23,12.39,12.5,12.58,12.64,12.700000000000001,12.8,293.93,294,294.02,294.03000000000003,294.04,294.04,294.04,294.04,294.04,15.43,15,14.790000000000001,14.58,14.38,14.19,13.99,13.8,13.42,N/A,N/A -2012,2,19,3,30,101180,99980,98810,87.91,0,12.11,13.25,13.58,13.76,13.88,13.97,14.040000000000001,14.09,14.16,293.2,293.43,293.56,293.7,293.82,293.94,294.07,294.19,294.45,14.85,14.370000000000001,14.16,13.94,13.74,13.540000000000001,13.34,13.15,12.76,N/A,N/A -2012,2,19,4,30,101250,100040,98860,86.27,0,11.8,12.790000000000001,13.06,13.200000000000001,13.27,13.32,13.34,13.36,13.36,297.48,297.8,298.02,298.23,298.43,298.62,298.84000000000003,299.04,299.5,13.780000000000001,13.23,13,12.780000000000001,12.57,12.370000000000001,12.17,11.98,11.59,N/A,N/A -2012,2,19,5,30,101310,100100,98920,86.05,0,11.44,12.49,12.790000000000001,12.96,13.08,13.16,13.22,13.27,13.33,305.07,305.62,305.95,306.24,306.51,306.76,307.02,307.25,307.73,13.52,12.950000000000001,12.72,12.5,12.280000000000001,12.08,11.870000000000001,11.68,11.28,N/A,N/A -2012,2,19,6,30,101430,100210,99030,84.66,0,13.11,14.280000000000001,14.68,14.88,15.030000000000001,15.13,15.200000000000001,15.27,15.35,314.44,314.63,314.78000000000003,314.93,315.06,315.19,315.32,315.44,315.7,13.33,12.74,12.49,12.25,12.030000000000001,11.83,11.620000000000001,11.43,11.03,N/A,N/A -2012,2,19,7,30,101490,100270,99090,86.77,0,11.68,12.71,12.99,13.14,13.24,13.31,13.34,13.370000000000001,13.39,315.1,315.21,315.31,315.39,315.48,315.56,315.64,315.71,315.88,13.09,12.49,12.25,12.01,11.790000000000001,11.59,11.38,11.19,10.790000000000001,N/A,N/A -2012,2,19,8,30,101540,100320,99140,84.16,0,12.3,13.42,13.74,13.92,14.040000000000001,14.13,14.19,14.24,14.31,328.46,328.59000000000003,328.66,328.72,328.76,328.81,328.85,328.90000000000003,328.98,12.76,12.13,11.89,11.65,11.43,11.23,11.02,10.82,10.42,N/A,N/A -2012,2,19,9,30,101600,100380,99190,84.88,0,11.93,12.96,13.26,13.42,13.52,13.6,13.65,13.69,13.74,334.3,334.3,334.31,334.31,334.31,334.31,334.32,334.32,334.33,12.32,11.68,11.43,11.200000000000001,10.98,10.77,10.56,10.370000000000001,9.97,N/A,N/A -2012,2,19,10,30,101660,100440,99250,86.17,0,11.31,12.25,12.51,12.64,12.73,12.790000000000001,12.83,12.86,12.9,336.98,337.08,337.14,337.2,337.25,337.3,337.34000000000003,337.38,337.47,12.040000000000001,11.4,11.15,10.91,10.700000000000001,10.49,10.28,10.08,9.69,N/A,N/A -2012,2,19,11,30,101740,100510,99320,84.56,0,11.59,12.56,12.84,12.98,13.08,13.15,13.200000000000001,13.23,13.280000000000001,344.31,344.34000000000003,344.36,344.38,344.39,344.40000000000003,344.42,344.44,344.46,11.67,11,10.74,10.5,10.28,10.08,9.86,9.66,9.26,N/A,N/A -2012,2,19,12,30,101800,100570,99370,85.68,0,11.07,11.98,12.24,12.38,12.48,12.55,12.6,12.63,12.69,347.82,347.90000000000003,347.95,347.99,348.04,348.08,348.12,348.17,348.26,11.36,10.68,10.43,10.19,9.97,9.76,9.55,9.35,8.96,N/A,N/A -2012,2,19,13,30,101850,100610,99420,84.83,0,10.98,11.88,12.13,12.26,12.35,12.41,12.450000000000001,12.48,12.52,352.32,352.35,352.36,352.37,352.38,352.39,352.40000000000003,352.41,352.45,11.17,10.48,10.23,9.99,9.76,9.56,9.35,9.15,8.75,N/A,N/A -2012,2,19,14,30,101910,100680,99490,84.93,0,10.21,10.97,11.19,11.3,11.370000000000001,11.42,11.450000000000001,11.47,11.5,354.18,354.1,354.04,353.98,353.94,353.89,353.84000000000003,353.8,353.72,11.05,10.39,10.13,9.9,9.68,9.47,9.26,9.07,8.67,N/A,N/A -2012,2,19,15,30,101960,100720,99530,82.8,0,8.81,9.43,9.6,9.69,9.74,9.790000000000001,9.81,9.84,9.88,354.15000000000003,354.13,354.12,354.11,354.1,354.09000000000003,354.08,354.08,354.08,11.06,10.44,10.19,9.96,9.75,9.55,9.34,9.15,8.76,N/A,N/A -2012,2,19,16,30,101980,100750,99560,80.67,0,7.37,7.84,7.97,8.03,8.08,8.11,8.13,8.15,8.17,352.77,352.91,353.01,353.11,353.2,353.29,353.38,353.46,353.64,11.36,10.78,10.55,10.33,10.120000000000001,9.92,9.71,9.52,9.120000000000001,N/A,N/A -2012,2,19,17,30,101970,100740,99550,78.26,0,6.32,6.69,6.79,6.84,6.87,6.890000000000001,6.91,6.92,6.94,346.74,346.85,346.93,347,347.07,347.13,347.21,347.28000000000003,347.45,11.88,11.34,11.120000000000001,10.9,10.69,10.5,10.290000000000001,10.1,9.71,N/A,N/A -2012,2,19,18,30,101960,100740,99550,76.29,0,5.3,5.6000000000000005,5.69,5.73,5.7700000000000005,5.8,5.82,5.84,5.86,342.33,342.71,342.97,343.2,343.43,343.62,343.84000000000003,344.05,344.47,12.49,12,11.790000000000001,11.57,11.370000000000001,11.17,10.97,10.78,10.38,N/A,N/A -2012,2,19,19,30,101970,100750,99560,74.3,0,4.07,4.26,4.3100000000000005,4.34,4.36,4.37,4.39,4.39,4.41,334.6,335.72,336.48,337.2,337.85,338.46,339.06,339.63,340.78000000000003,13.08,12.64,12.43,12.22,12.02,11.83,11.63,11.44,11.05,N/A,N/A -2012,2,19,20,30,101940,100720,99530,73.97,0,3.5500000000000003,3.67,3.67,3.67,3.65,3.64,3.62,3.6,3.5700000000000003,319.14,320.37,321.18,321.98,322.72,323.40000000000003,324.15000000000003,324.85,326.35,13.41,12.98,12.780000000000001,12.57,12.370000000000001,12.19,11.98,11.790000000000001,11.4,N/A,N/A -2012,2,19,21,30,101920,100700,99520,72.4,0,3.11,3.24,3.27,3.2800000000000002,3.29,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,312.72,313.42,313.87,314.3,314.71,315.09000000000003,315.49,315.88,316.71,13.73,13.33,13.13,12.92,12.72,12.530000000000001,12.32,12.14,11.74,N/A,N/A -2012,2,19,22,30,101910,100690,99510,71.46000000000001,0,2.49,2.57,2.57,2.56,2.5500000000000003,2.54,2.52,2.5100000000000002,2.49,312.64,314.04,315.02,315.95,316.84000000000003,317.66,318.51,319.29,321.02,14.16,13.77,13.58,13.38,13.18,12.99,12.790000000000001,12.6,12.21,N/A,N/A -2012,2,19,23,30,101900,100680,99500,71.26,0,1.93,2,2.02,2.02,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.0300000000000002,307.21,307.59000000000003,307.82,308.08,308.33,308.57,308.86,309.14,309.85,14.19,13.81,13.620000000000001,13.41,13.22,13.030000000000001,12.83,12.64,12.25,N/A,N/A -2012,2,20,0,30,101900,100680,99500,69.03,0,1.17,1.23,1.25,1.26,1.27,1.28,1.29,1.29,1.31,313.44,315.11,316.22,317.27,318.3,319.27,320.29,321.26,323.49,14.48,14.11,13.93,13.73,13.530000000000001,13.34,13.14,12.950000000000001,12.56,N/A,N/A -2012,2,20,1,30,101900,100680,99500,68.85000000000001,0,0.9400000000000001,1.01,1.04,1.07,1.1,1.12,1.1500000000000001,1.17,1.22,353.98,354.35,354.45,354.54,354.69,354.86,355.06,355.25,355.81,14.69,14.34,14.15,13.950000000000001,13.75,13.56,13.36,13.17,12.780000000000001,N/A,N/A -2012,2,20,2,30,101920,100700,99530,69.60000000000001,0,1.04,1.09,1.1,1.11,1.12,1.1300000000000001,1.1500000000000001,1.16,1.2,74.78,73.27,72.13,71.09,70.15,69.3,68.45,67.67,66.18,14.8,14.44,14.26,14.06,13.86,13.67,13.47,13.280000000000001,12.9,N/A,N/A -2012,2,20,3,30,101920,100700,99520,71.76,0,2.54,2.65,2.68,2.69,2.71,2.72,2.73,2.74,2.7600000000000002,91.4,90.73,90.29,89.87,89.47,89.10000000000001,88.71000000000001,88.34,87.56,14.75,14.38,14.19,13.99,13.790000000000001,13.61,13.4,13.22,12.83,N/A,N/A -2012,2,20,4,30,101910,100700,99520,72.33,0,2.58,2.7600000000000002,2.83,2.88,2.93,2.97,3.02,3.06,3.16,97.69,97.36,97.11,96.86,96.63,96.41,96.17,95.93,95.41,14.83,14.46,14.27,14.07,13.88,13.69,13.49,13.3,12.92,N/A,N/A -2012,2,20,5,30,101910,100700,99520,68.83,0,4.43,4.8,4.92,5,5.07,5.12,5.17,5.21,5.28,95.42,95.14,94.94,94.74,94.57000000000001,94.41,94.25,94.10000000000001,93.8,15.42,15.06,14.870000000000001,14.67,14.47,14.280000000000001,14.08,13.89,13.5,N/A,N/A -2012,2,20,6,30,101940,100730,99550,70.63,0,6.01,6.4,6.49,6.53,6.55,6.5600000000000005,6.57,6.57,6.5600000000000005,106.88,106.86,106.88,106.93,106.97,107.01,107.06,107.11,107.21000000000001,15.44,15.07,14.89,14.68,14.49,14.3,14.09,13.9,13.51,N/A,N/A -2012,2,20,7,30,101960,100750,99570,70.26,0,6.66,7.13,7.23,7.28,7.3,7.32,7.32,7.32,7.3,107.03,107.34,107.52,107.67,107.82000000000001,107.94,108.09,108.21000000000001,108.45,15.57,15.200000000000001,15.02,14.82,14.61,14.42,14.22,14.030000000000001,13.64,N/A,N/A -2012,2,20,8,30,101960,100740,99570,74.52,0,6.92,7.45,7.62,7.71,7.78,7.83,7.87,7.91,7.97,119.57000000000001,119.45,119.38,119.33,119.28,119.23,119.2,119.17,119.11,15.46,15.09,14.9,14.700000000000001,14.5,14.31,14.1,13.91,13.52,N/A,N/A -2012,2,20,9,30,101940,100730,99550,77.5,0,7.95,8.58,8.73,8.8,8.82,8.83,8.81,8.8,8.74,119.10000000000001,119.44,119.59,119.73,119.86,119.97,120.08,120.18,120.38,15.41,15.030000000000001,14.84,14.63,14.43,14.24,14.030000000000001,13.84,13.450000000000001,N/A,N/A -2012,2,20,10,30,101920,100710,99540,77.05,0,8.4,9.11,9.290000000000001,9.38,9.42,9.450000000000001,9.46,9.47,9.450000000000001,117.57000000000001,117.99000000000001,118.27,118.55,118.81,119.05,119.3,119.54,120.02,15.33,14.94,14.74,14.530000000000001,14.33,14.14,13.93,13.74,13.34,N/A,N/A -2012,2,20,11,30,101920,100710,99540,79.78,0,7.21,7.8100000000000005,8,8.11,8.19,8.26,8.3,8.34,8.4,117.13,117.23,117.3,117.37,117.43,117.49000000000001,117.54,117.58,117.67,15.44,15.06,14.870000000000001,14.66,14.46,14.27,14.06,13.88,13.48,N/A,N/A -2012,2,20,12,30,101920,100710,99530,78.45,0,7.57,8.18,8.35,8.44,8.5,8.55,8.58,8.61,8.65,112.2,112.60000000000001,112.92,113.23,113.52,113.79,114.07000000000001,114.33,114.87,15.47,15.09,14.89,14.69,14.49,14.31,14.1,13.91,13.52,N/A,N/A -2012,2,20,13,30,101930,100720,99540,79.44,0,7,7.54,7.69,7.7700000000000005,7.83,7.87,7.9,7.930000000000001,7.97,120.21000000000001,120.33,120.46000000000001,120.60000000000001,120.72,120.83,120.95,121.07000000000001,121.31,15.610000000000001,15.24,15.05,14.85,14.66,14.47,14.27,14.08,13.69,N/A,N/A -2012,2,20,14,30,101960,100750,99580,78.11,0,7.88,8.59,8.8,8.91,9,9.06,9.1,9.14,9.200000000000001,124.41,124.46000000000001,124.62,124.79,124.97,125.14,125.33,125.52,125.92,15.94,15.59,15.4,15.21,15.01,14.82,14.620000000000001,14.43,14.040000000000001,N/A,N/A -2012,2,20,15,30,101980,100770,99600,79.96000000000001,0,7.66,8.25,8.4,8.46,8.49,8.51,8.51,8.51,8.5,118.56,119.3,119.8,120.34,120.87,121.38,121.95,122.49000000000001,123.69,16.09,15.75,15.57,15.370000000000001,15.18,15,14.8,14.61,14.23,N/A,N/A -2012,2,20,16,30,101980,100780,99600,80.29,0,7.05,7.63,7.7700000000000005,7.84,7.88,7.91,7.92,7.930000000000001,7.92,128.2,128.29,128.45,128.62,128.79,128.96,129.15,129.34,129.76,16.43,16.1,15.93,15.73,15.540000000000001,15.35,15.15,14.96,14.57,N/A,N/A -2012,2,20,17,30,101980,100770,99600,82.13,0,7.45,8.09,8.26,8.34,8.39,8.42,8.44,8.45,8.45,126.75,127.10000000000001,127.37,127.65,127.92,128.17000000000002,128.45,128.7,129.26,16.52,16.2,16.03,15.83,15.64,15.450000000000001,15.25,15.07,14.68,N/A,N/A -2012,2,20,18,30,101980,100770,99600,82.49,0,7.2,7.890000000000001,8.08,8.19,8.27,8.32,8.36,8.39,8.43,130.85,131.22,131.47,131.7,131.91,132.11,132.32,132.52,132.93,16.88,16.59,16.42,16.22,16.03,15.85,15.65,15.47,15.08,N/A,N/A -2012,2,20,19,30,101980,100770,99610,83.84,0,6.84,7.47,7.640000000000001,7.72,7.78,7.82,7.84,7.86,7.88,131.91,132,132.17000000000002,132.39000000000001,132.65,132.93,133.25,133.56,134.38,17.02,16.740000000000002,16.580000000000002,16.39,16.2,16.02,15.82,15.64,15.26,N/A,N/A -2012,2,20,20,30,101950,100750,99580,85.59,0,7.13,7.75,7.9,7.98,8.03,8.06,8.09,8.11,8.23,126.9,127.03,127.21000000000001,127.46000000000001,127.75,128.07,128.52,128.99,130.89000000000001,17.02,16.75,16.580000000000002,16.39,16.21,16.03,15.83,15.66,15.31,N/A,N/A -2012,2,20,21,30,101940,100740,99570,86.07000000000001,0,5.71,6.45,6.7,6.78,6.95,7.16,7.32,7.47,7.71,124.63000000000001,125.23,125.71000000000001,126.26,127.38000000000001,128.86,130.69,132.44,135.95,17.2,16.97,16.82,16.64,16.490000000000002,16.35,16.19,16.05,15.74,N/A,N/A -2012,2,20,22,30,101900,100700,99540,87.48,0,5.82,6.5600000000000005,6.84,7.07,7.25,7.42,7.57,7.69,7.92,141.64000000000001,141.9,142.15,142.48,142.87,143.32,143.95000000000002,144.58,146.36,17.41,17.21,17.080000000000002,16.92,16.76,16.61,16.44,16.29,15.97,N/A,N/A -2012,2,20,23,30,101900,100710,99540,88.74,0,4.96,5.75,6.09,6.4,6.66,6.9,7.08,7.23,7.32,140.22,140.49,140.78,141.20000000000002,141.74,142.4,143.41,144.46,148.06,17.51,17.34,17.23,17.080000000000002,16.94,16.79,16.64,16.5,16.2,N/A,N/A -2012,2,21,0,30,101920,100720,99560,88.88,0,5.12,5.9,6.21,6.49,6.75,7,7.28,7.54,7.97,155.09,155.28,155.51,155.85,156.13,156.37,156.76,157.19,160.79,17.66,17.53,17.42,17.27,17.12,16.97,16.81,16.67,16.41,N/A,N/A -2012,2,21,1,30,101940,100740,99580,90.57000000000001,0,4.47,5.43,5.87,6.3100000000000005,6.75,7.21,7.68,8.13,8.24,154.19,155.97,157.38,159.21,160.65,161.83,162.88,163.88,169.5,17.66,17.61,17.56,17.490000000000002,17.400000000000002,17.29,17.17,17.07,16.85,N/A,N/A -2012,2,21,2,30,101950,100750,99590,92.05,0,5.13,6.0600000000000005,6.5,6.98,7.41,7.8100000000000005,8.09,8.3,8.28,146.18,147.94,149.38,151.32,153.34,155.48,158.25,160.97,164.45000000000002,17.64,17.580000000000002,17.54,17.5,17.47,17.44,17.37,17.3,17.04,N/A,N/A -2012,2,21,3,30,101960,100760,99610,92.16,0,4.78,5.83,6.33,6.86,7.33,7.76,8.01,8.19,8.22,149.18,150.17000000000002,150.98,151.98,153.36,155.05,159.66,164.59,168.74,17.72,17.66,17.62,17.56,17.53,17.5,17.48,17.46,17.22,N/A,N/A -2012,2,21,4,30,101990,100790,99630,92.55,0,3.91,4.96,5.5,6.12,6.5600000000000005,6.87,6.95,6.96,6.98,148.85,150.20000000000002,152.24,156.75,161.69,166.9,169.55,171.32,174.31,17.7,17.69,17.69,17.73,17.740000000000002,17.76,17.68,17.59,17.330000000000002,N/A,N/A -2012,2,21,5,30,102010,100810,99650,95.17,0,2.67,3.7800000000000002,4.39,5.18,5.59,5.69,5.78,5.87,6.1000000000000005,151.3,154.54,158.46,166.35,171.39000000000001,173.95000000000002,176.62,179.12,182.8,17.55,17.56,17.61,17.78,17.82,17.78,17.7,17.63,17.400000000000002,N/A,N/A -2012,2,21,6,30,102020,100830,99670,95.27,0,3.29,4.63,5.3100000000000005,5.89,6.17,6.23,6.38,6.55,6.95,166.33,169.29,173.64000000000001,183.33,188.84,191.22,193.18,194.9,196.68,17.56,17.75,17.87,18.02,18.03,17.97,17.93,17.900000000000002,17.75,N/A,N/A -2012,2,21,7,30,102070,100870,99710,95.81,0,2.45,3.8200000000000003,4.44,4.78,5.0600000000000005,5.3100000000000005,5.55,5.7700000000000005,6.13,176.13,182.33,188.33,196.88,201.22,202.43,203.18,203.75,204.47,17.64,18,18.13,18.14,18.14,18.150000000000002,18.14,18.13,17.97,N/A,N/A -2012,2,21,8,30,102060,100860,99700,96.06,0,2.86,3.81,4.14,4.38,4.63,4.9,5.17,5.42,5.83,187.05,194.06,198.81,202.8,205.57,207.52,208.66,209.53,210.33,17.63,17.86,17.96,18,18.06,18.13,18.14,18.150000000000002,17.98,N/A,N/A -2012,2,21,9,30,102060,100870,99710,96.78,0,2.22,2.97,3.18,3.41,3.63,3.84,4.05,4.25,4.55,187.24,194.5,198.98000000000002,202.25,204.87,207.09,208.95000000000002,210.61,213.66,17.56,17.82,17.92,17.96,17.990000000000002,18.01,18.01,18.01,17.85,N/A,N/A -2012,2,21,10,30,102070,100870,99720,97.11,0,0.88,1.36,1.57,1.82,2.06,2.29,2.52,2.74,3.1,207.43,219.62,226.93,229.68,231.57,232.8,233.57,234.19,235.20000000000002,17.48,17.75,17.86,17.91,17.95,17.97,17.98,17.98,17.85,N/A,N/A -2012,2,21,11,30,102080,100880,99720,97.55,0,0.9400000000000001,1.09,1.09,1.24,1.41,1.59,1.77,1.95,2.24,176.09,197.68,209.85,220.13,226.98000000000002,231.49,234.46,236.9,239.68,17.36,17.580000000000002,17.67,17.72,17.75,17.77,17.78,17.78,17.68,N/A,N/A -2012,2,21,12,30,102090,100890,99730,97.57000000000001,0,0.76,0.91,0.9400000000000001,1.1400000000000001,1.32,1.5,1.6500000000000001,1.79,2.0100000000000002,184.93,210.08,224.1,232.85,238.61,241.68,243.6,245.06,245.91,17.330000000000002,17.59,17.72,17.82,17.89,17.94,17.94,17.94,17.79,N/A,N/A -2012,2,21,13,30,102090,100890,99730,98.26,0,0.4,0.63,0.74,0.86,0.9500000000000001,1.03,1.08,1.1400000000000001,1.24,39.37,7.95,347.1,333.79,323.1,314.47,307.81,302.07,292.90000000000003,17.17,17.34,17.42,17.490000000000002,17.53,17.55,17.56,17.56,17.47,N/A,N/A -2012,2,21,14,30,102160,100950,99780,99.26,0,5.5600000000000005,5.61,5.48,5.28,4.92,4.51,4.05,3.65,2.82,4.95,5.19,5.57,6.44,8.03,9.83,12.07,14.05,18.23,15.94,15.69,15.610000000000001,15.57,15.620000000000001,15.72,15.82,15.9,16.02,N/A,N/A -2012,2,21,15,30,102180,100970,99800,99.22,0,4.91,5.01,4.92,4.76,4.3100000000000005,3.77,3.31,2.95,2.2600000000000002,19.89,19.91,19.89,19.79,20.38,21.240000000000002,24.47,27.7,38.35,15.76,15.49,15.38,15.27,15.32,15.46,15.6,15.71,15.75,N/A,N/A -2012,2,21,16,30,102170,100960,99790,99.23,0,4.93,5.05,5,4.91,4.54,4.07,3.61,3.22,2.46,29.94,29.66,29.150000000000002,28.14,27.03,26.02,28.35,31.080000000000002,42.160000000000004,15.75,15.48,15.36,15.23,15.25,15.35,15.44,15.530000000000001,15.610000000000001,N/A,N/A -2012,2,21,17,30,102160,100950,99780,99.24000000000001,0,5.08,5.22,5.17,5.08,4.78,4.38,3.91,3.5,2.65,36,35.980000000000004,35.89,35.65,35.550000000000004,35.550000000000004,37.52,39.63,48.11,15.8,15.52,15.4,15.290000000000001,15.290000000000001,15.35,15.47,15.6,15.76,N/A,N/A -2012,2,21,18,30,102130,100920,99750,99.31,0,4.3500000000000005,4.43,4.38,4.28,3.99,3.64,3.2800000000000002,2.97,2.44,40.800000000000004,40.89,41.160000000000004,41.77,43,44.42,47.18,49.69,54.46,16,15.75,15.64,15.540000000000001,15.530000000000001,15.58,15.63,15.66,15.58,N/A,N/A -2012,2,21,19,30,102130,100920,99750,99.24000000000001,0,3.72,3.77,3.7,3.59,3.38,3.12,2.87,2.66,2.57,58.06,58.4,58.88,59.92,61.31,62.77,64.83,66.59,68.4,16.19,15.94,15.82,15.69,15.610000000000001,15.540000000000001,15.47,15.39,15.19,N/A,N/A -2012,2,21,20,30,102080,100870,99710,99.25,0,3.29,3.27,3.16,2.98,2.9,2.85,2.71,2.58,2.5,65.82000000000001,67.18,69.69,75.26,77.98,79.18,83.11,86.83,91.87,16.330000000000002,16.1,15.99,15.870000000000001,15.77,15.68,15.6,15.530000000000001,15.34,N/A,N/A -2012,2,21,21,30,102030,100830,99660,98.26,0,2.63,2.65,2.6,2.52,2.45,2.4,2.39,2.38,2.44,79.66,80.65,82.54,86.98,92.26,97.96000000000001,99.94,101.2,111.14,16.52,16.23,16.09,15.950000000000001,15.85,15.77,15.68,15.6,15.43,N/A,N/A -2012,2,21,22,30,101960,100760,99590,97.91,0,3.0300000000000002,3.08,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.0500000000000003,3.04,95.14,97.35000000000001,100.73,107.94,112.42,115.29,116.34,116.84,117.60000000000001,16.55,16.25,16.1,15.97,15.860000000000001,15.76,15.67,15.58,15.39,N/A,N/A -2012,2,21,23,30,101900,100700,99530,97.88,0,2.72,2.89,3.0500000000000003,3.45,3.71,3.86,3.92,3.96,4.03,112.15,115.27,118.60000000000001,124.61,127.76,128.88,129.36,129.67000000000002,130.3,16.61,16.3,16.15,16.01,15.89,15.780000000000001,15.68,15.59,15.39,N/A,N/A -2012,2,22,0,30,101870,100670,99510,98.38,0,3.67,3.89,4.1,4.63,4.87,4.91,4.94,4.97,5.0200000000000005,109.48,112.86,117.61,128.45,133.29,133.94,134.45,134.88,135.72,16.81,16.54,16.41,16.31,16.22,16.12,16.02,15.92,15.72,N/A,N/A -2012,2,22,1,30,101830,100630,99460,98.79,0,3.96,4.62,4.91,5.12,5.2700000000000005,5.37,5.4,5.42,5.47,128.66,130.98,132.74,134.79,136.79,138.72,140.69,142.49,146.24,17,16.84,16.740000000000002,16.63,16.51,16.4,16.29,16.19,15.92,N/A,N/A -2012,2,22,2,30,101810,100610,99450,97.39,0,3.8200000000000003,4.3100000000000005,4.58,4.97,5.23,5.41,5.58,5.74,5.96,131.53,134.47,137,140.94,143.43,144.94,146.68,148.36,152.18,17.14,16.88,16.73,16.580000000000002,16.46,16.36,16.26,16.16,15.83,N/A,N/A -2012,2,22,3,30,101780,100580,99420,99.27,0,3.7800000000000002,4.28,4.53,4.88,5.36,5.98,6.28,6.49,6.69,156,156.68,157.91,161.18,165.36,170.47,171.42000000000002,171.23,170.86,17.14,16.98,16.92,16.86,16.86,16.89,16.8,16.69,16.330000000000002,N/A,N/A -2012,2,22,4,30,101740,100550,99390,99.34,0,4.38,4.96,5.19,5.38,5.54,5.67,5.74,5.82,7,169.77,171.25,172.14000000000001,172.91,173.47,173.91,174.19,174.48,178.19,16.990000000000002,16.830000000000002,16.75,16.65,16.55,16.45,16.35,16.27,16.990000000000002,N/A,N/A -2012,2,22,5,30,101730,100530,99370,99.34,0,4.7700000000000005,5.26,5.44,5.57,5.8,6.13,6.59,7.0600000000000005,8.02,180.44,180,179.71,179.49,179.29,179.1,179.20000000000002,179.4,181.01,16.81,16.62,16.53,16.43,16.37,16.330000000000002,16.44,16.57,17.18,N/A,N/A -2012,2,22,6,30,101690,100500,99340,96.92,0,4.65,5.8100000000000005,6.47,7.3500000000000005,8.26,9.27,9.76,10.05,9.99,192.26,191.35,190.38,188.65,187.42000000000002,186.61,186.88,187.48,189.29,17.66,17.63,17.61,17.6,17.580000000000002,17.56,17.44,17.3,17.31,N/A,N/A -2012,2,22,7,30,101680,100490,99330,96.74000000000001,0,3.94,4.98,5.47,5.98,6.73,7.7700000000000005,8.75,9.69,10.33,194.12,193.84,193.72,193.73000000000002,194.13,194.88,195.24,195.49,196.08,17.71,17.64,17.57,17.47,17.17,16.73,16.92,17.240000000000002,18.080000000000002,N/A,N/A -2012,2,22,8,30,101630,100440,99280,97.91,0,3.2,4.19,4.7700000000000005,5.48,6.5200000000000005,7.96,8.92,9.68,9.91,199.95000000000002,199.35,198.85,198.18,197.19,195.79,195.47,195.51,196.74,17.48,17.43,17.38,17.28,17.240000000000002,17.25,17.44,17.67,18.3,N/A,N/A -2012,2,22,9,30,101580,100390,99240,96.76,0,2.8000000000000003,4.07,4.82,5.89,6.88,7.8,8.49,9.07,10.16,217.76,214.61,212.19,209.66,207.6,205.94,204.02,202.1,201.85,17.78,17.87,17.89,17.87,17.740000000000002,17.54,17.43,17.36,17.69,N/A,N/A -2012,2,22,10,30,101540,100350,99200,95.83,0.4,4.75,6.19,6.91,7.6000000000000005,8.120000000000001,8.53,9,9.450000000000001,10.26,197.47,198.57,199.62,201.35,203.22,205.21,206.41,207.31,207.91,17.900000000000002,17.84,17.77,17.66,17.53,17.39,17.12,16.84,17.45,N/A,N/A -2012,2,22,11,30,101530,100340,99190,96.96000000000001,0.4,2.2600000000000002,3.65,4.42,5.23,5.99,6.73,7.37,7.95,8.88,205.12,204.28,203.83,204.12,204.48000000000002,204.92000000000002,205.49,206.09,209.42000000000002,17.79,17.8,17.75,17.68,17.6,17.53,17.400000000000002,17.27,17.02,N/A,N/A -2012,2,22,12,30,101500,100310,99160,97.28,0,1.8800000000000001,3.06,3.8200000000000003,5.38,6.63,7.46,8.07,8.56,8.93,199.17000000000002,200.55,202.03,204.74,206.54,207.29,208.55,209.92000000000002,211.95000000000002,17.79,17.91,17.95,18.01,17.96,17.830000000000002,17.66,17.490000000000002,17.3,N/A,N/A -2012,2,22,13,30,101430,100240,99100,95.39,0,5.18,6.46,7.12,7.95,8.83,9.77,10.57,11.3,11.84,209.43,211.24,212.24,212.6,212.43,211.84,212.52,213.54,216.89000000000001,17.98,18.04,18.04,17.990000000000002,17.84,17.63,17.68,17.8,18.64,N/A,N/A -2012,2,22,14,30,101440,100260,99100,94.88,0,5.8100000000000005,7.21,7.95,8.870000000000001,9.81,10.8,11.63,12.38,12.75,210.89000000000001,210.89000000000001,211.16,212.32,214.25,217.03,220.05,223.02,225.33,18.080000000000002,18.14,18.150000000000002,18.16,18.09,17.96,17.79,17.63,18.31,N/A,N/A -2012,2,22,15,30,101400,100210,99060,92.88,0,7.44,9.16,9.98,10.82,11.55,12.22,12.74,13.16,13.39,210.96,211.77,212.62,214.22,216.46,219.43,222.96,226.54,231.07,18.5,18.57,18.57,18.52,18.44,18.330000000000002,18.14,17.93,17.72,N/A,N/A -2012,2,22,16,30,101390,100200,99050,94.29,0,7.5600000000000005,8.94,9.47,9.93,10.370000000000001,10.81,11.25,11.67,11.9,222.24,224.18,225.86,228.44,231.25,234.31,237.41,240.33,245.54,18.21,18.21,18.18,18.14,18.09,18.03,17.92,17.82,17.62,N/A,N/A -2012,2,22,17,30,101360,100170,99020,94.24,0,4.87,6.38,7.17,8.02,8.84,9.68,10.35,10.93,11.5,227.12,228.5,229.68,231.27,232.72,234.12,235.18,236.06,236.25,18.29,18.34,18.34,18.31,18.28,18.240000000000002,18.21,18.18,18.09,N/A,N/A -2012,2,22,18,30,101310,100130,98980,92.82000000000001,0,6.44,8.11,8.96,9.84,10.64,11.42,11.98,12.4,12.5,217.32,219.11,220.91,224.37,227.93,231.86,234.78,237.11,237.93,18.580000000000002,18.740000000000002,18.79,18.78,18.740000000000002,18.67,18.580000000000002,18.490000000000002,18.27,N/A,N/A -2012,2,22,19,30,101270,100090,98940,92.10000000000001,0,7.43,9.290000000000001,10.200000000000001,11.08,11.81,12.42,12.88,13.25,13.57,212.8,215.43,217.67000000000002,220.89000000000001,223.91,226.95000000000002,229.27,231.15,231.59,18.71,18.85,18.88,18.87,18.82,18.72,18.7,18.7,18.43,N/A,N/A -2012,2,22,20,30,101160,99980,98840,92.3,0,9.15,10.99,11.88,12.75,13.48,14.11,14.540000000000001,14.870000000000001,15.11,222.84,223.72,224.47,225.47,226.3,227.03,227.33,227.45000000000002,226.87,18.62,18.7,18.72,18.8,18.91,19.080000000000002,19.11,19.09,18.97,N/A,N/A -2012,2,22,21,30,101070,99890,98750,91.93,0,8.55,10.43,11.38,12.4,13.35,14.280000000000001,15,15.59,15.89,213.03,214.88,216.54,218.91,220.95000000000002,222.79,224.02,224.94,226.5,18.68,18.740000000000002,18.71,18.61,18.5,18.37,18.45,18.6,19.54,N/A,N/A -2012,2,22,22,30,101030,99850,98700,92.98,0,7.0200000000000005,8.69,9.51,10.39,11.21,12,12.74,13.42,14.66,215.27,216.46,217.45000000000002,218.77,220.17000000000002,221.68,223.46,225.24,227.87,18.46,18.5,18.47,18.41,18.330000000000002,18.22,18.04,17.85,18.1,N/A,N/A -2012,2,22,23,30,100990,99810,98660,93.09,0.7000000000000001,8.08,9.63,10.25,10.83,11.31,11.71,12.040000000000001,12.32,12.81,213.35,214.61,215.59,216.87,218.22,219.69,221.37,223.02,226.35,18.43,18.43,18.38,18.32,18.25,18.19,18.12,18.05,17.61,N/A,N/A -2012,2,23,0,30,100940,99760,98610,95.41,0,8.32,9.81,10.5,11.19,11.82,12.41,12.98,13.51,14.51,216.49,216.88,217.3,218.04,219.16,220.62,222.47,224.33,224.8,17.94,17.830000000000002,17.71,17.490000000000002,17.17,16.77,16.78,16.91,19.82,N/A,N/A -2012,2,23,1,30,100930,99750,98600,97.8,0.4,7.21,8.19,8.59,8.98,9.36,9.74,10.19,10.65,12.370000000000001,213.81,213.67000000000002,213.65,213.71,213.86,214.1,214.5,214.94,219.71,17.48,17.34,17.240000000000002,17.13,16.990000000000002,16.84,16.48,16.09,16.39,N/A,N/A -2012,2,23,2,30,100910,99720,98570,99.24000000000001,0,8.07,8.9,9.200000000000001,9.47,9.74,10.02,10.76,11.59,13.27,213.47,213.25,213.12,213.03,212.99,213,214.29,215.92000000000002,222,16.8,16.56,16.42,16.240000000000002,16.04,15.83,15.620000000000001,15.5,17.8,N/A,N/A -2012,2,23,3,30,100870,99680,98530,99.24000000000001,0,8.78,9.9,10.36,10.790000000000001,11.15,11.46,12.35,13.35,14.72,213.34,212.94,212.66,212.39000000000001,212.17000000000002,211.97,212.93,214.14000000000001,217.32,16.85,16.61,16.48,16.3,16.11,15.89,16.39,17.01,19.77,N/A,N/A -2012,2,23,4,30,100840,99650,98510,99.27,0,9.19,10.25,10.68,11.1,11.48,11.84,12.74,13.73,15.09,214.82,214.84,214.85,214.88,215.01,215.20000000000002,216.20000000000002,217.38,219.59,16.84,16.59,16.45,16.28,16.07,15.83,15.94,16.27,19.42,N/A,N/A -2012,2,23,5,30,100840,99650,98490,98.93,1.1,7.72,8.67,9.07,9.49,9.870000000000001,10.23,10.59,10.96,13.280000000000001,216.94,216.89000000000001,216.85,216.84,216.92000000000002,217.03,217.02,217.04,219.6,16.85,16.59,16.44,16.27,16.11,15.94,15.69,15.44,15.93,N/A,N/A -2012,2,23,6,30,100850,99660,98510,97.84,0.4,6.94,7.74,8.07,8.4,8.72,9.05,9.39,9.73,11.35,219.16,219.61,219.96,220.4,220.93,221.52,222.11,222.66,223.28,17.44,17.16,17,16.81,16.63,16.45,16.240000000000002,16.02,15.67,N/A,N/A -2012,2,23,7,30,100840,99650,98500,98.95,0,6.55,7.29,7.7700000000000005,8.69,9.290000000000001,9.64,9.97,10.27,10.93,221.73000000000002,221.73000000000002,221.65,221.38,221.06,220.72,220.52,220.39000000000001,220.21,17.11,16.85,16.71,16.56,16.44,16.330000000000002,16.21,16.11,15.92,N/A,N/A -2012,2,23,8,30,100790,99610,98460,97.87,0,8.22,9.33,9.85,10.48,11.1,11.73,11.98,12.120000000000001,12.23,220.16,220.1,220.12,220.3,220.46,220.6,220.63,220.65,220.67000000000002,17.46,17.19,17.03,16.84,16.66,16.5,16.37,16.240000000000002,16.03,N/A,N/A -2012,2,23,9,30,100750,99570,98420,98.16,0.4,9.09,10.27,10.72,11.09,11.42,11.71,12,12.26,12.84,220.16,220.16,220.13,220.06,219.97,219.87,219.75,219.63,219.5,17.77,17.59,17.48,17.39,17.29,17.19,17.080000000000002,16.97,16.64,N/A,N/A -2012,2,23,10,30,100720,99540,98400,96.21000000000001,0.4,9.27,10.75,11.35,11.92,12.42,12.88,13.290000000000001,13.67,14.15,213.95000000000002,213.9,213.92000000000002,214,214.13,214.31,214.65,215.01,216.44,18.14,18,17.89,17.740000000000002,17.63,17.54,17.44,17.35,17.12,N/A,N/A -2012,2,23,11,30,100690,99510,98360,95.64,0.4,11.5,13.08,13.63,14.040000000000001,14.370000000000001,14.64,14.82,14.96,15,214.62,215.05,215.32,215.64000000000001,216.02,216.45000000000002,217.13,217.84,220.28,18.05,17.85,17.71,17.52,17.330000000000002,17.13,16.93,16.75,16.46,N/A,N/A -2012,2,23,12,30,100660,99490,98340,95.69,0.4,8.16,9.370000000000001,9.83,10.24,10.58,10.870000000000001,11.14,11.370000000000001,11.75,213.37,213.13,213.03,212.97,212.99,213.08,213.32,213.6,214.58,18.25,18.13,18.04,17.96,17.88,17.8,17.72,17.650000000000002,17.490000000000002,N/A,N/A -2012,2,23,13,30,100660,99480,98340,95.83,0.4,9.99,11.41,11.950000000000001,12.4,12.8,13.17,13.6,14.030000000000001,15.030000000000001,216.46,217.55,218.27,219.18,219.95000000000002,220.63,220.94,221.11,219.35,18.22,18.04,17.94,17.85,17.76,17.650000000000002,17.53,17.42,17.12,N/A,N/A -2012,2,23,14,30,100690,99510,98360,95.99000000000001,0,8.24,9.41,9.85,10.22,10.53,10.790000000000001,11,11.19,11.43,224.41,224.35,224.26,224.07,223.83,223.52,223.09,222.64000000000001,221.28,18.19,18.04,17.93,17.81,17.72,17.650000000000002,17.57,17.51,17.39,N/A,N/A -2012,2,23,15,30,100680,99500,98350,95.62,0,8.700000000000001,10.13,10.73,11.3,11.790000000000001,12.24,12.59,12.89,13.02,223.08,222.92000000000002,222.8,222.6,222.33,221.99,221.35,220.68,217.71,18.27,18.14,18.04,17.89,17.77,17.66,17.57,17.5,17.42,N/A,N/A -2012,2,23,16,30,100660,99490,98340,95.48,0,8.42,9.91,10.56,11.18,11.72,12.21,12.61,12.97,13.56,218.23000000000002,218.46,218.61,218.73000000000002,218.79,218.8,218.76,218.71,218.55,18.35,18.240000000000002,18.150000000000002,18.02,17.900000000000002,17.79,17.67,17.57,17.28,N/A,N/A -2012,2,23,17,30,100640,99460,98320,95.07000000000001,0,7.78,9.16,9.74,10.290000000000001,10.76,11.17,11.540000000000001,11.870000000000001,12.370000000000001,221.83,221.9,221.92000000000002,221.86,221.68,221.41,220.9,220.35,218.56,18.44,18.36,18.29,18.2,18.13,18.07,18.01,17.96,17.79,N/A,N/A -2012,2,23,18,30,100620,99440,98310,94.41,0,7.97,9.56,10.32,11.13,11.9,12.67,13.4,14.08,15.290000000000001,222.18,222.57,222.8,222.96,222.82,222.45000000000002,221.35,220.07,217.87,18.6,18.57,18.51,18.45,18.37,18.28,18.17,18.06,17.93,N/A,N/A -2012,2,23,19,30,100610,99440,98300,94.18,0,7.47,8.91,9.52,10.08,10.59,11.08,11.58,12.06,13.16,217.33,217.29,217.23000000000002,217.07,216.82,216.5,216.07,215.64000000000001,215.64000000000001,18.62,18.62,18.59,18.55,18.53,18.5,18.48,18.46,18.21,N/A,N/A -2012,2,23,20,30,100560,99390,98250,92.7,0,7.87,9.63,10.41,11.16,11.81,12.39,12.99,13.57,15.17,213.33,213.68,214.01,214.55,215.27,216.16,217.29,218.43,219.47,18.92,18.97,18.95,18.900000000000002,18.84,18.76,18.650000000000002,18.53,18.76,N/A,N/A -2012,2,23,21,30,100520,99350,98220,92.63,0,7.5200000000000005,9.200000000000001,9.98,10.73,11.39,11.98,12.59,13.18,14.6,208.47,208.95000000000002,209.35,209.86,210.47,211.17000000000002,212.39000000000001,213.71,216.94,18.92,18.96,18.94,18.900000000000002,18.88,18.89,18.94,19,19.240000000000002,N/A,N/A -2012,2,23,22,30,100490,99320,98180,92.19,0,6.98,8.78,9.65,10.56,11.44,12.3,13.14,13.93,14.67,206.37,207.05,207.69,208.66,210,211.64000000000001,213.75,215.92000000000002,217.56,19.01,19.1,19.09,19.05,19.03,19.01,19.240000000000002,19.51,19.57,N/A,N/A -2012,2,23,23,30,100470,99300,98170,91.73,0,6.97,8.81,9.69,10.61,11.5,12.4,13.21,13.950000000000001,14.780000000000001,202.46,203.26,204.09,205.57,207.57,210.08,212.91,215.67000000000002,217.81,19.1,19.22,19.23,19.21,19.18,19.150000000000002,19.43,19.76,20.02,N/A,N/A -2012,2,24,0,30,100490,99320,98180,91.75,0,7.05,8.89,9.8,10.76,11.68,12.59,13.25,13.790000000000001,13.9,198.88,200.23000000000002,201.53,203.65,206.09,208.92000000000002,211.39000000000001,213.59,214.72,19.09,19.2,19.2,19.16,19.35,19.72,20.05,20.34,20.400000000000002,N/A,N/A -2012,2,24,1,30,100490,99320,98190,91.8,0,6.5600000000000005,8.48,9.43,10.53,11.620000000000001,12.74,13.66,14.46,14.700000000000001,195.75,196.9,198.01,199.86,202.08,204.62,206.83,208.82,210.70000000000002,19.11,19.27,19.29,19.28,19.44,19.72,20.06,20.400000000000002,20.63,N/A,N/A -2012,2,24,2,30,100490,99320,98190,89.82000000000001,0,6.99,9.07,10.05,11.040000000000001,12.01,12.98,13.84,14.61,14.620000000000001,198.18,198.4,198.72,199.35,200.5,202.14000000000001,205.29,208.81,215.95000000000002,19.56,19.84,19.92,20,19.990000000000002,19.900000000000002,19.63,19.32,20.78,N/A,N/A -2012,2,24,3,30,100490,99320,98190,89.96000000000001,0,6.72,8.44,9.24,10.01,10.77,11.59,12.780000000000001,14.13,17.05,199.21,199.71,200.28,200.9,201.8,203.03,205.63,208.82,216.4,19.51,19.77,19.830000000000002,19.84,19.8,19.7,19.57,19.43,21.03,N/A,N/A -2012,2,24,4,30,100500,99330,98200,88.92,0,7.55,9.76,10.84,12.07,13.280000000000001,14.540000000000001,15.370000000000001,16.01,16.37,200.59,200.94,201.26,201.78,202.37,203.06,204.58,206.29,212.70000000000002,19.76,20.04,20.12,20.19,20.18,20.11,19.900000000000002,19.67,19.64,N/A,N/A -2012,2,24,5,30,100520,99350,98220,88.79,0.4,7.34,9.5,10.5,11.4,12.18,12.88,13.68,14.48,15.92,204.57,205.19,205.66,206.08,206.69,207.47,208.83,210.34,214.53,19.79,20.11,20.21,20.29,20.31,20.29,20.16,20.01,19.51,N/A,N/A -2012,2,24,6,30,100560,99400,98270,89.45,0,7.390000000000001,9.540000000000001,10.5,11.39,12.14,12.790000000000001,13.59,14.42,16.25,207.44,208.64000000000001,209.58,210.92000000000002,212.36,213.93,215.45000000000002,216.9,217.77,19.7,19.97,20.05,20.14,20.2,20.23,20.19,20.11,19.7,N/A,N/A -2012,2,24,7,30,100720,99550,98420,91.11,0,4.1,5.87,6.7,7.71,8.68,9.67,10.35,10.870000000000001,11.83,252.95000000000002,246.55,240.87,236.95000000000002,234.26,232.67000000000002,233.12,234.33,238.21,19.6,19.94,20,20.04,20.06,20.06,20.02,19.97,19.68,N/A,N/A -2012,2,24,8,30,100850,99680,98540,90.82000000000001,0,6.32,8.13,8.82,9.36,9.78,10.14,10.42,10.67,11,304.8,301.55,299.09000000000003,296.39,293.54,290.56,287.44,284.52,279.41,19.42,19.62,19.63,19.56,19.48,19.39,19.3,19.22,19.02,N/A,N/A -2012,2,24,9,30,100880,99710,98570,94.62,0,3.73,5.96,6.95,7.22,7.5,7.8,8.11,8.39,8.93,296.95,294.75,293.43,293.08,293.16,293.54,294.03000000000003,294.51,295.82,18.650000000000002,19.86,20.3,20.18,20.080000000000002,19.98,19.87,19.77,19.53,N/A,N/A -2012,2,24,10,30,101070,99870,98720,69.26,0,13.35,15.15,15.81,16.37,16.830000000000002,17.23,17.5,17.72,17.93,6.25,7.58,8.32,9.01,9.59,10.08,11,11.91,13.67,17.72,17.52,17.39,17.240000000000002,17.080000000000002,16.93,16.77,16.61,16.29,N/A,N/A -2012,2,24,11,30,101270,100070,98900,62.74,0,12.27,13.55,13.9,14.120000000000001,14.280000000000001,14.4,14.48,14.56,14.68,15.1,15.46,15.74,16.01,16.28,16.53,16.78,17.01,17.5,16.52,16.16,15.97,15.77,15.57,15.38,15.18,14.99,14.6,N/A,N/A -2012,2,24,12,30,101400,100190,99020,61.47,0,14.530000000000001,16.080000000000002,16.5,16.740000000000002,16.91,17.03,17.11,17.18,17.28,13.74,13.98,14.16,14.32,14.49,14.65,14.82,14.98,15.33,15.18,14.69,14.47,14.26,14.05,13.85,13.65,13.450000000000001,13.06,N/A,N/A -2012,2,24,13,30,101550,100330,99150,59.65,0,16.14,17.93,18.43,18.72,18.92,19.07,19.17,19.26,19.39,16.88,17.12,17.25,17.38,17.5,17.62,17.740000000000002,17.86,18.1,14.370000000000001,13.790000000000001,13.56,13.33,13.120000000000001,12.92,12.71,12.51,12.120000000000001,N/A,N/A -2012,2,24,14,30,101680,100460,99280,56.78,0,14.86,16.4,16.830000000000002,17.080000000000002,17.25,17.38,17.47,17.55,17.66,16.17,16.21,16.240000000000002,16.29,16.32,16.35,16.39,16.43,16.5,13.92,13.33,13.09,12.870000000000001,12.65,12.450000000000001,12.24,12.05,11.65,N/A,N/A -2012,2,24,15,30,101780,100570,99380,56.53,0,14.17,15.610000000000001,16.01,16.23,16.38,16.5,16.57,16.64,16.73,16.4,16.54,16.64,16.740000000000002,16.82,16.9,16.990000000000002,17.06,17.23,13.92,13.34,13.1,12.870000000000001,12.66,12.46,12.25,12.06,11.66,N/A,N/A -2012,2,24,16,30,101870,100650,99460,52.58,0,13,14.280000000000001,14.620000000000001,14.83,14.96,15.06,15.13,15.18,15.26,13.59,13.75,13.86,13.950000000000001,14.040000000000001,14.120000000000001,14.200000000000001,14.27,14.43,14.19,13.65,13.42,13.200000000000001,12.99,12.790000000000001,12.58,12.39,11.99,N/A,N/A -2012,2,24,17,30,101900,100680,99500,50.09,0,12.56,13.83,14.19,14.41,14.56,14.67,14.75,14.81,14.91,12.41,12.58,12.69,12.790000000000001,12.870000000000001,12.950000000000001,13.02,13.09,13.22,14.84,14.35,14.14,13.92,13.71,13.52,13.31,13.120000000000001,12.72,N/A,N/A -2012,2,24,18,30,101980,100760,99580,46.99,0,12.23,13.49,13.84,14.05,14.200000000000001,14.31,14.39,14.46,14.55,13.21,13.4,13.51,13.620000000000001,13.72,13.81,13.9,13.99,14.16,15.51,15.08,14.88,14.67,14.46,14.27,14.06,13.870000000000001,13.48,N/A,N/A -2012,2,24,19,30,102030,100820,99640,45.28,0,11.82,13.06,13.4,13.61,13.75,13.86,13.950000000000001,14.01,14.11,12.72,12.94,13.1,13.24,13.370000000000001,13.49,13.61,13.72,13.950000000000001,16.1,15.72,15.530000000000001,15.33,15.13,14.94,14.73,14.540000000000001,14.15,N/A,N/A -2012,2,24,20,30,102060,100850,99670,43.33,0,11.700000000000001,12.950000000000001,13.290000000000001,13.5,13.64,13.75,13.83,13.9,14,12.27,12.51,12.67,12.82,12.96,13.08,13.21,13.32,13.540000000000001,16.41,16.06,15.870000000000001,15.68,15.47,15.290000000000001,15.08,14.89,14.5,N/A,N/A -2012,2,24,21,30,102080,100870,99690,42.14,0,11.52,12.73,13.06,13.26,13.39,13.5,13.57,13.63,13.71,11.13,11.35,11.51,11.65,11.78,11.9,12.02,12.13,12.34,16.57,16.23,16.05,15.85,15.65,15.47,15.26,15.07,14.68,N/A,N/A -2012,2,24,22,30,102140,100930,99750,42.89,0,10.58,11.65,11.94,12.13,12.25,12.35,12.42,12.48,12.56,14.27,14.450000000000001,14.57,14.69,14.8,14.91,15.02,15.120000000000001,15.32,16.62,16.28,16.1,15.9,15.700000000000001,15.52,15.31,15.120000000000001,14.73,N/A,N/A -2012,2,24,23,30,102270,101050,99870,40.63,0,9.950000000000001,10.94,11.21,11.36,11.47,11.55,11.61,11.65,11.72,18.85,18.740000000000002,18.68,18.61,18.55,18.48,18.41,18.35,18.22,16.46,16.11,15.93,15.73,15.530000000000001,15.34,15.14,14.950000000000001,14.56,N/A,N/A -2012,2,25,0,30,102290,101070,99890,41.09,0,12.49,13.72,14.02,14.18,14.27,14.34,14.370000000000001,14.4,14.4,19.25,19.400000000000002,19.5,19.6,19.71,19.8,19.91,20.01,20.23,16.04,15.65,15.46,15.26,15.05,14.870000000000001,14.66,14.47,14.08,N/A,N/A -2012,2,25,1,30,102440,101220,100030,42.550000000000004,0,10.72,11.74,12,12.15,12.24,12.31,12.36,12.39,12.43,24.43,24.76,24.93,25.1,25.25,25.400000000000002,25.55,25.7,25.98,15.73,15.32,15.13,14.92,14.72,14.530000000000001,14.32,14.13,13.74,N/A,N/A -2012,2,25,2,30,102440,101220,100040,43.03,0,11.74,12.9,13.21,13.38,13.5,13.6,13.66,13.72,13.790000000000001,28.01,28.21,28.330000000000002,28.44,28.53,28.61,28.69,28.75,28.88,15.35,14.9,14.700000000000001,14.49,14.280000000000001,14.09,13.88,13.69,13.3,N/A,N/A -2012,2,25,3,30,102530,101310,100120,42.980000000000004,0,11.97,13.17,13.5,13.700000000000001,13.84,13.950000000000001,14.030000000000001,14.09,14.19,30.27,30.42,30.490000000000002,30.55,30.61,30.66,30.71,30.76,30.84,15.120000000000001,14.65,14.450000000000001,14.24,14.030000000000001,13.84,13.63,13.44,13.040000000000001,N/A,N/A -2012,2,25,4,30,102570,101350,100160,46.22,0,12.05,13.21,13.52,13.700000000000001,13.82,13.91,13.97,14.02,14.08,31.76,31.92,32.04,32.14,32.230000000000004,32.31,32.39,32.46,32.6,14.75,14.26,14.05,13.84,13.63,13.44,13.23,13.040000000000001,12.64,N/A,N/A -2012,2,25,5,30,102590,101360,100170,48.59,0,12.01,13.15,13.47,13.65,13.77,13.86,13.93,13.98,14.05,30.88,31.05,31.16,31.26,31.36,31.44,31.53,31.61,31.79,14.35,13.83,13.620000000000001,13.4,13.19,13,12.790000000000001,12.61,12.22,N/A,N/A -2012,2,25,6,30,102620,101390,100200,49.730000000000004,0,12.17,13.34,13.66,13.84,13.97,14.06,14.120000000000001,14.18,14.26,32.26,32.5,32.65,32.8,32.96,33.1,33.26,33.42,33.74,14.22,13.68,13.46,13.25,13.040000000000001,12.85,12.64,12.450000000000001,12.07,N/A,N/A -2012,2,25,7,30,102680,101450,100250,50.050000000000004,0,12.08,13.24,13.540000000000001,13.72,13.83,13.93,13.99,14.040000000000001,14.13,34.08,34.480000000000004,34.730000000000004,34.97,35.21,35.43,35.67,35.89,36.35,14.1,13.55,13.33,13.120000000000001,12.91,12.73,12.52,12.34,11.96,N/A,N/A -2012,2,25,8,30,102680,101450,100250,52.84,0,11.9,12.99,13.27,13.43,13.530000000000001,13.6,13.66,13.700000000000001,13.77,36.54,36.87,37.08,37.28,37.480000000000004,37.660000000000004,37.87,38.050000000000004,38.45,13.64,13.07,12.84,12.63,12.42,12.23,12.030000000000001,11.84,11.46,N/A,N/A -2012,2,25,9,30,102740,101510,100310,55.550000000000004,0,11.03,11.96,12.19,12.31,12.38,12.44,12.48,12.51,12.56,33.24,33.660000000000004,33.92,34.160000000000004,34.410000000000004,34.63,34.88,35.11,35.61,13.23,12.64,12.41,12.200000000000001,11.99,11.81,11.61,11.42,11.05,N/A,N/A -2012,2,25,10,30,102780,101540,100340,56.550000000000004,0,10.620000000000001,11.5,11.700000000000001,11.81,11.870000000000001,11.92,11.950000000000001,11.98,12.02,34.160000000000004,34.52,34.76,34.980000000000004,35.21,35.410000000000004,35.64,35.86,36.34,12.98,12.39,12.16,11.950000000000001,11.74,11.56,11.36,11.18,10.81,N/A,N/A -2012,2,25,11,30,102870,101630,100430,55.11,0,9.38,10.07,10.21,10.28,10.32,10.35,10.36,10.38,10.4,29.25,29.68,29.95,30.2,30.46,30.7,30.96,31.21,31.76,12.96,12.4,12.18,11.97,11.77,11.58,11.38,11.200000000000001,10.83,N/A,N/A -2012,2,25,12,30,102810,101570,100370,54.870000000000005,0,10.11,10.94,11.14,11.26,11.33,11.39,11.44,11.48,11.56,39.03,39.480000000000004,39.76,40.01,40.27,40.49,40.74,40.97,41.47,12.96,12.38,12.15,11.94,11.73,11.55,11.35,11.17,10.8,N/A,N/A -2012,2,25,13,30,102830,101600,100390,53.56,0,10.06,10.92,11.15,11.28,11.370000000000001,11.44,11.5,11.540000000000001,11.620000000000001,43.08,43.45,43.67,43.88,44.07,44.25,44.45,44.63,44.980000000000004,13.06,12.48,12.25,12.040000000000001,11.83,11.64,11.43,11.24,10.86,N/A,N/A -2012,2,25,14,30,102880,101640,100440,54.34,0,9.42,10.16,10.34,10.44,10.51,10.56,10.59,10.620000000000001,10.65,42.01,42.56,42.92,43.24,43.550000000000004,43.82,44.11,44.38,44.910000000000004,13.06,12.49,12.27,12.05,11.84,11.64,11.44,11.24,10.85,N/A,N/A -2012,2,25,15,30,102890,101650,100450,54.86,0,8.42,9.01,9.15,9.22,9.26,9.290000000000001,9.3,9.31,9.32,39.04,39.75,40.19,40.58,40.97,41.300000000000004,41.660000000000004,41.99,42.660000000000004,12.91,12.36,12.13,11.92,11.71,11.51,11.31,11.11,10.72,N/A,N/A -2012,2,25,16,30,102880,101640,100440,54.27,0,7.51,8.05,8.17,8.24,8.290000000000001,8.33,8.35,8.370000000000001,8.4,45.62,46.22,46.57,46.9,47.2,47.480000000000004,47.76,48.03,48.56,13.030000000000001,12.5,12.280000000000001,12.06,11.85,11.66,11.450000000000001,11.26,10.870000000000001,N/A,N/A -2012,2,25,17,30,102880,101650,100450,48.120000000000005,0,6.45,6.9,7.01,7.08,7.13,7.16,7.19,7.21,7.25,56.58,56.84,56.97,57.09,57.2,57.300000000000004,57.39,57.480000000000004,57.65,13.3,12.8,12.59,12.38,12.17,11.98,11.77,11.58,11.18,N/A,N/A -2012,2,25,18,30,102840,101600,100400,43.410000000000004,0,7.1000000000000005,7.58,7.69,7.75,7.79,7.82,7.84,7.86,7.890000000000001,60.83,60.95,61.050000000000004,61.120000000000005,61.2,61.26,61.31,61.370000000000005,61.47,13.540000000000001,13.040000000000001,12.83,12.620000000000001,12.41,12.22,12.02,11.82,11.43,N/A,N/A -2012,2,25,19,30,102850,101610,100420,45.13,0,5.09,5.39,5.46,5.51,5.54,5.5600000000000005,5.58,5.6000000000000005,5.63,72.16,72.23,72.28,72.33,72.36,72.4,72.44,72.47,72.53,13.620000000000001,13.16,12.96,12.76,12.55,12.36,12.16,11.96,11.57,N/A,N/A -2012,2,25,20,30,102770,101540,100340,45.59,0,5.37,5.71,5.78,5.83,5.86,5.89,5.91,5.93,5.96,81.38,81.41,81.35000000000001,81.27,81.21000000000001,81.16,81.09,81.01,80.83,13.92,13.47,13.26,13.06,12.86,12.67,12.47,12.280000000000001,11.89,N/A,N/A -2012,2,25,21,30,102700,101470,100270,45.86,0,5.75,6.11,6.19,6.23,6.26,6.28,6.29,6.3,6.32,93.55,93.34,93.16,93.01,92.85000000000001,92.71000000000001,92.55,92.39,92.05,14.25,13.8,13.59,13.39,13.19,13,12.8,12.61,12.22,N/A,N/A -2012,2,25,22,30,102670,101440,100250,46.4,0,5.93,6.3,6.38,6.41,6.44,6.46,6.47,6.48,6.49,113.29,112.87,112.66,112.46000000000001,112.27,112.10000000000001,111.9,111.71000000000001,111.3,14.450000000000001,14,13.8,13.6,13.39,13.21,13,12.81,12.42,N/A,N/A -2012,2,25,23,30,102630,101400,100210,48.51,0,5.53,5.84,5.91,5.93,5.95,5.95,5.95,5.95,5.94,114.97,114.24000000000001,113.79,113.38,112.96000000000001,112.59,112.16,111.76,110.89,14.41,13.97,13.77,13.57,13.370000000000001,13.19,12.98,12.790000000000001,12.41,N/A,N/A -2012,2,26,0,30,102590,101370,100180,46.46,0,6.43,6.88,6.99,7.0600000000000005,7.11,7.15,7.18,7.21,7.26,103.57000000000001,103.11,102.78,102.47,102.16,101.88,101.57000000000001,101.28,100.68,14.790000000000001,14.36,14.16,13.96,13.76,13.57,13.370000000000001,13.18,12.790000000000001,N/A,N/A -2012,2,26,1,30,102570,101340,100150,49.050000000000004,0,4.75,5.03,5.1000000000000005,5.14,5.17,5.19,5.21,5.22,5.25,105.71000000000001,105.94,106.09,106.22,106.35000000000001,106.46000000000001,106.58,106.69,106.91,14.76,14.35,14.15,13.950000000000001,13.74,13.56,13.35,13.16,12.76,N/A,N/A -2012,2,26,2,30,102550,101330,100140,49.39,0,6.47,6.93,7.03,7.08,7.12,7.140000000000001,7.15,7.17,7.17,105.96000000000001,105.60000000000001,105.31,105.02,104.75,104.5,104.24000000000001,103.99000000000001,103.5,15.19,14.780000000000001,14.58,14.38,14.17,13.98,13.77,13.58,13.19,N/A,N/A -2012,2,26,3,30,102500,101280,100090,54.5,0,5.51,5.86,5.94,5.98,6.0200000000000005,6.04,6.0600000000000005,6.08,6.11,107.19,107.15,107.15,107.14,107.15,107.16,107.18,107.2,107.24000000000001,14.9,14.48,14.280000000000001,14.08,13.88,13.69,13.48,13.290000000000001,12.9,N/A,N/A -2012,2,26,4,30,102480,101260,100070,54.19,0,6.42,6.82,6.91,6.95,6.97,6.99,6.99,6.99,6.99,119.54,119.14,118.91,118.71000000000001,118.51,118.35000000000001,118.17,118,117.66,15.31,14.9,14.71,14.51,14.31,14.120000000000001,13.91,13.73,13.33,N/A,N/A -2012,2,26,5,30,102460,101240,100050,54.660000000000004,0,5.96,6.38,6.48,6.54,6.58,6.62,6.640000000000001,6.66,6.69,115.59,115.56,115.56,115.55,115.54,115.54,115.53,115.53,115.52,15.38,14.98,14.780000000000001,14.59,14.38,14.200000000000001,13.99,13.8,13.41,N/A,N/A -2012,2,26,6,30,102440,101220,100040,56.22,0,6.11,6.5600000000000005,6.66,6.72,6.76,6.79,6.8100000000000005,6.83,6.8500000000000005,113.38,113.49000000000001,113.55,113.61,113.67,113.73,113.79,113.85000000000001,113.96000000000001,15.44,15.07,14.88,14.68,14.48,14.3,14.09,13.9,13.51,N/A,N/A -2012,2,26,7,30,102440,101220,100040,59.46,0,5.44,5.83,5.92,5.98,6.0200000000000005,6.05,6.07,6.09,6.12,110.66,110.87,111.01,111.14,111.27,111.38,111.51,111.62,111.87,15.39,15.02,14.83,14.63,14.43,14.24,14.040000000000001,13.85,13.46,N/A,N/A -2012,2,26,8,30,102390,101170,99990,62.15,0,4.92,5.2700000000000005,5.36,5.42,5.46,5.5,5.5200000000000005,5.55,5.59,104.64,105.16,105.47,105.76,106.03,106.27,106.52,106.75,107.22,15.46,15.1,14.92,14.72,14.52,14.34,14.13,13.94,13.55,N/A,N/A -2012,2,26,9,30,102370,101150,99970,64.02,0,4.69,5.01,5.09,5.14,5.18,5.21,5.23,5.26,5.29,97.16,97.64,97.95,98.25,98.54,98.81,99.11,99.38,99.99000000000001,15.58,15.23,15.040000000000001,14.85,14.65,14.47,14.26,14.08,13.69,N/A,N/A -2012,2,26,10,30,102330,101110,99940,62.39,0,4.05,4.4,4.5200000000000005,4.6000000000000005,4.67,4.73,4.78,4.83,4.91,116.06,117.79,118.71000000000001,119.45,120.09,120.64,121.16,121.61,122.46000000000001,16.22,15.9,15.72,15.540000000000001,15.34,15.16,14.96,14.77,14.38,N/A,N/A -2012,2,26,11,30,102310,101100,99920,64.83,0,5.33,5.63,5.68,5.69,5.7,5.69,5.69,5.68,5.65,140.08,140.17000000000002,140.32,140.48,140.64000000000001,140.8,140.97,141.13,141.46,16.330000000000002,16,15.82,15.63,15.43,15.25,15.040000000000001,14.85,14.46,N/A,N/A -2012,2,26,12,30,102300,101090,99910,66.35,0,5.07,5.46,5.55,5.6000000000000005,5.64,5.66,5.67,5.68,5.69,133.33,133.66,133.8,133.89000000000001,133.96,134.02,134.06,134.11,134.17000000000002,16.3,15.98,15.8,15.610000000000001,15.41,15.23,15.030000000000001,14.84,14.450000000000001,N/A,N/A -2012,2,26,13,30,102300,101090,99910,69.74,0,5.4,5.8100000000000005,5.91,5.97,6.01,6.04,6.0600000000000005,6.07,6.09,124.19,124.42,124.58,124.73,124.87,125,125.12,125.24000000000001,125.46000000000001,16.22,15.9,15.72,15.52,15.32,15.14,14.93,14.74,14.35,N/A,N/A -2012,2,26,14,30,102310,101090,99920,70.7,0,4.43,4.76,4.84,4.89,4.92,4.95,4.97,4.99,5.0200000000000005,127.54,127.03,126.83,126.67,126.53,126.42,126.32000000000001,126.24000000000001,126.10000000000001,16.21,15.88,15.71,15.51,15.31,15.13,14.92,14.74,14.35,N/A,N/A -2012,2,26,15,30,102310,101100,99920,72.57000000000001,0,4.18,4.44,4.5,4.53,4.54,4.55,4.55,4.55,4.54,121.92,122.2,122.48,122.76,123.04,123.29,123.56,123.83,124.4,16.31,15.98,15.81,15.610000000000001,15.42,15.23,15.030000000000001,14.84,14.450000000000001,N/A,N/A -2012,2,26,16,30,102290,101080,99900,77.83,0,4.17,4.39,4.41,4.41,4.4,4.39,4.37,4.3500000000000005,4.3,125.32000000000001,126.02,126.42,126.81,127.19,127.54,127.94,128.32,129.16,16.32,15.99,15.81,15.620000000000001,15.42,15.24,15.040000000000001,14.85,14.46,N/A,N/A -2012,2,26,17,30,102260,101050,99870,78.57000000000001,0,3.75,3.99,4.04,4.0600000000000005,4.07,4.08,4.08,4.08,4.07,108.53,108.94,109.2,109.4,109.57000000000001,109.71000000000001,109.84,109.95,110.16,16.37,16.05,15.870000000000001,15.68,15.48,15.290000000000001,15.09,14.9,14.51,N/A,N/A -2012,2,26,18,30,102250,101040,99860,79.51,0,4.44,4.75,4.82,4.8500000000000005,4.87,4.89,4.89,4.9,4.9,110.86,110.78,110.76,110.76,110.76,110.77,110.8,110.82000000000001,110.92,16.46,16.14,15.96,15.77,15.57,15.39,15.18,15,14.61,N/A,N/A -2012,2,26,19,30,102200,100990,99820,84.47,0,4.34,4.66,4.75,4.8100000000000005,4.86,4.91,4.95,5,5.11,100.41,100.52,100.65,100.79,100.95,101.10000000000001,101.28,101.46000000000001,101.93,16.35,16.02,15.84,15.65,15.46,15.290000000000001,15.09,14.91,14.540000000000001,N/A,N/A -2012,2,26,20,30,102150,100950,99780,83.82000000000001,0,5.8500000000000005,6.37,6.49,6.5600000000000005,6.6000000000000005,6.63,6.65,6.66,6.66,115.85000000000001,116.39,116.72,117.02,117.31,117.57000000000001,117.84,118.09,118.60000000000001,16.84,16.54,16.36,16.17,15.98,15.790000000000001,15.59,15.41,15.02,N/A,N/A -2012,2,26,21,30,102130,100920,99750,84.48,0,6.41,6.91,7.01,7.05,7.0600000000000005,7.0600000000000005,7.04,7.0200000000000005,6.96,107.49000000000001,107.69,107.82000000000001,107.97,108.13,108.28,108.47,108.65,109.11,16.73,16.42,16.25,16.06,15.860000000000001,15.68,15.48,15.3,14.91,N/A,N/A -2012,2,26,22,30,102090,100880,99710,85.98,0,6.66,7.25,7.390000000000001,7.46,7.5,7.5200000000000005,7.5200000000000005,7.5200000000000005,7.5,106.94,107.05,107.13,107.2,107.27,107.34,107.43,107.5,107.7,16.76,16.45,16.28,16.09,15.9,15.72,15.51,15.33,14.950000000000001,N/A,N/A -2012,2,26,23,30,102060,100850,99680,88.66,0,6.72,7.3,7.44,7.51,7.55,7.58,7.59,7.6000000000000005,7.62,99.71000000000001,99.93,100.10000000000001,100.28,100.46000000000001,100.64,100.86,101.07000000000001,101.60000000000001,16.72,16.42,16.240000000000002,16.05,15.860000000000001,15.68,15.48,15.3,14.92,N/A,N/A -2012,2,27,0,30,102070,100860,99700,89.61,0,6.8100000000000005,7.49,7.68,7.8,7.890000000000001,7.96,8.02,8.07,8.17,104.66,104.88,105.01,105.16,105.31,105.46000000000001,105.63,105.79,106.17,16.93,16.65,16.490000000000002,16.3,16.11,15.93,15.73,15.55,15.18,N/A,N/A -2012,2,27,1,30,102050,100850,99680,92.78,0,7.1000000000000005,7.76,7.94,8.05,8.14,8.22,8.31,8.4,8.74,99.79,100.09,100.31,100.58,100.89,101.2,101.68,102.17,103.86,16.93,16.64,16.47,16.29,16.1,15.92,15.73,15.56,15.200000000000001,N/A,N/A -2012,2,27,2,30,102060,100860,99690,90.93,0,6.33,7.1000000000000005,7.36,7.59,7.79,7.97,8.15,8.31,8.66,105.66,105.97,106.16,106.36,106.55,106.75,106.95,107.15,107.59,17.240000000000002,16.98,16.830000000000002,16.66,16.48,16.31,16.12,15.950000000000001,15.59,N/A,N/A -2012,2,27,3,30,102080,100880,99710,93.56,0,5.59,6.24,6.47,6.66,6.83,6.99,7.15,7.3,7.63,106.99000000000001,107.31,107.56,107.87,108.2,108.53,108.92,109.28,110.06,17.2,16.94,16.79,16.61,16.44,16.27,16.09,15.92,15.57,N/A,N/A -2012,2,27,4,30,102090,100880,99720,94.14,0,5.55,6.33,6.63,6.92,7.18,7.43,7.68,7.92,8.41,102.59,102.85000000000001,103.08,103.34,103.62,103.9,104.27,104.64,105.67,17.240000000000002,17,16.85,16.69,16.52,16.36,16.19,16.03,15.71,N/A,N/A -2012,2,27,5,30,102080,100880,99710,94.10000000000001,0,5.93,6.73,7.03,7.3100000000000005,7.5600000000000005,7.8100000000000005,8.07,8.31,8.85,92.4,93.05,93.61,94.36,95.33,96.38,97.85000000000001,99.34,103.58,17.32,17.09,16.96,16.8,16.66,16.52,16.39,16.27,16.09,N/A,N/A -2012,2,27,6,30,102090,100890,99720,95.77,0,5.28,5.91,6.16,6.390000000000001,6.63,6.88,7.21,7.54,8.46,80.2,81.63,82.83,84.38,86.23,88.18,90.71000000000001,93.24,99.71000000000001,17.26,17.02,16.88,16.73,16.59,16.46,16.330000000000002,16.22,16.080000000000002,N/A,N/A -2012,2,27,7,30,102150,100950,99780,96.42,0,4.3500000000000005,5.05,5.37,5.72,6.07,6.44,6.84,7.23,8.03,82.99,84.58,85.94,87.72,89.72,91.82000000000001,94.14,96.41,103.17,17.38,17.16,17.04,16.91,16.78,16.66,16.55,16.44,16.3,N/A,N/A -2012,2,27,8,30,102140,100940,99780,96.48,0,4.25,5,5.3500000000000005,5.71,6.07,6.41,6.76,7.08,7.51,83.07000000000001,84.53,85.7,87.16,88.77,90.43,92.5,94.47,100.51,17.400000000000002,17.2,17.07,16.93,16.8,16.68,16.56,16.45,16.25,N/A,N/A -2012,2,27,9,30,102160,100960,99800,96.75,0,5.26,5.98,6.29,6.6000000000000005,6.9,7.2,7.51,7.78,8,68.32000000000001,69.66,70.92,72.75,75.23,78.13,83.17,88.37,100.18,17.35,17.13,17.01,16.88,16.77,16.67,16.62,16.59,16.54,N/A,N/A -2012,2,27,10,30,102180,100980,99810,97.32000000000001,0,5.38,6.03,6.3,6.5600000000000005,6.8,7.03,7.16,7.25,7.16,64.4,65.06,65.74,66.86,68.61,70.74,75.74,80.99,91.53,17.25,17.02,16.89,16.740000000000002,16.63,16.54,16.51,16.48,16.35,N/A,N/A -2012,2,27,11,30,102210,101010,99840,97.28,2.6,6.04,6.76,7.05,7.3100000000000005,7.55,7.78,8.040000000000001,8.28,8.44,60.88,61.550000000000004,62.14,63.01,64.23,65.65,68.49,71.66,82.89,17.23,17,16.87,16.72,16.6,16.5,16.44,16.39,16.36,N/A,N/A -2012,2,27,12,30,102210,101010,99840,97.38,0.7000000000000001,6.5600000000000005,7.6000000000000005,7.97,8.18,8.4,8.64,8.74,8.81,8.85,51.4,53.34,54.5,55.49,57.44,59.800000000000004,61.870000000000005,63.78,68.44,17.03,16.77,16.62,16.46,16.36,16.29,16.23,16.19,16.15,N/A,N/A -2012,2,27,13,30,102230,101020,99850,97,0.7000000000000001,7.62,8.370000000000001,8.65,8.950000000000001,9.21,9.44,9.700000000000001,9.91,9.99,55.69,56.15,56.59,57.2,57.88,58.56,60.33,62.11,65.87,16.84,16.55,16.39,16.22,16.06,15.91,15.92,15.950000000000001,15.99,N/A,N/A -2012,2,27,14,30,102280,101070,99900,96.11,0.4,8.41,9.06,9.21,9.34,9.6,9.91,10.27,10.57,10.68,49.03,49.42,49.76,50.24,51.17,52.300000000000004,54.04,55.76,59.86,16.62,16.3,16.14,15.96,15.82,15.69,15.71,15.76,16.16,N/A,N/A -2012,2,27,15,30,102300,101100,99920,95.8,0.4,8.18,8.84,8.98,9.05,9.13,9.21,9.52,9.85,10.66,55.160000000000004,55.33,55.47,55.660000000000004,55.96,56.28,57.120000000000005,58.1,61.620000000000005,16.47,16.14,15.96,15.780000000000001,15.59,15.42,15.25,15.120000000000001,15.11,N/A,N/A -2012,2,27,16,30,102310,101100,99930,95.64,0,8.19,8.83,8.97,9.05,9.13,9.21,9.620000000000001,10.05,10.93,51.99,52.21,52.410000000000004,52.65,53,53.38,54.6,55.93,59.59,16.43,16.09,15.92,15.73,15.55,15.38,15.23,15.11,15.18,N/A,N/A -2012,2,27,17,30,102310,101100,99930,95.13,0,7.8500000000000005,8.51,8.69,8.8,8.91,9.02,9.26,9.56,10.73,55.32,55.58,55.75,55.96,56.230000000000004,56.53,57.09,57.74,60.58,16.47,16.14,15.96,15.77,15.59,15.41,15.23,15.07,14.9,N/A,N/A -2012,2,27,18,30,102300,101090,99920,94.59,0,7.76,8.42,8.6,8.73,8.88,9.040000000000001,9.51,10.02,11.11,57.95,58.15,58.300000000000004,58.49,58.76,59.06,59.75,60.49,62.27,16.6,16.29,16.12,15.93,15.75,15.57,15.41,15.27,15.13,N/A,N/A -2012,2,27,19,30,102290,101080,99910,94.23,0,8.17,8.93,9.15,9.31,9.5,9.700000000000001,10.13,10.57,11.57,60.77,60.870000000000005,60.99,61.13,61.32,61.54,61.88,62.230000000000004,63.04,16.76,16.44,16.27,16.09,15.91,15.74,15.57,15.42,15.18,N/A,N/A -2012,2,27,20,30,102280,101070,99900,93.5,0,7.930000000000001,8.76,9.05,9.31,9.6,9.9,10.31,10.700000000000001,11.290000000000001,64.91,64.7,64.52,64.33,64.08,63.82,63.57,63.33,62.46,16.990000000000002,16.7,16.54,16.35,16.18,16.01,15.84,15.68,15.41,N/A,N/A -2012,2,27,21,30,102260,101050,99880,93.61,0,8.48,9.33,9.56,9.74,9.88,10.03,10.21,10.41,11.1,66.85,66.79,66.73,66.66,66.58,66.5,66.36,66.24,65.98,16.9,16.6,16.43,16.240000000000002,16.05,15.870000000000001,15.69,15.51,15.18,N/A,N/A -2012,2,27,22,30,102250,101050,99880,93.65,0,8.69,9.49,9.68,9.8,9.89,9.97,10.09,10.22,10.82,67.41,67.41,67.43,67.45,67.49,67.52,67.59,67.69,68.51,16.77,16.45,16.28,16.09,15.9,15.72,15.530000000000001,15.35,15.030000000000001,N/A,N/A -2012,2,27,23,30,102250,101040,99870,94.16,0,8.07,8.78,8.94,9.040000000000001,9.1,9.15,9.21,9.28,9.6,69.85000000000001,69.96000000000001,70.04,70.13,70.25,70.37,70.58,70.8,72.05,16.73,16.41,16.240000000000002,16.04,15.860000000000001,15.68,15.48,15.31,14.97,N/A,N/A -2012,2,28,0,30,102250,101040,99870,94.47,0,7.74,8.4,8.540000000000001,8.620000000000001,8.68,8.72,8.8,8.91,9.49,70.29,70.5,70.64,70.81,71.02,71.24,71.62,72.07000000000001,74.69,16.73,16.41,16.240000000000002,16.05,15.860000000000001,15.68,15.49,15.32,15.06,N/A,N/A -2012,2,28,1,30,102250,101040,99870,94.4,0,7.84,8.540000000000001,8.71,8.81,8.89,8.97,9.09,9.25,9.91,74.47,74.49,74.52,74.60000000000001,74.72,74.86,75.12,75.48,77.86,16.79,16.48,16.31,16.12,15.93,15.76,15.57,15.4,15.13,N/A,N/A -2012,2,28,2,30,102280,101070,99900,95.82000000000001,0,7.3500000000000005,7.930000000000001,8.08,8.15,8.22,8.3,8.48,8.69,9.35,78.3,78.52,78.68,78.89,79.15,79.44,80.16,81.05,85.01,16.67,16.36,16.19,16,15.81,15.64,15.47,15.33,15.16,N/A,N/A -2012,2,28,3,30,102260,101060,99880,95.82000000000001,0,7.04,7.640000000000001,7.79,7.890000000000001,8.01,8.120000000000001,8.46,8.8,9.38,80.8,81.15,81.37,81.65,82.03,82.44,83.66,85.01,89.07000000000001,16.8,16.490000000000002,16.32,16.13,15.94,15.77,15.6,15.450000000000001,15.31,N/A,N/A -2012,2,28,4,30,102230,101020,99860,96.16,0,6.08,6.640000000000001,6.9,7.25,7.6000000000000005,7.930000000000001,8.19,8.43,8.790000000000001,85.05,85.58,86.16,87.10000000000001,88.4,89.85000000000001,91.78,93.68,98.17,16.89,16.6,16.44,16.27,16.12,15.97,15.9,15.84,15.8,N/A,N/A -2012,2,28,5,30,102230,101020,99860,96.34,0,5.96,6.97,7.390000000000001,7.65,7.96,8.290000000000001,8.58,8.84,9.26,90.93,92.3,93.28,94.32000000000001,95.95,97.88,100.02,102.06,106.42,17.04,16.79,16.65,16.5,16.4,16.35,16.3,16.26,16.2,N/A,N/A -2012,2,28,6,30,102210,101010,99840,96.38,0,5.97,6.87,7.2700000000000005,7.640000000000001,7.95,8.2,8.370000000000001,8.5,8.51,97.3,98.78,100.15,102.2,104.63,107.2,110.16,112.93,118.29,17.330000000000002,17.12,17.02,16.95,16.93,16.95,17.03,17.11,17.22,N/A,N/A -2012,2,28,7,30,102220,101020,99850,96.85000000000001,0.4,5.74,6.5,6.79,7.0600000000000005,7.32,7.57,7.84,8.09,8.49,106.46000000000001,107.25,107.9,108.79,109.9,111.11,112.98,114.99000000000001,122.39,17.53,17.31,17.19,17.05,16.93,16.82,16.75,16.69,16.51,N/A,N/A -2012,2,28,8,30,102190,100990,99820,97.71000000000001,0,4.04,4.8,5.22,5.74,6.33,6.97,7.45,7.86,8.26,111.2,112.52,113.29,113.76,113.5,112.78,112.42,112.19,114.48,17.57,17.330000000000002,17.18,17.03,16.96,16.94,16.85,16.76,16.42,N/A,N/A -2012,2,28,9,30,102160,100960,99790,97.23,0,5.24,5.91,6.15,6.36,6.55,6.7,6.84,6.96,7.3100000000000005,127.23,128.13,128.63,129.15,129.56,129.88,129.91,129.84,128.26,17.54,17.3,17.16,16.990000000000002,16.85,16.73,16.61,16.51,16.27,N/A,N/A -2012,2,28,10,30,102150,100940,99780,96.03,0,4.93,5.49,5.71,5.93,6.18,6.44,6.8,7.15,7.7,112.83,113.55,114.17,115.02,116.13,117.39,119.36,121.3,123.58,17.400000000000002,17.13,16.96,16.76,16.59,16.45,16.330000000000002,16.240000000000002,16.01,N/A,N/A -2012,2,28,11,30,102120,100910,99750,95.34,0,5.3,5.8,5.94,6.03,6.09,6.13,6.17,6.21,6.3,119.33,121.12,122.25,123.45,124.96000000000001,126.56,129.42000000000002,132.27,138.55,17.29,16.990000000000002,16.82,16.62,16.41,16.22,16.05,15.9,15.540000000000001,N/A,N/A -2012,2,28,12,30,102120,100910,99740,99.22,0,5.51,5.8500000000000005,5.94,6.01,6.13,6.2700000000000005,6.7,7.15,8.01,130.92000000000002,131.41,131.85,132.43,133.43,134.6,137.37,140.49,149.72,16.04,15.72,15.56,15.38,15.18,14.97,14.75,14.780000000000001,17.47,N/A,N/A -2012,2,28,13,30,102120,100910,99740,99.22,0,6.390000000000001,6.86,6.93,6.93,6.88,6.8100000000000005,6.72,6.63,6.69,130.75,131.28,131.59,131.92000000000002,132.35,132.8,133.99,135.52,144.74,16.44,16.15,16.02,15.870000000000001,15.72,15.58,15.4,15.19,14.89,N/A,N/A -2012,2,28,14,30,102130,100930,99760,98.08,0.4,5.71,6.0600000000000005,6.3100000000000005,6.78,7.19,7.55,7.69,7.79,8.03,134.05,135.89000000000001,138.29,142.68,146,148.68,149.38,149.84,151.96,16.34,16.01,15.88,15.81,15.75,15.69,15.6,15.51,15.48,N/A,N/A -2012,2,28,15,30,102120,100920,99760,98.24000000000001,0,5.6000000000000005,6.48,6.99,7.640000000000001,8.040000000000001,8.26,8.41,8.540000000000001,8.68,144.81,146.44,148.19,150.98,152.78,153.92000000000002,154.82,155.58,156.53,17.150000000000002,16.89,16.79,16.72,16.64,16.56,16.47,16.38,16.19,N/A,N/A -2012,2,28,16,30,102110,100910,99750,97.9,0,6.01,7.05,7.51,7.98,8.36,8.67,8.85,8.99,9.200000000000001,143.27,145.56,147.31,149.58,152.06,154.57,158.37,162.21,171.61,17.740000000000002,17.53,17.41,17.31,17.240000000000002,17.18,17.14,17.11,16.98,N/A,N/A -2012,2,28,17,30,102080,100880,99730,97.67,0,4.46,5.46,5.97,6.59,7.18,7.75,8.38,9,10.59,136.49,138.59,140.69,144.15,147.63,151.07,153.01,154.69,162.4,17.92,17.8,17.740000000000002,17.7,17.66,17.62,17.63,17.64,17.86,N/A,N/A -2012,2,28,18,30,102060,100870,99710,97.26,0,4.73,5.8,6.29,6.8100000000000005,7.34,7.88,8.76,9.63,9.89,144.84,146.64000000000001,148.07,150.01,152.02,154.07,161.33,169.07,172.97,18.11,18.04,18.02,18.01,18.03,18.07,18.18,18.3,18.23,N/A,N/A -2012,2,28,19,30,102040,100850,99690,96.58,0,4.5,5.75,6.42,7.24,8.3,9.56,10.540000000000001,11.4,11.57,149.05,151.83,154.4,158.19,162.72,167.9,172.81,177.32,179.81,18.45,18.38,18.36,18.38,18.490000000000002,18.650000000000002,18.79,18.900000000000002,18.78,N/A,N/A -2012,2,28,20,30,101990,100800,99640,95.88,0,4.87,6.24,6.95,7.79,8.540000000000001,9.23,9.61,9.9,10.22,143.96,147.25,150.65,156.20000000000002,163.04,170.81,174.84,177.75,180.1,18.59,18.580000000000002,18.5,18.330000000000002,18.47,18.81,18.96,19.06,19.01,N/A,N/A -2012,2,28,21,30,101960,100770,99620,95.17,0,4.15,5.61,6.3,6.98,8,9.31,9.58,9.6,9.65,130.4,133.91,137.98,145.02,156.82,172.66,176.14000000000001,176.61,177.43,18.57,18.7,18.79,18.96,19.080000000000002,19.18,19.12,19.03,18.84,N/A,N/A -2012,2,28,22,30,101890,100700,99550,92.55,0,5.87,8.02,9.05,10.03,10.31,10.18,10.6,11.1,11.72,142.38,148.67000000000002,153.52,159.36,164.26,168.26,173.59,178.86,181.1,18.93,19.16,19.25,19.32,19.34,19.330000000000002,19.29,19.240000000000002,19.19,N/A,N/A -2012,2,28,23,30,101860,100670,99530,92.46000000000001,0,5.63,7.55,8.49,9.44,10.200000000000001,10.82,11.66,12.51,12.870000000000001,140.67000000000002,144.83,148.42000000000002,153.51,159.02,164.87,169.49,173.61,174.9,18.900000000000002,19.18,19.3,19.44,19.51,19.55,19.61,19.68,19.580000000000002,N/A,N/A -2012,3,1,0,30,101600,100410,99270,93.62,0.4,4.67,6.26,7,7.71,8.03,8.040000000000001,7.88,7.68,7.41,151.61,156.83,162.25,171.33,178.07,182.83,185.09,186.39000000000001,188.34,19.080000000000002,19.28,19.35,19.44,19.32,19.06,19.7,20.56,20.78,N/A,N/A -2012,3,1,1,30,101580,100400,99250,92.55,0,5.34,7.17,8.03,8.8,9.31,9.61,9.53,9.35,8.540000000000001,160.39000000000001,164.20000000000002,168.09,174.53,179.6,183.64000000000001,185.1,185.69,189.75,19.3,19.6,19.72,19.82,19.740000000000002,19.56,19.31,19.07,19.79,N/A,N/A -2012,3,1,2,30,101580,100400,99260,92.09,0,5.95,7.96,8.91,9.65,10.01,10.09,9.67,9.16,9.06,161.5,164.4,167.52,172.9,177.59,181.68,184.77,187.19,187.33,19.38,19.650000000000002,19.75,19.79,19.81,19.8,19.740000000000002,19.67,19.35,N/A,N/A -2012,3,1,3,30,101580,100400,99260,92.81,0.30000000000000004,5.15,7.04,7.9,8.59,8.950000000000001,9.06,9.16,9.27,9.3,178.63,179.08,180.44,184.24,187.13,189.28,190.94,192.3,192.26,19.25,19.31,19.25,19.13,19.29,19.69,19.95,20.150000000000002,19.8,N/A,N/A -2012,3,1,4,30,101570,100380,99230,93.73,0.6000000000000001,5.17,6.93,7.84,8.8,9.59,10.25,10.34,10.28,9.59,174.67000000000002,177.73,180.77,185.9,191.22,196.75,199.09,200.28,200.17000000000002,19.02,19.16,19.21,19.26,19.12,18.86,18.91,19.04,19.96,N/A,N/A -2012,3,1,5,30,101570,100390,99240,93.7,0.6000000000000001,4.71,6.25,6.98,7.7700000000000005,8.48,9.17,9.46,9.6,9.6,187.93,188,188,188.03,189.11,191.1,194.70000000000002,198.55,202.03,19.07,19.240000000000002,19.3,19.330000000000002,19.34,19.330000000000002,19.17,18.97,19.04,N/A,N/A -2012,3,1,6,30,101570,100390,99240,95.05,0.1,5.71,7.47,8.36,9.200000000000001,9.8,10.19,10.3,10.32,10.14,202.66,203.08,203.3,203.51,203.45000000000002,203.22,202.99,202.78,202.91,19.25,19.26,19.23,19.150000000000002,19.06,18.95,18.830000000000002,18.71,18.46,N/A,N/A -2012,3,1,7,30,101580,100390,99250,95.23,0,5.87,7.16,7.66,8.09,8.38,8.59,8.73,8.85,9.14,202.29,202.35,202.38,202.36,202.27,202.11,202.65,203.37,206.20000000000002,19.21,19.17,19.12,19.04,18.98,18.93,18.85,18.77,18.490000000000002,N/A,N/A -2012,3,1,8,30,101570,100380,99230,95.85000000000001,0.4,4.18,5.22,5.67,6.21,6.78,7.42,7.87,8.23,8.83,206.4,206.75,207.19,207.84,208.44,209.03,209.58,210.1,211.3,19.12,19.13,19.12,19.07,19.01,18.93,18.830000000000002,18.73,18.57,N/A,N/A -2012,3,1,9,30,101560,100370,99220,96.58,0,4.53,5.79,6.43,7.18,7.79,8.3,8.66,8.97,9.17,226.55,227.21,227.16,226.03,225.03,224.09,223.19,222.29,224.16,18.98,18.98,18.95,18.89,18.82,18.75,18.72,18.7,18.56,N/A,N/A -2012,3,1,10,30,101540,100360,99220,94.36,0,6.23,7.45,7.94,8.31,8.59,8.8,9.05,9.3,9.64,217.58,218.18,218.67000000000002,219.3,219.75,220.08,220.9,221.79,221.58,19.38,19.41,19.38,19.31,19.22,19.12,18.990000000000002,18.88,18.64,N/A,N/A -2012,3,1,11,30,101520,100340,99190,95.33,0,4.3100000000000005,5.69,6.34,6.97,7.4,7.68,8.040000000000001,8.4,8.700000000000001,215.29,216.34,216.63,215.38,214.38,213.54,214.02,214.91,215.05,19.16,19.32,19.39,19.46,19.45,19.39,19.34,19.29,19.1,N/A,N/A -2012,3,1,12,30,101530,100350,99200,96.45,0.4,3.42,4.83,5.5200000000000005,6.11,6.5600000000000005,6.93,7.19,7.4,7.78,203.38,205.98000000000002,208,210.28,211.93,213.07,213.15,212.89000000000001,212.74,19,19.07,19.11,19.13,19.16,19.19,19.150000000000002,19.080000000000002,18.92,N/A,N/A -2012,3,1,13,30,101520,100340,99190,96.31,0.4,2.84,4.25,5.01,5.98,6.68,7.12,7.46,7.74,8.39,186.78,196.81,203.57,209.34,212.29,212.96,213.06,212.99,213.34,19.11,19.23,19.27,19.3,19.330000000000002,19.34,19.32,19.3,19.31,N/A,N/A -2012,3,1,14,30,101540,100360,99210,96.39,0,2.91,4.04,4.67,5.62,6.3100000000000005,6.7700000000000005,7.21,7.62,8.32,167.99,174.05,181.16,195.83,204.05,206.55,207.52,207.94,210.52,19.1,19.16,19.2,19.27,19.26,19.2,19.18,19.19,19.26,N/A,N/A -2012,3,1,15,30,101520,100340,99190,95.91,0.30000000000000004,4.64,6.13,6.93,7.83,8.36,8.59,8.6,8.57,8.89,173.08,178.65,183.6,190.67000000000002,195.43,198.51,201.28,203.72,207.17000000000002,19.16,19.14,19.17,19.32,19.48,19.63,19.72,19.79,19.71,N/A,N/A -2012,3,1,16,30,101500,100320,99180,95.15,0,6.15,7.5200000000000005,8.06,8.42,8.74,9.05,9.14,9.18,9.21,179.48,181.83,183.96,187.20000000000002,192.13,198.5,201.59,203.53,206.09,19.32,19.39,19.400000000000002,19.400000000000002,19.490000000000002,19.64,19.73,19.81,19.72,N/A,N/A -2012,3,1,17,30,101450,100270,99130,97.09,0.30000000000000004,5.43,6.45,6.94,7.54,8.24,9.02,9.43,9.69,9.75,173.6,175.6,177.63,181.18,185.39000000000001,190.3,194.14000000000001,197.4,200.8,19.04,18.92,18.86,18.830000000000002,18.98,19.27,19.55,19.81,19.88,N/A,N/A -2012,3,1,18,30,101420,100240,99100,95.53,0,5.7700000000000005,7,7.61,8.370000000000001,9.02,9.6,9.85,9.98,10.120000000000001,180.15,181.96,184,187.82,192.12,196.79,199.54,201.47,203.51,19.400000000000002,19.43,19.51,19.76,20.02,20.3,20.37,20.39,20.2,N/A,N/A -2012,3,1,19,30,101400,100220,99070,95.01,0,5.36,6.54,7.08,7.7,8.44,9.34,10.26,11.17,11.700000000000001,180.28,181.59,183.03,185.70000000000002,188.87,192.66,195.52,198,199.91,19.46,19.46,19.46,19.490000000000002,19.57,19.71,19.89,20.07,20.22,N/A,N/A -2012,3,1,20,30,101330,100150,99020,95.08,0,4.74,5.95,6.5600000000000005,7.32,8.3,9.540000000000001,10.05,10.290000000000001,10.83,175.59,176.52,177.95000000000002,181.14000000000001,186.15,193.03,195.52,196.49,198.67000000000002,19.45,19.47,19.5,19.6,19.86,20.22,20.37,20.42,20.46,N/A,N/A -2012,3,1,21,30,101260,100090,98950,94.91,0,5.57,6.86,7.45,8.11,8.88,9.790000000000001,10.36,10.790000000000001,11.16,169.93,171.13,172.44,174.85,179.02,184.71,190.42000000000002,195.79,198.70000000000002,19.52,19.52,19.52,19.54,19.63,19.79,19.96,20.13,20.2,N/A,N/A -2012,3,1,22,30,101200,100020,98880,93.97,0,5.64,7.25,8.01,8.75,9.23,9.5,9.93,10.42,11.19,162.6,165.49,168.09,171.95000000000002,176.59,181.89000000000001,187.54,193.07,198.12,19.54,19.580000000000002,19.54,19.44,19.26,19.01,19.07,19.22,19.92,N/A,N/A -2012,3,1,23,30,101130,99950,98810,94.23,0,5.88,7.37,8.05,8.73,9.290000000000001,9.76,10.14,10.49,10.86,161.20000000000002,163.74,165.86,168.89000000000001,172.5,176.63,181.43,186.14000000000001,190.43,19.42,19.46,19.42,19.330000000000002,19.06,18.68,18.650000000000002,18.71,19.76,N/A,N/A -2012,3,2,0,30,101080,99910,98770,94.18,0,5.24,6.63,7.26,7.97,8.76,9.67,10.47,11.21,11.97,168.07,170.57,172.51,175.06,177.82,180.97,184.8,188.73,191.76,19.46,19.53,19.53,19.490000000000002,19.34,19.080000000000002,19.02,19.02,19.44,N/A,N/A -2012,3,2,1,30,101050,99870,98740,96.01,0.7000000000000001,6.390000000000001,7.79,8.51,9.370000000000001,10.32,11.39,12.23,12.98,13.22,171.22,172.38,173.49,175.25,177.41,180,182.91,185.78,188.72,19.04,18.96,18.89,18.78,18.61,18.39,18.93,19.63,20.59,N/A,N/A -2012,3,2,2,30,101020,99840,98700,95.14,0,6.82,8.27,8.98,9.77,10.58,11.450000000000001,12.32,13.15,14.15,166.77,167.65,168.46,169.85,171.70000000000002,174.08,178.01,182.36,189.21,19.21,19.19,19.16,19.1,19.01,18.89,18.72,18.56,20.79,N/A,N/A -2012,3,2,3,30,100980,99810,98660,93.87,0,8.57,10.43,11.34,12.31,13.13,13.84,14.24,14.51,15.1,173.74,174.99,175.97,177.4,179.19,181.39000000000001,184.71,188.15,193.43,19.46,19.39,19.28,19.05,18.78,18.46,18.29,18.18,18.96,N/A,N/A -2012,3,2,4,30,100940,99770,98630,93.99,0,7.5200000000000005,9.06,9.72,10.370000000000001,10.92,11.41,12.42,13.61,15.98,174.78,174.74,174.99,175.8,177.12,178.93,182.55,186.82,195.63,19.44,19.41,19.35,19.27,19.16,19.01,18.400000000000002,17.69,19.68,N/A,N/A -2012,3,2,5,30,100930,99750,98600,96.61,0,9.31,10.93,11.65,12.38,13.06,13.73,14.450000000000001,15.14,16.85,179.98,181.07,181.81,182.76,183.75,184.8,186.43,188.14000000000001,195.07,18.91,18.75,18.61,18.400000000000002,18.17,17.900000000000002,17.62,17.37,20.02,N/A,N/A -2012,3,2,6,30,100920,99740,98600,96.7,0.4,8.040000000000001,9.3,9.84,10.39,10.96,11.58,12.44,13.34,16.02,181.38,180.57,179.97,179.24,178.82,178.62,179.65,181.01,190.13,18.990000000000002,18.91,18.85,18.76,18.63,18.47,18.13,17.76,18.48,N/A,N/A -2012,3,2,7,30,100910,99730,98590,95.16,0,8.44,9.94,10.64,11.34,12.01,12.68,13.370000000000001,14.030000000000001,15.280000000000001,177.34,177.75,178.14000000000001,178.75,179.49,180.38,181.36,182.33,185.32,19.31,19.21,19.12,18.96,18.76,18.54,18.26,17.990000000000002,17.490000000000002,N/A,N/A -2012,3,2,8,30,100870,99700,98560,96.39,0,8.93,10.51,11.24,12.030000000000001,12.83,13.69,14.68,15.69,17.69,184.91,185.43,185.91,186.59,187.36,188.25,189.15,190.03,189.82,19.06,18.98,18.92,18.830000000000002,18.740000000000002,18.64,18.52,18.42,18.5,N/A,N/A -2012,3,2,9,30,100860,99690,98550,93.94,0,5.83,7.390000000000001,8.15,8.93,9.72,10.59,11.61,12.69,14.540000000000001,172.11,173.94,175.47,177.35,179.12,180.93,182.73,184.49,187.39000000000001,19.59,19.63,19.62,19.6,19.56,19.5,19.39,19.26,18.61,N/A,N/A -2012,3,2,10,30,100850,99680,98540,93.87,0,5.8,7.28,7.98,8.67,9.31,9.93,10.620000000000001,11.31,13.17,182.98,182.87,182.81,182.64000000000001,182.55,182.55,182.73,182.98,184.27,19.6,19.66,19.66,19.650000000000002,19.63,19.62,19.580000000000002,19.53,19.12,N/A,N/A -2012,3,2,11,30,100860,99690,98550,92.68,0.4,6.47,8.26,9.17,10.17,11.040000000000001,11.84,12.5,13.08,13.950000000000001,179.32,180.56,181.41,182.27,183.03,183.74,184.51,185.27,186.93,19.86,19.95,19.95,19.94,19.91,19.88,19.830000000000002,19.78,19.62,N/A,N/A -2012,3,2,12,30,100810,99630,98500,93.41,0,5.84,7.16,7.7,8.27,8.98,9.86,10.700000000000001,11.49,12.23,184.46,184.07,183.87,184.18,184.98,186.21,187.75,189.34,193.77,19.7,19.78,19.78,19.77,19.75,19.72,19.650000000000002,19.57,19.26,N/A,N/A -2012,3,2,13,30,100800,99630,98490,95.09,0.4,6.2,7.54,8.1,8.61,9.16,9.76,10.450000000000001,11.14,13.77,185.42000000000002,184.42000000000002,183.45000000000002,181.82,180.56,179.53,180.32,181.64000000000001,188.67000000000002,19.34,19.36,19.36,19.34,19.3,19.23,18.94,18.61,19.27,N/A,N/A -2012,3,2,14,30,100840,99670,98530,94.08,0,4.9,6.25,6.88,7.62,8.47,9.5,10.64,11.84,14.19,180.15,179.48,179.35,179.94,180.88,182.24,183.31,184.24,188,19.6,19.69,19.7,19.69,19.63,19.51,19.150000000000002,18.73,18.55,N/A,N/A -2012,3,2,15,30,100910,99730,98590,96.27,0,1.9100000000000001,3.33,4.12,5.12,5.97,6.67,7.26,7.8100000000000005,8.99,172.24,177.38,180.9,183.58,185.76,187.5,188.99,190.33,193.04,19.43,19.580000000000002,19.57,19.51,19.41,19.28,19.13,18.990000000000002,18.7,N/A,N/A -2012,3,2,16,30,100900,99730,98590,96.8,0,2.19,3.4,3.99,4.82,5.51,6.08,6.66,7.23,8.3,190.81,191.56,192.71,195.44,198.03,200.48000000000002,202.52,204.36,205.9,19.38,19.51,19.51,19.43,19.3,19.14,18.97,18.82,18.52,N/A,N/A -2012,3,2,17,30,100930,99750,98610,97.23,0,0.99,1.83,2.37,3.0500000000000003,3.66,4.2,4.88,5.65,7.0600000000000005,136.27,169.97,194.41,205.09,211.23000000000002,212.46,211.49,209.5,206.19,19.48,19.47,19.39,19.25,19.1,18.93,18.82,18.75,19.23,N/A,N/A -2012,3,2,18,30,100910,99740,98600,98.15,0,1.41,2.2600000000000002,2.73,3.5100000000000002,4.17,4.68,5.26,5.84,6.6000000000000005,134.02,172.56,197.08,205.49,209.88,209.97,209.21,208.16,207.25,19.51,19.37,19.240000000000002,19.04,18.95,18.92,19.18,19.5,19.77,N/A,N/A -2012,3,2,19,30,100930,99760,98620,99.33,0,1.72,1.72,1.76,2.32,2.84,3.3000000000000003,3.74,4.17,4.9,107.16,136.29,155.42000000000002,180.34,196.03,200.47,203.22,205.16,206.68,19.42,19.23,19.13,19.02,19.150000000000002,19.48,19.7,19.88,19.92,N/A,N/A -2012,3,2,20,30,100850,99670,98540,99.3,0,2.68,3.2600000000000002,3.67,4.23,4.71,5.14,5.54,5.91,6.6000000000000005,181.79,186.05,189.33,193.02,195.84,197.88,199.35,200.53,202.08,19.35,19.34,19.490000000000002,19.98,20.240000000000002,20.330000000000002,20.36,20.36,20.27,N/A,N/A -2012,3,2,21,30,100820,99650,98510,96,0,2.7800000000000002,3.38,3.7800000000000002,4.39,4.83,5.09,5.37,5.65,6.24,147.45000000000002,154.51,161.54,174.18,182.01,185.08,187.49,189.54,192.57,20.01,19.91,19.95,20.150000000000002,20.26,20.29,20.31,20.32,20.29,N/A,N/A -2012,3,2,22,30,100770,99600,98470,95.03,0,2.97,3.85,4.34,5.05,5.51,5.72,5.97,6.23,6.78,154.65,159.27,164.51,175.66,182.68,185.53,187.87,189.9,193.1,20.400000000000002,20.39,20.43,20.580000000000002,20.650000000000002,20.66,20.68,20.71,20.7,N/A,N/A -2012,3,2,23,30,100750,99580,98450,94.66,0,3.5100000000000002,4.8,5.39,6.0200000000000005,6.36,6.46,6.65,6.87,7.2700000000000005,151.02,156.06,161.15,170.16,175.51,177.62,179.33,180.82,183.76,20.38,20.63,20.75,20.87,20.91,20.89,20.89,20.88,20.82,N/A,N/A -2012,3,3,0,30,100750,99580,98450,96.33,0,2.22,3.81,4.64,5.57,6.11,6.3,6.48,6.640000000000001,7.03,130.25,143.1,154.66,169.99,178.71,181.12,183.05,184.71,187.31,19.84,20.22,20.45,20.78,20.94,20.96,20.97,20.96,20.89,N/A,N/A -2012,3,3,1,30,100760,99590,98460,96.32000000000001,0,2.21,3.85,4.74,5.6000000000000005,6.13,6.3100000000000005,6.49,6.67,7.03,132.25,145.64000000000001,157.85,173.24,182.12,184.26,186.07,187.66,190.26,19.75,20.04,20.240000000000002,20.68,20.92,21,21.07,21.14,21.16,N/A,N/A -2012,3,3,2,30,100790,99620,98490,95.31,0,1.81,2.73,3.09,3.5,3.9,4.3100000000000005,4.7,5.07,5.67,154.35,165,171.88,176.55,180.31,183.43,186.06,188.45000000000002,192.32,19.81,20.09,20.17,20.25,20.35,20.46,20.59,20.71,20.84,N/A,N/A -2012,3,3,3,30,100780,99610,98480,96.2,0.7000000000000001,2.87,3.7,3.98,4.33,4.66,4.99,5.3100000000000005,5.62,6.12,154.32,163.67000000000002,169.95000000000002,174.93,178.79,181.81,184.31,186.51,190.43,19.54,19.93,20.150000000000002,20.36,20.490000000000002,20.57,20.62,20.66,20.72,N/A,N/A -2012,3,3,4,30,100770,99590,98460,97.36,0,2.66,4.3500000000000005,5.21,5.66,5.91,6.0200000000000005,6.0200000000000005,5.98,5.7700000000000005,149.73,160.38,170.47,182.56,190.14000000000001,194.41,198.17000000000002,201.43,206.77,19.14,19.22,19.35,19.61,19.830000000000002,20.01,20.16,20.28,20.42,N/A,N/A -2012,3,3,5,30,100780,99600,98470,96.72,0,2.77,4.25,4.97,5.5,5.71,5.66,5.6000000000000005,5.54,5.48,167.94,178.45000000000002,187.22,197.85,205.28,209.88,213.95000000000002,217.51,222.81,19.22,19.330000000000002,19.400000000000002,19.53,19.68,19.85,20.1,20.35,20.59,N/A,N/A -2012,3,3,6,30,100780,99600,98470,96.85000000000001,0,1.8800000000000001,3.49,4.22,4.5600000000000005,4.65,4.58,4.5,4.42,4.46,157.34,176.79,191.44,202.91,210.72,215.82,221.07,225.8,233.49,19.39,19.400000000000002,19.39,19.46,19.55,19.64,19.78,19.91,20.150000000000002,N/A,N/A -2012,3,3,7,30,100820,99650,98510,97.09,2.9000000000000004,1.54,2.22,2.39,2.41,2.5500000000000003,2.81,3.02,3.19,3.39,170.49,193.48000000000002,209.53,222.51,231.23000000000002,237.21,242.35,246.89000000000001,256.4,19.34,19.35,19.32,19.32,19.31,19.29,19.3,19.32,19.48,N/A,N/A -2012,3,3,8,30,100800,99620,98480,97.27,5.5,0.33,0.52,0.67,0.92,1.18,1.42,1.68,1.93,2.35,185.66,242.20000000000002,273.97,280.25,285.88,290.75,294.22,297.17,299.44,19.29,19.330000000000002,19.29,19.23,19.17,19.12,19.09,19.07,19.080000000000002,N/A,N/A -2012,3,3,9,30,100900,99710,98560,80.17,6.2,11.370000000000001,12.33,12.540000000000001,12.59,12.59,12.57,12.52,12.47,12.4,31.32,31.29,31.3,31.3,31.29,31.28,31.27,31.27,31.35,17.56,17.2,17.02,16.82,16.63,16.45,16.26,16.09,15.75,N/A,N/A -2012,3,3,10,30,100930,99740,98580,65.57000000000001,0,12.09,13.32,13.65,13.83,13.950000000000001,14.040000000000001,14.1,14.15,14.23,32.25,32.53,32.7,32.87,33.04,33.2,33.38,33.56,34,17.93,17.61,17.43,17.240000000000002,17.04,16.85,16.66,16.47,16.080000000000002,N/A,N/A -2012,3,3,11,30,101000,99810,98650,64.78,0,12.59,13.870000000000001,14.22,14.42,14.55,14.63,14.69,14.73,14.780000000000001,31.34,31.580000000000002,31.76,31.94,32.12,32.27,32.45,32.62,33,17.5,17.14,16.95,16.75,16.55,16.37,16.17,15.98,15.6,N/A,N/A -2012,3,3,12,30,101090,99890,98730,63.99,0,12.55,13.77,14.120000000000001,14.31,14.43,14.51,14.56,14.6,14.64,30.150000000000002,30.35,30.490000000000002,30.650000000000002,30.82,30.98,31.16,31.32,31.7,16.87,16.46,16.26,16.05,15.85,15.66,15.450000000000001,15.27,14.88,N/A,N/A -2012,3,3,13,30,101150,99950,98790,65.2,0,12.83,14.040000000000001,14.35,14.5,14.59,14.65,14.69,14.71,14.73,28.89,29.1,29.240000000000002,29.38,29.53,29.66,29.82,29.98,30.330000000000002,16.240000000000002,15.77,15.57,15.35,15.15,14.96,14.76,14.57,14.18,N/A,N/A -2012,3,3,14,30,101260,100060,98890,65.2,0,11.870000000000001,12.99,13.31,13.48,13.6,13.68,13.73,13.77,13.81,27.6,27.86,28.01,28.14,28.27,28.38,28.5,28.61,28.85,15.9,15.42,15.200000000000001,14.99,14.780000000000001,14.59,14.38,14.19,13.8,N/A,N/A -2012,3,3,15,30,101340,100130,98960,64.33,0,11.1,12.09,12.38,12.52,12.620000000000001,12.68,12.72,12.75,12.780000000000001,23.89,24.02,24.09,24.17,24.23,24.29,24.34,24.400000000000002,24.53,15.64,15.14,14.93,14.71,14.51,14.31,14.1,13.91,13.52,N/A,N/A -2012,3,3,16,30,101370,100160,98990,58.01,0,10.620000000000001,11.57,11.85,12,12.1,12.18,12.23,12.27,12.33,26.25,26.12,26.04,25.95,25.86,25.77,25.67,25.580000000000002,25.38,16.13,15.68,15.47,15.26,15.06,14.870000000000001,14.66,14.47,14.08,N/A,N/A -2012,3,3,17,30,101420,100220,99050,53.910000000000004,0,9.76,10.63,10.89,11.03,11.13,11.200000000000001,11.25,11.290000000000001,11.35,10.4,10.75,10.98,11.200000000000001,11.38,11.56,11.73,11.89,12.200000000000001,16.73,16.34,16.15,15.94,15.74,15.55,15.35,15.16,14.76,N/A,N/A -2012,3,3,18,30,101450,100250,99080,49,0,10.05,11.01,11.290000000000001,11.44,11.540000000000001,11.620000000000001,11.67,11.71,11.77,7.82,7.94,8.01,8.05,8.09,8.120000000000001,8.15,8.17,8.21,17.42,17.07,16.89,16.69,16.5,16.31,16.11,15.92,15.530000000000001,N/A,N/A -2012,3,3,19,30,101480,100290,99120,48.68,0,9.07,9.93,10.19,10.35,10.46,10.540000000000001,10.6,10.66,10.74,0.52,0.48,0.45,0.42,0.38,0.34,0.3,0.27,0.2,17.92,17.62,17.45,17.25,17.06,16.87,16.67,16.48,16.09,N/A,N/A -2012,3,3,20,30,101500,100310,99140,48.4,0,9.09,9.97,10.22,10.36,10.46,10.53,10.58,10.620000000000001,10.68,348.1,348.63,349.01,349.35,349.65000000000003,349.92,350.18,350.41,350.87,18.18,17.92,17.75,17.56,17.37,17.18,16.98,16.8,16.41,N/A,N/A -2012,3,3,21,30,101540,100350,99180,48.07,0,10.41,11.38,11.66,11.8,11.89,11.94,11.98,12,12.02,339.37,340.08,340.61,341.15000000000003,341.63,342.08,342.53000000000003,342.94,343.78000000000003,17.95,17.67,17.51,17.31,17.13,16.95,16.75,16.57,16.19,N/A,N/A -2012,3,3,22,30,101590,100390,99230,45.65,0,10.56,11.57,11.85,12,12.09,12.16,12.200000000000001,12.23,12.25,338.35,338.85,339.2,339.53000000000003,339.83,340.12,340.41,340.66,341.18,17.73,17.42,17.25,17.05,16.86,16.67,16.47,16.29,15.9,N/A,N/A -2012,3,3,23,30,101660,100460,99290,43.59,0,11.14,12.23,12.530000000000001,12.700000000000001,12.8,12.88,12.93,12.97,13.02,343.94,344.14,344.26,344.37,344.46,344.54,344.61,344.67,344.79,17.54,17.2,17.02,16.82,16.63,16.44,16.23,16.05,15.65,N/A,N/A -2012,3,4,0,30,101790,100590,99420,42.6,0,10.370000000000001,11.31,11.57,11.69,11.78,11.83,11.86,11.89,11.91,354.15000000000003,354.08,354.05,354.01,353.98,353.95,353.90000000000003,353.86,353.78000000000003,17.14,16.78,16.59,16.39,16.19,16,15.790000000000001,15.610000000000001,15.21,N/A,N/A -2012,3,4,1,30,101900,100690,99520,44.14,0,10.24,11.200000000000001,11.47,11.620000000000001,11.73,11.81,11.86,11.91,11.97,356.71,356.12,355.8,355.5,355.23,354.98,354.75,354.53000000000003,354.13,16.75,16.36,16.17,15.96,15.76,15.57,15.36,15.17,14.780000000000001,N/A,N/A -2012,3,4,2,30,102020,100810,99630,43.86,0,10.07,10.97,11.23,11.38,11.48,11.55,11.61,11.66,11.72,352.63,352.63,352.62,352.61,352.59000000000003,352.57,352.56,352.54,352.5,16.53,16.12,15.93,15.72,15.51,15.32,15.120000000000001,14.93,14.530000000000001,N/A,N/A -2012,3,4,3,30,102110,100900,99720,45.32,0,10.36,11.31,11.620000000000001,11.8,11.92,12.02,12.09,12.15,12.23,356.76,356.63,356.53000000000003,356.43,356.35,356.27,356.2,356.13,356,16.3,15.89,15.69,15.47,15.27,15.08,14.870000000000001,14.68,14.280000000000001,N/A,N/A -2012,3,4,4,30,102160,100940,99760,44.46,0,9.33,10.18,10.44,10.6,10.72,10.81,10.88,10.94,11.040000000000001,354.48,354.23,354.08,353.94,353.82,353.7,353.59000000000003,353.5,353.3,16.11,15.68,15.48,15.27,15.07,14.88,14.67,14.48,14.09,N/A,N/A -2012,3,4,5,30,102240,101020,99840,43.410000000000004,0,8.85,9.56,9.78,9.9,9.98,10.040000000000001,10.09,10.120000000000001,10.17,354.06,353.75,353.54,353.35,353.17,353,352.84000000000003,352.69,352.39,16.04,15.620000000000001,15.42,15.21,15.01,14.82,14.620000000000001,14.43,14.030000000000001,N/A,N/A -2012,3,4,6,30,102280,101060,99880,42.730000000000004,0,6.79,7.23,7.34,7.390000000000001,7.43,7.45,7.47,7.48,7.5,0.16,359.98,359.84000000000003,359.7,359.56,359.42,359.28000000000003,359.14,358.85,15.68,15.25,15.06,14.86,14.66,14.48,14.280000000000001,14.09,13.71,N/A,N/A -2012,3,4,7,30,102330,101110,99930,41.34,0,5.59,5.94,6.03,6.08,6.12,6.15,6.17,6.19,6.22,352.67,352.33,352.12,351.92,351.73,351.56,351.39,351.23,350.89,15.700000000000001,15.290000000000001,15.1,14.89,14.69,14.5,14.3,14.11,13.73,N/A,N/A -2012,3,4,8,30,102330,101110,99930,39.71,0,5.91,6.3,6.4,6.45,6.49,6.51,6.53,6.55,6.57,356.56,356.33,356.18,356.04,355.91,355.78000000000003,355.65000000000003,355.53000000000003,355.29,15.870000000000001,15.47,15.27,15.07,14.870000000000001,14.68,14.48,14.290000000000001,13.89,N/A,N/A -2012,3,4,9,30,102350,101130,99950,39.97,0,5.36,5.66,5.73,5.76,5.79,5.8,5.8100000000000005,5.8100000000000005,5.82,354.01,353.54,353.24,352.96,352.71,352.49,352.26,352.05,351.64,15.76,15.35,15.16,14.96,14.75,14.56,14.36,14.17,13.77,N/A,N/A -2012,3,4,10,30,102360,101140,99960,40.35,0,4.45,4.7,4.76,4.79,4.82,4.83,4.8500000000000005,4.86,4.88,346.95,346.5,346.25,346.01,345.79,345.61,345.41,345.23,344.87,15.64,15.24,15.05,14.85,14.65,14.46,14.25,14.06,13.67,N/A,N/A -2012,3,4,11,30,102380,101160,99970,40.88,0,3.79,3.98,4.0200000000000005,4.04,4.0600000000000005,4.07,4.08,4.09,4.1,338.66,338.28000000000003,338.05,337.82,337.61,337.43,337.25,337.08,336.74,15.57,15.18,14.99,14.790000000000001,14.59,14.4,14.19,14,13.61,N/A,N/A -2012,3,4,12,30,102410,101190,100000,41.53,0,3.34,3.49,3.52,3.54,3.5500000000000003,3.56,3.56,3.5700000000000003,3.5700000000000003,318.82,318.33,318.08,317.85,317.64,317.45,317.25,317.08,316.73,15.58,15.19,15,14.8,14.6,14.41,14.200000000000001,14.01,13.620000000000001,N/A,N/A -2012,3,4,13,30,102430,101210,100030,42.74,0,3.75,3.89,3.9,3.89,3.87,3.85,3.83,3.81,3.77,296.93,297.05,297.13,297.21,297.3,297.38,297.47,297.56,297.78000000000003,15.450000000000001,15.06,14.86,14.66,14.46,14.27,14.07,13.88,13.49,N/A,N/A -2012,3,4,14,30,102480,101260,100080,39.910000000000004,0,3.39,3.5300000000000002,3.5500000000000003,3.5500000000000003,3.5500000000000003,3.5500000000000003,3.54,3.5300000000000002,3.52,280.31,280.27,280.28000000000003,280.28000000000003,280.29,280.29,280.33,280.36,280.46,15.5,15.11,14.92,14.71,14.52,14.33,14.120000000000001,13.93,13.540000000000001,N/A,N/A -2012,3,4,15,30,102510,101290,100100,40.61,0,3.96,4.14,4.18,4.19,4.19,4.19,4.19,4.18,4.17,274.51,274.45,274.43,274.39,274.36,274.34000000000003,274.32,274.29,274.26,15.64,15.25,15.06,14.85,14.65,14.47,14.27,14.08,13.69,N/A,N/A -2012,3,4,16,30,102510,101280,100100,43.800000000000004,0,4.54,4.7700000000000005,4.8100000000000005,4.83,4.83,4.84,4.83,4.83,4.8100000000000005,268.53000000000003,268.5,268.5,268.5,268.52,268.54,268.57,268.6,268.68,15.76,15.36,15.17,14.97,14.77,14.59,14.38,14.19,13.8,N/A,N/A -2012,3,4,17,30,102510,101290,100100,44.07,0,4.43,4.67,4.72,4.75,4.76,4.78,4.78,4.79,4.79,251.74,252.47,252.92000000000002,253.35,253.75,254.12,254.5,254.86,255.59,16.04,15.65,15.46,15.26,15.06,14.88,14.67,14.48,14.09,N/A,N/A -2012,3,4,18,30,102490,101270,100090,43.44,0,4.72,4.96,4.99,5.01,5.01,5,4.99,4.98,4.95,244.77,245.56,246.11,246.64000000000001,247.14000000000001,247.61,248.12,248.59,249.63,16.4,16.02,15.84,15.64,15.44,15.25,15.05,14.870000000000001,14.48,N/A,N/A -2012,3,4,19,30,102480,101270,100090,43.28,0,4.75,5,5.04,5.0600000000000005,5.0600000000000005,5.05,5.04,5.03,4.99,222.62,223.18,223.57,223.94,224.3,224.64000000000001,225.01,225.35,226.14000000000001,16.68,16.31,16.13,15.93,15.73,15.55,15.34,15.16,14.77,N/A,N/A -2012,3,4,20,30,102440,101230,100050,44.7,0,4.74,4.97,5,4.99,4.97,4.94,4.9,4.87,4.7700000000000005,209.46,210.03,210.42000000000002,210.83,211.25,211.65,212.19,212.71,214.20000000000002,17.01,16.67,16.490000000000002,16.3,16.11,15.93,15.73,15.55,15.19,N/A,N/A -2012,3,4,21,30,102400,101190,100010,48.67,0,5.91,6.29,6.36,6.38,6.390000000000001,6.390000000000001,6.38,6.36,6.32,208.72,209.03,209.21,209.38,209.55,209.71,209.89000000000001,210.06,210.49,17.05,16.69,16.51,16.31,16.12,15.93,15.73,15.55,15.16,N/A,N/A -2012,3,4,22,30,102380,101170,99990,50.14,0,6.74,7.26,7.38,7.43,7.46,7.49,7.5,7.5,7.5,210.08,210.32,210.47,210.61,210.75,210.86,210.99,211.1,211.34,17.330000000000002,16.98,16.8,16.6,16.4,16.22,16.01,15.83,15.43,N/A,N/A -2012,3,4,23,30,102360,101150,99980,52.39,0,7.5600000000000005,8.19,8.33,8.4,8.45,8.47,8.49,8.5,8.49,213.22,213.45000000000002,213.59,213.72,213.84,213.95000000000002,214.07,214.18,214.42000000000002,17.52,17.18,17,16.8,16.61,16.42,16.22,16.04,15.65,N/A,N/A -2012,3,5,0,30,102380,101170,99990,55.74,0,8.15,8.86,9.03,9.120000000000001,9.17,9.200000000000001,9.22,9.23,9.23,216.11,216.24,216.33,216.4,216.47,216.54,216.6,216.67000000000002,216.8,17.63,17.3,17.12,16.92,16.73,16.54,16.34,16.15,15.77,N/A,N/A -2012,3,5,1,30,102400,101190,100020,55.4,0,8.09,8.81,8.98,9.07,9.120000000000001,9.15,9.17,9.18,9.19,219.48000000000002,219.57,219.63,219.68,219.73000000000002,219.77,219.82,219.86,219.96,17.79,17.48,17.3,17.1,16.91,16.73,16.52,16.34,15.950000000000001,N/A,N/A -2012,3,5,2,30,102440,101230,100050,58.26,0,7.97,8.68,8.84,8.93,8.98,9.02,9.03,9.05,9.05,221.99,222.14000000000001,222.23000000000002,222.32,222.4,222.47,222.56,222.64000000000001,222.8,17.84,17.53,17.35,17.150000000000002,16.96,16.77,16.57,16.39,16,N/A,N/A -2012,3,5,3,30,102450,101240,100070,58.67,0,7.5,8.15,8.3,8.38,8.42,8.45,8.47,8.47,8.47,221.88,221.97,222.04,222.1,222.16,222.22,222.28,222.34,222.46,17.900000000000002,17.59,17.42,17.22,17.03,16.84,16.64,16.46,16.07,N/A,N/A -2012,3,5,4,30,102470,101260,100090,57.35,0,7.16,7.76,7.9,7.97,8.01,8.03,8.040000000000001,8.040000000000001,8.03,223.76,223.83,223.87,223.91,223.95000000000002,223.98000000000002,224.02,224.07,224.18,18.06,17.76,17.59,17.400000000000002,17.21,17.03,16.830000000000002,16.65,16.27,N/A,N/A -2012,3,5,5,30,102490,101290,100110,59.94,0,6.9,7.48,7.61,7.68,7.71,7.73,7.74,7.74,7.72,222.11,222.25,222.34,222.42000000000002,222.51,222.59,222.68,222.76,222.96,18.04,17.75,17.57,17.38,17.19,17,16.8,16.62,16.23,N/A,N/A -2012,3,5,6,30,102530,101320,100150,61.74,0,6.54,7.11,7.24,7.3,7.33,7.3500000000000005,7.36,7.36,7.3500000000000005,227.3,227.38,227.42000000000002,227.47,227.51,227.55,227.59,227.62,227.71,18,17.73,17.56,17.37,17.18,17,16.8,16.62,16.240000000000002,N/A,N/A -2012,3,5,7,30,102560,101350,100180,61.38,0,6.49,7.05,7.18,7.24,7.28,7.3,7.3100000000000005,7.32,7.3100000000000005,229.79,229.88,229.92000000000002,229.97,230.01,230.06,230.1,230.15,230.27,18.01,17.740000000000002,17.57,17.38,17.2,17.02,16.82,16.63,16.25,N/A,N/A -2012,3,5,8,30,102580,101370,100200,65.47,0,6.18,6.7,6.8100000000000005,6.87,6.91,6.92,6.93,6.93,6.93,231.35,231.39000000000001,231.41,231.43,231.45000000000002,231.46,231.46,231.46,231.46,17.92,17.650000000000002,17.48,17.29,17.1,16.92,16.72,16.54,16.15,N/A,N/A -2012,3,5,9,30,102590,101380,100200,64.16,0,5.57,6.04,6.140000000000001,6.19,6.22,6.24,6.25,6.25,6.25,234.54,234.59,234.63,234.66,234.70000000000002,234.72,234.75,234.78,234.85,17.92,17.650000000000002,17.48,17.29,17.1,16.92,16.73,16.54,16.16,N/A,N/A -2012,3,5,10,30,102620,101410,100240,65.79,0,5.24,5.67,5.7700000000000005,5.8100000000000005,5.84,5.8500000000000005,5.86,5.86,5.86,234.13,234.21,234.25,234.3,234.33,234.37,234.4,234.43,234.52,17.89,17.62,17.45,17.26,17.06,16.88,16.68,16.5,16.11,N/A,N/A -2012,3,5,11,30,102650,101440,100270,64.48,0,4.63,4.99,5.07,5.1000000000000005,5.12,5.13,5.14,5.14,5.14,240.16,240.15,240.14000000000001,240.12,240.09,240.05,240.01,239.98000000000002,239.87,17.900000000000002,17.63,17.46,17.27,17.080000000000002,16.9,16.7,16.52,16.14,N/A,N/A -2012,3,5,12,30,102690,101480,100310,64.35,0,3.84,4.12,4.17,4.2,4.21,4.22,4.23,4.23,4.23,232.12,232.17000000000002,232.21,232.24,232.27,232.31,232.35,232.38,232.47,17.89,17.62,17.45,17.26,17.07,16.88,16.69,16.5,16.12,N/A,N/A -2012,3,5,13,30,102740,101530,100350,66.05,0,3.85,4.13,4.18,4.21,4.23,4.24,4.25,4.26,4.28,228.9,228.75,228.65,228.55,228.44,228.34,228.23000000000002,228.11,227.84,17.830000000000002,17.55,17.38,17.19,17,16.82,16.62,16.43,16.05,N/A,N/A -2012,3,5,14,30,102810,101600,100420,64.25,0,3.18,3.41,3.45,3.47,3.49,3.49,3.5,3.5,3.5100000000000002,222.94,222.88,222.83,222.78,222.73000000000002,222.69,222.67000000000002,222.65,222.62,17.91,17.63,17.47,17.27,17.080000000000002,16.9,16.7,16.52,16.13,N/A,N/A -2012,3,5,15,30,102850,101630,100460,66.07000000000001,0,2.82,3,3.0300000000000002,3.0500000000000003,3.0500000000000003,3.06,3.06,3.0700000000000003,3.0700000000000003,215.76,215.83,215.86,215.89000000000001,215.89000000000001,215.89000000000001,215.89000000000001,215.88,215.83,17.87,17.580000000000002,17.41,17.21,17.02,16.84,16.64,16.45,16.07,N/A,N/A -2012,3,5,16,30,102860,101650,100480,64.52,0,2.42,2.5500000000000003,2.57,2.58,2.59,2.6,2.6,2.6,2.6,216.46,216.44,216.45000000000002,216.45000000000002,216.45000000000002,216.45000000000002,216.47,216.49,216.5,17.94,17.64,17.47,17.28,17.09,16.9,16.7,16.52,16.13,N/A,N/A -2012,3,5,17,30,102860,101650,100470,66.62,0,3.14,3.31,3.35,3.36,3.37,3.38,3.38,3.38,3.39,201.75,201.89000000000001,202,202.1,202.19,202.27,202.37,202.46,202.67000000000002,17.96,17.64,17.46,17.27,17.080000000000002,16.89,16.69,16.51,16.12,N/A,N/A -2012,3,5,18,30,102870,101660,100480,64.36,0,3.5700000000000003,3.77,3.81,3.8200000000000003,3.83,3.83,3.84,3.84,3.83,198.66,198.78,198.86,198.94,199.02,199.09,199.16,199.23000000000002,199.4,18.13,17.81,17.63,17.44,17.25,17.06,16.86,16.68,16.29,N/A,N/A -2012,3,5,19,30,102880,101660,100490,63.68,0,3.13,3.31,3.34,3.36,3.37,3.38,3.38,3.38,3.38,187.62,187.71,187.81,187.9,187.98,188.04,188.09,188.14000000000001,188.27,18.240000000000002,17.92,17.75,17.56,17.36,17.18,16.98,16.79,16.41,N/A,N/A -2012,3,5,20,30,102830,101620,100450,67.07000000000001,0,4.07,4.32,4.37,4.4,4.41,4.41,4.42,4.41,4.41,188.5,188.61,188.71,188.79,188.88,188.95000000000002,189.03,189.11,189.28,18.23,17.92,17.740000000000002,17.55,17.36,17.17,16.98,16.79,16.41,N/A,N/A -2012,3,5,21,30,102800,101590,100420,64.61,0,4.01,4.3100000000000005,4.37,4.4,4.42,4.43,4.44,4.44,4.45,184.36,184.54,184.64000000000001,184.75,184.84,184.93,185.02,185.09,185.26,18.34,18.06,17.89,17.7,17.5,17.32,17.12,16.94,16.55,N/A,N/A -2012,3,5,22,30,102770,101560,100380,66.21000000000001,0,4.07,4.38,4.44,4.47,4.49,4.5,4.51,4.51,4.5200000000000005,180.66,180.67000000000002,180.68,180.67000000000002,180.66,180.66,180.64000000000001,180.63,180.6,18.25,17.990000000000002,17.82,17.63,17.43,17.25,17.05,16.87,16.48,N/A,N/A -2012,3,5,23,30,102740,101530,100350,65.65,0,4.32,4.67,4.75,4.79,4.82,4.84,4.8500000000000005,4.86,4.87,174.3,174.49,174.64000000000001,174.76,174.87,174.97,175.07,175.17000000000002,175.33,18.22,17.96,17.8,17.62,17.43,17.25,17.05,16.87,16.490000000000002,N/A,N/A -2012,3,6,0,30,102710,101500,100320,67.13,0,4.87,5.28,5.37,5.41,5.44,5.47,5.48,5.49,5.51,175.33,175.4,175.45000000000002,175.5,175.54,175.59,175.63,175.67000000000002,175.78,18.14,17.88,17.72,17.53,17.34,17.16,16.97,16.78,16.41,N/A,N/A -2012,3,6,1,30,102700,101490,100320,67.06,0,5.2,5.66,5.76,5.8100000000000005,5.8500000000000005,5.87,5.89,5.9,5.92,170.8,170.88,170.94,170.97,171,171.02,171.05,171.07,171.11,18.11,17.85,17.69,17.5,17.32,17.13,16.94,16.76,16.37,N/A,N/A -2012,3,6,2,30,102700,101490,100320,69.42,0,5.46,5.94,6.05,6.12,6.16,6.19,6.21,6.22,6.25,166.99,167.07,167.12,167.16,167.21,167.25,167.3,167.34,167.45000000000002,18.07,17.81,17.64,17.45,17.26,17.080000000000002,16.88,16.7,16.32,N/A,N/A -2012,3,6,3,30,102690,101480,100310,67.56,0,6.3100000000000005,6.890000000000001,7.0200000000000005,7.1000000000000005,7.140000000000001,7.17,7.19,7.21,7.23,167.12,167.21,167.26,167.32,167.38,167.44,167.5,167.56,167.71,18.14,17.88,17.72,17.53,17.34,17.16,16.96,16.78,16.4,N/A,N/A -2012,3,6,4,30,102670,101470,100290,70.87,0,6.3,6.890000000000001,7.03,7.11,7.17,7.21,7.24,7.2700000000000005,7.3,163.77,163.86,163.92000000000002,163.99,164.05,164.11,164.17000000000002,164.22,164.35,18.080000000000002,17.82,17.650000000000002,17.46,17.28,17.09,16.9,16.72,16.330000000000002,N/A,N/A -2012,3,6,5,30,102650,101440,100270,70.35000000000001,0,6.65,7.29,7.46,7.55,7.62,7.66,7.7,7.73,7.7700000000000005,163.73,163.84,163.92000000000002,163.98,164.05,164.1,164.16,164.21,164.33,18.14,17.87,17.71,17.52,17.330000000000002,17.150000000000002,16.96,16.77,16.39,N/A,N/A -2012,3,6,6,30,102660,101450,100280,70.56,0,7.23,7.95,8.13,8.24,8.31,8.370000000000001,8.4,8.44,8.47,163.18,163.31,163.39000000000001,163.47,163.55,163.62,163.70000000000002,163.77,163.92000000000002,18.23,17.97,17.81,17.62,17.43,17.25,17.05,16.87,16.48,N/A,N/A -2012,3,6,7,30,102640,101430,100260,72.05,0,7.33,8.09,8.290000000000001,8.42,8.51,8.58,8.63,8.67,8.73,164.34,164.53,164.63,164.73,164.82,164.9,164.99,165.07,165.24,18.28,18.03,17.87,17.68,17.5,17.32,17.12,16.94,16.56,N/A,N/A -2012,3,6,8,30,102600,101400,100230,73.54,0,7.66,8.47,8.700000000000001,8.85,8.950000000000001,9.040000000000001,9.1,9.15,9.23,166.16,166.37,166.5,166.62,166.74,166.85,166.96,167.07,167.27,18.35,18.11,17.95,17.77,17.59,17.41,17.21,17.03,16.65,N/A,N/A -2012,3,6,9,30,102570,101360,100190,74.36,0,7.79,8.620000000000001,8.85,9,9.11,9.19,9.25,9.3,9.38,168.5,168.45000000000002,168.45000000000002,168.44,168.42000000000002,168.4,168.39000000000001,168.37,168.32,18.42,18.19,18.03,17.85,17.67,17.490000000000002,17.3,17.12,16.73,N/A,N/A -2012,3,6,10,30,102540,101330,100160,75.57000000000001,0,7.91,8.76,9,9.16,9.27,9.36,9.43,9.49,9.57,165.32,165.55,165.67000000000002,165.79,165.9,166.01,166.13,166.24,166.48,18.44,18.21,18.06,17.88,17.7,17.52,17.330000000000002,17.150000000000002,16.77,N/A,N/A -2012,3,6,11,30,102530,101320,100160,78.58,0,6.79,7.92,8.38,8.67,8.93,9.17,9.4,9.61,9.94,161.48,162.95000000000002,163.56,163.6,163.65,163.71,163.82,163.94,164.17000000000002,18.47,18.23,18.09,17.92,17.76,17.61,17.46,17.31,16.98,N/A,N/A -2012,3,6,12,30,102510,101310,100140,79.39,0,6.3500000000000005,7.25,7.62,7.930000000000001,8.24,8.53,8.81,9.06,9.4,156.33,157.26,157.81,158.17000000000002,158.46,158.70000000000002,158.95000000000002,159.19,159.72,18.45,18.22,18.080000000000002,17.93,17.79,17.66,17.54,17.42,17.12,N/A,N/A -2012,3,6,13,30,102520,101310,100150,77.16,0,7.44,8.38,8.700000000000001,8.96,9.18,9.370000000000001,9.53,9.68,9.950000000000001,156.02,156.37,156.71,157.09,157.48,157.85,158.24,158.61,159.42000000000002,18.68,18.5,18.38,18.22,18.07,17.91,17.740000000000002,17.59,17.25,N/A,N/A -2012,3,6,14,30,102550,101350,100180,75.75,0,7.9,8.93,9.27,9.540000000000001,9.77,9.96,10.120000000000001,10.27,10.53,153.57,153.49,153.48,153.46,153.44,153.43,153.42000000000002,153.43,153.47,18.81,18.64,18.51,18.35,18.18,18.02,17.84,17.67,17.32,N/A,N/A -2012,3,6,15,30,102560,101360,100190,75.86,0,7.37,8.41,8.790000000000001,9.1,9.370000000000001,9.61,9.84,10.040000000000001,10.42,153.04,153.42000000000002,153.69,153.98,154.26,154.54,154.86,155.15,155.79,18.92,18.77,18.66,18.51,18.36,18.22,18.06,17.900000000000002,17.57,N/A,N/A -2012,3,6,16,30,102560,101350,100190,78.63,0,7.08,8.05,8.4,8.69,8.94,9.15,9.36,9.540000000000001,9.88,148.95000000000002,149.42000000000002,149.74,150.09,150.45000000000002,150.8,151.18,151.54,152.29,18.89,18.73,18.61,18.46,18.3,18.150000000000002,17.990000000000002,17.830000000000002,17.5,N/A,N/A -2012,3,6,17,30,102520,101320,100150,80.11,0,7.2,8.18,8.53,8.82,9.07,9.3,9.51,9.700000000000001,10.07,144.02,144.47,144.83,145.25,145.68,146.12,146.61,147.07,148.08,18.94,18.78,18.650000000000002,18.5,18.36,18.21,18.04,17.89,17.57,N/A,N/A -2012,3,6,18,30,102490,101290,100130,81.56,0,6.92,7.87,8.21,8.5,8.75,8.96,9.16,9.33,9.67,142.36,142.79,143.11,143.5,143.89000000000001,144.27,144.70000000000002,145.1,145.98,18.990000000000002,18.830000000000002,18.7,18.56,18.400000000000002,18.25,18.09,17.94,17.62,N/A,N/A -2012,3,6,19,30,102460,101260,100090,82.61,0,6.93,7.91,8.27,8.58,8.85,9.09,9.32,9.52,9.91,136.83,137.36,137.72,138.13,138.53,138.92000000000002,139.33,139.71,140.5,19.01,18.86,18.740000000000002,18.59,18.45,18.3,18.14,18,17.67,N/A,N/A -2012,3,6,20,30,102400,101200,100040,83.01,0,7.2700000000000005,8.41,8.85,9.24,9.58,9.89,10.18,10.44,10.91,134.64000000000001,134.95,135.21,135.52,135.86,136.21,136.6,136.98,137.78,19.03,18.900000000000002,18.79,18.66,18.53,18.39,18.25,18.11,17.81,N/A,N/A -2012,3,6,21,30,102340,101140,99980,82.79,0,7.9,9.14,9.620000000000001,10.040000000000001,10.43,10.77,11.1,11.4,11.94,132.76,133.3,133.67000000000002,134.09,134.53,134.95,135.41,135.83,136.75,19.02,18.900000000000002,18.8,18.68,18.55,18.42,18.28,18.150000000000002,17.86,N/A,N/A -2012,3,6,22,30,102280,101080,99920,82.86,0,8.540000000000001,9.82,10.3,10.71,11.07,11.4,11.71,11.98,12.51,131.6,132,132.32,132.7,133.09,133.49,133.92000000000002,134.31,135.16,19.03,18.92,18.82,18.69,18.56,18.43,18.28,18.150000000000002,17.85,N/A,N/A -2012,3,6,23,30,102220,101030,99870,83.45,0,8.66,9.97,10.47,10.9,11.28,11.63,11.950000000000001,12.24,12.780000000000001,133.41,133.8,134.08,134.4,134.73,135.07,135.43,135.78,136.53,18.990000000000002,18.87,18.77,18.650000000000002,18.51,18.38,18.240000000000002,18.1,17.81,N/A,N/A -2012,3,7,0,30,102160,100960,99800,84.91,0,9.16,10.52,11.01,11.43,11.8,12.13,12.450000000000001,12.74,13.290000000000001,133.71,134.03,134.25,134.5,134.77,135.04,135.34,135.64000000000001,136.28,18.96,18.830000000000002,18.72,18.580000000000002,18.44,18.3,18.150000000000002,18.01,17.71,N/A,N/A -2012,3,7,1,30,102130,100930,99770,85.61,0,9.49,10.94,11.46,11.92,12.32,12.69,13.05,13.38,14,135.15,135.44,135.66,135.93,136.21,136.5,136.83,137.15,137.86,18.98,18.85,18.740000000000002,18.61,18.47,18.330000000000002,18.19,18.05,17.76,N/A,N/A -2012,3,7,2,30,102110,100910,99750,85.66,0,10.18,11.71,12.26,12.73,13.15,13.530000000000001,13.91,14.26,14.93,133.25,133.58,133.81,134.06,134.32,134.58,134.86,135.12,135.69,19.04,18.92,18.81,18.68,18.54,18.41,18.26,18.13,17.830000000000002,N/A,N/A -2012,3,7,3,30,102080,100890,99730,87.16,0,10.25,11.870000000000001,12.450000000000001,12.97,13.43,13.85,14.25,14.61,15.31,138.8,139.1,139.29,139.53,139.77,140,140.26,140.5,141.01,19.06,18.94,18.84,18.72,18.580000000000002,18.45,18.31,18.18,17.89,N/A,N/A -2012,3,7,4,30,102050,100860,99700,85.87,0,10.620000000000001,12.27,12.88,13.41,13.86,14.27,14.65,15,15.65,140.33,140.63,140.85,141.09,141.32,141.54,141.77,141.99,142.44,19.13,19.03,18.94,18.81,18.68,18.56,18.42,18.29,18.01,N/A,N/A -2012,3,7,5,30,102020,100830,99670,87.31,0,9.34,10.83,11.4,11.92,12.39,12.83,13.26,13.65,14.42,142.17000000000002,142.37,142.5,142.67000000000002,142.84,143.01,143.20000000000002,143.39000000000001,143.8,19.07,18.96,18.86,18.73,18.6,18.47,18.330000000000002,18.2,17.91,N/A,N/A -2012,3,7,6,30,102030,100830,99680,87.55,0,10,11.540000000000001,12.11,12.61,13.05,13.450000000000001,13.84,14.19,14.88,148.05,148.17000000000002,148.25,148.35,148.46,148.56,148.68,148.79,149.08,19.240000000000002,19.12,19.02,18.89,18.76,18.62,18.48,18.35,18.07,N/A,N/A -2012,3,7,7,30,102030,100830,99680,89.12,0,8.91,10.39,10.97,11.48,11.950000000000001,12.38,12.8,13.19,13.94,151.66,151.79,151.91,152.06,152.21,152.37,152.57,152.76,153.26,19.23,19.13,19.03,18.91,18.79,18.66,18.53,18.400000000000002,18.14,N/A,N/A -2012,3,7,8,30,102000,100810,99650,90.16,0,8.3,9.69,10.24,10.75,11.22,11.65,12.07,12.46,13.26,151.01,151.39000000000001,151.6,151.8,151.97,152.13,152.29,152.43,152.8,19.240000000000002,19.14,19.04,18.92,18.79,18.67,18.53,18.400000000000002,18.14,N/A,N/A -2012,3,7,9,30,102000,100810,99650,90.4,0,7.95,9.41,10,10.55,11.05,11.5,11.94,12.34,13.09,153.1,153.65,154.07,154.55,155.03,155.51,155.98,156.42000000000002,157.23,19.31,19.240000000000002,19.17,19.080000000000002,18.97,18.87,18.76,18.650000000000002,18.400000000000002,N/A,N/A -2012,3,7,10,30,101950,100760,99610,90.92,0,8.23,9.700000000000001,10.31,10.9,11.44,11.94,12.450000000000001,12.92,13.81,149.68,150.31,150.77,151.35,151.94,152.54,153.23,153.89000000000001,155.29,19.31,19.240000000000002,19.17,19.080000000000002,18.98,18.89,18.79,18.7,18.5,N/A,N/A -2012,3,7,11,30,101940,100750,99590,91.54,0,7.930000000000001,9.4,10,10.56,11.07,11.55,12,12.41,13.23,153.24,154.04,154.59,155.22,155.87,156.53,157.23,157.89000000000001,159.33,19.3,19.240000000000002,19.17,19.080000000000002,18.98,18.89,18.78,18.68,18.48,N/A,N/A -2012,3,7,12,30,101940,100750,99600,91.67,0,7.890000000000001,9.26,9.81,10.33,10.78,11.18,11.56,11.91,12.56,150.06,150.69,151.14000000000001,151.70000000000002,152.26,152.84,153.46,154.06,155.36,19.28,19.21,19.14,19.04,18.93,18.82,18.7,18.59,18.34,N/A,N/A -2012,3,7,13,30,101940,100750,99600,91.36,0,7.2700000000000005,8.72,9.33,9.94,10.5,11.02,11.55,12.030000000000001,12.950000000000001,146.28,147.41,148.26,149.27,150.26,151.23,152.15,153.02,154.49,19.330000000000002,19.3,19.26,19.19,19.13,19.06,18.990000000000002,18.91,18.72,N/A,N/A -2012,3,7,14,30,101990,100800,99650,92.12,0,7.140000000000001,8.52,9.13,9.71,10.26,10.78,11.31,11.81,12.780000000000001,144.04,144.46,144.84,145.42000000000002,146.17000000000002,147.03,148.18,149.33,151.92000000000002,19.34,19.3,19.240000000000002,19.17,19.09,19.02,18.94,18.88,18.740000000000002,N/A,N/A -2012,3,7,15,30,102010,100820,99660,92.36,0,6.94,8.36,8.98,9.620000000000001,10.23,10.82,11.41,11.98,12.99,143.41,144.38,145.13,146.1,147.17000000000002,148.31,149.58,150.81,153.29,19.45,19.42,19.39,19.34,19.3,19.26,19.240000000000002,19.22,19.16,N/A,N/A -2012,3,7,16,30,102000,100810,99660,92.27,0,6.84,8.17,8.73,9.3,9.84,10.36,10.91,11.43,12.5,137.04,138.34,139.33,140.56,141.85,143.15,144.6,145.99,149,19.46,19.42,19.38,19.32,19.25,19.19,19.12,19.06,18.94,N/A,N/A -2012,3,7,17,30,102000,100810,99660,91.53,0,6.93,8.25,8.790000000000001,9.33,9.81,10.27,10.73,11.17,12.1,136.73,137.72,138.48,139.49,140.61,141.79,143.21,144.6,147.92000000000002,19.580000000000002,19.54,19.490000000000002,19.42,19.35,19.28,19.22,19.150000000000002,19.03,N/A,N/A -2012,3,7,18,30,101980,100790,99640,91.56,0,6.66,7.98,8.57,9.13,9.64,10.120000000000001,10.57,10.98,11.84,131.08,132.1,132.98,134.21,135.65,137.25,139.20000000000002,141.09,145.89000000000001,19.61,19.59,19.56,19.51,19.47,19.43,19.39,19.34,19.25,N/A,N/A -2012,3,7,19,30,101970,100780,99630,92.89,2.6,7.16,8.540000000000001,9.11,9.66,10.17,10.66,11.16,11.63,12.58,127.87,128.39000000000001,128.96,129.79,130.79,131.91,133.24,134.53,137.68,19.52,19.490000000000002,19.45,19.38,19.31,19.240000000000002,19.17,19.11,18.990000000000002,N/A,N/A -2012,3,7,20,30,101900,100710,99560,94.26,0,7.15,8.63,9.290000000000001,9.98,10.63,11.26,11.91,12.540000000000001,13.73,130.4,130.69,131.01,131.53,132.21,132.99,134.03,135.08,137.93,19.490000000000002,19.44,19.39,19.32,19.27,19.22,19.2,19.18,19.17,N/A,N/A -2012,3,7,21,30,101820,100630,99480,94.93,0,6.98,8.52,9.200000000000001,9.9,10.540000000000001,11.14,11.75,12.32,13.5,123.18,124.26,125.03,125.95,126.99000000000001,128.08,129.47,130.83,134.07,19.44,19.44,19.41,19.37,19.32,19.27,19.21,19.150000000000002,19.05,N/A,N/A -2012,3,7,22,30,101780,100600,99450,93.95,0,9.49,11.18,11.89,12.58,13.22,13.83,14.450000000000001,15.040000000000001,16.23,128.48,129.09,129.53,130.2,130.97,131.82,132.9,133.99,136.98,19.55,19.54,19.51,19.45,19.400000000000002,19.35,19.31,19.28,19.25,N/A,N/A -2012,3,7,23,30,101720,100540,99390,94.32000000000001,0,9.22,10.99,11.72,12.43,13.13,13.81,14.530000000000001,15.21,16.61,127.7,128.46,129.09,129.91,130.88,131.93,133.21,134.48,137.67000000000002,19.48,19.47,19.44,19.39,19.35,19.32,19.29,19.26,19.27,N/A,N/A -2012,3,8,0,30,101700,100510,99370,93.32000000000001,22,9.57,11.370000000000001,12.120000000000001,12.83,13.5,14.16,14.84,15.49,16.81,130.44,130.96,131.41,131.99,132.57,133.16,133.81,134.43,136.02,19.69,19.72,19.71,19.68,19.64,19.59,19.54,19.48,19.400000000000002,N/A,N/A -2012,3,8,1,30,101690,100510,99360,92.59,0.4,9.67,11.72,12.61,13.5,14.290000000000001,15.030000000000001,15.74,16.39,17.67,136.81,137.51,138.07,138.76,139.48,140.20000000000002,141.04,141.84,143.99,19.84,19.89,19.88,19.87,19.86,19.84,19.830000000000002,19.82,19.81,N/A,N/A -2012,3,8,2,30,101710,100530,99390,91.21000000000001,2.6,9.81,11.98,13,14.01,14.91,15.75,16.46,17.09,17.81,145.8,147.66,148.9,150.46,151.95000000000002,153.41,154.62,155.68,156.52,20.13,20.240000000000002,20.26,20.25,20.23,20.21,20.16,20.12,19.94,N/A,N/A -2012,3,8,3,30,101680,100500,99360,92.13,0,7.61,9.55,10.35,11.11,11.790000000000001,12.41,12.96,13.46,14.3,145.36,145.79,146.05,146.18,146.25,146.29,146.4,146.52,146.89000000000001,19.98,20.07,20.080000000000002,20.07,20.06,20.03,19.990000000000002,19.96,19.84,N/A,N/A -2012,3,8,4,30,101650,100470,99330,92.53,4.4,10.040000000000001,11.78,12.4,12.94,13.38,13.75,14.08,14.370000000000001,14.92,156.70000000000002,156.55,156.39000000000001,156.14000000000001,155.83,155.51,155.13,154.77,154.04,19.86,19.87,19.830000000000002,19.78,19.73,19.67,19.61,19.56,19.45,N/A,N/A -2012,3,8,5,30,101660,100480,99330,92.31,9.5,10.81,12.56,13.19,13.74,14.21,14.65,15.09,15.51,16.47,153.58,153.3,153.15,152.9,152.58,152.21,151.79,151.37,150.70000000000002,19.900000000000002,19.92,19.89,19.830000000000002,19.77,19.7,19.64,19.580000000000002,19.46,N/A,N/A -2012,3,8,6,30,101660,100480,99340,92.88,0,9.14,10.97,11.73,12.46,13.11,13.72,14.32,14.86,15.98,156.19,156.81,157.20000000000002,157.64000000000001,158.03,158.38,158.73,159.05,160.02,19.94,19.96,19.94,19.900000000000002,19.87,19.84,19.81,19.79,19.76,N/A,N/A -2012,3,8,7,30,101730,100540,99400,93.62,0,9.23,11.15,12.01,12.88,13.71,14.52,15.34,16.13,17.59,160.45000000000002,160.63,160.82,161.06,161.32,161.6,161.82,162.01,161.63,19.8,19.82,19.79,19.73,19.68,19.62,19.56,19.5,19.400000000000002,N/A,N/A -2012,3,8,8,30,101740,100550,99410,91.32000000000001,0,11,13.07,13.86,14.51,15.040000000000001,15.47,15.82,16.11,16.580000000000002,157.36,157.57,157.78,158.03,158.3,158.57,158.89000000000001,159.20000000000002,160.06,20.28,20.36,20.34,20.27,20.18,20.080000000000002,19.95,19.82,19.53,N/A,N/A -2012,3,8,9,30,101710,100530,99380,93.8,0,7.18,8.8,9.49,10.18,10.85,11.52,12.21,12.870000000000001,13.94,160.38,160.67000000000002,160.99,161.44,161.9,162.38,162.79,163.16,163.32,19.78,19.82,19.81,19.76,19.69,19.62,19.52,19.42,19.25,N/A,N/A -2012,3,8,10,30,101690,100510,99360,93.79,0,6.44,8.48,9.6,10.99,12.540000000000001,14.25,15.63,16.84,17.36,147.46,149.47,151,152.89000000000001,154.65,156.37,157.55,158.51,159.67000000000002,19.81,19.86,19.87,19.91,20.06,20.29,20.46,20.59,20.25,N/A,N/A -2012,3,8,11,30,101720,100540,99390,94.16,0,6.24,7.73,8.38,9.01,9.59,10.14,10.74,11.33,12.83,146.8,147.41,148.01,148.78,149.68,150.70000000000002,152.09,153.51,157.18,19.68,19.73,19.73,19.7,19.66,19.62,19.580000000000002,19.54,19.53,N/A,N/A -2012,3,8,12,30,101730,100540,99400,94.10000000000001,0,6.03,7.62,8.41,9.23,9.96,10.64,11.21,11.71,13.16,136.37,139.20000000000002,141.71,145.27,149.12,153.27,157.39000000000001,161.28,166.96,19.72,19.77,19.77,19.740000000000002,19.66,19.53,19.35,19.16,19.38,N/A,N/A -2012,3,8,13,30,101710,100530,99380,94.26,0,7.43,9.200000000000001,10.02,10.86,11.59,12.27,12.89,13.450000000000001,14.44,143.04,144.08,144.82,145.67000000000002,146.42000000000002,147.12,147.69,148.20000000000002,149.05,19.68,19.66,19.61,19.52,19.41,19.3,19.14,18.98,18.94,N/A,N/A -2012,3,8,14,30,101720,100540,99400,93.46000000000001,0,6.7,8.47,9.3,10.13,10.86,11.52,12.040000000000001,12.49,13.14,142.54,144.07,145.32,146.79,147.89000000000001,148.74,148.64000000000001,148.3,146.77,19.87,19.94,19.95,19.96,19.96,19.94,19.92,19.89,19.76,N/A,N/A -2012,3,8,15,30,101740,100560,99420,92.83,0,9.14,11.11,11.91,12.68,13.32,13.89,14.34,14.74,15.32,147.12,148.23,149.13,150.39000000000001,151.85,153.45000000000002,155.43,157.36,161.69,20.01,20.02,19.98,19.93,19.85,19.77,19.63,19.48,19.1,N/A,N/A -2012,3,8,16,30,101760,100580,99440,93.27,0,5.71,7.45,8.27,9.120000000000001,9.92,10.69,11.52,12.34,14.33,137.11,139.06,140.67000000000002,142.82,144.96,147.14000000000001,149.73,152.34,158.05,20.01,20.11,20.11,20.09,20.05,19.990000000000002,19.91,19.830000000000002,19.55,N/A,N/A -2012,3,8,17,30,101770,100590,99450,93.55,0,5.2700000000000005,6.8100000000000005,7.47,8.13,8.76,9.38,10.03,10.65,11.82,130.09,133.02,135.3,137.95000000000002,140.5,143,145.08,146.95000000000002,150.6,20,20.1,20.12,20.13,20.11,20.09,20.04,19.98,19.740000000000002,N/A,N/A -2012,3,8,18,30,101780,100600,99460,93.57000000000001,0,5.13,6.72,7.43,8.17,8.89,9.620000000000001,10.35,11.06,12.5,128.93,131.4,133.33,135.84,138.53,141.47,144.56,147.58,153.19,20.07,20.2,20.240000000000002,20.25,20.26,20.240000000000002,20.19,20.13,19.79,N/A,N/A -2012,3,8,19,30,101770,100590,99450,93.27,0,5.37,6.91,7.58,8.25,8.9,9.55,10.23,10.9,12.11,120.76,123.92,126.37,129.43,132.47,135.59,138.47,141.16,146.55,20.14,20.29,20.32,20.34,20.34,20.32,20.18,20.01,19.75,N/A,N/A -2012,3,8,20,30,101740,100560,99420,92.64,0,5.87,7.55,8.290000000000001,8.99,9.63,10.23,10.8,11.34,13.040000000000001,121.67,124.64,127.10000000000001,130.35,133.44,136.5,139.92000000000002,143.29,152.62,20.19,20.34,20.37,20.37,20.36,20.34,20.31,20.28,20.06,N/A,N/A -2012,3,8,21,30,101720,100540,99400,92.9,0,5.41,7.05,7.76,8.41,8.950000000000001,9.43,10.14,10.89,12.870000000000001,125.9,127.98,129.69,131.83,134.19,136.71,141.6,147.05,157.44,20.1,20.25,20.28,20.3,20.31,20.32,20.330000000000002,20.34,20.17,N/A,N/A -2012,3,8,22,30,101730,100550,99410,92.93,0,5.0200000000000005,6.8,7.58,8.31,8.83,9.200000000000001,10.120000000000001,11.22,11.82,115.84,118.72,120.85000000000001,123.37,125.83,128.25,141.06,157.12,161.8,20.09,20.28,20.330000000000002,20.37,20.38,20.39,20.42,20.46,20.330000000000002,N/A,N/A -2012,3,8,23,30,101730,100550,99410,92.34,0,5.94,7.69,8.370000000000001,8.96,9.78,10.790000000000001,12.33,14.05,14.22,118.44,122.27,125.42,129.85,136.78,145.82,152.86,159.39000000000001,165.53,20.16,20.35,20.41,20.46,20.48,20.48,20.42,20.35,20.27,N/A,N/A -2012,3,9,0,30,101770,100590,99450,93.35000000000001,0,4.64,6.640000000000001,7.66,8.69,9.38,9.83,9.97,10.02,10.5,113.85000000000001,120.77,126.86,135.71,142.95000000000002,148.86,155.18,161.04,162.5,19.97,20.23,20.31,20.37,20.400000000000002,20.400000000000002,20.42,20.44,20.25,N/A,N/A -2012,3,9,1,30,101800,100620,99480,93.45,0,4.1,6.82,8.14,8.8,8.94,8.76,9.38,10.19,10.81,108.83,126.98,137.49,140.89000000000001,145.57,150.68,159.86,169.91,172.91,20.01,20.41,20.490000000000002,20.42,20.35,20.31,20.2,20.09,19.85,N/A,N/A -2012,3,9,2,30,101830,100650,99500,93.67,0,4.15,6.7700000000000005,8.23,9.53,10.38,10.91,10.290000000000001,9.56,9.25,125.83,136.12,142.48,146,149.48,152.79,161.55,169.85,175.55,19.95,20.11,20.14,20.13,20.1,20.080000000000002,20.12,20.17,20.04,N/A,N/A -2012,3,9,3,30,101870,100690,99540,92.43,0,6.32,7.98,8.19,7.57,7.04,6.58,6.55,6.63,6.75,141.56,146.94,152.65,161.43,170.46,179.4,181.25,181.26,184.22,20.12,20.34,20.45,20.580000000000002,20.56,20.45,20.34,20.22,19.97,N/A,N/A -2012,3,9,4,30,101880,100690,99550,93.39,0,4.83,6.7700000000000005,7.03,6.390000000000001,6.04,5.83,5.61,5.42,5.14,151.12,160.56,166.91,172.08,175.14000000000001,177.1,179.76,182.26,188.16,19.95,20.17,20.3,20.46,20.45,20.330000000000002,20.22,20.13,19.88,N/A,N/A -2012,3,9,5,30,101920,100740,99600,95.75,0,2.54,3.68,4.03,4.29,4.47,4.59,4.6000000000000005,4.58,4.39,126.49000000000001,152.32,168.94,180.98,188.99,193.85,196.76,198.79,201.29,19.66,19.93,20.03,20.150000000000002,20.23,20.28,20.27,20.23,20,N/A,N/A -2012,3,9,6,30,101950,100760,99620,96.06,0,1.9000000000000001,2.58,2.67,2.65,2.62,2.58,2.54,2.49,2.4,179.13,187.81,193.84,200.09,205.73000000000002,210.88,215.32,219.13,225.42000000000002,19.7,19.82,19.87,20.01,20.07,20.080000000000002,20.02,19.94,19.69,N/A,N/A -2012,3,9,7,30,101990,100800,99660,96.63,0,1.62,2.0100000000000002,1.97,1.86,1.67,1.46,1.29,1.1500000000000001,1.1300000000000001,177.67000000000002,187.83,194.11,199.53,204.93,209.96,218.56,226.8,248.29,19.55,20.06,20.26,20.31,20.28,20.19,20.09,19.990000000000002,19.76,N/A,N/A -2012,3,9,8,30,102000,100810,99670,96.60000000000001,0,1.75,1.76,1.51,1.24,1.01,0.81,0.58,0.41000000000000003,0.16,155.47,160.53,160.81,156.91,150.65,143.74,132.46,123.97,47.480000000000004,19.580000000000002,20.1,20.3,20.35,20.31,20.21,20.080000000000002,19.95,19.67,N/A,N/A -2012,3,9,9,30,102030,100850,99700,97.33,0,0.93,1.08,1.07,1.1300000000000001,1.1500000000000001,1.16,1.11,1.06,1.06,195.05,220.67000000000002,236.64000000000001,253.84,267.71,279.07,290.06,299.6,313.33,19.39,19.47,19.490000000000002,19.57,19.6,19.61,19.56,19.51,19.3,N/A,N/A -2012,3,9,10,30,102020,100830,99680,98.04,0,0.81,0.74,0.5700000000000001,0.39,0.38,0.44,0.53,0.63,0.73,188.99,211.21,231.54,260.73,286.71,319.08,331.79,338.76,338.09000000000003,19.22,19.330000000000002,19.37,19.39,19.36,19.3,19.2,19.1,18.98,N/A,N/A -2012,3,9,11,30,102050,100860,99710,98.25,0,0.9400000000000001,0.8,0.56,0.33,0.36,0.6,0.8300000000000001,1.07,1.56,200.59,201.21,228.53,286.11,302.09000000000003,302.96,305.98,310.09000000000003,315.61,19.18,19.21,19.34,19.72,19.830000000000002,19.75,19.63,19.51,19.29,N/A,N/A -2012,3,9,12,30,102100,100890,99730,93.45,0,8.2,8.78,8.88,8.89,8.88,8.86,8.86,8.84,8.23,332.75,332.99,333.09000000000003,333.21,333.35,333.5,333.8,334.26,337.75,17.67,17.32,17.14,16.95,16.77,16.59,16.41,16.26,16.32,N/A,N/A -2012,3,9,13,30,102180,100970,99790,92.2,0.7000000000000001,10.22,10.98,11.11,11.120000000000001,11.09,11.06,11.01,10.97,10.74,6.7700000000000005,6.99,7.11,7.23,7.34,7.47,7.66,7.91,9.51,16.490000000000002,16.05,15.860000000000001,15.66,15.47,15.3,15.11,14.94,14.86,N/A,N/A -2012,3,9,14,30,102280,101060,99880,90.35000000000001,0.4,11.17,12.030000000000001,12.19,12.23,12.23,12.200000000000001,12.15,12.11,12.030000000000001,23.25,23.6,23.84,24.07,24.32,24.57,24.92,25.29,26.57,15.24,14.71,14.5,14.290000000000001,14.1,13.92,13.73,13.55,13.22,N/A,N/A -2012,3,9,15,30,102320,101110,99920,90.28,0,10.52,11.34,11.51,11.58,11.61,11.620000000000001,11.6,11.58,11.540000000000001,32.25,32.410000000000004,32.53,32.64,32.76,32.88,33.03,33.19,33.59,14.780000000000001,14.23,14,13.790000000000001,13.59,13.41,13.200000000000001,13.02,12.65,N/A,N/A -2012,3,9,16,30,102330,101110,99930,89.39,0,10.32,11.120000000000001,11.290000000000001,11.36,11.39,11.4,11.4,11.39,11.36,37.45,37.660000000000004,37.79,37.910000000000004,38.050000000000004,38.17,38.32,38.47,38.87,14.700000000000001,14.15,13.93,13.72,13.51,13.33,13.120000000000001,12.94,12.57,N/A,N/A -2012,3,9,17,30,102340,101120,99940,89.60000000000001,0.4,10.83,11.72,11.9,11.98,12.02,12.030000000000001,12.030000000000001,12.02,12,39.78,39.94,40.08,40.230000000000004,40.38,40.53,40.72,40.910000000000004,41.43,14.98,14.43,14.21,14,13.8,13.620000000000001,13.41,13.23,12.86,N/A,N/A -2012,3,9,18,30,102400,101180,99990,87.4,0,10.370000000000001,11.23,11.43,11.53,11.58,11.620000000000001,11.620000000000001,11.620000000000001,11.61,31.6,31.82,31.98,32.14,32.28,32.410000000000004,32.55,32.7,33,15.040000000000001,14.5,14.27,14.06,13.85,13.66,13.450000000000001,13.26,12.870000000000001,N/A,N/A -2012,3,9,19,30,102450,101230,100040,87.42,0,10.35,11.18,11.36,11.44,11.48,11.51,11.5,11.49,11.450000000000001,22.080000000000002,22.400000000000002,22.61,22.8,23,23.17,23.36,23.55,23.96,14.69,14.13,13.9,13.68,13.47,13.280000000000001,13.07,12.88,12.49,N/A,N/A -2012,3,9,20,30,102410,101190,100000,87.67,0,11.32,12.26,12.47,12.56,12.61,12.63,12.63,12.620000000000001,12.57,34.51,34.76,34.910000000000004,35.06,35.22,35.37,35.54,35.72,36.13,13.99,13.38,13.14,12.92,12.71,12.52,12.31,12.120000000000001,11.74,N/A,N/A -2012,3,9,21,30,102410,101180,99990,87.95,0,11.4,12.32,12.52,12.61,12.66,12.68,12.68,12.68,12.64,36.54,36.730000000000004,36.86,37,37.14,37.28,37.45,37.62,38.02,13.66,13.02,12.780000000000001,12.56,12.35,12.15,11.950000000000001,11.76,11.370000000000001,N/A,N/A -2012,3,9,22,30,102420,101200,100010,88.09,0,11.5,12.46,12.69,12.8,12.86,12.91,12.92,12.93,12.950000000000001,41,41.21,41.37,41.52,41.67,41.82,41.99,42.14,42.550000000000004,14.120000000000001,13.51,13.280000000000001,13.06,12.85,12.66,12.46,12.27,11.89,N/A,N/A -2012,3,9,23,30,102430,101210,100020,87.65,0,10.32,11.11,11.290000000000001,11.370000000000001,11.41,11.43,11.43,11.43,11.41,32.87,33.25,33.54,33.83,34.14,34.42,34.76,35.08,35.84,14.31,13.73,13.5,13.290000000000001,13.08,12.89,12.68,12.5,12.120000000000001,N/A,N/A -2012,3,10,0,30,102460,101230,100040,89.86,0,10.48,11.27,11.44,11.5,11.52,11.53,11.51,11.49,11.43,32.58,32.99,33.21,33.43,33.67,33.9,34.17,34.45,35.15,13.41,12.790000000000001,12.55,12.34,12.13,11.94,11.74,11.56,11.19,N/A,N/A -2012,3,10,1,30,102470,101240,100050,92.02,0.4,11.16,12.07,12.26,12.35,12.39,12.42,12.41,12.41,12.39,40.17,40.57,40.81,41.050000000000004,41.300000000000004,41.52,41.800000000000004,42.07,42.7,13.31,12.67,12.43,12.21,12,11.82,11.61,11.43,11.05,N/A,N/A -2012,3,10,2,30,102520,101290,100100,90.22,0,10.35,11.200000000000001,11.4,11.51,11.57,11.6,11.620000000000001,11.63,11.620000000000001,45.800000000000004,46.12,46.29,46.45,46.61,46.76,46.94,47.09,47.47,13.69,13.08,12.84,12.620000000000001,12.41,12.21,12.01,11.82,11.43,N/A,N/A -2012,3,10,3,30,102490,101270,100080,89.01,0,10.9,11.82,12.040000000000001,12.16,12.23,12.27,12.3,12.31,12.31,48.230000000000004,48.57,48.79,48.980000000000004,49.17,49.34,49.53,49.71,50.08,14.38,13.790000000000001,13.56,13.34,13.13,12.94,12.73,12.540000000000001,12.14,N/A,N/A -2012,3,10,4,30,102480,101250,100070,87.69,0,10.49,11.36,11.56,11.67,11.73,11.76,11.78,11.790000000000001,11.78,53.9,54.050000000000004,54.13,54.21,54.300000000000004,54.38,54.480000000000004,54.57,54.800000000000004,14.48,13.9,13.67,13.46,13.25,13.05,12.85,12.65,12.27,N/A,N/A -2012,3,10,5,30,102470,101250,100060,88.46000000000001,0,9.32,10.01,10.16,10.23,10.26,10.28,10.28,10.28,10.25,46.2,46.78,47.19,47.58,47.97,48.31,48.71,49.08,49.89,14.44,13.89,13.66,13.450000000000001,13.24,13.05,12.85,12.66,12.280000000000001,N/A,N/A -2012,3,10,6,30,102450,101230,100040,89.89,0,9.92,10.69,10.86,10.94,10.97,11,11,10.99,10.96,45.33,45.76,46.01,46.24,46.46,46.67,46.910000000000004,47.13,47.64,14.08,13.49,13.26,13.040000000000001,12.83,12.64,12.44,12.25,11.86,N/A,N/A -2012,3,10,7,30,102430,101210,100020,88.45,0,10.17,10.950000000000001,11.11,11.19,11.22,11.23,11.22,11.21,11.16,56.75,56.93,57.03,57.14,57.25,57.34,57.47,57.59,57.88,14.15,13.55,13.32,13.11,12.89,12.700000000000001,12.5,12.31,11.92,N/A,N/A -2012,3,10,8,30,102390,101160,99980,87.33,0,9.81,10.6,10.78,10.870000000000001,10.92,10.950000000000001,10.96,10.97,10.96,67.68,67.98,68.17,68.35000000000001,68.53,68.7,68.9,69.09,69.53,14.700000000000001,14.14,13.92,13.71,13.5,13.31,13.1,12.92,12.530000000000001,N/A,N/A -2012,3,10,9,30,102330,101110,99930,83.98,0,9.99,10.82,11,11.09,11.14,11.16,11.17,11.17,11.15,74.95,75.14,75.26,75.38,75.52,75.64,75.79,75.93,76.3,15.57,15.06,14.84,14.63,14.42,14.24,14.030000000000001,13.84,13.46,N/A,N/A -2012,3,10,10,30,102330,101120,99940,82.96000000000001,0,9.450000000000001,10.25,10.44,10.540000000000001,10.6,10.64,10.66,10.68,10.68,77.77,77.99,78.12,78.24,78.36,78.46000000000001,78.58,78.69,78.93,16.01,15.530000000000001,15.32,15.1,14.9,14.71,14.5,14.31,13.92,N/A,N/A -2012,3,10,11,30,102310,101100,99930,81.5,0,9.620000000000001,10.44,10.63,10.73,10.78,10.82,10.83,10.83,10.82,75.68,75.93,76.05,76.16,76.26,76.36,76.46000000000001,76.56,76.79,16.4,15.94,15.73,15.530000000000001,15.32,15.13,14.92,14.74,14.35,N/A,N/A -2012,3,10,12,30,102320,101110,99930,81.31,0,9.69,10.540000000000001,10.74,10.84,10.9,10.94,10.950000000000001,10.96,10.950000000000001,78.97,79.15,79.25,79.35000000000001,79.45,79.54,79.65,79.75,79.98,16.54,16.09,15.88,15.67,15.47,15.280000000000001,15.07,14.88,14.49,N/A,N/A -2012,3,10,13,30,102310,101100,99930,81.43,0,9.94,10.85,11.07,11.19,11.26,11.31,11.33,11.35,11.36,81.64,81.77,81.86,81.95,82.04,82.12,82.21000000000001,82.3,82.5,16.830000000000002,16.39,16.19,15.98,15.780000000000001,15.59,15.38,15.19,14.8,N/A,N/A -2012,3,10,14,30,102300,101100,99920,82.89,0,10.200000000000001,11.14,11.370000000000001,11.48,11.55,11.6,11.620000000000001,11.64,11.65,82.63,82.95,83.15,83.34,83.53,83.71000000000001,83.92,84.11,84.56,17.06,16.64,16.44,16.240000000000002,16.04,15.85,15.65,15.47,15.08,N/A,N/A -2012,3,10,15,30,102280,101080,99910,83.51,0,10.290000000000001,11.32,11.58,11.74,11.84,11.91,11.96,12,12.05,88.61,89.02,89.26,89.49,89.71000000000001,89.91,90.13,90.34,90.77,17.66,17.29,17.1,16.9,16.7,16.52,16.32,16.13,15.74,N/A,N/A -2012,3,10,16,30,102250,101050,99880,82.63,0,10.15,11.19,11.47,11.63,11.73,11.81,11.86,11.9,11.950000000000001,90.62,91,91.23,91.46000000000001,91.68,91.89,92.11,92.31,92.74,17.94,17.59,17.41,17.21,17.02,16.830000000000002,16.63,16.44,16.06,N/A,N/A -2012,3,10,17,30,102200,101000,99830,82.18,0,10.1,11.11,11.370000000000001,11.51,11.59,11.66,11.69,11.71,11.73,89.96000000000001,90.25,90.46000000000001,90.66,90.86,91.05,91.25,91.44,91.86,18.1,17.76,17.580000000000002,17.38,17.19,17,16.8,16.62,16.23,N/A,N/A -2012,3,10,18,30,102170,100970,99800,83.98,0,9.88,10.86,11.11,11.24,11.33,11.39,11.43,11.450000000000001,11.47,90.60000000000001,90.75,90.84,90.93,91.01,91.09,91.17,91.25,91.43,18.14,17.81,17.63,17.43,17.23,17.05,16.84,16.66,16.27,N/A,N/A -2012,3,10,19,30,102130,100930,99770,86.77,0,9.66,10.58,10.8,10.93,11,11.06,11.09,11.11,11.13,88.65,88.98,89.2,89.42,89.65,89.87,90.12,90.36,90.95,17.98,17.63,17.45,17.25,17.06,16.88,16.68,16.5,16.13,N/A,N/A -2012,3,10,20,30,102080,100880,99720,88.25,0,9.540000000000001,10.44,10.66,10.78,10.85,10.9,10.92,10.94,10.97,89.57000000000001,90,90.24,90.5,90.77,91.01,91.3,91.57000000000001,92.26,18.04,17.7,17.52,17.32,17.13,16.95,16.740000000000002,16.56,16.18,N/A,N/A -2012,3,10,21,30,102050,100850,99680,90.13,0,9.89,10.83,11.040000000000001,11.15,11.22,11.26,11.28,11.3,11.35,90.35000000000001,90.61,90.8,91.01,91.24,91.46000000000001,91.76,92.04,92.85000000000001,18.04,17.69,17.51,17.32,17.12,16.94,16.75,16.57,16.19,N/A,N/A -2012,3,10,22,30,102010,100810,99650,91.3,0,9.65,10.58,10.790000000000001,10.91,10.99,11.05,11.1,11.14,11.3,90.9,91.17,91.35000000000001,91.57000000000001,91.82000000000001,92.08,92.45,92.81,94.02,18.23,17.900000000000002,17.72,17.53,17.34,17.16,16.97,16.79,16.43,N/A,N/A -2012,3,10,23,30,101970,100780,99620,91.66,0,9.21,10.27,10.61,10.9,11.19,11.47,11.82,12.13,12.34,90.98,91.55,91.98,92.51,93.12,93.76,94.55,95.23,95.79,18.68,18.400000000000002,18.240000000000002,18.07,17.89,17.73,17.55,17.39,17.01,N/A,N/A -2012,3,11,0,30,101940,100750,99590,92.02,1.5,8.8,10.1,10.64,11.18,11.43,11.53,11.73,11.950000000000001,12.43,97.39,97.55,97.59,97.55,97.63,97.76,98.2,98.67,99.92,18.8,18.54,18.38,18.2,18.01,17.830000000000002,17.650000000000002,17.48,17.16,N/A,N/A -2012,3,11,1,30,101930,100740,99580,91.45,0,10.040000000000001,11.33,11.75,12.09,12.38,12.63,12.870000000000001,13.08,13.5,101.69,101.99000000000001,102.23,102.48,102.75,103.02,103.34,103.65,104.37,19.01,18.77,18.62,18.45,18.28,18.11,17.93,17.77,17.43,N/A,N/A -2012,3,11,2,30,101870,100680,99530,92.73,0.4,11.26,12.77,13.290000000000001,13.71,14.06,14.370000000000001,14.67,14.94,15.47,106.07000000000001,106.36,106.55,106.77,107,107.23,107.5,107.76,108.43,19.09,18.87,18.73,18.57,18.400000000000002,18.240000000000002,18.07,17.91,17.580000000000002,N/A,N/A -2012,3,11,3,30,101880,100690,99530,94.58,0.4,10.08,11.55,12.09,12.56,12.97,13.35,13.71,14.040000000000001,14.71,112.56,112.94,113.17,113.42,113.68,113.94,114.24000000000001,114.54,115.28,19.240000000000002,19.04,18.900000000000002,18.740000000000002,18.580000000000002,18.43,18.26,18.11,17.82,N/A,N/A -2012,3,11,4,30,101880,100690,99540,95.46000000000001,0,9.74,11.200000000000001,11.74,12.23,12.67,13.08,13.5,13.89,14.71,118.61,118.71000000000001,118.81,118.94,119.08,119.23,119.44,119.63,120.23,19.330000000000002,19.14,19.01,18.86,18.72,18.57,18.43,18.29,18.03,N/A,N/A -2012,3,11,5,30,101850,100660,99510,96.29,0,9.38,10.88,11.450000000000001,11.96,12.44,12.88,13.33,13.76,14.67,120.03,120.22,120.35000000000001,120.52,120.75,120.99000000000001,121.31,121.64,122.51,19.42,19.26,19.16,19.03,18.900000000000002,18.79,18.67,18.57,18.400000000000002,N/A,N/A -2012,3,11,6,30,101830,100640,99490,96.17,4.800000000000001,7.67,9,9.56,10.09,10.6,11.08,11.57,12.040000000000001,13.030000000000001,117.64,117.49000000000001,117.47,117.49000000000001,117.61,117.78,118.12,118.49000000000001,119.51,19.41,19.3,19.22,19.12,19,18.89,18.81,18.740000000000002,18.580000000000002,N/A,N/A -2012,3,11,7,30,101830,100640,99490,95.29,115,9.49,11.15,11.82,12.46,13.040000000000001,13.57,14.07,14.52,15.26,130.7,130.15,129.95,129.82,129.86,130.02,130.55,131.15,133.89000000000001,19.59,19.5,19.42,19.32,19.25,19.19,19.13,19.07,18.97,N/A,N/A -2012,3,11,8,30,101770,100580,99440,95.37,5.1000000000000005,8.22,9.86,10.6,11.370000000000001,12.16,12.97,13.81,14.620000000000001,16.05,125.52,127.23,128.58,130.49,132.69,135.09,137.69,140.21,145.06,19.580000000000002,19.55,19.53,19.53,19.54,19.57,19.6,19.63,19.72,N/A,N/A -2012,3,11,9,30,101750,100570,99420,93.56,0.4,8.96,10.71,11.44,12.15,12.86,13.58,14.35,15.09,16.54,140.19,140.12,140.16,140.25,140.44,140.71,141.09,141.48,142.15,19.95,19.96,19.93,19.89,19.84,19.8,19.77,19.75,19.77,N/A,N/A -2012,3,11,10,30,101740,100560,99420,93.77,11.700000000000001,8.61,10.28,10.94,11.56,12.120000000000001,12.64,13.16,13.65,14.66,134.74,134.9,135.15,135.53,135.92000000000002,136.31,136.72,137.12,138.24,19.92,19.92,19.88,19.830000000000002,19.78,19.72,19.650000000000002,19.59,19.44,N/A,N/A -2012,3,11,11,30,101740,100560,99410,93.59,1.8,7.640000000000001,9.59,10.51,11.48,12.39,13.25,14.07,14.83,16.18,112.38,117.65,121.09,124.51,127.41,129.98,132.35,134.54,138.76,19.96,19.990000000000002,19.97,19.93,19.89,19.85,19.8,19.76,19.66,N/A,N/A -2012,3,11,12,30,101730,100550,99410,93.22,0.7000000000000001,9.49,11.36,12.120000000000001,12.84,13.49,14.09,14.620000000000001,15.09,15.88,146.31,146.97,147.39000000000001,147.89000000000001,148.33,148.74,149.14000000000001,149.51,150.79,20.02,20.04,20.01,19.98,19.94,19.900000000000002,19.84,19.79,19.650000000000002,N/A,N/A -2012,3,11,13,30,101730,100550,99400,93.22,0.7000000000000001,10.040000000000001,12.01,12.81,13.620000000000001,14.370000000000001,15.07,15.790000000000001,16.48,17.92,151.04,151.77,152.22,152.79,153.4,154.02,154.77,155.5,157.36,20.03,20.04,20.01,19.97,19.92,19.87,19.81,19.77,19.69,N/A,N/A -2012,3,11,14,30,101810,100630,99480,93.14,0.4,7.92,9.77,10.59,11.43,12.200000000000001,12.94,13.61,14.23,15.34,160.26,160.32,160.36,160.5,160.77,161.13,161.65,162.19,163.89000000000001,20.07,20.1,20.09,20.080000000000002,20.06,20.05,20.03,20.01,19.91,N/A,N/A -2012,3,11,15,30,101830,100650,99500,92.97,31.900000000000002,7.68,9.450000000000001,10.21,10.86,11.41,11.91,12.38,12.81,13.64,167.54,167.89000000000001,168.04,167.94,167.8,167.63,167.45000000000002,167.27,166.81,20.13,20.31,20.35,20.34,20.3,20.25,20.18,20.12,19.97,N/A,N/A -2012,3,11,16,30,101810,100630,99480,92.59,4.4,8.02,9.91,10.83,11.77,12.57,13.280000000000001,13.89,14.44,15.42,159.84,161,161.87,163.14000000000001,164.44,165.82,167.03,168.12,168.9,20.2,20.31,20.34,20.36,20.36,20.35,20.31,20.27,20.22,N/A,N/A -2012,3,11,17,30,101820,100640,99490,92.64,0.7000000000000001,8.290000000000001,10.21,11.07,11.93,12.74,13.540000000000001,14.34,15.11,16.64,166.29,166.86,167.24,167.69,168.17000000000002,168.67000000000002,169.22,169.75,170.96,20.23,20.29,20.29,20.26,20.240000000000002,20.2,20.150000000000002,20.1,20.080000000000002,N/A,N/A -2012,3,11,18,30,101800,100620,99470,92.69,0,8.44,10.23,10.950000000000001,11.620000000000001,12.22,12.76,13.280000000000001,13.77,14.73,169.71,170.47,171.07,171.85,172.63,173.42000000000002,174.09,174.70000000000002,175.42000000000002,20.22,20.27,20.26,20.23,20.2,20.16,20.12,20.07,19.96,N/A,N/A -2012,3,11,19,30,101780,100600,99450,93.11,0,7.5200000000000005,9.31,10.1,10.9,11.65,12.36,13.040000000000001,13.68,14.71,174.22,173.71,173.51,173.46,173.57,173.78,174.12,174.46,175.27,20.19,20.23,20.22,20.21,20.21,20.23,20.23,20.23,20.150000000000002,N/A,N/A -2012,3,11,20,30,101760,100570,99420,97.97,6.6000000000000005,3.69,4.2700000000000005,4.48,4.72,4.88,4.98,5.09,5.19,5.54,243.11,240.21,237.46,233.64000000000001,228.64000000000001,223.16,217.35,211.92000000000002,201.29,19.16,19.080000000000002,19.06,19.06,19.080000000000002,19.12,19.12,19.12,19.080000000000002,N/A,N/A -2012,3,11,21,30,101760,100570,99420,96.46000000000001,73.60000000000001,5.41,6.73,7.390000000000001,8.03,8.43,8.69,8.9,9.08,9.44,226.72,225.56,224.98000000000002,224.44,223.74,223,222.06,221.13,218.70000000000002,19.17,19.21,19.26,19.34,19.36,19.35,19.32,19.28,19.19,N/A,N/A -2012,3,11,22,30,101720,100530,99390,96.86,30,3.16,4.43,5.23,6.19,6.86,7.33,7.84,8.34,9.28,183.5,184.52,185.76,186.58,186.72,186.39000000000001,185.71,184.97,183.48,19.1,19.3,19.51,19.85,20.080000000000002,20.240000000000002,20.36,20.47,20.53,N/A,N/A -2012,3,11,23,30,101730,100540,99390,96.87,2.2,4.13,5.09,5.59,6.18,6.6000000000000005,6.9,7.09,7.24,7.69,211.67000000000002,212.8,213.46,214.01,213.81,213.08,211.84,210.59,207.92000000000002,19.21,19.150000000000002,19.16,19.22,19.22,19.19,19.13,19.07,18.98,N/A,N/A -2012,3,12,0,30,101710,100520,99370,94.99,0,3.3000000000000003,4.23,4.74,5.38,5.96,6.48,6.73,6.9,7.23,218.78,221.18,222.92000000000002,225.07,225.84,225.68,223.99,222.09,217.20000000000002,19.07,18.97,18.94,18.97,19.03,19.09,19.06,19.01,18.89,N/A,N/A -2012,3,12,1,30,101750,100560,99410,94.02,0,2.71,3.7600000000000002,4.3,4.8500000000000005,5.28,5.63,6.03,6.42,7.29,205.55,208.48000000000002,209.89000000000001,210.58,209.51,207.26,204.8,202.4,198.55,19.12,19.16,19.21,19.29,19.35,19.400000000000002,19.46,19.51,19.59,N/A,N/A -2012,3,12,2,30,101750,100560,99410,93.96000000000001,0,3.7,4.57,5.01,5.54,5.9,6.15,6.45,6.74,7.42,202.12,205.82,207.77,209.08,208.43,206.81,204.68,202.63,199.11,19.07,19.04,19.080000000000002,19.150000000000002,19.16,19.13,19.12,19.12,19.12,N/A,N/A -2012,3,12,3,30,101760,100570,99430,94.2,0,3.23,3.92,4.23,4.57,4.83,5.0600000000000005,5.3500000000000005,5.64,6.36,184.12,188.89000000000001,192.41,196.67000000000002,198.58,199.13,198.07,196.76,195.75,19.04,18.94,18.94,19,19.02,19.01,19.07,19.14,19.25,N/A,N/A -2012,3,12,4,30,101760,100570,99420,95.18,0.4,3.45,4.16,4.67,5.53,6.11,6.49,6.83,7.140000000000001,7.7700000000000005,198.74,200.23000000000002,201.31,202.53,203.41,204.04,203.56,202.89000000000001,200.81,18.91,18.75,18.77,18.92,19.04,19.150000000000002,19.21,19.25,19.17,N/A,N/A -2012,3,12,5,30,101750,100560,99410,95.76,0,2.79,3.58,4.21,5.3500000000000005,6.0600000000000005,6.43,6.86,7.28,8.27,192.93,192.57,192.63,193.54,193.32,192.38,190.88,189.34,186.5,19.02,18.92,18.96,19.13,19.17,19.14,19.080000000000002,19.03,19.080000000000002,N/A,N/A -2012,3,12,6,30,101770,100580,99440,96.15,9.200000000000001,2.46,3.74,4.83,6.69,8.03,8.86,9.26,9.52,9.83,197.70000000000002,198.70000000000002,197.17000000000002,190.15,185.76,183.75,183.26,183.19,184.44,19.11,19.13,19.23,19.42,19.55,19.64,19.650000000000002,19.64,19.57,N/A,N/A -2012,3,12,7,30,101780,100590,99450,97.59,4.4,2.16,2.33,2.9,5.22,7.03,7.92,8.42,8.78,9.21,179.22,178.34,178.4,180.07,181.44,182.22,183.62,185.07,187.77,19.03,18.84,18.87,19.12,19.29,19.41,19.43,19.43,19.37,N/A,N/A -2012,3,12,8,30,101790,100610,99460,94.39,1.5,5.24,6.61,7.24,7.96,8.61,9.23,10,10.790000000000001,11.870000000000001,191.45000000000002,188.8,186.93,185.11,184.04,183.42000000000002,182.96,182.55,184.94,19.88,19.93,19.94,19.94,19.92,19.89,19.81,19.740000000000002,19.55,N/A,N/A -2012,3,12,9,30,101810,100620,99470,98.8,0.7000000000000001,2.5100000000000002,3.98,4.79,5.26,5.69,6.09,6.46,6.8,7.37,262,232.14000000000001,214.88,209.85,206.26,203.59,201.98000000000002,200.69,197.96,19,19.31,19.47,19.54,19.6,19.64,19.64,19.62,19.54,N/A,N/A -2012,3,12,10,30,101840,100650,99500,97.21000000000001,0,2.17,2.84,3.23,3.72,4.04,4.25,4.48,4.72,5.25,251.9,247.45000000000002,243.06,235.81,230.23000000000002,225.9,221.61,217.6,212.12,18.97,18.84,18.78,18.73,18.78,18.89,19.01,19.12,19.21,N/A,N/A -2012,3,12,11,30,101870,100680,99530,96.71000000000001,0,1.86,2.43,2.7800000000000002,3.27,3.62,3.85,4.11,4.36,4.97,241.11,240.36,239.33,237.39000000000001,234.43,230.87,227.14000000000001,223.61,217.76,18.97,18.81,18.75,18.7,18.7,18.72,18.76,18.79,18.900000000000002,N/A,N/A -2012,3,12,12,30,101900,100710,99560,97.62,0,0.75,1.32,1.6300000000000001,2.0100000000000002,2.38,2.74,3.09,3.42,4.09,216.52,226.68,231.9,231.86,230.17000000000002,227.28,224.73000000000002,222.34,218.76,18.94,18.830000000000002,18.82,18.88,18.95,19.04,19.07,19.1,19.06,N/A,N/A -2012,3,12,13,30,101930,100740,99590,97.61,0,0.5700000000000001,1.04,1.31,1.57,1.78,1.96,2.14,2.32,2.7600000000000002,242.95000000000002,252.15,257.65,259.22,256.92,252.05,246.56,241.18,231.81,18.97,18.82,18.77,18.75,18.76,18.79,18.82,18.830000000000002,18.830000000000002,N/A,N/A -2012,3,12,14,30,101990,100790,99640,96.75,0,1.6600000000000001,1.51,1.34,1.18,1.18,1.27,1.45,1.6600000000000001,2.13,142.94,150.96,158.32,169.13,179.71,190.98,196.48000000000002,200.68,202.85,19.05,18.94,18.92,18.95,18.97,18.990000000000002,18.97,18.94,18.85,N/A,N/A -2012,3,12,15,30,102000,100810,99660,97.11,0,1.62,1.7,1.75,2,2.2600000000000002,2.56,2.83,3.09,3.5700000000000003,146.08,162.20000000000002,170.41,177.58,181.37,183,183.94,184.70000000000002,186.14000000000001,19.18,19.26,19.330000000000002,19.42,19.46,19.46,19.41,19.34,19.18,N/A,N/A -2012,3,12,16,30,102020,100830,99680,98.01,0,1.68,1.69,1.68,1.82,2.02,2.25,2.5300000000000002,2.81,3.38,122.46000000000001,135.83,143.69,151.93,157.44,161.44,164.06,166.3,169.56,19.23,19.26,19.27,19.27,19.25,19.22,19.2,19.19,19.16,N/A,N/A -2012,3,12,17,30,102010,100830,99680,98.36,2.2,1.6500000000000001,2.48,2.8000000000000003,3.06,3.2800000000000002,3.47,3.66,3.83,4.24,150.61,157.65,162.81,167.8,171.65,174.71,177.49,180.02,184.68,19.54,19.6,19.62,19.61,19.59,19.580000000000002,19.56,19.55,19.52,N/A,N/A -2012,3,12,18,30,102020,100830,99690,95.51,0,4.41,5.64,6.0200000000000005,6.09,5.95,5.69,5.53,5.41,5.51,153.69,158.43,162.77,169.07,176.02,182.91,186.04,188.01,193.15,20.18,20.12,20.06,20,19.96,19.92,19.85,19.78,19.63,N/A,N/A -2012,3,12,19,30,102020,100830,99690,94.84,0,5.18,6.5,6.8500000000000005,6.87,6.76,6.57,6.47,6.390000000000001,6.28,161.22,165.71,169.44,174.35,178.07,180.97,182.52,183.62,186.04,20.19,20.16,20.12,20.07,20.04,20.02,19.91,19.78,19.580000000000002,N/A,N/A -2012,3,12,20,30,101990,100810,99660,95.39,0,3.54,5.1000000000000005,5.65,5.84,5.86,5.78,5.79,5.8100000000000005,6.03,173.98,175.28,177.54,182.09,185.21,187.33,188.71,189.79,191.18,20.22,20.18,20.14,20.13,20.080000000000002,20.01,19.900000000000002,19.78,19.56,N/A,N/A -2012,3,12,21,30,101970,100790,99640,95.34,0,3.5300000000000002,4.99,5.5200000000000005,5.7,5.73,5.64,5.64,5.66,5.87,169.21,173.85,177.52,181.86,184.98,187.20000000000002,188.39000000000001,189.20000000000002,189.95000000000002,20.26,20.1,20.04,20.150000000000002,20.16,20.11,20,19.88,19.64,N/A,N/A -2012,3,12,22,30,101950,100770,99620,94.97,0,3.5100000000000002,5.08,5.53,5.47,5.39,5.3,5.28,5.2700000000000005,5.38,158.76,166.79,172.32,177.32,180.21,181.78,182.14000000000001,182.14000000000001,182.04,20.35,20.45,20.38,20.150000000000002,20.03,19.98,19.98,19.990000000000002,19.88,N/A,N/A -2012,3,12,23,30,101940,100750,99610,94.89,0,3.9,5.29,5.73,5.8500000000000005,5.8500000000000005,5.8,5.82,5.86,5.89,156.24,162.75,167.41,172.33,175.36,177.18,177.87,178.21,179.28,20.06,20.18,20.17,20.080000000000002,20,19.93,19.87,19.8,19.76,N/A,N/A -2012,3,13,0,30,101930,100750,99600,94.62,0,4.8500000000000005,6.1000000000000005,6.4,6.38,6.28,6.15,6,5.87,5.94,153.85,160.13,164.79,169.99,172.95000000000002,174.53,174.76,174.70000000000002,175.73,19.92,19.98,19.95,19.84,19.75,19.67,19.75,19.85,19.81,N/A,N/A -2012,3,13,1,30,101950,100760,99620,95.98,0,3.18,5.04,5.73,5.78,5.8,5.78,5.69,5.6000000000000005,5.48,161.16,165.15,168.65,172.78,174.32,174.29,175.1,176.03,175.45000000000002,19.66,20.13,20.25,20.150000000000002,20.05,19.96,20.02,20.11,20.37,N/A,N/A -2012,3,13,2,30,101980,100800,99650,93.69,0,4.68,6.63,7.33,7.55,7.33,6.88,6.79,6.79,6.79,151.58,154.74,157.43,160.96,164.72,168.34,169.18,169.34,169.61,20.11,20.29,20.330000000000002,20.36,20.240000000000002,20.04,19.92,19.84,19.650000000000002,N/A,N/A -2012,3,13,3,30,101990,100810,99660,94,0,3.86,5.5600000000000005,6.41,7.33,7.7700000000000005,7.8500000000000005,7.8500000000000005,7.82,7.7,153.57,154.45000000000002,156.89000000000001,162.33,166,168.21,168.51,168.24,168.17000000000002,20.09,20.35,20.42,20.45,20.34,20.14,20.01,19.900000000000002,20.01,N/A,N/A -2012,3,13,4,30,102000,100810,99670,94.68,0.4,3.56,5.23,5.98,6.68,7.22,7.640000000000001,7.97,8.24,8.22,154.09,156.49,158.81,162.39000000000001,164.57,165.78,165.92000000000002,165.81,165.96,19.95,20.1,19.94,19.41,19.21,19.2,19.89,20.650000000000002,20.85,N/A,N/A -2012,3,13,5,30,102000,100810,99660,95.13,0.7000000000000001,5.18,6.57,7.24,8,8.64,9.200000000000001,9.56,9.83,9.870000000000001,168.61,168.04,168,168.62,169.66,170.93,172.06,173.05,172.49,19.73,19.71,19.62,19.43,19.22,18.990000000000002,19.03,19.13,19.830000000000002,N/A,N/A -2012,3,13,6,30,102020,100830,99680,97.29,0.4,3.58,4.72,5.26,5.8100000000000005,6.32,6.8100000000000005,7.2,7.53,7.9,166.4,166.54,167.41,169.48,173,177.5,180.77,183.52,183.07,19.81,19.82,19.79,19.68,19.51,19.3,19.6,20.01,20.36,N/A,N/A -2012,3,13,7,30,102050,100860,99710,97.33,0,3.38,4.76,5.45,6.05,6.61,7.13,7.42,7.63,7.74,166.94,167.26,166.33,163.63,163.21,164.12,166.69,169.42000000000002,171.92000000000002,19.82,19.72,19.650000000000002,19.57,19.44,19.28,19.12,18.98,19.52,N/A,N/A -2012,3,13,8,30,102040,100850,99700,97.68,0,5.98,6.99,7.3500000000000005,7.6000000000000005,7.71,7.73,7.61,7.49,7.67,174.55,174.65,174.99,175.82,177.5,179.65,181.52,183.02,181.20000000000002,19.72,19.6,19.51,19.38,19.26,19.150000000000002,19.11,19.080000000000002,18.990000000000002,N/A,N/A -2012,3,13,9,30,102050,100860,99700,97.32000000000001,0,4.97,5.98,6.3100000000000005,6.45,6.54,6.61,6.65,6.69,6.74,184.54,184.81,184.65,184.08,183.47,182.83,181.93,181.07,179.83,19.79,19.64,19.53,19.37,19.240000000000002,19.13,19.02,18.92,18.71,N/A,N/A -2012,3,13,10,30,102050,100860,99710,97.71000000000001,0.4,3.1,3.85,4.11,4.3100000000000005,4.84,5.63,6.22,6.73,6.94,164.95000000000002,170.38,173.41,175.68,177.29,178.59,178.59,178.25,176.89000000000001,19.73,19.63,19.56,19.47,19.36,19.25,19.13,19.03,18.87,N/A,N/A -2012,3,13,11,30,102060,100880,99730,96.63,0.4,4.34,6.13,6.92,7.46,7.68,7.68,7.61,7.5200000000000005,7.44,185.20000000000002,185.76,186.05,186.1,185.83,185.36,184.70000000000002,184.09,183.47,19.95,19.92,19.87,19.77,19.66,19.56,19.44,19.330000000000002,19.11,N/A,N/A -2012,3,13,12,30,102080,100890,99740,97.71000000000001,0.4,3.65,4.7700000000000005,5.22,5.5200000000000005,5.62,5.6000000000000005,5.53,5.46,5.37,160.25,164.87,168.13,171.6,173.86,175.33,176.41,177.3,179.01,19.55,19.6,19.66,19.75,19.79,19.8,19.77,19.73,19.54,N/A,N/A -2012,3,13,13,30,102090,100900,99750,99.23,0,2.9,3.52,3.81,3.99,4.14,4.2700000000000005,4.43,4.59,4.82,148.86,158.52,165.87,174.31,179.28,182.12,183.22,183.83,182.06,19.2,18.57,18.46,18.72,19.3,20.06,20.18,20.17,19.95,N/A,N/A -2012,3,13,14,30,102150,100960,99810,99.27,0,3.29,3.6,3.72,3.85,3.92,3.95,4.12,4.32,4.82,151.17000000000002,153.71,155.23,156.63,157.20000000000002,157.33,162.31,167.79,174.85,19.17,18.91,18.77,18.63,18.51,18.41,18.67,18.98,19.740000000000002,N/A,N/A -2012,3,13,15,30,102180,100990,99830,99.32000000000001,0,3.81,4.16,4.26,4.32,4.37,4.42,4.48,4.55,4.93,158.74,158.41,158.17000000000002,157.97,157.69,157.36,157.56,157.91,159.67000000000002,19.2,19.05,18.97,18.88,18.79,18.71,18.63,18.55,18.42,N/A,N/A -2012,3,13,16,30,102190,101000,99850,99.13,0,1.94,2.99,3.64,4.3,4.78,5.13,5.51,5.88,6.47,143.96,147.62,151.63,157.63,161.87,164.89000000000001,167.22,169.27,170.84,19.54,19.580000000000002,19.650000000000002,19.73,19.73,19.68,19.66,19.650000000000002,19.490000000000002,N/A,N/A -2012,3,13,17,30,102190,101000,99850,99.06,0,2.0100000000000002,2.64,2.93,3.23,3.5,3.75,3.99,4.21,4.65,107.55,135.59,150.12,157.43,161,161.94,161.91,161.70000000000002,162.56,19.79,19.69,19.68,19.69,19.69,19.69,19.66,19.62,19.62,N/A,N/A -2012,3,13,18,30,102190,101000,99850,98.96000000000001,0,2.68,3.48,3.8000000000000003,4,4.05,4.01,3.98,3.96,4.05,100.46000000000001,104.62,111.29,124.32000000000001,130.97,133.62,135.57,137.19,144.27,20.03,19.96,19.91,19.82,19.73,19.64,19.55,19.47,19.39,N/A,N/A -2012,3,13,19,30,102170,100990,99840,98.99000000000001,0,2.91,3.62,3.89,4.05,4.3,4.61,4.89,5.13,5.5600000000000005,100.66,103.32000000000001,110.66,127.10000000000001,136.6,141.91,143.72,144.58,146.08,20.25,20.06,19.97,19.88,20.06,20.39,20.46,20.47,20.35,N/A,N/A -2012,3,13,20,30,102140,100950,99810,99.24000000000001,0,4.1,4.41,4.49,4.5600000000000005,4.71,4.91,5.14,5.36,5.69,106.49000000000001,108.21000000000001,109.55,111.3,116.22,122.87,128.56,133.66,140.91,20.06,19.88,19.8,19.71,19.82,20.02,20.18,20.31,20.32,N/A,N/A -2012,3,13,21,30,102110,100920,99780,99.25,0,3.91,4.4,4.74,5.3500000000000005,5.7700000000000005,6.05,6.22,6.3500000000000005,6.5200000000000005,113.95,114.18,115.8,120.19,124.11,127.62,130.12,132.19,136.27,20.06,19.830000000000002,19.81,19.97,20.06,20.11,20.09,20.06,19.91,N/A,N/A -2012,3,13,22,30,102060,100880,99730,96.35000000000001,0,4.49,5.5600000000000005,5.96,6.34,6.76,7.22,7.6000000000000005,7.930000000000001,8.01,112.53,114.42,116.38,119.61,125.16,132.22,138.34,143.84,147.02,20.43,20.36,20.31,20.25,20.240000000000002,20.26,20.28,20.3,20.04,N/A,N/A -2012,3,13,23,30,102040,100860,99710,95.54,0,4.89,6.21,6.79,7.36,7.890000000000001,8.39,8.58,8.68,8.6,114.21000000000001,116.93,119.84,124.63000000000001,129.7,134.96,139.79,144.09,146.97,20.26,20.25,20.19,20.09,19.86,19.57,19.76,20.05,20.150000000000002,N/A,N/A -2012,3,14,0,30,102020,100830,99680,94.27,0,6.09,7.63,8.31,8.98,9.32,9.450000000000001,9.36,9.24,9.040000000000001,123.29,129.62,134.03,138.88,141.98,143.85,145.18,146.24,148.52,20.43,20.400000000000002,20.3,20.09,19.87,19.64,19.45,19.29,19.01,N/A,N/A -2012,3,14,1,30,102030,100840,99690,96.03,0,7.140000000000001,8.620000000000001,9.11,9.33,9.4,9.4,9.39,9.370000000000001,9.5,133.64000000000001,137.17000000000002,139.06,140.52,141.54,142.28,142.82,143.27,144.23,20.04,19.89,19.79,19.66,19.54,19.43,19.28,19.13,18.830000000000002,N/A,N/A -2012,3,14,2,30,102040,100850,99700,95.64,0,7.3100000000000005,8.81,9.370000000000001,9.77,10,10.120000000000001,10.07,9.98,9.74,128.44,131.5,133.62,136.1,138.64000000000001,141.12,143.77,146.19,150.35,20.12,20.02,19.92,19.78,19.62,19.47,19.330000000000002,19.21,18.95,N/A,N/A -2012,3,14,3,30,102040,100850,99700,97.31,0,5.34,6.29,6.67,7.0600000000000005,7.43,7.79,8.17,8.53,9.11,136.71,138.81,140.38,142.32,143.83,145.08,146.20000000000002,147.23,150.27,19.79,19.66,19.56,19.42,19.28,19.150000000000002,19.150000000000002,19.19,19.18,N/A,N/A -2012,3,14,4,30,102030,100850,99700,97.17,0,6,7.03,7.38,7.66,7.8500000000000005,7.99,8.21,8.44,9.63,132.37,134.33,135.9,138.01,140.37,142.75,145.24,147.52,148.98,19.81,19.72,19.67,19.62,19.55,19.48,19.35,19.22,18.92,N/A,N/A -2012,3,14,5,30,102020,100830,99670,98.31,0,5.23,6.3100000000000005,6.87,7.54,8.28,9.08,9.71,10.26,10.870000000000001,136.38,135.83,135.97,136.83,139.22,142.62,147.92000000000002,153.31,159.96,19.59,19.490000000000002,19.400000000000002,19.240000000000002,18.98,18.67,18.3,17.96,18.48,N/A,N/A -2012,3,14,6,30,102040,100850,99700,99.26,0,7.4,8.41,8.75,8.93,9.06,9.15,9.21,9.26,9.35,170.6,169.44,168.43,167.14000000000001,165.76,164.38,163.14000000000001,162.05,160.28,19.150000000000002,18.93,18.830000000000002,18.740000000000002,18.66,18.580000000000002,18.490000000000002,18.41,18.21,N/A,N/A -2012,3,14,7,30,102070,100880,99730,98.85000000000001,0,5.92,6.74,7.05,7.34,7.62,7.9,8.18,8.45,9.040000000000001,159.97,159.32,159.02,158.78,158.71,158.74,158.88,159.02,159.62,19.66,19.51,19.43,19.330000000000002,19.23,19.13,19.01,18.900000000000002,18.61,N/A,N/A -2012,3,14,8,30,102040,100850,99700,97.99000000000001,0,4.86,5.69,6.07,6.47,6.93,7.43,7.91,8.36,8.700000000000001,155.8,157.49,159.20000000000002,162,165.04,168.23,169.71,170.68,170.05,19.82,19.68,19.61,19.54,19.57,19.650000000000002,19.75,19.85,19.66,N/A,N/A -2012,3,14,9,30,102040,100850,99700,99.05,0.7000000000000001,4.26,5.13,5.73,6.71,7.32,7.65,7.76,7.8100000000000005,8.01,123.88000000000001,128.73,132.72,138.37,142.16,144.56,147,149.18,152.49,19.6,19.27,19.04,18.73,18.96,19.490000000000002,19.85,20.13,20.150000000000002,N/A,N/A -2012,3,14,10,30,102040,100850,99700,99.05,1.8,4.04,4.74,5.18,5.79,6.74,7.99,9.07,10.07,10.73,114.59,117.60000000000001,120.60000000000001,125.3,131.61,139.41,144.73,149.35,152.20000000000002,19.52,19.330000000000002,19.23,19.150000000000002,19.21,19.34,19.66,19.990000000000002,20.21,N/A,N/A -2012,3,14,11,30,102050,100860,99720,98.88,1.5,4.95,5.73,6.25,7.07,7.72,8.26,8.55,8.76,9,127.34,130.44,133.61,138.77,142.51,145.31,147.20000000000002,148.74,152.27,19.51,19.35,19.36,19.48,19.71,19.98,20.03,20.03,19.990000000000002,N/A,N/A -2012,3,14,12,30,102070,100880,99740,98.45,0,3.77,4.87,5.58,6.55,7.5200000000000005,8.5,8.9,9.13,9.31,121.88,125.24000000000001,128.1,132.09,137.23,143.19,146.11,148.12,152.07,19.73,19.6,19.62,19.77,19.93,20.11,20.09,20.05,19.85,N/A,N/A -2012,3,14,13,30,102110,100920,99770,97.71000000000001,0.4,4.72,5.7700000000000005,6.3500000000000005,7.140000000000001,7.95,8.790000000000001,9.07,9.22,9.25,114.15,117.47,121.62,129.16,136.58,143.91,146.49,147.83,149.45000000000002,19.88,19.8,19.8,19.87,20.03,20.23,20.18,20.09,19.93,N/A,N/A -2012,3,14,14,30,102160,100970,99820,96.65,0,4.38,5.8,6.55,7.43,8.16,8.78,9.040000000000001,9.200000000000001,9.49,140.8,143.18,145.38,148.61,152.29,156.13,158.38,160.09,162.11,20.16,20.11,20.06,19.990000000000002,20,20.04,20.330000000000002,20.64,20.62,N/A,N/A -2012,3,14,15,30,102170,100980,99830,96.99000000000001,0,4.66,5.87,6.46,7.12,7.38,7.38,7.390000000000001,7.390000000000001,7.5600000000000005,118.74000000000001,120.49000000000001,122.18,124.75,131.84,141.44,145.77,148.57,154.05,20.13,20.09,20.07,20.04,20.09,20.19,20.18,20.150000000000002,20.14,N/A,N/A -2012,3,14,16,30,102200,101010,99860,98.57000000000001,0,4.97,5.88,6.23,6.51,6.69,6.8100000000000005,6.88,6.93,7.1000000000000005,106.72,108.86,112.22,119,127.48,136.69,140.98,143.96,149.13,19.98,19.82,19.76,19.73,19.78,19.87,19.96,20.04,20.16,N/A,N/A -2012,3,14,17,30,102190,101000,99850,98.14,0,4.64,5.59,6.01,6.42,6.65,6.7700000000000005,6.8,6.8100000000000005,6.96,106.87,111.01,115.78,123.68,132.89000000000001,142.5,146.06,147.9,151.92000000000002,20.16,20.07,20.02,19.97,20.07,20.26,20.32,20.35,20.25,N/A,N/A -2012,3,14,18,30,102190,101000,99850,97.43,0,5.18,6.2,6.62,7.04,7.3100000000000005,7.48,7.21,6.88,6.58,110.4,112.49000000000001,115.16,119.88,127.77,137.36,141.13,143.16,146.47,20.39,20.29,20.21,20.09,20.12,20.240000000000002,20.42,20.6,20.650000000000002,N/A,N/A -2012,3,14,19,30,102190,101010,99860,96.45,0,5.88,7.09,7.6000000000000005,8.120000000000001,8.49,8.76,8.75,8.68,8.370000000000001,118.97,119.9,120.86,122.41,126.87,132.85,136.87,140.04,141.93,20.5,20.400000000000002,20.330000000000002,20.22,20.2,20.240000000000002,20.27,20.31,20.19,N/A,N/A -2012,3,14,20,30,102160,100970,99830,96.51,0,5.22,6.45,6.99,7.57,7.87,8,7.9,7.76,7.44,115.85000000000001,117.74000000000001,120.35000000000001,125.07000000000001,131.87,139.62,142.19,143.43,145.69,20.43,20.35,20.27,20.14,20.330000000000002,20.67,20.650000000000002,20.54,20.47,N/A,N/A -2012,3,14,21,30,102140,100950,99800,96.22,0,5.36,6.6000000000000005,7.140000000000001,7.68,8.2,8.71,8.85,8.89,8.57,113.66,115.12,116.72,119.4,124.18,130.36,135.7,140.32,140.94,20.37,20.29,20.2,20.03,20.1,20.31,20.47,20.62,20.46,N/A,N/A -2012,3,14,22,30,102110,100920,99780,95.19,0,5.89,7.3500000000000005,8,8.65,9.23,9.74,10.01,10.19,9.86,112.33,113.76,114.89,116.33,118.39,120.8,125.85000000000001,131.09,140.99,20.44,20.45,20.45,20.44,20.400000000000002,20.36,20.12,19.86,19.580000000000002,N/A,N/A -2012,3,14,23,30,102110,100930,99780,94.9,0,6.97,8.78,9.51,10.03,10.26,10.32,10.26,10.17,10.06,122.39,125.04,126.86,128.88,131.05,133.24,135.6,137.76,140.61,20.45,20.38,20.28,20.12,19.96,19.81,19.66,19.52,19.14,N/A,N/A -2012,3,15,0,30,102080,100890,99750,94.78,0,6.67,8.42,9.15,9.77,10.1,10.26,10.17,10.040000000000001,9.56,115.92,119.18,121.75,125.16,128.75,132.35,135.66,138.59,145.03,20.48,20.42,20.330000000000002,20.18,20.06,19.95,19.95,19.97,19.91,N/A,N/A -2012,3,15,1,30,102090,100900,99760,95.37,0,4.7,5.95,6.49,7.07,7.59,8.09,8.44,8.73,9.620000000000001,122.27,119.83,118.71000000000001,118.16,118.85000000000001,120.31,123.10000000000001,126.01,135.94,20.38,20.38,20.330000000000002,20.25,20.16,20.07,19.95,19.84,19.46,N/A,N/A -2012,3,15,2,30,102100,100920,99770,95.86,0,5.9,7.140000000000001,7.68,8.19,8.700000000000001,9.21,9.88,10.56,11.27,124.46000000000001,124.15,124,123.97,124.63000000000001,125.73,129.73,134.21,140.24,20.240000000000002,20.150000000000002,20.04,19.87,19.61,19.31,18.97,18.68,19.830000000000002,N/A,N/A -2012,3,15,3,30,102100,100910,99760,97.89,0.4,5.82,6.94,7.49,8.120000000000001,8.83,9.6,10.53,11.44,11.86,123.57000000000001,124.14,124.72,125.64,127.38000000000001,129.64000000000001,133.98,138.53,145.24,19.830000000000002,19.650000000000002,19.51,19.29,19.01,18.69,18.94,19.25,20.53,N/A,N/A -2012,3,15,4,30,102090,100900,99750,98.4,0,5.97,7.01,7.5,8.05,8.700000000000001,9.41,10.32,11.22,12.02,127.4,127.98,128.53,129.31,130.66,132.36,136.06,140.02,148.29,19.740000000000002,19.59,19.490000000000002,19.36,19.18,18.97,18.92,18.92,20.490000000000002,N/A,N/A -2012,3,15,5,30,102090,100900,99750,98.34,0,5.91,6.99,7.51,8.13,8.85,9.64,10.61,11.58,12.540000000000001,131.66,132.53,133.27,134.35,135.81,137.5,140.36,143.44,150.48,19.75,19.59,19.48,19.35,19.2,19.06,19.48,19.96,20.34,N/A,N/A -2012,3,15,6,30,102090,100900,99750,96.64,0,6.16,7.140000000000001,7.57,8.01,8.48,8.96,9.56,10.17,11.67,137.04,137.63,138.11,138.78,139.6,140.52,141.84,143.21,148.18,20.21,20.02,19.91,19.8,19.7,19.62,19.580000000000002,19.56,19.75,N/A,N/A -2012,3,15,7,30,102110,100920,99770,95.94,0,6.140000000000001,7.15,7.57,8,8.42,8.84,9.33,9.8,11.06,138.81,139.38,139.84,140.45000000000002,141.16,141.93,142.97,144.02,147.70000000000002,20.34,20.16,20.04,19.91,19.8,19.69,19.61,19.54,19.57,N/A,N/A -2012,3,15,8,30,102090,100910,99760,96.06,0,5.73,6.75,7.18,7.63,8.07,8.52,9.02,9.52,10.64,140.28,140.9,141.37,141.98,142.71,143.5,144.55,145.61,149.33,20.34,20.16,20.06,19.93,19.82,19.72,19.64,19.580000000000002,19.59,N/A,N/A -2012,3,15,9,30,102110,100920,99770,95.57000000000001,0,5.57,6.62,7.08,7.5600000000000005,8.03,8.51,9.040000000000001,9.56,10.8,143.71,144.34,144.86,145.57,146.41,147.35,148.55,149.73,153.33,20.41,20.26,20.16,20.06,19.97,19.89,19.830000000000002,19.78,19.82,N/A,N/A -2012,3,15,10,30,102120,100930,99780,95.54,0,5.2700000000000005,6.29,6.74,7.21,7.67,8.14,8.63,9.1,10.1,139.15,140.07,140.82,141.78,142.88,144.05,145.4,146.73,150.25,20.400000000000002,20.25,20.16,20.06,19.97,19.88,19.81,19.75,19.68,N/A,N/A -2012,3,15,11,30,102160,100970,99820,95.32000000000001,0,5.14,6.18,6.640000000000001,7.140000000000001,7.65,8.15,8.72,9.27,10.33,138.11,139.28,140.26,141.56,143.05,144.65,146.65,148.67000000000002,153.9,20.43,20.31,20.23,20.150000000000002,20.080000000000002,20.02,19.990000000000002,19.98,20.02,N/A,N/A -2012,3,15,12,30,102180,100990,99840,95.44,0,4.84,5.88,6.37,6.890000000000001,7.42,7.94,8.51,9.06,9.97,135.02,136.33,137.45000000000002,139,140.81,142.79,145.63,148.56,157.03,20.43,20.32,20.26,20.19,20.150000000000002,20.11,20.12,20.14,20.2,N/A,N/A -2012,3,15,13,30,102220,101030,99880,95.37,0,4.96,5.99,6.47,6.99,7.5,8.02,8.540000000000001,9.03,9.65,130.01,131.52,132.76,134.52,136.5,138.61,141.36,144.17000000000002,153.34,20.46,20.34,20.28,20.21,20.16,20.12,20.1,20.09,20.09,N/A,N/A -2012,3,15,14,30,102260,101080,99930,95.7,0,5.18,6.22,6.69,7.21,7.71,8.2,8.65,9.05,9.6,131.53,133.01,134.28,136.03,138.02,140.17000000000002,142.84,145.49,152.76,20.54,20.42,20.35,20.27,20.21,20.16,20.11,20.05,19.95,N/A,N/A -2012,3,15,15,30,102280,101090,99940,97.15,0,5.41,6.41,6.84,7.3100000000000005,7.7700000000000005,8.25,8.73,9.200000000000001,9.91,135.21,136.37,137.34,138.73,140.44,142.37,144.89000000000001,147.4,153.85,20.61,20.45,20.35,20.25,20.17,20.09,20.04,20,19.91,N/A,N/A -2012,3,15,16,30,102300,101110,99960,96.87,0,5.49,6.44,6.84,7.25,7.66,8.05,8.47,8.86,9.63,139.99,141.04,141.86,142.96,144.19,145.47,147,148.48,151.84,20.740000000000002,20.56,20.45,20.32,20.2,20.09,19.990000000000002,19.89,19.7,N/A,N/A -2012,3,15,17,30,102310,101120,99970,96.25,0,5.28,6.1000000000000005,6.45,6.82,7.21,7.6000000000000005,8.09,8.58,9.57,143.47,144.5,145.38,146.64000000000001,148.20000000000002,149.98,152.32,154.72,160.05,20.88,20.67,20.56,20.44,20.330000000000002,20.240000000000002,20.17,20.12,20.080000000000002,N/A,N/A -2012,3,15,18,30,102280,101100,99950,94.13,0,5.5,6.26,6.54,6.8100000000000005,7.08,7.34,7.63,7.91,8.66,142.95000000000002,143.55,144.07,144.81,145.74,146.78,148.21,149.63,153.9,21.080000000000002,20.87,20.740000000000002,20.6,20.47,20.34,20.22,20.12,19.97,N/A,N/A -2012,3,15,19,30,102270,101090,99940,94.87,0,5.11,5.79,6.04,6.29,6.5200000000000005,6.76,7.03,7.29,8.01,136.61,137.17000000000002,137.64000000000001,138.26,139.01,139.85,141.1,142.36,148.62,21.12,20.89,20.75,20.59,20.44,20.3,20.16,20.04,19.91,N/A,N/A -2012,3,15,20,30,102250,101060,99910,96.46000000000001,0,5.0200000000000005,5.76,6.04,6.32,6.58,6.84,7.13,7.4,7.94,128.55,129.54,130.32,131.35,132.55,133.89000000000001,135.94,138.06,147.33,21.13,20.91,20.78,20.63,20.490000000000002,20.35,20.23,20.13,20.09,N/A,N/A -2012,3,15,21,30,102200,101010,99870,97.66,0,5.01,5.92,6.3,6.67,7.0200000000000005,7.34,7.65,7.930000000000001,8.38,131.63,132.52,133.21,134.2,135.38,136.70000000000002,138.57,140.47,146.68,21.18,21,20.900000000000002,20.77,20.66,20.54,20.44,20.35,20.2,N/A,N/A -2012,3,15,22,30,102140,100950,99810,95.65,0,5.24,6.5200000000000005,7.05,7.53,7.930000000000001,8.290000000000001,8.59,8.85,9.22,142,143.28,144.13,145.08,145.94,146.73,147.5,148.20000000000002,150.31,21.17,21.1,21.03,20.93,20.81,20.68,20.53,20.38,19.93,N/A,N/A -2012,3,15,23,30,102130,100940,99790,95.53,0,5.45,6.96,7.67,8.370000000000001,8.88,9.25,9.44,9.56,9.6,147.34,151.59,154.37,157.21,158.76,159.39000000000001,159.21,158.81,158.56,20.92,20.900000000000002,20.8,20.56,20.29,19.990000000000002,19.830000000000002,19.71,19.61,N/A,N/A -2012,3,16,0,30,102080,100900,99750,96.67,0,3.96,5.15,5.69,6.23,6.72,7.19,7.66,8.11,8.41,142.73,144.51,145.83,147.34,149.13,151.1,153.68,156.28,158.92000000000002,20.67,20.64,20.61,20.57,20.52,20.46,20.36,20.27,19.96,N/A,N/A -2012,3,16,1,30,102090,100900,99750,97.44,0,4.21,5.13,5.48,5.8,6.19,6.640000000000001,7.16,7.69,8.07,143.71,143.55,143.51,143.52,144.34,145.74,147.71,149.75,151.52,20.490000000000002,20.42,20.37,20.31,20.27,20.22,20.150000000000002,20.09,19.91,N/A,N/A -2012,3,16,2,30,102100,100910,99760,97.64,0,4.8500000000000005,5.97,6.5,7.12,7.72,8.32,8.81,9.25,9.43,135.26,137.4,138.99,141,142.99,145,147.35,149.65,155.15,20.45,20.34,20.28,20.2,20.16,20.150000000000002,20.150000000000002,20.16,20.080000000000002,N/A,N/A -2012,3,16,3,30,102100,100910,99770,97.3,0,4.82,5.93,6.45,7,7.53,8.05,8.55,9.01,9.78,137.42000000000002,138.73,139.73,140.87,141.99,143.1,144.39000000000001,145.65,149.20000000000002,20.51,20.38,20.3,20.21,20.12,20.04,19.95,19.88,19.73,N/A,N/A -2012,3,16,4,30,102100,100910,99760,97.22,0,5.66,6.76,7.25,7.78,8.28,8.78,9.290000000000001,9.77,10.63,140.88,141.84,142.53,143.41,144.3,145.19,146.14000000000001,147.06,149.27,20.44,20.3,20.22,20.12,20.02,19.94,19.85,19.78,19.62,N/A,N/A -2012,3,16,5,30,102080,100890,99740,97,0,5.51,6.63,7.140000000000001,7.67,8.2,8.73,9.28,9.8,10.71,148.76,149.52,150.12,150.9,151.76,152.68,153.76,154.82,157.71,20.46,20.34,20.25,20.16,20.07,19.990000000000002,19.92,19.85,19.77,N/A,N/A -2012,3,16,6,30,102110,100930,99780,96.73,0,6,6.87,7.21,7.55,7.88,8.2,8.57,8.92,9.71,144.19,144.85,145.35,145.99,146.68,147.41,148.28,149.13,151.11,20.580000000000002,20.37,20.240000000000002,20.09,19.96,19.830000000000002,19.7,19.59,19.38,N/A,N/A -2012,3,16,7,30,102110,100930,99780,96.33,0,5.59,6.49,6.84,7.18,7.51,7.82,8.15,8.47,9.19,156.19,156.42000000000002,156.59,156.83,157.14000000000001,157.48,157.94,158.41,159.67000000000002,20.72,20.5,20.37,20.22,20.07,19.92,19.78,19.650000000000002,19.36,N/A,N/A -2012,3,16,8,30,102110,100930,99780,96.78,0,5.4,6.2,6.5,6.78,7.04,7.29,7.55,7.79,8.34,168.16,168.51,168.74,169.01,169.26,169.51,169.75,169.97,170.3,20.650000000000002,20.43,20.29,20.14,19.98,19.830000000000002,19.71,19.61,19.36,N/A,N/A -2012,3,16,9,30,102140,100950,99800,95.82000000000001,0,4.5,5.57,6.08,6.59,6.98,7.29,7.47,7.61,7.8500000000000005,163.24,164.88,166.03,167.17000000000002,167.99,168.61,168.83,168.94,167.3,20.79,20.59,20.45,20.26,20.06,19.86,19.650000000000002,19.46,19.1,N/A,N/A -2012,3,16,10,30,102130,100940,99790,96.75,0,3.81,4.62,4.98,5.42,5.98,6.61,7.2700000000000005,7.9,8.36,143.27,146.02,148.59,152.72,156.71,160.70000000000002,163.31,165.46,166.56,20.7,20.54,20.46,20.38,20.31,20.25,20.17,20.09,19.89,N/A,N/A -2012,3,16,11,30,102130,100950,99800,93.60000000000001,0,6.41,7.41,7.76,8.05,8.25,8.4,8.48,8.53,8.59,150.56,150.95000000000002,151.3,151.75,152.33,152.98,153.97,154.96,158.25,20.8,20.61,20.490000000000002,20.34,20.2,20.05,19.91,19.78,19.53,N/A,N/A -2012,3,16,12,30,102150,100970,99820,91.72,0,5.37,6.37,6.8100000000000005,7.26,7.67,8.05,8.38,8.68,8.96,148.18,149.05,149.63,150.19,150.63,151.01,151.57,152.12,154.54,20.89,20.77,20.7,20.6,20.51,20.42,20.32,20.22,20.04,N/A,N/A -2012,3,16,13,30,102160,100970,99820,93.28,0,4.63,5.54,5.95,6.390000000000001,6.8,7.18,7.42,7.62,7.74,138.22,139.92000000000002,141.23,142.8,144.17000000000002,145.41,146.66,147.83,151.8,20.76,20.63,20.55,20.47,20.38,20.28,20.150000000000002,20.02,19.740000000000002,N/A,N/A -2012,3,16,14,30,102190,101010,99860,95.51,0,5.6000000000000005,6.45,6.78,7.09,7.37,7.640000000000001,7.930000000000001,8.19,8.81,140.94,141.67000000000002,142.26,143.07,144.07,145.18,146.67000000000002,148.16,152.01,20.72,20.51,20.38,20.240000000000002,20.1,19.97,19.84,19.72,19.5,N/A,N/A -2012,3,16,15,30,102190,101000,99850,94.56,0,4.93,5.73,6.08,6.44,6.78,7.11,7.43,7.74,8.5,146.82,148.06,148.9,149.95000000000002,150.97,151.98,153.23,154.46,158.53,20.830000000000002,20.63,20.52,20.39,20.26,20.14,20.02,19.91,19.740000000000002,N/A,N/A -2012,3,16,16,30,102190,101000,99850,93.98,0,4.2700000000000005,4.86,5.12,5.39,5.68,6,6.41,6.84,8.05,156.16,157.37,158.31,159.53,160.91,162.4,164.09,165.76,168.41,20.96,20.740000000000002,20.62,20.48,20.36,20.25,20.16,20.080000000000002,19.93,N/A,N/A -2012,3,16,17,30,102180,100990,99840,94.84,0,4.7700000000000005,5.23,5.44,5.72,5.97,6.19,6.4,6.59,7,141.95000000000002,142.74,143.51,144.72,146.02,147.36,148.76,150.07,152.98,21.03,20.76,20.61,20.45,20.3,20.16,20,19.86,19.6,N/A,N/A -2012,3,16,18,30,102140,100960,99810,95.10000000000001,0,4.04,4.32,4.4,4.48,4.7700000000000005,5.19,5.42,5.59,5.86,140.23,141.09,141.8,142.82,145.5,149.33,151.46,153.02,155.87,21.13,20.830000000000002,20.67,20.490000000000002,20.35,20.22,20.07,19.93,19.62,N/A,N/A -2012,3,16,19,30,102140,100950,99800,93.59,0,4.68,5.04,5.12,5.17,5.22,5.28,5.51,5.76,6.3,137.18,137.67000000000002,138.05,138.52,139.16,139.9,141.99,144.29,148.96,21.36,21.07,20.900000000000002,20.71,20.53,20.35,20.18,20.03,19.740000000000002,N/A,N/A -2012,3,16,20,30,102080,100900,99750,95.43,0,4.93,5.33,5.42,5.48,5.57,5.68,6.01,6.4,6.74,134.3,134.77,135.12,135.59,136.27,137.09,140.05,143.49,146.44,21.34,21.05,20.89,20.7,20.52,20.35,20.2,20.07,19.76,N/A,N/A -2012,3,16,21,30,102040,100860,99710,96.04,0,4.84,5.42,5.61,5.78,5.92,6.0600000000000005,6.21,6.34,6.69,139.9,140.5,140.97,141.59,142.34,143.16,144.26,145.35,148.5,21.34,21.09,20.93,20.76,20.59,20.43,20.27,20.12,19.85,N/A,N/A -2012,3,16,22,30,102010,100820,99680,96.02,0,4.3500000000000005,5.08,5.36,5.61,5.82,6.0200000000000005,6.22,6.41,6.92,139.37,140.09,140.67000000000002,141.45000000000002,142.38,143.41,144.84,146.27,151.03,21.25,21.04,20.91,20.76,20.61,20.47,20.330000000000002,20.2,20,N/A,N/A -2012,3,16,23,30,101980,100800,99650,96.2,0,5.58,6.63,7.0200000000000005,7.36,7.640000000000001,7.87,8.05,8.21,8.44,137.25,137.93,138.42000000000002,138.97,139.54,140.12,140.77,141.38,142.89000000000001,21.12,20.96,20.85,20.71,20.57,20.43,20.27,20.13,19.82,N/A,N/A -2012,3,17,0,30,101960,100780,99630,96.56,0,4.93,5.91,6.29,6.63,6.92,7.18,7.42,7.640000000000001,8.08,140.51,141.6,142.44,143.49,144.56,145.62,146.66,147.62,148.96,21.02,20.89,20.8,20.68,20.56,20.43,20.28,20.14,19.78,N/A,N/A -2012,3,17,1,30,101960,100770,99630,97.52,0,4.58,5.54,5.97,6.43,6.86,7.26,7.63,7.97,8.49,137.54,138.58,139.35,140.29,141.35,142.46,143.9,145.33,150.31,20.73,20.56,20.46,20.35,20.240000000000002,20.14,20.03,19.93,19.69,N/A,N/A -2012,3,17,2,30,101950,100770,99620,97.72,0,5.2,6.140000000000001,6.54,6.96,7.36,7.74,8.11,8.47,9.02,138.31,139.21,139.98,140.98,142.07,143.21,144.54,145.84,150.5,20.69,20.51,20.41,20.29,20.18,20.07,19.98,19.900000000000002,19.77,N/A,N/A -2012,3,17,3,30,101950,100770,99620,96.97,0,5.82,6.8500000000000005,7.28,7.7,8.11,8.52,8.96,9.38,10.17,137.88,139.31,140.44,141.89000000000001,143.4,144.93,146.33,147.61,149.25,20.84,20.67,20.56,20.43,20.3,20.16,20,19.85,19.55,N/A,N/A -2012,3,17,4,30,101930,100740,99600,94.29,0,6.390000000000001,7.43,7.8,8.11,8.370000000000001,8.6,8.9,9.200000000000001,10.11,145.63,147.42000000000002,148.58,149.91,151.14000000000001,152.3,153.33,154.26,155.9,20.85,20.650000000000002,20.51,20.330000000000002,20.16,19.98,19.84,19.72,19.73,N/A,N/A -2012,3,17,5,30,101900,100720,99570,96.93,0,5.55,6.55,6.97,7.390000000000001,7.8,8.2,8.620000000000001,9.03,9.88,144.58,145.55,146.28,147.26,148.36,149.54,150.93,152.28,155.24,20.76,20.59,20.490000000000002,20.37,20.25,20.150000000000002,20.06,19.97,19.84,N/A,N/A -2012,3,17,6,30,101890,100710,99560,96.44,0,6.32,7.3500000000000005,7.76,8.15,8.52,8.88,9.24,9.57,10.26,150.97,151.37,151.67000000000002,152.03,152.45000000000002,152.9,153.48,154.05,155.71,20.830000000000002,20.63,20.51,20.37,20.240000000000002,20.1,19.97,19.84,19.59,N/A,N/A -2012,3,17,7,30,101910,100730,99580,96.92,0,5.46,6.42,6.82,7.22,7.61,7.97,8.35,8.71,9.42,149.78,150.29,150.73,151.3,151.93,152.6,153.38,154.13,155.73,20.81,20.62,20.51,20.38,20.25,20.13,20.01,19.900000000000002,19.68,N/A,N/A -2012,3,17,8,30,101900,100720,99580,93.51,0,7.62,8.72,9.11,9.47,9.790000000000001,10.09,10.38,10.65,11.26,161.22,159.31,158.02,156.41,154.82,153.28,151.81,150.48,148.56,20.97,20.78,20.650000000000002,20.5,20.35,20.2,20.04,19.89,19.580000000000002,N/A,N/A -2012,3,17,9,30,101890,100710,99560,95.83,0,5.47,6.62,7.17,7.79,8.51,9.28,10.11,10.92,11.8,147.23,149.86,151.87,154.48,157.04,159.62,161.61,163.36,164.26,21.01,20.87,20.78,20.67,20.55,20.43,20.29,20.16,19.87,N/A,N/A -2012,3,17,10,30,101890,100710,99570,95.88,0,5.47,6.59,7.05,7.5,7.9,8.290000000000001,8.69,9.06,9.84,149.07,149.91,150.58,151.45000000000002,152.38,153.35,154.31,155.20000000000002,156.51,20.98,20.85,20.76,20.66,20.57,20.48,20.38,20.29,20.1,N/A,N/A -2012,3,17,11,30,101940,100760,99610,96.55,0,4.61,5.59,6.01,6.42,6.8,7.15,7.53,7.890000000000001,8.64,141.75,142.69,143.45000000000002,144.39000000000001,145.47,146.63,148.20000000000002,149.79,153.66,20.88,20.72,20.62,20.5,20.38,20.27,20.16,20.06,19.85,N/A,N/A -2012,3,17,12,30,101930,100750,99610,97.34,0,5.08,6.04,6.47,6.92,7.3500000000000005,7.78,8.23,8.65,9.46,130.38,132.54,134.17000000000002,136.2,138.26,140.36,142.3,144.1,147.94,20.93,20.77,20.67,20.55,20.400000000000002,20.25,20.080000000000002,19.93,19.52,N/A,N/A -2012,3,17,13,30,101960,100770,99630,97.11,0,5.3,6.38,6.8500000000000005,7.34,7.74,8.08,8.2,8.27,8.27,132.95,135.48,137.34,139.62,141.41,142.9,145.42000000000002,147.98,159.1,21,20.830000000000002,20.71,20.55,20.37,20.18,20,19.84,19.830000000000002,N/A,N/A -2012,3,17,14,30,101980,100790,99650,97.17,0,4.67,5.66,6.1000000000000005,6.57,6.98,7.3500000000000005,7.7,8.040000000000001,8.77,126.3,128.44,130.07,132.04,134,135.98,138.28,140.56,147.13,20.94,20.81,20.740000000000002,20.650000000000002,20.54,20.43,20.31,20.2,19.98,N/A,N/A -2012,3,17,15,30,101990,100800,99660,94.63,0,6.07,7.04,7.43,7.7700000000000005,8.05,8.3,8.47,8.620000000000001,8.74,147.81,148.73,149.28,149.86,150.37,150.82,151.31,151.78,153.37,21,20.82,20.71,20.57,20.43,20.3,20.14,20,19.86,N/A,N/A -2012,3,17,16,30,102000,100820,99670,96.83,0,3.8200000000000003,4.68,5.13,5.65,6.15,6.63,7.03,7.38,7.5,129.53,132.28,134.08,135.86,137.28,138.48,140.35,142.29,147.24,21.05,20.87,20.78,20.68,20.6,20.53,20.48,20.43,20.34,N/A,N/A -2012,3,17,17,30,101970,100780,99640,96.17,0,4.66,5.2700000000000005,5.51,5.7700000000000005,6.03,6.3100000000000005,6.59,6.86,7.12,131.52,132.31,133,133.94,135.19,136.63,139.06,141.55,148.34,21.2,20.96,20.82,20.68,20.55,20.43,20.330000000000002,20.240000000000002,20.12,N/A,N/A -2012,3,17,18,30,101960,100780,99640,96.23,0,4.03,4.74,5.05,5.34,5.59,5.8100000000000005,6.03,6.24,6.69,134.37,135.81,136.78,137.89000000000001,139.02,140.16,141.41,142.61,145.05,21.38,21.13,21,20.85,20.69,20.54,20.38,20.240000000000002,20,N/A,N/A -2012,3,17,19,30,101950,100770,99630,95.98,0,4.54,5.15,5.38,5.58,5.7700000000000005,5.94,6.13,6.3100000000000005,6.66,133.94,135.42000000000002,136.33,137.17000000000002,137.9,138.55,139.22,139.85,141.84,21.7,21.43,21.28,21.11,20.95,20.78,20.63,20.490000000000002,20.240000000000002,N/A,N/A -2012,3,17,20,30,101910,100730,99590,97.43,0,4.57,5.26,5.55,5.83,6.09,6.34,6.57,6.7700000000000005,7.04,122.98,124.13000000000001,125.01,126.19,127.68,129.38,131.27,133.12,136.84,21.73,21.47,21.330000000000002,21.17,21.03,20.92,20.81,20.7,20.42,N/A,N/A -2012,3,17,21,30,101860,100680,99540,97.51,0,4.75,5.54,5.84,6.11,6.37,6.6000000000000005,6.8500000000000005,7.07,7.66,126.74000000000001,127.2,127.63000000000001,128.19,128.86,129.6,130.68,131.76,136.67000000000002,21.68,21.47,21.34,21.18,21.06,20.95,20.85,20.75,20.56,N/A,N/A -2012,3,17,22,30,101850,100670,99530,96.82000000000001,0,4.13,5.11,5.48,5.8100000000000005,6.09,6.34,6.55,6.74,7.04,113.17,115.9,117.99000000000001,120.53,123.27,126.15,129.91,133.65,147.78,21.57,21.47,21.39,21.28,21.16,21.03,20.84,20.650000000000002,20.19,N/A,N/A -2012,3,17,23,30,101820,100640,99500,96.63,0,4.59,5.75,6.25,6.74,7.16,7.53,7.79,8,8.31,121.5,124.07000000000001,126.38000000000001,129.68,132.97,136.3,138.87,141.05,144.22,21.28,21.22,21.18,21.12,21.02,20.89,20.78,20.67,20.84,N/A,N/A -2012,3,18,0,30,101790,100620,99480,95.18,0.7000000000000001,4.37,5.53,5.9,6.13,6.38,6.65,6.8500000000000005,7.0200000000000005,7.390000000000001,136.2,139.18,141.07,142.53,144.47,146.75,149.04,151.15,153.96,21.51,21.72,21.73,21.59,21.46,21.34,21.2,21.07,20.72,N/A,N/A -2012,3,18,1,30,101770,100590,99450,95.79,0,6.51,7.9,8.46,8.98,9.46,9.9,10.35,10.77,11.66,140.98,141.56,142.01,142.63,143.41,144.29,145.70000000000002,147.16,151.07,21.32,21.240000000000002,21.18,21.09,21.01,20.94,20.84,20.75,20.44,N/A,N/A -2012,3,18,2,30,101790,100610,99470,96.03,0,6.63,7.98,8.55,9.11,9.63,10.120000000000001,10.64,11.120000000000001,11.96,133.42000000000002,134.51,135.25,135.97,136.58,137.11,138.12,139.22,142.75,21.26,21.18,21.13,21.07,21,20.94,20.85,20.75,20.42,N/A,N/A -2012,3,18,3,30,101790,100610,99470,96.15,0,6.3500000000000005,7.79,8.44,9.1,9.700000000000001,10.24,10.73,11.17,11.86,128.3,129.6,130.53,131.65,132.76,133.85,135.02,136.14000000000001,138.64000000000001,21.240000000000002,21.16,21.1,21.03,20.95,20.88,20.8,20.72,20.53,N/A,N/A -2012,3,18,4,30,101770,100590,99450,95.88,0,6.84,8.24,8.84,9.43,9.98,10.49,10.99,11.46,12.41,134.2,134.76,135.17000000000002,135.71,136.33,136.99,137.8,138.6,140.64000000000001,21.29,21.19,21.12,21.02,20.93,20.84,20.740000000000002,20.650000000000002,20.47,N/A,N/A -2012,3,18,5,30,101760,100590,99450,95.39,0,8.13,9.620000000000001,10.22,10.790000000000001,11.32,11.82,12.31,12.780000000000001,13.700000000000001,136.55,137.39000000000001,138.04,138.87,139.77,140.70000000000002,141.69,142.63,144.44,21.39,21.3,21.23,21.14,21.06,20.97,20.88,20.8,20.62,N/A,N/A -2012,3,18,6,30,101780,100600,99460,97.98,0,7.28,8.46,8.98,9.49,9.97,10.450000000000001,10.91,11.33,12.14,149.42000000000002,149.63,149.84,150.19,150.68,151.25,152.05,152.85,155,21.19,21.02,20.94,20.88,20.81,20.73,20.67,20.62,20.55,N/A,N/A -2012,3,18,7,30,101780,100600,99460,96.61,17.6,6.7,7.95,8.46,8.950000000000001,9.44,9.92,10.44,10.94,11.97,146.83,146.88,146.91,146.94,146.99,147.05,147.22,147.4,148.11,21.47,21.32,21.23,21.11,21,20.89,20.77,20.67,20.45,N/A,N/A -2012,3,18,8,30,101760,100580,99440,95.86,0.4,7.47,8.81,9.33,9.8,10.23,10.64,11.040000000000001,11.42,12.16,152.8,152.98,153.17000000000002,153.42000000000002,153.71,154.01,154.37,154.72,155.57,21.54,21.42,21.32,21.2,21.080000000000002,20.96,20.830000000000002,20.71,20.43,N/A,N/A -2012,3,18,9,30,101760,100580,99440,95.47,0,7.16,8.45,8.96,9.44,9.870000000000001,10.28,10.700000000000001,11.09,11.97,152.39000000000001,152.4,152.49,152.73,153.1,153.56,154.24,154.92000000000002,156.85,21.55,21.43,21.330000000000002,21.22,21.1,20.98,20.86,20.740000000000002,20.5,N/A,N/A -2012,3,18,10,30,101770,100590,99450,96.85000000000001,0,6.2700000000000005,7.4,7.86,8.31,8.74,9.17,9.64,10.1,11.05,145.82,146.8,147.61,148.71,149.95000000000002,151.28,152.73,154.14000000000001,156.81,21.35,21.21,21.11,21,20.88,20.78,20.67,20.57,20.35,N/A,N/A -2012,3,18,11,30,101750,100570,99430,96.49000000000001,0,6.83,8.09,8.6,9.1,9.58,10.05,10.58,11.09,12.24,149.8,150.75,151.55,152.6,153.85,155.22,156.94,158.65,162.04,21.43,21.29,21.21,21.1,21,20.91,20.81,20.73,20.55,N/A,N/A -2012,3,18,12,30,101770,100600,99460,95.38,0,7.45,8.86,9.46,10.08,10.67,11.26,11.85,12.41,13.44,150.34,151.15,151.72,152.41,153.07,153.69,154.21,154.67000000000002,155.39000000000001,21.52,21.41,21.32,21.22,21.13,21.03,20.92,20.82,20.6,N/A,N/A -2012,3,18,13,30,101790,100610,99470,96.61,0,6.87,8.09,8.56,9.01,9.42,9.8,10.18,10.540000000000001,11.42,138.79,139.66,140.3,141.11,142,142.94,144.07,145.16,147.72,21.43,21.29,21.19,21.07,20.96,20.84,20.71,20.6,20.37,N/A,N/A -2012,3,18,14,30,101830,100650,99510,96.44,0,7.13,8.39,8.89,9.370000000000001,9.81,10.23,10.65,11.05,11.84,144.53,145.3,145.9,146.69,147.56,148.46,149.44,150.38,152.24,21.490000000000002,21.36,21.26,21.150000000000002,21.04,20.94,20.830000000000002,20.73,20.51,N/A,N/A -2012,3,18,15,30,101840,100660,99520,95.42,0,7.34,8.71,9.26,9.8,10.290000000000001,10.75,11.22,11.67,12.6,143.3,144.09,144.70000000000002,145.43,146.16,146.88,147.67000000000002,148.42000000000002,150.26,21.7,21.59,21.51,21.400000000000002,21.3,21.19,21.07,20.96,20.71,N/A,N/A -2012,3,18,16,30,101860,100680,99540,95.72,0,7.36,8.67,9.18,9.66,10.1,10.51,10.93,11.32,12.15,141.44,142,142.46,143.01,143.62,144.25,145.01,145.73,147.66,21.73,21.61,21.52,21.400000000000002,21.28,21.17,21.05,20.93,20.7,N/A,N/A -2012,3,18,17,30,101860,100680,99540,95.88,0,6.91,8.2,8.73,9.24,9.71,10.15,10.58,10.99,11.88,141.45000000000002,142.26,142.83,143.55,144.31,145.1,146.02,146.92000000000002,149.27,21.76,21.63,21.54,21.43,21.32,21.2,21.080000000000002,20.97,20.75,N/A,N/A -2012,3,18,18,30,101840,100670,99530,95.66,0,7.37,8.67,9.18,9.66,10.08,10.48,10.86,11.22,11.9,138.71,139.27,139.72,140.27,140.86,141.47,142.19,142.9,144.79,21.84,21.71,21.62,21.5,21.39,21.27,21.150000000000002,21.04,20.81,N/A,N/A -2012,3,18,19,30,101830,100650,99520,96.03,0,7.75,9.13,9.67,10.19,10.66,11.11,11.57,11.99,12.86,132.05,132.89000000000001,133.55,134.41,135.38,136.42000000000002,137.66,138.88,141.74,21.85,21.73,21.650000000000002,21.54,21.44,21.34,21.240000000000002,21.150000000000002,20.96,N/A,N/A -2012,3,18,20,30,101790,100610,99470,95.99000000000001,0,7.9,9.31,9.86,10.370000000000001,10.84,11.27,11.68,12.040000000000001,12.68,131.18,131.76,132.22,132.81,133.46,134.17000000000002,134.98,135.76,137.58,21.79,21.68,21.59,21.48,21.37,21.27,21.150000000000002,21.05,20.81,N/A,N/A -2012,3,18,21,30,101740,100560,99420,95.67,0,8.19,9.66,10.24,10.78,11.27,11.74,12.18,12.58,13.32,131.66,132.26,132.71,133.3,133.96,134.68,135.54,136.37,138.61,21.75,21.650000000000002,21.56,21.46,21.36,21.26,21.150000000000002,21.05,20.85,N/A,N/A -2012,3,18,22,30,101700,100520,99380,95.45,0,8.82,10.36,10.96,11.540000000000001,12.06,12.540000000000001,13.01,13.44,14.280000000000001,135.66,136.09,136.42000000000002,136.87,137.38,137.94,138.67000000000002,139.39000000000001,141.37,21.72,21.62,21.54,21.43,21.330000000000002,21.22,21.11,21.02,20.830000000000002,N/A,N/A -2012,3,18,23,30,101640,100460,99320,95.55,0,9.13,10.67,11.26,11.83,12.34,12.81,13.290000000000001,13.73,14.63,134.95,135.35,135.67000000000002,136.11,136.62,137.18,137.93,138.68,140.91,21.67,21.56,21.48,21.37,21.27,21.17,21.080000000000002,20.990000000000002,20.85,N/A,N/A -2012,3,19,0,30,101570,100400,99260,95.51,0,9.63,11.21,11.82,12.370000000000001,12.88,13.36,13.86,14.33,15.34,137.38,137.71,137.97,138.33,138.76,139.24,139.88,140.52,142.07,21.650000000000002,21.54,21.45,21.34,21.240000000000002,21.14,21.04,20.96,20.8,N/A,N/A -2012,3,19,1,30,101550,100380,99240,95.27,0,9.71,11.31,11.93,12.49,13.01,13.49,13.96,14.4,15.33,139.82,140.16,140.43,140.78,141.17000000000002,141.6,142.15,142.68,144.27,21.63,21.51,21.42,21.3,21.19,21.07,20.96,20.86,20.69,N/A,N/A -2012,3,19,2,30,101550,100380,99240,93.96000000000001,0,9.89,11.55,12.17,12.76,13.31,13.82,14.35,14.84,15.83,142.96,143.38,143.71,144.09,144.48,144.86,145.27,145.64000000000001,146.46,21.67,21.57,21.490000000000002,21.38,21.28,21.18,21.07,20.98,20.79,N/A,N/A -2012,3,19,3,30,101570,100390,99250,92.66,0,9.71,11.38,12,12.57,13.1,13.59,14.08,14.530000000000001,15.48,146.04,146.17000000000002,146.33,146.51,146.70000000000002,146.9,147.15,147.39000000000001,148.16,21.740000000000002,21.650000000000002,21.56,21.45,21.34,21.240000000000002,21.12,21.02,20.81,N/A,N/A -2012,3,19,4,30,101510,100340,99200,92.14,0,9.540000000000001,11.15,11.76,12.33,12.870000000000001,13.39,13.94,14.47,15.610000000000001,144.46,145.14000000000001,145.62,146.19,146.74,147.29,147.8,148.27,148.84,21.72,21.64,21.57,21.48,21.39,21.3,21.22,21.14,20.94,N/A,N/A -2012,3,19,5,30,101510,100340,99200,90.75,0,9.92,11.55,12.16,12.700000000000001,13.200000000000001,13.66,14.13,14.58,15.52,149.72,149.9,150.02,150.21,150.45000000000002,150.73,151.08,151.43,152.17000000000002,21.81,21.72,21.64,21.53,21.42,21.32,21.2,21.09,20.84,N/A,N/A -2012,3,19,6,30,101500,100320,99190,90.74,0,10.200000000000001,11.89,12.51,13.09,13.61,14.09,14.56,14.98,15.84,147.8,148.11,148.33,148.58,148.84,149.1,149.37,149.63,150.20000000000002,21.73,21.64,21.55,21.44,21.32,21.2,21.07,20.95,20.68,N/A,N/A -2012,3,19,7,30,101500,100320,99190,91.88,0,10.51,12.24,12.86,13.43,13.93,14.39,14.84,15.25,16.04,151.37,151.87,152.17000000000002,152.52,152.88,153.24,153.63,154.01,154.78,21.740000000000002,21.650000000000002,21.55,21.44,21.32,21.2,21.07,20.94,20.67,N/A,N/A -2012,3,19,8,30,101440,100260,99130,93.61,0,10.35,12.02,12.64,13.200000000000001,13.700000000000001,14.15,14.620000000000001,15.040000000000001,15.92,149.61,150.03,150.33,150.69,151.11,151.54,152.09,152.62,153.91,21.69,21.580000000000002,21.48,21.36,21.240000000000002,21.12,21,20.88,20.63,N/A,N/A -2012,3,19,9,30,101410,100240,99100,93.48,0,11.33,13.09,13.72,14.280000000000001,14.77,15.22,15.66,16.06,16.84,149.85,150.02,150.23,150.49,150.79,151.12,151.52,151.91,152.89000000000001,21.66,21.54,21.44,21.32,21.19,21.07,20.93,20.81,20.56,N/A,N/A -2012,3,19,10,30,101360,100190,99060,93.29,0,12.17,14.05,14.71,15.26,15.74,16.18,16.61,17.01,17.82,151.14000000000001,151.61,151.96,152.39000000000001,152.87,153.38,154.01,154.6,156.04,21.75,21.66,21.57,21.45,21.34,21.22,21.11,21,20.78,N/A,N/A -2012,3,19,11,30,101280,100110,98980,92.28,0,15.72,18.09,18.88,19.53,20.080000000000002,20.55,20.98,21.38,22.09,148.41,149.03,149.42000000000002,149.87,150.31,150.75,151.22,151.67000000000002,152.64000000000001,21.81,21.72,21.64,21.53,21.42,21.3,21.19,21.080000000000002,20.86,N/A,N/A -2012,3,19,12,30,101250,100080,98950,92.24,0,15.97,18.38,19.150000000000002,19.77,20.29,20.75,21.16,21.52,22.150000000000002,144.69,145.18,145.43,145.73,146.06,146.39000000000001,146.78,147.15,148.02,21.79,21.7,21.61,21.490000000000002,21.37,21.26,21.14,21.03,20.81,N/A,N/A -2012,3,19,13,30,101300,100130,98990,91.64,0,14.24,16.46,17.23,17.88,18.43,18.92,19.37,19.77,20.490000000000002,149.65,149.56,149.52,149.51,149.54,149.58,149.68,149.79,150.15,21.830000000000002,21.740000000000002,21.650000000000002,21.53,21.400000000000002,21.27,21.14,21.01,20.75,N/A,N/A -2012,3,19,14,30,101370,100200,99060,91.29,0,11.46,13.34,14.040000000000001,14.65,15.19,15.67,16.14,16.57,17.32,155.6,155.19,154.97,154.74,154.51,154.3,154.11,153.95000000000002,153.76,21.75,21.650000000000002,21.55,21.42,21.29,21.16,21.02,20.89,20.61,N/A,N/A -2012,3,19,15,30,101370,100200,99070,92.38,0,11.75,13.57,14.21,14.74,15.200000000000001,15.6,15.98,16.32,16.95,134.12,134.14000000000001,134.21,134.36,134.6,134.9,135.37,135.84,137.35,21.740000000000002,21.63,21.54,21.42,21.3,21.18,21.07,20.96,20.75,N/A,N/A -2012,3,19,16,30,101350,100180,99040,90.82000000000001,0,10.82,12.27,12.74,13.08,13.35,13.56,13.72,13.86,14.11,122.25,122.67,123.11,123.73,124.55,125.49000000000001,126.92,128.35,133,21.52,21.38,21.28,21.150000000000002,21.04,20.94,20.85,20.78,20.71,N/A,N/A -2012,3,19,17,30,101320,100150,99010,89.26,0.4,12.200000000000001,13.780000000000001,14.26,14.620000000000001,14.92,15.19,15.44,15.66,16.09,115.38,116.34,116.96000000000001,117.68,118.44,119.23,120.16,121.03,123.22,21.22,21.03,20.900000000000002,20.75,20.61,20.47,20.34,20.21,19.97,N/A,N/A -2012,3,19,18,30,101320,100140,99000,95.9,0.7000000000000001,10.9,13,13.75,14.06,14.44,14.84,15.14,15.39,15.700000000000001,103.10000000000001,103.9,104.46000000000001,105.07000000000001,106.2,107.66,109.45,111.17,115.18,20.73,20.47,20.32,20.16,20.04,19.94,19.85,19.77,19.64,N/A,N/A -2012,3,19,19,30,101290,100120,98980,92.46000000000001,0,11.48,12.97,13.450000000000001,13.85,14.18,14.48,14.76,15.030000000000001,15.530000000000001,115.10000000000001,116.06,116.87,117.84,118.88,119.93,121.18,122.37,125.14,21.12,20.95,20.85,20.73,20.62,20.52,20.42,20.330000000000002,20.16,N/A,N/A -2012,3,19,20,30,101220,100040,98910,94.39,0,10.620000000000001,12.09,12.58,13,13.35,13.65,13.93,14.19,14.63,124.23,124.22,124.23,124.31,124.47,124.66,124.95,125.23,126.04,21.34,21.14,21.01,20.86,20.71,20.56,20.400000000000002,20.25,19.95,N/A,N/A -2012,3,19,21,30,101170,99990,98860,94.29,0,11.01,12.66,13.22,13.68,14.08,14.42,14.72,14.99,15.47,125.28,125.52,125.64,125.82000000000001,126.04,126.29,126.62,126.95,127.92,21.5,21.330000000000002,21.21,21.07,20.92,20.77,20.61,20.46,20.16,N/A,N/A -2012,3,19,22,30,101110,99930,98800,94.21000000000001,0,10.11,11.61,12.16,12.620000000000001,13.01,13.36,13.700000000000001,14.01,14.620000000000001,127.77,128.37,128.87,129.5,130.19,130.91,131.8,132.69,134.86,21.57,21.45,21.36,21.240000000000002,21.13,21.01,20.900000000000002,20.8,20.59,N/A,N/A -2012,3,19,23,30,101030,99860,98730,93.16,0,10.59,12.24,12.84,13.35,13.790000000000001,14.18,14.540000000000001,14.86,15.450000000000001,133.28,133.71,134.05,134.45,134.87,135.3,135.78,136.25,137.39000000000001,21.68,21.580000000000002,21.490000000000002,21.37,21.25,21.13,21,20.87,20.62,N/A,N/A -2012,3,20,0,30,100980,99810,98680,91.52,0,11.450000000000001,13.25,13.9,14.48,14.98,15.44,15.88,16.28,17.04,138.53,138.88,139.11,139.39000000000001,139.68,139.98,140.32,140.66,141.51,21.740000000000002,21.64,21.55,21.43,21.3,21.18,21.05,20.92,20.67,N/A,N/A -2012,3,20,1,30,100940,99770,98640,89.52,0,11.32,13.14,13.790000000000001,14.38,14.89,15.35,15.8,16.21,17.02,142.87,143.15,143.37,143.63,143.91,144.20000000000002,144.54,144.86,145.66,21.82,21.740000000000002,21.650000000000002,21.54,21.42,21.3,21.18,21.06,20.82,N/A,N/A -2012,3,20,2,30,100910,99740,98610,88.43,0,11.47,13.3,13.96,14.52,15.02,15.47,15.91,16.31,17.13,143.49,143.73,143.94,144.20000000000002,144.49,144.8,145.18,145.55,146.46,21.830000000000002,21.76,21.68,21.57,21.45,21.34,21.22,21.12,20.900000000000002,N/A,N/A -2012,3,20,3,30,100880,99710,98580,85.89,0,11.74,13.56,14.26,14.86,15.39,15.870000000000001,16.32,16.75,17.55,143.71,144.13,144.43,144.78,145.12,145.47,145.85,146.21,147.01,21.91,21.86,21.78,21.67,21.55,21.44,21.32,21.2,20.96,N/A,N/A -2012,3,20,4,30,100800,99640,98510,83.94,0,11.94,13.93,14.64,15.27,15.84,16.35,16.86,17.330000000000002,18.3,144.57,144.94,145.17000000000002,145.44,145.74,146.04,146.4,146.74,147.56,21.98,21.93,21.86,21.76,21.66,21.56,21.45,21.35,21.14,N/A,N/A -2012,3,20,5,30,100740,99580,98450,81.97,0,12.75,14.82,15.57,16.21,16.78,17.29,17.78,18.23,19.07,146.58,146.92000000000002,147.16,147.44,147.72,148.01,148.32,148.62,149.29,22.05,22.02,21.96,21.86,21.75,21.650000000000002,21.54,21.44,21.22,N/A,N/A -2012,3,20,6,30,100710,99550,98420,81.8,0,13.02,14.94,15.620000000000001,16.19,16.68,17.11,17.53,17.92,18.7,149.14000000000001,149.51,149.70000000000002,149.93,150.18,150.44,150.75,151.06,151.82,22.19,22.11,22.02,21.900000000000002,21.79,21.67,21.55,21.43,21.21,N/A,N/A -2012,3,20,7,30,100700,99530,98410,81.03,0,12.75,14.790000000000001,15.5,16.09,16.61,17.080000000000002,17.51,17.91,18.650000000000002,149.70000000000002,149.94,150.14000000000001,150.35,150.56,150.76,150.97,151.16,151.56,22.31,22.25,22.17,22.05,21.93,21.81,21.67,21.54,21.27,N/A,N/A -2012,3,20,8,30,100660,99500,98370,82.46000000000001,0,13.1,15.06,15.780000000000001,16.38,16.9,17.37,17.81,18.21,18.990000000000002,147.09,147.46,147.69,147.95000000000002,148.22,148.5,148.81,149.11,149.81,22.240000000000002,22.16,22.07,21.95,21.82,21.69,21.54,21.41,21.14,N/A,N/A -2012,3,20,9,30,100680,99510,98390,81.02,0,12.450000000000001,14.370000000000001,15.07,15.67,16.19,16.64,17.080000000000002,17.47,18.23,149.08,149.39000000000001,149.61,149.84,150.08,150.3,150.54,150.77,151.26,22.31,22.240000000000002,22.150000000000002,22.03,21.900000000000002,21.77,21.62,21.490000000000002,21.2,N/A,N/A -2012,3,20,10,30,100680,99520,98390,80.81,0,11.77,13.67,14.370000000000001,14.98,15.530000000000001,16.03,16.51,16.95,17.84,151.3,151.63,151.85,152.1,152.37,152.66,152.99,153.31,154.1,22.330000000000002,22.29,22.21,22.1,21.98,21.86,21.740000000000002,21.62,21.37,N/A,N/A -2012,3,20,11,30,100670,99510,98380,81.75,0,12.08,13.99,14.69,15.290000000000001,15.81,16.28,16.73,17.150000000000002,17.95,152.55,152.74,152.86,152.99,153.13,153.26,153.42000000000002,153.56,153.89000000000001,22.32,22.26,22.18,22.07,21.94,21.82,21.68,21.56,21.28,N/A,N/A -2012,3,20,12,30,100670,99500,98380,83.84,0,11.71,13.56,14.21,14.780000000000001,15.280000000000001,15.73,16.16,16.55,17.31,152.53,152.75,152.91,153.09,153.28,153.47,153.67000000000002,153.87,154.31,22.23,22.150000000000002,22.07,21.95,21.82,21.7,21.56,21.43,21.14,N/A,N/A -2012,3,20,13,30,100760,99590,98460,86.46000000000001,0,10.31,12.01,12.64,13.200000000000001,13.700000000000001,14.15,14.58,14.97,15.72,152.43,152.72,152.9,153.1,153.31,153.52,153.74,153.95000000000002,154.41,22.2,22.12,22.03,21.91,21.78,21.66,21.52,21.39,21.1,N/A,N/A -2012,3,20,14,30,100800,99630,98510,87.92,0,10.370000000000001,12.09,12.74,13.31,13.82,14.290000000000001,14.75,15.18,15.99,155.75,155.97,156.11,156.3,156.49,156.70000000000002,156.95000000000002,157.19,157.74,22.2,22.12,22.03,21.92,21.8,21.68,21.55,21.43,21.16,N/A,N/A -2012,3,20,15,30,100810,99650,98520,88.86,0,9.370000000000001,10.94,11.55,12.09,12.59,13.040000000000001,13.48,13.88,14.67,156.13,156.37,156.55,156.77,157,157.24,157.51,157.76,158.32,22.2,22.12,22.04,21.92,21.8,21.69,21.56,21.44,21.17,N/A,N/A -2012,3,20,16,30,100720,99560,98430,90.4,0,10.14,11.81,12.44,13.01,13.5,13.96,14.4,14.81,15.59,147.87,148.3,148.69,149.13,149.57,149.99,150.44,150.87,151.76,22.17,22.09,22.01,21.900000000000002,21.78,21.66,21.53,21.41,21.150000000000002,N/A,N/A -2012,3,20,17,30,100650,99480,98360,91.98,11.4,12.120000000000001,14.120000000000001,14.81,15.42,15.96,16.46,16.93,17.36,18.2,140.32,140.71,141.02,141.44,141.9,142.38,142.93,143.45000000000002,144.62,22.19,22.09,22,21.88,21.76,21.64,21.5,21.38,21.11,N/A,N/A -2012,3,20,18,30,100630,99480,98350,91.60000000000001,1.8,14.16,16.05,16.91,17.62,18.21,18.73,19.2,19.63,20.43,148.70000000000002,149,149.14000000000001,149.38,149.59,149.85,150.11,150.37,150.92000000000002,22.23,22.18,22.1,21.96,21.84,21.7,21.57,21.43,21.150000000000002,N/A,N/A -2012,3,20,19,30,100690,99520,98390,92.84,358.20000000000005,11.950000000000001,13.86,14.65,15.32,15.89,16.39,16.8,17.16,17.650000000000002,167.16,167.78,167.63,167.38,167.34,167.42000000000002,168.06,168.79,171.58,22.01,21.96,21.88,21.77,21.63,21.490000000000002,21.31,21.14,20.740000000000002,N/A,N/A -2012,3,20,20,30,100830,99660,98520,95.2,505,8.4,8.96,9.24,9.58,9.88,10.17,10.450000000000001,10.71,11.17,215.17000000000002,213.91,213.25,211.99,210.86,209.66,208.5,207.38,205.35,20.47,20.22,20.1,20.01,19.94,19.88,19.830000000000002,19.78,19.64,N/A,N/A -2012,3,20,21,30,100670,99490,98350,90.8,5.5,8.5,9.120000000000001,9.53,10.17,11.05,12.02,12.540000000000001,12.99,13.91,180.88,182.15,183.24,185.07,187.39000000000001,189.89000000000001,190.84,191.46,191.17000000000002,18.97,18.66,18.61,18.62,18.76,18.94,19.02,19.07,18.97,N/A,N/A -2012,3,20,22,30,100740,99570,98430,93.4,26,11.01,12.200000000000001,12.450000000000001,12.620000000000001,12.75,12.86,12.97,13.08,13.39,181.48,182.24,182.66,183.12,183.66,184.21,184.87,185.51,187.54,20.71,20.39,20.23,20.04,19.87,19.69,19.51,19.35,19.02,N/A,N/A -2012,3,20,23,30,100670,99500,98360,88.87,13.200000000000001,5.29,5.78,5.96,6.11,6.2700000000000005,6.44,6.68,6.92,7.74,224.83,223.93,223.5,223.01,222.47,221.94,221.3,220.68,219.39000000000001,20.66,20.35,20.18,19.990000000000002,19.81,19.64,19.45,19.29,18.96,N/A,N/A -2012,3,21,0,30,100690,99520,98380,89.55,20.5,1.78,1.84,1.87,1.9000000000000001,1.92,1.95,2,2.04,2.29,214.77,216.15,216.77,217.45000000000002,218.24,219.1,220.52,221.98000000000002,227.33,20.21,19.91,19.740000000000002,19.55,19.37,19.2,19.01,18.85,18.52,N/A,N/A -2012,3,21,1,30,100680,99500,98360,94.75,0.7000000000000001,6.38,6.88,6.92,6.9,6.86,6.8,6.72,6.640000000000001,6.45,341.64,342.12,342.45,342.8,343.15000000000003,343.49,343.89,344.27,345.39,19.86,19.490000000000002,19.31,19.12,18.93,18.75,18.57,18.400000000000002,18.16,N/A,N/A -2012,3,21,2,30,100710,99530,98380,93.36,24.200000000000003,9.57,10.21,10.290000000000001,10.28,10.23,10.17,10.08,9.99,9.74,344.83,344.98,344.85,344.68,344.42,344.14,343.54,342.88,340.23,19.1,18.68,18.5,18.32,18.150000000000002,18,17.85,17.72,17.580000000000002,N/A,N/A -2012,3,21,3,30,100850,99670,98530,82,0,8.700000000000001,9.540000000000001,9.74,9.88,9.99,10.08,10.18,10.28,10.57,348.41,348.65000000000003,348.67,348.67,348.66,348.66,348.64,348.63,348.61,19.18,18.78,18.6,18.42,18.23,18.06,17.89,17.73,17.42,N/A,N/A -2012,3,21,4,30,100910,99730,98580,78.73,0,7.47,8.11,8.290000000000001,8.39,8.47,8.52,8.58,8.63,8.75,350.1,350.12,350.17,350.21,350.23,350.24,350.27,350.29,350.35,19.38,18.990000000000002,18.81,18.61,18.42,18.240000000000002,18.05,17.88,17.53,N/A,N/A -2012,3,21,5,30,100920,99730,98590,76.8,0,8.53,9.24,9.41,9.5,9.56,9.6,9.63,9.66,9.700000000000001,338.33,338.31,338.3,338.29,338.28000000000003,338.28000000000003,338.28000000000003,338.29,338.32,19.37,18.97,18.79,18.580000000000002,18.39,18.21,18.01,17.84,17.46,N/A,N/A -2012,3,21,6,30,101000,99820,98670,74.98,0,7.11,7.640000000000001,7.76,7.82,7.87,7.9,7.930000000000001,7.96,8.03,339.56,339.72,339.75,339.77,339.8,339.83,339.89,339.94,340.1,19.25,18.87,18.68,18.490000000000002,18.29,18.11,17.92,17.740000000000002,17.38,N/A,N/A -2012,3,21,7,30,101140,99950,98800,72.96000000000001,0,5.66,6,6.11,6.17,6.21,6.25,6.2700000000000005,6.3,6.3500000000000005,322.94,324.18,325.17,326.06,326.89,327.64,328.44,329.17,330.7,18.8,18.42,18.23,18.04,17.86,17.68,17.490000000000002,17.32,16.96,N/A,N/A -2012,3,21,8,30,101080,99890,98730,64.41,2.2,7.03,7.47,7.57,7.61,7.640000000000001,7.66,7.66,7.67,7.66,7.15,7.1000000000000005,7,6.91,6.8,6.7,6.55,6.41,6.0200000000000005,17.45,16.98,16.77,16.57,16.36,16.18,15.97,15.790000000000001,15.41,N/A,N/A -2012,3,21,9,30,101180,99980,98810,73.5,2.6,6.7700000000000005,7.1000000000000005,7.140000000000001,7.140000000000001,7.12,7.1000000000000005,7.07,7.03,6.96,56.67,55.980000000000004,55.47,54.96,54.410000000000004,53.9,53.2,52.480000000000004,50.4,15.82,15.290000000000001,15.08,14.88,14.69,14.51,14.31,14.14,13.790000000000001,N/A,N/A -2012,3,21,10,30,101360,100150,98980,73.45,0.7000000000000001,4.09,4.21,4.21,4.19,4.16,4.12,4.07,4.0200000000000005,3.87,69.58,69.12,68.42,67.82000000000001,67.19,66.62,65.8,64.97,62.15,15.8,15.32,15.120000000000001,14.92,14.72,14.540000000000001,14.35,14.17,13.82,N/A,N/A -2012,3,21,11,30,101270,100070,98900,76.82000000000001,2.9000000000000004,4.53,4.59,4.6000000000000005,4.58,4.55,4.5200000000000005,4.47,4.43,4.33,30.43,29.39,28.82,28.21,27.48,26.8,25.85,24.86,22.17,15.74,15.25,15.05,14.85,14.65,14.47,14.27,14.09,13.72,N/A,N/A -2012,3,21,12,30,101290,100080,98920,77.06,11.4,4.23,4.4,4.41,4.4,4.38,4.3500000000000005,4.32,4.28,4.19,27.25,27.060000000000002,26.6,26.12,25.55,24.990000000000002,24.18,23.34,20.63,16.1,15.620000000000001,15.42,15.21,15.02,14.83,14.63,14.450000000000001,14.09,N/A,N/A -2012,3,21,13,30,101320,100110,98950,79.41,0.4,5.12,5.42,5.44,5.43,5.42,5.4,5.38,5.37,5.32,25.16,24.17,23.48,22.8,22.080000000000002,21.42,20.63,19.86,18.07,16.19,15.71,15.5,15.290000000000001,15.09,14.9,14.700000000000001,14.51,14.120000000000001,N/A,N/A -2012,3,21,14,30,101360,100160,99000,82.45,0,4.61,4.75,4.74,4.71,4.67,4.63,4.57,4.5200000000000005,4.39,64.16,63.660000000000004,63.29,62.93,62.57,62.230000000000004,61.800000000000004,61.39,60.300000000000004,16.28,15.8,15.6,15.39,15.19,15,14.81,14.620000000000001,14.25,N/A,N/A -2012,3,21,15,30,101390,100200,99030,76.46000000000001,0,4.42,4.62,4.62,4.6000000000000005,4.57,4.53,4.48,4.43,4.3100000000000005,68.72,68.05,68.07000000000001,68.08,68.1,68.11,68.11,68.12,68.09,16.85,16.41,16.2,16,15.8,15.610000000000001,15.41,15.23,14.85,N/A,N/A -2012,3,21,16,30,101400,100210,99040,70.04,0,3.59,3.66,3.64,3.6,3.5500000000000003,3.49,3.42,3.35,3.15,73.07000000000001,73.46000000000001,73.36,73.25,73.13,73,72.8,72.60000000000001,71.87,17.28,16.86,16.66,16.46,16.27,16.080000000000002,15.89,15.71,15.35,N/A,N/A -2012,3,21,17,30,101390,100190,99030,65.5,0,4.15,4.24,4.2,4.14,4.07,4.01,3.92,3.83,3.6,89.2,89.23,89.07000000000001,88.92,88.75,88.60000000000001,88.43,88.27,87.89,17.82,17.41,17.22,17.03,16.84,16.66,16.47,16.29,15.92,N/A,N/A -2012,3,21,18,30,101410,100210,99050,62.78,0,4.71,4.92,4.93,4.93,4.91,4.9,4.87,4.8500000000000005,4.8,123.16,123.69,124.03,124.34,124.64,124.92,125.23,125.51,126.15,18.2,17.79,17.6,17.400000000000002,17.2,17.01,16.81,16.62,16.23,N/A,N/A -2012,3,21,19,30,101380,100190,99030,59.03,0,5.12,5.37,5.4,5.4,5.4,5.38,5.36,5.33,5.28,143.87,144.28,144.49,144.72,144.94,145.16,145.4,145.63,146.17000000000002,18.61,18.21,18.02,17.82,17.62,17.43,17.23,17.04,16.65,N/A,N/A -2012,3,21,20,30,101350,100160,99000,56.19,0,5.67,6.0200000000000005,6.09,6.12,6.13,6.13,6.12,6.12,6.09,163.03,163.45000000000002,163.76,164.07,164.4,164.71,165.05,165.38,166.11,18.88,18.490000000000002,18.3,18.1,17.900000000000002,17.71,17.51,17.32,16.93,N/A,N/A -2012,3,21,21,30,101370,100180,99030,56.39,0,6.05,6.47,6.5600000000000005,6.61,6.640000000000001,6.66,6.67,6.68,6.69,163.98,164.64000000000001,165.03,165.41,165.78,166.12,166.48,166.81,167.52,19.12,18.740000000000002,18.56,18.36,18.16,17.97,17.77,17.580000000000002,17.19,N/A,N/A -2012,3,21,22,30,101380,100190,99030,56.61,0,6.0600000000000005,6.49,6.58,6.63,6.66,6.68,6.7,6.7,6.7,172.81,172.85,172.9,172.96,173.01,173.06,173.13,173.18,173.31,19.330000000000002,18.97,18.78,18.580000000000002,18.38,18.19,17.990000000000002,17.8,17.41,N/A,N/A -2012,3,21,23,30,101390,100200,99050,57.870000000000005,0,6.890000000000001,7.38,7.49,7.54,7.5600000000000005,7.57,7.57,7.57,7.55,164.78,165.07,165.23,165.39000000000001,165.54,165.67000000000002,165.83,165.97,166.29,19.47,19.1,18.92,18.72,18.52,18.330000000000002,18.14,17.95,17.56,N/A,N/A -2012,3,22,0,30,101390,100200,99050,58.83,0,6.8500000000000005,7.3500000000000005,7.47,7.54,7.57,7.6000000000000005,7.61,7.62,7.62,166.26,166.71,167.01,167.3,167.59,167.84,168.11,168.37,168.89000000000001,19.55,19.2,19.02,18.81,18.62,18.43,18.23,18.04,17.650000000000002,N/A,N/A -2012,3,22,1,30,101420,100240,99080,57.44,0,6.8,7.33,7.46,7.5200000000000005,7.57,7.6000000000000005,7.61,7.63,7.640000000000001,166.78,166.93,167,167.05,167.11,167.16,167.21,167.26,167.35,19.78,19.43,19.25,19.05,18.85,18.66,18.46,18.27,17.88,N/A,N/A -2012,3,22,2,30,101490,100300,99150,59.82,0,6.67,7.16,7.28,7.3500000000000005,7.38,7.41,7.42,7.43,7.43,170.24,170.54,170.74,170.94,171.11,171.28,171.45000000000002,171.61,171.94,19.75,19.41,19.23,19.03,18.84,18.650000000000002,18.45,18.26,17.87,N/A,N/A -2012,3,22,3,30,101510,100320,99170,59.34,0,6.55,7.03,7.13,7.18,7.21,7.22,7.23,7.23,7.21,168.9,169.03,169.15,169.27,169.38,169.47,169.58,169.67000000000002,169.89000000000001,19.84,19.5,19.32,19.12,18.93,18.740000000000002,18.54,18.36,17.96,N/A,N/A -2012,3,22,4,30,101510,100320,99170,62.160000000000004,0,6.7,7.2,7.3,7.34,7.36,7.38,7.38,7.38,7.3500000000000005,164.48,164.71,164.89000000000001,165.06,165.23,165.39000000000001,165.55,165.70000000000002,166.03,19.76,19.41,19.23,19.03,18.84,18.650000000000002,18.45,18.27,17.88,N/A,N/A -2012,3,22,5,30,101490,100300,99150,64.27,0,6.96,7.46,7.58,7.62,7.640000000000001,7.65,7.65,7.640000000000001,7.61,169.56,169.66,169.73,169.82,169.89000000000001,169.97,170.06,170.14000000000001,170.34,19.650000000000002,19.3,19.12,18.92,18.72,18.53,18.330000000000002,18.150000000000002,17.76,N/A,N/A -2012,3,22,6,30,101520,100330,99180,61.35,0,6.59,7.08,7.19,7.24,7.2700000000000005,7.28,7.28,7.28,7.2700000000000005,165.38,165.56,165.67000000000002,165.79,165.9,166.01,166.12,166.22,166.48,19.79,19.46,19.28,19.080000000000002,18.89,18.7,18.5,18.32,17.93,N/A,N/A -2012,3,22,7,30,101510,100320,99170,67.2,0,6.74,7.24,7.3500000000000005,7.390000000000001,7.4,7.41,7.4,7.390000000000001,7.36,165.6,165.65,165.68,165.71,165.74,165.77,165.81,165.84,165.94,19.69,19.35,19.17,18.97,18.78,18.59,18.39,18.21,17.82,N/A,N/A -2012,3,22,8,30,101480,100290,99140,72.04,0,6.4,6.82,6.9,6.92,6.91,6.9,6.87,6.84,6.76,170.1,170.13,170.18,170.23,170.29,170.34,170.4,170.46,170.70000000000002,19.56,19.22,19.04,18.85,18.650000000000002,18.47,18.28,18.1,17.740000000000002,N/A,N/A -2012,3,22,9,30,101480,100290,99140,73.16,0,7.3100000000000005,7.84,7.96,7.99,8.01,8.01,7.99,7.97,7.91,162.86,162.95000000000002,163.01,163.08,163.15,163.21,163.28,163.36,163.55,19.51,19.16,18.98,18.78,18.59,18.400000000000002,18.21,18.03,17.650000000000002,N/A,N/A -2012,3,22,10,30,101460,100270,99120,70.66,0,7.61,8.2,8.33,8.39,8.41,8.42,8.42,8.41,8.370000000000001,162.14000000000001,162.31,162.42000000000002,162.53,162.64000000000001,162.75,162.87,162.99,163.27,19.69,19.34,19.16,18.96,18.77,18.580000000000002,18.38,18.2,17.81,N/A,N/A -2012,3,22,11,30,101460,100280,99130,67.53,0,7.09,7.640000000000001,7.74,7.78,7.79,7.8,7.79,7.78,7.76,167.34,167.24,167.21,167.18,167.15,167.12,167.08,167.04,166.91,19.96,19.64,19.47,19.27,19.080000000000002,18.900000000000002,18.71,18.54,18.17,N/A,N/A -2012,3,22,12,30,101480,100300,99150,66.58,0,7.61,8.25,8.4,8.46,8.5,8.52,8.53,8.53,8.52,163.48,163.5,163.5,163.5,163.51,163.51,163.51,163.51,163.51,20.05,19.73,19.55,19.36,19.17,18.98,18.78,18.6,18.22,N/A,N/A -2012,3,22,13,30,101490,100300,99150,70.07000000000001,0,7.26,7.8500000000000005,7.98,8.03,8.06,8.07,8.06,8.05,8.01,165.17000000000002,165.3,165.4,165.52,165.63,165.74,165.86,165.98,166.24,20.02,19.7,19.52,19.330000000000002,19.13,18.95,18.75,18.57,18.18,N/A,N/A -2012,3,22,14,30,101530,100350,99200,67.36,0,7.76,8.46,8.63,8.72,8.78,8.82,8.84,8.86,8.870000000000001,160.75,160.74,160.75,160.76,160.76,160.77,160.77,160.78,160.79,20.240000000000002,19.93,19.76,19.57,19.37,19.19,18.990000000000002,18.81,18.43,N/A,N/A -2012,3,22,15,30,101530,100350,99200,66.59,0,6.97,7.55,7.69,7.75,7.79,7.8100000000000005,7.82,7.82,7.82,169.65,169.68,169.70000000000002,169.72,169.73,169.73,169.75,169.76,169.8,20.32,20.03,19.86,19.67,19.48,19.3,19.11,18.93,18.56,N/A,N/A -2012,3,22,16,30,101580,100390,99240,71.16,0,7.5,8.13,8.27,8.34,8.38,8.4,8.41,8.41,8.39,164.85,165.08,165.17000000000002,165.25,165.33,165.39000000000001,165.46,165.53,165.70000000000002,20.31,20.01,19.84,19.64,19.46,19.27,19.080000000000002,18.900000000000002,18.51,N/A,N/A -2012,3,22,17,30,101540,100350,99200,62.09,0,6.0200000000000005,6.53,6.65,6.7,6.74,6.7700000000000005,6.79,6.8100000000000005,6.83,184.47,184.3,184.16,184.01,183.86,183.72,183.56,183.41,183.09,20.71,20.44,20.27,20.09,19.900000000000002,19.72,19.52,19.35,18.97,N/A,N/A -2012,3,22,18,30,101560,100380,99230,64.43,0,5.13,5.55,5.64,5.68,5.71,5.73,5.73,5.73,5.73,186.93,187.01,187.05,187.08,187.1,187.14000000000001,187.18,187.23,187.37,20.72,20.44,20.27,20.080000000000002,19.89,19.71,19.51,19.330000000000002,18.94,N/A,N/A -2012,3,22,19,30,101540,100350,99210,64.33,0,5.21,5.65,5.74,5.8,5.84,5.87,5.9,5.92,5.96,193.45000000000002,193.18,192.99,192.78,192.57,192.36,192.13,191.92000000000002,191.44,20.81,20.52,20.35,20.16,19.97,19.79,19.59,19.41,19.03,N/A,N/A -2012,3,22,20,30,101510,100330,99180,66.39,0,4.93,5.3100000000000005,5.39,5.42,5.44,5.45,5.46,5.46,5.46,185.97,186.14000000000001,186.29,186.42000000000002,186.54,186.64000000000001,186.75,186.84,187.05,20.76,20.47,20.3,20.11,19.92,19.73,19.54,19.36,18.97,N/A,N/A -2012,3,22,21,30,101490,100310,99160,68.92,0,4.69,5.08,5.15,5.19,5.21,5.23,5.23,5.24,5.24,180.68,180.63,180.69,180.75,180.81,180.86,180.91,180.94,181.03,20.73,20.45,20.27,20.080000000000002,19.89,19.71,19.51,19.330000000000002,18.94,N/A,N/A -2012,3,22,22,30,101460,100280,99130,65,0,4.25,4.57,4.64,4.68,4.7,4.71,4.72,4.73,4.75,180.73,180.42000000000002,180.15,179.84,179.54,179.25,178.94,178.64000000000001,178.01,20.73,20.47,20.31,20.11,19.93,19.740000000000002,19.55,19.37,18.990000000000002,N/A,N/A -2012,3,22,23,30,101420,100240,99090,69.11,0,3.65,3.9,3.95,3.96,3.96,3.96,3.96,3.96,3.94,183.57,183.8,183.97,184.16,184.35,184.53,184.75,184.97,185.54,20.55,20.27,20.1,19.91,19.72,19.54,19.34,19.150000000000002,18.77,N/A,N/A -2012,3,23,0,30,101420,100240,99090,65.91,0,4.24,4.54,4.58,4.6000000000000005,4.6000000000000005,4.6000000000000005,4.59,4.59,4.58,166.74,166.91,166.96,167.01,167.05,167.07,167.11,167.15,167.19,20.53,20.26,20.09,19.900000000000002,19.71,19.53,19.34,19.16,18.79,N/A,N/A -2012,3,23,1,30,101440,100250,99110,67.73,0,5.04,5.43,5.51,5.54,5.55,5.5600000000000005,5.57,5.57,5.57,152.73,152.71,152.73,152.75,152.78,152.8,152.84,152.87,152.96,20.5,20.22,20.05,19.86,19.67,19.490000000000002,19.29,19.11,18.73,N/A,N/A -2012,3,23,2,30,101450,100260,99120,66.51,0,3.89,4.16,4.2,4.21,4.21,4.21,4.21,4.2,4.21,157.21,157.24,157.27,157.31,157.34,157.38,157.44,157.5,157.82,20.490000000000002,20.21,20.04,19.85,19.66,19.48,19.29,19.11,18.75,N/A,N/A -2012,3,23,3,30,101460,100280,99130,72.08,0,5.3100000000000005,5.7,5.76,5.79,5.8,5.8,5.79,5.78,5.7700000000000005,153.18,153.23,153.25,153.26,153.28,153.3,153.31,153.34,153.41,20.330000000000002,20.03,19.86,19.67,19.48,19.3,19.1,18.92,18.55,N/A,N/A -2012,3,23,4,30,101460,100270,99130,75.94,0,5.61,6.04,6.13,6.16,6.18,6.19,6.19,6.19,6.2,151.85,151.91,151.92000000000002,151.93,151.95000000000002,151.97,152,152.02,152.08,20.26,19.95,19.78,19.59,19.400000000000002,19.21,19.01,18.830000000000002,18.45,N/A,N/A -2012,3,23,5,30,101480,100300,99150,77.53,0,4.72,5.0200000000000005,5.07,5.07,5.07,5.0600000000000005,5.05,5.04,5.09,158,158,158.04,158.08,158.13,158.18,158.26,158.34,158.94,20.2,19.900000000000002,19.73,19.53,19.34,19.16,18.97,18.79,18.47,N/A,N/A -2012,3,23,6,30,101490,100300,99160,76.42,0,4.3500000000000005,4.61,4.64,4.64,4.64,4.62,4.61,4.6000000000000005,4.5600000000000005,164.3,164.38,164.4,164.43,164.49,164.55,164.65,164.76,166.18,20.2,19.89,19.72,19.52,19.330000000000002,19.150000000000002,18.95,18.78,18.54,N/A,N/A -2012,3,23,7,30,101510,100330,99180,78.71000000000001,0,4.53,4.8,4.8500000000000005,4.86,4.86,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.89,168.67000000000002,168.73,168.74,168.77,168.8,168.84,168.91,169,169.75,20.16,19.85,19.68,19.490000000000002,19.3,19.12,18.92,18.740000000000002,18.46,N/A,N/A -2012,3,23,8,30,101510,100330,99180,77.8,0,2.7,2.7800000000000002,2.7800000000000002,2.7600000000000002,2.7800000000000002,2.81,2.93,3.06,3.5,189.44,189.89000000000001,190.08,190.38,190.06,189.42000000000002,186,182.22,173.85,20.14,19.84,19.68,19.51,19.47,19.5,19.79,20.11,20.75,N/A,N/A -2012,3,23,9,30,101530,100340,99200,80.01,0,2.84,2.94,2.94,2.91,2.89,2.87,2.7800000000000002,2.69,2.73,178.23,178.42000000000002,178.47,178.55,178.86,179.28,179.97,180.63,182.41,20.080000000000002,19.78,19.62,19.44,19.29,19.150000000000002,19.34,19.580000000000002,20.45,N/A,N/A -2012,3,23,10,30,101530,100350,99200,84.33,0,2.15,2.2,2.19,2.16,2.12,2.07,1.82,1.59,1.52,195.87,196.22,196.37,196.58,197.36,198.39000000000001,203.6,208.35,210.47,19.89,19.580000000000002,19.41,19.22,19.080000000000002,18.97,19.25,19.6,20.95,N/A,N/A -2012,3,23,11,30,101560,100380,99230,88.19,0,1.82,1.86,1.85,1.84,1.82,1.8,1.68,1.54,1.07,196.86,196.95000000000002,196.99,197.07,197.21,197.38,199.74,202.58,219.33,19.72,19.400000000000002,19.23,19.04,18.85,18.67,18.56,18.490000000000002,19.04,N/A,N/A -2012,3,23,12,30,101640,100450,99300,87.69,0,1.43,1.47,1.47,1.46,1.46,1.45,1.45,1.44,1.42,326.67,326.71,326.79,326.88,326.97,327.07,327.19,327.31,327.76,19.66,19.34,19.17,18.97,18.78,18.59,18.39,18.21,17.830000000000002,N/A,N/A -2012,3,23,13,30,101650,100460,99310,84.52,0,3.45,3.59,3.59,3.56,3.54,3.5100000000000002,3.47,3.44,3.35,334.68,334.77,334.8,334.82,334.83,334.83,334.84000000000003,334.85,334.84000000000003,19.61,19.27,19.09,18.900000000000002,18.71,18.52,18.32,18.14,17.76,N/A,N/A -2012,3,23,14,30,101700,100510,99350,94.52,0,4.73,4.83,4.78,4.69,4.58,4.47,4.32,4.18,3.77,356.65000000000003,357.07,357.37,357.71,358.08,358.45,358.96,359.44,0.86,18.73,18.34,18.16,17.97,17.78,17.61,17.42,17.26,16.97,N/A,N/A -2012,3,23,15,30,101750,100550,99390,99.41,0,4.1,4.14,4.0600000000000005,3.95,3.75,3.5300000000000002,3.12,2.8000000000000003,2.67,4.94,5.28,5.53,5.8100000000000005,6.19,6.58,7.96,9.48,15.280000000000001,17.16,16.79,16.63,16.47,16.31,16.15,16.5,16.82,16.47,N/A,N/A -2012,3,23,16,30,101750,100550,99390,99.4,0,3.21,3.3000000000000003,3.29,3.27,3.25,3.24,3.3000000000000003,3.38,3.73,28.13,28.5,28.68,28.88,29.13,29.38,28.7,27.310000000000002,17.740000000000002,17.23,16.86,16.71,16.55,16.37,16.2,15.9,15.780000000000001,17.5,N/A,N/A -2012,3,23,17,30,101720,100520,99370,94.08,0,2.57,2.69,2.73,2.7800000000000002,2.92,3.12,3.58,4.01,3.71,36.01,35.26,34.7,34,32.69,31.09,28.7,26.36,24.7,17.79,17.43,17.26,17.1,17.01,16.95,17.400000000000002,17.830000000000002,17.98,N/A,N/A -2012,3,23,18,30,101720,100520,99370,84.05,0,2.48,2.56,2.59,2.63,2.85,3.17,3.45,3.67,3.58,36.24,35.83,35.36,34.660000000000004,32.76,30.14,27.77,25.68,23.67,18.89,18.55,18.400000000000002,18.26,18.240000000000002,18.29,18.47,18.63,18.51,N/A,N/A -2012,3,23,19,30,101700,100510,99360,79.81,0,1.82,1.87,1.87,1.8900000000000001,2.09,2.4,2.64,2.84,3.19,66.65,65.35,63.730000000000004,61.11,53.26,41.81,35.480000000000004,30.55,23.56,19.580000000000002,19.26,19.12,18.98,19.09,19.32,19.46,19.56,19.53,N/A,N/A -2012,3,23,20,30,101650,100460,99310,76.17,0,2.52,2.54,2.5,2.43,2.32,2.19,1.97,1.78,1.99,121.91,120.93,120.05,118.8,115.56,111.56,90.39,71.27,51.51,20.080000000000002,19.76,19.6,19.43,19.3,19.19,19.44,19.71,19.98,N/A,N/A -2012,3,23,21,30,101610,100430,99280,77.11,0,2.14,2.16,2.12,2.04,1.81,1.54,1.41,1.33,1.6400000000000001,139.26,138.53,137.51,135.71,124.4,110.42,93.08,77.57000000000001,49.1,20.31,20,19.86,19.72,19.81,20.02,20.3,20.56,20.81,N/A,N/A -2012,3,23,22,30,101580,100400,99250,78.63,0,2.3000000000000003,2.32,2.25,2.13,1.85,1.54,1.3900000000000001,1.3,1.4000000000000001,148.20000000000002,147.43,145.88,142.78,128.97,112.57000000000001,96.7,83.06,56.15,20.43,20.14,20.03,19.96,20.25,20.72,21.07,21.36,21.57,N/A,N/A -2012,3,23,23,30,101540,100360,99210,78.34,0,2.48,2.48,2.37,2.16,1.92,1.68,1.51,1.3800000000000001,1.5,144.29,143.41,139.93,132.58,122.83,112.88,97.91,84.47,56.97,20.490000000000002,20.22,20.240000000000002,20.47,20.89,21.42,21.73,21.97,22.22,N/A,N/A -2012,3,24,0,30,101510,100330,99190,79.12,0,2.39,2.37,2.15,1.78,1.45,1.18,1.05,0.97,1.3,159.32,157.61,151.66,140.51,127.12,114.38,91.94,71.46000000000001,36.45,20.46,20.31,20.54,21.16,21.740000000000002,22.28,22.61,22.86,23.2,N/A,N/A -2012,3,24,1,30,101520,100340,99200,84.69,0,4.49,4.61,4.53,4.4,4.0600000000000005,3.65,3.19,2.79,2.0300000000000002,158.24,157.9,156.77,154.29,150.9,147.4,142.77,138.65,123.95,20.330000000000002,20.06,20.01,20.06,20.45,21.01,21.490000000000002,21.92,22.54,N/A,N/A -2012,3,24,2,30,101520,100340,99200,83.09,0,3.56,3.68,3.68,3.71,3.52,3.22,2.92,2.66,2.19,163.13,162.65,160.48,155.57,150.97,146.98,142.26,138.05,127.02,20.45,20.240000000000002,20.43,21.07,21.67,22.23,22.48,22.650000000000002,22.900000000000002,N/A,N/A -2012,3,24,3,30,101520,100330,99190,84.13,0,4.04,4.18,4.26,4.47,4.39,4.16,3.8200000000000003,3.5300000000000002,2.93,169.05,168.89000000000001,167.84,165.48,162.34,159.1,156.51,154.35,147.52,20.44,20.19,20.240000000000002,20.52,21.14,21.900000000000002,22.19,22.38,22.54,N/A,N/A -2012,3,24,4,30,101510,100330,99190,84.64,0,3.92,4.08,4.17,4.39,4.3500000000000005,4.18,3.94,3.72,3.18,177.77,177.5,176.68,174.92000000000002,172.72,170.44,167.67000000000002,165.15,159,20.38,20.11,20.04,20.07,20.47,21.06,21.5,21.87,22.21,N/A,N/A -2012,3,24,5,30,101490,100310,99170,85.7,0,2.92,3,3.14,3.5500000000000003,3.79,3.92,3.71,3.49,3.0300000000000002,191.36,191.23000000000002,189.79,186.03,181.70000000000002,177.35,175.22,173.78,170.76,20.36,20.09,20.1,20.34,20.92,21.64,21.97,22.19,22.21,N/A,N/A -2012,3,24,6,30,101520,100330,99190,87.51,0,2.43,2.48,2.6,2.92,3.09,3.16,3.0700000000000003,2.95,2.62,208.63,208.59,206.97,202.84,197.68,192.16,187.41,183.49,179.14000000000001,20.35,20.080000000000002,20.11,20.38,20.95,21.66,22.080000000000002,22.39,22.46,N/A,N/A -2012,3,24,7,30,101540,100360,99220,86.66,0,2.66,2.71,2.73,2.81,2.8000000000000003,2.72,2.48,2.24,1.83,233.28,232.71,231.24,227.93,224.6,221.47,218.09,215.16,206.03,20.42,20.13,20.03,20,20.41,21.05,21.740000000000002,22.36,22.62,N/A,N/A -2012,3,24,8,30,101550,100360,99220,87.28,0,2.9,3.0100000000000002,3.02,3.0300000000000002,3.15,3.3200000000000003,3.49,3.63,3.7,225.44,225.02,224.52,223.67000000000002,220.95000000000002,217.23000000000002,214.22,211.57,207.67000000000002,20.43,20.13,19.98,19.81,19.85,20,20.25,20.490000000000002,20.92,N/A,N/A -2012,3,24,9,30,101580,100400,99250,88.87,0,3.08,3.23,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.2800000000000002,3.31,3.59,243.54,243.32,243.17000000000002,243.02,242.84,242.65,242.37,242.04,239.11,20.37,20.06,19.89,19.69,19.51,19.330000000000002,19.14,18.97,19.1,N/A,N/A -2012,3,24,10,30,101600,100420,99270,96.05,0,4.25,4.46,4.47,4.44,4.39,4.3500000000000005,4.2700000000000005,4.2,4.05,250.12,250.46,250.76000000000002,251.09,251.43,251.77,252.34,252.86,252.74,20.07,19.72,19.54,19.330000000000002,19.150000000000002,18.98,18.84,18.72,18.43,N/A,N/A -2012,3,24,11,30,101640,100450,99290,99.48,0,3.41,3.5500000000000003,3.5700000000000003,3.5700000000000003,3.56,3.56,3.56,3.56,3.42,241.96,242.95000000000002,243.56,244.28,245.22,246.18,247.79,249.5,257.14,17.84,17.47,17.31,17.16,17,16.84,16.63,16.43,16.240000000000002,N/A,N/A -2012,3,24,12,30,101660,100470,99310,99.34,0,3.98,4.19,4.25,4.2700000000000005,4.29,4.3100000000000005,4.32,4.34,4.3500000000000005,264.49,265.81,266.37,266.84000000000003,267.24,267.58,267.9,268.18,268.96,18.240000000000002,17.87,17.71,17.56,17.41,17.27,17.1,16.94,16.43,N/A,N/A -2012,3,24,13,30,101680,100490,99330,99.48,0,5.05,5.08,4.96,4.79,4.6000000000000005,4.42,4.17,3.95,3.33,301.19,299.88,299.04,298.13,297.07,296.06,294.42,292.73,285.18,17.8,17.400000000000002,17.240000000000002,17.12,17,16.89,16.77,16.65,16.4,N/A,N/A -2012,3,24,14,30,101730,100530,99370,99.48,0,5.01,5.0600000000000005,4.95,4.8100000000000005,4.64,4.47,4.26,4.0600000000000005,3.5100000000000002,306.57,306.53000000000003,306.46,306.36,306.17,305.96,305.5,304.98,302.52,17.650000000000002,17.26,17.11,16.98,16.85,16.73,16.62,16.5,16.18,N/A,N/A -2012,3,24,15,30,101730,100530,99370,96,0,4.88,5.01,4.97,4.9,4.82,4.76,4.7,4.66,4.68,323.56,322.71,322.12,321.48,320.78000000000003,320.1,320.17,321.11,330.97,17.3,16.87,16.68,16.490000000000002,16.3,16.13,16.02,16.07,17.72,N/A,N/A -2012,3,24,16,30,101720,100520,99360,95.72,0,4.2,4.33,4.32,4.28,4.24,4.19,4.14,4.09,4.1,336.83,336.85,336.84000000000003,336.83,336.83,336.82,336.79,337.36,346.38,17.86,17.45,17.26,17.07,16.88,16.69,16.47,16.34,17.400000000000002,N/A,N/A -2012,3,24,17,30,101700,100510,99350,93.04,0,1.78,1.83,1.83,1.83,1.83,1.83,1.82,1.83,2.3000000000000003,325.56,325.53000000000003,325.57,325.66,325.83,326.03000000000003,326.32,327.2,339.06,18.36,17.97,17.79,17.6,17.41,17.240000000000002,17.05,16.91,17.18,N/A,N/A -2012,3,24,18,30,101680,100490,99340,89.01,0,1.18,1.26,1.3,1.36,1.52,1.74,2.3000000000000003,2.98,3.63,332.09000000000003,333.18,333.96,334.97,336.92,339.45,343.31,347.82,353.73,19.01,18.650000000000002,18.48,18.31,18.19,18.1,18.32,18.580000000000002,19.45,N/A,N/A -2012,3,24,19,30,101650,100470,99320,86.75,0,1.8900000000000001,1.85,1.78,1.68,1.54,1.3900000000000001,1.07,0.87,1.72,184,184.76,185.42000000000002,186.26,187.86,189.58,265.28000000000003,321.91,339.37,19.69,19.34,19.16,18.98,18.8,18.64,18.7,18.8,19.28,N/A,N/A -2012,3,24,20,30,101610,100420,99280,84.51,0,3.47,3.45,3.2600000000000002,2.96,2.2600000000000002,1.61,1.36,1.21,1.54,195,195.64000000000001,196.77,198.73000000000002,211.3,224.19,250.19,272.95,310.31,20.02,19.69,19.55,19.42,19.46,19.59,19.8,20,20.75,N/A,N/A -2012,3,24,21,30,101570,100390,99240,80.98,0,2.95,2.8000000000000003,2.38,1.74,1.46,1.31,1.37,1.46,1.84,193.66,194.9,202.19,215,230.22,245.88,264.82,283.01,301.91,20.6,20.35,20.42,20.72,21.1,21.5,21.76,21.98,22.1,N/A,N/A -2012,3,24,22,30,101530,100350,99210,74.68,0,3.0300000000000002,2.85,2.2,1.28,0.79,0.52,0.5,0.54,1.1500000000000001,169.26,169.74,172.73,177.38,194.01,210.13,251.91,295.2,323.32,21.18,21.05,21.28,21.900000000000002,22.26,22.490000000000002,22.54,22.55,22.56,N/A,N/A -2012,3,24,23,30,101510,100330,99200,71.47,0,3.63,3.5500000000000003,3.2600000000000002,2.82,2.36,1.95,1.53,1.21,0.7000000000000001,178.01,177.32,177.14000000000001,177.25,178.99,181.15,187.25,192.8,221.72,21.5,21.84,22.150000000000002,22.59,22.86,23.02,23.1,23.150000000000002,23.04,N/A,N/A -2012,3,25,0,30,101500,100320,99180,77.82000000000001,0,3.74,3.95,3.77,3.38,2.96,2.58,2.16,1.83,1.1500000000000001,183.31,183.64000000000001,183.82,184.04,184.66,185.37,187.23,188.99,198.06,21.38,21.61,22.06,22.88,23.27,23.43,23.44,23.42,23.17,N/A,N/A -2012,3,25,1,30,101530,100350,99210,70.16,0,4.5,4.9,4.89,4.73,4.43,4.1,3.65,3.25,2.38,193.08,192.96,192.49,191.59,191.35,191.44,191.85,192.26,194.13,21.55,21.42,21.55,21.92,22.19,22.41,22.68,22.92,23.04,N/A,N/A -2012,3,25,2,30,101550,100370,99230,73.59,0,4.05,4.41,4.58,4.83,4.71,4.42,4.0600000000000005,3.74,2.93,205.16,204.6,203.39000000000001,200.98000000000002,199.64000000000001,198.96,198.23000000000002,197.61,196.75,21.42,21.31,21.41,21.73,22.01,22.26,22.43,22.56,22.75,N/A,N/A -2012,3,25,3,30,101560,100380,99250,77.47,0,2.91,3.12,3.2,3.35,3.24,3.0100000000000002,2.7,2.43,1.83,226.08,225.53,223.68,219.74,216.19,213.21,212.17000000000002,211.73000000000002,215.05,21.25,21.150000000000002,21.38,21.990000000000002,22.47,22.85,22.990000000000002,23.06,22.98,N/A,N/A -2012,3,25,4,30,101580,100400,99260,78.85000000000001,0,2.98,3.11,3.22,3.5,3.6,3.6,3.38,3.16,2.62,228.78,228.71,227.83,225.69,222.54,219.02,216.88,215.33,214.17000000000002,21.19,20.990000000000002,21.1,21.52,21.990000000000002,22.47,22.68,22.82,22.72,N/A,N/A -2012,3,25,5,30,101590,100410,99270,84.07000000000001,0,3.23,3.37,3.46,3.7,3.81,3.84,3.62,3.38,2.74,235.42000000000002,235.51,235.58,235.76,234.15,231.76,229.97,228.6,227.94,21.01,20.76,20.73,20.84,21.13,21.5,21.88,22.22,22.62,N/A,N/A -2012,3,25,6,30,101610,100430,99290,86.89,0,3.18,3.38,3.64,4.2700000000000005,4.51,4.53,4.2700000000000005,4,3.59,254.02,252.71,250.28,245.22,241.75,239.47,239,238.92000000000002,237.77,21.05,20.830000000000002,20.92,21.28,21.72,22.18,22.18,22.080000000000002,21.900000000000002,N/A,N/A -2012,3,25,7,30,101630,100450,99310,89.05,0,3.36,3.5,3.5100000000000002,3.52,3.33,3.0300000000000002,3.09,3.21,3.22,246.47,246.79,247.39000000000001,248.61,251.64000000000001,255.51000000000002,256.08,255.75,250.66,21.04,20.78,20.66,20.580000000000002,20.47,20.35,20.51,20.740000000000002,21.89,N/A,N/A -2012,3,25,8,30,101640,100460,99320,91.17,0,3.52,3.63,3.67,3.8000000000000003,3.96,4.14,4.08,3.98,3.3200000000000003,256.98,256.95,256.89,256.75,257.12,257.75,259.42,261.05,263.98,21.02,20.72,20.59,20.47,20.650000000000002,20.98,21.35,21.68,21.85,N/A,N/A -2012,3,25,9,30,101640,100460,99320,94.44,0,3.18,3.27,3.27,3.2600000000000002,3.18,3.0700000000000003,2.97,2.87,2.4,270.15,270.17,270.24,270.37,271.76,273.72,273.46,272.83,272.53000000000003,20.89,20.59,20.42,20.240000000000002,20.240000000000002,20.35,21.02,21.72,22.48,N/A,N/A -2012,3,25,10,30,101660,100480,99340,95.42,0,3.21,3.35,3.38,3.39,3.49,3.63,3.5500000000000003,3.42,2.96,263.91,263.58,263.43,263.33,263.6,264.08,266.98,270.06,279.75,20.740000000000002,20.42,20.240000000000002,20.05,19.86,19.68,20,20.41,21.35,N/A,N/A -2012,3,25,11,30,101700,100510,99360,99.44,0,3.58,3.6,3.52,3.4,3.18,2.94,2.75,2.63,2.95,258.74,259.98,261.07,262.57,267.38,273.1,288.78000000000003,302.28000000000003,307.2,18.77,18.42,18.25,18.07,17.77,17.44,18.34,19.400000000000002,22.22,N/A,N/A -2012,3,25,12,30,101720,100530,99380,99.32000000000001,0,3.12,3.2,3.19,3.16,3.12,3.0700000000000003,3,2.94,2.98,282.90000000000003,281.76,280.67,279.26,277.33,275.31,287.21,299,309.29,18.86,18.52,18.35,18.150000000000002,17.79,17.37,19.28,21.18,21.37,N/A,N/A -2012,3,25,13,30,101750,100560,99410,99.34,0.4,3.19,3.25,3.23,3.19,3.16,3.13,3.08,3.06,3.45,276.67,275.88,275.3,274.61,273.29,271.79,282.17,292.88,310.38,18.75,18.41,18.26,18.09,17.8,17.490000000000002,18.1,18.8,20.240000000000002,N/A,N/A -2012,3,25,14,30,101790,100600,99450,99.45,0,1.58,1.61,1.59,1.57,1.55,1.54,1.84,2.21,3.0500000000000003,285.59000000000003,286.55,287.05,287.48,287.44,287.21,300.85,316.3,326.82,18.35,18,17.85,17.7,17.52,17.35,17.89,18.5,19.82,N/A,N/A -2012,3,25,15,30,101800,100610,99460,99.31,0,1.72,1.76,1.76,1.75,1.77,1.79,1.95,2.18,3.37,285.5,288.48,290.83,293.73,297.25,300.91,308.7,316.84000000000003,332.81,18.62,18.29,18.150000000000002,18.02,17.88,17.740000000000002,17.53,17.56,20.04,N/A,N/A -2012,3,25,16,30,101790,100600,99450,99.28,0,2.4,2.46,2.44,2.42,2.37,2.33,2.46,2.63,3.45,280.72,282.16,282.97,283.66,284.45,285.24,298.54,313.03000000000003,331.99,19.16,18.87,18.75,18.61,18.48,18.36,18.080000000000002,17.89,19.48,N/A,N/A -2012,3,25,17,30,101790,100600,99450,99.32000000000001,0,2.24,2.27,2.23,2.19,2.16,2.15,2.23,2.34,3,261,263.23,265.47,268.63,275.29,283.40000000000003,297.11,310.31,326.96,19.02,18.71,18.57,18.43,18.28,18.13,18.25,18.46,20.01,N/A,N/A -2012,3,25,18,30,101760,100570,99430,95.54,0,2,2.0100000000000002,2,2.0100000000000002,2.2,2.5100000000000002,2.81,3.09,3.39,261.17,264.15,268.13,274.97,286.36,301.17,307.88,312.66,315.5,19.67,19.330000000000002,19.2,19.11,19.37,19.81,20.37,20.87,20.81,N/A,N/A -2012,3,25,19,30,101740,100560,99410,91.3,0,2.17,2.12,2.0100000000000002,1.86,1.86,1.92,2.07,2.22,2.38,222.6,224.72,233.26,250.55,265.11,278.63,287.09000000000003,294.09000000000003,298.57,20.63,20.330000000000002,20.330000000000002,20.490000000000002,20.77,21.11,21.25,21.35,21.42,N/A,N/A -2012,3,25,20,30,101680,100500,99360,87.8,0,3.0300000000000002,3.02,2.92,2.79,2.66,2.5500000000000003,2.5300000000000002,2.52,2.57,210.62,211.48000000000002,214.15,219.61,225.04,230.21,233.61,236.36,240.53,21.35,21.09,21.13,21.39,21.63,21.84,21.88,21.87,21.830000000000002,N/A,N/A -2012,3,25,21,30,101640,100470,99330,85.38,0,3.54,3.58,3.54,3.52,3.43,3.3200000000000003,3.21,3.12,2.86,202.48000000000002,202.92000000000002,204.49,207.83,212.14000000000001,216.71,220.78,224.28,232.21,21.82,21.55,21.53,21.67,21.89,22.13,22.14,22.1,22.01,N/A,N/A -2012,3,25,22,30,101620,100440,99300,84.52,0,4.75,4.96,4.93,4.9,4.75,4.54,4.2700000000000005,4.03,3.48,193.97,194.13,194.47,195.15,197.35,200.22,202.51,204.37,207.31,21.94,21.68,21.580000000000002,21.54,21.73,22.05,22.19,22.28,22.22,N/A,N/A -2012,3,25,23,30,101610,100430,99300,83.76,0,4.4,4.75,4.84,4.95,4.8,4.54,4.25,4,3.45,187.65,188.08,189.35,192.01,194.32,196.27,196.78,196.95000000000002,195.72,21.8,21.63,21.740000000000002,22.12,22.45,22.740000000000002,22.77,22.740000000000002,22.72,N/A,N/A -2012,3,26,0,30,101600,100420,99290,85.84,0,4.07,4.79,5.04,5.19,5.08,4.8500000000000005,4.6000000000000005,4.37,3.86,189.64000000000001,190.37,191.66,194.15,195.82,196.94,197.04,196.92000000000002,195.02,21.650000000000002,21.7,21.93,22.400000000000002,22.67,22.84,22.84,22.8,22.76,N/A,N/A -2012,3,26,1,30,101610,100440,99300,86.03,0,3.96,4.28,4.42,4.65,4.67,4.58,4.37,4.16,3.74,184.43,184.72,185.66,187.76,190.52,193.45000000000002,195.01,196.04,193.99,21.61,21.400000000000002,21.47,21.81,22.19,22.59,22.71,22.76,22.650000000000002,N/A,N/A -2012,3,26,2,30,101640,100460,99320,86.85000000000001,0,3.31,3.58,3.74,4.0200000000000005,4.08,4.0200000000000005,3.87,3.71,3.33,188.58,188.81,189.73,191.81,194.99,198.56,201.67000000000002,204.24,204.6,21.56,21.36,21.42,21.71,22.04,22.400000000000002,22.55,22.64,22.53,N/A,N/A -2012,3,26,3,30,101650,100470,99330,87.65,0,3.6,3.81,3.94,4.22,4.39,4.48,4.43,4.34,3.97,205.62,205.63,205.49,205.22,205.64000000000001,206.42000000000002,207.95000000000002,209.43,211.03,21.48,21.240000000000002,21.18,21.21,21.41,21.69,21.89,22.05,22.11,N/A,N/A -2012,3,26,4,30,101650,100470,99330,88.66,0,3.42,3.6,3.64,3.72,3.88,4.08,4.2,4.28,3.92,224.34,224.18,223.92000000000002,223.47,222.56,221.39000000000001,220.83,220.47,220.6,21.37,21.1,20.95,20.8,20.830000000000002,20.96,21.27,21.57,21.92,N/A,N/A -2012,3,26,5,30,101650,100470,99330,88.37,0,3.8200000000000003,4.01,4.04,4.1,4.3100000000000005,4.61,4.75,4.8500000000000005,4.54,234.65,234.68,234.6,234.43,233.54,232.24,231.21,230.39000000000001,232.03,21.29,21.01,20.86,20.72,20.71,20.78,21.01,21.25,21.64,N/A,N/A -2012,3,26,6,30,101680,100500,99360,87.47,0,3.49,3.63,3.64,3.66,3.9,4.28,4.49,4.64,4.17,239.82,239.74,239.65,239.5,238.56,237.14000000000001,236.19,235.46,237.24,21.330000000000002,21.04,20.89,20.73,20.78,20.95,21.36,21.75,21.94,N/A,N/A -2012,3,26,7,30,101700,100520,99380,85.21000000000001,0,3.33,3.48,3.52,3.58,3.9,4.38,4.48,4.49,4.18,249.14000000000001,248.91,248.66,248.25,246.53,243.98000000000002,243.07,242.62,243.20000000000002,21.45,21.17,21.03,20.89,21.06,21.38,21.68,21.93,21.98,N/A,N/A -2012,3,26,8,30,101700,100520,99380,84.98,0,2.89,3,3,2.99,3.2,3.5700000000000003,3.84,4.07,3.99,255.96,255.88,255.74,255.51000000000002,253.5,250.3,248.3,246.73000000000002,248.05,21.44,21.14,20.98,20.81,20.82,20.93,21.22,21.51,21.7,N/A,N/A -2012,3,26,9,30,101720,100530,99390,84.73,0,2.48,2.61,2.63,2.65,2.73,2.83,3.19,3.59,3.8000000000000003,250.18,249.86,249.62,249.27,248.47,247.45000000000002,244.78,241.88,241.57,21.41,21.12,20.96,20.78,20.63,20.5,20.61,20.77,21.14,N/A,N/A -2012,3,26,10,30,101730,100550,99410,84.85000000000001,0,2.85,3,3.02,3.0300000000000002,3.0500000000000003,3.08,3.21,3.38,3.99,252.47,252.19,252.02,251.79,251.46,251.09,249.94,248.68,245.74,21.37,21.07,20.900000000000002,20.72,20.54,20.38,20.25,20.150000000000002,20.490000000000002,N/A,N/A -2012,3,26,11,30,101750,100570,99430,84.73,0,2.42,2.5300000000000002,2.54,2.54,2.54,2.54,2.5500000000000003,2.58,2.96,249.3,249.39000000000001,249.42000000000002,249.43,249.44,249.45000000000002,249.31,249.16,248.01000000000002,21.31,21,20.830000000000002,20.650000000000002,20.46,20.29,20.11,19.96,19.900000000000002,N/A,N/A -2012,3,26,12,30,101780,100600,99460,85.76,0,1.9100000000000001,1.99,1.99,1.99,1.98,1.97,1.96,1.94,1.9100000000000001,246.07,246.17000000000002,246.31,246.43,246.57,246.71,246.88,247.06,248.03,21.22,20.900000000000002,20.73,20.54,20.35,20.16,19.97,19.79,19.44,N/A,N/A -2012,3,26,13,30,101810,100630,99480,87.28,0,1.77,1.83,1.82,1.81,1.8,1.79,1.78,1.76,1.75,246.12,245.87,245.75,245.6,245.41,245.22,244.93,244.63,243.28,21.13,20.81,20.64,20.45,20.25,20.07,19.88,19.7,19.35,N/A,N/A -2012,3,26,14,30,101850,100670,99520,90.03,0,1.47,1.51,1.5,1.49,1.48,1.46,1.45,1.43,1.4000000000000001,268.74,267.41,266.52,265.6,264.64,263.71,262.59000000000003,261.49,257.36,21.03,20.7,20.53,20.34,20.14,19.96,19.77,19.59,19.22,N/A,N/A -2012,3,26,15,30,101870,100680,99530,93.11,0,1.61,1.6,1.57,1.54,1.5,1.47,1.44,1.41,1.35,285.8,282.58,280.51,278.36,276.09000000000003,273.87,271.1,268.5,260.92,20.88,20.53,20.35,20.16,19.97,19.78,19.580000000000002,19.39,19.03,N/A,N/A -2012,3,26,16,30,101860,100680,99530,92.29,0,1.6400000000000001,1.62,1.58,1.54,1.49,1.44,1.3800000000000001,1.32,1.18,276.29,275.1,274.23,273.22,271.97,270.68,268.69,266.76,259.47,20.73,20.37,20.19,19.990000000000002,19.79,19.6,19.39,19.2,18.77,N/A,N/A -2012,3,26,17,30,101840,100650,99510,93.91,0,1.51,1.3900000000000001,1.29,1.18,1.05,0.93,0.76,0.63,0.38,278.79,279.69,280.29,280.99,282.31,283.71,289.34000000000003,294.57,295.78000000000003,20.48,20.13,19.96,19.78,19.6,19.44,19.28,19.14,19.080000000000002,N/A,N/A -2012,3,26,18,30,101820,100640,99490,94.83,0,1.78,1.75,1.69,1.62,1.51,1.4000000000000001,1.02,0.73,0.28,265.99,265.63,265.5,265.37,264.88,264.3,257.8,251.27,223.81,20.5,20.150000000000002,19.97,19.79,19.63,19.48,19.45,19.47,20.06,N/A,N/A -2012,3,26,19,30,101810,100630,99490,89.9,0,1.22,1.21,1.19,1.1500000000000001,1.11,1.07,1.01,0.93,0.5,206.57,204.95000000000002,203.78,202.17000000000002,198.37,193.76,181.53,170.07,154.98,20.990000000000002,20.650000000000002,20.490000000000002,20.31,20.19,20.1,20.31,20.56,20.94,N/A,N/A -2012,3,26,20,30,101770,100590,99440,87.77,0,1.74,1.77,1.75,1.73,1.7,1.6600000000000001,1.57,1.49,1.16,196.36,195.08,194.1,192.82,190.20000000000002,187.05,176.41,166.01,147.92000000000002,21.36,21.02,20.85,20.68,20.54,20.43,20.64,20.89,21.42,N/A,N/A -2012,3,26,21,30,101730,100550,99410,83.31,0,2.42,2.49,2.48,2.45,2.43,2.4,2.38,2.35,2.18,180.47,179.66,179.05,178.25,176.61,174.61,166.13,157.37,145.03,21.79,21.46,21.29,21.12,20.98,20.86,21.080000000000002,21.34,21.7,N/A,N/A -2012,3,26,22,30,101670,100490,99350,80.11,0,2.97,3.08,3.0700000000000003,3.0500000000000003,3.04,3.02,3.02,3.0100000000000002,2.91,177.25,176.57,176.06,175.4,174.12,172.57,166.76,160.70000000000002,150.26,22.04,21.73,21.57,21.39,21.25,21.13,21.25,21.41,21.75,N/A,N/A -2012,3,26,23,30,101650,100480,99340,82.32000000000001,0,3.22,3.38,3.4,3.39,3.41,3.44,3.5700000000000003,3.71,3.71,168.41,167.89000000000001,167.49,166.97,165.9,164.57,159.91,154.87,147.98,22.02,21.73,21.57,21.39,21.25,21.13,21.240000000000002,21.39,21.740000000000002,N/A,N/A -2012,3,27,0,30,101640,100460,99320,82.21000000000001,0,3.17,3.36,3.37,3.37,3.38,3.41,3.56,3.72,3.73,169.27,169.02,168.83,168.55,167.94,167.17000000000002,162.72,157.8,150.26,22.01,21.73,21.57,21.400000000000002,21.240000000000002,21.1,21.2,21.330000000000002,21.72,N/A,N/A -2012,3,27,1,30,101630,100450,99310,81.58,0,3.58,3.79,3.8000000000000003,3.79,3.8200000000000003,3.86,3.99,4.13,4.12,172.92000000000002,172.75,172.58,172.35,171.66,170.73,166.85,162.67000000000002,156.12,21.94,21.67,21.52,21.34,21.19,21.07,21.18,21.32,21.69,N/A,N/A -2012,3,27,2,30,101650,100470,99330,82.41,0,4.12,4.37,4.4,4.4,4.47,4.57,4.74,4.89,4.88,172.19,172.07,171.96,171.8,171.29,170.62,168.06,165.29,159.94,21.86,21.59,21.43,21.26,21.14,21.04,21.17,21.330000000000002,21.7,N/A,N/A -2012,3,27,3,30,101650,100470,99330,83.28,0,4.36,4.64,4.66,4.67,4.75,4.87,5.1000000000000005,5.33,5.34,169.56,169.45000000000002,169.38,169.27,168.95000000000002,168.52,166.85,164.99,160.26,21.76,21.48,21.32,21.150000000000002,21.03,20.94,21.1,21.29,21.68,N/A,N/A -2012,3,27,4,30,101650,100470,99320,83.92,0,4.37,4.65,4.68,4.68,4.69,4.7,4.9,5.13,5.48,167.82,167.76,167.68,167.6,167.46,167.31,166.5,165.59,162.14000000000001,21.650000000000002,21.36,21.2,21.01,20.84,20.67,20.61,20.59,21.22,N/A,N/A -2012,3,27,5,30,101650,100470,99330,84.92,0,4.5200000000000005,4.8,4.84,4.84,4.84,4.84,4.91,5,5.55,169,168.98,168.97,168.95000000000002,168.93,168.9,168.87,168.84,168.16,21.54,21.25,21.080000000000002,20.89,20.71,20.54,20.400000000000002,20.29,20.68,N/A,N/A -2012,3,27,6,30,101670,100490,99350,84.2,0,4.34,4.6000000000000005,4.64,4.64,4.65,4.65,4.69,4.73,5.18,170.29,170.29,170.28,170.27,170.25,170.24,170.24,170.25,170.82,21.53,21.21,21.04,20.86,20.68,20.51,20.35,20.2,20.31,N/A,N/A -2012,3,27,7,30,101720,100530,99390,83.72,0,4,4.24,4.28,4.3,4.3100000000000005,4.32,4.3500000000000005,4.39,4.84,175.51,175.47,175.45000000000002,175.42000000000002,175.4,175.37,175.34,175.31,175.78,21.56,21.25,21.080000000000002,20.89,20.71,20.53,20.36,20.2,20.16,N/A,N/A -2012,3,27,8,30,101710,100530,99380,84.42,0,4.01,4.24,4.2700000000000005,4.28,4.28,4.2700000000000005,4.2700000000000005,4.26,4.36,174.78,174.86,174.89000000000001,174.93,175,175.07,175.18,175.3,176.20000000000002,21.51,21.19,21.02,20.830000000000002,20.64,20.46,20.27,20.09,19.84,N/A,N/A -2012,3,27,9,30,101720,100540,99390,84.46000000000001,0,4.18,4.44,4.49,4.5,4.5,4.5,4.5,4.5,4.5600000000000005,180.08,179.99,179.98,179.97,179.96,179.96,179.95000000000002,179.95000000000002,180.03,21.5,21.18,21,20.81,20.62,20.44,20.25,20.07,19.740000000000002,N/A,N/A -2012,3,27,10,30,101740,100560,99420,83.74,0,4.04,4.29,4.34,4.36,4.37,4.37,4.38,4.38,4.4,186.27,186.18,186.14000000000001,186.09,186.03,185.97,185.9,185.83,185.66,21.5,21.18,21,20.81,20.62,20.44,20.25,20.07,19.71,N/A,N/A -2012,3,27,11,30,101770,100590,99450,84.82000000000001,0,3.7600000000000002,3.98,4.03,4.04,4.04,4.05,4.04,4.03,4.0200000000000005,185.05,185.06,185.06,185.07,185.08,185.09,185.1,185.11,185.17000000000002,21.43,21.1,20.93,20.740000000000002,20.54,20.36,20.16,19.98,19.6,N/A,N/A -2012,3,27,12,30,101800,100620,99470,84.86,0,3.41,3.62,3.66,3.67,3.68,3.69,3.69,3.69,3.69,179.01,178.99,179,179.01,179.03,179.04,179.06,179.08,179.14000000000001,21.39,21.07,20.89,20.7,20.5,20.32,20.12,19.94,19.55,N/A,N/A -2012,3,27,13,30,101830,100650,99510,85.54,0,3.47,3.68,3.71,3.74,3.74,3.75,3.75,3.7600000000000002,3.75,177.8,177.71,177.66,177.61,177.56,177.5,177.43,177.37,177.23,21.36,21.03,20.85,20.650000000000002,20.46,20.27,20.080000000000002,19.89,19.51,N/A,N/A -2012,3,27,14,30,101880,100700,99550,85.74,0,3.25,3.44,3.48,3.49,3.5100000000000002,3.5100000000000002,3.52,3.52,3.52,166.79,166.77,166.76,166.74,166.72,166.71,166.68,166.66,166.6,21.35,21.02,20.84,20.650000000000002,20.45,20.27,20.07,19.89,19.5,N/A,N/A -2012,3,27,15,30,101900,100720,99570,85.36,0,3.56,3.7600000000000002,3.81,3.84,3.85,3.87,3.88,3.89,3.91,158.21,158.25,158.24,158.21,158.19,158.16,158.11,158.08,157.97,21.43,21.09,20.92,20.72,20.53,20.35,20.150000000000002,19.97,19.580000000000002,N/A,N/A -2012,3,27,16,30,101900,100720,99570,84.67,0,3.85,4.11,4.17,4.21,4.24,4.26,4.28,4.3,4.33,159.13,158.97,158.9,158.83,158.77,158.72,158.65,158.59,158.47,21.54,21.2,21.02,20.82,20.63,20.44,20.240000000000002,20.06,19.67,N/A,N/A -2012,3,27,17,30,101900,100720,99580,82.28,0,4.28,4.58,4.66,4.71,4.74,4.7700000000000005,4.8,4.82,4.87,160.88,160.85,160.79,160.73,160.66,160.61,160.55,160.49,160.34,21.71,21.36,21.19,20.990000000000002,20.8,20.61,20.41,20.23,19.84,N/A,N/A -2012,3,27,18,30,101910,100730,99580,83.25,0,4.74,5.08,5.16,5.21,5.24,5.26,5.2700000000000005,5.29,5.3,161.92000000000002,161.74,161.66,161.59,161.52,161.47,161.41,161.36,161.28,21.78,21.43,21.25,21.05,20.86,20.67,20.47,20.29,19.900000000000002,N/A,N/A -2012,3,27,19,30,101900,100720,99580,82.86,0,4.64,4.97,5.04,5.09,5.12,5.14,5.16,5.18,5.2,161.38,161.22,161.15,161.07,160.99,160.92000000000002,160.85,160.78,160.64000000000001,21.86,21.52,21.34,21.150000000000002,20.95,20.77,20.57,20.38,20,N/A,N/A -2012,3,27,20,30,101890,100710,99570,82.3,0,4.36,4.69,4.7700000000000005,4.82,4.8500000000000005,4.88,4.9,4.92,4.94,153.14000000000001,153.22,153.3,153.38,153.46,153.53,153.62,153.69,153.87,21.95,21.61,21.44,21.240000000000002,21.05,20.86,20.66,20.48,20.09,N/A,N/A -2012,3,27,21,30,101870,100690,99540,82.45,0,3.89,4.15,4.22,4.26,4.29,4.32,4.34,4.36,4.4,155.16,155.18,155.18,155.18,155.18,155.18,155.19,155.19,155.21,22,21.68,21.5,21.31,21.12,20.93,20.740000000000002,20.56,20.17,N/A,N/A -2012,3,27,22,30,101840,100660,99520,82.33,0,4.3100000000000005,4.62,4.7,4.74,4.76,4.78,4.8,4.8100000000000005,4.82,146.44,147.18,147.62,148.02,148.39000000000001,148.72,149.06,149.36,149.97,21.98,21.66,21.490000000000002,21.3,21.1,20.92,20.72,20.54,20.150000000000002,N/A,N/A -2012,3,27,23,30,101820,100640,99490,84.23,0,4.13,4.43,4.5,4.54,4.57,4.59,4.61,4.63,4.67,146.67000000000002,146.58,146.46,146.31,146.16,146,145.82,145.65,145.22,21.88,21.57,21.400000000000002,21.21,21.01,20.830000000000002,20.63,20.45,20.07,N/A,N/A -2012,3,28,0,30,101790,100610,99470,85.35000000000001,0,5.36,5.83,5.94,5.99,6.03,6.05,6.0600000000000005,6.0600000000000005,6.05,147.13,147.53,147.70000000000002,147.86,147.98,148.1,148.20000000000002,148.29,148.48,21.92,21.62,21.45,21.25,21.06,20.88,20.68,20.490000000000002,20.1,N/A,N/A -2012,3,28,1,30,101800,100620,99470,86.96000000000001,0,5.19,5.63,5.74,5.8,5.8500000000000005,5.89,5.93,5.96,6.0200000000000005,139.53,139.46,139.41,139.35,139.29,139.23,139.17000000000002,139.11,138.98,21.82,21.5,21.330000000000002,21.14,20.95,20.76,20.57,20.38,20,N/A,N/A -2012,3,28,2,30,101810,100630,99480,87.14,0,6.25,6.78,6.9,6.96,7,7.03,7.04,7.0600000000000005,7.07,139.28,139.38,139.44,139.49,139.55,139.6,139.65,139.70000000000002,139.81,21.830000000000002,21.51,21.34,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A -2012,3,28,3,30,101810,100630,99490,87.31,0,6.66,7.25,7.4,7.48,7.53,7.57,7.59,7.61,7.63,139.49,139.56,139.67000000000002,139.77,139.88,139.98,140.1,140.21,140.48,21.8,21.490000000000002,21.32,21.12,20.93,20.740000000000002,20.54,20.36,19.98,N/A,N/A -2012,3,28,4,30,101810,100630,99480,85.67,0,6.51,7.08,7.19,7.24,7.26,7.2700000000000005,7.26,7.25,7.23,141.74,141.76,141.87,142.02,142.21,142.41,142.68,142.95000000000002,143.76,21.93,21.62,21.45,21.26,21.07,20.89,20.69,20.52,20.14,N/A,N/A -2012,3,28,5,30,101770,100590,99450,87.53,0,7.11,7.75,7.9,7.98,8.040000000000001,8.08,8.1,8.120000000000001,8.15,145.01,145.05,145.1,145.16,145.23,145.29,145.37,145.45000000000002,145.64000000000001,21.8,21.48,21.3,21.11,20.92,20.73,20.53,20.35,19.97,N/A,N/A -2012,3,28,6,30,101820,100640,99490,88.9,0,7.25,7.97,8.15,8.25,8.32,8.370000000000001,8.39,8.41,8.43,154.08,154.6,154.81,154.99,155.15,155.27,155.4,155.5,155.69,21.88,21.56,21.39,21.19,21,20.81,20.61,20.43,20.04,N/A,N/A -2012,3,28,7,30,101800,100620,99480,87.66,0,6.98,7.59,7.73,7.8100000000000005,7.86,7.890000000000001,7.91,7.92,7.930000000000001,152.99,153.14000000000001,153.21,153.27,153.34,153.41,153.48,153.54,153.70000000000002,21.86,21.54,21.37,21.17,20.98,20.8,20.6,20.42,20.03,N/A,N/A -2012,3,28,8,30,101790,100610,99470,88.33,0,6.54,7.12,7.25,7.32,7.37,7.4,7.41,7.43,7.43,156.13,156.19,156.21,156.25,156.28,156.31,156.36,156.4,156.52,21.85,21.54,21.36,21.17,20.98,20.79,20.59,20.41,20.03,N/A,N/A -2012,3,28,9,30,101760,100590,99440,86.32000000000001,0,7.03,7.63,7.76,7.82,7.86,7.88,7.890000000000001,7.9,7.92,155.06,155.3,155.47,155.66,155.87,156.09,156.37,156.64000000000001,157.5,21.92,21.61,21.44,21.25,21.06,20.88,20.69,20.52,20.150000000000002,N/A,N/A -2012,3,28,10,30,101770,100590,99450,87.24,0,6.24,6.7700000000000005,6.9,6.97,7.0200000000000005,7.0600000000000005,7.08,7.11,7.15,162.13,162.21,162.28,162.34,162.4,162.45000000000002,162.51,162.57,162.72,21.88,21.57,21.39,21.2,21,20.81,20.62,20.44,20.05,N/A,N/A -2012,3,28,11,30,101770,100590,99440,87.55,0,5.6000000000000005,6.17,6.33,6.44,6.5200000000000005,6.59,6.65,6.7,6.79,159.88,159.65,159.59,159.53,159.48,159.43,159.37,159.31,159.19,21.84,21.52,21.35,21.150000000000002,20.96,20.78,20.580000000000002,20.39,20.01,N/A,N/A -2012,3,28,12,30,101770,100600,99450,87.69,0,5.98,6.47,6.59,6.66,6.7,6.73,6.75,6.7700000000000005,6.8,166.18,166.32,166.38,166.43,166.47,166.5,166.54,166.57,166.70000000000002,21.94,21.64,21.47,21.28,21.09,20.91,20.72,20.54,20.17,N/A,N/A -2012,3,28,13,30,101790,100620,99470,88.46000000000001,0,6.6000000000000005,7.16,7.28,7.33,7.36,7.38,7.38,7.37,7.34,163.07,163.67000000000002,163.91,164.13,164.32,164.5,164.68,164.86,165.22,21.87,21.55,21.38,21.18,20.990000000000002,20.8,20.6,20.42,20.03,N/A,N/A -2012,3,28,14,30,101820,100640,99500,86.95,0,5.97,6.47,6.57,6.62,6.65,6.67,6.67,6.67,6.67,162.11,161.94,161.88,161.82,161.77,161.73,161.69,161.66,161.64000000000001,21.96,21.650000000000002,21.48,21.28,21.09,20.91,20.71,20.53,20.150000000000002,N/A,N/A -2012,3,28,15,30,101850,100670,99530,87.31,0,5.3500000000000005,5.78,5.87,5.92,5.95,5.97,5.98,5.98,5.98,165.03,165.06,165.07,165.06,165.06,165.05,165.04,165.03,165.02,21.96,21.64,21.47,21.27,21.080000000000002,20.89,20.7,20.52,20.13,N/A,N/A -2012,3,28,16,30,101860,100680,99530,87.23,0,5.0200000000000005,5.4,5.49,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,165.44,165.55,165.6,165.65,165.67000000000002,165.70000000000002,165.72,165.74,165.78,22,21.68,21.5,21.31,21.11,20.93,20.73,20.55,20.16,N/A,N/A -2012,3,28,17,30,101830,100650,99510,86.23,0,4.8100000000000005,5.16,5.24,5.29,5.32,5.34,5.36,5.38,5.41,169.18,169.03,168.98,168.94,168.9,168.86,168.82,168.78,168.71,22.04,21.71,21.54,21.34,21.150000000000002,20.96,20.76,20.580000000000002,20.2,N/A,N/A -2012,3,28,18,30,101800,100630,99480,87.01,0,4.7700000000000005,5.11,5.19,5.22,5.25,5.2700000000000005,5.28,5.29,5.3100000000000005,164.45000000000002,164.51,164.58,164.65,164.73,164.81,164.9,165,165.24,22.05,21.72,21.54,21.35,21.150000000000002,20.96,20.77,20.59,20.2,N/A,N/A -2012,3,28,19,30,101790,100610,99470,86,0,4.65,4.97,5.04,5.07,5.08,5.09,5.09,5.1000000000000005,5.09,170.68,170.66,170.63,170.6,170.56,170.52,170.47,170.44,170.36,22.13,21.8,21.62,21.43,21.240000000000002,21.05,20.85,20.67,20.29,N/A,N/A -2012,3,28,20,30,101730,100550,99410,86.79,0,5.15,5.5,5.57,5.6000000000000005,5.61,5.62,5.61,5.6000000000000005,5.58,166.31,166.35,166.39000000000001,166.42000000000002,166.44,166.47,166.48,166.49,166.54,22.1,21.77,21.6,21.400000000000002,21.21,21.02,20.82,20.64,20.25,N/A,N/A -2012,3,28,21,30,101690,100510,99370,87.24,0,5.24,5.64,5.73,5.78,5.8100000000000005,5.84,5.8500000000000005,5.86,5.87,166.91,167.13,167.23,167.36,167.48,167.61,167.76,167.9,168.22,22.09,21.77,21.6,21.400000000000002,21.21,21.02,20.830000000000002,20.64,20.26,N/A,N/A -2012,3,28,22,30,101620,100450,99310,87.56,0,4.7,5.04,5.12,5.17,5.2,5.22,5.23,5.25,5.29,177.70000000000002,177.49,177.36,177.20000000000002,177.06,176.91,176.73,176.55,176.11,21.97,21.66,21.490000000000002,21.29,21.1,20.92,20.72,20.54,20.16,N/A,N/A -2012,3,28,23,30,101580,100400,99260,87.2,0,5.26,5.68,5.7700000000000005,5.8100000000000005,5.84,5.86,5.87,5.87,5.88,171.07,172.04,172.65,173.27,173.86,174.44,175.05,175.61,176.84,21.97,21.67,21.5,21.3,21.11,20.93,20.73,20.55,20.17,N/A,N/A -2012,3,29,0,30,101540,100360,99220,89.37,0,5.07,5.48,5.57,5.63,5.67,5.7,5.72,5.74,5.78,162.96,162.86,162.81,162.72,162.64000000000001,162.55,162.44,162.33,162.1,21.77,21.46,21.28,21.09,20.900000000000002,20.71,20.51,20.330000000000002,19.95,N/A,N/A -2012,3,29,1,30,101560,100380,99240,89.67,0,5.79,6.26,6.38,6.43,6.47,6.5,6.51,6.5200000000000005,6.53,160.05,159.98,159.92000000000002,159.86,159.81,159.76,159.71,159.67000000000002,159.58,21.73,21.41,21.240000000000002,21.04,20.85,20.66,20.46,20.28,19.89,N/A,N/A -2012,3,29,2,30,101590,100410,99270,87.99,0,4.91,5.29,5.38,5.44,5.48,5.51,5.54,5.5600000000000005,5.6000000000000005,171.14000000000001,171.66,171.86,172.03,172.18,172.31,172.42000000000002,172.52,172.73,21.79,21.47,21.29,21.09,20.900000000000002,20.71,20.51,20.32,19.92,N/A,N/A -2012,3,29,3,30,101570,100390,99250,87.71000000000001,0,3.34,3.71,3.84,3.95,4.05,4.14,4.22,4.3,4.46,183.54,181.43,180.46,179.62,178.87,178.21,177.59,177.02,175.92000000000002,21.57,21.25,21.080000000000002,20.89,20.69,20.51,20.31,20.13,19.740000000000002,N/A,N/A -2012,3,29,4,30,101550,100370,99230,88.07000000000001,0,5.2,5.61,5.7,5.76,5.8,5.82,5.84,5.8500000000000005,5.86,172.12,172.24,172.32,172.39000000000001,172.44,172.48,172.52,172.56,172.59,21.63,21.3,21.13,20.93,20.740000000000002,20.55,20.35,20.17,19.78,N/A,N/A -2012,3,29,5,30,101500,100320,99180,88.49,0,4.64,4.92,4.96,4.97,4.97,4.97,4.95,4.94,4.92,166.34,166.46,166.51,166.58,166.67000000000002,166.77,166.92000000000002,167.06,167.5,21.51,21.18,21,20.81,20.61,20.42,20.22,20.04,19.650000000000002,N/A,N/A -2012,3,29,6,30,101510,100330,99190,90.5,0,5.62,6.05,6.15,6.2,6.23,6.25,6.26,6.2700000000000005,6.28,162.51,162.56,162.62,162.66,162.70000000000002,162.74,162.78,162.82,162.94,21.490000000000002,21.14,20.96,20.77,20.57,20.38,20.19,20.01,19.62,N/A,N/A -2012,3,29,7,30,101500,100320,99180,90.39,0,5.5600000000000005,5.98,6.0600000000000005,6.1000000000000005,6.12,6.13,6.13,6.12,6.08,153.37,153.58,153.66,153.74,153.8,153.87,153.93,154,154.13,21.580000000000002,21.240000000000002,21.07,20.87,20.67,20.490000000000002,20.29,20.1,19.72,N/A,N/A -2012,3,29,8,30,101500,100320,99180,90.10000000000001,0,5.37,5.7700000000000005,5.86,5.91,5.94,5.95,5.97,5.97,5.98,164.82,165.03,165.05,165.09,165.14000000000001,165.20000000000002,165.27,165.34,165.54,21.66,21.32,21.14,20.94,20.75,20.56,20.36,20.18,19.8,N/A,N/A -2012,3,29,9,30,101510,100330,99190,87.92,0,5.13,5.45,5.5200000000000005,5.54,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,171.47,171.52,171.64000000000001,171.75,171.86,171.97,172.11,172.24,172.61,21.7,21.38,21.2,21.01,20.82,20.63,20.44,20.26,19.88,N/A,N/A -2012,3,29,10,30,101460,100280,99140,88.32000000000001,0,4.08,4.32,4.36,4.38,4.39,4.39,4.39,4.39,4.46,153.02,153.18,153.32,153.48,153.66,153.85,154.14000000000001,154.42000000000002,155.99,21.650000000000002,21.32,21.150000000000002,20.96,20.77,20.59,20.400000000000002,20.23,19.91,N/A,N/A -2012,3,29,11,30,101460,100280,99140,87.93,0,4.36,4.68,4.75,4.78,4.8100000000000005,4.82,4.83,4.84,4.8500000000000005,149.8,150.03,150.22,150.39000000000001,150.54,150.68,150.85,151,151.42000000000002,21.75,21.42,21.25,21.05,20.86,20.67,20.48,20.29,19.91,N/A,N/A -2012,3,29,12,30,101450,100270,99130,84.3,0,4.91,5.29,5.37,5.42,5.45,5.48,5.51,5.54,5.66,144.99,145.53,145.86,146.22,146.58,146.96,147.45000000000002,147.92000000000002,149.58,21.91,21.6,21.43,21.240000000000002,21.05,20.87,20.68,20.5,20.150000000000002,N/A,N/A -2012,3,29,13,30,101460,100290,99150,87.69,0,5.2700000000000005,5.67,5.76,5.8100000000000005,5.83,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,146.62,146.91,147.06,147.22,147.39000000000001,147.55,147.77,147.97,148.56,21.85,21.53,21.36,21.17,20.98,20.8,20.6,20.43,20.06,N/A,N/A -2012,3,29,14,30,101500,100330,99190,86.24,0,5.26,5.63,5.69,5.71,5.7,5.68,5.66,5.62,5.55,145.05,145.15,145.14000000000001,145.1,145.02,144.95000000000002,144.85,144.77,144.64000000000001,21.95,21.63,21.46,21.27,21.080000000000002,20.89,20.7,20.51,20.13,N/A,N/A -2012,3,29,15,30,101500,100330,99190,87.17,0,5.28,5.64,5.71,5.73,5.74,5.74,5.73,5.72,5.68,143.26,143.51,143.66,143.79,143.92000000000002,144.04,144.18,144.31,144.66,21.82,21.490000000000002,21.32,21.13,20.94,20.75,20.56,20.38,20.01,N/A,N/A -2012,3,29,16,30,101500,100320,99180,82.72,0,4.97,5.32,5.39,5.42,5.44,5.44,5.44,5.43,5.4,142.69,142.93,143.13,143.33,143.53,143.72,143.95000000000002,144.17000000000002,144.76,22.06,21.75,21.57,21.38,21.2,21.01,20.82,20.64,20.27,N/A,N/A -2012,3,29,17,30,101460,100290,99150,84.99,0,5.0600000000000005,5.43,5.51,5.55,5.58,5.59,5.59,5.59,5.57,134.72,135.09,135.27,135.43,135.56,135.69,135.81,135.93,136.19,22.05,21.72,21.54,21.35,21.150000000000002,20.97,20.77,20.59,20.21,N/A,N/A -2012,3,29,18,30,101420,100250,99110,85.59,0,5.71,6.13,6.23,6.2700000000000005,6.3,6.3100000000000005,6.32,6.33,6.32,141.09,141.26,141.35,141.45000000000002,141.54,141.63,141.73,141.82,142.04,22.06,21.73,21.55,21.36,21.17,20.98,20.79,20.61,20.23,N/A,N/A -2012,3,29,19,30,101380,100210,99070,81.37,0,6.0600000000000005,6.5600000000000005,6.67,6.74,6.78,6.8100000000000005,6.84,6.86,6.9,144.19,144.44,144.62,144.8,144.98,145.14000000000001,145.33,145.49,145.89000000000001,22.28,21.96,21.79,21.61,21.42,21.240000000000002,21.05,20.87,20.5,N/A,N/A -2012,3,29,20,30,101330,100160,99020,80.27,0,6.44,7.0200000000000005,7.15,7.22,7.2700000000000005,7.3,7.3100000000000005,7.32,7.3,149.24,149.46,149.49,149.52,149.54,149.56,149.57,149.57,149.55,22.43,22.14,21.97,21.78,21.59,21.41,21.22,21.04,20.66,N/A,N/A -2012,3,29,21,30,101390,100210,99060,95,232.9,10.68,11.33,11.46,11.49,11.5,11.5,11.51,11.51,11.540000000000001,235.14000000000001,236.19,236.94,237.70000000000002,238.45000000000002,239.18,240.01,240.78,242.34,19.98,19.55,19.39,19.23,19.09,18.95,18.81,18.68,18.39,N/A,N/A -2012,3,29,22,30,101350,100160,99020,92.81,26.700000000000003,8.14,8.49,8.46,8.33,8.16,7.96,7.65,7.3500000000000005,6.74,337.09000000000003,338.54,339.66,341.17,343.37,345.87,351.41,356.90000000000003,11.63,20.04,19.62,19.45,19.27,19.12,18.97,18.86,18.77,18.67,N/A,N/A -2012,3,29,23,30,101330,100150,99000,91.05,0.4,2.79,2.87,2.87,2.86,2.84,2.81,2.79,2.7600000000000002,2.88,31.900000000000002,34.89,36.9,39.27,42.21,45.42,50.910000000000004,56.44,72.02,20.35,19.990000000000002,19.82,19.63,19.45,19.28,19.1,18.94,18.63,N/A,N/A -2012,3,30,0,30,101280,100100,98960,88.36,0,4.29,4.43,4.4,4.34,4.24,4.13,3.88,3.62,2.73,217.34,217.19,217.09,216.94,216.66,216.33,215,213.28,198.64000000000001,19.990000000000002,19.61,19.43,19.23,19.05,18.88,18.71,18.57,18.62,N/A,N/A -2012,3,30,1,30,101190,100010,98870,86.28,0,7.37,7.75,7.76,7.71,7.72,7.7700000000000005,7.61,7.43,6.72,178.26,178.31,178.36,178.45000000000002,178.68,178.96,179.77,180.63,183.33,20.25,19.88,19.73,19.59,19.580000000000002,19.63,20.01,20.39,20.94,N/A,N/A -2012,3,30,2,30,101240,100060,98920,84.82000000000001,0,6.0200000000000005,6.390000000000001,6.46,6.49,6.51,6.5200000000000005,6.55,6.6000000000000005,7.140000000000001,186.70000000000002,186.68,186.59,186.53,186.47,186.43,186.38,186.34,187.25,20.91,20.55,20.37,20.19,20.01,19.84,19.69,19.55,19.69,N/A,N/A -2012,3,30,3,30,101230,100050,98910,85.15,0,6.51,6.96,7.04,7.07,7.07,7.0600000000000005,7.03,7.01,7.05,192.24,192.20000000000002,192.22,192.24,192.28,192.32,192.4,192.49,193.39000000000001,21.07,20.7,20.53,20.330000000000002,20.150000000000002,19.97,19.79,19.62,19.36,N/A,N/A -2012,3,30,4,30,101210,100030,98890,84.81,0,7.3500000000000005,7.8100000000000005,7.87,7.88,7.92,7.97,8.24,8.53,8.11,185.93,185.99,186.07,186.18,186.39000000000001,186.65,187.53,188.48,189.55,21.35,21.01,20.85,20.68,20.54,20.42,20.57,20.77,21.32,N/A,N/A -2012,3,30,5,30,101190,100010,98880,79.35000000000001,0,4.29,4.48,4.75,5.5200000000000005,6.01,6.2700000000000005,6.43,6.54,6.74,198.71,198.71,198.4,197.54,196.33,194.94,193.64000000000001,192.48000000000002,190.52,21.89,21.62,21.6,21.77,21.91,22.04,21.97,21.86,21.54,N/A,N/A -2012,3,30,6,30,101190,100020,98880,83.17,0,4.2,4.46,4.5,4.5200000000000005,4.55,4.59,5.0600000000000005,5.62,6.42,181.87,181.72,181.64000000000001,181.56,181.52,181.5,182.63,183.99,187.38,21.72,21.41,21.25,21.06,20.89,20.72,20.68,20.67,20.96,N/A,N/A -2012,3,30,7,30,101210,100040,98900,85.27,0,3.94,4.2,4.32,4.54,5.21,6.23,6.69,6.98,7.63,182.76,182.98,183.39000000000001,184.17000000000002,186.17000000000002,189.22,190.58,191.45000000000002,193.77,21.67,21.38,21.240000000000002,21.1,21.080000000000002,21.14,21.17,21.19,21.27,N/A,N/A -2012,3,30,8,30,101220,100050,98920,87.14,0,3.37,3.5100000000000002,3.8000000000000003,4.75,5.38,5.71,6.05,6.37,7.0200000000000005,164.24,165.04,168.18,177.35,182.45000000000002,184.09,185.56,186.91,189.23,21.96,21.67,21.580000000000002,21.59,21.54,21.46,21.38,21.31,21.150000000000002,N/A,N/A -2012,3,30,9,30,101200,100020,98890,90.61,0,4.28,4.55,4.87,5.69,6.17,6.42,6.67,6.890000000000001,7.33,153.08,154.55,158.08,166.4,171.05,173.07,174.91,176.57,179.52,22,21.72,21.64,21.64,21.6,21.53,21.45,21.37,21.16,N/A,N/A -2012,3,30,10,30,101210,100040,98910,89.07000000000001,0,4.46,5.26,5.64,6.0200000000000005,6.3500000000000005,6.63,6.91,7.18,7.71,178.28,178.95000000000002,179.37,179.9,180.39000000000001,180.87,181.42000000000002,181.95000000000002,183.32,22.28,22.07,21.96,21.85,21.73,21.61,21.48,21.37,21.14,N/A,N/A -2012,3,30,11,30,101210,100040,98910,91.22,0,4.92,5.83,6.23,6.57,6.87,7.140000000000001,7.4,7.65,8.120000000000001,170,171.32,172.17000000000002,173.02,173.81,174.57,175.38,176.15,178.07,22.25,22.03,21.91,21.79,21.66,21.53,21.39,21.26,21.02,N/A,N/A -2012,3,30,12,30,101210,100040,98910,92.91,0,5.43,6.3500000000000005,6.74,7.0600000000000005,7.34,7.58,7.82,8.05,8.43,170.01,170.68,171.12,171.55,172.01,172.49,173.11,173.72,175.58,22.28,22.04,21.91,21.76,21.61,21.45,21.29,21.150000000000002,20.87,N/A,N/A -2012,3,30,13,30,101250,100080,98950,94.83,0,5.51,6.390000000000001,6.75,7.05,7.3,7.53,7.74,7.930000000000001,8.26,174.07,174.29,174.42000000000002,174.53,174.67000000000002,174.82,175.12,175.43,177.06,22.27,22.05,21.92,21.75,21.580000000000002,21.41,21.240000000000002,21.080000000000002,20.78,N/A,N/A -2012,3,30,14,30,101300,100130,98990,95.44,0,6.99,7.48,7.5600000000000005,7.59,7.6000000000000005,7.6000000000000005,7.62,7.65,7.72,176.5,176.54,176.45000000000002,176.31,176.19,176.08,176.22,176.41,180.11,21.400000000000002,21.05,20.87,20.67,20.46,20.27,20.04,19.82,19.59,N/A,N/A -2012,3,30,15,30,101330,100150,99010,97.17,0,5.55,5.86,5.91,5.93,6.08,6.28,6.55,6.8,6.94,187.72,186.55,185.68,184.52,182.37,179.65,176.93,174.39000000000001,172.9,21.1,20.76,20.59,20.41,20.3,20.23,20.16,20.09,19.89,N/A,N/A -2012,3,30,16,30,101310,100130,99000,96.14,0,6.12,6.53,6.6000000000000005,6.640000000000001,6.69,6.74,7.09,7.48,7.97,185.87,185,184.49,183.89000000000001,183.16,182.37,180.71,178.97,178.41,21.5,21.16,20.990000000000002,20.8,20.62,20.46,20.34,20.25,20.01,N/A,N/A -2012,3,30,17,30,101290,100120,98980,96.08,0,5.64,6.0600000000000005,6.16,6.23,6.3100000000000005,6.4,6.61,6.84,7.29,177.39000000000001,177.56,177.70000000000002,177.89000000000001,178.19,178.56,179.74,181.04,186.06,21.86,21.54,21.37,21.18,21.01,20.84,20.68,20.54,20.330000000000002,N/A,N/A -2012,3,30,18,30,101260,100090,98960,96.54,0,4.68,5,5.07,5.12,5.19,5.26,5.68,6.18,6.6000000000000005,178.52,178.73,178.91,179.15,179.47,179.82,182.41,185.58,189.27,22.27,21.95,21.78,21.59,21.43,21.28,21.14,21.02,20.8,N/A,N/A -2012,3,30,19,30,101250,100080,98950,94.88,0,5.26,5.7,5.8100000000000005,5.87,5.91,5.94,5.97,6,6.08,188.17000000000002,188.64000000000001,188.9,189.21,189.54,189.88,190.33,190.78,192.28,22.62,22.31,22.14,21.95,21.76,21.580000000000002,21.39,21.21,20.87,N/A,N/A -2012,3,30,20,30,101190,100020,98890,92.99,0,5.44,5.88,5.98,6.0200000000000005,6.04,6.05,6.0600000000000005,6.07,6.08,194.76,194.97,195.11,195.27,195.45000000000002,195.65,195.92000000000002,196.19,197.16,22.650000000000002,22.34,22.18,21.98,21.8,21.61,21.42,21.25,20.88,N/A,N/A -2012,3,30,21,30,101150,99980,98850,94,0,6.29,6.86,6.99,7.0600000000000005,7.11,7.140000000000001,7.15,7.17,7.2,195.23000000000002,195.36,195.44,195.52,195.6,195.68,195.8,195.9,196.27,22.57,22.28,22.12,21.93,21.740000000000002,21.56,21.37,21.19,20.82,N/A,N/A -2012,3,30,22,30,101120,99950,98820,95.45,0,6.41,7.140000000000001,7.36,7.54,7.69,7.8100000000000005,7.92,8.02,8.19,198.8,198.97,199.1,199.25,199.4,199.57,199.78,200,200.61,22.44,22.16,22,21.82,21.64,21.46,21.27,21.09,20.72,N/A,N/A -2012,3,30,23,30,101110,99940,98810,95.59,0,6.16,7.11,7.46,7.69,7.890000000000001,8.08,8.27,8.44,8.75,199.47,199.74,199.81,199.77,199.86,200.05,200.38,200.74,201.59,22.27,22.01,21.85,21.66,21.48,21.3,21.12,20.96,20.66,N/A,N/A -2012,3,31,0,30,101110,99940,98810,94.60000000000001,0,7.46,8.23,8.43,8.55,8.63,8.68,8.71,8.73,8.72,200,200.48000000000002,200.72,200.97,201.24,201.51,201.88,202.24,203.59,22.23,21.94,21.78,21.580000000000002,21.38,21.19,20.97,20.78,20.38,N/A,N/A -2012,3,31,1,30,101110,99940,98810,94.4,0,7.57,8.39,8.65,8.89,9.120000000000001,9.34,9.47,9.55,9.93,203.56,202.59,202.12,201.59,201.06,200.52,200.3,200.17000000000002,200.79,22.2,21.92,21.76,21.580000000000002,21.400000000000002,21.23,21.04,20.87,20.63,N/A,N/A -2012,3,31,2,30,101140,99970,98840,94.57000000000001,0,7.68,8.32,8.47,8.57,8.68,8.81,8.99,9.17,9.66,209.21,208.74,208.51,208.24,207.98000000000002,207.73000000000002,207.61,207.54,208.03,22,21.7,21.54,21.36,21.2,21.04,20.91,20.78,20.6,N/A,N/A -2012,3,31,3,30,101180,100010,98880,94.43,0,6.15,6.82,7.1000000000000005,7.46,7.83,8.22,8.6,8.950000000000001,9.56,200.3,200.64000000000001,201.12,201.92000000000002,203.07,204.51,206.03,207.49,210.35,22.11,21.86,21.740000000000002,21.61,21.54,21.490000000000002,21.45,21.41,21.39,N/A,N/A -2012,3,31,4,30,101170,100000,98870,93.73,0,7.140000000000001,7.9,8.1,8.28,8.46,8.66,8.89,9.120000000000001,9.46,208.86,209.52,209.76,210.08,210.39000000000001,210.69,210.77,210.8,210.16,21.900000000000002,21.61,21.44,21.25,21.080000000000002,20.91,20.73,20.57,20.2,N/A,N/A -2012,3,31,5,30,101180,100010,98880,89.53,0,5.84,6.98,7.55,8.14,8.63,9.06,9.41,9.73,10.11,204.91,205.74,206.55,207.89000000000001,209.06,210.12,210.95000000000002,211.67000000000002,212.25,22.330000000000002,22.21,22.16,22.12,22.03,21.92,21.77,21.63,21.26,N/A,N/A -2012,3,31,6,30,101210,100040,98910,87.06,0,6.2700000000000005,7.16,7.53,7.890000000000001,8.2,8.49,8.76,9.01,9.48,201.53,201.86,202.07,202.24,202.71,203.41,204.08,204.71,205.85,22.46,22.23,22.1,21.93,21.77,21.61,21.45,21.3,20.97,N/A,N/A -2012,3,31,7,30,101220,100050,98910,89.41,0,5.78,6.32,6.5,6.73,7.21,7.88,8.26,8.540000000000001,9.07,209.19,209.41,209.58,209.82,210.26,210.86,211.37,211.81,212.82,22.26,21.990000000000002,21.84,21.68,21.54,21.43,21.3,21.19,20.98,N/A,N/A -2012,3,31,8,30,101210,100040,98910,91.23,0,5.45,5.9,6.04,6.19,6.74,7.59,8.07,8.4,9.05,212.21,212.36,212.49,212.70000000000002,213.26,214.11,214.55,214.83,215.32,22.11,21.830000000000002,21.67,21.5,21.38,21.3,21.2,21.1,20.94,N/A,N/A -2012,3,31,9,30,101230,100060,98930,90.28,0,5.08,5.51,5.63,5.7700000000000005,6.22,6.92,7.3500000000000005,7.69,8.26,202.58,202.93,203.23000000000002,203.66,204.75,206.36,207.29,207.96,209.13,22.17,21.89,21.73,21.55,21.43,21.32,21.21,21.11,20.92,N/A,N/A -2012,3,31,10,30,101260,100090,98950,90.7,0,3.97,4.2700000000000005,4.36,4.49,5.0200000000000005,5.9,6.33,6.6000000000000005,7.16,198.91,199.3,199.73000000000002,200.39000000000001,202.54,206.02,207.48000000000002,208.26,209.69,22.150000000000002,21.87,21.71,21.54,21.44,21.39,21.29,21.2,21.05,N/A,N/A -2012,3,31,11,30,101270,100100,98960,91.37,0,4.09,4.43,4.78,5.64,6.2,6.49,6.8,7.08,7.69,206.46,207.08,207.99,209.97,211.14000000000001,211.66,212.13,212.56,213.31,22.12,21.85,21.740000000000002,21.67,21.580000000000002,21.490000000000002,21.400000000000002,21.32,21.17,N/A,N/A -2012,3,31,12,30,101310,100140,99000,91.72,0,3.74,4.03,4.3,4.97,5.42,5.7,5.97,6.22,6.72,204.26,204.61,205.26,206.74,207.73000000000002,208.35,208.98000000000002,209.58,210.82,22.16,21.89,21.76,21.650000000000002,21.54,21.44,21.330000000000002,21.23,21.03,N/A,N/A -2012,3,31,13,30,101340,100170,99040,92.28,0,3.5700000000000003,3.81,4.1,4.8,5.24,5.47,5.7,5.91,6.3100000000000005,193.44,193.95000000000002,195.37,198.59,200.57,201.56,202.59,203.56,205.52,22.14,21.86,21.740000000000002,21.66,21.57,21.45,21.330000000000002,21.22,21.01,N/A,N/A -2012,3,31,14,30,101390,100220,99080,93.03,0,3.15,3.3000000000000003,3.58,4.32,4.8,5.0600000000000005,5.3,5.5200000000000005,5.94,197.92000000000002,198.24,199.24,201.68,203.25,204.1,205.05,205.97,208,22.150000000000002,21.87,21.76,21.71,21.63,21.54,21.43,21.34,21.16,N/A,N/A -2012,3,31,15,30,101380,100210,99070,93.61,0,3.56,3.79,3.97,4.3500000000000005,4.76,5.19,5.44,5.61,5.9,187.39000000000001,188.13,189.23,191.37,193.33,195.19,196.49,197.53,200.06,22.21,21.91,21.77,21.63,21.54,21.47,21.37,21.27,21.11,N/A,N/A -2012,3,31,16,30,101380,100210,99080,93.92,0,3.77,3.99,4.04,4.08,4.18,4.32,4.79,5.3500000000000005,5.8,184,184.49,184.87,185.38,186.28,187.43,190.63,194.4,198.98000000000002,22.32,22,21.84,21.650000000000002,21.48,21.32,21.27,21.25,21.2,N/A,N/A -2012,3,31,17,30,101380,100210,99070,94.21000000000001,0,3.88,4.12,4.17,4.2,4.21,4.21,4.21,4.21,4.29,177.91,178.32,178.59,178.84,179.07,179.3,179.53,179.75,181.4,22.41,22.080000000000002,21.900000000000002,21.71,21.52,21.330000000000002,21.14,20.96,20.62,N/A,N/A -2012,3,31,18,30,101320,100150,99020,93.99,0,5.23,5.58,5.64,5.66,5.68,5.68,5.71,5.73,6,177.61,177.87,178.13,178.46,178.89000000000001,179.37,180.16,180.98,184.95000000000002,22.48,22.150000000000002,21.98,21.79,21.61,21.43,21.26,21.1,20.84,N/A,N/A -2012,3,31,19,30,101290,100130,98990,93.21000000000001,0,5.84,6.3,6.38,6.42,6.45,6.45,6.45,6.45,6.46,174.42000000000002,174.84,175.02,175.19,175.37,175.57,175.85,176.12,177.24,22.48,22.16,21.98,21.79,21.6,21.41,21.22,21.04,20.67,N/A,N/A -2012,3,31,20,30,101280,100110,98980,88.73,0,5.05,5.44,5.53,5.57,5.6000000000000005,5.62,5.66,5.7,5.91,171.05,171.75,172.27,172.86,173.54,174.26,175.28,176.29,179.88,22.6,22.3,22.14,21.95,21.77,21.6,21.42,21.25,20.94,N/A,N/A -2012,3,31,21,30,101250,100080,98950,88.3,0,4.64,5.04,5.14,5.2,5.24,5.28,5.32,5.3500000000000005,5.48,169.84,171.03,171.73,172.51,173.3,174.09,175.08,176.04,178.59,22.63,22.35,22.19,22,21.82,21.64,21.46,21.28,20.93,N/A,N/A -2012,3,31,22,30,101210,100050,98910,90.57000000000001,0,5.25,5.76,5.87,5.95,6.01,6.0600000000000005,6.12,6.18,6.37,176.49,176.35,176.29,176.22,176.18,176.15,176.15,176.16,176.36,22.47,22.18,22.01,21.82,21.64,21.46,21.27,21.1,20.75,N/A,N/A -2012,3,31,23,30,101190,100020,98880,85.79,0,5.19,5.65,5.75,5.83,5.92,6.0200000000000005,6.21,6.4,6.69,170.08,170.58,171.1,171.89000000000001,173.11,174.52,176.73,178.93,182.17000000000002,22.490000000000002,22.25,22.1,21.94,21.79,21.650000000000002,21.51,21.39,21.07,N/A,N/A -2012,4,1,0,30,101170,100000,98870,88.97,0,5.84,6.3500000000000005,6.47,6.57,6.69,6.84,6.95,7.05,7.2,169.14000000000001,169.57,170,170.65,171.66,172.91,174.49,176.02,179.34,22.31,22.06,21.91,21.75,21.6,21.47,21.32,21.18,20.96,N/A,N/A -2012,4,1,1,30,101180,100000,98870,89.78,0,6.4,6.95,7.07,7.140000000000001,7.21,7.29,7.42,7.55,7.84,175.09,174.92000000000002,174.85,174.77,174.69,174.63,174.79,174.97,175.95000000000002,22.23,21.95,21.79,21.61,21.43,21.27,21.12,20.98,20.76,N/A,N/A -2012,4,1,2,30,101180,100010,98880,89.68,0,5.66,6.54,6.95,7.34,7.68,7.98,8.16,8.290000000000001,8.19,173.39000000000001,174.41,175.1,175.96,176.87,177.82,178.68,179.43,181,22.32,22.150000000000002,22.07,21.990000000000002,21.94,21.89,21.81,21.72,21.43,N/A,N/A -2012,4,1,3,30,101180,100010,98880,93.14,0,6.3,6.8500000000000005,6.95,6.99,7.03,7.08,7.17,7.2700000000000005,7.76,177.23,177.28,177.4,177.54,177.77,178.03,178.6,179.20000000000002,181.55,22.1,21.81,21.64,21.45,21.26,21.080000000000002,20.91,20.75,20.6,N/A,N/A -2012,4,1,4,30,101170,100000,98870,94.51,0,6.22,6.7700000000000005,6.91,7.01,7.12,7.23,7.43,7.640000000000001,8.46,175.71,176.06,176.3,176.61,177,177.44,178.26,179.09,182.17000000000002,22.05,21.75,21.580000000000002,21.400000000000002,21.22,21.04,20.87,20.72,20.47,N/A,N/A -2012,4,1,5,30,101150,99970,98840,95.96000000000001,0,5.94,6.48,6.62,6.71,6.79,6.87,6.97,7.0600000000000005,7.46,177.12,177.31,177.42000000000002,177.54,177.70000000000002,177.86,178.08,178.3,179.18,21.85,21.5,21.3,21.09,20.91,20.77,20.61,20.47,20.13,N/A,N/A -2012,4,1,6,30,101140,99970,98830,95.67,0,6.82,7.44,7.59,7.7,7.79,7.87,7.99,8.11,8.5,187.35,186.54,186.13,185.73,185.34,184.97,184.56,184.17000000000002,183.75,21.69,21.35,21.17,20.98,20.82,20.67,20.53,20.41,20.080000000000002,N/A,N/A -2012,4,1,7,30,101160,99980,98850,93.91,0,6.21,6.78,6.93,7.0200000000000005,7.11,7.18,7.28,7.37,7.72,192.75,192.55,192.52,192.49,192.46,192.44,192.4,192.36,192.09,21.77,21.43,21.25,21.05,20.86,20.67,20.47,20.28,19.900000000000002,N/A,N/A -2012,4,1,8,30,101130,99960,98830,93.39,0,5.12,5.57,5.68,5.7700000000000005,5.86,5.95,6.09,6.24,6.91,192.77,193.01,193.15,193.31,193.48000000000002,193.65,193.9,194.14000000000001,194.88,22.02,21.71,21.53,21.34,21.150000000000002,20.96,20.78,20.6,20.27,N/A,N/A -2012,4,1,9,30,101130,99960,98820,94.38,0,4.32,4.66,4.74,4.8,4.84,4.87,4.91,4.95,5.18,183.24,183.27,183.31,183.35,183.41,183.48,183.62,183.76,184.79,22.04,21.72,21.54,21.35,21.150000000000002,20.97,20.76,20.580000000000002,20.27,N/A,N/A -2012,4,1,10,30,101130,99960,98820,93.7,0,4.22,4.57,4.66,4.72,4.7700000000000005,4.82,4.88,4.94,5.24,185.37,185.76,186.01,186.27,186.52,186.77,187.05,187.33,188.19,22.07,21.75,21.580000000000002,21.39,21.2,21.02,20.830000000000002,20.650000000000002,20.26,N/A,N/A -2012,4,1,11,30,101120,99950,98820,93.41,0,4.03,4.3500000000000005,4.42,4.47,4.5200000000000005,4.55,4.6000000000000005,4.65,4.91,177.9,178.33,178.6,178.89000000000001,179.21,179.54,180,180.44,182.28,22.080000000000002,21.77,21.6,21.41,21.22,21.03,20.84,20.650000000000002,20.29,N/A,N/A -2012,4,1,12,30,101150,99980,98850,92.91,0,4.13,4.47,4.55,4.6000000000000005,4.64,4.68,4.76,4.82,5.25,170.52,170.85,171.1,171.39000000000001,171.73,172.08,172.64000000000001,173.20000000000002,175.98,22.13,21.830000000000002,21.66,21.47,21.28,21.1,20.91,20.740000000000002,20.41,N/A,N/A -2012,4,1,13,30,101140,99970,98840,93.02,0,4.05,4.38,4.47,4.55,4.66,4.8,5.07,5.3500000000000005,5.75,169.58,170.04,170.4,170.82,171.37,171.98,172.9,173.84,175.87,22.14,21.84,21.68,21.490000000000002,21.31,21.150000000000002,20.98,20.84,20.54,N/A,N/A -2012,4,1,14,30,101180,100010,98880,93.69,0,4.32,4.7,4.79,4.87,4.97,5.07,5.25,5.42,5.61,168.96,169.28,169.64000000000001,170.13,170.76,171.46,172.3,173.12,174.49,22.26,21.95,21.78,21.59,21.41,21.240000000000002,21.06,20.89,20.54,N/A,N/A -2012,4,1,15,30,101180,100010,98880,89.85000000000001,0,4.19,4.6000000000000005,4.72,4.8,4.88,4.97,5.08,5.2,5.7700000000000005,178.21,178.16,178.11,178.08,178.1,178.16,178.47,178.82,180.08,22.53,22.23,22.07,21.89,21.7,21.53,21.35,21.19,20.88,N/A,N/A -2012,4,1,16,30,101180,100010,98880,90.84,0,4.43,4.8100000000000005,4.91,4.97,5.03,5.07,5.12,5.17,5.4,168.44,168.65,168.78,168.9,169.04,169.18,169.4,169.6,170.58,22.52,22.21,22.04,21.85,21.66,21.48,21.29,21.11,20.75,N/A,N/A -2012,4,1,17,30,101140,99980,98840,90.66,0,4.45,4.8,4.88,4.92,4.95,4.98,5,5.0200000000000005,5.08,170.02,169.67000000000002,169.56,169.46,169.37,169.28,169.20000000000002,169.13,168.96,22.64,22.32,22.150000000000002,21.95,21.76,21.580000000000002,21.38,21.2,20.82,N/A,N/A -2012,4,1,18,30,101120,99960,98830,90.35000000000001,0,4.95,5.3500000000000005,5.43,5.47,5.5,5.53,5.54,5.57,5.66,161.25,161.62,161.89000000000001,162.22,162.57,162.95000000000002,163.48,164,165.74,22.79,22.47,22.3,22.11,21.92,21.740000000000002,21.56,21.38,21.03,N/A,N/A -2012,4,1,19,30,101100,99940,98810,90.33,0,5.23,5.7,5.8100000000000005,5.88,5.94,5.98,6.0200000000000005,6.0600000000000005,6.18,165.88,166.19,166.4,166.64000000000001,166.88,167.11,167.4,167.66,168.35,22.87,22.57,22.400000000000002,22.21,22.02,21.84,21.64,21.47,21.09,N/A,N/A -2012,4,1,20,30,101040,99880,98750,92.21000000000001,0,5.07,5.5,5.59,5.64,5.69,5.72,5.76,5.8100000000000005,6.01,158.18,158.59,158.89000000000001,159.23,159.61,159.99,160.5,160.99,162.55,22.88,22.6,22.43,22.25,22.07,21.89,21.7,21.53,21.2,N/A,N/A -2012,4,1,21,30,100990,99830,98700,90.82000000000001,0,5.76,6.3,6.42,6.5,6.54,6.5600000000000005,6.59,6.6000000000000005,6.62,158.38,158.62,158.77,158.91,159.05,159.19,159.32,159.47,159.81,22.990000000000002,22.71,22.55,22.36,22.18,22,21.81,21.63,21.26,N/A,N/A -2012,4,1,22,30,100960,99800,98670,92.71000000000001,0,5.7,6.3,6.47,6.57,6.66,6.73,6.78,6.84,6.92,153.02,153.20000000000002,153.32,153.46,153.57,153.67000000000002,153.76,153.86,154.13,22.81,22.55,22.39,22.21,22.02,21.85,21.650000000000002,21.48,21.11,N/A,N/A -2012,4,1,23,30,100930,99770,98640,94.37,0,5.29,5.93,6.140000000000001,6.32,6.48,6.62,6.7700000000000005,6.91,7.21,146.47,146.97,147.3,147.68,148.05,148.43,148.87,149.29,150.33,22.66,22.400000000000002,22.25,22.080000000000002,21.900000000000002,21.72,21.54,21.36,21,N/A,N/A -2012,4,2,0,30,100900,99730,98610,94.3,0,4.87,5.59,5.87,6.16,6.44,6.71,6.99,7.2700000000000005,7.76,157.70000000000002,158.33,158.79,159.3,159.76,160.19,160.56,160.89000000000001,161.18,22.72,22.48,22.35,22.2,22.05,21.900000000000002,21.740000000000002,21.59,21.26,N/A,N/A -2012,4,2,1,30,100880,99720,98590,92.67,0,6.49,7.33,7.59,7.8,7.98,8.120000000000001,8.24,8.34,8.49,148.58,148.85,149.14000000000001,149.51,149.93,150.37,150.93,151.47,152.86,22.75,22.51,22.36,22.18,22.01,21.84,21.66,21.5,21.150000000000002,N/A,N/A -2012,4,2,2,30,100880,99720,98590,94.12,0,6.51,7.390000000000001,7.69,7.95,8.19,8.4,8.620000000000001,8.82,9.25,142.93,143.95000000000002,144.61,145.33,146.08,146.82,147.67000000000002,148.47,150.31,22.72,22.48,22.34,22.18,22.02,21.86,21.7,21.55,21.25,N/A,N/A -2012,4,2,3,30,100870,99710,98580,93.93,0,6.41,7.28,7.58,7.8500000000000005,8.09,8.32,8.56,8.78,9.3,148.24,148.37,148.48,148.64000000000001,148.85,149.1,149.48,149.87,151.25,22.69,22.45,22.31,22.150000000000002,22,21.85,21.7,21.57,21.3,N/A,N/A -2012,4,2,4,30,100830,99660,98540,95.42,0,6.69,7.6000000000000005,7.930000000000001,8.2,8.44,8.66,8.89,9.1,9.65,149.46,149.99,150.43,150.9,151.4,151.89000000000001,152.46,153,154.49,22.53,22.27,22.11,21.93,21.75,21.57,21.39,21.22,20.900000000000002,N/A,N/A -2012,4,2,5,30,100780,99610,98490,94.39,0,6.66,7.58,7.890000000000001,8.14,8.35,8.53,8.69,8.84,9.23,146.59,146.11,145.86,145.62,145.4,145.22,145.08,144.96,145.28,22.62,22.36,22.2,22.02,21.84,21.66,21.47,21.29,21.01,N/A,N/A -2012,4,2,6,30,100810,99650,98520,93.43,0,6.55,7.36,7.640000000000001,7.87,8.09,8.290000000000001,8.49,8.68,9.13,149.43,149.68,149.87,150.12,150.38,150.65,150.96,151.25,151.93,22.66,22.41,22.27,22.09,21.92,21.75,21.57,21.41,21.07,N/A,N/A -2012,4,2,7,30,100780,99620,98490,94.32000000000001,0,6.78,7.62,7.890000000000001,8.11,8.290000000000001,8.45,8.6,8.73,9.05,158.12,158.5,158.77,158.97,159.16,159.35,159.51,159.66,160.01,22.64,22.36,22.2,22.02,21.830000000000002,21.66,21.46,21.28,20.93,N/A,N/A -2012,4,2,8,30,100750,99580,98460,91.85000000000001,0,8.58,9.78,10.18,10.5,10.77,11,11.19,11.36,11.64,161.48,162.18,162.61,163.06,163.45000000000002,163.82,164.15,164.44,164.9,22.84,22.62,22.48,22.32,22.150000000000002,22,21.830000000000002,21.67,21.330000000000002,N/A,N/A -2012,4,2,9,30,100810,99640,98500,87.28,0,12.61,13.86,14.17,14.35,14.48,14.58,14.67,14.76,15.040000000000001,179.86,179.99,180,180.03,180.06,180.09,180.14000000000001,180.19,180.38,20.75,20.32,20.13,19.93,19.75,19.57,19.39,19.22,18.900000000000002,N/A,N/A -2012,4,2,10,30,100650,99480,98350,79.23,0,7.36,7.96,8.11,8.25,8.56,8.93,9.53,10.1,10.72,179.57,179.26,179.03,178.72,178.06,177.28,175.72,174.13,170.93,21.92,21.61,21.47,21.32,21.240000000000002,21.19,21.28,21.39,21.66,N/A,N/A -2012,4,2,11,30,100690,99520,98390,80.02,0,8.91,9.700000000000001,9.93,10.19,10.51,10.88,11.35,11.82,12.69,211.56,211.33,211.03,210.56,209.98000000000002,209.35,208.59,207.84,206.38,22.44,22.17,22.04,21.89,21.78,21.68,21.64,21.62,21.63,N/A,N/A -2012,4,2,12,30,100750,99580,98450,83.79,21.6,9.59,10.4,10.58,10.67,10.76,10.84,10.93,11,10.65,163.93,163.65,163.64000000000001,163.66,163.84,164.12,164.93,165.82,169.35,21.68,21.36,21.2,21.04,20.91,20.79,20.72,20.67,20.62,N/A,N/A -2012,4,2,13,30,100750,99590,98460,83.07000000000001,0,7.48,8.08,8.22,8.28,8.34,8.39,8.51,8.63,9.120000000000001,152.52,152.43,152.35,152.27,152.20000000000002,152.14000000000001,152.17000000000002,152.21,153.42000000000002,22.080000000000002,21.77,21.61,21.43,21.26,21.09,20.94,20.8,20.59,N/A,N/A -2012,4,2,14,30,100780,99610,98480,81.73,0,8.620000000000001,9.41,9.55,9.620000000000001,9.65,9.67,9.68,9.69,9.83,147.02,147.07,147.11,147.16,147.23,147.31,147.44,147.57,148.31,22.32,22.02,21.85,21.66,21.47,21.3,21.11,20.93,20.6,N/A,N/A -2012,4,2,15,30,100780,99620,98490,84.21000000000001,0,7.98,8.73,9.01,9.36,9.89,10.55,10.93,11.22,11.700000000000001,151.46,152.29,153.20000000000002,154.67000000000002,157.26,160.62,162.77,164.46,167.72,22.56,22.32,22.19,22.07,22,21.97,21.92,21.87,21.72,N/A,N/A -2012,4,2,16,30,100820,99660,98530,84.36,0,8.75,9.57,9.73,9.81,9.86,9.89,10.08,10.290000000000001,10.73,137.6,137.66,137.93,138.31,138.78,139.33,141.28,143.48,149.19,22.48,22.2,22.05,21.86,21.7,21.53,21.400000000000002,21.29,21.150000000000002,N/A,N/A -2012,4,2,17,30,100820,99650,98520,87.16,0,10.21,11.14,11.33,11.4,11.44,11.450000000000001,11.43,11.42,11.36,114.12,114.16,114.27,114.38,114.51,114.64,114.82000000000001,114.99000000000001,115.57000000000001,21.56,21.19,21.01,20.81,20.62,20.44,20.25,20.07,19.71,N/A,N/A -2012,4,2,18,30,100830,99660,98530,83.93,0,8.35,9.07,9.23,9.3,9.34,9.370000000000001,9.4,9.42,9.59,124.78,125.19,125.48,125.82000000000001,126.2,126.60000000000001,127.19,127.75,130.24,21.94,21.62,21.45,21.26,21.080000000000002,20.900000000000002,20.72,20.56,20.25,N/A,N/A -2012,4,2,19,30,100840,99670,98540,84.31,0,8.19,8.94,9.11,9.200000000000001,9.26,9.31,9.36,9.41,10.11,128.03,128.72,128.81,128.96,129.16,129.4,129.74,130.07,133.22,22.13,21.81,21.650000000000002,21.46,21.28,21.1,20.93,20.76,20.57,N/A,N/A -2012,4,2,20,30,100760,99600,98470,84.17,0,8.72,9.49,9.65,9.75,9.94,10.17,10.73,11.34,11.86,111.16,111.57000000000001,112.06,112.73,113.92,115.4,118.41,121.61,125.28,22.31,22.02,21.86,21.69,21.54,21.41,21.36,21.330000000000002,21.28,N/A,N/A -2012,4,2,21,30,100720,99560,98430,89.55,0,9.35,10.22,10.42,10.57,10.82,11.13,11.75,12.4,12.99,115.8,116.22,116.58,117.08,117.9,118.9,122.05,125.53,129.34,22.34,22.04,21.89,21.71,21.54,21.39,21.330000000000002,21.29,21.22,N/A,N/A -2012,4,2,22,30,100690,99520,98400,90.4,0,8.74,9.59,9.81,10,10.39,10.9,11.290000000000001,11.620000000000001,12.01,116.32000000000001,116.75,117.13,117.72,118.78,120.17,122.74000000000001,125.45,129.42000000000002,22.45,22.17,22.01,21.84,21.69,21.57,21.48,21.42,21.34,N/A,N/A -2012,4,2,23,30,100670,99500,98380,92.57000000000001,0,7.930000000000001,9.09,9.540000000000001,9.96,10.32,10.620000000000001,10.89,11.120000000000001,11.55,122.68,124.12,125.25,126.78,128.41,130.09,131.84,133.48,136.81,22.76,22.57,22.48,22.38,22.29,22.2,22.080000000000002,21.96,21.64,N/A,N/A -2012,4,3,0,30,100670,99510,98390,96.88,0,8.620000000000001,9.82,10.24,10.58,10.89,11.17,11.44,11.68,12.19,127.2,127.46000000000001,127.65,127.88000000000001,128.14000000000001,128.42000000000002,128.78,129.13,130.01,22.89,22.66,22.52,22.35,22.22,22.12,22.04,21.97,21.84,N/A,N/A -2012,4,3,1,30,100670,99510,98390,94.54,0,9.42,10.77,11.24,11.66,12,12.3,12.58,12.84,13.31,137.47,136.83,136.65,136.54,136.6,136.78,137.29,137.89000000000001,140.45000000000002,23.3,23.13,23.02,22.87,22.73,22.59,22.45,22.32,22.06,N/A,N/A -2012,4,3,2,30,100680,99530,98400,95.18,0,7.65,8.8,9.16,9.46,9.700000000000001,9.91,10.1,10.26,10.64,135.39000000000001,135.46,135.62,135.84,136.15,136.49,137.03,137.58,139.66,23.2,23.05,22.95,22.82,22.69,22.55,22.400000000000002,22.26,21.96,N/A,N/A -2012,4,3,3,30,100700,99540,98420,94.60000000000001,0.4,8.620000000000001,10.03,10.58,11.1,11.52,11.89,12.13,12.3,12.16,133.1,133.87,134.52,135.41,136.39000000000001,137.48,138.77,140.04,143.33,23.17,22.98,22.86,22.69,22.52,22.34,22.150000000000002,21.97,21.64,N/A,N/A -2012,4,3,4,30,100710,99550,98430,95.81,0,7.33,8.46,8.870000000000001,9.25,9.6,9.94,10.28,10.6,11.290000000000001,143.6,144.07,144.38,144.79,145.26,145.78,146.41,147.03,148.55,22.97,22.76,22.62,22.47,22.32,22.17,22.01,21.87,21.57,N/A,N/A -2012,4,3,5,30,100730,99570,98450,94.94,0,6.68,7.74,8.15,8.540000000000001,8.9,9.25,9.61,9.94,10.65,147.94,148.27,148.52,148.83,149.15,149.49,149.87,150.25,151.17000000000002,22.92,22.71,22.580000000000002,22.42,22.27,22.12,21.97,21.830000000000002,21.53,N/A,N/A -2012,4,3,6,30,100800,99640,98510,93.47,0,7.04,8.01,8.370000000000001,8.700000000000001,8.99,9.27,9.56,9.83,10.41,149.22,149.48,149.67000000000002,149.89000000000001,150.12,150.34,150.6,150.85,151.46,23.080000000000002,22.85,22.71,22.55,22.39,22.23,22.06,21.91,21.6,N/A,N/A -2012,4,3,7,30,100810,99650,98520,91.78,0,7.67,8.74,9.120000000000001,9.47,9.78,10.08,10.39,10.67,11.3,155.53,155.67000000000002,155.77,155.88,155.99,156.11,156.25,156.39000000000001,156.75,23.18,22.96,22.82,22.66,22.51,22.35,22.19,22.04,21.73,N/A,N/A -2012,4,3,8,30,100810,99650,98530,90.31,0,7.84,8.94,9.32,9.67,9.98,10.27,10.57,10.85,11.46,151.62,151.84,152.02,152.23,152.45000000000002,152.68,152.95000000000002,153.21,153.88,23.22,23.02,22.88,22.72,22.57,22.41,22.26,22.11,21.81,N/A,N/A -2012,4,3,9,30,100850,99690,98560,88.85000000000001,0,7.86,8.97,9.370000000000001,9.72,10.040000000000001,10.34,10.63,10.91,11.48,148.36,148.64000000000001,148.86,149.11,149.36,149.63,149.92000000000002,150.20000000000002,150.86,23.27,23.07,22.95,22.79,22.63,22.48,22.32,22.17,21.86,N/A,N/A -2012,4,3,10,30,100820,99660,98540,86.85000000000001,0,8.27,9.46,9.870000000000001,10.25,10.58,10.89,11.21,11.51,12.15,149.89000000000001,150.11,150.32,150.57,150.84,151.11,151.43,151.74,152.47,23.34,23.150000000000002,23.02,22.87,22.73,22.580000000000002,22.43,22.29,22,N/A,N/A -2012,4,3,11,30,100860,99700,98580,86.06,0,8.41,9.61,10.05,10.44,10.790000000000001,11.1,11.43,11.73,12.38,145.83,146.34,146.65,147.02,147.39000000000001,147.76,148.18,148.59,149.53,23.37,23.19,23.07,22.92,22.77,22.62,22.48,22.330000000000002,22.04,N/A,N/A -2012,4,3,12,30,100880,99720,98590,85.17,0,7.9,9.05,9.450000000000001,9.81,10.13,10.43,10.74,11.040000000000001,11.69,145.56,145.96,146.24,146.6,146.99,147.4,147.89000000000001,148.36,149.52,23.38,23.21,23.09,22.95,22.8,22.66,22.52,22.39,22.12,N/A,N/A -2012,4,3,13,30,100920,99760,98640,83.62,0,9.02,10.27,10.71,11.08,11.42,11.73,12.05,12.34,12.99,147.51,147.81,147.97,148.18,148.4,148.64000000000001,148.94,149.23,149.97,23.46,23.3,23.19,23.05,22.91,22.77,22.62,22.490000000000002,22.23,N/A,N/A -2012,4,3,14,30,100930,99770,98650,83.67,0,8.91,10.16,10.59,10.97,11.31,11.63,11.950000000000001,12.25,12.93,144.36,144.81,145.13,145.5,145.9,146.3,146.77,147.22,148.31,23.51,23.35,23.240000000000002,23.1,22.96,22.830000000000002,22.69,22.57,22.330000000000002,N/A,N/A -2012,4,3,15,30,100990,99830,98710,84.02,0,8.01,9.16,9.59,9.96,10.290000000000001,10.6,10.91,11.19,11.8,142.68,143.22,143.58,144.01,144.46,144.94,145.49,146.03,147.4,23.56,23.39,23.27,23.13,22.98,22.84,22.69,22.56,22.3,N/A,N/A -2012,4,3,16,30,101020,99850,98730,84.7,0,7.7700000000000005,8.85,9.24,9.6,9.91,10.21,10.53,10.82,11.51,138.46,138.98,139.35,139.82,140.33,140.88,141.55,142.22,144,23.56,23.39,23.27,23.13,22.990000000000002,22.85,22.71,22.59,22.36,N/A,N/A -2012,4,3,17,30,101000,99840,98710,85.79,0,8.120000000000001,9.24,9.620000000000001,9.96,10.27,10.55,10.83,11.1,11.67,147.47,147.62,147.74,147.88,148.03,148.20000000000002,148.41,148.62,149.19,23.54,23.35,23.22,23.06,22.91,22.76,22.6,22.45,22.14,N/A,N/A -2012,4,3,18,30,101040,99880,98760,86.94,0,6.11,6.91,7.21,7.46,7.7,7.930000000000001,8.16,8.39,8.88,142.54,143.04,143.36,143.73,144.13,144.53,144.99,145.43,146.48,23.54,23.32,23.18,23.02,22.86,22.7,22.53,22.38,22.06,N/A,N/A -2012,4,3,19,30,101030,99870,98750,89.66,0,6.19,6.91,7.23,7.66,7.95,8.16,8.42,8.69,9.26,141.91,142.6,143.26,144.3,145.13,145.82,146.69,147.56,149.44,23.47,23.22,23.080000000000002,22.92,22.75,22.57,22.400000000000002,22.25,21.94,N/A,N/A -2012,4,3,20,30,101040,99880,98760,91.01,0,5.2,6.05,6.390000000000001,6.640000000000001,6.88,7.11,7.36,7.59,8.1,131.99,133.8,135.15,136.73,138.04,139.18,140.35,141.47,143.81,23.48,23.23,23.07,22.89,22.72,22.55,22.37,22.21,21.87,N/A,N/A -2012,4,3,21,30,100960,99800,98680,92.25,0,5.99,6.82,7.11,7.36,7.59,7.8,8.02,8.22,8.66,130.6,131.25,131.71,132.31,132.98,133.67000000000002,134.53,135.38,137.56,23.38,23.16,23.03,22.87,22.7,22.55,22.38,22.22,21.900000000000002,N/A,N/A -2012,4,3,22,30,100880,99730,98600,93.08,0,7.3,8.35,8.72,9.06,9.370000000000001,9.66,9.94,10.21,10.73,130.99,131.83,132.39000000000001,133.16,134.05,135.03,136.19,137.32,140,23.400000000000002,23.21,23.09,22.95,22.8,22.66,22.51,22.37,22.05,N/A,N/A -2012,4,3,23,30,100900,99740,98620,94.10000000000001,0,6.28,7.2700000000000005,7.640000000000001,7.98,8.290000000000001,8.59,8.88,9.16,9.78,130.8,131.64000000000001,132.26,133.05,133.92000000000002,134.86,136.03,137.20000000000002,140.65,23.330000000000002,23.12,22.990000000000002,22.84,22.69,22.55,22.400000000000002,22.27,22.02,N/A,N/A -2012,4,4,0,30,100890,99730,98600,95.27,0.4,5.98,6.92,7.28,7.640000000000001,7.99,8.32,8.69,9.06,10,127.97,129.21,130.19,131.55,133.14000000000001,134.88,137.07,139.28,145.74,23.29,23.09,22.97,22.830000000000002,22.7,22.57,22.45,22.35,22.19,N/A,N/A -2012,4,4,1,30,100900,99730,98610,96.31,0.4,6.59,7.6000000000000005,7.98,8.36,8.73,9.1,9.49,9.85,10.71,128.12,129.08,129.88,131.04,132.77,134.84,138.66,142.74,156.05,23.25,23.05,22.95,22.830000000000002,22.73,22.64,22.59,22.56,22.62,N/A,N/A -2012,4,4,2,30,100960,99800,98680,97.16,0.4,6.11,7.17,7.61,8.01,8.370000000000001,8.700000000000001,8.98,9.23,9.65,142.99,144.1,144.93,145.96,147.07,148.26,149.73,151.18,156.01,23.26,23.09,22.98,22.86,22.740000000000002,22.63,22.51,22.39,22.23,N/A,N/A -2012,4,4,3,30,100960,99800,98680,96.38,0,6.68,7.78,8.21,8.64,9,9.33,9.55,9.73,9.91,149.5,149.74,150.12,150.81,151.96,153.45000000000002,156.31,159.38,168.79,23.32,23.16,23.06,22.95,22.86,22.78,22.75,22.740000000000002,22.95,N/A,N/A -2012,4,4,4,30,101010,99850,98730,97.24000000000001,0,4.96,5.8100000000000005,6.15,6.49,6.8100000000000005,7.12,7.46,7.8,7.890000000000001,137.78,138.82,139.8,141.21,143.22,145.74,150.02,154.73,163.8,23.22,23.01,22.89,22.740000000000002,22.61,22.490000000000002,22.35,22.22,22.080000000000002,N/A,N/A -2012,4,4,5,30,101040,99880,98760,97.72,0,4.3100000000000005,5.05,5.3500000000000005,5.65,5.93,6.2,6.46,6.7,7.43,141.23,141.85,142.42000000000002,143.34,144.77,146.59,150.12,153.93,164.26,23.14,22.91,22.78,22.64,22.54,22.47,22.37,22.27,22.11,N/A,N/A -2012,4,4,6,30,101070,99910,98780,97.8,0,4.69,5.47,5.78,6.09,6.390000000000001,6.7,7.1000000000000005,7.54,8.38,143.44,144.94,146.16,147.93,149.89000000000001,152.09,155.01,158.14000000000001,166.07,23.13,22.93,22.81,22.67,22.54,22.42,22.240000000000002,22.06,22.3,N/A,N/A -2012,4,4,7,30,101030,99870,98740,98.29,0,4.96,5.76,6.12,6.53,7,7.53,8.09,8.64,9,152.28,153.6,154.64000000000001,156.11,158,160.3,163.24,166.36,170.23,22.94,22.68,22.54,22.39,22.26,22.150000000000002,22.28,22.490000000000002,22.69,N/A,N/A -2012,4,4,8,30,101030,99870,98750,96.88,0,5.16,6.04,6.44,6.9,7.390000000000001,7.91,8.08,8.15,7.8100000000000005,151.51,152.65,153.8,155.64000000000001,158.3,161.51,163.8,165.62,166.17000000000002,23.02,22.82,22.73,22.650000000000002,22.66,22.73,22.87,23.03,23.09,N/A,N/A -2012,4,4,9,30,101030,99860,98740,97.98,0,3.95,4.6000000000000005,4.9,5.22,5.75,6.43,7.07,7.67,7.96,150.82,151.34,151.89000000000001,152.76,155.85,160.61,164.17000000000002,167.23,169.1,22.86,22.62,22.490000000000002,22.37,22.35,22.400000000000002,22.63,22.89,23.080000000000002,N/A,N/A -2012,4,4,10,30,101070,99910,98790,97.38,0,2.84,3.5500000000000003,3.92,4.44,4.91,5.3500000000000005,5.68,5.94,6.2,142.82,145.84,148.66,153.13,158.06,163.45000000000002,166.69,169.01,173.51,22.990000000000002,22.830000000000002,22.75,22.71,22.68,22.66,22.75,22.87,22.990000000000002,N/A,N/A -2012,4,4,11,30,101060,99890,98770,98.79,0.4,3.46,3.98,4.21,4.49,4.8500000000000005,5.29,5.62,5.91,6.19,143.5,144.70000000000002,145.73,147.4,150.53,154.81,157.48,159.56,161.86,22.82,22.59,22.48,22.39,22.51,22.77,22.97,23.13,23.080000000000002,N/A,N/A -2012,4,4,12,30,101080,99910,98780,97.29,0,5.5600000000000005,5.78,5.53,4.98,4.7,4.5600000000000005,4.57,4.63,4.97,73.81,75.15,80.26,90.91,100.18,108.8,117.37,125.33,137.66,22.13,21.8,21.7,21.68,21.68,21.68,21.68,21.68,21.6,N/A,N/A -2012,4,4,13,30,101110,99940,98810,96.43,0,6.07,6.2700000000000005,6.12,5.8,5.58,5.4,5.29,5.21,5.25,88.23,89.97,92.82000000000001,98.06,103.21000000000001,108.28,113.33,117.88,127.46000000000001,22.2,21.92,21.84,21.85,21.84,21.830000000000002,21.78,21.72,21.61,N/A,N/A -2012,4,4,14,30,101150,99980,98850,96.21000000000001,2.2,5.46,5.58,5.37,4.9,4.63,4.48,4.38,4.3100000000000005,4.39,92.18,93.11,96.89,106.42,113.28,118.7,124.54,130.04,140.24,22.34,22.07,21.97,21.95,21.900000000000002,21.85,21.79,21.740000000000002,21.59,N/A,N/A -2012,4,4,15,30,101140,99980,98850,96.95,0,3.91,3.95,3.89,3.88,3.9,3.95,4.0600000000000005,4.17,4.57,97.2,105.64,111.4,118.35000000000001,124.76,130.92000000000002,136.67000000000002,141.98,150.12,22.63,22.42,22.330000000000002,22.23,22.13,22.03,21.93,21.84,21.650000000000002,N/A,N/A -2012,4,4,16,30,101110,99950,98820,97.31,0,3.56,3.69,3.71,3.77,3.86,3.97,4.11,4.24,4.6000000000000005,113.06,117.69,124.32000000000001,137,145.53,151.53,155.15,157.94,161.6,22.79,22.51,22.37,22.25,22.150000000000002,22.07,21.96,21.85,21.580000000000002,N/A,N/A -2012,4,4,17,30,101110,99950,98820,97.15,0,2.66,2.99,3.1,3.19,3.3200000000000003,3.5,3.69,3.87,4.05,137.21,142.68,145.75,148.68,152.06,155.98,159.14000000000001,161.89000000000001,163.55,23.06,22.78,22.62,22.45,22.32,22.22,22.080000000000002,21.93,21.72,N/A,N/A -2012,4,4,18,30,101090,99930,98800,94.25,0,3.68,4.01,4.09,4.14,4.18,4.21,4.23,4.26,4.36,150.91,151.42000000000002,151.71,152.01,152.3,152.6,152.97,153.34,154.57,23.29,23.03,22.87,22.68,22.5,22.31,22.12,21.95,21.59,N/A,N/A -2012,4,4,19,30,101070,99900,98780,93.01,0,3.25,3.5500000000000003,3.63,3.68,3.73,3.7800000000000002,3.84,3.9,4.08,154.19,154.25,154.35,154.39000000000001,154.42000000000002,154.43,154.4,154.36,154.26,23.35,23.09,22.93,22.740000000000002,22.56,22.38,22.19,22.02,21.66,N/A,N/A -2012,4,4,20,30,100970,99810,98690,92.22,0,3.88,4.2,4.2700000000000005,4.3100000000000005,4.34,4.36,4.38,4.4,4.46,147.19,147.55,147.78,147.98,148.19,148.39000000000001,148.63,148.88,149.63,23.43,23.14,22.98,22.79,22.61,22.43,22.240000000000002,22.06,21.69,N/A,N/A -2012,4,4,21,30,100890,99730,98600,94.10000000000001,0,4.21,4.5200000000000005,4.5600000000000005,4.5600000000000005,4.54,4.51,4.47,4.43,4.39,133.78,133.78,133.96,134.07,134.13,134.14000000000001,134.07,133.98,133.61,23.31,23.03,22.87,22.68,22.5,22.32,22.14,21.97,21.63,N/A,N/A -2012,4,4,22,30,100980,99830,98700,95.42,2.9000000000000004,3.71,4.19,4.39,4.57,4.72,4.8500000000000005,4.96,5.04,5.14,92.11,94.49,95.91,97.51,98.89,100.19,101.35000000000001,102.4,104.99000000000001,23.13,22.900000000000002,22.77,22.580000000000002,22.41,22.240000000000002,22.06,21.89,21.61,N/A,N/A -2012,4,4,23,30,101000,99820,98680,89.08,19.400000000000002,9.700000000000001,10.43,10.540000000000001,10.59,10.58,10.56,10.52,10.47,10.39,338.67,337.62,337.59000000000003,337.53000000000003,337.47,337.41,337.31,337.22,336.72,20.05,19.59,19.39,19.19,19,18.82,18.64,18.47,18.12,N/A,N/A -2012,4,5,0,30,100790,99620,98500,84.01,103.30000000000001,3.66,4.34,4.74,5.24,5.5,5.61,5.5,5.36,4.69,41.59,36.65,33.21,31.59,31.11,31.27,32.04,32.83,35.27,20.35,21.06,21.73,22.68,23.32,23.78,24.07,24.310000000000002,24.53,N/A,N/A -2012,4,5,1,30,100750,99580,98460,83.45,0,1.55,1.46,1.29,1.07,1.1400000000000001,1.46,1.87,2.34,3.3000000000000003,190.14000000000001,198.96,199.89000000000001,193.62,181.64000000000001,160.15,149.69,143.64000000000001,138.17000000000002,21.2,21.32,21.650000000000002,22.39,22.830000000000002,23.05,23.1,23.09,23.07,N/A,N/A -2012,4,5,2,30,100820,99650,98530,85.66,0,3.2,3.29,3.35,3.59,3.83,4.07,4.34,4.6000000000000005,5.14,238.36,234.21,228.11,214.12,204.73000000000002,198.42000000000002,193.51,189.25,183.66,21.830000000000002,21.62,21.68,22.04,22.27,22.43,22.45,22.43,22.23,N/A,N/A -2012,4,5,3,30,100810,99640,98520,91.53,0,5.79,6.51,6.74,6.99,7.13,7.21,7.17,7.12,6.87,211.95000000000002,209.49,207.46,204.82,202.43,200.28,199.09,198.22,198.13,22.06,21.91,21.94,22.07,22.21,22.34,22.41,22.46,22.38,N/A,N/A -2012,4,5,4,30,100870,99700,98580,88.37,0,2.29,2.45,2.68,3.2,3.58,3.86,4.13,4.37,4.83,184.14000000000001,183.18,182.53,181.43,180.82,180.58,180.67000000000002,180.85,181.88,22.22,21.96,21.89,21.89,21.87,21.85,21.79,21.740000000000002,21.56,N/A,N/A -2012,4,5,5,30,100890,99720,98590,88.10000000000001,0,1.59,1.6,1.59,1.62,1.72,1.8800000000000001,2.04,2.2,2.59,88.42,91.89,97.89,112.82000000000001,124.62,135.08,143.06,149.85,160.49,22.26,21.98,21.85,21.75,21.650000000000002,21.55,21.44,21.34,21.13,N/A,N/A -2012,4,5,6,30,100930,99760,98630,87.82000000000001,0,2.33,2.4,2.38,2.33,2.15,1.87,1.67,1.51,1.56,69.34,69.52,69.63,69.8,74.58,82.34,98.48,115.3,138.94,22.39,22.09,21.92,21.73,21.56,21.400000000000002,21.27,21.150000000000002,20.93,N/A,N/A -2012,4,5,7,30,100960,99790,98660,87.97,0,2.34,2.41,2.4,2.35,2.2800000000000002,2.19,1.97,1.76,1.87,104.44,104.87,105.21000000000001,105.93,107.08,108.56,116.34,124.74000000000001,166.45000000000002,22.52,22.22,22.06,21.86,21.68,21.490000000000002,21.32,21.150000000000002,20.91,N/A,N/A -2012,4,5,8,30,100940,99770,98640,89.69,0,2.6,2.67,2.64,2.58,2.48,2.35,2.38,2.46,2.69,133.86,134.75,135.65,137.26,142.19,149.56,161.69,175.24,185.91,22.53,22.23,22.06,21.87,21.7,21.53,21.38,21.25,21.02,N/A,N/A -2012,4,5,9,30,100910,99750,98620,91.29,0,2.33,2.42,2.47,2.6,2.85,3.2,3.41,3.5500000000000003,3.84,181.59,183.63,185.98,191.01,196.79,203.65,206.74,208.20000000000002,211.6,22.41,22.12,21.97,21.82,21.71,21.650000000000002,21.56,21.47,21.28,N/A,N/A -2012,4,5,10,30,100910,99740,98620,93.69,0,3.5,3.72,3.83,4.0600000000000005,4.4,4.86,5.11,5.25,5.45,206.99,207.89000000000001,208.8,210.63,212.98000000000002,216.01,217.66,218.67000000000002,220.18,22.38,22.09,21.94,21.79,21.69,21.64,21.56,21.47,21.25,N/A,N/A -2012,4,5,11,30,100910,99750,98620,94.03,0,5.16,5.55,5.65,5.7,5.75,5.79,5.86,5.95,6.390000000000001,214.92000000000002,215.37,215.62,215.9,216.14000000000001,216.35,216.83,217.39000000000001,217.78,22.43,22.12,21.95,21.75,21.57,21.39,21.2,21.03,20.75,N/A,N/A -2012,4,5,12,30,100930,99760,98630,94.71000000000001,0,6.140000000000001,6.51,6.5600000000000005,6.55,6.5200000000000005,6.49,6.45,6.4,6.32,224.21,224.08,223.93,223.74,223.56,223.39000000000001,223.21,223.05,222.88,22.07,21.7,21.51,21.29,21.07,20.85,20.67,20.5,20.2,N/A,N/A -2012,4,5,13,30,100950,99790,98650,97.96000000000001,0,6.7700000000000005,7.21,7.2700000000000005,7.26,7.24,7.2,7.17,7.15,7.2,228.01,227.75,227.45000000000002,227.02,226.53,225.99,225.23000000000002,224.46,222.20000000000002,21.55,21.12,20.93,20.8,20.68,20.56,20.42,20.3,20.01,N/A,N/A -2012,4,5,14,30,101040,99880,98750,95.64,0,4.75,4.97,4.99,4.97,4.95,4.92,4.88,4.83,4.82,246.56,247.35,248.05,248.97,250.01000000000002,251.16,252.93,254.79,259.04,21.97,21.64,21.47,21.28,21.09,20.91,20.77,20.650000000000002,20.45,N/A,N/A -2012,4,5,15,30,101070,99900,98770,93.08,2.6,5.26,5.51,5.53,5.51,5.53,5.59,5.64,5.7,5.82,295.34000000000003,295.23,294.82,294.09000000000003,292.68,290.67,287.81,284.76,279.34000000000003,22.39,22.080000000000002,21.93,21.76,21.62,21.5,21.42,21.35,21.1,N/A,N/A -2012,4,5,16,30,101090,99920,98790,93.23,2.2,5.61,5.96,6.0200000000000005,6.03,6.03,6.01,5.99,5.97,5.95,316.08,315.68,315.41,315.07,314.69,314.27,313.68,313.08,310.25,21.92,21.57,21.39,21.2,21.01,20.830000000000002,20.64,20.47,20.14,N/A,N/A -2012,4,5,17,30,101100,99930,98790,92.93,0,5.61,5.93,5.98,5.98,5.96,5.94,5.9,5.87,5.8,322.72,322.5,322.28000000000003,321.96,321.59000000000003,321.16,320.5,319.82,316.73,21.94,21.59,21.42,21.22,21.03,20.85,20.67,20.5,20.17,N/A,N/A -2012,4,5,18,30,101090,99930,98800,90.64,0,4.09,4.3100000000000005,4.36,4.37,4.38,4.39,4.39,4.39,4.41,321.54,320.12,319.08,317.95,316.87,315.78000000000003,314.58,313.43,310.7,22.32,21.990000000000002,21.82,21.63,21.44,21.26,21.07,20.900000000000002,20.54,N/A,N/A -2012,4,5,19,30,101090,99930,98800,88.83,0,1.68,1.84,1.9100000000000001,1.98,2.05,2.12,2.21,2.3000000000000003,2.6,327.53000000000003,327.3,327.2,327.09000000000003,326.97,326.86,326.71,326.55,325.74,22.66,22.35,22.18,21.98,21.79,21.61,21.42,21.25,20.89,N/A,N/A -2012,4,5,20,30,101060,99890,98760,85.79,0,1.27,1.33,1.36,1.37,1.3800000000000001,1.3900000000000001,1.41,1.42,1.45,0.64,359.57,358.87,358.18,357.54,356.89,356.18,355.5,353.88,23.02,22.71,22.54,22.34,22.150000000000002,21.96,21.77,21.580000000000002,21.2,N/A,N/A -2012,4,5,21,30,101000,99840,98710,84.54,0,2.88,3.09,3.21,3.46,3.83,4.37,4.69,4.89,5.12,339.71,339.64,339.65000000000003,339.65000000000003,339.7,339.8,339.52,339.06,336.57,23.28,22.990000000000002,22.85,22.72,22.63,22.580000000000002,22.490000000000002,22.39,22.16,N/A,N/A -2012,4,5,22,30,100980,99820,98700,85.62,0,1.7,1.67,1.45,0.93,0.92,1.32,1.74,2.18,2.99,190.83,191.5,213.72,277.61,305.48,323.29,332.8,336.89,340.24,23.39,23.09,23,23.05,23.03,22.93,22.87,22.830000000000002,22.71,N/A,N/A -2012,4,5,23,30,100960,99800,98680,86.68,0,1.12,0.31,0.22,0.5700000000000001,1.08,1.59,2.04,2.46,3.24,167.88,160.86,148.06,68.32000000000001,356.89,353.08,350.5,348.74,345.86,23.37,23.39,23.43,23.43,23.52,23.68,23.69,23.64,23.5,N/A,N/A -2012,4,6,0,30,100950,99800,98680,82.93,0,0.89,0.59,0.55,0.87,1.22,1.6,1.97,2.32,2.97,149.64000000000001,84.34,57.65,31.98,13.38,7.19,3.11,0.3,356.78000000000003,23.91,24.240000000000002,24.44,24.560000000000002,24.62,24.64,24.61,24.580000000000002,24.43,N/A,N/A -2012,4,6,1,30,100980,99830,98710,83.09,0,2,1.6,1.25,0.89,0.76,0.74,0.93,1.27,2.0300000000000002,167.93,157.62,147.64000000000001,131.22,106.54,71.42,51.42,33.79,21.47,24.28,24.830000000000002,25.05,25.07,25.060000000000002,25.04,25.02,25.01,24.91,N/A,N/A -2012,4,6,2,30,101030,99880,98760,88.55,0,2.5300000000000002,1.6600000000000001,0.99,0.33,0.33,0.78,1.28,1.79,2.59,194.83,193.3,175.48,144.34,122.22,62.64,31.26,28.1,25.86,23.69,24.13,24.45,24.84,25.1,25.28,25.34,25.35,25.19,N/A,N/A -2012,4,6,3,30,101080,99920,98800,90.87,0,1.41,0.67,0.5,0.7000000000000001,1.02,1.56,2.08,2.58,3.38,218.46,246.67000000000002,267.68,328.39,5.51,12.98,17.23,19.34,21.51,23.53,23.93,24.16,24.330000000000002,24.46,24.57,24.63,24.66,24.560000000000002,N/A,N/A -2012,4,6,4,30,101120,99960,98840,91.77,0,1.07,1.79,2.11,2.49,2.83,3.16,3.42,3.65,4.05,334.8,350.1,359.35,3.36,6.11,7.61,8.67,9.49,12.700000000000001,23.66,24.13,24.36,24.5,24.57,24.61,24.560000000000002,24.47,24.25,N/A,N/A -2012,4,6,5,30,101140,99980,98850,93.07000000000001,0,1.9000000000000001,2.19,2.32,2.46,2.62,2.7800000000000002,2.96,3.13,3.48,305.78000000000003,318.87,327.17,334.84000000000003,340.75,345.49,349.25,352.46,357.93,23.22,23.59,23.84,24.05,24.18,24.26,24.26,24.23,24.060000000000002,N/A,N/A -2012,4,6,6,30,101220,100050,98920,72.61,0,5.04,5.39,5.42,5.36,5.26,5.16,5.08,5.01,5.09,15.9,15.63,15.610000000000001,15.82,16.35,17.13,18.23,19.36,24.28,23.93,23.81,23.72,23.61,23.5,23.37,23.22,23.06,22.77,N/A,N/A -2012,4,6,7,30,101240,100080,98950,75.53,0,5.34,5.76,5.84,5.88,5.96,6.05,6.37,6.75,7.88,43.81,44.34,44.660000000000004,45.07,45.59,46.19,47.69,49.42,52.86,23.22,22.96,22.81,22.63,22.46,22.3,22.17,22.07,22.21,N/A,N/A -2012,4,6,8,30,101270,100100,98960,74.43,0,7.3500000000000005,7.99,8.13,8.19,8.22,8.24,8.25,8.26,8.31,56.38,56.53,56.63,56.74,56.83,56.93,57.050000000000004,57.17,57.52,23.11,22.830000000000002,22.67,22.490000000000002,22.3,22.13,21.94,21.77,21.43,N/A,N/A -2012,4,6,9,30,101290,100120,98980,67.87,0,7.640000000000001,8.290000000000001,8.41,8.47,8.49,8.51,8.52,8.540000000000001,8.74,58.14,58.33,58.44,58.57,58.71,58.86,59.06,59.27,60.28,23.04,22.76,22.61,22.42,22.240000000000002,22.07,21.89,21.73,21.47,N/A,N/A -2012,4,6,10,30,101310,100140,99010,70.81,0,6.91,7.49,7.61,7.66,7.69,7.7,7.72,7.72,7.76,65.31,65.56,65.71000000000001,65.87,66.02,66.18,66.36,66.54,67.02,22.830000000000002,22.53,22.37,22.18,22,21.82,21.63,21.46,21.11,N/A,N/A -2012,4,6,11,30,101340,100170,99030,71.2,0,6.83,7.390000000000001,7.51,7.5600000000000005,7.59,7.61,7.61,7.61,7.61,66.12,66.36,66.51,66.66,66.8,66.94,67.1,67.25,67.62,22.73,22.42,22.25,22.06,21.87,21.68,21.490000000000002,21.32,20.94,N/A,N/A -2012,4,6,12,30,101390,100210,99070,70.96000000000001,0,7.46,8.09,8.22,8.290000000000001,8.32,8.34,8.35,8.35,8.34,71.55,71.64,71.7,71.76,71.82000000000001,71.87,71.93,71.98,72.12,22.6,22.28,22.11,21.91,21.72,21.54,21.35,21.17,20.79,N/A,N/A -2012,4,6,13,30,101420,100250,99110,71.4,0,7.63,8.26,8.4,8.46,8.5,8.52,8.53,8.53,8.540000000000001,72.56,72.81,72.95,73.09,73.23,73.35000000000001,73.5,73.64,74,22.41,22.080000000000002,21.900000000000002,21.71,21.52,21.34,21.14,20.96,20.59,N/A,N/A -2012,4,6,14,30,101500,100320,99180,72.44,0,6.78,7.32,7.44,7.49,7.5200000000000005,7.54,7.55,7.55,7.55,78.55,78.72,78.85000000000001,78.96000000000001,79.08,79.19,79.32000000000001,79.44,79.75,22.5,22.18,22,21.81,21.62,21.43,21.240000000000002,21.06,20.68,N/A,N/A -2012,4,6,15,30,101540,100370,99230,73.26,0,6.79,7.34,7.46,7.53,7.5600000000000005,7.58,7.59,7.6000000000000005,7.6000000000000005,80.58,80.73,80.83,80.93,81.03,81.13,81.24,81.34,81.58,22.53,22.19,22.02,21.830000000000002,21.63,21.45,21.25,21.07,20.69,N/A,N/A -2012,4,6,16,30,101560,100380,99240,73.52,0,6.82,7.36,7.48,7.54,7.57,7.59,7.59,7.6000000000000005,7.58,80.36,80.57000000000001,80.69,80.82000000000001,80.94,81.05,81.17,81.28,81.54,22.46,22.12,21.94,21.75,21.55,21.37,21.17,20.990000000000002,20.61,N/A,N/A -2012,4,6,17,30,101580,100400,99260,70.89,0,6.32,6.8,6.9,6.94,6.97,6.98,6.98,6.98,6.96,86.15,86.42,86.56,86.72,86.87,87.01,87.17,87.32000000000001,87.66,22.48,22.14,21.97,21.77,21.580000000000002,21.39,21.2,21.01,20.63,N/A,N/A -2012,4,6,18,30,101590,100410,99270,70.29,0,6.2,6.67,6.76,6.8,6.82,6.83,6.83,6.83,6.8100000000000005,90.93,91.21000000000001,91.38,91.56,91.72,91.88,92.05,92.2,92.55,22.52,22.19,22.01,21.82,21.62,21.44,21.240000000000002,21.06,20.68,N/A,N/A -2012,4,6,19,30,101590,100420,99280,67.78,0,6.2,6.67,6.76,6.8,6.82,6.82,6.82,6.8100000000000005,6.78,107.72,107.84,107.89,107.94,108,108.06,108.13,108.19,108.36,22.7,22.38,22.21,22.01,21.830000000000002,21.64,21.45,21.27,20.89,N/A,N/A -2012,4,6,20,30,101550,100380,99240,64.94,0,5.76,6.18,6.26,6.29,6.3,6.29,6.28,6.2700000000000005,6.21,116.58,116.58,116.56,116.54,116.51,116.5,116.49000000000001,116.48,116.47,22.88,22.57,22.400000000000002,22.21,22.02,21.84,21.650000000000002,21.47,21.1,N/A,N/A -2012,4,6,21,30,101530,100360,99220,65.64,0,5.2,5.58,5.64,5.66,5.66,5.66,5.65,5.63,5.58,122.51,122.48,122.46000000000001,122.44,122.41,122.39,122.36,122.34,122.27,22.93,22.63,22.46,22.27,22.080000000000002,21.900000000000002,21.7,21.52,21.14,N/A,N/A -2012,4,6,22,30,101530,100360,99220,68.52,0,5.29,5.68,5.74,5.76,5.7700000000000005,5.7700000000000005,5.75,5.73,5.68,123.56,123.65,123.69,123.73,123.78,123.82000000000001,123.87,123.92,124.06,22.85,22.55,22.38,22.19,22,21.82,21.63,21.45,21.07,N/A,N/A -2012,4,6,23,30,101530,100360,99220,72.12,0,4.69,4.99,5.04,5.04,5.04,5.0200000000000005,5,4.97,4.9,128.74,128.8,128.83,128.87,128.89000000000001,128.91,128.92000000000002,128.93,128.92000000000002,22.73,22.42,22.25,22.06,21.88,21.69,21.5,21.330000000000002,20.96,N/A,N/A -2012,4,7,0,30,101550,100370,99240,68.79,0,4.2700000000000005,4.55,4.59,4.6000000000000005,4.6000000000000005,4.59,4.57,4.5600000000000005,4.51,128.84,128.79,128.77,128.75,128.7,128.66,128.58,128.51,128.13,22.82,22.53,22.36,22.17,21.990000000000002,21.81,21.62,21.45,21.11,N/A,N/A -2012,4,7,1,30,101550,100370,99230,70.93,0,4.32,4.6000000000000005,4.64,4.64,4.64,4.64,4.62,4.61,4.58,129.84,129.79,129.76,129.7,129.64000000000001,129.57,129.45,129.34,128.81,22.72,22.41,22.240000000000002,22.05,21.87,21.69,21.5,21.32,20.98,N/A,N/A -2012,4,7,2,30,101590,100410,99270,70.02,0,4.24,4.51,4.55,4.5600000000000005,4.5600000000000005,4.55,4.54,4.53,4.51,129.82,129.71,129.59,129.46,129.31,129.16,128.94,128.74,127.9,22.78,22.48,22.31,22.12,21.93,21.75,21.57,21.39,21.05,N/A,N/A -2012,4,7,3,30,101610,100440,99300,66.21000000000001,0,4.14,4.43,4.49,4.51,4.53,4.54,4.5600000000000005,4.58,4.68,120.86,120.74000000000001,120.65,120.54,120.41,120.28,120.08,119.9,119.16,22.92,22.63,22.47,22.28,22.09,21.92,21.73,21.56,21.22,N/A,N/A -2012,4,7,4,30,101660,100490,99350,65.86,0,4.17,4.48,4.54,4.57,4.58,4.6000000000000005,4.61,4.62,4.66,127.25,127.2,127.10000000000001,126.99000000000001,126.89,126.79,126.66,126.54,126.16,22.94,22.66,22.490000000000002,22.3,22.11,21.93,21.740000000000002,21.56,21.19,N/A,N/A -2012,4,7,5,30,101660,100490,99350,64.92,0,4.08,4.39,4.44,4.47,4.49,4.51,4.5200000000000005,4.54,4.59,119.77,119.75,119.73,119.71000000000001,119.66,119.61,119.53,119.45,119.22,22.95,22.66,22.490000000000002,22.3,22.12,21.93,21.740000000000002,21.57,21.2,N/A,N/A -2012,4,7,6,30,101720,100540,99400,65.05,0,4.39,4.72,4.78,4.82,4.84,4.86,4.87,4.88,4.91,122.25,122.22,122.2,122.17,122.14,122.11,122.07000000000001,122.03,121.92,22.990000000000002,22.7,22.53,22.34,22.150000000000002,21.96,21.77,21.59,21.21,N/A,N/A -2012,4,7,7,30,101760,100580,99440,65.43,0,4.3500000000000005,4.67,4.73,4.76,4.78,4.79,4.8,4.8100000000000005,4.83,119.84,119.88,119.89,119.89,119.89,119.88,119.88,119.87,119.82000000000001,23.03,22.740000000000002,22.57,22.38,22.19,22.01,21.81,21.63,21.25,N/A,N/A -2012,4,7,8,30,101770,100590,99450,66.02,0,4.14,4.44,4.5,4.53,4.54,4.5600000000000005,4.57,4.58,4.61,114.18,114.24000000000001,114.27,114.31,114.33,114.36,114.4,114.44,114.54,22.96,22.66,22.490000000000002,22.3,22.11,21.93,21.73,21.56,21.18,N/A,N/A -2012,4,7,9,30,101800,100620,99480,66.28,0,4.25,4.57,4.63,4.67,4.69,4.71,4.72,4.73,4.76,115.94,116.07000000000001,116.13,116.2,116.27,116.34,116.41,116.49000000000001,116.67,22.97,22.67,22.5,22.31,22.12,21.93,21.740000000000002,21.56,21.18,N/A,N/A -2012,4,7,10,30,101810,100630,99490,67.24,0,4.78,5.14,5.21,5.24,5.2700000000000005,5.28,5.29,5.3,5.32,106.60000000000001,106.75,106.82000000000001,106.89,106.96000000000001,107.02,107.08,107.14,107.29,22.92,22.62,22.45,22.26,22.07,21.88,21.68,21.5,21.12,N/A,N/A -2012,4,7,11,30,101850,100670,99530,68.11,0,5.29,5.71,5.8,5.8500000000000005,5.88,5.9,5.92,5.93,5.95,111.16,111.17,111.21000000000001,111.24000000000001,111.27,111.29,111.32000000000001,111.34,111.39,22.88,22.57,22.400000000000002,22.21,22.02,21.830000000000002,21.63,21.45,21.06,N/A,N/A -2012,4,7,12,30,101870,100690,99550,67.82000000000001,0,5.18,5.57,5.65,5.69,5.71,5.73,5.73,5.74,5.74,99.75,99.94,100.07000000000001,100.2,100.31,100.42,100.54,100.66,100.9,22.830000000000002,22.51,22.34,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,4,7,13,30,101900,100730,99580,69.88,0,5.26,5.66,5.73,5.7700000000000005,5.8,5.8100000000000005,5.82,5.82,5.82,101.33,101.52,101.60000000000001,101.68,101.76,101.84,101.91,101.99000000000001,102.16,22.7,22.37,22.2,22.01,21.82,21.63,21.43,21.25,20.86,N/A,N/A -2012,4,7,14,30,101960,100780,99630,70.96000000000001,0,5.12,5.51,5.59,5.64,5.67,5.69,5.7,5.72,5.74,102.09,102.06,102.06,102.04,102.03,102.03,102.02,102,102,22.73,22.400000000000002,22.23,22.04,21.85,21.66,21.46,21.28,20.89,N/A,N/A -2012,4,7,15,30,101990,100810,99670,73.52,0,5.38,5.8,5.88,5.93,5.95,5.97,5.98,5.99,5.99,96.49000000000001,96.63,96.73,96.81,96.9,96.97,97.06,97.13,97.3,22.740000000000002,22.42,22.240000000000002,22.04,21.85,21.67,21.47,21.29,20.900000000000002,N/A,N/A -2012,4,7,16,30,102010,100830,99690,77.95,0,5.46,5.87,5.96,6.01,6.05,6.07,6.09,6.1000000000000005,6.11,99.63,99.84,99.96000000000001,100.08,100.2,100.31,100.43,100.53,100.78,22.67,22.330000000000002,22.16,21.96,21.77,21.580000000000002,21.38,21.2,20.81,N/A,N/A -2012,4,7,17,30,102030,100850,99710,77.41,0,5.47,5.87,5.95,5.99,6.0200000000000005,6.03,6.04,6.05,6.05,105.04,105.21000000000001,105.33,105.46000000000001,105.57000000000001,105.68,105.79,105.89,106.11,22.81,22.47,22.3,22.1,21.91,21.72,21.52,21.34,20.95,N/A,N/A -2012,4,7,18,30,102030,100860,99710,76.86,0,5,5.36,5.44,5.49,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,105.22,105.38,105.48,105.58,105.66,105.73,105.81,105.88,106.03,22.87,22.54,22.36,22.16,21.97,21.79,21.59,21.400000000000002,21.02,N/A,N/A -2012,4,7,19,30,102060,100880,99730,75.56,0,4.61,4.94,5.01,5.05,5.08,5.11,5.12,5.14,5.15,116.26,116.37,116.43,116.48,116.54,116.58,116.64,116.68,116.8,23.01,22.68,22.5,22.3,22.11,21.92,21.72,21.54,21.150000000000002,N/A,N/A -2012,4,7,20,30,102040,100860,99720,76.4,0,5.04,5.41,5.49,5.54,5.57,5.59,5.61,5.62,5.63,118.91,119.04,119.09,119.14,119.19,119.24000000000001,119.3,119.36,119.47,23.03,22.69,22.52,22.32,22.13,21.94,21.740000000000002,21.56,21.17,N/A,N/A -2012,4,7,21,30,102030,100860,99720,78,0,5.17,5.5600000000000005,5.65,5.69,5.72,5.74,5.75,5.76,5.7700000000000005,125.07000000000001,125.09,125.13000000000001,125.2,125.26,125.32000000000001,125.4,125.47,125.62,22.990000000000002,22.67,22.490000000000002,22.3,22.11,21.92,21.72,21.54,21.150000000000002,N/A,N/A -2012,4,7,22,30,102010,100840,99700,74.92,0,4.9,5.3,5.39,5.44,5.48,5.51,5.53,5.55,5.58,130.58,130.62,130.63,130.64000000000001,130.65,130.65,130.66,130.68,130.69,23.02,22.71,22.54,22.35,22.16,21.97,21.77,21.59,21.2,N/A,N/A -2012,4,7,23,30,102020,100840,99700,78.19,0,5.7700000000000005,6.24,6.33,6.37,6.390000000000001,6.4,6.390000000000001,6.38,6.3500000000000005,134.09,134.2,134.21,134.21,134.21,134.2,134.19,134.17000000000002,134.14000000000001,22.84,22.52,22.35,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,4,8,0,30,102020,100840,99700,77.04,0,5.62,6.05,6.140000000000001,6.18,6.2,6.2,6.2,6.2,6.17,136.48,136.49,136.49,136.48,136.47,136.45,136.44,136.44,136.41,22.75,22.43,22.26,22.06,21.87,21.68,21.48,21.3,20.91,N/A,N/A -2012,4,8,1,30,102040,100860,99710,79.92,0,5.7,6.17,6.2700000000000005,6.33,6.36,6.38,6.390000000000001,6.4,6.4,132.58,132.58,132.59,132.58,132.58,132.57,132.56,132.54,132.52,22.61,22.28,22.1,21.900000000000002,21.71,21.52,21.32,21.14,20.75,N/A,N/A -2012,4,8,2,30,102070,100890,99750,80.07000000000001,0,5.68,6.13,6.23,6.29,6.33,6.36,6.38,6.390000000000001,6.41,132.53,132.54,132.5,132.48,132.45,132.43,132.41,132.39000000000001,132.35,22.56,22.22,22.05,21.85,21.66,21.47,21.27,21.09,20.7,N/A,N/A -2012,4,8,3,30,102090,100910,99760,78.85000000000001,0,5.39,5.8,5.89,5.94,5.97,5.99,6.01,6.0200000000000005,6.04,128.9,128.88,128.87,128.86,128.86,128.86,128.87,128.87,128.88,22.55,22.21,22.04,21.84,21.650000000000002,21.46,21.26,21.080000000000002,20.7,N/A,N/A -2012,4,8,4,30,102120,100940,99790,80.07000000000001,0,5.5200000000000005,5.94,6.04,6.09,6.12,6.140000000000001,6.15,6.16,6.16,125.87,125.75,125.7,125.65,125.61,125.57000000000001,125.52,125.48,125.39,22.490000000000002,22.150000000000002,21.97,21.78,21.580000000000002,21.39,21.2,21.01,20.63,N/A,N/A -2012,4,8,5,30,102130,100950,99810,75.47,0,4.45,4.79,4.87,4.93,4.97,5.01,5.04,5.07,5.13,130.45,130.55,130.62,130.68,130.71,130.74,130.77,130.79,130.79,22.62,22.3,22.13,21.93,21.75,21.56,21.37,21.19,20.81,N/A,N/A -2012,4,8,6,30,102180,101000,99850,74.4,0,4.62,4.97,5.05,5.1000000000000005,5.13,5.15,5.17,5.19,5.21,129.12,129.24,129.22,129.21,129.2,129.19,129.18,129.17000000000002,129.14000000000001,22.64,22.3,22.13,21.93,21.740000000000002,21.55,21.35,21.17,20.78,N/A,N/A -2012,4,8,7,30,102200,101020,99870,72.78,0,4.19,4.43,4.47,4.48,4.48,4.48,4.48,4.47,4.45,128.47,128.38,128.31,128.22,128.13,128.05,127.96000000000001,127.87,127.67,22.650000000000002,22.32,22.14,21.95,21.75,21.57,21.37,21.19,20.8,N/A,N/A -2012,4,8,8,30,102240,101050,99910,71.42,0,3.44,3.64,3.68,3.7,3.71,3.72,3.72,3.72,3.72,127.26,127.09,127.03,126.96000000000001,126.87,126.79,126.7,126.63000000000001,126.43,22.68,22.35,22.18,21.98,21.79,21.6,21.400000000000002,21.22,20.830000000000002,N/A,N/A -2012,4,8,9,30,102240,101060,99910,72.58,0,3.5,3.71,3.7600000000000002,3.7800000000000002,3.8000000000000003,3.81,3.8200000000000003,3.8200000000000003,3.8200000000000003,125.45,125.49000000000001,125.57000000000001,125.64,125.7,125.75,125.8,125.84,125.91,22.63,22.3,22.12,21.93,21.73,21.54,21.34,21.16,20.77,N/A,N/A -2012,4,8,10,30,102270,101090,99940,72.46000000000001,0,2.98,3.16,3.21,3.23,3.2600000000000002,3.2800000000000002,3.29,3.31,3.33,113.94,114.13,114.23,114.31,114.36,114.41,114.45,114.49000000000001,114.54,22.59,22.26,22.09,21.89,21.7,21.51,21.31,21.13,20.740000000000002,N/A,N/A -2012,4,8,11,30,102300,101120,99970,73.63,0,2.67,2.79,2.81,2.82,2.82,2.82,2.81,2.81,2.8000000000000003,99.42,98.89,98.62,98.35000000000001,98.11,97.87,97.64,97.44,97.01,22.54,22.21,22.04,21.84,21.650000000000002,21.46,21.26,21.07,20.68,N/A,N/A -2012,4,8,12,30,102320,101140,99990,75.73,0,2.11,2.22,2.25,2.27,2.2800000000000002,2.29,2.31,2.32,2.34,61.44,61.480000000000004,61.58,61.68,61.79,61.9,62.01,62.120000000000005,62.38,22.490000000000002,22.150000000000002,21.98,21.78,21.59,21.400000000000002,21.2,21.02,20.63,N/A,N/A -2012,4,8,13,30,102350,101160,100010,79.97,0,2.71,2.96,3.0500000000000003,3.12,3.17,3.22,3.27,3.31,3.39,86.04,85.28,84.92,84.54,84.18,83.82000000000001,83.45,83.11,82.35000000000001,22.29,21.95,21.77,21.580000000000002,21.39,21.2,21,20.82,20.44,N/A,N/A -2012,4,8,14,30,102370,101190,100040,80.07000000000001,0,3.13,3.2600000000000002,3.27,3.2800000000000002,3.29,3.29,3.29,3.3000000000000003,3.31,71.32000000000001,74.23,75.97,77.64,79.18,80.59,82.01,83.3,85.88,22.32,21.98,21.81,21.61,21.42,21.240000000000002,21.04,20.86,20.47,N/A,N/A -2012,4,8,15,30,102390,101200,100060,78.03,0,3.43,3.61,3.64,3.65,3.66,3.66,3.66,3.66,3.66,80.78,81.60000000000001,81.97,82.26,82.5,82.71000000000001,82.91,83.09,83.43,22.51,22.16,21.98,21.79,21.59,21.41,21.21,21.02,20.63,N/A,N/A -2012,4,8,16,30,102390,101200,100050,78.62,0,3.99,4.18,4.21,4.2,4.2,4.18,4.17,4.16,4.12,95.67,95.5,95.4,95.29,95.18,95.07000000000001,94.97,94.88,94.67,22.55,22.19,22.01,21.81,21.61,21.43,21.23,21.04,20.66,N/A,N/A -2012,4,8,17,30,102360,101180,100030,79.03,0,3.61,3.8200000000000003,3.87,3.89,3.91,3.92,3.93,3.94,3.95,101.08,101.17,101.19,101.17,101.12,101.06,100.97,100.89,100.69,22.580000000000002,22.22,22.04,21.84,21.64,21.45,21.25,21.07,20.67,N/A,N/A -2012,4,8,18,30,102350,101170,100020,78.33,0,3.69,3.88,3.91,3.93,3.94,3.94,3.94,3.94,3.94,114.57000000000001,113.94,113.55,113.17,112.83,112.51,112.2,111.92,111.33,22.61,22.25,22.07,21.87,21.67,21.48,21.28,21.1,20.71,N/A,N/A -2012,4,8,19,30,102330,101140,100000,78.35000000000001,0,3.9,4.13,4.17,4.2,4.21,4.22,4.23,4.23,4.23,123.87,124.3,124.52,124.74000000000001,124.94,125.14,125.33,125.51,125.9,22.69,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.18,20.79,N/A,N/A -2012,4,8,20,30,102270,101090,99940,76.69,0,4.07,4.32,4.37,4.39,4.41,4.42,4.43,4.44,4.45,137.94,137.95000000000002,137.93,137.92000000000002,137.93,137.94,137.95000000000002,137.97,137.99,22.69,22.330000000000002,22.150000000000002,21.96,21.76,21.580000000000002,21.38,21.2,20.81,N/A,N/A -2012,4,8,21,30,102240,101060,99920,78.64,0,4.29,4.54,4.59,4.61,4.62,4.62,4.62,4.61,4.59,147.36,147.42000000000002,147.46,147.52,147.57,147.62,147.67000000000002,147.72,147.83,22.71,22.36,22.18,21.98,21.79,21.6,21.400000000000002,21.21,20.82,N/A,N/A -2012,4,8,22,30,102220,101030,99890,73.68,0,3.41,3.6,3.64,3.67,3.68,3.69,3.69,3.7,3.7,156.16,156.13,156.09,156.07,156.06,156.05,156.03,156.02,155.99,22.76,22.42,22.25,22.05,21.86,21.67,21.47,21.29,20.900000000000002,N/A,N/A -2012,4,8,23,30,102200,101020,99870,78.87,0,3.47,3.66,3.69,3.7,3.7,3.7,3.69,3.69,3.67,165.20000000000002,165.01,164.9,164.79,164.68,164.59,164.49,164.41,164.21,22.580000000000002,22.240000000000002,22.07,21.87,21.68,21.490000000000002,21.29,21.1,20.71,N/A,N/A -2012,4,9,0,30,102180,100990,99850,77.4,0,3.65,3.85,3.89,3.9,3.91,3.91,3.91,3.91,3.91,175.17000000000002,175.18,175.15,175.14000000000001,175.12,175.11,175.09,175.08,175.03,22.54,22.21,22.03,21.830000000000002,21.64,21.45,21.26,21.07,20.69,N/A,N/A -2012,4,9,1,30,102170,100990,99840,75.10000000000001,0,3.65,3.85,3.88,3.89,3.9,3.9,3.89,3.89,3.88,174.14000000000001,174.13,174.14000000000001,174.15,174.16,174.16,174.17000000000002,174.18,174.18,22.580000000000002,22.25,22.080000000000002,21.88,21.69,21.5,21.3,21.12,20.740000000000002,N/A,N/A -2012,4,9,2,30,102180,101000,99850,79.18,0,3.56,3.74,3.7600000000000002,3.77,3.7600000000000002,3.75,3.74,3.73,3.7,177.17000000000002,177.08,177.11,177.12,177.13,177.13,177.12,177.1,177.05,22.42,22.080000000000002,21.91,21.71,21.52,21.330000000000002,21.14,20.96,20.57,N/A,N/A -2012,4,9,3,30,102180,101000,99850,77.61,0,3.61,3.8000000000000003,3.83,3.83,3.83,3.83,3.8200000000000003,3.81,3.79,174.88,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.92000000000002,174.91,174.87,22.44,22.1,21.93,21.73,21.54,21.35,21.150000000000002,20.97,20.59,N/A,N/A -2012,4,9,4,30,102140,100960,99810,76.8,0,3.35,3.52,3.5500000000000003,3.56,3.5700000000000003,3.5700000000000003,3.56,3.56,3.5500000000000003,181.75,181.69,181.64000000000001,181.58,181.53,181.48,181.42000000000002,181.36,181.18,22.41,22.080000000000002,21.900000000000002,21.7,21.51,21.32,21.13,20.94,20.56,N/A,N/A -2012,4,9,5,30,102110,100930,99780,78.11,0,3.58,3.7600000000000002,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.77,3.75,3.74,3.71,188.29,188.22,188.19,188.14000000000001,188.1,188.05,187.98,187.91,187.70000000000002,22.36,22.02,21.85,21.650000000000002,21.46,21.27,21.07,20.89,20.51,N/A,N/A -2012,4,9,6,30,102110,100930,99790,77.74,0,3.22,3.38,3.4,3.4,3.4,3.4,3.39,3.38,3.36,191.71,191.72,191.66,191.61,191.56,191.51,191.45000000000002,191.4,191.23000000000002,22.38,22.04,21.86,21.67,21.47,21.29,21.09,20.91,20.53,N/A,N/A -2012,4,9,7,30,102110,100930,99790,79.85000000000001,0,2.82,2.94,2.95,2.96,2.95,2.95,2.94,2.94,2.91,201.81,201.74,201.66,201.58,201.5,201.41,201.3,201.20000000000002,200.9,22.27,21.93,21.76,21.56,21.37,21.18,20.98,20.8,20.42,N/A,N/A -2012,4,9,8,30,102120,100930,99790,79.77,0,2.77,2.89,2.91,2.92,2.92,2.92,2.91,2.91,2.89,211.71,211.58,211.49,211.39000000000001,211.29,211.19,211.06,210.94,210.61,22.27,21.93,21.76,21.56,21.37,21.18,20.98,20.8,20.41,N/A,N/A -2012,4,9,9,30,102090,100910,99760,78.74,0,2.73,2.84,2.86,2.86,2.85,2.85,2.84,2.83,2.8000000000000003,230.71,230.6,230.52,230.41,230.3,230.19,230.05,229.91,229.51,22.29,21.95,21.78,21.580000000000002,21.39,21.2,21.01,20.82,20.44,N/A,N/A -2012,4,9,10,30,102100,100920,99780,77.96000000000001,0,2.43,2.52,2.54,2.5300000000000002,2.5300000000000002,2.52,2.5100000000000002,2.5100000000000002,2.48,240.95000000000002,240.82,240.69,240.55,240.41,240.27,240.11,239.95000000000002,239.54,22.32,21.990000000000002,21.81,21.61,21.42,21.240000000000002,21.04,20.86,20.47,N/A,N/A -2012,4,9,11,30,102150,100960,99820,78.11,0,2.2,2.29,2.31,2.31,2.31,2.31,2.3000000000000003,2.3000000000000003,2.29,282.59000000000003,282.84000000000003,282.89,282.96,283.04,283.12,283.2,283.27,283.47,22.32,21.990000000000002,21.81,21.61,21.42,21.23,21.03,20.85,20.46,N/A,N/A -2012,4,9,12,30,102160,100980,99830,86.04,0,4.3100000000000005,4.44,4.42,4.36,4.3,4.24,4.17,4.1,3.93,332.41,332.47,332.45,332.40000000000003,332.34000000000003,332.28000000000003,332.2,332.12,331.87,21.91,21.55,21.37,21.17,20.98,20.8,20.6,20.42,20.04,N/A,N/A -2012,4,9,13,30,102190,101000,99860,86.29,0,3.58,3.73,3.74,3.73,3.71,3.7,3.67,3.64,3.58,346.64,347.09000000000003,347.33,347.58,347.82,348.05,348.3,348.54,349.08,21.7,21.34,21.150000000000002,20.96,20.76,20.57,20.38,20.19,19.81,N/A,N/A -2012,4,9,14,30,102210,101030,99880,85.7,0,3.86,4.04,4.0600000000000005,4.0600000000000005,4.0600000000000005,4.04,4.03,4.01,3.97,357.47,357.67,357.71,357.77,357.82,357.87,357.92,357.96,358.07,21.77,21.39,21.21,21.01,20.82,20.63,20.43,20.25,19.86,N/A,N/A -2012,4,9,15,30,102210,101030,99880,85.96000000000001,0,2.97,3.1,3.12,3.13,3.13,3.13,3.13,3.12,3.11,10.120000000000001,9.75,9.51,9.28,9.040000000000001,8.8,8.53,8.26,7.53,21.69,21.32,21.14,20.94,20.75,20.56,20.36,20.18,19.8,N/A,N/A -2012,4,9,16,30,102210,101020,99880,82.9,0,1.68,1.74,1.75,1.75,1.75,1.75,1.75,1.75,1.75,17.51,17.63,17.66,17.69,17.69,17.68,17.64,17.6,17.42,21.95,21.6,21.42,21.21,21.02,20.84,20.64,20.46,20.080000000000002,N/A,N/A -2012,4,9,17,30,102180,101000,99860,80.75,0,0.28,0.27,0.25,0.24,0.22,0.21,0.19,0.18,0.21,109.98,108.44,106.46000000000001,103.8,100.14,96.04,87.99,80.10000000000001,44.18,22.21,21.86,21.68,21.48,21.3,21.11,20.92,20.75,20.43,N/A,N/A -2012,4,9,18,30,102160,100980,99830,79.17,0,1.8900000000000001,1.92,1.9000000000000001,1.87,1.83,1.79,1.73,1.67,1.33,187.09,187.58,187.89000000000001,188.27,188.68,189.11,189.81,190.49,197.04,22.53,22.18,22.01,21.82,21.63,21.46,21.28,21.13,20.93,N/A,N/A -2012,4,9,19,30,102130,100950,99800,78.48,0,2.7600000000000002,2.84,2.83,2.8000000000000003,2.77,2.74,2.69,2.65,2.49,195.47,195.85,196.07,196.33,196.58,196.85,197.19,197.53,198.75,22.77,22.41,22.23,22.04,21.86,21.68,21.5,21.330000000000002,21.01,N/A,N/A -2012,4,9,20,30,102090,100910,99760,75.79,0,2.63,2.71,2.7,2.68,2.66,2.63,2.59,2.5500000000000003,2.45,201.13,201.35,201.53,201.73000000000002,201.93,202.14000000000001,202.4,202.65,203.48000000000002,23.02,22.67,22.5,22.31,22.12,21.94,21.75,21.580000000000002,21.23,N/A,N/A -2012,4,9,21,30,102030,100850,99710,74.83,0,3.9,4.07,4.07,4.0600000000000005,4.03,4,3.96,3.92,3.7800000000000002,197.70000000000002,197.74,197.79,197.84,197.88,197.89000000000001,197.91,197.92000000000002,197.9,23.19,22.84,22.67,22.48,22.3,22.11,21.93,21.75,21.41,N/A,N/A -2012,4,9,22,30,101990,100810,99670,77.07000000000001,0,4.3100000000000005,4.54,4.57,4.5600000000000005,4.55,4.5200000000000005,4.49,4.46,4.3500000000000005,192.65,192.61,192.58,192.54,192.48000000000002,192.42000000000002,192.33,192.24,191.9,23.09,22.77,22.6,22.400000000000002,22.22,22.03,21.85,21.67,21.31,N/A,N/A -2012,4,9,23,30,101950,100770,99630,77.11,0,4.25,4.48,4.51,4.5,4.49,4.47,4.44,4.41,4.29,194.18,194.22,194.21,194.19,194.16,194.12,194.03,193.94,193.28,23.04,22.73,22.57,22.38,22.19,22.01,21.830000000000002,21.66,21.36,N/A,N/A -2012,4,10,0,30,101900,100720,99580,77.65,0,4.19,4.42,4.44,4.43,4.4,4.37,4.33,4.29,4.08,194.66,194.57,194.51,194.45000000000002,194.36,194.26,194.08,193.89000000000001,192.37,22.95,22.650000000000002,22.48,22.29,22.11,21.94,21.76,21.6,21.37,N/A,N/A -2012,4,10,1,30,101880,100710,99570,79.33,0,3.92,4.12,4.14,4.13,4.11,4.08,4.05,4.0200000000000005,3.88,194.53,194.5,194.46,194.4,194.32,194.22,194.04,193.85,192.07,22.830000000000002,22.51,22.35,22.16,21.98,21.8,21.63,21.47,21.25,N/A,N/A -2012,4,10,2,30,101880,100700,99560,79.24,0,3.89,4.09,4.11,4.1,4.09,4.07,4.04,4.0200000000000005,3.93,197.96,197.81,197.73000000000002,197.63,197.51,197.37,197.15,196.92000000000002,195.44,22.81,22.5,22.330000000000002,22.14,21.96,21.78,21.59,21.42,21.13,N/A,N/A -2012,4,10,3,30,101860,100680,99540,80.52,0,3.2600000000000002,3.4,3.42,3.41,3.39,3.37,3.34,3.3200000000000003,3.22,203.17000000000002,203.06,203,202.9,202.78,202.65,202.43,202.20000000000002,200.75,22.7,22.39,22.22,22.02,21.84,21.66,21.47,21.3,20.990000000000002,N/A,N/A -2012,4,10,4,30,101860,100690,99540,81.13,0,3.1,3.24,3.2600000000000002,3.2600000000000002,3.25,3.24,3.22,3.2,3.16,207.33,207.37,207.3,207.21,207.13,207.03,206.89000000000001,206.74,206.08,22.63,22.32,22.150000000000002,21.95,21.76,21.580000000000002,21.39,21.21,20.86,N/A,N/A -2012,4,10,5,30,101840,100660,99520,82.46000000000001,0,2.71,2.81,2.82,2.8000000000000003,2.79,2.77,2.75,2.72,2.6,210.92000000000002,210.72,210.59,210.4,210.16,209.9,209.44,208.98000000000002,205.26,22.51,22.19,22.03,21.84,21.650000000000002,21.48,21.3,21.14,20.92,N/A,N/A -2012,4,10,6,30,101890,100710,99570,80.87,0,1.75,1.79,1.79,1.78,1.76,1.74,1.72,1.69,1.61,223.88,223.92000000000002,223.9,223.87,223.81,223.74,223.61,223.46,222.37,22.52,22.2,22.03,21.830000000000002,21.650000000000002,21.47,21.27,21.1,20.75,N/A,N/A -2012,4,10,7,30,101920,100740,99600,79.48,0,1.62,1.67,1.67,1.6600000000000001,1.6400000000000001,1.6300000000000001,1.62,1.6,1.54,241.71,242.14000000000001,242.27,242.42000000000002,242.56,242.70000000000002,242.83,242.95000000000002,242.99,22.55,22.23,22.06,21.87,21.68,21.5,21.31,21.13,20.78,N/A,N/A -2012,4,10,8,30,101910,100730,99590,78.82000000000001,0,1.3800000000000001,1.42,1.42,1.41,1.4000000000000001,1.3900000000000001,1.37,1.36,1.33,259.8,259.9,259.97,260.03000000000003,260.07,260.07,260.09000000000003,260.12,260.07,22.54,22.22,22.05,21.86,21.67,21.490000000000002,21.29,21.12,20.740000000000002,N/A,N/A -2012,4,10,9,30,101920,100750,99600,79.24,0,1.3800000000000001,1.42,1.42,1.41,1.4000000000000001,1.3900000000000001,1.3900000000000001,1.37,1.35,295.22,295.6,295.91,296.23,296.55,296.85,297.17,297.46,298.26,22.490000000000002,22.17,22,21.8,21.61,21.43,21.23,21.05,20.67,N/A,N/A -2012,4,10,10,30,101950,100770,99630,77.73,0,1.27,1.32,1.32,1.32,1.33,1.33,1.32,1.32,1.32,292.85,293.49,293.93,294.37,294.81,295.24,295.7,296.12,297.21,22.53,22.21,22.04,21.84,21.650000000000002,21.47,21.27,21.09,20.71,N/A,N/A -2012,4,10,11,30,101970,100790,99650,81.7,0,1.19,1.18,1.16,1.1300000000000001,1.1,1.08,1.05,1.03,0.98,296.01,294.96,294.15000000000003,293.32,292.54,291.8,291.04,290.34000000000003,288.73,22.36,22.04,21.86,21.67,21.48,21.29,21.09,20.91,20.53,N/A,N/A -2012,4,10,12,30,102010,100830,99680,84.9,0,1.3900000000000001,1.37,1.32,1.27,1.23,1.18,1.1300000000000001,1.09,0.99,300.7,300.28000000000003,299.92,299.5,299.02,298.54,297.88,297.25,295.32,22.1,21.76,21.59,21.39,21.2,21.02,20.82,20.64,20.25,N/A,N/A -2012,4,10,13,30,102040,100860,99710,86.24,0,1.59,1.58,1.54,1.5,1.46,1.42,1.3800000000000001,1.34,1.25,306.02,306.65000000000003,306.93,307.21,307.52,307.83,308.15000000000003,308.43,309.18,21.97,21.63,21.45,21.25,21.06,20.87,20.67,20.490000000000002,20.11,N/A,N/A -2012,4,10,14,30,102060,100880,99740,86.34,0,1.44,1.4000000000000001,1.35,1.29,1.25,1.2,1.1400000000000001,1.1,0.99,303.13,303.82,304.22,304.62,305.04,305.45,305.90000000000003,306.29,307.31,21.900000000000002,21.56,21.38,21.18,20.990000000000002,20.8,20.6,20.42,20.04,N/A,N/A -2012,4,10,15,30,102060,100880,99740,86.60000000000001,0,1.48,1.47,1.43,1.3900000000000001,1.35,1.32,1.27,1.23,1.1400000000000001,302.67,304.28000000000003,305.24,306.25,307.28000000000003,308.3,309.49,310.59000000000003,313.43,21.84,21.490000000000002,21.31,21.11,20.92,20.73,20.53,20.35,19.96,N/A,N/A -2012,4,10,16,30,102050,100870,99720,86.4,0,0.87,0.87,0.86,0.85,0.8300000000000001,0.81,0.78,0.76,0.7000000000000001,307.01,308.52,309.57,310.64,311.7,312.74,314.05,315.3,319.14,21.91,21.55,21.37,21.17,20.97,20.79,20.59,20.41,20.02,N/A,N/A -2012,4,10,17,30,102040,100860,99720,84.8,0,0.67,0.67,0.65,0.63,0.62,0.6,0.58,0.56,0.52,307.08,307.62,308.07,308.57,309.05,309.53000000000003,310.09000000000003,310.6,312.31,22.09,21.72,21.54,21.34,21.150000000000002,20.96,20.76,20.580000000000002,20.2,N/A,N/A -2012,4,10,18,30,102010,100830,99690,82.32000000000001,0,0.86,0.87,0.87,0.86,0.85,0.85,0.85,0.85,0.85,179.17000000000002,177.20000000000002,175.96,174.64000000000001,173.3,171.95000000000002,170.44,169.02,165.36,22.31,21.94,21.76,21.56,21.37,21.18,20.990000000000002,20.81,20.43,N/A,N/A -2012,4,10,19,30,101990,100810,99670,80.61,0,1.6400000000000001,1.71,1.72,1.74,1.75,1.75,1.77,1.78,1.8,160.39000000000001,159.56,159.05,158.56,158.09,157.65,157.16,156.70000000000002,155.64000000000001,22.53,22.16,21.98,21.78,21.59,21.41,21.21,21.03,20.650000000000002,N/A,N/A -2012,4,10,20,30,101950,100770,99630,80.44,0,1.97,2.09,2.12,2.15,2.18,2.2,2.23,2.25,2.31,144.38,143.94,143.61,143.3,143.02,142.78,142.54,142.32,141.9,22.75,22.38,22.2,22,21.81,21.62,21.43,21.25,20.87,N/A,N/A -2012,4,10,21,30,101900,100720,99580,72.64,0,2.69,2.82,2.84,2.86,2.86,2.87,2.87,2.88,2.89,161.14000000000001,161.08,160.96,160.86,160.78,160.72,160.65,160.58,160.47,23.11,22.76,22.580000000000002,22.39,22.19,22.01,21.81,21.63,21.25,N/A,N/A -2012,4,10,22,30,101870,100690,99550,71.9,0,3.7,3.9,3.94,3.95,3.96,3.96,3.96,3.95,3.94,168.63,168.55,168.54,168.53,168.52,168.52,168.52,168.52,168.52,23.17,22.84,22.67,22.47,22.28,22.09,21.900000000000002,21.72,21.330000000000002,N/A,N/A -2012,4,10,23,30,101840,100670,99530,71.91,0,3.16,3.34,3.36,3.37,3.38,3.38,3.38,3.37,3.36,161.42000000000002,161.43,161.43,161.42000000000002,161.42000000000002,161.41,161.41,161.41,161.42000000000002,23.09,22.77,22.61,22.41,22.22,22.03,21.84,21.66,21.27,N/A,N/A -2012,4,11,0,30,101810,100640,99500,72.24,0,3.43,3.63,3.66,3.67,3.68,3.68,3.67,3.67,3.66,163.41,163.31,163.26,163.22,163.17000000000002,163.14000000000001,163.09,163.05,162.95000000000002,22.990000000000002,22.68,22.51,22.32,22.13,21.94,21.75,21.57,21.18,N/A,N/A -2012,4,11,1,30,101830,100660,99520,74.03,0,3.9,4.14,4.18,4.2,4.2,4.2,4.2,4.2,4.18,167.21,167.18,167.12,167.07,167.04,167,166.97,166.94,166.88,22.900000000000002,22.580000000000002,22.41,22.21,22.02,21.84,21.64,21.46,21.07,N/A,N/A -2012,4,11,2,30,101840,100660,99520,74.82000000000001,0,4.18,4.44,4.49,4.5,4.51,4.51,4.51,4.5,4.49,170,169.96,169.94,169.93,169.91,169.9,169.9,169.89000000000001,169.89000000000001,22.82,22.5,22.32,22.13,21.94,21.75,21.56,21.38,21,N/A,N/A -2012,4,11,3,30,101840,100660,99520,75.42,0,4.75,5.07,5.12,5.15,5.16,5.17,5.17,5.17,5.15,167.13,167.12,167.11,167.11,167.1,167.1,167.09,167.07,167.07,22.77,22.44,22.27,22.080000000000002,21.89,21.7,21.5,21.32,20.94,N/A,N/A -2012,4,11,4,30,101820,100650,99510,75.55,0,4.72,5.03,5.09,5.11,5.12,5.13,5.12,5.12,5.1000000000000005,176.14000000000001,176.17000000000002,176.17000000000002,176.18,176.19,176.19,176.20000000000002,176.22,176.26,22.740000000000002,22.41,22.240000000000002,22.04,21.86,21.67,21.47,21.29,20.91,N/A,N/A -2012,4,11,5,30,101840,100660,99520,75.04,0,4.65,4.96,5.0200000000000005,5.04,5.05,5.0600000000000005,5.0600000000000005,5.0600000000000005,5.05,183.37,183.41,183.39000000000001,183.39000000000001,183.39000000000001,183.4,183.41,183.42000000000002,183.46,22.75,22.42,22.25,22.05,21.86,21.68,21.48,21.3,20.92,N/A,N/A -2012,4,11,6,30,101870,100700,99560,76.59,0,4.66,4.95,5.01,5.04,5.0600000000000005,5.0600000000000005,5.07,5.07,5.0600000000000005,187.05,187.05,187.05,187.06,187.06,187.05,187.05,187.05,187.06,22.73,22.39,22.21,22.01,21.82,21.63,21.44,21.25,20.87,N/A,N/A -2012,4,11,7,30,101900,100720,99580,78.19,0,4.74,5.05,5.11,5.14,5.16,5.17,5.17,5.17,5.17,188.93,189,189,189.01,189.01,189.01,189.01,189.02,189.02,22.69,22.34,22.16,21.96,21.77,21.580000000000002,21.38,21.2,20.81,N/A,N/A -2012,4,11,8,30,101900,100720,99580,79.56,0,4.19,4.43,4.49,4.51,4.5200000000000005,4.53,4.53,4.53,4.53,196.86,196.85,196.86,196.88,196.88,196.89000000000001,196.89000000000001,196.9,196.92000000000002,22.63,22.28,22.1,21.900000000000002,21.71,21.52,21.32,21.14,20.75,N/A,N/A -2012,4,11,9,30,101910,100730,99590,80.63,0,4.1,4.34,4.39,4.41,4.42,4.43,4.43,4.43,4.43,204.78,204.85,204.88,204.9,204.92000000000002,204.93,204.95000000000002,204.97,205.01,22.580000000000002,22.23,22.05,21.85,21.66,21.47,21.27,21.09,20.7,N/A,N/A -2012,4,11,10,30,101920,100750,99600,80.51,0,3.17,3.33,3.37,3.38,3.38,3.39,3.39,3.39,3.38,206.16,206.14000000000001,206.13,206.12,206.1,206.08,206.07,206.05,206.01,22.57,22.22,22.04,21.85,21.650000000000002,21.47,21.27,21.080000000000002,20.7,N/A,N/A -2012,4,11,11,30,101950,100770,99630,82.21000000000001,0,2.82,2.96,2.98,3,3,3.0100000000000002,3.0100000000000002,3.0100000000000002,3.0100000000000002,201.76,201.75,201.74,201.72,201.71,201.70000000000002,201.68,201.67000000000002,201.66,22.490000000000002,22.14,21.97,21.77,21.57,21.39,21.19,21,20.62,N/A,N/A -2012,4,11,12,30,101960,100780,99640,82.98,0,2.81,2.94,2.96,2.97,2.97,2.98,2.97,2.97,2.97,202.16,202.14000000000001,202.12,202.09,202.08,202.06,202.04,202.02,201.97,22.44,22.1,21.92,21.72,21.53,21.34,21.14,20.96,20.57,N/A,N/A -2012,4,11,13,30,101970,100790,99650,83.72,0,2.22,2.32,2.34,2.34,2.35,2.35,2.35,2.35,2.35,193.07,193.01,192.98000000000002,192.93,192.88,192.83,192.78,192.73000000000002,192.6,22.400000000000002,22.06,21.88,21.68,21.490000000000002,21.3,21.1,20.92,20.53,N/A,N/A -2012,4,11,14,30,102000,100830,99680,84.52,0,2.69,2.81,2.83,2.84,2.84,2.84,2.84,2.84,2.84,189.83,189.77,189.73,189.69,189.65,189.61,189.56,189.53,189.43,22.41,22.06,21.89,21.68,21.490000000000002,21.3,21.1,20.92,20.53,N/A,N/A -2012,4,11,15,30,102020,100840,99700,85.11,0,2.32,2.41,2.42,2.42,2.43,2.42,2.42,2.42,2.41,173.47,173.21,173.09,172.97,172.85,172.73,172.61,172.5,172.27,22.44,22.080000000000002,21.900000000000002,21.7,21.51,21.32,21.12,20.94,20.55,N/A,N/A -2012,4,11,16,30,102020,100840,99700,83.19,0,2.45,2.49,2.46,2.42,2.38,2.34,2.31,2.27,2.2,147.47,148.57,149.16,149.79,150.42000000000002,151.05,151.76,152.41,154.02,22.54,22.18,22,21.79,21.6,21.41,21.21,21.03,20.64,N/A,N/A -2012,4,11,17,30,102010,100830,99680,83.45,0,2.39,2.48,2.49,2.49,2.49,2.49,2.48,2.48,2.47,174.35,173.83,173.52,173.22,172.92000000000002,172.63,172.34,172.07,171.46,22.61,22.240000000000002,22.06,21.86,21.67,21.48,21.28,21.1,20.71,N/A,N/A -2012,4,11,18,30,102000,100820,99680,84.26,0,2.72,2.84,2.86,2.87,2.88,2.88,2.88,2.88,2.88,167.01,166.68,166.5,166.33,166.16,165.99,165.81,165.65,165.26,22.7,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.18,20.79,N/A,N/A -2012,4,11,19,30,101980,100800,99660,82.4,0,3.34,3.49,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5,3.49,3.48,158.43,158.51,158.55,158.58,158.61,158.65,158.69,158.71,158.8,22.85,22.48,22.3,22.09,21.900000000000002,21.71,21.52,21.330000000000002,20.95,N/A,N/A -2012,4,11,20,30,101940,100760,99620,82.83,0,3.47,3.63,3.66,3.67,3.67,3.67,3.66,3.66,3.64,163.88,164.02,164.05,164.08,164.11,164.14000000000001,164.18,164.21,164.32,22.91,22.54,22.36,22.16,21.97,21.78,21.580000000000002,21.400000000000002,21.02,N/A,N/A -2012,4,11,21,30,101910,100740,99600,84.02,0,4.14,4.38,4.42,4.44,4.45,4.46,4.46,4.46,4.45,167.78,167.79,167.79,167.79,167.8,167.8,167.8,167.81,167.83,22.94,22.57,22.39,22.19,22,21.81,21.61,21.43,21.04,N/A,N/A -2012,4,11,22,30,101860,100690,99550,81.60000000000001,0,4.5600000000000005,4.82,4.87,4.89,4.89,4.89,4.89,4.88,4.86,171.4,171.46,171.47,171.49,171.5,171.51,171.52,171.53,171.58,22.95,22.61,22.43,22.23,22.04,21.85,21.66,21.47,21.09,N/A,N/A -2012,4,11,23,30,101820,100640,99500,81.47,0,5.72,6.1000000000000005,6.18,6.2,6.22,6.22,6.22,6.21,6.19,172.9,172.8,172.71,172.62,172.54,172.46,172.38,172.29,172.1,22.89,22.55,22.37,22.17,21.98,21.79,21.6,21.42,21.04,N/A,N/A -2012,4,12,0,30,101800,100620,99480,82.42,0,5.8,6.21,6.29,6.32,6.33,6.33,6.32,6.3100000000000005,6.2700000000000005,171.18,171.08,171.07,171.07,171.07,171.07,171.08,171.1,171.13,22.830000000000002,22.48,22.3,22.1,21.91,21.72,21.53,21.35,20.96,N/A,N/A -2012,4,12,1,30,101770,100600,99460,77.69,0,5.91,6.32,6.41,6.43,6.44,6.43,6.41,6.390000000000001,6.3,165.29,165.41,165.47,165.53,165.59,165.66,165.74,165.82,166.08,22.98,22.650000000000002,22.48,22.28,22.09,21.900000000000002,21.7,21.52,21.13,N/A,N/A -2012,4,12,2,30,101790,100610,99480,78.22,0,5.23,5.64,5.74,5.8,5.8500000000000005,5.88,5.92,5.95,6.04,174.69,174.15,173.85,173.57,173.29,173.02,172.70000000000002,172.4,171.55,22.98,22.650000000000002,22.47,22.28,22.09,21.900000000000002,21.71,21.53,21.17,N/A,N/A -2012,4,12,3,30,101800,100620,99480,75.73,0,5.22,5.62,5.72,5.79,5.83,5.87,5.91,5.95,6.0600000000000005,167.13,167.04,166.98,166.91,166.84,166.78,166.71,166.65,166.49,23.11,22.79,22.62,22.43,22.240000000000002,22.06,21.87,21.7,21.35,N/A,N/A -2012,4,12,4,30,101790,100620,99480,78.89,0,5.45,5.83,5.91,5.94,5.95,5.94,5.93,5.92,5.87,168.05,168.09,168.11,168.12,168.13,168.15,168.16,168.16,168.17000000000002,22.98,22.64,22.46,22.26,22.07,21.88,21.68,21.5,21.11,N/A,N/A -2012,4,12,5,30,101780,100610,99470,79.48,0,5.64,6.05,6.140000000000001,6.18,6.21,6.23,6.24,6.25,6.26,167.18,167.27,167.29,167.3,167.32,167.32,167.33,167.33,167.35,22.88,22.54,22.36,22.16,21.97,21.79,21.59,21.41,21.03,N/A,N/A -2012,4,12,6,30,101800,100620,99480,80.19,0,5.24,5.62,5.69,5.72,5.74,5.75,5.75,5.75,5.74,167.39000000000001,167.43,167.47,167.51,167.55,167.59,167.64000000000001,167.68,167.79,22.88,22.53,22.35,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,4,12,7,30,101800,100630,99490,83.24,0,5.14,5.47,5.54,5.58,5.6000000000000005,5.61,5.62,5.62,5.65,175.74,175.8,175.81,175.84,175.86,175.89000000000001,175.92000000000002,175.96,176.06,22.72,22.36,22.19,21.990000000000002,21.79,21.61,21.42,21.23,20.86,N/A,N/A -2012,4,12,8,30,101800,100630,99490,83.93,0,5.21,5.5600000000000005,5.64,5.68,5.7,5.71,5.72,5.72,5.72,170.21,170.23,170.27,170.3,170.33,170.35,170.37,170.39000000000001,170.43,22.72,22.37,22.19,21.990000000000002,21.8,21.61,21.41,21.23,20.85,N/A,N/A -2012,4,12,9,30,101810,100630,99490,84.06,0,4.23,4.49,4.54,4.57,4.59,4.6000000000000005,4.61,4.61,4.62,155.81,155.92000000000002,156,156.08,156.15,156.21,156.28,156.35,156.48,22.7,22.35,22.17,21.97,21.78,21.59,21.39,21.21,20.82,N/A,N/A -2012,4,12,10,30,101790,100620,99480,84.35000000000001,0,4.43,4.71,4.7700000000000005,4.79,4.82,4.83,4.83,4.84,4.84,127.42,127.73,127.85000000000001,127.97,128.09,128.2,128.31,128.42000000000002,128.65,22.69,22.330000000000002,22.150000000000002,21.95,21.76,21.57,21.37,21.18,20.79,N/A,N/A -2012,4,12,11,30,101800,100620,99480,85.83,0,5.68,6.12,6.22,6.2700000000000005,6.3100000000000005,6.33,6.34,6.36,6.37,134.51,134.65,134.65,134.65,134.66,134.66,134.66,134.66,134.67000000000002,22.7,22.330000000000002,22.150000000000002,21.94,21.75,21.56,21.36,21.17,20.78,N/A,N/A -2012,4,12,12,30,101830,100660,99520,84.57000000000001,0,5.67,6.13,6.25,6.32,6.37,6.41,6.43,6.45,6.48,141.74,142.07,142.28,142.46,142.62,142.77,142.91,143.03,143.29,22.63,22.27,22.080000000000002,21.88,21.68,21.5,21.29,21.11,20.72,N/A,N/A -2012,4,12,13,30,101850,100670,99530,82.74,0,5.32,5.72,5.82,5.87,5.92,5.96,5.99,6.01,6.07,138.81,138.73,138.66,138.57,138.5,138.43,138.36,138.29,138.17000000000002,22.6,22.240000000000002,22.06,21.86,21.67,21.490000000000002,21.29,21.11,20.740000000000002,N/A,N/A -2012,4,12,14,30,101850,100680,99530,83.33,0,6.0200000000000005,6.48,6.6000000000000005,6.66,6.71,6.74,6.7700000000000005,6.79,6.83,135.38,135.48,135.5,135.5,135.5,135.49,135.48,135.47,135.43,22.75,22.38,22.2,22,21.81,21.62,21.42,21.240000000000002,20.85,N/A,N/A -2012,4,12,15,30,101880,100710,99570,83.26,0,5.89,6.33,6.43,6.49,6.5200000000000005,6.55,6.5600000000000005,6.58,6.59,138.20000000000002,138.16,138.16,138.17000000000002,138.18,138.21,138.25,138.28,138.36,22.82,22.45,22.27,22.07,21.88,21.68,21.490000000000002,21.3,20.91,N/A,N/A -2012,4,12,16,30,101900,100730,99590,81.34,0,6.2700000000000005,6.71,6.8100000000000005,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,6.890000000000001,132.53,132.76,132.88,132.99,133.07,133.15,133.23,133.31,133.48,22.94,22.57,22.39,22.19,22,21.81,21.62,21.43,21.05,N/A,N/A -2012,4,12,17,30,101870,100700,99560,80.27,0,5.98,6.42,6.53,6.58,6.62,6.640000000000001,6.66,6.68,6.7,141.23,141.26,141.27,141.27,141.27,141.28,141.28,141.29,141.32,23.080000000000002,22.72,22.54,22.34,22.150000000000002,21.96,21.76,21.580000000000002,21.19,N/A,N/A -2012,4,12,18,30,101870,100690,99550,82.01,0,6.36,6.82,6.93,6.99,7.03,7.05,7.07,7.08,7.1000000000000005,143.28,143.58,143.76,143.92000000000002,144.06,144.20000000000002,144.34,144.46,144.73,23.080000000000002,22.72,22.54,22.330000000000002,22.14,21.95,21.75,21.57,21.18,N/A,N/A -2012,4,12,19,30,101860,100680,99540,80.52,0,6.76,7.3,7.43,7.5,7.54,7.57,7.59,7.61,7.63,148.5,148.70000000000002,148.83,148.94,149.03,149.12,149.21,149.29,149.46,23.2,22.85,22.67,22.47,22.28,22.09,21.900000000000002,21.71,21.32,N/A,N/A -2012,4,12,20,30,101820,100640,99510,81.36,0,6.84,7.390000000000001,7.51,7.57,7.6000000000000005,7.61,7.62,7.62,7.61,149.08,149.23,149.29,149.34,149.37,149.4,149.42000000000002,149.45000000000002,149.49,23.16,22.8,22.63,22.43,22.23,22.04,21.84,21.66,21.27,N/A,N/A -2012,4,12,21,30,101780,100610,99470,79.46000000000001,0,6.47,7.05,7.2,7.29,7.3500000000000005,7.4,7.43,7.46,7.5,150.74,150.58,150.54,150.5,150.47,150.44,150.41,150.39000000000001,150.35,23.22,22.88,22.7,22.5,22.31,22.12,21.92,21.740000000000002,21.35,N/A,N/A -2012,4,12,22,30,101760,100580,99450,80.03,0,7.29,7.94,8.120000000000001,8.23,8.32,8.39,8.45,8.5,8.58,144.22,144.96,145.34,145.72,146.06,146.39000000000001,146.70000000000002,147,147.61,23.31,22.990000000000002,22.82,22.63,22.45,22.27,22.080000000000002,21.900000000000002,21.54,N/A,N/A -2012,4,12,23,30,101710,100530,99400,78.87,0,7.32,7.98,8.15,8.24,8.31,8.36,8.39,8.42,8.47,148.48,148.57,148.6,148.62,148.64000000000001,148.67000000000002,148.68,148.69,148.72,23.23,22.89,22.71,22.52,22.330000000000002,22.14,21.94,21.76,21.37,N/A,N/A -2012,4,13,0,30,101680,100510,99370,79.71000000000001,0,8.53,9.3,9.48,9.56,9.61,9.64,9.65,9.65,9.63,147.19,147.31,147.36,147.42000000000002,147.47,147.51,147.56,147.6,147.67000000000002,23.19,22.84,22.66,22.46,22.26,22.080000000000002,21.87,21.69,21.3,N/A,N/A -2012,4,13,1,30,101640,100470,99330,77.61,0,7.84,8.55,8.73,8.84,8.91,8.97,9.02,9.06,9.13,150.58,150.64000000000001,150.66,150.66,150.65,150.63,150.61,150.59,150.53,23.22,22.88,22.7,22.51,22.31,22.13,21.93,21.75,21.37,N/A,N/A -2012,4,13,2,30,101660,100490,99350,79.21000000000001,0,8.47,9.32,9.53,9.66,9.74,9.8,9.84,9.88,9.91,146.99,147.16,147.26,147.35,147.44,147.51,147.58,147.64000000000001,147.78,23.27,22.93,22.75,22.55,22.35,22.16,21.96,21.78,21.39,N/A,N/A -2012,4,13,3,30,101650,100480,99340,77.2,0,8.52,9.26,9.450000000000001,9.55,9.620000000000001,9.67,9.71,9.74,9.8,152.94,152.36,152.12,151.9,151.71,151.55,151.41,151.28,151.06,23.330000000000002,23.01,22.84,22.650000000000002,22.46,22.28,22.09,21.91,21.54,N/A,N/A -2012,4,13,4,30,101640,100470,99330,76.13,0,9.33,10.22,10.43,10.53,10.6,10.64,10.66,10.68,10.68,156.69,156.53,156.42000000000002,156.31,156.20000000000002,156.1,155.99,155.9,155.69,23.34,22.990000000000002,22.82,22.62,22.43,22.240000000000002,22.04,21.86,21.47,N/A,N/A -2012,4,13,5,30,101630,100460,99320,79.98,0,9.27,10.16,10.39,10.52,10.61,10.67,10.72,10.75,10.790000000000001,151.13,151.29,151.4,151.5,151.59,151.68,151.77,151.85,152.01,23.22,22.87,22.7,22.490000000000002,22.3,22.11,21.91,21.72,21.330000000000002,N/A,N/A -2012,4,13,6,30,101620,100450,99310,72.22,0,9.11,9.98,10.18,10.3,10.38,10.43,10.47,10.5,10.540000000000001,162,161.70000000000002,161.59,161.49,161.41,161.33,161.26,161.19,161.05,23.48,23.150000000000002,22.97,22.77,22.580000000000002,22.39,22.19,22.01,21.62,N/A,N/A -2012,4,13,7,30,101640,100460,99330,73.36,0,9.32,10.28,10.52,10.66,10.76,10.83,10.89,10.93,10.99,166.75,166.1,165.82,165.56,165.33,165.12,164.91,164.72,164.34,23.44,23.1,22.92,22.72,22.53,22.34,22.150000000000002,21.96,21.57,N/A,N/A -2012,4,13,8,30,101600,100430,99300,77.52,0,9.28,10.15,10.370000000000001,10.49,10.57,10.620000000000001,10.66,10.69,10.72,158.58,158.86,159.05,159.26,159.44,159.62,159.8,159.97,160.32,23.31,22.95,22.78,22.580000000000002,22.39,22.2,22.01,21.82,21.44,N/A,N/A -2012,4,13,9,30,101600,100430,99290,79.21000000000001,0,9.55,10.5,10.75,10.88,10.97,11.03,11.07,11.1,11.120000000000001,158.09,157.99,158.02,158.06,158.1,158.15,158.20000000000002,158.25,158.36,23.18,22.830000000000002,22.650000000000002,22.44,22.25,22.06,21.86,21.68,21.29,N/A,N/A -2012,4,13,10,30,101580,100410,99280,80.49,0,8.950000000000001,9.870000000000001,10.120000000000001,10.27,10.39,10.47,10.53,10.59,10.67,163.95000000000002,163.70000000000002,163.57,163.45000000000002,163.34,163.25,163.14000000000001,163.05,162.86,23.21,22.86,22.68,22.48,22.28,22.09,21.89,21.71,21.32,N/A,N/A -2012,4,13,11,30,101570,100400,99270,78.15,0,8.94,9.82,10.05,10.18,10.28,10.34,10.39,10.44,10.5,162.65,162.49,162.45000000000002,162.43,162.42000000000002,162.41,162.41,162.41,162.43,23.28,22.93,22.75,22.55,22.35,22.16,21.97,21.78,21.39,N/A,N/A -2012,4,13,12,30,101590,100420,99290,79.49,0,8.48,9.370000000000001,9.620000000000001,9.78,9.91,10,10.08,10.14,10.24,163.18,163.34,163.4,163.44,163.46,163.48,163.49,163.49,163.49,23.47,23.14,22.96,22.76,22.57,22.38,22.18,22,21.61,N/A,N/A -2012,4,13,13,30,101620,100450,99320,79.38,0,8.370000000000001,9.27,9.52,9.69,9.81,9.91,9.99,10.06,10.17,165.67000000000002,165.49,165.35,165.22,165.09,164.96,164.83,164.71,164.47,23.59,23.26,23.09,22.89,22.7,22.51,22.31,22.13,21.75,N/A,N/A -2012,4,13,14,30,101670,100500,99370,79.31,0,8.790000000000001,9.67,9.870000000000001,9.98,10.05,10.1,10.14,10.16,10.17,158.92000000000002,159.19,159.25,159.29,159.33,159.36,159.38,159.41,159.47,23.71,23.38,23.21,23.01,22.82,22.63,22.44,22.25,21.86,N/A,N/A -2012,4,13,15,30,101710,100530,99400,82.22,0,7.9,8.64,8.82,8.93,9,9.05,9.09,9.120000000000001,9.17,159.42000000000002,159.70000000000002,159.82,159.94,160.04,160.14000000000001,160.23,160.32,160.5,23.71,23.39,23.22,23.02,22.830000000000002,22.650000000000002,22.45,22.27,21.89,N/A,N/A -2012,4,13,16,30,101730,100560,99430,82.52,0,7.42,8.13,8.32,8.44,8.51,8.58,8.620000000000001,8.66,8.72,163.71,164.38,164.68,164.96,165.20000000000002,165.42000000000002,165.62,165.81,166.17000000000002,23.88,23.57,23.400000000000002,23.2,23.02,22.830000000000002,22.63,22.45,22.07,N/A,N/A -2012,4,13,17,30,101720,100550,99420,85.31,0,8.36,9.200000000000001,9.4,9.52,9.6,9.66,9.69,9.71,9.73,159.94,160.29,160.5,160.73,160.94,161.14000000000001,161.34,161.54,161.93,23.85,23.53,23.35,23.16,22.96,22.77,22.580000000000002,22.400000000000002,22.01,N/A,N/A -2012,4,13,18,30,101730,100560,99430,82.25,0,8.51,9.38,9.6,9.73,9.81,9.870000000000001,9.91,9.94,9.97,157.43,157.70000000000002,157.81,157.91,157.98,158.05,158.11,158.16,158.25,23.97,23.66,23.490000000000002,23.29,23.1,22.91,22.72,22.54,22.150000000000002,N/A,N/A -2012,4,13,19,30,101710,100540,99410,84.17,0,7.86,8.620000000000001,8.81,8.92,8.99,9.040000000000001,9.08,9.1,9.14,153.62,153.58,153.6,153.62,153.64000000000001,153.66,153.69,153.71,153.77,23.97,23.66,23.490000000000002,23.3,23.11,22.92,22.72,22.54,22.150000000000002,N/A,N/A -2012,4,13,20,30,101670,100500,99370,86.34,0,8.370000000000001,9.22,9.43,9.56,9.64,9.69,9.73,9.75,9.78,143.36,143.52,143.66,143.82,143.96,144.1,144.23,144.36,144.64000000000001,23.96,23.650000000000002,23.490000000000002,23.29,23.1,22.91,22.72,22.53,22.150000000000002,N/A,N/A -2012,4,13,21,30,101630,100470,99330,86.88,0,9.74,10.77,11.040000000000001,11.21,11.32,11.39,11.44,11.48,11.53,143.65,143.81,143.89000000000001,143.99,144.06,144.14000000000001,144.22,144.28,144.43,23.96,23.650000000000002,23.490000000000002,23.29,23.1,22.91,22.72,22.54,22.16,N/A,N/A -2012,4,13,22,30,101590,100420,99290,85.46000000000001,0,9.75,10.82,11.11,11.28,11.41,11.5,11.57,11.63,11.700000000000001,147.06,147.17000000000002,147.26,147.34,147.41,147.48,147.54,147.6,147.72,23.95,23.650000000000002,23.48,23.29,23.1,22.91,22.72,22.53,22.150000000000002,N/A,N/A -2012,4,13,23,30,101570,100400,99270,87.33,0,10.25,11.38,11.66,11.84,11.97,12.06,12.120000000000001,12.17,12.24,147.57,147.72,147.81,147.9,147.98,148.05,148.12,148.18,148.31,23.85,23.53,23.36,23.17,22.98,22.79,22.59,22.41,22.03,N/A,N/A -2012,4,14,0,30,101530,100360,99230,87.7,0,10.39,11.55,11.86,12.05,12.19,12.290000000000001,12.370000000000001,12.43,12.51,143.11,143.28,143.35,143.41,143.46,143.51,143.56,143.6,143.69,23.84,23.53,23.35,23.16,22.97,22.78,22.59,22.400000000000002,22.01,N/A,N/A -2012,4,14,1,30,101510,100340,99210,85.64,0,11.18,12.41,12.700000000000001,12.88,13.01,13.09,13.15,13.19,13.24,144.36,144.52,144.59,144.66,144.73,144.8,144.88,144.95000000000002,145.11,23.82,23.5,23.330000000000002,23.13,22.94,22.76,22.56,22.38,21.990000000000002,N/A,N/A -2012,4,14,2,30,101530,100370,99230,86.14,0,11.57,12.870000000000001,13.21,13.41,13.55,13.65,13.73,13.790000000000001,13.86,149.61,149.64000000000001,149.67000000000002,149.69,149.72,149.74,149.75,149.77,149.81,23.8,23.48,23.31,23.11,22.91,22.73,22.53,22.35,21.96,N/A,N/A -2012,4,14,3,30,101540,100380,99250,85.58,0,11.3,12.57,12.9,13.1,13.25,13.35,13.43,13.49,13.57,150.6,150.61,150.64000000000001,150.67000000000002,150.70000000000002,150.74,150.77,150.81,150.89000000000001,23.75,23.42,23.25,23.05,22.86,22.67,22.47,22.29,21.900000000000002,N/A,N/A -2012,4,14,4,30,101540,100370,99240,85.33,0,11.35,12.55,12.870000000000001,13.05,13.18,13.280000000000001,13.35,13.41,13.49,150.5,150.97,151.17000000000002,151.35,151.51,151.66,151.8,151.93,152.20000000000002,23.72,23.39,23.22,23.02,22.82,22.63,22.43,22.25,21.86,N/A,N/A -2012,4,14,5,30,101510,100340,99210,83.65,0,12.040000000000001,13.4,13.75,13.96,14.1,14.21,14.280000000000001,14.33,14.4,155.98,155.87,155.8,155.71,155.64000000000001,155.55,155.47,155.4,155.23,23.69,23.35,23.18,22.98,22.79,22.6,22.400000000000002,22.22,21.830000000000002,N/A,N/A -2012,4,14,6,30,101520,100350,99220,84.08,0,11.76,13.19,13.59,13.85,14.05,14.21,14.33,14.44,14.6,155.85,155.8,155.76,155.71,155.65,155.58,155.51,155.44,155.27,23.650000000000002,23.38,23.23,23.04,22.86,22.69,22.5,22.32,21.95,N/A,N/A -2012,4,14,7,30,101540,100370,99240,85.32000000000001,0,11.38,12.73,13.1,13.33,13.51,13.64,13.74,13.82,13.94,151.32,151.47,151.56,151.65,151.75,151.83,151.92000000000002,152,152.17000000000002,23.580000000000002,23.3,23.13,22.95,22.76,22.580000000000002,22.38,22.2,21.82,N/A,N/A -2012,4,14,8,30,101520,100350,99220,85.67,0,11.96,13.370000000000001,13.75,14.01,14.200000000000001,14.35,14.48,14.59,14.8,156.97,157.05,157.09,157.11,157.13,157.14000000000001,157.14000000000001,157.14000000000001,157.13,23.5,23.21,23.05,22.87,22.68,22.5,22.31,22.13,21.76,N/A,N/A -2012,4,14,9,30,101510,100350,99210,86.04,0,11.39,12.75,13.120000000000001,13.36,13.540000000000001,13.68,13.780000000000001,13.870000000000001,14,154.24,154.13,154.14000000000001,154.18,154.21,154.26,154.31,154.37,154.51,23.44,23.14,22.98,22.79,22.6,22.42,22.22,22.04,21.66,N/A,N/A -2012,4,14,10,30,101520,100350,99220,86.06,0,11.41,12.700000000000001,13.06,13.290000000000001,13.46,13.6,13.71,13.81,14,155.78,155.76,155.78,155.8,155.82,155.83,155.85,155.87,155.9,23.41,23.11,22.95,22.76,22.580000000000002,22.39,22.2,22.03,21.650000000000002,N/A,N/A -2012,4,14,11,30,101520,100350,99220,87.16,0,12.11,13.49,13.85,14.06,14.21,14.32,14.39,14.450000000000001,14.51,154.99,155.06,155.1,155.15,155.19,155.22,155.25,155.29,155.35,23.26,22.94,22.77,22.57,22.37,22.19,21.990000000000002,21.8,21.41,N/A,N/A -2012,4,14,12,30,101530,100360,99230,87.32000000000001,0,12.17,13.6,13.98,14.22,14.4,14.540000000000001,14.63,14.72,14.83,152.8,152.88,152.95000000000002,153.01,153.07,153.13,153.19,153.25,153.38,23.29,22.97,22.8,22.6,22.41,22.22,22.03,21.84,21.46,N/A,N/A -2012,4,14,13,30,101550,100380,99250,86.85000000000001,0,11.64,12.96,13.31,13.530000000000001,13.700000000000001,13.83,13.950000000000001,14.05,14.25,152.31,152.51,152.6,152.70000000000002,152.8,152.9,153.01,153.12,153.36,23.31,23,22.84,22.650000000000002,22.46,22.28,22.09,21.92,21.55,N/A,N/A -2012,4,14,14,30,101580,100410,99280,86.02,0,11.47,12.69,13.030000000000001,13.24,13.41,13.540000000000001,13.67,13.790000000000001,14.08,154.12,154.45000000000002,154.6,154.76,154.92000000000002,155.08,155.25,155.42000000000002,155.82,23.41,23.12,22.96,22.77,22.6,22.42,22.240000000000002,22.07,21.73,N/A,N/A -2012,4,14,15,30,101600,100430,99300,86.44,0,12.11,13.51,13.89,14.120000000000001,14.290000000000001,14.42,14.52,14.61,14.74,152.28,152.53,152.64000000000001,152.75,152.86,152.96,153.07,153.17000000000002,153.4,23.41,23.11,22.95,22.75,22.57,22.39,22.2,22.02,21.650000000000002,N/A,N/A -2012,4,14,16,30,101590,100420,99280,84.75,0,10.98,12.21,12.540000000000001,12.75,12.9,13.02,13.11,13.200000000000001,13.34,154.15,154.31,154.37,154.45000000000002,154.52,154.6,154.69,154.77,154.97,23.490000000000002,23.2,23.04,22.85,22.66,22.48,22.29,22.11,21.73,N/A,N/A -2012,4,14,17,30,101580,100410,99280,82.73,0,11.19,12.41,12.73,12.93,13.07,13.17,13.25,13.32,13.43,153.93,154.03,154.08,154.13,154.17000000000002,154.21,154.26,154.31,154.43,23.55,23.27,23.11,22.92,22.73,22.55,22.37,22.19,21.82,N/A,N/A -2012,4,14,18,30,101570,100400,99270,81.85000000000001,0,11.290000000000001,12.65,13.01,13.25,13.42,13.540000000000001,13.63,13.71,13.81,150.85,150.61,150.55,150.51,150.47,150.44,150.41,150.39000000000001,150.36,23.63,23.34,23.18,22.990000000000002,22.8,22.61,22.42,22.23,21.85,N/A,N/A -2012,4,14,19,30,101550,100390,99250,81.73,0,11.89,13.21,13.56,13.77,13.91,14.01,14.08,14.13,14.19,148.36,148.34,148.39000000000001,148.42000000000002,148.46,148.49,148.52,148.56,148.63,23.63,23.36,23.2,23.01,22.82,22.64,22.45,22.27,21.900000000000002,N/A,N/A -2012,4,14,20,30,101500,100330,99200,81.73,0,11.34,12.6,12.94,13.16,13.32,13.450000000000001,13.56,13.65,13.84,148.78,149.18,149.35,149.53,149.70000000000002,149.86,150.04,150.22,150.6,23.6,23.330000000000002,23.17,22.98,22.81,22.63,22.44,22.27,21.91,N/A,N/A -2012,4,14,21,30,101450,100280,99150,82.18,0,11.21,12.56,12.92,13.17,13.35,13.5,13.63,13.74,13.94,150.3,150.38,150.45000000000002,150.53,150.6,150.67000000000002,150.74,150.81,150.98,23.580000000000002,23.31,23.150000000000002,22.96,22.78,22.6,22.41,22.23,21.86,N/A,N/A -2012,4,14,22,30,101400,100230,99100,83.08,0,11.3,12.65,13.01,13.26,13.46,13.61,13.75,13.88,14.13,149.64000000000001,149.85,149.97,150.09,150.22,150.34,150.47,150.59,150.89000000000001,23.52,23.240000000000002,23.080000000000002,22.900000000000002,22.72,22.54,22.35,22.18,21.81,N/A,N/A -2012,4,14,23,30,101350,100190,99060,83.53,0,11.94,13.44,13.84,14.13,14.35,14.530000000000001,14.67,14.8,15.01,148.63,148.66,148.71,148.76,148.82,148.87,148.92000000000002,148.97,149.08,23.47,23.19,23.02,22.830000000000002,22.650000000000002,22.47,22.27,22.09,21.72,N/A,N/A -2012,4,15,0,30,101290,100130,99000,83.85000000000001,0,11.78,13.290000000000001,13.700000000000001,14,14.23,14.43,14.6,14.75,15.02,148.75,148.95000000000002,149.07,149.18,149.29,149.4,149.51,149.62,149.85,23.46,23.17,23.01,22.82,22.64,22.46,22.27,22.09,21.72,N/A,N/A -2012,4,15,1,30,101250,100080,98950,84.37,0,13.21,14.870000000000001,15.32,15.63,15.85,16.02,16.15,16.25,16.41,148.41,148.29,148.28,148.28,148.29,148.29,148.31,148.32,148.36,23.43,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.01,21.63,N/A,N/A -2012,4,15,2,30,101230,100070,98940,84.38,0,12.790000000000001,14.32,14.74,15.030000000000001,15.24,15.4,15.540000000000001,15.66,15.870000000000001,148.67000000000002,148.82,148.92000000000002,149.03,149.13,149.23,149.33,149.43,149.65,23.45,23.16,22.990000000000002,22.8,22.62,22.44,22.240000000000002,22.07,21.69,N/A,N/A -2012,4,15,3,30,101200,100040,98910,86.22,0,13.030000000000001,14.56,14.96,15.23,15.42,15.58,15.700000000000001,15.81,16,148.44,148.59,148.68,148.78,148.88,148.98,149.09,149.20000000000002,149.46,23.34,23.03,22.87,22.67,22.490000000000002,22.3,22.11,21.93,21.56,N/A,N/A -2012,4,15,4,30,101170,100010,98880,87.37,0,13.48,15.11,15.55,15.84,16.05,16.21,16.34,16.45,16.62,150.97,151.04,151.08,151.13,151.18,151.23,151.28,151.34,151.46,23.26,22.95,22.78,22.580000000000002,22.39,22.21,22.01,21.830000000000002,21.46,N/A,N/A -2012,4,15,5,30,101150,99980,98850,87.91,0,13.290000000000001,14.89,15.32,15.6,15.81,15.98,16.11,16.22,16.42,154.05,154.16,154.23,154.3,154.36,154.43,154.49,154.56,154.73,23.25,22.93,22.76,22.57,22.38,22.19,22,21.82,21.44,N/A,N/A -2012,4,15,6,30,101140,99980,98850,89.04,0,13.07,14.59,15,15.27,15.46,15.610000000000001,15.73,15.84,16.02,155.13,155.24,155.3,155.38,155.45000000000002,155.52,155.6,155.68,155.87,23.23,22.91,22.73,22.54,22.35,22.16,21.97,21.79,21.42,N/A,N/A -2012,4,15,7,30,101120,99960,98830,90.39,0,13.47,15.09,15.52,15.8,16.01,16.17,16.3,16.4,16.57,157.41,157.57,157.65,157.73,157.81,157.88,157.97,158.05,158.24,23.22,22.89,22.71,22.51,22.32,22.13,21.94,21.75,21.37,N/A,N/A -2012,4,15,8,30,101100,99930,98800,90.98,0,13.42,15.040000000000001,15.47,15.76,15.97,16.14,16.27,16.38,16.55,161.84,161.76,161.76,161.75,161.76,161.76,161.78,161.8,161.84,23.240000000000002,22.91,22.73,22.54,22.34,22.16,21.96,21.78,21.39,N/A,N/A -2012,4,15,9,30,101110,99940,98810,89.89,0,13.73,15.39,15.85,16.16,16.39,16.56,16.7,16.82,17.02,162.26,162.43,162.49,162.55,162.6,162.64000000000001,162.69,162.73,162.83,23.27,22.95,22.78,22.580000000000002,22.39,22.2,22.01,21.830000000000002,21.44,N/A,N/A -2012,4,15,10,30,101060,99900,98770,91.04,0,13.93,15.56,16,16.29,16.5,16.68,16.82,16.95,17.2,159.98,160.17000000000002,160.26,160.36,160.46,160.56,160.68,160.79,161.08,23.28,22.96,22.79,22.59,22.400000000000002,22.22,22.03,21.85,21.48,N/A,N/A -2012,4,15,11,30,101090,99920,98800,91.33,0,12.700000000000001,14.280000000000001,14.72,15.040000000000001,15.290000000000001,15.5,15.700000000000001,15.870000000000001,16.23,159.70000000000002,159.87,159.98,160.1,160.22,160.34,160.48,160.61,160.92000000000002,23.35,23.05,22.88,22.69,22.5,22.32,22.13,21.96,21.59,N/A,N/A -2012,4,15,12,30,101100,99940,98810,90.96000000000001,0,12.16,13.68,14.09,14.4,14.65,14.870000000000001,15.07,15.25,15.66,161.41,161.51,161.6,161.70000000000002,161.8,161.89000000000001,162.01,162.12,162.38,23.42,23.12,22.95,22.76,22.580000000000002,22.400000000000002,22.21,22.04,21.67,N/A,N/A -2012,4,15,13,30,101120,99960,98840,88.99,0,12.25,13.82,14.34,14.780000000000001,15.19,15.58,16.04,16.490000000000002,17.650000000000002,161.47,161.75,161.93,162.12,162.32,162.52,162.75,162.97,163.53,23.59,23.32,23.17,23,22.84,22.67,22.51,22.36,22.06,N/A,N/A -2012,4,15,14,30,101170,100000,98880,85.85000000000001,0,11.790000000000001,13.3,13.790000000000001,14.21,14.59,14.97,15.38,15.77,16.64,157.88,158.22,158.48,158.78,159.1,159.45000000000002,159.86,160.26,161.16,23.81,23.57,23.43,23.26,23.1,22.94,22.77,22.62,22.3,N/A,N/A -2012,4,15,15,30,101160,100000,98870,87.2,0,12.08,13.620000000000001,14.09,14.47,14.81,15.11,15.42,15.72,16.44,157.96,158.20000000000002,158.35,158.54,158.74,158.96,159.22,159.47,160.11,23.78,23.52,23.37,23.19,23.02,22.84,22.67,22.5,22.16,N/A,N/A -2012,4,15,16,30,101180,100020,98900,86.16,0,10.15,11.97,12.780000000000001,13.58,14.08,14.38,14.77,15.17,15.88,160.08,160.57,161.06,161.83,162.28,162.49,162.62,162.71,163.01,23.95,23.740000000000002,23.6,23.43,23.25,23.080000000000002,22.91,22.77,22.44,N/A,N/A -2012,4,15,17,30,101230,100070,98940,85.46000000000001,0,11.28,12.790000000000001,13.280000000000001,13.67,13.99,14.27,14.530000000000001,14.76,15.200000000000001,163.53,163.67000000000002,163.78,163.89000000000001,164,164.11,164.23,164.34,164.6,24.14,23.93,23.79,23.62,23.45,23.29,23.11,22.95,22.6,N/A,N/A -2012,4,15,18,30,101230,100070,98950,87.96000000000001,0,10.76,12.16,12.620000000000001,12.98,13.280000000000001,13.55,13.790000000000001,14,14.42,161.53,161.66,161.81,161.97,162.12,162.27,162.43,162.58,162.91,24.07,23.85,23.71,23.53,23.37,23.2,23.02,22.85,22.5,N/A,N/A -2012,4,15,19,30,101240,100080,98950,90.34,0,11.16,12.6,13.06,13.43,13.72,13.99,14.23,14.450000000000001,14.870000000000001,165.27,165.52,165.62,165.77,165.91,166.06,166.23,166.39000000000001,166.77,24.02,23.79,23.650000000000002,23.47,23.3,23.13,22.95,22.79,22.44,N/A,N/A -2012,4,15,20,30,101200,100040,98920,91.57000000000001,0,10.71,12.16,12.64,13.040000000000001,13.36,13.65,13.91,14.15,14.6,165.42000000000002,165.55,165.67000000000002,165.8,165.93,166.06,166.20000000000002,166.34,166.64000000000001,24.04,23.82,23.68,23.5,23.34,23.17,22.990000000000002,22.82,22.48,N/A,N/A -2012,4,15,21,30,101200,100040,98910,91.95,0,9.86,11.16,11.59,11.94,12.23,12.49,12.74,12.97,13.41,163.6,163.94,164.12,164.32,164.54,164.77,165.03,165.28,165.9,23.990000000000002,23.76,23.62,23.45,23.29,23.12,22.95,22.79,22.47,N/A,N/A -2012,4,15,22,30,101180,100020,98890,91.83,0,10.450000000000001,11.8,12.23,12.57,12.86,13.11,13.34,13.56,13.97,163.93,164.33,164.51,164.72,164.94,165.16,165.42000000000002,165.67000000000002,166.28,23.93,23.69,23.54,23.37,23.2,23.03,22.86,22.69,22.35,N/A,N/A -2012,4,15,23,30,101190,100030,98910,90.91,0,9.71,10.97,11.4,11.74,12.030000000000001,12.280000000000001,12.52,12.73,13.14,163.52,163.65,163.78,163.93,164.08,164.24,164.41,164.57,164.95000000000002,23.92,23.68,23.54,23.36,23.2,23.02,22.85,22.68,22.330000000000002,N/A,N/A -2012,4,16,0,30,101180,100020,98890,91.73,0,9.09,10.44,10.96,11.39,11.75,12.06,12.34,12.59,13.030000000000001,162.53,162.8,162.99,163.17000000000002,163.36,163.57,163.8,164.03,164.54,23.82,23.580000000000002,23.44,23.27,23.1,22.94,22.76,22.59,22.25,N/A,N/A -2012,4,16,1,30,101190,100030,98910,91.87,0,8.97,10.66,11.370000000000001,11.91,12.32,12.66,12.97,13.25,13.76,158.97,160.26,160.9,161.08,161.22,161.33,161.5,161.66,162.08,23.81,23.55,23.41,23.26,23.11,22.95,22.77,22.61,22.26,N/A,N/A -2012,4,16,2,30,101210,100040,98920,92.29,0,9.27,11.18,11.84,12.07,12.4,12.8,13.16,13.49,14.07,161.69,162.52,162.94,163.16,163.4,163.67000000000002,163.88,164.07,164.55,23.740000000000002,23.5,23.35,23.16,23,22.85,22.68,22.53,22.19,N/A,N/A -2012,4,16,3,30,101210,100050,98930,92.65,0,9.71,11.040000000000001,11.58,12.21,12.72,13.16,13.33,13.4,14.11,162.68,163.09,163.44,163.91,164.3,164.62,164.76,164.83,165.61,23.66,23.400000000000002,23.25,23.09,22.92,22.75,22.57,22.39,22.080000000000002,N/A,N/A -2012,4,16,4,30,101260,100090,98970,92.38,0,9.14,10.24,10.6,10.93,11.24,11.55,11.94,12.35,13.24,162.79,163.03,163.20000000000002,163.43,163.68,163.95000000000002,164.31,164.67000000000002,165.4,23.62,23.35,23.19,23.01,22.84,22.66,22.490000000000002,22.330000000000002,21.990000000000002,N/A,N/A -2012,4,16,5,30,101270,100110,98980,91.8,0,8.92,9.94,10.26,10.52,10.77,11.02,11.33,11.64,12.71,165.83,166.01,166.15,166.32,166.5,166.70000000000002,166.96,167.22,168.01,23.59,23.31,23.150000000000002,22.97,22.79,22.62,22.44,22.28,21.96,N/A,N/A -2012,4,16,6,30,101320,100150,99020,90.28,0,9.01,9.99,10.27,10.49,10.68,10.86,11.07,11.28,12,169.88,169.94,170,170.09,170.19,170.3,170.44,170.58,171.08,23.68,23.39,23.23,23.04,22.87,22.69,22.51,22.35,22.03,N/A,N/A -2012,4,16,7,30,101370,100210,99080,89.4,0,7.98,8.83,9.07,9.25,9.4,9.540000000000001,9.700000000000001,9.86,10.38,173.70000000000002,173.78,173.8,173.84,173.89000000000001,173.94,174.01,174.09,174.32,23.73,23.45,23.28,23.09,22.91,22.740000000000002,22.55,22.38,22.04,N/A,N/A -2012,4,16,8,30,101410,100240,99110,90.19,0,6.8,7.44,7.61,7.72,7.8100000000000005,7.9,7.99,8.09,8.51,181.38,181.36,181.35,181.33,181.31,181.29,181.27,181.26,181.22,23.69,23.39,23.23,23.04,22.86,22.67,22.490000000000002,22.31,21.97,N/A,N/A -2012,4,16,9,30,101470,100310,99180,90.7,0,4.3100000000000005,4.67,4.7700000000000005,4.83,4.89,4.95,5.04,5.15,6.03,198.54,198.36,198.17000000000002,198,197.83,197.66,197.39000000000001,197.1,195.12,23.7,23.41,23.25,23.06,22.87,22.69,22.5,22.330000000000002,22.01,N/A,N/A -2012,4,16,10,30,101510,100350,99220,91.68,0,3.52,3.7600000000000002,3.81,3.83,3.84,3.85,3.85,3.85,5.72,198.31,198.33,198.35,198.36,198.34,198.31,198.31,198.31,194.76,23.67,23.38,23.21,23.02,22.830000000000002,22.64,22.45,22.27,22.05,N/A,N/A -2012,4,16,11,30,101580,100410,99280,92.14,0.7000000000000001,2.64,2.8000000000000003,2.84,2.87,3.22,3.9,4.33,4.64,5.1000000000000005,215.9,215.29,215.06,214.73000000000002,213,209.71,208.36,207.86,206.51,23.7,23.41,23.240000000000002,23.05,22.89,22.76,22.61,22.47,22.17,N/A,N/A -2012,4,16,12,30,101610,100440,99310,92.83,0.7000000000000001,2.24,2.45,2.62,3.06,3.37,3.5500000000000003,3.75,3.94,4.33,162.70000000000002,165.22,167.71,172.45000000000002,175.41,176.65,177.79,178.86,180.54,23.6,23.34,23.21,23.09,22.96,22.830000000000002,22.69,22.57,22.3,N/A,N/A -2012,4,16,13,30,101650,100480,99350,92.87,0,0.09,0.18,0.31,0.8200000000000001,1.32,1.54,1.78,2.02,2.52,138.62,163.83,179.74,188.9,196.3,197.08,197.78,198.45000000000002,199.37,23.6,23.31,23.18,23.06,22.93,22.79,22.66,22.53,22.28,N/A,N/A -2012,4,16,14,30,101710,100540,99410,93.01,0,1.93,2.0100000000000002,2,1.98,1.97,1.97,2.0100000000000002,2.04,2.18,91.69,93.91,95.55,97.91,102.3,108.16,115.37,122.52,133.86,23.66,23.36,23.2,23.01,22.84,22.67,22.51,22.35,22.07,N/A,N/A -2012,4,16,15,30,101710,100540,99410,94.17,0,0.64,0.58,0.48,0.34,0.34,0.43,0.61,0.87,1.41,62.22,63,70.75,87.04,112.5,152.32,167.96,176.64000000000001,179.85,23.52,23.240000000000002,23.13,23.06,22.990000000000002,22.92,22.84,22.76,22.580000000000002,N/A,N/A -2012,4,16,16,30,101690,100520,99390,94.29,0,1.17,1.19,1.18,1.17,1.16,1.16,1.17,1.19,1.33,77.13,81.73,84.85000000000001,88.59,92.66,97.05,103.04,109.22,126.10000000000001,23.6,23.28,23.12,22.93,22.75,22.580000000000002,22.400000000000002,22.240000000000002,21.94,N/A,N/A -2012,4,16,17,30,101660,100490,99360,91.8,1.1,0.93,0.92,0.9,0.88,0.85,0.84,0.81,0.8,0.75,41.63,45.21,47.34,49.660000000000004,52,54.34,57.04,59.58,66.3,23.79,23.47,23.3,23.1,22.91,22.73,22.54,22.36,21.98,N/A,N/A -2012,4,16,18,30,101690,100530,99400,92.07000000000001,0,1.33,1.3900000000000001,1.42,1.44,1.46,1.48,1.5,1.52,1.56,105.43,107.43,108.58,109.63,110.53,111.37,112.18,112.95,114.66,24.07,23.740000000000002,23.56,23.37,23.18,23,22.81,22.63,22.26,N/A,N/A -2012,4,16,19,30,101620,100460,99330,88.21000000000001,0,2.5100000000000002,2.66,2.72,2.7600000000000002,2.81,2.86,2.92,2.98,3.15,118.17,118.36,118.72,119.10000000000001,119.49000000000001,119.89,120.36,120.83,122.22,24.25,23.91,23.73,23.54,23.35,23.16,22.97,22.79,22.41,N/A,N/A -2012,4,16,20,30,101650,100490,99360,86.93,0,2.35,2.44,2.46,2.47,2.47,2.47,2.47,2.47,2.47,115.27,115.59,115.83,116.10000000000001,116.35000000000001,116.58,116.84,117.09,117.63,24.5,24.17,23.990000000000002,23.8,23.61,23.42,23.23,23.05,22.68,N/A,N/A -2012,4,16,21,30,101690,100520,99390,89.05,0,3.75,3.98,4.0200000000000005,4.03,4.0200000000000005,4.01,3.99,3.97,3.91,179.12,178.95000000000002,178.73,178.54,178.38,178.23,178.07,177.91,177.51,24.43,24.11,23.94,23.740000000000002,23.56,23.37,23.17,22.990000000000002,22.62,N/A,N/A -2012,4,16,22,30,101690,100520,99400,88.73,0,4.11,4.43,4.49,4.51,4.53,4.53,4.53,4.5200000000000005,4.5,244.24,244.75,244.89000000000001,245.05,245.20000000000002,245.34,245.5,245.65,246.01000000000002,24.46,24.16,24,23.8,23.61,23.43,23.240000000000002,23.06,22.68,N/A,N/A -2012,4,16,23,30,101630,100450,99320,85.44,0,7.21,7.5600000000000005,7.73,8.13,8.46,8.74,8.620000000000001,8.4,7.79,326.34000000000003,326.44,326.03000000000003,325.05,323.2,320.7,317.29,314.01,309.23,21.85,21.57,21.59,21.86,22.42,23.18,23.67,24.04,23.87,N/A,N/A -2012,4,17,0,30,101630,100450,99310,91.63,0,11.86,12.870000000000001,13.06,13.11,13.11,13.09,13.030000000000001,12.97,12.67,68.73,68.88,68.85000000000001,68.81,68.75,68.68,68.55,68.43,67.77,21.71,21.27,21.09,20.900000000000002,20.73,20.57,20.42,20.28,20.1,N/A,N/A -2012,4,17,1,30,101630,100460,99320,92.27,0,8.46,9.11,9.23,9.27,9.28,9.27,9.23,9.19,9.09,83.22,83.14,83.22,83.28,83.32000000000001,83.34,83.37,83.39,83.52,21.98,21.57,21.37,21.17,20.98,20.8,20.6,20.42,20.05,N/A,N/A -2012,4,17,2,30,101790,100610,99470,90.26,0,5.41,5.75,5.82,5.84,5.8500000000000005,5.8500000000000005,5.84,5.83,5.8,47.93,48.35,48.64,48.94,49.22,49.49,49.78,50.06,50.68,22.080000000000002,21.7,21.51,21.31,21.11,20.92,20.73,20.55,20.17,N/A,N/A -2012,4,17,3,30,101800,100620,99480,86.26,0,5.92,6.34,6.45,6.51,6.55,6.58,6.61,6.63,6.65,50.870000000000005,50.51,50.4,50.300000000000004,50.230000000000004,50.17,50.14,50.11,50.18,22.37,22,21.81,21.61,21.41,21.21,21.02,20.830000000000002,20.43,N/A,N/A -2012,4,17,4,30,101760,100590,99440,90.71000000000001,0,7.54,8.13,8.27,8.34,8.39,8.42,8.44,8.45,8.46,51.24,51.75,52.03,52.300000000000004,52.53,52.75,52.96,53.15,53.550000000000004,22,21.59,21.39,21.19,20.990000000000002,20.8,20.6,20.42,20.04,N/A,N/A -2012,4,17,5,30,101760,100590,99450,87.11,0,8.120000000000001,8.76,8.91,8.97,9,9.02,9.02,9.02,8.99,61.160000000000004,60.94,60.85,60.77,60.69,60.620000000000005,60.56,60.5,60.4,22.16,21.75,21.56,21.36,21.16,20.97,20.78,20.59,20.21,N/A,N/A -2012,4,17,6,30,101840,100660,99520,86.71000000000001,0,7.13,7.66,7.78,7.83,7.86,7.88,7.88,7.890000000000001,7.87,75.13,75.06,74.91,74.78,74.64,74.52,74.39,74.27,74.01,22.240000000000002,21.85,21.67,21.47,21.27,21.080000000000002,20.89,20.71,20.32,N/A,N/A -2012,4,17,7,30,101880,100690,99550,90.74,71.8,6.29,6.76,6.87,6.92,6.96,6.98,6.99,7,7,78.43,77.98,77.59,77.23,76.9,76.60000000000001,76.29,76,75.43,21.63,21.240000000000002,21.06,20.87,20.69,20.53,20.35,20.18,19.84,N/A,N/A -2012,4,17,8,30,101870,100690,99550,91.66,8.4,6.5200000000000005,7.04,7.15,7.21,7.24,7.2700000000000005,7.28,7.28,7.29,52.69,52.99,53.19,53.370000000000005,53.550000000000004,53.71,53.89,54.050000000000004,54.410000000000004,21.82,21.42,21.23,21.04,20.85,20.67,20.47,20.3,19.93,N/A,N/A -2012,4,17,9,30,101870,100690,99540,91.42,0,7.32,7.7700000000000005,7.82,7.8100000000000005,7.7700000000000005,7.72,7.65,7.58,7.390000000000001,24.12,24.34,24.53,24.740000000000002,24.96,25.19,25.490000000000002,25.79,26.7,21.3,20.87,20.67,20.47,20.28,20.1,19.91,19.740000000000002,19.38,N/A,N/A -2012,4,17,10,30,101890,100710,99560,91.85000000000001,47.2,7.46,7.94,8.05,8.09,8.11,8.11,8.1,8.09,8.08,24.62,25.16,25.490000000000002,25.86,26.25,26.650000000000002,27.16,27.66,29.26,21.13,20.69,20.5,20.3,20.12,19.94,19.75,19.580000000000002,19.22,N/A,N/A -2012,4,17,11,30,101850,100670,99520,94.06,11.4,6.88,7.36,7.47,7.53,7.58,7.61,7.640000000000001,7.66,7.73,82.26,81.55,81.07000000000001,80.54,80.01,79.49,78.94,78.42,77.27,21.17,20.740000000000002,20.55,20.35,20.16,19.98,19.79,19.61,19.22,N/A,N/A -2012,4,17,12,30,101940,100750,99600,89.69,0,4.39,4.59,4.63,4.64,4.65,4.64,4.64,4.63,4.61,91.41,91.5,91.63,91.74,91.83,91.91,92,92.07000000000001,92.21000000000001,20.990000000000002,20.580000000000002,20.39,20.18,19.990000000000002,19.8,19.61,19.43,19.05,N/A,N/A -2012,4,17,13,30,101920,100730,99580,93.03,30.400000000000002,8.64,9.370000000000001,9.48,9.53,9.55,9.540000000000001,9.52,9.49,9.4,17.67,18.06,18.25,18.44,18.66,18.86,19.11,19.35,19.96,20.54,20.06,19.85,19.650000000000002,19.45,19.27,19.07,18.89,18.53,N/A,N/A -2012,4,17,14,30,102010,100830,99670,91.16,0,9.5,10.21,10.36,10.41,10.43,10.42,10.39,10.36,10.27,16.56,16.84,16.96,17.07,17.18,17.29,17.41,17.53,17.85,20.580000000000002,20.080000000000002,19.88,19.67,19.47,19.29,19.09,18.92,18.56,N/A,N/A -2012,4,17,15,30,102070,100890,99740,88.59,0,8.35,8.96,9.11,9.17,9.200000000000001,9.22,9.23,9.23,9.21,25.02,25.04,25.01,24.96,24.92,24.87,24.82,24.78,24.68,21.01,20.55,20.35,20.14,19.95,19.76,19.56,19.38,19,N/A,N/A -2012,4,17,16,30,102080,100900,99750,83.55,0,7.07,7.62,7.76,7.84,7.9,7.930000000000001,7.96,7.99,8.01,36.71,36.38,36.13,35.89,35.67,35.45,35.24,35.04,34.61,21.79,21.38,21.19,20.98,20.78,20.59,20.39,20.21,19.82,N/A,N/A -2012,4,17,17,30,102060,100880,99730,79.61,0,5.49,5.89,6,6.0600000000000005,6.11,6.15,6.18,6.21,6.25,39.75,39.58,39.34,39.1,38.89,38.68,38.46,38.26,37.82,22.34,21.97,21.79,21.59,21.39,21.2,21,20.82,20.43,N/A,N/A -2012,4,17,18,30,102050,100870,99720,78.28,0,5.39,5.7700000000000005,5.86,5.91,5.94,5.97,5.98,5.99,6.01,76.49,75.96000000000001,75.52,75.12,74.75,74.41,74.06,73.73,73.02,22.75,22.39,22.22,22.01,21.82,21.63,21.43,21.25,20.87,N/A,N/A -2012,4,17,19,30,102060,100890,99740,79.86,0,4.75,5.05,5.14,5.19,5.22,5.24,5.26,5.2700000000000005,5.28,69.67,69.49,69.41,69.29,69.17,69.03,68.88,68.72,68.35000000000001,22.69,22.330000000000002,22.150000000000002,21.95,21.76,21.57,21.37,21.18,20.8,N/A,N/A -2012,4,17,20,30,101990,100810,99670,79.69,0,5.29,5.67,5.73,5.74,5.75,5.75,5.74,5.73,5.72,58.59,58.94,59.300000000000004,59.660000000000004,60,60.33,60.65,60.95,61.58,22.82,22.48,22.3,22.11,21.92,21.73,21.54,21.36,21,N/A,N/A -2012,4,17,21,30,101960,100780,99640,78.93,0,3.8000000000000003,4.09,4.18,4.25,4.32,4.38,4.46,4.5200000000000005,4.71,46.67,48.18,48.910000000000004,49.63,50.34,51.02,51.81,52.550000000000004,54.370000000000005,22.53,22.18,22,21.81,21.62,21.44,21.25,21.080000000000002,20.72,N/A,N/A -2012,4,17,22,30,101940,100770,99630,77.68,0,2.19,2.41,2.5100000000000002,2.6,2.68,2.75,2.83,2.91,3.08,73.85000000000001,73.93,73.92,73.87,73.8,73.73,73.61,73.49,73.17,22.97,22.650000000000002,22.48,22.29,22.1,21.92,21.73,21.55,21.18,N/A,N/A -2012,4,17,23,30,101920,100740,99610,74.23,0,3.23,3.54,3.64,3.73,3.79,3.85,3.91,3.96,4.05,80.96000000000001,81.10000000000001,81.10000000000001,81.05,81,80.93,80.84,80.75,80.51,23.39,23.080000000000002,22.91,22.72,22.53,22.34,22.150000000000002,21.97,21.580000000000002,N/A,N/A -2012,4,18,0,30,101900,100730,99590,70.55,0,4.34,4.94,5.15,5.34,5.5200000000000005,5.68,5.91,6.13,6.9,57.32,54.84,53.81,52.76,51.79,50.870000000000005,49.44,47.94,43.78,24.14,23.93,23.79,23.63,23.46,23.3,23.13,22.98,22.67,N/A,N/A -2012,4,18,1,30,101920,100750,99610,57.84,0,8.94,9.8,10,10.1,10.17,10.200000000000001,10.21,10.22,10.21,39.99,40.18,40.32,40.49,40.660000000000004,40.83,41.02,41.2,41.6,24.28,24.080000000000002,23.94,23.76,23.580000000000002,23.400000000000002,23.22,23.04,22.66,N/A,N/A -2012,4,18,2,30,101970,100790,99650,71.2,0,9.950000000000001,10.9,11.120000000000001,11.23,11.290000000000001,11.33,11.34,11.35,11.33,57.910000000000004,57.82,57.730000000000004,57.64,57.56,57.480000000000004,57.38,57.300000000000004,57.13,22.96,22.62,22.44,22.240000000000002,22.05,21.86,21.66,21.47,21.080000000000002,N/A,N/A -2012,4,18,3,30,102010,100830,99680,75.64,0,10.17,11.09,11.31,11.4,11.47,11.5,11.51,11.52,11.5,59.59,59.410000000000004,59.31,59.19,59.08,58.97,58.84,58.72,58.44,22.05,21.64,21.45,21.240000000000002,21.04,20.85,20.650000000000002,20.47,20.080000000000002,N/A,N/A -2012,4,18,4,30,102000,100820,99670,74.38,0,9.59,10.47,10.67,10.78,10.86,10.91,10.94,10.96,10.99,55.38,55.300000000000004,55.27,55.24,55.21,55.19,55.15,55.13,55.050000000000004,21.650000000000002,21.21,21.02,20.81,20.61,20.42,20.22,20.04,19.650000000000002,N/A,N/A -2012,4,18,5,30,102010,100830,99680,74.41,0,9.72,10.540000000000001,10.73,10.83,10.89,10.93,10.94,10.96,10.96,56.56,56.49,56.46,56.43,56.4,56.370000000000005,56.33,56.300000000000004,56.230000000000004,21.11,20.64,20.44,20.23,20.03,19.84,19.63,19.45,19.06,N/A,N/A -2012,4,18,6,30,102040,100850,99700,75.49,0,9.02,9.74,9.91,9.99,10.040000000000001,10.07,10.09,10.1,10.1,58.56,58.61,58.65,58.68,58.71,58.730000000000004,58.75,58.77,58.81,20.68,20.18,19.97,19.76,19.55,19.36,19.150000000000002,18.97,18.57,N/A,N/A -2012,4,18,7,30,102070,100880,99730,75.95,0,8.620000000000001,9.27,9.41,9.48,9.52,9.55,9.56,9.57,9.56,57.81,57.88,57.94,58,58.06,58.11,58.160000000000004,58.21,58.300000000000004,20.25,19.740000000000002,19.52,19.31,19.11,18.91,18.71,18.52,18.13,N/A,N/A -2012,4,18,8,30,102060,100870,99710,73,0,8.22,8.81,8.94,9,9.03,9.05,9.06,9.06,9.05,52.33,52.49,52.58,52.660000000000004,52.75,52.82,52.9,52.980000000000004,53.14,20.03,19.52,19.31,19.09,18.89,18.7,18.490000000000002,18.31,17.92,N/A,N/A -2012,4,18,9,30,102060,100860,99700,72.39,0,8.26,8.85,8.97,9.03,9.06,9.08,9.09,9.09,9.07,50.59,50.75,50.85,50.93,51.02,51.1,51.19,51.27,51.45,19.69,19.17,18.95,18.740000000000002,18.53,18.34,18.14,17.95,17.56,N/A,N/A -2012,4,18,10,30,102070,100870,99710,73.4,0,7.5600000000000005,8.05,8.15,8.19,8.22,8.22,8.22,8.22,8.19,49.14,49.32,49.44,49.54,49.65,49.74,49.85,49.94,50.14,19.5,18.97,18.76,18.54,18.34,18.150000000000002,17.94,17.75,17.37,N/A,N/A -2012,4,18,11,30,102080,100880,99720,74,0,7.48,7.96,8.05,8.09,8.11,8.11,8.11,8.1,8.07,47.26,47.38,47.46,47.52,47.58,47.64,47.7,47.75,47.870000000000005,19.26,18.72,18.51,18.29,18.09,17.89,17.69,17.5,17.11,N/A,N/A -2012,4,18,12,30,102090,100890,99730,76.66,0,7.26,7.72,7.8,7.83,7.8500000000000005,7.8500000000000005,7.84,7.83,7.79,44.800000000000004,44.980000000000004,45.11,45.22,45.32,45.410000000000004,45.51,45.61,45.800000000000004,18.97,18.43,18.21,18,17.79,17.6,17.400000000000002,17.21,16.82,N/A,N/A -2012,4,18,13,30,102100,100900,99740,79.10000000000001,0,7.03,7.46,7.53,7.5600000000000005,7.57,7.57,7.57,7.5600000000000005,7.5200000000000005,45.42,45.61,45.72,45.81,45.9,45.980000000000004,46.06,46.14,46.300000000000004,18.75,18.21,17.990000000000002,17.77,17.56,17.37,17.17,16.98,16.59,N/A,N/A -2012,4,18,14,30,102150,100950,99780,83.05,0,6.15,6.48,6.53,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.55,6.54,6.5200000000000005,39.24,39.660000000000004,39.93,40.17,40.4,40.61,40.82,41.02,41.44,18.47,17.93,17.71,17.5,17.29,17.1,16.9,16.71,16.32,N/A,N/A -2012,4,18,15,30,102140,100940,99770,81.53,0,5.7,5.98,6.01,6.0200000000000005,6.01,5.99,5.97,5.95,5.9,34.53,34.93,35.160000000000004,35.39,35.61,35.81,36.03,36.22,36.65,18.52,18,17.78,17.57,17.36,17.17,16.97,16.78,16.39,N/A,N/A -2012,4,18,16,30,102130,100930,99760,73.96000000000001,0,5.19,5.44,5.48,5.49,5.5,5.49,5.49,5.48,5.45,26.42,26.54,26.64,26.740000000000002,26.830000000000002,26.92,27.01,27.1,27.3,18.75,18.25,18.04,17.830000000000002,17.63,17.44,17.240000000000002,17.05,16.67,N/A,N/A -2012,4,18,17,30,102100,100900,99740,69.92,0,4.07,4.2700000000000005,4.3100000000000005,4.33,4.3500000000000005,4.36,4.37,4.38,4.39,37.79,37.52,37.31,37.09,36.87,36.67,36.45,36.24,35.78,19.37,18.91,18.7,18.5,18.3,18.11,17.91,17.72,17.34,N/A,N/A -2012,4,18,18,30,102050,100860,99700,68.16,0,2.48,2.58,2.6,2.62,2.63,2.64,2.65,2.66,2.68,40.99,40.01,39.38,38.76,38.13,37.5,36.81,36.15,34.59,19.91,19.48,19.28,19.080000000000002,18.88,18.7,18.5,18.32,17.93,N/A,N/A -2012,4,18,19,30,102000,100810,99650,66.6,0,1.62,1.68,1.7,1.7,1.71,1.72,1.73,1.74,1.79,70.15,68.72,67.66,66.56,65.35,64.14,62.54,60.94,56.09,20.44,20.03,19.84,19.650000000000002,19.46,19.28,19.09,18.91,18.56,N/A,N/A -2012,4,18,20,30,101920,100730,99580,65.08,0,0.38,0.42,0.44,0.45,0.48,0.5,0.52,0.55,0.62,24.17,17.48,13.530000000000001,9.950000000000001,6.76,3.85,1.09,358.54,353.73,20.900000000000002,20.51,20.330000000000002,20.13,19.93,19.75,19.55,19.37,18.98,N/A,N/A -2012,4,18,21,30,101860,100670,99520,64.19,0,0.37,0.34,0.31,0.28,0.26,0.23,0.2,0.18,0.16,144.89000000000001,140.04,136.89000000000001,133.17000000000002,128.06,122.64,112.71000000000001,103.27,64.37,21.2,20.82,20.64,20.44,20.25,20.07,19.87,19.69,19.32,N/A,N/A -2012,4,18,22,30,101800,100610,99470,62.870000000000005,0,1.6600000000000001,1.6500000000000001,1.61,1.56,1.5,1.45,1.36,1.29,0.99,128.56,127.71000000000001,127.13000000000001,126.5,125.79,125.07000000000001,123.95,122.86,115.37,21.53,21.16,20.98,20.79,20.6,20.42,20.23,20.06,19.72,N/A,N/A -2012,4,18,23,30,101750,100570,99420,62.36,0,1.78,1.77,1.72,1.67,1.6,1.54,1.44,1.36,0.97,136.17000000000002,135.84,135.6,135.28,134.86,134.4,133.55,132.7,119.44,21.73,21.38,21.2,21.01,20.82,20.64,20.46,20.29,19.96,N/A,N/A -2012,4,19,0,30,101710,100530,99380,63.050000000000004,0,1.94,1.95,1.92,1.87,1.81,1.75,1.6,1.45,0.81,122.57000000000001,122.09,121.83,121.5,121.07000000000001,120.59,119.04,116.57000000000001,62.910000000000004,21.89,21.54,21.37,21.18,21,20.82,20.66,20.52,20.61,N/A,N/A -2012,4,19,1,30,101680,100500,99350,62.13,0,2.19,2.21,2.18,2.13,2.06,1.98,1.78,1.59,1.46,125.61,124.84,124.26,123.54,122.42,121.16,115.7,109.14,45.17,22.13,21.8,21.63,21.45,21.27,21.11,21,20.93,21.25,N/A,N/A -2012,4,19,2,30,101690,100510,99370,56.63,0,2.57,2.63,2.62,2.59,2.5500000000000003,2.52,2.48,2.44,2.32,112.61,112.09,111.7,111.25,110.73,110.19,109.42,108.67,105.66,22.51,22.19,22.01,21.830000000000002,21.64,21.46,21.28,21.11,20.78,N/A,N/A -2012,4,19,3,30,101680,100500,99360,63.980000000000004,0,2.93,3.02,3.02,3,2.98,2.96,2.93,2.91,2.84,125.74000000000001,125.29,124.95,124.57000000000001,124.16,123.75,123.18,122.64,120.8,22.1,21.740000000000002,21.57,21.37,21.18,21,20.81,20.63,20.26,N/A,N/A -2012,4,19,4,30,101670,100490,99350,64.14,0,2.37,2.46,2.47,2.47,2.46,2.46,2.45,2.44,2.44,127.85000000000001,127.2,126.75,126.26,125.7,125.11,124.28,123.47,120.56,22.1,21.75,21.57,21.38,21.19,21.01,20.82,20.650000000000002,20.29,N/A,N/A -2012,4,19,5,30,101650,100480,99330,62.02,0,1.41,1.47,1.49,1.51,1.53,1.54,1.57,1.59,1.7,125.45,124.42,123.81,123.16,122.45,121.72,120.8,119.9,116.97,22.32,21.98,21.81,21.62,21.43,21.25,21.06,20.88,20.53,N/A,N/A -2012,4,19,6,30,101660,100490,99340,62.95,0,1.6500000000000001,1.71,1.71,1.71,1.71,1.71,1.71,1.71,1.71,129.96,128.49,127.63000000000001,126.74000000000001,125.89,125.07000000000001,124.16,123.31,121.37,22.36,22.02,21.84,21.650000000000002,21.45,21.27,21.07,20.89,20.5,N/A,N/A -2012,4,19,7,30,101680,100500,99360,62.85,0,1.9100000000000001,2.02,2.04,2.07,2.08,2.11,2.13,2.15,2.19,141.54,140.56,139.95000000000002,139.37,138.81,138.29,137.75,137.26,136.25,22.36,22.01,21.84,21.64,21.45,21.26,21.06,20.88,20.490000000000002,N/A,N/A -2012,4,19,8,30,101660,100480,99340,65.49,0,2.27,2.36,2.37,2.38,2.38,2.38,2.38,2.39,2.39,146.76,145.49,144.69,143.94,143.26,142.62,141.98,141.4,140.21,22.2,21.86,21.68,21.47,21.28,21.09,20.89,20.71,20.31,N/A,N/A -2012,4,19,9,30,101640,100460,99320,66.64,0,1.86,1.9100000000000001,1.9100000000000001,1.9000000000000001,1.9000000000000001,1.8900000000000001,1.8900000000000001,1.8800000000000001,1.87,170.89000000000001,169.45000000000002,168.49,167.57,166.73,165.94,165.13,164.39000000000001,162.9,22.07,21.72,21.54,21.34,21.14,20.96,20.76,20.57,20.18,N/A,N/A -2012,4,19,10,30,101630,100450,99300,67.74,0,2.0300000000000002,2.07,2.06,2.04,2.0300000000000002,2.0100000000000002,2,1.98,1.95,182.74,181.29,180.33,179.41,178.54,177.71,176.88,176.13,174.47,21.91,21.55,21.37,21.17,20.97,20.78,20.580000000000002,20.400000000000002,20.01,N/A,N/A -2012,4,19,11,30,101620,100440,99290,67.44,0,1.77,1.82,1.82,1.82,1.82,1.82,1.82,1.82,1.82,190.17000000000002,187.84,186.45000000000002,185.11,183.88,182.72,181.53,180.44,178.22,21.81,21.45,21.27,21.07,20.88,20.69,20.490000000000002,20.31,19.91,N/A,N/A -2012,4,19,12,30,101600,100420,99280,66.76,0,1.49,1.6,1.6400000000000001,1.68,1.71,1.74,1.77,1.8,1.86,168.02,166.39000000000001,165.41,164.51,163.73,163.03,162.35,161.73,160.54,21.79,21.43,21.25,21.05,20.85,20.66,20.46,20.28,19.89,N/A,N/A -2012,4,19,13,30,101600,100420,99280,66.16,0,1.86,1.97,2,2.0300000000000002,2.05,2.07,2.09,2.11,2.14,169.45000000000002,167.66,166.54,165.51,164.6,163.76,162.92000000000002,162.16,160.63,21.84,21.48,21.3,21.1,20.91,20.72,20.52,20.34,19.95,N/A,N/A -2012,4,19,14,30,101620,100440,99290,63.89,0,1.33,1.47,1.53,1.58,1.6300000000000001,1.68,1.73,1.77,1.86,165.08,162.48,161.03,159.81,158.8,157.92000000000002,157.15,156.47,155.22,22.03,21.68,21.5,21.31,21.11,20.92,20.73,20.54,20.150000000000002,N/A,N/A -2012,4,19,15,30,101600,100420,99280,60.7,0,1.98,2.15,2.2,2.25,2.2800000000000002,2.32,2.35,2.38,2.43,141.36,141.85,142.24,142.59,142.9,143.18,143.46,143.72,144.22,22.150000000000002,21.79,21.61,21.41,21.21,21.03,20.82,20.64,20.240000000000002,N/A,N/A -2012,4,19,16,30,101590,100410,99270,63.74,0,2.88,3.0300000000000002,3.0700000000000003,3.1,3.13,3.15,3.17,3.18,3.22,157.9,157.55,157.3,157.07,156.85,156.65,156.46,156.29,155.92000000000002,22.150000000000002,21.79,21.6,21.400000000000002,21.2,21.01,20.81,20.62,20.23,N/A,N/A -2012,4,19,17,30,101550,100380,99230,62.7,0,2.84,2.96,2.98,3,3,3.0100000000000002,3.0100000000000002,3.0100000000000002,3.02,157.99,158.02,158.12,158.24,158.35,158.45000000000002,158.57,158.68,158.92000000000002,22.2,21.830000000000002,21.650000000000002,21.44,21.25,21.06,20.86,20.67,20.28,N/A,N/A -2012,4,19,18,30,101520,100350,99210,68.3,0,3.49,3.66,3.69,3.7,3.71,3.72,3.72,3.73,3.73,166.8,166.57,166.4,166.22,166.06,165.9,165.74,165.6,165.31,22.17,21.79,21.61,21.400000000000002,21.21,21.02,20.81,20.63,20.240000000000002,N/A,N/A -2012,4,19,19,30,101490,100310,99170,69.58,0,2.98,3.16,3.21,3.25,3.2800000000000002,3.31,3.34,3.36,3.4,167.33,167.24,167.3,167.35,167.39000000000001,167.43,167.47,167.5,167.57,22.17,21.79,21.61,21.400000000000002,21.21,21.01,20.81,20.63,20.23,N/A,N/A -2012,4,19,20,30,101410,100240,99100,70.9,0,3.94,4.12,4.14,4.14,4.14,4.13,4.12,4.11,4.09,167.56,168.09,168.45000000000002,168.78,169.06,169.3,169.53,169.73,170.07,22.1,21.72,21.53,21.330000000000002,21.13,20.94,20.740000000000002,20.56,20.16,N/A,N/A -2012,4,19,21,30,101350,100180,99040,71.02,0,4.65,4.9,4.93,4.95,4.95,4.95,4.95,4.94,4.93,170.34,169.99,169.76,169.53,169.31,169.11,168.89000000000001,168.69,168.27,22.13,21.75,21.57,21.36,21.17,20.98,20.78,20.59,20.2,N/A,N/A -2012,4,19,22,30,101280,100110,98970,66.61,0,5.23,5.53,5.58,5.59,5.6000000000000005,5.6000000000000005,5.59,5.58,5.5600000000000005,161.41,161.78,161.96,162.11,162.25,162.38,162.5,162.61,162.83,22.25,21.88,21.69,21.490000000000002,21.29,21.1,20.900000000000002,20.72,20.32,N/A,N/A -2012,4,19,23,30,101230,100060,98920,71.8,0,5.13,5.5,5.58,5.64,5.68,5.71,5.73,5.75,5.78,160.68,160.93,161.02,161.07,161.12,161.16,161.19,161.22,161.26,22.12,21.73,21.55,21.34,21.14,20.96,20.75,20.56,20.17,N/A,N/A -2012,4,20,0,30,101170,100000,98860,72.21000000000001,0,5.84,6.25,6.34,6.4,6.43,6.46,6.48,6.49,6.5200000000000005,166.95000000000002,166.35,166,165.69,165.4,165.14000000000001,164.87,164.63,164.12,22.080000000000002,21.69,21.5,21.29,21.1,20.91,20.71,20.52,20.13,N/A,N/A -2012,4,20,1,30,101130,99960,98820,72.02,0,6.32,6.7,6.76,6.78,6.78,6.78,6.7700000000000005,6.76,6.74,175.6,174.59,174,173.42000000000002,172.87,172.35,171.83,171.34,170.32,21.98,21.57,21.39,21.18,20.990000000000002,20.79,20.59,20.41,20.02,N/A,N/A -2012,4,20,2,30,101140,99960,98830,71.97,0,7.55,8.120000000000001,8.24,8.290000000000001,8.31,8.31,8.31,8.3,8.27,154.97,155.34,155.63,155.93,156.21,156.47,156.75,157.02,157.57,22.12,21.72,21.53,21.32,21.12,20.93,20.73,20.54,20.150000000000002,N/A,N/A -2012,4,20,3,30,101110,99930,98800,72.01,0,7.930000000000001,8.51,8.620000000000001,8.66,8.69,8.69,8.69,8.69,8.66,171.83,171.37,171.18,171.01,170.86,170.72,170.58,170.45000000000002,170.19,22.05,21.650000000000002,21.46,21.25,21.05,20.86,20.66,20.48,20.09,N/A,N/A -2012,4,20,4,30,101100,99930,98790,79.19,0,6.48,6.96,7.07,7.13,7.17,7.19,7.21,7.22,7.22,176.44,176.14000000000001,175.98,175.84,175.72,175.61,175.49,175.39000000000001,175.19,21.96,21.55,21.36,21.16,20.96,20.77,20.56,20.38,19.98,N/A,N/A -2012,4,20,5,30,101070,99900,98760,75.7,0,8.15,8.88,9.06,9.18,9.26,9.33,9.38,9.41,9.48,169.52,170.88,171.46,171.97,172.4,172.77,173.12,173.44,174.02,22.28,21.88,21.69,21.490000000000002,21.28,21.09,20.89,20.7,20.31,N/A,N/A -2012,4,20,6,30,101060,99890,98750,75.60000000000001,0,8.33,9.040000000000001,9.22,9.32,9.39,9.450000000000001,9.49,9.52,9.59,180.58,180.68,180.78,180.87,180.94,181.01,181.07,181.12,181.22,22.25,21.830000000000002,21.650000000000002,21.44,21.240000000000002,21.05,20.85,20.67,20.28,N/A,N/A -2012,4,20,7,30,101060,99890,98750,76.09,0,8.25,8.91,9.07,9.14,9.19,9.22,9.23,9.24,9.23,186.47,186.70000000000002,186.73,186.71,186.69,186.65,186.6,186.56,186.45000000000002,22.38,21.97,21.78,21.57,21.38,21.18,20.98,20.79,20.400000000000002,N/A,N/A -2012,4,20,8,30,101030,99860,98730,75.19,0,8.33,9.06,9.24,9.34,9.41,9.46,9.49,9.52,9.56,185.17000000000002,185.19,185.17000000000002,185.13,185.08,185.03,184.98,184.92000000000002,184.82,22.38,21.98,21.79,21.59,21.39,21.2,21,20.81,20.42,N/A,N/A -2012,4,20,9,30,101040,99870,98740,74.14,0,8.26,8.9,9.040000000000001,9.1,9.14,9.16,9.17,9.17,9.16,189.29,189.38,189.6,189.86,190.09,190.32,190.56,190.78,191.24,22.62,22.22,22.04,21.830000000000002,21.63,21.44,21.240000000000002,21.05,20.66,N/A,N/A -2012,4,20,10,30,101030,99860,98730,76.22,0,6.62,7.13,7.26,7.34,7.4,7.44,7.48,7.51,7.5600000000000005,184.04,184.24,184.29,184.33,184.37,184.41,184.44,184.48,184.58,22.41,22.02,21.84,21.64,21.44,21.25,21.05,20.87,20.48,N/A,N/A -2012,4,20,11,30,101030,99870,98730,74.56,0,7.47,8.11,8.24,8.31,8.35,8.370000000000001,8.370000000000001,8.370000000000001,8.36,190.96,191.19,191.34,191.46,191.56,191.66,191.75,191.83,191.99,22.66,22.27,22.080000000000002,21.88,21.68,21.490000000000002,21.28,21.1,20.71,N/A,N/A -2012,4,20,12,30,101030,99860,98730,72.12,0,6.82,7.3100000000000005,7.43,7.48,7.5200000000000005,7.54,7.5600000000000005,7.57,7.58,189.11,188.99,188.92000000000002,188.88,188.84,188.8,188.77,188.74,188.69,22.41,22.02,21.830000000000002,21.63,21.44,21.25,21.05,20.86,20.48,N/A,N/A -2012,4,20,13,30,101140,99970,98830,71.5,0,3.29,3.52,3.59,3.63,3.67,3.7,3.73,3.75,3.8000000000000003,218.27,217.73000000000002,217.49,217.25,217.01,216.78,216.54,216.32,215.83,22.42,22.06,21.88,21.68,21.48,21.29,21.09,20.91,20.51,N/A,N/A -2012,4,20,14,30,101090,99920,98780,71.39,0,5.73,5.97,5.96,5.91,5.8500000000000005,5.8,5.74,5.69,5.57,188.33,187.78,187.48,187.18,186.9,186.64000000000001,186.36,186.11,185.6,22.39,22.01,21.830000000000002,21.63,21.43,21.240000000000002,21.04,20.86,20.47,N/A,N/A -2012,4,20,15,30,101110,99940,98810,71.81,0,5.16,5.49,5.57,5.61,5.63,5.65,5.66,5.67,5.69,179.73,179.6,179.62,179.65,179.70000000000002,179.74,179.8,179.86,180,22.51,22.14,21.95,21.75,21.55,21.36,21.16,20.98,20.59,N/A,N/A -2012,4,20,16,30,101130,99960,98830,72.69,0,4.36,4.65,4.74,4.8,4.84,4.87,4.9,4.92,4.96,186.3,186.22,186.11,186.01,185.91,185.81,185.71,185.62,185.4,22.66,22.3,22.11,21.91,21.72,21.52,21.32,21.14,20.740000000000002,N/A,N/A -2012,4,20,17,30,101190,100020,98890,71.45,0,2.7600000000000002,2.91,2.95,2.98,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.09,214.08,214.18,214.11,214.04,213.97,213.92000000000002,213.84,213.78,213.66,22.77,22.41,22.23,22.03,21.84,21.650000000000002,21.45,21.26,20.87,N/A,N/A -2012,4,20,18,30,101170,100000,98870,68.64,0,2.56,2.66,2.68,2.68,2.68,2.68,2.67,2.67,2.66,214.39000000000001,213.5,212.95000000000002,212.43,211.96,211.52,211.06,210.66,209.82,22.900000000000002,22.54,22.36,22.16,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,4,20,19,30,101090,99920,98790,69.82000000000001,0,2.95,3.1,3.14,3.17,3.19,3.21,3.22,3.24,3.27,176.64000000000001,177.75,178.42000000000002,179.02,179.53,179.99,180.43,180.84,181.6,22.89,22.52,22.34,22.13,21.94,21.75,21.55,21.36,20.97,N/A,N/A -2012,4,20,20,30,101040,99880,98750,73.31,0,4.01,4.24,4.29,4.32,4.33,4.3500000000000005,4.3500000000000005,4.36,4.37,180.87,180.69,180.58,180.48,180.38,180.27,180.18,180.09,179.9,22.92,22.55,22.37,22.17,21.97,21.78,21.580000000000002,21.39,21,N/A,N/A -2012,4,20,21,30,101030,99860,98730,68.97,0,3.43,3.61,3.65,3.67,3.67,3.68,3.68,3.69,3.68,179.97,180.64000000000001,181,181.35,181.67000000000002,181.98,182.31,182.61,183.27,23.04,22.69,22.51,22.31,22.12,21.93,21.73,21.55,21.17,N/A,N/A -2012,4,20,22,30,100950,99780,98650,68.57000000000001,0,3.95,4.17,4.21,4.23,4.24,4.24,4.24,4.23,4.22,180.48,180.92000000000002,181.02,181.13,181.24,181.35,181.47,181.58,181.83,23.11,22.76,22.59,22.39,22.19,22.01,21.81,21.63,21.240000000000002,N/A,N/A -2012,4,20,23,30,101130,99950,98800,87.69,22.3,15.16,16.28,16.46,16.45,16.37,16.27,16.1,15.94,15.48,306.59000000000003,306.08,305.68,305.2,304.64,304.07,303.3,302.55,300.36,19.91,19.3,19.1,18.94,18.8,18.67,18.56,18.47,18.32,N/A,N/A -2012,4,21,0,30,101020,99840,98690,85.01,7,5.51,5.86,5.97,6.05,6.12,6.18,6.26,6.33,6.6000000000000005,343.54,343.17,342.83,342.49,342.13,341.78000000000003,341.36,340.96,339.89,19.77,19.3,19.1,18.91,18.72,18.54,18.36,18.2,17.89,N/A,N/A -2012,4,21,1,30,100980,99800,98660,82.10000000000001,0,1.56,1.72,1.78,1.84,1.9100000000000001,1.98,2.08,2.19,2.7600000000000002,314.47,314.83,315.65000000000003,316.5,317.43,318.39,319.65000000000003,320.92,325.75,20.57,20.19,20.01,19.82,19.64,19.47,19.3,19.14,18.94,N/A,N/A -2012,4,21,2,30,101060,99890,98740,82.91,0,5.3,5.65,5.73,5.79,5.84,5.87,5.91,5.94,6.01,279.03000000000003,279.15000000000003,279.26,279.41,279.56,279.71,279.90000000000003,280.07,280.47,20.490000000000002,20.04,19.84,19.63,19.43,19.240000000000002,19.04,18.86,18.48,N/A,N/A -2012,4,21,3,30,101100,99920,98780,73.69,0,9.59,10.31,10.46,10.52,10.55,10.56,10.56,10.55,10.52,331.28000000000003,331.26,331.18,331.11,331.04,330.98,330.92,330.87,330.79,21,20.5,20.29,20.07,19.87,19.67,19.47,19.28,18.89,N/A,N/A -2012,4,21,4,30,101090,99910,98760,84.67,0,9.4,10.22,10.42,10.53,10.61,10.66,10.69,10.72,10.74,344.79,345.11,345.13,345.13,345.12,345.11,345.09000000000003,345.07,345.03000000000003,20.11,19.56,19.34,19.11,18.900000000000002,18.7,18.490000000000002,18.3,17.900000000000002,N/A,N/A -2012,4,21,5,30,101090,99900,98760,85.69,0,10.950000000000001,11.92,12.15,12.280000000000001,12.36,12.41,12.450000000000001,12.48,12.5,346.26,346.54,346.62,346.67,346.71,346.74,346.76,346.77,346.78000000000003,19.66,19.07,18.84,18.61,18.400000000000002,18.21,18,17.81,17.42,N/A,N/A -2012,4,21,6,30,101110,99920,98770,81.02,0,12.86,14.16,14.51,14.72,14.870000000000001,14.98,15.07,15.15,15.26,354.8,355.04,355.16,355.26,355.36,355.46,355.55,355.63,355.81,19.35,18.71,18.47,18.240000000000002,18.02,17.82,17.61,17.42,17.03,N/A,N/A -2012,4,21,7,30,101150,99970,98810,80,0,13.73,15.15,15.55,15.8,15.98,16.13,16.240000000000002,16.34,16.52,358.11,358.29,358.40000000000003,358.51,358.6,358.69,358.79,358.88,359.08,19,18.32,18.07,17.84,17.62,17.42,17.21,17.02,16.63,N/A,N/A -2012,4,21,8,30,101130,99940,98790,79.32000000000001,0,14.43,15.96,16.37,16.62,16.8,16.94,17.04,17.14,17.27,357,357.05,357.09000000000003,357.12,357.15000000000003,357.18,357.21,357.23,357.29,18.93,18.240000000000002,17.990000000000002,17.75,17.53,17.32,17.1,16.91,16.5,N/A,N/A -2012,4,21,9,30,101160,99970,98810,81.19,0,14.32,15.780000000000001,16.17,16.4,16.56,16.68,16.76,16.84,16.93,357.49,357.40000000000003,357.37,357.36,357.36,357.36,357.36,357.36,357.39,18.59,17.88,17.62,17.38,17.150000000000002,16.94,16.73,16.52,16.12,N/A,N/A -2012,4,21,10,30,101190,100000,98840,81.93,0,14.21,15.63,15.99,16.2,16.34,16.44,16.5,16.56,16.63,359.41,359.62,359.71,359.8,359.88,359.96,0.04,0.12,0.28,18.03,17.28,17.02,16.77,16.55,16.34,16.12,15.92,15.52,N/A,N/A -2012,4,21,11,30,101200,100010,98850,81.87,0,14.36,15.8,16.15,16.35,16.490000000000002,16.59,16.66,16.71,16.78,357.44,357.61,357.72,357.83,357.94,358.04,358.15000000000003,358.26,358.48,17.51,16.740000000000002,16.47,16.22,15.99,15.790000000000001,15.57,15.370000000000001,14.97,N/A,N/A -2012,4,21,12,30,101210,100010,98850,81.58,0,14.370000000000001,15.8,16.15,16.35,16.48,16.580000000000002,16.65,16.71,16.78,359.3,359.53000000000003,359.65000000000003,359.76,359.88,359.98,0.1,0.21,0.45,17.12,16.32,16.04,15.8,15.57,15.370000000000001,15.15,14.96,14.56,N/A,N/A -2012,4,21,13,30,101230,100030,98870,80.36,0,13.540000000000001,14.82,15.13,15.3,15.42,15.51,15.57,15.620000000000001,15.700000000000001,359.88,0.16,0.32,0.48,0.64,0.78,0.93,1.07,1.36,16.67,15.870000000000001,15.6,15.36,15.14,14.93,14.72,14.530000000000001,14.14,N/A,N/A -2012,4,21,14,30,101280,100080,98910,77.5,0,12.26,13.34,13.59,13.74,13.83,13.9,13.950000000000001,13.99,14.040000000000001,353.92,354.08,354.19,354.29,354.39,354.47,354.57,354.67,354.85,16.6,15.84,15.57,15.33,15.11,14.9,14.69,14.49,14.09,N/A,N/A -2012,4,21,15,30,101330,100130,98960,75.14,0,11.28,12.22,12.43,12.56,12.63,12.69,12.72,12.75,12.790000000000001,351.90000000000003,352.1,352.23,352.36,352.47,352.58,352.69,352.79,353,16.71,15.98,15.72,15.48,15.25,15.040000000000001,14.83,14.63,14.23,N/A,N/A -2012,4,21,16,30,101330,100130,98960,71.28,0,11.15,12.08,12.290000000000001,12.4,12.48,12.530000000000001,12.56,12.59,12.620000000000001,347.29,347.55,347.72,347.88,348.02,348.16,348.3,348.43,348.68,17.3,16.6,16.35,16.11,15.89,15.69,15.47,15.27,14.870000000000001,N/A,N/A -2012,4,21,17,30,101330,100130,98970,66.38,0,11.33,12.33,12.57,12.71,12.8,12.870000000000001,12.92,12.96,13.02,348.02,348.1,348.16,348.2,348.24,348.29,348.34000000000003,348.39,348.49,18.34,17.69,17.45,17.22,17,16.8,16.580000000000002,16.39,15.99,N/A,N/A -2012,4,21,18,30,101310,100120,98970,61.730000000000004,0,11.27,12.31,12.56,12.700000000000001,12.8,12.88,12.93,12.98,13.040000000000001,345.45,345.7,345.85,345.98,346.11,346.22,346.34000000000003,346.44,346.66,19.400000000000002,18.81,18.580000000000002,18.36,18.14,17.95,17.740000000000002,17.54,17.14,N/A,N/A -2012,4,21,19,30,101310,100120,98970,59.050000000000004,0,10.78,11.78,12.030000000000001,12.18,12.290000000000001,12.370000000000001,12.43,12.48,12.56,344.58,344.98,345.22,345.45,345.65000000000003,345.84000000000003,346.02,346.2,346.53000000000003,20.31,19.77,19.55,19.34,19.13,18.93,18.72,18.53,18.13,N/A,N/A -2012,4,21,20,30,101280,100090,98950,56.26,0,10.71,11.72,11.98,12.13,12.24,12.33,12.39,12.44,12.52,344.56,344.92,345.14,345.34000000000003,345.54,345.71,345.88,346.02,346.32,21.07,20.580000000000002,20.37,20.16,19.95,19.76,19.55,19.36,18.96,N/A,N/A -2012,4,21,21,30,101270,100090,98950,54.410000000000004,0,10.5,11.5,11.76,11.92,12.040000000000001,12.120000000000001,12.19,12.25,12.33,344.56,344.96,345.2,345.43,345.63,345.81,345.99,346.15000000000003,346.46,21.61,21.16,20.96,20.740000000000002,20.54,20.35,20.14,19.95,19.55,N/A,N/A -2012,4,21,22,30,101270,100090,98950,55.230000000000004,0,10.18,11.14,11.38,11.53,11.63,11.71,11.77,11.82,11.89,344,344.44,344.71,344.97,345.2,345.42,345.62,345.82,346.18,21.96,21.53,21.330000000000002,21.13,20.92,20.73,20.53,20.34,19.94,N/A,N/A -2012,4,21,23,30,101270,100090,98950,52.97,0,10.63,11.68,11.94,12.09,12.19,12.26,12.32,12.36,12.42,349.40000000000003,349.44,349.46,349.49,349.51,349.54,349.56,349.59000000000003,349.65000000000003,22.1,21.68,21.48,21.28,21.07,20.88,20.68,20.490000000000002,20.09,N/A,N/A -2012,4,22,0,30,101300,100120,98980,53.4,0,10.290000000000001,11.28,11.52,11.67,11.77,11.84,11.9,11.94,12.01,352.40000000000003,352.22,352.13,352.05,351.98,351.92,351.86,351.81,351.72,21.96,21.53,21.330000000000002,21.13,20.92,20.73,20.53,20.34,19.94,N/A,N/A -2012,4,22,1,30,101360,100180,99030,54.410000000000004,0,10.38,11.34,11.56,11.69,11.77,11.84,11.870000000000001,11.91,11.94,355.73,355.79,355.79,355.79,355.79,355.79,355.78000000000003,355.76,355.75,21.53,21.07,20.87,20.66,20.45,20.26,20.05,19.86,19.46,N/A,N/A -2012,4,22,2,30,101410,100230,99080,54.03,0,10.36,11.33,11.56,11.69,11.78,11.84,11.89,11.93,11.98,359.18,359.18,359.15000000000003,359.13,359.1,359.08,359.06,359.03000000000003,358.98,21.38,20.91,20.71,20.5,20.29,20.1,19.89,19.7,19.3,N/A,N/A -2012,4,22,3,30,101450,100270,99120,54.22,0,9.31,10.14,10.35,10.47,10.55,10.620000000000001,10.67,10.72,10.790000000000001,5.8,5.74,5.69,5.63,5.5600000000000005,5.5,5.43,5.36,5.21,21.32,20.86,20.66,20.45,20.25,20.06,19.86,19.67,19.28,N/A,N/A -2012,4,22,4,30,101470,100290,99140,56.14,0,8.8,9.55,9.74,9.84,9.92,9.98,10.03,10.07,10.15,8.43,8.33,8.26,8.19,8.120000000000001,8.05,7.98,7.9,7.74,21.13,20.67,20.46,20.26,20.06,19.88,19.67,19.490000000000002,19.11,N/A,N/A -2012,4,22,5,30,101500,100320,99170,55.730000000000004,0,9.33,10.120000000000001,10.31,10.41,10.48,10.53,10.56,10.59,10.620000000000001,11.1,11.120000000000001,11.120000000000001,11.120000000000001,11.11,11.1,11.09,11.07,11.040000000000001,21.04,20.57,20.37,20.16,19.96,19.77,19.57,19.38,19,N/A,N/A -2012,4,22,6,30,101540,100350,99200,58.120000000000005,0,8.69,9.42,9.59,9.69,9.76,9.81,9.85,9.88,9.94,15.83,15.89,15.92,15.94,15.96,15.97,15.97,15.97,15.96,20.67,20.22,20.02,19.82,19.62,19.44,19.240000000000002,19.06,18.68,N/A,N/A -2012,4,22,7,30,101580,100390,99240,58.2,0,8.69,9.39,9.56,9.65,9.71,9.75,9.78,9.81,9.85,21.63,21.66,21.67,21.66,21.66,21.66,21.650000000000002,21.64,21.63,20.42,19.96,19.76,19.55,19.35,19.17,18.97,18.79,18.41,N/A,N/A -2012,4,22,8,30,101580,100390,99240,59.63,0,8.33,8.97,9.11,9.18,9.23,9.25,9.27,9.290000000000001,9.3,20.32,20.43,20.48,20.53,20.57,20.61,20.650000000000002,20.68,20.740000000000002,20.1,19.62,19.42,19.21,19.01,18.830000000000002,18.62,18.44,18.06,N/A,N/A -2012,4,22,9,30,101620,100430,99270,60.97,0,7.140000000000001,7.62,7.72,7.76,7.79,7.8100000000000005,7.8100000000000005,7.82,7.82,22.82,22.91,22.97,23.03,23.080000000000002,23.12,23.17,23.2,23.27,19.78,19.31,19.11,18.900000000000002,18.7,18.51,18.32,18.13,17.75,N/A,N/A -2012,4,22,10,30,101640,100450,99290,62.08,0,6.72,7.140000000000001,7.23,7.2700000000000005,7.29,7.3,7.3100000000000005,7.3100000000000005,7.32,25.02,25.07,25.1,25.13,25.16,25.19,25.23,25.25,25.3,19.59,19.11,18.900000000000002,18.7,18.5,18.32,18.12,17.93,17.56,N/A,N/A -2012,4,22,11,30,101680,100490,99330,62.06,0,5.95,6.3,6.37,6.4,6.42,6.44,6.45,6.45,6.46,19.02,19.09,19.16,19.22,19.28,19.330000000000002,19.39,19.44,19.56,19.490000000000002,19.02,18.82,18.61,18.41,18.23,18.03,17.84,17.46,N/A,N/A -2012,4,22,12,30,101710,100510,99350,61.800000000000004,0,5.93,6.2700000000000005,6.33,6.36,6.37,6.38,6.38,6.38,6.38,16.9,17.05,17.150000000000002,17.240000000000002,17.330000000000002,17.41,17.51,17.6,17.79,19.39,18.92,18.71,18.51,18.31,18.12,17.92,17.740000000000002,17.36,N/A,N/A -2012,4,22,13,30,101730,100540,99380,63.08,0,5.84,6.16,6.2,6.22,6.22,6.22,6.21,6.2,6.18,13.540000000000001,13.700000000000001,13.81,13.93,14.040000000000001,14.13,14.26,14.370000000000001,14.63,19.2,18.72,18.52,18.32,18.12,17.94,17.740000000000002,17.56,17.18,N/A,N/A -2012,4,22,14,30,101800,100600,99440,62.1,0,4.67,4.9,4.93,4.95,4.96,4.96,4.96,4.96,4.96,10.35,10.47,10.56,10.65,10.74,10.83,10.93,11.02,11.26,19.31,18.86,18.66,18.46,18.26,18.080000000000002,17.88,17.7,17.32,N/A,N/A -2012,4,22,15,30,101820,100630,99470,59.9,0,3.64,3.81,3.85,3.86,3.88,3.88,3.89,3.9,3.92,358.94,358.84000000000003,358.8,358.78000000000003,358.76,358.74,358.74,358.74,358.79,19.650000000000002,19.22,19.03,18.830000000000002,18.63,18.45,18.25,18.07,17.68,N/A,N/A -2012,4,22,16,30,101820,100630,99480,56.300000000000004,0,3.8000000000000003,4.01,4.05,4.08,4.1,4.13,4.15,4.17,4.21,348.15000000000003,348.09000000000003,348.06,348.03000000000003,347.99,347.94,347.88,347.82,347.68,20.32,19.92,19.73,19.53,19.330000000000002,19.150000000000002,18.95,18.77,18.39,N/A,N/A -2012,4,22,17,30,101800,100610,99460,56.620000000000005,0,3.81,4.0600000000000005,4.12,4.17,4.2,4.23,4.25,4.28,4.32,318.25,318.59000000000003,318.83,319.04,319.26,319.45,319.67,319.87,320.34000000000003,21.22,20.84,20.650000000000002,20.45,20.26,20.07,19.88,19.69,19.3,N/A,N/A -2012,4,22,18,30,101780,100600,99450,53.160000000000004,0,5.21,5.55,5.62,5.66,5.67,5.68,5.68,5.68,5.67,310.2,310.71,311.02,311.31,311.58,311.83,312.11,312.37,312.98,22.1,21.75,21.57,21.37,21.18,21,20.8,20.62,20.240000000000002,N/A,N/A -2012,4,22,19,30,101750,100570,99430,53.92,0,6.05,6.5,6.59,6.63,6.65,6.67,6.68,6.69,6.76,305.93,306.63,307.1,307.57,308.07,308.57,309.2,309.81,311.72,22.72,22.400000000000002,22.23,22.04,21.86,21.68,21.5,21.32,20.98,N/A,N/A -2012,4,22,20,30,101680,100510,99370,52.910000000000004,0,6.73,7.3100000000000005,7.42,7.48,7.54,7.59,7.7,7.8100000000000005,8.27,304.17,304.63,304.95,305.35,305.85,306.41,307.46,308.56,313.42,23.64,23.42,23.27,23.1,22.94,22.79,22.64,22.51,22.31,N/A,N/A -2012,4,22,21,30,101640,100470,99340,53.88,0,5.87,6.78,7.17,7.55,7.8500000000000005,8.1,8.23,8.33,8.43,303.22,304.69,305.63,306.53000000000003,307.22,307.77,308.18,308.51,309.76,24.38,24.400000000000002,24.38,24.29,24.18,24.060000000000002,23.88,23.7,23.35,N/A,N/A -2012,4,22,22,30,101620,100450,99320,53.34,0,6.2700000000000005,7.43,7.890000000000001,8.27,8.57,8.8,8.97,9.11,9.27,316.99,317.45,317.74,318.11,318.45,318.76,318.96,319.12,319.11,25.19,25.330000000000002,25.34,25.28,25.19,25.080000000000002,24.93,24.78,24.42,N/A,N/A -2012,4,22,23,30,101620,100450,99320,71.32000000000001,0,6.33,6.640000000000001,6.63,6.6000000000000005,6.4,6.08,5.87,5.7,5.59,250.18,250.22,250.13,249.81,252.06,255.93,260.53000000000003,264.86,273,23.13,22.86,22.72,22.59,22.8,23.25,23.57,23.830000000000002,23.650000000000002,N/A,N/A -2012,4,23,0,30,101650,100470,99340,75.12,0,6.55,6.88,6.88,6.82,6.640000000000001,6.38,6.11,5.86,5.59,245.46,245.8,246.08,246.5,249.36,253.71,258.86,263.61,273.66,22.94,22.66,22.51,22.37,22.43,22.64,23.01,23.39,23.38,N/A,N/A -2012,4,23,1,30,101670,100500,99360,76.91,0,6.2700000000000005,6.49,6.390000000000001,6.15,5.7700000000000005,5.32,5.18,5.13,5.24,245.4,246.67000000000002,249.31,255.82,262.59000000000003,269.32,275.56,281.19,293.45,22.990000000000002,22.740000000000002,22.66,22.66,22.89,23.27,23.330000000000002,23.29,23.2,N/A,N/A -2012,4,23,2,30,101690,100520,99390,76.38,0,5.4,5.44,5.2,4.8,4.7700000000000005,4.99,5.2700000000000005,5.55,6.25,241.82,245.11,256.68,284.40000000000003,298.3,304.18,309.21,313.76,320.76,23.31,23.150000000000002,23.27,23.740000000000002,23.94,23.94,23.96,23.990000000000002,23.98,N/A,N/A -2012,4,23,3,30,101720,100550,99420,76.59,0,3.69,3.8000000000000003,3.85,4.09,4.39,4.75,5.21,5.69,6.74,274.16,289.13,298.63,309.05,316.82,322.94,327.48,331.36,336.12,23.69,23.81,23.88,23.92,23.96,23.98,24.02,24.05,24.14,N/A,N/A -2012,4,23,4,30,101770,100600,99460,62.36,0,7.78,8.91,9.32,9.67,9.97,10.23,10.47,10.69,11.11,8.69,8.09,7.72,7.3100000000000005,6.92,6.55,6.18,5.84,5.23,24.580000000000002,24.51,24.42,24.29,24.16,24.02,23.87,23.72,23.39,N/A,N/A -2012,4,23,5,30,101830,100640,99500,55.980000000000004,0,11.58,12.780000000000001,13.08,13.25,13.38,13.48,13.57,13.65,13.870000000000001,21.27,21.240000000000002,21.22,21.2,21.18,21.16,21.14,21.11,21.05,22.81,22.5,22.330000000000002,22.14,21.96,21.78,21.59,21.42,21.07,N/A,N/A -2012,4,23,6,30,101880,100700,99550,54.34,0,12.450000000000001,13.77,14.11,14.31,14.450000000000001,14.56,14.65,14.74,14.950000000000001,23.650000000000002,23.72,23.75,23.78,23.81,23.84,23.86,23.87,23.900000000000002,21.73,21.38,21.2,21.01,20.82,20.64,20.45,20.28,19.93,N/A,N/A -2012,4,23,7,30,101930,100740,99580,56.370000000000005,0,13.59,14.98,15.32,15.5,15.63,15.73,15.81,15.88,16.06,28.71,28.7,28.68,28.66,28.63,28.6,28.55,28.51,28.36,20.76,20.32,20.13,19.93,19.740000000000002,19.56,19.37,19.21,18.87,N/A,N/A -2012,4,23,8,30,101960,100760,99610,56.980000000000004,0,13.9,15.3,15.63,15.81,15.93,16.01,16.07,16.12,16.22,28.830000000000002,28.900000000000002,28.93,28.96,28.97,28.98,28.98,28.98,28.93,20.22,19.740000000000002,19.53,19.330000000000002,19.14,18.96,18.77,18.6,18.26,N/A,N/A -2012,4,23,9,30,101990,100790,99630,58.45,0,13.33,14.65,14.97,15.15,15.26,15.33,15.38,15.42,15.46,31.560000000000002,31.7,31.77,31.830000000000002,31.88,31.92,31.95,31.98,32.02,19.72,19.2,18.990000000000002,18.78,18.57,18.39,18.19,18.01,17.64,N/A,N/A -2012,4,23,10,30,102030,100830,99670,60.31,0,13.1,14.35,14.65,14.81,14.91,14.97,15,15.030000000000001,15.040000000000001,33.44,33.59,33.660000000000004,33.730000000000004,33.78,33.83,33.87,33.910000000000004,33.97,19.01,18.43,18.21,17.990000000000002,17.78,17.59,17.39,17.21,16.830000000000002,N/A,N/A -2012,4,23,11,30,102090,100890,99720,63.27,0,12.19,13.290000000000001,13.55,13.68,13.76,13.82,13.84,13.86,13.86,37.32,37.49,37.6,37.68,37.77,37.85,37.92,37.99,38.12,18.41,17.81,17.580000000000002,17.36,17.150000000000002,16.95,16.75,16.56,16.18,N/A,N/A -2012,4,23,12,30,102140,100940,99770,63.38,0,11.41,12.4,12.63,12.74,12.81,12.85,12.870000000000001,12.88,12.88,36.42,36.57,36.67,36.77,36.85,36.92,37,37.07,37.2,18.01,17.400000000000002,17.16,16.94,16.73,16.53,16.330000000000002,16.14,15.75,N/A,N/A -2012,4,23,13,30,102180,100970,99800,62.34,0,10.4,11.25,11.44,11.540000000000001,11.6,11.64,11.66,11.67,11.67,36.52,36.62,36.68,36.730000000000004,36.78,36.83,36.87,36.910000000000004,36.980000000000004,17.67,17.07,16.830000000000002,16.61,16.4,16.2,15.99,15.8,15.41,N/A,N/A -2012,4,23,14,30,102230,101020,99850,60.44,0,9.4,10.1,10.26,10.34,10.39,10.42,10.43,10.44,10.43,35.93,36.09,36.17,36.25,36.32,36.38,36.44,36.5,36.61,17.54,16.95,16.72,16.5,16.29,16.09,15.88,15.69,15.3,N/A,N/A -2012,4,23,15,30,102240,101030,99860,59.51,0,7.94,8.47,8.59,8.65,8.68,8.700000000000001,8.700000000000001,8.71,8.700000000000001,35.27,35.43,35.54,35.63,35.71,35.78,35.86,35.93,36.06,17.53,16.97,16.75,16.53,16.32,16.12,15.92,15.72,15.33,N/A,N/A -2012,4,23,16,30,102230,101020,99850,57.76,0,6.13,6.51,6.6000000000000005,6.640000000000001,6.67,6.7,6.71,6.73,6.74,36.2,35.96,35.83,35.71,35.59,35.480000000000004,35.35,35.24,35,17.72,17.2,16.98,16.77,16.56,16.37,16.16,15.97,15.57,N/A,N/A -2012,4,23,17,30,102220,101010,99840,52.83,0,4.79,5.07,5.15,5.19,5.23,5.26,5.29,5.3100000000000005,5.3500000000000005,31.95,31.37,31,30.67,30.35,30.05,29.76,29.490000000000002,28.93,18.31,17.84,17.63,17.42,17.22,17.02,16.82,16.63,16.23,N/A,N/A -2012,4,23,18,30,102170,100970,99800,48.99,0,3.56,3.81,3.9,3.96,4.03,4.08,4.13,4.18,4.28,29.09,27.87,27.11,26.41,25.77,25.19,24.61,24.080000000000002,23.04,19.05,18.62,18.43,18.23,18.03,17.84,17.64,17.45,17.06,N/A,N/A -2012,4,23,19,30,102130,100930,99770,44.61,0,2.27,2.47,2.5500000000000003,2.63,2.69,2.7600000000000002,2.82,2.88,3,29.38,26.55,24.84,23.32,22.01,20.85,19.73,18.72,16.85,19.93,19.55,19.36,19.16,18.97,18.78,18.580000000000002,18.39,18.01,N/A,N/A -2012,4,23,20,30,102060,100870,99710,44.82,0,2.6,2.87,2.98,3.0700000000000003,3.15,3.22,3.29,3.34,3.45,339.36,339.19,339.27,339.40000000000003,339.53000000000003,339.66,339.82,339.97,340.31,20.73,20.38,20.2,20.01,19.81,19.63,19.43,19.25,18.86,N/A,N/A -2012,4,23,21,30,102000,100810,99660,46.96,0,3.94,4.2,4.26,4.3,4.33,4.36,4.38,4.4,4.43,326.94,328.29,329.08,329.82,330.48,331.08,331.68,332.21,333.28000000000003,21.05,20.7,20.52,20.32,20.12,19.94,19.73,19.55,19.16,N/A,N/A -2012,4,23,22,30,101930,100740,99590,46.96,0,4.67,5.0200000000000005,5.11,5.16,5.21,5.24,5.2700000000000005,5.29,5.33,335.40000000000003,335.71,335.91,336.09000000000003,336.27,336.44,336.61,336.77,337.15000000000003,21.61,21.28,21.1,20.900000000000002,20.71,20.53,20.32,20.14,19.75,N/A,N/A -2012,4,23,23,30,101880,100700,99550,48.230000000000004,0,5.63,6.07,6.16,6.21,6.24,6.26,6.2700000000000005,6.2700000000000005,6.28,336.52,336.71,336.84000000000003,336.98,337.1,337.23,337.37,337.49,337.8,21.97,21.66,21.48,21.29,21.1,20.91,20.71,20.53,20.14,N/A,N/A -2012,4,24,0,30,101860,100670,99520,49.03,0,5.83,6.3,6.41,6.46,6.5,6.53,6.55,6.5600000000000005,6.58,335.81,336.89,337.55,338.19,338.78000000000003,339.35,339.92,340.44,341.56,22.16,21.86,21.69,21.5,21.31,21.13,20.93,20.75,20.36,N/A,N/A -2012,4,24,1,30,101840,100660,99510,49.050000000000004,0,2.95,3.23,3.33,3.44,3.54,3.64,3.75,3.85,4.07,49.47,45.04,42.35,39.93,37.83,35.93,34.18,32.59,29.8,21.84,21.55,21.39,21.21,21.03,20.85,20.67,20.490000000000002,20.13,N/A,N/A -2012,4,24,2,30,101870,100680,99530,63.77,0,2.73,2.67,2.57,2.47,2.36,2.2600000000000002,2.16,2.07,1.92,130.78,128.07,126.11,123.79,121.13,118.42,114.74000000000001,111.24000000000001,102.06,20.78,20.44,20.26,20.07,19.88,19.7,19.51,19.330000000000002,18.96,N/A,N/A -2012,4,24,3,30,101870,100680,99530,56.75,0,2.73,2.85,2.87,2.88,2.89,2.9,2.91,2.92,2.95,91.73,88.5,86.49,84.54,82.75,81.11,79.44,77.91,74.81,21.04,20.71,20.53,20.35,20.16,19.98,19.78,19.6,19.22,N/A,N/A -2012,4,24,4,30,101840,100650,99500,51.660000000000004,0,2.9,3.06,3.09,3.11,3.12,3.13,3.13,3.13,3.13,73.43,72.08,71.34,70.72,70.19,69.74,69.34,68.99,68.38,21.19,20.85,20.68,20.48,20.29,20.1,19.91,19.72,19.330000000000002,N/A,N/A -2012,4,24,5,30,101830,100650,99490,50.730000000000004,0,2.81,2.92,2.93,2.92,2.91,2.9,2.88,2.87,2.83,68.1,68.45,68.61,68.75,68.88,68.97,69.06,69.13,69.22,21.150000000000002,20.81,20.63,20.43,20.240000000000002,20.05,19.85,19.67,19.28,N/A,N/A -2012,4,24,6,30,101850,100660,99510,51.56,0,2.31,2.37,2.36,2.35,2.33,2.31,2.29,2.27,2.23,91.46000000000001,91.52,91.5,91.48,91.46000000000001,91.44,91.4,91.36,91.29,21.080000000000002,20.740000000000002,20.56,20.37,20.17,19.98,19.79,19.6,19.21,N/A,N/A -2012,4,24,7,30,101850,100660,99510,53.76,0,2.23,2.31,2.31,2.31,2.3000000000000003,2.29,2.2800000000000002,2.27,2.25,109.78,109.35000000000001,109.05,108.74000000000001,108.42,108.13,107.78,107.46000000000001,106.7,21.03,20.68,20.5,20.31,20.11,19.92,19.72,19.54,19.14,N/A,N/A -2012,4,24,8,30,101850,100660,99500,54.93,0,2,2.04,2.0300000000000002,2.02,2,1.98,1.96,1.94,1.9000000000000001,128.27,129.02,129.42000000000002,129.81,130.19,130.54,130.92000000000002,131.27,132,20.93,20.59,20.41,20.21,20.01,19.830000000000002,19.62,19.44,19.05,N/A,N/A -2012,4,24,9,30,101860,100670,99520,58.06,0,2.27,2.35,2.36,2.36,2.35,2.35,2.34,2.33,2.32,161.92000000000002,162.17000000000002,162.21,162.25,162.29,162.33,162.36,162.39000000000001,162.48,20.88,20.53,20.35,20.14,19.95,19.76,19.56,19.37,18.98,N/A,N/A -2012,4,24,10,30,101860,100670,99520,59.67,0,2.2800000000000002,2.38,2.4,2.4,2.41,2.42,2.42,2.42,2.42,183.78,183.98,184.07,184.14000000000001,184.20000000000002,184.24,184.27,184.29,184.27,20.78,20.42,20.240000000000002,20.04,19.84,19.66,19.45,19.27,18.88,N/A,N/A -2012,4,24,11,30,101850,100660,99510,61.02,0,2.57,2.67,2.68,2.69,2.69,2.68,2.68,2.68,2.66,174.69,175.61,176.16,176.71,177.21,177.68,178.18,178.64000000000001,179.59,20.81,20.45,20.27,20.07,19.87,19.68,19.48,19.3,18.900000000000002,N/A,N/A -2012,4,24,12,30,101880,100690,99540,68.88,0,3.68,3.85,3.85,3.85,3.84,3.83,3.81,3.8000000000000003,3.77,196.27,195.64000000000001,195.19,194.75,194.32,193.91,193.48000000000002,193.08,192.24,20.7,20.330000000000002,20.14,19.94,19.740000000000002,19.55,19.35,19.17,18.77,N/A,N/A -2012,4,24,13,30,101890,100700,99550,69.46000000000001,0,4,4.19,4.21,4.22,4.21,4.21,4.19,4.18,4.15,184.94,185.55,185.94,186.28,186.6,186.88,187.17000000000002,187.43,187.95000000000002,20.7,20.32,20.13,19.93,19.73,19.55,19.34,19.150000000000002,18.76,N/A,N/A -2012,4,24,14,30,101930,100740,99580,67.3,0,3.69,3.9,3.94,3.96,3.98,4,4.01,4.0200000000000005,4.03,193.21,192.66,192.33,192.01,191.72,191.44,191.15,190.89000000000001,190.33,20.79,20.42,20.23,20.03,19.84,19.650000000000002,19.44,19.26,18.86,N/A,N/A -2012,4,24,15,30,101930,100750,99590,67.02,0,3.95,4.16,4.19,4.21,4.23,4.24,4.24,4.24,4.25,189.74,189.09,188.68,188.29,187.93,187.6,187.27,186.97,186.37,20.87,20.490000000000002,20.31,20.11,19.91,19.72,19.52,19.330000000000002,18.94,N/A,N/A -2012,4,24,16,30,101920,100740,99580,64.4,0,3.85,4.0600000000000005,4.09,4.11,4.12,4.13,4.13,4.14,4.14,179.04,179.32,179.53,179.75,179.95000000000002,180.14000000000001,180.35,180.54,180.94,20.95,20.580000000000002,20.39,20.19,19.990000000000002,19.81,19.6,19.42,19.03,N/A,N/A -2012,4,24,17,30,101900,100710,99560,63.85,0,4.78,5.04,5.08,5.08,5.08,5.08,5.07,5.05,5.03,171.97,172.77,173.21,173.61,173.98,174.33,174.68,174.99,175.65,21.06,20.68,20.490000000000002,20.29,20.09,19.91,19.7,19.51,19.12,N/A,N/A -2012,4,24,18,30,101870,100680,99530,64.43,0,4.45,4.7,4.75,4.78,4.79,4.8,4.8,4.8100000000000005,4.8100000000000005,181.54,181.6,181.53,181.42000000000002,181.31,181.19,181.05,180.91,180.6,21.14,20.77,20.580000000000002,20.38,20.18,19.990000000000002,19.79,19.61,19.21,N/A,N/A -2012,4,24,19,30,101830,100640,99500,70.73,0,5.9,6.29,6.37,6.41,6.42,6.43,6.44,6.44,6.43,181.53,181.92000000000002,182.11,182.3,182.47,182.62,182.77,182.92000000000002,183.21,21.080000000000002,20.69,20.51,20.31,20.11,19.92,19.72,19.53,19.14,N/A,N/A -2012,4,24,20,30,101780,100600,99450,71.2,0,5.88,6.2700000000000005,6.34,6.36,6.37,6.38,6.37,6.36,6.33,179.79,179.96,180.07,180.20000000000002,180.31,180.42000000000002,180.53,180.64000000000001,180.85,21.12,20.73,20.54,20.34,20.14,19.95,19.75,19.57,19.17,N/A,N/A -2012,4,24,21,30,101730,100550,99400,68.41,0,6.23,6.68,6.78,6.82,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,182.69,182.98,183.16,183.33,183.49,183.64000000000001,183.8,183.94,184.23,21.25,20.88,20.69,20.490000000000002,20.3,20.11,19.91,19.72,19.330000000000002,N/A,N/A -2012,4,24,22,30,101680,100500,99350,69.97,0,6.53,7.0200000000000005,7.13,7.18,7.22,7.24,7.26,7.2700000000000005,7.28,183.99,184.02,184.03,184.05,184.07,184.1,184.14000000000001,184.17000000000002,184.27,21.25,20.87,20.69,20.490000000000002,20.29,20.1,19.900000000000002,19.72,19.330000000000002,N/A,N/A -2012,4,24,23,30,101640,100460,99310,73.73,0,7.09,7.66,7.78,7.8500000000000005,7.9,7.930000000000001,7.94,7.96,7.96,184.74,185.04,185.18,185.3,185.4,185.48,185.55,185.61,185.72,21.3,20.92,20.740000000000002,20.53,20.34,20.150000000000002,19.94,19.76,19.36,N/A,N/A -2012,4,25,0,30,101600,100420,99270,72.01,0,7.21,7.8,7.930000000000001,8,8.05,8.08,8.1,8.11,8.120000000000001,185.22,185.16,185.11,185.04,184.98,184.91,184.84,184.77,184.63,21.400000000000002,21.03,20.84,20.64,20.44,20.25,20.05,19.87,19.48,N/A,N/A -2012,4,25,1,30,101570,100390,99240,70.32000000000001,0,7.59,8.24,8.38,8.45,8.49,8.52,8.540000000000001,8.55,8.55,186.75,186.6,186.53,186.46,186.41,186.36,186.31,186.27,186.20000000000002,21.5,21.13,20.95,20.75,20.55,20.37,20.16,19.98,19.59,N/A,N/A -2012,4,25,2,30,101570,100390,99240,75.34,0,8.040000000000001,8.75,8.91,9,9.05,9.09,9.1,9.120000000000001,9.120000000000001,188.25,188.24,188.26,188.29,188.32,188.34,188.38,188.42000000000002,188.49,21.5,21.12,20.93,20.73,20.53,20.35,20.14,19.96,19.56,N/A,N/A -2012,4,25,3,30,101540,100360,99220,70.2,0,7.9,8.61,8.77,8.86,8.92,8.96,8.99,9.02,9.05,186.85,186.81,186.82,186.84,186.87,186.89000000000001,186.92000000000002,186.95000000000002,187.03,21.650000000000002,21.29,21.11,20.92,20.72,20.53,20.330000000000002,20.150000000000002,19.77,N/A,N/A -2012,4,25,4,30,101520,100350,99200,71.18,0,8.67,9.450000000000001,9.63,9.73,9.790000000000001,9.84,9.870000000000001,9.89,9.92,189.6,189.83,189.92000000000002,189.99,190.06,190.12,190.19,190.25,190.36,21.69,21.330000000000002,21.150000000000002,20.95,20.75,20.57,20.37,20.18,19.8,N/A,N/A -2012,4,25,5,30,101500,100320,99180,78.93,0,9.02,9.85,10.03,10.120000000000001,10.17,10.200000000000001,10.21,10.21,10.19,188.22,188.20000000000002,188.26,188.33,188.4,188.48,188.56,188.64000000000001,188.81,21.63,21.26,21.080000000000002,20.88,20.68,20.490000000000002,20.29,20.11,19.72,N/A,N/A -2012,4,25,6,30,101520,100340,99200,75.27,0,9.42,10.31,10.53,10.64,10.72,10.76,10.790000000000001,10.81,10.83,192.93,193.09,193.16,193.22,193.26,193.3,193.34,193.38,193.46,21.85,21.51,21.330000000000002,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A -2012,4,25,7,30,101520,100340,99200,77.55,0,8.85,9.76,9.99,10.13,10.23,10.3,10.36,10.4,10.46,196.39000000000001,196.38,196.39000000000001,196.39000000000001,196.39000000000001,196.4,196.4,196.4,196.39000000000001,21.900000000000002,21.55,21.36,21.17,20.97,20.78,20.580000000000002,20.39,20,N/A,N/A -2012,4,25,8,30,101510,100330,99190,80.75,0,8.82,9.73,9.950000000000001,10.09,10.18,10.25,10.290000000000001,10.33,10.38,194.53,195.05,195.25,195.44,195.6,195.75,195.89000000000001,196.03,196.3,21.89,21.54,21.36,21.16,20.97,20.78,20.580000000000002,20.400000000000002,20.01,N/A,N/A -2012,4,25,9,30,101510,100330,99190,79.23,0,9.02,9.98,10.21,10.36,10.47,10.540000000000001,10.59,10.63,10.67,202.13,202.34,202.38,202.39000000000001,202.39000000000001,202.38,202.36,202.33,202.25,22.05,21.71,21.53,21.330000000000002,21.14,20.95,20.75,20.56,20.17,N/A,N/A -2012,4,25,10,30,101490,100320,99180,81.76,0,8.48,9.31,9.5,9.61,9.69,9.74,9.77,9.8,9.83,196.63,196.67000000000002,196.72,196.78,196.85,196.91,196.99,197.06,197.24,21.97,21.63,21.46,21.26,21.07,20.88,20.68,20.5,20.11,N/A,N/A -2012,4,25,11,30,101490,100310,99170,81.4,0,8.38,9.22,9.41,9.52,9.6,9.65,9.68,9.72,9.77,195,195.11,195.14000000000001,195.16,195.18,195.19,195.22,195.24,195.3,22.07,21.740000000000002,21.57,21.37,21.18,21,20.8,20.62,20.240000000000002,N/A,N/A -2012,4,25,12,30,101500,100320,99180,81.52,0,8.91,9.82,10.03,10.15,10.24,10.290000000000001,10.33,10.370000000000001,10.4,195.47,195.63,195.68,195.72,195.75,195.78,195.82,195.84,195.91,22.17,21.84,21.67,21.47,21.28,21.09,20.89,20.71,20.330000000000002,N/A,N/A -2012,4,25,13,30,101540,100370,99230,82.06,0,8.950000000000001,9.86,10.1,10.24,10.33,10.4,10.450000000000001,10.49,10.540000000000001,196.56,196.57,196.58,196.58,196.59,196.59,196.59,196.59,196.58,22.240000000000002,21.92,21.75,21.55,21.36,21.17,20.97,20.79,20.400000000000002,N/A,N/A -2012,4,25,14,30,101560,100390,99250,84.23,0,8.55,9.31,9.49,9.57,9.620000000000001,9.64,9.65,9.66,9.65,194.31,194.22,194.24,194.28,194.33,194.37,194.42000000000002,194.47,194.63,22.26,21.94,21.77,21.57,21.38,21.2,21.01,20.830000000000002,20.45,N/A,N/A -2012,4,25,15,30,101570,100390,99250,84.24,0,8.39,9.23,9.42,9.540000000000001,9.61,9.67,9.71,9.74,9.81,194.26,194.49,194.57,194.65,194.73000000000002,194.81,194.9,194.99,195.21,22.38,22.07,21.900000000000002,21.71,21.52,21.34,21.14,20.97,20.59,N/A,N/A -2012,4,25,16,30,101600,100420,99290,84.78,0,8.55,9.47,9.69,9.83,9.93,10,10.05,10.1,10.16,193.6,193.82,193.94,194.05,194.16,194.27,194.39000000000001,194.49,194.73000000000002,22.48,22.17,22,21.81,21.62,21.43,21.240000000000002,21.06,20.67,N/A,N/A -2012,4,25,17,30,101580,100400,99270,84.66,0,8.59,9.51,9.74,9.88,9.98,10.06,10.120000000000001,10.16,10.24,197.42000000000002,197.58,197.69,197.8,197.91,198.02,198.12,198.22,198.44,22.56,22.26,22.1,21.900000000000002,21.72,21.53,21.34,21.16,20.77,N/A,N/A -2012,4,25,18,30,101580,100400,99270,86.44,0,8.82,9.74,9.97,10.11,10.21,10.27,10.31,10.33,10.35,197.69,197.6,197.6,197.61,197.62,197.63,197.63,197.64000000000001,197.64000000000001,22.6,22.3,22.13,21.93,21.740000000000002,21.55,21.36,21.17,20.78,N/A,N/A -2012,4,25,19,30,101580,100410,99270,86.37,0,8.17,8.99,9.19,9.3,9.370000000000001,9.42,9.450000000000001,9.47,9.49,195.55,195.6,195.67000000000002,195.74,195.8,195.86,195.92000000000002,195.97,196.09,22.66,22.36,22.19,22,21.81,21.63,21.43,21.25,20.87,N/A,N/A -2012,4,25,20,30,101530,100360,99220,86.83,0,8.42,9.290000000000001,9.51,9.63,9.72,9.790000000000001,9.83,9.870000000000001,9.91,194.51,194.69,194.78,194.87,194.96,195.04,195.12,195.21,195.4,22.68,22.39,22.22,22.03,21.84,21.66,21.46,21.28,20.900000000000002,N/A,N/A -2012,4,25,21,30,101490,100320,99180,87.45,0,9.27,10.28,10.540000000000001,10.700000000000001,10.81,10.9,10.950000000000001,11,11.05,192.84,192.95000000000002,193.02,193.1,193.17000000000002,193.24,193.31,193.38,193.52,22.68,22.400000000000002,22.23,22.04,21.85,21.67,21.47,21.29,20.900000000000002,N/A,N/A -2012,4,25,22,30,101470,100300,99160,87.47,0,8.86,9.82,10.08,10.24,10.35,10.44,10.5,10.55,10.620000000000001,189.56,189.55,189.61,189.66,189.72,189.77,189.83,189.88,190,22.68,22.400000000000002,22.23,22.04,21.86,21.67,21.48,21.3,20.92,N/A,N/A -2012,4,25,23,30,101430,100260,99130,87.85000000000001,0,9.1,10.09,10.32,10.48,10.58,10.66,10.72,10.78,10.86,188.14000000000001,188.21,188.25,188.29,188.33,188.37,188.42000000000002,188.47,188.59,22.650000000000002,22.36,22.2,22.01,21.82,21.64,21.45,21.27,20.89,N/A,N/A -2012,4,26,0,30,101390,100220,99080,88.10000000000001,0,9.540000000000001,10.620000000000001,10.89,11.07,11.200000000000001,11.290000000000001,11.36,11.41,11.49,187.76,187.77,187.81,187.86,187.91,187.95000000000002,188.01,188.05,188.17000000000002,22.6,22.31,22.14,21.95,21.76,21.580000000000002,21.39,21.21,20.82,N/A,N/A -2012,4,26,1,30,101360,100190,99060,86.26,0,10,11.08,11.370000000000001,11.55,11.68,11.78,11.86,11.92,12.030000000000001,186.67000000000002,186.47,186.42000000000002,186.37,186.34,186.33,186.32,186.32,186.36,22.67,22.400000000000002,22.240000000000002,22.05,21.87,21.69,21.5,21.32,20.95,N/A,N/A -2012,4,26,2,30,101350,100180,99050,85.7,0,10.19,11.41,11.73,11.96,12.14,12.280000000000001,12.41,12.530000000000001,12.76,185.78,185.97,186.04,186.11,186.19,186.26,186.33,186.4,186.55,22.7,22.44,22.28,22.09,21.91,21.740000000000002,21.55,21.38,21.01,N/A,N/A -2012,4,26,3,30,101330,100160,99030,85.24,0,9.620000000000001,10.63,10.93,11.16,11.4,11.64,11.950000000000001,12.27,13.030000000000001,186.38,186.62,186.78,186.97,187.19,187.43,187.73,188.04,188.6,22.73,22.490000000000002,22.35,22.19,22.03,21.89,21.75,21.62,21.35,N/A,N/A -2012,4,26,4,30,101320,100150,99010,85.54,0,11.35,12.75,13.13,13.39,13.61,13.780000000000001,13.93,14.06,14.290000000000001,184.54,184.88,185.06,185.26,185.45000000000002,185.63,185.8,185.95000000000002,186.3,22.72,22.46,22.3,22.12,21.93,21.76,21.57,21.39,21.02,N/A,N/A -2012,4,26,5,30,101320,100150,99020,84.51,0,11.120000000000001,12.5,12.870000000000001,13.14,13.34,13.49,13.61,13.700000000000001,13.89,189.42000000000002,188.95000000000002,188.81,188.66,188.55,188.44,188.34,188.25,188.07,22.81,22.55,22.39,22.2,22.02,21.830000000000002,21.64,21.46,21.07,N/A,N/A -2012,4,26,6,30,101330,100160,99020,85.54,0,11.6,13.05,13.44,13.71,13.9,14.040000000000001,14.13,14.21,14.290000000000001,188.9,188.71,188.66,188.61,188.59,188.56,188.56,188.56,188.59,22.84,22.55,22.38,22.19,22,21.81,21.61,21.43,21.04,N/A,N/A -2012,4,26,7,30,101340,100170,99030,86.01,0,10.78,11.94,12.26,12.47,12.63,12.77,12.9,13.030000000000001,13.46,189.59,189.49,189.5,189.5,189.51,189.52,189.54,189.57,189.87,22.91,22.64,22.48,22.3,22.13,21.96,21.79,21.63,21.36,N/A,N/A -2012,4,26,8,30,101330,100160,99020,88.12,0,11.28,12.63,13.01,13.27,13.46,13.61,13.72,13.81,13.950000000000001,192.33,192.27,192.24,192.22,192.22,192.22,192.23000000000002,192.26,192.35,22.830000000000002,22.55,22.38,22.19,22,21.82,21.63,21.45,21.07,N/A,N/A -2012,4,26,9,30,101320,100160,99020,88.81,0,11.11,12.34,12.67,12.91,13.11,13.280000000000001,13.46,13.64,14.13,192,192.5,192.71,192.94,193.18,193.43,193.72,194.01,194.78,22.81,22.54,22.38,22.2,22.03,21.86,21.68,21.53,21.21,N/A,N/A -2012,4,26,10,30,101330,100160,99030,88.73,0,9.96,11.01,11.28,11.450000000000001,11.58,11.69,11.8,11.91,12.31,190.05,190.29,190.44,190.61,190.79,190.99,191.24,191.48000000000002,192.16,22.81,22.53,22.37,22.19,22.02,21.85,21.67,21.51,21.22,N/A,N/A -2012,4,26,11,30,101350,100180,99050,90.36,0,10.41,11.57,11.91,12.120000000000001,12.290000000000001,12.42,12.540000000000001,12.65,12.85,186.98,187.06,187.17000000000002,187.28,187.38,187.48,187.59,187.70000000000002,187.94,22.75,22.46,22.29,22.11,21.92,21.740000000000002,21.55,21.38,21.02,N/A,N/A -2012,4,26,12,30,101390,100220,99090,89.14,0,10.18,11.34,11.67,11.91,12.08,12.23,12.35,12.46,12.67,187.76,187.94,188.06,188.19,188.31,188.42000000000002,188.55,188.66,188.94,22.82,22.54,22.38,22.19,22.01,21.830000000000002,21.64,21.46,21.09,N/A,N/A -2012,4,26,13,30,101430,100260,99130,90.45,0,9.93,11.03,11.31,11.5,11.65,11.76,11.86,11.94,12.1,189.56,189.76,189.88,190,190.14000000000001,190.26,190.41,190.55,190.9,22.79,22.5,22.330000000000002,22.150000000000002,21.96,21.78,21.580000000000002,21.41,21.03,N/A,N/A -2012,4,26,14,30,101510,100340,99200,90,0,9.13,10.120000000000001,10.42,10.64,10.81,10.950000000000001,11.08,11.19,11.42,187.66,187.88,188.06,188.25,188.42000000000002,188.58,188.75,188.89000000000001,189.22,22.900000000000002,22.63,22.48,22.29,22.11,21.93,21.75,21.57,21.21,N/A,N/A -2012,4,26,15,30,101540,100370,99240,88.29,0,9.21,10.370000000000001,10.700000000000001,10.97,11.200000000000001,11.4,11.61,11.8,12.23,186.99,187.66,187.94,188.25,188.56,188.88,189.23,189.56,190.39000000000001,23.05,22.79,22.64,22.46,22.28,22.11,21.93,21.76,21.41,N/A,N/A -2012,4,26,16,30,101560,100390,99260,89.13,0,8.620000000000001,9.56,9.83,10.03,10.18,10.31,10.43,10.53,10.78,185.45000000000002,185.71,185.95000000000002,186.24,186.55,186.88,187.27,187.66,188.70000000000002,23.02,22.76,22.6,22.42,22.240000000000002,22.07,21.89,21.72,21.36,N/A,N/A -2012,4,26,17,30,101570,100400,99270,88.21000000000001,0,9.16,10.17,10.46,10.66,10.81,10.93,11.03,11.120000000000001,11.28,187.6,187.75,187.91,188.09,188.26,188.43,188.62,188.79,189.17000000000002,23.09,22.830000000000002,22.68,22.490000000000002,22.31,22.13,21.94,21.77,21.39,N/A,N/A -2012,4,26,18,30,101570,100400,99260,87.93,0,8.8,9.76,10.03,10.21,10.35,10.47,10.57,10.65,10.81,189.84,189.92000000000002,190.02,190.14000000000001,190.25,190.35,190.48,190.59,190.85,23.12,22.86,22.7,22.52,22.34,22.16,21.97,21.8,21.43,N/A,N/A -2012,4,26,19,30,101570,100400,99270,86.96000000000001,0,9.09,10.120000000000001,10.39,10.58,10.72,10.82,10.9,10.98,11.09,185.36,185.55,185.67000000000002,185.82,185.96,186.1,186.25,186.39000000000001,186.73,23.13,22.87,22.71,22.53,22.35,22.17,21.98,21.8,21.43,N/A,N/A -2012,4,26,20,30,101520,100350,99220,87.5,0,8.77,9.71,9.96,10.120000000000001,10.25,10.34,10.42,10.49,10.620000000000001,184.91,185,185.09,185.19,185.29,185.39000000000001,185.51,185.62,185.9,23.080000000000002,22.82,22.66,22.48,22.3,22.13,21.94,21.77,21.41,N/A,N/A -2012,4,26,21,30,101490,100320,99190,86.91,0,8.71,9.700000000000001,9.96,10.14,10.28,10.39,10.46,10.53,10.64,184.64000000000001,184.73,184.78,184.85,184.92000000000002,184.99,185.08,185.16,185.34,23.09,22.82,22.66,22.48,22.3,22.12,21.92,21.75,21.37,N/A,N/A -2012,4,26,22,30,101460,100290,99160,85.57000000000001,0,8.58,9.55,9.83,10.03,10.18,10.3,10.41,10.51,10.69,186.58,187.05,187.3,187.55,187.79,188.01,188.26,188.49,189,23.06,22.81,22.67,22.490000000000002,22.31,22.14,21.95,21.78,21.41,N/A,N/A -2012,4,26,23,30,101420,100250,99120,85.8,0,8.92,9.9,10.17,10.35,10.47,10.57,10.65,10.71,10.81,184.05,184.07,184.15,184.24,184.32,184.4,184.49,184.58,184.76,23,22.740000000000002,22.59,22.400000000000002,22.22,22.04,21.86,21.68,21.31,N/A,N/A -2012,4,27,0,30,101390,100220,99080,85.14,0,9.02,9.94,10.18,10.32,10.42,10.49,10.55,10.6,10.71,180.54,180.64000000000001,180.76,180.89000000000001,181.04,181.20000000000002,181.39000000000001,181.58,182.1,22.94,22.68,22.53,22.35,22.17,22,21.81,21.650000000000002,21.29,N/A,N/A -2012,4,27,1,30,101370,100200,99070,83.03,0,9.47,10.49,10.77,10.950000000000001,11.07,11.16,11.23,11.290000000000001,11.39,184.15,184.31,184.41,184.5,184.58,184.64000000000001,184.69,184.74,184.84,22.98,22.73,22.57,22.39,22.22,22.04,21.86,21.69,21.34,N/A,N/A -2012,4,27,2,30,101360,100190,99060,80.42,0,9.21,10.25,10.55,10.76,10.94,11.09,11.22,11.35,11.61,184.53,184.81,184.91,185,185.08,185.15,185.22,185.27,185.36,23.03,22.79,22.650000000000002,22.47,22.3,22.13,21.95,21.78,21.43,N/A,N/A -2012,4,27,3,30,101340,100170,99040,81.43,0,10.19,11.3,11.58,11.74,11.85,11.93,11.98,12.01,12.040000000000001,179.37,179.29,179.31,179.34,179.38,179.42000000000002,179.48,179.54,179.68,22.95,22.68,22.52,22.34,22.150000000000002,21.97,21.78,21.61,21.23,N/A,N/A -2012,4,27,4,30,101300,100130,99000,78.82000000000001,0,8.73,9.65,9.93,10.17,10.42,10.68,11.06,11.44,12.13,181.25,181.66,181.96,182.33,182.8,183.32,184.04,184.76,185.69,23.01,22.8,22.67,22.52,22.38,22.25,22.14,22.03,21.75,N/A,N/A -2012,4,27,5,30,101300,100130,99000,80.24,0,10.23,11.3,11.59,11.77,11.93,12.05,12.19,12.31,12.63,179.57,180.18,180.41,180.63,180.85,181.06,181.29,181.5,181.98,22.96,22.72,22.580000000000002,22.400000000000002,22.240000000000002,22.07,21.900000000000002,21.740000000000002,21.41,N/A,N/A -2012,4,27,6,30,101310,100140,99000,81.74,0,9.85,10.8,11.03,11.16,11.25,11.31,11.38,11.44,11.66,180.4,180.54,180.59,180.63,180.66,180.68,180.71,180.74,180.91,22.95,22.650000000000002,22.490000000000002,22.31,22.14,21.97,21.79,21.64,21.330000000000002,N/A,N/A -2012,4,27,7,30,101330,100160,99030,79.13,0,9.53,10.75,11.09,11.35,11.55,11.72,11.85,11.97,12.14,181.97,181.70000000000002,181.68,181.66,181.65,181.63,181.62,181.6,181.57,23.26,22.98,22.82,22.63,22.45,22.26,22.07,21.89,21.5,N/A,N/A -2012,4,27,8,30,101320,100150,99020,77.84,0,8.99,10.1,10.43,10.72,11,11.27,11.58,11.89,12.58,182.87,183.1,183.24,183.38,183.53,183.67000000000002,183.82,183.96,184.18,23.41,23.18,23.04,22.88,22.73,22.57,22.42,22.27,21.95,N/A,N/A -2012,4,27,9,30,101320,100160,99020,81.82000000000001,0,9.61,10.68,10.950000000000001,11.13,11.26,11.370000000000001,11.47,11.56,11.76,179.61,179.57,179.63,179.71,179.8,179.88,180,180.1,180.47,23.2,22.93,22.77,22.59,22.400000000000002,22.23,22.04,21.87,21.52,N/A,N/A -2012,4,27,10,30,101310,100150,99010,83.74,0,10.71,11.9,12.19,12.36,12.48,12.56,12.61,12.66,12.700000000000001,176.56,176.74,176.87,177.01,177.15,177.3,177.45000000000002,177.59,177.93,23.18,22.900000000000002,22.73,22.54,22.36,22.18,21.990000000000002,21.81,21.43,N/A,N/A -2012,4,27,11,30,101320,100160,99020,83.17,0,10.55,11.68,11.98,12.17,12.31,12.41,12.5,12.57,12.72,183.08,183.26,183.34,183.42000000000002,183.51,183.6,183.70000000000002,183.8,184.04,23.19,22.92,22.76,22.580000000000002,22.400000000000002,22.22,22.04,21.87,21.51,N/A,N/A -2012,4,27,12,30,101350,100180,99050,81.36,0,10.39,11.65,11.99,12.25,12.450000000000001,12.61,12.76,12.88,13.1,175.95000000000002,176.67000000000002,176.95000000000002,177.23,177.5,177.74,177.99,178.23,178.69,23.38,23.12,22.97,22.79,22.61,22.44,22.25,22.07,21.7,N/A,N/A -2012,4,27,13,30,101350,100190,99050,80.99,0,12.120000000000001,13.6,13.98,14.25,14.43,14.57,14.68,14.76,14.870000000000001,179.38,179.66,179.77,179.87,179.96,180.03,180.09,180.14000000000001,180.21,23.28,23,22.830000000000002,22.64,22.45,22.26,22.07,21.88,21.490000000000002,N/A,N/A -2012,4,27,14,30,101390,100230,99090,85.10000000000001,0,11.56,12.91,13.26,13.49,13.64,13.76,13.85,13.92,14,178.63,178.48,178.47,178.47,178.47,178.47,178.48,178.48,178.49,23.080000000000002,22.78,22.61,22.41,22.22,22.04,21.84,21.650000000000002,21.27,N/A,N/A -2012,4,27,15,30,101420,100260,99120,85.96000000000001,0,11.47,12.81,13.19,13.43,13.6,13.74,13.83,13.91,14.02,176.61,176.81,176.93,177.04,177.15,177.24,177.33,177.41,177.57,23.14,22.85,22.69,22.490000000000002,22.3,22.12,21.92,21.740000000000002,21.36,N/A,N/A -2012,4,27,16,30,101450,100290,99150,82.99,0,10.51,11.72,12.05,12.27,12.43,12.55,12.64,12.72,12.83,176.99,176.79,176.78,176.77,176.78,176.78,176.79,176.8,176.85,23.28,23,22.84,22.650000000000002,22.47,22.29,22.09,21.91,21.54,N/A,N/A -2012,4,27,17,30,101460,100290,99160,81.42,0,10.41,11.6,11.93,12.14,12.3,12.42,12.52,12.6,12.73,180.36,180.85,181.07,181.29,181.49,181.67000000000002,181.85,182.01,182.32,23.29,23.02,22.86,22.67,22.48,22.3,22.11,21.93,21.55,N/A,N/A -2012,4,27,18,30,101480,100310,99180,83.69,0,10.03,11.25,11.6,11.83,12,12.13,12.22,12.31,12.42,181.32,181.52,181.59,181.65,181.71,181.76,181.8,181.84,181.9,23.27,22.98,22.82,22.63,22.44,22.26,22.06,21.88,21.490000000000002,N/A,N/A -2012,4,27,19,30,101470,100300,99160,79.54,0,9.34,10.26,10.49,10.61,10.69,10.74,10.76,10.78,10.78,172.87,172.51,172.53,172.58,172.67000000000002,172.77,172.94,173.1,173.72,23.34,23.07,22.91,22.73,22.55,22.37,22.19,22.01,21.66,N/A,N/A -2012,4,27,20,30,101450,100280,99150,80.16,0,9.13,10.14,10.42,10.6,10.72,10.8,10.870000000000001,10.92,10.98,171.9,171.92000000000002,172.03,172.12,172.20000000000002,172.26,172.31,172.36,172.43,23.36,23.09,22.93,22.740000000000002,22.56,22.37,22.18,22,21.62,N/A,N/A -2012,4,27,21,30,101410,100240,99110,79.38,0,9.19,10.25,10.540000000000001,10.73,10.870000000000001,10.98,11.06,11.13,11.22,175.06,175.29,175.4,175.49,175.57,175.64000000000001,175.70000000000002,175.76,175.87,23.37,23.11,22.95,22.76,22.580000000000002,22.400000000000002,22.2,22.02,21.64,N/A,N/A -2012,4,27,22,30,101360,100200,99060,78.2,0,8.99,9.97,10.23,10.41,10.540000000000001,10.64,10.73,10.8,10.91,171.1,171.49,171.68,171.88,172.08,172.28,172.49,172.68,173.09,23.38,23.13,22.97,22.78,22.6,22.42,22.23,22.05,21.68,N/A,N/A -2012,4,27,23,30,101320,100150,99020,76.83,0,9.15,10.17,10.43,10.6,10.72,10.82,10.89,10.950000000000001,11.040000000000001,167.73,167.96,168.09,168.22,168.34,168.46,168.58,168.69,168.93,23.35,23.09,22.94,22.75,22.57,22.39,22.2,22.02,21.650000000000002,N/A,N/A -2012,4,28,0,30,101280,100110,98980,76.81,0,9.32,10.290000000000001,10.55,10.72,10.86,10.96,11.06,11.14,11.32,170.93,171.36,171.6,171.84,172.07,172.31,172.56,172.79,173.32,23.330000000000002,23.080000000000002,22.93,22.76,22.59,22.41,22.23,22.07,21.72,N/A,N/A -2012,4,28,1,30,101260,100090,98960,75.26,0,10.35,11.51,11.83,12.040000000000001,12.19,12.3,12.39,12.47,12.59,169.66,169.85,169.92000000000002,169.99,170.04,170.07,170.11,170.14000000000001,170.19,23.330000000000002,23.080000000000002,22.92,22.73,22.55,22.37,22.18,22,21.63,N/A,N/A -2012,4,28,2,30,101270,100100,98970,76.36,0,9.64,10.72,11.03,11.24,11.4,11.53,11.63,11.73,11.9,168.59,168.45000000000002,168.39000000000001,168.33,168.29,168.26,168.24,168.23,168.24,23.29,23.05,22.900000000000002,22.72,22.54,22.37,22.18,22.01,21.650000000000002,N/A,N/A -2012,4,28,3,30,101250,100080,98940,78.42,0,10.76,12.02,12.35,12.57,12.74,12.86,12.96,13.05,13.18,169.88,170.41,170.57,170.71,170.82,170.92000000000002,171,171.08,171.20000000000002,23.150000000000002,22.87,22.7,22.51,22.330000000000002,22.150000000000002,21.95,21.77,21.39,N/A,N/A -2012,4,28,4,30,101220,100050,98920,77.28,0,10.1,11.35,11.69,11.94,12.120000000000001,12.26,12.38,12.49,12.66,167.27,167.69,167.88,168.05,168.21,168.35,168.49,168.62,168.87,23.3,23.03,22.87,22.69,22.5,22.32,22.13,21.95,21.57,N/A,N/A -2012,4,28,5,30,101200,100030,98900,83.43,0,11.35,12.68,13.030000000000001,13.25,13.41,13.530000000000001,13.61,13.68,13.77,166.91,167.02,167.09,167.16,167.22,167.29,167.35,167.41,167.53,23.02,22.71,22.54,22.35,22.150000000000002,21.97,21.77,21.59,21.2,N/A,N/A -2012,4,28,6,30,101230,100060,98930,82.91,0,12.200000000000001,13.59,13.96,14.17,14.31,14.41,14.47,14.52,14.56,164.69,165.34,165.61,165.85,166.06,166.25,166.43,166.59,166.88,23.1,22.78,22.61,22.41,22.22,22.04,21.84,21.650000000000002,21.27,N/A,N/A -2012,4,28,7,30,101220,100050,98920,84.42,0,11.19,12.39,12.68,12.85,12.97,13.05,13.1,13.15,13.21,164.45000000000002,164.27,164.27,164.27,164.3,164.33,164.38,164.44,164.6,23.16,22.84,22.67,22.47,22.29,22.1,21.91,21.73,21.36,N/A,N/A -2012,4,28,8,30,101230,100070,98940,86.59,0,11.14,12.44,12.780000000000001,13.01,13.19,13.32,13.42,13.5,13.620000000000001,171.51,171.22,171.16,171.14000000000001,171.14000000000001,171.16,171.19,171.23,171.35,23.25,22.93,22.76,22.56,22.37,22.18,21.98,21.8,21.41,N/A,N/A -2012,4,28,9,30,101240,100070,98940,88.71000000000001,0,9.77,10.790000000000001,11.06,11.22,11.33,11.41,11.47,11.53,11.6,170.05,170.21,170.36,170.51,170.65,170.79,170.94,171.07,171.37,23.29,22.98,22.81,22.61,22.42,22.240000000000002,22.04,21.86,21.47,N/A,N/A -2012,4,28,10,30,101240,100080,98950,89.82000000000001,0,10.34,11.43,11.72,11.89,12.01,12.09,12.15,12.200000000000001,12.25,164.79,164.89000000000001,165.01,165.15,165.28,165.42000000000002,165.57,165.72,166.06,23.19,22.87,22.7,22.5,22.31,22.12,21.93,21.740000000000002,21.36,N/A,N/A -2012,4,28,11,30,101260,100090,98960,89.34,0,10.3,11.4,11.700000000000001,11.9,12.040000000000001,12.14,12.23,12.3,12.41,169.92000000000002,170.14000000000001,170.23,170.34,170.45000000000002,170.56,170.69,170.82,171.14000000000001,23.3,22.990000000000002,22.830000000000002,22.64,22.45,22.26,22.080000000000002,21.900000000000002,21.52,N/A,N/A -2012,4,28,12,30,101280,100120,98990,88.54,0,9.370000000000001,10.39,10.64,10.790000000000001,10.9,10.98,11.040000000000001,11.08,11.17,171.62,172.07,172.24,172.41,172.56,172.69,172.84,172.98,173.29,23.35,23.06,22.89,22.7,22.51,22.330000000000002,22.14,21.96,21.59,N/A,N/A -2012,4,28,13,30,101310,100150,99020,88.37,0,9.040000000000001,9.97,10.200000000000001,10.33,10.42,10.48,10.51,10.53,10.55,168.71,168.99,169.17000000000002,169.35,169.5,169.65,169.79,169.93,170.21,23.52,23.23,23.06,22.87,22.69,22.51,22.31,22.14,21.76,N/A,N/A -2012,4,28,14,30,101370,100200,99070,87.76,0,8.97,9.870000000000001,10.09,10.21,10.28,10.33,10.370000000000001,10.39,10.42,159.95000000000002,159.76,159.81,159.85,159.9,159.95000000000002,160.02,160.09,160.26,23.31,23,22.830000000000002,22.64,22.45,22.26,22.07,21.89,21.51,N/A,N/A -2012,4,28,15,30,101400,100240,99110,87.7,0,9.040000000000001,9.98,10.200000000000001,10.34,10.43,10.5,10.55,10.58,10.64,160,160.23,160.39000000000001,160.56,160.72,160.88,161.05,161.20000000000002,161.55,23.36,23.05,22.88,22.69,22.5,22.32,22.12,21.94,21.56,N/A,N/A -2012,4,28,16,30,101420,100250,99120,86.48,0,8.63,9.52,9.74,9.870000000000001,9.96,10.03,10.08,10.13,10.21,158,158.42000000000002,158.62,158.82,159,159.17000000000002,159.36,159.54,159.93,23.32,23.01,22.84,22.650000000000002,22.46,22.28,22.080000000000002,21.900000000000002,21.52,N/A,N/A -2012,4,28,17,30,101440,100280,99140,83.8,0,8.35,9.23,9.44,9.57,9.67,9.73,9.78,9.81,9.86,156.16,156.09,156.09,156.09,156.09,156.1,156.11,156.12,156.15,23.490000000000002,23.18,23.02,22.82,22.63,22.44,22.25,22.06,21.68,N/A,N/A -2012,4,28,18,30,101450,100280,99150,84.19,0,8.36,9.21,9.42,9.540000000000001,9.63,9.69,9.73,9.76,9.8,149.24,149.61,149.81,150,150.17000000000002,150.33,150.48,150.63,150.92000000000002,23.44,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.01,21.63,N/A,N/A -2012,4,28,19,30,101450,100280,99150,81.41,0,7.98,8.82,9.03,9.16,9.26,9.33,9.38,9.43,9.49,148.47,148.67000000000002,148.79,148.9,149.01,149.1,149.19,149.28,149.45000000000002,23.56,23.27,23.1,22.91,22.72,22.54,22.34,22.150000000000002,21.77,N/A,N/A -2012,4,28,20,30,101430,100260,99130,82.49,0,7.76,8.6,8.82,8.97,9.07,9.15,9.22,9.27,9.36,147.44,147.83,148.02,148.19,148.35,148.48,148.62,148.74,148.98,23.62,23.330000000000002,23.17,22.98,22.79,22.61,22.41,22.23,21.85,N/A,N/A -2012,4,28,21,30,101400,100230,99100,82,0,7.71,8.55,8.77,8.92,9.03,9.120000000000001,9.19,9.25,9.34,149.14000000000001,149.44,149.62,149.8,149.96,150.1,150.24,150.37,150.64000000000001,23.7,23.42,23.26,23.080000000000002,22.89,22.71,22.51,22.34,21.96,N/A,N/A -2012,4,28,22,30,101360,100200,99070,85.89,0,8.16,8.98,9.18,9.31,9.39,9.450000000000001,9.49,9.52,9.56,144.4,144.78,144.98,145.18,145.36,145.53,145.71,145.87,146.22,23.55,23.27,23.11,22.92,22.73,22.55,22.36,22.18,21.79,N/A,N/A -2012,4,28,23,30,101340,100180,99050,88.16,0,7.57,8.31,8.5,8.61,8.69,8.74,8.78,8.82,8.870000000000001,140.33,140.59,140.73,140.9,141.07,141.24,141.44,141.63,142.12,23.5,23.21,23.05,22.86,22.67,22.490000000000002,22.3,22.12,21.740000000000002,N/A,N/A -2012,4,29,0,30,101340,100180,99050,88.87,0,6.91,7.62,7.83,7.99,8.13,8.27,8.44,8.620000000000001,9.16,145.77,146.1,146.29,146.53,146.8,147.08,147.45000000000002,147.81,148.8,23.53,23.27,23.12,22.94,22.77,22.6,22.43,22.26,21.95,N/A,N/A -2012,4,29,1,30,101340,100170,99040,91.09,0,7.7700000000000005,8.61,8.82,8.97,9.07,9.16,9.23,9.28,9.39,146.41,146.88,147.11,147.35,147.6,147.85,148.12,148.37,148.99,23.54,23.25,23.09,22.900000000000002,22.71,22.53,22.34,22.16,21.78,N/A,N/A -2012,4,29,2,30,101350,100190,99060,91.37,0,7.07,7.8,7.98,8.09,8.17,8.23,8.28,8.32,8.39,143.36,143.46,143.55,143.64000000000001,143.72,143.8,143.89000000000001,143.97,144.17000000000002,23.44,23.14,22.97,22.78,22.59,22.41,22.21,22.03,21.650000000000002,N/A,N/A -2012,4,29,3,30,101370,100200,99080,93.08,0,8.06,8.71,8.84,8.88,8.89,8.89,8.92,8.950000000000001,9.13,137.76,138.22,138.56,139.01,139.56,140.18,141.11,142.08,144.54,23.38,23.09,22.93,22.75,22.580000000000002,22.42,22.26,22.12,21.85,N/A,N/A -2012,4,29,4,30,101350,100190,99060,93.04,0,7.5600000000000005,8.34,8.55,8.700000000000001,8.82,8.93,9.05,9.16,9.52,143.54,143.86,144.09,144.35,144.64000000000001,144.94,145.33,145.71,146.86,23.52,23.23,23.07,22.88,22.7,22.52,22.330000000000002,22.16,21.81,N/A,N/A -2012,4,29,5,30,101350,100180,99050,91.85000000000001,0,7.95,8.89,9.19,9.46,9.74,10.02,10.35,10.69,11,148.64000000000001,148.84,149.02,149.24,149.49,149.77,150.15,150.53,150.9,23.580000000000002,23.32,23.16,22.990000000000002,22.82,22.66,22.48,22.330000000000002,21.97,N/A,N/A -2012,4,29,6,30,101360,100200,99070,92.17,0,8.81,9.77,10.03,10.200000000000001,10.34,10.46,10.57,10.67,10.93,145.99,146.06,146.12,146.19,146.26,146.33,146.4,146.47,146.66,23.61,23.32,23.16,22.97,22.79,22.6,22.41,22.240000000000002,21.87,N/A,N/A -2012,4,29,7,30,101400,100230,99110,92.54,0,8.6,9.56,9.82,9.99,10.13,10.23,10.32,10.39,10.52,145.78,145.91,146.01,146.12,146.23,146.34,146.46,146.57,146.81,23.56,23.27,23.1,22.91,22.73,22.54,22.35,22.17,21.79,N/A,N/A -2012,4,29,8,30,101390,100230,99100,92.93,0,8.32,9.200000000000001,9.41,9.56,9.67,9.75,9.82,9.89,10.040000000000001,149.72,149.67000000000002,149.70000000000002,149.73,149.76,149.79,149.82,149.85,149.9,23.490000000000002,23.19,23.02,22.830000000000002,22.64,22.46,22.27,22.09,21.72,N/A,N/A -2012,4,29,9,30,101420,100260,99130,87.4,0,8.96,9.93,10.18,10.33,10.44,10.51,10.56,10.61,10.66,151.25,150.85,150.77,150.72,150.68,150.66,150.66,150.67000000000002,150.73,23.71,23.42,23.25,23.06,22.87,22.68,22.48,22.3,21.91,N/A,N/A -2012,4,29,10,30,101430,100260,99130,88,0,8.45,9.44,9.700000000000001,9.86,9.98,10.06,10.11,10.15,10.16,145.95000000000002,146,146.07,146.14000000000001,146.19,146.23,146.25,146.27,146.26,23.6,23.31,23.150000000000002,22.95,22.77,22.580000000000002,22.39,22.21,21.82,N/A,N/A -2012,4,29,11,30,101430,100260,99130,86.26,0,8.34,9.290000000000001,9.56,9.76,9.94,10.11,10.290000000000001,10.46,10.92,144.79,145.13,145.37,145.64000000000001,145.92000000000002,146.21,146.52,146.83,147.58,23.64,23.38,23.22,23.04,22.87,22.69,22.51,22.35,22,N/A,N/A -2012,4,29,12,30,101460,100290,99160,87.18,0,8.38,9.13,9.31,9.44,9.56,9.67,9.84,10.03,10.76,143.61,143.54,143.58,143.68,143.83,144.02,144.35,144.72,146.04,23.650000000000002,23.38,23.240000000000002,23.06,22.900000000000002,22.740000000000002,22.59,22.45,22.21,N/A,N/A -2012,4,29,13,30,101490,100320,99190,88.77,0,9.09,10.08,10.33,10.5,10.64,10.74,10.83,10.92,11.11,142.4,142.78,143.02,143.29,143.55,143.8,144.08,144.36,145.02,23.580000000000002,23.29,23.13,22.94,22.75,22.57,22.37,22.2,21.830000000000002,N/A,N/A -2012,4,29,14,30,101570,100400,99270,90.77,0,7.86,8.63,8.82,8.94,9.02,9.09,9.15,9.200000000000001,9.33,136.16,136.43,136.62,136.84,137.06,137.28,137.53,137.77,138.39000000000001,23.57,23.28,23.12,22.93,22.740000000000002,22.56,22.37,22.19,21.830000000000002,N/A,N/A -2012,4,29,15,30,101620,100450,99320,89.59,0,8.23,9.1,9.32,9.47,9.57,9.65,9.71,9.77,9.88,136.08,136.24,136.34,136.44,136.53,136.62,136.72,136.82,137.05,23.66,23.37,23.2,23.01,22.830000000000002,22.64,22.45,22.27,21.900000000000002,N/A,N/A -2012,4,29,16,30,101640,100470,99340,90.14,0,7.67,8.44,8.63,8.75,8.83,8.89,8.94,8.98,9.06,140.49,140.62,140.68,140.76,140.84,140.94,141.04,141.15,141.43,23.68,23.39,23.22,23.03,22.84,22.66,22.46,22.28,21.91,N/A,N/A -2012,4,29,17,30,101660,100490,99360,91.37,0,7.44,8.18,8.36,8.47,8.540000000000001,8.59,8.620000000000001,8.65,8.69,131.69,131.86,131.99,132.12,132.25,132.38,132.52,132.65,132.97,23.7,23.39,23.22,23.02,22.84,22.650000000000002,22.46,22.27,21.900000000000002,N/A,N/A -2012,4,29,18,30,101660,100490,99360,91.62,0,7.1000000000000005,7.75,7.91,8,8.07,8.11,8.15,8.17,8.23,128.75,129.04,129.25,129.46,129.66,129.86,130.09,130.31,130.86,23.71,23.400000000000002,23.240000000000002,23.04,22.86,22.67,22.48,22.3,21.93,N/A,N/A -2012,4,29,19,30,101650,100480,99350,92.10000000000001,0,7.25,7.930000000000001,8.08,8.17,8.22,8.26,8.290000000000001,8.32,8.370000000000001,125.47,125.86,126.10000000000001,126.39,126.68,126.98,127.35000000000001,127.71000000000001,128.71,23.740000000000002,23.44,23.27,23.080000000000002,22.900000000000002,22.71,22.52,22.34,21.97,N/A,N/A -2012,4,29,20,30,101620,100460,99330,93.17,0,7.45,8.16,8.33,8.43,8.49,8.53,8.56,8.58,8.620000000000001,122.45,122.63,122.78,122.95,123.12,123.29,123.5,123.7,124.23,23.73,23.43,23.26,23.07,22.88,22.7,22.51,22.330000000000002,21.95,N/A,N/A -2012,4,29,21,30,101600,100440,99310,94.17,0,7.44,8.17,8.35,8.45,8.53,8.59,8.64,8.69,8.81,118.32000000000001,118.62,118.83,119.06,119.31,119.56,119.88,120.2,121.18,23.71,23.42,23.26,23.06,22.88,22.69,22.51,22.330000000000002,21.96,N/A,N/A -2012,4,29,22,30,101580,100420,99290,95.59,0,7.38,8.1,8.28,8.4,8.5,8.59,8.72,8.85,9.540000000000001,116.35000000000001,116.72,116.97,117.31,117.71000000000001,118.16,118.85000000000001,119.57000000000001,122.95,23.68,23.39,23.23,23.04,22.86,22.68,22.490000000000002,22.32,22,N/A,N/A -2012,4,29,23,30,101560,100390,99270,96.11,0,6.86,7.67,8,8.41,8.64,8.72,8.91,9.120000000000001,9.5,118.99000000000001,119.82000000000001,120.55,121.77,122.52,122.93,124.08,125.43,127.99000000000001,23.7,23.43,23.28,23.11,22.94,22.76,22.59,22.44,22.11,N/A,N/A -2012,4,30,0,30,101550,100380,99260,95.95,0,7.11,8.03,8.32,8.57,8.77,8.94,9.1,9.24,9.48,121.83,122.03,122.23,122.49000000000001,122.79,123.11,123.56,124.01,125.45,23.81,23.56,23.42,23.25,23.080000000000002,22.92,22.76,22.61,22.3,N/A,N/A -2012,4,30,1,30,101550,100380,99250,94.33,0,8.13,9.15,9.48,9.77,10,10.21,10.41,10.59,10.950000000000001,132.32,132.74,133.05,133.43,133.78,134.11,134.47,134.8,135.58,23.85,23.61,23.46,23.29,23.12,22.95,22.78,22.62,22.29,N/A,N/A -2012,4,30,2,30,101570,100400,99270,95.32000000000001,0,7.38,8.33,8.66,8.94,9.19,9.42,9.64,9.86,10.3,130.77,131.27,131.59,131.94,132.29,132.65,133.07,133.48,134.47,23.79,23.53,23.38,23.2,23.03,22.85,22.68,22.51,22.17,N/A,N/A -2012,4,30,3,30,101590,100420,99290,94.16,0,7.67,8.99,9.52,9.98,10.36,10.69,10.98,11.24,11.66,137.99,139.56,140.39000000000001,141.11,141.72,142.27,142.73,143.13,143.65,23.830000000000002,23.57,23.44,23.29,23.13,22.98,22.81,22.650000000000002,22.31,N/A,N/A -2012,4,30,4,30,101570,100410,99280,94.42,0,7.3,8.52,8.950000000000001,9.15,9.38,9.66,9.9,10.120000000000001,10.52,144.1,144.86,145.41,145.99,146.37,146.62,146.79,146.93,146.92000000000002,23.82,23.55,23.400000000000002,23.2,23.03,22.86,22.69,22.53,22.22,N/A,N/A -2012,4,30,5,30,101580,100410,99280,94.29,0,6.96,7.98,8.36,8.700000000000001,8.99,9.25,9.49,9.71,10.11,142.49,142.99,143.32,143.67000000000002,143.97,144.24,144.5,144.74,145.13,23.79,23.54,23.400000000000002,23.23,23.07,22.91,22.73,22.57,22.22,N/A,N/A -2012,4,30,6,30,101590,100420,99300,93.41,0,7.61,8.56,8.88,9.15,9.38,9.57,9.76,9.93,10.28,144.81,145.07,145.27,145.47,145.66,145.84,146.04,146.23,146.70000000000002,23.81,23.56,23.400000000000002,23.22,23.04,22.86,22.68,22.51,22.150000000000002,N/A,N/A -2012,4,30,7,30,101610,100440,99310,91.43,0,7.65,8.66,9.01,9.28,9.49,9.66,9.8,9.92,10.14,159.42000000000002,159.47,159.47,159.47,159.47,159.46,159.44,159.43,159.34,23.86,23.62,23.48,23.31,23.150000000000002,22.98,22.82,22.66,22.34,N/A,N/A -2012,4,30,8,30,101590,100420,99290,92.79,0,7.1000000000000005,8.07,8.43,8.75,8.98,9.16,9.38,9.59,9.88,161.89000000000001,162.21,162.45000000000002,162.81,162.97,162.98,162.95000000000002,162.89000000000001,162.05,23.740000000000002,23.490000000000002,23.34,23.16,22.990000000000002,22.830000000000002,22.67,22.53,22.22,N/A,N/A -2012,4,30,9,30,101590,100420,99290,94.62,0,6.46,7.07,7.25,7.43,7.58,7.73,7.86,7.99,8.26,152.51,152.9,153.21,153.75,154.29,154.86,155.79,156.78,159.88,23.59,23.31,23.16,22.98,22.8,22.63,22.47,22.31,22.06,N/A,N/A -2012,4,30,10,30,101600,100430,99300,93.58,0,6.5,7.22,7.46,7.68,7.91,8.13,8.33,8.51,8.8,145.88,146.23,146.51,146.9,147.33,147.82,148.28,148.70000000000002,149.95000000000002,23.7,23.43,23.27,23.09,22.92,22.75,22.57,22.400000000000002,22.07,N/A,N/A -2012,4,30,11,30,101640,100470,99340,94.11,0,6.2700000000000005,7.03,7.28,7.5,7.69,7.87,8.07,8.25,8.700000000000001,145.20000000000002,145.25,145.4,145.64000000000001,145.96,146.33,146.82,147.31,148.61,23.64,23.37,23.21,23.02,22.84,22.66,22.47,22.3,21.93,N/A,N/A -2012,4,30,12,30,101650,100490,99360,90.08,0,7.5,8.66,9.05,9.22,9.450000000000001,9.700000000000001,9.76,9.76,9.69,150.33,152.3,153.41,154.34,155.84,157.76,159.04,160.03,160.1,23.8,23.61,23.5,23.38,23.31,23.27,23.150000000000002,23.02,22.67,N/A,N/A -2012,4,30,13,30,101710,100540,99410,93.60000000000001,0,6.59,7.15,7.29,7.38,7.46,7.54,7.67,7.79,8.13,144.1,144.23,144.39000000000001,144.61,144.88,145.18,145.70000000000002,146.24,148.63,23.38,23.080000000000002,22.92,22.73,22.55,22.38,22.21,22.05,21.76,N/A,N/A -2012,4,30,14,30,101760,100590,99460,93.53,0,6.03,6.5600000000000005,6.69,6.76,6.82,6.87,6.93,6.99,7.34,149.11,149.47,149.69,149.89000000000001,150.08,150.26,150.53,150.8,152.01,23.51,23.21,23.05,22.86,22.68,22.5,22.31,22.14,21.81,N/A,N/A -2012,4,30,15,30,101800,100630,99500,93.76,0,5.28,5.71,5.83,5.9,5.97,6.04,6.16,6.3,6.890000000000001,150.74,150.93,150.91,150.87,150.81,150.74,150.67000000000002,150.61,150.59,23.57,23.27,23.1,22.91,22.73,22.55,22.37,22.21,21.95,N/A,N/A -2012,4,30,16,30,101860,100690,99550,92.35000000000001,0,5.62,6.04,6.12,6.15,6.16,6.17,6.18,6.19,6.3100000000000005,131.58,132.16,132.59,133.1,133.66,134.28,135.11,135.94,139.14000000000001,23.67,23.36,23.19,23,22.82,22.64,22.45,22.28,21.94,N/A,N/A -2012,4,30,17,30,101840,100670,99540,91.4,0,5.26,5.66,5.74,5.78,5.8,5.8100000000000005,5.82,5.82,5.84,138.17000000000002,138.70000000000002,139.08,139.51,139.96,140.43,141.03,141.62,143.47,23.79,23.48,23.31,23.12,22.93,22.75,22.56,22.38,22.03,N/A,N/A -2012,4,30,18,30,101820,100650,99520,91.02,0,4.47,4.7700000000000005,4.83,4.86,4.87,4.88,4.89,4.89,4.91,123.29,123.81,124.17,124.57000000000001,124.97,125.37,125.86,126.32000000000001,127.58,23.77,23.45,23.27,23.080000000000002,22.89,22.71,22.52,22.34,21.97,N/A,N/A -2012,4,30,19,30,101780,100610,99480,91.62,0,6.390000000000001,6.91,7.0200000000000005,7.07,7.09,7.1000000000000005,7.1000000000000005,7.09,7.07,123.62,123.95,124.15,124.38000000000001,124.61,124.83,125.09,125.35000000000001,126.04,23.740000000000002,23.41,23.240000000000002,23.04,22.85,22.66,22.47,22.29,21.91,N/A,N/A -2012,4,30,20,30,101710,100540,99410,88.68,0,7.24,7.890000000000001,8.040000000000001,8.11,8.15,8.19,8.21,8.23,8.290000000000001,130.14000000000001,130.37,130.49,130.65,130.81,130.99,131.21,131.43,132.09,23.79,23.5,23.34,23.150000000000002,22.97,22.79,22.6,22.43,22.080000000000002,N/A,N/A -2012,4,30,21,30,101660,100490,99350,90.21000000000001,0,7.62,8.33,8.47,8.55,8.58,8.59,8.58,8.57,8.51,128.45,128.78,128.99,129.2,129.41,129.6,129.82,130.03,130.52,23.62,23.32,23.16,22.97,22.78,22.59,22.400000000000002,22.22,21.84,N/A,N/A -2012,4,30,22,30,101620,100450,99320,91.02,0,6.55,7.16,7.3100000000000005,7.390000000000001,7.45,7.48,7.5,7.51,7.53,131.58,131.7,131.78,131.87,131.98,132.1,132.25,132.39000000000001,132.76,23.54,23.240000000000002,23.080000000000002,22.89,22.7,22.51,22.32,22.14,21.76,N/A,N/A -2012,4,30,23,30,101580,100420,99280,90.87,0,5.79,6.32,6.44,6.51,6.5600000000000005,6.59,6.63,6.65,6.74,133.34,133.54,133.65,133.8,133.95,134.13,134.34,134.57,135.28,23.5,23.21,23.05,22.86,22.67,22.490000000000002,22.3,22.12,21.75,N/A,N/A -2012,5,1,0,30,101530,100370,99240,91.94,0,5.66,6.140000000000001,6.25,6.3100000000000005,6.3500000000000005,6.38,6.41,6.44,6.62,140.88,140.91,140.99,141.11,141.23,141.38,141.58,141.79,142.64000000000001,23.45,23.150000000000002,22.990000000000002,22.8,22.61,22.43,22.240000000000002,22.06,21.72,N/A,N/A -2012,5,1,1,30,101500,100330,99200,92.59,0,5.69,6.19,6.3100000000000005,6.41,6.53,6.66,6.94,7.26,7.99,136.8,137.01,137.1,137.22,137.35,137.52,137.72,137.92000000000002,138.82,23.46,23.17,23.01,22.830000000000002,22.66,22.5,22.35,22.22,21.990000000000002,N/A,N/A -2012,5,1,2,30,101530,100360,99230,94.15,0,7.0200000000000005,7.68,7.84,7.95,8.03,8.1,8.17,8.24,8.45,140.79,141.04,141.12,141.23,141.34,141.48,141.66,141.86,142.52,23.41,23.11,22.95,22.76,22.57,22.39,22.2,22.03,21.67,N/A,N/A -2012,5,1,3,30,101540,100380,99240,93.01,0,6.72,7.32,7.47,7.5600000000000005,7.63,7.69,7.75,7.82,8.09,150.86,151.04,151.11,151.18,151.24,151.3,151.39000000000001,151.47,151.79,23.37,23.07,22.900000000000002,22.71,22.52,22.34,22.150000000000002,21.97,21.61,N/A,N/A -2012,5,1,4,30,101510,100350,99210,94.45,0,7.65,8.370000000000001,8.540000000000001,8.64,8.71,8.77,8.85,8.92,9.290000000000001,147.82,147.83,147.87,147.91,147.94,147.98,148.05,148.11,148.4,23.34,23.03,22.86,22.67,22.48,22.29,22.1,21.92,21.61,N/A,N/A -2012,5,1,5,30,101490,100330,99200,93.57000000000001,0,8.14,8.9,9.06,9.16,9.22,9.27,9.36,9.43,9.8,147.64000000000001,147.88,148.01,148.17000000000002,148.34,148.52,148.75,148.96,149.64000000000001,23.36,23.06,22.89,22.7,22.53,22.35,22.17,22,21.7,N/A,N/A -2012,5,1,6,30,101540,100380,99240,93.72,0,7.33,7.99,8.15,8.23,8.3,8.35,8.4,8.45,8.63,151.54,151.57,151.64000000000001,151.72,151.81,151.9,152.02,152.13,152.46,23.35,23.04,22.87,22.67,22.490000000000002,22.31,22.12,21.94,21.580000000000002,N/A,N/A -2012,5,1,7,30,101590,100420,99290,95.14,0,7.18,7.7700000000000005,7.930000000000001,8,8.05,8.09,8.120000000000001,8.15,8.22,156.73,157.11,157.28,157.48,157.68,157.9,158.15,158.41,159.11,23.29,22.96,22.79,22.59,22.400000000000002,22.22,22.02,21.84,21.52,N/A,N/A -2012,5,1,8,30,101570,100400,99270,94.31,0,5.74,6.18,6.28,6.34,6.390000000000001,6.44,6.55,6.68,7.3,167.23,166.56,166.18,165.73,165.20000000000002,164.61,163.63,162.61,161.02,23.09,22.77,22.6,22.41,22.240000000000002,22.06,21.89,21.740000000000002,21.51,N/A,N/A -2012,5,1,9,30,101560,100390,99260,93.76,0,5.16,5.53,5.6000000000000005,5.64,5.67,5.68,5.71,5.74,6.04,160.91,161.17000000000002,161.3,161.43,161.55,161.65,161.74,161.82,161.70000000000002,23.27,22.96,22.79,22.6,22.41,22.23,22.04,21.87,21.56,N/A,N/A -2012,5,1,10,30,101560,100390,99250,94.42,0,4.6000000000000005,4.94,5.0200000000000005,5.08,5.13,5.18,5.26,5.33,6.2,155.96,155.68,155.5,155.32,155.13,154.94,154.75,154.56,154.6,22.990000000000002,22.650000000000002,22.47,22.28,22.09,21.89,21.7,21.52,21.31,N/A,N/A -2012,5,1,11,30,101570,100400,99270,94.66,0,4.96,5.3100000000000005,5.39,5.43,5.46,5.47,5.5,5.5200000000000005,5.64,160.74,159.72,159.09,158.4,157.69,156.97,156.14000000000001,155.33,153.17000000000002,22.95,22.6,22.42,22.21,22.02,21.82,21.62,21.43,21.13,N/A,N/A -2012,5,1,12,30,101550,100380,99250,94.37,0,4.9,5.17,5.21,5.21,5.22,5.24,5.29,5.34,5.46,132.41,132.13,132.12,132.22,132.57,133.06,134.1,135.2,137.12,22.97,22.650000000000002,22.48,22.31,22.150000000000002,22,21.89,21.79,21.61,N/A,N/A -2012,5,1,13,30,101580,100410,99270,91.61,0,4.89,5.2,5.26,5.3,5.37,5.47,5.71,5.97,6.140000000000001,122.67,123.74000000000001,124.60000000000001,125.75,127.46000000000001,129.57,133.1,136.84,142.1,22.97,22.650000000000002,22.48,22.3,22.13,21.990000000000002,21.87,21.79,21.63,N/A,N/A -2012,5,1,14,30,101580,100410,99270,91.67,0,6.13,6.6000000000000005,6.67,6.69,6.7,6.71,6.73,6.75,6.890000000000001,121.41,122.05,122.49000000000001,123.03,123.66,124.32000000000001,125.44,126.61,130.67000000000002,23.2,22.87,22.7,22.5,22.32,22.14,21.96,21.8,21.52,N/A,N/A -2012,5,1,15,30,101560,100390,99260,91.8,0,6.82,7.41,7.55,7.62,7.66,7.68,7.69,7.7,7.7,127.68,127.8,127.82000000000001,127.87,127.92,127.98,128.06,128.14000000000001,128.44,23.400000000000002,23.080000000000002,22.91,22.72,22.53,22.34,22.16,21.98,21.62,N/A,N/A -2012,5,1,16,30,101560,100390,99260,90.87,0,6.75,7.3100000000000005,7.44,7.5,7.54,7.5600000000000005,7.5600000000000005,7.57,7.55,124.19,124.38000000000001,124.5,124.60000000000001,124.71000000000001,124.82000000000001,124.94,125.07000000000001,125.39,23.44,23.11,22.93,22.740000000000002,22.55,22.36,22.17,21.990000000000002,21.61,N/A,N/A -2012,5,1,17,30,101570,100400,99270,90.28,0,5.7,6.18,6.28,6.34,6.38,6.4,6.41,6.42,6.42,126.21000000000001,126.17,126.22,126.26,126.29,126.33,126.38000000000001,126.42,126.54,23.52,23.2,23.02,22.830000000000002,22.64,22.45,22.26,22.07,21.69,N/A,N/A -2012,5,1,18,30,101550,100380,99250,89.19,0,5.49,5.9,5.99,6.03,6.0600000000000005,6.07,6.08,6.09,6.09,124.63000000000001,124.8,124.9,125.02,125.14,125.25,125.39,125.52,125.87,23.580000000000002,23.25,23.080000000000002,22.89,22.7,22.51,22.32,22.13,21.75,N/A,N/A -2012,5,1,19,30,101520,100350,99220,87.23,0,5.95,6.41,6.51,6.5600000000000005,6.58,6.59,6.59,6.59,6.57,122.62,122.78,122.88,122.98,123.08,123.18,123.29,123.39,123.64,23.67,23.34,23.17,22.97,22.78,22.6,22.400000000000002,22.22,21.84,N/A,N/A -2012,5,1,20,30,101480,100320,99190,86.19,0,6.37,6.890000000000001,7,7.05,7.08,7.1000000000000005,7.1000000000000005,7.1000000000000005,7.09,118.44,118.54,118.63,118.71000000000001,118.78,118.86,118.93,119.01,119.16,23.650000000000002,23.330000000000002,23.16,22.97,22.78,22.59,22.400000000000002,22.21,21.830000000000002,N/A,N/A -2012,5,1,21,30,101420,100250,99120,85.9,0,6.42,6.95,7.0600000000000005,7.12,7.16,7.17,7.19,7.2,7.2,124.26,124.23,124.26,124.31,124.37,124.43,124.51,124.58,124.75,23.56,23.25,23.09,22.89,22.7,22.52,22.32,22.14,21.76,N/A,N/A -2012,5,1,22,30,101390,100220,99090,86.32000000000001,0,6.12,6.66,6.78,6.84,6.88,6.9,6.91,6.92,6.91,118.24000000000001,118.43,118.54,118.64,118.73,118.8,118.87,118.94,119.08,23.53,23.22,23.05,22.85,22.66,22.47,22.27,22.09,21.71,N/A,N/A -2012,5,1,23,30,101350,100190,99060,87.53,0,6.21,6.7,6.8,6.84,6.86,6.87,6.87,6.87,6.84,120.92,120.97,120.99000000000001,121.02,121.07000000000001,121.11,121.17,121.23,121.41,23.41,23.09,22.93,22.73,22.54,22.36,22.16,21.98,21.61,N/A,N/A -2012,5,2,0,30,101360,100190,99060,87.81,0,5.4,5.94,6.09,6.18,6.25,6.3100000000000005,6.3500000000000005,6.38,6.44,120.17,120.39,120.46000000000001,120.55,120.62,120.69,120.75,120.82000000000001,120.95,23.41,23.1,22.93,22.73,22.54,22.35,22.150000000000002,21.97,21.580000000000002,N/A,N/A -2012,5,2,1,30,101310,100140,99010,88.42,0,6.55,7.15,7.3,7.390000000000001,7.46,7.51,7.55,7.59,7.67,124.48,124.92,125.19,125.47,125.72,125.97,126.23,126.47,127.01,23.38,23.07,22.91,22.71,22.53,22.34,22.150000000000002,21.97,21.6,N/A,N/A -2012,5,2,2,30,101290,100120,99000,90.71000000000001,0,7.04,7.67,7.83,7.91,7.96,7.99,8.01,8.02,8.040000000000001,130.45,130.79,130.88,130.94,130.99,131.04,131.07,131.1,131.15,23.31,22.990000000000002,22.81,22.61,22.42,22.23,22.03,21.85,21.46,N/A,N/A -2012,5,2,3,30,101310,100140,99010,92.45,0,6.9,7.53,7.67,7.75,7.8,7.82,7.84,7.8500000000000005,7.83,129.08,129.02,128.99,128.95,128.92000000000002,128.88,128.86,128.83,128.79,23.31,22.98,22.81,22.62,22.42,22.23,22.03,21.84,21.45,N/A,N/A -2012,5,2,4,30,101290,100120,99000,93.3,0,6.16,6.6000000000000005,6.68,6.7,6.71,6.73,6.79,6.87,7.28,135.41,135.34,135.27,135.21,135.16,135.11,135.21,135.36,137.91,23.29,22.98,22.81,22.62,22.44,22.26,22.11,21.96,21.85,N/A,N/A -2012,5,2,5,30,101280,100110,98980,93.88,0,6.3,6.8500000000000005,6.99,7.08,7.140000000000001,7.19,7.24,7.29,7.43,145.51,144.79,144.28,143.73,143.20000000000002,142.68,142.09,141.52,140.12,23.150000000000002,22.82,22.650000000000002,22.44,22.25,22.06,21.86,21.67,21.27,N/A,N/A -2012,5,2,6,30,101270,100100,98970,94.62,0,5.88,6.36,6.48,6.55,6.6000000000000005,6.640000000000001,6.68,6.72,6.96,155.88,155.71,155.51,155.24,154.94,154.63,154.17000000000002,153.71,151.83,23.150000000000002,22.830000000000002,22.66,22.46,22.27,22.09,21.900000000000002,21.72,21.42,N/A,N/A -2012,5,2,7,30,101280,100110,98990,94.83,0,5.01,5.47,5.58,5.65,5.69,5.72,5.78,5.86,6.16,146.52,146.9,147.11,147.34,147.55,147.72,148.13,148.59,150.78,23.48,23.18,23.02,22.82,22.63,22.43,22.23,22.05,21.79,N/A,N/A -2012,5,2,8,30,101240,100080,98950,92.25,0,4.68,5.12,5.3,5.61,5.88,6.140000000000001,6.38,6.6000000000000005,6.99,136.2,136.69,137.48,138.95000000000002,140.39000000000001,141.84,143.1,144.23,145.42000000000002,23.55,23.29,23.16,23.02,22.91,22.84,22.78,22.72,22.56,N/A,N/A -2012,5,2,9,30,101250,100080,98960,96.76,0,5.03,5.37,5.43,5.45,5.48,5.51,5.64,5.8,6.55,130.53,131.07,131.44,131.97,132.72,133.66,136.03,138.72,148.44,23.25,22.93,22.75,22.55,22.38,22.23,22.04,21.86,21.97,N/A,N/A -2012,5,2,10,30,101270,100100,98980,96.89,0,4.65,4.92,4.96,4.97,5.07,5.21,5.4,5.58,5.76,138.82,139.12,139.43,139.86,141.15,143.06,145.84,148.71,151.54,23.23,22.92,22.76,22.56,22.41,22.29,22.14,22.01,21.77,N/A,N/A -2012,5,2,11,30,101270,100100,98970,97.15,0,5.51,5.82,5.87,5.89,5.8,5.63,5.47,5.32,5.0200000000000005,138.82,139.01,139.28,139.83,140.13,140.28,140.72,141.19,143.32,22.57,22.52,22.59,22.75,22.69,22.5,22.32,22.17,21.91,N/A,N/A -2012,5,2,12,30,101290,100130,99000,95.04,0,4.34,4.58,4.61,4.61,4.61,4.63,4.68,4.72,4.82,134.72,135.01,135.27,135.63,136.07,136.58,137.44,138.36,141.73,23.22,22.92,22.77,22.59,22.43,22.28,22.13,22,21.75,N/A,N/A -2012,5,2,13,30,101310,100140,99020,91.95,0,4.51,4.8100000000000005,4.8500000000000005,4.86,4.8500000000000005,4.84,4.82,4.8100000000000005,4.69,125.94,126.19,126.37,126.62,126.96000000000001,127.37,128.41,129.53,136.42000000000002,23.34,23.03,22.87,22.68,22.490000000000002,22.31,22.13,21.97,21.72,N/A,N/A -2012,5,2,14,30,101350,100190,99060,93.56,0,4.0600000000000005,4.3,4.33,4.34,4.34,4.34,4.38,4.42,4.7,132.17000000000002,132.3,132.43,132.61,132.88,133.23,134.26,135.43,143.14000000000001,23.32,23.01,22.84,22.650000000000002,22.47,22.29,22.12,21.96,21.8,N/A,N/A -2012,5,2,15,30,101380,100210,99080,92.95,0,3.5500000000000003,3.74,3.77,3.77,3.7600000000000002,3.74,3.73,3.71,3.65,129.65,129.86,130,130.17000000000002,130.37,130.61,131.04,131.49,135.13,23.45,23.13,22.96,22.77,22.580000000000002,22.39,22.2,22.03,21.69,N/A,N/A -2012,5,2,16,30,101400,100230,99100,93.58,0,3.75,3.96,3.99,4,4,3.99,3.98,3.96,3.93,143.14000000000001,143.39000000000001,143.49,143.63,143.79,143.96,144.23,144.5,145.75,23.53,23.2,23.02,22.830000000000002,22.64,22.45,22.26,22.080000000000002,21.72,N/A,N/A -2012,5,2,17,30,101380,100210,99080,93.62,0,3.56,3.75,3.7800000000000002,3.79,3.7800000000000002,3.7800000000000002,3.7600000000000002,3.75,3.71,146.01,146.4,146.64000000000001,146.9,147.16,147.42000000000002,147.75,148.08,149.12,23.66,23.31,23.14,22.94,22.75,22.57,22.37,22.19,21.85,N/A,N/A -2012,5,2,18,30,101370,100210,99080,92.55,0,4.0600000000000005,4.2700000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.2700000000000005,4.25,4.17,155.57,155.9,156.03,156.20000000000002,156.39000000000001,156.59,156.86,157.14000000000001,158.15,23.81,23.47,23.29,23.1,22.91,22.73,22.53,22.36,21.990000000000002,N/A,N/A -2012,5,2,19,30,101350,100190,99060,92.65,0,3.7,3.85,3.86,3.83,3.8000000000000003,3.7600000000000002,3.71,3.66,3.43,162.31,162.75,162.99,163.28,163.59,163.92000000000002,164.44,164.97,167.63,23.89,23.55,23.38,23.18,23,22.81,22.63,22.46,22.19,N/A,N/A -2012,5,2,20,30,101300,100140,99010,91.10000000000001,0,4.92,5.22,5.26,5.2700000000000005,5.26,5.25,5.22,5.2,5.12,169.83,170.03,170.17000000000002,170.32,170.46,170.62,170.83,171.04,171.77,24.05,23.72,23.54,23.34,23.16,22.97,22.78,22.6,22.240000000000002,N/A,N/A -2012,5,2,21,30,101270,100110,98980,91.44,0,4.97,5.3,5.3500000000000005,5.36,5.36,5.34,5.33,5.3100000000000005,5.29,175.79,175.88,175.96,176.05,176.15,176.28,176.46,176.67000000000002,177.97,24.09,23.78,23.61,23.42,23.23,23.05,22.86,22.69,22.400000000000002,N/A,N/A -2012,5,2,22,30,101240,100080,98950,91.52,0,5.3500000000000005,5.7700000000000005,5.84,5.86,5.86,5.84,5.8100000000000005,5.79,5.71,177.81,177.84,177.79,177.75,177.70000000000002,177.67000000000002,177.62,177.57,177.39000000000001,24.1,23.82,23.66,23.46,23.27,23.09,22.900000000000002,22.71,22.35,N/A,N/A -2012,5,2,23,30,101240,100080,98950,92.45,0,4.74,5.15,5.26,5.34,5.39,5.4,5.41,5.42,5.32,182.29,182.17000000000002,182.08,181.88,181.65,181.36,180.34,179.12,176.67000000000002,23.97,23.71,23.56,23.39,23.21,23.03,22.89,22.77,22.7,N/A,N/A -2012,5,3,0,30,101230,100070,98950,92.93,0,5.4,6,6.18,6.32,6.44,6.54,6.63,6.7,6.83,176.32,176.33,176.24,176.15,176.06,175.97,175.89000000000001,175.82,175.56,23.830000000000002,23.580000000000002,23.43,23.25,23.080000000000002,22.91,22.73,22.56,22.26,N/A,N/A -2012,5,3,1,30,101210,100050,98930,94.74,0,5.24,5.88,6.1000000000000005,6.26,6.38,6.48,6.55,6.61,6.65,186.22,186.25,186.08,185.70000000000002,185.19,184.56,183.78,182.99,180.01,23.68,23.44,23.29,23.11,22.93,22.75,22.56,22.39,22.16,N/A,N/A -2012,5,3,2,30,101260,100100,98970,94.03,0,5.29,6.1000000000000005,6.43,6.68,6.890000000000001,7.07,7.24,7.390000000000001,7.43,181.63,181.55,181.54,181.51,181.49,181.51,181.6,181.73,182.18,23.64,23.45,23.330000000000002,23.17,23.01,22.86,22.71,22.59,22.59,N/A,N/A -2012,5,3,3,30,101320,100160,99030,94.23,0,4.59,5.36,5.7,6,6.26,6.51,6.74,6.95,7.29,176.92000000000002,177.32,177.59,177.76,177.89000000000001,177.99,178.18,178.39000000000001,179.37,23.64,23.47,23.37,23.23,23.1,22.97,22.87,22.78,22.69,N/A,N/A -2012,5,3,4,30,101280,100110,98990,95.88,0,4.83,5.6000000000000005,5.93,6.22,6.47,6.68,6.9,7.1000000000000005,7.46,187.81,187.87,187.82,187.65,187.47,187.31,187.22,187.16,187.23,23.55,23.34,23.22,23.07,22.92,22.78,22.66,22.56,22.59,N/A,N/A -2012,5,3,5,30,101300,100140,99010,94.96000000000001,0,4.8,5.51,5.78,6,6.24,6.5,6.74,6.95,7.36,183.1,183.61,183.94,184.37,184.76,185.14000000000001,185.38,185.56,185.71,23.54,23.3,23.16,23.01,22.87,22.76,22.64,22.53,22.38,N/A,N/A -2012,5,3,6,30,101290,100130,99000,95.24,0,4.93,5.28,5.37,5.46,5.71,6.09,6.46,6.82,7.26,188.55,188.87,189.1,189.46,190.29,191.51,193.12,194.8,196.05,23.61,23.3,23.14,22.96,22.81,22.68,22.64,22.62,22.7,N/A,N/A -2012,5,3,7,30,101330,100170,99040,93.91,0,4.3500000000000005,4.63,4.68,4.69,4.7,4.71,4.73,4.7700000000000005,5.33,193.66,193.73000000000002,193.78,193.86,193.98000000000002,194.13,194.43,194.73000000000002,198.01,23.67,23.35,23.18,22.990000000000002,22.81,22.62,22.44,22.28,22.1,N/A,N/A -2012,5,3,8,30,101310,100140,99010,94.14,0,5.42,5.8100000000000005,5.88,5.9,5.91,5.91,5.89,5.88,5.9,200.53,200.51,200.48000000000002,200.45000000000002,200.4,200.35,200.28,200.20000000000002,199.9,23.59,23.26,23.09,22.900000000000002,22.71,22.52,22.330000000000002,22.150000000000002,21.8,N/A,N/A -2012,5,3,9,30,101330,100160,99030,93.82000000000001,0,4.96,5.3100000000000005,5.37,5.4,5.41,5.41,5.42,5.42,5.44,201.92000000000002,201.99,201.99,201.99,202,202,202.02,202.03,202.1,23.55,23.22,23.05,22.85,22.66,22.48,22.28,22.09,21.73,N/A,N/A -2012,5,3,10,30,101350,100180,99050,95.2,0,4.72,5.07,5.17,5.22,5.26,5.3,5.33,5.36,5.43,194.17000000000002,194.47,194.71,194.95000000000002,195.19,195.44,195.70000000000002,195.96,196.58,23.41,23.06,22.87,22.66,22.46,22.26,22.1,21.96,21.7,N/A,N/A -2012,5,3,11,30,101420,100250,99120,93.21000000000001,0,2.75,2.94,3,3.04,3.09,3.13,3.2,3.27,3.62,193.24,191.48000000000002,190.48,189.51,188.61,187.75,186.93,186.17000000000002,184.53,23.46,23.14,22.98,22.78,22.6,22.42,22.23,22.06,21.740000000000002,N/A,N/A -2012,5,3,12,30,101420,100260,99130,88.87,0,2.35,2.5100000000000002,2.5500000000000003,2.58,2.6,2.62,2.64,2.66,2.7600000000000002,188.62,188.35,188.09,187.81,187.51,187.20000000000002,186.81,186.43,185.14000000000001,23.79,23.490000000000002,23.32,23.13,22.95,22.76,22.57,22.39,22.03,N/A,N/A -2012,5,3,13,30,101450,100280,99150,92.88,0,5.16,5.51,5.57,5.57,5.5600000000000005,5.54,5.51,5.48,5.41,181.21,181.20000000000002,181.15,181.09,181.04,181.01,180.99,180.99,181.15,23.580000000000002,23.25,23.080000000000002,22.88,22.69,22.5,22.3,22.12,21.75,N/A,N/A -2012,5,3,14,30,101520,100350,99220,89.96000000000001,0,3.2800000000000002,3.47,3.52,3.54,3.56,3.58,3.61,3.63,3.83,196.28,196.15,196.27,196.38,196.5,196.61,196.76,196.91,197.72,23.6,23.28,23.11,22.91,22.73,22.54,22.35,22.17,21.81,N/A,N/A -2012,5,3,15,30,101550,100390,99260,90.2,0,2.86,2.99,3.02,3.0300000000000002,3.04,3.04,3.04,3.0500000000000003,3.06,160.48,161.26,161.78,162.31,162.83,163.36,163.95000000000002,164.52,165.99,23.68,23.35,23.18,22.98,22.79,22.6,22.41,22.22,21.84,N/A,N/A -2012,5,3,16,30,101570,100400,99270,91.34,0,3.58,3.7800000000000002,3.8200000000000003,3.84,3.85,3.85,3.86,3.86,3.86,164.8,165.01,165.23,165.44,165.66,165.89000000000001,166.15,166.42000000000002,167.13,23.740000000000002,23.39,23.22,23.02,22.830000000000002,22.64,22.44,22.26,21.88,N/A,N/A -2012,5,3,17,30,101560,100400,99270,90.7,0,3.08,3.24,3.27,3.2800000000000002,3.3000000000000003,3.3000000000000003,3.31,3.31,3.33,156.18,156.70000000000002,157.03,157.35,157.66,157.98,158.35,158.70000000000002,159.63,23.85,23.5,23.330000000000002,23.13,22.94,22.75,22.56,22.37,22,N/A,N/A -2012,5,3,18,30,101580,100420,99290,90.95,0,3.56,3.7800000000000002,3.83,3.87,3.89,3.92,3.93,3.95,3.99,144.06,144.34,144.52,144.69,144.85,145.01,145.20000000000002,145.38,145.91,24.04,23.7,23.52,23.32,23.13,22.95,22.76,22.57,22.2,N/A,N/A -2012,5,3,19,30,101580,100420,99290,87.78,0,4.28,4.49,4.51,4.5,4.48,4.45,4.42,4.39,4.33,157.17000000000002,157.1,157.05,157.02,156.98,156.96,156.96,156.95000000000002,157.02,24.34,24,23.830000000000002,23.63,23.45,23.27,23.07,22.900000000000002,22.53,N/A,N/A -2012,5,3,20,30,101540,100370,99250,88.99,0,4.79,5.11,5.17,5.2,5.21,5.22,5.22,5.21,5.19,146.22,146.35,146.46,146.57,146.67000000000002,146.77,146.88,146.99,147.25,24.21,23.87,23.7,23.5,23.31,23.12,22.92,22.740000000000002,22.36,N/A,N/A -2012,5,3,21,30,101520,100350,99230,86.87,0,4.58,4.89,4.94,4.96,4.97,4.97,4.96,4.95,4.93,146.12,146.13,146.11,146.07,146.03,146,145.97,145.94,145.9,24.43,24.11,23.94,23.740000000000002,23.56,23.37,23.17,22.990000000000002,22.62,N/A,N/A -2012,5,3,22,30,101500,100340,99210,87.76,0,4.97,5.39,5.47,5.51,5.5200000000000005,5.53,5.53,5.5200000000000005,5.5,136.66,137.09,137.34,137.58,137.8,138.01,138.23,138.45000000000002,138.99,24.39,24.09,23.92,23.72,23.53,23.35,23.150000000000002,22.97,22.59,N/A,N/A -2012,5,3,23,30,101450,100290,99160,89.32000000000001,0,5.05,5.48,5.5600000000000005,5.6000000000000005,5.62,5.63,5.63,5.63,5.62,148.61,148.02,147.67000000000002,147.3,146.94,146.59,146.23,145.88,145.14000000000001,24.2,23.91,23.740000000000002,23.55,23.36,23.17,22.98,22.79,22.41,N/A,N/A -2012,5,4,0,30,101430,100270,99140,88.89,0,4.59,5.01,5.11,5.19,5.2700000000000005,5.34,5.45,5.5600000000000005,5.87,132.81,133.19,133.47,133.83,134.24,134.69,135.31,135.97,138.05,24.150000000000002,23.89,23.740000000000002,23.56,23.39,23.22,23.05,22.900000000000002,22.6,N/A,N/A -2012,5,4,1,30,101400,100230,99100,90.84,0,5.01,5.42,5.5,5.54,5.5600000000000005,5.58,5.59,5.6000000000000005,5.66,148.11,147.84,147.67000000000002,147.5,147.33,147.15,146.94,146.74,146.14000000000001,23.830000000000002,23.52,23.35,23.16,22.97,22.79,22.59,22.41,22.04,N/A,N/A -2012,5,4,2,30,101480,100320,99190,92.04,0,5.63,6.05,6.13,6.16,6.17,6.16,6.16,6.140000000000001,6.12,147.52,147.75,147.9,148.12,148.34,148.58,148.88,149.17000000000002,149.93,23.84,23.52,23.35,23.150000000000002,22.96,22.77,22.56,22.37,21.97,N/A,N/A -2012,5,4,3,30,101530,100370,99240,89.76,0,5.68,6.05,6.11,6.1000000000000005,6.09,6.0600000000000005,6.05,6.03,6.13,158.55,158.53,158.49,158.45000000000002,158.41,158.36,158.34,158.33,158.6,23.740000000000002,23.43,23.27,23.07,22.89,22.71,22.53,22.36,22.05,N/A,N/A -2012,5,4,4,30,101510,100350,99220,90.71000000000001,0,4.25,4.55,4.61,4.63,4.65,4.66,4.66,4.67,5.49,160.63,161.05,161.36,161.73,162.12,162.55,163.09,163.63,170.97,23.8,23.5,23.34,23.14,22.96,22.77,22.59,22.400000000000002,22.23,N/A,N/A -2012,5,4,5,30,101500,100330,99200,93.45,0,5.12,5.49,5.57,5.6000000000000005,5.63,5.66,5.7,5.76,6.24,163.32,163.6,163.77,163.98,164.23,164.5,164.95000000000002,165.42000000000002,168.29,23.650000000000002,23.330000000000002,23.16,22.98,22.79,22.61,22.43,22.26,21.97,N/A,N/A -2012,5,4,6,30,101510,100340,99210,94.61,0,5.16,5.5600000000000005,5.65,5.7,5.73,5.75,5.76,5.7700000000000005,5.82,170.17000000000002,170.19,170.22,170.26,170.32,170.38,170.45000000000002,170.52,170.8,23.67,23.330000000000002,23.150000000000002,22.95,22.76,22.57,22.37,22.19,21.93,N/A,N/A -2012,5,4,7,30,101580,100410,99280,94.39,0,3.92,4.16,4.22,4.28,4.33,4.4,4.5200000000000005,4.64,5.33,189.27,186.58,184.88,183.04,181.25,179.45000000000002,177.63,175.9,175.09,23.59,23.26,23.1,22.91,22.740000000000002,22.57,22.400000000000002,22.25,21.990000000000002,N/A,N/A -2012,5,4,8,30,101550,100380,99250,93.79,0,4.68,4.92,4.95,4.94,4.97,5.0200000000000005,5.22,5.46,5.84,171.5,172.89000000000001,173.85,175.19,176.91,178.91,181.52,184.22,187.70000000000002,23.66,23.34,23.17,22.990000000000002,22.84,22.69,22.6,22.54,22.45,N/A,N/A -2012,5,4,9,30,101550,100390,99260,93.2,0,3.98,4.25,4.33,4.39,4.47,4.57,4.8100000000000005,5.09,5.67,180.05,180.63,181.07,181.59,182.20000000000002,182.92000000000002,184.11,185.43,188.39000000000001,23.740000000000002,23.43,23.27,23.09,22.91,22.75,22.61,22.48,22.240000000000002,N/A,N/A -2012,5,4,10,30,101570,100400,99270,92.87,0,4.73,5.0600000000000005,5.14,5.17,5.19,5.2,5.21,5.21,5.22,178.92000000000002,179.12,179.3,179.52,179.73,179.95000000000002,180.18,180.41,180.98,23.85,23.54,23.37,23.17,22.990000000000002,22.8,22.62,22.44,22.07,N/A,N/A -2012,5,4,11,30,101550,100390,99260,91.34,0,3.87,4.1,4.13,4.14,4.14,4.15,4.19,4.24,4.88,169.71,170.33,170.78,171.35,172.11,173,174.75,176.65,186.26,23.8,23.48,23.31,23.12,22.95,22.77,22.6,22.45,22.32,N/A,N/A -2012,5,4,12,30,101580,100410,99280,91.86,0,3.87,4.12,4.18,4.22,4.24,4.25,4.2700000000000005,4.28,4.29,181.45000000000002,181.85,182.13,182.46,182.8,183.15,183.55,183.94,184.88,23.81,23.490000000000002,23.32,23.12,22.93,22.75,22.55,22.37,21.990000000000002,N/A,N/A -2012,5,4,13,30,101610,100450,99320,90.14,0,3.87,4.1,4.15,4.17,4.17,4.17,4.17,4.16,4.14,182.25,182.61,182.75,182.94,183.14000000000001,183.35,183.59,183.83,184.47,23.86,23.54,23.37,23.17,22.98,22.8,22.6,22.42,22.04,N/A,N/A -2012,5,4,14,30,101660,100490,99360,89.08,0,3.62,3.88,3.95,4,4.03,4.07,4.1,4.12,4.18,190.84,190.95000000000002,191,191.05,191.1,191.14000000000001,191.18,191.23000000000002,191.38,23.900000000000002,23.580000000000002,23.41,23.21,23.02,22.84,22.64,22.45,22.07,N/A,N/A -2012,5,4,15,30,101640,100470,99340,88.97,0,4.1,4.32,4.36,4.36,4.36,4.3500000000000005,4.34,4.33,4.3100000000000005,161.6,162.09,162.42000000000002,162.76,163.1,163.44,163.82,164.20000000000002,165.23,23.92,23.59,23.42,23.23,23.04,22.85,22.66,22.48,22.11,N/A,N/A -2012,5,4,16,30,101670,100500,99370,89.65,0,4.32,4.68,4.76,4.82,4.86,4.89,4.91,4.94,4.97,149.37,149.85,150.04,150.22,150.36,150.5,150.63,150.75,151.02,24.03,23.7,23.52,23.32,23.13,22.94,22.740000000000002,22.56,22.18,N/A,N/A -2012,5,4,17,30,101660,100490,99360,88.44,0,4.23,4.51,4.57,4.6000000000000005,4.63,4.64,4.66,4.67,4.71,163.70000000000002,163.78,163.89000000000001,163.98,164.07,164.15,164.26,164.37,164.64000000000001,24.080000000000002,23.740000000000002,23.57,23.37,23.18,22.990000000000002,22.8,22.62,22.240000000000002,N/A,N/A -2012,5,4,18,30,101650,100480,99350,86.97,0,4.23,4.51,4.57,4.59,4.61,4.62,4.62,4.62,4.62,166.84,167.15,167.35,167.57,167.77,167.96,168.17000000000002,168.37,168.81,24.28,23.94,23.76,23.56,23.37,23.18,22.98,22.8,22.41,N/A,N/A -2012,5,4,19,30,101630,100470,99340,86.92,0,4.17,4.44,4.5,4.53,4.5600000000000005,4.58,4.61,4.63,4.68,155.70000000000002,155.33,155.16,154.98,154.79,154.61,154.44,154.28,154,24.330000000000002,23.990000000000002,23.81,23.62,23.43,23.240000000000002,23.05,22.87,22.490000000000002,N/A,N/A -2012,5,4,20,30,101590,100430,99300,86.33,0,4.86,5.22,5.3100000000000005,5.3500000000000005,5.39,5.41,5.44,5.46,5.5,150.65,150.70000000000002,150.65,150.62,150.59,150.58,150.58,150.57,150.57,24.36,24.03,23.85,23.650000000000002,23.46,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A -2012,5,4,21,30,101550,100380,99260,86.84,0,5.58,6,6.09,6.13,6.16,6.17,6.18,6.18,6.18,166,166.02,166.14000000000001,166.26,166.38,166.5,166.66,166.82,167.24,24.34,24.02,23.85,23.650000000000002,23.46,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A -2012,5,4,22,30,101500,100340,99210,88.02,0,5.89,6.390000000000001,6.51,6.57,6.61,6.640000000000001,6.65,6.67,6.68,174.12,174.41,174.59,174.78,174.95000000000002,175.13,175.34,175.53,176.01,24.37,24.07,23.900000000000002,23.7,23.52,23.330000000000002,23.13,22.95,22.57,N/A,N/A -2012,5,4,23,30,101490,100320,99200,90.44,0,4.6000000000000005,5,5.09,5.15,5.19,5.23,5.26,5.28,5.34,159.47,159.44,159.48,159.48,159.46,159.43,159.37,159.31,159.11,24.25,23.94,23.78,23.580000000000002,23.39,23.21,23.02,22.84,22.46,N/A,N/A -2012,5,5,0,30,101460,100290,99170,90.5,0,6.15,6.66,6.76,6.8,6.8100000000000005,6.8100000000000005,6.79,6.7700000000000005,6.7,148.47,148.78,149.01,149.28,149.54,149.83,150.15,150.47,151.32,24.3,24,23.84,23.650000000000002,23.46,23.28,23.09,22.91,22.55,N/A,N/A -2012,5,5,1,30,101440,100280,99150,90.71000000000001,0,4.71,5.09,5.17,5.22,5.24,5.26,5.2700000000000005,5.2700000000000005,5.28,146.78,147.3,147.61,147.89000000000001,148.14000000000001,148.37,148.62,148.84,149.36,24.26,23.96,23.8,23.6,23.42,23.23,23.04,22.86,22.48,N/A,N/A -2012,5,5,2,30,101390,100220,99100,92.23,0,4.83,5.25,5.34,5.38,5.41,5.41,5.41,5.4,5.36,168.12,167.96,167.87,167.8,167.78,167.78,167.81,167.85,168.06,24.29,23.990000000000002,23.830000000000002,23.63,23.45,23.27,23.080000000000002,22.900000000000002,22.53,N/A,N/A -2012,5,5,3,30,101370,100200,99080,92.43,0,5.79,6.23,6.3100000000000005,6.33,6.34,6.33,6.3100000000000005,6.3,6.25,155.58,155.61,155.68,155.76,155.85,155.94,156.05,156.16,156.45000000000002,24.13,23.82,23.650000000000002,23.45,23.27,23.080000000000002,22.89,22.71,22.330000000000002,N/A,N/A -2012,5,5,4,30,101410,100250,99120,92.26,0,6.68,7.17,7.24,7.24,7.22,7.18,7.13,7.08,6.93,159.38,159.92000000000002,160.27,160.66,161.07,161.49,162.01,162.53,163.93,23.93,23.6,23.42,23.22,23.03,22.84,22.64,22.45,22.05,N/A,N/A -2012,5,5,5,30,101430,100270,99140,89.12,0,4.83,5.24,5.33,5.39,5.43,5.46,5.48,5.5,5.53,178.82,179.19,179.38,179.52,179.63,179.71,179.79,179.86,179.99,24.13,23.82,23.650000000000002,23.46,23.27,23.080000000000002,22.89,22.7,22.32,N/A,N/A -2012,5,5,6,30,101440,100280,99150,89.60000000000001,0,6.3500000000000005,6.8500000000000005,6.96,7.0200000000000005,7.05,7.07,7.07,7.08,7.08,177.41,177.65,177.8,177.96,178.12,178.27,178.43,178.59,178.95000000000002,24.23,23.89,23.71,23.52,23.330000000000002,23.14,22.95,22.76,22.38,N/A,N/A -2012,5,5,7,30,101410,100250,99120,89.23,0,6.09,6.5600000000000005,6.66,6.7,6.73,6.74,6.74,6.74,6.73,182.91,182.83,182.79,182.73,182.68,182.63,182.58,182.53,182.42000000000002,24.11,23.77,23.59,23.39,23.2,23.02,22.82,22.64,22.27,N/A,N/A -2012,5,5,8,30,101450,100290,99160,85.96000000000001,0,4.75,5.07,5.14,5.17,5.19,5.19,5.2,5.2,5.19,197.44,197.5,197.55,197.59,197.62,197.65,197.68,197.71,197.79,24.21,23.88,23.7,23.5,23.31,23.12,22.93,22.740000000000002,22.36,N/A,N/A -2012,5,5,9,30,101490,100320,99200,86.08,0,5.2700000000000005,5.63,5.7,5.73,5.74,5.74,5.74,5.74,5.74,204.87,205.38,205.69,205.97,206.23000000000002,206.47,206.71,206.94,207.4,24.16,23.82,23.64,23.44,23.25,23.06,22.86,22.67,22.29,N/A,N/A -2012,5,5,10,30,101430,100270,99140,86.66,0,6.83,7.4,7.54,7.61,7.65,7.68,7.7,7.72,7.73,202.61,202.65,202.65,202.63,202.61,202.58,202.54,202.51,202.45000000000002,24.21,23.87,23.69,23.490000000000002,23.3,23.11,22.91,22.73,22.34,N/A,N/A -2012,5,5,11,30,101460,100300,99170,85.13,0,6.6000000000000005,7.12,7.23,7.28,7.3100000000000005,7.32,7.32,7.32,7.3,202.86,202.86,202.84,202.82,202.8,202.78,202.76,202.75,202.71,24.29,23.96,23.79,23.59,23.400000000000002,23.21,23.02,22.830000000000002,22.45,N/A,N/A -2012,5,5,12,30,101440,100270,99150,84.60000000000001,0,6.17,6.6000000000000005,6.69,6.72,6.72,6.72,6.7,6.68,6.63,213.64000000000001,214.11,214.29,214.5,214.71,214.91,215.13,215.34,215.82,24.28,23.95,23.78,23.580000000000002,23.39,23.21,23.02,22.84,22.46,N/A,N/A -2012,5,5,13,30,101390,100230,99100,86.83,0,5.0600000000000005,5.44,5.53,5.58,5.62,5.65,5.67,5.69,5.72,198.51,198.44,198.45000000000002,198.46,198.47,198.47,198.48000000000002,198.49,198.49,24.310000000000002,23.97,23.8,23.6,23.41,23.22,23.02,22.84,22.45,N/A,N/A -2012,5,5,14,30,101370,100210,99090,89.34,0,6.36,6.88,7.01,7.08,7.12,7.16,7.18,7.2,7.22,171.27,171.5,171.61,171.72,171.8,171.88,171.96,172.05,172.22,24.39,24.060000000000002,23.89,23.69,23.5,23.31,23.12,22.93,22.55,N/A,N/A -2012,5,5,15,30,101380,100220,99090,89.51,0,6.68,7.25,7.38,7.45,7.5,7.53,7.55,7.5600000000000005,7.58,168.62,168.77,168.8,168.84,168.88,168.92000000000002,168.96,169,169.07,24.46,24.12,23.94,23.740000000000002,23.55,23.36,23.17,22.98,22.6,N/A,N/A -2012,5,5,16,30,101430,100270,99140,88.01,0,6.47,7.0200000000000005,7.15,7.21,7.25,7.28,7.3,7.3100000000000005,7.3100000000000005,182.8,182.37,182.21,182.08,181.98,181.89000000000001,181.81,181.75,181.63,24.69,24.37,24.2,24,23.81,23.62,23.42,23.240000000000002,22.86,N/A,N/A -2012,5,5,17,30,101420,100260,99130,88.33,0,6.33,6.9,7.03,7.11,7.16,7.19,7.21,7.23,7.25,179.36,179.58,179.65,179.70000000000002,179.74,179.77,179.81,179.84,179.9,24.75,24.43,24.25,24.060000000000002,23.86,23.68,23.48,23.3,22.91,N/A,N/A -2012,5,5,18,30,101420,100260,99130,89.13,0,5.29,5.7700000000000005,5.9,5.98,6.04,6.08,6.12,6.140000000000001,6.18,181.73,181.64000000000001,181.6,181.59,181.58,181.57,181.57,181.58,181.59,24.830000000000002,24.51,24.34,24.14,23.95,23.76,23.56,23.38,22.990000000000002,N/A,N/A -2012,5,5,19,30,101410,100250,99130,89.69,0,5.96,6.45,6.5600000000000005,6.61,6.640000000000001,6.66,6.67,6.67,6.67,168.03,168.13,168.21,168.28,168.34,168.4,168.44,168.48,168.56,24.89,24.560000000000002,24.39,24.19,24,23.81,23.61,23.43,23.05,N/A,N/A -2012,5,5,20,30,101370,100210,99090,90.51,0,6.36,6.93,7.07,7.140000000000001,7.19,7.22,7.23,7.24,7.24,157.88,158.06,158.22,158.38,158.54,158.69,158.83,158.96,159.24,24.79,24.46,24.29,24.09,23.91,23.72,23.52,23.34,22.96,N/A,N/A -2012,5,5,21,30,101330,100170,99050,91.45,0,5.62,6.1000000000000005,6.22,6.3,6.3500000000000005,6.4,6.43,6.46,6.53,165.53,165.96,166.22,166.49,166.75,167.01,167.28,167.56,168.21,24.88,24.57,24.400000000000002,24.2,24.02,23.830000000000002,23.64,23.46,23.09,N/A,N/A -2012,5,5,22,30,101310,100150,99030,91.57000000000001,0,6.63,7.25,7.390000000000001,7.47,7.5200000000000005,7.55,7.5600000000000005,7.57,7.5600000000000005,174,174.28,174.32,174.35,174.37,174.38,174.39000000000001,174.39000000000001,174.37,24.88,24.57,24.41,24.21,24.02,23.84,23.64,23.46,23.080000000000002,N/A,N/A -2012,5,5,23,30,101270,100120,99000,90.02,0,6.78,7.37,7.49,7.55,7.58,7.59,7.59,7.59,7.57,168.21,168.22,168.33,168.49,168.66,168.85,169.08,169.3,169.89000000000001,24.87,24.57,24.400000000000002,24.21,24.02,23.84,23.64,23.46,23.09,N/A,N/A -2012,5,6,0,30,101250,100090,98970,92.14,0,6.65,7.25,7.4,7.48,7.54,7.57,7.6000000000000005,7.63,7.67,160.45000000000002,160.65,160.74,160.84,160.94,161.03,161.14000000000001,161.23,161.49,24.72,24.41,24.240000000000002,24.05,23.86,23.67,23.48,23.3,22.91,N/A,N/A -2012,5,6,1,30,101210,100060,98930,91.61,0,6.75,7.34,7.48,7.55,7.6000000000000005,7.640000000000001,7.67,7.7,7.79,163.04,163.32,163.53,163.76,163.99,164.23,164.53,164.82,165.65,24.63,24.32,24.150000000000002,23.95,23.77,23.580000000000002,23.39,23.2,22.830000000000002,N/A,N/A -2012,5,6,2,30,101240,100080,98960,92.06,0,7.03,7.640000000000001,7.78,7.83,7.86,7.87,7.86,7.8500000000000005,7.8,163.72,164.02,164.18,164.37,164.55,164.73,164.93,165.14000000000001,165.65,24.64,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.39,23.2,22.830000000000002,N/A,N/A -2012,5,6,3,30,101270,100110,98990,91.82000000000001,0,7.19,7.8500000000000005,8.02,8.11,8.17,8.21,8.23,8.25,8.28,170.22,170.11,170.07,170.05,170.04,170.03,170.04,170.04,170.07,24.67,24.35,24.18,23.98,23.79,23.6,23.41,23.22,22.84,N/A,N/A -2012,5,6,4,30,101240,100080,98960,88.94,0,7.87,8.67,8.870000000000001,8.98,9.06,9.11,9.14,9.16,9.17,167.41,167.99,168.21,168.4,168.57,168.72,168.86,168.99,169.27,24.79,24.48,24.32,24.12,23.94,23.75,23.56,23.38,22.990000000000002,N/A,N/A -2012,5,6,5,30,101270,100110,98980,88.7,0,8.14,8.93,9.120000000000001,9.200000000000001,9.25,9.28,9.28,9.27,9.22,182.33,182.19,182.09,182.01,181.93,181.87,181.81,181.75,181.63,24.76,24.45,24.28,24.09,23.900000000000002,23.71,23.52,23.34,22.95,N/A,N/A -2012,5,6,6,30,101270,100110,98980,87.11,0,7.57,8.290000000000001,8.49,8.59,8.67,8.72,8.76,8.790000000000001,8.82,189.32,189.45000000000002,189.53,189.61,189.68,189.76,189.83,189.89000000000001,190.04,24.71,24.400000000000002,24.23,24.03,23.85,23.66,23.46,23.28,22.900000000000002,N/A,N/A -2012,5,6,7,30,101300,100140,99020,88.46000000000001,0,6.87,7.48,7.62,7.7,7.76,7.79,7.82,7.83,7.86,184.8,184.86,184.89000000000001,184.93,184.99,185.05,185.12,185.18,185.36,24.6,24.28,24.1,23.91,23.72,23.53,23.330000000000002,23.150000000000002,22.76,N/A,N/A -2012,5,6,8,30,101290,100130,99010,89.46000000000001,0,6.7,7.3100000000000005,7.46,7.54,7.6000000000000005,7.640000000000001,7.67,7.69,7.72,192.74,193.02,193.20000000000002,193.39000000000001,193.58,193.76,193.95000000000002,194.13,194.56,24.61,24.28,24.11,23.91,23.72,23.54,23.34,23.16,22.78,N/A,N/A -2012,5,6,9,30,101290,100130,99010,88.27,0,6.22,6.79,6.93,7.01,7.07,7.1000000000000005,7.140000000000001,7.17,7.21,201.67000000000002,201.84,201.89000000000001,201.96,202.03,202.11,202.19,202.27,202.45000000000002,24.71,24.400000000000002,24.23,24.04,23.85,23.66,23.47,23.28,22.900000000000002,N/A,N/A -2012,5,6,10,30,101250,100090,98970,88.78,0,6.7,7.28,7.41,7.48,7.5200000000000005,7.55,7.57,7.58,7.6000000000000005,209.13,209.18,209.22,209.27,209.31,209.36,209.41,209.46,209.58,24.66,24.34,24.18,23.98,23.79,23.6,23.41,23.22,22.84,N/A,N/A -2012,5,6,11,30,101250,100090,98970,88.46000000000001,0,5.99,6.5200000000000005,6.65,6.72,6.78,6.8100000000000005,6.84,6.86,6.9,201.44,201.53,201.6,201.67000000000002,201.73000000000002,201.79,201.85,201.91,202.06,24.67,24.35,24.18,23.990000000000002,23.8,23.61,23.41,23.23,22.85,N/A,N/A -2012,5,6,12,30,101310,100150,99020,88.63,0,4.51,4.84,4.92,4.95,4.98,4.99,5,5,5,171.63,172.08,172.4,172.66,172.9,173.11,173.31,173.5,173.9,24.64,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.38,23.2,22.82,N/A,N/A -2012,5,6,13,30,101350,100190,99060,88.22,0,4.04,4.3500000000000005,4.42,4.46,4.49,4.5,4.5200000000000005,4.53,4.54,181.59,181.85,181.9,181.99,182.08,182.18,182.29,182.39000000000001,182.64000000000001,24.64,24.330000000000002,24.16,23.96,23.77,23.580000000000002,23.39,23.2,22.82,N/A,N/A -2012,5,6,14,30,101340,100180,99060,88.82000000000001,0,4.83,5.18,5.26,5.3,5.32,5.34,5.3500000000000005,5.3500000000000005,5.36,183.93,184.09,184.22,184.37,184.5,184.65,184.8,184.94,185.31,24.6,24.28,24.11,23.91,23.72,23.53,23.34,23.150000000000002,22.77,N/A,N/A -2012,5,6,15,30,101330,100170,99050,88.28,0,5.1000000000000005,5.48,5.5600000000000005,5.61,5.63,5.65,5.66,5.67,5.68,170.87,171.45000000000002,171.8,172.16,172.48,172.79,173.13,173.45000000000002,174.17000000000002,24.68,24.35,24.18,23.990000000000002,23.8,23.61,23.42,23.240000000000002,22.86,N/A,N/A -2012,5,6,16,30,101390,100230,99100,89.26,0,5.28,5.69,5.8,5.8500000000000005,5.9,5.93,5.95,5.97,6,160.52,161.05,161.32,161.59,161.83,162.06,162.3,162.53,162.99,24.71,24.37,24.2,24,23.81,23.62,23.43,23.240000000000002,22.86,N/A,N/A -2012,5,6,17,30,101400,100240,99110,86.47,0,5.51,5.9,5.98,6,6.0200000000000005,6.0200000000000005,6.01,6,5.97,171.67000000000002,171.94,172.04,172.14000000000001,172.25,172.35,172.46,172.56,172.79,24.8,24.46,24.29,24.09,23.900000000000002,23.71,23.52,23.34,22.95,N/A,N/A -2012,5,6,18,30,101380,100220,99090,87.96000000000001,0,5.26,5.64,5.71,5.75,5.7700000000000005,5.79,5.8,5.8,5.8,158.78,158.85,158.94,159.07,159.21,159.35,159.5,159.66,160.04,24.7,24.35,24.18,23.98,23.78,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A -2012,5,6,19,30,101350,100190,99070,88.98,0,6.3,6.88,7.0200000000000005,7.11,7.18,7.22,7.25,7.2700000000000005,7.3,158.97,158.98,159.03,159.08,159.13,159.18,159.22,159.27,159.36,24.79,24.45,24.28,24.080000000000002,23.89,23.7,23.5,23.32,22.93,N/A,N/A -2012,5,6,20,30,101320,100160,99040,88.8,0,6.390000000000001,6.95,7.08,7.140000000000001,7.19,7.21,7.23,7.25,7.25,163.94,163.79,163.79,163.82,163.85,163.89000000000001,163.94,163.99,164.12,24.72,24.39,24.22,24.02,23.830000000000002,23.64,23.45,23.26,22.88,N/A,N/A -2012,5,6,21,30,101290,100130,99000,87.52,0,6.63,7.19,7.3100000000000005,7.37,7.41,7.43,7.44,7.45,7.44,164.03,164.36,164.5,164.62,164.73,164.82,164.9,164.98,165.12,24.7,24.38,24.2,24,23.81,23.63,23.43,23.240000000000002,22.86,N/A,N/A -2012,5,6,22,30,101200,100040,98920,85.83,0,7.46,8.16,8.33,8.42,8.48,8.52,8.55,8.58,8.620000000000001,171.31,171.57,171.74,171.93,172.11,172.29,172.5,172.69,173.19,24.75,24.45,24.28,24.09,23.900000000000002,23.72,23.53,23.35,22.98,N/A,N/A -2012,5,6,23,30,101200,100040,98920,85.93,0,7.09,7.76,7.930000000000001,8.02,8.08,8.11,8.13,8.14,8.120000000000001,173.47,173.18,173.09,173.06,173.04,173.04,173.06,173.08,173.17000000000002,24.79,24.48,24.310000000000002,24.11,23.92,23.73,23.54,23.35,22.97,N/A,N/A -2012,5,7,0,30,101160,100000,98880,87.10000000000001,0,6.53,7.1000000000000005,7.22,7.28,7.32,7.32,7.32,7.3100000000000005,7.2700000000000005,177.62,177.56,177.59,177.64000000000001,177.70000000000002,177.76,177.84,177.9,178.07,24.67,24.35,24.18,23.98,23.79,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A -2012,5,7,1,30,101260,100100,98980,86.79,0,4.34,4.67,4.76,4.8100000000000005,4.8500000000000005,4.87,4.88,4.89,4.9,189.68,189.28,189.12,189.01,188.95000000000002,188.92000000000002,188.93,188.96,189.09,24.650000000000002,24.34,24.17,23.97,23.78,23.59,23.39,23.2,22.82,N/A,N/A -2012,5,7,2,30,101340,100180,99050,82.06,0,3.13,3.35,3.39,3.41,3.42,3.42,3.42,3.42,3.42,233.32,232.8,232.59,232.44,232.31,232.20000000000002,232.09,232,231.82,24.86,24.57,24.400000000000002,24.21,24.02,23.84,23.64,23.46,23.07,N/A,N/A -2012,5,7,3,30,101300,100140,99020,81.03,0,0.99,1.01,1.01,1,0.99,0.98,0.97,0.97,0.9500000000000001,235.32,235.73000000000002,235.97,236.21,236.45000000000002,236.68,236.95000000000002,237.21,237.89000000000001,24.77,24.47,24.3,24.11,23.92,23.740000000000002,23.54,23.36,22.98,N/A,N/A -2012,5,7,4,30,101260,100100,98980,83.69,0,4.88,5.19,5.21,5.19,5.17,5.15,5.12,5.08,5,139.13,139.5,139.55,139.71,139.92000000000002,140.14000000000001,140.61,141.1,144.12,24.62,24.3,24.13,23.94,23.75,23.57,23.38,23.22,22.93,N/A,N/A -2012,5,7,5,30,101200,100040,98910,84.55,0,5.74,6.17,6.2700000000000005,6.3100000000000005,6.33,6.34,6.34,6.34,6.32,169.02,169.07,169.13,169.21,169.32,169.43,169.58,169.73,170.16,24.560000000000002,24.240000000000002,24.07,23.88,23.69,23.5,23.31,23.13,22.75,N/A,N/A -2012,5,7,6,30,101230,100070,98950,85.61,0,4.34,4.64,4.71,4.74,4.76,4.7700000000000005,4.78,4.78,4.79,178.62,178.71,178.92000000000002,179.12,179.31,179.51,179.73,179.93,180.47,24.52,24.2,24.03,23.830000000000002,23.64,23.45,23.26,23.080000000000002,22.7,N/A,N/A -2012,5,7,7,30,101200,100040,98910,84.64,0,4.36,4.66,4.72,4.75,4.78,4.79,4.8,4.8100000000000005,4.82,174.23,174.5,174.65,174.82,174.98,175.15,175.33,175.51,175.97,24.51,24.19,24.02,23.82,23.63,23.45,23.25,23.07,22.69,N/A,N/A -2012,5,7,8,30,101180,100020,98900,84.47,0,4.73,5.04,5.1000000000000005,5.13,5.14,5.15,5.15,5.15,5.14,180.68,180.93,181.08,181.24,181.4,181.56,181.75,181.94,182.44,24.5,24.17,24,23.8,23.61,23.42,23.23,23.05,22.66,N/A,N/A -2012,5,7,9,30,101180,100020,98890,86.98,0,5.19,5.57,5.65,5.69,5.71,5.73,5.74,5.75,5.76,191.31,191.49,191.63,191.77,191.91,192.04,192.20000000000002,192.34,192.74,24.48,24.150000000000002,23.98,23.78,23.59,23.400000000000002,23.21,23.02,22.64,N/A,N/A -2012,5,7,10,30,101160,100000,98880,86.26,0,4.5200000000000005,4.82,4.87,4.9,4.91,4.92,4.92,4.92,4.91,189.67000000000002,189.79,189.87,189.97,190.08,190.19,190.32,190.45000000000002,190.8,24.5,24.17,24,23.8,23.61,23.42,23.23,23.05,22.66,N/A,N/A -2012,5,7,11,30,101150,99990,98870,88.59,0,4.19,4.44,4.48,4.49,4.48,4.48,4.46,4.45,4.41,178.32,178.48,178.67000000000002,178.84,179.01,179.16,179.34,179.51,179.95000000000002,24.42,24.080000000000002,23.91,23.71,23.53,23.34,23.14,22.96,22.580000000000002,N/A,N/A -2012,5,7,12,30,101160,100000,98880,89.7,0,4.36,4.63,4.69,4.71,4.72,4.73,4.73,4.73,4.72,176.94,177.15,177.29,177.43,177.57,177.70000000000002,177.86,178.01,178.36,24.39,24.05,23.88,23.68,23.490000000000002,23.3,23.1,22.92,22.54,N/A,N/A -2012,5,7,13,30,101190,100030,98910,90.67,0,5.11,5.48,5.55,5.6000000000000005,5.63,5.65,5.66,5.67,5.69,180.77,180.83,180.8,180.76,180.73,180.70000000000002,180.69,180.68,180.70000000000002,24.47,24.14,23.96,23.76,23.57,23.38,23.18,22.990000000000002,22.61,N/A,N/A -2012,5,7,14,30,101250,100090,98970,89.02,0,4.28,4.48,4.5,4.5,4.49,4.47,4.45,4.43,4.38,176.68,177,177.39000000000001,177.94,178.57,179.29,180.38,181.55,185.64000000000001,24.580000000000002,24.26,24.09,23.900000000000002,23.71,23.53,23.35,23.17,22.84,N/A,N/A -2012,5,7,15,30,101280,100120,99000,89.66,0,4.63,4.91,4.96,4.96,4.96,4.95,4.93,4.91,4.87,180.27,180.48,180.54,180.61,180.68,180.76,180.86,180.96,181.25,24.62,24.29,24.12,23.92,23.740000000000002,23.55,23.36,23.18,22.830000000000002,N/A,N/A -2012,5,7,16,30,101280,100120,99000,88.63,0,4.79,5.1000000000000005,5.16,5.18,5.19,5.19,5.19,5.18,5.15,179.20000000000002,179.78,180.14000000000001,180.52,180.87,181.21,181.59,181.95000000000002,182.81,24.75,24.41,24.23,24.03,23.85,23.66,23.46,23.28,22.900000000000002,N/A,N/A -2012,5,7,17,30,101300,100140,99020,87.54,0,4.23,4.49,4.54,4.5600000000000005,4.57,4.58,4.58,4.58,4.58,180.8,181.05,181.19,181.33,181.46,181.59,181.73,181.86,182.19,24.86,24.51,24.34,24.14,23.95,23.76,23.56,23.38,22.990000000000002,N/A,N/A -2012,5,7,18,30,101300,100140,99020,87.62,0,4.48,4.74,4.79,4.8,4.8,4.8,4.79,4.7700000000000005,4.74,172.89000000000001,173.02,173.14000000000001,173.29,173.44,173.61,173.83,174.04,174.62,24.96,24.61,24.43,24.240000000000002,24.05,23.86,23.66,23.48,23.1,N/A,N/A -2012,5,7,19,30,101270,100110,98990,88.16,0,4.57,4.83,4.87,4.87,4.87,4.86,4.84,4.82,4.7700000000000005,187.88,187.43,187.14000000000001,186.82,186.51,186.20000000000002,185.86,185.54,184.79,25.1,24.75,24.580000000000002,24.38,24.19,24,23.8,23.62,23.240000000000002,N/A,N/A -2012,5,7,20,30,101230,100070,98950,89.37,0,5.36,5.76,5.86,5.92,5.95,5.98,5.99,6.01,6.0200000000000005,158.4,159.05,159.53,159.99,160.41,160.79,161.18,161.54,162.3,25.12,24.78,24.61,24.41,24.22,24.03,23.84,23.650000000000002,23.27,N/A,N/A -2012,5,7,21,30,101140,99990,98870,89.37,0,5.8100000000000005,6.23,6.3100000000000005,6.33,6.34,6.33,6.32,6.3100000000000005,6.28,174.8,175.02,175.09,175.22,175.37,175.55,175.78,176.02,176.72,24.93,24.61,24.44,24.240000000000002,24.05,23.87,23.67,23.490000000000002,23.13,N/A,N/A -2012,5,7,22,30,101110,99960,98840,89.42,0,5.15,5.53,5.59,5.62,5.63,5.63,5.63,5.62,5.6000000000000005,151.9,152.33,152.6,152.87,153.12,153.36,153.62,153.86,154.42000000000002,24.93,24.61,24.44,24.240000000000002,24.05,23.86,23.67,23.48,23.1,N/A,N/A -2012,5,7,23,30,101070,99910,98790,88.81,0,6.13,6.61,6.71,6.75,6.7700000000000005,6.78,6.78,6.7700000000000005,6.75,149.06,149.03,149.06,149.09,149.12,149.15,149.20000000000002,149.24,149.36,24.91,24.6,24.43,24.23,24.04,23.85,23.66,23.48,23.09,N/A,N/A -2012,5,8,0,30,101060,99910,98790,88.76,0,5.09,5.5,5.58,5.63,5.65,5.66,5.67,5.67,5.66,160.63,160.77,160.77,160.79,160.8,160.81,160.83,160.85,160.88,24.87,24.560000000000002,24.39,24.2,24.01,23.82,23.63,23.44,23.06,N/A,N/A -2012,5,8,1,30,101060,99910,98790,89.28,0,4.89,5.26,5.33,5.37,5.39,5.4,5.41,5.41,5.4,164.79,164.92000000000002,164.9,164.87,164.83,164.78,164.72,164.66,164.49,24.830000000000002,24.52,24.35,24.150000000000002,23.96,23.78,23.580000000000002,23.400000000000002,23.02,N/A,N/A -2012,5,8,2,30,101100,99950,98830,89.44,0,4.74,5.08,5.15,5.18,5.19,5.19,5.19,5.18,5.15,167.35,167.46,167.49,167.5,167.52,167.54,167.55,167.56,167.58,24.76,24.45,24.28,24.080000000000002,23.900000000000002,23.71,23.52,23.330000000000002,22.95,N/A,N/A -2012,5,8,3,30,101150,99990,98870,89.69,0,4.61,4.93,5,5.03,5.04,5.05,5.05,5.04,5.03,156.85,156.83,156.92000000000002,156.99,157.05,157.1,157.15,157.20000000000002,157.28,24.740000000000002,24.42,24.25,24.05,23.86,23.67,23.48,23.29,22.91,N/A,N/A -2012,5,8,4,30,101170,100010,98890,90.13,0,3.84,4.1,4.16,4.18,4.19,4.19,4.19,4.19,4.18,146.89000000000001,146.77,146.95000000000002,147.14000000000001,147.32,147.51,147.71,147.91,148.4,24.68,24.36,24.19,23.990000000000002,23.81,23.62,23.42,23.240000000000002,22.86,N/A,N/A -2012,5,8,5,30,101170,100010,98890,87.31,0,4.78,5.13,5.18,5.19,5.19,5.17,5.15,5.13,5.0600000000000005,161.93,161.74,161.64000000000001,161.53,161.42000000000002,161.32,161.22,161.12,160.93,24.76,24.45,24.27,24.080000000000002,23.89,23.7,23.5,23.32,22.93,N/A,N/A -2012,5,8,6,30,101270,100110,98990,87.58,0,3.56,3.72,3.74,3.73,3.71,3.69,3.66,3.63,3.54,171.66,171.99,172.23,172.5,172.74,172.99,173.27,173.54,174.23,24.71,24.39,24.23,24.04,23.85,23.67,23.48,23.3,22.94,N/A,N/A -2012,5,8,7,30,101280,100120,99000,87.83,0,1.73,1.81,1.82,1.83,1.83,1.82,1.82,1.81,1.79,173.01,173.68,174.02,174.54,175.09,175.70000000000002,176.44,177.19,179.1,24.69,24.38,24.21,24.01,23.81,23.63,23.43,23.240000000000002,22.86,N/A,N/A -2012,5,8,8,30,101260,100100,98970,84.44,0,1.33,1.22,1.1400000000000001,1.06,0.98,0.91,0.8300000000000001,0.76,0.62,93.7,94.44,94.94,95.23,95.13,94.82000000000001,93.72,92.52,85.73,24.650000000000002,24.330000000000002,24.16,23.96,23.77,23.580000000000002,23.38,23.2,22.81,N/A,N/A -2012,5,8,9,30,101250,100090,98960,82.57000000000001,0,1.4000000000000001,1.44,1.44,1.44,1.45,1.46,1.48,1.5,1.56,39.49,37.72,36.61,35.35,34.09,32.8,31.330000000000002,29.88,26.59,24.64,24.330000000000002,24.16,23.96,23.78,23.59,23.400000000000002,23.21,22.84,N/A,N/A -2012,5,8,10,30,101260,100100,98980,84.89,0,2.6,2.72,2.73,2.74,2.74,2.74,2.74,2.73,2.73,18.080000000000002,18.19,18.2,18.23,18.25,18.28,18.35,18.41,18.64,24.5,24.17,24,23.8,23.61,23.42,23.23,23.04,22.66,N/A,N/A -2012,5,8,11,30,101240,100080,98950,84.8,0,2.65,2.7800000000000002,2.8000000000000003,2.81,2.81,2.81,2.81,2.81,2.8000000000000003,31.36,31.66,31.77,31.89,32,32.09,32.19,32.27,32.46,24.41,24.080000000000002,23.91,23.71,23.52,23.330000000000002,23.14,22.95,22.57,N/A,N/A -2012,5,8,12,30,101250,100090,98960,90.99,0,5.55,5.86,5.9,5.89,5.87,5.83,5.79,5.74,5.63,45.660000000000004,45.980000000000004,46.14,46.300000000000004,46.46,46.63,46.83,47.02,47.5,23.86,23.48,23.3,23.1,22.91,22.72,22.52,22.330000000000002,21.96,N/A,N/A -2012,5,8,13,30,101260,100100,98970,92.07000000000001,0,5.07,5.34,5.38,5.38,5.37,5.3500000000000005,5.3100000000000005,5.2700000000000005,5.18,50.7,51.550000000000004,52.09,52.65,53.19,53.71,54.29,54.83,56.1,23.53,23.13,22.95,22.75,22.56,22.37,22.18,22,21.62,N/A,N/A -2012,5,8,14,30,101300,100130,99010,91.69,0,4.45,4.63,4.65,4.64,4.62,4.6000000000000005,4.57,4.54,4.46,45.69,47.31,48.35,49.35,50.27,51.14,52.02,52.83,54.52,23.38,23,22.82,22.62,22.43,22.25,22.05,21.87,21.5,N/A,N/A -2012,5,8,15,30,101320,100150,99020,97.81,0,5.83,6.05,6.05,5.98,5.9,5.8,5.68,5.5600000000000005,5.18,36.24,36.81,37.25,37.78,38.4,39.07,40.09,41.12,46.21,22.64,22.21,22.02,21.830000000000002,21.68,21.57,21.45,21.34,21.11,N/A,N/A -2012,5,8,16,30,101340,100180,99050,93.99,0,4.25,4.42,4.43,4.42,4.39,4.36,4.32,4.28,4.13,40.09,41.27,42.1,43.02,43.99,45.01,46.38,47.74,53.19,23.11,22.72,22.54,22.35,22.17,21.990000000000002,21.81,21.64,21.31,N/A,N/A -2012,5,8,17,30,101320,100160,99030,89.72,0,4.1,4.3100000000000005,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,4.29,61.14,61.730000000000004,62.1,62.49,62.85,63.21,63.61,63.99,64.92,23.66,23.28,23.09,22.89,22.7,22.51,22.32,22.13,21.75,N/A,N/A -2012,5,8,18,30,101340,100180,99050,86.09,0,2.57,2.68,2.7,2.7,2.7,2.7,2.7,2.7,2.68,99.96000000000001,100.35000000000001,100.61,100.93,101.3,101.72,102.3,102.91,105.34,24.16,23.81,23.63,23.44,23.25,23.07,22.89,22.71,22.38,N/A,N/A -2012,5,8,19,30,101280,100120,99000,84.33,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,3,112.54,113.24000000000001,113.58,114.01,114.47,114.98,115.66,116.37,118.74000000000001,24.46,24.11,23.93,23.740000000000002,23.55,23.37,23.18,23.01,22.66,N/A,N/A -2012,5,8,20,30,101240,100080,98960,86.96000000000001,0,4.58,4.82,4.86,4.86,4.8500000000000005,4.84,4.82,4.8,4.75,143.9,144.54,144.84,145.17000000000002,145.52,145.89000000000001,146.34,146.78,148.02,24.6,24.23,24.05,23.85,23.67,23.48,23.29,23.12,22.76,N/A,N/A -2012,5,8,21,30,101220,100060,98940,86.11,0,5.11,5.42,5.47,5.48,5.48,5.48,5.47,5.45,5.42,172.12,172.45000000000002,172.61,172.84,173.1,173.4,173.8,174.22,175.83,24.84,24.5,24.330000000000002,24.13,23.95,23.76,23.57,23.39,23.04,N/A,N/A -2012,5,8,22,30,101180,100020,98900,84.74,0,4.29,4.57,4.61,4.61,4.61,4.6000000000000005,4.58,4.5600000000000005,4.51,179.36,179.62,179.74,179.88,180.02,180.18,180.38,180.59,181.25,25.03,24.72,24.55,24.35,24.16,23.97,23.78,23.6,23.23,N/A,N/A -2012,5,8,23,30,101200,100050,98930,84.73,0,4.13,4.4,4.46,4.47,4.47,4.46,4.45,4.43,4.38,196.55,196.89000000000001,197.19,197.51,197.83,198.16,198.55,198.92000000000002,199.94,25.1,24.8,24.63,24.43,24.25,24.060000000000002,23.87,23.69,23.31,N/A,N/A -2012,5,9,0,30,101210,100050,98930,86.09,0,3.84,4.09,4.14,4.15,4.15,4.15,4.14,4.13,4.1,221.25,221.57,221.73000000000002,221.94,222.16,222.42000000000002,222.76,223.12,224.3,24.98,24.68,24.52,24.32,24.13,23.94,23.75,23.57,23.2,N/A,N/A -2012,5,9,1,30,101210,100050,98930,87.11,0,3.95,4.2,4.24,4.26,4.2700000000000005,4.2700000000000005,4.2700000000000005,4.26,4.25,258.34000000000003,259.07,259.41,259.77,260.11,260.47,260.87,261.26,262.27,24.86,24.55,24.38,24.18,24,23.81,23.62,23.43,23.06,N/A,N/A -2012,5,9,2,30,101250,100090,98970,84.41,0,4.44,4.74,4.79,4.8100000000000005,4.82,4.82,4.82,4.8100000000000005,4.78,305.47,306.31,306.51,306.64,306.73,306.8,306.86,306.90000000000003,306.93,24.95,24.64,24.47,24.28,24.09,23.900000000000002,23.71,23.52,23.13,N/A,N/A -2012,5,9,3,30,101280,100120,98990,83.11,0,5.78,6.140000000000001,6.22,6.24,6.25,6.24,6.23,6.21,6.15,350.40000000000003,350.38,350.41,350.45,350.48,350.52,350.58,350.64,350.79,24.04,23.69,23.51,23.31,23.13,22.95,22.76,22.59,22.240000000000002,N/A,N/A -2012,5,9,4,30,101260,100100,98970,83.43,0,4.94,5.26,5.32,5.3500000000000005,5.37,5.39,5.43,5.48,5.84,2.69,2.89,2.99,3.1,3.22,3.35,3.5500000000000003,3.7800000000000002,5.0200000000000005,24.150000000000002,23.8,23.63,23.43,23.25,23.07,22.88,22.71,22.400000000000002,N/A,N/A -2012,5,9,5,30,101280,100120,98990,81.78,0,5.65,6.01,6.09,6.13,6.17,6.22,6.33,6.45,7.9,5.22,5.45,5.5600000000000005,5.72,5.91,6.140000000000001,6.53,6.97,9.44,23.92,23.56,23.39,23.2,23.02,22.85,22.69,22.54,22.5,N/A,N/A -2012,5,9,6,30,101310,100140,99020,81.84,0,6.6000000000000005,7.0600000000000005,7.16,7.2,7.24,7.2700000000000005,7.3100000000000005,7.36,7.65,359.81,359.83,359.87,359.93,359.99,0.07,0.18,0.29,0.77,23.990000000000002,23.62,23.45,23.25,23.06,22.88,22.7,22.52,22.2,N/A,N/A -2012,5,9,7,30,101340,100180,99040,82.21000000000001,0,7.49,8.040000000000001,8.17,8.23,8.28,8.33,8.41,8.5,9.06,0.44,0.51,0.63,0.77,0.9400000000000001,1.12,1.41,1.72,3.36,23.67,23.27,23.1,22.91,22.73,22.55,22.38,22.22,22,N/A,N/A -2012,5,9,8,30,101340,100180,99050,84.56,0,7.82,8.38,8.51,8.55,8.58,8.59,8.6,8.61,8.67,357.11,357.33,357.48,357.64,357.82,358.03000000000003,358.3,358.58,359.58,23.57,23.16,22.98,22.77,22.59,22.400000000000002,22.22,22.04,21.7,N/A,N/A -2012,5,9,9,30,101340,100180,99050,85.18,0,6.72,7.19,7.29,7.34,7.38,7.390000000000001,7.41,7.43,7.48,17.86,18.05,18.14,18.23,18.330000000000002,18.42,18.54,18.66,19.01,23.53,23.13,22.95,22.740000000000002,22.55,22.37,22.17,21.990000000000002,21.62,N/A,N/A -2012,5,9,10,30,101390,100230,99090,85.98,0,5.98,6.34,6.41,6.43,6.44,6.43,6.42,6.41,6.38,21.03,21.2,21.330000000000002,21.45,21.57,21.68,21.81,21.93,22.240000000000002,23.36,22.96,22.77,22.56,22.37,22.19,21.990000000000002,21.81,21.44,N/A,N/A -2012,5,9,11,30,101480,100310,99170,86.27,0,5.29,5.59,5.64,5.66,5.66,5.66,5.64,5.63,5.59,359.61,359.72,359.93,0.14,0.32,0.49,0.68,0.86,1.29,23.150000000000002,22.740000000000002,22.55,22.35,22.150000000000002,21.97,21.77,21.59,21.21,N/A,N/A -2012,5,9,12,30,101460,100290,99150,89.39,0,6.03,6.37,6.43,6.45,6.44,6.43,6.41,6.390000000000001,6.34,6.61,6.7700000000000005,6.9,7.05,7.2,7.36,7.5600000000000005,7.76,8.290000000000001,22.5,22.06,21.86,21.66,21.47,21.28,21.09,20.91,20.53,N/A,N/A -2012,5,9,13,30,101420,100250,99110,88.19,0,5.48,5.79,5.8500000000000005,5.87,5.87,5.88,5.88,5.87,5.88,33.88,34.31,34.47,34.660000000000004,34.84,35.03,35.26,35.480000000000004,36.07,22.580000000000002,22.150000000000002,21.96,21.76,21.57,21.38,21.19,21.01,20.64,N/A,N/A -2012,5,9,14,30,101480,100310,99180,84.51,0,6.390000000000001,6.7700000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,6.84,13.61,13.85,14.02,14.19,14.35,14.52,14.69,14.86,15.26,22.94,22.51,22.32,22.12,21.92,21.73,21.54,21.36,20.990000000000002,N/A,N/A -2012,5,9,15,30,101490,100320,99180,81.27,0,5.09,5.39,5.45,5.49,5.51,5.5200000000000005,5.53,5.54,5.55,15.83,15.91,15.88,15.84,15.82,15.8,15.780000000000001,15.76,15.73,23.13,22.73,22.54,22.330000000000002,22.14,21.95,21.75,21.57,21.19,N/A,N/A -2012,5,9,16,30,101470,100310,99170,77.89,0,2.92,3.08,3.13,3.17,3.2,3.23,3.27,3.31,3.39,22.05,21.84,21.75,21.650000000000002,21.55,21.45,21.32,21.19,20.900000000000002,23.7,23.34,23.16,22.96,22.77,22.580000000000002,22.39,22.21,21.84,N/A,N/A -2012,5,9,17,30,101460,100300,99170,76.19,0,0.51,0.54,0.56,0.5700000000000001,0.59,0.61,0.64,0.66,0.73,50.910000000000004,47.01,43.75,40.58,37.76,35.03,32.33,29.75,24.37,24.080000000000002,23.740000000000002,23.56,23.36,23.17,22.98,22.79,22.6,22.22,N/A,N/A -2012,5,9,18,30,101430,100260,99140,76.21000000000001,0,0.8,0.78,0.75,0.72,0.6900000000000001,0.66,0.62,0.59,0.52,183.65,186.43,188.04,190.1,192.35,194.89000000000001,198.44,202.11,214.86,24.310000000000002,23.96,23.78,23.580000000000002,23.39,23.2,23.02,22.830000000000002,22.47,N/A,N/A -2012,5,9,19,30,101400,100240,99110,76.03,0,1.95,1.97,1.94,1.8900000000000001,1.84,1.79,1.72,1.6500000000000001,1.43,192.99,193.84,194.51,195.43,196.5,197.78,199.79,201.93,212.86,24.580000000000002,24.22,24.05,23.85,23.67,23.48,23.3,23.12,22.78,N/A,N/A -2012,5,9,20,30,101350,100190,99060,75.42,0,3.16,3.22,3.19,3.13,3.06,2.99,2.91,2.82,2.57,170.06,170.25,170.39000000000001,170.57,170.77,171,171.34,171.71,173.31,24.78,24.43,24.25,24.05,23.86,23.68,23.490000000000002,23.31,22.95,N/A,N/A -2012,5,9,21,30,101290,100130,99010,73.89,0,4.3100000000000005,4.4,4.34,4.21,4.07,3.9,3.63,3.36,2.2800000000000002,172.81,173.09,173.38,173.76,174.25,174.84,175.96,177.14000000000001,188.07,25.04,24.71,24.55,24.36,24.19,24.02,23.85,23.7,23.45,N/A,N/A -2012,5,9,22,30,101250,100090,98970,72.2,0,4.46,4.63,4.59,4.48,4.32,4.11,3.5,2.88,1.49,154.01,153.87,153.70000000000002,153.42000000000002,152.91,152.20000000000002,149.38,146.42000000000002,136.46,25.27,24.98,24.830000000000002,24.650000000000002,24.5,24.37,24.34,24.36,24.32,N/A,N/A -2012,5,9,23,30,101250,100090,98970,74.52,0,4.51,4.71,4.69,4.63,4.57,4.51,3.64,2.74,1.9000000000000001,166.88,166.86,166.83,166.78,166.75,166.72,163.5,160.08,155.48,25.26,24.97,24.810000000000002,24.62,24.45,24.28,24.310000000000002,24.43,24.45,N/A,N/A -2012,5,10,0,30,101260,100100,98980,74.39,0,4.44,4.68,4.7,4.67,4.63,4.59,4.55,4.51,2.54,180.18,180.25,180.22,180.20000000000002,180.20000000000002,180.20000000000002,180.25,180.3,178.34,25.22,24.94,24.78,24.580000000000002,24.400000000000002,24.21,24.02,23.84,23.94,N/A,N/A -2012,5,10,1,30,101240,100080,98960,75.68,0,4.65,4.94,4.98,4.97,4.96,4.93,4.89,4.8500000000000005,4.72,184.64000000000001,184.52,184.44,184.37,184.3,184.21,184.11,184.02,183.72,25.11,24.810000000000002,24.650000000000002,24.45,24.26,24.080000000000002,23.89,23.71,23.35,N/A,N/A -2012,5,10,2,30,101280,100120,99000,74.24,0,3.36,3.5100000000000002,3.52,3.49,3.46,3.42,3.36,3.3000000000000003,2.92,192.72,192.17000000000002,191.8,191.36,190.87,190.31,189.36,188.33,177.6,25.16,24.87,24.71,24.52,24.34,24.16,23.98,23.81,23.6,N/A,N/A -2012,5,10,3,30,101270,100110,98990,73.92,0,1.57,1.6,1.59,1.56,1.54,1.5,1.45,1.3900000000000001,1.01,198.37,197.56,197.03,196.44,195.83,195.18,194.27,193.38,172.76,25.080000000000002,24.79,24.62,24.43,24.25,24.07,23.89,23.72,23.51,N/A,N/A -2012,5,10,4,30,101270,100110,98990,73.60000000000001,0,0.64,0.64,0.62,0.6,0.5700000000000001,0.54,0.64,0.8200000000000001,1.98,286.16,289.99,293.11,297.96,306.69,318.52,340.41,10.66,42.03,25.060000000000002,24.77,24.62,24.43,24.27,24.11,24,23.91,23.85,N/A,N/A -2012,5,10,5,30,101270,100110,98990,74.44,0,1.72,1.79,1.8,1.79,1.79,1.79,1.79,1.78,1.77,335.99,337.49,338.36,339.3,340.19,341.07,342.05,343.01,346.04,25.03,24.72,24.560000000000002,24.36,24.18,23.990000000000002,23.79,23.61,23.240000000000002,N/A,N/A -2012,5,10,6,30,101280,100120,98990,73.11,0,2.61,2.7600000000000002,2.8000000000000003,2.82,2.84,2.86,2.89,2.91,2.97,15.02,16.12,16.77,17.47,18.17,18.89,19.73,20.55,22.650000000000002,25.150000000000002,24.84,24.67,24.47,24.28,24.1,23.91,23.73,23.36,N/A,N/A -2012,5,10,7,30,101290,100130,99010,75.38,0,3.75,3.99,4.05,4.08,4.11,4.13,4.14,4.16,4.18,41.47,41.83,41.96,42.1,42.230000000000004,42.35,42.49,42.62,42.92,25.13,24.8,24.63,24.43,24.240000000000002,24.05,23.85,23.67,23.28,N/A,N/A -2012,5,10,8,30,101250,100090,98970,73.99,0,4.54,4.86,4.93,4.97,5,5.0200000000000005,5.04,5.0600000000000005,5.09,62.25,62.59,62.81,63,63.2,63.39,63.6,63.79,64.24,25.18,24.85,24.68,24.48,24.29,24.1,23.91,23.72,23.34,N/A,N/A -2012,5,10,9,30,101270,100110,98990,71.25,0,6.28,6.82,6.97,7.05,7.11,7.16,7.2,7.23,7.28,80.83,81.11,81.24,81.36,81.47,81.58,81.68,81.77,81.97,25.43,25.12,24.94,24.75,24.560000000000002,24.37,24.17,23.990000000000002,23.6,N/A,N/A -2012,5,10,10,30,101270,100110,98980,70.82000000000001,0,7.640000000000001,8.3,8.46,8.53,8.58,8.6,8.620000000000001,8.620000000000001,8.620000000000001,84.9,85.04,85.14,85.24,85.33,85.42,85.5,85.57000000000001,85.72,25.490000000000002,25.18,25.01,24.8,24.61,24.43,24.23,24.04,23.66,N/A,N/A -2012,5,10,11,30,101280,100120,99000,71.99,0,7.96,8.65,8.8,8.88,8.94,8.97,8.98,8.99,9,87,87.27,87.4,87.54,87.66,87.78,87.9,88.01,88.23,25.240000000000002,24.900000000000002,24.73,24.53,24.330000000000002,24.14,23.95,23.76,23.37,N/A,N/A -2012,5,10,12,30,101280,100120,99000,73.60000000000001,0,7.15,7.7700000000000005,7.92,8,8.06,8.1,8.13,8.15,8.18,89.69,90.08,90.3,90.53,90.73,90.93,91.12,91.3,91.68,25.2,24.86,24.69,24.490000000000002,24.29,24.1,23.91,23.72,23.34,N/A,N/A -2012,5,10,13,30,101310,100150,99030,72.13,0,7.68,8.36,8.540000000000001,8.63,8.700000000000001,8.74,8.78,8.8,8.84,96.41,96.7,96.85000000000001,97,97.13,97.25,97.38,97.5,97.73,25.32,24.990000000000002,24.82,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A -2012,5,10,14,30,101300,100150,99020,74.02,0,7.94,8.64,8.81,8.91,8.97,9.01,9.040000000000001,9.06,9.09,100.33,100.58,100.78,100.97,101.14,101.3,101.46000000000001,101.61,101.91,25.310000000000002,24.97,24.8,24.6,24.41,24.22,24.02,23.830000000000002,23.45,N/A,N/A -2012,5,10,15,30,101320,100160,99030,72.18,0,7.03,7.61,7.75,7.8100000000000005,7.86,7.890000000000001,7.9,7.91,7.92,115.35000000000001,115.05,114.9,114.76,114.61,114.48,114.34,114.22,113.96000000000001,25.44,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A -2012,5,10,16,30,101320,100160,99040,73.89,0,7.01,7.59,7.72,7.79,7.83,7.86,7.88,7.890000000000001,7.9,109.56,109.64,109.69,109.72,109.74000000000001,109.75,109.76,109.77,109.78,25.39,25.060000000000002,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A -2012,5,10,17,30,101280,100130,99000,74.76,0,6.73,7.29,7.43,7.51,7.57,7.61,7.640000000000001,7.66,7.69,108.67,109.23,109.51,109.72,109.89,110.03,110.15,110.26,110.43,25.42,25.080000000000002,24.91,24.71,24.52,24.330000000000002,24.13,23.94,23.56,N/A,N/A -2012,5,10,18,30,101310,100150,99030,74.98,0,7.32,7.94,8.08,8.15,8.2,8.23,8.25,8.27,8.28,111.12,111.26,111.4,111.56,111.72,111.89,112.06,112.22,112.56,25.39,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.91,23.53,N/A,N/A -2012,5,10,19,30,101250,100100,98970,78.32000000000001,0,6.92,7.55,7.71,7.8,7.86,7.9,7.930000000000001,7.95,7.97,109.77,110.01,110.03,110.03,110.01,109.99000000000001,109.96000000000001,109.93,109.86,25.36,25.02,24.85,24.650000000000002,24.46,24.26,24.07,23.88,23.490000000000002,N/A,N/A -2012,5,10,20,30,101160,100000,98880,76.73,0,8.92,9.75,9.96,10.07,10.14,10.18,10.21,10.22,10.24,110.81,111,111.16,111.31,111.43,111.55,111.66,111.76,111.97,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.81,23.43,N/A,N/A -2012,5,10,21,30,101130,99980,98860,78.26,0,8.05,8.8,8.99,9.1,9.18,9.24,9.28,9.31,9.36,117.21000000000001,117.33,117.4,117.47,117.54,117.60000000000001,117.65,117.7,117.81,25.44,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A -2012,5,10,22,30,101030,99880,98760,81.18,0,8.69,9.52,9.73,9.85,9.93,9.98,10.03,10.06,10.11,110.04,110.28,110.43,110.57000000000001,110.7,110.83,110.95,111.08,111.33,25.400000000000002,25.060000000000002,24.89,24.68,24.490000000000002,24.3,24.11,23.92,23.54,N/A,N/A -2012,5,10,23,30,101030,99880,98760,82.74,0,9.56,10.49,10.75,10.89,10.98,11.040000000000001,11.08,11.11,11.13,114.4,114.37,114.35000000000001,114.3,114.26,114.2,114.14,114.09,113.96000000000001,25.37,25.04,24.86,24.650000000000002,24.46,24.27,24.07,23.89,23.5,N/A,N/A -2012,5,11,0,30,101010,99860,98740,83.82000000000001,0,8.4,9.23,9.47,9.61,9.71,9.8,9.86,9.92,10.01,122.79,122.89,122.89,122.88,122.87,122.86,122.85000000000001,122.84,122.81,25.330000000000002,25,24.830000000000002,24.62,24.43,24.240000000000002,24.05,23.86,23.48,N/A,N/A -2012,5,11,1,30,101000,99850,98730,82.92,0,8.05,8.81,9.040000000000001,9.16,9.25,9.3,9.34,9.38,9.41,119.53,119.23,119.24000000000001,119.31,119.38,119.46000000000001,119.56,119.67,119.91,25.580000000000002,25.26,25.1,24.89,24.71,24.51,24.32,24.13,23.75,N/A,N/A -2012,5,11,2,30,100980,99830,98710,82.78,0,9.040000000000001,9.870000000000001,10.07,10.17,10.24,10.290000000000001,10.32,10.34,10.38,126.28,126.33,126.42,126.49000000000001,126.57000000000001,126.64,126.72,126.8,127.04,25.61,25.29,25.12,24.93,24.740000000000002,24.560000000000002,24.37,24.19,23.830000000000002,N/A,N/A -2012,5,11,3,30,100960,99810,98690,83,0,9.88,10.950000000000001,11.22,11.38,11.49,11.57,11.620000000000001,11.66,11.72,131.92000000000002,132.15,132.27,132.38,132.48,132.56,132.64000000000001,132.71,132.86,25.68,25.36,25.18,24.98,24.79,24.61,24.41,24.22,23.84,N/A,N/A -2012,5,11,4,30,100930,99780,98660,83.94,0,9.56,10.540000000000001,10.790000000000001,10.93,11.03,11.1,11.14,11.18,11.22,134.97,135.03,135.04,135.04,135.04,135.03,135.02,135.01,134.99,25.6,25.28,25.11,24.91,24.72,24.53,24.34,24.150000000000002,23.78,N/A,N/A -2012,5,11,5,30,100980,99830,98710,85.58,0,7.79,8.66,8.91,9.08,9.21,9.31,9.38,9.450000000000001,9.56,159.96,159.70000000000002,159.53,159.4,159.3,159.21,159.14000000000001,159.08,159,25.67,25.36,25.2,25,24.82,24.63,24.44,24.26,23.88,N/A,N/A -2012,5,11,6,30,100960,99810,98700,82.41,0,8.3,9.11,9.31,9.42,9.5,9.55,9.59,9.61,9.63,153.01,153.18,153.24,153.29,153.32,153.35,153.37,153.39000000000001,153.42000000000002,25.67,25.38,25.21,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.89,N/A,N/A -2012,5,11,7,30,100980,99820,98700,85.64,85,6.19,7.05,7.21,7.34,7.43,7.51,7.5600000000000005,7.6000000000000005,7.65,154.57,155,154.70000000000002,154.45000000000002,154.15,153.89000000000001,153.61,153.35,152.8,25.04,24.73,24.53,24.36,24.150000000000002,23.97,23.78,23.59,23.22,N/A,N/A -2012,5,11,8,30,101070,99900,98760,88.84,2.2,6.41,6.49,6.390000000000001,6.19,5.96,5.69,5.3,4.92,3.93,37.87,38.47,38.95,39.62,40.49,41.59,43.92,46.37,55.34,21.830000000000002,21.38,21.2,21.03,20.88,20.75,20.66,20.59,20.69,N/A,N/A -2012,5,11,9,30,101050,99890,98760,89.76,0,5,5.1000000000000005,5.04,4.93,4.65,4.25,4,3.8200000000000003,3.52,63.870000000000005,64.67,65.44,66.99,76.60000000000001,92.41,101.83,108.28,120.91,22.73,22.35,22.19,22.03,22.12,22.42,22.6,22.72,22.54,N/A,N/A -2012,5,11,10,30,101030,99870,98740,85.92,0,6.6000000000000005,6.96,6.98,6.93,6.87,6.8,6.7,6.6000000000000005,6.32,97.11,97.9,98.23,98.68,99.19,99.76,100.63,101.52,105.83,23.64,23.23,23.05,22.85,22.67,22.490000000000002,22.3,22.14,21.81,N/A,N/A -2012,5,11,11,30,101010,99850,98730,88.10000000000001,0,6.04,6.36,6.36,6.3100000000000005,6.25,6.17,6.07,5.97,5.7,106.64,108.83,110.14,111.56,112.93,114.33,115.89,117.41,122.09,24.2,23.82,23.64,23.44,23.25,23.06,22.86,22.68,22.3,N/A,N/A -2012,5,11,12,30,101070,99910,98800,83.92,0.7000000000000001,6.96,7.59,7.73,7.8,7.8500000000000005,7.87,7.890000000000001,7.9,7.9,174.11,173.91,173.86,173.84,173.82,173.81,173.81,173.82,173.86,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.52,24.32,24.14,23.76,N/A,N/A -2012,5,11,13,30,101130,99970,98860,82.94,0,7.8,8.55,8.73,8.84,8.9,8.950000000000001,8.98,9,9.03,174.41,174.16,174.17000000000002,174.16,174.13,174.11,174.08,174.05,173.97,25.67,25.37,25.2,25.01,24.82,24.63,24.44,24.25,23.88,N/A,N/A -2012,5,11,14,30,101210,100060,98940,82.76,0,7.26,7.91,8.07,8.15,8.2,8.23,8.25,8.26,8.27,166.74,166.98,167.1,167.18,167.24,167.3,167.35,167.39000000000001,167.45000000000002,25.71,25.42,25.26,25.060000000000002,24.87,24.68,24.490000000000002,24.310000000000002,23.93,N/A,N/A -2012,5,11,15,30,101260,100110,98990,81.88,0,7.7,8.46,8.66,8.78,8.870000000000001,8.93,8.98,9.01,9.07,170.88,170.93,170.93,170.93,170.94,170.94,170.94,170.94,170.95000000000002,25.740000000000002,25.44,25.28,25.080000000000002,24.900000000000002,24.71,24.52,24.330000000000002,23.95,N/A,N/A -2012,5,11,16,30,101270,100110,98990,84.06,0,7.82,8.57,8.76,8.86,8.93,8.97,9,9.02,9.040000000000001,162.9,162.8,162.84,162.9,162.97,163.04,163.12,163.20000000000002,163.38,25.62,25.310000000000002,25.14,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A -2012,5,11,17,30,101280,100120,99000,83.88,0,7.3500000000000005,8.07,8.25,8.36,8.44,8.5,8.540000000000001,8.58,8.63,168.24,168.58,168.72,168.84,168.94,169.02,169.09,169.15,169.26,25.7,25.400000000000002,25.23,25.03,24.85,24.66,24.46,24.28,23.900000000000002,N/A,N/A -2012,5,11,18,30,101300,100140,99020,83.04,0,8.370000000000001,9.21,9.42,9.53,9.620000000000001,9.67,9.71,9.74,9.77,172.56,172.49,172.51,172.53,172.57,172.61,172.65,172.69,172.79,25.76,25.46,25.3,25.1,24.91,24.72,24.53,24.35,23.97,N/A,N/A -2012,5,11,19,30,101330,100180,99060,81.21000000000001,0,8.6,9.47,9.68,9.790000000000001,9.870000000000001,9.92,9.950000000000001,9.97,9.99,173.02,173.1,173.19,173.28,173.36,173.44,173.52,173.61,173.78,25.84,25.55,25.39,25.19,25.01,24.82,24.62,24.44,24.060000000000002,N/A,N/A -2012,5,11,20,30,101260,100100,98980,80.48,0,8.36,9.23,9.46,9.59,9.69,9.76,9.81,9.85,9.9,171.8,171.92000000000002,172,172.05,172.1,172.13,172.16,172.19,172.22,25.900000000000002,25.62,25.46,25.27,25.080000000000002,24.900000000000002,24.7,24.52,24.14,N/A,N/A -2012,5,11,21,30,101220,100070,98950,81.86,0,8.870000000000001,9.77,10.02,10.15,10.24,10.3,10.35,10.38,10.41,168.22,168.36,168.45000000000002,168.52,168.6,168.66,168.72,168.77,168.87,25.82,25.54,25.38,25.18,25,24.810000000000002,24.62,24.43,24.060000000000002,N/A,N/A -2012,5,11,22,30,101160,100010,98890,81.95,0,9.27,10.25,10.5,10.64,10.75,10.82,10.86,10.9,10.94,167.87,168,168.07,168.15,168.21,168.27,168.33,168.39000000000001,168.5,25.8,25.52,25.36,25.17,24.990000000000002,24.8,24.61,24.43,24.05,N/A,N/A -2012,5,11,23,30,101160,100010,98890,81.02,0,10.01,11.1,11.4,11.58,11.700000000000001,11.790000000000001,11.85,11.9,11.950000000000001,171.48,171.66,171.74,171.83,171.9,171.97,172.04,172.11,172.23,25.830000000000002,25.57,25.41,25.22,25.04,24.85,24.66,24.47,24.1,N/A,N/A -2012,5,12,0,30,101180,100030,98910,76.01,0,7.99,8.81,9.040000000000001,9.18,9.28,9.35,9.41,9.450000000000001,9.52,177.21,177.21,177.21,177.18,177.14000000000001,177.09,177.04,177,176.89000000000001,25.97,25.72,25.560000000000002,25.37,25.19,25.01,24.82,24.64,24.27,N/A,N/A -2012,5,12,1,30,101210,100050,98940,80.94,0,7.5600000000000005,8.36,8.59,8.74,8.84,8.92,8.98,9.03,9.09,162.36,162.59,162.77,162.91,163.03,163.12,163.21,163.28,163.42000000000002,25.86,25.6,25.45,25.26,25.080000000000002,24.89,24.7,24.51,24.14,N/A,N/A -2012,5,12,2,30,101350,100200,99080,79.45,0,5.86,6.48,6.66,6.78,6.88,6.95,7.01,7.07,7.140000000000001,170.53,170.51,170.51,170.52,170.55,170.57,170.61,170.63,170.71,25.990000000000002,25.73,25.57,25.38,25.2,25.01,24.82,24.63,24.25,N/A,N/A -2012,5,12,3,30,101360,100210,99090,81.05,0,6.12,6.640000000000001,6.75,6.8100000000000005,6.8500000000000005,6.87,6.890000000000001,6.91,6.93,182.56,183,183.16,183.29,183.4,183.5,183.58,183.65,183.76,25.900000000000002,25.63,25.48,25.28,25.1,24.92,24.73,24.54,24.17,N/A,N/A -2012,5,12,4,30,101420,100270,99150,79.98,0.4,6.7,7.32,7.46,7.54,7.58,7.61,7.63,7.640000000000001,7.640000000000001,212.21,211.84,211.71,211.67000000000002,211.65,211.67000000000002,211.71,211.76,211.89000000000001,26.01,25.76,25.6,25.400000000000002,25.22,25.04,24.85,24.66,24.29,N/A,N/A -2012,5,12,5,30,101350,100170,99030,89.82000000000001,200,9.82,10.32,10.35,10.31,10.25,10.19,10.1,9.99,9.5,15.88,12.4,10.85,9.120000000000001,7.11,5.17,2.62,0.19,354.28000000000003,21.23,20.69,20.5,20.330000000000002,20.17,20.02,19.88,19.76,19.56,N/A,N/A -2012,5,12,6,30,101400,100230,99090,83.35000000000001,0,1.75,1.86,1.9100000000000001,1.96,2.0100000000000002,2.05,2.82,4.08,5.51,192.1,191.68,191.78,191.89000000000001,192.31,192.96,191.67000000000002,189.31,184.58,22.53,22.16,21.990000000000002,21.79,21.6,21.400000000000002,21.56,21.79,22.47,N/A,N/A -2012,5,12,7,30,101510,100340,99210,83.96000000000001,0,2.11,2.14,2.13,2.11,2.08,2.06,2.04,2.0300000000000002,2.56,120.72,121.63,122.47,123.53,124.8,126.24000000000001,129.49,133.07,158.36,22.93,22.56,22.38,22.19,22,21.81,21.63,21.47,21.47,N/A,N/A -2012,5,12,8,30,101520,100350,99220,84.35000000000001,0,0.6900000000000001,0.67,0.64,0.6,0.5700000000000001,0.52,0.81,1.49,2.36,64.38,66.35,68.54,71.67,77.9,86.42,110.13,157.99,166.57,23.29,22.95,22.78,22.59,22.41,22.240000000000002,22.23,22.29,22.45,N/A,N/A -2012,5,12,9,30,101530,100370,99240,84.39,0,0.99,0.97,0.9400000000000001,0.9,0.86,0.81,1,1.3800000000000001,2.13,66.06,68.53,70.62,74,80.98,91.05,114.57000000000001,150.93,169.33,23.6,23.26,23.09,22.91,22.73,22.57,22.51,22.490000000000002,22.44,N/A,N/A -2012,5,12,10,30,101580,100410,99280,85.28,0,1.58,1.6,1.58,1.55,1.51,1.46,1.33,1.19,0.8300000000000001,42.31,42.46,42.58,42.800000000000004,43.18,43.7,46.300000000000004,49.21,146.85,23.740000000000002,23.41,23.240000000000002,23.04,22.85,22.67,22.490000000000002,22.330000000000002,22.25,N/A,N/A -2012,5,12,11,30,101580,100420,99290,85.8,0,0.26,0.27,0.28,0.3,0.35000000000000003,0.43,0.6,0.86,2.13,105.94,117.28,125.41,135.5,145.19,155.91,164.9,175.06,186.22,23.88,23.55,23.38,23.19,23.01,22.84,22.68,22.53,22.56,N/A,N/A -2012,5,12,12,30,101680,100520,99380,86.02,0,1.31,1.33,1.31,1.29,1.27,1.25,1.22,1.19,1.09,6.16,5.68,5.42,5.13,4.83,4.5,4.13,3.7600000000000002,2.43,24.07,23.740000000000002,23.56,23.36,23.17,22.98,22.79,22.61,22.23,N/A,N/A -2012,5,12,13,30,101700,100530,99400,85.68,0,3.23,3.31,3.29,3.25,3.21,3.16,3.11,3.0500000000000003,2.93,317.19,317.15000000000003,317.1,317.03000000000003,316.96,316.89,316.79,316.7,316.42,24.05,23.71,23.53,23.330000000000002,23.14,22.95,22.75,22.57,22.19,N/A,N/A -2012,5,12,14,30,101760,100590,99460,85.36,0,2.38,2.4,2.38,2.34,2.3000000000000003,2.2600000000000002,2.2,2.15,2,300.94,300.5,300.25,299.95,299.63,299.27,298.79,298.3,296.64,23.900000000000002,23.55,23.38,23.18,22.990000000000002,22.8,22.61,22.42,22.05,N/A,N/A -2012,5,12,15,30,101750,100590,99450,85.39,0,1.79,1.82,1.82,1.8,1.79,1.77,1.77,1.77,2.04,275.29,274.38,273.68,272.77,271.71,270.45,268.24,265.77,252.76000000000002,23.990000000000002,23.650000000000002,23.48,23.29,23.1,22.92,22.740000000000002,22.57,22.34,N/A,N/A -2012,5,12,16,30,101740,100580,99450,84.76,0,2.29,2.4,2.42,2.42,2.43,2.44,2.44,2.44,2.46,300.45,300.57,300.63,300.75,300.90000000000003,301.08,301.34000000000003,301.62,302.43,24.25,23.91,23.740000000000002,23.54,23.35,23.17,22.98,22.8,22.44,N/A,N/A -2012,5,12,17,30,101760,100600,99470,77.38,0,2.83,2.87,2.84,2.8000000000000003,2.7600000000000002,2.72,2.67,2.63,2.5300000000000002,344.02,344.12,344.09000000000003,344.03000000000003,343.98,343.94,343.89,343.83,343.69,24.47,24.11,23.93,23.73,23.53,23.34,23.14,22.96,22.57,N/A,N/A -2012,5,12,18,30,101740,100570,99440,74.23,0,0.74,0.74,0.72,0.7000000000000001,0.68,0.66,0.64,0.61,0.56,58.67,58.660000000000004,58.5,58.26,57.99,57.67,57.19,56.68,54.81,24.64,24.29,24.12,23.92,23.72,23.53,23.34,23.16,22.78,N/A,N/A -2012,5,12,19,30,101720,100560,99430,73.86,0,1.28,1.29,1.27,1.24,1.22,1.19,1.1500000000000001,1.12,1.03,124.26,124.19,123.87,123.48,123.03,122.53,121.85000000000001,121.18,118.83,24.85,24.5,24.32,24.12,23.93,23.740000000000002,23.55,23.37,23,N/A,N/A -2012,5,12,20,30,101690,100530,99400,75.60000000000001,0,3.15,3.23,3.2,3.14,3.08,3.0100000000000002,2.9,2.7800000000000002,2.19,160.6,160.87,160.99,161.14000000000001,161.33,161.55,161.9,162.27,164.1,25.05,24.7,24.53,24.330000000000002,24.16,23.97,23.8,23.63,23.36,N/A,N/A -2012,5,12,21,30,101660,100500,99370,76.62,0,3.5300000000000002,3.64,3.62,3.58,3.52,3.46,3.37,3.2800000000000002,2.99,165.57,165.82,165.96,166.13,166.29,166.46,166.67000000000002,166.88,167.47,25.240000000000002,24.900000000000002,24.73,24.54,24.36,24.17,23.990000000000002,23.81,23.47,N/A,N/A -2012,5,12,22,30,101640,100480,99350,74.38,0,3.7,3.84,3.83,3.7800000000000002,3.73,3.67,3.6,3.5300000000000002,3.31,193.78,194.54,195.04,195.66,196.34,197.1,198.13,199.19,203.08,25.46,25.150000000000002,24.98,24.79,24.6,24.42,24.240000000000002,24.060000000000002,23.72,N/A,N/A -2012,5,12,23,30,101650,100490,99370,75.91,0,4.42,4.68,4.68,4.64,4.59,4.53,4.45,4.37,4.21,198.12,198.47,198.74,199.14000000000001,199.54,199.98000000000002,200.49,201,202.08,25.44,25.150000000000002,24.990000000000002,24.79,24.61,24.42,24.22,24.03,23.64,N/A,N/A -2012,5,13,0,30,101620,100460,99330,76.47,0,4.74,5.0200000000000005,5.04,5.01,4.97,4.92,4.8500000000000005,4.76,4.32,213.87,214.29,214.49,214.73000000000002,215,215.31,215.82,216.39000000000001,220.4,25.3,25.02,24.86,24.67,24.490000000000002,24.310000000000002,24.13,23.96,23.68,N/A,N/A -2012,5,13,1,30,101630,100470,99340,78.71000000000001,0,5.39,5.64,5.59,5.44,5.2,4.86,4.45,4.07,3.96,235.88,236.47,237.06,238.20000000000002,240.93,245.17000000000002,254.43,264.6,275.67,25.17,24.900000000000002,24.76,24.61,24.5,24.44,24.400000000000002,24.37,24.09,N/A,N/A -2012,5,13,2,30,101710,100540,99420,80.18,0,4.9,5.29,5.39,5.48,5.55,5.62,5.69,5.76,5.9,280.95,283.85,285.6,287.58,289.41,291.24,293.04,294.73,297.40000000000003,25.12,24.830000000000002,24.67,24.48,24.29,24.11,23.92,23.740000000000002,23.36,N/A,N/A -2012,5,13,3,30,101750,100590,99460,79.28,0,5.03,5.33,5.3500000000000005,5.32,5.28,5.23,5.18,5.13,5.2700000000000005,282.19,282.98,283.61,284.6,285.95,287.64,295.63,305.57,315.31,25.22,24.95,24.8,24.62,24.46,24.32,24.34,24.43,24.310000000000002,N/A,N/A -2012,5,13,4,30,101760,100600,99470,68.79,0,3.94,4.16,4.17,4.16,4.14,4.13,4.11,4.1,4.1,358.99,359.06,359.17,359.29,359.40000000000003,359.51,359.68,359.85,0.44,25.36,25.09,24.94,24.75,24.57,24.39,24.2,24.03,23.67,N/A,N/A -2012,5,13,5,30,101780,100620,99490,71.11,0,4.04,4.32,4.3500000000000005,4.36,4.36,4.36,4.3500000000000005,4.34,4.3100000000000005,345.40000000000003,345.59000000000003,345.72,345.88,346.02,346.18,346.39,346.59000000000003,347.07,25,24.7,24.54,24.34,24.16,23.97,23.78,23.6,23.23,N/A,N/A -2012,5,13,6,30,101820,100650,99510,78.3,0,5.32,5.63,5.69,5.71,5.71,5.71,5.71,5.7,5.69,15.860000000000001,15.84,15.82,15.8,15.790000000000001,15.780000000000001,15.77,15.76,15.69,23.76,23.39,23.22,23.02,22.830000000000002,22.64,22.45,22.28,21.91,N/A,N/A -2012,5,13,7,30,101840,100670,99540,78.98,0,5.39,5.7,5.75,5.76,5.75,5.74,5.72,5.69,5.64,15.84,15.91,15.88,15.84,15.790000000000001,15.73,15.66,15.58,15.33,23.71,23.34,23.16,22.96,22.78,22.59,22.400000000000002,22.22,21.86,N/A,N/A -2012,5,13,8,30,101820,100650,99520,79.31,0,5.47,5.7700000000000005,5.8100000000000005,5.8100000000000005,5.8,5.79,5.76,5.73,5.67,19.92,20.07,20.13,20.18,20.22,20.25,20.25,20.25,20.18,23.6,23.21,23.03,22.84,22.650000000000002,22.46,22.27,22.09,21.72,N/A,N/A -2012,5,13,9,30,101850,100680,99540,82.14,0,5.68,6.01,6.0600000000000005,6.08,6.08,6.07,6.05,6.03,5.98,20,20.04,20.07,20.080000000000002,20.09,20.11,20.09,20.080000000000002,19.98,23.02,22.62,22.43,22.23,22.04,21.85,21.66,21.48,21.11,N/A,N/A -2012,5,13,10,30,101880,100710,99560,84.01,0,5.99,6.3100000000000005,6.34,6.33,6.3100000000000005,6.2700000000000005,6.23,6.18,6.0600000000000005,23.98,24.13,24.21,24.29,24.34,24.400000000000002,24.45,24.490000000000002,24.560000000000002,22.53,22.1,21.91,21.7,21.51,21.32,21.13,20.95,20.57,N/A,N/A -2012,5,13,11,30,101920,100740,99590,86.59,0,6.12,6.45,6.5,6.5,6.49,6.47,6.45,6.41,6.34,22.94,22.93,22.92,22.91,22.900000000000002,22.87,22.85,22.82,22.740000000000002,22.01,21.55,21.35,21.14,20.95,20.76,20.56,20.38,20,N/A,N/A -2012,5,13,12,30,101950,100760,99620,84.79,0,6.87,7.2700000000000005,7.34,7.3500000000000005,7.34,7.32,7.3,7.2700000000000005,7.18,24.060000000000002,24.12,24.17,24.2,24.22,24.240000000000002,24.25,24.26,24.25,21.650000000000002,21.16,20.95,20.740000000000002,20.54,20.35,20.16,19.98,19.6,N/A,N/A -2012,5,13,13,30,101980,100800,99650,82.01,0,6.76,7.15,7.22,7.24,7.24,7.23,7.21,7.19,7.12,19.1,19.17,19.2,19.240000000000002,19.26,19.28,19.29,19.3,19.29,21.62,21.13,20.93,20.72,20.52,20.330000000000002,20.13,19.95,19.580000000000002,N/A,N/A -2012,5,13,14,30,102000,100820,99670,79.94,0,5.8,6.12,6.18,6.21,6.22,6.22,6.22,6.21,6.2,9.9,9.89,9.92,9.93,9.950000000000001,9.950000000000001,9.950000000000001,9.94,9.9,21.75,21.28,21.09,20.88,20.68,20.490000000000002,20.3,20.12,19.740000000000002,N/A,N/A -2012,5,13,15,30,102020,100840,99690,75.42,0,4.72,5,5.07,5.11,5.15,5.17,5.19,5.21,5.24,5.78,5.33,5.0600000000000005,4.8100000000000005,4.57,4.3500000000000005,4.12,3.91,3.49,22.32,21.89,21.69,21.48,21.28,21.09,20.89,20.71,20.31,N/A,N/A -2012,5,13,16,30,102010,100830,99690,72.36,0,4.41,4.66,4.72,4.75,4.78,4.79,4.8,4.82,4.83,350.19,350.74,351.06,351.35,351.62,351.87,352.12,352.35,352.82,22.79,22.38,22.19,21.98,21.78,21.59,21.39,21.21,20.81,N/A,N/A -2012,5,13,17,30,101980,100800,99660,71.36,0,4.13,4.37,4.42,4.46,4.48,4.5,4.51,4.53,4.55,336.01,336.49,336.87,337.22,337.55,337.86,338.17,338.46,339.05,23.28,22.89,22.7,22.5,22.3,22.11,21.91,21.72,21.330000000000002,N/A,N/A -2012,5,13,18,30,101950,100770,99630,67.39,0,4.34,4.6000000000000005,4.65,4.69,4.71,4.73,4.74,4.75,4.7700000000000005,319.92,320.65000000000003,321.1,321.55,321.95,322.33,322.72,323.07,323.83,23.69,23.31,23.13,22.93,22.73,22.54,22.34,22.16,21.77,N/A,N/A -2012,5,13,19,30,101910,100740,99610,64.82000000000001,0,5.13,5.44,5.5,5.5200000000000005,5.54,5.54,5.54,5.54,5.5200000000000005,309.69,310.42,310.91,311.37,311.79,312.18,312.58,312.94,313.7,24.21,23.86,23.68,23.48,23.29,23.09,22.900000000000002,22.71,22.330000000000002,N/A,N/A -2012,5,13,20,30,101850,100670,99540,65.71000000000001,0,5.67,6.04,6.1000000000000005,6.13,6.13,6.140000000000001,6.13,6.12,6.09,306.29,306.91,307.3,307.69,308.06,308.42,308.81,309.18,310.04,24.44,24.1,23.92,23.73,23.54,23.36,23.17,22.990000000000002,22.62,N/A,N/A -2012,5,13,21,30,101810,100640,99510,65.13,0,5.43,5.8100000000000005,5.88,5.91,5.91,5.91,5.91,5.9,5.86,309.94,310.55,310.91,311.26,311.57,311.88,312.19,312.49,313.16,24.810000000000002,24.5,24.330000000000002,24.13,23.94,23.76,23.56,23.38,23.01,N/A,N/A -2012,5,13,22,30,101760,100590,99460,64.58,0,5.3100000000000005,5.76,5.8500000000000005,5.9,5.93,5.95,5.96,5.97,5.98,310.85,311.65000000000003,312.18,312.71,313.2,313.66,314.14,314.59000000000003,315.58,25.23,24.95,24.79,24.6,24.42,24.23,24.04,23.87,23.5,N/A,N/A -2012,5,13,23,30,101720,100550,99420,64.49,0,5.5200000000000005,6,6.09,6.140000000000001,6.18,6.2,6.23,6.25,6.3100000000000005,306.93,307.8,308.34000000000003,308.90000000000003,309.43,309.96,310.55,311.13,312.6,25.48,25.23,25.080000000000002,24.89,24.71,24.53,24.35,24.17,23.82,N/A,N/A -2012,5,14,0,30,101710,100550,99420,64.89,0,5.86,6.4,6.53,6.6000000000000005,6.65,6.69,6.72,6.75,6.8,323.6,324.22,324.61,324.99,325.35,325.69,326.06,326.41,327.16,25.76,25.53,25.39,25.2,25.02,24.84,24.650000000000002,24.48,24.11,N/A,N/A -2012,5,14,1,30,101700,100540,99410,66.73,0,5.47,5.97,6.09,6.16,6.21,6.26,6.3,6.3500000000000005,6.49,330.45,331.11,331.51,331.96,332.42,332.92,333.51,334.1,335.87,25.69,25.47,25.32,25.14,24.96,24.79,24.61,24.44,24.1,N/A,N/A -2012,5,14,2,30,101710,100550,99420,64.55,0,5.2700000000000005,5.66,5.73,5.75,5.76,5.7700000000000005,5.7700000000000005,5.76,5.75,6.03,7.16,7.71,8.22,8.700000000000001,9.14,9.59,10.01,10.9,25.87,25.650000000000002,25.5,25.310000000000002,25.14,24.96,24.77,24.59,24.22,N/A,N/A -2012,5,14,3,30,101740,100570,99450,66.62,0,5.71,6.23,6.36,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,27.990000000000002,27.84,27.740000000000002,27.650000000000002,27.580000000000002,27.52,27.46,27.400000000000002,27.3,25.51,25.25,25.09,24.900000000000002,24.71,24.53,24.34,24.16,23.78,N/A,N/A -2012,5,14,4,30,101720,100560,99430,65.33,0,5.09,5.5200000000000005,5.61,5.66,5.7,5.72,5.74,5.75,5.76,27.900000000000002,28.11,28.23,28.310000000000002,28.38,28.43,28.47,28.490000000000002,28.5,25.36,25.09,24.93,24.740000000000002,24.55,24.37,24.18,24,23.62,N/A,N/A -2012,5,14,5,30,101700,100540,99410,65.34,0,4.72,5.08,5.15,5.18,5.2,5.21,5.22,5.22,5.21,36.95,36.46,36.160000000000004,35.85,35.58,35.32,35.06,34.83,34.36,25.25,24.97,24.810000000000002,24.61,24.43,24.240000000000002,24.05,23.87,23.48,N/A,N/A -2012,5,14,6,30,101730,100560,99430,64.94,0,4.09,4.39,4.44,4.47,4.49,4.5,4.51,4.5200000000000005,4.53,53.18,52.85,52.64,52.43,52.25,52.07,51.870000000000005,51.7,51.32,25.16,24.87,24.7,24.51,24.32,24.13,23.94,23.75,23.37,N/A,N/A -2012,5,14,7,30,101720,100550,99420,66.22,0,3.72,3.95,3.99,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,50.38,50.370000000000005,50.35,50.31,50.28,50.24,50.19,50.15,50.04,25.02,24.72,24.55,24.35,24.16,23.97,23.78,23.6,23.21,N/A,N/A -2012,5,14,8,30,101700,100530,99400,66.09,0,3.87,4.12,4.17,4.19,4.2,4.21,4.22,4.22,4.23,44.21,44.050000000000004,43.96,43.86,43.75,43.660000000000004,43.550000000000004,43.45,43.22,24.92,24.61,24.44,24.25,24.060000000000002,23.87,23.67,23.490000000000002,23.1,N/A,N/A -2012,5,14,9,30,101710,100540,99410,67.95,0,3.61,3.8000000000000003,3.83,3.83,3.83,3.8200000000000003,3.81,3.8000000000000003,3.7800000000000002,42.82,42.86,42.89,42.9,42.9,42.89,42.88,42.86,42.800000000000004,24.76,24.44,24.28,24.080000000000002,23.89,23.7,23.5,23.32,22.94,N/A,N/A -2012,5,14,10,30,101730,100560,99430,68.55,0,3.59,3.79,3.83,3.85,3.86,3.87,3.87,3.87,3.87,48.97,48.92,48.89,48.85,48.800000000000004,48.75,48.7,48.660000000000004,48.54,24.59,24.27,24.1,23.900000000000002,23.71,23.52,23.32,23.14,22.75,N/A,N/A -2012,5,14,11,30,101760,100590,99460,67.71000000000001,0,2.87,3.02,3.0500000000000003,3.06,3.0700000000000003,3.0700000000000003,3.0700000000000003,3.08,3.08,45.75,45.56,45.46,45.35,45.25,45.160000000000004,45.04,44.92,44.68,24.580000000000002,24.26,24.09,23.89,23.7,23.51,23.31,23.13,22.740000000000002,N/A,N/A -2012,5,14,12,30,101780,100610,99470,67.58,0,3.04,3.18,3.2,3.21,3.21,3.21,3.21,3.21,3.2,43.9,43.75,43.69,43.62,43.550000000000004,43.5,43.42,43.36,43.22,24.5,24.17,24,23.8,23.61,23.42,23.23,23.04,22.66,N/A,N/A -2012,5,14,13,30,101800,100640,99500,68.21000000000001,0,2.77,2.91,2.94,2.95,2.96,2.96,2.97,2.97,2.97,37.27,37.38,37.44,37.49,37.53,37.58,37.62,37.660000000000004,37.74,24.46,24.13,23.96,23.76,23.56,23.38,23.18,22.990000000000002,22.61,N/A,N/A -2012,5,14,14,30,101830,100660,99530,69.37,0,3.16,3.29,3.3000000000000003,3.29,3.29,3.27,3.2600000000000002,3.25,3.23,18.22,18.52,18.75,18.96,19.16,19.34,19.53,19.7,20.07,24.38,24.05,23.87,23.67,23.490000000000002,23.3,23.1,22.92,22.54,N/A,N/A -2012,5,14,15,30,101840,100670,99530,68.43,0,3.04,3.17,3.18,3.17,3.17,3.16,3.15,3.13,3.11,12.85,13.07,13.18,13.3,13.43,13.55,13.68,13.8,14.11,24.34,23.990000000000002,23.82,23.63,23.44,23.25,23.06,22.87,22.490000000000002,N/A,N/A -2012,5,14,16,30,101830,100660,99530,66.23,0,2.52,2.63,2.65,2.66,2.67,2.67,2.68,2.68,2.69,46.480000000000004,46.51,46.43,46.35,46.27,46.2,46.13,46.06,45.92,24.44,24.1,23.92,23.73,23.54,23.35,23.150000000000002,22.97,22.59,N/A,N/A -2012,5,14,17,30,101790,100620,99490,63.72,0,1.77,1.81,1.81,1.8,1.79,1.78,1.76,1.75,1.72,93.64,93.07000000000001,92.62,92.16,91.71000000000001,91.26,90.76,90.29,89.19,24.560000000000002,24.22,24.04,23.85,23.650000000000002,23.47,23.27,23.09,22.71,N/A,N/A -2012,5,14,18,30,101760,100600,99460,62.97,0,1.73,1.75,1.73,1.71,1.69,1.6600000000000001,1.6400000000000001,1.61,1.56,129.16,129.05,128.92000000000002,128.79,128.65,128.51,128.35,128.19,127.76,24.650000000000002,24.3,24.13,23.92,23.740000000000002,23.55,23.35,23.17,22.78,N/A,N/A -2012,5,14,19,30,101730,100570,99430,61.86,0,2.07,2.1,2.07,2.04,2.0100000000000002,1.98,1.94,1.9100000000000001,1.84,149.18,149.39000000000001,149.48,149.59,149.70000000000002,149.79,149.92000000000002,150.05,150.34,24.77,24.42,24.25,24.04,23.85,23.67,23.47,23.28,22.900000000000002,N/A,N/A -2012,5,14,20,30,101650,100490,99350,63.370000000000005,0,3.89,4.05,4.05,4.03,4.01,3.99,3.96,3.92,3.86,144.8,144.75,144.76,144.76,144.77,144.76,144.75,144.75,144.73,24.77,24.41,24.23,24.03,23.84,23.650000000000002,23.45,23.27,22.88,N/A,N/A -2012,5,14,21,30,101600,100440,99310,64.32000000000001,0,4.72,4.97,4.99,4.98,4.97,4.95,4.93,4.9,4.83,146.87,146.98,147.02,147.06,147.09,147.12,147.14000000000001,147.17000000000002,147.18,24.71,24.37,24.19,23.990000000000002,23.8,23.62,23.42,23.240000000000002,22.85,N/A,N/A -2012,5,14,22,30,101550,100390,99260,63.870000000000005,0,4.6000000000000005,4.8500000000000005,4.87,4.87,4.8500000000000005,4.83,4.8,4.7700000000000005,4.7,156,156.01,156,155.99,155.97,155.94,155.91,155.88,155.8,24.650000000000002,24.32,24.150000000000002,23.96,23.77,23.580000000000002,23.38,23.2,22.82,N/A,N/A -2012,5,14,23,30,101540,100370,99240,64.01,0,4.69,4.94,4.96,4.95,4.93,4.9,4.86,4.82,4.71,157.34,157.27,157.22,157.15,157.07,156.99,156.86,156.73,156.3,24.64,24.32,24.150000000000002,23.95,23.77,23.580000000000002,23.39,23.21,22.84,N/A,N/A -2012,5,15,0,30,101500,100330,99200,62.79,0,4.71,4.98,5.01,5.01,4.99,4.98,4.95,4.92,4.8500000000000005,163.17000000000002,163.04,162.98,162.91,162.82,162.73,162.61,162.48,162.06,24.67,24.35,24.18,23.98,23.8,23.61,23.42,23.240000000000002,22.87,N/A,N/A -2012,5,15,1,30,101480,100310,99180,64.8,0,4.9,5.19,5.23,5.24,5.23,5.21,5.19,5.16,5.09,164.67000000000002,164.6,164.5,164.4,164.29,164.18,164.03,163.87,163.42000000000002,24.59,24.26,24.09,23.900000000000002,23.71,23.53,23.330000000000002,23.16,22.78,N/A,N/A -2012,5,15,2,30,101500,100340,99210,65.75,0,4.46,4.7,4.74,4.74,4.73,4.72,4.69,4.67,4.61,169.57,169.31,169.15,168.98,168.79,168.6,168.37,168.15,167.49,24.560000000000002,24.23,24.060000000000002,23.87,23.68,23.490000000000002,23.3,23.12,22.75,N/A,N/A -2012,5,15,3,30,101530,100360,99230,65.73,0,4.21,4.43,4.46,4.45,4.44,4.42,4.4,4.38,4.3100000000000005,174.97,174.81,174.71,174.59,174.47,174.34,174.18,174.02,173.51,24.57,24.25,24.080000000000002,23.89,23.7,23.51,23.32,23.14,22.76,N/A,N/A -2012,5,15,4,30,101520,100350,99220,65.6,0,3.61,3.7800000000000002,3.8000000000000003,3.8000000000000003,3.79,3.7800000000000002,3.75,3.74,3.68,172.52,172.3,172.14000000000001,171.95000000000002,171.74,171.52,171.23,170.94,169.91,24.57,24.25,24.080000000000002,23.89,23.7,23.52,23.330000000000002,23.150000000000002,22.79,N/A,N/A -2012,5,15,5,30,101520,100360,99220,65.17,0,3.97,4.17,4.2,4.2,4.19,4.18,4.16,4.14,4.09,166.12,166.05,165.96,165.87,165.76,165.66,165.52,165.38,164.96,24.57,24.240000000000002,24.07,23.87,23.69,23.5,23.31,23.13,22.75,N/A,N/A -2012,5,15,6,30,101520,100350,99220,64.73,0,3.31,3.45,3.47,3.47,3.46,3.45,3.43,3.42,3.37,177.45000000000002,177.29,177.12,176.92000000000002,176.71,176.51,176.24,175.98,175.22,24.57,24.25,24.07,23.88,23.69,23.5,23.31,23.13,22.75,N/A,N/A -2012,5,15,7,30,101560,100390,99260,63.09,0,2.65,2.7600000000000002,2.77,2.77,2.7600000000000002,2.7600000000000002,2.75,2.73,2.71,178.61,178.43,178.20000000000002,177.96,177.71,177.47,177.18,176.9,176.13,24.650000000000002,24.330000000000002,24.16,23.96,23.78,23.59,23.39,23.21,22.830000000000002,N/A,N/A -2012,5,15,8,30,101560,100390,99260,64.43,0,2.2600000000000002,2.34,2.34,2.34,2.33,2.32,2.3000000000000003,2.29,2.2600000000000002,177.35,177.07,176.87,176.67000000000002,176.45000000000002,176.23,175.96,175.69,174.98,24.6,24.27,24.1,23.91,23.71,23.53,23.330000000000002,23.150000000000002,22.77,N/A,N/A -2012,5,15,9,30,101570,100400,99270,64.86,0,1.68,1.73,1.72,1.72,1.71,1.69,1.68,1.67,1.6400000000000001,198.23000000000002,197.88,197.70000000000002,197.52,197.3,197.07,196.82,196.57,195.87,24.560000000000002,24.23,24.07,23.87,23.68,23.490000000000002,23.29,23.11,22.73,N/A,N/A -2012,5,15,10,30,101600,100430,99300,65.06,0,1.2,1.22,1.21,1.2,1.19,1.18,1.16,1.1500000000000001,1.12,217.01,217.24,217.32,217.37,217.43,217.48000000000002,217.51,217.54,217.56,24.55,24.22,24.05,23.85,23.66,23.48,23.28,23.09,22.71,N/A,N/A -2012,5,15,11,30,101610,100450,99310,65.22,0,1.3,1.32,1.32,1.31,1.3,1.29,1.28,1.26,1.24,220.11,220.22,220.38,220.51,220.62,220.71,220.8,220.89000000000001,221.01,24.54,24.21,24.04,23.85,23.650000000000002,23.46,23.27,23.080000000000002,22.7,N/A,N/A -2012,5,15,12,30,101630,100460,99330,65.44,0,0.74,0.76,0.76,0.76,0.76,0.76,0.76,0.75,0.75,287.04,288.38,289.28000000000003,290.2,291.06,291.89,292.7,293.44,295.23,24.53,24.2,24.03,23.830000000000002,23.64,23.45,23.25,23.07,22.68,N/A,N/A -2012,5,15,13,30,101650,100480,99350,65.92,0,0.74,0.78,0.78,0.78,0.79,0.79,0.79,0.79,0.8,306.36,307.14,307.76,308.34000000000003,308.88,309.43,309.94,310.40000000000003,311.36,24.560000000000002,24.23,24.060000000000002,23.86,23.67,23.48,23.28,23.09,22.71,N/A,N/A -2012,5,15,14,30,101690,100520,99390,65.72,0,1.51,1.57,1.58,1.59,1.6,1.61,1.61,1.61,1.62,318.29,318.74,318.83,318.92,319.01,319.12,319.21,319.28000000000003,319.53000000000003,24.64,24.310000000000002,24.14,23.94,23.75,23.56,23.36,23.18,22.79,N/A,N/A -2012,5,15,15,30,101710,100550,99410,69.64,0,3.04,3.13,3.12,3.09,3.0700000000000003,3.04,3.0100000000000002,2.98,2.92,336.75,336.57,336.43,336.31,336.2,336.1,336.01,335.93,335.8,24.47,24.13,23.95,23.75,23.56,23.37,23.17,22.990000000000002,22.6,N/A,N/A -2012,5,15,16,30,101710,100550,99410,75.48,0,3.97,4.13,4.13,4.11,4.09,4.07,4.03,4.01,3.94,326.44,327.42,327.97,328.5,328.98,329.42,329.88,330.3,331.16,24.41,24.05,23.87,23.67,23.47,23.28,23.080000000000002,22.900000000000002,22.51,N/A,N/A -2012,5,15,17,30,101690,100520,99390,71.56,0,2.62,2.71,2.71,2.7,2.69,2.67,2.65,2.63,2.59,329.68,329.89,330.03000000000003,330.18,330.33,330.48,330.64,330.8,331.17,24.51,24.150000000000002,23.97,23.77,23.580000000000002,23.38,23.19,23,22.62,N/A,N/A -2012,5,15,18,30,101670,100510,99380,68.31,0,2.2,2.31,2.32,2.33,2.33,2.34,2.34,2.34,2.34,328.64,328.92,329.05,329.17,329.28000000000003,329.40000000000003,329.52,329.64,329.91,24.82,24.47,24.29,24.09,23.89,23.71,23.51,23.32,22.94,N/A,N/A -2012,5,15,19,30,101670,100500,99370,69.71000000000001,0,3.71,3.9,3.94,3.95,3.96,3.96,3.96,3.96,3.94,324.16,323.86,323.7,323.54,323.38,323.22,323.06,322.90000000000003,322.54,24.79,24.43,24.25,24.05,23.86,23.67,23.47,23.29,22.900000000000002,N/A,N/A -2012,5,15,20,30,101660,100490,99350,82.69,0.4,7.1000000000000005,7.54,7.62,7.640000000000001,7.65,7.640000000000001,7.63,7.61,7.5600000000000005,329.08,329.94,330.3,330.62,330.91,331.17,331.42,331.64,332.09000000000003,23.2,22.77,22.57,22.36,22.16,21.97,21.76,21.580000000000002,21.19,N/A,N/A -2012,5,15,21,30,101590,100410,99280,80.81,0,4.7,4.92,4.95,4.95,4.94,4.93,4.91,4.89,4.8500000000000005,355.90000000000003,355.40000000000003,355.08,354.69,354.21,353.69,352.92,352.17,349.26,22.66,22.23,22.05,21.85,21.66,21.47,21.28,21.11,20.76,N/A,N/A -2012,5,15,22,30,101590,100420,99280,75.16,0,4.38,4.63,4.68,4.7,4.72,4.73,4.74,4.75,4.76,340.82,340.47,340.25,339.99,339.72,339.45,339.13,338.82,337.96,23.27,22.87,22.69,22.490000000000002,22.3,22.11,21.92,21.740000000000002,21.36,N/A,N/A -2012,5,15,23,30,101580,100410,99280,77.11,0,4.82,5.12,5.18,5.21,5.23,5.25,5.26,5.26,5.2700000000000005,343.64,343.5,343.47,343.42,343.36,343.31,343.24,343.17,342.99,23.45,23.05,22.86,22.66,22.47,22.28,22.080000000000002,21.900000000000002,21.52,N/A,N/A -2012,5,16,0,30,101600,100430,99290,72.78,0,6.46,6.890000000000001,6.98,7.01,7.0200000000000005,7.0200000000000005,7.0200000000000005,7.01,6.98,343.56,343.99,344.22,344.44,344.65000000000003,344.85,345.06,345.26,345.66,23.66,23.26,23.07,22.87,22.67,22.48,22.29,22.1,21.72,N/A,N/A -2012,5,16,1,30,101580,100410,99280,75.3,0,7.08,7.5600000000000005,7.65,7.67,7.68,7.68,7.66,7.640000000000001,7.59,5.59,5.36,5.08,4.78,4.49,4.21,3.92,3.64,3.0300000000000002,23.44,23.02,22.830000000000002,22.62,22.42,22.23,22.03,21.85,21.46,N/A,N/A -2012,5,16,2,30,101660,100480,99340,79.05,0,8.64,9.28,9.42,9.47,9.5,9.51,9.51,9.51,9.49,10.870000000000001,11.17,11.32,11.48,11.63,11.77,11.93,12.07,12.41,22.55,22.06,21.86,21.650000000000002,21.45,21.26,21.06,20.88,20.490000000000002,N/A,N/A -2012,5,16,3,30,101670,100490,99350,83.64,0,8.4,9.01,9.15,9.21,9.25,9.27,9.28,9.3,9.33,9.99,10.040000000000001,10.13,10.21,10.290000000000001,10.36,10.450000000000001,10.540000000000001,10.77,21.97,21.47,21.26,21.06,20.86,20.67,20.490000000000002,20.31,19.95,N/A,N/A -2012,5,16,4,30,101650,100470,99320,86.61,0,7.78,8.290000000000001,8.39,8.43,8.45,8.46,8.47,8.47,8.52,7.8500000000000005,8.08,8.18,8.27,8.370000000000001,8.46,8.56,8.66,8.92,21.75,21.25,21.04,20.84,20.66,20.48,20.29,20.13,19.8,N/A,N/A -2012,5,16,5,30,101630,100450,99310,86.86,0,7.82,8.33,8.43,8.47,8.48,8.48,8.47,8.46,8.44,16.43,16.76,16.91,17.07,17.23,17.39,17.580000000000002,17.76,18.3,21.67,21.16,20.96,20.75,20.56,20.37,20.18,20,19.64,N/A,N/A -2012,5,16,6,30,101660,100480,99340,87.73,0,7.48,7.98,8.08,8.120000000000001,8.14,8.15,8.15,8.15,8.15,30.47,30.67,30.8,30.94,31.080000000000002,31.2,31.36,31.5,31.89,21.66,21.16,20.95,20.740000000000002,20.54,20.35,20.16,19.98,19.6,N/A,N/A -2012,5,16,7,30,101670,100490,99340,86.69,0,6.6000000000000005,7.01,7.08,7.11,7.13,7.140000000000001,7.140000000000001,7.13,7.140000000000001,32.13,32.44,32.62,32.81,33,33.18,33.39,33.59,34.12,21.86,21.38,21.18,20.97,20.78,20.59,20.400000000000002,20.22,19.85,N/A,N/A -2012,5,16,8,30,101660,100490,99350,86.3,0,5.65,5.96,6.01,6.0200000000000005,6.03,6.0200000000000005,6.0200000000000005,6.01,6,32.31,32.67,32.9,33.15,33.4,33.65,33.93,34.21,34.94,21.97,21.52,21.32,21.12,20.92,20.740000000000002,20.55,20.37,20,N/A,N/A -2012,5,16,9,30,101650,100480,99340,83.54,0,5.08,5.3500000000000005,5.39,5.4,5.41,5.41,5.41,5.41,5.45,27.11,27.29,27.37,27.47,27.57,27.66,27.79,27.91,28.3,22.3,21.87,21.68,21.48,21.29,21.12,20.93,20.76,20.43,N/A,N/A -2012,5,16,10,30,101670,100490,99350,81.51,0,4.72,4.97,5.01,5.0200000000000005,5.03,5.03,5.0200000000000005,5.0200000000000005,5.01,32.97,32.83,32.75,32.65,32.55,32.45,32.33,32.21,31.89,22.650000000000002,22.23,22.04,21.84,21.650000000000002,21.46,21.26,21.080000000000002,20.71,N/A,N/A -2012,5,16,11,30,101700,100530,99390,82.74,0,6.75,7.16,7.22,7.23,7.23,7.21,7.19,7.16,7.09,24.03,24.42,24.71,25.02,25.3,25.57,25.85,26.12,26.72,22.54,22.080000000000002,21.88,21.67,21.47,21.28,21.080000000000002,20.900000000000002,20.51,N/A,N/A -2012,5,16,12,30,101710,100530,99390,86.43,0,7.34,7.8100000000000005,7.890000000000001,7.92,7.930000000000001,7.930000000000001,7.92,7.91,7.88,23.26,23.34,23.42,23.51,23.580000000000002,23.66,23.75,23.84,24.060000000000002,21.55,21.04,20.830000000000002,20.62,20.42,20.23,20.04,19.86,19.48,N/A,N/A -2012,5,16,13,30,101720,100530,99390,85.23,0,6.32,6.67,6.73,6.74,6.74,6.74,6.72,6.71,6.68,24.6,24.75,24.85,24.95,25.060000000000002,25.150000000000002,25.27,25.38,25.68,21.45,20.96,20.76,20.55,20.36,20.17,19.98,19.8,19.43,N/A,N/A -2012,5,16,14,30,101730,100550,99410,82.97,0,5.3,5.59,5.64,5.66,5.66,5.67,5.66,5.66,5.66,21.5,21.830000000000002,22.03,22.240000000000002,22.45,22.650000000000002,22.88,23.1,23.68,21.88,21.43,21.23,21.03,20.830000000000002,20.650000000000002,20.45,20.28,19.91,N/A,N/A -2012,5,16,15,30,101750,100570,99430,81.60000000000001,0,3.7,3.88,3.91,3.92,3.92,3.93,3.93,3.94,3.95,22.8,22.95,23.09,23.240000000000002,23.400000000000002,23.56,23.75,23.93,24.51,22.32,21.900000000000002,21.71,21.51,21.32,21.14,20.94,20.76,20.39,N/A,N/A -2012,5,16,16,30,101720,100550,99410,75.51,0,2.73,2.87,2.9,2.93,2.95,2.96,2.98,3,3.0500000000000003,7.0600000000000005,7.41,7.61,7.82,8.02,8.22,8.45,8.68,9.25,23.06,22.67,22.490000000000002,22.29,22.1,21.91,21.72,21.54,21.16,N/A,N/A -2012,5,16,17,30,101700,100530,99390,74.15,0,1.61,1.69,1.72,1.74,1.76,1.79,1.82,1.85,1.95,329.02,329.72,330.34000000000003,330.97,331.58,332.19,332.90000000000003,333.57,335.31,23.46,23.080000000000002,22.900000000000002,22.71,22.52,22.34,22.150000000000002,21.97,21.61,N/A,N/A -2012,5,16,18,30,101660,100490,99350,72.28,0,2.15,2.2600000000000002,2.29,2.31,2.33,2.34,2.36,2.37,2.41,270.75,272.27,273.25,274.22,275.12,276,276.93,277.81,279.86,24.060000000000002,23.68,23.5,23.31,23.11,22.92,22.73,22.55,22.16,N/A,N/A -2012,5,16,19,30,101630,100460,99330,68.27,0,3.3000000000000003,3.52,3.58,3.62,3.66,3.69,3.72,3.75,3.8200000000000003,329.93,330.06,330.25,330.43,330.61,330.78000000000003,330.96,331.14,331.56,24.7,24.34,24.16,23.96,23.78,23.59,23.400000000000002,23.22,22.84,N/A,N/A -2012,5,16,20,30,101570,100400,99270,67.91,0,5.26,5.57,5.61,5.61,5.61,5.6000000000000005,5.59,5.59,5.36,358.03000000000003,357.93,357.84000000000003,357.72,357.5,357.2,356.45,355.62,352.5,24.38,24.04,23.88,23.71,23.56,23.42,23.330000000000002,23.26,23,N/A,N/A -2012,5,16,21,30,101560,100390,99260,65.54,0,5.58,5.83,5.83,5.78,5.72,5.65,5.5600000000000005,5.48,5.24,19.13,19.28,19.27,19.26,19.22,19.17,19.080000000000002,18.990000000000002,18.52,24.740000000000002,24.41,24.240000000000002,24.060000000000002,23.87,23.7,23.52,23.34,23.01,N/A,N/A -2012,5,16,22,30,101540,100370,99240,66.61,0,4.79,5.08,5.12,5.13,5.13,5.12,5.11,5.09,5.01,30.32,29.78,29.48,29.13,28.740000000000002,28.330000000000002,27.69,27.07,23.64,24.75,24.43,24.26,24.080000000000002,23.900000000000002,23.740000000000002,23.57,23.42,23.2,N/A,N/A -2012,5,16,23,30,101540,100380,99250,65.87,0,3.06,3.23,3.2600000000000002,3.2800000000000002,3.29,3.31,3.3200000000000003,3.33,3.39,18.16,18.06,18.12,18.17,18.23,18.28,18.31,18.34,17.94,24.810000000000002,24.5,24.32,24.14,23.95,23.77,23.59,23.41,23.080000000000002,N/A,N/A -2012,5,17,0,30,101550,100390,99260,67.51,0,3.13,3.3000000000000003,3.33,3.33,3.33,3.33,3.33,3.3200000000000003,3.31,3.89,3.36,3.09,2.77,2.45,2.13,1.77,1.43,0.62,24.990000000000002,24.68,24.51,24.310000000000002,24.12,23.93,23.740000000000002,23.55,23.17,N/A,N/A -2012,5,17,1,30,101520,100360,99230,69.16,0,4.3100000000000005,4.57,4.6000000000000005,4.61,4.6000000000000005,4.59,4.57,4.5600000000000005,4.51,307.85,308.44,308.87,309.32,309.76,310.19,310.66,311.1,312.1,24.96,24.64,24.47,24.28,24.09,23.900000000000002,23.71,23.53,23.14,N/A,N/A -2012,5,17,2,30,101550,100390,99260,70.85000000000001,0,2.89,3.02,3.0300000000000002,3.0300000000000002,3.02,3.0100000000000002,3,2.98,2.95,329.69,331.06,331.7,332.36,332.98,333.59000000000003,334.24,334.85,336.22,24.82,24.5,24.32,24.13,23.94,23.75,23.55,23.37,22.98,N/A,N/A -2012,5,17,3,30,101580,100410,99280,69.72,0,1.96,2.02,2.02,2.0100000000000002,2,1.98,1.97,1.96,1.93,350.57,351.16,351.5,351.84000000000003,352.19,352.55,352.97,353.36,354.37,24.75,24.43,24.25,24.060000000000002,23.87,23.68,23.490000000000002,23.31,22.93,N/A,N/A -2012,5,17,4,30,101560,100400,99270,69.51,0,2.7600000000000002,2.89,2.9,2.9,2.9,2.9,2.89,2.89,2.88,350.77,351.19,351.35,351.52,351.69,351.85,352.03000000000003,352.2,352.62,24.73,24.400000000000002,24.23,24.04,23.85,23.66,23.47,23.29,22.91,N/A,N/A -2012,5,17,5,30,101590,100420,99290,72.43,0,4.17,4.4,4.43,4.43,4.43,4.42,4.4,4.39,4.3500000000000005,17.16,17.13,17.02,16.91,16.82,16.73,16.66,16.580000000000002,16.46,24.64,24.3,24.13,23.93,23.740000000000002,23.55,23.35,23.17,22.78,N/A,N/A -2012,5,17,6,30,101570,100400,99270,67.88,0,2.85,2.97,2.97,2.96,2.95,2.93,2.91,2.9,2.86,1.44,1.86,2.08,2.34,2.62,2.91,3.27,3.61,4.65,24.62,24.3,24.13,23.94,23.75,23.56,23.37,23.19,22.82,N/A,N/A -2012,5,17,7,30,101590,100430,99290,66.64,0,1.99,2.04,2.04,2.0100000000000002,1.99,1.97,1.94,1.9100000000000001,1.83,357.5,358.04,358.42,358.83,359.27,359.73,0.33,0.9,2.79,24.59,24.27,24.09,23.900000000000002,23.71,23.52,23.330000000000002,23.14,22.76,N/A,N/A -2012,5,17,8,30,101590,100420,99290,67.71000000000001,0,1.96,2.02,2.0100000000000002,2,1.99,1.97,1.95,1.93,1.8800000000000001,7.34,7.84,8.040000000000001,8.26,8.53,8.82,9.19,9.55,10.61,24.54,24.22,24.05,23.85,23.66,23.48,23.28,23.1,22.71,N/A,N/A -2012,5,17,9,30,101580,100410,99280,70.59,0,1.72,1.77,1.78,1.77,1.77,1.76,1.76,1.75,1.74,9.950000000000001,10.53,10.98,11.43,11.88,12.32,12.84,13.34,14.67,24.43,24.11,23.94,23.740000000000002,23.55,23.36,23.17,22.990000000000002,22.61,N/A,N/A -2012,5,17,10,30,101590,100420,99290,74.62,0,2.08,2.18,2.19,2.2,2.21,2.21,2.22,2.22,2.24,12.48,13.39,13.870000000000001,14.35,14.82,15.26,15.75,16.22,17.34,24.36,24.03,23.85,23.66,23.47,23.28,23.09,22.91,22.52,N/A,N/A -2012,5,17,11,30,101600,100430,99300,74.69,0,1.61,1.68,1.69,1.69,1.69,1.7,1.7,1.7,1.7,39.5,39.47,39.43,39.4,39.35,39.300000000000004,39.27,39.24,39.160000000000004,24.400000000000002,24.07,23.900000000000002,23.7,23.51,23.32,23.13,22.94,22.55,N/A,N/A -2012,5,17,12,30,101620,100450,99320,74.47,0,1.84,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9000000000000001,23.900000000000002,24.25,24.43,24.62,24.810000000000002,24.990000000000002,25.19,25.38,25.79,24.39,24.07,23.89,23.7,23.5,23.32,23.12,22.94,22.55,N/A,N/A -2012,5,17,13,30,101630,100470,99340,75.2,0,2.8000000000000003,2.92,2.93,2.93,2.92,2.91,2.91,2.9,2.88,16.86,17.2,17.38,17.55,17.73,17.89,18.080000000000002,18.26,18.68,24.330000000000002,23.990000000000002,23.82,23.63,23.44,23.25,23.05,22.87,22.490000000000002,N/A,N/A -2012,5,17,14,30,101650,100490,99350,73.5,0,3.21,3.36,3.38,3.37,3.37,3.36,3.35,3.34,3.31,20.79,21.07,21.240000000000002,21.400000000000002,21.57,21.740000000000002,21.93,22.11,22.61,24.36,24.02,23.85,23.650000000000002,23.46,23.27,23.080000000000002,22.900000000000002,22.52,N/A,N/A -2012,5,17,15,30,101660,100490,99360,71.14,0,3.4,3.5700000000000003,3.59,3.6,3.6,3.59,3.59,3.58,3.5700000000000003,27.38,27.62,27.75,27.88,28.02,28.150000000000002,28.310000000000002,28.46,28.87,24.400000000000002,24.060000000000002,23.89,23.69,23.5,23.31,23.12,22.94,22.56,N/A,N/A -2012,5,17,16,30,101670,100500,99370,70.69,0,2.99,3.12,3.14,3.15,3.15,3.14,3.14,3.14,3.14,45.25,45.47,45.57,45.69,45.800000000000004,45.910000000000004,46.050000000000004,46.19,46.54,24.51,24.16,23.990000000000002,23.79,23.6,23.42,23.22,23.04,22.67,N/A,N/A -2012,5,17,17,30,101640,100470,99340,70.81,0,2.63,2.7600000000000002,2.77,2.7800000000000002,2.79,2.8000000000000003,2.8000000000000003,2.81,2.85,73.02,73.09,73.01,72.91,72.82000000000001,72.73,72.60000000000001,72.47,72.03,24.650000000000002,24.3,24.13,23.93,23.75,23.57,23.38,23.21,22.86,N/A,N/A -2012,5,17,18,30,101600,100440,99310,71.63,0,2.59,2.69,2.69,2.69,2.68,2.68,2.67,2.66,2.66,115.84,115.63,115.43,115.2,114.95,114.7,114.33,113.96000000000001,112.59,24.75,24.400000000000002,24.23,24.04,23.85,23.67,23.490000000000002,23.31,22.98,N/A,N/A -2012,5,17,19,30,101590,100420,99290,74.47,0,4.43,4.67,4.69,4.7,4.69,4.68,4.67,4.66,4.63,150.17000000000002,150.08,149.98,149.88,149.77,149.65,149.5,149.35,148.76,24.86,24.51,24.34,24.14,23.96,23.78,23.59,23.42,23.080000000000002,N/A,N/A -2012,5,17,20,30,101530,100360,99240,75.63,0,3.97,4.19,4.22,4.23,4.23,4.22,4.21,4.21,4.18,164.57,164.38,164.22,164.05,163.89000000000001,163.73,163.51,163.29,162.65,24.95,24.61,24.44,24.240000000000002,24.060000000000002,23.88,23.69,23.51,23.16,N/A,N/A -2012,5,17,21,30,101510,100340,99220,74.51,0,3.5500000000000003,3.74,3.77,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.74,179.81,179.63,179.51,179.36,179.23,179.08,178.91,178.74,178.32,25.12,24.78,24.61,24.42,24.23,24.04,23.85,23.67,23.3,N/A,N/A -2012,5,17,22,30,101470,100310,99180,71.60000000000001,0,3.6,3.8000000000000003,3.83,3.84,3.85,3.84,3.84,3.83,3.8200000000000003,183.4,183.22,183.1,182.97,182.85,182.71,182.57,182.42000000000002,182.04,25.240000000000002,24.92,24.75,24.560000000000002,24.37,24.19,23.990000000000002,23.81,23.44,N/A,N/A -2012,5,17,23,30,101440,100280,99150,71.84,0,4.3,4.58,4.62,4.64,4.64,4.63,4.62,4.61,4.58,184.86,184.68,184.58,184.47,184.35,184.23,184.08,183.94,183.55,25.19,24.89,24.72,24.53,24.34,24.16,23.96,23.78,23.41,N/A,N/A -2012,5,18,0,30,101430,100260,99140,73.94,0,4.2700000000000005,4.55,4.6000000000000005,4.61,4.61,4.61,4.61,4.6000000000000005,4.57,182.53,182.36,182.27,182.16,182.06,181.94,181.81,181.69,181.35,25.01,24.7,24.54,24.34,24.150000000000002,23.97,23.77,23.59,23.21,N/A,N/A -2012,5,18,1,30,101380,100220,99090,74.96000000000001,0,4.14,4.38,4.41,4.42,4.41,4.4,4.39,4.37,4.32,186.34,186.36,186.36,186.36,186.36,186.36,186.34,186.33,186.26,24.830000000000002,24.52,24.35,24.16,23.97,23.78,23.59,23.41,23.04,N/A,N/A -2012,5,18,2,30,101400,100240,99110,75.23,0,4.41,4.67,4.71,4.72,4.71,4.7,4.69,4.67,4.62,187.87,187.86,187.81,187.76,187.71,187.66,187.6,187.54,187.33,24.77,24.46,24.28,24.09,23.900000000000002,23.71,23.52,23.34,22.97,N/A,N/A -2012,5,18,3,30,101410,100250,99120,76.26,0,4.28,4.54,4.58,4.59,4.59,4.59,4.58,4.57,4.53,191.81,191.76,191.73000000000002,191.71,191.67000000000002,191.62,191.56,191.5,191.29,24.7,24.38,24.21,24.01,23.82,23.64,23.45,23.27,22.89,N/A,N/A -2012,5,18,4,30,101410,100250,99120,76.81,0,4.55,4.82,4.86,4.87,4.87,4.86,4.8500000000000005,4.83,4.79,188.89000000000001,188.84,188.81,188.76,188.71,188.65,188.58,188.5,188.28,24.63,24.3,24.13,23.93,23.75,23.56,23.37,23.2,22.830000000000002,N/A,N/A -2012,5,18,5,30,101410,100250,99120,75.08,0,4.34,4.6000000000000005,4.64,4.66,4.66,4.66,4.65,4.64,4.62,191.42000000000002,191.42000000000002,191.42000000000002,191.4,191.39000000000001,191.36,191.33,191.31,191.16,24.62,24.29,24.12,23.93,23.740000000000002,23.56,23.37,23.19,22.830000000000002,N/A,N/A -2012,5,18,6,30,101430,100270,99140,74.89,0,3.96,4.2,4.24,4.25,4.26,4.26,4.25,4.25,4.23,193.89000000000001,193.85,193.84,193.84,193.82,193.79,193.76,193.72,193.59,24.59,24.27,24.1,23.91,23.73,23.54,23.35,23.17,22.8,N/A,N/A -2012,5,18,7,30,101450,100280,99150,76.21000000000001,0,3.91,4.13,4.16,4.17,4.17,4.16,4.15,4.14,4.1,204.73000000000002,204.75,204.71,204.68,204.64000000000001,204.59,204.54,204.49,204.32,24.48,24.16,23.990000000000002,23.8,23.62,23.43,23.240000000000002,23.07,22.71,N/A,N/A -2012,5,18,8,30,101450,100290,99160,74.47,0,3.8000000000000003,4.01,4.04,4.05,4.05,4.04,4.03,4.0200000000000005,3.98,204.71,204.65,204.61,204.56,204.51,204.45000000000002,204.38,204.31,204.09,24.490000000000002,24.17,24,23.81,23.62,23.44,23.240000000000002,23.06,22.7,N/A,N/A -2012,5,18,9,30,101430,100270,99140,74.06,0,3.42,3.6,3.63,3.63,3.63,3.63,3.63,3.62,3.6,207.62,207.45000000000002,207.36,207.25,207.15,207.04,206.91,206.79,206.4,24.45,24.13,23.96,23.77,23.580000000000002,23.400000000000002,23.2,23.02,22.66,N/A,N/A -2012,5,18,10,30,101450,100280,99150,72.34,0,2.7800000000000002,2.92,2.94,2.95,2.95,2.95,2.95,2.94,2.93,203.83,203.73000000000002,203.64000000000001,203.54,203.43,203.31,203.17000000000002,203.03,202.62,24.48,24.16,23.990000000000002,23.8,23.61,23.42,23.23,23.05,22.68,N/A,N/A -2012,5,18,11,30,101450,100290,99160,73.56,0,2.37,2.48,2.5,2.5,2.5,2.5,2.5,2.5,2.5,184.46,184.35,184.3,184.23,184.15,184.06,183.95000000000002,183.85,183.49,24.37,24.060000000000002,23.89,23.69,23.5,23.32,23.13,22.95,22.580000000000002,N/A,N/A -2012,5,18,12,30,101460,100300,99170,74.69,0,2.39,2.49,2.5,2.5,2.5,2.5,2.49,2.49,2.48,183.4,183.22,183.15,183.07,182.99,182.9,182.79,182.68,182.36,24.29,23.96,23.79,23.6,23.41,23.23,23.03,22.85,22.48,N/A,N/A -2012,5,18,13,30,101490,100320,99190,75.5,0,1.81,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.9000000000000001,174.33,174.16,174.13,174.08,174.03,173.98,173.91,173.84,173.62,24.23,23.91,23.740000000000002,23.54,23.35,23.17,22.98,22.8,22.43,N/A,N/A -2012,5,18,14,30,101530,100360,99230,75.82000000000001,0,1.76,1.83,1.84,1.84,1.84,1.84,1.84,1.85,1.85,156.85,156.77,156.71,156.65,156.59,156.52,156.44,156.36,156.19,24.27,23.94,23.77,23.57,23.38,23.2,23,22.82,22.45,N/A,N/A -2012,5,18,15,30,101540,100370,99240,77.39,0,3.1,3.2600000000000002,3.2800000000000002,3.29,3.29,3.29,3.29,3.29,3.2800000000000002,159.33,159.36,159.35,159.35,159.33,159.31,159.3,159.3,159.26,24.29,23.95,23.77,23.57,23.38,23.19,22.990000000000002,22.81,22.43,N/A,N/A -2012,5,18,16,30,101530,100370,99240,78.64,0,3.11,3.25,3.27,3.2800000000000002,3.2800000000000002,3.2800000000000002,3.27,3.27,3.25,171.74,171.77,171.76,171.73,171.71,171.69,171.66,171.64000000000001,171.58,24.28,23.93,23.75,23.55,23.36,23.17,22.98,22.79,22.41,N/A,N/A -2012,5,18,17,30,101530,100370,99240,78.49,0,2.46,2.57,2.58,2.58,2.59,2.59,2.59,2.58,2.58,163.33,163.15,163.08,163,162.93,162.87,162.79,162.72,162.54,24.36,23.990000000000002,23.81,23.62,23.42,23.240000000000002,23.04,22.85,22.47,N/A,N/A -2012,5,18,18,30,101540,100370,99240,78.33,0,2.94,3.08,3.1,3.11,3.11,3.11,3.12,3.11,3.11,157.65,157.58,157.55,157.52,157.49,157.46,157.43,157.39000000000001,157.32,24.48,24.11,23.93,23.73,23.54,23.35,23.150000000000002,22.97,22.59,N/A,N/A -2012,5,18,19,30,101520,100360,99230,77.08,0,3.21,3.37,3.4,3.41,3.42,3.42,3.43,3.43,3.43,154.58,154.49,154.47,154.43,154.39000000000001,154.36,154.31,154.27,154.18,24.62,24.26,24.080000000000002,23.88,23.69,23.5,23.3,23.12,22.740000000000002,N/A,N/A -2012,5,18,20,30,101490,100330,99200,76.98,0,3.56,3.75,3.7800000000000002,3.8000000000000003,3.81,3.8200000000000003,3.8200000000000003,3.8200000000000003,3.83,155.25,155.17000000000002,155.13,155.08,155.04,155.01,154.96,154.91,154.8,24.67,24.310000000000002,24.14,23.93,23.740000000000002,23.55,23.36,23.17,22.79,N/A,N/A -2012,5,18,21,30,101440,100280,99150,76.26,0,3.5700000000000003,3.7600000000000002,3.8000000000000003,3.81,3.83,3.83,3.84,3.84,3.85,153.70000000000002,153.66,153.66,153.65,153.63,153.62,153.6,153.58,153.52,24.72,24.37,24.19,23.990000000000002,23.8,23.61,23.42,23.23,22.85,N/A,N/A -2012,5,18,22,30,101420,100260,99130,76.62,0,3.77,3.99,4.03,4.0600000000000005,4.07,4.08,4.08,4.09,4.09,151.44,151.44,151.43,151.42000000000002,151.41,151.41,151.4,151.39000000000001,151.41,24.71,24.37,24.2,24,23.81,23.62,23.42,23.240000000000002,22.85,N/A,N/A -2012,5,18,23,30,101400,100240,99110,78.03,0,4.1,4.38,4.43,4.46,4.48,4.5,4.5,4.51,4.5200000000000005,145.47,145.44,145.43,145.42000000000002,145.41,145.41,145.41,145.41,145.42000000000002,24.63,24.3,24.13,23.93,23.740000000000002,23.56,23.36,23.18,22.79,N/A,N/A -2012,5,19,0,30,101360,100200,99070,79.23,0,4.13,4.4,4.45,4.47,4.49,4.5,4.5,4.5,4.5,147.29,147.33,147.33,147.34,147.35,147.37,147.39000000000001,147.41,147.46,24.5,24.18,24,23.81,23.62,23.43,23.240000000000002,23.05,22.67,N/A,N/A -2012,5,19,1,30,101340,100180,99050,81.14,0,4.7,5.01,5.0600000000000005,5.09,5.1000000000000005,5.11,5.11,5.11,5.11,150.59,150.63,150.64000000000001,150.65,150.67000000000002,150.68,150.70000000000002,150.72,150.76,24.36,24.03,23.85,23.66,23.47,23.28,23.080000000000002,22.900000000000002,22.52,N/A,N/A -2012,5,19,2,30,101350,100190,99060,82.84,0,5.39,5.7700000000000005,5.84,5.88,5.9,5.91,5.91,5.91,5.91,155.48,155.43,155.44,155.44,155.44,155.44,155.44,155.44,155.43,24.28,23.93,23.76,23.56,23.37,23.18,22.98,22.8,22.42,N/A,N/A -2012,5,19,3,30,101350,100190,99060,84.2,0,4.95,5.26,5.32,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.34,158.24,158.27,158.28,158.28,158.29,158.3,158.31,158.33,158.35,24.18,23.830000000000002,23.66,23.46,23.27,23.09,22.89,22.71,22.34,N/A,N/A -2012,5,19,4,30,101340,100180,99050,85.43,0,5.15,5.5,5.57,5.6000000000000005,5.62,5.62,5.62,5.62,5.62,163.53,163.45000000000002,163.44,163.43,163.43,163.42000000000002,163.4,163.4,163.38,24.11,23.76,23.580000000000002,23.38,23.19,23.01,22.81,22.63,22.25,N/A,N/A -2012,5,19,5,30,101340,100180,99050,86.54,0,5.26,5.62,5.69,5.72,5.73,5.74,5.75,5.75,5.75,167.89000000000001,167.89000000000001,167.85,167.83,167.8,167.77,167.74,167.71,167.63,24.060000000000002,23.7,23.52,23.32,23.13,22.95,22.75,22.57,22.19,N/A,N/A -2012,5,19,6,30,101360,100200,99070,87.06,0,5.2,5.5200000000000005,5.59,5.62,5.63,5.64,5.65,5.65,5.66,169.02,169.01,168.99,168.97,168.95000000000002,168.91,168.89000000000001,168.87,168.77,24.1,23.72,23.54,23.34,23.150000000000002,22.96,22.77,22.59,22.21,N/A,N/A -2012,5,19,7,30,101390,100230,99100,87.57000000000001,0,5.29,5.64,5.71,5.74,5.76,5.7700000000000005,5.78,5.79,5.79,170.6,170.6,170.59,170.58,170.56,170.54,170.52,170.5,170.45000000000002,24.14,23.76,23.580000000000002,23.38,23.19,23,22.8,22.62,22.240000000000002,N/A,N/A -2012,5,19,8,30,101370,100210,99080,87.82000000000001,0,5.39,5.74,5.82,5.8500000000000005,5.87,5.89,5.9,5.91,5.91,169.96,169.97,169.97,169.96,169.96,169.95000000000002,169.95000000000002,169.94,169.91,24.16,23.78,23.6,23.39,23.2,23.01,22.82,22.63,22.25,N/A,N/A -2012,5,19,9,30,101390,100220,99100,88.31,0,5.25,5.59,5.67,5.7,5.73,5.74,5.74,5.75,5.74,168.70000000000002,168.87,168.9,168.93,168.96,169,169.04,169.08,169.16,24.12,23.740000000000002,23.55,23.35,23.16,22.97,22.77,22.59,22.2,N/A,N/A -2012,5,19,10,30,101410,100250,99120,88.4,0,4.64,4.92,4.98,5.01,5.0200000000000005,5.04,5.04,5.05,5.07,158.82,158.83,158.85,158.86,158.87,158.87,158.87,158.86,158.83,24.1,23.72,23.54,23.34,23.150000000000002,22.96,22.77,22.59,22.21,N/A,N/A -2012,5,19,11,30,101430,100270,99140,87.27,0,4.9,5.17,5.22,5.23,5.23,5.23,5.22,5.2,5.15,154.28,154.49,154.63,154.76,154.88,155,155.13,155.24,155.53,24.16,23.79,23.61,23.41,23.21,23.02,22.830000000000002,22.64,22.26,N/A,N/A -2012,5,19,12,30,101460,100300,99170,86.3,0,4.46,4.76,4.83,4.87,4.9,4.92,4.93,4.94,4.96,155.41,155.43,155.43,155.42000000000002,155.41,155.4,155.38,155.37,155.32,24.19,23.81,23.63,23.43,23.240000000000002,23.05,22.85,22.66,22.28,N/A,N/A -2012,5,19,13,30,101500,100330,99200,81.4,0,4.66,4.93,4.99,5.01,5.01,5.01,4.99,4.98,4.93,151.99,152.29,152.42000000000002,152.56,152.67000000000002,152.79,152.9,153.01,153.26,24.42,24.060000000000002,23.88,23.68,23.490000000000002,23.3,23.11,22.92,22.54,N/A,N/A -2012,5,19,14,30,101520,100360,99230,82.4,0,4.13,4.32,4.3500000000000005,4.3500000000000005,4.34,4.33,4.3100000000000005,4.3,4.25,152.37,152.43,152.49,152.53,152.57,152.61,152.65,152.68,152.76,24.400000000000002,24.04,23.86,23.67,23.47,23.29,23.09,22.91,22.54,N/A,N/A -2012,5,19,15,30,101570,100410,99280,79.53,0,4.91,5.19,5.24,5.26,5.26,5.26,5.26,5.25,5.22,147.62,147.67000000000002,147.69,147.70000000000002,147.72,147.72,147.72,147.72,147.71,24.650000000000002,24.28,24.11,23.91,23.71,23.53,23.330000000000002,23.14,22.76,N/A,N/A -2012,5,19,16,30,101600,100440,99310,64.7,0,3.96,4.3,4.42,4.51,4.6000000000000005,4.68,4.7700000000000005,4.8500000000000005,5.03,141.6,141.75,141.76,141.74,141.72,141.68,141.63,141.57,141.43,25.51,25.22,25.060000000000002,24.88,24.7,24.53,24.35,24.18,23.82,N/A,N/A -2012,5,19,17,30,101590,100430,99300,67.09,0,4.24,4.57,4.64,4.68,4.72,4.75,4.76,4.78,4.79,139.93,139.83,139.85,139.87,139.88,139.89000000000001,139.9,139.92000000000002,139.94,25.38,25.05,24.87,24.67,24.48,24.29,24.09,23.91,23.52,N/A,N/A -2012,5,19,18,30,101600,100430,99310,71.68,0,4.71,5.04,5.12,5.16,5.19,5.21,5.22,5.23,5.25,126.52,126.85000000000001,127.11,127.36,127.58,127.78,127.98,128.16,128.53,25.3,24.96,24.78,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A -2012,5,19,19,30,101600,100440,99310,75.92,0,4.89,5.22,5.3,5.34,5.37,5.39,5.4,5.41,5.42,123.3,123.47,123.53,123.57000000000001,123.59,123.62,123.64,123.64,123.66,25.12,24.77,24.59,24.39,24.2,24.01,23.81,23.62,23.240000000000002,N/A,N/A -2012,5,19,20,30,101570,100400,99280,75.54,0,4.44,4.72,4.79,4.82,4.8500000000000005,4.86,4.88,4.9,4.91,118.91,119.3,119.55,119.79,120.02,120.24000000000001,120.46000000000001,120.67,121.13,25.080000000000002,24.73,24.560000000000002,24.36,24.17,23.98,23.79,23.6,23.22,N/A,N/A -2012,5,19,21,30,101550,100380,99260,77.69,0,5.0600000000000005,5.39,5.44,5.47,5.48,5.48,5.47,5.46,5.43,123.43,123.4,123.37,123.34,123.31,123.28,123.25,123.23,123.16,25.04,24.7,24.52,24.32,24.13,23.94,23.740000000000002,23.56,23.18,N/A,N/A -2012,5,19,22,30,101530,100360,99240,73.28,0,4.69,5.09,5.19,5.25,5.29,5.33,5.3500000000000005,5.38,5.42,125.98,126.08,126.11,126.14,126.16,126.18,126.2,126.21000000000001,126.24000000000001,25.21,24.87,24.7,24.5,24.310000000000002,24.12,23.92,23.740000000000002,23.35,N/A,N/A -2012,5,19,23,30,101520,100360,99230,75.27,0,5.12,5.48,5.57,5.61,5.65,5.67,5.69,5.71,5.75,125.83,125.11,124.74000000000001,124.4,124.10000000000001,123.83,123.57000000000001,123.33,122.88,25.16,24.85,24.68,24.490000000000002,24.3,24.11,23.92,23.740000000000002,23.36,N/A,N/A -2012,5,20,0,30,101490,100330,99210,77.08,0,5.24,5.66,5.76,5.8100000000000005,5.8500000000000005,5.88,5.9,5.92,5.95,120.09,120.66,120.91,121.16,121.38,121.58,121.77,121.95,122.3,25.1,24.77,24.6,24.400000000000002,24.21,24.02,23.82,23.63,23.25,N/A,N/A -2012,5,20,1,30,101490,100320,99200,73.7,0,5.87,6.38,6.51,6.59,6.65,6.7,6.74,6.78,6.8500000000000005,130.27,130.19,130.14000000000001,130.09,130.05,130.02,129.98,129.95,129.9,25.27,24.96,24.79,24.6,24.41,24.23,24.03,23.85,23.47,N/A,N/A -2012,5,20,2,30,101500,100340,99210,77.16,0,6.34,6.88,6.99,7.0600000000000005,7.1000000000000005,7.13,7.16,7.17,7.2,137.35,137.35,137.37,137.4,137.42000000000002,137.44,137.47,137.49,137.53,25.04,24.7,24.52,24.32,24.13,23.94,23.740000000000002,23.56,23.17,N/A,N/A -2012,5,20,3,30,101520,100360,99230,77.37,0,6.21,6.72,6.8500000000000005,6.92,6.98,7.0200000000000005,7.0600000000000005,7.08,7.13,137.53,137.51,137.51,137.5,137.49,137.47,137.45000000000002,137.43,137.38,25.01,24.67,24.5,24.3,24.11,23.92,23.73,23.54,23.16,N/A,N/A -2012,5,20,4,30,101530,100370,99240,72.46000000000001,0,6.8,7.41,7.55,7.63,7.69,7.73,7.76,7.78,7.82,137.71,137.74,137.79,137.84,137.89000000000001,137.94,137.99,138.04,138.15,25.17,24.84,24.67,24.47,24.28,24.1,23.900000000000002,23.71,23.330000000000002,N/A,N/A -2012,5,20,5,30,101540,100380,99250,72.88,0,6.33,6.890000000000001,7.03,7.12,7.18,7.23,7.28,7.3100000000000005,7.38,140.69,140.57,140.51,140.45000000000002,140.39000000000001,140.33,140.27,140.22,140.1,25.080000000000002,24.75,24.57,24.38,24.19,24,23.8,23.62,23.23,N/A,N/A -2012,5,20,6,30,101550,100390,99260,75.10000000000001,0,7.15,7.78,7.930000000000001,8.02,8.08,8.120000000000001,8.16,8.18,8.22,147.94,147.96,147.92000000000002,147.88,147.84,147.79,147.73,147.68,147.58,24.98,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A -2012,5,20,7,30,101610,100440,99310,73.95,0,7.63,8.27,8.4,8.46,8.49,8.51,8.51,8.51,8.49,145.1,145.17000000000002,145.21,145.25,145.28,145.32,145.34,145.37,145.41,25,24.650000000000002,24.48,24.28,24.080000000000002,23.89,23.69,23.51,23.12,N/A,N/A -2012,5,20,8,30,101590,100430,99300,70.62,0,7.13,7.75,7.9,7.98,8.040000000000001,8.08,8.11,8.13,8.15,150.11,150.20000000000002,150.28,150.35,150.42000000000002,150.48,150.56,150.62,150.76,25.02,24.69,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.150000000000002,N/A,N/A -2012,5,20,9,30,101630,100470,99340,66.52,0,6.0600000000000005,6.58,6.71,6.79,6.8500000000000005,6.9,6.93,6.96,7.01,158.61,158.04,157.79,157.57,157.37,157.19,157.03,156.87,156.59,25.12,24.8,24.62,24.43,24.23,24.04,23.84,23.66,23.27,N/A,N/A -2012,5,20,10,30,101680,100510,99380,69.91,0,5.21,5.64,5.75,5.82,5.87,5.92,5.96,5.99,6.05,146.91,147.16,147.27,147.37,147.45000000000002,147.51,147.57,147.62,147.70000000000002,24.93,24.6,24.42,24.22,24.03,23.84,23.64,23.45,23.07,N/A,N/A -2012,5,20,11,30,101650,100490,99360,75.01,0,5.73,6.12,6.19,6.21,6.22,6.21,6.2,6.19,6.15,153.27,153.18,153.09,152.98,152.87,152.75,152.63,152.51,152.25,24.67,24.32,24.14,23.94,23.75,23.56,23.36,23.17,22.78,N/A,N/A -2012,5,20,12,30,101720,100550,99420,72.74,0,4.13,4.39,4.46,4.49,4.51,4.54,4.55,4.5600000000000005,4.59,139.75,140.01,140.14000000000001,140.26,140.36,140.45000000000002,140.55,140.63,140.81,24.69,24.35,24.18,23.98,23.79,23.6,23.400000000000002,23.22,22.830000000000002,N/A,N/A -2012,5,20,13,30,101770,100610,99470,69.97,0,3.92,4.14,4.18,4.2,4.21,4.22,4.23,4.24,4.24,130.98,130.66,130.49,130.32,130.16,130.01,129.86,129.72,129.43,24.76,24.43,24.25,24.060000000000002,23.86,23.67,23.48,23.29,22.900000000000002,N/A,N/A -2012,5,20,14,30,101810,100640,99510,74.29,0,3.59,3.72,3.72,3.7,3.67,3.65,3.62,3.59,3.5300000000000002,131.23,130.24,129.65,129.07,128.51,127.95,127.38000000000001,126.86,125.64,24.57,24.22,24.04,23.84,23.650000000000002,23.46,23.26,23.080000000000002,22.69,N/A,N/A -2012,5,20,15,30,101860,100690,99560,70.54,0,2.88,3.04,3.0700000000000003,3.09,3.1,3.12,3.13,3.13,3.15,86.9,87.85000000000001,88.43,88.98,89.49,89.98,90.48,90.94,91.91,24.79,24.46,24.28,24.080000000000002,23.89,23.7,23.51,23.32,22.94,N/A,N/A -2012,5,20,16,30,101890,100730,99590,67.8,0,3.52,3.74,3.79,3.8200000000000003,3.85,3.86,3.88,3.89,3.91,79.44,80.10000000000001,80.38,80.63,80.83,80.99,81.15,81.29,81.52,25.05,24.71,24.54,24.34,24.14,23.96,23.76,23.57,23.18,N/A,N/A -2012,5,20,17,30,101890,100720,99590,68.42,0,3.5100000000000002,3.72,3.77,3.8000000000000003,3.81,3.83,3.84,3.85,3.86,90.51,90.66,90.71000000000001,90.75,90.78,90.8,90.83,90.85000000000001,90.87,25.080000000000002,24.73,24.55,24.35,24.16,23.97,23.77,23.59,23.2,N/A,N/A -2012,5,20,18,30,101890,100720,99590,66.38,0,3.72,3.96,4.0200000000000005,4.0600000000000005,4.09,4.11,4.13,4.15,4.18,89.77,89.85000000000001,89.88,89.92,89.97,90.02,90.09,90.15,90.29,25.26,24.91,24.73,24.54,24.35,24.16,23.96,23.78,23.39,N/A,N/A -2012,5,20,19,30,101880,100710,99580,67.54,0,3.36,3.5500000000000003,3.59,3.61,3.62,3.63,3.63,3.64,3.65,87.10000000000001,87.38,87.57000000000001,87.77,87.95,88.12,88.29,88.46000000000001,88.8,25.35,25.01,24.830000000000002,24.63,24.44,24.25,24.060000000000002,23.87,23.490000000000002,N/A,N/A -2012,5,20,20,30,101850,100680,99550,66.44,0,3.7800000000000002,4,4.04,4.07,4.08,4.09,4.1,4.1,4.12,103.21000000000001,103.03,102.91,102.79,102.69,102.59,102.48,102.39,102.21000000000001,25.490000000000002,25.150000000000002,24.98,24.79,24.59,24.41,24.21,24.03,23.650000000000002,N/A,N/A -2012,5,20,21,30,101800,100640,99510,67.08,0,4.38,4.65,4.69,4.71,4.72,4.73,4.73,4.74,4.75,137.17000000000002,137.02,136.93,136.84,136.76,136.67000000000002,136.57,136.48,136.22,25.52,25.19,25.02,24.830000000000002,24.64,24.46,24.26,24.080000000000002,23.71,N/A,N/A -2012,5,20,22,30,101770,100610,99480,68,0,3.74,3.97,4.01,4.03,4.04,4.05,4.05,4.05,4.0600000000000005,151.65,151.34,151.12,150.88,150.65,150.42000000000002,150.17000000000002,149.92000000000002,149.27,25.490000000000002,25.18,25.01,24.82,24.63,24.44,24.25,24.07,23.69,N/A,N/A -2012,5,20,23,30,101750,100590,99460,71.82000000000001,0,3.2600000000000002,3.46,3.49,3.5100000000000002,3.52,3.52,3.5300000000000002,3.5300000000000002,3.5300000000000002,163.15,162.82,162.56,162.3,162.05,161.82,161.54,161.28,160.67000000000002,25.330000000000002,25.03,24.86,24.66,24.47,24.29,24.1,23.92,23.54,N/A,N/A -2012,5,21,0,30,101730,100560,99430,70.77,0,2.92,3.09,3.12,3.13,3.13,3.14,3.14,3.14,3.16,173.70000000000002,173.16,172.81,172.42000000000002,172.01,171.58,171.06,170.56,169.07,25.32,25.01,24.85,24.650000000000002,24.46,24.28,24.09,23.91,23.54,N/A,N/A -2012,5,21,1,30,101730,100570,99440,72.71000000000001,0,2.74,2.9,2.93,2.95,2.96,2.97,2.97,2.98,2.99,168.58,168.12,167.83,167.52,167.21,166.9,166.54,166.21,165.29,25.21,24.900000000000002,24.740000000000002,24.54,24.35,24.17,23.97,23.79,23.42,N/A,N/A -2012,5,21,2,30,101760,100590,99460,73.01,0,1.95,2.04,2.06,2.06,2.07,2.07,2.07,2.08,2.09,180.47,179.69,179.26,178.8,178.36,177.91,177.39000000000001,176.9,175.56,25.150000000000002,24.84,24.68,24.48,24.29,24.1,23.91,23.73,23.35,N/A,N/A -2012,5,21,3,30,101770,100600,99470,74.56,0,2.14,2.24,2.25,2.2600000000000002,2.2600000000000002,2.25,2.25,2.25,2.25,196.56,196.23000000000002,196.04,195.82,195.59,195.36,195.06,194.76,193.75,25.080000000000002,24.76,24.59,24.400000000000002,24.21,24.02,23.830000000000002,23.650000000000002,23.27,N/A,N/A -2012,5,21,4,30,101790,100620,99490,75.64,0,1.9100000000000001,1.99,2,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.02,197.05,196.33,195.78,195.16,194.51,193.82,192.96,192.11,189.5,25.01,24.69,24.52,24.330000000000002,24.14,23.96,23.77,23.59,23.22,N/A,N/A -2012,5,21,5,30,101790,100620,99500,75.2,0,1.45,1.5,1.51,1.5,1.5,1.5,1.5,1.5,1.51,215.23000000000002,214.14000000000001,213.43,212.62,211.8,210.97,209.82,208.66,204.18,25,24.68,24.52,24.32,24.14,23.95,23.76,23.59,23.240000000000002,N/A,N/A -2012,5,21,6,30,101820,100650,99520,74.59,0,1.78,1.84,1.85,1.85,1.84,1.84,1.83,1.83,1.82,217.55,216.78,216.39000000000001,215.94,215.42000000000002,214.86,214.1,213.35,210.33,25.060000000000002,24.73,24.57,24.37,24.19,24,23.81,23.64,23.29,N/A,N/A -2012,5,21,7,30,101860,100700,99570,73.17,0,1.46,1.52,1.52,1.52,1.52,1.51,1.51,1.5,1.5,213.96,213.72,213.38,213.01,212.62,212.21,211.69,211.17000000000002,209.46,25.14,24.830000000000002,24.650000000000002,24.46,24.28,24.09,23.900000000000002,23.72,23.36,N/A,N/A -2012,5,21,8,30,101850,100690,99560,73.37,0,1.57,1.6300000000000001,1.62,1.62,1.61,1.6,1.59,1.58,1.56,228.23000000000002,227.87,227.66,227.41,227.15,226.89000000000001,226.52,226.17000000000002,224.99,25.11,24.79,24.62,24.43,24.240000000000002,24.060000000000002,23.86,23.68,23.31,N/A,N/A -2012,5,21,9,30,101890,100720,99590,72.78,0,1.57,1.61,1.61,1.6,1.59,1.57,1.56,1.54,1.5,269.51,269.18,269.1,269.01,268.88,268.71,268.49,268.26,267.34000000000003,25.14,24.830000000000002,24.650000000000002,24.46,24.27,24.09,23.900000000000002,23.72,23.36,N/A,N/A -2012,5,21,10,30,101910,100740,99610,72.01,0,1.93,2.0100000000000002,2.0100000000000002,2.0100000000000002,2,1.99,1.98,1.97,1.94,293.85,294.01,294.06,294.11,294.16,294.21,294.23,294.25,294.27,25.2,24.88,24.71,24.52,24.330000000000002,24.14,23.95,23.77,23.400000000000002,N/A,N/A -2012,5,21,11,30,101930,100760,99630,76.73,0,3.2800000000000002,3.37,3.34,3.3000000000000003,3.25,3.2,3.15,3.1,2.98,323.76,323.77,323.71,323.64,323.56,323.49,323.39,323.29,323.06,25.01,24.68,24.51,24.310000000000002,24.13,23.94,23.75,23.57,23.19,N/A,N/A -2012,5,21,12,30,101950,100780,99650,80.69,0,4.17,4.36,4.36,4.3500000000000005,4.32,4.28,4.24,4.2,4.09,332.35,332.6,332.8,333.02,333.23,333.43,333.67,333.90000000000003,334.48,24.52,24.16,23.98,23.78,23.59,23.41,23.21,23.04,22.66,N/A,N/A -2012,5,21,13,30,101990,100820,99690,78.22,0,3.74,3.92,3.93,3.92,3.91,3.89,3.87,3.85,3.7800000000000002,339.16,339.56,339.77,339.98,340.19,340.39,340.62,340.84000000000003,341.37,24.63,24.28,24.1,23.91,23.71,23.53,23.34,23.150000000000002,22.78,N/A,N/A -2012,5,21,14,30,102000,100840,99700,75.32000000000001,0,3.88,4.08,4.11,4.12,4.12,4.11,4.11,4.1,4.08,344.88,344.42,344.14,343.85,343.57,343.29,342.98,342.68,341.94,24.91,24.57,24.39,24.19,24,23.82,23.63,23.45,23.07,N/A,N/A -2012,5,21,15,30,102010,100840,99710,70.05,0,3.45,3.66,3.7,3.72,3.74,3.75,3.77,3.7800000000000002,3.81,343.15000000000003,342.87,342.68,342.49,342.3,342.12,341.92,341.72,341.21,25.27,24.94,24.77,24.57,24.39,24.2,24.01,23.830000000000002,23.46,N/A,N/A -2012,5,21,16,30,102000,100840,99710,64.13,0,3.08,3.27,3.31,3.34,3.36,3.38,3.41,3.43,3.52,334.66,334.93,335.14,335.35,335.55,335.76,336.01,336.24,336.83,25.82,25.51,25.34,25.150000000000002,24.97,24.79,24.6,24.42,24.07,N/A,N/A -2012,5,21,17,30,101970,100810,99680,62.17,0,2.77,2.96,3.0100000000000002,3.04,3.06,3.09,3.11,3.14,3.21,312.85,313.88,314.57,315.26,315.93,316.61,317.35,318.05,319.89,26.39,26.09,25.93,25.740000000000002,25.55,25.37,25.18,25,24.64,N/A,N/A -2012,5,21,18,30,101940,100780,99650,61.31,0,2.59,2.75,2.7800000000000002,2.8000000000000003,2.82,2.85,2.9,2.96,3.3200000000000003,275.19,276.67,277.7,278.88,280.15000000000003,281.53000000000003,283.59000000000003,285.77,294.90000000000003,26.71,26.41,26.25,26.060000000000002,25.88,25.71,25.54,25.39,25.18,N/A,N/A -2012,5,21,19,30,101910,100750,99620,61.08,0,2.5100000000000002,2.59,2.57,2.5300000000000002,2.49,2.44,2.4,2.36,3.0100000000000002,227.78,229.4,230.65,232.26,234.39000000000001,236.98000000000002,243.36,250.58,286.07,26.96,26.67,26.51,26.32,26.16,25.990000000000002,25.86,25.740000000000002,25.84,N/A,N/A -2012,5,21,20,30,101860,100700,99580,65.67,0,3.93,4.05,4,3.9,3.7,3.44,2.68,1.97,1.71,193.75,194.08,194.35,194.79,196.1,198.08,211.47,224.8,238.5,26.810000000000002,26.51,26.36,26.18,26.060000000000002,25.96,26.02,26.14,26,N/A,N/A -2012,5,21,21,30,101770,100610,99490,69.01,0,5.5200000000000005,5.86,5.87,5.8100000000000005,5.74,5.66,5.51,5.34,4.05,190.1,190.15,190.23,190.32,190.43,190.55,190.88,191.25,198.4,26.78,26.5,26.35,26.16,25.990000000000002,25.82,25.66,25.53,25.84,N/A,N/A -2012,5,21,22,30,101710,100560,99440,69.76,0,6.42,6.84,6.8500000000000005,6.8,6.72,6.61,6.16,5.62,4.88,192.03,192.01,191.99,191.96,191.9,191.82,192.19,192.71,195.34,26.650000000000002,26.45,26.330000000000002,26.18,26.09,26.02,26.09,26.22,26.28,N/A,N/A -2012,5,21,23,30,101680,100520,99400,69.26,0,6.5,6.9,6.93,6.93,6.8100000000000005,6.5600000000000005,6.22,5.87,5.23,195.34,195.38,195.36,195.33,195.41,195.6,196.37,197.31,200.3,26.57,26.41,26.32,26.27,26.310000000000002,26.42,26.560000000000002,26.7,26.61,N/A,N/A -2012,5,22,0,30,101620,100470,99350,71.33,0,6.5600000000000005,7.01,7.05,7.04,7.07,7.12,7.0600000000000005,6.96,6.5200000000000005,207.83,207.91,207.95000000000002,207.99,208.03,208.07,208.55,209.15,211.84,26.41,26.2,26.07,25.91,25.8,25.71,25.79,25.91,26.19,N/A,N/A -2012,5,22,1,30,101630,100470,99340,74.26,0,7.11,7.69,7.78,7.8,7.8,7.79,7.7700000000000005,7.75,7.73,228.32,228.29,228.25,228.21,228.17000000000002,228.11,228.03,227.93,227.42000000000002,26.18,25.92,25.77,25.59,25.42,25.25,25.080000000000002,24.93,24.76,N/A,N/A -2012,5,22,2,30,101640,100480,99360,75.22,0,7.390000000000001,8.01,8.11,8.14,8.15,8.14,8.120000000000001,8.11,8.07,241.11,241.06,240.99,240.93,240.87,240.81,240.72,240.63,240.05,26.080000000000002,25.810000000000002,25.66,25.47,25.3,25.12,24.94,24.78,24.54,N/A,N/A -2012,5,22,3,30,101650,100490,99370,75.64,0,6.26,6.79,6.890000000000001,6.93,6.95,6.96,6.95,6.95,6.95,242.67000000000002,242.76,242.81,242.83,242.84,242.84,242.83,242.83,242.79,26.05,25.77,25.62,25.43,25.25,25.07,24.89,24.72,24.38,N/A,N/A -2012,5,22,4,30,101640,100480,99360,76.06,0,5.92,6.390000000000001,6.47,6.49,6.51,6.51,6.5200000000000005,6.5200000000000005,6.6000000000000005,247.94,247.89000000000001,247.9,247.93,247.97,248.02,248.09,248.15,248.45000000000002,25.94,25.66,25.5,25.310000000000002,25.13,24.95,24.77,24.6,24.310000000000002,N/A,N/A -2012,5,22,5,30,101640,100480,99360,76.27,0,5.45,5.87,5.94,5.97,5.98,5.98,5.97,5.97,5.98,253.15,253.25,253.32,253.4,253.48000000000002,253.57,253.68,253.8,254.26000000000002,25.91,25.63,25.48,25.28,25.1,24.92,24.740000000000002,24.560000000000002,24.22,N/A,N/A -2012,5,22,6,30,101660,100500,99370,76.57000000000001,0,5.5600000000000005,5.97,6.04,6.0600000000000005,6.07,6.07,6.0600000000000005,6.05,6.04,261.88,261.91,261.89,261.88,261.88,261.87,261.87,261.86,261.88,25.98,25.66,25.5,25.3,25.12,24.93,24.75,24.57,24.22,N/A,N/A -2012,5,22,7,30,101640,100480,99350,75.42,0,6.09,6.5200000000000005,6.59,6.6000000000000005,6.6000000000000005,6.59,6.58,6.5600000000000005,6.5600000000000005,267.22,267.17,267.09000000000003,266.99,266.9,266.79,266.67,266.55,266.17,25.94,25.63,25.47,25.27,25.09,24.92,24.740000000000002,24.57,24.26,N/A,N/A -2012,5,22,8,30,101620,100460,99340,76.63,0,6.45,6.890000000000001,6.96,6.97,6.97,6.96,6.94,6.92,6.890000000000001,270.58,270.28000000000003,270.05,269.79,269.54,269.27,268.96,268.65,267.81,25.53,25.19,25.02,24.830000000000002,24.64,24.46,24.28,24.1,23.75,N/A,N/A -2012,5,22,9,30,101650,100490,99360,79.03,0,5.9,6.28,6.3500000000000005,6.37,6.38,6.37,6.3500000000000005,6.34,6.29,265.1,265.1,265.08,265.03000000000003,264.98,264.93,264.85,264.76,264.53000000000003,25.17,24.810000000000002,24.63,24.43,24.25,24.060000000000002,23.87,23.69,23.32,N/A,N/A -2012,5,22,10,30,101630,100460,99340,79.56,0,6.37,6.76,6.83,6.84,6.84,6.82,6.8100000000000005,6.79,6.74,261.6,261.74,261.81,261.88,261.94,261.99,262.03000000000003,262.05,262.06,24.97,24.61,24.43,24.23,24.05,23.86,23.67,23.5,23.14,N/A,N/A -2012,5,22,11,30,101650,100480,99350,80.98,0,6.15,6.5600000000000005,6.640000000000001,6.67,6.69,6.69,6.69,6.69,6.69,266.43,266.23,266.11,265.98,265.84000000000003,265.71,265.54,265.39,264.96,24.78,24.39,24.21,24.01,23.830000000000002,23.64,23.45,23.27,22.91,N/A,N/A -2012,5,22,12,30,101640,100480,99350,81.52,0,6.66,7.11,7.2,7.24,7.25,7.26,7.2700000000000005,7.2700000000000005,7.28,271.26,271.13,271.03000000000003,270.91,270.78000000000003,270.63,270.45,270.27,269.73,24.64,24.240000000000002,24.060000000000002,23.86,23.67,23.490000000000002,23.3,23.12,22.77,N/A,N/A -2012,5,22,13,30,101630,100470,99340,79.03,0,6.6000000000000005,7.05,7.140000000000001,7.18,7.21,7.22,7.24,7.25,7.3100000000000005,273.46,273.14,273,272.85,272.71,272.56,272.38,272.2,271.68,24.57,24.18,24,23.81,23.62,23.44,23.26,23.09,22.77,N/A,N/A -2012,5,22,14,30,101650,100490,99360,76.75,0,5.99,6.4,6.49,6.53,6.5600000000000005,6.59,6.62,6.65,6.79,265.98,265.8,265.7,265.58,265.46,265.34000000000003,265.2,265.06,264.65,24.73,24.35,24.18,23.98,23.8,23.62,23.44,23.27,22.95,N/A,N/A -2012,5,22,15,30,101630,100470,99340,74.54,0,5.72,6.08,6.15,6.18,6.2,6.21,6.22,6.24,6.3500000000000005,261.92,261.94,262.02,262.1,262.21,262.32,262.53000000000003,262.74,263.89,25.12,24.76,24.59,24.400000000000002,24.22,24.05,23.88,23.71,23.43,N/A,N/A -2012,5,22,16,30,101620,100460,99330,73.48,0,5.42,5.75,5.79,5.79,5.78,5.76,5.74,5.72,5.68,244.48000000000002,245.18,245.62,246.11,246.6,247.12,247.77,248.4,250.69,25.55,25.21,25.04,24.85,24.66,24.490000000000002,24.3,24.13,23.82,N/A,N/A -2012,5,22,17,30,101570,100410,99280,74.10000000000001,0,5.53,5.84,5.87,5.86,5.83,5.8,5.7700000000000005,5.74,5.58,231.53,232.05,232.45000000000002,232.99,233.76,234.72,237.33,240.31,255.18,25.91,25.580000000000002,25.43,25.25,25.080000000000002,24.93,24.86,24.810000000000002,25.16,N/A,N/A -2012,5,22,18,30,101520,100370,99250,76.69,0,5.43,5.74,5.76,5.74,5.7,5.65,5.58,5.5,4.98,230.23000000000002,230.57,230.81,231.14000000000001,231.62,232.21,233.94,235.96,253.01000000000002,26.2,25.89,25.73,25.55,25.39,25.240000000000002,25.150000000000002,25.080000000000002,25.560000000000002,N/A,N/A -2012,5,22,19,30,101490,100330,99210,78.54,0,5.32,5.64,5.67,5.65,5.62,5.57,5.5,5.42,4.64,218.4,218.48000000000002,218.57,218.67000000000002,218.79,218.92000000000002,219.16,219.41,223.8,26.310000000000002,25.990000000000002,25.82,25.63,25.45,25.28,25.11,24.95,24.94,N/A,N/A -2012,5,22,20,30,101430,100270,99150,77.23,0,6.51,6.96,7.0200000000000005,7.01,6.98,6.93,6.8500000000000005,6.7700000000000005,6.45,212.1,212.23000000000002,212.32,212.42000000000002,212.51,212.61,212.73000000000002,212.86,213.34,26.34,26.03,25.87,25.68,25.5,25.32,25.14,24.98,24.69,N/A,N/A -2012,5,22,21,30,101370,100220,99100,79,0,6.79,7.28,7.34,7.33,7.3,7.26,7.2,7.140000000000001,6.83,216.09,216,215.94,215.87,215.79,215.70000000000002,215.56,215.42000000000002,214.6,26.27,25.97,25.810000000000002,25.62,25.44,25.26,25.09,24.93,24.68,N/A,N/A -2012,5,22,22,30,101300,100150,99030,78.76,0,7.71,8.34,8.45,8.47,8.47,8.45,8.41,8.370000000000001,8.27,213.19,213.19,213.18,213.16,213.13,213.09,213.03,212.97,212.73000000000002,26.23,25.92,25.76,25.57,25.38,25.2,25.02,24.85,24.5,N/A,N/A -2012,5,22,23,30,101250,100090,98980,77.22,0,8.19,8.870000000000001,8.99,9.02,9.01,8.99,8.950000000000001,8.91,8.77,216.98000000000002,216.99,216.97,216.94,216.9,216.85,216.78,216.70000000000002,216.26,26.27,25.98,25.82,25.63,25.46,25.29,25.12,24.96,24.72,N/A,N/A -2012,5,23,0,30,101210,100060,98940,75.67,0,7.17,7.75,7.8500000000000005,7.87,7.87,7.86,7.84,7.82,7.7700000000000005,216.72,216.74,216.74,216.72,216.68,216.62,216.53,216.41,215.76,26.330000000000002,26.05,25.89,25.7,25.53,25.35,25.18,25.02,24.75,N/A,N/A -2012,5,23,1,30,101170,100010,98900,75.68,0,7.0600000000000005,7.63,7.73,7.75,7.76,7.76,7.75,7.73,7.7,219.06,219.07,219.06,219.04,219,218.97,218.91,218.84,218.51,26.240000000000002,25.94,25.78,25.59,25.41,25.23,25.05,24.88,24.55,N/A,N/A -2012,5,23,2,30,101150,100000,98890,76.78,0,7.24,7.82,7.91,7.930000000000001,7.930000000000001,7.91,7.88,7.8500000000000005,7.8,226.67000000000002,226.59,226.53,226.46,226.37,226.28,226.17000000000002,226.05,225.6,26.26,25.96,25.8,25.62,25.44,25.27,25.09,24.93,24.66,N/A,N/A -2012,5,23,3,30,101150,100000,98880,73.3,0,6.6000000000000005,7.15,7.25,7.29,7.3100000000000005,7.32,7.32,7.32,7.33,222.6,222.53,222.52,222.52,222.52,222.52,222.51,222.49,222.3,26.37,26.09,25.93,25.740000000000002,25.560000000000002,25.38,25.2,25.04,24.71,N/A,N/A -2012,5,23,4,30,101110,99960,98840,75.16,0,7.12,7.69,7.79,7.82,7.84,7.83,7.8100000000000005,7.78,7.69,221.61,221.52,221.52,221.51,221.5,221.48000000000002,221.44,221.4,221.25,26.21,25.91,25.75,25.560000000000002,25.38,25.2,25.02,24.84,24.490000000000002,N/A,N/A -2012,5,23,5,30,101100,99950,98830,76.55,0,6.58,7.15,7.2700000000000005,7.33,7.37,7.38,7.38,7.38,7.34,217.69,217.79,217.83,217.84,217.84,217.83,217.8,217.77,217.64000000000001,26.1,25.8,25.63,25.43,25.240000000000002,25.05,24.86,24.67,24.28,N/A,N/A -2012,5,23,6,30,101100,99950,98830,71.14,0,7.01,7.640000000000001,7.79,7.87,7.930000000000001,7.97,8.01,8.040000000000001,8.11,214.70000000000002,214.66,214.72,214.8,214.88,214.96,215.05,215.15,215.34,26.310000000000002,26.03,25.88,25.69,25.51,25.330000000000002,25.150000000000002,24.98,24.62,N/A,N/A -2012,5,23,7,30,101090,99940,98820,73.02,0,6.82,7.390000000000001,7.54,7.62,7.68,7.73,7.78,7.82,7.930000000000001,215.58,215.56,215.55,215.52,215.49,215.46,215.42000000000002,215.37,215.26,26.09,25.79,25.62,25.43,25.25,25.07,24.88,24.71,24.35,N/A,N/A -2012,5,23,8,30,101080,99920,98800,72.32000000000001,0,7.33,8.03,8.19,8.28,8.34,8.39,8.42,8.46,8.53,217.62,217.47,217.38,217.28,217.18,217.09,216.98000000000002,216.88,216.65,26.150000000000002,25.84,25.67,25.48,25.29,25.11,24.92,24.740000000000002,24.38,N/A,N/A -2012,5,23,9,30,101080,99920,98800,75.48,0,7.68,8.34,8.48,8.540000000000001,8.58,8.6,8.6,8.6,8.58,210.44,210.5,210.54,210.61,210.69,210.76,210.86,210.94,211.14000000000001,25.92,25.59,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A -2012,5,23,10,30,101090,99940,98820,72.23,0,7.19,7.82,7.98,8.07,8.14,8.19,8.22,8.26,8.3,210.69,210.4,210.25,210.1,209.97,209.84,209.71,209.59,209.36,25.990000000000002,25.69,25.53,25.330000000000002,25.150000000000002,24.96,24.77,24.580000000000002,24.21,N/A,N/A -2012,5,23,11,30,101060,99900,98790,69.27,0,7.03,7.66,7.82,7.92,7.99,8.05,8.11,8.16,8.25,203.75,203.72,203.76,203.81,203.86,203.91,203.95000000000002,203.99,204.09,26.02,25.7,25.53,25.34,25.150000000000002,24.97,24.77,24.59,24.22,N/A,N/A -2012,5,23,12,30,101070,99920,98800,68.48,0,6.69,7.2700000000000005,7.42,7.51,7.57,7.62,7.67,7.71,7.78,206.22,206.23000000000002,206.25,206.3,206.35,206.4,206.46,206.51,206.64000000000001,25.990000000000002,25.67,25.51,25.310000000000002,25.12,24.94,24.740000000000002,24.560000000000002,24.18,N/A,N/A -2012,5,23,13,30,101090,99930,98820,67.91,0,6.8,7.36,7.49,7.55,7.6000000000000005,7.62,7.640000000000001,7.65,7.67,193.4,193.73000000000002,193.93,194.12,194.29,194.45000000000002,194.6,194.74,195.01,25.98,25.67,25.5,25.310000000000002,25.12,24.93,24.740000000000002,24.560000000000002,24.18,N/A,N/A -2012,5,23,14,30,101070,99920,98800,70.42,0,7,7.63,7.76,7.84,7.890000000000001,7.92,7.94,7.96,7.97,199.23000000000002,199.41,199.39000000000001,199.34,199.27,199.19,199.1,199.01,198.79,25.85,25.52,25.34,25.150000000000002,24.96,24.77,24.57,24.39,24,N/A,N/A -2012,5,23,15,30,101110,99950,98830,67.95,0,6.51,7.09,7.21,7.29,7.34,7.37,7.4,7.42,7.45,191.38,191.6,191.61,191.6,191.59,191.55,191.52,191.49,191.4,25.94,25.61,25.44,25.240000000000002,25.04,24.86,24.66,24.47,24.09,N/A,N/A -2012,5,23,16,30,101070,99920,98800,63.690000000000005,0,7.25,7.87,8.02,8.11,8.19,8.24,8.290000000000001,8.33,8.39,192.87,192.91,192.9,192.88,192.86,192.84,192.81,192.78,192.72,26.09,25.78,25.62,25.42,25.240000000000002,25.05,24.86,24.68,24.29,N/A,N/A -2012,5,23,17,30,101060,99910,98790,66.86,0,7.72,8.34,8.48,8.540000000000001,8.58,8.61,8.63,8.64,8.66,192.77,192.78,192.77,192.75,192.73000000000002,192.70000000000002,192.67000000000002,192.65,192.6,25.96,25.64,25.47,25.27,25.09,24.900000000000002,24.71,24.53,24.150000000000002,N/A,N/A -2012,5,23,18,30,101020,99870,98750,64.45,0,7.48,8.15,8.31,8.4,8.47,8.52,8.56,8.59,8.65,180.74,180.92000000000002,181.14000000000001,181.36,181.57,181.77,181.98,182.17000000000002,182.57,26.14,25.84,25.68,25.490000000000002,25.3,25.12,24.93,24.75,24.37,N/A,N/A -2012,5,23,19,30,101000,99850,98730,68.34,0,7.72,8.47,8.64,8.75,8.82,8.870000000000001,8.91,8.94,8.98,187.81,188.38,188.52,188.62,188.69,188.74,188.78,188.81,188.82,26.09,25.76,25.59,25.39,25.19,25,24.8,24.61,24.22,N/A,N/A -2012,5,23,20,30,100970,99820,98700,68.83,0,8.69,9.41,9.58,9.65,9.69,9.71,9.72,9.72,9.71,189.4,189.52,189.6,189.67000000000002,189.73,189.78,189.83,189.87,189.93,25.97,25.650000000000002,25.48,25.29,25.1,24.91,24.71,24.53,24.14,N/A,N/A -2012,5,23,21,30,100910,99750,98640,70.44,0,8.83,9.64,9.81,9.9,9.950000000000001,9.98,9.99,10,10,185.5,185.1,184.81,184.53,184.27,184.04,183.81,183.6,183.19,25.94,25.61,25.44,25.240000000000002,25.05,24.86,24.66,24.48,24.09,N/A,N/A -2012,5,23,22,30,100850,99700,98590,68.8,0,8.28,9.18,9.41,9.55,9.66,9.74,9.8,9.85,9.93,177.12,177.70000000000002,177.92000000000002,178.11,178.27,178.41,178.53,178.64000000000001,178.84,26.04,25.71,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A -2012,5,23,23,30,100830,99680,98560,72.54,0,8.39,9.24,9.450000000000001,9.59,9.68,9.76,9.81,9.86,9.93,179.79,180.27,180.44,180.58,180.69,180.79,180.88,180.96,181.08,25.86,25.52,25.35,25.150000000000002,24.96,24.77,24.57,24.38,23.990000000000002,N/A,N/A -2012,5,24,0,30,100780,99630,98510,77.04,0,8.86,9.78,10,10.14,10.24,10.31,10.36,10.4,10.450000000000001,173.35,172.69,172.55,172.42000000000002,172.33,172.24,172.17000000000002,172.1,171.99,25.73,25.37,25.19,24.990000000000002,24.79,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A -2012,5,24,1,30,100750,99600,98480,78.29,0,9.17,10.09,10.32,10.46,10.55,10.620000000000001,10.67,10.71,10.77,168.26,168.72,168.88,169,169.11,169.21,169.3,169.38,169.54,25.57,25.21,25.03,24.830000000000002,24.64,24.45,24.25,24.07,23.68,N/A,N/A -2012,5,24,2,30,100750,99600,98490,79.57000000000001,0,9.75,10.72,10.96,11.11,11.200000000000001,11.28,11.33,11.370000000000001,11.44,171.11,171.05,171.07,171.09,171.11,171.12,171.14000000000001,171.16,171.19,25.490000000000002,25.12,24.94,24.740000000000002,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A -2012,5,24,3,30,100740,99590,98470,80.63,0,10.85,11.98,12.27,12.42,12.530000000000001,12.59,12.64,12.67,12.69,166.65,166.74,166.83,166.91,166.98,167.05,167.12,167.18,167.3,25.51,25.13,24.95,24.740000000000002,24.55,24.35,24.150000000000002,23.97,23.580000000000002,N/A,N/A -2012,5,24,4,30,100720,99570,98460,81.4,0,10.17,11.26,11.540000000000001,11.72,11.84,11.94,12.01,12.07,12.15,174.28,174.31,174.28,174.24,174.20000000000002,174.17000000000002,174.12,174.08,174,25.580000000000002,25.21,25.02,24.82,24.62,24.43,24.23,24.04,23.650000000000002,N/A,N/A -2012,5,24,5,30,100700,99550,98440,82.24,0,10.77,11.88,12.16,12.34,12.46,12.540000000000001,12.6,12.65,12.71,169.33,169.85,170.17000000000002,170.5,170.8,171.08,171.36,171.62,172.16,25.8,25.44,25.27,25.060000000000002,24.87,24.68,24.48,24.3,23.91,N/A,N/A -2012,5,24,6,30,100700,99550,98430,82.3,0,10.93,12.07,12.38,12.56,12.68,12.780000000000001,12.85,12.9,12.99,176.57,176.67000000000002,176.64000000000001,176.61,176.57,176.52,176.47,176.43,176.32,25.72,25.330000000000002,25.150000000000002,24.94,24.75,24.55,24.36,24.17,23.78,N/A,N/A -2012,5,24,7,30,100700,99550,98430,83.77,0,10.96,12.120000000000001,12.4,12.58,12.700000000000001,12.780000000000001,12.85,12.89,12.96,173.01,173.19,173.28,173.39000000000001,173.48,173.58,173.68,173.78,173.98,25.71,25.32,25.14,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A -2012,5,24,8,30,100680,99530,98410,85.76,0,11.41,12.65,12.96,13.16,13.3,13.4,13.48,13.55,13.64,176.52,176.25,176.15,176.08,176.02,175.97,175.93,175.89000000000001,175.84,25.59,25.19,25.01,24.8,24.61,24.41,24.21,24.03,23.64,N/A,N/A -2012,5,24,9,30,100680,99530,98420,83.18,0,11.44,12.71,13.040000000000001,13.25,13.39,13.51,13.6,13.67,13.77,175.72,175.76,175.79,175.81,175.84,175.86,175.87,175.89000000000001,175.93,25.82,25.44,25.26,25.060000000000002,24.86,24.67,24.47,24.28,23.900000000000002,N/A,N/A -2012,5,24,10,30,100710,99560,98450,82.94,0,11.5,12.75,13.09,13.3,13.46,13.58,13.67,13.75,13.870000000000001,171.36,171.61,171.69,171.78,171.86,171.94,172.02,172.1,172.25,25.82,25.45,25.27,25.060000000000002,24.87,24.68,24.48,24.29,23.91,N/A,N/A -2012,5,24,11,30,100710,99570,98450,79.89,0,11.77,13.14,13.5,13.75,13.92,14.05,14.15,14.24,14.35,175.25,174.89000000000001,174.82,174.78,174.75,174.74,174.73,174.73,174.74,25.97,25.6,25.41,25.21,25.01,24.82,24.62,24.43,24.04,N/A,N/A -2012,5,24,12,30,100750,99600,98480,81.84,0,11.870000000000001,13.18,13.51,13.72,13.86,13.96,14.030000000000001,14.08,14.15,174.36,174.42000000000002,174.5,174.59,174.68,174.75,174.84,174.92000000000002,175.08,25.95,25.580000000000002,25.400000000000002,25.19,25,24.8,24.61,24.42,24.03,N/A,N/A -2012,5,24,13,30,100780,99630,98520,79.81,0,11.65,12.96,13.32,13.540000000000001,13.700000000000001,13.81,13.9,13.96,14.05,180.1,180.44,180.59,180.71,180.81,180.9,180.96,181.02,181.12,26.150000000000002,25.79,25.61,25.400000000000002,25.21,25.01,24.82,24.63,24.240000000000002,N/A,N/A -2012,5,24,14,30,100840,99690,98580,81.25,0,11,12.19,12.49,12.68,12.81,12.91,12.99,13.040000000000001,13.13,182.74,182.11,181.92000000000002,181.74,181.58,181.44,181.31,181.20000000000002,180.98,26.13,25.78,25.6,25.400000000000002,25.21,25.02,24.82,24.63,24.25,N/A,N/A -2012,5,24,15,30,100870,99720,98610,76.85000000000001,0,11.68,13.030000000000001,13.36,13.56,13.69,13.780000000000001,13.84,13.89,13.93,178.02,178.61,178.81,178.97,179.1,179.20000000000002,179.28,179.35,179.46,26.42,26.09,25.91,25.71,25.52,25.330000000000002,25.13,24.95,24.560000000000002,N/A,N/A -2012,5,24,16,30,100890,99740,98630,77.53,0,11.09,12.31,12.63,12.82,12.96,13.06,13.14,13.200000000000001,13.290000000000001,178.78,178.77,178.81,178.87,178.92000000000002,178.97,179.03,179.08,179.18,26.45,26.14,25.97,25.78,25.59,25.41,25.22,25.04,24.66,N/A,N/A -2012,5,24,17,30,100920,99770,98660,77.63,0,10.1,11.14,11.42,11.6,11.74,11.84,11.94,12.02,12.16,179.3,179.73,179.91,180.1,180.29,180.46,180.62,180.77,181.06,26.47,26.16,25.990000000000002,25.8,25.62,25.44,25.25,25.07,24.69,N/A,N/A -2012,5,24,18,30,100950,99800,98690,77.21000000000001,0,10.5,11.73,12.05,12.23,12.370000000000001,12.46,12.52,12.57,12.63,178.51,178.79,178.9,179.01,179.09,179.16,179.23,179.29,179.4,26.560000000000002,26.240000000000002,26.060000000000002,25.86,25.67,25.48,25.28,25.09,24.71,N/A,N/A -2012,5,24,19,30,100930,99780,98670,75.73,0,10.8,11.92,12.21,12.370000000000001,12.47,12.55,12.6,12.65,12.700000000000001,174.89000000000001,175.37,175.59,175.76,175.9,176.02,176.12,176.20000000000002,176.35,26.67,26.38,26.23,26.03,25.85,25.67,25.48,25.3,24.92,N/A,N/A -2012,5,24,20,30,100890,99740,98630,76.21000000000001,0,9.34,10.34,10.58,10.74,10.85,10.93,10.99,11.040000000000001,11.11,168.71,169.09,169.34,169.6,169.84,170.06,170.28,170.49,170.91,26.64,26.34,26.17,25.98,25.79,25.61,25.41,25.23,24.85,N/A,N/A -2012,5,24,21,30,100880,99740,98620,73.01,0,9.49,10.540000000000001,10.8,10.97,11.09,11.19,11.27,11.33,11.44,168.72,168.96,169.01,169.05,169.08,169.11,169.14000000000001,169.17000000000002,169.23,26.72,26.44,26.28,26.09,25.91,25.73,25.54,25.36,24.990000000000002,N/A,N/A -2012,5,24,22,30,100870,99720,98610,76.82000000000001,0,9.72,10.85,11.13,11.32,11.450000000000001,11.55,11.63,11.69,11.790000000000001,170.98,170.66,170.55,170.44,170.34,170.25,170.18,170.1,169.96,26.55,26.23,26.060000000000002,25.86,25.67,25.48,25.29,25.1,24.71,N/A,N/A -2012,5,24,23,30,100860,99720,98600,74.68,0,10.08,11.31,11.64,11.85,12.01,12.14,12.23,12.31,12.42,169.61,169.41,169.36,169.32,169.28,169.24,169.22,169.19,169.15,26.73,26.43,26.27,26.07,25.88,25.69,25.490000000000002,25.3,24.91,N/A,N/A -2012,5,25,0,30,100840,99690,98580,77.14,0,10.370000000000001,11.540000000000001,11.81,11.97,12.09,12.16,12.22,12.26,12.3,162.34,162.46,162.57,162.69,162.79,162.89000000000001,162.99,163.09,163.28,26.57,26.26,26.09,25.89,25.7,25.52,25.32,25.14,24.75,N/A,N/A -2012,5,25,1,30,100810,99660,98550,74.89,0,11.31,12.61,12.92,13.11,13.24,13.33,13.39,13.44,13.5,162.9,163,163.05,163.11,163.16,163.21,163.25,163.29,163.37,26.7,26.400000000000002,26.240000000000002,26.04,25.86,25.67,25.48,25.3,24.91,N/A,N/A -2012,5,25,2,30,100840,99700,98590,70.12,0,10.5,11.61,11.91,12.1,12.25,12.36,12.46,12.540000000000001,12.700000000000001,161.58,161.97,162.22,162.49,162.76,163.02,163.29,163.55,164.12,26.900000000000002,26.67,26.52,26.34,26.18,26.01,25.830000000000002,25.66,25.32,N/A,N/A -2012,5,25,3,30,100870,99730,98620,65.15,0,11.06,12.39,12.77,13.02,13.21,13.35,13.47,13.57,13.74,164.84,164.87,164.87,164.87,164.87,164.86,164.86,164.86,164.86,27.18,26.95,26.810000000000002,26.63,26.46,26.28,26.1,25.92,25.560000000000002,N/A,N/A -2012,5,25,4,30,100890,99740,98630,71.46000000000001,0,11.91,13.31,13.67,13.89,14.040000000000001,14.14,14.200000000000001,14.25,14.290000000000001,164.31,164.23,164.23,164.23,164.23,164.23,164.23,164.23,164.24,26.94,26.66,26.5,26.3,26.12,25.93,25.73,25.54,25.16,N/A,N/A -2012,5,25,5,30,100890,99740,98630,72.5,0,10.68,12,12.31,12.52,12.67,12.790000000000001,12.88,12.96,13.09,161.53,161.76,161.92000000000002,162.09,162.26,162.42000000000002,162.59,162.75,163.1,26.85,26.580000000000002,26.42,26.23,26.05,25.87,25.68,25.5,25.13,N/A,N/A -2012,5,25,6,30,100940,99790,98680,73.88,0,11.26,12.41,12.74,12.96,13.14,13.31,13.47,13.63,13.89,166.77,167.28,167.52,167.8,168.09,168.4,168.73,169.04,169.59,26.68,26.52,26.400000000000002,26.26,26.12,25.98,25.830000000000002,25.69,25.39,N/A,N/A -2012,5,25,7,30,100980,99830,98720,77.21000000000001,0,11.72,12.99,13.32,13.51,13.64,13.73,13.8,13.86,13.950000000000001,166.04,166.07,166.15,166.24,166.33,166.43,166.54,166.65,166.89000000000001,26.55,26.32,26.18,26.01,25.84,25.66,25.490000000000002,25.32,24.97,N/A,N/A -2012,5,25,8,30,101000,99850,98740,80,0,11.9,13.26,13.59,13.780000000000001,13.89,13.96,14,14.030000000000001,14.01,167.55,167.95000000000002,168.11,168.26,168.4,168.53,168.66,168.77,169.01,26.310000000000002,26.02,25.86,25.66,25.48,25.29,25.09,24.91,24.53,N/A,N/A -2012,5,25,9,30,101050,99900,98780,80.79,0,10.55,11.700000000000001,11.99,12.17,12.3,12.39,12.47,12.540000000000001,12.69,166.15,165.88,165.8,165.73,165.67000000000002,165.63,165.61,165.59,165.59,26.23,25.96,25.810000000000002,25.63,25.46,25.29,25.11,24.93,24.59,N/A,N/A -2012,5,25,10,30,101080,99930,98820,79.43,0,9.75,10.97,11.31,11.56,11.76,11.93,12.09,12.23,12.51,169.46,170.02,170.25,170.46,170.65,170.82,170.98,171.13,171.42000000000002,26.310000000000002,26.05,25.900000000000002,25.73,25.55,25.37,25.19,25.02,24.66,N/A,N/A -2012,5,25,11,30,101150,99990,98880,80.29,0,10.21,11.48,11.81,12.030000000000001,12.200000000000001,12.31,12.41,12.48,12.58,167.78,167.88,167.95000000000002,168.03,168.11,168.18,168.27,168.35,168.5,26.21,25.92,25.76,25.560000000000002,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A -2012,5,25,12,30,101210,100050,98940,77.78,0,9.97,11.040000000000001,11.3,11.450000000000001,11.540000000000001,11.6,11.64,11.66,11.68,171.29,170.52,170.22,169.93,169.69,169.47,169.29,169.12,168.85,26.38,26.11,25.95,25.77,25.580000000000002,25.400000000000002,25.2,25.02,24.650000000000002,N/A,N/A -2012,5,25,13,30,101300,100150,99030,79.14,0,8.5,9.39,9.620000000000001,9.76,9.86,9.94,10,10.05,10.14,172.07,172.17000000000002,172.18,172.18,172.17000000000002,172.15,172.13,172.11,172.08,26.330000000000002,26.080000000000002,25.92,25.740000000000002,25.560000000000002,25.38,25.2,25.02,24.66,N/A,N/A -2012,5,25,14,30,101370,100210,99090,79.42,0,8.38,9.34,9.57,9.72,9.82,9.89,9.94,9.98,10,170.44,170.36,170.38,170.41,170.45000000000002,170.48,170.52,170.56,170.64000000000001,26.41,26.13,25.97,25.78,25.59,25.41,25.22,25.04,24.650000000000002,N/A,N/A -2012,5,25,15,30,101410,100250,99130,78.72,0,6.55,7.2700000000000005,7.45,7.57,7.67,7.75,7.82,7.88,8.01,162,162.27,162.47,162.65,162.83,163,163.20000000000002,163.38,163.78,26.39,26.12,25.96,25.78,25.59,25.42,25.23,25.05,24.68,N/A,N/A -2012,5,25,16,30,101460,100300,99190,77.01,0,6.53,7.26,7.44,7.57,7.67,7.75,7.82,7.88,7.99,155.97,156.65,157.04,157.42000000000002,157.78,158.11,158.45000000000002,158.77,159.41,26.62,26.36,26.2,26.02,25.84,25.66,25.47,25.3,24.93,N/A,N/A -2012,5,25,17,30,101490,100340,99220,79.4,0,7.44,8.2,8.39,8.5,8.58,8.63,8.68,8.71,8.76,150.58,150.96,151.18,151.4,151.61,151.82,152.03,152.24,152.69,26.43,26.150000000000002,25.990000000000002,25.8,25.62,25.44,25.25,25.07,24.69,N/A,N/A -2012,5,25,18,30,101510,100360,99240,78.59,0,7.32,8.07,8.25,8.370000000000001,8.45,8.51,8.56,8.6,8.67,149.84,150.39000000000001,150.67000000000002,150.93,151.18,151.41,151.64000000000001,151.85,152.28,26.44,26.16,26,25.810000000000002,25.62,25.44,25.25,25.07,24.69,N/A,N/A -2012,5,25,19,30,101530,100370,99260,79.37,0,7.390000000000001,8.1,8.26,8.35,8.41,8.46,8.49,8.52,8.56,146.38,146.72,146.94,147.16,147.36,147.55,147.75,147.94,148.34,26.39,26.1,25.94,25.75,25.57,25.38,25.19,25.01,24.63,N/A,N/A -2012,5,25,20,30,101530,100370,99250,82.28,0,7.88,8.69,8.870000000000001,8.98,9.040000000000001,9.09,9.11,9.13,9.13,142.27,142.33,142.38,142.45000000000002,142.52,142.58,142.66,142.72,142.87,26.27,25.98,25.810000000000002,25.62,25.43,25.240000000000002,25.04,24.86,24.48,N/A,N/A -2012,5,25,21,30,101520,100360,99240,81.63,0,7.640000000000001,8.47,8.67,8.8,8.89,8.96,9.02,9.06,9.13,143.64000000000001,143.78,143.86,143.94,144.01,144.08,144.14000000000001,144.19,144.3,26.240000000000002,25.95,25.78,25.59,25.400000000000002,25.21,25.01,24.830000000000002,24.45,N/A,N/A -2012,5,25,22,30,101510,100350,99230,81.14,0,8.02,8.83,9.02,9.13,9.200000000000001,9.26,9.3,9.32,9.36,140.39000000000001,140.57,140.70000000000002,140.82,140.92000000000002,141.02,141.11,141.20000000000002,141.37,26.19,25.91,25.75,25.55,25.37,25.19,24.990000000000002,24.810000000000002,24.43,N/A,N/A -2012,5,25,23,30,101490,100330,99210,79.65,0,7.92,8.72,8.91,9.03,9.120000000000001,9.18,9.23,9.27,9.34,139.1,139.33,139.45000000000002,139.57,139.69,139.81,139.93,140.05,140.31,26.18,25.900000000000002,25.740000000000002,25.55,25.37,25.18,24.990000000000002,24.810000000000002,24.44,N/A,N/A -2012,5,26,0,30,101480,100330,99210,82.16,0,8.06,8.86,9.05,9.17,9.25,9.32,9.370000000000001,9.42,9.5,140.29,140.38,140.44,140.51,140.59,140.67000000000002,140.76,140.84,141.05,26.05,25.77,25.61,25.42,25.240000000000002,25.060000000000002,24.87,24.69,24.330000000000002,N/A,N/A -2012,5,26,1,30,101490,100330,99210,79.31,0,8.09,8.94,9.17,9.31,9.42,9.52,9.6,9.67,9.83,144.05,144.15,144.18,144.19,144.19,144.18,144.16,144.15,144.08,26.19,25.92,25.77,25.59,25.41,25.23,25.05,24.87,24.51,N/A,N/A -2012,5,26,2,30,101500,100340,99220,85.56,0,8.22,9.1,9.3,9.42,9.51,9.58,9.63,9.67,9.74,143.93,144.24,144.4,144.55,144.68,144.8,144.92000000000002,145.02,145.24,26.02,25.71,25.55,25.35,25.17,24.98,24.79,24.61,24.240000000000002,N/A,N/A -2012,5,26,3,30,101540,100380,99270,86.5,0,9.23,10.23,10.47,10.620000000000001,10.73,10.8,10.86,10.92,11,145.88,145.73,145.67000000000002,145.63,145.6,145.57,145.54,145.51,145.47,25.98,25.68,25.52,25.330000000000002,25.14,24.96,24.77,24.59,24.22,N/A,N/A -2012,5,26,4,30,101510,100350,99230,87.5,0,9.49,10.57,10.81,10.950000000000001,11.05,11.11,11.15,11.18,11.19,143.73,143.76,143.77,143.78,143.78,143.79,143.79,143.79,143.79,25.84,25.5,25.32,25.12,24.93,24.740000000000002,24.54,24.35,23.96,N/A,N/A -2012,5,26,5,30,101560,100410,99290,84.25,0,8.72,9.63,9.82,9.94,10.01,10.05,10.07,10.08,10.07,153.21,153.07,152.98,152.87,152.76,152.66,152.54,152.43,152.20000000000002,25.98,25.650000000000002,25.48,25.28,25.09,24.900000000000002,24.7,24.52,24.13,N/A,N/A -2012,5,26,6,30,101570,100410,99290,84.69,0,8.3,9.21,9.43,9.57,9.67,9.74,9.81,9.86,9.96,142.49,142.55,142.64000000000001,142.74,142.86,142.98,143.12,143.26,143.61,25.900000000000002,25.59,25.42,25.23,25.05,24.87,24.68,24.5,24.14,N/A,N/A -2012,5,26,7,30,101630,100470,99340,86.29,0,8.91,9.78,9.97,10.07,10.120000000000001,10.15,10.16,10.16,10.13,145.53,145.79,145.92000000000002,146.06,146.18,146.3,146.42000000000002,146.53,146.79,25.75,25.41,25.240000000000002,25.04,24.85,24.67,24.47,24.29,23.91,N/A,N/A -2012,5,26,8,30,101640,100480,99360,87.84,0,8.790000000000001,9.620000000000001,9.82,9.93,10.01,10.07,10.120000000000001,10.16,10.23,151.74,152.28,152.53,152.79,153.02,153.25,153.48,153.70000000000002,154.18,25.62,25.29,25.12,24.92,24.73,24.54,24.35,24.17,23.79,N/A,N/A -2012,5,26,9,30,101630,100470,99350,85.5,0,8.86,9.870000000000001,10.11,10.27,10.39,10.47,10.53,10.58,10.64,156.5,156.4,156.33,156.26,156.19,156.13,156.07,156,155.85,25.73,25.400000000000002,25.22,25.02,24.830000000000002,24.64,24.44,24.26,23.87,N/A,N/A -2012,5,26,10,30,101660,100500,99370,85.64,0,7.87,8.63,8.8,8.9,8.97,9.02,9.05,9.08,9.120000000000001,156.13,156.19,156.24,156.29,156.35,156.4,156.47,156.53,156.71,25.66,25.330000000000002,25.150000000000002,24.96,24.77,24.59,24.39,24.21,23.84,N/A,N/A -2012,5,26,11,30,101680,100520,99400,83.27,0,6.4,7.01,7.18,7.29,7.37,7.44,7.5,7.55,7.66,159.72,160.15,160.29,160.41,160.5,160.59,160.66,160.73,160.84,25.75,25.43,25.26,25.07,24.88,24.69,24.5,24.32,23.94,N/A,N/A -2012,5,26,12,30,101740,100570,99450,86.85000000000001,0,5.86,6.3,6.4,6.45,6.48,6.5,6.5200000000000005,6.53,6.55,152.85,153.24,153.44,153.66,153.88,154.1,154.33,154.55,155.04,25.55,25.21,25.03,24.830000000000002,24.64,24.45,24.25,24.060000000000002,23.67,N/A,N/A -2012,5,26,13,30,101760,100600,99480,83.06,0,5.24,5.66,5.73,5.7700000000000005,5.79,5.8,5.8100000000000005,5.8100000000000005,5.8,150.74,151.17000000000002,151.43,151.68,151.9,152.11,152.31,152.51,152.9,25.7,25.37,25.19,25,24.810000000000002,24.62,24.43,24.240000000000002,23.86,N/A,N/A -2012,5,26,14,30,101790,100630,99510,85.19,0,5.0600000000000005,5.45,5.53,5.57,5.6000000000000005,5.61,5.62,5.62,5.62,145.26,145.51,145.64000000000001,145.76,145.86,145.95000000000002,146.03,146.11,146.23,25.67,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.39,24.2,23.81,N/A,N/A -2012,5,26,15,30,101830,100660,99540,85.07000000000001,0,4.33,4.65,4.72,4.7700000000000005,4.8,4.83,4.86,4.88,4.92,134.12,134.58,134.86,135.1,135.32,135.53,135.73,135.93,136.36,25.59,25.26,25.080000000000002,24.89,24.7,24.51,24.310000000000002,24.13,23.75,N/A,N/A -2012,5,26,16,30,101820,100650,99530,84.22,0,5.42,5.78,5.84,5.84,5.84,5.82,5.79,5.76,5.67,133.99,134.44,134.69,134.94,135.17000000000002,135.41,135.66,135.91,136.5,25.57,25.22,25.04,24.85,24.66,24.47,24.27,24.09,23.71,N/A,N/A -2012,5,26,17,30,101810,100650,99530,85.42,0,5.82,6.2,6.24,6.24,6.23,6.2,6.16,6.13,6.0200000000000005,125.85000000000001,125.9,126.01,126.12,126.24000000000001,126.35000000000001,126.48,126.60000000000001,126.88000000000001,25.67,25.32,25.14,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A -2012,5,26,18,30,101790,100630,99510,84.61,0,5.58,5.96,6.03,6.05,6.07,6.07,6.07,6.0600000000000005,6.04,114.04,114.52,114.81,115.08,115.33,115.57000000000001,115.83,116.06,116.56,25.68,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A -2012,5,26,19,30,101770,100610,99490,82.41,0,5.98,6.47,6.5600000000000005,6.61,6.65,6.67,6.68,6.69,6.7,121.58,121.59,121.59,121.58,121.57000000000001,121.56,121.55,121.53,121.5,25.84,25.490000000000002,25.310000000000002,25.12,24.93,24.740000000000002,24.54,24.36,23.98,N/A,N/A -2012,5,26,20,30,101730,100570,99450,82.64,0,6.3500000000000005,6.9,7.01,7.08,7.12,7.15,7.17,7.18,7.19,117,117.02,117.12,117.23,117.33,117.44,117.56,117.67,117.89,26.01,25.67,25.5,25.3,25.11,24.92,24.72,24.54,24.150000000000002,N/A,N/A -2012,5,26,21,30,101700,100540,99420,81.87,0,6.8100000000000005,7.42,7.53,7.59,7.62,7.640000000000001,7.640000000000001,7.63,7.6000000000000005,125.08,124.84,124.75,124.65,124.57000000000001,124.49000000000001,124.41,124.34,124.19,26,25.67,25.5,25.3,25.11,24.92,24.73,24.54,24.16,N/A,N/A -2012,5,26,22,30,101660,100500,99380,79.13,0,6.61,7.24,7.38,7.46,7.5200000000000005,7.57,7.6000000000000005,7.63,7.68,121.5,121.53,121.55,121.57000000000001,121.59,121.62,121.65,121.68,121.74000000000001,26.14,25.84,25.68,25.48,25.3,25.12,24.92,24.740000000000002,24.36,N/A,N/A -2012,5,26,23,30,101620,100470,99340,80.43,0,6.8,7.44,7.58,7.66,7.71,7.75,7.7700000000000005,7.79,7.8100000000000005,126.42,126.39,126.37,126.36,126.35000000000001,126.32000000000001,126.3,126.28,126.21000000000001,26.04,25.73,25.57,25.37,25.18,25,24.8,24.62,24.23,N/A,N/A -2012,5,27,0,30,101600,100440,99320,82.59,0,7.07,7.76,7.930000000000001,8.03,8.11,8.16,8.21,8.26,8.33,123.44,123.46000000000001,123.5,123.51,123.52,123.52,123.52,123.52,123.5,25.94,25.64,25.48,25.29,25.1,24.92,24.72,24.54,24.17,N/A,N/A -2012,5,27,1,30,101560,100400,99280,83.09,0,7.88,8.67,8.84,8.94,9,9.03,9.05,9.06,9.05,125.39,125.36,125.36,125.36,125.36,125.36,125.36,125.37,125.37,25.97,25.66,25.490000000000002,25.3,25.11,24.92,24.73,24.54,24.16,N/A,N/A -2012,5,27,2,30,101560,100400,99280,79.29,0,7.96,8.790000000000001,8.96,9.06,9.120000000000001,9.16,9.18,9.19,9.200000000000001,130.23,130,129.93,129.87,129.82,129.79,129.76,129.74,129.71,26.04,25.72,25.55,25.35,25.16,24.97,24.78,24.6,24.22,N/A,N/A -2012,5,27,3,30,101540,100380,99260,81.47,0,8.39,9.15,9.34,9.43,9.5,9.55,9.58,9.61,9.67,127.87,128.4,128.62,128.84,129.03,129.21,129.4,129.58,129.94,25.79,25.490000000000002,25.330000000000002,25.14,24.96,24.79,24.6,24.43,24.07,N/A,N/A -2012,5,27,4,30,101520,100360,99240,81.78,0,7.83,8.69,8.9,9.03,9.120000000000001,9.19,9.24,9.290000000000001,9.34,132.19,132.05,132.03,132.03,132.04,132.05,132.08,132.1,132.16,25.740000000000002,25.41,25.23,25.04,24.84,24.650000000000002,24.46,24.27,23.89,N/A,N/A -2012,5,27,5,30,101510,100350,99230,81.28,0,7.140000000000001,7.83,8,8.1,8.17,8.23,8.27,8.3,8.370000000000001,138.17000000000002,138.41,138.6,138.81,139.01,139.21,139.43,139.62,140.06,25.77,25.45,25.28,25.09,24.900000000000002,24.72,24.53,24.35,23.97,N/A,N/A -2012,5,27,6,30,101510,100350,99230,82.5,0,7.15,7.72,7.87,7.95,8,8.040000000000001,8.08,8.1,8.16,141.09,141.4,141.51,141.61,141.73,141.84,141.97,142.1,142.43,25.69,25.36,25.19,24.990000000000002,24.8,24.62,24.43,24.25,23.89,N/A,N/A -2012,5,27,7,30,101530,100370,99250,86.05,0,7.08,7.73,7.890000000000001,7.98,8.05,8.1,8.15,8.18,8.23,141.68,141.87,141.96,142.05,142.14000000000001,142.23,142.32,142.4,142.58,25.560000000000002,25.21,25.03,24.830000000000002,24.64,24.45,24.26,24.07,23.69,N/A,N/A -2012,5,27,8,30,101520,100360,99240,84.17,0,6.92,7.51,7.640000000000001,7.71,7.76,7.79,7.82,7.83,7.86,145.29,145.43,145.53,145.63,145.72,145.8,145.89000000000001,145.97,146.14000000000001,25.64,25.29,25.12,24.92,24.72,24.54,24.34,24.16,23.77,N/A,N/A -2012,5,27,9,30,101510,100350,99230,83.56,0,6.13,6.6000000000000005,6.7,6.75,6.78,6.8100000000000005,6.83,6.8500000000000005,6.88,145.85,145.72,145.70000000000002,145.67000000000002,145.63,145.6,145.58,145.57,145.57,25.57,25.22,25.05,24.86,24.67,24.48,24.29,24.11,23.740000000000002,N/A,N/A -2012,5,27,10,30,101530,100370,99250,85.9,0,6.13,6.65,6.78,6.86,6.91,6.95,6.99,7.01,7.05,147.83,148.1,148.25,148.4,148.54,148.68,148.82,148.96,149.25,25.66,25.32,25.14,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A -2012,5,27,11,30,101530,100370,99250,85.4,0,6.58,7.12,7.24,7.29,7.33,7.3500000000000005,7.36,7.36,7.36,139.42000000000002,139.56,139.70000000000002,139.85,140.01,140.16,140.34,140.51,140.94,25.72,25.38,25.2,25.01,24.82,24.63,24.44,24.26,23.88,N/A,N/A -2012,5,27,12,30,101550,100390,99270,85.92,0,5.95,6.43,6.54,6.6000000000000005,6.640000000000001,6.67,6.69,6.7,6.72,132.27,132.44,132.54,132.63,132.71,132.78,132.85,132.92000000000002,133.07,25.7,25.36,25.19,24.990000000000002,24.8,24.61,24.41,24.23,23.85,N/A,N/A -2012,5,27,13,30,101550,100390,99270,84.87,0,5.7700000000000005,6.2700000000000005,6.38,6.44,6.48,6.51,6.54,6.5600000000000005,6.58,133.69,133.8,133.83,133.87,133.91,133.96,134.02,134.06,134.2,25.86,25.52,25.35,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.01,N/A,N/A -2012,5,27,14,30,101580,100430,99300,85.57000000000001,0,5.89,6.3500000000000005,6.45,6.5,6.53,6.54,6.5600000000000005,6.5600000000000005,6.5600000000000005,130.91,131.29,131.5,131.69,131.86,132.02,132.18,132.32,132.64000000000001,25.810000000000002,25.47,25.3,25.1,24.91,24.72,24.52,24.34,23.96,N/A,N/A -2012,5,27,15,30,101570,100410,99290,87.13,0,5.91,6.38,6.48,6.5200000000000005,6.55,6.5600000000000005,6.57,6.57,6.55,124.8,125.19,125.26,125.3,125.34,125.36,125.37,125.37,125.39,25.76,25.41,25.240000000000002,25.04,24.85,24.66,24.46,24.28,23.89,N/A,N/A -2012,5,27,16,30,101570,100420,99290,86.57000000000001,0,5.89,6.3100000000000005,6.390000000000001,6.43,6.45,6.46,6.46,6.45,6.43,123.62,123.89,123.98,124.09,124.19,124.28,124.37,124.47,124.67,25.82,25.47,25.3,25.1,24.91,24.72,24.52,24.34,23.96,N/A,N/A -2012,5,27,17,30,101540,100390,99260,85.71000000000001,0,5.3,5.66,5.73,5.76,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.75,119.22,119.47,119.61,119.73,119.84,119.95,120.06,120.16,120.38,25.84,25.490000000000002,25.310000000000002,25.12,24.92,24.73,24.54,24.35,23.97,N/A,N/A -2012,5,27,18,30,101520,100370,99240,84.73,0,5.5200000000000005,5.91,5.99,6.0200000000000005,6.04,6.05,6.0600000000000005,6.0600000000000005,6.05,122.18,122.35000000000001,122.46000000000001,122.57000000000001,122.67,122.77,122.87,122.96000000000001,123.16,25.91,25.560000000000002,25.38,25.18,24.990000000000002,24.8,24.6,24.42,24.03,N/A,N/A -2012,5,27,19,30,101490,100330,99210,84.08,0,6.24,6.74,6.84,6.88,6.91,6.93,6.93,6.93,6.92,126.09,126.26,126.36,126.46000000000001,126.55,126.64,126.73,126.82000000000001,127.02,25.98,25.650000000000002,25.47,25.27,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A -2012,5,27,20,30,101460,100300,99180,82.33,0,6.61,7.16,7.28,7.34,7.37,7.390000000000001,7.4,7.4,7.390000000000001,129.51,129.63,129.68,129.73,129.79,129.85,129.92000000000002,129.98,130.14000000000001,26.09,25.77,25.6,25.400000000000002,25.21,25.02,24.830000000000002,24.650000000000002,24.26,N/A,N/A -2012,5,27,21,30,101430,100270,99150,79.61,0,6.5,7.08,7.21,7.29,7.33,7.36,7.38,7.4,7.41,131.54,131.79,131.88,131.98,132.07,132.16,132.26,132.36,132.57,26.2,25.89,25.72,25.53,25.34,25.150000000000002,24.95,24.77,24.39,N/A,N/A -2012,5,27,22,30,101400,100250,99130,76.29,0,6.66,7.25,7.37,7.43,7.47,7.5,7.5,7.51,7.51,136.59,136.8,136.9,137,137.1,137.20000000000002,137.29,137.38,137.58,26.35,26.05,25.89,25.69,25.51,25.32,25.12,24.94,24.55,N/A,N/A -2012,5,27,23,30,101360,100210,99090,77.28,0,6.3500000000000005,6.88,6.98,7.0200000000000005,7.04,7.05,7.04,7.03,7,133.39000000000001,133.65,133.77,133.87,133.97,134.06,134.16,134.25,134.43,26.21,25.91,25.740000000000002,25.55,25.36,25.17,24.98,24.79,24.41,N/A,N/A -2012,5,28,0,30,101340,100180,99060,79.21000000000001,0,6,6.49,6.59,6.63,6.66,6.67,6.68,6.68,6.66,130.71,130.79,130.87,130.94,131.02,131.08,131.15,131.21,131.36,26,25.69,25.52,25.32,25.13,24.95,24.75,24.57,24.19,N/A,N/A -2012,5,28,1,30,101310,100150,99030,78.74,0,5.68,6.140000000000001,6.24,6.28,6.3100000000000005,6.32,6.32,6.32,6.3100000000000005,137.93,138,138.03,138.05,138.07,138.1,138.12,138.15,138.21,26.05,25.73,25.57,25.37,25.18,24.990000000000002,24.8,24.61,24.23,N/A,N/A -2012,5,28,2,30,101310,100150,99030,77.15,0,5.92,6.43,6.53,6.59,6.63,6.65,6.67,6.68,6.69,139.35,139.67000000000002,139.88,140.1,140.31,140.5,140.71,140.89000000000001,141.31,26.150000000000002,25.84,25.67,25.48,25.29,25.1,24.91,24.72,24.34,N/A,N/A -2012,5,28,3,30,101310,100160,99040,78.49,0,6.55,7.13,7.25,7.3100000000000005,7.3500000000000005,7.37,7.38,7.38,7.38,145.55,145.6,145.63,145.66,145.69,145.71,145.73,145.75,145.8,26.150000000000002,25.830000000000002,25.66,25.47,25.28,25.09,24.900000000000002,24.71,24.330000000000002,N/A,N/A -2012,5,28,4,30,101270,100120,99000,76.89,0,6.3100000000000005,6.8500000000000005,6.96,7,7.03,7.03,7.03,7.03,7,151.53,151.64000000000001,151.69,151.75,151.8,151.85,151.9,151.95000000000002,152.08,26.1,25.79,25.62,25.43,25.240000000000002,25.05,24.86,24.67,24.29,N/A,N/A -2012,5,28,5,30,101260,100110,98990,79.69,0,6.3500000000000005,6.9,7.01,7.07,7.1000000000000005,7.12,7.12,7.12,7.11,153.69,153.72,153.70000000000002,153.67000000000002,153.64000000000001,153.6,153.56,153.52,153.41,26.07,25.76,25.59,25.39,25.2,25.02,24.82,24.64,24.26,N/A,N/A -2012,5,28,6,30,101250,100100,98980,77.87,0,6.55,7.13,7.25,7.3100000000000005,7.3500000000000005,7.37,7.37,7.37,7.3500000000000005,157.19,157.17000000000002,157.20000000000002,157.25,157.31,157.37,157.46,157.54,157.76,26.21,25.89,25.71,25.52,25.330000000000002,25.14,24.94,24.76,24.37,N/A,N/A -2012,5,28,7,30,101270,100120,99000,78.33,0,6.55,7.1000000000000005,7.22,7.28,7.32,7.3500000000000005,7.36,7.38,7.38,161.66,161.8,161.85,161.9,161.94,161.99,162.03,162.08,162.17000000000002,26.25,25.93,25.76,25.57,25.38,25.19,25,24.810000000000002,24.43,N/A,N/A -2012,5,28,8,30,101250,100100,98980,74.28,0,6.25,6.82,6.96,7.04,7.1000000000000005,7.140000000000001,7.17,7.2,7.24,171.55,171.75,171.83,171.9,171.96,172.01,172.07,172.12,172.22,26.490000000000002,26.2,26.03,25.84,25.66,25.48,25.28,25.1,24.72,N/A,N/A -2012,5,28,9,30,101260,100110,98990,72.99,0,5.84,6.38,6.5,6.58,6.640000000000001,6.68,6.72,6.75,6.8100000000000005,172.14000000000001,172.24,172.24,172.22,172.20000000000002,172.19,172.17000000000002,172.14000000000001,172.11,26.650000000000002,26.36,26.2,26.01,25.82,25.64,25.45,25.27,24.89,N/A,N/A -2012,5,28,10,30,101280,100130,99010,76.74,0,5.61,6.1000000000000005,6.21,6.28,6.32,6.36,6.38,6.4,6.44,168.32,168.46,168.52,168.6,168.67000000000002,168.74,168.82,168.89000000000001,169.06,26.51,26.21,26.05,25.85,25.66,25.48,25.29,25.1,24.72,N/A,N/A -2012,5,28,11,30,101300,100150,99030,75.49,0,4.84,5.28,5.38,5.43,5.47,5.5,5.5200000000000005,5.54,5.58,174.13,174.19,174.19,174.18,174.18,174.17000000000002,174.17000000000002,174.16,174.14000000000001,26.7,26.41,26.25,26.05,25.87,25.68,25.490000000000002,25.310000000000002,24.93,N/A,N/A -2012,5,28,12,30,101330,100170,99060,75.89,0,5.4,5.9,6,6.0600000000000005,6.1000000000000005,6.12,6.13,6.140000000000001,6.140000000000001,170.28,170.13,170.08,170.03,169.96,169.89000000000001,169.82,169.75,169.6,26.77,26.48,26.310000000000002,26.11,25.93,25.740000000000002,25.54,25.36,24.97,N/A,N/A -2012,5,28,13,30,101340,100190,99070,77.51,0,5.89,6.38,6.47,6.51,6.5200000000000005,6.53,6.5200000000000005,6.5200000000000005,6.48,172.58,172.42000000000002,172.4,172.37,172.34,172.31,172.29,172.27,172.21,26.63,26.34,26.17,25.98,25.79,25.61,25.41,25.23,24.85,N/A,N/A -2012,5,28,14,30,101360,100210,99090,78.98,0,5.19,5.5600000000000005,5.62,5.65,5.66,5.66,5.65,5.64,5.61,164.88,165.22,165.49,165.75,166,166.24,166.5,166.76,167.37,26.35,26.04,25.87,25.68,25.5,25.310000000000002,25.12,24.94,24.57,N/A,N/A -2012,5,28,15,30,101380,100230,99110,81.48,0,4.86,5.22,5.29,5.33,5.3500000000000005,5.36,5.37,5.37,5.37,168.70000000000002,168.29,168.04,167.77,167.51,167.27,167.01,166.76,166.21,26.310000000000002,25.990000000000002,25.82,25.62,25.44,25.25,25.060000000000002,24.87,24.5,N/A,N/A -2012,5,28,16,30,101390,100230,99110,86.3,0,5.34,5.64,5.67,5.67,5.66,5.63,5.61,5.59,5.57,159.49,158.63,158.15,157.65,157.17000000000002,156.69,156.18,155.71,154.82,25.62,25.28,25.11,24.92,24.740000000000002,24.57,24.39,24.23,23.91,N/A,N/A -2012,5,28,17,30,101360,100200,99080,86.56,0,5.11,5.43,5.49,5.5200000000000005,5.54,5.54,5.55,5.55,5.55,160.88,161.37,161.72,162.08,162.43,162.79,163.21,163.62,164.72,25.68,25.32,25.150000000000002,24.95,24.76,24.57,24.38,24.2,23.84,N/A,N/A -2012,5,28,18,30,101350,100190,99070,88.23,5.9,6.03,6.5200000000000005,6.63,6.7,6.74,6.7700000000000005,6.8,6.8100000000000005,6.8500000000000005,167.9,167.92000000000002,167.84,167.77,167.69,167.62,167.56,167.5,167.45000000000002,25.77,25.42,25.240000000000002,25.04,24.86,24.68,24.48,24.310000000000002,23.94,N/A,N/A -2012,5,28,19,30,101350,100200,99080,87.35000000000001,0,5.14,5.49,5.57,5.61,5.63,5.65,5.66,5.67,5.68,195.75,195.67000000000002,195.61,195.52,195.41,195.28,195.12,194.96,194.5,25.7,25.35,25.17,24.97,24.79,24.6,24.41,24.22,23.85,N/A,N/A -2012,5,28,20,30,101300,100140,99020,82.98,0,5.1000000000000005,5.44,5.51,5.54,5.5600000000000005,5.57,5.57,5.58,5.59,183.03,182.92000000000002,182.87,182.83,182.8,182.79,182.79,182.81,182.91,25.87,25.53,25.36,25.16,24.98,24.79,24.6,24.42,24.060000000000002,N/A,N/A -2012,5,28,21,30,101260,100110,98990,84.75,0,4.89,5.22,5.29,5.32,5.34,5.3500000000000005,5.36,5.36,5.36,175.91,176.43,176.75,177.08,177.41,177.75,178.13,178.51,179.63,25.830000000000002,25.48,25.310000000000002,25.11,24.92,24.73,24.54,24.36,23.990000000000002,N/A,N/A -2012,5,28,22,30,101240,100090,98970,87.28,0,4.25,4.51,4.57,4.59,4.61,4.61,4.62,4.62,4.63,179.36,179.82,180.09,180.36,180.64000000000001,180.93,181.26,181.57,182.4,25.86,25.52,25.34,25.150000000000002,24.95,24.76,24.57,24.39,24,N/A,N/A -2012,5,28,23,30,101210,100060,98940,87.15,0,4.91,5.23,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3,5.29,5.26,183.76,184.19,184.45000000000002,184.74,185.02,185.3,185.61,185.92000000000002,186.65,26.07,25.73,25.560000000000002,25.37,25.18,24.990000000000002,24.8,24.61,24.240000000000002,N/A,N/A -2012,5,29,0,30,101190,100040,98920,86.54,0,5.1000000000000005,5.49,5.58,5.62,5.66,5.68,5.69,5.71,5.73,181.57,181.62,181.64000000000001,181.68,181.73,181.79,181.86,181.93,182.13,26.09,25.76,25.59,25.39,25.2,25.01,24.82,24.63,24.25,N/A,N/A -2012,5,29,1,30,101170,100010,98900,84.57000000000001,0,5.69,6.140000000000001,6.23,6.2700000000000005,6.3,6.32,6.33,6.34,6.34,189.56,189.65,189.76,189.86,189.96,190.07,190.18,190.29,190.56,26.240000000000002,25.92,25.75,25.560000000000002,25.37,25.18,24.990000000000002,24.810000000000002,24.43,N/A,N/A -2012,5,29,2,30,101180,100030,98910,83.62,0,6.36,6.890000000000001,7.01,7.0600000000000005,7.1000000000000005,7.12,7.13,7.140000000000001,7.140000000000001,184.18,184.32,184.42000000000002,184.5,184.59,184.67000000000002,184.75,184.83,185.02,26.310000000000002,26,25.830000000000002,25.63,25.44,25.26,25.060000000000002,24.88,24.5,N/A,N/A -2012,5,29,3,30,101190,100040,98920,79.41,0,6.83,7.43,7.55,7.6000000000000005,7.640000000000001,7.65,7.66,7.66,7.65,187.02,187.02,187.06,187.12,187.16,187.21,187.26,187.31,187.42000000000002,26.48,26.18,26.01,25.82,25.63,25.44,25.25,25.07,24.69,N/A,N/A -2012,5,29,4,30,101200,100050,98930,76.37,0,6.48,7.05,7.17,7.23,7.2700000000000005,7.29,7.3100000000000005,7.32,7.33,192.91,193.1,193.24,193.37,193.48000000000002,193.6,193.71,193.81,194.03,26.53,26.240000000000002,26.07,25.87,25.69,25.51,25.310000000000002,25.13,24.75,N/A,N/A -2012,5,29,5,30,101190,100030,98920,78.52,0,6.61,7.17,7.3,7.36,7.4,7.43,7.45,7.47,7.5,197.55,197.59,197.69,197.83,197.97,198.12,198.29,198.45000000000002,198.84,26.38,26.07,25.900000000000002,25.71,25.52,25.34,25.150000000000002,24.97,24.6,N/A,N/A -2012,5,29,6,30,101240,100090,98970,78.34,0,6.69,7.24,7.33,7.38,7.390000000000001,7.4,7.390000000000001,7.38,7.34,203.79,203.70000000000002,203.62,203.55,203.47,203.41,203.34,203.27,203.12,26.41,26.07,25.89,25.69,25.5,25.310000000000002,25.12,24.93,24.55,N/A,N/A -2012,5,29,7,30,101280,100120,99010,74.51,0,6.640000000000001,7.19,7.3100000000000005,7.36,7.390000000000001,7.4,7.4,7.4,7.38,206.91,207.01,207.03,207.03,207.02,207.02,207,206.98000000000002,206.94,26.560000000000002,26.240000000000002,26.07,25.87,25.68,25.490000000000002,25.29,25.11,24.72,N/A,N/A -2012,5,29,8,30,101300,100150,99030,73.69,0,6.13,6.65,6.78,6.8500000000000005,6.91,6.95,6.98,7,7.04,209.02,209.13,209.12,209.09,209.07,209.03,208.99,208.95000000000002,208.86,26.52,26.19,26.02,25.82,25.63,25.44,25.25,25.060000000000002,24.68,N/A,N/A -2012,5,29,9,30,101280,100130,99010,74.31,0,6.34,6.9,7.03,7.11,7.17,7.21,7.25,7.2700000000000005,7.32,207.22,207.41,207.54,207.66,207.76,207.86,207.96,208.04,208.21,26.51,26.18,26.01,25.810000000000002,25.62,25.43,25.23,25.04,24.66,N/A,N/A -2012,5,29,10,30,101290,100140,99020,76.07000000000001,0,6.69,7.28,7.42,7.5,7.55,7.59,7.61,7.63,7.65,218.09,217.94,217.85,217.76,217.67000000000002,217.59,217.51,217.44,217.29,26.44,26.11,25.93,25.73,25.54,25.35,25.150000000000002,24.97,24.580000000000002,N/A,N/A -2012,5,29,11,30,101300,100150,99030,77.12,0,7.28,7.84,7.96,8.01,8.040000000000001,8.05,8.040000000000001,8.040000000000001,8.01,215.72,215.59,215.43,215.25,215.07,214.89000000000001,214.71,214.54,214.17000000000002,26.34,26.01,25.84,25.63,25.44,25.25,25.05,24.86,24.48,N/A,N/A -2012,5,29,12,30,101310,100150,99040,75.68,0,6.44,6.96,7.09,7.17,7.22,7.26,7.3,7.33,7.38,218.65,218.6,218.57,218.55,218.52,218.5,218.48000000000002,218.46,218.41,26.37,26.04,25.86,25.66,25.48,25.29,25.09,24.91,24.53,N/A,N/A -2012,5,29,13,30,101340,100190,99070,78.38,0,6.43,6.98,7.11,7.18,7.24,7.28,7.3,7.33,7.36,219.57,219.53,219.52,219.51,219.5,219.49,219.48000000000002,219.48000000000002,219.47,26.34,25.990000000000002,25.82,25.62,25.42,25.23,25.03,24.85,24.46,N/A,N/A -2012,5,29,14,30,101370,100220,99100,78.52,0,6.7,7.26,7.390000000000001,7.46,7.5,7.53,7.55,7.5600000000000005,7.5600000000000005,223.46,223.35,223.29,223.23000000000002,223.17000000000002,223.12,223.07,223.02,222.91,26.45,26.12,25.95,25.740000000000002,25.55,25.36,25.16,24.98,24.59,N/A,N/A -2012,5,29,15,30,101400,100240,99130,78.15,0,6.36,6.88,7,7.0600000000000005,7.1000000000000005,7.140000000000001,7.15,7.17,7.19,222,221.81,221.78,221.74,221.72,221.70000000000002,221.68,221.66,221.64000000000001,26.490000000000002,26.16,25.990000000000002,25.79,25.6,25.41,25.21,25.03,24.64,N/A,N/A -2012,5,29,16,30,101390,100230,99120,77.51,0,5.82,6.28,6.4,6.46,6.51,6.55,6.58,6.61,6.65,225.27,225.31,225.36,225.42000000000002,225.47,225.53,225.59,225.66,225.81,26.55,26.22,26.05,25.85,25.66,25.48,25.29,25.1,24.73,N/A,N/A -2012,5,29,17,30,101400,100250,99130,79.79,0,6.09,6.54,6.63,6.67,6.7,6.71,6.71,6.71,6.7,219.24,219.32,219.41,219.49,219.56,219.62,219.68,219.75,219.87,26.53,26.19,26.02,25.82,25.63,25.44,25.240000000000002,25.060000000000002,24.68,N/A,N/A -2012,5,29,18,30,101370,100220,99110,79.73,0,6.41,6.9,7,7.05,7.07,7.09,7.09,7.09,7.07,208.38,208.71,208.88,209.03,209.16,209.29,209.41,209.52,209.73000000000002,26.68,26.34,26.17,25.97,25.77,25.59,25.39,25.2,24.82,N/A,N/A -2012,5,29,19,30,101340,100190,99070,78.4,0,6.6000000000000005,7.15,7.26,7.32,7.36,7.38,7.390000000000001,7.4,7.4,204.85,205.04,205.15,205.25,205.34,205.43,205.52,205.6,205.78,26.740000000000002,26.41,26.23,26.04,25.85,25.66,25.46,25.28,24.900000000000002,N/A,N/A -2012,5,29,20,30,101300,100150,99040,78.10000000000001,0,6.91,7.49,7.62,7.68,7.71,7.73,7.74,7.74,7.72,202.52,202.76,202.87,202.95000000000002,203.02,203.08,203.12,203.15,203.22,26.8,26.48,26.310000000000002,26.11,25.92,25.73,25.54,25.35,24.97,N/A,N/A -2012,5,29,21,30,101260,100110,99000,78.17,0,6.79,7.37,7.49,7.55,7.58,7.6000000000000005,7.61,7.61,7.6000000000000005,201.18,201.29,201.34,201.37,201.4,201.43,201.46,201.47,201.52,26.810000000000002,26.490000000000002,26.32,26.12,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A -2012,5,29,22,30,101210,100060,98950,77.75,0,7.16,7.78,7.91,7.97,8.01,8.03,8.040000000000001,8.040000000000001,8.02,204.21,204.32,204.4,204.47,204.53,204.6,204.67000000000002,204.73000000000002,204.87,26.810000000000002,26.5,26.34,26.14,25.95,25.77,25.57,25.39,25.01,N/A,N/A -2012,5,29,23,30,101170,100030,98910,78.74,0,7.43,8.09,8.23,8.290000000000001,8.33,8.34,8.35,8.35,8.33,205.83,205.93,205.98000000000002,206.04,206.09,206.14000000000001,206.20000000000002,206.25,206.38,26.78,26.47,26.3,26.11,25.92,25.73,25.54,25.36,24.98,N/A,N/A -2012,5,30,0,30,101140,99990,98880,81,0,7.67,8.33,8.48,8.540000000000001,8.58,8.6,8.6,8.6,8.58,202.61,202.68,202.68,202.70000000000002,202.71,202.72,202.73000000000002,202.75,202.79,26.67,26.35,26.18,25.98,25.8,25.61,25.41,25.23,24.86,N/A,N/A -2012,5,30,1,30,101130,99980,98870,82.82000000000001,0,7.5,8.16,8.290000000000001,8.36,8.4,8.41,8.42,8.42,8.4,199.44,199.49,199.53,199.58,199.62,199.66,199.71,199.75,199.87,26.57,26.240000000000002,26.07,25.87,25.68,25.490000000000002,25.3,25.11,24.73,N/A,N/A -2012,5,30,2,30,101140,99990,98880,82.44,0,7.54,8.18,8.32,8.38,8.41,8.43,8.43,8.43,8.4,201.67000000000002,201.64000000000001,201.67000000000002,201.69,201.72,201.74,201.76,201.79,201.84,26.59,26.26,26.09,25.89,25.7,25.51,25.32,25.14,24.77,N/A,N/A -2012,5,30,3,30,101170,100020,98900,83.92,0,7.6000000000000005,8.27,8.41,8.47,8.52,8.540000000000001,8.540000000000001,8.540000000000001,8.52,201.33,201.37,201.4,201.42000000000002,201.45000000000002,201.47,201.51,201.54,201.61,26.51,26.17,26,25.8,25.62,25.43,25.23,25.05,24.67,N/A,N/A -2012,5,30,4,30,101160,100010,98900,82.75,0,7.25,7.87,8.01,8.07,8.11,8.120000000000001,8.13,8.13,8.11,205.20000000000002,205.24,205.27,205.3,205.33,205.35,205.38,205.41,205.46,26.580000000000002,26.26,26.09,25.89,25.7,25.51,25.32,25.14,24.76,N/A,N/A -2012,5,30,5,30,101140,99990,98870,83.86,0,7.15,7.74,7.87,7.930000000000001,7.97,7.99,8,8,7.99,204.87,204.79,204.78,204.77,204.77,204.77,204.78,204.79,204.82,26.490000000000002,26.150000000000002,25.98,25.78,25.6,25.41,25.22,25.04,24.66,N/A,N/A -2012,5,30,6,30,101160,100010,98890,85.98,0,7.33,7.97,8.11,8.19,8.23,8.26,8.27,8.28,8.27,199.26,199.29,199.29,199.28,199.27,199.25,199.23000000000002,199.20000000000002,199.15,26.39,26.04,25.87,25.66,25.48,25.28,25.09,24.900000000000002,24.52,N/A,N/A -2012,5,30,7,30,101190,100040,98930,84.2,0,6.91,7.54,7.68,7.76,7.82,7.8500000000000005,7.87,7.890000000000001,7.9,207.3,207.47,207.54,207.62,207.70000000000002,207.77,207.84,207.91,208.05,26.560000000000002,26.23,26.060000000000002,25.86,25.67,25.48,25.28,25.09,24.71,N/A,N/A -2012,5,30,8,30,101130,99980,98860,85.10000000000001,0,7.3100000000000005,7.92,8.06,8.13,8.18,8.2,8.22,8.23,8.22,204.87,204.77,204.67000000000002,204.58,204.52,204.47,204.42000000000002,204.38,204.3,26.3,25.95,25.77,25.57,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A -2012,5,30,9,30,101170,100020,98910,86.35000000000001,0,5.9,6.38,6.5,6.57,6.63,6.66,6.69,6.71,6.75,203.49,203.66,203.74,203.81,203.86,203.9,203.93,203.97,204.02,26.29,25.93,25.76,25.560000000000002,25.37,25.17,24.97,24.79,24.400000000000002,N/A,N/A -2012,5,30,10,30,101160,100010,98890,80.33,0,6.1000000000000005,6.6000000000000005,6.73,6.8100000000000005,6.87,6.92,6.97,7.01,7.1000000000000005,206.23000000000002,205.81,205.62,205.45000000000002,205.31,205.19,205.09,204.99,204.86,26.32,25.97,25.8,25.6,25.41,25.23,25.03,24.85,24.48,N/A,N/A -2012,5,30,11,30,101200,100040,98930,80.02,0,5.32,5.73,5.83,5.88,5.91,5.94,5.95,5.97,5.98,210.05,210.11,210.13,210.13,210.13,210.11,210.09,210.06,209.97,26.490000000000002,26.150000000000002,25.98,25.78,25.59,25.400000000000002,25.2,25.02,24.64,N/A,N/A -2012,5,30,12,30,101220,100070,98950,83.36,0,5.73,6.2,6.3100000000000005,6.38,6.42,6.45,6.48,6.49,6.51,206.96,207.06,207.1,207.13,207.16,207.18,207.20000000000002,207.21,207.24,26.310000000000002,25.97,25.8,25.6,25.400000000000002,25.21,25.02,24.830000000000002,24.44,N/A,N/A -2012,5,30,13,30,101250,100100,98980,81.53,0,4.58,4.91,5,5.05,5.09,5.12,5.15,5.17,5.21,216.33,216.03,215.8,215.56,215.35,215.14000000000001,214.93,214.73000000000002,214.33,26.32,25.98,25.810000000000002,25.61,25.42,25.22,25.03,24.84,24.46,N/A,N/A -2012,5,30,14,30,101290,100140,99030,79.29,0,4.93,5.3,5.38,5.42,5.45,5.47,5.48,5.49,5.5,207.68,207.71,207.81,207.91,207.98000000000002,208.04,208.1,208.16,208.28,26.55,26.22,26.05,25.85,25.66,25.47,25.27,25.080000000000002,24.7,N/A,N/A -2012,5,30,15,30,101330,100180,99060,77.92,0,1.76,1.87,1.9000000000000001,1.9100000000000001,1.92,1.93,1.94,1.95,1.96,222.36,221.35,220.9,220.46,220.06,219.68,219.31,218.96,218.27,26.560000000000002,26.23,26.060000000000002,25.86,25.67,25.48,25.28,25.1,24.72,N/A,N/A -2012,5,30,16,30,101330,100180,99060,76.72,0,1.75,1.84,1.84,1.85,1.85,1.84,1.84,1.84,1.83,222.1,221.67000000000002,221.63,221.6,221.56,221.54,221.51,221.49,221.44,26.62,26.28,26.11,25.91,25.72,25.52,25.330000000000002,25.14,24.76,N/A,N/A -2012,5,30,17,30,101270,100120,99000,80.11,0,3.08,3.25,3.29,3.31,3.33,3.34,3.35,3.36,3.38,206.75,206.38,206.26,206.13,206.02,205.91,205.81,205.71,205.52,26.560000000000002,26.2,26.02,25.82,25.63,25.44,25.25,25.060000000000002,24.68,N/A,N/A -2012,5,30,18,30,101260,100110,99000,80.36,0,3.4,3.5700000000000003,3.6,3.6,3.6,3.6,3.6,3.6,3.59,202.86,202.9,202.97,203.02,203.06,203.1,203.14000000000001,203.18,203.26,26.650000000000002,26.29,26.11,25.91,25.71,25.52,25.330000000000002,25.14,24.75,N/A,N/A -2012,5,30,19,30,101220,100070,98950,79.3,0,3.62,3.8000000000000003,3.83,3.84,3.85,3.85,3.84,3.84,3.83,189,189.4,189.66,189.9,190.11,190.3,190.49,190.67000000000002,191.01,26.7,26.330000000000002,26.16,25.95,25.76,25.57,25.37,25.19,24.8,N/A,N/A -2012,5,30,20,30,101140,99990,98880,79.2,0,4.33,4.59,4.63,4.64,4.65,4.65,4.65,4.64,4.63,190.14000000000001,190.14000000000001,190.13,190.12,190.12,190.11,190.1,190.09,190.04,26.69,26.330000000000002,26.150000000000002,25.95,25.76,25.57,25.37,25.19,24.8,N/A,N/A -2012,5,30,21,30,101080,99930,98810,79.05,0,5.34,5.71,5.79,5.82,5.84,5.8500000000000005,5.86,5.86,5.8500000000000005,190.49,190.38,190.29,190.19,190.1,190,189.9,189.81,189.61,26.68,26.34,26.17,25.97,25.77,25.59,25.39,25.2,24.82,N/A,N/A -2012,5,30,22,30,101010,99860,98740,79.33,0,5.86,6.3100000000000005,6.41,6.46,6.5,6.53,6.55,6.5600000000000005,6.59,195.75,195.72,195.72,195.72,195.73000000000002,195.74,195.75,195.76,195.78,26.66,26.32,26.16,25.95,25.77,25.580000000000002,25.38,25.2,24.82,N/A,N/A -2012,5,30,23,30,100970,99820,98700,79.45,0,7.140000000000001,7.73,7.86,7.92,7.95,7.97,7.98,7.98,7.96,200.11,200.07,200.06,200.03,200.01,199.99,199.97,199.95000000000002,199.91,26.62,26.29,26.12,25.92,25.73,25.54,25.35,25.16,24.78,N/A,N/A -2012,5,31,0,30,100930,99790,98670,82.96000000000001,0,7.01,7.61,7.75,7.8100000000000005,7.86,7.890000000000001,7.9,7.91,7.91,196.99,197.19,197.27,197.32,197.35,197.39000000000001,197.4,197.42000000000002,197.44,26.490000000000002,26.150000000000002,25.98,25.78,25.59,25.400000000000002,25.2,25.01,24.63,N/A,N/A -2012,5,31,1,30,100910,99760,98650,79.15,0,6.5600000000000005,7.1000000000000005,7.23,7.3,7.34,7.37,7.390000000000001,7.4,7.41,186.88,187.1,187.24,187.33,187.39000000000001,187.43,187.46,187.48,187.49,26.53,26.2,26.03,25.830000000000002,25.64,25.45,25.26,25.07,24.69,N/A,N/A -2012,5,31,2,30,100880,99740,98630,79.53,0,7.21,7.83,7.97,8.05,8.1,8.13,8.15,8.17,8.19,189.76,189.61,189.55,189.5,189.47,189.43,189.4,189.37,189.32,26.490000000000002,26.150000000000002,25.98,25.77,25.59,25.400000000000002,25.2,25.02,24.64,N/A,N/A -2012,5,31,3,30,100920,99770,98660,77.64,0,7.390000000000001,8.040000000000001,8.19,8.27,8.32,8.35,8.370000000000001,8.39,8.41,185.15,185.25,185.37,185.47,185.55,185.63,185.71,185.78,185.92000000000002,26.560000000000002,26.240000000000002,26.060000000000002,25.87,25.68,25.490000000000002,25.3,25.11,24.73,N/A,N/A -2012,5,31,4,30,100920,99770,98660,81.02,0,7.38,8.05,8.21,8.3,8.36,8.4,8.43,8.45,8.47,191.58,191.84,191.89000000000001,191.91,191.93,191.94,191.95000000000002,191.96,191.96,26.43,26.09,25.91,25.71,25.51,25.32,25.13,24.94,24.55,N/A,N/A -2012,5,31,5,30,100860,99710,98600,81.41,0,8.33,9.1,9.27,9.36,9.42,9.46,9.49,9.5,9.52,179.13,179.75,179.97,180.15,180.3,180.44,180.58,180.69,180.93,26.37,26.02,25.84,25.64,25.44,25.25,25.060000000000002,24.87,24.490000000000002,N/A,N/A -2012,5,31,6,30,100890,99740,98630,79.51,0,8.61,9.31,9.48,9.55,9.59,9.6,9.61,9.61,9.59,178.75,179.21,179.5,179.75,179.97,180.17000000000002,180.37,180.55,180.94,26.45,26.11,25.94,25.73,25.55,25.36,25.17,24.98,24.61,N/A,N/A -2012,5,31,7,30,100890,99750,98630,80.61,0,7.99,8.74,8.94,9.06,9.15,9.22,9.27,9.32,9.39,177.42000000000002,177.94,178.22,178.49,178.73,178.95000000000002,179.15,179.35,179.71,26.42,26.07,25.900000000000002,25.69,25.5,25.3,25.11,24.92,24.53,N/A,N/A -2012,5,31,8,30,100920,99780,98660,82.27,0,7.3,7.97,8.14,8.25,8.33,8.39,8.44,8.48,8.540000000000001,189.26,188.67000000000002,188.48,188.31,188.15,188.02,187.89000000000001,187.78,187.56,26.43,26.09,25.91,25.7,25.51,25.32,25.12,24.93,24.55,N/A,N/A -2012,5,31,9,30,100880,99740,98630,79.42,0,7.98,8.69,8.88,8.98,9.05,9.1,9.13,9.16,9.21,188.06,188.17000000000002,188.16,188.11,188.06,187.99,187.9,187.82,187.61,26.51,26.17,26,25.8,25.61,25.42,25.23,25.04,24.67,N/A,N/A -2012,5,31,10,30,100910,99760,98650,80.76,0,7.32,7.94,8.09,8.15,8.19,8.22,8.22,8.23,8.21,186.41,186.56,186.70000000000002,186.83,186.94,187.04,187.15,187.25,187.47,26.48,26.14,25.96,25.76,25.57,25.38,25.19,25,24.61,N/A,N/A -2012,5,31,11,30,100920,99770,98660,77.7,0,6.42,6.93,7.07,7.140000000000001,7.2,7.23,7.26,7.29,7.33,195.69,195.36,195.25,195.17000000000002,195.11,195.06,195.02,194.99,194.95000000000002,26.72,26.400000000000002,26.240000000000002,26.04,25.85,25.66,25.47,25.29,24.91,N/A,N/A -2012,5,31,12,30,100940,99790,98680,78.2,0,6.2700000000000005,6.84,6.99,7.09,7.16,7.21,7.26,7.29,7.3500000000000005,196.78,196.76,196.73000000000002,196.70000000000002,196.66,196.62,196.57,196.52,196.43,26.72,26.400000000000002,26.23,26.03,25.84,25.650000000000002,25.45,25.27,24.88,N/A,N/A -2012,5,31,13,30,100960,99820,98700,80.59,0,6.65,7.2,7.33,7.41,7.46,7.5,7.53,7.5600000000000005,7.6000000000000005,204.19,204.42000000000002,204.46,204.48000000000002,204.5,204.52,204.53,204.53,204.54,26.63,26.310000000000002,26.13,25.93,25.740000000000002,25.55,25.36,25.17,24.79,N/A,N/A -2012,5,31,14,30,100970,99830,98710,80.74,0,6.17,6.8100000000000005,6.98,7.08,7.16,7.21,7.25,7.29,7.33,202.5,202.15,202.06,202,201.95000000000002,201.91,201.89000000000001,201.86,201.84,26.82,26.490000000000002,26.32,26.13,25.94,25.75,25.55,25.37,24.98,N/A,N/A -2012,5,31,15,30,101030,99880,98770,80.07000000000001,0,5.04,5.45,5.5600000000000005,5.63,5.68,5.71,5.74,5.76,5.79,210.55,210.64000000000001,210.70000000000002,210.75,210.78,210.82,210.85,210.87,210.92000000000002,26.830000000000002,26.51,26.34,26.14,25.95,25.76,25.560000000000002,25.38,25,N/A,N/A -2012,5,31,16,30,101050,99910,98790,80.60000000000001,0,5.34,5.76,5.86,5.91,5.94,5.96,5.97,5.97,5.97,212.39000000000001,212.37,212.31,212.27,212.25,212.22,212.21,212.20000000000002,212.17000000000002,26.97,26.64,26.48,26.27,26.09,25.89,25.7,25.51,25.13,N/A,N/A -2012,5,31,17,30,101040,99890,98780,80.2,0,5.91,6.36,6.47,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.61,6.62,199.98000000000002,199.83,199.68,199.53,199.39000000000001,199.25,199.12,198.98000000000002,198.73000000000002,27.03,26.71,26.54,26.34,26.150000000000002,25.96,25.77,25.580000000000002,25.2,N/A,N/A -2012,5,31,18,30,101060,99910,98800,80.45,0,4.7700000000000005,5.12,5.2,5.25,5.28,5.3,5.32,5.33,5.34,205.01,204.96,204.98000000000002,204.99,204.99,204.99,204.98000000000002,204.98000000000002,204.96,27.07,26.740000000000002,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.22,N/A,N/A -2012,5,31,19,30,100990,99850,98740,77.37,0,5.74,6.16,6.23,6.26,6.2700000000000005,6.2700000000000005,6.26,6.25,6.22,191.92000000000002,191.92000000000002,191.9,191.85,191.79,191.73000000000002,191.66,191.59,191.4,27.17,26.85,26.68,26.48,26.29,26.1,25.91,25.72,25.34,N/A,N/A -2012,5,31,20,30,100890,99750,98640,81.57000000000001,0,7.25,7.87,8,8.06,8.1,8.120000000000001,8.14,8.15,8.15,188.1,188.43,188.58,188.73,188.87,189,189.14000000000001,189.26,189.53,27.09,26.76,26.59,26.39,26.2,26.01,25.82,25.63,25.25,N/A,N/A -2012,5,31,21,30,100890,99750,98640,81.85000000000001,0,5.53,5.96,6.05,6.09,6.11,6.12,6.13,6.13,6.12,209.45000000000002,209.13,209.08,209.14000000000001,209.22,209.32,209.45000000000002,209.58,209.88,27.07,26.76,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A -2012,5,31,22,30,100950,99810,98700,82.45,0.7000000000000001,10.08,11.03,11.23,11.33,11.39,11.43,11.46,11.48,11.49,236.65,236.70000000000002,236.53,236.39000000000001,236.28,236.20000000000002,236.11,236.04,235.91,26.96,26.650000000000002,26.48,26.28,26.09,25.91,25.71,25.53,25.150000000000002,N/A,N/A -2012,5,31,23,30,101070,99910,98780,79.10000000000001,0,14.41,15.74,16.1,16.29,16.45,16.580000000000002,16.75,16.93,17.7,285.21,285.22,285.05,284.87,284.68,284.47,284.22,283.98,283.32,24.32,23.81,23.61,23.42,23.25,23.1,22.95,22.830000000000002,22.69,N/A,N/A -2012,6,1,0,30,100990,99840,98710,75.10000000000001,0,11.92,12.92,13.14,13.21,13.24,13.24,13.22,13.200000000000001,13.14,331.6,331.21,330.92,330.65000000000003,330.39,330.15000000000003,329.91,329.69,329.22,24.66,24.17,23.96,23.75,23.56,23.37,23.18,23,22.64,N/A,N/A -2012,6,1,1,30,100810,99660,98550,75.12,0,2.75,2.85,2.82,2.79,2.69,2.57,2.52,2.5,2.66,329.33,329.57,330.21,331.59000000000003,335.57,341.43,339.62,335.7,317.78000000000003,25.25,24.93,24.77,24.59,24.75,25.17,25.830000000000002,26.53,27.13,N/A,N/A -2012,6,1,2,30,100990,99840,98720,71.47,0,3.02,3.14,3.13,3.1,3.0500000000000003,2.99,2.88,2.77,2.49,66.57000000000001,67.03,67.04,67.05,67.03,66.99,67.38,67.91,68.54,26.080000000000002,25.76,25.6,25.42,25.26,25.11,24.990000000000002,24.900000000000002,24.79,N/A,N/A -2012,6,1,3,30,101000,99850,98730,77.78,0,3.09,3.2,3.21,3.2,3.19,3.17,3.14,3.11,3.0300000000000002,102.99000000000001,103.3,102.56,101.85000000000001,101.12,100.39,99.46000000000001,98.56,94.7,25.72,25.38,25.21,25.02,24.830000000000002,24.64,24.46,24.28,23.93,N/A,N/A -2012,6,1,4,30,101070,99920,98800,77.16,0,3.48,3.63,3.65,3.65,3.63,3.62,3.59,3.5700000000000003,3.52,181.71,181.56,181.54,181.52,181.51,181.51,181.51,181.51,181.54,25.82,25.47,25.3,25.09,24.91,24.71,24.52,24.330000000000002,23.95,N/A,N/A -2012,6,1,5,30,101090,99940,98820,70.58,0,2.45,2.61,2.66,2.69,2.72,2.74,2.7600000000000002,2.79,2.84,185.43,186.74,187.35,187.96,188.55,189.13,189.75,190.34,191.67000000000002,26.35,26.03,25.86,25.66,25.47,25.29,25.1,24.93,24.560000000000002,N/A,N/A -2012,6,1,6,30,101140,99990,98870,74.3,0,2.52,2.67,2.71,2.73,2.75,2.77,2.79,2.81,2.85,209.39000000000001,210.57,211.25,211.98000000000002,212.70000000000002,213.45000000000002,214.3,215.13,217.29,26.35,26.02,25.85,25.650000000000002,25.46,25.27,25.080000000000002,24.900000000000002,24.54,N/A,N/A -2012,6,1,7,30,101180,100030,98910,72.45,0,2.56,2.69,2.72,2.72,2.73,2.74,2.74,2.75,2.74,223.81,224.74,225.28,225.83,226.3,226.75,227.21,227.63,228.49,26.54,26.21,26.04,25.85,25.66,25.47,25.28,25.09,24.71,N/A,N/A -2012,6,1,8,30,101200,100050,98930,75.91,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.0500000000000003,3.04,3.0300000000000002,3.0100000000000002,2.97,233.19,233.5,233.66,233.84,234.01,234.19,234.38,234.56,234.98000000000002,26.42,26.080000000000002,25.91,25.71,25.52,25.330000000000002,25.14,24.96,24.57,N/A,N/A -2012,6,1,9,30,101210,100060,98950,78.91,0,2.93,3.11,3.15,3.17,3.19,3.19,3.21,3.21,3.22,227.77,228.66,229.07,229.48000000000002,229.86,230.23000000000002,230.6,230.94,231.67000000000002,26.38,26.05,25.88,25.68,25.490000000000002,25.310000000000002,25.11,24.93,24.54,N/A,N/A -2012,6,1,10,30,101240,100090,98970,82.09,0.7000000000000001,3.96,4.24,4.29,4.3100000000000005,4.33,4.33,4.33,4.33,4.32,257.99,258.93,259.23,259.5,259.73,259.93,260.11,260.29,260.61,26.26,25.91,25.740000000000002,25.54,25.35,25.16,24.96,24.78,24.39,N/A,N/A -2012,6,1,11,30,101290,100140,99020,77.52,0,4.91,5.19,5.24,5.25,5.25,5.24,5.22,5.21,5.16,289.85,290,290.02,290.06,290.09000000000003,290.13,290.17,290.22,290.34000000000003,26.23,25.87,25.7,25.5,25.310000000000002,25.12,24.92,24.740000000000002,24.36,N/A,N/A -2012,6,1,12,30,101330,100170,99050,81.82000000000001,0,3.83,4.03,4.07,4.08,4.08,4.08,4.08,4.08,4.0600000000000005,314.59000000000003,315.27,315.81,316.34000000000003,316.84000000000003,317.31,317.81,318.28000000000003,319.32,26.05,25.69,25.51,25.32,25.12,24.94,24.740000000000002,24.560000000000002,24.18,N/A,N/A -2012,6,1,13,30,101390,100230,99110,83.56,0,4.05,4.26,4.29,4.3,4.29,4.29,4.28,4.26,4.24,326.08,327.53000000000003,328.35,329.2,329.98,330.76,331.55,332.31,333.91,26.16,25.810000000000002,25.63,25.44,25.25,25.060000000000002,24.87,24.68,24.310000000000002,N/A,N/A -2012,6,1,14,30,101410,100250,99130,84.60000000000001,0,5.25,5.55,5.6000000000000005,5.62,5.62,5.61,5.6000000000000005,5.59,5.5600000000000005,32.62,32.06,31.84,31.62,31.42,31.220000000000002,31,30.79,30.3,25.34,24.94,24.76,24.560000000000002,24.36,24.18,23.990000000000002,23.8,23.43,N/A,N/A -2012,6,1,15,30,101420,100260,99140,79.34,0,6.41,6.82,6.890000000000001,6.9,6.890000000000001,6.87,6.84,6.8,6.71,37.81,37.97,38.02,38.07,38.08,38.09,38.09,38.08,37.97,25.54,25.13,24.95,24.75,24.55,24.37,24.17,23.990000000000002,23.62,N/A,N/A -2012,6,1,16,30,101430,100270,99150,73.82000000000001,0,5.65,5.99,6.0600000000000005,6.08,6.09,6.09,6.08,6.07,6.0600000000000005,62.120000000000005,62.04,61.92,61.800000000000004,61.67,61.54,61.36,61.18,60.620000000000005,25.91,25.54,25.36,25.17,24.98,24.8,24.61,24.44,24.080000000000002,N/A,N/A -2012,6,1,17,30,101440,100280,99160,74.12,0,5.29,5.6000000000000005,5.64,5.64,5.62,5.6000000000000005,5.5600000000000005,5.54,5.44,101.3,101.14,101.03,100.9,100.79,100.66,100.5,100.34,99.83,26.12,25.76,25.59,25.39,25.2,25.02,24.84,24.66,24.3,N/A,N/A -2012,6,1,18,30,101410,100260,99140,73.81,0,4.67,4.92,4.95,4.95,4.93,4.9,4.87,4.83,4.73,125.51,125.25,125.11,124.97,124.82000000000001,124.66,124.45,124.23,123.49000000000001,26.330000000000002,25.98,25.8,25.61,25.43,25.25,25.05,24.88,24.53,N/A,N/A -2012,6,1,19,30,101380,100220,99110,74,0,4.16,4.36,4.38,4.36,4.34,4.32,4.28,4.23,4.12,127.42,127.26,127.19,127.11,127.01,126.89,126.75,126.60000000000001,126.06,26.580000000000002,26.23,26.060000000000002,25.86,25.68,25.5,25.310000000000002,25.14,24.79,N/A,N/A -2012,6,1,20,30,101320,100170,99050,75.21000000000001,0,3.5300000000000002,3.68,3.69,3.68,3.66,3.63,3.6,3.5700000000000003,3.47,137.34,137.27,137.22,137.15,137.07,137,136.88,136.77,136.41,26.73,26.37,26.2,26,25.82,25.63,25.44,25.26,24.900000000000002,N/A,N/A -2012,6,1,21,30,101270,100120,99010,74.71000000000001,0,3.46,3.62,3.63,3.62,3.61,3.59,3.56,3.54,3.48,145.82,145.81,145.74,145.68,145.61,145.54,145.44,145.33,145.03,26.88,26.54,26.37,26.17,25.98,25.8,25.61,25.43,25.060000000000002,N/A,N/A -2012,6,1,22,30,101240,100090,98980,75.85000000000001,0,4.04,4.25,4.2700000000000005,4.2700000000000005,4.25,4.24,4.22,4.2,4.14,145.77,145.61,145.49,145.34,145.17000000000002,144.99,144.74,144.46,143.45000000000002,26.94,26.6,26.43,26.240000000000002,26.060000000000002,25.88,25.69,25.52,25.19,N/A,N/A -2012,6,1,23,30,101230,100080,98960,78.16,0,4.74,5.03,5.07,5.07,5.0600000000000005,5.04,5.0200000000000005,5,4.94,147.25,147.12,147.03,146.93,146.82,146.69,146.53,146.37,145.82,26.86,26.54,26.38,26.18,26,25.810000000000002,25.62,25.45,25.09,N/A,N/A -2012,6,2,0,30,101200,100050,98930,77.68,0,4.65,4.94,4.97,4.97,4.97,4.95,4.93,4.9,4.83,154.17000000000002,153.99,153.87,153.73,153.55,153.36,153.08,152.78,151.41,26.87,26.55,26.39,26.19,26.01,25.830000000000002,25.64,25.47,25.13,N/A,N/A -2012,6,2,1,30,101180,100030,98920,78.67,0,5.0600000000000005,5.38,5.41,5.41,5.4,5.38,5.36,5.33,5.28,145.66,145.47,145.33,145.15,144.94,144.69,144.3,143.88,141.37,26.830000000000002,26.52,26.35,26.16,25.98,25.8,25.62,25.45,25.18,N/A,N/A -2012,6,2,2,30,101220,100070,98960,79.35000000000001,0,5.28,5.62,5.67,5.68,5.67,5.66,5.64,5.61,5.5600000000000005,152.26,151.99,151.82,151.62,151.38,151.11,150.71,150.3,148.62,26.810000000000002,26.5,26.330000000000002,26.14,25.96,25.78,25.6,25.43,25.1,N/A,N/A -2012,6,2,3,30,101250,100100,98980,79.9,0,4.96,5.26,5.3100000000000005,5.3100000000000005,5.3,5.28,5.26,5.23,5.16,162.22,162.09,161.97,161.82,161.65,161.45000000000002,161.14000000000001,160.82,159.20000000000002,26.78,26.46,26.3,26.11,25.92,25.740000000000002,25.560000000000002,25.39,25.07,N/A,N/A -2012,6,2,4,30,101260,100110,98990,79.64,0,5.3100000000000005,5.66,5.71,5.72,5.71,5.7,5.68,5.66,5.62,167.32,167.15,167.02,166.84,166.65,166.42000000000002,166.1,165.76,164.20000000000002,26.82,26.5,26.34,26.14,25.96,25.78,25.6,25.43,25.12,N/A,N/A -2012,6,2,5,30,101300,100150,99040,80,0,4.91,5.24,5.3,5.32,5.33,5.34,5.34,5.33,5.33,169.23,168.95000000000002,168.78,168.58,168.37,168.15,167.87,167.57,166.71,26.8,26.48,26.32,26.13,25.95,25.76,25.580000000000002,25.400000000000002,25.060000000000002,N/A,N/A -2012,6,2,6,30,101360,100210,99100,80.71000000000001,0,5.3500000000000005,5.7,5.76,5.7700000000000005,5.78,5.7700000000000005,5.75,5.73,5.67,174.25,174.23,174.26,174.28,174.3,174.3,174.3,174.3,174.29,26.78,26.44,26.27,26.060000000000002,25.88,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A -2012,6,2,7,30,101410,100260,99140,79.88,0,4.75,5.05,5.11,5.15,5.17,5.19,5.21,5.22,5.26,182.78,182.64000000000001,182.48,182.29,182.09,181.88,181.65,181.43,180.86,26.810000000000002,26.47,26.310000000000002,26.11,25.93,25.740000000000002,25.55,25.37,25.01,N/A,N/A -2012,6,2,8,30,101380,100230,99110,81.33,0,3.88,4.15,4.22,4.2700000000000005,4.3,4.33,4.36,4.38,4.43,178.62,178.56,178.57,178.58,178.58,178.57,178.56,178.53,178.45000000000002,26.71,26.37,26.2,26,25.810000000000002,25.62,25.43,25.240000000000002,24.86,N/A,N/A -2012,6,2,9,30,101390,100240,99130,81.3,0,4.97,5.26,5.3,5.3100000000000005,5.3100000000000005,5.3,5.29,5.2700000000000005,5.24,203.87,202.81,202.26,201.67000000000002,201.12,200.58,200.02,199.47,198.33,26.740000000000002,26.400000000000002,26.23,26.03,25.84,25.650000000000002,25.45,25.27,24.89,N/A,N/A -2012,6,2,10,30,101390,100240,99120,81.01,0,4.74,5.08,5.17,5.22,5.25,5.28,5.3,5.32,5.3500000000000005,193.45000000000002,193.26,193.13,193,192.88,192.75,192.63,192.51,192.27,26.72,26.38,26.2,26,25.810000000000002,25.62,25.43,25.25,24.86,N/A,N/A -2012,6,2,11,30,101400,100240,99130,83.3,0,4,4.23,4.28,4.29,4.3100000000000005,4.3100000000000005,4.32,4.32,4.32,190.29,190.69,190.96,191.23000000000002,191.46,191.70000000000002,191.94,192.16,192.62,26.580000000000002,26.240000000000002,26.060000000000002,25.86,25.67,25.48,25.28,25.1,24.72,N/A,N/A -2012,6,2,12,30,101460,100310,99190,82.96000000000001,0,4.2,4.5,4.57,4.62,4.66,4.69,4.72,4.73,4.7700000000000005,220.89000000000001,220.23000000000002,219.8,219.43,219.11,218.8,218.52,218.27,217.75,26.84,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A -2012,6,2,13,30,101430,100270,99160,83.34,0,2.87,3.0500000000000003,3.1,3.14,3.17,3.2,3.23,3.25,3.31,196.41,196.56,196.64000000000001,196.74,196.82,196.89000000000001,196.96,197.04,197.20000000000002,26.76,26.42,26.25,26.05,25.86,25.67,25.48,25.29,24.91,N/A,N/A -2012,6,2,14,30,101480,100330,99220,84.07000000000001,0,3.56,3.73,3.7600000000000002,3.77,3.77,3.7600000000000002,3.7600000000000002,3.75,3.74,203.46,203.63,203.69,203.73000000000002,203.79,203.84,203.89000000000001,203.94,204.09,26.76,26.42,26.240000000000002,26.04,25.85,25.66,25.47,25.29,24.900000000000002,N/A,N/A -2012,6,2,15,30,101520,100370,99250,84.67,0,3.6,3.84,3.91,3.96,4,4.03,4.0600000000000005,4.09,4.15,211.36,212.52,212.94,213.29,213.6,213.88,214.14000000000001,214.38,214.84,26.89,26.560000000000002,26.38,26.19,26,25.810000000000002,25.62,25.43,25.060000000000002,N/A,N/A -2012,6,2,16,30,101500,100350,99230,83.63,0,4.37,4.64,4.7,4.73,4.75,4.76,4.7700000000000005,4.78,4.78,211.28,211.26,211.24,211.21,211.17000000000002,211.13,211.08,211.03,210.91,27.02,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A -2012,6,2,17,30,101500,100350,99240,85.39,0,3.79,4.03,4.09,4.12,4.15,4.17,4.19,4.21,4.23,214.99,214.97,214.97,214.96,214.95000000000002,214.94,214.93,214.91,214.89000000000001,27,26.650000000000002,26.47,26.27,26.080000000000002,25.89,25.69,25.51,25.12,N/A,N/A -2012,6,2,18,30,101480,100330,99210,84.09,0,4.67,4.98,5.0600000000000005,5.1000000000000005,5.13,5.15,5.17,5.19,5.22,220.44,220.24,220.11,219.96,219.83,219.68,219.52,219.36,218.99,27.04,26.69,26.51,26.310000000000002,26.12,25.93,25.740000000000002,25.55,25.17,N/A,N/A -2012,6,2,19,30,101470,100320,99200,82.9,0,4.66,4.95,5.01,5.04,5.05,5.0600000000000005,5.0600000000000005,5.07,5.07,220.54,220.32,220.17000000000002,220.01,219.85,219.68,219.5,219.32,218.87,27.1,26.740000000000002,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.22,N/A,N/A -2012,6,2,20,30,101430,100280,99170,84.09,0,3.5300000000000002,3.8000000000000003,3.88,3.94,3.99,4.03,4.07,4.11,4.18,217.93,217.36,217.09,216.83,216.6,216.38,216.16,215.94,215.5,27.150000000000002,26.8,26.62,26.42,26.23,26.04,25.84,25.66,25.28,N/A,N/A -2012,6,2,21,30,101390,100240,99130,83.99,0,3.42,3.64,3.71,3.7600000000000002,3.8000000000000003,3.83,3.86,3.89,3.96,215.37,215.35,215.29,215.22,215.16,215.11,215.05,215,214.9,27.14,26.79,26.62,26.42,26.23,26.03,25.84,25.650000000000002,25.27,N/A,N/A -2012,6,2,22,30,101370,100220,99110,83.72,0,4.7700000000000005,5.11,5.19,5.23,5.26,5.28,5.3,5.3100000000000005,5.33,203.86,203.6,203.43,203.23000000000002,203.04,202.86,202.67000000000002,202.48000000000002,202.09,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A -2012,6,2,23,30,101330,100190,99070,81.42,0,5.48,5.88,5.96,5.99,6.0200000000000005,6.03,6.03,6.04,6.04,184.62,184.59,184.58,184.54,184.48,184.42000000000002,184.33,184.23,183.97,27.22,26.900000000000002,26.73,26.53,26.35,26.16,25.97,25.78,25.41,N/A,N/A -2012,6,3,0,30,101310,100160,99050,82.12,0,4.88,5.24,5.32,5.36,5.39,5.41,5.42,5.43,5.45,179.16,179.25,179.33,179.4,179.46,179.52,179.57,179.61,179.72,27.12,26.79,26.62,26.42,26.240000000000002,26.05,25.85,25.67,25.29,N/A,N/A -2012,6,3,1,30,101270,100120,99010,84.36,0,4.8500000000000005,5.2,5.2700000000000005,5.3100000000000005,5.33,5.3500000000000005,5.37,5.38,5.4,175.91,175.87,175.87,175.87,175.9,175.92000000000002,175.94,175.96,176.04,26.93,26.59,26.42,26.22,26.03,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A -2012,6,3,2,30,101290,100140,99030,84.79,0,5.44,5.8500000000000005,5.95,6,6.04,6.0600000000000005,6.08,6.09,6.11,171.96,172,172.13,172.28,172.43,172.59,172.77,172.94,173.31,26.98,26.64,26.47,26.27,26.080000000000002,25.88,25.69,25.5,25.12,N/A,N/A -2012,6,3,3,30,101300,100160,99040,83.79,0,6.91,7.49,7.62,7.68,7.72,7.75,7.76,7.7700000000000005,7.7700000000000005,175.79,175.82,175.76,175.69,175.62,175.54,175.47,175.39000000000001,175.24,26.94,26.59,26.42,26.22,26.03,25.84,25.64,25.45,25.07,N/A,N/A -2012,6,3,4,30,101310,100160,99050,85.22,0,6.94,7.5200000000000005,7.65,7.72,7.7700000000000005,7.8,7.82,7.84,7.8500000000000005,181.25,181.09,180.98,180.88,180.8,180.73,180.66,180.6,180.48,26.89,26.54,26.36,26.16,25.97,25.77,25.580000000000002,25.39,25.01,N/A,N/A -2012,6,3,5,30,101320,100180,99060,85.75,0,7.2,7.82,7.97,8.05,8.11,8.15,8.17,8.19,8.2,181.59,182.39000000000001,182.72,183.01,183.25,183.46,183.65,183.82,184.13,26.97,26.62,26.45,26.240000000000002,26.05,25.86,25.66,25.48,25.1,N/A,N/A -2012,6,3,6,30,101360,100210,99090,84.27,0,6.86,7.46,7.61,7.7,7.76,7.8100000000000005,7.84,7.87,7.91,189.68,188.98,188.64000000000001,188.33,188.07,187.83,187.6,187.38,186.97,26.92,26.560000000000002,26.38,26.18,25.990000000000002,25.8,25.6,25.41,25.03,N/A,N/A -2012,6,3,7,30,101400,100250,99140,83.13,0,8.47,9.24,9.42,9.51,9.56,9.6,9.61,9.620000000000001,9.6,203.43,202.76,202.43,202.12,201.85,201.61,201.37,201.16,200.76,27,26.64,26.47,26.26,26.07,25.87,25.68,25.490000000000002,25.1,N/A,N/A -2012,6,3,8,30,101390,100240,99130,84.19,0,7.82,8.52,8.700000000000001,8.8,8.86,8.91,8.94,8.97,9,203.45000000000002,203.32,203.31,203.31,203.32,203.34,203.35,203.36,203.39000000000001,26.92,26.560000000000002,26.38,26.17,25.98,25.8,25.6,25.41,25.04,N/A,N/A -2012,6,3,9,30,101390,100240,99130,84.63,0,6.09,6.6000000000000005,6.74,6.82,6.88,6.93,6.98,7.01,7.08,205.04,205.04,204.95000000000002,204.85,204.76,204.68,204.59,204.51,204.34,26.91,26.560000000000002,26.38,26.18,25.990000000000002,25.8,25.61,25.43,25.05,N/A,N/A -2012,6,3,10,30,101410,100260,99140,81.32000000000001,0,7.82,8.46,8.6,8.66,8.68,8.69,8.68,8.66,8.6,203.70000000000002,203.52,203.48000000000002,203.43,203.38,203.34,203.29,203.25,203.16,27.09,26.75,26.580000000000002,26.38,26.19,26,25.810000000000002,25.62,25.25,N/A,N/A -2012,6,3,11,30,101430,100280,99160,83.28,0,7.32,7.95,8.1,8.18,8.23,8.26,8.290000000000001,8.31,8.33,198.23000000000002,198.05,197.99,197.91,197.83,197.74,197.64000000000001,197.55,197.33,27.02,26.67,26.490000000000002,26.29,26.1,25.91,25.72,25.54,25.16,N/A,N/A -2012,6,3,12,30,101430,100280,99160,83.38,0,6.47,6.96,7.07,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.13,7.11,182.81,183.35,183.68,183.98,184.25,184.5,184.75,184.98,185.44,27.04,26.7,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.18,N/A,N/A -2012,6,3,13,30,101460,100310,99190,82.68,0,6.01,6.49,6.6000000000000005,6.66,6.7,6.74,6.76,6.78,6.8,187.14000000000001,187.01,186.97,186.92000000000002,186.86,186.8,186.73,186.66,186.5,27.09,26.76,26.59,26.38,26.2,26.01,25.810000000000002,25.62,25.25,N/A,N/A -2012,6,3,14,30,101510,100350,99240,83.83,0,5.92,6.390000000000001,6.49,6.55,6.59,6.61,6.63,6.640000000000001,6.66,184.95000000000002,184.82,184.75,184.65,184.55,184.45000000000002,184.34,184.24,184,27.02,26.67,26.5,26.310000000000002,26.12,25.92,25.73,25.55,25.17,N/A,N/A -2012,6,3,15,30,101480,100330,99220,82.91,0,6.74,7.25,7.34,7.38,7.4,7.4,7.390000000000001,7.390000000000001,7.3500000000000005,182.54,182.9,183.09,183.28,183.44,183.59,183.73,183.87,184.12,27.11,26.76,26.580000000000002,26.38,26.2,26,25.810000000000002,25.62,25.240000000000002,N/A,N/A -2012,6,3,16,30,101490,100330,99220,82.91,0,6.36,6.88,7.01,7.09,7.140000000000001,7.17,7.2,7.22,7.26,181.25,181.19,181.22,181.26,181.3,181.32,181.36,181.39000000000001,181.46,27.12,26.77,26.6,26.39,26.2,26.01,25.810000000000002,25.62,25.240000000000002,N/A,N/A -2012,6,3,17,30,101480,100330,99210,84.04,0,6.2700000000000005,6.8,6.94,7.03,7.08,7.13,7.16,7.19,7.22,180.12,180.32,180.43,180.55,180.65,180.75,180.86,180.96,181.16,27.21,26.87,26.7,26.5,26.310000000000002,26.12,25.92,25.73,25.35,N/A,N/A -2012,6,3,18,30,101520,100370,99260,79.23,0,5.23,5.63,5.72,5.76,5.8,5.82,5.83,5.84,5.86,187.48,187.41,187.34,187.25,187.16,187.08,186.98,186.89000000000001,186.70000000000002,27.42,27.09,26.92,26.72,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,6,3,19,30,101440,100290,99170,81.9,0,6.63,7.21,7.3500000000000005,7.44,7.5,7.55,7.59,7.62,7.67,182.6,182.78,182.77,182.75,182.71,182.66,182.61,182.57,182.44,27.29,26.95,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A -2012,6,3,20,30,101420,100280,99160,82.96000000000001,0,6.03,6.6000000000000005,6.75,6.8500000000000005,6.93,6.99,7.04,7.09,7.16,179.77,179.99,180.09,180.19,180.27,180.35,180.42000000000002,180.49,180.62,27.240000000000002,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.75,25.37,N/A,N/A -2012,6,3,21,30,101380,100230,99120,82.11,0,7.1000000000000005,7.7,7.84,7.9,7.930000000000001,7.95,7.96,7.96,7.94,178.33,178.46,178.56,178.63,178.70000000000002,178.76,178.81,178.85,178.92000000000002,27.36,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,6,3,22,30,101340,100200,99080,83.01,0,6.5,7.03,7.16,7.22,7.2700000000000005,7.3,7.32,7.34,7.36,174.39000000000001,174.6,174.64000000000001,174.65,174.65,174.64000000000001,174.63,174.62,174.58,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.88,25.69,25.32,N/A,N/A -2012,6,3,23,30,101320,100170,99060,81.81,0,6.22,6.69,6.8,6.8500000000000005,6.890000000000001,6.91,6.92,6.93,6.94,170.78,170.85,170.93,170.98,171.03,171.07,171.11,171.16,171.24,27.12,26.79,26.62,26.42,26.23,26.04,25.85,25.66,25.29,N/A,N/A -2012,6,4,0,30,101290,100140,99030,81.5,0,5.59,6,6.09,6.140000000000001,6.17,6.2,6.22,6.24,6.28,170.43,170.52,170.56,170.61,170.66,170.71,170.76,170.81,170.93,27.11,26.78,26.61,26.42,26.23,26.04,25.85,25.67,25.3,N/A,N/A -2012,6,4,1,30,101270,100120,99010,82.32000000000001,0,6.38,6.87,6.98,7.03,7.07,7.09,7.1000000000000005,7.11,7.12,166.64000000000001,167.26,167.55,167.83,168.06,168.27,168.48,168.67000000000002,169.04,27.16,26.82,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A -2012,6,4,2,30,101280,100130,99020,81.71000000000001,0,7,7.61,7.74,7.8,7.8500000000000005,7.87,7.88,7.890000000000001,7.890000000000001,165.51,165.55,165.59,165.63,165.68,165.72,165.77,165.81,165.89000000000001,27.28,26.94,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A -2012,6,4,3,30,101270,100130,99020,81.06,0,8.26,9.05,9.23,9.33,9.39,9.42,9.44,9.46,9.46,167.26,167.39000000000001,167.52,167.68,167.82,167.97,168.12,168.26,168.56,27.37,27.05,26.88,26.68,26.490000000000002,26.3,26.1,25.91,25.53,N/A,N/A -2012,6,4,4,30,101250,100100,98990,79.58,0,8.45,9.32,9.52,9.64,9.72,9.78,9.83,9.86,9.91,181.81,181.43,181.26,181.09,180.94,180.8,180.66,180.54,180.29,27.42,27.09,26.92,26.72,26.53,26.34,26.14,25.95,25.57,N/A,N/A -2012,6,4,5,30,101270,100120,99010,79.27,0,8.93,9.83,10.03,10.13,10.200000000000001,10.24,10.26,10.27,10.27,180.88,181.14000000000001,181.28,181.42000000000002,181.54,181.65,181.76,181.87,182.08,27.55,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.29,26.11,25.72,N/A,N/A -2012,6,4,6,30,101260,100120,99010,79.74,0,7.45,8.16,8.33,8.42,8.49,8.540000000000001,8.57,8.6,8.65,191.15,190.96,190.83,190.68,190.54,190.39000000000001,190.25,190.11,189.82,27.46,27.14,26.98,26.78,26.59,26.400000000000002,26.2,26.02,25.64,N/A,N/A -2012,6,4,7,30,101290,100140,99030,83.55,0,7.33,7.99,8.16,8.25,8.32,8.370000000000001,8.4,8.42,8.46,191.70000000000002,191.54,191.52,191.55,191.59,191.63,191.69,191.75,191.89000000000001,27.27,26.94,26.77,26.57,26.38,26.19,25.990000000000002,25.8,25.42,N/A,N/A -2012,6,4,8,30,101230,100080,98970,83.84,0,8.31,9.120000000000001,9.32,9.44,9.52,9.59,9.63,9.67,9.72,191.17000000000002,191.21,191.22,191.22,191.22,191.22,191.22,191.22,191.23000000000002,27.35,27.02,26.85,26.650000000000002,26.47,26.28,26.080000000000002,25.900000000000002,25.52,N/A,N/A -2012,6,4,9,30,101220,100080,98970,84.13,0,7.54,8.27,8.44,8.55,8.620000000000001,8.67,8.700000000000001,8.73,8.78,196.54,196.73000000000002,196.84,196.94,197.02,197.11,197.18,197.26,197.42000000000002,27.42,27.1,26.94,26.740000000000002,26.55,26.37,26.17,25.990000000000002,25.62,N/A,N/A -2012,6,4,10,30,101210,100070,98960,85.79,0,6.97,7.61,7.7700000000000005,7.87,7.94,7.99,8.02,8.05,8.1,193.41,193.45000000000002,193.43,193.42000000000002,193.43,193.44,193.45000000000002,193.47,193.53,27.400000000000002,27.080000000000002,26.91,26.71,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,6,4,11,30,101230,100080,98970,86.82000000000001,0,6.49,7.05,7.19,7.2700000000000005,7.33,7.36,7.390000000000001,7.42,7.44,194.06,194.31,194.44,194.59,194.74,194.89000000000001,195.04,195.19,195.52,27.36,27.04,26.87,26.67,26.48,26.29,26.1,25.91,25.54,N/A,N/A -2012,6,4,12,30,101250,100110,99000,85.89,0,4.79,5.17,5.2700000000000005,5.32,5.36,5.39,5.42,5.44,5.47,196.55,196.76,196.88,196.97,197.06,197.14000000000001,197.22,197.3,197.45000000000002,27.330000000000002,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A -2012,6,4,13,30,101260,100110,99010,85.9,0,6.44,6.99,7.1000000000000005,7.16,7.19,7.21,7.21,7.21,7.2,193.38,193.57,193.68,193.79,193.9,193.99,194.1,194.20000000000002,194.41,27.47,27.150000000000002,26.98,26.78,26.6,26.41,26.22,26.03,25.66,N/A,N/A -2012,6,4,14,30,101260,100110,99000,85,0,6.84,7.44,7.57,7.640000000000001,7.68,7.71,7.72,7.73,7.73,190.92000000000002,191.12,191.25,191.34,191.43,191.5,191.57,191.63,191.76,27.59,27.28,27.11,26.92,26.73,26.54,26.35,26.17,25.79,N/A,N/A -2012,6,4,15,30,101290,100150,99040,84.84,0,5.84,6.3100000000000005,6.41,6.45,6.47,6.48,6.48,6.47,6.45,196.61,196.63,196.65,196.68,196.71,196.75,196.79,196.84,196.94,27.59,27.28,27.11,26.92,26.73,26.55,26.35,26.17,25.8,N/A,N/A -2012,6,4,16,30,101280,100130,99020,84.04,0,5.15,5.55,5.63,5.67,5.7,5.73,5.74,5.75,5.7700000000000005,181.86,182.03,182.22,182.42000000000002,182.6,182.78,182.96,183.14000000000001,183.52,27.6,27.28,27.12,26.92,26.73,26.54,26.35,26.17,25.8,N/A,N/A -2012,6,4,17,30,101280,100130,99020,82.98,0,3.98,4.28,4.3500000000000005,4.39,4.42,4.45,4.46,4.48,4.5,191.32,191.56,191.76,191.93,192.07,192.19,192.3,192.39000000000001,192.55,27.62,27.29,27.12,26.92,26.740000000000002,26.54,26.35,26.16,25.79,N/A,N/A -2012,6,4,18,30,101240,100100,98990,84.64,0,3.8000000000000003,4.04,4.09,4.12,4.14,4.16,4.17,4.18,4.2,188.74,188.48,188.27,188.03,187.81,187.6,187.38,187.16,186.74,27.61,27.27,27.1,26.900000000000002,26.71,26.52,26.32,26.13,25.75,N/A,N/A -2012,6,4,19,30,101240,100100,98990,82.74,0,6.08,6.5600000000000005,6.65,6.69,6.71,6.72,6.71,6.71,6.68,196.74,196.69,196.68,196.66,196.66,196.64000000000001,196.64000000000001,196.63,196.63,27.66,27.330000000000002,27.17,26.96,26.78,26.59,26.39,26.2,25.82,N/A,N/A -2012,6,4,20,30,101200,100050,98940,82.14,0,6.45,6.97,7.09,7.13,7.16,7.17,7.17,7.17,7.140000000000001,189.82,189.82,189.83,189.83,189.84,189.84,189.84,189.84,189.87,27.61,27.29,27.12,26.92,26.73,26.54,26.35,26.16,25.78,N/A,N/A -2012,6,4,21,30,101120,99970,98860,81.36,0,7.46,8.11,8.24,8.290000000000001,8.32,8.33,8.33,8.32,8.290000000000001,190.81,190.94,191,191.07,191.13,191.20000000000002,191.26,191.32,191.44,27.51,27.19,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A -2012,6,4,22,30,101080,99930,98820,78.26,0,7.34,7.99,8.120000000000001,8.18,8.22,8.24,8.24,8.24,8.22,189.58,189.63,189.63,189.62,189.6,189.58,189.55,189.51,189.42000000000002,27.55,27.240000000000002,27.080000000000002,26.88,26.69,26.5,26.310000000000002,26.13,25.75,N/A,N/A -2012,6,4,23,30,101050,99900,98790,79.56,0,7.3500000000000005,8,8.13,8.2,8.24,8.26,8.27,8.28,8.27,188.4,188.29,188.19,188.08,187.97,187.86,187.75,187.64000000000001,187.41,27.43,27.11,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A -2012,6,5,0,30,100980,99840,98730,76.75,0,7.63,8.33,8.48,8.55,8.6,8.63,8.65,8.66,8.67,188.76,188.66,188.59,188.51,188.43,188.36,188.27,188.20000000000002,188.02,27.41,27.1,26.92,26.73,26.54,26.35,26.16,25.97,25.59,N/A,N/A -2012,6,5,1,30,100940,99790,98680,74.5,0,7.98,8.73,8.9,8.99,9.05,9.1,9.13,9.15,9.17,190.87,190.52,190.31,190.1,189.9,189.72,189.53,189.36,188.99,27.43,27.12,26.95,26.75,26.560000000000002,26.37,26.18,25.990000000000002,25.61,N/A,N/A -2012,6,5,2,30,100970,99820,98710,75.56,0,7.18,7.87,8.040000000000001,8.14,8.21,8.25,8.290000000000001,8.31,8.34,193.02,192.94,192.94,192.95000000000002,192.98000000000002,193.01,193.04,193.07,193.16,27.38,27.060000000000002,26.89,26.68,26.490000000000002,26.3,26.11,25.92,25.54,N/A,N/A -2012,6,5,3,30,100990,99850,98740,71.53,0,7.18,7.84,7.97,8.05,8.1,8.14,8.16,8.18,8.2,193.94,193.73000000000002,193.57,193.4,193.23000000000002,193.06,192.89000000000001,192.73000000000002,192.39000000000001,27.45,27.14,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A -2012,6,5,4,30,101000,99850,98740,72.16,0,6.4,7,7.140000000000001,7.22,7.28,7.32,7.3500000000000005,7.37,7.390000000000001,192.95000000000002,192.84,192.82,192.79,192.76,192.73000000000002,192.70000000000002,192.68,192.62,27.41,27.1,26.92,26.73,26.54,26.35,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,6,5,5,30,100970,99830,98720,70.57000000000001,0,6.55,7.12,7.24,7.3100000000000005,7.36,7.390000000000001,7.41,7.43,7.44,192.24,192.68,192.87,193.03,193.17000000000002,193.3,193.43,193.55,193.78,27.38,27.060000000000002,26.89,26.69,26.490000000000002,26.310000000000002,26.11,25.92,25.53,N/A,N/A -2012,6,5,6,30,101020,99870,98760,66.75,0,6.0600000000000005,6.54,6.63,6.67,6.69,6.71,6.71,6.72,6.72,197.79,198.27,198.53,198.78,199.01,199.22,199.42000000000002,199.61,199.99,27.46,27.16,26.990000000000002,26.79,26.6,26.42,26.22,26.03,25.650000000000002,N/A,N/A -2012,6,5,7,30,101010,99870,98760,68.01,0,5.92,6.4,6.49,6.53,6.5600000000000005,6.57,6.57,6.57,6.5600000000000005,211.75,211.42000000000002,211.16,210.91,210.67000000000002,210.44,210.22,210.01,209.57,27.39,27.080000000000002,26.91,26.71,26.52,26.34,26.14,25.95,25.57,N/A,N/A -2012,6,5,8,30,101020,99870,98760,67.01,0,5.4,5.86,5.96,6.0200000000000005,6.07,6.1000000000000005,6.13,6.15,6.19,216.9,216.65,216.56,216.49,216.43,216.38,216.34,216.3,216.25,27.39,27.080000000000002,26.91,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A -2012,6,5,9,30,100990,99850,98730,71.64,0,6.22,6.73,6.84,6.890000000000001,6.93,6.95,6.96,6.97,6.97,220.41,220.28,220.15,220.04,219.93,219.84,219.75,219.66,219.49,27.18,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.71,25.330000000000002,N/A,N/A -2012,6,5,10,30,101010,99860,98750,69.58,0,5.74,6.16,6.2700000000000005,6.32,6.3500000000000005,6.38,6.4,6.41,6.42,233.92000000000002,233.98000000000002,233.93,233.9,233.86,233.83,233.81,233.79,233.75,27.2,26.88,26.71,26.52,26.330000000000002,26.14,25.94,25.76,25.38,N/A,N/A -2012,6,5,11,30,101030,99890,98770,70.51,0,4.43,4.75,4.8100000000000005,4.83,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.8500000000000005,4.83,240.82,240.6,240.49,240.4,240.32,240.26,240.19,240.13,240.04,27.21,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.75,25.37,N/A,N/A -2012,6,5,12,30,101030,99880,98770,72.68,0,4.79,5.13,5.21,5.25,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,250.23000000000002,250.27,250.28,250.3,250.32,250.34,250.36,250.38,250.41,27.09,26.76,26.59,26.38,26.2,26.01,25.810000000000002,25.62,25.240000000000002,N/A,N/A -2012,6,5,13,30,101050,99910,98790,70.52,0,4.07,4.36,4.43,4.47,4.5,4.53,4.54,4.5600000000000005,4.58,256.07,255.4,255.06,254.75,254.48000000000002,254.23000000000002,253.98000000000002,253.75,253.32,27.18,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.72,25.330000000000002,N/A,N/A -2012,6,5,14,30,101080,99930,98820,75.65,0,3.09,3.22,3.23,3.23,3.23,3.23,3.23,3.23,3.24,277.6,274.83,273.16,271.49,269.95,268.47,266.99,265.61,262.75,26.810000000000002,26.48,26.310000000000002,26.12,25.93,25.75,25.55,25.37,25,N/A,N/A -2012,6,5,15,30,101070,99920,98810,77.92,0,3.0300000000000002,3.14,3.15,3.15,3.14,3.13,3.12,3.1,3.08,256.46,256.01,255.63,255.25,254.88,254.51000000000002,254.09,253.70000000000002,252.78,26.68,26.330000000000002,26.150000000000002,25.95,25.77,25.580000000000002,25.39,25.21,24.830000000000002,N/A,N/A -2012,6,5,16,30,101050,99900,98790,75.07000000000001,0,2.89,3.06,3.09,3.12,3.13,3.15,3.17,3.19,3.23,234.02,233.79,233.75,233.69,233.63,233.56,233.49,233.41,233.21,26.88,26.53,26.36,26.16,25.97,25.79,25.6,25.42,25.05,N/A,N/A -2012,6,5,17,30,101030,99880,98770,72.25,0,2.67,2.82,2.86,2.88,2.91,2.92,2.94,2.96,3,202.91,203.25,203.61,203.97,204.32,204.66,205.01,205.35,206.14000000000001,27.080000000000002,26.740000000000002,26.57,26.38,26.2,26.02,25.830000000000002,25.66,25.3,N/A,N/A -2012,6,5,18,30,100980,99830,98720,71.63,0,4.19,4.41,4.43,4.43,4.43,4.41,4.39,4.37,4.3100000000000005,189.54,189.59,189.66,189.71,189.76,189.79,189.82,189.85,189.89000000000001,27.310000000000002,26.96,26.79,26.6,26.41,26.23,26.04,25.87,25.51,N/A,N/A -2012,6,5,19,30,100930,99780,98670,67.93,0,4.9,5.21,5.25,5.26,5.26,5.26,5.25,5.23,5.18,189.61,189.98,190.20000000000002,190.43,190.65,190.87,191.1,191.33,191.83,27.560000000000002,27.240000000000002,27.080000000000002,26.89,26.71,26.54,26.36,26.19,25.86,N/A,N/A -2012,6,5,20,30,100880,99730,98630,66.49,0,5.98,6.41,6.47,6.49,6.49,6.47,6.45,6.42,6.3500000000000005,186.56,186.75,186.87,187,187.12,187.24,187.36,187.48,187.73,27.71,27.400000000000002,27.240000000000002,27.060000000000002,26.88,26.7,26.52,26.35,26.01,N/A,N/A -2012,6,5,21,30,100850,99710,98600,66.92,0,6.17,6.63,6.7,6.71,6.7,6.68,6.65,6.61,6.5200000000000005,193.94,193.73000000000002,193.62,193.49,193.34,193.19,193,192.81,192.3,27.71,27.41,27.25,27.05,26.87,26.68,26.490000000000002,26.310000000000002,25.93,N/A,N/A -2012,6,5,22,30,100790,99650,98540,73.56,0,5.84,6.26,6.32,6.33,6.32,6.3100000000000005,6.28,6.26,6.19,195.43,195.6,195.69,195.81,195.93,196.04,196.17000000000002,196.29,196.6,27.47,27.16,26.990000000000002,26.810000000000002,26.62,26.44,26.26,26.080000000000002,25.73,N/A,N/A -2012,6,5,23,30,100770,99620,98520,75.86,0,6.18,6.62,6.69,6.7,6.7,6.68,6.65,6.62,6.51,198.21,198.16,198.16,198.17000000000002,198.18,198.19,198.19,198.18,198.08,27.36,27.04,26.87,26.67,26.48,26.29,26.09,25.900000000000002,25.5,N/A,N/A -2012,6,6,0,30,100790,99650,98540,69.24,0,5.84,6.32,6.41,6.46,6.49,6.51,6.5200000000000005,6.54,6.5600000000000005,197.9,197.78,197.70000000000002,197.6,197.5,197.39000000000001,197.27,197.16,196.95000000000002,27.69,27.400000000000002,27.240000000000002,27.05,26.87,26.69,26.51,26.330000000000002,25.98,N/A,N/A -2012,6,6,1,30,100760,99620,98510,74.58,0,6.7700000000000005,7.3100000000000005,7.41,7.45,7.47,7.47,7.47,7.46,7.43,200.8,200.56,200.45000000000002,200.34,200.24,200.15,200.05,199.96,199.74,27.39,27.07,26.900000000000002,26.71,26.52,26.34,26.14,25.96,25.59,N/A,N/A -2012,6,6,2,30,100790,99640,98540,74.7,0,6.43,6.94,7.03,7.07,7.09,7.1000000000000005,7.1000000000000005,7.09,7.07,195.19,195.35,195.53,195.70000000000002,195.85,196,196.16,196.3,196.65,27.37,27.05,26.88,26.69,26.5,26.32,26.13,25.95,25.580000000000002,N/A,N/A -2012,6,6,3,30,100840,99690,98580,71.92,0,6.05,6.54,6.640000000000001,6.68,6.71,6.73,6.74,6.74,6.74,191.39000000000001,191.48000000000002,191.46,191.45000000000002,191.44,191.42000000000002,191.41,191.39000000000001,191.37,27.44,27.13,26.96,26.77,26.580000000000002,26.400000000000002,26.2,26.02,25.64,N/A,N/A -2012,6,6,4,30,100860,99710,98600,74.63,0,5.91,6.37,6.45,6.48,6.49,6.5,6.5,6.49,6.47,197.61,197.58,197.53,197.49,197.44,197.4,197.35,197.31,197.21,27.29,26.96,26.79,26.6,26.41,26.22,26.03,25.85,25.47,N/A,N/A -2012,6,6,5,30,100870,99720,98610,74.43,0,5.25,5.65,5.73,5.76,5.79,5.8,5.8100000000000005,5.82,5.82,204.57,204.59,204.58,204.56,204.56,204.55,204.54,204.54,204.53,27.240000000000002,26.91,26.740000000000002,26.54,26.35,26.16,25.97,25.78,25.400000000000002,N/A,N/A -2012,6,6,6,30,100830,99680,98570,76.60000000000001,0,6.28,6.74,6.84,6.87,6.890000000000001,6.9,6.9,6.890000000000001,6.88,214.18,214.1,214.05,214,213.96,213.93,213.88,213.83,213.73000000000002,27.080000000000002,26.740000000000002,26.57,26.37,26.19,26,25.810000000000002,25.62,25.25,N/A,N/A -2012,6,6,7,30,100850,99710,98600,75.65,0,5.33,5.71,5.7700000000000005,5.79,5.8,5.8,5.8,5.8,5.7700000000000005,217.07,216.89000000000001,216.77,216.66,216.55,216.45000000000002,216.34,216.24,216.03,27.080000000000002,26.740000000000002,26.57,26.38,26.19,26,25.8,25.62,25.240000000000002,N/A,N/A -2012,6,6,8,30,100850,99700,98590,72.5,0,4.86,5.21,5.28,5.3100000000000005,5.33,5.3500000000000005,5.36,5.37,5.38,222.94,223,223,223.02,223.04,223.06,223.08,223.11,223.17000000000002,27.150000000000002,26.830000000000002,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.71,25.330000000000002,N/A,N/A -2012,6,6,9,30,100870,99720,98610,73.14,0,4.95,5.2700000000000005,5.32,5.33,5.34,5.34,5.33,5.32,5.3,220.75,220.78,220.83,220.88,220.94,220.99,221.04,221.08,221.19,27.1,26.77,26.6,26.41,26.22,26.03,25.830000000000002,25.650000000000002,25.27,N/A,N/A -2012,6,6,10,30,100900,99750,98640,73.48,0,3.64,3.85,3.89,3.9,3.91,3.91,3.91,3.9,3.89,208.88,208.93,208.91,208.87,208.83,208.79,208.75,208.70000000000002,208.61,27.04,26.72,26.54,26.34,26.16,25.97,25.77,25.59,25.2,N/A,N/A -2012,6,6,11,30,100920,99770,98660,71.49,0,3.24,3.43,3.46,3.47,3.48,3.49,3.49,3.49,3.5,215.56,215.33,215.1,214.88,214.68,214.5,214.31,214.12,213.76,27.080000000000002,26.76,26.59,26.39,26.2,26.01,25.810000000000002,25.63,25.240000000000002,N/A,N/A -2012,6,6,12,30,100950,99810,98690,73.74,0,2.85,2.98,2.99,3,2.99,2.99,2.98,2.98,2.96,207.14000000000001,207.11,207.07,207.02,206.97,206.92000000000002,206.85,206.79,206.65,27,26.67,26.490000000000002,26.3,26.1,25.91,25.72,25.53,25.150000000000002,N/A,N/A -2012,6,6,13,30,100990,99840,98730,72.91,0,2.5100000000000002,2.62,2.63,2.64,2.64,2.64,2.64,2.64,2.63,227.56,227.3,227.07,226.85,226.63,226.42000000000002,226.20000000000002,226,225.58,27.02,26.69,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.17,N/A,N/A -2012,6,6,14,30,101040,99890,98780,73.27,0,1.8,1.8800000000000001,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,1.8900000000000001,230.43,229.64000000000001,229.07,228.52,228.02,227.53,227.04,226.59,225.68,27.03,26.7,26.52,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A -2012,6,6,15,30,101070,99920,98810,73.39,0,1.6500000000000001,1.7,1.7,1.69,1.69,1.68,1.67,1.6600000000000001,1.6500000000000001,252.97,252.4,251.97,251.55,251.17000000000002,250.81,250.45000000000002,250.11,249.42000000000002,27.09,26.75,26.57,26.37,26.18,25.990000000000002,25.8,25.61,25.22,N/A,N/A -2012,6,6,16,30,101070,99920,98810,74.4,0,1.45,1.52,1.53,1.54,1.54,1.55,1.56,1.56,1.57,197.68,196.99,196.62,196.26,195.93,195.61,195.3,195.03,194.4,27.080000000000002,26.73,26.560000000000002,26.36,26.16,25.97,25.78,25.59,25.2,N/A,N/A -2012,6,6,17,30,101070,99930,98810,75.41,0,1.3800000000000001,1.42,1.43,1.43,1.43,1.42,1.42,1.42,1.41,201.47,201.69,201.70000000000002,201.70000000000002,201.71,201.72,201.72,201.72,201.67000000000002,27.14,26.78,26.61,26.41,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A -2012,6,6,18,30,101050,99910,98800,77.22,0,3.56,3.72,3.74,3.74,3.73,3.72,3.71,3.7,3.67,186.55,186.08,185.83,185.58,185.33,185.1,184.83,184.58,184.02,27.21,26.830000000000002,26.650000000000002,26.45,26.26,26.07,25.87,25.69,25.3,N/A,N/A -2012,6,6,19,30,101050,99900,98790,76.59,0,4.0200000000000005,4.22,4.25,4.25,4.25,4.25,4.24,4.24,4.21,176.23,176.16,176.08,176,175.9,175.81,175.70000000000002,175.59,175.34,27.32,26.95,26.78,26.57,26.38,26.19,26,25.810000000000002,25.44,N/A,N/A -2012,6,6,20,30,101010,99860,98750,78.06,0,4.65,4.91,4.95,4.96,4.97,4.97,4.96,4.95,4.93,181.55,181.38,181.28,181.18,181.08,180.98,180.86,180.74,180.44,27.36,27,26.830000000000002,26.63,26.44,26.25,26.05,25.87,25.5,N/A,N/A -2012,6,6,21,30,100950,99810,98700,78.17,0,5.01,5.33,5.38,5.4,5.4,5.4,5.4,5.39,5.38,180.55,180.41,180.36,180.3,180.22,180.12,179.99,179.86,179.44,27.42,27.07,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.96,25.59,N/A,N/A -2012,6,6,22,30,100920,99770,98670,80.75,0,5.18,5.54,5.61,5.64,5.65,5.66,5.66,5.66,5.66,179.48,179.18,178.99,178.77,178.56,178.35,178.11,177.87,177.29,27.35,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.900000000000002,25.53,N/A,N/A -2012,6,6,23,30,100890,99740,98640,79.92,0,5.3100000000000005,5.69,5.75,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,5.75,5.72,181.27,181.07,180.95000000000002,180.82,180.70000000000002,180.58,180.44,180.31,179.96,27.41,27.09,26.92,26.72,26.54,26.35,26.16,25.98,25.6,N/A,N/A -2012,6,7,0,30,100900,99760,98650,82.17,0,5.34,5.75,5.82,5.8500000000000005,5.87,5.88,5.87,5.87,5.8500000000000005,173.16,172.89000000000001,172.84,172.79,172.73,172.67000000000002,172.6,172.53,172.37,27.34,27.02,26.85,26.650000000000002,26.46,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,6,7,1,30,100940,99800,98690,82.86,0,4.88,5.22,5.29,5.32,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,171.75,171.5,171.33,171.14000000000001,170.97,170.8,170.6,170.4,169.93,27.25,26.93,26.76,26.560000000000002,26.38,26.19,26,25.810000000000002,25.44,N/A,N/A -2012,6,7,2,30,100990,99850,98740,80.59,0,4.91,5.25,5.3100000000000005,5.34,5.3500000000000005,5.36,5.3500000000000005,5.3500000000000005,5.34,162.75,162.56,162.45000000000002,162.32,162.20000000000002,162.08,161.93,161.78,161.41,27.32,27,26.830000000000002,26.63,26.45,26.26,26.07,25.88,25.51,N/A,N/A -2012,6,7,3,30,101070,99920,98810,80.66,0,4.84,5.18,5.24,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,5.32,110.95,110.67,110.68,110.66,110.64,110.60000000000001,110.55,110.51,110.4,27.36,27.04,26.87,26.67,26.490000000000002,26.3,26.11,25.92,25.55,N/A,N/A -2012,6,7,4,30,101070,99930,98820,82.29,0,6.21,6.7700000000000005,6.890000000000001,6.95,6.99,7.01,7.03,7.03,7.03,100.68,100.38,100.36,100.35000000000001,100.34,100.33,100.31,100.3,100.29,27.38,27.05,26.88,26.68,26.490000000000002,26.3,26.1,25.92,25.54,N/A,N/A -2012,6,7,5,30,101070,99920,98810,83.26,0,6.91,7.390000000000001,7.46,7.48,7.47,7.45,7.42,7.390000000000001,7.2700000000000005,103.73,103.46000000000001,103.27,103.05,102.78,102.49000000000001,102.07000000000001,101.65,99.99000000000001,26.650000000000002,26.28,26.11,25.93,25.75,25.580000000000002,25.41,25.26,25,N/A,N/A -2012,6,7,6,30,101080,99930,98820,83.39,0,4.36,4.57,4.6000000000000005,4.6000000000000005,4.58,4.57,4.54,4.5200000000000005,4.46,108.65,108.81,108.93,109.05,109.17,109.28,109.41,109.54,109.84,26.62,26.26,26.09,25.900000000000002,25.71,25.53,25.34,25.17,24.82,N/A,N/A -2012,6,7,7,30,101080,99930,98820,84.36,0,2.84,2.98,3,3.0100000000000002,3.02,3.02,3.02,3.02,3.0100000000000002,98.13,99.35000000000001,100.06,100.77,101.43,102.08,102.79,103.48,105.06,26.67,26.32,26.150000000000002,25.95,25.76,25.57,25.38,25.2,24.82,N/A,N/A -2012,6,7,8,30,101070,99920,98810,84.18,0,2.73,2.85,2.87,2.86,2.86,2.85,2.84,2.83,2.8000000000000003,85.01,85.45,85.89,86.28,86.64,86.98,87.33,87.68,88.39,26.78,26.44,26.27,26.07,25.88,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A -2012,6,7,9,30,101090,99950,98830,82.8,0,4.8100000000000005,5.19,5.29,5.3500000000000005,5.4,5.44,5.47,5.5,5.5600000000000005,54.49,54.32,54.24,54.160000000000004,54.08,53.99,53.910000000000004,53.83,53.67,26.82,26.47,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A -2012,6,7,10,30,101100,99940,98830,86.96000000000001,0,7.37,7.84,7.9,7.91,7.890000000000001,7.8500000000000005,7.79,7.74,7.57,36.550000000000004,36.910000000000004,37.17,37.46,37.77,38.1,38.51,38.92,40.25,25.39,24.95,24.75,24.55,24.36,24.18,23.990000000000002,23.81,23.45,N/A,N/A -2012,6,7,11,30,101130,99970,98850,86.18,0,6.51,6.93,7,7.0200000000000005,7.01,7,6.97,6.94,6.8500000000000005,51.59,51.95,52.19,52.47,52.74,53.03,53.38,53.730000000000004,54.69,25.75,25.330000000000002,25.14,24.93,24.740000000000002,24.55,24.36,24.18,23.81,N/A,N/A -2012,6,7,12,30,101130,99980,98860,86.14,0,6.03,6.4,6.46,6.47,6.47,6.45,6.43,6.41,6.34,55.28,55.63,55.870000000000005,56.120000000000005,56.36,56.6,56.88,57.160000000000004,57.83,25.830000000000002,25.41,25.23,25.02,24.830000000000002,24.64,24.44,24.26,23.88,N/A,N/A -2012,6,7,13,30,101200,100050,98930,85.39,0,5.87,6.25,6.32,6.34,6.3500000000000005,6.34,6.33,6.32,6.2700000000000005,50.660000000000004,50.85,51,51.15,51.300000000000004,51.44,51.6,51.75,52.1,26.07,25.67,25.48,25.28,25.080000000000002,24.900000000000002,24.7,24.51,24.13,N/A,N/A -2012,6,7,14,30,101190,100030,98920,83.63,0,5.68,6.03,6.09,6.1000000000000005,6.1000000000000005,6.09,6.07,6.05,5.99,74.07000000000001,74.25,74.41,74.58,74.75,74.92,75.13,75.32000000000001,75.86,26.2,25.810000000000002,25.63,25.43,25.240000000000002,25.05,24.86,24.67,24.29,N/A,N/A -2012,6,7,15,30,101280,100130,99010,81.92,0,5.11,5.41,5.47,5.49,5.49,5.49,5.48,5.47,5.44,64.99,65.18,65.18,65.21000000000001,65.24,65.29,65.34,65.4,65.57000000000001,26.35,25.97,25.79,25.580000000000002,25.39,25.2,25.01,24.82,24.44,N/A,N/A -2012,6,7,16,30,101240,100080,98970,79.64,0,4.03,4.22,4.23,4.22,4.21,4.18,4.15,4.12,4.0200000000000005,75.49,75.59,75.63,75.68,75.74,75.82000000000001,75.92,76.03,76.43,26.55,26.18,26,25.8,25.61,25.43,25.23,25.05,24.69,N/A,N/A -2012,6,7,17,30,101240,100090,98970,81.9,0,5.11,5.4,5.45,5.46,5.46,5.44,5.43,5.41,5.3500000000000005,88.39,88.42,88.47,88.53,88.59,88.65,88.71000000000001,88.77,88.92,26.67,26.3,26.12,25.92,25.73,25.55,25.35,25.17,24.8,N/A,N/A -2012,6,7,18,30,101210,100060,98950,83.7,0,5.1000000000000005,5.39,5.41,5.4,5.38,5.36,5.32,5.28,5.14,117.14,117.27,117.3,117.37,117.45,117.54,117.67,117.8,118.37,26.91,26.54,26.37,26.17,25.98,25.8,25.62,25.44,25.11,N/A,N/A -2012,6,7,19,30,101150,100010,98900,83.9,0,4.86,5.14,5.19,5.19,5.18,5.16,5.14,5.11,5.03,129.88,129.93,129.96,129.98,130,130.02,130.04,130.08,130.19,27.150000000000002,26.8,26.62,26.42,26.240000000000002,26.05,25.86,25.68,25.32,N/A,N/A -2012,6,7,20,30,101140,100000,98890,83.94,0,2.73,2.85,2.86,2.86,2.86,2.85,2.84,2.83,2.8000000000000003,133.1,133.25,133.23,133.23,133.24,133.25,133.28,133.32,133.43,27.310000000000002,26.96,26.78,26.580000000000002,26.39,26.2,26.01,25.830000000000002,25.45,N/A,N/A -2012,6,7,21,30,101130,99980,98870,84.01,0,2.15,2.23,2.24,2.24,2.24,2.24,2.23,2.22,2.21,136.98,137.04,137.07,137.1,137.12,137.14000000000001,137.15,137.15,137.16,27.41,27.060000000000002,26.89,26.69,26.5,26.310000000000002,26.12,25.93,25.55,N/A,N/A -2012,6,7,22,30,101120,99970,98870,84.98,0,2.59,2.69,2.69,2.68,2.67,2.66,2.65,2.63,2.6,152.88,153.06,153.13,153.21,153.29,153.36,153.45000000000002,153.53,153.75,27.46,27.11,26.93,26.740000000000002,26.55,26.36,26.16,25.98,25.6,N/A,N/A -2012,6,7,23,30,101120,99970,98860,84.48,0,1.26,1.3,1.31,1.31,1.31,1.31,1.31,1.31,1.3,196.9,196.41,196.04,195.67000000000002,195.34,195.04,194.72,194.44,193.86,27.5,27.150000000000002,26.98,26.78,26.59,26.400000000000002,26.21,26.02,25.64,N/A,N/A -2012,6,8,0,30,101140,99990,98890,84.08,0,1.31,1.3900000000000001,1.42,1.43,1.45,1.46,1.48,1.49,1.52,112.83,113.17,113.32000000000001,113.44,113.53,113.60000000000001,113.66,113.7,113.77,27.5,27.17,27,26.8,26.62,26.42,26.23,26.04,25.66,N/A,N/A -2012,6,8,1,30,101110,99970,98860,84.89,0,2.38,2.5100000000000002,2.54,2.56,2.57,2.58,2.6,2.61,2.62,97.3,96.97,96.89,96.8,96.72,96.64,96.56,96.47,96.31,27.43,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.6,N/A,N/A -2012,6,8,2,30,101190,100050,98940,86.08,0,4.79,5.15,5.23,5.28,5.3100000000000005,5.33,5.3500000000000005,5.36,5.38,55.6,55.68,55.800000000000004,55.910000000000004,56,56.08,56.15,56.21,56.32,27.52,27.19,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A -2012,6,8,3,30,101200,100050,98930,84.47,1.1,10.06,11,11.22,11.35,11.44,11.51,11.56,11.6,11.65,71.72,72.36,72.61,72.85000000000001,73.08,73.28,73.5,73.69,74.11,25.88,25.44,25.25,25.05,24.85,24.67,24.47,24.29,23.92,N/A,N/A -2012,6,8,4,30,101190,100040,98920,84.84,0,7.29,7.86,7.99,8.05,8.1,8.120000000000001,8.15,8.16,8.19,83.41,84.15,84.62,85.12,85.60000000000001,86.08,86.59,87.07000000000001,88.16,25.84,25.43,25.240000000000002,25.04,24.85,24.67,24.48,24.3,23.93,N/A,N/A -2012,6,8,5,30,101180,100030,98910,84.06,0,6.97,7.5600000000000005,7.71,7.8,7.88,7.930000000000001,7.98,8.03,8.11,92.28,93.16,93.73,94.29,94.81,95.31,95.81,96.29,97.29,26.2,25.8,25.62,25.42,25.23,25.05,24.86,24.67,24.3,N/A,N/A -2012,6,8,6,30,101180,100030,98920,81.11,0,4.63,4.96,5.03,5.07,5.1000000000000005,5.11,5.12,5.13,5.14,102.12,102.16,102.22,102.25,102.26,102.27,102.27,102.26,102.24000000000001,26.560000000000002,26.19,26.01,25.810000000000002,25.62,25.43,25.23,25.04,24.66,N/A,N/A -2012,6,8,7,30,101180,100030,98920,82.57000000000001,0,3.13,3.2800000000000002,3.3000000000000003,3.31,3.31,3.31,3.31,3.3000000000000003,3.3000000000000003,123.7,123.55,123.53,123.52,123.49000000000001,123.46000000000001,123.45,123.44,123.39,26.52,26.17,25.990000000000002,25.79,25.6,25.41,25.22,25.04,24.66,N/A,N/A -2012,6,8,8,30,101180,100030,98920,78.39,0,2.04,2.15,2.17,2.19,2.21,2.22,2.23,2.24,2.2600000000000002,79.27,80.58,81.32000000000001,82.02,82.64,83.2,83.75,84.25,85.25,26.78,26.44,26.26,26.060000000000002,25.87,25.68,25.48,25.3,24.91,N/A,N/A -2012,6,8,9,30,101190,100030,98920,76.36,0,3.49,3.71,3.7600000000000002,3.8000000000000003,3.83,3.85,3.88,3.9,3.94,78.98,77.27,76.29,75.32000000000001,74.45,73.61,72.79,72.01,70.48,26.71,26.36,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A -2012,6,8,10,30,101190,100040,98920,78.36,0,2.64,2.7600000000000002,2.79,2.8000000000000003,2.82,2.83,2.83,2.84,2.85,94.47,95.37,95.94,96.43,96.86,97.26,97.68,98.06,98.93,26.52,26.16,25.98,25.79,25.6,25.41,25.21,25.03,24.650000000000002,N/A,N/A -2012,6,8,11,30,101210,100060,98940,79.63,0,4.99,5.0600000000000005,4.95,4.79,4.6000000000000005,4.4,4.16,3.93,3.37,139.21,139.04,138.83,138.61,138.31,137.97,137.34,136.71,133.98,25.810000000000002,25.44,25.27,25.09,24.92,24.76,24.59,24.43,24.1,N/A,N/A -2012,6,8,12,30,101260,100100,98980,82.60000000000001,0,2.98,3.13,3.13,3.11,3.1,3.09,3.0700000000000003,3.0500000000000003,3.02,66.56,65.57000000000001,65.06,64.5,63.980000000000004,63.47,62.940000000000005,62.440000000000005,61.34,25.87,25.5,25.32,25.11,24.92,24.73,24.53,24.35,23.96,N/A,N/A -2012,6,8,13,30,101260,100100,98980,82.35000000000001,0,5.69,5.8100000000000005,5.79,5.75,5.7700000000000005,5.84,5.92,6,6.11,68.77,69.34,69.89,70.62,71.54,72.58,73.4,74.09,75.32000000000001,24.7,24.330000000000002,24.22,24.14,24.18,24.29,24.44,24.59,24.61,N/A,N/A -2012,6,8,14,30,101230,100070,98950,82.75,0,4.13,4.25,4.25,4.21,4.17,4.13,4.07,4.0200000000000005,3.9,63.29,62.15,61.5,60.78,60.03,59.26,58.32,57.44,55.31,25,24.59,24.41,24.23,24.060000000000002,23.89,23.73,23.580000000000002,23.330000000000002,N/A,N/A -2012,6,8,15,30,101230,100070,98960,73.28,0,3.7800000000000002,3.94,3.94,3.93,3.91,3.88,3.85,3.83,3.77,39.33,38.480000000000004,38,37.52,37.09,36.68,36.28,35.9,35.21,26.27,25.900000000000002,25.73,25.54,25.36,25.18,25,24.830000000000002,24.48,N/A,N/A -2012,6,8,16,30,101270,100110,98990,88.91,379.40000000000003,4,4.11,4.16,4.23,4.34,4.46,4.62,4.79,5.15,109.96000000000001,103.73,99.85000000000001,95.63,91.7,87.96000000000001,84.10000000000001,80.44,73.48,24.650000000000002,24.25,24.1,23.95,23.830000000000002,23.71,23.63,23.56,23.48,N/A,N/A -2012,6,8,17,30,101220,100060,98940,92.48,87.2,1.28,1.46,1.62,1.9000000000000001,2.2,2.54,2.88,3.21,3.75,157.20000000000002,129.18,114.89,104.89,97.07000000000001,90.60000000000001,86.01,82.18,77.69,24.42,24.25,24.21,24.18,24.14,24.11,24.1,24.09,24,N/A,N/A -2012,6,8,18,30,101180,100030,98920,76.43,5.9,1.42,1.56,1.62,1.67,1.72,1.76,1.8,1.84,1.9100000000000001,101.19,99.9,99.08,98.36,97.72,97.11,96.53,95.99000000000001,94.86,26.330000000000002,25.98,25.810000000000002,25.61,25.42,25.240000000000002,25.04,24.86,24.48,N/A,N/A -2012,6,8,19,30,101140,99990,98880,70.87,0,4.55,4.86,4.91,4.94,4.96,4.97,4.98,4.98,4.99,74.4,74.32000000000001,74.17,74.01,73.87,73.73,73.57000000000001,73.41,73.06,27.080000000000002,26.73,26.55,26.35,26.16,25.98,25.78,25.6,25.22,N/A,N/A -2012,6,8,20,30,101110,99960,98850,73.14,0,4.16,4.39,4.43,4.45,4.46,4.46,4.46,4.46,4.45,101.29,100.42,100.01,99.56,99.13,98.69,98.22,97.76,96.72,27.23,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.77,25.400000000000002,N/A,N/A -2012,6,8,21,30,101090,99950,98830,76.17,0,4.22,4.45,4.48,4.49,4.49,4.49,4.48,4.47,4.45,117.10000000000001,116.54,116.24000000000001,115.94,115.64,115.34,115.02,114.72,113.99000000000001,27.17,26.82,26.64,26.45,26.26,26.07,25.87,25.69,25.32,N/A,N/A -2012,6,8,22,30,101060,99910,98800,72.59,0,3.72,3.92,3.95,3.96,3.95,3.95,3.93,3.92,3.88,116.09,116.02,116.04,116.04,116.03,116.02,115.97,115.92,115.74000000000001,27.22,26.88,26.71,26.51,26.32,26.13,25.93,25.75,25.36,N/A,N/A -2012,6,8,23,30,101050,99900,98790,76.44,0,4.25,4.49,4.5200000000000005,4.53,4.53,4.5200000000000005,4.51,4.5,4.48,130.05,129.54,129.3,129.07,128.86,128.65,128.45,128.26,127.86,27.13,26.79,26.62,26.42,26.23,26.04,25.84,25.66,25.27,N/A,N/A -2012,6,9,0,30,101030,99880,98770,75.28,0,3.15,3.3200000000000003,3.35,3.37,3.38,3.38,3.38,3.38,3.38,120.51,119.88,119.51,119.17,118.85000000000001,118.55,118.25,117.97,117.34,27.07,26.73,26.560000000000002,26.36,26.17,25.98,25.78,25.59,25.21,N/A,N/A -2012,6,9,1,30,101030,99880,98770,78.93,0,1.8900000000000001,1.98,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.02,2.02,2.02,117.8,117.29,117.05,116.79,116.56,116.32000000000001,116.07000000000001,115.83,115.34,26.93,26.6,26.42,26.22,26.03,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A -2012,6,9,2,30,101040,99890,98780,80.99,0,2.02,2.14,2.17,2.19,2.2,2.22,2.23,2.24,2.2600000000000002,75.64,75.77,75.96000000000001,76.13,76.28,76.43,76.58,76.7,76.97,26.91,26.57,26.400000000000002,26.2,26.01,25.82,25.62,25.43,25.05,N/A,N/A -2012,6,9,3,30,101080,99920,98800,93.83,0,13.64,15.18,15.4,15.49,15.49,15.450000000000001,15.36,15.26,14.950000000000001,61.19,61.15,61.34,61.58,61.83,62.09,62.4,62.68,63.43,24.650000000000002,24.02,23.77,23.53,23.31,23.1,22.87,22.67,22.400000000000002,N/A,N/A -2012,6,9,4,30,101050,99880,98760,84.46000000000001,27.1,7.0600000000000005,7.54,7.640000000000001,7.72,7.79,7.86,7.97,8.09,8.49,68.95,69.36,69.75,70.18,70.7,71.22,71.95,72.7,75.34,23.91,23.46,23.3,23.150000000000002,23.02,22.900000000000002,22.8,22.72,22.66,N/A,N/A -2012,6,9,5,30,101040,99880,98760,80.85000000000001,0,3.81,3.89,3.87,3.83,3.79,3.7600000000000002,3.72,3.7,3.7,131.57,129.92000000000002,128.99,128.05,127.17,126.33,125.48,124.7,124.02,25.060000000000002,24.67,24.490000000000002,24.310000000000002,24.14,23.97,23.8,23.64,23.35,N/A,N/A -2012,6,9,6,30,101000,99850,98730,78.58,0,3.16,3.2800000000000002,3.29,3.29,3.29,3.2800000000000002,3.2800000000000002,3.2800000000000002,3.33,118.69,118.60000000000001,118.57000000000001,118.55,118.53,118.52,118.54,118.56,118.89,25.29,24.900000000000002,24.72,24.53,24.34,24.16,23.98,23.82,23.52,N/A,N/A -2012,6,9,7,30,101020,99870,98750,80.02,0,4.74,5.04,5.1000000000000005,5.14,5.17,5.19,5.21,5.22,5.26,93.05,93.44,93.67,93.89,94.10000000000001,94.3,94.52,94.72,95.17,25.86,25.45,25.27,25.07,24.88,24.69,24.490000000000002,24.310000000000002,23.93,N/A,N/A -2012,6,9,8,30,100980,99830,98720,76.73,0,3.3200000000000003,3.5700000000000003,3.63,3.69,3.74,3.7800000000000002,3.8200000000000003,3.86,3.95,97.03,96.8,96.77,96.74000000000001,96.71000000000001,96.68,96.66,96.63,96.58,26.310000000000002,25.94,25.76,25.560000000000002,25.37,25.18,24.98,24.79,24.41,N/A,N/A -2012,6,9,9,30,101030,99870,98750,89.57000000000001,184.9,4.21,4.32,4.3100000000000005,4.25,4.19,4.11,4.04,3.98,3.98,76.93,80.45,82.7,85.48,88.39,91.49,94.64,97.56,102.31,24.22,23.87,23.77,23.71,23.72,23.77,23.81,23.84,23.740000000000002,N/A,N/A -2012,6,9,10,30,100990,99830,98710,84.98,9.200000000000001,2.44,2.35,2.24,2.11,2.09,2.11,2.08,2.0300000000000002,2,19.56,24.73,29.990000000000002,38.67,51.9,67.9,79.19,88.03,106.55,24.25,23.91,23.8,23.72,23.740000000000002,23.82,23.79,23.73,23.43,N/A,N/A -2012,6,9,11,30,100990,99840,98720,85.95,1.8,0.11,0.16,0.2,0.25,0.31,0.36,0.42,0.49,0.67,59.69,84.72,99.45,105.99000000000001,110.21000000000001,112.58,113.74000000000001,114.46000000000001,113.16,25.27,24.900000000000002,24.72,24.53,24.34,24.16,23.98,23.81,23.46,N/A,N/A -2012,6,9,12,30,100990,99840,98720,85.58,0,1.6,1.6300000000000001,1.62,1.61,1.59,1.58,1.56,1.54,1.48,305.24,307.19,308.31,309.54,310.85,312.2,313.91,315.59000000000003,321.02,25.6,25.23,25.05,24.85,24.66,24.47,24.28,24.1,23.740000000000002,N/A,N/A -2012,6,9,13,30,101020,99870,98750,84.3,0,2.11,2.24,2.27,2.3000000000000003,2.32,2.35,2.37,2.39,2.43,6.92,9.49,10.72,11.89,12.97,14,15.02,15.97,17.96,26.11,25.740000000000002,25.560000000000002,25.36,25.17,24.98,24.79,24.6,24.22,N/A,N/A -2012,6,9,14,30,101030,99880,98770,79.84,0,4.62,4.84,4.86,4.8500000000000005,4.83,4.8100000000000005,4.79,4.76,4.7,32.980000000000004,33.51,33.86,34.18,34.480000000000004,34.75,35.02,35.27,35.77,26.36,25.98,25.8,25.6,25.41,25.22,25.02,24.84,24.46,N/A,N/A -2012,6,9,15,30,101060,99900,98780,90.07000000000001,0,4.42,4.51,4.46,4.4,4.33,4.2700000000000005,4.2,4.14,4.03,124.05,121.38,119.61,117.67,115.82000000000001,114.01,112.13,110.38,105.77,25.13,24.72,24.53,24.34,24.150000000000002,23.98,23.79,23.62,23.27,N/A,N/A -2012,6,9,16,30,101020,99860,98740,86.4,0,2.63,2.66,2.62,2.56,2.5100000000000002,2.45,2.38,2.31,2.11,138.8,136.97,135.62,134.15,132.55,130.89000000000001,128.57,126.25,116.47,25.32,24.92,24.740000000000002,24.54,24.35,24.17,23.98,23.81,23.45,N/A,N/A -2012,6,9,17,30,101010,99860,98740,84.58,0,2.07,2.04,2,1.94,1.9000000000000001,1.85,1.8,1.76,1.69,111.65,108.59,106.66,104.53,102.31,100.04,97.29,94.64,87.8,25.490000000000002,25.09,24.91,24.71,24.52,24.34,24.14,23.96,23.59,N/A,N/A -2012,6,9,18,30,100990,99840,98720,84.28,0,2.95,3.08,3.09,3.09,3.08,3.08,3.0700000000000003,3.0700000000000003,3.06,68.26,67.29,66.62,65.96000000000001,65.32000000000001,64.67,63.980000000000004,63.31,61.83,25.79,25.38,25.19,24.990000000000002,24.79,24.61,24.41,24.22,23.84,N/A,N/A -2012,6,9,19,30,100980,99830,98710,78.4,0,3.88,4.12,4.18,4.22,4.25,4.28,4.3,4.32,4.3500000000000005,97.51,97.24000000000001,97.09,96.95,96.81,96.69,96.56,96.45,96.2,26.35,25.96,25.77,25.57,25.37,25.19,24.990000000000002,24.8,24.42,N/A,N/A -2012,6,9,20,30,100910,99760,98650,79.97,0,4.5600000000000005,4.79,4.83,4.84,4.83,4.82,4.8100000000000005,4.79,4.75,129.76,129.38,129.21,129.02,128.82,128.62,128.4,128.18,127.65,26.43,26.05,25.87,25.67,25.48,25.29,25.09,24.91,24.54,N/A,N/A -2012,6,9,21,30,100900,99760,98650,79.77,0,3.92,4.17,4.23,4.2700000000000005,4.3,4.32,4.34,4.36,4.39,106,106.12,106.19,106.24000000000001,106.3,106.35000000000001,106.39,106.43,106.51,26.66,26.28,26.1,25.900000000000002,25.71,25.52,25.32,25.13,24.75,N/A,N/A -2012,6,9,22,30,100890,99740,98630,80.06,0,6.0600000000000005,6.48,6.5600000000000005,6.59,6.61,6.62,6.62,6.62,6.61,119.23,119.34,119.39,119.45,119.51,119.56,119.63,119.69,119.82000000000001,26.73,26.36,26.17,25.97,25.78,25.59,25.39,25.2,24.82,N/A,N/A -2012,6,9,23,30,100850,99710,98600,83.72,0,4.79,5.07,5.11,5.13,5.14,5.14,5.13,5.13,5.11,136.67000000000002,137.17000000000002,137.4,137.64000000000001,137.86,138.08,138.3,138.51,138.96,26.66,26.29,26.12,25.91,25.72,25.53,25.34,25.150000000000002,24.77,N/A,N/A -2012,6,10,0,30,100810,99670,98560,81.65,0,4.26,4.5200000000000005,4.5600000000000005,4.58,4.59,4.6000000000000005,4.6000000000000005,4.6000000000000005,4.59,143.6,143.44,143.34,143.24,143.15,143.07,142.97,142.89000000000001,142.68,26.71,26.35,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A -2012,6,10,1,30,100800,99650,98540,85.45,0,6.45,6.88,6.94,6.96,6.96,6.95,6.93,6.91,6.8500000000000005,145.1,145.16,145.13,145.11,145.1,145.08,145.06,145.05,145,26.52,26.13,25.95,25.75,25.560000000000002,25.37,25.17,24.990000000000002,24.61,N/A,N/A -2012,6,10,2,30,100820,99670,98570,85.02,0,5.51,5.88,5.95,5.98,6,6.01,6.01,6.01,5.99,155.44,155.36,155.31,155.25,155.18,155.11,155.03,154.95000000000002,154.77,26.650000000000002,26.28,26.1,25.900000000000002,25.71,25.51,25.32,25.14,24.75,N/A,N/A -2012,6,10,3,30,100850,99700,98590,84.31,0,5.59,5.96,6.04,6.07,6.09,6.09,6.09,6.09,6.08,152.65,152.83,152.95000000000002,153.07,153.18,153.27,153.38,153.47,153.66,26.73,26.36,26.18,25.98,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A -2012,6,10,4,30,100830,99690,98580,83.22,0,5.12,5.46,5.5200000000000005,5.55,5.5600000000000005,5.57,5.57,5.57,5.55,162.5,162.47,162.47,162.45000000000002,162.44,162.43,162.41,162.39000000000001,162.34,26.740000000000002,26.37,26.19,25.990000000000002,25.8,25.61,25.41,25.23,24.84,N/A,N/A -2012,6,10,5,30,100820,99670,98560,84.21000000000001,0,5.59,5.98,6.05,6.08,6.09,6.1000000000000005,6.1000000000000005,6.09,6.07,163.59,163.72,163.77,163.81,163.84,163.88,163.91,163.94,164.01,26.72,26.34,26.16,25.96,25.77,25.580000000000002,25.38,25.19,24.810000000000002,N/A,N/A -2012,6,10,6,30,100830,99690,98580,84.32000000000001,0,5.59,6,6.09,6.13,6.16,6.19,6.2,6.21,6.22,176.73,176.9,177,177.09,177.18,177.26,177.35,177.42000000000002,177.58,26.73,26.36,26.18,25.98,25.79,25.59,25.400000000000002,25.21,24.830000000000002,N/A,N/A -2012,6,10,7,30,100850,99710,98600,84.06,0,5.48,5.88,5.97,6.01,6.04,6.05,6.0600000000000005,6.07,6.0600000000000005,193.37,193.6,193.65,193.67000000000002,193.66,193.65,193.63,193.61,193.54,26.82,26.46,26.28,26.080000000000002,25.88,25.69,25.5,25.310000000000002,24.93,N/A,N/A -2012,6,10,8,30,100850,99700,98590,82.41,0,5.96,6.43,6.54,6.6000000000000005,6.65,6.68,6.7,6.72,6.74,205.98000000000002,205.86,205.74,205.59,205.46,205.34,205.20000000000002,205.08,204.82,27.02,26.67,26.490000000000002,26.29,26.09,25.91,25.71,25.52,25.14,N/A,N/A -2012,6,10,9,30,100840,99700,98590,81.54,0,6.46,6.94,7.05,7.1000000000000005,7.13,7.140000000000001,7.15,7.15,7.15,204.52,204.77,204.9,205.01,205.11,205.20000000000002,205.3,205.38,205.55,27.11,26.76,26.580000000000002,26.38,26.19,26,25.8,25.62,25.23,N/A,N/A -2012,6,10,10,30,100840,99690,98580,82.55,0,5.84,6.29,6.38,6.43,6.46,6.48,6.49,6.5,6.5,223.58,223.31,223.12,222.94,222.76,222.59,222.42000000000002,222.25,221.91,27.080000000000002,26.73,26.55,26.35,26.16,25.97,25.78,25.59,25.22,N/A,N/A -2012,6,10,11,30,100860,99720,98610,82.43,0,5.96,6.44,6.54,6.6000000000000005,6.63,6.65,6.66,6.67,6.67,223.19,222.64000000000001,222.42000000000002,222.22,222.05,221.9,221.75,221.62,221.35,27.23,26.88,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A -2012,6,10,12,30,100900,99750,98650,81.75,0,5.63,6.11,6.22,6.29,6.34,6.38,6.41,6.44,6.49,215.81,215.57,215.44,215.31,215.20000000000002,215.09,214.97,214.86,214.65,27.36,27.02,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A -2012,6,10,13,30,100940,99800,98690,83.35000000000001,0,5.61,6.04,6.13,6.19,6.22,6.24,6.26,6.2700000000000005,6.29,211.64000000000001,211.82,211.93,212.04,212.14000000000001,212.24,212.34,212.44,212.67000000000002,27.38,27.04,26.88,26.67,26.490000000000002,26.3,26.1,25.92,25.54,N/A,N/A -2012,6,10,14,30,100990,99850,98740,83.19,0,5.05,5.5,5.63,5.72,5.79,5.84,5.89,5.93,6.01,219.23000000000002,219.48000000000002,219.59,219.68,219.76,219.83,219.89000000000001,219.95000000000002,220.07,27.57,27.25,27.080000000000002,26.88,26.69,26.5,26.310000000000002,26.12,25.740000000000002,N/A,N/A -2012,6,10,15,30,101010,99870,98760,80.4,0,6.96,7.5600000000000005,7.68,7.75,7.79,7.82,7.8500000000000005,7.86,7.890000000000001,223.97,224.27,224.4,224.53,224.66,224.79,224.92000000000002,225.04,225.3,27.830000000000002,27.52,27.36,27.16,26.98,26.79,26.6,26.42,26.05,N/A,N/A -2012,6,10,16,30,101060,99920,98810,83.68,0,6.7700000000000005,7.43,7.59,7.7,7.7700000000000005,7.83,7.87,7.91,7.97,220.06,220.37,220.49,220.61,220.70000000000002,220.79,220.88,220.95000000000002,221.1,27.79,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,6,10,17,30,101090,99950,98840,78.19,0,7.34,8.040000000000001,8.19,8.28,8.33,8.370000000000001,8.39,8.41,8.42,210.24,210.28,210.3,210.31,210.32,210.33,210.35,210.35,210.37,28.09,27.8,27.64,27.44,27.26,27.07,26.88,26.7,26.32,N/A,N/A -2012,6,10,18,30,101110,99970,98860,77.09,0,6.890000000000001,7.59,7.75,7.8500000000000005,7.92,7.97,8.01,8.040000000000001,8.08,208.8,209.02,209.12,209.20000000000002,209.25,209.3,209.35,209.38,209.44,28.12,27.830000000000002,27.66,27.46,27.28,27.09,26.900000000000002,26.71,26.330000000000002,N/A,N/A -2012,6,10,19,30,101130,99990,98880,71.45,0,7.16,7.91,8.07,8.17,8.24,8.290000000000001,8.32,8.35,8.38,198.55,198.54,198.56,198.58,198.59,198.61,198.63,198.65,198.69,28.44,28.16,28,27.8,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A -2012,6,10,20,30,101110,99960,98860,74.82000000000001,0,7.76,8.55,8.71,8.81,8.870000000000001,8.91,8.94,8.950000000000001,8.96,195.21,195.34,195.38,195.4,195.4,195.4,195.4,195.39000000000001,195.36,28.21,27.93,27.77,27.580000000000002,27.39,27.21,27.01,26.830000000000002,26.45,N/A,N/A -2012,6,10,21,30,101110,99970,98860,79.92,0,7.36,8.05,8.2,8.28,8.33,8.36,8.38,8.39,8.4,189.15,189.16,189.17000000000002,189.20000000000002,189.24,189.27,189.32,189.36,189.47,28.01,27.71,27.55,27.35,27.17,26.98,26.79,26.6,26.23,N/A,N/A -2012,6,10,22,30,101090,99940,98840,84.64,0,7.21,7.86,8,8.07,8.120000000000001,8.16,8.18,8.2,8.23,182.94,183.1,183.20000000000002,183.32,183.45000000000002,183.59,183.74,183.89000000000001,184.25,27.87,27.560000000000002,27.400000000000002,27.2,27.02,26.830000000000002,26.64,26.46,26.080000000000002,N/A,N/A -2012,6,10,23,30,101090,99950,98840,85.51,0,7.94,8.73,8.9,8.99,9.05,9.09,9.120000000000001,9.14,9.16,189.52,189.45000000000002,189.37,189.28,189.18,189.09,188.98,188.88,188.63,27.93,27.63,27.47,27.27,27.09,26.900000000000002,26.71,26.53,26.16,N/A,N/A -2012,6,11,0,30,101090,99950,98850,87.05,0,7.79,8.56,8.75,8.85,8.91,8.950000000000001,8.98,9,9.02,181.74,181.85,181.91,181.96,182,182.03,182.05,182.07,182.09,27.900000000000002,27.61,27.44,27.25,27.060000000000002,26.88,26.68,26.5,26.13,N/A,N/A -2012,6,11,1,30,101080,99940,98830,87.79,0,8.55,9.42,9.63,9.74,9.82,9.870000000000001,9.9,9.92,9.94,183.42000000000002,183.44,183.49,183.55,183.61,183.67000000000002,183.73,183.79,183.93,27.830000000000002,27.51,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.02,N/A,N/A -2012,6,11,2,30,101110,99970,98860,84.85000000000001,0,9.38,10.34,10.57,10.68,10.76,10.82,10.85,10.870000000000001,10.89,181.02,181.23,181.38,181.53,181.66,181.79,181.92000000000002,182.04,182.29,27.89,27.580000000000002,27.42,27.22,27.03,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,6,11,3,30,101130,99980,98880,84.63,0,8.83,9.73,9.96,10.1,10.200000000000001,10.27,10.33,10.38,10.44,184.17000000000002,184.39000000000001,184.46,184.49,184.51,184.52,184.5,184.49,184.43,27.78,27.46,27.29,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,6,11,4,30,101120,99980,98870,82.69,0,8.76,9.72,9.97,10.120000000000001,10.24,10.32,10.39,10.46,10.55,183.36,183.72,183.87,183.97,184.04,184.09,184.13,184.16,184.19,27.740000000000002,27.42,27.25,27.05,26.86,26.67,26.48,26.3,25.91,N/A,N/A -2012,6,11,5,30,101130,99980,98870,83.67,0,9.35,10.33,10.57,10.72,10.82,10.89,10.93,10.97,11.02,187.88,187.9,187.86,187.8,187.75,187.70000000000002,187.64000000000001,187.58,187.45000000000002,27.68,27.36,27.19,26.990000000000002,26.8,26.61,26.42,26.23,25.85,N/A,N/A -2012,6,11,6,30,101170,100030,98920,78.88,0,8.870000000000001,9.93,10.200000000000001,10.38,10.51,10.61,10.69,10.76,10.85,186.57,186.71,186.8,186.87,186.94,187,187.05,187.1,187.19,27.96,27.68,27.51,27.32,27.13,26.94,26.75,26.57,26.19,N/A,N/A -2012,6,11,7,30,101190,100040,98940,77.31,0,9.200000000000001,10.22,10.49,10.66,10.78,10.870000000000001,10.94,11,11.09,190.85,190.77,190.74,190.73,190.73,190.73,190.73,190.73,190.74,28.14,27.88,27.72,27.53,27.35,27.17,26.97,26.79,26.42,N/A,N/A -2012,6,11,8,30,101210,100060,98950,79.60000000000001,0,9.290000000000001,10.27,10.5,10.64,10.74,10.81,10.86,10.91,10.99,192.51,192.77,192.77,192.75,192.72,192.67000000000002,192.62,192.56,192.42000000000002,28.01,27.740000000000002,27.59,27.400000000000002,27.22,27.04,26.86,26.68,26.32,N/A,N/A -2012,6,11,9,30,101230,100090,98980,77.59,0,8.790000000000001,9.870000000000001,10.17,10.4,10.57,10.72,10.85,10.96,11.15,197.89000000000001,197.83,197.81,197.78,197.75,197.73000000000002,197.69,197.66,197.6,28.16,27.91,27.76,27.57,27.400000000000002,27.22,27.03,26.85,26.490000000000002,N/A,N/A -2012,6,11,10,30,101270,100120,99010,81.89,0,8.040000000000001,8.9,9.120000000000001,9.25,9.35,9.43,9.49,9.55,9.64,191.76,192.08,192.20000000000002,192.29,192.38,192.46,192.54,192.61,192.75,27.97,27.68,27.53,27.330000000000002,27.150000000000002,26.97,26.78,26.6,26.23,N/A,N/A -2012,6,11,11,30,101300,100150,99050,83.99,0,8.28,9.11,9.290000000000001,9.38,9.450000000000001,9.48,9.51,9.52,9.55,187.95000000000002,188.31,188.44,188.58,188.71,188.84,188.99,189.13,189.48,27.91,27.62,27.46,27.27,27.09,26.91,26.73,26.55,26.2,N/A,N/A -2012,6,11,12,30,101370,100230,99120,82.45,0,7.94,8.77,8.98,9.120000000000001,9.22,9.31,9.38,9.450000000000001,9.61,190.61,190.62,190.55,190.48,190.43,190.37,190.33,190.31,190.26,28.13,27.86,27.71,27.52,27.35,27.17,26.990000000000002,26.810000000000002,26.46,N/A,N/A -2012,6,11,13,30,101400,100250,99140,83.81,0,8.22,8.99,9.17,9.26,9.32,9.370000000000001,9.42,9.46,9.59,188.71,188.62,188.61,188.6,188.59,188.59,188.58,188.58,188.59,28.03,27.76,27.61,27.43,27.26,27.080000000000002,26.91,26.740000000000002,26.42,N/A,N/A -2012,6,11,14,30,101470,100330,99220,82.16,0,8.93,10.05,10.34,10.540000000000001,10.69,10.790000000000001,10.870000000000001,10.93,10.99,192.02,192.14000000000001,192.16,192.17000000000002,192.16,192.15,192.13,192.11,192.05,28.22,27.95,27.79,27.59,27.400000000000002,27.21,27.02,26.830000000000002,26.44,N/A,N/A -2012,6,11,15,30,101530,100380,99270,83.01,0,8.15,8.92,9.1,9.18,9.23,9.26,9.27,9.28,9.28,186.86,186.93,186.99,187.06,187.14000000000001,187.22,187.33,187.44,187.75,27.98,27.69,27.53,27.34,27.16,26.98,26.79,26.61,26.240000000000002,N/A,N/A -2012,6,11,16,30,101540,100400,99290,85.35000000000001,0,7.97,8.74,8.92,9.02,9.09,9.13,9.15,9.17,9.19,184.5,184.91,185.11,185.31,185.48,185.64000000000001,185.8,185.95000000000002,186.25,27.79,27.48,27.310000000000002,27.11,26.92,26.73,26.54,26.35,25.97,N/A,N/A -2012,6,11,17,30,101560,100410,99300,86.86,0,6.78,7.45,7.62,7.73,7.8100000000000005,7.87,7.92,7.96,8.02,184.70000000000002,184.52,184.45000000000002,184.41,184.38,184.36,184.35,184.35,184.36,27.77,27.45,27.28,27.080000000000002,26.89,26.7,26.51,26.32,25.94,N/A,N/A -2012,6,11,18,30,101550,100400,99290,85.11,0,7.03,7.640000000000001,7.79,7.86,7.9,7.930000000000001,7.95,7.96,7.97,182.65,182.71,182.77,182.83,182.89000000000001,182.96,183.03,183.11,183.3,27.7,27.37,27.21,27.01,26.82,26.63,26.44,26.25,25.88,N/A,N/A -2012,6,11,19,30,101560,100410,99300,84.02,0,7.38,8.05,8.21,8.290000000000001,8.35,8.39,8.41,8.44,8.47,184.55,184.53,184.54,184.56,184.56,184.57,184.58,184.59,184.61,27.76,27.44,27.27,27.07,26.88,26.69,26.5,26.310000000000002,25.94,N/A,N/A -2012,6,11,20,30,101540,100400,99280,83.41,0,6.95,7.58,7.72,7.79,7.8500000000000005,7.88,7.91,7.930000000000001,7.95,176.68,176.92000000000002,177.07,177.20000000000002,177.33,177.46,177.59,177.71,177.95000000000002,27.810000000000002,27.48,27.32,27.12,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A -2012,6,11,21,30,101520,100370,99260,80.79,0,6.74,7.38,7.5200000000000005,7.59,7.640000000000001,7.68,7.71,7.72,7.74,178.19,178.26,178.34,178.42000000000002,178.49,178.56,178.64000000000001,178.71,178.87,27.96,27.66,27.490000000000002,27.3,27.11,26.92,26.73,26.54,26.16,N/A,N/A -2012,6,11,22,30,101520,100370,99260,78.93,0,6.8500000000000005,7.51,7.66,7.74,7.8,7.84,7.86,7.890000000000001,7.92,172.88,172.94,172.99,173.03,173.07,173.12,173.16,173.19,173.27,28.04,27.75,27.59,27.400000000000002,27.21,27.03,26.830000000000002,26.650000000000002,26.27,N/A,N/A -2012,6,11,23,30,101510,100360,99250,79.51,0,7.48,8.2,8.35,8.43,8.48,8.51,8.52,8.53,8.53,169.34,169.67000000000002,169.78,169.89000000000001,169.97,170.06,170.13,170.21,170.35,27.94,27.650000000000002,27.490000000000002,27.3,27.11,26.92,26.73,26.55,26.17,N/A,N/A -2012,6,12,0,30,101480,100330,99220,83.45,0,7.57,8.28,8.44,8.52,8.58,8.61,8.63,8.65,8.66,172.68,172.84,172.91,172.98,173.03,173.09,173.14000000000001,173.18,173.28,27.69,27.38,27.21,27.01,26.830000000000002,26.64,26.45,26.26,25.88,N/A,N/A -2012,6,12,1,30,101470,100320,99210,86.9,0,7.54,8.27,8.45,8.55,8.620000000000001,8.67,8.71,8.73,8.77,175.01,174.91,174.9,174.88,174.87,174.86,174.85,174.85,174.83,27.490000000000002,27.16,26.98,26.78,26.6,26.400000000000002,26.21,26.02,25.64,N/A,N/A -2012,6,12,2,30,101490,100350,99230,87.02,0,7.3500000000000005,8.03,8.18,8.26,8.32,8.36,8.38,8.4,8.43,171.95000000000002,172.06,172.1,172.14000000000001,172.18,172.21,172.24,172.27,172.34,27.490000000000002,27.16,26.990000000000002,26.79,26.6,26.41,26.22,26.03,25.650000000000002,N/A,N/A -2012,6,12,3,30,101510,100360,99250,86.05,0,7.53,8.23,8.38,8.46,8.51,8.55,8.57,8.58,8.58,173.31,173.3,173.33,173.36,173.41,173.45000000000002,173.5,173.55,173.66,27.57,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.29,26.11,25.73,N/A,N/A -2012,6,12,4,30,101500,100350,99240,85.05,0,7.43,8.14,8.31,8.4,8.47,8.51,8.540000000000001,8.56,8.59,179.87,179.8,179.79,179.79,179.78,179.78,179.77,179.77,179.77,27.61,27.28,27.11,26.91,26.72,26.53,26.34,26.150000000000002,25.77,N/A,N/A -2012,6,12,5,30,101520,100370,99260,83.58,0,6.82,7.48,7.63,7.72,7.78,7.82,7.86,7.890000000000001,7.930000000000001,178.56,178.46,178.43,178.4,178.37,178.35,178.32,178.3,178.25,27.64,27.32,27.150000000000002,26.95,26.76,26.57,26.38,26.2,25.810000000000002,N/A,N/A -2012,6,12,6,30,101530,100380,99270,79.89,0,6.95,7.61,7.75,7.83,7.88,7.92,7.94,7.96,7.98,181.66,181.72,181.76,181.8,181.84,181.88,181.93,181.97,182.07,27.78,27.48,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A -2012,6,12,7,30,101550,100400,99290,76.69,0,6.83,7.5,7.640000000000001,7.72,7.78,7.82,7.8500000000000005,7.88,7.92,185.99,186.02,185.99,185.96,185.93,185.89000000000001,185.85,185.81,185.73,27.94,27.650000000000002,27.490000000000002,27.29,27.11,26.92,26.73,26.55,26.17,N/A,N/A -2012,6,12,8,30,101590,100440,99320,75.07000000000001,0,5.55,6.07,6.19,6.2700000000000005,6.33,6.38,6.43,6.47,6.58,185.06,185.41,185.58,185.77,185.95000000000002,186.13,186.32,186.52,186.93,28.02,27.75,27.59,27.41,27.23,27.05,26.86,26.69,26.330000000000002,N/A,N/A -2012,6,12,9,30,101620,100470,99360,75.63,0,5.95,6.51,6.63,6.7,6.74,6.78,6.8,6.8100000000000005,6.83,180.19,180.41,180.47,180.52,180.58,180.63,180.68,180.72,180.81,28.060000000000002,27.79,27.63,27.44,27.26,27.07,26.89,26.7,26.330000000000002,N/A,N/A -2012,6,12,10,30,101650,100500,99390,77.86,0,5.7700000000000005,6.29,6.390000000000001,6.45,6.49,6.5200000000000005,6.53,6.55,6.5600000000000005,184.47,184.3,184.28,184.25,184.22,184.19,184.16,184.13,184.07,27.93,27.63,27.47,27.28,27.09,26.91,26.71,26.53,26.16,N/A,N/A -2012,6,12,11,30,101690,100540,99420,84.06,0,5.97,6.44,6.5200000000000005,6.5600000000000005,6.57,6.58,6.57,6.5600000000000005,6.5200000000000005,179.24,179.36,179.42000000000002,179.5,179.58,179.65,179.74,179.81,179.98,27.52,27.19,27.02,26.82,26.63,26.44,26.240000000000002,26.060000000000002,25.68,N/A,N/A -2012,6,12,12,30,101720,100560,99450,84.44,0,5.26,5.71,5.8100000000000005,5.88,5.94,5.98,6.0200000000000005,6.05,6.1000000000000005,173.99,174.24,174.47,174.68,174.88,175.06,175.24,175.41,175.76,27.39,27.07,26.900000000000002,26.71,26.52,26.330000000000002,26.13,25.95,25.57,N/A,N/A -2012,6,12,13,30,101740,100590,99470,82.98,0,4.95,5.3500000000000005,5.44,5.49,5.5200000000000005,5.55,5.5600000000000005,5.58,5.59,173.13,173.53,173.8,174.04,174.25,174.44,174.63,174.79,175.12,27.45,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.6,N/A,N/A -2012,6,12,14,30,101770,100620,99500,84.39,0,4.94,5.28,5.34,5.37,5.38,5.39,5.39,5.38,5.36,185.93,185.67000000000002,185.44,185.15,184.88,184.61,184.33,184.05,183.5,27.53,27.21,27.03,26.84,26.650000000000002,26.46,26.27,26.080000000000002,25.7,N/A,N/A -2012,6,12,15,30,101790,100630,99520,83.41,0,4.5,4.79,4.8500000000000005,4.88,4.89,4.89,4.89,4.89,4.87,167.87,168.08,168.28,168.48,168.66,168.84,169.02,169.19,169.56,27.5,27.17,27,26.8,26.61,26.42,26.22,26.04,25.66,N/A,N/A -2012,6,12,16,30,101770,100620,99500,81.37,0,4.48,4.78,4.84,4.87,4.9,4.91,4.93,4.94,4.95,168.21,168.67000000000002,168.94,169.18,169.39000000000001,169.61,169.81,170,170.4,27.560000000000002,27.22,27.05,26.85,26.67,26.48,26.28,26.1,25.72,N/A,N/A -2012,6,12,17,30,101760,100610,99490,80.68,0,4.01,4.24,4.28,4.29,4.3,4.3,4.3,4.29,4.28,165.37,165.56,165.73,165.89000000000001,166.03,166.16,166.28,166.4,166.64000000000001,27.57,27.22,27.04,26.85,26.66,26.46,26.27,26.09,25.7,N/A,N/A -2012,6,12,18,30,101730,100580,99460,80.87,0,4.36,4.62,4.68,4.7,4.72,4.74,4.75,4.76,4.79,162.98,163.33,163.45000000000002,163.57,163.70000000000002,163.83,163.96,164.1,164.38,27.560000000000002,27.21,27.04,26.85,26.66,26.47,26.28,26.09,25.72,N/A,N/A -2012,6,12,19,30,101730,100570,99460,81.65,0,5.04,5.37,5.44,5.45,5.47,5.47,5.46,5.45,5.43,159.09,159.52,159.75,159.97,160.15,160.33,160.52,160.69,161.04,27.6,27.25,27.07,26.88,26.69,26.5,26.3,26.12,25.740000000000002,N/A,N/A -2012,6,12,20,30,101690,100540,99420,79.73,0,4.86,5.15,5.21,5.23,5.24,5.24,5.23,5.22,5.2,169.68,169.74,169.72,169.68,169.65,169.61,169.57,169.54,169.47,27.580000000000002,27.240000000000002,27.07,26.86,26.68,26.490000000000002,26.29,26.11,25.73,N/A,N/A -2012,6,12,21,30,101640,100490,99370,80.13,0,5.03,5.38,5.45,5.48,5.5,5.51,5.51,5.51,5.51,165.71,165.81,165.85,165.89000000000001,165.93,165.96,166,166.03,166.12,27.560000000000002,27.22,27.04,26.85,26.66,26.46,26.27,26.080000000000002,25.7,N/A,N/A -2012,6,12,22,30,101610,100460,99350,81.17,0,5.91,6.3500000000000005,6.44,6.48,6.51,6.5200000000000005,6.54,6.54,6.55,156.8,156.77,156.83,156.88,156.94,157,157.07,157.13,157.27,27.41,27.07,26.900000000000002,26.7,26.51,26.32,26.13,25.95,25.57,N/A,N/A -2012,6,12,23,30,101590,100440,99320,79.21000000000001,0,5.89,6.38,6.49,6.55,6.6000000000000005,6.640000000000001,6.68,6.71,6.7700000000000005,161.37,161.52,161.55,161.57,161.6,161.62,161.65,161.67000000000002,161.72,27.47,27.150000000000002,26.98,26.79,26.6,26.41,26.22,26.04,25.67,N/A,N/A -2012,6,13,0,30,101610,100460,99340,79.27,0,6.22,6.73,6.84,6.9,6.95,6.97,6.99,7.01,7.03,166.69,166.74,166.76,166.8,166.84,166.89000000000001,166.94,166.99,167.11,27.43,27.1,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A -2012,6,13,1,30,101560,100410,99300,78.15,0,6.2,6.69,6.79,6.84,6.87,6.890000000000001,6.9,6.9,6.9,170.01,170.06,170.12,170.18,170.24,170.3,170.36,170.41,170.55,27.37,27.05,26.88,26.68,26.490000000000002,26.3,26.11,25.93,25.55,N/A,N/A -2012,6,13,2,30,101600,100440,99330,77.84,0,5.84,6.3100000000000005,6.41,6.47,6.5,6.53,6.54,6.55,6.5600000000000005,171.74,171.83,171.81,171.8,171.79,171.78,171.77,171.76,171.74,27.36,27.03,26.86,26.67,26.48,26.29,26.09,25.91,25.53,N/A,N/A -2012,6,13,3,30,101590,100440,99320,80.13,0,6.2700000000000005,6.76,6.86,6.91,6.94,6.96,6.97,6.97,6.97,178.8,178.92000000000002,178.96,178.99,179.02,179.04,179.07,179.09,179.13,27.19,26.85,26.67,26.48,26.29,26.1,25.900000000000002,25.72,25.34,N/A,N/A -2012,6,13,4,30,101530,100380,99270,78.8,0,7.16,7.75,7.890000000000001,7.95,7.99,8.02,8.03,8.040000000000001,8.03,171.74,171.68,171.64000000000001,171.59,171.54,171.49,171.42000000000002,171.36,171.23,27.18,26.84,26.66,26.46,26.27,26.09,25.89,25.71,25.330000000000002,N/A,N/A -2012,6,13,5,30,101510,100350,99240,80.63,0,6.79,7.34,7.47,7.53,7.57,7.6000000000000005,7.61,7.62,7.62,178,178.09,178.12,178.14000000000001,178.15,178.16,178.17000000000002,178.18,178.19,27.060000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A -2012,6,13,6,30,101520,100360,99250,81.48,0,6.8,7.3500000000000005,7.46,7.5200000000000005,7.5600000000000005,7.58,7.59,7.59,7.59,173.12,173.35,173.46,173.56,173.65,173.74,173.83,173.9,174.07,27.02,26.650000000000002,26.48,26.27,26.080000000000002,25.89,25.69,25.5,25.12,N/A,N/A -2012,6,13,7,30,101550,100390,99280,82.95,0,6.5600000000000005,7.01,7.1000000000000005,7.140000000000001,7.16,7.17,7.17,7.16,7.15,175.08,175.35,175.55,175.75,175.94,176.12,176.3,176.47,176.82,27.03,26.67,26.490000000000002,26.29,26.1,25.91,25.72,25.54,25.16,N/A,N/A -2012,6,13,8,30,101540,100380,99270,83.01,0,6.37,6.88,6.99,7.04,7.07,7.1000000000000005,7.1000000000000005,7.11,7.1000000000000005,184.92000000000002,184.89000000000001,184.89000000000001,184.89000000000001,184.89000000000001,184.91,184.91,184.92000000000002,184.94,27,26.63,26.45,26.25,26.05,25.86,25.66,25.48,25.09,N/A,N/A -2012,6,13,9,30,101580,100430,99310,82.62,0,4.44,4.78,4.86,4.91,4.95,4.98,5.01,5.03,5.0600000000000005,197.86,197.78,197.76,197.74,197.74,197.73000000000002,197.73000000000002,197.73000000000002,197.73000000000002,27.03,26.67,26.490000000000002,26.29,26.1,25.91,25.71,25.52,25.14,N/A,N/A -2012,6,13,10,30,101580,100430,99310,83.31,0,3.73,3.94,3.98,4,4.01,4.0200000000000005,4.03,4.04,4.07,187.78,188.38,188.64000000000001,188.87,189.1,189.32,189.54,189.75,190.20000000000002,26.92,26.560000000000002,26.39,26.18,25.990000000000002,25.8,25.6,25.41,25.02,N/A,N/A -2012,6,13,11,30,101580,100430,99310,80.33,0,3.62,3.83,3.88,3.91,3.93,3.95,3.97,3.99,4.03,191.62,192.43,192.85,193.23000000000002,193.55,193.85,194.14000000000001,194.41,194.94,27.02,26.68,26.51,26.310000000000002,26.12,25.94,25.75,25.560000000000002,25.19,N/A,N/A -2012,6,13,12,30,101580,100430,99310,81.55,0,2.81,2.99,3.04,3.08,3.11,3.15,3.18,3.2,3.2600000000000002,195.82,196.41,196.8,197.11,197.37,197.6,197.79,197.96,198.19,26.98,26.64,26.46,26.26,26.080000000000002,25.89,25.69,25.51,25.13,N/A,N/A -2012,6,13,13,30,101600,100440,99330,81.81,0,2.95,3.13,3.18,3.21,3.24,3.2600000000000002,3.29,3.31,3.35,189.63,188.87,188.44,187.99,187.58,187.18,186.76,186.34,185.48,27,26.66,26.48,26.29,26.1,25.91,25.72,25.53,25.16,N/A,N/A -2012,6,13,14,30,101630,100470,99360,81.21000000000001,0,2.0100000000000002,2.13,2.16,2.18,2.19,2.2,2.22,2.23,2.25,182.25,181.46,181.26,181.12,180.99,180.9,180.82,180.75,180.65,27.11,26.77,26.59,26.39,26.2,26.01,25.810000000000002,25.63,25.240000000000002,N/A,N/A -2012,6,13,15,30,101660,100500,99390,80.33,0,2.95,3.0700000000000003,3.08,3.0700000000000003,3.0500000000000003,3.04,3.02,3,2.96,158.56,158.78,158.95000000000002,159.1,159.25,159.39000000000001,159.54,159.69,160.02,27.23,26.89,26.71,26.51,26.32,26.13,25.93,25.740000000000002,25.36,N/A,N/A -2012,6,13,16,30,101590,100440,99320,80.65,0,2.74,2.87,2.9,2.91,2.92,2.92,2.92,2.93,2.93,163.38,163.62,163.83,164.04,164.23,164.43,164.63,164.82,165.26,27.22,26.86,26.69,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A -2012,6,13,17,30,101550,100400,99290,80.19,0,4.22,4.46,4.49,4.5,4.5,4.5,4.5,4.49,4.47,151.07,151.15,151.23,151.29,151.34,151.39000000000001,151.43,151.48,151.58,27.330000000000002,26.96,26.78,26.580000000000002,26.39,26.2,26,25.810000000000002,25.43,N/A,N/A -2012,6,13,18,30,101540,100390,99270,82.02,0,4.53,4.79,4.84,4.8500000000000005,4.86,4.86,4.86,4.86,4.84,144.33,144.87,145.17000000000002,145.46,145.72,145.96,146.21,146.44,146.9,27.37,26.990000000000002,26.810000000000002,26.61,26.42,26.22,26.02,25.84,25.45,N/A,N/A -2012,6,13,19,30,101540,100390,99270,81.62,0,5.65,6.0200000000000005,6.09,6.11,6.13,6.13,6.13,6.12,6.09,167.57,167.67000000000002,167.72,167.78,167.84,167.91,167.98,168.05,168.22,27.37,27,26.82,26.62,26.42,26.23,26.04,25.85,25.47,N/A,N/A -2012,6,13,20,30,101460,100310,99200,77.99,0,5.62,6,6.05,6.07,6.08,6.08,6.07,6.0600000000000005,6.03,175.12,175.04,175,174.96,174.92000000000002,174.89000000000001,174.84,174.8,174.72,27.51,27.16,26.98,26.78,26.59,26.400000000000002,26.2,26.02,25.63,N/A,N/A -2012,6,13,21,30,101450,100300,99180,79.03,0,6.3,6.76,6.86,6.9,6.93,6.94,6.94,6.94,6.92,177.53,177.59,177.64000000000001,177.69,177.72,177.75,177.78,177.81,177.86,27.46,27.11,26.94,26.740000000000002,26.55,26.35,26.16,25.97,25.59,N/A,N/A -2012,6,13,22,30,101390,100240,99130,81.17,0,6.76,7.29,7.4,7.45,7.48,7.5,7.5,7.51,7.5,187.51,187.42000000000002,187.47,187.5,187.54,187.58,187.62,187.66,187.75,27.36,27.01,26.830000000000002,26.63,26.44,26.25,26.05,25.87,25.48,N/A,N/A -2012,6,13,23,30,101400,100250,99140,81.64,0,6.43,6.95,7.0600000000000005,7.12,7.17,7.19,7.21,7.22,7.24,182.38,182.41,182.41,182.41,182.41,182.42000000000002,182.43,182.43,182.46,27.39,27.05,26.88,26.67,26.48,26.29,26.1,25.91,25.53,N/A,N/A -2012,6,14,0,30,101400,100260,99140,79.89,0,6.36,6.83,6.93,6.97,7,7.01,7.01,7,6.98,179.06,179.6,179.83,180.02,180.20000000000002,180.35,180.51,180.64000000000001,180.92000000000002,27.46,27.12,26.95,26.740000000000002,26.55,26.36,26.16,25.98,25.59,N/A,N/A -2012,6,14,1,30,101350,100200,99090,84.77,0,6.32,6.8100000000000005,6.92,6.97,7,7.0200000000000005,7.03,7.04,7.04,188.21,188.20000000000002,188.16,188.11,188.08,188.05,188.01,187.99,187.94,27.27,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A -2012,6,14,2,30,101330,100180,99070,85.55,0,8.6,9.36,9.52,9.6,9.66,9.68,9.700000000000001,9.71,9.71,195.24,195.3,195.33,195.36,195.4,195.44,195.49,195.53,195.62,27.3,26.94,26.77,26.560000000000002,26.37,26.18,25.98,25.8,25.42,N/A,N/A -2012,6,14,3,30,101370,100220,99110,84.92,0,6.47,7.0200000000000005,7.16,7.23,7.29,7.32,7.3500000000000005,7.36,7.38,180.21,180.37,180.49,180.59,180.67000000000002,180.74,180.81,180.86,180.97,27.36,27.02,26.85,26.64,26.45,26.26,26.060000000000002,25.88,25.5,N/A,N/A -2012,6,14,4,30,101380,100230,99120,82.53,0,6.4,6.93,7.0600000000000005,7.13,7.17,7.2,7.22,7.24,7.25,180.14000000000001,180.19,180.21,180.24,180.27,180.3,180.32,180.36,180.42000000000002,27.44,27.1,26.93,26.72,26.53,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,6,14,5,30,101370,100220,99110,84.28,0,7.11,7.7,7.83,7.890000000000001,7.930000000000001,7.95,7.97,7.97,7.97,185.77,185.87,185.9,185.91,185.92000000000002,185.92000000000002,185.92000000000002,185.92000000000002,185.91,27.330000000000002,26.98,26.810000000000002,26.6,26.41,26.22,26.02,25.84,25.46,N/A,N/A -2012,6,14,6,30,101400,100250,99140,82.19,0,6.3100000000000005,6.82,6.95,7.01,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.17,186.88,186.91,186.93,186.95000000000002,186.98,187,187.02,187.04,187.08,27.400000000000002,27.04,26.86,26.66,26.47,26.28,26.080000000000002,25.900000000000002,25.51,N/A,N/A -2012,6,14,7,30,101410,100260,99150,80.11,0,6.63,7.140000000000001,7.26,7.32,7.36,7.390000000000001,7.4,7.42,7.44,187.48,187.41,187.31,187.20000000000002,187.09,186.97,186.84,186.71,186.41,27.46,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A -2012,6,14,8,30,101400,100250,99140,80.98,0,6.11,6.63,6.75,6.83,6.88,6.92,6.95,6.97,7.0200000000000005,195.44,195.07,194.97,194.88,194.81,194.74,194.69,194.65,194.57,27.44,27.080000000000002,26.91,26.7,26.51,26.32,26.13,25.94,25.560000000000002,N/A,N/A -2012,6,14,9,30,101390,100240,99130,77.16,0,6.76,7.32,7.43,7.49,7.5200000000000005,7.54,7.55,7.55,7.54,192.09,192.08,192.07,192.05,192.02,192,191.98000000000002,191.95000000000002,191.9,27.6,27.25,27.080000000000002,26.88,26.69,26.490000000000002,26.3,26.11,25.73,N/A,N/A -2012,6,14,10,30,101400,100250,99140,74.5,0,7.43,8.07,8.2,8.26,8.290000000000001,8.31,8.32,8.32,8.290000000000001,192.27,192.28,192.32,192.36,192.39000000000001,192.42000000000002,192.45000000000002,192.48000000000002,192.52,27.84,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A -2012,6,14,11,30,101410,100260,99140,69.82000000000001,0,6.1000000000000005,6.59,6.71,6.78,6.84,6.88,6.92,6.94,6.99,187.69,188.15,188.39000000000001,188.62,188.81,188.99,189.17000000000002,189.33,189.63,27.94,27.63,27.46,27.27,27.09,26.900000000000002,26.71,26.52,26.150000000000002,N/A,N/A -2012,6,14,12,30,101400,100260,99140,73.06,0,6.53,7.03,7.140000000000001,7.19,7.22,7.24,7.25,7.25,7.25,193.88,193.91,193.98000000000002,194.06,194.13,194.22,194.3,194.38,194.55,27.82,27.5,27.34,27.14,26.96,26.77,26.580000000000002,26.39,26.02,N/A,N/A -2012,6,14,13,30,101450,100300,99190,67.98,0,4.67,5.01,5.08,5.11,5.14,5.16,5.18,5.2,5.22,194.43,194.79,194.95000000000002,195.08,195.20000000000002,195.32,195.41,195.5,195.68,27.97,27.66,27.5,27.3,27.11,26.92,26.73,26.55,26.17,N/A,N/A -2012,6,14,14,30,101490,100340,99220,67.75,0,5.15,5.55,5.65,5.7,5.75,5.78,5.8100000000000005,5.84,5.89,183.76,184.23,184.39000000000001,184.55,184.68,184.81,184.93,185.04,185.24,28.03,27.72,27.55,27.36,27.17,26.98,26.78,26.6,26.22,N/A,N/A -2012,6,14,15,30,101510,100360,99240,67.89,0,4.84,5.18,5.24,5.2700000000000005,5.29,5.29,5.29,5.3,5.29,179.75,179.82,179.91,180,180.09,180.18,180.29,180.38,180.6,28.02,27.71,27.54,27.34,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A -2012,6,14,16,30,101540,100390,99270,67.09,0,5.1000000000000005,5.44,5.51,5.54,5.5600000000000005,5.57,5.58,5.59,5.6000000000000005,184.43,184.27,184.16,184.05,183.97,183.89000000000001,183.82,183.77,183.68,28.04,27.72,27.560000000000002,27.36,27.17,26.98,26.79,26.6,26.22,N/A,N/A -2012,6,14,17,30,101520,100370,99250,71.03,0,5.2700000000000005,5.66,5.73,5.7700000000000005,5.79,5.8,5.8,5.8100000000000005,5.8,167.96,168.19,168.3,168.41,168.52,168.62,168.72,168.82,169.01,27.96,27.62,27.45,27.25,27.05,26.86,26.67,26.48,26.09,N/A,N/A -2012,6,14,18,30,101520,100370,99250,68.82000000000001,0,4.78,5.13,5.22,5.2700000000000005,5.3100000000000005,5.34,5.37,5.4,5.44,173.21,173.28,173.31,173.33,173.35,173.38,173.4,173.42000000000002,173.46,28.04,27.71,27.54,27.34,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A -2012,6,14,19,30,101520,100370,99260,73.3,0,5.73,6.15,6.24,6.28,6.32,6.34,6.3500000000000005,6.36,6.37,171.46,171.85,172.05,172.22,172.36,172.47,172.58,172.67000000000002,172.84,27.92,27.580000000000002,27.41,27.21,27.02,26.830000000000002,26.63,26.44,26.060000000000002,N/A,N/A -2012,6,14,20,30,101470,100320,99210,70.68,0,5.26,5.7,5.8,5.87,5.92,5.96,5.99,6.0200000000000005,6.0600000000000005,171.78,172.41,172.67000000000002,172.88,173.05,173.20000000000002,173.34,173.46,173.69,27.98,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.7,26.51,26.13,N/A,N/A -2012,6,14,21,30,101440,100300,99180,71.67,0,5.9,6.34,6.44,6.48,6.51,6.53,6.54,6.55,6.5600000000000005,169.17000000000002,169.07,169.01,168.95000000000002,168.89000000000001,168.84,168.79,168.74,168.65,27.93,27.61,27.44,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A -2012,6,14,22,30,101430,100280,99170,70.64,0,6.42,6.93,7.04,7.09,7.13,7.15,7.16,7.17,7.17,166.66,166.63,166.65,166.65,166.65,166.65,166.65,166.65,166.65,27.96,27.64,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,6,14,23,30,101390,100240,99130,74.14,0,6.8500000000000005,7.42,7.54,7.61,7.65,7.68,7.7,7.72,7.74,175.12,175.11,175.08,175.01,174.95000000000002,174.87,174.8,174.72,174.56,27.8,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,6,15,0,30,101350,100200,99090,71.89,0,6.78,7.37,7.51,7.59,7.65,7.7,7.74,7.7700000000000005,7.82,176.47,176.57,176.61,176.62,176.63,176.64000000000001,176.64000000000001,176.64000000000001,176.64000000000001,27.85,27.52,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A -2012,6,15,1,30,101360,100210,99100,73.72,0,6.66,7.22,7.34,7.4,7.44,7.47,7.48,7.49,7.49,169.59,169.69,169.82,169.95000000000002,170.06,170.17000000000002,170.28,170.38,170.6,27.79,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,6,15,2,30,101350,100200,99090,69.95,0,6.98,7.57,7.69,7.75,7.79,7.82,7.83,7.84,7.8500000000000005,175.13,174.84,174.65,174.45000000000002,174.26,174.08,173.88,173.69,173.3,27.91,27.580000000000002,27.42,27.21,27.03,26.830000000000002,26.64,26.45,26.07,N/A,N/A -2012,6,15,3,30,101410,100260,99150,73.69,0,7.21,7.84,7.98,8.06,8.1,8.13,8.15,8.15,8.15,170.1,170.18,170.17000000000002,170.14000000000001,170.1,170.04,169.98,169.92000000000002,169.78,27.82,27.490000000000002,27.32,27.12,26.92,26.73,26.54,26.35,25.97,N/A,N/A -2012,6,15,4,30,101360,100220,99100,68.32000000000001,0,6.38,6.9,7.0200000000000005,7.09,7.140000000000001,7.17,7.21,7.24,7.29,169.4,169.95000000000002,170.21,170.47,170.71,170.93,171.15,171.35,171.77,27.990000000000002,27.68,27.52,27.330000000000002,27.150000000000002,26.96,26.77,26.59,26.22,N/A,N/A -2012,6,15,5,30,101390,100240,99130,77.42,0,6.48,6.97,7.0600000000000005,7.09,7.1000000000000005,7.11,7.1000000000000005,7.09,7.0600000000000005,164.84,164.5,164.41,164.33,164.27,164.22,164.17000000000002,164.13,164.05,27.52,27.17,27,26.8,26.61,26.42,26.22,26.04,25.66,N/A,N/A -2012,6,15,6,30,101390,100240,99130,71.4,0,5.72,6.24,6.37,6.45,6.5200000000000005,6.57,6.61,6.65,6.71,169.67000000000002,169.53,169.5,169.44,169.39000000000001,169.33,169.27,169.21,169.08,27.830000000000002,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.39,26,N/A,N/A -2012,6,15,7,30,101380,100230,99120,76.47,0,7.62,8.290000000000001,8.43,8.51,8.55,8.58,8.6,8.61,8.620000000000001,166.15,166.38,166.48,166.58,166.67000000000002,166.75,166.83,166.9,167.04,27.580000000000002,27.25,27.080000000000002,26.88,26.69,26.5,26.3,26.12,25.73,N/A,N/A -2012,6,15,8,30,101400,100250,99140,75.68,0,6.66,7.29,7.45,7.54,7.61,7.67,7.71,7.74,7.79,168.6,168.42000000000002,168.34,168.28,168.23,168.18,168.14000000000001,168.1,168.03,27.67,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.82,N/A,N/A -2012,6,15,9,30,101460,100310,99200,76.3,0,5.94,6.42,6.54,6.61,6.67,6.7,6.73,6.76,6.8,170.68,170.64000000000001,170.6,170.54,170.48,170.42000000000002,170.35,170.29,170.14000000000001,27.6,27.28,27.1,26.91,26.72,26.52,26.330000000000002,26.14,25.76,N/A,N/A -2012,6,15,10,30,101450,100300,99190,77.93,0,5.71,6.18,6.28,6.34,6.38,6.41,6.43,6.44,6.46,159.93,159.97,160.05,160.13,160.19,160.26,160.33,160.4,160.54,27.59,27.27,27.1,26.900000000000002,26.71,26.52,26.32,26.13,25.75,N/A,N/A -2012,6,15,11,30,101490,100340,99220,79.46000000000001,0,5.57,6,6.09,6.140000000000001,6.17,6.19,6.2,6.2,6.2,161.28,161.5,161.64000000000001,161.77,161.87,161.97,162.06,162.14000000000001,162.3,27.47,27.14,26.96,26.77,26.57,26.38,26.19,26,25.62,N/A,N/A -2012,6,15,12,30,101520,100370,99250,81.13,0,5.0200000000000005,5.42,5.5200000000000005,5.58,5.63,5.67,5.7,5.73,5.78,176.47,176.09,175.91,175.73,175.57,175.42000000000002,175.27,175.12,174.85,27.32,26.98,26.810000000000002,26.6,26.41,26.22,26.02,25.84,25.45,N/A,N/A -2012,6,15,13,30,101560,100410,99300,81.07000000000001,0,4.23,4.46,4.5,4.51,4.5200000000000005,4.5200000000000005,4.51,4.51,4.5,167.17000000000002,166.77,166.55,166.33,166.15,165.98,165.81,165.64000000000001,165.33,27.44,27.11,26.94,26.740000000000002,26.55,26.36,26.17,25.98,25.61,N/A,N/A -2012,6,15,14,30,101590,100440,99330,81.49,0,3.88,4.11,4.15,4.17,4.18,4.18,4.18,4.17,4.15,166.31,165.31,164.77,164.25,163.79,163.34,162.9,162.51,161.69,27.5,27.16,26.990000000000002,26.79,26.6,26.41,26.21,26.03,25.650000000000002,N/A,N/A -2012,6,15,15,30,101590,100440,99320,82.72,0,3.75,3.95,3.99,4,4,4,4,4,3.99,159.23,159.41,159.61,159.79,159.95000000000002,160.11,160.27,160.42000000000002,160.76,27.48,27.14,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A -2012,6,15,16,30,101600,100450,99340,83.26,0,3.44,3.66,3.71,3.74,3.77,3.79,3.81,3.83,3.86,148.13,148.64000000000001,149.11,149.58,150.01,150.44,150.86,151.27,152.15,27.57,27.22,27.05,26.85,26.66,26.47,26.27,26.09,25.71,N/A,N/A -2012,6,15,17,30,101590,100440,99320,86.33,2.2,5.12,5.58,5.75,5.87,5.96,6.04,6.12,6.19,6.33,182.79,185.61,186.95000000000002,188.33,189.59,190.85,192.16,193.43,195.92000000000002,27.310000000000002,26.97,26.810000000000002,26.62,26.45,26.27,26.09,25.92,25.57,N/A,N/A -2012,6,15,18,30,101580,100430,99310,81.09,0,5.25,5.62,5.69,5.72,5.73,5.74,5.74,5.73,5.72,185.47,185.31,185.24,185.15,185.08,185,184.93,184.86,184.71,27.72,27.38,27.21,27.01,26.82,26.63,26.44,26.25,25.87,N/A,N/A -2012,6,15,19,30,101560,100420,99300,80.17,0,4.8500000000000005,5.18,5.24,5.2700000000000005,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3100000000000005,182.55,182.51,182.44,182.38,182.32,182.26,182.20000000000002,182.14000000000001,182.03,27.76,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.91,N/A,N/A -2012,6,15,20,30,101530,100380,99270,77.86,0,5.55,5.97,6.07,6.13,6.16,6.19,6.21,6.23,6.26,169,168.99,168.94,168.89000000000001,168.84,168.8,168.75,168.70000000000002,168.62,27.87,27.53,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.02,N/A,N/A -2012,6,15,21,30,101540,100390,99280,76.81,0,6.140000000000001,6.61,6.71,6.75,6.78,6.79,6.8,6.8,6.79,157.49,157.5,157.58,157.63,157.67000000000002,157.70000000000002,157.72,157.75,157.79,27.830000000000002,27.5,27.330000000000002,27.13,26.94,26.75,26.55,26.37,25.98,N/A,N/A -2012,6,15,22,30,101500,100350,99240,76.57000000000001,0,5.84,6.28,6.36,6.390000000000001,6.41,6.41,6.41,6.4,6.37,159.36,159.31,159.32,159.32,159.31,159.3,159.28,159.26,159.21,27.78,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,6,15,23,30,101440,100290,99180,77.96000000000001,0,6.13,6.640000000000001,6.74,6.79,6.8100000000000005,6.83,6.83,6.83,6.8100000000000005,170.11,170.02,169.95000000000002,169.89000000000001,169.84,169.79,169.75,169.71,169.63,27.650000000000002,27.32,27.150000000000002,26.95,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A -2012,6,16,0,30,101470,100320,99210,74.19,0,4.86,5.26,5.36,5.41,5.45,5.48,5.51,5.53,5.5600000000000005,170.67000000000002,170.5,170.46,170.4,170.35,170.31,170.25,170.19,170.06,27.740000000000002,27.43,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.3,25.92,N/A,N/A -2012,6,16,1,30,101510,100360,99250,71.79,0,5.48,5.95,6.0600000000000005,6.12,6.17,6.2,6.23,6.26,6.3,146.6,146.9,147.06,147.19,147.29,147.38,147.46,147.53,147.64000000000001,27.8,27.490000000000002,27.32,27.13,26.94,26.75,26.560000000000002,26.38,26,N/A,N/A -2012,6,16,2,30,101490,100340,99230,74.43,0,6.98,7.65,7.8100000000000005,7.9,7.97,8.02,8.06,8.09,8.13,146.67000000000002,146.54,146.44,146.34,146.24,146.14000000000001,146.05,145.96,145.77,27.71,27.38,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A -2012,6,16,3,30,101500,100350,99230,67.86,0,6.62,7.28,7.44,7.53,7.6000000000000005,7.66,7.7,7.74,7.8100000000000005,142.04,142.24,142.32,142.38,142.44,142.49,142.55,142.6,142.70000000000002,27.990000000000002,27.69,27.52,27.32,27.14,26.95,26.75,26.57,26.19,N/A,N/A -2012,6,16,4,30,101460,100300,99190,66.33,0,7.42,8.14,8.290000000000001,8.38,8.44,8.49,8.52,8.55,8.6,151.95000000000002,151.75,151.67000000000002,151.59,151.53,151.46,151.39000000000001,151.33,151.20000000000002,27.990000000000002,27.68,27.51,27.32,27.13,26.95,26.75,26.57,26.19,N/A,N/A -2012,6,16,5,30,101510,100360,99250,68.83,0,7.71,8.42,8.57,8.65,8.69,8.72,8.73,8.74,8.73,146.29,146.39000000000001,146.52,146.64000000000001,146.75,146.86,146.96,147.06,147.24,27.87,27.57,27.41,27.21,27.03,26.84,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,6,16,6,30,101510,100360,99250,71.67,0,6.86,7.5200000000000005,7.66,7.74,7.79,7.82,7.84,7.86,7.87,153.12,153.01,153.01,153.01,153.01,153.02,153.04,153.06,153.09,27.78,27.46,27.28,27.080000000000002,26.89,26.7,26.5,26.32,25.93,N/A,N/A -2012,6,16,7,30,101530,100380,99270,60.97,0,6.8,7.42,7.57,7.65,7.72,7.78,7.82,7.86,7.930000000000001,149.11,149.54,149.70000000000002,149.84,149.96,150.07,150.18,150.27,150.44,28.2,27.93,27.77,27.580000000000002,27.39,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,6,16,8,30,101570,100420,99300,63.93,0,6.05,6.6000000000000005,6.71,6.7700000000000005,6.8100000000000005,6.84,6.86,6.87,6.88,145.8,146.06,146.12,146.18,146.23,146.27,146.31,146.35,146.44,28.17,27.88,27.72,27.53,27.34,27.150000000000002,26.96,26.78,26.39,N/A,N/A -2012,6,16,9,30,101590,100440,99320,60.83,0,5,5.39,5.48,5.5200000000000005,5.55,5.58,5.6000000000000005,5.61,5.64,149.97,150.11,150.17000000000002,150.20000000000002,150.23,150.25,150.26,150.27,150.28,28.26,27.990000000000002,27.830000000000002,27.63,27.45,27.26,27.07,26.89,26.51,N/A,N/A -2012,6,16,10,30,101610,100460,99340,67.18,0,5.08,5.5200000000000005,5.6000000000000005,5.63,5.66,5.66,5.67,5.66,5.65,153.45000000000002,153.31,153.31,153.3,153.27,153.25,153.21,153.18,153.09,27.98,27.68,27.52,27.32,27.13,26.94,26.75,26.560000000000002,26.18,N/A,N/A -2012,6,16,11,30,101620,100470,99350,65.19,0,4.17,4.5200000000000005,4.6000000000000005,4.65,4.7,4.74,4.7700000000000005,4.8,4.86,144.88,145.05,145.13,145.22,145.29,145.36,145.42000000000002,145.49,145.61,27.94,27.64,27.47,27.28,27.09,26.900000000000002,26.7,26.52,26.13,N/A,N/A -2012,6,16,12,30,101670,100520,99400,71.82000000000001,0,4.2700000000000005,4.55,4.6000000000000005,4.61,4.62,4.63,4.62,4.62,4.61,145.41,145.65,145.74,145.81,145.88,145.93,145.97,146.02,146.1,27.63,27.310000000000002,27.14,26.94,26.75,26.560000000000002,26.37,26.18,25.8,N/A,N/A -2012,6,16,13,30,101700,100550,99430,70.2,0,3.65,3.84,3.85,3.83,3.8200000000000003,3.8000000000000003,3.7800000000000002,3.7600000000000002,3.71,138.74,138.67000000000002,138.62,138.56,138.51,138.45000000000002,138.39000000000001,138.33,138.20000000000002,27.61,27.28,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.76,N/A,N/A -2012,6,16,14,30,101760,100600,99480,71.54,0,2.92,3.04,3.0500000000000003,3.04,3.02,3.0100000000000002,2.99,2.98,2.94,135.55,135.12,135.02,134.91,134.81,134.71,134.6,134.49,134.27,27.53,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.68,N/A,N/A -2012,6,16,15,30,101780,100620,99510,76.69,0,2.94,3.0700000000000003,3.09,3.09,3.09,3.09,3.08,3.0700000000000003,3.06,124.73,124.57000000000001,124.47,124.36,124.26,124.17,124.08,123.99000000000001,123.8,27.41,27.07,26.89,26.69,26.5,26.310000000000002,26.11,25.92,25.54,N/A,N/A -2012,6,16,16,30,101750,100600,99480,75.06,0,2.07,2.19,2.21,2.22,2.23,2.24,2.25,2.2600000000000002,2.27,127.44,127.28,127.2,127.12,127.05,126.98,126.9,126.81,126.67,27.51,27.16,26.990000000000002,26.78,26.6,26.41,26.21,26.02,25.64,N/A,N/A -2012,6,16,17,30,101760,100610,99490,77.37,0,1.97,2.0300000000000002,2.04,2.0300000000000002,2.0300000000000002,2.02,2.0100000000000002,2.0100000000000002,1.99,121.35000000000001,120.74000000000001,120.5,120.27,120.07000000000001,119.89,119.71000000000001,119.55,119.22,27.51,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.19,26.01,25.62,N/A,N/A -2012,6,16,18,30,101750,100600,99480,75.71000000000001,0,3.0700000000000003,3.24,3.27,3.29,3.31,3.3200000000000003,3.33,3.34,3.35,99.15,98.91,98.91,98.91,98.9,98.89,98.89,98.87,98.87,27.68,27.32,27.14,26.94,26.75,26.560000000000002,26.36,26.18,25.8,N/A,N/A -2012,6,16,19,30,101770,100620,99500,80.34,0,4.7700000000000005,4.93,4.93,4.9,4.8500000000000005,4.8,4.75,4.7,4.58,93.71000000000001,92.62,91.94,91.28,90.68,90.09,89.41,88.72,86.99,27.2,26.86,26.7,26.52,26.35,26.18,26.01,25.84,25.52,N/A,N/A -2012,6,16,20,30,101710,100560,99440,76.12,0,5.24,5.51,5.53,5.51,5.49,5.45,5.4,5.3500000000000005,5.21,87.36,87.69,88,88.34,88.69,89.05,89.48,89.9,91.07000000000001,26.7,26.32,26.14,25.95,25.77,25.580000000000002,25.400000000000002,25.22,24.88,N/A,N/A -2012,6,16,21,30,101670,100510,99400,79.14,0,3.69,3.9,3.95,3.97,3.99,4.01,4.0200000000000005,4.03,4.05,108.69,108.55,108.55,108.51,108.45,108.38,108.27,108.16,107.77,26.77,26.41,26.23,26.03,25.84,25.66,25.47,25.29,24.92,N/A,N/A -2012,6,16,22,30,101600,100450,99330,78.38,0,4.96,5.2700000000000005,5.32,5.34,5.36,5.37,5.37,5.37,5.38,106,106.07000000000001,106.11,106.15,106.19,106.22,106.26,106.3,106.36,27.01,26.650000000000002,26.47,26.27,26.09,25.900000000000002,25.71,25.53,25.16,N/A,N/A -2012,6,16,23,30,101580,100430,99320,78.71000000000001,0,5.48,5.91,6.0200000000000005,6.08,6.13,6.16,6.19,6.22,6.26,89.29,89.2,89.14,89.09,89.04,88.98,88.93,88.88,88.77,27.25,26.900000000000002,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A -2012,6,17,0,30,101550,100400,99280,80.65,0,6.2,6.67,6.76,6.8,6.82,6.83,6.83,6.83,6.8100000000000005,98.08,98.06,98.18,98.32000000000001,98.46000000000001,98.59,98.73,98.86,99.13,27.11,26.740000000000002,26.560000000000002,26.36,26.16,25.98,25.78,25.59,25.21,N/A,N/A -2012,6,17,1,30,101560,100410,99290,82.93,0,5.62,6.0200000000000005,6.12,6.17,6.2,6.22,6.24,6.25,6.26,103.69,104.16,104.4,104.61,104.79,104.96000000000001,105.11,105.26,105.56,26.8,26.43,26.25,26.05,25.86,25.67,25.47,25.29,24.91,N/A,N/A -2012,6,17,2,30,101530,100380,99260,81.79,0,6.46,6.97,7.09,7.16,7.2,7.23,7.25,7.2700000000000005,7.29,107.43,107.57000000000001,107.67,107.76,107.86,107.94,108.03,108.11,108.27,27.13,26.77,26.6,26.39,26.2,26.02,25.82,25.64,25.26,N/A,N/A -2012,6,17,3,30,101530,100380,99260,84.85000000000001,0,7.17,7.78,7.930000000000001,8.02,8.08,8.120000000000001,8.16,8.19,8.22,117.71000000000001,117.46000000000001,117.32000000000001,117.16,117.02,116.9,116.77,116.65,116.4,26.98,26.6,26.42,26.21,26.02,25.82,25.62,25.44,25.05,N/A,N/A -2012,6,17,4,30,101500,100350,99230,84.81,0,7.09,7.66,7.79,7.8500000000000005,7.890000000000001,7.92,7.930000000000001,7.930000000000001,7.930000000000001,116.83,117.16,117.29,117.4,117.49000000000001,117.56,117.63,117.69,117.79,27.13,26.76,26.580000000000002,26.38,26.19,25.990000000000002,25.8,25.61,25.23,N/A,N/A -2012,6,17,5,30,101510,100360,99250,82.03,0,7.21,7.82,7.94,8.01,8.040000000000001,8.05,8.06,8.06,8.040000000000001,119.58,119.49000000000001,119.45,119.41,119.39,119.37,119.35000000000001,119.34,119.33,27.150000000000002,26.79,26.61,26.41,26.22,26.03,25.830000000000002,25.650000000000002,25.26,N/A,N/A -2012,6,17,6,30,101550,100400,99280,80.78,0,6.390000000000001,7.01,7.16,7.26,7.33,7.38,7.41,7.44,7.48,116.77,117.38,117.57000000000001,117.7,117.8,117.88,117.94,117.99000000000001,118.04,27.36,27,26.82,26.62,26.43,26.240000000000002,26.04,25.85,25.46,N/A,N/A -2012,6,17,7,30,101560,100410,99300,79.67,0,6.13,6.61,6.72,6.78,6.82,6.8500000000000005,6.87,6.890000000000001,6.91,114.04,114.14,114.24000000000001,114.34,114.42,114.51,114.59,114.66,114.79,27.330000000000002,26.98,26.8,26.6,26.41,26.22,26.02,25.84,25.45,N/A,N/A -2012,6,17,8,30,101560,100400,99290,76.93,0,5.55,5.94,6.01,6.05,6.07,6.08,6.08,6.09,6.08,97.52,97.65,97.78,97.9,98.02,98.14,98.25,98.36,98.59,27.400000000000002,27.060000000000002,26.89,26.69,26.5,26.310000000000002,26.12,25.93,25.55,N/A,N/A -2012,6,17,9,30,101580,100420,99310,73.79,0,5.7,6.15,6.25,6.3100000000000005,6.36,6.4,6.43,6.45,6.5,103.45,103.8,104.02,104.21000000000001,104.38,104.54,104.68,104.81,105.05,27.54,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.69,N/A,N/A -2012,6,17,10,30,101570,100420,99300,71.88,0,6.140000000000001,6.61,6.69,6.73,6.75,6.76,6.76,6.75,6.74,97.12,96.78,96.58,96.4,96.24000000000001,96.08,95.92,95.78,95.49,27.48,27.14,26.96,26.77,26.57,26.38,26.19,26,25.61,N/A,N/A -2012,6,17,11,30,101580,100430,99310,71.22,0,6.08,6.51,6.58,6.6000000000000005,6.61,6.61,6.6000000000000005,6.59,6.5600000000000005,85.77,86.17,86.34,86.48,86.59,86.7,86.79,86.88,87.05,27.54,27.2,27.03,26.830000000000002,26.64,26.45,26.25,26.07,25.68,N/A,N/A -2012,6,17,12,30,101610,100450,99340,63.35,0,6.2700000000000005,6.78,6.87,6.92,6.95,6.96,6.97,6.98,6.98,82.73,82.93,82.97,82.99,83,83,83,83,83,27.830000000000002,27.51,27.34,27.150000000000002,26.96,26.77,26.57,26.39,26,N/A,N/A -2012,6,17,13,30,101640,100480,99370,61.61,0,6.29,6.82,6.92,6.97,7.01,7.03,7.04,7.05,7.05,72.28,72.37,72.44,72.51,72.58,72.64,72.7,72.76,72.89,27.830000000000002,27.53,27.36,27.16,26.97,26.79,26.59,26.41,26.02,N/A,N/A -2012,6,17,14,30,101620,100460,99350,57.04,0,6.7700000000000005,7.4,7.5200000000000005,7.59,7.63,7.66,7.67,7.68,7.68,65.71000000000001,65.6,65.62,65.66,65.69,65.73,65.78,65.82000000000001,65.9,27.88,27.57,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.060000000000002,N/A,N/A -2012,6,17,15,30,101610,100450,99330,56.53,0,7.32,8,8.14,8.2,8.24,8.26,8.27,8.27,8.24,60.89,60.870000000000005,60.94,61.02,61.1,61.17,61.26,61.33,61.5,27.85,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.02,N/A,N/A -2012,6,17,16,30,101620,100460,99340,61.58,0,7.57,8.19,8.3,8.35,8.38,8.4,8.4,8.4,8.370000000000001,74.59,74.9,75.07000000000001,75.25,75.4,75.56,75.7,75.84,76.13,27.38,27.03,26.85,26.66,26.46,26.27,26.080000000000002,25.89,25.51,N/A,N/A -2012,6,17,17,30,101580,100420,99300,63.82,0,6.55,6.99,7.0600000000000005,7.07,7.07,7.07,7.0600000000000005,7.04,7,72.58,73.28,73.64,73.97,74.28,74.56,74.85000000000001,75.11,75.67,27.07,26.71,26.54,26.34,26.150000000000002,25.96,25.77,25.580000000000002,25.2,N/A,N/A -2012,6,17,18,30,101530,100370,99250,64.59,0,6.04,6.51,6.62,6.68,6.72,6.76,6.79,6.82,6.86,87.62,87.54,87.5,87.44,87.39,87.33,87.25,87.18,87.01,27,26.63,26.45,26.26,26.07,25.88,25.69,25.51,25.13,N/A,N/A -2012,6,17,19,30,101490,100330,99210,66.39,0,6.01,6.49,6.58,6.640000000000001,6.69,6.72,6.74,6.7700000000000005,6.8,96.79,96.03,95.68,95.34,95.02,94.73,94.42,94.15,93.55,27.060000000000002,26.68,26.5,26.310000000000002,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A -2012,6,17,20,30,101410,100250,99140,68.33,0,6.17,6.640000000000001,6.73,6.7700000000000005,6.8,6.82,6.83,6.84,6.8500000000000005,96.73,96.37,96.17,95.95,95.75,95.55,95.35000000000001,95.17,94.8,27.07,26.7,26.52,26.330000000000002,26.14,25.96,25.77,25.59,25.22,N/A,N/A -2012,6,17,21,30,101350,100200,99080,67.77,0,6.05,6.5,6.6000000000000005,6.640000000000001,6.68,6.7,6.71,6.72,6.74,95.56,95.76,95.81,95.85000000000001,95.88,95.9,95.91,95.91,95.91,27.28,26.94,26.76,26.57,26.38,26.19,26,25.82,25.44,N/A,N/A -2012,6,17,22,30,101300,100150,99040,68.64,0,3.2600000000000002,3.48,3.54,3.58,3.61,3.64,3.68,3.7,3.7800000000000002,101.58,101.45,101.36,101.26,101.15,101.04,100.91,100.78,100.43,27.3,26.96,26.79,26.59,26.400000000000002,26.21,26.02,25.84,25.46,N/A,N/A -2012,6,17,23,30,101270,100120,99010,72.21000000000001,0,4.0200000000000005,4.3100000000000005,4.39,4.43,4.48,4.5200000000000005,4.55,4.59,4.66,96.55,96.35000000000001,96.23,96.09,95.97,95.85000000000001,95.72,95.59,95.33,27.28,26.94,26.76,26.560000000000002,26.38,26.19,25.990000000000002,25.810000000000002,25.43,N/A,N/A -2012,6,18,0,30,101230,100080,98960,75.32000000000001,0,4.03,4.32,4.39,4.44,4.48,4.5200000000000005,4.55,4.57,4.63,90.24,90.15,90.13,90.11,90.09,90.06,90.03,90.01,89.95,27.27,26.93,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.42,N/A,N/A -2012,6,18,1,30,101180,100040,98920,77.34,0,5.38,5.79,5.88,5.94,5.98,6.01,6.03,6.05,6.08,92.28,92.16,92.11,92.06,92.02,91.98,91.94,91.9,91.82000000000001,27.35,26.990000000000002,26.82,26.62,26.43,26.240000000000002,26.04,25.86,25.47,N/A,N/A -2012,6,18,2,30,101140,99990,98880,76.54,0,5.22,5.57,5.63,5.66,5.67,5.68,5.69,5.69,5.69,97.14,96.3,95.82000000000001,95.35000000000001,94.91,94.5,94.09,93.71000000000001,92.91,27.29,26.94,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A -2012,6,18,3,30,101130,99980,98870,80.46000000000001,0,6.15,6.62,6.72,6.78,6.8100000000000005,6.84,6.8500000000000005,6.86,6.88,95.33,94.98,94.82000000000001,94.68,94.56,94.46000000000001,94.34,94.23,94.01,27.17,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.86,25.67,25.29,N/A,N/A -2012,6,18,4,30,101100,99950,98840,79.54,0,6.18,6.68,6.79,6.86,6.9,6.93,6.95,6.97,6.99,107.88,107.89,107.89,107.89,107.89,107.91,107.92,107.94,107.97,27.18,26.82,26.64,26.44,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,6,18,5,30,101060,99920,98800,82.73,0,6.19,6.63,6.74,6.79,6.83,6.86,6.88,6.9,6.93,115.27,115.23,115.3,115.39,115.48,115.57000000000001,115.68,115.78,116,27.1,26.740000000000002,26.560000000000002,26.35,26.16,25.97,25.78,25.59,25.21,N/A,N/A -2012,6,18,6,30,101070,99920,98810,83.83,0,6.65,7.15,7.25,7.3100000000000005,7.34,7.36,7.37,7.37,7.37,130.55,130.9,131,131.09,131.16,131.24,131.3,131.37,131.48,26.73,26.330000000000002,26.150000000000002,25.94,25.740000000000002,25.55,25.35,25.17,24.78,N/A,N/A -2012,6,18,7,30,101050,99900,98790,83.35000000000001,0,5.8,6.21,6.3,6.3500000000000005,6.38,6.4,6.41,6.43,6.44,144.96,145.27,145.4,145.53,145.65,145.75,145.86,145.96,146.14000000000001,27.01,26.63,26.45,26.25,26.060000000000002,25.87,25.67,25.48,25.1,N/A,N/A -2012,6,18,8,30,101020,99870,98760,82.58,0,7.37,7.97,8.09,8.15,8.18,8.19,8.19,8.18,8.14,180.96,180.96,181,181.07,181.13,181.20000000000002,181.29,181.37,181.57,27.2,26.830000000000002,26.650000000000002,26.45,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,6,18,9,30,101030,99880,98770,82.18,0,5.83,6.2700000000000005,6.36,6.41,6.45,6.47,6.49,6.5,6.5200000000000005,181.92000000000002,181.75,181.62,181.49,181.36,181.24,181.12,181,180.75,27.150000000000002,26.78,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.64,25.26,N/A,N/A -2012,6,18,10,30,101040,99900,98780,79.71000000000001,0,6.3100000000000005,6.7700000000000005,6.88,6.92,6.96,6.97,6.98,6.99,6.99,208.36,208.08,207.88,207.68,207.49,207.3,207.1,206.92000000000002,206.54,27.19,26.830000000000002,26.66,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A -2012,6,18,11,30,101010,99860,98750,79.35000000000001,0,4.84,5.15,5.2,5.23,5.24,5.24,5.24,5.24,5.23,214.18,214.16,214.04,213.92000000000002,213.81,213.70000000000002,213.58,213.47,213.22,27.09,26.73,26.55,26.35,26.16,25.97,25.77,25.59,25.21,N/A,N/A -2012,6,18,12,30,101040,99900,98790,80.5,0,4.05,4.2700000000000005,4.3100000000000005,4.32,4.33,4.33,4.33,4.33,4.33,201.5,201.66,201.68,201.70000000000002,201.73000000000002,201.74,201.76,201.77,201.81,27.05,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A -2012,6,18,13,30,101110,99960,98840,91.08,5.1000000000000005,10.47,11.09,11.040000000000001,10.83,10.6,10.32,10.01,9.71,9.05,140.81,140.98,141.34,141.88,142.43,143.01,143.68,144.34,145.83,25.240000000000002,24.79,24.63,24.47,24.330000000000002,24.19,24.05,23.92,23.63,N/A,N/A -2012,6,18,14,30,101160,100000,98880,82.79,30,3.23,3.31,3.29,3.27,3.25,3.22,3.16,3.09,2.7600000000000002,127.84,132.26,134.95,137.89000000000001,141.06,144.3,147.81,151.01,156.17000000000002,24.96,24.57,24.41,24.25,24.1,23.98,23.88,23.8,23.650000000000002,N/A,N/A -2012,6,18,15,30,101140,99980,98850,88.79,39.900000000000006,3.92,3.85,3.69,3.5,3.37,3.2800000000000002,3.45,3.65,4.18,90.38,90.81,92.22,94.47,102.48,112.25,119.26,125.41,133.41,23.72,23.35,23.240000000000002,23.16,23.22,23.32,23.36,23.38,23.19,N/A,N/A -2012,6,18,16,30,101200,100040,98930,81.16,2.2,4.5200000000000005,4.91,5.01,5.09,5.15,5.2,5.24,5.28,5.33,142.73,144.52,145.08,145.55,145.94,146.28,146.59,146.86,147.33,26.16,25.77,25.59,25.38,25.19,25,24.8,24.62,24.240000000000002,N/A,N/A -2012,6,18,17,30,101140,99990,98870,86.68,0.4,6.33,6.75,6.84,6.890000000000001,6.92,6.94,6.96,6.98,7.05,155.48,155.29,155.16,155.04,154.92000000000002,154.8,154.64000000000001,154.5,154.12,26,25.580000000000002,25.400000000000002,25.2,25.02,24.84,24.650000000000002,24.48,24.14,N/A,N/A -2012,6,18,18,30,101170,100020,98900,89.11,4.4,8.11,8.61,8.68,8.69,8.67,8.65,8.6,8.56,8.46,147.57,148.22,148.77,149.3,149.81,150.28,150.78,151.23,152.23,25.55,25.09,24.900000000000002,24.7,24.52,24.34,24.150000000000002,23.98,23.63,N/A,N/A -2012,6,18,19,30,101190,100030,98910,83.7,0.4,8.33,8.93,9.03,9.05,9.06,9.05,9.03,9.01,8.94,175.26,174.63,174.3,173.95000000000002,173.6,173.25,172.88,172.52,171.71,25.76,25.3,25.11,24.900000000000002,24.71,24.52,24.32,24.14,23.77,N/A,N/A -2012,6,18,20,30,101160,100000,98890,80.2,0,7.11,7.63,7.74,7.78,7.8100000000000005,7.82,7.83,7.83,7.82,159.67000000000002,159.75,159.79,159.82,159.84,159.86,159.87,159.89000000000001,159.92000000000002,26.29,25.87,25.68,25.48,25.28,25.09,24.89,24.71,24.32,N/A,N/A -2012,6,18,21,30,101130,99980,98870,74.98,0,6.5,7.0200000000000005,7.140000000000001,7.22,7.28,7.33,7.37,7.4,7.46,156.03,156.01,156.04,156.05,156.07,156.07,156.07,156.08,156.07,26.82,26.45,26.27,26.060000000000002,25.87,25.69,25.490000000000002,25.310000000000002,24.93,N/A,N/A -2012,6,18,22,30,101080,99930,98810,77.73,0,7.55,8.19,8.33,8.41,8.47,8.51,8.540000000000001,8.56,8.59,146.85,146.88,146.95000000000002,147.03,147.09,147.16,147.23,147.3,147.44,26.990000000000002,26.6,26.42,26.22,26.02,25.830000000000002,25.63,25.45,25.060000000000002,N/A,N/A -2012,6,18,23,30,101110,99960,98850,83.62,0,8.64,9.43,9.59,9.67,9.72,9.74,9.76,9.76,9.75,141.64000000000001,141.67000000000002,141.70000000000002,141.73,141.77,141.8,141.84,141.87,141.94,26.900000000000002,26.5,26.310000000000002,26.1,25.91,25.72,25.51,25.330000000000002,24.94,N/A,N/A -2012,6,19,0,30,101100,99950,98840,77.86,0,8.620000000000001,9.41,9.6,9.700000000000001,9.78,9.83,9.86,9.88,9.92,154,153.87,153.84,153.82,153.79,153.77,153.75,153.74,153.71,27.13,26.75,26.57,26.37,26.17,25.98,25.78,25.6,25.21,N/A,N/A -2012,6,19,1,30,101070,99920,98810,83.08,0,9.15,10.07,10.28,10.42,10.51,10.58,10.64,10.68,10.75,150.67000000000002,150.64000000000001,150.61,150.58,150.56,150.53,150.51,150.48,150.44,27.09,26.71,26.52,26.32,26.13,25.94,25.740000000000002,25.560000000000002,25.18,N/A,N/A -2012,6,19,2,30,101080,99930,98820,81.92,0,8.94,9.72,9.88,9.950000000000001,9.99,10.01,10.01,10.01,9.98,146.09,146.13,146.14000000000001,146.12,146.1,146.07,146.02,145.98,145.85,27.18,26.8,26.61,26.42,26.22,26.03,25.84,25.66,25.28,N/A,N/A -2012,6,19,3,30,101110,99960,98850,84.93,0,9.55,10.46,10.65,10.74,10.790000000000001,10.82,10.83,10.83,10.81,135.98,136.06,136.12,136.17000000000002,136.21,136.24,136.27,136.3,136.36,27.03,26.63,26.44,26.240000000000002,26.05,25.85,25.66,25.47,25.09,N/A,N/A -2012,6,19,4,30,101110,99960,98850,75.44,0,10.88,11.93,12.16,12.27,12.35,12.4,12.43,12.450000000000001,12.46,149,148.9,148.89000000000001,148.89000000000001,148.91,148.93,148.96,148.98,149.06,27.35,26.98,26.79,26.59,26.39,26.2,26.01,25.82,25.43,N/A,N/A -2012,6,19,5,30,101090,99950,98840,80.2,0,9.05,9.93,10.13,10.25,10.33,10.39,10.43,10.46,10.5,155.42000000000002,155.4,155.4,155.4,155.41,155.43,155.44,155.46,155.51,27.27,26.89,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A -2012,6,19,6,30,101140,100000,98890,82.64,0,9.67,10.67,10.92,11.06,11.17,11.25,11.31,11.370000000000001,11.44,155.82,156.04,156.13,156.21,156.29,156.35,156.41,156.47,156.57,27.27,26.89,26.71,26.51,26.310000000000002,26.12,25.92,25.740000000000002,25.35,N/A,N/A -2012,6,19,7,30,101180,100030,98920,83.37,0,9.84,10.88,11.15,11.32,11.44,11.540000000000001,11.620000000000001,11.68,11.790000000000001,163.86,164.06,164.11,164.15,164.18,164.20000000000002,164.22,164.23,164.26,27.39,27.02,26.84,26.64,26.45,26.25,26.060000000000002,25.87,25.490000000000002,N/A,N/A -2012,6,19,8,30,101200,100060,98950,84.05,0,9.23,10.18,10.42,10.57,10.67,10.75,10.81,10.86,10.93,160.1,159.99,159.92000000000002,159.85,159.78,159.71,159.65,159.58,159.44,27.45,27.080000000000002,26.900000000000002,26.7,26.51,26.32,26.12,25.94,25.55,N/A,N/A -2012,6,19,9,30,101200,100060,98950,82.7,0,9.370000000000001,10.290000000000001,10.52,10.64,10.73,10.790000000000001,10.82,10.86,10.89,158.37,158.27,158.35,158.43,158.52,158.59,158.67000000000002,158.76,158.93,27.6,27.25,27.080000000000002,26.88,26.7,26.51,26.310000000000002,26.13,25.76,N/A,N/A -2012,6,19,10,30,101230,100080,98960,85.57000000000001,5.5,9.44,10.09,10.31,10.46,10.58,10.700000000000001,10.82,10.92,11.15,136.31,136.69,137.49,138.35,139.18,140.02,140.95000000000002,141.85,143.95000000000002,26.23,25.87,25.740000000000002,25.59,25.44,25.3,25.150000000000002,25.01,24.72,N/A,N/A -2012,6,19,11,30,101180,100030,98910,86.52,0.4,13.620000000000001,14.84,14.97,14.96,14.94,14.91,14.8,14.69,14.41,161.14000000000001,161.23,161.38,161.59,161.79,161.98,162.07,162.13,162.36,25.43,24.97,24.82,24.71,24.64,24.61,24.63,24.650000000000002,24.67,N/A,N/A -2012,6,19,12,30,101350,100190,99060,86.07000000000001,43.900000000000006,12.89,13.83,13.950000000000001,13.94,13.93,13.9,13.93,13.96,14.120000000000001,142.17000000000002,142.96,143.63,144.46,145.48,146.57,148.1,149.58,152.87,24.25,23.73,23.57,23.46,23.39,23.34,23.35,23.37,23.51,N/A,N/A -2012,6,19,13,30,101310,100150,99030,81.92,0,2.52,2.7800000000000002,2.9,3.02,3.16,3.3000000000000003,3.49,3.68,4.48,157.13,160.38,162.17000000000002,163.93,165.63,167.31,169.02,170.66,174.37,25.93,25.57,25.41,25.23,25.07,24.91,24.75,24.61,24.47,N/A,N/A -2012,6,19,14,30,101380,100230,99120,77.05,0,8.36,9.290000000000001,9.52,9.66,9.77,9.85,9.9,9.94,10,162.03,161.83,161.67000000000002,161.54,161.42000000000002,161.31,161.21,161.1,160.91,27.88,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.02,N/A,N/A -2012,6,19,15,30,101410,100270,99150,77.27,0,8.370000000000001,9.17,9.35,9.450000000000001,9.51,9.55,9.57,9.59,9.6,165.62,165.46,165.43,165.39000000000001,165.37,165.34,165.32,165.3,165.27,27.830000000000002,27.5,27.330000000000002,27.13,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A -2012,6,19,16,30,101440,100290,99180,80.59,0,9.09,9.96,10.16,10.28,10.35,10.39,10.42,10.44,10.450000000000001,160.09,160.26,160.33,160.37,160.39000000000001,160.41,160.42000000000002,160.42000000000002,160.43,27.19,26.810000000000002,26.62,26.42,26.22,26.03,25.830000000000002,25.650000000000002,25.26,N/A,N/A -2012,6,19,17,30,101420,100270,99150,83.25,0,10.55,11.53,11.73,11.83,11.88,11.91,11.91,11.91,11.870000000000001,171.22,171.17000000000002,171.18,171.19,171.21,171.22,171.23,171.24,171.27,26.78,26.35,26.16,25.96,25.77,25.580000000000002,25.38,25.2,24.830000000000002,N/A,N/A -2012,6,19,18,30,101490,100330,99210,88.08,11,8.09,8.790000000000001,8.93,9.01,9.06,9.09,9.11,9.13,9.14,148.03,148.22,148.3,148.39000000000001,148.48,148.56,148.67000000000002,148.76,149.04,25.55,25.080000000000002,24.89,24.68,24.490000000000002,24.3,24.11,23.93,23.56,N/A,N/A -2012,6,19,19,30,101430,100270,99140,87.01,2.9000000000000004,6.92,7.44,7.5600000000000005,7.65,7.7700000000000005,7.9,8.2,8.52,9.63,153.34,153.35,153.51,153.70000000000002,153.95000000000002,154.23,154.68,155.15,156.53,25.3,24.88,24.71,24.54,24.400000000000002,24.28,24.22,24.18,24.57,N/A,N/A -2012,6,19,20,30,101430,100270,99140,93.3,289.7,4.97,5.12,5.18,5.22,5.3500000000000005,5.48,5.7,5.9,6.29,248.23000000000002,246.11,243.35,240.11,235.81,231.48000000000002,227.34,223.61,218,24.560000000000002,24.240000000000002,24.18,24.16,24.22,24.29,24.330000000000002,24.36,24.29,N/A,N/A -2012,6,19,21,30,101470,100310,99180,84.58,0,3.54,3.63,3.64,3.65,3.7,3.7600000000000002,4.0600000000000005,4.43,4.8,231.65,229.67000000000002,228.22,226.20000000000002,221.79,215.66,207.31,198.23000000000002,185.88,25.12,24.73,24.57,24.39,24.26,24.150000000000002,24.13,24.14,24.05,N/A,N/A -2012,6,19,22,30,101410,100250,99130,90.77,0,3.45,3.58,3.5700000000000003,3.54,3.5,3.47,3.45,3.44,4.88,59.14,60.75,61.68,62.81,64.27,65.9,68.16,70.44,115.2,25.18,24.77,24.59,24.400000000000002,24.22,24.05,23.87,23.7,24.16,N/A,N/A -2012,6,19,23,30,101360,100210,99090,90.36,0,5.1000000000000005,5.37,5.42,5.43,5.43,5.42,5.41,5.4,5.37,110.54,111.27,111.86,112.48,113.09,113.68,114.35000000000001,114.99000000000001,116.54,26.240000000000002,25.84,25.66,25.46,25.27,25.080000000000002,24.89,24.71,24.34,N/A,N/A -2012,6,20,0,30,101370,100220,99100,83.74,0,8.21,8.950000000000001,9.13,9.22,9.28,9.32,9.34,9.36,9.370000000000001,134.08,134.3,134.39000000000001,134.48,134.55,134.61,134.69,134.75,134.91,27.37,27,26.82,26.62,26.43,26.240000000000002,26.04,25.85,25.47,N/A,N/A -2012,6,20,1,30,101330,100180,99060,81.9,0,8.81,9.790000000000001,10.03,10.18,10.3,10.38,10.450000000000001,10.5,10.58,135.19,134.84,134.76,134.7,134.64000000000001,134.6,134.57,134.54,134.5,27.490000000000002,27.13,26.95,26.75,26.560000000000002,26.37,26.17,25.98,25.59,N/A,N/A -2012,6,20,2,30,101340,100190,99080,81.5,0,9.46,10.48,10.74,10.89,11,11.09,11.15,11.200000000000001,11.28,135.91,135.93,135.92000000000002,135.89000000000001,135.87,135.84,135.82,135.78,135.72,27.62,27.27,27.09,26.89,26.7,26.5,26.310000000000002,26.12,25.740000000000002,N/A,N/A -2012,6,20,3,30,101330,100180,99070,80.18,0,9.78,10.76,11.01,11.16,11.26,11.34,11.4,11.450000000000001,11.53,144.35,144.04,143.9,143.77,143.65,143.54,143.44,143.34,143.15,27.900000000000002,27.59,27.43,27.240000000000002,27.060000000000002,26.88,26.7,26.52,26.16,N/A,N/A -2012,6,20,4,30,101350,100190,99080,89.69,0,10.97,12.05,12.33,12.49,12.6,12.68,12.74,12.81,12.98,130.42000000000002,131.57,132.02,132.44,132.85,133.25,133.71,134.15,135.36,25.87,25.38,25.18,24.98,24.79,24.61,24.43,24.27,23.96,N/A,N/A -2012,6,20,5,30,101300,100150,99040,84.71000000000001,0,13.15,14.76,15.1,15.31,15.44,15.52,15.56,15.58,15.56,148.57,148.22,148.23,148.28,148.34,148.41,148.51,148.6,148.82,26.900000000000002,26.45,26.25,26.04,25.830000000000002,25.63,25.43,25.240000000000002,24.85,N/A,N/A -2012,6,20,6,30,101330,100180,99070,80.62,0,10.28,11.34,11.59,11.75,11.86,11.94,12,12.05,12.13,152.62,152.34,152.17000000000002,152,151.82,151.67000000000002,151.5,151.34,151.01,27.07,26.68,26.5,26.3,26.11,25.93,25.740000000000002,25.560000000000002,25.19,N/A,N/A -2012,6,20,7,30,101360,100210,99100,78.9,0,9.67,10.83,11.13,11.33,11.47,11.57,11.64,11.69,11.76,139.76,139.65,139.70000000000002,139.79,139.89000000000001,139.99,140.1,140.21,140.45000000000002,28.01,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.16,N/A,N/A -2012,6,20,8,30,101330,100180,99070,76.51,0,9.75,10.81,11.06,11.200000000000001,11.290000000000001,11.36,11.4,11.44,11.48,141.09,140.79,140.70000000000002,140.61,140.54,140.47,140.4,140.34,140.21,27.95,27.63,27.46,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A -2012,6,20,9,30,101350,100200,99090,78.85000000000001,0,8.870000000000001,9.82,10.05,10.200000000000001,10.31,10.39,10.44,10.49,10.55,138.41,138.4,138.45000000000002,138.5,138.55,138.6,138.65,138.70000000000002,138.82,27.84,27.5,27.32,27.12,26.93,26.740000000000002,26.54,26.35,25.96,N/A,N/A -2012,6,20,10,30,101360,100210,99100,79.35000000000001,0,7.68,8.370000000000001,8.51,8.59,8.63,8.66,8.68,8.69,8.69,147.94,147.64000000000001,147.47,147.29,147.11,146.94,146.75,146.58,146.20000000000002,27.650000000000002,27.32,27.14,26.95,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A -2012,6,20,11,30,101360,100210,99100,79.46000000000001,0,6.890000000000001,7.5600000000000005,7.73,7.84,7.930000000000001,7.99,8.05,8.09,8.17,142.72,142.37,142.26,142.17000000000002,142.09,142.03,141.98,141.94,141.88,27.77,27.45,27.28,27.080000000000002,26.89,26.7,26.51,26.32,25.94,N/A,N/A -2012,6,20,12,30,101380,100230,99120,78.89,0,7.24,7.92,8.07,8.16,8.22,8.27,8.3,8.33,8.36,140.92000000000002,141.32,141.53,141.73,141.91,142.08,142.24,142.4,142.70000000000002,27.77,27.44,27.27,27.07,26.88,26.69,26.5,26.310000000000002,25.93,N/A,N/A -2012,6,20,13,30,101410,100260,99140,81.84,5.5,8.15,8.82,8.96,9.01,9.040000000000001,9.040000000000001,9.02,8.99,8.91,147.13,146.31,145.81,145.33,144.89000000000001,144.47,144.04,143.62,142.65,26.28,25.86,25.67,25.48,25.29,25.11,24.92,24.75,24.400000000000002,N/A,N/A -2012,6,20,14,30,101480,100320,99190,93.03,59.300000000000004,5.91,6.34,6.44,6.51,6.5600000000000005,6.6000000000000005,6.65,6.7,6.86,175.67000000000002,174.72,174.26,173.78,173.28,172.78,172.12,171.47,169.06,24.88,24.43,24.25,24.05,23.87,23.7,23.53,23.37,23.07,N/A,N/A -2012,6,20,15,30,101450,100290,99170,81.78,0,7.59,8.16,8.28,8.33,8.36,8.370000000000001,8.370000000000001,8.36,8.33,165.46,165.43,165.42000000000002,165.42000000000002,165.43,165.45000000000002,165.49,165.52,165.64000000000001,26.28,25.86,25.67,25.46,25.27,25.080000000000002,24.88,24.7,24.32,N/A,N/A -2012,6,20,16,30,101540,100390,99270,81.89,0,6.17,6.67,6.78,6.8500000000000005,6.9,6.94,6.97,6.99,7.04,142.75,142.71,142.65,142.58,142.5,142.41,142.33,142.23,142,26.95,26.57,26.39,26.19,26,25.810000000000002,25.62,25.43,25.05,N/A,N/A -2012,6,20,17,30,101460,100300,99190,81.33,0,6.59,7.1000000000000005,7.21,7.26,7.29,7.3100000000000005,7.32,7.33,7.32,153.56,153.25,153.09,152.95000000000002,152.8,152.65,152.49,152.35,152,26.88,26.490000000000002,26.310000000000002,26.11,25.91,25.73,25.53,25.34,24.97,N/A,N/A -2012,6,20,18,30,101500,100340,99220,80.37,0,6.04,6.51,6.62,6.69,6.74,6.78,6.8100000000000005,6.84,6.890000000000001,149.08,149.19,149.17000000000002,149.14000000000001,149.1,149.06,149.01,148.96,148.84,26.84,26.45,26.27,26.07,25.88,25.69,25.5,25.32,24.94,N/A,N/A -2012,6,20,19,30,101470,100320,99200,79.7,0,4.98,5.33,5.4,5.44,5.47,5.49,5.51,5.53,5.5600000000000005,132.76,132.69,132.65,132.6,132.55,132.49,132.42000000000002,132.34,132.14000000000001,27.080000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.75,25.57,25.19,N/A,N/A -2012,6,20,20,30,101430,100280,99170,85.01,0,6.01,6.46,6.57,6.63,6.67,6.7,6.73,6.75,6.79,126.34,125.82000000000001,125.51,125.2,124.92,124.64,124.35000000000001,124.07000000000001,123.47,27.080000000000002,26.7,26.52,26.32,26.13,25.95,25.75,25.57,25.2,N/A,N/A -2012,6,20,21,30,101410,100260,99140,83.11,0,6.29,6.73,6.8,6.83,6.8500000000000005,6.86,6.86,6.86,6.86,126.48,126.18,125.98,125.77,125.54,125.31,125.03,124.76,124.06,26.75,26.36,26.18,25.98,25.79,25.61,25.42,25.240000000000002,24.88,N/A,N/A -2012,6,20,22,30,101410,100260,99150,81.31,0,6.83,7.47,7.65,7.7700000000000005,7.87,7.95,8.02,8.08,8.2,98.79,99.48,99.82000000000001,100.14,100.42,100.68,100.92,101.15,101.57000000000001,27.41,27.060000000000002,26.89,26.69,26.51,26.32,26.13,25.94,25.57,N/A,N/A -2012,6,20,23,30,101360,100210,99100,76.46000000000001,0,7.86,8.57,8.73,8.81,8.870000000000001,8.9,8.92,8.93,8.94,104.88,104.91,104.92,104.94,104.97,104.99000000000001,105.02,105.05,105.13,27.69,27.36,27.18,26.98,26.79,26.6,26.41,26.22,25.84,N/A,N/A -2012,6,21,0,30,101350,100200,99080,78.05,0,7.22,7.9,8.05,8.14,8.21,8.26,8.290000000000001,8.33,8.370000000000001,111.23,111.82000000000001,112.04,112.21000000000001,112.36,112.48,112.59,112.68,112.85000000000001,27.740000000000002,27.41,27.23,27.03,26.84,26.650000000000002,26.45,26.27,25.88,N/A,N/A -2012,6,21,1,30,101350,100200,99080,80.9,0,7.18,7.8100000000000005,7.94,8.01,8.06,8.08,8.1,8.11,8.120000000000001,121.60000000000001,121.27,121.08,120.92,120.79,120.66,120.54,120.42,120.19,27.560000000000002,27.21,27.04,26.84,26.650000000000002,26.46,26.26,26.080000000000002,25.69,N/A,N/A -2012,6,21,2,30,101350,100200,99090,87.2,0,8.78,9.48,9.6,9.64,9.65,9.63,9.61,9.58,9.49,117.16,116.99000000000001,116.95,116.9,116.85000000000001,116.8,116.75,116.7,116.58,26.86,26.46,26.28,26.09,25.900000000000002,25.72,25.54,25.37,25.02,N/A,N/A -2012,6,21,3,30,101360,100210,99100,81.12,0,7.28,7.930000000000001,8.1,8.19,8.27,8.33,8.370000000000001,8.41,8.47,119.91,119.93,119.97,120.01,120.06,120.10000000000001,120.14,120.18,120.27,27.07,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.17,N/A,N/A -2012,6,21,4,30,101340,100190,99080,81.38,0,6.71,7.25,7.3500000000000005,7.4,7.44,7.46,7.47,7.47,7.48,127.15,126.51,126.12,125.73,125.36,125.02,124.67,124.33,123.62,27.29,26.93,26.76,26.560000000000002,26.37,26.18,25.990000000000002,25.810000000000002,25.44,N/A,N/A -2012,6,21,5,30,101350,100200,99080,81.77,0,5.98,6.49,6.62,6.7,6.76,6.8100000000000005,6.8500000000000005,6.88,6.94,126.74000000000001,126.56,126.55,126.53,126.51,126.49000000000001,126.47,126.46000000000001,126.41,27.25,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A -2012,6,21,6,30,101360,100210,99100,81.12,0,6.140000000000001,6.62,6.72,6.7700000000000005,6.8,6.83,6.84,6.8500000000000005,6.87,115.05,115.38,115.60000000000001,115.84,116.06,116.29,116.52,116.75,117.22,27.44,27.09,26.91,26.71,26.52,26.330000000000002,26.13,25.95,25.560000000000002,N/A,N/A -2012,6,21,7,30,101340,100190,99080,81.42,0,7.4,8.03,8.17,8.24,8.290000000000001,8.31,8.33,8.34,8.33,120.41,120.56,120.65,120.73,120.81,120.88,120.94,121,121.13,27.45,27.09,26.92,26.72,26.52,26.34,26.14,25.95,25.57,N/A,N/A -2012,6,21,8,30,101380,100230,99120,79.38,0,5.73,6.22,6.34,6.42,6.49,6.54,6.59,6.63,6.7,122.12,122.46000000000001,122.67,122.85000000000001,123,123.13000000000001,123.24000000000001,123.34,123.52,27.62,27.28,27.1,26.91,26.72,26.53,26.34,26.16,25.77,N/A,N/A -2012,6,21,9,30,101390,100240,99130,80.74,4.4,5.3500000000000005,5.76,5.86,5.93,5.98,6.0200000000000005,6.0600000000000005,6.09,6.13,120.85000000000001,120.03,119.64,119.29,118.99000000000001,118.73,118.48,118.25,117.83,27.48,27.14,26.97,26.77,26.580000000000002,26.400000000000002,26.2,26.02,25.64,N/A,N/A -2012,6,21,10,30,101390,100240,99130,83.12,6.6000000000000005,4.89,5.24,5.32,5.37,5.41,5.44,5.47,5.49,5.53,110.12,109.8,109.52,109.21000000000001,108.94,108.69,108.44,108.21000000000001,107.77,27.21,26.86,26.68,26.490000000000002,26.3,26.11,25.91,25.73,25.35,N/A,N/A -2012,6,21,11,30,101420,100270,99150,76.85000000000001,0,4.48,4.92,5.04,5.13,5.2,5.26,5.3,5.34,5.39,91.94,91.45,91.38,91.35000000000001,91.36,91.39,91.45,91.52,91.71000000000001,27.57,27.240000000000002,27.07,26.88,26.69,26.5,26.310000000000002,26.13,25.740000000000002,N/A,N/A -2012,6,21,12,30,101440,100290,99170,77.24,0,5.58,6.03,6.13,6.19,6.22,6.25,6.26,6.2700000000000005,6.29,84.22,84.60000000000001,84.78,84.93,85.06,85.18,85.28,85.38,85.59,27.61,27.26,27.09,26.89,26.7,26.51,26.310000000000002,26.13,25.740000000000002,N/A,N/A -2012,6,21,13,30,101440,100290,99170,70.31,0,6.13,6.6000000000000005,6.68,6.71,6.73,6.73,6.73,6.73,6.71,80.22,80.13,80.01,79.87,79.74,79.62,79.49,79.37,79.14,27.92,27.6,27.43,27.23,27.04,26.85,26.66,26.48,26.09,N/A,N/A -2012,6,21,14,30,101510,100360,99240,70.26,0,6.47,7.0200000000000005,7.13,7.2,7.24,7.2700000000000005,7.29,7.3,7.32,82.21000000000001,81.86,81.76,81.66,81.59,81.52,81.45,81.39,81.28,27.97,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.52,26.14,N/A,N/A -2012,6,21,15,30,101550,100400,99290,65.27,0,6.1000000000000005,6.58,6.66,6.69,6.7,6.7,6.7,6.7,6.68,74.64,74.63,74.7,74.78,74.85000000000001,74.93,75.02,75.11,75.3,28.14,27.830000000000002,27.67,27.47,27.28,27.1,26.900000000000002,26.71,26.330000000000002,N/A,N/A -2012,6,21,16,30,101530,100380,99270,72,0,7.17,7.74,7.84,7.890000000000001,7.9,7.91,7.9,7.890000000000001,7.86,74.67,74.84,74.91,74.97,75.04,75.11,75.19,75.26,75.45,27.68,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.830000000000002,N/A,N/A -2012,6,21,17,30,101510,100360,99240,71.42,0,6.44,6.91,6.99,7.0200000000000005,7.04,7.04,7.03,7.03,6.99,69.04,69.18,69.3,69.41,69.51,69.61,69.7,69.78,69.96000000000001,27.53,27.18,27,26.810000000000002,26.61,26.42,26.23,26.04,25.66,N/A,N/A -2012,6,21,18,30,101490,100340,99220,68.18,0,5.29,5.62,5.66,5.66,5.64,5.62,5.58,5.55,5.46,73.44,73.22,73.16,73.07000000000001,72.97,72.85000000000001,72.7,72.55,72.04,27.66,27.34,27.17,26.98,26.8,26.62,26.43,26.26,25.92,N/A,N/A -2012,6,21,19,30,101440,100290,99170,60.94,0,6.18,6.67,6.76,6.8,6.83,6.8500000000000005,6.86,6.88,6.91,78.52,78.32000000000001,78.2,78.07000000000001,77.92,77.76,77.57000000000001,77.38,76.8,28.07,27.77,27.61,27.42,27.240000000000002,27.060000000000002,26.88,26.71,26.37,N/A,N/A -2012,6,21,20,30,101390,100240,99130,55.57,0,4.95,5.37,5.45,5.51,5.59,5.67,5.8100000000000005,5.97,6.88,90.25,89.85000000000001,89.57000000000001,89.28,88.94,88.58,88.05,87.49,85.47,28.32,28.05,27.89,27.71,27.54,27.37,27.21,27.07,26.900000000000002,N/A,N/A -2012,6,21,21,30,101340,100190,99080,61.120000000000005,0,5.18,5.57,5.64,5.67,5.7,5.73,5.78,5.82,6.1000000000000005,107.76,107.33,107.04,106.72,106.36,105.97,105.41,104.85000000000001,102.51,28.2,27.91,27.75,27.57,27.39,27.22,27.05,26.89,26.64,N/A,N/A -2012,6,21,22,30,101320,100170,99060,63.22,0,4.44,4.76,4.8100000000000005,4.84,4.86,4.87,4.9,4.92,5.03,122.05,121.71000000000001,121.47,121.2,120.91,120.61,120.19,119.77,118.21000000000001,28.19,27.900000000000002,27.740000000000002,27.560000000000002,27.38,27.21,27.03,26.87,26.580000000000002,N/A,N/A -2012,6,21,23,30,101290,100140,99030,62.96,0,4.49,4.83,4.88,4.91,4.94,4.96,5,5.04,5.22,126.98,126.58,126.3,125.98,125.63000000000001,125.24000000000001,124.7,124.16,121.92,28.3,28.02,27.86,27.67,27.490000000000002,27.32,27.13,26.96,26.66,N/A,N/A -2012,6,22,0,30,101260,100110,99000,67,0,3.31,3.54,3.5700000000000003,3.59,3.62,3.65,3.71,3.79,4.51,137.56,136.81,136.26,135.58,134.78,133.84,132.24,130.52,120.47,28.16,27.87,27.72,27.53,27.36,27.19,27.04,26.900000000000002,26.87,N/A,N/A -2012,6,22,1,30,101230,100080,98970,67.86,0,2.35,2.5,2.5300000000000002,2.5500000000000003,2.58,2.6,2.66,2.72,3.18,138.46,137.39000000000001,136.66,135.81,134.81,133.67000000000002,131.99,130.21,122.13,28.14,27.86,27.69,27.51,27.330000000000002,27.16,26.990000000000002,26.84,26.650000000000002,N/A,N/A -2012,6,22,2,30,101260,100110,99000,67.94,0,0.62,0.67,0.7000000000000001,0.72,0.76,0.8,0.9,1.02,2.93,138.6,136.27,134.47,132.46,130.21,127.73,124.08,119.89,102.12,28.18,27.88,27.72,27.53,27.35,27.17,27,26.84,26.900000000000002,N/A,N/A -2012,6,22,3,30,101240,100100,98980,67.93,0,0.75,0.76,0.74,0.72,0.7000000000000001,0.68,0.67,0.67,0.91,343.21,347,349.58,352.93,357.36,2.57,11.34,20.67,53.29,28.18,27.89,27.73,27.54,27.36,27.18,27,26.830000000000002,26.53,N/A,N/A -2012,6,22,4,30,101240,100090,98980,67.5,0,1.07,1.1,1.09,1.08,1.07,1.05,1.04,1.04,1.08,347.42,350.93,352.85,355.04,357.40000000000003,359.86,3.15,6.47,19.25,28.22,27.93,27.77,27.57,27.39,27.21,27.02,26.85,26.51,N/A,N/A -2012,6,22,5,30,101220,100080,98970,68.65,0,1.85,1.93,1.93,1.93,1.92,1.9100000000000001,1.9100000000000001,1.9000000000000001,1.94,356.29,357.82,358.88,0.14,1.53,3.06,5.19,7.390000000000001,15.69,28.16,27.87,27.71,27.52,27.34,27.16,26.97,26.8,26.48,N/A,N/A -2012,6,22,6,30,101250,100110,99000,68.05,0,2.35,2.49,2.5,2.5,2.5,2.5,2.5,2.5,2.52,1.99,2.68,3.14,3.7,4.3500000000000005,5.08,6.13,7.22,11.65,28.23,27.95,27.79,27.6,27.42,27.240000000000002,27.060000000000002,26.89,26.560000000000002,N/A,N/A -2012,6,22,7,30,101250,100100,98990,69.25,0,3.11,3.3000000000000003,3.31,3.3000000000000003,3.29,3.2800000000000002,3.27,3.2600000000000002,3.33,2.68,3.14,3.44,3.8000000000000003,4.2,4.63,5.3100000000000005,6.03,10.63,28.17,27.88,27.72,27.53,27.35,27.17,26.990000000000002,26.82,26.560000000000002,N/A,N/A -2012,6,22,8,30,101220,100070,98960,69.43,0,4.5,4.8100000000000005,4.8500000000000005,4.86,4.86,4.87,4.89,4.91,5.17,2.64,3.16,3.46,3.8000000000000003,4.22,4.7,5.47,6.2700000000000005,10.36,28.17,27.900000000000002,27.740000000000002,27.55,27.38,27.21,27.05,26.900000000000002,26.73,N/A,N/A -2012,6,22,9,30,101220,100070,98960,68.72,0,5.79,6.24,6.3,6.33,6.34,6.3500000000000005,6.38,6.42,6.7700000000000005,357.04,357.1,357.17,357.26,357.42,357.64,358.07,358.55,2.45,28.150000000000002,27.86,27.71,27.53,27.35,27.18,27.02,26.87,26.72,N/A,N/A -2012,6,22,10,30,101210,100070,98960,74.18,0,5.98,6.4,6.45,6.45,6.45,6.43,6.41,6.38,6.37,357.61,357.87,358.06,358.26,358.5,358.76,359.15000000000003,359.55,1.46,27.830000000000002,27.53,27.36,27.18,27,26.830000000000002,26.66,26.5,26.240000000000002,N/A,N/A -2012,6,22,11,30,101220,100070,98960,70.35000000000001,0,6.32,6.75,6.8,6.8100000000000005,6.8100000000000005,6.8,6.8100000000000005,6.82,7.07,4.9,4.96,5.0200000000000005,5.13,5.3100000000000005,5.55,6.13,6.76,11.39,27.72,27.41,27.25,27.07,26.900000000000002,26.740000000000002,26.580000000000002,26.44,26.34,N/A,N/A -2012,6,22,12,30,101230,100080,98960,71.54,0,7.65,8.2,8.28,8.28,8.27,8.25,8.23,8.22,8.32,6.84,7.0200000000000005,7.11,7.23,7.42,7.62,7.97,8.34,10.33,27.32,26.98,26.82,26.63,26.46,26.3,26.14,25.990000000000002,25.8,N/A,N/A -2012,6,22,13,30,101220,100070,98960,73.68,0,6.91,7.4,7.48,7.51,7.5200000000000005,7.53,7.53,7.54,7.68,17.53,17.79,17.96,18.150000000000002,18.37,18.6,18.92,19.240000000000002,20.73,27.07,26.71,26.54,26.35,26.17,26,25.830000000000002,25.66,25.41,N/A,N/A -2012,6,22,14,30,101240,100090,98970,74.25,0,6.4,6.8,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.84,6.8500000000000005,6.86,7.26,21.16,21.63,21.97,22.37,22.88,23.45,24.5,25.61,32.96,26.94,26.580000000000002,26.41,26.23,26.05,25.89,25.73,25.6,25.6,N/A,N/A -2012,6,22,15,30,101250,100100,98990,72.73,0,5.54,5.9,5.96,5.99,6.01,6.04,6.1000000000000005,6.18,6.93,30.64,31.080000000000002,31.37,31.73,32.19,32.71,33.68,34.730000000000004,41.18,27.34,27,26.84,26.66,26.490000000000002,26.32,26.17,26.03,26.060000000000002,N/A,N/A -2012,6,22,16,30,101260,100110,99000,71.38,0,4.48,4.75,4.8,4.82,4.84,4.86,4.9,4.95,5.39,32.83,33.3,33.59,33.93,34.31,34.75,35.410000000000004,36.1,39.37,27.73,27.41,27.25,27.060000000000002,26.88,26.71,26.53,26.37,26.2,N/A,N/A -2012,6,22,17,30,101240,100090,98980,68.82000000000001,0,3.5,3.75,3.81,3.86,3.93,4.0200000000000005,4.2,4.42,5.43,66.52,66.37,66.15,65.88,65.55,65.16,64.4,63.52,59.370000000000005,28.23,27.93,27.78,27.6,27.44,27.28,27.17,27.07,27.19,N/A,N/A -2012,6,22,18,30,101210,100060,98960,60.69,0,3.91,4.25,4.32,4.37,4.42,4.46,4.5,4.54,4.65,91.49,90.85000000000001,90.44,90.01,89.59,89.16,88.66,88.18,86.86,29.03,28.76,28.61,28.43,28.26,28.09,27.92,27.75,27.44,N/A,N/A -2012,6,22,19,30,101180,100030,98920,59.26,0,3.45,3.69,3.72,3.73,3.74,3.74,3.74,3.75,3.7600000000000002,114.52,114.10000000000001,113.78,113.45,113.12,112.79,112.4,112.02,110.99000000000001,29.05,28.76,28.6,28.41,28.22,28.04,27.85,27.67,27.310000000000002,N/A,N/A -2012,6,22,20,30,101120,99980,98870,55.800000000000004,0,2.43,2.6,2.63,2.65,2.66,2.67,2.67,2.68,2.69,126.52,125.51,124.84,124.18,123.55,122.94,122.28,121.63,120.15,29.35,29.080000000000002,28.92,28.73,28.55,28.37,28.18,28,27.63,N/A,N/A -2012,6,22,21,30,101070,99920,98820,56.26,0,1.2,1.25,1.23,1.22,1.21,1.19,1.18,1.17,1.1500000000000001,160.98,159.43,158.51,157.54,156.54,155.51,154.26,153.04,149.89000000000001,29.26,28.97,28.8,28.61,28.42,28.240000000000002,28.04,27.86,27.490000000000002,N/A,N/A -2012,6,22,22,30,101040,99900,98790,57.68,0,2.16,2.2600000000000002,2.25,2.23,2.22,2.2,2.18,2.17,2.13,166.8,166.06,165.54,164.95000000000002,164.31,163.64000000000001,162.76,161.88,159.24,29.13,28.830000000000002,28.66,28.47,28.29,28.1,27.91,27.73,27.37,N/A,N/A -2012,6,22,23,30,101020,99870,98770,58.26,0,1.6,1.6400000000000001,1.61,1.58,1.55,1.51,1.47,1.43,1.32,210.08,209.51,208.9,208.19,207.33,206.4,204.98000000000002,203.55,197.91,29.01,28.740000000000002,28.580000000000002,28.39,28.21,28.03,27.84,27.66,27.310000000000002,N/A,N/A -2012,6,23,0,30,101000,99860,98750,59.28,0,1.17,1.23,1.23,1.23,1.23,1.22,1.22,1.22,1.22,168.3,167.12,166.39000000000001,165.66,164.9,164.12,163.16,162.21,159.16,28.87,28.59,28.43,28.240000000000002,28.05,27.87,27.68,27.5,27.13,N/A,N/A -2012,6,23,1,30,100970,99830,98720,61.96,0,1.44,1.5,1.5,1.49,1.48,1.47,1.45,1.44,1.42,186.85,186.77,186.64000000000001,186.42000000000002,186.13,185.78,185.09,184.36,179.24,28.61,28.34,28.18,27.990000000000002,27.810000000000002,27.63,27.44,27.26,26.91,N/A,N/A -2012,6,23,2,30,100960,99820,98710,63.27,0,1.04,1.03,0.99,0.91,0.74,0.56,0.8200000000000001,1.45,1.87,241.15,240.44,239.28,237.15,222.93,205.84,175.04,117.68,105.31,28.46,28.21,28.060000000000002,27.900000000000002,27.79,27.7,27.72,27.79,27.55,N/A,N/A -2012,6,23,3,30,100970,99820,98720,62.910000000000004,0,1.95,1.96,1.8900000000000001,1.79,1.61,1.4000000000000001,1.46,1.6,1.94,311.52,313.90000000000003,315.88,318.85,328.08,340.13,7.67,41.32,51.21,28.48,28.23,28.09,27.93,27.82,27.73,27.73,27.76,27.68,N/A,N/A -2012,6,23,4,30,100970,99830,98720,63.4,0,1.34,1.36,1.34,1.32,1.37,1.49,1.75,2.09,2.47,338.62,342.06,345.05,349.53000000000003,2.25,21.2,35.78,49.64,56.86,28.5,28.25,28.11,27.95,27.88,27.86,27.830000000000002,27.8,27.69,N/A,N/A -2012,6,23,5,30,100960,99820,98710,63.92,0,1.31,1.4000000000000001,1.43,1.46,1.5,1.56,1.77,2.05,2.7800000000000002,46.72,48.27,49.13,50.29,52.01,54.17,59.160000000000004,65.45,75.52,28.490000000000002,28.22,28.07,27.900000000000002,27.73,27.580000000000002,27.47,27.38,27.37,N/A,N/A -2012,6,23,6,30,100990,99850,98740,64.45,0,1.93,2.04,2.05,2.06,2.08,2.1,2.18,2.2800000000000002,2.88,39.730000000000004,40.09,40.61,41.28,42.31,43.6,46.94,50.89,64.62,28.55,28.26,28.11,27.92,27.75,27.6,27.490000000000002,27.400000000000002,27.52,N/A,N/A -2012,6,23,7,30,100990,99850,98740,65.36,0,2.27,2.4,2.4,2.4,2.4,2.4,2.57,2.79,3.25,23.990000000000002,24.94,25.53,26.3,27.400000000000002,28.72,34.9,42.77,49.86,28.61,28.330000000000002,28.17,27.990000000000002,27.830000000000002,27.67,27.650000000000002,27.67,27.82,N/A,N/A -2012,6,23,8,30,101000,99860,98750,65.85,0,2.4,2.5300000000000002,2.54,2.5300000000000002,2.5300000000000002,2.52,2.52,2.52,2.72,11.85,12.540000000000001,12.98,13.52,14.18,14.94,16.21,17.56,27.86,28.68,28.400000000000002,28.240000000000002,28.05,27.88,27.71,27.54,27.39,27.3,N/A,N/A -2012,6,23,9,30,101010,99870,98760,67.57000000000001,0,3.25,3.45,3.47,3.47,3.46,3.46,3.45,3.44,3.42,10.33,10.57,10.73,10.9,11.09,11.3,11.59,11.88,12.99,28.63,28.34,28.18,27.990000000000002,27.810000000000002,27.63,27.45,27.27,26.95,N/A,N/A -2012,6,23,10,30,101020,99880,98770,65.72,0,4.76,5.04,5.05,5.03,5,4.97,4.92,4.87,4.75,358.51,358.42,358.37,358.32,358.29,358.27,358.3,358.35,359.42,28.34,28.04,27.88,27.7,27.52,27.35,27.18,27.02,26.79,N/A,N/A -2012,6,23,11,30,101020,99870,98770,69.34,0,5.15,5.4,5.4,5.36,5.33,5.29,5.3,5.32,5.38,4.71,5.0600000000000005,5.3100000000000005,5.61,6.0600000000000005,6.59,8.23,10.07,18.79,27.63,27.3,27.14,26.97,26.82,26.68,26.67,26.69,27.36,N/A,N/A -2012,6,23,12,30,101060,99910,98800,72.10000000000001,0,5.0600000000000005,5.34,5.37,5.37,5.3500000000000005,5.33,5.3100000000000005,5.29,5.29,23.79,24.2,24.46,24.76,25.1,25.46,25.96,26.46,28.86,27.48,27.13,26.96,26.78,26.59,26.42,26.240000000000002,26.07,25.810000000000002,N/A,N/A -2012,6,23,13,30,101080,99940,98830,75.61,0,5.47,5.75,5.76,5.73,5.7,5.66,5.6000000000000005,5.55,5.4,19.42,20.150000000000002,20.53,20.96,21.46,22.01,22.86,23.72,28.900000000000002,27.28,26.92,26.740000000000002,26.560000000000002,26.38,26.2,26.02,25.86,25.66,N/A,N/A -2012,6,23,14,30,101080,99930,98820,78.53,0,5.39,5.7,5.73,5.72,5.71,5.69,5.68,5.67,5.86,32.12,32.84,33.26,33.72,34.26,34.84,35.75,36.68,44.2,27.47,27.12,26.95,26.76,26.580000000000002,26.41,26.240000000000002,26.09,26.14,N/A,N/A -2012,6,23,15,30,101110,99960,98850,83,0,5.33,5.69,5.76,5.79,5.8100000000000005,5.83,5.8500000000000005,5.87,5.96,47.7,48.35,48.7,49.09,49.480000000000004,49.88,50.410000000000004,50.93,52.660000000000004,27.8,27.45,27.27,27.080000000000002,26.89,26.71,26.52,26.34,25.98,N/A,N/A -2012,6,23,16,30,101130,99990,98890,83.21000000000001,0,5.5200000000000005,5.97,6.05,6.11,6.140000000000001,6.17,6.19,6.21,6.24,56.33,56.64,56.83,57,57.160000000000004,57.32,57.47,57.61,57.94,28.28,27.93,27.76,27.560000000000002,27.37,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A -2012,6,23,17,30,101130,99990,98880,82.76,0,6.2700000000000005,6.79,6.9,6.96,7,7.03,7.0600000000000005,7.08,7.11,69.73,69.9,69.89,69.88,69.87,69.85000000000001,69.83,69.81,69.76,28.41,28.080000000000002,27.91,27.71,27.53,27.34,27.150000000000002,26.97,26.61,N/A,N/A -2012,6,23,18,30,101140,100000,98900,79.10000000000001,0,5.3100000000000005,5.7700000000000005,5.87,5.94,6,6.05,6.1000000000000005,6.15,6.2700000000000005,98.63,98.23,98.01,97.77,97.52,97.27,96.97,96.68,95.92,28.59,28.27,28.1,27.91,27.73,27.55,27.36,27.19,26.84,N/A,N/A -2012,6,23,19,30,101100,99960,98850,79.49,0,5.69,6.13,6.22,6.26,6.29,6.3100000000000005,6.32,6.33,6.36,105.96000000000001,105.62,105.42,105.19,104.97,104.74000000000001,104.46000000000001,104.18,103.41,28.580000000000002,28.25,28.080000000000002,27.89,27.71,27.53,27.34,27.16,26.810000000000002,N/A,N/A -2012,6,23,20,30,101080,99940,98840,77.95,0,4.88,5.25,5.32,5.3500000000000005,5.37,5.39,5.4,5.41,5.44,114.04,113.7,113.51,113.3,113.09,112.88,112.63,112.38,111.74000000000001,28.71,28.39,28.23,28.04,27.85,27.67,27.48,27.3,26.94,N/A,N/A -2012,6,23,21,30,101050,99910,98800,79,0,4.65,5,5.0600000000000005,5.09,5.11,5.12,5.13,5.14,5.15,125.32000000000001,124.96000000000001,124.76,124.56,124.34,124.12,123.87,123.63000000000001,122.97,28.68,28.36,28.19,27.990000000000002,27.810000000000002,27.62,27.43,27.25,26.88,N/A,N/A -2012,6,23,22,30,101060,99910,98810,80.24,0,6.22,6.76,6.86,6.91,6.94,6.96,6.96,6.97,6.97,121.63,121.39,121.25,121.11,120.98,120.85000000000001,120.71000000000001,120.57000000000001,120.26,28.66,28.35,28.18,27.990000000000002,27.8,27.62,27.43,27.240000000000002,26.87,N/A,N/A -2012,6,23,23,30,101080,99940,98840,79.69,0,4.45,4.8,4.87,4.9,4.92,4.93,4.94,4.95,4.96,122.37,122.25,122.19,122.09,121.98,121.85000000000001,121.69,121.52,121.05,28.6,28.3,28.14,27.95,27.76,27.580000000000002,27.39,27.21,26.84,N/A,N/A -2012,6,24,0,30,101070,99930,98830,80.99,0,4.8100000000000005,5.18,5.25,5.28,5.3,5.3100000000000005,5.32,5.32,5.33,122.42,122.56,122.51,122.44,122.36,122.27,122.16,122.05,121.74000000000001,28.51,28.2,28.04,27.85,27.66,27.47,27.28,27.1,26.73,N/A,N/A -2012,6,24,1,30,101090,99940,98840,79.78,0,2.58,2.79,2.83,2.86,2.88,2.91,2.92,2.94,2.98,108.96000000000001,109.24000000000001,109.3,109.34,109.37,109.39,109.41,109.42,109.44,28.48,28.18,28.01,27.82,27.63,27.44,27.25,27.07,26.69,N/A,N/A -2012,6,24,2,30,101100,99950,98850,80.31,0,3.19,3.4,3.43,3.45,3.46,3.48,3.49,3.5100000000000002,3.5500000000000003,114.25,113.74000000000001,113.55,113.35000000000001,113.15,112.95,112.75,112.55,112.10000000000001,28.44,28.13,27.97,27.77,27.59,27.400000000000002,27.21,27.03,26.67,N/A,N/A -2012,6,24,3,30,101090,99950,98840,80.36,0,2.56,2.71,2.74,2.7600000000000002,2.77,2.79,2.81,2.83,2.89,123.08,122.94,122.8,122.64,122.48,122.34,122.17,122.01,121.64,28.41,28.1,27.93,27.740000000000002,27.55,27.37,27.18,27,26.64,N/A,N/A -2012,6,24,4,30,101080,99940,98840,77.94,0,3,3.14,3.15,3.13,3.11,3.09,3.06,3.04,2.98,136.3,136.03,135.77,135.51,135.23,134.93,134.56,134.21,133.15,28.51,28.21,28.04,27.85,27.67,27.48,27.29,27.11,26.75,N/A,N/A -2012,6,24,5,30,101110,99960,98860,79.4,0,1.72,1.8,1.8,1.8,1.79,1.79,1.78,1.77,1.75,137.93,137.58,137.31,137.02,136.72,136.41,136.02,135.63,134.47,28.330000000000002,28.01,27.84,27.650000000000002,27.46,27.28,27.080000000000002,26.900000000000002,26.53,N/A,N/A -2012,6,24,6,30,101120,99980,98870,79.28,0,2.09,2.19,2.19,2.19,2.18,2.18,2.17,2.16,2.15,156.48,156.22,156,155.76,155.5,155.22,154.83,154.43,153.06,28.29,27.98,27.810000000000002,27.62,27.43,27.25,27.060000000000002,26.88,26.51,N/A,N/A -2012,6,24,7,30,101170,100020,98920,79.35000000000001,0,1.26,1.3,1.3,1.29,1.28,1.28,1.26,1.25,1.23,179.36,179.21,179,178.77,178.53,178.29,177.98,177.69,177.06,28.26,27.95,27.78,27.59,27.400000000000002,27.21,27.02,26.84,26.46,N/A,N/A -2012,6,24,8,30,101160,100020,98910,79.77,0,1.25,1.29,1.28,1.27,1.26,1.25,1.23,1.21,1.1400000000000001,247.84,248.28,248.47,248.67000000000002,248.84,249.01000000000002,249.22,249.42000000000002,249.76000000000002,28.19,27.88,27.71,27.52,27.330000000000002,27.150000000000002,26.96,26.78,26.41,N/A,N/A -2012,6,24,9,30,101180,100030,98930,80.61,0,1.95,2.02,2.02,2.0100000000000002,1.99,1.97,1.95,1.92,1.81,288.39,288.88,289.16,289.48,289.84000000000003,290.23,290.82,291.44,294.81,28.17,27.86,27.69,27.5,27.310000000000002,27.13,26.94,26.76,26.42,N/A,N/A -2012,6,24,10,30,101200,100060,98950,81.79,0,2.19,2.27,2.27,2.2600000000000002,2.25,2.23,2.21,2.19,2.1,293.67,294.23,294.5,294.81,295.15000000000003,295.52,296.04,296.57,298.72,28.150000000000002,27.830000000000002,27.66,27.47,27.28,27.1,26.91,26.73,26.37,N/A,N/A -2012,6,24,11,30,101220,100070,98960,83.07000000000001,0,2.48,2.59,2.6,2.6,2.59,2.58,2.57,2.56,2.54,319.16,319.71,319.95,320.22,320.51,320.81,321.2,321.6,323.06,28.11,27.79,27.62,27.43,27.25,27.060000000000002,26.87,26.69,26.32,N/A,N/A -2012,6,24,12,30,101240,100100,98990,86.52,0,3.14,3.3200000000000003,3.35,3.36,3.37,3.37,3.37,3.37,3.37,331.29,331.84000000000003,332.15000000000003,332.48,332.81,333.15000000000003,333.58,334,335.26,28,27.67,27.5,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.19,N/A,N/A -2012,6,24,13,30,101280,100140,99030,87.97,0,3.81,4.0200000000000005,4.05,4.05,4.05,4.04,4.04,4.03,4.04,333.37,333.75,334.04,334.35,334.68,335.02,335.43,335.84000000000003,337.16,28,27.67,27.5,27.3,27.12,26.93,26.740000000000002,26.560000000000002,26.21,N/A,N/A -2012,6,24,14,30,101290,100150,99040,83.76,0,4.4,4.75,4.82,4.87,4.9,4.92,4.94,4.96,5.01,344.55,344.67,344.72,344.77,344.82,344.88,344.95,345.03000000000003,345.23,28.5,28.19,28.02,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.72,N/A,N/A -2012,6,24,15,30,101280,100140,99030,80.57000000000001,0,4.5,4.87,4.94,4.98,5.0200000000000005,5.04,5.08,5.11,5.22,336.85,337.15000000000003,337.33,337.52,337.71,337.89,338.1,338.32,338.97,28.900000000000002,28.61,28.44,28.25,28.07,27.89,27.7,27.52,27.16,N/A,N/A -2012,6,24,16,30,101270,100130,99030,77.49,0,4.8100000000000005,5.23,5.3100000000000005,5.3500000000000005,5.38,5.41,5.44,5.47,5.58,331.79,332.68,333.26,333.91,334.55,335.21,336,336.79,339.13,29.55,29.310000000000002,29.16,28.98,28.810000000000002,28.64,28.46,28.3,27.97,N/A,N/A -2012,6,24,17,30,101230,100100,99000,77.33,0,3.64,3.9,4.14,4.72,5.09,5.26,5.43,5.59,5.86,321.82,323.27,325.56,330.33,333.66,335.71,337.85,339.98,343.91,29.93,29.73,29.68,29.72,29.69,29.61,29.52,29.42,29.21,N/A,N/A -2012,6,24,18,30,101200,100070,98970,77.15,0,2.48,3.13,3.45,3.72,3.92,4.05,4.11,4.13,4.12,300.85,310.16,315.27,318.83,322.15000000000003,325.38,328.57,331.59000000000003,337.43,30.43,30.59,30.66,30.66,30.62,30.55,30.44,30.32,30.060000000000002,N/A,N/A -2012,6,24,19,30,101160,100030,98930,73.66,0,1.9100000000000001,2.4,2.63,2.84,2.96,3.02,3.0100000000000002,2.98,2.83,292.7,301.64,306.82,311.58,315.32,318.28000000000003,320.81,322.98,326.67,31.01,31.240000000000002,31.32,31.29,31.2,31.060000000000002,30.91,30.75,30.42,N/A,N/A -2012,6,24,20,30,101110,99980,98880,70,0,1.94,1.69,1.48,1.24,1.08,0.97,0.89,0.84,0.79,191.48000000000002,195.24,198.33,202.54,206.34,210.03,215.12,220.45000000000002,234.77,31.46,31.71,31.78,31.71,31.6,31.48,31.330000000000002,31.19,30.88,N/A,N/A -2012,6,24,21,30,101090,99960,98870,69.43,0,2.79,2.7,2.43,2,1.74,1.57,1.41,1.28,1.05,176.20000000000002,174.78,171.99,166.5,164.55,164.75,167.75,171.58,186.65,31.470000000000002,31.34,31.36,31.53,31.55,31.45,31.32,31.19,30.900000000000002,N/A,N/A -2012,6,24,22,30,101030,99910,98810,69.84,0,3.5100000000000002,3.43,3.14,2.63,2.31,2.09,1.86,1.6600000000000001,1.2,174.46,171.94,168.75,163.13,162.3,164.73,167.12,169.22,174,31.48,31.45,31.54,31.830000000000002,31.92,31.84,31.740000000000002,31.64,31.43,N/A,N/A -2012,6,24,23,30,100990,99860,98770,75.55,0,3.74,3.67,3.39,2.9,2.48,2.09,1.76,1.49,0.99,201.5,198.67000000000002,195.94,191.46,187.82,184.70000000000002,183.61,183.45000000000002,192,30.96,31.07,31.2,31.46,31.67,31.87,31.91,31.86,31.66,N/A,N/A -2012,6,25,0,30,100980,99850,98760,77.59,0,3.66,4.2,4.01,3.27,2.7600000000000002,2.37,2.0100000000000002,1.71,1.22,206.94,204.68,201.67000000000002,196.71,194.5,193.99,196.53,199.9,216.28,30.57,30.85,31.060000000000002,31.400000000000002,31.63,31.79,31.86,31.87,31.740000000000002,N/A,N/A -2012,6,25,1,30,100970,99840,98750,87.06,0,5.18,5.93,6.05,5.87,5.55,5.13,4.68,4.26,3.49,242.57,242.27,241.13,238.44,235.91,233.46,232.05,231.26,232.43,29.54,29.5,29.580000000000002,29.830000000000002,30.05,30.26,30.55,30.87,31.05,N/A,N/A -2012,6,25,2,30,100990,99860,98760,91.16,0,5.26,6.11,6.2700000000000005,6.12,5.84,5.46,5.08,4.73,4.14,258.9,258.78000000000003,258.26,257.07,257.08,258.04,260.16,262.62,270.76,28.96,28.89,29.02,29.400000000000002,29.72,30.02,30.21,30.36,30.59,N/A,N/A -2012,6,25,3,30,101010,99870,98780,90.53,0,5.44,6.22,6.45,6.55,6.41,6.07,5.78,5.53,5.18,268.6,268.14,268.39,269.6,271.93,275.13,279.24,283.42,293.31,28.810000000000002,28.67,28.810000000000002,29.3,29.64,29.89,30.060000000000002,30.19,30.32,N/A,N/A -2012,6,25,4,30,101000,99870,98770,80.39,0,5.36,6.11,6.44,6.91,7.08,7.01,6.88,6.72,6.41,275.02,275.14,275.49,276.41,280.14,286.2,289.84000000000003,292.16,297.22,29.45,29.42,29.52,29.810000000000002,30.240000000000002,30.79,30.92,30.85,30.63,N/A,N/A -2012,6,25,5,30,100990,99850,98760,78.02,0,5.68,6.45,6.7700000000000005,7.21,7.6000000000000005,7.97,7.87,7.59,7.07,282.73,282.98,283.34000000000003,284.13,286.07,289.02,291.39,293.28000000000003,297.95,29.53,29.48,29.52,29.68,30.080000000000002,30.67,30.84,30.82,30.72,N/A,N/A -2012,6,25,6,30,101010,99880,98780,78.68,0,5.69,6.68,7.11,7.55,7.79,7.86,7.76,7.58,7.19,285.44,286.05,286.6,287.47,289.15000000000003,291.54,294.15000000000003,296.68,301.1,29.42,29.44,29.57,29.900000000000002,30.16,30.39,30.55,30.68,30.650000000000002,N/A,N/A -2012,6,25,7,30,101000,99870,98770,78.29,0,6.22,6.91,7.32,8.09,8.58,8.81,8.73,8.53,8.120000000000001,290.67,290.78000000000003,290.86,291.02,292,293.66,295.74,297.84000000000003,301.23,29.29,29.18,29.23,29.45,29.78,30.21,30.400000000000002,30.490000000000002,30.34,N/A,N/A -2012,6,25,8,30,101020,99890,98790,79.09,0,6.57,7.12,7.37,7.86,8.44,9.11,9.35,9.38,8.84,289.55,289.88,290.22,290.85,291.53000000000003,292.29,293.98,295.93,298.25,29.14,28.93,28.84,28.79,28.92,29.2,29.61,30.060000000000002,30.13,N/A,N/A -2012,6,25,9,30,101010,99870,98780,78.58,0,6.69,7.26,7.5600000000000005,8.18,8.72,9.21,9.290000000000001,9.200000000000001,8.75,295.78000000000003,296.2,296.69,297.65000000000003,298.63,299.68,301.49,303.46,305.18,29.080000000000002,28.86,28.79,28.78,29.02,29.44,29.82,30.16,30.080000000000002,N/A,N/A -2012,6,25,10,30,101020,99880,98790,79.24,0,6.55,7.0600000000000005,7.3500000000000005,7.99,8.55,9.08,9.24,9.23,8.870000000000001,301.98,302.33,302.76,303.67,304.87,306.34000000000003,308.18,310.05,312.24,29.01,28.79,28.72,28.71,28.98,29.46,29.84,30.150000000000002,30.150000000000002,N/A,N/A -2012,6,25,11,30,101040,99900,98810,80.34,0,6.390000000000001,6.890000000000001,7.03,7.23,7.72,8.46,8.91,9.200000000000001,9.31,313.27,313.78000000000003,314.26,315.07,316.65000000000003,318.95,320.88,322.51,325.39,28.85,28.580000000000002,28.45,28.32,28.34,28.48,28.73,29.03,29.310000000000002,N/A,N/A -2012,6,25,12,30,101060,99920,98820,84.24,0,6.55,7.03,7.1000000000000005,7.13,7.28,7.5200000000000005,8.01,8.6,9.3,319.71,320.21,320.59000000000003,321.1,322.04,323.36,324.26,324.95,325.09000000000003,28.71,28.43,28.28,28.12,28.02,27.96,28.150000000000002,28.44,29.32,N/A,N/A -2012,6,25,13,30,101060,99920,98820,76.25,0,6.5200000000000005,7.07,7.15,7.2,7.28,7.37,7.8500000000000005,8.48,9.08,321.74,321.88,322.01,322.18,322.41,322.69,323.56,324.64,327.45,29.16,28.91,28.77,28.61,28.46,28.330000000000002,28.35,28.44,29.23,N/A,N/A -2012,6,25,14,30,101070,99930,98830,70.9,0,6.5600000000000005,7.13,7.22,7.2700000000000005,7.32,7.37,7.54,7.76,8.370000000000001,331.05,331.07,331.06,331.04,331.02,330.98,330.93,330.89,331.08,29.54,29.34,29.21,29.05,28.91,28.76,28.66,28.59,28.7,N/A,N/A -2012,6,25,15,30,101060,99920,98820,67.65,0,6.37,6.91,7.01,7.08,7.21,7.38,7.6000000000000005,7.82,8.14,331.48,331.55,331.63,331.73,331.96,332.27,333.01,333.86,336.76,29.85,29.69,29.580000000000002,29.45,29.35,29.27,29.22,29.2,29.400000000000002,N/A,N/A -2012,6,25,16,30,101050,99920,98820,67.11,0,5.0600000000000005,5.92,6.26,6.5600000000000005,6.78,6.94,7.0600000000000005,7.16,7.33,325.18,327.07,328.41,330.04,331.76,333.6,335.47,337.24,341.05,30.22,30.3,30.330000000000002,30.330000000000002,30.3,30.25,30.19,30.11,30.04,N/A,N/A -2012,6,25,17,30,101010,99870,98780,59.18,0,4.72,5.49,5.8,6.15,6.43,6.67,6.73,6.71,6.54,318.38,319.95,321.22,322.91,324.74,326.71,329.19,331.68,334.97,31.34,31.46,31.48,31.48,31.45,31.41,31.310000000000002,31.19,30.830000000000002,N/A,N/A -2012,6,25,18,30,100930,99800,98710,58.22,0,4.91,5.66,5.91,6.13,6.34,6.54,6.6000000000000005,6.6000000000000005,6.62,297.51,300.33,302.90000000000003,306.94,311.09000000000003,315.48,317.36,318.04,321.43,31.79,32.01,32.08,32.15,32.15,32.09,31.92,31.73,31.44,N/A,N/A -2012,6,25,19,30,100880,99750,98670,57.76,0,4.84,5.98,6.3500000000000005,6.57,6.73,6.84,6.91,6.96,7.1000000000000005,289.37,294.08,297.29,301.09000000000003,304.48,307.67,309.27,310.13,313.11,32.39,32.87,32.99,32.980000000000004,32.89,32.74,32.56,32.37,32.05,N/A,N/A -2012,6,25,20,30,100810,99690,98610,59.96,0,4.67,6.09,6.59,6.88,7.07,7.17,7.2,7.21,7.21,293.97,299.29,302.61,305.86,308.41,310.42,311.86,312.96,315.55,32.78,33.45,33.63,33.6,33.51,33.37,33.2,33.03,32.74,N/A,N/A -2012,6,25,21,30,100750,99630,98550,67.36,0,2.5,4.37,5.33,5.9,6.26,6.43,6.53,6.58,6.66,271.85,289.77,300.01,304.34000000000003,307.42,309.42,311.2,312.79,315.86,32.42,33.31,33.67,33.9,33.980000000000004,33.94,33.83,33.68,33.37,N/A,N/A -2012,6,25,22,30,100700,99580,98500,64.17,0,3.33,5.22,5.97,6.22,6.38,6.47,6.5600000000000005,6.640000000000001,6.76,299.84000000000003,307.81,312.1,314.49,316.23,317.5,318.75,319.94,322.34000000000003,33.05,34.4,34.83,34.84,34.77,34.62,34.47,34.33,34.04,N/A,N/A -2012,6,25,23,30,100670,99560,98480,62.300000000000004,0,4.13,5.98,6.51,6.55,6.6000000000000005,6.66,6.76,6.88,6.99,303.41,311.77,315.61,316.54,317.39,318.24,319.62,321.3,325.01,33.6,35.32,35.78,35.63,35.45,35.25,35.06,34.89,34.58,N/A,N/A -2012,6,26,0,30,100650,99540,98460,61.84,0,5.09,6.47,6.6000000000000005,6.2,5.9,5.65,5.42,5.22,5.01,313.05,321.01,325.69,329.86,331.98,332.65000000000003,333.57,334.58,338.46,33.46,35.230000000000004,35.76,35.730000000000004,35.65,35.550000000000004,35.43,35.32,35.06,N/A,N/A -2012,6,26,1,30,100680,99550,98470,82.81,0,4.9,5.68,5.58,4.92,4.91,5.39,6,6.7,8.03,261.03000000000003,266.91,279.92,306.23,321.6,331.58,338.5,343.73,350.22,30.21,30.67,31.19,32.11,32.7,33.03,33.3,33.53,33.88,N/A,N/A -2012,6,26,2,30,100670,99550,98470,74.76,0,2.13,4.2700000000000005,5.41,6.66,7.67,8.44,8.950000000000001,9.290000000000001,9.5,312.39,342.03000000000003,357.36,2.35,5.94,8.14,9.57,10.55,10.81,31.86,33.02,33.480000000000004,33.94,34.37,34.800000000000004,35.07,35.26,35.15,N/A,N/A -2012,6,26,3,30,100680,99560,98490,70.63,0,3.1,5.84,7.13,8.02,8.55,8.76,8.8,8.76,8.61,356.85,7.42,13.24,16.080000000000002,17.6,17.92,17.31,16.28,14.47,31.53,33.44,34.28,34.95,35.34,35.5,35.52,35.480000000000004,35.08,N/A,N/A -2012,6,26,4,30,100670,99540,98470,71.25,0,3.65,3.88,4.03,4.63,5.25,5.89,6.45,6.95,7.2700000000000005,292.14,335.26,352.15000000000003,0.29,6.16,10.43,13.49,15.85,16.84,30.92,31.77,32.21,32.71,33.24,33.78,34.26,34.69,34.75,N/A,N/A -2012,6,26,5,30,100670,99540,98460,74.52,0,2.21,2.73,2.97,3.42,3.87,4.3100000000000005,4.7,5.0600000000000005,5.48,302.37,325.21,337.6,348.7,356.92,2.87,6.92,9.92,13.120000000000001,30.400000000000002,31.34,31.900000000000002,32.56,33.14,33.67,34.05,34.34,34.49,N/A,N/A -2012,6,26,6,30,100670,99540,98460,72.88,0,2.37,1.84,1.6600000000000001,1.6400000000000001,1.79,2.11,2.49,2.93,3.74,281.12,297.83,309.93,328.22,342.05,354.66,2.48,8.2,13.700000000000001,30.22,31.060000000000002,31.44,31.67,31.91,32.17,32.45,32.72,33.12,N/A,N/A -2012,6,26,7,30,100690,99560,98470,80.39,0,3.79,3.9,3.83,3.73,3.68,3.66,3.73,3.8200000000000003,4.16,298.91,308.66,314.31,320.36,326.36,332.56,339.05,345.43,357.19,29.66,30.310000000000002,30.6,30.76,30.900000000000002,31,31.16,31.330000000000002,31.720000000000002,N/A,N/A -2012,6,26,8,30,100690,99560,98470,78.7,0,3.54,4.0600000000000005,4.25,4.41,4.42,4.32,4.25,4.19,4.3,305.65000000000003,306.17,307.41,310.09000000000003,312.98,315.99,320.03000000000003,324.21,333.84000000000003,29.7,29.78,29.900000000000002,30.09,30.26,30.400000000000002,30.580000000000002,30.77,31.080000000000002,N/A,N/A -2012,6,26,9,30,100690,99560,98470,78.18,0,3.54,4.12,4.32,4.43,4.46,4.42,4.39,4.37,4.32,308.24,311.05,313.49,317,320.54,324.1,328.16,332.15000000000003,340.09000000000003,29.650000000000002,29.87,30.060000000000002,30.310000000000002,30.6,30.91,31.220000000000002,31.5,31.79,N/A,N/A -2012,6,26,10,30,100690,99560,98470,77.76,0,3.92,4.09,4.21,4.53,4.8,5.0200000000000005,5.03,4.95,4.5600000000000005,327.36,327.57,328.46,330.59000000000003,333.01,335.71,338.05,340.04,341.66,29.61,29.43,29.48,29.73,30.16,30.72,31.19,31.580000000000002,32.02,N/A,N/A -2012,6,26,11,30,100730,99590,98500,78.12,0,3.79,4,4.0600000000000005,4.18,4.32,4.48,4.51,4.49,4.38,335.82,335.79,335.64,335.31,336.36,338.44,342.04,345.97,352.81,29.54,29.32,29.23,29.150000000000002,29.35,29.740000000000002,30.25,30.79,31.51,N/A,N/A -2012,6,26,12,30,100750,99620,98530,77.59,0,2.81,2.95,2.96,2.96,3.0300000000000002,3.15,3.23,3.2800000000000002,3.29,348.82,348.85,348.84000000000003,348.83,349.82,351.55,355.69,0.52,8.52,29.37,29.11,28.98,28.84,28.89,29.07,29.53,30.07,30.82,N/A,N/A -2012,6,26,13,30,100780,99650,98550,71.43,0,3.67,3.8000000000000003,3.7600000000000002,3.7,3.64,3.56,3.47,3.39,3.44,351.79,352.12,352.47,353.06,353.91,354.96,357,359.23,6.16,29.35,29.11,29.02,28.96,29.2,29.68,30.09,30.46,31.02,N/A,N/A -2012,6,26,14,30,100800,99670,98570,72.96000000000001,0,3.2,3.34,3.33,3.34,3.4,3.49,3.42,3.3000000000000003,3.29,2.2600000000000002,2.33,2.5,2.79,3.8200000000000003,5.42,7.86,10.33,13.82,29.330000000000002,29.09,29.02,29.02,29.400000000000002,30.060000000000002,30.42,30.650000000000002,30.87,N/A,N/A -2012,6,26,15,30,100810,99680,98590,69.10000000000001,0,2.5100000000000002,2.68,2.8000000000000003,3.06,3.16,3.14,3.15,3.18,3.2,341.78000000000003,342.40000000000003,344.55,349.63,354.52,359.08,2.69,5.73,13.34,29.91,29.82,30.03,30.6,30.96,31.17,31.35,31.490000000000002,31.76,N/A,N/A -2012,6,26,16,30,100800,99670,98580,65.76,0,1.97,2.05,2.16,2.47,2.68,2.81,2.91,3,3.22,356.17,356.87,358.95,3.93,8.67,13.120000000000001,17.18,20.86,25.97,30.490000000000002,30.310000000000002,30.44,30.87,31.150000000000002,31.34,31.43,31.48,31.57,N/A,N/A -2012,6,26,17,30,100800,99670,98580,63.22,0,0.65,0.73,0.88,1.35,1.75,2.04,2.29,2.52,2.88,48.46,42.08,38.730000000000004,34.52,31.400000000000002,29.92,29.16,28.77,28.63,30.94,30.84,31.01,31.580000000000002,31.88,32.01,32.06,32.07,32.06,N/A,N/A -2012,6,26,18,30,100760,99640,98550,61.9,0,1.93,1.92,1.92,2.0300000000000002,2.1,2.15,2.17,2.19,2.12,133.86,126.56,118.57000000000001,104.46000000000001,94.51,87.49,81.86,77.12,69.53,31.3,31.41,31.69,32.27,32.55,32.64,32.660000000000004,32.64,32.56,N/A,N/A -2012,6,26,19,30,100760,99630,98540,66.35,0,3.31,3.4,3.38,3.4,3.31,3.14,2.92,2.69,2.44,155.62,153.99,150.39000000000001,141.81,135.95,132.13,130.98,131.08,134.27,31.220000000000002,31.04,31.13,31.54,31.91,32.26,32.4,32.44,32.39,N/A,N/A -2012,6,26,20,30,100710,99590,98500,66.33,0,3.81,3.98,3.95,3.93,3.7600000000000002,3.47,3.3200000000000003,3.24,3.17,158.39000000000001,157.52,155.75,151.57,149.68,149.53,150.92000000000002,152.85,154.66,31.45,31.29,31.38,31.8,32.160000000000004,32.5,32.57,32.52,32.39,N/A,N/A -2012,6,26,21,30,100680,99550,98470,66.51,0,4.49,4.68,4.63,4.55,4.37,4.11,3.93,3.79,3.52,167.48,167.16,166.72,165.82,164.53,162.95000000000002,163.75,165.41,168.04,31.57,31.41,31.41,31.55,31.87,32.33,32.47,32.46,32.34,N/A,N/A -2012,6,26,22,30,100670,99540,98460,69.67,0,4,4.3100000000000005,4.34,4.32,4.18,3.96,3.7800000000000002,3.65,3.42,178.95000000000002,178.44,177.69,176.04,175.15,174.85,175.86,177.38,180.24,31.310000000000002,31.29,31.39,31.7,32.04,32.42,32.56,32.57,32.46,N/A,N/A -2012,6,26,23,30,100610,99480,98400,73.13,0,5.19,5.91,6.0200000000000005,5.98,5.7700000000000005,5.48,5.28,5.12,4.86,173.86,173.88,173.16,171.57,170.67000000000002,170.23,171.03,172.23,174.89000000000001,30.970000000000002,31.12,31.400000000000002,31.96,32.37,32.69,32.76,32.730000000000004,32.63,N/A,N/A -2012,6,27,0,30,100670,99540,98450,76.12,0,4.58,5.38,5.62,5.68,5.57,5.2700000000000005,5.0600000000000005,4.9,4.74,194.12,194.16,193.52,191.57,190.1,188.99,189.67000000000002,191.31,195.44,30.57,30.67,30.93,31.68,32.19,32.52,32.64,32.63,32.54,N/A,N/A -2012,6,27,1,30,100740,99610,98520,81.34,0,8.22,9.27,9.540000000000001,9.75,9.89,9.98,10.01,9.99,9.83,260.79,261.33,261.31,261.23,261.04,260.75,260.19,259.5,257.53000000000003,30.04,29.86,29.740000000000002,29.59,29.44,29.29,29.13,28.98,28.76,N/A,N/A -2012,6,27,2,30,100700,99570,98480,73.45,0,4.2,5.22,5.73,6.22,6.59,6.84,6.92,6.92,6.87,259.05,259.72,260.27,260.79,261.34000000000003,261.92,262.77,263.68,265.05,30,30.38,30.63,30.92,31.09,31.17,31.16,31.11,30.93,N/A,N/A -2012,6,27,3,30,100740,99610,98520,75.08,0,3.06,3.89,4.33,4.74,5.05,5.28,5.43,5.5200000000000005,5.33,243.55,244.65,245.17000000000002,245,244.81,244.58,244.98000000000002,245.70000000000002,248.88,30.09,30.990000000000002,31.470000000000002,31.85,32.07,32.15,32.17,32.160000000000004,32.03,N/A,N/A -2012,6,27,4,30,100750,99620,98530,83.22,0,1.51,1.99,2.22,2.41,2.57,2.71,2.88,3.0500000000000003,3.46,276.98,272.88,269.23,263.88,258.14,251.95000000000002,246.62,241.8,236.66,29.560000000000002,30.19,30.52,30.79,31.07,31.35,31.61,31.86,32.08,N/A,N/A -2012,6,27,5,30,100760,99630,98540,80.79,0,1.1300000000000001,1.53,1.73,1.86,1.95,2.0100000000000002,2.14,2.2800000000000002,2.5100000000000002,237.24,241.8,243.09,240.95000000000002,237.5,232.77,228.43,224.3,221.44,29.71,30.490000000000002,30.85,31.04,31.17,31.25,31.42,31.61,31.84,N/A,N/A -2012,6,27,6,30,100800,99670,98580,82.43,0,0.75,1.07,1.28,1.52,1.7,1.83,1.9100000000000001,1.96,2,254.43,248.07,245.52,247.14000000000001,247.99,248.08,247.22,245.9,241.98000000000002,29.69,30.330000000000002,30.68,30.96,31.1,31.150000000000002,31.17,31.19,31.18,N/A,N/A -2012,6,27,7,30,100820,99690,98600,75.7,0,1.3800000000000001,1.68,1.76,1.73,1.69,1.6400000000000001,1.6400000000000001,1.67,1.81,180.69,192.75,200.81,209.25,216.12,222.02,226.82,230.97,237.16,30.21,31.12,31.51,31.67,31.740000000000002,31.76,31.77,31.76,31.720000000000002,N/A,N/A -2012,6,27,8,30,100860,99730,98640,80.07000000000001,0,1.3900000000000001,1.72,1.84,1.85,1.77,1.62,1.46,1.31,1.1400000000000001,166.09,174.64000000000001,180.47,187.39000000000001,193.62,199.17000000000002,206.37,213.41,231.46,29.98,30.580000000000002,30.88,31.04,31.14,31.19,31.21,31.23,31.16,N/A,N/A -2012,6,27,9,30,100910,99770,98680,76.39,0,1.55,1.58,1.61,1.73,1.8,1.82,1.74,1.6300000000000001,1.31,177.03,176.65,178.37,183.37,188.12,192.72,197.64000000000001,202.17000000000002,213.46,30.13,29.91,29.88,30,30.12,30.240000000000002,30.310000000000002,30.36,30.32,N/A,N/A -2012,6,27,10,30,100950,99810,98720,78.58,0,1.32,1.3800000000000001,1.37,1.36,1.3900000000000001,1.46,1.45,1.3900000000000001,1.1500000000000001,168.35,169.19,169.82,170.82,173.99,179.21,184.9,190.26,200.92000000000002,29.900000000000002,29.66,29.53,29.39,29.39,29.5,29.6,29.67,29.7,N/A,N/A -2012,6,27,11,30,100980,99850,98750,78.53,0,0.9500000000000001,0.99,0.98,0.96,0.98,1.02,0.97,0.89,0.62,198.38,198.47,198.8,199.39000000000001,201.97,206.47,212.43,218.21,236.91,29.8,29.54,29.400000000000002,29.23,29.2,29.26,29.330000000000002,29.41,29.45,N/A,N/A -2012,6,27,12,30,101060,99930,98830,76.56,0,1.28,1.35,1.35,1.34,1.33,1.33,1.29,1.23,1.06,152.9,152.68,152.74,152.81,152.87,152.9,152.42000000000002,151.74,138.6,29.86,29.6,29.46,29.29,29.13,28.990000000000002,28.94,28.93,29,N/A,N/A -2012,6,27,13,30,101110,99970,98870,76.16,0,2,2.13,2.14,2.14,2.15,2.15,2.15,2.15,2.18,147.28,147.35,147.35,147.34,147.33,147.31,147.27,147.20000000000002,146.74,29.86,29.59,29.44,29.26,29.09,28.92,28.75,28.59,28.330000000000002,N/A,N/A -2012,6,27,14,30,101180,100040,98940,76.38,0,2.04,2.19,2.21,2.22,2.23,2.25,2.2600000000000002,2.2800000000000002,2.34,151.63,151.4,151.21,151.02,150.81,150.6,150.33,150.03,149.22,29.88,29.6,29.43,29.240000000000002,29.060000000000002,28.88,28.69,28.51,28.16,N/A,N/A -2012,6,27,15,30,101220,100080,98980,69.72,0,2.45,2.62,2.65,2.67,2.69,2.71,2.74,2.7800000000000002,2.94,152.75,152.68,152.62,152.53,152.42000000000002,152.28,152.04,151.77,150.31,30.26,29.990000000000002,29.830000000000002,29.650000000000002,29.47,29.3,29.13,28.96,28.68,N/A,N/A -2012,6,27,16,30,101260,100120,99020,71.41,0,2.7,2.88,2.91,2.92,2.94,2.95,2.96,2.97,2.99,165.53,165.09,164.83,164.55,164.27,163.98,163.64000000000001,163.28,162.36,30.22,29.92,29.76,29.57,29.39,29.2,29.02,28.84,28.48,N/A,N/A -2012,6,27,17,30,101280,100140,99040,70.83,0,2.39,2.5300000000000002,2.56,2.58,2.6,2.61,2.63,2.65,2.69,167.1,166.98,166.89000000000001,166.79,166.71,166.62,166.51,166.42000000000002,166.15,30.25,29.94,29.78,29.580000000000002,29.400000000000002,29.21,29.02,28.84,28.48,N/A,N/A -2012,6,27,18,30,101310,100170,99070,69.45,0,3.06,3.21,3.23,3.23,3.23,3.22,3.22,3.22,3.21,159.75,159.8,159.76,159.70000000000002,159.63,159.55,159.46,159.37,159.09,30.46,30.14,29.98,29.78,29.6,29.41,29.22,29.04,28.67,N/A,N/A -2012,6,27,19,30,101310,100180,99080,66.24,0,4.22,4.48,4.5,4.5,4.49,4.48,4.46,4.44,4.39,158.67000000000002,158.84,158.93,159.02,159.11,159.21,159.3,159.39000000000001,159.6,30.69,30.39,30.22,30.02,29.84,29.650000000000002,29.45,29.27,28.89,N/A,N/A -2012,6,27,20,30,101300,100160,99060,70.34,0,4.6000000000000005,4.94,4.98,5,5,4.99,4.98,4.97,4.94,155.83,155.86,155.92000000000002,155.97,156.01,156.03,156.06,156.08,156.09,30.53,30.23,30.060000000000002,29.87,29.68,29.490000000000002,29.3,29.12,28.75,N/A,N/A -2012,6,27,21,30,101300,100160,99060,71.35000000000001,0,4.88,5.25,5.29,5.3100000000000005,5.3,5.29,5.2700000000000005,5.25,5.19,156.59,156.61,156.68,156.77,156.87,156.97,157.1,157.23,157.54,30.400000000000002,30.13,29.97,29.78,29.59,29.41,29.21,29.03,28.66,N/A,N/A -2012,6,27,22,30,101270,100130,99030,73.95,0,4.69,5.07,5.14,5.17,5.19,5.21,5.23,5.25,5.32,157.72,157.77,157.77,157.76,157.75,157.72,157.68,157.63,157.47,30.23,29.97,29.810000000000002,29.63,29.45,29.27,29.09,28.92,28.59,N/A,N/A -2012,6,27,23,30,101270,100130,99030,77.81,0,4.83,5.21,5.2700000000000005,5.3,5.3100000000000005,5.32,5.32,5.32,5.33,153.66,153.8,153.88,153.93,153.97,154,154.02,154.03,154.05,29.990000000000002,29.73,29.580000000000002,29.39,29.21,29.04,28.85,28.68,28.330000000000002,N/A,N/A -2012,6,28,0,30,101280,100140,99040,81.01,0,4.43,4.83,4.91,4.97,5.0200000000000005,5.0600000000000005,5.12,5.17,5.3500000000000005,152.52,152.37,152.31,152.25,152.18,152.09,152,151.9,151.57,29.75,29.48,29.32,29.13,28.96,28.78,28.6,28.43,28.09,N/A,N/A -2012,6,28,1,30,101250,100110,99010,83.9,0,6.3,6.86,6.95,6.97,6.97,6.95,6.91,6.86,6.7,152.24,152.38,152.45000000000002,152.53,152.62,152.71,152.83,152.95000000000002,153.31,29.55,29.25,29.080000000000002,28.89,28.7,28.51,28.32,28.13,27.73,N/A,N/A -2012,6,28,2,30,101290,100160,99050,82.31,0,6.03,6.5600000000000005,6.66,6.71,6.75,6.78,6.83,6.87,7.07,158.94,158.85,158.74,158.59,158.42000000000002,158.23,157.99,157.73,156.87,29.59,29.310000000000002,29.150000000000002,28.97,28.79,28.62,28.44,28.28,27.990000000000002,N/A,N/A -2012,6,28,3,30,101320,100190,99080,84.88,0,6.53,7.1000000000000005,7.22,7.28,7.34,7.390000000000001,7.45,7.51,7.75,159.43,159.17000000000002,158.99,158.76,158.5,158.21,157.85,157.45000000000002,156.26,29.400000000000002,29.1,28.94,28.75,28.580000000000002,28.400000000000002,28.23,28.07,27.79,N/A,N/A -2012,6,28,4,30,101340,100200,99090,86.4,0,6.99,7.61,7.74,7.79,7.82,7.84,7.84,7.83,7.79,153.66,153.77,153.8,153.84,153.86,153.89000000000001,153.93,153.97,154.11,29.26,28.95,28.78,28.580000000000002,28.400000000000002,28.22,28.02,27.84,27.46,N/A,N/A -2012,6,28,5,30,101360,100220,99120,87.94,0,7.2700000000000005,7.88,8.01,8.05,8.08,8.09,8.08,8.07,8.01,154.34,154.36,154.34,154.31,154.29,154.25,154.23,154.21,154.20000000000002,29.080000000000002,28.75,28.580000000000002,28.38,28.2,28.01,27.82,27.63,27.25,N/A,N/A -2012,6,28,6,30,101410,100270,99160,88.84,0,6.24,6.73,6.82,6.86,6.890000000000001,6.9,6.9,6.9,6.890000000000001,155.78,155.85,155.91,156,156.08,156.18,156.29,156.39000000000001,156.63,29,28.650000000000002,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A -2012,6,28,7,30,101470,100330,99220,88.53,0,6.21,6.7,6.8,6.84,6.86,6.87,6.87,6.86,6.84,157.99,158.1,158.20000000000002,158.28,158.36,158.43,158.5,158.57,158.71,29,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A -2012,6,28,8,30,101490,100340,99240,85.27,0,5.97,6.49,6.61,6.68,6.73,6.7700000000000005,6.8,6.83,6.88,164.31,163.87,163.66,163.47,163.29,163.12,162.95000000000002,162.78,162.42000000000002,29.14,28.8,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A -2012,6,28,9,30,101520,100380,99270,85.85000000000001,0,6.59,7.11,7.21,7.24,7.25,7.25,7.23,7.21,7.140000000000001,162.21,162.46,162.59,162.73,162.87,163.01,163.17000000000002,163.32,163.71,29,28.66,28.48,28.28,28.080000000000002,27.89,27.69,27.5,27.11,N/A,N/A -2012,6,28,10,30,101530,100390,99280,83.22,0,6.68,7.25,7.37,7.43,7.46,7.48,7.48,7.48,7.46,160.52,160.78,160.96,161.17000000000002,161.37,161.57,161.78,161.99,162.43,29.14,28.8,28.62,28.42,28.22,28.03,27.830000000000002,27.63,27.240000000000002,N/A,N/A -2012,6,28,11,30,101580,100440,99330,85.24,0,5.2700000000000005,5.69,5.8,5.88,5.94,5.98,6.03,6.07,6.140000000000001,161.15,162.35,163.03,163.68,164.26,164.81,165.33,165.84,166.79,29.13,28.8,28.64,28.44,28.26,28.07,27.88,27.69,27.32,N/A,N/A -2012,6,28,12,30,101610,100470,99360,84.06,0,5.12,5.55,5.66,5.73,5.79,5.84,5.88,5.91,5.98,167.36,167.27,167.23,167.18,167.13,167.08,167.02,166.97,166.84,29.060000000000002,28.72,28.55,28.35,28.16,27.97,27.78,27.59,27.21,N/A,N/A -2012,6,28,13,30,101650,100510,99400,83.28,0,4.0200000000000005,4.26,4.3100000000000005,4.33,4.3500000000000005,4.36,4.36,4.37,4.38,155.91,155.82,155.83,155.83,155.84,155.86,155.88,155.93,156.06,29.17,28.85,28.68,28.48,28.3,28.11,27.92,27.740000000000002,27.37,N/A,N/A -2012,6,28,14,30,101720,100570,99460,83.08,0,3.7800000000000002,4.0600000000000005,4.12,4.16,4.2,4.22,4.25,4.2700000000000005,4.32,154.34,154.31,154.36,154.42000000000002,154.47,154.52,154.58,154.64000000000001,154.77,29.27,28.94,28.77,28.57,28.39,28.19,28,27.82,27.44,N/A,N/A -2012,6,28,15,30,101720,100580,99470,82.09,0,3.61,3.8000000000000003,3.83,3.84,3.84,3.84,3.84,3.83,3.81,128.51,129.29,129.73,130.13,130.51,130.88,131.26,131.62,132.4,29.310000000000002,28.98,28.810000000000002,28.61,28.43,28.240000000000002,28.04,27.86,27.48,N/A,N/A -2012,6,28,16,30,101710,100570,99460,82.39,0,3.56,3.7600000000000002,3.8000000000000003,3.8200000000000003,3.83,3.85,3.85,3.86,3.87,129.46,130.76,131.41,132.07,132.67000000000002,133.26,133.85,134.41,135.54,29.36,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.52,N/A,N/A -2012,6,28,17,30,101750,100610,99490,84.71000000000001,0,4.66,4.92,4.96,4.97,4.97,4.96,4.95,4.94,4.9,115.73,116.12,116.28,116.39,116.48,116.54,116.60000000000001,116.65,116.72,29.34,29,28.830000000000002,28.62,28.44,28.240000000000002,28.05,27.86,27.490000000000002,N/A,N/A -2012,6,28,18,30,101730,100590,99480,82.98,0,4.38,4.66,4.69,4.7,4.69,4.69,4.68,4.66,4.62,113.10000000000001,113.9,114.12,114.33,114.5,114.67,114.84,115.01,115.37,29.48,29.13,28.96,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A -2012,6,28,19,30,101800,100660,99540,84.11,0,6.96,7.44,7.53,7.5600000000000005,7.58,7.58,7.58,7.58,7.5600000000000005,158.93,159.01,159.05,159.13,159.20000000000002,159.31,159.43,159.56,159.87,29.490000000000002,29.16,28.990000000000002,28.79,28.6,28.41,28.22,28.03,27.66,N/A,N/A -2012,6,28,20,30,101690,100540,99430,82.64,0,5.86,6.140000000000001,6.17,6.16,6.15,6.140000000000001,6.15,6.17,6.3,218.53,217.75,217.08,216.20000000000002,215,213.51,210.66,207.39000000000001,197.17000000000002,27.54,27.150000000000002,26.98,26.810000000000002,26.68,26.560000000000002,26.53,26.53,26.76,N/A,N/A -2012,6,28,21,30,101690,100540,99430,80.86,0,6.09,6.48,6.55,6.57,6.58,6.59,6.58,6.58,6.57,191.55,191.19,191.04,190.86,190.66,190.44,190.15,189.84,188.87,27.89,27.5,27.32,27.12,26.93,26.75,26.560000000000002,26.39,26.04,N/A,N/A -2012,6,28,22,30,101660,100510,99400,77.99,0,3.37,3.54,3.5700000000000003,3.59,3.61,3.64,3.71,3.79,4.3500000000000005,163.92000000000002,163.14000000000001,162.65,162.05,161.37,160.61,159.44,158.17000000000002,153.17000000000002,28.080000000000002,27.72,27.55,27.36,27.18,27.01,26.84,26.68,26.52,N/A,N/A -2012,6,28,23,30,101650,100510,99400,76.09,0,2.64,2.8000000000000003,2.84,2.87,2.91,2.96,3.0500000000000003,3.16,3.77,130.71,130.93,131.09,131.32,131.61,131.98,132.7,133.56,138.24,28.53,28.2,28.04,27.85,27.68,27.51,27.36,27.21,27.14,N/A,N/A -2012,6,29,0,30,101610,100460,99350,76.32000000000001,0,5.09,5.44,5.5,5.53,5.5600000000000005,5.58,5.6000000000000005,5.62,5.68,143.79,143.66,143.61,143.55,143.49,143.41,143.33,143.25,143,28.7,28.35,28.18,27.98,27.79,27.61,27.42,27.240000000000002,26.87,N/A,N/A -2012,6,29,1,30,101590,100450,99340,78.7,0,6.3500000000000005,6.8100000000000005,6.91,6.95,6.98,6.99,7,7,7.01,143.51,143.62,143.69,143.77,143.84,143.91,144,144.1,144.32,28.8,28.45,28.28,28.080000000000002,27.900000000000002,27.72,27.53,27.35,26.990000000000002,N/A,N/A -2012,6,29,2,30,101590,100440,99330,80.10000000000001,0,5.89,6.3500000000000005,6.46,6.53,6.57,6.61,6.640000000000001,6.67,6.71,139.44,139.84,140.06,140.29,140.51,140.74,140.98,141.21,141.74,28.8,28.44,28.27,28.07,27.89,27.7,27.51,27.32,26.95,N/A,N/A -2012,6,29,3,30,101590,100440,99330,80.88,0,6.29,6.8,6.92,6.98,7.03,7.0600000000000005,7.09,7.11,7.140000000000001,147.55,147.68,147.77,147.87,147.95000000000002,148.03,148.12,148.19,148.36,28.84,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A -2012,6,29,4,30,101590,100440,99330,83.27,0,6.0600000000000005,6.5200000000000005,6.63,6.68,6.72,6.74,6.75,6.7700000000000005,6.78,149.26,149.37,149.4,149.43,149.45000000000002,149.47,149.5,149.52,149.57,28.77,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.900000000000002,N/A,N/A -2012,6,29,5,30,101570,100430,99320,80.49,0,6.3100000000000005,6.78,6.88,6.92,6.94,6.95,6.95,6.95,6.93,161.89000000000001,161.42000000000002,161.18,160.93,160.72,160.5,160.29,160.08,159.66,29.01,28.67,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A -2012,6,29,6,30,101610,100470,99360,79.81,0,5.91,6.3500000000000005,6.45,6.49,6.5200000000000005,6.54,6.5600000000000005,6.5600000000000005,6.57,168.45000000000002,168.51,168.49,168.46,168.44,168.41,168.39000000000001,168.38,168.34,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A -2012,6,29,7,30,101600,100450,99340,79.56,0,6.0200000000000005,6.45,6.5200000000000005,6.55,6.5600000000000005,6.5600000000000005,6.55,6.54,6.5200000000000005,167.9,168.08,168.26,168.45000000000002,168.65,168.85,169.06,169.26,169.71,28.94,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,6,29,8,30,101620,100480,99370,77.62,0,4.66,4.97,5.04,5.07,5.08,5.09,5.09,5.08,5.07,171.22,172.11,172.45000000000002,172.75,173.01,173.25,173.47,173.68,174.08,29.080000000000002,28.75,28.580000000000002,28.39,28.2,28.01,27.82,27.63,27.26,N/A,N/A -2012,6,29,9,30,101600,100450,99340,78.58,0,4.57,4.88,4.94,4.98,5.01,5.03,5.04,5.05,5.08,180.93,181.1,181.23,181.37,181.49,181.61,181.74,181.85,182.09,28.91,28.57,28.400000000000002,28.21,28.02,27.830000000000002,27.650000000000002,27.46,27.09,N/A,N/A -2012,6,29,10,30,101610,100470,99360,80.12,0,3.5100000000000002,3.67,3.68,3.68,3.67,3.66,3.64,3.63,3.6,201.64000000000001,201.55,201.28,200.96,200.63,200.27,199.86,199.45000000000002,198.36,28.77,28.44,28.28,28.080000000000002,27.900000000000002,27.72,27.54,27.36,27.01,N/A,N/A -2012,6,29,11,30,101580,100430,99320,79.22,0,3.2,3.38,3.41,3.42,3.43,3.43,3.44,3.44,3.43,202.33,203.16,203.57,203.97,204.34,204.70000000000002,205.06,205.4,206.08,28.72,28.38,28.21,28.01,27.82,27.63,27.44,27.25,26.87,N/A,N/A -2012,6,29,12,30,101580,100440,99330,80.15,3.3000000000000003,2.93,3.1,3.11,3.11,3.11,3.11,3.1,3.09,3.08,216.55,215.65,215.47,215.28,215.1,214.92000000000002,214.75,214.59,214.25,28.59,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,6,29,13,30,101610,100450,99330,93.26,51.6,9.89,10.93,11.07,11.16,11.200000000000001,11.21,11.19,11.17,11.07,112.60000000000001,112,111.96000000000001,111.95,112,112.06,112.17,112.27,112.55,26.18,25.67,25.45,25.240000000000002,25.03,24.84,24.64,24.45,24.080000000000002,N/A,N/A -2012,6,29,14,30,101680,100520,99400,83.35000000000001,0,7.33,7.76,7.8100000000000005,7.82,7.8,7.78,7.76,7.75,7.71,109.55,109.51,109.76,110.04,110.36,110.7,111.22,111.75,113.37,25.84,25.37,25.19,25.02,24.86,24.71,24.580000000000002,24.46,24.330000000000002,N/A,N/A -2012,6,29,15,30,101680,100530,99400,78.61,0,5.63,5.98,6.05,6.07,6.09,6.09,6.09,6.08,6.0600000000000005,96.53,97.23,97.51,97.79,98.07000000000001,98.35000000000001,98.67,98.97,99.74000000000001,26.59,26.16,25.97,25.77,25.580000000000002,25.400000000000002,25.22,25.04,24.7,N/A,N/A -2012,6,29,16,30,101670,100520,99400,77.7,0,6.2700000000000005,6.67,6.74,6.7700000000000005,6.7700000000000005,6.7700000000000005,6.74,6.72,6.640000000000001,93.72,93.84,93.88,93.92,93.95,93.99,94.02,94.06,94.16,27.29,26.88,26.7,26.5,26.32,26.14,25.95,25.78,25.44,N/A,N/A -2012,6,29,17,30,101650,100500,99380,82.52,0,6.2,6.54,6.58,6.57,6.55,6.5200000000000005,6.48,6.44,6.34,113.64,113.76,113.83,113.92,114,114.09,114.19,114.29,114.54,27.47,27.060000000000002,26.88,26.68,26.490000000000002,26.310000000000002,26.13,25.95,25.6,N/A,N/A -2012,6,29,18,30,101570,100430,99310,83.31,0,5.8100000000000005,6.19,6.22,6.21,6.19,6.16,6.12,6.08,5.99,113.7,113.87,113.82000000000001,113.75,113.67,113.59,113.5,113.41,113.21000000000001,27.92,27.51,27.330000000000002,27.13,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A -2012,6,29,19,30,101550,100410,99300,76.85000000000001,0,6.7,7.18,7.25,7.2700000000000005,7.2700000000000005,7.26,7.24,7.21,7.15,143.71,143.68,143.72,143.76,143.82,143.88,143.95000000000002,144.02,144.19,28.37,27.990000000000002,27.810000000000002,27.61,27.43,27.240000000000002,27.05,26.87,26.5,N/A,N/A -2012,6,29,20,30,101500,100350,99240,83.41,0,6.47,6.8500000000000005,6.91,6.9,6.87,6.83,6.7700000000000005,6.7,6.51,144.9,144.95000000000002,144.91,144.9,144.91,144.94,145.02,145.12,145.54,27.900000000000002,27.51,27.330000000000002,27.13,26.95,26.77,26.580000000000002,26.400000000000002,26.05,N/A,N/A -2012,6,29,21,30,101440,100290,99170,77.42,0,8.16,8.77,8.88,8.92,8.93,8.93,8.92,8.91,8.91,134.79,134.89000000000001,134.85,134.81,134.76,134.71,134.65,134.6,134.51,27.95,27.560000000000002,27.39,27.2,27.03,26.86,26.69,26.54,26.29,N/A,N/A -2012,6,29,22,30,101380,100230,99120,78.24,0,6.42,6.84,6.890000000000001,6.890000000000001,6.87,6.83,6.78,6.73,6.57,157.79,157.58,157.59,157.61,157.64000000000001,157.67000000000002,157.72,157.78,157.98,28.27,27.900000000000002,27.72,27.53,27.34,27.150000000000002,26.96,26.78,26.42,N/A,N/A -2012,6,29,23,30,101390,100240,99130,85.22,0,5.89,6.26,6.32,6.34,6.34,6.34,6.32,6.3100000000000005,6.2700000000000005,143.04,143.01,142.91,142.81,142.71,142.61,142.5,142.39000000000001,142.17000000000002,27.8,27.400000000000002,27.22,27.02,26.830000000000002,26.64,26.44,26.26,25.88,N/A,N/A -2012,6,30,0,30,101340,100190,99080,77.31,0,5.15,5.46,5.5200000000000005,5.55,5.57,5.57,5.57,5.57,5.57,150.15,150.26,150.3,150.33,150.36,150.4,150.45000000000002,150.49,150.58,28.07,27.69,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.17,N/A,N/A -2012,6,30,1,30,101280,100130,99030,81.52,0,4.91,5.28,5.38,5.44,5.49,5.53,5.5600000000000005,5.59,5.64,137.32,137.44,137.52,137.6,137.67000000000002,137.73,137.79,137.86,137.98,28.07,27.69,27.52,27.310000000000002,27.12,26.93,26.73,26.55,26.16,N/A,N/A -2012,6,30,2,30,101280,100140,99030,82.5,0,5.5200000000000005,5.9,5.97,6,6.0200000000000005,6.04,6.05,6.05,6.05,147.85,147.89000000000001,147.91,147.93,147.95000000000002,147.98,148.01,148.03,148.1,28.2,27.830000000000002,27.650000000000002,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A -2012,6,30,3,30,101250,100100,99000,81.05,0,5.46,5.88,5.98,6.03,6.07,6.1000000000000005,6.12,6.140000000000001,6.17,153.20000000000002,153.21,153.14000000000001,153.08,153.02,152.97,152.91,152.87,152.78,28.47,28.11,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,6,30,4,30,101240,100090,98990,84.32000000000001,0,7.01,7.5200000000000005,7.61,7.640000000000001,7.640000000000001,7.640000000000001,7.62,7.6000000000000005,7.54,149.72,150.36,150.62,150.87,151.09,151.3,151.5,151.70000000000002,152.09,28.29,27.91,27.73,27.53,27.330000000000002,27.14,26.95,26.76,26.39,N/A,N/A -2012,6,30,5,30,101220,100080,98970,84.58,0,7.03,7.58,7.69,7.75,7.79,7.8,7.8100000000000005,7.8100000000000005,7.8,153.31,153.58,153.82,154.04,154.24,154.42000000000002,154.6,154.76,155.09,28.32,27.94,27.76,27.560000000000002,27.36,27.17,26.97,26.79,26.41,N/A,N/A -2012,6,30,6,30,101260,100110,99010,81.89,0,5.8,6.23,6.32,6.37,6.41,6.43,6.45,6.47,6.5,172.51,172.45000000000002,172.44,172.42000000000002,172.41,172.39000000000001,172.38,172.36,172.33,28.37,28.01,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A -2012,6,30,7,30,101250,100110,99010,82.37,0,7.2,7.78,7.890000000000001,7.94,7.97,7.97,7.97,7.96,7.92,167.63,167.8,167.99,168.17000000000002,168.34,168.5,168.67000000000002,168.83,169.15,28.45,28.1,27.92,27.72,27.53,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,6,30,8,30,101250,100100,99000,80.31,0,6.640000000000001,7.140000000000001,7.23,7.26,7.28,7.29,7.29,7.29,7.2700000000000005,170.88,170.95000000000002,170.93,170.9,170.88,170.86,170.84,170.83,170.81,28.43,28.080000000000002,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A -2012,6,30,9,30,101240,100090,98990,79.04,0,6.75,7.3100000000000005,7.43,7.5,7.54,7.58,7.61,7.62,7.65,182.91,183.02,183.09,183.15,183.21,183.25,183.3,183.35,183.42000000000002,28.46,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,6,30,10,30,101240,100100,98990,77.08,0,6.16,6.61,6.69,6.72,6.74,6.75,6.75,6.74,6.73,180.92000000000002,181.27,181.45000000000002,181.62,181.77,181.91,182.04,182.17000000000002,182.43,28.45,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A -2012,6,30,11,30,101240,100100,98990,78.54,0,5.26,5.65,5.73,5.78,5.8100000000000005,5.84,5.8500000000000005,5.86,5.86,190.01,189.66,189.38,189.11,188.85,188.61,188.36,188.14000000000001,187.67000000000002,28.400000000000002,28.05,27.87,27.67,27.48,27.29,27.09,26.900000000000002,26.52,N/A,N/A -2012,6,30,12,30,101250,100110,99000,78.54,0,5.84,6.24,6.3100000000000005,6.34,6.36,6.37,6.37,6.37,6.36,188.09,187.65,187.36,187.06,186.79,186.54,186.28,186.04,185.56,28.34,27.990000000000002,27.810000000000002,27.61,27.42,27.23,27.03,26.85,26.46,N/A,N/A -2012,6,30,13,30,101290,100140,99040,78.06,0,3.13,3.33,3.38,3.41,3.44,3.46,3.48,3.5,3.5300000000000002,185.59,185.3,185.17000000000002,185.03,184.91,184.8,184.69,184.58,184.35,28.310000000000002,27.97,27.79,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,6,30,14,30,101400,100250,99130,88.8,98.5,2.44,2.34,2.27,2.27,2.32,2.44,2.61,2.82,3.2600000000000002,64.71000000000001,75.19,82.19,91.13,98.61,105.68,111.28,116.02,121.81,26.51,26.2,26.080000000000002,25.96,25.85,25.76,25.67,25.6,25.42,N/A,N/A -2012,6,30,15,30,101380,100230,99100,92.29,1.1,8.370000000000001,8.83,8.86,8.8,8.700000000000001,8.57,8.4,8.24,7.72,49.42,49.480000000000004,49.620000000000005,49.81,50.050000000000004,50.34,50.74,51.14,52.75,25.3,24.79,24.59,24.400000000000002,24.22,24.05,23.89,23.740000000000002,23.47,N/A,N/A -2012,6,30,16,30,101390,100230,99110,89.8,127.10000000000001,6.91,7.28,7.36,7.390000000000001,7.4,7.4,7.38,7.36,7.3,17.490000000000002,17.6,17.75,17.87,17.94,17.990000000000002,18.01,18.02,17.97,26.03,25.560000000000002,25.37,25.17,24.97,24.79,24.61,24.43,24.080000000000002,N/A,N/A -2012,6,30,17,30,101400,100240,99120,92.99,21.200000000000003,6.38,6.62,6.6000000000000005,6.55,6.49,6.42,6.34,6.26,6.09,300.2,300.21,300.63,301.11,301.58,302.07,302.64,303.19,304.45,25.1,24.61,24.42,24.22,24.03,23.85,23.66,23.490000000000002,23.13,N/A,N/A -2012,6,30,18,30,101360,100200,99080,87.89,0,4.15,4.18,4.08,3.93,3.64,3.31,2.66,2.11,1.25,6.34,7.69,8.51,9.57,11.32,13.24,16.01,18.240000000000002,24.93,25.69,25.3,25.16,25.03,24.97,24.93,24.98,25.04,25.02,N/A,N/A -2012,6,30,19,30,101340,100190,99080,83.24,0,0.64,0.52,0.48,0.48,0.51,0.59,0.7000000000000001,0.8300000000000001,1.1500000000000001,64.3,86.15,99.97,118.51,133.76,148.58,159.21,168.58,179.25,26.86,26.47,26.29,26.09,25.900000000000002,25.72,25.52,25.34,24.97,N/A,N/A -2012,6,30,20,30,101320,100170,99050,84.14,0,2.22,2.34,2.38,2.41,2.44,2.47,2.5100000000000002,2.54,2.63,173.45000000000002,171.99,170.92000000000002,169.86,168.89000000000001,167.93,166.98,166.07,164.25,27.080000000000002,26.68,26.5,26.3,26.11,25.92,25.73,25.55,25.18,N/A,N/A -2012,6,30,21,30,101260,100110,99000,80.72,0,3.64,3.94,4.03,4.1,4.17,4.23,4.28,4.34,4.45,152.8,152.32,152.03,151.75,151.5,151.26,151.03,150.81,150.4,27.59,27.21,27.03,26.830000000000002,26.64,26.45,26.26,26.07,25.7,N/A,N/A -2012,6,30,22,30,101230,100080,98970,69.59,0,6.38,6.94,7.0600000000000005,7.12,7.16,7.19,7.21,7.22,7.24,148.32,148.28,148.32,148.37,148.43,148.48,148.55,148.6,148.73,28.55,28.2,28.03,27.830000000000002,27.64,27.45,27.25,27.07,26.68,N/A,N/A -2012,6,30,23,30,101230,100080,98980,76.38,0,5.78,6.26,6.390000000000001,6.47,6.53,6.57,6.61,6.65,6.7,144.08,144.39000000000001,144.62,144.83,145,145.15,145.29,145.42000000000002,145.68,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,1,0,30,101210,100060,98960,75.59,0,6.23,6.68,6.78,6.83,6.87,6.9,6.91,6.93,6.95,150.51,150.66,150.75,150.85,150.93,151.02,151.09,151.17000000000002,151.33,28.48,28.14,27.96,27.76,27.57,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,1,1,30,101200,100060,98950,81.41,0,6.2700000000000005,6.8100000000000005,6.93,6.99,7.04,7.07,7.09,7.11,7.12,143.62,143.99,144.08,144.13,144.17000000000002,144.19,144.20000000000002,144.20000000000002,144.19,28.3,27.93,27.76,27.55,27.37,27.17,26.98,26.79,26.41,N/A,N/A -2012,7,1,2,30,101200,100060,98950,80.21000000000001,0,7.4,8.01,8.14,8.21,8.25,8.28,8.290000000000001,8.3,8.3,154.01,154.21,154.26,154.29,154.34,154.37,154.41,154.45000000000002,154.52,28.1,27.72,27.54,27.34,27.150000000000002,26.96,26.76,26.580000000000002,26.2,N/A,N/A -2012,7,1,3,30,101220,100070,98970,80.33,0,7.16,7.7700000000000005,7.9,7.97,8.03,8.07,8.1,8.13,8.16,158.98,159.22,159.4,159.57,159.73,159.88,160.05,160.20000000000002,160.51,28.19,27.82,27.64,27.44,27.25,27.060000000000002,26.86,26.68,26.29,N/A,N/A -2012,7,1,4,30,101220,100080,98970,82.21000000000001,0,7.73,8.46,8.63,8.74,8.82,8.88,8.94,8.98,9.05,151.20000000000002,151.56,151.73,151.88,152.02,152.16,152.28,152.4,152.63,28.23,27.86,27.68,27.48,27.29,27.1,26.900000000000002,26.71,26.330000000000002,N/A,N/A -2012,7,1,5,30,101250,100110,99000,80.87,0,7.94,8.72,8.89,9.01,9.08,9.13,9.17,9.200000000000001,9.24,162.20000000000002,162.08,162.07,162.07,162.07,162.07,162.08,162.08,162.09,28.41,28.04,27.86,27.66,27.46,27.27,27.07,26.88,26.5,N/A,N/A -2012,7,1,6,30,101280,100140,99030,76.58,0,8.13,8.94,9.13,9.24,9.32,9.38,9.43,9.46,9.51,168.37,168.38,168.4,168.41,168.41,168.42000000000002,168.42000000000002,168.42000000000002,168.43,28.580000000000002,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,1,7,30,101350,100210,99100,80.86,19.6,8.84,9.44,9.52,9.48,9.4,9.3,9.18,9.06,8.85,185.41,185.33,185.49,185.77,186.05,186.32,186.35,186.3,185.64000000000001,27.82,27.52,27.39,27.27,27.150000000000002,27.02,26.88,26.73,26.39,N/A,N/A -2012,7,1,8,30,101380,100230,99110,81.66,8.1,7.49,8.18,8.35,8.48,8.58,8.68,8.78,8.88,9.13,190.67000000000002,189.68,189.13,188.55,187.94,187.34,186.62,185.92000000000002,183.71,27.27,26.89,26.72,26.52,26.34,26.150000000000002,25.97,25.8,25.48,N/A,N/A -2012,7,1,9,30,101390,100230,99120,82.44,0,5.86,6.34,6.46,6.53,6.58,6.62,6.66,6.69,6.74,166.03,165.93,165.9,165.89000000000001,165.87,165.85,165.83,165.82,165.77,27.310000000000002,26.93,26.76,26.560000000000002,26.36,26.17,25.98,25.8,25.42,N/A,N/A -2012,7,1,10,30,101400,100240,99140,81.58,0,6.91,7.49,7.61,7.68,7.73,7.75,7.7700000000000005,7.78,7.79,160.48,160.54,160.58,160.63,160.68,160.74,160.81,160.87,161.03,27.71,27.330000000000002,27.14,26.94,26.740000000000002,26.55,26.36,26.17,25.79,N/A,N/A -2012,7,1,11,30,101450,100300,99180,79.8,0,6.03,6.47,6.57,6.62,6.65,6.67,6.69,6.7,6.73,159.42000000000002,159.69,159.83,159.96,160.08,160.20000000000002,160.33,160.47,160.85,27.86,27.5,27.330000000000002,27.13,26.94,26.75,26.560000000000002,26.38,26.01,N/A,N/A -2012,7,1,12,30,101470,100320,99210,79.43,0,6.68,7.19,7.3,7.36,7.390000000000001,7.41,7.41,7.41,7.390000000000001,150.28,150.55,150.66,150.78,150.89000000000001,151,151.11,151.22,151.49,27.95,27.59,27.42,27.22,27.04,26.85,26.66,26.48,26.12,N/A,N/A -2012,7,1,13,30,101510,100370,99260,81.59,0,5.82,6.16,6.21,6.2,6.18,6.15,6.12,6.08,6.0200000000000005,148.79,149.31,149.85,150.48,151.15,151.86,152.75,153.65,156.26,28.05,27.7,27.53,27.330000000000002,27.150000000000002,26.97,26.79,26.62,26.29,N/A,N/A -2012,7,1,14,30,101570,100430,99310,81.43,0,5.67,6.13,6.18,6.19,6.19,6.16,6.12,6.08,5.99,130.54,131.99,132.39000000000001,132.78,133.15,133.52,133.93,134.32,135.31,27.900000000000002,27.53,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.03,N/A,N/A -2012,7,1,15,30,101700,100540,99420,86.15,35.300000000000004,9.73,10.61,10.81,10.9,10.97,11.01,11.03,11.06,11.11,179.72,179.36,179.25,179.14000000000001,179.05,178.97,178.91,178.86,178.81,26.59,26.11,25.91,25.7,25.52,25.330000000000002,25.14,24.96,24.6,N/A,N/A -2012,7,1,16,30,101750,100590,99460,82.63,2.4000000000000004,6.93,7.3500000000000005,7.43,7.45,7.47,7.46,7.46,7.46,7.43,181.88,182.09,182.21,182.33,182.46,182.59,182.74,182.89000000000001,183.24,25.85,25.38,25.18,24.98,24.78,24.6,24.41,24.23,23.86,N/A,N/A -2012,7,1,17,30,101760,100590,99460,89.81,43.5,2.85,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.0100000000000002,3,2.99,2.98,2.94,277.92,277.09000000000003,278.02,278.93,279.83,280.66,281.72,282.7,285.29,24.91,24.47,24.29,24.09,23.900000000000002,23.72,23.53,23.37,23.01,N/A,N/A -2012,7,1,18,30,101780,100610,99480,89.7,74.3,5.74,6.03,6.05,6.04,6.0200000000000005,5.98,5.93,5.88,5.75,256.47,255.57,255.70000000000002,255.79,255.89000000000001,255.98000000000002,256.08,256.19,256.49,24.78,24.3,24.1,23.91,23.72,23.54,23.35,23.19,22.84,N/A,N/A -2012,7,1,19,30,101770,100600,99470,84.75,0,2.11,2.23,2.24,2.2600000000000002,2.2800000000000002,2.31,2.34,2.36,2.47,281.5,279.18,277.48,275.68,273.89,272.09000000000003,269.98,267.91,261.91,25.11,24.69,24.51,24.310000000000002,24.12,23.94,23.76,23.580000000000002,23.240000000000002,N/A,N/A -2012,7,1,20,30,101700,100540,99420,82.82000000000001,0,1.27,1.3900000000000001,1.45,1.52,1.6300000000000001,1.8,2.19,2.7800000000000002,3.39,208.20000000000002,206.76,206.9,206.85,206.37,205.49,202.71,198.39000000000001,185.64000000000001,26.04,25.67,25.51,25.34,25.19,25.07,25.14,25.27,25.67,N/A,N/A -2012,7,1,21,30,101680,100530,99410,81.78,0,3.93,4.14,4.18,4.2,4.22,4.23,4.25,4.28,4.39,126.27,126.92,127.38000000000001,127.87,128.41,128.98,129.72,130.46,132.7,26.78,26.39,26.21,26.01,25.82,25.64,25.46,25.29,24.95,N/A,N/A -2012,7,1,22,30,101650,100490,99370,83.36,0,4.87,5.18,5.25,5.28,5.3100000000000005,5.34,5.36,5.38,5.43,112.58,113.10000000000001,113.4,113.74000000000001,114.06,114.38,114.76,115.14,116.11,26.88,26.48,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A -2012,7,1,23,30,101590,100440,99330,82.5,0,5.73,6.09,6.16,6.18,6.19,6.19,6.18,6.18,6.15,124.19,124.54,124.66,124.78,124.88000000000001,124.97,125.06,125.16,125.37,27.54,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.19,26,25.62,N/A,N/A -2012,7,2,0,30,101560,100410,99290,84.51,0,5.99,6.4,6.48,6.5200000000000005,6.53,6.54,6.53,6.53,6.5,136.4,136.64000000000001,136.75,136.86,136.98,137.1,137.23,137.36,137.67000000000002,27.580000000000002,27.2,27.02,26.82,26.63,26.44,26.240000000000002,26.05,25.68,N/A,N/A -2012,7,2,1,30,101560,100410,99300,86,0,6.32,6.8,6.9,6.95,6.99,7.01,7.0200000000000005,7.0200000000000005,7.03,141.28,141.48,141.57,141.66,141.75,141.84,141.93,142.02,142.23,27.61,27.23,27.05,26.84,26.650000000000002,26.46,26.27,26.080000000000002,25.7,N/A,N/A -2012,7,2,2,30,101540,100390,99280,86.5,0,7.29,7.890000000000001,8.01,8.08,8.120000000000001,8.14,8.16,8.17,8.18,144.81,144.88,144.95000000000002,145.02,145.07,145.13,145.18,145.24,145.35,27.740000000000002,27.35,27.17,26.97,26.77,26.580000000000002,26.38,26.2,25.82,N/A,N/A -2012,7,2,3,30,101550,100400,99290,87.92,0,7,7.55,7.67,7.72,7.75,7.76,7.76,7.76,7.73,143.16,143.43,143.63,143.85,144.07,144.28,144.51,144.74,145.24,27.7,27.310000000000002,27.12,26.91,26.72,26.52,26.330000000000002,26.14,25.75,N/A,N/A -2012,7,2,4,30,101550,100410,99300,85.15,0,6.71,7.26,7.38,7.44,7.49,7.5200000000000005,7.54,7.55,7.57,148,148.17000000000002,148.29,148.42000000000002,148.54,148.66,148.79,148.91,149.18,28,27.63,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.1,N/A,N/A -2012,7,2,5,30,101560,100420,99300,86.52,0,6.5200000000000005,7.04,7.16,7.23,7.2700000000000005,7.3,7.32,7.33,7.3500000000000005,158.67000000000002,158.94,159.05,159.17000000000002,159.28,159.38,159.49,159.6,159.83,28.04,27.68,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A -2012,7,2,6,30,101580,100430,99320,84.91,0,6.32,6.82,6.92,6.96,6.99,7,7.01,7.01,7.01,160.76,160.77,160.95000000000002,161.18,161.43,161.69,162,162.32,163.12,28.12,27.77,27.6,27.41,27.22,27.03,26.85,26.67,26.310000000000002,N/A,N/A -2012,7,2,7,30,101630,100480,99370,86.03,0,6.16,6.68,6.8,6.87,6.92,6.95,6.98,7,7.03,160.43,161.07,161.32,161.54,161.73,161.89000000000001,162.04,162.18,162.44,28.14,27.79,27.62,27.42,27.23,27.04,26.85,26.67,26.29,N/A,N/A -2012,7,2,8,30,101630,100480,99370,85.75,0,5.87,6.3500000000000005,6.45,6.51,6.54,6.5600000000000005,6.57,6.58,6.59,163.33,163.75,163.97,164.23,164.48,164.72,164.98,165.22,165.74,28.14,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A -2012,7,2,9,30,101680,100530,99420,84.28,0,5.26,5.66,5.73,5.76,5.79,5.8,5.8,5.8,5.8,158.88,159.33,159.68,160.04,160.39000000000001,160.73,161.08,161.42000000000002,162.14000000000001,28.240000000000002,27.91,27.740000000000002,27.54,27.35,27.17,26.97,26.79,26.42,N/A,N/A -2012,7,2,10,30,101710,100560,99450,84.98,0,4.72,5.12,5.21,5.2700000000000005,5.32,5.36,5.4,5.43,5.5200000000000005,152.92000000000002,153.36,153.65,153.93,154.21,154.48,154.79,155.08,155.82,28.13,27.8,27.64,27.45,27.27,27.09,26.91,26.740000000000002,26.400000000000002,N/A,N/A -2012,7,2,11,30,101770,100620,99510,85.79,0,4.6000000000000005,4.94,5.0200000000000005,5.07,5.11,5.13,5.15,5.17,5.2,153.13,153.86,154.26,154.67000000000002,155.05,155.42000000000002,155.8,156.15,156.9,28.17,27.830000000000002,27.66,27.46,27.27,27.080000000000002,26.89,26.7,26.32,N/A,N/A -2012,7,2,12,30,101800,100650,99540,85.78,0,5.15,5.55,5.63,5.67,5.69,5.7,5.71,5.71,5.7,166.58,166.39000000000001,166.34,166.31,166.28,166.27,166.25,166.23,166.21,28.27,27.94,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A -2012,7,2,13,30,101830,100680,99570,86.99,0,5.23,5.62,5.69,5.73,5.75,5.76,5.76,5.76,5.76,156.19,156.58,156.78,156.96,157.11,157.26,157.41,157.55,157.86,28.150000000000002,27.82,27.64,27.44,27.25,27.07,26.87,26.69,26.310000000000002,N/A,N/A -2012,7,2,14,30,101870,100720,99610,85.76,0,4.38,4.73,4.8100000000000005,4.86,4.9,4.93,4.96,4.97,5.01,153.45000000000002,153.28,153.32,153.37,153.41,153.45000000000002,153.49,153.54,153.64000000000001,28.240000000000002,27.900000000000002,27.73,27.54,27.35,27.150000000000002,26.96,26.77,26.39,N/A,N/A -2012,7,2,15,30,101880,100730,99620,85.93,0,4.97,5.29,5.3500000000000005,5.37,5.38,5.38,5.37,5.37,5.3500000000000005,162.12,162.09,162.03,161.97,161.91,161.84,161.78,161.72,161.58,28.26,27.92,27.75,27.55,27.36,27.18,26.98,26.8,26.42,N/A,N/A -2012,7,2,16,30,101890,100740,99620,84.94,0,6.15,6.6000000000000005,6.68,6.71,6.73,6.74,6.74,6.74,6.72,147.69,147.81,147.88,147.94,148,148.05,148.11,148.16,148.3,28.26,27.92,27.75,27.55,27.36,27.18,26.990000000000002,26.810000000000002,26.44,N/A,N/A -2012,7,2,17,30,101840,100690,99580,87.18,0,5.75,6.18,6.2700000000000005,6.32,6.3500000000000005,6.37,6.38,6.38,6.38,148.55,148.74,148.89000000000001,149.05,149.20000000000002,149.34,149.48,149.62,149.91,28.2,27.84,27.67,27.46,27.28,27.080000000000002,26.89,26.7,26.32,N/A,N/A -2012,7,2,18,30,101820,100670,99560,83.74,0,5.5,5.87,5.94,5.96,5.97,5.97,5.96,5.95,5.91,160.12,160.19,160.22,160.27,160.33,160.38,160.44,160.5,160.61,28.19,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,7,2,19,30,101800,100650,99540,83.21000000000001,0,4.99,5.32,5.37,5.39,5.4,5.4,5.39,5.39,5.36,155.59,155.63,155.74,155.85,155.96,156.05,156.16,156.25,156.47,28.16,27.8,27.62,27.42,27.23,27.04,26.85,26.66,26.28,N/A,N/A -2012,7,2,20,30,101770,100620,99510,81.91,0,4.76,5.08,5.13,5.15,5.16,5.16,5.16,5.15,5.14,151.32,151.59,151.78,151.96,152.13,152.29,152.46,152.62,152.95000000000002,28.17,27.810000000000002,27.64,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A -2012,7,2,21,30,101780,100630,99520,79.15,0,4.28,4.5600000000000005,4.62,4.65,4.67,4.69,4.7,4.71,4.73,157.73,157.57,157.5,157.44,157.38,157.32,157.27,157.21,157.1,28.26,27.91,27.740000000000002,27.54,27.35,27.16,26.96,26.78,26.400000000000002,N/A,N/A -2012,7,2,22,30,101710,100560,99450,81.11,0,5.11,5.47,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,5.6000000000000005,161.33,160.99,160.86,160.71,160.59,160.47,160.33,160.21,159.99,28.150000000000002,27.8,27.62,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A -2012,7,2,23,30,101730,100580,99470,84.37,0,5.62,6.08,6.17,6.22,6.25,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.2700000000000005,158.05,158.49,158.75,159.01,159.26,159.5,159.75,159.98,160.48,28.11,27.77,27.59,27.39,27.2,27.01,26.810000000000002,26.63,26.240000000000002,N/A,N/A -2012,7,3,0,30,101710,100560,99440,81.36,0,5.04,5.42,5.5,5.54,5.5600000000000005,5.58,5.6000000000000005,5.61,5.62,165.96,165.92000000000002,165.91,165.89000000000001,165.86,165.84,165.81,165.78,165.73,28.11,27.77,27.6,27.400000000000002,27.21,27.02,26.82,26.64,26.26,N/A,N/A -2012,7,3,1,30,101650,100500,99380,83,0,5.48,5.86,5.94,5.97,5.99,6,6,6,5.99,160.78,160.85,160.88,160.92000000000002,160.97,161.02,161.08,161.13,161.25,27.900000000000002,27.55,27.37,27.17,26.98,26.79,26.6,26.42,26.03,N/A,N/A -2012,7,3,2,30,101660,100510,99400,84.15,0,5.9,6.37,6.46,6.51,6.55,6.57,6.58,6.59,6.6000000000000005,157.51,157.37,157.27,157.16,157.05,156.96,156.85,156.74,156.52,27.82,27.46,27.28,27.07,26.89,26.69,26.490000000000002,26.310000000000002,25.92,N/A,N/A -2012,7,3,3,30,101670,100520,99410,86.51,0,6.43,7.03,7.16,7.24,7.3,7.34,7.37,7.4,7.43,169.18,168.93,168.79,168.66,168.54,168.43,168.32,168.21,168.01,27.75,27.38,27.2,27,26.8,26.61,26.42,26.23,25.84,N/A,N/A -2012,7,3,4,30,101660,100510,99400,82.28,0,6.19,6.67,6.78,6.83,6.87,6.890000000000001,6.91,6.92,6.94,171.67000000000002,171.25,171.06,170.88,170.73,170.6,170.46,170.34,170.08,27.73,27.37,27.19,26.990000000000002,26.8,26.6,26.41,26.22,25.84,N/A,N/A -2012,7,3,5,30,101680,100530,99420,80.8,0,6.42,6.9,7,7.04,7.07,7.08,7.08,7.09,7.09,179.37,178.56,178.03,177.49,177.01,176.54,176.07,175.62,174.70000000000002,27.95,27.6,27.42,27.22,27.03,26.85,26.650000000000002,26.47,26.09,N/A,N/A -2012,7,3,6,30,101670,100520,99410,83.9,0,6.34,6.86,6.99,7.0600000000000005,7.11,7.15,7.17,7.2,7.23,177.3,177.17000000000002,177.14000000000001,177.11,177.07,177.04,177,176.97,176.88,27.68,27.310000000000002,27.14,26.93,26.740000000000002,26.55,26.35,26.16,25.78,N/A,N/A -2012,7,3,7,30,101680,100530,99420,77.68,0,6.44,6.95,7.07,7.140000000000001,7.19,7.23,7.26,7.29,7.3500000000000005,183.09,182.68,182.37,182.04,181.73,181.43,181.13,180.85,180.26,27.990000000000002,27.650000000000002,27.48,27.29,27.1,26.92,26.73,26.55,26.18,N/A,N/A -2012,7,3,8,30,101720,100570,99450,78.63,0,5.26,5.68,5.7700000000000005,5.83,5.87,5.91,5.94,5.97,6.0200000000000005,188.81,188.22,187.9,187.58,187.27,186.97,186.65,186.35,185.70000000000002,27.92,27.57,27.400000000000002,27.21,27.03,26.84,26.650000000000002,26.48,26.11,N/A,N/A -2012,7,3,9,30,101740,100590,99470,77.43,0,5.6000000000000005,6.09,6.2,6.28,6.33,6.38,6.41,6.44,6.49,178.45000000000002,178.17000000000002,178.07,177.98,177.9,177.82,177.75,177.69,177.56,27.93,27.580000000000002,27.400000000000002,27.21,27.01,26.82,26.63,26.44,26.05,N/A,N/A -2012,7,3,10,30,101750,100590,99480,79.95,0,5.8500000000000005,6.32,6.41,6.47,6.5,6.5200000000000005,6.54,6.55,6.5600000000000005,179.71,179.63,179.58,179.52,179.46,179.41,179.35,179.29,179.18,27.75,27.39,27.22,27.02,26.82,26.63,26.43,26.25,25.86,N/A,N/A -2012,7,3,11,30,101750,100600,99480,76.93,0,4.95,5.33,5.42,5.48,5.53,5.5600000000000005,5.59,5.61,5.65,179.79,179.57,179.5,179.45000000000002,179.4,179.37,179.35,179.32,179.32,27.740000000000002,27.39,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A -2012,7,3,12,30,101790,100640,99530,72.04,0,5.04,5.42,5.51,5.5600000000000005,5.6000000000000005,5.63,5.66,5.68,5.71,186.58,186.38,186.27,186.16,186.06,185.97,185.88,185.8,185.63,27.96,27.63,27.46,27.26,27.07,26.88,26.68,26.5,26.12,N/A,N/A -2012,7,3,13,30,101800,100640,99530,77.11,0,4.67,4.91,4.93,4.92,4.9,4.87,4.84,4.8100000000000005,4.75,176.11,176.36,176.57,176.79,177,177.20000000000002,177.42000000000002,177.62,178.06,27.68,27.330000000000002,27.150000000000002,26.96,26.76,26.57,26.38,26.19,25.810000000000002,N/A,N/A -2012,7,3,14,30,101820,100660,99550,69.66,0,3.27,3.52,3.59,3.64,3.68,3.72,3.7600000000000002,3.79,3.86,178.59,178.16,177.97,177.81,177.68,177.57,177.47,177.39000000000001,177.24,27.900000000000002,27.57,27.400000000000002,27.21,27.02,26.830000000000002,26.63,26.45,26.07,N/A,N/A -2012,7,3,15,30,101830,100680,99560,68.22,0,3.48,3.65,3.67,3.68,3.68,3.68,3.68,3.68,3.68,173.31,172.98,172.71,172.41,172.12,171.84,171.53,171.24,170.6,28.080000000000002,27.75,27.580000000000002,27.39,27.2,27.02,26.830000000000002,26.650000000000002,26.27,N/A,N/A -2012,7,3,16,30,101820,100670,99550,68.25,0,3.9,4.03,4.01,3.97,3.93,3.89,3.85,3.81,3.71,167.3,167.48,167.56,167.63,167.71,167.77,167.84,167.9,168.05,28.060000000000002,27.72,27.55,27.35,27.16,26.97,26.78,26.59,26.21,N/A,N/A -2012,7,3,17,30,101810,100650,99540,67.71000000000001,0,4.09,4.29,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.28,4.25,168.98,169.11,169.21,169.32,169.42000000000002,169.52,169.62,169.71,169.9,28.17,27.82,27.650000000000002,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A -2012,7,3,18,30,101800,100640,99530,66.89,0,4.2700000000000005,4.5,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.51,4.5,4.49,4.46,160.83,161.64000000000001,162.13,162.61,163.04,163.43,163.84,164.22,164.97,28.34,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A -2012,7,3,19,30,101760,100610,99490,72.04,0,3.9,4.14,4.19,4.22,4.24,4.25,4.26,4.2700000000000005,4.2700000000000005,162.83,162.84,162.82,162.78,162.74,162.70000000000002,162.66,162.61,162.53,28.17,27.810000000000002,27.63,27.43,27.240000000000002,27.05,26.85,26.66,26.27,N/A,N/A -2012,7,3,20,30,101720,100570,99450,63.58,0,4.41,4.7,4.75,4.78,4.79,4.8100000000000005,4.82,4.82,4.82,161.37,161.42000000000002,161.4,161.37,161.36,161.35,161.36,161.36,161.41,28.580000000000002,28.26,28.080000000000002,27.89,27.7,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,3,21,30,101650,100500,99390,62.61,0,4.74,5.12,5.2,5.24,5.2700000000000005,5.29,5.3100000000000005,5.32,5.33,163.35,163.1,163.03,162.96,162.9,162.84,162.79,162.75,162.68,28.66,28.35,28.18,27.98,27.79,27.61,27.41,27.23,26.84,N/A,N/A -2012,7,3,22,30,101620,100470,99360,64.65,0,4.66,5.03,5.1000000000000005,5.14,5.17,5.19,5.2,5.22,5.24,172.55,172.51,172.44,172.38,172.31,172.25,172.19,172.14000000000001,172.02,28.53,28.23,28.060000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A -2012,7,3,23,30,101560,100420,99300,71.5,0,5.25,5.65,5.73,5.76,5.79,5.8,5.8100000000000005,5.82,5.82,173.13,173.06,173.07,173.1,173.13,173.17000000000002,173.20000000000002,173.24,173.32,28.26,27.93,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A -2012,7,4,0,30,101530,100380,99270,72.55,0,5.09,5.45,5.5200000000000005,5.55,5.57,5.58,5.58,5.58,5.58,169.4,169.61,169.79,169.95000000000002,170.08,170.19,170.31,170.43,170.63,28.01,27.68,27.51,27.32,27.13,26.94,26.75,26.560000000000002,26.19,N/A,N/A -2012,7,4,1,30,101530,100380,99270,74.41,0,4.93,5.28,5.34,5.37,5.39,5.39,5.4,5.4,5.39,167.58,167.76,167.81,167.87,167.91,167.96,168.02,168.06,168.16,27.830000000000002,27.490000000000002,27.310000000000002,27.11,26.92,26.73,26.53,26.35,25.96,N/A,N/A -2012,7,4,2,30,101530,100380,99270,74.11,0,5.46,5.8500000000000005,5.92,5.95,5.97,5.98,5.99,5.99,5.99,159.49,159.55,159.6,159.66,159.71,159.76,159.81,159.87,159.99,27.8,27.46,27.28,27.09,26.900000000000002,26.71,26.52,26.34,25.96,N/A,N/A -2012,7,4,3,30,101540,100390,99280,71.96000000000001,0,5.41,5.84,5.93,5.98,6.01,6.03,6.04,6.05,6.04,168.01,167.89000000000001,167.88,167.87,167.85,167.84,167.83,167.81,167.78,27.88,27.54,27.36,27.17,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A -2012,7,4,4,30,101540,100390,99270,68.15,0,5.91,6.38,6.49,6.5600000000000005,6.6000000000000005,6.640000000000001,6.67,6.69,6.72,170.94,171.02,171.01,170.99,170.97,170.95000000000002,170.93,170.91,170.88,27.98,27.650000000000002,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.12,N/A,N/A -2012,7,4,5,30,101560,100410,99290,71.36,0,5.64,6.09,6.2,6.28,6.34,6.390000000000001,6.44,6.48,6.5600000000000005,168.69,168.77,168.78,168.79,168.79,168.79,168.78,168.78,168.76,27.86,27.53,27.36,27.16,26.97,26.79,26.6,26.42,26.04,N/A,N/A -2012,7,4,6,30,101610,100460,99350,78.25,0,6.54,7.03,7.12,7.15,7.17,7.17,7.15,7.140000000000001,7.09,164.25,164.45000000000002,164.5,164.53,164.54,164.55,164.54,164.53,164.49,27.650000000000002,27.28,27.1,26.900000000000002,26.71,26.51,26.310000000000002,26.13,25.740000000000002,N/A,N/A -2012,7,4,7,30,101620,100470,99350,79.45,0,6.41,6.92,7.03,7.09,7.13,7.15,7.17,7.18,7.19,173.39000000000001,173.33,173.27,173.21,173.14000000000001,173.08,173.02,172.96,172.83,27.64,27.26,27.080000000000002,26.88,26.69,26.5,26.3,26.12,25.73,N/A,N/A -2012,7,4,8,30,101610,100450,99340,78.47,0,6.68,7.21,7.3,7.3500000000000005,7.37,7.38,7.38,7.38,7.3500000000000005,165.45000000000002,165.43,165.43,165.42000000000002,165.42000000000002,165.42000000000002,165.42000000000002,165.42000000000002,165.41,27.77,27.39,27.21,27.01,26.82,26.63,26.43,26.240000000000002,25.85,N/A,N/A -2012,7,4,9,30,101630,100480,99370,71.33,0,5.89,6.41,6.54,6.640000000000001,6.71,6.7700000000000005,6.82,6.87,6.96,176.51,176.3,176.20000000000002,176.11,176.02,175.95000000000002,175.87,175.81,175.69,28.150000000000002,27.810000000000002,27.64,27.44,27.25,27.060000000000002,26.87,26.68,26.3,N/A,N/A -2012,7,4,10,30,101660,100510,99390,72.55,0,6.19,6.68,6.8,6.86,6.91,6.95,6.97,7,7.03,171.53,171.61,171.62,171.63,171.62,171.62,171.61,171.6,171.58,28.19,27.85,27.68,27.48,27.29,27.1,26.91,26.72,26.34,N/A,N/A -2012,7,4,11,30,101660,100510,99400,75.29,0,5.09,5.45,5.53,5.58,5.61,5.64,5.66,5.67,5.69,176.4,176.54,176.65,176.76,176.87,176.97,177.07,177.17000000000002,177.37,27.97,27.63,27.46,27.26,27.07,26.88,26.69,26.5,26.13,N/A,N/A -2012,7,4,12,30,101670,100520,99410,81.73,0,4.69,5.07,5.15,5.22,5.26,5.29,5.32,5.34,5.37,170.37,169.91,169.82,169.74,169.69,169.65,169.62,169.6,169.56,27.580000000000002,27.21,27.03,26.82,26.63,26.43,26.23,26.04,25.66,N/A,N/A -2012,7,4,13,30,101690,100540,99420,80.61,0,4.6000000000000005,4.93,5.01,5.0600000000000005,5.09,5.12,5.15,5.17,5.21,168.64000000000001,168.29,168.13,167.98,167.85,167.74,167.63,167.54,167.35,27.67,27.310000000000002,27.13,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A -2012,7,4,14,30,101730,100570,99460,81.29,0,5.21,5.51,5.5600000000000005,5.57,5.57,5.57,5.5600000000000005,5.55,5.51,155.8,155.94,156.06,156.18,156.28,156.38,156.49,156.59,156.8,27.78,27.41,27.23,27.03,26.84,26.650000000000002,26.45,26.26,25.88,N/A,N/A -2012,7,4,15,30,101730,100580,99460,79.78,0,4.8100000000000005,5.16,5.24,5.29,5.33,5.36,5.39,5.41,5.44,155.96,156.32,156.52,156.70000000000002,156.86,157.02,157.16,157.29,157.55,27.93,27.560000000000002,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A -2012,7,4,16,30,101730,100580,99470,78.9,0,4.4,4.65,4.69,4.7,4.71,4.71,4.7,4.7,4.68,153.03,153.26,153.45000000000002,153.65,153.86,154.08,154.3,154.52,155.02,28.07,27.71,27.54,27.34,27.14,26.96,26.76,26.57,26.19,N/A,N/A -2012,7,4,17,30,101740,100590,99480,78.33,0,4.12,4.36,4.4,4.42,4.43,4.43,4.43,4.43,4.42,138.65,138.73,138.88,139.04,139.20000000000002,139.37,139.54,139.70000000000002,140.08,28.16,27.810000000000002,27.64,27.43,27.240000000000002,27.05,26.85,26.67,26.29,N/A,N/A -2012,7,4,18,30,101720,100570,99460,79.79,0,4.7700000000000005,5.11,5.2,5.25,5.29,5.32,5.3500000000000005,5.37,5.42,151.58,151.8,151.91,152.05,152.18,152.32,152.47,152.62,152.91,28.2,27.84,27.67,27.46,27.28,27.080000000000002,26.89,26.7,26.32,N/A,N/A -2012,7,4,19,30,101670,100520,99410,81.63,0,6.21,6.68,6.78,6.82,6.8500000000000005,6.88,6.890000000000001,6.9,6.9,136.73,137.21,137.42000000000002,137.6,137.76,137.92000000000002,138.07,138.22,138.51,28.23,27.87,27.69,27.490000000000002,27.3,27.11,26.91,26.73,26.34,N/A,N/A -2012,7,4,20,30,101660,100510,99400,81.17,0,5.8,6.26,6.36,6.42,6.46,6.5,6.5200000000000005,6.54,6.57,139.45000000000002,139.37,139.47,139.6,139.73,139.86,140,140.13,140.44,28.29,27.93,27.76,27.560000000000002,27.37,27.18,26.98,26.8,26.42,N/A,N/A -2012,7,4,21,30,101620,100470,99360,74.86,0,5.62,6.04,6.12,6.16,6.19,6.2,6.21,6.21,6.22,166.98,167.11,167.18,167.24,167.29,167.34,167.4,167.44,167.55,28.51,28.18,28.01,27.810000000000002,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A -2012,7,4,22,30,101650,100500,99390,81.10000000000001,0,5.23,5.61,5.7,5.74,5.7700000000000005,5.8,5.8100000000000005,5.82,5.84,179.20000000000002,179.34,179.35,179.38,179.41,179.45000000000002,179.5,179.54,179.64000000000001,28.27,27.92,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A -2012,7,4,23,30,101610,100460,99350,80.02,0,5.21,5.57,5.63,5.66,5.67,5.67,5.67,5.66,5.64,186.46,186.22,186.20000000000002,186.20000000000002,186.19,186.19,186.19,186.18,186.19,28.330000000000002,27.990000000000002,27.82,27.61,27.43,27.23,27.04,26.85,26.47,N/A,N/A -2012,7,5,0,30,101550,100400,99290,81.01,0,5.22,5.59,5.66,5.69,5.71,5.72,5.73,5.73,5.73,171.97,172.44,172.75,173.04,173.28,173.51,173.73,173.94,174.34,28.21,27.86,27.68,27.490000000000002,27.29,27.1,26.91,26.72,26.34,N/A,N/A -2012,7,5,1,30,101520,100370,99260,83.53,0,4.7700000000000005,5.1000000000000005,5.17,5.22,5.25,5.2700000000000005,5.29,5.3,5.32,175.75,176.5,176.61,176.67000000000002,176.70000000000002,176.70000000000002,176.69,176.68,176.61,28.14,27.79,27.62,27.42,27.23,27.04,26.84,26.66,26.27,N/A,N/A -2012,7,5,2,30,101530,100390,99280,79.34,0,6.57,7.07,7.16,7.21,7.23,7.24,7.24,7.23,7.21,182.97,183.29,183.42000000000002,183.55,183.67000000000002,183.78,183.89000000000001,183.99,184.20000000000002,28.080000000000002,27.72,27.54,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.2,N/A,N/A -2012,7,5,3,30,101560,100410,99300,76.01,0,5.33,5.73,5.82,5.86,5.89,5.91,5.92,5.93,5.94,190.53,190.61,190.65,190.67000000000002,190.68,190.68,190.68,190.68,190.67000000000002,28.14,27.8,27.62,27.43,27.23,27.04,26.85,26.66,26.27,N/A,N/A -2012,7,5,4,30,101560,100410,99300,77.41,0,5.29,5.65,5.71,5.74,5.75,5.76,5.75,5.75,5.73,179.13,179.44,179.59,179.72,179.83,179.93,180.03,180.12,180.31,28.01,27.650000000000002,27.48,27.28,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,7,5,5,30,101560,100420,99300,76.08,0,5.17,5.54,5.61,5.64,5.67,5.68,5.69,5.7,5.7,175.58,175.91,176.13,176.32,176.49,176.65,176.8,176.94,177.21,28,27.650000000000002,27.47,27.27,27.080000000000002,26.89,26.69,26.51,26.12,N/A,N/A -2012,7,5,6,30,101550,100400,99290,73.83,0,5.0200000000000005,5.38,5.46,5.5,5.53,5.55,5.57,5.58,5.61,178.1,177.93,177.88,177.85,177.81,177.79,177.76,177.74,177.71,27.990000000000002,27.64,27.46,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A -2012,7,5,7,30,101610,100460,99350,71.89,0,5.64,6.05,6.140000000000001,6.18,6.21,6.23,6.24,6.25,6.25,178.8,178.9,178.9,178.91,178.92000000000002,178.93,178.96,178.98,179.03,28.11,27.76,27.59,27.39,27.2,27.01,26.810000000000002,26.62,26.240000000000002,N/A,N/A -2012,7,5,8,30,101630,100480,99360,68.19,0,5.4,5.79,5.86,5.89,5.91,5.93,5.94,5.95,5.95,195.13,194.77,194.56,194.37,194.18,194.01,193.84,193.68,193.36,28.22,27.88,27.71,27.51,27.32,27.13,26.93,26.75,26.36,N/A,N/A -2012,7,5,9,30,101600,100450,99330,67.14,0,5.84,6.28,6.37,6.41,6.44,6.45,6.47,6.48,6.48,186.17000000000002,186.46,186.59,186.70000000000002,186.79,186.87,186.93,186.99,187.1,28.21,27.87,27.7,27.5,27.310000000000002,27.12,26.92,26.740000000000002,26.36,N/A,N/A -2012,7,5,10,30,101650,100500,99380,68.31,0,5.3,5.69,5.76,5.8,5.82,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,185.82,185.74,185.66,185.58,185.51,185.44,185.38,185.32,185.23,28.21,27.87,27.7,27.5,27.310000000000002,27.12,26.93,26.740000000000002,26.36,N/A,N/A -2012,7,5,11,30,101700,100550,99430,68.66,0,4.83,5.15,5.21,5.23,5.24,5.24,5.24,5.23,5.22,189.65,190.01,190.17000000000002,190.32,190.45000000000002,190.56,190.67000000000002,190.77,190.97,28.150000000000002,27.810000000000002,27.63,27.44,27.25,27.060000000000002,26.86,26.67,26.29,N/A,N/A -2012,7,5,12,30,101710,100560,99440,70.09,0,4.37,4.66,4.72,4.76,4.79,4.82,4.84,4.86,4.9,190.47,190.9,191.03,191.11,191.17000000000002,191.23000000000002,191.27,191.29,191.33,27.95,27.6,27.42,27.22,27.03,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,7,5,13,30,101760,100610,99490,75.88,0,4.16,4.42,4.47,4.5,4.51,4.53,4.54,4.54,4.55,197.57,196.91,196.62,196.35,196.12,195.9,195.70000000000002,195.51,195.15,27.740000000000002,27.39,27.21,27,26.810000000000002,26.62,26.42,26.240000000000002,25.85,N/A,N/A -2012,7,5,14,30,101780,100630,99510,76.28,0,3.7800000000000002,3.98,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,3.99,197.19,196.72,196.42000000000002,196.12,195.85,195.6,195.34,195.11,194.61,27.76,27.400000000000002,27.22,27.02,26.830000000000002,26.64,26.44,26.26,25.87,N/A,N/A -2012,7,5,15,30,101800,100640,99530,71.79,0,3.29,3.43,3.45,3.45,3.44,3.44,3.43,3.42,3.4,189.56,189.75,189.89000000000001,190.01,190.12,190.22,190.3,190.37,190.51,27.94,27.59,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.060000000000002,N/A,N/A -2012,7,5,16,30,101800,100650,99530,70.5,0,2.35,2.45,2.47,2.48,2.49,2.49,2.5,2.5,2.5,192.53,192.31,192.08,191.84,191.62,191.42000000000002,191.20000000000002,191,190.57,28.04,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.17,N/A,N/A -2012,7,5,17,30,101790,100630,99520,69.8,0,3.0500000000000003,3.2,3.21,3.22,3.23,3.23,3.23,3.23,3.22,176.66,176.96,177.08,177.20000000000002,177.32,177.43,177.57,177.69,177.95000000000002,28.11,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A -2012,7,5,18,30,101760,100600,99490,67.8,0,3.5,3.69,3.72,3.74,3.7600000000000002,3.77,3.7800000000000002,3.7800000000000002,3.8000000000000003,181.21,181.25,181.28,181.33,181.39000000000001,181.45000000000002,181.52,181.58,181.70000000000002,28.310000000000002,27.95,27.78,27.580000000000002,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A -2012,7,5,19,30,101750,100590,99480,69.58,0,3.79,4.01,4.04,4.07,4.08,4.08,4.09,4.09,4.09,183.38,182.5,182.08,181.68,181.32,180.99,180.66,180.36,179.76,28.32,27.95,27.77,27.57,27.38,27.18,26.990000000000002,26.8,26.41,N/A,N/A -2012,7,5,20,30,101690,100540,99430,66.82000000000001,0,4.38,4.61,4.63,4.63,4.62,4.61,4.6000000000000005,4.58,4.54,177.89000000000001,178.04,178.20000000000002,178.35,178.48,178.6,178.73,178.85,179.09,28.45,28.09,27.92,27.72,27.53,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,7,5,21,30,101660,100510,99400,67.41,0,4.26,4.57,4.63,4.66,4.69,4.72,4.73,4.75,4.78,182.58,182.41,182.29,182.16,182.05,181.95000000000002,181.85,181.75,181.56,28.43,28.09,27.91,27.72,27.52,27.330000000000002,27.14,26.95,26.560000000000002,N/A,N/A -2012,7,5,22,30,101640,100490,99380,68.08,0,4.45,4.75,4.79,4.82,4.83,4.83,4.83,4.83,4.82,176.42000000000002,176.46,176.45000000000002,176.42000000000002,176.41,176.4,176.38,176.37,176.34,28.38,28.04,27.87,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A -2012,7,5,23,30,101610,100460,99350,65.77,0,5.05,5.4,5.46,5.5,5.5200000000000005,5.53,5.54,5.55,5.5600000000000005,182.28,182.35,182.36,182.37,182.38,182.4,182.41,182.42000000000002,182.44,28.42,28.09,27.93,27.73,27.54,27.36,27.16,26.98,26.6,N/A,N/A -2012,7,6,0,30,101600,100450,99330,68.37,0,4.83,5.19,5.26,5.29,5.32,5.33,5.3500000000000005,5.3500000000000005,5.36,176.17000000000002,176.13,176.15,176.18,176.20000000000002,176.22,176.25,176.27,176.31,28.3,27.96,27.79,27.59,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,7,6,1,30,101550,100400,99290,65.77,0,5.5200000000000005,5.88,5.94,5.95,5.96,5.95,5.95,5.93,5.9,177.61,178.02,178.31,178.6,178.88,179.14000000000001,179.42000000000002,179.68,180.23,28.28,27.95,27.77,27.57,27.39,27.19,27,26.810000000000002,26.43,N/A,N/A -2012,7,6,2,30,101580,100420,99310,66.97,0,5.34,5.71,5.7700000000000005,5.79,5.8,5.8,5.79,5.78,5.75,183.26,183.33,183.34,183.35,183.35,183.35,183.35,183.35,183.34,28.240000000000002,27.900000000000002,27.73,27.54,27.34,27.150000000000002,26.96,26.77,26.38,N/A,N/A -2012,7,6,3,30,101580,100430,99320,62.22,0,4.99,5.37,5.44,5.49,5.5200000000000005,5.55,5.57,5.58,5.61,182.75,182.61,182.51,182.43,182.36,182.29,182.22,182.17000000000002,182.05,28.36,28.03,27.86,27.67,27.48,27.29,27.09,26.91,26.53,N/A,N/A -2012,7,6,4,30,101590,100430,99320,67.27,0,5.41,5.7700000000000005,5.83,5.8500000000000005,5.86,5.86,5.84,5.83,5.8,177.93,177.95000000000002,177.95000000000002,177.95000000000002,177.94,177.93,177.92000000000002,177.91,177.89000000000001,28.18,27.84,27.67,27.47,27.28,27.09,26.89,26.71,26.32,N/A,N/A -2012,7,6,5,30,101590,100440,99320,59.300000000000004,0,4.66,5.04,5.13,5.19,5.24,5.28,5.3100000000000005,5.34,5.4,188.15,187.77,187.53,187.28,187.05,186.83,186.6,186.38,185.9,28.490000000000002,28.17,28,27.810000000000002,27.62,27.43,27.23,27.05,26.67,N/A,N/A -2012,7,6,6,30,101610,100460,99350,60.57,0,6.16,6.5600000000000005,6.63,6.640000000000001,6.640000000000001,6.640000000000001,6.63,6.61,6.58,186.08,186.31,186.41,186.52,186.6,186.69,186.78,186.87,187.08,28.44,28.080000000000002,27.91,27.71,27.51,27.32,27.12,26.94,26.55,N/A,N/A -2012,7,6,7,30,101610,100460,99340,63,0,4.95,5.29,5.34,5.37,5.39,5.4,5.4,5.4,5.4,192.38,192.29,192.31,192.33,192.37,192.4,192.43,192.46,192.52,28.46,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,7,6,8,30,101630,100470,99360,60.120000000000005,0,5.04,5.42,5.5,5.54,5.58,5.6000000000000005,5.62,5.64,5.66,195.95000000000002,195.53,195.32,195.13,194.96,194.79,194.64000000000001,194.5,194.21,28.63,28.29,28.11,27.91,27.72,27.54,27.34,27.16,26.77,N/A,N/A -2012,7,6,9,30,101650,100490,99380,58.09,0,4.19,4.46,4.51,4.54,4.5600000000000005,4.57,4.59,4.6000000000000005,4.61,205.62,205,204.70000000000002,204.43,204.19,203.96,203.74,203.53,203.12,28.71,28.37,28.2,28.01,27.810000000000002,27.62,27.43,27.240000000000002,26.85,N/A,N/A -2012,7,6,10,30,101680,100530,99420,55.92,0,3.92,4.17,4.21,4.23,4.25,4.25,4.26,4.2700000000000005,4.2700000000000005,206.13,206.17000000000002,206.08,206.01,205.93,205.85,205.78,205.71,205.57,28.8,28.47,28.3,28.1,27.91,27.72,27.53,27.34,26.96,N/A,N/A -2012,7,6,11,30,101670,100520,99410,55.99,0,3.61,3.86,3.92,3.95,3.98,4,4.0200000000000005,4.03,4.07,214.37,214.1,213.99,213.9,213.81,213.73000000000002,213.65,213.58,213.44,28.82,28.48,28.310000000000002,28.12,27.93,27.740000000000002,27.54,27.36,26.97,N/A,N/A -2012,7,6,12,30,101690,100540,99420,55.31,0,3.5700000000000003,3.8000000000000003,3.85,3.87,3.89,3.91,3.92,3.93,3.94,227.06,226.37,225.99,225.63,225.32,225.03,224.75,224.49,223.99,28.82,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.96,N/A,N/A -2012,7,6,13,30,101750,100590,99480,56.43,0,2.75,2.9,2.92,2.94,2.95,2.95,2.96,2.96,2.97,240.58,239.89000000000001,239.48000000000002,239.09,238.72,238.37,238.02,237.69,237.03,28.73,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.45,27.27,26.88,N/A,N/A -2012,7,6,14,30,101740,100590,99470,62.59,0,2.98,3.11,3.12,3.12,3.11,3.1,3.09,3.08,3.0500000000000003,238.38,238.9,239.22,239.54,239.83,240.11,240.38,240.64000000000001,241.16,28.490000000000002,28.14,27.97,27.77,27.57,27.39,27.19,27,26.61,N/A,N/A -2012,7,6,15,30,101780,100620,99510,60.14,0,2.29,2.38,2.39,2.38,2.38,2.37,2.37,2.36,2.34,232.24,232.49,232.79,233.07,233.33,233.59,233.86,234.1,234.61,28.580000000000002,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A -2012,7,6,16,30,101760,100610,99500,62.72,0,1.9100000000000001,2,2,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2.0100000000000002,2,241.32,241.98000000000002,242.29,242.61,242.92000000000002,243.21,243.49,243.74,244.3,28.5,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27,26.61,N/A,N/A -2012,7,6,17,30,101770,100610,99500,58.68,0,1.53,1.59,1.61,1.62,1.62,1.6300000000000001,1.6400000000000001,1.6400000000000001,1.6600000000000001,229.39000000000001,230.19,230.59,230.95000000000002,231.23000000000002,231.48000000000002,231.71,231.91,232.20000000000002,28.66,28.310000000000002,28.13,27.93,27.740000000000002,27.55,27.36,27.18,26.79,N/A,N/A -2012,7,6,18,30,101730,100570,99460,60.36,0,2.42,2.5100000000000002,2.5,2.48,2.47,2.45,2.44,2.42,2.39,181.37,181.13,180.97,180.8,180.64000000000001,180.48,180.31,180.14000000000001,179.79,28.67,28.32,28.14,27.94,27.76,27.57,27.38,27.2,26.82,N/A,N/A -2012,7,6,19,30,101700,100550,99430,60.050000000000004,0,3.09,3.22,3.23,3.23,3.22,3.21,3.2,3.19,3.16,175.91,176.11,176.26,176.4,176.54,176.69,176.85,177,177.37,28.79,28.44,28.27,28.080000000000002,27.89,27.71,27.52,27.34,26.98,N/A,N/A -2012,7,6,20,30,101630,100480,99370,59.34,0,4.6000000000000005,4.83,4.84,4.82,4.79,4.76,4.72,4.68,4.57,191.63,191.69,191.76,191.85,191.94,192.04,192.14000000000001,192.24,192.52,28.95,28.62,28.45,28.26,28.080000000000002,27.900000000000002,27.71,27.54,27.18,N/A,N/A -2012,7,6,21,30,101630,100480,99360,56.410000000000004,0,4.61,4.8500000000000005,4.86,4.84,4.82,4.78,4.74,4.7,4.6000000000000005,189.23,189.36,189.48,189.61,189.75,189.88,190.03,190.17000000000002,190.49,29.18,28.87,28.7,28.51,28.330000000000002,28.150000000000002,27.96,27.78,27.42,N/A,N/A -2012,7,6,22,30,101590,100440,99330,59.81,0,3.7,3.94,3.97,3.99,4,4,4.01,4.01,4.01,198.55,198.47,198.48000000000002,198.5,198.55,198.61,198.69,198.77,199.06,29.1,28.8,28.64,28.46,28.28,28.11,27.93,27.75,27.41,N/A,N/A -2012,7,6,23,30,101580,100430,99320,55.550000000000004,0,4.15,4.43,4.45,4.46,4.46,4.45,4.44,4.43,4.39,194.71,194.56,194.5,194.41,194.33,194.23000000000002,194.12,194.02,193.77,29.330000000000002,29.04,28.87,28.68,28.5,28.32,28.13,27.95,27.580000000000002,N/A,N/A -2012,7,7,0,30,101510,100360,99250,56.21,0,4.67,5,5.04,5.05,5.0600000000000005,5.05,5.05,5.04,5.01,191.96,191.88,191.85,191.81,191.77,191.72,191.67000000000002,191.62,191.51,29.3,29,28.84,28.650000000000002,28.47,28.29,28.1,27.93,27.560000000000002,N/A,N/A -2012,7,7,1,30,101500,100350,99240,56.410000000000004,0,4.96,5.33,5.38,5.39,5.4,5.4,5.4,5.39,5.37,194.25,193.91,193.78,193.64000000000001,193.5,193.37,193.21,193.07,192.77,29.310000000000002,29.02,28.85,28.67,28.48,28.3,28.11,27.94,27.57,N/A,N/A -2012,7,7,2,30,101530,100390,99270,55.17,0,4.6000000000000005,4.9,4.92,4.91,4.9,4.88,4.8500000000000005,4.82,4.7700000000000005,193.6,192.71,192.16,191.6,191.04,190.5,189.9,189.34,188.08,29.32,29.02,28.85,28.66,28.47,28.28,28.080000000000002,27.900000000000002,27.52,N/A,N/A -2012,7,7,3,30,101580,100430,99310,55.34,0,4.55,4.89,4.93,4.95,4.96,4.96,4.96,4.95,4.94,184.74,184.54,184.43,184.33,184.24,184.15,184.05,183.96,183.76,29.37,29.07,28.91,28.71,28.52,28.330000000000002,28.13,27.95,27.560000000000002,N/A,N/A -2012,7,7,4,30,101520,100370,99260,54.06,0,5.03,5.43,5.5,5.53,5.5600000000000005,5.58,5.59,5.6000000000000005,5.61,196.25,196.05,195.88,195.72,195.56,195.41,195.24,195.09,194.73000000000002,29.35,29.05,28.89,28.69,28.51,28.32,28.12,27.94,27.560000000000002,N/A,N/A -2012,7,7,5,30,101560,100410,99300,56.07,0,4.89,5.26,5.32,5.3500000000000005,5.37,5.38,5.38,5.39,5.39,202.81,202.5,202.31,202.11,201.91,201.73000000000002,201.52,201.32,200.89000000000001,29.240000000000002,28.93,28.77,28.57,28.38,28.2,28,27.82,27.44,N/A,N/A -2012,7,7,6,30,101590,100440,99330,59.74,0,4.96,5.28,5.32,5.33,5.34,5.33,5.33,5.32,5.29,205.14000000000001,205.72,206.07,206.42000000000002,206.74,207.05,207.37,207.66,208.27,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A -2012,7,7,7,30,101610,100460,99350,60.77,0,4.54,4.84,4.88,4.89,4.9,4.9,4.89,4.88,4.86,209.94,210.16,210.26,210.33,210.39000000000001,210.44,210.49,210.53,210.6,28.87,28.55,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A -2012,7,7,8,30,101610,100460,99350,62.730000000000004,0,4.92,5.2700000000000005,5.36,5.41,5.45,5.49,5.5200000000000005,5.55,5.6000000000000005,219.82,219.89000000000001,219.94,220,220.05,220.1,220.15,220.19,220.29,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.91,N/A,N/A -2012,7,7,9,30,101600,100450,99340,64.97,0,5.12,5.47,5.5200000000000005,5.54,5.55,5.55,5.55,5.55,5.53,234.14000000000001,233.68,233.42000000000002,233.13,232.87,232.62,232.36,232.12,231.62,28.62,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.740000000000002,N/A,N/A -2012,7,7,10,30,101630,100480,99370,69.62,0,4.5600000000000005,4.93,5.0200000000000005,5.09,5.15,5.19,5.23,5.2700000000000005,5.34,236.26,236.01,235.83,235.66,235.51,235.37,235.22,235.09,234.82,28.42,28.060000000000002,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,7,11,30,101650,100500,99390,69.4,0,5.57,5.91,5.96,5.97,5.98,5.98,5.97,5.96,5.94,232.02,232.32,232.52,232.71,232.89000000000001,233.05,233.21,233.35,233.63,28.5,28.14,27.97,27.77,27.57,27.39,27.19,27,26.62,N/A,N/A -2012,7,7,12,30,101650,100500,99390,75.57000000000001,0,4.76,5.12,5.2,5.25,5.28,5.3,5.32,5.33,5.34,224.16,224.69,225.07,225.45000000000002,225.8,226.14000000000001,226.47,226.78,227.41,28.26,27.89,27.71,27.51,27.32,27.12,26.92,26.740000000000002,26.35,N/A,N/A -2012,7,7,13,30,101660,100510,99390,70.22,0,4.92,5.26,5.32,5.36,5.39,5.41,5.42,5.44,5.46,260.98,260.52,260.19,259.87,259.59000000000003,259.32,259.07,258.85,258.39,28.53,28.17,28,27.8,27.61,27.42,27.23,27.04,26.66,N/A,N/A -2012,7,7,14,30,101690,100540,99430,76.37,0,4.61,4.83,4.8500000000000005,4.84,4.82,4.8,4.7700000000000005,4.75,4.69,282.63,281.49,280.91,280.31,279.75,279.2,278.63,278.09000000000003,276.95,28.1,27.73,27.55,27.35,27.17,26.98,26.78,26.6,26.22,N/A,N/A -2012,7,7,15,30,101700,100550,99430,75.03,0,4.17,4.38,4.4,4.41,4.4,4.4,4.39,4.38,4.3500000000000005,274.77,274.52,274.39,274.26,274.13,274.01,273.88,273.74,273.44,28.14,27.76,27.580000000000002,27.38,27.19,27,26.8,26.62,26.240000000000002,N/A,N/A -2012,7,7,16,30,101720,100560,99450,74.14,0,3.39,3.56,3.59,3.6,3.61,3.61,3.61,3.62,3.62,245.04,245.61,245.88,246.14000000000001,246.37,246.58,246.79,246.98000000000002,247.35,28.310000000000002,27.94,27.76,27.560000000000002,27.37,27.18,26.98,26.79,26.41,N/A,N/A -2012,7,7,17,30,101690,100540,99430,74.29,0,3.63,3.8200000000000003,3.85,3.86,3.88,3.88,3.89,3.89,3.9,209.23000000000002,209.68,209.99,210.31,210.61,210.93,211.27,211.61,212.47,28.36,27.990000000000002,27.810000000000002,27.62,27.43,27.25,27.05,26.87,26.51,N/A,N/A -2012,7,7,18,30,101690,100540,99430,73.91,0,2.94,3.06,3.08,3.08,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,184.07,184.54,184.9,185.27,185.63,185.97,186.36,186.74,187.6,28.57,28.21,28.04,27.84,27.650000000000002,27.46,27.27,27.09,26.72,N/A,N/A -2012,7,7,19,30,101640,100490,99380,69.81,0,4.53,4.8100000000000005,4.8500000000000005,4.86,4.87,4.87,4.87,4.87,4.8500000000000005,180.58,180.81,180.94,181.06,181.17000000000002,181.27,181.37,181.48,181.69,28.89,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A -2012,7,7,20,30,101590,100440,99330,67.85,0,5.38,5.73,5.79,5.82,5.83,5.84,5.84,5.84,5.82,179.83,180.07,180.20000000000002,180.34,180.49,180.64000000000001,180.8,180.96,181.31,28.97,28.62,28.45,28.26,28.07,27.88,27.68,27.5,27.13,N/A,N/A -2012,7,7,21,30,101530,100390,99280,72.96000000000001,0,6.13,6.5600000000000005,6.640000000000001,6.67,6.68,6.68,6.68,6.67,6.640000000000001,193.45000000000002,193.26,193.1,192.93,192.77,192.6,192.43,192.27,191.9,28.79,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,7,7,22,30,101530,100380,99270,75.85000000000001,0,6.82,7.38,7.49,7.55,7.58,7.61,7.62,7.62,7.62,197.62,197.64000000000001,197.62,197.59,197.56,197.54,197.51,197.48000000000002,197.42000000000002,28.73,28.37,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A -2012,7,7,23,30,101520,100370,99260,71.48,0,6.19,6.67,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.86,6.87,6.88,6.88,200.09,200.05,200.01,199.98000000000002,199.97,199.95000000000002,199.95000000000002,199.95000000000002,199.95000000000002,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.6,27.42,27.04,N/A,N/A -2012,7,8,0,30,101530,100380,99270,71.9,0,5.84,6.3,6.4,6.46,6.5,6.53,6.5600000000000005,6.57,6.6000000000000005,203.37,203.46,203.46,203.46,203.46,203.46,203.46,203.47,203.47,28.86,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A -2012,7,8,1,30,101560,100420,99310,74.61,0,6.05,6.51,6.6000000000000005,6.65,6.68,6.7,6.71,6.72,6.71,219.83,219.72,219.56,219.39000000000001,219.24,219.09,218.93,218.78,218.5,28.72,28.37,28.19,27.990000000000002,27.79,27.6,27.400000000000002,27.22,26.830000000000002,N/A,N/A -2012,7,8,2,30,101580,100430,99320,69.92,0,5.97,6.41,6.5,6.54,6.5600000000000005,6.58,6.59,6.59,6.59,214.61,214.70000000000002,214.87,215.05,215.21,215.37,215.54,215.69,216.01,28.84,28.5,28.32,28.12,27.93,27.740000000000002,27.55,27.36,26.98,N/A,N/A -2012,7,8,3,30,101550,100400,99290,70.10000000000001,0,6.49,7,7.1000000000000005,7.16,7.2,7.23,7.25,7.26,7.2700000000000005,210.45000000000002,210.3,210.27,210.24,210.20000000000002,210.17000000000002,210.13,210.1,210.02,28.78,28.43,28.25,28.05,27.86,27.67,27.47,27.29,26.900000000000002,N/A,N/A -2012,7,8,4,30,101570,100420,99310,66.98,0,6.41,6.92,7.03,7.08,7.12,7.140000000000001,7.16,7.17,7.19,205.73000000000002,205.82,205.89000000000001,205.96,206.01,206.05,206.1,206.15,206.23000000000002,28.87,28.53,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A -2012,7,8,5,30,101540,100390,99280,64.81,0,6.63,7.18,7.29,7.3500000000000005,7.390000000000001,7.42,7.43,7.45,7.46,203.88,204.53,204.78,205,205.19,205.35,205.49,205.63,205.88,28.92,28.580000000000002,28.400000000000002,28.21,28.01,27.830000000000002,27.63,27.44,27.05,N/A,N/A -2012,7,8,6,30,101580,100430,99320,60.88,0,6.3100000000000005,6.7700000000000005,6.84,6.87,6.890000000000001,6.9,6.9,6.9,6.88,212.96,212.76,212.65,212.54,212.44,212.34,212.25,212.15,211.98000000000002,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,7,8,7,30,101610,100460,99350,64.29,0,6.71,7.2700000000000005,7.390000000000001,7.46,7.5,7.53,7.55,7.57,7.59,204.13,204.37,204.46,204.51,204.56,204.59,204.61,204.63,204.65,28.900000000000002,28.560000000000002,28.38,28.19,27.990000000000002,27.8,27.61,27.42,27.03,N/A,N/A -2012,7,8,8,30,101640,100490,99380,59.980000000000004,0,6.82,7.34,7.43,7.46,7.48,7.49,7.48,7.48,7.45,200.89000000000001,201.08,201.17000000000002,201.24,201.29,201.34,201.39000000000001,201.43,201.5,29.03,28.69,28.52,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.18,N/A,N/A -2012,7,8,9,30,101630,100480,99370,59.99,0,6.2700000000000005,6.75,6.84,6.88,6.91,6.93,6.94,6.95,6.95,196.96,197.03,197.16,197.3,197.43,197.56,197.70000000000002,197.83,198.08,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.18,N/A,N/A -2012,7,8,10,30,101650,100500,99390,59.34,0,5.92,6.34,6.4,6.42,6.42,6.41,6.4,6.38,6.34,210.47,210.6,210.55,210.48000000000002,210.39000000000001,210.31,210.21,210.12,209.92000000000002,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.18,N/A,N/A -2012,7,8,11,30,101670,100520,99410,60,0,5.57,6,6.08,6.12,6.140000000000001,6.16,6.16,6.16,6.16,210.15,210.4,210.45000000000002,210.47,210.49,210.5,210.5,210.49,210.49,29.03,28.71,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.18,N/A,N/A -2012,7,8,12,30,101700,100550,99440,59.160000000000004,0,6.1000000000000005,6.55,6.62,6.65,6.67,6.67,6.67,6.67,6.65,214.06,214.09,214.12,214.17000000000002,214.21,214.25,214.29,214.32,214.4,29.09,28.76,28.59,28.39,28.2,28.01,27.82,27.63,27.240000000000002,N/A,N/A -2012,7,8,13,30,101710,100560,99450,54.32,0,4.26,4.65,4.73,4.79,4.84,4.88,4.92,4.95,5,212.08,212.43,212.64000000000001,212.82,212.98000000000002,213.11,213.25,213.37,213.6,29.28,28.96,28.79,28.6,28.400000000000002,28.22,28.02,27.830000000000002,27.45,N/A,N/A -2012,7,8,14,30,101740,100590,99470,53.9,0,4.43,4.73,4.79,4.82,4.8500000000000005,4.86,4.88,4.89,4.91,230.74,230.32,230.03,229.75,229.5,229.26,229.03,228.81,228.36,29.25,28.94,28.77,28.580000000000002,28.39,28.2,28,27.82,27.43,N/A,N/A -2012,7,8,15,30,101770,100620,99500,58.29,0,4.62,4.92,4.98,5.01,5.04,5.05,5.07,5.08,5.1000000000000005,219.97,219.77,219.65,219.54,219.43,219.32,219.23000000000002,219.13,218.96,29.01,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,7,8,16,30,101770,100620,99500,56.46,0,4.37,4.61,4.65,4.66,4.67,4.67,4.67,4.66,4.65,223.3,223.13,223.13,223.11,223.1,223.08,223.06,223.03,222.99,29.1,28.77,28.6,28.400000000000002,28.21,28.02,27.830000000000002,27.64,27.25,N/A,N/A -2012,7,8,17,30,101750,100600,99480,64.17,0,3.85,4.09,4.12,4.14,4.14,4.14,4.14,4.14,4.12,215.81,215.68,215.62,215.55,215.49,215.43,215.36,215.29,215.16,28.84,28.490000000000002,28.310000000000002,28.11,27.92,27.73,27.53,27.34,26.96,N/A,N/A -2012,7,8,18,30,101700,100550,99440,65.07000000000001,0,4.0200000000000005,4.21,4.22,4.21,4.19,4.17,4.15,4.13,4.07,202.17000000000002,201.73000000000002,201.47,201.17000000000002,200.87,200.59,200.28,199.98000000000002,199.32,28.830000000000002,28.47,28.29,28.09,27.900000000000002,27.71,27.5,27.32,26.93,N/A,N/A -2012,7,8,19,30,101680,100530,99420,67.15,0,4.5,4.76,4.8,4.82,4.82,4.82,4.82,4.82,4.8100000000000005,177.27,177.48,177.58,177.67000000000002,177.74,177.8,177.87,177.92000000000002,178.06,28.82,28.47,28.29,28.09,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A -2012,7,8,20,30,101640,100490,99380,66.17,0,4.55,4.84,4.9,4.93,4.95,4.97,4.97,4.98,5,172.37,172.64000000000001,172.86,173.11,173.35,173.61,173.9,174.17000000000002,174.84,28.87,28.54,28.37,28.18,27.990000000000002,27.810000000000002,27.62,27.44,27.07,N/A,N/A -2012,7,8,21,30,101600,100450,99340,70.12,0,5.32,5.76,5.86,5.92,5.97,6,6.03,6.05,6.08,175.17000000000002,176.3,176.73,177.11,177.43,177.70000000000002,177.96,178.19,178.62,28.84,28.48,28.3,28.1,27.900000000000002,27.72,27.52,27.330000000000002,26.94,N/A,N/A -2012,7,8,22,30,101530,100390,99280,75.31,0,6.26,6.72,6.8100000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.87,169.15,169.4,169.61,169.84,170.07,170.3,170.55,170.8,171.33,28.64,28.28,28.11,27.91,27.72,27.54,27.34,27.16,26.79,N/A,N/A -2012,7,8,23,30,101520,100370,99260,75.58,0,6.53,7.04,7.15,7.21,7.26,7.28,7.3,7.32,7.33,173.95000000000002,174.14000000000001,174.24,174.34,174.43,174.52,174.62,174.71,174.9,28.62,28.26,28.080000000000002,27.88,27.68,27.490000000000002,27.29,27.11,26.72,N/A,N/A -2012,7,9,0,30,101500,100350,99240,75.62,0,7.2,7.7700000000000005,7.9,7.96,8,8.03,8.05,8.07,8.08,179.1,179.1,179.11,179.14000000000001,179.17000000000002,179.21,179.25,179.29,179.37,28.6,28.23,28.060000000000002,27.86,27.66,27.47,27.28,27.1,26.72,N/A,N/A -2012,7,9,1,30,101470,100320,99210,73.04,0,7.3,7.88,7.99,8.040000000000001,8.07,8.08,8.08,8.08,8.05,177.31,177.42000000000002,177.56,177.69,177.82,177.95000000000002,178.07,178.19,178.45000000000002,28.62,28.25,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A -2012,7,9,2,30,101500,100350,99240,70.36,0,6.890000000000001,7.45,7.57,7.62,7.66,7.69,7.71,7.72,7.72,176.86,176.91,176.96,177.01,177.04,177.08,177.12,177.16,177.25,28.77,28.42,28.25,28.04,27.86,27.66,27.47,27.28,26.900000000000002,N/A,N/A -2012,7,9,3,30,101520,100370,99260,70.58,0,7.17,7.7700000000000005,7.91,7.98,8.03,8.06,8.09,8.11,8.13,178.9,178.76,178.67000000000002,178.59,178.51,178.42000000000002,178.35,178.27,178.13,28.810000000000002,28.46,28.29,28.09,27.900000000000002,27.71,27.51,27.32,26.94,N/A,N/A -2012,7,9,4,30,101500,100350,99240,73.5,0,7.71,8.370000000000001,8.5,8.56,8.6,8.620000000000001,8.63,8.63,8.620000000000001,174.01,174.12,174.22,174.33,174.42000000000002,174.53,174.63,174.73,174.94,28.73,28.37,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A -2012,7,9,5,30,101540,100390,99280,68.88,0,6.99,7.5600000000000005,7.68,7.74,7.7700000000000005,7.8,7.8100000000000005,7.82,7.83,175.81,176.03,176.18,176.34,176.48,176.63,176.79,176.94,177.25,28.95,28.62,28.44,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,7,9,6,30,101520,100380,99270,70.62,0,6.72,7.3,7.43,7.5,7.55,7.58,7.61,7.62,7.640000000000001,186.61,186.73,186.81,186.91,187,187.09,187.19,187.28,187.47,28.91,28.55,28.38,28.18,27.98,27.79,27.59,27.41,27.02,N/A,N/A -2012,7,9,7,30,101540,100390,99280,74.17,0,6.88,7.44,7.5600000000000005,7.63,7.67,7.69,7.71,7.72,7.72,194.26,194.41,194.48000000000002,194.55,194.61,194.67000000000002,194.73000000000002,194.79,194.89000000000001,28.79,28.43,28.26,28.05,27.86,27.67,27.47,27.28,26.900000000000002,N/A,N/A -2012,7,9,8,30,101530,100390,99280,72.99,0,6.5200000000000005,7.0600000000000005,7.18,7.24,7.29,7.32,7.34,7.3500000000000005,7.37,203.24,203.24,203.26,203.29,203.31,203.34,203.37,203.4,203.47,28.82,28.47,28.3,28.1,27.91,27.72,27.52,27.330000000000002,26.95,N/A,N/A -2012,7,9,9,30,101530,100390,99280,73.72,0,6.78,7.2700000000000005,7.38,7.43,7.47,7.5,7.51,7.53,7.5600000000000005,205.49,205.67000000000002,205.76,205.86,205.95000000000002,206.04,206.14000000000001,206.24,206.44,28.8,28.45,28.28,28.09,27.900000000000002,27.72,27.52,27.34,26.97,N/A,N/A -2012,7,9,10,30,101550,100400,99290,76.26,0,5.91,6.28,6.36,6.4,6.43,6.45,6.46,6.47,6.5,210.83,211.20000000000002,211.44,211.68,211.91,212.13,212.35,212.56,213.01,28.75,28.400000000000002,28.240000000000002,28.04,27.86,27.67,27.48,27.3,26.93,N/A,N/A -2012,7,9,11,30,101560,100420,99300,78.93,0,5.79,6.23,6.33,6.38,6.43,6.45,6.48,6.49,6.51,217.16,217.23000000000002,217.34,217.48000000000002,217.6,217.72,217.85,217.98000000000002,218.23000000000002,28.77,28.42,28.25,28.05,27.86,27.67,27.48,27.29,26.91,N/A,N/A -2012,7,9,12,30,101560,100410,99300,71.47,0,5.12,5.63,5.75,5.83,5.88,5.93,5.96,5.99,6.03,226.14000000000001,226.34,226.58,226.83,227.07,227.31,227.54,227.76,228.22,29.29,28.96,28.8,28.6,28.41,28.22,28.03,27.85,27.47,N/A,N/A -2012,7,9,13,30,101530,100380,99270,78.17,0,5.71,6.04,6.08,6.07,6.05,6.0200000000000005,5.98,5.95,5.87,239.71,239.73000000000002,239.78,239.82,239.85,239.88,239.92000000000002,239.94,240.02,28.8,28.45,28.27,28.07,27.89,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,7,9,14,30,101550,100400,99290,75.98,0,5.07,5.51,5.62,5.69,5.75,5.79,5.82,5.8500000000000005,5.9,241.79,242.35,242.75,243.17000000000002,243.56,243.93,244.29,244.63,245.32,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A -2012,7,9,15,30,101560,100420,99310,77.29,0,5.73,6.2,6.3100000000000005,6.38,6.42,6.46,6.48,6.51,6.54,266.67,266.12,265.64,265.14,264.7,264.29,263.91,263.55,262.89,29,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A -2012,7,9,16,30,101530,100380,99270,78.66,1.1,3.48,3.97,4.21,4.43,4.63,4.83,5.03,5.21,5.58,235.96,234.92000000000002,234.46,234.07,233.86,233.77,233.92000000000002,234.17000000000002,235.19,28.22,27.92,27.79,27.64,27.5,27.37,27.240000000000002,27.12,26.86,N/A,N/A -2012,7,9,17,30,101490,100350,99240,72.48,0,5.55,5.92,5.97,5.98,5.98,5.96,5.94,5.92,5.86,220.63,220.56,220.6,220.61,220.61,220.61,220.6,220.59,220.55,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,7,9,18,30,101440,100300,99190,74.78,0,6.49,6.99,7.08,7.11,7.13,7.140000000000001,7.13,7.13,7.1000000000000005,221.63,221.70000000000002,221.75,221.79,221.83,221.86,221.9,221.94,222.02,29.23,28.89,28.72,28.51,28.330000000000002,28.14,27.94,27.76,27.38,N/A,N/A -2012,7,9,19,30,101420,100280,99170,74.03,0,7.92,8.64,8.8,8.870000000000001,8.93,8.97,8.99,9,9.02,222.78,222.89000000000001,223.02,223.14000000000001,223.24,223.33,223.41,223.49,223.64000000000001,29.32,28.990000000000002,28.82,28.62,28.44,28.25,28.05,27.87,27.490000000000002,N/A,N/A -2012,7,9,20,30,101410,100270,99160,73.85000000000001,0,8.07,8.75,8.88,8.94,8.97,8.99,8.99,8.99,8.97,235.59,235.4,235.17000000000002,234.92000000000002,234.68,234.43,234.17000000000002,233.91,233.34,29.05,28.71,28.54,28.34,28.16,27.97,27.79,27.61,27.25,N/A,N/A -2012,7,9,21,30,101350,100210,99100,73.18,0,6.3,6.84,6.99,7.09,7.17,7.24,7.3,7.36,7.47,220.89000000000001,220.61,220.61,220.62,220.63,220.65,220.68,220.71,220.8,29.04,28.71,28.55,28.36,28.18,28,27.810000000000002,27.64,27.28,N/A,N/A -2012,7,9,22,30,101350,100210,99100,72.71000000000001,0,5.57,6.04,6.15,6.21,6.26,6.29,6.3100000000000005,6.34,6.37,202.95000000000002,203.3,203.54,203.77,203.97,204.17000000000002,204.36,204.54,204.91,29.32,29,28.830000000000002,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A -2012,7,9,23,30,101330,100190,99090,74.65,0,5.72,6.19,6.29,6.3500000000000005,6.4,6.43,6.46,6.49,6.53,200.03,200.26,200.44,200.64000000000001,200.83,201.02,201.22,201.41,201.84,29.18,28.85,28.69,28.5,28.310000000000002,28.12,27.93,27.75,27.38,N/A,N/A -2012,7,10,0,30,101290,100150,99040,74.82000000000001,0,6.87,7.43,7.55,7.61,7.65,7.67,7.69,7.7,7.72,202.8,202.81,202.82,202.86,202.91,202.96,203.03,203.09,203.25,29.240000000000002,28.92,28.76,28.560000000000002,28.38,28.19,28,27.82,27.45,N/A,N/A -2012,7,10,1,30,101310,100170,99060,73.2,0,6.65,7.19,7.3,7.3500000000000005,7.38,7.390000000000001,7.4,7.4,7.390000000000001,203.42000000000002,203.74,203.97,204.18,204.36,204.53,204.69,204.84,205.13,29.080000000000002,28.740000000000002,28.57,28.37,28.18,27.990000000000002,27.79,27.61,27.23,N/A,N/A -2012,7,10,2,30,101290,100150,99040,76.91,0,7.6000000000000005,8.31,8.47,8.57,8.63,8.67,8.700000000000001,8.72,8.74,215.54,215.68,215.72,215.73000000000002,215.74,215.75,215.73000000000002,215.71,215.67000000000002,28.94,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A -2012,7,10,3,30,101320,100180,99070,77.07000000000001,0,7.25,7.84,7.98,8.06,8.13,8.18,8.22,8.25,8.31,210.9,210.87,210.95000000000002,211.06,211.16,211.27,211.38,211.48000000000002,211.70000000000002,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.62,27.43,27.05,N/A,N/A -2012,7,10,4,30,101340,100190,99090,74.96000000000001,0,9.28,10.09,10.25,10.32,10.35,10.370000000000001,10.370000000000001,10.370000000000001,10.35,216.99,216.4,216.22,216.06,215.94,215.84,215.77,215.70000000000002,215.61,29.150000000000002,28.810000000000002,28.64,28.44,28.26,28.07,27.88,27.7,27.32,N/A,N/A -2012,7,10,5,30,101290,100150,99040,74.72,0,9.05,9.870000000000001,10.06,10.16,10.22,10.26,10.290000000000001,10.32,10.34,214.28,214.38,214.39000000000001,214.38,214.37,214.33,214.29,214.25,214.15,29,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A -2012,7,10,6,30,101310,100170,99060,75.8,0,9.46,10.5,10.76,10.92,11.040000000000001,11.120000000000001,11.18,11.22,11.290000000000001,211.63,212.03,212.18,212.3,212.39000000000001,212.47,212.53,212.59,212.67000000000002,28.91,28.580000000000002,28.41,28.2,28.01,27.82,27.63,27.44,27.05,N/A,N/A -2012,7,10,7,30,101290,100140,99040,67.84,0,8.97,9.870000000000001,10.07,10.18,10.27,10.32,10.370000000000001,10.4,10.450000000000001,218.38,218.58,218.67000000000002,218.76,218.84,218.91,218.99,219.06,219.19,29.16,28.85,28.68,28.48,28.3,28.11,27.91,27.73,27.35,N/A,N/A -2012,7,10,8,30,101280,100140,99030,71.28,0,9.02,9.98,10.21,10.35,10.46,10.53,10.59,10.64,10.71,222.78,223.04,223.17000000000002,223.28,223.38,223.46,223.53,223.6,223.72,29.09,28.77,28.59,28.400000000000002,28.2,28.01,27.82,27.63,27.25,N/A,N/A -2012,7,10,9,30,101320,100180,99070,67.76,0,8.98,9.85,10.05,10.17,10.25,10.3,10.34,10.370000000000001,10.41,228.03,228.23000000000002,228.32,228.41,228.49,228.57,228.64000000000001,228.71,228.85,29.19,28.88,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,7,10,10,30,101310,100170,99060,66.8,0,7.930000000000001,8.75,8.94,9.07,9.16,9.24,9.3,9.35,9.43,228.55,228.91,229.1,229.28,229.45000000000002,229.6,229.75,229.89000000000001,230.15,29.22,28.91,28.740000000000002,28.55,28.36,28.17,27.97,27.79,27.400000000000002,N/A,N/A -2012,7,10,11,30,101350,100210,99100,72.49,0,9.16,10.16,10.41,10.56,10.66,10.73,10.78,10.81,10.86,234.1,234.35,234.47,234.57,234.65,234.72,234.78,234.85,234.95000000000002,29.02,28.69,28.52,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.17,N/A,N/A -2012,7,10,12,30,101360,100220,99110,71.85000000000001,0,8.4,9.27,9.47,9.59,9.67,9.73,9.77,9.81,9.85,231.8,231.97,232.11,232.23000000000002,232.32,232.41,232.48000000000002,232.55,232.66,29.03,28.7,28.53,28.330000000000002,28.14,27.95,27.75,27.560000000000002,27.18,N/A,N/A -2012,7,10,13,30,101380,100230,99130,73.73,0,7.86,8.620000000000001,8.82,8.94,9.02,9.08,9.13,9.17,9.23,228.84,229.47,229.78,230.07,230.34,230.58,230.82,231.03,231.46,28.96,28.64,28.47,28.27,28.080000000000002,27.89,27.69,27.51,27.13,N/A,N/A -2012,7,10,14,30,101390,100230,99120,77.2,12.8,11.91,12.81,12.96,13.01,13.030000000000001,13.02,13.02,13.01,13.02,266.42,265.61,265.49,265.23,264.87,264.45,263.87,263.28000000000003,261.83,26.75,26.310000000000002,26.16,26.02,25.88,25.76,25.64,25.53,25.310000000000002,N/A,N/A -2012,7,10,15,30,101400,100250,99130,83.36,0.4,9.040000000000001,9.69,9.82,9.86,9.88,9.88,9.88,9.870000000000001,9.91,227.33,228.64000000000001,229.48000000000002,230.4,231.3,232.24,233.37,234.52,238.05,26.78,26.330000000000002,26.16,25.98,25.810000000000002,25.66,25.51,25.37,25.150000000000002,N/A,N/A -2012,7,10,16,30,101350,100190,99080,81.65,0,9.85,10.68,10.82,10.870000000000001,10.870000000000001,10.85,10.8,10.75,10.620000000000001,226.15,226.29,226.56,226.85,227.18,227.51,227.93,228.35,229.63,26.88,26.41,26.22,26.03,25.84,25.67,25.5,25.34,25.03,N/A,N/A -2012,7,10,17,30,101320,100170,99050,81.4,0,10.81,11.71,11.870000000000001,11.92,11.94,11.92,11.88,11.83,11.700000000000001,207.9,207.82,207.73000000000002,207.58,207.42000000000002,207.25,207.05,206.86,206.43,27.060000000000002,26.580000000000002,26.38,26.17,25.98,25.79,25.59,25.41,25.04,N/A,N/A -2012,7,10,18,30,101400,100240,99130,81.77,0,11.02,12.07,12.290000000000001,12.4,12.47,12.51,12.52,12.530000000000001,12.52,225.84,226.05,226.16,226.3,226.43,226.57,226.72,226.86,227.20000000000002,26.8,26.29,26.09,25.87,25.68,25.48,25.29,25.11,24.740000000000002,N/A,N/A -2012,7,10,19,30,101460,100300,99180,88.43,0,10.13,10.950000000000001,11.14,11.23,11.290000000000001,11.33,11.36,11.38,11.4,231.01,231.26,231.46,231.68,231.9,232.12,232.35,232.58,233.1,26.080000000000002,25.55,25.330000000000002,25.12,24.92,24.73,24.53,24.35,23.97,N/A,N/A -2012,7,10,20,30,101410,100250,99120,89.81,37.7,9.99,10.86,11.09,11.22,11.32,11.4,11.46,11.52,11.620000000000001,235.03,234.95000000000002,234.94,234.94,234.94,234.94,234.96,234.98000000000002,235.04,25.3,24.76,24.560000000000002,24.36,24.18,24,23.830000000000002,23.67,23.35,N/A,N/A -2012,7,10,21,30,101360,100210,99080,76.82000000000001,2.2,8.99,9.74,9.950000000000001,10.07,10.17,10.25,10.32,10.39,10.53,232.38,232.58,232.70000000000002,232.81,232.92000000000002,233.02,233.14000000000001,233.25,233.49,26.150000000000002,25.650000000000002,25.45,25.25,25.05,24.87,24.68,24.5,24.14,N/A,N/A -2012,7,10,22,30,101290,100140,99020,65.93,0,5.34,5.7,5.79,5.84,5.88,5.91,5.93,5.95,5.99,238.92000000000002,239.25,239.49,239.71,239.92000000000002,240.1,240.29,240.47,240.84,27.46,27.060000000000002,26.88,26.67,26.48,26.29,26.09,25.91,25.53,N/A,N/A -2012,7,10,23,30,101240,100090,98980,75.72,0,4.57,4.82,4.86,4.89,4.9,4.91,4.92,4.93,4.94,194.73000000000002,195.31,195.69,196.08,196.47,196.86,197.29,197.68,198.63,26.990000000000002,26.59,26.400000000000002,26.2,26.01,25.82,25.63,25.44,25.07,N/A,N/A -2012,7,11,0,30,101240,100090,98980,78.06,0,5.32,5.68,5.7700000000000005,5.82,5.86,5.89,5.91,5.93,5.96,196.27,196.57,196.76,196.94,197.1,197.25,197.41,197.56,197.89000000000001,27.25,26.84,26.650000000000002,26.45,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,7,11,1,30,101240,100090,98980,80.39,0,5.54,5.91,5.98,6.01,6.03,6.05,6.05,6.0600000000000005,6.07,190.5,190.97,191.25,191.54,191.81,192.08,192.37,192.64000000000001,193.24,27.43,27.03,26.85,26.64,26.45,26.26,26.07,25.88,25.5,N/A,N/A -2012,7,11,2,30,101230,100080,98970,78.58,0,6.01,6.38,6.45,6.49,6.5,6.51,6.51,6.51,6.49,190.64000000000001,190.82,190.98,191.17000000000002,191.35,191.54,191.77,191.99,192.55,27.71,27.32,27.14,26.94,26.75,26.57,26.38,26.2,25.84,N/A,N/A -2012,7,11,3,30,101290,100140,99030,72.72,0,7.0600000000000005,7.75,7.91,8.01,8.09,8.15,8.2,8.24,8.290000000000001,199.78,200.15,200.3,200.42000000000002,200.51,200.59,200.64000000000001,200.69,200.75,28.34,27.97,27.79,27.580000000000002,27.39,27.19,26.990000000000002,26.810000000000002,26.42,N/A,N/A -2012,7,11,4,30,101280,100140,99030,68.06,0,6.18,6.78,6.94,7.04,7.13,7.19,7.25,7.3,7.38,198.63,199.16,199.33,199.48000000000002,199.62,199.74,199.85,199.95000000000002,200.14000000000001,28.82,28.48,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A -2012,7,11,5,30,101280,100140,99030,66.25,0,7.22,7.9,8.040000000000001,8.120000000000001,8.18,8.21,8.23,8.25,8.26,200.83,200.69,200.65,200.62,200.59,200.57,200.54,200.52,200.48000000000002,29.09,28.77,28.6,28.400000000000002,28.21,28.02,27.82,27.64,27.25,N/A,N/A -2012,7,11,6,30,101320,100170,99060,64.79,0,6.75,7.390000000000001,7.55,7.640000000000001,7.71,7.76,7.8,7.84,7.890000000000001,206.42000000000002,206.27,206.19,206.12,206.05,205.99,205.93,205.88,205.77,29.18,28.89,28.73,28.53,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,7,11,7,30,101340,100200,99090,65.41,0,7.45,8.13,8.27,8.35,8.4,8.44,8.47,8.49,8.52,206.22,206.24,206.25,206.28,206.3,206.33,206.36,206.38,206.44,29.1,28.8,28.64,28.44,28.26,28.07,27.87,27.69,27.310000000000002,N/A,N/A -2012,7,11,8,30,101350,100210,99100,65,0,7.01,7.73,7.9,8.01,8.09,8.15,8.19,8.23,8.290000000000001,208.55,208.63,208.64000000000001,208.62,208.6,208.57,208.54,208.5,208.43,29.2,28.91,28.740000000000002,28.55,28.36,28.18,27.98,27.8,27.42,N/A,N/A -2012,7,11,9,30,101370,100230,99120,67.97,0,6.93,7.6000000000000005,7.75,7.83,7.9,7.94,7.98,8.01,8.040000000000001,199.57,199.62,199.64000000000001,199.66,199.68,199.69,199.70000000000002,199.70000000000002,199.72,28.990000000000002,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,7,11,10,30,101400,100260,99150,69.66,0,7.3,7.99,8.14,8.23,8.290000000000001,8.33,8.36,8.38,8.41,209.02,208.75,208.54,208.33,208.15,207.98000000000002,207.81,207.66,207.35,28.94,28.62,28.45,28.26,28.07,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,7,11,11,30,101390,100250,99140,69.79,0,7.49,8.26,8.44,8.55,8.63,8.69,8.73,8.76,8.790000000000001,207.53,208.04,208.18,208.26,208.32,208.36,208.37,208.39000000000001,208.38,29.01,28.7,28.54,28.34,28.150000000000002,27.96,27.76,27.580000000000002,27.2,N/A,N/A -2012,7,11,12,30,101390,100250,99140,68.81,0,6.3500000000000005,6.94,7.07,7.15,7.21,7.26,7.3,7.33,7.390000000000001,208.24,208.11,208.09,208.08,208.08,208.07,208.08,208.08,208.09,29,28.69,28.52,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.18,N/A,N/A -2012,7,11,13,30,101380,100230,99130,71.81,0,5.9,6.42,6.55,6.63,6.68,6.73,6.76,6.79,6.8500000000000005,212.95000000000002,212.95000000000002,212.91,212.88,212.85,212.82,212.8,212.78,212.75,28.88,28.560000000000002,28.39,28.19,28.01,27.82,27.62,27.43,27.05,N/A,N/A -2012,7,11,14,30,101390,100250,99130,79.37,0.4,7.55,8.02,8.07,8.05,8.01,7.97,7.91,7.8500000000000005,7.73,232.46,232.22,231.92000000000002,231.59,231.24,230.87,230.43,230.01,228.94,27.810000000000002,27.42,27.240000000000002,27.05,26.87,26.68,26.5,26.32,25.97,N/A,N/A -2012,7,11,15,30,101410,100270,99160,75.36,0,5.13,5.49,5.5600000000000005,5.58,5.59,5.6000000000000005,5.59,5.59,5.5600000000000005,236.4,236.07,236.07,236.05,236.03,235.99,235.93,235.86,235.66,28.32,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.830000000000002,26.45,N/A,N/A -2012,7,11,16,30,101400,100260,99150,76.71000000000001,0,3.91,4.12,4.16,4.19,4.2,4.21,4.21,4.22,4.22,214.82,216.37,217.1,217.76,218.32,218.84,219.34,219.82,220.70000000000002,28.29,27.95,27.78,27.57,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A -2012,7,11,17,30,101470,100310,99190,88.29,5.5,16.48,18.05,18.39,18.54,18.62,18.650000000000002,18.64,18.62,18.52,207.69,207.68,207.73000000000002,207.83,207.96,208.1,208.29,208.47,208.97,25.82,25.2,24.98,24.76,24.560000000000002,24.38,24.19,24.02,23.68,N/A,N/A -2012,7,11,18,30,101430,100270,99150,86.77,1.1,12.97,14.22,14.51,14.66,14.75,14.8,14.83,14.84,14.83,226.78,226.84,226.83,226.8,226.78,226.75,226.73000000000002,226.70000000000002,226.66,25.72,25.150000000000002,24.93,24.72,24.53,24.34,24.16,23.990000000000002,23.64,N/A,N/A -2012,7,11,19,30,101420,100260,99140,87.11,0,9.81,10.72,10.94,11.08,11.17,11.24,11.3,11.35,11.43,229.66,229.47,229.37,229.26,229.15,229.03,228.91,228.8,228.54,26.17,25.67,25.46,25.25,25.05,24.86,24.66,24.48,24.1,N/A,N/A -2012,7,11,20,30,101410,100260,99140,84.16,0,11.21,12.27,12.530000000000001,12.67,12.780000000000001,12.84,12.89,12.93,12.99,229.67000000000002,229.79,229.84,229.88,229.93,229.97,230.01,230.04,230.11,26.73,26.240000000000002,26.03,25.810000000000002,25.61,25.42,25.22,25.03,24.650000000000002,N/A,N/A -2012,7,11,21,30,101370,100220,99110,79.61,0,11.450000000000001,12.61,12.91,13.09,13.21,13.31,13.38,13.43,13.51,228.21,228.53,228.74,228.92000000000002,229.07,229.21,229.34,229.45000000000002,229.67000000000002,27.29,26.830000000000002,26.63,26.42,26.21,26.02,25.82,25.63,25.240000000000002,N/A,N/A -2012,7,11,22,30,101350,100200,99080,84.41,0,8.25,8.97,9.16,9.28,9.370000000000001,9.44,9.5,9.56,9.65,211.64000000000001,211.71,211.78,211.84,211.9,211.95000000000002,212.01,212.06,212.18,26.34,25.87,25.67,25.47,25.27,25.080000000000002,24.89,24.71,24.330000000000002,N/A,N/A -2012,7,11,23,30,101280,100130,99020,83.91,0,5.04,5.48,5.62,5.73,5.83,5.91,5.98,6.05,6.18,226.12,225.16,224.72,224.32,223.96,223.62,223.3,223.01,222.44,26.990000000000002,26.59,26.41,26.2,26.02,25.830000000000002,25.63,25.45,25.080000000000002,N/A,N/A -2012,7,12,0,30,101250,100100,98990,79.27,0,4.78,5.08,5.14,5.17,5.19,5.2,5.21,5.21,5.22,213.94,214.04,214.06,214.1,214.13,214.16,214.20000000000002,214.25,214.37,27.55,27.17,26.990000000000002,26.78,26.6,26.400000000000002,26.21,26.03,25.650000000000002,N/A,N/A -2012,7,12,1,30,101230,100080,98970,78.8,0,3.99,4.22,4.2700000000000005,4.3,4.32,4.34,4.36,4.38,4.42,225.28,225.55,225.71,225.86,226.02,226.18,226.34,226.51,226.9,27.87,27.51,27.330000000000002,27.14,26.95,26.76,26.57,26.39,26.03,N/A,N/A -2012,7,12,2,30,101250,100100,98990,74.60000000000001,0,4.53,4.84,4.92,4.97,5,5.03,5.0600000000000005,5.08,5.13,232.3,232.27,232.34,232.4,232.45000000000002,232.5,232.54,232.59,232.68,28.21,27.86,27.69,27.490000000000002,27.3,27.11,26.92,26.740000000000002,26.36,N/A,N/A -2012,7,12,3,30,101320,100170,99060,73.88,0,4.7700000000000005,5.1000000000000005,5.17,5.2,5.23,5.25,5.26,5.2700000000000005,5.29,211.36,211.12,210.99,210.87,210.76,210.66,210.56,210.47,210.28,28.42,28.080000000000002,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A -2012,7,12,4,30,101320,100170,99060,72.34,0,4.46,4.73,4.78,4.8,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8,181.32,181.46,181.59,181.71,181.82,181.92000000000002,182.02,182.11,182.3,28.43,28.09,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A -2012,7,12,5,30,101310,100160,99050,74.13,0,5.3,5.68,5.76,5.8,5.82,5.84,5.8500000000000005,5.86,5.87,173.07,173.18,173.23,173.28,173.32,173.36,173.41,173.46,173.57,28.490000000000002,28.150000000000002,27.98,27.78,27.6,27.400000000000002,27.21,27.03,26.650000000000002,N/A,N/A -2012,7,12,6,30,101310,100160,99050,78.51,0,7.640000000000001,8.3,8.44,8.52,8.56,8.59,8.61,8.620000000000001,8.620000000000001,172.31,172.3,172.31,172.32,172.33,172.34,172.35,172.35,172.38,28.37,28.02,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A -2012,7,12,7,30,101350,100210,99100,77.8,0,7.88,8.58,8.76,8.84,8.91,8.94,8.97,8.99,9.01,170.96,171.13,171.19,171.25,171.3,171.36,171.4,171.45000000000002,171.55,28.45,28.11,27.94,27.740000000000002,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,7,12,8,30,101350,100200,99100,79.04,0,7.7700000000000005,8.48,8.66,8.76,8.83,8.88,8.93,8.96,9.01,175.06,175.18,175.24,175.28,175.32,175.36,175.4,175.43,175.5,28.43,28.09,27.92,27.72,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A -2012,7,12,9,30,101310,100170,99060,78.93,0,8.83,9.67,9.870000000000001,9.98,10.06,10.11,10.14,10.17,10.200000000000001,179.13,179.19,179.22,179.25,179.29,179.32,179.35,179.37,179.44,28.47,28.13,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,7,12,10,30,101300,100160,99050,82.55,0,8.88,9.75,9.96,10.08,10.17,10.23,10.28,10.31,10.35,176.55,176.59,176.64000000000001,176.69,176.73,176.76,176.79,176.82,176.89000000000001,28.36,28,27.830000000000002,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A -2012,7,12,11,30,101290,100150,99040,76.94,0,10.34,11.33,11.57,11.69,11.77,11.82,11.86,11.89,11.93,177,177.62,177.85,178.06,178.23,178.39000000000001,178.55,178.70000000000002,179,28.61,28.28,28.11,27.92,27.73,27.54,27.36,27.17,26.8,N/A,N/A -2012,7,12,12,30,101270,100120,99020,80.39,0,8.67,9.51,9.72,9.85,9.94,10,10.05,10.09,10.14,175.85,175.74,175.62,175.54,175.48,175.44,175.41,175.39000000000001,175.36,28.51,28.17,28,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,7,12,13,30,101450,100290,99160,92.35000000000001,52.400000000000006,17.52,19.23,19.59,19.81,19.94,20.04,20.09,20.13,20.17,216.41,217.68,218.15,218.56,218.91,219.21,219.49,219.74,220.19,25.01,24.36,24.12,23.89,23.68,23.490000000000002,23.29,23.11,22.740000000000002,N/A,N/A -2012,7,12,14,30,101520,100360,99230,95.51,124.5,9,10.02,10.32,10.56,10.76,10.94,11.120000000000001,11.28,11.68,219.35,219.77,219.99,220.21,220.41,220.62,220.84,221.05,221.57,24.42,23.87,23.67,23.47,23.29,23.12,22.95,22.79,22.47,N/A,N/A -2012,7,12,15,30,101550,100390,99270,94.07000000000001,41.400000000000006,8.59,9.34,9.5,9.58,9.63,9.66,9.68,9.69,9.69,218.35,218.17000000000002,218.12,218.07,218.01,217.96,217.89000000000001,217.82,217.66,24.990000000000002,24.46,24.25,24.04,23.85,23.67,23.48,23.3,22.95,N/A,N/A -2012,7,12,16,30,101540,100370,99250,89.66,14.600000000000001,8.63,9.26,9.38,9.44,9.48,9.49,9.51,9.51,9.52,206.68,206.9,207.02,207.14000000000001,207.26,207.38,207.51,207.64000000000001,207.94,24.87,24.330000000000002,24.13,23.92,23.73,23.54,23.36,23.18,22.84,N/A,N/A -2012,7,12,17,30,101510,100350,99220,87.49,0,7.44,7.930000000000001,8.040000000000001,8.08,8.11,8.13,8.15,8.16,8.18,187.42000000000002,187.73,187.91,188.11,188.32,188.53,188.79,189.05,189.76,24.830000000000002,24.310000000000002,24.1,23.89,23.7,23.51,23.32,23.150000000000002,22.79,N/A,N/A -2012,7,12,18,30,101460,100300,99180,86.82000000000001,1.5,6.26,6.67,6.75,6.79,6.8100000000000005,6.82,6.82,6.83,6.84,173.59,173.70000000000002,173.8,173.9,174.02,174.14000000000001,174.29,174.45000000000002,174.89000000000001,25.55,25.080000000000002,24.89,24.68,24.490000000000002,24.310000000000002,24.12,23.94,23.59,N/A,N/A -2012,7,12,19,30,101440,100290,99170,82.53,0,4.0600000000000005,4.28,4.32,4.3500000000000005,4.37,4.39,4.4,4.41,4.43,194.39000000000001,194.93,195.17000000000002,195.44,195.73000000000002,196.04,196.4,196.75,197.71,26.25,25.84,25.650000000000002,25.44,25.25,25.060000000000002,24.87,24.69,24.32,N/A,N/A -2012,7,12,20,30,101460,100300,99190,79.9,0,3.31,3.48,3.52,3.5500000000000003,3.5700000000000003,3.6,3.61,3.63,3.66,236.41,235.22,234.55,233.88,233.27,232.69,232.1,231.54,230.42000000000002,26.98,26.6,26.42,26.21,26.02,25.830000000000002,25.63,25.45,25.07,N/A,N/A -2012,7,12,21,30,101430,100280,99170,78.19,0,2.24,2.32,2.33,2.33,2.34,2.33,2.33,2.33,2.33,199.49,200.62,201.32,202.01,202.62,203.20000000000002,203.76,204.28,205.31,27.330000000000002,26.96,26.78,26.580000000000002,26.38,26.19,25.990000000000002,25.810000000000002,25.42,N/A,N/A -2012,7,12,22,30,101430,100280,99170,79.19,0,3.54,3.7,3.71,3.7,3.69,3.68,3.67,3.65,3.62,181.29,181.63,181.88,182.16,182.41,182.64000000000001,182.89000000000001,183.13,183.64000000000001,27.400000000000002,27.03,26.85,26.64,26.45,26.26,26.060000000000002,25.88,25.490000000000002,N/A,N/A -2012,7,12,23,30,101480,100330,99210,80.67,0,11.9,13.06,13.25,13.3,13.3,13.26,13.200000000000001,13.14,12.96,224.74,225.6,225.68,225.65,225.59,225.5,225.39000000000001,225.27,224.99,26.93,26.44,26.240000000000002,26.02,25.82,25.63,25.43,25.25,24.87,N/A,N/A -2012,7,13,0,30,101350,100190,99060,85.11,0,8.72,9.31,9.41,9.44,9.450000000000001,9.450000000000001,9.450000000000001,9.450000000000001,9.58,223.4,223.58,223.75,223.92000000000002,224.11,224.31,224.58,224.86,226.02,25.12,24.61,24.41,24.22,24.04,23.88,23.72,23.57,23.35,N/A,N/A -2012,7,13,1,30,101250,100100,98980,75.97,0,7.71,8.22,8.31,8.34,8.36,8.36,8.370000000000001,8.38,8.58,184.17000000000002,184.25,184.44,184.70000000000002,185.02,185.37,185.91,186.48,189.92000000000002,26.78,26.36,26.18,26,25.830000000000002,25.66,25.51,25.37,25.19,N/A,N/A -2012,7,13,2,30,101250,100100,98990,80.18,0,4.57,4.75,4.76,4.73,4.69,4.65,4.6000000000000005,4.54,4.4,146.38,146.85,147.21,147.62,148.07,148.57,149.25,149.96,153.16,26.71,26.310000000000002,26.13,25.94,25.75,25.57,25.39,25.22,24.900000000000002,N/A,N/A -2012,7,13,3,30,101310,100160,99050,78.08,0,3.77,3.92,3.93,3.92,3.9,3.88,3.85,3.8200000000000003,3.7600000000000002,154,154.67000000000002,155.08,155.55,156.09,156.68,157.48,158.32,161.72,27.29,26.92,26.75,26.560000000000002,26.38,26.19,26.01,25.84,25.53,N/A,N/A -2012,7,13,4,30,101320,100170,99060,81,0,6.1000000000000005,6.5600000000000005,6.65,6.7,6.72,6.73,6.74,6.74,6.72,169.73,169.75,169.81,169.88,169.94,170,170.08,170.15,170.34,27.8,27.42,27.25,27.04,26.85,26.66,26.47,26.28,25.91,N/A,N/A -2012,7,13,5,30,101340,100190,99080,81.47,0,6.59,7.1000000000000005,7.21,7.2700000000000005,7.3,7.32,7.33,7.34,7.34,168.85,169.15,169.3,169.49,169.66,169.84,170.02,170.21,170.63,27.95,27.580000000000002,27.400000000000002,27.2,27.01,26.82,26.63,26.44,26.060000000000002,N/A,N/A -2012,7,13,6,30,101380,100230,99130,84.26,0,6.0600000000000005,6.5200000000000005,6.63,6.69,6.73,6.75,6.7700000000000005,6.78,6.8,163.09,163.21,163.28,163.36,163.43,163.5,163.58,163.66,163.82,27.94,27.580000000000002,27.41,27.21,27.02,26.82,26.63,26.44,26.060000000000002,N/A,N/A -2012,7,13,7,30,101420,100270,99160,84.13,0,5.71,6.16,6.26,6.33,6.38,6.41,6.44,6.46,6.5,170.78,170.88,170.91,170.93,170.95000000000002,170.97,170.99,171.01,171.05,28.09,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A -2012,7,13,8,30,101430,100280,99170,84.8,0,6.3500000000000005,6.91,7.03,7.11,7.16,7.2,7.22,7.24,7.25,181.59,181.52,181.52,181.54,181.56,181.59,181.62,181.64000000000001,181.71,28.240000000000002,27.89,27.72,27.51,27.32,27.13,26.93,26.740000000000002,26.36,N/A,N/A -2012,7,13,9,30,101400,100260,99150,73.91,0,6.87,7.73,7.99,8.19,8.370000000000001,8.52,8.67,8.8,9.040000000000001,218.38,217.21,216.56,216.05,215.64000000000001,215.3,215.03,214.8,214.46,28.52,28.22,28.05,27.87,27.68,27.5,27.32,27.14,26.78,N/A,N/A -2012,7,13,10,30,101420,100270,99160,79.32000000000001,0,9.34,10.27,10.49,10.620000000000001,10.71,10.78,10.82,10.86,10.91,216.41,216.85,217.03,217.22,217.39000000000001,217.55,217.71,217.86,218.16,28.37,28.04,27.87,27.67,27.48,27.29,27.1,26.91,26.53,N/A,N/A -2012,7,13,11,30,101420,100270,99170,78.54,0,8.83,9.77,9.99,10.13,10.22,10.290000000000001,10.34,10.38,10.42,232.29,232.13,232.07,232.02,231.97,231.92000000000002,231.88,231.85,231.78,28.580000000000002,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.75,N/A,N/A -2012,7,13,12,30,101430,100280,99170,72.83,0,9.16,10.09,10.28,10.39,10.46,10.5,10.53,10.540000000000001,10.56,239.99,239.95000000000002,239.89000000000001,239.83,239.78,239.74,239.70000000000002,239.66,239.59,28.73,28.43,28.26,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,7,13,13,30,101500,100360,99240,76.63,0,7.8,8.55,8.75,8.86,8.94,9,9.040000000000001,9.08,9.120000000000001,239.53,239.56,239.64000000000001,239.72,239.79,239.86,239.93,239.99,240.1,28.6,28.3,28.14,27.94,27.76,27.57,27.38,27.19,26.810000000000002,N/A,N/A -2012,7,13,14,30,101510,100360,99250,73.68,0,7.57,8.36,8.540000000000001,8.66,8.75,8.82,8.870000000000001,8.92,9,249.24,249.01000000000002,248.88,248.73000000000002,248.58,248.43,248.28,248.13,247.82,28.92,28.63,28.47,28.27,28.09,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A -2012,7,13,15,30,101510,100360,99250,74.99,0,8.07,8.870000000000001,9.05,9.16,9.23,9.290000000000001,9.33,9.36,9.4,242.87,243.35,243.62,243.88,244.1,244.32,244.53,244.73000000000002,245.12,28.77,28.46,28.3,28.1,27.91,27.72,27.53,27.34,26.96,N/A,N/A -2012,7,13,16,30,101540,100390,99280,77.04,0,5.63,6.11,6.24,6.33,6.390000000000001,6.45,6.49,6.53,6.61,260.74,260,259.53000000000003,259.04,258.59000000000003,258.17,257.75,257.36,256.56,28.6,28.29,28.12,27.93,27.740000000000002,27.560000000000002,27.36,27.18,26.810000000000002,N/A,N/A -2012,7,13,17,30,101490,100340,99240,74.59,0,6.38,6.91,7.0200000000000005,7.0600000000000005,7.09,7.1000000000000005,7.1000000000000005,7.1000000000000005,7.08,215.95000000000002,216.5,216.78,217.03,217.24,217.43,217.62,217.79,218.13,28.87,28.560000000000002,28.39,28.2,28.01,27.830000000000002,27.63,27.45,27.07,N/A,N/A -2012,7,13,18,30,101490,100350,99240,76.19,0,6.07,6.6000000000000005,6.7,6.75,6.7700000000000005,6.78,6.78,6.78,6.75,211.56,211.77,211.94,212.08,212.20000000000002,212.3,212.39000000000001,212.48000000000002,212.66,28.93,28.62,28.46,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A -2012,7,13,19,30,101530,100380,99270,82.64,0.4,5.04,5.4,5.2700000000000005,5.11,4.94,4.78,4.6000000000000005,4.43,4.08,1.25,0.9400000000000001,0.44,359.78000000000003,359.01,358.2,357.18,356.22,353.7,27.46,27.080000000000002,26.91,26.73,26.560000000000002,26.38,26.21,26.05,25.72,N/A,N/A -2012,7,13,20,30,101650,100480,99340,92.01,142.8,10.120000000000001,10.89,11.040000000000001,11.07,11.07,11.040000000000001,10.99,10.93,10.75,35.01,34.660000000000004,34.230000000000004,33.76,33.28,32.8,32.230000000000004,31.7,30.34,23.69,23.06,22.84,22.62,22.42,22.23,22.04,21.87,21.51,N/A,N/A -2012,7,13,21,30,101600,100430,99300,89.31,0,7.59,8.07,8.18,8.23,8.26,8.27,8.27,8.28,8.290000000000001,31.61,30.86,30.52,30.11,29.67,29.21,28.64,28.080000000000002,26.54,23.92,23.37,23.16,22.96,22.77,22.59,22.41,22.25,21.93,N/A,N/A -2012,7,13,22,30,101570,100410,99280,88.32000000000001,23.400000000000002,4.98,5.36,5.51,5.65,5.84,6.05,6.47,6.92,7.59,298.96,300.48,301.56,302.76,304.31,306.06,308.7,311.5,313.79,24.11,23.66,23.490000000000002,23.330000000000002,23.2,23.1,23.1,23.13,23.55,N/A,N/A -2012,7,13,23,30,101460,100300,99180,82.22,0.7000000000000001,7.04,7.3500000000000005,7.36,7.3100000000000005,7.25,7.19,7.13,7.08,6.94,216.33,217.14000000000001,217.55,218.09,218.78,219.55,220.95000000000002,222.39000000000001,228.32,24.89,24.42,24.240000000000002,24.07,23.91,23.77,23.67,23.6,23.900000000000002,N/A,N/A -2012,7,14,0,30,101330,100170,99050,73.87,0,6.61,7.0200000000000005,7.12,7.16,7.19,7.21,7.24,7.26,7.3,240.12,239.84,239.65,239.41,239.12,238.8,238.3,237.76,236.14000000000001,26.51,26.11,25.95,25.78,25.63,25.490000000000002,25.37,25.26,25.16,N/A,N/A -2012,7,14,1,30,101340,100190,99070,78.60000000000001,0,1.6300000000000001,1.79,1.84,1.9000000000000001,1.95,2,2.06,2.11,2.35,256.56,257.32,257.87,258.44,258.98,259.51,260.08,260.65,262.4,26.76,26.39,26.22,26.02,25.830000000000002,25.64,25.44,25.26,24.87,N/A,N/A -2012,7,14,2,30,101410,100260,99140,77.4,0,3.36,3.5500000000000003,3.59,3.62,3.63,3.65,3.66,3.67,3.69,283.72,283.44,283.27,283.13,283.03000000000003,282.96,282.94,282.95,282.93,27.54,27.18,27,26.8,26.61,26.42,26.22,26.04,25.650000000000002,N/A,N/A -2012,7,14,3,30,101390,100240,99130,75.28,0,0.99,0.97,0.9500000000000001,0.92,0.92,0.92,1.01,1.1500000000000001,1.82,327.23,319.56,314.63,308.03000000000003,300.18,290.93,278.28000000000003,263.47,242.82,27.69,27.37,27.21,27.02,26.85,26.68,26.52,26.38,26.13,N/A,N/A -2012,7,14,4,30,101400,100260,99150,73.78,0,2.92,3.0700000000000003,3.09,3.09,3.08,3.0700000000000003,3.0700000000000003,3.06,3.04,202.17000000000002,201.63,201.45000000000002,201.25,201.08,200.91,200.74,200.58,200.23000000000002,27.990000000000002,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.52,26.13,N/A,N/A -2012,7,14,5,30,101420,100270,99150,75.72,0,4.07,4.2,4.17,4.12,4.07,4.0200000000000005,3.96,3.91,3.79,169.35,168.44,168,167.54,167.09,166.64000000000001,166.16,165.71,164.73,27.650000000000002,27.3,27.13,26.94,26.75,26.560000000000002,26.37,26.19,25.82,N/A,N/A -2012,7,14,6,30,101410,100260,99150,79.33,0,4.05,4.3500000000000005,4.43,4.49,4.53,4.5600000000000005,4.59,4.61,4.65,163.43,164.07,164.34,164.57,164.77,164.94,165.1,165.25,165.53,27.53,27.18,27,26.8,26.61,26.42,26.22,26.03,25.650000000000002,N/A,N/A -2012,7,14,7,30,101450,100310,99190,84.63,0,4.74,5.0600000000000005,5.13,5.16,5.19,5.2,5.21,5.22,5.22,170.11,170.46,170.69,170.91,171.1,171.28,171.47,171.64000000000001,171.99,27.5,27.14,26.96,26.76,26.57,26.38,26.18,25.990000000000002,25.61,N/A,N/A -2012,7,14,8,30,101490,100340,99230,83.86,0,3.98,4.28,4.3500000000000005,4.41,4.45,4.49,4.5200000000000005,4.54,4.59,182.58,182.83,182.96,183.07,183.16,183.25,183.33,183.41,183.57,27.63,27.29,27.12,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A -2012,7,14,9,30,101500,100350,99240,79.39,0,4.58,4.9,4.97,5,5.0200000000000005,5.03,5.04,5.05,5.0600000000000005,202.79,202.92000000000002,202.9,202.85,202.8,202.75,202.69,202.63,202.48000000000002,27.85,27.52,27.35,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.01,N/A,N/A -2012,7,14,10,30,101520,100370,99260,73.83,0,4.5600000000000005,4.84,4.89,4.91,4.92,4.92,4.92,4.92,4.91,202.87,203.6,204.02,204.42000000000002,204.8,205.15,205.51,205.84,206.51,28.1,27.78,27.61,27.41,27.23,27.04,26.84,26.66,26.28,N/A,N/A -2012,7,14,11,30,101560,100410,99290,82.3,0,4.1,4.37,4.43,4.47,4.5,4.51,4.53,4.54,4.5600000000000005,214.58,214.08,213.89000000000001,213.73000000000002,213.6,213.48000000000002,213.38,213.29,213.12,27.75,27.42,27.25,27.05,26.86,26.67,26.48,26.29,25.91,N/A,N/A -2012,7,14,12,30,101590,100430,99310,87.03,0,8.870000000000001,9.4,9.41,9.34,9.24,9.120000000000001,8.97,8.82,8.43,228.72,229.25,229.25,229.21,229.15,229.09,229,228.91,228.71,25.69,25.22,25.03,24.830000000000002,24.650000000000002,24.48,24.3,24.14,23.82,N/A,N/A -2012,7,14,13,30,101580,100420,99300,75.28,0,2.88,3.0100000000000002,3.31,4.17,4.73,5.08,5.37,5.65,6.09,270.82,266.33,260.79,249.34,243.83,242.69,241.84,241.14000000000001,240.37,26.35,26.060000000000002,26.080000000000002,26.330000000000002,26.39,26.35,26.240000000000002,26.13,25.87,N/A,N/A -2012,7,14,14,30,101640,100490,99370,82.16,0,1.54,1.6,1.62,1.67,1.83,2.14,2.49,2.87,3.45,312.49,308.24,305.3,300.79,293.99,283.86,277.85,274.03000000000003,273.56,26.42,26.07,25.91,25.73,25.62,25.560000000000002,25.52,25.490000000000002,25.44,N/A,N/A -2012,7,14,15,30,101640,100490,99370,81.48,0,2.05,2.21,2.25,2.2800000000000002,2.32,2.35,2.38,2.41,2.48,260.28000000000003,259.86,259.71,259.55,259.38,259.21,259.01,258.8,258.22,26.990000000000002,26.62,26.45,26.25,26.060000000000002,25.87,25.67,25.490000000000002,25.12,N/A,N/A -2012,7,14,16,30,101630,100480,99360,79.21000000000001,0,0.43,0.45,0.47000000000000003,0.48,0.5,0.53,0.58,0.65,0.98,351.08,350.67,349.79,348.6,346.91,344.68,341.15000000000003,336.99,322.8,27.22,26.87,26.7,26.51,26.34,26.16,26,25.86,25.68,N/A,N/A -2012,7,14,17,30,101610,100460,99350,80.99,0,1.4000000000000001,1.42,1.4000000000000001,1.3800000000000001,1.36,1.33,1.31,1.28,1.21,57.53,58.49,58.69,58.9,59.13,59.370000000000005,59.620000000000005,59.88,60.53,27.41,27.05,26.87,26.67,26.48,26.29,26.1,25.92,25.54,N/A,N/A -2012,7,14,18,30,101580,100420,99310,79.23,0,2.08,2.14,2.14,2.13,2.11,2.1,2.08,2.07,2.04,123.60000000000001,124.95,125.73,126.58,127.42,128.27,129.26,130.21,132.61,27.66,27.29,27.11,26.92,26.73,26.54,26.34,26.16,25.79,N/A,N/A -2012,7,14,19,30,101580,100430,99320,76.66,0,1.72,1.8,1.81,1.81,1.82,1.82,1.82,1.83,1.83,166.55,167.84,168.66,169.5,170.29,171.07,171.9,172.69,174.52,27.97,27.6,27.43,27.22,27.03,26.84,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,7,14,20,30,101520,100370,99260,77.24,0,3.66,3.88,3.92,3.95,3.97,3.99,4,4.0200000000000005,4.04,184.24,185.19,185.70000000000002,186.20000000000002,186.64000000000001,187.06,187.48,187.87,188.66,28.16,27.8,27.62,27.42,27.23,27.03,26.84,26.650000000000002,26.27,N/A,N/A -2012,7,14,21,30,101490,100340,99230,78.9,0,3.63,3.85,3.89,3.91,3.92,3.93,3.94,3.94,3.95,198.07,198.41,198.63,198.83,198.99,199.15,199.29,199.41,199.64000000000001,28.19,27.830000000000002,27.66,27.46,27.27,27.080000000000002,26.88,26.7,26.310000000000002,N/A,N/A -2012,7,14,22,30,101470,100320,99210,81.12,0,4.17,4.43,4.47,4.49,4.5,4.5,4.5,4.5,4.5,184.88,185.56,186.14000000000001,186.70000000000002,187.20000000000002,187.67000000000002,188.15,188.61,189.53,28.09,27.75,27.580000000000002,27.38,27.19,27,26.8,26.62,26.240000000000002,N/A,N/A -2012,7,14,23,30,101440,100290,99180,81.26,0,4.1,4.37,4.42,4.44,4.46,4.47,4.48,4.48,4.49,168.20000000000002,168.57,168.78,168.98,169.18,169.38,169.6,169.8,170.29,28.09,27.76,27.59,27.39,27.2,27.01,26.82,26.63,26.25,N/A,N/A -2012,7,15,0,30,101450,100310,99200,80.72,0,3.33,3.5500000000000003,3.6,3.63,3.65,3.66,3.67,3.68,3.7,173.12,173.52,173.68,173.84,173.97,174.1,174.23,174.36,174.65,28.22,27.91,27.740000000000002,27.54,27.36,27.17,26.97,26.79,26.41,N/A,N/A -2012,7,15,1,30,101430,100290,99180,81.07000000000001,0,3.71,3.95,3.99,4,4.01,4.01,4.01,4,3.99,182.12,182.21,182.35,182.52,182.69,182.86,183.05,183.25,183.68,28.19,27.88,27.71,27.52,27.330000000000002,27.14,26.95,26.76,26.38,N/A,N/A -2012,7,15,2,30,101480,100330,99220,80.72,0,3.5,3.72,3.77,3.79,3.8000000000000003,3.81,3.81,3.81,3.81,175.1,175.59,175.88,176.17000000000002,176.42000000000002,176.67000000000002,176.9,177.12,177.56,28.17,27.86,27.69,27.490000000000002,27.3,27.11,26.92,26.73,26.35,N/A,N/A -2012,7,15,3,30,101490,100340,99230,83.93,0,3.04,3.2,3.22,3.22,3.22,3.21,3.2,3.19,3.17,200.4,200,199.74,199.45000000000002,199.16,198.88,198.59,198.31,197.69,27.98,27.650000000000002,27.48,27.28,27.1,26.91,26.71,26.52,26.14,N/A,N/A -2012,7,15,4,30,101470,100320,99210,84.01,0,3.67,3.89,3.93,3.95,3.96,3.97,3.97,3.97,3.97,177.02,177.48,177.68,177.88,178.06,178.24,178.41,178.57,178.91,27.88,27.55,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A -2012,7,15,5,30,101480,100330,99220,83.98,0,3.98,4.24,4.29,4.3100000000000005,4.33,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,165.39000000000001,165.87,166.02,166.18,166.33,166.48,166.64000000000001,166.79,167.1,27.85,27.52,27.35,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A -2012,7,15,6,30,101480,100330,99220,85.29,0,3.27,3.48,3.5300000000000002,3.5700000000000003,3.6,3.62,3.64,3.67,3.72,169.9,170.82,171.55,172.26,172.9,173.52,174.14000000000001,174.74,175.99,27.830000000000002,27.5,27.34,27.14,26.96,26.77,26.59,26.41,26.04,N/A,N/A -2012,7,15,7,30,101540,100390,99280,84.65,0,3.79,4.04,4.08,4.1,4.11,4.11,4.11,4.11,4.1,192.22,192.61,192.85,193.07,193.27,193.44,193.62,193.78,194.1,27.97,27.63,27.46,27.26,27.07,26.88,26.68,26.5,26.12,N/A,N/A -2012,7,15,8,30,101520,100370,99260,85.14,0,4.61,4.96,5.05,5.11,5.16,5.2,5.24,5.2700000000000005,5.33,192.38,193.63,194.38,195.1,195.71,196.27,196.8,197.28,198.18,27.95,27.62,27.46,27.26,27.080000000000002,26.89,26.7,26.52,26.14,N/A,N/A -2012,7,15,9,30,101540,100390,99280,84.47,0,5.29,5.66,5.73,5.76,5.78,5.8,5.8,5.8,5.8,207.98000000000002,207.83,207.87,207.96,208.06,208.17000000000002,208.29,208.41,208.66,27.89,27.55,27.38,27.18,26.990000000000002,26.8,26.6,26.42,26.04,N/A,N/A -2012,7,15,10,30,101570,100420,99310,82.69,0,5.73,6.15,6.23,6.2700000000000005,6.29,6.3,6.3,6.3,6.28,215.33,215.82,216.09,216.35,216.6,216.83,217.06,217.27,217.73000000000002,27.96,27.61,27.44,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A -2012,7,15,11,30,101610,100460,99350,82.65,0,5.37,5.7700000000000005,5.87,5.91,5.94,5.96,5.97,5.98,5.98,233.39000000000001,233.35,233.34,233.31,233.27,233.24,233.20000000000002,233.16,233.07,27.96,27.62,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.1,N/A,N/A -2012,7,15,12,30,101630,100480,99370,79.58,0,4.76,5.08,5.15,5.19,5.22,5.24,5.26,5.2700000000000005,5.3,217.06,217.78,218.19,218.61,218.99,219.35,219.72,220.06,220.74,28.03,27.7,27.53,27.34,27.150000000000002,26.96,26.78,26.59,26.22,N/A,N/A -2012,7,15,13,30,101690,100540,99430,78.93,0,3.0500000000000003,3.24,3.2800000000000002,3.31,3.33,3.34,3.36,3.37,3.39,235.39000000000001,235.91,236.16,236.41,236.64000000000001,236.86,237.07,237.26,237.64000000000001,28.03,27.7,27.52,27.330000000000002,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A -2012,7,15,14,30,101700,100550,99430,74.75,0,4.25,4.47,4.49,4.48,4.46,4.45,4.43,4.4,4.3500000000000005,248.78,248.41,248.18,247.94,247.72,247.51000000000002,247.29,247.07,246.61,28.16,27.830000000000002,27.66,27.46,27.27,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,7,15,15,30,101710,100560,99440,74.68,0,2.67,2.85,2.9,2.93,2.96,2.99,3.0100000000000002,3.0300000000000002,3.0700000000000003,250.5,250,249.72,249.46,249.22,248.99,248.77,248.56,248.16,28.12,27.79,27.62,27.42,27.240000000000002,27.04,26.85,26.67,26.28,N/A,N/A -2012,7,15,16,30,101690,100540,99430,73.56,0,2.47,2.59,2.61,2.63,2.64,2.65,2.65,2.66,2.67,262.15,261.96,261.75,261.55,261.37,261.2,261.01,260.82,260.44,28.22,27.88,27.7,27.5,27.32,27.13,26.93,26.740000000000002,26.36,N/A,N/A -2012,7,15,17,30,101680,100530,99420,72.95,0,1.61,1.7,1.72,1.74,1.75,1.77,1.78,1.79,1.82,248.54,249.49,250.06,250.59,251.04,251.46,251.87,252.25,252.98000000000002,28.26,27.91,27.740000000000002,27.54,27.35,27.16,26.97,26.78,26.400000000000002,N/A,N/A -2012,7,15,18,30,101650,100500,99390,74.07000000000001,0,2.47,2.52,2.5100000000000002,2.48,2.45,2.42,2.39,2.36,2.29,188.8,188.22,188.01,187.78,187.58,187.37,187.16,186.96,186.51,28.26,27.900000000000002,27.73,27.53,27.34,27.150000000000002,26.96,26.77,26.39,N/A,N/A -2012,7,15,19,30,101650,100500,99390,67.37,0,2.29,2.38,2.39,2.38,2.37,2.36,2.35,2.34,2.31,173.70000000000002,173.83,173.91,173.97,174.02,174.07,174.09,174.11,174.11,28.6,28.26,28.09,27.89,27.7,27.52,27.32,27.14,26.77,N/A,N/A -2012,7,15,20,30,101610,100460,99350,71.29,0,3.36,3.52,3.54,3.54,3.54,3.5300000000000002,3.52,3.52,3.5,166.74,166.84,166.84,166.85,166.87,166.89000000000001,166.93,166.96,167.06,28.46,28.11,27.94,27.740000000000002,27.55,27.37,27.18,26.990000000000002,26.62,N/A,N/A -2012,7,15,21,30,101540,100400,99290,71.61,0,4.68,4.98,5.03,5.05,5.07,5.07,5.07,5.07,5.05,171.8,171.89000000000001,172,172.08,172.16,172.24,172.31,172.38,172.5,28.46,28.13,27.96,27.77,27.580000000000002,27.39,27.2,27.02,26.64,N/A,N/A -2012,7,15,22,30,101520,100370,99260,71.08,0,5.3100000000000005,5.71,5.79,5.82,5.84,5.8500000000000005,5.8500000000000005,5.8500000000000005,5.84,165.46,165.61,165.64000000000001,165.66,165.68,165.69,165.70000000000002,165.71,165.73,28.44,28.13,27.97,27.78,27.59,27.400000000000002,27.21,27.03,26.650000000000002,N/A,N/A -2012,7,15,23,30,101510,100360,99250,73.38,0,5.33,5.74,5.8100000000000005,5.8500000000000005,5.87,5.89,5.9,5.9,5.9,164.81,164.8,164.84,164.87,164.89000000000001,164.9,164.91,164.92000000000002,164.95000000000002,28.29,27.98,27.810000000000002,27.61,27.43,27.240000000000002,27.04,26.86,26.48,N/A,N/A -2012,7,16,0,30,101530,100380,99270,77.27,0,5.08,5.48,5.57,5.62,5.65,5.67,5.69,5.7,5.72,163.1,163.36,163.47,163.57,163.67000000000002,163.77,163.86,163.95000000000002,164.14000000000001,28.12,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.29,N/A,N/A -2012,7,16,1,30,101530,100380,99270,74.79,0,5.48,5.92,6,6.05,6.08,6.1000000000000005,6.12,6.13,6.140000000000001,166.73,166.67000000000002,166.66,166.66,166.65,166.63,166.63,166.62,166.59,28.23,27.91,27.75,27.55,27.36,27.17,26.98,26.79,26.41,N/A,N/A -2012,7,16,2,30,101520,100370,99260,74.87,0,4.87,5.25,5.33,5.38,5.42,5.44,5.47,5.49,5.5200000000000005,168.74,168.87,168.91,168.95000000000002,168.99,169.02,169.05,169.07,169.13,28.2,27.88,27.72,27.52,27.330000000000002,27.14,26.95,26.77,26.39,N/A,N/A -2012,7,16,3,30,101560,100410,99300,81.44,0,5.67,6.13,6.22,6.2700000000000005,6.3100000000000005,6.33,6.34,6.3500000000000005,6.36,157.76,157.8,157.86,157.95000000000002,158.03,158.11,158.20000000000002,158.29,158.47,28.02,27.68,27.51,27.310000000000002,27.12,26.93,26.73,26.55,26.16,N/A,N/A -2012,7,16,4,30,101550,100400,99290,84.93,0,5.61,6.05,6.16,6.22,6.26,6.3,6.32,6.34,6.37,156.71,157.19,157.43,157.68,157.89000000000001,158.1,158.31,158.49,158.88,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A -2012,7,16,5,30,101550,100410,99300,85.39,0,5.18,5.59,5.69,5.74,5.78,5.8100000000000005,5.83,5.8500000000000005,5.88,162.28,162.6,162.73,162.86,162.98,163.08,163.19,163.29,163.49,27.86,27.52,27.34,27.14,26.95,26.76,26.57,26.38,26,N/A,N/A -2012,7,16,6,30,101590,100440,99330,79.16,0,4.03,4.34,4.41,4.45,4.49,4.5200000000000005,4.54,4.5600000000000005,4.6000000000000005,180.56,180.66,180.73,180.81,180.89000000000001,180.98,181.07,181.15,181.35,28.03,27.69,27.52,27.32,27.13,26.94,26.75,26.560000000000002,26.18,N/A,N/A -2012,7,16,7,30,101610,100460,99340,81.22,0,4.69,4.97,5.0200000000000005,5.04,5.05,5.05,5.05,5.04,5.03,192.88,192.48000000000002,192.24,192,191.78,191.57,191.34,191.13,190.70000000000002,27.97,27.63,27.45,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.11,N/A,N/A -2012,7,16,8,30,101590,100450,99330,81.99,0,4.5200000000000005,4.8500000000000005,4.92,4.96,4.98,5.01,5.0200000000000005,5.04,5.0600000000000005,186.52,186.43,186.43,186.44,186.44,186.44,186.45000000000002,186.47,186.51,27.94,27.6,27.42,27.22,27.03,26.84,26.64,26.46,26.080000000000002,N/A,N/A -2012,7,16,9,30,101610,100460,99350,81.68,0,4.25,4.5200000000000005,4.58,4.62,4.64,4.66,4.68,4.69,4.71,185.11,184.92000000000002,184.87,184.81,184.76,184.72,184.67000000000002,184.63,184.52,27.95,27.61,27.43,27.240000000000002,27.05,26.86,26.66,26.48,26.1,N/A,N/A -2012,7,16,10,30,101610,100460,99340,77.48,0.7000000000000001,4.5,4.83,4.9,4.93,4.96,4.98,5,5.01,5.0200000000000005,182.07,182.11,182.14000000000001,182.14000000000001,182.13,182.11,182.07,182.03,181.93,28.16,27.830000000000002,27.66,27.46,27.27,27.09,26.89,26.71,26.32,N/A,N/A -2012,7,16,11,30,101620,100470,99360,78.66,0,4.91,5.23,5.29,5.3100000000000005,5.32,5.33,5.32,5.32,5.29,180.93,181.04,181.01,180.96,180.9,180.84,180.79,180.73,180.63,28.07,27.72,27.55,27.35,27.16,26.97,26.78,26.59,26.21,N/A,N/A -2012,7,16,12,30,101650,100500,99390,76.86,0,3.63,3.84,3.87,3.87,3.88,3.87,3.87,3.86,3.84,185.27,184.62,184.34,184.04,183.77,183.52,183.26,183.02,182.54,28.13,27.8,27.63,27.43,27.240000000000002,27.05,26.86,26.67,26.29,N/A,N/A -2012,7,16,13,30,101660,100510,99400,78.02,0,2.89,3.0500000000000003,3.09,3.12,3.13,3.15,3.16,3.16,3.18,176.87,176.76,176.67000000000002,176.62,176.58,176.56,176.55,176.56,176.57,28.01,27.68,27.51,27.310000000000002,27.12,26.93,26.740000000000002,26.560000000000002,26.17,N/A,N/A -2012,7,16,14,30,101690,100540,99420,76.98,0,2.61,2.71,2.72,2.72,2.71,2.7,2.69,2.69,2.67,199.02,199.05,198.92000000000002,198.8,198.69,198.58,198.46,198.34,198.06,28.09,27.75,27.580000000000002,27.39,27.2,27.01,26.810000000000002,26.63,26.25,N/A,N/A -2012,7,16,15,30,101680,100530,99420,77.36,0,3.02,3.16,3.17,3.17,3.17,3.16,3.15,3.15,3.13,177.79,176.96,176.58,176.18,175.81,175.47,175.11,174.78,174.09,28.11,27.76,27.59,27.39,27.19,27,26.810000000000002,26.62,26.240000000000002,N/A,N/A -2012,7,16,16,30,101680,100530,99410,81.18,0,2.73,2.79,2.7800000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7800000000000002,2.7800000000000002,166.05,163.03,160.96,158.62,156.21,153.65,150.81,148.03,141.85,27.41,27.07,26.900000000000002,26.72,26.55,26.38,26.22,26.060000000000002,25.75,N/A,N/A -2012,7,16,17,30,101640,100490,99380,80.69,0,2.49,2.65,2.69,2.73,2.7600000000000002,2.79,2.82,2.84,2.9,150.03,148.14000000000001,147.07,146.04,145.11,144.22,143.33,142.48,140.79,27.84,27.48,27.3,27.1,26.92,26.73,26.53,26.35,25.98,N/A,N/A -2012,7,16,18,30,101590,100440,99330,76.58,0,3.63,3.8200000000000003,3.85,3.86,3.87,3.88,3.88,3.88,3.88,133.28,133.38,133.28,133.19,133.1,133.02,132.92000000000002,132.84,132.66,28.16,27.8,27.62,27.42,27.23,27.04,26.84,26.66,26.27,N/A,N/A -2012,7,16,19,30,101570,100420,99310,77.4,0,3.33,3.5,3.5300000000000002,3.5500000000000003,3.56,3.56,3.56,3.5700000000000003,3.5700000000000003,139.49,139.63,139.63,139.65,139.66,139.67000000000002,139.68,139.71,139.76,28.23,27.87,27.69,27.490000000000002,27.3,27.11,26.91,26.73,26.35,N/A,N/A -2012,7,16,20,30,101530,100380,99270,77.57000000000001,0,3.33,3.52,3.5500000000000003,3.58,3.59,3.61,3.62,3.63,3.65,141.99,141.88,141.78,141.67000000000002,141.57,141.46,141.35,141.26,141.02,28.35,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.04,26.86,26.47,N/A,N/A -2012,7,16,21,30,101530,100380,99270,79.08,0,3.62,3.8200000000000003,3.85,3.86,3.87,3.87,3.87,3.86,3.85,144.51,144.32,144.11,143.93,143.77,143.62,143.47,143.34,143.06,28.44,28.09,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.560000000000002,N/A,N/A -2012,7,16,22,30,101530,100380,99270,79.25,0,3.09,3.2800000000000002,3.33,3.35,3.38,3.39,3.4,3.42,3.43,139.41,139.87,140.15,140.4,140.62,140.82,141,141.17000000000002,141.49,28.43,28.1,27.93,27.73,27.54,27.36,27.16,26.97,26.59,N/A,N/A -2012,7,16,23,30,101510,100370,99260,79.87,0,5.13,5.5,5.5600000000000005,5.59,5.6000000000000005,5.61,5.61,5.6000000000000005,5.58,139.01,138.89000000000001,138.99,139.06,139.11,139.15,139.17000000000002,139.20000000000002,139.23,28.44,28.11,27.94,27.75,27.55,27.36,27.17,26.98,26.6,N/A,N/A -2012,7,17,0,30,101500,100360,99250,76.08,0,4.32,4.61,4.66,4.68,4.68,4.69,4.68,4.68,4.67,153.05,152.99,152.88,152.78,152.68,152.59,152.5,152.42000000000002,152.26,28.46,28.150000000000002,27.98,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A -2012,7,17,1,30,101430,100280,99170,85.56,0,6.05,6.36,6.3500000000000005,6.29,6.22,6.140000000000001,6.05,5.95,5.71,143.22,143.55,143.73,143.93,144.12,144.31,144.52,144.73,145.22,27.47,27.09,26.92,26.72,26.54,26.35,26.17,25.990000000000002,25.64,N/A,N/A -2012,7,17,2,30,101430,100280,99170,78.22,0,4.96,5.26,5.28,5.2700000000000005,5.26,5.23,5.19,5.15,5.0600000000000005,140.48,140.67000000000002,140.8,140.95000000000002,141.1,141.26,141.46,141.65,142.18,27.77,27.42,27.240000000000002,27.05,26.86,26.67,26.48,26.3,25.92,N/A,N/A -2012,7,17,3,30,101460,100310,99200,80.94,0,5.5200000000000005,5.87,5.93,5.94,5.94,5.93,5.91,5.89,5.84,154.32,154.31,154.25,154.17000000000002,154.09,153.99,153.88,153.77,153.45000000000002,27.71,27.35,27.18,26.98,26.79,26.6,26.42,26.240000000000002,25.87,N/A,N/A -2012,7,17,4,30,101410,100270,99150,82.13,0,5.2,5.5200000000000005,5.57,5.58,5.58,5.58,5.5600000000000005,5.55,5.51,153.17000000000002,153.35,153.44,153.54,153.66,153.78,153.92000000000002,154.07,154.49,27.71,27.36,27.18,26.990000000000002,26.8,26.62,26.43,26.26,25.900000000000002,N/A,N/A -2012,7,17,5,30,101430,100280,99170,78.53,0,3.69,3.92,3.96,3.99,4,4.01,4.0200000000000005,4.0200000000000005,4.0200000000000005,137.78,137.76,137.81,137.86,137.9,137.94,137.98,138.02,138.11,27.96,27.62,27.45,27.25,27.07,26.88,26.68,26.5,26.13,N/A,N/A -2012,7,17,6,30,101440,100290,99180,80.16,0,4.18,4.43,4.47,4.49,4.5,4.5,4.5,4.5,4.5,147.84,148.28,148.57,148.86,149.13,149.38,149.65,149.92000000000002,150.49,27.93,27.59,27.41,27.21,27.02,26.84,26.64,26.45,26.07,N/A,N/A -2012,7,17,7,30,101460,100310,99200,81.78,0,4.13,4.4,4.45,4.47,4.49,4.5,4.51,4.51,4.5200000000000005,151.57,151.58,151.54,151.51,151.48,151.46,151.44,151.42000000000002,151.36,27.990000000000002,27.64,27.47,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,7,17,8,30,101470,100330,99220,82.65,0,5.24,5.59,5.65,5.68,5.69,5.7,5.71,5.71,5.71,153.43,153.3,153.11,152.94,152.79,152.64000000000001,152.51,152.39000000000001,152.15,28.04,27.7,27.52,27.32,27.14,26.95,26.75,26.560000000000002,26.19,N/A,N/A -2012,7,17,9,30,101470,100330,99210,82.72,0,5.01,5.33,5.37,5.4,5.41,5.42,5.43,5.43,5.43,159.94,159.72,159.56,159.4,159.26,159.13,158.99,158.86,158.58,28.02,27.67,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A -2012,7,17,10,30,101460,100310,99200,82.95,0,3.97,4.22,4.2700000000000005,4.29,4.3,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,165.21,164.94,164.93,164.9,164.88,164.86,164.84,164.82,164.78,28,27.650000000000002,27.47,27.28,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,7,17,11,30,101510,100360,99250,82.5,0,4.51,4.8100000000000005,4.87,4.9,4.92,4.93,4.93,4.93,4.93,171.74,171.77,171.77,171.75,171.74,171.73,171.71,171.69,171.65,28.080000000000002,27.740000000000002,27.560000000000002,27.36,27.17,26.98,26.79,26.6,26.22,N/A,N/A -2012,7,17,12,30,101540,100390,99280,79.42,0,3.08,3.27,3.31,3.34,3.35,3.37,3.38,3.39,3.42,176.04,176.33,176.42000000000002,176.54,176.67000000000002,176.79,176.93,177.07,177.36,28.21,27.88,27.71,27.51,27.32,27.13,26.94,26.75,26.37,N/A,N/A -2012,7,17,13,30,101520,100370,99260,80.02,0,3.2600000000000002,3.54,3.61,3.66,3.71,3.75,3.7800000000000002,3.8200000000000003,3.89,170.08,169.48,169.34,169.23,169.16,169.1,169.08,169.08,169.21,28.17,27.830000000000002,27.66,27.47,27.28,27.1,26.91,26.73,26.36,N/A,N/A -2012,7,17,14,30,101550,100400,99290,78.54,0,3.33,3.5100000000000002,3.5300000000000002,3.54,3.54,3.54,3.54,3.54,3.52,187.58,187.51,187.43,187.36,187.29,187.23,187.17000000000002,187.12,187.01,28.3,27.97,27.79,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,7,17,15,30,101590,100440,99320,82.94,0,3.39,3.47,3.43,3.37,3.31,3.24,3.17,3.11,2.96,204.88,203.49,202.63,201.61,200.56,199.47,198.18,196.91,193.67000000000002,27.830000000000002,27.47,27.310000000000002,27.11,26.93,26.75,26.560000000000002,26.39,26.03,N/A,N/A -2012,7,17,16,30,101580,100430,99320,83.86,0,2.39,2.46,2.47,2.46,2.45,2.44,2.43,2.42,2.4,185.88,184.61,183.89000000000001,183.11,182.31,181.47,180.47,179.49,176.9,27.86,27.5,27.32,27.13,26.94,26.75,26.560000000000002,26.38,26,N/A,N/A -2012,7,17,17,30,101550,100400,99290,84.77,0,1.04,1.11,1.1400000000000001,1.17,1.2,1.23,1.27,1.3,1.3800000000000001,174.17000000000002,169.83,167.57,165.31,163.31,161.38,159.49,157.66,154.15,28.01,27.650000000000002,27.48,27.28,27.09,26.900000000000002,26.71,26.53,26.150000000000002,N/A,N/A -2012,7,17,18,30,101530,100380,99270,80.57000000000001,0,2.31,2.37,2.36,2.34,2.32,2.29,2.27,2.24,2.19,148.17000000000002,148.47,148.86,149.25,149.62,149.97,150.34,150.68,151.43,28.42,28.060000000000002,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,17,19,30,101480,100330,99220,80.77,0,2.45,2.59,2.62,2.63,2.65,2.66,2.67,2.68,2.69,142.25,142.11,142.1,142.09,142.09,142.09,142.09,142.1,142.16,28.51,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,17,20,30,101500,100350,99240,82.71000000000001,0,3.2800000000000002,3.46,3.49,3.52,3.5300000000000002,3.54,3.56,3.5700000000000003,3.59,167.52,167.37,167.22,167.1,167,166.9,166.82,166.74,166.61,28.61,28.240000000000002,28.07,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A -2012,7,17,21,30,101450,100310,99200,80.66,0,3.44,3.6,3.62,3.62,3.62,3.62,3.61,3.61,3.6,168.38,168.19,168.07,167.95000000000002,167.86,167.77,167.67000000000002,167.59,167.4,28.72,28.36,28.19,27.98,27.79,27.61,27.41,27.23,26.85,N/A,N/A -2012,7,17,22,30,101430,100290,99180,81.54,0,4.19,4.41,4.42,4.42,4.4,4.38,4.36,4.34,4.29,179.78,179.56,179.43,179.29,179.15,179.02,178.87,178.73,178.4,28.72,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.86,N/A,N/A -2012,7,17,23,30,101400,100260,99150,82.81,0,3.7800000000000002,4.0200000000000005,4.07,4.09,4.1,4.11,4.12,4.12,4.12,170.05,170.23,170.43,170.62,170.8,170.97,171.16,171.34,171.73,28.61,28.28,28.11,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A -2012,7,18,0,30,101410,100260,99160,82.13,0,2.05,2.18,2.21,2.22,2.23,2.24,2.25,2.25,2.2600000000000002,159.14000000000001,159.20000000000002,159.18,159.15,159.12,159.08,159.04,159,158.96,28.59,28.28,28.11,27.91,27.72,27.54,27.34,27.16,26.78,N/A,N/A -2012,7,18,1,30,101400,100250,99150,82.62,0,2.57,2.74,2.7800000000000002,2.8000000000000003,2.82,2.83,2.85,2.86,2.88,139.93,139.6,139.57,139.53,139.47,139.4,139.32,139.24,139.06,28.53,28.21,28.04,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A -2012,7,18,2,30,101410,100270,99160,82.36,0,2.43,2.58,2.6,2.61,2.62,2.62,2.63,2.63,2.64,144.78,145.32,145.75,146.17000000000002,146.55,146.91,147.29,147.63,148.36,28.51,28.2,28.03,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.71,N/A,N/A -2012,7,18,3,30,101450,100300,99190,83.41,0,4.64,5.03,5.11,5.17,5.21,5.24,5.26,5.28,5.3100000000000005,154.03,154.29,154.35,154.42000000000002,154.48,154.54,154.61,154.68,154.81,28.6,28.29,28.12,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A -2012,7,18,4,30,101430,100280,99170,84.37,0,6.2700000000000005,6.5,6.44,6.3,6.15,6,5.86,5.75,5.61,168.45000000000002,167.12,166.03,164.43,162.49,160.28,157.85,155.49,150.98,27.86,27.54,27.400000000000002,27.25,27.11,26.97,26.830000000000002,26.7,26.39,N/A,N/A -2012,7,18,5,30,101450,100300,99200,86.61,0,5.28,5.73,5.84,5.92,5.98,6.03,6.08,6.11,6.19,166.35,165.95000000000002,165.66,165.37,165.1,164.85,164.61,164.37,163.87,28.34,28.01,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.900000000000002,26.52,N/A,N/A -2012,7,18,6,30,101470,100320,99210,87.56,0,5.95,6.5,6.62,6.69,6.75,6.78,6.8100000000000005,6.84,6.87,164.15,163.93,163.88,163.83,163.78,163.75,163.72,163.70000000000002,163.64000000000001,28.330000000000002,28,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A -2012,7,18,7,30,101540,100390,99280,85.84,0,5.5,5.93,6.01,6.05,6.08,6.09,6.09,6.1000000000000005,6.1000000000000005,175.32,175.04,174.86,174.67000000000002,174.48,174.3,174.11,173.92000000000002,173.53,28.38,28.05,27.88,27.68,27.5,27.310000000000002,27.11,26.93,26.55,N/A,N/A -2012,7,18,8,30,101540,100400,99290,86.43,0,4.86,5.24,5.32,5.37,5.4,5.43,5.45,5.47,5.51,175.37,175.46,175.53,175.61,175.68,175.75,175.83,175.9,176.08,28.330000000000002,28,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.88,26.5,N/A,N/A -2012,7,18,9,30,101540,100390,99280,85.42,0,5.17,5.63,5.74,5.8100000000000005,5.87,5.91,5.95,5.98,6.05,178.08,178.20000000000002,178.29,178.37,178.44,178.51,178.59,178.67000000000002,178.85,28.42,28.11,27.94,27.75,27.560000000000002,27.38,27.18,27,26.63,N/A,N/A -2012,7,18,10,30,101540,100390,99280,85.48,0,4.96,5.33,5.41,5.45,5.48,5.5,5.51,5.5200000000000005,5.53,188.76,188.75,188.71,188.66,188.62,188.59,188.55,188.51,188.44,28.37,28.04,27.87,27.67,27.48,27.29,27.1,26.91,26.53,N/A,N/A -2012,7,18,11,30,101580,100440,99330,85.66,0,4.39,4.69,4.74,4.76,4.78,4.78,4.79,4.79,4.79,202.81,202.45000000000002,202.25,202.05,201.85,201.64000000000001,201.41,201.17000000000002,200.59,28.310000000000002,27.990000000000002,27.830000000000002,27.64,27.45,27.27,27.080000000000002,26.900000000000002,26.54,N/A,N/A -2012,7,18,12,30,101630,100490,99370,83.76,0,4.29,4.61,4.68,4.73,4.76,4.78,4.8,4.82,4.84,194.67000000000002,195.32,195.8,196.27,196.68,197.08,197.45000000000002,197.79,198.45000000000002,28.43,28.11,27.95,27.75,27.57,27.39,27.2,27.01,26.64,N/A,N/A -2012,7,18,13,30,101640,100490,99380,82.09,0,4.98,5.3100000000000005,5.36,5.36,5.36,5.3500000000000005,5.33,5.3100000000000005,5.2700000000000005,192.33,192.73000000000002,192.95000000000002,193.16,193.35,193.54,193.74,193.93,194.36,28.43,28.1,27.93,27.740000000000002,27.55,27.36,27.17,26.990000000000002,26.61,N/A,N/A -2012,7,18,14,30,101730,100580,99470,82.74,0,3.52,3.75,3.8000000000000003,3.8200000000000003,3.84,3.85,3.85,3.85,3.86,205.58,205.53,205.46,205.37,205.29,205.20000000000002,205.1,205.02,204.82,28.39,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A -2012,7,18,15,30,101740,100590,99480,79.52,0,3.3200000000000003,3.52,3.56,3.5700000000000003,3.59,3.59,3.6,3.6,3.6,188.69,188.84,188.95000000000002,189.05,189.12,189.19,189.26,189.31,189.43,28.53,28.2,28.03,27.830000000000002,27.64,27.45,27.25,27.07,26.69,N/A,N/A -2012,7,18,16,30,101750,100600,99490,80.42,0,3.96,4.21,4.25,4.2700000000000005,4.28,4.29,4.29,4.3,4.3,202.59,202.31,202.21,202.11,202.02,201.93,201.85,201.77,201.61,28.59,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,18,17,30,101750,100600,99490,78.36,0,4.57,4.8500000000000005,4.89,4.91,4.91,4.91,4.91,4.9,4.88,205.66,205.73000000000002,205.77,205.81,205.84,205.87,205.9,205.93,205.97,28.61,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.740000000000002,N/A,N/A -2012,7,18,18,30,101720,100570,99450,75.62,0,4.38,4.66,4.7,4.71,4.71,4.71,4.7,4.69,4.67,210.39000000000001,210.35,210.36,210.35,210.32,210.29,210.25,210.20000000000002,210.11,28.64,28.3,28.12,27.93,27.740000000000002,27.55,27.35,27.17,26.78,N/A,N/A -2012,7,18,19,30,101710,100560,99450,70.54,0,3.91,4.15,4.19,4.21,4.22,4.23,4.23,4.24,4.24,202.42000000000002,202.73000000000002,202.91,203.08,203.24,203.4,203.55,203.69,203.96,28.78,28.44,28.28,28.080000000000002,27.89,27.7,27.51,27.32,26.95,N/A,N/A -2012,7,18,20,30,101660,100520,99410,72.46000000000001,0,4.46,4.75,4.8100000000000005,4.83,4.8500000000000005,4.86,4.87,4.88,4.88,199.63,200,200.19,200.37,200.53,200.70000000000002,200.86,201.01,201.33,28.73,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,7,18,21,30,101640,100490,99380,71.83,0,4.38,4.68,4.74,4.7700000000000005,4.79,4.8,4.8100000000000005,4.82,4.83,211.02,210.95000000000002,210.98000000000002,211,211.01,211.02,211.02,211.02,211.01,28.77,28.45,28.28,28.080000000000002,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A -2012,7,18,22,30,101640,100490,99380,75.10000000000001,0,4.2700000000000005,4.59,4.64,4.68,4.7,4.71,4.72,4.73,4.75,201.69,201.83,201.91,202,202.07,202.14000000000001,202.22,202.28,202.41,28.62,28.3,28.13,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A -2012,7,18,23,30,101650,100500,99390,75.99,0,4.3,4.62,4.67,4.69,4.71,4.71,4.71,4.71,4.7,187.06,187.5,187.68,187.84,187.99,188.11,188.25,188.37,188.61,28.57,28.26,28.09,27.900000000000002,27.71,27.52,27.32,27.14,26.76,N/A,N/A -2012,7,19,0,30,101610,100470,99350,73.83,0,4.89,5.26,5.3100000000000005,5.33,5.34,5.3500000000000005,5.3500000000000005,5.3500000000000005,5.3500000000000005,179.94,179.88,179.82,179.75,179.67000000000002,179.58,179.49,179.41,179.21,28.57,28.27,28.11,27.91,27.72,27.54,27.35,27.16,26.79,N/A,N/A -2012,7,19,1,30,101630,100480,99370,78.66,0,5.2,5.58,5.66,5.69,5.72,5.73,5.73,5.74,5.73,178.03,177.94,177.97,177.99,178,178.01,178.02,178.03,178.06,28.38,28.060000000000002,27.89,27.69,27.5,27.32,27.12,26.93,26.560000000000002,N/A,N/A -2012,7,19,2,30,101650,100500,99390,80.55,0,5.17,5.5600000000000005,5.64,5.69,5.71,5.73,5.74,5.75,5.76,175.24,175.27,175.31,175.33,175.35,175.36,175.37,175.38,175.4,28.27,27.94,27.77,27.57,27.39,27.2,27,26.82,26.44,N/A,N/A -2012,7,19,3,30,101670,100520,99410,81.98,0,5.8,6.26,6.3500000000000005,6.4,6.43,6.45,6.46,6.47,6.47,178.09,178.39000000000001,178.52,178.65,178.78,178.89000000000001,179.01,179.12,179.35,28.22,27.89,27.72,27.52,27.330000000000002,27.14,26.95,26.77,26.38,N/A,N/A -2012,7,19,4,30,101660,100510,99400,83.63,0,6.13,6.62,6.71,6.76,6.8,6.82,6.83,6.84,6.8500000000000005,186.81,186.92000000000002,186.95000000000002,186.99,187.02,187.05,187.08,187.11,187.18,28.150000000000002,27.810000000000002,27.64,27.44,27.25,27.060000000000002,26.86,26.68,26.3,N/A,N/A -2012,7,19,5,30,101700,100550,99440,85.69,0,4.88,5.24,5.32,5.36,5.39,5.41,5.43,5.44,5.46,188.62,188.70000000000002,188.71,188.75,188.77,188.8,188.84,188.88,188.97,28.1,27.76,27.580000000000002,27.39,27.2,27.01,26.810000000000002,26.63,26.25,N/A,N/A -2012,7,19,6,30,101750,100610,99490,84.96000000000001,0,5.25,5.61,5.68,5.7,5.72,5.72,5.72,5.71,5.69,189.04,189.49,189.70000000000002,189.91,190.1,190.29,190.48,190.67000000000002,191.07,28.28,27.93,27.76,27.560000000000002,27.37,27.18,26.98,26.79,26.41,N/A,N/A -2012,7,19,7,30,101790,100640,99520,87.04,0,4.92,5.26,5.33,5.37,5.39,5.4,5.41,5.42,5.42,195.83,195.84,195.77,195.71,195.66,195.61,195.55,195.5,195.43,28.150000000000002,27.79,27.62,27.42,27.23,27.04,26.84,26.66,26.28,N/A,N/A -2012,7,19,8,30,101800,100650,99540,85.26,0,4.89,5.22,5.29,5.32,5.34,5.3500000000000005,5.36,5.36,5.36,207.58,207.54,207.49,207.45000000000002,207.41,207.37,207.33,207.29,207.20000000000002,28.19,27.84,27.66,27.46,27.27,27.080000000000002,26.89,26.7,26.32,N/A,N/A -2012,7,19,9,30,101820,100670,99560,84.85000000000001,0,5.0200000000000005,5.37,5.44,5.47,5.49,5.5,5.51,5.51,5.51,214.47,214.38,214.33,214.27,214.23000000000002,214.19,214.15,214.11,214.03,28.150000000000002,27.8,27.63,27.43,27.240000000000002,27.05,26.85,26.67,26.28,N/A,N/A -2012,7,19,10,30,101850,100700,99590,84.26,0,4.1,4.41,4.48,4.53,4.57,4.6000000000000005,4.62,4.65,4.69,224,224.08,224.07,224.05,224.03,224.01,223.99,223.95000000000002,223.89000000000001,28.13,27.78,27.61,27.41,27.22,27.03,26.830000000000002,26.650000000000002,26.27,N/A,N/A -2012,7,19,11,30,101900,100750,99630,82.47,0,5.47,5.8500000000000005,5.92,5.94,5.94,5.94,5.92,5.9,5.8500000000000005,224.03,224.03,223.96,223.87,223.77,223.66,223.55,223.44,223.19,28.22,27.87,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.35,N/A,N/A -2012,7,19,12,30,101910,100760,99640,80.15,0,4.32,4.65,4.73,4.7700000000000005,4.8,4.83,4.8500000000000005,4.87,4.9,231.41,231.48000000000002,231.52,231.58,231.63,231.68,231.74,231.8,231.9,28.28,27.95,27.77,27.57,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A -2012,7,19,13,30,101940,100780,99670,75.36,0,4.19,4.5,4.57,4.62,4.65,4.68,4.69,4.71,4.74,241.66,241.43,241.31,241.20000000000002,241.11,241.03,240.95000000000002,240.87,240.73000000000002,28.490000000000002,28.17,28,27.8,27.61,27.43,27.23,27.04,26.66,N/A,N/A -2012,7,19,14,30,101960,100800,99690,71.57000000000001,0,4.74,5.07,5.13,5.15,5.17,5.18,5.18,5.19,5.19,243.32,243.15,243.06,242.95000000000002,242.84,242.73000000000002,242.62,242.51,242.27,28.64,28.330000000000002,28.16,27.96,27.77,27.580000000000002,27.39,27.2,26.82,N/A,N/A -2012,7,19,15,30,101980,100830,99710,71.67,0,4,4.2700000000000005,4.32,4.3500000000000005,4.37,4.38,4.39,4.4,4.41,244.73000000000002,244.71,244.78,244.84,244.89000000000001,244.95000000000002,245,245.05,245.14000000000001,28.63,28.3,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.8,N/A,N/A -2012,7,19,16,30,101980,100830,99710,69.23,0,4.3100000000000005,4.63,4.69,4.73,4.76,4.79,4.8,4.82,4.8500000000000005,248.3,248.11,248.01000000000002,247.89000000000001,247.78,247.67000000000002,247.56,247.46,247.22,28.69,28.37,28.19,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A -2012,7,19,17,30,101990,100840,99720,72.33,0,3.89,4.13,4.17,4.19,4.2,4.21,4.21,4.21,4.21,235.46,235.36,235.33,235.3,235.28,235.26,235.25,235.24,235.23000000000002,28.6,28.26,28.09,27.900000000000002,27.71,27.51,27.32,27.14,26.75,N/A,N/A -2012,7,19,18,30,101960,100810,99700,69.65,0,3.5700000000000003,3.7600000000000002,3.8000000000000003,3.8200000000000003,3.83,3.84,3.85,3.85,3.88,218.20000000000002,218.29,218.39000000000001,218.51,218.63,218.77,218.94,219.11,219.58,28.77,28.44,28.28,28.09,27.900000000000002,27.72,27.53,27.36,26.990000000000002,N/A,N/A -2012,7,19,19,30,101920,100770,99650,68.31,0,4.37,4.67,4.73,4.7700000000000005,4.79,4.82,4.84,4.87,4.93,207.22,207.82,208.20000000000002,208.61,209.03,209.46,209.94,210.41,211.59,28.990000000000002,28.67,28.51,28.32,28.14,27.96,27.77,27.6,27.25,N/A,N/A -2012,7,19,20,30,101900,100750,99640,70.55,0,4.4,4.72,4.7700000000000005,4.8,4.83,4.84,4.86,4.88,4.92,191.72,192.41,192.87,193.33,193.79,194.27,194.83,195.39000000000001,196.86,28.96,28.64,28.48,28.28,28.1,27.92,27.73,27.55,27.2,N/A,N/A -2012,7,19,21,30,101850,100700,99590,73.92,0,5.18,5.53,5.58,5.58,5.57,5.55,5.53,5.5,5.42,200.42000000000002,200.39000000000001,200.26,200.09,199.91,199.71,199.47,199.22,198.64000000000001,28.810000000000002,28.490000000000002,28.32,28.12,27.93,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,7,19,22,30,101810,100670,99550,72.85000000000001,0,4.65,5,5.0600000000000005,5.09,5.11,5.12,5.13,5.13,5.14,201.37,201.48000000000002,201.58,201.68,201.79,201.9,202.02,202.15,202.48000000000002,28.89,28.580000000000002,28.42,28.23,28.05,27.86,27.68,27.5,27.14,N/A,N/A -2012,7,19,23,30,101790,100640,99530,74.44,0,5.49,5.92,5.99,6.0200000000000005,6.04,6.04,6.03,6.03,6,201.78,201.9,201.95000000000002,201.98000000000002,202.02,202.04,202.07,202.09,202.14000000000001,28.810000000000002,28.51,28.34,28.150000000000002,27.97,27.78,27.59,27.400000000000002,27.03,N/A,N/A -2012,7,20,0,30,101750,100600,99490,75.76,0,5.82,6.3100000000000005,6.390000000000001,6.43,6.46,6.48,6.49,6.49,6.49,201.54,201.76,201.84,201.92000000000002,202,202.08,202.18,202.28,202.53,28.740000000000002,28.43,28.26,28.07,27.88,27.7,27.51,27.330000000000002,26.96,N/A,N/A -2012,7,20,1,30,101720,100570,99460,77.41,0,5.87,6.34,6.43,6.47,6.5,6.51,6.5200000000000005,6.53,6.54,201.89000000000001,202,202.13,202.29,202.45000000000002,202.6,202.79,202.97,203.42000000000002,28.6,28.28,28.11,27.92,27.740000000000002,27.55,27.36,27.18,26.810000000000002,N/A,N/A -2012,7,20,2,30,101750,100600,99490,80.57000000000001,0,6.45,6.98,7.08,7.13,7.15,7.17,7.17,7.18,7.17,199.53,199.74,199.84,199.95000000000002,200.04,200.13,200.24,200.34,200.57,28.490000000000002,28.16,28,27.8,27.61,27.42,27.23,27.05,26.67,N/A,N/A -2012,7,20,3,30,101760,100610,99500,82.13,0,6.55,7.07,7.18,7.23,7.26,7.28,7.29,7.29,7.28,203.98000000000002,204.13,204.20000000000002,204.29,204.37,204.46,204.57,204.67000000000002,204.91,28.48,28.150000000000002,27.97,27.78,27.59,27.400000000000002,27.21,27.03,26.66,N/A,N/A -2012,7,20,4,30,101760,100610,99500,84.42,0,6.69,7.25,7.37,7.43,7.47,7.5,7.5200000000000005,7.53,7.54,204.48000000000002,204.65,204.75,204.86,204.96,205.06,205.16,205.27,205.52,28.400000000000002,28.060000000000002,27.89,27.69,27.51,27.32,27.13,26.94,26.57,N/A,N/A -2012,7,20,5,30,101770,100620,99500,85.77,0,6.5600000000000005,7.140000000000001,7.26,7.32,7.36,7.390000000000001,7.4,7.41,7.41,209.23000000000002,209.46,209.51,209.55,209.59,209.62,209.65,209.68,209.73000000000002,28.35,28,27.830000000000002,27.63,27.44,27.25,27.05,26.87,26.490000000000002,N/A,N/A -2012,7,20,6,30,101800,100650,99540,85.98,0,6.86,7.38,7.49,7.54,7.5600000000000005,7.57,7.57,7.57,7.55,221.94,221.98000000000002,221.96,221.95000000000002,221.94,221.93,221.91,221.9,221.86,28.37,28.01,27.830000000000002,27.63,27.44,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A -2012,7,20,7,30,101790,100640,99530,85.41,0,8.1,8.84,8.99,9.06,9.11,9.13,9.13,9.13,9.1,225.1,225.19,225.23000000000002,225.24,225.25,225.25,225.24,225.23000000000002,225.18,28.43,28.07,27.89,27.69,27.5,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,20,8,30,101810,100660,99550,82.81,0,6.9,7.51,7.68,7.79,7.87,7.930000000000001,7.99,8.040000000000001,8.14,237.81,237.71,237.63,237.56,237.52,237.47,237.43,237.39000000000001,237.32,28.51,28.17,27.990000000000002,27.79,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,7,20,9,30,101820,100680,99560,80.46000000000001,0,7.61,8.27,8.42,8.49,8.540000000000001,8.56,8.58,8.59,8.59,231.82,231.98000000000002,232.13,232.27,232.4,232.51,232.62,232.72,232.92000000000002,28.580000000000002,28.240000000000002,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A -2012,7,20,10,30,101810,100660,99550,64.82000000000001,0,7.8,8.52,8.67,8.75,8.8,8.82,8.84,8.85,8.85,238.47,238.41,238.33,238.24,238.15,238.06,237.98000000000002,237.89000000000001,237.73000000000002,29.26,28.98,28.82,28.63,28.44,28.26,28.060000000000002,27.88,27.5,N/A,N/A -2012,7,20,11,30,101810,100660,99550,66.38,0,7.23,7.97,8.14,8.24,8.32,8.38,8.42,8.46,8.53,249.22,249.18,249.18,249.18,249.18,249.18,249.18,249.19,249.19,29.150000000000002,28.85,28.68,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A -2012,7,20,12,30,101860,100710,99600,66.04,0,7.3,7.98,8.13,8.21,8.26,8.290000000000001,8.31,8.32,8.32,253.4,253.70000000000002,253.81,253.92000000000002,254.03,254.13,254.23000000000002,254.33,254.53,29.14,28.85,28.69,28.490000000000002,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A -2012,7,20,13,30,101870,100710,99600,67.21000000000001,0,6.8,7.32,7.42,7.46,7.48,7.49,7.49,7.48,7.47,265.12,264.58,264.14,263.67,263.23,262.81,262.36,261.92,261.02,28.8,28.490000000000002,28.330000000000002,28.14,27.95,27.77,27.580000000000002,27.400000000000002,27.03,N/A,N/A -2012,7,20,14,30,101900,100750,99640,64.98,0,6.23,6.73,6.8100000000000005,6.84,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.83,6.8,271.3,270.95,270.73,270.51,270.29,270.09000000000003,269.88,269.67,269.22,28.82,28.5,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.38,27,N/A,N/A -2012,7,20,15,30,101900,100750,99630,62.93,0,6.46,6.92,7.01,7.04,7.07,7.08,7.09,7.1000000000000005,7.13,270.63,270.09000000000003,269.7,269.25,268.82,268.38,267.92,267.48,266.55,28.77,28.48,28.32,28.13,27.96,27.78,27.6,27.43,27.080000000000002,N/A,N/A -2012,7,20,16,30,101870,100720,99600,61.27,0,5.38,5.82,5.91,5.96,6,6.03,6.05,6.08,6.12,264.1,264.47,264.71,264.93,265.15,265.36,265.58,265.78000000000003,266.25,29.01,28.71,28.55,28.36,28.18,27.990000000000002,27.8,27.63,27.26,N/A,N/A -2012,7,20,17,30,101860,100710,99590,61.410000000000004,0,5.26,5.64,5.7,5.72,5.73,5.73,5.73,5.73,5.72,234.58,235.1,235.46,235.85,236.24,236.64000000000001,237.12,237.6,238.83,29.21,28.91,28.75,28.55,28.37,28.19,28.01,27.830000000000002,27.47,N/A,N/A -2012,7,20,18,30,101810,100660,99550,62.550000000000004,0,5.38,5.75,5.79,5.79,5.78,5.76,5.73,5.69,5.61,217.32,217.82,218.16,218.54,218.95000000000002,219.39000000000001,219.96,220.56,222.51,29.29,28.990000000000002,28.830000000000002,28.64,28.46,28.29,28.1,27.93,27.61,N/A,N/A -2012,7,20,19,30,101780,100640,99520,63.43,0,4.8500000000000005,5.21,5.26,5.2700000000000005,5.2700000000000005,5.26,5.25,5.23,5.18,214.14000000000001,214.47,214.70000000000002,214.93,215.18,215.43,215.72,216.01,216.79,29.400000000000002,29.1,28.94,28.75,28.560000000000002,28.38,28.19,28.01,27.650000000000002,N/A,N/A -2012,7,20,20,30,101730,100580,99470,65.8,0,5.87,6.32,6.38,6.390000000000001,6.390000000000001,6.37,6.3500000000000005,6.32,6.24,211.06,211.16,211.28,211.4,211.51,211.63,211.75,211.88,212.21,29.310000000000002,29.01,28.85,28.66,28.48,28.29,28.1,27.92,27.560000000000002,N/A,N/A -2012,7,20,21,30,101710,100560,99450,67.55,0,5.96,6.45,6.53,6.5600000000000005,6.58,6.58,6.57,6.5600000000000005,6.5200000000000005,206,206.16,206.31,206.45000000000002,206.58,206.71,206.85,206.99,207.33,29.29,28.990000000000002,28.830000000000002,28.64,28.46,28.28,28.09,27.91,27.55,N/A,N/A -2012,7,20,22,30,101650,100510,99400,71.64,0,6.73,7.29,7.390000000000001,7.43,7.45,7.45,7.43,7.42,7.37,208.49,208.6,208.71,208.82,208.93,209.04,209.17000000000002,209.3,209.61,29.080000000000002,28.78,28.62,28.43,28.240000000000002,28.060000000000002,27.88,27.7,27.34,N/A,N/A -2012,7,20,23,30,101630,100490,99380,73.33,0,6.99,7.57,7.68,7.72,7.74,7.74,7.73,7.72,7.68,209.24,209.4,209.48000000000002,209.57,209.65,209.74,209.83,209.92000000000002,210.13,29.02,28.72,28.55,28.36,28.18,27.990000000000002,27.8,27.62,27.26,N/A,N/A -2012,7,21,0,30,101590,100440,99330,75.85000000000001,0,7.390000000000001,8.03,8.15,8.2,8.23,8.25,8.25,8.25,8.24,210.76,210.94,211.05,211.16,211.28,211.41,211.55,211.70000000000002,212.07,28.93,28.62,28.45,28.26,28.080000000000002,27.89,27.71,27.53,27.17,N/A,N/A -2012,7,21,1,30,101550,100410,99300,77.84,0,7.41,8.06,8.19,8.24,8.27,8.28,8.28,8.27,8.24,214.14000000000001,214.3,214.41,214.52,214.62,214.72,214.83,214.93,215.18,28.900000000000002,28.57,28.41,28.21,28.03,27.84,27.66,27.48,27.11,N/A,N/A -2012,7,21,2,30,101560,100410,99300,81.21000000000001,0,7.61,8.28,8.4,8.46,8.49,8.5,8.5,8.5,8.47,215.03,215.20000000000002,215.28,215.36,215.44,215.51,215.6,215.68,215.88,28.75,28.41,28.240000000000002,28.05,27.86,27.68,27.490000000000002,27.3,26.94,N/A,N/A -2012,7,21,3,30,101550,100410,99300,81.68,0,7.83,8.52,8.65,8.72,8.75,8.77,8.78,8.790000000000001,8.790000000000001,223.39000000000001,223.55,223.63,223.73000000000002,223.84,223.96,224.09,224.22,224.57,28.77,28.43,28.27,28.07,27.89,27.71,27.52,27.34,26.98,N/A,N/A -2012,7,21,4,30,101550,100410,99300,83.26,0,7.54,8.2,8.33,8.4,8.43,8.45,8.45,8.45,8.44,230.16,230.29,230.36,230.46,230.54,230.64000000000001,230.75,230.86,231.13,28.73,28.39,28.22,28.02,27.84,27.650000000000002,27.46,27.28,26.91,N/A,N/A -2012,7,21,5,30,101550,100400,99290,85.23,0,7.78,8.47,8.61,8.68,8.72,8.74,8.75,8.74,8.72,229.59,229.73000000000002,229.8,229.86,229.92000000000002,229.97,230.03,230.09,230.22,28.63,28.28,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.78,N/A,N/A -2012,7,21,6,30,101550,100400,99300,84.85000000000001,0,7.79,8.46,8.61,8.67,8.72,8.74,8.75,8.76,8.75,236.05,236.11,236.15,236.19,236.23000000000002,236.28,236.33,236.38,236.5,28.67,28.310000000000002,28.14,27.94,27.75,27.57,27.37,27.19,26.82,N/A,N/A -2012,7,21,7,30,101590,100440,99330,85.95,0,7.76,8.43,8.57,8.63,8.67,8.69,8.700000000000001,8.700000000000001,8.69,231.93,232.12,232.20000000000002,232.28,232.35,232.42000000000002,232.49,232.56,232.71,28.63,28.27,28.09,27.89,27.7,27.52,27.32,27.14,26.77,N/A,N/A -2012,7,21,8,30,101570,100420,99310,87.46000000000001,0,7.87,8.56,8.71,8.78,8.82,8.84,8.85,8.85,8.84,240.56,240.62,240.67000000000002,240.72,240.76,240.81,240.87,240.92000000000002,241.03,28.53,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A -2012,7,21,9,30,101570,100430,99320,88.03,0,7.97,8.69,8.85,8.93,8.98,9.01,9.02,9.02,9.01,243.58,243.65,243.66,243.69,243.71,243.74,243.78,243.81,243.9,28.5,28.13,27.95,27.75,27.55,27.36,27.17,26.98,26.6,N/A,N/A -2012,7,21,10,30,101610,100470,99360,86.18,0,7.99,8.73,8.88,8.950000000000001,8.99,9.01,9,8.99,8.93,249.97,249.94,249.98000000000002,250.04,250.11,250.18,250.27,250.35,250.56,28.650000000000002,28.29,28.11,27.91,27.72,27.52,27.32,27.14,26.75,N/A,N/A -2012,7,21,11,30,101600,100460,99350,82.34,0,7.96,8.51,8.620000000000001,8.65,8.66,8.66,8.66,8.65,8.61,252.74,253.11,253.31,253.51000000000002,253.69,253.87,254.04,254.21,254.54,28.63,28.27,28.1,27.91,27.72,27.54,27.35,27.17,26.810000000000002,N/A,N/A -2012,7,21,12,30,101640,100490,99380,84.32000000000001,0,7.5200000000000005,8.14,8.27,8.33,8.36,8.38,8.38,8.38,8.370000000000001,267.01,266.78000000000003,266.59000000000003,266.37,266.17,265.97,265.76,265.56,265.14,28.38,28,27.82,27.62,27.43,27.23,27.04,26.85,26.47,N/A,N/A -2012,7,21,13,30,101640,100500,99380,81.65,0,7.25,7.88,8.01,8.09,8.14,8.17,8.19,8.2,8.22,267.33,267.17,267.07,266.96,266.86,266.76,266.66,266.56,266.36,28.29,27.91,27.73,27.53,27.34,27.150000000000002,26.96,26.77,26.39,N/A,N/A -2012,7,21,14,30,101660,100510,99390,83.11,0,7.54,8.14,8.26,8.32,8.35,8.370000000000001,8.38,8.39,8.39,271.46,271.11,271,270.88,270.77,270.66,270.55,270.44,270.2,27.98,27.580000000000002,27.400000000000002,27.2,27,26.810000000000002,26.62,26.43,26.060000000000002,N/A,N/A -2012,7,21,15,30,101650,100500,99390,77.33,0,6.19,6.63,6.71,6.74,6.76,6.76,6.76,6.75,6.74,262.58,263.08,263.42,263.73,264.02,264.29,264.58,264.85,265.45,28.34,27.98,27.8,27.61,27.42,27.23,27.04,26.86,26.490000000000002,N/A,N/A -2012,7,21,16,30,101650,100510,99400,71.87,0,4.92,5.28,5.36,5.41,5.44,5.47,5.49,5.51,5.55,255.6,256.28000000000003,256.73,257.19,257.62,258.05,258.51,258.96,260.04,28.93,28.61,28.44,28.25,28.07,27.88,27.69,27.52,27.150000000000002,N/A,N/A -2012,7,21,17,30,101610,100470,99360,68.63,0,4.11,4.36,4.39,4.4,4.4,4.4,4.39,4.39,4.38,243.68,244.86,245.58,246.34,247.1,247.86,248.74,249.61,251.81,29.29,28.98,28.82,28.63,28.45,28.27,28.080000000000002,27.91,27.560000000000002,N/A,N/A -2012,7,21,18,30,101610,100470,99360,68.62,0,3.8000000000000003,3.99,3.99,3.97,3.94,3.91,3.86,3.8200000000000003,3.73,215.79,216.73000000000002,217.32,217.96,218.6,219.29,220.1,220.91,223.06,29.5,29.19,29.03,28.84,28.66,28.48,28.29,28.12,27.77,N/A,N/A -2012,7,21,19,30,101610,100470,99360,71.45,0,3.83,4.03,4.05,4.05,4.04,4.0200000000000005,4,3.98,3.92,209.74,210.06,210.31,210.55,210.78,211,211.24,211.47,211.99,29.37,29.04,28.87,28.67,28.490000000000002,28.3,28.11,27.93,27.560000000000002,N/A,N/A -2012,7,21,20,30,101560,100420,99310,74.88,0,4.48,4.73,4.75,4.75,4.74,4.72,4.69,4.66,4.58,205.85,205.96,205.99,206.02,206.04,206.07,206.09,206.12,206.19,29.23,28.89,28.72,28.52,28.34,28.150000000000002,27.96,27.78,27.42,N/A,N/A -2012,7,21,21,30,101520,100370,99270,74.47,0,4.07,4.28,4.29,4.28,4.26,4.24,4.21,4.17,4.09,196.57,196.8,196.88,196.97,197.07,197.16,197.27,197.38,197.63,29.22,28.89,28.72,28.53,28.35,28.16,27.98,27.8,27.45,N/A,N/A -2012,7,21,22,30,101490,100350,99240,76.45,0,5.2700000000000005,5.63,5.68,5.69,5.68,5.67,5.65,5.63,5.58,186.59,186.58,186.6,186.61,186.61,186.61,186.6,186.59,186.53,29.150000000000002,28.830000000000002,28.66,28.47,28.29,28.1,27.91,27.73,27.37,N/A,N/A -2012,7,21,23,30,101450,100300,99200,75.73,0,7.04,7.640000000000001,7.75,7.8,7.82,7.83,7.83,7.83,7.8100000000000005,179.42000000000002,179.62,179.71,179.81,179.9,179.99,180.09,180.18,180.37,29.16,28.85,28.68,28.490000000000002,28.3,28.11,27.92,27.740000000000002,27.36,N/A,N/A -2012,7,22,0,30,101430,100290,99180,74.38,0,7.32,7.94,8.05,8.1,8.120000000000001,8.13,8.13,8.13,8.1,182.42000000000002,182.59,182.66,182.72,182.79,182.85,182.92000000000002,182.98,183.13,29.150000000000002,28.84,28.67,28.47,28.29,28.1,27.900000000000002,27.72,27.34,N/A,N/A -2012,7,22,1,30,101390,100250,99140,86.87,0,7.66,8.26,8.370000000000001,8.4,8.41,8.41,8.39,8.370000000000001,8.31,185.09,185.52,185.8,186.09,186.38,186.69,187.04,187.39000000000001,188.21,28.29,27.91,27.73,27.54,27.35,27.17,26.98,26.8,26.44,N/A,N/A -2012,7,22,2,30,101430,100280,99170,87.52,0,7.21,7.7700000000000005,7.890000000000001,7.930000000000001,7.96,7.97,7.97,7.97,7.94,188.69,188.95000000000002,189.09,189.22,189.33,189.42000000000002,189.53,189.62,189.84,28.21,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.32,N/A,N/A -2012,7,22,3,30,101430,100290,99180,86.08,0,6.890000000000001,7.41,7.51,7.55,7.57,7.57,7.57,7.5600000000000005,7.5200000000000005,198.89000000000001,198.92000000000002,198.94,198.96,198.98000000000002,199,199.03,199.06,199.13,28.35,27.98,27.8,27.6,27.41,27.22,27.03,26.85,26.47,N/A,N/A -2012,7,22,4,30,101420,100280,99170,85.4,0,6.2700000000000005,6.73,6.8100000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,197.81,197.94,198.03,198.14000000000001,198.24,198.34,198.45000000000002,198.55,198.79,28.34,27.98,27.8,27.6,27.41,27.23,27.03,26.85,26.48,N/A,N/A -2012,7,22,5,30,101420,100270,99170,83.53,0,6.32,6.7700000000000005,6.8500000000000005,6.87,6.88,6.88,6.88,6.86,6.82,193.54,193.63,193.66,193.70000000000002,193.73000000000002,193.76,193.78,193.81,193.87,28.34,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.830000000000002,26.45,N/A,N/A -2012,7,22,6,30,101440,100300,99190,80.58,0,6.61,7.1000000000000005,7.21,7.25,7.2700000000000005,7.28,7.29,7.28,7.2700000000000005,190.72,190.67000000000002,190.6,190.54,190.48,190.43,190.38,190.34,190.27,28.39,28.03,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.5,N/A,N/A -2012,7,22,7,30,101460,100310,99210,78.86,0,5.87,6.3100000000000005,6.390000000000001,6.42,6.44,6.45,6.45,6.45,6.44,187.73,187.84,187.94,188.03,188.11,188.20000000000002,188.28,188.37,188.56,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,22,8,30,101500,100350,99240,80.79,0,6.38,6.88,6.98,7.03,7.0600000000000005,7.07,7.08,7.08,7.07,192.38,192.55,192.56,192.56,192.57,192.57,192.58,192.59,192.63,28.47,28.11,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.59,N/A,N/A -2012,7,22,9,30,101520,100380,99270,84.94,0,5.68,6.1000000000000005,6.19,6.23,6.2700000000000005,6.28,6.3,6.3100000000000005,6.3100000000000005,197.39000000000001,197.46,197.48000000000002,197.51,197.54,197.57,197.61,197.64000000000001,197.74,28.32,27.96,27.78,27.580000000000002,27.39,27.2,27,26.82,26.44,N/A,N/A -2012,7,22,10,30,101570,100430,99320,82.95,0,4.7700000000000005,5.11,5.19,5.22,5.25,5.26,5.2700000000000005,5.28,5.28,197.97,198.66,198.82,198.94,199.01,199.07,199.11,199.14000000000001,199.18,28.62,28.28,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.77,N/A,N/A -2012,7,22,11,30,101600,100460,99350,81.47,0,4.83,5.1000000000000005,5.15,5.16,5.16,5.15,5.13,5.12,5.07,201.07,200.78,200.52,200.27,200.05,199.83,199.61,199.41,199,28.44,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.97,26.59,N/A,N/A -2012,7,22,12,30,101630,100480,99370,80.99,0,4.97,5.28,5.33,5.34,5.34,5.34,5.33,5.32,5.29,215.5,215.5,215.48000000000002,215.45000000000002,215.42000000000002,215.39000000000001,215.37,215.33,215.27,28.42,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A -2012,7,22,13,30,101640,100490,99380,81.10000000000001,0,2.84,3.02,3.0500000000000003,3.08,3.11,3.13,3.14,3.16,3.19,221.03,220.95000000000002,220.85,220.76,220.68,220.62,220.55,220.5,220.38,28.39,28.05,27.88,27.68,27.490000000000002,27.3,27.11,26.92,26.54,N/A,N/A -2012,7,22,14,30,101680,100530,99420,82.86,0,1.36,1.41,1.42,1.42,1.43,1.43,1.43,1.43,1.43,245.07,244.48000000000002,244.07,243.67000000000002,243.28,242.89000000000001,242.48000000000002,242.08,241.25,28.36,28.02,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A -2012,7,22,15,30,101710,100570,99460,82.07000000000001,0,0.35000000000000003,0.39,0.41000000000000003,0.42,0.44,0.45,0.47000000000000003,0.49,0.52,236.58,234.55,233.38,232.37,231.46,230.58,229.82,229.13,227.8,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.01,26.63,N/A,N/A -2012,7,22,16,30,101720,100580,99470,82.01,0,0.81,0.85,0.86,0.87,0.88,0.89,0.9,0.91,0.93,161.47,163.68,164.82,165.99,167.05,168.05,169.12,170.15,172.27,28.61,28.26,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,22,17,30,101720,100570,99460,83.10000000000001,0,2.31,2.44,2.47,2.49,2.5100000000000002,2.52,2.5300000000000002,2.5500000000000003,2.57,117.72,118.79,119.36,119.91,120.42,120.92,121.42,121.9,122.89,28.75,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,7,22,18,30,101720,100570,99460,81.85000000000001,0,5.46,5.8,5.8500000000000005,5.87,5.87,5.87,5.86,5.86,5.83,118.63,118.75,118.96000000000001,119.17,119.34,119.51,119.67,119.81,120.11,28.95,28.580000000000002,28.400000000000002,28.19,28,27.810000000000002,27.61,27.42,27.04,N/A,N/A -2012,7,22,19,30,101740,100580,99470,87.74,0,7.7700000000000005,8.290000000000001,8.39,8.41,8.42,8.41,8.4,8.39,8.33,154.26,155.4,155.93,156.46,156.95000000000002,157.42000000000002,157.89000000000001,158.34,159.43,27.63,27.22,27.04,26.85,26.67,26.5,26.32,26.150000000000002,25.830000000000002,N/A,N/A -2012,7,22,20,30,101700,100540,99430,80.87,0,7.0200000000000005,7.44,7.47,7.44,7.4,7.33,7.25,7.17,6.94,158.26,158.55,158.73,158.94,159.17000000000002,159.42000000000002,159.75,160.09,160.89000000000001,27.57,27.16,26.98,26.78,26.59,26.41,26.22,26.04,25.67,N/A,N/A -2012,7,22,21,30,101720,100570,99450,80.64,0,8.44,9.08,9.17,9.200000000000001,9.19,9.16,9.120000000000001,9.08,8.950000000000001,183.36,183.53,183.46,183.37,183.27,183.19,183.09,182.99,182.75,27.52,27.1,26.92,26.71,26.52,26.330000000000002,26.14,25.96,25.59,N/A,N/A -2012,7,22,22,30,101720,100570,99450,82.43,0,9.82,10.57,10.700000000000001,10.72,10.72,10.68,10.63,10.58,10.44,194.39000000000001,194.17000000000002,193.9,193.61,193.32,193.03,192.71,192.4,191.72,27.29,26.84,26.64,26.44,26.240000000000002,26.05,25.86,25.68,25.310000000000002,N/A,N/A -2012,7,22,23,30,101720,100570,99450,86.69,0,9.14,9.870000000000001,10.02,10.08,10.11,10.13,10.120000000000001,10.11,10.06,181.34,181.38,181.4,181.42000000000002,181.44,181.46,181.48,181.49,181.53,27.16,26.71,26.52,26.310000000000002,26.11,25.92,25.72,25.54,25.16,N/A,N/A -2012,7,23,0,30,101700,100550,99430,83.96000000000001,0,7.23,7.73,7.82,7.8500000000000005,7.86,7.86,7.8500000000000005,7.84,7.8,187.12,186.95000000000002,186.83,186.71,186.59,186.45000000000002,186.31,186.17000000000002,185.83,26.92,26.48,26.29,26.09,25.89,25.7,25.51,25.32,24.94,N/A,N/A -2012,7,23,1,30,101660,100510,99390,80.81,0,5.44,5.78,5.84,5.86,5.87,5.88,5.89,5.89,5.91,175.39000000000001,175.22,175.09,174.95000000000002,174.8,174.65,174.46,174.26,173.69,27.22,26.810000000000002,26.63,26.43,26.240000000000002,26.060000000000002,25.87,25.69,25.330000000000002,N/A,N/A -2012,7,23,2,30,101730,100570,99460,78.97,0,5.37,5.73,5.8,5.83,5.8500000000000005,5.86,5.87,5.87,5.88,156.15,156.09,156.17000000000002,156.22,156.26,156.29,156.3,156.3,156.28,27.63,27.25,27.07,26.87,26.68,26.490000000000002,26.3,26.12,25.740000000000002,N/A,N/A -2012,7,23,3,30,101710,100560,99440,79.19,0,6,6.45,6.55,6.6000000000000005,6.63,6.66,6.68,6.7,6.72,158.27,158.12,158.08,158.02,157.97,157.91,157.84,157.78,157.64000000000001,27.97,27.59,27.41,27.21,27.02,26.830000000000002,26.63,26.45,26.07,N/A,N/A -2012,7,23,4,30,101720,100570,99450,82.21000000000001,0,7.24,7.83,7.95,8.02,8.06,8.08,8.09,8.1,8.1,160.37,160.32,160.32,160.32,160.32,160.32,160.32,160.32,160.32,28.07,27.69,27.5,27.3,27.11,26.92,26.72,26.54,26.16,N/A,N/A -2012,7,23,5,30,101710,100560,99450,80.09,0,7,7.53,7.640000000000001,7.7,7.72,7.74,7.75,7.75,7.73,159.27,159.29,159.32,159.37,159.41,159.45000000000002,159.49,159.54,159.63,28.12,27.75,27.57,27.37,27.18,26.990000000000002,26.79,26.6,26.23,N/A,N/A -2012,7,23,6,30,101750,100600,99480,79.39,0,6.5200000000000005,7.03,7.15,7.21,7.25,7.2700000000000005,7.29,7.3,7.32,163.86,163.98,164.01,164.04,164.07,164.1,164.12,164.14000000000001,164.17000000000002,28.18,27.810000000000002,27.63,27.43,27.240000000000002,27.04,26.85,26.66,26.28,N/A,N/A -2012,7,23,7,30,101780,100630,99510,77.47,0,5.32,5.7,5.78,5.82,5.8500000000000005,5.87,5.88,5.89,5.9,167.13,167.09,167.08,167.08,167.08,167.09,167.09,167.1,167.11,28.28,27.92,27.740000000000002,27.54,27.35,27.16,26.96,26.78,26.39,N/A,N/A -2012,7,23,8,30,101780,100630,99520,79.42,0,4.97,5.3100000000000005,5.39,5.42,5.45,5.46,5.47,5.48,5.48,177.02,176.94,176.92000000000002,176.88,176.85,176.82,176.79,176.75,176.67000000000002,28.19,27.830000000000002,27.650000000000002,27.45,27.25,27.060000000000002,26.86,26.68,26.29,N/A,N/A -2012,7,23,9,30,101810,100660,99540,78.27,0,5.36,5.7,5.75,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,5.75,5.72,171.36,171.59,171.70000000000002,171.81,171.92000000000002,172.02,172.13,172.23,172.45000000000002,28.2,27.84,27.66,27.46,27.27,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,7,23,10,30,101820,100670,99550,77.23,0,4.4,4.69,4.75,4.7700000000000005,4.79,4.79,4.79,4.79,4.78,190.17000000000002,189.99,189.87,189.76,189.65,189.55,189.44,189.35,189.15,28.36,28.01,27.830000000000002,27.63,27.44,27.25,27.05,26.86,26.48,N/A,N/A -2012,7,23,11,30,101850,100700,99590,75.10000000000001,0,4.69,5.03,5.1000000000000005,5.14,5.17,5.19,5.21,5.23,5.25,189.59,189.43,189.42000000000002,189.42000000000002,189.42000000000002,189.42000000000002,189.42000000000002,189.43,189.44,28.41,28.07,27.900000000000002,27.69,27.5,27.32,27.12,26.93,26.55,N/A,N/A -2012,7,23,12,30,101860,100710,99600,75.31,0,3.7600000000000002,3.96,3.99,3.99,3.99,3.99,3.98,3.97,3.94,183.66,183.76,183.77,183.8,183.82,183.84,183.87,183.91,184,28.37,28.02,27.85,27.650000000000002,27.46,27.27,27.07,26.89,26.5,N/A,N/A -2012,7,23,13,30,101890,100740,99630,75.16,0,2.99,3.15,3.17,3.19,3.19,3.2,3.2,3.2,3.2,183.05,183.18,183.23,183.26,183.28,183.3,183.3,183.31,183.3,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.11,26.92,26.54,N/A,N/A -2012,7,23,14,30,101910,100760,99650,76.18,0,2.31,2.41,2.42,2.42,2.42,2.42,2.42,2.41,2.4,190.99,190.79,190.76,190.70000000000002,190.62,190.55,190.45000000000002,190.35,190.12,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A -2012,7,23,15,30,101950,100800,99690,77.05,0,1.74,1.85,1.8900000000000001,1.92,1.94,1.96,1.99,2.0100000000000002,2.04,174.33,174.16,174.03,173.92000000000002,173.84,173.78,173.73,173.69,173.61,28.45,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,7,23,16,30,101910,100750,99640,79.8,0,3.47,3.54,3.5,3.46,3.42,3.37,3.3200000000000003,3.27,3.18,153.4,154.55,155.3,156.04,156.75,157.39000000000001,158.07,158.67000000000002,159.95000000000002,28.26,27.900000000000002,27.72,27.53,27.34,27.16,26.96,26.78,26.41,N/A,N/A -2012,7,23,17,30,101960,100800,99690,85.31,0,3.0500000000000003,2.54,2.13,1.6400000000000001,1.25,0.93,0.85,0.8300000000000001,1.33,17.22,20.55,24.47,30.5,43.300000000000004,57.26,82.82000000000001,110.33,142.54,27.3,26.990000000000002,26.87,26.75,26.62,26.490000000000002,26.37,26.25,26.05,N/A,N/A -2012,7,23,18,30,101910,100750,99640,82.64,0,2.19,2.42,2.5100000000000002,2.59,2.66,2.71,2.7600000000000002,2.8000000000000003,2.88,123.62,128.27,130.44,132.32,133.85,135.17000000000002,136.3,137.28,139.09,27.95,27.580000000000002,27.41,27.21,27.03,26.84,26.650000000000002,26.47,26.1,N/A,N/A -2012,7,23,19,30,101930,100780,99670,74.19,0,3.7,3.89,3.92,3.94,3.95,3.95,3.95,3.95,3.94,155.73,155.52,155.4,155.28,155.16,155.05,154.94,154.84,154.63,28.73,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.85,N/A,N/A -2012,7,23,20,30,101910,100760,99650,74.03,0,3.45,3.67,3.72,3.74,3.77,3.7800000000000002,3.79,3.8000000000000003,3.81,134.71,134.81,134.94,135.04,135.12,135.2,135.26,135.32,135.4,28.900000000000002,28.54,28.37,28.16,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A -2012,7,23,21,30,101890,100740,99630,71.73,0,4.19,4.45,4.49,4.5,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.5200000000000005,143.07,142.93,142.85,142.75,142.66,142.57,142.47,142.38,142.19,28.94,28.6,28.42,28.22,28.03,27.84,27.650000000000002,27.46,27.07,N/A,N/A -2012,7,23,22,30,101890,100740,99620,78.01,0,3.35,3.56,3.61,3.64,3.66,3.67,3.69,3.7,3.71,146.23,146.19,146.29,146.38,146.47,146.56,146.65,146.74,146.92000000000002,28.66,28.32,28.150000000000002,27.94,27.75,27.560000000000002,27.37,27.18,26.8,N/A,N/A -2012,7,23,23,30,101870,100720,99610,79.63,0,3.64,3.88,3.93,3.97,3.99,4.0200000000000005,4.03,4.05,4.09,145.9,145.78,145.78,145.78,145.78,145.77,145.75,145.74,145.71,28.61,28.27,28.1,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.76,N/A,N/A -2012,7,24,0,30,101830,100680,99560,79.92,0,3.91,4.17,4.23,4.2700000000000005,4.3,4.33,4.3500000000000005,4.38,4.42,133.99,134.26,134.5,134.7,134.86,135.02,135.15,135.27,135.48,28.66,28.32,28.150000000000002,27.96,27.76,27.57,27.38,27.2,26.810000000000002,N/A,N/A -2012,7,24,1,30,101810,100660,99550,78.05,0,4.09,4.36,4.43,4.47,4.5,4.5200000000000005,4.54,4.5600000000000005,4.59,137.01,137.55,137.72,137.82,137.86,137.87,137.85,137.82,137.68,28.87,28.55,28.39,28.19,28.01,27.830000000000002,27.63,27.45,27.080000000000002,N/A,N/A -2012,7,24,2,30,101800,100650,99540,78.53,0,5.12,5.49,5.57,5.62,5.65,5.67,5.69,5.71,5.73,141.82,141.67000000000002,141.67000000000002,141.69,141.72,141.76,141.81,141.87,141.99,28.71,28.38,28.21,28.02,27.830000000000002,27.64,27.45,27.27,26.89,N/A,N/A -2012,7,24,3,30,101810,100670,99560,79.01,0,5.86,6.33,6.42,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,161.81,161.51,161.32,161.14000000000001,160.97,160.8,160.64000000000001,160.48,160.17000000000002,28.740000000000002,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,7,24,4,30,101810,100660,99550,79.54,0,5.51,5.9,5.96,5.99,6.01,6.0200000000000005,6.0200000000000005,6.01,6,148.43,148.68,148.78,148.88,148.97,149.07,149.16,149.25,149.44,28.5,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,24,5,30,101800,100650,99540,79.07000000000001,0,5.63,6.04,6.11,6.15,6.17,6.18,6.18,6.18,6.18,152.68,152.59,152.63,152.67000000000002,152.70000000000002,152.74,152.77,152.8,152.87,28.330000000000002,27.97,27.8,27.6,27.41,27.21,27.02,26.830000000000002,26.45,N/A,N/A -2012,7,24,6,30,101830,100680,99570,72.74,0,5.33,5.73,5.8,5.83,5.84,5.8500000000000005,5.84,5.84,5.8100000000000005,146.95000000000002,147.11,147.18,147.25,147.3,147.35,147.4,147.45000000000002,147.55,28.54,28.2,28.03,27.84,27.650000000000002,27.46,27.26,27.07,26.69,N/A,N/A -2012,7,24,7,30,101840,100690,99580,67.15,0,5.74,6.15,6.2,6.22,6.21,6.2,6.18,6.16,6.1000000000000005,155.26,155.57,155.67000000000002,155.76,155.83,155.91,155.97,156.04,156.16,28.85,28.55,28.39,28.19,28,27.810000000000002,27.62,27.43,27.05,N/A,N/A -2012,7,24,8,30,101830,100680,99570,73.42,0,5.92,6.390000000000001,6.48,6.53,6.5600000000000005,6.59,6.61,6.62,6.640000000000001,173.14000000000001,173.16,173.18,173.20000000000002,173.23,173.26,173.29,173.32,173.39000000000001,28.55,28.21,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A -2012,7,24,9,30,101860,100710,99600,79.78,0,5.14,5.5,5.58,5.62,5.66,5.69,5.71,5.73,5.7700000000000005,171.29,171.72,171.85,171.93,171.99,172.03,172.06,172.08,172.1,28.32,27.98,27.810000000000002,27.61,27.42,27.23,27.04,26.85,26.48,N/A,N/A -2012,7,24,10,30,101890,100730,99620,80.28,0,3.81,4.07,4.12,4.16,4.2,4.22,4.25,4.2700000000000005,4.32,176.5,176.81,176.98,177.15,177.3,177.45000000000002,177.58,177.71,177.95000000000002,28.32,27.98,27.810000000000002,27.61,27.42,27.240000000000002,27.04,26.86,26.48,N/A,N/A -2012,7,24,11,30,101870,100720,99610,78.72,0,4.48,4.83,4.92,4.97,5.01,5.05,5.08,5.1000000000000005,5.15,173.9,174.15,174.24,174.3,174.34,174.37,174.39000000000001,174.4,174.41,28.43,28.1,27.93,27.73,27.54,27.35,27.150000000000002,26.97,26.59,N/A,N/A -2012,7,24,12,30,101890,100740,99630,79.09,0,3.7800000000000002,4.0600000000000005,4.12,4.15,4.17,4.19,4.2,4.21,4.22,174.59,174.07,173.91,173.74,173.59,173.45000000000002,173.31,173.18,172.91,28.45,28.11,27.94,27.740000000000002,27.55,27.36,27.17,26.98,26.6,N/A,N/A -2012,7,24,13,30,101920,100770,99660,76.88,0,4.41,4.74,4.8100000000000005,4.8500000000000005,4.87,4.89,4.91,4.92,4.93,167.94,168.28,168.51,168.72,168.9,169.08,169.27,169.43,169.77,28.560000000000002,28.23,28.060000000000002,27.86,27.67,27.48,27.29,27.1,26.72,N/A,N/A -2012,7,24,14,30,101940,100790,99670,77.89,0,3.92,4.16,4.2,4.22,4.22,4.23,4.22,4.22,4.21,179.01,178.84,178.75,178.67000000000002,178.59,178.52,178.44,178.36,178.21,28.47,28.13,27.96,27.76,27.57,27.38,27.18,27,26.62,N/A,N/A -2012,7,24,15,30,101910,100760,99650,78.45,0,3.36,3.5500000000000003,3.58,3.6,3.61,3.62,3.62,3.63,3.63,185.04,185.56,185.91,186.26,186.58,186.88,187.19,187.49,188.08,28.41,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A -2012,7,24,16,30,101880,100730,99620,75.34,0,2.97,3.09,3.1,3.1,3.09,3.09,3.08,3.0700000000000003,3.04,197.02,197.19,197.23000000000002,197.26,197.27,197.28,197.28,197.28,197.24,28.44,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,7,24,17,30,101870,100720,99610,76.15,0,2.4,2.5100000000000002,2.52,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.52,2.52,192.68,191.52,190.89000000000001,190.25,189.65,189.07,188.5,187.97,186.8,28.37,28.02,27.84,27.64,27.45,27.25,27.060000000000002,26.87,26.490000000000002,N/A,N/A -2012,7,24,18,30,101810,100660,99540,75.22,0,1.9000000000000001,1.95,1.95,1.94,1.93,1.92,1.9100000000000001,1.9000000000000001,1.8800000000000001,156.94,157.41,157.63,157.82,157.99,158.14000000000001,158.26,158.37,158.52,28.43,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.11,26.92,26.54,N/A,N/A -2012,7,24,19,30,101780,100630,99520,74.69,0,2.4,2.52,2.54,2.5500000000000003,2.56,2.57,2.58,2.58,2.59,160.78,160.32,159.88,159.45000000000002,159.09,158.75,158.39000000000001,158.05,157.39000000000001,28.51,28.14,27.96,27.76,27.57,27.38,27.18,27,26.62,N/A,N/A -2012,7,24,20,30,101730,100580,99470,76.18,0,3.62,3.8200000000000003,3.85,3.87,3.89,3.89,3.9,3.9,3.91,170.11,169.94,169.81,169.69,169.59,169.51,169.43,169.35,169.22,28.57,28.21,28.03,27.830000000000002,27.64,27.45,27.26,27.07,26.7,N/A,N/A -2012,7,24,21,30,101710,100570,99450,75.18,0,3.64,3.85,3.88,3.89,3.9,3.91,3.91,3.92,3.92,162.20000000000002,162.54,162.73,162.93,163.12,163.31,163.51,163.71,164.14000000000001,28.69,28.34,28.16,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A -2012,7,24,22,30,101690,100540,99430,75.92,0,4.5,4.82,4.87,4.9,4.92,4.93,4.93,4.94,4.95,158.76,158.63,158.57,158.52,158.49,158.46,158.44,158.42000000000002,158.38,28.77,28.44,28.27,28.080000000000002,27.89,27.7,27.51,27.330000000000002,26.95,N/A,N/A -2012,7,24,23,30,101640,100500,99390,77.49,0,5.14,5.5,5.55,5.57,5.58,5.58,5.57,5.55,5.5200000000000005,150.23,150.43,150.58,150.72,150.84,150.97,151.11,151.24,151.54,28.68,28.35,28.18,27.990000000000002,27.8,27.61,27.42,27.240000000000002,26.86,N/A,N/A -2012,7,25,0,30,101650,100500,99390,78.29,0,5.8,6.26,6.36,6.41,6.45,6.48,6.49,6.51,6.5200000000000005,161.59,161.68,161.73,161.78,161.82,161.87,161.92000000000002,161.97,162.09,28.69,28.37,28.2,28.01,27.82,27.63,27.44,27.25,26.88,N/A,N/A -2012,7,25,1,30,101610,100470,99360,79.92,0,5.86,6.33,6.42,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,155.18,155.07,155.09,155.13,155.15,155.19,155.22,155.26,155.33,28.650000000000002,28.310000000000002,28.150000000000002,27.95,27.76,27.57,27.38,27.2,26.82,N/A,N/A -2012,7,25,2,30,101610,100460,99350,74.63,0,6.07,6.6000000000000005,6.72,6.78,6.83,6.86,6.890000000000001,6.91,6.95,149.98,149.95000000000002,149.94,149.91,149.87,149.83,149.78,149.72,149.57,29.03,28.73,28.57,28.38,28.2,28.01,27.82,27.64,27.27,N/A,N/A -2012,7,25,3,30,101610,100470,99360,81.83,0,7.5,8.17,8.33,8.42,8.49,8.540000000000001,8.58,8.620000000000001,8.67,160.66,160.8,160.8,160.77,160.73,160.68,160.63,160.56,160.41,28.830000000000002,28.51,28.36,28.16,27.98,27.79,27.61,27.43,27.060000000000002,N/A,N/A -2012,7,25,4,30,101560,100410,99300,86.60000000000001,0,6.86,7.44,7.5600000000000005,7.62,7.65,7.68,7.68,7.69,7.68,171.20000000000002,171.24,171.27,171.29,171.3,171.32,171.34,171.36,171.39000000000001,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,25,5,30,101560,100420,99310,84.24,0,7.07,7.67,7.8,7.86,7.91,7.930000000000001,7.95,7.96,7.97,181.61,181.69,181.74,181.78,181.81,181.83,181.85,181.86,181.87,28.55,28.2,28.03,27.830000000000002,27.650000000000002,27.46,27.26,27.080000000000002,26.7,N/A,N/A -2012,7,25,6,30,101580,100440,99330,85.37,0,7.43,8.07,8.22,8.3,8.36,8.39,8.41,8.43,8.44,197.53,197.41,197.32,197.22,197.13,197.03,196.95000000000002,196.86,196.68,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A -2012,7,25,7,30,101600,100460,99350,83.92,0,7.29,7.99,8.16,8.26,8.33,8.370000000000001,8.41,8.44,8.46,196.78,196.85,196.91,196.95000000000002,196.97,196.99,197,197,197.01,28.76,28.43,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A -2012,7,25,8,30,101610,100460,99350,79.94,0,7.390000000000001,8.05,8.2,8.28,8.33,8.36,8.370000000000001,8.39,8.4,201.84,201.93,201.87,201.79,201.70000000000002,201.61,201.5,201.4,201.16,28.72,28.38,28.21,28.01,27.830000000000002,27.64,27.44,27.26,26.88,N/A,N/A -2012,7,25,9,30,101600,100450,99340,80.31,0,7.18,7.83,7.99,8.08,8.14,8.18,8.22,8.24,8.28,203.98000000000002,204.03,204.04,204.06,204.07,204.08,204.1,204.12,204.15,28.62,28.28,28.11,27.91,27.72,27.53,27.330000000000002,27.150000000000002,26.77,N/A,N/A -2012,7,25,10,30,101610,100460,99350,79.18,0,7.08,7.72,7.87,7.95,8.01,8.040000000000001,8.07,8.09,8.11,204.73000000000002,204.58,204.63,204.69,204.76,204.83,204.91,204.98000000000002,205.13,28.69,28.35,28.17,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A -2012,7,25,11,30,101650,100500,99390,74.13,0,6.59,7.2,7.36,7.46,7.53,7.59,7.640000000000001,7.68,7.75,209.56,209.33,209.17000000000002,208.99,208.83,208.67000000000002,208.51,208.36,208.06,28.85,28.53,28.36,28.16,27.97,27.78,27.59,27.400000000000002,27.02,N/A,N/A -2012,7,25,12,30,101630,100490,99380,77.79,0,7.08,7.71,7.8500000000000005,7.930000000000001,7.97,8.01,8.02,8.03,8.040000000000001,201.87,202.20000000000002,202.41,202.61,202.79,202.96,203.13,203.29,203.59,28.63,28.3,28.13,27.93,27.740000000000002,27.54,27.35,27.16,26.78,N/A,N/A -2012,7,25,13,30,101700,100550,99440,77.01,0,6.46,6.97,7.07,7.11,7.140000000000001,7.15,7.15,7.140000000000001,7.12,200.54,200.86,201.01,201.16,201.28,201.39000000000001,201.48000000000002,201.57,201.74,28.650000000000002,28.310000000000002,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.79,N/A,N/A -2012,7,25,14,30,101700,100550,99440,70.62,0,5.99,6.43,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.61,6.61,6.61,211.5,211.46,211.42000000000002,211.37,211.33,211.28,211.23000000000002,211.17000000000002,211.06,28.85,28.54,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A -2012,7,25,15,30,101720,100580,99460,71.87,0,5.29,5.73,5.82,5.87,5.91,5.93,5.95,5.96,5.97,206.76,206.42000000000002,206.24,206.08,205.93,205.79,205.64000000000001,205.51,205.24,28.87,28.54,28.37,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A -2012,7,25,16,30,101670,100520,99410,71.74,0,5.62,6.08,6.19,6.25,6.29,6.33,6.3500000000000005,6.38,6.41,207.99,208.07,208.12,208.17000000000002,208.21,208.25,208.29,208.32,208.38,28.84,28.51,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A -2012,7,25,17,30,101660,100510,99400,76.24,0,5.32,5.72,5.8,5.84,5.87,5.9,5.91,5.93,5.95,200.98000000000002,201.29,201.43,201.59,201.73000000000002,201.86,201.99,202.11,202.37,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A -2012,7,25,18,30,101680,100530,99420,78.86,0,5.3100000000000005,5.74,5.84,5.91,5.96,6.01,6.04,6.07,6.13,190.73,191.12,191.31,191.49,191.65,191.81,191.96,192.11,192.39000000000001,28.71,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.22,26.84,N/A,N/A -2012,7,25,19,30,101620,100470,99360,78.57000000000001,0,6.5200000000000005,6.99,7.09,7.13,7.16,7.17,7.18,7.18,7.17,194.51,194.75,194.9,195.06,195.21,195.34,195.49,195.64000000000001,195.95000000000002,28.77,28.42,28.25,28.05,27.86,27.67,27.48,27.29,26.92,N/A,N/A -2012,7,25,20,30,101580,100440,99330,80.43,0,5.73,6.16,6.26,6.3100000000000005,6.34,6.36,6.37,6.38,6.390000000000001,193.46,193.52,193.57,193.62,193.67000000000002,193.72,193.77,193.81,193.92000000000002,28.71,28.36,28.19,27.990000000000002,27.8,27.61,27.41,27.23,26.85,N/A,N/A -2012,7,25,21,30,101530,100390,99280,80.04,0,5.91,6.37,6.47,6.5200000000000005,6.5600000000000005,6.59,6.61,6.62,6.65,191.92000000000002,192.09,192.22,192.35,192.48000000000002,192.6,192.74,192.87,193.13,28.64,28.29,28.12,27.92,27.73,27.54,27.34,27.16,26.78,N/A,N/A -2012,7,25,22,30,101520,100370,99260,81.78,0,5.5200000000000005,5.95,6.04,6.09,6.13,6.16,6.18,6.2,6.22,184.56,184.94,185.20000000000002,185.44,185.65,185.86,186.05,186.22,186.58,28.59,28.25,28.080000000000002,27.87,27.68,27.490000000000002,27.3,27.11,26.73,N/A,N/A -2012,7,25,23,30,101470,100330,99220,80.61,0,5.79,6.22,6.3100000000000005,6.36,6.390000000000001,6.41,6.42,6.43,6.44,187.3,187.51,187.64000000000001,187.75,187.83,187.92000000000002,188,188.08,188.24,28.6,28.26,28.09,27.89,27.71,27.51,27.32,27.13,26.75,N/A,N/A -2012,7,26,0,30,101460,100310,99200,82.91,0,6.49,6.99,7.1000000000000005,7.140000000000001,7.17,7.19,7.2,7.2,7.19,185.4,185.32,185.35,185.39000000000001,185.43,185.47,185.52,185.56,185.66,28.740000000000002,28.41,28.25,28.04,27.86,27.67,27.48,27.29,26.91,N/A,N/A -2012,7,26,1,30,101380,100230,99130,82.21000000000001,0,6.5,7,7.09,7.12,7.13,7.13,7.11,7.1000000000000005,7.0600000000000005,182.97,182.99,183.11,183.26,183.41,183.56,183.72,183.87,184.21,28.560000000000002,28.22,28.05,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A -2012,7,26,2,30,101380,100240,99130,81.77,0,6.71,7.29,7.43,7.5,7.5600000000000005,7.59,7.61,7.63,7.65,184.37,184.82,185,185.15,185.28,185.39000000000001,185.5,185.6,185.81,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.21,27.02,26.63,N/A,N/A -2012,7,26,3,30,101360,100220,99110,81.73,0,6.96,7.57,7.7,7.78,7.84,7.88,7.91,7.930000000000001,7.97,191.59,191.33,191.31,191.3,191.29,191.28,191.28,191.27,191.25,28.44,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,7,26,4,30,101360,100220,99110,80.3,0,7.45,8.03,8.16,8.22,8.27,8.3,8.32,8.33,8.36,196.64000000000001,196.23000000000002,196.11,195.96,195.81,195.66,195.49,195.32,194.94,28.490000000000002,28.150000000000002,27.98,27.78,27.59,27.41,27.21,27.03,26.66,N/A,N/A -2012,7,26,5,30,101350,100210,99100,84.24,0,7.640000000000001,8.39,8.56,8.66,8.73,8.78,8.81,8.84,8.86,193.6,193.39000000000001,193.31,193.24,193.19,193.14000000000001,193.1,193.06,193,28.34,27.98,27.8,27.6,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A -2012,7,26,6,30,101380,100240,99130,82.75,0,8.18,8.99,9.18,9.28,9.35,9.4,9.43,9.450000000000001,9.46,199.23000000000002,199.18,199.07,198.96,198.85,198.74,198.63,198.52,198.29,28.45,28.1,27.93,27.72,27.53,27.34,27.14,26.96,26.57,N/A,N/A -2012,7,26,7,30,101370,100230,99120,79.13,0,8.97,9.82,10.03,10.14,10.22,10.27,10.32,10.35,10.39,192.15,192.22,192.24,192.25,192.26,192.26,192.26,192.26,192.24,28.66,28.330000000000002,28.17,27.97,27.78,27.6,27.400000000000002,27.22,26.85,N/A,N/A -2012,7,26,8,30,101400,100250,99140,79.14,0,9.01,9.84,10.05,10.16,10.23,10.290000000000001,10.33,10.36,10.41,197.91,197.44,197.28,197.16,197.06,196.99,196.92000000000002,196.87,196.79,28.59,28.25,28.080000000000002,27.88,27.7,27.51,27.32,27.13,26.76,N/A,N/A -2012,7,26,9,30,101430,100280,99180,76.18,0,8.61,9.52,9.74,9.870000000000001,9.96,10.02,10.06,10.09,10.120000000000001,202.23000000000002,202.42000000000002,202.43,202.4,202.37,202.32,202.27,202.22,202.08,28.72,28.39,28.22,28.01,27.82,27.63,27.43,27.25,26.86,N/A,N/A -2012,7,26,10,30,101420,100280,99170,75.77,0,7.640000000000001,8.4,8.59,8.700000000000001,8.78,8.84,8.89,8.93,8.99,198.05,198.51,198.72,198.92000000000002,199.09,199.26,199.43,199.59,199.91,28.76,28.43,28.26,28.07,27.88,27.7,27.5,27.32,26.94,N/A,N/A -2012,7,26,11,30,101470,100330,99220,78.43,0,7.91,8.58,8.71,8.76,8.78,8.790000000000001,8.790000000000001,8.78,8.74,197.41,197.44,197.49,197.53,197.57,197.62,197.66,197.70000000000002,197.79,28.62,28.3,28.13,27.93,27.740000000000002,27.55,27.36,27.18,26.8,N/A,N/A -2012,7,26,12,30,101500,100350,99240,71.92,0,7.42,8.11,8.290000000000001,8.4,8.48,8.55,8.6,8.65,8.73,206.89000000000001,206.51,206.31,206.14000000000001,205.99,205.86,205.73000000000002,205.6,205.37,29,28.71,28.55,28.36,28.18,27.990000000000002,27.8,27.62,27.25,N/A,N/A -2012,7,26,13,30,101540,100400,99290,72.81,0,6.34,6.86,6.98,7.05,7.1000000000000005,7.140000000000001,7.18,7.21,7.26,199.57,199.49,199.51,199.57,199.64000000000001,199.71,199.79,199.87,200.07,28.93,28.63,28.48,28.28,28.1,27.92,27.73,27.55,27.18,N/A,N/A -2012,7,26,14,30,101560,100420,99310,71.27,0,5.18,5.71,5.84,5.92,6,6.0600000000000005,6.11,6.16,6.26,197.69,198.17000000000002,198.45000000000002,198.72,198.97,199.22,199.46,199.68,200.14000000000001,29.05,28.75,28.580000000000002,28.39,28.21,28.02,27.830000000000002,27.650000000000002,27.27,N/A,N/A -2012,7,26,15,30,101590,100440,99330,73.7,0,6.2700000000000005,6.82,6.93,6.99,7.0200000000000005,7.04,7.05,7.0600000000000005,7.0600000000000005,191.46,191.46,191.46,191.49,191.51,191.53,191.55,191.57,191.61,28.97,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.53,27.150000000000002,N/A,N/A -2012,7,26,16,30,101600,100450,99340,70.81,0,6.0200000000000005,6.47,6.5600000000000005,6.6000000000000005,6.62,6.63,6.640000000000001,6.640000000000001,6.65,190.13,190.07,190.04,190.01,190,189.98,189.98,189.97,189.98,29.09,28.79,28.62,28.43,28.25,28.060000000000002,27.87,27.68,27.310000000000002,N/A,N/A -2012,7,26,17,30,101550,100410,99300,71.08,0,5.91,6.44,6.55,6.62,6.67,6.7,6.74,6.76,6.8,185.52,185.63,185.70000000000002,185.75,185.8,185.85,185.9,185.94,186.03,29.14,28.830000000000002,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,7,26,18,30,101560,100420,99310,68.74,0,5.46,5.93,6.03,6.09,6.13,6.16,6.19,6.21,6.24,188.03,188.16,188.21,188.26,188.31,188.36,188.4,188.44,188.52,29.34,29.04,28.87,28.68,28.490000000000002,28.3,28.11,27.92,27.54,N/A,N/A -2012,7,26,19,30,101540,100400,99290,69.96000000000001,0,6.11,6.6000000000000005,6.69,6.73,6.75,6.76,6.76,6.75,6.74,180.98,181.14000000000001,181.24,181.3,181.35,181.38,181.42000000000002,181.46,181.53,29.3,29,28.830000000000002,28.63,28.45,28.26,28.060000000000002,27.88,27.5,N/A,N/A -2012,7,26,20,30,101510,100370,99260,71.12,0,6.18,6.67,6.75,6.78,6.78,6.78,6.78,6.76,6.73,178.02,177.83,177.75,177.70000000000002,177.67000000000002,177.64000000000001,177.63,177.63,177.66,29.23,28.93,28.77,28.57,28.39,28.2,28.01,27.82,27.44,N/A,N/A -2012,7,26,21,30,101470,100330,99220,73.88,0,6.68,7.25,7.36,7.41,7.44,7.45,7.46,7.46,7.45,169.95000000000002,169.89000000000001,169.85,169.8,169.77,169.73,169.70000000000002,169.67000000000002,169.6,29.080000000000002,28.77,28.61,28.41,28.22,28.04,27.85,27.66,27.28,N/A,N/A -2012,7,26,22,30,101450,100310,99200,74.75,0,6.67,7.22,7.32,7.37,7.390000000000001,7.4,7.41,7.41,7.390000000000001,169.49,169.58,169.67000000000002,169.73,169.78,169.82,169.86,169.9,169.99,28.96,28.650000000000002,28.490000000000002,28.29,28.11,27.92,27.73,27.54,27.17,N/A,N/A -2012,7,26,23,30,101440,100290,99180,80.31,0,7.21,7.84,7.97,8.040000000000001,8.08,8.11,8.120000000000001,8.13,8.13,171.35,171.48,171.54,171.6,171.64000000000001,171.68,171.72,171.76,171.84,28.740000000000002,28.41,28.25,28.05,27.86,27.67,27.48,27.29,26.92,N/A,N/A -2012,7,27,0,30,101400,100260,99150,82.09,0,6.19,6.75,6.890000000000001,6.98,7.05,7.1000000000000005,7.15,7.19,7.26,172.70000000000002,173.29,173.39000000000001,173.45000000000002,173.49,173.51,173.52,173.52,173.5,28.650000000000002,28.32,28.150000000000002,27.95,27.76,27.57,27.37,27.19,26.810000000000002,N/A,N/A -2012,7,27,1,30,101410,100270,99160,84.99,0,7.79,8.43,8.55,8.61,8.65,8.67,8.68,8.68,8.67,169.69,170.15,170.32,170.49,170.64000000000001,170.79,170.93,171.07,171.35,28.490000000000002,28.14,27.96,27.76,27.57,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,7,27,2,30,101400,100260,99150,87.37,0,8,8.77,8.950000000000001,9.06,9.13,9.18,9.21,9.24,9.27,168.06,167.98,167.97,167.98,167.99,168.01,168.04,168.06,168.12,28.43,28.07,27.89,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,7,27,3,30,101420,100270,99170,84.04,0,7.61,8.32,8.48,8.57,8.63,8.67,8.69,8.71,8.73,170.94,170.99,170.97,170.96,170.95000000000002,170.95000000000002,170.95000000000002,170.95000000000002,170.95000000000002,28.45,28.1,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A -2012,7,27,4,30,101430,100290,99180,82.07000000000001,0,7.49,8.21,8.38,8.48,8.55,8.6,8.64,8.67,8.72,174.96,175.02,175,174.97,174.95000000000002,174.92000000000002,174.89000000000001,174.85,174.79,28.53,28.18,28.01,27.810000000000002,27.61,27.42,27.23,27.04,26.66,N/A,N/A -2012,7,27,5,30,101450,100310,99200,83.46000000000001,0,7.37,8.06,8.22,8.32,8.38,8.41,8.44,8.45,8.45,174.39000000000001,174.29,174.31,174.35,174.41,174.47,174.54,174.61,174.76,28.48,28.12,27.95,27.75,27.55,27.36,27.16,26.97,26.59,N/A,N/A -2012,7,27,6,30,101490,100350,99240,82.53,0,8.120000000000001,8.89,9.07,9.17,9.24,9.290000000000001,9.32,9.34,9.370000000000001,176.19,176.01,175.96,175.91,175.87,175.83,175.79,175.76,175.67000000000002,28.51,28.16,27.990000000000002,27.79,27.6,27.41,27.21,27.03,26.650000000000002,N/A,N/A -2012,7,27,7,30,101520,100370,99260,82.4,0,7.25,7.930000000000001,8.08,8.16,8.22,8.26,8.28,8.290000000000001,8.290000000000001,174.89000000000001,174.91,174.92000000000002,174.95000000000002,174.98,175.01,175.05,175.08,175.15,28.53,28.19,28.01,27.810000000000002,27.62,27.43,27.23,27.05,26.66,N/A,N/A -2012,7,27,8,30,101520,100380,99270,80.83,0,6.75,7.34,7.48,7.55,7.59,7.62,7.640000000000001,7.65,7.65,175.6,175.76,175.84,175.93,176.02,176.1,176.19,176.29,176.47,28.67,28.35,28.18,27.98,27.79,27.6,27.400000000000002,27.21,26.830000000000002,N/A,N/A -2012,7,27,9,30,101560,100420,99310,81.86,0,5.94,6.44,6.55,6.6000000000000005,6.640000000000001,6.67,6.69,6.7,6.72,168.71,168.82,168.88,168.94,168.99,169.04,169.08,169.13,169.21,28.71,28.38,28.21,28.01,27.830000000000002,27.64,27.44,27.25,26.87,N/A,N/A -2012,7,27,10,30,101560,100410,99300,84.01,0,6.98,7.57,7.69,7.74,7.78,7.8,7.8100000000000005,7.82,7.82,164.14000000000001,164.31,164.42000000000002,164.53,164.63,164.72,164.8,164.88,165.06,28.64,28.310000000000002,28.14,27.94,27.75,27.560000000000002,27.36,27.18,26.8,N/A,N/A -2012,7,27,11,30,101610,100460,99350,82.83,0,5.6000000000000005,6.09,6.2,6.2700000000000005,6.3100000000000005,6.3500000000000005,6.38,6.4,6.43,169.23,169.51,169.68,169.84,169.99,170.13,170.28,170.41,170.71,28.8,28.47,28.3,28.11,27.92,27.73,27.53,27.35,26.97,N/A,N/A -2012,7,27,12,30,101620,100480,99370,84.06,0,5.72,6.18,6.28,6.33,6.37,6.38,6.4,6.4,6.4,163.32,163.20000000000002,163.15,163.11,163.07,163.03,162.99,162.95000000000002,162.87,28.8,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A -2012,7,27,13,30,101660,100510,99400,84.56,0,4.07,4.36,4.43,4.49,4.53,4.5600000000000005,4.59,4.61,4.65,174.56,172.96,171.99,171.06,170.29,169.59,168.96,168.39000000000001,167.33,28.69,28.37,28.21,28.01,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A -2012,7,27,14,30,101870,100700,99570,93.51,244.3,9.77,10.35,10.41,10.32,10.21,10.07,9.9,9.74,9.44,196.45000000000002,197.6,198.56,199.73000000000002,200.86,202.03,203.51,205.02,210.20000000000002,24.45,23.88,23.68,23.490000000000002,23.32,23.16,23.01,22.87,22.62,N/A,N/A -2012,7,27,15,30,101860,100690,99550,93.28,146.1,7.08,7.11,6.94,6.69,6.3500000000000005,6,5.47,4.98,4.3,163.87,164.24,164.77,165.45000000000002,166.27,167.1,168.36,169.52,172.88,23.81,23.32,23.150000000000002,23.02,22.91,22.82,22.76,22.71,22.68,N/A,N/A -2012,7,27,16,30,101720,100550,99430,81.25,4.800000000000001,3.36,3.33,3.23,3.1,3.0100000000000002,2.95,2.85,2.7600000000000002,2.79,190.94,188.37,185.95000000000002,182.27,176.31,169.15,166.21,164.55,152.05,24.77,24.43,24.37,24.39,24.68,25.13,25.43,25.66,26.03,N/A,N/A -2012,7,27,17,30,101730,100570,99450,79.48,0,4.71,4.76,4.67,4.53,4.29,4.01,3.46,2.95,2.29,185.70000000000002,185.36,185.32,185.34,185.84,186.63,189.88,193.14000000000001,203.81,25.75,25.37,25.22,25.07,25,24.98,25.240000000000002,25.560000000000002,26.060000000000002,N/A,N/A -2012,7,27,18,30,101760,100600,99480,72.35000000000001,0,3.0100000000000002,2.99,2.89,2.75,2.37,1.93,1.55,1.27,0.9400000000000001,108.34,108.65,109.16,109.95,111.88,114.11,116,117.43,124.11,27.18,26.85,26.7,26.55,26.61,26.810000000000002,26.990000000000002,27.150000000000002,27.07,N/A,N/A -2012,7,27,19,30,101750,100600,99480,74.37,0,5.37,5.59,5.59,5.54,5.49,5.43,5.36,5.28,5.08,179.79,180.36,180.73,181.15,181.59,182.04,182.58,183.12,184.6,27.27,26.89,26.71,26.53,26.35,26.18,26.01,25.86,25.580000000000002,N/A,N/A -2012,7,27,20,30,101750,100590,99470,72.10000000000001,0,2.98,3.06,3.0500000000000003,3.0100000000000002,2.97,2.93,2.87,2.8000000000000003,2.58,181.73,181.45000000000002,181.13,180.74,180.24,179.66,178.92000000000002,178.20000000000002,176.49,27.03,26.66,26.490000000000002,26.310000000000002,26.14,25.97,25.82,25.68,25.48,N/A,N/A -2012,7,27,21,30,101750,100600,99480,73.02,0,3.3200000000000003,3.44,3.45,3.43,3.42,3.4,3.38,3.36,3.33,147.07,147.95000000000002,148.59,149.28,149.98,150.69,151.53,152.35,154.62,27.53,27.17,26.990000000000002,26.810000000000002,26.63,26.45,26.27,26.11,25.84,N/A,N/A -2012,7,27,22,30,101720,100570,99450,72.23,0,2.05,2.12,2.12,2.11,2.1,2.09,2.07,2.05,1.97,128.23,128.49,128.64000000000001,128.78,128.96,129.17000000000002,129.53,129.91,132.67000000000002,27.8,27.46,27.29,27.1,26.92,26.740000000000002,26.57,26.41,26.2,N/A,N/A -2012,7,27,23,30,101680,100530,99420,80.16,0,3.15,3.29,3.31,3.31,3.31,3.31,3.3000000000000003,3.3000000000000003,3.27,170.09,170.41,170.58,170.78,171,171.24,171.52,171.8,172.73,27.94,27.59,27.42,27.23,27.04,26.86,26.67,26.490000000000002,26.150000000000002,N/A,N/A -2012,7,28,0,30,101620,100470,99360,78.78,0,3.18,3.34,3.36,3.37,3.38,3.37,3.37,3.37,3.37,205.54,205.51,205.52,205.53,205.55,205.59,205.64000000000001,205.71,205.99,28.18,27.84,27.68,27.48,27.3,27.11,26.93,26.75,26.41,N/A,N/A -2012,7,28,1,30,101600,100450,99340,77.56,0,4.2,4.45,4.48,4.49,4.49,4.49,4.48,4.47,4.43,188.04,188.19,188.29,188.4,188.53,188.65,188.78,188.92000000000002,189.25,28.28,27.94,27.77,27.57,27.38,27.19,27,26.810000000000002,26.44,N/A,N/A -2012,7,28,2,30,101630,100480,99370,78.49,0,4.96,5.2700000000000005,5.32,5.32,5.32,5.3,5.29,5.26,5.21,179.85,179.97,180.01,180.06,180.11,180.16,180.22,180.27,180.42000000000002,28.36,28.01,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A -2012,7,28,3,30,101680,100540,99420,74.99,0,4.71,5.0200000000000005,5.07,5.09,5.1000000000000005,5.1000000000000005,5.09,5.08,5.05,179.5,179.56,179.57,179.6,179.63,179.66,179.70000000000002,179.74,179.86,28.560000000000002,28.23,28.060000000000002,27.87,27.68,27.5,27.3,27.12,26.740000000000002,N/A,N/A -2012,7,28,4,30,101710,100560,99450,74.98,0,4.65,4.94,4.99,5,5,4.99,4.97,4.96,4.91,175.43,175.61,175.72,175.82,175.92000000000002,176.03,176.14000000000001,176.26,176.54,28.55,28.22,28.060000000000002,27.86,27.68,27.490000000000002,27.3,27.12,26.740000000000002,N/A,N/A -2012,7,28,5,30,101720,100570,99460,79.17,0,5.58,6.01,6.09,6.13,6.16,6.17,6.18,6.18,6.18,182.91,183.03,183.08,183.13,183.18,183.23,183.28,183.32,183.42000000000002,28.43,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.59,N/A,N/A -2012,7,28,6,30,101750,100600,99490,79.93,0,6.37,6.88,6.99,7.04,7.08,7.1000000000000005,7.11,7.11,7.11,186.76,186.72,186.70000000000002,186.68,186.66,186.63,186.61,186.59,186.54,28.43,28.07,27.900000000000002,27.7,27.51,27.32,27.12,26.94,26.560000000000002,N/A,N/A -2012,7,28,7,30,101750,100600,99480,81.22,0,7.25,7.87,8.01,8.08,8.120000000000001,8.15,8.17,8.18,8.19,194.82,194.79,194.74,194.68,194.63,194.58,194.53,194.47,194.37,28.45,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.59,N/A,N/A -2012,7,28,8,30,101790,100640,99530,81.23,0,6.25,6.78,6.9,6.97,7.0200000000000005,7.05,7.07,7.09,7.1000000000000005,209.52,209.48000000000002,209.39000000000001,209.3,209.21,209.11,209.02,208.94,208.76,28.47,28.11,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.59,N/A,N/A -2012,7,28,9,30,101810,100660,99550,77.63,0,5.69,6.12,6.2,6.24,6.2700000000000005,6.28,6.29,6.3,6.3,219.04,219.06,219,218.94,218.89000000000001,218.83,218.78,218.73000000000002,218.65,28.52,28.18,28,27.8,27.61,27.43,27.23,27.04,26.66,N/A,N/A -2012,7,28,10,30,101810,100660,99550,82.04,0,5.08,5.44,5.51,5.55,5.58,5.6000000000000005,5.61,5.62,5.63,235.64000000000001,235.39000000000001,235.24,235.08,234.93,234.77,234.61,234.47,234.12,28.36,28.01,27.84,27.64,27.45,27.26,27.07,26.88,26.5,N/A,N/A -2012,7,28,11,30,101800,100650,99540,82.57000000000001,0,3.86,4.09,4.14,4.16,4.17,4.18,4.19,4.2,4.21,254.54,254.28,254.04,253.8,253.59,253.39000000000001,253.18,252.97,252.56,28.29,27.94,27.76,27.57,27.37,27.18,26.990000000000002,26.8,26.42,N/A,N/A -2012,7,28,12,30,101820,100670,99560,83.10000000000001,0,3.96,4.17,4.2,4.21,4.21,4.21,4.2,4.18,4.16,285.19,284.76,284.40000000000003,284.05,283.73,283.41,283.09000000000003,282.8,282.18,28.21,27.85,27.68,27.47,27.28,27.09,26.89,26.71,26.32,N/A,N/A -2012,7,28,13,30,101860,100700,99590,84.71000000000001,0,3.75,3.87,3.86,3.83,3.79,3.74,3.69,3.64,3.5100000000000002,329.22,328.85,328.72,328.55,328.34000000000003,328.11,327.78000000000003,327.44,326.29,27.72,27.35,27.17,26.97,26.79,26.6,26.41,26.23,25.86,N/A,N/A -2012,7,28,14,30,101940,100790,99670,84.41,0,4.1,4.3500000000000005,4.4,4.43,4.46,4.47,4.49,4.51,4.55,279.86,279.37,279.04,278.73,278.42,278.09000000000003,277.74,277.39,276.58,27.78,27.41,27.23,27.03,26.84,26.650000000000002,26.46,26.27,25.900000000000002,N/A,N/A -2012,7,28,15,30,102010,100850,99720,90.16,0,11.03,11.950000000000001,12.16,12.24,12.280000000000001,12.3,12.290000000000001,12.27,12.22,220.76,220.91,221,221.11,221.21,221.32,221.44,221.56,221.89000000000001,26.1,25.57,25.37,25.150000000000002,24.96,24.77,24.580000000000002,24.400000000000002,24.05,N/A,N/A -2012,7,28,16,30,101960,100800,99680,86.82000000000001,0,8.1,8.700000000000001,8.8,8.84,8.85,8.85,8.83,8.81,8.75,220.66,220.8,220.85,220.91,220.96,221.01,221.07,221.13,221.31,26.6,26.13,25.93,25.73,25.53,25.34,25.150000000000002,24.97,24.59,N/A,N/A -2012,7,28,17,30,101950,100790,99670,80.21000000000001,0,5.76,6.1000000000000005,6.16,6.17,6.18,6.18,6.17,6.16,6.140000000000001,219.61,220.20000000000002,220.61,221.04,221.47,221.9,222.38,222.85,224.02,27.16,26.75,26.57,26.37,26.18,25.990000000000002,25.8,25.62,25.25,N/A,N/A -2012,7,28,18,30,101900,100740,99620,80.11,0,4.29,4.5,4.5200000000000005,4.5200000000000005,4.51,4.5,4.49,4.47,4.43,222.68,223.49,223.92000000000002,224.38,224.84,225.31,225.86,226.4,227.86,27.19,26.8,26.61,26.42,26.23,26.04,25.85,25.67,25.3,N/A,N/A -2012,7,28,19,30,101860,100700,99580,79.28,0,4.21,4.42,4.44,4.45,4.45,4.44,4.43,4.43,4.46,229.71,230.09,230.49,230.92000000000002,231.4,231.91,232.62,233.32,236.45000000000002,27.52,27.13,26.96,26.76,26.580000000000002,26.400000000000002,26.22,26.05,25.75,N/A,N/A -2012,7,28,20,30,101810,100660,99540,77.86,0,4.58,4.8,4.8,4.78,4.75,4.71,4.66,4.61,4.34,218.71,219.27,219.6,220,220.5,221.07,222.14000000000001,223.31,231.38,27.990000000000002,27.63,27.45,27.26,27.080000000000002,26.91,26.740000000000002,26.59,26.47,N/A,N/A -2012,7,28,21,30,101810,100660,99550,80.97,0,8.03,8.66,8.77,8.8,8.8,8.8,8.77,8.74,8.66,201,201.11,201.20000000000002,201.29,201.37,201.46,201.56,201.65,201.9,28.25,27.88,27.71,27.51,27.32,27.13,26.94,26.76,26.39,N/A,N/A -2012,7,28,22,30,101750,100600,99490,81.91,0,8.33,9.02,9.13,9.17,9.18,9.17,9.15,9.13,9.040000000000001,206.35,206.54,206.61,206.68,206.75,206.82,206.91,206.98000000000002,207.19,28.27,27.900000000000002,27.72,27.52,27.330000000000002,27.150000000000002,26.96,26.78,26.41,N/A,N/A -2012,7,28,23,30,101730,100580,99470,78.78,0,8.05,8.73,8.85,8.9,8.92,8.93,8.92,8.9,8.85,209.24,209.26,209.28,209.3,209.31,209.31,209.32,209.32,209.32,28.38,28.02,27.84,27.650000000000002,27.46,27.27,27.07,26.89,26.51,N/A,N/A -2012,7,29,0,30,101690,100540,99430,78.96000000000001,0,7.37,7.91,8,8.01,8.01,8,7.97,7.930000000000001,7.84,210.16,210.37,210.44,210.52,210.62,210.72,210.86,210.99,211.39000000000001,28.29,27.93,27.75,27.560000000000002,27.38,27.19,27,26.830000000000002,26.48,N/A,N/A -2012,7,29,1,30,101670,100530,99410,75.9,0,6.26,6.7,6.76,6.78,6.78,6.7700000000000005,6.75,6.73,6.66,212.84,213.17000000000002,213.31,213.47,213.64000000000001,213.82,214.04,214.25,214.88,28.41,28.060000000000002,27.89,27.7,27.51,27.330000000000002,27.14,26.96,26.6,N/A,N/A -2012,7,29,2,30,101680,100530,99420,75.58,0,5.82,6.21,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.25,6.23,6.2,6.140000000000001,205.08,205.23000000000002,205.41,205.59,205.78,205.97,206.21,206.44,207.16,28.53,28.2,28.03,27.830000000000002,27.650000000000002,27.47,27.28,27.11,26.76,N/A,N/A -2012,7,29,3,30,101660,100510,99400,78.55,0,5.74,6.13,6.18,6.2,6.19,6.18,6.16,6.140000000000001,6.08,212.70000000000002,212.89000000000001,213,213.14000000000001,213.27,213.41,213.6,213.8,214.4,28.44,28.1,27.93,27.740000000000002,27.55,27.37,27.18,27,26.650000000000002,N/A,N/A -2012,7,29,4,30,101630,100480,99370,78.87,0,6.3,6.78,6.8500000000000005,6.88,6.890000000000001,6.890000000000001,6.88,6.88,6.8500000000000005,223.31,223.51,223.61,223.72,223.84,223.95000000000002,224.09,224.23000000000002,224.6,28.5,28.150000000000002,27.98,27.79,27.61,27.42,27.23,27.05,26.69,N/A,N/A -2012,7,29,5,30,101650,100500,99390,80.03,0,6.13,6.59,6.66,6.69,6.71,6.71,6.7,6.7,6.67,226.34,226.45000000000002,226.55,226.67000000000002,226.78,226.9,227.03,227.16,227.48000000000002,28.44,28.1,27.93,27.73,27.54,27.36,27.17,26.990000000000002,26.62,N/A,N/A -2012,7,29,6,30,101680,100540,99420,80.22,0,6.15,6.63,6.72,6.7700000000000005,6.8,6.82,6.83,6.84,6.84,225.37,225.63,225.73000000000002,225.83,225.92000000000002,226.02,226.12,226.21,226.43,28.48,28.13,27.96,27.76,27.57,27.38,27.19,27,26.63,N/A,N/A -2012,7,29,7,30,101690,100540,99430,78.83,0,5.82,6.26,6.3500000000000005,6.390000000000001,6.41,6.42,6.43,6.43,6.41,232.09,232.21,232.28,232.35,232.42000000000002,232.49,232.57,232.64000000000001,232.8,28.6,28.25,28.080000000000002,27.88,27.69,27.5,27.310000000000002,27.13,26.740000000000002,N/A,N/A -2012,7,29,8,30,101710,100560,99450,80.34,0,5.65,6.0600000000000005,6.140000000000001,6.17,6.19,6.2,6.2,6.2,6.19,234.1,234.24,234.31,234.38,234.44,234.49,234.55,234.6,234.72,28.51,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A -2012,7,29,9,30,101720,100580,99460,80.35000000000001,0,5.91,6.37,6.45,6.5,6.5200000000000005,6.54,6.55,6.55,6.55,244.99,245.08,245.12,245.16,245.21,245.24,245.29,245.33,245.43,28.5,28.14,27.97,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,7,29,10,30,101740,100590,99480,78.02,0,5.25,5.62,5.69,5.73,5.75,5.76,5.76,5.76,5.75,250.03,250.28,250.36,250.45000000000002,250.52,250.59,250.67000000000002,250.73000000000002,250.87,28.580000000000002,28.240000000000002,28.060000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A -2012,7,29,11,30,101760,100610,99500,80.22,0,5.32,5.63,5.67,5.67,5.67,5.65,5.63,5.61,5.5600000000000005,270.55,269.74,269.21,268.65,268.12,267.61,267.06,266.55,265.47,28.41,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A -2012,7,29,12,30,101790,100640,99530,81.52,0,5.23,5.53,5.57,5.57,5.57,5.55,5.53,5.51,5.45,281.96,280.98,280.43,279.86,279.32,278.8,278.25,277.73,276.58,27.92,27.54,27.36,27.17,26.97,26.79,26.6,26.41,26.04,N/A,N/A -2012,7,29,13,30,101800,100650,99530,80.92,0,4.98,5.28,5.33,5.34,5.34,5.34,5.34,5.33,5.32,285.09000000000003,284.63,284.36,284.07,283.77,283.48,283.13,282.79,281.91,27.72,27.34,27.16,26.96,26.78,26.59,26.400000000000002,26.22,25.85,N/A,N/A -2012,7,29,14,30,101840,100690,99570,76.67,0,4.08,4.32,4.36,4.38,4.39,4.4,4.4,4.41,4.42,285.56,285.95,286.13,286.31,286.49,286.65000000000003,286.82,286.98,287.3,28.04,27.68,27.5,27.3,27.11,26.93,26.740000000000002,26.560000000000002,26.19,N/A,N/A -2012,7,29,15,30,101810,100660,99550,73.8,0,3.3200000000000003,3.52,3.56,3.58,3.6,3.62,3.63,3.65,3.68,287.69,287.38,287.23,287.08,286.94,286.81,286.67,286.54,286.3,28.36,28.01,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.900000000000002,26.52,N/A,N/A -2012,7,29,16,30,101810,100660,99540,74.58,0,2.18,2.2800000000000002,2.29,2.29,2.29,2.29,2.3000000000000003,2.3000000000000003,2.3000000000000003,248.56,250.07,251,251.94,252.85,253.75,254.74,255.68,257.87,28.55,28.2,28.03,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.71,N/A,N/A -2012,7,29,17,30,101780,100630,99520,73.02,0,1.1,1.11,1.11,1.1,1.09,1.08,1.07,1.06,1.03,231.87,233.24,234.25,235.33,236.45000000000002,237.59,239.05,240.51,244.44,28.78,28.44,28.26,28.07,27.88,27.69,27.5,27.32,26.95,N/A,N/A -2012,7,29,18,30,101770,100620,99510,73.02,0,0.72,0.74,0.73,0.72,0.71,0.7000000000000001,0.68,0.67,0.63,160.41,161.89000000000001,162.65,163.48,164.36,165.29,166.37,167.41,170.55,28.98,28.63,28.45,28.26,28.07,27.88,27.69,27.51,27.14,N/A,N/A -2012,7,29,19,30,101740,100590,99480,71.03,0,4.43,4.66,4.67,4.65,4.63,4.61,4.57,4.54,4.44,184.33,184.48,184.54,184.61,184.69,184.75,184.83,184.92000000000002,185.19,29.35,28.990000000000002,28.82,28.62,28.44,28.25,28.05,27.87,27.5,N/A,N/A -2012,7,29,20,30,101650,100500,99400,71.54,0,4.1,4.3,4.3,4.2700000000000005,4.24,4.2,4.14,4.07,3.79,190.28,190.31,190.34,190.38,190.41,190.45000000000002,190.5,190.57,191.04,29.38,29.04,28.87,28.69,28.5,28.32,28.14,27.97,27.68,N/A,N/A -2012,7,29,21,30,101640,100500,99390,72.33,0,4.87,5.18,5.21,5.19,5.17,5.15,5.1000000000000005,5.0600000000000005,4.91,195.62,195.68,195.73000000000002,195.8,195.88,195.96,196.1,196.23000000000002,196.75,29.6,29.29,29.13,28.94,28.76,28.580000000000002,28.400000000000002,28.22,27.91,N/A,N/A -2012,7,29,22,30,101610,100460,99350,76.36,0,6.25,6.7700000000000005,6.84,6.86,6.86,6.86,6.84,6.82,6.76,207.59,207.6,207.62,207.63,207.64000000000001,207.65,207.65,207.65,207.65,29.42,29.12,28.96,28.77,28.580000000000002,28.400000000000002,28.22,28.04,27.68,N/A,N/A -2012,7,29,23,30,101580,100430,99320,80.61,0,6.75,7.3100000000000005,7.41,7.45,7.46,7.46,7.46,7.44,7.390000000000001,210.26,210.24,210.22,210.19,210.16,210.12,210.08,210.04,209.93,29.03,28.7,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A -2012,7,30,0,30,101510,100370,99260,80.3,0,5.89,6.36,6.43,6.46,6.48,6.49,6.49,6.49,6.49,209.05,209.05,209.04,209.02,209,208.99,208.97,208.94,208.88,29.02,28.7,28.54,28.35,28.17,27.990000000000002,27.8,27.63,27.29,N/A,N/A -2012,7,30,1,30,101490,100340,99230,81.79,0,6.13,6.59,6.66,6.67,6.67,6.66,6.640000000000001,6.62,6.55,219.85,219.87,219.85,219.83,219.79,219.76,219.72,219.68,219.55,28.830000000000002,28.5,28.330000000000002,28.13,27.95,27.76,27.57,27.39,27.01,N/A,N/A -2012,7,30,2,30,101490,100350,99240,81.32000000000001,0,6.8100000000000005,7.3500000000000005,7.44,7.48,7.49,7.49,7.48,7.47,7.43,218.34,218.29,218.3,218.29,218.28,218.26,218.23000000000002,218.21,218.13,28.830000000000002,28.5,28.330000000000002,28.13,27.95,27.76,27.57,27.39,27.02,N/A,N/A -2012,7,30,3,30,101490,100350,99240,81.05,0,6.69,7.2,7.28,7.3,7.3,7.29,7.2700000000000005,7.24,7.17,216.01,216,216.02,216.03,216.04,216.04,216.04,216.04,216.01,28.79,28.45,28.28,28.09,27.900000000000002,27.72,27.53,27.35,26.98,N/A,N/A -2012,7,30,4,30,101490,100340,99230,81.93,0,6.73,7.25,7.32,7.3500000000000005,7.3500000000000005,7.3500000000000005,7.32,7.3,7.24,211.04,211.13,211.14000000000001,211.15,211.15,211.14000000000001,211.13,211.1,211.02,28.78,28.44,28.27,28.080000000000002,27.89,27.71,27.52,27.34,26.990000000000002,N/A,N/A -2012,7,30,5,30,101480,100340,99230,84.49,0,6.7,7.22,7.3100000000000005,7.3500000000000005,7.36,7.36,7.3500000000000005,7.33,7.29,215.72,215.6,215.55,215.49,215.43,215.37,215.29,215.21,215.04,28.64,28.3,28.12,27.93,27.73,27.55,27.36,27.17,26.8,N/A,N/A -2012,7,30,6,30,101500,100360,99250,86.71000000000001,0,6.55,7.07,7.18,7.23,7.25,7.2700000000000005,7.2700000000000005,7.2700000000000005,7.26,216.62,216.61,216.59,216.56,216.54,216.51,216.49,216.46,216.39000000000001,28.48,28.13,27.96,27.76,27.57,27.38,27.19,27,26.63,N/A,N/A -2012,7,30,7,30,101530,100380,99280,85.84,0,6.04,6.51,6.6000000000000005,6.65,6.68,6.7,6.7,6.7,6.7,222.53,222.65,222.67000000000002,222.69,222.71,222.74,222.77,222.8,222.85,28.48,28.13,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,7,30,8,30,101540,100390,99290,82.97,0,6.08,6.5600000000000005,6.66,6.72,6.75,6.78,6.79,6.8,6.8100000000000005,232.5,232.5,232.49,232.48000000000002,232.46,232.44,232.42000000000002,232.4,232.34,28.54,28.19,28.01,27.82,27.63,27.44,27.240000000000002,27.060000000000002,26.67,N/A,N/A -2012,7,30,9,30,101570,100430,99320,79.68,0,7.07,7.640000000000001,7.75,7.8,7.83,7.86,7.86,7.87,7.86,233.05,233.06,233.02,232.97,232.92000000000002,232.86,232.8,232.74,232.59,28.6,28.26,28.080000000000002,27.89,27.69,27.51,27.310000000000002,27.12,26.740000000000002,N/A,N/A -2012,7,30,10,30,101590,100450,99340,80.44,0,6.15,6.67,6.7700000000000005,6.83,6.87,6.890000000000001,6.91,6.93,6.94,242.11,242.21,242.26,242.29,242.33,242.35,242.38,242.4,242.45000000000002,28.61,28.27,28.09,27.900000000000002,27.71,27.52,27.32,27.14,26.75,N/A,N/A -2012,7,30,11,30,101640,100490,99380,78.26,0,5.88,6.41,6.53,6.6000000000000005,6.640000000000001,6.68,6.7,6.72,6.74,245.6,245.51,245.47,245.43,245.4,245.39000000000001,245.37,245.34,245.3,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.91,N/A,N/A -2012,7,30,12,30,101660,100510,99400,78.27,0,5.8100000000000005,6.28,6.38,6.45,6.5,6.53,6.5600000000000005,6.57,6.6000000000000005,263.53000000000003,262.8,262.41,262.01,261.65,261.3,260.96,260.64,260,28.73,28.39,28.22,28.03,27.84,27.650000000000002,27.45,27.27,26.89,N/A,N/A -2012,7,30,13,30,101680,100530,99420,78.26,0,5.5200000000000005,5.95,6.04,6.08,6.11,6.13,6.15,6.16,6.16,272.69,272.15,271.83,271.52,271.22,270.94,270.65,270.39,269.84000000000003,28.5,28.16,27.98,27.79,27.59,27.400000000000002,27.21,27.02,26.64,N/A,N/A -2012,7,30,14,30,101730,100580,99460,78.65,0,5.32,5.71,5.79,5.83,5.86,5.87,5.89,5.9,5.9,269.17,268.62,268.31,267.99,267.7,267.42,267.14,266.87,266.32,28.38,28.03,27.85,27.66,27.46,27.28,27.080000000000002,26.900000000000002,26.52,N/A,N/A -2012,7,30,15,30,101740,100590,99470,76.10000000000001,0,5.01,5.36,5.43,5.46,5.49,5.5,5.51,5.5200000000000005,5.53,254.98000000000002,254.97,254.97,254.95000000000002,254.92000000000002,254.87,254.82,254.78,254.62,28.5,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.66,N/A,N/A -2012,7,30,16,30,101730,100580,99460,76.03,0,4.57,4.88,4.94,4.97,4.99,5.01,5.01,5.0200000000000005,5.04,240.05,239.82,239.76,239.69,239.61,239.54,239.45000000000002,239.38,239.24,28.560000000000002,28.22,28.04,27.85,27.66,27.47,27.28,27.1,26.72,N/A,N/A -2012,7,30,17,30,101650,100500,99390,71.87,0,4.8,5.13,5.19,5.21,5.23,5.23,5.24,5.24,5.23,226.4,226.58,226.74,226.9,227.04,227.18,227.33,227.48000000000002,227.85,28.88,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.61,27.43,27.060000000000002,N/A,N/A -2012,7,30,18,30,101640,100490,99380,71.15,0,5.54,5.93,5.98,5.99,5.99,5.98,5.96,5.93,5.86,215.98000000000002,216.03,216.06,216.07,216.08,216.09,216.09,216.09,216.09,29.04,28.71,28.54,28.34,28.150000000000002,27.97,27.77,27.59,27.21,N/A,N/A -2012,7,30,19,30,101610,100460,99350,70.68,0,5.22,5.58,5.63,5.64,5.63,5.62,5.6000000000000005,5.58,5.5200000000000005,212.67000000000002,212.76,212.78,212.8,212.82,212.84,212.86,212.88,212.93,29.1,28.78,28.61,28.42,28.23,28.04,27.85,27.67,27.29,N/A,N/A -2012,7,30,20,30,101580,100430,99320,71.45,0,5.8500000000000005,6.28,6.34,6.36,6.37,6.36,6.34,6.32,6.26,207.88,207.92000000000002,207.91,207.88,207.85,207.81,207.77,207.72,207.62,29.14,28.82,28.650000000000002,28.45,28.27,28.080000000000002,27.89,27.7,27.32,N/A,N/A -2012,7,30,21,30,101540,100390,99280,67.73,0,6.140000000000001,6.67,6.75,6.78,6.8,6.8100000000000005,6.8100000000000005,6.8,6.7700000000000005,209.88,209.94,210.01,210.07,210.13,210.17000000000002,210.21,210.25,210.32,29.28,28.98,28.82,28.62,28.44,28.25,28.060000000000002,27.88,27.5,N/A,N/A -2012,7,30,22,30,101500,100360,99250,67.43,0,6.47,7.03,7.12,7.16,7.18,7.18,7.18,7.17,7.12,210.67000000000002,210.81,210.87,210.92000000000002,210.95000000000002,210.98000000000002,210.99,211,210.96,29.29,29,28.84,28.650000000000002,28.46,28.28,28.080000000000002,27.900000000000002,27.53,N/A,N/A -2012,7,30,23,30,101480,100330,99220,69.09,0,7.36,8,8.09,8.13,8.14,8.14,8.120000000000001,8.1,8.040000000000001,206.9,206.79,206.73000000000002,206.65,206.57,206.48000000000002,206.4,206.31,206.13,29.17,28.87,28.71,28.52,28.330000000000002,28.150000000000002,27.96,27.78,27.41,N/A,N/A -2012,7,31,0,30,101480,100330,99220,66.73,0,7.73,8.43,8.55,8.61,8.63,8.64,8.63,8.620000000000001,8.58,209.39000000000001,209.32,209.3,209.26,209.22,209.17000000000002,209.1,209.03,208.83,29.240000000000002,28.95,28.8,28.6,28.42,28.23,28.04,27.86,27.490000000000002,N/A,N/A -2012,7,31,1,30,101450,100300,99190,64.59,0,7.16,7.8100000000000005,7.930000000000001,7.99,8.040000000000001,8.06,8.08,8.1,8.120000000000001,211.96,212.06,212.14000000000001,212.23000000000002,212.31,212.4,212.48000000000002,212.56,212.71,29.310000000000002,29.04,28.88,28.69,28.51,28.330000000000002,28.14,27.97,27.61,N/A,N/A -2012,7,31,2,30,101500,100350,99240,63.35,0,6.92,7.55,7.68,7.76,7.8100000000000005,7.8500000000000005,7.890000000000001,7.91,7.95,211.01,211.3,211.52,211.72,211.89000000000001,212.06,212.21,212.36,212.63,29.42,29.150000000000002,28.990000000000002,28.8,28.62,28.44,28.25,28.07,27.69,N/A,N/A -2012,7,31,3,30,101510,100370,99260,64.63,0,6.96,7.6000000000000005,7.72,7.78,7.82,7.8500000000000005,7.86,7.87,7.87,212.35,212.36,212.37,212.38,212.39000000000001,212.4,212.41,212.41,212.4,29.38,29.11,28.95,28.76,28.580000000000002,28.39,28.2,28.02,27.650000000000002,N/A,N/A -2012,7,31,4,30,101500,100360,99250,69.06,0,6.82,7.42,7.5200000000000005,7.5600000000000005,7.57,7.58,7.57,7.55,7.5,215.39000000000001,215.27,215.20000000000002,215.12,215.03,214.93,214.82,214.71,214.44,29.05,28.740000000000002,28.580000000000002,28.38,28.2,28.01,27.810000000000002,27.63,27.240000000000002,N/A,N/A -2012,7,31,5,30,101520,100370,99260,61.07,0,6.78,7.38,7.49,7.55,7.59,7.61,7.62,7.63,7.640000000000001,212.99,213.04,213.1,213.17000000000002,213.26,213.34,213.42000000000002,213.5,213.64000000000001,29.44,29.17,29.01,28.82,28.63,28.44,28.25,28.07,27.68,N/A,N/A -2012,7,31,6,30,101540,100390,99290,65.54,0,7.47,8.14,8.26,8.32,8.35,8.36,8.35,8.34,8.290000000000001,214.97,215.12,215.22,215.31,215.38,215.43,215.46,215.49,215.49,29.25,28.96,28.79,28.6,28.41,28.22,28.03,27.84,27.45,N/A,N/A -2012,7,31,7,30,101550,100400,99300,67.11,0,6.95,7.61,7.74,7.8100000000000005,7.8500000000000005,7.88,7.9,7.91,7.92,219.24,219.21,219.15,219.09,219.02,218.96,218.9,218.84,218.71,29.310000000000002,29,28.84,28.64,28.45,28.27,28.07,27.89,27.51,N/A,N/A -2012,7,31,8,30,101570,100420,99310,69.93,0,7.21,7.83,7.96,8.03,8.08,8.11,8.13,8.15,8.16,221.23000000000002,221.41,221.55,221.71,221.85,221.98000000000002,222.12,222.24,222.51,29.07,28.75,28.580000000000002,28.39,28.2,28.02,27.82,27.64,27.26,N/A,N/A -2012,7,31,9,30,101560,100410,99300,70.42,0,6.8500000000000005,7.46,7.58,7.65,7.7,7.74,7.7700000000000005,7.79,7.82,227.1,227.24,227.32,227.4,227.47,227.54,227.61,227.68,227.84,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A -2012,7,31,10,30,101600,100450,99340,73.03,0,6.49,7.04,7.16,7.23,7.28,7.3100000000000005,7.34,7.36,7.4,233.07,232.9,232.8,232.70000000000002,232.6,232.51,232.41,232.31,232.13,28.86,28.53,28.36,28.17,27.98,27.79,27.6,27.42,27.04,N/A,N/A -2012,7,31,11,30,101620,100470,99360,76.74,0,6.22,6.71,6.82,6.87,6.91,6.93,6.95,6.96,6.98,234.14000000000001,234.18,234.13,234.07,234.02,233.97,233.92000000000002,233.87,233.76,28.7,28.36,28.18,27.98,27.79,27.61,27.41,27.22,26.84,N/A,N/A -2012,7,31,12,30,101610,100470,99360,79.74,0,5.7700000000000005,6.22,6.3100000000000005,6.37,6.4,6.42,6.44,6.45,6.46,238.48000000000002,238.45000000000002,238.43,238.41,238.39000000000001,238.38,238.37,238.36,238.33,28.580000000000002,28.22,28.05,27.85,27.66,27.47,27.27,27.080000000000002,26.7,N/A,N/A -2012,7,31,13,30,101650,100500,99390,79.41,0,5.62,6.07,6.16,6.21,6.24,6.2700000000000005,6.28,6.29,6.29,243.95000000000002,243.97,243.97,243.98000000000002,243.99,243.99,244.01,244.02,244.06,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A -2012,7,31,14,30,101680,100530,99420,76.37,0,4.42,4.74,4.82,4.88,4.92,4.96,5,5.03,5.1000000000000005,249.89000000000001,249.86,249.89000000000001,249.91,249.93,249.95000000000002,249.96,249.96,249.99,28.68,28.34,28.17,27.97,27.78,27.59,27.400000000000002,27.21,26.84,N/A,N/A -2012,7,31,15,30,101700,100550,99440,78.23,0,4.96,5.26,5.3100000000000005,5.33,5.34,5.34,5.33,5.33,5.3,249.07,248.78,248.63,248.5,248.37,248.24,248.12,248,247.77,28.72,28.37,28.2,28,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,7,31,16,30,101690,100540,99430,78.73,0,3.97,4.2,4.24,4.26,4.28,4.28,4.29,4.3,4.3100000000000005,246.22,245.83,245.59,245.35,245.15,244.96,244.76,244.57,244.22,28.69,28.34,28.17,27.97,27.79,27.6,27.400000000000002,27.22,26.84,N/A,N/A -2012,7,31,17,30,101630,100480,99370,77.23,0,3.96,4.21,4.25,4.2700000000000005,4.29,4.3,4.3,4.3100000000000005,4.32,213.27,213.78,214.1,214.4,214.68,214.97,215.26,215.55,216.22,28.87,28.52,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A -2012,7,31,18,30,101610,100460,99350,79.36,0,4.36,4.61,4.65,4.67,4.67,4.67,4.66,4.65,4.63,198.94,199.13,199.36,199.58,199.78,199.98000000000002,200.19,200.4,200.87,28.97,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.490000000000002,27.11,N/A,N/A -2012,7,31,19,30,101610,100460,99350,80.59,0,4.55,4.82,4.86,4.88,4.89,4.88,4.88,4.87,4.84,183.93,184.37,184.61,184.85,185.09,185.32,185.57,185.82,186.38,28.97,28.62,28.44,28.240000000000002,28.060000000000002,27.87,27.68,27.490000000000002,27.12,N/A,N/A -2012,7,31,20,30,101550,100410,99300,80.86,0,4.54,4.8500000000000005,4.9,4.93,4.94,4.95,4.95,4.96,4.95,183.20000000000002,183.61,183.86,184.08,184.28,184.47,184.65,184.82,185.17000000000002,29.02,28.67,28.5,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A -2012,7,31,21,30,101540,100400,99290,79.94,0,5.2700000000000005,5.66,5.73,5.76,5.78,5.79,5.79,5.79,5.78,188.12,188.37,188.5,188.64000000000001,188.78,188.92000000000002,189.05,189.21,189.54,29.13,28.79,28.62,28.43,28.240000000000002,28.05,27.86,27.67,27.3,N/A,N/A -2012,7,31,22,30,101510,100370,99260,77.39,0,5.93,6.41,6.49,6.53,6.55,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.54,188.51,188.53,188.5,188.45000000000002,188.41,188.36,188.29,188.23,188.11,29.28,28.96,28.8,28.6,28.42,28.23,28.04,27.85,27.48,N/A,N/A -2012,7,31,23,30,101500,100360,99250,79.81,0,7.390000000000001,8.040000000000001,8.16,8.22,8.25,8.26,8.27,8.27,8.26,187.4,187.38,187.41,187.44,187.46,187.49,187.52,187.55,187.62,29.16,28.84,28.68,28.48,28.3,28.11,27.92,27.740000000000002,27.37,N/A,N/A -2012,8,1,0,30,101460,100320,99210,79.83,0,7.0600000000000005,7.67,7.8,7.8500000000000005,7.890000000000001,7.9,7.91,7.91,7.890000000000001,193.76,193.85,193.84,193.82,193.79,193.76,193.73000000000002,193.70000000000002,193.63,29.1,28.78,28.61,28.41,28.23,28.04,27.85,27.67,27.29,N/A,N/A -2012,8,1,1,30,101450,100300,99200,79.72,0,6.91,7.49,7.6000000000000005,7.66,7.7,7.71,7.72,7.72,7.71,191.33,191.41,191.45000000000002,191.48000000000002,191.52,191.54,191.57,191.6,191.63,29.02,28.69,28.52,28.330000000000002,28.150000000000002,27.96,27.77,27.580000000000002,27.2,N/A,N/A -2012,8,1,2,30,101450,100310,99200,78.87,0,6.65,7.2,7.3,7.3500000000000005,7.38,7.390000000000001,7.390000000000001,7.4,7.38,194.08,194.09,194.1,194.1,194.1,194.09,194.1,194.09,194.1,29,28.67,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,8,1,3,30,101460,100320,99210,81.59,0,6.53,7.0600000000000005,7.16,7.21,7.24,7.26,7.26,7.26,7.26,193.64000000000001,193.64000000000001,193.66,193.70000000000002,193.74,193.78,193.83,193.87,193.98000000000002,28.88,28.54,28.36,28.17,27.98,27.79,27.59,27.41,27.03,N/A,N/A -2012,8,1,4,30,101440,100300,99190,80.62,0,6.57,7.13,7.25,7.3100000000000005,7.3500000000000005,7.38,7.390000000000001,7.41,7.42,201.31,201.27,201.24,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,201.23000000000002,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.6,27.42,27.04,N/A,N/A -2012,8,1,5,30,101450,100310,99200,79.93,0,7.32,7.94,8.06,8.11,8.14,8.16,8.16,8.15,8.14,203.44,203.59,203.70000000000002,203.83,203.95000000000002,204.07,204.20000000000002,204.34,204.62,28.95,28.61,28.44,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,8,1,6,30,101470,100320,99210,81.39,0,6.890000000000001,7.42,7.5200000000000005,7.5600000000000005,7.57,7.58,7.57,7.5600000000000005,7.5200000000000005,211.81,212.01,212.04,212.07,212.08,212.09,212.1,212.11,212.11,28.76,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.900000000000002,N/A,N/A -2012,8,1,7,30,101490,100340,99230,81.93,0,6.4,6.91,7.0200000000000005,7.08,7.12,7.15,7.16,7.18,7.19,213.83,213.87,213.9,213.92000000000002,213.95000000000002,213.97,214,214.02,214.07,28.69,28.330000000000002,28.150000000000002,27.95,27.76,27.560000000000002,27.37,27.18,26.8,N/A,N/A -2012,8,1,8,30,101500,100350,99240,81.76,0,6.7700000000000005,7.32,7.45,7.51,7.55,7.58,7.6000000000000005,7.61,7.63,218.28,218.21,218.19,218.18,218.17000000000002,218.16,218.15,218.14000000000001,218.13,28.73,28.36,28.19,27.990000000000002,27.8,27.61,27.42,27.23,26.85,N/A,N/A -2012,8,1,9,30,101510,100360,99250,83.07000000000001,0,7.13,7.7700000000000005,7.9,7.98,8.02,8.06,8.07,8.09,8.1,220.03,220.13,220.15,220.16,220.17000000000002,220.18,220.20000000000002,220.20000000000002,220.22,28.71,28.34,28.16,27.96,27.77,27.57,27.38,27.19,26.8,N/A,N/A -2012,8,1,10,30,101500,100360,99250,83.09,0,7.18,7.79,7.92,7.98,8.02,8.040000000000001,8.05,8.05,8.05,224.95000000000002,225.08,225.14000000000001,225.21,225.28,225.35,225.41,225.47,225.6,28.61,28.240000000000002,28.060000000000002,27.86,27.67,27.47,27.28,27.09,26.71,N/A,N/A -2012,8,1,11,30,101530,100380,99270,78.71000000000001,0,6.9,7.42,7.53,7.58,7.62,7.640000000000001,7.66,7.67,7.68,231.3,231.26,231.22,231.17000000000002,231.12,231.08,231.03,230.98000000000002,230.87,28.75,28.400000000000002,28.22,28.02,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A -2012,8,1,12,30,101530,100390,99280,79.26,0,6.71,7.26,7.38,7.44,7.48,7.51,7.53,7.54,7.55,230.42000000000002,230.61,230.74,230.86,230.96,231.06,231.16,231.25,231.43,28.87,28.52,28.34,28.14,27.95,27.76,27.560000000000002,27.37,26.990000000000002,N/A,N/A -2012,8,1,13,30,101580,100430,99330,78.88,0,5.91,6.4,6.51,6.57,6.62,6.66,6.68,6.71,6.74,237.95000000000002,237.91,237.93,237.96,237.98000000000002,238,238.02,238.05,238.11,28.86,28.51,28.34,28.14,27.95,27.77,27.57,27.38,27,N/A,N/A -2012,8,1,14,30,101590,100440,99330,78.32000000000001,0,5.43,5.87,5.97,6.04,6.08,6.11,6.140000000000001,6.16,6.19,236.68,236.77,236.77,236.76,236.75,236.74,236.73000000000002,236.72,236.70000000000002,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.53,27.14,N/A,N/A -2012,8,1,15,30,101580,100440,99330,78.29,0,5.97,6.38,6.45,6.48,6.48,6.48,6.47,6.45,6.41,239.91,240.13,240.25,240.37,240.48000000000002,240.59,240.70000000000002,240.81,241.04,29.01,28.66,28.490000000000002,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A -2012,8,1,16,30,101590,100440,99340,79.91,0,4.28,4.59,4.66,4.7,4.74,4.7700000000000005,4.79,4.82,4.8500000000000005,237.01,236.65,236.5,236.33,236.18,236.03,235.89000000000001,235.75,235.48000000000002,29.060000000000002,28.71,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.2,N/A,N/A -2012,8,1,17,30,101550,100410,99310,78.67,0,4.36,4.66,4.74,4.7700000000000005,4.8100000000000005,4.82,4.8500000000000005,4.86,4.88,225.12,224.99,224.93,224.85,224.77,224.69,224.6,224.52,224.34,29.19,28.84,28.66,28.46,28.27,28.080000000000002,27.89,27.7,27.32,N/A,N/A -2012,8,1,18,30,101540,100400,99290,80.62,0,4.62,4.9,4.94,4.96,4.96,4.96,4.95,4.93,4.9,211.6,211.64000000000001,211.71,211.75,211.8,211.83,211.87,211.91,211.97,29.2,28.85,28.67,28.47,28.28,28.09,27.900000000000002,27.71,27.34,N/A,N/A -2012,8,1,19,30,101510,100370,99270,80.42,0,5.01,5.33,5.39,5.42,5.43,5.44,5.44,5.44,5.42,198.65,198.69,198.78,198.87,198.95000000000002,199.03,199.11,199.19,199.36,29.26,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.78,27.400000000000002,N/A,N/A -2012,8,1,20,30,101460,100320,99220,79.27,0,5.62,6.0200000000000005,6.09,6.11,6.13,6.13,6.12,6.11,6.08,191,191.1,191.14000000000001,191.18,191.22,191.26,191.29,191.33,191.42000000000002,29.3,28.96,28.79,28.59,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A -2012,8,1,21,30,101430,100290,99180,81.09,0,5.53,5.94,6.0200000000000005,6.0600000000000005,6.09,6.11,6.12,6.12,6.12,187.9,188.08,188.21,188.35,188.46,188.57,188.69,188.8,189.04,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,1,22,30,101390,100250,99150,79.24,0,5.21,5.61,5.68,5.72,5.74,5.76,5.76,5.76,5.76,192.20000000000002,192.33,192.39000000000001,192.44,192.49,192.52,192.55,192.58,192.65,29.330000000000002,29.01,28.84,28.650000000000002,28.46,28.27,28.080000000000002,27.89,27.52,N/A,N/A -2012,8,1,23,30,101350,100210,99110,84.87,0,6.24,6.75,6.8500000000000005,6.9,6.93,6.95,6.96,6.97,6.97,193.20000000000002,193.38,193.44,193.49,193.52,193.54,193.57,193.58,193.61,29.05,28.7,28.53,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.19,N/A,N/A -2012,8,2,0,30,101330,100190,99080,80.85000000000001,0,6.76,7.3100000000000005,7.42,7.46,7.49,7.5,7.5,7.5,7.47,188.82,188.83,188.82,188.81,188.79,188.78,188.76,188.73,188.66,29.12,28.78,28.61,28.41,28.22,28.03,27.84,27.650000000000002,27.28,N/A,N/A -2012,8,2,1,30,101310,100170,99070,78.53,0,6.88,7.47,7.59,7.65,7.68,7.71,7.72,7.73,7.75,191.22,191.43,191.55,191.67000000000002,191.78,191.9,192.02,192.14000000000001,192.4,29.22,28.900000000000002,28.73,28.53,28.35,28.16,27.97,27.79,27.42,N/A,N/A -2012,8,2,2,30,101330,100190,99080,81.21000000000001,0,6.62,7.17,7.28,7.33,7.37,7.390000000000001,7.4,7.4,7.41,196.32,196.36,196.36,196.36,196.37,196.38,196.38,196.39000000000001,196.4,29.060000000000002,28.72,28.55,28.35,28.17,27.98,27.79,27.6,27.23,N/A,N/A -2012,8,2,3,30,101290,100150,99040,82.93,0,7.5,8.14,8.27,8.34,8.38,8.4,8.42,8.43,8.43,198.24,198.38,198.39000000000001,198.42000000000002,198.45000000000002,198.48000000000002,198.51,198.55,198.63,28.94,28.59,28.42,28.22,28.03,27.84,27.650000000000002,27.46,27.09,N/A,N/A -2012,8,2,4,30,101280,100140,99030,83.99,0,7.5,8.15,8.290000000000001,8.370000000000001,8.41,8.44,8.46,8.47,8.47,201.06,201.15,201.19,201.23000000000002,201.27,201.31,201.35,201.39000000000001,201.47,28.89,28.54,28.37,28.16,27.97,27.78,27.59,27.400000000000002,27.02,N/A,N/A -2012,8,2,5,30,101250,100110,99010,84.68,0,7.45,8.11,8.26,8.34,8.4,8.44,8.47,8.48,8.51,203.76,203.70000000000002,203.68,203.67000000000002,203.65,203.63,203.62,203.6,203.58,28.86,28.5,28.330000000000002,28.12,27.93,27.740000000000002,27.55,27.36,26.98,N/A,N/A -2012,8,2,6,30,101270,100130,99030,85.22,0,7.71,8.370000000000001,8.51,8.59,8.63,8.66,8.68,8.69,8.700000000000001,211.98000000000002,211.84,211.75,211.67000000000002,211.59,211.52,211.45000000000002,211.38,211.25,28.8,28.44,28.27,28.07,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A -2012,8,2,7,30,101280,100140,99030,83.76,0,7.86,8.58,8.74,8.82,8.88,8.92,8.94,8.96,8.98,215.17000000000002,214.88,214.74,214.6,214.48000000000002,214.36,214.25,214.14000000000001,213.92000000000002,28.82,28.46,28.29,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A -2012,8,2,8,30,101280,100140,99030,82.11,0,7.74,8.43,8.58,8.65,8.700000000000001,8.73,8.75,8.76,8.75,219.09,218.9,218.74,218.58,218.42000000000002,218.27,218.11,217.95000000000002,217.62,28.89,28.53,28.35,28.150000000000002,27.96,27.77,27.57,27.38,27,N/A,N/A -2012,8,2,9,30,101300,100160,99060,83.67,0,7.75,8.4,8.53,8.58,8.61,8.620000000000001,8.61,8.6,8.56,222.13,222.27,222.33,222.39000000000001,222.44,222.49,222.52,222.57,222.64000000000001,28.75,28.38,28.21,28.01,27.82,27.62,27.43,27.240000000000002,26.86,N/A,N/A -2012,8,2,10,30,101320,100180,99070,81.55,0,7.21,7.7700000000000005,7.9,7.96,8.01,8.040000000000001,8.06,8.08,8.11,226.65,226.59,226.56,226.5,226.44,226.37,226.29,226.21,226.01,28.8,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.94,N/A,N/A -2012,8,2,11,30,101330,100190,99080,83.69,0,6.0600000000000005,6.6000000000000005,6.71,6.8,6.8500000000000005,6.9,6.93,6.96,7,229,229.14000000000001,229.11,229.07,229.02,228.97,228.91,228.85,228.72,28.72,28.36,28.18,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A -2012,8,2,12,30,101370,100220,99120,81.12,0,6.3100000000000005,6.8500000000000005,6.98,7.05,7.1000000000000005,7.13,7.16,7.17,7.2,228.49,228.59,228.62,228.64000000000001,228.65,228.65,228.65,228.65,228.62,28.75,28.400000000000002,28.22,28.02,27.830000000000002,27.64,27.44,27.25,26.87,N/A,N/A -2012,8,2,13,30,101410,100260,99160,79.03,0,5.33,5.73,5.83,5.89,5.93,5.96,5.98,6,6.03,227.02,227.14000000000001,227.24,227.32,227.39000000000001,227.45000000000002,227.52,227.57,227.68,28.8,28.45,28.28,28.080000000000002,27.88,27.69,27.5,27.310000000000002,26.92,N/A,N/A -2012,8,2,14,30,101430,100290,99180,77.56,0,5.6000000000000005,6.03,6.13,6.17,6.21,6.23,6.25,6.26,6.2700000000000005,226.23000000000002,226.07,226.01,225.94,225.87,225.81,225.74,225.68,225.55,28.89,28.54,28.37,28.17,27.98,27.79,27.59,27.400000000000002,27.02,N/A,N/A -2012,8,2,15,30,101450,100310,99200,76.54,0,5.11,5.5,5.6000000000000005,5.66,5.69,5.73,5.75,5.7700000000000005,5.8,225.61,225.72,225.71,225.68,225.66,225.62,225.58,225.55,225.46,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.04,N/A,N/A -2012,8,2,16,30,101470,100320,99210,73.79,0,4.68,5.01,5.08,5.12,5.15,5.18,5.19,5.21,5.24,220.66,220.64000000000001,220.65,220.67000000000002,220.68,220.68,220.69,220.70000000000002,220.71,29,28.66,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A -2012,8,2,17,30,101430,100290,99180,71.66,0,4.86,5.19,5.25,5.28,5.29,5.3,5.3,5.3,5.29,223.45000000000002,223.44,223.38,223.3,223.22,223.14000000000001,223.06,223,222.83,29.16,28.810000000000002,28.64,28.44,28.25,28.060000000000002,27.86,27.68,27.29,N/A,N/A -2012,8,2,18,30,101400,100250,99150,69.17,0,5.3500000000000005,5.72,5.7700000000000005,5.79,5.8,5.8,5.8,5.79,5.7700000000000005,206.63,206.44,206.33,206.21,206.09,205.98000000000002,205.87,205.76,205.55,29.27,28.93,28.76,28.560000000000002,28.37,28.19,27.990000000000002,27.810000000000002,27.43,N/A,N/A -2012,8,2,19,30,101380,100240,99130,72.03,0,5.54,5.95,6.0200000000000005,6.0600000000000005,6.08,6.09,6.09,6.1000000000000005,6.09,196.97,196.89000000000001,196.86,196.83,196.8,196.77,196.74,196.72,196.66,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.94,27.76,27.38,N/A,N/A -2012,8,2,20,30,101340,100200,99100,68.71000000000001,0,6.3500000000000005,6.84,6.92,6.95,6.96,6.97,6.96,6.95,6.92,197.8,197.65,197.61,197.54,197.48000000000002,197.42000000000002,197.35,197.29,197.14000000000001,29.36,29.04,28.88,28.68,28.490000000000002,28.310000000000002,28.11,27.93,27.55,N/A,N/A -2012,8,2,21,30,101300,100160,99050,71.13,0,5.99,6.44,6.51,6.54,6.55,6.55,6.55,6.54,6.51,194.21,193.99,193.88,193.78,193.69,193.6,193.51,193.43,193.26,29.240000000000002,28.92,28.75,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.43,N/A,N/A -2012,8,2,22,30,101260,100120,99010,71.74,0,6.59,7.12,7.21,7.25,7.28,7.28,7.28,7.28,7.26,197.95000000000002,197.84,197.79,197.72,197.65,197.58,197.5,197.42000000000002,197.24,29.21,28.89,28.73,28.53,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,2,23,30,101220,100080,98970,69.66,0,5.8,6.23,6.3100000000000005,6.34,6.3500000000000005,6.3500000000000005,6.3500000000000005,6.34,6.32,192.59,192.8,192.93,193.05,193.16,193.27,193.39000000000001,193.5,193.74,29.25,28.94,28.77,28.580000000000002,28.39,28.21,28.01,27.830000000000002,27.46,N/A,N/A -2012,8,3,0,30,101200,100060,98950,73.85000000000001,0,5.92,6.37,6.46,6.51,6.53,6.55,6.5600000000000005,6.5600000000000005,6.5600000000000005,191.73000000000002,191.74,191.76,191.8,191.84,191.88,191.93,191.97,192.09,29.060000000000002,28.740000000000002,28.57,28.38,28.19,28.01,27.82,27.63,27.26,N/A,N/A -2012,8,3,1,30,101170,100030,98920,70.71000000000001,0,5.83,6.26,6.34,6.37,6.390000000000001,6.4,6.41,6.41,6.4,190.93,191.08,191.21,191.35,191.49,191.62,191.77,191.9,192.22,29.150000000000002,28.830000000000002,28.66,28.47,28.28,28.1,27.900000000000002,27.72,27.35,N/A,N/A -2012,8,3,2,30,101180,100040,98940,71.12,0,6.47,7.01,7.12,7.17,7.2,7.23,7.24,7.25,7.26,193.79,193.58,193.43,193.28,193.16,193.04,192.92000000000002,192.81,192.59,29.16,28.84,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,8,3,3,30,101180,100040,98930,79.33,0,6.12,6.61,6.72,6.78,6.82,6.8500000000000005,6.88,6.9,6.93,198.74,198.44,198.27,198.09,197.92000000000002,197.77,197.61,197.45000000000002,197.13,28.79,28.44,28.26,28.060000000000002,27.87,27.68,27.48,27.3,26.92,N/A,N/A -2012,8,3,4,30,101170,100040,98930,80.41,0,6.140000000000001,6.57,6.68,6.74,6.78,6.8100000000000005,6.83,6.8500000000000005,6.890000000000001,200.94,200.06,199.67000000000002,199.35,199.08,198.84,198.63,198.44,198.12,28.830000000000002,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.37,27,N/A,N/A -2012,8,3,5,30,101140,100000,98900,78.60000000000001,0,7.29,7.890000000000001,8.01,8.06,8.09,8.11,8.11,8.11,8.09,194.43,194.47,194.52,194.57,194.61,194.66,194.69,194.73000000000002,194.8,28.91,28.560000000000002,28.38,28.18,27.990000000000002,27.79,27.6,27.41,27.03,N/A,N/A -2012,8,3,6,30,101140,100000,98900,80.36,0,7.07,7.69,7.83,7.91,7.97,8.01,8.040000000000001,8.06,8.1,194.75,194.69,194.67000000000002,194.65,194.63,194.62,194.62,194.62,194.61,28.86,28.51,28.330000000000002,28.13,27.94,27.75,27.55,27.36,26.98,N/A,N/A -2012,8,3,7,30,101150,100010,98910,82.65,0,6.84,7.43,7.57,7.640000000000001,7.7,7.74,7.7700000000000005,7.79,7.83,204.92000000000002,204.9,204.86,204.81,204.76,204.70000000000002,204.65,204.59,204.46,28.82,28.46,28.29,28.09,27.900000000000002,27.71,27.51,27.32,26.94,N/A,N/A -2012,8,3,8,30,101190,100050,98950,81.35000000000001,0,7.01,7.61,7.73,7.79,7.84,7.86,7.88,7.9,7.91,195.1,195.35,195.45000000000002,195.56,195.67000000000002,195.78,195.89000000000001,196,196.23000000000002,28.87,28.52,28.34,28.14,27.95,27.76,27.57,27.38,27,N/A,N/A -2012,8,3,9,30,101180,100040,98940,85.12,0,7.3,7.99,8.16,8.26,8.33,8.39,8.44,8.47,8.540000000000001,199.36,199.42000000000002,199.42000000000002,199.44,199.44,199.45000000000002,199.46,199.46,199.48000000000002,28.84,28.48,28.310000000000002,28.11,27.92,27.73,27.53,27.34,26.96,N/A,N/A -2012,8,3,10,30,101180,100040,98940,83.62,0,7.3500000000000005,8.040000000000001,8.17,8.24,8.28,8.3,8.32,8.32,8.31,205.91,205.98000000000002,205.99,205.98000000000002,205.94,205.9,205.84,205.79,205.64000000000001,29.18,28.84,28.66,28.47,28.27,28.09,27.89,27.71,27.32,N/A,N/A -2012,8,3,11,30,101260,100120,99020,83.46000000000001,0,7.75,8.49,8.66,8.75,8.81,8.85,8.88,8.9,8.93,209.74,209.87,209.94,210,210.05,210.09,210.13,210.16,210.22,29.14,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.68,27.3,N/A,N/A -2012,8,3,12,30,101290,100150,99040,81.42,0,7.43,8.1,8.26,8.36,8.42,8.46,8.49,8.51,8.540000000000001,205.19,205.31,205.37,205.41,205.45000000000002,205.48000000000002,205.51,205.53,205.58,29.150000000000002,28.810000000000002,28.650000000000002,28.44,28.26,28.07,27.87,27.68,27.310000000000002,N/A,N/A -2012,8,3,13,30,101320,100180,99080,80.84,0,6.79,7.42,7.5600000000000005,7.640000000000001,7.7,7.74,7.7700000000000005,7.79,7.82,199.34,199.3,199.35,199.4,199.45000000000002,199.5,199.56,199.61,199.72,29.14,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A -2012,8,3,14,30,101350,100210,99110,80.72,0,6.17,6.72,6.84,6.91,6.96,6.99,7.0200000000000005,7.04,7.07,207.57,207.48000000000002,207.49,207.5,207.51,207.53,207.54,207.54,207.57,29.19,28.85,28.68,28.490000000000002,28.3,28.11,27.91,27.73,27.35,N/A,N/A -2012,8,3,15,30,101380,100240,99130,82.16,0,5.44,5.92,6.05,6.13,6.21,6.2700000000000005,6.32,6.37,6.45,213.32,214.88,215.57,216.16,216.65,217.09,217.48000000000002,217.82,218.43,29.09,28.75,28.580000000000002,28.39,28.2,28.01,27.82,27.64,27.26,N/A,N/A -2012,8,3,16,30,101400,100260,99160,77.01,0,7.01,7.57,7.65,7.68,7.68,7.66,7.640000000000001,7.61,7.53,221.83,222,222.1,222.21,222.3,222.38,222.46,222.53,222.67000000000002,29.310000000000002,28.990000000000002,28.82,28.62,28.43,28.240000000000002,28.05,27.86,27.48,N/A,N/A -2012,8,3,17,30,101420,100280,99170,76.8,0,5.96,6.41,6.5,6.54,6.57,6.59,6.6000000000000005,6.6000000000000005,6.6000000000000005,223.84,223.9,223.92000000000002,223.95000000000002,223.96,223.97,223.99,224.01,224.03,29.23,28.89,28.72,28.52,28.330000000000002,28.150000000000002,27.95,27.76,27.39,N/A,N/A -2012,8,3,18,30,101380,100240,99140,76.94,0,4.91,5.2700000000000005,5.3500000000000005,5.39,5.42,5.45,5.47,5.49,5.53,221.88,221.79,221.8,221.8,221.78,221.76,221.73000000000002,221.70000000000002,221.63,29.240000000000002,28.900000000000002,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,3,19,30,101390,100250,99140,74.69,0,4.84,5.22,5.29,5.34,5.37,5.4,5.43,5.44,5.48,214.33,214.42000000000002,214.43,214.44,214.44,214.44,214.44,214.44,214.42000000000002,29.310000000000002,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A -2012,8,3,20,30,101330,100190,99080,73.61,0,5.26,5.65,5.73,5.76,5.79,5.8100000000000005,5.82,5.84,5.8500000000000005,205.18,205.20000000000002,205.24,205.25,205.27,205.28,205.29,205.3,205.31,29.35,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A -2012,8,3,21,30,101330,100190,99080,75.65,0,4.98,5.34,5.41,5.44,5.46,5.47,5.48,5.48,5.49,200.44,200.54,200.56,200.58,200.61,200.63,200.65,200.68,200.74,29.27,28.94,28.77,28.57,28.38,28.19,28,27.82,27.44,N/A,N/A -2012,8,3,22,30,101320,100180,99070,74.94,0,4.41,4.71,4.76,4.78,4.79,4.8,4.8,4.8,4.79,195.48000000000002,195.27,195.12,194.96,194.8,194.63,194.46,194.3,193.95000000000002,29.32,29,28.830000000000002,28.64,28.45,28.26,28.060000000000002,27.88,27.5,N/A,N/A -2012,8,3,23,30,101270,100130,99020,74.64,0,4.8100000000000005,5.15,5.21,5.23,5.24,5.25,5.25,5.25,5.24,183.36,182.76,182.44,182.13,181.83,181.53,181.21,180.93,180.29,29.29,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A -2012,8,4,0,30,101200,100060,98960,76.22,0,5.14,5.54,5.61,5.65,5.67,5.69,5.7,5.71,5.72,188.86,188.70000000000002,188.63,188.58,188.51,188.45000000000002,188.39000000000001,188.34,188.21,29.16,28.830000000000002,28.66,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,8,4,1,30,101190,100050,98940,79.44,0,5.1000000000000005,5.48,5.55,5.58,5.6000000000000005,5.62,5.63,5.64,5.65,181.37,181.16,181.02,180.86,180.70000000000002,180.55,180.39000000000001,180.24,179.93,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,8,4,2,30,101260,100110,99010,79.10000000000001,0,5.58,6.01,6.09,6.13,6.16,6.17,6.18,6.19,6.19,168.09,168.26,168.33,168.41,168.49,168.56,168.63,168.70000000000002,168.84,29.12,28.79,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A -2012,8,4,3,30,101260,100120,99010,80.41,0,5.21,5.6000000000000005,5.67,5.71,5.74,5.76,5.7700000000000005,5.78,5.8,168.48,168.32,168.28,168.22,168.17000000000002,168.12,168.06,168,167.88,29.05,28.71,28.54,28.34,28.150000000000002,27.97,27.77,27.580000000000002,27.2,N/A,N/A -2012,8,4,4,30,101230,100090,98990,82.06,0,5.67,6.13,6.23,6.29,6.33,6.36,6.390000000000001,6.41,6.45,170.67000000000002,170.61,170.48,170.36,170.27,170.17000000000002,170.07,169.99,169.8,28.990000000000002,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.71,27.52,27.14,N/A,N/A -2012,8,4,5,30,101270,100130,99020,82.82000000000001,0,6.5,7.1000000000000005,7.23,7.32,7.38,7.43,7.46,7.5,7.54,176.08,175.94,175.91,175.88,175.85,175.81,175.78,175.75,175.69,29.05,28.72,28.54,28.34,28.150000000000002,27.97,27.77,27.580000000000002,27.2,N/A,N/A -2012,8,4,6,30,101290,100150,99050,79.96000000000001,0,7.3,7.96,8.08,8.15,8.19,8.22,8.23,8.24,8.24,189.57,189.62,189.61,189.61,189.6,189.59,189.57,189.56,189.54,29.09,28.75,28.580000000000002,28.39,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A -2012,8,4,7,30,101350,100200,99100,83.73,0,6.49,7.05,7.18,7.25,7.3100000000000005,7.3500000000000005,7.38,7.41,7.45,184.88,184.84,184.9,184.96,185.01,185.05,185.1,185.15,185.24,28.89,28.54,28.37,28.17,27.98,27.79,27.6,27.41,27.03,N/A,N/A -2012,8,4,8,30,101350,100210,99110,79.35000000000001,0,7.48,8.13,8.26,8.3,8.33,8.34,8.34,8.33,8.3,191.72,191.54,191.4,191.26,191.12,190.99,190.85,190.71,190.42000000000002,29.12,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.29,N/A,N/A -2012,8,4,9,30,101360,100220,99110,78.58,0,6.640000000000001,7.25,7.390000000000001,7.47,7.54,7.58,7.61,7.640000000000001,7.69,193.17000000000002,193.54,193.66,193.75,193.83,193.9,193.95000000000002,194.01,194.1,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.2,N/A,N/A -2012,8,4,10,30,101410,100270,99160,77.88,0,6.44,6.99,7.09,7.15,7.18,7.21,7.22,7.23,7.24,197.8,197.77,197.72,197.64000000000001,197.57,197.49,197.41,197.33,197.16,29.03,28.69,28.52,28.330000000000002,28.14,27.95,27.75,27.560000000000002,27.18,N/A,N/A -2012,8,4,11,30,101440,100300,99190,78.60000000000001,0,5.98,6.46,6.5600000000000005,6.61,6.640000000000001,6.67,6.68,6.69,6.7,200.22,199.96,199.82,199.69,199.57,199.46,199.35,199.24,199.03,28.97,28.64,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A -2012,8,4,12,30,101490,100350,99240,78.42,0,4.95,5.32,5.39,5.43,5.46,5.48,5.49,5.51,5.5200000000000005,203.82,203.63,203.47,203.3,203.13,202.97,202.8,202.64000000000001,202.3,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,8,4,13,30,101510,100370,99260,77.12,0,4.73,5.09,5.16,5.19,5.22,5.23,5.25,5.26,5.2700000000000005,208.85,208.84,208.77,208.70000000000002,208.64000000000001,208.59,208.53,208.48000000000002,208.36,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.72,27.54,27.150000000000002,N/A,N/A -2012,8,4,14,30,101590,100440,99330,76.46000000000001,0,3.3200000000000003,3.5500000000000003,3.59,3.61,3.63,3.64,3.65,3.66,3.67,210.81,210.19,209.81,209.42000000000002,209.08,208.74,208.4,208.08,207.42000000000002,29.060000000000002,28.73,28.560000000000002,28.37,28.18,27.98,27.79,27.6,27.22,N/A,N/A -2012,8,4,15,30,101580,100430,99320,76.84,0,3.11,3.2800000000000002,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,3.31,212.56,212.31,212.1,211.89000000000001,211.69,211.49,211.3,211.12,210.75,29.02,28.69,28.51,28.32,28.13,27.94,27.740000000000002,27.560000000000002,27.17,N/A,N/A -2012,8,4,16,30,101610,100460,99350,75.59,0,2.25,2.36,2.37,2.38,2.39,2.4,2.4,2.4,2.41,202.63,202.61,202.6,202.58,202.55,202.52,202.48000000000002,202.45000000000002,202.34,29.080000000000002,28.73,28.560000000000002,28.36,28.17,27.98,27.79,27.6,27.22,N/A,N/A -2012,8,4,17,30,101610,100470,99360,75.53,0,1.82,1.9000000000000001,1.9100000000000001,1.9100000000000001,1.92,1.92,1.92,1.93,1.93,188.16,187.76,187.54,187.3,187.09,186.88,186.68,186.48,186.08,29.14,28.79,28.62,28.42,28.23,28.04,27.84,27.66,27.27,N/A,N/A -2012,8,4,18,30,101590,100440,99330,75.66,0,2.68,2.82,2.84,2.85,2.86,2.87,2.87,2.88,2.89,170.25,169.93,169.82,169.71,169.62,169.53,169.44,169.36,169.17000000000002,29.22,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,8,4,19,30,101600,100460,99350,75.78,0,2.66,2.7800000000000002,2.8000000000000003,2.82,2.83,2.84,2.84,2.84,2.85,164.34,163.78,163.44,163.12,162.82,162.53,162.23,161.95000000000002,161.38,29.310000000000002,28.95,28.77,28.57,28.38,28.19,28,27.810000000000002,27.43,N/A,N/A -2012,8,4,20,30,101570,100420,99320,75.02,0,3.73,3.94,3.97,3.98,3.99,3.99,3.99,3.99,3.99,154.63,154.88,154.98,155.09,155.20000000000002,155.31,155.43,155.53,155.76,29.41,29.05,28.88,28.68,28.490000000000002,28.3,28.1,27.91,27.53,N/A,N/A -2012,8,4,21,30,101570,100420,99320,76.5,0,4.47,4.72,4.75,4.75,4.75,4.75,4.74,4.73,4.71,150.01,150.78,151.13,151.49,151.81,152.13,152.45000000000002,152.74,153.34,29.28,28.93,28.76,28.560000000000002,28.37,28.18,27.990000000000002,27.8,27.42,N/A,N/A -2012,8,4,22,30,101550,100410,99300,77.78,0,5.53,5.92,5.99,6.03,6.05,6.07,6.07,6.08,6.08,155.23,155.44,155.51,155.57,155.63,155.70000000000002,155.77,155.83,155.97,29.18,28.85,28.68,28.48,28.3,28.1,27.91,27.72,27.35,N/A,N/A -2012,8,4,23,30,101530,100390,99280,78.43,0,5.11,5.62,5.73,5.8,5.86,5.9,5.92,5.95,5.98,156.08,155.93,155.91,155.87,155.85,155.83,155.82,155.81,155.79,29.330000000000002,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A -2012,8,5,0,30,101510,100370,99260,78.37,0,6.26,6.8100000000000005,6.92,6.99,7.03,7.07,7.09,7.1000000000000005,7.13,149.47,149.35,149.31,149.27,149.24,149.21,149.19,149.16,149.11,29.19,28.87,28.7,28.51,28.32,28.13,27.94,27.75,27.37,N/A,N/A -2012,8,5,1,30,101520,100370,99260,79.9,0,6.3100000000000005,6.8500000000000005,6.96,7.03,7.07,7.09,7.11,7.12,7.140000000000001,152.79,152.87,152.97,153.06,153.15,153.23,153.31,153.38,153.54,29.07,28.740000000000002,28.57,28.37,28.18,27.990000000000002,27.79,27.61,27.22,N/A,N/A -2012,8,5,2,30,101600,100450,99340,78.23,0,5.53,6.01,6.12,6.18,6.23,6.2700000000000005,6.3,6.32,6.36,148.35,148.25,148.25,148.25,148.25,148.25,148.26,148.26,148.27,29.12,28.79,28.62,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A -2012,8,5,3,30,101620,100480,99370,77.96000000000001,0,5.42,5.82,5.88,5.9,5.91,5.91,5.9,5.89,5.86,137.77,137.85,137.86,137.86,137.85,137.84,137.83,137.83,137.82,29.02,28.69,28.52,28.330000000000002,28.14,27.94,27.75,27.560000000000002,27.18,N/A,N/A -2012,8,5,4,30,101630,100490,99380,74.83,0,3.92,4.14,4.16,4.17,4.16,4.15,4.14,4.13,4.1,140.29,140.27,140.21,140.15,140.09,140.04,139.98,139.92000000000002,139.81,29,28.67,28.5,28.310000000000002,28.11,27.93,27.73,27.54,27.16,N/A,N/A -2012,8,5,5,30,101660,100510,99400,76.14,0,3.2800000000000002,3.48,3.52,3.54,3.5500000000000003,3.56,3.56,3.56,3.56,138.09,138.46,138.70000000000002,138.92000000000002,139.12,139.32,139.5,139.67000000000002,140.03,28.93,28.6,28.43,28.23,28.04,27.86,27.66,27.47,27.09,N/A,N/A -2012,8,5,6,30,101660,100510,99400,76.4,0,4.58,4.86,4.91,4.92,4.92,4.91,4.9,4.89,4.86,146.8,146.69,146.65,146.6,146.54,146.49,146.42000000000002,146.36,146.24,28.87,28.54,28.37,28.17,27.98,27.79,27.59,27.400000000000002,27.02,N/A,N/A -2012,8,5,7,30,101660,100510,99400,78.01,0,5.7700000000000005,6.23,6.3100000000000005,6.36,6.390000000000001,6.4,6.41,6.41,6.41,152.45000000000002,152.59,152.68,152.76,152.84,152.91,152.97,153.04,153.17000000000002,28.8,28.45,28.28,28.080000000000002,27.89,27.69,27.5,27.310000000000002,26.92,N/A,N/A -2012,8,5,8,30,101680,100530,99420,75.63,0,4.21,4.46,4.5200000000000005,4.55,4.57,4.59,4.6000000000000005,4.61,4.62,156.52,156.52,156.46,156.38,156.31,156.22,156.13,156.03,155.84,28.76,28.42,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A -2012,8,5,9,30,101720,100570,99460,77.39,0,3.74,3.96,3.98,3.99,4,3.99,3.99,3.98,3.96,160.67000000000002,160.8,160.89000000000001,160.98,161.07,161.15,161.24,161.32,161.51,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.82,N/A,N/A -2012,8,5,10,30,101750,100600,99490,71.73,0,2.6,2.7800000000000002,2.81,2.83,2.85,2.86,2.87,2.89,2.91,169.46,169.29,169.23,169.15,169.06,168.98,168.89000000000001,168.82,168.62,28.86,28.54,28.37,28.17,27.98,27.79,27.59,27.41,27.02,N/A,N/A -2012,8,5,11,30,101770,100620,99510,76.67,0,2.27,2.37,2.37,2.36,2.36,2.35,2.34,2.33,2.3000000000000003,153.58,154.04,154.33,154.6,154.85,155.07,155.29,155.48,155.85,28.63,28.3,28.12,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A -2012,8,5,12,30,101810,100660,99550,75.58,0,1.19,1.24,1.24,1.25,1.25,1.25,1.24,1.24,1.24,99.37,100.99000000000001,101.99000000000001,102.95,103.8,104.59,105.38,106.12,107.58,28.64,28.310000000000002,28.13,27.93,27.740000000000002,27.55,27.36,27.17,26.79,N/A,N/A -2012,8,5,13,30,101850,100700,99580,75.69,0,1.37,1.3900000000000001,1.3900000000000001,1.37,1.36,1.35,1.34,1.32,1.3,56.29,57.550000000000004,58.27,59,59.7,60.370000000000005,61.050000000000004,61.67,63.09,28.61,28.28,28.1,27.900000000000002,27.72,27.53,27.330000000000002,27.14,26.76,N/A,N/A -2012,8,5,14,30,101870,100720,99610,75.74,0,2.21,2.2800000000000002,2.27,2.2600000000000002,2.25,2.23,2.22,2.2,2.17,60.27,60.17,60.14,60.1,60.07,60.03,59.980000000000004,59.92,59.77,28.62,28.28,28.1,27.900000000000002,27.71,27.52,27.32,27.14,26.75,N/A,N/A -2012,8,5,15,30,101910,100760,99640,75,0,2.83,2.95,2.96,2.96,2.95,2.95,2.94,2.93,2.9,54.54,54.96,55.08,55.2,55.300000000000004,55.410000000000004,55.51,55.61,55.79,28.68,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.37,27.18,26.8,N/A,N/A -2012,8,5,16,30,101940,100790,99680,75.73,0,3.44,3.59,3.6,3.6,3.59,3.58,3.56,3.5500000000000003,3.52,67.85,68.16,68.23,68.31,68.39,68.47,68.55,68.63,68.81,28.69,28.330000000000002,28.150000000000002,27.96,27.76,27.57,27.38,27.19,26.810000000000002,N/A,N/A -2012,8,5,17,30,101920,100760,99650,73.27,0,2.95,3.11,3.13,3.14,3.15,3.15,3.15,3.15,3.14,95.19,95.84,96.08,96.33,96.58,96.82000000000001,97.08,97.32000000000001,97.85000000000001,28.79,28.43,28.26,28.060000000000002,27.86,27.68,27.48,27.29,26.91,N/A,N/A -2012,8,5,18,30,101890,100740,99620,74.22,0,4.0600000000000005,4.29,4.33,4.3500000000000005,4.36,4.37,4.38,4.38,4.38,111.49000000000001,111.75,111.91,112.08,112.24000000000001,112.39,112.56,112.72,113.05,28.85,28.48,28.310000000000002,28.11,27.92,27.73,27.53,27.35,26.97,N/A,N/A -2012,8,5,19,30,101870,100720,99610,77.29,0,3.7600000000000002,3.95,3.96,3.96,3.95,3.93,3.92,3.9,3.86,133.37,133.52,133.59,133.65,133.7,133.75,133.8,133.85,133.95,28.8,28.44,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A -2012,8,5,20,30,101850,100700,99590,76.4,0,2.81,2.93,2.94,2.94,2.93,2.91,2.9,2.88,2.85,132.29,131.97,131.76,131.55,131.35,131.14000000000001,130.92000000000002,130.72,130.26,28.86,28.5,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A -2012,8,5,21,30,101830,100680,99560,73.73,0,3.63,3.83,3.86,3.87,3.88,3.89,3.89,3.89,3.88,147.06,147.14000000000001,147.12,147.13,147.13,147.14000000000001,147.16,147.18,147.23,28.96,28.6,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.080000000000002,N/A,N/A -2012,8,5,22,30,101780,100630,99520,71.92,0,3.5700000000000003,3.7800000000000002,3.8200000000000003,3.84,3.85,3.86,3.86,3.87,3.87,171.99,171.56,171.18,170.83,170.49,170.17000000000002,169.84,169.54,168.89000000000001,28.98,28.64,28.48,28.28,28.09,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A -2012,8,5,23,30,101750,100600,99490,72.99,0,3.46,3.66,3.68,3.69,3.69,3.69,3.69,3.68,3.67,183.64000000000001,183.92000000000002,184.1,184.28,184.45000000000002,184.6,184.75,184.89000000000001,185.15,28.900000000000002,28.57,28.400000000000002,28.21,28.02,27.84,27.650000000000002,27.47,27.1,N/A,N/A -2012,8,6,0,30,101720,100570,99460,72.81,0,3.5100000000000002,3.7,3.72,3.72,3.72,3.71,3.7,3.69,3.66,172.67000000000002,172.4,172.18,171.96,171.74,171.53,171.28,171.05,170.45000000000002,28.86,28.53,28.36,28.17,27.98,27.8,27.61,27.43,27.060000000000002,N/A,N/A -2012,8,6,1,30,101700,100550,99440,67.92,0,2.49,2.63,2.65,2.66,2.67,2.67,2.68,2.68,2.69,183.83,183.65,183.35,183.01,182.64000000000001,182.26,181.74,181.22,179.75,29.080000000000002,28.77,28.61,28.42,28.240000000000002,28.060000000000002,27.87,27.7,27.35,N/A,N/A -2012,8,6,2,30,101710,100560,99450,70.99,0,3.2,3.37,3.38,3.39,3.38,3.38,3.38,3.37,3.35,191.92000000000002,191.06,190.64000000000001,190.21,189.77,189.33,188.83,188.36,187.22,28.95,28.63,28.46,28.27,28.080000000000002,27.900000000000002,27.71,27.54,27.17,N/A,N/A -2012,8,6,3,30,101730,100580,99460,70.67,0,3.3000000000000003,3.48,3.5,3.5100000000000002,3.52,3.52,3.52,3.52,3.5100000000000002,183.18,182.84,182.58,182.3,182.01,181.70000000000002,181.35,181,180.09,28.91,28.59,28.42,28.23,28.04,27.86,27.67,27.48,27.11,N/A,N/A -2012,8,6,4,30,101720,100570,99460,71.2,0,3.08,3.24,3.27,3.27,3.2800000000000002,3.27,3.27,3.27,3.2600000000000002,186.02,185.5,185.23,184.94,184.64000000000001,184.33,183.98,183.65,182.82,28.87,28.55,28.38,28.19,28,27.810000000000002,27.62,27.44,27.07,N/A,N/A -2012,8,6,5,30,101720,100570,99460,66.73,0,2.92,3.11,3.13,3.15,3.16,3.17,3.17,3.18,3.2,189.54,189.29,189.08,188.87,188.65,188.42000000000002,188.15,187.88,187.18,29.1,28.79,28.62,28.43,28.25,28.060000000000002,27.87,27.69,27.32,N/A,N/A -2012,8,6,6,30,101720,100570,99460,69.28,0,2.43,2.52,2.52,2.52,2.5100000000000002,2.5,2.49,2.48,2.44,199.67000000000002,199.44,199.22,198.99,198.76,198.53,198.25,197.99,197.3,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.17,N/A,N/A -2012,8,6,7,30,101720,100570,99460,67.98,0,2.38,2.49,2.5,2.5,2.5,2.49,2.49,2.48,2.47,206.05,205.77,205.62,205.46,205.27,205.08,204.85,204.64000000000001,204.08,29.02,28.69,28.52,28.330000000000002,28.13,27.95,27.75,27.57,27.19,N/A,N/A -2012,8,6,8,30,101750,100600,99490,70.35000000000001,0,2.23,2.3000000000000003,2.3000000000000003,2.29,2.29,2.27,2.2600000000000002,2.25,2.22,241.22,241.06,240.89000000000001,240.70000000000002,240.54,240.38,240.20000000000002,240.03,239.66,28.89,28.560000000000002,28.39,28.2,28.01,27.82,27.63,27.44,27.060000000000002,N/A,N/A -2012,8,6,9,30,101750,100600,99480,69.21000000000001,0,2.65,2.7600000000000002,2.77,2.77,2.77,2.77,2.7600000000000002,2.75,2.73,236.76,236.45000000000002,236.35,236.25,236.14000000000001,236.03,235.92000000000002,235.82,235.57,28.92,28.580000000000002,28.41,28.22,28.03,27.84,27.650000000000002,27.46,27.080000000000002,N/A,N/A -2012,8,6,10,30,101750,100600,99490,72.48,0,2.5500000000000003,2.65,2.66,2.65,2.64,2.63,2.62,2.61,2.58,243.42000000000002,243.4,243.32,243.24,243.16,243.09,243,242.92000000000002,242.75,28.71,28.37,28.2,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A -2012,8,6,11,30,101770,100620,99510,80.41,0,3.63,3.63,3.54,3.43,3.33,3.23,3.12,3.0300000000000002,2.83,301,299.82,298.96,298.04,297.1,296.18,295.15000000000003,294.2,291.87,28.16,27.8,27.63,27.44,27.26,27.080000000000002,26.89,26.71,26.35,N/A,N/A -2012,8,6,12,30,101780,100620,99510,81.25,0,3.7800000000000002,3.88,3.85,3.79,3.74,3.67,3.6,3.5300000000000002,3.35,319.28000000000003,319.57,319.69,319.8,319.90000000000003,320,320.07,320.13,320.17,27.79,27.400000000000002,27.22,27.03,26.84,26.650000000000002,26.46,26.28,25.91,N/A,N/A -2012,8,6,13,30,101810,100660,99540,82.07000000000001,0,3.77,3.91,3.92,3.9,3.88,3.86,3.83,3.8000000000000003,3.73,322.84000000000003,322.95,323.05,323.15000000000003,323.24,323.33,323.41,323.49,323.63,27.71,27.32,27.13,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A -2012,8,6,14,30,101830,100680,99560,78.75,0,3.24,3.37,3.38,3.37,3.36,3.34,3.33,3.31,3.27,329.44,329.79,329.99,330.18,330.37,330.55,330.74,330.90000000000003,331.27,27.92,27.54,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.02,N/A,N/A -2012,8,6,15,30,101810,100660,99550,76.29,0,2.2800000000000002,2.35,2.35,2.35,2.34,2.33,2.32,2.31,2.29,322.96,324,324.56,325.11,325.64,326.16,326.7,327.23,328.35,28.1,27.73,27.55,27.36,27.16,26.97,26.78,26.6,26.21,N/A,N/A -2012,8,6,16,30,101810,100660,99540,75.06,0,1.42,1.47,1.47,1.47,1.46,1.46,1.46,1.46,1.45,312.07,314.03000000000003,315.15000000000003,316.27,317.32,318.32,319.38,320.38,322.43,28.32,27.95,27.77,27.57,27.38,27.19,27,26.810000000000002,26.43,N/A,N/A -2012,8,6,17,30,101750,100600,99480,73.95,0,0.6,0.59,0.5700000000000001,0.56,0.54,0.52,0.51,0.49,0.44,229.72,230.76,231.02,231.36,231.68,231.98000000000002,232.43,232.88,234.63,28.51,28.150000000000002,27.98,27.79,27.6,27.42,27.23,27.05,26.7,N/A,N/A -2012,8,6,18,30,101730,100580,99470,71.96000000000001,0,2.15,2.19,2.17,2.15,2.12,2.09,2.05,2.0100000000000002,1.92,206.04,206.16,206.29,206.43,206.6,206.8,207.09,207.4,208.45000000000002,28.84,28.48,28.310000000000002,28.11,27.93,27.75,27.560000000000002,27.39,27.04,N/A,N/A -2012,8,6,19,30,101670,100520,99410,71.81,0,3.0300000000000002,3.12,3.1,3.0700000000000003,3.0300000000000002,2.98,2.94,2.88,2.75,200.83,201.13,201.33,201.56,201.79,202.03,202.33,202.62,203.47,29.02,28.650000000000002,28.48,28.29,28.11,27.93,27.740000000000002,27.57,27.23,N/A,N/A -2012,8,6,20,30,101590,100450,99340,70.24,0,4.16,4.33,4.33,4.3,4.2700000000000005,4.23,4.17,4.13,3.98,191.70000000000002,191.96,191.96,191.95000000000002,191.95000000000002,191.94,191.93,191.92000000000002,191.86,29.23,28.87,28.7,28.51,28.330000000000002,28.150000000000002,27.97,27.79,27.46,N/A,N/A -2012,8,6,21,30,101540,100390,99290,70.61,0,4.42,4.63,4.64,4.61,4.58,4.54,4.49,4.43,4.2700000000000005,192.13,192.03,191.95000000000002,191.84,191.70000000000002,191.52,191.29,191.06,190.21,29.27,28.94,28.77,28.580000000000002,28.39,28.21,28.03,27.86,27.51,N/A,N/A -2012,8,6,22,30,101550,100400,99300,70.82000000000001,0,4.71,4.95,4.95,4.92,4.87,4.82,4.74,4.66,4.38,193.78,193.58,193.45000000000002,193.27,193.06,192.83,192.48000000000002,192.11,190.67000000000002,29.35,29.03,28.87,28.68,28.5,28.32,28.14,27.97,27.650000000000002,N/A,N/A -2012,8,6,23,30,101490,100340,99230,72.93,0,5.28,5.57,5.58,5.55,5.49,5.43,5.33,5.24,4.8500000000000005,196.26,195.96,195.79,195.6,195.37,195.13,194.74,194.35,192.5,29.25,28.93,28.76,28.580000000000002,28.400000000000002,28.22,28.04,27.88,27.59,N/A,N/A -2012,8,7,0,30,101500,100360,99250,72.45,0,4.66,4.93,4.94,4.92,4.89,4.86,4.8,4.75,4.59,196.82,196.52,196.37,196.19,195.98000000000002,195.75,195.43,195.1,193.88,29.310000000000002,28.990000000000002,28.82,28.63,28.44,28.26,28.080000000000002,27.900000000000002,27.55,N/A,N/A -2012,8,7,1,30,101440,100300,99190,72.49,0,4.04,4.25,4.2700000000000005,4.25,4.22,4.19,4.15,4.11,3.99,203.36,203.18,202.98000000000002,202.75,202.49,202.22,201.83,201.43,200.08,29.27,28.95,28.78,28.59,28.400000000000002,28.22,28.03,27.85,27.5,N/A,N/A -2012,8,7,2,30,101480,100330,99230,73.28,0,3.67,3.86,3.88,3.87,3.86,3.84,3.81,3.79,3.71,212.21,212.15,212.1,212.01,211.9,211.77,211.58,211.38,210.72,29.23,28.91,28.75,28.55,28.37,28.18,27.990000000000002,27.810000000000002,27.44,N/A,N/A -2012,8,7,3,30,101460,100320,99210,74.18,0,3.9,4.13,4.16,4.17,4.17,4.16,4.15,4.14,4.1,211.06,211.08,210.97,210.87,210.76,210.64000000000001,210.5,210.37,210.01,29.18,28.85,28.68,28.48,28.3,28.11,27.91,27.73,27.35,N/A,N/A -2012,8,7,4,30,101430,100290,99180,74.89,0,2.36,2.45,2.46,2.45,2.45,2.44,2.43,2.42,2.39,217.43,217.27,216.96,216.62,216.27,215.93,215.53,215.15,214.21,29.07,28.740000000000002,28.57,28.38,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A -2012,8,7,5,30,101420,100270,99170,76.3,0,2.93,3.06,3.0700000000000003,3.0700000000000003,3.06,3.0500000000000003,3.04,3.02,2.99,242.3,242.11,242.08,242.05,242.02,241.99,241.96,241.93,241.84,28.96,28.63,28.46,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A -2012,8,7,6,30,101440,100300,99190,75.38,0,2.19,2.2600000000000002,2.2600000000000002,2.24,2.23,2.22,2.2,2.19,2.15,222.01,221.73000000000002,221.67000000000002,221.58,221.48000000000002,221.38,221.24,221.11,220.82,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,8,7,7,30,101420,100280,99170,73.92,0,2.05,2.14,2.15,2.14,2.14,2.14,2.13,2.13,2.11,255.02,254.88,254.89000000000001,254.89000000000001,254.87,254.85,254.81,254.78,254.67000000000002,28.95,28.62,28.45,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A -2012,8,7,8,30,101430,100280,99180,73.45,0,1.54,1.61,1.61,1.61,1.61,1.61,1.61,1.61,1.61,246.77,246.95000000000002,247.1,247.22,247.35,247.47,247.58,247.68,247.93,28.97,28.64,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A -2012,8,7,9,30,101450,100300,99190,74.64,0,1.47,1.52,1.52,1.51,1.51,1.5,1.49,1.49,1.47,249.27,249.34,249.56,249.76000000000002,249.93,250.08,250.24,250.39000000000001,250.66,28.900000000000002,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A -2012,8,7,10,30,101460,100310,99210,75.29,0,1.71,1.78,1.78,1.78,1.78,1.78,1.78,1.77,1.76,238.27,237.8,237.63,237.46,237.3,237.14000000000001,236.99,236.86,236.58,28.85,28.51,28.34,28.150000000000002,27.96,27.77,27.57,27.39,27,N/A,N/A -2012,8,7,11,30,101450,100300,99190,76.64,0,1.96,2.0300000000000002,2.0300000000000002,2.0300000000000002,2.02,2.0100000000000002,2.0100000000000002,2,1.98,257.26,257.3,257.3,257.29,257.3,257.32,257.32,257.32,257.32,28.72,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,8,7,12,30,101470,100320,99210,78.57000000000001,0,1.6400000000000001,1.68,1.68,1.67,1.6600000000000001,1.6500000000000001,1.6400000000000001,1.6300000000000001,1.61,309.82,309.82,309.66,309.51,309.35,309.19,309.03000000000003,308.88,308.56,28.650000000000002,28.310000000000002,28.13,27.94,27.75,27.560000000000002,27.36,27.18,26.79,N/A,N/A -2012,8,7,13,30,101480,100340,99230,81.87,0,2.5500000000000003,2.5300000000000002,2.47,2.4,2.33,2.2600000000000002,2.2,2.13,2,319.27,319.7,319.87,320.06,320.25,320.44,320.67,320.89,321.40000000000003,28.34,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.05,26.86,26.490000000000002,N/A,N/A -2012,8,7,14,30,101510,100360,99250,81.79,0,1.68,1.68,1.6600000000000001,1.6300000000000001,1.6,1.57,1.54,1.5,1.44,303.3,303.02,302.96,302.89,302.83,302.77,302.69,302.62,302.45,28.29,27.93,27.75,27.560000000000002,27.36,27.18,26.98,26.8,26.42,N/A,N/A -2012,8,7,15,30,101510,100370,99260,81.92,0,1.3800000000000001,1.37,1.34,1.3,1.27,1.24,1.2,1.17,1.09,304.74,305.27,305.58,305.91,306.22,306.51,306.85,307.18,307.96,28.3,27.93,27.75,27.560000000000002,27.36,27.18,26.98,26.8,26.42,N/A,N/A -2012,8,7,16,30,101510,100360,99260,81.13,0,1.1400000000000001,1.1500000000000001,1.1400000000000001,1.12,1.1,1.09,1.07,1.05,1.01,293.96,294.03000000000003,294.11,294.21,294.3,294.38,294.44,294.49,294.52,28.45,28.09,27.91,27.72,27.52,27.330000000000002,27.14,26.96,26.580000000000002,N/A,N/A -2012,8,7,17,30,101480,100340,99230,80.64,0,1.25,1.27,1.25,1.24,1.23,1.21,1.2,1.18,1.1500000000000001,235.61,235.39000000000001,235.13,234.86,234.55,234.22,233.83,233.44,232.36,28.64,28.27,28.09,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.77,N/A,N/A -2012,8,7,18,30,101470,100320,99220,79.29,0,2.42,2.5,2.49,2.48,2.46,2.44,2.41,2.39,2.33,212.72,212.29,212.1,211.89000000000001,211.66,211.41,211.11,210.82,210,28.88,28.52,28.34,28.150000000000002,27.96,27.78,27.59,27.41,27.05,N/A,N/A -2012,8,7,19,30,101430,100290,99180,78,0,2.82,2.92,2.92,2.91,2.89,2.87,2.85,2.83,2.77,209.67000000000002,209.33,209.05,208.74,208.44,208.15,207.8,207.44,206.63,29.09,28.72,28.55,28.35,28.16,27.97,27.78,27.6,27.23,N/A,N/A -2012,8,7,20,30,101400,100260,99160,77.74,0,3.46,3.61,3.62,3.62,3.61,3.6,3.59,3.5700000000000003,3.5300000000000002,197.8,197.41,197.22,197,196.78,196.56,196.31,196.06,195.46,29.22,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.35,N/A,N/A -2012,8,7,21,30,101350,100210,99100,77.15,0,3.0100000000000002,3.15,3.16,3.16,3.16,3.15,3.14,3.13,3.11,201.54,201.01,200.63,200.22,199.83,199.46,199.03,198.62,197.65,29.27,28.92,28.75,28.55,28.36,28.17,27.98,27.8,27.42,N/A,N/A -2012,8,7,22,30,101330,100190,99080,78.72,0,4.0600000000000005,4.28,4.3100000000000005,4.3100000000000005,4.3100000000000005,4.3,4.29,4.28,4.25,196.77,196.51,196.34,196.16,195.97,195.78,195.56,195.35,194.85,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.78,27.400000000000002,N/A,N/A -2012,8,7,23,30,101290,100150,99040,77.60000000000001,0,3.94,4.15,4.17,4.18,4.17,4.16,4.14,4.13,4.08,184.65,184.77,184.8,184.82,184.82,184.81,184.79,184.76,184.63,29.23,28.91,28.73,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,8,0,30,101290,100150,99040,79.03,0,4.55,4.83,4.86,4.87,4.87,4.86,4.8500000000000005,4.84,4.8100000000000005,175.74,175.70000000000002,175.70000000000002,175.67000000000002,175.61,175.53,175.41,175.29,174.84,29.14,28.810000000000002,28.650000000000002,28.45,28.26,28.080000000000002,27.89,27.71,27.34,N/A,N/A -2012,8,8,1,30,101260,100120,99020,79.03,0,3.88,4.1,4.14,4.15,4.15,4.14,4.14,4.13,4.11,180.56,180.08,179.8,179.51,179.21,178.92000000000002,178.58,178.26,177.52,29.05,28.73,28.55,28.36,28.17,27.98,27.79,27.61,27.23,N/A,N/A -2012,8,8,2,30,101300,100160,99050,79.85000000000001,0,3.95,4.18,4.22,4.24,4.24,4.24,4.24,4.24,4.23,176.96,177.15,177.23,177.29,177.32,177.35,177.36,177.37,177.31,29.02,28.69,28.52,28.330000000000002,28.14,27.95,27.75,27.57,27.19,N/A,N/A -2012,8,8,3,30,101320,100170,99070,78.61,0,3.5500000000000003,3.7600000000000002,3.79,3.81,3.81,3.81,3.8200000000000003,3.8200000000000003,3.81,162.04,162.31,162.47,162.62,162.75,162.86,162.97,163.08,163.27,29.03,28.7,28.53,28.330000000000002,28.150000000000002,27.96,27.76,27.580000000000002,27.2,N/A,N/A -2012,8,8,4,30,101310,100170,99060,80.47,0,4.12,4.39,4.43,4.46,4.47,4.48,4.48,4.48,4.48,179.16,178.84,178.67000000000002,178.51,178.35,178.21,178.07,177.93,177.66,28.94,28.6,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A -2012,8,8,5,30,101320,100180,99070,79.74,0,3.85,4.09,4.14,4.16,4.17,4.18,4.18,4.19,4.19,169.46,169.53,169.5,169.49,169.47,169.46,169.45000000000002,169.43,169.41,28.92,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.64,27.45,27.07,N/A,N/A -2012,8,8,6,30,101340,100200,99090,80.93,0,3.38,3.56,3.6,3.61,3.62,3.63,3.63,3.63,3.64,182.07,182.11,182.13,182.13,182.13,182.13,182.13,182.12,182.09,28.84,28.5,28.32,28.12,27.93,27.75,27.55,27.36,26.990000000000002,N/A,N/A -2012,8,8,7,30,101400,100250,99150,81.52,0,2.88,3.0700000000000003,3.11,3.14,3.16,3.18,3.2,3.22,3.25,187.11,186.02,185.42000000000002,184.83,184.31,183.8,183.31,182.86,181.93,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,8,8,8,30,101390,100250,99140,80.65,0,3.0100000000000002,3.18,3.21,3.22,3.23,3.24,3.25,3.25,3.2600000000000002,177.42000000000002,177.14000000000001,177,176.87,176.75,176.63,176.53,176.43,176.22,28.86,28.52,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27.01,N/A,N/A -2012,8,8,9,30,101420,100270,99170,79.69,0,2.29,2.4,2.41,2.42,2.42,2.42,2.43,2.43,2.42,177.33,177.33,177.29,177.24,177.19,177.14000000000001,177.07,177.01,176.91,28.86,28.52,28.35,28.150000000000002,27.97,27.77,27.580000000000002,27.39,27.01,N/A,N/A -2012,8,8,10,30,101450,100300,99200,80.15,0,0.9,0.92,0.93,0.93,0.9400000000000001,0.9400000000000001,0.9400000000000001,0.9500000000000001,0.96,202.48000000000002,201.92000000000002,201.41,200.91,200.46,200.03,199.61,199.21,198.29,28.8,28.46,28.29,28.09,27.900000000000002,27.72,27.52,27.330000000000002,26.96,N/A,N/A -2012,8,8,11,30,101480,100330,99230,80.53,0,0.89,0.91,0.9,0.89,0.87,0.86,0.85,0.8300000000000001,0.81,287.72,287.89,288.15000000000003,288.32,288.39,288.39,288.37,288.33,288.12,28.78,28.45,28.28,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A -2012,8,8,12,30,101450,100300,99190,86.24,19.400000000000002,4.66,4.6000000000000005,4.38,4.14,3.93,3.7600000000000002,3.66,3.59,3.5,196.35,197.46,198.13,198.86,199.45000000000002,199.92000000000002,199.9,199.83,198.92000000000002,27.09,26.8,26.72,26.66,26.63,26.6,26.52,26.45,26.23,N/A,N/A -2012,8,8,13,30,101530,100380,99270,79.23,0,1.83,1.85,1.83,1.79,1.8,1.84,1.8800000000000001,1.93,1.96,205.09,207.72,209.95000000000002,213.34,217.74,223.29,225.73000000000002,226.77,224.06,28.18,27.88,27.75,27.62,27.580000000000002,27.6,27.54,27.45,27.23,N/A,N/A -2012,8,8,14,30,101550,100400,99290,86.58,0,4.57,4.54,4.37,4.14,3.85,3.52,3.12,2.75,2.15,208.46,208.74,208.88,209.12,209.67000000000002,210.43,212.81,215.4,223.33,27.52,27.150000000000002,26.990000000000002,26.830000000000002,26.69,26.560000000000002,26.45,26.35,26.17,N/A,N/A -2012,8,8,15,30,101540,100390,99280,77.13,0,2.69,2.6,2.48,2.31,2.1,1.87,1.47,1.1300000000000001,0.12,209.1,208.48000000000002,208.09,207.57,206.79,205.92000000000002,203.99,202.27,55.76,28.3,27.93,27.75,27.55,27.36,27.17,26.98,26.8,26.53,N/A,N/A -2012,8,8,16,30,101550,100410,99300,76.91,0,1.58,1.61,1.58,1.55,1.53,1.5,1.48,1.45,1.41,175.97,174.81,174.07,173.22,172.3,171.32,170.16,169.02,166.04,28.7,28.35,28.17,27.97,27.79,27.6,27.400000000000002,27.22,26.84,N/A,N/A -2012,8,8,17,30,101550,100400,99290,78.65,0,2.05,2.16,2.19,2.2,2.22,2.23,2.25,2.2600000000000002,2.29,149.20000000000002,149.91,150.34,150.77,151.18,151.6,152.06,152.52,153.53,28.8,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.94,N/A,N/A -2012,8,8,18,30,101530,100390,99280,78.9,0,2.13,2.22,2.23,2.24,2.24,2.24,2.24,2.23,2.23,146.74,146.61,146.55,146.5,146.46,146.41,146.38,146.34,146.29,28.96,28.59,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A -2012,8,8,19,30,101520,100380,99270,79.73,0,2.99,3.12,3.14,3.15,3.15,3.16,3.16,3.16,3.15,142.83,142.65,142.54,142.41,142.3,142.19,142.08,141.98,141.74,29.05,28.68,28.5,28.3,28.11,27.92,27.72,27.54,27.16,N/A,N/A -2012,8,8,20,30,101450,100300,99200,79.74,0,2.45,2.5500000000000003,2.57,2.57,2.58,2.58,2.58,2.57,2.57,164.14000000000001,163.49,163.16,162.81,162.5,162.19,161.87,161.57,160.93,29.080000000000002,28.71,28.53,28.330000000000002,28.14,27.95,27.75,27.57,27.19,N/A,N/A -2012,8,8,21,30,101400,100260,99160,73.01,0,3.14,3.29,3.31,3.31,3.31,3.31,3.3000000000000003,3.29,3.2800000000000002,156.98,157.31,157.46,157.61,157.76,157.89000000000001,158.03,158.16,158.44,29.45,29.1,28.93,28.73,28.54,28.35,28.150000000000002,27.97,27.59,N/A,N/A -2012,8,8,22,30,101400,100260,99160,79.16,0,4.11,4.42,4.49,4.54,4.58,4.61,4.64,4.66,4.7,163.74,163.85,163.89000000000001,163.94,163.98,164.04,164.1,164.15,164.27,29.29,28.95,28.78,28.580000000000002,28.39,28.2,28,27.810000000000002,27.43,N/A,N/A -2012,8,8,23,30,101380,100230,99130,78.24,0,4.93,5.2700000000000005,5.33,5.37,5.39,5.4,5.42,5.43,5.44,169.89000000000001,169.67000000000002,169.52,169.35,169.20000000000002,169.04,168.88,168.72,168.38,29.310000000000002,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A -2012,8,9,0,30,101360,100210,99110,79.78,0,4.62,4.94,5.01,5.04,5.0600000000000005,5.08,5.08,5.09,5.09,170.66,170.61,170.68,170.73,170.77,170.8,170.83,170.86,170.9,29.16,28.82,28.650000000000002,28.45,28.26,28.080000000000002,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,9,1,30,101330,100190,99090,77.92,0,4.47,4.7700000000000005,4.82,4.84,4.8500000000000005,4.86,4.86,4.86,4.8500000000000005,169.31,169.16,169.08,169.02,168.97,168.91,168.86,168.8,168.68,29.19,28.87,28.69,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.36,N/A,N/A -2012,8,9,2,30,101350,100210,99110,81.29,0,4.5600000000000005,4.86,4.93,4.96,4.98,5,5.01,5.0200000000000005,5.03,169.97,170.05,170.06,170.07,170.08,170.08,170.07,170.07,170.06,28.96,28.62,28.45,28.26,28.07,27.88,27.69,27.5,27.13,N/A,N/A -2012,8,9,3,30,101350,100200,99100,82.54,0,5.46,5.8100000000000005,5.87,5.88,5.88,5.87,5.8500000000000005,5.84,5.79,176.46,176.06,175.78,175.49,175.24,174.99,174.75,174.52,174.08,28.93,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.62,27.43,27.05,N/A,N/A -2012,8,9,4,30,101340,100190,99090,83.95,0,5.17,5.45,5.48,5.48,5.47,5.44,5.42,5.39,5.33,169.06,169.89000000000001,170.33,170.75,171.14000000000001,171.54,171.95000000000002,172.34,173.21,28.8,28.46,28.28,28.09,27.900000000000002,27.72,27.53,27.36,26.990000000000002,N/A,N/A -2012,8,9,5,30,101370,100230,99120,85.13,0,4.65,4.96,5.03,5.0600000000000005,5.09,5.11,5.12,5.13,5.14,179.07,178.87,178.74,178.61,178.48,178.35,178.23,178.11,177.87,28.7,28.35,28.17,27.97,27.78,27.59,27.39,27.2,26.82,N/A,N/A -2012,8,9,6,30,101390,100250,99140,84.51,0,4.89,5.19,5.24,5.25,5.26,5.25,5.24,5.22,5.19,183.19,183.31,183.33,183.34,183.35,183.35,183.33,183.32,183.3,28.86,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,8,9,7,30,101410,100260,99160,82.32000000000001,0,3.89,4.13,4.17,4.2,4.21,4.22,4.22,4.23,4.23,193.52,193.45000000000002,193.43,193.43,193.43,193.43,193.45000000000002,193.49,193.56,28.92,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.62,27.44,27.060000000000002,N/A,N/A -2012,8,9,8,30,101430,100290,99180,76.7,0,3.46,3.68,3.73,3.7600000000000002,3.79,3.81,3.83,3.85,3.88,199.67000000000002,198.96,198.59,198.25,197.96,197.68,197.42000000000002,197.19,196.74,29.14,28.810000000000002,28.64,28.44,28.25,28.060000000000002,27.87,27.68,27.3,N/A,N/A -2012,8,9,9,30,101450,100310,99200,78.55,0,3.8200000000000003,4.08,4.14,4.18,4.21,4.23,4.25,4.2700000000000005,4.29,206.44,206.31,206.1,205.91,205.73000000000002,205.57,205.4,205.24,204.93,29.02,28.68,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.55,27.17,N/A,N/A -2012,8,9,10,30,101450,100310,99200,80.81,0,4.51,4.79,4.8500000000000005,4.87,4.89,4.9,4.91,4.92,4.92,210.43,210.31,210.19,210.07,209.96,209.85,209.74,209.64000000000001,209.42000000000002,28.91,28.560000000000002,28.39,28.19,28,27.8,27.61,27.42,27.04,N/A,N/A -2012,8,9,11,30,101490,100350,99240,83.35000000000001,0,3.93,4.17,4.23,4.26,4.29,4.3100000000000005,4.32,4.33,4.3500000000000005,228.98000000000002,228.44,228.05,227.68,227.35,227.04,226.73000000000002,226.44,225.85,28.86,28.51,28.34,28.14,27.95,27.76,27.560000000000002,27.38,26.990000000000002,N/A,N/A -2012,8,9,12,30,101490,100350,99240,81.38,0,3.81,3.99,4.03,4.04,4.05,4.05,4.0600000000000005,4.0600000000000005,4.0600000000000005,253.22,252.07,251.29,250.52,249.82,249.13,248.44,247.75,246.36,28.98,28.66,28.490000000000002,28.29,28.11,27.92,27.73,27.55,27.18,N/A,N/A -2012,8,9,13,30,101530,100380,99270,88.97,7,9.38,9.88,9.85,9.72,9.58,9.42,9.24,9.07,8.72,259.72,259.27,258.87,258.26,257.53000000000003,256.69,255.63,254.57,252.02,27.72,27.3,27.14,26.97,26.810000000000002,26.67,26.52,26.39,26.12,N/A,N/A -2012,8,9,14,30,101560,100410,99300,84.53,0,2.47,2.66,2.75,2.87,3.0300000000000002,3.24,3.49,3.7600000000000002,4.1,270.38,265.53000000000003,262.8,259.43,255.46,250.91,245.74,240.39000000000001,232.73000000000002,27.85,27.51,27.36,27.21,27.1,27,26.94,26.900000000000002,26.740000000000002,N/A,N/A -2012,8,9,15,30,101550,100400,99300,82.8,2.2,2.04,2.29,2.42,2.57,2.75,2.95,3.17,3.4,3.8200000000000003,262.25,257.49,254.74,251.94,249.24,246.44,243.55,240.66,235.48000000000002,28.22,27.89,27.740000000000002,27.57,27.43,27.29,27.150000000000002,27.02,26.740000000000002,N/A,N/A -2012,8,9,16,30,101530,100380,99270,88.42,0,5.32,5.43,5.38,5.2700000000000005,5.17,5.07,4.98,4.91,4.74,244.69,244,243.38,242.55,241.59,240.47,238.94,237.31,233.34,27.42,27.04,26.89,26.740000000000002,26.61,26.490000000000002,26.400000000000002,26.32,26.17,N/A,N/A -2012,8,9,17,30,101540,100390,99290,79.06,0,2.16,2.32,2.38,2.45,2.54,2.64,2.8000000000000003,2.99,3.7600000000000002,223.54,222.88,222.76,222.57,222.32,221.99,221.39000000000001,220.65,217.53,28.48,28.12,27.95,27.76,27.59,27.41,27.25,27.1,26.89,N/A,N/A -2012,8,9,18,30,101500,100360,99250,80.99,0,3.34,3.52,3.56,3.59,3.61,3.64,3.67,3.7,3.81,218.18,218.31,218.3,218.32,218.35,218.4,218.49,218.59,218.93,28.830000000000002,28.46,28.29,28.09,27.900000000000002,27.72,27.53,27.35,26.990000000000002,N/A,N/A -2012,8,9,19,30,101480,100340,99230,81.52,0,4.33,4.63,4.7,4.75,4.79,4.82,4.8500000000000005,4.87,4.92,204.45000000000002,204.65,204.79,204.93,205.05,205.16,205.29,205.41,205.66,29.19,28.830000000000002,28.66,28.45,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,9,20,30,101410,100270,99170,79.10000000000001,0,6.34,6.84,6.93,6.98,7.01,7.03,7.04,7.04,7.05,203.09,203.21,203.29,203.36,203.43,203.49,203.55,203.62,203.75,29.44,29.09,28.92,28.72,28.54,28.34,28.150000000000002,27.97,27.59,N/A,N/A -2012,8,9,21,30,101360,100230,99120,81.45,0,6.83,7.38,7.5,7.5600000000000005,7.59,7.61,7.63,7.640000000000001,7.640000000000001,201.87,201.85,201.89000000000001,201.95000000000002,202,202.07,202.15,202.23000000000002,202.45000000000002,29.41,29.080000000000002,28.92,28.72,28.54,28.35,28.16,27.98,27.61,N/A,N/A -2012,8,9,22,30,101330,100190,99080,81,0,6.5,7.01,7.1000000000000005,7.140000000000001,7.16,7.17,7.16,7.15,7.11,202.01,202.02,202.11,202.19,202.26,202.32,202.39000000000001,202.45000000000002,202.59,29.36,29.03,28.86,28.66,28.48,28.29,28.1,27.92,27.55,N/A,N/A -2012,8,9,23,30,101330,100190,99090,81.94,0,5.45,5.8500000000000005,5.93,5.97,5.99,6,6.01,6,5.99,183.21,183.42000000000002,183.57,183.68,183.75,183.81,183.86,183.89000000000001,183.96,29.29,28.95,28.78,28.580000000000002,28.400000000000002,28.21,28.01,27.830000000000002,27.45,N/A,N/A -2012,8,10,0,30,101250,100110,99010,83.81,0,5.14,5.5,5.55,5.57,5.58,5.58,5.58,5.57,5.5600000000000005,205.53,205.68,205.71,205.77,205.83,205.9,205.97,206.04,206.24,29.14,28.8,28.63,28.44,28.25,28.060000000000002,27.88,27.7,27.34,N/A,N/A -2012,8,10,1,30,101230,100090,98990,83.21000000000001,0,7.13,7.71,7.82,7.87,7.890000000000001,7.9,7.9,7.9,7.87,205.41,205.56,205.63,205.71,205.78,205.86,205.96,206.05,206.29,29.26,28.92,28.75,28.55,28.37,28.19,27.990000000000002,27.810000000000002,27.45,N/A,N/A -2012,8,10,2,30,101230,100100,98990,82.96000000000001,0,6.72,7.2700000000000005,7.38,7.43,7.46,7.47,7.48,7.48,7.46,207.37,207.43,207.49,207.55,207.61,207.68,207.76,207.83,208.02,29.310000000000002,28.98,28.810000000000002,28.62,28.43,28.25,28.060000000000002,27.88,27.51,N/A,N/A -2012,8,10,3,30,101250,100110,99010,82.95,0,6.3100000000000005,6.84,6.94,6.99,7.03,7.04,7.04,7.04,7.03,204.70000000000002,204.92000000000002,205.04,205.14000000000001,205.22,205.29,205.35,205.4,205.52,29.330000000000002,28.990000000000002,28.830000000000002,28.63,28.44,28.25,28.060000000000002,27.87,27.5,N/A,N/A -2012,8,10,4,30,101230,100090,98990,80.83,0,5.25,5.68,5.76,5.8100000000000005,5.84,5.8500000000000005,5.86,5.87,5.89,225.81,225.93,225.94,225.94,225.94,225.93,225.93,225.94,226,29.400000000000002,29.07,28.900000000000002,28.71,28.52,28.330000000000002,28.14,27.96,27.580000000000002,N/A,N/A -2012,8,10,5,30,101240,100100,98990,83.74,0,6.6000000000000005,7.11,7.18,7.2,7.19,7.16,7.12,7.07,6.94,217.67000000000002,217.66,217.61,217.54,217.47,217.39000000000001,217.28,217.18,216.93,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.95,27.76,27.38,N/A,N/A -2012,8,10,6,30,101220,100090,98980,75.09,0,6.5200000000000005,7.08,7.18,7.22,7.24,7.25,7.25,7.24,7.23,219.24,219.35,219.4,219.43,219.46,219.5,219.53,219.57,219.67000000000002,29.76,29.44,29.28,29.080000000000002,28.900000000000002,28.71,28.52,28.34,27.97,N/A,N/A -2012,8,10,7,30,101230,100090,98990,74.52,0,7.78,8.49,8.63,8.700000000000001,8.75,8.77,8.790000000000001,8.8,8.82,220.74,220.66,220.62,220.6,220.6,220.61,220.63,220.66,220.72,29.78,29.47,29.3,29.11,28.92,28.73,28.54,28.35,27.97,N/A,N/A -2012,8,10,8,30,101250,100110,99010,74.17,0,7.15,7.8,7.930000000000001,8,8.05,8.08,8.11,8.13,8.17,223.11,222.83,222.73000000000002,222.64000000000001,222.59,222.55,222.52,222.51,222.5,29.85,29.55,29.39,29.2,29.02,28.830000000000002,28.650000000000002,28.47,28.1,N/A,N/A -2012,8,10,9,30,101230,100090,98990,74.76,0,7.67,8.36,8.5,8.56,8.6,8.620000000000001,8.63,8.63,8.620000000000001,230.95000000000002,230.98000000000002,230.97,230.93,230.88,230.82,230.75,230.68,230.51,29.67,29.35,29.19,28.990000000000002,28.8,28.61,28.41,28.23,27.84,N/A,N/A -2012,8,10,10,30,101240,100110,99000,75.83,0,6.92,7.57,7.7,7.7700000000000005,7.82,7.84,7.86,7.86,7.8500000000000005,231.35,231.51,231.55,231.58,231.59,231.61,231.61,231.6,231.58,29.63,29.310000000000002,29.150000000000002,28.95,28.76,28.57,28.38,28.19,27.810000000000002,N/A,N/A -2012,8,10,11,30,101280,100140,99030,76.49,0,6.7,7.28,7.41,7.47,7.51,7.54,7.55,7.5600000000000005,7.5600000000000005,235.85,235.82,235.77,235.71,235.65,235.6,235.54,235.48000000000002,235.37,29.53,29.21,29.04,28.84,28.66,28.47,28.27,28.09,27.71,N/A,N/A -2012,8,10,12,30,101270,100130,99030,74.82000000000001,0,6.82,7.45,7.58,7.66,7.71,7.74,7.76,7.78,7.79,245.62,245.32,245.18,245.04,244.9,244.77,244.64000000000001,244.51,244.27,29.63,29.330000000000002,29.16,28.97,28.78,28.59,28.400000000000002,28.21,27.830000000000002,N/A,N/A -2012,8,10,13,30,101310,100170,99070,73.48,0,6.41,6.99,7.1000000000000005,7.17,7.21,7.24,7.26,7.2700000000000005,7.28,248.28,248.23000000000002,248.17000000000002,248.1,248.04,247.98000000000002,247.93,247.87,247.76000000000002,29.77,29.46,29.3,29.1,28.91,28.72,28.52,28.34,27.96,N/A,N/A -2012,8,10,14,30,101350,100210,99110,72.77,0,6.1000000000000005,6.61,6.72,6.78,6.83,6.86,6.890000000000001,6.91,6.94,248.83,248.78,248.75,248.73000000000002,248.73000000000002,248.72,248.73000000000002,248.74,248.77,29.68,29.37,29.2,29.01,28.82,28.63,28.44,28.26,27.88,N/A,N/A -2012,8,10,15,30,101350,100210,99110,77.06,0,6.98,7.53,7.63,7.67,7.69,7.7,7.7,7.7,7.68,244.05,244.15,244.28,244.4,244.52,244.64000000000001,244.76,244.87,245.08,29.45,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A -2012,8,10,16,30,101360,100220,99120,73.46000000000001,0,6.16,6.69,6.8100000000000005,6.88,6.92,6.96,6.99,7.0200000000000005,7.07,233.82,233.89000000000001,233.93,233.97,234,234.02,234.05,234.09,234.16,29.740000000000002,29.42,29.26,29.060000000000002,28.88,28.69,28.5,28.32,27.94,N/A,N/A -2012,8,10,17,30,101330,100190,99080,75.02,0,6.78,7.34,7.44,7.48,7.51,7.5200000000000005,7.51,7.51,7.48,219.68,219.91,220.07,220.21,220.33,220.46,220.58,220.69,220.94,29.75,29.43,29.27,29.07,28.88,28.69,28.5,28.32,27.94,N/A,N/A -2012,8,10,18,30,101290,100150,99050,76.52,0,7.390000000000001,8.01,8.13,8.18,8.21,8.22,8.22,8.21,8.19,212.41,212.69,212.87,213.05,213.23000000000002,213.4,213.59,213.77,214.16,29.650000000000002,29.32,29.16,28.96,28.77,28.59,28.400000000000002,28.22,27.84,N/A,N/A -2012,8,10,19,30,101270,100140,99030,75.45,0,8.19,8.94,9.1,9.17,9.22,9.24,9.25,9.25,9.23,206.08,206.25,206.37,206.49,206.62,206.73000000000002,206.86,206.99,207.3,29.78,29.46,29.29,29.1,28.91,28.73,28.54,28.36,27.990000000000002,N/A,N/A -2012,8,10,20,30,101220,100080,98980,77.01,0,8.31,9.07,9.22,9.290000000000001,9.33,9.34,9.34,9.34,9.3,213.17000000000002,213.24,213.31,213.39000000000001,213.45000000000002,213.53,213.6,213.67000000000002,213.85,29.64,29.32,29.150000000000002,28.96,28.77,28.580000000000002,28.400000000000002,28.21,27.84,N/A,N/A -2012,8,10,21,30,101180,100040,98940,77.05,0,8.71,9.53,9.700000000000001,9.78,9.82,9.85,9.85,9.85,9.83,213.19,213.33,213.43,213.51,213.6,213.69,213.77,213.84,214.04,29.650000000000002,29.330000000000002,29.16,28.97,28.78,28.59,28.400000000000002,28.22,27.85,N/A,N/A -2012,8,10,22,30,101150,100010,98910,76.42,0,8.5,9.3,9.47,9.55,9.6,9.620000000000001,9.63,9.64,9.620000000000001,210.58,210.61,210.67000000000002,210.71,210.74,210.76,210.77,210.77,210.76,29.66,29.34,29.18,28.98,28.8,28.61,28.42,28.23,27.86,N/A,N/A -2012,8,10,23,30,101100,99960,98860,74.36,0,8.94,9.8,9.97,10.05,10.09,10.11,10.11,10.1,10.06,212.23000000000002,212.33,212.37,212.39000000000001,212.42000000000002,212.43,212.45000000000002,212.47,212.49,29.76,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.98,N/A,N/A -2012,8,11,0,30,101100,99960,98860,74.95,0,8.36,9.120000000000001,9.27,9.34,9.38,9.39,9.39,9.38,9.35,212.32,212.33,212.38,212.43,212.48000000000002,212.53,212.59,212.65,212.8,29.7,29.400000000000002,29.240000000000002,29.04,28.86,28.67,28.490000000000002,28.310000000000002,27.94,N/A,N/A -2012,8,11,1,30,101070,99930,98830,69.76,0,8.76,9.57,9.74,9.8,9.84,9.84,9.83,9.81,9.74,208.9,208.9,208.88,208.84,208.8,208.75,208.67000000000002,208.58,208.32,29.94,29.67,29.51,29.32,29.13,28.95,28.76,28.580000000000002,28.2,N/A,N/A -2012,8,11,2,30,101090,99960,98850,72.52,0,8.06,8.77,8.9,8.94,8.97,8.97,8.96,8.950000000000001,8.9,212.95000000000002,212.92000000000002,212.85,212.79,212.73000000000002,212.68,212.62,212.56,212.42000000000002,29.87,29.59,29.43,29.240000000000002,29.060000000000002,28.88,28.69,28.51,28.16,N/A,N/A -2012,8,11,3,30,101110,99970,98870,74.96000000000001,0,8.69,9.47,9.63,9.68,9.71,9.72,9.700000000000001,9.69,9.63,208.57,208.63,208.59,208.55,208.5,208.46,208.4,208.34,208.19,29.73,29.43,29.27,29.080000000000002,28.89,28.71,28.52,28.34,27.97,N/A,N/A -2012,8,11,4,30,101130,100000,98890,72.44,0,7.84,8.51,8.64,8.69,8.72,8.73,8.72,8.700000000000001,8.66,210.42000000000002,210.17000000000002,210.06,209.93,209.81,209.67000000000002,209.53,209.38,209.03,29.79,29.51,29.35,29.150000000000002,28.97,28.79,28.6,28.41,28.04,N/A,N/A -2012,8,11,5,30,101110,99980,98880,70.11,0,8.23,9.02,9.17,9.25,9.290000000000001,9.31,9.32,9.32,9.3,198.49,198.74,198.84,198.92000000000002,198.98000000000002,199.04,199.09,199.14000000000001,199.24,29.89,29.6,29.44,29.25,29.060000000000002,28.88,28.69,28.51,28.14,N/A,N/A -2012,8,11,6,30,101160,100030,98920,65.78,0,8.2,8.96,9.120000000000001,9.19,9.23,9.26,9.27,9.28,9.27,213.70000000000002,213.71,213.78,213.88,213.97,214.06,214.16,214.26,214.45000000000002,30.02,29.75,29.6,29.41,29.23,29.04,28.85,28.66,28.29,N/A,N/A -2012,8,11,7,30,101220,100080,98980,73.56,0,7.05,7.72,7.86,7.94,7.99,8.03,8.05,8.07,8.08,214.84,214.83,214.82,214.79,214.76,214.72,214.67000000000002,214.64000000000001,214.55,29.59,29.28,29.11,28.91,28.73,28.54,28.34,28.16,27.78,N/A,N/A -2012,8,11,8,30,101230,100090,98980,72.27,0,6.98,7.59,7.72,7.78,7.82,7.8500000000000005,7.86,7.88,7.88,221.27,221.22,221.21,221.21,221.21,221.21,221.20000000000002,221.20000000000002,221.21,29.560000000000002,29.25,29.09,28.89,28.7,28.52,28.330000000000002,28.14,27.76,N/A,N/A -2012,8,11,9,30,101220,100080,98980,76.60000000000001,0,6.99,7.61,7.73,7.8,7.8500000000000005,7.87,7.890000000000001,7.9,7.91,222.95000000000002,223.14000000000001,223.27,223.39000000000001,223.49,223.59,223.68,223.77,223.94,29.38,29.05,28.88,28.68,28.490000000000002,28.3,28.11,27.92,27.54,N/A,N/A -2012,8,11,10,30,101240,100100,99000,79.9,0,7.4,8.05,8.19,8.27,8.32,8.35,8.370000000000001,8.38,8.39,233.05,232.86,232.73000000000002,232.59,232.46,232.32,232.19,232.07,231.79,29.19,28.84,28.67,28.47,28.28,28.09,27.89,27.71,27.32,N/A,N/A -2012,8,11,11,30,101290,100150,99050,80.60000000000001,0,6.57,7.12,7.24,7.3100000000000005,7.3500000000000005,7.390000000000001,7.41,7.43,7.45,236.83,237.16,237.23000000000002,237.27,237.3,237.31,237.32,237.31,237.28,29.150000000000002,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A -2012,8,11,12,30,101320,100180,99080,79.96000000000001,0,5.74,6.24,6.3500000000000005,6.43,6.48,6.5200000000000005,6.55,6.57,6.6000000000000005,243.88,243.85,243.89000000000001,243.93,243.96,244,244.04,244.07,244.15,29.150000000000002,28.8,28.62,28.42,28.22,28.03,27.830000000000002,27.64,27.26,N/A,N/A -2012,8,11,13,30,101340,100200,99090,78.10000000000001,0,6.38,6.82,6.890000000000001,6.91,6.91,6.9,6.88,6.86,6.8,256.87,257.03000000000003,257.12,257.18,257.25,257.31,257.38,257.45,257.62,29.19,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.330000000000002,N/A,N/A -2012,8,11,14,30,101380,100240,99140,83.09,0,5.53,5.89,5.95,5.97,5.98,5.98,5.98,5.98,5.97,271.59000000000003,270.69,270.11,269.52,269,268.5,268.01,267.57,266.69,29,28.650000000000002,28.48,28.28,28.09,27.900000000000002,27.7,27.52,27.14,N/A,N/A -2012,8,11,15,30,101400,100260,99150,81.05,0,5.2,5.53,5.59,5.62,5.63,5.64,5.64,5.63,5.62,266.12,265.73,265.52,265.31,265.12,264.94,264.77,264.6,264.26,28.96,28.61,28.44,28.240000000000002,28.060000000000002,27.87,27.68,27.5,27.13,N/A,N/A -2012,8,11,16,30,101410,100270,99160,78.88,0,4.5200000000000005,4.84,4.91,4.95,4.98,5.01,5.04,5.0600000000000005,5.11,245.66,245.45000000000002,245.48000000000002,245.48000000000002,245.46,245.45000000000002,245.43,245.41,245.36,29.09,28.75,28.580000000000002,28.38,28.2,28.01,27.82,27.64,27.28,N/A,N/A -2012,8,11,17,30,101370,100230,99120,79.57000000000001,0,4.43,4.7,4.75,4.7700000000000005,4.79,4.79,4.78,4.7700000000000005,4.75,234.1,234.51,234.68,234.88,235.1,235.33,235.63,235.96,236.92000000000002,29.23,28.89,28.72,28.53,28.35,28.17,27.990000000000002,27.810000000000002,27.48,N/A,N/A -2012,8,11,18,30,101350,100210,99110,75.78,0,3.48,3.65,3.67,3.66,3.64,3.62,3.59,3.5500000000000003,3.45,215.43,215.89000000000001,216.16,216.45000000000002,216.74,217.04,217.38,217.72,218.64000000000001,29.64,29.310000000000002,29.150000000000002,28.95,28.77,28.59,28.41,28.23,27.89,N/A,N/A -2012,8,11,19,30,101340,100200,99100,76.61,0,3.63,3.75,3.74,3.69,3.64,3.59,3.52,3.46,3.29,213.48000000000002,213.42000000000002,213.44,213.45000000000002,213.44,213.42000000000002,213.39000000000001,213.36,213.21,29.73,29.39,29.23,29.03,28.85,28.66,28.48,28.3,27.95,N/A,N/A -2012,8,11,20,30,101330,100200,99090,77.47,0,4.61,4.87,4.89,4.88,4.86,4.84,4.8,4.7700000000000005,4.69,182.12,181.98,181.77,181.53,181.3,181.05,180.76,180.48,179.76,29.8,29.47,29.3,29.11,28.92,28.740000000000002,28.55,28.37,28,N/A,N/A -2012,8,11,21,30,101260,100120,99020,79.15,0,6.34,6.8,6.87,6.88,6.88,6.87,6.8500000000000005,6.82,6.75,195.11,195.07,195.02,194.95000000000002,194.9,194.84,194.77,194.71,194.54,29.63,29.310000000000002,29.14,28.94,28.76,28.57,28.38,28.19,27.830000000000002,N/A,N/A -2012,8,11,22,30,101240,100100,98990,79.83,0,6.48,6.97,7.0600000000000005,7.08,7.09,7.08,7.0600000000000005,7.04,6.97,206.03,206.02,205.94,205.84,205.75,205.65,205.54,205.43,205.16,29.54,29.22,29.060000000000002,28.86,28.67,28.48,28.3,28.11,27.740000000000002,N/A,N/A -2012,8,11,23,30,101200,100060,98960,81.32000000000001,0,6.890000000000001,7.44,7.54,7.57,7.58,7.58,7.57,7.55,7.49,209.75,209.68,209.65,209.61,209.57,209.52,209.46,209.4,209.26,29.42,29.09,28.92,28.72,28.54,28.35,28.150000000000002,27.97,27.59,N/A,N/A -2012,8,12,0,30,101250,100110,99010,80.88,0,6.16,6.640000000000001,6.72,6.75,6.76,6.76,6.75,6.74,6.7,200.85,200.82,200.76,200.68,200.59,200.51,200.39000000000001,200.28,199.98000000000002,29.400000000000002,29.07,28.91,28.71,28.52,28.34,28.150000000000002,27.97,27.6,N/A,N/A -2012,8,12,1,30,101210,100070,98960,79.59,0,6.5600000000000005,7.07,7.16,7.18,7.19,7.19,7.17,7.140000000000001,7.08,209.51,209.49,209.41,209.32,209.22,209.13,209.02,208.9,208.6,29.39,29.07,28.900000000000002,28.71,28.52,28.34,28.150000000000002,27.97,27.61,N/A,N/A -2012,8,12,2,30,101280,100140,99030,80.71000000000001,0,6.23,6.72,6.8100000000000005,6.8500000000000005,6.86,6.87,6.87,6.86,6.84,204.77,204.65,204.6,204.54,204.47,204.39000000000001,204.3,204.20000000000002,203.97,29.34,29.01,28.84,28.64,28.46,28.27,28.080000000000002,27.900000000000002,27.53,N/A,N/A -2012,8,12,3,30,101270,100130,99030,81.7,0,6.95,7.51,7.61,7.66,7.68,7.69,7.69,7.68,7.65,199.75,199.66,199.58,199.51,199.45000000000002,199.38,199.31,199.23000000000002,199.08,29.240000000000002,28.900000000000002,28.73,28.53,28.35,28.16,27.97,27.79,27.42,N/A,N/A -2012,8,12,4,30,101240,100100,98990,79.89,0,6.58,7.12,7.23,7.28,7.3100000000000005,7.33,7.34,7.34,7.34,202.26,202.16,202.13,202.1,202.07,202.03,201.99,201.95000000000002,201.84,29.240000000000002,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.97,27.78,27.41,N/A,N/A -2012,8,12,5,30,101270,100130,99030,83.14,0,6.92,7.48,7.59,7.63,7.66,7.67,7.67,7.66,7.640000000000001,200.89000000000001,200.9,200.89000000000001,200.88,200.87,200.85,200.83,200.81,200.75,29.060000000000002,28.72,28.54,28.34,28.150000000000002,27.96,27.77,27.580000000000002,27.21,N/A,N/A -2012,8,12,6,30,101290,100150,99050,81.03,0,6.24,6.72,6.8100000000000005,6.86,6.890000000000001,6.9,6.92,6.92,6.92,192.34,192.38,192.48000000000002,192.57,192.65,192.73000000000002,192.82,192.89000000000001,193.04,29.13,28.76,28.580000000000002,28.38,28.19,28.01,27.810000000000002,27.63,27.25,N/A,N/A -2012,8,12,7,30,101360,100220,99110,82.51,0,6.29,6.78,6.88,6.94,6.98,7,7.0200000000000005,7.03,7.04,187.1,186.94,186.89000000000001,186.83,186.78,186.74,186.70000000000002,186.65,186.57,29.1,28.73,28.55,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A -2012,8,12,8,30,101360,100220,99120,76.38,0,6.92,7.32,7.37,7.37,7.3500000000000005,7.33,7.3,7.2700000000000005,7.21,190.68,191.20000000000002,191.46,191.72,191.94,192.15,192.32,192.47,192.71,29.28,28.93,28.76,28.560000000000002,28.38,28.2,28.01,27.830000000000002,27.46,N/A,N/A -2012,8,12,9,30,101410,100270,99160,80.37,0,5.5600000000000005,5.95,6.03,6.0600000000000005,6.08,6.09,6.09,6.09,6.09,197.14000000000001,197.11,197.16,197.23000000000002,197.3,197.38,197.45000000000002,197.53,197.68,29.09,28.72,28.55,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A -2012,8,12,10,30,101420,100280,99170,78.53,0,5.19,5.57,5.65,5.69,5.72,5.74,5.76,5.76,5.78,197.91,198.46,198.72,198.97,199.20000000000002,199.41,199.62,199.8,200.18,29.17,28.810000000000002,28.64,28.44,28.240000000000002,28.05,27.86,27.67,27.28,N/A,N/A -2012,8,12,11,30,101430,100290,99190,77.74,0,4.89,5.2,5.26,5.29,5.3,5.3100000000000005,5.3100000000000005,5.3100000000000005,5.3100000000000005,210.86,211.21,211.47,211.74,211.99,212.23000000000002,212.48000000000002,212.71,213.21,29.22,28.86,28.69,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A -2012,8,12,12,30,101460,100320,99220,79.25,0,4.59,4.9,4.95,4.97,4.98,4.98,4.98,4.97,4.95,225.11,225.11,225.06,225.01,224.96,224.9,224.85,224.79,224.69,29.21,28.85,28.68,28.48,28.28,28.09,27.89,27.71,27.32,N/A,N/A -2012,8,12,13,30,101470,100330,99220,77.69,0,3.73,3.99,4.05,4.08,4.11,4.13,4.15,4.16,4.19,227.06,227.6,227.93,228.26,228.55,228.81,229.07,229.31,229.79,29.330000000000002,28.98,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A -2012,8,12,14,30,101470,100330,99220,80.62,0,2.59,2.73,2.74,2.75,2.75,2.75,2.75,2.75,2.75,258.63,257.5,256.85,256.13,255.46,254.79,254.12,253.47,252.13,29.240000000000002,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,8,12,15,30,101590,100440,99330,82.22,2.6,3.13,3.22,3.2,3.18,3.16,3.14,3.13,3.13,3.16,260.78000000000003,261.06,261.1,261.04,260.91,260.7,260.41,260.08,259.07,28.740000000000002,28.39,28.23,28.04,27.87,27.7,27.53,27.37,27.04,N/A,N/A -2012,8,12,16,30,101520,100370,99270,77.05,0,3.59,3.7800000000000002,3.81,3.8200000000000003,3.83,3.83,3.83,3.83,3.8200000000000003,250.42000000000002,251.02,251.14000000000001,251.28,251.41,251.54,251.68,251.8,252.08,29.39,29.04,28.86,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A -2012,8,12,17,30,101540,100400,99290,75.54,0,3.5300000000000002,3.7,3.73,3.74,3.75,3.74,3.74,3.73,3.71,214.89000000000001,214.58,214.58,214.55,214.52,214.48000000000002,214.44,214.4,214.32,29.490000000000002,29.13,28.96,28.76,28.57,28.37,28.18,27.990000000000002,27.61,N/A,N/A -2012,8,12,18,30,101580,100440,99330,80.44,0,4.79,5.04,5.07,5.07,5.07,5.0600000000000005,5.05,5.05,5.04,162.55,164.56,165.74,167,168.19,169.38,170.63,171.85,174.56,28.72,28.35,28.17,27.98,27.8,27.62,27.43,27.26,26.900000000000002,N/A,N/A -2012,8,12,19,30,101520,100380,99270,81.14,0,4.16,4.36,4.39,4.39,4.39,4.38,4.36,4.3500000000000005,4.3100000000000005,173.8,174.44,174.89000000000001,175.37,175.83,176.31,176.85,177.39000000000001,178.70000000000002,28.990000000000002,28.62,28.44,28.240000000000002,28.05,27.87,27.68,27.490000000000002,27.12,N/A,N/A -2012,8,12,20,30,101460,100310,99210,80.86,0,4.86,5.17,5.23,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.25,188.48,188.67000000000002,188.87,189.05,189.22,189.39000000000001,189.57,189.75,190.12,29.11,28.740000000000002,28.560000000000002,28.36,28.17,27.98,27.79,27.6,27.22,N/A,N/A -2012,8,12,21,30,101450,100310,99200,85.41,0,5.97,6.3100000000000005,6.3500000000000005,6.3500000000000005,6.33,6.3,6.25,6.21,6.09,191.29,191.44,191.46,191.47,191.49,191.5,191.51,191.51,191.52,28.41,28,27.830000000000002,27.62,27.44,27.25,27.07,26.89,26.53,N/A,N/A -2012,8,12,22,30,101420,100280,99180,80.79,0,5.2,5.53,5.59,5.61,5.62,5.62,5.61,5.6000000000000005,5.57,193.69,193.79,193.85,193.9,193.95000000000002,193.99,194.02,194.06,194.12,28.86,28.490000000000002,28.310000000000002,28.11,27.92,27.73,27.54,27.36,26.98,N/A,N/A -2012,8,12,23,30,101400,100260,99150,79.41,0,4.87,5.19,5.25,5.28,5.29,5.3100000000000005,5.3100000000000005,5.32,5.33,196.97,197.03,197.11,197.18,197.25,197.31,197.37,197.42000000000002,197.54,28.92,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.42,27.05,N/A,N/A -2012,8,13,0,30,101380,100240,99130,78.62,0,5.69,6.0600000000000005,6.13,6.15,6.16,6.16,6.16,6.15,6.13,178.17000000000002,178.21,178.3,178.37,178.45000000000002,178.51,178.58,178.65,178.78,29.02,28.650000000000002,28.48,28.28,28.080000000000002,27.900000000000002,27.71,27.52,27.150000000000002,N/A,N/A -2012,8,13,1,30,101350,100210,99110,75.83,0,7,7.58,7.7,7.76,7.8100000000000005,7.83,7.8500000000000005,7.86,7.87,172.81,172.94,172.97,173.01,173.03,173.06,173.09,173.11,173.17000000000002,29.310000000000002,28.95,28.78,28.580000000000002,28.39,28.2,28.01,27.82,27.44,N/A,N/A -2012,8,13,2,30,101350,100210,99100,75.35000000000001,0,6.79,7.33,7.43,7.49,7.5200000000000005,7.54,7.5600000000000005,7.57,7.57,175.75,175.94,176.02,176.11,176.18,176.26,176.34,176.42000000000002,176.6,29.36,29,28.830000000000002,28.63,28.44,28.26,28.060000000000002,27.88,27.5,N/A,N/A -2012,8,13,3,30,101370,100230,99130,76.74,0,7.23,7.83,7.96,8.03,8.07,8.1,8.120000000000001,8.14,8.16,182.5,182.43,182.42000000000002,182.42000000000002,182.42000000000002,182.43,182.43,182.44,182.46,29.26,28.900000000000002,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,8,13,4,30,101410,100270,99160,78.5,0,7.46,8.1,8.25,8.33,8.39,8.43,8.46,8.48,8.51,182.39000000000001,182.58,182.65,182.70000000000002,182.74,182.76,182.8,182.82,182.86,29.27,28.91,28.73,28.52,28.330000000000002,28.14,27.94,27.76,27.37,N/A,N/A -2012,8,13,5,30,101430,100290,99180,77.45,0,7.42,8.09,8.24,8.33,8.4,8.45,8.48,8.51,8.56,187.11,187.14000000000001,187.16,187.18,187.20000000000002,187.22,187.24,187.26,187.3,29.35,28.990000000000002,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A -2012,8,13,6,30,101520,100380,99270,80.69,0,7.72,8.41,8.57,8.66,8.73,8.77,8.8,8.82,8.84,192.02,192.11,192.11,192.09,192.06,192.02,191.98000000000002,191.94,191.85,29.310000000000002,28.93,28.75,28.55,28.36,28.16,27.97,27.78,27.39,N/A,N/A -2012,8,13,7,30,101550,100410,99300,78.92,0,6.1000000000000005,6.59,6.7,6.7700000000000005,6.82,6.86,6.890000000000001,6.92,6.96,203.34,202.83,202.73000000000002,202.65,202.59,202.56,202.53,202.52,202.52,29.490000000000002,29.14,28.96,28.77,28.580000000000002,28.38,28.19,28.01,27.62,N/A,N/A -2012,8,13,8,30,101550,100410,99310,79.28,0,6.3500000000000005,6.92,7.08,7.17,7.25,7.3100000000000005,7.3500000000000005,7.4,7.47,213.14000000000001,212.25,211.73000000000002,211.27,210.88,210.54,210.21,209.92000000000002,209.37,29.52,29.17,29,28.8,28.61,28.42,28.23,28.05,27.67,N/A,N/A -2012,8,13,9,30,101550,100410,99300,78.27,0,6.93,7.53,7.67,7.75,7.8,7.84,7.87,7.890000000000001,7.930000000000001,202.01,201.92000000000002,201.83,201.76,201.69,201.63,201.58,201.53,201.44,29.560000000000002,29.2,29.02,28.82,28.63,28.44,28.240000000000002,28.05,27.67,N/A,N/A -2012,8,13,10,30,101580,100440,99340,78.11,0,6.1000000000000005,6.5600000000000005,6.65,6.7,6.74,6.76,6.78,6.79,6.8,216.88,217.01,217.09,217.19,217.29,217.39000000000001,217.49,217.6,217.81,29.51,29.16,28.98,28.78,28.59,28.400000000000002,28.21,28.02,27.64,N/A,N/A -2012,8,13,11,30,101570,100430,99330,78.66,0,5.94,6.48,6.61,6.69,6.75,6.8,6.83,6.86,6.9,210.43,210.95000000000002,211.17000000000002,211.38,211.55,211.72,211.89000000000001,212.04,212.33,29.580000000000002,29.23,29.05,28.85,28.66,28.47,28.27,28.080000000000002,27.7,N/A,N/A -2012,8,13,12,30,101600,100460,99350,76.64,0,6.63,7.2,7.32,7.390000000000001,7.43,7.46,7.48,7.49,7.5,231.22,230.69,230.37,230.06,229.8,229.54,229.31,229.08,228.63,29.71,29.36,29.18,28.98,28.79,28.59,28.400000000000002,28.21,27.830000000000002,N/A,N/A -2012,8,13,13,30,101620,100470,99370,73.99,0,6.66,7.19,7.29,7.34,7.37,7.390000000000001,7.390000000000001,7.4,7.390000000000001,221.18,221.18,221.13,221.07,221.02,220.97,220.91,220.86,220.76,29.73,29.38,29.21,29.02,28.830000000000002,28.63,28.44,28.25,27.87,N/A,N/A -2012,8,13,14,30,101640,100490,99390,72.47,0,6.640000000000001,7.19,7.3,7.36,7.4,7.43,7.45,7.46,7.49,216.38,216.74,216.98000000000002,217.22,217.44,217.65,217.85,218.05,218.45000000000002,29.810000000000002,29.48,29.310000000000002,29.11,28.92,28.73,28.53,28.34,27.96,N/A,N/A -2012,8,13,15,30,101660,100520,99410,68.37,0,7.42,8.040000000000001,8.16,8.22,8.26,8.290000000000001,8.31,8.33,8.34,225.48000000000002,225.64000000000001,225.75,225.87,225.98000000000002,226.09,226.20000000000002,226.3,226.49,29.96,29.63,29.46,29.27,29.07,28.88,28.69,28.5,28.11,N/A,N/A -2012,8,13,16,30,101700,100550,99440,74.15,0,6.38,6.9,7.03,7.12,7.19,7.24,7.28,7.32,7.390000000000001,241.51,240.22,239.37,238.54,237.84,237.23000000000002,236.66,236.13,235.19,29.67,29.34,29.18,28.98,28.8,28.62,28.43,28.25,27.88,N/A,N/A -2012,8,13,17,30,101670,100520,99420,70.19,0,6.24,6.79,6.92,7,7.07,7.11,7.15,7.18,7.22,230.46,230.18,230.02,229.88,229.76,229.64000000000001,229.53,229.43,229.24,29.87,29.53,29.36,29.16,28.98,28.78,28.59,28.400000000000002,28.02,N/A,N/A -2012,8,13,18,30,101660,100520,99410,70.36,0,5.99,6.5,6.61,6.68,6.73,6.7700000000000005,6.79,6.82,6.8500000000000005,217.99,218.12,218.20000000000002,218.24,218.28,218.32,218.34,218.35,218.39000000000001,29.92,29.59,29.42,29.21,29.02,28.830000000000002,28.64,28.45,28.07,N/A,N/A -2012,8,13,19,30,101610,100470,99360,69.56,0,6.71,7.26,7.36,7.41,7.43,7.45,7.46,7.46,7.45,208.58,208.49,208.49,208.47,208.43,208.4,208.35,208.3,208.18,29.95,29.62,29.45,29.26,29.07,28.88,28.69,28.51,28.14,N/A,N/A -2012,8,13,20,30,101560,100420,99310,69.93,0,7,7.59,7.7,7.75,7.7700000000000005,7.79,7.79,7.78,7.76,205.88,205.65,205.56,205.46,205.35,205.25,205.14000000000001,205.04,204.8,29.95,29.62,29.45,29.26,29.07,28.88,28.69,28.51,28.14,N/A,N/A -2012,8,13,21,30,101530,100390,99280,68.93,0,7.22,7.84,7.96,8.01,8.040000000000001,8.05,8.05,8.05,8.02,197.26,197.08,197.03,196.97,196.9,196.84,196.78,196.71,196.57,30.01,29.7,29.53,29.330000000000002,29.150000000000002,28.96,28.77,28.580000000000002,28.21,N/A,N/A -2012,8,13,22,30,101530,100390,99290,73.04,0,6.78,7.36,7.5,7.57,7.62,7.640000000000001,7.66,7.67,7.68,192.12,192.17000000000002,192.18,192.17000000000002,192.15,192.14000000000001,192.12,192.1,192.06,29.85,29.52,29.36,29.16,28.97,28.78,28.59,28.400000000000002,28.02,N/A,N/A -2012,8,13,23,30,101470,100330,99220,74.54,0,7.83,8.51,8.65,8.73,8.78,8.81,8.82,8.84,8.84,194,193.96,193.94,193.91,193.89000000000001,193.86,193.83,193.8,193.74,29.79,29.45,29.27,29.080000000000002,28.89,28.69,28.5,28.310000000000002,27.93,N/A,N/A -2012,8,14,0,30,101400,100260,99150,70.54,0,8.53,9.31,9.47,9.55,9.6,9.63,9.65,9.66,9.66,196.48000000000002,196.46,196.44,196.41,196.4,196.38,196.35,196.33,196.3,29.89,29.560000000000002,29.39,29.2,29.01,28.82,28.63,28.45,28.080000000000002,N/A,N/A -2012,8,14,1,30,101400,100260,99150,72.82000000000001,0,8.55,9.31,9.47,9.540000000000001,9.58,9.6,9.6,9.6,9.57,197.09,196.98000000000002,196.89000000000001,196.82,196.74,196.67000000000002,196.6,196.53,196.36,29.78,29.44,29.27,29.080000000000002,28.89,28.7,28.51,28.330000000000002,27.95,N/A,N/A -2012,8,14,2,30,101450,100310,99210,69.77,0,7.98,8.71,8.870000000000001,8.96,9.03,9.07,9.1,9.120000000000001,9.15,193.15,193.58,193.78,193.96,194.12,194.26,194.39000000000001,194.52,194.76,29.85,29.52,29.35,29.150000000000002,28.96,28.77,28.580000000000002,28.39,28.01,N/A,N/A -2012,8,14,3,30,101460,100320,99220,70.71000000000001,0,8,8.69,8.83,8.9,8.94,8.950000000000001,8.96,8.96,8.94,199.92000000000002,199.91,199.86,199.78,199.71,199.63,199.56,199.48000000000002,199.33,29.88,29.55,29.38,29.19,29,28.810000000000002,28.62,28.43,28.05,N/A,N/A -2012,8,14,4,30,101430,100290,99190,67.73,0,8.23,8.99,9.15,9.22,9.27,9.290000000000001,9.3,9.31,9.290000000000001,202.41,202.53,202.58,202.62,202.66,202.69,202.72,202.75,202.79,30,29.69,29.52,29.32,29.14,28.95,28.75,28.57,28.19,N/A,N/A -2012,8,14,5,30,101430,100290,99190,69.66,0,8.25,9.03,9.21,9.3,9.370000000000001,9.41,9.450000000000001,9.47,9.51,206.82,206.92000000000002,206.98000000000002,207.06,207.14000000000001,207.21,207.29,207.37,207.53,29.89,29.560000000000002,29.400000000000002,29.2,29.01,28.82,28.63,28.44,28.07,N/A,N/A -2012,8,14,6,30,101460,100320,99220,67.23,0,8.28,9.08,9.26,9.35,9.41,9.44,9.46,9.47,9.47,218.13,218.1,218.04,217.96,217.88,217.81,217.72,217.65,217.48000000000002,30.09,29.810000000000002,29.650000000000002,29.46,29.27,29.09,28.900000000000002,28.71,28.330000000000002,N/A,N/A -2012,8,14,7,30,101480,100340,99230,72.93,0,6.98,7.62,7.75,7.8100000000000005,7.86,7.890000000000001,7.92,7.930000000000001,7.97,220.19,219.97,219.89000000000001,219.81,219.74,219.67000000000002,219.6,219.52,219.4,29.830000000000002,29.51,29.34,29.150000000000002,28.96,28.77,28.580000000000002,28.400000000000002,28.04,N/A,N/A -2012,8,14,8,30,101470,100330,99220,75.45,0,6.82,7.45,7.6000000000000005,7.7,7.7700000000000005,7.83,7.890000000000001,7.930000000000001,8.02,219.25,219.33,219.35,219.4,219.43,219.47,219.51,219.55,219.63,29.63,29.310000000000002,29.14,28.95,28.76,28.57,28.38,28.2,27.830000000000002,N/A,N/A -2012,8,14,9,30,101470,100330,99220,79.72,0,6.95,7.47,7.6000000000000005,7.66,7.71,7.75,7.7700000000000005,7.8,7.83,225.43,225.67000000000002,225.73000000000002,225.77,225.81,225.85,225.88,225.91,225.98000000000002,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.89,27.51,N/A,N/A -2012,8,14,10,30,101510,100360,99260,80.16,0,7.79,8.52,8.68,8.77,8.83,8.86,8.89,8.9,8.91,227.89000000000001,227.9,227.87,227.83,227.78,227.73000000000002,227.67000000000002,227.61,227.48000000000002,29.46,29.11,28.93,28.73,28.54,28.34,28.150000000000002,27.96,27.580000000000002,N/A,N/A -2012,8,14,11,30,101520,100370,99270,80.31,0,6.12,6.65,6.78,6.87,6.94,7,7.05,7.09,7.16,233.82,233.57,233.41,233.26,233.14000000000001,233.03,232.93,232.84,232.66,29.39,29.05,28.88,28.68,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A -2012,8,14,12,30,101530,100390,99290,78.93,0,6.82,7.3500000000000005,7.47,7.54,7.58,7.62,7.640000000000001,7.67,7.71,241.04,240.84,240.73000000000002,240.62,240.51,240.4,240.29,240.19,239.98000000000002,29.37,29.03,28.86,28.66,28.48,28.29,28.1,27.92,27.54,N/A,N/A -2012,8,14,13,30,101570,100430,99320,79.89,0,6.36,6.9,7.0200000000000005,7.08,7.12,7.15,7.17,7.18,7.19,232.93,232.79,232.8,232.81,232.83,232.85,232.87,232.9,232.94,29.35,29,28.830000000000002,28.62,28.43,28.240000000000002,28.04,27.85,27.47,N/A,N/A -2012,8,14,14,30,101580,100440,99330,74.21000000000001,0,6.63,7.21,7.34,7.41,7.46,7.49,7.51,7.53,7.5600000000000005,239.70000000000002,239.77,239.78,239.78,239.77,239.76,239.73000000000002,239.71,239.65,29.62,29.29,29.12,28.92,28.73,28.54,28.35,28.16,27.78,N/A,N/A -2012,8,14,15,30,101560,100420,99320,77.01,0,6.74,7.29,7.4,7.45,7.48,7.5,7.5,7.5,7.49,241.53,241.4,241.39000000000001,241.4,241.41,241.42000000000002,241.44,241.46,241.5,29.52,29.17,29,28.8,28.61,28.41,28.22,28.03,27.650000000000002,N/A,N/A -2012,8,14,16,30,101580,100430,99330,78.59,0,5.22,5.6000000000000005,5.69,5.73,5.76,5.78,5.79,5.8,5.82,234.94,234.92000000000002,234.94,234.96,234.97,234.98000000000002,234.99,235.01,235.03,29.47,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A -2012,8,14,17,30,101550,100400,99300,79.13,0,5.8,6.25,6.3500000000000005,6.41,6.45,6.47,6.49,6.51,6.54,217.07,217.23000000000002,217.34,217.44,217.53,217.61,217.70000000000002,217.77,217.94,29.46,29.11,28.94,28.73,28.55,28.36,28.16,27.98,27.6,N/A,N/A -2012,8,14,18,30,101510,100370,99260,78.17,0,6,6.49,6.6000000000000005,6.67,6.73,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.92,205.32,205.82,206.07,206.32,206.57,206.81,207.08,207.33,207.93,29.63,29.29,29.12,28.93,28.740000000000002,28.560000000000002,28.37,28.19,27.830000000000002,N/A,N/A -2012,8,14,19,30,101500,100360,99260,78.86,0,7.61,8.28,8.44,8.52,8.58,8.63,8.66,8.69,8.73,203.88,204.08,204.24,204.38,204.51,204.64000000000001,204.76,204.88,205.13,29.62,29.27,29.1,28.900000000000002,28.72,28.53,28.330000000000002,28.150000000000002,27.77,N/A,N/A -2012,8,14,20,30,101450,100310,99210,79.35000000000001,0,8.35,9.1,9.26,9.34,9.4,9.43,9.450000000000001,9.46,9.46,211.97,212.12,212.17000000000002,212.22,212.27,212.32,212.37,212.42000000000002,212.53,29.5,29.150000000000002,28.98,28.78,28.59,28.400000000000002,28.21,28.02,27.64,N/A,N/A -2012,8,14,21,30,101390,100250,99150,81.29,0,8.23,8.98,9.14,9.23,9.28,9.32,9.34,9.35,9.35,210.70000000000002,210.59,210.58,210.57,210.55,210.54,210.53,210.51,210.48000000000002,29.39,29.03,28.86,28.66,28.47,28.27,28.080000000000002,27.900000000000002,27.51,N/A,N/A -2012,8,14,22,30,101390,100250,99150,79.72,0,8.290000000000001,9.03,9.200000000000001,9.290000000000001,9.35,9.39,9.41,9.43,9.44,206.25,206.32,206.35,206.35,206.36,206.36,206.36,206.35,206.34,29.37,29.01,28.84,28.63,28.44,28.25,28.060000000000002,27.87,27.490000000000002,N/A,N/A -2012,8,14,23,30,101360,100220,99110,75.46000000000001,0,8.52,9.27,9.43,9.51,9.55,9.58,9.59,9.59,9.58,206.14000000000001,206.21,206.24,206.25,206.26,206.27,206.27,206.27,206.26,29.47,29.13,28.95,28.75,28.560000000000002,28.37,28.18,28,27.62,N/A,N/A -2012,8,15,0,30,101330,100190,99080,66.24,0,8.56,9.32,9.49,9.58,9.63,9.67,9.69,9.700000000000001,9.72,206.19,206.24,206.35,206.48000000000002,206.6,206.71,206.83,206.95000000000002,207.18,29.82,29.52,29.35,29.16,28.98,28.79,28.59,28.41,28.04,N/A,N/A -2012,8,15,1,30,101290,100140,99040,66.75,0,8.1,8.84,8.99,9.08,9.14,9.18,9.21,9.23,9.27,203.97,204.02,204.12,204.24,204.34,204.45000000000002,204.57,204.67000000000002,204.92000000000002,29.71,29.400000000000002,29.240000000000002,29.04,28.86,28.67,28.48,28.3,27.93,N/A,N/A -2012,8,15,2,30,101300,100160,99050,73.60000000000001,0,8.05,8.77,8.94,9.02,9.08,9.120000000000001,9.14,9.16,9.18,205.41,205.49,205.53,205.56,205.59,205.63,205.66,205.70000000000002,205.78,29.34,28.990000000000002,28.810000000000002,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A -2012,8,15,3,30,101310,100170,99070,76.76,0,7.6000000000000005,8.26,8.4,8.48,8.53,8.56,8.58,8.59,8.6,203.92000000000002,204.06,204.15,204.26,204.36,204.45000000000002,204.55,204.64000000000001,204.84,29.240000000000002,28.88,28.71,28.5,28.310000000000002,28.12,27.93,27.740000000000002,27.36,N/A,N/A -2012,8,15,4,30,101320,100180,99070,74.68,0,8.040000000000001,8.74,8.91,8.98,9.040000000000001,9.07,9.09,9.11,9.120000000000001,198.92000000000002,199,199.01,199.03,199.05,199.06,199.07,199.09,199.12,29.34,28.98,28.810000000000002,28.61,28.42,28.23,28.03,27.85,27.46,N/A,N/A -2012,8,15,5,30,101300,100160,99050,80.48,0,7.91,8.63,8.8,8.9,8.97,9.01,9.05,9.08,9.11,195.99,195.95000000000002,195.96,195.98000000000002,196,196.02,196.06,196.08,196.16,29.18,28.810000000000002,28.63,28.43,28.23,28.04,27.85,27.66,27.27,N/A,N/A -2012,8,15,6,30,101260,100130,99020,81.82000000000001,0,8.18,8.94,9.120000000000001,9.22,9.290000000000001,9.34,9.370000000000001,9.39,9.43,199.27,199.39000000000001,199.45000000000002,199.5,199.55,199.61,199.66,199.71,199.83,29.12,28.77,28.59,28.39,28.2,28.01,27.82,27.63,27.25,N/A,N/A -2012,8,15,7,30,101290,100160,99050,82.81,0,8.51,9.32,9.52,9.63,9.71,9.76,9.81,9.84,9.88,200,199.98000000000002,199.97,199.97,199.97,199.98000000000002,199.99,200,200.04,29.18,28.830000000000002,28.66,28.45,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,15,8,30,101300,100170,99060,78.72,0,8.39,9.24,9.44,9.55,9.63,9.69,9.73,9.76,9.790000000000001,206.22,206.24,206.24,206.23000000000002,206.22,206.20000000000002,206.19,206.17000000000002,206.13,29.44,29.11,28.94,28.740000000000002,28.55,28.36,28.17,27.98,27.6,N/A,N/A -2012,8,15,9,30,101330,100190,99090,80.49,0,8.46,9.26,9.450000000000001,9.55,9.620000000000001,9.66,9.700000000000001,9.72,9.74,207.12,207.32,207.42000000000002,207.51,207.59,207.66,207.72,207.8,207.93,29.25,28.91,28.73,28.53,28.34,28.150000000000002,27.96,27.77,27.39,N/A,N/A -2012,8,15,10,30,101350,100210,99100,82.29,0,7.6000000000000005,8.3,8.47,8.58,8.66,8.72,8.76,8.790000000000001,8.84,210.88,210.69,210.65,210.62,210.6,210.6,210.6,210.6,210.63,29.17,28.82,28.64,28.44,28.25,28.05,27.86,27.67,27.28,N/A,N/A -2012,8,15,11,30,101380,100240,99130,81.47,0,7.21,7.86,8.02,8.11,8.19,8.24,8.28,8.32,8.370000000000001,214.95000000000002,214.76,214.58,214.41,214.26,214.11,213.96,213.82,213.54,29.17,28.82,28.650000000000002,28.45,28.26,28.07,27.87,27.69,27.310000000000002,N/A,N/A -2012,8,15,12,30,101380,100240,99130,79.51,0,7.95,8.69,8.870000000000001,8.96,9.03,9.07,9.1,9.13,9.15,221.78,221.59,221.46,221.32,221.19,221.06,220.93,220.8,220.54,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A -2012,8,15,13,30,101430,100290,99190,75.76,0,7.8100000000000005,8.45,8.59,8.65,8.69,8.72,8.73,8.74,8.75,218.61,218.55,218.52,218.46,218.41,218.35,218.29,218.23000000000002,218.11,29.38,29.060000000000002,28.900000000000002,28.7,28.51,28.32,28.13,27.95,27.57,N/A,N/A -2012,8,15,14,30,101450,100310,99200,76.5,0,6.21,6.79,6.93,7.0200000000000005,7.08,7.13,7.17,7.2,7.25,217.06,217.33,217.42000000000002,217.51,217.6,217.67000000000002,217.75,217.82,217.98000000000002,29.400000000000002,29.07,28.900000000000002,28.7,28.51,28.32,28.12,27.93,27.55,N/A,N/A -2012,8,15,15,30,101460,100320,99220,77.26,0,6.47,6.99,7.09,7.13,7.15,7.16,7.16,7.15,7.13,209.31,209.6,209.75,209.93,210.09,210.26,210.43,210.59,210.92000000000002,29.38,29.04,28.87,28.67,28.48,28.3,28.1,27.91,27.54,N/A,N/A -2012,8,15,16,30,101470,100330,99220,76.91,0,6.94,7.51,7.640000000000001,7.7,7.74,7.76,7.78,7.79,7.79,205.99,205.9,205.93,205.96,205.99,206.02,206.04,206.07,206.13,29.3,28.96,28.79,28.580000000000002,28.400000000000002,28.2,28.01,27.82,27.44,N/A,N/A -2012,8,15,17,30,101470,100320,99220,77.85000000000001,0,5.82,6.3,6.41,6.48,6.53,6.57,6.6000000000000005,6.63,6.68,211.33,211.23000000000002,211.19,211.13,211.06,210.99,210.93,210.86,210.72,29.27,28.94,28.77,28.560000000000002,28.38,28.19,27.990000000000002,27.8,27.42,N/A,N/A -2012,8,15,18,30,101470,100330,99220,73.93,0,5.66,6.13,6.25,6.34,6.4,6.45,6.49,6.53,6.6000000000000005,205.43,205.65,205.73000000000002,205.79,205.85,205.9,205.94,205.98000000000002,206.05,29.490000000000002,29.16,28.990000000000002,28.79,28.6,28.41,28.22,28.04,27.66,N/A,N/A -2012,8,15,19,30,101440,100300,99190,74.76,0,5.11,5.48,5.57,5.61,5.64,5.66,5.68,5.69,5.72,207.01,206.95000000000002,206.94,206.94,206.94,206.93,206.93,206.93,206.94,29.42,29.09,28.92,28.72,28.53,28.34,28.150000000000002,27.96,27.580000000000002,N/A,N/A -2012,8,15,20,30,101400,100260,99160,79.65,0,5.58,5.99,6.09,6.13,6.17,6.2,6.21,6.23,6.25,190.88,191.13,191.23000000000002,191.32,191.39000000000001,191.47,191.54,191.61,191.73000000000002,29.32,28.98,28.8,28.6,28.41,28.22,28.02,27.84,27.46,N/A,N/A -2012,8,15,21,30,101340,100200,99100,81.74,0,6.28,6.71,6.79,6.82,6.8500000000000005,6.8500000000000005,6.86,6.86,6.8500000000000005,204.36,203.63,203.04,202.37,201.78,201.20000000000002,200.62,200.07,198.96,29.35,29.02,28.85,28.650000000000002,28.46,28.27,28.080000000000002,27.900000000000002,27.53,N/A,N/A -2012,8,15,22,30,101340,100200,99090,81.02,0,5.93,6.44,6.5600000000000005,6.63,6.68,6.71,6.74,6.76,6.8,185.89000000000001,186.08,186.22,186.34,186.46,186.58,186.68,186.78,186.98,29.44,29.11,28.94,28.740000000000002,28.55,28.36,28.17,27.98,27.6,N/A,N/A -2012,8,15,23,30,101300,100160,99050,78.21000000000001,0,5.84,6.33,6.43,6.48,6.51,6.53,6.55,6.5600000000000005,6.57,190.27,190.44,190.49,190.56,190.62,190.68,190.74,190.79,190.91,29.45,29.13,28.96,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A -2012,8,16,0,30,101260,100120,99020,80.56,0,6.13,6.6000000000000005,6.7,6.75,6.78,6.8,6.8100000000000005,6.8100000000000005,6.8100000000000005,179.79,179.79,179.8,179.77,179.75,179.72,179.68,179.65,179.57,29.25,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,8,16,1,30,101270,100130,99030,83.19,0,6.37,6.91,7.03,7.11,7.16,7.2,7.23,7.25,7.29,175.89000000000001,175.86,175.88,175.89000000000001,175.91,175.91,175.92000000000002,175.93,175.94,29.19,28.84,28.67,28.47,28.28,28.09,27.900000000000002,27.71,27.330000000000002,N/A,N/A -2012,8,16,2,30,101290,100150,99040,83.04,0,7.46,8.09,8.23,8.290000000000001,8.34,8.36,8.370000000000001,8.38,8.38,170.77,170.78,170.72,170.64000000000001,170.56,170.46,170.37,170.28,170.07,29.25,28.900000000000002,28.73,28.53,28.34,28.150000000000002,27.96,27.77,27.39,N/A,N/A -2012,8,16,3,30,101340,100200,99100,82.36,0,7.79,8.51,8.68,8.77,8.83,8.870000000000001,8.9,8.92,8.950000000000001,172.11,172.09,172.05,172,171.96,171.91,171.87,171.83,171.75,29.25,28.91,28.73,28.54,28.35,28.150000000000002,27.96,27.78,27.39,N/A,N/A -2012,8,16,4,30,101350,100210,99110,82.88,0,8.44,9.25,9.450000000000001,9.56,9.63,9.68,9.72,9.75,9.790000000000001,175.07,175.06,175.06,175.07,175.07,175.08,175.1,175.11,175.14000000000001,29.27,28.92,28.75,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,8,16,5,30,101390,100250,99140,82.85000000000001,0,8.17,8.96,9.16,9.27,9.35,9.41,9.450000000000001,9.49,9.540000000000001,178.94,178.76,178.68,178.6,178.52,178.45000000000002,178.37,178.3,178.16,29.22,28.87,28.7,28.5,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A -2012,8,16,6,30,101410,100270,99170,82.89,0,8.38,9.31,9.53,9.68,9.78,9.86,9.92,9.97,10.040000000000001,178.08,178.3,178.32,178.3,178.29,178.26,178.23,178.20000000000002,178.14000000000001,29.400000000000002,29.07,28.900000000000002,28.71,28.52,28.330000000000002,28.14,27.95,27.580000000000002,N/A,N/A -2012,8,16,7,30,101470,100330,99220,81.9,0,8.53,9.370000000000001,9.6,9.73,9.82,9.89,9.950000000000001,9.99,10.06,175.96,176.41,176.71,177.02,177.29,177.56,177.81,178.06,178.55,29.27,28.95,28.79,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A -2012,8,16,8,30,101470,100320,99220,80.82000000000001,0,8.19,8.93,9.08,9.15,9.200000000000001,9.22,9.23,9.23,9.23,172.92000000000002,173.03,173.18,173.36,173.55,173.73,173.95000000000002,174.16,174.67000000000002,29.14,28.8,28.64,28.44,28.26,28.080000000000002,27.89,27.71,27.34,N/A,N/A -2012,8,16,9,30,101480,100340,99230,73.12,0,7.68,8.42,8.58,8.67,8.74,8.78,8.82,8.84,8.88,182.07,182.33,182.41,182.47,182.53,182.57,182.6,182.64000000000001,182.69,29.44,29.13,28.96,28.77,28.580000000000002,28.39,28.2,28.01,27.64,N/A,N/A -2012,8,16,10,30,101510,100370,99260,69.05,0,7.21,7.92,8.08,8.17,8.23,8.28,8.31,8.33,8.370000000000001,188.1,188.23,188.23,188.25,188.26,188.27,188.29,188.31,188.36,29.64,29.35,29.19,28.990000000000002,28.8,28.62,28.42,28.240000000000002,27.86,N/A,N/A -2012,8,16,11,30,101500,100360,99250,70.58,0,6.76,7.33,7.43,7.48,7.5,7.51,7.51,7.51,7.49,183.97,184.42000000000002,184.6,184.77,184.92000000000002,185.05,185.19,185.32,185.56,29.43,29.12,28.95,28.76,28.57,28.38,28.19,28,27.62,N/A,N/A -2012,8,16,12,30,101530,100390,99280,71.76,0,6.68,7.24,7.3500000000000005,7.4,7.43,7.45,7.46,7.46,7.46,187.38,187.67000000000002,187.8,187.91,188,188.08,188.15,188.22,188.33,29.39,29.080000000000002,28.91,28.71,28.52,28.330000000000002,28.14,27.95,27.57,N/A,N/A -2012,8,16,13,30,101590,100440,99340,67.76,0,5.32,5.76,5.8500000000000005,5.9,5.93,5.96,5.98,6,6.03,183.25,183.77,184.03,184.25,184.43,184.59,184.73,184.85,185.06,29.46,29.16,28.990000000000002,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A -2012,8,16,14,30,101600,100450,99350,70.41,0,4.6000000000000005,4.94,5.01,5.04,5.0600000000000005,5.08,5.09,5.1000000000000005,5.11,185.13,185.3,185.43,185.55,185.68,185.8,185.92000000000002,186.04,186.3,29.39,29.07,28.91,28.71,28.52,28.330000000000002,28.13,27.95,27.57,N/A,N/A -2012,8,16,15,30,101610,100460,99350,72.44,0,3.68,3.93,3.98,4,4.0200000000000005,4.03,4.04,4.04,4.05,181.45000000000002,181.74,181.92000000000002,182.09,182.25,182.41,182.56,182.70000000000002,182.99,29.28,28.95,28.79,28.59,28.400000000000002,28.21,28.01,27.830000000000002,27.44,N/A,N/A -2012,8,16,16,30,101620,100480,99370,72.8,0,3.0700000000000003,3.25,3.2800000000000002,3.31,3.3200000000000003,3.33,3.34,3.34,3.35,187.89000000000001,187.74,187.67000000000002,187.61,187.55,187.48,187.42000000000002,187.36,187.23,29.28,28.95,28.78,28.580000000000002,28.39,28.2,28.01,27.82,27.43,N/A,N/A -2012,8,16,17,30,101640,100500,99390,71.44,0,3.25,3.42,3.46,3.48,3.49,3.5,3.5100000000000002,3.5100000000000002,3.52,183.04,183.20000000000002,183.26,183.31,183.35,183.39000000000001,183.42000000000002,183.45000000000002,183.44,29.35,29.01,28.84,28.64,28.45,28.26,28.07,27.88,27.5,N/A,N/A -2012,8,16,18,30,101620,100480,99370,73.99,0,2.41,2.52,2.52,2.52,2.5100000000000002,2.5100000000000002,2.49,2.48,2.46,169.05,169.58,169.93,170.3,170.62,170.93,171.25,171.56,172.19,29.34,28.990000000000002,28.82,28.61,28.42,28.23,28.04,27.85,27.46,N/A,N/A -2012,8,16,19,30,101580,100440,99330,72.65,0,3.6,3.7800000000000002,3.81,3.81,3.81,3.81,3.81,3.8000000000000003,3.79,168.37,168.41,168.48,168.55,168.63,168.73,168.84,168.96,169.28,29.47,29.12,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.61,N/A,N/A -2012,8,16,20,30,101520,100380,99270,72.4,0,3.35,3.5500000000000003,3.6,3.62,3.64,3.66,3.67,3.69,3.71,166.15,166.02,165.88,165.74,165.63,165.53,165.43,165.34,165.17000000000002,29.57,29.23,29.060000000000002,28.86,28.68,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A -2012,8,16,21,30,101490,100350,99250,74.2,0,3.97,4.21,4.24,4.26,4.26,4.2700000000000005,4.26,4.26,4.25,164.92000000000002,165.18,165.31,165.44,165.55,165.67000000000002,165.79,165.92000000000002,166.17000000000002,29.580000000000002,29.25,29.080000000000002,28.88,28.69,28.5,28.310000000000002,28.12,27.75,N/A,N/A -2012,8,16,22,30,101480,100340,99230,72.01,0,5.15,5.55,5.62,5.65,5.67,5.68,5.69,5.69,5.7,162.61,162.73,162.78,162.82,162.87,162.92000000000002,162.97,163.01,163.14000000000001,29.73,29.43,29.27,29.07,28.89,28.7,28.51,28.330000000000002,27.95,N/A,N/A -2012,8,16,23,30,101490,100350,99240,75.5,0,4.8,5.18,5.25,5.28,5.3,5.32,5.33,5.33,5.34,162.37,162.5,162.6,162.70000000000002,162.78,162.88,162.97,163.06,163.24,29.6,29.3,29.13,28.94,28.75,28.560000000000002,28.37,28.19,27.810000000000002,N/A,N/A -2012,8,17,0,30,101450,100310,99200,77.94,0,4.83,5.2,5.26,5.29,5.32,5.33,5.34,5.34,5.3500000000000005,150.32,150.43,150.46,150.5,150.53,150.58,150.64000000000001,150.69,150.81,29.48,29.17,29,28.8,28.62,28.43,28.240000000000002,28.05,27.67,N/A,N/A -2012,8,17,1,30,101450,100310,99200,80.85000000000001,0,5.44,5.88,5.96,6,6.03,6.05,6.07,6.08,6.09,146.83,146.8,146.79,146.8,146.8,146.8,146.8,146.81,146.83,29.41,29.09,28.93,28.73,28.54,28.35,28.16,27.97,27.6,N/A,N/A -2012,8,17,2,30,101420,100290,99180,83.53,0,5.08,5.46,5.55,5.58,5.61,5.63,5.63,5.64,5.64,163.53,163.16,162.86,162.54,162.25,161.97,161.67000000000002,161.39000000000001,160.82,29.35,29.03,28.86,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A -2012,8,17,3,30,101460,100320,99210,82.77,0,5.69,6.140000000000001,6.23,6.2700000000000005,6.3,6.32,6.32,6.33,6.32,165.84,165.92000000000002,165.94,165.94,165.95000000000002,165.94,165.94,165.93,165.91,29.28,28.95,28.78,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.46,N/A,N/A -2012,8,17,4,30,101470,100330,99220,81.83,0,5.86,6.33,6.43,6.48,6.51,6.53,6.55,6.5600000000000005,6.5600000000000005,174.76,174.75,174.70000000000002,174.67000000000002,174.64000000000001,174.61,174.59,174.58,174.55,29.32,28.990000000000002,28.830000000000002,28.62,28.44,28.25,28.060000000000002,27.87,27.5,N/A,N/A -2012,8,17,5,30,101470,100320,99220,81.93,0,5.7,6.13,6.21,6.24,6.26,6.26,6.25,6.24,6.2,170.9,171.13,171.3,171.48,171.64000000000001,171.8,171.97,172.13,172.46,29.26,28.93,28.76,28.560000000000002,28.37,28.18,27.98,27.79,27.41,N/A,N/A -2012,8,17,6,30,101500,100360,99250,85.27,0,6.59,7.140000000000001,7.2700000000000005,7.33,7.38,7.4,7.42,7.43,7.43,180.25,180.25,180.27,180.27,180.29,180.29,180.29,180.29,180.29,29.12,28.77,28.6,28.400000000000002,28.21,28.01,27.82,27.63,27.25,N/A,N/A -2012,8,17,7,30,101530,100390,99280,82.75,0,6.2,6.7,6.8100000000000005,6.87,6.92,6.94,6.96,6.98,6.99,186.15,186.19,186.22,186.25,186.28,186.3,186.32,186.34,186.39000000000001,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,8,17,8,30,101510,100370,99260,84.11,0,5.89,6.32,6.4,6.43,6.43,6.43,6.41,6.4,6.3500000000000005,187.66,187.98,188.19,188.41,188.61,188.81,189.01,189.21,189.67000000000002,29.2,28.87,28.7,28.5,28.310000000000002,28.12,27.93,27.75,27.37,N/A,N/A -2012,8,17,9,30,101540,100400,99300,84.27,0,5.51,5.89,5.97,6,6.0200000000000005,6.03,6.03,6.03,6.0200000000000005,202.73000000000002,202.70000000000002,202.70000000000002,202.72,202.75,202.78,202.82,202.86,202.96,29.21,28.87,28.7,28.51,28.32,28.13,27.93,27.75,27.37,N/A,N/A -2012,8,17,10,30,101550,100410,99300,79.8,0,5.76,6.23,6.33,6.37,6.4,6.42,6.43,6.43,6.43,202.61,202.25,202.06,201.89000000000001,201.74,201.58,201.43,201.3,201.02,29.44,29.12,28.95,28.76,28.57,28.38,28.19,28.01,27.63,N/A,N/A -2012,8,17,11,30,101560,100410,99310,81.15,0,6.51,7.0600000000000005,7.17,7.22,7.25,7.26,7.2700000000000005,7.26,7.25,200.02,200.23000000000002,200.35,200.48000000000002,200.61,200.73000000000002,200.85,200.97,201.21,29.38,29.05,28.89,28.69,28.5,28.310000000000002,28.11,27.93,27.55,N/A,N/A -2012,8,17,12,30,101570,100430,99320,76.52,0,6,6.45,6.53,6.5600000000000005,6.57,6.58,6.57,6.5600000000000005,6.53,199.62,200.12,200.48000000000002,200.86,201.19,201.52,201.86,202.18,202.84,29.5,29.18,29.02,28.82,28.63,28.44,28.25,28.060000000000002,27.68,N/A,N/A -2012,8,17,13,30,101570,100430,99320,78.48,0,5.8500000000000005,6.29,6.37,6.4,6.42,6.43,6.43,6.42,6.4,210.95000000000002,211.04,211.06,211.08,211.1,211.13,211.15,211.17000000000002,211.21,29.32,28.990000000000002,28.830000000000002,28.62,28.44,28.25,28.05,27.86,27.48,N/A,N/A -2012,8,17,14,30,101550,100400,99300,77.9,0,5.9,6.38,6.48,6.54,6.58,6.6000000000000005,6.62,6.63,6.640000000000001,212.97,212.95000000000002,212.92000000000002,212.89000000000001,212.86,212.82,212.78,212.74,212.67000000000002,29.3,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A -2012,8,17,15,30,101600,100460,99350,78.78,0,5.89,6.33,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.57,6.58,224.03,224.32,224.44,224.56,224.66,224.75,224.84,224.92000000000002,225.08,29.310000000000002,28.97,28.8,28.6,28.41,28.22,28.03,27.84,27.46,N/A,N/A -2012,8,17,16,30,101560,100420,99310,77.54,0,5.33,5.71,5.78,5.8,5.82,5.82,5.82,5.82,5.8,215.66,216.16,216.33,216.51,216.68,216.85,217.02,217.18,217.56,29.330000000000002,28.990000000000002,28.830000000000002,28.62,28.44,28.240000000000002,28.05,27.86,27.490000000000002,N/A,N/A -2012,8,17,17,30,101540,100400,99290,78.08,0,4.82,5.17,5.24,5.28,5.3100000000000005,5.33,5.34,5.36,5.37,227.72,227.93,228.13,228.3,228.45000000000002,228.58,228.71,228.84,229.07,29.400000000000002,29.060000000000002,28.89,28.69,28.5,28.310000000000002,28.12,27.93,27.55,N/A,N/A -2012,8,17,18,30,101470,100330,99220,81.87,0,6.26,6.69,6.76,6.78,6.79,6.79,6.79,6.78,6.75,223.79,224.07,224.14000000000001,224.24,224.32,224.41,224.51,224.6,224.81,29.28,28.94,28.77,28.57,28.38,28.19,28.01,27.82,27.46,N/A,N/A -2012,8,17,19,30,101470,100330,99220,81.72,0,5.98,6.44,6.54,6.6000000000000005,6.63,6.65,6.67,6.67,6.68,225.11,225.39000000000001,225.44,225.46,225.5,225.52,225.55,225.56,225.58,29.34,29,28.82,28.62,28.44,28.25,28.05,27.86,27.490000000000002,N/A,N/A -2012,8,17,20,30,101480,100340,99230,83.16,0,6.59,7.15,7.2700000000000005,7.33,7.36,7.37,7.36,7.3500000000000005,7.3100000000000005,219.94,220.01,220.02,220.03,220.04,220.05,220.06,220.06,220.06,29.37,29.04,28.87,28.66,28.48,28.28,28.09,27.900000000000002,27.52,N/A,N/A -2012,8,17,21,30,101470,100330,99220,80.08,0,7.65,8.36,8.53,8.620000000000001,8.69,8.73,8.75,8.77,8.790000000000001,242.84,242.97,242.88,242.82,242.78,242.76,242.74,242.73000000000002,242.72,29.52,29.2,29.03,28.830000000000002,28.650000000000002,28.45,28.26,28.07,27.69,N/A,N/A -2012,8,17,22,30,101400,100260,99160,79.17,0,7.13,7.75,7.87,7.930000000000001,7.96,7.98,7.98,7.98,7.97,237.85,237.83,237.84,237.85,237.84,237.83,237.82,237.81,237.76,29.51,29.19,29.02,28.82,28.64,28.45,28.26,28.07,27.69,N/A,N/A -2012,8,17,23,30,101360,100220,99110,83.55,0,5.18,5.5200000000000005,5.59,5.63,5.65,5.67,5.7,5.73,5.8500000000000005,245.27,243.84,243.02,242.05,241.09,240.03,238.86,237.66,234.70000000000002,28.75,28.41,28.26,28.07,27.900000000000002,27.740000000000002,27.57,27.42,27.12,N/A,N/A -2012,8,18,0,30,101320,100180,99080,76.46000000000001,0,5.21,5.66,5.75,5.8,5.84,5.87,5.9,5.92,5.95,221.3,221.55,221.56,221.56,221.57,221.59,221.61,221.63,221.69,29.490000000000002,29.17,29,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A -2012,8,18,1,30,101320,100180,99080,75.46000000000001,0,5.59,6.04,6.11,6.140000000000001,6.16,6.16,6.15,6.140000000000001,6.1000000000000005,216.03,216.03,216.05,216.03,216,215.97,215.93,215.88,215.77,29.48,29.16,29,28.8,28.61,28.42,28.23,28.04,27.67,N/A,N/A -2012,8,18,2,30,101320,100180,99080,74.63,0,5.51,5.91,5.99,6.03,6.05,6.07,6.08,6.09,6.12,207.29,207.24,207.24,207.27,207.3,207.33,207.38,207.44,207.59,29.42,29.12,28.95,28.76,28.580000000000002,28.39,28.21,28.03,27.67,N/A,N/A -2012,8,18,3,30,101320,100180,99070,72.06,0,5.9,6.41,6.5200000000000005,6.57,6.61,6.640000000000001,6.67,6.69,6.73,199.34,199.53,199.65,199.77,199.87,199.98000000000002,200.09,200.20000000000002,200.46,29.6,29.3,29.14,28.94,28.76,28.57,28.38,28.2,27.830000000000002,N/A,N/A -2012,8,18,4,30,101330,100190,99080,74.82000000000001,0,5.62,6.05,6.140000000000001,6.17,6.19,6.2,6.19,6.19,6.16,203.25,203.09,202.91,202.71,202.53,202.35,202.17000000000002,201.98000000000002,201.64000000000001,29.42,29.11,28.95,28.75,28.560000000000002,28.37,28.18,27.990000000000002,27.62,N/A,N/A -2012,8,18,5,30,101320,100180,99080,77.24,0,6.390000000000001,6.87,6.93,6.94,6.94,6.92,6.890000000000001,6.86,6.79,206.86,206.48000000000002,206.29,206.07,205.87,205.66,205.45000000000002,205.25,204.81,29.240000000000002,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.79,27.41,N/A,N/A -2012,8,18,6,30,101350,100210,99100,75.64,0,5.98,6.45,6.53,6.57,6.6000000000000005,6.61,6.61,6.6000000000000005,6.58,203.82,203.92000000000002,203.98000000000002,204.04,204.09,204.12,204.15,204.18,204.20000000000002,29.29,28.97,28.8,28.61,28.42,28.23,28.04,27.85,27.47,N/A,N/A -2012,8,18,7,30,101370,100230,99120,78.36,0,6.890000000000001,7.42,7.53,7.58,7.61,7.63,7.640000000000001,7.65,7.66,200.69,200.63,200.64000000000001,200.68,200.72,200.76,200.81,200.85,200.97,29.14,28.810000000000002,28.64,28.44,28.26,28.080000000000002,27.89,27.7,27.330000000000002,N/A,N/A -2012,8,18,8,30,101330,100190,99080,80.37,0,6.61,7.17,7.29,7.3500000000000005,7.4,7.43,7.44,7.46,7.46,212,211.97,211.9,211.82,211.75,211.67000000000002,211.6,211.53,211.36,29,28.66,28.48,28.28,28.09,27.900000000000002,27.7,27.51,27.13,N/A,N/A -2012,8,18,9,30,101340,100200,99100,80.74,0,7.37,8,8.14,8.22,8.26,8.290000000000001,8.32,8.33,8.34,212.55,212.6,212.62,212.64000000000001,212.65,212.66,212.67000000000002,212.67000000000002,212.68,29,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.14,N/A,N/A -2012,8,18,10,30,101350,100210,99100,81.31,0,6.78,7.33,7.46,7.53,7.57,7.6000000000000005,7.61,7.63,7.640000000000001,210.89000000000001,210.86,210.87,210.87,210.87,210.87,210.86,210.85,210.83,28.96,28.62,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,8,18,11,30,101360,100220,99110,83.08,0,6.44,6.95,7.07,7.13,7.17,7.21,7.23,7.25,7.2700000000000005,217.87,217.86,217.87,217.88,217.9,217.91,217.93,217.94,217.99,28.89,28.53,28.36,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.02,N/A,N/A -2012,8,18,12,30,101370,100230,99130,85.04,0,6.36,6.8500000000000005,6.97,7.03,7.08,7.11,7.13,7.140000000000001,7.17,218.19,218.18,218.18,218.17000000000002,218.15,218.14000000000001,218.12,218.11,218.09,28.830000000000002,28.47,28.3,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.95,N/A,N/A -2012,8,18,13,30,101360,100220,99120,86.89,0,6.390000000000001,7,7.140000000000001,7.22,7.28,7.32,7.3500000000000005,7.36,7.38,220.4,220.17000000000002,220.1,220.05,220.02,220,219.99,219.99,219.99,28.830000000000002,28.46,28.29,28.080000000000002,27.89,27.7,27.5,27.310000000000002,26.92,N/A,N/A -2012,8,18,14,30,101380,100240,99140,85.18,0,6.91,7.42,7.53,7.57,7.59,7.6000000000000005,7.6000000000000005,7.6000000000000005,7.58,226.46,226.79,226.85,226.88,226.9,226.91,226.91,226.92000000000002,226.94,28.87,28.51,28.34,28.14,27.95,27.76,27.57,27.39,27.02,N/A,N/A -2012,8,18,15,30,101370,100230,99130,79.11,0,7.5600000000000005,8.25,8.41,8.5,8.56,8.6,8.63,8.65,8.68,235.14000000000001,235.16,235.15,235.14000000000001,235.13,235.12,235.11,235.1,235.08,29.23,28.89,28.72,28.52,28.330000000000002,28.14,27.95,27.76,27.38,N/A,N/A -2012,8,18,16,30,101380,100240,99140,76.85000000000001,0,7.09,7.73,7.890000000000001,7.98,8.040000000000001,8.09,8.13,8.17,8.22,229.39000000000001,229.69,229.83,229.97,230.1,230.23000000000002,230.34,230.45000000000002,230.66,29.36,29.02,28.86,28.66,28.47,28.28,28.080000000000002,27.900000000000002,27.52,N/A,N/A -2012,8,18,17,30,101350,100210,99100,77.47,0,7.75,8.38,8.540000000000001,8.61,8.67,8.700000000000001,8.73,8.76,8.790000000000001,227.81,228.08,228.21,228.34,228.44,228.53,228.62,228.70000000000002,228.85,29.27,28.94,28.78,28.580000000000002,28.400000000000002,28.21,28.02,27.84,27.47,N/A,N/A -2012,8,18,18,30,101300,100160,99050,76.46000000000001,0,8.26,9.09,9.290000000000001,9.41,9.48,9.53,9.56,9.58,9.59,224.57,224.92000000000002,225.09,225.23000000000002,225.34,225.44,225.52,225.59,225.72,29.43,29.11,28.95,28.75,28.560000000000002,28.37,28.18,28,27.61,N/A,N/A -2012,8,18,19,30,101240,100100,98990,80.52,0,8.99,9.85,10.02,10.1,10.14,10.15,10.15,10.15,10.11,217.09,217.28,217.35,217.4,217.45000000000002,217.48000000000002,217.51,217.54,217.62,29.2,28.85,28.68,28.48,28.29,28.1,27.91,27.72,27.35,N/A,N/A -2012,8,18,20,30,101210,100070,98960,69.68,0,9.71,10.700000000000001,10.94,11.08,11.17,11.22,11.26,11.290000000000001,11.3,218.20000000000002,218.31,218.47,218.62,218.76,218.88,219,219.1,219.3,29.98,29.72,29.57,29.39,29.21,29.03,28.85,28.67,28.310000000000002,N/A,N/A -2012,8,18,21,30,101170,100030,98930,72.19,0,9.06,9.96,10.17,10.290000000000001,10.38,10.450000000000001,10.52,10.58,10.75,214.61,214.55,214.6,214.68,214.77,214.87,215,215.14000000000001,215.55,29.88,29.6,29.44,29.26,29.080000000000002,28.91,28.73,28.57,28.25,N/A,N/A -2012,8,18,22,30,101130,99990,98890,75.16,0,8.43,9.24,9.39,9.46,9.51,9.53,9.540000000000001,9.55,9.57,210.52,210.8,210.91,211,211.1,211.21,211.33,211.47,211.87,29.64,29.34,29.17,28.98,28.8,28.62,28.44,28.26,27.91,N/A,N/A -2012,8,18,23,30,101090,99960,98850,82.32000000000001,0,9.200000000000001,10.05,10.21,10.27,10.3,10.290000000000001,10.27,10.23,10.14,211.46,211.4,211.37,211.33,211.3,211.27,211.25,211.22,211.22,29.14,28.79,28.62,28.42,28.23,28.04,27.86,27.67,27.310000000000002,N/A,N/A -2012,8,19,0,30,101080,99940,98840,76.48,0,9.13,9.96,10.16,10.25,10.31,10.34,10.35,10.35,10.33,207.36,207.47,207.59,207.71,207.81,207.91,208,208.09,208.22,29.36,29.05,28.88,28.69,28.51,28.32,28.13,27.95,27.580000000000002,N/A,N/A -2012,8,19,1,30,101060,99920,98820,79.69,0,7.67,8.290000000000001,8.41,8.46,8.48,8.48,8.47,8.46,8.41,204.19,204.26,204.32,204.4,204.46,204.54,204.62,204.70000000000002,204.89000000000001,29.09,28.75,28.59,28.39,28.2,28.01,27.830000000000002,27.64,27.28,N/A,N/A -2012,8,19,2,30,101090,99960,98850,81.3,0,7.46,8.09,8.22,8.290000000000001,8.33,8.35,8.36,8.36,8.35,194.01,194.11,194.14000000000001,194.16,194.18,194.21,194.23000000000002,194.26,194.33,28.98,28.63,28.46,28.26,28.07,27.88,27.69,27.51,27.14,N/A,N/A -2012,8,19,3,30,101100,99960,98860,84.69,0,6.73,7.28,7.4,7.45,7.49,7.5,7.51,7.51,7.5,196.63,196.85,196.94,197,197.04,197.08,197.11,197.13,197.18,28.78,28.41,28.240000000000002,28.03,27.84,27.650000000000002,27.45,27.26,26.88,N/A,N/A -2012,8,19,4,30,101100,99960,98860,81.42,0,7.7700000000000005,8.41,8.56,8.63,8.68,8.71,8.72,8.73,8.73,196.51,196.22,196.12,196.04,195.96,195.9,195.84,195.78,195.66,28.78,28.42,28.25,28.04,27.85,27.66,27.47,27.28,26.91,N/A,N/A -2012,8,19,5,30,101120,99990,98880,81.13,0,6.9,7.48,7.61,7.68,7.73,7.76,7.78,7.79,7.8,193.98000000000002,194.11,194.24,194.41,194.56,194.73000000000002,194.9,195.07,195.44,28.85,28.490000000000002,28.310000000000002,28.11,27.92,27.72,27.53,27.34,26.96,N/A,N/A -2012,8,19,6,30,101160,100020,98910,75.75,0,7.79,8.45,8.6,8.67,8.71,8.74,8.75,8.76,8.76,189.94,190.28,190.37,190.42000000000002,190.45000000000002,190.46,190.47,190.48,190.47,28.990000000000002,28.650000000000002,28.48,28.27,28.080000000000002,27.89,27.7,27.51,27.12,N/A,N/A -2012,8,19,7,30,101180,100040,98930,72.33,0,7.36,7.99,8.14,8.22,8.28,8.32,8.34,8.370000000000001,8.4,196.86,196.88,196.83,196.76,196.70000000000002,196.64000000000001,196.58,196.52,196.39000000000001,29.13,28.8,28.63,28.43,28.240000000000002,28.05,27.86,27.68,27.3,N/A,N/A -2012,8,19,8,30,101180,100040,98940,68.56,0,7.26,7.9,8.05,8.13,8.19,8.23,8.26,8.28,8.32,200.66,200.48000000000002,200.31,200.14000000000001,199.98000000000002,199.84,199.69,199.55,199.28,29.28,28.96,28.8,28.59,28.41,28.22,28.02,27.84,27.46,N/A,N/A -2012,8,19,9,30,101190,100050,98940,69.14,0,7.33,7.95,8.09,8.16,8.2,8.23,8.25,8.26,8.27,197.19,197.45000000000002,197.59,197.73000000000002,197.86,197.99,198.11,198.23000000000002,198.47,29.3,28.98,28.82,28.62,28.43,28.240000000000002,28.04,27.86,27.48,N/A,N/A -2012,8,19,10,30,101230,100090,98980,73.56,0,6.7,7.29,7.43,7.5,7.5600000000000005,7.6000000000000005,7.63,7.65,7.68,208.55,208.5,208.49,208.48000000000002,208.47,208.47,208.46,208.45000000000002,208.43,29.17,28.84,28.67,28.46,28.28,28.080000000000002,27.89,27.7,27.32,N/A,N/A -2012,8,19,11,30,101230,100090,98980,72.22,0,6.42,6.96,7.07,7.13,7.17,7.19,7.2,7.21,7.21,203.12,203.32,203.46,203.6,203.73000000000002,203.87,204.01,204.14000000000001,204.4,29.150000000000002,28.82,28.650000000000002,28.45,28.26,28.060000000000002,27.87,27.68,27.29,N/A,N/A -2012,8,19,12,30,101250,100100,99000,72.38,0,5.7,6.140000000000001,6.23,6.28,6.3100000000000005,6.34,6.3500000000000005,6.3500000000000005,6.36,221.33,221.24,221.22,221.23000000000002,221.23000000000002,221.25,221.27,221.29,221.34,29.13,28.8,28.63,28.42,28.23,28.04,27.85,27.66,27.28,N/A,N/A -2012,8,19,13,30,101290,100150,99040,71.67,0,4.99,5.33,5.4,5.44,5.46,5.48,5.49,5.5,5.51,236.74,236.62,236.45000000000002,236.27,236.1,235.93,235.76,235.6,235.27,29.19,28.86,28.69,28.5,28.310000000000002,28.12,27.92,27.740000000000002,27.36,N/A,N/A -2012,8,19,14,30,101330,100190,99080,70.5,0,4.76,5.01,5.04,5.04,5.03,5.01,5,4.98,4.94,246.07,245.93,245.72,245.48000000000002,245.25,245.02,244.79,244.57,244.11,29.17,28.85,28.68,28.48,28.29,28.1,27.900000000000002,27.72,27.330000000000002,N/A,N/A -2012,8,19,15,30,101350,100210,99100,75.25,0,3.96,4.05,4.01,3.94,3.88,3.81,3.75,3.69,3.5700000000000003,313.5,312.22,311.25,310.13,309.08,307.99,306.87,305.78000000000003,303.41,28.78,28.44,28.27,28.07,27.89,27.7,27.51,27.32,26.95,N/A,N/A -2012,8,19,16,30,101340,100190,99090,71.9,0,2.66,2.7800000000000002,2.79,2.79,2.79,2.79,2.79,2.7800000000000002,2.77,313.27,312.27,311.65000000000003,311.04,310.5,309.98,309.47,309,308.04,28.92,28.580000000000002,28.41,28.21,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A -2012,8,19,17,30,101300,100160,99050,72.34,0,2.58,2.71,2.74,2.7600000000000002,2.7800000000000002,2.79,2.8000000000000003,2.81,2.82,349.82,348.86,348.35,347.87,347.42,346.97,346.51,346.07,345.13,28.84,28.490000000000002,28.32,28.12,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A -2012,8,19,18,30,101320,100180,99080,70.53,0,1.9100000000000001,2.0100000000000002,2.05,2.08,2.11,2.13,2.15,2.17,2.21,8.36,7.23,6.47,5.78,5.17,4.5600000000000005,3.99,3.46,2.38,29.27,28.93,28.76,28.55,28.37,28.18,27.98,27.79,27.41,N/A,N/A -2012,8,19,19,30,101230,100090,98990,70.18,0,1.69,1.6600000000000001,1.62,1.57,1.52,1.47,1.43,1.3900000000000001,1.3,132.64000000000001,130.55,129.15,127.59,126.02,124.42,122.56,120.77,116.37,29.34,28.98,28.810000000000002,28.62,28.43,28.240000000000002,28.05,27.87,27.5,N/A,N/A -2012,8,19,20,30,101350,100190,99070,94.15,444.6,6.12,6.43,6.51,6.57,6.6000000000000005,6.63,6.66,6.67,6.71,260.96,259.36,258.52,257.73,256.89,256.14,255.38,254.71,253.42000000000002,25.73,25.27,25.080000000000002,24.900000000000002,24.72,24.55,24.38,24.21,23.89,N/A,N/A -2012,8,19,21,30,101340,100180,99060,84.18,0,4.0200000000000005,4.0600000000000005,4.0200000000000005,3.93,3.84,3.74,3.58,3.43,2.97,50.42,49.57,48.95,48.17,47.21,46.12,44.32,42.46,34.28,25.400000000000002,24.97,24.8,24.62,24.47,24.330000000000002,24.2,24.09,23.95,N/A,N/A -2012,8,19,22,30,101290,100130,99020,78.19,0,2.94,3,2.98,2.94,2.9,2.85,2.8000000000000003,2.74,2.58,147.12,147.34,147.39000000000001,147.44,147.48,147.52,147.51,147.5,147.13,26.43,26.02,25.84,25.64,25.45,25.27,25.09,24.92,24.59,N/A,N/A -2012,8,19,23,30,101270,100120,99000,80.67,0,6.32,6.63,6.65,6.62,6.57,6.51,6.43,6.3500000000000005,6.09,171.23,171.56,171.79,172.09,172.46,172.89000000000001,173.51,174.14000000000001,176.61,26.48,26.02,25.82,25.62,25.43,25.25,25.060000000000002,24.89,24.54,N/A,N/A -2012,8,20,0,30,101220,100070,98950,84.98,0,5.63,5.93,5.98,5.98,5.98,5.96,5.94,5.91,5.8500000000000005,170.58,170.72,170.73,170.75,170.77,170.79,170.83,170.85,170.97,26.72,26.28,26.09,25.89,25.7,25.51,25.32,25.14,24.78,N/A,N/A -2012,8,20,1,30,101200,100050,98940,84.02,0,3.99,4.16,4.17,4.16,4.14,4.11,4.08,4.04,3.96,195.54,195.54,195.46,195.37,195.28,195.18,195.07,194.96,194.68,27.11,26.7,26.52,26.310000000000002,26.13,25.94,25.740000000000002,25.560000000000002,25.19,N/A,N/A -2012,8,20,2,30,101190,100040,98930,82.94,0,3.92,4.08,4.09,4.08,4.0600000000000005,4.03,4.01,3.98,3.9,210.05,209.91,209.8,209.67000000000002,209.57,209.45000000000002,209.33,209.22,208.97,27.3,26.900000000000002,26.71,26.51,26.32,26.13,25.94,25.75,25.38,N/A,N/A -2012,8,20,3,30,101180,100040,98930,81.2,0,2.86,2.96,2.97,2.96,2.95,2.93,2.91,2.89,2.84,228.04,228.21,228.3,228.37,228.43,228.51,228.56,228.61,228.73000000000002,27.52,27.14,26.96,26.76,26.57,26.38,26.2,26.01,25.64,N/A,N/A -2012,8,20,4,30,101170,100020,98910,80.15,0,2.59,2.69,2.7,2.7,2.7,2.69,2.69,2.68,2.66,224.99,225.26,225.39000000000001,225.52,225.63,225.75,225.86,225.97,226.20000000000002,27.72,27.35,27.17,26.97,26.78,26.580000000000002,26.39,26.2,25.82,N/A,N/A -2012,8,20,5,30,101190,100050,98940,77.35000000000001,0,2.67,2.77,2.7800000000000002,2.77,2.7600000000000002,2.75,2.74,2.72,2.69,249.29,249.36,249.41,249.46,249.51000000000002,249.56,249.61,249.64000000000001,249.76000000000002,27.900000000000002,27.54,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A -2012,8,20,6,30,101210,100060,98960,75.46000000000001,0,2.74,2.85,2.86,2.86,2.86,2.85,2.85,2.84,2.82,248.12,248.35,248.39000000000001,248.44,248.49,248.53,248.6,248.66,248.77,28.04,27.69,27.51,27.310000000000002,27.12,26.93,26.73,26.55,26.17,N/A,N/A -2012,8,20,7,30,101260,100110,99010,75.26,0,2.58,2.68,2.69,2.69,2.68,2.67,2.66,2.66,2.63,237.22,237.14000000000001,237.07,237,236.92000000000002,236.83,236.74,236.65,236.46,28.080000000000002,27.73,27.560000000000002,27.36,27.17,26.97,26.78,26.59,26.21,N/A,N/A -2012,8,20,8,30,101260,100110,99010,75.86,0,2.66,2.7600000000000002,2.77,2.77,2.77,2.7600000000000002,2.7600000000000002,2.75,2.73,250.79,250.86,250.85,250.85,250.85,250.85,250.85,250.85,250.86,28.04,27.68,27.51,27.3,27.11,26.92,26.73,26.54,26.16,N/A,N/A -2012,8,20,9,30,101280,100130,99020,79.5,0,3.17,3.33,3.36,3.37,3.38,3.38,3.38,3.38,3.37,258.42,258.54,258.59000000000003,258.64,258.69,258.75,258.8,258.85,258.97,27.96,27.59,27.42,27.21,27.03,26.830000000000002,26.64,26.45,26.07,N/A,N/A -2012,8,20,10,30,101280,100140,99030,80.95,0,3.48,3.66,3.69,3.7,3.7,3.7,3.7,3.69,3.68,263.88,264.18,264.26,264.36,264.45,264.54,264.63,264.72,264.91,27.88,27.5,27.330000000000002,27.12,26.93,26.740000000000002,26.54,26.35,25.97,N/A,N/A -2012,8,20,11,30,101280,100130,99020,84.35000000000001,0,4.82,5.04,5.05,5.04,5.01,4.98,4.95,4.91,4.83,293.74,293.37,293.14,292.92,292.71,292.51,292.32,292.13,291.75,27.580000000000002,27.19,27.01,26.810000000000002,26.63,26.44,26.25,26.07,25.7,N/A,N/A -2012,8,20,12,30,101300,100150,99040,79.5,0,4.65,4.86,4.87,4.8500000000000005,4.83,4.8,4.7700000000000005,4.73,4.66,310.76,310.94,311.08,311.21,311.36,311.52,311.69,311.85,312.28000000000003,27.46,27.07,26.89,26.69,26.5,26.310000000000002,26.12,25.94,25.57,N/A,N/A -2012,8,20,13,30,101320,100170,99060,79.5,0,4.73,4.96,4.98,4.98,4.97,4.96,4.94,4.92,4.87,312.72,313.64,314.19,314.75,315.26,315.76,316.27,316.76,317.79,27.310000000000002,26.91,26.73,26.52,26.330000000000002,26.14,25.95,25.76,25.39,N/A,N/A -2012,8,20,14,30,101380,100230,99120,83.21000000000001,0,3.93,4.12,4.15,4.16,4.16,4.16,4.16,4.15,4.14,314.94,315.83,316.38,316.92,317.40000000000003,317.86,318.33,318.79,319.72,27.19,26.79,26.6,26.400000000000002,26.2,26.01,25.82,25.63,25.25,N/A,N/A -2012,8,20,15,30,101370,100220,99110,82.95,0,4.07,4.28,4.32,4.33,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.3500000000000005,310.36,311.61,312.36,313.11,313.8,314.48,315.17,315.83,317.23,27.39,26.990000000000002,26.810000000000002,26.61,26.42,26.23,26.03,25.84,25.47,N/A,N/A -2012,8,20,16,30,101390,100240,99130,75.98,0,3.45,3.61,3.64,3.66,3.66,3.67,3.67,3.67,3.67,343.56,342.73,342.26,341.8,341.39,340.99,340.62,340.27,339.6,28,27.62,27.44,27.240000000000002,27.05,26.85,26.66,26.47,26.09,N/A,N/A -2012,8,20,17,30,101360,100210,99100,72.93,0,2.95,3.12,3.16,3.19,3.21,3.23,3.25,3.27,3.3000000000000003,315.59000000000003,316.18,316.56,316.93,317.25,317.56,317.89,318.2,318.83,28.35,27.990000000000002,27.82,27.61,27.42,27.23,27.04,26.85,26.47,N/A,N/A -2012,8,20,18,30,101320,100170,99060,70.4,0,2.64,2.84,2.9,2.96,3.02,3.08,3.15,3.21,3.39,292.26,294.16,295.40000000000003,296.61,297.71,298.83,299.98,301.11,303.63,28.84,28.5,28.330000000000002,28.14,27.96,27.77,27.580000000000002,27.41,27.05,N/A,N/A -2012,8,20,19,30,101300,100160,99050,70.03,0,2.7600000000000002,2.7800000000000002,2.73,2.67,2.62,2.58,2.54,2.5,2.45,219.96,223.5,226.02,228.88,231.49,234.20000000000002,236.95000000000002,239.63,245.27,29.29,28.97,28.810000000000002,28.62,28.44,28.26,28.07,27.900000000000002,27.54,N/A,N/A -2012,8,20,20,30,101240,100100,98990,72.49,0,3.41,3.49,3.45,3.39,3.3200000000000003,3.25,3.16,3.0700000000000003,2.82,181.8,181.84,181.88,181.91,181.91,181.91,181.92000000000002,181.93,182.23,29.13,28.79,28.62,28.44,28.26,28.09,27.92,27.75,27.46,N/A,N/A -2012,8,20,21,30,101200,100060,98950,78.37,0,4.54,4.75,4.76,4.72,4.67,4.61,4.5600000000000005,4.5,4.26,191.28,191.72,192.02,192.4,192.79,193.24,193.74,194.26,195.6,28.810000000000002,28.46,28.3,28.1,27.91,27.73,27.54,27.36,26.990000000000002,N/A,N/A -2012,8,20,22,30,101170,100030,98930,77.02,0,5.26,5.57,5.59,5.57,5.54,5.5,5.44,5.38,5.22,185.61,185.79,185.92000000000002,186.09,186.26,186.44,186.67000000000002,186.9,187.51,29.060000000000002,28.73,28.57,28.37,28.19,28.01,27.82,27.64,27.27,N/A,N/A -2012,8,20,23,30,101160,100020,98910,77.10000000000001,0,5.73,6.12,6.18,6.19,6.18,6.17,6.140000000000001,6.11,6.04,201.8,201.79,201.83,201.86,201.88,201.9,201.92000000000002,201.95000000000002,202.02,28.990000000000002,28.66,28.5,28.3,28.11,27.93,27.740000000000002,27.55,27.18,N/A,N/A -2012,8,21,0,30,101160,100020,98920,76.04,0,5.48,5.86,5.93,5.95,5.96,5.96,5.95,5.94,5.91,200.26,200.47,200.58,200.67000000000002,200.74,200.81,200.87,200.92000000000002,201.02,28.93,28.6,28.43,28.23,28.04,27.85,27.66,27.47,27.09,N/A,N/A -2012,8,21,1,30,101170,100030,98930,74.54,0,4.6000000000000005,4.89,4.93,4.95,4.96,4.95,4.95,4.94,4.91,204.42000000000002,204.3,204.25,204.20000000000002,204.16,204.12,204.07,204.03,203.95000000000002,28.98,28.650000000000002,28.48,28.28,28.1,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A -2012,8,21,2,30,101210,100070,98960,72.66,0,2.81,2.95,2.98,2.98,2.99,2.98,2.98,2.98,2.96,204.4,204.32,204.24,204.14000000000001,204.06,203.96,203.85,203.74,203.49,29,28.69,28.52,28.32,28.14,27.95,27.76,27.580000000000002,27.21,N/A,N/A -2012,8,21,3,30,101220,100080,98970,72.3,0,2.43,2.52,2.52,2.5100000000000002,2.5,2.49,2.48,2.46,2.43,242.72,242.28,241.98000000000002,241.67000000000002,241.39000000000001,241.1,240.79,240.5,239.86,28.990000000000002,28.68,28.51,28.310000000000002,28.13,27.94,27.75,27.57,27.19,N/A,N/A -2012,8,21,4,30,101220,100070,98970,73.46000000000001,0,1.67,1.7,1.7,1.68,1.67,1.6500000000000001,1.6400000000000001,1.62,1.58,292.24,292.87,293.03000000000003,293.24,293.46,293.71,293.98,294.25,294.95,28.85,28.53,28.37,28.17,27.98,27.8,27.61,27.42,27.05,N/A,N/A -2012,8,21,5,30,101240,100100,99000,74.04,0,1.27,1.31,1.31,1.31,1.31,1.3,1.29,1.29,1.27,349.47,350.97,351.66,352.38,353.05,353.72,354.45,355.17,356.84000000000003,28.8,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.36,26.990000000000002,N/A,N/A -2012,8,21,6,30,101280,100140,99030,69.16,0,2.5100000000000002,2.61,2.61,2.59,2.58,2.56,2.5500000000000003,2.5300000000000002,2.5,49.36,50.07,50.47,50.9,51.27,51.63,51.980000000000004,52.31,53.03,29.01,28.69,28.52,28.32,28.13,27.94,27.75,27.560000000000002,27.18,N/A,N/A -2012,8,21,7,30,101300,100160,99050,70.8,0,2.23,2.35,2.37,2.4,2.41,2.43,2.44,2.46,2.49,40.43,40.42,40.5,40.59,40.68,40.78,40.86,40.95,41.18,28.78,28.45,28.28,28.080000000000002,27.900000000000002,27.71,27.51,27.330000000000002,26.95,N/A,N/A -2012,8,21,8,30,101310,100160,99050,66.84,0,3.5700000000000003,3.73,3.74,3.73,3.71,3.7,3.68,3.66,3.61,54.97,55.39,55.63,55.85,56.04,56.21,56.38,56.550000000000004,56.86,28.85,28.51,28.35,28.150000000000002,27.96,27.77,27.57,27.39,27,N/A,N/A -2012,8,21,9,30,101340,100190,99080,67.98,0,3.24,3.42,3.45,3.46,3.47,3.47,3.47,3.47,3.46,60.39,60.76,60.9,61.04,61.160000000000004,61.27,61.370000000000005,61.47,61.660000000000004,28.8,28.47,28.3,28.1,27.91,27.72,27.52,27.330000000000002,26.95,N/A,N/A -2012,8,21,10,30,101370,100220,99120,66.52,0,2.71,2.84,2.85,2.85,2.85,2.85,2.85,2.85,2.84,71.33,70.51,70.03,69.55,69.13,68.74,68.35000000000001,67.97,67.22,28.810000000000002,28.490000000000002,28.32,28.12,27.93,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,8,21,11,30,101380,100230,99130,68.92,0,3.65,3.7800000000000002,3.7600000000000002,3.73,3.7,3.66,3.63,3.59,3.52,74.82000000000001,75.15,75.45,75.74,76.02,76.3,76.57000000000001,76.84,77.41,28.7,28.37,28.2,28.01,27.82,27.64,27.45,27.26,26.89,N/A,N/A -2012,8,21,12,30,101410,100260,99150,68.88,0,3.12,3.2800000000000002,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,75.01,74.98,74.96000000000001,74.92,74.89,74.84,74.79,74.74,74.64,28.54,28.19,28.02,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A -2012,8,21,13,30,101440,100300,99190,72.76,0,4.24,4.45,4.48,4.49,4.49,4.48,4.47,4.46,4.42,86.64,86.75,86.81,86.87,86.92,86.96000000000001,87,87.04,87.14,28.44,28.09,27.91,27.71,27.52,27.330000000000002,27.14,26.95,26.57,N/A,N/A -2012,8,21,14,30,101490,100350,99230,69.12,0,2.95,3.14,3.19,3.23,3.25,3.27,3.29,3.31,3.34,91.33,92.66,93.4,94.12,94.75,95.33,95.89,96.4,97.37,28.57,28.240000000000002,28.07,27.87,27.69,27.5,27.310000000000002,27.13,26.76,N/A,N/A -2012,8,21,15,30,101500,100350,99240,73.54,0,4.51,4.79,4.8500000000000005,4.88,4.9,4.92,4.93,4.94,4.94,83.69,83.96000000000001,84.05,84.14,84.22,84.29,84.37,84.44,84.58,28.44,28.080000000000002,27.91,27.71,27.52,27.32,27.13,26.94,26.560000000000002,N/A,N/A -2012,8,21,16,30,101520,100370,99260,74.66,0,3.95,4.16,4.19,4.2,4.21,4.21,4.2,4.2,4.18,64.36,64.76,65.11,65.44,65.73,66,66.25,66.49,66.93,28.41,28.05,27.87,27.67,27.48,27.28,27.09,26.900000000000002,26.52,N/A,N/A -2012,8,21,17,30,101520,100380,99270,74.49,0,4.63,4.87,4.9,4.9,4.9,4.89,4.88,4.86,4.83,61.42,61.63,61.71,61.79,61.86,61.93,62,62.06,62.17,28.34,27.97,27.79,27.580000000000002,27.39,27.19,27,26.810000000000002,26.42,N/A,N/A -2012,8,21,18,30,101530,100390,99270,77.08,0,5.79,6.140000000000001,6.2,6.21,6.21,6.2,6.18,6.16,6.1000000000000005,78.14,78.3,78.32000000000001,78.35000000000001,78.38,78.41,78.43,78.46000000000001,78.52,28.18,27.79,27.61,27.400000000000002,27.21,27.02,26.82,26.63,26.25,N/A,N/A -2012,8,21,19,30,101510,100370,99250,74.67,0,6.25,6.61,6.66,6.66,6.63,6.6000000000000005,6.55,6.5,6.37,100.60000000000001,100.54,100.51,100.46000000000001,100.43,100.39,100.35000000000001,100.31,100.21000000000001,28.17,27.79,27.61,27.41,27.23,27.04,26.85,26.67,26.3,N/A,N/A -2012,8,21,20,30,101500,100350,99240,73.4,0,5.7700000000000005,6.07,6.09,6.0600000000000005,6.0200000000000005,5.98,5.92,5.86,5.72,107.72,107.3,107.02,106.72,106.43,106.14,105.84,105.54,104.88,28.22,27.85,27.68,27.48,27.3,27.11,26.92,26.740000000000002,26.38,N/A,N/A -2012,8,21,21,30,101470,100330,99220,67.48,0,4.7,4.97,5.01,5.01,5,4.99,4.97,4.95,4.9,114.03,113.81,113.60000000000001,113.39,113.19,113,112.8,112.61,112.2,28.52,28.18,28.01,27.82,27.63,27.45,27.26,27.080000000000002,26.71,N/A,N/A -2012,8,21,22,30,101470,100330,99210,66.34,0,4.9,5.21,5.25,5.2700000000000005,5.28,5.28,5.2700000000000005,5.26,5.24,119.71000000000001,119.62,119.48,119.32000000000001,119.17,119.01,118.85000000000001,118.69,118.35000000000001,28.7,28.36,28.19,27.990000000000002,27.8,27.62,27.43,27.240000000000002,26.87,N/A,N/A -2012,8,21,23,30,101470,100330,99210,68.96000000000001,0,4.05,4.3100000000000005,4.38,4.41,4.44,4.47,4.49,4.5,4.54,116.54,116.23,116.03,115.84,115.67,115.49000000000001,115.32000000000001,115.16,114.81,28.61,28.27,28.1,27.900000000000002,27.72,27.53,27.34,27.16,26.79,N/A,N/A -2012,8,22,0,30,101450,100310,99200,71.24,0,3.92,4.15,4.19,4.21,4.22,4.23,4.23,4.23,4.23,122,121.53,121.29,121.03,120.79,120.54,120.27,120,119.41,28.6,28.26,28.09,27.900000000000002,27.71,27.52,27.330000000000002,27.150000000000002,26.78,N/A,N/A -2012,8,22,1,30,101440,100300,99190,73.98,0,4.54,4.83,4.89,4.91,4.93,4.93,4.94,4.94,4.93,123.49000000000001,123.35000000000001,123.24000000000001,123.11,122.99000000000001,122.87,122.74000000000001,122.61,122.32000000000001,28.560000000000002,28.21,28.04,27.830000000000002,27.650000000000002,27.45,27.26,27.07,26.7,N/A,N/A -2012,8,22,2,30,101460,100320,99210,73.81,0,4.84,5.18,5.25,5.29,5.32,5.33,5.3500000000000005,5.36,5.37,123.23,123.31,123.41,123.5,123.58,123.65,123.73,123.8,123.92,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A -2012,8,22,3,30,101490,100350,99240,70.26,0,4.3500000000000005,4.64,4.71,4.75,4.7700000000000005,4.79,4.8100000000000005,4.82,4.8500000000000005,118.47,118.46000000000001,118.45,118.41,118.38,118.35000000000001,118.3,118.27,118.16,28.82,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.54,27.36,26.98,N/A,N/A -2012,8,22,4,30,101480,100340,99230,69.02,0,3.72,3.96,4.01,4.04,4.0600000000000005,4.08,4.09,4.1,4.13,103.53,103.39,103.35000000000001,103.3,103.25,103.19,103.13,103.07000000000001,102.95,28.900000000000002,28.57,28.400000000000002,28.2,28.02,27.830000000000002,27.63,27.45,27.07,N/A,N/A -2012,8,22,5,30,101500,100350,99240,69.41,0,4.5,4.8100000000000005,4.87,4.9,4.93,4.94,4.96,4.97,4.98,102.35000000000001,101.79,101.47,101.17,100.9,100.64,100.39,100.15,99.68,28.91,28.580000000000002,28.400000000000002,28.21,28.02,27.830000000000002,27.63,27.45,27.060000000000002,N/A,N/A -2012,8,22,6,30,101520,100380,99270,68.38,0,5.04,5.4,5.48,5.5200000000000005,5.55,5.57,5.59,5.6000000000000005,5.62,100.76,100.62,100.56,100.5,100.43,100.36,100.3,100.24000000000001,100.12,28.990000000000002,28.66,28.48,28.28,28.1,27.900000000000002,27.71,27.52,27.14,N/A,N/A -2012,8,22,7,30,101550,100400,99290,64.6,0,4.64,4.97,5.04,5.09,5.12,5.14,5.16,5.17,5.19,98.93,99.37,99.56,99.74000000000001,99.89,100.03,100.17,100.3,100.53,29.2,28.88,28.71,28.51,28.32,28.13,27.93,27.75,27.36,N/A,N/A -2012,8,22,8,30,101560,100410,99300,65.41,0,5.13,5.51,5.58,5.62,5.65,5.67,5.68,5.69,5.71,109.48,109.5,109.49000000000001,109.49000000000001,109.5,109.51,109.52,109.54,109.56,29.150000000000002,28.82,28.66,28.46,28.26,28.080000000000002,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,22,9,30,101560,100410,99300,67.34,0,4.64,4.95,5.01,5.04,5.0600000000000005,5.08,5.09,5.09,5.1000000000000005,98.96000000000001,99.13,99.24000000000001,99.32000000000001,99.4,99.46000000000001,99.52,99.57000000000001,99.64,29.04,28.71,28.54,28.330000000000002,28.150000000000002,27.95,27.76,27.57,27.19,N/A,N/A -2012,8,22,10,30,101560,100410,99300,82.32000000000001,0,6.74,7.08,7.07,7.01,6.94,6.86,6.7700000000000005,6.68,6.5,71.29,72.5,73.39,74.4,75.35000000000001,76.33,77.35000000000001,78.34,80.56,27.89,27.5,27.34,27.150000000000002,26.98,26.810000000000002,26.63,26.47,26.13,N/A,N/A -2012,8,22,11,30,101570,100420,99310,86.89,0,8.35,8.97,9.11,9.16,9.19,9.200000000000001,9.200000000000001,9.18,9.14,56.84,57.1,57.32,57.54,57.75,57.94,58.160000000000004,58.370000000000005,58.84,27.35,26.900000000000002,26.7,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A -2012,8,22,12,30,101620,100470,99350,87.43,53.1,6.63,7.07,7.17,7.21,7.24,7.25,7.26,7.26,7.25,65.75,66.51,66.91,67.28,67.61,67.91,68.21000000000001,68.48,69.02,27.02,26.580000000000002,26.39,26.19,26,25.810000000000002,25.62,25.45,25.080000000000002,N/A,N/A -2012,8,22,13,30,101680,100510,99380,92.46000000000001,14.3,8.3,8.75,8.84,8.86,8.870000000000001,8.870000000000001,8.85,8.83,8.74,192.61,191.65,191.23000000000002,190.77,190.31,189.87,189.38,188.93,187.83,24.54,23.98,23.78,23.59,23.41,23.240000000000002,23.07,22.91,22.59,N/A,N/A -2012,8,22,14,30,101670,100500,99370,89.62,1.5,9.96,10.58,10.66,10.65,10.620000000000001,10.57,10.49,10.42,10.22,189.84,189.6,189.64000000000001,189.70000000000002,189.78,189.87,189.98,190.08,190.31,24.25,23.64,23.43,23.23,23.05,22.89,22.72,22.57,22.3,N/A,N/A -2012,8,22,15,30,101730,100560,99430,84.54,0.4,3.2800000000000002,3.35,3.34,3.31,3.2800000000000002,3.25,3.21,3.18,3.1,155.74,153.75,153.33,152.82,152.21,151.56,150.72,149.92000000000002,147.45000000000002,25.060000000000002,24.61,24.42,24.23,24.05,23.88,23.71,23.55,23.26,N/A,N/A -2012,8,22,16,30,101720,100550,99420,87.28,13.600000000000001,4.17,4.38,4.42,4.47,4.5600000000000005,4.68,5.04,5.47,6.49,36.11,38.79,40.93,43.52,46.62,50.04,55.59,61.74,68.68,24.77,24.330000000000002,24.16,24,23.87,23.75,23.71,23.69,24.05,N/A,N/A -2012,8,22,17,30,101650,100500,99380,73.62,0,2.3000000000000003,2.37,2.38,2.42,2.5500000000000003,2.79,3.15,3.5700000000000003,4.19,51.57,53.03,54.230000000000004,56.11,58.88,62.79,65.65,68.05,69.47,26.69,26.35,26.23,26.12,26.11,26.18,26.3,26.42,26.29,N/A,N/A -2012,8,22,18,30,101680,100530,99410,74.99,0,5.09,5.33,5.33,5.3100000000000005,5.28,5.24,5.2,5.16,5.07,117.68,117.11,116.77,116.4,116.04,115.68,115.29,114.92,114.11,27.25,26.84,26.650000000000002,26.45,26.26,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A -2012,8,22,19,30,101700,100550,99430,84.34,0,5.62,5.96,6.01,6.03,6.03,6.03,6.0200000000000005,6,5.96,150.8,151.18,151.41,151.63,151.83,152.03,152.21,152.37,152.72,26.830000000000002,26.38,26.18,25.97,25.77,25.57,25.37,25.18,24.79,N/A,N/A -2012,8,22,20,30,101640,100480,99370,77.18,0,4.79,5.1000000000000005,5.15,5.18,5.2,5.21,5.21,5.22,5.22,132.48,132.59,132.71,132.82,132.91,133,133.09,133.16,133.32,27.330000000000002,26.92,26.73,26.52,26.32,26.13,25.93,25.740000000000002,25.35,N/A,N/A -2012,8,22,21,30,101590,100430,99320,77.16,0,4.68,4.97,5.03,5.0600000000000005,5.08,5.09,5.1000000000000005,5.1000000000000005,5.11,119.48,119.83,120.07000000000001,120.29,120.47,120.65,120.82000000000001,120.97,121.29,27.5,27.1,26.91,26.7,26.51,26.310000000000002,26.12,25.93,25.55,N/A,N/A -2012,8,22,22,30,101560,100410,99290,77.92,0,3.97,4.19,4.24,4.2700000000000005,4.29,4.3,4.3100000000000005,4.32,4.34,112.23,112.11,112.05,111.97,111.89,111.83,111.76,111.68,111.54,27.5,27.1,26.92,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A -2012,8,22,23,30,101540,100390,99280,80.31,0,4.45,4.68,4.7,4.7,4.69,4.68,4.67,4.66,4.63,115.51,114.76,114.25,113.74000000000001,113.27,112.81,112.34,111.9,111.01,27.39,26.990000000000002,26.8,26.6,26.400000000000002,26.21,26.01,25.830000000000002,25.44,N/A,N/A -2012,8,23,0,30,101530,100380,99260,79.3,0,4.29,4.54,4.59,4.61,4.63,4.64,4.64,4.65,4.66,124.43,124.34,124.25,124.14,124.03,123.92,123.8,123.69,123.44,27.32,26.92,26.73,26.53,26.330000000000002,26.14,25.95,25.76,25.37,N/A,N/A -2012,8,23,1,30,101510,100360,99250,80.04,0,4.88,5.2,5.2700000000000005,5.3100000000000005,5.34,5.36,5.37,5.37,5.37,120.83,121.15,121.32000000000001,121.47,121.59,121.69,121.79,121.88,122.03,27.34,26.93,26.740000000000002,26.53,26.34,26.14,25.95,25.76,25.37,N/A,N/A -2012,8,23,2,30,101510,100360,99250,77.27,0,5.84,6.21,6.28,6.32,6.34,6.3500000000000005,6.36,6.36,6.36,119.72,119.56,119.45,119.35000000000001,119.27,119.18,119.11,119.04,118.9,27.62,27.21,27.02,26.82,26.62,26.43,26.240000000000002,26.05,25.66,N/A,N/A -2012,8,23,3,30,101520,100370,99260,75.86,0,5.6000000000000005,6.01,6.1000000000000005,6.16,6.2,6.23,6.25,6.2700000000000005,6.3100000000000005,124.08,124.26,124.33,124.39,124.44,124.49000000000001,124.54,124.59,124.68,27.75,27.35,27.16,26.96,26.76,26.57,26.37,26.18,25.8,N/A,N/A -2012,8,23,4,30,101520,100370,99260,74.55,0,6.12,6.59,6.7,6.7700000000000005,6.82,6.8500000000000005,6.88,6.91,6.94,133.38,132.78,132.57,132.39000000000001,132.25,132.13,132.03,131.93,131.77,28.11,27.72,27.54,27.34,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A -2012,8,23,5,30,101510,100360,99240,77.48,0,5.89,6.32,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.58,131.38,131.46,131.47,131.46,131.45,131.43,131.41,131.4,131.34,27.94,27.54,27.35,27.14,26.95,26.75,26.55,26.36,25.98,N/A,N/A -2012,8,23,6,30,101540,100390,99280,75.23,0,6.05,6.48,6.57,6.61,6.640000000000001,6.66,6.67,6.67,6.68,146.17000000000002,146.28,146.33,146.38,146.42000000000002,146.45000000000002,146.49,146.52,146.58,28.02,27.64,27.45,27.25,27.060000000000002,26.86,26.67,26.48,26.09,N/A,N/A -2012,8,23,7,30,101540,100400,99280,74.61,0,5.19,5.57,5.66,5.73,5.7700000000000005,5.8100000000000005,5.84,5.87,5.92,147.01,146.76,146.70000000000002,146.64000000000001,146.58,146.53,146.48,146.44,146.35,28.19,27.810000000000002,27.63,27.43,27.240000000000002,27.05,26.85,26.66,26.28,N/A,N/A -2012,8,23,8,30,101550,100400,99290,74.88,0,4.87,5.23,5.32,5.37,5.41,5.45,5.48,5.5,5.55,147.91,148.18,148.33,148.45000000000002,148.56,148.67000000000002,148.75,148.84,149.01,28.3,27.93,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A -2012,8,23,9,30,101540,100390,99280,77.13,0,4.0200000000000005,4.23,4.28,4.3,4.3100000000000005,4.32,4.33,4.34,4.3500000000000005,121.42,122.04,122.52,123.04,123.51,123.97,124.43,124.88000000000001,125.79,28.22,27.86,27.68,27.48,27.28,27.09,26.89,26.71,26.32,N/A,N/A -2012,8,23,10,30,101550,100400,99290,76.68,0,5.14,5.51,5.58,5.62,5.65,5.67,5.69,5.7,5.72,136.75,136.9,136.97,137.05,137.12,137.20000000000002,137.29,137.37,137.55,28.400000000000002,28.04,27.86,27.66,27.47,27.28,27.080000000000002,26.900000000000002,26.51,N/A,N/A -2012,8,23,11,30,101560,100410,99290,89.5,0,11.59,12.620000000000001,12.83,12.91,12.950000000000001,12.950000000000001,12.94,12.91,12.83,203.73000000000002,203.43,203.20000000000002,202.96,202.75,202.53,202.31,202.1,201.63,26.38,25.830000000000002,25.61,25.39,25.2,25.01,24.82,24.64,24.28,N/A,N/A -2012,8,23,12,30,101570,100420,99300,85.57000000000001,0.4,6.93,7.390000000000001,7.48,7.5200000000000005,7.54,7.54,7.54,7.5200000000000005,7.48,166.65,167.36,167.76,168.15,168.58,169.01,169.58,170.13,171.75,26.41,25.94,25.75,25.55,25.35,25.17,24.98,24.810000000000002,24.46,N/A,N/A -2012,8,23,13,30,101610,100450,99340,79.06,0,5.18,5.5,5.5600000000000005,5.6000000000000005,5.62,5.64,5.66,5.67,5.69,182.26,182.69,182.77,182.88,182.98,183.08,183.20000000000002,183.33,183.62,27.5,27.1,26.92,26.71,26.52,26.330000000000002,26.13,25.95,25.57,N/A,N/A -2012,8,23,14,30,101610,100460,99350,77.13,0,4.94,5.28,5.37,5.42,5.47,5.5,5.53,5.55,5.6000000000000005,169.44,169.89000000000001,170.21,170.49,170.73,170.95000000000002,171.16,171.36,171.73,28.13,27.75,27.580000000000002,27.37,27.18,26.990000000000002,26.79,26.6,26.22,N/A,N/A -2012,8,23,15,30,101630,100480,99370,74.71000000000001,0,5.57,5.99,6.09,6.15,6.2,6.23,6.2700000000000005,6.29,6.34,188.36,188.59,188.67000000000002,188.77,188.86,188.95000000000002,189.05,189.14000000000001,189.32,28.35,27.98,27.8,27.6,27.41,27.22,27.02,26.84,26.45,N/A,N/A -2012,8,23,16,30,101620,100470,99360,73.10000000000001,0,4.95,5.3100000000000005,5.4,5.45,5.49,5.53,5.55,5.58,5.62,184.87,185.1,185.22,185.35,185.45000000000002,185.55,185.65,185.73,185.89000000000001,28.64,28.29,28.11,27.91,27.72,27.53,27.330000000000002,27.14,26.76,N/A,N/A -2012,8,23,17,30,101630,100480,99370,77.51,0.7000000000000001,6.4,6.76,6.8100000000000005,6.83,6.83,6.83,6.83,6.82,6.82,200.92000000000002,201.69,202.01,202.28,202.51,202.70000000000002,202.87,203.01,203.17000000000002,28.03,27.650000000000002,27.47,27.28,27.1,26.91,26.73,26.55,26.2,N/A,N/A -2012,8,23,18,30,101620,100470,99360,75.51,0,6.2700000000000005,6.72,6.78,6.8100000000000005,6.82,6.82,6.8100000000000005,6.8,6.78,218.61,217.76,217.28,216.8,216.38,215.98000000000002,215.59,215.21,214.48000000000002,28.51,28.14,27.97,27.77,27.57,27.39,27.19,27,26.62,N/A,N/A -2012,8,23,19,30,101650,100500,99380,80.9,0.4,3.42,3.5,3.49,3.46,3.42,3.37,3.29,3.22,2.96,248.15,247.66,247.39000000000001,247.12,246.85,246.57,246.21,245.84,244.34,27.1,26.7,26.51,26.310000000000002,26.13,25.95,25.76,25.580000000000002,25.240000000000002,N/A,N/A -2012,8,23,20,30,101590,100430,99320,82.65,0,1.28,1.17,1.11,1.07,1.05,1.04,1.06,1.08,1.18,328.82,318.48,311.97,304.37,297.13,289.91,282.67,275.76,262.89,27.2,26.830000000000002,26.66,26.47,26.29,26.11,25.92,25.75,25.400000000000002,N/A,N/A -2012,8,23,21,30,101530,100380,99270,80,0,1.8900000000000001,2.17,2.29,2.41,2.52,2.62,2.71,2.8000000000000003,2.96,159.26,163.17000000000002,165.14000000000001,166.68,167.93,168.97,169.86,170.65,171.96,27.92,27.57,27.39,27.2,27.01,26.82,26.63,26.45,26.080000000000002,N/A,N/A -2012,8,23,22,30,101520,100370,99260,74.43,0,3.67,3.96,4.04,4.11,4.17,4.22,4.2700000000000005,4.32,4.41,169.13,168.97,168.91,168.88,168.84,168.8,168.77,168.73,168.67000000000002,28.39,28.04,27.87,27.67,27.48,27.3,27.1,26.92,26.55,N/A,N/A -2012,8,23,23,30,101470,100330,99220,71.49,0,3.5500000000000003,3.86,3.97,4.0600000000000005,4.14,4.21,4.28,4.34,4.46,175.86,175.23,174.96,174.74,174.56,174.4,174.25,174.11,173.86,28.67,28.34,28.18,27.98,27.8,27.61,27.42,27.240000000000002,26.86,N/A,N/A -2012,8,24,0,30,101440,100290,99180,61.75,0,5.22,5.61,5.66,5.69,5.71,5.72,5.72,5.72,5.72,160.03,160.11,160.20000000000002,160.25,160.27,160.3,160.31,160.31,160.3,29.13,28.82,28.650000000000002,28.45,28.27,28.080000000000002,27.88,27.7,27.32,N/A,N/A -2012,8,24,1,30,101440,100300,99190,61.95,0,6,6.55,6.66,6.73,6.78,6.8100000000000005,6.8500000000000005,6.87,6.91,159.69,159.61,159.61,159.6,159.6,159.59,159.58,159.56,159.54,29.1,28.78,28.61,28.41,28.22,28.03,27.84,27.650000000000002,27.26,N/A,N/A -2012,8,24,2,30,101430,100280,99170,66.46000000000001,0,6.8100000000000005,7.3500000000000005,7.46,7.5200000000000005,7.55,7.57,7.58,7.59,7.59,156.34,156.21,156.16,156.14000000000001,156.12,156.11,156.1,156.09,156.08,28.89,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.04,N/A,N/A -2012,8,24,3,30,101410,100270,99160,65.3,0,6.2,6.72,6.86,6.95,7.03,7.09,7.140000000000001,7.19,7.29,161.19,160.49,160.11,159.72,159.39000000000001,159.07,158.77,158.48,157.94,28.93,28.61,28.44,28.25,28.060000000000002,27.87,27.68,27.5,27.12,N/A,N/A -2012,8,24,4,30,101380,100240,99130,66.05,0,5.49,5.98,6.11,6.21,6.28,6.3500000000000005,6.41,6.46,6.5600000000000005,158.19,158.29,158.26,158.21,158.15,158.09,158.02,157.96,157.81,28.94,28.61,28.44,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,8,24,5,30,101380,100240,99130,72.33,0,5.4,5.84,5.94,6.01,6.0600000000000005,6.09,6.13,6.15,6.2,163.57,163.09,162.76,162.45000000000002,162.19,161.94,161.71,161.5,161.09,28.8,28.46,28.29,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.96,N/A,N/A -2012,8,24,6,30,101380,100240,99130,80.44,0,6.78,7.34,7.46,7.53,7.58,7.61,7.63,7.65,7.67,168.66,168.58,168.54,168.5,168.46,168.43,168.39000000000001,168.35,168.28,28.330000000000002,27.96,27.78,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.42,N/A,N/A -2012,8,24,7,30,101400,100260,99150,75.81,0,5.6000000000000005,6.12,6.25,6.36,6.45,6.5200000000000005,6.58,6.640000000000001,6.75,176.03,176.38,176.64000000000001,176.9,177.12,177.32,177.51,177.68,177.99,28.66,28.32,28.150000000000002,27.96,27.77,27.59,27.400000000000002,27.22,26.85,N/A,N/A -2012,8,24,8,30,101410,100260,99160,75.91,0,6.07,6.5200000000000005,6.63,6.69,6.74,6.78,6.8100000000000005,6.83,6.88,192.02,192.57,192.85,193.12,193.37,193.59,193.81,194.02,194.43,28.64,28.29,28.12,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A -2012,8,24,9,30,101420,100270,99160,76.99,0,6.5,6.99,7.1000000000000005,7.15,7.18,7.2,7.21,7.21,7.2,211.31,210.52,209.97,209.43,208.97,208.53,208.11,207.72,206.98000000000002,28.69,28.35,28.17,27.97,27.78,27.580000000000002,27.39,27.2,26.810000000000002,N/A,N/A -2012,8,24,10,30,101410,100270,99160,74.97,0,6.93,7.57,7.71,7.79,7.8500000000000005,7.88,7.91,7.930000000000001,7.94,199.58,199.26,199.14000000000001,199.05,198.98000000000002,198.92000000000002,198.88,198.83,198.76,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.1,N/A,N/A -2012,8,24,11,30,101430,100290,99180,73.41,0,6.26,6.8,6.94,7.0200000000000005,7.08,7.13,7.17,7.2,7.25,198.59,198.51,198.55,198.6,198.65,198.70000000000002,198.75,198.81,198.92000000000002,28.97,28.650000000000002,28.48,28.28,28.1,27.900000000000002,27.71,27.53,27.150000000000002,N/A,N/A -2012,8,24,12,30,101420,100270,99170,74.65,0,5.61,6.05,6.16,6.22,6.2700000000000005,6.3,6.33,6.3500000000000005,6.38,206.37,206.13,206.03,205.92000000000002,205.83,205.74,205.65,205.57,205.41,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.36,26.98,N/A,N/A -2012,8,24,13,30,101420,100280,99170,76.3,0,5.2700000000000005,5.69,5.79,5.8500000000000005,5.9,5.93,5.96,5.98,6.01,211.24,211.37,211.42000000000002,211.47,211.52,211.57,211.63,211.69,211.81,28.77,28.43,28.26,28.060000000000002,27.87,27.68,27.490000000000002,27.3,26.92,N/A,N/A -2012,8,24,14,30,101470,100320,99220,75.15,0,5.07,5.42,5.47,5.5,5.51,5.51,5.5,5.49,5.47,214.16,214.16,214.27,214.38,214.47,214.55,214.64000000000001,214.71,214.86,28.79,28.45,28.29,28.080000000000002,27.900000000000002,27.7,27.51,27.32,26.94,N/A,N/A -2012,8,24,15,30,101450,100310,99200,70.08,0,5.1000000000000005,5.43,5.5,5.53,5.55,5.5600000000000005,5.58,5.58,5.6000000000000005,234.08,233.74,233.52,233.31,233.13,232.96,232.79,232.63,232.33,28.990000000000002,28.67,28.51,28.310000000000002,28.12,27.93,27.740000000000002,27.560000000000002,27.18,N/A,N/A -2012,8,24,16,30,101460,100320,99210,74.06,0,3.17,3.36,3.4,3.42,3.44,3.46,3.47,3.49,3.5100000000000002,221.4,220.94,220.6,220.27,219.96,219.65,219.35,219.08,218.51,28.77,28.43,28.25,28.05,27.86,27.68,27.48,27.29,26.91,N/A,N/A -2012,8,24,17,30,101450,100310,99200,73.47,0,3.12,3.31,3.36,3.39,3.42,3.44,3.46,3.47,3.5,198.54,198.72,198.78,198.84,198.9,198.96,199.02,199.08,199.22,28.84,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,8,24,18,30,101490,100340,99220,83.93,0,11.09,12.13,12.32,12.4,12.43,12.43,12.4,12.370000000000001,12.25,164.44,164.68,164.70000000000002,164.71,164.72,164.74,164.76,164.77,164.82,27.36,26.89,26.68,26.47,26.27,26.080000000000002,25.88,25.7,25.330000000000002,N/A,N/A -2012,8,24,19,30,101450,100290,99170,87.06,0,9.91,10.67,10.8,10.83,10.83,10.81,10.76,10.71,10.55,173.06,173.56,173.83,174.12,174.41,174.70000000000002,175.06,175.4,176.34,26.57,26.080000000000002,25.88,25.68,25.490000000000002,25.310000000000002,25.13,24.96,24.64,N/A,N/A -2012,8,24,20,30,101420,100270,99160,77.05,0,8.75,9.46,9.620000000000001,9.700000000000001,9.76,9.790000000000001,9.82,9.84,9.870000000000001,187.31,187.48,187.59,187.72,187.85,187.99,188.16,188.33,188.78,27.42,26.990000000000002,26.810000000000002,26.61,26.43,26.25,26.060000000000002,25.89,25.55,N/A,N/A -2012,8,24,21,30,101390,100240,99120,83.03,0,7.78,8.39,8.52,8.59,8.64,8.67,8.69,8.71,8.73,179.75,180.05,180.27,180.49,180.71,180.93,181.15,181.36,181.86,27.29,26.85,26.66,26.45,26.26,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,8,24,22,30,101390,100240,99130,77.34,0,8.6,9.32,9.48,9.56,9.620000000000001,9.66,9.68,9.700000000000001,9.71,194.70000000000002,194.65,194.59,194.53,194.47,194.43,194.37,194.32,194.19,27.96,27.560000000000002,27.38,27.18,26.98,26.79,26.6,26.41,26.03,N/A,N/A -2012,8,24,23,30,101350,100210,99100,72.91,0,6.49,6.99,7.1000000000000005,7.16,7.2,7.23,7.26,7.28,7.3100000000000005,184.79,184.67000000000002,184.64000000000001,184.59,184.55,184.51,184.47,184.42000000000002,184.31,28.35,27.990000000000002,27.82,27.62,27.43,27.240000000000002,27.05,26.87,26.490000000000002,N/A,N/A -2012,8,25,0,30,101310,100170,99060,71.49,0,6.5600000000000005,7.1000000000000005,7.21,7.28,7.32,7.3500000000000005,7.38,7.4,7.43,172.97,173,173.06,173.11,173.16,173.19,173.24,173.28,173.35,28.52,28.17,27.990000000000002,27.79,27.6,27.41,27.21,27.03,26.64,N/A,N/A -2012,8,25,1,30,101270,100130,99020,76.45,0,6.24,6.75,6.87,6.94,6.99,7.03,7.07,7.1000000000000005,7.15,157.76,157.71,157.71,157.71,157.70000000000002,157.69,157.67000000000002,157.66,157.64000000000001,28.43,28.060000000000002,27.89,27.68,27.490000000000002,27.3,27.1,26.92,26.53,N/A,N/A -2012,8,25,2,30,101280,100140,99030,81.33,0,6.99,7.5600000000000005,7.68,7.74,7.78,7.8100000000000005,7.83,7.8500000000000005,7.86,150.28,150.93,151.31,151.67000000000002,152,152.31,152.62,152.91,153.49,28.25,27.88,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.35,N/A,N/A -2012,8,25,3,30,101270,100130,99020,80.71000000000001,0,7.390000000000001,8.03,8.17,8.26,8.31,8.36,8.38,8.41,8.44,155.5,155.57,155.62,155.67000000000002,155.72,155.77,155.82,155.87,155.97,28.310000000000002,27.93,27.75,27.55,27.36,27.17,26.97,26.78,26.400000000000002,N/A,N/A -2012,8,25,4,30,101290,100150,99040,78.93,0,7.11,7.74,7.92,8.040000000000001,8.13,8.21,8.28,8.34,8.46,151.84,152.51,152.78,153.03,153.25,153.46,153.65,153.84,154.19,28.55,28.21,28.04,27.84,27.66,27.47,27.28,27.1,26.73,N/A,N/A -2012,8,25,5,30,101280,100140,99040,75.63,0,8.21,9.02,9.22,9.34,9.43,9.5,9.55,9.59,9.66,157.46,157.97,158.15,158.29,158.4,158.49,158.57,158.63,158.72,29.05,28.73,28.57,28.37,28.19,28,27.8,27.62,27.240000000000002,N/A,N/A -2012,8,25,6,30,101260,100120,99010,75.67,0,7.04,7.8,7.99,8.11,8.21,8.290000000000001,8.35,8.4,8.49,162.13,162.29,162.4,162.52,162.62,162.72,162.82,162.9,163.08,29.1,28.8,28.63,28.44,28.26,28.07,27.88,27.69,27.310000000000002,N/A,N/A -2012,8,25,7,30,101300,100160,99050,79.4,0,8.42,9.17,9.35,9.450000000000001,9.52,9.57,9.61,9.65,9.72,161.32,161.47,161.53,161.6,161.69,161.76,161.86,161.95000000000002,162.17000000000002,28.44,28.1,27.93,27.740000000000002,27.560000000000002,27.38,27.19,27.02,26.67,N/A,N/A -2012,8,25,8,30,101320,100170,99060,83.19,0,8.46,9.27,9.46,9.57,9.64,9.700000000000001,9.73,9.76,9.8,170.34,170.51,170.58,170.66,170.71,170.76,170.81,170.86,170.95000000000002,28.28,27.92,27.740000000000002,27.54,27.35,27.150000000000002,26.96,26.78,26.39,N/A,N/A -2012,8,25,9,30,101340,100200,99090,83.29,0,8.13,8.870000000000001,9.040000000000001,9.14,9.200000000000001,9.24,9.27,9.290000000000001,9.31,167.79,168.18,168.39000000000001,168.59,168.77,168.94,169.1,169.25,169.55,28.51,28.16,27.990000000000002,27.79,27.6,27.400000000000002,27.21,27.02,26.64,N/A,N/A -2012,8,25,10,30,101320,100180,99070,83.25,0,6.46,7,7.12,7.19,7.24,7.28,7.3,7.33,7.37,170.18,170.39000000000001,170.5,170.6,170.68,170.75,170.83,170.9,171.06,28.44,28.09,27.92,27.72,27.54,27.35,27.16,26.97,26.6,N/A,N/A -2012,8,25,11,30,101330,100190,99080,83.28,0,8.07,8.81,8.96,9.03,9.09,9.120000000000001,9.14,9.16,9.17,160.28,160.36,160.48,160.6,160.72,160.85,160.98,161.1,161.38,28.51,28.16,27.98,27.79,27.6,27.41,27.21,27.03,26.650000000000002,N/A,N/A -2012,8,25,12,30,101360,100220,99110,78.97,0,7.5200000000000005,8.21,8.38,8.48,8.55,8.61,8.65,8.69,8.75,158.6,159.13,159.41,159.69,159.93,160.16,160.39000000000001,160.6,161.02,28.79,28.47,28.3,28.11,27.92,27.73,27.54,27.35,26.97,N/A,N/A -2012,8,25,13,30,101370,100230,99120,80.31,0,6.83,7.6000000000000005,7.8100000000000005,7.96,8.08,8.17,8.25,8.31,8.42,164.25,164.26,164.26,164.28,164.29,164.32,164.36,164.39000000000001,164.48,28.8,28.490000000000002,28.32,28.13,27.94,27.75,27.560000000000002,27.38,27,N/A,N/A -2012,8,25,14,30,101390,100250,99140,80.04,0,6.92,7.59,7.76,7.87,7.96,8.02,8.08,8.13,8.21,165.44,165.5,165.47,165.43,165.38,165.33,165.27,165.22,165.1,28.79,28.47,28.3,28.1,27.91,27.72,27.53,27.35,26.97,N/A,N/A -2012,8,25,15,30,101390,100240,99140,79.82000000000001,0,7.5200000000000005,8.24,8.4,8.5,8.57,8.620000000000001,8.66,8.69,8.73,163.03,162.96,162.93,162.91,162.89000000000001,162.88,162.88,162.88,162.87,28.900000000000002,28.580000000000002,28.41,28.21,28.03,27.84,27.64,27.46,27.080000000000002,N/A,N/A -2012,8,25,16,30,101430,100280,99180,78.47,0,7.21,7.86,8.01,8.09,8.15,8.19,8.23,8.26,8.3,159.69,159.92000000000002,160,160.08,160.14000000000001,160.19,160.23,160.28,160.36,28.98,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A -2012,8,25,17,30,101410,100260,99160,79.2,0,7.5600000000000005,8.31,8.5,8.61,8.69,8.75,8.8,8.84,8.9,161.65,161.47,161.43,161.39000000000001,161.35,161.32,161.28,161.25,161.20000000000002,28.96,28.63,28.47,28.27,28.080000000000002,27.89,27.7,27.51,27.13,N/A,N/A -2012,8,25,18,30,101380,100240,99140,80.86,0,8,8.74,8.9,8.98,9.040000000000001,9.07,9.09,9.1,9.11,157.96,158.08,158.09,158.11,158.14000000000001,158.17000000000002,158.21,158.25,158.35,28.95,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.5,27.12,N/A,N/A -2012,8,25,19,30,101390,100250,99140,80.27,0,9.27,10.16,10.38,10.48,10.55,10.58,10.61,10.61,10.61,149.46,149.59,149.65,149.67000000000002,149.68,149.68,149.67000000000002,149.67000000000002,149.65,28.93,28.62,28.45,28.25,28.07,27.88,27.69,27.5,27.13,N/A,N/A -2012,8,25,20,30,101360,100220,99110,82.2,0,8.98,9.89,10.1,10.23,10.31,10.36,10.4,10.43,10.450000000000001,162.47,162.56,162.56,162.57,162.58,162.6,162.62,162.64000000000001,162.69,28.87,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.43,27.04,N/A,N/A -2012,8,25,21,30,101380,100240,99130,81.23,0,9.07,9.88,10.05,10.13,10.18,10.21,10.22,10.22,10.23,165.85,165.79,165.78,165.75,165.73,165.71,165.71,165.71,165.68,28.87,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.42,27.04,N/A,N/A -2012,8,25,22,30,101440,100290,99170,87.60000000000001,0,9.63,10.28,10.47,10.52,10.55,10.56,10.57,10.6,10.84,208.42000000000002,207.88,207.65,207.25,206.82,206.27,205.59,204.84,202.44,26.13,25.67,25.490000000000002,25.310000000000002,25.17,25.03,24.92,24.82,24.78,N/A,N/A -2012,8,25,23,30,101410,100260,99140,86.60000000000001,0,5.86,6.3100000000000005,6.41,6.49,6.5600000000000005,6.65,6.78,6.92,7.79,178.8,178.53,178.72,178.87,179.01,179.14000000000001,179.3,179.47,179.84,26.6,26.2,26.02,25.84,25.67,25.51,25.37,25.23,25.18,N/A,N/A -2012,8,26,0,30,101350,100200,99090,87.36,0,7.2700000000000005,7.75,7.82,7.84,7.83,7.8100000000000005,7.78,7.74,7.66,157.52,158.02,158.48,158.98,159.48,159.98,160.57,161.14000000000001,162.58,27.03,26.61,26.42,26.22,26.03,25.84,25.650000000000002,25.48,25.11,N/A,N/A -2012,8,26,1,30,101390,100240,99130,77.10000000000001,0,5.13,5.49,5.58,5.63,5.67,5.7,5.73,5.7700000000000005,5.8500000000000005,138.96,139.29,139.45000000000002,139.62,139.79,139.96,140.17000000000002,140.39000000000001,141,27.84,27.48,27.3,27.1,26.92,26.73,26.54,26.36,25.990000000000002,N/A,N/A -2012,8,26,2,30,101400,100250,99130,90.89,0,9.01,9.69,9.76,9.75,9.700000000000001,9.64,9.55,9.46,9.23,109.60000000000001,110.33,110.68,111.03,111.38,111.72,112.08,112.42,113.19,27.01,26.560000000000002,26.37,26.17,25.98,25.8,25.61,25.44,25.080000000000002,N/A,N/A -2012,8,26,3,30,101390,100240,99130,89.02,0,7.890000000000001,8.45,8.540000000000001,8.56,8.56,8.55,8.51,8.48,8.39,139.34,139.79,140.04,140.31,140.59,140.88,141.23,141.56,142.5,27.07,26.63,26.45,26.25,26.07,25.89,25.7,25.53,25.19,N/A,N/A -2012,8,26,4,30,101410,100270,99160,85.77,0,7.94,8.61,8.76,8.84,8.89,8.93,8.950000000000001,8.97,8.99,134.22,134.42000000000002,134.59,134.77,134.94,135.11,135.3,135.46,135.83,27.72,27.32,27.13,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A -2012,8,26,5,30,101420,100270,99160,85.43,0,8.38,9.14,9.33,9.44,9.52,9.57,9.620000000000001,9.65,9.700000000000001,137.6,137.88,137.95000000000002,138.03,138.1,138.17000000000002,138.23,138.29,138.43,27.98,27.6,27.41,27.21,27.01,26.82,26.63,26.44,26.05,N/A,N/A -2012,8,26,6,30,101420,100270,99160,82.02,0,9.6,10.34,10.41,10.4,10.35,10.290000000000001,10.200000000000001,10.1,9.89,164.75,164.59,164.18,163.70000000000002,163.22,162.72,162.17000000000002,161.64000000000001,160.43,27.64,27.22,27.04,26.85,26.67,26.490000000000002,26.310000000000002,26.14,25.8,N/A,N/A -2012,8,26,7,30,101490,100340,99230,86.48,0,7.46,8.07,8.21,8.290000000000001,8.35,8.4,8.43,8.46,8.52,141.23,141.22,141.17000000000002,141.11,141.04,140.98,140.9,140.82,140.65,27.76,27.37,27.19,26.990000000000002,26.79,26.61,26.42,26.23,25.86,N/A,N/A -2012,8,26,8,30,101440,100300,99190,79.58,0,6.7700000000000005,7.32,7.44,7.51,7.55,7.58,7.6000000000000005,7.61,7.63,137.54,137.44,137.4,137.37,137.33,137.31,137.28,137.25,137.23,28.29,27.93,27.76,27.560000000000002,27.36,27.18,26.98,26.79,26.41,N/A,N/A -2012,8,26,9,30,101470,100330,99220,80.57000000000001,0,6.9,7.49,7.63,7.7,7.76,7.8,7.82,7.8500000000000005,7.87,137.23,137.37,137.46,137.54,137.61,137.68,137.76,137.82,137.96,28.39,28.04,27.86,27.66,27.47,27.28,27.080000000000002,26.89,26.51,N/A,N/A -2012,8,26,10,30,101510,100360,99260,82.52,0,6.51,7.1000000000000005,7.24,7.33,7.390000000000001,7.44,7.48,7.5,7.55,133.06,133.03,133,132.98,132.96,132.94,132.92000000000002,132.91,132.87,28.45,28.1,27.92,27.72,27.53,27.34,27.14,26.96,26.580000000000002,N/A,N/A -2012,8,26,11,30,101540,100390,99290,78.71000000000001,0,7.38,8.06,8.22,8.32,8.38,8.43,8.46,8.49,8.52,129.76,129.96,130.08,130.2,130.31,130.4,130.49,130.58,130.75,28.71,28.38,28.21,28.01,27.810000000000002,27.62,27.43,27.240000000000002,26.85,N/A,N/A -2012,8,26,12,30,101540,100390,99290,77.65,0,7.3100000000000005,7.94,8.07,8.120000000000001,8.16,8.18,8.19,8.19,8.17,133.74,134.04,134.17000000000002,134.31,134.43,134.55,134.67000000000002,134.78,135,28.7,28.37,28.2,28,27.810000000000002,27.62,27.42,27.240000000000002,26.85,N/A,N/A -2012,8,26,13,30,101620,100470,99360,71.67,0,6.0600000000000005,6.5600000000000005,6.67,6.73,6.7700000000000005,6.8,6.8100000000000005,6.83,6.8500000000000005,138.04,137.84,137.77,137.70000000000002,137.65,137.59,137.54,137.5,137.41,28.95,28.64,28.47,28.27,28.080000000000002,27.900000000000002,27.7,27.51,27.13,N/A,N/A -2012,8,26,14,30,101640,100490,99380,71.32000000000001,0,5.5600000000000005,6.0200000000000005,6.12,6.17,6.2,6.23,6.25,6.2700000000000005,6.29,141.57,141.16,140.98,140.81,140.66,140.51,140.38,140.24,139.99,28.93,28.61,28.44,28.25,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,8,26,15,30,101690,100540,99430,73.01,0,4.7700000000000005,5.1000000000000005,5.15,5.17,5.17,5.17,5.17,5.16,5.13,130.14000000000001,130.24,130.32,130.4,130.48,130.56,130.64000000000001,130.71,130.86,28.830000000000002,28.5,28.330000000000002,28.13,27.94,27.75,27.560000000000002,27.37,26.990000000000002,N/A,N/A -2012,8,26,16,30,101690,100540,99430,67.27,0,4.54,4.78,4.8100000000000005,4.8100000000000005,4.8100000000000005,4.8,4.78,4.7700000000000005,4.74,120.37,120.52,120.7,120.88,121.02,121.16,121.3,121.42,121.64,29,28.68,28.51,28.310000000000002,28.11,27.93,27.73,27.54,27.16,N/A,N/A -2012,8,26,17,30,101680,100530,99420,69.72,0,3.5700000000000003,3.83,3.89,3.93,3.96,3.98,3.99,4.01,4.03,112.96000000000001,113.32000000000001,113.49000000000001,113.64,113.76,113.85000000000001,113.95,114.04,114.21000000000001,28.96,28.63,28.46,28.26,28.07,27.88,27.68,27.5,27.11,N/A,N/A -2012,8,26,18,30,101680,100540,99420,68.11,0,3.58,3.8000000000000003,3.84,3.86,3.88,3.89,3.9,3.9,3.91,116.06,116.21000000000001,116.35000000000001,116.49000000000001,116.60000000000001,116.72,116.82000000000001,116.91,117.12,29.04,28.71,28.54,28.34,28.150000000000002,27.96,27.76,27.57,27.19,N/A,N/A -2012,8,26,19,30,101680,100530,99420,64.57000000000001,0,2.82,3.02,3.08,3.13,3.16,3.19,3.22,3.24,3.29,117.01,117.10000000000001,117.22,117.33,117.42,117.5,117.58,117.66,117.83,29.19,28.87,28.69,28.5,28.3,28.11,27.92,27.73,27.35,N/A,N/A -2012,8,26,20,30,101620,100480,99370,71.79,0,3.91,4.21,4.28,4.33,4.37,4.41,4.44,4.46,4.51,121.22,121.37,121.5,121.63,121.77,121.89,122.02,122.14,122.39,28.94,28.59,28.42,28.22,28.03,27.84,27.64,27.45,27.07,N/A,N/A -2012,8,26,21,30,101580,100430,99320,70.38,0,3.73,4,4.0600000000000005,4.1,4.13,4.15,4.17,4.18,4.21,115.34,115.8,115.94,116.06,116.18,116.28,116.37,116.44,116.60000000000001,28.98,28.66,28.490000000000002,28.29,28.1,27.91,27.71,27.53,27.14,N/A,N/A -2012,8,26,22,30,101540,100390,99280,72.95,0,4.93,5.26,5.3,5.3100000000000005,5.32,5.32,5.3100000000000005,5.3,5.2700000000000005,123.55,122.96000000000001,122.69,122.4,122.14,121.89,121.63,121.4,120.91,28.92,28.59,28.43,28.23,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A -2012,8,26,23,30,101540,100390,99280,72.41,0,3.87,4.15,4.2,4.23,4.25,4.26,4.2700000000000005,4.28,4.29,109.62,109.71000000000001,109.77,109.83,109.89,109.94,110,110.06,110.19,28.91,28.6,28.43,28.240000000000002,28.05,27.86,27.67,27.48,27.1,N/A,N/A -2012,8,27,0,30,101540,100390,99280,77.98,0,5.36,5.7700000000000005,5.8500000000000005,5.89,5.92,5.93,5.94,5.94,5.94,105.86,106.57000000000001,106.9,107.22,107.5,107.76,108,108.24000000000001,108.68,28.7,28.37,28.2,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,8,27,1,30,101480,100330,99220,78.68,0,4.5,4.8100000000000005,4.87,4.9,4.91,4.92,4.93,4.93,4.92,113.2,113.31,113.39,113.46000000000001,113.53,113.59,113.65,113.71000000000001,113.82000000000001,28.52,28.19,28.01,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A -2012,8,27,2,30,101510,100360,99250,79.67,0,5.29,5.65,5.71,5.74,5.75,5.75,5.75,5.74,5.72,124.59,124.52,124.47,124.42,124.38000000000001,124.34,124.29,124.25,124.18,28.46,28.12,27.94,27.75,27.560000000000002,27.36,27.17,26.98,26.6,N/A,N/A -2012,8,27,3,30,101500,100350,99240,81.74,0,4.74,5.07,5.13,5.16,5.18,5.19,5.19,5.19,5.19,120.54,120.69,120.77,120.84,120.89,120.92,120.96000000000001,121.01,121.08,28.36,28.01,27.84,27.64,27.45,27.26,27.07,26.88,26.5,N/A,N/A -2012,8,27,4,30,101490,100350,99240,78.78,0,4.3,4.58,4.64,4.66,4.68,4.69,4.7,4.7,4.7,119.59,119.89,120.05,120.2,120.34,120.48,120.61,120.74000000000001,120.99000000000001,28.400000000000002,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A -2012,8,27,5,30,101490,100340,99230,79.81,0,3.64,3.85,3.89,3.9,3.9,3.9,3.89,3.89,3.86,122.83,122.86,122.81,122.74000000000001,122.68,122.61,122.54,122.47,122.31,28.330000000000002,27.98,27.810000000000002,27.61,27.42,27.23,27.03,26.85,26.46,N/A,N/A -2012,8,27,6,30,101510,100360,99250,78.32000000000001,0,2.41,2.54,2.56,2.57,2.57,2.58,2.58,2.58,2.58,109.71000000000001,110.22,110.36,110.5,110.62,110.73,110.84,110.94,111.15,28.3,27.95,27.78,27.580000000000002,27.39,27.2,27,26.810000000000002,26.43,N/A,N/A -2012,8,27,7,30,101530,100380,99270,74.06,0,2.24,2.38,2.41,2.44,2.46,2.48,2.49,2.5100000000000002,2.54,97.24000000000001,98.03,98.55,99.04,99.49000000000001,99.9,100.32000000000001,100.71000000000001,101.48,28.37,28.03,27.86,27.66,27.47,27.28,27.080000000000002,26.900000000000002,26.52,N/A,N/A -2012,8,27,8,30,101550,100400,99290,71.2,0,2.4,2.5,2.5,2.49,2.49,2.48,2.47,2.46,2.44,117.21000000000001,116.60000000000001,116.25,115.88,115.54,115.2,114.85000000000001,114.53,113.83,28.43,28.09,27.92,27.72,27.54,27.35,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,8,27,9,30,101550,100400,99290,71.3,0,1.3900000000000001,1.49,1.51,1.54,1.56,1.58,1.6,1.61,1.6500000000000001,103.74000000000001,103.82000000000001,103.92,104.05,104.15,104.23,104.31,104.39,104.57000000000001,28.39,28.060000000000002,27.89,27.69,27.5,27.310000000000002,27.12,26.93,26.55,N/A,N/A -2012,8,27,10,30,101560,100410,99300,68.41,0,0.99,1.04,1.05,1.06,1.07,1.08,1.08,1.09,1.1,45.75,44.57,44.27,43.980000000000004,43.71,43.46,43.21,42.99,42.51,28.51,28.18,28.01,27.810000000000002,27.62,27.43,27.23,27.05,26.66,N/A,N/A -2012,8,27,11,30,101570,100420,99310,66.78,0,1.8900000000000001,1.94,1.94,1.93,1.92,1.9100000000000001,1.9000000000000001,1.8900000000000001,1.86,40.08,40.89,41.49,42.07,42.61,43.14,43.68,44.19,45.29,28.53,28.2,28.03,27.84,27.650000000000002,27.46,27.26,27.080000000000002,26.69,N/A,N/A -2012,8,27,12,30,101590,100440,99330,66.7,0,2.95,3.09,3.11,3.11,3.11,3.11,3.1,3.1,3.09,25.310000000000002,24.900000000000002,24.71,24.53,24.37,24.23,24.080000000000002,23.94,23.68,28.61,28.28,28.11,27.92,27.73,27.54,27.34,27.16,26.77,N/A,N/A -2012,8,27,13,30,101610,100460,99350,79.92,0,4.75,4.99,5.0200000000000005,5.01,5,4.98,4.96,4.93,4.87,25.150000000000002,25.34,25.51,25.68,25.84,26,26.17,26.34,26.71,27.830000000000002,27.45,27.27,27.07,26.88,26.69,26.490000000000002,26.310000000000002,25.93,N/A,N/A -2012,8,27,14,30,101640,100480,99370,79.53,0,4.46,4.68,4.69,4.68,4.67,4.64,4.62,4.59,4.53,19.79,19.77,19.8,19.830000000000002,19.85,19.87,19.89,19.900000000000002,19.93,27.69,27.32,27.14,26.94,26.740000000000002,26.560000000000002,26.36,26.18,25.8,N/A,N/A -2012,8,27,15,30,101620,100470,99360,77.95,0,4.14,4.36,4.39,4.4,4.4,4.39,4.38,4.37,4.3500000000000005,13.540000000000001,13.35,13.24,13.120000000000001,13,12.88,12.74,12.61,12.3,27.77,27.39,27.21,27.02,26.82,26.63,26.44,26.26,25.88,N/A,N/A -2012,8,27,16,30,101620,100470,99360,72.28,0,3.74,3.97,4.0200000000000005,4.0600000000000005,4.08,4.1,4.12,4.13,4.16,16.81,16.45,16.17,15.89,15.620000000000001,15.35,15.07,14.8,14.18,28.2,27.85,27.67,27.48,27.29,27.1,26.900000000000002,26.72,26.34,N/A,N/A -2012,8,27,17,30,101570,100420,99310,68.86,0,2.4,2.5300000000000002,2.56,2.58,2.6,2.62,2.64,2.66,2.7,26.09,24.8,24.09,23.38,22.72,22.080000000000002,21.43,20.830000000000002,19.56,28.57,28.23,28.060000000000002,27.86,27.67,27.490000000000002,27.29,27.11,26.740000000000002,N/A,N/A -2012,8,27,18,30,101510,100360,99250,68.04,0,1.17,1.24,1.27,1.28,1.31,1.32,1.35,1.37,1.42,11.82,9.96,8.9,7.9,7,6.16,5.3100000000000005,4.49,2.89,28.78,28.44,28.27,28.07,27.88,27.7,27.5,27.32,26.95,N/A,N/A -2012,8,27,19,30,101470,100330,99220,67.17,0,1.02,1.06,1.07,1.07,1.08,1.09,1.1,1.11,1.1400000000000001,245.58,249.66,252.03,254.53,256.92,259.29,261.87,264.4,270.24,29.05,28.71,28.54,28.35,28.16,27.97,27.79,27.61,27.240000000000002,N/A,N/A -2012,8,27,20,30,101390,100250,99140,67.34,0,1.92,1.94,1.92,1.8900000000000001,1.85,1.82,1.78,1.73,1.6300000000000001,220.66,222,222.89000000000001,223.91,225.01,226.16,227.71,229.29,234.49,29.19,28.85,28.68,28.48,28.3,28.11,27.92,27.75,27.39,N/A,N/A -2012,8,27,21,30,101310,100170,99070,66.58,0,1.34,1.3,1.25,1.19,1.12,1.06,0.97,0.88,0.89,196.77,199.56,201.51,204.02,207.32,211.08,218.47,226.23000000000002,272.33,29.42,29.09,28.93,28.740000000000002,28.57,28.400000000000002,28.23,28.080000000000002,27.86,N/A,N/A -2012,8,27,22,30,101280,100140,99040,66.86,0,1.93,2.15,2.24,2.33,2.41,2.49,2.58,2.66,2.81,276.2,280.06,282.1,283.99,285.67,287.25,288.72,290.1,292.66,29.67,29.35,29.19,28.990000000000002,28.8,28.62,28.42,28.23,27.85,N/A,N/A -2012,8,27,23,30,101220,100080,98980,72.2,0,2.34,2.57,2.63,2.69,2.73,2.7800000000000002,2.83,2.87,2.96,300.98,303.15000000000003,304.39,305.48,306.44,307.31,308.15000000000003,308.95,310.42,29.75,29.46,29.3,29.11,28.93,28.740000000000002,28.55,28.37,28,N/A,N/A -2012,8,28,0,30,101200,100060,98960,75.64,0,6.83,7.3500000000000005,7.37,7.32,7.25,7.17,7.0600000000000005,6.95,6.69,335.29,335.31,335.25,335.16,335.05,334.93,334.78000000000003,334.63,334.21,29.37,29.07,28.92,28.73,28.560000000000002,28.38,28.2,28.03,27.69,N/A,N/A -2012,8,28,1,30,101190,100050,98950,73.8,0,6.67,7.2,7.28,7.3100000000000005,7.3500000000000005,7.41,7.66,7.98,8.11,331.96,332.36,332.65000000000003,333.02,333.51,334.12,335.42,336.98,338.43,29.55,29.3,29.16,29,28.85,28.72,28.67,28.66,28.51,N/A,N/A -2012,8,28,2,30,101180,100040,98940,72.92,0,6.13,6.63,6.71,6.74,6.7700000000000005,6.79,6.84,6.9,7.6000000000000005,336.85,337.13,337.27,337.46,337.71,338.02,338.64,339.33,347.63,29.38,29.1,28.95,28.77,28.61,28.44,28.3,28.16,28.29,N/A,N/A -2012,8,28,3,30,101150,100010,98910,75.08,0,6.0200000000000005,6.5,6.58,6.61,6.65,6.68,6.78,6.88,7.84,348.14,348.56,348.85,349.22,349.67,350.2,351.13,352.17,359.22,29.29,29,28.85,28.67,28.5,28.330000000000002,28.19,28.05,28.150000000000002,N/A,N/A -2012,8,28,4,30,101130,99990,98890,75.87,0,6.01,6.5200000000000005,6.62,6.67,6.71,6.74,6.78,6.82,6.97,348.59000000000003,349.13,349.49,349.88,350.29,350.72,351.29,351.86,353.84000000000003,29.18,28.88,28.73,28.54,28.37,28.19,28.01,27.85,27.54,N/A,N/A -2012,8,28,5,30,101130,99990,98880,75.65,0,6.5,7.05,7.140000000000001,7.19,7.22,7.25,7.28,7.33,7.55,357.78000000000003,358.27,358.55,358.91,359.31,359.77,0.44,1.1500000000000001,3.8000000000000003,29.14,28.84,28.68,28.490000000000002,28.310000000000002,28.14,27.96,27.79,27.5,N/A,N/A -2012,8,28,6,30,101120,99980,98870,76.56,0,6.58,7.140000000000001,7.24,7.28,7.32,7.3500000000000005,7.37,7.4,7.5,357.39,358.14,358.54,358.99,359.45,359.93,0.54,1.16,3.08,29.01,28.7,28.54,28.35,28.17,27.990000000000002,27.810000000000002,27.64,27.3,N/A,N/A -2012,8,28,7,30,101110,99970,98870,77.03,0,6.8100000000000005,7.33,7.42,7.45,7.47,7.48,7.5200000000000005,7.5600000000000005,7.96,4.17,4.69,5.04,5.45,5.92,6.45,7.24,8.07,11.92,28.8,28.490000000000002,28.330000000000002,28.150000000000002,27.990000000000002,27.830000000000002,27.68,27.54,27.39,N/A,N/A -2012,8,28,8,30,101080,99940,98840,76.04,0,6.29,6.75,6.82,6.8500000000000005,6.88,6.9,6.95,7.01,7.5200000000000005,3.74,4.2700000000000005,4.66,5.11,5.67,6.32,7.33,8.42,13.43,28.71,28.400000000000002,28.25,28.080000000000002,27.91,27.76,27.62,27.5,27.5,N/A,N/A -2012,8,28,9,30,101090,99950,98840,77.22,0,6.94,7.47,7.57,7.61,7.66,7.7,7.8,7.930000000000001,9.02,6.54,7,7.3100000000000005,7.65,8.05,8.52,9.290000000000001,10.14,14.96,28.47,28.14,27.98,27.8,27.63,27.47,27.330000000000002,27.21,27.330000000000002,N/A,N/A -2012,8,28,10,30,101060,99920,98820,74.24,0,7.09,7.66,7.7700000000000005,7.84,7.9,7.95,8.06,8.18,9.11,11.94,12.31,12.58,12.9,13.280000000000001,13.71,14.38,15.11,18.89,28.6,28.28,28.12,27.95,27.79,27.63,27.5,27.38,27.45,N/A,N/A -2012,8,28,11,30,101080,99940,98830,74.41,0,7.03,7.55,7.640000000000001,7.68,7.7,7.72,7.74,7.76,7.91,358.56,359.27,359.73,0.25,0.8200000000000001,1.42,2.22,3.04,5.83,28.29,27.94,27.78,27.59,27.41,27.240000000000002,27.07,26.91,26.62,N/A,N/A -2012,8,28,12,30,101070,99920,98820,74.51,0,7.99,8.66,8.78,8.84,8.88,8.91,8.93,8.950000000000001,9.02,0.16,0.85,1.27,1.72,2.2,2.7,3.31,3.9,5.57,28.17,27.8,27.63,27.44,27.25,27.080000000000002,26.89,26.72,26.38,N/A,N/A -2012,8,28,13,30,101060,99910,98800,76.98,0,7.47,8.02,8.11,8.15,8.18,8.2,8.23,8.27,8.61,9.040000000000001,9.47,9.75,10.05,10.4,10.77,11.33,11.91,14.72,27.76,27.38,27.2,27.01,26.84,26.66,26.490000000000002,26.330000000000002,26.12,N/A,N/A -2012,8,28,14,30,101080,99930,98820,75.81,0,7.05,7.57,7.65,7.7,7.73,7.75,7.8100000000000005,7.87,8.370000000000001,2.25,2.68,2.97,3.31,3.72,4.19,4.91,5.68,9.71,28.02,27.66,27.490000000000002,27.3,27.12,26.95,26.78,26.63,26.45,N/A,N/A -2012,8,28,15,30,101050,99910,98810,72.37,0,6.67,7.19,7.28,7.32,7.36,7.4,7.49,7.58,8.56,351.75,352.3,352.72,353.23,353.86,354.57,355.85,357.28000000000003,7.45,28.78,28.47,28.310000000000002,28.13,27.96,27.8,27.66,27.53,27.59,N/A,N/A -2012,8,28,16,30,101030,99890,98790,68.5,0,6.62,7.19,7.29,7.33,7.3500000000000005,7.36,7.37,7.38,7.43,344.95,345.5,345.86,346.29,346.77,347.29,347.99,348.71,351.19,29.54,29.28,29.13,28.95,28.78,28.61,28.44,28.29,28,N/A,N/A -2012,8,28,17,30,100970,99840,98750,65.19,0,4.53,4.96,5.07,5.18,5.29,5.41,5.57,5.73,6.17,355.8,356.71,357.40000000000003,358.23,359.18,0.26,1.52,2.81,5.41,30.66,30.52,30.42,30.28,30.14,30,29.87,29.75,29.51,N/A,N/A -2012,8,28,18,30,100900,99770,98680,57.15,0,8.21,9.27,9.56,9.74,9.86,9.92,9.94,9.94,9.88,346.68,347.24,347.63,348.09000000000003,348.54,349,349.47,349.94,350.92,31.64,31.67,31.61,31.5,31.37,31.220000000000002,31.07,30.91,30.580000000000002,N/A,N/A -2012,8,28,19,30,100840,99720,98630,61.54,0,5.79,6.74,7.07,7.36,7.61,7.84,8.06,8.25,8.6,349.01,350.24,351.13,352.32,353.52,354.8,356.04,357.21,359.15000000000003,31.62,31.77,31.78,31.75,31.69,31.61,31.51,31.400000000000002,31.12,N/A,N/A -2012,8,28,20,30,100760,99640,98550,63.190000000000005,0,5.96,7.11,7.53,7.92,8.25,8.53,8.78,8.99,9.3,349.98,350.83,351.45,352.19,352.93,353.7,354.5,355.26,356.69,31.84,32,32.02,31.990000000000002,31.94,31.87,31.77,31.67,31.41,N/A,N/A -2012,8,28,21,30,100710,99580,98500,59.82,0,7.9,9.44,9.98,10.5,10.92,11.290000000000001,11.58,11.84,12.22,1.32,2.36,2.98,3.5500000000000003,3.99,4.3500000000000005,4.6000000000000005,4.8,4.98,32.230000000000004,32.5,32.55,32.56,32.54,32.49,32.42,32.33,32.1,N/A,N/A -2012,8,28,22,30,100630,99510,98420,61.71,0,6.95,8.46,9.02,9.55,9.98,10.36,10.68,10.97,11.43,0.84,2.02,2.67,3.31,3.8200000000000003,4.26,4.6000000000000005,4.87,5.14,32.05,32.36,32.44,32.47,32.46,32.42,32.36,32.28,32.07,N/A,N/A -2012,8,28,23,30,100610,99480,98400,63.53,0,6.3100000000000005,7.78,8.34,8.870000000000001,9.33,9.74,10.11,10.450000000000001,11.03,352.55,353.91,354.74,355.59000000000003,356.32,357.01,357.56,358.02,358.61,31.91,32.32,32.44,32.52,32.54,32.52,32.45,32.37,32.12,N/A,N/A -2012,8,29,0,30,100600,99480,98400,61.17,0,7.86,9.32,9.790000000000001,10.17,10.47,10.72,10.950000000000001,11.16,11.56,4.88,5.14,5.36,5.7700000000000005,6.24,6.7700000000000005,7.2700000000000005,7.73,8.33,32.13,32.480000000000004,32.56,32.59,32.57,32.51,32.410000000000004,32.3,32,N/A,N/A -2012,8,29,1,30,100620,99490,98410,60.22,0,7.91,9.450000000000001,10.03,10.58,11.08,11.55,12.02,12.47,13.39,2.21,3.21,3.97,4.97,5.97,7.01,8.06,9.07,10.88,31.900000000000002,32.14,32.18,32.15,32.09,31.990000000000002,31.87,31.740000000000002,31.43,N/A,N/A -2012,8,29,2,30,100620,99500,98410,63.52,0,8.66,10.14,10.700000000000001,11.25,11.75,12.23,12.700000000000001,13.16,14,5.34,6.390000000000001,7.13,8.06,8.98,9.92,10.92,11.91,13.83,31.45,31.55,31.55,31.5,31.44,31.36,31.28,31.19,30.98,N/A,N/A -2012,8,29,3,30,100620,99490,98400,64.43,0,9.57,10.98,11.46,11.89,12.27,12.63,12.99,13.33,14.01,7.15,7.82,8.3,8.88,9.44,10.040000000000001,10.67,11.290000000000001,12.59,31.17,31.19,31.13,31.04,30.93,30.82,30.71,30.59,30.35,N/A,N/A -2012,8,29,4,30,100590,99460,98370,65.81,0,10.28,11.84,12.38,12.89,13.33,13.75,14.16,14.540000000000001,15.27,358.85,359.3,359.69,0.16,0.64,1.1500000000000001,1.7,2.2600000000000002,3.52,30.91,30.900000000000002,30.85,30.75,30.66,30.560000000000002,30.46,30.36,30.14,N/A,N/A -2012,8,29,5,30,100540,99410,98320,71.01,0,9.69,11.55,12.34,13.13,13.73,14.18,14.61,15.02,15.8,354.86,356.43,357.2,357.68,358.44,359.48,0.5700000000000001,1.6300000000000001,3.72,30.35,30.32,30.25,30.07,29.95,29.86,29.76,29.66,29.42,N/A,N/A -2012,8,29,6,30,100550,99420,98330,71.54,0,9.61,10.65,10.9,11.05,11.17,11.25,11.32,11.38,11.49,8.92,8.82,8.84,8.86,8.88,8.9,8.93,8.97,9.07,29.95,29.71,29.57,29.39,29.21,29.03,28.85,28.67,28.310000000000002,N/A,N/A -2012,8,29,7,30,100540,99400,98310,73.66,0,9.32,10.25,10.450000000000001,10.56,10.63,10.69,10.75,10.8,10.98,357.87,358.33,358.56,358.81,359.09000000000003,359.37,359.74,0.12,1.24,29.54,29.27,29.11,28.92,28.740000000000002,28.57,28.38,28.21,27.87,N/A,N/A -2012,8,29,8,30,100540,99400,98310,74,0,9.05,9.94,10.14,10.25,10.33,10.39,10.44,10.49,10.6,357.98,358.68,359.06,359.46,359.83,0.2,0.62,1.04,2.06,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.93,27.73,27.55,27.18,N/A,N/A -2012,8,29,9,30,100530,99400,98300,75.95,0,10.09,11.14,11.38,11.52,11.64,11.73,11.8,11.88,12.05,356.67,356.93,357.09000000000003,357.25,357.42,357.59000000000003,357.79,357.99,358.52,28.63,28.27,28.1,27.900000000000002,27.72,27.53,27.34,27.16,26.8,N/A,N/A -2012,8,29,10,30,100540,99400,98300,76.75,0,10.040000000000001,11,11.22,11.33,11.41,11.46,11.5,11.52,11.56,353.93,354.23,354.45,354.67,354.87,355.07,355.29,355.5,355.99,28.23,27.84,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.32,N/A,N/A -2012,8,29,11,30,100540,99400,98300,77.91,0,10.69,11.81,12.08,12.25,12.370000000000001,12.450000000000001,12.52,12.59,12.68,354.69,355.13,355.41,355.68,355.95,356.2,356.47,356.73,357.31,28.11,27.71,27.52,27.32,27.13,26.94,26.740000000000002,26.560000000000002,26.17,N/A,N/A -2012,8,29,12,30,100510,99370,98270,78.92,0,10.65,11.69,11.93,12.06,12.15,12.21,12.26,12.290000000000001,12.32,347.45,347.82,348.07,348.31,348.53000000000003,348.74,348.96,349.17,349.63,27.85,27.43,27.240000000000002,27.03,26.84,26.64,26.45,26.26,25.88,N/A,N/A -2012,8,29,13,30,100510,99370,98270,78.9,0,11.16,12.290000000000001,12.56,12.71,12.81,12.89,12.94,12.98,13.030000000000001,346.71,346.93,347.07,347.21,347.34000000000003,347.48,347.62,347.76,348.07,27.830000000000002,27.400000000000002,27.21,26.990000000000002,26.8,26.6,26.41,26.22,25.84,N/A,N/A -2012,8,29,14,30,100520,99380,98280,78.65,0,10.43,11.450000000000001,11.69,11.84,11.93,12,12.05,12.09,12.15,341.81,342,342.12,342.25,342.36,342.47,342.6,342.72,342.99,27.92,27.5,27.310000000000002,27.1,26.91,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,8,29,15,30,100500,99370,98270,77.54,0,9.92,10.9,11.120000000000001,11.25,11.34,11.4,11.44,11.48,11.52,338.3,338.6,338.8,338.99,339.17,339.36,339.54,339.72,340.1,28.330000000000002,27.95,27.77,27.57,27.37,27.18,26.990000000000002,26.8,26.42,N/A,N/A -2012,8,29,16,30,100450,99320,98220,74.69,0,10.55,11.68,11.94,12.09,12.200000000000001,12.27,12.33,12.370000000000001,12.41,331.87,332.34000000000003,332.6,332.87,333.12,333.35,333.59000000000003,333.81,334.29,28.990000000000002,28.66,28.490000000000002,28.3,28.11,27.92,27.73,27.54,27.17,N/A,N/A -2012,8,29,17,30,100430,99300,98200,69.82000000000001,0,11.01,12.31,12.64,12.85,13,13.11,13.200000000000001,13.27,13.370000000000001,334.37,334.78000000000003,335.01,335.25,335.47,335.68,335.89,336.09000000000003,336.5,29.95,29.71,29.57,29.38,29.21,29.03,28.84,28.66,28.3,N/A,N/A -2012,8,29,18,30,100410,99280,98190,68.15,0,9.92,11.03,11.32,11.52,11.67,11.8,11.91,12,12.16,333.84000000000003,334.32,334.64,335.02,335.40000000000003,335.79,336.21,336.63,337.53000000000003,30.63,30.5,30.400000000000002,30.240000000000002,30.09,29.93,29.76,29.6,29.25,N/A,N/A -2012,8,29,19,30,100370,99240,98160,66.45,0,9.64,10.83,11.18,11.43,11.63,11.790000000000001,11.93,12.040000000000001,12.23,335.06,335.69,336.1,336.59000000000003,337.05,337.52,337.99,338.46,339.39,31.14,31.09,31.01,30.87,30.73,30.580000000000002,30.43,30.27,29.93,N/A,N/A -2012,8,29,20,30,100310,99190,98110,66.45,0,9.51,10.93,11.39,11.77,12.09,12.36,12.58,12.780000000000001,13.1,334.42,335.28000000000003,335.82,336.44,337,337.57,338.13,338.65000000000003,339.69,31.5,31.54,31.490000000000002,31.39,31.28,31.16,31.02,30.88,30.57,N/A,N/A -2012,8,29,21,30,100280,99160,98080,64.01,0,11.14,12.85,13.35,13.72,13.98,14.15,14.25,14.3,14.290000000000001,349.34000000000003,349.66,349.82,349.97,350.09000000000003,350.21,350.31,350.40000000000003,350.57,31.8,31.89,31.86,31.77,31.67,31.54,31.400000000000002,31.25,30.92,N/A,N/A -2012,8,29,22,30,100290,99170,98090,66.22,0,7.91,9.11,9.52,9.88,10.200000000000001,10.51,10.82,11.120000000000001,11.74,347.66,346.77,346.26,345.54,344.84000000000003,344.11,343.47,342.89,342.09000000000003,31.53,31.61,31.580000000000002,31.5,31.400000000000002,31.29,31.150000000000002,31.01,30.7,N/A,N/A -2012,8,29,23,30,100290,99170,98080,68.68,0,8,9.19,9.58,9.92,10.200000000000001,10.44,10.66,10.86,11.21,344.76,345.33,345.67,346.09000000000003,346.5,346.91,347.34000000000003,347.76,348.54,31.44,31.48,31.43,31.34,31.240000000000002,31.11,30.98,30.85,30.55,N/A,N/A -2012,8,30,0,30,100320,99190,98110,72.74,2.9000000000000004,8.63,9.43,9.77,10.33,10.96,11.69,12.370000000000001,13,14.17,16.32,15.02,13.81,11.78,9.9,8.01,6.73,5.7700000000000005,4.59,29.87,29.71,29.67,29.67,29.7,29.76,29.77,29.75,29.64,N/A,N/A -2012,8,30,1,30,100390,99260,98160,80.58,0,12.99,14.290000000000001,14.59,14.72,14.8,14.84,14.84,14.84,14.780000000000001,27.96,27,26.62,26.25,25.92,25.6,25.29,24.990000000000002,24.38,28.29,27.89,27.71,27.5,27.310000000000002,27.13,26.93,26.75,26.39,N/A,N/A -2012,8,30,2,30,100420,99280,98180,78.24,0,12.92,14.31,14.65,14.83,14.96,15.05,15.11,15.15,15.21,3.27,3.65,3.84,4.0200000000000005,4.19,4.34,4.49,4.64,4.95,28.03,27.6,27.400000000000002,27.19,26.990000000000002,26.8,26.6,26.42,26.03,N/A,N/A -2012,8,30,3,30,100420,99280,98180,76.61,0,9.93,10.91,11.14,11.27,11.370000000000001,11.44,11.49,11.53,11.61,359.8,0.27,0.56,0.8300000000000001,1.09,1.33,1.58,1.82,2.32,27.96,27.55,27.36,27.150000000000002,26.96,26.76,26.560000000000002,26.37,25.990000000000002,N/A,N/A -2012,8,30,4,30,100420,99280,98180,78.47,0,9.540000000000001,10.53,10.790000000000001,10.96,11.09,11.19,11.27,11.35,11.48,357.63,357.96,358.13,358.29,358.43,358.58,358.71,358.84000000000003,359.12,27.63,27.2,27.01,26.8,26.6,26.41,26.21,26.02,25.64,N/A,N/A -2012,8,30,5,30,100400,99260,98150,78.37,0,9.5,10.370000000000001,10.59,10.72,10.8,10.870000000000001,10.92,10.96,11.03,351.35,351.6,351.78000000000003,351.94,352.08,352.22,352.36,352.5,352.8,27.38,26.93,26.740000000000002,26.53,26.34,26.150000000000002,25.95,25.77,25.39,N/A,N/A -2012,8,30,6,30,100430,99290,98180,78.34,0,10.14,11.11,11.35,11.48,11.58,11.64,11.69,11.72,11.76,346.26,346.57,346.71,346.82,346.91,346.98,347.04,347.1,347.2,27.37,26.93,26.73,26.52,26.32,26.13,25.92,25.73,25.35,N/A,N/A -2012,8,30,7,30,100430,99290,98180,77.85000000000001,0,9.71,10.61,10.82,10.93,11.01,11.07,11.1,11.13,11.15,339.54,339.62,339.67,339.72,339.76,339.8,339.83,339.87,339.94,27.18,26.73,26.53,26.32,26.12,25.92,25.72,25.53,25.150000000000002,N/A,N/A -2012,8,30,8,30,100390,99250,98150,79.06,0,9.370000000000001,10.18,10.35,10.44,10.49,10.52,10.53,10.540000000000001,10.53,332.71,333.02,333.12,333.19,333.25,333.3,333.34000000000003,333.38,333.46,27.18,26.73,26.53,26.32,26.12,25.93,25.73,25.54,25.150000000000002,N/A,N/A -2012,8,30,9,30,100430,99290,98180,77.25,0,9.89,10.82,11.06,11.200000000000001,11.3,11.370000000000001,11.42,11.46,11.52,330.39,330.29,330.29,330.29,330.28000000000003,330.28000000000003,330.27,330.26,330.25,27.19,26.740000000000002,26.55,26.330000000000002,26.14,25.94,25.740000000000002,25.55,25.17,N/A,N/A -2012,8,30,10,30,100440,99300,98190,77.96000000000001,0,9.3,10.14,10.34,10.450000000000001,10.53,10.58,10.61,10.64,10.66,330.24,330.13,330.12,330.1,330.08,330.07,330.06,330.04,330.02,27.07,26.62,26.42,26.21,26.01,25.810000000000002,25.62,25.43,25.04,N/A,N/A -2012,8,30,11,30,100450,99310,98200,79.72,0,9.05,9.78,9.94,10.02,10.06,10.08,10.08,10.08,10.06,330.09000000000003,330.18,330.22,330.25,330.27,330.28000000000003,330.29,330.3,330.31,26.72,26.25,26.05,25.84,25.64,25.45,25.25,25.060000000000002,24.68,N/A,N/A -2012,8,30,12,30,100470,99320,98220,78.01,0,9.75,10.56,10.73,10.81,10.85,10.870000000000001,10.870000000000001,10.870000000000001,10.83,325.26,325.25,325.25,325.23,325.21,325.18,325.14,325.11,325.03000000000003,26.78,26.310000000000002,26.11,25.900000000000002,25.7,25.5,25.3,25.12,24.740000000000002,N/A,N/A -2012,8,30,13,30,100530,99380,98280,77.69,0,8.58,9.27,9.43,9.51,9.56,9.6,9.620000000000001,9.63,9.64,326.22,326.02,325.90000000000003,325.78000000000003,325.67,325.56,325.44,325.33,325.09000000000003,26.63,26.16,25.96,25.75,25.55,25.36,25.16,24.97,24.59,N/A,N/A -2012,8,30,14,30,100560,99420,98310,75.96000000000001,0,7.95,8.57,8.72,8.790000000000001,8.84,8.870000000000001,8.9,8.91,8.93,318.51,318.56,318.59000000000003,318.6,318.62,318.64,318.65000000000003,318.66,318.69,26.900000000000002,26.45,26.26,26.05,25.85,25.66,25.46,25.27,24.89,N/A,N/A -2012,8,30,15,30,100580,99430,98320,75.41,0,7.44,7.99,8.11,8.16,8.19,8.2,8.21,8.21,8.2,307.04,307.3,307.43,307.54,307.65000000000003,307.75,307.86,307.97,308.2,27.060000000000002,26.63,26.44,26.23,26.04,25.84,25.650000000000002,25.46,25.080000000000002,N/A,N/A -2012,8,30,16,30,100610,99470,98370,71.9,0,5.97,6.36,6.44,6.48,6.5,6.51,6.5200000000000005,6.5200000000000005,6.5200000000000005,310.35,309.18,308.48,307.73,307.04,306.36,305.67,304.99,303.57,27.8,27.43,27.25,27.05,26.86,26.68,26.490000000000002,26.310000000000002,25.93,N/A,N/A -2012,8,30,17,30,100620,99480,98380,68.9,0,3.71,3.94,3.99,4.03,4.0600000000000005,4.09,4.13,4.16,4.23,302.56,300.05,298.56,297.13,295.83,294.59000000000003,293.38,292.25,290.03000000000003,28.67,28.35,28.18,27.990000000000002,27.810000000000002,27.62,27.44,27.26,26.89,N/A,N/A -2012,8,30,18,30,100640,99510,98410,67.32000000000001,0,1.45,1.51,1.53,1.55,1.58,1.61,1.6500000000000001,1.69,1.79,310.09000000000003,303.36,299.35,295.23,291.61,288.17,284.87,281.76,275.96,29.16,28.85,28.69,28.5,28.32,28.13,27.95,27.77,27.400000000000002,N/A,N/A -2012,8,30,19,30,100650,99520,98420,67.3,0,3.56,3.83,3.9,3.95,3.98,4,4.0200000000000005,4.03,4.05,225.9,226.66,227.14000000000001,227.63,228.09,228.56,229.03,229.49,230.48000000000002,29.8,29.5,29.34,29.14,28.96,28.77,28.580000000000002,28.400000000000002,28.02,N/A,N/A -2012,8,30,20,30,100660,99520,98420,75.27,0,6.72,7.26,7.36,7.390000000000001,7.41,7.4,7.38,7.3500000000000005,7.26,194.34,194.65,194.84,195.02,195.19,195.37,195.56,195.75,196.29,29.11,28.78,28.62,28.42,28.240000000000002,28.05,27.86,27.68,27.32,N/A,N/A -2012,8,30,21,30,100640,99510,98410,77.35000000000001,0,7.930000000000001,8.61,8.73,8.76,8.77,8.76,8.74,8.71,8.65,200.25,200.47,200.63,200.82,201.01,201.22,201.49,201.77,202.71,29.12,28.82,28.66,28.47,28.3,28.12,27.94,27.77,27.46,N/A,N/A -2012,8,30,22,30,100640,99500,98410,78.43,0,8.64,9.42,9.57,9.63,9.66,9.66,9.66,9.65,9.67,200.55,200.8,200.94,201.1,201.28,201.47,201.73000000000002,202.01,203.02,29.23,28.94,28.79,28.6,28.43,28.25,28.080000000000002,27.92,27.64,N/A,N/A -2012,8,30,23,30,100660,99530,98430,78.69,0,9.09,9.92,10.09,10.15,10.19,10.200000000000001,10.22,10.23,10.34,199.58,199.75,199.86,200.01,200.17000000000002,200.36,200.61,200.89000000000001,202.03,29.36,29.09,28.94,28.76,28.59,28.41,28.25,28.09,27.84,N/A,N/A -2012,8,31,0,30,100690,99560,98460,79.93,0,9.34,10.24,10.41,10.49,10.52,10.53,10.53,10.51,10.47,195.81,196.01,196.08,196.17000000000002,196.26,196.35,196.46,196.57,196.95000000000002,29.46,29.2,29.05,28.86,28.69,28.52,28.35,28.18,27.88,N/A,N/A -2012,8,31,1,30,100720,99590,98490,78.83,0,9.68,10.6,10.790000000000001,10.86,10.9,10.91,10.9,10.88,10.82,197.23000000000002,197.4,197.47,197.55,197.63,197.72,197.84,197.96,198.45000000000002,29.66,29.42,29.28,29.1,28.94,28.77,28.61,28.45,28.17,N/A,N/A -2012,8,31,2,30,100790,99660,98560,74.07000000000001,0,9.120000000000001,10.13,10.46,10.82,11.06,11.19,11.39,11.63,12.02,201.53,201.27,201.19,201.1,201.17000000000002,201.42000000000002,202.08,202.94,205.31,30.21,30.12,30.060000000000002,29.98,29.88,29.72,29.67,29.68,29.69,N/A,N/A -2012,8,31,3,30,100860,99730,98630,74.64,0,8.44,9.67,10.11,10.4,10.700000000000001,11.05,11.38,11.69,11.9,198.55,199.34,199.83,200.06,200.70000000000002,201.75,202.94,204.20000000000002,206.42000000000002,30.240000000000002,30.21,30.150000000000002,29.990000000000002,29.89,29.87,29.85,29.84,29.68,N/A,N/A -2012,8,31,4,30,100920,99790,98690,80.11,0,9.08,10.09,10.41,10.75,11,11.19,11.42,11.66,12.200000000000001,196.37,196.57,196.76,196.94,197.21,197.6,198.09,198.67000000000002,200,29.990000000000002,29.86,29.77,29.63,29.52,29.39,29.27,29.16,29.02,N/A,N/A -2012,8,31,5,30,100960,99820,98720,81.29,0,9.69,10.77,11.07,11.28,11.450000000000001,11.6,11.75,11.89,12.25,197.66,197.96,198.15,198.35,198.54,198.74,198.94,199.14000000000001,199.61,29.86,29.650000000000002,29.52,29.35,29.19,29.02,28.86,28.7,28.400000000000002,N/A,N/A -2012,8,31,6,30,101030,99900,98800,80.99,0,11.43,12.72,13.06,13.280000000000001,13.450000000000001,13.58,13.700000000000001,13.8,14,201.49,201.36,201.31,201.27,201.25,201.24,201.24,201.25,201.31,29.97,29.76,29.63,29.46,29.3,29.13,28.97,28.810000000000002,28.48,N/A,N/A -2012,8,31,7,30,101090,99960,98860,82.97,0,11.450000000000001,12.780000000000001,13.120000000000001,13.35,13.52,13.64,13.74,13.82,13.950000000000001,200.72,200.81,200.83,200.85,200.87,200.89000000000001,200.91,200.93,200.96,29.94,29.7,29.560000000000002,29.38,29.2,29.03,28.85,28.67,28.310000000000002,N/A,N/A -2012,8,31,8,30,101140,100010,98910,84.24,0,11.1,12.49,12.83,13.06,13.24,13.36,13.46,13.540000000000001,13.65,196.62,197,197.11,197.20000000000002,197.28,197.34,197.39000000000001,197.44,197.5,29.77,29.490000000000002,29.330000000000002,29.14,28.96,28.77,28.580000000000002,28.39,28.01,N/A,N/A -2012,8,31,9,30,101200,100060,98960,81.07000000000001,0,11.4,12.77,13.09,13.31,13.46,13.57,13.64,13.71,13.780000000000001,197.86,198.12,198.17000000000002,198.19,198.20000000000002,198.19,198.18,198.16,198.1,29.91,29.64,29.48,29.29,29.11,28.92,28.73,28.55,28.17,N/A,N/A -2012,8,31,10,30,101270,100130,99030,78.62,0,11.34,12.55,12.86,13.040000000000001,13.17,13.26,13.34,13.39,13.49,194.69,194.8,194.91,195.07,195.22,195.39000000000001,195.56,195.74,196.14000000000001,29.900000000000002,29.67,29.53,29.35,29.18,29.01,28.830000000000002,28.650000000000002,28.3,N/A,N/A -2012,8,31,11,30,101320,100190,99080,77.37,0,10.3,11.42,11.71,11.89,12.02,12.120000000000001,12.200000000000001,12.27,12.39,193.67000000000002,194,194.27,194.59,194.9,195.22,195.56,195.9,196.63,29.98,29.75,29.62,29.44,29.28,29.11,28.93,28.76,28.42,N/A,N/A -2012,8,31,12,30,101370,100230,99130,78.73,0,10.84,12.120000000000001,12.43,12.63,12.780000000000001,12.88,12.96,13.02,13.09,194.24,194.41,194.49,194.56,194.62,194.68,194.73000000000002,194.78,194.86,29.71,29.43,29.27,29.07,28.89,28.7,28.51,28.32,27.94,N/A,N/A -2012,8,31,13,30,101450,100310,99200,77.16,0,10.33,11.43,11.700000000000001,11.85,11.96,12.02,12.07,12.1,12.13,191.74,192.02,192.18,192.35,192.49,192.62,192.74,192.87,193.1,29.71,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.98,N/A,N/A -2012,8,31,14,30,101490,100350,99240,76.2,0,9.24,10.28,10.52,10.66,10.76,10.83,10.88,10.92,10.96,193.9,193.98000000000002,194.01,194.05,194.08,194.11,194.13,194.15,194.19,29.73,29.45,29.29,29.1,28.91,28.73,28.54,28.35,27.97,N/A,N/A -2012,8,31,15,30,101550,100410,99300,77.55,0,8.31,9.17,9.370000000000001,9.49,9.57,9.63,9.67,9.700000000000001,9.74,187.75,187.97,188.14000000000001,188.31,188.45000000000002,188.6,188.75,188.89000000000001,189.16,29.69,29.41,29.25,29.05,28.87,28.68,28.490000000000002,28.3,27.92,N/A,N/A -2012,8,31,16,30,101570,100430,99330,74.17,0,7.59,8.35,8.53,8.63,8.71,8.76,8.790000000000001,8.82,8.85,192.95000000000002,192.85,192.81,192.77,192.73000000000002,192.70000000000002,192.67000000000002,192.65,192.6,29.86,29.59,29.44,29.25,29.060000000000002,28.88,28.69,28.5,28.13,N/A,N/A -2012,8,31,17,30,101590,100450,99340,77.62,0,7.6000000000000005,8.4,8.59,8.700000000000001,8.78,8.84,8.89,8.93,8.99,187.49,187.70000000000002,187.8,187.87,187.93,187.99,188.03,188.08,188.15,29.77,29.490000000000002,29.32,29.13,28.94,28.75,28.560000000000002,28.37,28,N/A,N/A -2012,8,31,18,30,101590,100450,99340,79.58,0,7.53,8.27,8.42,8.51,8.56,8.6,8.620000000000001,8.64,8.66,181.73,181.98,182.09,182.18,182.27,182.36,182.45000000000002,182.54,182.72,29.82,29.53,29.37,29.18,28.990000000000002,28.810000000000002,28.62,28.43,28.060000000000002,N/A,N/A -2012,8,31,19,30,101580,100440,99330,82.62,0,7.83,8.64,8.81,8.92,9,9.040000000000001,9.08,9.1,9.11,182.22,182.46,182.53,182.58,182.62,182.65,182.68,182.69,182.71,29.73,29.42,29.26,29.060000000000002,28.88,28.69,28.5,28.310000000000002,27.93,N/A,N/A -2012,8,31,20,30,101560,100420,99320,82.22,0,8.49,9.370000000000001,9.57,9.68,9.76,9.82,9.86,9.89,9.92,178.85,178.79,178.73,178.65,178.57,178.48,178.4,178.31,178.14000000000001,29.560000000000002,29.25,29.09,28.89,28.7,28.51,28.32,28.13,27.75,N/A,N/A -2012,8,31,21,30,101540,100400,99300,79.27,0,8.44,9.290000000000001,9.48,9.59,9.67,9.72,9.75,9.78,9.82,174.23,174.22,174.22,174.22,174.20000000000002,174.20000000000002,174.19,174.18,174.16,29.59,29.3,29.13,28.94,28.75,28.560000000000002,28.37,28.18,27.8,N/A,N/A -2012,8,31,22,30,101530,100390,99290,77.96000000000001,0,8.63,9.5,9.69,9.790000000000001,9.86,9.9,9.92,9.93,9.94,172.61,172.76,172.82,172.87,172.91,172.95000000000002,172.99,173.01,173.07,29.560000000000002,29.27,29.11,28.92,28.73,28.55,28.36,28.17,27.79,N/A,N/A -2012,8,31,23,30,101510,100360,99260,79.34,0,9.03,9.96,10.17,10.290000000000001,10.38,10.44,10.48,10.52,10.57,170.6,170.59,170.55,170.5,170.45000000000002,170.4,170.35,170.3,170.19,29.51,29.21,29.05,28.86,28.67,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A -2012,9,1,0,30,101510,100370,99260,84.9,0,9.790000000000001,10.89,11.16,11.32,11.44,11.52,11.57,11.620000000000001,11.66,166.70000000000002,166.66,166.68,166.70000000000002,166.73,166.75,166.77,166.79,166.84,29.240000000000002,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,9,1,1,30,101540,100400,99290,82.66,0,9.58,10.61,10.86,11.02,11.13,11.200000000000001,11.26,11.31,11.370000000000001,173.53,173.77,173.83,173.89000000000001,173.92000000000002,173.96,173.97,173.99,174,29.240000000000002,28.91,28.75,28.55,28.36,28.17,27.97,27.79,27.400000000000002,N/A,N/A -2012,9,1,2,30,101570,100430,99320,83.74,0,9.89,11,11.26,11.43,11.55,11.64,11.69,11.75,11.8,171.17000000000002,171,170.98,170.96,170.97,171,171.03,171.07,171.15,29.23,28.91,28.740000000000002,28.54,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,9,1,3,30,101610,100470,99360,81.95,0,9.36,10.34,10.59,10.74,10.83,10.91,10.97,11.01,11.08,172.3,172.46,172.51,172.53,172.54,172.55,172.54,172.53,172.49,29.34,29.04,28.87,28.68,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A -2012,9,1,4,30,101630,100480,99380,76.09,0,9.86,10.88,11.11,11.23,11.32,11.370000000000001,11.4,11.43,11.46,174.45000000000002,174.6,174.66,174.70000000000002,174.72,174.73,174.74,174.74,174.72,29.5,29.2,29.04,28.85,28.66,28.47,28.28,28.1,27.72,N/A,N/A -2012,9,1,5,30,101640,100490,99390,77.77,0,9.52,10.51,10.74,10.88,10.98,11.040000000000001,11.09,11.120000000000001,11.17,172.64000000000001,172.76,172.85,172.96,173.06,173.17000000000002,173.28,173.38,173.6,29.42,29.11,28.95,28.75,28.560000000000002,28.37,28.18,28,27.62,N/A,N/A -2012,9,1,6,30,101680,100540,99430,75.48,0,9.38,10.41,10.66,10.81,10.92,10.99,11.05,11.1,11.16,178.42000000000002,178.38,178.32,178.25,178.19,178.13,178.07,178.02,177.91,29.490000000000002,29.22,29.07,28.87,28.69,28.5,28.310000000000002,28.13,27.75,N/A,N/A -2012,9,1,7,30,101710,100560,99450,77.27,0,9.23,10.25,10.5,10.65,10.76,10.84,10.9,10.950000000000001,11.03,179.91,180.13,180.19,180.23,180.26,180.29,180.32,180.34,180.38,29.43,29.150000000000002,28.98,28.79,28.61,28.42,28.23,28.05,27.67,N/A,N/A -2012,9,1,8,30,101720,100580,99470,74.81,0,8.58,9.53,9.75,9.9,10.01,10.09,10.15,10.200000000000001,10.28,181.38,181.35,181.35,181.37,181.39000000000001,181.41,181.44,181.47,181.51,29.54,29.27,29.11,28.92,28.73,28.54,28.35,28.17,27.79,N/A,N/A -2012,9,1,9,30,101750,100600,99490,75.10000000000001,0,8.790000000000001,9.72,9.950000000000001,10.09,10.19,10.26,10.32,10.370000000000001,10.44,182.57,182.72,182.8,182.87,182.93,182.99,183.04,183.1,183.20000000000002,29.48,29.21,29.04,28.86,28.68,28.490000000000002,28.3,28.11,27.740000000000002,N/A,N/A -2012,9,1,10,30,101760,100610,99500,73.8,0,8.64,9.55,9.76,9.89,9.98,10.05,10.1,10.14,10.18,188.41,188.24,188.19,188.15,188.12,188.09,188.06,188.03,187.99,29.52,29.25,29.1,28.91,28.73,28.54,28.35,28.17,27.8,N/A,N/A -2012,9,1,11,30,101790,100640,99530,74.39,0,7.75,8.620000000000001,8.85,9.02,9.14,9.24,9.32,9.39,9.51,190.38,190.3,190.28,190.27,190.25,190.25,190.25,190.24,190.26,29.490000000000002,29.22,29.060000000000002,28.87,28.69,28.5,28.310000000000002,28.12,27.75,N/A,N/A -2012,9,1,12,30,101810,100660,99550,76.94,0,8.18,9,9.17,9.26,9.32,9.36,9.38,9.4,9.41,189.62,189.45000000000002,189.4,189.35,189.31,189.28,189.24,189.21,189.14000000000001,29.330000000000002,29.04,28.88,28.69,28.5,28.310000000000002,28.12,27.93,27.560000000000002,N/A,N/A -2012,9,1,13,30,101860,100710,99600,75.98,0,7.22,7.930000000000001,8.1,8.2,8.27,8.32,8.36,8.39,8.43,188.85,188.98,189.08,189.19,189.3,189.41,189.55,189.67000000000002,189.97,29.34,29.05,28.900000000000002,28.7,28.52,28.34,28.150000000000002,27.97,27.59,N/A,N/A -2012,9,1,14,30,101890,100750,99640,77.93,0,7.22,7.94,8.120000000000001,8.22,8.290000000000001,8.35,8.39,8.42,8.46,186.89000000000001,187.66,187.93,188.16,188.35,188.5,188.65,188.78,189,29.26,28.96,28.8,28.61,28.42,28.23,28.04,27.85,27.48,N/A,N/A -2012,9,1,15,30,101920,100770,99660,76.49,0,6.38,6.96,7.09,7.17,7.23,7.2700000000000005,7.3,7.34,7.390000000000001,188.55,188.6,188.62,188.65,188.67000000000002,188.70000000000002,188.73,188.76,188.85,29.27,28.97,28.82,28.63,28.44,28.26,28.07,27.88,27.52,N/A,N/A -2012,9,1,16,30,101920,100770,99660,78.14,0,6.42,6.97,7.09,7.140000000000001,7.19,7.21,7.22,7.23,7.24,189.92000000000002,189.71,189.64000000000001,189.59,189.55,189.52,189.49,189.47,189.44,29.16,28.84,28.67,28.48,28.29,28.1,27.91,27.72,27.34,N/A,N/A -2012,9,1,17,30,101920,100770,99660,76.34,0,6.05,6.58,6.69,6.76,6.82,6.8500000000000005,6.87,6.9,6.93,191.06,191.37,191.51,191.63,191.75,191.86,191.96,192.07,192.26,29.21,28.900000000000002,28.73,28.54,28.35,28.16,27.96,27.78,27.400000000000002,N/A,N/A -2012,9,1,18,30,101910,100760,99650,76.72,0,6.29,6.83,6.93,6.99,7.03,7.05,7.0600000000000005,7.07,7.08,191.04,191.08,191.12,191.16,191.19,191.20000000000002,191.21,191.24,191.26,29.18,28.86,28.69,28.490000000000002,28.3,28.11,27.92,27.73,27.35,N/A,N/A -2012,9,1,19,30,101900,100750,99640,73.12,0,5.51,5.96,6.0600000000000005,6.1000000000000005,6.140000000000001,6.17,6.18,6.21,6.24,192.95000000000002,193.21,193.37,193.55,193.71,193.88,194.05,194.22,194.58,29.32,29.02,28.85,28.66,28.48,28.29,28.1,27.91,27.54,N/A,N/A -2012,9,1,20,30,101870,100720,99610,75.86,0,5.86,6.3100000000000005,6.4,6.44,6.46,6.47,6.48,6.47,6.46,189.47,189.63,189.76,189.89000000000001,190.02,190.14000000000001,190.26,190.39000000000001,190.62,29.21,28.89,28.73,28.53,28.35,28.16,27.97,27.78,27.400000000000002,N/A,N/A -2012,9,1,21,30,101840,100700,99590,74.26,0,5.79,6.29,6.4,6.46,6.5,6.54,6.57,6.59,6.62,187.79,187.84,187.9,187.96,188.01,188.06,188.12,188.17000000000002,188.28,29.26,28.96,28.8,28.61,28.42,28.23,28.04,27.85,27.48,N/A,N/A -2012,9,1,22,30,101800,100650,99540,73.29,0,6.11,6.61,6.69,6.72,6.74,6.74,6.73,6.72,6.69,183.24,183.67000000000002,183.88,184.09,184.28,184.46,184.64000000000001,184.82,185.19,29.22,28.92,28.77,28.57,28.39,28.2,28,27.82,27.44,N/A,N/A -2012,9,1,23,30,101780,100630,99520,75.83,0,5.62,6.08,6.17,6.21,6.24,6.26,6.28,6.28,6.28,182.35,182.49,182.64000000000001,182.78,182.9,183.01,183.12,183.23,183.47,29.07,28.77,28.6,28.400000000000002,28.22,28.03,27.84,27.650000000000002,27.28,N/A,N/A -2012,9,2,0,30,101750,100600,99490,75.9,0,6.0200000000000005,6.49,6.57,6.6000000000000005,6.61,6.62,6.61,6.6000000000000005,6.57,175.89000000000001,176.47,176.68,176.9,177.11,177.31,177.54,177.76,178.25,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.71,27.53,27.14,N/A,N/A -2012,9,2,1,30,101730,100580,99470,78,0,6.3500000000000005,6.890000000000001,7,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.140000000000001,7.15,178.51,178.42000000000002,178.42000000000002,178.42000000000002,178.41,178.4,178.39000000000001,178.37,178.32,28.830000000000002,28.5,28.330000000000002,28.14,27.95,27.76,27.560000000000002,27.38,27,N/A,N/A -2012,9,2,2,30,101730,100590,99470,77.88,0,6.3100000000000005,6.8,6.890000000000001,6.92,6.94,6.95,6.94,6.93,6.9,170.62,170.86,170.98,171.07,171.16,171.24,171.32,171.39000000000001,171.55,28.77,28.44,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,9,2,3,30,101720,100580,99460,78.41,0,5.95,6.46,6.5600000000000005,6.63,6.67,6.7,6.72,6.73,6.76,169.70000000000002,169.55,169.55,169.55,169.56,169.57,169.59,169.61,169.65,28.75,28.42,28.25,28.05,27.86,27.68,27.48,27.3,26.92,N/A,N/A -2012,9,2,4,30,101690,100540,99430,79.04,0,6.18,6.65,6.76,6.8100000000000005,6.8500000000000005,6.88,6.9,6.91,6.93,169.82,169.86,169.84,169.8,169.77,169.72,169.67000000000002,169.62,169.51,28.66,28.32,28.150000000000002,27.96,27.77,27.580000000000002,27.39,27.2,26.82,N/A,N/A -2012,9,2,5,30,101710,100560,99450,75.75,0,7.13,7.74,7.88,7.95,8,8.03,8.06,8.08,8.120000000000001,171.16,171.39000000000001,171.47,171.55,171.61,171.67000000000002,171.73,171.79,171.91,28.88,28.57,28.400000000000002,28.2,28.02,27.830000000000002,27.64,27.45,27.080000000000002,N/A,N/A -2012,9,2,6,30,101710,100560,99450,82.2,0,6.69,7.25,7.36,7.41,7.44,7.45,7.45,7.44,7.4,177.23,177.29,177.32,177.36,177.39000000000001,177.41,177.45000000000002,177.48,177.53,28.580000000000002,28.23,28.060000000000002,27.86,27.67,27.47,27.28,27.09,26.7,N/A,N/A -2012,9,2,7,30,101720,100580,99470,80.72,0,7.21,7.82,7.96,8.03,8.08,8.11,8.13,8.14,8.15,180.47,180.9,181.13,181.36,181.55,181.73,181.9,182.05,182.36,28.740000000000002,28.41,28.240000000000002,28.04,27.86,27.67,27.48,27.29,26.91,N/A,N/A -2012,9,2,8,30,101730,100580,99470,81.76,0,6.12,6.67,6.8,6.88,6.93,6.98,7.01,7.04,7.08,188.27,188.22,188.23,188.27,188.32,188.37,188.43,188.49,188.64000000000001,28.78,28.46,28.29,28.09,27.900000000000002,27.71,27.52,27.330000000000002,26.95,N/A,N/A -2012,9,2,9,30,101730,100590,99470,78.62,0,6.76,7.36,7.5,7.5600000000000005,7.6000000000000005,7.63,7.640000000000001,7.65,7.65,198.25,198.33,198.31,198.3,198.28,198.27,198.24,198.21,198.12,28.94,28.62,28.46,28.26,28.07,27.88,27.69,27.5,27.13,N/A,N/A -2012,9,2,10,30,101750,100600,99490,79.69,0,6.49,7.09,7.23,7.32,7.38,7.43,7.46,7.49,7.54,202.62,202.35,202.20000000000002,202.03,201.87,201.70000000000002,201.53,201.36,201.01,28.84,28.52,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A -2012,9,2,11,30,101750,100600,99490,83.17,0,5.94,6.390000000000001,6.49,6.53,6.5600000000000005,6.59,6.6000000000000005,6.61,6.62,200.87,201.20000000000002,201.36,201.51,201.64000000000001,201.77,201.9,202.01,202.23000000000002,28.63,28.29,28.12,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A -2012,9,2,12,30,101770,100630,99520,80.19,0,5.71,6.2,6.32,6.38,6.42,6.46,6.48,6.5,6.53,199.9,200.32,200.49,200.64000000000001,200.78,200.9,201.02,201.14000000000001,201.37,28.86,28.53,28.37,28.17,27.98,27.79,27.6,27.41,27.03,N/A,N/A -2012,9,2,13,30,101790,100640,99530,81.05,0,5.15,5.51,5.58,5.61,5.63,5.64,5.65,5.65,5.65,205.76,205.62,205.57,205.53,205.5,205.47,205.45000000000002,205.42000000000002,205.35,28.740000000000002,28.41,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.91,N/A,N/A -2012,9,2,14,30,101810,100660,99550,81.69,0,4.39,4.68,4.75,4.78,4.8,4.8100000000000005,4.82,4.82,4.83,219.17000000000002,219.32,219.4,219.48000000000002,219.54,219.61,219.67000000000002,219.74,219.84,28.71,28.38,28.21,28.01,27.82,27.63,27.44,27.25,26.87,N/A,N/A -2012,9,2,15,30,101820,100670,99560,81.9,0,3.5100000000000002,3.71,3.7600000000000002,3.7800000000000002,3.79,3.8000000000000003,3.81,3.81,3.81,224.99,224.48000000000002,224.18,223.86,223.58,223.3,223.02,222.77,222.22,28.75,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.89,N/A,N/A -2012,9,2,16,30,101810,100670,99560,81.66,0,3.19,3.39,3.44,3.47,3.5,3.52,3.54,3.56,3.59,217.9,217.45000000000002,217.17000000000002,216.91,216.68,216.47,216.26,216.06,215.69,28.77,28.42,28.25,28.05,27.86,27.67,27.47,27.28,26.900000000000002,N/A,N/A -2012,9,2,17,30,101800,100650,99540,79.10000000000001,0,2.66,2.81,2.84,2.86,2.88,2.89,2.91,2.91,2.94,215.21,215.1,215.06,215.01,214.96,214.9,214.84,214.78,214.65,28.84,28.490000000000002,28.32,28.11,27.93,27.73,27.54,27.36,26.97,N/A,N/A -2012,9,2,18,30,101770,100620,99510,81.98,0,3.15,3.33,3.36,3.38,3.4,3.41,3.42,3.43,3.45,192.85,192.94,193.05,193.16,193.26,193.35,193.45000000000002,193.54,193.73000000000002,28.84,28.48,28.310000000000002,28.11,27.92,27.72,27.53,27.35,26.96,N/A,N/A -2012,9,2,19,30,101750,100610,99500,83.45,0,3.4,3.6,3.64,3.67,3.69,3.71,3.73,3.75,3.79,184.14000000000001,183.42000000000002,182.99,182.56,182.18,181.8,181.43,181.08,180.43,28.93,28.57,28.39,28.19,28.01,27.82,27.62,27.44,27.060000000000002,N/A,N/A -2012,9,2,20,30,101710,100560,99450,84.97,0,5.0200000000000005,5.4,5.48,5.53,5.5600000000000005,5.59,5.61,5.63,5.66,181.13,181.37,181.46,181.55,181.63,181.70000000000002,181.77,181.84,181.99,28.98,28.62,28.45,28.25,28.060000000000002,27.86,27.67,27.490000000000002,27.1,N/A,N/A -2012,9,2,21,30,101650,100500,99390,85.51,0,6.2,6.65,6.73,6.75,6.76,6.75,6.74,6.72,6.68,174.44,174.84,175.07,175.31,175.52,175.74,175.97,176.19,176.71,28.830000000000002,28.48,28.310000000000002,28.11,27.92,27.73,27.54,27.36,26.98,N/A,N/A -2012,9,2,22,30,101600,100460,99350,85.89,0,6.57,7.11,7.21,7.26,7.29,7.3,7.3,7.3,7.28,176.46,176.67000000000002,176.76,176.89000000000001,177.01,177.15,177.32,177.48,177.89000000000001,28.740000000000002,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,9,2,23,30,101580,100430,99320,84.65,0,5.9,6.3500000000000005,6.45,6.49,6.51,6.5200000000000005,6.5200000000000005,6.51,6.49,180.44,180.63,180.73,180.84,180.93,181.03,181.13,181.22,181.42000000000002,28.71,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,9,3,0,30,101550,100400,99290,85.06,0,6.8500000000000005,7.41,7.53,7.59,7.63,7.65,7.66,7.66,7.65,182.03,182.16,182.24,182.32,182.4,182.47,182.55,182.62,182.76,28.66,28.32,28.150000000000002,27.94,27.75,27.560000000000002,27.37,27.18,26.8,N/A,N/A -2012,9,3,1,30,101530,100380,99270,86.54,0,6.4,6.94,7.0600000000000005,7.140000000000001,7.19,7.22,7.25,7.2700000000000005,7.29,190.14000000000001,190,190,190.02,190.04,190.07,190.1,190.13,190.21,28.59,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.71,N/A,N/A -2012,9,3,2,30,101530,100390,99280,85.18,0,6.38,6.890000000000001,7.01,7.07,7.12,7.15,7.17,7.19,7.21,185.70000000000002,186.09,186.27,186.45000000000002,186.61,186.76,186.91,187.04,187.32,28.57,28.22,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A -2012,9,3,3,30,101530,100390,99280,84.35000000000001,0,6.93,7.48,7.58,7.61,7.63,7.62,7.61,7.59,7.53,193.37,192.83,192.61,192.41,192.24,192.1,191.95000000000002,191.82,191.55,28.740000000000002,28.400000000000002,28.23,28.04,27.85,27.66,27.47,27.29,26.92,N/A,N/A -2012,9,3,4,30,101510,100370,99260,83.78,0,6.66,7.2,7.32,7.38,7.42,7.44,7.46,7.47,7.48,192.55,192.67000000000002,192.73000000000002,192.77,192.8,192.84,192.86,192.88,192.92000000000002,28.55,28.19,28.02,27.82,27.63,27.44,27.25,27.060000000000002,26.68,N/A,N/A -2012,9,3,5,30,101530,100380,99280,82,0,6.37,6.88,6.99,7.04,7.07,7.1000000000000005,7.11,7.12,7.13,188.28,188.24,188.27,188.32,188.38,188.45000000000002,188.54,188.62,188.82,28.72,28.38,28.21,28.01,27.830000000000002,27.64,27.45,27.26,26.89,N/A,N/A -2012,9,3,6,30,101540,100390,99280,86.42,0,6.41,6.95,7.08,7.15,7.2,7.24,7.2700000000000005,7.29,7.32,190.78,191.03,191.11,191.18,191.23000000000002,191.27,191.32,191.36,191.44,28.52,28.150000000000002,27.98,27.78,27.59,27.39,27.2,27.01,26.63,N/A,N/A -2012,9,3,7,30,101550,100400,99290,84.33,0,6.2,6.7,6.8100000000000005,6.87,6.91,6.94,6.97,6.99,7.03,194.64000000000001,194.85,194.95000000000002,195.06,195.17000000000002,195.27,195.38,195.49,195.73000000000002,28.62,28.26,28.09,27.89,27.7,27.51,27.32,27.13,26.76,N/A,N/A -2012,9,3,8,30,101550,100410,99300,84.64,0,7.17,7.79,7.930000000000001,8.01,8.06,8.1,8.13,8.15,8.17,200.72,201.03,201.12,201.22,201.3,201.38,201.45000000000002,201.52,201.66,28.740000000000002,28.38,28.21,28.01,27.82,27.63,27.43,27.25,26.87,N/A,N/A -2012,9,3,9,30,101560,100410,99310,84.56,0,6.24,6.75,6.8500000000000005,6.92,6.96,6.99,7.0200000000000005,7.04,7.07,216.9,215.61,214.99,214.39000000000001,213.84,213.34,212.83,212.36,211.42000000000002,28.77,28.41,28.240000000000002,28.04,27.85,27.67,27.47,27.29,26.92,N/A,N/A -2012,9,3,10,30,101560,100410,99310,84,0,5.93,6.36,6.45,6.49,6.5200000000000005,6.54,6.55,6.5600000000000005,6.5600000000000005,215.82,215.93,216,216.04,216.06,216.07,216.07,216.07,216.05,28.76,28.41,28.240000000000002,28.04,27.85,27.66,27.46,27.28,26.900000000000002,N/A,N/A -2012,9,3,11,30,101600,100450,99340,83.73,0,5.88,6.33,6.43,6.49,6.5200000000000005,6.54,6.5600000000000005,6.57,6.59,227.34,227.06,226.82,226.56,226.32,226.07,225.83,225.59,225.09,28.73,28.37,28.2,28,27.810000000000002,27.62,27.43,27.240000000000002,26.86,N/A,N/A -2012,9,3,12,30,101630,100480,99370,82.23,0,5.91,6.36,6.45,6.5,6.53,6.55,6.5600000000000005,6.57,6.58,222.14000000000001,222.24,222.19,222.14000000000001,222.08,222.01,221.94,221.86,221.69,28.650000000000002,28.29,28.12,27.92,27.73,27.54,27.35,27.17,26.79,N/A,N/A -2012,9,3,13,30,101650,100500,99390,81.4,0,5.09,5.44,5.51,5.55,5.58,5.59,5.6000000000000005,5.61,5.62,221.69,221.65,221.62,221.58,221.56,221.54,221.51,221.49,221.43,28.69,28.34,28.17,27.97,27.78,27.59,27.39,27.21,26.830000000000002,N/A,N/A -2012,9,3,14,30,101670,100530,99420,82.3,0,4.64,4.97,5.04,5.09,5.12,5.15,5.17,5.19,5.22,217.27,218.19,218.66,219.12,219.54,219.94,220.34,220.71,221.45000000000002,28.78,28.44,28.26,28.060000000000002,27.88,27.68,27.490000000000002,27.310000000000002,26.93,N/A,N/A -2012,9,3,15,30,101690,100550,99440,81.25,0,4.37,4.71,4.79,4.83,4.88,4.91,4.94,4.97,5.0200000000000005,253.59,252.51000000000002,251.94,251.35,250.82,250.3,249.77,249.27,248.22,28.89,28.55,28.38,28.18,27.990000000000002,27.8,27.61,27.43,27.05,N/A,N/A -2012,9,3,16,30,101680,100530,99420,80.64,0,4.74,5.04,5.08,5.09,5.1000000000000005,5.1000000000000005,5.09,5.08,5.0600000000000005,228.51,228.31,228.24,228.16,228.08,228.01,227.92000000000002,227.84,227.67000000000002,28.88,28.53,28.36,28.16,27.97,27.78,27.580000000000002,27.400000000000002,27.02,N/A,N/A -2012,9,3,17,30,101650,100510,99400,81.43,0,4.28,4.55,4.61,4.64,4.67,4.68,4.69,4.71,4.72,235.03,235.04,235.1,235.15,235.21,235.26,235.32,235.38,235.5,28.84,28.48,28.310000000000002,28.11,27.92,27.72,27.53,27.35,26.97,N/A,N/A -2012,9,3,18,30,101650,100500,99400,80.96000000000001,0,4.5600000000000005,4.87,4.93,4.96,4.98,5,5.01,5.01,5.0200000000000005,216.77,216.94,217.03,217.1,217.16,217.21,217.27,217.32,217.39000000000001,28.98,28.63,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,9,3,19,30,101610,100470,99360,83.29,0,5.6000000000000005,6.0200000000000005,6.11,6.16,6.2,6.23,6.25,6.26,6.29,200.09,200.67000000000002,200.97,201.27,201.53,201.79,202.05,202.3,202.8,29,28.64,28.46,28.26,28.07,27.88,27.68,27.5,27.12,N/A,N/A -2012,9,3,20,30,101570,100430,99320,83.42,0,5.83,6.25,6.33,6.36,6.37,6.38,6.38,6.37,6.34,202.84,202.74,202.70000000000002,202.65,202.59,202.53,202.46,202.39000000000001,202.23000000000002,28.95,28.6,28.43,28.22,28.03,27.84,27.650000000000002,27.46,27.080000000000002,N/A,N/A -2012,9,3,21,30,101520,100380,99270,79.05,0,6.8500000000000005,7.37,7.46,7.5,7.51,7.51,7.5,7.49,7.46,194.45000000000002,194.37,194.35,194.3,194.24,194.17000000000002,194.07,193.98000000000002,193.70000000000002,29.04,28.7,28.53,28.330000000000002,28.150000000000002,27.96,27.77,27.59,27.22,N/A,N/A -2012,9,3,22,30,101470,100330,99220,78.4,0,6.36,6.8500000000000005,6.94,6.97,6.99,7,6.99,6.99,6.96,198.23000000000002,198.16,198.1,198.03,197.96,197.89000000000001,197.81,197.74,197.56,29.04,28.71,28.54,28.34,28.16,27.97,27.78,27.6,27.23,N/A,N/A -2012,9,3,23,30,101450,100310,99200,76,0,6.38,6.890000000000001,6.98,7.03,7.05,7.0600000000000005,7.0600000000000005,7.0600000000000005,7.04,196.16,196.11,196.1,196.08,196.06,196.04,196.01,195.99,195.92000000000002,29.1,28.78,28.62,28.42,28.23,28.04,27.85,27.67,27.3,N/A,N/A -2012,9,4,0,30,101410,100270,99160,81.38,0,6.98,7.5600000000000005,7.68,7.73,7.7700000000000005,7.79,7.8100000000000005,7.8100000000000005,7.82,194.44,194.45000000000002,194.46,194.47,194.47,194.47,194.46,194.45000000000002,194.43,28.85,28.5,28.330000000000002,28.13,27.94,27.75,27.55,27.37,26.990000000000002,N/A,N/A -2012,9,4,1,30,101410,100270,99160,80.83,0,6.51,7.03,7.13,7.17,7.2,7.21,7.22,7.22,7.21,202.38,202.15,202.04,201.93,201.84,201.74,201.64000000000001,201.54,201.34,28.8,28.45,28.28,28.080000000000002,27.89,27.7,27.5,27.32,26.94,N/A,N/A -2012,9,4,2,30,101430,100290,99180,78.71000000000001,0,6.5600000000000005,7.09,7.19,7.25,7.28,7.3,7.3100000000000005,7.32,7.32,200.36,200.5,200.53,200.57,200.6,200.63,200.65,200.68,200.72,28.89,28.55,28.37,28.18,27.990000000000002,27.8,27.61,27.43,27.05,N/A,N/A -2012,9,4,3,30,101460,100310,99200,84.43,0,7.15,7.73,7.8500000000000005,7.91,7.94,7.96,7.97,7.97,7.96,202.25,202.26,202.23000000000002,202.21,202.18,202.15,202.13,202.12,202.07,28.59,28.22,28.05,27.85,27.650000000000002,27.46,27.27,27.080000000000002,26.7,N/A,N/A -2012,9,4,4,30,101440,100300,99190,85.42,0,7.2,7.86,8.01,8.09,8.15,8.2,8.23,8.25,8.27,202.25,202.47,202.55,202.63,202.69,202.74,202.8,202.84,202.92000000000002,28.560000000000002,28.19,28.01,27.8,27.61,27.42,27.22,27.03,26.650000000000002,N/A,N/A -2012,9,4,5,30,101460,100320,99210,83.74,0,8.11,8.8,8.950000000000001,9.03,9.08,9.120000000000001,9.13,9.15,9.16,200.42000000000002,200.41,200.45000000000002,200.52,200.58,200.65,200.74,200.82,201,28.57,28.19,28.01,27.810000000000002,27.62,27.43,27.240000000000002,27.05,26.67,N/A,N/A -2012,9,4,6,30,101460,100320,99210,84.26,0,8.540000000000001,9.32,9.5,9.59,9.66,9.700000000000001,9.73,9.75,9.76,208.28,208.3,208.3,208.3,208.3,208.31,208.31,208.31,208.32,28.490000000000002,28.1,27.92,27.72,27.52,27.330000000000002,27.13,26.94,26.560000000000002,N/A,N/A -2012,9,4,7,30,101490,100340,99240,80.2,0,8.69,9.49,9.67,9.77,9.84,9.89,9.92,9.950000000000001,9.98,217.46,217.66,217.70000000000002,217.72,217.73000000000002,217.74,217.75,217.75,217.75,28.560000000000002,28.19,28.01,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,9,4,8,30,101470,100320,99210,82.37,0,7.930000000000001,8.66,8.83,8.94,9.01,9.07,9.11,9.15,9.200000000000001,222.17000000000002,222.25,222.29,222.32,222.33,222.35,222.36,222.38,222.4,28.5,28.12,27.94,27.740000000000002,27.54,27.35,27.16,26.97,26.59,N/A,N/A -2012,9,4,9,30,101460,100320,99210,81.63,0,7.5200000000000005,8.22,8.38,8.48,8.55,8.6,8.64,8.67,8.72,223.83,223.3,223.08,222.87,222.68,222.51,222.34,222.18,221.87,28.740000000000002,28.38,28.2,28,27.810000000000002,27.62,27.42,27.240000000000002,26.86,N/A,N/A -2012,9,4,10,30,101480,100330,99220,82.51,0,7.37,7.97,8.120000000000001,8.2,8.25,8.28,8.31,8.33,8.35,220.61,220.59,220.6,220.6,220.61,220.62,220.63,220.65,220.68,28.59,28.23,28.05,27.85,27.66,27.46,27.27,27.09,26.71,N/A,N/A -2012,9,4,11,30,101500,100360,99240,82.14,0,8.08,8.77,8.93,9,9.040000000000001,9.06,9.07,9.07,9.05,219.04,219.03,219.06,219.1,219.13,219.18,219.22,219.27,219.37,28.67,28.310000000000002,28.13,27.92,27.73,27.54,27.35,27.16,26.78,N/A,N/A -2012,9,4,12,30,101490,100340,99230,77.78,0,6.99,7.61,7.75,7.83,7.88,7.91,7.94,7.95,7.97,222.8,223.1,223.25,223.4,223.54,223.67000000000002,223.81,223.94,224.22,28.810000000000002,28.46,28.29,28.080000000000002,27.900000000000002,27.7,27.51,27.32,26.94,N/A,N/A -2012,9,4,13,30,101510,100370,99260,75.71000000000001,0,6.66,7.23,7.3500000000000005,7.42,7.46,7.49,7.51,7.53,7.54,226.33,226.36,226.35,226.35,226.35,226.36,226.38,226.4,226.44,28.91,28.560000000000002,28.39,28.19,28,27.810000000000002,27.61,27.43,27.05,N/A,N/A -2012,9,4,14,30,101540,100390,99290,77.58,0,5.62,6.140000000000001,6.2700000000000005,6.37,6.45,6.51,6.5600000000000005,6.6000000000000005,6.68,226.67000000000002,227.07,227.28,227.46,227.61,227.74,227.86,227.96,228.16,28.91,28.57,28.400000000000002,28.2,28.01,27.82,27.62,27.43,27.05,N/A,N/A -2012,9,4,15,30,101560,100420,99310,75.42,0,5.7,6.16,6.2700000000000005,6.33,6.38,6.41,6.44,6.46,6.5,230.3,230.15,230.15,230.17000000000002,230.19,230.22,230.25,230.29,230.36,28.96,28.62,28.45,28.25,28.060000000000002,27.87,27.68,27.490000000000002,27.11,N/A,N/A -2012,9,4,16,30,101540,100390,99290,78.42,0,5.63,6.01,6.09,6.13,6.16,6.17,6.19,6.2,6.22,227.36,227.53,227.64000000000001,227.76,227.87,227.98000000000002,228.09,228.20000000000002,228.45000000000002,28.810000000000002,28.46,28.29,28.09,27.900000000000002,27.72,27.53,27.34,26.97,N/A,N/A -2012,9,4,17,30,101530,100380,99280,80.14,0,5.79,6.19,6.25,6.2700000000000005,6.28,6.28,6.2700000000000005,6.26,6.23,217.19,217.38,217.48000000000002,217.57,217.65,217.71,217.77,217.82,217.92000000000002,28.8,28.44,28.26,28.060000000000002,27.87,27.68,27.48,27.29,26.91,N/A,N/A -2012,9,4,18,30,101520,100370,99270,79.59,0,5.17,5.5200000000000005,5.6000000000000005,5.64,5.66,5.68,5.69,5.7,5.71,208.86,208.9,208.97,209.01,209.05,209.09,209.13,209.17000000000002,209.25,28.78,28.42,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A -2012,9,4,19,30,101490,100340,99240,80.12,0,5.97,6.4,6.49,6.5200000000000005,6.54,6.5600000000000005,6.5600000000000005,6.5600000000000005,6.54,201.29,201.42000000000002,201.47,201.51,201.54,201.58,201.6,201.62,201.68,28.78,28.41,28.240000000000002,28.04,27.85,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,9,4,20,30,101420,100280,99170,79.52,0,6.45,6.96,7.0600000000000005,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.140000000000001,7.11,200.68,200.84,200.9,200.96,201.01,201.04,201.09,201.13,201.23000000000002,28.810000000000002,28.45,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,9,4,21,30,101380,100230,99130,76.34,0,7.18,7.76,7.87,7.92,7.94,7.95,7.95,7.95,7.92,201.09,201.08,201.09,201.12,201.14000000000001,201.18,201.20000000000002,201.23000000000002,201.29,28.88,28.54,28.36,28.17,27.98,27.79,27.6,27.42,27.05,N/A,N/A -2012,9,4,22,30,101350,100210,99100,78.87,0,6.3500000000000005,6.88,6.99,7.05,7.1000000000000005,7.13,7.16,7.18,7.21,202.49,202.62,202.71,202.8,202.89000000000001,202.98000000000002,203.08,203.17000000000002,203.4,28.84,28.48,28.310000000000002,28.11,27.93,27.740000000000002,27.55,27.37,27,N/A,N/A -2012,9,4,23,30,101290,100140,99040,81.57000000000001,0,6.84,7.390000000000001,7.51,7.57,7.6000000000000005,7.62,7.640000000000001,7.640000000000001,7.640000000000001,192.45000000000002,192.70000000000002,192.84,192.99,193.11,193.23000000000002,193.36,193.48000000000002,193.74,28.61,28.240000000000002,28.060000000000002,27.86,27.67,27.48,27.28,27.1,26.72,N/A,N/A -2012,9,5,0,30,101290,100150,99040,80.77,0,7.03,7.59,7.7,7.75,7.79,7.8,7.8100000000000005,7.8100000000000005,7.8,197.02,197.18,197.26,197.33,197.38,197.43,197.47,197.52,197.6,28.68,28.32,28.14,27.94,27.75,27.560000000000002,27.37,27.18,26.810000000000002,N/A,N/A -2012,9,5,1,30,101260,100120,99010,79.17,0,6.92,7.47,7.58,7.640000000000001,7.67,7.69,7.7,7.7,7.69,198.54,198.62,198.66,198.70000000000002,198.74,198.78,198.81,198.85,198.93,28.7,28.34,28.16,27.96,27.77,27.580000000000002,27.39,27.21,26.830000000000002,N/A,N/A -2012,9,5,2,30,101260,100110,99010,80.7,0,6.7700000000000005,7.3100000000000005,7.41,7.47,7.5,7.5200000000000005,7.54,7.55,7.5600000000000005,196.32,196.28,196.35,196.44,196.53,196.62,196.73000000000002,196.82,197.06,28.54,28.17,28,27.8,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,9,5,3,30,101260,100120,99010,82.05,0,8,8.68,8.83,8.9,8.94,8.97,8.98,8.99,8.98,197.27,197.34,197.41,197.48000000000002,197.55,197.62,197.70000000000002,197.78,197.94,28.51,28.13,27.95,27.75,27.560000000000002,27.37,27.17,26.990000000000002,26.61,N/A,N/A -2012,9,5,4,30,101250,100110,99000,84.15,0,8.03,8.74,8.89,8.97,9.02,9.05,9.06,9.07,9.07,206.43,206.57,206.55,206.52,206.47,206.41,206.33,206.26,206.08,28.39,27.990000000000002,27.810000000000002,27.6,27.41,27.21,27.02,26.830000000000002,26.44,N/A,N/A -2012,9,5,5,30,101240,100090,98990,82.27,0,8.08,8.81,8.96,9.05,9.11,9.15,9.18,9.200000000000001,9.22,212.1,211.79,211.72,211.67000000000002,211.63,211.6,211.57,211.55,211.53,28.52,28.13,27.94,27.740000000000002,27.55,27.36,27.16,26.97,26.580000000000002,N/A,N/A -2012,9,5,6,30,101280,100140,99030,84.59,0,7.74,8.38,8.52,8.58,8.63,8.65,8.67,8.67,8.67,205.87,205.94,206.05,206.18,206.29,206.4,206.51,206.61,206.82,28.39,28.01,27.830000000000002,27.62,27.43,27.240000000000002,27.04,26.85,26.47,N/A,N/A -2012,9,5,7,30,101300,100160,99050,83.28,0,7.67,8.4,8.58,8.68,8.75,8.8,8.84,8.870000000000001,8.9,212.6,213.08,213.25,213.41,213.54,213.66,213.77,213.86,214.04,28.55,28.18,28,27.8,27.61,27.41,27.22,27.03,26.64,N/A,N/A -2012,9,5,8,30,101280,100140,99030,83.36,0,7.49,8.23,8.41,8.52,8.6,8.66,8.71,8.75,8.8,215.46,215.53,215.57,215.63,215.68,215.74,215.79,215.84,215.95000000000002,28.55,28.17,27.990000000000002,27.79,27.6,27.400000000000002,27.21,27.02,26.63,N/A,N/A -2012,9,5,9,30,101280,100140,99040,80.13,0,7.92,8.59,8.73,8.8,8.85,8.870000000000001,8.89,8.9,8.91,215.51,216.08,216.39000000000001,216.70000000000002,216.98000000000002,217.24,217.51,217.76,218.27,28.8,28.45,28.27,28.07,27.88,27.69,27.5,27.310000000000002,26.93,N/A,N/A -2012,9,5,10,30,101310,100170,99060,82.8,0,7.33,7.930000000000001,8.06,8.120000000000001,8.16,8.19,8.2,8.2,8.2,228.62,228.46,228.4,228.35,228.32,228.29,228.28,228.26,228.25,28.580000000000002,28.21,28.03,27.830000000000002,27.64,27.44,27.25,27.060000000000002,26.68,N/A,N/A -2012,9,5,11,30,101290,100150,99040,81.51,0,6.95,7.53,7.66,7.73,7.78,7.8100000000000005,7.83,7.8500000000000005,7.88,223.41,223.63,223.78,223.9,224.02,224.14000000000001,224.25,224.36,224.58,28.580000000000002,28.22,28.04,27.830000000000002,27.64,27.45,27.25,27.07,26.69,N/A,N/A -2012,9,5,12,30,101290,100150,99050,81.72,0,6.2700000000000005,6.8500000000000005,6.99,7.09,7.17,7.23,7.28,7.32,7.4,229.48000000000002,230.08,230.38,230.68,230.95000000000002,231.21,231.47,231.71,232.20000000000002,28.650000000000002,28.29,28.11,27.91,27.72,27.53,27.330000000000002,27.150000000000002,26.77,N/A,N/A -2012,9,5,13,30,101320,100180,99070,79.23,0,6.66,7.16,7.25,7.28,7.29,7.3,7.29,7.28,7.25,243.41,243.18,243.12,243.1,243.07,243.06,243.06,243.06,243.09,28.77,28.42,28.25,28.05,27.86,27.67,27.47,27.29,26.91,N/A,N/A -2012,9,5,14,30,101340,100200,99090,77.15,0,6.51,7.05,7.16,7.23,7.2700000000000005,7.3,7.32,7.34,7.36,241.96,242.49,242.76,243.01,243.24,243.45000000000002,243.66,243.84,244.20000000000002,28.87,28.53,28.35,28.150000000000002,27.97,27.78,27.580000000000002,27.39,27.01,N/A,N/A -2012,9,5,15,30,101350,100210,99100,79.33,0,6.55,7.01,7.09,7.11,7.12,7.12,7.11,7.1000000000000005,7.0600000000000005,243.39000000000001,243.18,243.06,242.93,242.81,242.70000000000002,242.57,242.46,242.21,28.63,28.27,28.1,27.900000000000002,27.71,27.52,27.330000000000002,27.14,26.76,N/A,N/A -2012,9,5,16,30,101360,100210,99110,75.76,0,5.61,6.08,6.18,6.24,6.29,6.32,6.34,6.36,6.390000000000001,243.32,242.96,242.75,242.54,242.35,242.17000000000002,242,241.83,241.49,28.89,28.54,28.37,28.17,27.97,27.79,27.59,27.400000000000002,27.02,N/A,N/A -2012,9,5,17,30,101350,100210,99100,74.93,0,5.33,5.69,5.7700000000000005,5.8100000000000005,5.83,5.8500000000000005,5.86,5.87,5.87,233.07,233.31,233.52,233.72,233.92000000000002,234.1,234.3,234.49,234.87,28.91,28.57,28.400000000000002,28.21,28.02,27.830000000000002,27.64,27.46,27.080000000000002,N/A,N/A -2012,9,5,18,30,101320,100180,99070,79.22,0,5.99,6.46,6.5600000000000005,6.6000000000000005,6.63,6.65,6.66,6.67,6.66,226.37,226.58,226.70000000000002,226.82,226.92000000000002,227.01,227.11,227.19,227.39000000000001,28.73,28.37,28.2,28,27.8,27.61,27.42,27.23,26.85,N/A,N/A -2012,9,5,19,30,101280,100140,99030,79.22,0,6.53,7.04,7.140000000000001,7.19,7.21,7.22,7.23,7.22,7.21,217.47,217.56,217.61,217.65,217.70000000000002,217.74,217.79,217.84,217.95000000000002,28.810000000000002,28.45,28.28,28.080000000000002,27.89,27.7,27.51,27.330000000000002,26.95,N/A,N/A -2012,9,5,20,30,101250,100110,99000,80.21000000000001,0,6.93,7.53,7.640000000000001,7.69,7.72,7.74,7.74,7.73,7.71,213.34,213.49,213.58,213.64000000000001,213.70000000000002,213.75,213.79,213.84,213.94,28.78,28.42,28.240000000000002,28.04,27.86,27.67,27.47,27.29,26.91,N/A,N/A -2012,9,5,21,30,101230,100090,98990,80.2,0,7.29,7.92,8.040000000000001,8.09,8.120000000000001,8.13,8.120000000000001,8.11,8.06,211.92000000000002,212,212,211.97,211.93,211.88,211.81,211.73000000000002,211.55,28.77,28.41,28.240000000000002,28.04,27.85,27.66,27.47,27.28,26.900000000000002,N/A,N/A -2012,9,5,22,30,101210,100070,98970,77.35000000000001,0,6.68,7.22,7.34,7.390000000000001,7.43,7.45,7.47,7.48,7.49,209.42000000000002,209.54,209.61,209.70000000000002,209.77,209.85,209.93,210.02,210.23000000000002,28.82,28.48,28.3,28.11,27.92,27.740000000000002,27.55,27.37,27,N/A,N/A -2012,9,5,23,30,101200,100050,98950,75.21000000000001,0,6.78,7.34,7.45,7.5,7.54,7.5600000000000005,7.57,7.58,7.59,212.16,212.33,212.44,212.54,212.63,212.72,212.82,212.91,213.1,28.87,28.52,28.35,28.16,27.97,27.79,27.59,27.42,27.05,N/A,N/A -2012,9,6,0,30,101170,100030,98920,73.81,0,7.390000000000001,8,8.13,8.18,8.22,8.23,8.24,8.24,8.22,207.71,207.71,207.74,207.79,207.83,207.88,207.92000000000002,207.95000000000002,208.02,28.810000000000002,28.47,28.3,28.1,27.92,27.73,27.53,27.35,26.97,N/A,N/A -2012,9,6,1,30,101150,100010,98910,74.02,0,7.21,7.8,7.91,7.97,8,8.02,8.040000000000001,8.05,8.08,208.41,208.38,208.38,208.39000000000001,208.39000000000001,208.4,208.42000000000002,208.44,208.52,28.810000000000002,28.47,28.3,28.11,27.93,27.75,27.560000000000002,27.39,27.03,N/A,N/A -2012,9,6,2,30,101180,100030,98930,78.13,0,6.95,7.5,7.59,7.62,7.640000000000001,7.640000000000001,7.63,7.61,7.57,215.29,215.14000000000001,215.04,214.92000000000002,214.78,214.65,214.49,214.34,213.98000000000002,28.55,28.19,28.02,27.82,27.63,27.45,27.25,27.07,26.7,N/A,N/A -2012,9,6,3,30,101190,100050,98940,70.07000000000001,0,6.37,6.93,7.05,7.11,7.16,7.19,7.21,7.22,7.24,213.09,213.42000000000002,213.56,213.67000000000002,213.77,213.86,213.94,214.01,214.14000000000001,28.97,28.650000000000002,28.48,28.29,28.1,27.91,27.72,27.54,27.16,N/A,N/A -2012,9,6,4,30,101190,100050,98940,69.78,0,7.0200000000000005,7.57,7.7,7.78,7.84,7.890000000000001,7.930000000000001,7.97,8.05,219.5,219.42000000000002,219.44,219.46,219.48000000000002,219.5,219.51,219.52,219.48000000000002,28.87,28.55,28.39,28.2,28.02,27.84,27.66,27.48,27.13,N/A,N/A -2012,9,6,5,30,101190,100040,98940,72.63,0,7.41,8,8.1,8.13,8.14,8.13,8.11,8.08,8,221.15,221.08,221.01,220.95000000000002,220.89000000000001,220.83,220.77,220.70000000000002,220.55,28.75,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.45,27.27,26.88,N/A,N/A -2012,9,6,6,30,101250,100100,99000,75.87,0,7.48,8.1,8.21,8.25,8.27,8.26,8.25,8.22,8.15,223.71,223.73000000000002,223.72,223.68,223.65,223.61,223.57,223.52,223.42000000000002,28.580000000000002,28.22,28.04,27.84,27.650000000000002,27.46,27.26,27.07,26.69,N/A,N/A -2012,9,6,7,30,101280,100130,99030,74.92,0,6.55,7.07,7.17,7.22,7.25,7.2700000000000005,7.28,7.28,7.28,227.38,227.41,227.4,227.39000000000001,227.37,227.35,227.34,227.31,227.26,28.57,28.22,28.04,27.84,27.650000000000002,27.46,27.27,27.080000000000002,26.71,N/A,N/A -2012,9,6,8,30,101310,100170,99060,77.77,0,6.84,7.33,7.41,7.44,7.45,7.45,7.44,7.43,7.38,235.63,235.76,235.82,235.88,235.93,235.97,236.01,236.04,236.11,28.330000000000002,27.97,27.79,27.59,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A -2012,9,6,9,30,101320,100180,99070,76.57000000000001,0,6.18,6.68,6.78,6.84,6.88,6.91,6.93,6.94,6.96,237.81,237.91,237.97,238.03,238.09,238.15,238.20000000000002,238.26,238.37,28.51,28.16,27.98,27.78,27.59,27.400000000000002,27.2,27.02,26.63,N/A,N/A -2012,9,6,10,30,101340,100190,99080,79.63,0,6.44,6.9,6.98,7.01,7.0200000000000005,7.0200000000000005,7.01,6.99,6.96,243.8,243.81,243.81,243.83,243.84,243.86,243.88,243.9,243.95000000000002,28.28,27.91,27.73,27.53,27.34,27.150000000000002,26.95,26.76,26.38,N/A,N/A -2012,9,6,11,30,101350,100200,99090,80.22,0,5.49,5.86,5.93,5.97,6,6.0200000000000005,6.04,6.05,6.0600000000000005,243.72,243.52,243.33,243.1,242.87,242.62,242.38,242.14000000000001,241.62,28.19,27.830000000000002,27.650000000000002,27.46,27.26,27.07,26.88,26.7,26.32,N/A,N/A -2012,9,6,12,30,101380,100240,99130,82.21000000000001,0,5.3100000000000005,5.65,5.7,5.73,5.74,5.75,5.74,5.74,5.72,258.96,258.4,257.99,257.58,257.21,256.85,256.49,256.16,255.51000000000002,28.21,27.84,27.66,27.46,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,9,6,13,30,101410,100260,99150,82.65,0,5.24,5.51,5.5200000000000005,5.51,5.49,5.46,5.43,5.4,5.33,277.23,275.47,274.6,273.72,272.94,272.2,271.47,270.79,269.46,27.98,27.61,27.43,27.23,27.04,26.85,26.66,26.47,26.09,N/A,N/A -2012,9,6,14,30,101450,100300,99190,86.18,0,3.7,3.84,3.85,3.83,3.8000000000000003,3.7800000000000002,3.75,3.72,3.65,294.72,293.86,293.37,292.81,292.26,291.68,291,290.32,288.49,27.47,27.09,26.92,26.72,26.53,26.34,26.150000000000002,25.97,25.6,N/A,N/A -2012,9,6,15,30,101450,100310,99190,84.63,0,2.5,2.61,2.63,2.65,2.66,2.68,2.71,2.74,2.86,276.72,275.28000000000003,274.34000000000003,273.28000000000003,272.16,270.95,269.52,268.07,264.23,27.67,27.3,27.13,26.94,26.76,26.580000000000002,26.400000000000002,26.23,25.900000000000002,N/A,N/A -2012,9,6,16,30,101470,100320,99210,83.61,0,2.84,3,3.0300000000000002,3.0500000000000003,3.0700000000000003,3.09,3.1,3.12,3.15,266.96,266.43,266.23,266.02,265.84000000000003,265.66,265.47,265.27,264.86,27.87,27.5,27.32,27.12,26.92,26.740000000000002,26.54,26.35,25.98,N/A,N/A -2012,9,6,17,30,101440,100290,99180,82.24,0,2.93,3.12,3.17,3.21,3.25,3.2800000000000002,3.31,3.34,3.39,242.77,242.84,242.9,242.96,243,243.04,243.07,243.1,243.12,28.11,27.740000000000002,27.560000000000002,27.36,27.17,26.98,26.78,26.6,26.22,N/A,N/A -2012,9,6,18,30,101420,100280,99170,82.67,0,3.48,3.67,3.7,3.73,3.75,3.77,3.79,3.81,3.88,214.37,214.9,215.25,215.65,216.07,216.52,217.07,217.64000000000001,219.25,28.22,27.85,27.68,27.48,27.3,27.12,26.93,26.75,26.41,N/A,N/A -2012,9,6,19,30,101380,100230,99120,80.43,0,3.92,4.15,4.2,4.22,4.23,4.24,4.24,4.25,4.25,208.05,208.46,208.68,208.9,209.12,209.34,209.59,209.83,210.42000000000002,28.55,28.19,28.01,27.810000000000002,27.63,27.44,27.25,27.060000000000002,26.69,N/A,N/A -2012,9,6,20,30,101350,100200,99100,78.91,0,4.96,5.26,5.29,5.3,5.29,5.28,5.26,5.23,5.17,215.42000000000002,215.41,215.4,215.38,215.37,215.35,215.33,215.31,215.28,28.71,28.36,28.18,27.98,27.79,27.6,27.41,27.22,26.84,N/A,N/A -2012,9,6,21,30,101310,100170,99060,81.15,0,5.34,5.65,5.69,5.69,5.68,5.66,5.62,5.59,5.5,209.9,209.78,209.67000000000002,209.57,209.47,209.36,209.24,209.11,208.81,28.54,28.18,28.01,27.8,27.61,27.42,27.23,27.04,26.66,N/A,N/A -2012,9,6,22,30,101280,100140,99030,80.17,0,5.5600000000000005,5.93,5.99,6,6.01,6,5.98,5.96,5.91,213.17000000000002,213.27,213.26,213.26,213.26,213.26,213.25,213.25,213.21,28.55,28.21,28.04,27.84,27.650000000000002,27.46,27.28,27.09,26.73,N/A,N/A -2012,9,6,23,30,101250,100110,99010,79.73,0,6.48,6.94,7.01,7.03,7.03,7.0200000000000005,7,6.98,6.92,215.23000000000002,215.28,215.27,215.24,215.21,215.18,215.14000000000001,215.09,214.96,28.560000000000002,28.21,28.04,27.84,27.650000000000002,27.46,27.28,27.09,26.72,N/A,N/A -2012,9,7,0,30,101210,100070,98960,79.91,0,7.25,7.78,7.86,7.87,7.86,7.82,7.78,7.72,7.58,219.78,219.75,219.75,219.73000000000002,219.71,219.68,219.63,219.57,219.39000000000001,28.5,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.02,26.650000000000002,N/A,N/A -2012,9,7,1,30,101220,100070,98970,78.26,0,6.7700000000000005,7.2700000000000005,7.36,7.38,7.390000000000001,7.37,7.3500000000000005,7.32,7.23,221,221.01,221.02,221.01,221.01,221.01,220.99,220.97,220.88,28.580000000000002,28.240000000000002,28.07,27.87,27.68,27.5,27.310000000000002,27.13,26.76,N/A,N/A -2012,9,7,2,30,101200,100060,98950,79.11,0,6,6.44,6.5200000000000005,6.5600000000000005,6.58,6.6000000000000005,6.6000000000000005,6.61,6.62,219.5,219.62,219.67000000000002,219.72,219.76,219.79,219.83,219.86,219.93,28.53,28.18,28.01,27.810000000000002,27.63,27.45,27.26,27.09,26.740000000000002,N/A,N/A -2012,9,7,3,30,101210,100060,98960,76.74,0,6.45,6.91,6.99,7.01,7.0200000000000005,7.01,6.99,6.97,6.91,226.51,226.51,226.49,226.47,226.46,226.44,226.42000000000002,226.41,226.38,28.53,28.19,28.01,27.82,27.63,27.45,27.26,27.080000000000002,26.71,N/A,N/A -2012,9,7,4,30,101210,100060,98960,77.85000000000001,0,6.29,6.74,6.8,6.82,6.82,6.8100000000000005,6.79,6.7700000000000005,6.71,228.69,228.69,228.69,228.68,228.66,228.63,228.6,228.56,228.47,28.47,28.12,27.95,27.75,27.560000000000002,27.37,27.18,26.990000000000002,26.61,N/A,N/A -2012,9,7,5,30,101220,100070,98960,74.14,0,6.41,6.88,6.97,7,7.0200000000000005,7.0200000000000005,7.01,7,6.96,232.47,232.58,232.61,232.64000000000001,232.66,232.69,232.70000000000002,232.71,232.69,28.6,28.26,28.09,27.89,27.7,27.51,27.32,27.14,26.76,N/A,N/A -2012,9,7,6,30,101240,100100,98990,71.85000000000001,0,5.98,6.43,6.5200000000000005,6.5600000000000005,6.59,6.61,6.62,6.63,6.65,237.59,237.73000000000002,237.8,237.87,237.93,237.99,238.06,238.12,238.26,28.77,28.44,28.28,28.080000000000002,27.900000000000002,27.72,27.53,27.35,26.98,N/A,N/A -2012,9,7,7,30,101260,100120,99010,75.32000000000001,0,6.2700000000000005,6.71,6.78,6.79,6.78,6.76,6.73,6.69,6.6000000000000005,238,238.16,238.22,238.29,238.35,238.41,238.47,238.51,238.64000000000001,28.57,28.22,28.05,27.85,27.66,27.47,27.28,27.09,26.71,N/A,N/A -2012,9,7,8,30,101250,100100,99000,71.67,0,6.38,6.88,6.97,7.01,7.03,7.03,7.0200000000000005,7,6.96,244.59,244.65,244.74,244.86,244.97,245.08,245.19,245.31,245.57,28.73,28.400000000000002,28.23,28.03,27.84,27.650000000000002,27.46,27.27,26.89,N/A,N/A -2012,9,7,9,30,101280,100140,99030,75.78,0,5.97,6.390000000000001,6.46,6.49,6.5,6.5,6.49,6.48,6.45,243.57,243.87,243.96,244.05,244.12,244.20000000000002,244.28,244.34,244.49,28.44,28.09,27.92,27.72,27.53,27.34,27.150000000000002,26.96,26.580000000000002,N/A,N/A -2012,9,7,10,30,101270,100130,99020,78.99,0,6.24,6.68,6.76,6.79,6.8,6.8,6.78,6.7700000000000005,6.72,251.02,251.33,251.54,251.75,251.95000000000002,252.13,252.31,252.49,252.84,28.25,27.88,27.7,27.5,27.310000000000002,27.11,26.92,26.73,26.34,N/A,N/A -2012,9,7,11,30,101300,100160,99050,80.66,0,5.74,6.11,6.17,6.18,6.19,6.18,6.17,6.15,6.11,267.18,266.66,266.39,266.11,265.88,265.64,265.41,265.19,264.74,28.02,27.650000000000002,27.47,27.26,27.07,26.88,26.69,26.5,26.12,N/A,N/A -2012,9,7,12,30,101300,100150,99040,82.64,0,5.75,6.11,6.17,6.2,6.2,6.2,6.19,6.17,6.140000000000001,266.83,266.42,266.18,265.94,265.71,265.49,265.26,265.05,264.6,27.69,27.3,27.12,26.92,26.73,26.53,26.34,26.150000000000002,25.77,N/A,N/A -2012,9,7,13,30,101320,100170,99060,80.97,0,5.17,5.49,5.55,5.57,5.58,5.58,5.58,5.57,5.55,267.73,267.17,266.84000000000003,266.5,266.19,265.88,265.57,265.26,264.63,27.7,27.32,27.14,26.93,26.740000000000002,26.55,26.35,26.17,25.79,N/A,N/A -2012,9,7,14,30,101340,100190,99080,81.88,0,4.98,5.26,5.3100000000000005,5.32,5.32,5.32,5.3,5.29,5.26,274.17,273.89,273.69,273.49,273.3,273.12,272.91,272.72,272.26,27.48,27.09,26.91,26.71,26.51,26.32,26.13,25.94,25.560000000000002,N/A,N/A -2012,9,7,15,30,101330,100180,99070,81.07000000000001,0,4.69,4.99,5.05,5.09,5.11,5.13,5.15,5.15,5.17,269.71,269.2,268.94,268.69,268.46,268.26,268.05,267.85,267.44,27.57,27.18,26.990000000000002,26.79,26.6,26.41,26.21,26.03,25.650000000000002,N/A,N/A -2012,9,7,16,30,101350,100200,99090,78.33,0,4.57,4.86,4.93,4.96,4.98,5,5.01,5.0200000000000005,5.03,259.71,259.68,259.72,259.77,259.82,259.87,259.93,259.99,260.1,27.86,27.48,27.3,27.1,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,9,7,17,30,101320,100170,99060,78.36,0,3.98,4.21,4.25,4.26,4.2700000000000005,4.28,4.28,4.29,4.29,234.28,234.26,234.29,234.32,234.37,234.43,234.52,234.62,235.05,28,27.63,27.46,27.27,27.09,26.91,26.73,26.560000000000002,26.23,N/A,N/A -2012,9,7,18,30,101260,100120,99010,74.74,0,4.51,4.75,4.7700000000000005,4.7700000000000005,4.76,4.74,4.71,4.68,4.61,211.70000000000002,212.01,212.25,212.49,212.73000000000002,212.97,213.24,213.51,214.23000000000002,28.39,28.03,27.86,27.67,27.490000000000002,27.3,27.12,26.95,26.6,N/A,N/A -2012,9,7,19,30,101260,100120,99010,73.24,0,4.05,4.2700000000000005,4.3,4.3,4.29,4.28,4.25,4.23,4.15,211.36,211.66,211.8,211.94,212.09,212.23000000000002,212.39000000000001,212.53,212.9,28.62,28.27,28.1,27.91,27.72,27.54,27.36,27.18,26.82,N/A,N/A -2012,9,7,20,30,101190,100040,98940,73.86,0,5.18,5.48,5.51,5.51,5.49,5.47,5.43,5.39,5.29,209.8,209.86,209.9,209.93,209.96,209.98000000000002,210,210.02,210.02,28.64,28.29,28.12,27.93,27.740000000000002,27.55,27.36,27.19,26.82,N/A,N/A -2012,9,7,21,30,101170,100030,98920,76.16,0,5.64,6,6.05,6.05,6.04,6.0200000000000005,5.98,5.95,5.87,210.92000000000002,210.95000000000002,210.95000000000002,210.95000000000002,210.95000000000002,210.93,210.91,210.88,210.81,28.51,28.16,27.990000000000002,27.79,27.6,27.41,27.22,27.03,26.66,N/A,N/A -2012,9,7,22,30,101130,99990,98880,77.47,0,6.23,6.67,6.74,6.75,6.76,6.75,6.74,6.71,6.66,207.74,207.8,207.83,207.86,207.87,207.89000000000001,207.91,207.92000000000002,207.93,28.45,28.1,27.93,27.73,27.54,27.36,27.16,26.98,26.6,N/A,N/A -2012,9,7,23,30,101090,99950,98840,76.38,0,6.11,6.5600000000000005,6.65,6.68,6.7,6.71,6.7,6.7,6.67,210.29,210.35,210.37,210.39000000000001,210.4,210.41,210.4,210.38,210.33,28.53,28.19,28.02,27.82,27.63,27.44,27.25,27.07,26.7,N/A,N/A -2012,9,8,0,30,101070,99930,98820,76.34,0,5.8100000000000005,6.22,6.3,6.32,6.33,6.33,6.32,6.3100000000000005,6.2700000000000005,217.57,217.65,217.71,217.76,217.81,217.85,217.89000000000001,217.94,218.02,28.490000000000002,28.150000000000002,27.97,27.77,27.59,27.39,27.2,27.02,26.64,N/A,N/A -2012,9,8,1,30,101060,99910,98810,76.92,0,5.83,6.25,6.32,6.3500000000000005,6.36,6.36,6.3500000000000005,6.34,6.3,217.58,217.59,217.63,217.67000000000002,217.69,217.70000000000002,217.71,217.71,217.70000000000002,28.490000000000002,28.14,27.97,27.77,27.580000000000002,27.39,27.2,27.02,26.64,N/A,N/A -2012,9,8,2,30,101040,99900,98790,78.62,0,6.4,6.87,6.95,6.98,6.99,6.99,6.98,6.96,6.92,222.39000000000001,222.44,222.47,222.5,222.51,222.53,222.53,222.54,222.54,28.43,28.080000000000002,27.91,27.71,27.52,27.330000000000002,27.14,26.96,26.580000000000002,N/A,N/A -2012,9,8,3,30,101030,99890,98790,77.63,0,6.68,7.19,7.28,7.3100000000000005,7.32,7.32,7.3100000000000005,7.29,7.24,227.73000000000002,227.81,227.85,227.88,227.91,227.94,227.97,228,228.07,28.46,28.11,27.94,27.740000000000002,27.55,27.36,27.17,26.990000000000002,26.61,N/A,N/A -2012,9,8,4,30,101020,99880,98780,78.4,0,6.79,7.28,7.36,7.390000000000001,7.390000000000001,7.38,7.36,7.33,7.2700000000000005,229.75,229.74,229.75,229.75,229.74,229.74,229.72,229.70000000000002,229.67000000000002,28.400000000000002,28.05,27.88,27.68,27.490000000000002,27.3,27.1,26.92,26.54,N/A,N/A -2012,9,8,5,30,101040,99900,98790,78.41,0,7.01,7.57,7.69,7.74,7.78,7.79,7.8,7.8100000000000005,7.8,231.19,231.27,231.31,231.34,231.37,231.4,231.42000000000002,231.45000000000002,231.5,28.48,28.13,27.95,27.75,27.57,27.38,27.18,27,26.63,N/A,N/A -2012,9,8,6,30,101060,99920,98810,76.59,0,6.3100000000000005,6.78,6.87,6.9,6.92,6.93,6.92,6.92,6.890000000000001,243.48000000000002,243.43,243.41,243.39000000000001,243.37,243.34,243.32,243.3,243.27,28.54,28.19,28.01,27.82,27.63,27.44,27.25,27.060000000000002,26.69,N/A,N/A -2012,9,8,7,30,101090,99950,98850,75.59,0,6.51,7,7.1000000000000005,7.140000000000001,7.16,7.17,7.18,7.18,7.17,235.15,235.24,235.3,235.36,235.43,235.49,235.57,235.64000000000001,235.8,28.68,28.330000000000002,28.16,27.96,27.77,27.59,27.39,27.21,26.84,N/A,N/A -2012,9,8,8,30,101150,100010,98900,76.28,0,5.98,6.45,6.53,6.58,6.6000000000000005,6.61,6.61,6.61,6.59,243.22,243.32,243.38,243.44,243.5,243.56,243.63,243.71,243.86,28.62,28.27,28.09,27.900000000000002,27.71,27.51,27.32,27.13,26.75,N/A,N/A -2012,9,8,9,30,101150,100010,98900,76.25,0,6.68,7.22,7.33,7.390000000000001,7.42,7.44,7.45,7.45,7.45,248.96,249.07,249.14000000000001,249.23000000000002,249.31,249.4,249.49,249.57,249.76000000000002,28.64,28.29,28.11,27.91,27.72,27.53,27.34,27.150000000000002,26.77,N/A,N/A -2012,9,8,10,30,101180,100040,98930,76.78,0,6.83,7.390000000000001,7.51,7.5600000000000005,7.6000000000000005,7.62,7.62,7.63,7.61,250.81,250.77,250.79,250.81,250.85,250.9,250.94,250.99,251.11,28.6,28.25,28.07,27.87,27.68,27.490000000000002,27.29,27.1,26.72,N/A,N/A -2012,9,8,11,30,101230,100080,98980,77.15,0,6.04,6.5,6.6000000000000005,6.65,6.69,6.71,6.73,6.75,6.7700000000000005,267.33,266.81,266.5,266.17,265.88,265.58,265.28000000000003,264.98,264.36,28.52,28.17,27.990000000000002,27.79,27.61,27.42,27.22,27.04,26.66,N/A,N/A -2012,9,8,12,30,101300,100150,99040,77.46000000000001,0,7.62,8.23,8.35,8.4,8.44,8.45,8.45,8.44,8.42,284.79,284.40000000000003,284.14,283.87,283.63,283.39,283.15000000000003,282.92,282.45,28.19,27.810000000000002,27.63,27.42,27.23,27.04,26.85,26.66,26.28,N/A,N/A -2012,9,8,13,30,101340,100190,99070,79.51,0,8.13,8.76,8.89,8.950000000000001,8.98,9,9,9,8.98,290.81,290.77,290.7,290.63,290.56,290.49,290.42,290.34000000000003,290.18,27.37,26.94,26.75,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,8,14,30,101360,100210,99090,79.12,0,6.92,7.41,7.51,7.5600000000000005,7.59,7.61,7.62,7.62,7.63,295.89,296.09000000000003,296.22,296.36,296.49,296.61,296.74,296.86,297.13,27.060000000000002,26.63,26.44,26.240000000000002,26.04,25.86,25.66,25.48,25.11,N/A,N/A -2012,9,8,15,30,101360,100210,99100,75.24,0,5.69,6.09,6.18,6.24,6.28,6.3100000000000005,6.34,6.36,6.390000000000001,307.97,308.11,308.19,308.24,308.29,308.33,308.35,308.37,308.38,27.59,27.2,27.01,26.810000000000002,26.62,26.43,26.23,26.05,25.67,N/A,N/A -2012,9,8,16,30,101340,100200,99090,67.99,0,5.86,6.25,6.32,6.34,6.3500000000000005,6.34,6.34,6.33,6.32,318.75,317.99,317.54,317.08,316.66,316.25,315.82,315.41,314.56,28.38,28.04,27.87,27.68,27.5,27.32,27.13,26.96,26.6,N/A,N/A -2012,9,8,17,30,101340,100190,99080,67.33,0,5.57,6.03,6.13,6.2,6.26,6.3,6.33,6.36,6.41,320.74,321.46,321.85,322.23,322.57,322.89,323.19,323.47,324.02,28.91,28.580000000000002,28.42,28.22,28.04,27.85,27.650000000000002,27.47,27.09,N/A,N/A -2012,9,8,18,30,101320,100180,99070,63.28,0,4.96,5.42,5.53,5.61,5.67,5.72,5.76,5.8,5.88,318.38,319.09000000000003,319.53000000000003,319.92,320.27,320.6,320.91,321.21,321.79,29.63,29.35,29.2,29,28.82,28.63,28.44,28.26,27.88,N/A,N/A -2012,9,8,19,30,101280,100140,99040,60.980000000000004,0,5,5.48,5.6000000000000005,5.68,5.74,5.79,5.83,5.87,5.94,331.31,331.13,331.03000000000003,330.92,330.83,330.74,330.65000000000003,330.57,330.37,30.240000000000002,30,29.85,29.67,29.490000000000002,29.310000000000002,29.12,28.94,28.57,N/A,N/A -2012,9,8,20,30,101250,100110,99010,60,0,4.48,4.93,5.05,5.13,5.2,5.26,5.32,5.37,5.49,332.79,332.71,332.71,332.69,332.67,332.66,332.64,332.63,332.64,30.68,30.490000000000002,30.36,30.18,30.01,29.84,29.66,29.490000000000002,29.14,N/A,N/A -2012,9,8,21,30,101210,100080,98980,60.58,0,4.78,5.24,5.3500000000000005,5.43,5.5,5.57,5.67,5.79,6.12,325.66,326.01,326.26,326.54,326.85,327.23,327.83,328.51,331.28000000000003,31.060000000000002,30.93,30.82,30.67,30.52,30.37,30.23,30.1,29.84,N/A,N/A -2012,9,8,22,30,101200,100070,98970,72.62,0,8.51,9.47,9.69,9.81,9.89,9.93,9.950000000000001,9.96,9.92,351.63,352.3,352.55,352.78000000000003,352.97,353.15000000000003,353.32,353.48,353.76,30.48,30.29,30.16,29.98,29.810000000000002,29.64,29.46,29.29,28.94,N/A,N/A -2012,9,8,23,30,101230,100100,99000,71.16,0,8.2,9.06,9.26,9.370000000000001,9.44,9.48,9.49,9.5,9.49,357.81,358.08,358.23,358.37,358.49,358.6,358.7,358.8,358.99,30.330000000000002,30.13,29.990000000000002,29.810000000000002,29.64,29.46,29.28,29.1,28.73,N/A,N/A -2012,9,9,0,30,101280,100140,99040,70.10000000000001,0,8.49,9.34,9.540000000000001,9.66,9.74,9.790000000000001,9.83,9.86,9.89,3.62,3.74,3.77,3.8000000000000003,3.8200000000000003,3.83,3.85,3.86,3.88,29.93,29.68,29.53,29.34,29.16,28.97,28.78,28.6,28.22,N/A,N/A -2012,9,9,1,30,101350,100210,99100,73.2,0,10.61,11.65,11.88,12,12.08,12.13,12.15,12.17,12.17,11.85,12.22,12.42,12.61,12.77,12.93,13.08,13.22,13.49,28.62,28.26,28.080000000000002,27.87,27.68,27.490000000000002,27.29,27.11,26.73,N/A,N/A -2012,9,9,2,30,101390,100240,99130,75.16,0,11.43,12.530000000000001,12.790000000000001,12.91,12.99,13.040000000000001,13.07,13.08,13.07,17.62,17.69,17.72,17.75,17.78,17.8,17.830000000000002,17.85,17.900000000000002,27.580000000000002,27.14,26.94,26.73,26.53,26.330000000000002,26.13,25.95,25.560000000000002,N/A,N/A -2012,9,9,3,30,101440,100290,99170,75.16,0,10.34,11.290000000000001,11.5,11.620000000000001,11.69,11.74,11.77,11.8,11.81,27.7,27.91,27.990000000000002,28.07,28.14,28.21,28.27,28.330000000000002,28.45,27.27,26.810000000000002,26.62,26.41,26.2,26.01,25.810000000000002,25.62,25.23,N/A,N/A -2012,9,9,4,30,101470,100310,99190,72.96000000000001,0,10.13,11.05,11.27,11.39,11.47,11.52,11.56,11.59,11.620000000000001,33.06,33.22,33.29,33.36,33.42,33.480000000000004,33.54,33.59,33.69,27.19,26.73,26.53,26.32,26.12,25.92,25.72,25.53,25.14,N/A,N/A -2012,9,9,5,30,101470,100310,99200,71.68,0,10.32,11.27,11.5,11.61,11.69,11.74,11.78,11.8,11.83,33.6,33.79,33.94,34.07,34.18,34.29,34.4,34.5,34.7,27.11,26.650000000000002,26.45,26.23,26.03,25.84,25.63,25.44,25.05,N/A,N/A -2012,9,9,6,30,101530,100370,99250,73.63,0,9.71,10.53,10.72,10.82,10.870000000000001,10.91,10.93,10.950000000000001,10.950000000000001,39.32,39.71,39.93,40.15,40.34,40.51,40.69,40.85,41.18,26.830000000000002,26.35,26.16,25.94,25.740000000000002,25.54,25.34,25.150000000000002,24.76,N/A,N/A -2012,9,9,7,30,101570,100410,99290,70.78,0,9.31,10.09,10.25,10.34,10.39,10.43,10.44,10.46,10.46,38.54,39,39.28,39.56,39.800000000000004,40.04,40.27,40.47,40.89,26.740000000000002,26.26,26.05,25.84,25.64,25.44,25.240000000000002,25.05,24.66,N/A,N/A -2012,9,9,8,30,101600,100440,99320,69.11,0,9.94,10.81,11,11.11,11.19,11.24,11.27,11.290000000000001,11.32,47.15,47.25,47.31,47.36,47.39,47.42,47.44,47.46,47.480000000000004,26.47,25.97,25.76,25.55,25.34,25.14,24.93,24.740000000000002,24.35,N/A,N/A -2012,9,9,9,30,101630,100470,99340,65.8,0,9.6,10.38,10.55,10.64,10.700000000000001,10.73,10.75,10.76,10.77,45.06,45.19,45.27,45.34,45.4,45.46,45.52,45.57,45.68,26.16,25.650000000000002,25.45,25.23,25.02,24.830000000000002,24.62,24.43,24.04,N/A,N/A -2012,9,9,10,30,101650,100490,99360,68.41,0,9.32,10.06,10.23,10.31,10.36,10.4,10.42,10.43,10.44,44.85,45.03,45.13,45.230000000000004,45.31,45.39,45.47,45.54,45.68,25.73,25.2,24.98,24.76,24.560000000000002,24.36,24.150000000000002,23.96,23.56,N/A,N/A -2012,9,9,11,30,101710,100540,99410,67.95,0,8.82,9.46,9.59,9.64,9.67,9.69,9.700000000000001,9.700000000000001,9.68,39.46,39.95,40.25,40.54,40.79,41.03,41.26,41.480000000000004,41.92,25.35,24.82,24.6,24.38,24.18,23.98,23.78,23.59,23.19,N/A,N/A -2012,9,9,12,30,101750,100580,99450,65.11,0,8.44,9.02,9.13,9.17,9.19,9.200000000000001,9.19,9.18,9.14,38.160000000000004,38.6,38.86,39.11,39.33,39.54,39.76,39.95,40.35,25.04,24.5,24.28,24.07,23.86,23.66,23.46,23.27,22.88,N/A,N/A -2012,9,9,13,30,101760,100590,99460,64.32000000000001,0,8.55,9.14,9.25,9.290000000000001,9.31,9.32,9.31,9.3,9.27,35.68,36.06,36.28,36.49,36.68,36.85,37.03,37.19,37.52,24.79,24.240000000000002,24.02,23.81,23.6,23.400000000000002,23.2,23.01,22.62,N/A,N/A -2012,9,9,14,30,101810,100640,99500,62.28,0,8.07,8.6,8.69,8.73,8.74,8.75,8.74,8.73,8.700000000000001,34.93,35.29,35.51,35.71,35.89,36.050000000000004,36.22,36.37,36.67,24.62,24.060000000000002,23.85,23.63,23.42,23.23,23.02,22.84,22.44,N/A,N/A -2012,9,9,15,30,101820,100650,99520,58.69,0,7.87,8.41,8.51,8.55,8.58,8.59,8.59,8.59,8.58,34.77,35.01,35.15,35.29,35.410000000000004,35.52,35.62,35.72,35.93,24.75,24.21,23.990000000000002,23.78,23.57,23.38,23.17,22.98,22.59,N/A,N/A -2012,9,9,16,30,101840,100670,99530,53.72,0,6.93,7.390000000000001,7.49,7.54,7.57,7.6000000000000005,7.61,7.62,7.640000000000001,35.11,35.21,35.28,35.33,35.37,35.4,35.43,35.46,35.51,25.060000000000002,24.55,24.34,24.13,23.92,23.73,23.53,23.34,22.94,N/A,N/A -2012,9,9,17,30,101810,100640,99500,50.15,0,5.03,5.36,5.44,5.49,5.53,5.57,5.6000000000000005,5.62,5.67,37.97,37.5,37.22,36.96,36.71,36.47,36.230000000000004,36.01,35.54,25.53,25.07,24.87,24.66,24.46,24.27,24.060000000000002,23.88,23.490000000000002,N/A,N/A -2012,9,9,18,30,101780,100620,99490,48.01,0,4.12,4.4,4.47,4.54,4.58,4.63,4.67,4.71,4.79,43.7,42.230000000000004,41.37,40.57,39.85,39.19,38.56,37.980000000000004,36.82,26.240000000000002,25.810000000000002,25.63,25.42,25.23,25.04,24.84,24.650000000000002,24.26,N/A,N/A -2012,9,9,19,30,101760,100600,99470,45.87,0,3.19,3.35,3.38,3.41,3.43,3.45,3.48,3.5,3.5500000000000003,63.76,60.5,58.53,56.74,55.13,53.65,52.230000000000004,50.93,48.42,26.93,26.55,26.37,26.17,25.98,25.8,25.6,25.42,25.03,N/A,N/A -2012,9,9,20,30,101710,100550,99420,49.910000000000004,0,3.29,3.42,3.42,3.41,3.39,3.38,3.36,3.35,3.31,82.82000000000001,81.82000000000001,81.13,80.43,79.75,79.09,78.36,77.69,76.09,26.79,26.400000000000002,26.22,26.02,25.830000000000002,25.64,25.44,25.26,24.88,N/A,N/A -2012,9,9,21,30,101680,100520,99390,49.46,0,2.75,2.86,2.87,2.87,2.86,2.85,2.85,2.84,2.82,83.19,82.17,81.58,80.96000000000001,80.37,79.82000000000001,79.21000000000001,78.64,77.35000000000001,27.04,26.66,26.48,26.28,26.09,25.900000000000002,25.7,25.52,25.13,N/A,N/A -2012,9,9,22,30,101650,100490,99360,48.39,0,2.05,2.16,2.18,2.2,2.22,2.23,2.24,2.2600000000000002,2.29,79.57000000000001,78.42,77.7,76.99,76.31,75.65,74.97,74.33,72.84,27.34,26.97,26.79,26.59,26.400000000000002,26.21,26.02,25.830000000000002,25.45,N/A,N/A -2012,9,9,23,30,101640,100480,99360,47.95,0,1.1500000000000001,1.21,1.24,1.25,1.28,1.29,1.31,1.33,1.3800000000000001,96.27,94.27,93.15,92.06,91.03,90.04,88.99,87.99,85.83,27.580000000000002,27.23,27.05,26.85,26.66,26.47,26.28,26.09,25.71,N/A,N/A -2012,9,10,0,30,101640,100480,99360,48.82,0,0.99,1.11,1.17,1.23,1.28,1.34,1.4000000000000001,1.45,1.57,350.34000000000003,352.13,353.2,354.13,354.94,355.65000000000003,356.32,356.93,358.08,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.34,25.95,N/A,N/A -2012,9,10,1,30,101640,100490,99370,47.54,0,6.8100000000000005,7.2,7.22,7.2,7.17,7.13,7.08,7.03,6.93,28.54,28.44,28.39,28.35,28.32,28.3,28.29,28.27,28.28,28.14,27.78,27.6,27.400000000000002,27.21,27.02,26.82,26.64,26.25,N/A,N/A -2012,9,10,2,30,101660,100510,99380,51.81,0,7.17,7.66,7.74,7.7700000000000005,7.78,7.78,7.7700000000000005,7.76,7.72,26.63,26.85,26.93,27.02,27.09,27.150000000000002,27.22,27.29,27.42,27.51,27.11,26.92,26.72,26.52,26.34,26.13,25.95,25.560000000000002,N/A,N/A -2012,9,10,3,30,101700,100540,99420,51.81,0,6.69,7.13,7.21,7.24,7.25,7.25,7.24,7.24,7.21,35.22,35.36,35.43,35.5,35.56,35.62,35.68,35.74,35.87,27.3,26.89,26.71,26.5,26.310000000000002,26.11,25.91,25.73,25.34,N/A,N/A -2012,9,10,4,30,101680,100520,99400,53.64,0,5.72,6.05,6.11,6.13,6.13,6.140000000000001,6.13,6.13,6.1000000000000005,40.38,40.67,40.85,41.01,41.17,41.300000000000004,41.45,41.57,41.84,27.14,26.740000000000002,26.55,26.34,26.150000000000002,25.96,25.76,25.57,25.18,N/A,N/A -2012,9,10,5,30,101690,100530,99410,54.730000000000004,0,5.36,5.68,5.73,5.76,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.7700000000000005,5.76,48.89,49.17,49.32,49.47,49.59,49.71,49.83,49.94,50.15,27.14,26.73,26.54,26.34,26.14,25.95,25.75,25.560000000000002,25.17,N/A,N/A -2012,9,10,6,30,101700,100540,99420,54.65,0,5.2,5.5,5.55,5.5600000000000005,5.57,5.57,5.57,5.57,5.55,55.63,55.88,56.06,56.24,56.39,56.54,56.7,56.83,57.11,27.02,26.62,26.44,26.240000000000002,26.04,25.85,25.650000000000002,25.46,25.07,N/A,N/A -2012,9,10,7,30,101720,100560,99430,54.03,0,5.63,5.97,6.03,6.05,6.0600000000000005,6.0600000000000005,6.0600000000000005,6.0600000000000005,6.04,63.24,63.03,62.89,62.76,62.63,62.52,62.4,62.300000000000004,62.1,27.01,26.61,26.42,26.22,26.02,25.830000000000002,25.63,25.44,25.05,N/A,N/A -2012,9,10,8,30,101720,100560,99430,54.61,0,5.25,5.55,5.6000000000000005,5.62,5.62,5.62,5.61,5.61,5.59,49.6,50.09,50.43,50.76,51.06,51.34,51.620000000000005,51.88,52.4,26.88,26.48,26.29,26.09,25.89,25.7,25.5,25.310000000000002,24.92,N/A,N/A -2012,9,10,9,30,101730,100570,99440,54.27,0,4.89,5.15,5.19,5.21,5.22,5.22,5.22,5.22,5.21,72.93,72,71.41,70.84,70.31,69.82000000000001,69.33,68.88,67.96000000000001,26.76,26.35,26.16,25.96,25.76,25.57,25.37,25.18,24.78,N/A,N/A -2012,9,10,10,30,101740,100580,99450,56.980000000000004,0,5.83,6.16,6.21,6.23,6.23,6.23,6.22,6.2,6.17,49.67,49.92,50.08,50.22,50.35,50.47,50.59,50.7,50.92,26.61,26.19,26,25.79,25.59,25.400000000000002,25.2,25.01,24.61,N/A,N/A -2012,9,10,11,30,101750,100590,99460,56.88,0,5.3500000000000005,5.64,5.67,5.68,5.68,5.68,5.67,5.66,5.63,66.8,66.22,65.83,65.44,65.08,64.75,64.41,64.11,63.480000000000004,26.44,26.02,25.830000000000002,25.62,25.42,25.22,25.02,24.830000000000002,24.44,N/A,N/A -2012,9,10,12,30,101790,100620,99490,54.59,0,3.96,4.19,4.23,4.25,4.2700000000000005,4.28,4.29,4.29,4.3,46.01,46.92,47.52,48.09,48.620000000000005,49.120000000000005,49.61,50.07,51,26.26,25.85,25.66,25.45,25.26,25.060000000000002,24.86,24.67,24.28,N/A,N/A -2012,9,10,13,30,101800,100630,99500,57.1,0,4.94,5.08,5.04,4.98,4.92,4.86,4.8100000000000005,4.75,4.65,75.13,74.51,74.05,73.58,73.14,72.72,72.28,71.86,71.01,26.13,25.7,25.51,25.310000000000002,25.11,24.92,24.72,24.53,24.14,N/A,N/A -2012,9,10,14,30,101840,100670,99550,59.18,0,4.89,5.18,5.24,5.28,5.3,5.32,5.34,5.3500000000000005,5.37,65.02,65.33,65.31,65.25,65.17,65.08,64.98,64.88,64.65,26.080000000000002,25.650000000000002,25.46,25.25,25.05,24.85,24.650000000000002,24.46,24.07,N/A,N/A -2012,9,10,15,30,101850,100690,99560,60.160000000000004,0,4.96,5.24,5.29,5.32,5.34,5.36,5.37,5.38,5.4,74.96000000000001,73.77,73.10000000000001,72.48,71.94,71.45,70.97,70.55,69.71000000000001,26.05,25.61,25.42,25.21,25.01,24.82,24.61,24.43,24.03,N/A,N/A -2012,9,10,16,30,101870,100700,99570,60.85,0,5.6000000000000005,5.91,5.96,5.98,5.98,5.98,5.98,5.97,5.95,65.65,65.5,65.41,65.33,65.25,65.17,65.1,65.03,64.89,25.96,25.51,25.32,25.11,24.91,24.71,24.51,24.32,23.92,N/A,N/A -2012,9,10,17,30,101850,100690,99560,64.04,0,6.43,6.82,6.890000000000001,6.91,6.92,6.93,6.93,6.92,6.91,50.02,50.85,51.32,51.77,52.2,52.59,52.980000000000004,53.35,54.1,25.76,25.3,25.1,24.89,24.68,24.490000000000002,24.29,24.1,23.71,N/A,N/A -2012,9,10,18,30,101830,100670,99540,63.85,0,5.04,5.29,5.32,5.33,5.33,5.32,5.3,5.29,5.26,72.15,72.75,73.04,73.31,73.54,73.76,73.98,74.17,74.54,25.84,25.400000000000002,25.2,25,24.8,24.6,24.400000000000002,24.21,23.82,N/A,N/A -2012,9,10,19,30,101820,100660,99530,59.31,0,4.38,4.59,4.62,4.63,4.63,4.63,4.62,4.61,4.59,98.14,97.95,97.85000000000001,97.74000000000001,97.63,97.53,97.42,97.31,97.07000000000001,26.060000000000002,25.64,25.45,25.25,25.05,24.86,24.66,24.47,24.080000000000002,N/A,N/A -2012,9,10,20,30,101770,100600,99480,60,0,4.44,4.69,4.74,4.7700000000000005,4.79,4.8,4.8100000000000005,4.82,4.82,101.8,101.44,101.23,101.02,100.82000000000001,100.65,100.47,100.3,99.94,26.14,25.72,25.53,25.32,25.12,24.93,24.73,24.54,24.16,N/A,N/A -2012,9,10,21,30,101750,100580,99460,57.84,0,4.25,4.49,4.54,4.5600000000000005,4.57,4.59,4.6000000000000005,4.6000000000000005,4.61,104.92,104.63,104.46000000000001,104.3,104.15,103.99000000000001,103.84,103.69,103.38,26.36,25.95,25.76,25.560000000000002,25.36,25.17,24.97,24.78,24.39,N/A,N/A -2012,9,10,22,30,101720,100550,99430,55.82,0,4.73,5.0200000000000005,5.07,5.11,5.13,5.15,5.16,5.17,5.19,103.63,103.26,103.04,102.82000000000001,102.61,102.41,102.19,101.99000000000001,101.56,26.560000000000002,26.150000000000002,25.96,25.76,25.560000000000002,25.37,25.17,24.990000000000002,24.6,N/A,N/A -2012,9,10,23,30,101720,100560,99430,54.84,0,5.64,6.0200000000000005,6.1000000000000005,6.15,6.18,6.2,6.22,6.23,6.25,113.9,113.4,113.13,112.85000000000001,112.60000000000001,112.36,112.10000000000001,111.87,111.36,26.78,26.38,26.19,25.990000000000002,25.79,25.6,25.400000000000002,25.22,24.830000000000002,N/A,N/A -2012,9,11,0,30,101690,100530,99400,56.04,0,5.55,5.93,6.01,6.05,6.08,6.1000000000000005,6.12,6.13,6.16,112.23,111.77,111.49000000000001,111.22,110.97,110.73,110.48,110.26,109.76,26.87,26.46,26.28,26.080000000000002,25.88,25.69,25.490000000000002,25.310000000000002,24.92,N/A,N/A -2012,9,11,1,30,101680,100520,99400,54.19,0,6.140000000000001,6.59,6.69,6.74,6.78,6.8100000000000005,6.84,6.86,6.890000000000001,110.82000000000001,110.33,110.06,109.81,109.58,109.35000000000001,109.13,108.92,108.47,27.05,26.650000000000002,26.46,26.26,26.060000000000002,25.87,25.67,25.490000000000002,25.1,N/A,N/A -2012,9,11,2,30,101700,100540,99420,56.6,0,6.5200000000000005,7,7.1000000000000005,7.16,7.2,7.23,7.25,7.2700000000000005,7.29,108.75,108.4,108.2,108,107.82000000000001,107.64,107.46000000000001,107.3,106.95,27.080000000000002,26.68,26.490000000000002,26.29,26.09,25.900000000000002,25.7,25.52,25.13,N/A,N/A -2012,9,11,3,30,101690,100530,99410,58.46,0,6.15,6.58,6.67,6.72,6.76,6.79,6.8100000000000005,6.82,6.8500000000000005,105.26,105,104.82000000000001,104.65,104.48,104.32000000000001,104.16,104.01,103.69,27.01,26.6,26.42,26.21,26.02,25.82,25.62,25.44,25.04,N/A,N/A -2012,9,11,4,30,101700,100540,99420,62.02,0,6.2,6.65,6.74,6.8,6.84,6.87,6.890000000000001,6.91,6.93,105.98,106.06,106.02,105.95,105.88,105.81,105.72,105.65,105.48,26.900000000000002,26.490000000000002,26.3,26.09,25.89,25.69,25.490000000000002,25.3,24.91,N/A,N/A -2012,9,11,5,30,101700,100540,99420,61.04,0,6.390000000000001,6.8500000000000005,6.96,7.03,7.07,7.11,7.140000000000001,7.16,7.2,105.68,105.61,105.55,105.49000000000001,105.44,105.38,105.33,105.28,105.19,26.88,26.46,26.27,26.060000000000002,25.87,25.67,25.47,25.28,24.89,N/A,N/A -2012,9,11,6,30,101710,100550,99420,59.36,0,6.09,6.640000000000001,6.78,6.890000000000001,6.97,7.03,7.09,7.140000000000001,7.22,102.73,103.62,103.98,104.26,104.49000000000001,104.69,104.86,105.01,105.26,26.97,26.57,26.39,26.19,25.990000000000002,25.8,25.6,25.41,25.02,N/A,N/A -2012,9,11,7,30,101720,100560,99440,58.43,0,7.390000000000001,7.92,7.99,8.02,8.02,8.02,8,7.98,7.930000000000001,117.26,117.25,117.23,117.21000000000001,117.19,117.18,117.16,117.13,117.08,27.07,26.68,26.490000000000002,26.29,26.09,25.900000000000002,25.69,25.51,25.12,N/A,N/A -2012,9,11,8,30,101730,100570,99440,55.77,0,4.51,4.82,4.9,4.96,5.01,5.0600000000000005,5.1000000000000005,5.13,5.21,109.91,110.18,110.39,110.58,110.75,110.9,111.06,111.21000000000001,111.48,26.73,26.34,26.150000000000002,25.95,25.75,25.560000000000002,25.36,25.17,24.77,N/A,N/A -2012,9,11,9,30,101740,100580,99450,61.93,0,5.48,5.78,5.8100000000000005,5.8100000000000005,5.8,5.78,5.76,5.74,5.69,126.92,126.9,126.9,126.9,126.9,126.9,126.91,126.91,126.91,26.54,26.13,25.94,25.73,25.53,25.34,25.14,24.95,24.560000000000002,N/A,N/A -2012,9,11,10,30,101760,100600,99470,59.78,0,5.57,5.84,5.87,5.87,5.86,5.8500000000000005,5.83,5.8100000000000005,5.7700000000000005,125.37,124.75,124.43,124.13000000000001,123.85000000000001,123.61,123.36,123.14,122.7,26.59,26.18,26,25.79,25.59,25.400000000000002,25.2,25.01,24.62,N/A,N/A -2012,9,11,11,30,101770,100610,99480,58.160000000000004,0,3.99,4.26,4.34,4.4,4.45,4.5,4.54,4.58,4.65,125.81,125.27,125.01,124.78,124.57000000000001,124.4,124.23,124.07000000000001,123.78,26.77,26.38,26.2,26,25.8,25.61,25.41,25.22,24.830000000000002,N/A,N/A -2012,9,11,12,30,101790,100630,99510,62.15,0,4.69,4.96,5.01,5.03,5.05,5.0600000000000005,5.07,5.08,5.09,109.08,109.4,109.60000000000001,109.78,109.94,110.10000000000001,110.25,110.39,110.67,26.78,26.38,26.2,25.990000000000002,25.8,25.61,25.400000000000002,25.22,24.830000000000002,N/A,N/A -2012,9,11,13,30,101790,100630,99500,64.64,0,4.66,4.92,4.96,4.97,4.98,4.99,4.99,4.98,4.97,105.83,105.5,105.31,105.08,104.87,104.67,104.46000000000001,104.26,103.86,26.92,26.54,26.35,26.150000000000002,25.95,25.76,25.560000000000002,25.37,24.98,N/A,N/A -2012,9,11,14,30,101830,100670,99550,66.08,0,4.47,4.76,4.82,4.86,4.89,4.91,4.93,4.94,4.97,85.53,86.79,87.5,88.18,88.78,89.35000000000001,89.9,90.41,91.43,26.98,26.59,26.41,26.21,26.01,25.82,25.62,25.43,25.04,N/A,N/A -2012,9,11,15,30,101840,100680,99560,68.42,0,5.23,5.5200000000000005,5.58,5.59,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,5.6000000000000005,100.73,100.60000000000001,100.65,100.74000000000001,100.84,100.95,101.07000000000001,101.19,101.45,27.080000000000002,26.69,26.51,26.3,26.11,25.91,25.72,25.53,25.14,N/A,N/A -2012,9,11,16,30,101810,100650,99530,71.47,0,5.25,5.6000000000000005,5.67,5.7,5.73,5.74,5.75,5.76,5.7700000000000005,82.46000000000001,82.84,83.11,83.37,83.61,83.84,84.09,84.32000000000001,84.8,27.12,26.740000000000002,26.55,26.35,26.16,25.96,25.76,25.580000000000002,25.19,N/A,N/A -2012,9,11,17,30,101790,100640,99520,72.27,0,5.94,6.38,6.48,6.53,6.57,6.6000000000000005,6.62,6.640000000000001,6.67,90.2,89.76,89.47,89.17,88.89,88.63,88.38,88.14,87.69,27.240000000000002,26.85,26.67,26.46,26.27,26.080000000000002,25.88,25.69,25.310000000000002,N/A,N/A -2012,9,11,18,30,101800,100650,99530,71.87,0,7.58,8.2,8.34,8.43,8.49,8.540000000000001,8.57,8.6,8.64,94.93,94.7,94.63,94.60000000000001,94.60000000000001,94.62,94.66,94.7,94.83,27.38,26.98,26.8,26.59,26.400000000000002,26.2,26,25.810000000000002,25.42,N/A,N/A -2012,9,11,19,30,101770,100620,99500,73.10000000000001,0,8.19,8.870000000000001,9.02,9.08,9.120000000000001,9.14,9.16,9.16,9.16,92.56,93.14,93.46000000000001,93.78,94.07000000000001,94.33,94.60000000000001,94.84,95.31,27.39,26.990000000000002,26.810000000000002,26.6,26.400000000000002,26.21,26.01,25.82,25.43,N/A,N/A -2012,9,11,20,30,101760,100610,99490,75.28,0,7.68,8.32,8.46,8.55,8.61,8.66,8.69,8.71,8.74,100.75,101.17,101.37,101.55,101.71000000000001,101.86,101.99000000000001,102.13,102.36,27.38,26.990000000000002,26.810000000000002,26.6,26.400000000000002,26.2,26.01,25.82,25.43,N/A,N/A -2012,9,11,21,30,101730,100580,99460,76.26,0,8.44,9.200000000000001,9.370000000000001,9.48,9.55,9.6,9.64,9.67,9.71,100.79,101.12,101.32000000000001,101.53,101.71000000000001,101.89,102.07000000000001,102.24000000000001,102.57000000000001,27.46,27.060000000000002,26.88,26.67,26.47,26.28,26.080000000000002,25.89,25.51,N/A,N/A -2012,9,11,22,30,101690,100540,99420,76.08,0,7.47,8.09,8.23,8.31,8.370000000000001,8.41,8.44,8.45,8.48,102.14,102.38,102.51,102.62,102.72,102.81,102.9,102.98,103.13,27.5,27.12,26.93,26.73,26.53,26.34,26.14,25.95,25.57,N/A,N/A -2012,9,11,23,30,101720,100560,99450,75.7,0,8.56,9.32,9.5,9.6,9.67,9.71,9.74,9.77,9.790000000000001,110.28,110.26,110.23,110.19,110.15,110.11,110.07000000000001,110.03,109.94,27.67,27.29,27.11,26.900000000000002,26.71,26.51,26.32,26.13,25.740000000000002,N/A,N/A -2012,9,12,0,30,101670,100510,99400,77.62,0,8.05,8.76,8.91,9.01,9.06,9.11,9.14,9.16,9.19,107.41,107.77,107.97,108.15,108.31,108.45,108.60000000000001,108.74000000000001,109,27.62,27.23,27.05,26.85,26.650000000000002,26.46,26.26,26.07,25.69,N/A,N/A -2012,9,12,1,30,101640,100490,99370,79.37,0,7.7700000000000005,8.45,8.620000000000001,8.71,8.77,8.81,8.84,8.870000000000001,8.9,109.49000000000001,109.43,109.35000000000001,109.26,109.18,109.09,109.01,108.92,108.75,27.73,27.35,27.17,26.96,26.77,26.580000000000002,26.38,26.19,25.8,N/A,N/A -2012,9,12,2,30,101650,100500,99390,80.28,0,8.25,8.96,9.13,9.21,9.26,9.290000000000001,9.31,9.32,9.32,106.99000000000001,107.44,107.73,107.99000000000001,108.22,108.45,108.67,108.88,109.29,27.78,27.400000000000002,27.22,27.02,26.82,26.63,26.44,26.25,25.87,N/A,N/A -2012,9,12,3,30,101660,100510,99400,78.19,0,8.370000000000001,9.13,9.31,9.41,9.47,9.52,9.56,9.58,9.61,112.53,112.49000000000001,112.49000000000001,112.5,112.53,112.54,112.56,112.59,112.65,27.89,27.52,27.34,27.14,26.94,26.75,26.560000000000002,26.37,25.98,N/A,N/A -2012,9,12,4,30,101610,100460,99350,79.88,0,8.040000000000001,8.8,8.98,9.09,9.16,9.22,9.26,9.290000000000001,9.34,117.13,117.31,117.36,117.4,117.42,117.44,117.45,117.46000000000001,117.47,27.98,27.61,27.43,27.23,27.04,26.85,26.650000000000002,26.46,26.080000000000002,N/A,N/A -2012,9,12,5,30,101620,100470,99350,82.60000000000001,0,6.99,7.58,7.72,7.79,7.84,7.87,7.9,7.91,7.930000000000001,132.26,132.4,132.46,132.51,132.57,132.63,132.69,132.75,132.88,27.900000000000002,27.53,27.36,27.150000000000002,26.96,26.77,26.57,26.38,26,N/A,N/A -2012,9,12,6,30,101610,100460,99350,84.77,0,6.3500000000000005,6.82,6.91,6.96,6.98,6.99,6.99,6.99,6.99,136.21,136.70000000000002,136.97,137.23,137.48,137.72,137.97,138.20000000000002,138.67000000000002,27.89,27.54,27.37,27.17,26.98,26.79,26.59,26.41,26.03,N/A,N/A -2012,9,12,7,30,101650,100500,99380,85.2,0,4.39,4.7,4.79,4.86,4.91,4.97,5.0200000000000005,5.07,5.18,159.37,161.34,162.15,162.86,163.49,164.07,164.62,165.13,166.12,27.6,27.26,27.09,26.900000000000002,26.72,26.54,26.35,26.18,25.82,N/A,N/A -2012,9,12,8,30,101640,100490,99380,81.93,0,6.23,6.7700000000000005,6.9,6.98,7.03,7.07,7.09,7.11,7.15,180.54,180.97,181.22,181.47,181.69,181.9,182.1,182.29,182.67000000000002,28.11,27.77,27.6,27.400000000000002,27.21,27.02,26.830000000000002,26.64,26.26,N/A,N/A -2012,9,12,9,30,101610,100470,99350,82.13,0,5.37,5.83,5.93,6,6.0600000000000005,6.11,6.15,6.2,6.28,188.61,189.21,189.4,189.53,189.63,189.71,189.79,189.86,190,28.17,27.85,27.69,27.5,27.32,27.14,26.96,26.78,26.42,N/A,N/A -2012,9,12,10,30,101660,100510,99400,81.9,0,6.2,6.78,6.93,7.01,7.07,7.12,7.15,7.18,7.21,184.87,184.89000000000001,184.93,184.97,184.99,185.02,185.04,185.05,185.09,28.27,27.95,27.79,27.580000000000002,27.400000000000002,27.21,27.01,26.82,26.44,N/A,N/A -2012,9,12,11,30,101650,100510,99390,79.91,0,6.86,7.5,7.65,7.73,7.79,7.83,7.86,7.88,7.9,190.46,190.78,190.88,190.92000000000002,190.94,190.93,190.9,190.87,190.78,28.26,27.94,27.77,27.57,27.38,27.19,27,26.810000000000002,26.43,N/A,N/A -2012,9,12,12,30,101680,100530,99420,83.73,0,6.08,6.59,6.7,6.7700000000000005,6.8100000000000005,6.8500000000000005,6.87,6.88,6.91,194.63,194.6,194.66,194.70000000000002,194.74,194.78,194.81,194.84,194.91,28.150000000000002,27.82,27.650000000000002,27.45,27.26,27.07,26.88,26.69,26.310000000000002,N/A,N/A -2012,9,12,13,30,101640,100480,99370,86.27,0,9.61,10.39,10.43,10.38,10.290000000000001,10.18,10.040000000000001,9.91,9.61,244.51,244.06,243.31,242.43,241.47,240.53,239.44,238.43,236.17000000000002,27.16,26.79,26.64,26.490000000000002,26.34,26.2,26.05,25.91,25.6,N/A,N/A -2012,9,12,14,30,101730,100580,99460,81.72,8.8,4.66,5.19,5.4,5.58,5.72,5.8500000000000005,5.97,6.08,6.3,214.29,214.57,214.86,215.25,215.61,216.01,216.44,216.86,217.77,27.85,27.53,27.37,27.18,27,26.82,26.64,26.47,26.11,N/A,N/A -2012,9,12,15,30,101800,100650,99540,79.44,0,6.16,6.71,6.83,6.9,6.94,6.97,6.99,7,7,216.9,216.79,216.69,216.6,216.53,216.46,216.4,216.34,216.23000000000002,28.44,28.13,27.96,27.77,27.580000000000002,27.39,27.19,27.01,26.63,N/A,N/A -2012,9,12,16,30,101790,100620,99490,91.81,0.4,11.08,12.030000000000001,12.17,12.23,12.25,12.25,12.23,12.200000000000001,12.040000000000001,98.11,98.56,98.84,99.10000000000001,99.37,99.63,99.94,100.23,101.09,24.900000000000002,24.34,24.12,23.92,23.72,23.54,23.36,23.19,22.87,N/A,N/A -2012,9,12,17,30,101860,100690,99560,93.15,47.6,12.99,14.22,14.46,14.58,14.65,14.69,14.71,14.72,14.71,85.97,86.09,86.23,86.36,86.46000000000001,86.55,86.64,86.71000000000001,86.85000000000001,24.38,23.77,23.54,23.34,23.14,22.96,22.78,22.61,22.28,N/A,N/A -2012,9,12,18,30,101860,100700,99580,81.32000000000001,0,10.19,10.86,10.93,10.88,10.81,10.72,10.63,10.55,10.540000000000001,81.47,81.86,82.15,82.58,83.18,83.96000000000001,85.84,88.06,97.35000000000001,26.28,25.86,25.7,25.55,25.42,25.32,25.34,25.400000000000002,26.01,N/A,N/A -2012,9,12,19,30,101810,100650,99530,73.88,0,4.65,4.93,4.99,5.0200000000000005,5.04,5.0600000000000005,5.15,5.26,6.19,121.79,122.4,122.63,122.91,123.11,123.25,123.83,124.58,129.27,27.23,26.87,26.71,26.52,26.34,26.16,26.03,25.91,26.34,N/A,N/A -2012,9,12,20,30,101730,100570,99460,77.9,0.7000000000000001,4.14,4.4,4.49,4.64,4.93,5.34,5.59,5.76,5.5600000000000005,197.1,196.3,195.55,194.49,193.4,192.22,192.77,193.87,198.4,26.91,26.59,26.47,26.37,26.41,26.53,26.62,26.69,26.34,N/A,N/A -2012,9,12,21,30,101770,100620,99510,79.8,0,4.79,5.03,5.03,5.01,4.98,4.94,4.9,4.86,4.7700000000000005,275.84000000000003,274.27,273.14,271.94,270.83,269.73,268.62,267.57,265.35,27.62,27.28,27.11,26.92,26.740000000000002,26.560000000000002,26.37,26.19,25.830000000000002,N/A,N/A -2012,9,12,22,30,101660,100500,99380,79.69,0,1.6400000000000001,1.83,1.8800000000000001,1.94,1.99,2.04,2.09,2.14,2.24,93.82000000000001,94.69,95.3,95.9,96.46000000000001,97.01,97.62,98.22,99.58,26.82,26.46,26.29,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.95,N/A,N/A -2012,9,12,23,30,101640,100490,99380,75.34,0,6.43,6.97,7.09,7.16,7.2,7.23,7.25,7.26,7.28,110.82000000000001,110.87,110.88,110.9,110.92,110.94,110.96000000000001,110.97,111,28.26,27.93,27.76,27.57,27.38,27.19,26.990000000000002,26.810000000000002,26.43,N/A,N/A -2012,9,13,0,30,101640,100490,99370,88.04,0,7.6000000000000005,8.17,8.27,8.31,8.32,8.32,8.31,8.290000000000001,8.24,127.52,127.79,127.93,128.11,128.28,128.46,128.65,128.84,129.26,27.240000000000002,26.84,26.66,26.45,26.26,26.07,25.87,25.69,25.310000000000002,N/A,N/A -2012,9,13,1,30,101620,100470,99350,83.95,0,7.04,7.61,7.73,7.79,7.83,7.8500000000000005,7.86,7.87,7.87,133.02,133.28,133.42000000000002,133.55,133.69,133.81,133.95,134.09,134.38,27.580000000000002,27.21,27.03,26.830000000000002,26.63,26.45,26.25,26.060000000000002,25.69,N/A,N/A -2012,9,13,2,30,101660,100510,99400,83.57000000000001,0,7.94,8.66,8.83,8.92,8.98,9.02,9.05,9.07,9.09,137.1,137.18,137.23,137.29,137.35,137.4,137.47,137.53,137.67000000000002,27.89,27.54,27.36,27.16,26.97,26.78,26.59,26.400000000000002,26.02,N/A,N/A -2012,9,13,3,30,101710,100560,99440,84.99,0,8.26,8.98,9.15,9.22,9.27,9.290000000000001,9.3,9.3,9.290000000000001,138.98,139.13,139.22,139.31,139.39000000000001,139.48,139.56,139.65,139.82,27.78,27.41,27.240000000000002,27.03,26.84,26.650000000000002,26.46,26.27,25.89,N/A,N/A -2012,9,13,4,30,101710,100560,99440,86.02,0,9.67,10.6,10.8,10.9,10.97,11,11.01,11.02,10.99,142.69,142.72,142.78,142.87,142.96,143.07,143.18,143.29,143.51,27.740000000000002,27.36,27.18,26.97,26.78,26.580000000000002,26.38,26.19,25.8,N/A,N/A -2012,9,13,5,30,101710,100550,99440,84.55,0,8.59,9.36,9.53,9.620000000000001,9.67,9.71,9.73,9.74,9.75,141.94,141.91,141.92000000000002,141.93,141.94,141.95000000000002,141.96,141.98,142.02,27.63,27.25,27.07,26.87,26.68,26.490000000000002,26.29,26.1,25.72,N/A,N/A -2012,9,13,6,30,101740,100590,99470,84.69,0,7.640000000000001,8.32,8.47,8.55,8.61,8.65,8.67,8.69,8.700000000000001,138.54,138.68,138.76,138.84,138.92000000000002,138.99,139.07,139.14000000000001,139.28,27.68,27.310000000000002,27.13,26.92,26.73,26.54,26.34,26.16,25.77,N/A,N/A -2012,9,13,7,30,101760,100610,99490,83.52,0,7.37,7.98,8.120000000000001,8.19,8.23,8.26,8.28,8.290000000000001,8.3,141.05,141.48,141.72,141.96,142.19,142.43,142.67000000000002,142.9,143.39000000000001,27.68,27.32,27.14,26.94,26.740000000000002,26.560000000000002,26.36,26.17,25.8,N/A,N/A -2012,9,13,8,30,101760,100610,99500,84.68,0,6.49,7,7.11,7.17,7.2,7.22,7.24,7.25,7.25,135.22,135.42000000000002,135.55,135.68,135.8,135.91,136.03,136.15,136.39000000000001,27.6,27.240000000000002,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A -2012,9,13,9,30,101780,100630,99520,84.34,0,6.88,7.43,7.5600000000000005,7.62,7.66,7.68,7.7,7.71,7.71,135.13,135.27,135.36,135.44,135.52,135.6,135.67000000000002,135.74,135.89000000000001,27.650000000000002,27.28,27.11,26.900000000000002,26.71,26.52,26.32,26.14,25.75,N/A,N/A -2012,9,13,10,30,101800,100650,99530,85.25,0,6.67,7.25,7.4,7.5,7.57,7.63,7.68,7.72,7.8,136.1,136.31,136.45,136.6,136.73,136.86,136.99,137.12,137.36,27.650000000000002,27.29,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.77,N/A,N/A -2012,9,13,11,30,101820,100670,99550,81.88,0,7.04,7.61,7.73,7.7700000000000005,7.8,7.8100000000000005,7.8100000000000005,7.8,7.7700000000000005,136.54,136.85,137.01,137.17000000000002,137.31,137.44,137.58,137.70000000000002,137.97,27.810000000000002,27.46,27.28,27.080000000000002,26.89,26.7,26.5,26.32,25.94,N/A,N/A -2012,9,13,12,30,101820,100670,99550,82.63,0,6.28,6.7700000000000005,6.88,6.94,6.98,7,7.03,7.04,7.07,127.07000000000001,127.23,127.3,127.39,127.48,127.57000000000001,127.66,127.75,127.95,27.73,27.38,27.2,27,26.810000000000002,26.62,26.43,26.240000000000002,25.86,N/A,N/A -2012,9,13,13,30,101860,100710,99590,80.5,0,6.49,7.0200000000000005,7.13,7.19,7.23,7.25,7.2700000000000005,7.2700000000000005,7.28,124,124.17,124.26,124.35000000000001,124.43,124.5,124.57000000000001,124.64,124.78,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A -2012,9,13,14,30,101880,100720,99610,81.5,0,5.96,6.43,6.5200000000000005,6.58,6.61,6.640000000000001,6.66,6.67,6.69,122.9,123.19,123.29,123.39,123.48,123.56,123.64,123.72,123.88000000000001,27.810000000000002,27.46,27.29,27.09,26.900000000000002,26.71,26.52,26.330000000000002,25.95,N/A,N/A -2012,9,13,15,30,101870,100720,99610,80.72,0,5.88,6.34,6.44,6.49,6.53,6.55,6.5600000000000005,6.58,6.58,119.71000000000001,119.94,120.06,120.18,120.29,120.39,120.49000000000001,120.58,120.77,27.91,27.57,27.39,27.19,27,26.810000000000002,26.62,26.43,26.05,N/A,N/A -2012,9,13,16,30,101900,100740,99630,81.04,0,4.63,4.95,5.0200000000000005,5.05,5.08,5.09,5.1000000000000005,5.1000000000000005,5.1000000000000005,129.32,129.26,129.26,129.25,129.23,129.2,129.16,129.13,129.05,27.96,27.62,27.45,27.25,27.060000000000002,26.87,26.67,26.490000000000002,26.11,N/A,N/A -2012,9,13,17,30,101910,100760,99650,79.38,0,3.68,3.92,3.97,3.99,4.01,4.03,4.03,4.04,4.04,167.83,167.26,167.01,166.85,166.73,166.63,166.57,166.52,166.45000000000002,28.080000000000002,27.75,27.57,27.37,27.18,26.990000000000002,26.8,26.61,26.23,N/A,N/A -2012,9,13,18,30,101930,100760,99630,91.65,123.4,9.3,9.94,10.02,9.97,9.88,9.75,9.540000000000001,9.34,8.61,270.88,271.02,271.04,271.1,271.21,271.34000000000003,271.57,271.8,272.69,24.95,24.43,24.240000000000002,24.05,23.87,23.71,23.55,23.400000000000002,23.16,N/A,N/A -2012,9,13,19,30,101910,100740,99600,88.74,79.80000000000001,3.12,3.15,3.13,3.11,2.98,2.81,2.49,2.2,2.45,243.42000000000002,241.86,240.9,239.95000000000002,237.13,233.70000000000002,221.49,209.98000000000002,166.39000000000001,24.34,23.91,23.72,23.54,23.36,23.2,23.080000000000002,22.98,23.18,N/A,N/A -2012,9,13,20,30,101870,100710,99580,79.53,0,1.17,1.25,1.28,1.33,1.43,1.56,1.85,2.24,2.8000000000000003,188.94,189.27,189.17000000000002,188.88,187.93,186.36,184.09,181.35,180.46,25.76,25.400000000000002,25.240000000000002,25.080000000000002,24.96,24.87,24.91,24.98,25.09,N/A,N/A -2012,9,13,21,30,101870,100710,99590,79.84,0,3.7600000000000002,3.89,3.89,3.88,3.86,3.85,3.85,3.86,4.09,178.19,178.59,178.76,178.99,179.3,179.66,180.32,181.06,183.89000000000001,26.48,26.1,25.94,25.75,25.580000000000002,25.41,25.27,25.14,25.09,N/A,N/A -2012,9,13,22,30,101830,100670,99550,79.86,0,1.61,1.6500000000000001,1.6600000000000001,1.6500000000000001,1.6500000000000001,1.6500000000000001,1.6600000000000001,1.67,1.77,160.59,160.91,161.14000000000001,161.44,161.82,162.26,163.01,163.81,165.93,26.53,26.17,25.990000000000002,25.8,25.62,25.44,25.27,25.12,24.95,N/A,N/A -2012,9,13,23,30,101840,100690,99570,78.37,0,0.9500000000000001,0.9400000000000001,0.92,0.91,0.89,0.88,0.86,0.85,0.8300000000000001,153.41,151.43,150.08,148.47,146.84,145.14000000000001,143,140.88,134.91,26.8,26.45,26.27,26.07,25.88,25.7,25.51,25.32,24.95,N/A,N/A -2012,9,14,0,30,101830,100670,99550,76.65,0,1.83,1.96,1.99,2.0300000000000002,2.05,2.08,2.11,2.14,2.2,48.03,48.96,49.36,49.76,50.14,50.52,50.910000000000004,51.300000000000004,52.160000000000004,27.07,26.72,26.55,26.35,26.16,25.97,25.78,25.6,25.22,N/A,N/A -2012,9,14,1,30,101830,100680,99560,74.17,0,3.46,3.66,3.69,3.71,3.73,3.74,3.75,3.77,3.8200000000000003,65.12,64.9,64.76,64.62,64.51,64.41,64.33,64.25,64.2,27.37,27.02,26.84,26.64,26.45,26.26,26.07,25.88,25.5,N/A,N/A -2012,9,14,2,30,101850,100690,99580,83.23,0,4.66,4.95,5.01,5.03,5.05,5.0600000000000005,5.07,5.07,5.08,63.68,63.95,64.11,64.3,64.49,64.69,64.91,65.12,65.66,27.29,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,14,3,30,101860,100710,99590,80.67,0,3.84,4.14,4.23,4.29,4.34,4.39,4.43,4.48,4.57,92.16,91.96000000000001,91.8,91.58,91.37,91.12,90.86,90.60000000000001,89.97,27.69,27.36,27.19,26.990000000000002,26.810000000000002,26.63,26.44,26.26,25.89,N/A,N/A -2012,9,14,4,30,101860,100710,99590,79.93,0,6.34,6.82,6.92,6.96,6.99,7,7.01,7.01,7.01,99.9,100.25,100.39,100.52,100.63,100.74000000000001,100.84,100.93,101.10000000000001,27.900000000000002,27.55,27.38,27.18,26.990000000000002,26.8,26.61,26.42,26.04,N/A,N/A -2012,9,14,5,30,101850,100690,99580,81.56,0,5.59,6,6.08,6.12,6.13,6.15,6.15,6.15,6.140000000000001,109.08,109.22,109.33,109.46000000000001,109.58,109.7,109.83,109.95,110.2,27.830000000000002,27.48,27.310000000000002,27.11,26.93,26.740000000000002,26.55,26.37,25.990000000000002,N/A,N/A -2012,9,14,6,30,101900,100750,99630,84.49,71,6.32,6.78,6.92,7,7.07,7.12,7.18,7.24,7.36,121.08,119.74000000000001,119.03,118.34,117.73,117.13,116.52,115.94,114.76,27.16,26.810000000000002,26.650000000000002,26.46,26.3,26.13,25.97,25.810000000000002,25.5,N/A,N/A -2012,9,14,7,30,101870,100710,99600,78.68,1.1,7.04,7.61,7.72,7.76,7.8,7.82,7.83,7.83,7.84,107.28,107.43,107.47,107.53,107.58,107.64,107.7,107.76,107.89,27.900000000000002,27.54,27.37,27.17,26.98,26.79,26.6,26.41,26.03,N/A,N/A -2012,9,14,8,30,101930,100780,99660,75.69,0,5.4,5.8,5.89,5.94,5.97,5.99,6,6.01,6.0200000000000005,95,95.18,95.19,95.19,95.19,95.18,95.16,95.14,95.09,27.97,27.63,27.45,27.25,27.060000000000002,26.87,26.68,26.490000000000002,26.11,N/A,N/A -2012,9,14,9,30,101940,100790,99670,73.11,0,2.82,2.98,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.0700000000000003,3.08,3.09,97.98,98.06,98.11,98.15,98.2,98.26,98.31,98.36,98.46000000000001,27.91,27.580000000000002,27.400000000000002,27.21,27.02,26.82,26.63,26.44,26.060000000000002,N/A,N/A -2012,9,14,10,30,101910,100760,99640,75.84,0,3.21,3.4,3.43,3.45,3.45,3.45,3.45,3.45,3.44,104.38,104.69,104.83,104.96000000000001,105.08,105.2,105.31,105.43,105.64,27.76,27.42,27.25,27.05,26.85,26.67,26.47,26.28,25.89,N/A,N/A -2012,9,14,11,30,101880,100720,99610,75.34,0,3.48,3.67,3.7,3.71,3.72,3.72,3.72,3.71,3.71,91.71000000000001,91.79,91.95,92.08,92.21000000000001,92.32000000000001,92.44,92.55,92.75,27.72,27.38,27.21,27,26.810000000000002,26.62,26.43,26.240000000000002,25.86,N/A,N/A -2012,9,14,12,30,101900,100740,99620,83.27,0,8.57,9.120000000000001,9.13,9.06,8.97,8.85,8.700000000000001,8.56,8.19,85.97,85.99,86.08,86.2,86.33,86.49,86.7,86.9,87.5,26.330000000000002,25.88,25.7,25.51,25.32,25.150000000000002,24.97,24.8,24.47,N/A,N/A -2012,9,14,13,30,101920,100760,99630,77.10000000000001,0,5.4,5.65,5.67,5.65,5.62,5.57,5.51,5.45,5.37,46.83,47.42,47.75,48.120000000000005,48.57,49.07,50.04,51.04,58.95,25.75,25.330000000000002,25.16,24.98,24.82,24.67,24.54,24.43,24.490000000000002,N/A,N/A -2012,9,14,14,30,101980,100820,99690,74.01,0,3.29,3.47,3.5100000000000002,3.5300000000000002,3.54,3.5500000000000003,3.56,3.5700000000000003,3.61,73.65,74.5,74.94,75.48,76.08,76.72,77.63,78.58,81.99,26.89,26.51,26.34,26.13,25.94,25.75,25.560000000000002,25.37,24.990000000000002,N/A,N/A -2012,9,14,15,30,101990,100830,99710,79.83,5.5,7.12,7.54,7.54,7.48,7.390000000000001,7.3,7.18,7.07,6.8100000000000005,105.58,105.2,105.04,104.82000000000001,104.59,104.33,104,103.68,102.81,26.36,25.94,25.77,25.57,25.39,25.21,25.03,24.86,24.52,N/A,N/A -2012,9,14,16,30,102020,100850,99720,79.43,8.8,4.28,4.4,4.38,4.32,4.25,4.18,4.07,3.96,3.63,109.15,108.46000000000001,108.27,108.02,107.69,107.32000000000001,106.79,106.28,105.5,24.8,24.37,24.2,24.03,23.86,23.71,23.57,23.45,23.330000000000002,N/A,N/A -2012,9,14,17,30,102020,100850,99720,84.04,0,6.48,6.8,6.82,6.8,6.76,6.71,6.65,6.59,6.46,92.13,92.3,92.46000000000001,92.64,92.84,93.03,93.29,93.54,94.24,24.69,24.21,24.02,23.82,23.64,23.47,23.29,23.13,22.82,N/A,N/A -2012,9,14,18,30,101980,100810,99680,77.09,0,6.0200000000000005,6.38,6.44,6.46,6.48,6.49,6.49,6.49,6.22,93.55,93.62,93.72,93.87,94.12,94.42,95.10000000000001,95.82000000000001,99.7,25.64,25.240000000000002,25.09,24.93,24.810000000000002,24.7,24.64,24.59,24.69,N/A,N/A -2012,9,14,19,30,101960,100800,99680,61.17,0,4.22,4.5200000000000005,4.59,4.66,4.76,4.87,5.0600000000000005,5.2700000000000005,5.5200000000000005,104.88,104.52,104.31,104.05,103.69,103.27,102.57000000000001,101.81,100.35000000000001,27.63,27.32,27.18,27.02,26.88,26.76,26.7,26.650000000000002,26.46,N/A,N/A -2012,9,14,20,30,101890,100730,99610,79.14,0,4.97,5.25,5.3,5.3100000000000005,5.32,5.32,5.33,5.33,5.36,80.02,80.16,80.22,80.29,80.36,80.44,80.55,80.66,80.99,27.19,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.88,25.7,25.34,N/A,N/A -2012,9,14,21,30,101890,100740,99620,83.49,0,3.99,4.22,4.26,4.28,4.3,4.32,4.33,4.34,4.37,61.9,62.32,62.550000000000004,62.78,63.01,63.24,63.5,63.74,64.38,27.080000000000002,26.7,26.52,26.32,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A -2012,9,14,22,30,101880,100720,99610,84.8,0,4.19,4.5,4.59,4.66,4.72,4.76,4.8100000000000005,4.8500000000000005,4.93,70.59,71.73,72.38,73.02,73.59,74.14,74.69,75.2,76.26,27.22,26.85,26.68,26.48,26.29,26.1,25.91,25.73,25.35,N/A,N/A -2012,9,14,23,30,101880,100720,99610,80.09,0,4.15,4.39,4.43,4.45,4.46,4.46,4.46,4.46,4.45,88.52,88.77,88.88,88.98,89.07000000000001,89.16,89.24,89.32000000000001,89.49,27.5,27.150000000000002,26.97,26.77,26.580000000000002,26.39,26.2,26.01,25.63,N/A,N/A -2012,9,15,0,30,101870,100710,99590,79.92,0,4.3,4.53,4.5600000000000005,4.57,4.5600000000000005,4.5600000000000005,4.54,4.54,4.51,88.65,88.59,88.51,88.44,88.36,88.28,88.18,88.09,87.88,27.47,27.11,26.93,26.740000000000002,26.54,26.35,26.16,25.97,25.59,N/A,N/A -2012,9,15,1,30,101880,100720,99600,77.5,0,3.5700000000000003,3.7800000000000002,3.81,3.83,3.85,3.85,3.86,3.86,3.87,99.45,99.02,98.76,98.5,98.25,98.01,97.76,97.53,97.06,27.54,27.19,27.01,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.67,N/A,N/A -2012,9,15,2,30,101920,100760,99640,72.53,0,2.73,2.91,2.95,2.98,3,3.02,3.04,3.06,3.09,110.4,110.42,110.44,110.43,110.43,110.43,110.43,110.42,110.4,27.75,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.900000000000002,N/A,N/A -2012,9,15,3,30,101920,100770,99650,66.95,0,1.87,1.99,2.02,2.05,2.07,2.09,2.11,2.14,2.18,64.76,66.47,67.55,68.63,69.60000000000001,70.51,71.44,72.32000000000001,74.04,27.97,27.650000000000002,27.490000000000002,27.3,27.11,26.92,26.740000000000002,26.55,26.18,N/A,N/A -2012,9,15,4,30,101940,100780,99660,69.58,0,3.0300000000000002,3.1,3.06,3.02,2.97,2.93,2.88,2.84,2.77,28.29,30.080000000000002,31.35,32.69,33.93,35.13,36.35,37.5,39.84,27.79,27.47,27.310000000000002,27.12,26.94,26.76,26.57,26.39,26.02,N/A,N/A -2012,9,15,5,30,101940,100780,99660,85.04,0,5.61,5.88,5.9,5.87,5.83,5.79,5.73,5.66,5.51,21.400000000000002,21.88,22.13,22.41,22.71,23.01,23.37,23.73,24.68,26.52,26.11,25.92,25.73,25.53,25.35,25.16,24.98,24.61,N/A,N/A -2012,9,15,6,30,101950,100790,99660,85.32000000000001,0,6.23,6.57,6.61,6.59,6.5600000000000005,6.5200000000000005,6.47,6.42,6.29,21.13,21.41,21.580000000000002,21.77,21.95,22.13,22.34,22.55,23.07,26.28,25.86,25.67,25.47,25.27,25.09,24.900000000000002,24.71,24.34,N/A,N/A -2012,9,15,7,30,101960,100800,99680,80.54,0,6.19,6.55,6.6000000000000005,6.6000000000000005,6.59,6.57,6.53,6.5,6.41,25.92,26.19,26.37,26.57,26.76,26.96,27.18,27.400000000000002,27.94,26.27,25.84,25.650000000000002,25.45,25.26,25.07,24.87,24.69,24.32,N/A,N/A -2012,9,15,8,30,101940,100780,99650,78.39,0,6.18,6.53,6.57,6.57,6.55,6.5200000000000005,6.48,6.44,6.33,21.64,21.84,21.98,22.14,22.29,22.45,22.62,22.79,23.23,26.32,25.91,25.72,25.51,25.330000000000002,25.14,24.94,24.76,24.39,N/A,N/A -2012,9,15,9,30,101950,100780,99660,82.37,0,6.51,6.87,6.91,6.9,6.88,6.84,6.79,6.75,6.63,25.66,25.98,26.17,26.38,26.59,26.810000000000002,27.080000000000002,27.34,28.080000000000002,26.04,25.61,25.42,25.23,25.04,24.86,24.68,24.5,24.16,N/A,N/A -2012,9,15,10,30,101980,100810,99690,80.56,0,4.45,4.68,4.74,4.7700000000000005,4.79,4.8100000000000005,4.83,4.8500000000000005,4.89,71.75,70.58,69.97,69.39,68.92,68.53,68.27,68.07000000000001,68.06,26.03,25.62,25.44,25.240000000000002,25.05,24.87,24.68,24.5,24.14,N/A,N/A -2012,9,15,11,30,101950,100790,99660,75.32000000000001,0,2.47,2.5,2.48,2.45,2.43,2.41,2.4,2.38,2.35,34.03,32.660000000000004,31.92,31.09,30.28,29.48,28.61,27.8,26.03,26.19,25.810000000000002,25.63,25.44,25.25,25.07,24.88,24.7,24.330000000000002,N/A,N/A -2012,9,15,12,30,101950,100790,99660,86.72,0,5.23,5.42,5.4,5.36,5.3100000000000005,5.25,5.19,5.14,5.01,19.36,20.580000000000002,21.34,22.12,22.85,23.57,24.330000000000002,25.04,26.6,25.86,25.44,25.25,25.04,24.85,24.66,24.47,24.29,23.91,N/A,N/A -2012,9,15,13,30,101970,100810,99680,88.08,0,4.6000000000000005,4.76,4.75,4.71,4.66,4.61,4.54,4.48,4.32,17.59,18.07,18.330000000000002,18.61,18.89,19.19,19.53,19.86,20.79,25.400000000000002,24.97,24.78,24.57,24.38,24.2,24,23.82,23.45,N/A,N/A -2012,9,15,14,30,101970,100810,99680,87.18,0,4.78,4.98,4.98,4.96,4.93,4.9,4.8500000000000005,4.8,4.68,13.32,13.51,13.63,13.77,13.89,14.02,14.17,14.31,14.68,25.37,24.93,24.740000000000002,24.54,24.34,24.16,23.96,23.78,23.42,N/A,N/A -2012,9,15,15,30,101980,100820,99690,85.85000000000001,0,4.46,4.66,4.67,4.66,4.64,4.62,4.59,4.5600000000000005,4.49,17.91,18.26,18.46,18.68,18.89,19.09,19.330000000000002,19.56,20.14,25.47,25.04,24.85,24.650000000000002,24.46,24.27,24.080000000000002,23.900000000000002,23.53,N/A,N/A -2012,9,15,16,30,101950,100790,99660,83.93,0,3.7,3.87,3.89,3.89,3.88,3.88,3.86,3.85,3.8200000000000003,17.78,18.09,18.3,18.51,18.71,18.900000000000002,19.11,19.31,19.77,25.91,25.5,25.32,25.12,24.93,24.740000000000002,24.54,24.36,23.990000000000002,N/A,N/A -2012,9,15,17,30,101930,100770,99650,81.39,0,3.22,3.37,3.38,3.39,3.39,3.39,3.39,3.39,3.38,25.18,25.17,25.21,25.25,25.29,25.32,25.36,25.41,25.46,26.37,25.97,25.79,25.59,25.400000000000002,25.21,25.01,24.830000000000002,24.46,N/A,N/A -2012,9,15,18,30,101930,100770,99650,77.98,0,1.6,1.6600000000000001,1.67,1.68,1.69,1.69,1.7,1.71,1.75,42.74,41.88,41.43,40.94,40.46,39.96,39.39,38.83,37.42,26.810000000000002,26.45,26.27,26.07,25.88,25.7,25.51,25.330000000000002,24.98,N/A,N/A -2012,9,15,19,30,101890,100730,99610,76.47,0,0.93,0.97,0.97,0.97,0.97,0.98,0.98,0.99,1,61.480000000000004,60.76,60.26,59.72,59.21,58.69,58.11,57.550000000000004,56.160000000000004,27.13,26.76,26.59,26.39,26.2,26.02,25.82,25.650000000000002,25.28,N/A,N/A -2012,9,15,20,30,101850,100700,99580,75.36,0,0.75,0.78,0.79,0.8,0.81,0.81,0.8200000000000001,0.8300000000000001,0.86,46.94,45.94,45.410000000000004,44.83,44.22,43.59,42.88,42.19,40.29,27.36,27,26.82,26.63,26.44,26.25,26.060000000000002,25.88,25.52,N/A,N/A -2012,9,15,21,30,101840,100680,99570,72.75,0,2.02,2.13,2.15,2.18,2.19,2.22,2.23,2.2600000000000002,2.31,57.56,55.72,54.7,53.61,52.58,51.54,50.43,49.35,46.85,27.68,27.32,27.150000000000002,26.96,26.77,26.580000000000002,26.39,26.21,25.84,N/A,N/A -2012,9,15,22,30,101790,100630,99510,76.29,0,1.45,1.46,1.43,1.41,1.3800000000000001,1.36,1.33,1.31,1.26,34.57,35.07,35.36,35.660000000000004,35.94,36.21,36.49,36.74,37.22,27.46,27.12,26.95,26.75,26.57,26.38,26.2,26.02,25.650000000000002,N/A,N/A -2012,9,15,23,30,101780,100630,99510,75.55,0,3.2,3.27,3.23,3.18,3.13,3.0700000000000003,3.0100000000000002,2.95,2.8000000000000003,17.28,17.84,18.12,18.44,18.75,19.07,19.45,19.81,20.75,27.34,26.990000000000002,26.810000000000002,26.62,26.43,26.240000000000002,26.05,25.87,25.5,N/A,N/A -2012,9,16,0,30,101730,100570,99460,72.64,0,1.54,1.6,1.6,1.59,1.58,1.58,1.57,1.57,1.56,36.62,36.5,36.34,36.17,35.95,35.67,35.32,34.95,33.54,27.48,27.150000000000002,26.98,26.79,26.6,26.42,26.240000000000002,26.060000000000002,25.72,N/A,N/A -2012,9,16,1,30,101740,100590,99470,70.69,0,1.32,1.36,1.36,1.36,1.35,1.35,1.35,1.35,1.35,72.68,71.75,71.12,70.39,69.63,68.83,67.77,66.67,62.99,27.67,27.35,27.18,26.990000000000002,26.810000000000002,26.63,26.44,26.27,25.94,N/A,N/A -2012,9,16,2,30,101750,100600,99480,68.52,0,1.03,1.09,1.1,1.11,1.12,1.1400000000000001,1.1500000000000001,1.17,1.24,44.94,43.38,42.32,41.24,40.17,39.04,37.74,36.43,32.89,27.87,27.560000000000002,27.39,27.2,27.02,26.830000000000002,26.650000000000002,26.47,26.13,N/A,N/A -2012,9,16,3,30,101750,100600,99490,66.21000000000001,0,2.2,2.35,2.38,2.4,2.43,2.44,2.46,2.47,2.49,9.82,9.61,9.540000000000001,9.48,9.42,9.370000000000001,9.32,9.27,9.18,28.150000000000002,27.84,27.67,27.47,27.29,27.1,26.900000000000002,26.72,26.34,N/A,N/A -2012,9,16,4,30,101730,100580,99460,72.65,0,3.96,4.14,4.14,4.13,4.11,4.09,4.0600000000000005,4.03,3.97,13.18,13.52,13.73,13.94,14.13,14.32,14.5,14.68,15.05,27.57,27.23,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A -2012,9,16,5,30,101710,100560,99440,72.99,0,3.69,3.8200000000000003,3.8200000000000003,3.79,3.77,3.74,3.7,3.66,3.58,28.92,29.560000000000002,29.96,30.36,30.740000000000002,31.13,31.53,31.92,32.8,27.26,26.91,26.740000000000002,26.53,26.34,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,16,6,30,101700,100550,99430,75.64,0,3.14,3.24,3.23,3.21,3.18,3.15,3.12,3.09,3.02,31.53,32.17,32.52,32.87,33.2,33.53,33.88,34.21,34.97,27.150000000000002,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.68,25.3,N/A,N/A -2012,9,16,7,30,101710,100560,99440,73.37,0,2.27,2.38,2.4,2.42,2.43,2.44,2.44,2.45,2.46,33.92,34.93,35.46,36,36.480000000000004,36.95,37.44,37.9,38.95,27.32,26.98,26.810000000000002,26.61,26.42,26.240000000000002,26.04,25.86,25.48,N/A,N/A -2012,9,16,8,30,101690,100540,99420,75.94,0,3.2600000000000002,3.37,3.36,3.34,3.31,3.2800000000000002,3.25,3.22,3.15,43.26,44.480000000000004,45.21,45.95,46.64,47.33,48.03,48.71,50.2,27.21,26.87,26.7,26.490000000000002,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A -2012,9,16,9,30,101670,100520,99400,75.09,0,2.89,3.02,3.02,3.02,3.02,3.0100000000000002,2.99,2.98,2.95,49.45,49.620000000000005,49.71,49.800000000000004,49.9,50,50.120000000000005,50.24,50.51,27.25,26.91,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,16,10,30,101650,100500,99380,79.29,0,3.7800000000000002,3.9,3.88,3.84,3.8000000000000003,3.75,3.7,3.65,3.54,36.39,37.07,37.53,38,38.45,38.89,39.35,39.79,40.76,27.05,26.69,26.52,26.32,26.13,25.95,25.75,25.57,25.2,N/A,N/A -2012,9,16,11,30,101650,100490,99370,79.2,0,4.3500000000000005,4.54,4.55,4.54,4.51,4.49,4.45,4.42,4.34,31.78,32.09,32.28,32.47,32.64,32.81,33,33.18,33.56,26.85,26.48,26.3,26.1,25.91,25.72,25.53,25.34,24.96,N/A,N/A -2012,9,16,12,30,101650,100500,99380,79.65,0,4.37,4.54,4.54,4.5,4.46,4.41,4.3500000000000005,4.29,4.14,27.69,28.060000000000002,28.29,28.53,28.77,29.02,29.32,29.63,30.490000000000002,26.42,26.04,25.86,25.66,25.47,25.29,25.09,24.92,24.55,N/A,N/A -2012,9,16,13,30,101660,100500,99380,80.09,0,4.43,4.61,4.61,4.59,4.5600000000000005,4.5200000000000005,4.47,4.42,4.29,29.310000000000002,29.77,30.02,30.28,30.55,30.82,31.14,31.44,32.27,26.3,25.91,25.73,25.53,25.34,25.16,24.97,24.79,24.43,N/A,N/A -2012,9,16,14,30,101670,100510,99390,80.56,0,4.04,4.21,4.21,4.19,4.16,4.13,4.09,4.05,3.93,32.53,33,33.32,33.65,33.980000000000004,34.31,34.68,35.050000000000004,36.08,26.3,25.91,25.73,25.54,25.35,25.17,24.98,24.8,24.45,N/A,N/A -2012,9,16,15,30,101650,100490,99370,80.33,0,3.61,3.77,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.74,3.73,3.69,41.22,42,42.39,42.83,43.24,43.67,44.160000000000004,44.63,45.83,26.53,26.16,25.98,25.78,25.59,25.400000000000002,25.21,25.03,24.66,N/A,N/A -2012,9,16,16,30,101640,100490,99370,80.77,0,2.95,3.09,3.12,3.13,3.14,3.15,3.15,3.16,3.16,62.14,62.93,63.440000000000005,63.940000000000005,64.39,64.84,65.29,65.73,66.67,26.87,26.5,26.32,26.12,25.93,25.740000000000002,25.55,25.37,24.990000000000002,N/A,N/A -2012,9,16,17,30,101600,100450,99330,76.02,0,2.54,2.68,2.71,2.74,2.7600000000000002,2.77,2.7800000000000002,2.8000000000000003,2.83,73.87,74.35000000000001,74.62,74.89,75.14,75.38,75.63,75.87,76.4,27.27,26.91,26.740000000000002,26.54,26.35,26.16,25.96,25.78,25.400000000000002,N/A,N/A -2012,9,16,18,30,101580,100430,99310,75.37,0,2.65,2.8000000000000003,2.84,2.86,2.88,2.9,2.91,2.92,2.95,98.25,98.5,98.59,98.68,98.76,98.85000000000001,98.95,99.04,99.23,27.55,27.2,27.02,26.82,26.63,26.44,26.25,26.060000000000002,25.68,N/A,N/A -2012,9,16,19,30,101530,100380,99270,74.99,0,2.96,3.13,3.16,3.19,3.21,3.22,3.23,3.24,3.2600000000000002,107.72,107.58,107.53,107.48,107.44,107.41,107.37,107.33,107.27,27.75,27.39,27.21,27.01,26.82,26.63,26.44,26.25,25.87,N/A,N/A -2012,9,16,20,30,101460,100310,99200,70.18,0,3.61,3.85,3.9,3.93,3.96,3.98,4,4.01,4.04,118.22,118.03,117.91,117.8,117.71000000000001,117.61,117.53,117.45,117.29,28.02,27.69,27.52,27.32,27.14,26.95,26.75,26.57,26.2,N/A,N/A -2012,9,16,21,30,101420,100270,99160,68.22,0,4.7,5.0200000000000005,5.08,5.11,5.13,5.14,5.15,5.15,5.16,127.95,127.87,127.83,127.8,127.77,127.75,127.73,127.71000000000001,127.68,28.13,27.82,27.650000000000002,27.45,27.26,27.07,26.88,26.7,26.310000000000002,N/A,N/A -2012,9,16,22,30,101350,100200,99090,69.47,0,4.04,4.3100000000000005,4.3500000000000005,4.37,4.38,4.39,4.39,4.39,4.39,122.62,122.73,122.79,122.85000000000001,122.91,122.96000000000001,123.02,123.08,123.19,27.95,27.64,27.47,27.27,27.09,26.900000000000002,26.71,26.52,26.14,N/A,N/A -2012,9,16,23,30,101320,100170,99060,70.87,0,3.63,3.86,3.91,3.93,3.95,3.96,3.96,3.97,3.98,135.16,135.12,135.11,135.1,135.09,135.08,135.08,135.07,135.06,27.82,27.5,27.330000000000002,27.14,26.95,26.76,26.57,26.38,26,N/A,N/A -2012,9,17,0,30,101310,100160,99050,70.44,0,4.03,4.28,4.32,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,143.76,143.95000000000002,144.04,144.13,144.21,144.29,144.36,144.44,144.6,27.84,27.52,27.35,27.150000000000002,26.96,26.78,26.580000000000002,26.39,26.01,N/A,N/A -2012,9,17,1,30,101290,100140,99030,74.71000000000001,0,3.62,3.8200000000000003,3.86,3.87,3.88,3.88,3.87,3.87,3.85,145.58,145.58,145.59,145.58,145.58,145.57,145.56,145.54,145.51,27.6,27.27,27.1,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.76,N/A,N/A -2012,9,17,2,30,101300,100150,99040,73.99,0,3.08,3.25,3.2800000000000002,3.3000000000000003,3.31,3.31,3.31,3.3200000000000003,3.31,158.34,158.04,157.78,157.54,157.34,157.15,156.96,156.79,156.43,27.59,27.26,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A -2012,9,17,3,30,101290,100150,99030,72.52,0,2.73,2.85,2.87,2.87,2.87,2.87,2.86,2.85,2.84,152.13,151.92000000000002,151.81,151.69,151.57,151.45000000000002,151.32,151.19,150.91,27.61,27.28,27.11,26.92,26.73,26.54,26.35,26.16,25.79,N/A,N/A -2012,9,17,4,30,101250,100100,98990,72.74,0,2.2600000000000002,2.33,2.33,2.32,2.31,2.29,2.2800000000000002,2.27,2.24,145.21,145.17000000000002,145.16,145.16,145.14000000000001,145.12,145.08,145.05,144.95000000000002,27.53,27.2,27.03,26.830000000000002,26.64,26.45,26.26,26.07,25.69,N/A,N/A -2012,9,17,5,30,101250,100090,98970,88.03,0,6.11,6.390000000000001,6.41,6.36,6.3,6.23,6.12,6.01,5.58,23.21,23.32,23.39,23.490000000000002,23.62,23.78,24.02,24.29,25.85,25.66,25.23,25.05,24.85,24.67,24.490000000000002,24.32,24.16,23.96,N/A,N/A -2012,9,17,6,30,101200,100050,98930,87.12,0,6.83,7.22,7.2700000000000005,7.25,7.22,7.17,7.11,7.05,6.88,19.6,19.95,20.14,20.36,20.57,20.79,21.02,21.26,21.830000000000002,25.55,25.11,24.91,24.71,24.52,24.330000000000002,24.14,23.96,23.6,N/A,N/A -2012,9,17,7,30,101160,100010,98890,86.2,0,6.88,7.28,7.34,7.34,7.32,7.3,7.26,7.22,7.12,13.57,13.93,14.13,14.34,14.55,14.74,14.96,15.17,15.65,25.38,24.92,24.73,24.52,24.330000000000002,24.14,23.96,23.78,23.41,N/A,N/A -2012,9,17,8,30,101150,99990,98870,86.65,0,6.98,7.390000000000001,7.44,7.44,7.42,7.390000000000001,7.3500000000000005,7.3100000000000005,7.18,8.98,9.1,9.18,9.26,9.32,9.38,9.44,9.49,9.6,25.23,24.76,24.57,24.37,24.18,23.990000000000002,23.81,23.63,23.28,N/A,N/A -2012,9,17,9,30,101130,99970,98850,88.57000000000001,38.5,7.140000000000001,7.57,7.62,7.62,7.61,7.58,7.54,7.5,7.41,348.33,348.54,348.71,348.87,349.01,349.14,349.28000000000003,349.40000000000003,349.66,24.740000000000002,24.26,24.07,23.86,23.67,23.490000000000002,23.31,23.13,22.78,N/A,N/A -2012,9,17,10,30,101080,99920,98790,86.55,7.300000000000001,6.640000000000001,7,7.04,7.04,7.0200000000000005,6.99,6.95,6.91,6.8100000000000005,344.54,344.59000000000003,344.67,344.72,344.77,344.81,344.84000000000003,344.87,344.90000000000003,23.95,23.44,23.240000000000002,23.03,22.830000000000002,22.64,22.45,22.27,21.900000000000002,N/A,N/A -2012,9,17,11,30,101120,99950,98820,86.83,79.5,6.99,7.4,7.47,7.5,7.51,7.51,7.51,7.5,7.48,330.67,331.40000000000003,331.83,332.23,332.6,332.95,333.32,333.66,334.41,23.19,22.66,22.45,22.240000000000002,22.05,21.87,21.68,21.5,21.14,N/A,N/A -2012,9,17,12,30,101090,99920,98800,82.32000000000001,0,5.53,5.8,5.84,5.84,5.83,5.82,5.8,5.78,5.73,349.5,349.88,350.14,350.41,350.67,350.92,351.22,351.48,352.16,23.51,23,22.8,22.59,22.39,22.19,22,21.82,21.43,N/A,N/A -2012,9,17,13,30,101110,99950,98820,79.23,2.6,5.75,6.05,6.1000000000000005,6.12,6.12,6.12,6.11,6.1000000000000005,6.07,8.42,8.43,8.42,8.38,8.35,8.31,8.27,8.23,8.16,23.86,23.36,23.150000000000002,22.94,22.740000000000002,22.55,22.35,22.16,21.77,N/A,N/A -2012,9,17,14,30,101110,99950,98820,78.63,0,6.23,6.6000000000000005,6.66,6.69,6.7,6.71,6.71,6.71,6.7,9.98,10.31,10.5,10.69,10.86,11.02,11.18,11.34,11.71,23.96,23.46,23.25,23.04,22.84,22.650000000000002,22.45,22.26,21.88,N/A,N/A -2012,9,17,15,30,101100,99940,98810,74.73,0,5.7700000000000005,6.07,6.12,6.13,6.13,6.12,6.11,6.1000000000000005,6.07,9.51,9.31,9.200000000000001,9.1,9.01,8.94,8.89,8.84,8.8,24.18,23.69,23.490000000000002,23.28,23.080000000000002,22.89,22.69,22.51,22.13,N/A,N/A -2012,9,17,16,30,101070,99910,98790,72.95,0,4.2,4.38,4.4,4.4,4.4,4.39,4.37,4.36,4.33,357.11,357,356.98,356.95,356.92,356.89,356.85,356.81,356.69,24.47,24.02,23.830000000000002,23.62,23.43,23.240000000000002,23.05,22.87,22.490000000000002,N/A,N/A -2012,9,17,17,30,101040,99890,98760,72.85000000000001,0,3.44,3.6,3.62,3.63,3.64,3.65,3.65,3.65,3.66,338.08,337.3,336.87,336.42,335.99,335.54,335.08,334.65000000000003,333.63,24.900000000000002,24.47,24.28,24.07,23.87,23.68,23.490000000000002,23.3,22.91,N/A,N/A -2012,9,17,18,30,101010,99850,98730,74.2,0,3.46,3.65,3.69,3.72,3.74,3.7600000000000002,3.77,3.7800000000000002,3.81,310.36,310.25,310.2,310.15000000000003,310.09000000000003,310.05,309.99,309.94,309.82,25.44,25.02,24.830000000000002,24.63,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A -2012,9,17,19,30,100970,99820,98700,69.7,0,4.69,4.97,5.04,5.07,5.09,5.11,5.12,5.14,5.15,316.44,316.53000000000003,316.55,316.55,316.54,316.53000000000003,316.5,316.48,316.39,26.03,25.63,25.45,25.240000000000002,25.05,24.86,24.66,24.48,24.1,N/A,N/A -2012,9,17,20,30,100920,99770,98660,66.28,0,3.9,4.16,4.23,4.28,4.32,4.3500000000000005,4.39,4.42,4.49,322.67,322.47,322.32,322.16,322,321.85,321.69,321.53000000000003,321.19,26.52,26.14,25.96,25.77,25.580000000000002,25.39,25.19,25.01,24.64,N/A,N/A -2012,9,17,21,30,100860,99720,98600,64.94,0,3.64,3.87,3.93,3.97,4.01,4.04,4.07,4.1,4.17,323.26,322.65000000000003,322.31,321.96,321.63,321.3,320.96,320.63,319.91,26.95,26.6,26.42,26.22,26.04,25.85,25.66,25.48,25.11,N/A,N/A -2012,9,17,22,30,100840,99700,98590,63.910000000000004,0,3.14,3.36,3.42,3.47,3.5100000000000002,3.54,3.58,3.61,3.68,322.41,321.97,321.63,321.3,321,320.72,320.44,320.18,319.65000000000003,27.330000000000002,27.01,26.84,26.64,26.45,26.26,26.07,25.89,25.51,N/A,N/A -2012,9,17,23,30,100850,99700,98590,71.58,0,6,6.36,6.42,6.44,6.44,6.44,6.42,6.41,6.38,325.44,326.90000000000003,327.91,328.90000000000003,329.8,330.67,331.53000000000003,332.35,334.04,26.650000000000002,26.27,26.1,25.900000000000002,25.72,25.54,25.35,25.18,24.82,N/A,N/A -2012,9,18,0,30,100890,99740,98630,72.14,0,4.5200000000000005,4.75,4.78,4.79,4.79,4.79,4.79,4.79,4.7700000000000005,297.17,298.39,299.17,299.88,300.5,301.09000000000003,301.66,302.18,303.25,26.67,26.3,26.12,25.92,25.73,25.53,25.330000000000002,25.150000000000002,24.76,N/A,N/A -2012,9,18,1,30,100880,99730,98610,79.05,0,4.55,4.79,4.84,4.86,4.88,4.89,4.89,4.9,4.9,297.57,298.88,299.58,300.25,300.83,301.38,301.92,302.42,303.64,26.01,25.61,25.43,25.22,25.03,24.84,24.650000000000002,24.46,24.080000000000002,N/A,N/A -2012,9,18,2,30,100910,99770,98650,70.05,0,3.3200000000000003,3.46,3.47,3.47,3.47,3.46,3.45,3.45,3.43,305.98,307.56,308.52,309.48,310.33,311.14,311.93,312.67,314.14,26.63,26.27,26.1,25.89,25.7,25.51,25.32,25.13,24.75,N/A,N/A -2012,9,18,3,30,100940,99790,98680,68.26,0,4.24,4.48,4.5200000000000005,4.53,4.53,4.53,4.5200000000000005,4.51,4.49,344.53000000000003,344.85,344.99,345.12,345.24,345.34000000000003,345.44,345.53000000000003,345.7,26.89,26.52,26.34,26.14,25.95,25.75,25.55,25.37,24.98,N/A,N/A -2012,9,18,4,30,100970,99820,98710,70.22,0,5.32,5.5600000000000005,5.57,5.54,5.51,5.48,5.44,5.4,5.33,2.85,1.99,1.4000000000000001,0.78,0.21,359.66,359.08,358.54,357.37,26.41,26.02,25.84,25.64,25.44,25.26,25.060000000000002,24.87,24.490000000000002,N/A,N/A -2012,9,18,5,30,101020,99870,98750,71.35000000000001,0,3.5100000000000002,3.64,3.64,3.63,3.62,3.61,3.59,3.5700000000000003,3.54,5.14,3.97,3.2,2.37,1.58,0.77,359.88,359.02,357,26.04,25.66,25.48,25.27,25.080000000000002,24.89,24.7,24.52,24.14,N/A,N/A -2012,9,18,6,30,101060,99910,98790,70.31,0,3.7600000000000002,3.97,4.01,4.03,4.05,4.07,4.08,4.09,4.11,353.53000000000003,352.66,352.16,351.64,351.15000000000003,350.67,350.18,349.71,348.69,26.09,25.71,25.53,25.330000000000002,25.13,24.94,24.740000000000002,24.560000000000002,24.17,N/A,N/A -2012,9,18,7,30,101110,99950,98830,73.12,0,4.94,5.21,5.26,5.28,5.29,5.29,5.28,5.28,5.26,335.09000000000003,334.11,333.54,332.98,332.48,332.02,331.56,331.13,330.28000000000003,25.87,25.47,25.28,25.080000000000002,24.88,24.69,24.490000000000002,24.3,23.91,N/A,N/A -2012,9,18,8,30,101140,99980,98860,76.55,0,5.11,5.41,5.47,5.5,5.51,5.5200000000000005,5.53,5.54,5.55,340.94,340.44,340.11,339.75,339.42,339.1,338.76,338.43,337.73,25.48,25.07,24.88,24.67,24.47,24.28,24.080000000000002,23.89,23.51,N/A,N/A -2012,9,18,9,30,101180,100020,98900,74.67,0,6,6.3500000000000005,6.41,6.42,6.42,6.41,6.4,6.38,6.34,332.59000000000003,332.15000000000003,331.90000000000003,331.64,331.40000000000003,331.17,330.95,330.73,330.28000000000003,25.650000000000002,25.22,25.04,24.830000000000002,24.63,24.44,24.240000000000002,24.05,23.67,N/A,N/A -2012,9,18,10,30,101200,100040,98920,77.25,0,6.33,6.74,6.82,6.86,6.88,6.890000000000001,6.9,6.9,6.9,327.01,326.76,326.6,326.43,326.28000000000003,326.12,325.96,325.82,325.5,25.3,24.86,24.66,24.45,24.26,24.07,23.87,23.68,23.3,N/A,N/A -2012,9,18,11,30,101260,100100,98980,75.55,0,6.92,7.390000000000001,7.49,7.53,7.5600000000000005,7.57,7.58,7.58,7.57,339.03000000000003,338.89,338.78000000000003,338.66,338.55,338.45,338.34000000000003,338.24,338.02,25.26,24.8,24.61,24.400000000000002,24.2,24.01,23.81,23.62,23.240000000000002,N/A,N/A -2012,9,18,12,30,101290,100130,99010,80.66,0,7.0600000000000005,7.5200000000000005,7.61,7.65,7.67,7.68,7.68,7.68,7.66,339.86,339.58,339.39,339.19,339,338.82,338.64,338.47,338.09000000000003,24.87,24.400000000000002,24.2,23.990000000000002,23.79,23.59,23.39,23.21,22.82,N/A,N/A -2012,9,18,13,30,101330,100170,99040,81.15,0,7.34,7.86,7.99,8.05,8.09,8.120000000000001,8.13,8.15,8.16,338.24,338.28000000000003,338.29,338.3,338.31,338.31,338.32,338.32,338.35,24.79,24.310000000000002,24.11,23.900000000000002,23.7,23.51,23.31,23.13,22.740000000000002,N/A,N/A -2012,9,18,14,30,101400,100240,99110,81.98,0,7.09,7.57,7.68,7.74,7.7700000000000005,7.79,7.8,7.8100000000000005,7.8100000000000005,348.24,347.89,347.66,347.45,347.25,347.06,346.88,346.7,346.33,24.66,24.18,23.98,23.77,23.57,23.38,23.18,22.990000000000002,22.61,N/A,N/A -2012,9,18,15,30,101430,100270,99150,79.83,0,7.2,7.72,7.86,7.930000000000001,7.97,8.01,8.03,8.05,8.08,345.05,345.07,345.09000000000003,345.1,345.12,345.15000000000003,345.18,345.21,345.27,24.98,24.51,24.310000000000002,24.1,23.900000000000002,23.71,23.51,23.32,22.94,N/A,N/A -2012,9,18,16,30,101480,100320,99190,73.72,0,7.21,7.75,7.88,7.95,8,8.03,8.06,8.08,8.11,352.16,352.05,351.99,351.92,351.87,351.81,351.77,351.72,351.64,25.45,25.01,24.82,24.6,24.41,24.21,24.01,23.830000000000002,23.44,N/A,N/A -2012,9,18,17,30,101490,100330,99200,69.34,0,6.73,7.24,7.36,7.44,7.49,7.53,7.5600000000000005,7.59,7.62,348.13,348.28000000000003,348.38,348.47,348.56,348.65000000000003,348.74,348.83,349.02,25.96,25.55,25.36,25.150000000000002,24.96,24.76,24.57,24.38,23.990000000000002,N/A,N/A -2012,9,18,18,30,101490,100330,99210,65.61,0,6,6.45,6.55,6.61,6.65,6.68,6.7,6.72,6.74,341.58,342.06,342.39,342.72,343.04,343.34000000000003,343.66,343.96,344.61,26.62,26.25,26.07,25.86,25.67,25.48,25.28,25.1,24.71,N/A,N/A -2012,9,18,19,30,101480,100320,99200,62.410000000000004,0,4.92,5.34,5.46,5.54,5.61,5.67,5.72,5.7700000000000005,5.8500000000000005,339.41,340.04,340.43,340.79,341.12,341.44,341.74,342.02,342.59000000000003,27.330000000000002,27,26.830000000000002,26.63,26.45,26.26,26.060000000000002,25.88,25.5,N/A,N/A -2012,9,18,20,30,101460,100310,99190,64.97,0,5.04,5.43,5.51,5.5600000000000005,5.59,5.62,5.64,5.66,5.69,332.35,333.75,334.6,335.43,336.16,336.85,337.52,338.15000000000003,339.39,27.82,27.52,27.36,27.16,26.98,26.79,26.6,26.42,26.04,N/A,N/A -2012,9,18,21,30,101450,100300,99180,67.25,0,3.8000000000000003,3.99,4.0200000000000005,4.01,4,3.98,3.93,3.88,3.5500000000000003,73.49,74.22,74.46000000000001,74.63,74.67,74.62,74.14,73.53,69.02,26.97,26.64,26.48,26.29,26.13,25.96,25.810000000000002,25.69,25.55,N/A,N/A -2012,9,18,22,30,101420,100270,99160,65.41,0,2.0100000000000002,2.04,2.02,1.98,1.94,1.9000000000000001,1.85,1.8,1.68,72.55,71.96000000000001,71.51,70.95,70.37,69.7,68.9,68.07000000000001,64.93,27.490000000000002,27.18,27.01,26.810000000000002,26.63,26.44,26.25,26.080000000000002,25.72,N/A,N/A -2012,9,18,23,30,101420,100270,99150,65.34,0,0.75,0.85,0.89,0.93,1,1.09,1.24,1.42,2.17,37.7,33.22,30.240000000000002,27.04,23.37,18.77,13.52,7.7,357.64,27.73,27.43,27.28,27.09,26.91,26.740000000000002,26.580000000000002,26.44,26.23,N/A,N/A -2012,9,19,0,30,101440,100290,99180,66.52,0,1.68,1.99,2.12,2.2600000000000002,2.37,2.49,2.6,2.71,2.98,21.37,17.78,15.89,14.3,13,11.870000000000001,10.870000000000001,9.97,8.34,28.05,27.79,27.63,27.45,27.27,27.1,26.91,26.740000000000002,26.37,N/A,N/A -2012,9,19,1,30,101450,100300,99190,65.22,0,6.79,7.41,7.54,7.61,7.67,7.7,7.72,7.74,7.78,355.2,355.93,356.37,356.86,357.32,357.78000000000003,358.28000000000003,358.75,359.81,28.400000000000002,28.150000000000002,28,27.82,27.64,27.46,27.27,27.1,26.73,N/A,N/A -2012,9,19,2,30,101510,100360,99240,65.41,0,6.68,7.28,7.42,7.48,7.53,7.5600000000000005,7.57,7.58,7.59,20.46,20.75,20.86,20.96,21.04,21.12,21.2,21.26,21.400000000000002,28.28,28.02,27.86,27.67,27.490000000000002,27.3,27.11,26.92,26.55,N/A,N/A -2012,9,19,3,30,101530,100380,99270,66.46000000000001,0,7.01,7.6000000000000005,7.72,7.76,7.79,7.8,7.8,7.79,7.7700000000000005,31.470000000000002,31.45,31.44,31.41,31.38,31.34,31.3,31.26,31.150000000000002,27.87,27.57,27.41,27.22,27.03,26.85,26.650000000000002,26.47,26.09,N/A,N/A -2012,9,19,4,30,101550,100400,99280,70.04,0,7.79,8.39,8.5,8.53,8.540000000000001,8.53,8.51,8.48,8.41,28.810000000000002,29.32,29.68,30.03,30.35,30.66,30.970000000000002,31.26,31.87,27.23,26.89,26.72,26.52,26.330000000000002,26.150000000000002,25.95,25.77,25.400000000000002,N/A,N/A -2012,9,19,5,30,101560,100410,99290,74.07000000000001,0,7.54,8.11,8.22,8.26,8.290000000000001,8.290000000000001,8.290000000000001,8.28,8.25,36.480000000000004,36.95,37.22,37.49,37.730000000000004,37.97,38.21,38.44,38.93,26.7,26.32,26.150000000000002,25.95,25.76,25.57,25.38,25.2,24.830000000000002,N/A,N/A -2012,9,19,6,30,101590,100440,99320,75.37,0,7.79,8.370000000000001,8.49,8.540000000000001,8.56,8.57,8.56,8.55,8.51,46.58,46.83,47,47.17,47.32,47.47,47.62,47.76,48.06,26.52,26.12,25.93,25.73,25.53,25.34,25.150000000000002,24.96,24.580000000000002,N/A,N/A -2012,9,19,7,30,101620,100460,99340,76.27,0,8.27,8.96,9.11,9.19,9.23,9.26,9.27,9.28,9.27,49.660000000000004,49.95,50.1,50.26,50.4,50.52,50.65,50.77,51.01,26.44,26.02,25.84,25.63,25.43,25.240000000000002,25.04,24.86,24.47,N/A,N/A -2012,9,19,8,30,101640,100480,99360,79.12,0,8.16,8.8,8.94,9.01,9.05,9.07,9.08,9.08,9.07,55.19,55.45,55.61,55.76,55.88,55.99,56.1,56.21,56.410000000000004,26.13,25.69,25.5,25.29,25.09,24.89,24.69,24.5,24.12,N/A,N/A -2012,9,19,9,30,101670,100510,99380,79.49,0,8.26,8.88,9.01,9.07,9.1,9.11,9.11,9.11,9.08,60.25,60.42,60.52,60.61,60.69,60.77,60.84,60.92,61.050000000000004,25.830000000000002,25.38,25.19,24.97,24.77,24.57,24.38,24.19,23.8,N/A,N/A -2012,9,19,10,30,101700,100540,99410,78.78,0,8.76,9.450000000000001,9.59,9.65,9.69,9.71,9.72,9.72,9.700000000000001,57.59,57.870000000000005,58.050000000000004,58.22,58.38,58.53,58.69,58.83,59.120000000000005,25.42,24.95,24.740000000000002,24.53,24.330000000000002,24.13,23.93,23.740000000000002,23.35,N/A,N/A -2012,9,19,11,30,101740,100570,99450,79.46000000000001,0,8.73,9.39,9.540000000000001,9.6,9.65,9.67,9.68,9.68,9.66,65,64.92,64.92,64.93,64.93,64.94,64.94,64.95,64.96000000000001,25.240000000000002,24.75,24.54,24.32,24.12,23.92,23.72,23.53,23.13,N/A,N/A -2012,9,19,12,30,101770,100600,99470,76.87,0,8.36,8.97,9.1,9.16,9.200000000000001,9.22,9.22,9.22,9.200000000000001,60.85,60.910000000000004,60.980000000000004,61.050000000000004,61.11,61.160000000000004,61.22,61.26,61.36,25.03,24.54,24.330000000000002,24.12,23.91,23.72,23.51,23.32,22.93,N/A,N/A -2012,9,19,13,30,101830,100660,99530,72.68,0,7.68,8.22,8.32,8.36,8.38,8.38,8.38,8.370000000000001,8.33,59.53,59.620000000000005,59.72,59.800000000000004,59.88,59.94,60.01,60.07,60.2,24.94,24.46,24.26,24.04,23.84,23.650000000000002,23.45,23.26,22.87,N/A,N/A -2012,9,19,14,30,101880,100710,99570,71.88,0,7.82,8.370000000000001,8.47,8.52,8.55,8.56,8.56,8.56,8.53,62.980000000000004,63.18,63.31,63.42,63.51,63.6,63.7,63.78,63.940000000000005,24.8,24.310000000000002,24.1,23.89,23.69,23.490000000000002,23.29,23.1,22.7,N/A,N/A -2012,9,19,15,30,101860,100690,99550,71.43,0,7.34,7.8100000000000005,7.9,7.930000000000001,7.94,7.94,7.930000000000001,7.92,7.88,58.53,58.51,58.49,58.47,58.45,58.42,58.39,58.36,58.300000000000004,24.62,24.13,23.92,23.71,23.5,23.31,23.1,22.91,22.52,N/A,N/A -2012,9,19,16,30,101870,100700,99560,68.47,0,6.5200000000000005,6.91,6.98,7.01,7.0200000000000005,7.0200000000000005,7.01,7,6.97,61.480000000000004,61.79,61.96,62.13,62.28,62.42,62.57,62.7,62.980000000000004,24.650000000000002,24.17,23.96,23.75,23.55,23.35,23.150000000000002,22.97,22.57,N/A,N/A -2012,9,19,17,30,101860,100690,99550,67.84,0,5.91,6.24,6.29,6.3100000000000005,6.32,6.3100000000000005,6.3100000000000005,6.29,6.26,63.15,63.18,63.22,63.24,63.25,63.26,63.27,63.28,63.28,24.66,24.19,23.990000000000002,23.78,23.580000000000002,23.38,23.18,22.990000000000002,22.6,N/A,N/A -2012,9,19,18,30,101880,100710,99570,67.59,0,5.05,5.3,5.33,5.34,5.33,5.32,5.3,5.28,5.24,77.32000000000001,77.19,77.10000000000001,77.01,76.91,76.81,76.7,76.59,76.35000000000001,24.76,24.310000000000002,24.12,23.91,23.71,23.52,23.31,23.13,22.740000000000002,N/A,N/A -2012,9,19,19,30,101840,100680,99540,64.94,0,3.6,3.74,3.75,3.75,3.74,3.73,3.71,3.7,3.67,74.87,74.38,74.11,73.83,73.56,73.28,72.99,72.72,72.07000000000001,24.990000000000002,24.57,24.38,24.17,23.97,23.78,23.580000000000002,23.39,23.01,N/A,N/A -2012,9,19,20,30,101810,100640,99510,63.18,0,2.94,3.04,3.0300000000000002,3.0100000000000002,2.99,2.98,2.95,2.93,2.88,93.08,92.60000000000001,92.24,91.86,91.51,91.16,90.79,90.45,89.68,25.22,24.82,24.63,24.43,24.23,24.04,23.84,23.650000000000002,23.27,N/A,N/A -2012,9,19,21,30,101770,100600,99470,61.31,0,1.71,1.75,1.75,1.74,1.72,1.72,1.7,1.69,1.6600000000000001,96.33,95.57000000000001,95.06,94.54,94.03,93.54,92.99,92.47,91.22,25.39,25,24.810000000000002,24.61,24.41,24.22,24.03,23.84,23.45,N/A,N/A -2012,9,19,22,30,101750,100580,99450,61.31,0,1.83,1.8800000000000001,1.87,1.86,1.85,1.83,1.82,1.81,1.78,104.74000000000001,104.26,103.92,103.58,103.26,102.93,102.60000000000001,102.29,101.55,25.57,25.19,25,24.8,24.61,24.42,24.21,24.03,23.64,N/A,N/A -2012,9,19,23,30,101740,100570,99440,61.08,0,2.2800000000000002,2.36,2.36,2.35,2.34,2.33,2.32,2.3000000000000003,2.27,104.52,104.19,103.95,103.68,103.42,103.15,102.86,102.59,101.93,25.72,25.34,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A -2012,9,20,0,30,101710,100550,99420,61.07,0,2.8000000000000003,2.89,2.89,2.88,2.87,2.86,2.84,2.83,2.8000000000000003,111.39,111.14,111,110.83,110.67,110.51,110.34,110.18,109.81,25.86,25.48,25.3,25.09,24.900000000000002,24.71,24.51,24.32,23.93,N/A,N/A -2012,9,20,1,30,101740,100570,99450,60.34,0,3.2,3.33,3.34,3.34,3.34,3.34,3.33,3.33,3.31,99.29,99.12,98.99000000000001,98.87,98.75,98.64,98.52,98.41,98.18,25.94,25.560000000000002,25.38,25.17,24.98,24.79,24.59,24.400000000000002,24.01,N/A,N/A -2012,9,20,2,30,101750,100580,99460,58.95,0,3.29,3.45,3.48,3.49,3.5,3.5,3.5,3.5100000000000002,3.5100000000000002,76.32000000000001,76.23,76.22,76.19,76.16,76.12,76.07000000000001,76.03,75.9,26.01,25.63,25.44,25.25,25.05,24.86,24.66,24.47,24.09,N/A,N/A -2012,9,20,3,30,101740,100580,99450,55.82,0,3.68,3.9,3.95,3.98,4,4.0200000000000005,4.04,4.05,4.07,59.550000000000004,59.01,58.72,58.45,58.21,57.99,57.77,57.58,57.2,26.16,25.78,25.6,25.400000000000002,25.2,25.01,24.810000000000002,24.63,24.240000000000002,N/A,N/A -2012,9,20,4,30,101720,100560,99430,56.56,0,3.74,3.94,3.97,3.99,4,4.01,4.01,4.0200000000000005,4.0200000000000005,63.39,63.800000000000004,63.95,64.09,64.22,64.34,64.45,64.55,64.76,26.11,25.73,25.55,25.35,25.150000000000002,24.96,24.76,24.57,24.18,N/A,N/A -2012,9,20,5,30,101720,100550,99420,50.33,0,3.65,3.85,3.88,3.9,3.92,3.93,3.94,3.95,3.96,55.57,56.07,56.31,56.52,56.7,56.88,57.04,57.17,57.45,26.330000000000002,25.96,25.78,25.580000000000002,25.39,25.19,24.990000000000002,24.810000000000002,24.42,N/A,N/A -2012,9,20,6,30,101740,100580,99450,55.49,0,4.5,4.71,4.73,4.73,4.72,4.71,4.69,4.68,4.63,45.17,45.65,45.83,46,46.15,46.300000000000004,46.46,46.61,46.95,25.89,25.5,25.32,25.12,24.92,24.73,24.54,24.35,23.96,N/A,N/A -2012,9,20,7,30,101730,100570,99440,51.35,0,3.02,3.16,3.18,3.19,3.19,3.2,3.2,3.2,3.2,50.49,51.43,51.980000000000004,52.49,52.97,53.410000000000004,53.85,54.25,55.07,25.990000000000002,25.62,25.44,25.240000000000002,25.04,24.85,24.650000000000002,24.47,24.07,N/A,N/A -2012,9,20,8,30,101760,100600,99470,51.52,0,3.34,3.52,3.56,3.58,3.59,3.6,3.61,3.61,3.62,55.93,56.56,56.980000000000004,57.36,57.7,58.02,58.33,58.61,59.160000000000004,26.17,25.810000000000002,25.63,25.43,25.23,25.04,24.84,24.650000000000002,24.26,N/A,N/A -2012,9,20,9,30,101770,100600,99470,49.84,0,2.59,2.7,2.71,2.72,2.73,2.73,2.73,2.73,2.74,57.6,58.38,58.9,59.410000000000004,59.88,60.33,60.800000000000004,61.230000000000004,62.13,26.12,25.76,25.580000000000002,25.38,25.19,24.990000000000002,24.79,24.61,24.22,N/A,N/A -2012,9,20,10,30,101740,100580,99450,54.2,0,3.16,3.2600000000000002,3.25,3.23,3.21,3.19,3.16,3.14,3.09,44.45,45.19,45.68,46.15,46.59,47,47.42,47.800000000000004,48.61,25.94,25.560000000000002,25.38,25.18,24.98,24.79,24.59,24.41,24.02,N/A,N/A -2012,9,20,11,30,101760,100590,99460,54.86,0,3.29,3.38,3.37,3.34,3.31,3.29,3.2600000000000002,3.24,3.19,79.5,78.83,78.35000000000001,77.86,77.41,76.98,76.54,76.14,75.3,25.810000000000002,25.43,25.25,25.04,24.85,24.66,24.46,24.27,23.88,N/A,N/A -2012,9,20,12,30,101770,100600,99470,56.34,0,3.37,3.46,3.44,3.41,3.38,3.35,3.3200000000000003,3.29,3.23,65.91,66.01,66.07000000000001,66.15,66.2,66.24,66.29,66.33,66.41,25.61,25.22,25.04,24.830000000000002,24.64,24.45,24.25,24.060000000000002,23.67,N/A,N/A -2012,9,20,13,30,101780,100610,99480,59.31,0,3.83,3.99,3.99,3.99,3.97,3.96,3.94,3.92,3.89,70.38,70.23,70.05,69.88,69.73,69.59,69.44,69.3,69.04,25.490000000000002,25.09,24.900000000000002,24.7,24.5,24.310000000000002,24.11,23.92,23.53,N/A,N/A -2012,9,20,14,30,101800,100640,99500,58.410000000000004,0,3.52,3.66,3.66,3.65,3.64,3.63,3.61,3.59,3.56,72.11,71.62,71.35000000000001,71.09,70.85000000000001,70.62,70.38,70.17,69.73,25.37,24.97,24.78,24.580000000000002,24.38,24.19,23.990000000000002,23.8,23.41,N/A,N/A -2012,9,20,15,30,101800,100630,99500,57.480000000000004,0,3.84,3.99,4,3.99,3.97,3.96,3.94,3.92,3.88,60.17,60.28,60.410000000000004,60.52,60.63,60.72,60.82,60.910000000000004,61.08,25.330000000000002,24.93,24.740000000000002,24.54,24.34,24.14,23.94,23.76,23.37,N/A,N/A -2012,9,20,16,30,101780,100610,99480,56.28,0,3.88,4.04,4.05,4.05,4.03,4.03,4.01,3.99,3.96,55.910000000000004,55.97,55.97,55.980000000000004,55.980000000000004,55.980000000000004,55.99,56,55.99,25.310000000000002,24.900000000000002,24.72,24.51,24.32,24.12,23.92,23.740000000000002,23.34,N/A,N/A -2012,9,20,17,30,101770,100600,99470,55.08,0,3.8200000000000003,3.98,3.99,3.98,3.97,3.95,3.94,3.92,3.88,60.160000000000004,60.17,60.09,60.01,59.93,59.870000000000005,59.79,59.72,59.58,25.29,24.88,24.69,24.490000000000002,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A -2012,9,20,18,30,101730,100560,99430,53.58,0,3.13,3.23,3.23,3.21,3.2,3.19,3.17,3.15,3.12,65.85,65.18,64.8,64.41,64.04,63.690000000000005,63.31,62.96,62.21,25.32,24.92,24.73,24.53,24.34,24.150000000000002,23.95,23.77,23.38,N/A,N/A -2012,9,20,19,30,101690,100530,99400,52.92,0,2.5300000000000002,2.6,2.6,2.58,2.57,2.5500000000000003,2.54,2.52,2.48,73.59,73.02,72.65,72.27,71.92,71.59,71.22,70.86,70.08,25.37,24.98,24.79,24.59,24.400000000000002,24.21,24.01,23.82,23.44,N/A,N/A -2012,9,20,20,30,101660,100490,99360,52.14,0,2.73,2.81,2.8000000000000003,2.79,2.77,2.7600000000000002,2.74,2.72,2.68,88.07000000000001,87.73,87.48,87.21000000000001,86.95,86.7,86.43,86.17,85.55,25.48,25.09,24.91,24.71,24.51,24.330000000000002,24.13,23.94,23.56,N/A,N/A -2012,9,20,21,30,101630,100460,99330,53.57,0,2.5300000000000002,2.61,2.61,2.59,2.58,2.56,2.54,2.52,2.48,98.18,97.9,97.65,97.42,97.19,96.97,96.73,96.51,95.98,25.51,25.12,24.94,24.740000000000002,24.54,24.36,24.16,23.97,23.580000000000002,N/A,N/A -2012,9,20,22,30,101590,100420,99300,54.03,0,2.33,2.4,2.4,2.39,2.38,2.37,2.36,2.35,2.32,89.62,89.04,88.74,88.43,88.13,87.85000000000001,87.52,87.21000000000001,86.51,25.580000000000002,25.2,25.02,24.82,24.63,24.44,24.240000000000002,24.060000000000002,23.67,N/A,N/A -2012,9,20,23,30,101590,100420,99290,54.24,0,3.15,3.2800000000000002,3.29,3.29,3.29,3.2800000000000002,3.2800000000000002,3.27,3.25,103.55,103.06,102.85000000000001,102.63,102.41,102.18,101.93,101.7,101.14,25.67,25.29,25.11,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A -2012,9,21,0,30,101550,100390,99260,56.480000000000004,0,3.52,3.7,3.73,3.75,3.7600000000000002,3.77,3.7800000000000002,3.7800000000000002,3.79,104.2,104.08,103.96000000000001,103.83,103.72,103.61,103.49000000000001,103.38,103.13,25.67,25.29,25.1,24.900000000000002,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A -2012,9,21,1,30,101550,100390,99260,52.620000000000005,0,2.8000000000000003,2.96,2.99,3.0100000000000002,3.0300000000000002,3.04,3.0500000000000003,3.0700000000000003,3.09,102.47,102.31,102.18,102.04,101.92,101.79,101.65,101.52,101.23,25.91,25.54,25.36,25.16,24.97,24.78,24.580000000000002,24.400000000000002,24.01,N/A,N/A -2012,9,21,2,30,101560,100400,99270,53.2,0,3.96,4.18,4.21,4.22,4.23,4.23,4.24,4.24,4.23,105.2,104.94,104.76,104.58,104.41,104.25,104.08,103.93,103.56,26.05,25.68,25.5,25.3,25.1,24.91,24.72,24.53,24.14,N/A,N/A -2012,9,21,3,30,101550,100390,99260,53.39,0,3.63,3.81,3.85,3.86,3.87,3.87,3.88,3.88,3.88,103.72,103.18,102.84,102.51,102.19,101.89,101.58,101.3,100.68,26.07,25.7,25.52,25.32,25.13,24.94,24.740000000000002,24.55,24.17,N/A,N/A -2012,9,21,4,30,101520,100360,99230,53.92,0,3.62,3.83,3.87,3.89,3.91,3.92,3.94,3.95,3.96,95.65,95.36,95.19,95.01,94.85000000000001,94.69,94.52,94.35000000000001,94.02,26.09,25.72,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A -2012,9,21,5,30,101550,100390,99260,54.32,0,4.28,4.5200000000000005,4.57,4.59,4.6000000000000005,4.61,4.62,4.62,4.62,97.06,96.73,96.53,96.36,96.19,96.02,95.86,95.72,95.39,26.14,25.77,25.59,25.39,25.19,25,24.8,24.62,24.23,N/A,N/A -2012,9,21,6,30,101550,100380,99260,54.04,0,3.92,4.15,4.2,4.23,4.25,4.2700000000000005,4.28,4.29,4.3100000000000005,88.44,88.62,88.7,88.75,88.8,88.85000000000001,88.88,88.92,88.98,26.12,25.75,25.57,25.37,25.18,24.990000000000002,24.79,24.6,24.21,N/A,N/A -2012,9,21,7,30,101560,100400,99270,54.85,0,3.49,3.69,3.74,3.77,3.79,3.8000000000000003,3.8200000000000003,3.83,3.85,88.46000000000001,88.46000000000001,88.46000000000001,88.45,88.43,88.4,88.37,88.33,88.23,26.05,25.68,25.5,25.3,25.1,24.91,24.71,24.53,24.14,N/A,N/A -2012,9,21,8,30,101540,100380,99250,54.96,0,3.3200000000000003,3.46,3.47,3.47,3.46,3.46,3.45,3.45,3.44,85.49,85.05,84.83,84.62,84.44,84.27,84.11,83.97,83.69,25.94,25.57,25.39,25.19,25,24.810000000000002,24.61,24.43,24.03,N/A,N/A -2012,9,21,9,30,101560,100400,99270,59.09,0,3.74,3.91,3.93,3.94,3.94,3.94,3.94,3.93,3.92,83.99,84.8,85.32000000000001,85.76,86.11,86.4,86.64,86.84,87.16,25.87,25.490000000000002,25.310000000000002,25.11,24.91,24.72,24.52,24.330000000000002,23.94,N/A,N/A -2012,9,21,10,30,101570,100400,99280,60.67,0,4.32,4.58,4.62,4.65,4.66,4.68,4.68,4.69,4.71,88.57000000000001,88.11,87.78,87.44,87.15,86.89,86.62,86.38,85.94,25.740000000000002,25.36,25.17,24.97,24.78,24.59,24.39,24.2,23.81,N/A,N/A -2012,9,21,11,30,101550,100390,99270,61.7,0,3.75,4.01,4.08,4.13,4.17,4.21,4.24,4.26,4.3100000000000005,74.78,74.53,74.5,74.46000000000001,74.43,74.4,74.37,74.35000000000001,74.32000000000001,25.76,25.37,25.19,24.990000000000002,24.79,24.6,24.400000000000002,24.21,23.82,N/A,N/A -2012,9,21,12,30,101540,100380,99260,62.74,0,4.17,4.4,4.45,4.48,4.5,4.51,4.53,4.54,4.55,64.48,64.8,64.94,65.07000000000001,65.18,65.29,65.4,65.51,65.72,25.82,25.43,25.25,25.05,24.85,24.66,24.46,24.28,23.89,N/A,N/A -2012,9,21,13,30,101540,100370,99250,61.44,0,3.7,3.88,3.9,3.91,3.92,3.92,3.92,3.91,3.9,73.08,73.47,73.69,73.88,74.04,74.2,74.34,74.46000000000001,74.7,26.02,25.64,25.46,25.26,25.060000000000002,24.87,24.67,24.490000000000002,24.1,N/A,N/A -2012,9,21,14,30,101540,100380,99260,66.83,0,3.43,3.62,3.67,3.69,3.71,3.72,3.74,3.74,3.7600000000000002,65.84,66.66,67.19,67.68,68.11,68.51,68.92,69.29,70.03,25.96,25.59,25.41,25.2,25.01,24.82,24.62,24.43,24.04,N/A,N/A -2012,9,21,15,30,101570,100410,99280,76.77,0,5.82,6.04,6.0200000000000005,5.96,5.89,5.82,5.75,5.68,5.54,33.37,34.97,36.04,37.14,38.17,39.17,40.19,41.15,43.22,25.580000000000002,25.18,25,24.8,24.61,24.43,24.23,24.05,23.68,N/A,N/A -2012,9,21,16,30,101550,100390,99270,76.08,0,3.92,4.15,4.21,4.24,4.2700000000000005,4.28,4.3,4.3100000000000005,4.33,60.46,61.34,61.730000000000004,62.04,62.28,62.49,62.67,62.83,63.08,26.02,25.64,25.45,25.25,25.05,24.86,24.66,24.48,24.09,N/A,N/A -2012,9,21,17,30,101490,100330,99210,77.99,0,5.0200000000000005,5.32,5.37,5.4,5.41,5.42,5.42,5.42,5.41,47.980000000000004,48.4,48.660000000000004,48.910000000000004,49.13,49.35,49.56,49.76,50.18,25.93,25.53,25.34,25.14,24.94,24.75,24.55,24.37,23.98,N/A,N/A -2012,9,21,18,30,101480,100330,99210,80.08,0,5.68,6.05,6.12,6.15,6.16,6.17,6.17,6.18,6.16,55.77,56.03,56.14,56.24,56.31,56.39,56.45,56.52,56.64,25.990000000000002,25.59,25.400000000000002,25.19,25,24.8,24.61,24.42,24.03,N/A,N/A -2012,9,21,19,30,101470,100310,99190,81.95,0,5.8500000000000005,6.24,6.32,6.3500000000000005,6.37,6.38,6.38,6.38,6.36,61.050000000000004,61.27,61.46,61.64,61.800000000000004,61.95,62.11,62.26,62.59,25.96,25.55,25.36,25.16,24.96,24.77,24.57,24.39,24.01,N/A,N/A -2012,9,21,20,30,101450,100290,99170,84.32000000000001,0,6.5,6.98,7.1000000000000005,7.15,7.19,7.22,7.24,7.26,7.28,71.02,71.13,71.22,71.3,71.37,71.44,71.51,71.58,71.73,26.12,25.71,25.53,25.330000000000002,25.13,24.94,24.75,24.560000000000002,24.18,N/A,N/A -2012,9,21,21,30,101460,100310,99190,81.62,0,7.05,7.62,7.75,7.82,7.87,7.9,7.930000000000001,7.94,7.96,83.15,83.3,83.37,83.45,83.53,83.60000000000001,83.69,83.76,83.94,26.52,26.14,25.96,25.75,25.560000000000002,25.37,25.18,24.990000000000002,24.61,N/A,N/A -2012,9,21,22,30,101410,100260,99140,80.04,0,6.36,6.84,6.94,6.98,7,7,7,6.99,6.97,92.63,92.66,92.74,92.82000000000001,92.89,92.96000000000001,93.04,93.10000000000001,93.26,26.77,26.400000000000002,26.22,26.02,25.830000000000002,25.64,25.45,25.26,24.88,N/A,N/A -2012,9,21,23,30,101410,100260,99150,79.35000000000001,0,5.0600000000000005,5.39,5.45,5.48,5.49,5.5,5.5,5.49,5.47,105.11,105.39,105.42,105.41,105.38,105.33,105.27,105.21000000000001,105.07000000000001,26.96,26.61,26.43,26.23,26.04,25.85,25.650000000000002,25.47,25.080000000000002,N/A,N/A -2012,9,22,0,30,101430,100270,99160,80.65,0,6.08,6.53,6.63,6.67,6.69,6.7,6.7,6.7,6.68,99.02,99.01,98.92,98.81,98.7,98.58,98.46000000000001,98.34,98.07000000000001,26.84,26.48,26.3,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A -2012,9,22,1,30,101450,100300,99180,79.28,0,5.71,6.12,6.19,6.23,6.25,6.26,6.26,6.26,6.25,98.17,98.12,98.09,98.07000000000001,98.04,98.02,98.01,98.01,98,26.82,26.46,26.29,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A -2012,9,22,2,30,101470,100320,99200,80.04,0,5.34,5.71,5.78,5.82,5.84,5.8500000000000005,5.8500000000000005,5.86,5.8500000000000005,98.63,98.55,98.55,98.56,98.56,98.56,98.56,98.56,98.54,26.78,26.42,26.240000000000002,26.04,25.85,25.66,25.46,25.28,24.89,N/A,N/A -2012,9,22,3,30,101480,100330,99210,80.83,0,6.05,6.5200000000000005,6.640000000000001,6.7,6.74,6.7700000000000005,6.79,6.8100000000000005,6.84,107.47,107.49000000000001,107.5,107.51,107.53,107.55,107.57000000000001,107.59,107.65,26.82,26.46,26.28,26.080000000000002,25.89,25.69,25.5,25.310000000000002,24.93,N/A,N/A -2012,9,22,4,30,101450,100300,99180,82.46000000000001,0,4.55,4.86,4.93,4.97,4.99,5.01,5.03,5.04,5.0600000000000005,125.38000000000001,125.74000000000001,125.96000000000001,126.17,126.36,126.54,126.73,126.89,127.25,26.740000000000002,26.38,26.21,26.01,25.82,25.62,25.43,25.240000000000002,24.86,N/A,N/A -2012,9,22,5,30,101490,100340,99220,81.18,0,5.14,5.51,5.58,5.63,5.66,5.67,5.69,5.7,5.71,125.60000000000001,125.8,125.87,125.93,126,126.06,126.12,126.17,126.29,26.87,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.990000000000002,N/A,N/A -2012,9,22,6,30,101500,100350,99230,79.23,0,4.49,4.7700000000000005,4.82,4.8500000000000005,4.86,4.87,4.88,4.88,4.87,128.35,128.54,128.63,128.71,128.79,128.86,128.92000000000002,128.98,129.11,26.86,26.51,26.330000000000002,26.13,25.94,25.75,25.55,25.37,24.98,N/A,N/A -2012,9,22,7,30,101520,100370,99250,79.86,0,3.8200000000000003,4.08,4.14,4.17,4.2,4.22,4.24,4.25,4.28,136.46,136.93,137.14000000000001,137.33,137.53,137.71,137.9,138.07,138.43,26.89,26.54,26.36,26.16,25.97,25.78,25.59,25.400000000000002,25.01,N/A,N/A -2012,9,22,8,30,101540,100390,99280,80.10000000000001,0,4.1,4.37,4.43,4.47,4.5,4.51,4.53,4.54,4.5600000000000005,131.99,132.32,132.56,132.79,133,133.21,133.43,133.64000000000001,134.1,26.89,26.53,26.36,26.16,25.97,25.78,25.59,25.400000000000002,25.02,N/A,N/A -2012,9,22,9,30,101560,100400,99290,81.33,0,3.68,3.87,3.89,3.89,3.89,3.88,3.86,3.85,3.8200000000000003,153.69,153.17000000000002,152.98,152.8,152.63,152.47,152.3,152.15,151.81,26.87,26.52,26.34,26.150000000000002,25.96,25.77,25.57,25.38,25,N/A,N/A -2012,9,22,10,30,101600,100450,99330,78.73,0,3.71,3.93,3.96,3.98,3.99,3.99,4,4,3.99,134.43,134.47,134.55,134.63,134.69,134.75,134.81,134.85,134.97,26.91,26.560000000000002,26.39,26.19,26,25.810000000000002,25.61,25.42,25.04,N/A,N/A -2012,9,22,11,30,101640,100480,99360,79.99,0,3.84,4.04,4.07,4.08,4.08,4.08,4.07,4.0600000000000005,4.03,132.49,132.5,132.51,132.52,132.52,132.52,132.52,132.52,132.51,26.84,26.490000000000002,26.310000000000002,26.11,25.92,25.73,25.53,25.35,24.96,N/A,N/A -2012,9,22,12,30,101660,100500,99390,79.56,0,2.67,2.82,2.84,2.86,2.87,2.89,2.9,2.9,2.91,114.44,115.01,115.34,115.65,115.93,116.18,116.43,116.65,117.11,26.810000000000002,26.47,26.3,26.09,25.900000000000002,25.71,25.52,25.330000000000002,24.94,N/A,N/A -2012,9,22,13,30,101700,100550,99430,80.41,0,2.49,2.61,2.63,2.65,2.66,2.66,2.66,2.66,2.67,105.53,106.24000000000001,106.65,107.02,107.34,107.64,107.93,108.2,108.74000000000001,26.77,26.42,26.25,26.05,25.86,25.67,25.47,25.28,24.900000000000002,N/A,N/A -2012,9,22,14,30,101760,100600,99480,79.07000000000001,0,2.15,2.24,2.25,2.25,2.25,2.24,2.24,2.24,2.23,90.51,91.16,91.65,92.13,92.57000000000001,92.99,93.43,93.85000000000001,94.68,26.8,26.46,26.29,26.09,25.900000000000002,25.71,25.51,25.330000000000002,24.94,N/A,N/A -2012,9,22,15,30,101770,100620,99500,80.60000000000001,0,2.67,2.7800000000000002,2.79,2.79,2.79,2.7800000000000002,2.77,2.77,2.75,70.74,71.13,71.39,71.64,71.86,72.06,72.27,72.48,72.87,26.79,26.44,26.26,26.060000000000002,25.87,25.68,25.490000000000002,25.3,24.92,N/A,N/A -2012,9,22,16,30,101790,100630,99510,79.71000000000001,0,3.31,3.47,3.49,3.5,3.5,3.5,3.5,3.49,3.48,66.73,67.12,67.28,67.45,67.61,67.77,67.93,68.08,68.41,26.88,26.52,26.34,26.14,25.95,25.76,25.560000000000002,25.37,24.990000000000002,N/A,N/A -2012,9,22,17,30,101790,100630,99510,79.51,0,3.52,3.71,3.74,3.74,3.75,3.75,3.74,3.74,3.73,70.92,70.94,71,71.06,71.11,71.16,71.22,71.28,71.38,26.93,26.57,26.39,26.19,26,25.810000000000002,25.61,25.43,25.04,N/A,N/A -2012,9,22,18,30,101780,100630,99510,80.03,0,3.73,3.92,3.94,3.95,3.95,3.94,3.94,3.93,3.91,81.98,82.01,82,81.99,81.98,81.96000000000001,81.94,81.93,81.92,27.04,26.68,26.5,26.3,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A -2012,9,22,19,30,101790,100640,99520,82.41,0,4.22,4.46,4.5,4.51,4.5200000000000005,4.5200000000000005,4.5200000000000005,4.51,4.49,105.44,105.57000000000001,105.67,105.79,105.91,106.02,106.15,106.27,106.56,27.080000000000002,26.71,26.53,26.34,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A -2012,9,22,20,30,101760,100610,99490,82.39,0,4.8100000000000005,5.08,5.12,5.13,5.12,5.11,5.08,5.0600000000000005,5,115.85000000000001,116.01,116.05,116.10000000000001,116.16,116.22,116.3,116.39,116.60000000000001,27.07,26.7,26.52,26.330000000000002,26.14,25.95,25.76,25.580000000000002,25.2,N/A,N/A -2012,9,22,21,30,101750,100600,99480,81.77,0,4.79,5.08,5.13,5.14,5.14,5.13,5.11,5.09,5.04,132.16,132.37,132.41,132.46,132.5,132.54,132.59,132.64000000000001,132.75,27.17,26.82,26.64,26.45,26.26,26.07,25.88,25.7,25.330000000000002,N/A,N/A -2012,9,22,22,30,101750,100600,99480,80.3,0,3.89,4.1,4.13,4.13,4.13,4.11,4.1,4.08,4.03,137.34,137.42000000000002,137.43,137.45000000000002,137.47,137.48,137.49,137.5,137.5,27.21,26.88,26.71,26.51,26.330000000000002,26.14,25.95,25.77,25.400000000000002,N/A,N/A -2012,9,22,23,30,101750,100590,99480,81.22,0,3.69,3.9,3.92,3.92,3.92,3.91,3.9,3.88,3.85,146.25,146.43,146.46,146.51,146.56,146.61,146.66,146.69,146.8,27.17,26.830000000000002,26.66,26.47,26.28,26.09,25.900000000000002,25.72,25.34,N/A,N/A -2012,9,23,0,30,101750,100600,99480,80.91,0,4,4.22,4.26,4.26,4.26,4.25,4.24,4.22,4.18,155.75,155.81,155.86,155.92000000000002,155.97,156.02,156.07,156.12,156.23,27.14,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.68,25.3,N/A,N/A -2012,9,23,1,30,101770,100620,99500,80.47,0,3.47,3.64,3.66,3.66,3.66,3.65,3.63,3.62,3.58,156.87,156.91,156.94,156.98,157.02,157.07,157.1,157.14000000000001,157.21,27.11,26.78,26.61,26.42,26.23,26.04,25.85,25.66,25.29,N/A,N/A -2012,9,23,2,30,101780,100630,99510,79.07000000000001,0,3.34,3.52,3.54,3.54,3.54,3.54,3.52,3.5100000000000002,3.48,152.4,152.35,152.34,152.31,152.29,152.25,152.19,152.13,151.93,27.14,26.810000000000002,26.63,26.44,26.25,26.07,25.87,25.69,25.32,N/A,N/A -2012,9,23,3,30,101800,100640,99520,76.61,0,3.74,3.96,3.99,4,4,4,3.99,3.99,3.97,162.4,162.34,162.25,162.16,162.06,161.97,161.86,161.76,161.49,27.240000000000002,26.91,26.740000000000002,26.55,26.36,26.18,25.98,25.8,25.43,N/A,N/A -2012,9,23,4,30,101800,100640,99520,75.25,0,3.63,3.84,3.87,3.88,3.88,3.88,3.88,3.87,3.86,165.12,164.96,164.88,164.79,164.71,164.63,164.53,164.44,164.18,27.29,26.96,26.8,26.6,26.41,26.23,26.03,25.85,25.48,N/A,N/A -2012,9,23,5,30,101820,100660,99540,78.16,0,2.85,3.02,3.06,3.08,3.09,3.1,3.1,3.11,3.12,153.21,153.31,153.35,153.38,153.4,153.42000000000002,153.43,153.43,153.43,27.14,26.810000000000002,26.64,26.44,26.25,26.060000000000002,25.87,25.68,25.3,N/A,N/A -2012,9,23,6,30,101860,100700,99580,77.62,0,2.88,3.0100000000000002,3.02,3.0300000000000002,3.0300000000000002,3.02,3.02,3.02,3.0100000000000002,154.56,154.4,154.24,154.08,153.92000000000002,153.75,153.57,153.38,152.95000000000002,27.14,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A -2012,9,23,7,30,101880,100720,99600,78.39,0,2.07,2.15,2.17,2.18,2.19,2.19,2.19,2.19,2.2,161.33,161.06,160.86,160.66,160.45000000000002,160.25,160.03,159.81,159.34,27.060000000000002,26.72,26.55,26.35,26.16,25.97,25.77,25.59,25.21,N/A,N/A -2012,9,23,8,30,101890,100740,99610,79.43,0,1.75,1.82,1.83,1.83,1.83,1.83,1.83,1.83,1.83,159.54,159.37,159.25,159.13,159.01,158.89000000000001,158.75,158.61,158.28,27.01,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A -2012,9,23,9,30,101920,100770,99650,80.02,0,1.44,1.5,1.51,1.52,1.53,1.54,1.54,1.55,1.57,150.84,150.28,150.05,149.79,149.55,149.33,149.09,148.84,148.28,26.990000000000002,26.650000000000002,26.48,26.28,26.09,25.900000000000002,25.71,25.52,25.14,N/A,N/A -2012,9,23,10,30,101930,100780,99660,79.76,0,1.37,1.43,1.44,1.44,1.45,1.45,1.46,1.46,1.47,131.74,131.75,131.79,131.82,131.85,131.87,131.86,131.85,131.77,26.98,26.64,26.47,26.27,26.080000000000002,25.89,25.7,25.51,25.13,N/A,N/A -2012,9,23,11,30,101960,100800,99680,78.06,0,1.2,1.26,1.27,1.28,1.29,1.3,1.31,1.32,1.34,111.32000000000001,110.97,110.88,110.82000000000001,110.76,110.68,110.61,110.55,110.46000000000001,27.01,26.67,26.5,26.3,26.11,25.92,25.73,25.54,25.16,N/A,N/A -2012,9,23,12,30,101990,100830,99710,77.34,0,1.8800000000000001,1.96,1.97,1.97,1.97,1.97,1.97,1.97,1.97,107.28,107.10000000000001,107.03,106.97,106.91,106.85000000000001,106.78,106.72,106.63,27.01,26.67,26.5,26.3,26.11,25.92,25.72,25.54,25.150000000000002,N/A,N/A -2012,9,23,13,30,102010,100850,99730,77.23,0,1.86,1.95,1.96,1.97,1.98,1.99,1.99,2,2.0100000000000002,87.39,87.73,88.03,88.34,88.59,88.81,89.04,89.27,89.68,26.97,26.63,26.46,26.26,26.07,25.88,25.68,25.5,25.12,N/A,N/A -2012,9,23,14,30,102040,100880,99760,77.18,0,1.8900000000000001,1.97,1.98,1.98,1.99,1.99,1.99,1.99,1.99,87.04,87.23,87.31,87.39,87.46000000000001,87.54,87.64,87.73,87.92,26.97,26.63,26.46,26.26,26.07,25.88,25.68,25.5,25.11,N/A,N/A -2012,9,23,15,30,102080,100920,99790,78.28,0,2.31,2.42,2.44,2.44,2.45,2.46,2.46,2.47,2.47,97.94,97.76,97.75,97.73,97.71000000000001,97.69,97.67,97.64,97.62,26.98,26.63,26.46,26.26,26.07,25.87,25.68,25.490000000000002,25.11,N/A,N/A -2012,9,23,16,30,102050,100890,99770,76.86,0,2.15,2.25,2.2600000000000002,2.27,2.27,2.2800000000000002,2.2800000000000002,2.2800000000000002,2.29,95.16,95.48,95.58,95.68,95.78,95.86,95.98,96.09,96.31,27.04,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A -2012,9,23,17,30,102060,100900,99780,76.31,0,2.39,2.5100000000000002,2.5300000000000002,2.54,2.5500000000000003,2.56,2.57,2.58,2.59,77.52,77.74,77.82000000000001,77.9,77.98,78.05,78.13,78.2,78.35000000000001,27.14,26.78,26.6,26.400000000000002,26.21,26.02,25.82,25.64,25.25,N/A,N/A -2012,9,23,18,30,102060,100900,99780,76.01,0,2.67,2.8000000000000003,2.82,2.83,2.84,2.84,2.85,2.85,2.85,110.97,110.7,110.56,110.41,110.28,110.15,110.01,109.88,109.62,27.22,26.86,26.68,26.48,26.28,26.09,25.900000000000002,25.71,25.330000000000002,N/A,N/A -2012,9,23,19,30,102040,100880,99760,76.64,0,2.7800000000000002,2.9,2.91,2.92,2.92,2.92,2.92,2.91,2.9,109.07000000000001,108.56,108.14,107.71000000000001,107.34,106.98,106.61,106.27,105.58,27.25,26.89,26.71,26.51,26.310000000000002,26.13,25.93,25.740000000000002,25.36,N/A,N/A -2012,9,23,20,30,102010,100850,99730,76.45,0,2.42,2.52,2.5300000000000002,2.5300000000000002,2.5300000000000002,2.52,2.52,2.5100000000000002,2.5100000000000002,100.61,100.03,99.69,99.36,99.07000000000001,98.81,98.57000000000001,98.35000000000001,97.97,27.28,26.92,26.740000000000002,26.54,26.34,26.16,25.96,25.77,25.39,N/A,N/A -2012,9,23,21,30,102000,100840,99720,78.45,0,3.92,4.11,4.14,4.14,4.13,4.12,4.11,4.1,4.07,145.72,145.51,145.34,145.18,145.03,144.9,144.78,144.66,144.41,27.3,26.94,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A -2012,9,23,22,30,102000,100850,99720,78.61,0,4.36,4.63,4.68,4.71,4.72,4.73,4.74,4.74,4.75,149.76,149.8,149.87,149.95000000000002,150.02,150.11,150.19,150.27,150.46,27.28,26.93,26.76,26.560000000000002,26.37,26.18,25.990000000000002,25.8,25.43,N/A,N/A -2012,9,23,23,30,101990,100840,99720,80.43,0,4.2,4.46,4.5200000000000005,4.54,4.5600000000000005,4.57,4.57,4.58,4.58,157.65,157.72,157.78,157.85,157.91,157.96,158.03,158.09,158.22,27.21,26.87,26.7,26.5,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A -2012,9,24,0,30,102000,100840,99720,80.59,0,3.33,3.52,3.5500000000000003,3.5700000000000003,3.58,3.59,3.6,3.6,3.61,156.44,156.55,156.53,156.53,156.53,156.54,156.56,156.57,156.6,27.17,26.830000000000002,26.650000000000002,26.45,26.27,26.080000000000002,25.88,25.7,25.32,N/A,N/A -2012,9,24,1,30,101980,100820,99700,79.88,0,3.0700000000000003,3.23,3.25,3.25,3.25,3.25,3.24,3.23,3.22,173.9,173.5,173.28,173.06,172.86,172.67000000000002,172.46,172.25,171.73,27.14,26.810000000000002,26.63,26.44,26.25,26.060000000000002,25.86,25.68,25.3,N/A,N/A -2012,9,24,2,30,102020,100860,99740,79.42,0,3.36,3.5300000000000002,3.56,3.5700000000000003,3.58,3.58,3.58,3.58,3.58,177.59,177.47,177.31,177.14000000000001,176.99,176.82,176.64000000000001,176.45000000000002,175.97,27.22,26.89,26.71,26.52,26.330000000000002,26.14,25.95,25.77,25.39,N/A,N/A -2012,9,24,3,30,102010,100850,99730,81.03,0,4.67,4.98,5.04,5.07,5.09,5.11,5.12,5.12,5.13,171.71,171.58,171.48,171.38,171.29,171.19,171.1,171,170.8,27.18,26.830000000000002,26.650000000000002,26.45,26.27,26.080000000000002,25.88,25.69,25.32,N/A,N/A -2012,9,24,4,30,101980,100830,99710,82.19,0,3.98,4.21,4.25,4.26,4.2700000000000005,4.2700000000000005,4.2700000000000005,4.26,4.25,171.24,171.02,170.9,170.78,170.67000000000002,170.55,170.43,170.3,170.01,27.080000000000002,26.73,26.560000000000002,26.36,26.17,25.98,25.79,25.6,25.23,N/A,N/A -2012,9,24,5,30,101990,100830,99710,82.38,0,4.01,4.25,4.29,4.3,4.3100000000000005,4.32,4.32,4.32,4.3100000000000005,170.43,170.32,170.26,170.19,170.13,170.07,169.99,169.91,169.73,27.080000000000002,26.73,26.560000000000002,26.36,26.16,25.98,25.78,25.6,25.22,N/A,N/A -2012,9,24,6,30,102000,100840,99720,83.35000000000001,0,4.75,5.05,5.1000000000000005,5.13,5.14,5.15,5.15,5.15,5.14,172.55,172.52,172.48,172.42000000000002,172.38,172.32,172.27,172.22,172.09,27.07,26.71,26.53,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A -2012,9,24,7,30,102010,100850,99730,83.56,0,4.18,4.45,4.5,4.54,4.5600000000000005,4.57,4.58,4.59,4.6000000000000005,176.53,176.42000000000002,176.37,176.32,176.26,176.21,176.14000000000001,176.07,175.93,27.07,26.71,26.53,26.330000000000002,26.13,25.95,25.75,25.560000000000002,25.18,N/A,N/A -2012,9,24,8,30,101990,100830,99710,83.89,0,3.11,3.27,3.31,3.3200000000000003,3.34,3.35,3.35,3.36,3.38,178.98,178.99,178.95000000000002,178.89000000000001,178.84,178.77,178.69,178.61,178.4,27,26.650000000000002,26.47,26.27,26.09,25.900000000000002,25.7,25.52,25.14,N/A,N/A -2012,9,24,9,30,102000,100840,99720,81.97,0,2.92,3.0700000000000003,3.1,3.11,3.12,3.13,3.13,3.13,3.13,167.88,167.95000000000002,168.01,168.07,168.11,168.14000000000001,168.17000000000002,168.19,168.22,27.07,26.72,26.55,26.35,26.16,25.97,25.77,25.580000000000002,25.2,N/A,N/A -2012,9,24,10,30,102000,100840,99720,83.31,0,2.95,3.12,3.16,3.19,3.2,3.22,3.24,3.25,3.2800000000000002,170.17000000000002,170.3,170.39000000000001,170.45000000000002,170.51,170.57,170.62,170.66,170.74,26.990000000000002,26.64,26.46,26.26,26.07,25.88,25.68,25.5,25.11,N/A,N/A -2012,9,24,11,30,102000,100840,99720,81.46000000000001,0,3.0100000000000002,3.18,3.22,3.24,3.2600000000000002,3.27,3.2800000000000002,3.29,3.31,164.22,164.08,163.97,163.87,163.79,163.71,163.64000000000001,163.56,163.45000000000002,27.060000000000002,26.71,26.53,26.330000000000002,26.14,25.95,25.75,25.57,25.18,N/A,N/A -2012,9,24,12,30,102010,100850,99730,79.69,0,2.81,2.99,3.02,3.0500000000000003,3.08,3.11,3.13,3.15,3.2,173.8,173.25,173.03,172.79,172.54,172.28,171.98,171.68,171.02,27.11,26.77,26.6,26.400000000000002,26.21,26.02,25.830000000000002,25.650000000000002,25.26,N/A,N/A -2012,9,24,13,30,102010,100850,99730,81.09,0,2.81,2.97,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.08,3.09,3.1,162.35,162.28,162.28,162.27,162.26,162.24,162.21,162.18,162.11,27,26.64,26.47,26.27,26.080000000000002,25.88,25.69,25.5,25.12,N/A,N/A -2012,9,24,14,30,102030,100870,99750,79.82000000000001,0,2.02,2.13,2.15,2.16,2.17,2.18,2.19,2.2,2.21,145.73,145.54,145.47,145.41,145.35,145.29,145.24,145.19,145.07,27.03,26.69,26.51,26.310000000000002,26.12,25.93,25.73,25.55,25.16,N/A,N/A -2012,9,24,15,30,102030,100870,99750,79.64,0,2.05,2.15,2.17,2.18,2.19,2.2,2.21,2.22,2.24,133.74,133.72,133.76,133.81,133.85,133.88,133.92000000000002,133.96,134.04,27.03,26.68,26.51,26.310000000000002,26.12,25.92,25.73,25.54,25.16,N/A,N/A -2012,9,24,16,30,102010,100850,99730,79.37,0,2.29,2.4,2.42,2.44,2.44,2.45,2.45,2.46,2.47,128.43,128.57,128.63,128.69,128.76,128.83,128.88,128.92000000000002,129.04,27.060000000000002,26.7,26.52,26.330000000000002,26.13,25.94,25.75,25.560000000000002,25.18,N/A,N/A -2012,9,24,17,30,101980,100820,99700,78,0,2.82,2.96,2.98,3,3.0100000000000002,3.0100000000000002,3.02,3.02,3.02,127.22,127.54,127.72,127.88000000000001,128.03,128.17000000000002,128.31,128.45,128.72,27.17,26.8,26.63,26.42,26.23,26.04,25.84,25.66,25.27,N/A,N/A -2012,9,24,18,30,101950,100790,99670,77.65,0,3.0300000000000002,3.18,3.21,3.22,3.23,3.23,3.24,3.24,3.24,132.92000000000002,133.09,133.21,133.33,133.44,133.55,133.66,133.76,133.97,27.240000000000002,26.86,26.68,26.48,26.29,26.1,25.900000000000002,25.71,25.330000000000002,N/A,N/A -2012,9,24,19,30,101930,100770,99650,76.87,0,3.6,3.7800000000000002,3.81,3.83,3.84,3.85,3.85,3.85,3.85,136.79,136.91,136.97,137.02,137.08,137.13,137.19,137.25,137.36,27.29,26.92,26.740000000000002,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A -2012,9,24,20,30,101890,100730,99610,76.77,0,4.28,4.5600000000000005,4.62,4.65,4.67,4.68,4.69,4.69,4.69,142.37,142.46,142.52,142.57,142.61,142.65,142.68,142.71,142.79,27.36,26.990000000000002,26.810000000000002,26.61,26.41,26.22,26.02,25.84,25.45,N/A,N/A -2012,9,24,21,30,101850,100700,99580,75.32000000000001,0,3.91,4.12,4.16,4.18,4.19,4.21,4.21,4.22,4.23,147.70000000000002,147.89000000000001,147.96,148.05,148.13,148.21,148.29,148.36,148.52,27.37,27.03,26.85,26.650000000000002,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,9,24,22,30,101840,100690,99570,72.83,0,4.53,4.79,4.8500000000000005,4.88,4.9,4.91,4.92,4.93,4.95,150.51,150.67000000000002,150.72,150.75,150.77,150.79,150.8,150.8,150.81,27.48,27.16,26.98,26.79,26.6,26.42,26.22,26.04,25.66,N/A,N/A -2012,9,24,23,30,101810,100660,99540,71.86,0,5.15,5.5200000000000005,5.58,5.6000000000000005,5.61,5.61,5.6000000000000005,5.6000000000000005,5.57,150.29,150.22,150.24,150.28,150.32,150.37,150.41,150.46,150.58,27.57,27.240000000000002,27.07,26.87,26.68,26.490000000000002,26.3,26.11,25.73,N/A,N/A -2012,9,25,0,30,101780,100630,99510,66.19,0,5.45,5.87,5.95,6,6.03,6.0600000000000005,6.08,6.09,6.12,155.14000000000001,154.84,154.58,154.32,154.07,153.83,153.59,153.36,152.9,27.79,27.48,27.310000000000002,27.12,26.93,26.740000000000002,26.55,26.36,25.98,N/A,N/A -2012,9,25,1,30,101790,100640,99520,73.24,0,5.72,6.16,6.24,6.2700000000000005,6.3,6.3100000000000005,6.3100000000000005,6.3100000000000005,6.29,146.4,146.55,146.70000000000002,146.86,147.01,147.15,147.3,147.45000000000002,147.75,27.52,27.18,27.01,26.810000000000002,26.62,26.43,26.240000000000002,26.05,25.67,N/A,N/A -2012,9,25,2,30,101800,100650,99530,68.03,0,6.57,7.11,7.23,7.28,7.3100000000000005,7.33,7.34,7.34,7.32,152.12,152.3,152.41,152.51,152.6,152.69,152.78,152.87,153.05,27.79,27.47,27.3,27.1,26.91,26.72,26.52,26.34,25.95,N/A,N/A -2012,9,25,3,30,101790,100640,99520,69.51,0,6.98,7.59,7.71,7.7700000000000005,7.8100000000000005,7.82,7.83,7.83,7.82,156.01,156.14000000000001,156.19,156.25,156.29,156.33,156.38,156.42000000000002,156.51,27.8,27.48,27.310000000000002,27.11,26.92,26.73,26.53,26.35,25.96,N/A,N/A -2012,9,25,4,30,101770,100620,99500,65.87,0,6.98,7.59,7.74,7.82,7.88,7.930000000000001,7.97,8,8.05,160.73,160.81,160.83,160.83,160.83,160.83,160.82,160.81,160.78,27.91,27.6,27.43,27.240000000000002,27.05,26.86,26.67,26.48,26.1,N/A,N/A -2012,9,25,5,30,101770,100610,99490,65.7,0,7.32,7.95,8.09,8.16,8.22,8.25,8.28,8.3,8.33,161.17000000000002,161.36,161.5,161.64000000000001,161.76,161.89000000000001,162.01,162.12,162.37,27.94,27.63,27.46,27.27,27.080000000000002,26.89,26.7,26.51,26.13,N/A,N/A -2012,9,25,6,30,101760,100610,99490,65.28,0,7.32,8.02,8.19,8.28,8.36,8.41,8.45,8.49,8.55,167.4,167.54,167.61,167.66,167.71,167.76,167.79,167.83,167.91,28.05,27.76,27.6,27.41,27.22,27.03,26.84,26.650000000000002,26.27,N/A,N/A -2012,9,25,7,30,101770,100620,99500,71.39,0,7.5,8.22,8.38,8.46,8.51,8.55,8.57,8.58,8.58,169.41,169.53,169.62,169.72,169.82,169.93,170.03,170.13,170.35,27.830000000000002,27.52,27.36,27.16,26.97,26.78,26.580000000000002,26.39,26.01,N/A,N/A -2012,9,25,8,30,101750,100600,99480,68.11,0,6.3,6.92,7.0600000000000005,7.15,7.22,7.28,7.32,7.36,7.42,180.5,179.88,179.66,179.45000000000002,179.27,179.09,178.93,178.78,178.48,27.990000000000002,27.69,27.52,27.32,27.14,26.95,26.75,26.560000000000002,26.18,N/A,N/A -2012,9,25,9,30,101750,100600,99480,72.17,0,7,7.66,7.79,7.87,7.930000000000001,7.96,7.99,8.01,8.02,172.70000000000002,172.67000000000002,172.73,172.82,172.9,172.99,173.08,173.16,173.34,27.84,27.53,27.36,27.16,26.97,26.78,26.580000000000002,26.400000000000002,26.01,N/A,N/A -2012,9,25,10,30,101730,100580,99460,71.22,0,6.45,6.98,7.1000000000000005,7.17,7.21,7.25,7.28,7.3100000000000005,7.3500000000000005,178.1,178.09,177.95000000000002,177.78,177.6,177.42000000000002,177.24,177.06,176.68,27.79,27.48,27.32,27.12,26.94,26.75,26.560000000000002,26.37,25.990000000000002,N/A,N/A -2012,9,25,11,30,101730,100570,99460,74.27,0,6.34,6.94,7.08,7.17,7.23,7.28,7.32,7.3500000000000005,7.390000000000001,172.99,172.57,172.41,172.28,172.18,172.08,172.01,171.94,171.81,27.7,27.37,27.2,27,26.810000000000002,26.62,26.42,26.23,25.84,N/A,N/A -2012,9,25,12,30,101730,100580,99460,76.51,0,6.3100000000000005,6.88,7.0200000000000005,7.1000000000000005,7.17,7.21,7.25,7.28,7.33,167.77,168.05,168.27,168.47,168.65,168.82,168.98,169.13,169.44,27.61,27.28,27.11,26.91,26.72,26.53,26.330000000000002,26.150000000000002,25.76,N/A,N/A -2012,9,25,13,30,101750,100590,99480,76.19,0,6.19,6.73,6.86,6.94,6.99,7.04,7.07,7.1000000000000005,7.15,171.66,171.47,171.39000000000001,171.32,171.26,171.21,171.17000000000002,171.12,171.05,27.52,27.19,27.02,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.66,N/A,N/A -2012,9,25,14,30,101770,100620,99500,75.72,0,5.95,6.42,6.53,6.58,6.62,6.640000000000001,6.66,6.68,6.7,170.33,170.46,170.49,170.51,170.52,170.54,170.55,170.56,170.57,27.61,27.28,27.11,26.92,26.73,26.54,26.34,26.16,25.78,N/A,N/A -2012,9,25,15,30,101770,100610,99500,75.49,0,5.44,5.83,5.9,5.93,5.95,5.97,5.98,5.98,6,174.33,173.51,173.03,172.52,172.06,171.62,171.17000000000002,170.76,169.91,27.650000000000002,27.32,27.150000000000002,26.96,26.77,26.580000000000002,26.38,26.2,25.82,N/A,N/A -2012,9,25,16,30,101750,100600,99480,76.59,0,6.22,6.65,6.72,6.74,6.74,6.74,6.72,6.7,6.66,158.54,159.20000000000002,159.56,159.9,160.20000000000002,160.47,160.75,161.02,161.53,27.61,27.27,27.1,26.900000000000002,26.71,26.52,26.330000000000002,26.14,25.76,N/A,N/A -2012,9,25,17,30,101750,100590,99480,77.32000000000001,0,5.29,5.74,5.84,5.91,5.96,6,6.03,6.05,6.09,163.16,163.15,163.12,163.09,163.05,163.01,162.98,162.94,162.86,27.650000000000002,27.310000000000002,27.14,26.94,26.75,26.560000000000002,26.37,26.18,25.8,N/A,N/A -2012,9,25,18,30,101720,100570,99450,76.7,0,4.89,5.26,5.36,5.42,5.47,5.5,5.53,5.5600000000000005,5.6000000000000005,159.56,160.28,160.55,160.78,160.97,161.14000000000001,161.28,161.41,161.64000000000001,27.72,27.39,27.22,27.02,26.830000000000002,26.64,26.45,26.26,25.88,N/A,N/A -2012,9,25,19,30,101700,100550,99430,73.57000000000001,0,5.94,6.390000000000001,6.48,6.5200000000000005,6.55,6.57,6.58,6.59,6.6000000000000005,158.09,158.16,158.14000000000001,158.1,158.07,158.02,157.98,157.94,157.86,27.79,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,9,25,20,30,101660,100510,99390,74.33,0,5.61,6.07,6.18,6.24,6.3,6.33,6.37,6.390000000000001,6.44,156.42000000000002,156.3,156.20000000000002,156.1,156.01,155.91,155.82,155.73,155.55,27.79,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.95,N/A,N/A -2012,9,25,21,30,101640,100490,99380,75.47,0,6.67,7.24,7.3500000000000005,7.4,7.44,7.45,7.46,7.46,7.46,151.05,150.93,150.85,150.77,150.69,150.62,150.55,150.48,150.36,27.740000000000002,27.42,27.25,27.05,26.86,26.67,26.47,26.29,25.900000000000002,N/A,N/A -2012,9,25,22,30,101630,100480,99370,76.21000000000001,0,7.34,7.96,8.08,8.14,8.17,8.18,8.18,8.18,8.15,151.76,151.62,151.51,151.38,151.26,151.15,151.03,150.92000000000002,150.69,27.71,27.39,27.21,27.02,26.830000000000002,26.63,26.44,26.25,25.87,N/A,N/A -2012,9,25,23,30,101600,100450,99330,74.98,0,6.69,7.29,7.44,7.53,7.6000000000000005,7.640000000000001,7.68,7.71,7.76,144.18,144.08,144.08,144.08,144.07,144.07,144.06,144.05,144.03,27.63,27.3,27.13,26.93,26.740000000000002,26.55,26.35,26.16,25.78,N/A,N/A -2012,9,26,0,30,101580,100430,99320,77.11,0,7.34,8,8.17,8.26,8.33,8.38,8.42,8.45,8.49,140.73,140.88,140.99,141.09,141.17000000000002,141.26,141.33,141.41,141.56,27.53,27.19,27.02,26.810000000000002,26.63,26.43,26.240000000000002,26.05,25.67,N/A,N/A -2012,9,26,1,30,101580,100430,99320,78.35000000000001,0,8.22,8.94,9.09,9.17,9.22,9.25,9.27,9.27,9.26,141.19,141.39000000000001,141.52,141.65,141.77,141.88,142,142.1,142.32,27.46,27.11,26.93,26.73,26.54,26.34,26.150000000000002,25.96,25.580000000000002,N/A,N/A -2012,9,26,2,30,101580,100430,99310,77.01,0,8.18,8.89,9.06,9.15,9.21,9.25,9.28,9.3,9.33,140.42000000000002,140.74,140.87,140.97,141.05,141.12,141.17000000000002,141.22,141.29,27.39,27.04,26.87,26.67,26.47,26.28,26.09,25.900000000000002,25.51,N/A,N/A -2012,9,26,3,30,101570,100420,99310,76.39,0,7.92,8.68,8.870000000000001,8.99,9.08,9.15,9.200000000000001,9.25,9.32,143.69,143.71,143.73,143.75,143.77,143.79,143.8,143.83,143.87,27.46,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A -2012,9,26,4,30,101550,100400,99280,79.12,0,8.39,9.16,9.35,9.46,9.540000000000001,9.6,9.64,9.68,9.73,136.43,136.65,136.82,136.98,137.13,137.27,137.4,137.54,137.8,27.330000000000002,26.97,26.8,26.6,26.41,26.21,26.02,25.830000000000002,25.45,N/A,N/A -2012,9,26,5,30,101550,100400,99280,78.3,0,8.17,9.02,9.22,9.35,9.44,9.51,9.56,9.6,9.66,148.03,147.84,147.75,147.68,147.62,147.56,147.5,147.46,147.37,27.47,27.13,26.95,26.75,26.560000000000002,26.36,26.16,25.98,25.59,N/A,N/A -2012,9,26,6,30,101570,100420,99310,77.37,0,8.23,8.950000000000001,9.120000000000001,9.19,9.23,9.25,9.26,9.26,9.24,153.1,153.1,153.06,153.01,152.96,152.91,152.86,152.8,152.70000000000002,27.47,27.14,26.97,26.77,26.580000000000002,26.38,26.19,26,25.62,N/A,N/A -2012,9,26,7,30,101610,100450,99340,77.57000000000001,0,7.2700000000000005,7.96,8.14,8.25,8.33,8.39,8.44,8.48,8.55,143.58,143.91,144.13,144.34,144.54,144.73,144.92000000000002,145.1,145.46,27.53,27.2,27.03,26.82,26.63,26.45,26.25,26.060000000000002,25.68,N/A,N/A -2012,9,26,8,30,101570,100420,99310,79.49,0,7.86,8.59,8.76,8.85,8.91,8.94,8.96,8.98,8.98,154.53,154.96,155.14000000000001,155.3,155.44,155.56,155.68,155.79,155.99,27.41,27.07,26.900000000000002,26.7,26.51,26.32,26.12,25.94,25.55,N/A,N/A -2012,9,26,9,30,101590,100430,99320,76.25,0,6.67,7.25,7.390000000000001,7.47,7.53,7.57,7.6000000000000005,7.63,7.67,151.12,151.29,151.41,151.52,151.63,151.72,151.81,151.89000000000001,152.05,27.43,27.09,26.91,26.71,26.52,26.330000000000002,26.14,25.95,25.57,N/A,N/A -2012,9,26,10,30,101610,100460,99350,77.78,0,7.41,8.05,8.19,8.27,8.33,8.370000000000001,8.39,8.41,8.44,147.22,147.70000000000002,147.92000000000002,148.13,148.31,148.48,148.64000000000001,148.79,149.08,27.38,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.51,N/A,N/A -2012,9,26,11,30,101630,100470,99360,78.59,0,6.97,7.57,7.71,7.79,7.84,7.88,7.9,7.92,7.94,145.53,145.73,145.9,146.08,146.25,146.41,146.57,146.74,147.08,27.28,26.93,26.76,26.560000000000002,26.37,26.18,25.98,25.8,25.41,N/A,N/A -2012,9,26,12,30,101610,100460,99340,77.02,0,6.58,7.140000000000001,7.25,7.3100000000000005,7.34,7.3500000000000005,7.36,7.36,7.3500000000000005,162.08,161.66,161.48,161.31,161.17000000000002,161.05,160.93,160.81,160.6,27.560000000000002,27.23,27.060000000000002,26.85,26.67,26.48,26.28,26.09,25.71,N/A,N/A -2012,9,26,13,30,101640,100490,99370,76.63,0,6.72,7.29,7.42,7.48,7.51,7.54,7.55,7.5600000000000005,7.5600000000000005,155.55,155.37,155.27,155.19,155.12,155.05,154.99,154.94,154.85,27.560000000000002,27.240000000000002,27.07,26.88,26.69,26.5,26.310000000000002,26.13,25.75,N/A,N/A -2012,9,26,14,30,101670,100520,99410,76.60000000000001,0,5.8100000000000005,6.2700000000000005,6.37,6.42,6.46,6.49,6.5,6.5200000000000005,6.53,148.58,148.77,148.93,149.09,149.23,149.37,149.51,149.64000000000001,149.91,27.580000000000002,27.25,27.080000000000002,26.89,26.7,26.51,26.310000000000002,26.13,25.75,N/A,N/A -2012,9,26,15,30,101700,100540,99430,77.97,0,7,7.63,7.7700000000000005,7.84,7.890000000000001,7.92,7.94,7.96,7.96,145.77,145.63,145.6,145.58,145.56,145.54,145.52,145.51,145.49,27.560000000000002,27.23,27.060000000000002,26.86,26.67,26.48,26.28,26.1,25.72,N/A,N/A -2012,9,26,16,30,101700,100550,99430,77.66,0,5.8500000000000005,6.3100000000000005,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.58,146.07,146.52,146.75,146.96,147.13,147.28,147.42000000000002,147.55,147.78,27.61,27.28,27.11,26.92,26.73,26.53,26.34,26.150000000000002,25.77,N/A,N/A -2012,9,26,17,30,101680,100530,99410,75.02,0,5.21,5.67,5.8,5.9,5.97,6.03,6.08,6.13,6.21,147.38,147.78,148.07,148.33,148.53,148.70000000000002,148.85,148.98,149.22,27.59,27.26,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A -2012,9,26,18,30,101690,100540,99430,74.95,0,6.83,7.42,7.55,7.61,7.66,7.68,7.69,7.7,7.69,146.34,146.43,146.52,146.62,146.70000000000002,146.79,146.88,146.96,147.12,27.77,27.45,27.28,27.07,26.89,26.69,26.5,26.310000000000002,25.92,N/A,N/A -2012,9,26,19,30,101690,100530,99420,74.11,0,6.83,7.42,7.55,7.62,7.67,7.7,7.72,7.74,7.75,146.28,146.23,146.18,146.13,146.08,146.04,146,145.97,145.9,27.68,27.36,27.19,26.990000000000002,26.8,26.61,26.42,26.23,25.85,N/A,N/A -2012,9,26,20,30,101650,100500,99380,71.82000000000001,0,6.83,7.4,7.5200000000000005,7.59,7.63,7.66,7.68,7.69,7.71,146.18,145.8,145.67000000000002,145.54,145.44,145.34,145.24,145.16,145,27.69,27.36,27.19,26.990000000000002,26.810000000000002,26.61,26.42,26.23,25.85,N/A,N/A -2012,9,26,21,30,101660,100500,99390,74.45,0,7.13,7.73,7.88,7.95,8.01,8.040000000000001,8.07,8.09,8.120000000000001,146.92000000000002,146.85,146.72,146.58,146.46,146.34,146.22,146.1,145.85,27.54,27.21,27.04,26.84,26.650000000000002,26.46,26.26,26.080000000000002,25.69,N/A,N/A -2012,9,26,22,30,101650,100500,99380,76.46000000000001,0,6.92,7.51,7.65,7.73,7.78,7.82,7.8500000000000005,7.87,7.9,143.95000000000002,143.73,143.57,143.41,143.27,143.14000000000001,143.01,142.89000000000001,142.66,27.45,27.11,26.94,26.740000000000002,26.55,26.36,26.16,25.97,25.59,N/A,N/A -2012,9,26,23,30,101650,100500,99380,73.2,0,7.32,7.9,8.01,8.05,8.07,8.08,8.07,8.05,8.01,135.5,135.78,135.97,136.15,136.32,136.47,136.62,136.76,137.04,27.46,27.12,26.95,26.75,26.560000000000002,26.37,26.17,25.98,25.6,N/A,N/A -2012,9,27,0,30,101660,100510,99390,72.07000000000001,0,7.67,8.290000000000001,8.42,8.47,8.5,8.51,8.51,8.51,8.48,138.84,138.97,139.05,139.13,139.20000000000002,139.25,139.31,139.36,139.45000000000002,27.38,27.03,26.86,26.66,26.47,26.28,26.080000000000002,25.89,25.51,N/A,N/A -2012,9,27,1,30,101650,100500,99380,68.07000000000001,0,6.88,7.46,7.6000000000000005,7.67,7.72,7.7700000000000005,7.8,7.82,7.87,133.84,134.17000000000002,134.39000000000001,134.6,134.78,134.95,135.11,135.27,135.56,27.46,27.13,26.96,26.76,26.57,26.38,26.18,26,25.62,N/A,N/A -2012,9,27,2,30,101680,100520,99400,72.62,0,7.390000000000001,8.01,8.15,8.22,8.27,8.3,8.32,8.34,8.35,130.92000000000002,131.43,131.73,132.03,132.28,132.53,132.77,133,133.43,27.23,26.88,26.7,26.490000000000002,26.3,26.11,25.91,25.72,25.34,N/A,N/A -2012,9,27,3,30,101680,100520,99400,71.05,0,7.09,7.7,7.84,7.91,7.97,8.01,8.03,8.05,8.08,138.28,138.4,138.41,138.41,138.41,138.4,138.39000000000001,138.39000000000001,138.37,27.240000000000002,26.89,26.72,26.52,26.330000000000002,26.14,25.94,25.76,25.37,N/A,N/A -2012,9,27,4,30,101700,100540,99430,71.63,0,7.2700000000000005,7.79,7.9,7.94,7.96,7.97,7.97,7.97,7.95,137.49,137.89000000000001,138.19,138.49,138.76,139.02,139.27,139.51,139.98,27.18,26.84,26.66,26.46,26.27,26.080000000000002,25.88,25.69,25.310000000000002,N/A,N/A -2012,9,27,5,30,101700,100550,99430,72.79,0,5.5200000000000005,6,6.11,6.18,6.23,6.2700000000000005,6.3,6.32,6.3500000000000005,143.41,143.20000000000002,143.11,143.04,142.97,142.91,142.85,142.8,142.69,27.21,26.86,26.69,26.490000000000002,26.3,26.1,25.91,25.72,25.34,N/A,N/A -2012,9,27,6,30,101700,100550,99430,75.45,0,6.0600000000000005,6.6000000000000005,6.72,6.79,6.84,6.88,6.91,6.93,6.96,146.43,146.18,146.09,146.03,145.99,145.95000000000002,145.93,145.92000000000002,145.89000000000001,27.21,26.86,26.68,26.48,26.29,26.09,25.900000000000002,25.71,25.32,N/A,N/A -2012,9,27,7,30,101740,100590,99470,73.43,0,5.6000000000000005,6.01,6.1000000000000005,6.15,6.18,6.2,6.21,6.23,6.24,137.89000000000001,138.16,138.31,138.45000000000002,138.58,138.70000000000002,138.81,138.92000000000002,139.12,27.32,26.98,26.810000000000002,26.61,26.42,26.23,26.04,25.85,25.47,N/A,N/A -2012,9,27,8,30,101770,100610,99490,76.02,0,4.46,4.79,4.89,4.95,5.01,5.05,5.1000000000000005,5.14,5.22,135.15,136.11,136.6,137.02,137.37,137.68,137.97,138.22,138.68,27.330000000000002,27.01,26.85,26.650000000000002,26.46,26.27,26.080000000000002,25.900000000000002,25.52,N/A,N/A -2012,9,27,9,30,101780,100620,99510,74.78,0,3.85,4.09,4.14,4.17,4.19,4.21,4.22,4.23,4.25,123.37,123.57000000000001,123.69,123.82000000000001,123.92,124.02,124.11,124.2,124.36,27.43,27.11,26.94,26.740000000000002,26.560000000000002,26.37,26.17,25.990000000000002,25.61,N/A,N/A -2012,9,27,10,30,101770,100610,99500,78.10000000000001,0,4.28,4.5200000000000005,4.5600000000000005,4.58,4.59,4.59,4.59,4.6000000000000005,4.6000000000000005,87.88,88.89,89.73,90.62,91.43,92.22,93.02,93.78,95.4,27.38,27.05,26.89,26.69,26.5,26.310000000000002,26.12,25.94,25.560000000000002,N/A,N/A -2012,9,27,11,30,101770,100620,99500,78.24,0,3.9,4.11,4.15,4.17,4.17,4.17,4.17,4.17,4.16,108.94,109.16,109.3,109.43,109.54,109.64,109.73,109.82000000000001,110,27.35,27.03,26.85,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,9,27,12,30,101770,100610,99500,78.49,0,2.88,3.06,3.1,3.13,3.14,3.16,3.17,3.19,3.21,95.02,94.96000000000001,95.10000000000001,95.2,95.3,95.4,95.5,95.60000000000001,95.81,27.36,27.03,26.86,26.67,26.48,26.29,26.1,25.91,25.53,N/A,N/A -2012,9,27,13,30,101770,100610,99500,78.34,0,3.33,3.5300000000000002,3.5700000000000003,3.59,3.6,3.62,3.62,3.63,3.64,97.10000000000001,97.45,97.63,97.8,97.96000000000001,98.12,98.28,98.44,98.76,27.36,27.03,26.86,26.66,26.47,26.28,26.09,25.900000000000002,25.52,N/A,N/A -2012,9,27,14,30,101790,100630,99520,79.98,0,3.5500000000000003,3.79,3.86,3.9,3.93,3.96,3.99,4.01,4.05,86.42,86.49,86.53,86.55,86.55,86.55,86.53,86.52,86.47,27.330000000000002,26.990000000000002,26.830000000000002,26.63,26.44,26.240000000000002,26.05,25.86,25.48,N/A,N/A -2012,9,27,15,30,101800,100650,99530,82.87,0,4.47,4.75,4.8,4.82,4.84,4.84,4.84,4.84,4.82,80.24,80.4,80.44,80.48,80.5,80.52,80.54,80.57000000000001,80.60000000000001,27.23,26.89,26.71,26.51,26.32,26.13,25.93,25.75,25.36,N/A,N/A -2012,9,27,16,30,101810,100660,99540,83.88,0,6.17,6.66,6.76,6.79,6.8100000000000005,6.8,6.79,6.78,6.72,65.21000000000001,65.27,65.29,65.3,65.32000000000001,65.32000000000001,65.32000000000001,65.31,65.3,27.27,26.92,26.75,26.54,26.35,26.16,25.96,25.77,25.39,N/A,N/A -2012,9,27,17,30,101760,100610,99490,84.66,0,6.49,6.93,7,7.0200000000000005,7.0200000000000005,7.01,6.99,6.97,6.91,82.11,81.8,81.57000000000001,81.31,81.05,80.8,80.55,80.31,79.8,27.14,26.78,26.61,26.41,26.22,26.02,25.830000000000002,25.650000000000002,25.27,N/A,N/A -2012,9,27,18,30,101730,100570,99460,80.04,0,5.96,6.4,6.5,6.55,6.58,6.6000000000000005,6.61,6.62,6.62,85.55,85.36,85.29,85.21000000000001,85.12,85.04,84.95,84.86,84.69,27.22,26.87,26.7,26.490000000000002,26.310000000000002,26.12,25.92,25.740000000000002,25.36,N/A,N/A -2012,9,27,19,30,101730,100580,99460,85.67,0,6.17,6.58,6.65,6.67,6.68,6.68,6.67,6.65,6.62,105.39,105.16,104.88,104.62,104.37,104.14,103.91,103.7,103.28,27.07,26.71,26.53,26.330000000000002,26.13,25.94,25.75,25.560000000000002,25.18,N/A,N/A -2012,9,27,20,30,101670,100510,99400,82.81,0,4.67,4.94,4.98,4.99,4.99,4.99,4.98,4.96,4.93,115.28,114.88,114.68,114.46000000000001,114.26,114.05,113.84,113.64,113.15,26.91,26.55,26.38,26.18,25.990000000000002,25.8,25.62,25.43,25.07,N/A,N/A -2012,9,27,21,30,101680,100520,99410,81.37,0,4.19,4.43,4.48,4.5,4.5,4.5,4.5,4.5,4.47,100.86,100.97,101.03,101.09,101.14,101.18,101.22,101.26,101.37,27.09,26.740000000000002,26.57,26.37,26.18,25.990000000000002,25.79,25.61,25.23,N/A,N/A -2012,9,27,22,30,101690,100530,99420,79.44,0,3.54,3.73,3.77,3.7800000000000002,3.79,3.79,3.79,3.79,3.7800000000000002,106.98,107.17,107.21000000000001,107.26,107.32000000000001,107.4,107.47,107.54,107.7,27.2,26.86,26.69,26.490000000000002,26.3,26.11,25.91,25.73,25.35,N/A,N/A -2012,9,27,23,30,101650,100500,99380,79.83,0,4.1,4.3500000000000005,4.41,4.44,4.46,4.47,4.48,4.49,4.5,109.68,109.93,110.01,110.12,110.22,110.32000000000001,110.42,110.52,110.73,27.22,26.89,26.72,26.52,26.330000000000002,26.14,25.95,25.76,25.38,N/A,N/A -2012,9,28,0,30,101620,100470,99360,77.59,0,3.68,3.9,3.95,3.97,3.99,3.99,4,4.01,4.01,108.69,108.72,108.78,108.84,108.89,108.93,108.98,109.02,109.11,27.32,26.990000000000002,26.82,26.62,26.43,26.240000000000002,26.04,25.86,25.48,N/A,N/A -2012,9,28,1,30,101630,100470,99360,84.37,0,4.21,4.46,4.5200000000000005,4.55,4.57,4.58,4.59,4.59,4.59,113.44,113.16,113.10000000000001,113.04,112.98,112.93,112.87,112.8,112.64,26.95,26.6,26.43,26.23,26.04,25.85,25.66,25.47,25.09,N/A,N/A -2012,9,28,2,30,101630,100470,99350,84.28,0,5.0600000000000005,5.4,5.48,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,5.62,111.43,110.99000000000001,110.81,110.62,110.45,110.28,110.10000000000001,109.93,109.54,26.97,26.62,26.45,26.240000000000002,26.05,25.87,25.67,25.490000000000002,25.11,N/A,N/A -2012,9,28,3,30,101630,100470,99360,79.92,0,4.8,5.1000000000000005,5.16,5.18,5.2,5.2,5.21,5.21,5.2,124.8,124.84,124.88000000000001,124.92,124.95,124.97,125,125.01,125.06,27.12,26.78,26.61,26.41,26.22,26.04,25.84,25.66,25.29,N/A,N/A -2012,9,28,4,30,101600,100450,99330,86.48,0,4.44,4.74,4.8100000000000005,4.86,4.89,4.91,4.93,4.95,4.98,130.38,130.36,130.32,130.29,130.25,130.21,130.16,130.12,130.02,26.94,26.59,26.41,26.21,26.02,25.830000000000002,25.64,25.45,25.080000000000002,N/A,N/A -2012,9,28,5,30,101600,100450,99330,84.84,0,4.86,5.18,5.25,5.28,5.29,5.3,5.3,5.3,5.29,124.96000000000001,125.28,125.41,125.51,125.59,125.67,125.74000000000001,125.8,125.93,27.19,26.85,26.67,26.47,26.28,26.09,25.89,25.7,25.310000000000002,N/A,N/A -2012,9,28,6,30,101630,100480,99360,85.13,0,4.68,5,5.07,5.11,5.13,5.14,5.15,5.16,5.16,155.92000000000002,156.05,155.94,155.8,155.66,155.49,155.31,155.13,154.71,27.19,26.86,26.69,26.490000000000002,26.310000000000002,26.12,25.93,25.740000000000002,25.37,N/A,N/A -2012,9,28,7,30,101660,100510,99390,83.82000000000001,0,4.5200000000000005,4.84,4.92,4.98,5.0200000000000005,5.05,5.08,5.11,5.17,159.13,159.28,159.31,159.35,159.39000000000001,159.45000000000002,159.49,159.54,159.63,27.04,26.7,26.53,26.330000000000002,26.14,25.95,25.77,25.580000000000002,25.21,N/A,N/A -2012,9,28,8,30,101630,100480,99360,83.03,0,4.29,4.57,4.64,4.68,4.7,4.72,4.74,4.75,4.7700000000000005,161.78,162.03,162.16,162.29,162.4,162.5,162.6,162.70000000000002,162.91,27.18,26.830000000000002,26.66,26.46,26.27,26.080000000000002,25.89,25.7,25.32,N/A,N/A -2012,9,28,9,30,101640,100490,99370,82.83,0,4.78,5.19,5.3,5.37,5.41,5.45,5.48,5.5,5.54,195.74,195.58,195.49,195.4,195.31,195.23000000000002,195.14000000000001,195.06,194.87,27.34,27,26.830000000000002,26.63,26.44,26.25,26.060000000000002,25.87,25.490000000000002,N/A,N/A -2012,9,28,10,30,101630,100470,99360,82.13,0,4.1,4.41,4.49,4.54,4.57,4.61,4.63,4.65,4.68,200.73000000000002,199.62,199.11,198.63,198.20000000000002,197.81,197.45000000000002,197.12,196.57,27.44,27.1,26.93,26.73,26.54,26.35,26.16,25.97,25.580000000000002,N/A,N/A -2012,9,28,11,30,101630,100480,99370,80.39,9.5,4.42,5,5.2,5.36,5.5,5.62,5.72,5.79,5.88,188.72,189.87,190.55,191.06,191.35,191.5,191.63,191.74,191.87,27.46,27.16,27.01,26.82,26.64,26.46,26.27,26.09,25.71,N/A,N/A -2012,9,28,12,30,101660,100510,99400,77.57000000000001,7.300000000000001,4.96,5.38,5.48,5.54,5.58,5.6000000000000005,5.61,5.62,5.61,207.58,207.64000000000001,207.74,207.86,207.97,208.08,208.22,208.37,208.65,27.66,27.34,27.17,26.97,26.78,26.59,26.39,26.21,25.830000000000002,N/A,N/A -2012,9,28,13,30,101650,100500,99380,81.11,0,4.37,4.68,4.76,4.82,4.88,4.94,5.01,5.08,5.22,241.82,237.71,235.19,232.66,230.4,228.20000000000002,226.05,224.01,220.26,27.25,26.95,26.8,26.63,26.47,26.310000000000002,26.14,25.98,25.66,N/A,N/A -2012,9,28,14,30,101650,100500,99390,77.27,0,5,5.43,5.51,5.55,5.57,5.58,5.58,5.58,5.55,212.6,212.84,212.89000000000001,212.94,212.99,213.05,213.12,213.18,213.34,27.78,27.47,27.3,27.1,26.92,26.73,26.53,26.34,25.96,N/A,N/A -2012,9,28,15,30,101640,100490,99360,89.84,0.4,4.57,4.69,4.66,4.59,4.5,4.41,3.72,3,1.6400000000000001,327.04,326.7,326.52,326.25,325.91,325.53000000000003,323.21,320.81,298.79,25.67,25.28,25.11,24.91,24.72,24.54,24.490000000000002,24.5,24.45,N/A,N/A -2012,9,28,16,30,101650,100490,99370,89.48,33,2.21,2.17,2.1,2,1.78,1.51,1.43,1.4000000000000001,1.83,343.62,340.29,337.87,334.54,325.02,313.26,277.73,238.57,216.08,25.73,25.37,25.2,25.04,24.91,24.8,24.78,24.78,24.68,N/A,N/A -2012,9,28,17,30,101640,100480,99350,90.12,15,2.9,2.57,2.18,1.67,1.23,0.88,0.54,0.33,0.44,28.98,30.240000000000002,31.53,33.8,38.25,43.1,64.93,81.58,168.92000000000002,24.650000000000002,24.35,24.32,24.39,24.43,24.45,24.45,24.44,24.36,N/A,N/A -2012,9,28,18,30,101640,100470,99350,88.03,0,4.24,4.14,4,3.8000000000000003,3.6,3.38,3.13,2.9,2.4,93.63,94.67,95.07000000000001,95.37,95.62,95.83,96.44,97.12,101.28,25.37,24.98,24.810000000000002,24.63,24.46,24.3,24.150000000000002,24.01,23.75,N/A,N/A -2012,9,28,19,30,101570,100420,99300,82.67,0,1.92,1.94,1.93,1.92,1.92,1.92,1.99,2.09,3.12,129.68,134.34,137.45000000000002,141.38,145.89000000000001,151.19,159.52,169.11,190.76,26.310000000000002,25.95,25.79,25.6,25.43,25.26,25.11,24.97,24.85,N/A,N/A -2012,9,28,20,30,101520,100370,99250,82.01,0,3.14,3.33,3.38,3.42,3.45,3.49,3.54,3.59,3.77,138.26,139.55,140.31,141.21,142.18,143.29,144.75,146.29,151.08,26.8,26.44,26.27,26.060000000000002,25.88,25.69,25.51,25.330000000000002,24.98,N/A,N/A -2012,9,28,21,30,101490,100340,99220,80.13,0,2.27,2.5100000000000002,2.63,2.73,2.82,2.91,2.99,3.0700000000000003,3.23,155.24,157.47,158.59,159.58,160.43,161.22,161.95000000000002,162.64000000000001,163.95000000000002,27.330000000000002,27,26.830000000000002,26.64,26.45,26.27,26.080000000000002,25.900000000000002,25.53,N/A,N/A -2012,9,28,22,30,101470,100320,99210,76.68,0,3.75,4.01,4.07,4.1,4.13,4.15,4.16,4.17,4.19,187.92000000000002,188.08,188.19,188.29,188.39000000000001,188.47,188.55,188.64000000000001,188.78,27.69,27.37,27.2,27,26.810000000000002,26.62,26.42,26.23,25.85,N/A,N/A -2012,9,28,23,30,101450,100310,99190,75.79,0,3.83,4.11,4.17,4.2,4.23,4.25,4.26,4.2700000000000005,4.29,176.69,176.92000000000002,177.18,177.42000000000002,177.63,177.82,178.01,178.17000000000002,178.49,27.69,27.38,27.21,27.01,26.82,26.63,26.43,26.25,25.86,N/A,N/A -2012,9,29,0,30,101460,100310,99190,77.91,0,3.6,3.79,3.81,3.8000000000000003,3.79,3.7800000000000002,3.7600000000000002,3.74,3.71,157.84,158.35,158.72,159.12,159.48,159.82,160.16,160.49,161.16,27.57,27.25,27.09,26.89,26.7,26.51,26.32,26.13,25.75,N/A,N/A -2012,9,29,1,30,101440,100290,99170,77.99,0,2.7600000000000002,2.91,2.94,2.95,2.96,2.97,2.98,2.99,3,148.48,149.69,150.36,151.06,151.67000000000002,152.25,152.84,153.4,154.53,27.5,27.18,27.02,26.810000000000002,26.63,26.44,26.240000000000002,26.060000000000002,25.67,N/A,N/A -2012,9,29,2,30,101440,100290,99180,82.24,0,3.63,3.71,3.67,3.6,3.5500000000000003,3.49,3.42,3.37,3.25,150.93,152.12,152.86,153.64000000000001,154.37,155.08,155.81,156.51,157.98,27.26,26.93,26.77,26.580000000000002,26.39,26.21,26.02,25.84,25.47,N/A,N/A -2012,9,29,3,30,101440,100290,99180,82.95,0,3.48,3.62,3.63,3.61,3.6,3.5700000000000003,3.5500000000000003,3.52,3.45,136.97,136.96,136.95000000000002,136.93,136.92000000000002,136.9,136.89000000000001,136.88,136.84,27.14,26.8,26.63,26.43,26.240000000000002,26.05,25.86,25.67,25.29,N/A,N/A -2012,9,29,4,30,101410,100260,99150,82.22,0,3.34,3.5300000000000002,3.58,3.6,3.62,3.63,3.65,3.66,3.68,147.84,148.16,148.23,148.31,148.38,148.46,148.55,148.64000000000001,148.85,27.2,26.87,26.7,26.5,26.32,26.13,25.94,25.75,25.37,N/A,N/A -2012,9,29,5,30,101410,100260,99150,84.49,5.1000000000000005,4.54,4.82,4.89,4.93,4.95,4.97,4.98,4.99,5,164.18,164.14000000000001,164.13,164.12,164.13,164.14000000000001,164.16,164.19,164.27,27.14,26.8,26.63,26.43,26.25,26.060000000000002,25.87,25.69,25.310000000000002,N/A,N/A -2012,9,29,6,30,101400,100250,99130,83.52,0,4.3500000000000005,4.62,4.67,4.69,4.7,4.71,4.71,4.71,4.7,174.41,174.31,174.15,173.99,173.84,173.69,173.54,173.4,173.09,27.2,26.85,26.68,26.48,26.29,26.1,25.900000000000002,25.72,25.330000000000002,N/A,N/A -2012,9,29,7,30,101390,100240,99130,82.65,0,4.83,5.19,5.2700000000000005,5.32,5.36,5.38,5.4,5.41,5.43,181.51,181.34,181.26,181.19,181.13,181.09,181.04,181,180.93,27.310000000000002,26.96,26.79,26.59,26.400000000000002,26.21,26.01,25.830000000000002,25.44,N/A,N/A -2012,9,29,8,30,101380,100230,99120,81.13,0,6.99,7.65,7.82,7.92,7.99,8.03,8.06,8.09,8.120000000000001,171.6,171.56,171.57,171.61,171.64000000000001,171.68,171.73,171.77,171.86,27.580000000000002,27.26,27.09,26.89,26.71,26.51,26.32,26.13,25.76,N/A,N/A -2012,9,29,9,30,101370,100220,99110,77.2,0,6.49,7.05,7.18,7.25,7.29,7.32,7.34,7.3500000000000005,7.36,181.19,181.36,181.45000000000002,181.52,181.58,181.63,181.68,181.73,181.82,27.77,27.45,27.28,27.080000000000002,26.900000000000002,26.71,26.51,26.330000000000002,25.95,N/A,N/A -2012,9,29,10,30,101350,100200,99090,76.81,0,6.57,7.16,7.29,7.36,7.41,7.45,7.47,7.49,7.5,188.51,188.26,188.15,188.06,187.98,187.9,187.83,187.76,187.64000000000001,27.78,27.46,27.3,27.1,26.91,26.72,26.52,26.34,25.96,N/A,N/A -2012,9,29,11,30,101360,100210,99100,73.53,0,6.5200000000000005,7.09,7.22,7.28,7.33,7.3500000000000005,7.37,7.390000000000001,7.4,184.24,184.36,184.32,184.24,184.14000000000001,184.03,183.91,183.79,183.53,27.89,27.59,27.43,27.23,27.04,26.85,26.650000000000002,26.47,26.09,N/A,N/A -2012,9,29,12,30,101350,100210,99090,74.17,0,6.34,6.890000000000001,7.01,7.09,7.140000000000001,7.17,7.19,7.21,7.24,186.77,186.75,186.72,186.67000000000002,186.63,186.58,186.52,186.47,186.36,27.93,27.62,27.46,27.26,27.07,26.89,26.69,26.5,26.12,N/A,N/A -2012,9,29,13,30,101360,100210,99100,72.37,0,5.97,6.53,6.67,6.75,6.8100000000000005,6.8500000000000005,6.890000000000001,6.92,6.96,187.15,186.84,186.72,186.59,186.48,186.36,186.24,186.13,185.89000000000001,28.01,27.72,27.55,27.36,27.17,26.98,26.78,26.6,26.21,N/A,N/A -2012,9,29,14,30,101360,100210,99100,71.06,0,5.5200000000000005,5.99,6.09,6.16,6.2,6.23,6.26,6.28,6.32,176.38,176.77,177.06,177.36,177.65,177.93,178.24,178.52,179.15,28.09,27.8,27.64,27.45,27.26,27.080000000000002,26.89,26.71,26.330000000000002,N/A,N/A -2012,9,29,15,30,101340,100190,99080,69.81,0,5.17,5.61,5.7,5.76,5.8,5.82,5.84,5.86,5.89,172.16,172.94,173.39000000000001,173.79,174.16,174.5,174.83,175.14000000000001,175.73,28.19,27.91,27.75,27.560000000000002,27.38,27.19,27,26.810000000000002,26.44,N/A,N/A -2012,9,29,16,30,101290,100140,99030,66.92,0,5.2,5.6000000000000005,5.68,5.72,5.74,5.75,5.76,5.7700000000000005,5.7700000000000005,167.8,168.06,168.34,168.66,168.96,169.27,169.6,169.91,170.56,28.310000000000002,28.05,27.900000000000002,27.71,27.53,27.34,27.16,26.97,26.6,N/A,N/A -2012,9,29,17,30,101220,100070,98960,66.78,0,5.68,6.16,6.2700000000000005,6.34,6.38,6.41,6.44,6.46,6.49,157.37,157.72,157.94,158.16,158.34,158.51,158.68,158.84,159.14000000000001,28.36,28.1,27.95,27.75,27.57,27.39,27.2,27.01,26.64,N/A,N/A -2012,9,29,18,30,101160,100020,98910,67.85,0,5.3500000000000005,5.76,5.8500000000000005,5.89,5.92,5.94,5.96,5.97,5.99,155.33,155.69,155.99,156.3,156.58,156.86,157.14000000000001,157.4,157.92000000000002,28.330000000000002,28.060000000000002,27.900000000000002,27.71,27.53,27.34,27.150000000000002,26.97,26.59,N/A,N/A -2012,9,29,19,30,101110,99970,98860,70.25,0,5.3500000000000005,5.78,5.87,5.91,5.94,5.96,5.98,5.99,6.01,150.46,150.33,150.3,150.33,150.36,150.42000000000002,150.5,150.58,150.81,28.26,27.990000000000002,27.830000000000002,27.64,27.46,27.27,27.080000000000002,26.900000000000002,26.53,N/A,N/A -2012,9,29,20,30,101060,99920,98810,72.81,0,5.74,6.23,6.34,6.4,6.43,6.46,6.47,6.49,6.5,156.03,156.27,156.41,156.54,156.67000000000002,156.79,156.92000000000002,157.03,157.26,28.240000000000002,27.96,27.8,27.61,27.42,27.23,27.04,26.85,26.48,N/A,N/A -2012,9,29,21,30,101050,99900,98780,89.29,91.9,11.620000000000001,12.59,12.790000000000001,12.88,12.91,12.92,12.9,12.88,12.81,155.47,156.76,157.64000000000001,158.6,159.6,160.59,161.78,162.93,165.76,24.86,24.38,24.2,24.04,23.89,23.75,23.61,23.48,23.2,N/A,N/A -2012,9,29,22,30,101040,99890,98770,87.22,2.9000000000000004,6.8500000000000005,7.33,7.44,7.5,7.53,7.55,7.5600000000000005,7.5600000000000005,7.55,161.41,161.86,162.03,162.19,162.32,162.45000000000002,162.58,162.70000000000002,162.95000000000002,25.18,24.72,24.53,24.32,24.13,23.94,23.740000000000002,23.56,23.19,N/A,N/A -2012,9,29,23,30,100990,99830,98710,83.83,20.5,7.390000000000001,7.94,8.06,8.120000000000001,8.16,8.18,8.19,8.19,8.19,143.43,143.73,143.73,143.72,143.71,143.69,143.67000000000002,143.66,143.6,25.150000000000002,24.69,24.5,24.29,24.09,23.900000000000002,23.71,23.53,23.150000000000002,N/A,N/A -2012,9,30,0,30,100930,99780,98660,91.15,15,7.54,8.3,8.49,8.620000000000001,8.73,8.82,8.91,8.99,9.18,147.84,148.79,149.05,149.26,149.47,149.67000000000002,149.89000000000001,150.08,150.63,24.61,24.13,23.93,23.73,23.54,23.36,23.17,23,22.650000000000002,N/A,N/A -2012,9,30,1,30,100880,99730,98610,88.81,0,8.27,8.89,9.040000000000001,9.1,9.14,9.16,9.17,9.17,9.17,142.47,142.58,142.72,142.87,143.02,143.18,143.36,143.54,143.99,25.400000000000002,24.94,24.740000000000002,24.53,24.34,24.150000000000002,23.95,23.77,23.400000000000002,N/A,N/A -2012,9,30,2,30,100880,99720,98610,90.79,0,9.39,10.11,10.28,10.34,10.38,10.39,10.4,10.41,10.41,138.77,138.99,139.23,139.5,139.78,140.07,140.42000000000002,140.76,141.68,25.29,24.8,24.6,24.39,24.2,24.01,23.82,23.64,23.28,N/A,N/A -2012,9,30,3,30,100840,99690,98580,88.79,0.7000000000000001,9.61,10.51,10.76,10.91,11.02,11.09,11.15,11.200000000000001,11.27,143.56,143.74,143.91,144.08,144.25,144.41,144.58,144.74,145.09,26.29,25.86,25.67,25.45,25.26,25.07,24.87,24.68,24.3,N/A,N/A -2012,9,30,4,30,100750,99610,98500,88.48,0.7000000000000001,11.99,13.200000000000001,13.5,13.66,13.76,13.82,13.85,13.870000000000001,13.870000000000001,163.49,163.78,163.84,163.93,164,164.08,164.17000000000002,164.26,164.47,27.05,26.66,26.47,26.26,26.07,25.87,25.68,25.490000000000002,25.11,N/A,N/A -2012,9,30,5,30,100690,99550,98450,92.17,0,10.38,11.33,11.58,11.71,11.8,11.86,11.9,11.93,11.98,166.95000000000002,167.51,167.85,168.18,168.49,168.79,169.11,169.43,170.17000000000002,27,26.62,26.45,26.25,26.07,25.89,25.71,25.54,25.19,N/A,N/A -2012,9,30,6,30,100550,99420,98320,86.05,7.300000000000001,10.9,12.200000000000001,12.49,12.68,12.82,12.92,13,13.07,13.19,174.5,175.19,175.57,175.93,176.28,176.59,176.92000000000002,177.23,177.88,27.73,27.41,27.240000000000002,27.04,26.85,26.67,26.48,26.3,25.92,N/A,N/A -2012,9,30,7,30,100610,99480,98380,75.18,0,11.38,12.71,13.1,13.36,13.57,13.72,13.84,13.94,14.09,210.86,210.99,211.04,211.11,211.16,211.22,211.27,211.33,211.43,28.740000000000002,28.560000000000002,28.43,28.26,28.09,27.92,27.740000000000002,27.57,27.21,N/A,N/A -2012,9,30,8,30,100600,99460,98360,72.2,0,11.16,12.49,12.89,13.17,13.39,13.55,13.68,13.8,13.98,213.86,213.99,214.03,214.08,214.11,214.14000000000001,214.17000000000002,214.19,214.22,28.8,28.62,28.490000000000002,28.310000000000002,28.14,27.96,27.78,27.6,27.23,N/A,N/A -2012,9,30,9,30,100550,99420,98320,73.55,0,11.52,12.86,13.26,13.52,13.71,13.86,13.97,14.07,14.21,219.67000000000002,219.74,219.79,219.83,219.87,219.9,219.93,219.95000000000002,220,28.71,28.52,28.38,28.2,28.03,27.85,27.67,27.490000000000002,27.12,N/A,N/A -2012,9,30,10,30,100470,99340,98240,79.4,0,11.08,12.4,12.8,13.05,13.24,13.370000000000001,13.47,13.55,13.66,210.65,210.71,210.81,210.89000000000001,210.95000000000002,210.99,211.03,211.06,211.1,28.400000000000002,28.17,28.02,27.830000000000002,27.650000000000002,27.46,27.27,27.09,26.71,N/A,N/A -2012,9,30,11,30,100470,99320,98210,86.58,1.8,9.99,10.950000000000001,11.23,11.4,11.53,11.620000000000001,11.700000000000001,11.76,11.86,271.19,270.32,269.87,269.41,269.01,268.62,268.26,267.92,267.24,26.080000000000002,25.66,25.47,25.26,25.07,24.87,24.68,24.5,24.13,N/A,N/A -2012,9,30,12,30,100430,99280,98170,83.46000000000001,0,9.51,10.33,10.540000000000001,10.65,10.72,10.77,10.81,10.83,10.86,268.87,268.87,268.81,268.73,268.66,268.59000000000003,268.5,268.41,268.21,25.69,25.240000000000002,25.04,24.830000000000002,24.63,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,9,30,13,30,100430,99280,98170,80.53,0,9.09,9.88,10.08,10.19,10.26,10.31,10.35,10.38,10.42,265.29,265.19,265.06,264.94,264.82,264.71,264.6,264.49,264.26,25.79,25.34,25.150000000000002,24.94,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A -2012,9,30,14,30,100430,99280,98160,93.52,0,9.44,10.14,10.3,10.370000000000001,10.41,10.43,10.43,10.43,10.42,273.66,273.41,273.24,273.06,272.9,272.73,272.56,272.39,272,24.01,23.47,23.25,23.03,22.830000000000002,22.64,22.44,22.26,21.88,N/A,N/A -2012,9,30,15,30,100450,99300,98180,89.3,0,8.84,9.49,9.64,9.700000000000001,9.74,9.76,9.76,9.76,9.73,281.35,281.34000000000003,281.31,281.24,281.14,281.03000000000003,280.87,280.71,280.23,24.29,23.77,23.56,23.34,23.150000000000002,22.95,22.76,22.580000000000002,22.22,N/A,N/A -2012,9,30,16,30,100460,99310,98180,89.64,0.4,8.08,8.63,8.75,8.81,8.84,8.86,8.870000000000001,8.870000000000001,8.870000000000001,280.03000000000003,280.35,280.53000000000003,280.7,280.85,280.99,281.15000000000003,281.29,281.61,23.34,22.79,22.580000000000002,22.36,22.150000000000002,21.96,21.76,21.580000000000002,21.2,N/A,N/A -2012,9,30,17,30,100470,99320,98190,88.95,5.5,9.93,10.700000000000001,10.88,10.950000000000001,11,11.02,11.03,11.040000000000001,11.02,286.86,287.15000000000003,287.33,287.49,287.65000000000003,287.8,287.95,288.1,288.42,23.31,22.72,22.490000000000002,22.26,22.06,21.86,21.66,21.48,21.1,N/A,N/A -2012,9,30,18,30,100490,99330,98200,87.48,0.7000000000000001,10.92,11.84,12.07,12.17,12.25,12.290000000000001,12.32,12.34,12.34,299.18,299.57,299.81,300.05,300.27,300.49,300.71,300.91,301.38,23.07,22.44,22.21,21.98,21.77,21.57,21.36,21.18,20.79,N/A,N/A -2012,9,30,19,30,100500,99340,98220,86.49,0.4,11.84,12.88,13.15,13.290000000000001,13.39,13.450000000000001,13.49,13.52,13.540000000000001,300.19,300.63,300.87,301.1,301.29,301.49,301.67,301.84000000000003,302.2,23.18,22.54,22.3,22.07,21.85,21.650000000000002,21.44,21.25,20.86,N/A,N/A -2012,9,30,20,30,100510,99350,98220,88.83,1.1,12.99,14.17,14.47,14.64,14.76,14.83,14.870000000000001,14.91,14.94,325.86,325.62,325.43,325.22,325.02,324.83,324.63,324.44,324.04,22.55,21.85,21.59,21.34,21.12,20.91,20.7,20.51,20.11,N/A,N/A -2012,9,30,21,30,100550,99390,98250,86.76,1.1,14.84,16.15,16.45,16.57,16.62,16.64,16.62,16.6,16.5,320.73,321.07,321.25,321.40000000000003,321.53000000000003,321.65000000000003,321.76,321.86,322.07,21.67,20.88,20.6,20.35,20.13,19.92,19.71,19.52,19.13,N/A,N/A -2012,9,30,22,30,100560,99400,98260,87.58,1.8,13.14,14.35,14.65,14.82,14.93,15.01,15.06,15.1,15.15,330.47,330.52,330.57,330.62,330.66,330.7,330.74,330.78000000000003,330.86,21.27,20.51,20.240000000000002,20,19.77,19.57,19.36,19.16,18.77,N/A,N/A -2012,9,30,23,30,100610,99450,98310,87,1.5,12.42,13.5,13.780000000000001,13.92,14.01,14.08,14.11,14.14,14.16,331.35,331.55,331.7,331.84000000000003,331.97,332.09000000000003,332.21,332.32,332.57,21.23,20.47,20.21,19.96,19.740000000000002,19.53,19.32,19.12,18.73,N/A,N/A -2012,10,1,0,30,100630,99460,98320,85.96000000000001,1.5,12.44,13.52,13.8,13.950000000000001,14.05,14.120000000000001,14.16,14.200000000000001,14.23,341.8,341.6,341.46,341.31,341.17,341.05,340.91,340.79,340.54,21.13,20.38,20.11,19.87,19.650000000000002,19.44,19.23,19.04,18.64,N/A,N/A -2012,10,1,1,30,100680,99500,98360,86.60000000000001,1.1,12.6,13.68,13.94,14.07,14.15,14.21,14.24,14.26,14.27,337.52,337.54,337.54,337.52,337.5,337.46,337.43,337.41,337.35,20.51,19.71,19.44,19.19,18.97,18.76,18.55,18.35,17.96,N/A,N/A -2012,10,1,2,30,100710,99530,98390,87,0.5,12.790000000000001,13.870000000000001,14.13,14.26,14.35,14.4,14.43,14.450000000000001,14.46,336.07,336.11,336.12,336.14,336.15000000000003,336.16,336.17,336.17,336.19,19.79,18.95,18.67,18.41,18.18,17.97,17.75,17.55,17.150000000000002,N/A,N/A -2012,10,1,3,30,100750,99570,98420,87.09,0.4,12.46,13.51,13.77,13.91,14.01,14.07,14.11,14.14,14.17,343.1,343.21,343.25,343.28000000000003,343.31,343.34000000000003,343.37,343.40000000000003,343.44,19.31,18.46,18.17,17.91,17.68,17.46,17.240000000000002,17.04,16.64,N/A,N/A -2012,10,1,4,30,100760,99580,98430,84.05,0,12.09,13.07,13.32,13.46,13.56,13.61,13.66,13.69,13.72,349.07,348.96,348.86,348.78000000000003,348.7,348.62,348.55,348.48,348.35,19.330000000000002,18.5,18.21,17.96,17.73,17.51,17.3,17.1,16.69,N/A,N/A -2012,10,1,5,30,100760,99580,98430,87.16,0,11.450000000000001,12.35,12.57,12.67,12.74,12.790000000000001,12.81,12.82,12.84,341.64,341.8,341.84000000000003,341.88,341.90000000000003,341.93,341.95,341.97,342,19.34,18.53,18.240000000000002,17.98,17.75,17.54,17.32,17.13,16.72,N/A,N/A -2012,10,1,6,30,100830,99640,98490,84.95,0,12.030000000000001,13,13.23,13.34,13.41,13.450000000000001,13.47,13.49,13.49,348.21,348.11,348.03000000000003,347.96,347.89,347.82,347.75,347.69,347.55,18.900000000000002,18.07,17.78,17.53,17.3,17.09,16.87,16.67,16.27,N/A,N/A -2012,10,1,7,30,100840,99660,98510,85.06,0,11.82,12.77,13.02,13.15,13.24,13.290000000000001,13.33,13.36,13.38,346.84000000000003,346.78000000000003,346.75,346.72,346.7,346.68,346.65000000000003,346.63,346.59000000000003,19.06,18.240000000000002,17.95,17.7,17.47,17.26,17.04,16.84,16.43,N/A,N/A -2012,10,1,8,30,100850,99670,98520,83,0,11.67,12.620000000000001,12.86,12.99,13.07,13.120000000000001,13.16,13.19,13.22,349.37,349.48,349.54,349.57,349.6,349.62,349.64,349.67,349.71,19.27,18.46,18.18,17.92,17.7,17.48,17.27,17.07,16.67,N/A,N/A -2012,10,1,9,30,100860,99680,98530,81.99,0,11.47,12.43,12.67,12.8,12.89,12.96,13.01,13.05,13.11,347.95,348.09000000000003,348.2,348.28000000000003,348.37,348.44,348.52,348.59000000000003,348.73,19.54,18.75,18.490000000000002,18.240000000000002,18.01,17.8,17.580000000000002,17.39,16.990000000000002,N/A,N/A -2012,10,1,10,30,100900,99720,98570,80.06,0,11.25,12.19,12.42,12.55,12.64,12.71,12.76,12.8,12.85,351.08,351.11,351.12,351.12,351.12,351.12,351.11,351.11,351.11,19.81,19.04,18.77,18.53,18.31,18.1,17.89,17.69,17.29,N/A,N/A -2012,10,1,11,30,100920,99740,98590,77.59,0,12.14,13.22,13.51,13.69,13.81,13.91,13.98,14.040000000000001,14.14,343.16,343.17,343.18,343.18,343.18,343.19,343.19,343.2,343.21,20.240000000000002,19.47,19.2,18.95,18.72,18.51,18.3,18.11,17.7,N/A,N/A -2012,10,1,12,30,100950,99770,98630,74.47,0,12.24,13.3,13.58,13.72,13.82,13.89,13.94,13.98,14.030000000000001,346.89,346.68,346.56,346.45,346.34000000000003,346.25,346.15000000000003,346.06,345.88,20.66,19.900000000000002,19.64,19.39,19.17,18.96,18.75,18.55,18.150000000000002,N/A,N/A -2012,10,1,13,30,100950,99770,98630,77.14,0,10.43,11.26,11.47,11.58,11.67,11.73,11.78,11.81,11.870000000000001,337.05,337.14,337.2,337.27,337.34000000000003,337.41,337.49,337.56,337.75,20.82,20.12,19.87,19.63,19.41,19.21,19,18.81,18.41,N/A,N/A -2012,10,1,14,30,100990,99820,98680,76.57000000000001,0,8.98,9.63,9.78,9.86,9.91,9.94,9.96,9.98,10,331.12,331.59000000000003,331.91,332.21,332.48,332.74,333.02,333.27,333.81,21.04,20.39,20.150000000000002,19.92,19.7,19.5,19.29,19.1,18.71,N/A,N/A -2012,10,1,15,30,100980,99810,98670,73.75,0,8.55,9.19,9.34,9.43,9.5,9.55,9.58,9.620000000000001,9.67,330.03000000000003,330.39,330.62,330.84000000000003,331.05,331.24,331.43,331.61,331.98,21.61,21,20.76,20.54,20.32,20.13,19.92,19.73,19.34,N/A,N/A -2012,10,1,16,30,100970,99790,98660,68.61,0,9.14,9.870000000000001,10.06,10.17,10.25,10.3,10.35,10.4,10.47,329.99,329.96,329.95,329.95,329.95,329.95,329.95,329.95,329.96,22.39,21.79,21.56,21.330000000000002,21.12,20.92,20.71,20.52,20.12,N/A,N/A -2012,10,1,17,30,100950,99780,98640,68.49,0,9.49,10.27,10.47,10.58,10.66,10.72,10.77,10.81,10.88,319.24,319.58,319.8,320.01,320.2,320.38,320.56,320.73,321.08,22.94,22.36,22.13,21.91,21.7,21.5,21.29,21.11,20.71,N/A,N/A -2012,10,1,18,30,100940,99770,98640,64.26,0,9.34,10.14,10.35,10.47,10.56,10.63,10.68,10.73,10.8,318.96,319.14,319.25,319.35,319.45,319.53000000000003,319.61,319.7,319.86,23.82,23.29,23.07,22.85,22.650000000000002,22.45,22.240000000000002,22.05,21.66,N/A,N/A -2012,10,1,19,30,100920,99760,98630,60.96,0,9.66,10.540000000000001,10.78,10.92,11.03,11.120000000000001,11.19,11.24,11.33,321.14,321.25,321.29,321.32,321.35,321.37,321.39,321.41,321.46,24.69,24.21,24,23.78,23.580000000000002,23.38,23.18,22.990000000000002,22.6,N/A,N/A -2012,10,1,20,30,100900,99740,98620,57.88,0,9.72,10.61,10.86,11.01,11.120000000000001,11.200000000000001,11.27,11.33,11.41,323.59000000000003,323.47,323.39,323.31,323.25,323.18,323.12,323.07,322.95,25.37,24.92,24.73,24.52,24.32,24.12,23.92,23.73,23.34,N/A,N/A -2012,10,1,21,30,100880,99720,98600,54.57,0,9.66,10.57,10.81,10.950000000000001,11.06,11.13,11.19,11.24,11.32,326.85,326.69,326.57,326.47,326.36,326.26,326.16,326.06,325.87,25.990000000000002,25.59,25.400000000000002,25.19,24.990000000000002,24.8,24.6,24.41,24.02,N/A,N/A -2012,10,1,22,30,100860,99710,98590,53.33,0,9.52,10.42,10.64,10.77,10.86,10.93,10.98,11.02,11.08,328.92,328.62,328.42,328.21,328.04,327.86,327.68,327.52,327.2,26.39,26.02,25.84,25.64,25.44,25.25,25.05,24.86,24.47,N/A,N/A -2012,10,1,23,30,100870,99720,98600,50.97,0,9.72,10.65,10.870000000000001,11,11.08,11.14,11.19,11.22,11.26,331.85,331.51,331.31,331.12,330.94,330.78000000000003,330.62,330.47,330.16,26.61,26.25,26.080000000000002,25.87,25.68,25.490000000000002,25.29,25.1,24.72,N/A,N/A -2012,10,2,0,30,100900,99750,98630,54.5,0,8.08,8.78,8.950000000000001,9.06,9.14,9.200000000000001,9.24,9.28,9.34,329.89,330.26,330.37,330.46,330.53000000000003,330.59000000000003,330.64,330.69,330.75,26.5,26.14,25.96,25.76,25.560000000000002,25.37,25.17,24.98,24.59,N/A,N/A -2012,10,2,1,30,100920,99760,98640,52.980000000000004,0,8.02,8.73,8.91,9.02,9.09,9.15,9.200000000000001,9.24,9.3,335.85,335.75,335.66,335.56,335.47,335.38,335.3,335.22,335.06,26.48,26.12,25.95,25.740000000000002,25.55,25.35,25.150000000000002,24.97,24.580000000000002,N/A,N/A -2012,10,2,2,30,100940,99790,98670,51.71,0,7.84,8.57,8.76,8.88,8.98,9.05,9.11,9.16,9.24,335.43,335.35,335.3,335.26,335.23,335.2,335.17,335.14,335.1,26.64,26.29,26.12,25.91,25.73,25.53,25.330000000000002,25.150000000000002,24.76,N/A,N/A -2012,10,2,3,30,100940,99790,98670,51.2,0,7.63,8.33,8.52,8.64,8.73,8.8,8.85,8.91,8.99,328.18,328.46,328.66,328.86,329.05,329.23,329.41,329.57,329.91,26.77,26.44,26.27,26.07,25.88,25.69,25.490000000000002,25.310000000000002,24.92,N/A,N/A -2012,10,2,4,30,100960,99810,98690,55.89,0,6.66,7.17,7.28,7.34,7.38,7.41,7.43,7.45,7.46,317.08,317.40000000000003,317.62,317.83,318.02,318.2,318.39,318.56,318.93,26.54,26.19,26.02,25.810000000000002,25.62,25.43,25.240000000000002,25.05,24.67,N/A,N/A -2012,10,2,5,30,100970,99820,98700,58.11,0,6.5200000000000005,6.97,7.0600000000000005,7.1000000000000005,7.12,7.140000000000001,7.15,7.15,7.17,304.72,305.56,306.16,306.75,307.31,307.84000000000003,308.40000000000003,308.92,310.09000000000003,26.13,25.76,25.59,25.39,25.21,25.02,24.830000000000002,24.66,24.3,N/A,N/A -2012,10,2,6,30,101020,99860,98740,58.33,0,5.88,6.28,6.36,6.4,6.43,6.45,6.47,6.49,6.54,310.87,311.73,312.27,312.85,313.42,314,314.62,315.21,316.61,25.72,25.36,25.19,25,24.82,24.64,24.45,24.28,23.93,N/A,N/A -2012,10,2,7,30,101040,99880,98760,58.84,0,6.72,7.19,7.28,7.32,7.36,7.38,7.4,7.42,7.49,311.49,312.58,313.28000000000003,314.03000000000003,314.75,315.47,316.26,317,318.77,25.52,25.150000000000002,24.98,24.79,24.61,24.43,24.25,24.080000000000002,23.740000000000002,N/A,N/A -2012,10,2,8,30,101060,99900,98770,62.84,0,6.65,7.13,7.24,7.3,7.3500000000000005,7.390000000000001,7.43,7.46,7.58,312.78000000000003,313.8,314.44,315.1,315.74,316.38,317.08,317.75,319.38,25,24.61,24.43,24.240000000000002,24.05,23.88,23.7,23.53,23.2,N/A,N/A -2012,10,2,9,30,101050,99890,98760,62.31,0,7.11,7.61,7.72,7.76,7.79,7.8100000000000005,7.82,7.82,7.83,322.18,322.64,322.92,323.21,323.49,323.76,324.07,324.36,325.07,25.17,24.77,24.59,24.39,24.2,24.01,23.82,23.650000000000002,23.29,N/A,N/A -2012,10,2,10,30,101090,99930,98800,62.43,0,6.96,7.44,7.53,7.57,7.58,7.59,7.58,7.58,7.55,328.79,329.16,329.39,329.62,329.83,330.05,330.28000000000003,330.48,330.97,25.11,24.7,24.52,24.310000000000002,24.12,23.93,23.740000000000002,23.56,23.19,N/A,N/A -2012,10,2,11,30,101120,99960,98840,59.550000000000004,0,6.53,6.96,7.03,7.0600000000000005,7.07,7.07,7.0600000000000005,7.05,7.0200000000000005,338.97,338.8,338.69,338.58,338.48,338.40000000000003,338.31,338.24,338.08,25.01,24.61,24.43,24.22,24.03,23.85,23.650000000000002,23.47,23.1,N/A,N/A -2012,10,2,12,30,101140,99980,98850,61.730000000000004,0,5.5600000000000005,5.86,5.9,5.91,5.91,5.89,5.87,5.8500000000000005,5.8,342.24,341.98,341.81,341.62,341.45,341.29,341.11,340.95,340.56,24.59,24.17,23.990000000000002,23.78,23.59,23.41,23.21,23.03,22.66,N/A,N/A -2012,10,2,13,30,101190,100030,98900,66.16,0,5.95,6.2700000000000005,6.32,6.32,6.3100000000000005,6.3,6.2700000000000005,6.25,6.19,340.7,340.42,340.21,339.99,339.79,339.59000000000003,339.38,339.18,338.75,24.11,23.67,23.48,23.27,23.07,22.88,22.69,22.5,22.12,N/A,N/A -2012,10,2,14,30,101230,100060,98930,68.56,0,4.96,5.18,5.2,5.2,5.19,5.16,5.14,5.11,5.04,343.77,343.63,343.53000000000003,343.42,343.29,343.17,343.04,342.91,342.56,23.740000000000002,23.3,23.1,22.900000000000002,22.71,22.52,22.330000000000002,22.150000000000002,21.78,N/A,N/A -2012,10,2,15,30,101250,100080,98950,64.79,0,4.26,4.43,4.43,4.41,4.38,4.3500000000000005,4.32,4.28,4.2,355.35,354.98,354.76,354.52,354.29,354.07,353.81,353.58,353,23.89,23.47,23.28,23.080000000000002,22.88,22.69,22.5,22.32,21.94,N/A,N/A -2012,10,2,16,30,101260,100100,98960,61.33,0,4.11,4.28,4.3,4.3,4.29,4.28,4.26,4.24,4.2,354.73,354.83,354.91,354.98,355.04,355.1,355.16,355.21,355.31,24.14,23.72,23.53,23.330000000000002,23.14,22.95,22.76,22.57,22.19,N/A,N/A -2012,10,2,17,30,101280,100110,98980,60.27,0,4.03,4.21,4.22,4.21,4.21,4.19,4.17,4.16,4.12,344.62,344.93,345.04,345.15000000000003,345.24,345.33,345.42,345.51,345.67,24.43,24.02,23.84,23.63,23.44,23.25,23.05,22.87,22.48,N/A,N/A -2012,10,2,18,30,101280,100110,98990,60.89,0,3.73,3.93,3.97,3.99,4,4.01,4.01,4.0200000000000005,4.03,344.18,343.6,343.3,343.01,342.75,342.5,342.25,342.01,341.51,24.76,24.37,24.19,23.990000000000002,23.79,23.6,23.41,23.22,22.84,N/A,N/A -2012,10,2,19,30,101280,100120,98990,57.2,0,3.7800000000000002,3.99,4.04,4.07,4.08,4.1,4.11,4.12,4.14,327.7,328.14,328.44,328.72,328.96,329.19,329.42,329.64,330.09000000000003,25.26,24.88,24.7,24.5,24.310000000000002,24.12,23.92,23.73,23.35,N/A,N/A -2012,10,2,20,30,101250,100090,98960,55.51,0,4.08,4.32,4.37,4.4,4.42,4.44,4.45,4.46,4.49,333.42,334.08,334.47,334.84000000000003,335.18,335.51,335.83,336.14,336.78000000000003,25.59,25.240000000000002,25.060000000000002,24.86,24.67,24.48,24.28,24.1,23.72,N/A,N/A -2012,10,2,21,30,101240,100080,98960,56.02,0,3.16,3.37,3.42,3.46,3.5,3.5300000000000002,3.56,3.59,3.64,333.98,334.89,335.42,335.91,336.36,336.79,337.22,337.61,338.43,25.79,25.45,25.27,25.07,24.88,24.7,24.5,24.32,23.93,N/A,N/A -2012,10,2,22,30,101250,100090,98960,51.550000000000004,0,2.4,2.58,2.64,2.69,2.74,2.7800000000000002,2.82,2.86,2.94,333.74,333.89,333.96,334.02,334.07,334.12,334.16,334.2,334.25,26.07,25.740000000000002,25.57,25.37,25.18,24.990000000000002,24.79,24.61,24.22,N/A,N/A -2012,10,2,23,30,101250,100090,98970,50.72,0,3.04,3.2,3.23,3.24,3.25,3.2600000000000002,3.2600000000000002,3.2600000000000002,3.27,326.79,327.24,327.5,327.75,327.97,328.17,328.36,328.53000000000003,328.89,26.39,26.080000000000002,25.91,25.72,25.53,25.34,25.150000000000002,24.96,24.580000000000002,N/A,N/A -2012,10,3,0,30,101280,100120,99000,49.29,0,2.44,2.59,2.63,2.65,2.67,2.69,2.71,2.72,2.75,345.3,345.73,345.95,346.16,346.35,346.52,346.68,346.83,347.12,26.44,26.13,25.96,25.76,25.57,25.39,25.19,25.01,24.62,N/A,N/A -2012,10,3,1,30,101320,100160,99040,51.45,0,3.9,4.04,4.03,3.99,3.95,3.91,3.87,3.83,3.73,332.28000000000003,332.49,332.62,332.73,332.84000000000003,332.93,333.04,333.14,333.37,26.09,25.76,25.59,25.400000000000002,25.21,25.02,24.830000000000002,24.650000000000002,24.26,N/A,N/A -2012,10,3,2,30,101370,100210,99080,50.15,0,3.81,3.93,3.91,3.88,3.85,3.8200000000000003,3.79,3.7600000000000002,3.71,305.61,308.25,309.82,311.45,312.96,314.41,315.90000000000003,317.28000000000003,320.13,26.14,25.82,25.650000000000002,25.46,25.27,25.080000000000002,24.89,24.71,24.330000000000002,N/A,N/A -2012,10,3,3,30,101400,100240,99110,47.980000000000004,0,3.45,3.5700000000000003,3.56,3.5300000000000002,3.5,3.47,3.43,3.4,3.33,16.34,16.79,17.07,17.34,17.59,17.830000000000002,18.06,18.27,18.740000000000002,26.12,25.79,25.62,25.42,25.23,25.04,24.84,24.650000000000002,24.27,N/A,N/A -2012,10,3,4,30,101410,100250,99120,47.81,0,3.33,3.44,3.43,3.4,3.38,3.36,3.33,3.31,3.25,23.26,24.01,24.52,25.02,25.490000000000002,25.93,26.38,26.79,27.650000000000002,25.95,25.61,25.43,25.23,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A -2012,10,3,5,30,101420,100260,99140,49.38,0,3,3.08,3.0700000000000003,3.04,3.0100000000000002,2.99,2.96,2.93,2.87,45.47,46.35,46.84,47.31,47.74,48.14,48.54,48.910000000000004,49.660000000000004,25.82,25.48,25.3,25.11,24.91,24.72,24.53,24.34,23.95,N/A,N/A -2012,10,3,6,30,101450,100280,99160,50.51,0,2.47,2.5300000000000002,2.52,2.5,2.48,2.46,2.44,2.41,2.37,62.65,62.980000000000004,63.160000000000004,63.34,63.51,63.67,63.84,64,64.34,25.73,25.400000000000002,25.22,25.03,24.830000000000002,24.650000000000002,24.44,24.26,23.87,N/A,N/A -2012,10,3,7,30,101480,100310,99190,53.21,0,1.77,1.82,1.82,1.82,1.81,1.8,1.79,1.79,1.77,58.44,59.82,60.77,61.690000000000005,62.54,63.36,64.19,64.94,66.51,25.59,25.26,25.080000000000002,24.89,24.69,24.5,24.3,24.12,23.73,N/A,N/A -2012,10,3,8,30,101480,100310,99190,55.65,0,1.58,1.6,1.59,1.57,1.56,1.54,1.53,1.51,1.48,70.29,70.83,71.17,71.5,71.81,72.12,72.45,72.75,73.42,25.48,25.14,24.97,24.77,24.57,24.39,24.18,24,23.61,N/A,N/A -2012,10,3,9,30,101500,100330,99200,55.92,0,1.52,1.53,1.5,1.47,1.45,1.42,1.3900000000000001,1.37,1.33,75.04,76.66,77.55,78.43,79.24,80,80.79,81.51,83,25.45,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.97,23.580000000000002,N/A,N/A -2012,10,3,10,30,101500,100330,99210,57.07,0,1.1,1.1,1.07,1.05,1.03,1.01,0.99,0.97,0.93,91.43,93.02,93.88,94.81,95.69,96.55,97.48,98.36,100.29,25.37,25.04,24.86,24.66,24.47,24.28,24.080000000000002,23.89,23.5,N/A,N/A -2012,10,3,11,30,101530,100370,99240,58.08,0,1.23,1.23,1.2,1.17,1.1500000000000001,1.1300000000000001,1.1,1.08,1.03,100.41,101.61,102.32000000000001,103.09,103.84,104.58,105.35000000000001,106.05,107.7,25.330000000000002,24.990000000000002,24.810000000000002,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A -2012,10,3,12,30,101540,100380,99250,58.79,0,0.62,0.68,0.7000000000000001,0.73,0.75,0.77,0.78,0.8,0.8300000000000001,155.37,156.82,157.4,157.89000000000001,158.37,158.86,159.32,159.75,160.67000000000002,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A -2012,10,3,13,30,101590,100430,99300,60.370000000000005,0,1.46,1.36,1.27,1.17,1.09,1.02,0.9500000000000001,0.88,0.75,324.87,325.49,325.89,326.41,326.94,327.46,328.1,328.7,330.17,25.240000000000002,24.89,24.72,24.52,24.330000000000002,24.14,23.94,23.75,23.37,N/A,N/A -2012,10,3,14,30,101620,100450,99320,60.83,0,1.93,1.85,1.78,1.69,1.61,1.54,1.46,1.3900000000000001,1.24,319.16,319.29,319.48,319.71,319.97,320.26,320.63,320.98,321.88,25.11,24.76,24.580000000000002,24.39,24.19,24,23.81,23.63,23.240000000000002,N/A,N/A -2012,10,3,15,30,101650,100480,99350,61.370000000000005,0,0.56,0.49,0.45,0.4,0.36,0.33,0.29,0.26,0.2,323.27,324.74,326.06,327.94,330.29,332.87,337.06,340.98,355.8,25.17,24.82,24.650000000000002,24.45,24.25,24.07,23.87,23.68,23.3,N/A,N/A -2012,10,3,16,30,101650,100480,99350,62.04,0,0.6,0.5700000000000001,0.55,0.53,0.52,0.51,0.5,0.49,0.49,4.86,12.72,17.490000000000002,22.490000000000002,27.2,31.78,36.56,41,50.14,25.26,24.91,24.73,24.54,24.34,24.150000000000002,23.96,23.77,23.38,N/A,N/A -2012,10,3,17,30,101650,100490,99360,62.07,0,0.79,0.8200000000000001,0.8300000000000001,0.8300000000000001,0.84,0.84,0.84,0.85,0.86,45.87,50.7,53.5,56.2,58.730000000000004,61.18,63.660000000000004,65.96000000000001,70.74,25.37,25.02,24.84,24.64,24.45,24.26,24.060000000000002,23.88,23.490000000000002,N/A,N/A -2012,10,3,18,30,101640,100480,99350,64.47,0,1.75,1.68,1.6,1.54,1.47,1.42,1.3800000000000001,1.33,1.26,68.28,72.23,74.69,77.43,80.04,82.57000000000001,85.3,87.83,93.38,25.38,25.03,24.85,24.650000000000002,24.46,24.28,24.080000000000002,23.89,23.51,N/A,N/A -2012,10,3,19,30,101660,100490,99370,61.690000000000005,0,1.31,1.42,1.46,1.5,1.53,1.56,1.6,1.6300000000000001,1.68,140.22,144.66,146.98,148.96,150.58,151.96,153.19,154.3,156.21,25.650000000000002,25.3,25.12,24.92,24.72,24.54,24.34,24.150000000000002,23.76,N/A,N/A -2012,10,3,20,30,101660,100500,99370,61.09,0,2.16,2.27,2.3000000000000003,2.32,2.34,2.35,2.37,2.37,2.4,151.78,152.17000000000002,152.5,152.85,153.19,153.52,153.85,154.16,154.85,25.73,25.38,25.2,25,24.8,24.61,24.41,24.23,23.84,N/A,N/A -2012,10,3,21,30,101650,100490,99360,63,0,2.74,2.86,2.88,2.88,2.89,2.89,2.89,2.89,2.89,145.41,146.46,147.12,147.76,148.34,148.87,149.41,149.9,150.88,25.73,25.39,25.21,25.01,24.82,24.63,24.43,24.25,23.85,N/A,N/A -2012,10,3,22,30,101660,100500,99370,64.24,0,3.0100000000000002,3.22,3.27,3.3000000000000003,3.33,3.36,3.38,3.4,3.43,154.59,154.65,154.78,154.9,155.02,155.14000000000001,155.26,155.36,155.6,25.78,25.44,25.27,25.07,24.87,24.68,24.490000000000002,24.3,23.91,N/A,N/A -2012,10,3,23,30,101660,100500,99370,63.92,0,3.93,4.14,4.17,4.18,4.18,4.18,4.18,4.17,4.16,161.76,161.9,162,162.1,162.20000000000002,162.29,162.38,162.45000000000002,162.64000000000001,25.84,25.51,25.330000000000002,25.14,24.94,24.75,24.560000000000002,24.37,23.98,N/A,N/A -2012,10,4,0,30,101670,100510,99380,66.28,0,3.72,3.96,4.01,4.04,4.07,4.08,4.1,4.11,4.14,150.97,151.75,152.29,152.81,153.26,153.69,154.11,154.51,155.3,25.77,25.43,25.25,25.05,24.86,24.67,24.47,24.28,23.900000000000002,N/A,N/A -2012,10,4,1,30,101700,100530,99410,66.98,0,4.43,4.71,4.76,4.79,4.8,4.82,4.82,4.83,4.83,152.42000000000002,153.19,153.67000000000002,154.15,154.58,154.98,155.37,155.74,156.5,25.77,25.44,25.26,25.060000000000002,24.87,24.68,24.48,24.29,23.91,N/A,N/A -2012,10,4,2,30,101720,100560,99430,64.15,0,4.21,4.49,4.55,4.59,4.62,4.64,4.66,4.67,4.69,169.26,169.55,169.56,169.54,169.5,169.46,169.41,169.36,169.24,26.01,25.68,25.51,25.3,25.12,24.92,24.72,24.54,24.150000000000002,N/A,N/A -2012,10,4,3,30,101740,100580,99450,59.09,0,4.53,4.82,4.88,4.91,4.93,4.95,4.96,4.97,4.98,176.08,175.41,175.02,174.64000000000001,174.31,174,173.69,173.42000000000002,172.88,26.13,25.810000000000002,25.64,25.44,25.25,25.060000000000002,24.86,24.68,24.29,N/A,N/A -2012,10,4,4,30,101740,100580,99450,62.57,0,4.46,4.79,4.87,4.92,4.95,4.97,5,5.01,5.04,165.52,166.04,166.18,166.27,166.33,166.36,166.37,166.38,166.36,26.05,25.73,25.55,25.35,25.16,24.97,24.77,24.59,24.2,N/A,N/A -2012,10,4,5,30,101770,100600,99480,59.01,0,4.91,5.24,5.29,5.3100000000000005,5.32,5.32,5.32,5.3100000000000005,5.3,161.45000000000002,161.82,162.05,162.29,162.5,162.70000000000002,162.9,163.1,163.49,26.13,25.810000000000002,25.64,25.44,25.25,25.060000000000002,24.86,24.68,24.29,N/A,N/A -2012,10,4,6,30,101800,100630,99510,60.03,0,4.67,5.0200000000000005,5.1000000000000005,5.15,5.19,5.22,5.24,5.26,5.29,164.65,164.86,164.94,165.02,165.08,165.13,165.17000000000002,165.22,165.3,26.080000000000002,25.76,25.59,25.39,25.2,25.01,24.810000000000002,24.63,24.240000000000002,N/A,N/A -2012,10,4,7,30,101840,100680,99550,63,0,4.94,5.29,5.3500000000000005,5.39,5.41,5.42,5.43,5.44,5.44,173.45000000000002,173.36,173.29,173.19,173.11,173.03,172.95000000000002,172.88,172.73,26.01,25.68,25.51,25.310000000000002,25.12,24.93,24.73,24.55,24.16,N/A,N/A -2012,10,4,8,30,101860,100690,99570,67.77,0,5.5600000000000005,5.95,6.0200000000000005,6.05,6.07,6.08,6.08,6.08,6.0600000000000005,159.58,160.31,160.72,161.12,161.47,161.8,162.12,162.42000000000002,163,25.900000000000002,25.57,25.39,25.19,25,24.810000000000002,24.61,24.43,24.04,N/A,N/A -2012,10,4,9,30,101880,100710,99590,62.85,0,5.43,5.7700000000000005,5.83,5.84,5.8500000000000005,5.84,5.84,5.83,5.8,173.35,173.18,173.12,173.05,173,172.95000000000002,172.9,172.86,172.8,26.04,25.71,25.54,25.34,25.150000000000002,24.96,24.76,24.57,24.19,N/A,N/A -2012,10,4,10,30,101920,100750,99620,64.72,0,5.22,5.63,5.72,5.7700000000000005,5.8100000000000005,5.84,5.87,5.89,5.92,163.1,163.78,164.16,164.51,164.83,165.13,165.43,165.70000000000002,166.26,26.080000000000002,25.76,25.59,25.39,25.2,25.01,24.82,24.63,24.240000000000002,N/A,N/A -2012,10,4,11,30,101930,100770,99640,67.1,0,5.45,5.8500000000000005,5.93,5.98,6.01,6.03,6.05,6.0600000000000005,6.08,160.8,160.83,160.88,160.93,160.97,161.02,161.06,161.11,161.21,26.03,25.7,25.53,25.330000000000002,25.14,24.95,24.75,24.57,24.18,N/A,N/A -2012,10,4,12,30,101980,100810,99680,67.86,0,5.55,6,6.1000000000000005,6.15,6.19,6.22,6.24,6.25,6.2700000000000005,148.56,148.9,149.18,149.45000000000002,149.69,149.92000000000002,150.15,150.36,150.8,26.04,25.71,25.53,25.330000000000002,25.14,24.95,24.75,24.57,24.18,N/A,N/A -2012,10,4,13,30,102010,100850,99720,68.71000000000001,0,5.34,5.74,5.82,5.86,5.88,5.9,5.91,5.92,5.92,157.11,157.14000000000001,157.08,156.99,156.89000000000001,156.79,156.67000000000002,156.56,156.32,26.03,25.69,25.52,25.32,25.13,24.94,24.75,24.560000000000002,24.17,N/A,N/A -2012,10,4,14,30,102060,100890,99760,69.86,0,5.5600000000000005,6,6.09,6.140000000000001,6.18,6.2,6.22,6.23,6.25,151.43,151.82,152,152.15,152.28,152.39000000000001,152.49,152.58,152.73,26.05,25.72,25.55,25.35,25.150000000000002,24.97,24.77,24.580000000000002,24.2,N/A,N/A -2012,10,4,15,30,102070,100900,99770,69.03,0,5.8,6.25,6.3500000000000005,6.4,6.44,6.46,6.48,6.5,6.5200000000000005,152.59,152.41,152.28,152.13,152,151.86,151.73,151.62,151.37,26.07,25.73,25.560000000000002,25.36,25.17,24.98,24.78,24.6,24.21,N/A,N/A -2012,10,4,16,30,102080,100910,99780,70.49,0,5.58,6.01,6.1000000000000005,6.15,6.18,6.2,6.21,6.22,6.23,148.92000000000002,149.12,149.24,149.35,149.46,149.57,149.69,149.79,150.04,26.01,25.67,25.5,25.3,25.11,24.92,24.72,24.54,24.150000000000002,N/A,N/A -2012,10,4,17,30,102080,100910,99780,71.79,0,5.25,5.67,5.76,5.82,5.87,5.91,5.93,5.96,6,145.77,146.4,146.8,147.18,147.52,147.84,148.16,148.44,149.02,26.02,25.68,25.5,25.3,25.11,24.92,24.72,24.54,24.14,N/A,N/A -2012,10,4,18,30,102070,100900,99770,70.29,0,5.59,6.03,6.13,6.18,6.22,6.25,6.2700000000000005,6.29,6.32,146.97,147.9,148.41,148.9,149.34,149.74,150.14000000000001,150.5,151.24,26.07,25.72,25.55,25.35,25.16,24.97,24.77,24.59,24.2,N/A,N/A -2012,10,4,19,30,102080,100920,99790,68.97,0,4.74,5.0600000000000005,5.13,5.17,5.2,5.22,5.23,5.24,5.26,160.99,160.61,160.41,160.22,160.06,159.91,159.76,159.63,159.35,26.19,25.86,25.69,25.490000000000002,25.3,25.11,24.91,24.72,24.34,N/A,N/A -2012,10,4,20,30,102040,100880,99750,73.43,0,5.42,5.8,5.87,5.9,5.92,5.93,5.94,5.94,5.93,153.36,154.08,154.48,154.87,155.21,155.54,155.86,156.16,156.75,26.13,25.78,25.61,25.41,25.22,25.03,24.830000000000002,24.64,24.25,N/A,N/A -2012,10,4,21,30,102040,100870,99740,71.99,0,4.46,4.76,4.82,4.8500000000000005,4.86,4.87,4.88,4.89,4.89,154.47,154.36,154.31,154.26,154.21,154.17000000000002,154.13,154.08,154,26.17,25.84,25.67,25.47,25.28,25.09,24.900000000000002,24.71,24.32,N/A,N/A -2012,10,4,22,30,102030,100870,99740,74.01,0,4.14,4.43,4.51,4.55,4.59,4.62,4.64,4.67,4.71,148.38,148.78,149.03,149.25,149.46,149.65,149.84,150.02,150.37,26.060000000000002,25.740000000000002,25.560000000000002,25.37,25.18,24.990000000000002,24.79,24.6,24.22,N/A,N/A -2012,10,4,23,30,102010,100850,99720,71.95,0,4.01,4.2700000000000005,4.32,4.34,4.3500000000000005,4.36,4.36,4.36,4.36,147.91,148.14000000000001,148.33,148.5,148.66,148.82,148.98,149.13,149.46,26.11,25.79,25.62,25.42,25.23,25.04,24.84,24.66,24.27,N/A,N/A -2012,10,5,0,30,101990,100830,99700,74.01,0,4.04,4.3,4.3500000000000005,4.39,4.4,4.42,4.43,4.44,4.45,144.93,145.38,145.68,145.97,146.23,146.48,146.72,146.94,147.4,25.98,25.64,25.47,25.27,25.080000000000002,24.89,24.69,24.51,24.12,N/A,N/A -2012,10,5,1,30,101990,100830,99700,75.69,0,4.19,4.44,4.48,4.5,4.51,4.51,4.51,4.51,4.5,142.84,143.07,143.23,143.38,143.52,143.65,143.78,143.9,144.16,25.87,25.53,25.36,25.16,24.97,24.78,24.580000000000002,24.39,24.01,N/A,N/A -2012,10,5,2,30,101990,100830,99700,72.36,0,4.19,4.46,4.51,4.54,4.55,4.57,4.57,4.58,4.58,148.91,148.81,148.8,148.79,148.78,148.77,148.77,148.77,148.78,25.92,25.59,25.42,25.22,25.03,24.84,24.64,24.46,24.07,N/A,N/A -2012,10,5,3,30,101960,100800,99670,76.52,0,4.3500000000000005,4.63,4.69,4.72,4.74,4.76,4.7700000000000005,4.78,4.79,143.27,143.63,143.85,144.06,144.26,144.45000000000002,144.64000000000001,144.83,145.22,25.7,25.35,25.18,24.97,24.78,24.59,24.39,24.21,23.82,N/A,N/A -2012,10,5,4,30,101950,100780,99650,75.86,0,4.62,4.93,5,5.04,5.0600000000000005,5.08,5.09,5.1000000000000005,5.11,146.26,146.31,146.36,146.41,146.46,146.5,146.56,146.6,146.70000000000002,25.68,25.330000000000002,25.16,24.96,24.76,24.57,24.38,24.19,23.81,N/A,N/A -2012,10,5,5,30,101930,100770,99640,74.97,0,4.26,4.55,4.61,4.64,4.67,4.69,4.7,4.72,4.74,149.11,149.06,149.03,148.99,148.96,148.92000000000002,148.88,148.84,148.76,25.650000000000002,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A -2012,10,5,6,30,101930,100760,99630,73.33,0,4.49,4.79,4.86,4.89,4.92,4.94,4.96,4.97,4.99,149.17000000000002,149.12,149.13,149.14000000000001,149.15,149.16,149.17000000000002,149.17000000000002,149.17000000000002,25.67,25.32,25.14,24.94,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A -2012,10,5,7,30,101940,100780,99650,79.78,0,4.89,5.21,5.2700000000000005,5.3,5.32,5.33,5.33,5.33,5.33,146.85,147.02,147.15,147.28,147.41,147.52,147.64000000000001,147.75,148,25.44,25.080000000000002,24.900000000000002,24.7,24.5,24.310000000000002,24.11,23.93,23.54,N/A,N/A -2012,10,5,8,30,101950,100780,99660,79.55,0,5.73,6.12,6.17,6.19,6.19,6.17,6.15,6.13,6.0600000000000005,148.83,149.05,149.19,149.33,149.45000000000002,149.56,149.68,149.79,150.01,25.5,25.13,24.95,24.75,24.55,24.36,24.16,23.97,23.580000000000002,N/A,N/A -2012,10,5,9,30,101940,100770,99640,78.19,0,4.01,4.3,4.38,4.43,4.48,4.5200000000000005,4.55,4.58,4.63,151.9,151.96,151.97,151.98,151.98,151.98,151.97,151.96,151.94,25.5,25.14,24.97,24.76,24.57,24.38,24.18,23.990000000000002,23.6,N/A,N/A -2012,10,5,10,30,101940,100780,99650,74.58,0,4.76,5.08,5.14,5.18,5.2,5.22,5.23,5.24,5.24,160.65,160.25,160.03,159.82,159.62,159.43,159.25,159.08,158.71,25.61,25.26,25.080000000000002,24.88,24.68,24.490000000000002,24.3,24.11,23.72,N/A,N/A -2012,10,5,11,30,101950,100780,99650,76.52,0,4.01,4.26,4.3100000000000005,4.34,4.36,4.37,4.38,4.39,4.4,162.87,162.37,162.06,161.76,161.48,161.22,160.95000000000002,160.70000000000002,160.21,25.59,25.23,25.060000000000002,24.86,24.66,24.47,24.27,24.080000000000002,23.7,N/A,N/A -2012,10,5,12,30,101940,100780,99650,73.9,0,3.41,3.63,3.69,3.72,3.75,3.7800000000000002,3.8000000000000003,3.8200000000000003,3.87,146.52,146.77,146.99,147.23,147.46,147.68,147.92000000000002,148.15,148.62,25.61,25.27,25.09,24.89,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A -2012,10,5,13,30,101940,100780,99650,75.06,0,3.38,3.56,3.6,3.63,3.64,3.65,3.66,3.67,3.67,157.28,157.47,157.57,157.65,157.71,157.77,157.81,157.85,157.89000000000001,25.68,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.19,23.8,N/A,N/A -2012,10,5,14,30,101950,100790,99660,74.86,0,3.12,3.31,3.35,3.38,3.4,3.42,3.43,3.45,3.47,161.95000000000002,162.01,162.02,162.02,162.02,162.01,162,161.98,161.93,25.560000000000002,25.22,25.04,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A -2012,10,5,15,30,101960,100800,99670,76.13,0,2.8000000000000003,2.94,2.97,2.98,2.99,3.0100000000000002,3.0100000000000002,3.02,3.0300000000000002,148.07,148.74,149.11,149.45000000000002,149.75,150.03,150.3,150.55,151.05,25.580000000000002,25.23,25.05,24.85,24.66,24.47,24.27,24.09,23.7,N/A,N/A -2012,10,5,16,30,101920,100760,99630,75.8,0,2.37,2.5100000000000002,2.5500000000000003,2.58,2.61,2.63,2.65,2.67,2.7,167.41,166.58,166.04,165.52,165.07,164.66,164.25,163.87,163.14000000000001,25.71,25.36,25.18,24.98,24.79,24.6,24.400000000000002,24.21,23.82,N/A,N/A -2012,10,5,17,30,101890,100730,99600,74.14,0,3.5100000000000002,3.65,3.65,3.63,3.62,3.6,3.5700000000000003,3.5500000000000003,3.5,154.20000000000002,154.43,154.62,154.84,155.04,155.24,155.46,155.66,156.08,25.77,25.42,25.240000000000002,25.04,24.85,24.66,24.46,24.28,23.89,N/A,N/A -2012,10,5,18,30,101840,100670,99550,75.76,0,2.43,2.5100000000000002,2.5100000000000002,2.5,2.49,2.48,2.47,2.46,2.44,137.34,138.51,139.31,140.11,140.87,141.59,142.34,143.04,144.52,25.66,25.3,25.12,24.93,24.73,24.54,24.34,24.16,23.77,N/A,N/A -2012,10,5,19,30,101820,100660,99530,76.04,0,3.0300000000000002,3.15,3.15,3.14,3.13,3.12,3.1,3.09,3.0500000000000003,152.09,152.51,152.73,152.95000000000002,153.15,153.34,153.53,153.71,154.08,25.69,25.330000000000002,25.150000000000002,24.95,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A -2012,10,5,20,30,101760,100600,99470,75.44,0,2.22,2.3000000000000003,2.3000000000000003,2.3000000000000003,2.29,2.29,2.2800000000000002,2.27,2.25,149.81,150.58,150.99,151.41,151.82,152.22,152.65,153.05,153.95000000000002,25.62,25.26,25.080000000000002,24.88,24.68,24.5,24.3,24.11,23.72,N/A,N/A -2012,10,5,21,30,101730,100570,99440,74.17,0,2.72,2.86,2.89,2.9,2.91,2.92,2.93,2.93,2.94,149.78,150.46,150.86,151.26,151.62,151.98,152.34,152.67000000000002,153.38,25.69,25.330000000000002,25.150000000000002,24.95,24.76,24.57,24.37,24.18,23.8,N/A,N/A -2012,10,5,22,30,101700,100530,99410,74.47,0,2.84,2.95,2.96,2.96,2.96,2.95,2.95,2.94,2.92,147.26,147.59,147.77,147.95000000000002,148.13,148.3,148.49,148.67000000000002,149.07,25.64,25.3,25.12,24.92,24.73,24.54,24.34,24.16,23.77,N/A,N/A -2012,10,5,23,30,101670,100510,99380,73.17,0,2.86,3,3.02,3.02,3.0300000000000002,3.0300000000000002,3.02,3.02,3.0100000000000002,153.86,153.69,153.61,153.54,153.48,153.43,153.39000000000001,153.36,153.3,25.64,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.16,23.78,N/A,N/A -2012,10,6,0,30,101640,100480,99350,73.72,0,3.2800000000000002,3.45,3.47,3.49,3.49,3.49,3.49,3.49,3.49,156.6,156.88,156.98,157.09,157.19,157.28,157.37,157.47,157.65,25.61,25.26,25.080000000000002,24.89,24.69,24.5,24.310000000000002,24.12,23.73,N/A,N/A -2012,10,6,1,30,101640,100480,99360,72.82000000000001,0,4.04,4.2700000000000005,4.3100000000000005,4.32,4.33,4.34,4.34,4.34,4.33,155.01,155,155.01,155.02,155.03,155.03,155.04,155.05,155.07,25.63,25.28,25.11,24.900000000000002,24.71,24.52,24.32,24.14,23.75,N/A,N/A -2012,10,6,2,30,101630,100470,99340,73.26,0,4.1,4.3100000000000005,4.34,4.3500000000000005,4.3500000000000005,4.3500000000000005,4.34,4.33,4.3,159.31,159.45000000000002,159.56,159.66,159.77,159.88,160,160.11,160.34,25.57,25.22,25.04,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A -2012,10,6,3,30,101610,100450,99320,76.93,0,4.0200000000000005,4.25,4.29,4.3100000000000005,4.33,4.34,4.34,4.3500000000000005,4.3500000000000005,153.18,153.68,154.03,154.36,154.66,154.94,155.22,155.48,156.02,25.42,25.07,24.89,24.69,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A -2012,10,6,4,30,101590,100430,99310,76.83,0,4.05,4.28,4.3100000000000005,4.32,4.33,4.33,4.32,4.3100000000000005,4.29,158,158.22,158.39000000000001,158.56,158.72,158.88,159.04,159.17000000000002,159.49,25.39,25.03,24.85,24.650000000000002,24.45,24.26,24.07,23.88,23.490000000000002,N/A,N/A -2012,10,6,5,30,101600,100430,99310,77.19,0,4.03,4.28,4.32,4.3500000000000005,4.37,4.38,4.38,4.39,4.39,159.85,159.74,159.71,159.69,159.67000000000002,159.66,159.65,159.65,159.63,25.37,25.01,24.830000000000002,24.63,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A -2012,10,6,6,30,101600,100440,99310,74.48,0,3.48,3.69,3.75,3.7800000000000002,3.81,3.83,3.85,3.87,3.91,163.3,163.20000000000002,163.11,163.02,162.94,162.86,162.78,162.70000000000002,162.55,25.44,25.080000000000002,24.91,24.71,24.51,24.32,24.13,23.94,23.56,N/A,N/A -2012,10,6,7,30,101610,100450,99330,77.53,0,3.3000000000000003,3.46,3.49,3.5,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5100000000000002,3.5,157.78,158.13,158.38,158.66,158.93,159.19,159.45000000000002,159.70000000000002,160.24,25.330000000000002,24.98,24.8,24.6,24.400000000000002,24.21,24.01,23.830000000000002,23.44,N/A,N/A -2012,10,6,8,30,101600,100440,99320,77.44,0,3.38,3.5100000000000002,3.5100000000000002,3.49,3.48,3.45,3.43,3.41,3.36,155.18,155.29,155.31,155.31,155.32,155.33,155.34,155.35,155.37,25.240000000000002,24.88,24.7,24.5,24.310000000000002,24.12,23.92,23.73,23.34,N/A,N/A -2012,10,6,9,30,101620,100460,99330,79.48,0,2.67,2.83,2.87,2.9,2.92,2.94,2.95,2.97,2.99,158.74,158.99,159.14000000000001,159.27,159.38,159.48,159.58,159.67000000000002,159.84,25.23,24.88,24.7,24.5,24.3,24.11,23.91,23.72,23.34,N/A,N/A -2012,10,6,10,30,101630,100470,99340,79.41,0,2.49,2.58,2.58,2.58,2.57,2.56,2.5500000000000003,2.5500000000000003,2.52,155.37,156.75,157.6,158.44,159.22,159.97,160.72,161.43,162.94,25.2,24.85,24.67,24.47,24.28,24.09,23.89,23.71,23.32,N/A,N/A -2012,10,6,11,30,101650,100490,99360,78.25,0,2.16,2.24,2.24,2.23,2.22,2.22,2.2,2.19,2.18,182.79,181.18,180.08,178.98,177.99,177.06,176.11,175.22,173.42000000000002,25.22,24.87,24.69,24.490000000000002,24.3,24.11,23.91,23.72,23.34,N/A,N/A -2012,10,6,12,30,101650,100480,99360,73.35000000000001,0,1.12,1.17,1.19,1.2,1.21,1.23,1.24,1.25,1.27,168.49,170.04,170.99,171.86,172.64000000000001,173.37,174.06,174.69,176,25.26,24.92,24.75,24.55,24.36,24.17,23.97,23.78,23.400000000000002,N/A,N/A -2012,10,6,13,30,101670,100500,99370,76.94,0,0.8200000000000001,0.8200000000000001,0.81,0.8,0.79,0.78,0.77,0.75,0.73,64.11,64.72,65.29,65.92,66.51,67.08,67.72,68.31,69.63,25.14,24.79,24.61,24.41,24.22,24.03,23.830000000000002,23.64,23.25,N/A,N/A -2012,10,6,14,30,101690,100530,99400,76.85000000000001,0,0.89,0.91,0.91,0.91,0.91,0.91,0.91,0.91,0.9,81.52,79.53,78.43,77.42,76.56,75.78,75.04,74.35000000000001,73.07000000000001,25.12,24.77,24.59,24.39,24.2,24.01,23.81,23.63,23.240000000000002,N/A,N/A -2012,10,6,15,30,101680,100510,99390,77.26,0,0.87,0.91,0.92,0.92,0.93,0.93,0.9400000000000001,0.9500000000000001,0.96,32.96,33.67,34.12,34.58,34.95,35.29,35.65,36.01,36.6,25.14,24.79,24.61,24.41,24.22,24.03,23.830000000000002,23.64,23.25,N/A,N/A -2012,10,6,16,30,101660,100490,99370,77.59,0,1.94,1.96,1.93,1.9000000000000001,1.8800000000000001,1.85,1.83,1.8,1.75,32.52,33.33,33.71,34.12,34.49,34.83,35.21,35.56,36.27,25.13,24.77,24.59,24.39,24.19,24,23.8,23.62,23.23,N/A,N/A -2012,10,6,17,30,101640,100480,99350,77.21000000000001,0,1.81,1.84,1.82,1.8,1.79,1.77,1.75,1.73,1.68,53.64,53.53,53.45,53.35,53.24,53.13,53.01,52.88,52.550000000000004,25.14,24.77,24.59,24.39,24.19,24,23.8,23.62,23.23,N/A,N/A -2012,10,6,18,30,101610,100440,99320,79.57000000000001,0,1.98,2.05,2.06,2.06,2.06,2.05,2.05,2.04,2.04,54.620000000000005,54.97,55.18,55.370000000000005,55.57,55.76,55.94,56.1,56.46,25.13,24.75,24.57,24.37,24.18,23.990000000000002,23.79,23.6,23.22,N/A,N/A -2012,10,6,19,30,101590,100420,99300,80.81,0,2,2.04,2.0300000000000002,2.0100000000000002,1.99,1.97,1.95,1.93,1.8800000000000001,73.5,73.24,73.05,72.86,72.67,72.48,72.27,72.07000000000001,71.61,25.18,24.8,24.62,24.42,24.22,24.03,23.830000000000002,23.650000000000002,23.26,N/A,N/A -2012,10,6,20,30,101540,100370,99250,81.60000000000001,0,1.84,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.8900000000000001,1.8900000000000001,1.8800000000000001,1.87,1.85,79.22,78.98,78.7,78.41,78.11,77.8,77.48,77.16,76.43,25.240000000000002,24.86,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.34,N/A,N/A -2012,10,6,21,30,101530,100370,99240,78.86,0,2.0100000000000002,2.07,2.07,2.06,2.05,2.04,2.0300000000000002,2.02,2,92.06,91.65,91.34,91,90.64,90.27,89.82000000000001,89.36,88.17,25.37,25.01,24.84,24.64,24.45,24.26,24.07,23.89,23.52,N/A,N/A -2012,10,6,22,30,101510,100350,99230,80.05,0,2.45,2.54,2.5500000000000003,2.54,2.54,2.5300000000000002,2.52,2.5100000000000002,2.48,101.69,101.43,101.26,101.07000000000001,100.87,100.67,100.43,100.2,99.59,25.38,25.03,24.85,24.650000000000002,24.46,24.28,24.080000000000002,23.900000000000002,23.52,N/A,N/A -2012,10,6,23,30,101510,100350,99220,79.36,0,2.56,2.66,2.66,2.66,2.66,2.65,2.63,2.62,2.6,99.97,99.79,99.65,99.52,99.37,99.22,99.02,98.81,98.23,25.38,25.03,24.86,24.66,24.47,24.28,24.09,23.91,23.53,N/A,N/A -2012,10,7,0,30,101510,100350,99230,78.54,0,2.77,2.9,2.92,2.92,2.92,2.92,2.92,2.91,2.91,106.2,105.95,105.78,105.59,105.38,105.15,104.87,104.60000000000001,103.77,25.39,25.04,24.87,24.67,24.48,24.29,24.1,23.92,23.55,N/A,N/A -2012,10,7,1,30,101530,100370,99240,77.05,0,2.52,2.63,2.65,2.66,2.66,2.67,2.67,2.67,2.68,96.69,96.5,96.48,96.42,96.36,96.28,96.18,96.07000000000001,95.77,25.45,25.12,24.94,24.740000000000002,24.560000000000002,24.37,24.18,23.990000000000002,23.62,N/A,N/A -2012,10,7,2,30,101530,100370,99250,75.68,0,3.0700000000000003,3.22,3.24,3.25,3.25,3.25,3.25,3.25,3.25,101.15,101.08,101,100.91,100.81,100.7,100.57000000000001,100.44,100.07000000000001,25.53,25.19,25.02,24.82,24.64,24.45,24.26,24.080000000000002,23.71,N/A,N/A -2012,10,7,3,30,101610,100430,99290,83.27,0,12.11,13.09,13.24,13.26,13.23,13.17,13.08,12.99,12.73,29.39,29.93,30.17,30.41,30.650000000000002,30.88,31.150000000000002,31.400000000000002,32.05,22.68,22.080000000000002,21.86,21.650000000000002,21.45,21.27,21.080000000000002,20.900000000000002,20.55,N/A,N/A -2012,10,7,4,30,101650,100470,99330,84.58,0,11.1,11.950000000000001,12.11,12.16,12.16,12.15,12.11,12.07,11.94,37.2,37.550000000000004,37.800000000000004,38.050000000000004,38.29,38.52,38.79,39.03,39.63,21.740000000000002,21.1,20.87,20.650000000000002,20.45,20.26,20.06,19.88,19.51,N/A,N/A -2012,10,7,5,30,101680,100490,99340,84.47,0,10.39,11.13,11.27,11.31,11.32,11.31,11.28,11.24,11.15,31.5,31.92,32.2,32.47,32.74,33,33.29,33.56,34.21,20.82,20.16,19.92,19.7,19.5,19.3,19.1,18.92,18.55,N/A,N/A -2012,10,7,6,30,101730,100540,99390,83.09,0,9.99,10.69,10.83,10.88,10.9,10.9,10.88,10.86,10.8,28.88,29.32,29.61,29.900000000000002,30.17,30.44,30.73,31,31.61,20.32,19.650000000000002,19.400000000000002,19.17,18.96,18.76,18.56,18.37,17.990000000000002,N/A,N/A -2012,10,7,7,30,101790,100600,99440,81.89,0,10.6,11.370000000000001,11.53,11.59,11.620000000000001,11.620000000000001,11.61,11.6,11.540000000000001,24.76,25.01,25.16,25.310000000000002,25.45,25.59,25.75,25.900000000000002,26.25,19.56,18.84,18.580000000000002,18.35,18.13,17.93,17.72,17.53,17.14,N/A,N/A -2012,10,7,8,30,101840,100640,99480,82.52,0,10.11,10.82,10.96,11.01,11.040000000000001,11.040000000000001,11.03,11.02,10.96,23.77,24.09,24.310000000000002,24.52,24.72,24.91,25.13,25.32,25.77,19.06,18.330000000000002,18.07,17.84,17.62,17.42,17.22,17.03,16.64,N/A,N/A -2012,10,7,9,30,101870,100670,99500,85.05,0,11.21,12.030000000000001,12.19,12.26,12.290000000000001,12.3,12.290000000000001,12.27,12.22,25.25,25.43,25.55,25.67,25.79,25.900000000000002,26.02,26.13,26.400000000000002,18.21,17.42,17.14,16.9,16.68,16.48,16.27,16.080000000000002,15.69,N/A,N/A -2012,10,7,10,30,101930,100730,99560,85.89,0,10.35,11.08,11.23,11.290000000000001,11.31,11.32,11.31,11.290000000000001,11.24,25.740000000000002,25.85,25.94,26.03,26.13,26.22,26.330000000000002,26.43,26.66,17.82,17.03,16.75,16.51,16.29,16.09,15.88,15.68,15.290000000000001,N/A,N/A -2012,10,7,11,30,101940,100740,99570,86.60000000000001,0,10.66,11.4,11.540000000000001,11.59,11.620000000000001,11.620000000000001,11.61,11.6,11.55,19.35,19.56,19.69,19.81,19.94,20.05,20.18,20.3,20.580000000000002,17.41,16.6,16.32,16.080000000000002,15.860000000000001,15.66,15.450000000000001,15.26,14.870000000000001,N/A,N/A -2012,10,7,12,30,101990,100780,99610,86.69,0,10.27,10.97,11.11,11.17,11.19,11.200000000000001,11.19,11.19,11.14,21.18,21.330000000000002,21.42,21.51,21.61,21.7,21.8,21.89,22.12,17.04,16.22,15.94,15.700000000000001,15.48,15.280000000000001,15.07,14.870000000000001,14.48,N/A,N/A -2012,10,7,13,30,102030,100820,99650,86.4,0,10.43,11.13,11.25,11.3,11.31,11.31,11.290000000000001,11.27,11.200000000000001,22.8,23,23.12,23.240000000000002,23.37,23.48,23.61,23.740000000000002,24.02,16.38,15.540000000000001,15.26,15.01,14.780000000000001,14.58,14.370000000000001,14.18,13.790000000000001,N/A,N/A -2012,10,7,14,30,102050,100840,99660,85.3,0,10.6,11.32,11.44,11.49,11.5,11.5,11.48,11.46,11.39,19.79,20.01,20.150000000000002,20.29,20.42,20.54,20.68,20.81,21.11,16.11,15.25,14.97,14.72,14.5,14.3,14.09,13.89,13.5,N/A,N/A -2012,10,7,15,30,102040,100830,99650,82.82000000000001,0,10.200000000000001,10.88,11,11.040000000000001,11.06,11.06,11.040000000000001,11.03,10.97,16.740000000000002,16.990000000000002,17.16,17.32,17.490000000000002,17.63,17.8,17.96,18.3,16.19,15.36,15.07,14.83,14.61,14.41,14.200000000000001,14,13.61,N/A,N/A -2012,10,7,16,30,102040,100830,99650,79.66,0,9.52,10.14,10.25,10.3,10.32,10.33,10.32,10.32,10.27,16.88,17.27,17.5,17.73,17.95,18.16,18.38,18.580000000000002,19.02,16.61,15.81,15.530000000000001,15.290000000000001,15.07,14.86,14.65,14.46,14.06,N/A,N/A -2012,10,7,17,30,101990,100790,99610,75.38,0,9.27,9.88,9.99,10.05,10.07,10.08,10.07,10.06,10.03,17.740000000000002,17.89,18.01,18.12,18.23,18.32,18.43,18.53,18.75,17.2,16.43,16.16,15.93,15.700000000000001,15.5,15.290000000000001,15.1,14.700000000000001,N/A,N/A -2012,10,7,18,30,101990,100780,99620,72.68,0,8.05,8.56,8.67,8.72,8.75,8.76,8.77,8.77,8.76,22.53,22.67,22.79,22.900000000000002,23,23.1,23.2,23.29,23.490000000000002,18.25,17.55,17.29,17.06,16.830000000000002,16.63,16.42,16.22,15.82,N/A,N/A -2012,10,7,19,30,101950,100760,99590,70.03,0,7.6000000000000005,8.07,8.16,8.21,8.23,8.25,8.26,8.26,8.25,22.79,22.81,22.82,22.82,22.82,22.81,22.81,22.81,22.81,19.14,18.490000000000002,18.25,18.02,17.8,17.6,17.39,17.2,16.8,N/A,N/A -2012,10,7,20,30,101910,100710,99560,67.08,0,7.29,7.74,7.84,7.9,7.930000000000001,7.95,7.96,7.97,7.97,19.580000000000002,19.830000000000002,19.92,20.02,20.11,20.2,20.3,20.39,20.57,20.02,19.400000000000002,19.16,18.94,18.72,18.52,18.31,18.12,17.72,N/A,N/A -2012,10,7,21,30,101850,100660,99510,67.04,0,7.61,8.1,8.2,8.25,8.28,8.290000000000001,8.3,8.31,8.31,11.14,11.55,11.83,12.09,12.31,12.52,12.73,12.92,13.3,20.64,20.05,19.81,19.59,19.37,19.17,18.97,18.77,18.37,N/A,N/A -2012,10,7,22,30,101880,100690,99540,65.34,0,7.29,7.75,7.84,7.88,7.91,7.92,7.930000000000001,7.930000000000001,7.92,16.5,17.11,17.44,17.75,18.05,18.34,18.63,18.89,19.45,20.94,20.37,20.14,19.91,19.7,19.51,19.3,19.11,18.71,N/A,N/A -2012,10,7,23,30,101890,100710,99550,66.77,0,7.26,7.69,7.7700000000000005,7.8,7.8100000000000005,7.8100000000000005,7.8100000000000005,7.8,7.7700000000000005,21.25,21.73,22.01,22.27,22.52,22.75,22.98,23.19,23.650000000000002,21,20.43,20.2,19.98,19.77,19.57,19.36,19.16,18.76,N/A,N/A -2012,10,8,0,30,101900,100710,99550,68.09,0,7.9,8.370000000000001,8.44,8.46,8.46,8.44,8.42,8.4,8.33,14.98,15.24,15.4,15.56,15.71,15.84,15.99,16.13,16.41,20.63,20.02,19.79,19.56,19.35,19.150000000000002,18.94,18.75,18.36,N/A,N/A -2012,10,8,1,30,101950,100750,99600,71.60000000000001,0,8.91,9.47,9.57,9.6,9.6,9.6,9.57,9.55,9.48,14.07,14.43,14.63,14.83,15.02,15.21,15.4,15.57,15.96,19.84,19.18,18.93,18.7,18.48,18.28,18.07,17.88,17.490000000000002,N/A,N/A -2012,10,8,2,30,101990,100790,99630,72.48,0,8.92,9.49,9.61,9.65,9.66,9.67,9.65,9.64,9.59,22.95,23.19,23.34,23.48,23.62,23.740000000000002,23.87,24,24.27,19.32,18.63,18.38,18.150000000000002,17.93,17.73,17.52,17.330000000000002,16.93,N/A,N/A -2012,10,8,3,30,101980,100780,99620,73.56,0,9.34,9.96,10.08,10.120000000000001,10.14,10.14,10.120000000000001,10.1,10.05,24.45,24.77,24.96,25.13,25.3,25.46,25.63,25.78,26.12,19.22,18.52,18.27,18.04,17.82,17.62,17.41,17.22,16.82,N/A,N/A -2012,10,8,4,30,101960,100760,99600,74.87,0,9.63,10.27,10.39,10.44,10.46,10.46,10.44,10.42,10.36,26.13,26.44,26.650000000000002,26.84,27.02,27.19,27.37,27.53,27.87,19.04,18.32,18.07,17.830000000000002,17.61,17.41,17.2,17.01,16.61,N/A,N/A -2012,10,8,5,30,101970,100780,99610,75.71000000000001,0,9.5,10.13,10.25,10.290000000000001,10.31,10.31,10.290000000000001,10.28,10.22,30.11,30.53,30.8,31.05,31.29,31.51,31.740000000000002,31.95,32.410000000000004,19.01,18.29,18.04,17.8,17.580000000000002,17.38,17.17,16.98,16.59,N/A,N/A -2012,10,8,6,30,102000,100800,99640,75.71000000000001,0,9.46,10.08,10.200000000000001,10.24,10.25,10.25,10.24,10.22,10.17,29.47,29.900000000000002,30.18,30.44,30.7,30.93,31.17,31.39,31.86,18.89,18.17,17.92,17.68,17.46,17.26,17.05,16.85,16.46,N/A,N/A -2012,10,8,7,30,102030,100830,99670,74.98,0,9.1,9.67,9.78,9.81,9.82,9.81,9.8,9.78,9.71,31.330000000000002,31.84,32.14,32.410000000000004,32.67,32.92,33.17,33.4,33.89,18.650000000000002,17.93,17.68,17.44,17.23,17.02,16.81,16.62,16.22,N/A,N/A -2012,10,8,8,30,102040,100840,99670,76.14,0,8.53,9.040000000000001,9.13,9.15,9.15,9.14,9.120000000000001,9.09,9.02,28.62,28.990000000000002,29.22,29.43,29.64,29.830000000000002,30.02,30.2,30.580000000000002,18.5,17.81,17.56,17.32,17.11,16.91,16.7,16.51,16.11,N/A,N/A -2012,10,8,9,30,102050,100850,99690,75.16,0,7.890000000000001,8.33,8.4,8.42,8.41,8.4,8.38,8.36,8.290000000000001,29.6,30.02,30.32,30.59,30.84,31.07,31.310000000000002,31.53,31.98,18.6,17.93,17.68,17.45,17.240000000000002,17.03,16.82,16.63,16.240000000000002,N/A,N/A -2012,10,8,10,30,102100,100890,99730,74.77,0,8.120000000000001,8.56,8.620000000000001,8.63,8.620000000000001,8.61,8.58,8.55,8.47,24.310000000000002,24.900000000000002,25.3,25.67,26.02,26.35,26.7,27.01,27.69,18.45,17.76,17.51,17.28,17.06,16.86,16.65,16.46,16.06,N/A,N/A -2012,10,8,11,30,102130,100920,99750,73.69,0,8.16,8.59,8.65,8.65,8.63,8.6,8.56,8.52,8.41,19.53,19.87,20.09,20.31,20.52,20.7,20.92,21.12,21.54,17.72,17.01,16.75,16.51,16.3,16.1,15.89,15.700000000000001,15.31,N/A,N/A -2012,10,8,12,30,102140,100930,99760,74.53,0,8.38,8.84,8.9,8.91,8.89,8.870000000000001,8.83,8.8,8.71,18.27,18.45,18.57,18.68,18.79,18.89,18.990000000000002,19.080000000000002,19.29,17.35,16.62,16.35,16.12,15.9,15.700000000000001,15.49,15.3,14.9,N/A,N/A -2012,10,8,13,30,102180,100970,99800,74.46000000000001,0,9.17,9.71,9.8,9.81,9.81,9.78,9.75,9.71,9.620000000000001,17.580000000000002,17.71,17.77,17.84,17.900000000000002,17.96,18.02,18.080000000000002,18.2,16.91,16.14,15.860000000000001,15.620000000000001,15.4,15.19,14.98,14.790000000000001,14.39,N/A,N/A -2012,10,8,14,30,102210,101000,99830,74.16,0,8.01,8.44,8.51,8.52,8.51,8.5,8.47,8.44,8.370000000000001,26.29,26.5,26.64,26.77,26.88,26.990000000000002,27.09,27.19,27.38,17.03,16.3,16.03,15.790000000000001,15.57,15.370000000000001,15.16,14.96,14.57,N/A,N/A -2012,10,8,15,30,102210,101000,99830,73.02,0,7.04,7.43,7.49,7.51,7.5200000000000005,7.5200000000000005,7.51,7.5,7.46,33.6,33.8,33.92,34.03,34.12,34.22,34.32,34.4,34.58,17.7,17.02,16.76,16.52,16.3,16.1,15.89,15.69,15.3,N/A,N/A -2012,10,8,16,30,102200,100990,99820,73.81,0,6.79,7.1000000000000005,7.12,7.11,7.08,7.0600000000000005,7.0200000000000005,6.98,6.890000000000001,19.91,20.48,20.830000000000002,21.18,21.5,21.8,22.11,22.400000000000002,23.01,17.77,17.11,16.86,16.62,16.41,16.2,16,15.8,15.41,N/A,N/A -2012,10,8,17,30,102140,100940,99770,70.78,0,6.8,7.12,7.16,7.15,7.140000000000001,7.12,7.08,7.05,6.98,16.78,17.080000000000002,17.27,17.46,17.63,17.79,17.97,18.13,18.48,17.85,17.19,16.94,16.71,16.5,16.3,16.09,15.9,15.5,N/A,N/A -2012,10,8,18,30,102140,100930,99760,68,0,5.5600000000000005,5.83,5.87,5.89,5.9,5.9,5.89,5.89,5.87,19.63,19.68,19.72,19.75,19.79,19.82,19.85,19.88,19.95,18.28,17.66,17.42,17.2,16.98,16.78,16.57,16.38,15.98,N/A,N/A -2012,10,8,19,30,102090,100890,99720,67.52,0,5.46,5.74,5.8,5.83,5.8500000000000005,5.86,5.87,5.87,5.88,17.59,17.55,17.56,17.57,17.580000000000002,17.580000000000002,17.59,17.6,17.61,19.05,18.46,18.23,18,17.78,17.580000000000002,17.37,17.18,16.78,N/A,N/A -2012,10,8,20,30,102030,100840,99680,64.81,0,4.96,5.19,5.22,5.23,5.24,5.24,5.23,5.22,5.21,16.73,16.9,17.04,17.18,17.3,17.41,17.53,17.64,17.86,19.54,18.98,18.75,18.53,18.32,18.12,17.91,17.72,17.32,N/A,N/A -2012,10,8,21,30,102010,100820,99660,64.42,0,3.72,3.89,3.92,3.94,3.96,3.96,3.97,3.97,3.98,26.25,26.71,26.97,27.22,27.45,27.66,27.87,28.060000000000002,28.46,20,19.48,19.26,19.04,18.830000000000002,18.63,18.43,18.23,17.830000000000002,N/A,N/A -2012,10,8,22,30,101990,100790,99640,64.28,0,3.45,3.6,3.62,3.63,3.64,3.65,3.65,3.65,3.66,39.02,38.68,38.37,38.06,37.79,37.54,37.28,37.04,36.58,20.45,19.95,19.73,19.51,19.3,19.11,18.900000000000002,18.71,18.31,N/A,N/A -2012,10,8,23,30,101950,100760,99600,61.92,0,4.04,4.19,4.21,4.2,4.19,4.18,4.17,4.15,4.12,50.01,49.09,48.51,47.94,47.410000000000004,46.910000000000004,46.36,45.86,44.800000000000004,20.78,20.27,20.06,19.84,19.64,19.44,19.240000000000002,19.05,18.66,N/A,N/A -2012,10,9,0,30,101920,100730,99580,61.46,0,3.7800000000000002,3.95,3.97,3.98,3.98,3.98,3.98,3.97,3.96,40.89,40.82,40.72,40.63,40.53,40.44,40.33,40.230000000000004,39.980000000000004,21.07,20.580000000000002,20.37,20.150000000000002,19.95,19.76,19.55,19.36,18.97,N/A,N/A -2012,10,9,1,30,101930,100740,99590,63.17,0,3.7600000000000002,3.92,3.94,3.94,3.93,3.93,3.92,3.91,3.89,36.94,37.35,37.61,37.87,38.1,38.31,38.54,38.75,39.19,21.29,20.8,20.6,20.38,20.17,19.98,19.77,19.59,19.19,N/A,N/A -2012,10,9,2,30,101940,100750,99600,64.84,0,4.32,4.48,4.48,4.47,4.45,4.43,4.41,4.39,4.34,49.18,49.64,49.980000000000004,50.32,50.64,50.94,51.26,51.550000000000004,52.2,21.330000000000002,20.84,20.63,20.41,20.21,20.01,19.81,19.62,19.22,N/A,N/A -2012,10,9,3,30,101910,100730,99580,68.07000000000001,0,4.72,4.91,4.93,4.93,4.91,4.9,4.88,4.86,4.82,49.51,50.34,50.89,51.43,51.92,52.38,52.86,53.300000000000004,54.19,21.32,20.81,20.6,20.38,20.18,19.98,19.78,19.59,19.19,N/A,N/A -2012,10,9,4,30,101880,100690,99540,69.57000000000001,0,4.62,4.82,4.84,4.84,4.84,4.83,4.82,4.8,4.7700000000000005,57.97,58.77,59.25,59.71,60.120000000000005,60.51,60.910000000000004,61.28,62.04,21.400000000000002,20.900000000000002,20.69,20.47,20.27,20.07,19.87,19.68,19.28,N/A,N/A -2012,10,9,5,30,101850,100670,99520,71.76,0,4.14,4.29,4.3100000000000005,4.3,4.29,4.28,4.2700000000000005,4.25,4.22,67.73,68.53,69.01,69.47,69.89,70.28,70.67,71.03,71.79,21.54,21.05,20.84,20.62,20.42,20.22,20.02,19.830000000000002,19.44,N/A,N/A -2012,10,9,6,30,101850,100670,99520,70.85000000000001,0,3.59,3.72,3.73,3.72,3.7,3.69,3.67,3.66,3.63,93.17,93.43,93.53,93.62,93.71000000000001,93.78,93.85000000000001,93.91,94.03,21.82,21.37,21.18,20.96,20.76,20.56,20.36,20.17,19.78,N/A,N/A -2012,10,9,7,30,101860,100680,99530,70.78,0,3.42,3.58,3.61,3.63,3.65,3.66,3.67,3.68,3.7,99.87,100.25,100.59,100.91,101.2,101.47,101.76,102.03,102.59,21.93,21.490000000000002,21.3,21.09,20.89,20.69,20.490000000000002,20.3,19.91,N/A,N/A -2012,10,9,8,30,101850,100670,99520,75.14,0,3.79,3.98,4.0200000000000005,4.04,4.05,4.07,4.07,4.08,4.09,105.31,106.10000000000001,106.46000000000001,106.8,107.11,107.41,107.7,107.97,108.53,22.14,21.7,21.5,21.29,21.09,20.89,20.69,20.5,20.11,N/A,N/A -2012,10,9,9,30,101840,100660,99520,73.39,0,3.71,3.86,3.87,3.87,3.87,3.86,3.85,3.85,3.8200000000000003,132.95,133.37,133.56,133.74,133.89000000000001,134.04,134.19,134.33,134.61,22.42,21.98,21.79,21.580000000000002,21.38,21.18,20.98,20.79,20.400000000000002,N/A,N/A -2012,10,9,10,30,101840,100660,99520,73.8,0,3.85,3.99,3.99,3.98,3.96,3.94,3.92,3.9,3.85,129.42000000000002,130.21,130.69,131.18,131.62,132.04,132.48,132.88,133.75,22.64,22.22,22.02,21.81,21.61,21.42,21.21,21.03,20.63,N/A,N/A -2012,10,9,11,30,101860,100680,99540,74.13,0,2.77,2.96,3.02,3.06,3.09,3.13,3.15,3.17,3.2,118.09,120.3,121.59,122.77,123.78,124.69,125.58,126.4,128.01,22.830000000000002,22.43,22.240000000000002,22.03,21.830000000000002,21.64,21.44,21.25,20.86,N/A,N/A -2012,10,9,12,30,101850,100670,99530,73.17,0,3.43,3.59,3.62,3.64,3.65,3.66,3.66,3.67,3.67,151.6,152.04,152.20000000000002,152.35,152.49,152.62,152.76,152.89000000000001,153.14000000000001,23.19,22.78,22.59,22.39,22.19,22,21.79,21.61,21.22,N/A,N/A -2012,10,9,13,30,101840,100660,99520,70.38,0,1.45,1.53,1.56,1.59,1.62,1.6400000000000001,1.67,1.69,1.75,147.9,149.36,150.29,151.13,151.86,152.52,153.16,153.75,154.86,23.41,23.04,22.85,22.650000000000002,22.46,22.27,22.07,21.89,21.5,N/A,N/A -2012,10,9,14,30,101820,100640,99510,74.08,0,3.24,3.37,3.38,3.37,3.35,3.34,3.33,3.31,3.2800000000000002,126.29,127.11,127.52,127.89,128.23,128.54,128.84,129.1,129.62,23.580000000000002,23.19,23,22.8,22.6,22.41,22.21,22.03,21.64,N/A,N/A -2012,10,9,15,30,101850,100680,99540,79.52,0,4,4.14,4.15,4.13,4.11,4.09,4.0600000000000005,4.03,3.98,133.97,134.72,135.21,135.71,136.19,136.65,137.13,137.57,138.55,23.330000000000002,22.92,22.740000000000002,22.53,22.34,22.150000000000002,21.95,21.76,21.38,N/A,N/A -2012,10,9,16,30,101810,100640,99500,79.39,0,3.22,3.36,3.39,3.4,3.41,3.42,3.42,3.43,3.44,117.07000000000001,118.86,119.99000000000001,121.08,122.07000000000001,123.02,123.97,124.84,126.67,23.5,23.11,22.92,22.72,22.52,22.330000000000002,22.13,21.94,21.56,N/A,N/A -2012,10,9,17,30,101780,100610,99470,76.60000000000001,0,3.63,3.8000000000000003,3.83,3.85,3.86,3.87,3.87,3.88,3.88,146.27,147.13,147.72,148.27,148.76,149.24,149.71,150.14000000000001,151.01,23.830000000000002,23.45,23.26,23.06,22.86,22.67,22.47,22.29,21.900000000000002,N/A,N/A -2012,10,9,18,30,101740,100570,99440,79.74,0,4.1,4.33,4.37,4.39,4.4,4.41,4.41,4.41,4.41,140.44,141.12,141.49,141.82,142.11,142.36,142.61,142.85,143.29,23.95,23.56,23.37,23.16,22.97,22.77,22.57,22.39,22,N/A,N/A -2012,10,9,19,30,101720,100550,99420,79.58,0,5.42,5.76,5.82,5.8500000000000005,5.87,5.88,5.88,5.88,5.87,139.6,140.11,140.42000000000002,140.72,140.98,141.23,141.49,141.73,142.24,24.07,23.67,23.48,23.27,23.080000000000002,22.89,22.69,22.5,22.11,N/A,N/A -2012,10,9,20,30,101670,100500,99370,79.24,0,5.08,5.36,5.41,5.43,5.44,5.44,5.43,5.43,5.41,145.27,145.68,145.94,146.18,146.4,146.61,146.81,147.01,147.41,24.2,23.81,23.62,23.42,23.22,23.03,22.830000000000002,22.650000000000002,22.26,N/A,N/A -2012,10,9,21,30,101630,100470,99330,77.77,0,4.92,5.18,5.21,5.21,5.19,5.18,5.15,5.13,5.08,165.56,165.37,165.28,165.20000000000002,165.12,165.05,164.99,164.94,164.82,24.400000000000002,24.03,23.85,23.64,23.45,23.26,23.06,22.87,22.48,N/A,N/A -2012,10,9,22,30,101610,100450,99320,79.83,0,5.48,5.86,5.95,6,6.03,6.05,6.07,6.08,6.09,151.23,151.39000000000001,151.48,151.57,151.66,151.74,151.82,151.91,152.08,24.38,24,23.82,23.61,23.42,23.23,23.03,22.84,22.45,N/A,N/A -2012,10,9,23,30,101580,100420,99290,78.19,0,4.29,4.57,4.64,4.67,4.7,4.72,4.74,4.75,4.7700000000000005,165.07,165.33,165.61,165.88,166.13,166.38,166.62,166.85,167.34,24.44,24.080000000000002,23.89,23.69,23.5,23.31,23.11,22.92,22.53,N/A,N/A -2012,10,10,0,30,101570,100410,99280,79.15,0,5.38,5.71,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8,5.8,5.76,161.03,161.35,161.72,162.11,162.48,162.85,163.25,163.62,164.45000000000002,24.6,24.23,24.060000000000002,23.85,23.66,23.47,23.27,23.09,22.7,N/A,N/A -2012,10,10,1,30,101580,100410,99280,79.73,0.4,6.05,6.49,6.58,6.63,6.65,6.66,6.67,6.67,6.65,166.62,166.65,166.81,167.01,167.22,167.43,167.67000000000002,167.9,168.46,24.66,24.29,24.11,23.91,23.71,23.53,23.330000000000002,23.150000000000002,22.77,N/A,N/A -2012,10,10,2,30,101600,100440,99310,76.67,0,6.45,6.890000000000001,6.98,7.01,7.03,7.04,7.03,7.03,7.01,171.49,171.36,171.33,171.32,171.3,171.28,171.27,171.25,171.27,24.91,24.55,24.38,24.18,23.98,23.79,23.6,23.41,23.03,N/A,N/A -2012,10,10,3,30,101590,100430,99300,77.16,0,7.32,7.8100000000000005,7.87,7.87,7.84,7.79,7.74,7.68,7.5600000000000005,177.81,177.98,178.02,178.03,178.03,178.02,178,177.97,177.87,25.03,24.68,24.51,24.310000000000002,24.12,23.93,23.740000000000002,23.55,23.17,N/A,N/A -2012,10,10,4,30,101590,100430,99300,79.68,0,6.3500000000000005,6.88,7.01,7.08,7.13,7.17,7.19,7.21,7.23,173.51,173.94,174.11,174.24,174.34,174.41,174.47,174.52,174.59,25,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A -2012,10,10,5,30,101610,100450,99320,77.99,0,7,7.54,7.68,7.73,7.7700000000000005,7.79,7.8,7.8,7.79,177.6,178.25,178.48,178.67000000000002,178.81,178.93,179.04,179.14000000000001,179.3,25.19,24.86,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A -2012,10,10,6,30,101630,100470,99340,77.65,0,6.54,7.09,7.21,7.26,7.29,7.3100000000000005,7.3100000000000005,7.3,7.2700000000000005,177.17000000000002,177.36,177.4,177.42000000000002,177.43,177.42000000000002,177.4,177.39000000000001,177.34,25.28,24.94,24.76,24.560000000000002,24.36,24.17,23.97,23.78,23.39,N/A,N/A -2012,10,10,7,30,101670,100510,99380,75.66,0,5.75,6.2,6.3100000000000005,6.38,6.42,6.46,6.48,6.51,6.54,176.19,176.73,177.03,177.28,177.48,177.68,177.85,178.02,178.34,25.400000000000002,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.54,N/A,N/A -2012,10,10,8,30,101710,100550,99430,76.63,0,4.87,5.21,5.28,5.32,5.34,5.36,5.37,5.37,5.38,180.11,180.75,181.11,181.43,181.70000000000002,181.96,182.18,182.38,182.76,25.48,25.150000000000002,24.98,24.78,24.59,24.39,24.2,24.01,23.62,N/A,N/A -2012,10,10,9,30,101760,100590,99470,73.81,0,4.14,4.5,4.61,4.69,4.76,4.82,4.88,4.93,5.0200000000000005,170.66,171.85,172.52,173.06,173.52,173.93,174.3,174.64000000000001,175.3,25.490000000000002,25.18,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,10,10,30,101790,100630,99500,72.86,0,3.3200000000000003,3.56,3.63,3.67,3.71,3.74,3.7600000000000002,3.79,3.83,178.53,178.65,178.68,178.64000000000001,178.57,178.48,178.37,178.27,177.99,25.59,25.27,25.1,24.900000000000002,24.72,24.53,24.330000000000002,24.150000000000002,23.76,N/A,N/A -2012,10,10,11,30,101820,100660,99530,75,0,2.59,2.7600000000000002,2.8000000000000003,2.83,2.85,2.86,2.88,2.89,2.91,155.73,157.36,158.31,159.21,160,160.76,161.49,162.17000000000002,163.53,25.560000000000002,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A -2012,10,10,12,30,101870,100710,99580,75.73,0,3.67,3.89,3.92,3.93,3.93,3.92,3.92,3.91,3.89,157.16,157.64000000000001,157.91,158.15,158.36,158.56,158.75,158.93,159.28,25.580000000000002,25.26,25.09,24.900000000000002,24.71,24.51,24.32,24.13,23.740000000000002,N/A,N/A -2012,10,10,13,30,101920,100750,99630,76.60000000000001,0,3.2800000000000002,3.49,3.5300000000000002,3.56,3.58,3.6,3.61,3.62,3.64,136.17000000000002,137.22,137.82,138.37,138.85,139.29,139.73,140.13,140.89000000000001,25.51,25.2,25.03,24.830000000000002,24.64,24.45,24.25,24.07,23.68,N/A,N/A -2012,10,10,14,30,101950,100780,99660,76.69,0,3.48,3.67,3.7,3.72,3.72,3.73,3.72,3.72,3.71,121.18,121.62,121.9,122.19,122.46000000000001,122.71000000000001,122.97,123.22,123.76,25.47,25.150000000000002,24.98,24.79,24.6,24.41,24.21,24.03,23.64,N/A,N/A -2012,10,10,15,30,101960,100800,99670,74.5,0,3.68,3.91,3.96,3.98,4,4.0200000000000005,4.03,4.03,4.05,131.68,132.15,132.4,132.65,132.88,133.11,133.35,133.56,134.05,25.54,25.22,25.05,24.85,24.66,24.47,24.28,24.09,23.71,N/A,N/A -2012,10,10,16,30,101950,100780,99650,76.84,0,3.74,3.96,4,4.0200000000000005,4.03,4.04,4.05,4.05,4.05,117.19,117.4,117.61,117.81,117.99000000000001,118.17,118.35000000000001,118.52,118.88,25.5,25.17,25,24.8,24.61,24.42,24.22,24.03,23.650000000000002,N/A,N/A -2012,10,10,17,30,101920,100760,99630,80.72,0,4.38,4.65,4.71,4.73,4.75,4.75,4.75,4.75,4.75,123.5,123.91,124.12,124.32000000000001,124.48,124.64,124.8,124.95,125.23,25.42,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.55,N/A,N/A -2012,10,10,18,30,101890,100730,99600,79.86,0,3.92,4.15,4.2,4.21,4.23,4.24,4.24,4.24,4.24,110.24000000000001,110.44,110.58,110.71000000000001,110.82000000000001,110.92,111.01,111.11,111.3,25.43,25.09,24.91,24.71,24.52,24.330000000000002,24.13,23.95,23.56,N/A,N/A -2012,10,10,19,30,101880,100710,99580,80.74,0,4.8500000000000005,5.16,5.23,5.2700000000000005,5.29,5.3,5.3100000000000005,5.32,5.32,108.34,108.5,108.62,108.74000000000001,108.83,108.93,109.02,109.10000000000001,109.29,25.45,25.1,24.93,24.73,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A -2012,10,10,20,30,101850,100690,99560,80.89,0,5.14,5.51,5.58,5.62,5.64,5.65,5.66,5.66,5.66,108.12,108.21000000000001,108.25,108.26,108.27,108.27,108.27,108.27,108.25,25.46,25.12,24.94,24.740000000000002,24.55,24.36,24.16,23.98,23.59,N/A,N/A -2012,10,10,21,30,101870,100700,99570,81.39,0,5.78,6.21,6.3100000000000005,6.3500000000000005,6.38,6.4,6.41,6.41,6.42,110.78,111.01,111.19,111.37,111.54,111.7,111.87,112.04,112.39,25.42,25.080000000000002,24.91,24.71,24.52,24.330000000000002,24.13,23.95,23.56,N/A,N/A -2012,10,10,22,30,101880,100710,99580,82,0,6.36,6.8500000000000005,6.96,7.0200000000000005,7.05,7.07,7.07,7.07,7.07,118.19,118.33,118.4,118.47,118.52,118.58,118.62,118.67,118.75,25.400000000000002,25.060000000000002,24.89,24.68,24.5,24.3,24.11,23.92,23.54,N/A,N/A -2012,10,10,23,30,101880,100720,99590,84.43,0,6.41,6.91,7.0200000000000005,7.07,7.1000000000000005,7.12,7.12,7.12,7.11,122.73,122.91,123.02,123.14,123.26,123.38000000000001,123.51,123.62,123.89,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24.01,23.82,23.44,N/A,N/A -2012,10,11,0,30,101890,100730,99600,81.83,0,6.640000000000001,7.2,7.33,7.4,7.44,7.47,7.5,7.51,7.54,133.53,133.6,133.67000000000002,133.76,133.83,133.9,133.98,134.05,134.2,25.39,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A -2012,10,11,1,30,101880,100710,99590,81.76,0,6.24,6.72,6.84,6.890000000000001,6.93,6.95,6.96,6.97,6.98,122.98,123,123.06,123.10000000000001,123.12,123.14,123.15,123.16,123.16,25.37,25.04,24.86,24.67,24.48,24.29,24.09,23.91,23.53,N/A,N/A -2012,10,11,2,30,101940,100770,99650,81.45,0,6.09,6.6000000000000005,6.73,6.8,6.8500000000000005,6.88,6.91,6.93,6.96,137.63,137.76,137.83,137.9,137.97,138.05,138.12,138.19,138.34,25.42,25.09,24.92,24.72,24.52,24.330000000000002,24.14,23.95,23.57,N/A,N/A -2012,10,11,3,30,101930,100770,99640,78.65,0,5.8500000000000005,6.36,6.49,6.57,6.63,6.68,6.72,6.76,6.84,131.05,131.16,131.24,131.32,131.41,131.49,131.57,131.65,131.85,25.52,25.2,25.03,24.830000000000002,24.650000000000002,24.46,24.26,24.080000000000002,23.71,N/A,N/A -2012,10,11,4,30,101890,100720,99600,79.17,0,5.86,6.3500000000000005,6.47,6.54,6.6000000000000005,6.640000000000001,6.67,6.71,6.7700000000000005,130.19,130.27,130.32,130.4,130.46,130.53,130.61,130.69,130.87,25.47,25.14,24.97,24.77,24.580000000000002,24.400000000000002,24.2,24.02,23.64,N/A,N/A -2012,10,11,5,30,101900,100740,99610,78.49,0,6.01,6.51,6.63,6.71,6.76,6.8100000000000005,6.8500000000000005,6.890000000000001,6.97,131.4,131.58,131.72,131.87,132,132.14000000000001,132.3,132.44,132.77,25.54,25.22,25.05,24.86,24.67,24.490000000000002,24.3,24.12,23.76,N/A,N/A -2012,10,11,6,30,101910,100750,99620,78.53,0,6.92,7.49,7.61,7.67,7.7,7.72,7.73,7.73,7.72,133.45,133.74,133.88,134.01,134.12,134.23,134.32,134.41,134.57,25.66,25.36,25.2,25.01,24.82,24.64,24.45,24.27,23.900000000000002,N/A,N/A -2012,10,11,7,30,101950,100790,99660,80.42,0,7.12,7.78,7.930000000000001,8.02,8.08,8.11,8.13,8.14,8.15,135.97,136.06,136.14000000000001,136.21,136.28,136.33,136.39000000000001,136.44,136.55,25.61,25.3,25.13,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A -2012,10,11,8,30,101960,100800,99670,80.58,0,6.97,7.68,7.8500000000000005,7.96,8.040000000000001,8.09,8.120000000000001,8.15,8.18,131.87,131.94,132.03,132.12,132.2,132.27,132.34,132.41,132.53,25.64,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.39,24.2,23.81,N/A,N/A -2012,10,11,9,30,101970,100810,99680,78.62,0,6.63,7.29,7.44,7.53,7.59,7.63,7.66,7.68,7.7,129.81,129.77,129.82,129.9,129.97,130.04,130.12,130.2,130.37,25.73,25.42,25.25,25.060000000000002,24.87,24.68,24.48,24.3,23.91,N/A,N/A -2012,10,11,10,30,101990,100820,99690,79.46000000000001,0,6.54,7.0600000000000005,7.17,7.21,7.25,7.26,7.28,7.28,7.3,130.5,130.93,131.18,131.45,131.72,132.01,132.32,132.63,133.34,25.71,25.42,25.26,25.07,24.89,24.71,24.52,24.34,23.98,N/A,N/A -2012,10,11,11,30,102010,100850,99720,78.05,0,5.97,6.5200000000000005,6.66,6.74,6.8100000000000005,6.86,6.92,6.97,7.08,134.46,134.81,135.04,135.28,135.51,135.73,135.98,136.22,136.76,25.8,25.51,25.35,25.150000000000002,24.97,24.79,24.6,24.43,24.060000000000002,N/A,N/A -2012,10,11,12,30,102040,100880,99750,79.42,0,6.79,7.3500000000000005,7.5,7.57,7.62,7.66,7.68,7.71,7.75,128.39000000000001,128.64000000000001,128.81,128.98,129.14000000000001,129.29,129.45,129.6,129.92000000000002,25.73,25.43,25.27,25.07,24.89,24.7,24.51,24.330000000000002,23.96,N/A,N/A -2012,10,11,13,30,102050,100890,99760,79.22,0,6.7,7.25,7.38,7.45,7.49,7.51,7.53,7.54,7.5600000000000005,124.97,125.2,125.35000000000001,125.51,125.66,125.81,125.95,126.09,126.4,25.71,25.41,25.25,25.05,24.86,24.68,24.490000000000002,24.3,23.93,N/A,N/A -2012,10,11,14,30,102090,100920,99790,80.43,0,6.67,7.2700000000000005,7.42,7.5,7.55,7.58,7.6000000000000005,7.62,7.63,123.3,123.48,123.57000000000001,123.67,123.75,123.83,123.9,123.97,124.12,25.67,25.36,25.2,25,24.810000000000002,24.62,24.43,24.240000000000002,23.85,N/A,N/A -2012,10,11,15,30,102090,100930,99800,79.64,0,6.82,7.44,7.59,7.68,7.73,7.7700000000000005,7.8,7.82,7.84,120.07000000000001,120.28,120.37,120.46000000000001,120.54,120.62,120.69,120.76,120.89,25.69,25.38,25.21,25.01,24.830000000000002,24.64,24.44,24.26,23.87,N/A,N/A -2012,10,11,16,30,102090,100930,99800,80.41,0,6.73,7.34,7.48,7.5600000000000005,7.61,7.65,7.68,7.69,7.71,119.86,120.04,120.15,120.25,120.34,120.42,120.51,120.58,120.73,25.67,25.36,25.19,24.990000000000002,24.8,24.61,24.42,24.23,23.85,N/A,N/A -2012,10,11,17,30,102090,100930,99800,80.15,0,6.97,7.61,7.75,7.84,7.9,7.930000000000001,7.96,7.98,8.01,122.58,122.7,122.77,122.83,122.9,122.96000000000001,123.02,123.08,123.2,25.7,25.38,25.21,25.01,24.82,24.63,24.44,24.25,23.87,N/A,N/A -2012,10,11,18,30,102110,100940,99810,79.86,0,7.13,7.78,7.930000000000001,8.01,8.07,8.11,8.13,8.15,8.17,122.78,122.94,123,123.07000000000001,123.13000000000001,123.2,123.27,123.34,123.48,25.71,25.39,25.22,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.88,N/A,N/A -2012,10,11,19,30,102070,100910,99780,80.91,0,6.99,7.61,7.75,7.83,7.88,7.92,7.94,7.96,7.97,117.22,117.52,117.66,117.78,117.9,118,118.11,118.2,118.39,25.64,25.32,25.150000000000002,24.95,24.76,24.57,24.37,24.19,23.81,N/A,N/A -2012,10,11,20,30,102050,100880,99750,80.06,0,6.73,7.34,7.48,7.57,7.62,7.65,7.68,7.7,7.72,119.89,119.99000000000001,120.06,120.14,120.23,120.31,120.4,120.48,120.66,25.650000000000002,25.330000000000002,25.16,24.96,24.77,24.580000000000002,24.38,24.2,23.81,N/A,N/A -2012,10,11,21,30,102040,100870,99740,78.41,0,6.6000000000000005,7.18,7.32,7.390000000000001,7.43,7.47,7.49,7.5,7.5200000000000005,122.18,122.28,122.36,122.43,122.5,122.56,122.63,122.7,122.84,25.650000000000002,25.34,25.17,24.97,24.78,24.59,24.400000000000002,24.21,23.830000000000002,N/A,N/A -2012,10,11,22,30,102030,100860,99740,80.15,0,6.49,7.0600000000000005,7.2,7.2700000000000005,7.32,7.36,7.390000000000001,7.4,7.42,122.59,122.66,122.7,122.74000000000001,122.78,122.81,122.84,122.87,122.94,25.61,25.29,25.12,24.93,24.740000000000002,24.55,24.35,24.17,23.78,N/A,N/A -2012,10,11,23,30,102010,100850,99720,82.60000000000001,0,7.34,8.01,8.17,8.26,8.32,8.36,8.39,8.41,8.44,127.03,127.14,127.19,127.23,127.28,127.31,127.36,127.4,127.48,25.51,25.19,25.01,24.82,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,12,0,30,101990,100830,99700,81.69,0,7.05,7.66,7.8,7.86,7.91,7.930000000000001,7.94,7.95,7.94,121.09,121.35000000000001,121.62,121.9,122.17,122.42,122.69,122.94,123.49000000000001,25.63,25.3,25.13,24.94,24.75,24.560000000000002,24.37,24.19,23.81,N/A,N/A -2012,10,12,1,30,102000,100840,99710,81.22,0,7.12,7.8100000000000005,7.96,8.040000000000001,8.09,8.11,8.13,8.13,8.120000000000001,120.05,120.48,120.71000000000001,120.95,121.16,121.36,121.58,121.79,122.2,25.75,25.44,25.28,25.080000000000002,24.900000000000002,24.71,24.52,24.34,23.96,N/A,N/A -2012,10,12,2,30,102020,100850,99720,83.94,0,7.34,7.97,8.11,8.18,8.22,8.24,8.24,8.24,8.22,121.29,121.64,121.84,122.03,122.22,122.4,122.58,122.76,123.13000000000001,25.41,25.080000000000002,24.900000000000002,24.7,24.51,24.32,24.12,23.93,23.55,N/A,N/A -2012,10,12,3,30,102030,100860,99730,83.44,0,6.890000000000001,7.49,7.640000000000001,7.72,7.78,7.82,7.84,7.86,7.890000000000001,129.13,129.41,129.56,129.71,129.85,129.98,130.1,130.21,130.42000000000002,25.580000000000002,25.25,25.080000000000002,24.87,24.68,24.490000000000002,24.3,24.11,23.72,N/A,N/A -2012,10,12,4,30,102020,100850,99720,84.89,0,7.16,7.75,7.88,7.94,7.98,8.01,8.01,8.02,8.01,120.11,120.45,120.72,120.99000000000001,121.24000000000001,121.49000000000001,121.73,121.97,122.44,25.47,25.14,24.97,24.78,24.59,24.400000000000002,24.2,24.02,23.64,N/A,N/A -2012,10,12,5,30,102000,100840,99710,82.82000000000001,0,7.48,8.17,8.32,8.39,8.44,8.46,8.46,8.46,8.44,121.55,121.73,121.86,122.01,122.17,122.32000000000001,122.48,122.64,123,25.63,25.32,25.150000000000002,24.95,24.76,24.57,24.38,24.2,23.81,N/A,N/A -2012,10,12,6,30,102010,100850,99720,84.32000000000001,0,7.29,7.92,8.05,8.11,8.15,8.17,8.18,8.18,8.17,122.48,122.84,123.05,123.25,123.44,123.61,123.8,123.97,124.33,25.59,25.26,25.09,24.89,24.7,24.51,24.32,24.14,23.75,N/A,N/A -2012,10,12,7,30,102030,100870,99740,83.9,0,7.28,7.98,8.15,8.25,8.32,8.370000000000001,8.4,8.42,8.45,121.67,122.22,122.5,122.76,122.99000000000001,123.21000000000001,123.42,123.61,124,25.78,25.46,25.29,25.09,24.900000000000002,24.72,24.52,24.330000000000002,23.95,N/A,N/A -2012,10,12,8,30,102030,100870,99740,81.48,0,6.51,7.0600000000000005,7.19,7.25,7.28,7.3100000000000005,7.32,7.32,7.32,123.2,123.61,123.87,124.14,124.39,124.63000000000001,124.88000000000001,125.11,125.62,25.830000000000002,25.52,25.36,25.16,24.98,24.79,24.6,24.42,24.04,N/A,N/A -2012,10,12,9,30,102040,100880,99750,84.73,0,6.51,7.07,7.2,7.28,7.33,7.37,7.390000000000001,7.41,7.44,118.67,118.95,119.18,119.43,119.67,119.9,120.14,120.38,120.89,25.61,25.28,25.11,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A -2012,10,12,10,30,102050,100890,99760,81.27,0,6.05,6.57,6.7,6.7700000000000005,6.82,6.86,6.88,6.91,6.94,126.23,126.4,126.52,126.64,126.76,126.87,126.99000000000001,127.11,127.36,25.77,25.45,25.28,25.080000000000002,24.89,24.71,24.51,24.32,23.94,N/A,N/A -2012,10,12,11,30,102070,100900,99780,84.48,0,4.63,4.97,5.05,5.1000000000000005,5.14,5.16,5.19,5.2,5.24,121.79,121.66,121.62,121.58,121.54,121.5,121.47,121.45,121.44,25.59,25.26,25.09,24.900000000000002,24.71,24.52,24.32,24.14,23.76,N/A,N/A -2012,10,12,12,30,102100,100930,99800,85.24,0,5.46,5.8500000000000005,5.93,5.97,5.98,5.99,6,6,5.98,126.37,126.99000000000001,127.36,127.73,128.08,128.42000000000002,128.78,129.12,129.89000000000001,25.55,25.22,25.05,24.86,24.67,24.48,24.29,24.11,23.73,N/A,N/A -2012,10,12,13,30,102110,100950,99820,82.02,0,5.07,5.45,5.54,5.58,5.61,5.63,5.64,5.66,5.67,127.09,127.39,127.59,127.8,128.01,128.22,128.45,128.66,129.17000000000002,25.77,25.46,25.29,25.1,24.91,24.72,24.53,24.35,23.97,N/A,N/A -2012,10,12,14,30,102140,100970,99850,84.06,0,5.09,5.49,5.57,5.62,5.64,5.66,5.67,5.68,5.68,110.06,110.28,110.42,110.56,110.69,110.83,110.98,111.12,111.44,25.67,25.34,25.17,24.97,24.79,24.6,24.400000000000002,24.22,23.84,N/A,N/A -2012,10,12,15,30,102140,100970,99840,83.29,0,4.8,5.12,5.18,5.2,5.2,5.2,5.19,5.18,5.15,103.53,103.91,104.18,104.5,104.82000000000001,105.15,105.54,105.91,106.84,25.73,25.400000000000002,25.23,25.04,24.85,24.66,24.47,24.29,23.91,N/A,N/A -2012,10,12,16,30,102150,100980,99850,87.86,29.3,5.12,5.57,5.72,5.84,5.93,6.01,6.09,6.15,6.29,119.01,118.12,117.51,116.98,116.55,116.19,115.94,115.73,115.61,25.400000000000002,25.07,24.91,24.73,24.55,24.38,24.2,24.03,23.67,N/A,N/A -2012,10,12,17,30,102130,100960,99830,84.94,0,3.24,3.66,3.87,4.13,4.42,4.75,5.0200000000000005,5.26,5.64,105.24000000000001,109.77,112.55,115.46000000000001,118.05,120.51,122.42,124.04,126.03,25.5,25.22,25.080000000000002,24.93,24.79,24.66,24.51,24.36,24.02,N/A,N/A -2012,10,12,18,30,102150,100980,99850,81.85000000000001,0,6.45,7.01,7.13,7.19,7.23,7.25,7.26,7.2700000000000005,7.2700000000000005,123.51,123.37,123.33,123.31,123.31,123.32000000000001,123.33,123.35000000000001,123.39,26.05,25.740000000000002,25.580000000000002,25.38,25.19,25,24.8,24.62,24.240000000000002,N/A,N/A -2012,10,12,19,30,102130,100960,99840,81.16,0,5.7700000000000005,6.22,6.32,6.36,6.390000000000001,6.41,6.41,6.42,6.41,106.45,106.72,106.88,107.05,107.22,107.38,107.54,107.69,108,26.01,25.7,25.53,25.330000000000002,25.14,24.95,24.76,24.57,24.19,N/A,N/A -2012,10,12,20,30,102090,100930,99800,82.36,0,6.05,6.55,6.66,6.71,6.75,6.7700000000000005,6.78,6.79,6.79,108,108.34,108.57000000000001,108.81,109.02,109.23,109.45,109.66,110.11,25.96,25.64,25.47,25.27,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A -2012,10,12,21,30,102070,100910,99780,84.63,0,6.55,7.11,7.22,7.28,7.3100000000000005,7.33,7.33,7.33,7.3100000000000005,104.04,104.46000000000001,104.68,104.88,105.06,105.21000000000001,105.36,105.49000000000001,105.76,25.91,25.59,25.43,25.23,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A -2012,10,12,22,30,102060,100890,99770,85.44,0,7.25,7.91,8.05,8.13,8.17,8.19,8.2,8.21,8.19,105.14,105.3,105.36,105.41,105.46000000000001,105.49000000000001,105.54,105.58,105.66,25.8,25.48,25.310000000000002,25.12,24.92,24.73,24.54,24.36,23.97,N/A,N/A -2012,10,12,23,30,102070,100910,99780,85.76,0,7.5200000000000005,8.19,8.34,8.41,8.45,8.48,8.49,8.49,8.48,106.77,106.79,106.85000000000001,106.91,106.98,107.04,107.13,107.2,107.38,25.72,25.39,25.21,25.01,24.830000000000002,24.64,24.44,24.26,23.88,N/A,N/A -2012,10,13,0,30,102050,100880,99760,87.65,0,7.96,8.69,8.870000000000001,8.97,9.03,9.07,9.1,9.13,9.16,99.7,100.07000000000001,100.28,100.51,100.71000000000001,100.92,101.14,101.36,101.82000000000001,25.66,25.330000000000002,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.2,23.82,N/A,N/A -2012,10,13,1,30,102030,100870,99740,87.26,0,8.88,9.790000000000001,10,10.120000000000001,10.200000000000001,10.26,10.290000000000001,10.32,10.34,112.04,112.46000000000001,112.61,112.75,112.87,112.97,113.07000000000001,113.17,113.38,25.830000000000002,25.5,25.330000000000002,25.13,24.93,24.75,24.55,24.37,23.98,N/A,N/A -2012,10,13,2,30,102030,100870,99750,87.47,0,8.21,9.040000000000001,9.23,9.34,9.4,9.44,9.450000000000001,9.46,9.44,120.32000000000001,120.68,120.85000000000001,121,121.14,121.27,121.4,121.52,121.8,25.94,25.63,25.46,25.26,25.080000000000002,24.89,24.7,24.52,24.14,N/A,N/A -2012,10,13,3,30,102010,100850,99730,87.12,0,8.26,8.99,9.15,9.21,9.26,9.28,9.290000000000001,9.31,9.370000000000001,122.13,122.04,122.06,122.13,122.24000000000001,122.37,122.59,122.83,123.8,25.810000000000002,25.5,25.330000000000002,25.150000000000002,24.97,24.79,24.62,24.45,24.14,N/A,N/A -2012,10,13,4,30,101990,100830,99700,89.56,6.2,7.8500000000000005,8.67,8.91,9.07,9.19,9.290000000000001,9.370000000000001,9.44,9.55,125.71000000000001,126.2,126.43,126.69,126.93,127.17,127.41,127.64,128.07,25.72,25.400000000000002,25.240000000000002,25.05,24.87,24.69,24.5,24.32,23.96,N/A,N/A -2012,10,13,5,30,101960,100800,99670,87.89,0,8.9,9.76,9.950000000000001,10.05,10.11,10.15,10.18,10.200000000000001,10.24,125.09,125.31,125.47,125.66,125.86,126.09,126.36,126.63000000000001,127.38000000000001,25.93,25.62,25.46,25.26,25.080000000000002,24.89,24.7,24.53,24.16,N/A,N/A -2012,10,13,6,30,101960,100800,99680,87.82000000000001,0,8.44,9.290000000000001,9.5,9.620000000000001,9.700000000000001,9.75,9.790000000000001,9.82,9.85,134.45,134.69,134.85,135.03,135.19,135.36,135.54,135.71,136.1,26.03,25.73,25.560000000000002,25.36,25.18,24.990000000000002,24.79,24.61,24.23,N/A,N/A -2012,10,13,7,30,101950,100790,99670,85.53,0,7.78,8.57,8.76,8.870000000000001,8.950000000000001,9.01,9.05,9.09,9.15,149.28,149.19,149.18,149.17000000000002,149.17000000000002,149.16,149.17000000000002,149.19,149.27,26.38,26.11,25.95,25.76,25.580000000000002,25.400000000000002,25.21,25.03,24.66,N/A,N/A -2012,10,13,8,30,101920,100760,99630,83.04,0,8.4,9.27,9.47,9.6,9.68,9.73,9.77,9.8,9.82,155.88,156.02,156.11,156.20000000000002,156.28,156.36,156.44,156.52,156.68,26.5,26.240000000000002,26.09,25.900000000000002,25.72,25.54,25.35,25.17,24.8,N/A,N/A -2012,10,13,9,30,101920,100760,99640,84.8,0,7.87,8.75,8.99,9.15,9.27,9.36,9.44,9.5,9.59,159.69,160,160.1,160.20000000000002,160.27,160.34,160.39000000000001,160.44,160.53,26.5,26.240000000000002,26.09,25.91,25.73,25.54,25.35,25.17,24.8,N/A,N/A -2012,10,13,10,30,101900,100740,99620,81.91,0,9.040000000000001,10.02,10.27,10.43,10.540000000000001,10.63,10.69,10.74,10.82,161.13,161.38,161.54,161.70000000000002,161.86,162.02,162.18,162.33,162.67000000000002,26.63,26.39,26.240000000000002,26.060000000000002,25.88,25.7,25.52,25.34,24.98,N/A,N/A -2012,10,13,11,30,101900,100740,99620,83.26,0,8.78,9.76,10.03,10.200000000000001,10.32,10.42,10.49,10.55,10.64,164.42000000000002,164.46,164.48,164.49,164.5,164.5,164.5,164.5,164.49,26.59,26.34,26.2,26.01,25.830000000000002,25.650000000000002,25.47,25.29,24.92,N/A,N/A -2012,10,13,12,30,101880,100720,99600,84.76,0,9.41,10.46,10.75,10.96,11.11,11.22,11.31,11.38,11.49,165.88,165.16,164.91,164.69,164.51,164.36,164.23,164.12,163.95000000000002,26.580000000000002,26.32,26.16,25.97,25.79,25.61,25.41,25.23,24.85,N/A,N/A -2012,10,13,13,30,101910,100750,99630,84.06,0,10.08,11.21,11.51,11.700000000000001,11.83,11.92,11.99,12.040000000000001,12.1,161.44,161.32,161.33,161.36,161.39000000000001,161.42000000000002,161.46,161.5,161.59,26.48,26.23,26.07,25.88,25.7,25.52,25.330000000000002,25.150000000000002,24.77,N/A,N/A -2012,10,13,14,30,101910,100750,99630,80.69,0,9.57,10.620000000000001,10.870000000000001,11.03,11.13,11.21,11.26,11.3,11.36,162.33,162.42000000000002,162.45000000000002,162.47,162.47,162.47,162.47,162.47,162.45000000000002,26.46,26.2,26.04,25.85,25.67,25.48,25.29,25.11,24.73,N/A,N/A -2012,10,13,15,30,101920,100760,99640,78.56,0,9.93,11.02,11.3,11.47,11.6,11.69,11.76,11.82,11.9,159.35,159.53,159.61,159.70000000000002,159.78,159.86,159.93,160,160.14000000000001,26.44,26.18,26.02,25.84,25.66,25.47,25.28,25.1,24.72,N/A,N/A -2012,10,13,16,30,101890,100730,99600,78.74,0,8.89,9.85,10.08,10.23,10.34,10.42,10.48,10.53,10.6,160.77,161.23,161.45000000000002,161.65,161.83,161.99,162.14000000000001,162.27,162.53,26.48,26.21,26.05,25.86,25.67,25.490000000000002,25.3,25.11,24.73,N/A,N/A -2012,10,13,17,30,101870,100710,99590,79.17,0,9.33,10.32,10.57,10.72,10.82,10.89,10.93,10.97,11.01,154.84,155.25,155.49,155.74,155.96,156.17000000000002,156.37,156.55,156.93,26.41,26.150000000000002,25.990000000000002,25.8,25.62,25.43,25.240000000000002,25.060000000000002,24.68,N/A,N/A -2012,10,13,18,30,101820,100670,99540,78.12,0,8.63,9.540000000000001,9.77,9.91,10.01,10.08,10.13,10.17,10.23,162.05,162.44,162.6,162.76,162.9,163.03,163.15,163.26,163.49,26.490000000000002,26.23,26.07,25.88,25.7,25.52,25.330000000000002,25.150000000000002,24.77,N/A,N/A -2012,10,13,19,30,101790,100640,99520,79.11,0,9.620000000000001,10.69,10.950000000000001,11.11,11.22,11.290000000000001,11.33,11.370000000000001,11.39,160.22,160.45000000000002,160.62,160.79,160.94,161.09,161.23,161.37,161.65,26.52,26.27,26.11,25.92,25.73,25.55,25.36,25.18,24.8,N/A,N/A -2012,10,13,20,30,101730,100570,99450,80.53,0,9.18,10.23,10.52,10.73,10.88,11,11.09,11.17,11.290000000000001,166.39000000000001,166.68,166.79,166.89000000000001,166.98,167.04,167.1,167.15,167.23,26.54,26.29,26.14,25.95,25.77,25.59,25.400000000000002,25.22,24.84,N/A,N/A -2012,10,13,21,30,101700,100540,99420,79.79,0,9.02,9.99,10.25,10.42,10.540000000000001,10.64,10.72,10.78,10.89,168.76,169.25,169.45000000000002,169.63,169.77,169.88,169.98,170.06,170.19,26.57,26.330000000000002,26.19,26,25.830000000000002,25.650000000000002,25.47,25.29,24.92,N/A,N/A -2012,10,13,22,30,101670,100510,99390,80.5,0,9.42,10.450000000000001,10.72,10.89,11.01,11.09,11.15,11.200000000000001,11.27,169.96,169.88,169.84,169.81,169.77,169.74,169.71,169.68,169.62,26.6,26.36,26.2,26.02,25.84,25.66,25.47,25.29,24.92,N/A,N/A -2012,10,13,23,30,101610,100460,99340,80.2,0,9.370000000000001,10.31,10.55,10.69,10.8,10.870000000000001,10.93,10.98,11.07,164.09,164.20000000000002,164.32,164.49,164.66,164.85,165.07,165.27,165.78,26.650000000000002,26.42,26.28,26.11,25.94,25.77,25.59,25.42,25.07,N/A,N/A -2012,10,14,0,30,101620,100470,99350,82.16,0,9.96,11.05,11.36,11.55,11.700000000000001,11.81,11.9,11.97,12.09,169.68,169.78,169.8,169.81,169.81,169.8,169.79,169.77,169.73,26.63,26.400000000000002,26.25,26.07,25.89,25.71,25.53,25.35,24.990000000000002,N/A,N/A -2012,10,14,1,30,101610,100460,99340,80.44,0,9.63,10.700000000000001,10.98,11.19,11.34,11.47,11.56,11.65,11.790000000000001,173.47,173,172.81,172.61,172.43,172.26,172.1,171.94,171.64000000000001,26.84,26.63,26.490000000000002,26.310000000000002,26.14,25.97,25.79,25.61,25.25,N/A,N/A -2012,10,14,2,30,101620,100470,99350,82.72,0,9.75,10.86,11.18,11.4,11.56,11.69,11.790000000000001,11.870000000000001,11.99,170.84,170.99,171.04,171.08,171.11,171.14000000000001,171.17000000000002,171.19,171.23,26.76,26.54,26.39,26.21,26.04,25.86,25.67,25.490000000000002,25.12,N/A,N/A -2012,10,14,3,30,101600,100450,99330,84.66,0,10.38,11.55,11.870000000000001,12.09,12.25,12.370000000000001,12.47,12.55,12.67,164.07,164.34,164.53,164.72,164.9,165.09,165.27,165.44,165.78,26.560000000000002,26.32,26.17,25.98,25.810000000000002,25.63,25.44,25.26,24.900000000000002,N/A,N/A -2012,10,14,4,30,101580,100420,99310,79.94,0,10.950000000000001,12.27,12.64,12.89,13.08,13.22,13.34,13.44,13.59,167.1,167.24,167.34,167.45000000000002,167.55,167.65,167.74,167.83,168.02,26.64,26.41,26.26,26.080000000000002,25.900000000000002,25.72,25.53,25.35,24.98,N/A,N/A -2012,10,14,5,30,101570,100410,99290,81.26,0,10.44,11.68,12.040000000000001,12.290000000000001,12.47,12.620000000000001,12.74,12.84,12.99,172.47,172.85,173.01,173.17000000000002,173.3,173.42000000000002,173.52,173.61,173.77,26.6,26.36,26.21,26.02,25.84,25.66,25.48,25.3,24.92,N/A,N/A -2012,10,14,6,30,101600,100450,99330,79.15,0,10.85,12.09,12.44,12.65,12.8,12.9,12.98,13.030000000000001,13.1,176.26,176.5,176.64000000000001,176.79,176.92000000000002,177.06,177.19,177.31,177.58,26.580000000000002,26.32,26.16,25.97,25.79,25.6,25.400000000000002,25.22,24.84,N/A,N/A -2012,10,14,7,30,101600,100450,99330,79.03,0,10.18,11.3,11.620000000000001,11.83,11.98,12.09,12.18,12.26,12.370000000000001,181.59,181.87,181.96,182.02,182.05,182.07,182.07,182.07,182.04,26.57,26.310000000000002,26.150000000000002,25.96,25.78,25.59,25.400000000000002,25.21,24.830000000000002,N/A,N/A -2012,10,14,8,30,101570,100410,99290,75.07000000000001,0,11.22,12.46,12.76,12.93,13.040000000000001,13.120000000000001,13.18,13.22,13.26,186.37,186.39000000000001,186.36,186.31,186.24,186.17000000000002,186.1,186.03,185.88,26.650000000000002,26.39,26.23,26.04,25.86,25.67,25.48,25.3,24.92,N/A,N/A -2012,10,14,9,30,101620,100470,99350,72.62,0,9.41,10.43,10.71,10.88,11,11.09,11.15,11.21,11.28,188.97,188.9,188.93,188.97,189.01,189.05,189.1,189.14000000000001,189.23,26.72,26.47,26.32,26.13,25.95,25.76,25.57,25.38,25,N/A,N/A -2012,10,14,10,30,101620,100460,99340,73.71000000000001,0,10.21,11.290000000000001,11.57,11.72,11.83,11.89,11.94,11.96,11.99,194.18,194.12,194.08,194.02,193.96,193.89000000000001,193.82,193.75,193.6,26.7,26.46,26.310000000000002,26.12,25.94,25.76,25.57,25.39,25.02,N/A,N/A -2012,10,14,11,30,101650,100500,99380,75.25,0,9.73,10.77,11.07,11.25,11.38,11.48,11.56,11.620000000000001,11.72,193.4,192.98000000000002,192.81,192.65,192.52,192.4,192.3,192.21,192.04,26.64,26.39,26.240000000000002,26.04,25.86,25.68,25.48,25.3,24.92,N/A,N/A -2012,10,14,12,30,101700,100540,99420,73.56,0,7.74,8.5,8.700000000000001,8.82,8.9,8.96,9.01,9.040000000000001,9.09,199.25,198.92000000000002,198.78,198.61,198.45000000000002,198.3,198.16,198.03,197.77,26.72,26.490000000000002,26.34,26.150000000000002,25.97,25.78,25.59,25.41,25.04,N/A,N/A -2012,10,14,13,30,101720,100570,99450,74.05,0,7.72,8.53,8.76,8.89,8.99,9.06,9.11,9.15,9.200000000000001,199.34,199.65,199.77,199.9,200.02,200.14000000000001,200.26,200.37,200.59,26.740000000000002,26.5,26.34,26.150000000000002,25.97,25.78,25.59,25.400000000000002,25.02,N/A,N/A -2012,10,14,14,30,101750,100600,99480,74.73,0,6.71,7.390000000000001,7.57,7.69,7.7700000000000005,7.83,7.88,7.91,7.96,198.81,198.77,198.84,198.95000000000002,199.05,199.16,199.27,199.37,199.59,26.76,26.52,26.37,26.17,25.990000000000002,25.8,25.61,25.43,25.05,N/A,N/A -2012,10,14,15,30,101770,100610,99490,72,0,6.0600000000000005,6.59,6.72,6.78,6.82,6.8500000000000005,6.87,6.88,6.88,203.92000000000002,204.17000000000002,204.32,204.45000000000002,204.56,204.67000000000002,204.76,204.85,205.03,26.810000000000002,26.57,26.42,26.23,26.05,25.86,25.67,25.490000000000002,25.11,N/A,N/A -2012,10,14,16,30,101740,100580,99460,73.01,0,5.66,6.15,6.26,6.3100000000000005,6.3500000000000005,6.37,6.38,6.390000000000001,6.390000000000001,207.4,207.46,207.46,207.44,207.43,207.42000000000002,207.41,207.41,207.38,26.73,26.490000000000002,26.330000000000002,26.14,25.96,25.77,25.580000000000002,25.400000000000002,25.03,N/A,N/A -2012,10,14,17,30,101740,100580,99460,75.83,0,6.17,6.72,6.8500000000000005,6.92,6.96,6.98,6.99,6.99,6.98,210.86,210.83,210.82,210.77,210.73000000000002,210.68,210.62,210.56,210.42000000000002,26.69,26.43,26.27,26.080000000000002,25.89,25.7,25.51,25.330000000000002,24.95,N/A,N/A -2012,10,14,18,30,101700,100550,99420,74.96000000000001,0,5.75,6.24,6.34,6.4,6.43,6.45,6.47,6.48,6.49,211.27,211.3,211.31,211.32,211.33,211.34,211.34,211.36,211.36,26.66,26.39,26.23,26.03,25.85,25.66,25.47,25.29,24.91,N/A,N/A -2012,10,14,19,30,101700,100550,99420,77.07000000000001,0,5.51,5.98,6.09,6.140000000000001,6.17,6.2,6.21,6.21,6.22,207.8,208.05,208.09,208.14000000000001,208.20000000000002,208.25,208.32,208.38,208.52,26.71,26.43,26.27,26.07,25.89,25.69,25.5,25.32,24.94,N/A,N/A -2012,10,14,20,30,101690,100530,99410,77.62,0,6.05,6.57,6.7,6.76,6.8,6.82,6.83,6.84,6.82,206.52,206.56,206.54,206.52,206.51,206.49,206.48000000000002,206.47,206.43,26.740000000000002,26.490000000000002,26.330000000000002,26.13,25.95,25.77,25.57,25.39,25.01,N/A,N/A -2012,10,14,21,30,101750,100590,99450,76.46000000000001,7.7,7.23,7.72,7.82,7.8500000000000005,7.87,7.88,7.890000000000001,7.9,7.94,207.11,208.09,208.68,209.34,210.05,210.78,211.71,212.6,215.32,24.71,24.34,24.17,23.990000000000002,23.82,23.66,23.490000000000002,23.34,23.05,N/A,N/A -2012,10,14,22,30,101670,100510,99380,81.16,1.5,6.38,6.82,6.93,6.99,7.04,7.1000000000000005,7.23,7.37,7.9,254.35,253.36,252.81,252.11,251.3,250.36,248.84,247.17000000000002,240.94,24.76,24.41,24.25,24.07,23.91,23.76,23.64,23.53,23.56,N/A,N/A -2012,10,14,23,30,101600,100440,99310,71.18,0,4.22,4.37,4.36,4.3,4.26,4.23,4.22,4.21,4.09,225.55,224.69,224.17000000000002,223.4,222.06,220.03,216.55,212.53,204.56,25.42,25.12,24.97,24.79,24.66,24.54,24.490000000000002,24.48,24.57,N/A,N/A -2012,10,15,0,30,101580,100420,99300,66.81,0,1.21,1.6300000000000001,1.93,2.32,2.68,3.0500000000000003,3.37,3.66,4.12,249.56,232.66,221.79,215.72,211.66,209.72,208.75,208.32,208.26,26.39,26.560000000000002,26.69,26.84,26.86,26.77,26.63,26.46,26.080000000000002,N/A,N/A -2012,10,15,1,30,101630,100470,99350,72.77,0,2.2600000000000002,2.38,2.42,2.54,2.7800000000000002,3.22,3.61,3.94,4.47,234.92000000000002,234.04,233.26,231.81,230.21,228.05,226.59,225.64000000000001,224.62,26.42,26.16,26.03,25.89,25.86,25.96,25.98,25.97,25.78,N/A,N/A -2012,10,15,2,30,101630,100470,99350,81.91,0,1.68,1.8,1.83,1.86,1.9000000000000001,1.95,2.09,2.2800000000000002,2.95,227.3,227.14000000000001,227.07,227.02,227.15,227.44,228.23000000000002,229.24,231.68,26.26,25.97,25.8,25.61,25.43,25.25,25.09,24.95,24.77,N/A,N/A -2012,10,15,3,30,101630,100480,99360,84.01,0,3.49,3.75,3.81,3.84,3.86,3.88,3.89,3.9,3.99,270.05,269.51,269.01,268.53000000000003,268.16,267.89,267.64,267.39,266.75,26.330000000000002,26.05,25.89,25.69,25.51,25.330000000000002,25.150000000000002,24.97,24.61,N/A,N/A -2012,10,15,4,30,101650,100490,99370,82.07000000000001,0,2.14,2.29,2.34,2.4,2.5,2.63,2.84,3.09,3.52,283.74,281.49,279.45,276.79,273.72,269.85,266.28000000000003,262.84000000000003,258.72,26.13,25.830000000000002,25.67,25.48,25.3,25.11,24.93,24.76,24.41,N/A,N/A -2012,10,15,5,30,101650,100490,99370,83.23,0,2.35,2.48,2.5100000000000002,2.58,2.75,3.0100000000000002,3.31,3.63,3.99,290.81,289.17,287.88,285.78000000000003,282.75,278.5,274.40000000000003,270.38,268.88,25.900000000000002,25.6,25.44,25.27,25.13,25.01,24.91,24.830000000000002,24.62,N/A,N/A -2012,10,15,6,30,101660,100500,99380,84.09,0,3.8200000000000003,3.98,3.98,3.96,3.93,3.91,3.88,3.86,3.86,311.11,310.43,309.98,309.43,308.87,308.24,307.46,306.63,304.2,25.62,25.3,25.14,24.94,24.76,24.57,24.39,24.21,23.85,N/A,N/A -2012,10,15,7,30,101700,100540,99410,81.29,0,3.93,4.11,4.14,4.14,4.13,4.12,4.12,4.12,4.17,319.49,319.38,319.31,319.2,319.07,318.90000000000003,318.62,318.33,317,25.38,25.05,24.88,24.68,24.5,24.32,24.13,23.96,23.61,N/A,N/A -2012,10,15,8,30,101710,100550,99420,83.43,0,4.44,4.7,4.76,4.78,4.8,4.8100000000000005,4.82,4.83,4.86,320.11,320.3,320.45,320.61,320.75,320.89,321.02,321.15000000000003,321.40000000000003,25.2,24.85,24.68,24.48,24.29,24.1,23.91,23.73,23.35,N/A,N/A -2012,10,15,9,30,101700,100530,99410,83.8,0,3.67,3.99,4.1,4.18,4.25,4.3100000000000005,4.37,4.42,4.51,335.2,335.82,336.03000000000003,336.16,336.22,336.25,336.24,336.2,336.03000000000003,25,24.650000000000002,24.48,24.28,24.09,23.900000000000002,23.71,23.52,23.14,N/A,N/A -2012,10,15,10,30,101710,100550,99420,72.45,0,6.01,6.4,6.48,6.51,6.51,6.51,6.49,6.48,6.44,12.73,12.8,12.870000000000001,12.93,13,13.06,13.13,13.19,13.35,24.84,24.47,24.3,24.1,23.91,23.72,23.53,23.35,22.98,N/A,N/A -2012,10,15,11,30,101690,100530,99390,70.41,0,7.88,8.46,8.57,8.61,8.63,8.64,8.64,8.64,8.64,25.740000000000002,25.96,26.13,26.310000000000002,26.490000000000002,26.67,26.87,27.080000000000002,27.580000000000002,24.54,24.150000000000002,23.97,23.78,23.59,23.41,23.23,23.06,22.72,N/A,N/A -2012,10,15,12,30,101720,100550,99420,69.10000000000001,0,8.24,8.84,8.97,9.01,9.03,9.03,9.02,9.01,8.97,26.41,26.63,26.75,26.88,27.01,27.13,27.26,27.39,27.69,24.27,23.86,23.67,23.47,23.28,23.1,22.91,22.73,22.37,N/A,N/A -2012,10,15,13,30,101730,100550,99410,72.12,0,8.05,8.6,8.71,8.74,8.76,8.76,8.75,8.74,8.71,29.44,29.7,29.87,30.04,30.2,30.36,30.52,30.67,31.05,23.330000000000002,22.87,22.68,22.48,22.28,22.1,21.91,21.740000000000002,21.39,N/A,N/A -2012,10,15,14,30,101750,100580,99440,73.53,0,7.47,7.99,8.1,8.15,8.18,8.2,8.22,8.23,8.27,34.03,34.28,34.43,34.59,34.730000000000004,34.87,35.03,35.18,35.54,23.150000000000002,22.69,22.490000000000002,22.29,22.1,21.91,21.72,21.55,21.2,N/A,N/A -2012,10,15,15,30,101740,100570,99430,69.09,0,7.54,8.08,8.19,8.25,8.28,8.3,8.31,8.32,8.34,42.78,43,43.160000000000004,43.300000000000004,43.44,43.58,43.72,43.85,44.18,23.400000000000002,22.95,22.75,22.55,22.35,22.17,21.97,21.79,21.43,N/A,N/A -2012,10,15,16,30,101720,100540,99400,64.55,0,6.87,7.33,7.44,7.49,7.5200000000000005,7.54,7.55,7.5600000000000005,7.58,36.75,36.96,37.11,37.25,37.39,37.53,37.68,37.82,38.17,23.740000000000002,23.31,23.12,22.92,22.73,22.54,22.35,22.17,21.81,N/A,N/A -2012,10,15,17,30,101680,100510,99370,60.84,0,6.11,6.53,6.63,6.68,6.72,6.74,6.7700000000000005,6.79,6.83,30.11,30.09,30.12,30.14,30.150000000000002,30.16,30.18,30.2,30.25,24.19,23.79,23.61,23.41,23.22,23.03,22.84,22.66,22.28,N/A,N/A -2012,10,15,18,30,101660,100490,99360,55.870000000000005,0,4.89,5.22,5.3,5.34,5.38,5.41,5.43,5.45,5.49,41.08,40.63,40.29,39.95,39.65,39.35,39.04,38.75,38.13,24.84,24.48,24.3,24.1,23.92,23.73,23.53,23.35,22.97,N/A,N/A -2012,10,15,19,30,101640,100470,99340,53.29,0,3.5100000000000002,3.72,3.77,3.8000000000000003,3.8200000000000003,3.84,3.85,3.86,3.89,57.910000000000004,57.02,56.42,55.84,55.300000000000004,54.78,54.25,53.74,52.660000000000004,25.150000000000002,24.82,24.650000000000002,24.45,24.26,24.07,23.88,23.69,23.31,N/A,N/A -2012,10,15,20,30,101590,100420,99290,53.660000000000004,0,3.06,3.18,3.19,3.18,3.17,3.16,3.15,3.13,3.1,76.14,75.3,74.7,74.11,73.54,73,72.4,71.83,70.56,25.23,24.900000000000002,24.72,24.53,24.330000000000002,24.14,23.95,23.77,23.38,N/A,N/A -2012,10,15,21,30,101560,100390,99260,52.76,0,1.86,1.92,1.93,1.93,1.92,1.92,1.9100000000000001,1.9000000000000001,1.8800000000000001,89.03,88.18,87.73,87.24,86.76,86.27,85.69,85.14,83.68,25.35,25.03,24.86,24.66,24.47,24.28,24.09,23.91,23.53,N/A,N/A -2012,10,15,22,30,101510,100350,99220,51.9,0,1.8,1.8800000000000001,1.8900000000000001,1.8900000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,82.74,81.91,81.32000000000001,80.72,80.12,79.5,78.79,78.12,76.35000000000001,25.47,25.16,24.990000000000002,24.79,24.6,24.42,24.22,24.04,23.66,N/A,N/A -2012,10,15,23,30,101510,100340,99220,51.7,0,1.1,1.1300000000000001,1.1300000000000001,1.1300000000000001,1.1300000000000001,1.12,1.12,1.11,1.1,119.47,118.45,117.69,116.9,116.13,115.37,114.53,113.74000000000001,111.84,25.55,25.240000000000002,25.07,24.87,24.68,24.5,24.3,24.12,23.740000000000002,N/A,N/A -2012,10,16,0,30,101500,100340,99210,51.910000000000004,0,1.1,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,1.1500000000000001,125.18,123.89,123.09,122.28,121.5,120.74000000000001,119.92,119.17,117.4,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.53,24.330000000000002,24.14,23.76,N/A,N/A -2012,10,16,1,30,101500,100340,99210,52.050000000000004,0,0.49,0.52,0.53,0.54,0.55,0.56,0.5700000000000001,0.58,0.61,91.67,88.09,86.26,84.5,82.83,81.2,79.59,78.09,74.94,25.580000000000002,25.27,25.1,24.900000000000002,24.71,24.52,24.330000000000002,24.14,23.76,N/A,N/A -2012,10,16,2,30,101510,100350,99220,53.51,0,1.2,1.27,1.29,1.31,1.32,1.34,1.35,1.36,1.3900000000000001,58.77,57.47,56.82,56.2,55.64,55.120000000000005,54.59,54.1,53.13,25.560000000000002,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.73,N/A,N/A -2012,10,16,3,30,101500,100340,99210,53.14,0,4.25,4.5,4.5,4.48,4.45,4.42,4.38,4.34,4.25,40.79,41.13,41.32,41.52,41.7,41.87,42.050000000000004,42.22,42.51,25.66,25.35,25.18,24.98,24.79,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A -2012,10,16,4,30,101480,100310,99190,52.21,0,5.87,6.2700000000000005,6.34,6.36,6.37,6.37,6.36,6.3500000000000005,6.3100000000000005,52.14,52.65,52.94,53.21,53.46,53.68,53.910000000000004,54.120000000000005,54.550000000000004,25.51,25.19,25.02,24.82,24.63,24.44,24.25,24.060000000000002,23.67,N/A,N/A -2012,10,16,5,30,101460,100290,99160,52.34,0,5.89,6.2700000000000005,6.33,6.34,6.34,6.33,6.3100000000000005,6.29,6.24,62.18,62.38,62.49,62.61,62.72,62.82,62.93,63.02,63.24,25.38,25.05,24.88,24.68,24.490000000000002,24.3,24.1,23.92,23.53,N/A,N/A -2012,10,16,6,30,101460,100300,99170,57.28,0,5.22,5.57,5.65,5.68,5.7,5.72,5.73,5.73,5.73,69.42,70.25,70.75,71.22,71.64,72.03,72.42,72.78,73.51,25.28,24.96,24.79,24.59,24.39,24.21,24.01,23.82,23.44,N/A,N/A -2012,10,16,7,30,101440,100280,99150,57.07,0,5.37,5.73,5.8,5.83,5.8500000000000005,5.86,5.86,5.86,5.8500000000000005,81,81.77,82.17,82.55,82.88,83.19,83.5,83.78,84.34,25.25,24.91,24.740000000000002,24.54,24.35,24.16,23.96,23.77,23.38,N/A,N/A -2012,10,16,8,30,101430,100270,99140,57.74,0,5.28,5.66,5.74,5.78,5.8100000000000005,5.83,5.8500000000000005,5.86,5.87,90.98,91.49,91.81,92.13,92.43,92.71000000000001,92.99,93.24,93.78,25.23,24.900000000000002,24.72,24.52,24.330000000000002,24.14,23.94,23.76,23.37,N/A,N/A -2012,10,16,9,30,101410,100250,99120,59.67,0,5.04,5.38,5.46,5.5,5.53,5.55,5.57,5.58,5.6000000000000005,101.17,101.58,101.87,102.18,102.45,102.72,102.99000000000001,103.24000000000001,103.76,25.09,24.75,24.57,24.37,24.18,23.990000000000002,23.79,23.61,23.22,N/A,N/A -2012,10,16,10,30,101390,100230,99100,59.870000000000005,0,5.07,5.4,5.47,5.5,5.5200000000000005,5.53,5.54,5.54,5.54,111.53,112,112.27,112.53,112.76,112.98,113.2,113.4,113.81,25.12,24.78,24.6,24.400000000000002,24.21,24.02,23.82,23.63,23.240000000000002,N/A,N/A -2012,10,16,11,30,101390,100220,99100,60.56,0,4.86,5.18,5.23,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.26,117.05,117.34,117.5,117.65,117.79,117.93,118.06,118.19,118.48,25.03,24.68,24.51,24.310000000000002,24.11,23.92,23.72,23.54,23.150000000000002,N/A,N/A -2012,10,16,12,30,101380,100210,99090,62.6,0,4.64,4.94,5,5.03,5.05,5.0600000000000005,5.07,5.08,5.08,123.66,124.09,124.36,124.63000000000001,124.86,125.08,125.3,125.51,125.93,25.03,24.69,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.150000000000002,N/A,N/A -2012,10,16,13,30,101350,100190,99060,64.24,0,4.3,4.6000000000000005,4.68,4.72,4.76,4.8,4.82,4.8500000000000005,4.89,131.75,131.93,132.08,132.24,132.38,132.52,132.66,132.8,133.09,24.95,24.6,24.42,24.22,24.03,23.84,23.64,23.45,23.06,N/A,N/A -2012,10,16,14,30,101370,100200,99080,66.73,0,4.82,5.11,5.17,5.19,5.21,5.22,5.22,5.22,5.21,137.8,138.4,138.77,139.11,139.42000000000002,139.71,139.99,140.26,140.77,24.97,24.62,24.44,24.240000000000002,24.05,23.85,23.66,23.47,23.080000000000002,N/A,N/A -2012,10,16,15,30,101340,100180,99050,68.11,0,3.96,4.23,4.3,4.3500000000000005,4.38,4.41,4.43,4.46,4.49,147.44,147.23,147.08,146.96,146.85,146.75,146.67000000000002,146.59,146.44,24.98,24.64,24.46,24.26,24.07,23.88,23.68,23.490000000000002,23.1,N/A,N/A -2012,10,16,16,30,101310,100150,99030,68.77,0,3.95,4.18,4.23,4.26,4.28,4.29,4.3100000000000005,4.32,4.32,148.13,148.67000000000002,148.96,149.24,149.48,149.70000000000002,149.91,150.11,150.48,25.05,24.7,24.53,24.32,24.13,23.94,23.740000000000002,23.56,23.16,N/A,N/A -2012,10,16,17,30,101290,100130,99010,69,0,3.35,3.5700000000000003,3.64,3.68,3.72,3.75,3.7800000000000002,3.81,3.85,155.19,155.18,155.18,155.18,155.18,155.19,155.20000000000002,155.22,155.25,25.07,24.73,24.55,24.35,24.16,23.96,23.77,23.580000000000002,23.19,N/A,N/A -2012,10,16,18,30,101240,100090,98960,67.9,0,3.11,3.29,3.34,3.37,3.4,3.42,3.44,3.45,3.48,160.49,160.58,160.69,160.81,160.93,161.05,161.17000000000002,161.28,161.55,25.21,24.87,24.69,24.490000000000002,24.3,24.1,23.91,23.72,23.34,N/A,N/A -2012,10,16,19,30,101220,100060,98940,69.11,0,2.92,3.08,3.12,3.14,3.16,3.17,3.18,3.19,3.2,156.37,156.66,156.94,157.21,157.47,157.72,157.98,158.21,158.71,25.22,24.89,24.71,24.51,24.32,24.13,23.93,23.740000000000002,23.36,N/A,N/A -2012,10,16,20,30,101150,100000,98870,69.39,0,2.07,2.21,2.2600000000000002,2.29,2.33,2.35,2.38,2.4,2.45,161.76,162.32,162.68,163,163.27,163.51,163.75,163.98,164.38,25.3,24.96,24.79,24.580000000000002,24.39,24.2,24,23.82,23.43,N/A,N/A -2012,10,16,21,30,101120,99960,98840,69.21000000000001,0,2.48,2.61,2.64,2.66,2.67,2.68,2.69,2.7,2.72,164.66,165.53,166.03,166.47,166.84,167.19,167.51,167.8,168.33,25.310000000000002,24.98,24.810000000000002,24.61,24.42,24.22,24.03,23.84,23.45,N/A,N/A -2012,10,16,22,30,101090,99940,98820,70.59,0,2.94,3.04,3.04,3.02,3,2.98,2.96,2.94,2.9,145.52,146.23,146.69,147.16,147.59,148.01,148.44,148.84,149.65,25.32,25,24.830000000000002,24.62,24.43,24.240000000000002,24.05,23.86,23.47,N/A,N/A -2012,10,16,23,30,101080,99920,98800,70.63,0,2.15,2.22,2.23,2.22,2.22,2.22,2.21,2.2,2.19,124.29,125.5,126.36,127.21000000000001,127.97,128.7,129.42000000000002,130.1,131.44,25.3,24.98,24.810000000000002,24.6,24.41,24.22,24.02,23.84,23.45,N/A,N/A -2012,10,17,0,30,101060,99910,98780,72.17,0.7000000000000001,2.04,2.09,2.08,2.07,2.05,2.04,2.02,2,1.96,85.85000000000001,86.11,86.29,86.5,86.7,86.9,87.12,87.34,87.84,24.97,24.64,24.46,24.26,24.07,23.88,23.69,23.5,23.12,N/A,N/A -2012,10,17,1,30,101070,99910,98790,74.87,0.4,2.9,2.88,2.7800000000000002,2.66,2.5500000000000003,2.44,2.34,2.24,2.06,10.9,12.13,13.35,14.84,16.32,17.86,19.580000000000002,21.2,25.01,24.52,24.18,24.02,23.84,23.66,23.48,23.3,23.13,22.77,N/A,N/A -2012,10,17,2,30,101090,99930,98800,87.8,0.7000000000000001,5.5,5.65,5.61,5.5,5.37,5.22,5.01,4.8,3.93,0.54,1.31,1.86,2.54,3.29,4.13,5.4,6.72,15.18,22.96,22.53,22.34,22.14,21.97,21.79,21.62,21.47,21.26,N/A,N/A -2012,10,17,3,30,101080,99910,98780,82.68,3.3000000000000003,6.19,6.47,6.49,6.46,6.41,6.36,6.29,6.22,6.0200000000000005,15.55,15.92,16.22,16.54,16.87,17.21,17.62,18.02,19.23,22.73,22.27,22.07,21.87,21.68,21.490000000000002,21.3,21.12,20.76,N/A,N/A -2012,10,17,4,30,101060,99900,98760,78.69,2.6,3.2600000000000002,3.35,3.35,3.33,3.3000000000000003,3.27,3.23,3.19,3.08,28.19,29.03,29.63,30.26,30.900000000000002,31.59,32.43,33.25,35.84,22.78,22.37,22.18,21.98,21.79,21.6,21.41,21.23,20.86,N/A,N/A -2012,10,17,5,30,100970,99810,98680,80.09,0.4,3.73,3.94,3.98,4,4.03,4.05,4.07,4.1,4.19,132.09,133.17000000000002,133.67000000000002,134.26,134.86,135.49,136.25,136.99,139.15,22.94,22.53,22.34,22.14,21.95,21.76,21.57,21.39,21.04,N/A,N/A -2012,10,17,6,30,100920,99760,98630,78.53,0,6.75,7.32,7.48,7.58,7.66,7.73,7.79,7.84,7.930000000000001,162.74,162.69,162.64000000000001,162.6,162.56,162.54,162.51,162.5,162.47,24.03,23.63,23.44,23.240000000000002,23.05,22.85,22.66,22.48,22.09,N/A,N/A -2012,10,17,7,30,100920,99770,98640,80.43,0,8.040000000000001,8.69,8.86,8.94,9,9.03,9.06,9.08,9.09,180.78,180.75,180.75,180.74,180.75,180.75,180.77,180.79,180.86,24.03,23.61,23.42,23.21,23.02,22.830000000000002,22.63,22.45,22.07,N/A,N/A -2012,10,17,8,30,100890,99730,98610,61.92,0,7.32,7.94,8.08,8.15,8.19,8.23,8.25,8.26,8.27,179.88,179.51,179.43,179.37,179.3,179.24,179.18,179.13,179.01,25.23,24.89,24.71,24.51,24.32,24.13,23.93,23.740000000000002,23.36,N/A,N/A -2012,10,17,9,30,100900,99740,98620,79.39,0,8.46,9.16,9.32,9.38,9.42,9.43,9.43,9.43,9.4,174.75,174.98,175.18,175.38,175.57,175.76,175.95000000000002,176.14000000000001,176.54,24.66,24.27,24.080000000000002,23.87,23.68,23.490000000000002,23.29,23.1,22.72,N/A,N/A -2012,10,17,10,30,100890,99730,98610,67.89,0,7.67,8.27,8.41,8.47,8.51,8.53,8.540000000000001,8.55,8.57,189.08,189.25,189.29,189.36,189.44,189.52,189.62,189.72,189.99,25.16,24.82,24.650000000000002,24.46,24.27,24.09,23.900000000000002,23.73,23.37,N/A,N/A -2012,10,17,11,30,100890,99740,98620,69.15,0,7.8,8.46,8.6,8.67,8.71,8.74,8.76,8.77,8.790000000000001,172.35,172.57,172.73,172.91,173.09,173.28,173.48,173.69,174.21,25.240000000000002,24.900000000000002,24.73,24.53,24.34,24.150000000000002,23.96,23.78,23.400000000000002,N/A,N/A -2012,10,17,12,30,100890,99740,98620,79.39,0,8.32,9.15,9.38,9.53,9.64,9.73,9.8,9.85,9.950000000000001,176.72,176.85,176.95000000000002,177.06,177.17000000000002,177.26,177.37,177.48,177.70000000000002,25.55,25.23,25.060000000000002,24.86,24.67,24.48,24.29,24.1,23.72,N/A,N/A -2012,10,17,13,30,100860,99710,98590,75.99,0,8.56,9.450000000000001,9.67,9.81,9.9,9.97,10.02,10.05,10.1,187.77,187.6,187.51,187.45000000000002,187.41,187.38,187.36,187.34,187.34,26.1,25.82,25.66,25.47,25.28,25.09,24.900000000000002,24.72,24.330000000000002,N/A,N/A -2012,10,17,14,30,100870,99720,98610,77.29,0,9.47,10.43,10.69,10.82,10.91,10.97,11,11.03,11.040000000000001,189.82,189.9,189.98,190.06,190.14000000000001,190.20000000000002,190.27,190.32,190.43,26.23,25.97,25.810000000000002,25.62,25.44,25.25,25.060000000000002,24.87,24.5,N/A,N/A -2012,10,17,15,30,100850,99700,98590,78.51,0,8.99,9.950000000000001,10.18,10.32,10.42,10.48,10.53,10.56,10.6,191.49,191.51,191.5,191.48000000000002,191.45000000000002,191.43,191.39000000000001,191.35,191.28,26.21,25.94,25.78,25.580000000000002,25.400000000000002,25.21,25.02,24.830000000000002,24.45,N/A,N/A -2012,10,17,16,30,100820,99680,98560,81.47,0,9.28,10.27,10.53,10.69,10.8,10.88,10.94,10.99,11.06,189.14000000000001,189.31,189.39000000000001,189.48,189.56,189.64000000000001,189.71,189.78,189.93,26.17,25.900000000000002,25.740000000000002,25.54,25.36,25.17,24.97,24.79,24.41,N/A,N/A -2012,10,17,17,30,100760,99610,98500,82.92,0,9.49,10.5,10.77,10.92,11.03,11.11,11.17,11.21,11.27,192.39000000000001,192.36,192.35,192.34,192.33,192.31,192.28,192.27,192.22,26.27,26,25.84,25.650000000000002,25.46,25.28,25.080000000000002,24.900000000000002,24.52,N/A,N/A -2012,10,17,18,30,100730,99580,98470,87.60000000000001,0,9.31,10.32,10.58,10.74,10.85,10.92,10.97,11.01,11.05,199.16,199.19,199.22,199.24,199.26,199.27,199.28,199.29,199.31,26.26,25.98,25.82,25.62,25.44,25.25,25.060000000000002,24.87,24.490000000000002,N/A,N/A -2012,10,17,19,30,100720,99570,98470,88.35000000000001,0,8.700000000000001,9.71,10.040000000000001,10.32,10.56,10.76,10.96,11.15,11.51,197.12,198.06,198.53,199.02,199.46,199.89000000000001,200.3,200.69,201.46,26.42,26.2,26.07,25.900000000000002,25.740000000000002,25.57,25.41,25.240000000000002,24.92,N/A,N/A -2012,10,17,20,30,100660,99520,98410,83.59,0,9.4,10.46,10.790000000000001,11.02,11.200000000000001,11.34,11.46,11.56,11.72,204.17000000000002,204.18,204.18,204.17000000000002,204.17000000000002,204.18,204.21,204.25,204.29,26.64,26.43,26.29,26.11,25.94,25.76,25.580000000000002,25.400000000000002,25.04,N/A,N/A -2012,10,17,21,30,100610,99470,98360,83.8,0,8.55,9.94,10.5,10.83,11.09,11.3,11.46,11.59,11.82,206.76,206.06,205.77,206.07,206.29,206.42000000000002,206.51,206.57,206.66,26.69,26.47,26.330000000000002,26.17,26.02,25.86,25.68,25.51,25.150000000000002,N/A,N/A -2012,10,17,22,30,100590,99450,98340,83.3,0,8.33,9.66,10.22,10.59,10.89,11.13,11.33,11.5,11.790000000000001,202.32,202.05,201.96,202.28,202.54,202.74,202.91,203.06,203.35,26.69,26.490000000000002,26.36,26.21,26.07,25.91,25.75,25.580000000000002,25.240000000000002,N/A,N/A -2012,10,17,23,30,100560,99420,98310,85.66,0,8.16,9.200000000000001,9.55,9.85,10.09,10.32,10.53,10.73,11.11,203.1,203.15,203.23000000000002,203.31,203.39000000000001,203.48000000000002,203.57,203.66,203.86,26.71,26.52,26.400000000000002,26.240000000000002,26.09,25.92,25.76,25.6,25.27,N/A,N/A -2012,10,18,0,30,100570,99430,98320,87.32000000000001,0,8.66,9.88,10.34,10.540000000000001,10.73,10.93,11.09,11.22,11.5,196.1,196.09,196.20000000000002,196.39000000000001,196.57,196.75,196.9,197.02,197.33,26.55,26.330000000000002,26.19,26.02,25.87,25.69,25.52,25.35,25,N/A,N/A -2012,10,18,1,30,100570,99430,98320,88.04,0,8.48,9.59,9.98,10.32,10.6,10.85,11.08,11.31,11.72,200.94,201,201.07,201.18,201.31,201.47,201.68,201.92000000000002,202.54,26.7,26.51,26.38,26.22,26.060000000000002,25.900000000000002,25.73,25.57,25.240000000000002,N/A,N/A -2012,10,18,2,30,100610,99470,98370,91.41,0,8.14,9.23,9.61,9.93,10.21,10.450000000000001,10.68,10.88,11.25,207.63,207.87,208.01,208.21,208.42000000000002,208.64000000000001,208.88,209.14000000000001,209.70000000000002,26.740000000000002,26.54,26.41,26.240000000000002,26.080000000000002,25.91,25.740000000000002,25.57,25.23,N/A,N/A -2012,10,18,3,30,100610,99470,98370,93.58,0,7.33,8.35,8.700000000000001,9.03,9.31,9.56,9.8,10.040000000000001,10.48,222.12,222.49,222.73000000000002,223.04,223.35,223.69,224.06,224.45000000000002,225.31,26.740000000000002,26.55,26.43,26.27,26.13,25.97,25.82,25.67,25.37,N/A,N/A -2012,10,18,4,30,100630,99490,98390,94.19,0,5.7700000000000005,6.7,7.0600000000000005,7.4,7.7,7.97,8.23,8.47,8.92,209.85,210.02,210.20000000000002,210.43,210.67000000000002,210.95000000000002,211.25,211.57,212.26,26.71,26.52,26.39,26.23,26.080000000000002,25.92,25.76,25.6,25.27,N/A,N/A -2012,10,18,5,30,100640,99500,98390,94.2,0,4.74,5.53,5.8500000000000005,6.17,6.46,6.73,6.98,7.21,7.62,224.06,223.62,223.37,223.24,223.18,223.19,223.24,223.33,223.56,26.66,26.46,26.330000000000002,26.17,26.02,25.85,25.69,25.53,25.2,N/A,N/A -2012,10,18,6,30,100650,99510,98400,93.34,0,5.5600000000000005,6.73,7.25,7.7700000000000005,8.24,8.71,9.19,9.67,10.57,218.94,218.65,218.57,218.68,219.02,219.63,220.6,221.76,224.69,26.67,26.52,26.41,26.27,26.12,25.97,25.810000000000002,25.650000000000002,25.32,N/A,N/A -2012,10,18,7,30,100700,99560,98460,94.43,0,5.0600000000000005,5.97,6.34,6.74,7.12,7.49,7.83,8.15,8.6,225.51,225.88,226.31,227.07,227.82,228.66,229.34,229.91,230.63,26.61,26.44,26.330000000000002,26.19,26.05,25.900000000000002,25.75,25.6,25.28,N/A,N/A -2012,10,18,8,30,100720,99570,98470,93.92,0,5.9,6.69,6.96,7.18,7.3500000000000005,7.49,7.6000000000000005,7.69,7.8,233.89000000000001,234.41,234.86,235.45000000000002,236.06,236.76,237.67000000000002,238.67000000000002,241.53,26.490000000000002,26.28,26.16,26,25.86,25.72,25.59,25.47,25.240000000000002,N/A,N/A -2012,10,18,9,30,100830,99680,98560,92.47,37,8.76,9.47,9.63,9.68,9.700000000000001,9.68,9.65,9.6,9.46,326.85,328,328.19,328.18,328.14,327.97,327.76,327.46,326.65000000000003,25.61,25.3,25.14,24.93,24.75,24.55,24.37,24.19,23.830000000000002,N/A,N/A -2012,10,18,10,30,100860,99700,98580,80.25,0,12.16,13.34,13.61,13.73,13.8,13.84,13.85,13.85,13.81,30.64,30.84,30.93,31,31.080000000000002,31.14,31.2,31.26,31.38,24.21,23.76,23.57,23.36,23.16,22.98,22.78,22.6,22.23,N/A,N/A -2012,10,18,11,30,100930,99770,98640,65.09,0,13,14.26,14.56,14.700000000000001,14.790000000000001,14.84,14.85,14.86,14.85,34.89,35.14,35.29,35.44,35.58,35.72,35.87,36,36.33,23.830000000000002,23.36,23.16,22.95,22.76,22.57,22.37,22.19,21.82,N/A,N/A -2012,10,18,12,30,100980,99810,98680,66.79,0,12.33,13.49,13.76,13.89,13.97,14.02,14.05,14.06,14.07,42.300000000000004,42.56,42.74,42.92,43.1,43.27,43.46,43.64,44.07,23.29,22.79,22.580000000000002,22.37,22.18,21.990000000000002,21.79,21.62,21.25,N/A,N/A -2012,10,18,13,30,101020,99850,98720,68.64,0,11.65,12.68,12.94,13.06,13.13,13.17,13.19,13.200000000000001,13.19,45.7,46.01,46.230000000000004,46.46,46.67,46.89,47.11,47.33,47.81,23.01,22.5,22.29,22.080000000000002,21.88,21.68,21.490000000000002,21.31,20.93,N/A,N/A -2012,10,18,14,30,101080,99910,98770,66.6,0,12.23,13.36,13.65,13.790000000000001,13.88,13.94,13.97,13.99,14,46.28,46.43,46.53,46.62,46.7,46.78,46.86,46.94,47.11,23.05,22.53,22.32,22.1,21.900000000000002,21.71,21.51,21.330000000000002,20.95,N/A,N/A -2012,10,18,15,30,101110,99940,98800,63.64,0,11.540000000000001,12.58,12.84,12.96,13.040000000000001,13.09,13.120000000000001,13.14,13.14,48.74,48.82,48.870000000000005,48.910000000000004,48.95,48.980000000000004,49.02,49.050000000000004,49.13,22.990000000000002,22.48,22.27,22.05,21.85,21.66,21.46,21.28,20.89,N/A,N/A -2012,10,18,16,30,101160,99990,98850,63.52,0,10.22,11.08,11.290000000000001,11.4,11.47,11.51,11.53,11.55,11.56,46.730000000000004,46.77,46.81,46.85,46.88,46.92,46.96,47,47.08,22.990000000000002,22.5,22.3,22.080000000000002,21.88,21.69,21.490000000000002,21.31,20.92,N/A,N/A -2012,10,18,17,30,101180,100010,98880,58.89,0,9.71,10.52,10.72,10.82,10.89,10.93,10.96,10.98,10.99,45.59,45.65,45.69,45.730000000000004,45.76,45.79,45.81,45.84,45.89,23.28,22.81,22.61,22.400000000000002,22.19,22,21.8,21.61,21.23,N/A,N/A -2012,10,18,18,30,101200,100040,98900,55.35,0,8.620000000000001,9.3,9.47,9.55,9.61,9.65,9.67,9.69,9.700000000000001,47.31,47.13,47.02,46.910000000000004,46.800000000000004,46.69,46.58,46.47,46.24,23.72,23.3,23.1,22.89,22.69,22.5,22.3,22.11,21.72,N/A,N/A -2012,10,18,19,30,101220,100050,98920,51.870000000000005,0,7.68,8.27,8.42,8.49,8.540000000000001,8.58,8.6,8.61,8.63,51.57,51.230000000000004,50.99,50.75,50.53,50.31,50.08,49.870000000000005,49.410000000000004,24.29,23.91,23.73,23.52,23.330000000000002,23.14,22.94,22.76,22.37,N/A,N/A -2012,10,18,20,30,101200,100030,98900,48.43,0,7.29,7.86,8,8.06,8.1,8.13,8.14,8.15,8.16,57.67,57.31,57.07,56.82,56.58,56.35,56.11,55.89,55.39,24.78,24.43,24.26,24.060000000000002,23.86,23.67,23.48,23.29,22.91,N/A,N/A -2012,10,18,21,30,101180,100020,98890,46.79,0,6.86,7.42,7.55,7.61,7.66,7.68,7.71,7.72,7.74,60,59.72,59.52,59.31,59.11,58.910000000000004,58.7,58.5,58.06,25.240000000000002,24.93,24.75,24.560000000000002,24.37,24.18,23.98,23.8,23.41,N/A,N/A -2012,10,18,22,30,101180,100030,98900,46.050000000000004,0,6.7,7.26,7.390000000000001,7.46,7.51,7.54,7.57,7.58,7.61,59.74,59.47,59.32,59.160000000000004,59,58.85,58.69,58.52,58.17,25.63,25.34,25.18,24.98,24.79,24.61,24.41,24.23,23.85,N/A,N/A -2012,10,18,23,30,101190,100030,98910,44.34,0,6.57,7.140000000000001,7.28,7.3500000000000005,7.390000000000001,7.43,7.46,7.48,7.5,58.160000000000004,57.94,57.79,57.64,57.5,57.36,57.21,57.07,56.77,25.93,25.67,25.51,25.32,25.13,24.94,24.75,24.57,24.18,N/A,N/A -2012,10,19,0,30,101220,100060,98940,45.94,0,6.82,7.42,7.55,7.63,7.69,7.73,7.76,7.78,7.8100000000000005,44.33,44.050000000000004,43.97,43.910000000000004,43.86,43.82,43.79,43.75,43.7,25.98,25.72,25.560000000000002,25.36,25.18,24.990000000000002,24.79,24.61,24.22,N/A,N/A -2012,10,19,1,30,101270,100110,98980,45.84,0,8.38,9.07,9.22,9.27,9.31,9.32,9.32,9.31,9.27,35.99,36.54,36.88,37.22,37.53,37.82,38.12,38.39,38.96,25.240000000000002,24.92,24.75,24.55,24.36,24.17,23.98,23.79,23.41,N/A,N/A -2012,10,19,2,30,101300,100130,99000,47.43,0,8.4,9.07,9.22,9.28,9.31,9.32,9.32,9.31,9.28,40.660000000000004,41.02,41.28,41.54,41.77,42,42.230000000000004,42.44,42.9,24.76,24.400000000000002,24.23,24.03,23.830000000000002,23.64,23.45,23.27,22.88,N/A,N/A -2012,10,19,3,30,101320,100150,99020,50.18,0,8.49,9.16,9.31,9.370000000000001,9.41,9.43,9.43,9.43,9.4,43.47,43.910000000000004,44.19,44.46,44.7,44.94,45.18,45.4,45.85,24.5,24.12,23.94,23.740000000000002,23.54,23.35,23.150000000000002,22.97,22.580000000000002,N/A,N/A -2012,10,19,4,30,101330,100160,99030,52.94,0,7.930000000000001,8.52,8.65,8.700000000000001,8.73,8.74,8.75,8.74,8.72,43.65,44.21,44.57,44.93,45.25,45.56,45.86,46.14,46.72,24.21,23.830000000000002,23.64,23.44,23.240000000000002,23.05,22.86,22.67,22.29,N/A,N/A -2012,10,19,5,30,101340,100170,99040,53.61,0,7.640000000000001,8.19,8.3,8.35,8.38,8.4,8.4,8.4,8.370000000000001,44.02,44.53,44.86,45.17,45.46,45.730000000000004,46,46.25,46.79,23.94,23.54,23.35,23.150000000000002,22.95,22.76,22.56,22.38,21.990000000000002,N/A,N/A -2012,10,19,6,30,101390,100220,99080,53.79,0,7.42,7.930000000000001,8.040000000000001,8.09,8.11,8.120000000000001,8.120000000000001,8.11,8.09,42.160000000000004,42.6,42.89,43.17,43.44,43.69,43.95,44.19,44.7,23.81,23.400000000000002,23.21,23,22.81,22.62,22.42,22.240000000000002,21.85,N/A,N/A -2012,10,19,7,30,101440,100270,99130,53.83,0,7.5200000000000005,8.05,8.17,8.22,8.25,8.27,8.27,8.28,8.27,40.69,41.15,41.45,41.74,42.02,42.28,42.550000000000004,42.800000000000004,43.34,23.57,23.150000000000002,22.96,22.76,22.57,22.38,22.18,22,21.62,N/A,N/A -2012,10,19,8,30,101460,100290,99150,52.63,0,7.97,8.55,8.68,8.73,8.77,8.790000000000001,8.8,8.8,8.790000000000001,40.300000000000004,40.78,41.1,41.43,41.730000000000004,42.02,42.33,42.61,43.230000000000004,23.37,22.93,22.740000000000002,22.54,22.34,22.150000000000002,21.96,21.78,21.400000000000002,N/A,N/A -2012,10,19,9,30,101470,100300,99150,53.34,0,7.53,8.040000000000001,8.15,8.2,8.23,8.25,8.26,8.26,8.27,35.04,35.38,35.61,35.86,36.1,36.33,36.6,36.85,37.47,22.91,22.46,22.27,22.07,21.88,21.69,21.5,21.330000000000002,20.97,N/A,N/A -2012,10,19,10,30,101500,100330,99190,55.870000000000005,0,7.18,7.65,7.74,7.78,7.79,7.8,7.8,7.8,7.8,38.6,38.980000000000004,39.24,39.53,39.800000000000004,40.08,40.4,40.69,41.45,22.78,22.330000000000002,22.14,21.94,21.75,21.57,21.39,21.22,20.87,N/A,N/A -2012,10,19,11,30,101510,100340,99190,55.61,0,7.33,7.79,7.87,7.9,7.9,7.9,7.88,7.86,7.82,37.92,38.29,38.54,38.79,39.04,39.28,39.57,39.84,40.53,22.7,22.240000000000002,22.05,21.85,21.66,21.48,21.3,21.13,20.78,N/A,N/A -2012,10,19,12,30,101540,100370,99220,54.17,0,7.24,7.7,7.79,7.82,7.84,7.84,7.83,7.82,7.79,41.95,42.32,42.56,42.800000000000004,43.03,43.26,43.51,43.74,44.27,22.72,22.26,22.07,21.87,21.68,21.5,21.31,21.13,20.77,N/A,N/A -2012,10,19,13,30,101550,100370,99230,53.67,0,6.71,7.11,7.18,7.21,7.21,7.21,7.2,7.18,7.15,40.57,40.88,41.06,41.25,41.44,41.61,41.81,41.99,42.4,22.61,22.150000000000002,21.96,21.76,21.57,21.39,21.2,21.02,20.66,N/A,N/A -2012,10,19,14,30,101580,100400,99260,51.76,0,5.98,6.3100000000000005,6.37,6.38,6.390000000000001,6.38,6.37,6.36,6.33,41.63,41.85,42.01,42.17,42.32,42.46,42.61,42.74,43.03,22.81,22.37,22.18,21.98,21.79,21.61,21.42,21.240000000000002,20.88,N/A,N/A -2012,10,19,15,30,101590,100420,99280,48.300000000000004,0,4.87,5.12,5.16,5.17,5.17,5.17,5.16,5.15,5.11,39.17,39.27,39.38,39.47,39.550000000000004,39.62,39.69,39.75,39.85,23.1,22.69,22.51,22.31,22.12,21.94,21.75,21.57,21.21,N/A,N/A -2012,10,19,16,30,101600,100420,99280,42.96,0,4.2,4.39,4.42,4.42,4.41,4.4,4.39,4.38,4.34,33.74,33.75,33.78,33.81,33.82,33.83,33.83,33.84,33.81,23.48,23.09,22.91,22.71,22.52,22.330000000000002,22.14,21.96,21.57,N/A,N/A -2012,10,19,17,30,101580,100410,99270,41.04,0,3.62,3.77,3.79,3.79,3.79,3.7800000000000002,3.7800000000000002,3.77,3.74,27.79,27.79,27.78,27.78,27.76,27.73,27.69,27.650000000000002,27.53,23.61,23.23,23.05,22.85,22.66,22.47,22.27,22.09,21.71,N/A,N/A -2012,10,19,18,30,101560,100390,99250,39.31,0,2.54,2.64,2.66,2.67,2.67,2.68,2.68,2.68,2.69,14.120000000000001,13.75,13.49,13.22,12.96,12.700000000000001,12.41,12.15,11.5,23.740000000000002,23.38,23.2,23,22.8,22.62,22.42,22.240000000000002,21.86,N/A,N/A -2012,10,19,19,30,101540,100360,99230,38.94,0,1.44,1.54,1.57,1.61,1.6500000000000001,1.68,1.72,1.76,1.84,2.11,0.46,359.38,358.34000000000003,357.37,356.45,355.51,354.63,352.82,23.89,23.54,23.36,23.16,22.97,22.78,22.59,22.400000000000002,22.02,N/A,N/A -2012,10,19,20,30,101510,100340,99200,35.29,0,1.71,1.76,1.77,1.77,1.77,1.77,1.77,1.77,1.78,319.09000000000003,318.84000000000003,318.95,319.05,319.15000000000003,319.23,319.33,319.43,319.67,24.5,24.16,23.990000000000002,23.79,23.6,23.41,23.21,23.03,22.64,N/A,N/A -2012,10,19,21,30,101470,100300,99170,35.6,0,2.7800000000000002,2.93,2.96,2.97,2.98,2.99,3,3.0100000000000002,3.02,313.88,314.11,314.27,314.41,314.54,314.65000000000003,314.77,314.87,315.11,24.92,24.6,24.43,24.23,24.04,23.85,23.66,23.47,23.080000000000002,N/A,N/A -2012,10,19,22,30,101440,100270,99140,36.9,0,2.81,3.0100000000000002,3.0500000000000003,3.09,3.11,3.14,3.16,3.18,3.2,310.3,311.31,311.88,312.38,312.81,313.19,313.56,313.89,314.5,25.29,24.98,24.810000000000002,24.62,24.43,24.240000000000002,24.04,23.86,23.47,N/A,N/A -2012,10,19,23,30,101400,100240,99110,37.74,0,3.3200000000000003,3.52,3.5500000000000003,3.56,3.5700000000000003,3.5700000000000003,3.5700000000000003,3.56,3.5500000000000003,326.66,327,327.17,327.33,327.47,327.61,327.75,327.88,328.18,25.47,25.17,25,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,20,0,30,101400,100240,99110,38.51,0,2.91,3.1,3.12,3.13,3.13,3.13,3.12,3.11,3.09,339.27,339.56,339.71,339.86,340,340.14,340.29,340.43,340.73,25.62,25.330000000000002,25.16,24.97,24.78,24.6,24.400000000000002,24.22,23.830000000000002,N/A,N/A -2012,10,20,1,30,101410,100250,99120,38.44,0,2.63,2.77,2.77,2.77,2.7600000000000002,2.74,2.73,2.71,2.67,2.02,2.3000000000000003,2.39,2.5100000000000002,2.63,2.77,2.93,3.08,3.48,25.69,25.41,25.25,25.060000000000002,24.87,24.69,24.5,24.310000000000002,23.94,N/A,N/A -2012,10,20,2,30,101420,100260,99130,39.09,0,1.58,1.6400000000000001,1.6300000000000001,1.62,1.61,1.6,1.58,1.57,1.54,42.71,43.660000000000004,44.2,44.75,45.300000000000004,45.83,46.410000000000004,46.95,48.18,25.650000000000002,25.37,25.2,25.01,24.82,24.64,24.44,24.26,23.87,N/A,N/A -2012,10,20,3,30,101400,100230,99100,38.85,0,1.51,1.57,1.56,1.55,1.54,1.52,1.51,1.5,1.47,60.99,61.34,61.52,61.72,61.92,62.120000000000005,62.34,62.550000000000004,63.03,25.59,25.3,25.13,24.94,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A -2012,10,20,4,30,101390,100230,99100,39.22,0,1.33,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3800000000000001,1.37,100.72,101.02,101.08,101.14,101.2,101.28,101.35000000000001,101.42,101.59,25.51,25.22,25.05,24.86,24.67,24.48,24.28,24.1,23.71,N/A,N/A -2012,10,20,5,30,101400,100230,99100,39.78,0,1.48,1.55,1.55,1.54,1.54,1.54,1.54,1.53,1.52,127.71000000000001,127.73,127.64,127.57000000000001,127.48,127.4,127.3,127.21000000000001,127.02,25.43,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A -2012,10,20,6,30,101400,100240,99110,44.7,0,2.0100000000000002,2.0100000000000002,1.97,1.92,1.87,1.83,1.78,1.74,1.6600000000000001,180.48,179.41,178.65,177.87,177.13,176.41,175.64000000000001,174.94,173.31,25.150000000000002,24.85,24.68,24.490000000000002,24.3,24.11,23.92,23.73,23.35,N/A,N/A -2012,10,20,7,30,101420,100260,99120,44.99,0,1.96,2.05,2.06,2.07,2.07,2.07,2.07,2.07,2.06,166.74,167.01,167.23,167.41,167.58,167.73,167.86,167.98,168.17000000000002,24.98,24.67,24.5,24.3,24.11,23.92,23.73,23.54,23.16,N/A,N/A -2012,10,20,8,30,101410,100250,99120,46.54,0,1.96,2.04,2.05,2.05,2.05,2.04,2.04,2.04,2.02,173.47,173.20000000000002,173.12,173.01,172.93,172.85,172.74,172.63,172.41,24.900000000000002,24.59,24.42,24.22,24.03,23.85,23.650000000000002,23.46,23.080000000000002,N/A,N/A -2012,10,20,9,30,101420,100250,99120,47.31,0,2.39,2.49,2.49,2.48,2.48,2.47,2.46,2.45,2.43,162.34,162.66,162.83,163.01,163.18,163.36,163.51,163.66,164.02,24.91,24.59,24.42,24.23,24.03,23.85,23.650000000000002,23.47,23.080000000000002,N/A,N/A -2012,10,20,10,30,101420,100250,99120,49.82,0,2.74,2.88,2.9,2.91,2.91,2.91,2.91,2.91,2.91,158.64000000000001,158.97,159.17000000000002,159.37,159.55,159.72,159.88,160.04,160.38,24.86,24.54,24.37,24.17,23.98,23.79,23.59,23.41,23.02,N/A,N/A -2012,10,20,11,30,101430,100270,99140,50.47,0,3.12,3.2800000000000002,3.3000000000000003,3.31,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,152.59,152.99,153.24,153.49,153.71,153.92000000000002,154.14000000000001,154.35,154.8,24.85,24.53,24.36,24.16,23.97,23.78,23.59,23.400000000000002,23.02,N/A,N/A -2012,10,20,12,30,101450,100280,99150,53.050000000000004,0,4.34,4.6000000000000005,4.64,4.66,4.67,4.68,4.68,4.68,4.67,151.22,151.51,151.70000000000002,151.89000000000001,152.06,152.21,152.39000000000001,152.55,152.88,24.84,24.51,24.34,24.14,23.95,23.76,23.57,23.38,23,N/A,N/A -2012,10,20,13,30,101440,100280,99150,54.72,0,4.74,5.07,5.13,5.17,5.19,5.21,5.22,5.23,5.25,152.05,152.37,152.53,152.69,152.84,152.98,153.12,153.25,153.53,24.89,24.560000000000002,24.39,24.19,24,23.81,23.61,23.43,23.05,N/A,N/A -2012,10,20,14,30,101460,100290,99160,55.550000000000004,0,5.37,5.76,5.84,5.88,5.91,5.92,5.93,5.94,5.95,151.18,151.42000000000002,151.57,151.71,151.85,151.97,152.1,152.22,152.47,25.01,24.69,24.51,24.32,24.13,23.94,23.740000000000002,23.56,23.17,N/A,N/A -2012,10,20,15,30,101460,100300,99170,55.49,0,6.24,6.74,6.8500000000000005,6.91,6.95,6.97,6.99,7.01,7.03,148.66,148.96,149.12,149.28,149.43,149.57,149.71,149.84,150.11,25.16,24.85,24.68,24.48,24.29,24.1,23.900000000000002,23.72,23.330000000000002,N/A,N/A -2012,10,20,16,30,101450,100280,99150,57.11,0,6.61,7.17,7.29,7.36,7.41,7.44,7.47,7.49,7.5200000000000005,152.32,152.52,152.64000000000001,152.77,152.88,152.99,153.1,153.20000000000002,153.41,25.25,24.93,24.76,24.57,24.38,24.19,23.990000000000002,23.81,23.42,N/A,N/A -2012,10,20,17,30,101410,100250,99120,59.230000000000004,0,6.68,7.25,7.38,7.46,7.51,7.55,7.58,7.6000000000000005,7.63,155.01,155.20000000000002,155.31,155.43,155.53,155.64000000000001,155.75,155.85,156.07,25.310000000000002,24.990000000000002,24.830000000000002,24.63,24.44,24.25,24.05,23.87,23.48,N/A,N/A -2012,10,20,18,30,101390,100220,99100,59.21,0,6.67,7.2700000000000005,7.4,7.47,7.53,7.5600000000000005,7.59,7.61,7.640000000000001,152.62,152.65,152.78,152.91,153.04,153.18,153.31,153.45000000000002,153.72,25.43,25.12,24.95,24.75,24.560000000000002,24.37,24.18,23.990000000000002,23.6,N/A,N/A -2012,10,20,19,30,101360,100190,99070,59.88,0,6.78,7.41,7.5600000000000005,7.65,7.72,7.76,7.8,7.83,7.890000000000001,158.98,159.09,159.20000000000002,159.31,159.41,159.5,159.6,159.69,159.89000000000001,25.5,25.2,25.03,24.84,24.650000000000002,24.46,24.26,24.080000000000002,23.69,N/A,N/A -2012,10,20,20,30,101340,100180,99050,62.88,0,7.46,8.17,8.33,8.43,8.49,8.540000000000001,8.57,8.59,8.620000000000001,159.07,159.34,159.47,159.59,159.68,159.77,159.84,159.92000000000002,160.05,25.560000000000002,25.27,25.1,24.91,24.72,24.53,24.34,24.150000000000002,23.76,N/A,N/A -2012,10,20,21,30,101310,100150,99030,63.85,0,7.7,8.43,8.6,8.69,8.76,8.8,8.83,8.85,8.88,154.4,154.93,155.25,155.56,155.84,156.1,156.37,156.61,157.09,25.59,25.3,25.13,24.93,24.75,24.560000000000002,24.36,24.18,23.79,N/A,N/A -2012,10,20,22,30,101290,100140,99010,65.21000000000001,0,7.75,8.52,8.71,8.82,8.9,8.96,9.01,9.040000000000001,9.09,159.68,159.97,160.15,160.35,160.54,160.72,160.91,161.09,161.45000000000002,25.67,25.38,25.22,25.02,24.830000000000002,24.64,24.45,24.26,23.88,N/A,N/A -2012,10,20,23,30,101270,100120,98990,66.27,0,8.11,8.91,9.1,9.21,9.290000000000001,9.34,9.38,9.41,9.450000000000001,165.26,165.38,165.42000000000002,165.45000000000002,165.48,165.5,165.52,165.54,165.56,25.78,25.5,25.34,25.150000000000002,24.96,24.77,24.580000000000002,24.39,24.01,N/A,N/A -2012,10,21,0,30,101270,100110,98990,64.07000000000001,0,8.56,9.43,9.63,9.74,9.82,9.86,9.89,9.92,9.93,168.12,168.13,168.1,168.04,167.98,167.91,167.84,167.77,167.63,25.93,25.67,25.51,25.32,25.13,24.95,24.75,24.57,24.19,N/A,N/A -2012,10,21,1,30,101280,100120,99000,67.05,0,8.950000000000001,9.870000000000001,10.09,10.21,10.28,10.33,10.36,10.39,10.4,163.35,163.42000000000002,163.5,163.6,163.68,163.77,163.87,163.96,164.15,25.85,25.580000000000002,25.41,25.22,25.03,24.85,24.650000000000002,24.47,24.09,N/A,N/A -2012,10,21,2,30,101270,100110,98990,69.83,0,8.81,9.75,9.98,10.120000000000001,10.22,10.3,10.35,10.4,10.47,169.57,169.39000000000001,169.36,169.36,169.37,169.38,169.41,169.44,169.5,25.86,25.580000000000002,25.42,25.22,25.04,24.85,24.66,24.47,24.09,N/A,N/A -2012,10,21,3,30,101280,100130,99010,68.07000000000001,0,9.24,10.19,10.43,10.56,10.66,10.72,10.77,10.8,10.85,172.98,173.02,173.01,172.98,172.95000000000002,172.9,172.86,172.81,172.72,25.990000000000002,25.73,25.57,25.38,25.19,25.01,24.810000000000002,24.63,24.25,N/A,N/A -2012,10,21,4,30,101280,100130,99000,69.56,0,9.67,10.69,10.94,11.08,11.17,11.23,11.27,11.3,11.34,172.56,172.46,172.45000000000002,172.46,172.47,172.49,172.52,172.55,172.62,25.91,25.650000000000002,25.490000000000002,25.3,25.11,24.93,24.73,24.55,24.17,N/A,N/A -2012,10,21,5,30,101280,100130,99010,69.31,0,8.98,9.94,10.18,10.32,10.43,10.51,10.57,10.620000000000001,10.69,174.61,174.56,174.53,174.51,174.47,174.44,174.4,174.36,174.29,26.02,25.76,25.6,25.400000000000002,25.22,25.04,24.84,24.66,24.28,N/A,N/A -2012,10,21,6,30,101310,100160,99030,71.16,0,9.06,10.040000000000001,10.28,10.43,10.540000000000001,10.61,10.67,10.72,10.78,174.4,174.25,174.19,174.13,174.07,174.02,173.98,173.95000000000002,173.86,25.98,25.71,25.55,25.36,25.18,24.990000000000002,24.79,24.61,24.23,N/A,N/A -2012,10,21,7,30,101340,100190,99060,73.4,0,9.52,10.49,10.75,10.9,11,11.09,11.15,11.21,11.290000000000001,175.53,175.86,176.01,176.15,176.27,176.38,176.48,176.58,176.76,25.89,25.62,25.46,25.26,25.080000000000002,24.89,24.7,24.51,24.13,N/A,N/A -2012,10,21,8,30,101350,100190,99070,77.47,0,9.15,10.16,10.42,10.59,10.71,10.790000000000001,10.86,10.91,10.97,177.70000000000002,177.82,177.87,177.9,177.93,177.96,177.97,177.99,178.02,25.86,25.59,25.43,25.240000000000002,25.05,24.87,24.68,24.490000000000002,24.11,N/A,N/A -2012,10,21,9,30,101370,100210,99090,71.88,0,9.6,10.64,10.91,11.06,11.17,11.24,11.290000000000001,11.33,11.38,175.88,176.22,176.32,176.39000000000001,176.45000000000002,176.48,176.52,176.55,176.59,25.98,25.73,25.57,25.38,25.2,25.01,24.82,24.64,24.26,N/A,N/A -2012,10,21,10,30,101410,100250,99130,74.21000000000001,0,9.21,10.23,10.48,10.63,10.73,10.8,10.85,10.89,10.93,174.15,174.48,174.62,174.74,174.85,174.94,175.03,175.12,175.28,25.900000000000002,25.64,25.48,25.28,25.1,24.91,24.72,24.54,24.150000000000002,N/A,N/A -2012,10,21,11,30,101420,100260,99140,76.27,0,8.64,9.540000000000001,9.76,9.89,9.97,10.03,10.07,10.1,10.120000000000001,173.68,174.21,174.49,174.76,175,175.21,175.42000000000002,175.61,176,25.85,25.580000000000002,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.080000000000002,N/A,N/A -2012,10,21,12,30,101470,100310,99190,76.11,0,9.32,10.31,10.55,10.68,10.77,10.81,10.83,10.84,10.82,169.8,170.04,170.28,170.59,170.89000000000001,171.19,171.51,171.8,172.44,25.810000000000002,25.54,25.38,25.19,25.01,24.82,24.62,24.44,24.060000000000002,N/A,N/A -2012,10,21,13,30,101500,100340,99220,71.18,0,7.930000000000001,8.77,8.98,9.120000000000001,9.22,9.290000000000001,9.34,9.39,9.46,168.13,168.28,168.44,168.62,168.78,168.95000000000002,169.12,169.27,169.61,26.04,25.78,25.62,25.43,25.25,25.060000000000002,24.87,24.69,24.310000000000002,N/A,N/A -2012,10,21,14,30,101540,100380,99260,75.97,0,7.3,8.05,8.24,8.370000000000001,8.46,8.52,8.57,8.620000000000001,8.68,172.81,172.98,173.07,173.17000000000002,173.25,173.32,173.4,173.46,173.6,25.94,25.67,25.51,25.32,25.14,24.95,24.75,24.57,24.19,N/A,N/A -2012,10,21,15,30,101560,100410,99280,76.56,0,7.7700000000000005,8.55,8.73,8.85,8.94,9,9.040000000000001,9.08,9.13,172.36,172.9,173.11,173.29,173.43,173.55,173.64000000000001,173.73,173.86,25.900000000000002,25.63,25.47,25.28,25.09,24.900000000000002,24.71,24.53,24.14,N/A,N/A -2012,10,21,16,30,101570,100410,99290,75.56,0,8.05,8.82,8.99,9.06,9.1,9.120000000000001,9.120000000000001,9.11,9.07,165.84,166.06,166.22,166.39000000000001,166.55,166.70000000000002,166.84,166.98,167.26,25.85,25.580000000000002,25.42,25.22,25.04,24.85,24.650000000000002,24.47,24.09,N/A,N/A -2012,10,21,17,30,101570,100410,99280,69.77,0,7.1000000000000005,7.78,7.95,8.040000000000001,8.11,8.16,8.2,8.23,8.28,170.38,170.33,170.29,170.24,170.19,170.14000000000001,170.1,170.06,169.96,26.04,25.79,25.63,25.44,25.26,25.07,24.88,24.7,24.32,N/A,N/A -2012,10,21,18,30,101570,100410,99290,73.27,0,7.1000000000000005,7.8100000000000005,7.98,8.08,8.15,8.2,8.24,8.27,8.3,170.17000000000002,169.99,169.92000000000002,169.86,169.82,169.77,169.74,169.71,169.66,25.990000000000002,25.72,25.560000000000002,25.37,25.18,24.990000000000002,24.8,24.61,24.23,N/A,N/A -2012,10,21,19,30,101560,100400,99280,72.43,0,7.17,7.91,8.1,8.22,8.31,8.38,8.44,8.48,8.540000000000001,163.59,164.07,164.34,164.57,164.76,164.93,165.08,165.21,165.45000000000002,26.09,25.830000000000002,25.67,25.48,25.29,25.11,24.91,24.73,24.35,N/A,N/A -2012,10,21,20,30,101560,100400,99270,75,0,7.2700000000000005,7.98,8.16,8.25,8.32,8.370000000000001,8.4,8.42,8.44,156.18,156.3,156.42000000000002,156.55,156.67000000000002,156.79,156.9,157.01,157.24,25.91,25.650000000000002,25.490000000000002,25.29,25.11,24.92,24.72,24.54,24.16,N/A,N/A -2012,10,21,21,30,101530,100370,99250,72.72,0,7.5600000000000005,8.290000000000001,8.47,8.57,8.65,8.700000000000001,8.74,8.77,8.81,160.32,160.45000000000002,160.5,160.52,160.53,160.52,160.5,160.48,160.43,25.990000000000002,25.73,25.57,25.38,25.2,25.01,24.82,24.64,24.25,N/A,N/A -2012,10,21,22,30,101530,100370,99250,75.23,0,7.72,8.55,8.76,8.89,8.98,9.05,9.1,9.14,9.19,154.62,154.73,154.84,154.95000000000002,155.05,155.16,155.26,155.35,155.54,25.93,25.66,25.5,25.3,25.12,24.93,24.740000000000002,24.55,24.17,N/A,N/A -2012,10,21,23,30,101510,100350,99230,74.12,0,8.85,9.76,9.97,10.09,10.17,10.23,10.26,10.28,10.290000000000001,157.33,157.66,157.78,157.89000000000001,157.97,158.04,158.1,158.16,158.26,25.89,25.62,25.46,25.27,25.080000000000002,24.900000000000002,24.7,24.52,24.14,N/A,N/A -2012,10,22,0,30,101520,100360,99240,75.60000000000001,0,9.19,10.25,10.51,10.68,10.790000000000001,10.86,10.9,10.94,10.97,153.56,153.59,153.62,153.63,153.64000000000001,153.64000000000001,153.64000000000001,153.64000000000001,153.62,25.8,25.52,25.36,25.16,24.97,24.79,24.59,24.400000000000002,24.02,N/A,N/A -2012,10,22,1,30,101520,100360,99230,73.12,0,7.57,8.33,8.540000000000001,8.68,8.78,8.86,8.93,8.98,9.08,155.23,155.25,155.23,155.20000000000002,155.16,155.13,155.09,155.05,154.97,25.810000000000002,25.54,25.38,25.18,25,24.810000000000002,24.62,24.43,24.05,N/A,N/A -2012,10,22,2,30,101530,100370,99240,72.5,0,9.41,10.39,10.64,10.790000000000001,10.89,10.96,11.01,11.05,11.09,153.71,153.9,154.01,154.11,154.20000000000002,154.28,154.36,154.44,154.58,25.830000000000002,25.560000000000002,25.41,25.21,25.03,24.84,24.650000000000002,24.47,24.09,N/A,N/A -2012,10,22,3,30,101520,100360,99240,70.77,0,8.65,9.5,9.71,9.82,9.9,9.96,9.99,10.02,10.06,154.35,154.29,154.29,154.3,154.31,154.32,154.34,154.35,154.38,25.8,25.53,25.37,25.18,25,24.810000000000002,24.61,24.43,24.05,N/A,N/A -2012,10,22,4,30,101500,100340,99220,66.78,0,8.5,9.35,9.58,9.72,9.81,9.89,9.950000000000001,10,10.07,164.33,163.99,163.8,163.61,163.45000000000002,163.29,163.14000000000001,163,162.73,25.91,25.66,25.51,25.310000000000002,25.13,24.95,24.75,24.57,24.2,N/A,N/A -2012,10,22,5,30,101500,100340,99220,68.55,0,8.96,9.77,9.950000000000001,10.03,10.08,10.11,10.13,10.14,10.14,161.92000000000002,162.07,162.03,161.94,161.83,161.71,161.58,161.44,161.15,25.82,25.55,25.39,25.2,25.01,24.830000000000002,24.63,24.45,24.060000000000002,N/A,N/A -2012,10,22,6,30,101520,100360,99230,69.76,0,9.290000000000001,10.21,10.44,10.56,10.65,10.72,10.76,10.8,10.85,157.21,157.97,158.37,158.76,159.13,159.45000000000002,159.79,160.1,160.71,25.84,25.57,25.400000000000002,25.22,25.03,24.84,24.650000000000002,24.46,24.080000000000002,N/A,N/A -2012,10,22,7,30,101540,100380,99250,73.07000000000001,0,8.78,9.76,10.03,10.200000000000001,10.32,10.42,10.5,10.57,10.67,162.9,163.25,163.39000000000001,163.51,163.61,163.70000000000002,163.79,163.87,164,25.73,25.44,25.28,25.09,24.900000000000002,24.71,24.52,24.330000000000002,23.95,N/A,N/A -2012,10,22,8,30,101540,100380,99250,75.65,0,8.98,9.88,10.08,10.18,10.24,10.27,10.28,10.290000000000001,10.27,158.93,158.97,159,159.02,159.03,159.04,159.04,159.03,159.02,25.59,25.3,25.14,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A -2012,10,22,9,30,101560,100400,99280,75.3,0,7.86,8.700000000000001,8.91,9.040000000000001,9.13,9.200000000000001,9.25,9.290000000000001,9.34,160.38,159.8,159.67000000000002,159.59,159.56,159.55,159.56,159.58,159.67000000000002,25.67,25.37,25.2,25.01,24.810000000000002,24.62,24.43,24.240000000000002,23.85,N/A,N/A -2012,10,22,10,30,101580,100420,99290,75.03,0,7.98,8.790000000000001,8.99,9.1,9.18,9.23,9.27,9.290000000000001,9.33,158.9,158.47,158.3,158.14000000000001,158.01,157.88,157.76,157.65,157.43,25.560000000000002,25.26,25.09,24.89,24.7,24.51,24.32,24.13,23.740000000000002,N/A,N/A -2012,10,22,11,30,101620,100450,99330,78.12,0,7.49,8.22,8.39,8.5,8.58,8.63,8.67,8.71,8.76,154.4,154.35,154.36,154.37,154.4,154.42000000000002,154.45000000000002,154.48,154.54,25.5,25.19,25.02,24.82,24.63,24.44,24.240000000000002,24.060000000000002,23.67,N/A,N/A -2012,10,22,12,30,101620,100460,99340,78.8,0,7.37,8.08,8.25,8.34,8.4,8.45,8.47,8.5,8.52,152.73,152.73,152.84,152.96,153.07,153.19,153.32,153.45000000000002,153.71,25.45,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A -2012,10,22,13,30,101670,100510,99380,74.89,0,6.92,7.63,7.82,7.96,8.06,8.14,8.22,8.28,8.4,150.29,150.43,150.53,150.62,150.70000000000002,150.78,150.86,150.93,151.09,25.57,25.28,25.12,24.93,24.75,24.560000000000002,24.37,24.19,23.81,N/A,N/A -2012,10,22,14,30,101680,100520,99390,77.98,0,6.99,7.7,7.87,7.97,8.040000000000001,8.1,8.14,8.17,8.22,152.42000000000002,152.23,152.08,151.92000000000002,151.77,151.62,151.47,151.32,151.02,25.54,25.240000000000002,25.07,24.87,24.68,24.5,24.3,24.12,23.73,N/A,N/A -2012,10,22,15,30,101690,100530,99400,75.39,0,6.87,7.48,7.62,7.7,7.75,7.78,7.8,7.82,7.8500000000000005,149.31,149.20000000000002,149.18,149.14000000000001,149.1,149.06,149.02,148.97,148.87,25.55,25.25,25.080000000000002,24.88,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A -2012,10,22,16,30,101690,100530,99400,78.3,0,6.32,6.95,7.11,7.21,7.29,7.3500000000000005,7.4,7.44,7.51,138.89000000000001,139.46,139.78,140.07,140.33,140.57,140.8,141.01,141.41,25.57,25.26,25.09,24.900000000000002,24.71,24.52,24.32,24.14,23.75,N/A,N/A -2012,10,22,17,30,101690,100520,99400,77.60000000000001,0,6.03,6.55,6.67,6.74,6.79,6.83,6.86,6.88,6.91,134.13,134.34,134.54,134.74,134.93,135.11,135.31,135.49,135.86,25.580000000000002,25.28,25.11,24.91,24.72,24.53,24.34,24.150000000000002,23.77,N/A,N/A -2012,10,22,18,30,101670,100510,99380,77.35000000000001,0,5.79,6.24,6.33,6.36,6.38,6.38,6.37,6.37,6.34,138.19,138.64000000000001,138.9,139.18,139.44,139.68,139.94,140.19,140.71,25.61,25.3,25.13,24.94,24.75,24.560000000000002,24.37,24.18,23.8,N/A,N/A -2012,10,22,19,30,101660,100500,99380,75.56,0,6.69,7.2700000000000005,7.390000000000001,7.44,7.46,7.48,7.48,7.47,7.45,132.36,132.82,133.04,133.24,133.42000000000002,133.59,133.75,133.9,134.21,25.740000000000002,25.44,25.28,25.080000000000002,24.89,24.7,24.5,24.32,23.93,N/A,N/A -2012,10,22,20,30,101650,100490,99360,77.51,0,5.72,6.21,6.32,6.38,6.42,6.45,6.46,6.48,6.49,139.94,139.37,139.17000000000002,139.03,138.9,138.81,138.72,138.65,138.53,25.650000000000002,25.34,25.18,24.98,24.79,24.6,24.41,24.22,23.84,N/A,N/A -2012,10,22,21,30,101640,100480,99350,77.15,0,5.16,5.61,5.72,5.79,5.84,5.88,5.91,5.94,5.98,138.20000000000002,138.03,137.98,137.95000000000002,137.94,137.93,137.92000000000002,137.91,137.92000000000002,25.63,25.330000000000002,25.17,24.97,24.78,24.6,24.400000000000002,24.21,23.830000000000002,N/A,N/A -2012,10,22,22,30,101620,100450,99330,77.05,0,5.0200000000000005,5.48,5.58,5.65,5.7,5.73,5.76,5.78,5.8100000000000005,126.88000000000001,127.68,128.15,128.6,129.02,129.41,129.8,130.16,130.91,25.57,25.27,25.1,24.91,24.72,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A -2012,10,22,23,30,101600,100440,99320,79.14,0,6.18,6.75,6.88,6.96,7.01,7.04,7.07,7.08,7.1000000000000005,127.19,127.63000000000001,127.84,128.03,128.2,128.35,128.49,128.61,128.84,25.400000000000002,25.080000000000002,24.91,24.72,24.53,24.34,24.14,23.95,23.57,N/A,N/A -2012,10,23,0,30,101590,100430,99300,76.01,0,6.55,7.1000000000000005,7.22,7.28,7.33,7.3500000000000005,7.37,7.390000000000001,7.4,130.29,130.74,130.99,131.23,131.45,131.66,131.86,132.04,132.43,25.34,25.03,24.86,24.66,24.47,24.28,24.09,23.900000000000002,23.52,N/A,N/A -2012,10,23,1,30,101590,100420,99300,75.42,0,7.07,7.61,7.72,7.7700000000000005,7.8,7.8100000000000005,7.82,7.82,7.83,137.88,137.51,137.38,137.28,137.21,137.14000000000001,137.09,137.04,136.97,25.28,24.96,24.79,24.6,24.41,24.22,24.03,23.84,23.46,N/A,N/A -2012,10,23,2,30,101570,100410,99280,74.05,0,5.83,6.36,6.5,6.58,6.65,6.7,6.74,6.78,6.8500000000000005,132.27,132.5,132.69,132.88,133.06,133.25,133.44,133.61,133.98,25.28,24.96,24.79,24.59,24.400000000000002,24.21,24.02,23.830000000000002,23.45,N/A,N/A -2012,10,23,3,30,101580,100420,99290,74.82000000000001,0,6.5600000000000005,7.16,7.32,7.43,7.51,7.57,7.63,7.67,7.75,135.18,135.14000000000001,135.14000000000001,135.14000000000001,135.15,135.17000000000002,135.19,135.2,135.25,25.18,24.85,24.68,24.48,24.28,24.1,23.900000000000002,23.71,23.32,N/A,N/A -2012,10,23,4,30,101550,100390,99270,78.76,0,7.3,7.94,8.1,8.17,8.22,8.26,8.28,8.290000000000001,8.3,131.49,131.77,131.92000000000002,132.06,132.18,132.29,132.39000000000001,132.48,132.66,25.02,24.68,24.51,24.310000000000002,24.12,23.93,23.73,23.54,23.16,N/A,N/A -2012,10,23,5,30,101530,100370,99250,75.14,0,6.88,7.51,7.68,7.78,7.8500000000000005,7.9,7.95,7.98,8.040000000000001,141.1,140.78,140.68,140.61,140.56,140.52,140.49,140.46,140.43,25.23,24.900000000000002,24.73,24.54,24.35,24.16,23.96,23.78,23.39,N/A,N/A -2012,10,23,6,30,101520,100360,99230,72.87,0,6.8100000000000005,7.49,7.67,7.78,7.86,7.92,7.97,8.02,8.08,143.11,142.61,142.38,142.19,142.02,141.87,141.72,141.6,141.35,25.3,24.98,24.810000000000002,24.61,24.42,24.23,24.03,23.85,23.46,N/A,N/A -2012,10,23,7,30,101530,100370,99250,75.13,0,7.58,8.32,8.51,8.63,8.73,8.8,8.85,8.9,8.98,142.68,143.63,144.1,144.51,144.86,145.18,145.47,145.75,146.24,25.26,24.96,24.79,24.6,24.41,24.23,24.03,23.85,23.47,N/A,N/A -2012,10,23,8,30,101540,100380,99250,76.61,0,7.13,7.75,7.9,7.97,8.03,8.06,8.08,8.1,8.11,143.01,143.21,143.37,143.56,143.74,143.91,144.1,144.27,144.64000000000001,25.2,24.88,24.71,24.51,24.32,24.13,23.93,23.75,23.36,N/A,N/A -2012,10,23,9,30,101520,100360,99240,75.84,0,6.0200000000000005,6.61,6.76,6.8500000000000005,6.92,6.97,7.01,7.04,7.09,147.21,146.99,146.99,147.02,147.06,147.11,147.17000000000002,147.23,147.37,25.22,24.900000000000002,24.72,24.52,24.330000000000002,24.14,23.94,23.76,23.37,N/A,N/A -2012,10,23,10,30,101540,100380,99260,72.93,0,6.29,6.8500000000000005,6.98,7.05,7.1000000000000005,7.140000000000001,7.17,7.2,7.24,150.18,150.03,149.95000000000002,149.86,149.78,149.71,149.64000000000001,149.58,149.47,25.400000000000002,25.1,24.93,24.73,24.54,24.36,24.16,23.97,23.59,N/A,N/A -2012,10,23,11,30,101550,100380,99260,73.14,0,5.82,6.2700000000000005,6.3500000000000005,6.390000000000001,6.41,6.42,6.42,6.42,6.41,151.19,151.41,151.58,151.75,151.91,152.06,152.20000000000002,152.34,152.62,25.36,25.05,24.89,24.69,24.5,24.32,24.12,23.93,23.55,N/A,N/A -2012,10,23,12,30,101570,100410,99290,71.2,0,5.66,6.1000000000000005,6.19,6.22,6.24,6.24,6.25,6.25,6.24,158.37,157.82,157.47,157.1,156.76,156.44,156.13,155.83,155.25,25.47,25.17,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,23,13,30,101570,100410,99280,71.95,0,4.8,5.26,5.37,5.44,5.49,5.54,5.57,5.6000000000000005,5.64,156.88,156.53,156.36,156.20000000000002,156.07,155.94,155.82,155.71,155.49,25.43,25.13,24.96,24.77,24.580000000000002,24.39,24.19,24.01,23.62,N/A,N/A -2012,10,23,14,30,101600,100430,99310,73.18,0,4.66,5.0200000000000005,5.09,5.13,5.15,5.17,5.18,5.19,5.2,151.76,151.96,152.05,152.1,152.15,152.19,152.22,152.24,152.27,25.39,25.080000000000002,24.92,24.72,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A -2012,10,23,15,30,101600,100430,99310,72.76,0,3.67,3.94,4,4.04,4.0600000000000005,4.08,4.1,4.11,4.13,159.13,158.25,157.70000000000002,157.18,156.71,156.27,155.84,155.44,154.63,25.45,25.150000000000002,24.990000000000002,24.79,24.61,24.42,24.22,24.04,23.650000000000002,N/A,N/A -2012,10,23,16,30,101610,100450,99320,72.83,0,3.47,3.73,3.79,3.84,3.87,3.9,3.92,3.95,3.99,137.89000000000001,138.47,138.81,139.1,139.34,139.57,139.77,139.95000000000002,140.3,25.44,25.14,24.97,24.77,24.580000000000002,24.39,24.2,24.01,23.63,N/A,N/A -2012,10,23,17,30,101600,100440,99310,72.32000000000001,0,3.61,3.88,3.95,3.99,4.0200000000000005,4.05,4.07,4.09,4.12,129.41,129.7,129.91,130.09,130.25,130.41,130.56,130.7,130.98,25.5,25.18,25.01,24.82,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,23,18,30,101580,100420,99290,74,0,3.43,3.66,3.7,3.73,3.75,3.77,3.7800000000000002,3.79,3.81,125.5,126.37,126.87,127.34,127.75,128.13,128.5,128.85,129.53,25.51,25.18,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,23,19,30,101560,100400,99280,74.73,0,3.31,3.5,3.54,3.56,3.5700000000000003,3.58,3.58,3.59,3.59,123.38000000000001,123.61,123.78,123.94,124.08,124.22,124.35000000000001,124.48,124.76,25.45,25.12,24.95,24.75,24.560000000000002,24.37,24.17,23.990000000000002,23.6,N/A,N/A -2012,10,23,20,30,101540,100380,99250,74.67,0,2.99,3.18,3.22,3.25,3.27,3.2800000000000002,3.3000000000000003,3.31,3.34,115.51,115.57000000000001,115.66,115.74000000000001,115.82000000000001,115.9,115.98,116.05,116.22,25.47,25.14,24.97,24.77,24.580000000000002,24.39,24.19,24,23.62,N/A,N/A -2012,10,23,21,30,101530,100370,99250,75.47,0,3.18,3.37,3.42,3.44,3.46,3.47,3.48,3.49,3.5100000000000002,117.26,117.63,117.88,118.11,118.32000000000001,118.52,118.72,118.9,119.26,25.490000000000002,25.17,25,24.8,24.61,24.42,24.23,24.04,23.66,N/A,N/A -2012,10,23,22,30,101520,100360,99230,77.97,0,3.58,3.8200000000000003,3.87,3.91,3.93,3.94,3.96,3.97,3.98,116.22,116.49000000000001,116.7,116.91,117.11,117.3,117.5,117.68,118.06,25.400000000000002,25.09,24.92,24.72,24.54,24.35,24.150000000000002,23.96,23.580000000000002,N/A,N/A -2012,10,23,23,30,101490,100330,99200,79.47,0,3.77,4.0200000000000005,4.07,4.09,4.11,4.12,4.12,4.13,4.13,106.91,107.32000000000001,107.54,107.77,107.99000000000001,108.2,108.43,108.65,109.16,-23.150000000000002,24.89,24.72,24.52,24.330000000000002,24.14,23.95,23.76,23.38,N/A,N/A -2012,10,24,0,30,101500,100340,99210,80.66,0,4.09,4.36,4.4,4.42,4.43,4.43,4.43,4.42,4.4,112.77,112.65,112.63,112.64,112.65,112.68,112.71000000000001,112.75,112.82000000000001,25.16,24.84,24.67,24.47,24.28,24.1,23.900000000000002,23.71,23.330000000000002,N/A,N/A -2012,10,24,1,30,101500,100340,99210,82.59,0,4.4,4.72,4.79,4.83,4.86,4.88,4.9,4.91,4.93,108.09,108.24000000000001,108.32000000000001,108.41,108.48,108.56,108.65,108.74000000000001,108.93,25.060000000000002,24.73,24.560000000000002,24.36,24.18,23.990000000000002,23.79,23.6,23.22,N/A,N/A -2012,10,24,2,30,101490,100330,99210,83.91,0,4.21,4.5,4.57,4.61,4.64,4.66,4.67,4.68,4.69,111.62,112.16,112.39,112.59,112.77,112.94,113.12,113.28,113.64,25.07,24.75,24.580000000000002,24.38,24.19,24,23.81,23.63,23.240000000000002,N/A,N/A -2012,10,24,3,30,101490,100330,99200,83.49,0,4.49,4.82,4.89,4.93,4.96,4.98,5,5.0200000000000005,5.04,119.32000000000001,119.49000000000001,119.56,119.63,119.71000000000001,119.78,119.86,119.94,120.13,25.150000000000002,24.830000000000002,24.66,24.46,24.27,24.09,23.89,23.71,23.330000000000002,N/A,N/A -2012,10,24,4,30,101470,100310,99190,83.84,0,5,5.44,5.55,5.62,5.66,5.7,5.74,5.76,5.8100000000000005,126.93,127.14,127.25,127.36,127.46000000000001,127.55,127.64,127.73,127.93,25.28,24.96,24.79,24.6,24.41,24.22,24.02,23.84,23.45,N/A,N/A -2012,10,24,5,30,101480,100320,99190,83.58,0,5.3500000000000005,5.8,5.91,5.97,6.01,6.05,6.07,6.09,6.13,130.91,131.44,131.75,132.05,132.32,132.59,132.86,133.11,133.65,25.32,25,24.84,24.64,24.45,24.26,24.07,23.89,23.5,N/A,N/A -2012,10,24,6,30,101480,100320,99190,83.53,0,4.65,5.03,5.11,5.17,5.2,5.23,5.26,5.2700000000000005,5.3100000000000005,135.8,136.07,136.2,136.3,136.38,136.47,136.54,136.61,136.76,25.48,25.17,25,24.810000000000002,24.62,24.43,24.23,24.05,23.67,N/A,N/A -2012,10,24,7,30,101500,100340,99210,84.38,0,5.4,5.89,6.01,6.09,6.140000000000001,6.19,6.23,6.26,6.3100000000000005,138.12,138.32,138.43,138.54,138.65,138.75,138.84,138.94,139.14000000000001,25.52,25.22,25.05,24.85,24.67,24.48,24.28,24.1,23.71,N/A,N/A -2012,10,24,8,30,101490,100330,99200,84.54,0,5.82,6.36,6.49,6.5600000000000005,6.61,6.65,6.67,6.7,6.73,152.29,152.13,152.01,151.88,151.75,151.63,151.51,151.39000000000001,151.14000000000001,25.52,25.21,25.04,24.85,24.66,24.47,24.28,24.1,23.72,N/A,N/A -2012,10,24,9,30,101490,100330,99210,85.59,0,5.79,6.3100000000000005,6.41,6.47,6.51,6.53,6.55,6.5600000000000005,6.57,145.89000000000001,146.20000000000002,146.37,146.54,146.69,146.83,146.97,147.09,147.35,25.57,25.26,25.09,24.900000000000002,24.71,24.53,24.330000000000002,24.150000000000002,23.77,N/A,N/A -2012,10,24,10,30,101500,100340,99220,84.23,0,5.66,6.23,6.38,6.49,6.58,6.65,6.71,6.76,6.8500000000000005,147.58,148.55,148.94,149.29,149.59,149.86,150.11,150.34,150.76,25.73,25.45,25.29,25.1,24.92,24.73,24.54,24.36,23.98,N/A,N/A -2012,10,24,11,30,101510,100350,99230,86.53,0,4.18,4.61,4.75,4.86,4.94,5.01,5.08,5.14,5.25,160.28,160.03,159.79,159.57,159.39000000000001,159.22,159.07,158.92000000000002,158.67000000000002,25.560000000000002,25.25,25.080000000000002,24.89,24.7,24.51,24.32,24.14,23.75,N/A,N/A -2012,10,24,12,30,101540,100380,99260,84.52,0,4.95,5.5200000000000005,5.69,5.82,5.93,6.0200000000000005,6.12,6.21,6.37,150.07,150.13,150.18,150.25,150.37,150.52,150.66,150.79,150.97,25.71,25.43,25.27,25.080000000000002,24.900000000000002,24.72,24.54,24.36,24,N/A,N/A -2012,10,24,13,30,101540,100380,99260,80.92,0,6.62,7.2,7.33,7.390000000000001,7.42,7.44,7.46,7.46,7.49,141.96,141.94,142.04,142.13,142.23,142.32,142.43,142.52,142.77,25.91,25.64,25.490000000000002,25.3,25.12,24.93,24.75,24.57,24.21,N/A,N/A -2012,10,24,14,30,101570,100410,99290,84.36,0,7.11,7.83,8.01,8.11,8.19,8.23,8.27,8.3,8.33,141.46,141.67000000000002,141.77,141.84,141.9,141.94,141.98,142,142.04,25.77,25.48,25.32,25.13,24.94,24.75,24.560000000000002,24.38,23.990000000000002,N/A,N/A -2012,10,24,15,30,101570,100410,99290,85.16,0,6.5600000000000005,7.19,7.33,7.41,7.46,7.5,7.53,7.55,7.57,136.3,136.26,136.28,136.32,136.36,136.4,136.45,136.49,136.59,25.71,25.41,25.240000000000002,25.04,24.86,24.67,24.47,24.29,23.900000000000002,N/A,N/A -2012,10,24,16,30,101560,100400,99280,85.34,0,6.2,6.75,6.890000000000001,6.96,7.01,7.04,7.07,7.08,7.1000000000000005,135.66,135.81,135.87,135.93,135.98,136.03,136.09,136.14000000000001,136.22,25.650000000000002,25.34,25.17,24.98,24.79,24.6,24.41,24.22,23.84,N/A,N/A -2012,10,24,17,30,101530,100370,99250,83.91,0,5.2700000000000005,5.69,5.78,5.82,5.8500000000000005,5.86,5.87,5.87,5.86,140.56,140.63,140.70000000000002,140.77,140.82,140.87,140.93,140.98,141.08,25.68,25.37,25.2,25,24.810000000000002,24.62,24.43,24.240000000000002,23.86,N/A,N/A -2012,10,24,18,30,101510,100350,99230,81.60000000000001,0,5.41,5.86,5.95,5.99,6.0200000000000005,6.03,6.03,6.03,6.0200000000000005,136.95000000000002,136.98,137.08,137.17000000000002,137.25,137.33,137.42000000000002,137.51,137.70000000000002,25.740000000000002,25.43,25.26,25.060000000000002,24.87,24.68,24.48,24.3,23.92,N/A,N/A -2012,10,24,19,30,101490,100340,99210,81.8,0,4.91,5.2700000000000005,5.34,5.37,5.39,5.4,5.41,5.41,5.41,132.63,132.92000000000002,133.06,133.19,133.28,133.36,133.44,133.51,133.64000000000001,25.650000000000002,25.330000000000002,25.16,24.97,24.78,24.59,24.400000000000002,24.21,23.830000000000002,N/A,N/A -2012,10,24,20,30,101470,100310,99190,84.06,0,4.86,5.26,5.34,5.38,5.41,5.43,5.44,5.44,5.44,129.79,129.95,130,130.02,130.03,130.04,130.03,130.02,129.98,25.580000000000002,25.26,25.080000000000002,24.89,24.69,24.5,24.310000000000002,24.12,23.740000000000002,N/A,N/A -2012,10,24,21,30,101440,100280,99160,84.18,0,5.13,5.53,5.62,5.67,5.7,5.72,5.74,5.75,5.76,120.87,121.36,121.67,121.93,122.16,122.37,122.56,122.74000000000001,123.06,25.48,25.17,25.01,24.810000000000002,24.62,24.43,24.240000000000002,24.05,23.67,N/A,N/A -2012,10,24,22,30,101420,100260,99140,82.97,0,4.95,5.36,5.46,5.5200000000000005,5.57,5.6000000000000005,5.63,5.66,5.72,124.89,124.87,124.9,124.94,124.98,125.02,125.07000000000001,125.13000000000001,125.27,25.57,25.26,25.1,24.900000000000002,24.72,24.54,24.34,24.16,23.78,N/A,N/A -2012,10,24,23,30,101390,100230,99110,86.43,0,5.09,5.46,5.53,5.5600000000000005,5.58,5.58,5.58,5.58,5.5600000000000005,127.56,127.26,127.09,126.92,126.75,126.60000000000001,126.45,126.3,125.98,25.43,25.11,24.95,24.75,24.560000000000002,24.37,24.18,23.990000000000002,23.61,N/A,N/A -2012,10,25,0,30,101360,100210,99080,86.16,0,4.86,5.25,5.33,5.38,5.42,5.44,5.47,5.49,5.55,128.05,128.26,128.37,128.49,128.62,128.74,128.88,129.03,129.43,25.44,25.13,24.97,24.77,24.59,24.400000000000002,24.21,24.03,23.66,N/A,N/A -2012,10,25,1,30,101370,100210,99090,84.07000000000001,0,7.94,8.63,8.78,8.85,8.9,8.92,8.93,8.94,8.94,133.36,133.58,133.72,133.88,134.04,134.19,134.36,134.51,134.84,25.75,25.46,25.3,25.1,24.92,24.73,24.54,24.36,23.98,N/A,N/A -2012,10,25,2,30,101340,100180,99060,87.94,0,7.55,8.27,8.44,8.53,8.59,8.63,8.65,8.66,8.66,132.56,132.73,132.8,132.86,132.9,132.93,132.96,132.98,133.01,25.490000000000002,25.18,25.01,24.82,24.63,24.44,24.25,24.07,23.69,N/A,N/A -2012,10,25,3,30,101330,100180,99060,87.54,0,8.23,9.05,9.24,9.34,9.41,9.450000000000001,9.48,9.49,9.49,133.56,133.65,133.7,133.75,133.8,133.84,133.88,133.93,134.03,25.53,25.22,25.05,24.85,24.66,24.48,24.28,24.1,23.71,N/A,N/A -2012,10,25,4,30,101290,100130,99010,88.71000000000001,0,8.59,9.52,9.75,9.9,10,10.08,10.14,10.19,10.26,135.61,135.97,136.11,136.25,136.38,136.49,136.61,136.71,136.92000000000002,25.61,25.3,25.13,24.94,24.75,24.57,24.37,24.19,23.81,N/A,N/A -2012,10,25,5,30,101260,100100,98990,86.03,0,8.870000000000001,9.83,10.06,10.19,10.290000000000001,10.35,10.4,10.43,10.48,136.15,136.37,136.5,136.62,136.73,136.83,136.93,137.01,137.20000000000002,25.67,25.37,25.21,25.02,24.830000000000002,24.650000000000002,24.45,24.27,23.89,N/A,N/A -2012,10,25,6,30,101250,100090,98970,83.26,0,9.84,10.9,11.14,11.27,11.35,11.4,11.43,11.450000000000001,11.44,139.98,139.95000000000002,139.97,140,140.03,140.06,140.11,140.16,140.28,25.72,25.44,25.28,25.09,24.900000000000002,24.72,24.53,24.35,23.97,N/A,N/A -2012,10,25,7,30,101260,100110,98990,81.69,0,9.46,10.5,10.77,10.94,11.07,11.15,11.22,11.28,11.35,145.88,145.99,146.03,146.08,146.13,146.18,146.24,146.29,146.4,25.71,25.44,25.28,25.09,24.91,24.72,24.53,24.35,23.97,N/A,N/A -2012,10,25,8,30,101220,100070,98950,85.08,0,9.52,10.56,10.82,10.98,11.1,11.18,11.24,11.28,11.34,147.41,147.47,147.52,147.56,147.59,147.62,147.64000000000001,147.67000000000002,147.72,25.57,25.28,25.12,24.92,24.73,24.54,24.35,24.16,23.78,N/A,N/A -2012,10,25,9,30,101210,100050,98930,81.5,0,9.49,10.53,10.790000000000001,10.950000000000001,11.06,11.14,11.19,11.23,11.27,153.45000000000002,153.75,153.87,153.98,154.07,154.16,154.24,154.31,154.45000000000002,25.69,25.42,25.26,25.080000000000002,24.89,24.71,24.52,24.34,23.96,N/A,N/A -2012,10,25,10,30,101200,100050,98930,78.3,0,9.02,10.01,10.25,10.39,10.5,10.57,10.620000000000001,10.66,10.71,155.45000000000002,155.26,155.26,155.28,155.31,155.34,155.38,155.43,155.53,25.8,25.54,25.38,25.19,25,24.82,24.62,24.44,24.07,N/A,N/A -2012,10,25,11,30,101210,100050,98930,77.58,0,8.9,9.88,10.120000000000001,10.26,10.36,10.43,10.47,10.51,10.55,158.56,158.67000000000002,158.74,158.81,158.88,158.94,159.02,159.08,159.21,25.8,25.53,25.36,25.17,24.990000000000002,24.8,24.61,24.43,24.04,N/A,N/A -2012,10,25,12,30,101220,100060,98940,75.93,0,9.120000000000001,10.15,10.42,10.59,10.72,10.81,10.88,10.93,11.01,163.23,163.53,163.62,163.71,163.77,163.83,163.88,163.93,164.03,26.01,25.78,25.63,25.44,25.26,25.09,24.900000000000002,24.72,24.34,N/A,N/A -2012,10,25,13,30,101240,100080,98960,79.01,0,9.14,10.17,10.46,10.64,10.77,10.870000000000001,10.950000000000001,11.01,11.1,166.55,166.74,166.79,166.83,166.85,166.88,166.9,166.91,166.95000000000002,25.87,25.63,25.48,25.3,25.12,24.93,24.75,24.57,24.19,N/A,N/A -2012,10,25,14,30,101290,100130,99020,80.72,0,7.94,8.74,8.950000000000001,9.07,9.16,9.22,9.26,9.3,9.35,163.6,163.77,163.87,163.99,164.1,164.21,164.33,164.45000000000002,164.69,25.830000000000002,25.57,25.42,25.23,25.04,24.86,24.67,24.490000000000002,24.12,N/A,N/A -2012,10,25,15,30,101300,100140,99020,82.04,0,7.140000000000001,7.82,7.97,8.05,8.1,8.13,8.14,8.15,8.14,156.6,157.03,157.25,157.46,157.65,157.83,158.02,158.20000000000002,158.6,25.75,25.48,25.330000000000002,25.14,24.96,24.77,24.580000000000002,24.400000000000002,24.03,N/A,N/A -2012,10,25,16,30,101280,100130,99010,79.49,0,5.97,6.5600000000000005,6.72,6.8100000000000005,6.890000000000001,6.94,6.99,7.0200000000000005,7.08,162.69,162.56,162.51,162.47,162.42000000000002,162.38,162.34,162.31,162.22,25.91,25.650000000000002,25.5,25.310000000000002,25.12,24.94,24.75,24.57,24.19,N/A,N/A -2012,10,25,17,30,101280,100120,99000,79.21000000000001,0,5.53,6.03,6.140000000000001,6.2,6.25,6.28,6.3,6.32,6.37,157.75,158.08,158.26,158.42000000000002,158.56,158.70000000000002,158.83,158.96,159.27,25.94,25.67,25.51,25.330000000000002,25.150000000000002,24.96,24.78,24.6,24.23,N/A,N/A -2012,10,25,18,30,101290,100140,99020,80.7,0,5.28,5.73,5.83,5.87,5.91,5.93,5.94,5.95,5.96,156.31,156.46,156.54,156.63,156.71,156.8,156.88,156.97,157.16,25.91,25.63,25.47,25.28,25.09,24.900000000000002,24.72,24.53,24.150000000000002,N/A,N/A -2012,10,25,19,30,101300,100150,99030,81.10000000000001,0,4.6000000000000005,4.97,5.05,5.09,5.11,5.13,5.13,5.14,5.14,152.99,153.03,153.09,153.16,153.23,153.31,153.4,153.47,153.66,25.93,25.650000000000002,25.48,25.28,25.1,24.91,24.72,24.53,24.150000000000002,N/A,N/A -2012,10,25,20,30,101270,100110,99000,80.98,0,4.25,4.57,4.63,4.66,4.68,4.7,4.71,4.72,4.73,148.23,148.5,148.69,148.89000000000001,149.06,149.22,149.39000000000001,149.56,149.89000000000001,25.92,25.62,25.46,25.26,25.07,24.89,24.69,24.5,24.12,N/A,N/A -2012,10,25,21,30,101250,100090,98980,81.27,0,4.8500000000000005,5.25,5.33,5.38,5.4,5.43,5.44,5.45,5.47,145.5,145.77,145.91,146.04,146.16,146.27,146.38,146.47,146.66,25.900000000000002,25.62,25.45,25.26,25.07,24.88,24.69,24.5,24.12,N/A,N/A -2012,10,25,22,30,101220,100060,98950,80.21000000000001,0,4.07,4.4,4.47,4.5,4.53,4.54,4.55,4.5600000000000005,4.57,145.94,145.8,145.69,145.57,145.45000000000002,145.33,145.21,145.1,144.83,25.85,25.59,25.43,25.23,25.05,24.86,24.67,24.48,24.1,N/A,N/A -2012,10,25,23,30,101240,100090,98970,83.06,0,3.91,4.24,4.32,4.37,4.4,4.43,4.45,4.46,4.49,138.42000000000002,138.70000000000002,138.94,139.16,139.35,139.53,139.70000000000002,139.87,140.20000000000002,25.73,25.45,25.3,25.1,24.92,24.73,24.54,24.35,23.97,N/A,N/A -2012,10,26,0,30,101260,100110,98990,84.74,0,4.32,4.68,4.76,4.8,4.82,4.84,4.86,4.87,4.89,141.84,142.06,142.18,142.29,142.39000000000001,142.5,142.6,142.68,142.89000000000001,25.61,25.330000000000002,25.17,24.98,24.79,24.61,24.41,24.23,23.85,N/A,N/A -2012,10,26,1,30,101260,100110,98990,84.9,0,4.86,5.28,5.36,5.4,5.43,5.44,5.45,5.46,5.47,140.45000000000002,140.78,140.94,141.07,141.17000000000002,141.26,141.33,141.39000000000001,141.46,25.650000000000002,25.36,25.2,25.01,24.82,24.63,24.44,24.26,23.88,N/A,N/A -2012,10,26,2,30,101290,100140,99020,84.7,0,5.92,6.45,6.5600000000000005,6.61,6.640000000000001,6.65,6.66,6.66,6.63,139.06,139.21,139.36,139.52,139.66,139.81,139.95000000000002,140.09,140.35,25.7,25.42,25.26,25.07,24.89,24.7,24.5,24.32,23.94,N/A,N/A -2012,10,26,3,30,101300,100150,99030,84.55,0,5.46,5.96,6.07,6.140000000000001,6.18,6.21,6.22,6.23,6.23,135.94,136.53,136.92000000000002,137.33,137.70000000000002,138.06,138.43,138.77,139.47,25.67,25.39,25.23,25.04,24.86,24.67,24.48,24.29,23.92,N/A,N/A -2012,10,26,4,30,101310,100160,99030,84.3,0,4.9,5.32,5.41,5.46,5.5,5.5200000000000005,5.53,5.54,5.55,137.51,137.55,137.58,137.6,137.61,137.62,137.63,137.64000000000001,137.67000000000002,25.5,25.21,25.04,24.85,24.66,24.48,24.28,24.1,23.72,N/A,N/A -2012,10,26,5,30,101310,100150,99030,84.7,0,4.32,4.64,4.72,4.75,4.78,4.8,4.8100000000000005,4.82,4.83,134.29,134.48,134.51,134.55,134.59,134.64000000000001,134.69,134.73,134.85,25.37,25.07,24.900000000000002,24.7,24.51,24.330000000000002,24.13,23.95,23.56,N/A,N/A -2012,10,26,6,30,101330,100170,99050,87.56,0,4.72,5.05,5.11,5.13,5.14,5.15,5.14,5.13,5.11,139.02,139.34,139.51,139.70000000000002,139.88,140.07,140.28,140.48,140.96,25.22,24.900000000000002,24.72,24.53,24.34,24.150000000000002,23.96,23.78,23.39,N/A,N/A -2012,10,26,7,30,101360,100200,99080,87.97,0,4.0600000000000005,4.3100000000000005,4.3500000000000005,4.36,4.37,4.37,4.36,4.36,4.34,138.39000000000001,138.59,138.74,138.91,139.08,139.27,139.49,139.71,140.29,25.13,24.810000000000002,24.64,24.44,24.25,24.07,23.87,23.69,23.31,N/A,N/A -2012,10,26,8,30,101380,100220,99100,85.71000000000001,0,2.5500000000000003,2.66,2.66,2.66,2.65,2.64,2.62,2.61,2.58,151.68,151.83,152.03,152.24,152.45000000000002,152.65,152.88,153.1,153.63,25.17,24.86,24.69,24.5,24.310000000000002,24.12,23.93,23.740000000000002,23.36,N/A,N/A -2012,10,26,9,30,101390,100230,99100,86.64,0,2.58,2.71,2.74,2.75,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.7600000000000002,2.77,160.59,161.15,161.46,161.81,162.17000000000002,162.54,162.97,163.39000000000001,164.42000000000002,25.080000000000002,24.76,24.59,24.39,24.21,24.02,23.82,23.64,23.26,N/A,N/A -2012,10,26,10,30,101420,100260,99140,86.53,0,1.68,1.77,1.79,1.81,1.82,1.83,1.84,1.85,1.87,170.59,171.88,172.53,173.17000000000002,173.75,174.33,174.93,175.51,176.8,25.1,24.79,24.62,24.43,24.240000000000002,24.05,23.85,23.67,23.29,N/A,N/A -2012,10,26,11,30,101450,100290,99170,84.85000000000001,0,1.1,1.18,1.2,1.23,1.25,1.27,1.29,1.31,1.36,218.71,219.07,219.43,219.76,220.05,220.35,220.61,220.84,221.38,25.19,24.88,24.71,24.52,24.330000000000002,24.14,23.95,23.77,23.39,N/A,N/A -2012,10,26,12,30,101490,100340,99210,83.92,0,0.8300000000000001,0.87,0.88,0.89,0.9,0.91,0.93,0.9400000000000001,0.98,304.59000000000003,300.74,298.45,296.13,294.05,292.04,290.08,288.23,284.54,25.23,24.93,24.76,24.57,24.38,24.19,24,23.81,23.43,N/A,N/A -2012,10,26,13,30,101520,100360,99230,85.34,0,1.78,1.83,1.82,1.8,1.78,1.77,1.75,1.73,1.69,358.69,357.17,356.18,355.15000000000003,354.16,353.18,352.12,351.12,348.86,25.150000000000002,24.84,24.67,24.47,24.29,24.1,23.91,23.72,23.34,N/A,N/A -2012,10,26,14,30,101590,100410,99280,99.42,0,9.89,10.44,10.46,10.33,10.09,9.78,9.14,8.49,7.19,337.75,337.8,337.77,337.66,337.36,336.93,335.93,334.90000000000003,333.05,21.96,21.490000000000002,21.330000000000002,21.21,21.14,21.12,21.19,21.29,21.53,N/A,N/A -2012,10,26,15,30,101600,100420,99280,94.03,1.5,10.620000000000001,11.41,11.540000000000001,11.58,11.57,11.55,11.5,11.450000000000001,11.3,350.74,350.79,350.74,350.69,350.63,350.57,350.5,350.42,350.17,21.16,20.57,20.35,20.13,19.93,19.75,19.55,19.38,19.02,N/A,N/A -2012,10,26,16,30,101650,100470,99320,92.8,0,9.39,10.040000000000001,10.17,10.22,10.24,10.24,10.22,10.21,10.15,1.3,1.36,1.4000000000000001,1.44,1.51,1.57,1.6500000000000001,1.74,1.97,20.490000000000002,19.89,19.67,19.45,19.25,19.06,18.86,18.68,18.31,N/A,N/A -2012,10,26,17,30,101610,100430,99280,90.5,0,10.48,11.23,11.35,11.38,11.370000000000001,11.35,11.31,11.26,11.15,353.19,353.55,353.73,353.91,354.12,354.31,354.57,354.82,355.57,20.32,19.7,19.47,19.26,19.07,18.88,18.69,18.52,18.17,N/A,N/A -2012,10,26,18,30,101650,100470,99320,86.25,0,10.11,10.86,11,11.06,11.08,11.08,11.06,11.040000000000001,10.96,355.90000000000003,356.08,356.18,356.3,356.42,356.54,356.69,356.83,357.2,20.490000000000002,19.87,19.64,19.41,19.21,19.01,18.81,18.63,18.240000000000002,N/A,N/A -2012,10,26,19,30,101670,100490,99330,84.37,0,10.74,11.57,11.73,11.790000000000001,11.82,11.83,11.81,11.790000000000001,11.72,352.38,352.85,353.14,353.43,353.71,353.97,354.25,354.52,355.11,20.29,19.650000000000002,19.41,19.19,18.98,18.79,18.580000000000002,18.39,18.01,N/A,N/A -2012,10,26,20,30,101690,100500,99350,83.2,0,10.98,11.84,12.01,12.09,12.120000000000001,12.13,12.13,12.120000000000001,12.06,359.35,359.51,359.6,359.69,359.77,359.85,359.93,0.01,0.17,19.84,19.17,18.92,18.69,18.47,18.28,18.07,17.88,17.48,N/A,N/A -2012,10,26,21,30,101730,100530,99380,84.36,0,11.28,12.16,12.35,12.44,12.49,12.52,12.52,12.51,12.47,355.69,355.84000000000003,355.94,356.03000000000003,356.12,356.2,356.29,356.37,356.53000000000003,19.11,18.39,18.13,17.89,17.67,17.47,17.26,17.06,16.67,N/A,N/A -2012,10,26,22,30,101750,100550,99390,85.19,0,11.84,12.780000000000001,12.99,13.08,13.120000000000001,13.15,13.15,13.15,13.11,356.28000000000003,356.40000000000003,356.47,356.54,356.62,356.68,356.75,356.82,356.98,18.43,17.67,17.400000000000002,17.16,16.94,16.73,16.52,16.330000000000002,15.93,N/A,N/A -2012,10,26,23,30,101780,100580,99410,86.53,0,12.76,13.85,14.1,14.22,14.290000000000001,14.34,14.36,14.370000000000001,14.36,0.9,0.97,0.97,0.97,0.96,0.96,0.96,0.96,0.96,17.78,16.95,16.67,16.43,16.19,15.99,15.77,15.58,15.18,N/A,N/A -2012,10,27,0,30,101830,100630,99460,85.27,0,12.19,13.15,13.35,13.43,13.46,13.47,13.450000000000001,13.43,13.370000000000001,358.47,358.63,358.71,358.79,358.87,358.95,359.04,359.13,359.32,17.09,16.26,15.98,15.74,15.51,15.31,15.1,14.9,14.51,N/A,N/A -2012,10,27,1,30,101890,100680,99500,86.32000000000001,0,12.67,13.69,13.92,14.030000000000001,14.1,14.14,14.16,14.17,14.16,6.54,6.69,6.78,6.86,6.94,7,7.08,7.15,7.3100000000000005,16.51,15.64,15.34,15.09,14.86,14.65,14.43,14.24,13.84,N/A,N/A -2012,10,27,2,30,101930,100720,99540,86.77,0,13.030000000000001,14.11,14.35,14.47,14.540000000000001,14.59,14.61,14.620000000000001,14.61,6.18,6.43,6.5600000000000005,6.69,6.8100000000000005,6.92,7.05,7.16,7.41,15.94,15.02,14.72,14.46,14.23,14.02,13.8,13.6,13.200000000000001,N/A,N/A -2012,10,27,3,30,101960,100740,99570,87.68,0,12.05,13.01,13.23,13.35,13.42,13.46,13.49,13.51,13.52,9.86,9.950000000000001,10.02,10.07,10.13,10.18,10.23,10.28,10.38,15.68,14.790000000000001,14.49,14.24,14,13.790000000000001,13.57,13.370000000000001,12.97,N/A,N/A -2012,10,27,4,30,101930,100720,99540,86.9,0,12.32,13.280000000000001,13.5,13.620000000000001,13.68,13.73,13.75,13.76,13.77,5.61,5.74,5.83,5.92,5.99,6.0600000000000005,6.140000000000001,6.21,6.36,15.42,14.51,14.21,13.950000000000001,13.72,13.51,13.290000000000001,13.09,12.69,N/A,N/A -2012,10,27,5,30,101940,100730,99550,85.67,0,12.49,13.51,13.75,13.88,13.950000000000001,14.01,14.040000000000001,14.06,14.07,7.72,7.99,8.13,8.27,8.4,8.53,8.65,8.77,9.03,15.13,14.200000000000001,13.89,13.63,13.39,13.18,12.96,12.76,12.36,N/A,N/A -2012,10,27,6,30,101930,100710,99530,83.76,0,13.120000000000001,14.23,14.49,14.63,14.72,14.77,14.8,14.83,14.84,10.49,10.64,10.73,10.82,10.9,10.98,11.06,11.15,11.31,15.1,14.15,13.84,13.58,13.33,13.120000000000001,12.9,12.700000000000001,12.290000000000001,N/A,N/A -2012,10,27,7,30,101980,100760,99580,77.46000000000001,0,13.280000000000001,14.4,14.66,14.8,14.88,14.94,14.97,14.99,15,13.51,13.66,13.76,13.84,13.91,13.99,14.06,14.13,14.280000000000001,15.09,14.13,13.82,13.56,13.32,13.11,12.89,12.68,12.290000000000001,N/A,N/A -2012,10,27,8,30,101960,100740,99560,73.72,0,13.38,14.51,14.780000000000001,14.91,15,15.05,15.08,15.11,15.120000000000001,12.31,12.48,12.56,12.64,12.71,12.780000000000001,12.85,12.91,13.05,15.030000000000001,14.08,13.76,13.5,13.26,13.05,12.83,12.620000000000001,12.22,N/A,N/A -2012,10,27,9,30,101980,100760,99570,70.74,0,13.42,14.55,14.8,14.94,15.02,15.07,15.1,15.120000000000001,15.13,11.120000000000001,11.26,11.35,11.43,11.51,11.59,11.67,11.74,11.9,14.700000000000001,13.73,13.41,13.15,12.91,12.69,12.47,12.27,11.870000000000001,N/A,N/A -2012,10,27,10,30,102010,100790,99600,70.87,0,14.32,15.56,15.85,15.99,16.080000000000002,16.14,16.16,16.18,16.18,17.86,18.02,18.12,18.22,18.3,18.37,18.45,18.52,18.67,14.1,13.07,12.74,12.47,12.23,12.01,11.790000000000001,11.59,11.19,N/A,N/A -2012,10,27,11,30,102080,100850,99660,71.93,0,14.14,15.34,15.620000000000001,15.76,15.84,15.9,15.92,15.94,15.94,19.05,19.2,19.31,19.400000000000002,19.490000000000002,19.57,19.650000000000002,19.73,19.89,13.75,12.71,12.370000000000001,12.1,11.85,11.64,11.42,11.21,10.81,N/A,N/A -2012,10,27,12,30,102130,100900,99710,71.75,0,13.52,14.63,14.88,15.02,15.09,15.14,15.16,15.17,15.17,17.72,17.900000000000002,18.01,18.11,18.2,18.29,18.38,18.47,18.650000000000002,13.370000000000001,12.33,12,11.73,11.49,11.27,11.05,10.84,10.44,N/A,N/A -2012,10,27,13,30,102130,100900,99710,73.27,0,13.66,14.77,15.02,15.15,15.21,15.26,15.27,15.280000000000001,15.27,16.16,16.32,16.4,16.47,16.55,16.61,16.68,16.740000000000002,16.88,13.05,12.01,11.68,11.41,11.16,10.950000000000001,10.73,10.52,10.120000000000001,N/A,N/A -2012,10,27,14,30,102150,100920,99720,74.09,0,12.61,13.57,13.790000000000001,13.89,13.950000000000001,13.99,14,14,13.99,14.02,14.17,14.26,14.34,14.42,14.49,14.57,14.63,14.780000000000001,12.870000000000001,11.86,11.53,11.27,11.03,10.81,10.59,10.4,10,N/A,N/A -2012,10,27,15,30,102160,100930,99740,73.01,0,10.96,11.73,11.9,11.98,12.02,12.040000000000001,12.05,12.05,12.040000000000001,10.32,10.42,10.49,10.55,10.620000000000001,10.67,10.74,10.8,10.93,13.09,12.16,11.85,11.59,11.35,11.15,10.93,10.73,10.34,N/A,N/A -2012,10,27,16,30,102120,100900,99710,69.99,0,10.47,11.200000000000001,11.35,11.43,11.47,11.5,11.51,11.52,11.52,6.3,6.390000000000001,6.46,6.5200000000000005,6.58,6.63,6.69,6.75,6.8500000000000005,13.700000000000001,12.82,12.52,12.26,12.030000000000001,11.82,11.6,11.41,11.01,N/A,N/A -2012,10,27,17,30,102080,100860,99670,65.51,0,9.66,10.31,10.46,10.53,10.58,10.61,10.620000000000001,10.64,10.64,1.35,1.5,1.6,1.7,1.79,1.87,1.96,2.04,2.2,14.52,13.69,13.4,13.14,12.91,12.700000000000001,12.48,12.280000000000001,11.88,N/A,N/A -2012,10,27,18,30,102040,100820,99640,60.71,0,9.15,9.76,9.89,9.96,10,10.03,10.040000000000001,10.05,10.05,359.33,359.45,359.52,359.59000000000003,359.65000000000003,359.71,359.77,359.83,359.95,15.33,14.55,14.27,14.030000000000001,13.8,13.6,13.38,13.18,12.780000000000001,N/A,N/A -2012,10,27,19,30,101990,100770,99590,58.79,0,9.43,10.07,10.22,10.3,10.35,10.38,10.4,10.42,10.43,355.04,355.07,355.11,355.14,355.18,355.21,355.24,355.28000000000003,355.35,16.18,15.42,15.15,14.9,14.67,14.46,14.24,14.040000000000001,13.64,N/A,N/A -2012,10,27,20,30,101930,100720,99540,56.5,0,9.21,9.83,9.97,10.05,10.09,10.13,10.14,10.16,10.17,353.47,353.69,353.84000000000003,353.98,354.12,354.25,354.37,354.49,354.73,16.89,16.16,15.9,15.65,15.43,15.22,15,14.8,14.39,N/A,N/A -2012,10,27,21,30,101910,100700,99530,54.5,0,9.21,9.84,9.98,10.07,10.120000000000001,10.15,10.17,10.19,10.200000000000001,354.7,354.91,355.04,355.15000000000003,355.26,355.36,355.46,355.56,355.74,17.37,16.66,16.4,16.15,15.93,15.72,15.5,15.3,14.89,N/A,N/A -2012,10,27,22,30,101900,100700,99530,53.65,0,9.17,9.8,9.94,10.02,10.07,10.1,10.11,10.13,10.14,356.06,356.19,356.28000000000003,356.37,356.46,356.54,356.62,356.7,356.86,17.56,16.85,16.59,16.35,16.12,15.92,15.700000000000001,15.5,15.09,N/A,N/A -2012,10,27,23,30,101920,100710,99540,50.050000000000004,0,9.870000000000001,10.55,10.68,10.74,10.77,10.790000000000001,10.790000000000001,10.790000000000001,10.78,0.46,0.23,0.04,359.84000000000003,359.64,359.46,359.27,359.09000000000003,358.74,17.42,16.69,16.43,16.2,15.98,15.780000000000001,15.56,15.36,14.97,N/A,N/A -2012,10,28,0,30,101960,100750,99570,55.01,0,10.59,11.34,11.51,11.58,11.620000000000001,11.65,11.65,11.65,11.63,1.6600000000000001,1.59,1.53,1.48,1.42,1.37,1.32,1.27,1.18,17,16.23,15.950000000000001,15.71,15.48,15.27,15.05,14.85,14.450000000000001,N/A,N/A -2012,10,28,1,30,101990,100780,99600,55.410000000000004,0,10.69,11.47,11.63,11.71,11.75,11.77,11.78,11.78,11.77,3.18,3.3000000000000003,3.37,3.43,3.49,3.54,3.6,3.65,3.75,16.44,15.64,15.370000000000001,15.13,14.9,14.69,14.48,14.280000000000001,13.88,N/A,N/A -2012,10,28,2,30,102040,100820,99640,57.93,0,10.81,11.61,11.78,11.86,11.91,11.94,11.950000000000001,11.96,11.950000000000001,10.14,10.16,10.16,10.17,10.17,10.17,10.17,10.16,10.16,16.12,15.31,15.030000000000001,14.780000000000001,14.55,14.34,14.120000000000001,13.92,13.51,N/A,N/A -2012,10,28,3,30,102060,100850,99670,58.1,0,11.08,11.9,12.08,12.17,12.22,12.25,12.27,12.27,12.27,14.39,14.4,14.41,14.42,14.42,14.43,14.42,14.41,14.41,15.83,14.99,14.71,14.46,14.22,14.01,13.790000000000001,13.59,13.18,N/A,N/A -2012,10,28,4,30,102080,100860,99680,59.35,0,11.08,11.89,12.07,12.16,12.21,12.23,12.25,12.25,12.24,18.51,18.55,18.55,18.56,18.56,18.56,18.57,18.57,18.57,15.47,14.620000000000001,14.33,14.08,13.85,13.64,13.42,13.22,12.81,N/A,N/A -2012,10,28,5,30,102110,100890,99700,58.1,0,11.26,12.08,12.26,12.34,12.39,12.42,12.42,12.43,12.41,21.23,21.330000000000002,21.39,21.43,21.47,21.51,21.54,21.580000000000002,21.650000000000002,15.23,14.370000000000001,14.07,13.82,13.59,13.370000000000001,13.15,12.950000000000001,12.55,N/A,N/A -2012,10,28,6,30,102120,100900,99710,58.9,0,11.35,12.19,12.38,12.47,12.52,12.540000000000001,12.55,12.55,12.530000000000001,21.57,21.78,21.89,21.98,22.07,22.150000000000002,22.23,22.3,22.45,14.96,14.120000000000001,13.83,13.58,13.35,13.14,12.92,12.72,12.32,N/A,N/A -2012,10,28,7,30,102150,100930,99740,58.79,0,11.11,11.93,12.11,12.200000000000001,12.24,12.27,12.280000000000001,12.290000000000001,12.27,24.91,25.080000000000002,25.16,25.240000000000002,25.310000000000002,25.37,25.43,25.490000000000002,25.6,14.68,13.84,13.55,13.3,13.07,12.86,12.64,12.44,12.040000000000001,N/A,N/A -2012,10,28,8,30,102170,100950,99760,58.7,0,10.72,11.49,11.66,11.74,11.790000000000001,11.82,11.82,11.83,11.81,27.32,27.48,27.59,27.68,27.76,27.830000000000002,27.91,27.98,28.11,14.56,13.72,13.44,13.19,12.950000000000001,12.75,12.530000000000001,12.33,11.92,N/A,N/A -2012,10,28,9,30,102170,100950,99760,58.72,0,10.790000000000001,11.57,11.73,11.81,11.85,11.88,11.88,11.88,11.86,26.19,26.37,26.48,26.57,26.66,26.740000000000002,26.82,26.900000000000002,27.05,14.36,13.52,13.24,12.99,12.76,12.55,12.33,12.13,11.73,N/A,N/A -2012,10,28,10,30,102190,100970,99780,58.39,0,10.76,11.52,11.69,11.76,11.8,11.82,11.83,11.83,11.81,25.740000000000002,25.92,26.02,26.12,26.2,26.28,26.36,26.43,26.580000000000002,14.18,13.33,13.040000000000001,12.790000000000001,12.56,12.35,12.14,11.94,11.540000000000001,N/A,N/A -2012,10,28,11,30,102210,100980,99790,58.96,0,10.620000000000001,11.36,11.51,11.58,11.61,11.63,11.620000000000001,11.620000000000001,11.59,24.96,25.18,25.3,25.42,25.52,25.62,25.71,25.810000000000002,25.990000000000002,14.06,13.21,12.92,12.67,12.44,12.23,12.02,11.82,11.42,N/A,N/A -2012,10,28,12,30,102230,101010,99820,58.9,0,10.32,11.03,11.18,11.24,11.28,11.290000000000001,11.3,11.290000000000001,11.27,23.79,23.990000000000002,24.12,24.240000000000002,24.35,24.45,24.560000000000002,24.650000000000002,24.84,13.98,13.14,12.85,12.61,12.370000000000001,12.17,11.950000000000001,11.75,11.36,N/A,N/A -2012,10,28,13,30,102260,101030,99840,59.96,0,10.3,10.99,11.13,11.19,11.21,11.22,11.21,11.200000000000001,11.16,23.07,23.29,23.42,23.54,23.66,23.76,23.87,23.98,24.18,13.71,12.86,12.57,12.32,12.09,11.89,11.67,11.48,11.08,N/A,N/A -2012,10,28,14,30,102300,101070,99870,59.92,0,9.74,10.38,10.51,10.56,10.59,10.6,10.6,10.6,10.57,22.990000000000002,23.150000000000002,23.26,23.36,23.45,23.53,23.62,23.69,23.85,13.66,12.83,12.55,12.3,12.07,11.870000000000001,11.65,11.450000000000001,11.06,N/A,N/A -2012,10,28,15,30,102300,101070,99880,59,0,9.35,9.950000000000001,10.07,10.13,10.15,10.17,10.17,10.17,10.15,20.19,20.330000000000002,20.400000000000002,20.46,20.51,20.57,20.62,20.67,20.77,13.84,13.030000000000001,12.75,12.51,12.280000000000001,12.08,11.86,11.67,11.27,N/A,N/A -2012,10,28,16,30,102290,101060,99870,57.01,0,8.75,9.3,9.41,9.47,9.49,9.51,9.52,9.52,9.51,17.31,17.36,17.400000000000002,17.43,17.46,17.48,17.51,17.53,17.580000000000002,14.25,13.47,13.200000000000001,12.96,12.73,12.530000000000001,12.32,12.120000000000001,11.72,N/A,N/A -2012,10,28,17,30,102270,101050,99860,54.230000000000004,0,8.040000000000001,8.540000000000001,8.65,8.700000000000001,8.74,8.76,8.77,8.78,8.790000000000001,11.540000000000001,11.620000000000001,11.67,11.72,11.77,11.8,11.84,11.870000000000001,11.94,14.8,14.06,13.8,13.56,13.34,13.14,12.92,12.73,12.33,N/A,N/A -2012,10,28,18,30,102240,101020,99840,50.44,0,7.96,8.47,8.58,8.65,8.69,8.72,8.73,8.75,8.77,7.930000000000001,7.84,7.8,7.76,7.72,7.69,7.66,7.63,7.58,15.540000000000001,14.84,14.58,14.35,14.13,13.92,13.71,13.51,13.11,N/A,N/A -2012,10,28,19,30,102220,101000,99820,47.63,0,7.74,8.23,8.35,8.42,8.47,8.5,8.52,8.540000000000001,8.57,5.25,5.11,5.04,4.98,4.92,4.88,4.84,4.8,4.72,16.46,15.790000000000001,15.540000000000001,15.3,15.08,14.870000000000001,14.66,14.46,14.06,N/A,N/A -2012,10,28,20,30,102170,100960,99780,45.980000000000004,0,7.46,7.930000000000001,8.040000000000001,8.09,8.13,8.16,8.18,8.19,8.22,0.58,0.76,0.87,0.97,1.05,1.12,1.2,1.27,1.41,17.07,16.44,16.19,15.96,15.74,15.540000000000001,15.33,15.13,14.73,N/A,N/A -2012,10,28,21,30,102150,100940,99770,44.37,0,7.57,8.040000000000001,8.14,8.21,8.25,8.27,8.290000000000001,8.31,8.33,3.19,3.12,3.0700000000000003,3,2.96,2.92,2.88,2.85,2.79,17.63,17.01,16.77,16.54,16.32,16.12,15.9,15.700000000000001,15.3,N/A,N/A -2012,10,28,22,30,102140,100930,99760,41.21,0,8.17,8.68,8.78,8.83,8.85,8.86,8.86,8.86,8.85,2.86,2.77,2.72,2.68,2.63,2.59,2.5500000000000003,2.5300000000000002,2.47,17.81,17.19,16.95,16.73,16.51,16.31,16.1,15.9,15.5,N/A,N/A -2012,10,28,23,30,102160,100950,99780,42.050000000000004,0,8.22,8.72,8.81,8.84,8.85,8.85,8.84,8.83,8.8,7.24,7.28,7.28,7.28,7.28,7.2700000000000005,7.26,7.25,7.21,17.78,17.150000000000002,16.91,16.69,16.47,16.28,16.07,15.870000000000001,15.47,N/A,N/A -2012,10,29,0,30,102180,100970,99800,45.13,0,8.4,8.94,9.040000000000001,9.09,9.1,9.120000000000001,9.11,9.11,9.09,6.8100000000000005,6.97,7.0600000000000005,7.140000000000001,7.21,7.28,7.34,7.41,7.53,17.490000000000002,16.84,16.6,16.37,16.15,15.96,15.74,15.55,15.15,N/A,N/A -2012,10,29,1,30,102200,100990,99820,49.56,0,8.66,9.22,9.34,9.39,9.42,9.44,9.44,9.44,9.43,13.55,13.71,13.790000000000001,13.88,13.950000000000001,14.01,14.08,14.14,14.27,17.23,16.56,16.31,16.080000000000002,15.860000000000001,15.66,15.44,15.25,14.85,N/A,N/A -2012,10,29,2,30,102230,101020,99840,50.2,0,8.32,8.85,8.97,9.02,9.05,9.06,9.07,9.07,9.06,19.48,19.5,19.5,19.51,19.51,19.51,19.51,19.52,19.52,17.05,16.38,16.14,15.9,15.68,15.48,15.27,15.07,14.67,N/A,N/A -2012,10,29,3,30,102240,101030,99850,50.44,0,8.31,8.83,8.93,8.98,9,9.01,9.01,9.01,8.99,22.37,22.47,22.52,22.57,22.62,22.650000000000002,22.69,22.740000000000002,22.82,16.95,16.28,16.04,15.8,15.58,15.39,15.17,14.98,14.58,N/A,N/A -2012,10,29,4,30,102240,101030,99850,51.51,0,8.57,9.11,9.22,9.26,9.28,9.290000000000001,9.290000000000001,9.290000000000001,9.26,24.18,24.28,24.32,24.37,24.41,24.45,24.490000000000002,24.53,24.6,16.84,16.16,15.92,15.68,15.47,15.26,15.05,14.85,14.46,N/A,N/A -2012,10,29,5,30,102260,101040,99860,51.15,0,8.32,8.83,8.93,8.98,8.99,9,9,8.99,8.97,26.44,26.650000000000002,26.77,26.88,26.98,27.07,27.17,27.26,27.44,16.78,16.11,15.860000000000001,15.63,15.41,15.21,14.99,14.8,14.4,N/A,N/A -2012,10,29,6,30,102280,101060,99880,52.31,0,8.8,9.36,9.47,9.51,9.53,9.540000000000001,9.540000000000001,9.53,9.5,25.66,25.900000000000002,26.04,26.18,26.310000000000002,26.42,26.54,26.650000000000002,26.88,16.6,15.91,15.66,15.43,15.200000000000001,15,14.790000000000001,14.59,14.200000000000001,N/A,N/A -2012,10,29,7,30,102320,101100,99920,52.85,0,8.53,9.05,9.15,9.18,9.200000000000001,9.200000000000001,9.19,9.18,9.13,27.73,28.03,28.2,28.37,28.53,28.66,28.810000000000002,28.94,29.21,16.45,15.76,15.51,15.280000000000001,15.06,14.86,14.65,14.450000000000001,14.06,N/A,N/A -2012,10,29,8,30,102330,101110,99930,54.300000000000004,0,8.46,8.97,9.06,9.09,9.1,9.1,9.09,9.07,9.02,29.19,29.53,29.740000000000002,29.92,30.09,30.25,30.42,30.560000000000002,30.87,16.28,15.59,15.34,15.1,14.89,14.68,14.47,14.280000000000001,13.88,N/A,N/A -2012,10,29,9,30,102350,101130,99950,54.6,0,8.45,8.950000000000001,9.040000000000001,9.07,9.08,9.08,9.06,9.05,9,30.55,30.94,31.17,31.38,31.580000000000002,31.76,31.95,32.13,32.49,16.1,15.41,15.15,14.92,14.700000000000001,14.5,14.290000000000001,14.09,13.700000000000001,N/A,N/A -2012,10,29,10,30,102360,101150,99960,55.46,0,8.36,8.85,8.94,8.97,8.97,8.97,8.950000000000001,8.94,8.88,31.76,32.21,32.480000000000004,32.730000000000004,32.96,33.17,33.39,33.6,34.01,16.080000000000002,15.39,15.13,14.9,14.68,14.48,14.27,14.07,13.68,N/A,N/A -2012,10,29,11,30,102390,101170,99990,56.46,0,8.55,9.05,9.13,9.16,9.16,9.16,9.13,9.11,9.05,33.43,33.85,34.11,34.35,34.58,34.78,35,35.2,35.6,15.98,15.27,15.02,14.790000000000001,14.56,14.36,14.15,13.96,13.56,N/A,N/A -2012,10,29,12,30,102400,101180,100000,60.31,0,8.57,9.07,9.16,9.19,9.19,9.18,9.16,9.14,9.08,33.28,33.74,34.02,34.28,34.53,34.75,34.980000000000004,35.19,35.64,15.72,15,14.74,14.51,14.290000000000001,14.09,13.88,13.68,13.280000000000001,N/A,N/A -2012,10,29,13,30,102420,101200,100020,59.44,0,8.2,8.66,8.73,8.74,8.74,8.73,8.700000000000001,8.68,8.61,33.45,33.95,34.25,34.53,34.79,35.04,35.29,35.53,36,15.71,15,14.75,14.52,14.3,14.1,13.89,13.69,13.3,N/A,N/A -2012,10,29,14,30,102450,101230,100050,60.88,0,7.5600000000000005,7.97,8.03,8.040000000000001,8.040000000000001,8.040000000000001,8.01,7.99,7.94,35.81,36.34,36.68,36.980000000000004,37.27,37.53,37.81,38.06,38.57,15.73,15.05,14.8,14.57,14.35,14.15,13.94,13.74,13.35,N/A,N/A -2012,10,29,15,30,102440,101220,100040,60.77,0,7.3500000000000005,7.73,7.79,7.8,7.79,7.78,7.76,7.74,7.68,34.22,34.69,34.980000000000004,35.230000000000004,35.480000000000004,35.7,35.94,36.160000000000004,36.6,15.84,15.17,14.92,14.69,14.47,14.27,14.06,13.870000000000001,13.48,N/A,N/A -2012,10,29,16,30,102420,101200,100020,58.550000000000004,0,6.91,7.26,7.3100000000000005,7.3100000000000005,7.3100000000000005,7.29,7.2700000000000005,7.25,7.2,33.84,34.22,34.45,34.660000000000004,34.86,35.04,35.230000000000004,35.410000000000004,35.77,15.950000000000001,15.290000000000001,15.05,14.82,14.6,14.41,14.200000000000001,14,13.61,N/A,N/A -2012,10,29,17,30,102390,101170,99990,52.93,0,6.49,6.8100000000000005,6.8500000000000005,6.8500000000000005,6.8500000000000005,6.84,6.82,6.8,6.74,28.48,28.72,28.88,29.03,29.18,29.3,29.43,29.55,29.8,16.18,15.540000000000001,15.290000000000001,15.07,14.85,14.66,14.450000000000001,14.26,13.86,N/A,N/A -2012,10,29,18,30,102350,101140,99960,49.08,0,5.5,5.76,5.8,5.82,5.82,5.82,5.82,5.8100000000000005,5.8,22.52,22.73,22.86,22.98,23.09,23.19,23.29,23.39,23.580000000000002,16.55,15.96,15.72,15.5,15.290000000000001,15.09,14.89,14.69,14.3,N/A,N/A -2012,10,29,19,30,102320,101110,99930,46.660000000000004,0,4.8100000000000005,5.04,5.08,5.11,5.12,5.13,5.13,5.14,5.14,21.86,21.7,21.6,21.51,21.42,21.35,21.26,21.19,21.04,17.19,16.63,16.4,16.18,15.97,15.77,15.56,15.370000000000001,14.97,N/A,N/A -2012,10,29,20,30,102260,101050,99870,43.88,0,4.48,4.71,4.75,4.78,4.8,4.82,4.83,4.84,4.86,14.71,14.75,14.790000000000001,14.82,14.85,14.88,14.91,14.94,15,17.78,17.240000000000002,17.02,16.81,16.6,16.4,16.19,16,15.6,N/A,N/A -2012,10,29,21,30,102210,101010,99830,41.09,0,4.49,4.73,4.78,4.8,4.82,4.84,4.8500000000000005,4.86,4.88,12.35,12.46,12.530000000000001,12.59,12.63,12.67,12.69,12.71,12.74,18.37,17.85,17.63,17.42,17.22,17.02,16.81,16.62,16.23,N/A,N/A -2012,10,29,22,30,102160,100960,99790,41.04,0,4.62,4.87,4.92,4.95,4.98,4.99,5.01,5.0200000000000005,5.04,6.61,6.88,7.05,7.21,7.3500000000000005,7.48,7.61,7.72,7.97,18.8,18.29,18.080000000000002,17.87,17.67,17.47,17.27,17.07,16.68,N/A,N/A -2012,10,29,23,30,102150,100950,99780,42.6,0,5.23,5.5,5.55,5.5600000000000005,5.57,5.57,5.57,5.57,5.55,11.19,11.27,11.290000000000001,11.33,11.35,11.38,11.4,11.43,11.49,19.19,18.69,18.47,18.26,18.05,17.85,17.650000000000002,17.45,17.06,N/A,N/A -2012,10,30,0,30,102130,100930,99770,46.230000000000004,0,5.73,6.04,6.09,6.12,6.13,6.140000000000001,6.140000000000001,6.140000000000001,6.13,14.86,15.120000000000001,15.24,15.36,15.47,15.57,15.66,15.74,15.92,19.22,18.7,18.48,18.27,18.06,17.86,17.650000000000002,17.46,17.06,N/A,N/A -2012,10,30,1,30,102140,100940,99770,45.230000000000004,0,6.03,6.33,6.37,6.37,6.37,6.3500000000000005,6.34,6.3100000000000005,6.2700000000000005,21.740000000000002,21.91,22,22.09,22.17,22.240000000000002,22.32,22.400000000000002,22.55,19.06,18.53,18.31,18.1,17.89,17.7,17.490000000000002,17.3,16.9,N/A,N/A -2012,10,30,2,30,102150,100950,99780,46.11,0,5.34,5.58,5.61,5.61,5.6000000000000005,5.58,5.5600000000000005,5.55,5.5,29.86,30.03,30.11,30.19,30.27,30.35,30.42,30.490000000000002,30.650000000000002,18.94,18.42,18.21,17.990000000000002,17.78,17.59,17.38,17.19,16.8,N/A,N/A -2012,10,30,3,30,102130,100930,99760,48.65,0,5.28,5.51,5.54,5.54,5.53,5.51,5.5,5.48,5.43,34.04,34.31,34.47,34.62,34.76,34.89,35.03,35.15,35.42,18.86,18.330000000000002,18.12,17.91,17.7,17.5,17.3,17.1,16.71,N/A,N/A -2012,10,30,4,30,102110,100910,99740,51.32,0,5.32,5.54,5.55,5.54,5.5200000000000005,5.5,5.47,5.44,5.37,40.57,40.85,41.02,41.18,41.34,41.480000000000004,41.63,41.77,42.07,18.7,18.17,17.96,17.740000000000002,17.53,17.34,17.13,16.95,16.55,N/A,N/A -2012,10,30,5,30,102090,100890,99720,51.550000000000004,0,4.25,4.42,4.43,4.43,4.42,4.4,4.39,4.37,4.33,43.12,43.61,43.9,44.18,44.45,44.69,44.95,45.19,45.7,18.78,18.28,18.06,17.85,17.64,17.45,17.25,17.06,16.66,N/A,N/A -2012,10,30,6,30,102080,100880,99710,51.94,0,4.12,4.2700000000000005,4.28,4.2700000000000005,4.26,4.25,4.23,4.21,4.17,47.61,48.17,48.5,48.82,49.120000000000005,49.39,49.69,49.96,50.53,18.89,18.400000000000002,18.2,17.990000000000002,17.78,17.59,17.38,17.19,16.8,N/A,N/A -2012,10,30,7,30,102070,100870,99700,52.67,0,3.54,3.66,3.66,3.64,3.63,3.61,3.59,3.5700000000000003,3.52,51.300000000000004,51.86,52.18,52.49,52.78,53.04,53.33,53.59,54.14,18.94,18.47,18.26,18.06,17.85,17.66,17.45,17.26,16.87,N/A,N/A -2012,10,30,8,30,102050,100850,99680,53.93,0,2.94,3.02,3.02,3.0100000000000002,2.99,2.98,2.96,2.94,2.9,54.54,55.31,55.81,56.300000000000004,56.76,57.160000000000004,57.6,58,58.85,19,18.54,18.330000000000002,18.13,17.92,17.73,17.52,17.330000000000002,16.94,N/A,N/A -2012,10,30,9,30,102040,100840,99680,58.1,0,2.91,2.98,2.97,2.95,2.93,2.91,2.89,2.87,2.82,60.36,61.15,61.65,62.13,62.59,63.02,63.46,63.88,64.76,18.990000000000002,18.53,18.330000000000002,18.12,17.91,17.72,17.52,17.330000000000002,16.93,N/A,N/A -2012,10,30,10,30,102020,100820,99660,59.370000000000005,0,2.38,2.42,2.41,2.39,2.37,2.35,2.33,2.31,2.27,61.730000000000004,62.93,63.64,64.32000000000001,64.96000000000001,65.55,66.18,66.75,67.95,19.07,18.62,18.41,18.21,18,17.81,17.6,17.41,17.02,N/A,N/A -2012,10,30,11,30,102000,100810,99640,59.59,0,2.2,2.23,2.22,2.2,2.18,2.16,2.14,2.12,2.08,77.05,77.97,78.52,79.03,79.52,79.97,80.44,80.88,81.8,19.2,18.75,18.55,18.34,18.13,17.94,17.740000000000002,17.54,17.150000000000002,N/A,N/A -2012,10,30,12,30,102000,100800,99640,59.94,0,1.9000000000000001,1.93,1.9100000000000001,1.8900000000000001,1.87,1.85,1.83,1.81,1.77,79.04,80.26,81.08,81.88,82.64,83.34,84.09,84.78,86.26,19.28,18.830000000000002,18.63,18.43,18.22,18.03,17.82,17.63,17.240000000000002,N/A,N/A -2012,10,30,13,30,101990,100800,99640,60.02,0,1.76,1.79,1.77,1.75,1.74,1.72,1.71,1.69,1.67,63.050000000000004,64.78,65.93,67.06,68.16,69.18,70.27,71.26,73.4,19.39,18.95,18.75,18.54,18.34,18.150000000000002,17.94,17.75,17.36,N/A,N/A -2012,10,30,14,30,102010,100810,99650,61.04,0,1.78,1.82,1.81,1.8,1.79,1.78,1.77,1.76,1.74,85.15,87.58,88.98,90.32000000000001,91.54,92.66,93.82000000000001,94.88,97.03,19.6,19.17,18.97,18.76,18.56,18.37,18.16,17.97,17.57,N/A,N/A -2012,10,30,15,30,101990,100790,99630,60.99,0,1.27,1.3,1.3,1.3,1.3,1.3,1.3,1.31,1.32,85.96000000000001,89.26,91.38,93.42,95.3,97.03,98.78,100.37,103.60000000000001,19.73,19.31,19.11,18.900000000000002,18.7,18.51,18.31,18.12,17.72,N/A,N/A -2012,10,30,16,30,101960,100760,99600,62.74,0,2.04,2.06,2.04,2.0100000000000002,1.98,1.96,1.94,1.92,1.8800000000000001,118.5,120.34,121.42,122.5,123.52,124.47,125.48,126.4,128.36,19.89,19.47,19.27,19.06,18.86,18.67,18.46,18.28,17.88,N/A,N/A -2012,10,30,17,30,101920,100720,99570,63.42,0,1.37,1.44,1.46,1.48,1.49,1.5,1.52,1.54,1.56,149.06,151.42000000000002,152.79,154.05,155.18,156.20000000000002,157.19,158.08,159.91,20.01,19.59,19.39,19.19,18.990000000000002,18.79,18.59,18.400000000000002,18.01,N/A,N/A -2012,10,30,18,30,101890,100700,99550,66.21000000000001,0,2.16,2.22,2.21,2.2,2.19,2.18,2.17,2.16,2.15,146.39000000000001,148.5,149.76,150.97,152.08,153.1,154.14000000000001,155.09,157.04,20.16,19.740000000000002,19.55,19.34,19.14,18.95,18.740000000000002,18.56,18.16,N/A,N/A -2012,10,30,19,30,101860,100670,99520,65.89,0,2.02,2.13,2.17,2.19,2.22,2.24,2.2600000000000002,2.2800000000000002,2.32,173.20000000000002,174.18,174.79,175.35,175.87,176.35,176.82,177.25,178.12,20.38,19.97,19.78,19.57,19.37,19.18,18.97,18.79,18.39,N/A,N/A -2012,10,30,20,30,101800,100620,99460,67.15,0,2.59,2.69,2.7,2.71,2.72,2.73,2.73,2.73,2.75,167.95000000000002,170.12,171.41,172.63,173.74,174.73,175.74,176.65,178.49,20.56,20.150000000000002,19.95,19.75,19.55,19.36,19.150000000000002,18.97,18.580000000000002,N/A,N/A -2012,10,30,21,30,101770,100580,99430,67.35,0,2.58,2.73,2.77,2.8000000000000003,2.82,2.84,2.85,2.87,2.89,185.21,186.31,186.8,187.25,187.65,188.01,188.37,188.70000000000002,189.34,20.93,20.53,20.34,20.14,19.94,19.75,19.54,19.36,18.96,N/A,N/A -2012,10,30,22,30,101740,100550,99400,68.29,0,3.16,3.3000000000000003,3.3200000000000003,3.33,3.34,3.34,3.34,3.35,3.36,162.39000000000001,164.07,165.07,166.02,166.9,167.72,168.56,169.33,170.92000000000002,20.94,20.53,20.34,20.14,19.94,19.75,19.55,19.36,18.97,N/A,N/A -2012,10,30,23,30,101720,100540,99390,69.13,0,2.79,2.98,3.04,3.08,3.12,3.16,3.19,3.22,3.27,162.06,163.52,164.36,165.11,165.78,166.4,167,167.55,168.66,21.26,20.87,20.68,20.48,20.28,20.09,19.89,19.7,19.31,N/A,N/A -2012,10,31,0,30,101710,100530,99380,68.95,0,3.59,3.77,3.8000000000000003,3.8200000000000003,3.83,3.84,3.85,3.85,3.86,167.94,170.36,171.65,172.85,173.9,174.86,175.82,176.69,178.38,21.61,21.23,21.04,20.84,20.64,20.45,20.25,20.07,19.68,N/A,N/A -2012,10,31,1,30,101700,100520,99380,68.59,0,3.09,3.31,3.38,3.44,3.5,3.5500000000000003,3.6,3.65,3.74,167.61,169.41,170.46,171.41,172.25,173.02,173.79,174.5,175.84,21.7,21.32,21.14,20.94,20.740000000000002,20.56,20.36,20.17,19.78,N/A,N/A -2012,10,31,2,30,101710,100530,99380,68.31,0,3.62,3.87,3.95,4.01,4.05,4.09,4.13,4.17,4.23,192.04,192.95000000000002,193.44,193.87,194.23000000000002,194.56,194.86,195.13,195.68,22.04,21.67,21.490000000000002,21.28,21.09,20.900000000000002,20.7,20.51,20.12,N/A,N/A -2012,10,31,3,30,101700,100520,99370,67.29,0,4.33,4.62,4.7,4.75,4.8,4.84,4.87,4.9,4.96,208.4,208.85,209.1,209.32,209.53,209.72,209.9,210.06,210.4,22.21,21.84,21.650000000000002,21.45,21.26,21.07,20.86,20.68,20.29,N/A,N/A -2012,10,31,4,30,101680,100500,99360,65.49,0,5.5600000000000005,5.8500000000000005,5.9,5.91,5.91,5.91,5.89,5.88,5.8500000000000005,230.83,230.84,230.91,230.98000000000002,231.05,231.12,231.20000000000002,231.26,231.41,22.5,22.12,21.94,21.740000000000002,21.54,21.36,21.16,20.97,20.580000000000002,N/A,N/A -2012,10,31,5,30,101670,100490,99350,66.71000000000001,0,6.0200000000000005,6.46,6.53,6.55,6.5600000000000005,6.55,6.54,6.5200000000000005,6.48,237.65,237.85,237.81,237.74,237.66,237.58,237.49,237.39000000000001,237.18,22.62,22.25,22.07,21.86,21.67,21.47,21.27,21.09,20.69,N/A,N/A -2012,10,31,6,30,101670,100500,99360,68.27,0,5.13,5.5200000000000005,5.62,5.68,5.72,5.75,5.78,5.8,5.84,223.4,223.75,223.96,224.15,224.31,224.46,224.61,224.74,225.01,22.56,22.23,22.05,21.86,21.66,21.47,21.27,21.09,20.7,N/A,N/A -2012,10,31,7,30,101680,100510,99360,69.55,0,5.03,5.43,5.5200000000000005,5.58,5.62,5.66,5.68,5.7,5.73,228.33,228.69,228.89000000000001,229.07,229.23000000000002,229.37,229.52,229.66,229.93,22.68,22.35,22.18,21.98,21.79,21.6,21.400000000000002,21.21,20.82,N/A,N/A -2012,10,31,8,30,101670,100490,99350,69.59,0,4.09,4.54,4.69,4.8100000000000005,4.91,5,5.08,5.15,5.28,237.42000000000002,238.04,238.24,238.38,238.5,238.61,238.70000000000002,238.77,238.91,22.82,22.51,22.34,22.150000000000002,21.96,21.77,21.57,21.39,21,N/A,N/A -2012,10,31,9,30,101670,100500,99360,70.45,0,3.95,4.24,4.32,4.37,4.41,4.44,4.48,4.5,4.5600000000000005,224.6,225.25,225.69,226.13,226.52,226.89000000000001,227.25,227.58,228.26,22.84,22.53,22.36,22.16,21.97,21.79,21.59,21.400000000000002,21.02,N/A,N/A -2012,10,31,10,30,101670,100500,99360,71.09,0,4.51,4.94,5.0600000000000005,5.15,5.22,5.2700000000000005,5.32,5.36,5.43,245.13,245.73000000000002,245.87,245.97,246.05,246.09,246.12,246.15,246.18,23.05,22.75,22.580000000000002,22.38,22.19,22.01,21.81,21.62,21.23,N/A,N/A -2012,10,31,11,30,101690,100510,99370,72.49,0,4.07,4.3500000000000005,4.4,4.43,4.46,4.48,4.49,4.5,4.53,258.92,257.64,256.74,255.86,255.07,254.32,253.59,252.92000000000002,251.58,22.89,22.580000000000002,22.41,22.22,22.03,21.84,21.650000000000002,21.46,21.07,N/A,N/A -2012,10,31,12,30,101700,100530,99390,72.94,0,3.46,3.67,3.71,3.73,3.75,3.7600000000000002,3.77,3.77,3.7800000000000002,265.48,263.8,262.68,261.53000000000003,260.47,259.49,258.49,257.57,255.81,22.87,22.57,22.400000000000002,22.21,22.02,21.830000000000002,21.64,21.46,21.07,N/A,N/A -2012,10,31,13,30,101710,100540,99400,77.49,0,2.98,3.13,3.15,3.16,3.16,3.16,3.17,3.17,3.2,283,280.93,279.54,278.17,276.86,275.61,274.23,272.95,269.85,22.51,22.19,22.02,21.830000000000002,21.650000000000002,21.47,21.27,21.1,20.72,N/A,N/A -2012,10,31,14,30,101740,100570,99430,77.24,0,2.09,2.22,2.2600000000000002,2.29,2.33,2.36,2.4,2.43,2.5300000000000002,263.78000000000003,262.11,261.09000000000003,260.11,259.19,258.3,257.29,256.33,254.17000000000002,22.5,22.18,22.01,21.82,21.63,21.45,21.25,21.07,20.71,N/A,N/A -2012,10,31,15,30,101740,100570,99430,76.32000000000001,0,1.99,2.09,2.11,2.14,2.15,2.17,2.19,2.21,2.27,268.38,266.4,265.07,263.77,262.53000000000003,261.33,260.09000000000003,258.93,256.23,22.63,22.31,22.14,21.94,21.76,21.57,21.38,21.2,20.82,N/A,N/A -2012,10,31,16,30,101740,100570,99430,77.57000000000001,0,1.96,2.08,2.12,2.15,2.18,2.21,2.25,2.2800000000000002,2.4,228.57,227.57,227.04,226.51,226,225.48000000000002,224.94,224.42000000000002,223.44,22.64,22.32,22.14,21.95,21.76,21.57,21.38,21.2,20.830000000000002,N/A,N/A -2012,10,31,17,30,101710,100540,99400,77.59,0,1.95,2.06,2.09,2.12,2.14,2.17,2.2,2.23,2.36,227.85,227.62,227.53,227.46,227.42000000000002,227.4,227.46,227.54,228.34,22.79,22.47,22.3,22.1,21.91,21.73,21.54,21.36,21,N/A,N/A -2012,10,31,18,30,101690,100520,99380,77.23,0,3.35,3.5500000000000003,3.59,3.61,3.63,3.65,3.67,3.68,3.74,202.47,202.6,202.68,202.76,202.85,202.95000000000002,203.1,203.27,204.63,23.06,22.73,22.55,22.36,22.17,21.990000000000002,21.79,21.61,21.25,N/A,N/A -2012,10,31,19,30,101660,100490,99350,76.77,0,4.3500000000000005,4.63,4.68,4.71,4.72,4.73,4.73,4.73,4.73,202.69,202.96,203.09,203.20000000000002,203.32,203.44,203.58,203.73000000000002,204.12,23.32,23,22.830000000000002,22.63,22.44,22.26,22.06,21.88,21.5,N/A,N/A -2012,10,31,20,30,101630,100460,99320,77.28,0,5.16,5.53,5.59,5.61,5.61,5.6000000000000005,5.59,5.57,5.5200000000000005,200.17000000000002,200.31,200.44,200.57,200.70000000000002,200.82,200.98000000000002,201.13,201.58,23.42,23.11,22.94,22.75,22.56,22.37,22.18,22,21.61,N/A,N/A -2012,10,31,21,30,101610,100440,99310,78.92,0,4.86,5.24,5.32,5.34,5.36,5.36,5.36,5.36,5.34,200,200.28,200.44,200.61,200.78,200.94,201.14000000000001,201.34,201.87,23.41,23.12,22.96,22.76,22.57,22.39,22.19,22.01,21.64,N/A,N/A -2012,10,31,22,30,101590,100420,99290,79.91,0,5.15,5.61,5.71,5.76,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8,200.23000000000002,200.5,200.64000000000001,200.79,200.92000000000002,201.03,201.15,201.27,201.52,23.42,23.14,22.98,22.79,22.6,22.42,22.22,22.04,21.66,N/A,N/A -2012,10,31,23,30,101590,100420,99290,81.61,0,4.99,5.42,5.51,5.5600000000000005,5.58,5.6000000000000005,5.61,5.61,5.61,206.70000000000002,206.93,207.06,207.20000000000002,207.32,207.44,207.57,207.70000000000002,208.02,23.41,23.13,22.97,22.78,22.59,22.41,22.21,22.03,21.650000000000002,N/A,N/A -2012,11,1,0,30,101600,100430,99300,82.33,0,5.99,6.55,6.69,6.76,6.8100000000000005,6.8500000000000005,6.87,6.88,6.9,209.02,209.23000000000002,209.36,209.49,209.61,209.73000000000002,209.85,209.96,210.20000000000002,23.490000000000002,23.22,23.06,22.87,22.68,22.5,22.3,22.12,21.740000000000002,N/A,N/A -2012,11,1,1,30,101620,100450,99320,83.35000000000001,0,6.1000000000000005,6.66,6.79,6.86,6.91,6.93,6.94,6.95,6.95,213.79,213.95000000000002,214.03,214.11,214.20000000000002,214.28,214.38,214.47,214.71,23.53,23.27,23.11,22.92,22.73,22.55,22.36,22.18,21.8,N/A,N/A -2012,11,1,2,30,101630,100470,99330,84.67,0,6.19,6.76,6.9,6.97,7.0200000000000005,7.05,7.0600000000000005,7.07,7.07,219.08,219.28,219.37,219.45000000000002,219.53,219.6,219.68,219.74,219.91,23.55,23.29,23.13,22.94,22.75,22.57,22.38,22.19,21.82,N/A,N/A -2012,11,1,3,30,101640,100470,99340,85.81,0,6.2700000000000005,6.86,7.01,7.07,7.12,7.16,7.18,7.2,7.21,222.72,222.85,222.91,222.99,223.05,223.11,223.18,223.24,223.39000000000001,23.56,23.29,23.13,22.94,22.76,22.57,22.38,22.2,21.82,N/A,N/A -2012,11,1,4,30,101640,100470,99340,86.24,0,6.37,6.98,7.12,7.2,7.24,7.2700000000000005,7.29,7.3100000000000005,7.32,224.98000000000002,225.04,225.11,225.17000000000002,225.24,225.31,225.39000000000001,225.46,225.65,23.59,23.32,23.16,22.97,22.79,22.6,22.41,22.23,21.85,N/A,N/A -2012,11,1,5,30,101650,100480,99350,87.25,0,6.0600000000000005,6.62,6.74,6.8100000000000005,6.86,6.9,6.92,6.93,6.95,228.37,228.47,228.53,228.58,228.64000000000001,228.70000000000002,228.77,228.84,229.02,23.59,23.330000000000002,23.17,22.98,22.79,22.61,22.42,22.240000000000002,21.86,N/A,N/A -2012,11,1,6,30,101670,100500,99370,88.43,0,6.0600000000000005,6.640000000000001,6.78,6.8500000000000005,6.9,6.93,6.95,6.97,6.99,230.68,230.82,230.89000000000001,230.96,231.03,231.1,231.17000000000002,231.23000000000002,231.39000000000001,23.63,23.35,23.19,22.990000000000002,22.81,22.62,22.43,22.240000000000002,21.86,N/A,N/A -2012,11,1,7,30,101710,100540,99410,88.92,0,5.88,6.42,6.5600000000000005,6.63,6.68,6.71,6.73,6.75,6.78,235.93,236.05,236.1,236.17000000000002,236.22,236.28,236.33,236.4,236.54,23.69,23.42,23.26,23.07,22.88,22.69,22.5,22.32,21.93,N/A,N/A -2012,11,1,8,30,101710,100540,99410,89.74,0,5.83,6.390000000000001,6.54,6.62,6.68,6.72,6.75,6.7700000000000005,6.8,239.32,239.41,239.45000000000002,239.51,239.56,239.61,239.66,239.71,239.82,23.72,23.45,23.29,23.1,22.91,22.72,22.53,22.35,21.97,N/A,N/A -2012,11,1,9,30,101710,100540,99410,89.52,0,5.41,5.92,6.05,6.12,6.17,6.19,6.22,6.23,6.26,245.35,245.43,245.46,245.5,245.54,245.57,245.6,245.63,245.71,23.71,23.44,23.28,23.080000000000002,22.900000000000002,22.71,22.52,22.34,21.95,N/A,N/A -2012,11,1,10,30,101730,100560,99430,89.52,0,5.25,5.73,5.8500000000000005,5.91,5.96,5.98,6,6.01,6.0200000000000005,243.46,243.65,243.78,243.94,244.08,244.23000000000002,244.4,244.56,244.97,23.79,23.52,23.35,23.16,22.97,22.78,22.580000000000002,22.39,21.990000000000002,N/A,N/A -2012,11,1,11,30,101740,100580,99440,89.05,0,4.47,4.91,5.03,5.1000000000000005,5.15,5.19,5.23,5.26,5.3100000000000005,249.21,249.61,249.92000000000002,250.22,250.53,250.83,251.14000000000001,251.45000000000002,252.16,23.73,23.44,23.27,23.06,22.87,22.67,22.46,22.26,21.84,N/A,N/A -2012,11,1,12,30,101750,100570,99440,94.45,0,3.94,4.0600000000000005,4.07,4.1,4.14,4.19,4.24,4.28,4.41,269.05,267.92,265.29,259.39,255.9,253.86,252.41,251.23000000000002,249.58,23.04,22.78,22.68,22.62,22.55,22.46,22.31,22.150000000000002,21.8,N/A,N/A -2012,11,1,13,30,101780,100600,99460,98.76,0,3.58,3.63,3.6,3.58,3.62,3.69,3.87,4.0600000000000005,4.3100000000000005,292.12,291.32,288.99,283.55,277.64,271.36,264.07,256.86,250.1,22.21,21.900000000000002,21.77,21.64,21.54,21.44,21.54,21.69,21.59,N/A,N/A -2012,11,1,14,30,101800,100620,99480,99.33,0,3.5,3.65,3.68,3.69,3.9,4.26,4.53,4.78,4.8100000000000005,286.89,285.83,285.07,284.13,280.81,275.67,270.19,264.91,260.07,21.87,21.57,21.43,21.28,21.16,21.080000000000002,21.17,21.28,21.19,N/A,N/A -2012,11,1,15,30,101800,100620,99480,99.37,0,3.35,3.49,3.5100000000000002,3.52,3.56,3.61,3.86,4.17,4.55,296.81,294.40000000000003,292.68,290.61,287.53000000000003,283.86,276.45,268.12,261.84000000000003,21.63,21.32,21.18,21.03,20.85,20.66,20.650000000000002,20.69,21.12,N/A,N/A -2012,11,1,16,30,101790,100610,99470,97.64,0,3.11,3.24,3.25,3.25,3.25,3.2600000000000002,3.27,3.29,3.5300000000000002,278.01,278.24,278.39,278.53000000000003,278.49,278.37,277.18,275.8,269.23,21.97,21.63,21.46,21.27,21.13,21.01,20.85,20.69,20.69,N/A,N/A -2012,11,1,17,30,101770,100590,99460,97.59,0.5,2.06,2.1,2.08,2.06,2.0300000000000002,2.0100000000000002,2.09,2.18,3.0700000000000003,287.29,285.18,283.79,282.13,280.15000000000003,278.02,272.93,267.2,255.17000000000002,22.02,21.69,21.53,21.36,21.22,21.1,20.93,20.77,20.8,N/A,N/A -2012,11,1,18,30,101750,100570,99440,95.97,0,2.61,2.59,2.5,2.38,2.25,2.15,2.17,2.21,2.72,295.3,293.65000000000003,292.24,290.16,286.84000000000003,283.03000000000003,280.27,277.93,262.5,22.19,21.87,21.72,21.57,21.46,21.36,21.23,21.09,20.98,N/A,N/A -2012,11,1,19,30,101720,100550,99410,95.28,0,1.8900000000000001,1.87,1.82,1.76,1.71,1.67,1.6500000000000001,1.6400000000000001,1.98,268.28000000000003,263.86,260.75,256.94,251.74,245.85,237.48000000000002,229.38,239.52,22.330000000000002,22.01,21.84,21.68,21.54,21.42,21.31,21.2,20.98,N/A,N/A -2012,11,1,20,30,101700,100530,99390,95.68,0,1.3900000000000001,1.43,1.44,1.45,1.5,1.57,1.87,2.29,3.0700000000000003,191.83,192.92000000000002,193.85,195.21,197.19,199.69,205.22,212.26,220.34,22.43,22.09,21.92,21.740000000000002,21.580000000000002,21.41,21.32,21.25,21.55,N/A,N/A -2012,11,1,21,30,101670,100500,99360,93.82000000000001,0,3.02,3.15,3.15,3.14,3.13,3.11,3.11,3.1,3.2800000000000002,180.27,180.56,180.77,181.03,181.4,181.86,183.72,185.84,205.38,22.86,22.51,22.34,22.150000000000002,21.97,21.8,21.63,21.48,21.73,N/A,N/A -2012,11,1,22,30,101660,100490,99350,96.05,0,4.36,4.54,4.54,4.5,4.47,4.43,4.43,4.42,4.09,174.08,174.28,174.49,174.86,175.70000000000002,176.86,181.1,186,195.99,22.57,22.23,22.05,21.86,21.68,21.53,21.45,21.42,21.97,N/A,N/A -2012,11,1,23,30,101630,100460,99330,94.54,0,4.25,4.47,4.49,4.51,4.61,4.7700000000000005,5.12,5.5,5.34,181.43,181.58,181.74,181.97,182.65,183.62,185.79,188.27,192.71,22.81,22.490000000000002,22.330000000000002,22.150000000000002,22.02,21.91,21.94,22.02,22.04,N/A,N/A -2012,11,2,0,30,101670,100500,99370,91.01,0,5.63,6.13,6.26,6.34,6.390000000000001,6.43,6.46,6.49,6.54,194.21,194.82,195.12,195.41,195.70000000000002,196.01,196.34,196.66,197.45000000000002,23.45,23.14,22.97,22.76,22.57,22.37,22.16,21.97,21.52,N/A,N/A -2012,11,2,1,30,101660,100490,99360,90.06,0,5.47,5.95,6.05,6.1000000000000005,6.13,6.15,6.15,6.16,6.15,203.20000000000002,203.42000000000002,203.57,203.74,203.91,204.08,204.28,204.47,204.97,23.56,23.27,23.1,22.900000000000002,22.71,22.52,22.330000000000002,22.14,21.75,N/A,N/A -2012,11,2,2,30,101660,100490,99360,90.08,0,5.17,5.64,5.75,5.8100000000000005,5.8500000000000005,5.88,5.9,5.92,5.96,198.78,199.14000000000001,199.36,199.59,199.8,200,200.21,200.41,200.9,23.63,23.34,23.18,22.990000000000002,22.8,22.62,22.43,22.240000000000002,21.86,N/A,N/A -2012,11,2,3,30,101660,100490,99360,90.55,0,5.61,6.12,6.23,6.28,6.32,6.34,6.36,6.38,6.4,197.01,197.18,197.31,197.46,197.61,197.77,197.94,198.12,198.56,23.64,23.37,23.2,23.01,22.830000000000002,22.64,22.45,22.26,21.89,N/A,N/A -2012,11,2,4,30,101640,100480,99340,89.89,0,5.12,5.58,5.69,5.74,5.78,5.8,5.82,5.84,5.88,198.6,198.66,198.74,198.84,198.95000000000002,199.07,199.23000000000002,199.38,199.85,23.68,23.41,23.25,23.06,22.87,22.69,22.490000000000002,22.31,21.94,N/A,N/A -2012,11,2,5,30,101650,100480,99350,89.52,0,6.05,6.61,6.74,6.8100000000000005,6.86,6.890000000000001,6.91,6.92,6.93,201.22,201.29,201.34,201.41,201.48000000000002,201.56,201.66,201.75,202,23.740000000000002,23.47,23.31,23.12,22.93,22.75,22.55,22.37,21.990000000000002,N/A,N/A -2012,11,2,6,30,101660,100490,99360,89.88,0,5.8500000000000005,6.38,6.51,6.57,6.61,6.63,6.65,6.66,6.66,205.13,205.22,205.29,205.37,205.45000000000002,205.52,205.61,205.69,205.92000000000002,23.76,23.490000000000002,23.330000000000002,23.13,22.95,22.76,22.57,22.39,22.01,N/A,N/A -2012,11,2,7,30,101670,100500,99370,88.23,0,5.64,6.16,6.28,6.3500000000000005,6.390000000000001,6.42,6.44,6.45,6.47,211.77,211.87,211.93,211.99,212.06,212.12,212.19,212.25,212.4,23.740000000000002,23.46,23.3,23.11,22.92,22.740000000000002,22.54,22.36,21.98,N/A,N/A -2012,11,2,8,30,101670,100510,99370,89.35000000000001,0,6.13,6.73,6.87,6.96,7.0200000000000005,7.0600000000000005,7.09,7.12,7.15,215.5,215.57,215.62,215.67000000000002,215.72,215.76,215.79,215.82,215.91,23.73,23.45,23.28,23.09,22.900000000000002,22.72,22.52,22.34,21.96,N/A,N/A -2012,11,2,9,30,101680,100510,99380,88.71000000000001,0,6.29,6.91,7.0600000000000005,7.15,7.22,7.26,7.3,7.32,7.36,216.66,216.77,216.82,216.88,216.93,216.99,217.05,217.1,217.22,23.78,23.51,23.35,23.16,22.97,22.78,22.59,22.41,22.02,N/A,N/A -2012,11,2,10,30,101690,100520,99390,87.15,0,5.99,6.58,6.73,6.83,6.9,6.95,6.99,7.0200000000000005,7.08,223.9,224.06,224.14000000000001,224.21,224.25,224.27,224.27,224.26,224.18,23.91,23.66,23.5,23.32,23.14,22.96,22.77,22.59,22.22,N/A,N/A -2012,11,2,11,30,101690,100520,99390,86.68,0,5.89,6.48,6.62,6.71,6.78,6.82,6.86,6.88,6.93,224.02,224.12,224.17000000000002,224.21,224.24,224.28,224.31,224.35,224.42000000000002,23.91,23.650000000000002,23.490000000000002,23.3,23.12,22.94,22.740000000000002,22.56,22.19,N/A,N/A -2012,11,2,12,30,101710,100540,99410,86.94,0,6.5200000000000005,7.17,7.34,7.44,7.51,7.5600000000000005,7.6000000000000005,7.62,7.65,223.72,223.77,223.79,223.81,223.83,223.84,223.84,223.85,223.85,23.89,23.63,23.47,23.28,23.09,22.91,22.72,22.53,22.150000000000002,N/A,N/A -2012,11,2,13,30,101720,100550,99420,86.94,0,4.88,5.37,5.49,5.57,5.64,5.69,5.74,5.78,5.88,224.16,223.87,223.78,223.67000000000002,223.56,223.45000000000002,223.32,223.19,222.89000000000001,23.89,23.62,23.46,23.28,23.09,22.91,22.72,22.55,22.17,N/A,N/A -2012,11,2,14,30,101740,100580,99440,85.17,0,4.37,4.82,4.93,5.0200000000000005,5.09,5.15,5.2,5.25,5.3500000000000005,224.86,224.85,224.86,224.85,224.83,224.8,224.77,224.73000000000002,224.63,23.96,23.7,23.54,23.36,23.17,22.990000000000002,22.8,22.62,22.240000000000002,N/A,N/A -2012,11,2,15,30,101760,100590,99460,85.55,0,5.01,5.46,5.57,5.63,5.66,5.69,5.7,5.71,5.72,222.99,223.15,223.25,223.34,223.41,223.47,223.53,223.58,223.67000000000002,23.96,23.7,23.54,23.35,23.16,22.98,22.78,22.6,22.22,N/A,N/A -2012,11,2,16,30,101760,100590,99460,85.06,0,4.89,5.33,5.44,5.51,5.55,5.59,5.62,5.64,5.68,221.16,221.34,221.4,221.45000000000002,221.49,221.51,221.54,221.56,221.57,23.990000000000002,23.72,23.56,23.37,23.18,22.990000000000002,22.8,22.62,22.23,N/A,N/A -2012,11,2,17,30,101740,100570,99440,84.65,0,4.08,4.42,4.49,4.5200000000000005,4.55,4.57,4.57,4.58,4.59,211.6,212.11,212.5,212.9,213.28,213.64000000000001,214.01,214.35,215.07,24.1,23.81,23.650000000000002,23.45,23.27,23.080000000000002,22.89,22.7,22.32,N/A,N/A -2012,11,2,18,30,101730,100560,99430,81.32000000000001,0,4.67,5.13,5.25,5.3100000000000005,5.36,5.39,5.41,5.43,5.46,206.65,207.27,207.63,207.97,208.3,208.62,208.96,209.27,209.98000000000002,24.39,24.13,23.97,23.78,23.6,23.42,23.23,23.05,22.67,N/A,N/A -2012,11,2,19,30,101710,100540,99410,83.61,0,4.3500000000000005,4.68,4.73,4.75,4.75,4.76,4.7700000000000005,4.78,4.88,176.31,176.24,176.31,176.37,176.46,176.54,176.71,176.9,177.75,24.23,23.94,23.78,23.59,23.400000000000002,23.22,23.03,22.86,22.52,N/A,N/A -2012,11,2,20,30,101680,100510,99380,84.18,0,5.15,5.61,5.71,5.7700000000000005,5.8,5.83,5.84,5.8500000000000005,5.8500000000000005,179.66,180.04,180.28,180.52,180.75,180.96,181.19,181.39000000000001,181.87,24.3,24.03,23.87,23.68,23.490000000000002,23.31,23.12,22.94,22.55,N/A,N/A -2012,11,2,21,30,101670,100500,99380,83.71000000000001,0,5.58,6.1000000000000005,6.23,6.3100000000000005,6.36,6.4,6.43,6.46,6.51,173.93,174.45000000000002,174.79,175.16,175.52,175.86,176.23,176.58,177.34,24.3,24.060000000000002,23.91,23.73,23.55,23.37,23.18,23,22.63,N/A,N/A -2012,11,2,22,30,101670,100500,99370,84.88,0,5.48,6.09,6.25,6.37,6.46,6.5200000000000005,6.57,6.62,6.67,173.56,174.19,174.61,175.1,175.58,176.06,176.56,177.03,178.01,24.27,24.060000000000002,23.92,23.740000000000002,23.57,23.39,23.21,23.03,22.66,N/A,N/A -2012,11,2,23,30,101670,100500,99370,85.43,0,5.3100000000000005,5.93,6.12,6.24,6.34,6.41,6.45,6.5,6.5600000000000005,176.79,176.93,177.01,177.01,176.97,176.9,176.75,176.58,176.03,24.11,23.900000000000002,23.76,23.59,23.42,23.240000000000002,23.06,22.89,22.52,N/A,N/A -2012,11,3,0,30,101690,100520,99390,82.11,0,6.140000000000001,6.92,7.17,7.3500000000000005,7.48,7.57,7.63,7.68,7.78,180.6,180.55,180.53,180.49,180.44,180.4,180.34,180.27,180.24,24.18,23.98,23.85,23.69,23.53,23.35,23.17,23,22.64,N/A,N/A -2012,11,3,1,30,101680,100510,99380,81.96000000000001,0,6.75,7.42,7.58,7.68,7.74,7.78,7.8100000000000005,7.82,7.83,173.20000000000002,173.4,173.51,173.62,173.72,173.81,173.9,173.99,174.18,24.11,23.88,23.73,23.55,23.37,23.2,23,22.830000000000002,22.45,N/A,N/A -2012,11,3,2,30,101680,100510,99380,80.69,0,7.1000000000000005,7.82,7.98,8.08,8.14,8.18,8.21,8.22,8.23,171.08,171.28,171.39000000000001,171.5,171.6,171.71,171.81,171.91,172.13,24.09,23.85,23.71,23.53,23.34,23.16,22.98,22.8,22.42,N/A,N/A -2012,11,3,3,30,101680,100510,99380,82.60000000000001,0,7.34,8.09,8.28,8.39,8.46,8.51,8.53,8.55,8.56,169.78,170,170.12,170.25,170.38,170.51,170.63,170.74,171.01,23.97,23.72,23.57,23.38,23.2,23.02,22.830000000000002,22.650000000000002,22.27,N/A,N/A -2012,11,3,4,30,101680,100520,99380,81.03,0,7.7700000000000005,8.58,8.78,8.91,8.98,9.040000000000001,9.08,9.11,9.13,171.9,172.01,172.07,172.12,172.17000000000002,172.22,172.27,172.3,172.39000000000001,23.990000000000002,23.740000000000002,23.59,23.41,23.22,23.04,22.85,22.67,22.3,N/A,N/A -2012,11,3,5,30,101680,100510,99370,78.85000000000001,0,7.68,8.48,8.68,8.8,8.88,8.950000000000001,8.99,9.03,9.09,175.67000000000002,175.63,175.65,175.68,175.71,175.73,175.76,175.79,175.86,24.05,23.8,23.650000000000002,23.46,23.28,23.1,22.91,22.73,22.35,N/A,N/A -2012,11,3,6,30,101700,100530,99390,77.82000000000001,0,8.13,9.01,9.24,9.38,9.49,9.56,9.620000000000001,9.66,9.73,179.34,179.52,179.61,179.69,179.76,179.82,179.88,179.95000000000002,180.05,24.150000000000002,23.91,23.75,23.57,23.38,23.2,23.01,22.830000000000002,22.45,N/A,N/A -2012,11,3,7,30,101720,100550,99420,76.54,0,7.9,8.77,8.99,9.14,9.24,9.32,9.38,9.43,9.49,182.68,182.74,182.75,182.74,182.74,182.74,182.74,182.73,182.73,24.3,24.060000000000002,23.91,23.73,23.55,23.37,23.18,23,22.62,N/A,N/A -2012,11,3,8,30,101730,100560,99430,76.33,0,7.68,8.51,8.73,8.88,8.98,9.06,9.13,9.18,9.25,181.97,181.79,181.74,181.70000000000002,181.67000000000002,181.66,181.65,181.65,181.66,24.37,24.14,23.98,23.8,23.62,23.43,23.240000000000002,23.06,22.68,N/A,N/A -2012,11,3,9,30,101750,100580,99450,77.01,0,8.22,9.08,9.28,9.39,9.46,9.5,9.52,9.53,9.52,182.61,183.08,183.31,183.52,183.72,183.91,184.09,184.26,184.61,24.37,24.150000000000002,24.01,23.830000000000002,23.650000000000002,23.47,23.28,23.1,22.72,N/A,N/A -2012,11,3,10,30,101760,100600,99460,74.94,0,7.1000000000000005,7.82,8,8.120000000000001,8.2,8.26,8.3,8.34,8.39,189.3,189.19,189.18,189.18,189.17000000000002,189.16,189.16,189.16,189.15,24.490000000000002,24.28,24.13,23.96,23.78,23.6,23.41,23.240000000000002,22.87,N/A,N/A -2012,11,3,11,30,101790,100630,99490,78.35000000000001,0,6.96,7.71,7.91,8.06,8.16,8.25,8.31,8.36,8.44,185.12,185.56,185.72,185.85,185.96,186.05,186.12,186.19,186.27,24.42,24.2,24.05,23.87,23.7,23.52,23.330000000000002,23.16,22.78,N/A,N/A -2012,11,3,12,30,101820,100650,99520,78.88,0,5.72,6.42,6.65,6.79,6.91,7.01,7.08,7.140000000000001,7.22,183.97,183.8,183.72,183.66,183.6,183.55,183.5,183.46,183.37,24.44,24.22,24.080000000000002,23.91,23.75,23.580000000000002,23.39,23.22,22.85,N/A,N/A -2012,11,3,13,30,101850,100680,99550,76.14,0,6.34,7.08,7.29,7.390000000000001,7.46,7.5200000000000005,7.54,7.54,7.53,186.89000000000001,187.04,187.14000000000001,187.3,187.46,187.63,187.79,187.93,188.21,24.55,24.37,24.25,24.07,23.91,23.740000000000002,23.55,23.38,23,N/A,N/A -2012,11,3,14,30,101890,100720,99590,78.66,0,4.63,5.18,5.36,5.48,5.58,5.67,5.74,5.79,5.88,186.39000000000001,186.18,186.14000000000001,186.20000000000002,186.22,186.21,186.20000000000002,186.19,186.17000000000002,24.46,24.240000000000002,24.1,23.93,23.77,23.6,23.41,23.240000000000002,22.87,N/A,N/A -2012,11,3,15,30,101900,100730,99600,81.7,0,3.96,4.29,4.38,4.49,4.58,4.65,4.72,4.78,4.9,167.46,168.19,168.76,169.66,170.36,170.94,171.66,172.38,173.75,24.400000000000002,24.18,24.05,23.89,23.73,23.56,23.38,23.22,22.87,N/A,N/A -2012,11,3,16,30,101880,100720,99580,78.42,0,4.07,4.47,4.57,4.65,4.7,4.75,4.78,4.8100000000000005,4.87,174.53,174.98,175.3,175.63,175.95000000000002,176.25,176.59,176.91,177.69,24.57,24.34,24.2,24.02,23.84,23.67,23.48,23.31,22.94,N/A,N/A -2012,11,3,17,30,101870,100700,99570,75.18,0,3.87,4.2,4.2700000000000005,4.3100000000000005,4.34,4.36,4.38,4.39,4.41,176.19,176.25,176.34,176.42000000000002,176.5,176.57,176.63,176.69,176.81,24.740000000000002,24.5,24.34,24.150000000000002,23.97,23.79,23.6,23.42,23.04,N/A,N/A -2012,11,3,18,30,101840,100670,99540,78.34,0,3.85,4.14,4.2,4.23,4.24,4.25,4.25,4.25,4.25,165.71,165.92000000000002,166.06,166.21,166.34,166.46,166.58,166.70000000000002,166.93,24.63,24.36,24.2,24.01,23.82,23.63,23.44,23.26,22.88,N/A,N/A -2012,11,3,19,30,101830,100670,99540,79.39,0,5.0200000000000005,5.47,5.5600000000000005,5.61,5.64,5.66,5.68,5.69,5.7,165.53,165.74,165.88,166.03,166.16,166.28,166.42000000000002,166.54,166.81,24.63,24.36,24.19,24,23.81,23.63,23.43,23.25,22.87,N/A,N/A -2012,11,3,20,30,101820,100650,99510,82,0,7.55,8.13,8.26,8.36,8.55,8.83,9.16,9.48,9.61,181.66,180.98,180.74,180.46,180.02,179.43,178.97,178.56,179.86,22.830000000000002,22.5,22.34,22.17,22.03,21.92,21.89,21.89,21.98,N/A,N/A -2012,11,3,21,30,101810,100640,99510,72.61,0,4.5200000000000005,4.8,4.88,4.98,4.98,4.87,4.68,4.47,4.13,171.22,171.08,170.69,170.02,169.79,169.93,172.20000000000002,175.02,183.78,23.42,23.17,23.07,23.01,22.98,22.97,22.95,22.94,23.25,N/A,N/A -2012,11,3,22,30,101870,100700,99560,77.96000000000001,0,2.62,2.6,2.54,2.47,2.43,2.41,2.4,2.41,2.46,274,269.78000000000003,266.31,261.72,257.01,251.84,246.84,242.22,233.64000000000001,23.22,22.94,22.8,22.63,22.48,22.330000000000002,22.17,22.02,21.69,N/A,N/A -2012,11,3,23,30,101880,100700,99560,80.14,0,1.72,1.7,1.68,1.6500000000000001,1.6300000000000001,1.61,1.68,1.78,2.59,270.18,266.64,263.7,259.86,255.29,249.77,241.45000000000002,232.23000000000002,213.83,22.67,22.35,22.19,22.01,21.830000000000002,21.67,21.51,21.36,21.09,N/A,N/A -2012,11,4,0,30,101810,100630,99500,82.17,0,2.08,2.2600000000000002,2.37,2.5300000000000002,2.84,3.27,3.68,4.07,4.43,237.89000000000001,236.70000000000002,235.47,233.49,229.99,225.18,221.54,218.31,213.25,22.78,22.46,22.3,22.13,21.98,21.85,21.73,21.63,21.36,N/A,N/A -2012,11,4,1,30,101810,100640,99500,81.82000000000001,0,1.04,1.05,1.04,1.03,1.02,1.02,1.31,1.77,2.3000000000000003,290.53000000000003,287.08,284.42,280.6,274.35,266.76,244.52,212.69,202.94,22.84,22.52,22.35,22.16,21.98,21.8,21.7,21.62,21.43,N/A,N/A -2012,11,4,2,30,101850,100680,99540,82.94,0,1.8800000000000001,1.86,1.8,1.72,1.6500000000000001,1.58,1.5,1.42,1.18,48.31,50.77,52.53,54.68,57.15,59.92,63.84,67.74,101.02,23,22.69,22.53,22.330000000000002,22.150000000000002,21.97,21.79,21.61,21.29,N/A,N/A -2012,11,4,3,30,101830,100650,99510,84.54,0,2.98,3.0100000000000002,2.97,2.9,2.83,2.7600000000000002,2.69,2.62,2.45,72.81,74.92,76.32000000000001,78,79.78,81.66,84.08,86.44,94.37,22.92,22.6,22.44,22.25,22.06,21.88,21.7,21.53,21.18,N/A,N/A -2012,11,4,4,30,101820,100650,99510,86.37,0,2.73,2.84,2.84,2.84,2.82,2.81,2.7800000000000002,2.7600000000000002,2.66,90.67,90.93,91.11,91.34,91.66,92.06,92.46000000000001,92.84,95.33,22.84,22.51,22.34,22.14,21.95,21.76,21.57,21.39,21.02,N/A,N/A -2012,11,4,5,30,101800,100620,99490,86.12,0,2.17,2.27,2.29,2.31,2.31,2.32,2.33,2.33,2.4,132.95,134.38,135.27,136.25,137.23,138.25,139.51,140.79,147.02,22.98,22.66,22.490000000000002,22.3,22.11,21.92,21.73,21.55,21.2,N/A,N/A -2012,11,4,6,30,101790,100620,99480,84.78,0,3.61,3.8000000000000003,3.84,3.85,3.85,3.85,3.85,3.84,3.8200000000000003,156.66,157.05,157.26,157.48,157.70000000000002,157.93,158.21,158.47,159.25,23.11,22.78,22.61,22.41,22.22,22.04,21.84,21.66,21.28,N/A,N/A -2012,11,4,7,30,101810,100640,99500,87.08,0,3.45,3.65,3.68,3.7,3.7,3.71,3.71,3.71,3.73,152.70000000000002,153.07,153.29,153.56,153.86,154.20000000000002,154.69,155.20000000000002,158.16,23.14,22.82,22.650000000000002,22.45,22.27,22.080000000000002,21.89,21.71,21.36,N/A,N/A -2012,11,4,8,30,101830,100660,99520,87.64,0,3.62,3.84,3.89,3.92,3.94,3.96,3.97,3.99,4.05,180.46,180.70000000000002,180.79,180.88,180.99,181.12,181.3,181.48,182.23,23.29,22.98,22.81,22.61,22.42,22.23,22.04,21.86,21.490000000000002,N/A,N/A -2012,11,4,9,30,101840,100670,99530,85.74,0,4.07,4.36,4.42,4.44,4.46,4.46,4.49,4.5200000000000005,4.59,217.54,217.5,217.46,217.41,217.36,217.31,217.23000000000002,217.16,218.48000000000002,23.67,23.39,23.23,23.04,22.87,22.69,22.53,22.38,22.150000000000002,N/A,N/A -2012,11,4,10,30,101860,100690,99550,86.65,0,3.09,3.27,3.29,3.29,3.29,3.29,3.29,3.29,3.38,220.63,220.96,221.11,221.33,221.57,221.86,222.3,222.78,225.85,23.61,23.32,23.16,22.97,22.78,22.6,22.41,22.240000000000002,21.97,N/A,N/A -2012,11,4,11,30,101870,100700,99560,86.76,0,2.72,2.88,2.91,2.91,2.92,2.92,2.92,2.93,2.97,214.96,215.4,215.64000000000001,215.95000000000002,216.28,216.66,217.15,217.66,220.28,23.56,23.27,23.1,22.91,22.72,22.53,22.34,22.16,21.79,N/A,N/A -2012,11,4,12,30,101870,100690,99560,85.17,0,3.0100000000000002,3.2,3.24,3.27,3.2800000000000002,3.3000000000000003,3.3200000000000003,3.33,3.38,234.07,234.33,234.45000000000002,234.58,234.70000000000002,234.84,234.99,235.15,235.72,23.57,23.28,23.11,22.91,22.73,22.54,22.34,22.16,21.78,N/A,N/A -2012,11,4,13,30,101890,100720,99580,84.92,0,3.16,3.43,3.5100000000000002,3.56,3.61,3.65,3.7,3.74,3.83,254.03,252.97,252.33,251.74,251.23000000000002,250.75,250.29,249.86,248.92000000000002,23.66,23.38,23.21,23.02,22.830000000000002,22.64,22.45,22.27,21.89,N/A,N/A -2012,11,4,14,30,101930,100760,99620,86.46000000000001,0,2.61,2.68,2.67,2.64,2.61,2.58,2.56,2.5500000000000003,2.56,295.62,293.74,291.88,289.53000000000003,287.28000000000003,284.94,281.87,278.65000000000003,272.23,23.5,23.21,23.06,22.86,22.69,22.51,22.330000000000002,22.150000000000002,21.81,N/A,N/A -2012,11,4,15,30,101920,100750,99610,94.58,0,4.28,4.41,4.39,4.33,4.2700000000000005,4.19,4.08,3.96,3.48,349.79,349.18,348.6,347.86,347,346,343.99,341.8,333.02,22.51,22.17,22,21.81,21.64,21.48,21.34,21.21,21.17,N/A,N/A -2012,11,4,16,30,101910,100730,99590,99.29,0,4.46,4.59,4.5600000000000005,4.49,4.39,4.28,4.0600000000000005,3.81,3.23,348.16,348.06,348.05,348.01,347.95,347.88,346.35,344.5,336.03000000000003,21.31,20.95,20.8,20.66,20.51,20.36,20.17,19.97,20.77,N/A,N/A -2012,11,4,17,30,101880,100700,99560,94.72,0,2.67,2.73,2.73,2.7,2.68,2.65,2.63,2.62,2.75,349.93,350.04,350.06,350.07,350,349.87,348.61,347.04,333,21.52,21.16,20.98,20.78,20.6,20.42,20.240000000000002,20.06,20.490000000000002,N/A,N/A -2012,11,4,18,30,101850,100680,99530,92.75,0,1.51,1.57,1.59,1.62,1.6500000000000001,1.7,1.87,2.08,3.35,359.35,358.11,357.18,356.01,354.63,352.96,350.33,347.27,341.72,21.85,21.5,21.330000000000002,21.14,20.97,20.8,20.68,20.59,21.09,N/A,N/A -2012,11,4,19,30,101810,100640,99500,89,0,0.52,0.54,0.55,0.56,0.59,0.63,0.8,1.07,2.0100000000000002,240.16,247.29,252.57,259.3,267.39,277.61,291.76,310.58,329.36,22.400000000000002,22.07,21.900000000000002,21.71,21.54,21.38,21.27,21.18,21.490000000000002,N/A,N/A -2012,11,4,20,30,101800,100620,99490,82.79,0,0.8300000000000001,0.8300000000000001,0.81,0.79,0.78,0.78,0.87,1.02,2.23,216.04,220.96,224.58,229.76,236.75,245.79,261.81,282.12,314.84000000000003,22.96,22.63,22.47,22.28,22.1,21.93,21.79,21.67,21.77,N/A,N/A -2012,11,4,21,30,101770,100600,99460,82.13,0,1.8,1.84,1.84,1.83,1.82,1.81,1.82,1.83,2.57,229.72,231.1,232.05,233.31,234.75,236.35,239.76,243.54,300.22,23.22,22.89,22.72,22.53,22.35,22.18,22.03,21.89,22.150000000000002,N/A,N/A -2012,11,4,22,30,101760,100590,99460,75.2,0,2.85,2.96,2.96,2.93,2.89,2.83,2.67,2.49,1.54,194.8,194.94,195.12,195.44,196.02,196.88,199.74,203.04,249.15,23.67,23.37,23.2,23,22.82,22.63,22.45,22.29,22.19,N/A,N/A -2012,11,4,23,30,101780,100610,99470,75.7,0,2.73,2.83,2.8000000000000003,2.75,2.62,2.42,1.84,1.32,0.87,190.07,190.71,191.11,191.63,192.77,194.49,204.38,213.87,248.02,23.740000000000002,23.45,23.29,23.1,22.95,22.81,22.77,22.75,22.57,N/A,N/A -2012,11,5,0,30,101800,100630,99500,79.42,0,3.06,3.22,3.22,3.19,3.16,3.13,3.06,2.98,2.35,212.73000000000002,213.27,213.61,213.99,214.34,214.68,215.20000000000002,215.76,223.21,23.68,23.400000000000002,23.240000000000002,23.04,22.86,22.67,22.48,22.3,22.07,N/A,N/A -2012,11,5,1,30,101820,100650,99510,81.64,0,2.58,2.7,2.71,2.7,2.69,2.67,2.65,2.62,2.57,232.70000000000002,232.32,232.09,231.77,231.41,231.01,230.52,230.02,228.55,23.61,23.32,23.16,22.96,22.78,22.59,22.400000000000002,22.21,21.830000000000002,N/A,N/A -2012,11,5,2,30,101820,100650,99510,82.3,0,2.05,2.15,2.16,2.16,2.16,2.16,2.15,2.14,2.12,238.34,238.1,237.95000000000002,237.8,237.66,237.52,237.35,237.19,236.62,23.47,23.17,23.01,22.81,22.62,22.43,22.240000000000002,22.05,21.67,N/A,N/A -2012,11,5,3,30,101810,100640,99510,78.88,0,2.06,2.2,2.24,2.2600000000000002,2.27,2.29,2.3000000000000003,2.32,2.35,243.24,244.41,244.99,245.62,246.23000000000002,246.86,247.55,248.22,249.8,23.650000000000002,23.36,23.2,23,22.81,22.62,22.43,22.25,21.86,N/A,N/A -2012,11,5,4,30,101790,100620,99480,77.95,0,2.17,2.35,2.4,2.44,2.48,2.5100000000000002,2.54,2.57,2.62,241.51,243.20000000000002,244.32,245.38,246.32,247.22,248.11,248.95000000000002,250.71,23.8,23.53,23.37,23.17,22.990000000000002,22.8,22.61,22.43,22.04,N/A,N/A -2012,11,5,5,30,101780,100610,99480,78.11,0,2.3000000000000003,2.47,2.5100000000000002,2.5300000000000002,2.5500000000000003,2.56,2.57,2.58,2.59,270.03000000000003,269.93,269.72,269.44,269.17,268.89,268.58,268.27,267.6,23.89,23.63,23.47,23.27,23.09,22.900000000000002,22.71,22.52,22.150000000000002,N/A,N/A -2012,11,5,6,30,101800,100630,99490,77.29,0,2.42,2.5500000000000003,2.58,2.6,2.61,2.62,2.63,2.64,2.65,262.13,261.41,260.96,260.48,260,259.49,258.88,258.25,256.48,23.63,23.330000000000002,23.16,22.96,22.77,22.59,22.39,22.21,21.830000000000002,N/A,N/A -2012,11,5,7,30,101800,100630,99490,78.28,0,3.15,3.34,3.39,3.41,3.43,3.44,3.45,3.45,3.47,262.08,261.44,260.98,260.52,260.09000000000003,259.67,259.22,258.8,257.86,23.66,23.35,23.19,22.990000000000002,22.8,22.61,22.41,22.23,21.84,N/A,N/A -2012,11,5,8,30,101770,100600,99460,80.07000000000001,0,3.81,4.05,4.09,4.11,4.12,4.13,4.13,4.13,4.13,268.07,267.49,267.11,266.72,266.36,266.01,265.65,265.31,264.56,23.580000000000002,23.27,23.09,22.900000000000002,22.71,22.52,22.32,22.14,21.75,N/A,N/A -2012,11,5,9,30,101770,100600,99460,82.66,0,4.44,4.7,4.75,4.7700000000000005,4.78,4.78,4.78,4.7700000000000005,4.75,273,272.16,271.6,271.02,270.48,269.95,269.39,268.85,267.7,23.41,23.09,22.92,22.72,22.53,22.34,22.150000000000002,21.96,21.580000000000002,N/A,N/A -2012,11,5,10,30,101770,100590,99460,83.5,0,4.22,4.45,4.48,4.49,4.49,4.48,4.46,4.45,4.41,275.86,274.84000000000003,274.16,273.42,272.72,272.02,271.26,270.51,268.74,23.12,22.78,22.61,22.41,22.22,22.04,21.84,21.66,21.29,N/A,N/A -2012,11,5,11,30,101780,100610,99470,84.47,0,3.98,4.16,4.17,4.16,4.14,4.12,4.1,4.07,4.05,289.32,288.67,288.2,287.64,287.05,286.41,285.57,284.72,281.71,22.67,22.32,22.14,21.95,21.76,21.580000000000002,21.39,21.22,20.89,N/A,N/A -2012,11,5,12,30,101780,100610,99470,85.79,0,4.51,4.72,4.74,4.73,4.71,4.68,4.64,4.61,4.5600000000000005,292.76,292.43,292.18,291.90000000000003,291.6,291.29,290.88,290.47,289.1,22.42,22.06,21.88,21.68,21.5,21.32,21.13,20.96,20.61,N/A,N/A -2012,11,5,13,30,101780,100600,99460,87.85000000000001,0,4.03,4.21,4.22,4.21,4.19,4.17,4.15,4.14,4.18,297.54,297.11,296.8,296.46,296.07,295.65000000000003,295.08,294.5,291.99,22.11,21.740000000000002,21.56,21.36,21.18,21,20.81,20.650000000000002,20.36,N/A,N/A -2012,11,5,14,30,101800,100620,99480,86.94,0,4.25,4.43,4.46,4.44,4.43,4.42,4.42,4.42,4.7,294.64,294.45,294.3,294.11,293.90000000000003,293.66,293.24,292.79,289.76,22.12,21.75,21.57,21.38,21.2,21.02,20.86,20.71,20.66,N/A,N/A -2012,11,5,15,30,101780,100600,99460,87.54,0,4.37,4.5600000000000005,4.58,4.57,4.5600000000000005,4.54,4.55,4.5600000000000005,4.88,295.51,295.28000000000003,295.12,294.93,294.71,294.46,294.03000000000003,293.57,290.98,22.150000000000002,21.78,21.61,21.42,21.240000000000002,21.07,20.91,20.77,20.76,N/A,N/A -2012,11,5,16,30,101760,100590,99450,87,0,3.88,4.05,4.07,4.07,4.07,4.07,4.07,4.08,4.23,294.51,294.42,294.36,294.29,294.21,294.13,294.01,293.89,293.29,22.240000000000002,21.87,21.69,21.490000000000002,21.31,21.13,20.95,20.78,20.490000000000002,N/A,N/A -2012,11,5,17,30,101730,100560,99420,86.68,0,3.63,3.77,3.7800000000000002,3.7800000000000002,3.77,3.7600000000000002,3.7600000000000002,3.75,3.88,282.93,283.3,283.56,283.88,284.22,284.61,285.14,285.68,287.96,22.34,21.97,21.79,21.6,21.41,21.23,21.05,20.88,20.6,N/A,N/A -2012,11,5,18,30,101690,100510,99380,86.35000000000001,0,3.25,3.37,3.38,3.38,3.37,3.36,3.37,3.39,3.66,263.23,264.2,264.93,265.79,266.77,267.87,269.66,271.56,280.29,22.55,22.19,22.01,21.82,21.64,21.46,21.29,21.14,20.96,N/A,N/A -2012,11,5,19,30,101650,100480,99350,85.5,0,3.81,3.97,3.99,3.98,3.98,3.99,4.05,4.12,4.3500000000000005,238.79,239.38,239.94,240.84,242.33,244.52,249.05,254.36,263.97,22.95,22.62,22.46,22.28,22.14,22.03,22,22.02,22.07,N/A,N/A -2012,11,5,20,30,101560,100400,99270,82.66,0,4.9,5.13,5.15,5.13,5.15,5.2,5.34,5.53,5.8100000000000005,224.53,225.05,225.67000000000002,226.73000000000002,228.76,231.67000000000002,235.86,240.42000000000002,247.12,23.650000000000002,23.34,23.19,23.03,22.92,22.85,22.84,22.84,22.73,N/A,N/A -2012,11,5,21,30,101550,100390,99260,83.38,0,7.12,7.7,7.84,7.9,7.94,7.95,7.96,7.96,7.94,238.07,239.07,239.83,240.73000000000002,241.54,242.39000000000001,243.32,244.28,246.39000000000001,24.19,23.93,23.79,23.6,23.43,23.25,23.07,22.900000000000002,22.56,N/A,N/A -2012,11,5,22,30,101500,100340,99210,79.2,0,6.55,7.01,7.0600000000000005,7.05,7.0200000000000005,6.97,6.94,6.92,6.74,249.47,250.25,250.78,251.52,252.35,253.29,254.89000000000001,256.62,266.12,24.310000000000002,24.05,23.91,23.73,23.57,23.41,23.27,23.16,23.2,N/A,N/A -2012,11,5,23,30,101510,100340,99210,79.14,0,4.63,4.91,4.93,4.91,4.9,4.92,4.78,4.61,4.43,250.61,250.97,251.25,251.70000000000002,252.63,254.01000000000002,259.55,266.05,273.96,24.3,24.04,23.89,23.72,23.59,23.48,23.46,23.490000000000002,23.32,N/A,N/A -2012,11,6,0,30,101510,100350,99220,77.65,0,4.08,4.33,4.36,4.36,4.39,4.45,4.5,4.55,4.57,249.39000000000001,249.67000000000002,249.89000000000001,250.21,251.32,253.01000000000002,256.76,260.88,267.82,24.44,24.19,24.04,23.86,23.71,23.57,23.51,23.48,23.38,N/A,N/A -2012,11,6,1,30,101680,100500,99350,90.66,203.60000000000002,11.88,12.77,12.98,13.05,13.09,13.1,13.1,13.09,13.13,354.72,354.05,353.90000000000003,353.76,353.63,353.52,353.35,353.19,352.75,20.73,20.16,19.95,19.740000000000002,19.55,19.37,19.19,19.03,18.7,N/A,N/A -2012,11,6,2,30,101600,100430,99290,84.45,0,3.1,3.33,3.45,3.67,4.43,5.96,6.8500000000000005,7.44,8.2,327.52,328.29,328.83,329.7,331.58,334.96,336.66,337.6,339.39,21.71,21.37,21.22,21.07,21.18,21.5,21.82,22.1,22.400000000000002,N/A,N/A -2012,11,6,3,30,101590,100420,99280,72.41,0,6.88,7.390000000000001,7.5200000000000005,7.57,7.63,7.68,7.75,7.8100000000000005,7.94,9.040000000000001,9.38,9.26,9.06,8.89,8.75,8.68,8.63,8.57,23.400000000000002,23.150000000000002,23.02,22.88,22.740000000000002,22.6,22.45,22.31,22.01,N/A,N/A -2012,11,6,4,30,101610,100440,99300,70.43,0,6.67,7.2700000000000005,7.45,7.57,7.66,7.73,7.8100000000000005,7.87,8.01,1.53,2.04,2.39,2.7600000000000002,3.11,3.46,3.83,4.17,4.95,23.34,23,22.830000000000002,22.64,22.45,22.26,22.07,21.89,21.52,N/A,N/A -2012,11,6,5,30,101590,100420,99280,62.410000000000004,0,10.34,11.3,11.52,11.63,11.69,11.72,11.73,11.74,11.71,13.780000000000001,13.93,14.05,14.16,14.26,14.35,14.46,14.55,14.74,23.05,22.69,22.51,22.31,22.13,21.94,21.76,21.580000000000002,21.22,N/A,N/A -2012,11,6,6,30,101670,100490,99340,66.06,0,10.72,11.620000000000001,11.84,11.93,11.98,12,12.01,12.01,11.98,19.78,19.85,19.89,19.93,19.96,20,20.03,20.06,20.11,21.75,21.31,21.11,20.91,20.71,20.53,20.34,20.16,19.8,N/A,N/A -2012,11,6,7,30,101710,100530,99370,64.22,0,10.39,11.25,11.450000000000001,11.540000000000001,11.6,11.63,11.65,11.66,11.69,22.42,22.44,22.47,22.5,22.51,22.52,22.51,22.51,22.46,20.990000000000002,20.5,20.3,20.1,19.91,19.73,19.54,19.37,19.02,N/A,N/A -2012,11,6,8,30,101760,100570,99410,62.82,0,9.85,10.63,10.81,10.9,10.94,10.97,10.98,10.99,10.99,22.97,22.94,22.92,22.900000000000002,22.86,22.82,22.76,22.7,22.53,20.63,20.13,19.92,19.72,19.52,19.34,19.150000000000002,18.97,18.62,N/A,N/A -2012,11,6,9,30,101790,100600,99450,63.86,0,9.73,10.47,10.64,10.71,10.74,10.76,10.75,10.75,10.71,19.6,19.59,19.57,19.54,19.51,19.48,19.44,19.39,19.28,20.09,19.55,19.34,19.13,18.93,18.740000000000002,18.54,18.36,18,N/A,N/A -2012,11,6,10,30,101830,100630,99470,66.54,0,10,10.72,10.86,10.9,10.91,10.91,10.88,10.85,10.77,18.27,18.27,18.26,18.240000000000002,18.2,18.16,18.1,18.04,17.84,19.22,18.63,18.41,18.2,18,17.82,17.63,17.45,17.1,N/A,N/A -2012,11,6,11,30,101870,100670,99510,69.60000000000001,0,9.58,10.25,10.39,10.43,10.46,10.46,10.44,10.43,10.370000000000001,21.7,21.740000000000002,21.75,21.75,21.740000000000002,21.73,21.71,21.68,21.580000000000002,18.43,17.81,17.580000000000002,17.36,17.16,16.97,16.77,16.59,16.22,N/A,N/A -2012,11,6,12,30,101910,100710,99540,70.28,0,9.1,9.69,9.8,9.83,9.83,9.82,9.8,9.77,9.700000000000001,20.17,20.14,20.12,20.080000000000002,20.04,19.990000000000002,19.93,19.87,19.69,18.080000000000002,17.47,17.240000000000002,17.02,16.82,16.63,16.44,16.26,15.9,N/A,N/A -2012,11,6,13,30,101960,100760,99590,71.49,0,8.07,8.56,8.65,8.68,8.68,8.67,8.64,8.620000000000001,8.540000000000001,21.51,21.490000000000002,21.47,21.45,21.42,21.39,21.35,21.31,21.2,17.81,17.2,16.97,16.76,16.55,16.36,16.16,15.98,15.610000000000001,N/A,N/A -2012,11,6,14,30,101990,100780,99610,71.77,0,8.07,8.52,8.59,8.6,8.59,8.57,8.53,8.49,8.39,19.2,19.2,19.19,19.17,19.14,19.11,19.07,19.02,18.900000000000002,17.330000000000002,16.71,16.47,16.26,16.05,15.860000000000001,15.67,15.48,15.120000000000001,N/A,N/A -2012,11,6,15,30,102030,100820,99650,71.27,0,6.75,7.09,7.140000000000001,7.140000000000001,7.140000000000001,7.12,7.09,7.07,7,19.29,19.25,19.22,19.17,19.12,19.080000000000002,19.02,18.96,18.8,17.11,16.51,16.28,16.06,15.860000000000001,15.67,15.47,15.280000000000001,14.9,N/A,N/A -2012,11,6,16,30,102010,100810,99630,68.41,0,5.62,5.9,5.95,5.96,5.96,5.96,5.95,5.95,5.92,8.03,7.890000000000001,7.82,7.75,7.67,7.59,7.49,7.4,7.17,17.23,16.66,16.44,16.22,16.01,15.83,15.620000000000001,15.44,15.05,N/A,N/A -2012,11,6,17,30,101970,100770,99600,65.89,0,5.15,5.42,5.48,5.51,5.53,5.54,5.55,5.5600000000000005,5.58,356.67,356.18,355.87,355.58,355.31,355.07,354.82,354.59000000000003,354.13,17.68,17.14,16.91,16.7,16.490000000000002,16.3,16.1,15.91,15.52,N/A,N/A -2012,11,6,18,30,101990,100790,99620,57.22,0,5.09,5.3500000000000005,5.4,5.43,5.44,5.45,5.45,5.45,5.45,346.72,347.09000000000003,347.3,347.51,347.71,347.89,348.07,348.24,348.61,18.43,17.92,17.7,17.490000000000002,17.28,17.09,16.89,16.7,16.31,N/A,N/A -2012,11,6,19,30,101950,100750,99590,57.620000000000005,0,4.82,5.09,5.15,5.19,5.22,5.24,5.26,5.28,5.3100000000000005,334.98,334.98,335.02,335.07,335.11,335.15000000000003,335.19,335.23,335.32,19.080000000000002,18.59,18.38,18.17,17.96,17.77,17.56,17.37,16.98,N/A,N/A -2012,11,6,20,30,101920,100730,99570,56.26,0,6.44,6.83,6.9,6.93,6.95,6.96,6.96,6.96,6.95,332.37,332.71,332.93,333.13,333.33,333.51,333.71,333.89,334.28000000000003,19.52,19.02,18.8,18.59,18.39,18.2,17.990000000000002,17.8,17.41,N/A,N/A -2012,11,6,21,30,101900,100710,99550,53.9,0,6.87,7.32,7.42,7.46,7.49,7.51,7.5200000000000005,7.5200000000000005,7.5200000000000005,333.33,333.59000000000003,333.75,333.91,334.06,334.2,334.36,334.51,334.84000000000003,20.04,19.55,19.34,19.13,18.93,18.740000000000002,18.54,18.35,17.96,N/A,N/A -2012,11,6,22,30,101880,100690,99530,52.15,0,7.140000000000001,7.640000000000001,7.75,7.8,7.84,7.87,7.890000000000001,7.9,7.92,336.13,336.22,336.28000000000003,336.33,336.39,336.44,336.49,336.55,336.67,20.57,20.1,19.900000000000002,19.69,19.490000000000002,19.3,19.09,18.900000000000002,18.51,N/A,N/A -2012,11,6,23,30,101900,100710,99560,51.410000000000004,0,6.95,7.43,7.54,7.6000000000000005,7.63,7.66,7.68,7.69,7.71,341.53000000000003,341.56,341.57,341.58,341.58,341.58,341.59000000000003,341.59000000000003,341.6,20.92,20.47,20.27,20.06,19.86,19.67,19.46,19.28,18.88,N/A,N/A -2012,11,7,0,30,101910,100720,99570,53.08,0,6.390000000000001,6.8,6.88,6.92,6.95,6.97,6.98,6.98,6.99,346.90000000000003,346.67,346.54,346.41,346.28000000000003,346.17,346.05,345.93,345.71,20.97,20.53,20.330000000000002,20.13,19.92,19.73,19.53,19.34,18.95,N/A,N/A -2012,11,7,1,30,101920,100730,99570,51.95,0,5.8500000000000005,6.19,6.26,6.29,6.3,6.3100000000000005,6.3100000000000005,6.3,6.29,350.33,350.42,350.46,350.5,350.54,350.57,350.6,350.63,350.69,20.900000000000002,20.46,20.27,20.06,19.86,19.67,19.47,19.28,18.89,N/A,N/A -2012,11,7,2,30,101950,100760,99600,51.620000000000005,0,5.29,5.58,5.63,5.66,5.66,5.67,5.67,5.67,5.66,1.42,0.99,0.71,0.43,0.18,359.95,359.7,359.47,359.01,20.88,20.45,20.25,20.05,19.85,19.66,19.45,19.27,18.88,N/A,N/A -2012,11,7,3,30,101940,100750,99600,51.64,0,4.29,4.49,4.5200000000000005,4.53,4.53,4.53,4.5200000000000005,4.5200000000000005,4.5,2.97,2.27,1.82,1.37,0.9400000000000001,0.53,0.09,359.68,358.79,20.82,20.41,20.22,20.01,19.81,19.63,19.43,19.240000000000002,18.86,N/A,N/A -2012,11,7,4,30,101940,100750,99600,53.59,0,3.6,3.74,3.7600000000000002,3.7600000000000002,3.7600000000000002,3.75,3.74,3.74,3.72,5.14,4.21,3.62,3.04,2.48,1.96,1.41,0.9,359.79,20.82,20.42,20.22,20.02,19.830000000000002,19.64,19.44,19.25,18.87,N/A,N/A -2012,11,7,5,30,101940,100750,99590,55.99,0,3.67,3.8200000000000003,3.84,3.85,3.85,3.84,3.84,3.83,3.8200000000000003,357.96,357.01,356.40000000000003,355.79,355.2,354.65000000000003,354.07,353.52,352.32,20.85,20.44,20.25,20.04,19.85,19.66,19.46,19.28,18.89,N/A,N/A -2012,11,7,6,30,101950,100760,99600,57.910000000000004,0,3.13,3.27,3.29,3.29,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,3.3000000000000003,349.16,348.51,348.12,347.73,347.38,347.05,346.7,346.38,345.63,20.89,20.51,20.32,20.12,19.93,19.740000000000002,19.54,19.36,18.97,N/A,N/A -2012,11,7,7,30,101970,100780,99630,58.86,0,2.97,3.11,3.13,3.14,3.15,3.15,3.16,3.16,3.17,339.5,339.03000000000003,338.76,338.48,338.22,337.97,337.69,337.44,336.85,20.96,20.580000000000002,20.39,20.19,19.990000000000002,19.81,19.61,19.42,19.04,N/A,N/A -2012,11,7,8,30,101990,100800,99650,58.35,0,2.5500000000000003,2.66,2.67,2.68,2.69,2.69,2.69,2.69,2.7,338.02,337.37,336.96,336.56,336.18,335.82,335.43,335.07,334.3,21.06,20.68,20.5,20.3,20.1,19.91,19.71,19.53,19.14,N/A,N/A -2012,11,7,9,30,101990,100800,99650,58.24,0,3.16,3.3000000000000003,3.3200000000000003,3.33,3.33,3.33,3.33,3.33,3.33,341.71,340.91,340.39,339.89,339.41,338.95,338.48,338.04,337.06,21.13,20.75,20.57,20.37,20.17,19.98,19.78,19.6,19.21,N/A,N/A -2012,11,7,10,30,102000,100810,99660,60.22,0,3.68,3.84,3.86,3.86,3.86,3.86,3.85,3.85,3.83,345.40000000000003,344.56,344.01,343.49,342.98,342.51,342.01,341.55,340.52,21.09,20.7,20.52,20.31,20.12,19.93,19.73,19.54,19.150000000000002,N/A,N/A -2012,11,7,11,30,102030,100840,99690,64.48,0,3.62,3.7600000000000002,3.77,3.77,3.7600000000000002,3.74,3.73,3.71,3.67,343.42,342.88,342.5,342.14,341.8,341.49,341.16,340.86,340.2,20.84,20.45,20.26,20.06,19.86,19.67,19.47,19.29,18.900000000000002,N/A,N/A -2012,11,7,12,30,102050,100860,99700,68.63,0,4.07,4.22,4.23,4.22,4.21,4.19,4.17,4.15,4.11,344.62,344.2,343.92,343.64,343.37,343.11,342.84000000000003,342.58,341.99,20.47,20.06,19.87,19.67,19.48,19.29,19.09,18.91,18.53,N/A,N/A -2012,11,7,13,30,102070,100880,99720,71.83,0,4.42,4.6000000000000005,4.6000000000000005,4.59,4.57,4.54,4.5200000000000005,4.49,4.43,357.13,356.64,356.31,355.99,355.67,355.36,355.02,354.7,353.95,20.080000000000002,19.650000000000002,19.46,19.26,19.06,18.88,18.68,18.5,18.13,N/A,N/A -2012,11,7,14,30,102090,100900,99740,66.47,0,4.1,4.26,4.28,4.2700000000000005,4.25,4.24,4.21,4.19,4.15,359.71,359.12,358.71,358.31,357.92,357.54,357.15000000000003,356.78000000000003,355.92,19.98,19.55,19.36,19.16,18.97,18.78,18.59,18.41,18.04,N/A,N/A -2012,11,7,15,30,102110,100910,99750,63.61,0,3.87,4.0200000000000005,4.03,4.0200000000000005,4.01,3.99,3.98,3.96,3.95,6.5,6.32,6.2,6.0600000000000005,5.91,5.74,5.5200000000000005,5.3,4.66,19.97,19.55,19.36,19.16,18.97,18.79,18.61,18.43,18.080000000000002,N/A,N/A -2012,11,7,16,30,102090,100890,99740,61.59,0,4.17,4.37,4.41,4.42,4.43,4.44,4.45,4.46,4.5,5.8,5.8100000000000005,5.8,5.8,5.78,5.78,5.76,5.74,5.67,20.27,19.86,19.67,19.48,19.29,19.11,18.91,18.740000000000002,18.38,N/A,N/A -2012,11,7,17,30,102060,100870,99710,57.620000000000005,0,3.73,3.92,3.96,3.98,3.99,4.01,4.0200000000000005,4.03,4.04,11.59,11.49,11.43,11.370000000000001,11.32,11.27,11.22,11.17,11.07,20.6,20.2,20.01,19.81,19.62,19.43,19.23,19.05,18.67,N/A,N/A -2012,11,7,18,30,102030,100840,99690,52.42,0,2.82,2.93,2.95,2.95,2.95,2.95,2.95,2.94,2.94,21.35,20.78,20.41,20.03,19.67,19.330000000000002,18.91,18.52,17.57,20.97,20.59,20.400000000000002,20.2,20.01,19.82,19.62,19.44,19.06,N/A,N/A -2012,11,7,19,30,102000,100810,99660,50.88,0,1.29,1.37,1.4000000000000001,1.43,1.46,1.48,1.51,1.54,1.6,11.31,10.28,9.68,9.01,8.370000000000001,7.74,7.01,6.32,4.65,21.21,20.85,20.67,20.47,20.27,20.09,19.89,19.7,19.32,N/A,N/A -2012,11,7,20,30,101960,100780,99620,52.4,0,0.54,0.68,0.77,0.86,0.9400000000000001,1.02,1.1,1.18,1.36,319.99,321.07,321.87,322.44,322.90000000000003,323.3,323.65000000000003,323.96,324.6,21.56,21.21,21.04,20.84,20.650000000000002,20.47,20.28,20.1,19.72,N/A,N/A -2012,11,7,21,30,101940,100760,99610,51.160000000000004,0,1.47,1.55,1.57,1.59,1.61,1.62,1.6400000000000001,1.6500000000000001,1.68,289.59000000000003,291.62,292.89,294.11,295.24,296.3,297.43,298.47,300.78000000000003,22.09,21.75,21.580000000000002,21.38,21.19,21,20.81,20.62,20.240000000000002,N/A,N/A -2012,11,7,22,30,101940,100750,99610,52.39,0,1.3900000000000001,1.5,1.54,1.59,1.6400000000000001,1.68,1.72,1.76,1.85,272.04,277.64,280.93,283.85,286.32,288.5,290.53000000000003,292.37,295.77,22.36,22.04,21.87,21.68,21.490000000000002,21.3,21.11,20.93,20.54,N/A,N/A -2012,11,7,23,30,101940,100760,99610,48.9,0,1.98,2.05,2.06,2.06,2.05,2.05,2.04,2.04,2.0300000000000002,302.2,303.53000000000003,304.38,305.22,306.01,306.77,307.58,308.32,309.97,22.7,22.39,22.22,22.03,21.84,21.650000000000002,21.45,21.27,20.89,N/A,N/A -2012,11,8,0,30,101960,100780,99630,49.29,0,1.12,1.16,1.17,1.17,1.18,1.18,1.19,1.19,1.21,279.58,281.34000000000003,282.5,283.7,284.87,285.99,287.26,288.45,291.2,22.76,22.45,22.28,22.09,21.900000000000002,21.71,21.51,21.330000000000002,20.95,N/A,N/A -2012,11,8,1,30,101980,100800,99650,51.300000000000004,0,1.59,1.69,1.72,1.75,1.78,1.8,1.84,1.87,1.96,335.67,336.54,337.13,337.75,338.39,339.04,339.82,340.56,342.57,22.79,22.48,22.31,22.12,21.93,21.75,21.55,21.37,20.990000000000002,N/A,N/A -2012,11,8,2,30,101970,100790,99650,47.86,0,2.92,3.09,3.09,3.08,3.06,3.04,3.0100000000000002,2.99,2.92,41.77,42.18,42.33,42.46,42.58,42.69,42.82,42.92,43.12,23.32,23.04,22.87,22.69,22.5,22.31,22.12,21.93,21.55,N/A,N/A -2012,11,8,3,30,101980,100800,99650,49.13,0,3.73,3.94,3.95,3.94,3.92,3.9,3.87,3.85,3.7800000000000002,71.31,71.83,72.08,72.34,72.59,72.83,73.08,73.31,73.81,23.14,22.85,22.68,22.490000000000002,22.3,22.12,21.93,21.75,21.37,N/A,N/A -2012,11,8,4,30,101980,100800,99650,53.39,0,3.83,4.01,4.03,4.01,3.99,3.97,3.95,3.92,3.85,84.04,84.78,85.2,85.63,86.06,86.47,86.93,87.35000000000001,88.4,22.77,22.45,22.28,22.09,21.900000000000002,21.72,21.53,21.35,20.97,N/A,N/A -2012,11,8,5,30,101990,100810,99660,57.76,0,4.0200000000000005,4.21,4.23,4.22,4.21,4.19,4.17,4.15,4.1,95.86,96.59,97.02,97.46000000000001,97.87,98.25,98.67,99.06,99.91,22.46,22.12,21.95,21.75,21.56,21.38,21.18,21,20.61,N/A,N/A -2012,11,8,6,30,102000,100820,99670,56.76,0,3.87,4.08,4.12,4.13,4.13,4.13,4.12,4.11,4.09,111,111.08,111.12,111.16,111.2,111.24000000000001,111.28,111.33,111.43,22.31,21.98,21.81,21.61,21.42,21.23,21.03,20.85,20.46,N/A,N/A -2012,11,8,7,30,102030,100840,99690,52.050000000000004,0,4.11,4.34,4.37,4.38,4.38,4.37,4.36,4.3500000000000005,4.32,104.18,104.47,104.66,104.84,105.02,105.18,105.36,105.53,105.89,22.400000000000002,22.080000000000002,21.91,21.72,21.52,21.34,21.14,20.95,20.56,N/A,N/A -2012,11,8,8,30,102040,100860,99710,54.89,0,4.43,4.68,4.71,4.72,4.71,4.71,4.69,4.68,4.65,105.08,105.5,105.78,106.05,106.31,106.55,106.81,107.04,107.55,22.22,21.89,21.72,21.52,21.330000000000002,21.14,20.94,20.76,20.37,N/A,N/A -2012,11,8,9,30,102050,100860,99710,55.44,0,4.82,5.11,5.15,5.17,5.17,5.17,5.16,5.15,5.12,106.2,106.49000000000001,106.66,106.83,106.99000000000001,107.14,107.31,107.47,107.83,22.12,21.78,21.6,21.400000000000002,21.21,21.02,20.82,20.63,20.240000000000002,N/A,N/A -2012,11,8,10,30,102060,100870,99720,56.07,0,5.17,5.48,5.54,5.55,5.5600000000000005,5.5600000000000005,5.55,5.54,5.51,107.07000000000001,107.47,107.71000000000001,107.95,108.18,108.39,108.62,108.83,109.3,22.01,21.66,21.48,21.28,21.09,20.900000000000002,20.7,20.52,20.13,N/A,N/A -2012,11,8,11,30,102090,100900,99750,60.68,0,5.69,6.05,6.12,6.140000000000001,6.15,6.16,6.15,6.140000000000001,6.12,114.26,114.63,114.84,115.05,115.25,115.44,115.64,115.83,116.22,21.75,21.38,21.2,21,20.81,20.62,20.42,20.23,19.84,N/A,N/A -2012,11,8,12,30,102100,100920,99760,62.04,0,5.73,6.09,6.16,6.19,6.2,6.2,6.2,6.19,6.17,114.65,115.02,115.26,115.49000000000001,115.71000000000001,115.91,116.12,116.33,116.76,21.69,21.32,21.13,20.93,20.740000000000002,20.55,20.35,20.16,19.77,N/A,N/A -2012,11,8,13,30,102130,100940,99790,61.84,0,5.99,6.390000000000001,6.47,6.51,6.5200000000000005,6.53,6.53,6.5200000000000005,6.51,121.59,122,122.24000000000001,122.46000000000001,122.68,122.87,123.08,123.28,123.7,21.73,21.36,21.17,20.97,20.78,20.59,20.39,20.2,19.81,N/A,N/A -2012,11,8,14,30,102170,100980,99830,64.1,0,6.390000000000001,6.83,6.91,6.95,6.97,6.98,6.98,6.98,6.96,122.36,122.82000000000001,123.10000000000001,123.37,123.63000000000001,123.87,124.13000000000001,124.36,124.85000000000001,21.64,21.25,21.07,20.87,20.67,20.48,20.28,20.09,19.7,N/A,N/A -2012,11,8,15,30,102180,100990,99840,66.14,0,6.53,7,7.1000000000000005,7.140000000000001,7.17,7.19,7.19,7.2,7.19,125.97,126.36,126.59,126.81,127.01,127.19,127.39,127.57000000000001,127.95,21.6,21.21,21.03,20.82,20.63,20.44,20.240000000000002,20.05,19.66,N/A,N/A -2012,11,8,16,30,102150,100970,99820,65.24,0,6.34,6.78,6.87,6.92,6.94,6.95,6.96,6.96,6.95,125.04,125.37,125.57000000000001,125.76,125.95,126.12,126.3,126.47,126.83,21.650000000000002,21.27,21.080000000000002,20.88,20.68,20.490000000000002,20.29,20.1,19.71,N/A,N/A -2012,11,8,17,30,102130,100950,99790,64.62,0,6.29,6.73,6.82,6.86,6.890000000000001,6.9,6.91,6.91,6.9,127.25,127.57000000000001,127.75,127.92,128.09,128.24,128.41,128.56,128.88,21.7,21.32,21.13,20.93,20.73,20.54,20.34,20.16,19.77,N/A,N/A -2012,11,8,18,30,102120,100930,99780,67.04,0,6.13,6.57,6.67,6.72,6.76,6.78,6.8,6.8100000000000005,6.82,133.5,133.66,133.77,133.87,133.98,134.08,134.17000000000002,134.26,134.47,21.75,21.37,21.18,20.98,20.78,20.59,20.39,20.21,19.81,N/A,N/A -2012,11,8,19,30,102100,100910,99760,66.86,0,6.34,6.8,6.9,6.95,6.98,6.99,7.01,7.01,7.01,130.98,131.52,131.83,132.13,132.41,132.67000000000002,132.93,133.17000000000002,133.69,21.86,21.490000000000002,21.31,21.1,20.91,20.72,20.52,20.34,19.95,N/A,N/A -2012,11,8,20,30,102050,100870,99720,66.43,0,6.28,6.74,6.8500000000000005,6.9,6.93,6.95,6.96,6.97,6.98,134.1,134.56,134.84,135.12,135.37,135.61,135.86,136.08,136.55,21.89,21.52,21.34,21.14,20.94,20.75,20.56,20.37,19.98,N/A,N/A -2012,11,8,21,30,102040,100850,99700,68.33,0,6.49,6.96,7.07,7.12,7.15,7.17,7.19,7.2,7.2,137.17000000000002,137.67000000000002,137.98,138.27,138.55,138.81,139.07,139.31,139.82,21.89,21.52,21.330000000000002,21.13,20.93,20.740000000000002,20.55,20.36,19.97,N/A,N/A -2012,11,8,22,30,102030,100840,99690,70.8,0,6.8,7.3100000000000005,7.42,7.48,7.51,7.53,7.54,7.55,7.55,136.42000000000002,136.89000000000001,137.18,137.46,137.71,137.95000000000002,138.20000000000002,138.42000000000002,138.89000000000001,21.85,21.48,21.29,21.09,20.900000000000002,20.71,20.51,20.32,19.93,N/A,N/A -2012,11,8,23,30,102010,100820,99680,72.05,0,7.25,7.82,7.96,8.03,8.08,8.11,8.120000000000001,8.14,8.15,139.45000000000002,139.85,140.09,140.31,140.51,140.70000000000002,140.89000000000001,141.07,141.44,21.88,21.51,21.32,21.12,20.92,20.73,20.53,20.35,19.95,N/A,N/A -2012,11,9,0,30,102010,100830,99680,72.34,0,7.58,8.21,8.36,8.44,8.5,8.53,8.56,8.58,8.6,140.01,140.43,140.68,140.93,141.16,141.37,141.59,141.79,142.20000000000002,21.95,21.580000000000002,21.39,21.19,21,20.8,20.6,20.42,20.03,N/A,N/A -2012,11,9,1,30,102010,100830,99680,73.03,0,8.11,8.8,8.97,9.06,9.11,9.15,9.18,9.200000000000001,9.21,142.69,143.03,143.24,143.45000000000002,143.64000000000001,143.82,144,144.17000000000002,144.53,21.98,21.6,21.41,21.21,21.01,20.82,20.62,20.44,20.05,N/A,N/A -2012,11,9,2,30,102000,100820,99670,74.21000000000001,0,8.3,9.03,9.200000000000001,9.3,9.36,9.41,9.44,9.46,9.48,145.53,145.76,145.9,146.03,146.16,146.28,146.4,146.51,146.75,22.01,21.63,21.45,21.25,21.05,20.86,20.66,20.47,20.080000000000002,N/A,N/A -2012,11,9,3,30,102000,100820,99670,74.3,0,8.42,9.17,9.36,9.450000000000001,9.52,9.57,9.6,9.620000000000001,9.64,148.22,148.48,148.64000000000001,148.81,148.96,149.11,149.25,149.38,149.67000000000002,22.13,21.76,21.57,21.37,21.18,20.990000000000002,20.78,20.6,20.21,N/A,N/A -2012,11,9,4,30,102000,100810,99670,74.27,0,8.58,9.35,9.540000000000001,9.65,9.71,9.76,9.790000000000001,9.81,9.83,149.91,150.16,150.31,150.47,150.62,150.75,150.89000000000001,151.02,151.3,22.23,21.86,21.68,21.48,21.28,21.1,20.89,20.71,20.32,N/A,N/A -2012,11,9,5,30,101990,100810,99660,75.10000000000001,0,8.68,9.48,9.68,9.790000000000001,9.870000000000001,9.92,9.96,9.99,10.03,152.46,152.84,153.06,153.27,153.47,153.66,153.85,154.03,154.39000000000001,22.28,21.92,21.740000000000002,21.54,21.34,21.150000000000002,20.95,20.77,20.38,N/A,N/A -2012,11,9,6,30,101990,100810,99670,75.23,0,8.48,9.26,9.450000000000001,9.57,9.65,9.700000000000001,9.74,9.78,9.82,156.3,156.64000000000001,156.85,157.05,157.24,157.42000000000002,157.59,157.76,158.09,22.45,22.1,21.92,21.72,21.53,21.330000000000002,21.14,20.95,20.56,N/A,N/A -2012,11,9,7,30,102010,100830,99680,74.97,0,8.43,9.23,9.43,9.55,9.63,9.69,9.73,9.77,9.81,159.16,159.5,159.69,159.87,160.03,160.17000000000002,160.32,160.46,160.72,22.64,22.3,22.12,21.92,21.73,21.54,21.34,21.150000000000002,20.76,N/A,N/A -2012,11,9,8,30,102010,100830,99680,72.9,0,8.56,9.370000000000001,9.58,9.69,9.77,9.82,9.870000000000001,9.9,9.94,160.39000000000001,160.8,161.02,161.22,161.42000000000002,161.6,161.78,161.95000000000002,162.31,22.77,22.44,22.26,22.06,21.87,21.68,21.48,21.3,20.91,N/A,N/A -2012,11,9,9,30,101990,100820,99670,74.35000000000001,0,8.2,8.99,9.200000000000001,9.33,9.41,9.48,9.53,9.57,9.63,163.61,163.82,163.94,164.05,164.15,164.24,164.33,164.4,164.56,22.87,22.55,22.37,22.18,21.98,21.79,21.6,21.41,21.02,N/A,N/A -2012,11,9,10,30,102010,100830,99690,73.43,0,8.34,9.16,9.370000000000001,9.5,9.59,9.66,9.71,9.76,9.83,163.76,163.86,163.97,164.1,164.21,164.33,164.44,164.55,164.79,22.95,22.63,22.46,22.26,22.07,21.88,21.68,21.5,21.11,N/A,N/A -2012,11,9,11,30,102010,100830,99690,71.76,0,8.72,9.6,9.81,9.93,10.02,10.07,10.11,10.14,10.16,160.62,160.94,161.09,161.23,161.36,161.48,161.59,161.70000000000002,161.92000000000002,23.04,22.73,22.56,22.37,22.17,21.98,21.79,21.6,21.21,N/A,N/A -2012,11,9,12,30,102010,100840,99690,73.42,0,8.42,9.26,9.47,9.59,9.67,9.73,9.78,9.81,9.85,158.05,158,158.01,158.03,158.05,158.07,158.1,158.12,158.19,23.04,22.73,22.55,22.36,22.16,21.97,21.78,21.59,21.2,N/A,N/A -2012,11,9,13,30,102020,100850,99700,73.67,0,8.39,9.22,9.43,9.55,9.64,9.700000000000001,9.75,9.790000000000001,9.85,157.78,157.83,157.91,158,158.1,158.19,158.29,158.38,158.58,23.06,22.76,22.59,22.39,22.19,22.01,21.81,21.63,21.240000000000002,N/A,N/A -2012,11,9,14,30,102050,100880,99730,73.83,0,8.53,9.39,9.61,9.73,9.81,9.870000000000001,9.91,9.93,9.96,152.55,152.81,152.97,153.12,153.25,153.38,153.5,153.62,153.85,23.07,22.77,22.6,22.400000000000002,22.21,22.02,21.830000000000002,21.64,21.25,N/A,N/A -2012,11,9,15,30,102060,100890,99740,72.84,0,8.02,8.84,9.05,9.17,9.26,9.33,9.370000000000001,9.41,9.46,153.52,153.49,153.53,153.59,153.65,153.71,153.77,153.84,153.97,23.17,22.87,22.7,22.51,22.32,22.13,21.93,21.75,21.36,N/A,N/A -2012,11,9,16,30,102060,100880,99740,73.68,0,7.95,8.74,8.94,9.05,9.120000000000001,9.17,9.200000000000001,9.23,9.25,150.01,150.24,150.41,150.57,150.72,150.85,150.99,151.12,151.37,23.17,22.88,22.71,22.52,22.330000000000002,22.14,21.94,21.76,21.37,N/A,N/A -2012,11,9,17,30,102040,100860,99720,74.97,0,7.390000000000001,8.11,8.290000000000001,8.4,8.47,8.53,8.57,8.61,8.66,149.95000000000002,150.11,150.18,150.24,150.29,150.34,150.38,150.42000000000002,150.5,23.16,22.86,22.69,22.5,22.31,22.12,21.92,21.740000000000002,21.35,N/A,N/A -2012,11,9,18,30,102020,100850,99700,74.37,0,6.97,7.68,7.86,7.98,8.08,8.14,8.2,8.25,8.32,151.49,152.03,152.32,152.59,152.82,153.04,153.24,153.43,153.77,23.28,23,22.830000000000002,22.64,22.45,22.26,22.07,21.88,21.5,N/A,N/A -2012,11,9,19,30,102020,100840,99700,75.4,0,6.76,7.42,7.58,7.68,7.76,7.8100000000000005,7.8500000000000005,7.88,7.92,153.63,153.68,153.72,153.76,153.79,153.82,153.85,153.88,153.93,23.31,23.02,22.85,22.650000000000002,22.46,22.28,22.080000000000002,21.900000000000002,21.51,N/A,N/A -2012,11,9,20,30,101980,100800,99660,76.52,0,6.67,7.32,7.48,7.58,7.65,7.71,7.75,7.78,7.82,144.85,145.17000000000002,145.44,145.72,145.97,146.22,146.46,146.69,147.16,23.27,22.97,22.8,22.61,22.42,22.23,22.04,21.85,21.47,N/A,N/A -2012,11,9,21,30,101970,100790,99650,76.18,0,7.01,7.640000000000001,7.79,7.87,7.92,7.95,7.97,7.99,8,140.69,141.16,141.49,141.83,142.13,142.42000000000002,142.72,142.99,143.56,23.22,22.92,22.76,22.56,22.37,22.19,21.990000000000002,21.81,21.42,N/A,N/A -2012,11,9,22,30,101930,100760,99620,77.63,0,6.76,7.3500000000000005,7.5,7.59,7.65,7.7,7.74,7.7700000000000005,7.8100000000000005,147.17000000000002,147.67000000000002,147.91,148.14000000000001,148.34,148.51,148.69,148.85,149.16,23.2,22.91,22.740000000000002,22.55,22.36,22.18,21.98,21.8,21.41,N/A,N/A -2012,11,9,23,30,101910,100740,99600,77.55,0,7.28,8.03,8.22,8.33,8.4,8.46,8.51,8.540000000000001,8.59,144.35,144.51,144.65,144.8,144.94,145.07,145.21,145.33,145.6,23.23,22.93,22.76,22.57,22.38,22.19,21.990000000000002,21.81,21.42,N/A,N/A -2012,11,10,0,30,101920,100740,99600,75.12,0,7.53,8.26,8.44,8.540000000000001,8.61,8.67,8.71,8.74,8.78,146.38,146.35,146.42000000000002,146.53,146.64000000000001,146.75,146.88,147,147.27,23.26,22.97,22.8,22.61,22.42,22.23,22.03,21.85,21.46,N/A,N/A -2012,11,10,1,30,101920,100740,99600,74.9,0,7.98,8.73,8.91,8.99,9.05,9.09,9.120000000000001,9.14,9.16,143.86,144.19,144.39000000000001,144.58,144.76,144.93,145.1,145.25,145.57,23.27,22.990000000000002,22.82,22.63,22.44,22.25,22.06,21.87,21.490000000000002,N/A,N/A -2012,11,10,2,30,101910,100740,99600,75.42,0,8.950000000000001,9.85,10.07,10.19,10.28,10.34,10.38,10.41,10.450000000000001,141.61,142.13,142.43,142.72,142.99,143.23,143.49,143.71,144.17000000000002,23.34,23.05,22.89,22.69,22.51,22.32,22.12,21.94,21.55,N/A,N/A -2012,11,10,3,30,101900,100730,99590,75.22,0,8.790000000000001,9.74,9.98,10.13,10.24,10.33,10.39,10.450000000000001,10.540000000000001,139.57,139.99,140.24,140.5,140.73,140.96,141.18,141.39000000000001,141.79,23.38,23.11,22.95,22.76,22.57,22.39,22.19,22.01,21.63,N/A,N/A -2012,11,10,4,30,101900,100720,99580,74.01,0,8.98,9.92,10.17,10.31,10.4,10.47,10.52,10.55,10.59,146.22,146.38,146.47,146.56,146.64000000000001,146.71,146.79,146.86,147.01,23.45,23.19,23.03,22.84,22.650000000000002,22.46,22.27,22.080000000000002,21.7,N/A,N/A -2012,11,10,5,30,101900,100720,99590,75.39,0,8.98,9.91,10.16,10.31,10.41,10.48,10.540000000000001,10.58,10.64,146.32,146.56,146.66,146.75,146.84,146.91,146.99,147.05,147.19,23.52,23.27,23.11,22.92,22.73,22.55,22.36,22.17,21.79,N/A,N/A -2012,11,10,6,30,101890,100720,99580,81.78,0,7.8,8.78,9.08,9.32,9.51,9.66,9.790000000000001,9.91,10.09,150.68,150.85,150.91,151,151.08,151.17000000000002,151.26,151.36,151.57,23.32,23.09,22.94,22.76,22.580000000000002,22.400000000000002,22.22,22.04,21.67,N/A,N/A -2012,11,10,7,30,101890,100710,99580,79.18,0,7.51,8.370000000000001,8.67,8.97,9.16,9.290000000000001,9.450000000000001,9.63,9.86,146.58,147.31,147.85,148.58,149.18,149.70000000000002,150.62,151.6,153.15,23.400000000000002,23.2,23.07,22.91,22.740000000000002,22.57,22.400000000000002,22.26,21.92,N/A,N/A -2012,11,10,8,30,101860,100690,99550,79.87,0,8.63,9.57,9.85,10.05,10.21,10.35,10.46,10.55,10.700000000000001,152.48,152.71,152.93,153.17000000000002,153.44,153.73,154.01,154.27,154.84,23.48,23.27,23.13,22.95,22.79,22.62,22.44,22.26,21.91,N/A,N/A -2012,11,10,9,30,101850,100680,99550,80.54,0,7.3100000000000005,8.57,9.03,9.3,9.56,9.8,10.01,10.19,10.49,158.67000000000002,160,160.66,160.9,161.1,161.27,161.41,161.53,161.72,23.53,23.31,23.17,22.990000000000002,22.84,22.68,22.51,22.36,22.01,N/A,N/A -2012,11,10,10,30,101840,100660,99530,81.15,0,7.58,8.59,8.92,9.18,9.39,9.58,9.78,9.97,10.32,149.57,149.8,150.07,150.56,150.91,151.20000000000002,151.62,152.04,152.91,23.45,23.26,23.13,22.95,22.78,22.61,22.44,22.29,21.95,N/A,N/A -2012,11,10,11,30,101830,100660,99520,82.67,0,7.42,8.33,8.6,8.8,8.94,9.040000000000001,9.13,9.200000000000001,9.34,154.11,154.29,154.49,154.74,154.97,155.19,155.37,155.52,156.02,23.41,23.2,23.06,22.88,22.7,22.53,22.34,22.16,21.8,N/A,N/A -2012,11,10,12,30,101850,100670,99540,83.4,0,6.5200000000000005,7.640000000000001,8.09,8.45,8.74,8.98,9.22,9.43,9.81,152.59,153.86,154.70000000000002,155.49,156.04,156.43,156.79,157.11,157.70000000000002,23.45,23.240000000000002,23.1,22.93,22.77,22.6,22.43,22.27,21.93,N/A,N/A -2012,11,10,13,30,101830,100660,99530,85.32000000000001,0,5.94,6.86,7.23,7.5600000000000005,7.86,8.13,8.39,8.620000000000001,8.99,148.8,151.70000000000002,153.54,155.38,157.01,158.49,159.97,161.33,164.22,23.36,23.16,23.05,22.92,22.79,22.67,22.54,22.43,22.19,N/A,N/A -2012,11,10,14,30,101870,100700,99570,82.3,0,7.11,8,8.3,8.52,8.67,8.76,8.81,8.84,8.88,158.22,159.06,159.5,159.84,160.21,160.6,161.07,161.53,162.58,23.56,23.39,23.27,23.12,22.97,22.81,22.64,22.48,22.13,N/A,N/A -2012,11,10,15,30,101870,100700,99560,83.09,0,7.5200000000000005,8.23,8.44,8.620000000000001,8.78,8.91,9.01,9.09,8.91,158.53,159.02,159.32,159.69,160.05,160.4,160.70000000000002,160.95000000000002,160.76,23.3,23.09,22.97,22.830000000000002,22.69,22.55,22.42,22.3,21.98,N/A,N/A -2012,11,10,16,30,101860,100690,99550,84.48,0,6.61,7.46,7.72,7.82,7.94,8.08,8.2,8.3,8.51,158.68,159.27,159.59,159.76,159.92000000000002,160.08,160.3,160.52,161.70000000000002,23.48,23.28,23.14,22.95,22.78,22.63,22.46,22.3,21.990000000000002,N/A,N/A -2012,11,10,17,30,101840,100660,99530,86.9,0,6.07,6.71,6.88,6.96,7.07,7.21,7.37,7.53,7.96,149.69,151.17000000000002,152.03,152.67000000000002,154.12,156.24,158.38,160.41,163.56,23.42,23.22,23.09,22.91,22.77,22.66,22.55,22.44,22.22,N/A,N/A -2012,11,10,18,30,101820,100650,99520,77.75,0,7.11,8.01,8.3,8.53,8.72,8.88,9.02,9.14,9.36,165.56,165.79,165.97,166.17000000000002,166.36,166.55,166.74,166.91,167.24,24.01,23.85,23.73,23.56,23.400000000000002,23.240000000000002,23.06,22.89,22.54,N/A,N/A -2012,11,10,19,30,101800,100630,99490,84.94,0,8.39,9.11,9.34,9.61,9.84,10.040000000000001,10.200000000000001,10.33,10.42,150.11,150.52,151.05,151.94,153.05,154.34,155.94,157.53,160.31,23.09,22.87,22.75,22.650000000000002,22.55,22.46,22.38,22.31,22.04,N/A,N/A -2012,11,10,20,30,101760,100600,99460,86.96000000000001,0,8.040000000000001,8.94,9.290000000000001,9.66,9.94,10.14,10.38,10.620000000000001,11.15,157.02,157.19,157.42000000000002,157.78,158.14000000000001,158.5,159.02,159.55,160.95000000000002,23.34,23.11,22.98,22.84,22.68,22.5,22.35,22.21,21.97,N/A,N/A -2012,11,10,21,30,101740,100570,99430,90,0,7.61,8.35,8.56,8.75,9.13,9.68,10.06,10.36,10.94,141.43,141.85,142.22,142.72,143.63,144.93,145.83,146.53,148.29,23.080000000000002,22.81,22.66,22.490000000000002,22.34,22.22,22.07,21.93,21.7,N/A,N/A -2012,11,10,22,30,101700,100530,99400,83.73,0,9.09,10.28,10.67,10.99,11.26,11.48,11.69,11.88,12.22,150.18,150.18,150.25,150.34,150.42000000000002,150.52,150.64000000000001,150.76,151.07,23.68,23.5,23.37,23.2,23.04,22.88,22.71,22.55,22.2,N/A,N/A -2012,11,10,23,30,101670,100500,99370,83.69,0,9.89,11.15,11.57,11.88,12.13,12.34,12.530000000000001,12.69,12.98,151.48,151.89000000000001,152.15,152.43,152.70000000000002,152.98,153.26,153.53,154.1,23.72,23.55,23.42,23.26,23.1,22.93,22.76,22.59,22.25,N/A,N/A -2012,11,11,0,30,101660,100490,99360,81.99,0,9.09,10.3,10.71,11.040000000000001,11.32,11.56,11.790000000000001,11.99,12.370000000000001,151.04,151.36,151.57,151.81,152.03,152.25,152.47,152.68,153.08,23.85,23.7,23.59,23.43,23.28,23.13,22.97,22.81,22.48,N/A,N/A -2012,11,11,1,30,101630,100470,99330,80.9,0,10.26,11.63,12.08,12.43,12.72,12.96,13.19,13.39,13.76,152.73,152.97,153.13,153.3,153.46,153.62,153.78,153.93,154.25,23.86,23.71,23.59,23.43,23.27,23.11,22.94,22.78,22.43,N/A,N/A -2012,11,11,2,30,101640,100470,99340,80.65,0,10.72,12.200000000000001,12.700000000000001,13.09,13.41,13.68,13.93,14.14,14.51,152.76,153.07,153.26,153.47,153.66,153.85,154.04,154.23,154.6,23.92,23.78,23.66,23.51,23.36,23.2,23.03,22.88,22.54,N/A,N/A -2012,11,11,3,30,101600,100430,99300,80.76,0,10.94,12.41,12.9,13.290000000000001,13.61,13.89,14.14,14.370000000000001,14.8,153.71,154.01,154.21,154.42000000000002,154.63,154.82,155.02,155.20000000000002,155.56,23.95,23.81,23.7,23.54,23.39,23.23,23.06,22.91,22.57,N/A,N/A -2012,11,11,4,30,101580,100410,99280,80.85000000000001,0,11.540000000000001,13.120000000000001,13.65,14.07,14.41,14.71,14.97,15.21,15.63,156.74,156.96,157.09,157.24,157.39000000000001,157.54,157.70000000000002,157.85,158.16,23.98,23.84,23.73,23.57,23.42,23.27,23.1,22.94,22.6,N/A,N/A -2012,11,11,5,30,101560,100390,99260,79.92,0,12.02,13.66,14.17,14.56,14.88,15.15,15.38,15.59,15.94,162.01,162.39000000000001,162.6,162.82,163.01,163.20000000000002,163.37,163.53,163.82,24.080000000000002,23.95,23.84,23.68,23.53,23.37,23.19,23.03,22.67,N/A,N/A -2012,11,11,6,30,101550,100380,99250,80.09,0,11.88,13.43,13.950000000000001,14.33,14.65,14.91,15.14,15.35,15.71,163.20000000000002,163.25,163.3,163.36,163.41,163.47,163.53,163.59,163.73,24.09,23.94,23.81,23.650000000000002,23.490000000000002,23.32,23.150000000000002,22.98,22.63,N/A,N/A -2012,11,11,7,30,101530,100360,99230,81.2,0,11.58,13.15,13.67,14.08,14.41,14.69,14.950000000000001,15.17,15.59,164.6,164.71,164.79,164.88,164.96,165.05,165.12,165.20000000000002,165.35,24.11,23.97,23.85,23.69,23.53,23.37,23.2,23.04,22.69,N/A,N/A -2012,11,11,8,30,101480,100320,99190,80.75,0,11.82,13.42,13.93,14.34,14.66,14.93,15.18,15.4,15.780000000000001,163.12,163.36,163.5,163.66,163.8,163.94,164.08,164.21,164.48,24.14,24,23.88,23.73,23.57,23.41,23.240000000000002,23.07,22.73,N/A,N/A -2012,11,11,9,30,101470,100310,99180,82.67,0,11.06,12.61,13.13,13.55,13.89,14.19,14.450000000000001,14.69,15.11,166.86,167.1,167.23,167.35,167.45000000000002,167.54,167.6,167.66,167.73,24.16,24.02,23.900000000000002,23.75,23.6,23.44,23.27,23.11,22.77,N/A,N/A -2012,11,11,10,30,101460,100290,99170,83.11,0,11.06,12.69,13.25,13.72,14.120000000000001,14.47,14.81,15.120000000000001,15.71,166.96,167.34,167.52,167.71,167.89000000000001,168.06,168.23,168.38,168.66,24.22,24.1,23.990000000000002,23.85,23.71,23.56,23.41,23.26,22.95,N/A,N/A -2012,11,11,11,30,101450,100290,99160,85.46000000000001,0,10.35,11.83,12.36,12.780000000000001,13.14,13.450000000000001,13.72,13.97,14.41,166.01,165.81,165.81,165.81,165.83,165.86,165.9,165.95000000000002,166.09,24.19,24.060000000000002,23.95,23.8,23.650000000000002,23.5,23.34,23.19,22.86,N/A,N/A -2012,11,11,12,30,101470,100300,99170,91.9,17.6,9.620000000000001,10.77,11.24,11.73,12.16,12.540000000000001,12.96,13.38,14.26,158.74,159.32,159.78,160.48,161.19,161.95000000000002,162.98,164.05,166.34,23.34,23.1,22.96,22.8,22.66,22.52,22.42,22.34,22.19,N/A,N/A -2012,11,11,13,30,101440,100280,99150,85.7,0,10.32,11.76,12.24,12.620000000000001,12.94,13.22,13.47,13.700000000000001,14.11,159.36,159.59,159.71,159.82,159.92000000000002,159.99,160.04,160.09,160.13,24.17,24.03,23.91,23.76,23.61,23.45,23.28,23.13,22.79,N/A,N/A -2012,11,11,14,30,101450,100290,99160,90.58,0,10,11.42,11.89,12.290000000000001,12.63,12.93,13.23,13.5,14.01,149.26,149.78,150.1,150.43,150.75,151.04,151.34,151.61,152.13,23.78,23.57,23.44,23.28,23.12,22.97,22.8,22.650000000000002,22.330000000000002,N/A,N/A -2012,11,11,15,30,101480,100310,99180,92.2,0,9.68,11.15,11.72,12.21,12.64,13.030000000000001,13.4,13.74,14.35,158.75,159.43,159.95000000000002,160.57,161.17000000000002,161.81,162.5,163.20000000000002,164.71,23.8,23.63,23.51,23.36,23.21,23.07,22.93,22.79,22.51,N/A,N/A -2012,11,11,16,30,101470,100300,99180,89.14,0,9,10.31,10.74,11.1,11.38,11.61,11.790000000000001,11.93,12.08,171.03,170.94,170.99,171.11,171.3,171.57,171.97,172.39000000000001,173.69,24.150000000000002,23.990000000000002,23.87,23.72,23.56,23.41,23.25,23.09,22.78,N/A,N/A -2012,11,11,17,30,101450,100290,99170,94.68,0,6.38,7.390000000000001,7.72,7.96,8.120000000000001,8.22,8.31,8.39,8.700000000000001,177.58,178.26,178.8,179.51,180.41,181.47,182.89000000000001,184.35,187.81,23.990000000000002,23.84,23.740000000000002,23.62,23.5,23.38,23.25,23.13,22.87,N/A,N/A -2012,11,11,18,30,101470,100310,99180,94.61,0,4.6000000000000005,5.5600000000000005,5.99,6.46,6.890000000000001,7.33,7.74,8.120000000000001,8.78,186.92000000000002,188.47,189.55,190.75,191.72,192.55,193.20000000000002,193.74,194.56,24.21,24.1,24.03,23.92,23.82,23.71,23.59,23.47,23.2,N/A,N/A -2012,11,11,19,30,101460,100300,99170,93.11,0,4.78,5.8,6.23,6.67,7.0600000000000005,7.44,7.8,8.15,8.86,190.98,191.87,192.52,193.24,193.84,194.35,194.73000000000002,195.04,195.41,24.44,24.330000000000002,24.25,24.14,24.03,23.91,23.78,23.650000000000002,23.39,N/A,N/A -2012,11,11,20,30,101460,100300,99170,88.37,0,7.95,9.17,9.65,10.09,10.48,10.86,11.25,11.63,12.450000000000001,194.43,194.46,194.47,194.45000000000002,194.41,194.35,194.29,194.22,194.13,24.25,24.14,24.060000000000002,23.93,23.81,23.68,23.55,23.42,23.18,N/A,N/A -2012,11,11,21,30,101480,100320,99200,84.31,0.4,12.200000000000001,14.030000000000001,14.69,15.23,15.67,16.03,16.330000000000002,16.57,16.92,181.57,181.99,182.26,182.55,182.82,183.09,183.36,183.61,184.18,24.32,24.21,24.1,23.96,23.82,23.68,23.53,23.400000000000002,23.13,N/A,N/A -2012,11,11,22,30,101460,100300,99170,88.42,0,7.69,8.97,9.5,10.03,10.52,11.01,11.49,11.93,12.64,182.22,182.97,183.52,184.29,185.05,185.87,186.72,187.55,189.33,24.34,24.3,24.25,24.17,24.09,24.02,23.94,23.87,23.68,N/A,N/A -2012,11,11,23,30,101470,100310,99190,90.26,0,6.3100000000000005,7.66,8.23,8.78,9.26,9.700000000000001,10.13,10.52,11.23,190.77,190.42000000000002,190.25,190.16,190.18,190.29,190.52,190.8,191.6,24.45,24.43,24.39,24.3,24.21,24.1,23.990000000000002,23.89,23.650000000000002,N/A,N/A -2012,11,12,0,30,101530,100370,99250,81.53,10.3,6.61,7.94,8.620000000000001,9.33,9.93,10.47,10.89,11.23,11.65,194.04,196.59,198.16,200.04,201.54,202.76,203.6,204.24,204.93,24.29,24.48,24.580000000000002,24.650000000000002,24.67,24.650000000000002,24.57,24.46,24.19,N/A,N/A -2012,11,12,1,30,101590,100430,99300,87.61,0,6.62,7.49,7.8100000000000005,8.08,8.31,8.52,8.700000000000001,8.84,8.94,182.87,183.04,183.22,183.5,183.88,184.37,185.19,186.1,189.95000000000002,23.94,23.79,23.69,23.56,23.45,23.35,23.26,23.18,23.05,N/A,N/A -2012,11,12,2,30,101640,100480,99350,91.38,0,4.8100000000000005,5.69,6.0200000000000005,6.25,6.38,6.43,6.54,6.68,7.05,190.62,192.49,194.33,197.51,201.52,206.54,210.44,213.68,216.39000000000001,23.93,23.87,23.830000000000002,23.8,23.76,23.71,23.61,23.5,23.240000000000002,N/A,N/A -2012,11,12,3,30,101680,100520,99390,94.2,0,3.31,4.2,4.57,5.01,5.55,6.24,6.61,6.82,7.28,199.59,204.37,207.54,210.64000000000001,212.26,212.53,212.5,212.33,212.56,23.96,23.98,23.96,23.92,23.87,23.830000000000002,23.71,23.57,23.31,N/A,N/A -2012,11,12,4,30,101730,100570,99440,95.61,0,2.36,3.64,4.28,4.91,5.37,5.66,5.84,5.97,6.09,221.44,220.76,220.29,220.22,220.62,221.49,222.16,222.72,223.27,23.88,23.990000000000002,24.03,24.03,23.990000000000002,23.900000000000002,23.77,23.63,23.29,N/A,N/A -2012,11,12,5,30,101780,100610,99480,95.14,0,2.46,3.92,4.55,4.79,4.9,4.9,4.92,4.94,5.0600000000000005,248.75,242.46,238.97,239.42000000000002,239.65,239.69,239.73000000000002,239.78,239.76,23.94,24.240000000000002,24.32,24.2,24.05,23.86,23.66,23.48,23.12,N/A,N/A -2012,11,12,6,30,101840,100670,99540,95.52,0,2.22,3.2,3.5300000000000002,3.79,3.99,4.13,4.28,4.42,4.7,269.72,264.77,261.59000000000003,259.92,258.91,258.47,258.01,257.55,256.63,23.830000000000002,24.04,24.07,23.96,23.84,23.71,23.57,23.43,23.13,N/A,N/A -2012,11,12,7,30,102000,100800,99650,92.08,0,13.83,14.94,15.14,15.16,15.120000000000001,15.040000000000001,14.93,14.82,14.36,343.21,343.03000000000003,342.95,342.84000000000003,342.71,342.56,342.32,342.06,340.81,19.25,18.66,18.44,18.25,18.07,17.92,17.78,17.66,17.63,N/A,N/A -2012,11,12,8,30,102030,100830,99670,69.97,0,13.41,14.69,15,15.16,15.27,15.34,15.39,15.44,15.57,351.56,351.62,351.67,351.74,351.82,351.89,351.99,352.08,352.31,19.66,19.11,18.89,18.68,18.490000000000002,18.31,18.13,17.96,17.63,N/A,N/A -2012,11,12,9,30,102080,100880,99720,68.82000000000001,0,13.67,14.97,15.27,15.43,15.52,15.58,15.620000000000001,15.65,15.700000000000001,0.65,0.8300000000000001,0.91,0.97,1.03,1.08,1.1300000000000001,1.16,1.23,19.05,18.45,18.22,18.01,17.81,17.62,17.43,17.26,16.91,N/A,N/A -2012,11,12,10,30,102140,100940,99770,70.33,0,14.08,15.41,15.75,15.93,16.04,16.11,16.15,16.18,16.21,10.59,10.620000000000001,10.620000000000001,10.61,10.59,10.56,10.53,10.5,10.42,18.64,18,17.76,17.53,17.32,17.12,16.92,16.740000000000002,16.36,N/A,N/A -2012,11,12,11,30,102240,101030,99860,74.08,0,13.38,14.66,14.96,15.120000000000001,15.22,15.290000000000001,15.33,15.36,15.39,19.580000000000002,19.47,19.41,19.34,19.29,19.23,19.17,19.12,18.98,17.85,17.16,16.91,16.68,16.46,16.26,16.05,15.860000000000001,15.47,N/A,N/A -2012,11,12,12,30,102360,101150,99970,73.24,0,13.82,15.1,15.41,15.57,15.67,15.74,15.780000000000001,15.81,15.84,9.76,9.77,9.88,9.96,10.040000000000001,10.1,10.16,10.22,10.32,17.16,16.43,16.16,15.93,15.71,15.51,15.3,15.11,14.72,N/A,N/A -2012,11,12,13,30,102470,101260,100080,73.84,0,12.71,13.86,14.15,14.31,14.42,14.49,14.540000000000001,14.58,14.64,15.39,15.51,15.57,15.65,15.71,15.77,15.84,15.9,16.04,16.59,15.84,15.58,15.34,15.120000000000001,14.92,14.71,14.52,14.13,N/A,N/A -2012,11,12,14,30,102530,101320,100130,72.52,0,12.290000000000001,13.35,13.61,13.75,13.83,13.9,13.94,13.97,14.01,18.54,18.66,18.7,18.740000000000002,18.78,18.81,18.86,18.900000000000002,18.98,16.18,15.43,15.16,14.92,14.700000000000001,14.5,14.280000000000001,14.09,13.700000000000001,N/A,N/A -2012,11,12,15,30,102570,101350,100170,70.13,0,12.120000000000001,13.14,13.39,13.52,13.6,13.66,13.69,13.72,13.76,20.09,20.21,20.29,20.37,20.44,20.51,20.57,20.63,20.76,16.04,15.290000000000001,15.02,14.780000000000001,14.56,14.36,14.15,13.96,13.57,N/A,N/A -2012,11,12,16,30,102630,101410,100230,63.46,0,11.26,12.200000000000001,12.44,12.58,12.67,12.73,12.780000000000001,12.82,12.88,18.45,18.59,18.68,18.78,18.86,18.95,19.03,19.11,19.29,16.44,15.74,15.48,15.25,15.030000000000001,14.83,14.620000000000001,14.43,14.040000000000001,N/A,N/A -2012,11,12,17,30,102660,101440,100260,55.08,0,11.040000000000001,11.96,12.19,12.32,12.4,12.46,12.51,12.540000000000001,12.59,18.29,18.52,18.68,18.830000000000002,18.96,19.080000000000002,19.2,19.330000000000002,19.56,16.89,16.22,15.97,15.74,15.52,15.32,15.1,14.91,14.51,N/A,N/A -2012,11,12,18,30,102680,101470,100290,49.370000000000005,0,10.67,11.56,11.78,11.91,11.99,12.06,12.1,12.14,12.19,18.47,18.66,18.78,18.89,18.98,19.080000000000002,19.17,19.25,19.42,17.400000000000002,16.76,16.52,16.3,16.080000000000002,15.870000000000001,15.66,15.47,15.07,N/A,N/A -2012,11,12,19,30,102700,101490,100310,47.75,0,10.66,11.55,11.78,11.9,11.98,12.05,12.09,12.13,12.18,15.64,15.85,15.99,16.11,16.22,16.32,16.42,16.51,16.7,17.78,17.16,16.92,16.69,16.48,16.28,16.07,15.870000000000001,15.47,N/A,N/A -2012,11,12,20,30,102710,101500,100320,47,0,10.44,11.32,11.540000000000001,11.66,11.75,11.81,11.85,11.89,11.93,16.53,16.75,16.87,16.990000000000002,17.11,17.21,17.32,17.42,17.62,18.01,17.41,17.17,16.95,16.73,16.53,16.32,16.12,15.72,N/A,N/A -2012,11,12,21,30,102690,101480,100300,47.74,0,10.790000000000001,11.69,11.91,12.02,12.1,12.15,12.18,12.21,12.24,14.71,14.93,15.06,15.19,15.3,15.41,15.51,15.610000000000001,15.8,17.95,17.330000000000002,17.09,16.87,16.65,16.45,16.240000000000002,16.04,15.64,N/A,N/A -2012,11,12,22,30,102710,101500,100320,49.52,0,10.69,11.55,11.75,11.85,11.91,11.950000000000001,11.97,11.98,11.98,16.92,17.17,17.32,17.46,17.59,17.71,17.84,17.96,18.19,17.66,17.03,16.8,16.57,16.35,16.15,15.94,15.74,15.34,N/A,N/A -2012,11,12,23,30,102750,101530,100350,51.45,0,11.22,12.13,12.34,12.450000000000001,12.52,12.56,12.58,12.6,12.6,16.25,16.51,16.67,16.830000000000002,16.97,17.11,17.240000000000002,17.37,17.62,17.21,16.55,16.3,16.07,15.85,15.65,15.43,15.24,14.84,N/A,N/A -2012,11,13,0,30,102810,101590,100410,55.45,0,11.69,12.65,12.870000000000001,12.99,13.06,13.11,13.13,13.15,13.15,19.29,19.48,19.59,19.7,19.79,19.88,19.97,20.05,20.22,16.39,15.67,15.41,15.18,14.950000000000001,14.75,14.530000000000001,14.33,13.93,N/A,N/A -2012,11,13,1,30,102860,101630,100440,58.44,0,12.43,13.49,13.73,13.86,13.94,14,14.030000000000001,14.05,14.06,27.09,27.330000000000002,27.46,27.580000000000002,27.7,27.810000000000002,27.93,28.04,28.27,15.620000000000001,14.84,14.57,14.33,14.1,13.89,13.67,13.47,13.07,N/A,N/A -2012,11,13,2,30,102890,101660,100470,59.74,0,12.8,13.89,14.15,14.290000000000001,14.38,14.44,14.47,14.49,14.51,32.89,33.17,33.34,33.5,33.65,33.78,33.92,34.05,34.31,15.200000000000001,14.39,14.11,13.870000000000001,13.64,13.43,13.21,13.01,12.6,N/A,N/A -2012,11,13,3,30,102900,101670,100470,60.18,0,12.72,13.81,14.08,14.21,14.290000000000001,14.36,14.39,14.41,14.43,37.45,37.74,37.9,38.050000000000004,38.18,38.31,38.44,38.56,38.800000000000004,15.030000000000001,14.22,13.94,13.700000000000001,13.46,13.26,13.040000000000001,12.83,12.43,N/A,N/A -2012,11,13,4,30,102910,101680,100480,64.34,0,12.4,13.43,13.67,13.790000000000001,13.86,13.91,13.93,13.950000000000001,13.950000000000001,40.09,40.45,40.67,40.88,41.07,41.24,41.43,41.6,41.93,14.83,14.02,13.74,13.49,13.26,13.05,12.83,12.63,12.23,N/A,N/A -2012,11,13,5,30,102900,101670,100470,67.02,0,11.89,12.870000000000001,13.1,13.23,13.32,13.370000000000001,13.41,13.43,13.46,42.61,43.04,43.29,43.51,43.72,43.910000000000004,44.1,44.28,44.63,14.790000000000001,13.98,13.71,13.46,13.23,13.02,12.8,12.6,12.200000000000001,N/A,N/A -2012,11,13,6,30,102920,101690,100490,60.730000000000004,0,12.82,13.93,14.21,14.36,14.450000000000001,14.52,14.56,14.59,14.63,47.71,47.81,47.89,47.95,48.01,48.06,48.11,48.160000000000004,48.26,14.84,14,13.71,13.46,13.23,13.02,12.8,12.59,12.19,N/A,N/A -2012,11,13,7,30,102950,101720,100520,64.41,0,12.42,13.48,13.74,13.89,13.99,14.06,14.11,14.15,14.19,44.410000000000004,44.81,45.050000000000004,45.27,45.47,45.660000000000004,45.84,46.02,46.36,14.65,13.82,13.530000000000001,13.280000000000001,13.040000000000001,12.83,12.61,12.41,12.01,N/A,N/A -2012,11,13,8,30,102940,101710,100520,64.09,0,12.68,13.77,14.040000000000001,14.19,14.280000000000001,14.35,14.39,14.43,14.47,44.44,44.81,45.02,45.22,45.410000000000004,45.58,45.75,45.910000000000004,46.24,14.51,13.66,13.370000000000001,13.120000000000001,12.89,12.68,12.46,12.25,11.85,N/A,N/A -2012,11,13,9,30,102970,101740,100540,62.190000000000005,0,13.16,14.33,14.63,14.8,14.91,15,15.05,15.09,15.15,46.76,47.11,47.31,47.51,47.68,47.84,48,48.15,48.45,14.5,13.63,13.34,13.08,12.84,12.63,12.41,12.21,11.8,N/A,N/A -2012,11,13,10,30,102990,101750,100550,56.9,0,14.3,15.620000000000001,15.950000000000001,16.13,16.240000000000002,16.32,16.37,16.4,16.44,52.33,52.42,52.480000000000004,52.53,52.58,52.620000000000005,52.660000000000004,52.7,52.79,14.57,13.67,13.370000000000001,13.11,12.870000000000001,12.66,12.43,12.23,11.82,N/A,N/A -2012,11,13,11,30,102990,101750,100550,56.7,0,14.22,15.52,15.84,16,16.11,16.18,16.22,16.25,16.28,52.52,52.69,52.800000000000004,52.89,52.980000000000004,53.06,53.15,53.230000000000004,53.4,14.39,13.49,13.19,12.93,12.69,12.47,12.25,12.05,11.64,N/A,N/A -2012,11,13,12,30,103000,101770,100570,57.99,0,14.07,15.33,15.63,15.790000000000001,15.89,15.96,15.99,16.02,16.04,53.19,53.410000000000004,53.54,53.660000000000004,53.78,53.88,53.99,54.09,54.300000000000004,14.26,13.36,13.06,12.8,12.56,12.35,12.120000000000001,11.92,11.51,N/A,N/A -2012,11,13,13,30,103000,101770,100570,59.74,0,13.83,15.05,15.34,15.5,15.59,15.65,15.69,15.71,15.73,52.88,53.15,53.31,53.46,53.59,53.71,53.84,53.96,54.2,14.14,13.23,12.94,12.68,12.44,12.23,12,11.8,11.39,N/A,N/A -2012,11,13,14,30,103000,101760,100570,61.03,0,13.47,14.65,14.92,15.07,15.16,15.22,15.25,15.27,15.290000000000001,52.46,52.75,52.93,53.09,53.25,53.38,53.53,53.660000000000004,53.93,14.13,13.23,12.94,12.68,12.44,12.23,12.01,11.8,11.4,N/A,N/A -2012,11,13,15,30,102990,101750,100550,61.25,0,13.19,14.32,14.58,14.72,14.81,14.870000000000001,14.89,14.91,14.92,52.75,53.02,53.18,53.33,53.480000000000004,53.6,53.74,53.870000000000005,54.13,14.1,13.22,12.93,12.68,12.43,12.22,12,11.8,11.39,N/A,N/A -2012,11,13,16,30,102950,101720,100520,58.68,0,12.08,13.05,13.27,13.38,13.450000000000001,13.49,13.51,13.52,13.52,50.06,50.29,50.44,50.57,50.69,50.800000000000004,50.92,51.03,51.25,14.120000000000001,13.27,12.98,12.73,12.5,12.290000000000001,12.07,11.870000000000001,11.46,N/A,N/A -2012,11,13,17,30,102910,101670,100480,56.76,0,10.870000000000001,11.68,11.870000000000001,11.950000000000001,12.01,12.05,12.06,12.07,12.07,49.74,49.9,49.99,50.08,50.17,50.24,50.32,50.39,50.54,14.27,13.48,13.200000000000001,12.950000000000001,12.72,12.52,12.3,12.1,11.69,N/A,N/A -2012,11,13,18,30,102860,101630,100430,54.36,0,10.08,10.82,10.98,11.06,11.11,11.14,11.16,11.17,11.17,46.49,46.53,46.56,46.58,46.6,46.62,46.63,46.64,46.68,14.67,13.91,13.64,13.4,13.17,12.97,12.75,12.55,12.14,N/A,N/A -2012,11,13,19,30,102830,101600,100410,56.92,0,9.11,9.74,9.88,9.96,10.01,10.040000000000001,10.06,10.07,10.08,43.65,43.79,43.9,44,44.08,44.160000000000004,44.230000000000004,44.300000000000004,44.45,15.06,14.35,14.09,13.85,13.620000000000001,13.42,13.200000000000001,13,12.6,N/A,N/A -2012,11,13,20,30,102760,101540,100340,50.09,0,8.07,8.58,8.700000000000001,8.76,8.8,8.82,8.84,8.85,8.86,38.19,38.26,38.33,38.38,38.44,38.480000000000004,38.53,38.57,38.660000000000004,15.540000000000001,14.870000000000001,14.620000000000001,14.39,14.17,13.97,13.75,13.55,13.15,N/A,N/A -2012,11,13,21,30,102720,101500,100310,46.6,0,7.32,7.7700000000000005,7.87,7.930000000000001,7.96,7.98,8,8.01,8.02,38.58,38.33,38.17,38.01,37.88,37.76,37.62,37.51,37.27,16.080000000000002,15.46,15.22,14.99,14.77,14.57,14.36,14.16,13.76,N/A,N/A -2012,11,13,22,30,102690,101470,100280,45.74,0,7.42,7.87,7.96,7.99,8.01,8.02,8.02,8.02,8.01,29.3,29.63,29.85,30.05,30.240000000000002,30.41,30.580000000000002,30.75,31.060000000000002,16.41,15.790000000000001,15.56,15.33,15.120000000000001,14.92,14.71,14.51,14.11,N/A,N/A -2012,11,13,23,30,102670,101450,100260,47.28,0,7.71,8.17,8.25,8.28,8.290000000000001,8.290000000000001,8.290000000000001,8.28,8.25,24.7,25.080000000000002,25.34,25.57,25.79,25.990000000000002,26.2,26.38,26.76,16.37,15.74,15.5,15.280000000000001,15.06,14.86,14.65,14.450000000000001,14.05,N/A,N/A -2012,11,14,0,30,102690,101460,100280,49.68,0,8.39,8.91,9,9.03,9.040000000000001,9.05,9.03,9.02,8.98,24.97,25.34,25.55,25.76,25.95,26.12,26.3,26.46,26.8,16.04,15.38,15.14,14.91,14.69,14.49,14.27,14.08,13.68,N/A,N/A -2012,11,14,1,30,102680,101460,100270,52.800000000000004,0,8.77,9.31,9.41,9.450000000000001,9.46,9.46,9.44,9.43,9.38,26.35,26.77,27.03,27.27,27.51,27.71,27.92,28.12,28.53,15.66,14.98,14.74,14.5,14.280000000000001,14.08,13.870000000000001,13.67,13.27,N/A,N/A -2012,11,14,2,30,102680,101460,100270,54.75,0,8.81,9.370000000000001,9.48,9.52,9.540000000000001,9.540000000000001,9.53,9.52,9.49,32.69,33.05,33.28,33.49,33.69,33.86,34.05,34.22,34.58,15.5,14.81,14.56,14.33,14.11,13.91,13.69,13.5,13.1,N/A,N/A -2012,11,14,3,30,102690,101470,100280,56.7,0,8.98,9.56,9.68,9.74,9.76,9.77,9.76,9.76,9.73,35.93,36.28,36.51,36.72,36.92,37.1,37.28,37.45,37.81,15.43,14.73,14.48,14.25,14.02,13.82,13.61,13.41,13.01,N/A,N/A -2012,11,14,4,30,102680,101450,100260,60.07,0,8.88,9.450000000000001,9.56,9.61,9.63,9.64,9.64,9.63,9.61,39.18,39.67,39.96,40.24,40.5,40.730000000000004,40.97,41.19,41.64,15.370000000000001,14.68,14.42,14.19,13.97,13.77,13.55,13.36,12.96,N/A,N/A -2012,11,14,5,30,102660,101430,100250,64.36,0,8.89,9.47,9.6,9.65,9.68,9.700000000000001,9.700000000000001,9.700000000000001,9.69,40.58,40.99,41.25,41.49,41.7,41.89,42.09,42.28,42.64,15.36,14.67,14.41,14.17,13.950000000000001,13.75,13.530000000000001,13.33,12.93,N/A,N/A -2012,11,14,6,30,102700,101480,100290,65.44,0,8.69,9.25,9.36,9.41,9.43,9.450000000000001,9.450000000000001,9.44,9.42,39.62,40.15,40.46,40.75,41.02,41.26,41.51,41.74,42.19,15.17,14.49,14.23,14,13.780000000000001,13.58,13.36,13.16,12.76,N/A,N/A -2012,11,14,7,30,102710,101480,100290,65.94,0,8.78,9.34,9.450000000000001,9.49,9.51,9.52,9.52,9.51,9.48,35.62,36.17,36.49,36.79,37.06,37.31,37.57,37.81,38.28,14.91,14.21,13.950000000000001,13.72,13.5,13.3,13.08,12.88,12.48,N/A,N/A -2012,11,14,8,30,102690,101470,100280,66.38,0,8.9,9.46,9.56,9.61,9.63,9.63,9.620000000000001,9.61,9.57,35.84,36.22,36.47,36.7,36.910000000000004,37.11,37.31,37.49,37.86,14.74,14.030000000000001,13.77,13.540000000000001,13.31,13.11,12.9,12.700000000000001,12.3,N/A,N/A -2012,11,14,9,30,102740,101510,100320,62.81,0,8.35,8.84,8.92,8.950000000000001,8.96,8.950000000000001,8.93,8.91,8.86,35.33,35.68,35.910000000000004,36.12,36.32,36.5,36.68,36.85,37.21,14.63,13.94,13.68,13.450000000000001,13.23,13.030000000000001,12.81,12.620000000000001,12.22,N/A,N/A -2012,11,14,10,30,102740,101510,100320,62.58,0,8.28,8.77,8.86,8.89,8.91,8.91,8.9,8.88,8.84,32.62,33.09,33.4,33.69,33.96,34.2,34.45,34.68,35.160000000000004,14.530000000000001,13.84,13.59,13.35,13.13,12.93,12.72,12.52,12.13,N/A,N/A -2012,11,14,11,30,102740,101510,100320,62.28,0,8.07,8.53,8.6,8.620000000000001,8.61,8.6,8.58,8.55,8.49,31.01,31.5,31.8,32.07,32.34,32.58,32.83,33.06,33.54,14.47,13.780000000000001,13.52,13.3,13.08,12.88,12.66,12.47,12.07,N/A,N/A -2012,11,14,12,30,102760,101530,100340,62.43,0,8.26,8.73,8.8,8.81,8.81,8.790000000000001,8.76,8.73,8.66,31.75,32.2,32.480000000000004,32.75,33,33.22,33.47,33.69,34.160000000000004,14.24,13.540000000000001,13.290000000000001,13.05,12.83,12.64,12.43,12.23,11.84,N/A,N/A -2012,11,14,13,30,102790,101560,100360,60.85,0,8.06,8.51,8.57,8.59,8.58,8.57,8.540000000000001,8.51,8.44,30.63,30.98,31.23,31.46,31.69,31.89,32.1,32.31,32.72,14.15,13.450000000000001,13.19,12.97,12.75,12.55,12.34,12.15,11.76,N/A,N/A -2012,11,14,14,30,102800,101570,100370,60.96,0,8.31,8.77,8.84,8.85,8.84,8.83,8.790000000000001,8.76,8.68,30.82,31.240000000000002,31.490000000000002,31.73,31.95,32.160000000000004,32.38,32.58,33,13.92,13.200000000000001,12.950000000000001,12.72,12.5,12.3,12.09,11.9,11.51,N/A,N/A -2012,11,14,15,30,102820,101580,100390,58.61,0,7.94,8.39,8.46,8.48,8.48,8.47,8.46,8.44,8.38,31.560000000000002,31.94,32.18,32.39,32.59,32.77,32.97,33.15,33.53,13.9,13.19,12.93,12.71,12.48,12.290000000000001,12.08,11.89,11.5,N/A,N/A -2012,11,14,16,30,102800,101570,100370,56.410000000000004,0,7.48,7.87,7.930000000000001,7.95,7.95,7.94,7.92,7.9,7.84,23.1,23.36,23.52,23.67,23.81,23.95,24.080000000000002,24.21,24.47,14.07,13.38,13.13,12.9,12.68,12.49,12.280000000000001,12.09,11.700000000000001,N/A,N/A -2012,11,14,17,30,102770,101540,100340,51.95,0,7.18,7.57,7.640000000000001,7.66,7.66,7.66,7.640000000000001,7.63,7.59,19.400000000000002,19.53,19.61,19.68,19.76,19.82,19.89,19.96,20.09,14.530000000000001,13.870000000000001,13.620000000000001,13.4,13.18,12.98,12.77,12.58,12.19,N/A,N/A -2012,11,14,18,30,102730,101510,100310,49.63,0,6.63,6.99,7.07,7.1000000000000005,7.13,7.140000000000001,7.140000000000001,7.15,7.140000000000001,17.1,17.14,17.16,17.17,17.18,17.19,17.21,17.22,17.240000000000002,15,14.370000000000001,14.13,13.9,13.69,13.49,13.280000000000001,13.08,12.68,N/A,N/A -2012,11,14,19,30,102710,101490,100300,44.29,0,5.73,6.07,6.140000000000001,6.19,6.22,6.24,6.26,6.28,6.3,13.06,13.18,13.26,13.34,13.4,13.46,13.530000000000001,13.58,13.68,15.85,15.27,15.040000000000001,14.82,14.61,14.41,14.200000000000001,14.01,13.61,N/A,N/A -2012,11,14,20,30,102660,101440,100260,41.230000000000004,0,6.2,6.5600000000000005,6.640000000000001,6.67,6.7,6.72,6.73,6.74,6.75,7.01,7.19,7.3,7.390000000000001,7.48,7.55,7.640000000000001,7.71,7.86,16.6,16.03,15.81,15.59,15.38,15.18,14.98,14.780000000000001,14.38,N/A,N/A -2012,11,14,21,30,102630,101410,100230,39.28,0,6.44,6.82,6.890000000000001,6.93,6.95,6.96,6.96,6.97,6.96,7.91,7.88,7.86,7.84,7.83,7.82,7.82,7.8100000000000005,7.82,17.18,16.63,16.41,16.2,15.99,15.790000000000001,15.59,15.39,15,N/A,N/A -2012,11,14,22,30,102600,101380,100210,40.18,0,6.3,6.66,6.73,6.76,6.78,6.78,6.79,6.79,6.78,13.73,13.56,13.44,13.33,13.22,13.14,13.05,12.97,12.81,17.45,16.91,16.69,16.48,16.27,16.080000000000002,15.870000000000001,15.67,15.280000000000001,N/A,N/A -2012,11,14,23,30,102620,101400,100220,43.94,0,6.32,6.67,6.74,6.76,6.78,6.78,6.78,6.78,6.76,12.09,12.49,12.71,12.92,13.120000000000001,13.290000000000001,13.48,13.65,13.98,17.45,16.91,16.69,16.47,16.26,16.06,15.85,15.66,15.26,N/A,N/A -2012,11,15,0,30,102610,101400,100220,46.730000000000004,0,7.08,7.46,7.53,7.54,7.54,7.53,7.51,7.49,7.44,18.34,18.36,18.37,18.37,18.37,18.37,18.38,18.38,18.38,17.11,16.54,16.32,16.1,15.89,15.69,15.48,15.290000000000001,14.89,N/A,N/A -2012,11,15,1,30,102620,101400,100220,48.21,0,7.0200000000000005,7.390000000000001,7.45,7.46,7.46,7.45,7.43,7.41,7.3500000000000005,21.75,21.92,22,22.07,22.13,22.19,22.26,22.32,22.46,16.66,16.080000000000002,15.84,15.63,15.41,15.22,15.01,14.81,14.42,N/A,N/A -2012,11,15,2,30,102620,101410,100220,50.25,0,6.71,7.0600000000000005,7.11,7.12,7.12,7.11,7.09,7.07,7.01,26.23,26.39,26.5,26.59,26.69,26.77,26.86,26.93,27.09,16.41,15.83,15.6,15.38,15.17,14.97,14.76,14.57,14.17,N/A,N/A -2012,11,15,3,30,102600,101380,100190,53.620000000000005,0,6.97,7.34,7.390000000000001,7.4,7.390000000000001,7.390000000000001,7.36,7.34,7.28,27.12,27.35,27.490000000000002,27.63,27.77,27.88,28.01,28.13,28.37,16.11,15.5,15.27,15.05,14.84,14.64,14.43,14.24,13.84,N/A,N/A -2012,11,15,4,30,102590,101370,100180,53.19,0,6.79,7.15,7.2,7.21,7.21,7.2,7.18,7.16,7.11,37.9,38.26,38.49,38.71,38.93,39.11,39.31,39.5,39.88,16.14,15.55,15.32,15.1,14.88,14.69,14.48,14.280000000000001,13.89,N/A,N/A -2012,11,15,5,30,102550,101340,100150,51.83,0,6.75,7.09,7.140000000000001,7.140000000000001,7.140000000000001,7.12,7.1000000000000005,7.08,7.0200000000000005,35.54,35.94,36.18,36.42,36.64,36.84,37.06,37.26,37.68,16.16,15.57,15.34,15.120000000000001,14.91,14.71,14.5,14.31,13.92,N/A,N/A -2012,11,15,6,30,102530,101320,100130,59.33,0,6.25,6.57,6.61,6.62,6.61,6.6000000000000005,6.58,6.5600000000000005,6.51,38.46,39.03,39.33,39.62,39.89,40.14,40.4,40.65,41.15,16.05,15.5,15.280000000000001,15.07,14.85,14.66,14.450000000000001,14.26,13.870000000000001,N/A,N/A -2012,11,15,7,30,102540,101320,100140,61.120000000000005,0,6.5200000000000005,6.8500000000000005,6.9,6.91,6.91,6.9,6.88,6.86,6.8100000000000005,44.230000000000004,44.84,45.19,45.53,45.85,46.13,46.45,46.730000000000004,47.31,15.93,15.370000000000001,15.14,14.92,14.71,14.52,14.31,14.120000000000001,13.73,N/A,N/A -2012,11,15,8,30,102520,101300,100120,63.06,0,6.43,6.76,6.8,6.8100000000000005,6.8100000000000005,6.8,6.78,6.76,6.7,44.58,45.050000000000004,45.34,45.62,45.88,46.11,46.36,46.59,47.07,15.88,15.32,15.09,14.870000000000001,14.66,14.47,14.26,14.07,13.67,N/A,N/A -2012,11,15,9,30,102520,101300,100120,61.32,0,6.37,6.69,6.73,6.74,6.73,6.72,6.7,6.68,6.62,44.660000000000004,45.24,45.63,46,46.35,46.65,46.980000000000004,47.29,47.92,15.860000000000001,15.3,15.08,14.870000000000001,14.65,14.46,14.25,14.06,13.67,N/A,N/A -2012,11,15,10,30,102520,101300,100120,61.61,0,6.08,6.37,6.4,6.41,6.390000000000001,6.38,6.36,6.34,6.28,47.65,48.27,48.65,49,49.34,49.64,49.95,50.24,50.85,15.870000000000001,15.32,15.1,14.88,14.67,14.48,14.27,14.08,13.68,N/A,N/A -2012,11,15,11,30,102530,101320,100130,62.07,0,5.97,6.25,6.28,6.28,6.2700000000000005,6.25,6.23,6.2,6.140000000000001,47.84,48.32,48.59,48.85,49.09,49.31,49.56,49.78,50.24,15.83,15.27,15.05,14.83,14.620000000000001,14.43,14.22,14.030000000000001,13.63,N/A,N/A -2012,11,15,12,30,102540,101320,100130,64.18,0,6.44,6.76,6.79,6.8,6.78,6.7700000000000005,6.74,6.71,6.65,46.18,46.71,47.03,47.33,47.62,47.88,48.15,48.410000000000004,48.93,15.67,15.1,14.88,14.66,14.450000000000001,14.26,14.05,13.85,13.46,N/A,N/A -2012,11,15,13,30,102540,101320,100130,65.43,0,6.83,7.17,7.22,7.22,7.21,7.19,7.16,7.13,7.0600000000000005,43.52,43.95,44.230000000000004,44.5,44.76,44.980000000000004,45.230000000000004,45.45,45.910000000000004,15.46,14.88,14.65,14.43,14.22,14.030000000000001,13.82,13.63,13.24,N/A,N/A -2012,11,15,14,30,102550,101330,100140,66.07000000000001,0,6.97,7.33,7.37,7.37,7.3500000000000005,7.33,7.3,7.26,7.17,40.410000000000004,40.77,41,41.21,41.42,41.6,41.800000000000004,41.980000000000004,42.38,15.3,14.71,14.47,14.26,14.040000000000001,13.85,13.64,13.450000000000001,13.06,N/A,N/A -2012,11,15,15,30,102570,101350,100160,64.13,0,6.7700000000000005,7.12,7.16,7.17,7.16,7.140000000000001,7.12,7.09,7.0200000000000005,46.980000000000004,47.29,47.49,47.67,47.85,48.01,48.17,48.32,48.64,15.25,14.66,14.43,14.21,14,13.8,13.59,13.41,13.01,N/A,N/A -2012,11,15,16,30,102560,101340,100160,63.07,0,6.49,6.8100000000000005,6.8500000000000005,6.8500000000000005,6.84,6.82,6.79,6.76,6.69,45.69,45.94,46.12,46.28,46.42,46.56,46.71,46.85,47.12,15.200000000000001,14.61,14.38,14.16,13.950000000000001,13.76,13.55,13.36,12.97,N/A,N/A -2012,11,15,17,30,102550,101330,100140,59.81,0,5.92,6.2,6.23,6.23,6.22,6.2,6.18,6.16,6.09,44.160000000000004,44.4,44.53,44.64,44.76,44.86,44.97,45.07,45.27,15.370000000000001,14.81,14.58,14.36,14.15,13.96,13.75,13.56,13.17,N/A,N/A -2012,11,15,18,30,102510,101290,100110,59.07,0,5.5600000000000005,5.8,5.83,5.83,5.8100000000000005,5.8,5.7700000000000005,5.75,5.69,36.99,37.07,37.160000000000004,37.230000000000004,37.300000000000004,37.37,37.43,37.49,37.59,15.49,14.93,14.71,14.5,14.290000000000001,14.1,13.89,13.700000000000001,13.31,N/A,N/A -2012,11,15,19,30,102510,101290,100110,48.5,0,4.57,4.78,4.8,4.8100000000000005,4.8100000000000005,4.8,4.79,4.78,4.76,39.910000000000004,39.9,39.87,39.83,39.800000000000004,39.77,39.730000000000004,39.69,39.61,16.01,15.49,15.27,15.07,14.86,14.67,14.46,14.27,13.88,N/A,N/A -2012,11,15,20,30,102470,101250,100070,47.480000000000004,0,4.17,4.36,4.39,4.4,4.41,4.41,4.41,4.41,4.4,39.38,39.19,39.06,38.95,38.82,38.71,38.58,38.45,38.17,16.4,15.9,15.69,15.48,15.280000000000001,15.09,14.88,14.69,14.3,N/A,N/A -2012,11,15,21,30,102450,101230,100050,46.76,0,3.69,3.85,3.88,3.89,3.89,3.89,3.89,3.89,3.89,51.730000000000004,51.14,50.77,50.42,50.08,49.76,49.410000000000004,49.09,48.39,16.79,16.31,16.1,15.9,15.69,15.5,15.3,15.1,14.71,N/A,N/A -2012,11,15,22,30,102440,101220,100050,46.13,0,3.45,3.61,3.64,3.66,3.67,3.69,3.69,3.7,3.71,55.99,55.300000000000004,54.88,54.49,54.11,53.76,53.38,53.03,52.28,17.150000000000002,16.69,16.490000000000002,16.28,16.080000000000002,15.89,15.68,15.5,15.1,N/A,N/A -2012,11,15,23,30,102450,101240,100060,45.37,0,3.73,3.91,3.95,3.97,3.99,4,4.0200000000000005,4.03,4.05,60.36,59.28,58.550000000000004,57.88,57.24,56.67,56.050000000000004,55.480000000000004,54.34,17.580000000000002,17.13,16.93,16.73,16.52,16.34,16.13,15.94,15.55,N/A,N/A -2012,11,16,0,30,102450,101240,100070,39.46,0,4.7,4.93,4.95,4.96,4.95,4.94,4.93,4.91,4.87,32.69,32.52,32.53,32.55,32.58,32.6,32.62,32.65,32.71,18.330000000000002,17.89,17.69,17.48,17.28,17.09,16.88,16.69,16.29,N/A,N/A -2012,11,16,1,30,102480,101270,100100,43.85,0,5.87,6.15,6.18,6.17,6.16,6.13,6.11,6.08,6.01,31.27,31.810000000000002,32.14,32.44,32.72,32.99,33.26,33.5,34.04,17.82,17.35,17.14,16.94,16.73,16.54,16.330000000000002,16.15,15.75,N/A,N/A -2012,11,16,2,30,102500,101280,100100,47.58,0,6.3,6.61,6.65,6.65,6.63,6.62,6.59,6.5600000000000005,6.48,30.150000000000002,30.59,30.87,31.13,31.37,31.6,31.84,32.06,32.53,17.36,16.86,16.65,16.44,16.23,16.04,15.84,15.65,15.26,N/A,N/A -2012,11,16,3,30,102490,101270,100100,49.88,0,6.18,6.5,6.54,6.55,6.54,6.53,6.51,6.49,6.43,35.01,35.44,35.68,35.92,36.13,36.33,36.54,36.730000000000004,37.14,17.14,16.63,16.42,16.21,16,15.81,15.610000000000001,15.42,15.030000000000001,N/A,N/A -2012,11,16,4,30,102470,101260,100080,53.17,0,6.42,6.76,6.8100000000000005,6.82,6.82,6.8100000000000005,6.78,6.76,6.7,33.7,34.09,34.33,34.550000000000004,34.76,34.94,35.14,35.33,35.7,16.97,16.45,16.23,16.02,15.82,15.620000000000001,15.42,15.23,14.84,N/A,N/A -2012,11,16,5,30,102500,101280,100100,56.5,0,6.69,7.07,7.140000000000001,7.16,7.17,7.17,7.15,7.140000000000001,7.1000000000000005,40.51,40.84,41.06,41.26,41.45,41.62,41.800000000000004,41.97,42.31,16.85,16.32,16.1,15.88,15.67,15.48,15.27,15.08,14.68,N/A,N/A -2012,11,16,6,30,102500,101290,100110,59.83,0,7.16,7.57,7.640000000000001,7.65,7.66,7.65,7.63,7.61,7.5600000000000005,40.35,40.800000000000004,41.08,41.35,41.6,41.83,42.07,42.29,42.74,16.57,16.02,15.8,15.58,15.370000000000001,15.18,14.97,14.780000000000001,14.39,N/A,N/A -2012,11,16,7,30,102520,101300,100120,61.51,0,7.07,7.46,7.5200000000000005,7.54,7.54,7.53,7.51,7.49,7.43,38.480000000000004,38.83,39.06,39.28,39.480000000000004,39.67,39.85,40.03,40.39,16.32,15.77,15.55,15.33,15.120000000000001,14.93,14.72,14.530000000000001,14.14,N/A,N/A -2012,11,16,8,30,102520,101300,100120,62.09,0,7.43,7.86,7.930000000000001,7.95,7.95,7.94,7.92,7.9,7.84,37.97,38.33,38.550000000000004,38.75,38.94,39.11,39.300000000000004,39.47,39.82,16.12,15.56,15.33,15.11,14.9,14.71,14.5,14.31,13.92,N/A,N/A -2012,11,16,9,30,102530,101310,100120,63.96,0,7.3500000000000005,7.76,7.83,7.8500000000000005,7.84,7.83,7.8100000000000005,7.79,7.72,37.29,37.67,37.910000000000004,38.13,38.35,38.54,38.74,38.94,39.33,15.81,15.23,15,14.780000000000001,14.57,14.38,14.17,13.98,13.6,N/A,N/A -2012,11,16,10,30,102540,101320,100130,66.97,0,7.8500000000000005,8.31,8.39,8.41,8.41,8.4,8.370000000000001,8.35,8.290000000000001,36,36.4,36.65,36.88,37.1,37.300000000000004,37.51,37.71,38.12,15.530000000000001,14.92,14.69,14.47,14.26,14.06,13.86,13.67,13.280000000000001,N/A,N/A -2012,11,16,11,30,102580,101350,100170,67.9,0,8.05,8.52,8.6,8.63,8.63,8.620000000000001,8.6,8.58,8.51,36.22,36.62,36.88,37.12,37.34,37.550000000000004,37.77,37.97,38.39,15.14,14.51,14.27,14.06,13.84,13.65,13.44,13.25,12.86,N/A,N/A -2012,11,16,12,30,102590,101360,100170,70.12,0,8.46,8.98,9.07,9.1,9.1,9.09,9.07,9.05,8.98,33.62,33.980000000000004,34.21,34.43,34.63,34.82,35.02,35.21,35.61,14.700000000000001,14.05,13.8,13.58,13.370000000000001,13.17,12.97,12.780000000000001,12.4,N/A,N/A -2012,11,16,13,30,102600,101380,100180,69.5,0,8.46,8.96,9.05,9.07,9.07,9.05,9.02,8.99,8.91,30.47,30.830000000000002,31.060000000000002,31.28,31.490000000000002,31.69,31.89,32.09,32.5,14.34,13.67,13.43,13.200000000000001,12.99,12.8,12.59,12.4,12.030000000000001,N/A,N/A -2012,11,16,14,30,102640,101410,100210,70.03,0,8.42,8.91,8.99,9.01,9.01,9,8.97,8.94,8.86,30.22,30.6,30.84,31.07,31.29,31.490000000000002,31.71,31.91,32.36,14.1,13.43,13.18,12.96,12.75,12.55,12.35,12.16,11.78,N/A,N/A -2012,11,16,15,30,102630,101400,100210,71.32000000000001,0,8.47,8.98,9.07,9.09,9.1,9.09,9.07,9.040000000000001,8.98,30.04,30.37,30.580000000000002,30.76,30.95,31.11,31.3,31.470000000000002,31.82,14.030000000000001,13.36,13.11,12.89,12.67,12.48,12.280000000000001,12.09,11.71,N/A,N/A -2012,11,16,16,30,102640,101410,100220,69.97,0,7.8100000000000005,8.28,8.370000000000001,8.4,8.41,8.42,8.41,8.4,8.36,33.5,33.76,33.94,34.1,34.25,34.38,34.53,34.660000000000004,34.93,14.19,13.540000000000001,13.3,13.08,12.86,12.67,12.46,12.27,11.88,N/A,N/A -2012,11,16,17,30,102620,101400,100210,67.42,0,7.44,7.88,7.97,8,8.02,8.03,8.03,8.02,8.01,29.43,29.650000000000002,29.8,29.93,30.060000000000002,30.17,30.29,30.39,30.62,14.55,13.92,13.68,13.46,13.24,13.05,12.84,12.65,12.25,N/A,N/A -2012,11,16,18,30,102610,101380,100190,62.78,0,6.58,6.97,7.0600000000000005,7.1000000000000005,7.13,7.15,7.17,7.18,7.19,31.240000000000002,31.32,31.37,31.41,31.44,31.470000000000002,31.5,31.53,31.580000000000002,15.1,14.51,14.280000000000001,14.06,13.84,13.65,13.44,13.25,12.85,N/A,N/A -2012,11,16,19,30,102580,101360,100180,59.33,0,5.94,6.3100000000000005,6.4,6.45,6.49,6.5200000000000005,6.54,6.5600000000000005,6.6000000000000005,33.83,33.58,33.410000000000004,33.25,33.09,32.94,32.79,32.65,32.35,15.75,15.21,14.98,14.77,14.56,14.36,14.16,13.96,13.57,N/A,N/A -2012,11,16,20,30,102560,101340,100160,56.08,0,5.33,5.66,5.75,5.8100000000000005,5.8500000000000005,5.89,5.92,5.95,6,36.980000000000004,36.39,36.04,35.72,35.4,35.12,34.83,34.56,34.03,16.47,15.96,15.74,15.530000000000001,15.32,15.13,14.92,14.73,14.34,N/A,N/A -2012,11,16,21,30,102540,101320,100140,54.660000000000004,0,5.25,5.57,5.64,5.69,5.72,5.75,5.7700000000000005,5.79,5.83,43.480000000000004,42.83,42.410000000000004,42.02,41.660000000000004,41.33,40.97,40.660000000000004,40.02,17.09,16.61,16.4,16.19,15.98,15.790000000000001,15.58,15.39,15,N/A,N/A -2012,11,16,22,30,102530,101320,100140,52.94,0,5.54,5.9,5.98,6.04,6.09,6.12,6.15,6.17,6.22,39.44,38.84,38.480000000000004,38.15,37.86,37.6,37.34,37.11,36.660000000000004,17.68,17.21,17.01,16.8,16.59,16.4,16.19,16,15.6,N/A,N/A -2012,11,16,23,30,102540,101330,100150,51.660000000000004,0,5.87,6.24,6.32,6.37,6.41,6.43,6.45,6.47,6.49,36.5,35.96,35.72,35.5,35.31,35.13,34.96,34.800000000000004,34.49,17.93,17.46,17.25,17.05,16.84,16.65,16.44,16.240000000000002,15.85,N/A,N/A -2012,11,17,0,30,102570,101360,100180,52.21,0,7.07,7.48,7.54,7.5600000000000005,7.5600000000000005,7.5600000000000005,7.54,7.53,7.48,22.330000000000002,22.76,23.02,23.26,23.490000000000002,23.71,23.93,24.14,24.57,17.64,17.14,16.93,16.72,16.51,16.32,16.11,15.92,15.530000000000001,N/A,N/A -2012,11,17,1,30,102600,101380,100210,56.26,0,7.54,8.02,8.11,8.14,8.15,8.16,8.15,8.14,8.1,27.11,27.38,27.57,27.75,27.91,28.060000000000002,28.21,28.35,28.64,17.28,16.76,16.54,16.330000000000002,16.12,15.92,15.71,15.52,15.120000000000001,N/A,N/A -2012,11,17,2,30,102620,101400,100220,59.54,0,8.14,8.68,8.78,8.83,8.84,8.85,8.85,8.84,8.81,29,29.51,29.82,30.11,30.39,30.64,30.900000000000002,31.150000000000002,31.64,16.96,16.41,16.19,15.98,15.76,15.57,15.36,15.17,14.77,N/A,N/A -2012,11,17,3,30,102630,101410,100230,62.13,0,8.41,8.98,9.09,9.14,9.16,9.16,9.16,9.15,9.11,34.75,35.09,35.29,35.480000000000004,35.660000000000004,35.82,35.99,36.15,36.480000000000004,16.61,16.04,15.81,15.6,15.38,15.19,14.98,14.780000000000001,14.39,N/A,N/A -2012,11,17,4,30,102620,101400,100220,63.6,0,8.07,8.59,8.69,8.73,8.74,8.74,8.74,8.73,8.69,38.2,38.71,39.02,39.31,39.58,39.83,40.1,40.34,40.85,16.57,16,15.780000000000001,15.56,15.35,15.15,14.94,14.75,14.36,N/A,N/A -2012,11,17,5,30,102630,101410,100230,66.15,0,7.930000000000001,8.45,8.56,8.61,8.63,8.65,8.66,8.66,8.64,44.35,44.85,45.14,45.410000000000004,45.660000000000004,45.89,46.13,46.34,46.79,16.580000000000002,16.02,15.790000000000001,15.57,15.36,15.17,14.96,14.76,14.370000000000001,N/A,N/A -2012,11,17,6,30,102640,101420,100240,64.28,0,7.6000000000000005,8.09,8.19,8.24,8.26,8.27,8.27,8.27,8.25,47.38,47.65,47.81,47.96,48.1,48.22,48.35,48.47,48.71,16.53,15.99,15.77,15.55,15.34,15.15,14.94,14.74,14.35,N/A,N/A -2012,11,17,7,30,102660,101440,100260,63.27,0,7.99,8.53,8.64,8.69,8.71,8.73,8.72,8.72,8.700000000000001,48.56,48.94,49.18,49.410000000000004,49.620000000000005,49.81,50.02,50.2,50.59,16.42,15.870000000000001,15.65,15.43,15.22,15.030000000000001,14.82,14.63,14.23,N/A,N/A -2012,11,17,8,30,102650,101440,100250,63.21,0,7.640000000000001,8.14,8.23,8.27,8.290000000000001,8.3,8.3,8.3,8.27,51.47,51.870000000000005,52.120000000000005,52.35,52.550000000000004,52.74,52.94,53.13,53.5,16.39,15.84,15.620000000000001,15.41,15.200000000000001,15,14.790000000000001,14.6,14.200000000000001,N/A,N/A -2012,11,17,9,30,102650,101430,100250,60.92,0,7.43,7.9,7.98,8.02,8.040000000000001,8.040000000000001,8.040000000000001,8.03,8,50.85,51.17,51.370000000000005,51.550000000000004,51.72,51.870000000000005,52.04,52.19,52.49,16.35,15.81,15.59,15.38,15.17,14.97,14.76,14.57,14.18,N/A,N/A -2012,11,17,10,30,102670,101450,100260,61.54,0,6.97,7.38,7.45,7.48,7.49,7.49,7.49,7.48,7.45,52.33,52.76,53.03,53.27,53.51,53.71,53.94,54.14,54.57,16.2,15.66,15.44,15.23,15.02,14.83,14.620000000000001,14.43,14.030000000000001,N/A,N/A -2012,11,17,11,30,102660,101450,100260,65.25,0,6.73,7.11,7.18,7.21,7.22,7.22,7.21,7.21,7.18,51.89,52.410000000000004,52.72,53.01,53.28,53.52,53.79,54.03,54.53,16.09,15.56,15.34,15.13,14.92,14.72,14.51,14.32,13.93,N/A,N/A -2012,11,17,12,30,102690,101470,100290,67.5,0,6.48,6.8500000000000005,6.91,6.93,6.94,6.94,6.93,6.92,6.88,51.52,52.19,52.59,52.97,53.33,53.64,53.99,54.31,54.97,16.080000000000002,15.55,15.33,15.120000000000001,14.91,14.71,14.51,14.31,13.92,N/A,N/A -2012,11,17,13,30,102690,101470,100290,68.8,0,6.41,6.76,6.8100000000000005,6.83,6.84,6.83,6.82,6.8100000000000005,6.78,48.980000000000004,49.74,50.2,50.63,51.03,51.4,51.79,52.14,52.870000000000005,16.03,15.5,15.280000000000001,15.07,14.86,14.67,14.46,14.27,13.88,N/A,N/A -2012,11,17,14,30,102720,101500,100320,70.69,0,6.74,7.12,7.18,7.21,7.21,7.21,7.2,7.19,7.15,49.74,50.58,51.09,51.57,52.02,52.42,52.85,53.24,54.03,16.01,15.47,15.25,15.030000000000001,14.82,14.63,14.42,14.23,13.84,N/A,N/A -2012,11,17,15,30,102740,101520,100330,72.2,0,6.5200000000000005,6.88,6.93,6.95,6.95,6.95,6.93,6.92,6.88,49.57,50.53,51.11,51.64,52.15,52.61,53.1,53.550000000000004,54.47,15.98,15.44,15.22,15.01,14.8,14.61,14.4,14.21,13.82,N/A,N/A -2012,11,17,16,30,102730,101510,100320,72.13,0,6.11,6.42,6.47,6.48,6.48,6.47,6.45,6.44,6.4,46.980000000000004,47.95,48.52,49.050000000000004,49.56,50.02,50.52,50.980000000000004,51.93,15.97,15.44,15.22,15.02,14.81,14.620000000000001,14.41,14.22,13.83,N/A,N/A -2012,11,17,17,30,102720,101500,100310,72.55,0,5.66,5.95,5.99,6.01,6.01,6.01,6,5.99,5.96,46.74,47.75,48.36,48.92,49.47,49.96,50.480000000000004,50.96,51.96,16.15,15.64,15.42,15.21,15.01,14.82,14.61,14.42,14.030000000000001,N/A,N/A -2012,11,17,18,30,102710,101490,100310,71.59,0,5.28,5.53,5.57,5.58,5.58,5.57,5.5600000000000005,5.55,5.51,48.14,49.01,49.52,50.01,50.47,50.88,51.33,51.75,52.6,16.3,15.8,15.59,15.38,15.18,14.99,14.780000000000001,14.59,14.200000000000001,N/A,N/A -2012,11,17,19,30,102700,101480,100300,67.65,0,4.79,5.01,5.04,5.05,5.05,5.05,5.04,5.03,5.01,49.63,50.27,50.660000000000004,51.02,51.38,51.7,52.06,52.39,53.1,16.51,16.03,15.82,15.610000000000001,15.41,15.22,15.01,14.82,14.43,N/A,N/A -2012,11,17,20,30,102660,101440,100260,63.02,0,4.0200000000000005,4.2,4.23,4.24,4.24,4.25,4.24,4.24,4.23,52.32,52.67,52.85,53.02,53.18,53.33,53.51,53.660000000000004,54.02,16.84,16.37,16.17,15.97,15.76,15.57,15.370000000000001,15.18,14.790000000000001,N/A,N/A -2012,11,17,21,30,102650,101430,100250,58.9,0,3.83,4.01,4.04,4.0600000000000005,4.07,4.07,4.07,4.07,4.07,69.72,69.83,69.84,69.84,69.84,69.84,69.84,69.85000000000001,69.86,17.26,16.82,16.62,16.43,16.22,16.04,15.84,15.65,15.27,N/A,N/A -2012,11,17,22,30,102620,101410,100230,55.25,0,3.75,3.92,3.96,3.97,3.98,3.98,3.98,3.98,3.99,89.08,88.75,88.52,88.29,88.05,87.82000000000001,87.53,87.25,86.55,17.68,17.26,17.07,16.87,16.67,16.490000000000002,16.3,16.12,15.75,N/A,N/A -2012,11,17,23,30,102610,101400,100220,51.800000000000004,0,3.24,3.4,3.42,3.44,3.45,3.46,3.46,3.47,3.48,74.84,74.41,74.14,73.87,73.61,73.36,73.08,72.82000000000001,72.2,18.1,17.69,17.5,17.3,17.1,16.92,16.72,16.53,16.14,N/A,N/A -2012,11,18,0,30,102610,101400,100220,52.32,0,3.37,3.5500000000000003,3.58,3.6,3.62,3.63,3.64,3.65,3.66,61.730000000000004,61.64,61.56,61.47,61.38,61.31,61.22,61.13,60.93,18.36,17.96,17.77,17.57,17.37,17.18,16.98,16.79,16.4,N/A,N/A -2012,11,18,1,30,102590,101390,100210,53.21,0,3.93,4.16,4.21,4.25,4.2700000000000005,4.29,4.3100000000000005,4.32,4.3500000000000005,53.04,53.17,53.24,53.28,53.33,53.38,53.410000000000004,53.44,53.51,18.54,18.14,17.95,17.75,17.55,17.36,17.16,16.97,16.580000000000002,N/A,N/A -2012,11,18,2,30,102590,101380,100210,52.300000000000004,0,4.93,5.24,5.3,5.34,5.37,5.39,5.4,5.41,5.43,55.53,55.63,55.67,55.71,55.75,55.78,55.82,55.85,55.910000000000004,18.78,18.37,18.18,17.98,17.78,17.6,17.39,17.2,16.81,N/A,N/A -2012,11,18,3,30,102580,101380,100210,49.06,0,5.68,6.0600000000000005,6.13,6.17,6.2,6.21,6.22,6.23,6.23,51.27,51.79,52.15,52.49,52.83,53.13,53.44,53.730000000000004,54.32,19.06,18.66,18.47,18.27,18.07,17.88,17.68,17.490000000000002,17.09,N/A,N/A -2012,11,18,4,30,102570,101360,100190,54.81,0,5.67,5.97,6.01,6.0200000000000005,6.01,6,5.98,5.96,5.91,39.25,40.18,40.75,41.300000000000004,41.84,42.34,42.910000000000004,43.44,44.64,18.400000000000002,17.97,17.78,17.580000000000002,17.38,17.2,17,16.81,16.43,N/A,N/A -2012,11,18,5,30,102550,101350,100180,51.410000000000004,0,5.96,6.36,6.45,6.49,6.53,6.55,6.5600000000000005,6.58,6.59,67.65,68.13,68.45,68.74,69.02,69.27,69.53,69.78,70.27,19,18.6,18.41,18.21,18.01,17.82,17.61,17.42,17.03,N/A,N/A -2012,11,18,6,30,102540,101340,100160,53.36,0,6.91,7.38,7.48,7.53,7.55,7.57,7.57,7.57,7.5600000000000005,77.45,77.63,77.74,77.84,77.92,78.01,78.09,78.16,78.32000000000001,18.85,18.43,18.240000000000002,18.04,17.830000000000002,17.64,17.44,17.25,16.86,N/A,N/A -2012,11,18,7,30,102560,101350,100180,55.550000000000004,0,7.04,7.53,7.640000000000001,7.68,7.72,7.73,7.74,7.74,7.73,82.15,82.37,82.48,82.59,82.68,82.77,82.86,82.94,83.10000000000001,18.650000000000002,18.22,18.02,17.82,17.62,17.43,17.22,17.03,16.64,N/A,N/A -2012,11,18,8,30,102540,101330,100160,57.58,0,6.61,7.0600000000000005,7.15,7.2,7.22,7.24,7.25,7.25,7.25,84.64,84.85000000000001,84.99,85.12,85.25,85.37,85.49,85.60000000000001,85.82000000000001,18.51,18.080000000000002,17.88,17.67,17.47,17.28,17.080000000000002,16.89,16.490000000000002,N/A,N/A -2012,11,18,9,30,102530,101320,100150,58.910000000000004,0,6.18,6.58,6.66,6.7,6.72,6.74,6.74,6.74,6.74,86.4,86.55,86.65,86.75,86.84,86.92,87.01,87.09,87.26,18.43,18,17.81,17.6,17.400000000000002,17.21,17.01,16.82,16.42,N/A,N/A -2012,11,18,10,30,102540,101330,100160,59.050000000000004,0,6.0600000000000005,6.44,6.5200000000000005,6.55,6.5600000000000005,6.58,6.58,6.57,6.5600000000000005,90.21000000000001,90.35000000000001,90.43,90.52,90.60000000000001,90.68,90.77,90.85000000000001,91.03,18.47,18.04,17.84,17.64,17.43,17.240000000000002,17.04,16.85,16.45,N/A,N/A -2012,11,18,11,30,102530,101330,100160,60.15,0,6.19,6.58,6.66,6.7,6.72,6.74,6.74,6.75,6.74,89.24,89.45,89.57000000000001,89.7,89.8,89.9,90,90.10000000000001,90.3,18.41,17.98,17.78,17.580000000000002,17.38,17.19,16.98,16.79,16.4,N/A,N/A -2012,11,18,12,30,102540,101330,100160,61.34,0,5.86,6.23,6.3100000000000005,6.3500000000000005,6.38,6.4,6.41,6.41,6.42,90.71000000000001,90.78,90.85000000000001,90.92,91,91.07000000000001,91.15,91.22,91.39,18.400000000000002,17.97,17.77,17.57,17.37,17.18,16.97,16.78,16.39,N/A,N/A -2012,11,18,13,30,102540,101330,100160,59.730000000000004,0,5.14,5.44,5.51,5.54,5.5600000000000005,5.58,5.58,5.59,5.6000000000000005,101.84,101.01,100.55,100.15,99.78,99.45,99.12,98.81,98.24000000000001,18.47,18.05,17.85,17.650000000000002,17.45,17.26,17.06,16.87,16.47,N/A,N/A -2012,11,18,14,30,102560,101360,100180,61.730000000000004,0,5.09,5.4,5.48,5.5200000000000005,5.55,5.57,5.58,5.6000000000000005,5.62,94.82000000000001,94.9,94.88,94.83,94.78,94.74,94.71000000000001,94.67,94.63,18.5,18.09,17.900000000000002,17.7,17.490000000000002,17.3,17.1,16.91,16.51,N/A,N/A -2012,11,18,15,30,102570,101360,100190,64.01,0,5.07,5.32,5.36,5.36,5.36,5.36,5.3500000000000005,5.34,5.32,91.18,91.73,92.01,92.24,92.46000000000001,92.66,92.89,93.10000000000001,93.54,18.45,18.04,17.84,17.64,17.45,17.26,17.06,16.87,16.48,N/A,N/A -2012,11,18,16,30,102550,101350,100180,62.95,0,4.3500000000000005,4.61,4.67,4.7,4.73,4.75,4.76,4.78,4.8,98.59,97.55,96.99000000000001,96.51,96.09,95.73,95.39,95.08,94.52,18.59,18.18,17.990000000000002,17.79,17.59,17.400000000000002,17.19,17,16.61,N/A,N/A -2012,11,18,17,30,102540,101340,100170,66.34,0,4.89,5.14,5.18,5.19,5.19,5.19,5.18,5.17,5.14,85.45,86.04,86.44,86.8,87.14,87.44,87.74,88.02,88.59,18.5,18.09,17.89,17.69,17.490000000000002,17.3,17.09,16.9,16.51,N/A,N/A -2012,11,18,18,30,102540,101330,100160,64.99,0,4.62,4.88,4.93,4.96,4.97,4.99,4.99,5,5,90.44,90.15,90.03,89.94,89.87,89.82000000000001,89.77,89.72,89.64,18.54,18.14,17.94,17.740000000000002,17.53,17.35,17.14,16.95,16.56,N/A,N/A -2012,11,18,19,30,102520,101310,100140,63.86,0,4.68,4.93,4.97,4.98,4.99,4.99,4.98,4.98,4.96,82.43,82.81,83.02,83.21000000000001,83.39,83.55,83.73,83.89,84.25,18.53,18.12,17.93,17.73,17.53,17.34,17.13,16.95,16.55,N/A,N/A -2012,11,18,20,30,102500,101290,100120,64.63,0,4.86,5.11,5.14,5.15,5.15,5.14,5.12,5.11,5.07,84.44,84.83,85.05,85.25,85.45,85.63,85.82000000000001,86,86.37,18.490000000000002,18.080000000000002,17.89,17.68,17.490000000000002,17.3,17.09,16.91,16.51,N/A,N/A -2012,11,18,21,30,102470,101270,100100,63.4,0,4.91,5.15,5.19,5.19,5.19,5.18,5.16,5.14,5.1000000000000005,84.29,84.61,84.77,84.93,85.08,85.21000000000001,85.37,85.51,85.83,18.41,18,17.8,17.6,17.400000000000002,17.21,17.01,16.82,16.43,N/A,N/A -2012,11,18,22,30,102460,101260,100090,61.550000000000004,0,5.17,5.44,5.48,5.49,5.49,5.48,5.47,5.45,5.4,91.92,92.02,92.06,92.09,92.12,92.15,92.18,92.21000000000001,92.27,18.45,18.03,17.84,17.64,17.44,17.26,17.06,16.87,16.48,N/A,N/A -2012,11,18,23,30,102450,101250,100080,55.22,0,5.0600000000000005,5.33,5.37,5.39,5.39,5.39,5.38,5.37,5.34,97.96000000000001,97.89,97.83,97.75,97.69,97.62,97.53,97.45,97.23,18.650000000000002,18.25,18.06,17.86,17.67,17.48,17.28,17.1,16.72,N/A,N/A -2012,11,19,0,30,102450,101240,100070,52.42,0,5.45,5.78,5.8500000000000005,5.88,5.9,5.91,5.92,5.92,5.92,95.78,95.56,95.44,95.31,95.18,95.06,94.91,94.77,94.45,18.78,18.38,18.19,17.990000000000002,17.79,17.61,17.41,17.22,16.830000000000002,N/A,N/A -2012,11,19,1,30,102450,101240,100070,49.32,0,6.07,6.48,6.57,6.61,6.640000000000001,6.67,6.68,6.69,6.7,94.88,94.74,94.64,94.53,94.43,94.34,94.23,94.12,93.87,18.98,18.580000000000002,18.39,18.2,18,17.81,17.61,17.42,17.03,N/A,N/A -2012,11,19,2,30,102450,101250,100080,51.660000000000004,0,5.91,6.3100000000000005,6.390000000000001,6.43,6.45,6.47,6.48,6.49,6.49,92,91.94,91.88,91.82000000000001,91.76,91.71000000000001,91.65,91.59,91.47,19.03,18.63,18.45,18.25,18.05,17.86,17.66,17.47,17.080000000000002,N/A,N/A -2012,11,19,3,30,102460,101250,100080,52.94,0,6.08,6.49,6.58,6.62,6.65,6.67,6.68,6.69,6.69,93.58,93.65,93.68,93.71000000000001,93.73,93.75,93.78,93.8,93.83,19.06,18.66,18.47,18.27,18.07,17.88,17.68,17.490000000000002,17.1,N/A,N/A -2012,11,19,4,30,102440,101230,100070,54.29,0,5.46,5.83,5.91,5.95,5.98,6,6.0200000000000005,6.03,6.05,96.01,96.26,96.4,96.52,96.63,96.72,96.82000000000001,96.91,97.08,19.06,18.68,18.490000000000002,18.28,18.09,17.900000000000002,17.69,17.51,17.11,N/A,N/A -2012,11,19,5,30,102430,101230,100060,56.2,0,5.25,5.59,5.67,5.72,5.75,5.78,5.8,5.8100000000000005,5.83,106.25,106.01,105.84,105.68,105.54,105.42,105.3,105.19,104.97,19.17,18.79,18.6,18.400000000000002,18.2,18.01,17.8,17.62,17.22,N/A,N/A -2012,11,19,6,30,102440,101230,100070,52.88,0,4.8500000000000005,5.14,5.2,5.22,5.24,5.25,5.26,5.26,5.26,106.47,106.48,106.53,106.59,106.64,106.67,106.71000000000001,106.75,106.81,19.25,18.87,18.69,18.490000000000002,18.29,18.1,17.900000000000002,17.71,17.32,N/A,N/A -2012,11,19,7,30,102450,101250,100080,56.22,0,4.22,4.47,4.53,4.5600000000000005,4.59,4.61,4.63,4.64,4.67,110.37,110.39,110.45,110.54,110.61,110.69,110.77,110.84,111.02,19.17,18.8,18.62,18.42,18.22,18.03,17.830000000000002,17.64,17.25,N/A,N/A -2012,11,19,8,30,102440,101230,100070,63.4,0,4.25,4.5200000000000005,4.58,4.62,4.65,4.67,4.69,4.7,4.72,113.85000000000001,113.96000000000001,114.03,114.09,114.14,114.19,114.23,114.27,114.36,19.14,18.76,18.580000000000002,18.38,18.18,17.990000000000002,17.79,17.6,17.2,N/A,N/A -2012,11,19,9,30,102430,101230,100070,63.53,0,4.15,4.39,4.45,4.48,4.5,4.51,4.5200000000000005,4.5200000000000005,4.53,110.11,110.4,110.52,110.60000000000001,110.67,110.73,110.77,110.8,110.86,19.22,18.85,18.66,18.46,18.26,18.07,17.87,17.68,17.29,N/A,N/A -2012,11,19,10,30,102420,101210,100050,59.46,0,4.04,4.25,4.28,4.3,4.32,4.32,4.32,4.33,4.33,112.99000000000001,113.16,113.3,113.43,113.55,113.66,113.78,113.9,114.12,19.29,18.93,18.740000000000002,18.54,18.34,18.16,17.95,17.77,17.38,N/A,N/A -2012,11,19,11,30,102420,101220,100060,62.26,0,3.5500000000000003,3.74,3.79,3.81,3.83,3.85,3.86,3.87,3.88,111.17,111.41,111.56,111.72,111.86,111.98,112.12,112.26,112.53,19.31,18.95,18.77,18.57,18.37,18.18,17.98,17.8,17.400000000000002,N/A,N/A -2012,11,19,12,30,102420,101220,100050,68.56,0,3.5100000000000002,3.68,3.71,3.73,3.74,3.74,3.74,3.74,3.74,111.74000000000001,112.10000000000001,112.3,112.48,112.63,112.77,112.92,113.04,113.3,19.22,18.86,18.67,18.47,18.27,18.09,17.88,17.7,17.31,N/A,N/A -2012,11,19,13,30,102420,101220,100050,72.36,0,3.95,4.15,4.19,4.21,4.22,4.22,4.22,4.22,4.22,93.39,94.27,94.83,95.36,95.86,96.31,96.76,97.18,98.03,19.2,18.830000000000002,18.650000000000002,18.44,18.25,18.06,17.86,17.67,17.28,N/A,N/A -2012,11,19,14,30,102450,101250,100080,66.86,0,3.98,4.2,4.25,4.2700000000000005,4.29,4.3,4.3100000000000005,4.3100000000000005,4.32,117.52,117.04,116.8,116.58,116.4,116.24000000000001,116.09,115.96000000000001,115.68,19.38,19.02,18.84,18.64,18.44,18.25,18.05,17.86,17.47,N/A,N/A -2012,11,19,15,30,102440,101240,100070,72.56,0,3.75,3.94,3.97,3.99,3.99,3.99,3.99,3.98,3.96,102.62,102.96000000000001,103.25,103.53,103.79,104.03,104.29,104.51,105,19.25,18.88,18.69,18.5,18.3,18.11,17.91,17.72,17.330000000000002,N/A,N/A -2012,11,19,16,30,102440,101240,100070,75.72,0,3.74,3.9,3.92,3.92,3.91,3.9,3.88,3.87,3.83,98.83,99.09,99.24000000000001,99.4,99.54,99.67,99.8,99.92,100.19,19.14,18.77,18.59,18.38,18.19,18,17.79,17.61,17.22,N/A,N/A -2012,11,19,17,30,102430,101230,100070,75.86,0,3.3200000000000003,3.48,3.52,3.54,3.56,3.56,3.5700000000000003,3.58,3.59,87.54,88.09,88.42,88.7,88.95,89.17,89.38,89.57000000000001,89.98,19.12,18.75,18.56,18.36,18.16,17.97,17.77,17.580000000000002,17.19,N/A,N/A -2012,11,19,18,30,102420,101220,100050,76.16,0,3.23,3.38,3.41,3.42,3.43,3.44,3.44,3.44,3.44,83.83,83.78,83.82000000000001,83.83,83.83,83.81,83.77,83.72,83.63,19.12,18.75,18.57,18.36,18.17,17.98,17.78,17.59,17.2,N/A,N/A -2012,11,19,19,30,102390,101190,100030,76,0,2.8000000000000003,2.91,2.93,2.93,2.93,2.92,2.92,2.91,2.89,83.58,83.45,83.39,83.38,83.39,83.41,83.44,83.48,83.67,19.13,18.76,18.580000000000002,18.38,18.18,18,17.79,17.61,17.22,N/A,N/A -2012,11,19,20,30,102340,101150,99980,78.15,0,3.31,3.48,3.5100000000000002,3.52,3.5300000000000002,3.5300000000000002,3.5300000000000002,3.5300000000000002,3.5300000000000002,92.84,92.97,93.08,93.19,93.3,93.4,93.5,93.59,93.79,19.17,18.79,18.61,18.41,18.21,18.02,17.82,17.63,17.240000000000002,N/A,N/A -2012,11,19,21,30,102330,101130,99960,80.89,0,3.66,3.8200000000000003,3.84,3.83,3.8200000000000003,3.81,3.79,3.7800000000000002,3.73,97.52,97.75,97.91,98.08,98.25,98.41,98.59,98.77,99.18,19.07,18.7,18.51,18.31,18.11,17.92,17.72,17.54,17.150000000000002,N/A,N/A -2012,11,19,22,30,102290,101100,99930,79.84,0,3.42,3.59,3.62,3.63,3.64,3.64,3.64,3.63,3.62,103.43,103.79,103.99000000000001,104.21000000000001,104.44,104.65,104.89,105.11,105.66,19.13,18.77,18.580000000000002,18.39,18.19,18,17.8,17.62,17.23,N/A,N/A -2012,11,19,23,30,102270,101070,99910,77.08,0,3.56,3.72,3.75,3.7600000000000002,3.7600000000000002,3.75,3.74,3.73,3.7,119.26,119.38,119.49000000000001,119.58,119.68,119.78,119.89,119.99000000000001,120.22,19.36,19,18.82,18.62,18.43,18.240000000000002,18.04,17.85,17.47,N/A,N/A -2012,11,20,0,30,102280,101090,99930,79.16,0,3.15,3.3000000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.3200000000000003,3.31,3.31,3.29,120.97,121.18,121.34,121.48,121.62,121.75,121.88,122,122.27,19.39,19.03,18.85,18.650000000000002,18.46,18.27,18.07,17.89,17.5,N/A,N/A -2012,11,20,1,30,102270,101070,99910,79.79,0,2.66,2.7600000000000002,2.7800000000000002,2.7800000000000002,2.7800000000000002,2.77,2.7600000000000002,2.7600000000000002,2.74,119.21000000000001,119.53,119.78,120,120.22,120.43,120.65,120.85000000000001,121.3,19.39,19.04,18.86,18.66,18.47,18.28,18.080000000000002,17.89,17.51,N/A,N/A -2012,11,20,2,30,102280,101080,99920,79.89,0,2.36,2.44,2.44,2.44,2.43,2.42,2.41,2.39,2.36,119.4,119.64,119.82000000000001,119.99000000000001,120.15,120.29,120.45,120.59,120.87,19.400000000000002,19.05,18.87,18.68,18.48,18.29,18.1,17.91,17.53,N/A,N/A -2012,11,20,3,30,102260,101060,99900,78.52,0,1.95,2.0100000000000002,2.02,2.02,2.0100000000000002,2.0100000000000002,2,1.99,1.97,109.97,110.61,110.96000000000001,111.3,111.62,111.94,112.26,112.56,113.24000000000001,19.41,19.07,18.900000000000002,18.7,18.5,18.32,18.12,17.93,17.55,N/A,N/A -2012,11,20,4,30,102240,101050,99890,76.77,0,1.77,1.83,1.83,1.82,1.82,1.81,1.8,1.79,1.77,111.9,112,112.07000000000001,112.14,112.19,112.23,112.27,112.3,112.36,19.45,19.12,18.94,18.740000000000002,18.55,18.36,18.16,17.98,17.59,N/A,N/A -2012,11,20,5,30,102240,101040,99880,75.4,0,1.74,1.79,1.79,1.79,1.79,1.78,1.77,1.77,1.75,104.37,104.82000000000001,105.06,105.3,105.53,105.74000000000001,105.96000000000001,106.16,106.63,19.47,19.13,18.95,18.75,18.56,18.37,18.17,17.990000000000002,17.6,N/A,N/A -2012,11,20,6,30,102240,101050,99890,77.19,0,1.53,1.57,1.57,1.56,1.55,1.54,1.54,1.53,1.5,79.82000000000001,79.94,80.05,80.15,80.24,80.33,80.42,80.5,80.7,19.42,19.09,18.91,18.71,18.52,18.330000000000002,18.13,17.95,17.56,N/A,N/A -2012,11,20,7,30,102240,101040,99880,75.88,0,1.21,1.22,1.21,1.2,1.19,1.17,1.16,1.1500000000000001,1.12,86.9,87.10000000000001,87.31,87.54,87.74,87.93,88.16,88.38,88.89,19.43,19.1,18.92,18.72,18.53,18.34,18.14,17.96,17.57,N/A,N/A -2012,11,20,8,30,102230,101030,99870,75.06,0,1.78,1.82,1.81,1.79,1.78,1.76,1.74,1.72,1.68,88.18,88.49,88.68,88.88,89.07000000000001,89.24,89.43,89.61,90.02,19.41,19.080000000000002,18.900000000000002,18.7,18.5,18.32,18.12,17.94,17.55,N/A,N/A -2012,11,20,9,30,102240,101040,99880,74.45,0,1.35,1.36,1.35,1.32,1.3,1.28,1.26,1.24,1.18,76.29,76.99,77.46000000000001,77.93,78.39,78.83,79.31,79.76,80.83,19.400000000000002,19.07,18.89,18.69,18.5,18.31,18.11,17.93,17.54,N/A,N/A -2012,11,20,10,30,102240,101040,99880,73.79,0,1.31,1.32,1.31,1.29,1.28,1.26,1.24,1.22,1.17,77.87,77.7,77.66,77.62,77.58,77.54,77.52,77.49,77.43,19.400000000000002,19.07,18.89,18.69,18.5,18.32,18.12,17.94,17.55,N/A,N/A -2012,11,20,11,30,102260,101060,99900,75.23,0,1.23,1.25,1.24,1.22,1.2,1.19,1.17,1.1500000000000001,1.1,72.5,72.92,73.14,73.36,73.56,73.75,73.93,74.09,74.37,19.39,19.06,18.88,18.68,18.490000000000002,18.31,18.11,17.92,17.54,N/A,N/A -2012,11,20,12,30,102260,101070,99900,74.74,0,2.06,2.12,2.12,2.11,2.09,2.08,2.06,2.04,2,62.52,62.49,62.54,62.58,62.61,62.620000000000005,62.61,62.59,62.5,19.44,19.1,18.93,18.73,18.53,18.35,18.150000000000002,17.96,17.580000000000002,N/A,N/A -2012,11,20,13,30,102290,101090,99930,75.41,0,2.11,2.17,2.17,2.15,2.14,2.12,2.11,2.09,2.04,60.17,60.18,60.17,60.15,60.11,60.08,60.01,59.94,59.64,19.43,19.09,18.91,18.72,18.52,18.34,18.14,17.96,17.57,N/A,N/A -2012,11,20,14,30,102280,101090,99920,76.09,0,1.49,1.51,1.5,1.48,1.46,1.44,1.42,1.3900000000000001,1.32,84.66,85.4,85.8,86.23,86.65,87.05,87.5,87.91,88.82000000000001,19.39,19.06,18.89,18.69,18.5,18.31,18.11,17.93,17.56,N/A,N/A -2012,11,20,15,30,102310,101110,99950,77.97,0,3.06,3.16,3.17,3.16,3.14,3.12,3.1,3.0700000000000003,3.02,52.230000000000004,52.26,52.24,52.230000000000004,52.19,52.160000000000004,52.1,52.04,51.82,19.39,19.04,18.86,18.67,18.47,18.28,18.09,17.91,17.52,N/A,N/A -2012,11,20,16,30,102280,101080,99920,85.92,0,2.62,2.68,2.67,2.64,2.61,2.58,2.5500000000000003,2.5100000000000002,2.42,62.53,62.7,62.82,62.93,63.02,63.11,63.18,63.24,63.26,19.12,18.77,18.59,18.39,18.2,18.02,17.82,17.64,17.26,N/A,N/A -2012,11,20,17,30,102250,101060,99900,87.05,0,2.27,2.31,2.29,2.25,2.22,2.18,2.12,2.07,1.85,74.21000000000001,74.57000000000001,74.72,74.88,75.02,75.14,75.25,75.34,74.28,19,18.64,18.46,18.26,18.07,17.89,17.7,17.52,17.17,N/A,N/A -2012,11,20,18,30,102230,101030,99870,85.43,0,1.48,1.48,1.45,1.42,1.3800000000000001,1.34,1.29,1.25,1.1,83.7,83.60000000000001,83.73,83.83,83.94,84.05,84.12,84.17,84.11,19.13,18.78,18.6,18.400000000000002,18.21,18.03,17.830000000000002,17.650000000000002,17.28,N/A,N/A -2012,11,20,19,30,102240,101040,99880,84.46000000000001,0,2.5100000000000002,2.56,2.5500000000000003,2.5100000000000002,2.48,2.44,2.4,2.35,2.17,76.17,76.39,76.38,76.37,76.36,76.34,76.23,76.12,74.8,19.25,18.88,18.7,18.5,18.31,18.13,17.93,17.75,17.39,N/A,N/A -2012,11,20,20,30,102200,101010,99850,82.09,0,1.77,1.76,1.72,1.6600000000000001,1.57,1.48,1.19,0.97,1.4000000000000001,107.44,106.82000000000001,106.26,105.5,104.15,102.54,93.23,83.31,348.28000000000003,19.41,19.07,18.89,18.7,18.52,18.35,18.2,18.080000000000002,18.18,N/A,N/A -2012,11,20,21,30,102190,100990,99840,80.76,0,0.68,0.63,0.58,0.5,0.27,0.11,0.36,1.7,2.2,150.28,151.6,152.48,153.96,186.02,209.42000000000002,231.21,325.22,326.69,19.67,19.35,19.18,18.990000000000002,18.830000000000002,18.68,18.77,18.900000000000002,19.04,N/A,N/A -2012,11,20,22,30,102170,100980,99820,81.34,0,1.3,1.29,1.25,1.18,1.01,0.8200000000000001,1.06,1.43,2.12,184.89000000000001,186.16,187.57,189.8,199.99,212.05,254.69,311.04,318.65000000000003,19.84,19.53,19.36,19.18,19.04,18.94,19.09,19.27,19.48,N/A,N/A -2012,11,20,23,30,102180,100980,99830,80.52,0,1.27,1.25,1.21,1.1300000000000001,1.09,1.07,1.28,1.6,2.37,203.59,206.08,209.23000000000002,215.34,240.75,278.5,296.98,311.89,323.71,20,19.7,19.55,19.400000000000002,19.38,19.46,19.490000000000002,19.51,19.96,N/A,N/A -2012,11,21,0,30,102190,101000,99840,80.75,0,1.61,1.61,1.54,1.41,0.98,0.6,0.81,1.18,1.79,177.5,178.26,179.95000000000002,183.16,242.09,298.22,313.1,325.29,333.29,20.16,19.86,19.72,19.580000000000002,19.650000000000002,19.82,20.05,20.27,20.400000000000002,N/A,N/A -2012,11,21,1,30,102200,101010,99860,82.47,0,1.71,1.7,1.61,1.44,1.08,0.74,0.91,1.23,1.98,176.45000000000002,177.08,178.05,179.93,231.36,289.68,309.63,326.5,337.77,20.16,19.86,19.71,19.55,19.64,19.86,20.09,20.29,20.55,N/A,N/A -2012,11,21,2,30,102210,101020,99860,81.35000000000001,0,1.73,1.75,1.73,1.71,1.3900000000000001,1.02,1.11,1.3,2.0300000000000002,209.49,209.92000000000002,210.22,210.44,233.19,259.68,285.81,313.15000000000003,333.21,20.330000000000002,20.03,19.84,19.6,19.57,19.650000000000002,19.92,20.21,20.71,N/A,N/A -2012,11,21,3,30,102210,101020,99870,80.87,0,2.18,2.24,2.22,2.19,2.14,2.09,1.8,1.54,1.07,199.92000000000002,201.04,201.86,202.9,204.35,205.96,215.1,224.44,265.75,20.47,20.17,20.01,19.82,19.64,19.46,19.330000000000002,19.23,19.31,N/A,N/A -2012,11,21,4,30,102220,101030,99880,83.18,0,2.24,2.33,2.33,2.31,2.29,2.27,2.25,2.22,1.77,200.23000000000002,201.62,202.56,203.65,205.01,206.48000000000002,209.88,213.93,248.51000000000002,20.38,20.080000000000002,19.91,19.72,19.53,19.35,19.18,19.02,19.01,N/A,N/A -2012,11,21,5,30,102220,101030,99880,83.65,0,2.3000000000000003,2.41,2.42,2.43,2.43,2.43,2.42,2.42,2.34,221.03,222.12,222.84,223.69,224.77,225.96,228.95000000000002,232.20000000000002,251.86,20.44,20.14,19.97,19.78,19.59,19.42,19.25,19.1,18.990000000000002,N/A,N/A -2012,11,21,6,30,102240,101050,99900,82.27,0,2.04,2.14,2.16,2.18,2.19,2.2,2.22,2.23,2.31,242.79,243.51,243.96,244.46,245.01,245.57,246.38,247.19,252.25,20.64,20.34,20.17,19.98,19.79,19.61,19.41,19.23,18.900000000000002,N/A,N/A -2012,11,21,7,30,102260,101070,99920,83.56,0,2.2,2.33,2.36,2.38,2.4,2.42,2.44,2.46,2.5500000000000003,268.53000000000003,268.65,268.7,268.77,268.88,269.01,269.23,269.46,271,20.73,20.43,20.26,20.06,19.87,19.69,19.490000000000002,19.31,18.94,N/A,N/A -2012,11,21,8,30,102270,101080,99920,85.75,0,2.65,2.82,2.86,2.88,2.9,2.91,2.93,2.94,2.99,293.47,293.18,292.97,292.77,292.56,292.36,292.16,291.99,291.51,20.78,20.48,20.31,20.11,19.92,19.740000000000002,19.54,19.36,18.97,N/A,N/A -2012,11,21,9,30,102280,101090,99940,92.09,0,2.81,2.86,2.83,2.7600000000000002,2.68,2.59,2.56,2.5500000000000003,2.81,316.48,315.56,314.65000000000003,313.25,306.8,297.83,290.72,284.75,283.52,20.13,19.81,19.650000000000002,19.47,19.35,19.26,19.21,19.18,19.080000000000002,N/A,N/A -2012,11,21,10,30,102300,101110,99950,88.71000000000001,0,3.58,3.69,3.67,3.63,3.59,3.5300000000000002,3.49,3.46,3.58,322.27,322.36,322.41,322.46,322.41,322.31,319.87,317.23,313.38,19.98,19.650000000000002,19.48,19.3,19.12,18.97,18.95,18.97,19.17,N/A,N/A -2012,11,21,11,30,102320,101130,99970,87.28,0,4.16,4.32,4.3100000000000005,4.2700000000000005,4.22,4.17,4.11,4.07,4.3100000000000005,333.03000000000003,332.63,332.35,332.01,331.58,331.11,330.06,328.94,325.15000000000003,19.75,19.400000000000002,19.23,19.04,18.86,18.68,18.51,18.38,18.72,N/A,N/A -2012,11,21,12,30,102360,101160,100000,90.25,0,4.23,4.41,4.42,4.41,4.41,4.41,4.5,4.61,4.82,337.82,337.87,337.89,337.93,338.01,338.1,338.27,338.40000000000003,337.14,19.400000000000002,19.04,18.86,18.68,18.5,18.34,18.23,18.17,18.63,N/A,N/A -2012,11,21,13,30,102370,101170,100010,91.38,0,4.73,4.94,4.96,4.94,4.93,4.91,4.95,5.0200000000000005,5.58,349.64,349.63,349.59000000000003,349.54,349.45,349.36,349.06,348.66,346.23,19.31,18.94,18.76,18.57,18.39,18.22,18.07,17.95,18.38,N/A,N/A -2012,11,21,14,30,102400,101190,100030,99.34,0,4.37,4.43,4.38,4.3100000000000005,4.46,4.72,5.11,5.49,5.84,8.3,6.93,5.41,3.08,357.5,350.31,348.27,347.33,350.27,17.96,17.59,17.42,17.26,17.44,17.77,18.19,18.580000000000002,19.1,N/A,N/A -2012,11,21,15,30,102410,101210,100050,99.35000000000001,0,4.04,4.13,4.11,4.09,4.46,5.03,5.42,5.74,5.89,8.45,8.06,7.65,7.0600000000000005,3.14,357.6,354.89,353.2,356.08,17.82,17.44,17.240000000000002,17.01,17.23,17.63,18.26,18.8,19.03,N/A,N/A -2012,11,21,16,30,102400,101190,100030,99.35000000000001,0,3.73,3.83,3.8200000000000003,3.81,4.07,4.46,4.97,5.44,5.59,0.59,0.35000000000000003,0.21,0.06,359.79,359.47,1.01,2.48,1.75,17.830000000000002,17.45,17.27,17.07,17.06,17.13,18.26,19.3,19.43,N/A,N/A -2012,11,21,17,30,102370,101160,100010,99.33,0,3.16,3.22,3.21,3.19,3.6,4.26,4.7,5.0600000000000005,5.15,359.04,358.73,358.47,358.14,357.81,357.44,358.96,0.6900000000000001,4.14,18.02,17.67,17.48,17.25,17.580000000000002,18.12,18.830000000000002,19.42,19.62,N/A,N/A -2012,11,21,18,30,102340,101140,99980,99.41,0,2.58,2.63,2.63,2.65,3.23,4.22,4.5,4.63,4.61,356.6,356.16,355.76,355.2,355.41,356.07,359.06,2.17,8.790000000000001,18.18,17.830000000000002,17.63,17.38,18.150000000000002,19.31,19.66,19.85,19.92,N/A,N/A -2012,11,21,19,30,102310,101110,99960,93.75,0,1.29,1.37,1.6300000000000001,2.39,2.86,3.09,3.34,3.58,3.95,341.68,343.76,346.37,351.98,358.55,4.94,9.49,13.4,17.88,19.23,18.92,18.92,19.1,19.51,20.01,20.2,20.31,20.240000000000002,N/A,N/A -2012,11,21,20,30,102260,101070,99920,90.58,0,0.6900000000000001,0.67,0.71,0.89,1.11,1.3900000000000001,1.6400000000000001,1.9000000000000001,2.31,264.31,269.11,288.19,339.44,7.44,21.29,26.330000000000002,29.43,29.93,20.04,19.740000000000002,19.79,20.11,20.44,20.76,20.85,20.88,20.79,N/A,N/A -2012,11,21,21,30,102230,101040,99890,88.22,0,1.44,1.41,1.25,0.96,0.68,0.47000000000000003,0.44,0.44,0.72,236.54,238.22,243.18,252.48000000000002,266.95,279.75,306.09000000000003,332.7,357.71,20.48,20.19,20.2,20.42,20.71,21.02,21.1,21.13,21.04,N/A,N/A -2012,11,21,22,30,102210,101020,99870,85.77,0,1.81,1.78,1.6500000000000001,1.45,1.27,1.12,1.05,1.01,0.98,219.70000000000002,221.77,226.27,234.65,242.33,249.03,256.93,264.14,280.5,20.79,20.57,20.66,21.01,21.240000000000002,21.39,21.37,21.32,21.14,N/A,N/A -2012,11,21,23,30,102200,101010,99870,87.5,0,2.35,2.33,2.22,2.04,1.81,1.6,1.47,1.37,1.3,204.24,205.35,208.91,216.12,222.78,228.45000000000002,235.64000000000001,242.11,256.47,20.75,20.490000000000002,20.5,20.71,20.96,21.22,21.240000000000002,21.22,21.03,N/A,N/A -2012,11,22,0,30,102210,101020,99870,90.28,0,2.79,2.73,2.5500000000000003,2.27,1.94,1.62,1.36,1.1500000000000001,0.97,186.94,187.34,188.34,190.26,193.59,197.07,204.77,211.73000000000002,236.94,20.5,20.22,20.21,20.37,20.72,21.16,21.27,21.31,21.11,N/A,N/A -2012,11,22,1,30,102210,101020,99870,99.49000000000001,0.4,3.2800000000000002,3.38,3.23,2.93,2.68,2.48,2.24,2.0300000000000002,1.6400000000000001,181.22,189.14000000000001,190.49,187.78,186.67000000000002,186.3,189.15,192.09,201.63,18.17,19.31,19.990000000000002,20.59,20.96,21.21,21.26,21.28,21.1,N/A,N/A -2012,11,22,2,30,102240,101040,99890,99.44,0,2.8000000000000003,2.77,2.72,2.68,2.59,2.49,2.33,2.18,1.8900000000000001,190.91,191.55,193.16,196.47,198.51,199.84,203.3,206.74,217.77,17.900000000000002,17.43,17.86,19.17,20.04,20.67,20.89,21.01,20.93,N/A,N/A -2012,11,22,3,30,102220,101020,99870,99.43,0.4,2.42,2.43,2.58,2.96,3.02,2.94,2.69,2.47,2.14,202.19,203.24,205.32,209.33,212.3,214.43,216.89000000000001,219.26,229.04,17.93,17.42,17.84,18.95,19.84,20.57,20.78,20.89,20.79,N/A,N/A -2012,11,22,4,30,102220,101020,99870,99.31,0,2.19,2.2800000000000002,2.35,2.48,2.71,3.0100000000000002,2.94,2.81,2.43,221.43,221.47,221.95000000000002,223.01,225.79,229.47,230.83,231.86,237.9,18.12,17.71,17.5,17.28,18.22,19.61,20.22,20.61,20.6,N/A,N/A -2012,11,22,5,30,102210,101010,99860,99.42,0,2.58,2.66,2.7,2.7600000000000002,3.04,3.45,3.2600000000000002,3.0300000000000002,2.57,225.88,226.36,226.86,227.67000000000002,229.84,232.84,234.49,235.92000000000002,242.35,18.3,17.92,17.68,17.35,18.080000000000002,19.27,20.01,20.580000000000002,20.68,N/A,N/A -2012,11,22,6,30,102220,101020,99860,99.34,0,2.0100000000000002,2.08,2.11,2.16,2.37,2.69,2.98,3.23,2.87,223.44,224.05,224.41,224.88,226.52,228.85,232.41,236.02,241.59,18.48,18.150000000000002,17.97,17.740000000000002,17.57,17.42,18.7,19.95,20.29,N/A,N/A -2012,11,22,7,30,102220,101020,99860,99.25,0.4,1.47,1.52,1.54,1.57,1.77,2.09,2.62,3.2,3.4,202.53,202.09,202.03,202.04,207.13,215.44,224.86,234.74,243.48000000000002,18.43,18.11,17.94,17.740000000000002,17.63,17.56,18.14,18.75,19.57,N/A,N/A -2012,11,22,8,30,102220,101020,99860,99.24000000000001,0,0.93,1.02,1.06,1.11,1.18,1.27,1.51,1.83,3.38,222.89000000000001,223.97,224.83,225.91,227.44,229.19,233.03,237.56,250.99,18.48,18.16,18.01,17.85,17.67,17.490000000000002,17.19,17.05,18.64,N/A,N/A -2012,11,22,9,30,102210,101010,99850,99.36,0,1.96,1.8900000000000001,1.8,1.7,1.59,1.49,1.37,1.27,1.1400000000000001,117.76,121.53,124.2,127.37,131.53,135.75,143.34,150.8,176.71,18.42,18.09,17.94,17.81,17.67,17.55,17.400000000000002,17.26,16.93,N/A,N/A -2012,11,22,10,30,102220,101020,99860,94.91,0.7000000000000001,1.97,1.8800000000000001,1.79,1.69,1.58,1.47,1.33,1.21,0.87,156.82,156.15,155.5,154.64000000000001,153.38,152.05,150.14000000000001,148.41,144.38,18.44,18.07,17.89,17.71,17.52,17.35,17.18,17.03,16.77,N/A,N/A -2012,11,22,11,30,102220,101020,99860,95.15,0.4,1.21,1.17,1.1300000000000001,1.09,1.04,0.99,0.93,0.87,0.71,126.42,131.21,134.28,137.32,140.36,143.13,147.29,151.31,169.5,18.17,17.8,17.62,17.43,17.240000000000002,17.080000000000002,16.92,16.78,16.55,N/A,N/A -2012,11,22,12,30,102240,101040,99880,95.93,0.7000000000000001,1.96,1.98,1.96,1.93,1.8900000000000001,1.84,1.76,1.69,1.33,127.76,128.2,128.51,128.87,129.14000000000001,129.34,129.03,128.53,127.64,18.07,17.7,17.53,17.34,17.16,17,16.85,16.72,16.47,N/A,N/A -2012,11,22,13,30,102240,101040,99870,95.51,0.7000000000000001,1.97,1.8900000000000001,1.8,1.71,1.61,1.51,1.4000000000000001,1.32,1.52,120.38,119.39,119.16,119.32000000000001,120.43,121.81,126.91,133.24,164.52,17.8,17.43,17.240000000000002,17.06,16.87,16.69,16.5,16.32,16.35,N/A,N/A -2012,11,22,14,30,102270,101070,99910,96.03,1.1,2.44,2.5,2.49,2.47,2.44,2.42,2.37,2.33,2.58,114.85000000000001,114.43,114.08,113.75,113.37,112.98,112.39,114.04,148.08,18.14,17.76,17.580000000000002,17.39,17.19,17.01,16.79,16.62,16.86,N/A,N/A -2012,11,22,15,30,102280,101080,99910,95.87,0.7000000000000001,2.62,2.71,2.71,2.71,2.7,2.69,2.66,2.64,2.94,107.94,109.25,110.2,111.24000000000001,112.49000000000001,113.74000000000001,115.48,117.99000000000001,141.07,18.29,17.93,17.75,17.56,17.38,17.2,17.01,16.84,16.8,N/A,N/A -2012,11,22,16,30,102270,101070,99910,96.62,0,2.84,2.94,2.93,2.91,2.88,2.85,2.8000000000000003,2.77,2.82,121.59,120.62,119.92,119.17,118.34,117.51,116.43,115.94,125.78,18.48,18.12,17.95,17.77,17.6,17.45,17.31,17.17,16.830000000000002,N/A,N/A -2012,11,22,17,30,102240,101040,99880,96.44,0.4,3.99,4.05,4,3.92,3.84,3.75,3.64,3.54,3.34,124.31,125.28,125.95,126.72,127.72,128.76,130.6,132.6,141.43,18.51,18.13,17.95,17.76,17.56,17.38,17.23,17.09,16.81,N/A,N/A -2012,11,22,18,30,102250,101050,99890,96.33,0.7000000000000001,3.36,3.5300000000000002,3.56,3.5700000000000003,3.59,3.59,3.6,3.62,3.72,124.71000000000001,124.31,124.01,123.7,123.37,123.06,122.69,122.37,125.52,18.97,18.61,18.44,18.25,18.05,17.87,17.71,17.56,17.29,N/A,N/A -2012,11,22,19,30,102240,101040,99880,96.67,0,3.85,3.97,3.96,3.92,3.87,3.8200000000000003,3.74,3.7,4.12,125.12,125.04,124.88000000000001,124.69,124.42,124.14,124,125.18,148.28,18.75,18.36,18.16,17.94,17.75,17.580000000000002,17.31,17.13,18.18,N/A,N/A -2012,11,22,20,30,102200,101000,99850,96.72,0,4.23,4.37,4.3500000000000005,4.3100000000000005,4.2700000000000005,4.23,4.39,4.57,5.01,118.66,118.69,118.64,118.59,118.29,117.88,127.96000000000001,138.82,147.88,18.92,18.56,18.38,18.19,18,17.84,18.05,18.31,18.93,N/A,N/A -2012,11,22,21,30,102170,100980,99830,94.08,0,4.67,4.8500000000000005,4.9,4.98,5.44,6.140000000000001,6.37,6.49,6.55,123.95,124.79,125.96000000000001,128.12,134.6,144.09,147.9,150.24,154.29,19.41,19.09,18.95,18.82,18.98,19.28,19.45,19.57,19.52,N/A,N/A -2012,11,22,22,30,102110,100920,99770,87.41,0,5.94,6.38,6.45,6.48,6.48,6.48,6.45,6.44,6.45,127.03,127.65,128.03,128.45,128.89000000000001,129.34,129.99,130.65,135.47,20.29,19.990000000000002,19.82,19.64,19.46,19.28,19.11,18.95,18.76,N/A,N/A -2012,11,22,23,30,102110,100920,99770,74.42,0,5.84,6.3500000000000005,6.48,6.55,6.59,6.62,6.63,6.65,6.7,139.51,139.93,140.1,140.31,140.53,140.76,141.05,141.34,142.22,20.89,20.64,20.48,20.3,20.12,19.94,19.75,19.580000000000002,19.22,N/A,N/A -2012,11,23,0,30,102120,100930,99780,76.18,0,6.12,6.61,6.69,6.73,6.74,6.75,6.7700000000000005,6.79,7,136.78,137.18,137.47,137.79,138.18,138.59,139.22,139.89000000000001,143.41,20.85,20.59,20.44,20.26,20.080000000000002,19.91,19.73,19.56,19.27,N/A,N/A -2012,11,23,1,30,102130,100950,99790,79.14,0,5.22,5.61,5.68,5.71,5.73,5.74,5.7700000000000005,5.8,6,138.07,138.53,138.93,139.42000000000002,140.04,140.72,142.02,143.36,148.98,20.85,20.61,20.46,20.28,20.1,19.93,19.76,19.61,19.35,N/A,N/A -2012,11,23,2,30,102110,100920,99770,80.68,0,5.63,6.08,6.19,6.3,6.390000000000001,6.47,6.59,6.72,6.99,139.81,140.11,140.5,141.18,142.11,143.18,144.91,146.67000000000002,149.9,20.93,20.71,20.57,20.42,20.27,20.14,20.02,19.92,19.69,N/A,N/A -2012,11,23,3,30,102130,100940,99790,82.19,0,4.2700000000000005,4.86,5.1000000000000005,5.29,5.44,5.58,5.7,5.82,6.04,148.06,149.95000000000002,151.41,153.29,155.28,157.31,159.49,161.55,165.51,20.95,20.75,20.63,20.5,20.38,20.28,20.16,20.04,19.78,N/A,N/A -2012,11,23,4,30,102120,100930,99780,83.36,0,3.58,4.1,4.3500000000000005,4.63,4.88,5.12,5.34,5.55,5.84,156.27,159.53,161.89000000000001,164.67000000000002,167.33,169.96,172.22,174.24,177.18,20.95,20.78,20.7,20.63,20.57,20.52,20.43,20.34,20.05,N/A,N/A -2012,11,23,5,30,102140,100950,99800,83.92,0,3.7,4.17,4.34,4.5,4.63,4.75,4.87,4.97,5.16,158.21,159.18,159.93,160.89000000000001,161.97,163.12,164.64000000000001,166.15,170.24,21.03,20.84,20.71,20.56,20.41,20.26,20.1,19.96,19.69,N/A,N/A -2012,11,23,6,30,102160,100970,99820,83.42,0,3.0500000000000003,3.52,3.75,3.95,4.13,4.28,4.48,4.69,5.09,165.6,169.23,172.04,175.74,179.20000000000002,182.52,185.14000000000001,187.42000000000002,190.51,21.07,20.92,20.830000000000002,20.73,20.62,20.51,20.400000000000002,20.3,20.05,N/A,N/A -2012,11,23,7,30,102190,101000,99850,83.95,0,2.64,3.0500000000000003,3.24,3.46,3.79,4.2,4.46,4.67,5.15,171.13,173.75,176.42000000000002,180.84,186.33,192.8,195.46,196.97,198.33,21.02,20.86,20.76,20.650000000000002,20.59,20.56,20.46,20.36,20.12,N/A,N/A -2012,11,23,8,30,102190,101010,99860,85.32000000000001,0,2.21,2.94,3.33,3.7800000000000002,4.08,4.26,4.45,4.63,4.93,167.94,176.70000000000002,182.99,190.07,194.41,196.78,198.22,199.34,199.64000000000001,21.06,21.1,21.09,21.03,20.94,20.82,20.71,20.6,20.34,N/A,N/A -2012,11,23,9,30,102230,101040,99890,85.83,0,1.6300000000000001,2.24,2.5,2.84,3.11,3.35,3.59,3.81,4.21,191.04,196,199.48000000000002,202.98000000000002,205.20000000000002,206.52,207.27,207.83,208.41,21.17,21.12,21.07,20.990000000000002,20.89,20.78,20.650000000000002,20.53,20.27,N/A,N/A -2012,11,23,10,30,102240,101050,99900,86.43,0,1.6500000000000001,2.31,2.64,2.96,3.18,3.33,3.5100000000000002,3.69,4.01,173.21,181.17000000000002,186.87,192.71,196.35,198.46,200.01,201.32,201.55,21.02,21.03,21,20.91,20.81,20.72,20.66,20.62,20.44,N/A,N/A -2012,11,23,11,30,102260,101080,99930,87.28,0,1.96,2.2,2.34,2.56,2.7600000000000002,2.95,3.12,3.2800000000000002,3.59,139.44,158.98,169.86,177.51,183.02,187.1,190.27,193.03,198.46,20.81,20.82,20.81,20.71,20.61,20.5,20.38,20.26,20.05,N/A,N/A -2012,11,23,12,30,102280,101090,99940,87.16,0,1.86,2.44,2.7,2.9,2.99,3.02,3.1,3.18,3.42,168.42000000000002,174.36,179.61,186.76,191.09,193.54,196.22,198.74,201.96,20.94,20.900000000000002,20.85,20.76,20.63,20.47,20.35,20.25,20.080000000000002,N/A,N/A -2012,11,23,13,30,102300,101120,99970,87.9,0,1.71,2.0300000000000002,2.15,2.22,2.29,2.34,2.47,2.62,3.04,156.22,160.70000000000002,167.20000000000002,179.78,188.26,194.12,199.67000000000002,204.87,209.1,20.85,20.7,20.64,20.61,20.56,20.5,20.490000000000002,20.5,20.42,N/A,N/A -2012,11,23,14,30,102340,101150,100000,87.44,0,1.43,1.57,1.61,1.6400000000000001,1.74,1.9000000000000001,2.11,2.33,2.71,146.17000000000002,159.88,169.31,179.64000000000001,188.05,195.65,200.59,204.74,208.42000000000002,20.85,20.82,20.8,20.76,20.740000000000002,20.73,20.740000000000002,20.740000000000002,20.59,N/A,N/A -2012,11,23,15,30,102360,101170,100020,85.54,0,1.03,1.19,1.29,1.43,1.6,1.79,2,2.22,2.59,157.39000000000001,178.64000000000001,190.59,198.47,204.43,209.18,211.77,213.76,214.22,20.98,21.12,21.17,21.11,21.07,21.03,21,20.98,20.79,N/A,N/A -2012,11,23,16,30,102320,101140,99990,86.7,0,1.6,1.84,1.97,2.1,2.2600000000000002,2.43,2.62,2.81,3.14,175.05,188.87,196.51,201.95000000000002,206.12,209.55,212,214.11,217.99,21.06,21.25,21.330000000000002,21.3,21.26,21.23,21.18,21.14,20.93,N/A,N/A -2012,11,23,17,30,102320,101130,99980,89.36,0,1.36,1.59,1.72,1.87,2.0300000000000002,2.19,2.37,2.54,2.84,177.53,193.89000000000001,203.48000000000002,210.87,216.75,221.69,225.92000000000002,229.79,235.8,21.1,21.27,21.36,21.36,21.32,21.26,21.2,21.14,20.96,N/A,N/A -2012,11,23,18,30,102310,101130,99980,90.19,0,0.77,0.96,1.11,1.32,1.5,1.68,1.85,2,2.2600000000000002,174.33,204.08,220.71,230.48000000000002,237.52,242.53,246.22,249.43,253.62,21.18,21.3,21.37,21.37,21.32,21.25,21.17,21.080000000000002,20.87,N/A,N/A -2012,11,23,19,30,102310,101130,99980,90.92,0,0.89,0.6900000000000001,0.64,0.6900000000000001,0.78,0.89,0.99,1.07,1.21,134.14000000000001,165.82,184.08,206.19,221.05,231.99,239.20000000000002,245.12,251.68,21.36,21.39,21.41,21.37,21.3,21.21,21.1,21,20.81,N/A,N/A -2012,11,23,20,30,102300,101110,99970,93.24,1.1,2.52,2.48,2.45,2.5100000000000002,2.65,2.85,3.0700000000000003,3.29,3.63,51.74,44.58,39.050000000000004,31.810000000000002,25.98,20.86,18.16,16.14,16.09,21.21,21.17,21.19,21.23,21.240000000000002,21.23,21.13,21.01,20.67,N/A,N/A -2012,11,23,21,30,102300,101110,99960,92.13,0,4.22,4.51,4.71,5.11,5.43,5.69,5.89,6.0600000000000005,6.34,28.84,28.92,28.6,27.650000000000002,26.71,25.82,25.01,24.29,23.12,20.92,20.650000000000002,20.53,20.44,20.34,20.26,20.14,20.03,19.76,N/A,N/A -2012,11,23,22,30,102330,101140,99980,86.46000000000001,0,9.09,9.82,9.96,10,10.06,10.11,10.26,10.41,10.32,10.94,11.16,11.31,11.52,11.82,12.15,12.89,13.69,16.830000000000002,20.07,19.740000000000002,19.57,19.39,19.22,19.05,18.92,18.8,18.830000000000002,N/A,N/A -2012,11,23,23,30,102390,101190,100030,92.9,0,8.15,8.72,8.84,8.91,9,9.1,9.41,9.73,10.23,12.370000000000001,12.17,11.99,11.72,11.290000000000001,10.77,9.49,8.11,5.05,19.19,18.82,18.650000000000002,18.47,18.32,18.17,18.09,18.03,18.150000000000002,N/A,N/A -2012,11,24,0,30,102390,101190,100030,91.29,0,9.38,10.21,10.4,10.51,10.59,10.66,10.74,10.83,11.22,22.330000000000002,22.43,22.490000000000002,22.55,22.62,22.69,22.78,22.86,23.2,19.17,18.76,18.580000000000002,18.38,18.19,18.02,17.830000000000002,17.66,17.330000000000002,N/A,N/A -2012,11,24,1,30,102480,101270,100110,89.77,5.5,11.620000000000001,12.69,12.92,13.030000000000001,13.09,13.120000000000001,13.13,13.13,13.11,22.06,22.02,21.96,21.91,21.85,21.8,21.75,21.7,21.61,18.23,17.740000000000002,17.53,17.330000000000002,17.13,16.94,16.740000000000002,16.55,16.18,N/A,N/A -2012,11,24,2,30,102550,101340,100170,89.78,0,11.44,12.38,12.58,12.66,12.69,12.700000000000001,12.67,12.64,12.55,19.27,19.57,19.78,19.98,20.19,20.39,20.61,20.830000000000002,21.34,16.91,16.34,16.12,15.9,15.69,15.5,15.3,15.11,14.73,N/A,N/A -2012,11,24,3,30,102590,101370,100190,77.98,0,11.71,12.68,12.88,12.98,13.01,13.030000000000001,13.01,12.99,12.93,19.13,19.53,19.77,20,20.22,20.42,20.66,20.89,21.42,15.98,15.36,15.120000000000001,14.9,14.69,14.5,14.290000000000001,14.11,13.73,N/A,N/A -2012,11,24,4,30,102590,101370,100190,64.81,0,12.82,13.97,14.24,14.38,14.47,14.530000000000001,14.56,14.58,14.61,27.07,27.36,27.53,27.7,27.86,28.02,28.19,28.35,28.740000000000002,16.15,15.52,15.280000000000001,15.06,14.85,14.66,14.46,14.27,13.9,N/A,N/A -2012,11,24,5,30,102620,101400,100210,68.27,0,11.98,13.05,13.32,13.46,13.55,13.620000000000001,13.66,13.700000000000001,13.74,27.8,28.07,28.25,28.42,28.580000000000002,28.740000000000002,28.900000000000002,29.05,29.400000000000002,15.83,15.200000000000001,14.96,14.74,14.530000000000001,14.33,14.13,13.94,13.56,N/A,N/A -2012,11,24,6,30,102630,101410,100230,69.21000000000001,0,11.72,12.75,13.01,13.15,13.24,13.3,13.35,13.39,13.44,29.07,29.330000000000002,29.5,29.66,29.810000000000002,29.95,30.1,30.240000000000002,30.54,15.68,15.040000000000001,14.8,14.58,14.370000000000001,14.18,13.97,13.780000000000001,13.41,N/A,N/A -2012,11,24,7,30,102660,101440,100250,67.97,0,12.030000000000001,13.08,13.33,13.46,13.530000000000001,13.59,13.61,13.63,13.64,28.89,29.14,29.3,29.45,29.6,29.740000000000002,29.88,30.02,30.32,15.34,14.67,14.42,14.200000000000001,13.98,13.790000000000001,13.58,13.39,13.01,N/A,N/A -2012,11,24,8,30,102690,101460,100270,69.03,0,12.76,13.86,14.11,14.23,14.3,14.34,14.34,14.35,14.32,31.240000000000002,31.55,31.740000000000002,31.92,32.09,32.25,32.42,32.58,32.93,14.450000000000001,13.72,13.46,13.23,13.01,12.81,12.6,12.41,12.02,N/A,N/A -2012,11,24,9,30,102700,101470,100270,67.32000000000001,0,12.870000000000001,13.96,14.21,14.33,14.39,14.43,14.44,14.44,14.4,31.02,31.25,31.41,31.55,31.7,31.830000000000002,31.98,32.12,32.43,13.73,12.96,12.69,12.46,12.24,12.040000000000001,11.83,11.64,11.26,N/A,N/A -2012,11,24,10,30,102720,101490,100290,69.44,0,12.040000000000001,13.01,13.22,13.33,13.38,13.41,13.41,13.41,13.38,30.72,30.990000000000002,31.17,31.330000000000002,31.490000000000002,31.64,31.8,31.95,32.28,13.13,12.36,12.09,11.85,11.63,11.44,11.23,11.040000000000001,10.66,N/A,N/A -2012,11,24,11,30,102720,101490,100290,73.13,0,11.65,12.55,12.74,12.83,12.870000000000001,12.89,12.88,12.88,12.84,32.47,32.82,33.03,33.230000000000004,33.43,33.61,33.82,34.01,34.43,12.75,11.97,11.700000000000001,11.47,11.25,11.06,10.85,10.66,10.290000000000001,N/A,N/A -2012,11,24,12,30,102750,101510,100310,76.79,0,10.78,11.56,11.72,11.790000000000001,11.82,11.83,11.82,11.81,11.76,36.79,37.26,37.550000000000004,37.81,38.07,38.31,38.57,38.83,39.37,12.51,11.74,11.48,11.25,11.03,10.83,10.63,10.44,10.06,N/A,N/A -2012,11,24,13,30,102760,101530,100320,78.23,0,10.200000000000001,10.91,11.05,11.11,11.13,11.15,11.13,11.120000000000001,11.07,38.42,39,39.35,39.68,40.01,40.31,40.63,40.93,41.56,12.42,11.67,11.41,11.18,10.96,10.76,10.55,10.36,9.98,N/A,N/A -2012,11,24,14,30,102780,101540,100330,77.75,0,9.5,10.120000000000001,10.23,10.28,10.290000000000001,10.290000000000001,10.27,10.25,10.200000000000001,37.27,37.88,38.25,38.59,38.94,39.24,39.58,39.89,40.550000000000004,12.22,11.49,11.22,10.99,10.78,10.58,10.370000000000001,10.18,9.8,N/A,N/A -2012,11,24,15,30,102760,101520,100320,78.08,0,8.97,9.52,9.63,9.67,9.68,9.68,9.67,9.65,9.6,36.81,37.38,37.730000000000004,38.06,38.38,38.67,38.99,39.28,39.9,12.18,11.46,11.21,10.98,10.76,10.56,10.36,10.16,9.78,N/A,N/A -2012,11,24,16,30,102730,101490,100290,75.19,0,8,8.45,8.52,8.55,8.55,8.540000000000001,8.51,8.49,8.43,32.61,33.14,33.480000000000004,33.79,34.1,34.38,34.68,34.980000000000004,35.58,12.25,11.56,11.31,11.09,10.870000000000001,10.68,10.47,10.28,9.89,N/A,N/A -2012,11,24,17,30,102670,101430,100230,68.21000000000001,0,7.11,7.48,7.54,7.5600000000000005,7.55,7.54,7.5200000000000005,7.5,7.45,28.310000000000002,28.740000000000002,29.02,29.27,29.53,29.76,30.01,30.25,30.77,12.39,11.73,11.49,11.26,11.05,10.86,10.65,10.46,10.07,N/A,N/A -2012,11,24,18,30,102620,101380,100190,62.85,0,6.42,6.76,6.82,6.8500000000000005,6.8500000000000005,6.86,6.8500000000000005,6.8500000000000005,6.82,25.68,25.87,25.98,26.09,26.2,26.3,26.41,26.51,26.71,12.97,12.35,12.11,11.89,11.67,11.48,11.27,11.08,10.69,N/A,N/A -2012,11,24,19,30,102580,101350,100160,57.800000000000004,0,5.29,5.5600000000000005,5.61,5.64,5.65,5.66,5.66,5.66,5.66,26.28,26.27,26.25,26.240000000000002,26.23,26.22,26.21,26.2,26.19,13.66,13.09,12.86,12.65,12.43,12.25,12.030000000000001,11.84,11.450000000000001,N/A,N/A -2012,11,24,20,30,102520,101290,100100,54.050000000000004,0,4.7,4.93,4.98,5,5.01,5.0200000000000005,5.03,5.03,5.03,23.900000000000002,23.96,23.98,23.990000000000002,24.01,24.03,24.04,24.07,24.1,14.32,13.790000000000001,13.57,13.35,13.14,12.950000000000001,12.74,12.55,12.15,N/A,N/A -2012,11,24,21,30,102470,101250,100060,51.29,0,3.97,4.16,4.2,4.22,4.24,4.25,4.26,4.26,4.28,21.98,22.12,22.21,22.29,22.37,22.43,22.51,22.580000000000002,22.71,14.88,14.38,14.16,13.950000000000001,13.74,13.55,13.34,13.15,12.75,N/A,N/A -2012,11,24,22,30,102430,101210,100030,49.45,0,3.71,3.89,3.93,3.96,3.97,3.98,3.99,4,4.0200000000000005,24.79,24.740000000000002,24.72,24.7,24.68,24.66,24.650000000000002,24.63,24.61,15.38,14.9,14.69,14.48,14.27,14.08,13.870000000000001,13.68,13.280000000000001,N/A,N/A -2012,11,24,23,30,102400,101180,99990,49.19,0,3.65,3.8200000000000003,3.85,3.87,3.88,3.89,3.89,3.89,3.9,29.1,29.04,28.990000000000002,28.94,28.900000000000002,28.87,28.830000000000002,28.8,28.73,15.77,15.3,15.09,14.89,14.67,14.49,14.27,14.08,13.69,N/A,N/A -2012,11,25,0,30,102380,101170,99980,49.33,0,4.33,4.5200000000000005,4.55,4.5600000000000005,4.5600000000000005,4.5600000000000005,4.55,4.54,4.5200000000000005,33.71,33.79,33.83,33.86,33.89,33.93,33.97,33.99,34.05,15.94,15.46,15.25,15.040000000000001,14.83,14.64,14.43,14.24,13.84,N/A,N/A -2012,11,25,1,30,102360,101140,99950,50.730000000000004,0,4.62,4.78,4.78,4.76,4.73,4.71,4.68,4.64,4.58,31.11,32.2,32.86,33.49,34.1,34.65,35.24,35.78,36.93,15.74,15.26,15.05,14.84,14.63,14.450000000000001,14.24,14.05,13.66,N/A,N/A -2012,11,25,2,30,102340,101120,99940,51.32,0,3.95,4.07,4.0600000000000005,4.04,4.0200000000000005,3.99,3.96,3.93,3.86,55.33,55.96,56.31,56.660000000000004,57,57.31,57.660000000000004,57.99,58.7,15.72,15.24,15.030000000000001,14.83,14.620000000000001,14.44,14.23,14.040000000000001,13.65,N/A,N/A -2012,11,25,3,30,102300,101080,99900,55.72,0,3.61,3.7600000000000002,3.7800000000000002,3.79,3.79,3.79,3.79,3.7800000000000002,3.7800000000000002,61.92,63.18,63.870000000000005,64.51,65.11,65.66,66.24,66.78,67.89,15.790000000000001,15.32,15.11,14.91,14.700000000000001,14.51,14.31,14.11,13.72,N/A,N/A -2012,11,25,4,30,102250,101040,99860,59.19,0,3.3200000000000003,3.48,3.5100000000000002,3.5300000000000002,3.5500000000000003,3.56,3.5700000000000003,3.58,3.59,73.58,74.75,75.43,76.06,76.66,77.2,77.76,78.28,79.36,15.89,15.43,15.23,15.02,14.82,14.63,14.42,14.23,13.84,N/A,N/A -2012,11,25,5,30,102200,100990,99810,61.63,0,3.19,3.31,3.33,3.33,3.33,3.3200000000000003,3.3200000000000003,3.31,3.3000000000000003,96.52,97.22,97.60000000000001,97.96000000000001,98.31,98.64,98.97,99.27,99.95,16.17,15.72,15.51,15.31,15.1,14.92,14.71,14.52,14.13,N/A,N/A -2012,11,25,6,30,102180,100970,99790,58.82,0,3.16,3.27,3.2800000000000002,3.2800000000000002,3.27,3.27,3.2600000000000002,3.25,3.23,118.45,119.09,119.5,119.89,120.27,120.62,121,121.36,122.12,16.47,16.03,15.83,15.63,15.43,15.24,15.030000000000001,14.84,14.450000000000001,N/A,N/A -2012,11,25,7,30,102160,100950,99770,60.75,0,3.09,3.18,3.18,3.18,3.16,3.15,3.14,3.13,3.1,130.24,130.93,131.38,131.82,132.24,132.63,133.05,133.45,134.28,16.71,16.28,16.080000000000002,15.88,15.68,15.49,15.290000000000001,15.1,14.71,N/A,N/A -2012,11,25,8,30,102120,100910,99740,62.33,0,2.54,2.65,2.67,2.68,2.69,2.7,2.71,2.71,2.72,145.72,146.01,146.22,146.42000000000002,146.62,146.8,147,147.18,147.56,16.97,16.55,16.36,16.15,15.950000000000001,15.76,15.56,15.370000000000001,14.98,N/A,N/A -2012,11,25,9,30,102090,100880,99710,62.78,0,2.7800000000000002,2.89,2.91,2.92,2.92,2.92,2.92,2.92,2.92,147.11,147.85,148.29,148.70000000000002,149.09,149.45000000000002,149.83,150.18,150.91,17.18,16.77,16.57,16.37,16.17,15.98,15.77,15.58,15.19,N/A,N/A -2012,11,25,10,30,102070,100860,99690,63.690000000000005,0,2.19,2.3000000000000003,2.33,2.35,2.37,2.38,2.4,2.41,2.43,156.03,156.61,157,157.37,157.71,158.03,158.37,158.67000000000002,159.31,17.45,17.06,16.86,16.66,16.46,16.27,16.07,15.88,15.49,N/A,N/A -2012,11,25,11,30,102060,100850,99680,64.52,0,2.2,2.32,2.36,2.38,2.4,2.42,2.44,2.46,2.5,156.59,156.98,157.27,157.54,157.8,158.04,158.28,158.52,159.02,17.6,17.21,17.02,16.82,16.62,16.43,16.23,16.04,15.65,N/A,N/A -2012,11,25,12,30,102050,100840,99680,65.58,0,2.41,2.54,2.57,2.6,2.62,2.64,2.66,2.68,2.71,155.11,155.5,155.75,155.98,156.20000000000002,156.4,156.61,156.81,157.22,17.830000000000002,17.44,17.25,17.05,16.85,16.66,16.46,16.27,15.88,N/A,N/A -2012,11,25,13,30,102040,100830,99670,68.08,0,2.67,2.81,2.85,2.87,2.9,2.92,2.94,2.95,2.99,154.74,155.23,155.58,155.9,156.20000000000002,156.48,156.78,157.05,157.63,18.01,17.63,17.44,17.240000000000002,17.04,16.85,16.65,16.46,16.07,N/A,N/A -2012,11,25,14,30,102050,100850,99680,70.53,0,3.16,3.34,3.39,3.43,3.45,3.48,3.5,3.52,3.5500000000000003,144.52,144.99,145.33,145.64000000000001,145.94,146.22,146.51,146.77,147.32,18.23,17.85,17.66,17.46,17.26,17.07,16.87,16.68,16.29,N/A,N/A -2012,11,25,15,30,102040,100840,99670,70.56,0,3.6,3.79,3.83,3.85,3.86,3.87,3.87,3.88,3.88,147.91,148.45000000000002,148.81,149.17000000000002,149.5,149.8,150.13,150.43,151.07,18.490000000000002,18.11,17.92,17.72,17.53,17.34,17.13,16.95,16.55,N/A,N/A -2012,11,25,16,30,102010,100810,99650,73.2,0,3.93,4.16,4.22,4.25,4.28,4.3,4.32,4.33,4.36,144.36,144.87,145.22,145.55,145.85,146.14000000000001,146.44,146.72,147.29,18.68,18.31,18.12,17.92,17.72,17.53,17.330000000000002,17.150000000000002,16.76,N/A,N/A -2012,11,25,17,30,101940,100750,99590,73.86,0,3.61,3.83,3.89,3.92,3.96,3.98,4,4.0200000000000005,4.0600000000000005,146.16,146.6,146.86,147.11,147.33,147.53,147.74,147.93,148.35,18.900000000000002,18.54,18.36,18.150000000000002,17.96,17.77,17.57,17.38,16.990000000000002,N/A,N/A -2012,11,25,18,30,101920,100720,99570,75.94,0,4.3100000000000005,4.59,4.67,4.72,4.75,4.78,4.8100000000000005,4.83,4.87,148.9,149.21,149.42000000000002,149.63,149.81,149.99,150.17000000000002,150.34,150.69,19.240000000000002,18.88,18.69,18.490000000000002,18.3,18.11,17.91,17.72,17.330000000000002,N/A,N/A -2012,11,25,19,30,101870,100680,99520,77.03,0,4.21,4.46,4.5200000000000005,4.5600000000000005,4.58,4.6000000000000005,4.61,4.62,4.64,140.05,140.65,141.06,141.46,141.84,142.19,142.57,142.91,143.68,19.400000000000002,19.05,18.87,18.67,18.48,18.29,18.09,17.900000000000002,17.52,N/A,N/A -2012,11,25,20,30,101820,100630,99470,77.63,0,4.23,4.53,4.61,4.65,4.69,4.72,4.74,4.76,4.79,141.65,142.08,142.37,142.65,142.91,143.15,143.4,143.63,144.12,19.69,19.36,19.18,18.98,18.78,18.6,18.39,18.21,17.82,N/A,N/A -2012,11,25,21,30,101770,100580,99430,77.32000000000001,0,4.64,4.96,5.03,5.07,5.1000000000000005,5.12,5.13,5.15,5.16,142.71,143.21,143.55,143.87,144.18,144.46,144.77,145.05,145.67000000000002,19.93,19.6,19.43,19.23,19.04,18.85,18.650000000000002,18.47,18.080000000000002,N/A,N/A -2012,11,25,22,30,101740,100550,99400,79.26,0,5.17,5.58,5.7,5.76,5.82,5.86,5.89,5.92,5.97,139.81,140.31,140.65,140.96,141.25,141.52,141.81,142.07,142.65,20.12,19.81,19.64,19.45,19.26,19.07,18.87,18.69,18.3,N/A,N/A -2012,11,25,23,30,101710,100530,99380,79.89,0,5.82,6.29,6.41,6.47,6.5200000000000005,6.55,6.57,6.58,6.61,140.96,141.27,141.5,141.74,141.97,142.18,142.41,142.62,143.08,20.35,20.05,19.88,19.69,19.5,19.31,19.12,18.93,18.54,N/A,N/A -2012,11,26,0,30,101710,100520,99380,80.60000000000001,0,6.12,6.7,6.86,6.96,7.03,7.08,7.13,7.16,7.22,141.55,141.96,142.24,142.54,142.8,143.05,143.32,143.56,144.09,20.63,20.36,20.2,20,19.82,19.63,19.44,19.26,18.88,N/A,N/A -2012,11,26,1,30,101680,100500,99350,83.11,0,6.48,7.07,7.23,7.33,7.41,7.48,7.57,7.65,7.9,148.41,148.53,148.62,148.74,148.87,149.01,149.20000000000002,149.39000000000001,149.98,20.81,20.56,20.41,20.23,20.05,19.88,19.69,19.52,19.17,N/A,N/A -2012,11,26,2,30,101660,100480,99340,86.32000000000001,0,5.84,6.63,6.96,7.25,7.51,7.75,7.98,8.19,8.57,148.02,148.35,148.64000000000001,149.07,149.52,149.99,150.57,151.13,152.6,20.97,20.79,20.67,20.53,20.400000000000002,20.27,20.13,20,19.71,N/A,N/A -2012,11,26,3,30,101630,100450,99310,87.47,0,6.63,7.5600000000000005,7.9,8.19,8.45,8.68,8.89,9.09,9.450000000000001,152.62,153.08,153.44,153.91,154.42000000000002,154.96,155.55,156.12,157.38,21.23,21.06,20.94,20.79,20.650000000000002,20.5,20.35,20.2,19.89,N/A,N/A -2012,11,26,4,30,101590,100410,99270,88.51,0,6.21,7.19,7.59,7.95,8.28,8.58,8.870000000000001,9.14,9.63,152.03,152.86,153.51,154.43,155.46,156.58,157.78,158.96,160.93,21.32,21.19,21.09,20.97,20.85,20.73,20.6,20.48,20.2,N/A,N/A -2012,11,26,5,30,101580,100400,99260,91.24,0,5.46,6.41,6.8100000000000005,7.18,7.5200000000000005,7.84,8.16,8.46,9.06,150.95000000000002,151.74,152.46,153.51,154.65,155.89000000000001,157.31,158.71,162.06,21.29,21.17,21.080000000000002,20.97,20.85,20.740000000000002,20.62,20.51,20.29,N/A,N/A -2012,11,26,6,30,101580,100400,99260,92.7,0,5.19,6.08,6.47,6.87,7.2700000000000005,7.68,8.120000000000001,8.55,9.36,145.3,146.65,147.79,149.37,150.97,152.65,154.14000000000001,155.49,157.41,21.42,21.29,21.2,21.1,21,20.92,20.830000000000002,20.75,20.55,N/A,N/A -2012,11,26,7,30,101580,100400,99260,94.52,0,4.94,5.99,6.47,6.96,7.41,7.8500000000000005,8.290000000000001,8.700000000000001,9.6,152.82,155.16,156.96,159.35,161.8,164.36,167.16,169.89000000000001,175.52,21.54,21.44,21.36,21.26,21.17,21.07,20.96,20.86,20.63,N/A,N/A -2012,11,26,8,30,101560,100380,99250,95.7,0,4.62,5.65,6.1000000000000005,6.55,6.94,7.3,7.66,7.99,9.25,166.17000000000002,168.58,170.52,172.9,175.27,177.73,180.16,182.47,187.06,21.59,21.5,21.44,21.35,21.27,21.19,21.11,21.03,20.89,N/A,N/A -2012,11,26,9,30,101570,100400,99260,95.06,0,5.46,6.72,7.32,7.92,8.47,8.99,9.49,9.96,10.74,183.16,184.32,185.32,186.22,186.9,187.42000000000002,187.88,188.29,189.4,21.81,21.830000000000002,21.81,21.75,21.68,21.59,21.5,21.41,21.21,N/A,N/A -2012,11,26,10,30,101580,100410,99280,93.61,0,6.25,7.640000000000001,8.23,8.78,9.22,9.6,9.9,10.15,10.5,191.65,191.91,192.28,192.99,193.77,194.67000000000002,195.64000000000001,196.6,198.94,22.13,22.17,22.150000000000002,22.09,22.02,21.93,21.830000000000002,21.72,21.44,N/A,N/A -2012,11,26,11,30,101590,100420,99290,94.10000000000001,0,5.5200000000000005,6.87,7.43,7.92,8.36,8.77,9.17,9.55,10.21,192.72,194.14000000000001,195.47,197.43,199.34,201.3,203.11,204.77,207.74,22.03,22.1,22.09,22.04,21.98,21.89,21.79,21.68,21.43,N/A,N/A -2012,11,26,12,30,101610,100440,99300,94.95,0,4.44,5.82,6.43,7.0200000000000005,7.51,7.930000000000001,8.27,8.57,8.97,192.99,195.6,197.8,200.74,203.68,206.73000000000002,209.26,211.46,214.27,21.84,21.900000000000002,21.91,21.900000000000002,21.86,21.81,21.71,21.6,21.32,N/A,N/A -2012,11,26,13,30,101620,100450,99320,95.39,0,3.45,4.82,5.41,5.94,6.44,6.94,7.42,7.88,8.370000000000001,201.27,204.83,207.70000000000002,211.47,214.79,217.86,219.79,221.18,221.71,21.77,21.91,21.93,21.89,21.830000000000002,21.740000000000002,21.64,21.54,21.25,N/A,N/A -2012,11,26,14,30,101670,100490,99360,96.37,0,2.87,4.14,4.74,5.34,6.1000000000000005,7.08,7.61,7.91,8.65,198.18,202.48000000000002,205.69,209.25,212.6,216.09,217.46,217.85,217.93,21.6,21.7,21.72,21.72,21.71,21.7,21.62,21.52,21.29,N/A,N/A -2012,11,26,15,30,101670,100500,99360,97,0,2.99,4.2,4.82,5.5600000000000005,6.54,7.8500000000000005,8.41,8.64,9.200000000000001,195.29,200.58,204.43,208.49,211,212.25,212.70000000000002,212.81,213.25,21.61,21.68,21.72,21.740000000000002,21.81,21.900000000000002,21.87,21.8,21.61,N/A,N/A -2012,11,26,16,30,101680,100510,99370,97.72,0,2.82,3.94,4.54,5.23,6.09,7.18,7.78,8.15,8.9,185.61,191.42000000000002,195.21,198.19,202.73000000000002,209.07,212.27,213.95000000000002,216.17000000000002,21.71,21.71,21.72,21.72,21.78,21.89,21.88,21.82,21.67,N/A,N/A -2012,11,26,17,30,101690,100510,99380,94.01,0,3.99,5,5.48,5.99,6.47,6.94,7.37,7.7700000000000005,9.19,205.21,207.81,209.66,211.66,213.34,214.82,215.57,216.02,218.07,22.150000000000002,22.11,22.07,22.02,21.95,21.88,21.79,21.69,21.6,N/A,N/A -2012,11,26,18,30,101660,100490,99350,92.55,0,4.28,5.3500000000000005,5.8500000000000005,6.4,6.91,7.4,7.88,8.34,9.35,216.42000000000002,217.33,218.01,218.78,219.45000000000002,220.09,220.6,221.05,221.53,22.39,22.32,22.27,22.21,22.150000000000002,22.080000000000002,22.01,21.94,21.79,N/A,N/A -2012,11,26,19,30,101670,100500,99360,92.48,0,4.58,5.55,5.96,6.4,6.8,7.19,7.58,7.94,8.73,202.57,204.65,206.18,208.03,209.71,211.32,212.70000000000002,213.93,215.89000000000001,22.47,22.39,22.330000000000002,22.25,22.17,22.080000000000002,21.990000000000002,21.900000000000002,21.7,N/A,N/A -2012,11,26,20,30,101660,100490,99360,92.42,0,4.19,5.2700000000000005,5.75,6.25,6.7,7.11,7.51,7.87,8.64,198.79,201.01,202.59,204.44,206.04,207.5,208.72,209.79,211.82,22.490000000000002,22.44,22.400000000000002,22.330000000000002,22.26,22.17,22.07,21.97,21.76,N/A,N/A -2012,11,26,21,30,101660,100490,99360,93.13,0,3.99,5.24,5.84,6.46,7.0200000000000005,7.54,8.01,8.44,9.33,207.66,209.3,210.5,211.85,213.06,214.18,215.13,215.97,217.43,22.44,22.47,22.45,22.42,22.37,22.31,22.22,22.14,21.95,N/A,N/A -2012,11,26,22,30,101670,100500,99370,93.25,0,3.96,5.23,5.8,6.390000000000001,6.92,7.42,7.97,8.52,9.05,203.59,206.6,208.76,211.06,212.99,214.68,216.27,217.77,218.86,22.3,22.400000000000002,22.41,22.39,22.35,22.3,22.23,22.17,21.93,N/A,N/A -2012,11,26,23,30,101700,100520,99390,93.92,0,3.65,4.98,5.58,6.19,6.83,7.55,7.930000000000001,8.15,8.620000000000001,203.57,207.1,209.69,212.56,215.44,218.48000000000002,219.83,220.48000000000002,221.73000000000002,22.080000000000002,22.26,22.31,22.330000000000002,22.34,22.330000000000002,22.26,22.17,21.93,N/A,N/A -2012,11,27,0,30,101710,100540,99410,94.43,0,3.69,5.0200000000000005,5.63,6.25,6.88,7.55,7.890000000000001,8.08,8.47,197.13,202.37,206.31,210.82,214.75,218.37,219.97,220.69,222,21.95,22.18,22.27,22.34,22.38,22.41,22.36,22.28,22.07,N/A,N/A -2012,11,27,1,30,101740,100570,99440,95.34,0,2.99,4.36,5.07,5.97,6.53,6.78,7.05,7.3,7.7700000000000005,200.51,204.56,208.61,215.5,219.75,221.52,223.01,224.32,226.13,21.830000000000002,22.06,22.19,22.35,22.400000000000002,22.38,22.35,22.32,22.17,N/A,N/A -2012,11,27,2,30,101770,100600,99470,95.19,0,3.37,4.75,5.44,6.18,6.6000000000000005,6.74,6.92,7.12,7.48,192.94,199.8,205.41,212.84,217.37,219.38,220.97,222.33,224.67000000000002,21.81,22.1,22.240000000000002,22.37,22.43,22.43,22.400000000000002,22.37,22.240000000000002,N/A,N/A -2012,11,27,3,30,101800,100620,99490,95.52,0,3.65,5.07,5.8,6.62,7.1000000000000005,7.2700000000000005,7.390000000000001,7.49,7.69,203.9,208.61,212.61,218.19,222.21,224.84,226.88,228.59,230.99,21.75,22.02,22.17,22.35,22.41,22.39,22.38,22.36,22.22,N/A,N/A -2012,11,27,4,30,101810,100640,99500,95.44,0,3.81,5.19,5.9,6.74,7.34,7.74,7.87,7.88,7.96,220.29,222.32,224.28,227.59,231.24,235.20000000000002,237.36,238.70000000000002,241.46,21.77,21.96,22.07,22.22,22.29,22.32,22.27,22.21,22.06,N/A,N/A -2012,11,27,5,30,101830,100650,99520,95.24,0,4.45,5.76,6.4,7.140000000000001,7.76,8.31,8.45,8.44,8.31,219.55,221.72,223.57,226.23000000000002,229.23000000000002,232.58,235.37,237.72,239.87,21.79,21.92,21.98,22.07,22.150000000000002,22.2,22.17,22.12,21.91,N/A,N/A -2012,11,27,6,30,101850,100680,99540,95.07000000000001,0,4.67,5.96,6.55,7.17,7.7700000000000005,8.370000000000001,8.66,8.84,8.69,233.15,233.91,234.61,235.84,237.52,239.64000000000001,242.46,245.32,247.21,21.79,21.88,21.91,21.93,21.96,22.01,22.01,22,21.75,N/A,N/A -2012,11,27,7,30,101900,100720,99580,95.26,0,4.72,5.98,6.53,7.08,7.58,8.06,8.55,9.02,9.47,239.08,240.33,241.17000000000002,242.29,243.39000000000001,244.51,246.13,247.86,252.78,21.75,21.78,21.77,21.73,21.69,21.63,21.59,21.56,21.5,N/A,N/A -2012,11,27,8,30,101890,100700,99550,85.58,0,3.35,3.8000000000000003,3.93,4.0600000000000005,4.19,4.3,4.42,4.53,4.73,305.7,306.39,306.8,307.22,307.99,308.77,309.94,311.12,313.8,21.11,20.82,20.64,20.47,20.28,20.11,19.91,19.73,19.36,N/A,N/A -2012,11,27,9,30,102020,100820,99660,86.18,0,10.11,10.89,11.040000000000001,11.09,11.09,11.06,11.01,10.96,10.82,336.77,337.15000000000003,337.41,337.65000000000003,337.89,338.11,338.35,338.58,339.1,18.47,18.01,17.81,17.6,17.400000000000002,17.21,17.02,16.84,16.46,N/A,N/A -2012,11,27,10,30,102050,100850,99680,83.47,0,7.78,8.3,8.4,8.44,8.44,8.44,8.43,8.41,8.39,340.87,341.07,341.28000000000003,341.49,341.72,341.93,342.22,342.5,343.36,17.82,17.36,17.16,16.96,16.76,16.580000000000002,16.38,16.2,15.82,N/A,N/A -2012,11,27,11,30,102160,100950,99780,83.3,0,11,11.86,12.030000000000001,12.09,12.09,12.08,12.040000000000001,12,11.870000000000001,335.16,335.53000000000003,335.73,335.93,336.12,336.31,336.52,336.71,337.18,16.740000000000002,16.16,15.93,15.71,15.5,15.31,15.11,14.92,14.540000000000001,N/A,N/A -2012,11,27,12,30,102240,101030,99850,81.23,0,11.05,11.94,12.13,12.21,12.25,12.26,12.25,12.24,12.19,339.72,339.89,340,340.1,340.21,340.31,340.43,340.55,340.87,16.23,15.63,15.39,15.18,14.97,14.780000000000001,14.58,14.39,14.02,N/A,N/A -2012,11,27,13,30,102270,101060,99880,81.34,0,10.53,11.32,11.47,11.540000000000001,11.56,11.56,11.55,11.53,11.49,351.61,351.83,351.97,352.11,352.26,352.41,352.59000000000003,352.78000000000003,353.31,15.97,15.370000000000001,15.14,14.93,14.73,14.55,14.35,14.17,13.8,N/A,N/A -2012,11,27,14,30,102270,101060,99880,82.15,0,10.09,10.82,10.96,11.02,11.040000000000001,11.040000000000001,11.040000000000001,11.03,11.03,4.76,4.94,5.1000000000000005,5.26,5.43,5.59,5.8,6.0200000000000005,6.61,15.8,15.21,14.98,14.77,14.57,14.38,14.19,14.01,13.64,N/A,N/A -2012,11,27,15,30,102370,101160,99980,82.89,0,8.51,9.08,9.200000000000001,9.24,9.27,9.28,9.27,9.27,9.25,356.12,356.34000000000003,356.56,356.77,356.98,357.19,357.43,357.66,358.24,15.88,15.31,15.09,14.870000000000001,14.67,14.48,14.280000000000001,14.09,13.71,N/A,N/A -2012,11,27,16,30,102440,101220,100040,83.23,0,9.19,9.82,9.950000000000001,9.99,10.01,10.01,10,9.98,9.92,342.99,343.3,343.47,343.64,343.8,343.96,344.15000000000003,344.33,344.77,15.72,15.120000000000001,14.89,14.67,14.47,14.27,14.07,13.88,13.5,N/A,N/A -2012,11,27,17,30,102410,101190,100010,87.2,0,9.44,10.08,10.22,10.26,10.28,10.28,10.26,10.24,10.17,353.89,354.08,354.19,354.3,354.42,354.53000000000003,354.65000000000003,354.77,355.06,15.55,14.950000000000001,14.71,14.49,14.280000000000001,14.09,13.89,13.700000000000001,13.32,N/A,N/A -2012,11,27,18,30,102420,101210,100020,86.78,0,9.65,10.33,10.48,10.540000000000001,10.56,10.57,10.56,10.540000000000001,10.49,352.5,353,353.28000000000003,353.55,353.81,354.05,354.31,354.56,355.08,15.4,14.780000000000001,14.540000000000001,14.32,14.11,13.91,13.71,13.52,13.13,N/A,N/A -2012,11,27,19,30,102450,101230,100050,85.3,0,8.67,9.290000000000001,9.44,9.52,9.58,9.620000000000001,9.64,9.66,9.68,3.69,3.65,3.62,3.58,3.54,3.5100000000000002,3.47,3.44,3.37,15.11,14.5,14.27,14.05,13.83,13.64,13.43,13.24,12.85,N/A,N/A -2012,11,27,20,30,102440,101230,100040,81.11,0,8.6,9.22,9.38,9.46,9.52,9.56,9.59,9.61,9.64,358.13,358.03000000000003,357.97,357.91,357.86,357.81,357.77,357.73,357.65000000000003,15.9,15.33,15.1,14.88,14.67,14.47,14.26,14.07,13.67,N/A,N/A -2012,11,27,21,30,102480,101260,100080,80.4,0,8.63,9.22,9.36,9.43,9.47,9.49,9.5,9.5,9.49,359.43,359.54,359.64,359.74,359.85,359.94,0.06,0.16,0.41000000000000003,15.870000000000001,15.290000000000001,15.06,14.84,14.620000000000001,14.42,14.21,14.02,13.620000000000001,N/A,N/A -2012,11,27,22,30,102520,101300,100120,80.84,0,8.950000000000001,9.540000000000001,9.66,9.700000000000001,9.72,9.72,9.71,9.69,9.64,11.13,11.01,10.89,10.78,10.67,10.56,10.44,10.33,10.07,15.48,14.88,14.64,14.42,14.21,14.01,13.8,13.61,13.22,N/A,N/A -2012,11,27,23,30,102560,101340,100160,82.59,0,8.96,9.56,9.68,9.73,9.74,9.74,9.73,9.71,9.65,20.34,20.21,20.06,19.91,19.76,19.62,19.46,19.330000000000002,19.03,15.15,14.530000000000001,14.3,14.07,13.85,13.66,13.450000000000001,13.26,12.86,N/A,N/A -2012,11,28,0,30,102630,101400,100210,82.15,0,7.75,8.23,8.33,8.370000000000001,8.4,8.41,8.42,8.42,8.41,19.04,19.23,19.36,19.490000000000002,19.61,19.73,19.85,19.97,20.23,14.63,14.030000000000001,13.790000000000001,13.57,13.35,13.16,12.950000000000001,12.76,12.370000000000001,N/A,N/A -2012,11,28,1,30,102650,101420,100230,80.24,0,7.46,7.95,8.05,8.11,8.14,8.17,8.18,8.19,8.21,24.13,23.990000000000002,23.92,23.86,23.8,23.740000000000002,23.68,23.63,23.52,14.780000000000001,14.18,13.950000000000001,13.73,13.52,13.33,13.120000000000001,12.93,12.540000000000001,N/A,N/A -2012,11,28,2,30,102660,101440,100250,79.95,0,8.370000000000001,8.92,9.03,9.07,9.09,9.1,9.09,9.09,9.05,29.21,29.18,29.11,29.04,28.97,28.91,28.84,28.78,28.64,15.030000000000001,14.42,14.19,13.97,13.75,13.56,13.35,13.15,12.76,N/A,N/A -2012,11,28,3,30,102670,101450,100260,79.13,0,8.48,9.040000000000001,9.15,9.19,9.21,9.21,9.200000000000001,9.19,9.14,31.19,31.34,31.44,31.52,31.6,31.66,31.73,31.8,31.94,14.89,14.280000000000001,14.040000000000001,13.82,13.6,13.41,13.200000000000001,13.01,12.61,N/A,N/A -2012,11,28,4,30,102660,101430,100240,77.49,0,8.74,9.32,9.43,9.48,9.49,9.5,9.49,9.47,9.43,31.26,31.55,31.7,31.84,31.970000000000002,32.08,32.2,32.32,32.55,14.57,13.94,13.700000000000001,13.48,13.27,13.07,12.86,12.67,12.280000000000001,N/A,N/A -2012,11,28,5,30,102660,101430,100240,77.99,0,7.61,8.07,8.16,8.19,8.2,8.2,8.19,8.18,8.13,38.34,38.71,38.910000000000004,39.11,39.300000000000004,39.480000000000004,39.67,39.84,40.230000000000004,14.46,13.86,13.63,13.41,13.200000000000001,13.01,12.790000000000001,12.6,12.21,N/A,N/A -2012,11,28,6,30,102660,101440,100250,83.35000000000001,0,7.43,7.86,7.930000000000001,7.95,7.95,7.95,7.930000000000001,7.9,7.8500000000000005,41.82,42.300000000000004,42.61,42.89,43.160000000000004,43.4,43.67,43.92,44.45,14.6,14,13.77,13.55,13.34,13.15,12.94,12.74,12.35,N/A,N/A -2012,11,28,7,30,102700,101470,100280,83.67,0,7.15,7.57,7.65,7.68,7.69,7.69,7.68,7.67,7.640000000000001,43.99,44.550000000000004,44.9,45.22,45.52,45.800000000000004,46.09,46.36,46.92,14.6,14,13.77,13.55,13.34,13.15,12.94,12.74,12.35,N/A,N/A -2012,11,28,8,30,102710,101480,100290,80.42,0,7.6000000000000005,8.07,8.15,8.18,8.19,8.19,8.18,8.17,8.120000000000001,47.24,47.58,47.78,47.96,48.14,48.31,48.480000000000004,48.65,49,14.69,14.09,13.85,13.63,13.42,13.22,13.01,12.82,12.43,N/A,N/A -2012,11,28,9,30,102720,101490,100300,79.63,0,7.15,7.5600000000000005,7.62,7.640000000000001,7.640000000000001,7.640000000000001,7.62,7.6000000000000005,7.54,47.72,48.11,48.32,48.52,48.71,48.89,49.08,49.26,49.64,14.65,14.06,13.83,13.61,13.4,13.200000000000001,12.99,12.8,12.41,N/A,N/A -2012,11,28,10,30,102770,101540,100350,80.71000000000001,0,7.03,7.41,7.47,7.48,7.47,7.46,7.43,7.41,7.34,48.230000000000004,48.550000000000004,48.75,48.93,49.120000000000005,49.28,49.46,49.63,49.99,14.530000000000001,13.94,13.700000000000001,13.48,13.27,13.08,12.870000000000001,12.68,12.290000000000001,N/A,N/A -2012,11,28,11,30,102810,101580,100390,80.55,0,7.36,7.7700000000000005,7.83,7.84,7.84,7.82,7.8,7.7700000000000005,7.7,43.77,44.13,44.37,44.58,44.79,44.980000000000004,45.19,45.39,45.800000000000004,14.39,13.790000000000001,13.55,13.34,13.120000000000001,12.93,12.72,12.530000000000001,12.14,N/A,N/A -2012,11,28,12,30,102850,101620,100430,83,0,7.47,7.9,7.96,7.98,7.98,7.97,7.95,7.930000000000001,7.87,38.78,39.37,39.72,40.04,40.36,40.65,40.96,41.25,41.87,14.08,13.47,13.23,13.01,12.8,12.61,12.4,12.21,11.82,N/A,N/A -2012,11,28,13,30,102890,101660,100460,84.64,0,7.45,7.86,7.930000000000001,7.95,7.94,7.930000000000001,7.91,7.890000000000001,7.83,37.67,38.31,38.7,39.06,39.410000000000004,39.730000000000004,40.08,40.410000000000004,41.12,13.8,13.17,12.94,12.72,12.5,12.31,12.1,11.92,11.53,N/A,N/A -2012,11,28,14,30,102930,101700,100500,84.03,0,7.0600000000000005,7.43,7.48,7.49,7.48,7.47,7.44,7.42,7.3500000000000005,36.07,36.72,37.13,37.51,37.89,38.230000000000004,38.62,38.980000000000004,39.74,13.620000000000001,13.01,12.77,12.55,12.34,12.15,11.94,11.75,11.370000000000001,N/A,N/A -2012,11,28,15,30,102950,101710,100520,83.79,0,6.95,7.32,7.36,7.37,7.36,7.3500000000000005,7.32,7.3,7.23,36.980000000000004,37.59,37.95,38.29,38.62,38.93,39.28,39.61,40.31,13.63,13.02,12.790000000000001,12.57,12.36,12.17,11.96,11.78,11.39,N/A,N/A -2012,11,28,16,30,102920,101690,100490,82.69,0,6.67,7.01,7.05,7.0600000000000005,7.05,7.04,7.01,6.99,6.92,37.480000000000004,37.97,38.29,38.59,38.88,39.15,39.45,39.730000000000004,40.33,13.76,13.16,12.93,12.71,12.5,12.31,12.11,11.92,11.53,N/A,N/A -2012,11,28,17,30,102900,101670,100470,80.05,0,6.03,6.32,6.3500000000000005,6.36,6.3500000000000005,6.34,6.3100000000000005,6.29,6.23,38.410000000000004,38.95,39.27,39.58,39.88,40.160000000000004,40.47,40.76,41.38,13.99,13.41,13.19,12.97,12.76,12.57,12.370000000000001,12.18,11.790000000000001,N/A,N/A -2012,11,28,18,30,102860,101630,100440,73.79,0,5.37,5.61,5.64,5.64,5.63,5.62,5.6000000000000005,5.58,5.5200000000000005,34.84,35.15,35.34,35.52,35.7,35.86,36.050000000000004,36.22,36.6,14.33,13.780000000000001,13.55,13.35,13.14,12.950000000000001,12.75,12.56,12.17,N/A,N/A -2012,11,28,19,30,102830,101600,100410,68.82000000000001,0,4.8100000000000005,5.0200000000000005,5.05,5.0600000000000005,5.0600000000000005,5.05,5.04,5.03,5,36.46,36.58,36.63,36.68,36.730000000000004,36.77,36.83,36.88,36.96,14.870000000000001,14.35,14.13,13.92,13.72,13.530000000000001,13.32,13.13,12.75,N/A,N/A -2012,11,28,20,30,102780,101560,100370,64.61,0,4.29,4.5,4.53,4.55,4.55,4.5600000000000005,4.5600000000000005,4.5600000000000005,4.55,45.88,45.77,45.67,45.59,45.480000000000004,45.39,45.29,45.18,44.95,15.43,14.93,14.72,14.52,14.31,14.13,13.92,13.73,13.34,N/A,N/A -2012,11,28,21,30,102740,101520,100340,62.370000000000005,0,4.12,4.32,4.36,4.38,4.39,4.4,4.41,4.42,4.42,53.26,53.03,52.88,52.72,52.57,52.43,52.25,52.09,51.71,15.99,15.52,15.31,15.1,14.9,14.71,14.51,14.32,13.93,N/A,N/A -2012,11,28,22,30,102700,101480,100300,63.29,0,4.15,4.3500000000000005,4.39,4.42,4.43,4.44,4.44,4.45,4.46,60.43,60.17,59.980000000000004,59.81,59.61,59.44,59.22,59.03,58.6,16.43,15.97,15.76,15.56,15.36,15.17,14.96,14.780000000000001,14.39,N/A,N/A -2012,11,28,23,30,102690,101480,100290,63.35,0,4.84,5.09,5.14,5.16,5.17,5.18,5.18,5.18,5.17,71.22,70.81,70.56,70.31,70.07000000000001,69.85000000000001,69.59,69.35000000000001,68.83,16.75,16.29,16.080000000000002,15.88,15.68,15.49,15.280000000000001,15.09,14.71,N/A,N/A -2012,11,29,0,30,102700,101490,100310,66.26,0,4.98,5.25,5.3,5.32,5.33,5.34,5.34,5.34,5.34,74.99,74.65,74.43,74.23,74.02,73.82000000000001,73.62,73.42,72.97,16.830000000000002,16.37,16.16,15.96,15.76,15.57,15.370000000000001,15.18,14.790000000000001,N/A,N/A -2012,11,29,1,30,102700,101480,100300,64.61,0,5.37,5.71,5.79,5.84,5.87,5.89,5.91,5.92,5.95,74.3,74.55,74.69,74.81,74.93,75.03,75.13,75.23,75.41,17.14,16.68,16.48,16.27,16.06,15.870000000000001,15.67,15.48,15.08,N/A,N/A -2012,11,29,2,30,102680,101470,100290,65.63,0,5.66,6.0200000000000005,6.1000000000000005,6.140000000000001,6.17,6.2,6.21,6.22,6.24,81.62,81.74,81.78,81.81,81.83,81.86,81.88,81.91,81.96000000000001,17.29,16.830000000000002,16.62,16.42,16.21,16.02,15.81,15.620000000000001,15.22,N/A,N/A -2012,11,29,3,30,102660,101440,100260,61.89,0,5.91,6.2700000000000005,6.34,6.38,6.4,6.41,6.41,6.42,6.41,83.87,84.03,84.15,84.26,84.37,84.48,84.59,84.7,84.92,17.44,16.98,16.78,16.57,16.37,16.18,15.97,15.780000000000001,15.39,N/A,N/A -2012,11,29,4,30,102610,101400,100220,63.38,0,5.66,6.0200000000000005,6.1000000000000005,6.15,6.18,6.2,6.22,6.23,6.25,86.42,86.88,87.16,87.42,87.66,87.89,88.12,88.33,88.79,17.53,17.080000000000002,16.88,16.67,16.47,16.28,16.07,15.88,15.49,N/A,N/A -2012,11,29,5,30,102580,101370,100200,66.16,0,5.94,6.32,6.4,6.45,6.48,6.5,6.51,6.5200000000000005,6.53,95.21000000000001,95.86,96.17,96.42,96.66,96.85000000000001,97.03,97.2,97.52,17.73,17.29,17.09,16.88,16.67,16.48,16.27,16.080000000000002,15.68,N/A,N/A -2012,11,29,6,30,102570,101360,100190,66.17,0,5.9,6.26,6.33,6.37,6.38,6.390000000000001,6.390000000000001,6.390000000000001,6.38,98.03,98.53,98.87,99.19,99.51,99.79,100.08,100.34,100.9,17.61,17.18,16.98,16.78,16.57,16.39,16.18,15.99,15.6,N/A,N/A -2012,11,29,7,30,102570,101360,100180,67.69,0,5.64,5.97,6.03,6.05,6.07,6.07,6.07,6.0600000000000005,6.05,103.4,103.93,104.25,104.55,104.83,105.08,105.36,105.61,106.13,17.580000000000002,17.150000000000002,16.95,16.75,16.55,16.36,16.15,15.96,15.57,N/A,N/A -2012,11,29,8,30,102550,101340,100160,70.94,0,5.37,5.68,5.74,5.76,5.78,5.78,5.79,5.78,5.7700000000000005,106.60000000000001,107.11,107.46000000000001,107.79,108.11,108.4,108.71000000000001,109,109.61,17.53,17.1,16.91,16.7,16.5,16.31,16.11,15.92,15.530000000000001,N/A,N/A -2012,11,29,9,30,102540,101330,100150,72.07000000000001,0,4.19,4.46,4.54,4.6000000000000005,4.64,4.69,4.73,4.76,4.84,97.89,98.58,99.07000000000001,99.52,99.95,100.34,100.75,101.12,101.89,17.57,17.16,16.96,16.76,16.56,16.37,16.17,15.98,15.59,N/A,N/A -2012,11,29,10,30,102520,101310,100140,70.44,0,5.28,5.54,5.5600000000000005,5.5600000000000005,5.54,5.5200000000000005,5.49,5.47,5.41,116.26,116.58,116.76,116.93,117.08,117.23,117.39,117.54,117.83,17.79,17.37,17.17,16.97,16.77,16.580000000000002,16.37,16.19,15.790000000000001,N/A,N/A -2012,11,29,11,30,102510,101300,100130,73.74,0,4.48,4.7700000000000005,4.8500000000000005,4.9,4.95,4.98,5.01,5.04,5.1000000000000005,94.54,95.44,96.02,96.55,97.05,97.52,97.98,98.42,99.31,17.71,17.31,17.11,16.91,16.71,16.52,16.32,16.13,15.74,N/A,N/A -2012,11,29,12,30,102500,101290,100120,72.47,0,4.89,5.18,5.24,5.28,5.3,5.32,5.33,5.34,5.3500000000000005,101.08,101.57000000000001,101.89,102.2,102.49000000000001,102.75,103.03,103.29,103.83,17.97,17.56,17.37,17.17,16.97,16.78,16.580000000000002,16.39,16,N/A,N/A -2012,11,29,13,30,102490,101280,100110,75.01,0,4.89,5.19,5.26,5.29,5.32,5.34,5.3500000000000005,5.36,5.38,94.68,95.5,95.97,96.41,96.83,97.2,97.58,97.92,98.65,18.05,17.650000000000002,17.45,17.25,17.05,16.87,16.66,16.48,16.080000000000002,N/A,N/A -2012,11,29,14,30,102500,101300,100130,75.78,0,4.83,5.11,5.17,5.2,5.22,5.23,5.24,5.24,5.24,101.46000000000001,101.8,102.04,102.27,102.51,102.73,102.96000000000001,103.17,103.62,18.150000000000002,17.75,17.56,17.36,17.16,16.97,16.76,16.580000000000002,16.18,N/A,N/A -2012,11,29,15,30,102500,101290,100120,77.49,0,5.26,5.6000000000000005,5.68,5.72,5.75,5.76,5.78,5.79,5.8,101.49000000000001,102.03,102.4,102.74000000000001,103.07000000000001,103.37,103.7,104,104.63,18.26,17.86,17.67,17.47,17.27,17.080000000000002,16.88,16.69,16.3,N/A,N/A -2012,11,29,16,30,102480,101270,100110,79.67,0,5,5.3,5.36,5.38,5.4,5.41,5.41,5.41,5.4,105.7,106.28,106.61,106.91,107.19,107.45,107.71000000000001,107.95,108.45,18.39,17.990000000000002,17.8,17.6,17.400000000000002,17.21,17.01,16.82,16.43,N/A,N/A -2012,11,29,17,30,102430,101230,100060,78.34,0,5.51,5.86,5.93,5.96,5.97,5.98,5.98,5.98,5.97,106.02,106.36,106.58,106.78,106.98,107.16,107.35000000000001,107.53,107.9,18.54,18.14,17.95,17.75,17.55,17.36,17.16,16.97,16.580000000000002,N/A,N/A -2012,11,29,18,30,102410,101200,100040,80.78,0,6.05,6.47,6.5600000000000005,6.6000000000000005,6.63,6.640000000000001,6.640000000000001,6.640000000000001,6.63,106,106.26,106.41,106.54,106.68,106.79,106.91,107.02,107.25,18.63,18.240000000000002,18.04,17.84,17.64,17.45,17.25,17.06,16.67,N/A,N/A -2012,11,29,19,30,102380,101180,100010,78.03,0,5.79,6.16,6.24,6.2700000000000005,6.28,6.29,6.29,6.29,6.2700000000000005,103.24000000000001,103.75,104.05,104.34,104.61,104.85000000000001,105.12,105.37,105.89,18.73,18.35,18.16,17.96,17.76,17.57,17.37,17.18,16.79,N/A,N/A -2012,11,29,20,30,102330,101130,99960,79.10000000000001,0,5.68,6.0600000000000005,6.140000000000001,6.17,6.19,6.2,6.2,6.2,6.17,101.53,101.86,102.03,102.2,102.35000000000001,102.48,102.63,102.76,103.05,18.78,18.400000000000002,18.21,18.01,17.81,17.62,17.42,17.23,16.84,N/A,N/A -2012,11,29,21,30,102310,101110,99950,77.49,0,5.44,5.8100000000000005,5.9,5.94,5.97,5.98,5.99,6,6,105.57000000000001,105.59,105.65,105.71000000000001,105.76,105.81,105.87,105.92,106.04,18.87,18.490000000000002,18.3,18.1,17.91,17.72,17.52,17.330000000000002,16.94,N/A,N/A -2012,11,29,22,30,102280,101080,99920,75.68,0,5.3500000000000005,5.71,5.8,5.84,5.87,5.88,5.9,5.9,5.91,104.63,104.83,104.92,105.01,105.08,105.15,105.22,105.3,105.45,18.93,18.56,18.37,18.17,17.98,17.79,17.59,17.400000000000002,17.01,N/A,N/A -2012,11,29,23,30,102270,101070,99910,80.17,0,5.93,6.34,6.43,6.47,6.5,6.51,6.5200000000000005,6.5200000000000005,6.51,107.03,107.49000000000001,107.79,108.08,108.35000000000001,108.60000000000001,108.87,109.11,109.64,18.95,18.580000000000002,18.39,18.19,18,17.81,17.6,17.42,17.03,N/A,N/A -2012,11,30,0,30,102270,101080,99910,80.82000000000001,0,5.95,6.38,6.49,6.54,6.57,6.6000000000000005,6.61,6.62,6.62,111.47,112,112.28,112.54,112.77,112.99000000000001,113.21000000000001,113.42,113.83,19.04,18.66,18.48,18.28,18.080000000000002,17.89,17.69,17.5,17.11,N/A,N/A -2012,11,30,1,30,102280,101080,99920,80.47,0,5.94,6.38,6.49,6.54,6.57,6.59,6.6000000000000005,6.61,6.61,115.54,115.87,116.10000000000001,116.3,116.5,116.68,116.87,117.04,117.4,19.13,18.76,18.57,18.37,18.18,17.990000000000002,17.79,17.6,17.21,N/A,N/A -2012,11,30,2,30,102280,101080,99920,81.03,0,6.08,6.53,6.63,6.68,6.72,6.74,6.75,6.76,6.7700000000000005,114.72,114.97,115.13,115.3,115.46000000000001,115.61,115.78,115.93,116.27,19.26,18.900000000000002,18.71,18.51,18.32,18.13,17.92,17.740000000000002,17.35,N/A,N/A -2012,11,30,3,30,102260,101060,99900,83.09,0,6.71,7.25,7.37,7.44,7.48,7.51,7.53,7.54,7.5600000000000005,120.42,120.84,121.08,121.31,121.52,121.71000000000001,121.91,122.10000000000001,122.51,19.41,19.06,18.88,18.68,18.48,18.29,18.1,17.91,17.52,N/A,N/A -2012,11,30,4,30,102240,101040,99880,82,0,7.4,8.02,8.16,8.22,8.26,8.27,8.27,8.27,8.23,115.47,115.88,116.13,116.37,116.58,116.79,117.01,117.21000000000001,117.65,19.580000000000002,19.23,19.05,18.85,18.650000000000002,18.47,18.27,18.080000000000002,17.7,N/A,N/A -2012,11,30,5,30,102200,101010,99850,82.06,0,7.43,8.1,8.26,8.35,8.41,8.45,8.48,8.5,8.52,109.87,110.22,110.47,110.71000000000001,110.94,111.15,111.39,111.60000000000001,112.09,19.77,19.44,19.26,19.07,18.87,18.69,18.490000000000002,18.31,17.92,N/A,N/A -2012,11,30,6,30,102220,101020,99870,81.98,0,7.28,8.01,8.2,8.31,8.38,8.44,8.48,8.51,8.57,117.63,117.77,117.9,118.05,118.22,118.38,118.57000000000001,118.75,119.2,19.92,19.63,19.46,19.27,19.080000000000002,18.900000000000002,18.71,18.53,18.14,N/A,N/A -2012,11,30,7,30,102220,101020,99870,82.04,0,7.3500000000000005,8.07,8.25,8.35,8.42,8.47,8.5,8.53,8.57,127.8,127.84,127.87,127.91,127.95,127.99000000000001,128.06,128.1,128.25,20.11,19.84,19.69,19.5,19.31,19.14,18.94,18.76,18.39,N/A,N/A -2012,11,30,8,30,102210,101020,99860,84.12,0,7.59,8.39,8.59,8.72,8.8,8.870000000000001,8.91,8.94,8.98,122.79,123.02,123.19,123.37,123.56,123.75,123.98,124.21000000000001,124.79,20.14,19.88,19.72,19.53,19.35,19.17,18.98,18.8,18.43,N/A,N/A -2012,11,30,9,30,102200,101010,99850,83.39,0,6.86,7.53,7.69,7.8,7.91,8.01,8.15,8.290000000000001,8.66,125.42,125.41,125.43,125.46000000000001,125.54,125.65,125.9,126.16,127.3,20.16,19.91,19.75,19.57,19.400000000000002,19.22,19.04,18.88,18.55,N/A,N/A -2012,11,30,10,30,102190,101000,99850,85.95,0,5.8100000000000005,6.62,6.94,7.25,7.51,7.76,8,8.21,8.59,133.11,133.63,133.93,134.29,134.56,134.77,135.03,135.28,136.06,20.28,20.06,19.93,19.78,19.63,19.48,19.330000000000002,19.19,18.87,N/A,N/A -2012,11,30,11,30,102180,100990,99830,83.13,0,7.0600000000000005,7.94,8.23,8.47,8.66,8.83,8.98,9.11,9.34,140.03,140.28,140.48,140.72,140.97,141.23,141.54,141.84,142.54,20.55,20.35,20.2,20.04,19.87,19.71,19.53,19.37,19.01,N/A,N/A -2012,11,30,12,30,102180,100990,99840,83.74,0,6.73,7.58,7.87,8.11,8.32,8.51,8.68,8.84,9.14,135.3,135.95,136.39000000000001,136.9,137.45000000000002,137.99,138.59,139.16,140.38,20.56,20.37,20.240000000000002,20.080000000000002,19.93,19.77,19.61,19.45,19.12,N/A,N/A -2012,11,30,13,30,102190,101000,99840,85.28,0,5.76,6.6000000000000005,6.92,7.19,7.43,7.65,7.86,8.05,8.4,140.77,141.3,141.67000000000002,142.1,142.55,142.99,143.46,143.92000000000002,144.89000000000001,20.64,20.46,20.330000000000002,20.18,20.03,19.88,19.72,19.57,19.25,N/A,N/A -2012,11,30,14,30,102200,101010,99860,85.74,0,6.04,6.96,7.28,7.57,7.82,8.040000000000001,8.25,8.43,8.76,138.12,138.85,139.46,140.12,140.77,141.39000000000001,142.08,142.73,144.32,20.67,20.52,20.41,20.28,20.14,20,19.86,19.72,19.42,N/A,N/A -2012,11,30,15,30,102220,101030,99880,85.4,0,6.36,7.3100000000000005,7.66,7.97,8.25,8.49,8.73,8.94,9.32,136.59,137.11,137.54,138.12,138.79,139.49,140.33,141.14000000000001,142.86,20.73,20.580000000000002,20.48,20.35,20.22,20.1,19.96,19.84,19.55,N/A,N/A -2012,11,30,16,30,102170,100980,99830,85.74,0,6.26,7.22,7.58,7.9,8.18,8.43,8.67,8.89,9.31,136.73,137.25,137.75,138.38,139.14000000000001,139.94,140.87,141.76,143.55,20.76,20.63,20.53,20.41,20.29,20.17,20.04,19.91,19.64,N/A,N/A -2012,11,30,17,30,102170,100980,99830,87.37,0,6.0200000000000005,6.96,7.32,7.640000000000001,7.930000000000001,8.19,8.42,8.63,9,134.12,134.73,135.17000000000002,135.75,136.42000000000002,137.15,138.04,138.9,141.02,20.77,20.63,20.53,20.400000000000002,20.28,20.16,20.03,19.91,19.66,N/A,N/A -2012,11,30,18,30,102160,100970,99820,87.28,0,6.3100000000000005,7.3100000000000005,7.7,8.05,8.36,8.64,8.89,9.13,9.540000000000001,141.27,141.84,142.21,142.67000000000002,143.18,143.72,144.35,144.95000000000002,146.31,20.86,20.72,20.61,20.490000000000002,20.35,20.23,20.09,19.95,19.67,N/A,N/A -2012,11,30,19,30,102110,100920,99770,86.7,0,6.23,7.29,7.69,8.06,8.39,8.69,8.950000000000001,9.200000000000001,9.6,134.6,135.33,135.88,136.54,137.26,137.98,138.84,139.67000000000002,141.71,20.900000000000002,20.77,20.68,20.56,20.44,20.32,20.19,20.07,19.81,N/A,N/A -2012,11,30,20,30,102070,100890,99740,85.94,0,7.18,8.34,8.77,9.16,9.51,9.82,10.11,10.370000000000001,10.84,133.79,134.75,135.41,136.2,136.99,137.78,138.62,139.4,141.06,20.92,20.82,20.73,20.62,20.5,20.39,20.26,20.14,19.87,N/A,N/A -2012,11,30,21,30,102070,100880,99730,88.48,0,6.63,7.76,8.19,8.58,8.94,9.26,9.57,9.85,10.39,137.28,138.29,139.01,139.82,140.66,141.5,142.41,143.27,145,20.85,20.73,20.63,20.51,20.39,20.27,20.14,20.02,19.75,N/A,N/A -2012,11,30,22,30,102030,100840,99690,86.49,0,6.92,8.11,8.56,8.98,9.35,9.700000000000001,10.02,10.31,10.8,137.03,137.74,138.25,138.87,139.54,140.23,141.01,141.76,143.47,20.91,20.8,20.71,20.6,20.48,20.37,20.240000000000002,20.12,19.85,N/A,N/A -2012,11,30,23,30,102030,100840,99690,86.24,0,7.47,8.69,9.16,9.59,9.96,10.31,10.64,10.93,11.43,136.89000000000001,137.78,138.42000000000002,139.15,139.85,140.55,141.25,141.91,143.28,20.92,20.830000000000002,20.740000000000002,20.64,20.53,20.42,20.3,20.19,19.93,N/A,N/A -2012,12,1,0,30,102070,100880,99730,87.55,0,6.6000000000000005,7.8,8.28,8.72,9.11,9.47,9.81,10.120000000000001,10.66,147.97,147.87,147.9,148.03,148.24,148.51,148.9,149.31,150.35,20.94,20.84,20.740000000000002,20.63,20.5,20.38,20.25,20.13,19.84,N/A,N/A -2012,12,1,1,30,102050,100870,99720,88.75,0,6.48,7.7,8.2,8.68,9.11,9.51,9.88,10.22,10.82,143.12,143.97,144.6,145.32,145.98,146.63,147.28,147.88,149.17000000000002,20.92,20.84,20.76,20.67,20.56,20.46,20.34,20.22,19.97,N/A,N/A -2012,12,1,2,30,102060,100880,99730,87.83,0,6.74,7.98,8.47,8.93,9.32,9.700000000000001,10.040000000000001,10.35,10.9,144.55,145.20000000000002,145.70000000000002,146.32,146.98,147.67000000000002,148.45000000000002,149.19,150.75,21.02,20.95,20.87,20.78,20.67,20.57,20.45,20.34,20.09,N/A,N/A -2012,12,1,3,30,102070,100880,99730,88,0,6.640000000000001,7.890000000000001,8.38,8.86,9.28,9.68,10.040000000000001,10.38,11,149.70000000000002,150.20000000000002,150.61,151.18,151.8,152.47,153.20000000000002,153.9,155.35,20.98,20.92,20.85,20.76,20.650000000000002,20.55,20.44,20.330000000000002,20.09,N/A,N/A -2012,12,1,4,30,102070,100880,99730,88.18,0.30000000000000004,6.23,7.47,7.95,8.41,8.81,9.18,9.53,9.84,10.41,152.34,152.31,152.43,152.65,152.95000000000002,153.28,153.72,154.16,155.27,21.04,20.98,20.92,20.82,20.72,20.61,20.490000000000002,20.38,20.12,N/A,N/A -2012,12,1,5,30,102090,100900,99750,89.25,5.6000000000000005,5.38,6.59,7.11,7.63,8.08,8.49,8.86,9.22,9.870000000000001,150.45000000000002,150.91,151.32,151.86,152.47,153.12,153.84,154.53,155.92000000000002,20.96,20.92,20.86,20.77,20.68,20.580000000000002,20.47,20.37,20.13,N/A,N/A -2012,12,1,6,30,102060,100870,99730,88.79,0.5,6.11,7.33,7.83,8.33,8.8,9.22,9.64,10.03,10.700000000000001,143.06,144.67000000000002,145.74,146.95000000000002,148.14000000000001,149.28,150.44,151.53,153.53,21.080000000000002,21,20.93,20.85,20.76,20.68,20.580000000000002,20.490000000000002,20.26,N/A,N/A -2012,12,1,7,30,102090,100910,99760,88.47,0,6.63,7.95,8.5,9.01,9.46,9.870000000000001,10.23,10.57,11.120000000000001,152.01,153.22,154.06,154.96,155.83,156.67000000000002,157.48,158.25,159.70000000000002,21.240000000000002,21.19,21.14,21.06,20.97,20.88,20.77,20.67,20.43,N/A,N/A -2012,12,1,8,30,102090,100900,99760,87.8,0,6.890000000000001,8.18,8.700000000000001,9.18,9.59,9.950000000000001,10.28,10.57,11.1,160.34,160.96,161.43,162.05,162.71,163.41,164.17000000000002,164.89000000000001,166.34,21.26,21.240000000000002,21.19,21.12,21.04,20.96,20.86,20.76,20.53,N/A,N/A -2012,12,1,9,30,102080,100900,99750,87.75,0,6.83,8.18,8.71,9.22,9.67,10.08,10.46,10.81,11.4,161.07,161.83,162.39000000000001,163.13,163.96,164.83,165.8,166.74,168.61,21.28,21.27,21.22,21.16,21.1,21.02,20.94,20.87,20.66,N/A,N/A -2012,12,1,10,30,102090,100900,99760,88.60000000000001,0,6.33,7.62,8.16,8.67,9.14,9.58,9.96,10.31,10.870000000000001,164.19,165.25,166.03,166.99,167.9,168.77,169.54,170.25,171.46,21.27,21.27,21.240000000000002,21.2,21.150000000000002,21.1,21.02,20.94,20.72,N/A,N/A -2012,12,1,11,30,102100,100920,99770,89.42,0,5.36,6.65,7.21,7.76,8.24,8.68,9.08,9.44,10.08,165.1,166.58,167.62,168.73,169.83,170.89000000000001,172.03,173.1,175,21.2,21.240000000000002,21.240000000000002,21.21,21.18,21.14,21.080000000000002,21.02,20.830000000000002,N/A,N/A -2012,12,1,12,30,102110,100930,99780,88.72,0,5.62,6.99,7.57,8.11,8.58,9,9.32,9.61,9.93,167.84,168.62,169.23,170,170.84,171.72,172.75,173.73,175.65,21.330000000000002,21.38,21.38,21.35,21.31,21.26,21.18,21.1,20.88,N/A,N/A -2012,12,1,13,30,102110,100930,99780,90.18,0,5.2700000000000005,6.5600000000000005,7.1000000000000005,7.640000000000001,8.09,8.5,8.86,9.18,9.84,163.48,165.26,166.6,168.24,169.88,171.5,173.02,174.4,176.82,21.21,21.240000000000002,21.23,21.2,21.17,21.13,21.080000000000002,21.02,20.84,N/A,N/A -2012,12,1,14,30,102130,100950,99800,90.57000000000001,0,4.83,6.140000000000001,6.7,7.2700000000000005,7.78,8.25,8.63,8.98,9.16,164.75,166.41,167.6,169.02,170.62,172.32,173.95000000000002,175.44,176.88,21.19,21.27,21.28,21.28,21.27,21.25,21.21,21.16,20.98,N/A,N/A -2012,12,1,15,30,102140,100950,99810,91.18,0,4.57,5.79,6.34,6.9,7.41,7.890000000000001,8.28,8.63,8.790000000000001,164.34,165.91,167.23,168.91,170.74,172.64000000000001,174.42000000000002,176.04,177.68,21.16,21.19,21.19,21.19,21.19,21.19,21.16,21.14,21.02,N/A,N/A -2012,12,1,16,30,102140,100950,99810,90.95,0,4.78,5.93,6.44,6.97,7.46,7.930000000000001,8.28,8.59,8.75,157.78,159.35,160.75,162.71,165.03,167.54,169.73,171.68,172.94,21.2,21.2,21.19,21.19,21.19,21.2,21.17,21.14,21.01,N/A,N/A -2012,12,1,17,30,102120,100940,99790,91.53,0,4.7,5.7700000000000005,6.25,6.76,7.28,7.7700000000000005,8.21,8.61,8.870000000000001,158.47,160.34,161.82,163.73,165.66,167.59,169.52,171.33,173.72,21.27,21.23,21.2,21.18,21.17,21.16,21.14,21.12,20.98,N/A,N/A -2012,12,1,18,30,102100,100920,99780,91.01,0,4.62,5.69,6.18,6.69,7.19,7.68,8.16,8.59,8.8,164.01,165.18,166.11,167.29,168.4,169.46,170.44,171.35,173.20000000000002,21.41,21.36,21.32,21.28,21.25,21.21,21.17,21.12,21.03,N/A,N/A -2012,12,1,19,30,102090,100910,99760,90.83,0,4.88,5.9,6.34,6.79,7.2,7.59,7.9,8.17,8.46,157.53,158.62,159.46,160.51,161.56,162.61,163.76,164.84,167.57,21.48,21.39,21.330000000000002,21.26,21.19,21.12,21.03,20.95,20.76,N/A,N/A -2012,12,1,20,30,102070,100890,99740,90.78,0,5.15,6.24,6.7,7.16,7.6000000000000005,8.01,8.41,8.76,9.24,158.41,159.6,160.54,161.73,162.97,164.24,165.55,166.78,168.57,21.48,21.42,21.37,21.31,21.240000000000002,21.18,21.1,21.02,20.82,N/A,N/A -2012,12,1,21,30,102040,100860,99720,91.39,0,5.19,6.42,6.94,7.48,7.95,8.38,8.72,9.02,9.31,158.16,159.45000000000002,160.42000000000002,161.64000000000001,162.72,163.70000000000002,164.36,164.9,165.66,21.41,21.400000000000002,21.38,21.34,21.3,21.25,21.18,21.11,20.85,N/A,N/A -2012,12,1,22,30,102020,100840,99690,91.73,0,5.57,6.86,7.390000000000001,7.9,8.35,8.73,9.040000000000001,9.32,9.63,156.23,157.65,158.74,160.1,161.39000000000001,162.61,163.73,164.75,166.39000000000001,21.25,21.27,21.26,21.23,21.18,21.13,21.06,20.990000000000002,20.77,N/A,N/A -2012,12,1,23,30,102010,100820,99680,92.58,0,5.58,6.88,7.43,7.96,8.41,8.81,9.15,9.44,9.93,157.01,157.74,158.36,159.19,160.21,161.36,162.8,164.21,165.83,21.150000000000002,21.16,21.14,21.11,21.07,21.03,20.98,20.92,20.75,N/A,N/A -2012,12,2,0,30,102020,100840,99700,92.4,0,5.71,7.04,7.61,8.19,8.71,9.19,9.620000000000001,10,10.51,158.72,159.32,159.81,160.49,161.26,162.06,162.86,163.59,164.59,21.12,21.13,21.11,21.09,21.080000000000002,21.06,21.03,20.990000000000002,20.81,N/A,N/A -2012,12,2,1,30,102020,100840,99700,91.72,0,5.76,7.0600000000000005,7.62,8.18,8.69,9.17,9.59,9.97,10.5,157.02,157.46,157.83,158.31,158.86,159.45000000000002,160.15,160.82,162.25,21.11,21.09,21.06,21.02,20.97,20.93,20.87,20.82,20.650000000000002,N/A,N/A -2012,12,2,2,30,102040,100850,99710,92.23,0,5.73,7.0600000000000005,7.640000000000001,8.22,8.76,9.27,9.75,10.18,10.65,155.70000000000002,156.34,156.82,157.44,158.12,158.83,159.70000000000002,160.55,162.11,21.1,21.09,21.07,21.03,20.990000000000002,20.95,20.900000000000002,20.85,20.66,N/A,N/A -2012,12,2,3,30,102040,100860,99710,92.8,0,5.84,7.19,7.79,8.4,8.96,9.47,9.92,10.33,10.870000000000001,157.9,158.47,158.88,159.36,159.9,160.47,161.20000000000002,161.93,163.31,21.1,21.09,21.06,21.02,20.98,20.93,20.87,20.81,20.63,N/A,N/A -2012,12,2,4,30,102030,100850,99710,92.81,0,5.5600000000000005,6.95,7.58,8.24,8.83,9.38,9.81,10.17,10.6,159.97,160.84,161.44,162.14000000000001,162.77,163.35,163.94,164.5,165.45000000000002,21.14,21.17,21.16,21.16,21.14,21.13,21.080000000000002,21.03,20.82,N/A,N/A -2012,12,2,5,30,102020,100840,99700,93.86,0,4.97,6.32,6.94,7.61,8.3,8.99,9.65,10.25,10.93,164.57,165.71,166.59,167.66,168.73,169.8,170.09,170.19,170.83,21.080000000000002,21.12,21.14,21.16,21.17,21.18,21.17,21.150000000000002,21.02,N/A,N/A -2012,12,2,6,30,102040,100860,99710,94.34,0,4.46,5.58,6.140000000000001,6.8100000000000005,7.48,8.15,8.71,9.21,9.51,159.88,161.53,162.68,163.99,164.97,165.75,166.76,167.78,169.53,21.16,21.11,21.1,21.11,21.14,21.18,21.21,21.22,21.1,N/A,N/A -2012,12,2,7,30,102070,100890,99740,96.37,0,4.17,5.3100000000000005,5.88,6.53,7.19,7.88,8.69,9.51,10.08,156.96,158.71,160.16,162.14000000000001,164.23,166.46,168.67000000000002,170.82,172.08,21.16,21.1,21.07,21.05,21.06,21.080000000000002,21.12,21.150000000000002,20.990000000000002,N/A,N/A -2012,12,2,8,30,102060,100880,99740,96.31,0,3.95,5.19,5.76,6.34,6.88,7.37,8.01,8.65,9.24,165.05,166.63,167.86,169.39000000000001,171.01,172.70000000000002,174.47,176.20000000000002,176.36,21.29,21.29,21.27,21.240000000000002,21.21,21.17,21.150000000000002,21.14,20.990000000000002,N/A,N/A -2012,12,2,9,30,102060,100880,99740,95.64,0,4.72,6.140000000000001,6.8500000000000005,7.62,8.36,9.09,9.77,10.39,11.25,164.74,166.15,167.08,168.04,168.84,169.55,170.53,171.55,173.83,21.41,21.45,21.45,21.43,21.400000000000002,21.35,21.28,21.2,21.01,N/A,N/A -2012,12,2,10,30,102080,100900,99760,91.10000000000001,0,5.92,7.49,8.1,8.58,8.92,9.18,9.38,9.56,9.84,171.91,172.48,172.76,172.91,172.86,172.68,172.46,172.24,172.14000000000001,22.05,22.2,22.22,22.17,22.06,21.92,21.740000000000002,21.57,21.21,N/A,N/A -2012,12,2,11,30,102100,100920,99780,94.95,0,4.1,5.58,6.24,6.86,7.36,7.78,8.370000000000001,8.98,9.46,160.55,162.4,163.49,164.29,164.57,164.47,163.99,163.43,163.76,21.57,21.71,21.75,21.77,21.75,21.7,21.61,21.53,21.26,N/A,N/A -2012,12,2,12,30,102110,100930,99790,96.45,0,3.13,4.49,5.2,6.0200000000000005,6.92,7.890000000000001,8.32,8.57,8.97,155.99,158.78,161.11,164.21,167.20000000000002,170.21,171.58,172.42000000000002,174.68,21.35,21.43,21.48,21.55,21.61,21.66,21.6,21.5,21.27,N/A,N/A -2012,12,2,13,30,102130,100950,99800,96.3,0,3.44,4.67,5.2700000000000005,5.98,6.45,6.75,7.08,7.41,7.97,149.5,153,157.62,166.33,170.69,172.07,172.85,173.43,172.9,21.25,21.35,21.43,21.56,21.56,21.48,21.400000000000002,21.330000000000002,21.13,N/A,N/A -2012,12,2,14,30,102160,100980,99840,96.36,0,2.6,3.67,4.3,5.29,5.98,6.4,6.83,7.25,8.02,143.01,146.69,149.95000000000002,154.8,157.91,159.53,160.98,162.32,164.87,21.32,21.36,21.400000000000002,21.5,21.53,21.52,21.52,21.53,21.54,N/A,N/A -2012,12,2,15,30,102170,100990,99850,96.25,0,3.02,4.3500000000000005,5.17,6.23,6.8500000000000005,7.13,7.34,7.51,7.73,124.81,132.54,138.54,145.81,150.08,151.86,153.27,154.49,156.88,21.16,21.35,21.53,21.82,21.96,22.01,21.98,21.93,21.68,N/A,N/A -2012,12,2,16,30,102160,100980,99840,94.94,0,3.24,4.3500000000000005,5.11,6.28,6.96,7.26,7.51,7.73,8.08,123.31,127.95,133.2,142.86,148.26,150.39000000000001,152.20000000000002,153.8,156.53,21.28,21.34,21.490000000000002,21.8,21.94,21.98,21.97,21.93,21.75,N/A,N/A -2012,12,2,17,30,102130,100950,99810,93.8,0,3.85,4.9,5.53,6.390000000000001,7.0200000000000005,7.47,7.67,7.78,7.99,115.21000000000001,120.29,124.99000000000001,131.96,138.05,143.39000000000001,145.92000000000002,147.55,150.12,21.43,21.47,21.55,21.72,21.85,21.96,21.93,21.88,21.68,N/A,N/A -2012,12,2,18,30,102120,100940,99790,94.25,0,3.34,4.36,4.9,5.58,6.36,7.23,7.66,7.96,8.34,115.61,119.13,122.52,128.09,135.14000000000001,143.4,146.86,148.96,151.70000000000002,21.42,21.38,21.39,21.46,21.59,21.76,21.79,21.79,21.63,N/A,N/A -2012,12,2,19,30,102120,100940,99800,92.95,0,4.13,5.21,5.76,6.51,7.29,8.11,8.48,8.72,9.040000000000001,125.63000000000001,129.06,132.25,137.18,141.8,146.25,148.24,149.47,151.4,21.580000000000002,21.63,21.68,21.8,21.91,22.01,21.98,21.92,21.71,N/A,N/A -2012,12,2,20,30,102100,100920,99780,93.11,0,4.3,5.45,6.03,6.72,7.41,8.13,8.57,8.89,9.17,120.8,124.9,127.99000000000001,131.79,135.74,139.99,143.78,147.17000000000002,150.14000000000001,21.490000000000002,21.53,21.55,21.57,21.62,21.69,21.71,21.71,21.53,N/A,N/A -2012,12,2,21,30,102050,100870,99730,93.10000000000001,0,5.28,6.47,6.99,7.57,8.120000000000001,8.66,9.1,9.5,9.73,123.48,126.7,129.42000000000002,133.03,136.36,139.49,142.15,144.49,146.08,21.52,21.580000000000002,21.62,21.67,21.71,21.740000000000002,21.72,21.68,21.43,N/A,N/A -2012,12,2,22,30,102030,100850,99710,93.42,0,5.65,6.96,7.57,8.25,8.9,9.53,10.06,10.52,10.94,125.63000000000001,127.81,129.45,131.54,133.55,135.53,137.43,139.19,142.69,21.5,21.5,21.51,21.53,21.55,21.580000000000002,21.57,21.54,21.36,N/A,N/A -2012,12,2,23,30,102020,100840,99700,92.41,0,6.45,7.82,8.42,9.040000000000001,9.61,10.14,10.53,10.870000000000001,11.05,130.69,131.71,132.46,133.39000000000001,134.38,135.39000000000001,136.6,137.75,141.1,21.580000000000002,21.56,21.54,21.51,21.48,21.46,21.400000000000002,21.36,21.2,N/A,N/A -2012,12,3,0,30,102030,100850,99700,92.83,0,6.42,7.86,8.5,9.16,9.78,10.36,10.89,11.36,11.88,134.5,135.21,135.75,136.44,137.14000000000001,137.84,138.69,139.53,142.07,21.55,21.55,21.53,21.5,21.46,21.42,21.37,21.31,21.13,N/A,N/A -2012,12,3,1,30,102020,100840,99700,92.62,0,6.4,7.75,8.33,8.92,9.46,9.97,10.46,10.9,11.620000000000001,133,134.01,134.76,135.65,136.53,137.39000000000001,138.27,139.11,141.01,21.51,21.47,21.43,21.36,21.3,21.240000000000002,21.16,21.09,20.91,N/A,N/A -2012,12,3,2,30,102020,100840,99690,92.51,0,6.67,8.03,8.6,9.14,9.64,10.1,10.55,10.97,11.69,131.86,132.71,133.39000000000001,134.19,135.01,135.84,136.72,137.56,139.18,21.52,21.48,21.43,21.36,21.3,21.23,21.16,21.09,20.91,N/A,N/A -2012,12,3,3,30,102000,100820,99680,92.57000000000001,0,6.72,8.14,8.75,9.36,9.94,10.49,11.03,11.53,12.41,132.19,133.05,133.71,134.49,135.27,136.01,136.77,137.48,139.16,21.52,21.48,21.44,21.39,21.330000000000002,21.27,21.18,21.11,20.900000000000002,N/A,N/A -2012,12,3,4,30,101990,100810,99660,91.09,0,7.34,8.790000000000001,9.4,9.99,10.53,11.040000000000001,11.53,11.98,12.8,135.15,136.01,136.69,137.51,138.34,139.16,139.92000000000002,140.61,141.64000000000001,21.61,21.580000000000002,21.54,21.48,21.42,21.36,21.29,21.21,21.02,N/A,N/A -2012,12,3,5,30,101950,100770,99630,90.28,0,6.8100000000000005,8.25,8.870000000000001,9.52,10.1,10.64,11.14,11.6,12.32,132.88,134.19,135.1,136.12,137.05,137.92000000000002,138.78,139.58,141.23,21.61,21.59,21.55,21.5,21.43,21.37,21.3,21.22,21.02,N/A,N/A -2012,12,3,6,30,101970,100790,99650,90.4,0,7.05,8.53,9.16,9.8,10.39,10.950000000000001,11.48,11.98,12.75,137.96,138.9,139.56,140.36,141.15,141.93,142.75,143.54,145.11,21.61,21.580000000000002,21.54,21.48,21.41,21.34,21.26,21.18,20.990000000000002,N/A,N/A -2012,12,3,7,30,101960,100780,99640,88.81,0,7.32,8.86,9.51,10.14,10.700000000000001,11.22,11.68,12.09,12.81,140.41,141.54,142.3,143.18,144.01,144.82,145.58,146.28,147.62,21.75,21.75,21.71,21.650000000000002,21.580000000000002,21.5,21.41,21.32,21.1,N/A,N/A -2012,12,3,8,30,101930,100760,99610,88.75,0,7.5600000000000005,9.14,9.78,10.39,10.93,11.43,11.86,12.25,12.81,146.52,147.18,147.69,148.3,148.91,149.49,150.03,150.52,151.37,21.82,21.84,21.81,21.76,21.7,21.63,21.54,21.46,21.23,N/A,N/A -2012,12,3,9,30,101920,100750,99600,88.07000000000001,0,7.66,9.200000000000001,9.85,10.49,11.07,11.620000000000001,12.15,12.64,13.47,143.55,144.35,144.97,145.78,146.56,147.34,148.09,148.81,150.06,21.81,21.81,21.77,21.72,21.66,21.6,21.53,21.46,21.27,N/A,N/A -2012,12,3,10,30,101900,100720,99580,89,0,8.040000000000001,9.64,10.3,10.94,11.51,12.05,12.56,13.030000000000001,13.83,142.74,143.68,144.33,145.1,145.85,146.61,147.37,148.09,149.5,21.85,21.85,21.81,21.75,21.68,21.61,21.52,21.45,21.240000000000002,N/A,N/A -2012,12,3,11,30,101900,100720,99580,88.39,0,8.2,9.77,10.39,10.97,11.47,11.93,12.36,12.75,13.48,146.66,147.23,147.69,148.28,148.88,149.51,150.20000000000002,150.86,152.25,21.94,21.94,21.900000000000002,21.830000000000002,21.75,21.66,21.56,21.46,21.240000000000002,N/A,N/A -2012,12,3,12,30,101900,100730,99590,86.56,0,8.56,10.17,10.82,11.43,11.97,12.47,12.92,13.33,14.030000000000001,148.88,149.33,149.67000000000002,150.14000000000001,150.68,151.25,151.95000000000002,152.62,154.19,22.04,22.07,22.04,21.98,21.91,21.84,21.76,21.68,21.47,N/A,N/A -2012,12,3,13,30,101890,100720,99580,88.51,0,8.72,10.41,11.08,11.72,12.290000000000001,12.82,13.32,13.780000000000001,14.59,151.08,151.91,152.49,153.17000000000002,153.83,154.48,155.15,155.8,157.17000000000002,22.02,22.080000000000002,22.06,22.03,21.98,21.93,21.86,21.8,21.61,N/A,N/A -2012,12,3,14,30,101920,100740,99600,89.25,0,8.75,10.47,11.17,11.83,12.41,12.96,13.44,13.870000000000001,14.63,153.83,154.63,155.25,156.04,156.82,157.61,158.38,159.09,160.31,22.11,22.18,22.17,22.13,22.080000000000002,22.04,21.97,21.900000000000002,21.7,N/A,N/A -2012,12,3,15,30,101900,100730,99590,90.69,0,8.13,9.790000000000001,10.450000000000001,11.08,11.63,12.15,12.620000000000001,13.040000000000001,13.86,151.88,152.93,153.64000000000001,154.46,155.23,155.96,156.63,157.24,158.36,21.94,21.97,21.95,21.91,21.86,21.8,21.72,21.650000000000002,21.45,N/A,N/A -2012,12,3,16,30,101880,100710,99570,91.19,2.6,6.88,8.44,9.1,9.74,10.35,10.91,11.44,11.93,12.790000000000001,155.44,155.91,156.32,156.88,157.48,158.1,158.73,159.32,160.56,21.93,22,21.990000000000002,21.97,21.93,21.900000000000002,21.830000000000002,21.77,21.61,N/A,N/A -2012,12,3,17,30,101840,100670,99530,91.24,0,7.34,9.03,9.75,10.44,11.05,11.61,12.11,12.56,13.39,151.03,151.82,152.43,153.12,153.87,154.67000000000002,155.6,156.51,158.37,21.990000000000002,22.06,22.06,22.04,22.01,21.96,21.87,21.79,21.55,N/A,N/A -2012,12,3,18,30,101820,100640,99500,90.66,0,8.52,10.25,10.950000000000001,11.63,12.24,12.8,13.34,13.83,14.68,156.13,157.08,157.71,158.42000000000002,159.05,159.65,160.20000000000002,160.70000000000002,161.55,22.12,22.150000000000002,22.12,22.07,22.01,21.93,21.85,21.77,21.57,N/A,N/A -2012,12,3,19,30,101790,100620,99480,90.73,0,8.25,9.84,10.450000000000001,11.03,11.56,12.07,12.58,13.06,13.94,154.09,154.59,155,155.5,156.09,156.75,157.55,158.35,159.94,22.18,22.25,22.240000000000002,22.18,22.12,22.04,21.94,21.85,21.64,N/A,N/A -2012,12,3,20,30,101800,100620,99480,95.55,9.9,9.01,10.5,11.07,11.58,12.02,12.43,12.790000000000001,13.11,13.71,164.54,166.1,167.05,168.24,169.54,170.91,172.48,173.98,177.62,21.39,21.26,21.16,21.04,20.93,20.81,20.69,20.580000000000002,20.34,N/A,N/A -2012,12,3,21,30,101800,100620,99480,93.86,0.4,6.8100000000000005,8.05,8.55,9.02,9.43,9.82,10.200000000000001,10.55,11.25,170.1,170.21,170.35,170.62,171.01,171.5,172.20000000000002,172.91,174.74,21.51,21.42,21.330000000000002,21.21,21.1,20.990000000000002,20.87,20.77,20.6,N/A,N/A -2012,12,3,22,30,101760,100580,99440,94.58,0,7.23,8.42,8.85,9.26,9.65,10.040000000000001,10.48,10.91,11.73,161.51,163.14000000000001,164.61,166.72,168.97,171.33,173.66,175.84,179.1,21.5,21.45,21.400000000000002,21.35,21.29,21.240000000000002,21.18,21.13,20.97,N/A,N/A -2012,12,3,23,30,101750,100580,99440,93.88,0,6.96,8.52,9.200000000000001,9.89,10.55,11.19,11.81,12.4,13.43,158.38,160,161.1,162.32,163.41,164.41,165.3,166.11,167.5,21.79,21.84,21.84,21.830000000000002,21.81,21.79,21.76,21.73,21.63,N/A,N/A -2012,12,4,0,30,101770,100590,99460,90.76,0,8.58,10.47,11.28,12.07,12.77,13.41,13.93,14.39,15.02,166.37,166.52,166.64000000000001,166.79,166.94,167.09,167.23,167.37,167.58,22.11,22.19,22.2,22.18,22.150000000000002,22.12,22.07,22.01,21.8,N/A,N/A -2012,12,4,1,30,101800,100620,99490,91.69,0,9,10.63,11.25,11.790000000000001,12.24,12.65,12.950000000000001,13.200000000000001,13.34,162.25,162.97,163.49,164.16,164.69,165.15,165.31,165.39000000000001,166.28,22.02,22.06,22.04,22.01,21.98,21.96,21.93,21.91,21.81,N/A,N/A -2012,12,4,2,30,101800,100630,99490,93.41,0,7.29,8.81,9.450000000000001,10.09,10.73,11.39,12.11,12.81,13.790000000000001,156.76,158.36,159.61,161.29,162.87,164.43,165.73,166.9,168.33,21.71,21.78,21.79,21.82,21.830000000000002,21.85,21.85,21.84,21.72,N/A,N/A -2012,12,4,3,30,101820,100640,99500,94.09,0,6.28,7.8,8.49,9.22,9.89,10.51,11.040000000000001,11.5,12.32,149.33,151.37,152.91,154.82,156.61,158.34,159.88,161.27,163.63,21.650000000000002,21.68,21.68,21.69,21.69,21.68,21.650000000000002,21.62,21.47,N/A,N/A -2012,12,4,4,30,101810,100630,99500,91.77,0,7.140000000000001,8.71,9.36,9.97,10.5,10.98,11.4,11.790000000000001,12.46,157.74,158.93,159.79,160.78,161.76,162.73,163.72,164.64000000000001,166.28,21.990000000000002,22.04,22.02,21.98,21.93,21.87,21.79,21.72,21.51,N/A,N/A -2012,12,4,5,30,101800,100620,99490,91.55,0,6.91,8.41,9.03,9.63,10.18,10.71,11.26,11.77,12.82,158.1,159.44,160.42000000000002,161.6,162.73,163.86,164.95000000000002,165.98,167.84,21.900000000000002,21.96,21.96,21.93,21.88,21.84,21.79,21.73,21.61,N/A,N/A -2012,12,4,6,30,101810,100640,99500,90.54,0,6.5600000000000005,8.14,8.82,9.49,10.1,10.68,11.22,11.73,12.65,163.01,163.99,164.65,165.37,166.07,166.76,167.45000000000002,168.11,169.37,22.03,22.06,22.04,21.990000000000002,21.94,21.88,21.81,21.740000000000002,21.580000000000002,N/A,N/A -2012,12,4,7,30,101820,100650,99510,89.97,0,7.41,9.02,9.68,10.32,10.88,11.41,11.88,12.32,13.040000000000001,166.55,167.55,168.24,169.01,169.72,170.38,171.01,171.6,172.8,22.11,22.18,22.18,22.150000000000002,22.1,22.05,21.98,21.92,21.73,N/A,N/A -2012,12,4,8,30,101850,100670,99540,91.45,0,6.140000000000001,7.69,8.38,9.09,9.75,10.39,11,11.55,12.44,170.95000000000002,172.14000000000001,173.08,174.28,175.42000000000002,176.56,177.55,178.45000000000002,179.91,22.03,22.09,22.09,22.06,22.04,22.01,21.97,21.93,21.8,N/A,N/A -2012,12,4,9,30,101880,100710,99570,92.17,0,4.19,5.7,6.390000000000001,7.09,7.72,8.290000000000001,8.9,9.49,10.46,175.69,176.29,176.93,177.88,178.93,180.04,181.16,182.24,183.61,21.98,22.13,22.16,22.16,22.14,22.1,22.04,21.98,21.8,N/A,N/A -2012,12,4,10,30,101890,100710,99580,90.96000000000001,0,6.51,8.08,8.73,9.33,9.85,10.33,10.77,11.16,11.78,175.83,177,177.79,178.75,179.69,180.63,181.47,182.22,183.19,22.07,22.23,22.28,22.3,22.27,22.22,22.13,22.04,21.79,N/A,N/A -2012,12,4,11,30,101930,100750,99620,93.11,0,4.19,5.82,6.6000000000000005,7.4,8.1,8.71,9.25,9.74,10.71,185.94,185.98,186.06,186.26,186.51,186.78,187.03,187.25,188.02,21.830000000000002,21.95,21.98,22,22,21.990000000000002,21.94,21.88,21.740000000000002,N/A,N/A -2012,12,4,12,30,101980,100800,99660,92.31,0,4.66,6.32,7.1000000000000005,7.930000000000001,8.66,9.31,9.9,10.43,11.23,189,189.34,189.57,189.93,190.26,190.57,190.72,190.82,190.45000000000002,21.97,22.17,22.23,22.29,22.31,22.3,22.25,22.19,21.96,N/A,N/A -2012,12,4,13,30,101990,100820,99680,92.07000000000001,0,4.93,6.46,7.17,7.930000000000001,8.58,9.17,9.63,10.02,10.5,185.92000000000002,186.43,186.77,187.05,187.4,187.8,188.25,188.68,189.36,21.89,22.05,22.11,22.150000000000002,22.16,22.150000000000002,22.1,22.04,21.79,N/A,N/A -2012,12,4,14,30,102030,100850,99710,93.23,0,4.5,6.04,6.78,7.57,8.26,8.88,9.35,9.75,9.96,173.44,176.09,177.95000000000002,179.99,181.6,182.92000000000002,183.72,184.33,185.8,21.77,21.97,22.06,22.12,22.150000000000002,22.150000000000002,22.09,22.03,21.85,N/A,N/A -2012,12,4,15,30,102020,100840,99700,92.10000000000001,0,5,6.5,7.22,7.99,8.72,9.44,10.01,10.51,10.69,179.41,180.67000000000002,181.79,183.29,184.47,185.45000000000002,185.95000000000002,186.27,187.48,21.86,22.05,22.14,22.22,22.28,22.330000000000002,22.3,22.27,22.03,N/A,N/A -2012,12,4,16,30,102020,100840,99700,91.68,0,4.88,6.23,6.87,7.5600000000000005,8.18,8.76,9.24,9.67,10.17,177.53,178.48,179.38,180.53,181.62,182.68,183.86,185.02,187.48,21.97,22.06,22.080000000000002,22.1,22.11,22.11,22.1,22.09,22.04,N/A,N/A -2012,12,4,17,30,101990,100810,99670,91.29,0,5.0200000000000005,6.49,7.18,7.87,8.44,8.92,9.3,9.61,9.700000000000001,178.63,180.14000000000001,181.01,181.84,182.66,183.48,184.25,184.96,185.82,21.990000000000002,22.12,22.16,22.2,22.19,22.16,22.09,22.03,21.89,N/A,N/A -2012,12,4,18,30,101980,100800,99670,90.37,0,5.39,6.62,7.11,7.59,8.08,8.59,9.18,9.77,10.02,182.95000000000002,183.5,184.24,185.36,186.79,188.47,190.1,191.65,194.95000000000002,22.03,22.06,22.04,22.01,21.98,21.96,21.96,21.96,21.98,N/A,N/A -2012,12,4,19,30,101970,100790,99650,88.92,0,5.66,7.07,7.68,8.290000000000001,8.84,9.35,9.77,10.14,10.290000000000001,184.16,185.19,185.93,186.71,187.41,188.06,188.9,189.75,191.33,22.150000000000002,22.27,22.3,22.31,22.3,22.28,22.23,22.18,22.01,N/A,N/A -2012,12,4,20,30,102060,100880,99740,92.14,0,6.38,7.54,7.92,8.290000000000001,8.6,8.870000000000001,9.11,9.32,9.64,236.16,235.07,234.18,233.24,232.42000000000002,231.68,231.05,230.51,229.74,21.92,21.86,21.78,21.67,21.56,21.44,21.31,21.19,20.91,N/A,N/A -2012,12,4,21,30,102070,100890,99740,91.07000000000001,0.4,5.2,5.12,4.94,4.76,4.59,4.44,4.23,4.0200000000000005,3.43,11.71,3.97,358.1,350.86,345.15000000000003,340.44,335.21,330.54,320.67,20.400000000000002,20.2,20.1,19.98,19.85,19.73,19.6,19.490000000000002,19.35,N/A,N/A -2012,12,4,22,30,102060,100870,99720,93.62,1.8,5.54,5.8500000000000005,5.74,5.41,5.08,4.75,4.45,4.19,3.8000000000000003,82.14,82.93,83.55,84.19,84.91,85.67,87.15,88.59,94.88,20.35,20.57,20.64,20.54,20.43,20.31,20.18,20.05,19.78,N/A,N/A -2012,12,4,23,30,102090,100900,99750,91.53,0,7.13,7.76,8.03,8.44,8.6,8.6,8.290000000000001,7.96,7.2,83.54,83.76,84.33,85.39,87.35000000000001,89.82000000000001,90.56,90.81,91.12,20.3,20.05,19.94,19.86,20.02,20.330000000000002,20.3,20.2,19.92,N/A,N/A -2012,12,5,0,30,102100,100910,99760,88.85000000000001,7.7,5.15,5.46,5.71,6.24,6.62,6.9,7.05,7.16,7.16,101.13,101.76,103.07000000000001,106.45,109.27,111.69,113.59,115.22,118.08,20.36,20.05,20.02,20.18,20.330000000000002,20.47,20.47,20.44,20.23,N/A,N/A -2012,12,5,1,30,102100,100910,99750,91.32000000000001,0,5.69,6.0600000000000005,6.26,6.63,6.96,7.25,7.42,7.55,7.73,114.54,115.44,116.73,119.10000000000001,122.54,126.45,129.31,131.75,136.12,20.05,19.76,19.64,19.55,19.57,19.650000000000002,19.69,19.72,19.650000000000002,N/A,N/A -2012,12,5,2,30,102100,100910,99770,90.01,0,4.09,4.82,5.16,5.48,5.74,5.98,6.21,6.43,6.8500000000000005,139.05,141.07,142.70000000000002,145.15,147.52,149.83,151.67000000000002,153.27,155.44,20.45,20.47,20.61,20.900000000000002,21.06,21.14,21.12,21.080000000000002,20.86,N/A,N/A -2012,12,5,3,30,102100,100910,99770,90.24,2.9000000000000004,2.92,3.12,3.33,3.81,4.18,4.5,4.76,5,5.22,182.84,181.23,180.1,178.3,177.67000000000002,177.75,178.69,179.79,182.92000000000002,20.5,20.23,20.11,20,19.96,19.95,19.97,19.98,19.86,N/A,N/A -2012,12,5,4,30,102110,100930,99780,90.86,0,3.0300000000000002,3.3200000000000003,3.47,3.66,3.91,4.19,4.44,4.67,4.64,176.32,176.73,176.93,177.19,177.36,177.48,177.71,177.96,179.75,20.71,20.46,20.31,20.14,20.080000000000002,20.080000000000002,20.14,20.21,20.11,N/A,N/A -2012,12,5,5,30,102110,100920,99770,90.78,0,3.09,3.31,3.39,3.52,3.66,3.79,3.81,3.8000000000000003,3.85,192.98000000000002,193.20000000000002,193.47,194,195.74,198.19,201.49,204.67000000000002,208.63,20.79,20.53,20.39,20.23,20.16,20.14,20.2,20.27,20.240000000000002,N/A,N/A -2012,12,5,6,30,102110,100920,99770,89.43,0,4.18,4.71,4.88,5.04,5.09,5.08,4.93,4.78,4.63,224.32,224.36,224.53,225.01,226.65,228.95000000000002,230.57,231.86,233.96,20.93,20.740000000000002,20.63,20.53,20.55,20.62,20.580000000000002,20.53,20.34,N/A,N/A -2012,12,5,7,30,102110,100920,99770,91.42,0,4.74,5.3100000000000005,5.47,5.59,5.67,5.71,5.67,5.62,5.25,255.23000000000002,255.51000000000002,255.74,256.22,257.19,258.44,260.97,263.52,268.6,20.830000000000002,20.61,20.47,20.31,20.150000000000002,20.01,19.88,19.77,19.62,N/A,N/A -2012,12,5,8,30,102110,100920,99770,93.52,0,3.54,3.94,4.0600000000000005,4.15,4.21,4.24,4.26,4.2700000000000005,4.23,287.85,288.58,288.63,288.43,287.90000000000003,287.21,286.09000000000003,284.99,282.03000000000003,20.71,20.46,20.31,20.150000000000002,19.98,19.82,19.650000000000002,19.490000000000002,19.14,N/A,N/A -2012,12,5,9,30,102120,100930,99770,97.13,0,4.7700000000000005,5,5.01,4.98,5,5.04,5.03,5,4.59,325.13,324.5,323.99,323.32,321.67,319.54,316.72,314.12,310.57,19.77,19.45,19.29,19.11,18.95,18.81,18.7,18.6,18.42,N/A,N/A -2012,12,5,10,30,102120,100930,99770,99.32000000000001,0,3.43,3.6,3.63,3.65,3.71,3.7800000000000002,3.86,3.93,3.8200000000000003,323.27,324.63,325.58,326.74,328.83,331.2,334.15000000000003,336.76,338.11,19.2,18.92,18.78,18.63,18.48,18.34,18.25,18.18,17.98,N/A,N/A -2012,12,5,11,30,102140,100940,99790,94.96000000000001,0,3.41,3.56,3.5700000000000003,3.56,3.5500000000000003,3.5300000000000002,3.5100000000000002,3.48,3.43,334.38,335.07,335.49,335.99,336.57,337.16,338.05,339.07,345.37,19.400000000000002,19.06,18.88,18.69,18.5,18.32,18.14,17.97,17.7,N/A,N/A -2012,12,5,12,30,102130,100930,99780,95.21000000000001,0,3.5,3.63,3.64,3.63,3.62,3.6,3.59,3.58,3.46,341.37,342.05,342.46,342.92,343.45,344,344.28000000000003,344.74,350.78000000000003,19.43,19.09,18.91,18.72,18.52,18.330000000000002,18.21,18.1,17.85,N/A,N/A -2012,12,5,13,30,102130,100940,99780,95.61,1.1,4.83,5.04,5.05,5.0200000000000005,4.97,4.92,4.84,4.7700000000000005,4.5200000000000005,30.87,30.810000000000002,30.810000000000002,30.82,30.85,30.87,30.88,30.8,29.740000000000002,18.97,18.61,18.43,18.240000000000002,18.06,17.89,17.72,17.57,17.35,N/A,N/A -2012,12,5,14,30,102140,100950,99790,94.35000000000001,0,4.26,4.41,4.4,4.3500000000000005,4.28,4.21,4.1,3.99,3.58,14.030000000000001,14.07,14.14,14.19,14.21,14.23,14.21,14.19,14.02,18.86,18.490000000000002,18.32,18.13,17.95,17.78,17.62,17.48,17.34,N/A,N/A -2012,12,5,15,30,102140,100940,99780,95.16,0,4.46,4.66,4.68,4.65,4.61,4.57,4.51,4.45,4.23,8.15,8.69,9.040000000000001,9.38,9.73,10.07,10.49,10.9,12.11,18.84,18.47,18.28,18.1,17.91,17.740000000000002,17.56,17.400000000000002,17.11,N/A,N/A -2012,12,5,16,30,102120,100920,99760,94.51,0,4.66,4.89,4.9,4.88,4.8500000000000005,4.82,4.7700000000000005,4.72,4.58,12.17,12.5,12.72,12.93,13.15,13.35,13.6,13.82,14.32,18.84,18.47,18.29,18.1,17.91,17.73,17.55,17.38,17.06,N/A,N/A -2012,12,5,17,30,102080,100880,99720,94,0,4.94,5.2,5.23,5.23,5.21,5.19,5.15,5.11,5.03,18.2,18.32,18.330000000000002,18.330000000000002,18.31,18.3,18.25,18.21,18.02,18.78,18.400000000000002,18.21,18.02,17.830000000000002,17.650000000000002,17.46,17.28,16.95,N/A,N/A -2012,12,5,18,30,102050,100850,99690,93.58,0,5.05,5.3100000000000005,5.34,5.33,5.3100000000000005,5.29,5.25,5.21,5.12,26.16,26.1,25.990000000000002,25.87,25.72,25.57,25.36,25.14,24.47,18.75,18.37,18.18,17.990000000000002,17.8,17.62,17.42,17.25,16.91,N/A,N/A -2012,12,5,19,30,102030,100830,99670,91.28,0,4.99,5.23,5.25,5.23,5.2,5.16,5.11,5.05,4.88,9.290000000000001,9.23,9.19,9.14,9.06,8.99,8.870000000000001,8.74,8.19,18.71,18.32,18.14,17.95,17.76,17.580000000000002,17.38,17.21,16.85,N/A,N/A -2012,12,5,20,30,101990,100790,99630,91.89,0,4.75,5.01,5.04,5.05,5.05,5.04,5.0200000000000005,5,4.94,358.58,358.64,358.69,358.75,358.81,358.88,358.95,359.02,359.2,18.61,18.23,18.04,17.85,17.650000000000002,17.47,17.27,17.09,16.71,N/A,N/A -2012,12,5,21,30,101970,100770,99610,91.18,0,4.48,4.7,4.74,4.74,4.73,4.72,4.69,4.67,4.61,349.01,349.27,349.48,349.71,349.95,350.19,350.51,350.84000000000003,351.84000000000003,18.650000000000002,18.27,18.080000000000002,17.89,17.69,17.51,17.31,17.13,16.75,N/A,N/A -2012,12,5,22,30,101920,100730,99570,90.82000000000001,0,4.93,5.2,5.24,5.25,5.25,5.24,5.22,5.22,5.19,355.18,355.76,356.12,356.48,356.86,357.22,357.68,358.12,359.37,18.81,18.44,18.25,18.06,17.87,17.69,17.490000000000002,17.32,16.95,N/A,N/A -2012,12,5,23,30,101940,100740,99580,89.63,11,5.71,6.03,6.07,6.07,6.04,6.01,5.96,5.91,5.79,17.09,17.330000000000002,17.490000000000002,17.64,17.79,17.93,18.080000000000002,18.22,18.53,18.72,18.330000000000002,18.14,17.95,17.76,17.580000000000002,17.39,17.21,16.85,N/A,N/A -2012,12,6,0,30,101930,100730,99570,88,0,6.7,7.15,7.24,7.28,7.29,7.28,7.2700000000000005,7.26,7.21,30.47,30.26,30.080000000000002,29.89,29.7,29.52,29.3,29.09,28.53,18.45,18.03,17.85,17.64,17.45,17.27,17.07,16.88,16.51,N/A,N/A -2012,12,6,1,30,101920,100720,99560,87.05,0,5.76,6.13,6.2,6.23,6.25,6.25,6.26,6.2700000000000005,6.3100000000000005,26.3,25.990000000000002,25.77,25.55,25.29,25.03,24.68,24.32,23.11,18.400000000000002,18,17.81,17.62,17.43,17.25,17.06,16.88,16.54,N/A,N/A -2012,12,6,2,30,101900,100700,99540,87.5,0,5.19,5.46,5.5,5.5,5.48,5.46,5.43,5.4,5.32,27.11,27.11,27.09,27.080000000000002,27.05,27.02,26.97,26.92,26.68,18.44,18.05,17.86,17.67,17.47,17.29,17.09,16.91,16.54,N/A,N/A -2012,12,6,3,30,101860,100660,99500,88.19,0,5.48,5.8,5.8500000000000005,5.87,5.87,5.87,5.86,5.8500000000000005,5.84,34.660000000000004,34.84,34.99,35.15,35.32,35.49,35.730000000000004,35.97,36.74,18.51,18.12,17.93,17.740000000000002,17.54,17.36,17.16,16.98,16.6,N/A,N/A -2012,12,6,4,30,101830,100630,99470,89.72,0,5.03,5.3,5.3500000000000005,5.36,5.36,5.36,5.3500000000000005,5.34,5.32,30.150000000000002,30.54,30.78,31.04,31.330000000000002,31.61,31.970000000000002,32.32,33.3,18.28,17.88,17.69,17.490000000000002,17.3,17.12,16.92,16.73,16.36,N/A,N/A -2012,12,6,5,30,101800,100610,99450,91.44,0,5.15,5.46,5.51,5.53,5.54,5.54,5.53,5.5200000000000005,5.49,49.71,50.45,50.82,51.18,51.54,51.88,52.27,52.64,53.550000000000004,18.34,17.93,17.740000000000002,17.54,17.34,17.16,16.95,16.77,16.38,N/A,N/A -2012,12,6,6,30,101790,100590,99430,91.3,0,4.82,5.12,5.18,5.2,5.22,5.22,5.22,5.21,5.19,61.11,61.940000000000005,62.46,62.99,63.51,63.99,64.52,65.02,66.19,18.67,18.28,18.09,17.89,17.69,17.5,17.31,17.12,16.73,N/A,N/A -2012,12,6,7,30,101750,100560,99400,93.9,1.8,7.13,7.61,7.7,7.74,7.75,7.74,7.71,7.69,7.6000000000000005,68.69,69.46000000000001,69.82000000000001,70.14,70.45,70.73,71.02,71.29,71.88,18.48,18.06,17.86,17.66,17.46,17.28,17.080000000000002,16.9,16.56,N/A,N/A -2012,12,6,8,30,101730,100530,99370,91.35000000000001,0.7000000000000001,5.87,6.23,6.3,6.33,6.34,6.34,6.33,6.32,6.28,75.84,76.45,76.81,77.17,77.53,77.86,78.25,78.60000000000001,79.47,18.19,17.77,17.57,17.37,17.17,16.98,16.78,16.6,16.21,N/A,N/A -2012,12,6,9,30,101720,100520,99360,90.83,0,5.63,5.96,6.0200000000000005,6.04,6.04,6.03,6.0200000000000005,6,5.94,92.29,92.55,92.65,92.74,92.84,92.93,93.02,93.11,93.23,18.23,17.81,17.61,17.41,17.21,17.02,16.82,16.63,16.25,N/A,N/A -2012,12,6,10,30,101680,100480,99330,87.44,0,4.28,4.43,4.42,4.39,4.3500000000000005,4.3100000000000005,4.25,4.2,4.05,78.97,79.14,79.34,79.54,79.75,79.96000000000001,80.33,80.77,83.24,18.27,17.87,17.69,17.490000000000002,17.3,17.12,16.92,16.75,16.38,N/A,N/A -2012,12,6,11,30,101660,100470,99310,88.46000000000001,0,4.5600000000000005,4.7700000000000005,4.79,4.79,4.7700000000000005,4.75,4.72,4.68,4.59,73.51,73.69,73.8,73.9,74.02,74.12,74.26,74.4,74.83,18.38,17.990000000000002,17.8,17.6,17.400000000000002,17.21,17.02,16.830000000000002,16.44,N/A,N/A -2012,12,6,12,30,101640,100450,99290,88.69,0,4.74,4.98,5.01,5.01,5,4.98,4.95,4.92,4.84,76.25,76.68,76.93,77.18,77.43,77.66,77.94,78.21000000000001,78.87,18.31,17.91,17.72,17.53,17.330000000000002,17.14,16.94,16.76,16.37,N/A,N/A -2012,12,6,13,30,101630,100430,99270,87.56,0,4.46,4.67,4.7,4.69,4.68,4.66,4.64,4.61,4.55,79.11,79.53,79.8,80.08,80.36,80.64,80.97,81.28,82.05,18.400000000000002,18.01,17.82,17.62,17.42,17.240000000000002,17.03,16.85,16.46,N/A,N/A -2012,12,6,14,30,101630,100440,99280,86.42,0,3.71,3.9,3.94,3.96,3.97,3.97,3.97,3.97,3.96,92.25,92.32000000000001,92.37,92.43,92.49,92.56,92.65,92.74,93.04,18.61,18.23,18.04,17.84,17.64,17.46,17.26,17.07,16.68,N/A,N/A -2012,12,6,15,30,101620,100420,99270,85.54,0,4.5,4.74,4.7700000000000005,4.78,4.7700000000000005,4.76,4.75,4.73,4.69,96.98,97.43,97.69,97.97,98.22,98.46000000000001,98.74000000000001,99.01,99.69,18.86,18.48,18.3,18.1,17.91,17.72,17.53,17.34,16.96,N/A,N/A -2012,12,6,16,30,101590,100400,99240,86.66,0,4.2700000000000005,4.46,4.47,4.46,4.44,4.41,4.38,4.3500000000000005,4.2700000000000005,90.43,90.99,91.34,91.71000000000001,92.08,92.43,92.85000000000001,93.23,94.17,18.87,18.5,18.32,18.12,17.92,17.740000000000002,17.54,17.35,16.97,N/A,N/A -2012,12,6,17,30,101550,100360,99200,84,0,4.17,4.39,4.43,4.44,4.44,4.44,4.43,4.42,4.4,94.39,94.78,95.02,95.26,95.49,95.7,95.94,96.15,96.67,19.02,18.66,18.47,18.27,18.07,17.89,17.69,17.5,17.11,N/A,N/A -2012,12,6,18,30,101530,100340,99180,86.82000000000001,0,4.68,4.91,4.93,4.92,4.9,4.87,4.84,4.8,4.71,93.33,93.92,94.33,94.75,95.17,95.58,96.03,96.46000000000001,97.45,18.87,18.490000000000002,18.3,18.1,17.900000000000002,17.71,17.51,17.330000000000002,16.94,N/A,N/A -2012,12,6,19,30,101490,100300,99150,86.23,0,4.74,5.01,5.05,5.07,5.08,5.07,5.0600000000000005,5.05,5.0200000000000005,100.02,100.51,100.84,101.18,101.51,101.82000000000001,102.16,102.48,103.2,19.02,18.64,18.46,18.25,18.06,17.87,17.67,17.48,17.09,N/A,N/A -2012,12,6,20,30,101470,100270,99120,89.02,0,5,5.29,5.34,5.3500000000000005,5.36,5.3500000000000005,5.33,5.32,5.28,98.14,99.17,99.79,100.39,100.96000000000001,101.5,102.09,102.64,103.85000000000001,18.81,18.43,18.240000000000002,18.04,17.84,17.66,17.46,17.27,16.89,N/A,N/A -2012,12,6,21,30,101440,100250,99100,86.7,0,5.09,5.38,5.44,5.45,5.45,5.44,5.42,5.4,5.3,101.16,101.53,101.8,102.09,102.38,102.67,103.02,103.34,104.25,19.02,18.64,18.46,18.26,18.07,17.88,17.68,17.5,17.12,N/A,N/A -2012,12,6,22,30,101390,100210,99050,85.66,0,4.68,4.93,4.96,4.95,4.94,4.91,4.88,4.84,4.72,104.82000000000001,105.05,105.36,105.7,106.09,106.5,107.07000000000001,107.63,109.58,19.27,18.92,18.73,18.54,18.35,18.16,17.96,17.78,17.41,N/A,N/A -2012,12,6,23,30,101380,100200,99040,87.56,0,5.8500000000000005,6.22,6.28,6.3,6.3,6.28,6.26,6.23,6.16,114.81,115.26,115.56,115.85000000000001,116.16,116.46000000000001,116.82000000000001,117.16,118.07000000000001,19.22,18.86,18.67,18.47,18.28,18.09,17.89,17.71,17.330000000000002,N/A,N/A -2012,12,7,0,30,101380,100200,99050,86.55,0,5.55,5.9,5.96,5.97,5.98,5.97,5.95,5.93,5.88,121.25,121.48,121.69,121.91,122.13,122.34,122.59,122.81,123.37,19.41,19.04,18.86,18.66,18.47,18.28,18.080000000000002,17.89,17.5,N/A,N/A -2012,12,7,1,30,101360,100180,99030,86.91,0,6.4,6.87,6.98,7.0200000000000005,7.05,7.0600000000000005,7.0600000000000005,7.05,7.0200000000000005,120.74000000000001,121.10000000000001,121.33,121.57000000000001,121.83,122.09,122.39,122.68,123.44,19.51,19.150000000000002,18.97,18.78,18.580000000000002,18.400000000000002,18.2,18.02,17.63,N/A,N/A -2012,12,7,2,30,101340,100160,99010,87.91,0,6.22,6.68,6.78,6.82,6.84,6.8500000000000005,6.84,6.84,6.8,128.13,128.32,128.42000000000002,128.51,128.6,128.69,128.79,128.88,129.11,19.62,19.27,19.09,18.89,18.69,18.51,18.31,18.12,17.73,N/A,N/A -2012,12,7,3,30,101340,100150,99010,87.65,0,6.51,6.98,7.07,7.1000000000000005,7.11,7.11,7.09,7.07,7,128.29,128.61,128.75,128.9,129.05,129.19,129.36,129.52,129.94,19.7,19.35,19.16,18.97,18.77,18.580000000000002,18.39,18.2,17.82,N/A,N/A -2012,12,7,4,30,101320,100140,98990,87.21000000000001,0,6.3100000000000005,6.78,6.890000000000001,6.93,6.96,6.97,6.97,6.96,6.94,138.9,139.54,139.92000000000002,140.34,140.75,141.15,141.6,142.01,142.96,19.91,19.57,19.39,19.19,19,18.81,18.61,18.43,18.05,N/A,N/A -2012,12,7,5,30,101320,100130,98990,87.01,0,5.7700000000000005,6.2700000000000005,6.4,6.47,6.5200000000000005,6.5600000000000005,6.59,6.61,6.65,149.78,149.84,149.95000000000002,150.06,150.18,150.29,150.42000000000002,150.54,150.85,20.06,19.740000000000002,19.56,19.36,19.17,18.98,18.79,18.6,18.21,N/A,N/A -2012,12,7,6,30,101300,100120,98970,88.18,0,6.390000000000001,6.92,7.03,7.09,7.11,7.13,7.13,7.13,7.11,144.55,144.79,144.96,145.14000000000001,145.33,145.5,145.72,145.92000000000002,146.47,20.19,19.86,19.68,19.490000000000002,19.3,19.11,18.91,18.73,18.35,N/A,N/A -2012,12,7,7,30,101310,100130,98980,87.97,0,6.01,6.46,6.55,6.58,6.6000000000000005,6.61,6.62,6.63,6.76,147.29,147.67000000000002,147.96,148.31,148.69,149.09,149.65,150.19,152.53,20.29,19.98,19.8,19.61,19.42,19.240000000000002,19.04,18.87,18.51,N/A,N/A -2012,12,7,8,30,101300,100120,98980,89.69,0,6.34,6.82,6.91,6.94,6.97,6.99,7.08,7.19,7.88,147.74,148.12,148.41,148.78,149.28,149.86,151.34,152.97,162.86,20.51,20.21,20.05,19.86,19.67,19.5,19.330000000000002,19.18,19.05,N/A,N/A -2012,12,7,9,30,101280,100100,98960,86.93,0,5.98,6.59,6.7700000000000005,6.88,6.97,7.04,7.1000000000000005,7.15,7.24,172.04,171.98,172.02,172.1,172.22,172.38,172.59,172.81,173.49,21.07,20.85,20.7,20.53,20.35,20.18,20.01,19.84,19.490000000000002,N/A,N/A -2012,12,7,10,30,101290,100110,98970,85.81,0,4.8100000000000005,5.4,5.59,5.74,5.86,5.96,6.05,6.12,6.24,164.88,164.85,164.94,165.09,165.28,165.51,165.84,166.16,167.12,21.150000000000002,20.95,20.81,20.64,20.48,20.31,20.13,19.97,19.62,N/A,N/A -2012,12,7,11,30,101280,100110,98970,87.21000000000001,0,4.6000000000000005,5.26,5.5200000000000005,5.75,5.96,6.140000000000001,6.3100000000000005,6.46,6.71,161.95000000000002,162.93,163.61,164.43,165.26,166.11,167.07,167.99,170.13,21.13,20.93,20.8,20.64,20.490000000000002,20.330000000000002,20.16,20,19.66,N/A,N/A -2012,12,7,12,30,101280,100110,98970,89.3,0,3.79,4.39,4.63,4.84,5.03,5.2,5.37,5.54,6.11,160.06,161.1,161.95000000000002,163.03,164.19,165.45000000000002,167.12,168.78,175.35,21.11,20.93,20.81,20.67,20.53,20.39,20.26,20.14,20.01,N/A,N/A -2012,12,7,13,30,101290,100120,98980,89.64,0,4.11,4.71,4.95,5.19,5.39,5.59,5.83,6.0600000000000005,6.5,155.04,156.01,156.81,158.04,159.71,161.72,165.8,170.24,181.99,21.07,20.88,20.76,20.62,20.5,20.38,20.3,20.23,20.21,N/A,N/A -2012,12,7,14,30,101300,100130,98990,89.66,0,3.24,4.01,4.37,4.7700000000000005,5.15,5.5,5.8,6.05,6.22,162.27,165.66,167.94,170.19,171.87,173.17000000000002,174.29,175.29,179.32,21.21,21.13,21.07,21,20.92,20.830000000000002,20.72,20.61,20.36,N/A,N/A -2012,12,7,15,30,101300,100120,98990,89.83,0,3.56,4.3500000000000005,4.7,5.08,5.42,5.74,6.03,6.3,6.8100000000000005,170.9,173.16,174.72,176.52,178.06,179.44,180.62,181.67000000000002,185.91,21.34,21.23,21.16,21.07,20.98,20.89,20.77,20.650000000000002,20.400000000000002,N/A,N/A -2012,12,7,16,30,101300,100120,98990,88.54,0,3.72,4.39,4.68,5.03,5.4,5.8100000000000005,6.24,6.66,7.25,170.85,173.44,175.45000000000002,178.09,180.41,182.57,183.87,184.85,185.3,21.48,21.36,21.28,21.2,21.12,21.04,20.96,20.88,20.64,N/A,N/A -2012,12,7,17,30,101280,100110,98970,86.59,0,4.11,4.7700000000000005,5.04,5.32,5.58,5.84,6.09,6.33,6.78,172.16,173.27,174.08,175.07,176.07,177.12,178.24,179.32,182.1,21.68,21.52,21.41,21.28,21.150000000000002,21.02,20.89,20.76,20.5,N/A,N/A -2012,12,7,18,30,101260,100090,98950,84.33,0,4.61,5.33,5.61,5.88,6.11,6.32,6.5200000000000005,6.69,7.01,180.12,180.49,180.79,181.12,181.43,181.74,182.04,182.33,182.99,21.900000000000002,21.740000000000002,21.64,21.5,21.36,21.23,21.080000000000002,20.94,20.650000000000002,N/A,N/A -2012,12,7,19,30,101230,100060,98930,84.19,0,4.32,4.95,5.2,5.43,5.64,5.82,5.99,6.140000000000001,6.390000000000001,171.94,172.75,173.39000000000001,174.14000000000001,174.91,175.70000000000002,176.58,177.44,179.29,21.900000000000002,21.740000000000002,21.63,21.5,21.36,21.22,21.07,20.94,20.63,N/A,N/A -2012,12,7,20,30,101210,100040,98900,83.63,0,4.49,5.18,5.44,5.69,5.9,6.09,6.2700000000000005,6.43,6.8,168.37,169.35,170.1,171.02,171.96,172.92000000000002,173.95000000000002,174.92000000000002,176.8,21.900000000000002,21.75,21.64,21.5,21.37,21.23,21.080000000000002,20.95,20.66,N/A,N/A -2012,12,7,21,30,101200,100030,98890,83.64,0,4.55,5.37,5.7,6.01,6.28,6.53,6.76,6.97,7.3100000000000005,173.4,174.11,174.63,175.29,175.96,176.65,177.41,178.14000000000001,179.86,21.86,21.75,21.66,21.54,21.41,21.28,21.14,21,20.7,N/A,N/A -2012,12,7,22,30,101200,100030,98890,87.21000000000001,0,4.18,5.05,5.4,5.71,5.96,6.17,6.390000000000001,6.59,7.01,170.25,171.6,172.66,174.02,175.44,176.94,178.54,180.07,182.5,21.64,21.580000000000002,21.52,21.43,21.32,21.21,21.09,20.98,20.72,N/A,N/A -2012,12,7,23,30,101200,100030,98900,87.35000000000001,0,4.45,5.37,5.76,6.13,6.44,6.72,6.96,7.17,7.49,160.66,162.27,163.5,165.04,166.47,167.85,169.03,170.07,171.79,21.5,21.45,21.400000000000002,21.330000000000002,21.25,21.16,21.05,20.94,20.67,N/A,N/A -2012,12,8,0,30,101210,100040,98900,88.21000000000001,0,4.18,5.08,5.48,5.89,6.26,6.61,6.91,7.17,7.38,156.45000000000002,158.23,159.69,161.62,163.5,165.37,167.17000000000002,168.84,172.59,21.41,21.36,21.32,21.27,21.21,21.150000000000002,21.07,20.98,20.82,N/A,N/A -2012,12,8,1,30,101200,100030,98900,87.3,0,5.08,6.0200000000000005,6.4,6.78,7.12,7.43,7.72,7.98,8.38,156.20000000000002,157.09,157.8,158.8,159.9,161.11,162.49,163.86,166.74,21.46,21.36,21.29,21.2,21.11,21.02,20.92,20.830000000000002,20.63,N/A,N/A -2012,12,8,2,30,101200,100030,98900,86.13,0,5.44,6.45,6.8500000000000005,7.25,7.58,7.88,8.120000000000001,8.34,8.63,154.74,155.53,156.19,157.1,158.08,159.14000000000001,160.41,161.67000000000002,164.88,21.54,21.47,21.41,21.32,21.240000000000002,21.16,21.06,20.96,20.72,N/A,N/A -2012,12,8,3,30,101200,100030,98890,85.52,0,6.03,7.05,7.47,7.87,8.24,8.58,8.91,9.22,9.68,152.49,153.12,153.66,154.4,155.19,156.04,156.99,157.92000000000002,159.95000000000002,21.55,21.47,21.39,21.29,21.2,21.11,21.01,20.92,20.71,N/A,N/A -2012,12,8,4,30,101180,100010,98880,87.02,0,6.09,7.0600000000000005,7.44,7.79,8.1,8.4,8.69,8.96,9.51,149.86,150.64000000000001,151.29,152.20000000000002,153.20000000000002,154.3,155.56,156.79,159.45000000000002,21.490000000000002,21.37,21.29,21.18,21.080000000000002,20.98,20.88,20.78,20.6,N/A,N/A -2012,12,8,5,30,101200,100020,98890,86.12,0,6.17,7.25,7.7,8.15,8.56,8.93,9.28,9.61,10.14,153.92000000000002,154.81,155.47,156.28,157.05,157.83,158.63,159.4,161.07,21.580000000000002,21.490000000000002,21.42,21.31,21.21,21.11,21,20.89,20.650000000000002,N/A,N/A -2012,12,8,6,30,101200,100030,98900,86.68,0,5.91,6.95,7.38,7.78,8.14,8.47,8.76,9.02,9.4,162.83,163.39000000000001,163.82,164.42000000000002,165.04,165.71,166.46,167.21,169.11,21.7,21.61,21.54,21.43,21.32,21.21,21.09,20.97,20.7,N/A,N/A -2012,12,8,7,30,101230,100060,98930,88.92,0,5.73,6.78,7.22,7.65,8.03,8.39,8.73,9.05,9.59,167.31,168.18,168.85,169.72,170.57,171.46,172.39000000000001,173.29,175.22,21.69,21.61,21.53,21.43,21.330000000000002,21.23,21.12,21.02,20.79,N/A,N/A -2012,12,8,8,30,101230,100060,98930,89.67,0,4.72,5.7700000000000005,6.24,6.72,7.15,7.5600000000000005,7.94,8.290000000000001,8.81,170.73,171.57,172.27,173.19,174.1,175.05,176.03,176.98,179.62,21.68,21.64,21.59,21.52,21.45,21.36,21.26,21.16,20.91,N/A,N/A -2012,12,8,9,30,101250,100080,98950,90.48,0,4.66,5.7700000000000005,6.2700000000000005,6.79,7.26,7.7,8.07,8.39,8.85,173.62,174.86,175.76,176.79,177.58,178.21,178.75,179.23,180.54,21.72,21.71,21.68,21.62,21.55,21.47,21.38,21.28,21.04,N/A,N/A -2012,12,8,10,30,101270,100100,98960,90.89,0,4.3,5.4,5.91,6.41,6.87,7.32,7.7700000000000005,8.19,8.77,175.08,176.03,176.81,177.93,179.06,180.25,181.26,182.18,183.33,21.68,21.67,21.64,21.580000000000002,21.52,21.46,21.39,21.330000000000002,21.11,N/A,N/A -2012,12,8,11,30,101310,100140,99010,91.71000000000001,0,4.03,5.12,5.63,6.12,6.5200000000000005,6.86,7.17,7.46,7.890000000000001,169.44,170.96,172.12,173.34,174.37,175.27,176.58,178.01,181.95000000000002,21.64,21.650000000000002,21.63,21.580000000000002,21.52,21.43,21.32,21.22,21.01,N/A,N/A -2012,12,8,12,30,101320,100150,99010,91.9,0,4.3100000000000005,5.37,5.86,6.38,6.7700000000000005,7.05,7.16,7.19,7.28,174.26,176.32,178.01,180.16,182.37,184.70000000000002,188.34,192.18,195.52,21.66,21.67,21.67,21.650000000000002,21.61,21.56,21.5,21.43,21.18,N/A,N/A -2012,12,8,13,30,101330,100160,99030,93.52,0,3.8200000000000003,4.8500000000000005,5.32,5.8100000000000005,6.26,6.68,6.88,6.99,7.18,166.39000000000001,170.4,174,179.97,184.70000000000002,188.59,190.42000000000002,191.39000000000001,193.52,21.53,21.6,21.64,21.7,21.73,21.73,21.68,21.61,21.37,N/A,N/A -2012,12,8,14,30,101360,100190,99060,93.27,0,3.9,4.88,5.37,5.95,6.54,7.17,7.61,7.930000000000001,8.19,169.55,172.86,175.8,180.35,184.37,188.13,190.07,191.12,192.02,21.52,21.54,21.55,21.59,21.62,21.650000000000002,21.650000000000002,21.650000000000002,21.47,N/A,N/A -2012,12,8,15,30,101370,100190,99060,92.58,0,4.1,5.0200000000000005,5.44,5.89,6.390000000000001,6.96,7.45,7.9,7.97,167.38,168.93,170.25,172.08,174.07,176.32,178.4,180.32,183.91,21.57,21.51,21.48,21.45,21.42,21.39,21.34,21.28,21.21,N/A,N/A -2012,12,8,16,30,101350,100180,99050,90.19,0,4.8500000000000005,5.8100000000000005,6.23,6.640000000000001,6.97,7.24,7.41,7.53,7.82,170.84,172.07,173.20000000000002,174.91,176.59,178.29,179.63,180.75,182.38,21.79,21.740000000000002,21.7,21.68,21.650000000000002,21.64,21.62,21.6,21.5,N/A,N/A -2012,12,8,17,30,101330,100160,99030,89.53,0,5.19,6.09,6.48,6.9,7.3100000000000005,7.73,8.11,8.44,8.620000000000001,166.48,167.75,168.89000000000001,170.79,172.63,174.52,175.96,177.16,178.65,21.87,21.79,21.740000000000002,21.7,21.67,21.66,21.67,21.68,21.62,N/A,N/A -2012,12,8,18,30,101310,100140,99010,88.74,0,5.5,6.41,6.7700000000000005,7.11,7.43,7.74,8.06,8.370000000000001,8.950000000000001,158.42000000000002,159.59,160.57,161.96,163.43,165.04,166.69,168.27,170.69,21.92,21.81,21.740000000000002,21.64,21.56,21.48,21.400000000000002,21.330000000000002,21.17,N/A,N/A -2012,12,8,19,30,101290,100120,98990,87.09,0,5.48,6.45,6.83,7.21,7.54,7.86,8.15,8.42,8.92,155.43,156.19,156.79,157.69,158.69,159.79,161.09,162.37,165.06,21.98,21.89,21.82,21.72,21.63,21.54,21.44,21.34,21.12,N/A,N/A -2012,12,8,20,30,101280,100110,98980,87.71000000000001,0,5.4,6.42,6.86,7.2700000000000005,7.640000000000001,7.99,8.32,8.63,9.17,159.31,160.24,160.93,161.77,162.6,163.45000000000002,164.31,165.13,166.63,21.97,21.91,21.85,21.75,21.67,21.57,21.47,21.38,21.17,N/A,N/A -2012,12,8,21,30,101270,100100,98970,86.22,0,5.73,6.87,7.3500000000000005,7.79,8.16,8.5,8.82,9.120000000000001,9.65,165.37,166.11,166.63,167.29,167.97,168.69,169.4,170.08,171.07,22.01,21.990000000000002,21.94,21.87,21.79,21.7,21.59,21.490000000000002,21.25,N/A,N/A -2012,12,8,22,30,101280,100110,98980,87.97,0,4.97,6.1000000000000005,6.6000000000000005,7.09,7.53,7.94,8.32,8.68,9.3,169.33,169.88,170.29,170.87,171.42000000000002,171.97,172.44,172.84,173.48,21.88,21.87,21.830000000000002,21.76,21.68,21.6,21.490000000000002,21.38,21.11,N/A,N/A -2012,12,8,23,30,101260,100090,98960,88.74,0,5.2,6.390000000000001,6.93,7.47,7.96,8.41,8.84,9.25,9.92,166.04,167.23,168.11,169.17000000000002,170.16,171.13,171.99,172.77,173.79,21.830000000000002,21.830000000000002,21.81,21.76,21.7,21.64,21.55,21.47,21.26,N/A,N/A -2012,12,9,0,30,101280,100110,98980,89.96000000000001,0,6.0200000000000005,7.23,7.76,8.27,8.72,9.13,9.5,9.84,10.4,161.91,163.05,163.95000000000002,165.03,166.06,167.12,168.19,169.22,171.02,21.830000000000002,21.82,21.78,21.72,21.650000000000002,21.57,21.48,21.39,21.16,N/A,N/A -2012,12,9,1,30,101270,100100,98970,89.71000000000001,0,5.79,7.07,7.61,8.13,8.59,9.02,9.4,9.75,10.34,168.20000000000002,169.04,169.65,170.28,170.83,171.32,171.78,172.19,173.08,21.830000000000002,21.8,21.75,21.68,21.6,21.51,21.400000000000002,21.31,21.080000000000002,N/A,N/A -2012,12,9,2,30,101300,100130,98990,88.62,0,5.2700000000000005,6.43,6.95,7.47,7.92,8.35,8.73,9.07,9.66,177.84,178.33,178.73,179.3,179.86,180.46,181.07,181.65,182.70000000000002,21.86,21.86,21.82,21.75,21.68,21.6,21.51,21.41,21.19,N/A,N/A -2012,12,9,3,30,101290,100120,98980,89.53,0,5.12,6.2700000000000005,6.7700000000000005,7.26,7.68,8.07,8.42,8.74,9.26,177.63,177.78,177.94,178.21,178.5,178.81,179.17000000000002,179.53,180.41,21.81,21.79,21.75,21.67,21.580000000000002,21.48,21.37,21.26,21,N/A,N/A -2012,12,9,4,30,101260,100090,98960,89.68,0,5.22,6.49,7.05,7.61,8.08,8.51,8.9,9.25,9.88,171.77,172.99,173.85,174.69,175.4,176.03,176.57,177.03,177.64000000000001,21.830000000000002,21.830000000000002,21.79,21.73,21.650000000000002,21.56,21.46,21.35,21.09,N/A,N/A -2012,12,9,5,30,101250,100080,98950,90.14,0,5.3100000000000005,6.54,7.09,7.640000000000001,8.11,8.56,8.93,9.27,9.790000000000001,169.8,170.77,171.49,172.34,173.13,173.9,174.66,175.38,176.91,21.830000000000002,21.82,21.78,21.72,21.650000000000002,21.57,21.47,21.37,21.14,N/A,N/A -2012,12,9,6,30,101260,100090,98960,88.17,0,6.13,7.36,7.9,8.41,8.86,9.27,9.65,9.99,10.53,171.59,172.39000000000001,172.96,173.58,174.12,174.61,175.04,175.44,176.15,22.01,21.97,21.92,21.84,21.75,21.650000000000002,21.55,21.44,21.18,N/A,N/A -2012,12,9,7,30,101270,100110,98970,88,0,6.3500000000000005,7.63,8.18,8.72,9.200000000000001,9.65,10.06,10.450000000000001,11.09,174.63,175.23,175.69,176.26,176.83,177.42000000000002,178,178.55,179.47,22.09,22.07,22.03,21.96,21.89,21.81,21.71,21.62,21.39,N/A,N/A -2012,12,9,8,30,101280,100110,98970,87.57000000000001,0,6.51,7.78,8.31,8.82,9.27,9.68,10.06,10.41,11.03,175.17000000000002,175.71,176.13,176.67000000000002,177.20000000000002,177.74,178.3,178.84,179.82,22.150000000000002,22.13,22.09,22.02,21.94,21.86,21.76,21.67,21.44,N/A,N/A -2012,12,9,9,30,101280,100110,98980,88.42,0,6.22,7.48,8.02,8.540000000000001,8.99,9.4,9.76,10.08,10.61,176.32,176.82,177.22,177.8,178.38,178.99,179.63,180.24,181.42000000000002,22.12,22.11,22.07,22,21.92,21.84,21.740000000000002,21.64,21.39,N/A,N/A -2012,12,9,10,30,101280,100110,98980,90.73,0,5.63,6.88,7.43,7.98,8.47,8.91,9.28,9.620000000000001,10.13,179.4,180.44,181.25,182.24,183.17000000000002,184.11,185.08,186,188,22.06,22.05,22.02,21.96,21.89,21.81,21.71,21.6,21.34,N/A,N/A -2012,12,9,11,30,101290,100120,98990,93.03,0,5.22,6.41,6.92,7.44,7.91,8.35,8.76,9.15,9.74,184.36,185.83,186.91,188.24,189.47,190.66,191.62,192.45000000000002,193.26,21.98,21.96,21.92,21.86,21.79,21.72,21.64,21.56,21.36,N/A,N/A -2012,12,9,12,30,101320,100150,99020,94.58,0,4.25,5.44,5.97,6.49,6.92,7.3,7.7700000000000005,8.26,9.06,187.76,189.1,190.11,191.28,192.61,194.11,196.25,198.57,200.74,21.91,21.92,21.900000000000002,21.85,21.78,21.71,21.650000000000002,21.580000000000002,21.44,N/A,N/A -2012,12,9,13,30,101330,100160,99030,94.92,0,4.3100000000000005,5.67,6.32,6.93,7.49,8,8.39,8.72,9.1,194.23000000000002,195.66,196.93,198.95000000000002,200.88,202.83,204.04,204.9,204.99,21.95,22.06,22.1,22.11,22.09,22.06,22,21.94,21.76,N/A,N/A -2012,12,9,14,30,101360,100190,99060,96.52,0,3.23,4.3500000000000005,4.93,5.62,6.49,7.58,8.19,8.540000000000001,9.17,179.88,184.75,188.28,192.05,195.53,199.06,200.92000000000002,201.99,203.39000000000001,21.75,21.78,21.79,21.8,21.85,21.93,21.92,21.87,21.81,N/A,N/A -2012,12,9,15,30,101360,100190,99060,97.58,0,3.04,3.98,4.48,5.19,6.07,7.2,7.87,8.3,9.03,171.88,178.69,183.79,190.07,194.43,197.27,199.20000000000002,200.64000000000001,202.57,21.68,21.63,21.63,21.67,21.72,21.77,21.75,21.72,21.67,N/A,N/A -2012,12,9,16,30,101330,100160,99030,95.81,0,4.54,5.69,6.2700000000000005,6.93,7.54,8.14,8.68,9.18,9.96,187.66,189.39000000000001,190.77,192.52,194.04,195.41,196.46,197.34,199.52,22.05,22,21.97,21.95,21.92,21.900000000000002,21.85,21.8,21.59,N/A,N/A -2012,12,9,17,30,101290,100130,99000,95.69,0,4.54,5.66,6.22,6.87,7.5200000000000005,8.22,8.94,9.65,10.26,191.44,192.84,194.01,195.85,197.72,199.70000000000002,201.15,202.34,202.59,22.17,22.11,22.080000000000002,22.07,22.1,22.150000000000002,22.19,22.23,22.13,N/A,N/A -2012,12,9,18,30,101280,100110,98980,95.98,0,5.04,6.05,6.51,6.99,7.46,7.92,8.4,8.870000000000001,10.09,184.38,185.59,186.61,188.1,189.77,191.70000000000002,194.4,197.3,202.47,22.26,22.150000000000002,22.080000000000002,22,21.94,21.88,21.85,21.830000000000002,21.95,N/A,N/A -2012,12,9,19,30,101250,100080,98960,93.96000000000001,0,5.21,6.43,7,7.65,8.31,9.02,9.790000000000001,10.56,11.99,192.35,193.87,195.1,196.81,198.38,199.92000000000002,201.14000000000001,202.20000000000002,203.21,22.47,22.46,22.45,22.46,22.47,22.5,22.52,22.55,22.45,N/A,N/A -2012,12,9,20,30,101210,100050,98920,93.75,0,5.51,6.8500000000000005,7.46,8.09,8.64,9.16,9.64,10.1,11.11,191.46,192.48000000000002,193.28,194.33,195.28,196.19,197.04,197.82,198.98000000000002,22.52,22.53,22.52,22.48,22.44,22.38,22.32,22.26,22.11,N/A,N/A -2012,12,9,21,30,101190,100030,98900,94.83,0,4.72,6.09,6.7,7.28,7.8100000000000005,8.3,8.8,9.3,10.450000000000001,186.45000000000002,188.19,189.58,191.4,193.18,195,196.64000000000001,198.17000000000002,200.35,22.41,22.490000000000002,22.5,22.48,22.45,22.42,22.38,22.34,22.25,N/A,N/A -2012,12,9,22,30,101150,99990,98860,92.42,0,4.92,6.38,7.07,7.7700000000000005,8.4,8.98,9.6,10.200000000000001,11.48,186.70000000000002,188.23,189.39000000000001,190.71,191.89000000000001,193.01,194.58,196.29,199.98000000000002,22.36,22.52,22.580000000000002,22.64,22.68,22.71,22.740000000000002,22.77,22.64,N/A,N/A -2012,12,9,23,30,101130,99970,98840,91.74,0,5.09,6.5200000000000005,7.17,7.8500000000000005,8.53,9.27,10.15,11.07,12.06,182.92000000000002,184.24,185.39000000000001,187.20000000000002,189.12,191.22,193.02,194.68,195.72,22.28,22.43,22.490000000000002,22.56,22.64,22.72,22.77,22.81,22.61,N/A,N/A -2012,12,10,0,30,101120,99960,98830,92.58,0,5.3,6.74,7.42,8.13,8.76,9.36,10.07,10.81,12.07,181.57,182.57,183.37,184.46,185.8,187.44,189.82,192.48000000000002,195.62,22.240000000000002,22.36,22.41,22.46,22.53,22.62,22.72,22.830000000000002,22.72,N/A,N/A -2012,12,10,1,30,101120,99950,98820,93.99,0,5.38,6.78,7.45,8.15,8.78,9.4,9.96,10.46,11.290000000000001,176.07,176.98,177.75,178.81,179.95000000000002,181.24,182.62,183.99,186.48,22.16,22.23,22.25,22.240000000000002,22.23,22.22,22.19,22.14,21.96,N/A,N/A -2012,12,10,2,30,101100,99930,98810,94.4,0,6.03,7.48,8.14,8.83,9.450000000000001,10.02,10.53,10.98,11.63,177.97,178.49,178.92000000000002,179.48,180.02,180.58,181.12,181.61,182.79,22.23,22.28,22.28,22.26,22.23,22.19,22.12,22.04,21.830000000000002,N/A,N/A -2012,12,10,3,30,101080,99910,98790,94.22,0,6.24,7.71,8.370000000000001,9.02,9.6,10.16,10.71,11.23,12.17,178.1,179.18,179.96,180.9,181.76,182.59,183.31,183.95000000000002,184.81,22.26,22.32,22.31,22.29,22.25,22.2,22.150000000000002,22.09,21.92,N/A,N/A -2012,12,10,4,30,101060,99890,98770,92.74,0,6.57,8.08,8.74,9.38,9.96,10.5,11,11.450000000000001,12.200000000000001,183.16,183.43,183.66,184.01,184.38,184.8,185.25,185.67000000000002,186.52,22.35,22.400000000000002,22.39,22.35,22.3,22.25,22.18,22.1,21.900000000000002,N/A,N/A -2012,12,10,5,30,101030,99860,98740,91.86,0,7.42,8.950000000000001,9.61,10.25,10.8,11.32,11.8,12.24,13.030000000000001,184.70000000000002,185.21,185.58,186.02,186.43,186.85,187.27,187.67000000000002,188.41,22.44,22.490000000000002,22.48,22.46,22.41,22.36,22.29,22.22,22.02,N/A,N/A -2012,12,10,6,30,101050,99890,98760,92.67,0,6.28,7.8100000000000005,8.5,9.18,9.77,10.33,10.85,11.33,12.200000000000001,186.65,187.23,187.69,188.28,188.82,189.36,189.86,190.31,191.17000000000002,22.3,22.400000000000002,22.41,22.38,22.34,22.29,22.22,22.14,21.95,N/A,N/A -2012,12,10,7,30,101050,99880,98760,93.31,0,6.34,7.9,8.620000000000001,9.36,10,10.58,11.11,11.61,12.44,193.46,193.96,194.32,194.84,195.33,195.8,196.21,196.56,197.06,22.28,22.37,22.38,22.37,22.34,22.3,22.23,22.17,21.97,N/A,N/A -2012,12,10,8,30,101010,99850,98720,94.36,0,4.86,6.38,7.11,7.86,8.540000000000001,9.19,9.790000000000001,10.35,11.44,202.20000000000002,202.09,202.06,202.24,202.5,202.86,203.24,203.6,204.04,22.080000000000002,22.18,22.19,22.19,22.16,22.13,22.07,22.01,21.85,N/A,N/A -2012,12,10,9,30,101110,99920,98770,99.10000000000001,4.4,11.76,12.81,13.19,13.4,13.55,13.66,13.75,13.82,13.94,330.29,330.1,330.24,330.41,330.57,330.73,330.90000000000003,331.06,331.43,17.26,16.73,16.53,16.36,16.22,16.080000000000002,15.950000000000001,15.83,15.59,N/A,N/A -2012,12,10,10,30,101190,99990,98830,95.18,150.9,12.89,13.99,14.290000000000001,14.43,14.51,14.57,14.6,14.63,14.72,349.23,349.25,349.21,349.13,349.04,348.94,348.81,348.68,348.25,15.89,15.23,14.99,14.780000000000001,14.59,14.41,14.23,14.07,13.76,N/A,N/A -2012,12,10,11,30,101240,100040,98870,91.9,12.8,12.950000000000001,14.040000000000001,14.3,14.4,14.450000000000001,14.47,14.47,14.450000000000001,14.4,340.15000000000003,340.55,340.8,341.06,341.33,341.59000000000003,341.88,342.16,342.82,15.290000000000001,14.6,14.35,14.13,13.92,13.73,13.540000000000001,13.370000000000001,13.01,N/A,N/A -2012,12,10,12,30,101330,100120,98940,86,0,14.09,15.35,15.67,15.83,15.93,15.99,16.02,16.03,16.03,346.93,346.72,346.58,346.44,346.31,346.18,346.04,345.91,345.62,14.040000000000001,13.24,12.950000000000001,12.71,12.48,12.280000000000001,12.07,11.870000000000001,11.48,N/A,N/A -2012,12,10,13,30,101380,100160,98980,75.71000000000001,0,16.22,17.79,18.19,18.41,18.53,18.62,18.67,18.7,18.72,344.26,344.19,344.18,344.15000000000003,344.11,344.07,344.01,343.96,343.86,13.32,12.42,12.120000000000001,11.86,11.620000000000001,11.41,11.19,10.99,10.59,N/A,N/A -2012,12,10,14,30,101450,100220,99040,72.65,0,16.080000000000002,17.61,18.01,18.22,18.34,18.43,18.490000000000002,18.52,18.56,346.61,346.51,346.45,346.40000000000003,346.34000000000003,346.29,346.23,346.18,346.07,12.76,11.84,11.53,11.27,11.03,10.82,10.6,10.4,10.01,N/A,N/A -2012,12,10,15,30,101550,100330,99140,72.59,0,14.33,15.6,15.950000000000001,16.13,16.25,16.32,16.37,16.41,16.45,352.22,351.97,351.8,351.64,351.48,351.34000000000003,351.18,351.04,350.75,12.21,11.31,11,10.74,10.51,10.3,10.08,9.88,9.48,N/A,N/A -2012,12,10,16,30,101620,100390,99200,71.67,0,12.67,13.700000000000001,13.96,14.09,14.17,14.23,14.26,14.280000000000001,14.290000000000001,351.16,350.94,350.79,350.66,350.53000000000003,350.43,350.31,350.21,349.99,11.67,10.8,10.5,10.24,10.01,9.8,9.58,9.38,8.98,N/A,N/A -2012,12,10,17,30,101620,100390,99200,65.02,0,12.89,13.91,14.15,14.27,14.33,14.36,14.370000000000001,14.370000000000001,14.35,354.89,354.83,354.79,354.74,354.68,354.63,354.58,354.52,354.39,11.450000000000001,10.57,10.27,10.02,9.790000000000001,9.59,9.370000000000001,9.18,8.790000000000001,N/A,N/A -2012,12,10,18,30,101650,100420,99230,63.83,0,11.55,12.450000000000001,12.68,12.8,12.88,12.93,12.97,12.99,13.030000000000001,351.05,350.85,350.75,350.64,350.55,350.46,350.36,350.27,350.09000000000003,11.700000000000001,10.88,10.59,10.35,10.120000000000001,9.91,9.700000000000001,9.5,9.11,N/A,N/A -2012,12,10,19,30,101680,100450,99260,59.93,0,11.1,11.94,12.15,12.26,12.32,12.370000000000001,12.4,12.42,12.44,350.75,350.69,350.64,350.6,350.56,350.53000000000003,350.49,350.46,350.39,12.07,11.27,10.99,10.74,10.51,10.31,10.09,9.89,9.49,N/A,N/A -2012,12,10,20,30,101660,100440,99240,58.88,0,10.53,11.3,11.49,11.58,11.65,11.69,11.71,11.73,11.75,347.17,347.14,347.12,347.1,347.07,347.04,347.01,346.99,346.93,12.290000000000001,11.52,11.24,10.99,10.77,10.56,10.34,10.14,9.74,N/A,N/A -2012,12,10,21,30,101660,100440,99250,57.03,0,10.14,10.86,11.040000000000001,11.13,11.19,11.22,11.25,11.26,11.27,350.27,350.12,350.01,349.90000000000003,349.79,349.7,349.6,349.5,349.32,12.49,11.74,11.47,11.23,11.01,10.8,10.58,10.38,9.97,N/A,N/A -2012,12,10,22,30,101660,100440,99250,57.32,0,9.86,10.55,10.71,10.78,10.83,10.86,10.870000000000001,10.88,10.870000000000001,351.54,351.48,351.42,351.36,351.3,351.25,351.19,351.14,351.05,12.47,11.73,11.450000000000001,11.21,10.98,10.78,10.56,10.36,9.950000000000001,N/A,N/A -2012,12,10,23,30,101710,100480,99290,55.730000000000004,0,9.99,10.68,10.85,10.92,10.96,10.99,11,11,11,354.63,354.51,354.45,354.40000000000003,354.35,354.3,354.25,354.2,354.1,12.18,11.43,11.16,10.91,10.69,10.48,10.26,10.06,9.66,N/A,N/A -2012,12,11,0,30,101780,100550,99360,55.59,0,9.84,10.48,10.63,10.69,10.72,10.74,10.74,10.73,10.71,1.34,1.09,0.92,0.75,0.6,0.46,0.31,0.18,359.90000000000003,11.6,10.83,10.55,10.3,10.08,9.870000000000001,9.65,9.450000000000001,9.05,N/A,N/A -2012,12,11,1,30,101830,100590,99390,55.730000000000004,0,9.8,10.44,10.57,10.63,10.65,10.66,10.66,10.65,10.620000000000001,1.59,1.3900000000000001,1.26,1.1400000000000001,1.02,0.91,0.8,0.6900000000000001,0.48,11.06,10.27,9.99,9.75,9.52,9.32,9.1,8.9,8.5,N/A,N/A -2012,12,11,2,30,101860,100630,99430,56.22,0,10.07,10.72,10.85,10.9,10.92,10.93,10.92,10.9,10.86,2.27,2.13,2.0300000000000002,1.94,1.86,1.78,1.69,1.61,1.44,10.68,9.870000000000001,9.59,9.35,9.120000000000001,8.91,8.700000000000001,8.5,8.1,N/A,N/A -2012,12,11,3,30,101890,100650,99440,56.800000000000004,0,9.870000000000001,10.49,10.6,10.64,10.65,10.65,10.63,10.61,10.55,4.11,4.09,4.08,4.07,4.05,4.04,4.0200000000000005,3.99,3.95,10.27,9.46,9.18,8.93,8.71,8.5,8.28,8.08,7.69,N/A,N/A -2012,12,11,4,30,101890,100640,99440,59.43,0,10.07,10.69,10.8,10.84,10.84,10.84,10.81,10.790000000000001,10.72,2.59,2.77,2.89,2.99,3.09,3.16,3.25,3.33,3.47,9.78,8.94,8.65,8.4,8.17,7.96,7.74,7.54,7.15,N/A,N/A -2012,12,11,5,30,101890,100650,99440,61.89,0,10.200000000000001,10.85,10.98,11.03,11.05,11.05,11.040000000000001,11.02,10.97,6.1000000000000005,6.34,6.48,6.6000000000000005,6.71,6.8100000000000005,6.91,7,7.17,9.34,8.48,8.18,7.930000000000001,7.7,7.48,7.26,7.0600000000000005,6.66,N/A,N/A -2012,12,11,6,30,101930,100690,99480,63.96,0,9.9,10.51,10.64,10.68,10.700000000000001,10.71,10.69,10.68,10.63,10.540000000000001,10.73,10.81,10.89,10.96,11.02,11.09,11.15,11.27,9.09,8.23,7.930000000000001,7.68,7.44,7.23,7.01,6.8,6.4,N/A,N/A -2012,12,11,7,30,101930,100680,99470,64.21000000000001,0,10.06,10.69,10.82,10.870000000000001,10.89,10.89,10.88,10.86,10.82,17.81,17.94,17.990000000000002,18.04,18.080000000000002,18.12,18.17,18.21,18.28,8.78,7.91,7.61,7.36,7.12,6.91,6.69,6.48,6.08,N/A,N/A -2012,12,11,8,30,101960,100720,99500,64.13,0,9.950000000000001,10.55,10.67,10.71,10.72,10.72,10.700000000000001,10.67,10.61,21.68,21.73,21.81,21.88,21.94,22,22.05,22.11,22.2,8.52,7.640000000000001,7.34,7.08,6.84,6.63,6.42,6.21,5.8100000000000005,N/A,N/A -2012,12,11,9,30,101970,100720,99510,64.15,0,9.51,10.07,10.17,10.21,10.22,10.22,10.200000000000001,10.18,10.120000000000001,20.900000000000002,21.080000000000002,21.2,21.32,21.42,21.52,21.62,21.7,21.89,8.49,7.63,7.33,7.08,6.8500000000000005,6.640000000000001,6.42,6.22,5.82,N/A,N/A -2012,12,11,10,30,102020,100770,99560,64.56,0,8.84,9.33,9.41,9.44,9.44,9.43,9.41,9.38,9.31,20.39,20.650000000000002,20.84,20.990000000000002,21.14,21.28,21.41,21.54,21.79,8.51,7.68,7.390000000000001,7.140000000000001,6.9,6.69,6.48,6.28,5.88,N/A,N/A -2012,12,11,11,30,102040,100800,99580,65.87,0,8.64,9.09,9.16,9.18,9.17,9.16,9.13,9.1,9.02,23.78,24.04,24.25,24.43,24.6,24.76,24.92,25.07,25.38,8.6,7.78,7.49,7.24,7.01,6.8,6.59,6.390000000000001,5.99,N/A,N/A -2012,12,11,12,30,102050,100800,99590,66.93,0,8.18,8.59,8.65,8.66,8.65,8.63,8.61,8.58,8.5,26.03,26.39,26.61,26.810000000000002,27.01,27.18,27.36,27.54,27.88,8.77,7.98,7.69,7.45,7.22,7.01,6.8,6.6000000000000005,6.21,N/A,N/A -2012,12,11,13,30,102030,100790,99580,69.18,0,8.77,9.23,9.3,9.31,9.3,9.27,9.24,9.200000000000001,9.120000000000001,26.32,26.76,27.02,27.25,27.48,27.68,27.900000000000002,28.1,28.5,8.84,8.03,7.74,7.49,7.26,7.0600000000000005,6.84,6.65,6.25,N/A,N/A -2012,12,11,14,30,102090,100850,99640,69,0,8.44,8.89,8.950000000000001,8.950000000000001,8.93,8.91,8.870000000000001,8.84,8.75,26.38,26.78,27.060000000000002,27.310000000000002,27.560000000000002,27.78,28.02,28.240000000000002,28.7,8.84,8.03,7.74,7.5,7.2700000000000005,7.07,6.8500000000000005,6.65,6.26,N/A,N/A -2012,12,11,15,30,102090,100840,99630,66.9,0,8.11,8.51,8.58,8.58,8.58,8.56,8.53,8.5,8.42,26.22,26.62,26.87,27.1,27.310000000000002,27.51,27.72,27.91,28.3,8.950000000000001,8.17,7.88,7.640000000000001,7.41,7.2,6.99,6.79,6.390000000000001,N/A,N/A -2012,12,11,16,30,102080,100840,99630,64.77,0,7.47,7.83,7.86,7.86,7.84,7.82,7.79,7.75,7.68,23.72,24.080000000000002,24.35,24.59,24.82,25.03,25.25,25.46,25.87,9.200000000000001,8.45,8.17,7.930000000000001,7.7,7.5,7.29,7.09,6.7,N/A,N/A -2012,12,11,17,30,102070,100820,99610,61.74,0,7.11,7.44,7.48,7.48,7.46,7.45,7.42,7.390000000000001,7.3100000000000005,15.06,15.46,15.69,15.91,16.12,16.32,16.53,16.73,17.13,9.58,8.85,8.58,8.34,8.120000000000001,7.92,7.71,7.5200000000000005,7.12,N/A,N/A -2012,12,11,18,30,102100,100860,99660,59.35,0,5.96,6.2,6.24,6.25,6.24,6.23,6.21,6.19,6.140000000000001,14.57,14.780000000000001,14.91,15.040000000000001,15.16,15.27,15.38,15.49,15.700000000000001,10.08,9.39,9.13,8.9,8.67,8.47,8.26,8.06,7.67,N/A,N/A -2012,12,11,19,30,102070,100830,99620,56.800000000000004,0,6.19,6.47,6.5200000000000005,6.53,6.53,6.5200000000000005,6.51,6.5,6.47,11.290000000000001,11.47,11.58,11.67,11.76,11.84,11.93,12,12.16,10.59,9.91,9.65,9.42,9.200000000000001,9,8.78,8.59,8.19,N/A,N/A -2012,12,11,20,30,102090,100850,99650,54.06,0,4.37,4.57,4.59,4.59,4.59,4.58,4.57,4.57,4.54,12.51,12.950000000000001,13.24,13.51,13.77,14,14.23,14.450000000000001,14.88,11.13,10.52,10.27,10.040000000000001,9.83,9.63,9.41,9.21,8.82,N/A,N/A -2012,12,11,21,30,102020,100790,99590,53.19,0,5.84,6.11,6.16,6.19,6.19,6.2,6.19,6.19,6.17,8.2,8.700000000000001,9,9.27,9.52,9.74,9.96,10.17,10.58,11.69,11.05,10.8,10.57,10.35,10.15,9.93,9.73,9.33,N/A,N/A -2012,12,11,22,30,102110,100880,99680,49.11,0,4.65,4.82,4.83,4.82,4.8,4.79,4.7700000000000005,4.75,4.71,2.7600000000000002,3.18,3.45,3.69,3.92,4.13,4.3500000000000005,4.5600000000000005,4.96,12.040000000000001,11.450000000000001,11.21,10.99,10.77,10.58,10.36,10.16,9.77,N/A,N/A -2012,12,11,23,30,102050,100820,99620,51.9,0,7.25,7.62,7.68,7.69,7.69,7.68,7.66,7.640000000000001,7.6000000000000005,12.88,13.120000000000001,13.25,13.370000000000001,13.49,13.59,13.71,13.8,14.01,12.290000000000001,11.63,11.38,11.15,10.92,10.72,10.51,10.31,9.91,N/A,N/A -2012,12,12,0,30,102100,100860,99670,54.57,0,8.14,8.58,8.64,8.65,8.64,8.620000000000001,8.6,8.57,8.51,15.41,15.66,15.73,15.81,15.89,15.96,16.05,16.12,16.28,12.13,11.43,11.18,10.950000000000001,10.72,10.52,10.31,10.11,9.71,N/A,N/A -2012,12,12,1,30,102210,100980,99780,54.49,0,6.76,7.09,7.140000000000001,7.15,7.140000000000001,7.13,7.1000000000000005,7.08,7.0200000000000005,16.68,16.96,17.06,17.16,17.240000000000002,17.32,17.400000000000002,17.46,17.61,11.91,11.25,11,10.77,10.540000000000001,10.34,10.13,9.93,9.53,N/A,N/A -2012,12,12,2,30,102210,100970,99770,55.660000000000004,0,7.97,8.4,8.46,8.47,8.47,8.46,8.43,8.4,8.33,21.62,21.76,21.85,21.92,22,22.06,22.13,22.19,22.31,11.73,11.03,10.77,10.540000000000001,10.32,10.120000000000001,9.9,9.700000000000001,9.3,N/A,N/A -2012,12,12,3,30,102250,101020,99810,55.56,0,7.67,8.07,8.13,8.14,8.13,8.11,8.08,8.06,7.99,22.53,22.91,23.16,23.37,23.59,23.78,23.990000000000002,24.18,24.57,11.65,10.96,10.700000000000001,10.47,10.24,10.040000000000001,9.83,9.63,9.23,N/A,N/A -2012,12,12,4,30,102280,101050,99840,57.15,0,7.33,7.7,7.75,7.76,7.75,7.74,7.72,7.69,7.63,27.02,27.35,27.59,27.810000000000002,28.01,28.2,28.39,28.57,28.93,11.71,11.02,10.77,10.540000000000001,10.31,10.120000000000001,9.9,9.700000000000001,9.3,N/A,N/A -2012,12,12,5,30,102310,101070,99870,58.19,0,8,8.41,8.47,8.48,8.47,8.45,8.41,8.38,8.3,22.41,22.830000000000002,23.1,23.34,23.57,23.78,24.01,24.21,24.64,11.53,10.82,10.56,10.33,10.1,9.9,9.69,9.49,9.09,N/A,N/A -2012,12,12,6,30,102340,101100,99900,57.4,0,6.86,7.2,7.25,7.26,7.25,7.25,7.22,7.2,7.140000000000001,31.54,31.84,32.05,32.230000000000004,32.410000000000004,32.57,32.730000000000004,32.88,33.2,11.75,11.11,10.86,10.63,10.41,10.22,10,9.81,9.41,N/A,N/A -2012,12,12,7,30,102380,101150,99950,56.34,0,6.7700000000000005,7.09,7.13,7.13,7.11,7.09,7.0600000000000005,7.03,6.96,26.62,27.02,27.26,27.48,27.7,27.88,28.09,28.28,28.67,11.82,11.17,10.93,10.700000000000001,10.48,10.290000000000001,10.07,9.88,9.49,N/A,N/A -2012,12,12,8,30,102410,101170,99970,56.870000000000005,0,7.5600000000000005,7.92,7.97,7.96,7.94,7.91,7.87,7.83,7.74,22.77,23.1,23.3,23.48,23.650000000000002,23.8,23.96,24.11,24.41,11.59,10.91,10.66,10.43,10.21,10.01,9.8,9.61,9.21,N/A,N/A -2012,12,12,9,30,102450,101210,100010,57.620000000000005,0,7.63,8,8.05,8.05,8.03,8.01,7.97,7.930000000000001,7.84,24.330000000000002,24.580000000000002,24.740000000000002,24.88,25.03,25.150000000000002,25.28,25.400000000000002,25.650000000000002,11.24,10.55,10.3,10.07,9.85,9.65,9.44,9.25,8.86,N/A,N/A -2012,12,12,10,30,102480,101240,100030,59.1,0,8.09,8.52,8.58,8.58,8.56,8.540000000000001,8.5,8.46,8.370000000000001,26.77,27.02,27.21,27.37,27.53,27.66,27.810000000000002,27.94,28.22,10.98,10.26,9.99,9.76,9.540000000000001,9.34,9.13,8.94,8.540000000000001,N/A,N/A -2012,12,12,11,30,102500,101260,100050,57.81,0,7.63,8.02,8.08,8.09,8.08,8.06,8.03,8,7.92,28.59,28.810000000000002,28.94,29.07,29.18,29.28,29.38,29.48,29.67,10.98,10.290000000000001,10.03,9.8,9.58,9.38,9.17,8.98,8.59,N/A,N/A -2012,12,12,12,30,102530,101290,100080,55.910000000000004,0,7.62,8,8.05,8.06,8.040000000000001,8.03,7.99,7.96,7.88,27.91,28.150000000000002,28.32,28.46,28.6,28.72,28.85,28.97,29.2,10.96,10.26,10,9.77,9.55,9.36,9.15,8.96,8.56,N/A,N/A -2012,12,12,13,30,102550,101310,100100,56.85,0,7.62,8.02,8.07,8.08,8.06,8.040000000000001,8.01,7.98,7.9,27.87,28.07,28.19,28.3,28.400000000000002,28.490000000000002,28.580000000000002,28.66,28.82,10.98,10.28,10.02,9.790000000000001,9.57,9.38,9.17,8.97,8.59,N/A,N/A -2012,12,12,14,30,102590,101350,100140,55.71,0,7.68,8.07,8.13,8.13,8.120000000000001,8.1,8.07,8.03,7.95,28.78,29.05,29.21,29.35,29.490000000000002,29.61,29.75,29.86,30.09,10.91,10.21,9.96,9.73,9.51,9.32,9.11,8.92,8.53,N/A,N/A -2012,12,12,15,30,102620,101380,100170,55.28,0,7.59,7.99,8.040000000000001,8.06,8.05,8.03,8,7.97,7.9,29.38,29.55,29.67,29.78,29.87,29.96,30.04,30.12,30.27,11.01,10.32,10.06,9.84,9.620000000000001,9.43,9.22,9.03,8.64,N/A,N/A -2012,12,12,16,30,102630,101390,100180,52.19,0,7.17,7.54,7.59,7.61,7.6000000000000005,7.59,7.57,7.54,7.49,28.310000000000002,28.47,28.55,28.64,28.7,28.76,28.830000000000002,28.88,28.98,11.200000000000001,10.52,10.27,10.05,9.83,9.64,9.43,9.24,8.85,N/A,N/A -2012,12,12,17,30,102620,101380,100170,48.54,0,6.94,7.29,7.34,7.36,7.3500000000000005,7.34,7.32,7.3,7.25,28.01,28.23,28.36,28.48,28.59,28.69,28.79,28.88,29.07,11.55,10.89,10.64,10.42,10.200000000000001,10.01,9.8,9.61,9.22,N/A,N/A -2012,12,12,18,30,102620,101380,100170,47.17,0,6.4,6.72,6.7700000000000005,6.78,6.78,6.78,6.7700000000000005,6.75,6.72,26.92,27.14,27.26,27.37,27.47,27.57,27.66,27.75,27.92,11.89,11.27,11.02,10.8,10.59,10.39,10.19,9.99,9.6,N/A,N/A -2012,12,12,19,30,102600,101360,100160,45.31,0,5.72,6,6.05,6.0600000000000005,6.07,6.07,6.0600000000000005,6.0600000000000005,6.04,27.830000000000002,27.900000000000002,27.94,27.97,28,28.03,28.05,28.07,28.1,12.33,11.74,11.5,11.28,11.07,10.88,10.66,10.47,10.08,N/A,N/A -2012,12,12,20,30,102570,101340,100140,43.5,0,5.39,5.65,5.7,5.72,5.73,5.73,5.73,5.73,5.72,29.79,29.69,29.63,29.55,29.490000000000002,29.43,29.36,29.29,29.14,12.790000000000001,12.22,11.99,11.77,11.56,11.36,11.15,10.96,10.56,N/A,N/A -2012,12,12,21,30,102560,101330,100130,40.43,0,4.86,5.1000000000000005,5.15,5.17,5.18,5.19,5.19,5.19,5.19,33.980000000000004,33.84,33.730000000000004,33.63,33.53,33.44,33.35,33.26,33.06,13.33,12.780000000000001,12.55,12.34,12.13,11.93,11.72,11.53,11.13,N/A,N/A -2012,12,12,22,30,102550,101320,100120,38.800000000000004,0,4.92,5.16,5.2,5.22,5.23,5.23,5.23,5.23,5.23,35.660000000000004,35.63,35.6,35.56,35.53,35.5,35.46,35.44,35.37,13.72,13.18,12.96,12.75,12.530000000000001,12.34,12.13,11.93,11.540000000000001,N/A,N/A -2012,12,12,23,30,102540,101310,100110,39.47,0,5.24,5.5,5.54,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.5600000000000005,5.55,5.54,33.64,33.89,34.05,34.2,34.33,34.45,34.58,34.7,34.94,13.98,13.44,13.22,13.01,12.790000000000001,12.6,12.39,12.200000000000001,11.8,N/A,N/A -2012,12,13,0,30,102560,101330,100130,42.15,0,5.57,5.84,5.88,5.89,5.89,5.89,5.88,5.87,5.84,38.300000000000004,38.730000000000004,39,39.24,39.480000000000004,39.68,39.89,40.09,40.5,14.11,13.57,13.35,13.13,12.92,12.73,12.52,12.32,11.93,N/A,N/A -2012,12,13,1,30,102560,101330,100140,44.660000000000004,0,5.36,5.6000000000000005,5.63,5.64,5.63,5.62,5.6000000000000005,5.59,5.55,45.17,45.68,45.980000000000004,46.25,46.52,46.75,47,47.230000000000004,47.71,14.14,13.61,13.38,13.17,12.96,12.77,12.56,12.36,11.97,N/A,N/A -2012,12,13,2,30,102570,101340,100150,47.95,0,5.38,5.65,5.69,5.71,5.71,5.72,5.71,5.7,5.69,52.38,53.050000000000004,53.43,53.76,54.08,54.370000000000005,54.67,54.95,55.5,14.27,13.74,13.51,13.3,13.09,12.9,12.69,12.49,12.1,N/A,N/A -2012,12,13,3,30,102570,101350,100150,52.22,0,5.37,5.63,5.67,5.69,5.69,5.69,5.68,5.67,5.65,60.09,60.45,60.67,60.870000000000005,61.06,61.24,61.43,61.6,61.95,14.35,13.82,13.6,13.38,13.17,12.98,12.77,12.58,12.18,N/A,N/A -2012,12,13,4,30,102570,101340,100150,51.620000000000005,0,5.11,5.3500000000000005,5.38,5.39,5.39,5.39,5.37,5.37,5.34,68.06,68.3,68.45,68.58,68.71000000000001,68.82000000000001,68.94,69.06,69.28,14.56,14.040000000000001,13.82,13.61,13.4,13.21,13,12.8,12.41,N/A,N/A -2012,12,13,5,30,102560,101340,100150,54.44,0,4.98,5.22,5.26,5.2700000000000005,5.2700000000000005,5.2700000000000005,5.26,5.25,5.22,67.89,68.27,68.52,68.75,68.97,69.17,69.38,69.57000000000001,69.97,14.63,14.11,13.89,13.68,13.47,13.280000000000001,13.07,12.88,12.48,N/A,N/A -2012,12,13,6,30,102580,101350,100160,56.49,0,4.79,5.01,5.04,5.04,5.04,5.04,5.0200000000000005,5.01,4.98,71.72,72.09,72.33,72.54,72.74,72.91,73.11,73.28,73.64,14.73,14.23,14.01,13.8,13.59,13.4,13.19,13,12.6,N/A,N/A -2012,12,13,7,30,102600,101370,100180,58.480000000000004,0,4.8100000000000005,5.01,5.04,5.04,5.04,5.03,5.01,5,4.97,74.62,74.93,75.10000000000001,75.25,75.4,75.52,75.65,75.78,76.03,14.71,14.21,14,13.790000000000001,13.58,13.39,13.18,12.98,12.59,N/A,N/A -2012,12,13,8,30,102590,101370,100180,57.6,0,4.8500000000000005,5.05,5.08,5.08,5.07,5.0600000000000005,5.04,5.03,4.99,70.08,70.36,70.55,70.72,70.89,71.03,71.18,71.32000000000001,71.61,14.790000000000001,14.290000000000001,14.07,13.870000000000001,13.66,13.47,13.26,13.06,12.67,N/A,N/A -2012,12,13,9,30,102590,101370,100180,59.1,0,5.21,5.45,5.48,5.48,5.48,5.47,5.46,5.44,5.4,66.56,66.86,67.05,67.23,67.39,67.54,67.71000000000001,67.85,68.15,14.790000000000001,14.280000000000001,14.06,13.85,13.64,13.450000000000001,13.24,13.05,12.65,N/A,N/A -2012,12,13,10,30,102590,101370,100180,57.910000000000004,0,5.32,5.57,5.6000000000000005,5.61,5.61,5.6000000000000005,5.59,5.57,5.54,65.04,65.25,65.38,65.5,65.62,65.72,65.83,65.93,66.13,14.83,14.33,14.11,13.9,13.69,13.5,13.290000000000001,13.1,12.700000000000001,N/A,N/A -2012,12,13,11,30,102610,101390,100200,59.9,0,6.09,6.4,6.44,6.45,6.45,6.44,6.42,6.4,6.3500000000000005,64.83,65.08,65.24,65.37,65.5,65.62,65.74,65.85,66.08,14.8,14.280000000000001,14.06,13.84,13.63,13.44,13.23,13.040000000000001,12.65,N/A,N/A -2012,12,13,12,30,102630,101400,100210,64.7,0,6.66,7.03,7.09,7.11,7.12,7.11,7.1000000000000005,7.09,7.05,65.02,65.31,65.49,65.66,65.82000000000001,65.96000000000001,66.12,66.27,66.57000000000001,14.57,14.02,13.8,13.59,13.370000000000001,13.18,12.97,12.780000000000001,12.39,N/A,N/A -2012,12,13,13,30,102630,101400,100210,65.72,0,6.65,7.0200000000000005,7.08,7.1000000000000005,7.1000000000000005,7.09,7.08,7.0600000000000005,7.0200000000000005,64.6,64.98,65.22,65.44,65.66,65.86,66.07000000000001,66.27,66.67,14.5,13.950000000000001,13.73,13.51,13.3,13.120000000000001,12.9,12.71,12.32,N/A,N/A -2012,12,13,14,30,102650,101430,100240,66.61,0,6.8100000000000005,7.2,7.26,7.29,7.3,7.3,7.29,7.28,7.25,66.06,66.5,66.77,67.02,67.27,67.49,67.73,67.95,68.4,14.48,13.92,13.700000000000001,13.48,13.27,13.08,12.870000000000001,12.68,12.290000000000001,N/A,N/A -2012,12,13,15,30,102670,101440,100250,65.01,0,6.68,7.0600000000000005,7.13,7.16,7.17,7.17,7.16,7.15,7.13,68.05,68.5,68.77,69.03,69.27,69.48,69.71000000000001,69.92,70.37,14.6,14.06,13.83,13.620000000000001,13.41,13.22,13.01,12.82,12.42,N/A,N/A -2012,12,13,16,30,102650,101420,100230,65.06,0,6.3100000000000005,6.66,6.72,6.75,6.75,6.76,6.75,6.74,6.71,72.17,72.47,72.65,72.82000000000001,72.97,73.12,73.28,73.42,73.71000000000001,14.77,14.24,14.02,13.8,13.59,13.4,13.19,13,12.6,N/A,N/A -2012,12,13,17,30,102630,101400,100220,66.89,0,6.21,6.5600000000000005,6.62,6.65,6.66,6.66,6.66,6.65,6.63,74.65,75.04,75.28,75.49,75.69,75.87,76.07000000000001,76.24,76.61,14.870000000000001,14.35,14.13,13.91,13.700000000000001,13.51,13.3,13.11,12.72,N/A,N/A -2012,12,13,18,30,102610,101380,100200,66.25,0,5.88,6.2,6.26,6.28,6.3,6.3,6.3,6.29,6.2700000000000005,76.12,76.47,76.69,76.88,77.07000000000001,77.24,77.43,77.59,77.93,15.030000000000001,14.52,14.3,14.09,13.88,13.69,13.48,13.280000000000001,12.89,N/A,N/A -2012,12,13,19,30,102590,101370,100180,67.54,0,5.8100000000000005,6.13,6.18,6.21,6.22,6.22,6.22,6.21,6.19,77.48,77.83,78.04,78.23,78.41,78.58,78.75,78.9,79.24,15.16,14.65,14.43,14.22,14.01,13.82,13.61,13.42,13.02,N/A,N/A -2012,12,13,20,30,102560,101330,100150,65.56,0,5.79,6.1000000000000005,6.16,6.18,6.19,6.2,6.19,6.18,6.16,79.55,79.9,80.11,80.3,80.48,80.65,80.83,80.99,81.33,15.3,14.790000000000001,14.58,14.370000000000001,14.16,13.97,13.76,13.57,13.17,N/A,N/A -2012,12,13,21,30,102520,101300,100110,63.88,0,5.44,5.73,5.78,5.8,5.8100000000000005,5.8100000000000005,5.8100000000000005,5.8,5.78,80.81,81.22,81.47,81.71000000000001,81.93,82.14,82.35000000000001,82.55,82.97,15.44,14.950000000000001,14.74,14.530000000000001,14.32,14.13,13.93,13.73,13.34,N/A,N/A -2012,12,13,22,30,102490,101270,100090,63.35,0,5.36,5.64,5.7,5.72,5.73,5.73,5.73,5.73,5.72,83.8,84.16,84.39,84.60000000000001,84.81,84.99,85.19,85.38,85.77,15.610000000000001,15.13,14.92,14.71,14.51,14.31,14.11,13.92,13.52,N/A,N/A -2012,12,13,23,30,102480,101270,100080,64.29,0,5.39,5.68,5.74,5.7700000000000005,5.79,5.8,5.8,5.8,5.8,86.9,87.27,87.52,87.75,87.96000000000001,88.16,88.37,88.56,88.96000000000001,15.81,15.33,15.120000000000001,14.91,14.71,14.51,14.31,14.120000000000001,13.72,N/A,N/A -2012,12,14,0,30,102470,101250,100070,65.51,0,5.62,5.92,5.98,6.01,6.0200000000000005,6.0200000000000005,6.0200000000000005,6.01,6,86.71000000000001,87.03,87.25,87.45,87.65,87.83,88.04,88.22,88.62,15.92,15.44,15.23,15.02,14.82,14.63,14.42,14.23,13.84,N/A,N/A -2012,12,14,1,30,102450,101230,100050,65.55,0,5.94,6.29,6.36,6.4,6.42,6.44,6.45,6.45,6.44,93.11,93.22,93.33,93.47,93.62,93.77,93.93,94.08,94.41,16.17,15.700000000000001,15.49,15.280000000000001,15.07,14.88,14.67,14.48,14.09,N/A,N/A -2012,12,14,2,30,102440,101220,100040,63.58,0,5.83,6.17,6.25,6.29,6.32,6.34,6.3500000000000005,6.36,6.36,95.88,95.79,95.73,95.74000000000001,95.76,95.79,95.85000000000001,95.92,96.10000000000001,16.41,15.96,15.75,15.540000000000001,15.34,15.14,14.94,14.75,14.35,N/A,N/A -2012,12,14,3,30,102420,101210,100030,67.26,0,6.07,6.45,6.55,6.6000000000000005,6.63,6.66,6.67,6.69,6.71,95.8,96.29,96.67,97.03,97.39,97.71000000000001,98.06,98.37,99.02,16.56,16.1,15.9,15.69,15.49,15.3,15.09,14.9,14.51,N/A,N/A -2012,12,14,4,30,102390,101170,100000,66.65,0,6.22,6.61,6.69,6.73,6.75,6.76,6.7700000000000005,6.7700000000000005,6.76,101.41,101.44,101.51,101.58,101.68,101.76,101.88,101.99000000000001,102.27,16.87,16.42,16.22,16.01,15.81,15.620000000000001,15.41,15.22,14.83,N/A,N/A -2012,12,14,5,30,102370,101160,99980,67.85,0,6.3100000000000005,6.74,6.84,6.890000000000001,6.93,6.95,6.97,6.98,6.99,101.01,101.69,102.10000000000001,102.47,102.8,103.11,103.42,103.71000000000001,104.31,17.06,16.62,16.41,16.21,16,15.81,15.610000000000001,15.42,15.030000000000001,N/A,N/A -2012,12,14,6,30,102350,101140,99970,68.43,0,6.21,6.66,6.7700000000000005,6.84,6.88,6.91,6.94,6.96,6.99,105.01,105.5,105.77,106,106.22,106.42,106.61,106.78,107.14,17.23,16.81,16.62,16.41,16.21,16.02,15.81,15.620000000000001,15.23,N/A,N/A -2012,12,14,7,30,102350,101140,99970,70.09,0,6.6000000000000005,7.0600000000000005,7.17,7.22,7.26,7.28,7.29,7.3,7.3100000000000005,107.42,107.96000000000001,108.26,108.54,108.79,109.03,109.26,109.48,109.92,17.43,17.02,16.82,16.62,16.42,16.23,16.02,15.83,15.44,N/A,N/A -2012,12,14,8,30,102320,101110,99940,71.48,0,6.72,7.17,7.28,7.32,7.34,7.3500000000000005,7.36,7.36,7.34,110.21000000000001,110.41,110.54,110.67,110.8,110.92,111.05,111.18,111.47,17.56,17.16,16.96,16.76,16.56,16.37,16.17,15.98,15.59,N/A,N/A -2012,12,14,9,30,102300,101090,99920,72.88,0,6.93,7.45,7.58,7.65,7.69,7.72,7.74,7.76,7.78,111.83,112.28,112.55,112.8,113.03,113.24000000000001,113.46000000000001,113.66,114.09,17.82,17.43,17.240000000000002,17.03,16.830000000000002,16.64,16.44,16.25,15.860000000000001,N/A,N/A -2012,12,14,10,30,102280,101080,99910,72.31,0,7.3,7.87,8.01,8.08,8.120000000000001,8.15,8.17,8.19,8.2,114.76,114.99000000000001,115.18,115.38,115.57000000000001,115.76,115.95,116.14,116.56,18.06,17.67,17.48,17.28,17.080000000000002,16.9,16.69,16.51,16.12,N/A,N/A -2012,12,14,11,30,102280,101070,99910,73.81,0,7.29,7.87,8.01,8.08,8.13,8.16,8.18,8.19,8.2,115.76,116.04,116.24000000000001,116.45,116.64,116.82000000000001,117.01,117.19,117.58,18.28,17.91,17.72,17.52,17.32,17.13,16.93,16.740000000000002,16.35,N/A,N/A -2012,12,14,12,30,102270,101070,99910,76.78,0,7.75,8.4,8.57,8.66,8.73,8.77,8.8,8.82,8.85,117.32000000000001,117.66,117.91,118.16,118.4,118.62,118.86,119.08,119.55,18.45,18.080000000000002,17.89,17.69,17.490000000000002,17.31,17.1,16.92,16.53,N/A,N/A -2012,12,14,13,30,102250,101050,99890,79.61,0,7.94,8.66,8.85,8.96,9.040000000000001,9.1,9.14,9.18,9.23,121.52,121.89,122.12,122.35000000000001,122.56,122.75,122.96000000000001,123.14,123.53,18.6,18.240000000000002,18.06,17.86,17.66,17.47,17.27,17.09,16.69,N/A,N/A -2012,12,14,14,30,102240,101040,99880,80.4,0,8.120000000000001,8.86,9.05,9.15,9.22,9.27,9.3,9.32,9.35,127.2,127.26,127.36,127.47,127.58,127.69,127.81,127.93,128.19,18.86,18.51,18.330000000000002,18.13,17.94,17.75,17.55,17.36,16.97,N/A,N/A -2012,12,14,15,30,102190,100990,99830,81.64,0,7.930000000000001,8.620000000000001,8.790000000000001,8.870000000000001,8.93,8.97,8.99,9.01,9.040000000000001,125.94,126.41,126.79,127.18,127.59,127.98,128.42000000000002,128.82,129.77,19.02,18.69,18.51,18.32,18.13,17.94,17.75,17.56,17.19,N/A,N/A -2012,12,14,16,30,102140,100950,99790,83.97,0,8.02,8.8,9.01,9.14,9.23,9.28,9.33,9.36,9.41,127.31,127.60000000000001,127.82000000000001,128.06,128.29,128.51,128.75,128.97,129.45,19.21,18.89,18.71,18.52,18.32,18.14,17.94,17.75,17.37,N/A,N/A -2012,12,14,17,30,102100,100900,99740,84.22,0,8.44,9.3,9.53,9.67,9.75,9.81,9.84,9.86,9.870000000000001,128.3,128.26,128.36,128.48,128.62,128.76,128.93,129.1,129.48,19.47,19.17,19,18.8,18.61,18.42,18.22,18.04,17.650000000000002,N/A,N/A -2012,12,14,18,30,102040,100850,99690,84.09,0,8.25,9.03,9.24,9.36,9.450000000000001,9.51,9.57,9.63,9.790000000000001,129.07,129.57,129.92000000000002,130.3,130.69,131.09,131.58,132.05,133.34,19.68,19.400000000000002,19.240000000000002,19.05,18.87,18.69,18.5,18.330000000000002,17.96,N/A,N/A -2012,12,14,19,30,101970,100780,99630,86.59,0,7.71,8.45,8.67,8.85,9.02,9.200000000000001,9.38,9.55,9.9,121.64,122.08,122.46000000000001,122.99000000000001,123.64,124.37,125.23,126.04,127.96000000000001,19.79,19.53,19.37,19.19,19.02,18.86,18.68,18.51,18.16,N/A,N/A -2012,12,14,20,30,101880,100690,99540,88.64,0,8.38,9.61,10.05,10.18,10.41,10.72,10.99,11.22,11.61,125.24000000000001,126.58,127.46000000000001,128.17000000000002,129.1,130.24,131.5,132.72,134.64000000000001,19.88,19.66,19.51,19.32,19.17,19.04,18.88,18.73,18.43,N/A,N/A -2012,12,14,21,30,101800,100610,99460,86.32000000000001,0,8.76,9.86,10.25,10.55,10.790000000000001,11.01,11.200000000000001,11.370000000000001,11.69,133.71,134,134.22,134.5,134.8,135.11,135.47,135.82,136.68,20.2,20,19.86,19.69,19.53,19.37,19.19,19.03,18.68,N/A,N/A -2012,12,14,22,30,101730,100550,99400,87.17,0,9.16,10.39,10.82,11.17,11.47,11.73,11.96,12.17,12.56,137.28,137.72,138.04,138.42000000000002,138.83,139.24,139.73,140.19,141.29,20.36,20.19,20.06,19.91,19.75,19.59,19.43,19.27,18.94,N/A,N/A -2012,12,14,23,30,101700,100510,99370,87.33,0,9.77,11.09,11.61,12.040000000000001,12.39,12.69,12.96,13.200000000000001,13.6,142.45000000000002,142.77,143,143.24,143.47,143.69,143.95000000000002,144.19,144.83,20.54,20.42,20.31,20.16,20.01,19.86,19.7,19.55,19.22,N/A,N/A -2012,12,15,0,30,101640,100460,99320,88.63,0,8.94,10.3,10.82,11.290000000000001,11.68,12.040000000000001,12.370000000000001,12.68,13.25,147.39000000000001,147.8,148.13,148.53,148.91,149.27,149.64000000000001,149.99,150.65,20.66,20.54,20.44,20.31,20.16,20.02,19.87,19.73,19.41,N/A,N/A -2012,12,15,1,30,101610,100430,99290,88.23,0,8.94,10.33,10.84,11.28,11.66,11.99,12.290000000000001,12.55,13.02,151.73,152.08,152.34,152.68,153.05,153.45000000000002,153.91,154.35,155.45000000000002,20.77,20.68,20.59,20.46,20.34,20.21,20.06,19.92,19.62,N/A,N/A -2012,12,15,2,30,101570,100400,99250,88.63,0,8.85,10.33,10.91,11.4,11.81,12.18,12.51,12.81,13.36,155.21,155.71,156.08,156.35,156.53,156.64000000000001,156.66,156.65,156.45000000000002,20.91,20.85,20.76,20.63,20.5,20.37,20.21,20.06,19.73,N/A,N/A -2012,12,15,3,30,101610,100430,99290,88.2,0,7.18,8.63,9.290000000000001,9.94,10.5,11.01,11.47,11.89,12.66,155.73,156.48,157.09,157.95000000000002,158.82,159.76,160.74,161.69,163.52,20.96,20.95,20.89,20.8,20.7,20.6,20.47,20.36,20.09,N/A,N/A -2012,12,15,4,30,101580,100400,99260,89.97,0,6.63,7.92,8.45,8.950000000000001,9.41,9.85,10.31,10.75,11.66,154.94,156.37,157.5,158.97,160.42000000000002,161.91,163.27,164.53,166.26,20.95,20.95,20.900000000000002,20.830000000000002,20.740000000000002,20.66,20.56,20.46,20.25,N/A,N/A -2012,12,15,5,30,101540,100360,99220,90.74,0,7.55,9.040000000000001,9.64,10.17,10.620000000000001,11.040000000000001,11.43,11.8,12.620000000000001,161.43,162.51,163.29,164.21,165.14000000000001,166.09,167.09,168.02,169.9,20.97,20.990000000000002,20.96,20.89,20.82,20.740000000000002,20.63,20.53,20.29,N/A,N/A -2012,12,15,6,30,101530,100360,99220,90.4,0,7.19,8.68,9.25,9.81,10.27,10.68,11.05,11.39,11.96,164.68,165.62,166.38,167.33,168.27,169.17000000000002,170.07,170.91,172.41,21.03,21.07,21.04,20.990000000000002,20.92,20.830000000000002,20.73,20.63,20.37,N/A,N/A -2012,12,15,7,30,101540,100370,99230,90.27,0,6.37,7.82,8.46,9.09,9.67,10.24,10.81,11.34,12.32,168.73,169.17000000000002,169.53,170.04,170.55,171.1,171.61,172.08,172.78,21,21.07,21.05,21,20.95,20.88,20.8,20.73,20.53,N/A,N/A -2012,12,15,8,30,101520,100350,99210,91.15,0,6.93,8.44,9.08,9.67,10.17,10.61,11,11.34,11.870000000000001,170.85,171.47,172.01,172.67000000000002,173.28,173.86,174.4,174.91,175.83,21.07,21.16,21.16,21.13,21.080000000000002,21.01,20.92,20.82,20.56,N/A,N/A -2012,12,15,9,30,101500,100330,99190,90.89,0,7.1000000000000005,8.66,9.34,10.01,10.59,11.120000000000001,11.64,12.13,13.02,170.22,171.06,171.77,172.84,173.97,175.20000000000002,176.43,177.6,179.51,21.09,21.19,21.2,21.18,21.16,21.12,21.07,21.02,20.87,N/A,N/A -2012,12,15,10,30,101500,100320,99190,92.92,0,5.91,7.55,8.31,9.05,9.700000000000001,10.28,10.790000000000001,11.26,12.18,167.1,169.32,170.96,172.84,174.44,175.87,177.02,178.01,179.8,20.94,21.1,21.150000000000002,21.17,21.16,21.13,21.07,21,20.830000000000002,N/A,N/A -2012,12,15,11,30,101500,100320,99190,92.44,0,6.58,8.22,8.97,9.75,10.450000000000001,11.120000000000001,11.73,12.3,13.200000000000001,173.18,174.31,175.24,176.51,177.73,178.98,180.01,180.9,181.85,21.06,21.2,21.240000000000002,21.25,21.25,21.23,21.18,21.13,20.92,N/A,N/A -2012,12,15,12,30,101500,100320,99190,93,0,5.83,7.51,8.35,9.22,10.01,10.77,11.370000000000001,11.88,12.72,171.48,173.42000000000002,174.89000000000001,176.74,178.42000000000002,180.01,181.39000000000001,182.62,185.24,20.96,21.16,21.240000000000002,21.29,21.32,21.35,21.32,21.29,21.11,N/A,N/A -2012,12,15,13,30,101480,100310,99170,92.99,0,6.0200000000000005,7.72,8.55,9.43,10.24,11.02,11.71,12.34,13.25,170.98,172.86,174.28,176.01,177.56,179.03,180.25,181.32,182.76,20.96,21.16,21.23,21.31,21.36,21.39,21.36,21.32,21.09,N/A,N/A -2012,12,15,14,30,101490,100320,99180,93.11,0,5.67,7.32,8.11,8.9,9.6,10.23,10.77,11.25,11.81,173.18,174.99,176.34,177.82,179.1,180.24,181.16,181.94,183,20.96,21.150000000000002,21.21,21.26,21.28,21.29,21.26,21.23,21.02,N/A,N/A -2012,12,15,15,30,101500,100330,99190,93.45,0,5.1000000000000005,6.74,7.5600000000000005,8.4,9.15,9.82,10.38,10.88,11.56,171.19,173.08,174.5,176.11,177.57,178.96,180.14000000000001,181.21,183.19,20.96,21.14,21.21,21.26,21.28,21.29,21.25,21.21,21.03,N/A,N/A -2012,12,15,16,30,101490,100320,99180,93.48,0,4.96,6.5,7.28,8.13,8.870000000000001,9.55,10.1,10.58,11.28,177.67000000000002,178.85,179.88,181.32,182.75,184.21,185.52,186.71,188.19,21.02,21.17,21.23,21.27,21.3,21.3,21.27,21.240000000000002,21.07,N/A,N/A -2012,12,15,17,30,101480,100300,99170,95.54,0,3.46,4.84,5.55,6.33,7.13,8.02,8.61,9.03,9.88,170.53,173.46,175.72,178.15,180.76,183.72,185.5,186.67000000000002,188.42000000000002,20.96,21.080000000000002,21.13,21.18,21.22,21.26,21.23,21.18,21.04,N/A,N/A -2012,12,15,18,30,101470,100290,99160,96.26,0,3.25,4.43,5.09,5.86,6.73,7.7700000000000005,8.35,8.700000000000001,9.39,162.33,167.09,170.68,174.51,177.71,180.54,181.98,182.76,184.06,20.990000000000002,21.06,21.11,21.17,21.21,21.23,21.2,21.150000000000002,21.01,N/A,N/A -2012,12,15,19,30,101440,100260,99130,95.03,0,3.7600000000000002,4.9,5.51,6.3100000000000005,7.04,7.75,8.370000000000001,8.94,9.38,163.61,167,169.63,172.96,176.01,178.92000000000002,180.78,182.17000000000002,183.38,21.19,21.2,21.22,21.26,21.28,21.3,21.29,21.28,21.1,N/A,N/A -2012,12,15,20,30,101400,100230,99090,94.95,0,4.32,5.53,6.07,6.67,7.28,7.94,8.63,9.32,9.8,159.17000000000002,162.33,164.96,168.71,171.86,174.69,177.78,180.88,182.85,21.17,21.240000000000002,21.25,21.27,21.29,21.3,21.32,21.34,21.17,N/A,N/A -2012,12,15,21,30,101360,100190,99060,94.01,0,4.46,5.98,6.71,7.46,8.18,8.93,9.63,10.290000000000001,10.72,164.44,166.81,168.83,171.59,174.25,176.98,179.62,182.13,183.65,21.01,21.22,21.32,21.39,21.44,21.47,21.490000000000002,21.5,21.38,N/A,N/A -2012,12,15,22,30,101320,100150,99020,92.56,0,5.95,7.62,8.42,9.3,10.06,10.72,11.19,11.56,11.93,163.69,166.01,167.88,170.39000000000001,172.68,174.86,176.85,178.65,180.46,21.14,21.39,21.490000000000002,21.57,21.650000000000002,21.71,21.72,21.71,21.57,N/A,N/A -2012,12,15,23,30,101280,100110,98980,92.02,0,7.51,9.43,10.34,11.22,11.86,12.3,12.540000000000001,12.69,12.870000000000001,166.65,168.39000000000001,169.73,171.39000000000001,173,174.61,176.06,177.36,178.74,21.19,21.5,21.650000000000002,21.82,21.92,21.97,21.94,21.900000000000002,21.69,N/A,N/A -2012,12,16,0,30,101290,100120,98990,91.91,0,7.640000000000001,9.450000000000001,10.290000000000001,11.15,11.9,12.58,13.1,13.530000000000001,13.68,166.12,167.8,169.11,170.78,172.32,173.83,175.16,176.35,178.19,21.21,21.45,21.56,21.68,21.77,21.84,21.85,21.830000000000002,21.64,N/A,N/A -2012,12,16,1,30,101290,100120,98990,92.17,0,6.97,8.73,9.57,10.47,11.25,11.96,12.51,12.96,13.43,171.18,172.23,173.12,174.45000000000002,175.72,177,178.07,179.01,180.55,21.18,21.400000000000002,21.5,21.63,21.740000000000002,21.84,21.86,21.84,21.61,N/A,N/A -2012,12,16,2,30,101290,100120,98990,91.73,0,6.68,8.44,9.27,10.11,10.83,11.49,12.01,12.450000000000001,12.71,168.78,169.71,170.47,171.54,172.57,173.61,174.71,175.78,177.79,21.28,21.54,21.650000000000002,21.75,21.82,21.85,21.830000000000002,21.8,21.64,N/A,N/A -2012,12,16,3,30,101260,100090,98960,92.08,0,6.91,8.64,9.450000000000001,10.26,10.97,11.61,12.08,12.450000000000001,12.88,169.36,170.48,171.5,173.08,174.63,176.25,177.63,178.84,181.11,21.19,21.42,21.52,21.63,21.71,21.77,21.8,21.81,21.78,N/A,N/A -2012,12,16,4,30,101220,100050,98920,92.75,0,6.5600000000000005,8.25,9.08,10.02,10.86,11.67,12.41,13.09,14.16,169.25,171.89000000000001,173.73,175.64000000000001,177.14000000000001,178.34,179.42000000000002,180.41,181.94,21.03,21.28,21.38,21.46,21.5,21.5,21.48,21.46,21.36,N/A,N/A -2012,12,16,5,30,101180,100010,98880,90.84,0,8.78,10.63,11.43,12.19,12.83,13.41,13.9,14.33,14.93,175.78,176.35,176.84,177.54,178.31,179.19,180.14000000000001,181.08,182.69,21.44,21.62,21.66,21.68,21.68,21.68,21.650000000000002,21.61,21.44,N/A,N/A -2012,12,16,6,30,101190,100020,98890,91.35000000000001,0,8.34,10.14,10.950000000000001,11.76,12.46,13.1,13.69,14.22,15.05,180.72,181.47,182.09,182.94,183.78,184.69,185.6,186.48,187.88,21.57,21.73,21.77,21.79,21.8,21.81,21.79,21.77,21.650000000000002,N/A,N/A -2012,12,16,7,30,101180,100010,98880,91.77,0,7.97,9.69,10.44,11.16,11.790000000000001,12.38,12.86,13.280000000000001,13.75,180.79,181.83,182.71,183.86,184.96,186.07,187.12,188.09,189.92000000000002,21.48,21.63,21.67,21.69,21.71,21.72,21.72,21.71,21.6,N/A,N/A -2012,12,16,8,30,101150,99980,98850,92.38,0,7.38,9.06,9.85,10.66,11.38,12.07,12.63,13.11,13.620000000000001,183.25,184.61,185.69,187.1,188.31,189.38,190.14000000000001,190.72,191.26,21.34,21.490000000000002,21.54,21.57,21.6,21.62,21.61,21.6,21.41,N/A,N/A -2012,12,16,9,30,101110,99950,98810,92.49,0,7.21,8.84,9.56,10.23,10.8,11.3,11.72,12.08,12.76,182.48,183.55,184.39000000000001,185.48,186.46,187.39000000000001,188.21,188.92000000000002,190.14000000000001,21.32,21.48,21.53,21.56,21.57,21.56,21.52,21.47,21.3,N/A,N/A -2012,12,16,10,30,101100,99930,98800,92.28,0,7.15,8.790000000000001,9.56,10.27,10.89,11.450000000000001,11.97,12.450000000000001,13.31,189.29,189.49,189.67000000000002,189.98,190.32,190.70000000000002,191.07,191.41,192.1,21.36,21.48,21.51,21.5,21.490000000000002,21.46,21.41,21.36,21.19,N/A,N/A -2012,12,16,11,30,101100,99930,98800,92.55,0,6.11,7.75,8.540000000000001,9.31,9.97,10.57,11.1,11.58,12.35,197.4,197.26,197.12,197,196.94,196.94,197.01,197.11,197.36,21.31,21.45,21.48,21.46,21.43,21.38,21.31,21.240000000000002,21.05,N/A,N/A -2012,12,16,12,30,101080,99920,98780,92.66,0,6.74,8.33,9.05,9.77,10.39,10.94,11.44,11.88,12.56,197.8,198.03,198.19,198.38,198.56,198.75,199.01,199.28,200.17000000000002,21.27,21.37,21.39,21.37,21.34,21.29,21.240000000000002,21.17,21.01,N/A,N/A -2012,12,16,13,30,101090,99920,98790,92.81,0,6.5200000000000005,8.05,8.78,9.5,10.16,10.83,11.47,12.08,13.16,195.83,196.84,197.66,198.65,199.52,200.35,201.01,201.58,202.28,21.25,21.36,21.39,21.37,21.35,21.32,21.28,21.25,21.12,N/A,N/A -2012,12,16,14,30,101050,99880,98750,91.17,0,9.16,11.1,11.94,12.75,13.450000000000001,14.06,14.57,15.01,15.69,187.20000000000002,188.53,189.52,190.71,191.77,192.78,193.69,194.52,196.11,21.61,21.77,21.8,21.82,21.81,21.79,21.740000000000002,21.68,21.490000000000002,N/A,N/A -2012,12,16,15,30,101040,99880,98750,91.15,0,9.18,11,11.81,12.63,13.34,14.01,14.61,15.15,16.03,191.15,191.86,192.43,193.21,193.98000000000002,194.82,195.70000000000002,196.57,198.45000000000002,21.57,21.68,21.68,21.67,21.64,21.61,21.57,21.53,21.42,N/A,N/A -2012,12,16,16,30,101010,99840,98710,90.22,0,10.36,12.19,13,13.76,14.4,14.99,15.540000000000001,16.05,16.96,190.18,190.68,191.08,191.62,192.16,192.74,193.39000000000001,194.07,195.64000000000001,21.68,21.8,21.81,21.77,21.73,21.66,21.59,21.52,21.34,N/A,N/A -2012,12,16,17,30,101120,99930,98790,94.93,96.30000000000001,9.89,10.92,11.370000000000001,11.82,12.38,12.98,13.64,14.23,14.98,289.16,289.57,290.28000000000003,291.23,292.59000000000003,294.14,295.68,297.04,298.6,18.96,18.650000000000002,18.51,18.37,18.26,18.16,18.07,17.98,17.830000000000002,N/A,N/A -2012,12,16,18,30,101140,99960,98810,94.76,115.4,5.87,6.3100000000000005,6.51,6.71,7.05,7.53,8.45,9.56,10.77,290.88,291.74,292.12,292.79,293.68,294.84000000000003,296.06,297.33,299.27,18.66,18.330000000000002,18.17,17.990000000000002,17.84,17.71,17.64,17.61,17.66,N/A,N/A -2012,12,16,19,30,101170,99980,98840,95.51,33.300000000000004,4.37,4.76,4.98,5.45,6.05,6.78,7.23,7.58,8.27,282.44,281.94,283.87,287.77,291.44,295.11,297.29,299.01,301.57,18.59,18.29,18.16,18.05,18.02,18.05,18.03,18.02,17.88,N/A,N/A -2012,12,16,20,30,101040,99850,98710,94.57000000000001,9.9,0.5700000000000001,0.58,0.71,1.32,1.9000000000000001,2.27,2.56,2.81,3.3200000000000003,64.23,55.910000000000004,41.61,0.55,332.3,326.57,321.67,317.18,309.12,18.72,18.43,18.3,18.22,18.14,18.05,17.92,17.81,17.54,N/A,N/A -2012,12,16,21,30,101020,99840,98700,93.05,0,1.11,1.04,0.75,0.29,0.39,1.28,1.9100000000000001,2.19,2.66,110.99000000000001,109.33,79.33,21.63,1.02,319.76,298.71,297.32,294.72,18.92,18.64,18.5,18.38,18.35,18.39,18.28,18.14,17.81,N/A,N/A -2012,12,16,22,30,101000,99820,98670,90.36,0,2.22,2.2,2.0100000000000002,1.6300000000000001,1.56,1.69,1.9000000000000001,2.13,2.73,155.77,157.79,168.58,197.12,213.73000000000002,225.87,233.83,240.63,248.68,19.25,18.96,18.84,18.8,18.72,18.59,18.45,18.31,18.05,N/A,N/A -2012,12,16,23,30,100950,99770,98630,92.84,0,4.17,4.18,4.04,3.79,3.73,3.81,3.95,4.1,4.55,149.92000000000002,152.25,157.43,172.34,183.1,191.71,198.98000000000002,205.47,216.43,19.22,18.95,18.84,18.82,18.76,18.67,18.61,18.55,18.44,N/A,N/A -2012,12,17,0,30,100980,99810,98660,93.03,0,5.41,5.6000000000000005,5.57,5.46,5.38,5.3100000000000005,5.26,5.21,5.19,159.93,161.02,163.09,169.54,174.72,179.18,183.57,187.64000000000001,196.02,19.48,19.22,19.080000000000002,18.98,18.91,18.86,18.8,18.75,18.64,N/A,N/A -2012,12,17,1,30,100960,99790,98650,93.48,0,5.04,5.2,5.12,4.93,4.8,4.71,4.67,4.65,4.76,160.59,162.49,165.77,174.41,180.86,186,191.6,196.94,207.15,19.52,19.27,19.18,19.19,19.22,19.27,19.330000000000002,19.39,19.46,N/A,N/A -2012,12,17,2,30,101000,99820,98680,93.47,0,4.83,5.1000000000000005,5.13,5.16,5.0600000000000005,4.86,4.7700000000000005,4.73,4.75,164.14000000000001,164.76,165.96,169.53,174.3,180.18,185.67000000000002,190.64000000000001,201.17000000000002,19.67,19.400000000000002,19.26,19.11,19.09,19.17,19.2,19.21,19.23,N/A,N/A -2012,12,17,3,30,101020,99840,98700,94.16,0,4.51,4.76,4.79,4.8100000000000005,4.74,4.57,4.47,4.4,4.3500000000000005,168.8,169.39000000000001,170.5,173.93,179.14000000000001,186.23,192.42000000000002,197.85,208.72,19.69,19.43,19.28,19.13,19.080000000000002,19.13,19.19,19.25,19.400000000000002,N/A,N/A -2012,12,17,4,30,101010,99830,98690,95.27,0,3.5100000000000002,3.85,3.98,4.08,4.16,4.21,4.2700000000000005,4.32,4.42,179.97,182.66,185.20000000000002,189.79,194.3,198.93,204,208.88,218.38,19.830000000000002,19.61,19.490000000000002,19.38,19.32,19.29,19.32,19.37,19.42,N/A,N/A -2012,12,17,5,30,101020,99850,98710,96.08,0,2.75,3.16,3.34,3.58,3.8000000000000003,4.0200000000000005,4.17,4.2700000000000005,4.45,192.06,194.76,197.89000000000001,204.5,211.72,219.97,225.17000000000002,228.92000000000002,235.94,19.95,19.740000000000002,19.650000000000002,19.6,19.6,19.64,19.67,19.7,19.650000000000002,N/A,N/A -2012,12,17,6,30,101040,99870,98730,96.69,0,2.35,2.81,3.0700000000000003,3.52,3.84,4,4.17,4.32,4.6000000000000005,206.5,210.13,214.94,227.28,235.31,239.09,242.62,245.9,251.59,20.02,19.84,19.77,19.8,19.8,19.77,19.76,19.76,19.69,N/A,N/A -2012,12,17,7,30,101080,99900,98760,96.18,0,2.82,3.5,3.8200000000000003,4.17,4.48,4.7700000000000005,4.91,4.99,5.14,235.92000000000002,238.42000000000002,241.26,247.54,253.24,258.79,261.35,262.47,264.47,20.22,20.11,20.06,20.03,20,19.95,19.86,19.76,19.47,N/A,N/A -2012,12,17,8,30,101070,99900,98760,95.95,0,3.63,4.42,4.7700000000000005,5.09,5.36,5.61,5.8,5.96,6.16,256.65,257.38,258.07,259.13,260.2,261.37,262.54,263.65,267.35,20.3,20.150000000000002,20.05,19.900000000000002,19.76,19.6,19.45,19.3,19.150000000000002,N/A,N/A -2012,12,17,9,30,101080,99910,98770,92.77,0,5.73,6.44,6.72,6.95,7.13,7.26,7.3100000000000005,7.3100000000000005,7.44,266.27,266.29,266.33,266.43,266.93,267.95,270.27,273.09000000000003,277.57,20.28,20.1,20,19.91,19.91,20.02,20.21,20.44,20.67,N/A,N/A -2012,12,17,10,30,101100,99930,98790,92.18,0,7.17,8.05,8.38,8.56,8.84,9.21,9.51,9.76,9.950000000000001,277.57,277.64,277.65000000000003,277.81,278.14,278.65000000000003,280.02,281.65000000000003,284.31,20.06,19.84,19.71,19.59,19.6,19.73,20.07,20.45,20.82,N/A,N/A -2012,12,17,11,30,101160,99970,98830,95.01,0,7.79,8.4,8.58,8.76,9.09,9.59,10.46,11.450000000000001,12.280000000000001,296.17,296.16,296.13,296.09000000000003,296.05,295.99,296.04,296.12,296.58,18.66,18.31,18.150000000000002,17.97,17.82,17.67,17.68,17.73,18.580000000000002,N/A,N/A -2012,12,17,12,30,101190,100000,98860,76.64,0,8.16,8.76,8.950000000000001,9.21,10.02,11.5,12.3,12.780000000000001,13.6,293.95,294.26,294.54,295.11,296.57,299.16,300.66,301.59000000000003,303.11,19.34,19.080000000000002,18.95,18.84,18.900000000000002,19.13,19.32,19.490000000000002,19.84,N/A,N/A -2012,12,17,13,30,101200,100010,98860,63.980000000000004,0,9.78,10.67,10.950000000000001,11.25,11.8,12.6,13.36,14.07,14.26,296.73,296.58,296.5,296.37,296.26,296.15000000000003,295.95,295.73,294.74,19.36,19.09,18.97,18.84,18.79,18.8,18.92,19.07,19.3,N/A,N/A -2012,12,17,14,30,101240,100050,98890,63.24,0,10.14,10.96,11.16,11.25,11.31,11.35,11.39,11.44,11.69,295.32,295.53000000000003,295.63,295.77,295.93,296.1,296.37,296.65000000000003,297.86,18,17.6,17.41,17.21,17.03,16.85,16.67,16.51,16.2,N/A,N/A -2012,12,17,15,30,101260,100060,98900,65.38,0,8.78,9.41,9.57,9.64,9.700000000000001,9.74,9.81,9.88,10.49,306.85,307.09000000000003,307.24,307.42,307.63,307.85,308.17,308.51,310.19,17.2,16.77,16.580000000000002,16.38,16.2,16.02,15.85,15.69,15.48,N/A,N/A -2012,12,17,16,30,101270,100070,98910,63.65,0,7.890000000000001,8.49,8.65,8.73,8.790000000000001,8.84,8.89,8.94,9.08,313.29,313.34000000000003,313.33,313.31,313.31,313.31,313.31,313.32,313.45,17.59,17.17,16.98,16.78,16.59,16.4,16.21,16.03,15.66,N/A,N/A -2012,12,17,17,30,101280,100090,98930,56.27,0,7.01,7.49,7.61,7.67,7.72,7.76,7.8100000000000005,7.87,8.24,309.40000000000003,309.08,308.90000000000003,308.7,308.51,308.32,308.09000000000003,307.87,307.48,18.06,17.7,17.52,17.330000000000002,17.150000000000002,16.97,16.8,16.64,16.38,N/A,N/A -2012,12,17,18,30,101300,100110,98950,52.33,0,6.9,7.4,7.5200000000000005,7.57,7.6000000000000005,7.62,7.62,7.62,7.61,313.82,312.91,312.27,311.63,311.02,310.43,309.83,309.26,308.01,18.78,18.45,18.28,18.080000000000002,17.89,17.71,17.52,17.34,16.96,N/A,N/A -2012,12,17,19,30,101280,100090,98940,49.07,0,6.88,7.44,7.58,7.67,7.73,7.7700000000000005,7.8,7.82,7.86,303.85,303.57,303.36,303.15000000000003,302.96,302.8,302.63,302.48,302.18,19.11,18.81,18.64,18.44,18.25,18.06,17.87,17.68,17.3,N/A,N/A -2012,12,17,20,30,101270,100090,98930,46.93,0,6.72,7.32,7.49,7.59,7.66,7.71,7.75,7.79,7.84,302.06,301.8,301.65000000000003,301.5,301.37,301.25,301.13,301.02,300.83,19.48,19.2,19.03,18.84,18.650000000000002,18.47,18.27,18.080000000000002,17.7,N/A,N/A -2012,12,17,21,30,101290,100110,98950,45.28,0,6.55,7.11,7.25,7.33,7.38,7.42,7.45,7.47,7.5,306.43,306.15000000000003,305.96,305.76,305.58,305.41,305.24,305.09000000000003,304.78000000000003,19.62,19.35,19.18,18.990000000000002,18.8,18.62,18.42,18.240000000000002,17.85,N/A,N/A -2012,12,17,22,30,101300,100110,98950,43.230000000000004,0,6.65,7.23,7.37,7.45,7.5,7.54,7.57,7.59,7.62,302.75,302.75,302.73,302.7,302.67,302.64,302.6,302.57,302.49,19.59,19.32,19.150000000000002,18.96,18.77,18.580000000000002,18.39,18.2,17.81,N/A,N/A -2012,12,17,23,30,101330,100140,98980,47.71,0,6.61,7.12,7.24,7.29,7.32,7.34,7.3500000000000005,7.36,7.3500000000000005,301.52,301.14,300.93,300.73,300.56,300.39,300.23,300.08,299.78000000000003,19.27,18.97,18.79,18.6,18.400000000000002,18.22,18.02,17.830000000000002,17.44,N/A,N/A -2012,12,18,0,30,101360,100170,99010,47.28,0,6.8100000000000005,7.3,7.4,7.45,7.47,7.47,7.47,7.46,7.43,295.82,295.83,295.84000000000003,295.84000000000003,295.84000000000003,295.84000000000003,295.85,295.85,295.88,18.88,18.55,18.37,18.17,17.98,17.79,17.59,17.41,17.02,N/A,N/A -2012,12,18,1,30,101380,100190,99030,46.67,0,5.9,6.32,6.43,6.48,6.5200000000000005,6.54,6.5600000000000005,6.58,6.62,299.07,298.73,298.49,298.25,298.02,297.8,297.57,297.35,296.88,18.84,18.52,18.34,18.150000000000002,17.96,17.78,17.59,17.41,17.03,N/A,N/A -2012,12,18,2,30,101400,100210,99050,50.13,0,4.54,4.79,4.84,4.87,4.88,4.9,4.92,4.94,5.11,292.1,291.87,291.71,291.55,291.40000000000003,291.25,291.1,290.97,290.93,18.63,18.3,18.13,17.94,17.75,17.57,17.39,17.22,16.89,N/A,N/A -2012,12,18,3,30,101420,100230,99070,51.78,0,3.65,3.8000000000000003,3.8200000000000003,3.83,3.89,3.96,4.37,4.78,4.83,297.43,296.96,296.6,296.13,295.36,294.42,292.11,289.75,288.31,18.650000000000002,18.35,18.19,18.02,17.88,17.77,17.91,18.05,17.76,N/A,N/A -2012,12,18,4,30,101430,100230,99080,52.83,0,2.71,2.83,2.84,2.86,2.9,2.95,3.5100000000000002,4.16,4.67,282.27,281.72,281.34000000000003,280.86,280.18,279.40000000000003,277.06,274.56,273.63,18.68,18.37,18.2,18.02,17.86,17.71,17.84,17.990000000000002,18.05,N/A,N/A -2012,12,18,5,30,101440,100240,99090,54.64,0,1.92,2.02,2.05,2.07,2.1,2.14,2.22,2.34,3.63,257.35,256.82,256.51,256.19,255.87,255.58,255.49,255.74,262.44,18.86,18.55,18.38,18.19,18.01,17.830000000000002,17.66,17.52,17.64,N/A,N/A -2012,12,18,6,30,101450,100260,99110,55.61,0,1.94,2.08,2.12,2.15,2.19,2.23,2.31,2.43,3.38,230.97,230.9,230.95000000000002,231.06,231.27,231.53,232.59,234.21,248.11,19.16,18.87,18.71,18.52,18.330000000000002,18.150000000000002,17.98,17.84,17.89,N/A,N/A -2012,12,18,7,30,101460,100270,99120,55.17,0,2.5,2.69,2.73,2.77,2.8000000000000003,2.84,2.91,3.0100000000000002,3.8200000000000003,215.28,215.74,216.1,216.51,217.01,217.54,218.68,220.4,236.16,19.51,19.25,19.080000000000002,18.900000000000002,18.71,18.54,18.36,18.21,18.21,N/A,N/A -2012,12,18,8,30,101450,100260,99110,56.09,0,3.52,3.77,3.8200000000000003,3.84,3.85,3.87,3.89,3.91,4.1,214.58,214.82,215,215.18,215.39000000000001,215.6,215.94,216.34,220.97,19.76,19.51,19.35,19.17,18.98,18.8,18.61,18.44,18.2,N/A,N/A -2012,12,18,9,30,101450,100260,99110,61.6,0,4.13,4.39,4.42,4.42,4.41,4.39,4.36,4.34,4.46,199.27,199.45000000000002,199.64000000000001,199.84,200.08,200.34,200.51,201.20000000000002,215.04,19.69,19.44,19.27,19.080000000000002,18.900000000000002,18.72,18.52,18.35,18.44,N/A,N/A -2012,12,18,10,30,101460,100270,99120,63.81,0,5.33,5.74,5.82,5.8500000000000005,5.86,5.87,5.87,5.87,5.89,191.8,192.01,192.15,192.29,192.42000000000002,192.55,192.70000000000002,192.83,193.11,19.71,19.45,19.29,19.1,18.91,18.73,18.54,18.36,17.97,N/A,N/A -2012,12,18,11,30,101460,100270,99120,65.56,0,6.3,6.82,6.93,6.98,7,7.01,7,6.99,6.96,193.89000000000001,194.12,194.26,194.4,194.54,194.67000000000002,194.83,194.98000000000002,195.4,19.830000000000002,19.59,19.43,19.25,19.06,18.88,18.69,18.51,18.14,N/A,N/A -2012,12,18,12,30,101460,100270,99120,67.47,0,6.7,7.3,7.43,7.49,7.53,7.55,7.55,7.5600000000000005,7.55,191.38,191.61,191.77,191.93,192.09,192.24,192.42000000000002,192.59,193.06,19.92,19.68,19.52,19.34,19.16,18.98,18.79,18.61,18.240000000000002,N/A,N/A -2012,12,18,13,30,101470,100280,99130,65.86,0,6.33,6.87,6.99,7.05,7.09,7.12,7.15,7.19,7.48,187.88,188.11,188.28,188.47,188.68,188.91,189.23,189.57,191.82,20.14,19.93,19.79,19.62,19.44,19.27,19.1,18.94,18.68,N/A,N/A -2012,12,18,14,30,101480,100300,99150,68.79,0,6.6000000000000005,7.18,7.32,7.41,7.48,7.54,7.640000000000001,7.74,8.120000000000001,187.41,187.55,187.66,187.8,187.99,188.20000000000002,188.68,189.28,194.38,20.2,20,19.87,19.69,19.53,19.37,19.21,19.080000000000002,19.05,N/A,N/A -2012,12,18,15,30,101490,100300,99150,70.83,0,6.7,7.49,7.75,7.94,8.09,8.21,8.31,8.4,8.58,188.94,189.18,189.37,189.59,189.83,190.09,190.44,190.78,191.88,20.32,20.16,20.03,19.88,19.72,19.57,19.400000000000002,19.25,18.92,N/A,N/A -2012,12,18,16,30,101480,100290,99150,71.87,0,6.13,6.9,7.16,7.38,7.57,7.73,7.88,8.02,8.290000000000001,190.63,190.87,191.04,191.27,191.52,191.79,192.16,192.52,193.69,20.48,20.330000000000002,20.21,20.06,19.91,19.77,19.61,19.46,19.16,N/A,N/A -2012,12,18,17,30,101470,100290,99140,72.82000000000001,0,6.4,7.25,7.55,7.79,8,8.18,8.34,8.48,8.73,190.4,190.62,190.79,190.98,191.17000000000002,191.36,191.57,191.77,192.27,20.59,20.46,20.35,20.2,20.06,19.91,19.75,19.6,19.28,N/A,N/A -2012,12,18,18,30,101470,100290,99140,73.10000000000001,0,6.5,7.43,7.76,8.040000000000001,8.290000000000001,8.49,8.68,8.85,9.14,191.16,191.6,191.86,192.16,192.44,192.71,192.96,193.21,193.66,20.72,20.61,20.51,20.37,20.23,20.09,19.93,19.79,19.47,N/A,N/A -2012,12,18,19,30,101460,100280,99140,74.8,0,5.67,6.6000000000000005,6.96,7.28,7.55,7.8100000000000005,8.040000000000001,8.26,8.68,192.87,193.04,193.19,193.37,193.52,193.67000000000002,193.8,193.93,194.19,20.81,20.75,20.67,20.57,20.45,20.34,20.22,20.1,19.84,N/A,N/A -2012,12,18,20,30,101430,100250,99110,75.35000000000001,0,5.44,6.37,6.72,7.0200000000000005,7.28,7.5,7.68,7.84,8.1,185.5,185.99,186.42000000000002,186.93,187.43,187.94,188.49,188.99,190.14000000000001,20.82,20.76,20.69,20.580000000000002,20.47,20.35,20.21,20.09,19.8,N/A,N/A -2012,12,18,21,30,101390,100210,99070,75.57000000000001,0,5.59,6.6000000000000005,6.99,7.3500000000000005,7.66,7.94,8.19,8.41,8.8,180.95000000000002,181.52,181.94,182.44,182.95000000000002,183.47,184.01,184.52,185.53,20.79,20.76,20.7,20.61,20.51,20.41,20.29,20.17,19.900000000000002,N/A,N/A -2012,12,18,22,30,101360,100180,99040,77.72,0,5.75,6.82,7.25,7.65,8,8.3,8.58,8.83,9.26,178.9,179.52,180,180.58,181.15,181.73,182.35,182.93,184.1,20.740000000000002,20.72,20.67,20.580000000000002,20.490000000000002,20.39,20.27,20.16,19.91,N/A,N/A -2012,12,18,23,30,101330,100150,99010,78.89,0,5.5,6.62,7.09,7.54,7.94,8.32,8.65,8.950000000000001,9.4,170.91,171.91,172.63,173.48,174.23,174.94,175.51,176.01,176.74,20.740000000000002,20.77,20.75,20.72,20.67,20.62,20.54,20.46,20.21,N/A,N/A -2012,12,19,0,30,101340,100160,99020,79.11,0,6.29,7.43,7.88,8.3,8.68,9.02,9.35,9.65,10.24,170.87,171.34,171.68,172.08,172.48,172.89000000000001,173.34,173.77,174.74,20.740000000000002,20.72,20.66,20.580000000000002,20.5,20.42,20.32,20.240000000000002,20.03,N/A,N/A -2012,12,19,1,30,101330,100150,99010,80.15,0,6.5,7.74,8.26,8.75,9.200000000000001,9.620000000000001,10.01,10.370000000000001,10.96,167.01,167.95000000000002,168.65,169.49,170.27,171.01,171.64000000000001,172.19,172.64000000000001,20.81,20.81,20.78,20.72,20.66,20.6,20.52,20.44,20.21,N/A,N/A -2012,12,19,2,30,101330,100150,99010,80.77,0,6.79,8.11,8.64,9.16,9.6,10,10.35,10.66,11.13,166.8,167.32,167.76,168.34,168.95000000000002,169.59,170.21,170.79,171.58,20.85,20.86,20.830000000000002,20.78,20.72,20.650000000000002,20.57,20.490000000000002,20.26,N/A,N/A -2012,12,19,3,30,101320,100140,99010,81.68,0,7.12,8.44,8.96,9.47,9.92,10.33,10.72,11.09,11.8,167.67000000000002,168.15,168.49,168.94,169.42000000000002,169.91,170.47,171,172.08,20.89,20.88,20.830000000000002,20.76,20.69,20.61,20.52,20.44,20.23,N/A,N/A -2012,12,19,4,30,101300,100130,98990,83.07000000000001,0,6.78,8.15,8.72,9.26,9.74,10.18,10.61,11,11.78,167.93,168.41,168.78,169.22,169.62,170,170.28,170.52,170.53,20.91,20.94,20.91,20.86,20.81,20.75,20.67,20.6,20.39,N/A,N/A -2012,12,19,5,30,101290,100120,98980,83.43,0,7.26,8.69,9.290000000000001,9.86,10.370000000000001,10.84,11.28,11.68,12.39,166.05,166.71,167.21,167.83,168.45000000000002,169.08,169.68,170.22,170.96,20.95,20.97,20.95,20.91,20.86,20.81,20.740000000000002,20.67,20.5,N/A,N/A -2012,12,19,6,30,101300,100130,98990,84.9,0,7.47,8.91,9.5,10.07,10.57,11.05,11.5,11.92,12.68,165.98,166.62,167.14000000000001,167.78,168.45000000000002,169.14000000000001,169.85,170.52,171.64000000000001,21.01,21.01,20.98,20.92,20.86,20.8,20.73,20.66,20.47,N/A,N/A -2012,12,19,7,30,101300,100120,98990,85.2,0,7.890000000000001,9.46,10.1,10.72,11.26,11.77,12.24,12.67,13.41,164.73,165.39000000000001,165.87,166.44,167.04,167.65,168.28,168.86,169.83,21.13,21.14,21.11,21.04,20.97,20.89,20.79,20.7,20.45,N/A,N/A -2012,12,19,8,30,101270,100100,98960,87.83,0,8.22,9.8,10.43,11.01,11.52,11.99,12.42,12.81,13.49,163.26,163.67000000000002,164.01,164.48,164.99,165.56,166.26,166.95000000000002,168.70000000000002,21.14,21.16,21.12,21.07,21,20.94,20.87,20.8,20.650000000000002,N/A,N/A -2012,12,19,9,30,101250,100080,98940,86.7,0,8.17,9.790000000000001,10.44,11.06,11.61,12.11,12.57,13,13.75,166.61,167.28,167.77,168.4,169.06,169.72,170.4,171.04,172.17000000000002,21.3,21.36,21.35,21.3,21.240000000000002,21.18,21.1,21.01,20.8,N/A,N/A -2012,12,19,10,30,101220,100040,98910,90.36,0,8.06,9.77,10.49,11.18,11.790000000000001,12.35,12.870000000000001,13.34,14.17,158.98,159.64000000000001,160.16,160.85,161.58,162.33,163.12,163.87,165.32,21.240000000000002,21.29,21.28,21.240000000000002,21.19,21.14,21.07,21,20.8,N/A,N/A -2012,12,19,11,30,101190,100020,98890,92.76,0,8.18,9.9,10.61,11.31,11.93,12.5,13.01,13.48,14.25,159.67000000000002,160.46,161.01,161.73,162.48,163.25,164.08,164.87,166.5,21.23,21.29,21.28,21.25,21.21,21.16,21.1,21.03,20.85,N/A,N/A -2012,12,19,12,30,101180,100010,98880,93,0,7.79,9.51,10.24,10.94,11.55,12.11,12.6,13.040000000000001,13.75,159.38,160.29,161,161.92000000000002,162.88,163.88,164.92000000000002,165.91,167.68,21.23,21.31,21.31,21.3,21.28,21.240000000000002,21.19,21.14,20.96,N/A,N/A -2012,12,19,13,30,101170,100000,98860,92.79,0,7.7700000000000005,9.48,10.17,10.84,11.43,11.97,12.51,13.02,13.98,159.79,160.25,160.64000000000001,161.08,161.54,162,162.61,163.21,164.83,21.28,21.36,21.36,21.32,21.28,21.22,21.16,21.1,20.97,N/A,N/A -2012,12,19,14,30,101180,100010,98880,92.61,0,7.71,9.53,10.32,11.1,11.790000000000001,12.43,13.030000000000001,13.58,14.56,161.34,162.70000000000002,163.68,164.89000000000001,166.09,167.29,168.5,169.63,171.64000000000001,21.34,21.47,21.5,21.53,21.53,21.53,21.51,21.48,21.37,N/A,N/A -2012,12,19,15,30,101170,100000,98870,92.91,0,7.43,9.18,9.96,10.73,11.41,12.040000000000001,12.61,13.13,14,163.27,164.25,164.92000000000002,165.75,166.58,167.43,168.32,169.19,170.86,21.32,21.43,21.45,21.45,21.44,21.43,21.39,21.36,21.23,N/A,N/A -2012,12,19,16,30,101160,99990,98860,93.04,0,7.04,8.69,9.41,10.15,10.790000000000001,11.38,11.88,12.32,13.030000000000001,165.68,166.41,167.13,168.06,168.98,169.93,170.93,171.88,173.75,21.36,21.47,21.5,21.51,21.51,21.5,21.48,21.46,21.35,N/A,N/A -2012,12,19,17,30,101130,99960,98830,92.83,0,6.72,8.49,9.26,10,10.68,11.32,12,12.65,14.02,170.4,171.74,172.73,173.95000000000002,175.13,176.29,177.29,178.20000000000002,179.63,21.490000000000002,21.66,21.72,21.75,21.75,21.740000000000002,21.71,21.67,21.59,N/A,N/A -2012,12,19,18,30,101100,99930,98800,93.05,0,6.66,8.44,9.25,10.1,10.870000000000001,11.6,12.23,12.790000000000001,13.68,171.67000000000002,172.83,173.63,174.53,175.28,175.95000000000002,176.4,176.76,177.04,21.51,21.650000000000002,21.69,21.72,21.73,21.73,21.69,21.650000000000002,21.490000000000002,N/A,N/A -2012,12,19,19,30,101060,99900,98770,91.79,0,7.18,9.040000000000001,9.85,10.620000000000001,11.32,11.97,12.58,13.15,14.24,170.61,171.3,171.81,172.44,173.06,173.72,174.52,175.34,177.46,21.73,21.92,21.97,22,22,21.990000000000002,21.96,21.93,21.830000000000002,N/A,N/A -2012,12,19,20,30,101030,99860,98730,92.07000000000001,0,7.1000000000000005,8.94,9.76,10.59,11.32,11.99,12.61,13.19,14.22,169.16,170.32,171.13,172.06,172.91,173.73,174.52,175.25,176.54,21.6,21.78,21.84,21.87,21.88,21.87,21.830000000000002,21.78,21.61,N/A,N/A -2012,12,19,21,30,100990,99820,98700,91.83,0,7.22,9.1,9.94,10.76,11.5,12.200000000000001,12.870000000000001,13.5,14.75,171.52,172.70000000000002,173.56,174.48,175.26,175.96,176.51,177,177.95000000000002,21.59,21.79,21.85,21.88,21.89,21.89,21.86,21.830000000000002,21.7,N/A,N/A -2012,12,19,22,30,100930,99760,98640,91.76,0,7.43,9.3,10.13,10.94,11.66,12.34,12.96,13.530000000000001,14.43,166.5,167.41,168.1,168.82,169.46,170.04,170.63,171.18,172.33,21.55,21.77,21.85,21.900000000000002,21.93,21.94,21.92,21.89,21.740000000000002,N/A,N/A -2012,12,19,23,30,100920,99760,98630,91.68,0,7.95,9.85,10.73,11.57,12.32,13.02,13.67,14.280000000000001,15.31,170.43,170.49,170.61,170.82,171.12,171.5,172.03,172.61,173.81,21.54,21.79,21.88,21.94,21.97,21.990000000000002,21.98,21.96,21.85,N/A,N/A -2012,12,20,0,30,100910,99750,98620,92.27,0,7.57,9.46,10.32,11.200000000000001,11.97,12.67,13.290000000000001,13.85,14.92,161.36,162.47,163.49,165.16,166.82,168.54,170.06,171.42000000000002,174.16,21.42,21.650000000000002,21.76,21.89,21.990000000000002,22.080000000000002,22.1,22.1,22,N/A,N/A -2012,12,20,1,30,100900,99730,98610,91.84,0,8.14,10.02,10.86,11.700000000000001,12.47,13.22,13.92,14.58,15.69,167.21,168.46,169.41,170.63,171.75,172.83,173.75,174.58,175.75,21.54,21.67,21.73,21.82,21.87,21.89,21.86,21.830000000000002,21.67,N/A,N/A -2012,12,20,2,30,100890,99720,98600,91.42,0,8.48,10.46,11.33,12.17,12.93,13.63,14.32,14.97,16.05,174.95000000000002,175.55,175.95000000000002,176.35,176.75,177.15,177.64000000000001,178.15,179.38,21.62,21.86,21.94,21.97,21.98,21.97,21.96,21.94,21.84,N/A,N/A -2012,12,20,3,30,100900,99740,98620,91.07000000000001,0,8.21,10.08,10.870000000000001,11.63,12.290000000000001,12.9,13.47,14.01,15.08,178.64000000000001,178.91,179.18,179.64000000000001,180.16,180.77,181.51,182.26,184.06,21.69,21.89,21.95,21.98,21.990000000000002,21.97,21.93,21.89,21.75,N/A,N/A -2012,12,20,4,30,100940,99770,98650,92.18,0,6.6000000000000005,8.53,9.450000000000001,10.4,11.21,11.94,12.56,13.09,13.96,180.41,181.25,181.93,182.85,183.72,184.59,185.35,186.03,187.17000000000002,21.490000000000002,21.73,21.830000000000002,21.92,21.97,21.98,21.95,21.91,21.73,N/A,N/A -2012,12,20,5,30,100960,99800,98670,92.10000000000001,0,6.46,8.3,9.17,10.06,10.85,11.61,12.3,12.92,14.11,184.3,186.15,187.53,189.27,190.8,192.22,193.35,194.32,196.27,21.52,21.8,21.92,22.01,22.07,22.11,22.11,22.09,21.990000000000002,N/A,N/A -2012,12,20,6,30,100990,99820,98700,92,0,6.140000000000001,8.08,9.03,10.040000000000001,10.97,11.85,12.620000000000001,13.31,14.55,192.13,192.87,193.67000000000002,195.12,196.64000000000001,198.3,199.81,201.19,203.47,21.53,21.76,21.86,21.97,22.07,22.150000000000002,22.19,22.19,22.09,N/A,N/A -2012,12,20,7,30,101080,99920,98790,91.73,0,5.9,7.91,8.92,9.99,11.02,12.09,13.07,14,15.25,205.67000000000002,206.81,207.58,208.46,209.47,210.74,212.15,213.61,215.66,21.55,21.78,21.84,21.900000000000002,21.97,22.07,22.17,22.27,22.22,N/A,N/A -2012,12,20,8,30,101120,99950,98820,91.52,0,6.7700000000000005,8.9,9.99,11.14,12.14,13.05,13.75,14.32,14.97,220.66,220.05,219.65,219.8,220.22,220.94,221.76,222.58,224.84,21.61,22.04,22.23,22.330000000000002,22.41,22.46,22.45,22.43,22.26,N/A,N/A -2012,12,20,9,30,101160,99990,98860,91.12,0,8.3,10.14,10.9,11.58,12.15,12.64,13.05,13.41,14.05,221.61,223.44,224.72,226.35,227.81,229.19,230.43,231.57,233.79,21.650000000000002,21.8,21.82,21.81,21.79,21.78,21.740000000000002,21.69,21.54,N/A,N/A -2012,12,20,10,30,101380,100200,99050,74.88,0,6.93,8.08,8.65,9.31,9.98,10.67,11.44,12.200000000000001,13.8,303.46,307.61,310.09000000000003,312.90000000000003,315.45,317.91,320.13,322.19,325.38,20.46,20.400000000000002,20.36,20.3,20.22,20.13,20,19.88,19.53,N/A,N/A -2012,12,20,11,30,101560,100370,99210,52.25,0,15.22,17.1,17.7,18.080000000000002,18.36,18.57,18.740000000000002,18.88,19.09,330.23,330.43,330.54,330.66,330.76,330.86,330.97,331.06,331.25,19.03,18.68,18.5,18.29,18.1,17.91,17.7,17.52,17.13,N/A,N/A -2012,12,20,12,30,101710,100500,99330,54.980000000000004,0,15.98,17.66,18.13,18.37,18.51,18.6,18.650000000000002,18.67,18.66,327.77,328.21,328.42,328.63,328.84000000000003,329.03000000000003,329.24,329.44,329.84000000000003,17.1,16.57,16.34,16.12,15.91,15.71,15.5,15.31,14.92,N/A,N/A -2012,12,20,13,30,101860,100650,99460,60.4,0,14.17,15.52,15.88,16.080000000000002,16.2,16.29,16.35,16.39,16.43,339.89,339.51,339.3,339.09000000000003,338.90000000000003,338.73,338.55,338.39,338.08,15.01,14.35,14.09,13.85,13.63,13.42,13.21,13.01,12.6,N/A,N/A -2012,12,20,14,30,102030,100800,99610,63.46,0,14.46,15.84,16.23,16.44,16.580000000000002,16.69,16.76,16.82,16.89,339.81,339.75,339.69,339.64,339.58,339.52,339.46,339.41,339.29,13.26,12.47,12.18,11.93,11.69,11.48,11.26,11.06,10.65,N/A,N/A -2012,12,20,15,30,102140,100910,99710,65.6,0,15.96,17.47,17.89,18.11,18.25,18.35,18.41,18.45,18.5,333.81,334.01,334.15000000000003,334.29,334.42,334.54,334.66,334.78000000000003,335.01,11.99,11.08,10.77,10.5,10.26,10.040000000000001,9.82,9.61,9.200000000000001,N/A,N/A -2012,12,20,16,30,102230,100990,99780,65.58,0,16.01,17.57,18.04,18.3,18.48,18.62,18.71,18.79,18.900000000000002,334.88,334.99,335.05,335.1,335.15000000000003,335.19,335.24,335.27,335.35,11.24,10.290000000000001,9.97,9.69,9.450000000000001,9.22,9,8.790000000000001,8.38,N/A,N/A -2012,12,20,17,30,102270,101030,99830,65.17,0,14.870000000000001,16.29,16.68,16.9,17.05,17.16,17.240000000000002,17.3,17.400000000000002,333.67,333.66,333.68,333.69,333.7,333.71,333.73,333.74,333.75,11.44,10.540000000000001,10.23,9.97,9.72,9.51,9.28,9.08,8.67,N/A,N/A -2012,12,20,18,30,102360,101120,99920,63.08,0,15.16,16.63,17.04,17.27,17.43,17.55,17.63,17.7,17.8,334.6,334.65000000000003,334.69,334.73,334.76,334.79,334.81,334.84000000000003,334.90000000000003,11.71,10.82,10.52,10.26,10.01,9.8,9.57,9.36,8.950000000000001,N/A,N/A -2012,12,20,19,30,102430,101190,99990,61.04,0,14.69,16.09,16.490000000000002,16.71,16.86,16.98,17.06,17.13,17.22,332.97,333.05,333.09000000000003,333.12,333.15000000000003,333.18,333.21,333.24,333.29,12.05,11.19,10.89,10.63,10.39,10.17,9.950000000000001,9.74,9.33,N/A,N/A -2012,12,20,20,30,102470,101230,100030,58.15,0,14.39,15.76,16.14,16.35,16.5,16.6,16.68,16.740000000000002,16.82,332.7,332.76,332.8,332.84000000000003,332.86,332.88,332.92,332.94,332.99,12.48,11.65,11.370000000000001,11.11,10.88,10.66,10.44,10.23,9.82,N/A,N/A -2012,12,20,21,30,102550,101310,100110,55.480000000000004,0,13.88,15.14,15.5,15.700000000000001,15.83,15.93,16,16.05,16.13,333.48,333.54,333.59000000000003,333.63,333.66,333.7,333.73,333.76,333.81,12.66,11.86,11.58,11.32,11.09,10.88,10.65,10.450000000000001,10.040000000000001,N/A,N/A -2012,12,20,22,30,102600,101370,100160,54.44,0,13.64,14.86,15.200000000000001,15.39,15.51,15.6,15.66,15.71,15.77,333.93,334.01,334.06,334.1,334.14,334.18,334.22,334.25,334.33,12.58,11.78,11.5,11.25,11.02,10.8,10.58,10.370000000000001,9.96,N/A,N/A -2012,12,20,23,30,102720,101480,100270,54.39,0,12.77,13.870000000000001,14.18,14.34,14.46,14.540000000000001,14.6,14.64,14.700000000000001,337.19,337.31,337.38,337.44,337.5,337.55,337.61,337.66,337.77,12.35,11.56,11.27,11.02,10.790000000000001,10.58,10.35,10.15,9.74,N/A,N/A -2012,12,21,0,30,102830,101580,100380,53.24,0,12.21,13.24,13.530000000000001,13.69,13.8,13.88,13.93,13.98,14.05,342.28000000000003,342.34000000000003,342.36,342.38,342.39,342.41,342.43,342.44,342.47,12.06,11.27,10.99,10.74,10.5,10.290000000000001,10.07,9.86,9.450000000000001,N/A,N/A -2012,12,21,1,30,102900,101660,100450,51.13,0,12.68,13.76,14.06,14.22,14.33,14.4,14.46,14.5,14.55,343.36,343.40000000000003,343.43,343.45,343.48,343.5,343.53000000000003,343.55,343.61,11.81,11,10.71,10.46,10.23,10.01,9.790000000000001,9.58,9.17,N/A,N/A -2012,12,21,2,30,102940,101690,100480,52.34,0,12.14,13.14,13.41,13.55,13.64,13.71,13.75,13.790000000000001,13.84,345.53000000000003,345.67,345.76,345.84000000000003,345.90000000000003,345.96,346.03000000000003,346.09000000000003,346.2,11.64,10.84,10.56,10.31,10.08,9.86,9.64,9.43,9.03,N/A,N/A -2012,12,21,3,30,102970,101720,100510,53.160000000000004,0,11.47,12.38,12.61,12.73,12.81,12.86,12.89,12.92,12.950000000000001,353.72,353.51,353.36,353.24,353.12,353.01,352.89,352.79,352.59000000000003,11.51,10.72,10.44,10.200000000000001,9.96,9.76,9.540000000000001,9.33,8.92,N/A,N/A -2012,12,21,4,30,103010,101770,100550,50.120000000000005,0,11.57,12.49,12.73,12.85,12.94,13,13.040000000000001,13.07,13.1,354.98,354.88,354.81,354.74,354.67,354.61,354.55,354.49,354.38,11.4,10.61,10.33,10.08,9.84,9.64,9.42,9.21,8.81,N/A,N/A -2012,12,21,5,30,103050,101800,100590,48.86,0,11.09,11.93,12.15,12.27,12.34,12.39,12.42,12.450000000000001,12.48,0.38,0.09,359.90000000000003,359.72,359.56,359.42,359.27,359.14,358.88,11.27,10.48,10.21,9.96,9.73,9.53,9.31,9.11,8.71,N/A,N/A -2012,12,21,6,30,103080,101830,100620,47.94,0,9.85,10.57,10.75,10.85,10.91,10.950000000000001,10.98,11,11.040000000000001,0.96,0.58,0.32,0.09,359.88,359.69,359.5,359.33,358.99,11.3,10.57,10.3,10.07,9.84,9.64,9.43,9.22,8.82,N/A,N/A -2012,12,21,7,30,103130,101880,100660,47.160000000000004,0,9.44,10.1,10.26,10.35,10.4,10.43,10.46,10.47,10.5,2.32,1.92,1.6600000000000001,1.42,1.21,1.01,0.81,0.63,0.27,11.32,10.6,10.34,10.11,9.88,9.68,9.47,9.27,8.870000000000001,N/A,N/A -2012,12,21,8,30,103150,101900,100690,48.26,0,9.05,9.67,9.81,9.89,9.94,9.97,9.99,10,10.02,359.45,359.15000000000003,358.97,358.8,358.65000000000003,358.52,358.37,358.25,358.01,11.35,10.65,10.39,10.15,9.93,9.73,9.52,9.32,8.92,N/A,N/A -2012,12,21,9,30,103160,101910,100690,47.4,0,9.09,9.700000000000001,9.85,9.92,9.96,9.99,10.01,10.02,10.03,1.35,1.04,0.8300000000000001,0.64,0.47000000000000003,0.32,0.16,0.01,359.73,11.36,10.65,10.4,10.16,9.94,9.74,9.53,9.33,8.93,N/A,N/A -2012,12,21,10,30,103170,101920,100710,45.2,0,8.82,9.4,9.540000000000001,9.6,9.64,9.66,9.67,9.69,9.69,3.98,3.61,3.36,3.13,2.92,2.72,2.52,2.33,1.94,11.38,10.68,10.43,10.200000000000001,9.98,9.78,9.57,9.370000000000001,8.98,N/A,N/A -2012,12,21,11,30,103190,101940,100730,44.06,0,8.65,9.22,9.34,9.4,9.43,9.450000000000001,9.46,9.47,9.47,3.37,3.08,2.9,2.73,2.56,2.41,2.25,2.1,1.82,11.46,10.77,10.52,10.3,10.08,9.88,9.67,9.47,9.08,N/A,N/A -2012,12,21,12,30,103210,101970,100750,44.050000000000004,0,8.27,8.78,8.89,8.94,8.96,8.98,8.98,8.98,8.97,5.99,5.72,5.55,5.38,5.22,5.07,4.91,4.76,4.46,11.42,10.74,10.49,10.27,10.05,9.86,9.65,9.46,9.07,N/A,N/A -2012,12,21,13,30,103220,101970,100750,45.29,0,8.24,8.75,8.85,8.9,8.92,8.94,8.94,8.94,8.93,6.61,6.59,6.58,6.57,6.55,6.53,6.51,6.49,6.43,11.3,10.620000000000001,10.370000000000001,10.15,9.93,9.73,9.53,9.33,8.950000000000001,N/A,N/A -2012,12,21,14,30,103250,102000,100790,47.14,0,7.33,7.75,7.84,7.88,7.9,7.91,7.91,7.91,7.9,10.17,10.26,10.3,10.34,10.38,10.42,10.450000000000001,10.49,10.55,11.3,10.65,10.4,10.18,9.96,9.77,9.56,9.370000000000001,8.98,N/A,N/A -2012,12,21,15,30,103240,101990,100770,46.67,0,6.46,6.8100000000000005,6.87,6.9,6.91,6.92,6.92,6.92,6.91,11.09,11.17,11.200000000000001,11.23,11.26,11.28,11.31,11.33,11.38,11.450000000000001,10.82,10.58,10.36,10.15,9.96,9.75,9.56,9.17,N/A,N/A -2012,12,21,16,30,103200,101960,100750,45.59,0,5.79,6.07,6.13,6.15,6.16,6.16,6.16,6.16,6.15,13.42,13.41,13.41,13.4,13.39,13.39,13.38,13.38,13.35,11.75,11.15,10.92,10.700000000000001,10.49,10.3,10.09,9.9,9.51,N/A,N/A -2012,12,21,17,30,103150,101910,100700,44.730000000000004,0,5.4,5.67,5.72,5.74,5.75,5.76,5.76,5.76,5.76,9.28,9.28,9.3,9.31,9.32,9.33,9.33,9.34,9.35,12.17,11.6,11.370000000000001,11.15,10.94,10.75,10.55,10.36,9.97,N/A,N/A -2012,12,21,18,30,103120,101870,100670,44.79,0,4.39,4.58,4.62,4.64,4.64,4.65,4.65,4.65,4.65,6.5,6.18,5.99,5.8100000000000005,5.64,5.5,5.3500000000000005,5.21,4.94,12.68,12.14,11.92,11.71,11.5,11.31,11.1,10.91,10.52,N/A,N/A -2012,12,21,19,30,103090,101850,100640,45.300000000000004,0,3.85,4,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.0200000000000005,4.01,4,3.99,0.04,0.46,0.75,1.03,1.29,1.52,1.74,1.94,2.35,13.16,12.65,12.43,12.22,12.01,11.82,11.61,11.42,11.03,N/A,N/A -2012,12,21,20,30,103030,101800,100590,41.81,0,3.5700000000000003,3.73,3.75,3.77,3.77,3.7800000000000002,3.7800000000000002,3.7800000000000002,3.7800000000000002,355.81,355.76,355.73,355.69,355.67,355.65000000000003,355.63,355.62,355.62,13.65,13.16,12.950000000000001,12.74,12.540000000000001,12.35,12.14,11.96,11.56,N/A,N/A -2012,12,21,21,30,103000,101760,100560,43.18,0,2.9,3.02,3.04,3.0500000000000003,3.06,3.0700000000000003,3.0700000000000003,3.08,3.09,355.40000000000003,354.89,354.57,354.29,354.02,353.78000000000003,353.53000000000003,353.31,352.85,14.09,13.63,13.42,13.21,13.01,12.82,12.61,12.42,12.030000000000001,N/A,N/A -2012,12,21,22,30,102960,101730,100540,48.4,0,2.36,2.44,2.44,2.44,2.44,2.44,2.43,2.43,2.42,341.08,341.33,341.49,341.65000000000003,341.79,341.92,342.09000000000003,342.23,342.55,14.36,13.91,13.700000000000001,13.5,13.290000000000001,13.1,12.9,12.71,12.31,N/A,N/A -2012,12,21,23,30,102960,101730,100530,46.68,0,1.97,2.0100000000000002,2,1.98,1.97,1.95,1.94,1.92,1.8900000000000001,334.92,335.46,335.79,336.11,336.44,336.74,337.08,337.39,338.09000000000003,14.6,14.16,13.950000000000001,13.75,13.55,13.36,13.15,12.96,12.57,N/A,N/A -2012,12,22,0,30,102950,101720,100520,47.27,0,2.15,2.2,2.19,2.18,2.16,2.15,2.13,2.11,2.08,338.72,339.16,339.41,339.66,339.89,340.11,340.33,340.55,341.04,14.82,14.38,14.18,13.98,13.77,13.58,13.38,13.19,12.790000000000001,N/A,N/A -2012,12,22,1,30,102920,101700,100500,47.59,0,1.92,1.95,1.93,1.92,1.9000000000000001,1.8800000000000001,1.86,1.84,1.8,354.65000000000003,355.39,355.85,356.3,356.76,357.19,357.66,358.1,359.06,14.97,14.540000000000001,14.34,14.14,13.94,13.75,13.540000000000001,13.35,12.96,N/A,N/A -2012,12,22,2,30,102910,101690,100490,47.52,0,1.6,1.61,1.59,1.57,1.55,1.53,1.51,1.49,1.45,4.7700000000000005,5.89,6.59,7.28,7.97,8.6,9.35,10.040000000000001,11.55,15.1,14.68,14.48,14.27,14.07,13.88,13.68,13.49,13.1,N/A,N/A -2012,12,22,3,30,102910,101690,100500,47.75,0,1.09,1.07,1.05,1.02,1,0.97,0.9500000000000001,0.93,0.89,12.88,13.36,13.68,14.05,14.46,14.85,15.3,15.72,16.740000000000002,15.24,14.83,14.63,14.43,14.23,14.040000000000001,13.84,13.64,13.25,N/A,N/A -2012,12,22,4,30,102890,101660,100470,48.7,0,1.33,1.33,1.3,1.28,1.26,1.24,1.21,1.19,1.1500000000000001,25.2,25.25,25.27,25.29,25.34,25.400000000000002,25.51,25.62,25.93,15.33,14.92,14.73,14.52,14.32,14.13,13.93,13.74,13.35,N/A,N/A -2012,12,22,5,30,102870,101640,100450,49.65,0,1.12,1.11,1.09,1.06,1.04,1.02,0.99,0.97,0.92,40.53,41.22,41.61,41.95,42.27,42.54,42.82,43.07,43.68,15.41,15,14.81,14.61,14.41,14.22,14.02,13.83,13.44,N/A,N/A -2012,12,22,6,30,102870,101650,100460,51.11,0,0.99,0.99,0.96,0.9400000000000001,0.92,0.91,0.89,0.87,0.84,39.74,41.78,43.07,44.31,45.54,46.67,47.95,49.14,51.76,15.43,15.05,14.85,14.65,14.450000000000001,14.27,14.06,13.870000000000001,13.48,N/A,N/A -2012,12,22,7,30,102880,101650,100470,53.46,0,1.17,1.17,1.1400000000000001,1.12,1.1,1.07,1.05,1.03,0.99,46.800000000000004,48.24,49.11,49.97,50.83,51.620000000000005,52.52,53.35,55.18,15.43,15.040000000000001,14.85,14.64,14.44,14.25,14.05,13.86,13.47,N/A,N/A -2012,12,22,8,30,102860,101640,100450,54.79,0,1.3,1.28,1.25,1.22,1.2,1.17,1.1400000000000001,1.12,1.08,46.45,48.230000000000004,49.35,50.46,51.59,52.64,53.84,54.97,57.53,15.42,15.030000000000001,14.83,14.63,14.43,14.24,14.040000000000001,13.85,13.46,N/A,N/A -2012,12,22,9,30,102850,101630,100440,54.94,0,1.53,1.57,1.56,1.56,1.55,1.55,1.54,1.54,1.52,69.79,71.85000000000001,73.06,74.19,75.26,76.24,77.28,78.24,80.22,15.49,15.1,14.91,14.71,14.5,14.32,14.11,13.92,13.530000000000001,N/A,N/A -2012,12,22,10,30,102850,101620,100430,53.370000000000005,0,2.2600000000000002,2.2800000000000002,2.2600000000000002,2.23,2.21,2.18,2.15,2.13,2.08,86.44,86.83,87.13,87.43,87.74,88.03,88.35000000000001,88.66,89.33,15.52,15.120000000000001,14.93,14.73,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A -2012,12,22,11,30,102840,101620,100430,56.660000000000004,0,2.5500000000000003,2.64,2.65,2.66,2.66,2.66,2.66,2.67,2.67,69.46000000000001,71.73,73.13,74.44,75.69,76.85000000000001,78.04,79.13,81.31,15.52,15.120000000000001,14.93,14.73,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A -2012,12,22,12,30,102840,101620,100430,54.99,0,2.98,3.11,3.13,3.14,3.15,3.16,3.16,3.17,3.17,92.51,93.23,93.75,94.27,94.77,95.24,95.74000000000001,96.2,97.18,15.65,15.25,15.06,14.85,14.66,14.47,14.26,14.07,13.68,N/A,N/A -2012,12,22,13,30,102830,101610,100420,59.34,0,3.71,3.89,3.92,3.93,3.94,3.94,3.94,3.94,3.94,109.34,110.06,110.47,110.84,111.21000000000001,111.55,111.9,112.23,112.93,15.73,15.32,15.13,14.92,14.72,14.530000000000001,14.33,14.14,13.75,N/A,N/A -2012,12,22,14,30,102840,101610,100430,61.38,0,4.11,4.34,4.39,4.42,4.44,4.46,4.47,4.48,4.5,108.28,109.04,109.51,109.93,110.33,110.69,111.07000000000001,111.42,112.11,15.89,15.48,15.290000000000001,15.08,14.88,14.69,14.49,14.3,13.91,N/A,N/A -2012,12,22,15,30,102820,101600,100410,61.43,0,4.92,5.18,5.24,5.26,5.2700000000000005,5.28,5.29,5.29,5.28,120.71000000000001,121.16,121.41,121.64,121.86,122.05,122.25,122.45,122.85000000000001,16.13,15.72,15.530000000000001,15.32,15.120000000000001,14.93,14.73,14.540000000000001,14.15,N/A,N/A -2012,12,22,16,30,102770,101550,100370,64.03,0,5,5.3100000000000005,5.39,5.43,5.47,5.5,5.5200000000000005,5.54,5.57,126.96000000000001,127.22,127.39,127.55,127.7,127.85000000000001,127.99000000000001,128.13,128.42000000000002,16.330000000000002,15.93,15.73,15.530000000000001,15.33,15.14,14.94,14.75,14.35,N/A,N/A -2012,12,22,17,30,102700,101490,100310,63.370000000000005,0,5.23,5.58,5.66,5.71,5.75,5.7700000000000005,5.79,5.8100000000000005,5.83,130.6,131.16,131.48,131.79,132.06,132.31,132.58,132.81,133.3,16.61,16.22,16.02,15.82,15.620000000000001,15.43,15.23,15.040000000000001,14.64,N/A,N/A -2012,12,22,18,30,102670,101450,100270,64.5,0,5.55,5.93,6.03,6.08,6.12,6.15,6.17,6.19,6.22,137.71,138.09,138.35,138.59,138.82,139.03,139.24,139.44,139.84,16.85,16.46,16.26,16.06,15.860000000000001,15.68,15.47,15.280000000000001,14.89,N/A,N/A -2012,12,22,19,30,102630,101420,100240,66.63,0,5.69,6.1000000000000005,6.21,6.28,6.33,6.36,6.390000000000001,6.42,6.45,139.12,139.70000000000002,140.01,140.31,140.57,140.82,141.06,141.29,141.76,17.06,16.68,16.490000000000002,16.29,16.080000000000002,15.9,15.69,15.5,15.11,N/A,N/A -2012,12,22,20,30,102560,101350,100180,66.66,0,5.92,6.36,6.47,6.54,6.59,6.62,6.65,6.67,6.7,144.04,144.52,144.83,145.12,145.4,145.66,145.91,146.16,146.65,17.38,17.01,16.830000000000002,16.63,16.43,16.240000000000002,16.04,15.85,15.46,N/A,N/A -2012,12,22,21,30,102500,101290,100120,69.84,0,6.26,6.79,6.93,7.0200000000000005,7.08,7.13,7.16,7.19,7.23,146.51,147.13,147.49,147.82,148.12,148.4,148.67000000000002,148.92000000000002,149.42000000000002,17.71,17.36,17.18,16.98,16.78,16.59,16.39,16.21,15.81,N/A,N/A -2012,12,22,22,30,102450,101240,100070,71.44,0,6.28,6.82,6.98,7.09,7.17,7.23,7.29,7.34,7.43,147.35,148.18,148.71,149.22,149.67000000000002,150.08,150.5,150.87,151.63,17.990000000000002,17.650000000000002,17.48,17.28,17.09,16.9,16.7,16.52,16.13,N/A,N/A -2012,12,22,23,30,102400,101200,100030,73.06,0,7.37,8.01,8.17,8.26,8.33,8.370000000000001,8.4,8.43,8.47,149,149.45000000000002,149.76,150.05,150.31,150.56,150.81,151.04,151.51,18.41,18.1,17.92,17.72,17.53,17.35,17.150000000000002,16.96,16.57,N/A,N/A -2012,12,23,0,30,102360,101160,99990,71.95,0,8.17,8.98,9.19,9.3,9.38,9.43,9.47,9.49,9.52,155.97,156.51,156.84,157.15,157.44,157.71,157.98,158.22,158.74,18.740000000000002,18.47,18.3,18.1,17.92,17.73,17.53,17.35,16.96,N/A,N/A -2012,12,23,1,30,102300,101100,99930,74.34,0,6.98,7.7,7.9,8.02,8.11,8.19,8.25,8.3,8.38,157.88,158.03,158.16,158.28,158.39000000000001,158.49,158.6,158.69,158.89000000000001,18.97,18.71,18.54,18.36,18.17,17.990000000000002,17.79,17.61,17.22,N/A,N/A -2012,12,23,2,30,102260,101060,99900,75.3,0,6.92,7.69,7.930000000000001,8.120000000000001,8.28,8.41,8.53,8.64,8.84,159.3,160.06,160.48,160.92000000000002,161.32,161.70000000000002,162.09,162.44,163.12,19.17,18.95,18.8,18.63,18.45,18.27,18.080000000000002,17.91,17.53,N/A,N/A -2012,12,23,3,30,102220,101030,99870,77.48,0,7.58,8.370000000000001,8.620000000000001,8.78,8.89,8.98,9.040000000000001,9.08,9.13,158.98,158.94,159.02,159.16,159.34,159.54,159.78,160.01,160.78,19.27,19.07,18.93,18.75,18.580000000000002,18.41,18.22,18.05,17.68,N/A,N/A -2012,12,23,4,30,102150,100960,99800,80.05,0,7.0600000000000005,8.01,8.35,8.66,8.94,9.18,9.43,9.65,10.07,154.46,155.51,156.16,156.86,157.5,158.1,158.66,159.17000000000002,160.09,19.38,19.2,19.07,18.91,18.740000000000002,18.580000000000002,18.41,18.240000000000002,17.89,N/A,N/A -2012,12,23,5,30,102130,100930,99780,77.96000000000001,0,8.05,9.06,9.42,9.700000000000001,9.93,10.120000000000001,10.290000000000001,10.44,10.700000000000001,165.65,165.78,165.93,166.15,166.4,166.67000000000002,167.01,167.33,168.15,19.67,19.53,19.41,19.26,19.11,18.95,18.79,18.63,18.3,N/A,N/A -2012,12,23,6,30,102090,100900,99740,82.3,0,7.43,8.66,9.17,9.63,10.03,10.39,10.71,10.99,11.43,166.95000000000002,167.95000000000002,168.61,169.36,170.03,170.66,171.22,171.71,172.51,19.63,19.580000000000002,19.5,19.38,19.26,19.13,18.98,18.84,18.53,N/A,N/A -2012,12,23,7,30,102070,100880,99720,83.31,0,6.91,8.2,8.76,9.24,9.67,10.040000000000001,10.370000000000001,10.66,11.14,179.07,179.64000000000001,180,180.1,180.06,179.93,179.71,179.49,179.09,19.62,19.56,19.48,19.35,19.22,19.080000000000002,18.93,18.79,18.48,N/A,N/A -2012,12,23,8,30,102030,100840,99690,82.16,0,7.07,8.3,8.790000000000001,9.18,9.49,9.74,9.92,10.08,10.28,179.77,179.66,179.63,179.61,179.63,179.67000000000002,179.82,179.98,180.68,19.76,19.75,19.68,19.57,19.44,19.3,19.14,18.990000000000002,18.66,N/A,N/A -2012,12,23,9,30,102000,100810,99660,84.88,0,6.72,8.08,8.69,9.27,9.77,10.22,10.61,10.97,11.51,184.55,185.31,185.94,186.71,187.43,188.14000000000001,188.81,189.44,190.54,19.740000000000002,19.75,19.7,19.62,19.53,19.42,19.3,19.19,18.91,N/A,N/A -2012,12,23,10,30,101960,100770,99620,85.35000000000001,0,6.96,8.39,9.02,9.6,10.09,10.53,10.89,11.22,11.74,185.89000000000001,186.70000000000002,187.26,187.84,188.35,188.83,189.25,189.63,190.23,19.78,19.81,19.79,19.72,19.64,19.55,19.44,19.32,19.05,N/A,N/A -2012,12,23,11,30,101940,100760,99610,85.56,0,6.92,8.370000000000001,9,9.6,10.120000000000001,10.58,10.98,11.35,11.92,190.11,190.79,191.31,191.89000000000001,192.44,192.98000000000002,193.54,194.06,195.18,19.85,19.900000000000002,19.87,19.81,19.73,19.64,19.53,19.42,19.150000000000002,N/A,N/A -2012,12,23,12,30,101920,100730,99580,86.44,0,6.44,7.83,8.46,9.06,9.59,10.09,10.540000000000001,10.96,11.68,190.01,191.23000000000002,192.15,193.20000000000002,194.16,195.08,195.91,196.67000000000002,197.92000000000002,19.81,19.86,19.84,19.78,19.71,19.62,19.52,19.42,19.18,N/A,N/A -2012,12,23,13,30,101890,100700,99550,85.74,0,6.65,8.08,8.700000000000001,9.290000000000001,9.790000000000001,10.25,10.67,11.040000000000001,11.69,192.45000000000002,192.95000000000002,193.33,193.76,194.15,194.52,194.93,195.32,196.3,19.89,19.94,19.92,19.85,19.77,19.68,19.57,19.47,19.21,N/A,N/A -2012,12,23,14,30,101880,100700,99550,86.69,0,6.61,8.05,8.69,9.28,9.8,10.26,10.69,11.08,11.71,193.69,194.39000000000001,194.91,195.54,196.1,196.63,197.13,197.59,198.36,19.91,19.97,19.95,19.88,19.81,19.72,19.61,19.51,19.26,N/A,N/A -2012,12,23,15,30,101860,100670,99520,87.74,0,6.3100000000000005,7.74,8.38,8.98,9.52,10.02,10.49,10.92,11.74,194.47,195.35,196,196.73000000000002,197.42000000000002,198.12,198.86,199.56,200.96,19.95,20.02,20.01,19.96,19.89,19.81,19.72,19.63,19.41,N/A,N/A -2012,12,23,16,30,101820,100640,99490,87.58,0,6.45,7.92,8.6,9.25,9.8,10.290000000000001,10.700000000000001,11.06,11.63,198.73000000000002,199.74,200.46,201.23000000000002,201.84,202.35,202.74,203.07,203.59,20.01,20.1,20.11,20.07,20.02,19.95,19.86,19.76,19.5,N/A,N/A -2012,12,23,17,30,101760,100580,99430,87.82000000000001,0,6.29,7.73,8.370000000000001,9,9.55,10.06,10.52,10.94,11.68,198.77,199.51,200.07,200.68,201.20000000000002,201.67000000000002,202.1,202.5,203.37,20.06,20.13,20.12,20.07,20.01,19.93,19.830000000000002,19.73,19.490000000000002,N/A,N/A -2012,12,23,18,30,101710,100530,99390,87.19,0,6.43,7.91,8.55,9.14,9.63,10.07,10.450000000000001,10.790000000000001,11.43,195.1,196.29,197.14000000000001,198.05,198.76,199.34,199.75,200.09,200.63,20.150000000000002,20.25,20.25,20.21,20.14,20.06,19.94,19.82,19.54,N/A,N/A -2012,12,23,19,30,101670,100490,99340,90.37,0,6.140000000000001,7.6000000000000005,8.27,8.92,9.5,10.040000000000001,10.52,10.97,11.73,195.47,197.29,198.56,199.89000000000001,201.01,201.98000000000002,202.76,203.45000000000002,204.47,20.07,20.14,20.14,20.09,20.04,19.97,19.89,19.8,19.580000000000002,N/A,N/A -2012,12,23,20,30,101610,100430,99280,88.63,0,6.65,8.18,8.870000000000001,9.53,10.11,10.63,11.09,11.51,12.23,199.09,200.02,200.70000000000002,201.44,202.1,202.71,203.3,203.84,204.85,20.14,20.240000000000002,20.240000000000002,20.21,20.16,20.09,20.01,19.92,19.69,N/A,N/A -2012,12,23,21,30,101560,100380,99230,89.01,0,7.22,8.78,9.48,10.14,10.700000000000001,11.200000000000001,11.65,12.05,12.75,202.36,202.78,203.1,203.45000000000002,203.74,204,204.25,204.49,205.07,20.150000000000002,20.26,20.27,20.23,20.18,20.12,20.03,19.94,19.7,N/A,N/A -2012,12,23,22,30,101510,100330,99190,88.81,0,7.33,8.950000000000001,9.67,10.34,10.93,11.47,11.94,12.36,13.030000000000001,199.95000000000002,200.66,201.22,201.9,202.51,203.07,203.54,203.96,204.57,20.17,20.3,20.32,20.29,20.25,20.19,20.11,20.02,19.79,N/A,N/A -2012,12,23,23,30,101490,100320,99170,89.96000000000001,0,7.0200000000000005,8.56,9.25,9.91,10.47,10.98,11.44,11.86,12.59,200.53,201.05,201.48000000000002,202.02,202.51,203,203.44,203.85,204.49,20.14,20.26,20.28,20.25,20.2,20.14,20.06,19.97,19.740000000000002,N/A,N/A -2012,12,24,0,30,101470,100290,99150,90.48,0,6.95,8.57,9.31,10.01,10.61,11.16,11.64,12.07,12.8,201.46,201.92000000000002,202.28,202.75,203.23000000000002,203.73000000000002,204.23000000000002,204.70000000000002,205.55,20.150000000000002,20.28,20.29,20.26,20.21,20.150000000000002,20.06,19.98,19.75,N/A,N/A -2012,12,24,1,30,101460,100280,99140,90.9,0,6.8,8.44,9.200000000000001,9.92,10.53,11.1,11.61,12.09,12.88,203.42000000000002,204.1,204.59,205.08,205.47,205.77,206.02,206.23000000000002,206.62,20.18,20.330000000000002,20.35,20.330000000000002,20.29,20.22,20.13,20.04,19.81,N/A,N/A -2012,12,24,2,30,101440,100260,99120,91.24,0,7.23,8.91,9.66,10.370000000000001,11,11.57,12.09,12.58,13.47,205.25,205.70000000000002,206.04,206.43,206.8,207.15,207.48000000000002,207.79,208.32,20.18,20.32,20.34,20.32,20.27,20.21,20.13,20.05,19.84,N/A,N/A -2012,12,24,3,30,101420,100240,99100,91.37,0,7.73,9.49,10.3,11.06,11.73,12.33,12.88,13.38,14.24,206.29,206.65,206.92000000000002,207.24,207.52,207.8,208.05,208.29,208.68,20.25,20.400000000000002,20.43,20.42,20.38,20.330000000000002,20.25,20.17,19.96,N/A,N/A -2012,12,24,4,30,101410,100230,99090,91.43,0,7.57,9.31,10.11,10.870000000000001,11.53,12.120000000000001,12.66,13.15,14.01,208.6,208.77,208.91,209.08,209.26,209.44,209.65,209.85,210.25,20.25,20.400000000000002,20.43,20.41,20.37,20.31,20.23,20.150000000000002,19.93,N/A,N/A -2012,12,24,5,30,101410,100230,99090,91.63,0,6.84,8.57,9.38,10.16,10.84,11.47,12.040000000000001,12.57,13.48,211.61,211.72,211.83,212,212.17000000000002,212.35,212.53,212.71,213.04,20.22,20.39,20.43,20.41,20.38,20.32,20.25,20.17,19.96,N/A,N/A -2012,12,24,6,30,101410,100240,99100,91.55,0,6.92,8.66,9.47,10.24,10.92,11.55,12.120000000000001,12.64,13.57,212.18,212.56,212.84,213.15,213.43,213.71,213.95000000000002,214.18,214.59,20.17,20.37,20.42,20.42,20.38,20.34,20.26,20.19,19.98,N/A,N/A -2012,12,24,7,30,101410,100230,99090,91.73,0,6.88,8.59,9.4,10.18,10.86,11.49,12.07,12.61,13.57,214.02,214.4,214.70000000000002,215.02,215.3,215.55,215.78,215.99,216.35,20.13,20.32,20.38,20.38,20.36,20.32,20.26,20.19,20.01,N/A,N/A -2012,12,24,8,30,101390,100210,99070,91.58,0,7.36,9.13,9.94,10.73,11.42,12.05,12.63,13.17,14.120000000000001,215.05,215.73000000000002,216.23000000000002,216.82,217.35,217.86,218.32,218.73000000000002,219.37,20.16,20.35,20.400000000000002,20.41,20.400000000000002,20.36,20.31,20.240000000000002,20.07,N/A,N/A -2012,12,24,9,30,101380,100200,99070,91.39,0,7.24,9.02,9.82,10.59,11.27,11.9,12.47,12.99,14,217.33,218,218.5,219.08,219.56,220,220.37,220.71,221.32,20.2,20.39,20.44,20.44,20.41,20.36,20.28,20.2,20,N/A,N/A -2012,12,24,10,30,101380,100210,99070,91.78,0,6.67,8.42,9.23,10.01,10.700000000000001,11.35,11.96,12.530000000000001,13.58,223.70000000000002,223.81,223.92000000000002,224.14000000000001,224.41,224.78,225.15,225.52,226.08,20.14,20.31,20.35,20.330000000000002,20.29,20.23,20.150000000000002,20.080000000000002,19.89,N/A,N/A -2012,12,24,11,30,101410,100230,99090,92.16,0,5.97,7.66,8.48,9.290000000000001,9.98,10.59,11.120000000000001,11.59,12.39,232.85,233.23000000000002,233.44,233.5,233.5,233.44,233.47,233.53,233.96,20.080000000000002,20.27,20.32,20.32,20.3,20.240000000000002,20.16,20.07,19.830000000000002,N/A,N/A -2012,12,24,12,30,101420,100250,99100,93.10000000000001,0,5,6.6000000000000005,7.32,7.99,8.56,9.05,9.49,9.88,10.61,247.66,247.6,247.54,247.41,247.21,246.94,246.6,246.25,245.58,19.91,20.09,20.12,20.09,20.03,19.94,19.830000000000002,19.73,19.48,N/A,N/A -2012,12,24,13,30,101430,100250,99110,93.95,0,4.48,5.98,6.66,7.2700000000000005,7.7700000000000005,8.19,8.700000000000001,9.23,9.99,252.81,253.8,254.43,254.84,255.01000000000002,254.98000000000002,254.57,254.01000000000002,252.34,19.75,19.91,19.95,19.91,19.84,19.77,19.69,19.61,19.42,N/A,N/A -2012,12,24,14,30,101440,100260,99120,94.67,0,4.1,5.53,6.22,6.94,7.66,8.44,9.08,9.65,10.14,245.06,248.77,251.19,252.45000000000002,253.12,253.29,253.15,252.91,252.65,19.59,19.87,19.97,19.95,19.93,19.91,19.89,19.88,19.76,N/A,N/A -2012,12,24,15,30,101430,100250,99110,96.10000000000001,0,3.2,4.47,5.2,6.37,7.26,7.8500000000000005,8.32,8.73,9.36,245.53,248.46,250.81,254.06,255.76000000000002,255.88,255.67000000000002,255.33,254.57,19.38,19.650000000000002,19.78,19.85,19.84,19.77,19.73,19.69,19.580000000000002,N/A,N/A -2012,12,24,16,30,101410,100230,99080,97.33,0,3.1,4.48,5.34,6.2700000000000005,6.92,7.2700000000000005,7.57,7.84,8.25,257.26,258.35,259.37,260.6,260.94,260.37,259.83,259.31,258.81,19.150000000000002,19.39,19.55,19.66,19.7,19.7,19.650000000000002,19.57,19.35,N/A,N/A -2012,12,24,17,30,101360,100180,99030,98.14,0,1.69,2.69,3.09,3.35,3.48,3.5100000000000002,3.46,3.41,3.36,267.04,269.61,271.99,275.97,280.07,284.28000000000003,288.13,291.5,294.82,19.22,19.31,19.330000000000002,19.31,19.28,19.22,19.14,19.05,18.93,N/A,N/A -2012,12,24,18,30,101330,100150,99000,99.28,0,1.61,2.11,2.33,2.25,2.11,1.93,1.93,1.97,2.4,346.12,340.67,335.94,330.28000000000003,324.61,319.21,311.14,302.87,291.35,18.64,18.66,18.75,18.91,18.95,18.91,18.91,18.91,18.830000000000002,N/A,N/A -2012,12,24,19,30,101310,100120,98980,94.54,0,1.96,2.29,2.48,2.66,2.71,2.67,2.45,2.23,1.7,14.82,7.45,2.68,358.35,352.98,346.91,340.27,334.55,318.90000000000003,19.03,18.8,18.68,18.56,18.51,18.52,18.6,18.7,18.66,N/A,N/A -2012,12,24,20,30,101250,100060,98920,91.22,0,2.2,2.35,2.41,2.5300000000000002,2.46,2.2600000000000002,1.95,1.67,0.89,50.980000000000004,47.08,42.67,34.31,28.04,23.62,21.72,20.72,20.02,19.02,18.77,18.68,18.68,18.7,18.73,18.73,18.72,18.66,N/A,N/A -2012,12,24,21,30,101210,100030,98880,91.74,0,1.57,1.59,1.59,1.61,1.53,1.36,1.11,0.89,0.56,83.88,76.88,69.73,55.7,47.31,43.300000000000004,47.64,52.92,93.39,19,18.78,18.73,18.830000000000002,18.87,18.88,18.86,18.830000000000002,18.69,N/A,N/A -2012,12,24,22,30,101150,99960,98820,95.43,0,2.74,2.71,2.61,2.46,2.32,2.17,2.05,1.96,1.83,112.13,106.04,100.89,93.71000000000001,89.28,86.59,89.84,94.04,109.09,18.91,18.830000000000002,18.85,18.92,18.96,18.97,18.94,18.89,18.72,N/A,N/A -2012,12,24,23,30,101120,99940,98800,94.58,0,2.8000000000000003,3.11,3.17,3.09,2.98,2.86,2.66,2.46,1.98,106.88,108.7,110.24000000000001,112.10000000000001,113.49000000000001,114.56,116.10000000000001,117.55,128.21,18.97,19.13,19.21,19.16,19.06,18.91,18.79,18.68,18.66,N/A,N/A -2012,12,25,0,30,101090,99910,98770,96.48,0,2.17,2.25,2.19,2.21,2.29,2.4,2.45,2.48,2.5,115.62,129.15,136.02,139.17000000000002,144.24,151,153.12,153.82,156.02,19.26,19.25,19.18,18.96,18.79,18.650000000000002,18.54,18.45,18.29,N/A,N/A -2012,12,25,1,30,101060,99880,98740,97.14,0,2.79,2.63,2.42,2.4,2.4,2.42,2.44,2.47,2.5100000000000002,110.47,123.31,129.45,132.52,137.89000000000001,145.25,147.98,149.05,151.25,19.2,19.38,19.400000000000002,19.18,19.01,18.86,18.75,18.67,18.48,N/A,N/A -2012,12,25,2,30,101020,99840,98700,97.03,0,2.64,2.95,2.9,2.91,2.9,2.87,2.92,2.98,3.43,130.34,137.97,141.84,143.89000000000001,144.92000000000002,145.27,146.67000000000002,148.27,157.26,19.25,19.55,19.62,19.43,19.25,19.07,18.97,18.900000000000002,19.47,N/A,N/A -2012,12,25,3,30,100970,99790,98650,97.98,0,3.63,4.24,4.38,4.37,4.41,4.49,4.61,4.72,4.87,116.4,120.55,124.51,130.3,134.88,138.75,143.1,147.27,155.81,18.89,18.87,18.900000000000002,18.96,19.07,19.22,19.46,19.71,19.91,N/A,N/A -2012,12,25,4,30,100860,99690,98550,98.59,0,5.44,6.16,6.36,6.390000000000001,6.390000000000001,6.36,6.390000000000001,6.42,6.69,116.91,122.72,130.83,145,152.73,156.83,160.38,163.48,169,18.73,18.64,18.86,19.44,19.830000000000002,20.12,20.17,20.17,20.1,N/A,N/A -2012,12,25,5,30,100850,99670,98540,94.97,14.3,5.48,7.29,8.25,9.21,10.4,11.9,12.81,13.450000000000001,13.4,149.4,153.02,156.61,162.81,169.72,177.77,182.36,185.46,186.32,19.47,19.53,19.6,19.77,19.900000000000002,20,20.09,20.18,20.080000000000002,N/A,N/A -2012,12,25,6,30,100850,99680,98550,91.95,0,5.95,7.74,8.55,9.33,10.05,10.74,11.38,11.96,12.58,182.46,181.85,182.20000000000002,183.83,186.09,188.76,190.78,192.54,193.77,19.73,19.77,19.77,19.830000000000002,20.01,20.26,20.34,20.37,20.240000000000002,N/A,N/A -2012,12,25,7,30,100800,99630,98500,93.92,0,6.38,8.2,9.19,10.34,11.46,12.58,13.31,13.86,14.51,188.37,189.14000000000001,189.75,190.67000000000002,191.54,192.39000000000001,193,193.5,194.16,19.27,19.19,19.28,19.67,20.02,20.330000000000002,20.43,20.46,20.32,N/A,N/A -2012,12,25,8,30,100730,99550,98420,97.93,0,2.61,4.39,5.69,7.25,8.53,9.540000000000001,10.46,11.33,12.76,202.35,197.47,194.1,192.67000000000002,191.74,191.24,191.09,191.05,191.13,18.490000000000002,18.85,19.14,19.52,19.7,19.76,19.89,20.02,20.16,N/A,N/A -2012,12,25,9,30,100700,99530,98400,90.07000000000001,0,7.16,9.09,10.040000000000001,11.02,11.86,12.620000000000001,13.17,13.61,14.040000000000001,183.94,184.88,185.51,185.84,186.06,186.16,186.59,187.11,188.09,20.06,20.63,20.900000000000002,21.080000000000002,21.16,21.17,21.17,21.17,21.1,N/A,N/A -2012,12,25,10,30,100630,99460,98330,93.23,0,4.2700000000000005,6.09,7.1000000000000005,8.36,9.58,10.8,11.91,12.950000000000001,14.42,173.18,177.71,180.35,181.72,182.71,183.39000000000001,184.02,184.61,186.19,19.48,19.87,20.02,20.09,20.150000000000002,20.21,20.26,20.3,20.34,N/A,N/A -2012,12,25,11,30,100660,99490,98360,90.4,0,9.09,11.05,11.950000000000001,12.84,13.63,14.39,15.11,15.790000000000001,16.94,185.36,186.6,187.5,188.52,189.36,190.08,190.61,191.03,191.70000000000002,19.990000000000002,20.22,20.29,20.35,20.38,20.400000000000002,20.39,20.38,20.31,N/A,N/A -2012,12,25,12,30,100490,99330,98190,92.93,0,3.27,4.96,5.72,6.5200000000000005,7.4,8.4,9.42,10.43,12.290000000000001,164.20000000000002,166.63,169.16,173,175.86,178.02,178.96,179.44,179.58,19.68,20.09,20.12,19.91,19.75,19.62,19.490000000000002,19.37,19.14,N/A,N/A -2012,12,25,13,30,100490,99330,98200,89.73,0,8.91,10.82,11.72,12.57,13.3,13.97,14.540000000000001,15.06,15.85,178.32,177.94,177.6,177.18,176.84,176.54,176.46,176.47,177.32,20.13,20.35,20.400000000000002,20.42,20.42,20.400000000000002,20.37,20.34,20.21,N/A,N/A -2012,12,25,14,30,100520,99350,98220,91.2,0,8.2,10.14,11.1,12.08,12.97,13.83,14.620000000000001,15.35,16.51,180.07,179.88,179.73,179.54,179.38,179.25,179.19,179.14000000000001,179.37,19.84,20.05,20.12,20.17,20.21,20.25,20.27,20.27,20.22,N/A,N/A -2012,12,25,15,30,100440,99270,98140,91.13,5.9,8.81,10.82,11.75,12.72,13.65,14.59,15.59,16.59,18.57,177.48,178.70000000000002,179.48,180.41,181.41,182.52,183.85,185.22,187.94,19.84,19.91,19.900000000000002,19.87,19.830000000000002,19.79,19.75,19.72,19.57,N/A,N/A -2012,12,25,16,30,100440,99270,98140,90.03,0,11.85,14.22,15.26,16.29,17.16,17.96,18.68,19.34,20.54,190.79,191.71,192.18,192.66,193.06,193.43,193.76,194.07,194.69,20.080000000000002,20.22,20.23,20.21,20.17,20.12,20.06,19.990000000000002,19.830000000000002,N/A,N/A -2012,12,25,17,30,100280,99120,97990,90.10000000000001,0,15.77,18.26,19.26,20.12,20.84,21.48,22.080000000000002,22.63,23.59,194.54,194.84,195.14000000000001,195.53,195.92000000000002,196.34,196.83,197.33,198.52,20.080000000000002,20.18,20.17,20.1,20.03,19.95,19.87,19.8,19.650000000000002,N/A,N/A -2012,12,25,18,30,100390,99220,98100,89.94,1.5,14.51,17.080000000000002,18.07,18.94,19.69,20.37,20.990000000000002,21.56,22.57,214.73000000000002,215.78,216.23000000000002,216.73000000000002,217.18,217.63,218.07,218.48000000000002,219.28,20.1,20.22,20.21,20.14,20.080000000000002,19.990000000000002,19.900000000000002,19.81,19.61,N/A,N/A -2012,12,25,19,30,100420,99250,98120,90.82000000000001,0,10.790000000000001,12.780000000000001,13.64,14.44,15.08,15.610000000000001,15.860000000000001,15.99,15.56,237.64000000000001,238.55,239.28,240.36,241.51,242.82,244.57,246.36,254.17000000000002,19.95,20.06,20.080000000000002,20.09,20.12,20.16,20.21,20.28,20.54,N/A,N/A -2012,12,25,20,30,100480,99310,98180,79.87,0,10.02,11.84,12.6,13.280000000000001,13.83,14.290000000000001,14.66,14.98,15.44,308.16,306.5,305.56,304.78000000000003,304.26,303.92,303.66,303.44,302.68,20.01,20.16,20.17,20.14,20.080000000000002,19.990000000000002,19.87,19.740000000000002,19.44,N/A,N/A -2012,12,25,21,30,100570,99390,98260,58.65,0,12.01,13.91,14.66,15.3,15.83,16.29,16.7,17.05,17.61,307.74,307.40000000000003,307.17,306.92,306.7,306.48,306.27,306.08,305.68,19.92,19.98,19.92,19.81,19.68,19.54,19.37,19.2,18.830000000000002,N/A,N/A -2012,12,25,22,30,100700,99520,98380,51.89,0,12.26,13.780000000000001,14.370000000000001,14.8,15.16,15.47,15.75,16,16.45,304.08,304.47,304.69,304.91,305.09000000000003,305.26,305.41,305.55,305.76,19.22,19.150000000000002,19.04,18.88,18.72,18.55,18.37,18.2,17.830000000000002,N/A,N/A -2012,12,25,23,30,100830,99640,98490,55.72,0,13.8,15.48,16.06,16.45,16.740000000000002,16.97,17.150000000000002,17.31,17.57,305.91,305.78000000000003,305.76,305.76,305.75,305.75,305.75,305.76,305.76,17.830000000000002,17.56,17.400000000000002,17.2,17.01,16.82,16.62,16.43,16.04,N/A,N/A -2012,12,26,0,30,100950,99750,98590,76.75,0,15.99,17.650000000000002,18.16,18.42,18.59,18.69,18.740000000000002,18.77,18.76,326.23,326.22,326.12,325.98,325.85,325.72,325.57,325.44,325.14,15.57,15.040000000000001,14.82,14.58,14.36,14.16,13.950000000000001,13.76,13.36,N/A,N/A -2012,12,26,1,30,101150,99940,98750,81.77,0,15.34,16.81,17.32,17.580000000000002,17.76,17.87,17.94,17.990000000000002,18.03,314.27,314.35,314.49,314.63,314.75,314.86,314.97,315.08,315.28000000000003,12.9,12.19,11.91,11.64,11.41,11.19,10.97,10.77,10.36,N/A,N/A -2012,12,26,2,30,101300,100070,98870,82.72,0,16.72,18.23,18.67,18.85,18.95,19,19.01,19,18.93,318.17,318.34000000000003,318.43,318.52,318.6,318.66,318.73,318.8,318.94,10.19,9.26,8.94,8.67,8.43,8.22,8,7.8,7.4,N/A,N/A -2012,12,26,3,30,101410,100180,98970,87.37,0,14.23,15.44,15.81,16.02,16.15,16.240000000000002,16.3,16.35,16.4,327.78000000000003,327.5,327.40000000000003,327.33,327.28000000000003,327.22,327.18,327.14,327.06,8.9,7.98,7.65,7.37,7.12,6.9,6.66,6.45,6.03,N/A,N/A -2012,12,26,4,30,101510,100270,99060,85.96000000000001,0,14.22,15.39,15.700000000000001,15.85,15.94,16,16.03,16.05,16.06,331.69,331.33,331.08,330.85,330.63,330.43,330.22,330.02,329.63,7.57,6.59,6.25,5.98,5.73,5.51,5.28,5.07,4.66,N/A,N/A -2012,12,26,5,30,101630,100380,99160,84.72,0,14.41,15.66,16,16.19,16.31,16.39,16.44,16.48,16.53,330.85,330.65000000000003,330.52,330.40000000000003,330.28000000000003,330.17,330.07,329.97,329.77,6.59,5.5600000000000005,5.22,4.94,4.69,4.46,4.23,4.0200000000000005,3.61,N/A,N/A -2012,12,26,6,30,101730,100470,99250,87.39,0,13.5,14.58,14.85,14.99,15.07,15.13,15.16,15.18,15.19,331.42,331.41,331.43,331.46,331.49,331.51,331.54,331.57,331.63,6.1000000000000005,5.05,4.7,4.42,4.16,3.94,3.71,3.49,3.08,N/A,N/A -2012,12,26,7,30,101820,100560,99340,86.99,0,13.48,14.55,14.81,14.950000000000001,15.030000000000001,15.09,15.120000000000001,15.14,15.15,334.24,334.2,334.16,334.13,334.1,334.07,334.04,334.02,333.97,5.74,4.69,4.34,4.0600000000000005,3.81,3.58,3.36,3.14,2.73,N/A,N/A -2012,12,26,8,30,101880,100620,99400,87.56,0,13.86,14.92,15.200000000000001,15.33,15.41,15.46,15.48,15.5,15.5,335.7,335.71,335.7,335.7,335.7,335.69,335.7,335.7,335.7,5.46,4.38,4.0200000000000005,3.73,3.48,3.25,3.0300000000000002,2.82,2.41,N/A,N/A -2012,12,26,9,30,101930,100670,99440,89.59,0,13.24,14.27,14.540000000000001,14.67,14.75,14.8,14.82,14.83,14.83,337.7,337.77,337.81,337.86,337.91,337.94,337.99,338.03000000000003,338.13,5.3100000000000005,4.24,3.88,3.6,3.34,3.12,2.89,2.68,2.27,N/A,N/A -2012,12,26,10,30,102000,100730,99510,90.25,0,12.32,13.22,13.44,13.55,13.6,13.64,13.65,13.65,13.63,339.02,339.09000000000003,339.13,339.17,339.21,339.24,339.28000000000003,339.32,339.40000000000003,5.18,4.16,3.81,3.54,3.29,3.06,2.84,2.63,2.23,N/A,N/A -2012,12,26,11,30,102060,100800,99570,90.38,0,11.65,12.46,12.65,12.74,12.780000000000001,12.81,12.81,12.81,12.780000000000001,340.64,340.71,340.76,340.81,340.85,340.88,340.93,340.97,341.05,5.08,4.08,3.74,3.47,3.22,3,2.7800000000000002,2.57,2.17,N/A,N/A -2012,12,26,12,30,102130,100860,99630,89.52,0,11.01,11.76,11.92,12,12.030000000000001,12.05,12.05,12.05,12.01,342.26,342.32,342.37,342.40000000000003,342.45,342.49,342.53000000000003,342.57,342.66,4.98,4.01,3.67,3.4,3.16,2.94,2.72,2.5100000000000002,2.11,N/A,N/A -2012,12,26,13,30,102180,100910,99680,89.71000000000001,0,10.370000000000001,11.05,11.200000000000001,11.27,11.290000000000001,11.31,11.31,11.3,11.27,344.2,344.38,344.49,344.59000000000003,344.68,344.77,344.86,344.95,345.14,4.9,3.96,3.64,3.38,3.13,2.92,2.7,2.49,2.09,N/A,N/A -2012,12,26,14,30,102240,100970,99740,90.66,0,9.72,10.31,10.43,10.48,10.5,10.5,10.49,10.48,10.44,345.47,345.65000000000003,345.75,345.84000000000003,345.94,346.02,346.11,346.2,346.37,4.97,4.0600000000000005,3.74,3.48,3.24,3.0300000000000002,2.81,2.61,2.21,N/A,N/A -2012,12,26,15,30,102220,100960,99730,90.81,0,10.76,11.450000000000001,11.59,11.66,11.68,11.69,11.68,11.67,11.63,346.11,346.21,346.28000000000003,346.34000000000003,346.40000000000003,346.46,346.52,346.59000000000003,346.71,5.3100000000000005,4.37,4.04,3.7800000000000002,3.54,3.3200000000000003,3.11,2.91,2.5100000000000002,N/A,N/A -2012,12,26,16,30,102240,100980,99750,89.26,0,9.73,10.33,10.46,10.52,10.540000000000001,10.55,10.55,10.540000000000001,10.5,346.16,346.25,346.32,346.37,346.42,346.47,346.51,346.56,346.65000000000003,5.7700000000000005,4.89,4.57,4.3100000000000005,4.08,3.86,3.65,3.45,3.0500000000000003,N/A,N/A -2012,12,26,17,30,102220,100960,99730,86.94,0,9.3,9.86,9.98,10.03,10.05,10.06,10.06,10.040000000000001,10.01,343.92,344.01,344.08,344.14,344.2,344.25,344.31,344.36,344.48,6.3500000000000005,5.5,5.2,4.95,4.71,4.5,4.29,4.09,3.69,N/A,N/A -2012,12,26,18,30,102240,100980,99760,83.05,0,8.43,8.92,9.01,9.05,9.07,9.07,9.07,9.05,9.02,342.49,342.62,342.72,342.8,342.88,342.95,343.03000000000003,343.11,343.26,7.03,6.23,5.94,5.7,5.46,5.26,5.05,4.84,4.45,N/A,N/A -2012,12,26,19,30,102220,100960,99750,79.55,0,8.69,9.200000000000001,9.31,9.35,9.36,9.370000000000001,9.36,9.34,9.31,343.35,343.52,343.62,343.72,343.82,343.90000000000003,344,344.09000000000003,344.27,7.74,6.95,6.67,6.43,6.2,6,5.78,5.58,5.19,N/A,N/A -2012,12,26,20,30,102160,100910,99700,76.2,0,8.9,9.44,9.540000000000001,9.58,9.6,9.6,9.6,9.58,9.540000000000001,345.27,345.44,345.55,345.66,345.76,345.85,345.96,346.06,346.28000000000003,8.45,7.68,7.4,7.16,6.93,6.73,6.5200000000000005,6.32,5.92,N/A,N/A -2012,12,26,21,30,102170,100920,99710,75.02,0,7.29,7.69,7.78,7.82,7.83,7.84,7.84,7.83,7.8100000000000005,348.47,348.76,348.93,349.08,349.23,349.37,349.51,349.65000000000003,349.92,9.13,8.43,8.17,7.930000000000001,7.71,7.51,7.3,7.1000000000000005,6.7,N/A,N/A -2012,12,26,22,30,102150,100910,99700,69.65,0,6.21,6.51,6.5600000000000005,6.57,6.57,6.5600000000000005,6.55,6.54,6.5,357.04,356.95,356.88,356.82,356.77,356.72,356.67,356.62,356.53000000000003,9.61,8.96,8.71,8.48,8.26,8.06,7.8500000000000005,7.65,7.26,N/A,N/A -2012,12,26,23,30,102140,100900,99690,68.98,0,6.32,6.61,6.65,6.65,6.640000000000001,6.62,6.6000000000000005,6.58,6.5200000000000005,3.7,3.8200000000000003,3.88,3.93,3.99,4.03,4.08,4.12,4.22,9.790000000000001,9.15,8.9,8.67,8.46,8.26,8.05,7.86,7.46,N/A,N/A -2012,12,27,0,30,102160,100920,99710,70.42,0,6.74,7.0600000000000005,7.1000000000000005,7.1000000000000005,7.09,7.07,7.04,7.01,6.94,16.240000000000002,16.34,16.4,16.44,16.490000000000002,16.53,16.580000000000002,16.63,16.73,9.72,9.07,8.81,8.58,8.36,8.16,7.95,7.76,7.36,N/A,N/A -2012,12,27,1,30,102160,100910,99700,70.47,0,6.61,6.9,6.93,6.93,6.91,6.890000000000001,6.8500000000000005,6.82,6.74,23.330000000000002,23.54,23.67,23.79,23.91,24.01,24.13,24.240000000000002,24.47,9.52,8.86,8.6,8.38,8.16,7.96,7.75,7.55,7.16,N/A,N/A -2012,12,27,2,30,102160,100910,99700,70.57000000000001,0,6.34,6.61,6.640000000000001,6.63,6.61,6.59,6.5600000000000005,6.5200000000000005,6.45,31.220000000000002,31.68,31.98,32.25,32.53,32.77,33.05,33.32,33.87,9.46,8.81,8.55,8.33,8.11,7.91,7.7,7.51,7.12,N/A,N/A -2012,12,27,3,30,102130,100890,99680,72.28,0,6.36,6.66,6.7,6.7,6.69,6.68,6.66,6.63,6.58,37.92,38.550000000000004,38.93,39.29,39.64,39.96,40.300000000000004,40.63,41.32,9.68,9.03,8.78,8.55,8.33,8.13,7.930000000000001,7.73,7.34,N/A,N/A -2012,12,27,4,30,102100,100860,99660,75.58,0,5.94,6.21,6.26,6.2700000000000005,6.2700000000000005,6.2700000000000005,6.25,6.24,6.2,46.26,47.1,47.61,48.08,48.53,48.95,49.39,49.800000000000004,50.64,10.11,9.48,9.23,9.01,8.790000000000001,8.6,8.38,8.19,7.79,N/A,N/A -2012,12,27,5,30,102090,100850,99640,75.48,0,5.8500000000000005,6.11,6.15,6.16,6.15,6.140000000000001,6.13,6.11,6.08,54.43,55.39,56,56.56,57.09,57.57,58.1,58.59,59.58,10.450000000000001,9.84,9.6,9.38,9.16,8.96,8.75,8.56,8.17,N/A,N/A -2012,12,27,6,30,102070,100830,99630,75.92,0,5.13,5.4,5.46,5.49,5.5200000000000005,5.54,5.55,5.5600000000000005,5.58,65.2,66.58,67.41,68.18,68.89,69.52,70.19,70.81,72.03,11.08,10.52,10.290000000000001,10.08,9.86,9.67,9.46,9.26,8.870000000000001,N/A,N/A -2012,12,27,7,30,102050,100820,99630,77.75,0,5.04,5.24,5.26,5.26,5.25,5.24,5.22,5.2,5.16,81.8,82.59,83.17,83.71000000000001,84.23,84.71000000000001,85.23,85.72,86.72,11.56,11.01,10.78,10.57,10.35,10.16,9.950000000000001,9.76,9.36,N/A,N/A -2012,12,27,8,30,102020,100800,99600,82.68,0,5.7700000000000005,6.11,6.18,6.21,6.23,6.25,6.25,6.25,6.25,88.4,89.88,90.55,91.15,91.67,92.14,92.63,93.07000000000001,93.94,12.09,11.540000000000001,11.31,11.09,10.88,10.68,10.47,10.27,9.88,N/A,N/A -2012,12,27,9,30,101990,100760,99570,76.12,0,5.48,5.78,5.8500000000000005,5.88,5.9,5.92,5.92,5.93,5.93,104.87,105.59,106.03,106.43,106.8,107.12,107.46000000000001,107.77,108.38,12.64,12.11,11.88,11.67,11.450000000000001,11.26,11.05,10.85,10.450000000000001,N/A,N/A -2012,12,27,10,30,101910,100690,99500,77.64,0,6.41,6.78,6.86,6.9,6.92,6.93,6.94,6.95,6.95,97.53,97.93,98.22,98.48,98.75,98.99000000000001,99.25,99.51,100.03,13.01,12.48,12.26,12.040000000000001,11.83,11.64,11.43,11.24,10.85,N/A,N/A -2012,12,27,11,30,101880,100660,99480,78.19,0.4,5.93,6.3100000000000005,6.4,6.45,6.49,6.51,6.53,6.55,6.58,107.9,109.32000000000001,110.03,110.69,111.31,111.88,112.48,113.04,114.19,13.700000000000001,13.200000000000001,12.99,12.77,12.57,12.38,12.17,11.98,11.59,N/A,N/A -2012,12,27,12,30,101850,100630,99440,81.28,2.9000000000000004,7.46,7.9,8.01,8.06,8.08,8.09,8.1,8.1,8.08,89.47,90.47,91.13,91.76,92.34,92.86,93.41,93.92,94.99,13.66,13.13,12.91,12.700000000000001,12.5,12.3,12.1,11.91,11.53,N/A,N/A -2012,12,27,13,30,101790,100570,99390,81.19,0,7.55,8.1,8.23,8.3,8.34,8.370000000000001,8.39,8.4,8.4,104.92,105.35000000000001,105.57000000000001,105.77,105.97,106.14,106.33,106.5,106.85000000000001,14.17,13.66,13.43,13.22,13.01,12.81,12.6,12.4,12.01,N/A,N/A -2012,12,27,14,30,101780,100560,99380,80.68,0,8.1,8.69,8.84,8.91,8.96,8.99,9.01,9.02,9.02,103.02,103.60000000000001,103.9,104.16,104.42,104.65,104.89,105.11,105.58,14.59,14.08,13.870000000000001,13.65,13.44,13.25,13.040000000000001,12.85,12.46,N/A,N/A -2012,12,27,15,30,101750,100540,99360,83.73,0,8.32,8.92,9.09,9.17,9.23,9.27,9.31,9.33,9.36,95.58,96.41,96.83,97.21000000000001,97.54,97.84,98.14,98.42,98.98,14.83,14.33,14.120000000000001,13.9,13.69,13.5,13.3,13.1,12.71,N/A,N/A -2012,12,27,16,30,101700,100490,99320,82.71000000000001,0,8.91,9.61,9.8,9.89,9.950000000000001,9.99,10.02,10.03,10.040000000000001,99.08,99.16,99.24000000000001,99.33,99.41,99.5,99.58,99.66,99.85000000000001,15.120000000000001,14.620000000000001,14.41,14.19,13.98,13.790000000000001,13.58,13.39,13,N/A,N/A -2012,12,27,17,30,101630,100420,99250,85.02,0,9.82,10.69,10.92,11.05,11.14,11.200000000000001,11.25,11.28,11.33,99.58,100,100.26,100.52,100.75,100.97,101.19,101.4,101.82000000000001,15.43,14.94,14.72,14.51,14.31,14.11,13.91,13.72,13.33,N/A,N/A -2012,12,27,18,30,101580,100380,99210,86.29,1.1,10.92,11.91,12.16,12.3,12.38,12.44,12.47,12.5,12.52,102.68,103.08,103.31,103.52,103.72,103.9,104.10000000000001,104.28,104.65,15.66,15.17,14.96,14.74,14.530000000000001,14.34,14.14,13.950000000000001,13.56,N/A,N/A -2012,12,27,19,30,101540,100340,99170,85.49,0,10.64,11.65,11.92,12.08,12.18,12.25,12.3,12.34,12.38,107.27,107.61,107.8,107.99000000000001,108.16,108.31,108.48,108.63,108.94,16.21,15.76,15.55,15.34,15.13,14.94,14.74,14.55,14.16,N/A,N/A -2012,12,27,20,30,101500,100300,99140,86.09,0,11.36,12.43,12.76,12.93,13.040000000000001,13.120000000000001,13.17,13.200000000000001,13.23,110.16,110.32000000000001,110.45,110.58,110.7,110.81,110.93,111.05,111.31,16.55,16.12,15.92,15.71,15.5,15.31,15.11,14.92,14.530000000000001,N/A,N/A -2012,12,27,21,30,101420,100220,99060,90.68,1.1,11.08,12.23,12.56,12.76,12.9,13,13.07,13.13,13.200000000000001,112.11,112.68,112.93,113.15,113.35000000000001,113.54,113.74000000000001,113.92,114.29,16.86,16.45,16.26,16.05,15.85,15.67,15.47,15.290000000000001,14.9,N/A,N/A -2012,12,27,22,30,101360,100170,99010,89.55,4.800000000000001,12.09,13.23,13.52,13.65,13.72,13.76,13.76,13.76,13.72,114.71000000000001,114.94,115.11,115.31,115.52,115.73,115.99000000000001,116.23,116.88,17.18,16.79,16.6,16.4,16.21,16.02,15.83,15.65,15.280000000000001,N/A,N/A -2012,12,27,23,30,101300,100110,98950,91.72,0,10.14,11.01,11.22,11.33,11.4,11.46,11.56,11.69,12.43,104.94,105.44,105.86,106.38,107.05,107.77,108.99000000000001,110.51,118.67,17.41,17.05,16.88,16.69,16.51,16.34,16.17,16.03,15.88,N/A,N/A -2012,12,28,0,30,101270,100080,98920,91.7,5.5,11.42,12.57,12.88,13.06,13.19,13.290000000000001,13.370000000000001,13.44,13.68,114.8,115.13,115.41,115.72,116.04,116.38,116.8,117.22,118.53,17.82,17.490000000000002,17.32,17.12,16.94,16.76,16.57,16.4,16.05,N/A,N/A -2012,12,28,1,30,101250,100060,98910,93.45,0.4,8.34,9.61,10.1,10.34,10.620000000000001,10.94,11.21,11.44,11.83,121.44,122.63,123.61,124.89,126.29,127.81,129.49,131.1,134.34,18.36,18.12,17.98,17.8,17.66,17.55,17.44,17.34,17.11,N/A,N/A -2012,12,28,2,30,101210,100020,98870,91.04,0,8.41,9.5,9.89,10.23,10.52,10.790000000000001,11.040000000000001,11.28,11.77,125.54,126.14,126.57000000000001,127.09,127.65,128.24,128.93,129.6,131.38,18.740000000000002,18.54,18.400000000000002,18.25,18.1,17.96,17.81,17.67,17.400000000000002,N/A,N/A -2012,12,28,3,30,101190,100010,98860,90.73,0.7000000000000001,8.3,9.51,9.97,10.36,10.71,11.02,11.31,11.58,12.11,140.37,140.91,141.43,142.13,142.88,143.69,144.64000000000001,145.56,147.66,19.06,18.94,18.86,18.740000000000002,18.63,18.52,18.41,18.3,18.07,N/A,N/A -2012,12,28,4,30,101150,99970,98820,91.99,0.4,8.27,9.63,10.17,10.64,11.08,11.47,11.86,12.21,12.86,145.22,145.79,146.38,147.1,147.83,148.56,149.28,149.95000000000002,151.17000000000002,19.25,19.16,19.080000000000002,18.96,18.85,18.73,18.6,18.48,18.22,N/A,N/A -2012,12,28,5,30,101100,99920,98780,93.36,1.8,7.58,9.03,9.68,10.38,11.05,11.72,12.39,13.030000000000001,14.24,154.92000000000002,155.61,156.20000000000002,156.92000000000002,157.64000000000001,158.37,159.1,159.78,160.96,19.19,19.11,19.04,18.95,18.86,18.78,18.68,18.6,18.43,N/A,N/A -2012,12,28,6,30,101080,99900,98760,90.46000000000001,0,9.18,10.89,11.67,12.42,13.08,13.68,14.24,14.74,15.59,154.75,155.35,155.76,156.16,156.5,156.8,157.11,157.4,158.21,19.73,19.73,19.68,19.6,19.52,19.44,19.34,19.25,19.04,N/A,N/A -2012,12,28,7,30,101030,99850,98710,88.51,0,10.17,12.1,12.92,13.69,14.370000000000001,15.01,15.6,16.15,17.150000000000002,159.67000000000002,160.17000000000002,160.59,161.09,161.56,162.04,162.49,162.9,163.61,20.14,20.22,20.2,20.16,20.11,20.05,19.97,19.900000000000002,19.71,N/A,N/A -2012,12,28,8,30,101020,99850,98710,90.46000000000001,0,9.84,11.57,12.33,13.02,13.61,14.17,14.69,15.17,16.080000000000002,163.79,164.18,164.48,164.92000000000002,165.35,165.83,166.31,166.78,167.78,20.13,20.240000000000002,20.25,20.22,20.18,20.12,20.05,19.97,19.77,N/A,N/A -2012,12,28,9,30,100960,99790,98650,91.27,0,9.31,11.14,11.94,12.69,13.34,13.94,14.51,15.030000000000001,16.03,164.71,165.20000000000002,165.66,166.32,166.98,167.68,168.42000000000002,169.12,170.47,20.17,20.28,20.29,20.26,20.23,20.18,20.13,20.07,19.92,N/A,N/A -2012,12,28,10,30,100940,99770,98630,89.97,0,9.09,10.94,11.76,12.530000000000001,13.200000000000001,13.81,14.370000000000001,14.89,15.81,166.65,167.23,167.72,168.31,168.86,169.41,169.94,170.44,171.39000000000001,20.36,20.5,20.51,20.48,20.43,20.36,20.29,20.21,20.03,N/A,N/A -2012,12,28,11,30,100890,99720,98580,90.36,0,10.27,12.19,13.01,13.77,14.44,15.05,15.620000000000001,16.15,17.13,171.84,172.18,172.45000000000002,172.81,173.18,173.57,173.96,174.35,175.14000000000001,20.37,20.51,20.53,20.5,20.46,20.41,20.34,20.27,20.1,N/A,N/A -2012,12,28,12,30,100870,99700,98570,89.8,0.7000000000000001,10.78,12.870000000000001,13.77,14.620000000000001,15.36,16.04,16.66,17.21,18.2,175.58,175.86,176,176.18,176.34,176.48,176.61,176.73,176.92000000000002,20.490000000000002,20.67,20.69,20.68,20.650000000000002,20.6,20.53,20.46,20.27,N/A,N/A -2012,12,28,13,30,100810,99640,98510,89.5,0.4,11.14,13.24,14.15,14.950000000000001,15.65,16.3,16.89,17.42,18.43,176.17000000000002,176.12,176.38,176.64000000000001,176.89000000000001,177.13,177.36,177.58,178.04,20.56,20.75,20.78,20.76,20.72,20.68,20.61,20.54,20.37,N/A,N/A -2012,12,28,14,30,100900,99730,98590,92.79,99.2,8.89,10.46,11.23,11.97,12.61,13.23,13.84,14.44,15.620000000000001,192.1,191.78,191.4,190.73,189.99,189.02,187.87,186.63,184,19.85,19.87,19.84,19.740000000000002,19.66,19.57,19.48,19.38,19.19,N/A,N/A -2012,12,28,15,30,100990,99820,98680,98.78,566.9,9.5,9.97,10.200000000000001,10.46,10.68,10.88,11.05,11.19,11.4,301.94,293.14,285.98,279.35,274.25,270.4,267.46,265.23,262.25,18.45,18.62,18.8,18.93,19,18.96,18.900000000000002,18.830000000000002,18.650000000000002,N/A,N/A -2012,12,28,16,30,101050,99850,98690,93.94,24.5,9.78,10.51,10.72,10.78,10.82,10.82,10.82,10.82,10.89,322.88,323.3,323.26,323.22,323.17,323.12,323.05,322.97,322.73,15.8,15.34,15.14,14.93,14.74,14.55,14.36,14.19,13.84,N/A,N/A -2012,12,28,17,30,101030,99820,98650,91.52,0,11.01,11.88,12.09,12.17,12.21,12.23,12.23,12.23,12.23,328.09000000000003,328.03000000000003,328.02,328,327.97,327.94,327.91,327.87,327.74,14.71,14.16,13.94,13.73,13.52,13.33,13.14,12.96,12.58,N/A,N/A -2012,12,28,18,30,101070,99860,98690,90.98,2.6,10.540000000000001,11.35,11.55,11.64,11.69,11.72,11.73,11.75,11.8,326.72,326.77,326.77,326.75,326.73,326.69,326.66,326.62,326.5,14.34,13.77,13.55,13.34,13.14,12.950000000000001,12.76,12.57,12.21,N/A,N/A -2012,12,28,19,30,101150,99940,98770,88.13,0,9.55,10.25,10.450000000000001,10.540000000000001,10.59,10.63,10.65,10.66,10.69,330.33,330.2,330.12,330.04,329.97,329.90000000000003,329.82,329.74,329.58,14.39,13.85,13.620000000000001,13.41,13.200000000000001,13.01,12.81,12.620000000000001,12.24,N/A,N/A -2012,12,28,20,30,101210,100000,98830,86.12,0,10.41,11.28,11.53,11.66,11.75,11.81,11.86,11.89,11.950000000000001,327.72,327.75,327.77,327.78000000000003,327.79,327.8,327.81,327.82,327.84000000000003,14.58,14.030000000000001,13.8,13.58,13.370000000000001,13.18,12.97,12.780000000000001,12.39,N/A,N/A -2012,12,28,21,30,101310,100100,98930,83.76,0,11.05,11.96,12.22,12.35,12.44,12.49,12.530000000000001,12.55,12.58,331.12,331.06,331.01,330.96,330.92,330.88,330.84000000000003,330.8,330.73,14.18,13.6,13.36,13.13,12.91,12.71,12.5,12.31,11.91,N/A,N/A -2012,12,28,22,30,101400,100190,99000,83.89,0,12.63,13.72,14.030000000000001,14.18,14.280000000000001,14.35,14.39,14.42,14.44,332.88,332.95,332.98,333.02,333.05,333.08,333.11,333.14,333.2,13.13,12.450000000000001,12.19,11.950000000000001,11.73,11.53,11.31,11.11,10.71,N/A,N/A -2012,12,28,23,30,101500,100280,99090,85.23,0,11.73,12.700000000000001,12.98,13.120000000000001,13.21,13.280000000000001,13.33,13.36,13.41,338.89,338.85,338.8,338.75,338.71,338.66,338.62,338.58,338.49,12.21,11.5,11.23,10.99,10.76,10.55,10.33,10.13,9.73,N/A,N/A -2012,12,29,0,30,101610,100380,99190,85.55,0,12.22,13.26,13.56,13.72,13.82,13.89,13.94,13.98,14.02,340.33,340.34000000000003,340.36,340.37,340.38,340.39,340.41,340.42,340.44,11.57,10.82,10.540000000000001,10.290000000000001,10.06,9.85,9.63,9.43,9.02,N/A,N/A -2012,12,29,1,30,101710,100480,99280,86.3,0,12.07,13.05,13.33,13.46,13.55,13.61,13.64,13.67,13.69,342.2,342.1,342.06,342.03000000000003,342.01,341.99,341.98,341.97,341.95,10.78,10,9.71,9.46,9.22,9.01,8.790000000000001,8.59,8.18,N/A,N/A -2012,12,29,2,30,101810,100570,99370,86.31,0,12.47,13.46,13.74,13.89,13.97,14.040000000000001,14.07,14.09,14.11,341.32,341.65000000000003,341.88,342.1,342.3,342.48,342.66,342.84000000000003,343.19,10.27,9.44,9.15,8.89,8.65,8.44,8.22,8.02,7.61,N/A,N/A -2012,12,29,3,30,101890,100650,99450,88.38,0,11.3,12.18,12.43,12.57,12.66,12.72,12.76,12.790000000000001,12.82,346.8,347.11,347.22,347.29,347.35,347.40000000000003,347.44,347.48,347.54,9.9,9.09,8.790000000000001,8.53,8.290000000000001,8.07,7.84,7.640000000000001,7.23,N/A,N/A -2012,12,29,4,30,101970,100730,99520,88.74,0,11.69,12.59,12.84,12.97,13.05,13.1,13.13,13.15,13.16,344.82,344.90000000000003,345.02,345.14,345.26,345.37,345.48,345.59000000000003,345.79,9.49,8.64,8.33,8.07,7.83,7.61,7.38,7.18,6.76,N/A,N/A -2012,12,29,5,30,102040,100790,99580,89.71000000000001,0,10.46,11.19,11.38,11.47,11.53,11.56,11.58,11.59,11.59,346.97,347.49,347.65000000000003,347.78000000000003,347.89,347.98,348.05,348.12,348.26,8.78,7.97,7.67,7.42,7.18,6.97,6.75,6.54,6.140000000000001,N/A,N/A -2012,12,29,6,30,102160,100900,99680,82.29,0,13.31,14.35,14.620000000000001,14.74,14.81,14.86,14.870000000000001,14.88,14.870000000000001,356.90000000000003,356.68,356.51,356.35,356.19,356.06,355.90000000000003,355.76,355.46,7.6000000000000005,6.63,6.3100000000000005,6.04,5.8,5.58,5.36,5.16,4.76,N/A,N/A -2012,12,29,7,30,102250,101000,99770,81.2,0,12.94,13.96,14.22,14.35,14.42,14.47,14.5,14.51,14.51,1.43,1.18,1.01,0.85,0.7000000000000001,0.56,0.41000000000000003,0.26,359.97,7.26,6.3,5.98,5.71,5.47,5.26,5.04,4.84,4.44,N/A,N/A -2012,12,29,8,30,102310,101050,99830,81.07000000000001,0,12.61,13.6,13.86,13.99,14.07,14.120000000000001,14.15,14.17,14.19,359.08,358.82,358.66,358.51,358.37,358.24,358.11,357.99,357.75,7.11,6.15,5.83,5.57,5.33,5.11,4.89,4.69,4.29,N/A,N/A -2012,12,29,9,30,102400,101140,99920,78.04,0,12.96,13.96,14.21,14.32,14.38,14.42,14.44,14.450000000000001,14.44,1.33,1.1400000000000001,1.01,0.88,0.76,0.66,0.55,0.44,0.23,6.8,5.82,5.49,5.22,4.98,4.7700000000000005,4.55,4.3500000000000005,3.95,N/A,N/A -2012,12,29,10,30,102510,101250,100020,75.41,0,13.01,13.99,14.25,14.370000000000001,14.43,14.47,14.48,14.49,14.47,1.8800000000000001,1.73,1.6300000000000001,1.53,1.44,1.36,1.27,1.19,1.02,6.5,5.51,5.17,4.9,4.66,4.45,4.23,4.03,3.63,N/A,N/A -2012,12,29,11,30,102600,101330,100100,70.18,0,12.89,13.870000000000001,14.120000000000001,14.23,14.290000000000001,14.33,14.35,14.36,14.35,2.24,2.21,2.18,2.15,2.13,2.1,2.07,2.04,1.97,6.21,5.2,4.87,4.6000000000000005,4.36,4.15,3.93,3.73,3.34,N/A,N/A -2012,12,29,12,30,102670,101400,100170,68.39,0,12.67,13.63,13.870000000000001,13.99,14.06,14.1,14.13,14.14,14.15,4.33,4.5,4.61,4.7,4.78,4.8500000000000005,4.92,4.97,5.08,5.97,4.98,4.64,4.38,4.13,3.92,3.7,3.5,3.11,N/A,N/A -2012,12,29,13,30,102760,101490,100250,69.11,0,12.55,13.5,13.74,13.86,13.93,13.97,14,14.01,14.01,4.8,4.94,5.04,5.11,5.19,5.24,5.3,5.3500000000000005,5.44,5.82,4.8100000000000005,4.48,4.21,3.96,3.75,3.5300000000000002,3.33,2.94,N/A,N/A -2012,12,29,14,30,102840,101570,100330,69.91,0,11.92,12.790000000000001,13.01,13.13,13.19,13.24,13.26,13.280000000000001,13.290000000000001,6.76,6.8500000000000005,6.92,6.97,7.01,7.05,7.09,7.12,7.19,5.57,4.59,4.25,3.99,3.74,3.5300000000000002,3.31,3.11,2.72,N/A,N/A -2012,12,29,15,30,102860,101590,100350,69.3,0,10.74,11.49,11.68,11.78,11.84,11.88,11.91,11.93,11.97,1.75,1.86,1.93,2,2.07,2.12,2.17,2.22,2.3000000000000003,5.67,4.75,4.44,4.18,3.95,3.74,3.5300000000000002,3.33,2.95,N/A,N/A -2012,12,29,16,30,102900,101630,100390,67.44,0,9.64,10.290000000000001,10.46,10.55,10.61,10.66,10.69,10.72,10.77,359.46,359.38,359.34000000000003,359.3,359.26,359.24,359.2,359.17,359.11,6.3,5.44,5.14,4.89,4.66,4.46,4.25,4.05,3.67,N/A,N/A -2012,12,29,17,30,102880,101620,100390,66.02,0,9.61,10.26,10.43,10.53,10.59,10.63,10.67,10.69,10.74,354.52,354.51,354.51,354.52,354.53000000000003,354.55,354.56,354.57,354.61,7,6.16,5.86,5.61,5.38,5.17,4.96,4.7700000000000005,4.37,N/A,N/A -2012,12,29,18,30,102890,101630,100400,63.79,0,9.49,10.14,10.31,10.4,10.46,10.51,10.540000000000001,10.57,10.61,350.05,349.99,349.95,349.91,349.89,349.86,349.85,349.84000000000003,349.82,7.86,7.0600000000000005,6.7700000000000005,6.5200000000000005,6.29,6.09,5.88,5.68,5.28,N/A,N/A -2012,12,29,19,30,102890,101640,100410,62,0,9.5,10.16,10.34,10.43,10.49,10.53,10.56,10.58,10.61,350.19,350.12,350.07,350.04,350,349.97,349.95,349.93,349.89,8.67,7.88,7.6000000000000005,7.36,7.13,6.93,6.71,6.51,6.11,N/A,N/A -2012,12,29,20,30,102890,101640,100420,59.93,0,9.040000000000001,9.65,9.8,9.88,9.93,9.96,9.99,10.01,10.03,349.95,349.92,349.90000000000003,349.88,349.88,349.87,349.86,349.85,349.85,9.27,8.53,8.26,8.02,7.8,7.59,7.38,7.18,6.78,N/A,N/A -2012,12,29,21,30,102900,101650,100430,57.59,0,8.53,9.09,9.23,9.31,9.35,9.39,9.41,9.42,9.44,352.24,352.17,352.12,352.07,352.03000000000003,352,351.96,351.93,351.88,9.75,9.040000000000001,8.78,8.540000000000001,8.31,8.11,7.890000000000001,7.7,7.29,N/A,N/A -2012,12,29,22,30,102910,101660,100440,55.89,0,8.52,9.07,9.200000000000001,9.26,9.3,9.33,9.34,9.35,9.36,350.57,350.53000000000003,350.52,350.5,350.49,350.47,350.47,350.46,350.45,10.05,9.36,9.09,8.86,8.64,8.44,8.22,8.02,7.62,N/A,N/A -2012,12,29,23,30,102930,101680,100460,56.03,0,8.51,9.06,9.19,9.25,9.290000000000001,9.31,9.32,9.33,9.34,356.35,356.45,356.5,356.54,356.58,356.62,356.67,356.7,356.79,10.13,9.43,9.18,8.94,8.72,8.52,8.3,8.1,7.7,N/A,N/A -2012,12,30,0,30,103000,101750,100530,56.47,0,8.8,9.36,9.49,9.55,9.58,9.6,9.61,9.61,9.61,3.3200000000000003,3.21,3.12,3.0300000000000002,2.95,2.88,2.8000000000000003,2.74,2.6,10.02,9.32,9.05,8.82,8.59,8.39,8.17,7.98,7.58,N/A,N/A -2012,12,30,1,30,103030,101770,100560,55.57,0,9.22,9.82,9.950000000000001,10,10.03,10.05,10.05,10.05,10.03,6.24,6.140000000000001,6.08,6.03,5.98,5.93,5.88,5.83,5.74,9.72,8.99,8.73,8.49,8.27,8.07,7.86,7.66,7.2700000000000005,N/A,N/A -2012,12,30,2,30,103060,101810,100590,59.34,0,9.02,9.6,9.72,9.78,9.81,9.83,9.84,9.84,9.83,8.97,9.26,9.44,9.6,9.75,9.89,10.040000000000001,10.17,10.450000000000001,9.49,8.76,8.49,8.25,8.03,7.83,7.61,7.41,7.01,N/A,N/A -2012,12,30,3,30,103080,101830,100610,59.22,0,9.13,9.72,9.84,9.9,9.93,9.950000000000001,9.950000000000001,9.950000000000001,9.93,17.06,17.12,17.16,17.19,17.23,17.27,17.31,17.35,17.44,9.38,8.64,8.38,8.14,7.91,7.71,7.5,7.3,6.9,N/A,N/A -2012,12,30,4,30,103060,101800,100580,59.33,0,9.59,10.22,10.36,10.42,10.450000000000001,10.47,10.47,10.46,10.450000000000001,20.82,20.94,21,21.06,21.12,21.18,21.240000000000002,21.3,21.42,9.28,8.52,8.25,8.01,7.78,7.58,7.37,7.17,6.7700000000000005,N/A,N/A -2012,12,30,5,30,103060,101800,100580,60.34,0,9.61,10.25,10.39,10.450000000000001,10.48,10.5,10.5,10.49,10.47,25.400000000000002,25.63,25.79,25.92,26.05,26.18,26.310000000000002,26.43,26.69,9.17,8.41,8.13,7.9,7.67,7.47,7.25,7.05,6.66,N/A,N/A -2012,12,30,6,30,103080,101830,100600,61.58,0,9.52,10.15,10.28,10.35,10.38,10.39,10.4,10.39,10.370000000000001,32.25,32.53,32.69,32.84,32.99,33.12,33.27,33.4,33.67,9.16,8.41,8.14,7.9,7.67,7.47,7.26,7.0600000000000005,6.66,N/A,N/A -2012,12,30,7,30,103100,101840,100620,61.51,0,9.53,10.16,10.3,10.36,10.39,10.41,10.41,10.41,10.39,37.7,38.09,38.33,38.550000000000004,38.76,38.95,39.15,39.33,39.72,9.18,8.43,8.17,7.930000000000001,7.7,7.5,7.29,7.09,6.69,N/A,N/A -2012,12,30,8,30,103100,101850,100630,65.35,0,8.84,9.41,9.53,9.6,9.63,9.65,9.65,9.65,9.64,44.4,44.97,45.300000000000004,45.61,45.910000000000004,46.18,46.45,46.7,47.230000000000004,9.38,8.65,8.38,8.15,7.92,7.72,7.51,7.3100000000000005,6.91,N/A,N/A -2012,12,30,9,30,103090,101840,100620,70.09,0,9,9.6,9.73,9.8,9.83,9.85,9.86,9.870000000000001,9.86,51.660000000000004,52.02,52.24,52.44,52.63,52.800000000000004,52.980000000000004,53.14,53.47,9.51,8.790000000000001,8.52,8.28,8.06,7.8500000000000005,7.640000000000001,7.44,7.03,N/A,N/A -2012,12,30,10,30,103080,101830,100610,61.75,0,9.200000000000001,9.8,9.92,9.98,10,10.02,10.01,10.01,9.98,56.85,57.11,57.27,57.410000000000004,57.54,57.67,57.800000000000004,57.92,58.17,9.65,8.92,8.65,8.42,8.19,7.98,7.7700000000000005,7.57,7.17,N/A,N/A -2012,12,30,11,30,103080,101830,100610,69.78,0,8.86,9.44,9.56,9.620000000000001,9.65,9.67,9.67,9.67,9.65,58.230000000000004,58.72,59.02,59.29,59.550000000000004,59.78,60.03,60.26,60.72,9.700000000000001,8.98,8.72,8.49,8.26,8.06,7.84,7.640000000000001,7.24,N/A,N/A -2012,12,30,12,30,103090,101840,100620,71.62,0,8.67,9.23,9.36,9.41,9.450000000000001,9.47,9.47,9.48,9.46,63.95,64.38,64.63,64.87,65.09,65.29,65.5,65.7,66.1,9.99,9.290000000000001,9.03,8.8,8.57,8.370000000000001,8.16,7.96,7.5600000000000005,N/A,N/A -2012,12,30,13,30,103090,101840,100620,67.2,0,8.42,8.950000000000001,9.06,9.11,9.14,9.15,9.15,9.15,9.13,71.4,71.65,71.81,71.95,72.09,72.21000000000001,72.34,72.46000000000001,72.7,10.34,9.67,9.41,9.18,8.96,8.76,8.540000000000001,8.34,7.94,N/A,N/A -2012,12,30,14,30,103110,101860,100640,69.19,0,8.33,8.85,8.96,9.01,9.03,9.040000000000001,9.040000000000001,9.040000000000001,9.02,72.96000000000001,73.28,73.48,73.66,73.84,74,74.17,74.34,74.67,10.39,9.72,9.47,9.24,9.02,8.82,8.6,8.4,8,N/A,N/A -2012,12,30,15,30,103100,101850,100630,71.87,0,8.2,8.72,8.82,8.870000000000001,8.9,8.91,8.91,8.91,8.9,76.29,76.69,76.93,77.15,77.37,77.57000000000001,77.76,77.95,78.33,10.66,10.01,9.76,9.53,9.3,9.11,8.89,8.69,8.290000000000001,N/A,N/A -2012,12,30,16,30,103060,101810,100600,73.94,0,7.72,8.19,8.290000000000001,8.34,8.370000000000001,8.39,8.4,8.4,8.39,79.76,80.17,80.42,80.65,80.87,81.07000000000001,81.27,81.47,81.85000000000001,10.950000000000001,10.31,10.07,9.84,9.620000000000001,9.43,9.21,9.01,8.61,N/A,N/A -2012,12,30,17,30,103020,101770,100560,71.73,0,7.23,7.65,7.73,7.7700000000000005,7.78,7.79,7.79,7.78,7.76,84.09,84.51,84.78,85.02,85.25,85.45,85.67,85.87,86.28,11.23,10.620000000000001,10.38,10.15,9.94,9.74,9.53,9.33,8.93,N/A,N/A -2012,12,30,18,30,102980,101740,100530,74.5,0,6.7700000000000005,7.16,7.23,7.2700000000000005,7.28,7.29,7.29,7.29,7.2700000000000005,84.32000000000001,84.94,85.32000000000001,85.66,85.98,86.27,86.58,86.87,87.44,11.51,10.92,10.68,10.46,10.25,10.05,9.84,9.64,9.25,N/A,N/A -2012,12,30,19,30,102950,101710,100500,75.72,0,6.63,7,7.07,7.1000000000000005,7.11,7.12,7.12,7.11,7.1000000000000005,82.71000000000001,83.38,83.79,84.16,84.51,84.83,85.16,85.47,86.08,11.78,11.200000000000001,10.97,10.76,10.540000000000001,10.34,10.13,9.94,9.540000000000001,N/A,N/A -2012,12,30,20,30,102890,101650,100440,76.62,0,6.53,6.9,6.98,7.0200000000000005,7.04,7.05,7.05,7.0600000000000005,7.05,85.09,85.65,86.01,86.33,86.64,86.92,87.21000000000001,87.48,88.03,12.05,11.49,11.26,11.040000000000001,10.82,10.63,10.42,10.22,9.83,N/A,N/A -2012,12,30,21,30,102830,101600,100390,79.41,0,6.8500000000000005,7.26,7.36,7.41,7.43,7.45,7.46,7.46,7.46,85.53,86.33,86.76,87.15,87.5,87.82000000000001,88.15,88.45,89.05,12.41,11.85,11.620000000000001,11.4,11.18,10.99,10.78,10.58,10.19,N/A,N/A -2012,12,30,22,30,102750,101520,100320,78.61,0,6.96,7.390000000000001,7.49,7.54,7.5600000000000005,7.58,7.6000000000000005,7.61,7.62,91.83,91.91,92.05,92.19,92.34,92.49,92.66,92.82000000000001,93.18,12.56,12,11.78,11.56,11.35,11.15,10.94,10.74,10.35,N/A,N/A -2012,12,30,23,30,102700,101460,100270,79.09,0,7.890000000000001,8.4,8.52,8.57,8.6,8.620000000000001,8.63,8.63,8.63,92.16,93.06,93.58,94.05,94.48,94.86,95.27,95.64,96.4,13.16,12.61,12.38,12.17,11.950000000000001,11.76,11.55,11.35,10.96,N/A,N/A -2012,12,31,0,30,102660,101430,100240,79.2,0,7.54,8.08,8.21,8.290000000000001,8.33,8.370000000000001,8.39,8.41,8.44,98.85000000000001,99.43,99.76,100.06,100.34,100.59,100.85000000000001,101.09,101.59,13.6,13.07,12.85,12.63,12.42,12.22,12.01,11.82,11.42,N/A,N/A -2012,12,31,1,30,102610,101380,100190,78.48,0,7.95,8.52,8.66,8.74,8.790000000000001,8.82,8.85,8.870000000000001,8.89,102.65,103.35000000000001,103.7,104.02,104.31,104.56,104.82000000000001,105.07000000000001,105.55,14.02,13.51,13.280000000000001,13.07,12.86,12.66,12.450000000000001,12.26,11.86,N/A,N/A -2012,12,31,2,30,102580,101360,100170,77.87,0,7.57,8.16,8.32,8.42,8.49,8.55,8.59,8.63,8.69,106.64,107.46000000000001,107.87,108.24000000000001,108.57000000000001,108.87,109.17,109.44,109.98,14.57,14.08,13.870000000000001,13.66,13.450000000000001,13.26,13.05,12.85,12.46,N/A,N/A -2012,12,31,3,30,102520,101300,100110,77.65,0,7.17,7.66,7.7700000000000005,7.82,7.8500000000000005,7.87,7.88,7.88,7.890000000000001,111.82000000000001,112.21000000000001,112.51,112.81,113.10000000000001,113.38,113.7,114,114.67,15.09,14.620000000000001,14.42,14.21,14.01,13.82,13.61,13.42,13.040000000000001,N/A,N/A -2012,12,31,4,30,102460,101250,100070,80.9,0,7.2,7.79,7.96,8.06,8.14,8.2,8.25,8.290000000000001,8.35,105.71000000000001,106.37,106.72,107.06,107.37,107.65,107.94,108.2,108.75,15.700000000000001,15.27,15.07,14.86,14.66,14.47,14.27,14.08,13.69,N/A,N/A -2012,12,31,5,30,102410,101200,100020,83.57000000000001,0,8.35,9.01,9.16,9.24,9.290000000000001,9.32,9.33,9.34,9.34,102.15,102.42,102.67,102.92,103.17,103.4,103.67,103.92,104.49000000000001,16.05,15.620000000000001,15.42,15.21,15.01,14.82,14.620000000000001,14.44,14.05,N/A,N/A -2012,12,31,6,30,102380,101170,99990,83.93,0,8.75,9.56,9.78,9.91,9.99,10.040000000000001,10.07,10.09,10.11,108.52,108.9,109.14,109.37,109.57000000000001,109.76,109.94,110.12,110.48,16.69,16.330000000000002,16.14,15.94,15.74,15.55,15.35,15.17,14.780000000000001,N/A,N/A -2012,12,31,7,30,102360,101150,99970,85.54,0,8.88,9.69,9.91,10.02,10.08,10.13,10.14,10.15,10.14,103.81,104.13,104.43,104.73,105.02,105.28,105.57000000000001,105.85000000000001,106.46000000000001,16.86,16.51,16.330000000000002,16.13,15.93,15.75,15.55,15.36,14.98,N/A,N/A -2012,12,31,8,30,102280,101070,99900,87.4,0,9.91,10.790000000000001,11,11.09,11.15,11.17,11.18,11.19,11.200000000000001,109.34,109.57000000000001,109.75,109.95,110.18,110.4,110.7,110.99000000000001,111.93,16.94,16.59,16.41,16.21,16.02,15.84,15.64,15.46,15.09,N/A,N/A -2012,12,31,9,30,102240,101030,99860,88.60000000000001,0,9.31,10.16,10.38,10.5,10.57,10.63,10.67,10.71,10.9,113.31,113.68,113.88,114.12,114.4,114.7,115.11,115.53,117.41,17.41,17.11,16.94,16.75,16.56,16.38,16.19,16.02,15.67,N/A,N/A -2012,12,31,10,30,102180,100980,99810,90.73,0,8.65,9.51,9.78,9.99,10.200000000000001,10.41,10.73,11.040000000000001,11.09,117.18,117.44,117.71000000000001,118.11,118.67,119.32000000000001,120.3,121.3,125.16,17.650000000000002,17.38,17.23,17.04,16.87,16.7,16.54,16.38,16.13,N/A,N/A -2012,12,31,11,30,102110,100910,99750,93.61,0,8,9.31,9.74,9.870000000000001,10.14,10.46,10.71,10.9,11.1,113.31,115.23,116.21000000000001,116.72,117.89,119.38,121.06,122.65,126.45,17.63,17.39,17.25,17.07,16.94,16.84,16.72,16.62,16.41,N/A,N/A -2012,12,31,12,30,102070,100870,99700,93.51,0,8.2,9.21,9.57,9.88,10.15,10.4,10.67,10.91,11.46,116.12,116.53,116.87,117.29,117.79,118.32000000000001,119.10000000000001,119.92,124.06,17.89,17.650000000000002,17.51,17.35,17.19,17.04,16.9,16.77,16.65,N/A,N/A -2012,12,31,13,30,102010,100820,99660,94.8,0,7.7,8.76,9.16,9.52,9.85,10.14,10.44,10.72,11.26,119.09,119.74000000000001,120.17,120.72,121.34,121.99000000000001,122.93,123.89,127.85000000000001,18.03,17.82,17.68,17.53,17.38,17.240000000000002,17.11,16.990000000000002,16.86,N/A,N/A -2012,12,31,14,30,102000,100810,99650,93.58,0,7.74,8.92,9.39,9.82,10.200000000000001,10.540000000000001,10.85,11.13,11.84,122.41,123.65,124.84,126.7,129.18,132.13,136.3,140.49,149,18.42,18.34,18.29,18.25,18.25,18.27,18.32,18.37,18.36,N/A,N/A -2012,12,31,15,30,101970,100780,99620,93.84,0,6.57,7.78,8.32,8.870000000000001,9.39,9.89,10.33,10.73,11.31,132.14000000000001,133.27,134.21,135.49,136.82,138.20000000000002,139.68,141.08,144.24,18.580000000000002,18.51,18.46,18.400000000000002,18.36,18.32,18.28,18.240000000000002,18.13,N/A,N/A -2012,12,31,16,30,101920,100730,99580,93.26,0,6.55,8.01,8.72,9.450000000000001,10.14,10.82,11.41,11.950000000000001,12.71,144.82,146.84,148.37,150.13,151.68,153.12,154.37,155.52,159.33,18.95,19.01,19.04,19.06,19.09,19.12,19.11,19.1,19,N/A,N/A -2012,12,31,17,30,101860,100670,99520,93.35000000000001,0,6.09,7.5600000000000005,8.27,9.040000000000001,9.78,10.5,11.18,11.82,12.75,150.49,151.82,152.81,153.94,155.03,156.11,157.33,158.52,160.97,19.06,19.13,19.16,19.18,19.19,19.21,19.2,19.19,19.080000000000002,N/A,N/A -2012,12,31,18,30,101810,100620,99470,92.16,0,6.890000000000001,8.44,9.13,9.82,10.48,11.13,11.8,12.44,13.51,153.79,155.1,156.19,157.63,159.02,160.39000000000001,161.5,162.49,163.72,19.31,19.43,19.46,19.48,19.5,19.5,19.490000000000002,19.48,19.37,N/A,N/A -2012,12,31,19,30,101780,100590,99440,93.09,0,6.5200000000000005,8.11,8.85,9.6,10.31,10.98,11.64,12.25,13.27,155.75,157.24,158.45000000000002,160.03,161.51,162.92000000000002,164.03,165.01,166.77,19.32,19.45,19.5,19.54,19.56,19.59,19.580000000000002,19.57,19.47,N/A,N/A -2012,12,31,20,30,101720,100530,99390,91.79,0,6.61,8.32,9.120000000000001,9.93,10.65,11.32,11.94,12.51,13.4,161.15,162.17000000000002,162.87,163.56,164.06,164.41,164.56,164.64000000000001,164.68,19.48,19.66,19.72,19.77,19.78,19.77,19.740000000000002,19.7,19.53,N/A,N/A -2012,12,31,21,30,101680,100500,99350,92.01,0,6.640000000000001,8.41,9.23,10.05,10.78,11.46,12.06,12.61,13.5,159.20000000000002,160.91,162.17000000000002,163.67000000000002,165,166.23,167.25,168.15,169.4,19.43,19.64,19.71,19.78,19.82,19.84,19.830000000000002,19.8,19.66,N/A,N/A -2012,12,31,22,30,101650,100460,99320,92.33,0,6,7.74,8.57,9.43,10.21,10.94,11.59,12.200000000000001,13.42,160.17000000000002,161.85,163.20000000000002,164.87,166.42000000000002,167.89000000000001,169.15,170.29,172.26,19.31,19.55,19.650000000000002,19.73,19.78,19.82,19.81,19.8,19.73,N/A,N/A -2012,12,31,23,30,101610,100430,99280,92.32000000000001,0,6.16,7.91,8.74,9.6,10.38,11.11,11.8,12.44,13.5,160.8,162.20000000000002,163.34,164.83,166.22,167.56,168.65,169.6,170.55,19.29,19.53,19.62,19.72,19.78,19.830000000000002,19.84,19.84,19.72,N/A,N/A From 539b5d8d371356c324923e90ca4cdca29b5de374 Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Tue, 7 Oct 2025 11:17:15 -0600 Subject: [PATCH 30/79] Removing commented out config block --- examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml index 02b71421b..f3f766b4d 100644 --- a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml @@ -61,10 +61,6 @@ finance_parameters: hydrogen: commodity: "hydrogen" technologies: ["hopp", "electrolyzer"] - # methanol: - # commodity: "methanol" - # finance_groups: ["methanol"] - # technologies: ["methanol"] cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 From 44ac54cba8499ea802834ebdebdc7e4f9e44245d Mon Sep 17 00:00:00 2001 From: Jonathan Martin <94018654+jmartin4nrel@users.noreply.github.com> Date: Tue, 7 Oct 2025 14:11:11 -0600 Subject: [PATCH 31/79] Fix local test failures on test_hybrid_energy_plant_example (#283) * Test fixed * Fix precommit * Adding iterations in driver_config --- examples/11_hybrid_energy_plant/driver_config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/11_hybrid_energy_plant/driver_config.yaml b/examples/11_hybrid_energy_plant/driver_config.yaml index 23e7b1050..34bc6de62 100644 --- a/examples/11_hybrid_energy_plant/driver_config.yaml +++ b/examples/11_hybrid_energy_plant/driver_config.yaml @@ -8,9 +8,9 @@ driver: optimization: flag: True tol: 0.1 - max_iter: 0 + max_iter: 6 solver: COBYLA - rhobeg: 1000. + rhobeg: 1.0 debug_print: False design_variables: From 66d1c294ad077727e2babfece16ec7921bd74c27 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Wed, 8 Oct 2025 13:20:31 -0500 Subject: [PATCH 32/79] commodity-neutral transporters and basic operations (#293) * added generic combiner, splitter and summer models * updated combiner and splitter to power_combiner and power_splitter * added tests for generic splitter and combiner * removed electricity combiner and spliter from supported models * removed electricity combiner and electricity splitter * updated invalid mode splitter test * Minor typo fexes * update docs * fix example test * Added tests for consumption summer * Combined generic summers for production and consumption * remove extra unused code --------- Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Co-authored-by: John Jasa --- docs/technology_models/technology_overview.md | 24 +- docs/user_guide/connecting_technologies.md | 6 + .../tech_config_co2h.yaml | 5 +- .../tech_config.yaml | 4 + .../17_splitter_wind_doc_h2/tech_config.yaml | 5 +- h2integrate/core/h2integrate_model.py | 4 +- h2integrate/core/supported_models.py | 11 +- .../transporters/electricity_combiner.py | 23 -- .../transporters/electricity_splitter.py | 131 --------- h2integrate/transporters/generic_combiner.py | 62 ++++ h2integrate/transporters/generic_splitter.py | 147 +++++++++ h2integrate/transporters/generic_summer.py | 70 +++++ .../test/test_electricity_combiner.py | 30 -- .../test/test_generic_combiner.py | 278 ++++++++++++++++++ ...y_splitter.py => test_generic_splitter.py} | 171 ++++++----- 15 files changed, 699 insertions(+), 272 deletions(-) delete mode 100644 h2integrate/transporters/electricity_combiner.py delete mode 100644 h2integrate/transporters/electricity_splitter.py create mode 100644 h2integrate/transporters/generic_combiner.py create mode 100644 h2integrate/transporters/generic_splitter.py create mode 100644 h2integrate/transporters/generic_summer.py delete mode 100644 h2integrate/transporters/test/test_electricity_combiner.py create mode 100644 h2integrate/transporters/test/test_generic_combiner.py rename h2integrate/transporters/test/{test_electricity_splitter.py => test_generic_splitter.py} (61%) diff --git a/docs/technology_models/technology_overview.md b/docs/technology_models/technology_overview.md index 4c8528e94..561368433 100644 --- a/docs/technology_models/technology_overview.md +++ b/docs/technology_models/technology_overview.md @@ -56,9 +56,9 @@ The inputs, outputs, and corresponding technology that are currently available i | Technology | Transport Commodity | | :---------------- | :---------------: | | `cable` | electricity | -| `pipe` | hydrogen | -| `combiner` | Any | -| `splitter` | electricity | +| `pipe` | most mass-based commodities | +| `combiner` | Any | +| `splitter` | Any| Connection: `[source_tech, dest_tech, transport_commodity, transport_technology]` @@ -88,6 +88,8 @@ Below summarizes the available performance, cost, and financial models for each - [Converters](#converter-models) - [Transport](#transport-models) - [Storage](#storage-models) +- [Basic Operations](#basic-operations) +- [Controllers](#controller-models) (resource-models)= ## Resource models @@ -183,13 +185,16 @@ Below summarizes the available performance, cost, and financial models for each ## Transport Models - `cable` - performance models: - + `'cable'` + + `'cable'`: specific to `electricity` commodity - `pipe`: - performance models: - + `'pipe'` + + `'pipe'`: currently compatible with the commodities "hydrogen", "co2", "methanol", "ammonia", "nitrogen", "natural_gas" - `combiner`: - performance models: - + `'combiner_performance'` + + `'combiner_performance'`: can be used for any commodity +- `splitter`: + - performance models: + + `'splitter_performance'`: can be used for any commodity (storage-models)= ## Storage Models @@ -205,6 +210,13 @@ Below summarizes the available performance, cost, and financial models for each - cost models: + `'atb_battery_cost'` +(basic-operations)= +## Basic Operations +- `production_summer`: sums the production profile of any commodity +- `consumption_summer`: sums the consumption profile of any feedstock + + +(control-models)= ## Controller Models - `pass_through_controller` - `demand_open_loop_controller` diff --git a/docs/user_guide/connecting_technologies.md b/docs/user_guide/connecting_technologies.md index da5b62e52..7c95b3451 100644 --- a/docs/user_guide/connecting_technologies.md +++ b/docs/user_guide/connecting_technologies.md @@ -101,6 +101,10 @@ technologies: electricity_combiner: performance_model: model: "combiner_performance" + model_inputs: + performance_parameters: + commodity: "electricity" + commodity_units: "kW" ``` No additional configuration parameters are needed - the combiner simply adds the two input streams. @@ -141,6 +145,8 @@ technologies: performance_model: model: "splitter_performance" config: + commodity: "electricity" + commodity_units: "kW" split_mode: "fraction" # or "prescribed_electricity" fraction_to_priority_tech: 0.7 # for fraction mode # OR diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 02358d7fe..a5c21aa7b 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -14,7 +14,10 @@ technologies: electricity_splitter: performance_model: model: "splitter_performance" - config: + model_inputs: + performance_parameters: + commodity: "electricity" + commodity_units: "kW" split_mode: "fraction" fraction_to_priority_tech: 0.243998425816608 electrolyzer: diff --git a/examples/15_wind_solar_electrolyzer/tech_config.yaml b/examples/15_wind_solar_electrolyzer/tech_config.yaml index b694c57b4..4edbe5b98 100644 --- a/examples/15_wind_solar_electrolyzer/tech_config.yaml +++ b/examples/15_wind_solar_electrolyzer/tech_config.yaml @@ -65,6 +65,10 @@ technologies: combiner: performance_model: model: "combiner_performance" + model_inputs: + performance_parameters: + commodity: "electricity" + commodity_units: "kW" electrolyzer: performance_model: model: "eco_pem_electrolyzer_performance" diff --git a/examples/17_splitter_wind_doc_h2/tech_config.yaml b/examples/17_splitter_wind_doc_h2/tech_config.yaml index 176830dc0..ea576a146 100644 --- a/examples/17_splitter_wind_doc_h2/tech_config.yaml +++ b/examples/17_splitter_wind_doc_h2/tech_config.yaml @@ -15,8 +15,11 @@ technologies: electricity_splitter: performance_model: model: "splitter_performance" - config: + model_inputs: + performance_parameters: split_mode: "fraction" + commodity: "electricity" + commodity_units: "kW" fraction_to_priority_tech: 0.25 doc: diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index 11eeaf25c..efa72f767 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -672,7 +672,7 @@ def connect_technologies(self): # Connect the splitter output to the connection component self.plant.connect( - f"{source_tech}.electricity_out{splitter_counts[source_tech]}", + f"{source_tech}.{transport_item}_out{splitter_counts[source_tech]}", f"{connection_name}.{transport_item}_in", ) @@ -701,7 +701,7 @@ def connect_technologies(self): # Connect the connection component to the destination technology self.plant.connect( f"{connection_name}.{transport_item}_out", - f"{dest_tech}.electricity_in{combiner_counts[dest_tech]}", + f"{dest_tech}.{transport_item}_in{combiner_counts[dest_tech]}", ) elif "storage" in dest_tech: diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index c92e3ef9d..54f44303a 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -5,9 +5,12 @@ from h2integrate.converters.steel.steel import SteelPerformanceModel, SteelCostAndFinancialModel from h2integrate.converters.wind.wind_plant import WindPlantCostModel, WindPlantPerformanceModel from h2integrate.finances.profast_financial import ProFastComp +from h2integrate.transporters.generic_summer import GenericSummerPerformanceModel from h2integrate.converters.hopp.hopp_wrapper import HOPPComponent from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel from h2integrate.storage.hydrogen.eco_storage import H2Storage +from h2integrate.transporters.generic_combiner import GenericCombinerPerformanceModel +from h2integrate.transporters.generic_splitter import GenericSplitterPerformanceModel from h2integrate.converters.nitrogen.simple_ASU import SimpleASUCostModel, SimpleASUPerformanceModel from h2integrate.storage.simple_generic_storage import SimpleGenericStorage from h2integrate.storage.hydrogen.tank_baseclass import ( @@ -21,8 +24,6 @@ from h2integrate.converters.hydrogen.wombat_model import WOMBATElectrolyzerModel from h2integrate.converters.wind.wind_plant_pysam import PYSAMWindPlantPerformanceModel from h2integrate.storage.battery.atb_battery_cost import ATBBatteryCostModel -from h2integrate.transporters.electricity_combiner import CombinerPerformanceModel -from h2integrate.transporters.electricity_splitter import SplitterPerformanceModel from h2integrate.converters.ammonia.ammonia_synloop import ( AmmoniaSynLoopCostModel, AmmoniaSynLoopPerformanceModel, @@ -139,8 +140,10 @@ # Transport "cable": CablePerformanceModel, "pipe": PipePerformanceModel, - "combiner_performance": CombinerPerformanceModel, - "splitter_performance": SplitterPerformanceModel, + "combiner_performance": GenericCombinerPerformanceModel, + "splitter_performance": GenericSplitterPerformanceModel, + # Simple Summers + "summer": GenericSummerPerformanceModel, # Storage "h2_storage": H2Storage, "hydrogen_tank_performance": HydrogenTankPerformanceModel, diff --git a/h2integrate/transporters/electricity_combiner.py b/h2integrate/transporters/electricity_combiner.py deleted file mode 100644 index 582aa3462..000000000 --- a/h2integrate/transporters/electricity_combiner.py +++ /dev/null @@ -1,23 +0,0 @@ -import openmdao.api as om - - -class CombinerPerformanceModel(om.ExplicitComponent): - """ - Combine electricity from two sources into one output without losses. - - This component is purposefully simple; a more realistic case might include - losses or other considerations from power electronics. - """ - - def initialize(self): - self.options.declare("driver_config", types=dict) - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - - def setup(self): - self.add_input("electricity_in1", val=0.0, shape_by_conn=True, units="kW") - self.add_input("electricity_in2", val=0.0, shape_by_conn=True, units="kW") - self.add_output("electricity_out", val=0.0, copy_shape="electricity_in1", units="kW") - - def compute(self, inputs, outputs): - outputs["electricity_out"] = inputs["electricity_in1"] + inputs["electricity_in2"] diff --git a/h2integrate/transporters/electricity_splitter.py b/h2integrate/transporters/electricity_splitter.py deleted file mode 100644 index be816f976..000000000 --- a/h2integrate/transporters/electricity_splitter.py +++ /dev/null @@ -1,131 +0,0 @@ -import numpy as np -import openmdao.api as om -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig - - -@define -class SplitterPerformanceConfig(BaseConfig): - split_mode: str = field() - fraction_to_priority_tech: float = field(default=None) - prescribed_electricity_to_priority_tech: float = field(default=None) - - def __attrs_post_init__(self): - """Validate that the required fields are present based on split_mode.""" - if self.split_mode == "fraction": - if self.fraction_to_priority_tech is None: - raise ValueError( - "fraction_to_priority_tech is required" " when split_mode is 'fraction'" - ) - elif self.split_mode == "prescribed_electricity": - if self.prescribed_electricity_to_priority_tech is None: - raise ValueError( - "prescribed_electricity_to_priority_tech is required" - " when split_mode is 'prescribed_electricity'" - ) - else: - raise ValueError( - f"Invalid split_mode: {self.split_mode}." - " Must be 'fraction' or 'prescribed_electricity'" - ) - - # Set default values for unused fields - if self.split_mode == "fraction" and self.prescribed_electricity_to_priority_tech is None: - self.prescribed_electricity_to_priority_tech = 0.0 - elif self.split_mode == "prescribed_electricity" and self.fraction_to_priority_tech is None: - self.fraction_to_priority_tech = 0.0 - - -class SplitterPerformanceModel(om.ExplicitComponent): - """ - Split electricity from one source into two outputs. - - This component supports two splitting modes: - 1. Fraction-based splitting: Split based on a specified fraction sent to the priority technology - 2. Prescribed electricity splitting: Send a prescribed amount to the priority technology, - remainder to the other technology - - The priority_tech parameter determines which technology receives the primary allocation. - The outputs are: - - electricity_out1: Power sent to the first technology - - electricity_out2: Power sent to the second technology - - This component is purposefully simple; a more realistic case might include - losses or other considerations from power electronics. - """ - - def initialize(self): - self.options.declare("driver_config", types=dict, default={}) - self.options.declare("plant_config", types=dict, default={}) - self.options.declare("tech_config", types=dict, default={}) - - def setup(self): - # Initialize config from tech_config - self.config = SplitterPerformanceConfig.from_dict( - self.options["tech_config"].get("performance_model", {}).get("config", {}) - ) - - self.add_input("electricity_in", val=0.0, shape_by_conn=True, units="kW") - - split_mode = self.config.split_mode - - if split_mode == "fraction": - self.add_input( - "fraction_to_priority_tech", - val=self.config.fraction_to_priority_tech, - desc="Fraction of input power to send to the priority technology (0.0 to 1.0)", - ) - elif split_mode == "prescribed_electricity": - self.add_input( - "prescribed_electricity_to_priority_tech", - val=self.config.prescribed_electricity_to_priority_tech, - copy_shape="electricity_in", - units="kW", - desc="Prescribed amount of power to send to the priority technology", - ) - else: - raise ValueError( - f"Invalid split_mode: {split_mode}. Must be 'fraction' or 'prescribed_electricity'" - ) - - self.add_output( - "electricity_out1", - val=0.0, - copy_shape="electricity_in", - units="kW", - desc="Power output to the first technology", - ) - self.add_output( - "electricity_out2", - val=0.0, - copy_shape="electricity_in", - units="kW", - desc="Power output to the second technology", - ) - - def compute(self, inputs, outputs): - electricity_in = inputs["electricity_in"] - split_mode = self.config.split_mode - - if split_mode == "fraction": - fraction_to_priority = inputs["fraction_to_priority_tech"] - # Ensure fraction is between 0 and 1 - fraction_to_priority = np.clip(fraction_to_priority, 0.0, 1.0) - electricity_to_priority = electricity_in * fraction_to_priority - electricity_to_other = electricity_in * (1.0 - fraction_to_priority) - - elif split_mode == "prescribed_electricity": - prescribed_to_priority = inputs["prescribed_electricity_to_priority_tech"] - # Ensure prescribed electricity is non-negative and doesn't exceed available power - available_power = np.maximum(0.0, electricity_in) - requested_amount = np.maximum(0.0, prescribed_to_priority) - electricity_to_priority = np.minimum(requested_amount, available_power) - electricity_to_other = electricity_in - electricity_to_priority - - # Determine which output gets priority allocation based on plant config - # This requires mapping priority_tech to output1 or output2 - # For now, we'll assume priority_tech maps to output1 - # TODO: This mapping logic should be enhanced based on plant configuration - outputs["electricity_out1"] = electricity_to_priority - outputs["electricity_out2"] = electricity_to_other diff --git a/h2integrate/transporters/generic_combiner.py b/h2integrate/transporters/generic_combiner.py new file mode 100644 index 000000000..a930df129 --- /dev/null +++ b/h2integrate/transporters/generic_combiner.py @@ -0,0 +1,62 @@ +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs + + +@define +class GenericCombinerPerformanceConfig(BaseConfig): + """Configuration class for a generic combiner. + + Attributes: + commodity (str): name of commodity type + commodity_units (str): units of commodity production profile + """ + + commodity: str = field(converter=(str.lower, str.strip)) + commodity_units: str = field() + + +class GenericCombinerPerformanceModel(om.ExplicitComponent): + """ + Combine any commodity or resource from two sources into one output without losses. + + This component is purposefully simple; a more realistic case might include + losses or other considerations from system components. + """ + + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.config = GenericCombinerPerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") + ) + + n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) + + self.add_input( + f"{self.config.commodity}_in1", + val=0.0, + shape=n_timesteps, + units=self.config.commodity_units, + ) + self.add_input( + f"{self.config.commodity}_in2", + val=0.0, + shape=n_timesteps, + units=self.config.commodity_units, + ) + self.add_output( + f"{self.config.commodity}_out", + val=0.0, + shape=n_timesteps, + units=self.config.commodity_units, + ) + + def compute(self, inputs, outputs): + outputs[f"{self.config.commodity}_out"] = ( + inputs[f"{self.config.commodity}_in1"] + inputs[f"{self.config.commodity}_in2"] + ) diff --git a/h2integrate/transporters/generic_splitter.py b/h2integrate/transporters/generic_splitter.py new file mode 100644 index 000000000..513dcf288 --- /dev/null +++ b/h2integrate/transporters/generic_splitter.py @@ -0,0 +1,147 @@ +import numpy as np +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig +from h2integrate.core.validators import contains, range_val_or_none + + +@define +class GenericSplitterPerformanceConfig(BaseConfig): + """Configuration class for the GenericSplitterPerformanceModel. + + Attributes: + split_mode (str): what method to use to split input commodity stream. + Must be either "prescribed_commodity" or "fraction" to split commodity stream. + commodity (str): name of commodity + commodity_units (str): units of commodity production profile + fraction_to_priority_tech (float, optional): fraction of input commodity to + send to first output stream. Only used if `split_mode` is "fraction". + Defaults to None. + prescribed_commodity_to_priority_tech (float, optional): constant amount + of input commodity to send to first output stream in same units as ``commodity_units``. + Only used if `split_mode` is "prescribed_commodity". Defaults to None. + """ + + split_mode: str = field( + converter=(str.lower, str.strip), validator=contains(["prescribed_commodity", "fraction"]) + ) + commodity: str = field(converter=(str.lower, str.strip)) + commodity_units: str = field() + fraction_to_priority_tech: float = field(default=None, validator=range_val_or_none(0, 1)) + prescribed_commodity_to_priority_tech: float = field(default=None) + + def __attrs_post_init__(self): + """Validate that the required fields are present based on split_mode.""" + if self.split_mode == "fraction": + if self.fraction_to_priority_tech is None: + raise ValueError( + "fraction_to_priority_tech is required" " when split_mode is 'fraction'" + ) + if self.split_mode == "prescribed_commodity": + if self.prescribed_commodity_to_priority_tech is None: + raise ValueError( + "prescribed_commodity_to_priority_tech is required" + " when split_mode is 'prescribed_commodity'" + ) + + # Set default values for unused fields + if self.split_mode == "fraction" and self.prescribed_commodity_to_priority_tech is None: + self.prescribed_commodity_to_priority_tech = 0.0 + elif self.split_mode == "prescribed_commodity" and self.fraction_to_priority_tech is None: + self.fraction_to_priority_tech = 0.0 + + +class GenericSplitterPerformanceModel(om.ExplicitComponent): + """ + Split commodity from one source into two outputs. + + This component supports two splitting modes: + 1. Fraction-based splitting: Split based on a specified fraction sent to the priority technology + 2. Prescribed commodity splitting: Send a prescribed amount to the priority technology, + remainder to the other technology + + The priority_tech parameter determines which technology receives the primary allocation. + The outputs are: + - {commodity}_out1: commodity sent to the first technology + - {commodity}_out2: commodity sent to the second technology + + This component is purposefully simple; a more realistic case might include + losses or other considerations from system components. + """ + + def initialize(self): + self.options.declare("driver_config", types=dict, default={}) + self.options.declare("plant_config", types=dict, default={}) + self.options.declare("tech_config", types=dict, default={}) + + def setup(self): + # Initialize config from tech config + self.config = GenericSplitterPerformanceConfig.from_dict( + self.options["tech_config"]["model_inputs"]["performance_parameters"] + ) + + self.add_input( + f"{self.config.commodity}_in", + val=0.0, + shape_by_conn=True, + units=self.config.commodity_units, + ) + + split_mode = self.config.split_mode + + if split_mode == "fraction": + self.add_input( + "fraction_to_priority_tech", + val=self.config.fraction_to_priority_tech, + desc="Fraction of input commodity to send to the priority technology (0.0 to 1.0)", + ) + elif split_mode == "prescribed_commodity": + self.add_input( + "prescribed_commodity_to_priority_tech", + val=self.config.prescribed_commodity_to_priority_tech, + copy_shape=f"{self.config.commodity}_in", + units=self.config.commodity_units, + desc="Prescribed amount of commodity to send to the priority technology", + ) + + self.add_output( + f"{self.config.commodity}_out1", + val=0.0, + copy_shape=f"{self.config.commodity}_in", + units=self.config.commodity_units, + desc=f"{self.config.commodity} output to the first technology", + ) + self.add_output( + f"{self.config.commodity}_out2", + val=0.0, + copy_shape=f"{self.config.commodity}_in", + units=self.config.commodity_units, + desc=f"{self.config.commodity} output to the second technology", + ) + + def compute(self, inputs, outputs): + commodity_in = inputs[f"{self.config.commodity}_in"] + split_mode = self.config.split_mode + + if split_mode == "fraction": + fraction_to_priority = inputs["fraction_to_priority_tech"] + # Ensure fraction is between 0 and 1 + fraction_to_priority = np.clip(fraction_to_priority, 0.0, 1.0) + commodity_to_priority = commodity_in * fraction_to_priority + commodity_to_other = commodity_in * (1.0 - fraction_to_priority) + + elif split_mode == "prescribed_commodity": + prescribed_to_priority = inputs["prescribed_commodity_to_priority_tech"] + # Ensure prescribed commodity is non-negative and doesn't exceed available commodity + available_commodity = np.maximum(0.0, commodity_in) + requested_amount = np.maximum(0.0, prescribed_to_priority) + commodity_to_priority = np.minimum(requested_amount, available_commodity) + commodity_to_other = commodity_in - commodity_to_priority + + # Determine which output gets priority allocation based on plant config + # This requires mapping priority_tech to output1 or output2 + # For now, we'll assume priority_tech maps to output1 + # TODO: This mapping logic should be enhanced based on plant configuration + outputs[f"{self.config.commodity}_out1"] = commodity_to_priority + outputs[f"{self.config.commodity}_out2"] = commodity_to_other diff --git a/h2integrate/transporters/generic_summer.py b/h2integrate/transporters/generic_summer.py new file mode 100644 index 000000000..d7a3ee91b --- /dev/null +++ b/h2integrate/transporters/generic_summer.py @@ -0,0 +1,70 @@ +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains + + +@define +class GenericSummerPerformanceConfig(BaseConfig): + """Configuration class for a generic summer for commodities or feedstocks. + + Attributes: + commodity (str): name of commodity/feedstock type + commodity_units (str): units of commodity/feedstock profile + operation_mode (str): either "production" or "consumption" to determine input/output naming + """ + + commodity: str = field(converter=(str.lower, str.strip)) + commodity_units: str = field() + operation_mode: str = field( + default="production", + converter=(str.lower, str.strip), + validator=contains(["production", "consumption"]), + ) + + +class GenericSummerPerformanceModel(om.ExplicitComponent): + """ + Sum the production or consumption profile of some commodity from a single source. + """ + + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.config = GenericSummerPerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") + ) + + n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) + + if self.config.commodity == "electricity": + # NOTE: this should be updated in overhaul required for flexible dt + summed_units = f"{self.config.commodity_units}*h" + else: + summed_units = self.config.commodity_units + + self.add_input( + f"{self.config.commodity}_in", + val=0.0, + shape=n_timesteps, + units=self.config.commodity_units, + ) + + if self.config.operation_mode == "consumption": + self.add_output(f"total_{self.config.commodity}_consumed", val=0.0, units=summed_units) + else: # production mode (default) + self.add_output(f"total_{self.config.commodity}_produced", val=0.0, units=summed_units) + + def compute(self, inputs, outputs): + if self.config.operation_mode == "consumption": + outputs[f"total_{self.config.commodity}_consumed"] = sum( + inputs[f"{self.config.commodity}_in"] + ) + else: # production mode (default) + outputs[f"total_{self.config.commodity}_produced"] = sum( + inputs[f"{self.config.commodity}_in"] + ) diff --git a/h2integrate/transporters/test/test_electricity_combiner.py b/h2integrate/transporters/test/test_electricity_combiner.py deleted file mode 100644 index cdb85f3d7..000000000 --- a/h2integrate/transporters/test/test_electricity_combiner.py +++ /dev/null @@ -1,30 +0,0 @@ -import numpy as np -import openmdao.api as om -from pytest import approx - -from h2integrate.transporters.electricity_combiner import CombinerPerformanceModel - - -rng = np.random.default_rng(seed=0) - - -def test_combiner_performance(): - prob = om.Problem() - comp = CombinerPerformanceModel() - prob.model.add_subsystem("comp", comp, promotes=["*"]) - ivc = om.IndepVarComp() - ivc.add_output("electricity_in1", val=np.zeros(8760), units="kW") - ivc.add_output("electricity_in2", val=np.zeros(8760), units="kW") - prob.model.add_subsystem("ivc", ivc, promotes=["*"]) - - prob.setup() - - electricity_input1 = rng.random(8760) - electricity_input2 = rng.random(8760) - electricity_output = electricity_input1 + electricity_input2 - - prob.set_val("electricity_in1", electricity_input1, units="kW") - prob.set_val("electricity_in2", electricity_input2, units="kW") - prob.run_model() - - assert prob.get_val("electricity_out", units="kW") == approx(electricity_output, rel=1e-5) diff --git a/h2integrate/transporters/test/test_generic_combiner.py b/h2integrate/transporters/test/test_generic_combiner.py new file mode 100644 index 000000000..f95273013 --- /dev/null +++ b/h2integrate/transporters/test/test_generic_combiner.py @@ -0,0 +1,278 @@ +import numpy as np +import openmdao.api as om +from pytest import approx, fixture + +from h2integrate.transporters.generic_summer import GenericSummerPerformanceModel +from h2integrate.transporters.generic_combiner import GenericCombinerPerformanceModel + + +rng = np.random.default_rng(seed=0) + + +@fixture +def plant_config(): + plant_dict = {"plant": {"simulation": {"n_timesteps": 8760, "dt": 3600}}} + return plant_dict + + +@fixture +def combiner_tech_config_electricity(): + elec_combiner_dict = { + "model_inputs": { + "performance_parameters": {"commodity": "electricity", "commodity_units": "kW"} + } + } + return elec_combiner_dict + + +@fixture +def combiner_tech_config_hydrogen(): + h2_combiner_dict = { + "model_inputs": { + "performance_parameters": {"commodity": "hydrogen", "commodity_units": "kg"} + } + } + return h2_combiner_dict + + +@fixture +def summer_tech_config_electricity_consumption(): + elec_summer_dict = { + "model_inputs": { + "performance_parameters": { + "commodity": "electricity", + "commodity_units": "kW", + "operation_mode": "consumption", + } + } + } + return elec_summer_dict + + +@fixture +def summer_tech_config_hydrogen_consumption(): + h2_summer_dict = { + "model_inputs": { + "performance_parameters": { + "commodity": "hydrogen", + "commodity_units": "kg", + "operation_mode": "consumption", + } + } + } + return h2_summer_dict + + +@fixture +def summer_tech_config_electricity_production(): + elec_summer_dict = { + "model_inputs": { + "performance_parameters": { + "commodity": "electricity", + "commodity_units": "kW", + "operation_mode": "production", + } + } + } + return elec_summer_dict + + +@fixture +def summer_tech_config_hydrogen_production(): + h2_summer_dict = { + "model_inputs": { + "performance_parameters": { + "commodity": "hydrogen", + "commodity_units": "kg", + "operation_mode": "production", + } + } + } + return h2_summer_dict + + +def test_generic_combiner_performance_power(plant_config, combiner_tech_config_electricity): + prob = om.Problem() + comp = GenericCombinerPerformanceModel( + plant_config=plant_config, tech_config=combiner_tech_config_electricity, driver_config={} + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + ivc = om.IndepVarComp() + ivc.add_output("electricity_in1", val=np.zeros(8760), units="kW") + ivc.add_output("electricity_in2", val=np.zeros(8760), units="kW") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + + prob.setup() + + electricity_input1 = rng.random(8760) + electricity_input2 = rng.random(8760) + electricity_output = electricity_input1 + electricity_input2 + + prob.set_val("electricity_in1", electricity_input1, units="kW") + prob.set_val("electricity_in2", electricity_input2, units="kW") + prob.run_model() + + assert prob.get_val("electricity_out", units="kW") == approx(electricity_output, rel=1e-5) + + +def test_generic_combiner_performance_hydrogen(plant_config, combiner_tech_config_hydrogen): + prob = om.Problem() + comp = GenericCombinerPerformanceModel( + plant_config=plant_config, tech_config=combiner_tech_config_hydrogen, driver_config={} + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + ivc = om.IndepVarComp() + ivc.add_output("hydrogen_in1", val=np.zeros(8760), units="kg") + ivc.add_output("hydrogen_in2", val=np.zeros(8760), units="kg") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + + prob.setup() + + hydrogen_input1 = rng.random(8760) + hydrogen_input2 = rng.random(8760) + hydrogen_output = hydrogen_input1 + hydrogen_input2 + + prob.set_val("hydrogen_in1", hydrogen_input1, units="kg") + prob.set_val("hydrogen_in2", hydrogen_input2, units="kg") + prob.run_model() + + assert prob.get_val("hydrogen_out", units="kg") == approx(hydrogen_output, rel=1e-5) + + +def test_generic_consumption_summer_performance_electricity( + plant_config, summer_tech_config_electricity_consumption +): + prob = om.Problem() + comp = GenericSummerPerformanceModel( + plant_config=plant_config, + tech_config=summer_tech_config_electricity_consumption, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + ivc = om.IndepVarComp() + ivc.add_output("electricity_in", val=np.zeros(8760), units="kW") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + + prob.setup() + + electricity_input = rng.random(8760) + total_electricity_consumed = sum(electricity_input) + + prob.set_val("electricity_in", electricity_input, units="kW") + prob.run_model() + + assert prob.get_val("total_electricity_consumed") == approx( + total_electricity_consumed, rel=1e-5 + ) + + +def test_generic_consumption_summer_performance_hydrogen( + plant_config, summer_tech_config_hydrogen_consumption +): + prob = om.Problem() + comp = GenericSummerPerformanceModel( + plant_config=plant_config, + tech_config=summer_tech_config_hydrogen_consumption, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + ivc = om.IndepVarComp() + ivc.add_output("hydrogen_in", val=np.zeros(8760), units="kg") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + + prob.setup() + + hydrogen_input = rng.random(8760) + total_hydrogen_consumed = sum(hydrogen_input) + + prob.set_val("hydrogen_in", hydrogen_input, units="kg") + prob.run_model() + + assert prob.get_val("total_hydrogen_consumed") == approx(total_hydrogen_consumed, rel=1e-5) + + +def test_generic_production_summer_performance_electricity( + plant_config, summer_tech_config_electricity_production +): + prob = om.Problem() + comp = GenericSummerPerformanceModel( + plant_config=plant_config, + tech_config=summer_tech_config_electricity_production, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + ivc = om.IndepVarComp() + ivc.add_output("electricity_in", val=np.zeros(8760), units="kW") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + + prob.setup() + + electricity_input = rng.random(8760) + total_electricity_produced = sum(electricity_input) + + prob.set_val("electricity_in", electricity_input, units="kW") + prob.run_model() + + assert prob.get_val("total_electricity_produced") == approx( + total_electricity_produced, rel=1e-5 + ) + + +def test_generic_production_summer_performance_hydrogen( + plant_config, summer_tech_config_hydrogen_production +): + prob = om.Problem() + comp = GenericSummerPerformanceModel( + plant_config=plant_config, + tech_config=summer_tech_config_hydrogen_production, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + ivc = om.IndepVarComp() + ivc.add_output("hydrogen_in", val=np.zeros(8760), units="kg") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + + prob.setup() + + hydrogen_input = rng.random(8760) + total_hydrogen_produced = sum(hydrogen_input) + + prob.set_val("hydrogen_in", hydrogen_input, units="kg") + prob.run_model() + + assert prob.get_val("total_hydrogen_produced") == approx(total_hydrogen_produced, rel=1e-5) + + +def test_generic_summer_default_mode_is_production(plant_config): + """Test that the default operation mode is production when not specified.""" + tech_config = { + "model_inputs": { + "performance_parameters": { + "commodity": "electricity", + "commodity_units": "kW", + # Note: operation_mode not specified, should default to production + } + } + } + + prob = om.Problem() + comp = GenericSummerPerformanceModel( + plant_config=plant_config, tech_config=tech_config, driver_config={} + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + ivc = om.IndepVarComp() + ivc.add_output("electricity_in", val=np.zeros(8760), units="kW") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + + prob.setup() + + electricity_input = rng.random(8760) + total_electricity_produced = sum(electricity_input) + + prob.set_val("electricity_in", electricity_input, units="kW") + prob.run_model() + + # Should have production output, not consumption + assert prob.get_val("total_electricity_produced") == approx( + total_electricity_produced, rel=1e-5 + ) diff --git a/h2integrate/transporters/test/test_electricity_splitter.py b/h2integrate/transporters/test/test_generic_splitter.py similarity index 61% rename from h2integrate/transporters/test/test_electricity_splitter.py rename to h2integrate/transporters/test/test_generic_splitter.py index 7e5fa6063..20377987b 100644 --- a/h2integrate/transporters/test/test_electricity_splitter.py +++ b/h2integrate/transporters/test/test_generic_splitter.py @@ -1,30 +1,45 @@ import numpy as np import pytest import openmdao.api as om -from pytest import approx +from pytest import approx, fixture -from h2integrate.transporters.electricity_splitter import ( - SplitterPerformanceModel, - SplitterPerformanceConfig, +from h2integrate.transporters.generic_splitter import ( + GenericSplitterPerformanceModel, + GenericSplitterPerformanceConfig, ) +@fixture +def splitter_tech_config_electricity(): + return {"commodity": "electricity", "commodity_units": "kW"} + + +@fixture +def splitter_tech_config_hydrogen(): + h2_combiner_dict = { + "model_inputs": { + "performance_parameters": {"commodity": "hydrogen", "commodity_units": "kg"} + } + } + return h2_combiner_dict + + rng = np.random.default_rng(seed=0) -def test_splitter_ratio_mode_edge_cases(): +def test_splitter_ratio_mode_edge_cases_electricity(splitter_tech_config_electricity): """Test the splitter in fraction mode with edge case fractions.""" - tech_config = { - "performance_model": { - "config": { - "split_mode": "fraction", - "fraction_to_priority_tech": 0.0, - } - } + performance_config = { + "split_mode": "fraction", + "fraction_to_priority_tech": 0.0, } + performance_config.update(splitter_tech_config_electricity) + + tech_config = {"model_inputs": {"performance_parameters": performance_config}} + prob = om.Problem() - comp = SplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() ivc.add_output("electricity_in", val=100.0, units="kW") @@ -61,23 +76,23 @@ def test_splitter_ratio_mode_edge_cases(): assert prob.get_val("electricity_out2", units="kW") == approx(electricity_input, rel=1e-5) -def test_splitter_prescribed_electricity_mode(): +def test_splitter_prescribed_electricity_mode(splitter_tech_config_electricity): """Test the splitter in prescribed_electricity mode.""" - tech_config = { - "performance_model": { - "config": { - "split_mode": "prescribed_electricity", - "prescribed_electricity_to_priority_tech": 200.0, - } - } + performance_config = { + "split_mode": "prescribed_commodity", + "prescribed_commodity_to_priority_tech": 200.0, } + performance_config.update(splitter_tech_config_electricity) + + tech_config = {"model_inputs": {"performance_parameters": performance_config}} + prob = om.Problem() - comp = SplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() ivc.add_output("electricity_in", val=np.zeros(8760), units="kW") - ivc.add_output("prescribed_electricity_to_priority_tech", val=np.zeros(8760), units="kW") + ivc.add_output("prescribed_commodity_to_priority_tech", val=np.zeros(8760), units="kW") prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.setup() @@ -86,7 +101,7 @@ def test_splitter_prescribed_electricity_mode(): prescribed_electricity = np.full(8760, 200.0) prob.set_val("electricity_in", electricity_input, units="kW") - prob.set_val("prescribed_electricity_to_priority_tech", prescribed_electricity, units="kW") + prob.set_val("prescribed_commodity_to_priority_tech", prescribed_electricity, units="kW") prob.run_model() expected_output1 = prescribed_electricity @@ -101,26 +116,27 @@ def test_splitter_prescribed_electricity_mode(): assert total_output == approx(electricity_input, rel=1e-5) -def test_splitter_prescribed_electricity_mode_limited_input(): +def test_splitter_prescribed_electricity_mode_limited_input(splitter_tech_config_electricity): """ Test the splitter in prescribed_electricity mode when input is less than prescribed electricity. """ - tech_config = { - "performance_model": { - "config": { - "split_mode": "prescribed_electricity", - "prescribed_electricity_to_priority_tech": 150.0, - } - } + + performance_config = { + "split_mode": "prescribed_commodity", + "prescribed_commodity_to_priority_tech": 150.0, } + performance_config.update(splitter_tech_config_electricity) + + tech_config = {"model_inputs": {"performance_parameters": performance_config}} + prob = om.Problem() - comp = SplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() ivc.add_output("electricity_in", val=np.zeros(8760), units="kW") - ivc.add_output("prescribed_electricity_to_priority_tech", val=np.zeros(8760), units="kW") + ivc.add_output("prescribed_commodity_to_priority_tech", val=np.zeros(8760), units="kW") prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.setup() @@ -129,7 +145,7 @@ def test_splitter_prescribed_electricity_mode_limited_input(): prescribed_electricity = np.full(8760, 150.0) prob.set_val("electricity_in", electricity_input, units="kW") - prob.set_val("prescribed_electricity_to_priority_tech", prescribed_electricity, units="kW") + prob.set_val("prescribed_commodity_to_priority_tech", prescribed_electricity, units="kW") prob.run_model() expected_output1 = electricity_input @@ -139,39 +155,38 @@ def test_splitter_prescribed_electricity_mode_limited_input(): assert prob.get_val("electricity_out2", units="kW") == approx(expected_output2, abs=1e-10) -def test_splitter_invalid_mode(): +def test_splitter_invalid_mode(splitter_tech_config_electricity): """Test that an invalid split mode raises an error.""" - tech_config = { - "performance_model": { - "config": { - "split_mode": "invalid_mode", - } - } + performance_config = { + "split_mode": "invalid_mode", } + performance_config.update(splitter_tech_config_electricity) + + tech_config = {"model_inputs": {"performance_parameters": performance_config}} + with pytest.raises( ValueError, - match="Invalid split_mode: invalid_mode. Must be 'fraction' or 'prescribed_electricity'", + match="Item invalid_mode not found in list", ): prob = om.Problem() - comp = SplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) prob.setup() -def test_splitter_scalar_inputs(): +def test_splitter_scalar_inputs(splitter_tech_config_electricity): """Test the splitter with scalar inputs instead of arrays.""" - tech_config_ratio = { - "performance_model": { - "config": { - "split_mode": "fraction", - "fraction_to_priority_tech": 0.4, - } - } + performance_config_ratio = { + "split_mode": "fraction", + "fraction_to_priority_tech": 0.4, } + performance_config_ratio.update(splitter_tech_config_electricity) + + tech_config_ratio = {"model_inputs": {"performance_parameters": performance_config_ratio}} prob = om.Problem() - comp = SplitterPerformanceModel(tech_config=tech_config_ratio) + comp = GenericSplitterPerformanceModel(tech_config=tech_config_ratio) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() ivc.add_output("electricity_in", val=100.0, units="kW") @@ -184,21 +199,23 @@ def test_splitter_scalar_inputs(): assert prob.get_val("electricity_out1", units="kW") == approx(40.0, rel=1e-5) assert prob.get_val("electricity_out2", units="kW") == approx(60.0, rel=1e-5) + performance_config_prescribed = { + "split_mode": "prescribed_commodity", + "prescribed_commodity_to_priority_tech": 30.0, + } + + performance_config_prescribed.update(splitter_tech_config_electricity) + tech_config_prescribed = { - "performance_model": { - "config": { - "split_mode": "prescribed_electricity", - "prescribed_electricity_to_priority_tech": 30.0, - } - } + "model_inputs": {"performance_parameters": performance_config_prescribed} } prob2 = om.Problem() - comp2 = SplitterPerformanceModel(tech_config=tech_config_prescribed) + comp2 = GenericSplitterPerformanceModel(tech_config=tech_config_prescribed) prob2.model.add_subsystem("comp", comp2, promotes=["*"]) ivc2 = om.IndepVarComp() ivc2.add_output("electricity_in", val=100.0, units="kW") - ivc2.add_output("prescribed_electricity_to_priority_tech", val=30.0, units="kW") + ivc2.add_output("prescribed_commodity_to_priority_tech", val=30.0, units="kW") prob2.model.add_subsystem("ivc", ivc2, promotes=["*"]) prob2.setup() @@ -208,23 +225,25 @@ def test_splitter_scalar_inputs(): assert prob2.get_val("electricity_out2", units="kW") == approx(70.0, rel=1e-5) -def test_splitter_prescribed_electricity_varied_array(): +def test_splitter_prescribed_electricity_varied_array(splitter_tech_config_electricity): """Test the splitter in prescribed_electricity mode with a varied array (50-100 MW).""" - tech_config = { - "performance_model": { - "config": { - "split_mode": "prescribed_electricity", - "prescribed_electricity_to_priority_tech": 75000.0, # Default value in kW - } - } + performance_config = { + "split_mode": "prescribed_commodity", + "prescribed_commodity_to_priority_tech": 75000.0, # Default value in kW } + performance_config.update(splitter_tech_config_electricity) + + tech_config = {"model_inputs": {"performance_parameters": performance_config}} + + tech_config.update(splitter_tech_config_electricity) + prob = om.Problem() - comp = SplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() ivc.add_output("electricity_in", val=np.zeros(8760), units="kW") - ivc.add_output("prescribed_electricity_to_priority_tech", val=np.zeros(8760), units="kW") + ivc.add_output("prescribed_commodity_to_priority_tech", val=np.zeros(8760), units="kW") prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.setup() @@ -236,7 +255,7 @@ def test_splitter_prescribed_electricity_varied_array(): electricity_input = rng.random(8760) * 30000 + 120000 # 120-150 MW range prob.set_val("electricity_in", electricity_input, units="kW") - prob.set_val("prescribed_electricity_to_priority_tech", prescribed_electricity, units="kW") + prob.set_val("prescribed_commodity_to_priority_tech", prescribed_electricity, units="kW") prob.run_model() # Since input > prescribed in all cases, prescribed should go to output1 @@ -271,10 +290,14 @@ def test_splitter_prescribed_electricity_varied_array(): def test_splitter_missing_config(): """Test that missing required config fields cause an error.""" - incomplete_config_dict = {"split_mode": "fraction"} + incomplete_config_dict = { + "split_mode": "fraction", + "commodity": "electricity", + "commodity_units": "kW", + } with pytest.raises( ValueError, match="fraction_to_priority_tech is required when split_mode is 'fraction'", ): - SplitterPerformanceConfig.from_dict(incomplete_config_dict) + GenericSplitterPerformanceConfig.from_dict(incomplete_config_dict) From 2b0dd9455222e8b16a579b410ffb52026f19b874 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Thu, 9 Oct 2025 10:22:46 -0600 Subject: [PATCH 33/79] Updated/Fixed SQL Recording (#291) * updated set_recorders and added call to it in h2integrate_model.py * updated changelog * added tests for updates to recorder * updated conftest to prevent errors * removed env variables from test_recorder in attempt to fix CI tests --------- Co-authored-by: John Jasa --- CHANGELOG.md | 1 + h2integrate/core/h2integrate_model.py | 15 +- h2integrate/core/pose_optimization.py | 56 +++++-- h2integrate/core/test/conftest.py | 48 ++++++ h2integrate/core/test/test_recorder.py | 213 +++++++++++++++++++++++++ 5 files changed, 313 insertions(+), 20 deletions(-) create mode 100644 h2integrate/core/test/conftest.py create mode 100644 h2integrate/core/test/test_recorder.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 201e78f61..637b64827 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Added `tools/run_cases.py` with tools to run different `tech_config` cases from a spreadsheet, with new docs page to describe: docs/user_guide/how_to_run_several_cases_in_sequence.md - Added capability for user-defined finance models in the H2Integrate framework - Added an optimized offshore methanol production case to examples/03_methanol/co2_hydrogenation_doc +- Updated setting up recorder in `PoseOptimization` ## 0.4.0 [October 1, 2025] diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index efa72f767..81b10c17e 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -892,25 +892,22 @@ def connect_technologies(self): def create_driver_model(self): """ - Add the driver to the OpenMDAO model. + Add the driver to the OpenMDAO model and add recorder. """ + + myopt = PoseOptimization(self.driver_config) if "driver" in self.driver_config: - myopt = PoseOptimization(self.driver_config) myopt.set_driver(self.prob) myopt.set_objective(self.prob) myopt.set_design_variables(self.prob) myopt.set_constraints(self.prob) + # Add a recorder if specified in the driver config + if "recorder" in self.driver_config: + myopt.set_recorders(self.prob) def run(self): # do model setup based on the driver config # might add a recorder, driver, set solver tolerances, etc - - # Add a recorder if specified in the driver config - if "recorder" in self.driver_config: - recorder_config = self.driver_config["recorder"] - recorder = om.SqliteRecorder(recorder_config["file"]) - self.model.add_recorder(recorder) - self.prob.setup() self.prob.run_driver() diff --git a/h2integrate/core/pose_optimization.py b/h2integrate/core/pose_optimization.py index ac00b1dcd..5a3b3216b 100644 --- a/h2integrate/core/pose_optimization.py +++ b/h2integrate/core/pose_optimization.py @@ -3,6 +3,7 @@ and also based off of the H2Integrate file of the same name originally adapted by Jared Thomas. """ +import re import warnings from pathlib import Path @@ -431,22 +432,55 @@ def set_recorders(self, opt_prob): """ folder_output = self.config["general"]["folder_output"] + # Check that the output folder exists and create it if needed + if not Path(folder_output).exists(): + Path.mkdir(folder_output, parents=True) # Set recorder on the OpenMDAO driver level using the `optimization_log` # filename supplied in the optimization yaml - if self.config["recorder"]["flag"]: - recorder = om.SqliteRecorder(Path(folder_output) / self.config["recorder"]["file_name"]) - opt_prob.driver.add_recorder(recorder) - opt_prob.add_recorder(recorder) + if self.config["recorder"].get("flag", False): + overwrite_recorder = self.config["recorder"].get("overwrite_recorder", False) + recorder_path = Path(folder_output) / self.config["recorder"]["file"] + + if not overwrite_recorder: + # make a unique filename with the same base as self.config["recorder"]["file"] + # separate out the filename without the extension + file_base = self.config["recorder"]["file"].split(".sql")[0] + # get all the files in the output folder that start with file_base + existing_files = list(Path(folder_output).glob(f"{file_base}*")) + if len(existing_files) > 0: + # if file(s) exist with the same base name, make a new unique filename + + # get past numbers that were used to make unique files by matching + # filenames against the file base name followed by a number + past_numbers = [ + int(re.findall(f"{file_base}[0-9]+", str(fname))[0].split(file_base)[-1]) + for fname in existing_files + if len(re.findall(f"{file_base}[0-9]+", str(fname))) > 0 + ] - opt_prob.driver.recording_options["excludes"] = ["*_df"] - opt_prob.driver.recording_options["record_constraints"] = True - opt_prob.driver.recording_options["record_desvars"] = True - opt_prob.driver.recording_options["record_objectives"] = True + if len(past_numbers) > 0: + # if multiple files have the same basename followed by a number, + # take the maximum unique number and add one + unique_number = int(max(past_numbers) + 1) + recorder_path = Path(folder_output) / f"{file_base}{unique_number}.sql" + else: + # if no files have the same basename followed by a number, + # but do have the same basename, then add a zero to the file basename + recorder_path = Path(folder_output) / f"{file_base}0.sql" - if self.config["recorder"]["includes"]: - opt_prob.driver.recording_options["includes"] = self.config["recorder"]["includes"] + # Create recorder and add to model + recorder = om.SqliteRecorder(recorder_path) + opt_prob.model.add_recorder(recorder) - return opt_prob + opt_prob.model.recording_options["record_inputs"] = True + opt_prob.model.recording_options["record_outputs"] = True + opt_prob.model.recording_options["record_residuals"] = True + + if self.config["recorder"].get("includes", False): + opt_prob.model.recording_options["includes"] = self.config["recorder"]["includes"] + + if self.config["recorder"].get("excludes", False): + opt_prob.model.recording_options["excludes"] = self.config["recorder"]["excludes"] def set_restart(self, opt_prob): """ diff --git a/h2integrate/core/test/conftest.py b/h2integrate/core/test/conftest.py new file mode 100644 index 000000000..48904cf27 --- /dev/null +++ b/h2integrate/core/test/conftest.py @@ -0,0 +1,48 @@ +""" +Pytest configuration file. +""" + +import os + +from h2integrate import EXAMPLE_DIR + + +def pytest_sessionstart(session): + # set environment variables used for + # tests in h2integrate/core/test/test_recorder.py + os.environ["TEST_RECORDER_OUTPUT_EXAMPLE"] = "05_wind_h2_opt" + os.environ["TEST_RECORDER_OUTPUT_DIR"] = "testingtesting_output_dir" + os.environ["TEST_RECORDER_OUTPUT_FILE0"] = "testingtesting_filename.sql" + os.environ["TEST_RECORDER_OUTPUT_FILE1"] = "testingtesting_filename0.sql" + os.environ["TEST_RECORDER_OUTPUT_FILE2"] = "testingtesting_filename1.sql" + + +def pytest_sessionfinish(session, exitstatus): + # remove files that were created in h2integrate/core/test/test_recorder.py + if os.getenv("TEST_RECORDER_OUTPUT_EXAMPLE") is not None: + test_dir = ( + EXAMPLE_DIR + / os.getenv("TEST_RECORDER_OUTPUT_EXAMPLE") + / os.getenv("TEST_RECORDER_OUTPUT_DIR") + ) + file0path = test_dir / os.getenv("TEST_RECORDER_OUTPUT_FILE0") + file1path = test_dir / os.getenv("TEST_RECORDER_OUTPUT_FILE1") + file2path = test_dir / os.getenv("TEST_RECORDER_OUTPUT_FILE2") + if file0path.exists(): + file0path.unlink() + if file1path.exists(): + file1path.unlink() + if file2path.exists(): + file2path.unlink() + # remove folder created in h2integrate/core/test/test_recorder.py + files_in_test_folder = list(test_dir.iterdir()) + if len(files_in_test_folder) == 0: + test_dir.rmdir() + + # remove environment variables used for tests in + # h2integrate/core/test/test_recorder.py + os.environ.pop("TEST_RECORDER_OUTPUT_EXAMPLE", None) + os.environ.pop("TEST_RECORDER_OUTPUT_DIR", None) + os.environ.pop("TEST_RECORDER_OUTPUT_FILE0", None) + os.environ.pop("TEST_RECORDER_OUTPUT_FILE1", None) + os.environ.pop("TEST_RECORDER_OUTPUT_FILE2", None) diff --git a/h2integrate/core/test/test_recorder.py b/h2integrate/core/test/test_recorder.py new file mode 100644 index 000000000..680357808 --- /dev/null +++ b/h2integrate/core/test/test_recorder.py @@ -0,0 +1,213 @@ +import os + +from h2integrate import EXAMPLE_DIR +from h2integrate.core.h2integrate_model import H2IntegrateModel +from h2integrate.core.inputs.validation import load_driver_yaml + + +TEST_RECORDER_OUTPUT_DIR = "testingtesting_output_dir" +TEST_RECORDER_OUTPUT_FILE0 = "testingtesting_filename.sql" +TEST_RECORDER_OUTPUT_FILE1 = "testingtesting_filename0.sql" +TEST_RECORDER_OUTPUT_FILE2 = "testingtesting_filename1.sql" + + +def test_output_folder_creation_first_run(subtests): + # Test that the sql file is written to the output folder + # with the specified name + + # change to example dir + os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") + + # initialize H2I using non-optimization config + input_file = EXAMPLE_DIR / "05_wind_h2_opt" / "wind_plant_electrolyzer0.yaml" + h2i = H2IntegrateModel(input_file) + + # load driver config for optimization run + driver_config = load_driver_yaml(EXAMPLE_DIR / "05_wind_h2_opt" / "driver_config.yaml") + + # update driver config params with test variables + new_output_folder = TEST_RECORDER_OUTPUT_DIR + filename_initial = TEST_RECORDER_OUTPUT_FILE0 + driver_config["general"]["folder_output"] = new_output_folder + driver_config["recorder"]["file"] = filename_initial + driver_config["driver"]["optimization"]["max_iter"] = 5 # to prevent tests taking too long + + # reset the driver config in H2I + h2i.driver_config = driver_config + + # reinitialize the driver model + h2i.create_driver_model() + + # check if output folder and output files exist + output_folder_exists = (EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder).exists() + output_file_exists_prerun = ( + EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder / filename_initial + ).exists() + + with subtests.test("Run 0: output folder exists"): + assert output_folder_exists is True + with subtests.test("Run 0: recorder output file does not exist yet"): + assert output_file_exists_prerun is False + + # run the model + h2i.run() + + # check that recorder file was created + output_file_exists_postrun = ( + EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder / filename_initial + ).exists() + with subtests.test("Run 0: recorder output file exists after run"): + assert output_file_exists_postrun is True + + +def test_output_new_recorder_filename_second_run(subtests): + # Test that the sql file is written to the output folder + # with the specified base name and an appended 0 + # change to example dir + os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") + + # initialize H2I using non-optimization config + input_file = EXAMPLE_DIR / "05_wind_h2_opt" / "wind_plant_electrolyzer0.yaml" + h2i = H2IntegrateModel(input_file) + + # load driver config for optimization run + driver_config = load_driver_yaml(EXAMPLE_DIR / "05_wind_h2_opt" / "driver_config.yaml") + + # update driver config params with test variables + new_output_folder = TEST_RECORDER_OUTPUT_DIR + filename_initial = TEST_RECORDER_OUTPUT_FILE0 + filename_expected = TEST_RECORDER_OUTPUT_FILE1 + + driver_config["general"]["folder_output"] = new_output_folder + driver_config["recorder"]["file"] = filename_initial + driver_config["driver"]["optimization"]["max_iter"] = 5 # to prevent tests taking too long + + # reset the driver config in H2I + h2i.driver_config = driver_config + + # reinitialize the driver model + h2i.create_driver_model() + + # check if output folder and output files exist + output_folder_exists = (EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder).exists() + output_file_exists_prerun = ( + EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder / filename_initial + ).exists() + + with subtests.test("Run 1: output folder exists"): + assert output_folder_exists is True + with subtests.test("Run 1: initial recorder output file exists"): + assert output_file_exists_prerun is True + + # run the model + h2i.run() + + # check that the new recorder file was created + new_output_file_exists = ( + EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder / filename_expected + ).exists() + with subtests.test("Run 1: new recorder output file was made"): + assert new_output_file_exists is True + + +def test_output_new_recorder_overwrite_first_run(subtests): + # change to example dir + os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") + + # initialize H2I using non-optimization config + input_file = EXAMPLE_DIR / "05_wind_h2_opt" / "wind_plant_electrolyzer0.yaml" + h2i = H2IntegrateModel(input_file) + + # load driver config for optimization run + driver_config = load_driver_yaml(EXAMPLE_DIR / "05_wind_h2_opt" / "driver_config.yaml") + + # update driver config params with test variables + new_output_folder = TEST_RECORDER_OUTPUT_DIR + filename_initial = TEST_RECORDER_OUTPUT_FILE0 + filename_exists_if_failed = TEST_RECORDER_OUTPUT_FILE2 + driver_config["general"]["folder_output"] = new_output_folder + driver_config["recorder"]["file"] = filename_initial + + # specify that we want the previous file overwritten rather + # than create a new file + driver_config["recorder"].update({"overwrite_recorder": True}) + driver_config["driver"]["optimization"]["max_iter"] = 5 # to prevent tests taking too long + + # reset the driver config in H2I + h2i.driver_config = driver_config + + # reinitialize the driver model + h2i.create_driver_model() + + # check if output folder and output files exist + output_folder_exists = (EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder).exists() + output_file_exists_prerun = ( + EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder / filename_initial + ).exists() + + with subtests.test("Run 2: output folder exists"): + assert output_folder_exists is True + with subtests.test("Run 2: initial recorder output file exists"): + assert output_file_exists_prerun is True + + # run the model + h2i.run() + + # check that recorder file was overwritten + new_output_file_exists = ( + EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder / filename_exists_if_failed + ).exists() + with subtests.test("Run 2: initial output file was overwritten"): + assert new_output_file_exists is False + + +def test_output_new_recorder_filename_third_run(subtests): + # change to example dir + os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") + + # initialize H2I using non-optimization config + input_file = EXAMPLE_DIR / "05_wind_h2_opt" / "wind_plant_electrolyzer0.yaml" + h2i = H2IntegrateModel(input_file) + + # load driver config for optimization run + driver_config = load_driver_yaml(EXAMPLE_DIR / "05_wind_h2_opt" / "driver_config.yaml") + + # update driver config params with test variables + new_output_folder = TEST_RECORDER_OUTPUT_DIR + filename_initial = TEST_RECORDER_OUTPUT_FILE0 + filename_second = TEST_RECORDER_OUTPUT_FILE1 + filename_expected = TEST_RECORDER_OUTPUT_FILE2 + driver_config["general"]["folder_output"] = new_output_folder + driver_config["recorder"]["file"] = filename_initial + driver_config["driver"]["optimization"]["max_iter"] = 5 # to prevent tests taking too long + + # reset the driver config in H2I + h2i.driver_config = driver_config + + # reinitialize the driver model + h2i.create_driver_model() + + # check if output folder and output files exist + output_folder_exists = (EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder).exists() + output_file_exists_prerun = ( + EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder / filename_initial + ).exists() + run1_output_file_exists_prerun = ( + EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder / filename_second + ).exists() + with subtests.test("Run 3: output folder exists"): + assert output_folder_exists is True + with subtests.test("Run 3: initial recorder output file exists"): + assert output_file_exists_prerun is True + with subtests.test("Run 3: second recorder output file exists"): + assert run1_output_file_exists_prerun is True + + # run the model + h2i.run() + + # check that the new recorder file was created + new_output_file_exists = ( + EXAMPLE_DIR / "05_wind_h2_opt" / new_output_folder / filename_expected + ).exists() + with subtests.test("Run 3: new recorder output file was made"): + assert new_output_file_exists is True From 9eba75f5114cb5d78c98399a9713eaaba610deb5 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Fri, 10 Oct 2025 15:08:26 -0500 Subject: [PATCH 34/79] Flexible Finance Streams (#294) * wip commodity streams * minor update, wip * updated example 22 to use commodity stream and updated test * added another example based on example 16 to show commodity stream usage * fixed bug causing test failures * added documentation of commodity_stream * removed old examples from ng firming work * updated example 19 and tests for commodity stream and updated generic summer units * updated technologies in battery finance subgroup in example 19 * added commodity stream to ex 15 to test functionality with combiner * fixed bug with doc and oae * made subtest for ex 19 more clear * added comments to plant configs --------- Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> --- .../specifying_finance_parameters.md | 2 + .../plant_config.yaml | 1 + .../plant_config.yaml | 12 ++ h2integrate/core/h2integrate_model.py | 142 +++++++++++++----- h2integrate/transporters/generic_summer.py | 5 +- tests/h2integrate/test_all_examples.py | 46 ++++++ 6 files changed, 166 insertions(+), 42 deletions(-) diff --git a/docs/user_guide/specifying_finance_parameters.md b/docs/user_guide/specifying_finance_parameters.md index 8c041cf05..7bae9c756 100644 --- a/docs/user_guide/specifying_finance_parameters.md +++ b/docs/user_guide/specifying_finance_parameters.md @@ -43,6 +43,8 @@ Within this framework, there are two distinct layers, **finance groups** and **f List of `finance_groups` that contain the `finance_model` and `model_inputs`. Required if multiple `finance_groups` are being used. Technology-specific `finance_groups` can be called by using the technology name listed in the `tech_config` (e.g., `steel` to use the steel specific finance model). - `commodity_desc` (optional): A text label to further distinguish outputs for a commodity. This is particularly useful when multiple finance models or subgroups reference the same commodity but need to produce separate outputs. + - `commodity_stream` (optional): + A text label of a technology that outputs the specified ``commodity`` to use as the commodity production stream in finance calculations. This is particularly useful when wanting to choose a specific commodity stream to use in finance calculations (such as the outputs of combiners or splitters) ```{important} If no subgroups are defined, a **default subgroup** is created that contains *all technologies* and references the default finance model and commodity defined in `finance_groups`. diff --git a/examples/15_wind_solar_electrolyzer/plant_config.yaml b/examples/15_wind_solar_electrolyzer/plant_config.yaml index 512cab442..d88d0dee7 100644 --- a/examples/15_wind_solar_electrolyzer/plant_config.yaml +++ b/examples/15_wind_solar_electrolyzer/plant_config.yaml @@ -75,6 +75,7 @@ finance_parameters: finance_subgroups: electricity: commodity: "electricity" + commodity_stream: "combiner" #use the total electricity output from the combiner for the finance calc technologies: ["wind", "solar"] hydrogen: commodity: "hydrogen" diff --git a/examples/19_wind_battery_dispatch/plant_config.yaml b/examples/19_wind_battery_dispatch/plant_config.yaml index 3b584ddd6..ee9750cf8 100644 --- a/examples/19_wind_battery_dispatch/plant_config.yaml +++ b/examples/19_wind_battery_dispatch/plant_config.yaml @@ -67,6 +67,18 @@ finance_parameters: cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: + wind: + commodity: "electricity" + commodity_stream: "wind" #use electricity from wind in finance calc + technologies: ["wind"] + battery: + commodity: "electricity" + commodity_stream: "battery" #use electricity from battery in finance calc + technologies: ["wind", "battery"] electricity: commodity: "electricity" + # since commodity_stream is not specified, the default behavior is to + # use the electricity produced from all electricity producing technologies + # included in 'technologies'. In this case, it will use the electricity + # produced by the wind technology as the commodity stream. technologies: ["wind","battery"] diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index 81b10c17e..b6744c4b3 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -364,8 +364,11 @@ def create_finance_model(self): Each subgroup is nested under a unique name of your choice under ["finance_parameters"]["subgroups"] in the plant configuration. * Subsystems such as ``ElectricitySumComp``, ``AdjustedCapexOpexComp``, - and the selected finance models are added to each subgroup's - finance group. + ``GenericProductionSummerPerformanceModel``, and the selected finance + models are added to each subgroup's finance group. + * If `commodity_stream` is provided for a subgroup, the output of the + technology specified as the `commodity_stream` must be the same as the + specified commodity for that subgroup. * Supports both global finance models and technology-specific finance models. Technology-specific finance models are defined in the technology configuration. @@ -478,6 +481,7 @@ def create_finance_model(self): "finance_groups", [default_finance_group_name] ) tech_names = subgroup_params.get("technologies") + commodity_stream = subgroup_params.get("commodity_stream", None) if isinstance(finance_group_names, str): finance_group_names = [finance_group_names] @@ -499,18 +503,57 @@ def create_finance_model(self): "Available " f"technologies: {list(self.technology_config['technologies'].keys())}" ) + if commodity_stream is not None: + if "combiner" not in commodity_stream and commodity_stream not in tech_names: + raise UserWarning( + f"The technology specific for the commodity_stream '{commodity_stream}' " + f"is not included in subgroup '{subgroup_name}' technologies list." + f" Subgroup '{subgroup_name}' includes technologies: {tech_names}." + ) finance_subgroups.update( { subgroup_name: { "tech_configs": tech_configs, "commodity": commodity, + "commodity_stream": commodity_stream, } } ) finance_subgroup = om.Group() - if commodity == "electricity": + # if commodity stream is specified, then create use the "summer" model + # to sum the commodity production profile from the commodity stream + if commodity_stream is not None: + # get the generic summer model + commodity_summer_model = self.supported_models.get("summer") + if "combiner" in commodity_stream or "splitter" in commodity_stream: + # combiners and splitters have the same tech config as the production summer, + # so just use their config if the commodity stream is a combiner or splitter + commodity_summer_config = self.technology_config["technologies"][ + commodity_stream + ] + else: + # create the input dictionary for the production summer based + # on the commodity type + commodity_summer_config = { + "model_inputs": { + "performance_parameters": { + "commodity": commodity, + "commodity_units": "kW" if commodity == "electricity" else "kg", + } + } + } + # create the commodity production summer model + commodity_summer = commodity_summer_model( + driver_config=self.driver_config, + plant_config=self.plant_config, + tech_config=commodity_summer_config, + ) + # add the production summer as a subsystem + finance_subgroup.add_subsystem(f"{commodity}_sum", commodity_summer) + + if commodity_stream is None and commodity == "electricity": finance_subgroup.add_subsystem( "electricity_sum", ElectricitySumComp(tech_configs=tech_configs) ) @@ -782,40 +825,56 @@ def connect_technologies(self): # Connect the resource output to the technology input self.model.connect(f"{resource_name}.{variable}", f"{tech_name}.{variable}") - # TODO: connect outputs of the technology models to the cost and finance models of the + # connect outputs of the technology models to the cost and finance models of the # same name if the cost and finance models are not None if "finance_parameters" in self.plant_config: # Connect the outputs of the technology models to the appropriate finance groups for group_id, group_configs in self.finance_subgroups.items(): tech_configs = group_configs.get("tech_configs") primary_commodity_type = group_configs.get("commodity") + commodity_stream = group_configs.get("commodity_stream") # Skip steel finances; it provides its own finances if any(c in tech_configs for c in ("steel", "geoh2")): continue - plant_producing_electricity = False + if commodity_stream is not None: + # connect commodity stream output to summer input + self.plant.connect( + f"{commodity_stream}.{primary_commodity_type}_out", + f"finance_subgroup_{group_id}.{primary_commodity_type}_sum.{primary_commodity_type}_in", + ) + # NOTE: this wont be compatible with co2 in the finance models + # because its expected to have a different name + # connect summer output to finance model + self.plant.connect( + f"finance_subgroup_{group_id}.{primary_commodity_type}_sum.total_{primary_commodity_type}_produced", + f"finance_subgroup_{group_id}.total_{primary_commodity_type}_produced", + ) - # Loop through technologies and connect electricity outputs to the ExecComp - # Only connect if the technology is included in at least one commodity's stackup - # and in this finance group - for tech_name in tech_configs.keys(): - if ( - tech_name in electricity_producing_techs - # and tech_name in all_included_techs - and primary_commodity_type == "electricity" - ): + # if commodity stream was not specified, follow existing logic + else: + plant_producing_electricity = False + + # Loop through technologies and connect electricity outputs to the ExecComp + # Only connect if the technology is included in at least one commodity's stackup + # and in this finance group + for tech_name in tech_configs.keys(): + if ( + tech_name in electricity_producing_techs + and primary_commodity_type == "electricity" + ): + self.plant.connect( + f"{tech_name}.electricity_out", + f"finance_subgroup_{group_id}.electricity_sum.electricity_{tech_name}", + ) + plant_producing_electricity = True + + if plant_producing_electricity and primary_commodity_type == "electricity": + # Connect total electricity produced to the finance group self.plant.connect( - f"{tech_name}.electricity_out", - f"finance_subgroup_{group_id}.electricity_sum.electricity_{tech_name}", + f"finance_subgroup_{group_id}.electricity_sum.total_electricity_produced", + f"finance_subgroup_{group_id}.total_electricity_produced", ) - plant_producing_electricity = True - - if plant_producing_electricity and primary_commodity_type == "electricity": - # Connect total electricity produced to the finance group - self.plant.connect( - f"finance_subgroup_{group_id}.electricity_sum.total_electricity_produced", - f"finance_subgroup_{group_id}.total_electricity_produced", - ) # Only connect technologies that are included in the finance stackup for tech_name in tech_configs.keys(): @@ -843,17 +902,28 @@ def connect_technologies(self): f"{tech_name}.time_until_replacement", f"finance_subgroup_{group_id}.{tech_name}_time_until_replacement", ) - if primary_commodity_type == "hydrogen": + + if commodity_stream is None: + if "electrolyzer" in tech_name: + if primary_commodity_type == "hydrogen": + self.plant.connect( + f"{tech_name}.total_hydrogen_produced", + f"finance_subgroup_{group_id}.total_hydrogen_produced", + ) + + if "ammonia" in tech_name and primary_commodity_type == "ammonia": self.plant.connect( - f"{tech_name}.total_hydrogen_produced", - f"finance_subgroup_{group_id}.total_hydrogen_produced", + f"{tech_name}.total_ammonia_produced", + f"finance_subgroup_{group_id}.total_ammonia_produced", ) - if "ammonia" in tech_name and primary_commodity_type == "ammonia": - self.plant.connect( - f"{tech_name}.total_ammonia_produced", - f"finance_subgroup_{group_id}.total_ammonia_produced", - ) + if ( + "doc" in tech_name or "oae" in tech_name + ) and primary_commodity_type == "co2": + self.plant.connect( + f"{tech_name}.co2_capture_mtpy", + f"finance_subgroup_{group_id}.co2_capture_kgpy", + ) if "methanol" in tech_name and primary_commodity_type == "methanol": self.plant.connect( @@ -861,14 +931,6 @@ def connect_technologies(self): f"finance_subgroup_{group_id}.total_methanol_produced", ) - if ( - "doc" in tech_name or "oae" in tech_name - ) and primary_commodity_type == "co2": - self.plant.connect( - f"{tech_name}.co2_capture_mtpy", - f"finance_subgroup_{group_id}.co2_capture_kgpy", - ) - if "air_separator" in tech_name and primary_commodity_type == "nitrogen": self.plant.connect( f"{tech_name}.total_nitrogen_produced", diff --git a/h2integrate/transporters/generic_summer.py b/h2integrate/transporters/generic_summer.py index d7a3ee91b..02e9f7b39 100644 --- a/h2integrate/transporters/generic_summer.py +++ b/h2integrate/transporters/generic_summer.py @@ -43,9 +43,10 @@ def setup(self): if self.config.commodity == "electricity": # NOTE: this should be updated in overhaul required for flexible dt - summed_units = f"{self.config.commodity_units}*h" + # and flexible simulation length + summed_units = f"{self.config.commodity_units}*h/year" else: - summed_units = self.config.commodity_units + summed_units = f"{self.config.commodity_units}/year" self.add_input( f"{self.config.commodity}_in", diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index 40ae71076..8acc18d83 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -820,3 +820,49 @@ def test_wind_battery_dispatch_example(subtests): model.prob.get_val("battery.electricity_missed_load") ) assert pytest.approx(electricity_missed_load, rel=1e-6) == 165604.70758669 + + # Subtest for total electricity produced from wind, should be equal to total + # electricity produced from finance_subgroup_electricity + with subtests.test("Check total electricity produced from wind"): + wind_electricity_finance = model.prob.get_val( + "finance_subgroup_wind.electricity_sum.total_electricity_produced", units="kW*h/year" + )[0] + assert pytest.approx(wind_electricity_finance, rel=1e-6) == total_electricity + + with subtests.test("Check total electricity produced from wind compared to wind aep"): + wind_electricity_performance = np.sum( + model.prob.get_val("wind.electricity_out", units="kW") + ) + assert pytest.approx(wind_electricity_performance, rel=1e-6) == wind_electricity_finance + + # Subtest for total electricity produced from battery, should be equal + # to sum of "battery.electricity_out" + with subtests.test("Check total electricity produced from battery"): + battery_electricity_finance = model.prob.get_val( + "finance_subgroup_battery.electricity_sum.total_electricity_produced", units="MW*h/year" + )[0] + battery_electricity_performance = np.sum( + model.prob.get_val("battery.electricity_out", units="MW") + ) + assert ( + pytest.approx(battery_electricity_finance, rel=1e-6) == battery_electricity_performance + ) + + wind_lcoe = model.prob.get_val("finance_subgroup_wind.LCOE", units="USD/MW/h")[0] + battery_lcoe = model.prob.get_val("finance_subgroup_battery.LCOE", units="USD/MW/h")[0] + electricity_lcoe = model.prob.get_val("finance_subgroup_electricity.LCOE", units="USD/MW/h")[0] + + with subtests.test("Check electricity LCOE is greater than wind LCOE"): + assert electricity_lcoe > wind_lcoe + + with subtests.test("Check battery LCOE is greater than electricity LCOE"): + assert battery_lcoe > electricity_lcoe + + with subtests.test("Check battery LCOE"): + assert pytest.approx(battery_lcoe, rel=1e-6) == 131.781997 + + with subtests.test("Check wind LCOE"): + assert pytest.approx(wind_lcoe, rel=1e-6) == 58.8248 + + with subtests.test("Check electricity LCOE"): + assert pytest.approx(electricity_lcoe, rel=1e-6) == 78.01723 From 0f2ef468501ccbb1957dfc6936d2fafc8d80472f Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Tue, 14 Oct 2025 13:42:20 -0600 Subject: [PATCH 35/79] GOES Solar Resource Models (#279) * added solar resource draft * started adding doc strings for solar resource * added solar resource api calls * added solar resource api calls * added solar resource docs * added solar resource data file from goes api call * added solar resource dir to gitignore * added tests for solar resource and updated pysam solar tests * updated solar cost model tests * added docstrings and inline comments to pysam pvwatts model * Adding init file * removed legacy solar resource tests * removed legacy solar resource files * updated year for solar resource test * added all goes api models * added all solar resource datasets to supported models * renamed goes_v4_solar_api to goes_aggregated_v4_solar_api * updated solar resource imports for tests * updated solar resource docs * removed old solar resource model * added tests for other goes solar resource models * updated changelog * cleaned up docs * added regions covered to docs * doc clean up * fix typos * remove commented code * renamed solar resource models * updated docs to explain tmy tgy and tdy * Minor doc changes and streamlined setup methods for GOES * fixed breaking tests --------- Co-authored-by: John Jasa Co-authored-by: kbrunik Co-authored-by: Jasa --- .gitignore | 3 +- CHANGELOG.md | 1 + docs/_toc.yml | 9 +- docs/getting_started/environment_variables.md | 5 +- docs/resource/goes_solar_v4_api.md | 60 + docs/resource/resource_index.md | 1 + docs/resource/solar_index.md | 72 + docs/resource/wind_index.md | 1 + .../plant_config.yaml | 10 +- .../converters/solar/solar_baseclass.py | 7 +- h2integrate/converters/solar/solar_pysam.py | 115 +- .../converters/solar/test/test_pysam_solar.py | 69 +- .../solar/test/test_pysam_with_atb_costs.py | 104 +- h2integrate/core/supported_models.py | 10 + h2integrate/resource/solar/__init__.py | 0 .../solar/nrel_developer_goes_api_base.py | 212 + .../solar/nrel_developer_goes_api_models.py | 218 + .../resource/solar/solar_resource_base.py | 59 + h2integrate/resource/solar/test/__init__.py | 0 .../resource/solar/test/test_nrel_goes_api.py | 214 + ...5_2012_goes_aggregated_v4_60min_utc_tz.csv | 8763 +++++++++++++++++ 21 files changed, 9798 insertions(+), 135 deletions(-) create mode 100644 docs/resource/goes_solar_v4_api.md create mode 100644 docs/resource/solar_index.md create mode 100644 h2integrate/resource/solar/__init__.py create mode 100644 h2integrate/resource/solar/nrel_developer_goes_api_base.py create mode 100644 h2integrate/resource/solar/nrel_developer_goes_api_models.py create mode 100644 h2integrate/resource/solar/solar_resource_base.py create mode 100644 h2integrate/resource/solar/test/__init__.py create mode 100644 h2integrate/resource/solar/test/test_nrel_goes_api.py create mode 100644 resource_files/solar/34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv diff --git a/.gitignore b/.gitignore index f024027b5..9096bc44e 100644 --- a/.gitignore +++ b/.gitignore @@ -144,5 +144,6 @@ reports/* *.aux *.bbl -# Ignore wind resource data files +# Ignore wind and solar resource data files resource_files/wind/* +resource_files/solar/* diff --git a/CHANGELOG.md b/CHANGELOG.md index 637b64827..21b3f0698 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Added capability for user-defined finance models in the H2Integrate framework - Added an optimized offshore methanol production case to examples/03_methanol/co2_hydrogenation_doc - Updated setting up recorder in `PoseOptimization` +- Added resource models to make solar resource API calls to the NREL Developer GOES dataset ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index 5811b0f2b..004e70639 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -30,13 +30,14 @@ parts: - file: technology_models/technology_overview - file: technology_models/feedstocks - file: technology_models/run_of_river - - file: technology_models/direct_ocean_capture - file: technology_models/natural_gas - file: technology_models/wombat_electrolyzer_om - file: technology_models/pvwattsv8_solar_pv.md - file: technology_models/atb_costs_pv.md - file: technology_models/co2.md - file: technology_models/simple_generic_storage.md + - file: technology_models/methanol.md + - file: technology_models/ammonia.md - caption: Resource Models chapters: @@ -44,10 +45,8 @@ parts: sections: - file: resource/wind_index - file: resource/wind_toolkit_v2_api - -- caption: Examples - chapters: - - file: examples/01-green-hydrogen + - file: resource/solar_index + - file: resource/goes_solar_v4_api - caption: Developer Guide chapters: diff --git a/docs/getting_started/environment_variables.md b/docs/getting_started/environment_variables.md index 7af093821..5a1c4133f 100644 --- a/docs/getting_started/environment_variables.md +++ b/docs/getting_started/environment_variables.md @@ -1,3 +1,4 @@ +(environment_variables:setting-environment-variables)= # Setting Environment Variables H2Integrate can pull weather resource datasets (e.g. data needed for wind or solar generation) automatically for a user-provided location. @@ -15,6 +16,7 @@ The remaining sections outline different options for setting environment variabl - [Set environment variables with a .yaml file](#set-environment-variables-with-yaml-file) - [Set environment variables with a .env file](#set-environment-variables-with-env-file) +(save-environment-variables-with-conda-preferred)= ## Save Environment Variables with Conda (Preferred) After creating the conda environment for H2Integrate, you can [save environment variables with conda](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#saving-environment-variables) within that environment. @@ -60,7 +62,7 @@ unset NREL_API_EMAIL unset RESOURCE_DIR ``` - +(set-environment-variables-with-yaml-file)= ## Set Environment Variables with .yaml file 1. In `environment.yml`, add the following lines to the bottom of the file, and replace the @@ -80,6 +82,7 @@ unset RESOURCE_DIR conda env create -f environment.yml ``` +(set-environment-variables-with-env-file)= ## Set Environment Variables with .env file ```{note} diff --git a/docs/resource/goes_solar_v4_api.md b/docs/resource/goes_solar_v4_api.md new file mode 100644 index 000000000..65c3b720d --- /dev/null +++ b/docs/resource/goes_solar_v4_api.md @@ -0,0 +1,60 @@ +(solar_resource:goes_v4_api)= +# Solar Resource: GOES PSM v4 + +There are four datasets that use the [NSRDB GOES PSM v4 API](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-full-disc-v4-0-0-download/) calls: +- "goes_aggregated_solar_v4_api" +- "goes_conus_solar_v4_api" +- "goes_fulldisc_solar_v4_api" +- "goes_tmy_solar_v4_api" + - supports solar resource data for typical meteorological year (TMY), typical global horizontal irradiance year (TGY), and typical direct normal irradiance year (TDY) + +These datasets allow for resource data to be downloaded for **locations** within the continental United States. + +| Model | Temporal resolution | Spatial resolution | Years covered | Regions | Website | +| :--------- | :---------------: | :---------------: | :---------------: | :---------------: | :---------------: | +| `goes_aggregated_solar_v4_api` | 30, 60 min | 4 km | 1998-2024 | North America, South America | [GOES Aggregated](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-aggregated-v4-0-0-download/) | +| `goes_conus_solar_v4_api` | 5, 15, 30, 60 min | 2 km | 2018-2024 | Continental United States | [GOES Conus](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-conus-v4-0-0-download/) | +| `goes_fulldisc_solar_v4_api` | 10, 30, 60 min | 2 km | 2018-2024 | North America, South America | [GOES Full disc](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-full-disc-v4-0-0-download/) | +| `goes_tmy_solar_v4_api` | 60 min | 4 km | 2022-2024, for tmy, tdy and tgy | North America, South America | [GOES TMY](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-tmy-v4-0-0-download/) | + + +```{note} +For the goes_tmy_v4_api model, the resource_year should be specified as a string formatted as `tdy-yyyy` or `tgy-yyy` or `tmy-yyyy` where yyyy is the year between 2022 and 2024. +``` + + +## Available Data + +| Resource Data | Included | +| :---------------- | :---------------: | +| `wind_direction` | X | +| `wind_speed` | X | +| `temperature` | X | +| `pressure` | X | +| `relative_humidity` | X | +| `ghi` | X | +| `dhi` | X | +| `dni` | X | +| `clearsky_ghi` | X | +| `clearsky_dhi` | X | +| `clearsky_dni` | X | +| `dew_point` | X | +| `surface_albedo` | X | +| `solar_zenith_angle` | X | +| `snow_depth` | X | +| `precipitable_water` | X | + +| Additional Data | Included | +| :---------------- | :---------------: | +| `site_id` | X | +| `site_lat` | X | +| `site_lon` | X | +| `elevation` | X | +| `site_tz` | X | +| `data_tz` | X | +| `filepath` | X | +| `year` | X | +| `month` | X | +| `day` | X | +| `hour` | X | +| `minute` | X | diff --git a/docs/resource/resource_index.md b/docs/resource/resource_index.md index a33404c1c..6ea4c7762 100644 --- a/docs/resource/resource_index.md +++ b/docs/resource/resource_index.md @@ -2,3 +2,4 @@ - [Wind Resource Data](wind_resource:models) +- [Solar Resource Data](solar_resource:models) diff --git a/docs/resource/solar_index.md b/docs/resource/solar_index.md new file mode 100644 index 000000000..b24a9c32d --- /dev/null +++ b/docs/resource/solar_index.md @@ -0,0 +1,72 @@ +(solar_resource:models)= +# Solar Resource: Model Overview + +- [GOES PSM v4 API](solar_resource:goes_v4_api): these models require an API key from the [NREL developer network](https://developer.nrel.gov/signup/), the available models are: + - "goes_aggregated_solar_v4_api" + - "goes_conus_solar_v4_api" + - "goes_fulldisc_solar_v4_api" + - "goes_tmy_solar_v4_api" + +Please see the [GOES PSM v4 API model documentation here for more information on these models.](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-full-disc-v4-0-0-download/) + + +```{note} +Please refer to the [`Setting Environment Variables`](environment_variables:setting-environment-variables) doc page for information on setting up an NREL API key if you haven't yet. +``` + +(solarresource:overview)= +# Solar Resource: Output Data + +Solar resource models may output solar resource data, site information, information about the data source, and time information. This information is outputted as a dictionary. The following sections detail the naming convention for the dictionary keys, standardized units, and descriptions of all the output data that may be output from a solar resource model. + +- [Solar Resource Data](#primary-data-solar-resource-timeseries) +- [Site Information](#additional-data-site-information) +- [Data Source Information](#additional-data-data-source) +- [Time Profile Information](#additional-data-time-profile) + + +```{note} +Not all solar resource models will output all the data keys listed below. Please check the documentation for each solar resource model and solar performance model to ensure compatibility. +``` + +(primary-data-solar-resource-timeseries)= +## Primary Data: Solar Resource Timeseries +The below variables are outputted as arrays, with a length equal to the simulation duration. The naming convention and standardized units of solar resource variables are listed below: +- `solar_direction`: solar direction in degrees (units are 'deg') +- `solar_speed`: solar speed in meters per second (units are 'm/s') +- `temperature`: air temperature in Celsius (units are 'C') +- `pressure`: air pressure in millibar (units are 'mbar') +- `relative_humidity`: relative humidity represented as a percentage (units are 'percent') +- `ghi`: global horizontal irradiance in watts per square meter (units are 'W/m**2') +- `dni`: beam normal irradiance in watts per square meter (units are 'W/m**2') +- `dhi`: diffuse horizontal irradiance in watts per square meter (units are 'W/m**2') +- `clearsky_ghi`: global horizontal irradiance in clearsky conditions in watts per square meter (units are 'W/m**2') +- `clearsky_dni`: beam normal irradiance in clearsky conditions in watts per square meter (units are 'W/m**2') +- `clearsky_dhi`: diffuse horizontal irradiance in clearsky conditions in watts per square meter (units are 'W/m**2') +- `dew_point`: dew point in Celsius (units are 'C') +- `surface_albedo`: surface albedo represented as a percentage (units are 'percent') +- `solar_zenith_angle`: solar zenith angle in degrees (units are 'deg') +- `snow_depth`: snow depth in centimeters (units are 'cm') +- `precipitable_water`: precipitable water in centimeters (units are 'cm') + +(additional-data-site-information)= +## Additional Data: Site Information +- `site_id` (int): site identification +- `site_tz` (int | float): local timezone for the site +- `site_lat` (float): latitude of the site +- `site_lon` (float): longitude of the site +- `elevation` (float | int): elevation of the site in meters + +(additional-data-data-source)= +## Additional Data: Data source +- `data_tz` (int | float): timezone the data is in represented as an hour offset from UTC +- `filepath` (str): filepath where the resource data was loaded from + +(additional-data-time-profile)= +## Additional Data: Time profile +Time data may be outputted as arrays to represent the time profile of the resource data. These times should be represented in the timezone of `data_tz` (if outputted). +- `year`: year as 4-digit value (i.e., 2019) +- `month`: month of year (1-12) +- `day`: day of month (1-31) +- `hour`: hour of day from a 24-hour clock (0-23) +- `minute`: minute of hour (0-59) diff --git a/docs/resource/wind_index.md b/docs/resource/wind_index.md index 46e636ed5..8254e696d 100644 --- a/docs/resource/wind_index.md +++ b/docs/resource/wind_index.md @@ -23,6 +23,7 @@ Wind resource models may output wind resource data, site information, informatio Not all wind resource models will output all the data keys listed below. Please check the documentation for each wind resource model and wind performance model to ensure compatibility. ``` +(primary-data-wind-resource-timeseries)= ## Primary Data: Wind Resource Timeseries The below variables are outputted as arrays, with a length equal to the simulation duration. In the variables listed below, `` is used to indicate the height (in meters) above the ground for the resource parameter. `` should be 0 for surface level wind resource data. The naming convention and standardized units of wind resource variables are listed below: - `wind_direction_m`: wind direction in degrees (units are 'deg') diff --git a/examples/15_wind_solar_electrolyzer/plant_config.yaml b/examples/15_wind_solar_electrolyzer/plant_config.yaml index d88d0dee7..009d59ebf 100644 --- a/examples/15_wind_solar_electrolyzer/plant_config.yaml +++ b/examples/15_wind_solar_electrolyzer/plant_config.yaml @@ -4,7 +4,6 @@ description: "This plant is located in MN, USA..." site: latitude: 30.6617 longitude: -101.7096 - year: 2013 # array of polygons defining boundaries with x/y coords boundaries: [ @@ -25,8 +24,12 @@ site: latitude: 35.2018863 longitude: -101.945027 resource_year: 2012 - - solar_resource_filepath: "../11_hybrid_energy_plant/tech_inputs/weather/solar/30.6617_-101.7096_psmv3_60_2013.csv" + solar_resource: + resource_model: "goes_aggregated_solar_v4_api" + resource_parameters: + resource_year: 2013 + resource_dir: "../11_hybrid_energy_plant/tech_inputs/weather/solar" + resource_filename: "30.6617_-101.7096_psmv3_60_2013.csv" # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections @@ -42,6 +45,7 @@ technology_interconnections: [ resource_to_tech_connections: [ # connect the wind resource to the wind technology ['wind_resource', 'wind', 'wind_resource_data'], + ['solar_resource', 'solar', 'solar_resource_data'], ] plant: diff --git a/h2integrate/converters/solar/solar_baseclass.py b/h2integrate/converters/solar/solar_baseclass.py index 21a3ed665..013881d65 100644 --- a/h2integrate/converters/solar/solar_baseclass.py +++ b/h2integrate/converters/solar/solar_baseclass.py @@ -8,6 +8,11 @@ def initialize(self): self.options.declare("tech_config", types=dict) def setup(self): + self.add_discrete_input( + "solar_resource_data", + val={}, + desc="Solar resource data dictionary", + ) n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] self.add_output( "electricity_out", @@ -17,7 +22,7 @@ def setup(self): desc="Power output from SolarPlant", ) - def compute(self, inputs, outputs): + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): """ Computation for the OM component. diff --git a/h2integrate/converters/solar/solar_pysam.py b/h2integrate/converters/solar/solar_pysam.py index cc61f681d..1cd3637a9 100644 --- a/h2integrate/converters/solar/solar_pysam.py +++ b/h2integrate/converters/solar/solar_pysam.py @@ -1,30 +1,11 @@ import PySAM.Pvwattsv8 as Pvwatts from attrs import field, define -from hopp.simulation.technologies.resource import SolarResource from h2integrate.core.utilities import BaseConfig, merge_shared_inputs, check_pysam_input_params from h2integrate.core.validators import contains, range_val_or_none from h2integrate.converters.solar.solar_baseclass import SolarPerformanceBaseClass -@define -class PYSAMSolarPlantPerformanceModelSiteConfig(BaseConfig): - """Configuration class for the location of the solar pv plant - PYSAMSolarPlantPerformanceComponentSite. - - Attributes: - latitude (float): Latitude of wind plant location. - longitude (float): Longitude of wind plant location. - year (float): Year for resource. - solar_resource_filepath (str): Path to solar resource file. Defaults to "". - """ - - latitude: float = field() - longitude: float = field() - year: float = field() - solar_resource_filepath: str = field(default="") - - @define class PYSAMSolarPlantPerformanceModelDesignConfig(BaseConfig): """Configuration class for design parameters of the solar pv plant. @@ -162,9 +143,7 @@ class PYSAMSolarPlantPerformanceModel(SolarPerformanceBaseClass): def setup(self): super().setup() - self.config = PYSAMSolarPlantPerformanceModelSiteConfig.from_dict( - self.options["plant_config"]["site"], strict=False - ) + self.design_config = PYSAMSolarPlantPerformanceModelDesignConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), strict=False, @@ -189,8 +168,6 @@ def setup(self): self.system_model = Pvwatts.new(self.design_config.config_name) design_dict = self.design_config.create_input_dict() - tilt = self.calc_tilt_angle() - design_dict["SystemDesign"].update({"tilt": tilt}) # update design_dict if user provides non-empty design information if bool(self.design_config.pysam_options): @@ -202,18 +179,10 @@ def setup(self): else: design_dict.update({group: group_parameters}) + self.design_dict = design_dict self.system_model.assign(design_dict) - solar_resource = SolarResource( - lat=self.config.latitude, - lon=self.config.longitude, - year=self.config.year, - filepath=self.config.solar_resource_filepath, - ) - - self.system_model.value("solar_resource_data", solar_resource.data) - - def calc_tilt_angle(self): + def calc_tilt_angle(self, latitude): """ Calculates the tilt angle of the PV panel based on the tilt option described by design_config.tilt_angle_func. @@ -243,23 +212,87 @@ def calc_tilt_angle(self): # If tilt angle function is 'lat', use the latitude as the tilt if self.design_config.tilt_angle_func == "lat": - return self.config.latitude + return latitude # If tilt angle function is 'lat-func', use empirical formulas based on latitude if self.design_config.tilt_angle_func == "lat-func": - if self.config.latitude <= 25: + if latitude <= 25: # For latitudes <= 25, use 0.87 * latitude - return self.config.latitude * 0.87 - if 25 < self.config.latitude <= 50: + return latitude * 0.87 + if 25 < latitude <= 50: # For latitudes between 25 and 50, use 0.76 * latitude + 3.1 - return (self.config.latitude * 0.76) + 3.1 + return (latitude * 0.76) + 3.1 # For latitudes > 50, use latitude directly - return self.config.latitude + return latitude + + def format_resource_data(self, solar_resource_data): + """Format solar resource data into the format required for the + PySAM PvWattsv8 module. This method includes: + + 1. Renaming solar resource data keys to the keynames + expected by the PvWattsv8 modules + 2. Remove any solar resource data that PvWattsv8 does not use. + + Args: + solar_resource_data (dict): solar resource data dictionary + + Returns: + dict: PySAM formatted solar resource data + """ - def compute(self, inputs, outputs): + resource_name_mapper = { + "elevation": "elev", + "site_lat": "lat", + "site_lon": "lon", + "data_tz": "tz", + "year": "year", + "month": "month", + "day": "day", + "hour": "hour", + "minute": "minute", + "dni": "dn", + "dhi": "df", + "ghi": "gh", + "wind_speed": "wspd", + "temperature": "tdry", + "wind_direction": "wdir", + "pressure": "pres", + "dew_point": "tdew", + "relative_humidity": "rhum", + "surface_albedo": "alb", + "snow_depth": "snow", + } + + reformatted_data = {} + for old_key, values in solar_resource_data.items(): + if old_key in resource_name_mapper: + new_key = resource_name_mapper[old_key] + if not isinstance(values, (float, int, str, bool)): + reformatted_data.update({new_key: values.astype(float).tolist()}) + else: + reformatted_data.update({new_key: values}) + return reformatted_data + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + # calculate the tilt angle based on site latitude (use 0 if site latitude is not input) + tilt = self.calc_tilt_angle(discrete_inputs["solar_resource_data"].get("site_lat", 0)) + # over-write the tilt angle if it was specified in the design dict + tilt_angle = self.design_dict.get("SystemDesign", {}).get("tilt", tilt) + # assign the tilt angle + self.system_model.value("tilt", tilt_angle) + + # set the system capacity self.system_model.value("system_capacity", inputs["capacity_kWdc"][0]) + solar_resource_data = discrete_inputs["solar_resource_data"] + # format solar resource data into the necessary format for PySAM + solar_resource = self.format_resource_data(solar_resource_data) + self.system_model.value("solar_resource_data", solar_resource) + + # run the model self.system_model.execute(0) + + # assign outputs outputs["electricity_out"] = self.system_model.Outputs.gen # kW-dc pv_capacity_kWdc = self.system_model.value("system_capacity") dc_ac_ratio = self.system_model.value("dc_ac_ratio") diff --git a/h2integrate/converters/solar/test/test_pysam_solar.py b/h2integrate/converters/solar/test/test_pysam_solar.py index 085254e42..371b83a51 100644 --- a/h2integrate/converters/solar/test/test_pysam_solar.py +++ b/h2integrate/converters/solar/test/test_pysam_solar.py @@ -4,6 +4,22 @@ from h2integrate import EXAMPLE_DIR from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel +from h2integrate.resource.solar.nrel_developer_goes_api_models import GOESAggregatedSolarAPI + + +@fixture +def plant_config(): + plant = { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + "start_time": "01/01/1900 00:30:00", + "timezone": 0, + }, + } + + return {"plant": plant, "site": {"latitude": 30.6617, "longitude": -101.7096, "resources": {}}} @fixture @@ -11,10 +27,9 @@ def solar_resource_dict(): pv_resource_dir = EXAMPLE_DIR / "11_hybrid_energy_plant" / "tech_inputs" / "weather" / "solar" pv_filename = "30.6617_-101.7096_psmv3_60_2013.csv" pv_resource_dict = { - "latitude": 30.6617, - "longitude": -101.7096, - "year": 2013, - "solar_resource_filepath": pv_resource_dir / pv_filename, + "resource_year": 2013, + "resource_dir": pv_resource_dir, + "resource_filename": pv_filename, } return pv_resource_dict @@ -36,7 +51,9 @@ def basic_pysam_options(): return pysam_options -def test_pvwatts_singleowner_notilt(basic_pysam_options, solar_resource_dict, subtests): +def test_pvwatts_singleowner_notilt( + basic_pysam_options, solar_resource_dict, plant_config, subtests +): """Test `PYSAMSolarPlantPerformanceModel` with a basic input scenario: - `pysam_options` is provided @@ -63,19 +80,19 @@ def test_pvwatts_singleowner_notilt(basic_pysam_options, solar_resource_dict, su } } - plant_info = { - "simulation": { - "n_timesteps": 8760, - "dt": 3600, - } - } - prob = om.Problem() + solar_resource = GOESAggregatedSolarAPI( + plant_config=plant_config, + resource_config=solar_resource_dict, + driver_config={}, + ) comp = PYSAMSolarPlantPerformanceModel( - plant_config={"site": solar_resource_dict, "plant": plant_info}, + plant_config=plant_config, tech_config=tech_config_dict, + driver_config={}, ) - prob.model.add_subsystem("pv_perf", comp) + prob.model.add_subsystem("solar_resource", solar_resource, promotes=["*"]) + prob.model.add_subsystem("pv_perf", comp, promotes=["*"]) prob.setup() prob.run_model() @@ -95,7 +112,9 @@ def test_pvwatts_singleowner_notilt(basic_pysam_options, solar_resource_dict, su assert pytest.approx(capacity_kWdc, rel=1e-6) == pv_design_dict["pv_capacity_kWdc"] -def test_pvwatts_singleowner_withtilt(basic_pysam_options, solar_resource_dict, subtests): +def test_pvwatts_singleowner_withtilt( + basic_pysam_options, solar_resource_dict, plant_config, subtests +): """Test PYSAMSolarPlantPerformanceModel with tilt angle calculated using 'lat-func' option. The AEP of this test should be higher than the AEP in `test_pvwatts_singleowner_notilt`. """ @@ -115,19 +134,19 @@ def test_pvwatts_singleowner_withtilt(basic_pysam_options, solar_resource_dict, } } - plant_info = { - "simulation": { - "n_timesteps": 8760, - "dt": 3600, - } - } - prob = om.Problem() + solar_resource = GOESAggregatedSolarAPI( + plant_config=plant_config, + resource_config=solar_resource_dict, + driver_config={}, + ) comp = PYSAMSolarPlantPerformanceModel( - plant_config={"site": solar_resource_dict, "plant": plant_info}, + plant_config=plant_config, tech_config=tech_config_dict, + driver_config={}, ) - prob.model.add_subsystem("pv_perf", comp) + prob.model.add_subsystem("solar_resource", solar_resource, promotes=["*"]) + prob.model.add_subsystem("pv_perf", comp, promotes=["*"]) prob.setup() prob.run_model() @@ -136,7 +155,7 @@ def test_pvwatts_singleowner_withtilt(basic_pysam_options, solar_resource_dict, capacity_kWdc = prob.get_val("pv_perf.capacity_kWdc")[0] with subtests.test("AEP"): - assert pytest.approx(aep, rel=1e-6) == 556441491 + assert pytest.approx(aep, rel=1e-6) == 556443491 with subtests.test("Capacity in kW-AC"): assert ( diff --git a/h2integrate/converters/solar/test/test_pysam_with_atb_costs.py b/h2integrate/converters/solar/test/test_pysam_with_atb_costs.py index 095f5dc42..85a6cf01f 100644 --- a/h2integrate/converters/solar/test/test_pysam_with_atb_costs.py +++ b/h2integrate/converters/solar/test/test_pysam_with_atb_costs.py @@ -6,6 +6,7 @@ from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel from h2integrate.converters.solar.atb_res_com_pv_cost import ATBResComPVCostModel from h2integrate.converters.solar.atb_utility_pv_cost import ATBUtilityPVCostModel +from h2integrate.resource.solar.nrel_developer_goes_api_models import GOESAggregatedSolarAPI @fixture @@ -13,10 +14,9 @@ def solar_resource_dict(): pv_resource_dir = EXAMPLE_DIR / "11_hybrid_energy_plant" / "tech_inputs" / "weather" / "solar" pv_filename = "30.6617_-101.7096_psmv3_60_2013.csv" pv_resource_dict = { - "latitude": 30.6617, - "longitude": -101.7096, - "year": 2013, - "solar_resource_filepath": pv_resource_dir / pv_filename, + "resource_year": 2013, + "resource_dir": pv_resource_dir, + "resource_filename": pv_filename, } return pv_resource_dict @@ -49,6 +49,21 @@ def utility_scale_pv_performance_params(): return tech_params +@fixture +def plant_config(): + plant = { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + "start_time": "01/01/1900 00:30:00", + "timezone": 0, + }, + } + + return {"plant": plant, "site": {"latitude": 30.6617, "longitude": -101.7096, "resources": {}}} + + @fixture def commercial_pv_performance_params(): pysam_options = { @@ -93,27 +108,6 @@ def residential_pv_performance_params(): return tech_params -@fixture -def plant_config(): - pv_resource_dir = EXAMPLE_DIR / "11_hybrid_energy_plant" / "tech_inputs" / "weather" / "solar" - pv_filename = "30.6617_-101.7096_psmv3_60_2013.csv" - pv_resource_dict = { - "latitude": 30.6617, - "longitude": -101.7096, - "year": 2013, - "solar_resource_filepath": pv_resource_dir / pv_filename, - } - return { - "plant": { - "plant_life": 30, - "simulation": { - "n_timesteps": 8760, - }, - }, - "site": pv_resource_dict, - } - - def test_utility_pv_cost( utility_scale_pv_performance_params, solar_resource_dict, plant_config, subtests ): @@ -131,24 +125,24 @@ def test_utility_pv_cost( } } - plant_info = { - "plant_life": 30, - "simulation": { - "n_timesteps": 8760, - "dt": 3600, - }, - } - prob = om.Problem() + solar_resource = GOESAggregatedSolarAPI( + plant_config=plant_config, + resource_config=solar_resource_dict, + driver_config={}, + ) perf_comp = PYSAMSolarPlantPerformanceModel( - plant_config={"site": solar_resource_dict, "plant": plant_info}, + plant_config=plant_config, tech_config=tech_config_dict, + driver_config={}, ) cost_comp = ATBUtilityPVCostModel( plant_config=plant_config, tech_config=tech_config_dict, + driver_config={}, ) + prob.model.add_subsystem("solar_resource", solar_resource, promotes=["*"]) prob.model.add_subsystem("pv_perf", perf_comp, promotes=["*"]) prob.model.add_subsystem("pv_cost", cost_comp, promotes=["*"]) prob.setup() @@ -189,24 +183,21 @@ def test_commercial_pv_cost( } } - plant_info = { - "plant_life": 30, - "simulation": { - "n_timesteps": 8760, - "dt": 3600, - }, - } - prob = om.Problem() + solar_resource = GOESAggregatedSolarAPI( + plant_config=plant_config, + resource_config=solar_resource_dict, + driver_config={}, + ) + perf_comp = PYSAMSolarPlantPerformanceModel( - plant_config={"site": solar_resource_dict, "plant": plant_info}, - tech_config=tech_config_dict, + plant_config=plant_config, tech_config=tech_config_dict, driver_config={} ) cost_comp = ATBResComPVCostModel( - plant_config=plant_config, - tech_config=tech_config_dict, + plant_config=plant_config, tech_config=tech_config_dict, driver_config={} ) + prob.model.add_subsystem("solar_resource", solar_resource, promotes=["*"]) prob.model.add_subsystem("pv_perf", perf_comp, promotes=["*"]) prob.model.add_subsystem("pv_cost", cost_comp, promotes=["*"]) prob.setup() @@ -244,24 +235,21 @@ def test_residential_pv_cost( } } - plant_info = { - "plant_life": 30, - "simulation": { - "n_timesteps": 8760, - "dt": 3600, - }, - } - prob = om.Problem() + solar_resource = GOESAggregatedSolarAPI( + plant_config=plant_config, + resource_config=solar_resource_dict, + driver_config={}, + ) perf_comp = PYSAMSolarPlantPerformanceModel( - plant_config={"site": solar_resource_dict, "plant": plant_info}, + plant_config=plant_config, tech_config=tech_config_dict, + driver_config={}, ) cost_comp = ATBResComPVCostModel( - plant_config=plant_config, - tech_config=tech_config_dict, + plant_config=plant_config, tech_config=tech_config_dict, driver_config={} ) - + prob.model.add_subsystem("solar_resource", solar_resource, promotes=["*"]) prob.model.add_subsystem("pv_perf", perf_comp, promotes=["*"]) prob.model.add_subsystem("pv_cost", cost_comp, promotes=["*"]) prob.setup() diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index 54f44303a..9012456d6 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -60,6 +60,12 @@ ) from h2integrate.converters.hydrogen.singlitico_cost_model import SingliticoCostModel from h2integrate.converters.co2.marine.direct_ocean_capture import DOCCostModel, DOCPerformanceModel +from h2integrate.resource.solar.nrel_developer_goes_api_models import ( + GOESTMYSolarAPI, + GOESConusSolarAPI, + GOESFullDiscSolarAPI, + GOESAggregatedSolarAPI, +) from h2integrate.converters.hydrogen.eco_tools_pem_electrolyzer import ( ECOElectrolyzerPerformanceModel, ) @@ -91,6 +97,10 @@ # Resources "river_resource": RiverResource, "wind_toolkit_v2_api": WTKNRELDeveloperAPIWindResource, + "goes_aggregated_solar_v4_api": GOESAggregatedSolarAPI, + "goes_conus_solar_v4_api": GOESConusSolarAPI, + "goes_fulldisc_solar_v4_api": GOESFullDiscSolarAPI, + "goes_tmy_solar_v4_api": GOESTMYSolarAPI, # Converters "wind_plant_performance": WindPlantPerformanceModel, "wind_plant_cost": WindPlantCostModel, diff --git a/h2integrate/resource/solar/__init__.py b/h2integrate/resource/solar/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/resource/solar/nrel_developer_goes_api_base.py b/h2integrate/resource/solar/nrel_developer_goes_api_base.py new file mode 100644 index 000000000..a92f7ca9a --- /dev/null +++ b/h2integrate/resource/solar/nrel_developer_goes_api_base.py @@ -0,0 +1,212 @@ +import urllib.parse + +import pandas as pd + +from h2integrate.resource.solar.solar_resource_base import SolarResourceBaseAPIModel +from h2integrate.resource.utilities.nrel_developer_api_keys import ( + get_nrel_developer_api_key, + get_nrel_developer_api_email, +) + + +class GOESNRELDeveloperAPISolarResourceBase(SolarResourceBaseAPIModel): + def setup(self): + super().setup() + + # set UTC variable depending on timezone, used for filenaming + self.utc = False + if float(self.config.timezone) == 0.0: + self.utc = True + + # check interval to use for data download/load based on simulation timestep + interval = self.dt / 60 + if any(float(v) == float(interval) for v in self.config.valid_intervals): + self.interval = int(interval) + else: + if interval > max(self.config.valid_intervals): + self.interval = int(max(self.config.valid_intervals)) + else: + self.interval = int(min(self.config.valid_intervals)) + + # get the data dictionary + data = self.get_data() + + # add resource data dictionary as an out + self.add_discrete_output( + "solar_resource_data", val=data, desc="Dict of solar resource data" + ) + + def helper_setup_method(self): + """ + Prepares and configures resource specifications for the GOES API based on plant + and site configuration options. + + This method extracts relevant configuration details from the `self.options` dictionary, + sets default values for latitude, longitude, resource directory, and timezone if they + are not already specified, and returns the updated resource specifications dictionary. + + Returns: + dict: The resource specifications dictionary with defaults set for latitude, + longitude, resource_dir, and timezone. + """ + self.site_config = self.options["plant_config"]["site"] + self.sim_config = self.options["plant_config"]["plant"]["simulation"] + self.n_timesteps = int(self.sim_config["n_timesteps"]) + self.dt = self.sim_config["dt"] + self.start_time = self.sim_config["start_time"] + + # create the input dictionary for GOESAPIConfig + resource_specs = self.options["resource_config"] + # set the default latitude, longitude, and resource_year from the site_config + resource_specs.setdefault("latitude", self.site_config["latitude"]) + resource_specs.setdefault("longitude", self.site_config["longitude"]) + # set the default resource_dir from a directory that can be + # specified in site_config['resources']['resource_dir'] + resource_specs.setdefault( + "resource_dir", self.site_config.get("resources", {}).get("resource_dir", None) + ) + + # default timezone to UTC because 'timezone' was removed from the plant config schema + resource_specs.setdefault("timezone", self.sim_config.get("timezone", 0)) + return resource_specs + + def create_filename(self): + """Create default filename to save downloaded data to. Filename is formatted as + "{latitude}_{longitude}_{resource_year}_{config.dataset_desc}_{interval}min_{tz_desc}_tz.csv" + where "tz_desc" is "utc" if the timezone is zero, or "local" otherwise. + + Returns: + str: filename for resource data to be saved to or loaded from. + """ + # TODO: update to handle multiple years + # TODO: update to handle nonstandard time intervals + if self.utc: + tz_desc = "utc" + else: + tz_desc = "local" + filename = ( + f"{self.config.latitude}_{self.config.longitude}_{self.config.resource_year}_" + f"{self.config.dataset_desc}_{self.interval}min_{tz_desc}_tz.csv" + ) + return filename + + def create_url(self): + """Create url for data download. + + Returns: + str: url to use for API call. + """ + input_data = { + "wkt": f"POINT({self.config.longitude} {self.config.latitude})", + "names": [str(self.config.resource_year)], # TODO: update to handle multiple years + "interval": str(self.interval), + "utc": str(self.utc).lower(), + "api_key": get_nrel_developer_api_key(), + "email": get_nrel_developer_api_email(), + } + url = self.base_url + urllib.parse.urlencode(input_data, True) + return url + + def load_data(self, fpath): + """Load data from a file and format as a dictionary that: + + 1) follows naming convention described in SolarResourceBaseAPIModel. + 2) is converted to standardized units described in SolarResourceBaseAPIModel. + + This method does the following steps: + + 1) load the data, separate out scalar data and timeseries data + 2) remove unused data + 3) Rename the data columns to standardized naming convention and create dictionary of + OpenMDAO compatible units for the data. Calls `format_timeseries_data()` method. + 4) Convert data to standardized units. Calls `compare_units_and_correct()` method + + Args: + fpath (str | Path): filepath to file containing the data + + Returns: + dict: dictionary of data in standardized units and naming convention. + """ + data = pd.read_csv(fpath, header=2) + header = pd.read_csv(fpath, nrows=2, header=None) + header_keys = header.iloc[0].to_list() + header_vals = header.iloc[1].to_list() + header_dict = dict(zip(header_keys, header_vals)) + + time_cols = ["Year", "Month", "Day", "Hour", "Minute"] + data_cols = [c for c in data.columns.to_list() if c not in time_cols] + colnames_to_units = { + c: header_dict[f"{c} Units"] for c in data_cols if f"{c} Units" in header_dict + } + # data_missing_units = [c for c in data_cols if f"{c} Units" not in header_dict] + + colname_mapper = {c: f"{c} ({v})" for c, v in colnames_to_units.items()} + + site_data = { + "id": int(header_dict["Location ID"]), + "site_tz": float(header_dict["Local Time Zone"]), + "data_tz": float(header_dict["Time Zone"]), + "site_lat": float(header_dict["Latitude"]), + "site_lon": float(header_dict["Longitude"]), + "elevation": float(header_dict["Elevation"]), + "filepath": str(fpath), + } + + data = data.dropna(axis=1, how="all") + data = data.rename(columns=colname_mapper) # add units to colnames + + # dont include data that doesn't have units + data_main_cols = time_cols + list(colname_mapper.values()) + # make units for data in openMDAO-compatible units + data, data_units = self.format_timeseries_data(data[data_main_cols]) + # convert units to standard units + data, data_units = self.compare_units_and_correct(data, data_units) + + data.update(site_data) + return data + + def format_timeseries_data(self, data): + """Convert data to a dictionary with keys that follow the standardized naming convention and + create a dictionary containing the units for the data. + + Args: + data (pd.DataFrame): Dataframe of timeseries data. + + Returns: + 2-element tuple containing + + - **data** (*dict*): data dictionary with keys following the standardized naming + convention. + - **data_units** (*dict*): dictionary with same keys as `data` and values as the + data units in OpenMDAO compatible format. + """ + time_cols = ["Year", "Month", "Day", "Hour", "Minute"] + data_cols_init = [c for c in data.columns.to_list() if c not in time_cols] + data_rename_mapper = {} + data_units = {} + for c in data_cols_init: + units = c.split("(")[-1].strip(")") + new_c = c.replace("air", "").replace("at ", "") + new_c = ( + new_c.replace(f"({units})", "").strip().replace(" ", "_").replace("__", "_").lower() + ) + + if units == "c": + units = units.upper() + if units == "w/m2": + units = "W/m**2" + if units == "nan" or units == "%": + units = "percent" + if units == "Degree" or units == "Degrees": + units = "deg" + + data_rename_mapper.update({c: new_c}) + data_units.update({new_c: units}) + data = data.rename(columns=data_rename_mapper) + data_dict = {c: data[c].astype(float).values for x, c in data_rename_mapper.items()} + data_time_dict = {c.lower(): data[c].astype(float).values for c in time_cols} + data_dict.update(data_time_dict) + return data_dict, data_units + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + pass diff --git a/h2integrate/resource/solar/nrel_developer_goes_api_models.py b/h2integrate/resource/solar/nrel_developer_goes_api_models.py new file mode 100644 index 000000000..ecb56f561 --- /dev/null +++ b/h2integrate/resource/solar/nrel_developer_goes_api_models.py @@ -0,0 +1,218 @@ +from pathlib import Path + +from attrs import field, define + +from h2integrate.core.validators import contains, range_val +from h2integrate.resource.resource_base import ResourceBaseAPIConfig +from h2integrate.resource.solar.nrel_developer_goes_api_base import ( + GOESNRELDeveloperAPISolarResourceBase, +) + + +@define +class GOESAggregatedAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download solar resource data from + `GOES Aggregated PSM v4 `_. + This dataset covers regions within North and South America at a spatial resolution of 4 km. + + Args: + resource_year (int): Year to use for resource data. + Must been between 1998 and 2024 (inclusive). + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "goes_aggregated_v2". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "solar". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` are 30 and 60 minutes. + + """ + + resource_year: int = field(converter=int, validator=range_val(1998, 2024)) + dataset_desc: str = "goes_aggregated_v4" + resource_type: str = "solar" + valid_intervals: list[int] = field(factory=lambda: [30, 60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + +class GOESAggregatedSolarAPI(GOESNRELDeveloperAPISolarResourceBase): + def setup(self): + resource_specs = self.helper_setup_method() + + self.base_url = "https://developer.nrel.gov/api/nsrdb/v2/solar/nsrdb-GOES-aggregated-v4-0-0-download.csv?" + # create the resource config + self.config = GOESAggregatedAPIConfig.from_dict(resource_specs) + super().setup() + + +@define +class GOESConusAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download solar resource data from + `GOES Conus PSM v4 `_. + This dataset covers regions within the continental United States at a spatial resolution of + 2 km. + + Args: + resource_year (int): Year to use for resource data. + Must been between 2018 and 2024 (inclusive). + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "goes_aggregated_v2". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "solar". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` are 5, 15, 30 and 60 minutes. + + """ + + resource_year: int = field(converter=int, validator=range_val(2018, 2024)) + dataset_desc: str = "goes_conus_v4" + resource_type: str = "solar" + valid_intervals: list[int] = field(factory=lambda: [5, 15, 30, 60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + +class GOESConusSolarAPI(GOESNRELDeveloperAPISolarResourceBase): + def setup(self): + resource_specs = self.helper_setup_method() + + self.base_url = ( + "https://developer.nrel.gov/api/nsrdb/v2/solar/nsrdb-GOES-conus-v4-0-0-download.csv?" + ) + # create the resource config + self.config = GOESConusAPIConfig.from_dict(resource_specs) + super().setup() + + +@define +class GOESFullDiscAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download solar resource data from + `GOES Full Disc PSM v4 `_. + This dataset covers regions within North and South America at a spatial resolution of 2 km. + + Args: + resource_year (int): Year to use for resource data. + Must been between 2018 and 2024 (inclusive). + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "goes_aggregated_v2". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "solar". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` are 10, 30 and 60 minutes. + + """ + + resource_year: int = field(converter=int, validator=range_val(2018, 2024)) + dataset_desc: str = "goes_fulldisc_v4" + resource_type: str = "solar" + valid_intervals: list[int] = field(factory=lambda: [10, 30, 60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + +class GOESFullDiscSolarAPI(GOESNRELDeveloperAPISolarResourceBase): + def setup(self): + resource_specs = self.helper_setup_method() + + self.base_url = "https://developer.nrel.gov/api/nsrdb/v2/solar/nsrdb-GOES-full-disc-v4-0-0-download.csv?" + # create the resource config + self.config = GOESFullDiscAPIConfig.from_dict(resource_specs) + super().setup() + + +@define +class GOESTMYAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download solar resource data from + `GOES Full Disc PSM v4 `_. + This dataset covers regions within North and South America at a spatial resolution of 4 km. + + Args: + resource_year (str): Year to use for resource data. Can be any of the following: + tmy-2022, tdy-2022, tgy-2022, tmy-2023, tdy-2023, tgy-2023, tmy-2024, tdy-2024, + or tgy-2024. + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "goes_aggregated_v2". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "solar". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` is minutes. + + """ + + resource_year: str = field( + converter=str.lower, + validator=contains( + [ + "tmy-2022", + "tdy-2022", + "tgy-2022", + "tmy-2023", + "tdy-2023", + "tgy-2023", + "tmy-2024", + "tdy-2024", + "tgy-2024", + ] + ), + ) + dataset_desc: str = "goes_tmy_v4" + resource_type: str = "solar" + valid_intervals: list[int] = field(factory=lambda: [60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + def __attrs_post_init__(self): + if "tmy" in self.resource_year: + self.dataset_desc = "goes_tmy_v4" + if "tdy" in self.resource_year: + self.dataset_desc = "goes_tdy_v4" + if "tgy" in self.resource_year: + self.dataset_desc = "goes_tgy_v4" + + +class GOESTMYSolarAPI(GOESNRELDeveloperAPISolarResourceBase): + def setup(self): + resource_specs = self.helper_setup_method() + + self.base_url = ( + "https://developer.nrel.gov/api/nsrdb/v2/solar/nsrdb-GOES-tmy-v4-0-0-download.csv?" + ) + # create the resource config + self.config = GOESTMYAPIConfig.from_dict(resource_specs) + super().setup() diff --git a/h2integrate/resource/solar/solar_resource_base.py b/h2integrate/resource/solar/solar_resource_base.py new file mode 100644 index 000000000..aef221a93 --- /dev/null +++ b/h2integrate/resource/solar/solar_resource_base.py @@ -0,0 +1,59 @@ +from openmdao.utils import units + +from h2integrate.resource.resource_base import ResourceBaseAPIModel + + +class SolarResourceBaseAPIModel(ResourceBaseAPIModel): + def setup(self): + super().setup() + + self.output_vars_to_units = { + "wind_direction": "deg", + "wind_speed": "m/s", + "temperature": "C", + "pressure": "mbar", + "relative_humidity": "percent", + "ghi": "W/m**2", + "dni": "W/m**2", + "dhi": "W/m**2", + "clearsky_ghi": "W/m**2", + "clearsky_dni": "W/m**2", + "clearsky_dhi": "W/m**2", + "dew_point": "C", + "surface_albedo": "percent", + "solar_zenith_angle": "deg", + "snow_depth": "cm", + "precipitable_water": "cm", + } + + def compare_units_and_correct(self, data, data_units): + """Convert data to standard units defined in ``output_vars_to_units``. + + Note: + The keys for `data` and `data_units` are expected to have the same keys + as the attribute ``output_vars_to_units``. + + Note: + the values for `data_units` must be formatted to be compatible with OpenMDAO units. + + Args: + data (dict): dictionary of data, keys are data names and values may be + a scalar or array of numerical values in units of ``data_units[data_key]``. + data_units (dict): dictionary of units corresponding to the data. + Has the same keys as `data` with values as a str of OpenMDAO compatible units. + + + Returns: + 2-element tuple containing + + - **data** (*dict*): data converted to standard units found in the attribute + ``output_vars_to_units``. + - **data_units** (*dict*): updated units of data in ``data``. + """ + for data_col, orig_units in data_units.items(): + if data_col in self.output_vars_to_units: + desired_units = self.output_vars_to_units[data_col] + if desired_units != orig_units: + data[data_col] = units.convert_units(data[data_col], orig_units, desired_units) + data_units[data_col] = desired_units + return data, data_units diff --git a/h2integrate/resource/solar/test/__init__.py b/h2integrate/resource/solar/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/resource/solar/test/test_nrel_goes_api.py b/h2integrate/resource/solar/test/test_nrel_goes_api.py new file mode 100644 index 000000000..60d342bc7 --- /dev/null +++ b/h2integrate/resource/solar/test/test_nrel_goes_api.py @@ -0,0 +1,214 @@ +from pathlib import Path + +import openmdao.api as om +from pytest import fixture + +from h2integrate import RESOURCE_DEFAULT_DIR +from h2integrate.resource.solar.nrel_developer_goes_api_models import ( + GOESTMYSolarAPI, + GOESConusSolarAPI, + GOESFullDiscSolarAPI, + GOESAggregatedSolarAPI, +) + + +@fixture +def plant_simulation_utc_start(): + plant = { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + "start_time": "01/01/1900 00:30:00", + "timezone": 0, + }, + } + return plant + + +@fixture +def site_config(): + site = { + "latitude": 34.22, + "longitude": -102.75, + "resources": { + "solar_resource": { + "resource_model": "goes_aggregated_solar_v4_api", + "resource_parameters": { + "latitude": 34.22, + "longitude": -102.75, + "resource_year": 2012, + }, + } + }, + } + return site + + +def test_goes_aggregated_loaded_from_default_dir(plant_simulation_utc_start, site_config, subtests): + plant_config = { + "site": site_config, + "plant": plant_simulation_utc_start, + } + + prob = om.Problem() + comp = GOESAggregatedSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + goes_data = prob.get_val("resource.solar_resource_data") + + solar_dir = RESOURCE_DEFAULT_DIR / "solar" + with subtests.test("filepath for data was found where expected"): + assert Path(goes_data["filepath"]).exists() + assert Path(goes_data["filepath"]).parent == solar_dir + + data_keys = [ + "ghi", + "dhi", + "dni", + "temperature", + "pressure", + "dew_point", + "wind_speed", + "wind_direction", + ] + with subtests.test("resource data is 8760 in length"): + assert all(len(goes_data[k]) == 8760 for k in data_keys) + + +def test_goes_conus_loaded_from_default_dir(plant_simulation_utc_start, site_config, subtests): + plant_config = { + "site": site_config, + "plant": plant_simulation_utc_start, + } + + filename = "34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv" + plant_config["site"]["resources"]["solar_resource"]["resource_parameters"].update( + {"resource_filename": filename} + ) + plant_config["site"]["resources"]["solar_resource"]["resource_parameters"]["resource_year"] = ( + 2020 + ) + + prob = om.Problem() + comp = GOESConusSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + goes_data = prob.get_val("resource.solar_resource_data") + + solar_dir = RESOURCE_DEFAULT_DIR / "solar" + with subtests.test("filepath for data was found where expected"): + assert Path(goes_data["filepath"]).exists() + assert Path(goes_data["filepath"]).parent == solar_dir + + data_keys = [ + "ghi", + "dhi", + "dni", + "temperature", + "pressure", + "dew_point", + "wind_speed", + "wind_direction", + ] + with subtests.test("resource data is 8760 in length"): + assert all(len(goes_data[k]) == 8760 for k in data_keys) + + +def test_goes_fulldisc_loaded_from_default_dir(plant_simulation_utc_start, site_config, subtests): + plant_config = { + "site": site_config, + "plant": plant_simulation_utc_start, + } + + filename = "34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv" + plant_config["site"]["resources"]["solar_resource"]["resource_parameters"].update( + {"resource_filename": filename} + ) + plant_config["site"]["resources"]["solar_resource"]["resource_parameters"]["resource_year"] = ( + 2020 + ) + + prob = om.Problem() + comp = GOESFullDiscSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + goes_data = prob.get_val("resource.solar_resource_data") + + solar_dir = RESOURCE_DEFAULT_DIR / "solar" + with subtests.test("filepath for data was found where expected"): + assert Path(goes_data["filepath"]).exists() + assert Path(goes_data["filepath"]).parent == solar_dir + + data_keys = [ + "ghi", + "dhi", + "dni", + "temperature", + "pressure", + "dew_point", + "wind_speed", + "wind_direction", + ] + with subtests.test("resource data is 8760 in length"): + assert all(len(goes_data[k]) == 8760 for k in data_keys) + + +def test_goes_tmy_loaded_from_default_dir(plant_simulation_utc_start, site_config, subtests): + plant_config = { + "site": site_config, + "plant": plant_simulation_utc_start, + } + + filename = "34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv" + plant_config["site"]["resources"]["solar_resource"]["resource_parameters"].update( + {"resource_filename": filename} + ) + + plant_config["site"]["resources"]["solar_resource"]["resource_parameters"]["resource_year"] = ( + "tmy-2022" + ) + + prob = om.Problem() + comp = GOESTMYSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + goes_data = prob.get_val("resource.solar_resource_data") + + solar_dir = RESOURCE_DEFAULT_DIR / "solar" + with subtests.test("filepath for data was found where expected"): + assert Path(goes_data["filepath"]).exists() + assert Path(goes_data["filepath"]).parent == solar_dir + + data_keys = [ + "ghi", + "dhi", + "dni", + "temperature", + "pressure", + "dew_point", + "wind_speed", + "wind_direction", + ] + with subtests.test("resource data is 8760 in length"): + assert all(len(goes_data[k]) == 8760 for k in data_keys) diff --git a/resource_files/solar/34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv b/resource_files/solar/34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv new file mode 100644 index 000000000..006ce2237 --- /dev/null +++ b/resource_files/solar/34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv @@ -0,0 +1,8763 @@ +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 Units,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 +NSRDB,542970,-,-,-,34.21,-102.74,0,1166,-6,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,4.0.1 +Year,Month,Day,Hour,Minute,Temperature,Alpha,Aerosol Optical Depth,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Fill Flag,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Ozone,Relative Humidity,Solar Zenith Angle,SSA,Surface Albedo,Pressure,Precipitable Water,Wind Direction,Wind Speed,Global Horizontal UV Irradiance (280-400nm),Global Horizontal UV Irradiance (295-385nm) +2012,1,1,0,30,9.600000000000001,1.07,0.019,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.294,31.93,98.08,0.87,0.23,888,0.4,344,3.8000000000000003,0.0000,0.0000 +2012,1,1,1,30,7.9,1.09,0.018000000000000002,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.294,34.4,109.82000000000001,0.87,0.23,890,0.30000000000000004,189,5,0.0000,0.0000 +2012,1,1,2,30,5.800000000000001,1.08,0.016,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.294,32.05,121.97,0.87,0.23,892,0.30000000000000004,23,6.300000000000001,0.0000,0.0000 +2012,1,1,3,30,3.7,1.09,0.016,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.293,30.89,134.33,0.87,0.23,893,0.30000000000000004,26,6.2,0.0000,0.0000 +2012,1,1,4,30,2.1,1.16,0.015,0.62,0,0,0,0,0,-10,0,0,0,0,0.292,40.52,146.67000000000002,0.88,0.23,894,0.30000000000000004,28,5.6000000000000005,0.0000,0.0000 +2012,1,1,5,30,0.9,1.25,0.014,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.291,52.86,158.49,0.88,0.23,895,0.30000000000000004,30,4.6000000000000005,0.0000,0.0000 +2012,1,1,6,30,-0.30000000000000004,1.29,0.014,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.29,62.1,167.64000000000001,0.88,0.23,895,0.30000000000000004,31,3.6,0.0000,0.0000 +2012,1,1,7,30,-1.4000000000000001,1.31,0.013000000000000001,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.289,68.22,166.36,0.87,0.23,896,0.30000000000000004,29,2.7,0.0000,0.0000 +2012,1,1,8,30,-2.4000000000000004,1.31,0.013000000000000001,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.29,72.14,156.28,0.87,0.23,896,0.30000000000000004,24,2.1,0.0000,0.0000 +2012,1,1,9,30,-3.2,1.31,0.013000000000000001,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.29,74.19,144.28,0.87,0.23,897,0.30000000000000004,15,1.7000000000000002,0.0000,0.0000 +2012,1,1,10,30,-3.8000000000000003,1.29,0.014,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.291,75.09,131.91,0.88,0.23,897,0.30000000000000004,183,1.6,0.0000,0.0000 +2012,1,1,11,30,-4.2,1.28,0.015,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.292,75.13,119.57000000000001,0.88,0.23,898,0.30000000000000004,352,1.6,0.0000,0.0000 +2012,1,1,12,30,-4.5,1.27,0.016,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.293,74.42,107.48,0.88,0.23,899,0.30000000000000004,345,1.6,0.0000,0.0000 +2012,1,1,13,30,-3.7,1.26,0.017,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.293,67.66,95.84,0.88,0.23,900,0.30000000000000004,342,1.8,0.0000,0.0000 +2012,1,1,14,30,-1.2000000000000002,1.27,0.017,0.62,24,554,74,0,0,-9.1,24,554,0,74,0.293,55.14,84.76,0.88,0.23,901,0.4,340,2.3000000000000003,0.0000,0.0000 +2012,1,1,15,30,2.2,1.27,0.017,0.62,42,833,258,0,1,-9.3,42,833,0,258,0.292,42.39,74.97,0.88,0.23,901,0.4,189,2.1,12.6195,9.6986 +2012,1,1,16,30,5,1.28,0.017,0.62,51,941,424,0,1,-11.700000000000001,51,941,0,424,0.291,28.67,66.68,0.88,0.23,902,0.4,55,1.5,22.3257,17.3518 +2012,1,1,17,30,6.6000000000000005,1.29,0.017,0.62,56,981,538,0,1,-12.9,56,981,0,538,0.289,23.34,60.6,0.88,0.23,901,0.5,68,1,29.5549,23.0754 +2012,1,1,18,30,7.7,1.31,0.018000000000000002,0.62,59,1001,597,0,0,-12.8,59,1001,0,597,0.28800000000000003,21.91,57.480000000000004,0.88,0.23,900,0.5,165,0.7000000000000001,33.3750,26.1007 +2012,1,1,19,30,8.5,1.34,0.019,0.62,60,990,587,0,0,-12.600000000000001,60,990,0,587,0.28700000000000003,21.080000000000002,57.81,0.89,0.23,899,0.6000000000000001,256,0.8,32.7592,25.6151 +2012,1,1,20,30,8.9,1.35,0.021,0.62,59,962,517,0,0,-12.5,59,962,0,517,0.28700000000000003,20.69,61.52,0.89,0.23,899,0.6000000000000001,246,1,28.2405,22.0369 +2012,1,1,21,30,8.6,1.3900000000000001,0.017,0.62,50,909,389,0,0,-12.4,50,909,0,389,0.28700000000000003,21.240000000000002,68.07000000000001,0.89,0.23,899,0.6000000000000001,225,0.8,20.2512,15.7174 +2012,1,1,22,30,7.1000000000000005,1.3800000000000001,0.017,0.62,39,782,220,0,0,-11.600000000000001,39,782,0,220,0.28800000000000003,24.97,76.69,0.89,0.23,899,0.6000000000000001,175,0.7000000000000001,10.6126,8.1305 +2012,1,1,23,30,4.9,1.37,0.017,0.62,18,435,44,0,0,-8.9,18,435,0,44,0.289,35.99,86.66,0.89,0.23,899,0.6000000000000001,137,0.9,0.0000,0.0000 +2012,1,2,0,30,3,1.36,0.016,0.62,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.291,37.15,97.95,0.88,0.23,899,0.5,131,1.2000000000000002,0.0000,0.0000 +2012,1,2,1,30,1.5,1.35,0.016,0.62,0,0,0,0,0,-10,0,0,0,0,0.292,42.01,109.69,0.88,0.23,900,0.5,128,1.3,0.0000,0.0000 +2012,1,2,2,30,0.30000000000000004,1.33,0.017,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.294,44.96,121.83,0.88,0.23,900,0.5,127,1.4000000000000001,0.0000,0.0000 +2012,1,2,3,30,-0.5,1.32,0.017,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.295,46.81,134.2,0.88,0.23,900,0.5,129,1.4000000000000001,0.0000,0.0000 +2012,1,2,4,30,-1,1.31,0.018000000000000002,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.295,47.81,146.54,0.88,0.23,901,0.6000000000000001,133,1.3,0.0000,0.0000 +2012,1,2,5,30,-1.1,1.28,0.018000000000000002,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.296,47.37,158.36,0.88,0.23,901,0.6000000000000001,135,1.3,0.0000,0.0000 +2012,1,2,6,30,-1,1.25,0.019,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.296,46.11,167.53,0.88,0.23,901,0.6000000000000001,141,1.2000000000000002,0.0000,0.0000 +2012,1,2,7,30,-1,1.22,0.02,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.297,45.31,166.35,0.88,0.23,901,0.6000000000000001,155,1,0.0000,0.0000 +2012,1,2,8,30,-0.9,1.19,0.02,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.298,44.47,156.33,0.88,0.23,902,0.6000000000000001,172,0.8,0.0000,0.0000 +2012,1,2,9,30,-0.8,1.18,0.02,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.299,44.07,144.34,0.88,0.23,902,0.6000000000000001,117,0.5,0.0000,0.0000 +2012,1,2,10,30,-1,1.17,0.02,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.299,45.09,131.97,0.88,0.23,902,0.6000000000000001,47,0.5,0.0000,0.0000 +2012,1,2,11,30,-1.7000000000000002,1.18,0.02,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.3,47.9,119.63,0.88,0.23,902,0.6000000000000001,41,0.8,0.0000,0.0000 +2012,1,2,12,30,-2.4000000000000004,1.19,0.019,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.3,50.89,107.53,0.89,0.23,903,0.6000000000000001,48,0.9,0.0000,0.0000 +2012,1,2,13,30,-2.3000000000000003,1.2,0.019,0.62,0,0,0,0,0,-11,0,0,0,0,0.3,51.19,95.88,0.89,0.23,903,0.6000000000000001,55,1,0.0000,0.0000 +2012,1,2,14,30,-0.6000000000000001,1.21,0.019,0.62,24,523,72,0,0,-9.8,24,523,0,72,0.3,49.72,84.79,0.89,0.23,904,0.6000000000000001,67,1.2000000000000002,0.0000,0.0000 +2012,1,2,15,30,2.5,1.22,0.019,0.62,43,807,252,0,1,-10,43,807,0,252,0.3,39.12,74.98,0.89,0.23,904,0.6000000000000001,107,1.8,12.3250,9.4721 +2012,1,2,16,30,5.300000000000001,1.22,0.019,0.62,53,918,417,0,1,-9.700000000000001,53,918,0,417,0.3,32.97,66.66,0.89,0.23,904,0.6000000000000001,159,2.3000000000000003,21.9606,17.0684 +2012,1,2,17,30,7.2,1.23,0.019,0.62,58,970,535,0,0,-9.8,58,970,0,535,0.299,28.61,60.56,0.89,0.23,903,0.6000000000000001,189,2.8000000000000003,29.3971,22.9528 +2012,1,2,18,30,8.6,1.25,0.022,0.62,63,987,594,0,0,-10,63,987,0,594,0.298,25.64,57.410000000000004,0.89,0.23,902,0.6000000000000001,209,3.1,33.2194,25.9798 +2012,1,2,19,30,9.5,1.26,0.021,0.62,62,986,589,0,0,-10.200000000000001,62,986,0,589,0.297,23.900000000000002,57.71,0.89,0.23,901,0.6000000000000001,220,3.3000000000000003,32.8882,25.7172 +2012,1,2,20,30,9.9,1.27,0.021,0.62,59,962,519,0,0,-10.200000000000001,59,962,0,519,0.296,23.19,61.4,0.89,0.23,900,0.6000000000000001,225,3.3000000000000003,28.3712,22.1405 +2012,1,2,21,30,9.5,1.27,0.022,0.62,53,901,392,0,0,-10.100000000000001,53,901,0,392,0.296,23.93,67.93,0.89,0.23,900,0.6000000000000001,225,2.8000000000000003,20.4313,15.8596 +2012,1,2,22,30,6.7,1.27,0.022,0.62,42,773,222,0,0,-9,42,773,0,222,0.295,31.68,76.55,0.89,0.23,899,0.6000000000000001,217,1.8,10.7200,8.2149 +2012,1,2,23,30,3.3000000000000003,1.27,0.022,0.62,19,423,45,0,0,-6.9,19,423,0,45,0.294,47.2,86.52,0.89,0.23,899,0.6000000000000001,209,1.5,0.0000,0.0000 +2012,1,3,0,30,1.9000000000000001,1.27,0.021,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.294,46.96,97.81,0.88,0.23,899,0.6000000000000001,207,1.7000000000000002,0.0000,0.0000 +2012,1,3,1,30,1.4000000000000001,1.27,0.021,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.293,47.14,109.55,0.88,0.23,899,0.5,210,1.9000000000000001,0.0000,0.0000 +2012,1,3,2,30,1,1.28,0.02,0.62,0,0,0,0,0,-9,0,0,0,0,0.293,47.18,121.7,0.88,0.23,898,0.5,215,2.2,0.0000,0.0000 +2012,1,3,3,30,0.7000000000000001,1.28,0.019,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.294,47.14,134.06,0.88,0.23,898,0.5,220,2.5,0.0000,0.0000 +2012,1,3,4,30,0.30000000000000004,1.28,0.019,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.295,47.58,146.4,0.88,0.23,897,0.5,224,2.7,0.0000,0.0000 +2012,1,3,5,30,-0.1,1.28,0.018000000000000002,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.296,48.370000000000005,158.22,0.87,0.23,897,0.5,226,3,0.0000,0.0000 +2012,1,3,6,30,-0.5,1.29,0.017,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.296,49.45,167.4,0.87,0.23,897,0.5,229,3.2,0.0000,0.0000 +2012,1,3,7,30,-0.9,1.29,0.017,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.297,50.730000000000004,166.33,0.87,0.23,896,0.5,232,3.4000000000000004,0.0000,0.0000 +2012,1,3,8,30,-1.4000000000000001,1.29,0.017,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.297,52.72,156.36,0.87,0.23,896,0.4,235,3.5,0.0000,0.0000 +2012,1,3,9,30,-1.7000000000000002,1.3,0.017,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.296,54.27,144.39000000000001,0.87,0.23,895,0.4,237,3.6,0.0000,0.0000 +2012,1,3,10,30,-2,1.3,0.017,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.296,56.03,132.03,0.87,0.23,894,0.4,238,3.7,0.0000,0.0000 +2012,1,3,11,30,-2.1,1.31,0.017,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.295,56.94,119.68,0.86,0.23,894,0.4,240,3.8000000000000003,0.0000,0.0000 +2012,1,3,12,30,-2,1.3,0.017,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.295,56.76,107.58,0.86,0.23,893,0.4,242,3.8000000000000003,0.0000,0.0000 +2012,1,3,13,30,-1.4000000000000001,1.29,0.017,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.294,54.39,95.92,0.86,0.23,893,0.4,245,4.1000000000000005,0.0000,0.0000 +2012,1,3,14,30,0.7000000000000001,1.28,0.017,0.62,24,553,74,0,0,-9.3,24,553,0,74,0.294,46.97,84.81,0.86,0.23,892,0.4,246,4.5,0.0000,0.0000 +2012,1,3,15,30,4.1000000000000005,1.27,0.018000000000000002,0.62,42,832,258,0,1,-9,42,832,0,258,0.294,37.82,74.99,0.86,0.23,892,0.4,244,4.5,12.6173,9.6966 +2012,1,3,16,30,8.4,1.27,0.019,0.62,52,939,425,0,1,-8.3,52,939,0,425,0.293,29.75,66.64,0.86,0.23,891,0.4,246,4.7,22.3855,17.3989 +2012,1,3,17,30,12.5,1.28,0.019,0.62,57,990,545,0,1,-7.7,57,990,0,545,0.293,23.7,60.51,0.86,0.23,890,0.4,252,5.300000000000001,29.9556,23.3896 +2012,1,3,18,30,15.5,1.29,0.022,0.62,62,1007,606,0,0,-7.300000000000001,62,1007,0,606,0.292,20.1,57.33,0.87,0.23,888,0.4,257,5.800000000000001,33.9045,26.5166 +2012,1,3,19,30,17.5,1.29,0.024,0.62,64,993,596,0,0,-7.4,64,993,0,596,0.292,17.61,57.6,0.88,0.23,887,0.5,259,5.9,33.2983,26.0392 +2012,1,3,20,30,18.2,1.28,0.026000000000000002,0.62,62,966,526,0,0,-7.4,62,966,0,526,0.292,16.79,61.28,0.87,0.23,887,0.5,258,5.6000000000000005,28.7754,22.4577 +2012,1,3,21,30,17.2,1.2,0.016,0.62,49,923,398,0,0,-7.1000000000000005,49,923,0,398,0.293,18.31,67.8,0.86,0.23,886,0.5,254,4.4,20.7665,16.1220 +2012,1,3,22,30,13.3,1.19,0.019,0.62,41,793,227,0,1,-4.800000000000001,41,793,0,227,0.294,28.060000000000002,76.41,0.87,0.23,886,0.5,247,2.9000000000000004,10.9728,8.4109 +2012,1,3,23,30,9.600000000000001,1.18,0.021,0.62,20,443,48,0,0,-4.2,20,443,0,48,0.296,37.45,86.39,0.87,0.23,886,0.5,244,2.6,0.0000,0.0000 +2012,1,4,0,30,8.3,1.17,0.022,0.62,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.297,38.230000000000004,97.67,0.87,0.23,886,0.5,249,3,0.0000,0.0000 +2012,1,4,1,30,7.5,1.19,0.022,0.62,0,0,0,0,4,-5.5,0,0,0,0,0.297,39.2,109.41,0.86,0.23,887,0.5,259,3.3000000000000003,0.0000,0.0000 +2012,1,4,2,30,6.4,1.21,0.021,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.298,41.800000000000004,121.56,0.86,0.23,887,0.5,272,3.2,0.0000,0.0000 +2012,1,4,3,30,5.6000000000000005,1.21,0.024,0.62,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.3,44.53,133.92000000000002,0.87,0.23,887,0.6000000000000001,289,3.2,0.0000,0.0000 +2012,1,4,4,30,5.300000000000001,1.19,0.029,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.303,46.4,146.26,0.89,0.23,887,0.6000000000000001,310,3.4000000000000004,0.0000,0.0000 +2012,1,4,5,30,5.6000000000000005,1.16,0.034,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.306,46.660000000000004,158.07,0.9,0.23,888,0.7000000000000001,331,3.7,0.0000,0.0000 +2012,1,4,6,30,5.800000000000001,1.1300000000000001,0.037,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.307,47.28,167.27,0.91,0.23,888,0.7000000000000001,347,3.9000000000000004,0.0000,0.0000 +2012,1,4,7,30,5.800000000000001,1.12,0.039,0.62,0,0,0,0,6,-4.2,0,0,0,0,0.308,48.5,166.3,0.91,0.23,889,0.7000000000000001,356,4,0.0000,0.0000 +2012,1,4,8,30,5.4,1.1300000000000001,0.038,0.62,0,0,0,0,7,-4,0,0,0,0,0.309,50.74,156.4,0.91,0.23,890,0.7000000000000001,181,4.1000000000000005,0.0000,0.0000 +2012,1,4,9,30,4.6000000000000005,1.16,0.034,0.62,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.31,54.2,144.44,0.91,0.23,891,0.7000000000000001,4,4.4,0.0000,0.0000 +2012,1,4,10,30,3.7,1.2,0.029,0.62,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.31,57.61,132.08,0.9,0.23,892,0.7000000000000001,6,4.7,0.0000,0.0000 +2012,1,4,11,30,3,1.23,0.026000000000000002,0.62,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.311,59.550000000000004,119.73,0.9,0.23,893,0.7000000000000001,8,4.7,0.0000,0.0000 +2012,1,4,12,30,2.7,1.25,0.026000000000000002,0.62,0,0,0,0,4,-4.4,0,0,0,0,0.31,59.67,107.62,0.91,0.23,894,0.7000000000000001,9,4.5,0.0000,0.0000 +2012,1,4,13,30,2.9000000000000004,1.24,0.029,0.62,0,0,0,0,1,-4.4,0,0,0,0,0.309,58.480000000000004,95.95,0.92,0.23,895,0.8,9,4.5,0.0000,0.0000 +2012,1,4,14,30,4.2,1.22,0.032,0.62,26,469,68,7,7,-4.3,38,5,7,38,0.308,54.03,84.83,0.92,0.23,896,0.8,8,4.800000000000001,0.0000,0.0000 +2012,1,4,15,30,6.5,1.2,0.032,0.62,49,773,249,0,7,-4,107,460,0,226,0.308,47.14,74.98,0.92,0.23,897,0.7000000000000001,14,5.2,11.0533,8.4948 +2012,1,4,16,30,9.200000000000001,1.2,0.03,0.62,59,894,414,0,1,-4.2,59,894,0,414,0.31,38.61,66.61,0.91,0.23,897,0.7000000000000001,24,5.2,21.8113,16.9531 +2012,1,4,17,30,11.700000000000001,1.19,0.027,0.62,64,959,537,0,1,-4.7,64,959,0,537,0.312,31.43,60.45,0.9,0.23,897,0.6000000000000001,29,4.7,29.5265,23.0553 +2012,1,4,18,30,13.5,1.23,0.028,0.62,67,980,597,0,0,-5.9,67,980,0,597,0.314,25.57,57.24,0.9,0.23,896,0.6000000000000001,27,4.1000000000000005,33.4165,26.1360 +2012,1,4,19,30,14.3,1.23,0.026000000000000002,0.62,65,989,597,0,0,-6.4,65,989,0,597,0.315,23.400000000000002,57.480000000000004,0.89,0.23,895,0.5,18,3.5,33.3750,26.1007 +2012,1,4,20,30,14.4,1.23,0.024,0.62,61,967,528,0,0,-6.300000000000001,61,967,0,528,0.315,23.3,61.14,0.89,0.23,895,0.5,7,3,28.9099,22.5646 +2012,1,4,21,30,13.700000000000001,1.24,0.023,0.62,54,920,404,0,0,-6.2,54,920,0,404,0.314,24.54,67.65,0.89,0.23,895,0.4,180,2.1,21.1058,16.3880 +2012,1,4,22,30,11.4,1.25,0.021,0.62,42,800,232,0,0,-3.4000000000000004,42,800,0,232,0.313,35.25,76.27,0.89,0.23,894,0.4,356,1.3,11.2264,8.6075 +2012,1,4,23,30,9.3,1.25,0.02,0.62,20,466,51,0,0,-3.8000000000000003,20,466,0,51,0.312,39.56,86.25,0.89,0.23,894,0.4,351,1,0.0000,0.0000 +2012,1,5,0,30,8.3,1.26,0.019,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.31,37.01,97.52,0.89,0.23,894,0.4,341,1,0.0000,0.0000 +2012,1,5,1,30,7.300000000000001,1.27,0.018000000000000002,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.308,38.910000000000004,109.27,0.89,0.23,895,0.30000000000000004,317,1,0.0000,0.0000 +2012,1,5,2,30,6.1000000000000005,1.29,0.018000000000000002,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.306,41.410000000000004,121.42,0.89,0.23,894,0.30000000000000004,287,1.1,0.0000,0.0000 +2012,1,5,3,30,4.7,1.29,0.018000000000000002,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.305,44.730000000000004,133.78,0.89,0.23,894,0.30000000000000004,266,1.3,0.0000,0.0000 +2012,1,5,4,30,3.3000000000000003,1.3,0.017,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.304,48.53,146.12,0.88,0.23,894,0.30000000000000004,261,1.5,0.0000,0.0000 +2012,1,5,5,30,2.1,1.31,0.017,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.303,52.31,157.93,0.88,0.23,894,0.30000000000000004,262,1.7000000000000002,0.0000,0.0000 +2012,1,5,6,30,1.2000000000000002,1.32,0.017,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.303,55.300000000000004,167.13,0.88,0.23,894,0.30000000000000004,264,1.8,0.0000,0.0000 +2012,1,5,7,30,0.4,1.34,0.017,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.302,57.97,166.26,0.88,0.23,893,0.30000000000000004,268,1.9000000000000001,0.0000,0.0000 +2012,1,5,8,30,-0.2,1.35,0.016,0.62,0,0,0,0,0,-7,0,0,0,0,0.301,60.04,156.42000000000002,0.87,0.23,893,0.30000000000000004,272,2,0.0000,0.0000 +2012,1,5,9,30,-0.7000000000000001,1.35,0.016,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.3,61.93,144.49,0.87,0.23,893,0.30000000000000004,276,2,0.0000,0.0000 +2012,1,5,10,30,-1.2000000000000002,1.35,0.016,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.299,64.02,132.12,0.87,0.23,892,0.30000000000000004,280,2.1,0.0000,0.0000 +2012,1,5,11,30,-1.6,1.34,0.016,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.297,65.69,119.77,0.87,0.23,892,0.30000000000000004,282,2.1,0.0000,0.0000 +2012,1,5,12,30,-2,1.34,0.015,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.296,67.09,107.66,0.87,0.23,892,0.30000000000000004,281,2.1,0.0000,0.0000 +2012,1,5,13,30,-1.2000000000000002,1.34,0.015,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.294,62.28,95.97,0.86,0.23,891,0.30000000000000004,278,2.3000000000000003,0.0000,0.0000 +2012,1,5,14,30,1.9000000000000001,1.34,0.015,0.62,23,574,75,0,1,-7.5,23,574,0,75,0.293,49.83,84.84,0.86,0.23,891,0.30000000000000004,272,3.2,0.0000,0.0000 +2012,1,5,15,30,5.6000000000000005,1.34,0.014,0.62,40,855,261,0,4,-7.300000000000001,159,59,0,174,0.292,38.97,74.97,0.86,0.23,891,0.30000000000000004,262,3.7,8.5108,6.5409 +2012,1,5,16,30,9.3,1.34,0.014,0.62,48,961,430,0,3,-6.800000000000001,223,284,0,336,0.291,31.43,66.58,0.86,0.23,891,0.30000000000000004,249,3.7,17.7061,13.7627 +2012,1,5,17,30,13.200000000000001,1.34,0.014,0.62,53,1011,552,0,1,-6.5,53,1011,0,552,0.29,24.94,60.39,0.86,0.23,890,0.30000000000000004,240,4.5,30.3622,23.7087 +2012,1,5,18,30,15.700000000000001,1.37,0.017,0.62,58,1027,615,0,0,-7.9,58,1027,0,615,0.289,18.91,57.14,0.86,0.23,889,0.30000000000000004,238,5.2,34.4417,26.9391 +2012,1,5,19,30,16.8,1.3800000000000001,0.017,0.62,58,1026,611,0,0,-8.9,58,1026,0,611,0.28800000000000003,16.39,57.36,0.87,0.23,887,0.30000000000000004,238,5.300000000000001,34.1790,26.7309 +2012,1,5,20,30,16.8,1.3800000000000001,0.018000000000000002,0.62,56,1001,542,0,0,-9.200000000000001,56,1001,0,542,0.28700000000000003,15.98,61,0.87,0.23,887,0.30000000000000004,238,5.1000000000000005,29.7021,23.1849 +2012,1,5,21,30,15.700000000000001,1.3800000000000001,0.019,0.62,52,945,413,0,0,-9.3,52,945,0,413,0.28700000000000003,17.080000000000002,67.51,0.87,0.23,886,0.30000000000000004,235,4.1000000000000005,21.6010,16.7748 +2012,1,5,22,30,11.8,1.3800000000000001,0.019,0.62,41,825,239,0,0,-7.4,41,825,0,239,0.28700000000000003,25.35,76.12,0.87,0.23,886,0.30000000000000004,229,2.7,11.5786,8.8800 +2012,1,5,23,30,7.7,1.3900000000000001,0.019,0.62,20,497,54,0,0,-5.800000000000001,20,497,0,54,0.28800000000000003,37.75,86.11,0.87,0.23,885,0.30000000000000004,223,2.2,0.0000,0.0000 +2012,1,6,0,30,6.2,1.4000000000000001,0.02,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.289,38.99,97.38,0.87,0.23,885,0.30000000000000004,219,2.5,0.0000,0.0000 +2012,1,6,1,30,5.7,1.41,0.021,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.289,39.300000000000004,109.12,0.87,0.23,885,0.4,217,2.9000000000000004,0.0000,0.0000 +2012,1,6,2,30,5.2,1.41,0.022,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.29,40.230000000000004,121.28,0.87,0.23,884,0.4,219,3.2,0.0000,0.0000 +2012,1,6,3,30,4.4,1.4000000000000001,0.023,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.29,42.64,133.64000000000001,0.87,0.23,884,0.4,224,3.3000000000000003,0.0000,0.0000 +2012,1,6,4,30,3.6,1.3800000000000001,0.024,0.62,0,0,0,0,1,-7.2,0,0,0,0,0.29,44.99,145.98,0.87,0.23,883,0.4,231,3.2,0.0000,0.0000 +2012,1,6,5,30,3,1.36,0.024,0.62,0,0,0,0,1,-7.4,0,0,0,0,0.29,46.24,157.78,0.87,0.23,883,0.4,239,3.2,0.0000,0.0000 +2012,1,6,6,30,2.6,1.33,0.024,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.29,46.19,166.98,0.87,0.23,882,0.4,248,3.3000000000000003,0.0000,0.0000 +2012,1,6,7,30,2.3000000000000003,1.29,0.024,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.289,45.5,166.22,0.87,0.23,882,0.4,254,3.5,0.0000,0.0000 +2012,1,6,8,30,2,1.26,0.024,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.289,44.980000000000004,156.44,0.87,0.23,881,0.4,256,3.7,0.0000,0.0000 +2012,1,6,9,30,1.7000000000000002,1.23,0.024,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.28800000000000003,45.15,144.53,0.88,0.23,880,0.4,258,4,0.0000,0.0000 +2012,1,6,10,30,1.4000000000000001,1.21,0.023,0.62,0,0,0,0,0,-9,0,0,0,0,0.28800000000000003,46,132.17000000000002,0.88,0.23,880,0.4,260,4.2,0.0000,0.0000 +2012,1,6,11,30,1,1.17,0.022,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.28800000000000003,47.660000000000004,119.81,0.88,0.23,880,0.5,263,4.3,0.0000,0.0000 +2012,1,6,12,30,0.6000000000000001,1.1400000000000001,0.02,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.289,49.74,107.69,0.88,0.23,880,0.5,266,4.3,0.0000,0.0000 +2012,1,6,13,30,0.8,1.12,0.019,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.289,49.76,95.99000000000001,0.88,0.23,880,0.5,271,4.6000000000000005,0.0000,0.0000 +2012,1,6,14,30,2.5,1.12,0.019,0.62,24,524,71,0,0,-8.3,24,524,0,71,0.289,44.96,84.84,0.88,0.23,880,0.6000000000000001,276,4.800000000000001,0.0000,0.0000 +2012,1,6,15,30,6.1000000000000005,1.11,0.019,0.62,43,812,254,0,3,-7.7,155,86,0,177,0.289,36.42,74.96000000000001,0.88,0.23,881,0.6000000000000001,284,4.7,8.6583,6.6544 +2012,1,6,16,30,10.5,1.12,0.019,0.62,52,916,417,0,1,-7,52,916,0,417,0.28800000000000003,28.68,66.54,0.87,0.23,881,0.7000000000000001,303,4.800000000000001,21.9815,17.0866 +2012,1,6,17,30,14.3,1.1300000000000001,0.019,0.62,57,969,537,0,0,-6.5,57,969,0,537,0.28800000000000003,23.19,60.32,0.87,0.23,880,0.7000000000000001,327,5.1000000000000005,29.5495,23.0750 +2012,1,6,18,30,16.7,1.1300000000000001,0.019,0.62,60,990,598,0,0,-5.7,60,990,0,598,0.28800000000000003,21.04,57.04,0.87,0.23,880,0.7000000000000001,343,5.4,33.5068,26.2090 +2012,1,6,19,30,17.8,1.18,0.021,0.62,61,980,592,0,0,-5,61,980,0,592,0.28700000000000003,20.7,57.230000000000004,0.87,0.23,879,0.8,354,5.6000000000000005,33.1383,25.9186 +2012,1,6,20,30,18,1.2,0.023,0.62,60,954,524,0,0,-4.4,60,954,0,524,0.28600000000000003,21.42,60.86,0.88,0.23,879,0.8,183,5.7,28.7404,22.4360 +2012,1,6,21,30,16.900000000000002,1.1500000000000001,0.023,0.62,54,896,399,0,0,-3.9000000000000004,54,896,0,399,0.28500000000000003,23.77,67.35,0.88,0.23,880,0.8,10,5.2,20.8961,16.2301 +2012,1,6,22,30,13.700000000000001,1.12,0.024,0.62,43,769,230,0,0,-3.3000000000000003,43,769,0,230,0.28500000000000003,30.64,75.96000000000001,0.88,0.23,881,0.8,16,3.9000000000000004,11.1567,8.5590 +2012,1,6,23,30,10,1.07,0.024,0.62,21,434,52,0,0,-2.6,21,434,0,52,0.28400000000000003,41.230000000000004,85.96000000000001,0.88,0.23,882,0.8,20,3.2,0.0000,0.0000 +2012,1,7,0,30,8.1,1,0.024,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.28600000000000003,45.22,97.23,0.88,0.23,884,0.8,24,3.6,0.0000,0.0000 +2012,1,7,1,30,6.9,0.97,0.024,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.28700000000000003,46.35,108.97,0.88,0.23,885,0.8,27,3.9000000000000004,0.0000,0.0000 +2012,1,7,2,30,5.4,0.99,0.024,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.28700000000000003,48.57,121.13,0.88,0.23,885,0.8,29,3.8000000000000003,0.0000,0.0000 +2012,1,7,3,30,4,1.03,0.024,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.28800000000000003,50.85,133.5,0.88,0.23,886,0.8,30,3.4000000000000004,0.0000,0.0000 +2012,1,7,4,30,2.6,1.06,0.022,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.289,54.120000000000005,145.83,0.88,0.23,886,0.8,29,3,0.0000,0.0000 +2012,1,7,5,30,1.4000000000000001,1.09,0.021,0.62,0,0,0,0,0,-6,0,0,0,0,0.291,57.68,157.63,0.88,0.23,887,0.8,24,2.7,0.0000,0.0000 +2012,1,7,6,30,0.5,1.1300000000000001,0.02,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.292,60.59,166.83,0.87,0.23,887,0.7000000000000001,17,2.5,0.0000,0.0000 +2012,1,7,7,30,-0.30000000000000004,1.16,0.019,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.293,63.51,166.17000000000002,0.87,0.23,887,0.7000000000000001,9,2.6,0.0000,0.0000 +2012,1,7,8,30,-0.9,1.19,0.019,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.293,66.09,156.46,0.87,0.23,887,0.7000000000000001,5,2.6,0.0000,0.0000 +2012,1,7,9,30,-1.6,1.21,0.018000000000000002,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.294,69.63,144.56,0.87,0.23,887,0.7000000000000001,3,2.5,0.0000,0.0000 +2012,1,7,10,30,-2.1,1.22,0.018000000000000002,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.294,72.52,132.2,0.87,0.23,887,0.7000000000000001,3,2.3000000000000003,0.0000,0.0000 +2012,1,7,11,30,-2.7,1.23,0.018000000000000002,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.294,76.15,119.84,0.87,0.23,887,0.7000000000000001,5,2,0.0000,0.0000 +2012,1,7,12,30,-3.2,1.24,0.018000000000000002,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.294,79.19,107.71000000000001,0.87,0.23,887,0.6000000000000001,11,1.6,0.0000,0.0000 +2012,1,7,13,30,-2.7,1.24,0.018000000000000002,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.294,76.16,96.01,0.87,0.23,887,0.6000000000000001,23,1.5,0.0000,0.0000 +2012,1,7,14,30,-0.2,1.24,0.017,0.62,23,531,71,0,0,-6.4,23,531,0,71,0.293,63.230000000000004,84.84,0.87,0.23,887,0.6000000000000001,43,1.9000000000000001,0.0000,0.0000 +2012,1,7,15,30,3,1.23,0.017,0.62,42,816,254,0,1,-6.4,42,816,0,254,0.292,50.01,74.93,0.87,0.23,887,0.6000000000000001,77,2.6,12.4282,9.5523 +2012,1,7,16,30,5.800000000000001,1.22,0.017,0.62,51,920,417,0,1,-7.300000000000001,51,920,0,417,0.291,38.54,66.49,0.87,0.23,887,0.7000000000000001,114,3,21.9902,17.0941 +2012,1,7,17,30,8,1.21,0.018000000000000002,0.62,57,970,538,0,1,-7.6000000000000005,57,970,0,538,0.28800000000000003,32.28,60.24,0.88,0.23,886,0.7000000000000001,143,3.1,29.6186,23.1300 +2012,1,7,18,30,9.9,1.25,0.024,0.62,64,984,601,0,0,-7.5,64,984,0,601,0.28600000000000003,28.53,56.93,0.89,0.23,885,0.7000000000000001,170,3.4000000000000004,33.6937,26.3565 +2012,1,7,19,30,11.3,1.27,0.027,0.62,66,979,597,0,0,-7.2,66,979,0,597,0.28300000000000003,26.61,57.1,0.89,0.23,884,0.7000000000000001,186,3.7,33.4405,26.1564 +2012,1,7,20,30,12,1.29,0.029,0.62,64,952,530,0,0,-6.7,64,952,0,530,0.28,26.43,60.7,0.89,0.23,883,0.7000000000000001,193,3.8000000000000003,29.0978,22.7172 +2012,1,7,21,30,11.8,1.31,0.03,0.62,58,893,404,0,0,-6.2,58,893,0,404,0.279,27.84,67.19,0.89,0.23,883,0.7000000000000001,194,3.3000000000000003,21.1856,16.4575 +2012,1,7,22,30,9.1,1.32,0.029,0.62,46,770,234,0,0,-5.4,46,770,0,234,0.278,35.37,75.8,0.89,0.23,883,0.7000000000000001,184,2.1,11.3654,8.7217 +2012,1,7,23,30,5.7,1.32,0.029,0.62,22,439,55,0,0,-3.7,22,439,0,55,0.278,50.94,85.8,0.89,0.23,883,0.7000000000000001,166,1.4000000000000001,0.0000,0.0000 +2012,1,8,0,30,4.1000000000000005,1.29,0.029,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.278,52.34,97.07000000000001,0.89,0.23,883,0.7000000000000001,155,1.7000000000000002,0.0000,0.0000 +2012,1,8,1,30,3.4000000000000004,1.26,0.03,0.62,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.279,53.68,108.82000000000001,0.89,0.23,883,0.7000000000000001,149,1.9000000000000001,0.0000,0.0000 +2012,1,8,2,30,2.8000000000000003,1.24,0.031,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.279,54.85,120.99000000000001,0.89,0.23,883,0.8,145,2.1,0.0000,0.0000 +2012,1,8,3,30,2.1,1.22,0.032,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.28,56.65,133.35,0.89,0.23,883,0.8,142,2.2,0.0000,0.0000 +2012,1,8,4,30,1.3,1.22,0.034,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.28,59.11,145.68,0.89,0.23,883,0.8,140,2.1,0.0000,0.0000 +2012,1,8,5,30,0.6000000000000001,1.23,0.035,0.62,0,0,0,0,0,-6,0,0,0,0,0.28,61.38,157.47,0.89,0.23,883,0.8,139,2,0.0000,0.0000 +2012,1,8,6,30,-0.2,1.26,0.036000000000000004,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.281,64.54,166.67000000000002,0.89,0.23,883,0.8,139,1.8,0.0000,0.0000 +2012,1,8,7,30,-1,1.28,0.037,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.281,68.4,166.1,0.89,0.23,883,0.8,140,1.6,0.0000,0.0000 +2012,1,8,8,30,-1.6,1.31,0.038,0.62,0,0,0,0,1,-6,0,0,0,0,0.281,71.74,156.47,0.89,0.23,884,0.8,138,1.3,0.0000,0.0000 +2012,1,8,9,30,-1.9000000000000001,1.33,0.039,0.62,0,0,0,0,0,-6,0,0,0,0,0.28200000000000003,73.57000000000001,144.59,0.89,0.23,884,0.8,126,1.1,0.0000,0.0000 +2012,1,8,10,30,-2.4000000000000004,1.34,0.039,0.62,0,0,0,0,1,-6,0,0,0,0,0.28200000000000003,76.39,132.23,0.9,0.23,884,0.8,96,1.1,0.0000,0.0000 +2012,1,8,11,30,-3.1,1.36,0.04,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.28300000000000003,80.03,119.87,0.9,0.23,884,0.8,63,1.4000000000000001,0.0000,0.0000 +2012,1,8,12,30,-3.2,1.37,0.04,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.28400000000000003,79.83,107.73,0.9,0.23,885,0.8,45,2.3000000000000003,0.0000,0.0000 +2012,1,8,13,30,-2.9000000000000004,1.3800000000000001,0.04,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.28500000000000003,77.34,96.02,0.9,0.23,885,0.8,39,3.4000000000000004,0.0000,0.0000 +2012,1,8,14,30,-1.4000000000000001,1.4000000000000001,0.041,0.62,27,452,67,0,0,-6.300000000000001,27,452,0,67,0.28600000000000003,69.26,84.83,0.9,0.23,885,0.8,38,4.1000000000000005,0.0000,0.0000 +2012,1,8,15,30,1.4000000000000001,1.41,0.043000000000000003,0.62,51,748,246,0,1,-6.1000000000000005,51,748,0,246,0.28600000000000003,57.46,74.9,0.9,0.23,886,0.9,48,4.4,12.0400,9.2544 +2012,1,8,16,30,4.5,1.41,0.045,0.62,64,866,411,0,1,-5.6000000000000005,64,866,0,411,0.28700000000000003,47.74,66.43,0.9,0.23,886,0.9,66,4.6000000000000005,21.6841,16.8571 +2012,1,8,17,30,7,1.41,0.046,0.62,72,922,531,0,1,-5.2,72,922,0,531,0.28800000000000003,41.45,60.15,0.91,0.23,886,0.9,78,4.5,29.2488,22.8424 +2012,1,8,18,30,8.700000000000001,1.41,0.058,0.62,81,931,591,0,4,-5,324,252,0,462,0.289,37.49,56.81,0.91,0.23,886,0.9,80,4.1000000000000005,25.9167,20.2741 +2012,1,8,19,30,9.4,1.41,0.059000000000000004,0.62,82,929,588,0,2,-4.800000000000001,300,338,0,484,0.289,36.32,56.95,0.92,0.23,885,0.9,74,3.8000000000000003,27.1316,21.2232 +2012,1,8,20,30,9.5,1.41,0.059000000000000004,0.62,77,902,521,0,4,-4.7,293,219,0,401,0.29,36.44,60.54,0.91,0.23,885,0.9,67,3.8000000000000003,22.0368,17.2062 +2012,1,8,21,30,8.9,1.43,0.049,0.62,65,854,398,0,8,-4.7,160,438,0,332,0.291,37.92,67.03,0.91,0.23,885,0.9,62,3.9000000000000004,17.4325,13.5442 +2012,1,8,22,30,6.800000000000001,1.43,0.051000000000000004,0.62,52,718,230,0,8,-4.800000000000001,106,404,0,207,0.293,43.4,75.64,0.91,0.23,886,0.9,59,3.4000000000000004,10.0673,7.7277 +2012,1,8,23,30,4.3,1.43,0.053,0.62,25,375,53,7,4,-4.7,19,0,7,19,0.295,51.94,85.65,0.91,0.23,887,0.9,56,3.1,0.0000,0.0000 +2012,1,9,0,30,2.9000000000000004,1.43,0.055,0.62,0,0,0,0,4,-5.2,0,0,0,0,0.298,55.120000000000005,96.92,0.91,0.23,888,0.9,52,3.8000000000000003,0.0000,0.0000 +2012,1,9,1,30,1.9000000000000001,1.42,0.056,0.62,0,0,0,0,4,-5.7,0,0,0,0,0.303,57.14,108.67,0.91,0.23,889,0.9,48,4.4,0.0000,0.0000 +2012,1,9,2,30,0.8,1.43,0.054,0.62,0,0,0,0,4,-6.1000000000000005,0,0,0,0,0.307,59.95,120.84,0.91,0.23,889,0.9,44,4.4,0.0000,0.0000 +2012,1,9,3,30,-0.30000000000000004,1.43,0.055,0.62,0,0,0,0,1,-6.4,0,0,0,0,0.311,63.28,133.2,0.92,0.23,890,0.9,38,4,0.0000,0.0000 +2012,1,9,4,30,-1.2000000000000002,1.3900000000000001,0.064,0.62,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.314,65.58,145.53,0.93,0.23,890,0.9,29,3.4000000000000004,0.0000,0.0000 +2012,1,9,5,30,-1.7000000000000002,1.33,0.076,0.62,0,0,0,0,4,-7.300000000000001,0,0,0,0,0.316,65.48,157.31,0.9400000000000001,0.23,890,0.9,24,3.2,0.0000,0.0000 +2012,1,9,6,30,-1.9000000000000001,1.29,0.085,0.62,0,0,0,0,4,-7.9,0,0,0,0,0.317,63.77,166.51,0.9400000000000001,0.23,890,0.9,24,3.2,0.0000,0.0000 +2012,1,9,7,30,-1.9000000000000001,1.25,0.096,0.62,0,0,0,0,1,-8.3,0,0,0,0,0.318,61.78,166.03,0.9500000000000001,0.23,890,0.9,18,3.3000000000000003,0.0000,0.0000 +2012,1,9,8,30,-2,1.23,0.107,0.62,0,0,0,0,1,-8.4,0,0,0,0,0.319,61.45,156.47,0.96,0.23,889,0.9,7,3.3000000000000003,0.0000,0.0000 +2012,1,9,9,30,-2.2,1.22,0.115,0.62,0,0,0,0,4,-8.4,0,0,0,0,0.32,62.71,144.61,0.96,0.23,889,1,178,3.2,0.0000,0.0000 +2012,1,9,10,30,-2.4000000000000004,1.23,0.113,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.321,64.44,132.26,0.96,0.23,889,1,355,3.1,0.0000,0.0000 +2012,1,9,11,30,-2.6,1.25,0.105,0.62,0,0,0,0,8,-8,0,0,0,0,0.322,66.38,119.89,0.96,0.23,889,1,179,2.7,0.0000,0.0000 +2012,1,9,12,30,-2.7,1.26,0.106,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.323,68.24,107.75,0.9500000000000001,0.23,890,1,5,2.4000000000000004,0.0000,0.0000 +2012,1,9,13,30,-2.6,1.26,0.106,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.323,69.31,96.02,0.9500000000000001,0.23,891,1,6,2.7,0.0000,0.0000 +2012,1,9,14,30,-1.3,1.31,0.092,0.62,32,331,62,7,4,-7.2,24,0,7,24,0.322,64.28,84.81,0.9400000000000001,0.23,891,1,8,3.7,0.0000,0.0000 +2012,1,9,15,30,1.3,1.3800000000000001,0.07200000000000001,0.62,60,694,241,0,7,-7.2,137,57,0,152,0.322,53.11,74.87,0.93,0.23,890,0.9,11,5,7.4413,5.7200 +2012,1,9,16,30,3.7,1.42,0.058,0.62,70,845,409,0,2,-7,247,112,0,291,0.32,45.660000000000004,66.37,0.9400000000000001,0.23,890,0.9,24,4.9,15.3602,11.9416 +2012,1,9,17,30,5.2,1.37,0.075,0.62,86,884,527,0,2,-6.2,299,221,0,409,0.318,43.45,60.050000000000004,0.9500000000000001,0.23,890,0.9,44,3.5,22.5420,17.6056 +2012,1,9,18,30,5.9,1.26,0.113,0.62,107,861,580,0,8,-5.9,259,363,0,459,0.317,42.56,56.69,0.96,0.23,890,1,38,2.7,25.7640,20.1557 +2012,1,9,19,30,6.4,1.27,0.114,0.62,107,859,578,0,0,-5.6000000000000005,107,859,0,578,0.317,41.86,56.800000000000004,0.96,0.23,889,1,192,2.5,32.4256,25.3660 +2012,1,9,20,30,6.800000000000001,1.29,0.111,0.62,100,833,512,0,1,-5.5,100,833,0,512,0.317,41.31,60.38,0.96,0.23,888,1,353,2.7,28.1637,21.9921 +2012,1,9,21,30,6.800000000000001,1.32,0.101,0.62,85,775,390,0,7,-5.300000000000001,182,385,0,333,0.317,41.69,66.86,0.9500000000000001,0.23,888,1,344,2.8000000000000003,17.5089,13.6058 +2012,1,9,22,30,5.300000000000001,1.35,0.089,0.62,63,653,227,0,1,-5.300000000000001,63,653,0,227,0.317,46.25,75.47,0.9500000000000001,0.23,888,0.9,342,2.2,11.0556,8.4891 +2012,1,9,23,30,2.8000000000000003,1.3800000000000001,0.081,0.62,29,323,54,7,4,-4.9,37,1,7,37,0.318,56.88,85.49,0.9500000000000001,0.23,888,0.9,347,1.5,0.0000,0.0000 +2012,1,10,0,30,1.4000000000000001,1.3900000000000001,0.076,0.62,0,0,0,0,4,-6,0,0,0,0,0.319,57.99,96.76,0.9500000000000001,0.23,888,0.9,179,1.5,0.0000,0.0000 +2012,1,10,1,30,0.9,1.3900000000000001,0.074,0.62,0,0,0,0,4,-6.6000000000000005,0,0,0,0,0.318,57.34,108.52,0.9500000000000001,0.23,888,0.8,11,1.4000000000000001,0.0000,0.0000 +2012,1,10,2,30,0.5,1.4000000000000001,0.069,0.62,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.318,56.84,120.69,0.9500000000000001,0.23,888,0.8,14,1.2000000000000002,0.0000,0.0000 +2012,1,10,3,30,0.1,1.41,0.061,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.317,56.480000000000004,133.06,0.9500000000000001,0.23,888,0.7000000000000001,182,1.2000000000000002,0.0000,0.0000 +2012,1,10,4,30,-0.6000000000000001,1.42,0.055,0.62,0,0,0,0,4,-8.1,0,0,0,0,0.318,56.99,145.38,0.9400000000000001,0.23,888,0.7000000000000001,344,1.2000000000000002,0.0000,0.0000 +2012,1,10,5,30,-1.4000000000000001,1.45,0.048,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.319,56.85,157.15,0.93,0.23,887,0.6000000000000001,327,1.5,0.0000,0.0000 +2012,1,10,6,30,-1.9000000000000001,1.47,0.041,0.62,0,0,0,0,7,-9.700000000000001,0,0,0,0,0.321,55.35,166.34,0.92,0.23,886,0.6000000000000001,317,1.9000000000000001,0.0000,0.0000 +2012,1,10,7,30,-2.2,1.47,0.036000000000000004,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.323,53.09,165.95000000000002,0.92,0.23,886,0.5,315,2.1,0.0000,0.0000 +2012,1,10,8,30,-2.6,1.46,0.034,0.62,0,0,0,0,0,-11,0,0,0,0,0.323,52.61,156.46,0.91,0.23,886,0.5,318,2,0.0000,0.0000 +2012,1,10,9,30,-2.9000000000000004,1.46,0.033,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.322,53.27,144.62,0.9,0.23,885,0.5,320,2.1,0.0000,0.0000 +2012,1,10,10,30,-2.9000000000000004,1.46,0.031,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.319,54.56,132.28,0.9,0.23,885,0.5,323,2.3000000000000003,0.0000,0.0000 +2012,1,10,11,30,-2.9000000000000004,1.45,0.029,0.62,0,0,0,0,0,-10,0,0,0,0,0.317,57.95,119.91,0.89,0.23,885,0.5,329,2.4000000000000004,0.0000,0.0000 +2012,1,10,12,30,-2.9000000000000004,1.44,0.026000000000000002,0.62,0,0,0,0,1,-8.9,0,0,0,0,0.315,63.440000000000005,107.76,0.89,0.23,885,0.5,332,2.5,0.0000,0.0000 +2012,1,10,13,30,-2.1,1.43,0.024,0.62,0,0,0,0,1,-7.5,0,0,0,0,0.312,66.45,96.01,0.89,0.23,885,0.5,333,3.1,0.0000,0.0000 +2012,1,10,14,30,0.2,1.42,0.021,0.62,24,532,72,0,1,-6.2,24,532,0,72,0.31,62.32,84.8,0.89,0.23,885,0.5,330,3.9000000000000004,0.0000,0.0000 +2012,1,10,15,30,3.7,1.41,0.019,0.62,43,823,258,0,3,-5,158,75,0,177,0.307,52.84,74.83,0.89,0.23,885,0.5,326,4.2,8.6682,6.6636 +2012,1,10,16,30,7.300000000000001,1.41,0.017,0.62,51,937,427,0,1,-4.1000000000000005,51,937,0,427,0.303,44.13,66.3,0.88,0.23,885,0.5,328,4.6000000000000005,22.5512,17.5333 +2012,1,10,17,30,9.8,1.4000000000000001,0.014,0.62,53,984,546,0,0,-3.8000000000000003,53,984,0,546,0.3,38.24,59.95,0.88,0.23,884,0.6000000000000001,330,5,30.1104,23.5179 +2012,1,10,18,30,11.5,1.42,0.015,0.62,56,1004,610,0,0,-4,56,1004,0,610,0.296,33.61,56.550000000000004,0.87,0.23,883,0.6000000000000001,331,5,34.2636,26.8069 +2012,1,10,19,30,12.700000000000001,1.43,0.015,0.62,56,1004,608,0,0,-4.4,56,1004,0,608,0.293,30.150000000000002,56.64,0.87,0.23,882,0.6000000000000001,332,4.800000000000001,34.1360,26.7059 +2012,1,10,20,30,13.3,1.43,0.015,0.62,53,976,538,0,0,-4.6000000000000005,53,976,0,538,0.29,28.59,60.21,0.87,0.23,881,0.7000000000000001,331,4.5,29.6239,23.1345 +2012,1,10,21,30,13,1.42,0.013000000000000001,0.62,46,926,413,0,0,-4.3,46,926,0,413,0.29,29.85,66.69,0.87,0.23,881,0.7000000000000001,328,3.6,21.7448,16.9002 +2012,1,10,22,30,10.100000000000001,1.42,0.014,0.62,39,811,244,0,0,-2.9000000000000004,39,811,0,244,0.29,40.03,75.3,0.87,0.23,881,0.7000000000000001,324,2.1,11.9007,9.1408 +2012,1,10,23,30,7,1.42,0.015,0.62,21,518,63,0,0,-2,21,518,0,63,0.292,52.71,85.33,0.87,0.23,881,0.6000000000000001,318,1.4000000000000001,0.0000,0.0000 +2012,1,11,0,30,5.800000000000001,1.41,0.015,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.294,52.5,96.60000000000001,0.87,0.23,881,0.6000000000000001,306,1.5,0.0000,0.0000 +2012,1,11,1,30,4.800000000000001,1.41,0.016,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.295,55.89,108.36,0.86,0.23,881,0.6000000000000001,289,1.6,0.0000,0.0000 +2012,1,11,2,30,3.8000000000000003,1.4000000000000001,0.018000000000000002,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.296,59.300000000000004,120.54,0.86,0.23,880,0.6000000000000001,275,1.8,0.0000,0.0000 +2012,1,11,3,30,3.3000000000000003,1.36,0.019,0.62,0,0,0,0,1,-3.6,0,0,0,0,0.296,60.39,132.9,0.87,0.23,880,0.5,269,2.3000000000000003,0.0000,0.0000 +2012,1,11,4,30,3,1.3,0.02,0.62,0,0,0,0,7,-4,0,0,0,0,0.296,60.1,145.23,0.87,0.23,879,0.5,268,2.9000000000000004,0.0000,0.0000 +2012,1,11,5,30,2.5,1.24,0.02,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.295,61.02,156.99,0.88,0.23,879,0.5,270,3.5,0.0000,0.0000 +2012,1,11,6,30,2,1.21,0.021,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.294,62.97,166.17000000000002,0.89,0.23,878,0.4,272,4.1000000000000005,0.0000,0.0000 +2012,1,11,7,30,1.5,1.21,0.021,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.294,65.14,165.87,0.89,0.23,877,0.4,274,4.6000000000000005,0.0000,0.0000 +2012,1,11,8,30,1.2000000000000002,1.21,0.02,0.62,0,0,0,0,8,-4.5,0,0,0,0,0.294,65.95,156.45000000000002,0.89,0.23,877,0.4,276,4.9,0.0000,0.0000 +2012,1,11,9,30,1,1.23,0.019,0.62,0,0,0,0,8,-4.800000000000001,0,0,0,0,0.296,65.35,144.63,0.88,0.23,876,0.30000000000000004,279,5.1000000000000005,0.0000,0.0000 +2012,1,11,10,30,0.7000000000000001,1.24,0.018000000000000002,0.62,0,0,0,0,1,-5.2,0,0,0,0,0.298,64.84,132.3,0.88,0.23,876,0.30000000000000004,280,5.2,0.0000,0.0000 +2012,1,11,11,30,0.5,1.21,0.018000000000000002,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.3,64.35,119.92,0.87,0.23,876,0.30000000000000004,282,5.4,0.0000,0.0000 +2012,1,11,12,30,0.4,1.18,0.019,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.302,64.05,107.76,0.87,0.23,876,0.4,288,5.6000000000000005,0.0000,0.0000 +2012,1,11,13,30,0.9,1.17,0.024,0.62,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.302,61.03,96.01,0.88,0.23,876,0.4,298,6.1000000000000005,0.0000,0.0000 +2012,1,11,14,30,2.9000000000000004,1.17,0.027,0.62,25,511,72,7,4,-5.800000000000001,44,2,7,44,0.302,52.6,84.77,0.88,0.23,877,0.5,312,6.6000000000000005,0.0000,0.0000 +2012,1,11,15,30,5.7,1.19,0.029,0.62,47,787,254,0,7,-5.1000000000000005,129,275,0,202,0.304,45.82,74.78,0.89,0.23,878,0.7000000000000001,337,7.7,9.8969,7.6088 +2012,1,11,16,30,7.6000000000000005,1.21,0.032,0.62,60,892,419,0,7,-2.9000000000000004,186,362,0,332,0.306,47.33,66.22,0.9,0.23,879,0.8,355,8.5,17.5449,13.6420 +2012,1,11,17,30,8.700000000000001,1.22,0.035,0.62,68,938,539,0,7,-2.1,260,238,0,379,0.309,46.81,59.84,0.91,0.23,879,0.9,359,8.5,20.9142,16.3362 +2012,1,11,18,30,9.3,1.26,0.046,0.62,76,947,600,0,7,-2.1,243,432,0,482,0.311,44.74,56.410000000000004,0.92,0.23,879,0.9,360,8.4,27.0927,21.1978 +2012,1,11,19,30,9.200000000000001,1.24,0.045,0.62,76,953,602,0,1,-2.5,76,953,0,602,0.312,43.63,56.480000000000004,0.92,0.23,879,0.8,180,8.200000000000001,33.8261,26.4653 +2012,1,11,20,30,8.6,1.23,0.043000000000000003,0.62,72,936,539,0,1,-3.1,72,936,0,539,0.311,43.550000000000004,60.03,0.92,0.23,880,0.7000000000000001,1,8,29.7105,23.2045 +2012,1,11,21,30,7.300000000000001,1.19,0.037,0.62,62,886,416,0,1,-3.8000000000000003,62,886,0,416,0.311,45.300000000000004,66.51,0.93,0.23,881,0.7000000000000001,4,7.6000000000000005,21.9340,17.0501 +2012,1,11,22,30,5.300000000000001,1.22,0.037,0.62,50,763,246,0,1,-4.5,50,763,0,246,0.312,49.050000000000004,75.13,0.93,0.23,882,0.7000000000000001,11,6.800000000000001,12.0158,9.2320 +2012,1,11,23,30,2.9000000000000004,1.25,0.037,0.62,26,446,63,0,0,-5.5,26,446,0,63,0.313,54.21,85.16,0.93,0.23,883,0.7000000000000001,19,6,0.0000,0.0000 +2012,1,12,0,30,1,1.26,0.038,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.314,58.050000000000004,96.44,0.93,0.24,884,0.7000000000000001,25,5.6000000000000005,0.0000,0.0000 +2012,1,12,1,30,-0.4,1.24,0.037,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.314,60.01,108.21000000000001,0.92,0.24,885,0.6000000000000001,29,5.6000000000000005,0.0000,0.0000 +2012,1,12,2,30,-1.7000000000000002,1.21,0.036000000000000004,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.314,61.43,120.38,0.92,0.24,885,0.6000000000000001,31,5.4,0.0000,0.0000 +2012,1,12,3,30,-2.7,1.18,0.034,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.313,61.44,132.75,0.92,0.24,886,0.6000000000000001,29,5.1000000000000005,0.0000,0.0000 +2012,1,12,4,30,-3.6,1.1400000000000001,0.034,0.62,0,0,0,0,1,-10.100000000000001,0,0,0,0,0.312,60.82,145.07,0.92,0.24,887,0.5,28,4.7,0.0000,0.0000 +2012,1,12,5,30,-4.4,1.1,0.033,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.313,59.46,156.82,0.92,0.24,888,0.5,28,4.3,0.0000,0.0000 +2012,1,12,6,30,-5.2,1.05,0.032,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.315,57.800000000000004,165.99,0.92,0.24,888,0.4,28,4,0.0000,0.0000 +2012,1,12,7,30,-5.9,1.03,0.03,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.317,55.88,165.77,0.92,0.24,889,0.4,28,3.6,0.0000,0.0000 +2012,1,12,8,30,-6.4,1.02,0.029,0.62,0,0,0,0,1,-14.3,0,0,0,0,0.319,53.67,156.43,0.92,0.24,889,0.4,26,3.1,0.0000,0.0000 +2012,1,12,9,30,-6.9,1.02,0.027,0.62,0,0,0,0,0,-14.9,0,0,0,0,0.319,53.14,144.64000000000001,0.92,0.24,889,0.30000000000000004,22,2.4000000000000004,0.0000,0.0000 +2012,1,12,10,30,-7.1000000000000005,1.02,0.025,0.62,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.319,52.94,132.31,0.92,0.24,889,0.30000000000000004,15,1.9000000000000001,0.0000,0.0000 +2012,1,12,11,30,-7.300000000000001,1.02,0.023,0.62,0,0,0,0,0,-15.200000000000001,0,0,0,0,0.318,53.47,119.93,0.92,0.24,889,0.30000000000000004,182,1.6,0.0000,0.0000 +2012,1,12,12,30,-7.300000000000001,1.02,0.021,0.62,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.318,53.800000000000004,107.76,0.91,0.24,889,0.30000000000000004,340,1.4000000000000001,0.0000,0.0000 +2012,1,12,13,30,-6.6000000000000005,1.03,0.02,0.62,0,0,0,0,0,-14.9,0,0,0,0,0.317,51.57,95.99000000000001,0.91,0.24,890,0.30000000000000004,313,1.9000000000000001,0.0000,0.0000 +2012,1,12,14,30,-4.800000000000001,1.03,0.02,0.62,25,555,76,0,0,-15.200000000000001,25,555,0,76,0.317,44.01,84.73,0.91,0.24,890,0.30000000000000004,298,2.9000000000000004,0.0000,0.0000 +2012,1,12,15,30,-2.3000000000000003,1.04,0.02,0.62,45,842,267,7,4,-15,131,348,7,222,0.317,37.19,74.72,0.91,0.24,891,0.30000000000000004,295,3.5,10.8826,8.3675 +2012,1,12,16,30,0.2,1.05,0.02,0.62,55,952,440,7,4,-14,177,636,7,435,0.317,33.6,66.14,0.91,0.24,891,0.30000000000000004,294,3.7,23.0024,17.8867 +2012,1,12,17,30,2.3000000000000003,1.06,0.02,0.62,60,1003,566,7,4,-13.700000000000001,214,690,7,562,0.316,29.53,59.730000000000004,0.91,0.24,890,0.30000000000000004,296,3.8000000000000003,31.0325,24.2411 +2012,1,12,18,30,3.7,1.12,0.024,0.62,66,1020,632,0,0,-14.200000000000001,66,1020,0,632,0.316,25.71,56.27,0.9,0.24,889,0.30000000000000004,297,3.8000000000000003,35.5486,27.8155 +2012,1,12,19,30,4.5,1.1300000000000001,0.024,0.62,66,1019,631,0,0,-14.8,66,1019,0,631,0.315,23.09,56.31,0.9,0.24,889,0.30000000000000004,298,3.7,35.4854,27.7656 +2012,1,12,20,30,4.9,1.1400000000000001,0.025,0.62,64,996,564,0,1,-15.200000000000001,64,996,0,564,0.316,21.8,59.85,0.9,0.24,888,0.30000000000000004,298,3.5,31.1212,24.3088 +2012,1,12,21,30,4.5,1.1400000000000001,0.026000000000000002,0.62,58,941,436,0,1,-15.3,58,941,0,436,0.317,22.29,66.32000000000001,0.9,0.24,888,0.30000000000000004,298,2.7,23.0229,17.8997 +2012,1,12,22,30,2.3000000000000003,1.1400000000000001,0.026000000000000002,0.62,47,826,261,0,0,-13.9,47,826,0,261,0.318,29.080000000000002,74.95,0.91,0.24,887,0.30000000000000004,292,1.7000000000000002,12.7685,9.8135 +2012,1,12,23,30,-0.5,1.1300000000000001,0.026000000000000002,0.62,25,524,71,7,4,-11.700000000000001,45,5,7,45,0.319,42.58,84.99,0.91,0.24,887,0.30000000000000004,278,1.3,0.0000,0.0000 +2012,1,13,0,30,-1.4000000000000001,1.1300000000000001,0.028,0.62,0,0,0,0,7,-13.3,0,0,0,0,0.32,39.88,96.27,0.91,0.23,887,0.30000000000000004,264,1.4000000000000001,0.0000,0.0000 +2012,1,13,1,30,-1.4000000000000001,1.1300000000000001,0.03,0.62,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.32,42.17,108.05,0.91,0.23,887,0.30000000000000004,250,1.4000000000000001,0.0000,0.0000 +2012,1,13,2,30,-1.2000000000000002,1.1300000000000001,0.031,0.62,0,0,0,0,7,-12,0,0,0,0,0.319,43.81,120.23,0.91,0.23,887,0.30000000000000004,242,1.6,0.0000,0.0000 +2012,1,13,3,30,-1.2000000000000002,1.1300000000000001,0.034,0.62,0,0,0,0,7,-11.700000000000001,0,0,0,0,0.318,44.64,132.6,0.92,0.23,887,0.30000000000000004,239,1.7000000000000002,0.0000,0.0000 +2012,1,13,4,30,-1.3,1.1300000000000001,0.036000000000000004,0.62,0,0,0,0,8,-11.600000000000001,0,0,0,0,0.318,45.59,144.91,0.92,0.23,887,0.4,242,1.9000000000000001,0.0000,0.0000 +2012,1,13,5,30,-1.4000000000000001,1.1300000000000001,0.038,0.62,0,0,0,0,7,-11.4,0,0,0,0,0.319,46.62,156.65,0.92,0.23,887,0.4,248,2,0.0000,0.0000 +2012,1,13,6,30,-1.6,1.1400000000000001,0.039,0.62,0,0,0,0,7,-11.200000000000001,0,0,0,0,0.319,47.870000000000005,165.8,0.92,0.23,887,0.4,254,2.2,0.0000,0.0000 +2012,1,13,7,30,-1.9000000000000001,1.1400000000000001,0.038,0.62,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.319,49.6,165.66,0.91,0.23,887,0.4,258,2.3000000000000003,0.0000,0.0000 +2012,1,13,8,30,-2.6,1.1500000000000001,0.037,0.62,0,0,0,0,7,-10.9,0,0,0,0,0.32,53.01,156.4,0.9,0.23,887,0.4,259,2.3000000000000003,0.0000,0.0000 +2012,1,13,9,30,-3.3000000000000003,1.16,0.037,0.62,0,0,0,0,7,-10.8,0,0,0,0,0.321,56.03,144.64000000000001,0.9,0.23,887,0.4,254,2.3000000000000003,0.0000,0.0000 +2012,1,13,10,30,-3.8000000000000003,1.17,0.036000000000000004,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.323,58.18,132.31,0.89,0.23,887,0.30000000000000004,247,2.6,0.0000,0.0000 +2012,1,13,11,30,-4,1.17,0.034,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.326,59.21,119.93,0.89,0.23,887,0.30000000000000004,244,3,0.0000,0.0000 +2012,1,13,12,30,-4.1000000000000005,1.17,0.03,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.328,60.050000000000004,107.75,0.88,0.23,887,0.30000000000000004,250,3.3000000000000003,0.0000,0.0000 +2012,1,13,13,30,-3.7,1.18,0.025,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.328,58.59,95.97,0.88,0.23,888,0.30000000000000004,261,3.7,0.0000,0.0000 +2012,1,13,14,30,-1.7000000000000002,1.19,0.021,0.62,25,556,76,0,0,-10.600000000000001,25,556,0,76,0.326,50.51,84.7,0.87,0.23,888,0.30000000000000004,270,4.1000000000000005,0.0000,0.0000 +2012,1,13,15,30,1.6,1.21,0.018000000000000002,0.62,43,849,267,0,4,-10.8,158,133,0,193,0.323,39.230000000000004,74.66,0.87,0.23,889,0.30000000000000004,281,4.1000000000000005,9.4661,7.2791 +2012,1,13,16,30,5.1000000000000005,1.23,0.016,0.62,51,961,440,0,1,-11.4,51,961,0,440,0.32,29.18,66.05,0.87,0.23,889,0.30000000000000004,292,4.1000000000000005,23.2831,18.1064 +2012,1,13,17,30,8.3,1.27,0.016,0.62,56,1011,567,0,0,-12.200000000000001,56,1011,0,567,0.317,22.01,59.61,0.88,0.23,888,0.30000000000000004,302,4,31.3303,24.4753 +2012,1,13,18,30,10.5,1.28,0.023,0.62,64,1011,628,0,0,-14.3,64,1011,0,628,0.314,16.05,56.11,0.88,0.23,887,0.4,311,3.9000000000000004,35.3513,27.6630 +2012,1,13,19,30,11.600000000000001,1.28,0.022,0.62,63,1013,628,0,0,-15.3,63,1013,0,628,0.312,13.74,56.13,0.88,0.23,887,0.4,311,3.7,35.3478,27.6601 +2012,1,13,20,30,12,1.29,0.02,0.62,59,994,561,0,0,-15.5,59,994,0,561,0.312,13.08,59.67,0.88,0.23,887,0.4,304,3.3000000000000003,30.9880,24.2071 +2012,1,13,21,30,11.100000000000001,1.3,0.021,0.62,54,940,435,0,0,-15.5,54,940,0,435,0.311,13.950000000000001,66.14,0.88,0.23,887,0.4,292,2.4000000000000004,23.0024,17.8867 +2012,1,13,22,30,7.7,1.3,0.02,0.62,44,831,262,0,0,-9.8,44,831,0,262,0.309,27.77,74.77,0.88,0.23,887,0.4,274,1.5,12.8377,9.8699 +2012,1,13,23,30,3.9000000000000004,1.31,0.02,0.62,24,543,73,0,0,-9.700000000000001,24,543,0,73,0.308,36.34,84.82000000000001,0.88,0.23,888,0.4,256,1.6,0.0000,0.0000 +2012,1,14,0,30,2,1.32,0.02,0.62,0,0,0,0,0,-12,0,0,0,0,0.307,34.74,96.10000000000001,0.88,0.23,888,0.4,245,1.8,0.0000,0.0000 +2012,1,14,1,30,1.3,1.33,0.02,0.62,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.306,34.85,107.89,0.88,0.23,888,0.4,241,2.2,0.0000,0.0000 +2012,1,14,2,30,1,1.31,0.02,0.62,0,0,0,0,0,-13,0,0,0,0,0.305,34.27,120.07000000000001,0.88,0.23,888,0.4,244,2.6,0.0000,0.0000 +2012,1,14,3,30,0.7000000000000001,1.27,0.02,0.62,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.304,34.78,132.44,0.88,0.23,889,0.30000000000000004,252,3,0.0000,0.0000 +2012,1,14,4,30,0.1,1.22,0.02,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.303,37.24,144.76,0.87,0.23,889,0.30000000000000004,261,3.3000000000000003,0.0000,0.0000 +2012,1,14,5,30,-0.8,1.2,0.019,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.302,41.54,156.48,0.87,0.23,889,0.30000000000000004,271,3.3000000000000003,0.0000,0.0000 +2012,1,14,6,30,-1.7000000000000002,1.2,0.017,0.62,0,0,0,0,0,-11.9,0,0,0,0,0.303,45.82,165.61,0.87,0.23,889,0.30000000000000004,281,3.1,0.0000,0.0000 +2012,1,14,7,30,-2.5,1.22,0.016,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.304,48.84,165.55,0.87,0.23,890,0.30000000000000004,292,2.8000000000000003,0.0000,0.0000 +2012,1,14,8,30,-2.9000000000000004,1.25,0.014,0.62,0,0,0,0,0,-12,0,0,0,0,0.304,49.46,156.36,0.87,0.23,890,0.2,301,2.6,0.0000,0.0000 +2012,1,14,9,30,-3,1.28,0.013000000000000001,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.304,48.72,144.63,0.87,0.23,890,0.2,308,2.6,0.0000,0.0000 +2012,1,14,10,30,-3.1,1.31,0.012,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.302,48.2,132.31,0.86,0.23,890,0.2,312,2.5,0.0000,0.0000 +2012,1,14,11,30,-3.2,1.33,0.012,0.62,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.301,47.96,119.93,0.86,0.23,890,0.2,314,2.3000000000000003,0.0000,0.0000 +2012,1,14,12,30,-3.3000000000000003,1.33,0.012,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.3,47.72,107.74000000000001,0.86,0.23,890,0.2,314,2.1,0.0000,0.0000 +2012,1,14,13,30,-2.2,1.34,0.011,0.62,0,0,0,0,1,-13,0,0,0,0,0.298,43.5,95.94,0.86,0.23,891,0.2,313,2.3000000000000003,0.0000,0.0000 +2012,1,14,14,30,0.9,1.34,0.011,0.62,22,615,79,0,1,-12.600000000000001,22,615,0,79,0.297,35.69,84.66,0.86,0.23,891,0.2,312,3,0.0000,0.0000 +2012,1,14,15,30,4.4,1.34,0.012,0.62,39,882,273,0,4,-13,166,76,0,186,0.295,27.080000000000002,74.59,0.86,0.23,892,0.2,310,3.2,9.1284,7.0203 +2012,1,14,16,30,8.1,1.34,0.012,0.62,47,985,448,0,1,-11.9,47,985,0,448,0.293,22.82,65.95,0.86,0.23,892,0.2,302,2.3000000000000003,23.7247,18.4516 +2012,1,14,17,30,12.200000000000001,1.35,0.012,0.62,51,1034,576,0,1,-11.3,51,1034,0,576,0.292,18.2,59.480000000000004,0.87,0.23,892,0.2,271,1.8,31.8514,24.8841 +2012,1,14,18,30,14.9,1.31,0.015,0.62,57,1050,645,0,0,-13.8,57,1050,0,645,0.29,12.530000000000001,55.95,0.87,0.23,891,0.2,242,2,36.3365,28.4359 +2012,1,14,19,30,15.8,1.3,0.016,0.62,58,1034,637,0,0,-14,58,1034,0,637,0.28800000000000003,11.620000000000001,55.95,0.87,0.23,890,0.30000000000000004,233,2.2,35.8858,28.0832 +2012,1,14,20,30,15.8,1.28,0.017,0.62,57,1012,571,0,0,-13.8,57,1012,0,571,0.28700000000000003,11.8,59.47,0.88,0.23,890,0.30000000000000004,227,2.5,31.5767,24.6696 +2012,1,14,21,30,14.600000000000001,1.28,0.018000000000000002,0.62,53,960,444,0,0,-13.5,53,960,0,444,0.28600000000000003,13.11,65.95,0.88,0.23,889,0.30000000000000004,221,2,23.5129,18.2868 +2012,1,14,22,30,10.8,1.27,0.02,0.62,44,848,270,0,0,-6.5,44,848,0,270,0.28600000000000003,29.150000000000002,74.58,0.88,0.23,889,0.30000000000000004,215,1.5,13.2521,10.1919 +2012,1,14,23,30,6.6000000000000005,1.26,0.022,0.62,25,559,78,0,0,-7.300000000000001,25,559,0,78,0.28500000000000003,36.4,84.65,0.88,0.23,889,0.30000000000000004,213,1.6,0.0000,0.0000 +2012,1,15,0,30,4.6000000000000005,1.25,0.023,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.28500000000000003,35.31,95.93,0.88,0.24,890,0.30000000000000004,217,1.8,0.0000,0.0000 +2012,1,15,1,30,3.5,1.24,0.024,0.62,0,0,0,0,0,-10,0,0,0,0,0.28500000000000003,36.6,107.72,0.88,0.24,890,0.2,223,1.9000000000000001,0.0000,0.0000 +2012,1,15,2,30,2.6,1.24,0.024,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.28500000000000003,37.31,119.91,0.88,0.24,889,0.2,227,2,0.0000,0.0000 +2012,1,15,3,30,2,1.24,0.024,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.28700000000000003,37.13,132.29,0.88,0.24,889,0.2,231,2.3000000000000003,0.0000,0.0000 +2012,1,15,4,30,1.5,1.23,0.024,0.62,0,0,0,0,4,-11.700000000000001,0,0,0,0,0.29,36.71,144.59,0.88,0.24,889,0.2,234,2.7,0.0000,0.0000 +2012,1,15,5,30,0.8,1.22,0.024,0.62,0,0,0,0,8,-12.100000000000001,0,0,0,0,0.292,37.54,156.3,0.89,0.24,889,0.2,238,2.8000000000000003,0.0000,0.0000 +2012,1,15,6,30,0.1,1.2,0.025,0.62,0,0,0,0,8,-12.100000000000001,0,0,0,0,0.294,39.550000000000004,165.42000000000002,0.89,0.24,888,0.2,242,2.7,0.0000,0.0000 +2012,1,15,7,30,-0.4,1.2,0.025,0.62,0,0,0,0,4,-11.8,0,0,0,0,0.296,41.77,165.43,0.9,0.24,888,0.2,248,2.6,0.0000,0.0000 +2012,1,15,8,30,-0.8,1.21,0.025,0.62,0,0,0,0,4,-11.700000000000001,0,0,0,0,0.299,43.6,156.32,0.9,0.24,888,0.2,252,2.6,0.0000,0.0000 +2012,1,15,9,30,-1.2000000000000002,1.23,0.025,0.62,0,0,0,0,7,-11.700000000000001,0,0,0,0,0.302,44.59,144.61,0.9,0.24,887,0.30000000000000004,255,2.7,0.0000,0.0000 +2012,1,15,10,30,-1,1.24,0.026000000000000002,0.62,0,0,0,0,4,-11.9,0,0,0,0,0.305,43.33,132.3,0.9,0.24,887,0.30000000000000004,257,3,0.0000,0.0000 +2012,1,15,11,30,-0.4,1.23,0.028,0.62,0,0,0,0,8,-12,0,0,0,0,0.308,41.09,119.92,0.91,0.24,887,0.30000000000000004,258,3.4000000000000004,0.0000,0.0000 +2012,1,15,12,30,0,1.25,0.028,0.62,0,0,0,0,7,-12.100000000000001,0,0,0,0,0.31,39.85,107.72,0.91,0.24,887,0.4,259,3.7,0.0000,0.0000 +2012,1,15,13,30,0.4,1.27,0.027,0.62,0,0,0,0,8,-12,0,0,0,0,0.312,38.94,95.91,0.91,0.24,887,0.4,259,4,0.0000,0.0000 +2012,1,15,14,30,2.2,1.29,0.027,0.62,26,519,75,7,4,-12,37,0,7,37,0.313,34.28,84.61,0.91,0.24,887,0.5,257,4.5,0.0000,0.0000 +2012,1,15,15,30,5.5,1.29,0.026000000000000002,0.62,47,803,261,0,3,-11.9,161,76,0,181,0.312,27.41,74.52,0.9,0.24,887,0.6000000000000001,253,4.5,8.8886,6.8367 +2012,1,15,16,30,9.8,1.29,0.024,0.62,56,920,433,0,1,-11.200000000000001,56,920,0,433,0.309,21.61,65.85,0.89,0.24,886,0.6000000000000001,251,5,22.9480,17.8491 +2012,1,15,17,30,13.9,1.29,0.023,0.62,62,975,559,0,1,-11.200000000000001,62,975,0,559,0.303,16.43,59.34,0.89,0.24,885,0.6000000000000001,255,6.2,30.9360,24.1708 +2012,1,15,18,30,16.400000000000002,1.28,0.023,0.62,64,997,625,0,0,-11,64,997,0,625,0.298,14.21,55.79,0.89,0.24,884,0.6000000000000001,257,7,35.2370,27.5773 +2012,1,15,19,30,17.6,1.27,0.024,0.62,65,996,626,0,0,-10.4,65,996,0,626,0.294,13.8,55.76,0.9,0.24,883,0.6000000000000001,256,7.4,35.2984,27.6257 +2012,1,15,20,30,17.900000000000002,1.26,0.025,0.62,63,966,557,0,0,-10.100000000000001,63,966,0,557,0.293,13.86,59.27,0.9,0.24,883,0.7000000000000001,255,7.4,30.8376,24.0948 +2012,1,15,21,30,17.5,1.25,0.023,0.62,56,917,433,0,0,-9.700000000000001,56,917,0,433,0.292,14.69,65.75,0.9,0.24,882,0.7000000000000001,253,6.5,22.9656,17.8644 +2012,1,15,22,30,14.9,1.27,0.024,0.62,46,798,261,0,0,-8.1,46,798,0,261,0.291,19.61,74.4,0.91,0.24,882,0.8,250,4.6000000000000005,12.8311,9.8712 +2012,1,15,23,30,11.9,1.25,0.03,0.62,27,489,74,0,0,-5.7,27,489,0,74,0.29,28.87,84.48,0.92,0.24,882,0.9,250,3.5,0.0000,0.0000 +2012,1,16,0,30,11,1.24,0.033,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.289,32.9,95.76,0.93,0.23,882,0.9,252,3.9000000000000004,0.0000,0.0000 +2012,1,16,1,30,10.600000000000001,1.26,0.033,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.28800000000000003,36.04,107.56,0.93,0.23,882,1,252,4.2,0.0000,0.0000 +2012,1,16,2,30,9.9,1.29,0.031,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.28800000000000003,40.09,119.75,0.92,0.23,883,1.1,250,4.4,0.0000,0.0000 +2012,1,16,3,30,9.200000000000001,1.32,0.028,0.62,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.28700000000000003,43.980000000000004,132.13,0.92,0.23,883,1.2000000000000002,245,4.7,0.0000,0.0000 +2012,1,16,4,30,8.6,1.32,0.029,0.62,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.28600000000000003,47.65,144.43,0.93,0.23,883,1.2000000000000002,242,4.9,0.0000,0.0000 +2012,1,16,5,30,8.1,1.32,0.033,0.62,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.28400000000000003,51.19,156.12,0.93,0.23,883,1.3,243,4.800000000000001,0.0000,0.0000 +2012,1,16,6,30,7.7,1.32,0.034,0.62,0,0,0,0,1,-0.9,0,0,0,0,0.28200000000000003,54.49,165.21,0.93,0.23,883,1.3,244,4.5,0.0000,0.0000 +2012,1,16,7,30,7.6000000000000005,1.3,0.035,0.62,0,0,0,0,7,-0.5,0,0,0,0,0.28,56.32,165.29,0.93,0.23,882,1.4000000000000001,244,4.3,0.0000,0.0000 +2012,1,16,8,30,7.6000000000000005,1.29,0.036000000000000004,0.62,0,0,0,0,4,-0.30000000000000004,0,0,0,0,0.279,57.22,156.27,0.93,0.23,882,1.5,243,4.3,0.0000,0.0000 +2012,1,16,9,30,7.4,1.3,0.034,0.62,0,0,0,0,1,-0.2,0,0,0,0,0.278,58.480000000000004,144.59,0.93,0.23,882,1.5,243,4.3,0.0000,0.0000 +2012,1,16,10,30,7.2,1.31,0.031,0.62,0,0,0,0,0,-0.1,0,0,0,0,0.279,59.86,132.29,0.93,0.23,881,1.5,244,4.3,0.0000,0.0000 +2012,1,16,11,30,6.9,1.32,0.029,0.62,0,0,0,0,4,0.2,0,0,0,0,0.28,62.42,119.9,0.93,0.23,881,1.5,245,4.2,0.0000,0.0000 +2012,1,16,12,30,6.5,1.35,0.027,0.62,0,0,0,0,7,0.6000000000000001,0,0,0,0,0.28,66.18,107.69,0.92,0.23,882,1.5,245,4,0.0000,0.0000 +2012,1,16,13,30,6.7,1.3800000000000001,0.025,0.62,0,0,0,0,7,1.1,0,0,0,0,0.28,67.49,95.88,0.92,0.23,882,1.4000000000000001,245,4.3,0.0000,0.0000 +2012,1,16,14,30,8.6,1.4000000000000001,0.022,0.62,25,495,72,7,7,1.6,42,7,7,43,0.279,61.300000000000004,84.56,0.91,0.23,882,1.3,243,4.800000000000001,0.0000,0.0000 +2012,1,16,15,30,11.9,1.42,0.019,0.62,43,785,254,0,3,2.2,151,140,0,188,0.279,51.28,74.44,0.89,0.23,882,1.3,242,5.5,9.2390,7.1072 +2012,1,16,16,30,15.5,1.43,0.017,0.62,51,899,420,0,1,3,51,899,0,420,0.279,42.96,65.74,0.89,0.23,882,1.3,244,6.9,22.2778,17.3295 +2012,1,16,17,30,17.8,1.43,0.015,0.62,54,950,541,0,3,2.7,306,82,0,348,0.278,36.52,59.2,0.91,0.23,881,1.4000000000000001,245,8.200000000000001,19.2742,15.0603 +2012,1,16,18,30,18.6,1.3,0.029,0.62,68,951,605,0,3,2.3000000000000003,345,116,0,410,0.277,33.77,55.61,0.93,0.23,880,1.5,241,8.9,23.1354,18.1076 +2012,1,16,19,30,18.7,1.22,0.041,0.62,75,936,604,7,2,2.7,254,535,7,556,0.277,34.39,55.57,0.9400000000000001,0.23,879,1.5,240,9.1,31.3798,24.5608 +2012,1,16,20,30,18.400000000000002,1.16,0.05,0.62,76,901,539,7,3,2.9000000000000004,230,546,7,511,0.276,35.69,59.07,0.9400000000000001,0.23,878,1.5,243,8.9,28.3228,22.1322 +2012,1,16,21,30,17.900000000000002,1.1500000000000001,0.046,0.62,67,852,419,0,3,2.7,197,14,0,203,0.277,36.13,65.55,0.93,0.23,878,1.4000000000000001,246,8.3,10.7832,8.3894 +2012,1,16,22,30,16.400000000000002,1.1500000000000001,0.038,0.62,51,751,256,0,4,2.2,20,0,0,20,0.277,38.5,74.2,0.92,0.23,878,1.3,248,7.2,0.9850,0.7580 +2012,1,16,23,30,14.4,1.16,0.031,0.62,27,485,76,0,0,2.1,27,485,0,76,0.276,43.52,84.3,0.91,0.23,879,1.1,246,6.2,0.0000,0.0000 +2012,1,17,0,30,12.9,1.1500000000000001,0.027,0.62,0,0,0,0,0,2,0,0,0,0,0.275,47.42,95.59,0.91,0.23,879,1,245,6.1000000000000005,0.0000,0.0000 +2012,1,17,1,30,12,1.1400000000000001,0.023,0.62,0,0,0,0,0,1.3,0,0,0,0,0.274,47.79,107.39,0.9,0.23,880,0.9,247,6.4,0.0000,0.0000 +2012,1,17,2,30,11,1.16,0.019,0.62,0,0,0,0,0,0,0,0,0,0,0.274,46.660000000000004,119.59,0.89,0.23,881,0.8,251,6.4,0.0000,0.0000 +2012,1,17,3,30,9.9,1.2,0.019,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.274,46.9,131.97,0.89,0.23,881,0.7000000000000001,255,6.1000000000000005,0.0000,0.0000 +2012,1,17,4,30,8.8,1.23,0.02,0.62,0,0,0,0,1,-1.1,0,0,0,0,0.274,49.94,144.27,0.89,0.23,882,0.7000000000000001,261,5.7,0.0000,0.0000 +2012,1,17,5,30,7.9,1.25,0.02,0.62,0,0,0,0,1,-0.9,0,0,0,0,0.274,53.77,155.94,0.89,0.23,883,0.6000000000000001,270,5.5,0.0000,0.0000 +2012,1,17,6,30,7,1.26,0.02,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.274,57.56,165.01,0.89,0.23,883,0.6000000000000001,278,5,0.0000,0.0000 +2012,1,17,7,30,5.9,1.27,0.02,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.274,61.86,165.15,0.89,0.23,884,0.6000000000000001,284,4.3,0.0000,0.0000 +2012,1,17,8,30,5,1.26,0.021,0.62,0,0,0,0,1,-1,0,0,0,0,0.274,65.3,156.21,0.89,0.23,884,0.6000000000000001,289,3.8000000000000003,0.0000,0.0000 +2012,1,17,9,30,4,1.26,0.022,0.62,0,0,0,0,0,-1,0,0,0,0,0.274,69.88,144.57,0.89,0.23,885,0.6000000000000001,294,3.4000000000000004,0.0000,0.0000 +2012,1,17,10,30,3,1.26,0.025,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.275,75.4,132.27,0.9,0.23,886,0.6000000000000001,301,2.9000000000000004,0.0000,0.0000 +2012,1,17,11,30,1.9000000000000001,1.26,0.027,0.62,0,0,0,0,1,-0.9,0,0,0,0,0.275,81.92,119.88,0.9,0.23,886,0.6000000000000001,318,2.5,0.0000,0.0000 +2012,1,17,12,30,0.6000000000000001,1.26,0.03,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.275,89.47,107.67,0.91,0.23,888,0.6000000000000001,167,2.5,0.0000,0.0000 +2012,1,17,13,30,-0.2,1.26,0.031,0.62,0,0,0,0,1,-1.6,0,0,0,0,0.275,90.49,95.83,0.92,0.23,889,0.6000000000000001,18,3.2,0.0000,0.0000 +2012,1,17,14,30,0.1,1.27,0.033,0.62,28,499,76,0,0,-3,28,499,0,76,0.274,79.53,84.49,0.92,0.23,890,0.6000000000000001,38,4.1000000000000005,0.0000,0.0000 +2012,1,17,15,30,1.1,1.28,0.033,0.62,50,794,264,0,4,-4.9,163,83,0,185,0.273,64.26,74.35000000000001,0.92,0.23,891,0.6000000000000001,49,4.1000000000000005,9.0989,7.0006 +2012,1,17,16,30,2.7,1.3,0.033,0.62,62,909,437,0,2,-6.300000000000001,229,280,0,344,0.273,51.4,65.62,0.92,0.23,891,0.6000000000000001,58,3.4000000000000004,18.2633,14.2082 +2012,1,17,17,30,4.7,1.31,0.034,0.62,69,962,564,0,1,-6.7,69,962,0,564,0.274,43.33,59.050000000000004,0.92,0.23,891,0.6000000000000001,70,2.2,31.2638,24.4307 +2012,1,17,18,30,6.7,1.32,0.033,0.62,72,986,631,0,0,-6.4,72,986,0,631,0.274,38.74,55.43,0.92,0.23,891,0.6000000000000001,90,1.5,35.6363,27.8939 +2012,1,17,19,30,8.5,1.31,0.036000000000000004,0.62,73,977,628,0,0,-5.6000000000000005,73,977,0,628,0.273,36.5,55.36,0.92,0.23,890,0.7000000000000001,111,1.3,35.4786,27.7713 +2012,1,17,20,30,9.9,1.27,0.039,0.62,71,950,563,0,0,-4.7,71,950,0,563,0.271,35.44,58.86,0.92,0.23,889,0.7000000000000001,126,1.5,31.2415,24.4157 +2012,1,17,21,30,10.4,1.24,0.03,0.62,61,904,438,0,0,-4.2,61,904,0,438,0.271,35.59,65.34,0.92,0.23,889,0.8,132,2,23.3031,18.1333 +2012,1,17,22,30,8.9,1.23,0.028,0.62,49,796,268,0,0,-4.2,49,796,0,268,0.271,39.49,74.01,0.91,0.23,889,0.8,127,2.3000000000000003,13.2220,10.1787 +2012,1,17,23,30,6,1.24,0.025,0.62,27,532,82,0,0,-3.5,27,532,0,82,0.273,50.65,84.11,0.91,0.23,889,0.7000000000000001,126,2.5,0.0000,0.0000 +2012,1,18,0,30,4,1.24,0.024,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.275,53.980000000000004,95.41,0.91,0.23,890,0.7000000000000001,131,3.2,0.0000,0.0000 +2012,1,18,1,30,2.8000000000000003,1.25,0.024,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.277,55.43,107.23,0.9,0.23,890,0.6000000000000001,137,3.4000000000000004,0.0000,0.0000 +2012,1,18,2,30,1.6,1.27,0.024,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.279,56.5,119.43,0.9,0.23,890,0.6000000000000001,143,3.4000000000000004,0.0000,0.0000 +2012,1,18,3,30,0.5,1.3,0.024,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.281,57.620000000000005,131.81,0.9,0.23,890,0.6000000000000001,149,3.3000000000000003,0.0000,0.0000 +2012,1,18,4,30,-0.5,1.32,0.024,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.28200000000000003,59.230000000000004,144.1,0.9,0.23,890,0.6000000000000001,154,3.2,0.0000,0.0000 +2012,1,18,5,30,-1.4000000000000001,1.34,0.025,0.62,0,0,0,0,0,-8,0,0,0,0,0.28300000000000003,60.88,155.76,0.9,0.23,890,0.6000000000000001,159,3,0.0000,0.0000 +2012,1,18,6,30,-2.1,1.35,0.025,0.62,0,0,0,0,1,-8.4,0,0,0,0,0.28300000000000003,62.04,164.8,0.89,0.23,890,0.6000000000000001,169,2.8000000000000003,0.0000,0.0000 +2012,1,18,7,30,-2.7,1.35,0.024,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.28400000000000003,63.300000000000004,165.01,0.89,0.23,890,0.6000000000000001,186,2.5,0.0000,0.0000 +2012,1,18,8,30,-3.1,1.35,0.024,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.28500000000000003,65.33,156.15,0.89,0.23,890,0.6000000000000001,204,2.3000000000000003,0.0000,0.0000 +2012,1,18,9,30,-3.3000000000000003,1.34,0.023,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.28700000000000003,68.52,144.53,0.89,0.23,890,0.5,220,2.4000000000000004,0.0000,0.0000 +2012,1,18,10,30,-3.4000000000000004,1.32,0.023,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.289,72.71000000000001,132.24,0.89,0.23,889,0.5,234,2.5,0.0000,0.0000 +2012,1,18,11,30,-3.3000000000000003,1.29,0.023,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.291,76.29,119.85000000000001,0.89,0.23,889,0.5,242,2.7,0.0000,0.0000 +2012,1,18,12,30,-3.1,1.25,0.023,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.293,78.8,107.63,0.9,0.23,889,0.5,245,2.9000000000000004,0.0000,0.0000 +2012,1,18,13,30,-2.2,1.22,0.021,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.294,75.92,95.78,0.9,0.23,889,0.5,245,3.4000000000000004,0.0000,0.0000 +2012,1,18,14,30,0.30000000000000004,1.19,0.021,0.62,26,545,79,0,1,-5.6000000000000005,26,545,0,79,0.294,64.35,84.42,0.9,0.23,889,0.5,241,4.1000000000000005,0.0000,0.0000 +2012,1,18,15,30,4.1000000000000005,1.18,0.019,0.62,44,830,269,0,4,-5.4,162,43,0,174,0.295,50.06,74.26,0.89,0.23,889,0.5,239,4.1000000000000005,8.5649,6.5907 +2012,1,18,16,30,8.8,1.18,0.018000000000000002,0.62,53,941,443,0,7,-4.9,200,258,0,306,0.296,37.46,65.5,0.89,0.23,889,0.5,251,4.7,16.2606,12.6515 +2012,1,18,17,30,12.9,1.19,0.017,0.62,57,985,566,0,7,-5.800000000000001,271,189,0,368,0.297,26.82,58.89,0.89,0.23,888,0.6000000000000001,268,5.6000000000000005,20.4173,15.9562 +2012,1,18,18,30,15.200000000000001,1.2,0.018000000000000002,0.62,61,1006,634,0,6,-7.5,292,152,0,379,0.298,20.240000000000002,55.24,0.89,0.23,887,0.6000000000000001,273,6.1000000000000005,21.4235,16.7703 +2012,1,18,19,30,16.2,1.2,0.016,0.62,58,1009,635,0,6,-8.700000000000001,262,331,0,451,0.298,17.27,55.15,0.88,0.23,885,0.6000000000000001,271,6.4,25.5041,19.9653 +2012,1,18,20,30,16.6,1.18,0.015,0.62,55,983,566,0,4,-9.3,324,154,0,404,0.299,16.03,58.65,0.88,0.23,884,0.7000000000000001,267,6.5,22.4445,17.5425 +2012,1,18,21,30,16.400000000000002,1.16,0.015,0.62,50,934,443,0,4,-9.700000000000001,257,142,0,317,0.297,15.81,65.13,0.87,0.23,884,0.7000000000000001,263,6,16.8920,13.1468 +2012,1,18,22,30,14,1.16,0.016,0.62,42,829,273,0,3,-9.5,159,153,0,202,0.294,18.75,73.81,0.88,0.23,883,0.7000000000000001,258,4.3,9.9841,7.6887 +2012,1,18,23,30,10.600000000000001,1.1400000000000001,0.019,0.62,26,556,85,0,3,-8,57,30,0,60,0.291,26.32,83.93,0.88,0.23,883,0.7000000000000001,256,3.3000000000000003,0.0000,0.0000 +2012,1,19,0,30,8.9,1.1,0.02,0.62,0,0,0,0,8,-8.3,0,0,0,0,0.28800000000000003,28.71,95.24,0.88,0.23,883,0.7000000000000001,262,3.4000000000000004,0.0000,0.0000 +2012,1,19,1,30,8.1,1.05,0.02,0.62,0,0,0,0,4,-8.5,0,0,0,0,0.28500000000000003,29.990000000000002,107.06,0.88,0.23,883,0.7000000000000001,269,3.6,0.0000,0.0000 +2012,1,19,2,30,7.5,1.06,0.02,0.62,0,0,0,0,4,-8.4,0,0,0,0,0.28300000000000003,31.44,119.27,0.88,0.23,883,0.8,270,3.8000000000000003,0.0000,0.0000 +2012,1,19,3,30,6.9,1.08,0.02,0.62,0,0,0,0,4,-8.3,0,0,0,0,0.28,33.04,131.65,0.89,0.23,882,0.8,270,4.1000000000000005,0.0000,0.0000 +2012,1,19,4,30,6.5,1.07,0.02,0.62,0,0,0,0,4,-8.1,0,0,0,0,0.279,34.47,143.94,0.89,0.23,882,0.8,271,4.5,0.0000,0.0000 +2012,1,19,5,30,6.1000000000000005,1.06,0.019,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.278,35.99,155.57,0.89,0.23,882,0.9,275,4.800000000000001,0.0000,0.0000 +2012,1,19,6,30,6,1.08,0.017,0.62,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.277,36.58,164.58,0.89,0.23,882,0.9,280,4.9,0.0000,0.0000 +2012,1,19,7,30,6,1.1,0.015,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.277,36.6,164.85,0.89,0.23,882,0.9,284,5.1000000000000005,0.0000,0.0000 +2012,1,19,8,30,6.1000000000000005,1.12,0.014,0.62,0,0,0,0,4,-7.800000000000001,0,0,0,0,0.276,36.11,156.08,0.89,0.23,881,0.9,285,5.300000000000001,0.0000,0.0000 +2012,1,19,9,30,6.2,1.1300000000000001,0.014,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.275,35.68,144.49,0.88,0.23,881,0.9,285,5.4,0.0000,0.0000 +2012,1,19,10,30,6.2,1.12,0.014,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.274,35.7,132.21,0.88,0.23,881,0.9,287,5.4,0.0000,0.0000 +2012,1,19,11,30,6,1.11,0.014,0.62,0,0,0,0,8,-7.800000000000001,0,0,0,0,0.274,36.35,119.82000000000001,0.88,0.23,881,1,290,5.2,0.0000,0.0000 +2012,1,19,12,30,5.7,1.11,0.014,0.62,0,0,0,0,8,-7.800000000000001,0,0,0,0,0.274,37.230000000000004,107.59,0.88,0.23,881,1,294,4.9,0.0000,0.0000 +2012,1,19,13,30,6.2,1.1,0.013000000000000001,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.274,36.07,95.73,0.88,0.23,882,1,298,4.800000000000001,0.0000,0.0000 +2012,1,19,14,30,8.200000000000001,1.08,0.013000000000000001,0.62,23,536,76,0,0,-7.7,23,536,0,76,0.274,31.69,84.36,0.88,0.23,882,1.1,301,4.9,0.0000,0.0000 +2012,1,19,15,30,11.4,1.06,0.014,0.62,40,807,260,0,1,-7.300000000000001,40,807,0,260,0.274,26.36,74.16,0.88,0.23,882,1.1,302,4.6000000000000005,12.8098,9.8588 +2012,1,19,16,30,15.3,1.04,0.014,0.62,49,914,430,7,3,-6.5,177,561,7,410,0.274,21.77,65.37,0.88,0.23,882,1.1,310,4.4,21.8085,16.9699 +2012,1,19,17,30,18.5,1.03,0.014,0.62,54,965,555,0,1,-6,54,965,0,555,0.273,18.35,58.730000000000004,0.89,0.23,882,1.1,318,4,30.8198,24.0877 +2012,1,19,18,30,20.200000000000003,1.09,0.018000000000000002,0.62,60,982,623,0,1,-4.6000000000000005,60,982,0,623,0.273,18.41,55.050000000000004,0.89,0.23,881,1.1,309,3.3000000000000003,35.2472,27.5935 +2012,1,19,19,30,21.1,1.09,0.018000000000000002,0.62,60,982,625,0,0,-3.6,60,982,0,625,0.273,18.77,54.94,0.89,0.23,880,1.1,293,3.1,35.3783,27.6974 +2012,1,19,20,30,21.3,1.1,0.019,0.62,59,961,562,0,0,-2.9000000000000004,59,961,0,562,0.274,19.56,58.43,0.89,0.23,879,1.1,280,3.1,31.2599,24.4353 +2012,1,19,21,30,20.6,1,0.015,0.62,50,921,441,0,0,-2.3000000000000003,50,921,0,441,0.275,21.25,64.92,0.88,0.23,879,1,270,2.6,23.5362,18.3211 +2012,1,19,22,30,17.5,0.96,0.016,0.62,43,821,274,0,0,0.2,43,821,0,274,0.275,31.060000000000002,73.61,0.89,0.23,879,0.9,259,1.7000000000000002,13.5678,10.4519 +2012,1,19,23,30,13.600000000000001,0.93,0.018000000000000002,0.62,27,554,87,0,0,1.4000000000000001,27,554,0,87,0.276,43.42,83.74,0.89,0.23,879,0.9,248,1.5,0.0000,0.0000 +2012,1,20,0,30,11.5,0.92,0.02,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.277,43.85,95.06,0.9,0.23,880,0.9,242,1.6,0.0000,0.0000 +2012,1,20,1,30,10.200000000000001,0.96,0.021,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.278,46.480000000000004,106.89,0.9,0.23,880,0.8,244,1.7000000000000002,0.0000,0.0000 +2012,1,20,2,30,9.200000000000001,1.03,0.021,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.278,48.07,119.10000000000001,0.9,0.23,880,0.8,252,1.7000000000000002,0.0000,0.0000 +2012,1,20,3,30,8.3,1.08,0.019,0.62,0,0,0,0,1,-1.7000000000000002,0,0,0,0,0.278,49.28,131.49,0.89,0.23,880,0.7000000000000001,263,1.8,0.0000,0.0000 +2012,1,20,4,30,7.6000000000000005,1.08,0.017,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.277,49.9,143.77,0.88,0.23,879,0.7000000000000001,274,1.9000000000000001,0.0000,0.0000 +2012,1,20,5,30,7,1.04,0.016,0.62,0,0,0,0,0,-2.7,0,0,0,0,0.276,50.21,155.38,0.88,0.23,879,0.7000000000000001,280,2.2,0.0000,0.0000 +2012,1,20,6,30,6.6000000000000005,0.99,0.014,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.276,50.13,164.36,0.87,0.23,879,0.8,284,2.6,0.0000,0.0000 +2012,1,20,7,30,6.4,0.96,0.014,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.276,49.64,164.68,0.87,0.23,878,0.8,285,3.2,0.0000,0.0000 +2012,1,20,8,30,6.2,0.96,0.013000000000000001,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.276,49.4,156,0.87,0.23,878,0.7000000000000001,284,3.6,0.0000,0.0000 +2012,1,20,9,30,5.9,0.99,0.013000000000000001,0.62,0,0,0,0,1,-3.8000000000000003,0,0,0,0,0.278,49.85,144.45000000000002,0.87,0.23,877,0.7000000000000001,283,3.7,0.0000,0.0000 +2012,1,20,10,30,5.7,1.06,0.012,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.279,50.4,132.18,0.86,0.23,877,0.6000000000000001,281,3.7,0.0000,0.0000 +2012,1,20,11,30,5.5,1.1300000000000001,0.012,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.279,50.870000000000005,119.78,0.86,0.23,877,0.6000000000000001,280,3.8000000000000003,0.0000,0.0000 +2012,1,20,12,30,5.300000000000001,1.2,0.011,0.62,0,0,0,0,0,-4,0,0,0,0,0.279,51.11,107.54,0.86,0.23,877,0.6000000000000001,281,4.1000000000000005,0.0000,0.0000 +2012,1,20,13,30,5.800000000000001,1.27,0.011,0.62,0,0,0,0,1,-4.2,0,0,0,0,0.279,48.69,95.67,0.85,0.23,878,0.5,285,4.7,0.0000,0.0000 +2012,1,20,14,30,7.9,1.29,0.011,0.62,22,589,81,0,1,-4.4,22,589,0,81,0.279,41.5,84.28,0.85,0.23,878,0.5,287,5.300000000000001,0.0000,0.0000 +2012,1,20,15,30,11.5,1.26,0.012,0.62,39,863,275,0,3,-4.5,167,91,0,192,0.28,32.3,74.06,0.85,0.23,879,0.4,286,5.5,9.4681,7.2882 +2012,1,20,16,30,15.600000000000001,1.22,0.013000000000000001,0.62,48,964,452,0,1,-4.800000000000001,48,964,0,452,0.28,24.25,65.23,0.85,0.23,879,0.4,289,6.4,24.0678,18.7301 +2012,1,20,17,30,18.400000000000002,1.19,0.013000000000000001,0.62,53,1024,587,0,1,-7.5,53,1024,0,587,0.281,16.53,58.56,0.86,0.23,878,0.30000000000000004,290,7.300000000000001,32.6273,25.5025 +2012,1,20,18,30,19.6,1.2,0.016,0.62,59,1041,658,0,0,-9.600000000000001,59,1041,0,658,0.28,13.030000000000001,54.85,0.86,0.23,878,0.30000000000000004,287,7.5,37.2617,29.1729 +2012,1,20,19,30,20.1,1.16,0.018000000000000002,0.62,61,1027,654,0,0,-11.3,61,1027,0,654,0.28,11.040000000000001,54.72,0.87,0.23,877,0.4,286,7.5,37.0573,29.0143 +2012,1,20,20,30,20,1.11,0.02,0.62,60,995,585,0,8,-12.3,201,561,0,497,0.279,10.19,58.2,0.88,0.23,878,0.5,289,7.1000000000000005,27.6789,21.6386 +2012,1,20,21,30,19.1,1.07,0.023,0.62,57,934,456,0,8,-12.700000000000001,194,388,0,360,0.28,10.46,64.7,0.89,0.23,878,0.6000000000000001,295,6,19.2443,14.9829 +2012,1,20,22,30,16.2,1.04,0.025,0.62,48,825,284,0,6,-11.4,151,45,0,164,0.28,14,73.4,0.89,0.23,879,0.6000000000000001,301,4,8.1367,6.2702 +2012,1,20,23,30,12.100000000000001,1.04,0.026000000000000002,0.62,29,566,93,0,7,-7.2,46,175,0,65,0.281,25.25,83.56,0.89,0.23,879,0.5,308,2.4000000000000004,0.0000,0.0000 +2012,1,21,0,30,9.8,1.03,0.026000000000000002,0.62,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.281,31.6,94.88,0.88,0.23,880,0.5,320,2.1,0.0000,0.0000 +2012,1,21,1,30,8.700000000000001,1.04,0.026000000000000002,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.281,35.96,106.72,0.88,0.23,881,0.5,166,2,0.0000,0.0000 +2012,1,21,2,30,7.300000000000001,1.04,0.027,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.28200000000000003,42.34,118.94,0.88,0.23,882,0.5,22,2.1,0.0000,0.0000 +2012,1,21,3,30,5.9,1.05,0.027,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.28400000000000003,50.35,131.32,0.88,0.23,883,0.6000000000000001,53,2.5,0.0000,0.0000 +2012,1,21,4,30,4.6000000000000005,1.05,0.026000000000000002,0.62,0,0,0,0,0,-3,0,0,0,0,0.28500000000000003,57.96,143.6,0.88,0.23,884,0.6000000000000001,69,2.8000000000000003,0.0000,0.0000 +2012,1,21,5,30,3.4000000000000004,1.07,0.025,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.28700000000000003,64.02,155.19,0.87,0.23,885,0.6000000000000001,76,2.7,0.0000,0.0000 +2012,1,21,6,30,2.1,1.1,0.024,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.28700000000000003,69.38,164.13,0.87,0.23,885,0.6000000000000001,79,2.3000000000000003,0.0000,0.0000 +2012,1,21,7,30,1,1.12,0.023,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.28800000000000003,73.41,164.51,0.87,0.23,886,0.6000000000000001,80,1.9000000000000001,0.0000,0.0000 +2012,1,21,8,30,-0.1,1.12,0.021,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.28800000000000003,77.52,155.91,0.87,0.23,886,0.6000000000000001,77,1.4000000000000001,0.0000,0.0000 +2012,1,21,9,30,-0.9,1.1300000000000001,0.02,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.28800000000000003,80.16,144.39000000000001,0.88,0.23,885,0.6000000000000001,72,1.2000000000000002,0.0000,0.0000 +2012,1,21,10,30,-1.4000000000000001,1.1500000000000001,0.019,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.28700000000000003,81.46000000000001,132.13,0.88,0.23,885,0.6000000000000001,68,1,0.0000,0.0000 +2012,1,21,11,30,-1.7000000000000002,1.17,0.018000000000000002,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.28700000000000003,82.13,119.74000000000001,0.88,0.23,885,0.6000000000000001,70,0.9,0.0000,0.0000 +2012,1,21,12,30,-1.9000000000000001,1.18,0.018000000000000002,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.28700000000000003,82.69,107.49000000000001,0.88,0.23,884,0.6000000000000001,85,0.9,0.0000,0.0000 +2012,1,21,13,30,-1.1,1.19,0.017,0.62,0,0,0,0,1,-4.5,0,0,0,0,0.28600000000000003,77.77,95.60000000000001,0.88,0.23,884,0.6000000000000001,132,1.2000000000000002,0.0000,0.0000 +2012,1,21,14,30,1.2000000000000002,1.19,0.017,0.62,25,560,82,0,1,-4.5,25,560,0,82,0.28500000000000003,65.87,84.19,0.88,0.23,884,0.6000000000000001,181,2.1,0.0000,0.0000 +2012,1,21,15,30,4.5,1.2,0.017,0.62,43,833,273,0,1,-4.3,43,833,0,273,0.28400000000000003,52.94,73.94,0.88,0.23,884,0.6000000000000001,197,3.4000000000000004,13.4773,10.3765 +2012,1,21,16,30,8.3,1.21,0.016,0.62,51,934,444,0,1,-3.9000000000000004,51,934,0,444,0.281,41.95,65.09,0.87,0.23,884,0.7000000000000001,201,4.5,23.6665,18.4200 +2012,1,21,17,30,11.700000000000001,1.21,0.017,0.62,57,983,573,0,1,-3.5,57,983,0,573,0.278,34.52,58.38,0.88,0.23,883,0.7000000000000001,203,5.4,31.8804,24.9210 +2012,1,21,18,30,14.3,1.22,0.02,0.62,62,1001,642,0,0,-3.3000000000000003,62,1001,0,642,0.275,29.45,54.64,0.88,0.23,881,0.7000000000000001,204,6.2,36.3906,28.4932 +2012,1,21,19,30,16.1,1.22,0.023,0.62,65,1005,649,0,0,-3.7,65,1005,0,649,0.272,25.55,54.49,0.88,0.23,880,0.6000000000000001,206,6.7,36.8124,28.8252 +2012,1,21,20,30,17.1,1.22,0.025,0.62,64,983,585,0,0,-4.5,64,983,0,585,0.271,22.44,57.97,0.88,0.23,878,0.6000000000000001,209,7,32.6199,25.5042 +2012,1,21,21,30,17.1,1.22,0.025,0.62,58,934,460,0,0,-5.4,58,934,0,460,0.27,20.95,64.48,0.88,0.23,877,0.6000000000000001,211,6.6000000000000005,24.6292,19.1788 +2012,1,21,22,30,15.3,1.22,0.025,0.62,48,831,288,0,0,-5.9,48,831,0,288,0.27,22.79,73.2,0.88,0.23,876,0.6000000000000001,206,5.4,14.3153,11.0351 +2012,1,21,23,30,12.5,1.2,0.023,0.62,29,579,95,0,0,-5.6000000000000005,29,579,0,95,0.269,27.79,83.37,0.88,0.23,875,0.6000000000000001,198,4.6000000000000005,0.0000,0.0000 +2012,1,22,0,30,10.9,1.19,0.021,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.268,29.55,94.7,0.87,0.23,875,0.7000000000000001,198,4.9,0.0000,0.0000 +2012,1,22,1,30,10.100000000000001,1.18,0.02,0.62,0,0,0,0,7,-7,0,0,0,0,0.268,29.39,106.55,0.88,0.23,875,0.8,205,5,0.0000,0.0000 +2012,1,22,2,30,9.4,1.17,0.021,0.62,0,0,0,0,8,-7.4,0,0,0,0,0.269,29.76,118.77,0.88,0.23,874,1,212,5,0.0000,0.0000 +2012,1,22,3,30,9.1,1.17,0.021,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.271,29.48,131.16,0.89,0.23,874,1.1,215,5.2,0.0000,0.0000 +2012,1,22,4,30,8.8,1.18,0.022,0.62,0,0,0,0,1,-8,0,0,0,0,0.272,29.59,143.42000000000002,0.89,0.23,874,1.1,218,5.300000000000001,0.0000,0.0000 +2012,1,22,5,30,8.5,1.18,0.023,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.272,30.1,155,0.89,0.23,873,1,222,5.300000000000001,0.0000,0.0000 +2012,1,22,6,30,8.5,1.1400000000000001,0.023,0.62,0,0,0,0,4,-7.9,0,0,0,0,0.272,30.42,163.9,0.89,0.23,873,0.9,227,5.6000000000000005,0.0000,0.0000 +2012,1,22,7,30,8.3,1.09,0.023,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.272,32.18,164.33,0.89,0.23,872,0.9,232,5.7,0.0000,0.0000 +2012,1,22,8,30,7.5,1.03,0.023,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.272,36.46,155.81,0.89,0.23,872,0.8,235,5.300000000000001,0.0000,0.0000 +2012,1,22,9,30,7,0.93,0.023,0.62,0,0,0,0,3,-5.7,0,0,0,0,0.274,39.97,144.33,0.9,0.23,871,0.8,241,5.5,0.0000,0.0000 +2012,1,22,10,30,7.2,0.78,0.028,0.62,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.278,41.28,132.08,0.9,0.23,871,0.7000000000000001,254,6.4,0.0000,0.0000 +2012,1,22,11,30,7.4,0.66,0.035,0.62,0,0,0,0,0,-4,0,0,0,0,0.28400000000000003,44.09,119.69,0.91,0.23,871,0.6000000000000001,266,7.300000000000001,0.0000,0.0000 +2012,1,22,12,30,7.4,0.68,0.033,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.296,46.94,107.43,0.9,0.23,872,0.5,271,8,0.0000,0.0000 +2012,1,22,13,30,7.7,0.75,0.027,0.62,0,0,0,0,1,-3.7,0,0,0,0,0.308,44.19,95.53,0.89,0.23,872,0.5,269,9,0.0000,0.0000 +2012,1,22,14,30,8.8,0.71,0.025,0.62,28,536,83,0,0,-5.5,28,536,0,83,0.313,35.92,84.10000000000001,0.89,0.23,872,0.5,268,10.600000000000001,0.0000,0.0000 +2012,1,22,15,30,10.3,0.65,0.027,0.62,49,816,276,0,3,-6.7,169,90,0,194,0.313,29.61,73.83,0.9,0.23,873,0.5,274,12,9.5869,7.3826 +2012,1,22,16,30,11.9,0.72,0.026000000000000002,0.62,59,922,450,0,3,-7.2,248,224,0,342,0.312,25.650000000000002,64.94,0.9,0.23,873,0.6000000000000001,282,12.3,18.2499,14.2059 +2012,1,22,17,30,13.5,0.77,0.026000000000000002,0.62,65,975,579,0,3,-8.4,271,411,0,488,0.31,21.11,58.2,0.9,0.23,874,0.6000000000000001,290,11.8,27.1776,21.2467 +2012,1,22,18,30,14.9,0.89,0.029,0.62,70,995,649,7,3,-9.600000000000001,248,659,7,631,0.306,17.53,54.42,0.9,0.23,874,0.6000000000000001,299,11,35.8028,28.0353 +2012,1,22,19,30,15.700000000000001,0.92,0.026000000000000002,0.62,68,1000,652,0,1,-10.4,68,1000,0,652,0.3,15.65,54.26,0.89,0.23,875,0.6000000000000001,306,9.9,37.0209,28.9909 +2012,1,22,20,30,15.9,0.92,0.023,0.62,63,992,593,0,0,-10.600000000000001,63,992,0,593,0.294,15.14,57.74,0.89,0.23,875,0.5,310,8.3,33.1063,25.8873 +2012,1,22,21,30,15.3,0.9400000000000001,0.022,0.62,57,946,468,0,0,-10.700000000000001,57,946,0,468,0.29,15.620000000000001,64.26,0.89,0.23,876,0.5,311,6.300000000000001,25.0973,19.5466 +2012,1,22,22,30,12.8,0.92,0.021,0.62,47,847,295,0,0,-10.4,47,847,0,295,0.28700000000000003,18.85,72.99,0.89,0.23,877,0.5,305,3.9000000000000004,14.6920,11.3293 +2012,1,22,23,30,9.3,0.9,0.021,0.62,29,595,100,0,0,-7.300000000000001,29,595,0,100,0.28500000000000003,30.35,83.17,0.89,0.23,879,0.5,291,2.3000000000000003,0.0000,0.0000 +2012,1,23,0,30,7.2,0.89,0.021,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.28300000000000003,33.47,94.51,0.89,0.23,880,0.4,280,2.2,0.0000,0.0000 +2012,1,23,1,30,5.7,0.9,0.021,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.28200000000000003,35.2,106.37,0.9,0.23,882,0.4,279,2.5,0.0000,0.0000 +2012,1,23,2,30,4.4,0.92,0.022,0.62,0,0,0,0,0,-9,0,0,0,0,0.28200000000000003,37.13,118.61,0.9,0.23,882,0.4,283,2.5,0.0000,0.0000 +2012,1,23,3,30,3.4000000000000004,0.9500000000000001,0.022,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.28200000000000003,39.59,130.99,0.9,0.23,883,0.4,285,2.3000000000000003,0.0000,0.0000 +2012,1,23,4,30,2.4000000000000004,1,0.023,0.62,0,0,0,0,7,-9,0,0,0,0,0.28200000000000003,42.77,143.25,0.91,0.23,883,0.4,287,2.2,0.0000,0.0000 +2012,1,23,5,30,1.6,1.03,0.025,0.62,0,0,0,0,7,-9,0,0,0,0,0.28200000000000003,45.2,154.8,0.91,0.23,883,0.5,288,2.2,0.0000,0.0000 +2012,1,23,6,30,1.1,1.05,0.027,0.62,0,0,0,0,7,-9,0,0,0,0,0.28300000000000003,46.9,163.67000000000002,0.92,0.23,884,0.5,289,2.1,0.0000,0.0000 +2012,1,23,7,30,0.6000000000000001,1.07,0.028,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.28300000000000003,48.81,164.14000000000001,0.92,0.23,884,0.6000000000000001,292,2,0.0000,0.0000 +2012,1,23,8,30,0,1.09,0.026000000000000002,0.62,0,0,0,0,7,-9,0,0,0,0,0.28200000000000003,50.88,155.71,0.92,0.23,884,0.6000000000000001,295,2,0.0000,0.0000 +2012,1,23,9,30,-0.5,1.09,0.025,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.28200000000000003,52.04,144.27,0.92,0.23,884,0.6000000000000001,297,2,0.0000,0.0000 +2012,1,23,10,30,-1.1,1.1,0.022,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.28200000000000003,53.75,132.03,0.91,0.23,884,0.6000000000000001,297,1.8,0.0000,0.0000 +2012,1,23,11,30,-1.9000000000000001,1.09,0.019,0.62,0,0,0,0,7,-9.700000000000001,0,0,0,0,0.28200000000000003,55.370000000000005,119.63,0.9,0.23,884,0.6000000000000001,294,1.7000000000000002,0.0000,0.0000 +2012,1,23,12,30,-2.4000000000000004,1.09,0.017,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.28300000000000003,55.72,107.37,0.89,0.23,884,0.5,289,1.7000000000000002,0.0000,0.0000 +2012,1,23,13,30,-1.5,1.08,0.016,0.62,0,0,0,0,1,-10.4,0,0,0,0,0.28200000000000003,50.7,95.45,0.89,0.23,885,0.5,283,2.1,0.0000,0.0000 +2012,1,23,14,30,1.3,1.08,0.016,0.62,25,579,86,0,1,-10.4,25,579,0,86,0.28200000000000003,41.32,84,0.88,0.23,885,0.5,273,2.8000000000000003,0.0000,0.0000 +2012,1,23,15,30,4.9,1.1,0.016,0.62,43,846,280,0,3,-10.5,169,95,0,196,0.28400000000000003,31.94,73.7,0.88,0.23,885,0.5,244,2.8000000000000003,9.6974,7.4692 +2012,1,23,16,30,9.5,1.1,0.016,0.62,52,960,461,7,2,-10.3,181,648,7,457,0.28300000000000003,23.63,64.79,0.88,0.23,885,0.4,226,3.4000000000000004,24.4134,19.0060 +2012,1,23,17,30,13.200000000000001,1.1,0.016,0.62,57,1010,592,0,7,-13.9,213,518,0,488,0.28,13.85,58.01,0.88,0.23,884,0.4,233,4.6000000000000005,27.2053,21.2703 +2012,1,23,18,30,14.9,1.1,0.021,0.62,64,1015,658,0,0,-14.8,64,1015,0,658,0.277,11.56,54.2,0.89,0.23,883,0.5,238,5.1000000000000005,37.3716,29.2662 +2012,1,23,19,30,15.700000000000001,1.1,0.025,0.62,67,1011,661,0,0,-14.8,67,1011,0,661,0.275,10.96,54.02,0.89,0.23,882,0.5,242,5.2,37.5720,29.4251 +2012,1,23,20,30,15.9,1.1,0.028,0.62,67,987,597,0,0,-14.5,67,987,0,597,0.276,11.08,57.5,0.9,0.23,881,0.5,242,5,33.3716,26.0977 +2012,1,23,21,30,15.5,1.09,0.028,0.62,61,931,468,0,0,-13.9,61,931,0,468,0.275,11.91,64.03,0.9,0.23,881,0.6000000000000001,239,4.1000000000000005,25.1384,19.5821 +2012,1,23,22,30,12.600000000000001,1.06,0.026000000000000002,0.62,49,832,296,0,0,-12.200000000000001,49,832,0,296,0.274,16.55,72.78,0.89,0.23,881,0.6000000000000001,227,2.5,14.7706,11.3937 +2012,1,23,23,30,8.6,1.04,0.024,0.62,30,587,102,0,0,-6.800000000000001,30,587,0,102,0.274,33.01,82.98,0.89,0.23,881,0.6000000000000001,210,1.6,0.0000,0.0000 +2012,1,24,0,30,6.6000000000000005,1.04,0.023,0.62,0,0,0,0,1,-8,0,0,0,0,0.274,34.56,94.33,0.89,0.23,881,0.6000000000000001,195,1.7000000000000002,0.0000,0.0000 +2012,1,24,1,30,5.800000000000001,1.06,0.024,0.62,0,0,0,0,1,-8.3,0,0,0,0,0.273,35.51,106.2,0.89,0.23,882,0.6000000000000001,187,1.8,0.0000,0.0000 +2012,1,24,2,30,5.300000000000001,1.07,0.026000000000000002,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.272,36.02,118.44,0.9,0.23,882,0.7000000000000001,185,1.9000000000000001,0.0000,0.0000 +2012,1,24,3,30,5,1.09,0.028,0.62,0,0,0,0,6,-8.5,0,0,0,0,0.273,36.93,130.82,0.9,0.23,881,0.7000000000000001,186,2,0.0000,0.0000 +2012,1,24,4,30,4.6000000000000005,1.1,0.031,0.62,0,0,0,0,7,-8.3,0,0,0,0,0.274,38.58,143.08,0.91,0.23,881,0.7000000000000001,190,2,0.0000,0.0000 +2012,1,24,5,30,4.2,1.11,0.032,0.62,0,0,0,0,7,-8,0,0,0,0,0.275,40.6,154.61,0.91,0.23,881,0.7000000000000001,193,2,0.0000,0.0000 +2012,1,24,6,30,3.7,1.12,0.031,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.276,42.79,163.43,0.9,0.23,880,0.7000000000000001,195,1.9000000000000001,0.0000,0.0000 +2012,1,24,7,30,3,1.1300000000000001,0.029,0.62,0,0,0,0,1,-7.800000000000001,0,0,0,0,0.278,45.01,163.94,0.9,0.23,880,0.6000000000000001,199,1.9000000000000001,0.0000,0.0000 +2012,1,24,8,30,2.2,1.1400000000000001,0.027,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.279,47.78,155.6,0.9,0.23,880,0.6000000000000001,207,1.8,0.0000,0.0000 +2012,1,24,9,30,1.5,1.16,0.026000000000000002,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.281,49.480000000000004,144.19,0.9,0.23,879,0.6000000000000001,219,1.7000000000000002,0.0000,0.0000 +2012,1,24,10,30,1.3,1.16,0.026000000000000002,0.62,0,0,0,0,7,-8.1,0,0,0,0,0.28200000000000003,49.51,131.97,0.9,0.23,879,0.6000000000000001,231,1.5,0.0000,0.0000 +2012,1,24,11,30,1.6,1.17,0.028,0.62,0,0,0,0,1,-8.1,0,0,0,0,0.28300000000000003,48.59,119.57000000000001,0.91,0.23,879,0.6000000000000001,242,1.3,0.0000,0.0000 +2012,1,24,12,30,2.5,1.17,0.031,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.28400000000000003,46.31,107.3,0.91,0.23,879,0.7000000000000001,247,1.1,0.0000,0.0000 +2012,1,24,13,30,3.7,1.18,0.033,0.62,0,0,0,0,6,-7.7,0,0,0,0,0.28500000000000003,43.160000000000004,95.36,0.91,0.23,879,0.7000000000000001,231,0.8,0.0000,0.0000 +2012,1,24,14,30,5.2,1.19,0.036000000000000004,0.62,30,503,83,7,7,-6.800000000000001,48,8,7,49,0.28600000000000003,41.63,83.9,0.92,0.23,879,0.8,173,0.9,0.0000,0.0000 +2012,1,24,15,30,6.800000000000001,1.18,0.044,0.62,55,772,273,0,7,-6.9,146,38,0,156,0.28700000000000003,36.96,73.57000000000001,0.93,0.23,880,0.8,133,1.5,7.7276,5.9533 +2012,1,24,16,30,8.200000000000001,1.16,0.063,0.62,75,855,442,0,6,-6.800000000000001,160,12,0,166,0.289,33.81,64.62,0.9400000000000001,0.23,880,0.9,144,2.3000000000000003,8.8789,6.9132 +2012,1,24,17,30,9.4,1.1300000000000001,0.08600000000000001,0.62,94,886,566,0,6,-5.2,276,60,0,308,0.29,35.29,57.81,0.9500000000000001,0.23,880,0.9,156,2.8000000000000003,17.1888,13.4403 +2012,1,24,18,30,10.200000000000001,1.1,0.10300000000000001,0.62,107,889,630,0,6,-3.3000000000000003,331,109,0,395,0.292,38.480000000000004,53.980000000000004,0.9500000000000001,0.23,879,1,155,2.9000000000000004,22.4562,17.5872 +2012,1,24,19,30,10.5,1.11,0.126,0.62,117,862,626,0,6,-1.2000000000000002,311,66,0,350,0.293,44.01,53.78,0.96,0.23,879,1.1,147,2.7,19.9154,15.5984 +2012,1,24,20,30,10.5,1.11,0.14,0.62,118,817,559,0,6,0.6000000000000001,254,27,0,269,0.293,50.28,57.26,0.96,0.23,879,1.2000000000000002,137,2.4000000000000004,15.0555,11.7752 +2012,1,24,21,30,10.200000000000001,1.12,0.14300000000000002,0.62,107,748,437,0,6,2.1,225,46,0,246,0.294,57.22,63.800000000000004,0.96,0.23,879,1.2000000000000002,123,1.7000000000000002,13.2352,10.3117 +2012,1,24,22,30,9.200000000000001,1.1300000000000001,0.152,0.62,88,601,268,0,6,3.6,87,4,0,88,0.295,67.78,72.56,0.96,0.23,879,1.3,101,1,4.4003,3.3954 +2012,1,24,23,30,8.1,1.1400000000000001,0.155,0.62,49,309,87,0,6,3.9000000000000004,42,1,0,42,0.297,75.04,82.78,0.97,0.23,880,1.3,79,0.9,0.0000,0.0000 +2012,1,25,0,30,7.6000000000000005,1.1400000000000001,0.17,0.62,0,0,0,0,7,4.1000000000000005,0,0,0,0,0.299,78.52,94.15,0.97,0.23,881,1.4000000000000001,68,1.3,0.0000,0.0000 +2012,1,25,1,30,7.7,1.1400000000000001,0.183,0.62,0,0,0,0,6,4.3,0,0,0,0,0.301,79.13,106.03,0.97,0.23,882,1.4000000000000001,63,2.3000000000000003,0.0000,0.0000 +2012,1,25,2,30,7.6000000000000005,1.1400000000000001,0.195,0.62,0,0,0,0,7,4.7,0,0,0,0,0.303,81.88,118.27,0.97,0.23,883,1.5,59,3.4000000000000004,0.0000,0.0000 +2012,1,25,3,30,7.1000000000000005,1.1500000000000001,0.224,0.62,0,0,0,0,4,5,0,0,0,0,0.305,86.56,130.66,0.98,0.23,883,1.6,51,4.2,0.0000,0.0000 +2012,1,25,4,30,6.300000000000001,1.1500000000000001,0.222,0.62,0,0,0,0,4,4.800000000000001,0,0,0,0,0.306,89.87,142.9,0.97,0.23,884,1.5,38,5,0.0000,0.0000 +2012,1,25,5,30,5.300000000000001,1.16,0.176,0.62,0,0,0,0,1,3.7,0,0,0,0,0.308,89.31,154.41,0.97,0.23,884,1.4000000000000001,25,5.7,0.0000,0.0000 +2012,1,25,6,30,3.9000000000000004,1.18,0.125,0.62,0,0,0,0,4,1.7000000000000002,0,0,0,0,0.31,85.63,163.19,0.96,0.23,885,1.2000000000000002,18,6.4,0.0000,0.0000 +2012,1,25,7,30,2.7,1.19,0.094,0.62,0,0,0,0,1,-0.6000000000000001,0,0,0,0,0.311,78.66,163.73,0.96,0.23,885,1.2000000000000002,17,6.800000000000001,0.0000,0.0000 +2012,1,25,8,30,1.7000000000000002,1.19,0.078,0.62,0,0,0,0,4,-2.5,0,0,0,0,0.311,73.53,155.48,0.9500000000000001,0.23,886,1.1,16,6.9,0.0000,0.0000 +2012,1,25,9,30,0.9,1.19,0.069,0.62,0,0,0,0,7,-3.6,0,0,0,0,0.311,71.78,144.11,0.9500000000000001,0.23,886,1.1,13,6.6000000000000005,0.0000,0.0000 +2012,1,25,10,30,0.2,1.18,0.068,0.62,0,0,0,0,7,-4,0,0,0,0,0.31,73.13,131.9,0.9500000000000001,0.23,886,1.1,11,6.300000000000001,0.0000,0.0000 +2012,1,25,11,30,-0.30000000000000004,1.17,0.07100000000000001,0.62,0,0,0,0,4,-4.1000000000000005,0,0,0,0,0.309,75.54,119.5,0.9500000000000001,0.23,886,1,7,6.2,0.0000,0.0000 +2012,1,25,12,30,-0.9,1.19,0.069,0.62,0,0,0,0,4,-4,0,0,0,0,0.307,79.47,107.22,0.9500000000000001,0.23,886,1,182,6.2,0.0000,0.0000 +2012,1,25,13,30,-0.8,1.21,0.063,0.62,0,0,0,0,4,-3.8000000000000003,0,0,0,0,0.305,79.98,95.27,0.9400000000000001,0.23,886,1,180,6.6000000000000005,0.0000,0.0000 +2012,1,25,14,30,0.9,1.22,0.063,0.62,34,432,81,7,4,-3.6,45,1,7,45,0.301,71.76,83.79,0.9500000000000001,0.23,886,1,8,7,0.0000,0.0000 +2012,1,25,15,30,3.6,1.22,0.073,0.62,64,712,267,0,7,-3.7,154,176,0,204,0.298,59.04,73.43,0.9500000000000001,0.23,887,1,18,7.300000000000001,10.1184,7.7970 +2012,1,25,16,30,6.2,1.22,0.079,0.62,82,830,440,0,4,-3.8000000000000003,47,0,0,47,0.295,48.79,64.46000000000001,0.9500000000000001,0.23,887,1,22,7,2.5168,1.9599 +2012,1,25,17,30,8.1,1.21,0.082,0.62,93,888,568,0,4,-3.7,172,0,0,172,0.294,43.29,57.61,0.96,0.23,887,1,22,6.4,9.6091,7.5142 +2012,1,25,18,30,9.4,1.21,0.096,0.62,103,899,635,0,4,-3.4000000000000004,195,0,0,195,0.293,40.31,53.75,0.96,0.23,886,1,22,5.800000000000001,11.0972,8.6918 +2012,1,25,19,30,10.3,1.21,0.094,0.62,103,907,642,0,1,-3.6,103,907,0,642,0.292,37.6,53.53,0.96,0.23,886,0.9,19,5.4,36.5702,28.6456 +2012,1,25,20,30,10.9,1.22,0.08,0.62,93,904,585,0,1,-4.1000000000000005,93,904,0,585,0.292,34.61,57.01,0.9500000000000001,0.23,885,0.8,13,5.1000000000000005,32.7834,25.6435 +2012,1,25,21,30,10.9,1.25,0.059000000000000004,0.62,75,882,468,0,0,-5,75,882,0,468,0.292,32.35,63.56,0.9400000000000001,0.23,885,0.7000000000000001,7,4.5,25.2213,19.6537 +2012,1,25,22,30,9.200000000000001,1.27,0.043000000000000003,0.62,56,807,301,0,0,-6,56,807,0,301,0.293,33.7,72.34,0.92,0.23,884,0.6000000000000001,3,2.9000000000000004,15.0819,11.6417 +2012,1,25,23,30,6.4,1.28,0.034,0.62,33,586,109,0,0,-4.7,33,586,0,109,0.295,44.81,82.58,0.91,0.23,884,0.5,177,1.6,0.0000,0.0000 +2012,1,26,0,30,4.9,1.28,0.029,0.62,0,0,0,0,0,-6,0,0,0,0,0.296,45.08,93.96000000000001,0.9,0.23,884,0.4,347,1.4000000000000001,0.0000,0.0000 +2012,1,26,1,30,3.8000000000000003,1.3,0.025,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.295,45.79,105.85000000000001,0.89,0.23,884,0.4,332,1.5,0.0000,0.0000 +2012,1,26,2,30,2.7,1.31,0.023,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.292,47.24,118.10000000000001,0.89,0.23,883,0.5,317,1.6,0.0000,0.0000 +2012,1,26,3,30,2.2,1.32,0.022,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.289,47.800000000000004,130.49,0.89,0.23,883,0.6000000000000001,303,1.7000000000000002,0.0000,0.0000 +2012,1,26,4,30,1.8,1.33,0.022,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.28600000000000003,48.82,142.72,0.89,0.23,883,0.6000000000000001,293,1.9000000000000001,0.0000,0.0000 +2012,1,26,5,30,1.2000000000000002,1.33,0.022,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.28500000000000003,50.910000000000004,154.20000000000002,0.89,0.23,883,0.6000000000000001,283,1.8,0.0000,0.0000 +2012,1,26,6,30,0.4,1.31,0.021,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.28300000000000003,54.18,162.94,0.89,0.23,883,0.6000000000000001,279,1.7000000000000002,0.0000,0.0000 +2012,1,26,7,30,-0.2,1.31,0.021,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.281,57.14,163.52,0.89,0.23,883,0.6000000000000001,291,1.8,0.0000,0.0000 +2012,1,26,8,30,-0.4,1.31,0.021,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.279,58.86,155.35,0.88,0.23,883,0.6000000000000001,315,2.2,0.0000,0.0000 +2012,1,26,9,30,-0.2,1.31,0.022,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.276,58.54,144.02,0.88,0.23,883,0.6000000000000001,337,2.8000000000000003,0.0000,0.0000 +2012,1,26,10,30,0.1,1.32,0.022,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.274,56.53,131.83,0.88,0.23,884,0.6000000000000001,347,3.3000000000000003,0.0000,0.0000 +2012,1,26,11,30,0.30000000000000004,1.34,0.023,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.274,54.59,119.43,0.88,0.23,885,0.7000000000000001,349,3.7,0.0000,0.0000 +2012,1,26,12,30,0.4,1.34,0.023,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.274,54.25,107.14,0.88,0.23,886,0.8,349,3.8000000000000003,0.0000,0.0000 +2012,1,26,13,30,1.4000000000000001,1.33,0.024,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.274,52.22,95.18,0.88,0.23,887,0.8,351,4.2,0.0000,0.0000 +2012,1,26,14,30,3.8000000000000003,1.3,0.022,0.62,27,553,88,0,0,-6.6000000000000005,27,553,0,88,0.272,46.69,83.68,0.88,0.23,888,0.8,354,4.5,0.0000,0.0000 +2012,1,26,15,30,7.6000000000000005,1.28,0.02,0.62,45,823,282,0,1,-5.800000000000001,45,823,0,282,0.271,38.11,73.29,0.88,0.23,888,0.8,184,5,14.0054,10.7946 +2012,1,26,16,30,11.3,1.27,0.018000000000000002,0.62,53,931,457,0,1,-4.7,53,931,0,457,0.269,32.34,64.28,0.88,0.23,888,0.8,21,6,24.5039,19.0841 +2012,1,26,17,30,13.600000000000001,1.26,0.018000000000000002,0.62,59,981,587,0,1,-4.7,59,981,0,587,0.268,27.67,57.4,0.88,0.23,888,0.8,30,6,32.8296,25.6751 +2012,1,26,18,30,14.9,1.26,0.019,0.62,62,1001,657,0,0,-5.4,62,1001,0,657,0.266,24.16,53.51,0.88,0.23,887,0.8,30,4.9,37.4279,29.3177 +2012,1,26,19,30,15.600000000000001,1.27,0.021,0.62,64,1006,666,0,0,-5.9,64,1006,0,666,0.265,22.34,53.28,0.89,0.23,887,0.7000000000000001,28,3.6,37.9781,29.7511 +2012,1,26,20,30,15.700000000000001,1.27,0.022,0.62,63,980,600,0,0,-6.4,63,980,0,600,0.265,21.31,56.76,0.89,0.23,886,0.8,28,2.5,33.6665,26.3373 +2012,1,26,21,30,15.200000000000001,1.28,0.019,0.62,55,938,476,0,0,-6.800000000000001,55,938,0,476,0.265,21.34,63.33,0.89,0.23,886,0.8,36,1.5,25.6932,20.0247 +2012,1,26,22,30,13.200000000000001,1.25,0.02,0.62,47,841,305,0,0,-6.1000000000000005,47,841,0,305,0.265,25.560000000000002,72.13,0.89,0.23,886,0.8,77,0.9,15.3123,11.8232 +2012,1,26,23,30,9.700000000000001,1.22,0.022,0.62,31,603,111,0,3,-3.2,59,1,0,59,0.266,40.29,82.38,0.9,0.23,885,0.8,126,1.2000000000000002,0.0000,0.0000 +2012,1,27,0,30,7.300000000000001,1.17,0.025,0.62,0,0,0,0,1,-5.1000000000000005,0,0,0,0,0.267,41.15,93.77,0.91,0.23,885,0.8,148,1.6,0.0000,0.0000 +2012,1,27,1,30,6.9,1.1500000000000001,0.028,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.267,41.62,105.68,0.91,0.23,885,0.8,161,2.2,0.0000,0.0000 +2012,1,27,2,30,6.9,1.16,0.028,0.62,0,0,0,0,1,-5.7,0,0,0,0,0.268,40.14,117.93,0.91,0.23,885,0.8,172,3.3000000000000003,0.0000,0.0000 +2012,1,27,3,30,6.7,1.17,0.026000000000000002,0.62,0,0,0,0,7,-6,0,0,0,0,0.268,39.81,130.32,0.9,0.23,884,0.8,183,4.4,0.0000,0.0000 +2012,1,27,4,30,6.300000000000001,1.18,0.025,0.62,0,0,0,0,7,-6,0,0,0,0,0.268,41.15,142.55,0.9,0.23,883,0.8,195,5.2,0.0000,0.0000 +2012,1,27,5,30,5.9,1.18,0.027,0.62,0,0,0,0,8,-5.7,0,0,0,0,0.268,43.26,154,0.91,0.23,883,0.8,205,5.4,0.0000,0.0000 +2012,1,27,6,30,5.6000000000000005,1.19,0.027,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.267,45.51,162.69,0.91,0.23,882,0.8,214,5.300000000000001,0.0000,0.0000 +2012,1,27,7,30,5.1000000000000005,1.17,0.028,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.267,48.31,163.3,0.91,0.23,881,0.8,220,5,0.0000,0.0000 +2012,1,27,8,30,4.5,1.12,0.029,0.62,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.267,51.02,155.21,0.91,0.23,880,0.8,225,4.5,0.0000,0.0000 +2012,1,27,9,30,4,1.05,0.03,0.62,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.268,52.84,143.93,0.91,0.23,880,0.8,230,4.2,0.0000,0.0000 +2012,1,27,10,30,3.9000000000000004,1,0.031,0.62,0,0,0,0,4,-5,0,0,0,0,0.269,52.36,131.74,0.92,0.23,879,0.8,236,4.1000000000000005,0.0000,0.0000 +2012,1,27,11,30,4.1000000000000005,0.99,0.034,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.27,50.32,119.35000000000001,0.92,0.23,879,0.9,246,4.2,0.0000,0.0000 +2012,1,27,12,30,4.5,0.98,0.036000000000000004,0.62,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.271,47.72,107.05,0.92,0.23,879,1,258,4.3,0.0000,0.0000 +2012,1,27,13,30,5.6000000000000005,0.98,0.03,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.272,43.81,95.08,0.92,0.23,880,1,268,4.7,0.0000,0.0000 +2012,1,27,14,30,8.200000000000001,0.99,0.024,0.62,28,537,89,7,6,-5.4,37,2,7,37,0.273,37.83,83.56,0.9,0.23,880,1,278,5.4,0.0000,0.0000 +2012,1,27,15,30,12.100000000000001,1.02,0.023,0.62,47,808,281,0,7,-4.4,128,360,0,232,0.275,31.400000000000002,73.15,0.9,0.23,880,1,286,5.5,11.5372,8.8943 +2012,1,27,16,30,15.8,1.04,0.023,0.62,57,914,457,0,1,-3.2,57,914,0,457,0.276,26.95,64.1,0.9,0.23,881,1,300,5.7,24.5353,19.1113 +2012,1,27,17,30,17.8,1.06,0.024,0.62,64,964,586,0,0,-2.3000000000000003,64,964,0,586,0.276,25.43,57.18,0.9,0.23,881,1,314,5.800000000000001,32.8109,25.6631 +2012,1,27,18,30,18.3,1.11,0.027,0.62,69,978,654,0,0,-1.8,69,978,0,654,0.277,25.55,53.26,0.91,0.23,881,1.1,323,5.4,37.2970,29.2177 +2012,1,27,19,30,18.2,1.12,0.029,0.62,70,977,658,0,0,-1.5,70,977,0,658,0.278,26.18,53.02,0.92,0.23,881,1.1,334,5.2,37.5634,29.4288 +2012,1,27,20,30,17.3,1.12,0.037,0.62,72,947,595,0,0,-1.3,72,947,0,595,0.279,28.11,56.5,0.93,0.23,882,1.1,171,5.5,33.4294,26.1547 +2012,1,27,21,30,15.4,1.12,0.037,0.62,66,897,472,0,1,-1.1,66,897,0,472,0.28,32.34,63.09,0.9400000000000001,0.23,883,1.1,11,6.2,25.5190,19.8924 +2012,1,27,22,30,12.600000000000001,1.16,0.042,0.62,57,787,301,0,3,-0.7000000000000001,161,268,0,244,0.281,39.84,71.91,0.9400000000000001,0.23,884,1.1,25,6.7,12.2749,9.4810 +2012,1,27,23,30,9.700000000000001,1.2,0.041,0.62,35,544,109,0,7,-0.5,35,544,5,109,0.28300000000000003,49,82.18,0.9400000000000001,0.23,886,1.1,33,6.1000000000000005,0.0000,0.0000 +2012,1,28,0,30,7.5,1.2,0.038,0.62,0,0,0,0,1,-1,0,0,0,0,0.28500000000000003,54.88,93.59,0.9400000000000001,0.23,887,1,41,5.1000000000000005,0.0000,0.0000 +2012,1,28,1,30,6.300000000000001,1.19,0.035,0.62,0,0,0,0,1,-2.3000000000000003,0,0,0,0,0.28700000000000003,54.29,105.5,0.93,0.23,888,0.9,48,4.7,0.0000,0.0000 +2012,1,28,2,30,5.2,1.18,0.032,0.62,0,0,0,0,8,-3.8000000000000003,0,0,0,0,0.28800000000000003,52.17,117.77,0.93,0.23,889,0.8,51,4.4,0.0000,0.0000 +2012,1,28,3,30,4.2,1.18,0.03,0.62,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.29,50.72,130.15,0.93,0.23,890,0.7000000000000001,51,4.2,0.0000,0.0000 +2012,1,28,4,30,3.3000000000000003,1.19,0.031,0.62,0,0,0,0,7,-6,0,0,0,0,0.291,50.44,142.37,0.93,0.23,891,0.7000000000000001,50,4.1000000000000005,0.0000,0.0000 +2012,1,28,5,30,2.3000000000000003,1.2,0.032,0.62,0,0,0,0,7,-6.9,0,0,0,0,0.292,50.730000000000004,153.79,0.93,0.23,892,0.7000000000000001,49,4,0.0000,0.0000 +2012,1,28,6,30,1.4000000000000001,1.2,0.034,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.292,50.7,162.43,0.93,0.23,893,0.7000000000000001,48,3.8000000000000003,0.0000,0.0000 +2012,1,28,7,30,0.6000000000000001,1.2,0.036000000000000004,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.292,50.51,163.07,0.93,0.23,894,0.7000000000000001,48,3.7,0.0000,0.0000 +2012,1,28,8,30,0,1.2,0.039,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.294,49.92,155.07,0.93,0.23,894,0.6000000000000001,49,3.6,0.0000,0.0000 +2012,1,28,9,30,-0.6000000000000001,1.19,0.042,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.295,50.99,143.83,0.9400000000000001,0.23,895,0.6000000000000001,50,3.2,0.0000,0.0000 +2012,1,28,10,30,-1.4000000000000001,1.18,0.044,0.62,0,0,0,0,1,-9.5,0,0,0,0,0.297,54.120000000000005,131.66,0.9400000000000001,0.23,895,0.6000000000000001,53,2.4000000000000004,0.0000,0.0000 +2012,1,28,11,30,-2.1,1.18,0.045,0.62,0,0,0,0,1,-9.4,0,0,0,0,0.299,57.27,119.26,0.9400000000000001,0.23,895,0.6000000000000001,56,1.6,0.0000,0.0000 +2012,1,28,12,30,-2.6,1.17,0.044,0.62,0,0,0,0,4,-9.4,0,0,0,0,0.3,59.370000000000005,106.96000000000001,0.9400000000000001,0.23,896,0.6000000000000001,63,1.1,0.0000,0.0000 +2012,1,28,13,30,-2,1.17,0.044,0.62,0,0,0,0,4,-9.5,0,0,0,0,0.301,56.4,94.97,0.9400000000000001,0.23,897,0.6000000000000001,80,1.2000000000000002,0.0000,0.0000 +2012,1,28,14,30,-0.1,1.16,0.043000000000000003,0.62,33,513,91,7,7,-9.5,57,13,7,59,0.302,48.99,83.43,0.9400000000000001,0.23,897,0.6000000000000001,107,2,0.0000,0.0000 +2012,1,28,15,30,1.9000000000000001,1.16,0.042,0.62,56,793,288,0,7,-10.5,156,173,0,207,0.304,39.28,72.99,0.9400000000000001,0.23,897,0.6000000000000001,138,2.7,10.3093,7.9497 +2012,1,28,16,30,3.7,1.1500000000000001,0.041,0.62,68,908,467,0,6,-10.9,247,167,0,321,0.306,33.54,63.910000000000004,0.9400000000000001,0.23,897,0.6000000000000001,167,3.1,17.2570,13.4439 +2012,1,28,17,30,5.4,1.1400000000000001,0.039,0.62,74,971,604,0,7,-11,266,383,0,475,0.309,29.53,56.96,0.93,0.23,896,0.5,191,3.5,26.6258,20.8274 +2012,1,28,18,30,7,1.17,0.045,0.62,80,987,675,0,7,-10.9,281,416,0,531,0.312,26.580000000000002,53.01,0.93,0.23,895,0.5,210,3.8000000000000003,30.3146,23.7499 +2012,1,28,19,30,8.4,1.17,0.042,0.62,79,992,680,0,7,-10.600000000000001,200,677,0,610,0.316,24.830000000000002,52.75,0.93,0.23,895,0.5,224,3.9000000000000004,34.8626,27.3155 +2012,1,28,20,30,9.3,1.17,0.037,0.62,73,979,617,0,1,-10,73,979,0,617,0.319,24.44,56.24,0.92,0.23,894,0.5,231,3.7,34.7100,27.1597 +2012,1,28,21,30,9.4,1.17,0.033,0.62,65,946,497,0,8,-9.5,177,554,0,430,0.322,25.330000000000002,62.84,0.91,0.23,894,0.4,230,3.3000000000000003,23.2875,18.1561 +2012,1,28,22,30,7.6000000000000005,1.16,0.031,0.62,53,852,321,0,0,-9.200000000000001,53,852,0,321,0.323,29.330000000000002,71.68,0.91,0.23,894,0.4,220,2.3000000000000003,16.1831,12.5038 +2012,1,28,23,30,4.3,1.16,0.029,0.62,34,626,121,0,0,-6.800000000000001,34,626,0,121,0.323,44.18,81.98,0.9,0.23,893,0.4,204,1.5,0.0000,0.0000 +2012,1,29,0,30,2.1,1.16,0.028,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.32,48.01,93.4,0.9,0.23,894,0.4,194,1.7000000000000002,0.0000,0.0000 +2012,1,29,1,30,1.6,1.16,0.026000000000000002,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.315,47.15,105.32000000000001,0.9,0.23,894,0.4,195,2.2,0.0000,0.0000 +2012,1,29,2,30,1.1,1.1500000000000001,0.025,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.311,46.56,117.60000000000001,0.9,0.23,894,0.4,200,2.6,0.0000,0.0000 +2012,1,29,3,30,0.6000000000000001,1.1400000000000001,0.024,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.309,46.31,129.98,0.9,0.23,894,0.4,207,2.9000000000000004,0.0000,0.0000 +2012,1,29,4,30,0.1,1.1300000000000001,0.024,0.62,0,0,0,0,0,-10,0,0,0,0,0.309,46.46,142.19,0.89,0.23,894,0.4,214,3.2,0.0000,0.0000 +2012,1,29,5,30,-0.5,1.11,0.024,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.308,47.43,153.58,0.89,0.23,894,0.4,222,3.3000000000000003,0.0000,0.0000 +2012,1,29,6,30,-1.1,1.1,0.023,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.306,48.9,162.17000000000002,0.89,0.23,894,0.4,230,3.2,0.0000,0.0000 +2012,1,29,7,30,-1.6,1.08,0.023,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.306,50.45,162.84,0.89,0.23,894,0.4,238,3.2,0.0000,0.0000 +2012,1,29,8,30,-2.1,1.06,0.023,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.307,52.36,154.92000000000002,0.89,0.23,893,0.4,245,3.1,0.0000,0.0000 +2012,1,29,9,30,-2.4000000000000004,1.04,0.023,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.312,53.97,143.72,0.89,0.23,893,0.4,250,3.2,0.0000,0.0000 +2012,1,29,10,30,-2.7,1.02,0.022,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.319,55.75,131.56,0.89,0.23,893,0.30000000000000004,253,3.2,0.0000,0.0000 +2012,1,29,11,30,-3.1,1.01,0.021,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.326,57.59,119.17,0.89,0.23,892,0.30000000000000004,254,3.1,0.0000,0.0000 +2012,1,29,12,30,-3.5,1.01,0.021,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.332,59.09,106.86,0.89,0.23,893,0.30000000000000004,255,2.9000000000000004,0.0000,0.0000 +2012,1,29,13,30,-2.8000000000000003,1.02,0.02,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.337,55.39,94.86,0.89,0.23,893,0.30000000000000004,259,3.3000000000000003,0.0000,0.0000 +2012,1,29,14,30,-0.4,1.02,0.019,0.62,28,617,100,7,4,-10.600000000000001,63,10,7,64,0.339,45.980000000000004,83.3,0.89,0.23,893,0.30000000000000004,265,3.6,0.0000,0.0000 +2012,1,29,15,30,3.3000000000000003,1.02,0.019,0.62,46,870,303,0,4,-10.600000000000001,181,112,0,214,0.338,35.49,72.83,0.89,0.23,893,0.30000000000000004,268,3.2,10.6738,8.2329 +2012,1,29,16,30,7.5,1.03,0.018000000000000002,0.62,55,972,485,0,1,-11,55,972,0,485,0.336,25.560000000000002,63.72,0.89,0.23,893,0.30000000000000004,266,3,26.1084,20.3425 +2012,1,29,17,30,11.3,1.03,0.017,0.62,59,1022,620,0,1,-12.100000000000001,59,1022,0,620,0.333,18.19,56.74,0.89,0.23,892,0.30000000000000004,259,3,34.7923,27.2182 +2012,1,29,18,30,14.100000000000001,1.08,0.018000000000000002,0.62,63,1041,693,0,0,-13.600000000000001,63,1041,0,693,0.33,13.36,52.76,0.89,0.23,891,0.30000000000000004,252,3,39.6046,31.0308 +2012,1,29,19,30,15.600000000000001,1.09,0.018000000000000002,0.62,63,1043,698,0,0,-14.3,63,1043,0,698,0.328,11.48,52.480000000000004,0.89,0.23,890,0.30000000000000004,250,3.1,39.9366,31.2939 +2012,1,29,20,30,16.1,1.09,0.018000000000000002,0.62,61,1026,634,0,0,-14.4,61,1026,0,634,0.325,11.06,55.980000000000004,0.89,0.23,890,0.30000000000000004,252,3.1,35.7116,27.9465 +2012,1,29,21,30,15.700000000000001,1.1,0.018000000000000002,0.62,56,983,508,0,0,-14.200000000000001,56,983,0,508,0.324,11.52,62.6,0.89,0.23,889,0.30000000000000004,253,2.7,27.5558,21.4874 +2012,1,29,22,30,13,1.09,0.018000000000000002,0.62,47,881,327,0,0,-10.9,47,881,0,327,0.322,17.86,71.46000000000001,0.89,0.23,889,0.4,252,1.8,16.5192,12.7675 +2012,1,29,23,30,9.700000000000001,1.09,0.018000000000000002,0.62,31,664,126,0,0,-6.5,31,664,0,126,0.32,31.21,81.78,0.88,0.23,889,0.4,249,1.4000000000000001,0.0000,0.0000 +2012,1,30,0,30,7.9,1.08,0.018000000000000002,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.318,27.650000000000002,93.21000000000001,0.89,0.23,889,0.4,245,1.5,0.0000,0.0000 +2012,1,30,1,30,6.7,1.07,0.019,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.317,29.01,105.15,0.89,0.23,889,0.4,240,1.6,0.0000,0.0000 +2012,1,30,2,30,5.2,1.06,0.019,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.316,32.07,117.43,0.89,0.23,889,0.4,236,1.7000000000000002,0.0000,0.0000 +2012,1,30,3,30,3.8000000000000003,1.06,0.02,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.315,35.56,129.81,0.89,0.23,889,0.4,232,1.8,0.0000,0.0000 +2012,1,30,4,30,2.7,1.07,0.02,0.62,0,0,0,0,0,-10,0,0,0,0,0.315,38.53,142,0.89,0.23,889,0.4,230,1.9000000000000001,0.0000,0.0000 +2012,1,30,5,30,2.1,1.08,0.021,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.314,41.18,153.37,0.9,0.23,889,0.4,229,2.2,0.0000,0.0000 +2012,1,30,6,30,1.6,1.11,0.023,0.62,0,0,0,0,0,-9,0,0,0,0,0.314,45.160000000000004,161.91,0.9,0.23,888,0.4,231,2.4000000000000004,0.0000,0.0000 +2012,1,30,7,30,1.1,1.1400000000000001,0.025,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.314,50.07,162.59,0.9,0.23,888,0.4,235,2.6,0.0000,0.0000 +2012,1,30,8,30,0.6000000000000001,1.16,0.026000000000000002,0.62,0,0,0,0,1,-7.7,0,0,0,0,0.315,53.870000000000005,154.76,0.91,0.23,887,0.4,238,2.6,0.0000,0.0000 +2012,1,30,9,30,0.2,1.17,0.027,0.62,0,0,0,0,4,-7.7,0,0,0,0,0.316,55.2,143.6,0.91,0.23,887,0.4,240,2.6,0.0000,0.0000 +2012,1,30,10,30,-0.2,1.17,0.028,0.62,0,0,0,0,1,-8.1,0,0,0,0,0.315,55.050000000000004,131.46,0.91,0.23,886,0.4,243,2.6,0.0000,0.0000 +2012,1,30,11,30,-0.6000000000000001,1.17,0.028,0.62,0,0,0,0,8,-8.700000000000001,0,0,0,0,0.312,54.47,119.07000000000001,0.9,0.23,886,0.4,248,2.7,0.0000,0.0000 +2012,1,30,12,30,-0.8,1.16,0.027,0.62,0,0,0,0,4,-9.200000000000001,0,0,0,0,0.31,53.06,106.75,0.9,0.23,886,0.4,255,2.9000000000000004,0.0000,0.0000 +2012,1,30,13,30,0.5,1.1500000000000001,0.028,0.62,0,0,0,0,4,-9.600000000000001,0,0,0,0,0.308,46.71,94.74,0.9,0.23,886,0.30000000000000004,259,3.6,0.0000,0.0000 +2012,1,30,14,30,3.5,1.1300000000000001,0.031,0.62,31,590,102,7,4,-9.700000000000001,64,9,7,65,0.306,37.410000000000004,83.16,0.91,0.23,886,0.30000000000000004,257,4.4,0.0000,0.0000 +2012,1,30,15,30,7,1.12,0.033,0.62,53,835,302,0,4,-9.5,182,113,0,216,0.304,29.75,72.67,0.92,0.23,886,0.4,249,4.3,10.7896,8.3243 +2012,1,30,16,30,11.3,1.11,0.032,0.62,64,943,484,0,8,-8.9,202,397,0,379,0.302,23.39,63.53,0.92,0.23,885,0.4,244,4.800000000000001,20.4292,15.9198 +2012,1,30,17,30,15.100000000000001,1.11,0.031,0.62,70,995,619,0,8,-9.4,215,525,0,505,0.3,17.55,56.5,0.92,0.23,885,0.4,242,5.800000000000001,28.3729,22.1986 +2012,1,30,18,30,17.400000000000002,1.12,0.029,0.62,71,1020,693,0,8,-10.4,204,636,0,591,0.298,13.99,52.49,0.91,0.23,884,0.4,239,6.4,33.8132,26.4955 +2012,1,30,19,30,18.5,1.19,0.029,0.62,71,1022,698,7,2,-10.700000000000001,254,712,7,690,0.297,12.75,52.21,0.91,0.23,883,0.4,235,6.5,39.5225,30.9721 +2012,1,30,20,30,18.900000000000002,1.26,0.03,0.62,69,1003,634,0,0,-10.8,69,1003,0,634,0.297,12.33,55.71,0.9,0.23,882,0.4,233,6.4,35.7581,27.9860 +2012,1,30,21,30,18.5,1.3,0.031,0.62,63,957,507,0,0,-10.700000000000001,63,957,0,507,0.296,12.780000000000001,62.35,0.89,0.23,882,0.4,231,5.7,27.5469,21.4841 +2012,1,30,22,30,15.5,1.31,0.031,0.62,53,864,331,0,0,-9.600000000000001,53,864,0,331,0.295,16.89,71.23,0.89,0.23,881,0.4,224,3.8000000000000003,16.7567,12.9553 +2012,1,30,23,30,11.100000000000001,1.3,0.03,0.62,35,643,129,0,0,-6,35,643,0,129,0.293,29.69,81.58,0.9,0.23,881,0.4,215,2.5,0.0000,0.0000 +2012,1,31,0,30,8.9,1.27,0.029,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.292,35.300000000000004,93.02,0.9,0.23,882,0.4,211,2.6,0.0000,0.0000 +2012,1,31,1,30,8.200000000000001,1.24,0.027,0.62,0,0,0,0,1,-5.300000000000001,0,0,0,0,0.29,38,104.97,0.89,0.23,882,0.4,215,2.8000000000000003,0.0000,0.0000 +2012,1,31,2,30,7.300000000000001,1.2,0.025,0.62,0,0,0,0,1,-5.300000000000001,0,0,0,0,0.29,40.43,117.25,0.89,0.23,882,0.4,224,2.9000000000000004,0.0000,0.0000 +2012,1,31,3,30,6.300000000000001,1.17,0.024,0.62,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.291,41.64,129.64000000000001,0.88,0.23,882,0.4,235,2.9000000000000004,0.0000,0.0000 +2012,1,31,4,30,5.4,1.16,0.023,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.292,41.58,141.82,0.88,0.23,883,0.4,247,2.8000000000000003,0.0000,0.0000 +2012,1,31,5,30,4.800000000000001,1.1500000000000001,0.023,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.295,40.800000000000004,153.15,0.87,0.23,883,0.4,257,2.9000000000000004,0.0000,0.0000 +2012,1,31,6,30,4.1000000000000005,1.17,0.023,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.298,41.49,161.64000000000001,0.87,0.23,883,0.4,263,3,0.0000,0.0000 +2012,1,31,7,30,3.3000000000000003,1.19,0.024,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.301,44.19,162.35,0.87,0.23,883,0.4,267,2.9000000000000004,0.0000,0.0000 +2012,1,31,8,30,2.7,1.2,0.024,0.62,0,0,0,0,1,-7.4,0,0,0,0,0.302,47.19,154.59,0.87,0.23,883,0.4,269,2.9000000000000004,0.0000,0.0000 +2012,1,31,9,30,2.1,1.22,0.023,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.303,50.1,143.48,0.87,0.23,883,0.4,272,3,0.0000,0.0000 +2012,1,31,10,30,1.6,1.24,0.023,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.304,51.9,131.36,0.88,0.23,883,0.4,277,3.1,0.0000,0.0000 +2012,1,31,11,30,1,1.25,0.024,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.304,53.35,118.97,0.88,0.23,883,0.4,282,3.1,0.0000,0.0000 +2012,1,31,12,30,0.6000000000000001,1.26,0.024,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.304,53.79,106.64,0.88,0.23,884,0.4,288,3.2,0.0000,0.0000 +2012,1,31,13,30,1.5,1.26,0.026000000000000002,0.62,0,0,0,0,1,-8,0,0,0,0,0.304,49.17,94.61,0.88,0.23,885,0.4,293,3.7,0.0000,0.0000 +2012,1,31,14,30,4.1000000000000005,1.26,0.03,0.62,31,589,103,7,4,-8.200000000000001,65,10,7,67,0.303,40.300000000000004,83.02,0.89,0.23,885,0.4,299,4.1000000000000005,0.0000,0.0000 +2012,1,31,15,30,7.6000000000000005,1.25,0.032,0.62,52,831,302,0,3,-8.1,181,120,0,217,0.301,31.79,72.5,0.9,0.23,886,0.5,310,3.5,10.8568,8.3783 +2012,1,31,16,30,11.700000000000001,1.23,0.033,0.62,64,935,483,0,8,-7.7,203,407,0,386,0.299,24.990000000000002,63.32,0.9,0.23,886,0.5,334,3,20.8367,16.2398 +2012,1,31,17,30,15,1.23,0.034,0.62,71,984,617,0,7,-8.9,267,378,0,477,0.298,18.39,56.27,0.9,0.23,886,0.5,339,2.5,26.8302,20.9937 +2012,1,31,18,30,16.8,1.22,0.033,0.62,73,1008,691,0,3,-9.4,357,319,0,552,0.296,15.8,52.230000000000004,0.9,0.23,885,0.5,306,2,31.6155,24.7755 +2012,1,31,19,30,17.6,1.24,0.03,0.62,72,1013,696,0,0,-9.5,72,1013,0,696,0.294,14.8,51.93,0.9,0.23,884,0.5,278,2.3000000000000003,39.9113,31.2797 +2012,1,31,20,30,17.8,1.25,0.031,0.62,69,993,633,0,7,-9.9,188,611,0,534,0.293,14.19,55.44,0.89,0.23,884,0.5,269,2.7,30.1567,23.6047 +2012,1,31,21,30,17.2,1.25,0.032,0.62,64,947,507,0,8,-10.200000000000001,164,564,0,428,0.295,14.43,62.1,0.89,0.23,884,0.5,269,2.4000000000000004,23.2925,18.1691 +2012,1,31,22,30,15,1.25,0.037,0.62,56,836,328,0,7,-8.8,135,428,0,275,0.298,18.45,71.01,0.9,0.23,885,0.6000000000000001,281,1.5,13.9499,10.7885 +2012,1,31,23,30,12.5,1.25,0.041,0.62,37,600,127,0,8,-4.3,83,158,0,107,0.3,30.73,81.37,0.9,0.23,885,0.6000000000000001,309,0.9,0.0000,0.0000 +2012,2,1,0,30,11.3,1.24,0.045,0.61,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.302,25.400000000000002,92.83,0.91,0.23,885,0.6000000000000001,173,1,0.0000,0.0000 +2012,2,1,1,30,10.100000000000001,1.22,0.049,0.61,0,0,0,0,7,-8,0,0,0,0,0.303,27.17,104.79,0.92,0.23,886,0.6000000000000001,36,1.2000000000000002,0.0000,0.0000 +2012,2,1,2,30,8.6,1.21,0.051000000000000004,0.61,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.304,32.17,117.08,0.92,0.23,886,0.7000000000000001,63,1.3,0.0000,0.0000 +2012,2,1,3,30,7.5,1.2,0.053,0.61,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.303,36.88,129.47,0.93,0.23,886,0.7000000000000001,79,1.4000000000000001,0.0000,0.0000 +2012,2,1,4,30,6.800000000000001,1.2,0.054,0.61,0,0,0,0,4,-6,0,0,0,0,0.302,39.480000000000004,141.64000000000001,0.93,0.23,886,0.7000000000000001,89,1.4000000000000001,0.0000,0.0000 +2012,2,1,5,30,6,1.2,0.054,0.61,0,0,0,0,4,-5.9,0,0,0,0,0.302,42.300000000000004,152.94,0.93,0.23,887,0.8,95,1.4000000000000001,0.0000,0.0000 +2012,2,1,6,30,5.300000000000001,1.21,0.055,0.61,0,0,0,0,4,-5.7,0,0,0,0,0.303,44.85,161.37,0.93,0.23,887,0.8,98,1.2000000000000002,0.0000,0.0000 +2012,2,1,7,30,4.7,1.21,0.057,0.61,0,0,0,0,4,-5.7,0,0,0,0,0.305,46.96,162.09,0.93,0.23,887,0.8,95,1,0.0000,0.0000 +2012,2,1,8,30,4.2,1.2,0.06,0.61,0,0,0,0,0,-5.7,0,0,0,0,0.307,48.45,154.42000000000002,0.93,0.23,887,0.8,79,0.8,0.0000,0.0000 +2012,2,1,9,30,3.5,1.21,0.056,0.61,0,0,0,0,0,-5.7,0,0,0,0,0.31,50.89,143.35,0.92,0.23,887,0.8,208,0.9,0.0000,0.0000 +2012,2,1,10,30,2.6,1.21,0.05,0.61,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.313,53.76,131.25,0.91,0.23,887,0.8,335,1.2000000000000002,0.0000,0.0000 +2012,2,1,11,30,1.9000000000000001,1.21,0.046,0.61,0,0,0,0,0,-6,0,0,0,0,0.315,55.71,118.86,0.91,0.23,887,0.8,315,1.7000000000000002,0.0000,0.0000 +2012,2,1,12,30,1.7000000000000002,1.21,0.04,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.315,56.410000000000004,106.53,0.91,0.23,888,0.7000000000000001,307,2,0.0000,0.0000 +2012,2,1,13,30,3,1.21,0.034,0.61,0,0,0,0,1,-6.1000000000000005,0,0,0,0,0.313,51.120000000000005,94.48,0.9,0.23,888,0.7000000000000001,303,2.8000000000000003,0.0000,0.0000 +2012,2,1,14,30,5.800000000000001,1.18,0.031,0.61,31,569,102,0,1,-5.9,31,569,0,102,0.311,42.61,82.87,0.9,0.23,888,0.6000000000000001,302,3.8000000000000003,0.0000,0.0000 +2012,2,1,15,30,9.3,1.11,0.03,0.61,52,835,305,0,1,-5.9,52,835,0,305,0.31,33.57,72.32000000000001,0.89,0.23,889,0.5,309,4.3,15.2852,11.7989 +2012,2,1,16,30,13.100000000000001,1.02,0.03,0.61,63,948,491,0,1,-6.7,63,948,0,491,0.309,24.7,63.11,0.89,0.23,889,0.4,325,4.7,26.5427,20.6900 +2012,2,1,17,30,15.4,0.9400000000000001,0.031,0.61,70,996,626,0,0,-9.200000000000001,70,996,0,626,0.308,17.45,56.02,0.89,0.23,889,0.4,339,5,35.2541,27.5881 +2012,2,1,18,30,16.400000000000002,0.97,0.032,0.61,74,1016,700,0,0,-10.5,74,1016,0,700,0.308,14.790000000000001,51.95,0.9,0.23,888,0.4,347,4.6000000000000005,40.1375,31.4567 +2012,2,1,19,30,16.8,0.97,0.033,0.61,75,1028,713,0,0,-11.3,75,1028,0,713,0.307,13.56,51.65,0.9,0.23,888,0.30000000000000004,353,4.1000000000000005,40.9318,32.0823 +2012,2,1,20,30,16.8,0.96,0.033,0.61,72,1010,649,0,0,-11.9,72,1010,0,649,0.306,12.870000000000001,55.160000000000004,0.9,0.23,887,0.30000000000000004,178,3.3000000000000003,36.6994,28.7291 +2012,2,1,21,30,16.3,0.98,0.034,0.61,66,952,516,0,0,-12.3,66,952,0,516,0.305,12.94,61.85,0.9,0.23,887,0.4,3,2.4000000000000004,28.1269,21.9436 +2012,2,1,22,30,14.5,1,0.035,0.61,56,857,338,0,0,-11.200000000000001,56,857,0,338,0.305,15.81,70.78,0.9,0.23,887,0.4,13,1.3,17.1819,13.2921 +2012,2,1,23,30,12.100000000000001,0.99,0.038,0.61,38,627,134,0,1,-6.1000000000000005,38,627,0,134,0.304,27.48,81.17,0.9,0.23,888,0.4,35,0.9,0.0000,0.0000 +2012,2,2,0,30,10.600000000000001,0.98,0.041,0.61,0,0,0,0,8,-9.700000000000001,0,0,0,0,0.304,22.98,92.64,0.91,0.23,888,0.4,62,1,0.0000,0.0000 +2012,2,2,1,30,9.4,0.98,0.04,0.61,0,0,0,0,1,-10,0,0,0,0,0.304,24.44,104.62,0.91,0.23,888,0.30000000000000004,87,1.2000000000000002,0.0000,0.0000 +2012,2,2,2,30,7.9,0.99,0.038,0.61,0,0,0,0,4,-9.700000000000001,0,0,0,0,0.304,27.52,116.91,0.91,0.23,888,0.30000000000000004,105,1.4000000000000001,0.0000,0.0000 +2012,2,2,3,30,6.2,1.02,0.037,0.61,0,0,0,0,4,-9.3,0,0,0,0,0.305,32.02,129.3,0.91,0.23,888,0.30000000000000004,115,1.5,0.0000,0.0000 +2012,2,2,4,30,4.7,1.04,0.038,0.61,0,0,0,0,7,-8.8,0,0,0,0,0.305,36.99,141.45000000000002,0.91,0.23,888,0.4,120,1.5,0.0000,0.0000 +2012,2,2,5,30,3.7,1.06,0.039,0.61,0,0,0,0,7,-8.6,0,0,0,0,0.306,40.13,152.72,0.91,0.23,888,0.4,122,1.6,0.0000,0.0000 +2012,2,2,6,30,3,1.08,0.039,0.61,0,0,0,0,7,-8.5,0,0,0,0,0.307,42.62,161.1,0.91,0.23,887,0.4,122,1.6,0.0000,0.0000 +2012,2,2,7,30,2.6,1.1,0.04,0.61,0,0,0,0,7,-8.4,0,0,0,0,0.307,44.26,161.83,0.91,0.23,887,0.5,122,1.7000000000000002,0.0000,0.0000 +2012,2,2,8,30,2,1.12,0.041,0.61,0,0,0,0,7,-8,0,0,0,0,0.306,47.36,154.24,0.91,0.23,886,0.6000000000000001,125,1.8,0.0000,0.0000 +2012,2,2,9,30,1.2000000000000002,1.12,0.039,0.61,0,0,0,0,6,-7.7,0,0,0,0,0.306,51.42,143.21,0.9,0.23,886,0.6000000000000001,129,2,0.0000,0.0000 +2012,2,2,10,30,0.8,1.11,0.039,0.61,0,0,0,0,7,-7,0,0,0,0,0.306,55.89,131.13,0.91,0.23,886,0.7000000000000001,134,2.2,0.0000,0.0000 +2012,2,2,11,30,0.9,1.1300000000000001,0.044,0.61,0,0,0,0,7,-5.9,0,0,0,0,0.306,60.57,118.74000000000001,0.91,0.23,885,0.8,138,2.6,0.0000,0.0000 +2012,2,2,12,30,1.1,1.1500000000000001,0.049,0.61,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.306,65.97,106.4,0.92,0.23,885,0.8,140,3.1,0.0000,0.0000 +2012,2,2,13,30,1.7000000000000002,1.17,0.054,0.61,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.306,69.39,94.35000000000001,0.92,0.23,885,0.9,138,3.7,0.0000,0.0000 +2012,2,2,14,30,3.2,1.2,0.056,0.61,36,495,99,7,7,-2.3000000000000003,29,0,7,29,0.306,67.06,82.72,0.93,0.23,884,0.9,134,4.2,0.0000,0.0000 +2012,2,2,15,30,5.9,1.23,0.057,0.61,61,760,294,0,8,-1.6,167,165,0,217,0.305,58.6,72.14,0.93,0.23,884,1,132,4.9,10.8933,8.4110 +2012,2,2,16,30,9.5,1.26,0.06,0.61,76,870,472,0,7,-0.9,208,381,0,381,0.304,48.35,62.9,0.9400000000000001,0.23,883,1,139,6.5,20.6255,16.0800 +2012,2,2,17,30,12.5,1.27,0.064,0.61,85,921,604,0,3,0.30000000000000004,334,67,0,372,0.303,43.02,55.77,0.9400000000000001,0.23,881,1,151,7.9,20.9751,16.4157 +2012,2,2,18,30,14.700000000000001,1.31,0.081,0.61,97,928,673,0,3,2.3000000000000003,226,1,0,226,0.303,43.26,51.68,0.9400000000000001,0.23,880,1,163,8.5,12.9726,10.1678 +2012,2,2,19,30,16.3,1.3,0.074,0.61,95,942,683,0,4,3.4000000000000004,394,174,0,503,0.304,42.07,51.36,0.9400000000000001,0.23,879,0.9,173,8.5,28.9091,22.6610 +2012,2,2,20,30,17.3,1.28,0.069,0.61,89,926,621,0,0,2.7,89,926,0,621,0.306,37.65,54.89,0.9400000000000001,0.23,878,0.9,181,8,35.1600,27.5270 +2012,2,2,21,30,17.5,1.27,0.065,0.61,79,885,501,0,0,1,79,885,0,501,0.308,32.95,61.59,0.9400000000000001,0.23,878,0.8,185,7,27.3544,21.3446 +2012,2,2,22,30,15.700000000000001,1.24,0.058,0.61,64,794,328,0,0,-0.7000000000000001,64,794,0,328,0.309,32.730000000000004,70.55,0.93,0.23,878,0.8,182,5,16.7085,12.9298 +2012,2,2,23,30,12,1.22,0.052000000000000005,0.61,41,575,131,0,0,0,41,575,0,131,0.31,43.58,80.96000000000001,0.93,0.23,878,0.8,174,3.4000000000000004,0.0000,0.0000 +2012,2,3,0,30,9.4,1.19,0.052000000000000005,0.61,0,0,0,0,0,0.5,0,0,0,0,0.309,53.81,92.45,0.93,0.23,878,0.8,169,3,0.0000,0.0000 +2012,2,3,1,30,8.1,1.17,0.053,0.61,0,0,0,0,1,1.4000000000000001,0,0,0,0,0.309,62.86,104.44,0.93,0.23,879,0.8,173,2.9000000000000004,0.0000,0.0000 +2012,2,3,2,30,7,1.1500000000000001,0.055,0.61,0,0,0,0,0,2,0,0,0,0,0.307,70.62,116.74000000000001,0.93,0.23,879,0.8,183,2.5,0.0000,0.0000 +2012,2,3,3,30,6.1000000000000005,1.1300000000000001,0.054,0.61,0,0,0,0,4,1.6,0,0,0,0,0.306,72.84,129.12,0.93,0.23,879,0.8,194,2.1,0.0000,0.0000 +2012,2,3,4,30,5.4,1.11,0.051000000000000004,0.61,0,0,0,0,4,0.5,0,0,0,0,0.304,70.5,141.26,0.93,0.23,879,0.8,202,1.7000000000000002,0.0000,0.0000 +2012,2,3,5,30,4.7,1.08,0.047,0.61,0,0,0,0,1,-0.7000000000000001,0,0,0,0,0.304,68.1,152.5,0.93,0.23,879,0.7000000000000001,204,1.4000000000000001,0.0000,0.0000 +2012,2,3,6,30,4.2,1.06,0.045,0.61,0,0,0,0,0,-1.6,0,0,0,0,0.305,66.16,160.82,0.93,0.23,879,0.7000000000000001,204,1.2000000000000002,0.0000,0.0000 +2012,2,3,7,30,3.7,1.04,0.044,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.305,66.02,161.56,0.93,0.23,879,0.7000000000000001,207,1.2000000000000002,0.0000,0.0000 +2012,2,3,8,30,2.8000000000000003,1.03,0.042,0.61,0,0,0,0,0,-2.5,0,0,0,0,0.305,68.02,154.05,0.93,0.23,879,0.7000000000000001,220,1.3,0.0000,0.0000 +2012,2,3,9,30,1.6,1.01,0.04,0.61,0,0,0,0,0,-3.6,0,0,0,0,0.306,68.14,143.07,0.92,0.23,879,0.6000000000000001,242,1.4000000000000001,0.0000,0.0000 +2012,2,3,10,30,0.4,1,0.035,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.307,64.76,131,0.91,0.23,879,0.6000000000000001,267,1.5,0.0000,0.0000 +2012,2,3,11,30,-0.5,0.99,0.031,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.308,61.78,118.62,0.9,0.23,880,0.5,289,1.7000000000000002,0.0000,0.0000 +2012,2,3,12,30,-1.1,1,0.027,0.61,0,0,0,0,0,-7.2,0,0,0,0,0.309,63.1,106.28,0.89,0.23,880,0.5,303,1.9000000000000001,0.0000,0.0000 +2012,2,3,13,30,-0.1,1.01,0.025,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.31,60.57,94.2,0.89,0.23,881,0.5,312,2.6,0.0000,0.0000 +2012,2,3,14,30,2.4000000000000004,1.04,0.025,0.61,31,616,111,0,0,-5.6000000000000005,31,616,0,111,0.311,55.74,82.56,0.89,0.23,882,0.4,316,3.5,0.0000,0.0000 +2012,2,3,15,30,5.4,1.07,0.027,0.61,51,857,316,7,3,-4.1000000000000005,178,23,7,185,0.312,50.21,71.95,0.89,0.23,882,0.4,310,4,9.3033,7.1854 +2012,2,3,16,30,8.3,1.1,0.031,0.61,64,951,500,7,2,-3.6,217,511,7,452,0.312,42.99,62.68,0.9,0.23,883,0.4,300,4.5,24.5051,19.1075 +2012,2,3,17,30,10.200000000000001,1.12,0.035,0.61,72,986,630,7,3,-3.6,362,118,7,428,0.31,37.82,55.51,0.9,0.23,883,0.5,296,4.9,24.1625,18.9123 +2012,2,3,18,30,11.100000000000001,1.17,0.04,0.61,78,995,698,7,2,-3.4000000000000004,324,439,7,598,0.308,36.06,51.39,0.91,0.23,883,0.6000000000000001,300,5.1000000000000005,34.3651,26.9375 +2012,2,3,19,30,11.5,1.19,0.042,0.61,79,994,704,7,2,-3.2,332,421,7,597,0.306,35.54,51.07,0.92,0.23,883,0.6000000000000001,307,5.300000000000001,34.3503,26.9286 +2012,2,3,20,30,11.3,1.21,0.044,0.61,77,973,641,0,3,-3.1,366,103,0,426,0.305,36.28,54.61,0.92,0.23,884,0.6000000000000001,315,5.2,24.1503,18.9095 +2012,2,3,21,30,10.5,1.25,0.048,0.61,72,915,511,0,4,-3,247,25,0,260,0.304,38.68,61.33,0.92,0.23,884,0.7000000000000001,323,5,14.2191,11.0969 +2012,2,3,22,30,9,1.26,0.049,0.61,61,817,337,0,4,-2.9000000000000004,86,0,0,86,0.303,43.08,70.32000000000001,0.93,0.23,885,0.7000000000000001,332,4.2,4.3900,3.3982 +2012,2,3,23,30,6.2,1.27,0.05,0.61,41,593,136,0,3,-2.6,84,6,0,85,0.303,53.13,80.75,0.93,0.23,886,0.7000000000000001,346,2.9000000000000004,0.0000,0.0000 +2012,2,4,0,30,4,1.28,0.052000000000000005,0.61,0,0,0,0,0,-2.5,0,0,0,0,0.303,62.440000000000005,92.26,0.93,0.23,887,0.7000000000000001,179,2.4000000000000004,0.0000,0.0000 +2012,2,4,1,30,3,1.28,0.054,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.303,66.6,104.26,0.93,0.23,888,0.7000000000000001,8,2.8000000000000003,0.0000,0.0000 +2012,2,4,2,30,2.1,1.27,0.056,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.304,69.63,116.57000000000001,0.93,0.23,889,0.6000000000000001,11,3.2,0.0000,0.0000 +2012,2,4,3,30,1.1,1.24,0.057,0.61,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.305,71.76,128.95,0.93,0.23,889,0.6000000000000001,9,3.4000000000000004,0.0000,0.0000 +2012,2,4,4,30,0.2,1.21,0.057,0.61,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.305,73.08,141.08,0.93,0.23,890,0.6000000000000001,182,3.4000000000000004,0.0000,0.0000 +2012,2,4,5,30,-0.5,1.2,0.056,0.61,0,0,0,0,1,-4.5,0,0,0,0,0.304,74.10000000000001,152.27,0.93,0.23,890,0.6000000000000001,354,3.6,0.0000,0.0000 +2012,2,4,6,30,-1.1,1.2,0.056,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.304,75.3,160.54,0.9400000000000001,0.23,890,0.6000000000000001,350,4.1000000000000005,0.0000,0.0000 +2012,2,4,7,30,-1.7000000000000002,1.19,0.057,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.304,77.01,161.28,0.9400000000000001,0.23,890,0.7000000000000001,348,4.4,0.0000,0.0000 +2012,2,4,8,30,-2.2,1.19,0.059000000000000004,0.61,0,0,0,0,1,-5.4,0,0,0,0,0.304,78.69,153.85,0.9400000000000001,0.23,890,0.7000000000000001,347,4.5,0.0000,0.0000 +2012,2,4,9,30,-2.3000000000000003,1.18,0.059000000000000004,0.61,0,0,0,0,1,-5.5,0,0,0,0,0.303,78.46000000000001,142.92000000000002,0.9400000000000001,0.23,890,0.7000000000000001,349,4.7,0.0000,0.0000 +2012,2,4,10,30,-2.4000000000000004,1.17,0.059000000000000004,0.61,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.302,78.43,130.87,0.9400000000000001,0.23,890,0.7000000000000001,352,4.800000000000001,0.0000,0.0000 +2012,2,4,11,30,-2.5,1.17,0.06,0.61,0,0,0,0,4,-5.7,0,0,0,0,0.3,78.62,118.49000000000001,0.9400000000000001,0.23,891,0.7000000000000001,354,4.9,0.0000,0.0000 +2012,2,4,12,30,-2.6,1.19,0.061,0.61,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.299,78.78,106.14,0.9400000000000001,0.23,891,0.8,356,4.800000000000001,0.0000,0.0000 +2012,2,4,13,30,-1.9000000000000001,1.2,0.063,0.61,0,0,0,0,8,-5.800000000000001,0,0,0,0,0.298,74.57000000000001,94.06,0.9400000000000001,0.23,892,0.8,179,5,0.0000,0.0000 +2012,2,4,14,30,0.1,1.21,0.066,0.61,39,491,104,7,4,-5.800000000000001,64,3,7,65,0.297,64.45,82.39,0.9500000000000001,0.23,893,0.8,7,6.4,0.0000,0.0000 +2012,2,4,15,30,2.4000000000000004,1.22,0.066,0.61,66,760,303,0,4,-5.9,188,120,0,225,0.295,54.46,71.75,0.9500000000000001,0.23,893,0.8,14,7.6000000000000005,11.3359,8.7578 +2012,2,4,16,30,4.3,1.22,0.064,0.61,79,877,485,0,7,-6.300000000000001,218,366,0,387,0.293,46.03,62.45,0.9500000000000001,0.23,893,0.8,17,7.300000000000001,21.0131,16.3873 +2012,2,4,17,30,6.1000000000000005,1.23,0.062,0.61,86,935,619,0,2,-6.6000000000000005,357,174,0,456,0.29,39.58,55.25,0.9500000000000001,0.23,893,0.8,19,6.7,25.7748,20.1764 +2012,2,4,18,30,7.5,1.25,0.062,0.61,90,959,693,7,2,-6.800000000000001,90,959,5,693,0.28800000000000003,35.410000000000004,51.1,0.9500000000000001,0.23,893,0.8,20,6,39.8694,31.2549 +2012,2,4,19,30,8.4,1.27,0.061,0.61,90,962,699,0,1,-7,90,962,0,699,0.28600000000000003,32.980000000000004,50.77,0.9500000000000001,0.23,892,0.8,22,5.4,40.2654,31.5685 +2012,2,4,20,30,8.700000000000001,1.29,0.062,0.61,87,941,636,0,0,-7,87,941,0,636,0.28400000000000003,32.160000000000004,54.32,0.9500000000000001,0.23,892,0.8,24,5,36.1027,28.2712 +2012,2,4,21,30,8.200000000000001,1.24,0.054,0.61,77,903,513,0,0,-7,77,903,0,513,0.28300000000000003,33.27,61.07,0.9500000000000001,0.23,892,0.8,27,4.9,28.1008,21.9340 +2012,2,4,22,30,6.7,1.27,0.055,0.61,65,804,339,0,0,-7,65,804,0,339,0.28400000000000003,37.09,70.08,0.9500000000000001,0.23,892,0.8,29,4.4,17.3423,13.4284 +2012,2,4,23,30,4,1.29,0.058,0.61,44,576,138,0,1,-6.6000000000000005,44,576,0,138,0.28500000000000003,46.1,80.54,0.9500000000000001,0.23,893,0.8,32,3.1,0.0000,0.0000 +2012,2,5,0,30,1.7000000000000002,1.32,0.062,0.61,0,0,0,0,0,-6,0,0,0,0,0.28600000000000003,56.56,92.07000000000001,0.9500000000000001,0.23,894,0.8,33,2.4000000000000004,0.0000,0.0000 +2012,2,5,1,30,0.8,1.32,0.067,0.61,0,0,0,0,4,-5.9,0,0,0,0,0.28700000000000003,60.94,104.08,0.9500000000000001,0.23,894,0.8,34,2.7,0.0000,0.0000 +2012,2,5,2,30,-0.2,1.31,0.069,0.61,0,0,0,0,4,-5.6000000000000005,0,0,0,0,0.28700000000000003,66.89,116.4,0.9500000000000001,0.23,895,0.9,34,2.6,0.0000,0.0000 +2012,2,5,3,30,-1.2000000000000002,1.28,0.068,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.28600000000000003,73.32000000000001,128.78,0.9500000000000001,0.23,895,0.9,33,2.2,0.0000,0.0000 +2012,2,5,4,30,-2,1.24,0.065,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.28500000000000003,78.63,140.89000000000001,0.9400000000000001,0.23,895,0.9,29,1.9000000000000001,0.0000,0.0000 +2012,2,5,5,30,-2.8000000000000003,1.22,0.062,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.28500000000000003,83.75,152.05,0.9400000000000001,0.23,895,0.9,22,1.7000000000000002,0.0000,0.0000 +2012,2,5,6,30,-3.4000000000000004,1.21,0.058,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.28500000000000003,87.27,160.25,0.9400000000000001,0.23,895,0.9,16,1.7000000000000002,0.0000,0.0000 +2012,2,5,7,30,-3.8000000000000003,1.21,0.054,0.61,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.28500000000000003,89.07000000000001,161,0.9400000000000001,0.23,895,0.9,11,1.8,0.0000,0.0000 +2012,2,5,8,30,-4.2,1.21,0.052000000000000005,0.61,0,0,0,0,4,-5.5,0,0,0,0,0.28500000000000003,90.53,153.65,0.9400000000000001,0.23,895,0.9,9,2,0.0000,0.0000 +2012,2,5,9,30,-4.5,1.21,0.051000000000000004,0.61,0,0,0,0,0,-5.7,0,0,0,0,0.28500000000000003,91.21000000000001,142.76,0.9400000000000001,0.23,895,0.9,8,2,0.0000,0.0000 +2012,2,5,10,30,-4.7,1.2,0.051000000000000004,0.61,0,0,0,0,0,-5.9,0,0,0,0,0.28500000000000003,91.31,130.73,0.9400000000000001,0.23,895,0.9,8,1.9000000000000001,0.0000,0.0000 +2012,2,5,11,30,-4.9,1.2,0.05,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.28500000000000003,91.62,118.36,0.9400000000000001,0.23,895,0.9,9,1.8,0.0000,0.0000 +2012,2,5,12,30,-5,1.2,0.05,0.61,0,0,0,0,0,-6.2,0,0,0,0,0.28500000000000003,91.46000000000001,106,0.9400000000000001,0.23,895,0.9,9,1.7000000000000002,0.0000,0.0000 +2012,2,5,13,30,-4,1.2,0.051000000000000004,0.61,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.28500000000000003,84.29,93.91,0.9400000000000001,0.23,896,0.9,8,2.4000000000000004,0.0000,0.0000 +2012,2,5,14,30,-1.4000000000000001,1.2,0.05,0.61,37,527,109,7,4,-6.4,59,1,7,59,0.28500000000000003,68.8,82.22,0.9400000000000001,0.23,896,0.9,20,3.2,0.0000,0.0000 +2012,2,5,15,30,1.4000000000000001,1.2,0.048,0.61,59,787,309,7,8,-7.2,143,36,7,154,0.28600000000000003,52.79,71.55,0.93,0.23,896,0.9,38,3.4000000000000004,7.7732,6.0070 +2012,2,5,16,30,3.6,1.2,0.044,0.61,70,900,490,7,7,-8.3,158,13,7,164,0.28700000000000003,41.47,62.22,0.93,0.23,896,0.9,48,3.3000000000000003,8.9182,6.9560 +2012,2,5,17,30,5.4,1.2,0.043000000000000003,0.61,77,953,624,0,8,-9.1,243,421,0,484,0.28800000000000003,34.35,54.99,0.93,0.23,895,0.9,56,2.9000000000000004,27.3906,21.4435 +2012,2,5,18,30,6.800000000000001,1.23,0.044,0.61,81,975,697,0,8,-9.4,231,528,0,565,0.289,30.36,50.81,0.93,0.23,894,0.9,65,2.4000000000000004,32.5415,25.5126 +2012,2,5,19,30,7.7,1.23,0.044,0.61,81,977,703,0,0,-9.700000000000001,81,977,0,703,0.29,28.02,50.47,0.93,0.23,893,0.9,75,2.1,40.5418,31.7880 +2012,2,5,20,30,8.1,1.23,0.043000000000000003,0.61,78,959,641,0,0,-9.9,78,959,0,641,0.29,26.73,54.03,0.93,0.23,892,0.9,85,1.9000000000000001,36.4335,28.5334 +2012,2,5,21,30,7.9,1.17,0.035,0.61,68,929,521,0,1,-10.200000000000001,68,929,0,521,0.291,26.62,60.81,0.93,0.23,892,0.8,97,1.8,28.5845,22.3151 +2012,2,5,22,30,6.7,1.17,0.034,0.61,57,841,346,0,0,-10.3,57,841,0,346,0.292,28.54,69.85000000000001,0.93,0.23,892,0.8,109,1.4000000000000001,17.7368,13.7378 +2012,2,5,23,30,3.9000000000000004,1.17,0.033,0.61,38,636,145,0,0,-7.6000000000000005,38,636,0,145,0.293,42.93,80.34,0.92,0.23,892,0.8,116,1.1,0.0000,0.0000 +2012,2,6,0,30,1.5,1.18,0.032,0.61,0,0,0,0,0,-8.8,0,0,0,0,0.294,46.410000000000004,91.88,0.92,0.23,892,0.8,120,1.2000000000000002,0.0000,0.0000 +2012,2,6,1,30,0.4,1.19,0.032,0.61,0,0,0,0,0,-9.4,0,0,0,0,0.294,47.93,103.91,0.92,0.23,892,0.8,124,1.3,0.0000,0.0000 +2012,2,6,2,30,-0.5,1.2,0.032,0.61,0,0,0,0,0,-9.9,0,0,0,0,0.294,49.22,116.23,0.92,0.23,892,0.8,129,1.4000000000000001,0.0000,0.0000 +2012,2,6,3,30,-1.3,1.21,0.032,0.61,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.294,50.7,128.6,0.93,0.23,892,0.8,137,1.4000000000000001,0.0000,0.0000 +2012,2,6,4,30,-2.1,1.22,0.033,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.293,52.61,140.70000000000002,0.93,0.23,892,0.8,148,1.4000000000000001,0.0000,0.0000 +2012,2,6,5,30,-2.7,1.23,0.034,0.61,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.292,54.06,151.82,0.93,0.23,892,0.9,161,1.4000000000000001,0.0000,0.0000 +2012,2,6,6,30,-3.1,1.24,0.036000000000000004,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.292,54.980000000000004,159.96,0.93,0.23,892,0.9,174,1.4000000000000001,0.0000,0.0000 +2012,2,6,7,30,-3.3000000000000003,1.25,0.038,0.61,0,0,0,0,0,-11,0,0,0,0,0.291,55.480000000000004,160.72,0.9400000000000001,0.23,892,0.9,186,1.4000000000000001,0.0000,0.0000 +2012,2,6,8,30,-3.2,1.25,0.041,0.61,0,0,0,0,1,-10.9,0,0,0,0,0.289,55.29,153.43,0.9400000000000001,0.23,892,0.9,194,1.4000000000000001,0.0000,0.0000 +2012,2,6,9,30,-3.1,1.26,0.043000000000000003,0.61,0,0,0,0,1,-10.700000000000001,0,0,0,0,0.28800000000000003,55.79,142.6,0.9400000000000001,0.23,891,0.9,198,1.3,0.0000,0.0000 +2012,2,6,10,30,-3.2,1.26,0.044,0.61,0,0,0,0,4,-10.5,0,0,0,0,0.28600000000000003,57.15,130.59,0.9400000000000001,0.23,891,0.9,198,1.3,0.0000,0.0000 +2012,2,6,11,30,-3.5,1.27,0.044,0.61,0,0,0,0,1,-10.4,0,0,0,0,0.28500000000000003,58.75,118.22,0.9400000000000001,0.23,891,0.9,198,1.2000000000000002,0.0000,0.0000 +2012,2,6,12,30,-3.7,1.28,0.044,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.28300000000000003,59.94,105.86,0.9400000000000001,0.23,891,0.9,197,1.2000000000000002,0.0000,0.0000 +2012,2,6,13,30,-2.3000000000000003,1.29,0.043000000000000003,0.61,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.28200000000000003,54.620000000000005,93.75,0.9400000000000001,0.23,891,0.9,194,1.9000000000000001,0.0000,0.0000 +2012,2,6,14,30,0.8,1.29,0.041,0.61,36,558,113,7,4,-9.700000000000001,38,0,7,38,0.281,45.19,82.04,0.9400000000000001,0.23,890,0.9,188,2.9000000000000004,0.0000,0.0000 +2012,2,6,15,30,3.8000000000000003,1.29,0.04,0.61,57,812,316,7,2,-9.5,147,477,7,300,0.28,37.11,71.35000000000001,0.93,0.23,890,0.8,183,3.7,15.1706,11.7270 +2012,2,6,16,30,6.2,1.29,0.04,0.61,68,909,496,7,2,-9.700000000000001,203,613,7,491,0.28,30.95,61.980000000000004,0.93,0.23,890,0.9,183,4.3,26.7418,20.8613 +2012,2,6,17,30,7.9,1.29,0.041,0.61,76,959,629,0,3,-9.5,328,297,0,500,0.28,28.12,54.72,0.93,0.23,889,0.9,186,4.6000000000000005,28.3313,22.1822 +2012,2,6,18,30,9.4,1.29,0.042,0.61,80,980,703,0,0,-8.8,80,980,0,703,0.281,26.78,50.51,0.93,0.23,888,0.9,191,4.9,40.5357,31.7829 +2012,2,6,19,30,10.5,1.29,0.045,0.61,81,978,708,0,2,-8,398,201,0,527,0.281,26.51,50.160000000000004,0.93,0.23,887,0.9,193,5,30.4270,23.8594 +2012,2,6,20,30,11,1.3,0.048,0.61,80,956,646,0,0,-7.300000000000001,80,956,0,646,0.281,27.07,53.74,0.9400000000000001,0.23,886,0.9,195,5,36.7645,28.7957 +2012,2,6,21,30,10.8,1.28,0.051000000000000004,0.61,75,907,521,0,0,-6.7,75,907,0,521,0.281,28.560000000000002,60.550000000000004,0.9400000000000001,0.23,886,0.9,195,4.7,28.6296,22.3537 +2012,2,6,22,30,9.4,1.26,0.052000000000000005,0.61,64,806,344,0,1,-6.300000000000001,64,806,0,344,0.28200000000000003,32.43,69.62,0.9400000000000001,0.23,885,1,193,3.6,17.6704,13.6902 +2012,2,6,23,30,6.5,1.24,0.051000000000000004,0.61,43,594,145,0,1,-5.2,43,594,0,145,0.28200000000000003,43.02,80.13,0.9400000000000001,0.23,885,1,185,2.2,0.0000,0.0000 +2012,2,7,0,30,4.1000000000000005,1.25,0.05,0.61,0,0,0,0,7,-4.9,0,0,0,0,0.28300000000000003,51.94,91.69,0.9400000000000001,0.24,886,1,176,1.9000000000000001,0.0000,0.0000 +2012,2,7,1,30,3.1,1.26,0.049,0.61,0,0,0,0,7,-5.2,0,0,0,0,0.28400000000000003,54.44,103.73,0.9400000000000001,0.24,886,1,171,2,0.0000,0.0000 +2012,2,7,2,30,2.5,1.26,0.052000000000000005,0.61,0,0,0,0,4,-5.300000000000001,0,0,0,0,0.28500000000000003,56.47,116.06,0.9400000000000001,0.24,886,1,168,2.2,0.0000,0.0000 +2012,2,7,3,30,1.9000000000000001,1.26,0.056,0.61,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.28600000000000003,59.050000000000004,128.43,0.9400000000000001,0.24,886,1,167,2.3000000000000003,0.0000,0.0000 +2012,2,7,4,30,1.3,1.27,0.06,0.61,0,0,0,0,1,-5.2,0,0,0,0,0.28700000000000003,62.11,140.51,0.9500000000000001,0.24,886,1,168,2.3000000000000003,0.0000,0.0000 +2012,2,7,5,30,0.6000000000000001,1.27,0.062,0.61,0,0,0,0,1,-4.9,0,0,0,0,0.28800000000000003,66.53,151.59,0.9500000000000001,0.24,886,1,173,2.2,0.0000,0.0000 +2012,2,7,6,30,-0.1,1.27,0.064,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.289,71.5,159.67000000000002,0.9500000000000001,0.24,886,1,181,1.9000000000000001,0.0000,0.0000 +2012,2,7,7,30,-1,1.26,0.063,0.61,0,0,0,0,4,-4.4,0,0,0,0,0.29,77.89,160.43,0.9400000000000001,0.24,886,1,191,1.4000000000000001,0.0000,0.0000 +2012,2,7,8,30,-1.6,1.26,0.062,0.61,0,0,0,0,7,-4.2,0,0,0,0,0.292,82.57000000000001,153.22,0.9400000000000001,0.24,886,1,215,1.1,0.0000,0.0000 +2012,2,7,9,30,-2,1.25,0.064,0.61,0,0,0,0,4,-4.1000000000000005,0,0,0,0,0.293,85.74,142.43,0.9400000000000001,0.24,887,1,268,1.1,0.0000,0.0000 +2012,2,7,10,30,-2.2,1.24,0.068,0.61,0,0,0,0,1,-4,0,0,0,0,0.295,87.21000000000001,130.44,0.9500000000000001,0.24,887,1,323,1.7000000000000002,0.0000,0.0000 +2012,2,7,11,30,-1.9000000000000001,1.22,0.074,0.61,0,0,0,0,1,-3.8000000000000003,0,0,0,0,0.297,86.58,118.08,0.9500000000000001,0.24,888,1,348,3,0.0000,0.0000 +2012,2,7,12,30,-1.7000000000000002,1.21,0.079,0.61,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.299,88.17,105.71000000000001,0.9500000000000001,0.24,889,0.9,357,4.3,0.0000,0.0000 +2012,2,7,13,30,-1.1,1.19,0.08700000000000001,0.61,0,0,0,0,0,-3,0,0,0,0,0.301,86.91,93.58,0.9500000000000001,0.24,890,0.9,182,5.5,0.0000,0.0000 +2012,2,7,14,30,0.2,1.18,0.091,0.61,45,455,110,7,4,-2.9000000000000004,48,0,7,48,0.303,79.45,81.86,0.9500000000000001,0.24,891,0.9,7,6.9,0.0000,0.0000 +2012,2,7,15,30,1.7000000000000002,1.17,0.091,0.61,75,728,310,0,4,-3.5,195,135,0,238,0.305,68.28,71.14,0.96,0.24,891,0.8,12,7.7,12.0586,9.3241 +2012,2,7,16,30,3,1.1500000000000001,0.08700000000000001,0.61,90,851,493,0,2,-4.2,288,200,0,382,0.305,59.31,61.74,0.96,0.24,892,0.8,13,7.6000000000000005,20.8372,16.2577 +2012,2,7,17,30,4.4,1.1500000000000001,0.078,0.61,95,924,633,7,2,-4.7,330,333,7,524,0.305,51.78,54.44,0.9500000000000001,0.24,892,0.7000000000000001,13,7.300000000000001,29.7289,23.2790 +2012,2,7,18,30,5.6000000000000005,1.09,0.063,0.61,93,971,714,7,2,-5.1000000000000005,360,369,7,596,0.305,46.1,50.21,0.9500000000000001,0.24,892,0.6000000000000001,14,6.9,34.4045,26.9779 +2012,2,7,19,30,6.2,1.08,0.057,0.61,90,980,722,0,4,-5.6000000000000005,347,25,0,363,0.303,42.59,49.85,0.9500000000000001,0.24,892,0.6000000000000001,15,6.5,20.9822,16.4546 +2012,2,7,20,30,6.2,1.08,0.056,0.61,86,969,663,7,4,-6.1000000000000005,356,65,7,395,0.303,40.87,53.45,0.9400000000000001,0.24,892,0.5,17,6.1000000000000005,22.5081,17.6312 +2012,2,7,21,30,5.5,1.1400000000000001,0.059000000000000004,0.61,80,920,536,0,4,-6.7,228,5,0,231,0.302,41.050000000000004,60.28,0.9400000000000001,0.24,892,0.5,19,5.6000000000000005,12.7143,9.9287 +2012,2,7,22,30,4,1.11,0.058,0.61,68,826,358,0,4,-7.300000000000001,219,64,0,242,0.301,43.65,69.38,0.9400000000000001,0.24,892,0.5,22,5,12.4572,9.6541 +2012,2,7,23,30,1.3,1.09,0.058,0.61,46,620,155,0,0,-7.7,46,620,0,155,0.301,51.09,79.92,0.9400000000000001,0.24,893,0.4,27,3.5,7.3898,5.6320 +2012,2,8,0,30,-1.1,1.07,0.057,0.61,0,0,0,0,4,-7.9,0,0,0,0,0.302,60.06,91.5,0.9400000000000001,0.24,894,0.4,34,2.4000000000000004,0.0000,0.0000 +2012,2,8,1,30,-2.5,1.05,0.056,0.61,0,0,0,0,4,-8.1,0,0,0,0,0.303,65.41,103.55,0.9500000000000001,0.24,895,0.4,40,2.2,0.0000,0.0000 +2012,2,8,2,30,-3.8000000000000003,1.04,0.056,0.61,0,0,0,0,1,-8.1,0,0,0,0,0.304,72.01,115.88,0.9500000000000001,0.24,895,0.4,44,1.9000000000000001,0.0000,0.0000 +2012,2,8,3,30,-4.800000000000001,1.03,0.054,0.61,0,0,0,0,0,-8,0,0,0,0,0.304,77.99,128.25,0.9400000000000001,0.24,895,0.4,47,1.5,0.0000,0.0000 +2012,2,8,4,30,-5.6000000000000005,1.03,0.051000000000000004,0.61,0,0,0,0,1,-8,0,0,0,0,0.304,83.36,140.31,0.9400000000000001,0.24,896,0.4,48,1.2000000000000002,0.0000,0.0000 +2012,2,8,5,30,-6,1.03,0.048,0.61,0,0,0,0,0,-7.9,0,0,0,0,0.304,86.18,151.36,0.9400000000000001,0.24,895,0.4,46,1.1,0.0000,0.0000 +2012,2,8,6,30,-6.300000000000001,1.03,0.047,0.61,0,0,0,0,0,-7.9,0,0,0,0,0.304,88.26,159.38,0.9400000000000001,0.24,895,0.4,43,1,0.0000,0.0000 +2012,2,8,7,30,-6.300000000000001,1.03,0.048,0.61,0,0,0,0,0,-7.9,0,0,0,0,0.304,88.11,160.13,0.9400000000000001,0.24,895,0.4,36,0.8,0.0000,0.0000 +2012,2,8,8,30,-6.2,1.02,0.05,0.61,0,0,0,0,0,-8,0,0,0,0,0.305,87.11,152.99,0.9400000000000001,0.24,895,0.4,25,0.7000000000000001,0.0000,0.0000 +2012,2,8,9,30,-5.9,1.01,0.052000000000000005,0.61,0,0,0,0,0,-8.1,0,0,0,0,0.306,84.76,142.25,0.9400000000000001,0.24,895,0.5,187,0.6000000000000001,0.0000,0.0000 +2012,2,8,10,30,-5.7,1.01,0.053,0.61,0,0,0,0,0,-8.1,0,0,0,0,0.307,83.14,130.28,0.9400000000000001,0.24,895,0.5,349,0.5,0.0000,0.0000 +2012,2,8,11,30,-5.5,1.02,0.054,0.61,0,0,0,0,0,-8.1,0,0,0,0,0.308,81.59,117.92,0.9400000000000001,0.24,895,0.6000000000000001,331,0.5,0.0000,0.0000 +2012,2,8,12,30,-5.2,1.04,0.053,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.309,79.59,105.55,0.9400000000000001,0.24,895,0.6000000000000001,306,0.6000000000000001,0.0000,0.0000 +2012,2,8,13,30,-3.8000000000000003,1.07,0.052000000000000005,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.31,71.61,93.42,0.9400000000000001,0.24,895,0.7000000000000001,254,1,0.0000,0.0000 +2012,2,8,14,30,-1.3,1.1,0.05,0.61,39,553,119,7,4,-8.3,75,7,7,76,0.311,58.99,81.68,0.9400000000000001,0.24,895,0.7000000000000001,206,1.9000000000000001,0.0000,0.0000 +2012,2,8,15,30,1.2000000000000002,1.12,0.05,0.61,62,795,321,0,1,-8.4,62,795,0,321,0.312,48.620000000000005,70.93,0.9400000000000001,0.24,895,0.8,193,2.6,16.2953,12.6037 +2012,2,8,16,30,3.5,1.1500000000000001,0.049,0.61,74,902,504,0,1,-8.4,74,902,0,504,0.313,41.410000000000004,61.49,0.9400000000000001,0.24,894,0.8,192,3.3000000000000003,27.5356,21.4873 +2012,2,8,17,30,5.6000000000000005,1.17,0.048,0.61,80,950,637,0,1,-8.3,80,950,0,637,0.314,36.02,54.160000000000004,0.9400000000000001,0.24,893,0.9,194,3.9000000000000004,36.1853,28.3376 +2012,2,8,18,30,7.300000000000001,1.1400000000000001,0.043000000000000003,0.61,82,978,712,0,0,-8,82,978,0,712,0.314,32.83,49.9,0.9400000000000001,0.24,892,0.9,197,4.2,41.1476,32.2683 +2012,2,8,19,30,8.6,1.17,0.042,0.61,81,981,718,0,0,-7.4,81,981,0,718,0.314,31.38,49.54,0.9400000000000001,0.24,891,0.9,201,4.3,41.5485,32.5860 +2012,2,8,20,30,9.5,1.18,0.042,0.61,78,959,653,0,0,-6.800000000000001,78,959,0,653,0.314,31.1,53.15,0.9400000000000001,0.24,890,1,204,4.3,37.2574,29.1878 +2012,2,8,21,30,9.700000000000001,1.2,0.043000000000000003,0.61,72,913,528,0,0,-6.1000000000000005,72,913,0,528,0.315,32.24,60.02,0.9400000000000001,0.24,889,1,206,4.1000000000000005,29.1058,22.7324 +2012,2,8,22,30,8.3,1.21,0.045,0.61,62,820,354,0,0,-5.6000000000000005,62,820,0,354,0.316,36.92,69.15,0.9400000000000001,0.24,889,1,203,3.1,18.2593,14.1545 +2012,2,8,23,30,5,1.23,0.047,0.61,43,607,151,0,0,-4.5,43,607,0,151,0.317,50.31,79.71000000000001,0.9400000000000001,0.24,889,1.1,194,2,7.1975,5.4866 +2012,2,9,0,30,2.8000000000000003,1.25,0.048,0.61,0,0,0,0,0,-5,0,0,0,0,0.318,56.34,91.31,0.9400000000000001,0.24,889,1.1,190,2.1,0.0000,0.0000 +2012,2,9,1,30,2.5,1.27,0.05,0.61,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.319,57.22,103.37,0.9400000000000001,0.24,889,1.1,192,2.6,0.0000,0.0000 +2012,2,9,2,30,2.3000000000000003,1.3,0.052000000000000005,0.61,0,0,0,0,1,-5,0,0,0,0,0.321,58.67,115.71000000000001,0.9400000000000001,0.24,889,1.2000000000000002,196,3.1,0.0000,0.0000 +2012,2,9,3,30,1.7000000000000002,1.31,0.054,0.61,0,0,0,0,7,-4.7,0,0,0,0,0.324,62.67,128.08,0.9400000000000001,0.24,889,1.2000000000000002,200,3.2,0.0000,0.0000 +2012,2,9,4,30,1.1,1.33,0.056,0.61,0,0,0,0,7,-4.2,0,0,0,0,0.327,67.71000000000001,140.12,0.9400000000000001,0.24,889,1.2000000000000002,204,3.1,0.0000,0.0000 +2012,2,9,5,30,0.6000000000000001,1.33,0.058,0.61,0,0,0,0,7,-3.7,0,0,0,0,0.33,73.03,151.12,0.9500000000000001,0.24,889,1.3,208,3,0.0000,0.0000 +2012,2,9,6,30,0.7000000000000001,1.31,0.062,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.333,75.35000000000001,159.08,0.9500000000000001,0.24,889,1.3,212,3.2,0.0000,0.0000 +2012,2,9,7,30,1,1.3,0.065,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.335,76.19,159.82,0.9500000000000001,0.24,888,1.3,216,3.5,0.0000,0.0000 +2012,2,9,8,30,1.1,1.28,0.068,0.61,0,0,0,0,7,-2.3000000000000003,0,0,0,0,0.336,77.8,152.76,0.9500000000000001,0.24,888,1.3,222,3.6,0.0000,0.0000 +2012,2,9,9,30,1.1,1.28,0.069,0.61,0,0,0,0,7,-2,0,0,0,0,0.336,79.53,142.06,0.9500000000000001,0.24,887,1.3,227,3.4000000000000004,0.0000,0.0000 +2012,2,9,10,30,1,1.28,0.067,0.61,0,0,0,0,7,-1.8,0,0,0,0,0.334,81.58,130.12,0.9500000000000001,0.24,887,1.3,232,3.2,0.0000,0.0000 +2012,2,9,11,30,1.1,1.29,0.066,0.61,0,0,0,0,7,-1.6,0,0,0,0,0.333,82.12,117.77,0.9500000000000001,0.24,887,1.3,237,3.2,0.0000,0.0000 +2012,2,9,12,30,1.3,1.28,0.069,0.61,0,0,0,0,7,-1.5,0,0,0,0,0.333,81.75,105.39,0.9500000000000001,0.24,887,1.3,244,3.1,0.0000,0.0000 +2012,2,9,13,30,2.1,1.27,0.074,0.61,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.333,77.66,93.24,0.9500000000000001,0.24,887,1.3,252,3.6,0.0000,0.0000 +2012,2,9,14,30,3.7,1.26,0.079,0.61,43,476,114,7,7,-1.2000000000000002,13,0,7,13,0.334,70.11,81.49,0.96,0.24,887,1.4000000000000001,263,4,0.0000,0.0000 +2012,2,9,15,30,5.5,1.26,0.08600000000000001,0.61,72,716,309,0,6,-0.7000000000000001,78,2,0,79,0.336,64.19,70.71000000000001,0.96,0.24,887,1.5,281,3.9000000000000004,4.0184,3.1090 +2012,2,9,16,30,6.6000000000000005,1.25,0.10300000000000001,0.61,95,806,483,0,6,0.5,202,18,0,211,0.337,64.85,61.24,0.96,0.24,887,1.6,302,3.5,11.5459,9.0111 +2012,2,9,17,30,7.1000000000000005,1.24,0.121,0.61,113,846,612,0,6,1.5,192,5,0,195,0.338,67.67,53.870000000000005,0.97,0.24,886,1.6,316,2.7,11.0913,8.6868 +2012,2,9,18,30,7.7,1.26,0.149,0.61,130,851,682,0,7,2.3000000000000003,86,0,0,86,0.339,68.84,49.59,0.97,0.24,885,1.5,308,2.1,4.9757,3.9023 +2012,2,9,19,30,9,1.25,0.129,0.61,123,878,696,0,7,2.9000000000000004,360,81,0,413,0.341,65.54,49.22,0.97,0.24,884,1.3,287,1.9000000000000001,23.9264,18.7668 +2012,2,9,20,30,10.5,1.22,0.099,0.61,105,889,641,0,7,3,312,84,0,363,0.342,59.72,52.86,0.96,0.24,884,1.2000000000000002,283,2,20.7366,16.2469 +2012,2,9,21,30,11.600000000000001,1.09,0.065,0.61,82,881,526,0,0,2.3000000000000003,82,881,0,526,0.343,53.02,59.75,0.9500000000000001,0.24,883,1.1,318,1.8,29.0413,22.6854 +2012,2,9,22,30,10.700000000000001,1.08,0.061,0.61,68,791,353,0,0,1.4000000000000001,68,791,0,353,0.34400000000000003,52.64,68.91,0.9500000000000001,0.24,883,1.1,206,1.6,18.2458,14.1479 +2012,2,9,23,30,7.6000000000000005,1.08,0.061,0.61,46,579,152,0,1,1.5,46,579,0,152,0.34500000000000003,65.13,79.51,0.9400000000000001,0.24,884,1.1,68,2.3000000000000003,7.2448,5.5241 +2012,2,10,0,30,4.7,1.1,0.064,0.61,0,0,0,0,8,1.1,0,0,0,0,0.34600000000000003,77.52,91.12,0.9500000000000001,0.24,885,1.1,65,3.6,0.0000,0.0000 +2012,2,10,1,30,3.1,1.12,0.07,0.61,0,0,0,0,7,0.7000000000000001,0,0,0,0,0.34700000000000003,84.35000000000001,103.2,0.9500000000000001,0.24,886,1.1,54,4.3,0.0000,0.0000 +2012,2,10,2,30,2,1.1300000000000001,0.08,0.61,0,0,0,0,7,-0.30000000000000004,0,0,0,0,0.34800000000000003,84.43,115.54,0.9500000000000001,0.24,887,1.1,44,4.2,0.0000,0.0000 +2012,2,10,3,30,1.3,1.1400000000000001,0.093,0.61,0,0,0,0,7,-1.6,0,0,0,0,0.34900000000000003,81.07000000000001,127.9,0.9500000000000001,0.24,888,1.1,32,3.7,0.0000,0.0000 +2012,2,10,4,30,0.9,1.1400000000000001,0.106,0.61,0,0,0,0,7,-2.2,0,0,0,0,0.34900000000000003,79.55,139.93,0.96,0.24,888,1.1,20,3.2,0.0000,0.0000 +2012,2,10,5,30,0.8,1.1400000000000001,0.115,0.61,0,0,0,0,7,-2.2,0,0,0,0,0.34700000000000003,80.28,150.88,0.96,0.24,889,1.1,12,2.9000000000000004,0.0000,0.0000 +2012,2,10,6,30,0.7000000000000001,1.1300000000000001,0.108,0.61,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.343,82.57000000000001,158.77,0.96,0.24,889,1,6,2.5,0.0000,0.0000 +2012,2,10,7,30,0.30000000000000004,1.11,0.088,0.61,0,0,0,0,4,-1.7000000000000002,0,0,0,0,0.337,86.25,159.52,0.9500000000000001,0.24,889,0.9,177,2,0.0000,0.0000 +2012,2,10,8,30,-0.6000000000000001,1.09,0.066,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.331,91.68,152.52,0.9400000000000001,0.24,889,0.8,347,1.9000000000000001,0.0000,0.0000 +2012,2,10,9,30,-1.4000000000000001,1.07,0.052000000000000005,0.61,0,0,0,0,1,-2,0,0,0,0,0.325,95.66,141.87,0.93,0.24,889,0.7000000000000001,341,2,0.0000,0.0000 +2012,2,10,10,30,-2,1.05,0.047,0.61,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.321,97.76,129.95,0.93,0.24,889,0.7000000000000001,341,2.3000000000000003,0.0000,0.0000 +2012,2,10,11,30,-2.3000000000000003,1.02,0.045,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.317,97.58,117.61,0.92,0.24,889,0.6000000000000001,340,2.5,0.0000,0.0000 +2012,2,10,12,30,-2.4000000000000004,1,0.045,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.312,96.34,105.23,0.92,0.24,890,0.6000000000000001,340,2.7,0.0000,0.0000 +2012,2,10,13,30,-1.1,0.96,0.044,0.61,0,0,0,0,0,-3.1,0,0,0,0,0.308,86.15,93.07000000000001,0.92,0.24,890,0.6000000000000001,340,3.2,0.0000,0.0000 +2012,2,10,14,30,2,0.9400000000000001,0.044,0.61,39,584,127,0,0,-3.2,39,584,0,127,0.304,68.69,81.29,0.92,0.24,891,0.6000000000000001,345,3.5,0.0000,0.0000 +2012,2,10,15,30,5.4,0.91,0.043000000000000003,0.61,60,824,335,0,0,-3.7,60,824,0,335,0.3,51.78,70.49,0.92,0.24,891,0.6000000000000001,355,3.1,17.0744,13.2140 +2012,2,10,16,30,8.1,0.91,0.043000000000000003,0.61,72,925,521,0,1,-4.7,72,925,0,521,0.297,40.01,60.980000000000004,0.92,0.24,891,0.6000000000000001,357,2.5,28.5548,22.2896 +2012,2,10,17,30,9.9,0.92,0.044,0.61,80,967,654,0,0,-4.9,80,967,0,654,0.295,34.78,53.58,0.93,0.24,891,0.7000000000000001,349,2,37.2457,29.1742 +2012,2,10,18,30,11.100000000000001,1.01,0.05,0.61,86,983,728,0,0,-5.1000000000000005,86,983,0,728,0.293,31.68,49.27,0.93,0.24,890,0.7000000000000001,330,1.7000000000000002,42.1678,33.0742 +2012,2,10,19,30,12,1.03,0.051000000000000004,0.61,87,984,734,0,0,-5.300000000000001,87,984,0,734,0.292,29.48,48.9,0.93,0.24,889,0.7000000000000001,296,1.9000000000000001,42.5708,33.3936 +2012,2,10,20,30,12.4,1.05,0.05,0.61,83,961,668,0,0,-5.4,83,961,0,668,0.293,28.400000000000002,52.550000000000004,0.93,0.24,889,0.8,264,2.3000000000000003,38.2091,29.9395 +2012,2,10,21,30,12.3,1.08,0.047,0.61,75,921,543,0,0,-5.7,75,921,0,543,0.294,28.07,59.480000000000004,0.93,0.24,888,0.8,245,2.5,30.0265,23.4585 +2012,2,10,22,30,10.9,1.11,0.046,0.61,63,834,366,0,0,-5.9,63,834,0,366,0.296,30.32,68.68,0.93,0.24,888,0.8,228,1.9000000000000001,18.9553,14.7019 +2012,2,10,23,30,8.1,1.1400000000000001,0.043000000000000003,0.61,43,636,161,0,0,-3.6,43,636,0,161,0.297,43.47,79.3,0.92,0.24,888,0.9,191,1.3,7.6747,5.8535 +2012,2,11,0,30,5.4,1.1400000000000001,0.041,0.61,0,0,0,0,0,-4.9,0,0,0,0,0.299,47.36,90.93,0.92,0.24,888,0.9,155,1.4000000000000001,0.0000,0.0000 +2012,2,11,1,30,4.3,1.1300000000000001,0.04,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.299,48.83,103.02,0.91,0.24,888,0.9,145,1.9000000000000001,0.0000,0.0000 +2012,2,11,2,30,3.8000000000000003,1.11,0.039,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.299,48.33,115.37,0.91,0.24,888,0.9,145,2.8000000000000003,0.0000,0.0000 +2012,2,11,3,30,3.1,1.09,0.04,0.61,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.298,48.980000000000004,127.72,0.91,0.24,889,0.9,145,3.8000000000000003,0.0000,0.0000 +2012,2,11,4,30,1.8,1.08,0.041,0.61,0,0,0,0,0,-6.7,0,0,0,0,0.298,53.47,139.73,0.91,0.24,890,0.8,142,4.4,0.0000,0.0000 +2012,2,11,5,30,0.30000000000000004,1.12,0.04,0.61,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.296,59.92,150.64000000000001,0.91,0.24,890,0.8,137,4.7,0.0000,0.0000 +2012,2,11,6,30,-1,1.1500000000000001,0.04,0.61,0,0,0,0,1,-6.5,0,0,0,0,0.294,66.16,158.47,0.91,0.24,891,0.8,131,4.9,0.0000,0.0000 +2012,2,11,7,30,-2.2,1.1300000000000001,0.041,0.61,0,0,0,0,1,-6.5,0,0,0,0,0.293,72.13,159.20000000000002,0.92,0.24,892,0.8,127,4.9,0.0000,0.0000 +2012,2,11,8,30,-3.2,1.11,0.042,0.61,0,0,0,0,1,-6.7,0,0,0,0,0.293,76.64,152.27,0.92,0.24,892,0.8,122,4.800000000000001,0.0000,0.0000 +2012,2,11,9,30,-4.2,1.07,0.043000000000000003,0.61,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.291,80.45,141.68,0.92,0.24,892,0.7000000000000001,118,4.6000000000000005,0.0000,0.0000 +2012,2,11,10,30,-5,1.06,0.045,0.61,0,0,0,0,4,-7.5,0,0,0,0,0.289,82.34,129.78,0.92,0.24,893,0.7000000000000001,114,4.4,0.0000,0.0000 +2012,2,11,11,30,-5.800000000000001,1.07,0.046,0.61,0,0,0,0,4,-8.200000000000001,0,0,0,0,0.28600000000000003,83.07000000000001,117.44,0.93,0.24,894,0.7000000000000001,106,4.3,0.0000,0.0000 +2012,2,11,12,30,-6.4,1.08,0.048,0.61,0,0,0,0,4,-9.200000000000001,0,0,0,0,0.28300000000000003,80.83,105.05,0.93,0.24,894,0.7000000000000001,97,4.3,0.0000,0.0000 +2012,2,11,13,30,-6.4,1.08,0.049,0.61,0,0,0,0,4,-10.5,0,0,0,0,0.28200000000000003,72.77,92.88,0.92,0.24,895,0.6000000000000001,91,4.7,0.0000,0.0000 +2012,2,11,14,30,-5.300000000000001,1.07,0.046,0.61,40,590,131,7,4,-11.8,33,0,7,33,0.281,60.03,81.09,0.92,0.24,896,0.6000000000000001,88,4.800000000000001,0.0000,0.0000 +2012,2,11,15,30,-3.6,1.07,0.045,0.61,61,826,340,0,4,-12.3,33,0,0,33,0.281,50.910000000000004,70.26,0.92,0.24,896,0.6000000000000001,89,4.4,1.6855,1.3048 +2012,2,11,16,30,-1.6,1.07,0.044,0.61,73,927,526,0,4,-12.200000000000001,101,0,0,101,0.279,44.34,60.72,0.92,0.24,896,0.6000000000000001,94,3.9000000000000004,5.5444,4.3286 +2012,2,11,17,30,0.30000000000000004,1.08,0.043000000000000003,0.61,79,977,663,0,4,-11.8,320,28,0,337,0.278,39.85,53.28,0.91,0.24,896,0.6000000000000001,100,3.5,19.2172,15.0542 +2012,2,11,18,30,1.8,1.04,0.035,0.61,78,1008,740,7,4,-11.3,278,667,7,716,0.277,37.1,48.95,0.91,0.24,895,0.6000000000000001,103,3.2,41.5196,32.5686 +2012,2,11,19,30,2.8000000000000003,1.04,0.036000000000000004,0.61,79,1009,746,0,0,-10.9,79,1009,0,746,0.276,35.67,48.58,0.91,0.24,894,0.6000000000000001,103,3.1,43.3148,33.9801 +2012,2,11,20,30,3.3000000000000003,1.02,0.036000000000000004,0.61,76,992,683,0,0,-10.700000000000001,76,992,0,683,0.274,35.18,52.25,0.9,0.24,893,0.6000000000000001,103,3.2,39.1152,30.6525 +2012,2,11,21,30,3.1,0.86,0.028,0.61,66,960,557,0,0,-10.5,66,960,0,557,0.274,36.07,59.21,0.9,0.24,893,0.6000000000000001,107,3.4000000000000004,30.8480,24.1037 +2012,2,11,22,30,2,0.92,0.03,0.61,58,875,379,0,1,-10.600000000000001,58,875,0,379,0.273,38.71,68.44,0.91,0.24,893,0.6000000000000001,113,3.7,19.6689,15.2594 +2012,2,11,23,30,0.2,1,0.032,0.61,42,684,171,0,1,-11,42,684,0,171,0.273,42.910000000000004,79.09,0.92,0.24,893,0.6000000000000001,115,3.5,8.1537,6.2207 +2012,2,12,0,30,-1.5,1.06,0.033,0.61,0,0,0,0,8,-11.200000000000001,0,0,0,0,0.274,47.72,90.19,0.92,0.24,894,0.6000000000000001,113,3.4000000000000004,0.0000,0.0000 +2012,2,12,1,30,-2.5,1.08,0.035,0.61,0,0,0,0,7,-11.600000000000001,0,0,0,0,0.275,49.49,102.84,0.93,0.24,895,0.7000000000000001,112,3.8000000000000003,0.0000,0.0000 +2012,2,12,2,30,-3.4000000000000004,1.09,0.038,0.61,0,0,0,0,7,-12.100000000000001,0,0,0,0,0.276,50.9,115.2,0.93,0.24,895,0.7000000000000001,111,4.2,0.0000,0.0000 +2012,2,12,3,30,-4.1000000000000005,1.1,0.041,0.61,0,0,0,0,7,-12.9,0,0,0,0,0.277,50.54,127.55,0.93,0.24,895,0.7000000000000001,114,4.4,0.0000,0.0000 +2012,2,12,4,30,-4.800000000000001,1.11,0.045,0.61,0,0,0,0,7,-13.600000000000001,0,0,0,0,0.278,50,139.53,0.93,0.24,895,0.8,119,4.4,0.0000,0.0000 +2012,2,12,5,30,-5.2,1.1300000000000001,0.05,0.61,0,0,0,0,7,-14.100000000000001,0,0,0,0,0.279,49.63,150.4,0.93,0.24,895,0.8,126,4.1000000000000005,0.0000,0.0000 +2012,2,12,6,30,-5.6000000000000005,1.1400000000000001,0.056,0.61,0,0,0,0,7,-14.4,0,0,0,0,0.28,49.82,158.16,0.9400000000000001,0.24,895,0.9,131,3.8000000000000003,0.0000,0.0000 +2012,2,12,7,30,-5.800000000000001,1.1500000000000001,0.065,0.61,0,0,0,0,7,-14.600000000000001,0,0,0,0,0.28,49.7,158.88,0.9400000000000001,0.24,895,0.9,136,3.6,0.0000,0.0000 +2012,2,12,8,30,-5.9,1.16,0.08,0.61,0,0,0,0,7,-14.8,0,0,0,0,0.28,49.44,152.02,0.9500000000000001,0.24,894,1,140,3.4000000000000004,0.0000,0.0000 +2012,2,12,9,30,-5.9,1.18,0.106,0.61,0,0,0,0,7,-14.9,0,0,0,0,0.28,49.24,141.47,0.9500000000000001,0.24,894,1,144,3.4000000000000004,0.0000,0.0000 +2012,2,12,10,30,-5.800000000000001,1.19,0.135,0.61,0,0,0,0,4,-14.8,0,0,0,0,0.28,49.06,129.6,0.96,0.24,893,1.1,148,3.5,0.0000,0.0000 +2012,2,12,11,30,-5.7,1.21,0.159,0.61,0,0,0,0,4,-14.700000000000001,0,0,0,0,0.279,49.17,117.27,0.97,0.24,892,1.2000000000000002,152,3.8000000000000003,0.0000,0.0000 +2012,2,12,12,30,-5.6000000000000005,1.21,0.186,0.61,0,0,0,0,4,-14.5,0,0,0,0,0.277,49.63,104.88,0.97,0.24,892,1.3,156,4.1000000000000005,0.0000,0.0000 +2012,2,12,13,30,-5.4,1.2,0.228,0.61,0,0,0,0,4,-14,0,0,0,0,0.276,50.9,92.69,0.98,0.24,892,1.3,161,4.3,0.0000,0.0000 +2012,2,12,14,30,-5.2,1.17,0.28,0.61,70,249,109,7,7,-12.8,28,0,7,28,0.276,55.2,80.88,0.98,0.24,892,1.4000000000000001,168,4.5,0.0000,0.0000 +2012,2,12,15,30,-4.9,1.1500000000000001,0.312,0.61,134,477,297,0,7,-11,7,0,0,7,0.277,62.34,70.02,0.98,0.24,891,1.4000000000000001,174,4.6000000000000005,0.3583,0.2775 +2012,2,12,16,30,-4.5,1.1400000000000001,0.29,0.61,163,632,474,0,7,-9.700000000000001,11,0,0,11,0.278,67.08,60.46,0.98,0.24,891,1.4000000000000001,180,4.800000000000001,0.6048,0.4722 +2012,2,12,17,30,-3.7,1.1500000000000001,0.25,0.61,168,738,612,0,8,-9.1,18,0,0,18,0.279,66.29,52.980000000000004,0.98,0.24,890,1.4000000000000001,186,5.2,1.0277,0.8052 +2012,2,12,18,30,-2.9000000000000004,1.1500000000000001,0.214,0.61,161,800,690,0,4,-8.6,35,0,0,35,0.28,64.92,48.620000000000005,0.98,0.24,888,1.4000000000000001,191,5.5,2.0319,1.5940 +2012,2,12,19,30,-2.2,1.18,0.17200000000000001,0.61,144,840,703,0,7,-8,205,2,0,206,0.28,64.51,48.25,0.97,0.24,887,1.4000000000000001,191,5.7,11.9744,9.3946 +2012,2,12,20,30,-1.6,1.2,0.146,0.61,127,845,648,0,7,-7.5,130,1,0,131,0.281,64.14,51.95,0.97,0.24,885,1.3,190,5.800000000000001,7.5114,5.8869 +2012,2,12,21,30,-1.1,1.2,0.127,0.61,109,810,527,0,4,-7,39,0,0,39,0.281,64.15,58.94,0.97,0.24,884,1.3,189,5.7,2.1632,1.6905 +2012,2,12,22,30,-1.1,1.19,0.116,0.61,88,723,357,0,4,-6.5,14,0,0,14,0.28200000000000003,66.81,68.2,0.97,0.24,884,1.2000000000000002,189,5.4,0.7280,0.5650 +2012,2,12,23,30,-1.8,1.18,0.116,0.61,60,503,157,0,7,-6,16,0,0,16,0.28300000000000003,72.98,78.88,0.97,0.24,884,1.2000000000000002,188,4.6000000000000005,0.7632,0.5825 +2012,2,13,0,30,-2.8000000000000003,1.17,0.125,0.61,0,0,0,0,4,-5.7,0,0,0,0,0.28700000000000003,80.36,90.03,0.97,0.24,883,1.2000000000000002,181,3.9000000000000004,0.0000,0.0000 +2012,2,13,1,30,-3.2,1.1500000000000001,0.136,0.61,0,0,0,0,7,-5.4,0,0,0,0,0.293,84.76,102.67,0.97,0.24,883,1.2000000000000002,178,4.1000000000000005,0.0000,0.0000 +2012,2,13,2,30,-3.4000000000000004,1.1400000000000001,0.137,0.61,0,0,0,0,7,-5,0,0,0,0,0.298,88.44,115.02,0.97,0.24,883,1.1,183,4.6000000000000005,0.0000,0.0000 +2012,2,13,3,30,-3.5,1.1300000000000001,0.133,0.61,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.302,90.42,127.37,0.97,0.24,882,1,186,4.800000000000001,0.0000,0.0000 +2012,2,13,4,30,-3.6,1.1400000000000001,0.13,0.61,0,0,0,0,4,-4.800000000000001,0,0,0,0,0.304,91.63,139.33,0.97,0.24,882,1,188,4.800000000000001,0.0000,0.0000 +2012,2,13,5,30,-3.6,1.1400000000000001,0.132,0.61,0,0,0,0,4,-4.800000000000001,0,0,0,0,0.306,91.61,150.16,0.97,0.24,881,1.1,193,4.800000000000001,0.0000,0.0000 +2012,2,13,6,30,-3.5,1.1300000000000001,0.15,0.61,0,0,0,0,4,-4.7,0,0,0,0,0.31,91.14,157.85,0.97,0.24,881,1.1,198,4.800000000000001,0.0000,0.0000 +2012,2,13,7,30,-3.3000000000000003,1.11,0.168,0.61,0,0,0,0,4,-4.7,0,0,0,0,0.314,90.15,158.56,0.97,0.24,880,1.2000000000000002,202,4.800000000000001,0.0000,0.0000 +2012,2,13,8,30,-3,1.11,0.168,0.61,0,0,0,0,8,-4.5,0,0,0,0,0.317,89.12,151.76,0.97,0.24,879,1.2000000000000002,207,4.800000000000001,0.0000,0.0000 +2012,2,13,9,30,-2.6,1.1400000000000001,0.14300000000000002,0.61,0,0,0,0,4,-4.2,0,0,0,0,0.321,88.69,141.26,0.97,0.24,879,1.1,214,4.9,0.0000,0.0000 +2012,2,13,10,30,-2.3000000000000003,1.17,0.101,0.61,0,0,0,0,4,-3.8000000000000003,0,0,0,0,0.324,89.36,129.41,0.96,0.24,878,0.9,221,4.800000000000001,0.0000,0.0000 +2012,2,13,11,30,-2.2,1.1400000000000001,0.078,0.61,0,0,0,0,4,-3.4000000000000004,0,0,0,0,0.327,91.69,117.09,0.9500000000000001,0.24,878,0.8,229,4.800000000000001,0.0000,0.0000 +2012,2,13,12,30,-2,1.12,0.069,0.61,0,0,0,0,4,-2.8000000000000003,0,0,0,0,0.328,94.10000000000001,104.7,0.9400000000000001,0.24,878,0.8,236,4.800000000000001,0.0000,0.0000 +2012,2,13,13,30,-0.9,1.12,0.061,0.61,0,0,0,0,4,-2.5,0,0,0,0,0.327,88.64,92.5,0.93,0.24,878,0.8,246,5.2,0.0000,0.0000 +2012,2,13,14,30,2,1.1400000000000001,0.052000000000000005,0.61,41,585,136,0,0,-1.9000000000000001,41,585,0,136,0.324,75.37,80.68,0.93,0.24,878,0.7000000000000001,259,6,0.0000,0.0000 +2012,2,13,15,30,5.800000000000001,1.16,0.046,0.61,61,825,346,0,0,-1.4000000000000001,61,825,0,346,0.32,60.07,69.79,0.92,0.24,878,0.7000000000000001,265,6.300000000000001,17.7463,13.7462 +2012,2,13,16,30,9.4,1.16,0.043000000000000003,0.61,72,934,536,0,0,-1.1,72,934,0,536,0.317,48.04,60.19,0.92,0.24,878,0.6000000000000001,270,6.9,29.5172,23.0515 +2012,2,13,17,30,12,1.16,0.04,0.61,77,985,674,0,0,-2.2,77,985,0,674,0.314,37.26,52.68,0.92,0.24,877,0.6000000000000001,275,7.4,38.5316,30.1909 +2012,2,13,18,30,13.4,1.1300000000000001,0.037,0.61,79,1009,750,0,8,-3.5,270,529,0,622,0.313,30.82,48.29,0.92,0.24,877,0.6000000000000001,276,7.5,36.1509,28.3622 +2012,2,13,19,30,14.200000000000001,1.12,0.038,0.61,79,1003,752,0,1,-4.5,79,1003,0,752,0.311,27.21,47.92,0.92,0.24,876,0.7000000000000001,277,7.2,43.7610,34.3359 +2012,2,13,20,30,14.4,1.12,0.04,0.61,78,984,688,0,8,-5.2,327,170,0,432,0.309,25.38,51.64,0.92,0.24,876,0.7000000000000001,277,6.800000000000001,24.8012,19.4392 +2012,2,13,21,30,14,1.1300000000000001,0.04,0.61,72,943,562,0,1,-5.5,72,943,0,562,0.304,25.560000000000002,58.67,0.92,0.24,876,0.7000000000000001,277,5.9,31.2188,24.4003 +2012,2,13,22,30,11.700000000000001,1.1400000000000001,0.039,0.61,61,861,384,0,0,-4.9,61,861,0,384,0.299,30.96,67.97,0.92,0.24,876,0.7000000000000001,277,4.1000000000000005,20.0076,15.5301 +2012,2,13,23,30,7.5,1.1500000000000001,0.038,0.61,43,677,176,0,0,-3,43,677,0,176,0.295,47.21,78.67,0.91,0.24,877,0.7000000000000001,277,2.6,8.4005,6.4131 +2012,2,14,0,30,4.800000000000001,1.1500000000000001,0.037,0.61,0,0,0,0,0,-3.7,0,0,0,0,0.294,54.27,89.89,0.91,0.24,877,0.7000000000000001,280,2.4000000000000004,0.0000,0.0000 +2012,2,14,1,30,4,1.16,0.038,0.61,0,0,0,0,1,-4,0,0,0,0,0.293,55.94,102.49000000000001,0.91,0.24,878,0.8,284,2.4000000000000004,0.0000,0.0000 +2012,2,14,2,30,3.4000000000000004,1.16,0.039,0.61,0,0,0,0,1,-4.2,0,0,0,0,0.292,57.36,114.85000000000001,0.91,0.24,878,0.8,288,2.4000000000000004,0.0000,0.0000 +2012,2,14,3,30,2.8000000000000003,1.1500000000000001,0.038,0.61,0,0,0,0,1,-4.5,0,0,0,0,0.291,58.68,127.19,0.91,0.24,879,0.8,291,2.3000000000000003,0.0000,0.0000 +2012,2,14,4,30,2.2,1.1500000000000001,0.034,0.61,0,0,0,0,1,-4.800000000000001,0,0,0,0,0.291,59.72,139.13,0.91,0.24,879,0.8,293,2.2,0.0000,0.0000 +2012,2,14,5,30,1.6,1.1500000000000001,0.033,0.61,0,0,0,0,1,-5.2,0,0,0,0,0.29,60.78,149.91,0.91,0.24,879,0.8,295,2,0.0000,0.0000 +2012,2,14,6,30,1.1,1.1500000000000001,0.035,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.29,61.7,157.53,0.91,0.24,879,0.8,296,1.9000000000000001,0.0000,0.0000 +2012,2,14,7,30,0.6000000000000001,1.1400000000000001,0.036000000000000004,0.61,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.289,63.34,158.23,0.91,0.24,879,0.9,297,1.7000000000000002,0.0000,0.0000 +2012,2,14,8,30,0.2,1.12,0.037,0.61,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.289,65.18,151.49,0.91,0.24,879,0.9,297,1.6,0.0000,0.0000 +2012,2,14,9,30,0,1.1,0.037,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.289,66.35,141.05,0.91,0.24,879,1,293,1.5,0.0000,0.0000 +2012,2,14,10,30,0,1.1,0.04,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.289,66.85,129.22,0.92,0.24,879,1,288,1.5,0.0000,0.0000 +2012,2,14,11,30,-0.1,1.1,0.042,0.61,0,0,0,0,1,-5.300000000000001,0,0,0,0,0.291,67.98,116.9,0.92,0.24,878,1,281,1.5,0.0000,0.0000 +2012,2,14,12,30,-0.2,1.1,0.042,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.291,68.95,104.51,0.91,0.24,879,1,270,1.5,0.0000,0.0000 +2012,2,14,13,30,1.7000000000000002,1.09,0.041,0.61,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.292,60.74,92.31,0.91,0.24,879,1,257,1.7000000000000002,0.0000,0.0000 +2012,2,14,14,30,5.4,1.08,0.041,0.61,39,601,139,7,4,-3.8000000000000003,90,17,7,93,0.293,51.65,80.47,0.91,0.24,879,1,243,2.2,0.0000,0.0000 +2012,2,14,15,30,9.1,1.09,0.042,0.61,59,819,346,0,4,-3.2,211,83,0,240,0.293,41.83,69.55,0.91,0.24,879,1,227,2.7,12.3358,9.5580 +2012,2,14,16,30,13.3,1.12,0.046,0.61,73,910,529,0,3,-2.5,290,240,0,411,0.294,33.38,59.910000000000004,0.92,0.24,879,1,219,3.6,22.6708,17.7076 +2012,2,14,17,30,16.2,1.1500000000000001,0.052000000000000005,0.61,83,952,664,0,1,-3.2,83,952,0,664,0.294,26.19,52.370000000000005,0.92,0.24,878,1,223,4.6000000000000005,38.0085,29.7841 +2012,2,14,18,30,17.400000000000002,1.22,0.07200000000000001,0.61,96,953,734,0,1,-3.5,96,953,0,734,0.295,23.73,47.96,0.93,0.24,877,1,226,5,42.7078,33.5092 +2012,2,14,19,30,17.8,1.2,0.07100000000000001,0.61,96,955,741,0,8,-3.9000000000000004,277,504,0,617,0.296,22.490000000000002,47.58,0.93,0.24,876,1,229,5.2,35.9455,28.2061 +2012,2,14,20,30,17.8,1.16,0.067,0.61,91,936,676,0,0,-4.1000000000000005,91,936,0,676,0.297,22.22,51.33,0.93,0.24,876,1.1,230,5.300000000000001,38.8566,30.4588 +2012,2,14,21,30,17,1.08,0.061,0.61,82,898,552,7,7,-4,172,681,7,529,0.298,23.59,58.4,0.9400000000000001,0.24,876,1.1,231,4.9,29.4291,23.0046 +2012,2,14,22,30,14.9,1.06,0.07,0.61,73,794,374,0,4,-3.3000000000000003,15,0,0,15,0.299,28.32,67.73,0.9500000000000001,0.24,876,1.1,234,3.5,0.7831,0.6080 +2012,2,14,23,30,12,1.03,0.076,0.61,53,580,169,0,8,-1,11,0,0,11,0.299,40.480000000000004,78.47,0.9500000000000001,0.24,877,1.1,241,2.1,0.5254,0.4012 +2012,2,15,0,30,10,1.01,0.062,0.61,0,0,0,7,4,-0.4,0,0,7,0,0.299,48.27,89.73,0.9400000000000001,0.24,877,1.1,248,1.6,0.0000,0.0000 +2012,2,15,1,30,9.200000000000001,0.9400000000000001,0.048,0.61,0,0,0,0,4,-1,0,0,0,0,0.299,48.77,102.31,0.93,0.24,878,1,248,1.6,0.0000,0.0000 +2012,2,15,2,30,8.1,0.84,0.042,0.61,0,0,0,0,3,-1.7000000000000002,0,0,0,0,0.299,49.86,114.68,0.92,0.24,878,0.9,245,2,0.0000,0.0000 +2012,2,15,3,30,6.9,0.76,0.042,0.61,0,0,0,0,1,-2.3000000000000003,0,0,0,0,0.299,52.02,127.01,0.92,0.24,878,0.8,246,2.7,0.0000,0.0000 +2012,2,15,4,30,6.2,0.76,0.047,0.61,0,0,0,0,1,-2.6,0,0,0,0,0.299,53.120000000000005,138.93,0.93,0.24,878,0.8,251,3.5,0.0000,0.0000 +2012,2,15,5,30,5.9,0.8,0.051000000000000004,0.61,0,0,0,0,4,-2.8000000000000003,0,0,0,0,0.298,53.7,149.66,0.93,0.24,878,0.8,254,4.1000000000000005,0.0000,0.0000 +2012,2,15,6,30,5.1000000000000005,0.85,0.042,0.61,0,0,0,0,4,-2.7,0,0,0,0,0.299,57.21,157.21,0.92,0.24,878,0.7000000000000001,255,4.3,0.0000,0.0000 +2012,2,15,7,30,4,0.9,0.033,0.61,0,0,0,0,4,-2.4000000000000004,0,0,0,0,0.299,63.120000000000005,157.9,0.91,0.24,878,0.5,254,4.2,0.0000,0.0000 +2012,2,15,8,30,2.8000000000000003,0.89,0.031,0.61,0,0,0,0,1,-2.1,0,0,0,0,0.299,70.13,151.22,0.9,0.24,878,0.5,251,4,0.0000,0.0000 +2012,2,15,9,30,1.8,0.88,0.032,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.298,75.13,140.83,0.9,0.24,878,0.5,247,3.8000000000000003,0.0000,0.0000 +2012,2,15,10,30,1,0.87,0.033,0.61,0,0,0,0,1,-2.5,0,0,0,0,0.298,77.18,129.02,0.9,0.24,878,0.5,242,3.8000000000000003,0.0000,0.0000 +2012,2,15,11,30,0.5,0.87,0.035,0.61,0,0,0,0,1,-3.2,0,0,0,0,0.3,76.32000000000001,116.72,0.91,0.24,879,0.5,240,4,0.0000,0.0000 +2012,2,15,12,30,0.2,0.86,0.037,0.61,0,0,0,0,1,-3.9000000000000004,0,0,0,0,0.304,73.89,104.32000000000001,0.91,0.24,879,0.5,238,4.4,0.0000,0.0000 +2012,2,15,13,30,1.1,0.9,0.039,0.61,0,0,0,0,1,-4.6000000000000005,0,0,0,0,0.307,65.67,92.10000000000001,0.91,0.24,879,0.5,237,5.1000000000000005,0.0000,0.0000 +2012,2,15,14,30,3.8000000000000003,0.9500000000000001,0.039,0.61,40,631,147,7,4,-5,97,65,7,108,0.308,52.5,80.25,0.91,0.24,880,0.6000000000000001,247,6.300000000000001,0.0000,0.0000 +2012,2,15,15,30,7,0.98,0.041,0.61,60,845,359,0,1,-5.300000000000001,60,845,0,359,0.305,41.33,69.3,0.92,0.24,880,0.6000000000000001,266,7.300000000000001,18.4930,14.3330 +2012,2,15,16,30,9.5,1.01,0.045,0.61,73,927,542,7,2,-5.1000000000000005,225,598,7,527,0.301,35.300000000000004,59.63,0.92,0.24,880,0.7000000000000001,279,7.7,29.1167,22.7458 +2012,2,15,17,30,11.100000000000001,1.04,0.048,0.61,82,971,679,7,2,-4.7,257,680,7,675,0.298,32.71,52.06,0.92,0.24,881,0.7000000000000001,287,7.5,38.6869,30.3187 +2012,2,15,18,30,12.200000000000001,1.06,0.047,0.61,85,993,754,7,2,-4.3,85,993,5,754,0.296,31.37,47.62,0.92,0.24,881,0.7000000000000001,297,7.2,43.9211,34.4641 +2012,2,15,19,30,12.8,1.08,0.047,0.61,85,995,761,0,0,-3.9000000000000004,85,995,0,761,0.294,31.04,47.24,0.92,0.24,881,0.7000000000000001,310,6.7,44.3839,34.8305 +2012,2,15,20,30,12.9,1.1,0.047,0.61,82,978,697,0,0,-3.7,82,978,0,697,0.292,31.310000000000002,51.02,0.92,0.24,882,0.7000000000000001,323,6.1000000000000005,40.1118,31.4458 +2012,2,15,21,30,12.5,1.11,0.047,0.61,76,936,570,0,0,-3.6,76,936,0,570,0.292,32.33,58.120000000000005,0.92,0.24,882,0.7000000000000001,334,5.5,31.7580,24.8285 +2012,2,15,22,30,11.200000000000001,1.1300000000000001,0.048,0.61,65,851,391,0,0,-3.5,65,851,0,391,0.292,35.57,67.49,0.92,0.24,882,0.7000000000000001,347,4.3,20.4537,15.8842 +2012,2,15,23,30,7.9,1.1400000000000001,0.049,0.61,47,662,182,0,0,-2.8000000000000003,47,662,0,182,0.292,46.72,78.26,0.93,0.24,883,0.7000000000000001,185,2.7,8.6997,6.6461 +2012,2,16,0,30,4.9,1.16,0.05,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.293,59.300000000000004,89.56,0.93,0.24,885,0.7000000000000001,24,1.9000000000000001,0.0000,0.0000 +2012,2,16,1,30,3.5,1.16,0.052000000000000005,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.293,65.54,102.14,0.93,0.24,886,0.7000000000000001,38,2.1,0.0000,0.0000 +2012,2,16,2,30,2.5,1.17,0.053,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.293,71.46000000000001,114.51,0.93,0.24,887,0.7000000000000001,47,2.2,0.0000,0.0000 +2012,2,16,3,30,1.5,1.17,0.052000000000000005,0.61,0,0,0,0,0,-2,0,0,0,0,0.293,77.44,126.83,0.93,0.24,887,0.7000000000000001,53,2.1,0.0000,0.0000 +2012,2,16,4,30,0.6000000000000001,1.18,0.05,0.61,0,0,0,0,0,-2,0,0,0,0,0.292,82.9,138.73,0.93,0.24,887,0.7000000000000001,57,2,0.0000,0.0000 +2012,2,16,5,30,-0.30000000000000004,1.17,0.048,0.61,0,0,0,0,0,-2,0,0,0,0,0.291,88.43,149.41,0.92,0.24,887,0.6000000000000001,58,1.8,0.0000,0.0000 +2012,2,16,6,30,-1.2000000000000002,1.16,0.046,0.61,0,0,0,0,1,-2,0,0,0,0,0.29,94.02,156.89000000000001,0.92,0.24,888,0.6000000000000001,58,1.6,0.0000,0.0000 +2012,2,16,7,30,-1.9000000000000001,1.1500000000000001,0.045,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.29,97.81,157.57,0.92,0.24,888,0.6000000000000001,55,1.4000000000000001,0.0000,0.0000 +2012,2,16,8,30,-2.5,1.1300000000000001,0.043000000000000003,0.61,0,0,0,0,0,-2.5,0,0,0,0,0.29,100,150.95000000000002,0.92,0.24,888,0.6000000000000001,51,1.4000000000000001,0.0000,0.0000 +2012,2,16,9,30,-3,1.12,0.043000000000000003,0.61,0,0,0,0,0,-3,0,0,0,0,0.29,100,140.6,0.92,0.24,889,0.7000000000000001,45,1.4000000000000001,0.0000,0.0000 +2012,2,16,10,30,-3.4000000000000004,1.12,0.043000000000000003,0.61,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.291,100,128.82,0.92,0.24,889,0.7000000000000001,45,1.5,0.0000,0.0000 +2012,2,16,11,30,-3.7,1.11,0.046,0.61,0,0,0,0,4,-3.7,0,0,0,0,0.292,100,116.52,0.93,0.24,889,0.8,52,1.6,0.0000,0.0000 +2012,2,16,12,30,-3.6,1.11,0.05,0.61,0,0,0,0,4,-3.9000000000000004,0,0,0,0,0.292,97.48,104.12,0.93,0.24,890,0.9,61,1.7000000000000002,0.0000,0.0000 +2012,2,16,13,30,-2.3000000000000003,1.11,0.056,0.61,0,0,0,0,4,-4.1000000000000005,0,0,0,0,0.291,87.15,91.9,0.9400000000000001,0.24,890,0.9,69,2.4000000000000004,0.0000,0.0000 +2012,2,16,14,30,0.5,1.11,0.06,0.61,45,576,145,0,0,-4.1000000000000005,45,576,0,145,0.29,71.06,80.02,0.9400000000000001,0.24,891,0.9,83,3,0.0000,0.0000 +2012,2,16,15,30,3.7,1.12,0.065,0.61,70,792,353,0,4,-3.7,218,71,0,244,0.28800000000000003,58.45,69.05,0.9500000000000001,0.24,891,0.9,101,3.3000000000000003,12.5965,9.7658 +2012,2,16,16,30,6.4,1.1300000000000001,0.068,0.61,85,884,535,0,4,-3.2,302,57,0,331,0.28500000000000003,50.44,59.35,0.9500000000000001,0.24,890,1,112,3.5,18.3171,14.3113 +2012,2,16,17,30,8.700000000000001,1.1300000000000001,0.07100000000000001,0.61,94,932,671,7,2,-2.7,269,636,7,663,0.281,44.67,51.74,0.9500000000000001,0.24,889,1,123,3.5,38.0478,29.8210 +2012,2,16,18,30,10.5,1.12,0.074,0.61,100,951,745,0,4,-2.4000000000000004,428,147,0,527,0.277,40.4,47.28,0.9500000000000001,0.24,889,1,135,3.7,30.7323,24.1171 +2012,2,16,19,30,11.5,1.12,0.083,0.61,105,940,747,0,8,-2.3000000000000003,292,453,0,602,0.274,37.99,46.9,0.9500000000000001,0.24,888,1.1,140,4.1000000000000005,35.1489,27.5855 +2012,2,16,20,30,11.9,1.1300000000000001,0.09,0.61,104,913,683,0,7,-2.4000000000000004,292,40,0,317,0.273,36.79,50.7,0.96,0.24,888,1.1,139,4.1000000000000005,18.2654,14.3206 +2012,2,16,21,30,11.700000000000001,1.16,0.109,0.61,104,841,551,0,7,-2.4000000000000004,288,120,0,353,0.273,37.36,57.85,0.96,0.24,887,1.2000000000000002,135,3.8000000000000003,19.6960,15.4004 +2012,2,16,22,30,10.5,1.16,0.114,0.61,90,733,373,0,2,-2.1,234,138,0,287,0.274,41.480000000000004,67.25,0.97,0.24,887,1.3,133,3.2,15.0428,11.6850 +2012,2,16,23,30,8.200000000000001,1.1400000000000001,0.121,0.61,64,513,170,7,4,-0.9,103,5,7,104,0.278,52.69,78.05,0.97,0.24,887,1.3,132,2.6,4.9759,3.8027 +2012,2,17,0,30,6.4,1.12,0.127,0.61,0,0,0,7,4,-0.30000000000000004,0,0,7,0,0.28300000000000003,62.42,89.39,0.97,0.24,888,1.3,130,2.6,0.0000,0.0000 +2012,2,17,1,30,5.300000000000001,1.12,0.132,0.61,0,0,0,0,4,0.30000000000000004,0,0,0,0,0.28700000000000003,70.12,101.96000000000001,0.97,0.24,888,1.4000000000000001,122,2.6,0.0000,0.0000 +2012,2,17,2,30,4.3,1.1400000000000001,0.13,0.61,0,0,0,0,4,0.8,0,0,0,0,0.29,78.05,114.33,0.97,0.24,888,1.3,109,2.2,0.0000,0.0000 +2012,2,17,3,30,3.2,1.17,0.11900000000000001,0.61,0,0,0,0,7,0.9,0,0,0,0,0.29,85.13,126.65,0.96,0.24,887,1.3,100,1.7000000000000002,0.0000,0.0000 +2012,2,17,4,30,2,1.18,0.105,0.61,0,0,0,0,7,0.7000000000000001,0,0,0,0,0.289,91.27,138.52,0.96,0.24,887,1.3,103,1.6,0.0000,0.0000 +2012,2,17,5,30,1.4000000000000001,1.17,0.105,0.61,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.29,92.31,149.16,0.96,0.24,887,1.3,116,1.6,0.0000,0.0000 +2012,2,17,6,30,1.7000000000000002,1.1300000000000001,0.13,0.61,0,0,0,0,7,-0.1,0,0,0,0,0.291,87.78,156.57,0.96,0.24,887,1.3,126,1.8,0.0000,0.0000 +2012,2,17,7,30,1.8,1.11,0.14100000000000001,0.61,0,0,0,0,7,-0.4,0,0,0,0,0.292,85.09,157.22,0.97,0.24,886,1.3,133,1.7000000000000002,0.0000,0.0000 +2012,2,17,8,30,1.7000000000000002,1.1,0.15,0.61,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.291,84.13,150.66,0.97,0.24,886,1.4000000000000001,141,1.4000000000000001,0.0000,0.0000 +2012,2,17,9,30,1.5,1.09,0.147,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.291,84.98,140.36,0.97,0.24,886,1.4000000000000001,139,0.9,0.0000,0.0000 +2012,2,17,10,30,1.3,1.1,0.135,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.293,86.18,128.61,0.97,0.24,885,1.4000000000000001,116,0.7000000000000001,0.0000,0.0000 +2012,2,17,11,30,1.3,1.1,0.125,0.61,0,0,0,0,4,-0.8,0,0,0,0,0.295,86.14,116.32000000000001,0.97,0.24,885,1.4000000000000001,127,0.6000000000000001,0.0000,0.0000 +2012,2,17,12,30,1.1,1.07,0.147,0.61,0,0,0,0,7,-0.6000000000000001,0,0,0,0,0.296,88.36,103.92,0.97,0.24,886,1.5,173,0.6000000000000001,0.0000,0.0000 +2012,2,17,13,30,1.2000000000000002,1.06,0.165,0.61,0,0,0,0,7,-0.4,0,0,0,0,0.297,89.19,91.69,0.97,0.24,886,1.5,160,0.8,0.0000,0.0000 +2012,2,17,14,30,2.1,1.08,0.155,0.61,63,403,134,7,4,-0.1,26,0,7,26,0.298,85.38,79.8,0.97,0.24,887,1.5,112,0.8,1.2394,0.9447 +2012,2,17,15,30,3.7,1.08,0.151,0.61,98,657,336,0,4,0.30000000000000004,41,0,0,41,0.296,78.67,68.8,0.97,0.24,886,1.4000000000000001,107,1,2.1212,1.6450 +2012,2,17,16,30,6.4,1.09,0.15,0.61,118,776,517,0,4,1.2000000000000002,99,0,0,99,0.294,69.26,59.06,0.97,0.24,886,1.4000000000000001,144,1.6,5.4875,4.2881 +2012,2,17,17,30,8.6,1.08,0.15,0.61,131,839,654,0,4,2.2,147,0,0,147,0.292,64.03,51.42,0.97,0.24,885,1.3,174,2.2,8.4466,6.6209 +2012,2,17,18,30,9.8,1.09,0.145,0.61,134,871,729,0,4,2.4000000000000004,69,0,0,69,0.29,59.94,46.93,0.97,0.24,884,1.3,182,2.4000000000000004,4.0283,3.1615 +2012,2,17,19,30,10.600000000000001,1.11,0.133,0.61,129,889,740,0,4,2.5,383,46,0,414,0.28600000000000003,57.120000000000005,46.56,0.97,0.24,884,1.2000000000000002,186,2.5,24.1982,18.9927 +2012,2,17,20,30,10.8,1.12,0.121,0.61,119,879,679,0,4,2.4000000000000004,210,0,0,210,0.28400000000000003,56.27,50.39,0.96,0.24,883,1.2000000000000002,187,2.5,12.1143,9.4988 +2012,2,17,21,30,10.600000000000001,1.12,0.111,0.61,105,840,555,0,4,2.4000000000000004,114,0,0,115,0.28300000000000003,57.03,57.57,0.96,0.24,883,1.2000000000000002,191,2.5,6.4260,5.0252 +2012,2,17,22,30,9.8,1.12,0.106,0.61,87,749,380,0,4,2.5,34,0,0,34,0.28400000000000003,60.43,67.01,0.96,0.24,883,1.2000000000000002,197,2.1,1.7855,1.3873 +2012,2,17,23,30,7.800000000000001,1.1300000000000001,0.10200000000000001,0.61,60,551,176,0,4,2.7,13,0,0,13,0.28500000000000003,70.29,77.84,0.96,0.24,883,1.2000000000000002,198,1.4000000000000001,0.6226,0.4760 +2012,2,18,0,30,5.7,1.1500000000000001,0.098,0.61,0,0,0,0,0,2.6,0,0,0,0,0.28700000000000003,80.69,89.23,0.96,0.24,883,1.1,198,1.1,0.0000,0.0000 +2012,2,18,1,30,4.4,1.17,0.089,0.61,0,0,0,0,1,2.6,0,0,0,0,0.28800000000000003,88.3,101.79,0.9500000000000001,0.24,884,1.1,202,1.2000000000000002,0.0000,0.0000 +2012,2,18,2,30,3.4000000000000004,1.2,0.079,0.61,0,0,0,0,0,2.6,0,0,0,0,0.289,94.35000000000001,114.16,0.9500000000000001,0.24,884,1.1,207,1.3,0.0000,0.0000 +2012,2,18,3,30,2.7,1.2,0.074,0.61,0,0,0,0,0,2.5,0,0,0,0,0.291,98.8,126.47,0.9500000000000001,0.24,884,1.1,213,1.2000000000000002,0.0000,0.0000 +2012,2,18,4,30,2.1,1.2,0.07200000000000001,0.61,0,0,0,0,0,2.1,0,0,0,0,0.293,100,138.32,0.9500000000000001,0.24,884,1.1,228,1.2000000000000002,0.0000,0.0000 +2012,2,18,5,30,1.6,1.2,0.07200000000000001,0.61,0,0,0,0,0,1.6,0,0,0,0,0.294,100,148.9,0.9500000000000001,0.24,884,1.1,259,1.2000000000000002,0.0000,0.0000 +2012,2,18,6,30,1,1.19,0.073,0.61,0,0,0,0,1,1,0,0,0,0,0.296,100,156.24,0.9500000000000001,0.24,883,1.1,297,1.4000000000000001,0.0000,0.0000 +2012,2,18,7,30,0.8,1.18,0.075,0.61,0,0,0,0,8,0.8,0,0,0,0,0.297,100,156.88,0.96,0.24,882,1.1,322,1.9000000000000001,0.0000,0.0000 +2012,2,18,8,30,1,1.16,0.085,0.61,0,0,0,0,4,1,0,0,0,0,0.298,100,150.37,0.96,0.24,882,1.1,338,2.1,0.0000,0.0000 +2012,2,18,9,30,1.5,1.11,0.111,0.61,0,0,0,0,8,1.5,0,0,0,0,0.299,100,140.13,0.97,0.24,882,1.2000000000000002,174,2.2,0.0000,0.0000 +2012,2,18,10,30,1.8,1.09,0.124,0.61,0,0,0,0,7,1.4000000000000001,0,0,0,0,0.3,97.23,128.4,0.97,0.24,883,1.3,3,2.8000000000000003,0.0000,0.0000 +2012,2,18,11,30,1.5,1.08,0.124,0.61,0,0,0,0,7,0.6000000000000001,0,0,0,0,0.303,93.89,116.12,0.97,0.24,883,1.3,6,3.4000000000000004,0.0000,0.0000 +2012,2,18,12,30,1,1.07,0.136,0.61,0,0,0,0,7,-0.30000000000000004,0,0,0,0,0.305,91.26,103.72,0.98,0.24,883,1.3,6,3.8000000000000003,0.0000,0.0000 +2012,2,18,13,30,0.8,1.08,0.146,0.61,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.305,86.71000000000001,91.47,0.98,0.24,884,1.3,6,4.2,0.0000,0.0000 +2012,2,18,14,30,1.4000000000000001,1.07,0.145,0.61,63,431,141,7,7,-1.7000000000000002,48,1,7,49,0.304,79.96000000000001,79.56,0.98,0.24,885,1.2000000000000002,10,4.7,2.3355,1.7807 +2012,2,18,15,30,2.4000000000000004,1.07,0.164,0.61,103,651,341,0,7,-1.5,111,6,0,113,0.302,75.58,68.54,0.98,0.24,885,1.2000000000000002,16,4.800000000000001,5.8593,4.5453 +2012,2,18,16,30,3.6,1.06,0.167,0.61,126,766,523,0,4,-0.9,54,0,0,54,0.3,72.27,58.77,0.98,0.24,885,1.2000000000000002,22,4.5,2.9980,2.3431 +2012,2,18,17,30,4.9,1.05,0.147,0.61,130,846,662,0,4,-0.30000000000000004,146,0,0,146,0.3,68.99,51.09,0.97,0.24,885,1.2000000000000002,28,4,8.3999,6.5850 +2012,2,18,18,30,6.300000000000001,1.04,0.132,0.61,129,891,741,0,4,0.2,284,1,0,285,0.3,65.1,46.58,0.97,0.24,885,1.1,30,3.4000000000000004,16.6572,13.0738 +2012,2,18,19,30,7.4,1.03,0.122,0.61,125,906,752,0,4,0.5,168,0,0,168,0.299,61.51,46.21,0.96,0.24,885,1,26,3,9.8303,7.7162 +2012,2,18,20,30,8,1.02,0.11,0.61,115,897,691,0,4,0.4,103,0,0,103,0.299,58.84,50.07,0.96,0.24,884,1,16,2.7,5.9488,4.6649 +2012,2,18,21,30,8.200000000000001,1.02,0.1,0.61,101,863,568,0,4,0.2,95,0,0,95,0.3,57.07,57.300000000000004,0.9500000000000001,0.24,884,0.9,7,2.5,5.3159,4.1576 +2012,2,18,22,30,7.6000000000000005,1.02,0.092,0.61,84,779,391,0,4,-0.1,76,0,0,76,0.302,58.07,66.78,0.9500000000000001,0.24,884,0.9,3,2,3.9986,3.1075 +2012,2,18,23,30,5.7,1.02,0.085,0.61,58,597,186,0,4,-0.2,63,0,0,63,0.303,65.92,77.63,0.9500000000000001,0.24,885,0.8,19,1.3,3.0208,2.3103 +2012,2,19,0,30,3.6,1.01,0.078,0.61,0,0,0,0,1,-0.6000000000000001,0,0,0,0,0.305,74.18,89.06,0.9400000000000001,0.24,885,0.7000000000000001,53,0.9,0.0000,0.0000 +2012,2,19,1,30,2.2,0.99,0.07100000000000001,0.61,0,0,0,0,4,-0.7000000000000001,0,0,0,0,0.307,80.86,101.61,0.9400000000000001,0.24,885,0.7000000000000001,90,1,0.0000,0.0000 +2012,2,19,2,30,0.6000000000000001,0.98,0.067,0.61,0,0,0,0,4,-0.6000000000000001,0,0,0,0,0.31,91.53,113.99000000000001,0.93,0.24,885,0.6000000000000001,121,1.2000000000000002,0.0000,0.0000 +2012,2,19,3,30,-0.5,0.98,0.065,0.61,0,0,0,0,4,-0.5,0,0,0,0,0.313,100,126.29,0.93,0.24,885,0.6000000000000001,144,1.3,0.0000,0.0000 +2012,2,19,4,30,-1.1,0.98,0.065,0.61,0,0,0,0,4,-1.1,0,0,0,0,0.315,100,138.11,0.93,0.24,885,0.6000000000000001,160,1.5,0.0000,0.0000 +2012,2,19,5,30,-1.3,0.97,0.066,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.316,100,148.64000000000001,0.93,0.24,885,0.6000000000000001,174,1.7000000000000002,0.0000,0.0000 +2012,2,19,6,30,-0.9,0.9500000000000001,0.069,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.314,100,155.91,0.93,0.24,885,0.6000000000000001,186,2.3000000000000003,0.0000,0.0000 +2012,2,19,7,30,-0.4,0.93,0.07,0.61,0,0,0,0,0,-0.4,0,0,0,0,0.312,100,156.53,0.92,0.24,885,0.5,196,2.8000000000000003,0.0000,0.0000 +2012,2,19,8,30,-0.5,0.9,0.07,0.61,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.311,99.61,150.08,0.92,0.24,884,0.5,204,2.8000000000000003,0.0000,0.0000 +2012,2,19,9,30,-0.9,0.89,0.07200000000000001,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.311,98.23,139.88,0.92,0.24,884,0.5,210,2.5,0.0000,0.0000 +2012,2,19,10,30,-1.3,0.87,0.07200000000000001,0.61,0,0,0,0,0,-1.6,0,0,0,0,0.311,98.10000000000001,128.18,0.92,0.24,884,0.5,209,2.3000000000000003,0.0000,0.0000 +2012,2,19,11,30,-1.4000000000000001,0.85,0.07,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.311,96.9,115.91,0.92,0.24,884,0.5,205,2.4000000000000004,0.0000,0.0000 +2012,2,19,12,30,-1.3,0.84,0.075,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.312,95.75,103.51,0.92,0.24,884,0.5,203,2.7,0.0000,0.0000 +2012,2,19,13,30,-0.5,0.8300000000000001,0.075,0.61,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.312,90.4,91.25,0.92,0.24,884,0.5,204,3.5,0.0000,0.0000 +2012,2,19,14,30,1.5,0.8300000000000001,0.067,0.61,49,596,160,0,1,-1.5,49,596,0,160,0.314,80.51,79.33,0.92,0.24,884,0.5,204,4.2,7.6268,5.8168 +2012,2,19,15,30,4.4,0.85,0.062,0.61,70,825,376,7,4,-1,67,0,7,67,0.316,67.96000000000001,68.28,0.92,0.24,884,0.5,200,4.4,3.4818,2.7017 +2012,2,19,16,30,7.9,0.86,0.055,0.61,80,931,567,7,4,-0.9,140,0,7,140,0.316,53.79,58.480000000000004,0.91,0.24,883,0.5,199,4.9,7.7850,6.0853 +2012,2,19,17,30,10.9,0.86,0.052000000000000005,0.61,86,982,707,7,4,-2.2,155,0,7,155,0.315,39.83,50.76,0.91,0.24,883,0.5,200,5.5,8.9290,7.0005 +2012,2,19,18,30,12.9,0.87,0.051000000000000004,0.61,89,1004,783,7,3,-3.9000000000000004,364,14,7,374,0.314,30.8,46.230000000000004,0.91,0.24,881,0.5,197,5.7,21.8827,17.1766 +2012,2,19,19,30,14,0.89,0.052000000000000005,0.61,90,1005,789,0,1,-4.800000000000001,90,1005,0,789,0.315,26.88,45.86,0.92,0.24,880,0.5,196,6,46.2169,36.2805 +2012,2,19,20,30,14.3,0.93,0.057,0.61,89,975,719,0,0,-5.2,89,975,0,719,0.319,25.53,49.76,0.92,0.24,879,0.6000000000000001,196,6.300000000000001,41.5733,32.6035 +2012,2,19,21,30,14.100000000000001,0.96,0.061,0.61,84,928,589,0,0,-5.300000000000001,84,928,0,589,0.323,25.59,57.02,0.92,0.24,878,0.6000000000000001,194,6.4,33.0059,25.8174 +2012,2,19,22,30,13,0.98,0.06,0.61,71,838,405,0,0,-5.300000000000001,71,838,0,405,0.327,27.62,66.54,0.92,0.24,878,0.7000000000000001,186,5.7,21.3490,16.5949 +2012,2,19,23,30,10.4,0.98,0.059000000000000004,0.61,51,656,194,0,1,-4.7,51,656,0,194,0.333,34.32,77.43,0.92,0.24,877,0.7000000000000001,175,4.7,9.3128,7.1250 +2012,2,20,0,30,8.1,0.97,0.06,0.61,11,119,14,0,0,-3.8000000000000003,11,119,0,14,0.339,42.7,88.9,0.92,0.24,877,0.8,164,4.800000000000001,0.0000,0.0000 +2012,2,20,1,30,7.1000000000000005,0.97,0.063,0.61,0,0,0,0,8,-3.2,0,0,0,0,0.342,47.88,101.44,0.92,0.24,877,0.8,159,5.7,0.0000,0.0000 +2012,2,20,2,30,6.4,0.98,0.067,0.61,0,0,0,0,4,-2.2,0,0,0,0,0.34400000000000003,54.1,113.82000000000001,0.93,0.24,877,0.8,165,6.4,0.0000,0.0000 +2012,2,20,3,30,5.6000000000000005,0.97,0.068,0.61,0,0,0,0,1,-1.2000000000000002,0,0,0,0,0.34600000000000003,61.68,126.11,0.93,0.24,877,0.8,176,6.2,0.0000,0.0000 +2012,2,20,4,30,4.5,0.9500000000000001,0.064,0.61,0,0,0,0,1,-0.8,0,0,0,0,0.34600000000000003,68.5,137.9,0.92,0.24,878,0.8,185,5.2,0.0000,0.0000 +2012,2,20,5,30,3.7,0.9400000000000001,0.062,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.34500000000000003,70.74,148.38,0.93,0.24,878,0.7000000000000001,195,4.6000000000000005,0.0000,0.0000 +2012,2,20,6,30,3.3000000000000003,0.96,0.068,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.343,67.25,155.58,0.93,0.24,878,0.8,207,4.1000000000000005,0.0000,0.0000 +2012,2,20,7,30,2.8000000000000003,0.98,0.07200000000000001,0.61,0,0,0,0,4,-3.2,0,0,0,0,0.341,64.69,156.18,0.93,0.24,878,0.8,225,3.2,0.0000,0.0000 +2012,2,20,8,30,2.5,0.99,0.07,0.61,0,0,0,0,4,-4,0,0,0,0,0.341,62.230000000000004,149.78,0.93,0.24,878,0.8,247,2.7,0.0000,0.0000 +2012,2,20,9,30,2.9000000000000004,1.01,0.069,0.61,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.342,57.99,139.63,0.93,0.24,877,0.8,263,2.9000000000000004,0.0000,0.0000 +2012,2,20,10,30,3.5,1.04,0.07100000000000001,0.61,0,0,0,0,1,-4.4,0,0,0,0,0.34400000000000003,56.07,127.96000000000001,0.9400000000000001,0.24,878,0.7000000000000001,269,3.5,0.0000,0.0000 +2012,2,20,11,30,3.7,1.06,0.07200000000000001,0.61,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.34700000000000003,57.49,115.7,0.9400000000000001,0.24,878,0.7000000000000001,270,4.2,0.0000,0.0000 +2012,2,20,12,30,3.5,1.03,0.067,0.61,0,0,0,0,4,-3.6,0,0,0,0,0.35000000000000003,59.660000000000004,103.3,0.9400000000000001,0.24,879,0.5,266,4.7,0.0000,0.0000 +2012,2,20,13,30,3.9000000000000004,0.97,0.056,0.61,0,0,0,0,4,-3.7,0,0,0,0,0.353,57.65,91.03,0.93,0.24,879,0.4,260,5.4,0.0000,0.0000 +2012,2,20,14,30,5.5,0.91,0.043000000000000003,0.61,44,681,173,0,1,-4,44,681,0,173,0.357,50.370000000000005,79.09,0.91,0.24,880,0.30000000000000004,264,7,8.2490,6.2934 +2012,2,20,15,30,7.2,0.87,0.036000000000000004,0.61,60,892,394,0,1,-7.7,60,892,0,394,0.362,33.85,68.01,0.9,0.24,880,0.30000000000000004,274,8.8,20.5218,15.9285 +2012,2,20,16,30,8.5,0.84,0.032,0.61,69,983,587,7,2,-12.3,230,659,7,578,0.364,21.5,58.18,0.9,0.24,880,0.30000000000000004,279,9.700000000000001,32.1934,25.1681 +2012,2,20,17,30,9.600000000000001,0.8,0.03,0.61,74,1042,738,0,1,-15.4,74,1042,0,738,0.363,15.530000000000001,50.43,0.9,0.24,881,0.2,282,10.200000000000001,42.5666,33.3760 +2012,2,20,18,30,10.4,0.85,0.034,0.61,80,1056,815,7,3,-17.7,301,705,7,791,0.361,12.120000000000001,45.87,0.9,0.24,881,0.2,285,10.4,46.3326,36.3713 +2012,2,20,19,30,10.9,0.86,0.036000000000000004,0.61,81,1055,820,7,3,-19.1,297,724,7,804,0.358,10.48,45.51,0.9,0.24,881,0.2,290,9.9,47.1453,37.0122 +2012,2,20,20,30,11.100000000000001,0.88,0.036000000000000004,0.61,78,1039,754,0,1,-19.400000000000002,78,1039,0,754,0.357,10.03,49.44,0.9,0.24,882,0.2,297,8.8,43.6474,34.2331 +2012,2,20,21,30,10.9,0.87,0.034,0.61,71,1004,622,0,0,-19.3,71,1004,0,622,0.355,10.290000000000001,56.75,0.9,0.24,882,0.2,304,7.300000000000001,34.9027,27.3045 +2012,2,20,22,30,9.700000000000001,0.88,0.035,0.61,62,928,435,0,0,-19.1,62,928,0,435,0.352,11.26,66.3,0.9,0.24,883,0.2,306,5.1000000000000005,22.9737,17.8618 +2012,2,20,23,30,6.2,0.9,0.036000000000000004,0.61,46,760,214,0,0,-16.7,46,760,0,214,0.34900000000000003,17.51,77.22,0.9,0.24,883,0.2,300,2.7,10.2862,7.8727 +2012,2,21,0,30,2.8000000000000003,0.9,0.036000000000000004,0.61,13,226,18,0,0,-12.700000000000001,13,226,0,18,0.34700000000000003,30.970000000000002,88.72,0.9,0.25,884,0.2,286,1.8,0.0000,0.0000 +2012,2,21,1,30,1.8,0.88,0.036000000000000004,0.61,0,0,0,0,0,-13.3,0,0,0,0,0.34500000000000003,31.71,101.26,0.9,0.25,885,0.2,277,2,0.0000,0.0000 +2012,2,21,2,30,1.3,0.89,0.036000000000000004,0.61,0,0,0,0,0,-13.8,0,0,0,0,0.34400000000000003,31.5,113.64,0.9,0.25,885,0.2,275,2.2,0.0000,0.0000 +2012,2,21,3,30,0.8,0.91,0.036000000000000004,0.61,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.343,31.990000000000002,125.92,0.9,0.25,886,0.2,276,2.6,0.0000,0.0000 +2012,2,21,4,30,0.30000000000000004,0.9500000000000001,0.039,0.61,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.342,32.980000000000004,137.69,0.9,0.25,886,0.30000000000000004,279,3,0.0000,0.0000 +2012,2,21,5,30,-0.2,0.97,0.04,0.61,0,0,0,0,0,-14,0,0,0,0,0.342,34.46,148.12,0.9,0.25,886,0.30000000000000004,282,3.2,0.0000,0.0000 +2012,2,21,6,30,-1,0.98,0.04,0.61,0,0,0,0,0,-14,0,0,0,0,0.341,36.76,155.24,0.91,0.25,886,0.30000000000000004,285,3.1,0.0000,0.0000 +2012,2,21,7,30,-1.6,1,0.042,0.61,0,0,0,0,0,-14,0,0,0,0,0.34,38.38,155.82,0.91,0.25,886,0.30000000000000004,287,3.1,0.0000,0.0000 +2012,2,21,8,30,-2.1,1.03,0.047,0.61,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.339,39.34,149.48,0.92,0.25,885,0.4,286,3,0.0000,0.0000 +2012,2,21,9,30,-2.4000000000000004,1.04,0.054,0.61,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.34,40.01,139.38,0.93,0.25,885,0.4,282,3,0.0000,0.0000 +2012,2,21,10,30,-2.4000000000000004,1.04,0.06,0.61,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.341,39.97,127.73,0.93,0.25,885,0.4,276,3.1,0.0000,0.0000 +2012,2,21,11,30,-2.2,1.03,0.061,0.61,0,0,0,1,0,-14.3,0,0,1,0,0.343,39.17,115.48,0.93,0.25,885,0.4,270,3.4000000000000004,0.0000,0.0000 +2012,2,21,12,30,-1.9000000000000001,1.01,0.053,0.61,0,0,0,1,0,-14.3,0,0,1,0,0.34500000000000003,38.18,103.08,0.92,0.25,886,0.4,266,3.8000000000000003,0.0000,0.0000 +2012,2,21,13,30,-0.30000000000000004,0.98,0.048,0.61,0,0,0,0,0,-14.3,0,0,0,0,0.34500000000000003,34.08,90.25,0.91,0.25,886,0.4,265,4.4,0.0000,0.0000 +2012,2,21,14,30,3.1,0.97,0.045,0.61,45,671,174,7,4,-14,107,156,7,137,0.34600000000000003,27.29,78.85000000000001,0.9,0.25,887,0.4,263,4.7,6.5358,4.9881 +2012,2,21,15,30,7.7,0.97,0.043000000000000003,0.61,63,884,398,0,3,-13.200000000000001,215,264,0,315,0.34700000000000003,21.150000000000002,67.74,0.9,0.25,887,0.30000000000000004,262,5.2,16.4440,12.7671 +2012,2,21,16,30,12.200000000000001,0.96,0.04,0.61,73,974,591,0,1,-13.600000000000001,73,974,0,591,0.34800000000000003,15.200000000000001,57.88,0.9,0.25,886,0.30000000000000004,264,6.300000000000001,32.9702,25.7792 +2012,2,21,17,30,14.8,0.9500000000000001,0.037,0.61,78,1021,733,0,1,-14,78,1021,0,733,0.35000000000000003,12.41,50.09,0.9,0.25,886,0.30000000000000004,268,6.800000000000001,42.3317,33.1951 +2012,2,21,18,30,16.2,1,0.043000000000000003,0.61,85,1033,809,0,0,-14,85,1033,0,809,0.352,11.35,45.52,0.9,0.25,885,0.30000000000000004,270,7,47.4371,37.2412 +2012,2,21,19,30,17,0.97,0.042,0.61,85,1035,815,0,0,-14.3,85,1035,0,815,0.353,10.540000000000001,45.160000000000004,0.9,0.25,884,0.30000000000000004,271,7.300000000000001,47.8401,37.5605 +2012,2,21,20,30,17.400000000000002,0.96,0.04,0.61,81,1022,749,0,0,-14.600000000000001,81,1022,0,749,0.355,9.97,49.120000000000005,0.9,0.25,883,0.30000000000000004,270,7.4,43.4073,34.0477 +2012,2,21,21,30,17.400000000000002,0.93,0.036000000000000004,0.61,72,978,612,0,0,-14.8,72,978,0,612,0.355,9.790000000000001,56.47,0.89,0.25,882,0.4,270,7.2,34.3897,26.9064 +2012,2,21,22,30,16.3,0.9400000000000001,0.036000000000000004,0.61,62,902,428,0,0,-14.700000000000001,62,902,0,428,0.355,10.64,66.07000000000001,0.9,0.25,882,0.4,271,6.1000000000000005,22.6446,17.6096 +2012,2,21,23,30,12.9,0.93,0.034,0.61,45,731,209,0,0,-13,45,731,0,209,0.355,15.15,77.02,0.9,0.25,882,0.5,277,4.4,10.0590,7.7016 +2012,2,22,0,30,9.9,0.93,0.033,0.61,13,228,18,0,0,-11,13,228,0,18,0.354,21.75,88.56,0.9,0.25,882,0.5,284,3.7,0.0000,0.0000 +2012,2,22,1,30,8.8,0.96,0.034,0.61,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.353,24.11,101.09,0.9,0.25,882,0.6000000000000001,289,3.9000000000000004,0.0000,0.0000 +2012,2,22,2,30,7.9,0.97,0.034,0.61,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.353,26.54,113.47,0.9,0.25,883,0.6000000000000001,293,3.9000000000000004,0.0000,0.0000 +2012,2,22,3,30,7,0.9400000000000001,0.032,0.61,0,0,0,0,8,-9.600000000000001,0,0,0,0,0.354,29.650000000000002,125.74000000000001,0.89,0.25,883,0.6000000000000001,296,3.9000000000000004,0.0000,0.0000 +2012,2,22,4,30,6.1000000000000005,0.9,0.028,0.61,0,0,0,0,8,-9,0,0,0,0,0.353,32.89,137.48,0.89,0.25,883,0.6000000000000001,297,3.8000000000000003,0.0000,0.0000 +2012,2,22,5,30,5.4,0.88,0.024,0.61,0,0,0,0,1,-8.700000000000001,0,0,0,0,0.352,35.550000000000004,147.86,0.89,0.25,882,0.6000000000000001,295,3.9000000000000004,0.0000,0.0000 +2012,2,22,6,30,4.6000000000000005,0.89,0.022,0.61,0,0,0,0,1,-8.4,0,0,0,0,0.35000000000000003,38.47,154.91,0.89,0.25,882,0.6000000000000001,290,3.9000000000000004,0.0000,0.0000 +2012,2,22,7,30,3.9000000000000004,0.93,0.021,0.61,0,0,0,0,1,-8.200000000000001,0,0,0,0,0.34700000000000003,40.92,155.46,0.9,0.25,881,0.6000000000000001,286,4.1000000000000005,0.0000,0.0000 +2012,2,22,8,30,3.4000000000000004,0.96,0.02,0.61,0,0,0,0,1,-8.1,0,0,0,0,0.34400000000000003,42.57,149.17000000000002,0.9,0.25,880,0.6000000000000001,283,4.3,0.0000,0.0000 +2012,2,22,9,30,3.1,0.98,0.02,0.61,0,0,0,0,4,-8.1,0,0,0,0,0.342,43.64,139.12,0.9,0.25,880,0.6000000000000001,282,4.6000000000000005,0.0000,0.0000 +2012,2,22,10,30,3,1,0.02,0.61,0,0,0,0,0,-8,0,0,0,0,0.34,44.28,127.5,0.9,0.25,880,0.7000000000000001,280,4.9,0.0000,0.0000 +2012,2,22,11,30,3,1,0.019,0.61,0,0,0,0,7,-7.9,0,0,0,0,0.339,44.71,115.26,0.91,0.25,880,0.7000000000000001,280,5.1000000000000005,0.0000,0.0000 +2012,2,22,12,30,3.2,0.99,0.018000000000000002,0.61,0,0,0,0,0,-7.7,0,0,0,0,0.337,44.660000000000004,102.86,0.91,0.25,880,0.8,280,5.300000000000001,0.0000,0.0000 +2012,2,22,13,30,4.7,0.99,0.017,0.61,0,0,0,0,0,-7.5,0,0,0,0,0.333,40.93,90.07000000000001,0.91,0.25,880,0.8,281,5.7,0.0000,0.0000 +2012,2,22,14,30,8.3,0.98,0.015,0.61,35,720,177,0,3,-7,108,18,0,112,0.327,33.21,78.61,0.9,0.25,880,0.8,289,6.2,5.3468,4.0822 +2012,2,22,15,30,12.700000000000001,0.96,0.015,0.61,48,894,391,0,4,-6.1000000000000005,227,154,0,286,0.322,26.57,67.47,0.91,0.25,880,0.8,304,6.800000000000001,14.9634,11.6208 +2012,2,22,16,30,16.7,0.9500000000000001,0.015,0.61,56,972,577,7,2,-5.1000000000000005,219,643,7,564,0.318,22.11,57.57,0.91,0.25,880,0.8,315,6.5,31.5154,24.6453 +2012,2,22,17,30,19.5,0.93,0.015,0.61,61,1012,714,0,1,-4.800000000000001,61,1012,0,714,0.316,18.990000000000002,49.75,0.91,0.25,880,0.8,314,5.5,41.2857,32.3780 +2012,2,22,18,30,21.200000000000003,1.03,0.024,0.61,72,1019,791,0,1,-4.7,72,1019,0,791,0.314,17.14,45.15,0.91,0.25,879,0.8,302,4.9,46.4327,36.4556 +2012,2,22,19,30,22.1,1.02,0.023,0.61,71,1027,800,0,8,-4.7,250,579,0,661,0.313,16.2,44.800000000000004,0.91,0.25,877,0.7000000000000001,289,5,38.8413,30.4976 +2012,2,22,20,30,22.5,1,0.022,0.61,68,1014,736,0,0,-4.800000000000001,68,1014,0,736,0.311,15.700000000000001,48.800000000000004,0.91,0.25,876,0.7000000000000001,280,5.5,42.7017,33.4971 +2012,2,22,21,30,22.3,0.9500000000000001,0.021,0.61,63,979,607,0,0,-4.9,63,979,0,607,0.309,15.81,56.2,0.91,0.25,875,0.7000000000000001,274,5.9,34.1541,26.7252 +2012,2,22,22,30,21,0.89,0.019,0.61,53,911,426,0,0,-4.7,53,911,0,426,0.305,17.41,65.83,0.9,0.25,875,0.7000000000000001,268,5.7,22.5805,17.5636 +2012,2,22,23,30,18,0.81,0.016,0.61,38,765,213,0,8,-3.6,98,350,0,178,0.302,22.82,76.82000000000001,0.9,0.25,874,0.7000000000000001,265,4.9,8.5787,6.5707 +2012,2,23,0,30,15.200000000000001,0.76,0.012,0.61,12,309,20,0,0,-2.5,12,309,0,20,0.3,29.560000000000002,88.4,0.9,0.25,875,0.8,266,4.800000000000001,0.0000,0.0000 +2012,2,23,1,30,14,0.8,0.011,0.61,0,0,0,0,1,-2.2,0,0,0,0,0.298,32.71,100.91,0.9,0.25,875,0.8,267,5.300000000000001,0.0000,0.0000 +2012,2,23,2,30,13.3,0.87,0.011,0.61,0,0,0,0,0,-2,0,0,0,0,0.297,34.550000000000004,113.3,0.9,0.25,874,0.8,268,5.800000000000001,0.0000,0.0000 +2012,2,23,3,30,12.5,0.92,0.012,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.296,36.81,125.56,0.9,0.25,874,0.8,272,6.1000000000000005,0.0000,0.0000 +2012,2,23,4,30,11.700000000000001,0.9500000000000001,0.013000000000000001,0.61,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.295,39.45,137.27,0.9,0.25,874,0.8,274,6.1000000000000005,0.0000,0.0000 +2012,2,23,5,30,10.9,0.97,0.015,0.61,0,0,0,0,1,-1.5,0,0,0,0,0.294,41.980000000000004,147.59,0.9,0.25,873,0.7000000000000001,273,6.1000000000000005,0.0000,0.0000 +2012,2,23,6,30,10.200000000000001,0.97,0.016,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.294,44.09,154.57,0.9,0.25,873,0.7000000000000001,273,6.1000000000000005,0.0000,0.0000 +2012,2,23,7,30,9.5,0.96,0.017,0.61,0,0,0,0,0,-1.6,0,0,0,0,0.294,45.85,155.1,0.9,0.25,872,0.7000000000000001,274,6.1000000000000005,0.0000,0.0000 +2012,2,23,8,30,8.9,0.9500000000000001,0.017,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.294,47.09,148.86,0.9,0.25,871,0.7000000000000001,274,6.1000000000000005,0.0000,0.0000 +2012,2,23,9,30,8.4,0.92,0.018000000000000002,0.61,0,0,0,0,0,-2,0,0,0,0,0.293,47.99,138.85,0.9,0.25,871,0.7000000000000001,273,6.1000000000000005,0.0000,0.0000 +2012,2,23,10,30,7.9,0.88,0.019,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.292,49.01,127.26,0.9,0.25,871,0.7000000000000001,271,6,0.0000,0.0000 +2012,2,23,11,30,7.5,0.87,0.019,0.61,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.292,49.93,115.04,0.9,0.25,871,0.7000000000000001,269,5.9,0.0000,0.0000 +2012,2,23,12,30,7.300000000000001,0.87,0.019,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.292,50.17,102.63,0.9,0.25,871,0.7000000000000001,269,5.7,0.0000,0.0000 +2012,2,23,13,30,8.4,0.87,0.019,0.61,0,0,0,7,7,-2.6,0,0,7,0,0.292,46.03,89.88,0.9,0.25,871,0.7000000000000001,270,5.6000000000000005,0.0000,0.0000 +2012,2,23,14,30,11.600000000000001,0.88,0.021,0.61,39,720,184,0,7,-2.5,92,20,0,96,0.291,37.18,78.36,0.91,0.25,872,0.7000000000000001,277,6.1000000000000005,4.5870,3.5036 +2012,2,23,15,30,15.4,0.85,0.024,0.61,55,884,397,0,8,-2.6,184,304,0,302,0.291,28.95,67.2,0.91,0.25,872,0.8,290,7,15.8355,12.3013 +2012,2,23,16,30,18.3,0.79,0.025,0.61,65,956,582,0,7,-3.3000000000000003,262,343,0,448,0.293,22.82,57.27,0.91,0.25,873,0.9,308,7.300000000000001,25.0725,19.6096 +2012,2,23,17,30,19.5,0.76,0.024,0.61,70,998,719,0,8,-3.7,267,473,0,574,0.294,20.51,49.410000000000004,0.91,0.25,873,0.9,326,6.9,33.2311,26.0637 +2012,2,23,18,30,19.5,0.75,0.023,0.61,72,1012,790,0,8,-3.4000000000000004,213,652,0,676,0.294,21.02,44.79,0.91,0.25,873,1,342,6.6000000000000005,39.7238,31.1906 +2012,2,23,19,30,19,0.79,0.022,0.61,71,1015,795,7,3,-3.2,283,678,7,767,0.294,22.1,44.44,0.91,0.25,873,1,175,6.2,45.1167,35.4276 +2012,2,23,20,30,18.2,0.9,0.024,0.61,70,994,729,0,0,-3.1,70,994,0,729,0.293,23.400000000000002,48.47,0.92,0.25,873,1.1,7,5.800000000000001,42.3437,33.2192 +2012,2,23,21,30,17,1.04,0.035,0.61,71,944,600,0,0,-3.1,71,944,0,600,0.293,25.150000000000002,55.92,0.92,0.25,874,1.1,22,5.7,33.8063,26.4562 +2012,2,23,22,30,15.100000000000001,1.04,0.036000000000000004,0.61,62,867,420,0,0,-3.4000000000000004,62,867,0,420,0.294,27.68,65.6,0.92,0.25,874,1.1,35,5.9,22.3016,17.3501 +2012,2,23,23,30,12,1.05,0.039,0.61,47,699,209,0,0,-4.1000000000000005,47,699,0,209,0.295,32.31,76.61,0.93,0.25,875,1.1,42,6.300000000000001,10.0878,7.7296 +2012,2,24,0,30,8.8,1.06,0.043000000000000003,0.61,14,209,21,0,0,-5.1000000000000005,14,209,0,21,0.297,37.04,88.22,0.93,0.25,877,1.1,42,6.6000000000000005,0.0000,0.0000 +2012,2,24,1,30,6.300000000000001,1.04,0.041,0.61,0,0,0,0,1,-6.2,0,0,0,0,0.299,40.24,100.74000000000001,0.93,0.25,879,1,38,6.9,0.0000,0.0000 +2012,2,24,2,30,4.7,0.99,0.039,0.61,0,0,0,0,0,-7.2,0,0,0,0,0.302,41.69,113.13,0.93,0.25,881,0.9,32,6.6000000000000005,0.0000,0.0000 +2012,2,24,3,30,3.8000000000000003,0.93,0.039,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.304,40.9,125.37,0.93,0.25,883,0.7000000000000001,29,5.7,0.0000,0.0000 +2012,2,24,4,30,3,0.88,0.039,0.61,0,0,0,0,0,-9.8,0,0,0,0,0.306,38.35,137.06,0.92,0.25,884,0.6000000000000001,30,4.6000000000000005,0.0000,0.0000 +2012,2,24,5,30,2.1,0.87,0.037,0.61,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.309,36.72,147.32,0.92,0.25,885,0.5,29,3.8000000000000003,0.0000,0.0000 +2012,2,24,6,30,1.1,0.87,0.036000000000000004,0.61,0,0,0,0,1,-11.700000000000001,0,0,0,0,0.312,37.86,154.22,0.91,0.25,886,0.4,29,3.1,0.0000,0.0000 +2012,2,24,7,30,0,0.87,0.036000000000000004,0.61,0,0,0,0,4,-11.600000000000001,0,0,0,0,0.316,41.4,154.74,0.91,0.25,887,0.4,29,2.5,0.0000,0.0000 +2012,2,24,8,30,-0.9,0.87,0.036000000000000004,0.61,0,0,0,0,1,-11.4,0,0,0,0,0.316,44.88,148.54,0.91,0.25,887,0.4,29,2.3000000000000003,0.0000,0.0000 +2012,2,24,9,30,-1.9000000000000001,0.85,0.035,0.61,0,0,0,0,0,-11.3,0,0,0,0,0.315,48.49,138.58,0.91,0.25,887,0.30000000000000004,28,2.2,0.0000,0.0000 +2012,2,24,10,30,-2.9000000000000004,0.8300000000000001,0.034,0.61,0,0,0,0,1,-11.3,0,0,0,0,0.312,52.410000000000004,127.02,0.91,0.25,888,0.30000000000000004,25,2,0.0000,0.0000 +2012,2,24,11,30,-3.9000000000000004,0.81,0.033,0.61,0,0,0,0,0,-11.4,0,0,0,0,0.309,56.03,114.81,0.91,0.25,888,0.30000000000000004,21,1.7000000000000002,0.0000,0.0000 +2012,2,24,12,30,-4.4,0.8,0.031,0.61,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.306,57.18,102.41,0.91,0.25,889,0.30000000000000004,15,1.5,0.0000,0.0000 +2012,2,24,13,30,-3.1,0.8200000000000001,0.028,0.61,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.303,51.7,89.64,0.91,0.25,890,0.30000000000000004,186,1.8,0.0000,0.0000 +2012,2,24,14,30,0.4,0.85,0.026000000000000002,0.61,42,748,196,0,4,-11.600000000000001,123,53,0,134,0.302,40.14,78.10000000000001,0.91,0.25,891,0.30000000000000004,187,2.1,6.4098,4.8981 +2012,2,24,15,30,4,0.87,0.025,0.61,57,923,419,0,1,-14,57,923,0,419,0.301,25.53,66.92,0.91,0.25,892,0.30000000000000004,11,2,22.0201,17.1104 +2012,2,24,16,30,6.6000000000000005,0.87,0.025,0.61,66,1001,612,0,0,-14.9,66,1001,0,612,0.3,19.79,56.95,0.91,0.25,892,0.30000000000000004,181,1.8,34.3069,26.8360 +2012,2,24,17,30,8.3,0.87,0.026000000000000002,0.61,73,1038,753,0,0,-15,73,1038,0,753,0.299,17.490000000000002,49.06,0.91,0.25,892,0.30000000000000004,348,1.6,43.6483,34.2373 +2012,2,24,18,30,9.700000000000001,0.8300000000000001,0.025,0.61,75,1057,830,0,0,-15,75,1057,0,830,0.298,15.91,44.42,0.91,0.25,891,0.30000000000000004,332,1.5,48.8253,38.3399 +2012,2,24,19,30,10.700000000000001,0.89,0.025,0.61,75,1058,835,0,0,-15,75,1058,0,835,0.297,14.96,44.08,0.91,0.25,891,0.30000000000000004,308,1.4000000000000001,49.1668,38.6107 +2012,2,24,20,30,11.200000000000001,0.97,0.026000000000000002,0.61,73,1043,769,0,0,-15,73,1043,0,769,0.296,14.48,48.15,0.91,0.25,890,0.30000000000000004,283,1.4000000000000001,44.7158,35.0830 +2012,2,24,21,30,11.200000000000001,1.02,0.028,0.61,69,1005,636,0,0,-14.9,69,1005,0,636,0.297,14.530000000000001,55.64,0.91,0.25,890,0.30000000000000004,261,1.2000000000000002,35.8829,28.0845 +2012,2,24,22,30,10.3,1.02,0.029,0.61,60,933,449,0,0,-14.9,60,933,0,449,0.297,15.5,65.36,0.9,0.25,890,0.30000000000000004,220,1,23.8848,18.5856 +2012,2,24,23,30,7.7,0.99,0.03,0.61,46,778,229,0,0,-11.5,46,778,0,229,0.297,24.240000000000002,76.41,0.9,0.25,890,0.30000000000000004,174,1,11.0695,8.4850 +2012,2,25,0,30,4.7,0.96,0.031,0.61,15,298,25,0,0,-9.600000000000001,15,298,0,25,0.297,34.74,88.04,0.9,0.25,891,0.30000000000000004,155,1.2000000000000002,0.0000,0.0000 +2012,2,25,1,30,3,0.96,0.033,0.61,0,0,0,0,1,-10.200000000000001,0,0,0,0,0.297,37.12,100.57000000000001,0.9,0.25,891,0.30000000000000004,155,1.4000000000000001,0.0000,0.0000 +2012,2,25,2,30,2,0.96,0.034,0.61,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.296,37.24,112.95,0.9,0.25,892,0.30000000000000004,159,1.7000000000000002,0.0000,0.0000 +2012,2,25,3,30,1.3,0.96,0.034,0.61,0,0,0,0,0,-12,0,0,0,0,0.295,36.5,125.19,0.9,0.25,892,0.30000000000000004,166,2,0.0000,0.0000 +2012,2,25,4,30,0.7000000000000001,0.97,0.035,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.295,36.44,136.84,0.9,0.25,892,0.30000000000000004,174,2.1,0.0000,0.0000 +2012,2,25,5,30,0,0.96,0.035,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.294,37.54,147.05,0.9,0.25,892,0.30000000000000004,183,2.2,0.0000,0.0000 +2012,2,25,6,30,-0.6000000000000001,0.96,0.035,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.294,38.92,153.88,0.9,0.25,892,0.30000000000000004,192,2.2,0.0000,0.0000 +2012,2,25,7,30,-1.1,0.9400000000000001,0.035,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.294,40.24,154.37,0.89,0.25,892,0.30000000000000004,200,2.2,0.0000,0.0000 +2012,2,25,8,30,-1.5,0.93,0.034,0.61,0,0,0,0,0,-13,0,0,0,0,0.295,41.15,148.21,0.89,0.25,891,0.30000000000000004,205,2.3000000000000003,0.0000,0.0000 +2012,2,25,9,30,-1.7000000000000002,0.91,0.033,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.295,41.52,138.3,0.9,0.25,891,0.4,207,2.6,0.0000,0.0000 +2012,2,25,10,30,-1.7000000000000002,0.9,0.032,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.296,41.52,126.77,0.9,0.25,891,0.4,207,3,0.0000,0.0000 +2012,2,25,11,30,-1.7000000000000002,0.88,0.03,0.61,0,0,0,0,0,-13,0,0,0,0,0.297,41.85,114.57000000000001,0.9,0.25,891,0.4,207,3.4000000000000004,0.0000,0.0000 +2012,2,25,12,30,-1.6,0.85,0.03,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.298,42.230000000000004,102.17,0.9,0.25,890,0.4,208,3.7,0.0000,0.0000 +2012,2,25,13,30,0,0.8300000000000001,0.029,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.298,38.42,89.44,0.9,0.25,890,0.4,209,4.4,0.0000,0.0000 +2012,2,25,14,30,3.7,0.8200000000000001,0.029,0.61,43,733,197,7,4,-12.100000000000001,118,144,7,149,0.298,30.560000000000002,77.85000000000001,0.9,0.25,890,0.4,205,5.5,7.1359,5.4554 +2012,2,25,15,30,7.800000000000001,0.81,0.029,0.61,59,897,415,0,1,-11.600000000000001,59,897,0,415,0.297,23.82,66.64,0.9,0.25,890,0.5,201,7,21.8588,16.9896 +2012,2,25,16,30,11,0.8200000000000001,0.028,0.61,68,978,606,0,1,-11.600000000000001,68,978,0,606,0.297,19.330000000000002,56.64,0.9,0.25,889,0.5,200,8,34.0237,26.6181 +2012,2,25,17,30,13.100000000000001,0.84,0.027,0.61,73,1019,745,0,0,-11.100000000000001,73,1019,0,745,0.296,17.41,48.71,0.9,0.25,888,0.5,198,8.3,43.2374,33.9182 +2012,2,25,18,30,14.700000000000001,0.93,0.029,0.61,77,1035,821,0,0,-10.8,77,1035,0,821,0.295,16.12,44.050000000000004,0.9,0.25,887,0.5,198,8.5,48.3465,37.9668 +2012,2,25,19,30,15.8,0.96,0.029,0.61,77,1036,826,0,0,-10.600000000000001,77,1036,0,826,0.295,15.3,43.72,0.9,0.25,885,0.5,199,8.6,48.6857,38.2357 +2012,2,25,20,30,16.3,0.99,0.032,0.61,77,1018,760,0,0,-10.4,77,1018,0,760,0.295,15.02,47.83,0.91,0.25,884,0.5,202,8.5,44.2398,34.7124 +2012,2,25,21,30,16.3,0.99,0.033,0.61,72,980,629,0,0,-10.3,72,980,0,629,0.295,15.16,55.370000000000005,0.91,0.25,883,0.5,204,8.200000000000001,35.5334,27.8141 +2012,2,25,22,30,15.600000000000001,1,0.037,0.61,64,902,443,0,0,-10.100000000000001,64,902,0,443,0.296,16.06,65.13,0.9,0.25,883,0.5,205,7.1000000000000005,23.6062,18.3724 +2012,2,25,23,30,13.200000000000001,1.02,0.04,0.61,49,739,225,0,0,-9.600000000000001,49,739,0,225,0.296,19.6,76.21000000000001,0.9,0.25,882,0.5,201,5.6000000000000005,10.8927,8.3526 +2012,2,26,0,30,10.8,1.01,0.041,0.61,16,262,25,0,0,-8.6,16,262,0,25,0.297,24.76,87.88,0.9,0.25,882,0.5,196,5,0.0000,0.0000 +2012,2,26,1,30,9.5,1,0.041,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.297,27.580000000000002,100.39,0.9,0.25,882,0.5,194,5.300000000000001,0.0000,0.0000 +2012,2,26,2,30,8.4,0.99,0.039,0.61,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.297,30.86,112.78,0.91,0.25,882,0.5,196,5.5,0.0000,0.0000 +2012,2,26,3,30,7.4,1,0.039,0.61,0,0,0,0,0,-7.2,0,0,0,0,0.297,34.6,125,0.91,0.25,882,0.5,198,5.5,0.0000,0.0000 +2012,2,26,4,30,6.2,1,0.04,0.61,0,0,0,0,0,-6.5,0,0,0,0,0.298,39.59,136.62,0.91,0.25,882,0.6000000000000001,199,4.9,0.0000,0.0000 +2012,2,26,5,30,5.1000000000000005,0.98,0.042,0.61,0,0,0,0,0,-6,0,0,0,0,0.298,44.53,146.78,0.91,0.25,882,0.6000000000000001,202,4.4,0.0000,0.0000 +2012,2,26,6,30,4.3,0.96,0.043000000000000003,0.61,0,0,0,0,0,-5.7,0,0,0,0,0.298,48.230000000000004,153.53,0.91,0.25,881,0.6000000000000001,208,4.2,0.0000,0.0000 +2012,2,26,7,30,3.7,0.9400000000000001,0.042,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.299,51.34,154,0.91,0.25,881,0.6000000000000001,215,4,0.0000,0.0000 +2012,2,26,8,30,3.2,0.93,0.041,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.301,54.120000000000005,147.89000000000001,0.91,0.25,881,0.6000000000000001,222,3.8000000000000003,0.0000,0.0000 +2012,2,26,9,30,3,0.92,0.04,0.61,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.304,55.410000000000004,138.02,0.9,0.25,880,0.6000000000000001,231,3.6,0.0000,0.0000 +2012,2,26,10,30,2.5,0.92,0.039,0.61,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.307,57.42,126.52,0.9,0.25,880,0.6000000000000001,241,3.1,0.0000,0.0000 +2012,2,26,11,30,1.9000000000000001,0.92,0.038,0.61,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.31,59.57,114.33,0.9,0.25,881,0.5,252,2.7,0.0000,0.0000 +2012,2,26,12,30,1.9000000000000001,0.93,0.037,0.61,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.311,58.81,101.94,0.9,0.25,881,0.5,265,2.7,0.0000,0.0000 +2012,2,26,13,30,4,0.9400000000000001,0.036000000000000004,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.312,50.35,89.23,0.9,0.25,881,0.5,276,3.3000000000000003,0.0000,0.0000 +2012,2,26,14,30,7.800000000000001,0.9400000000000001,0.036000000000000004,0.61,45,714,198,0,4,-5.300000000000001,126,92,0,146,0.313,39.06,77.59,0.9,0.25,882,0.5,280,3.5,7.0021,5.3555 +2012,2,26,15,30,12.3,0.9400000000000001,0.037,0.61,62,880,415,0,1,-4.9,62,880,0,415,0.312,29.830000000000002,66.35,0.9,0.25,882,0.6000000000000001,279,3,21.9089,17.0331 +2012,2,26,16,30,17.3,0.93,0.038,0.61,73,959,605,0,1,-5.2,73,959,0,605,0.311,21.1,56.32,0.9,0.25,882,0.6000000000000001,276,3.1,34.0215,26.6201 +2012,2,26,17,30,20.5,0.9400000000000001,0.039,0.61,80,999,744,0,0,-8.200000000000001,80,999,0,744,0.311,13.67,48.36,0.9,0.25,882,0.6000000000000001,265,3.4000000000000004,43.2313,33.9165 +2012,2,26,18,30,21.8,1.06,0.044,0.61,86,1007,814,0,0,-8.6,86,1007,0,814,0.312,12.32,43.67,0.91,0.25,881,0.7000000000000001,251,3.5,47.9850,37.6858 +2012,2,26,19,30,22.3,1.05,0.044,0.61,86,1008,818,0,0,-8.4,86,1008,0,818,0.312,12.13,43.36,0.91,0.25,881,0.7000000000000001,244,3.8000000000000003,48.2618,37.9054 +2012,2,26,20,30,22.5,1.04,0.042,0.61,82,994,753,0,0,-8.1,82,994,0,753,0.313,12.27,47.5,0.91,0.25,880,0.7000000000000001,240,3.7,43.8802,34.4330 +2012,2,26,21,30,22.1,1.01,0.04,0.61,74,953,620,0,0,-7.800000000000001,74,953,0,620,0.313,12.870000000000001,55.09,0.9,0.25,880,0.8,237,3.2,35.0709,27.4551 +2012,2,26,22,30,20.6,1,0.039,0.61,64,880,437,0,0,-7.4,64,880,0,437,0.312,14.530000000000001,64.9,0.9,0.25,880,0.8,231,1.8,23.3262,18.1579 +2012,2,26,23,30,18.2,0.99,0.039,0.61,48,722,223,0,0,-0.9,48,722,0,223,0.309,27.43,76.01,0.9,0.25,880,0.8,174,0.7000000000000001,10.8129,8.2944 +2012,2,27,0,30,15,0.97,0.04,0.61,16,259,26,0,0,-4.3,16,259,0,26,0.307,26.23,87.71000000000001,0.9,0.25,881,0.8,116,0.8,0.0000,0.0000 +2012,2,27,1,30,11.8,0.97,0.041,0.61,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.306,33.27,100.22,0.9,0.25,881,0.8,118,1.5,0.0000,0.0000 +2012,2,27,2,30,9.8,0.99,0.042,0.61,0,0,0,0,4,-3.4000000000000004,0,0,0,0,0.306,39.31,112.61,0.9,0.25,882,0.9,129,2.1,0.0000,0.0000 +2012,2,27,3,30,8.4,1.02,0.045,0.61,0,0,0,0,4,-2.7,0,0,0,0,0.306,45.38,124.81,0.91,0.25,883,0.9,125,2.8000000000000003,0.0000,0.0000 +2012,2,27,4,30,7,1.03,0.049,0.61,0,0,0,0,4,-2.1,0,0,0,0,0.304,52.34,136.41,0.92,0.25,884,1,100,3.7,0.0000,0.0000 +2012,2,27,5,30,5.7,1.02,0.055,0.61,0,0,0,0,4,-1.8,0,0,0,0,0.301,58.54,146.5,0.92,0.25,885,1,76,4.7,0.0000,0.0000 +2012,2,27,6,30,4.800000000000001,1,0.06,0.61,0,0,0,0,1,-2.4000000000000004,0,0,0,0,0.3,59.410000000000004,153.18,0.93,0.25,886,1.1,65,5.4,0.0000,0.0000 +2012,2,27,7,30,4.1000000000000005,1.01,0.063,0.61,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.3,55.85,153.62,0.93,0.25,887,1.1,61,5.7,0.0000,0.0000 +2012,2,27,8,30,3.6,1.05,0.065,0.61,0,0,0,0,7,-5.4,0,0,0,0,0.301,51.99,147.56,0.9400000000000001,0.25,887,1.1,62,5.6000000000000005,0.0000,0.0000 +2012,2,27,9,30,3.6,1.08,0.074,0.61,0,0,0,0,7,-6.2,0,0,0,0,0.3,48.870000000000005,137.74,0.9400000000000001,0.25,888,1.1,64,5.300000000000001,0.0000,0.0000 +2012,2,27,10,30,3.8000000000000003,1.09,0.085,0.61,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.299,46.04,126.26,0.9500000000000001,0.25,888,1.1,65,5,0.0000,0.0000 +2012,2,27,11,30,4.1000000000000005,1.09,0.094,0.61,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.3,43.15,114.09,0.9500000000000001,0.25,889,1.1,63,4.7,0.0000,0.0000 +2012,2,27,12,30,4.3,1.09,0.099,0.61,0,0,0,0,4,-8,0,0,0,0,0.301,40.39,101.7,0.96,0.25,889,1.1,63,4.5,0.0000,0.0000 +2012,2,27,13,30,5,1.1,0.096,0.61,0,0,0,0,1,-8.4,0,0,0,0,0.3,37.33,89.01,0.96,0.25,890,1.1,69,4.800000000000001,0.0000,0.0000 +2012,2,27,14,30,6.1000000000000005,1.11,0.094,0.61,60,577,187,0,4,-7.300000000000001,89,1,0,89,0.298,37.52,77.32000000000001,0.96,0.25,890,1.1,81,5.4,4.2752,3.2715 +2012,2,27,15,30,7.4,1.1300000000000001,0.099,0.61,87,769,399,0,7,-4.1000000000000005,185,49,0,205,0.298,43.89,66.06,0.96,0.25,890,1.1,93,5.5,10.8470,8.4352 +2012,2,27,16,30,9,1.16,0.105,0.61,104,854,582,0,7,-0.7000000000000001,286,122,0,354,0.298,50.59,56,0.96,0.25,890,1.2000000000000002,106,5.2,19.9380,15.6026 +2012,2,27,17,30,10.600000000000001,1.17,0.108,0.61,115,901,718,0,4,1.5,162,0,0,162,0.297,53.21,48.01,0.96,0.25,889,1.2000000000000002,118,4.9,9.4244,7.3944 +2012,2,27,18,30,11.9,1.16,0.11900000000000001,0.61,125,913,790,0,4,2.8000000000000003,344,4,0,347,0.295,53.620000000000005,43.300000000000004,0.97,0.25,889,1.2000000000000002,130,4.800000000000001,20.4763,16.0825 +2012,2,27,19,30,12.600000000000001,1.16,0.121,0.61,126,909,792,0,3,3.7,257,1,0,258,0.29,54.660000000000004,42.99,0.97,0.25,888,1.3,140,4.9,15.2372,11.9683 +2012,2,27,20,30,12.9,1.1400000000000001,0.114,0.61,119,896,728,0,4,4.4,208,0,0,208,0.28600000000000003,56.370000000000005,47.18,0.97,0.25,887,1.3,146,5.1000000000000005,12.1336,9.5220 +2012,2,27,21,30,12.700000000000001,1.1500000000000001,0.112,0.61,109,853,600,0,3,5,190,0,0,190,0.28200000000000003,59.51,54.82,0.96,0.25,887,1.3,149,5.1000000000000005,10.7609,8.4251 +2012,2,27,22,30,12,1.1400000000000001,0.1,0.61,89,775,420,0,4,5.6000000000000005,87,0,0,87,0.28,64.98,64.67,0.96,0.25,887,1.4000000000000001,147,4.800000000000001,4.6517,3.6217 +2012,2,27,23,30,10.8,1.1300000000000001,0.088,0.61,62,615,213,0,4,6.300000000000001,40,0,0,40,0.279,73.9,75.8,0.96,0.25,887,1.4000000000000001,143,4.2,1.9428,1.4909 +2012,2,28,0,30,9.8,1.12,0.084,0.61,19,169,26,0,0,7.1000000000000005,19,169,0,26,0.279,83.19,87.53,0.96,0.25,887,1.4000000000000001,139,3.8000000000000003,0.0000,0.0000 +2012,2,28,1,30,9.1,1.08,0.084,0.61,0,0,0,0,1,7.7,0,0,0,0,0.279,91.02,100.05,0.96,0.25,887,1.4000000000000001,138,4,0.0000,0.0000 +2012,2,28,2,30,8.8,1.07,0.08600000000000001,0.61,0,0,0,0,1,8.200000000000001,0,0,0,0,0.28,95.71000000000001,112.44,0.96,0.25,887,1.4000000000000001,137,4.3,0.0000,0.0000 +2012,2,28,3,30,8.8,1.09,0.1,0.61,0,0,0,0,0,8.4,0,0,0,0,0.28,97.3,124.63000000000001,0.97,0.25,886,1.5,138,4.5,0.0000,0.0000 +2012,2,28,4,30,8.9,1.11,0.106,0.61,0,0,0,0,1,8.6,0,0,0,0,0.279,97.91,136.19,0.96,0.25,885,1.5,142,5,0.0000,0.0000 +2012,2,28,5,30,9.1,1.1300000000000001,0.10300000000000001,0.61,0,0,0,0,0,8.8,0,0,0,0,0.277,98.13,146.23,0.96,0.25,885,1.5,147,5.300000000000001,0.0000,0.0000 +2012,2,28,6,30,9.5,1.1300000000000001,0.098,0.61,0,0,0,0,1,9.1,0,0,0,0,0.275,97.14,152.83,0.96,0.25,884,1.5,153,5.5,0.0000,0.0000 +2012,2,28,7,30,9.9,1.1300000000000001,0.082,0.61,0,0,0,0,1,9.4,0,0,0,0,0.274,96.67,153.25,0.9500000000000001,0.25,883,1.5,159,5.9,0.0000,0.0000 +2012,2,28,8,30,10.4,1.1300000000000001,0.07100000000000001,0.61,0,0,0,0,1,9.9,0,0,0,0,0.273,96.43,147.22,0.9500000000000001,0.25,882,1.5,165,6.300000000000001,0.0000,0.0000 +2012,2,28,9,30,10.700000000000001,1.12,0.07,0.61,0,0,0,0,0,10.3,0,0,0,0,0.273,97.08,137.45000000000002,0.9500000000000001,0.25,881,1.4000000000000001,171,6.5,0.0000,0.0000 +2012,2,28,10,30,10.700000000000001,1.11,0.066,0.61,0,0,0,0,0,10.5,0,0,0,0,0.273,98.4,126,0.9500000000000001,0.25,881,1.3,179,6.300000000000001,0.0000,0.0000 +2012,2,28,11,30,10.4,1.08,0.063,0.61,0,0,0,0,0,10.4,0,0,0,0,0.274,100,113.85000000000001,0.9400000000000001,0.25,880,1.2000000000000002,186,5.7,0.0000,0.0000 +2012,2,28,12,30,9.9,1.06,0.065,0.61,0,0,0,0,0,9.9,0,0,0,0,0.274,100,101.45,0.9400000000000001,0.25,880,1.1,192,5,0.0000,0.0000 +2012,2,28,13,30,10,1.02,0.06,0.61,12,126,15,0,0,9.5,12,126,0,15,0.274,96.84,88.79,0.9400000000000001,0.25,881,1,199,4.9,0.0000,0.0000 +2012,2,28,14,30,11.9,0.97,0.052000000000000005,0.61,50,668,200,0,0,8.700000000000001,50,668,0,200,0.275,80.78,77.06,0.93,0.25,881,0.9,212,5.6000000000000005,9.6233,7.3675 +2012,2,28,15,30,15.3,0.89,0.047,0.61,67,859,420,0,0,6.4,67,859,0,420,0.275,55.52,65.77,0.92,0.25,880,0.8,226,7.2,22.2727,17.3251 +2012,2,28,16,30,18.1,0.8,0.045,0.61,78,947,612,0,0,1.7000000000000002,78,947,0,612,0.275,33.34,55.68,0.91,0.25,880,0.7000000000000001,231,9,34.5222,27.0191 +2012,2,28,17,30,19.6,0.72,0.047,0.61,86,986,750,0,1,-0.8,86,986,0,750,0.274,25.36,47.65,0.91,0.25,879,0.7000000000000001,232,10,43.6838,34.2776 +2012,2,28,18,30,20.6,0.66,0.05,0.61,92,1006,829,0,1,-2.5,92,1006,0,829,0.273,20.95,42.92,0.91,0.25,878,0.6000000000000001,235,10.4,48.9689,38.4640 +2012,2,28,19,30,21.200000000000003,0.65,0.053,0.61,94,1004,832,0,1,-4.2,94,1004,0,832,0.273,17.82,42.63,0.91,0.25,877,0.6000000000000001,239,10.600000000000001,49.1839,38.6350 +2012,2,28,20,30,21.3,0.68,0.057,0.61,93,990,770,0,1,-5.9,93,990,0,770,0.274,15.59,46.86,0.91,0.25,877,0.5,245,10.700000000000001,44.9637,35.2887 +2012,2,28,21,30,20.5,0.73,0.061,0.61,88,946,636,0,1,-7.800000000000001,88,946,0,636,0.275,14.200000000000001,54.550000000000004,0.91,0.25,877,0.5,254,10.700000000000001,36.0653,28.2394 +2012,2,28,22,30,18.6,0.73,0.066,0.61,78,869,453,7,3,-9.4,211,516,7,434,0.277,14.030000000000001,64.44,0.91,0.25,878,0.4,263,10.200000000000001,23.2439,18.1006 +2012,2,28,23,30,15.8,0.62,0.069,0.61,60,689,231,7,3,-10.100000000000001,129,343,7,214,0.28,15.89,75.61,0.91,0.25,880,0.4,274,8.8,10.4103,7.9915 +2012,3,1,0,30,9.9,0.5,0.08700000000000001,0.62,22,176,31,0,0,-9,22,176,0,31,0.281,25.55,87.19,0.9,0.25,882,0.2,236,2.1,0.0000,0.0000 +2012,3,1,1,30,8.3,0.52,0.08,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.28300000000000003,28.25,99.71000000000001,0.9,0.25,882,0.2,235,2,0.0000,0.0000 +2012,3,1,2,30,7.2,0.53,0.073,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.28400000000000003,29.810000000000002,112.09,0.9,0.25,882,0.2,239,2.1,0.0000,0.0000 +2012,3,1,3,30,6.4,0.54,0.07,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.28500000000000003,30.42,124.25,0.9,0.25,882,0.2,248,2.3000000000000003,0.0000,0.0000 +2012,3,1,4,30,5.7,0.54,0.068,0.62,0,0,0,0,1,-10.3,0,0,0,0,0.28500000000000003,30.53,135.74,0.9,0.25,882,0.2,260,2.6,0.0000,0.0000 +2012,3,1,5,30,5.2,0.54,0.066,0.62,0,0,0,0,1,-10.9,0,0,0,0,0.28400000000000003,30.26,145.67000000000002,0.9,0.25,881,0.2,268,2.9000000000000004,0.0000,0.0000 +2012,3,1,6,30,4.800000000000001,0.55,0.07,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.28300000000000003,30.09,152.13,0.9,0.25,881,0.2,269,3.1,0.0000,0.0000 +2012,3,1,7,30,4.5,0.53,0.075,0.62,0,0,0,0,1,-11.700000000000001,0,0,0,0,0.28200000000000003,29.84,152.48,0.9,0.25,881,0.2,266,3.5,0.0000,0.0000 +2012,3,1,8,30,4.3,0.52,0.078,0.62,0,0,0,0,1,-11.9,0,0,0,0,0.28200000000000003,29.76,146.54,0.9,0.25,880,0.2,265,3.9000000000000004,0.0000,0.0000 +2012,3,1,9,30,3.8000000000000003,0.5,0.083,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.28300000000000003,31.02,136.86,0.9,0.25,880,0.2,267,4,0.0000,0.0000 +2012,3,1,10,30,3.4000000000000004,0.49,0.08700000000000001,0.62,0,0,0,0,1,-11.600000000000001,0,0,0,0,0.28400000000000003,32.43,125.47,0.9,0.25,880,0.2,269,3.9000000000000004,0.0000,0.0000 +2012,3,1,11,30,3,0.49,0.089,0.62,0,0,0,0,1,-11.4,0,0,0,0,0.28500000000000003,33.82,113.34,0.9,0.25,879,0.2,270,3.8000000000000003,0.0000,0.0000 +2012,3,1,12,30,3.1,0.49,0.088,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.28400000000000003,33.95,100.95,0.9,0.25,880,0.30000000000000004,270,3.9000000000000004,0.0000,0.0000 +2012,3,1,13,30,5.1000000000000005,0.5,0.085,0.62,15,96,18,0,0,-11.100000000000001,15,96,0,18,0.28400000000000003,29.84,88.32000000000001,0.9,0.25,880,0.30000000000000004,270,4.4,0.0000,0.0000 +2012,3,1,14,30,8.9,0.5,0.081,0.62,63,646,213,0,3,-11,143,104,0,168,0.28400000000000003,23.25,76.52,0.91,0.25,879,0.30000000000000004,268,4.6000000000000005,8.0020,6.1294 +2012,3,1,15,30,13.8,0.5,0.076,0.62,83,848,439,0,1,-10.200000000000001,83,848,0,439,0.28500000000000003,17.92,65.19,0.91,0.25,879,0.30000000000000004,269,5,23.5443,18.3188 +2012,3,1,16,30,18.3,0.51,0.07200000000000001,0.62,95,942,635,0,1,-11,95,942,0,635,0.28600000000000003,12.58,55.03,0.91,0.25,878,0.30000000000000004,271,6.300000000000001,36.1582,28.3034 +2012,3,1,17,30,20.700000000000003,0.52,0.069,0.62,101,990,777,0,1,-13.4,101,990,0,777,0.28700000000000003,8.96,46.93,0.91,0.25,877,0.30000000000000004,267,6.800000000000001,45.6596,35.8312 +2012,3,1,18,30,22,0.67,0.069,0.62,104,1013,854,0,0,-14.100000000000001,104,1013,0,854,0.28700000000000003,7.8500000000000005,42.15,0.91,0.25,876,0.30000000000000004,260,6.9,50.7920,39.8988 +2012,3,1,19,30,22.700000000000003,0.6,0.066,0.62,102,1016,858,0,0,-14.100000000000001,102,1016,0,858,0.28800000000000003,7.49,41.89,0.9,0.25,875,0.30000000000000004,253,7.1000000000000005,50.4149,39.6046 +2012,3,1,20,30,23,0.53,0.065,0.62,99,999,790,0,0,-14.200000000000001,99,999,0,790,0.291,7.29,46.21,0.9,0.25,874,0.30000000000000004,248,7.300000000000001,45.7705,35.9247 +2012,3,1,21,30,22.8,0.42,0.062,0.62,90,950,649,0,0,-14.4,90,950,0,649,0.294,7.26,54,0.9,0.25,873,0.4,245,7.4,36.7353,28.7672 +2012,3,1,22,30,21.6,0.38,0.059000000000000004,0.62,77,875,461,0,0,-14.5,77,875,0,461,0.297,7.75,63.980000000000004,0.9,0.25,872,0.4,245,6.7,24.5161,19.0947 +2012,3,1,23,30,18.6,0.4,0.058,0.62,58,712,240,0,0,-13.3,58,712,0,240,0.301,10.26,75.21000000000001,0.9,0.25,872,0.4,247,5.6000000000000005,11.5972,8.9059 +2012,3,2,0,30,15.600000000000001,0.47000000000000003,0.058,0.62,21,243,34,0,0,-11.4,21,243,0,34,0.304,14.49,87.03,0.9,0.25,872,0.4,248,5.2,0.0000,0.0000 +2012,3,2,1,30,14.100000000000001,0.52,0.058,0.62,0,0,0,0,1,-11,0,0,0,0,0.307,16.44,99.54,0.9,0.25,873,0.5,248,5.7,0.0000,0.0000 +2012,3,2,2,30,12.700000000000001,0.54,0.056,0.62,0,0,0,0,1,-10.600000000000001,0,0,0,0,0.309,18.59,111.92,0.9,0.25,873,0.5,256,5.7,0.0000,0.0000 +2012,3,2,3,30,10.8,0.58,0.052000000000000005,0.62,0,0,0,0,0,-10,0,0,0,0,0.311,22.240000000000002,124.06,0.9,0.25,874,0.5,269,5.1000000000000005,0.0000,0.0000 +2012,3,2,4,30,9.200000000000001,0.61,0.049,0.62,0,0,0,0,1,-9,0,0,0,0,0.313,26.68,135.52,0.9,0.25,875,0.5,281,4.6000000000000005,0.0000,0.0000 +2012,3,2,5,30,7.9,0.64,0.05,0.62,0,0,0,0,1,-8.3,0,0,0,0,0.315,30.810000000000002,145.38,0.9,0.25,875,0.6000000000000001,292,4.5,0.0000,0.0000 +2012,3,2,6,30,6.7,0.67,0.05,0.62,0,0,0,0,1,-7.4,0,0,0,0,0.317,35.95,151.77,0.9,0.25,876,0.6000000000000001,301,4.4,0.0000,0.0000 +2012,3,2,7,30,5.5,0.7000000000000001,0.049,0.62,0,0,0,0,1,-6.5,0,0,0,0,0.318,41.57,152.1,0.9,0.25,876,0.6000000000000001,307,4.3,0.0000,0.0000 +2012,3,2,8,30,4.3,0.72,0.048,0.62,0,0,0,0,1,-6.2,0,0,0,0,0.32,46.43,146.19,0.91,0.25,876,0.6000000000000001,310,4.1000000000000005,0.0000,0.0000 +2012,3,2,9,30,3.2,0.72,0.049,0.62,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.321,49.800000000000004,136.56,0.91,0.25,876,0.5,314,3.8000000000000003,0.0000,0.0000 +2012,3,2,10,30,2.1,0.73,0.052000000000000005,0.62,0,0,0,0,1,-6.6000000000000005,0,0,0,0,0.323,52.46,125.2,0.91,0.25,877,0.5,321,3.4000000000000004,0.0000,0.0000 +2012,3,2,11,30,1.1,0.76,0.051000000000000004,0.62,0,0,0,0,0,-7,0,0,0,0,0.323,54.85,113.09,0.91,0.25,878,0.5,330,3,0.0000,0.0000 +2012,3,2,12,30,0.5,0.78,0.054,0.62,0,0,0,0,1,-7.2,0,0,0,0,0.323,56.1,100.7,0.91,0.25,878,0.5,341,2.7,0.0000,0.0000 +2012,3,2,13,30,1.7000000000000002,0.78,0.055,0.62,16,191,22,7,4,-7.300000000000001,9,0,7,9,0.325,51.43,88.07000000000001,0.91,0.25,879,0.5,185,2.7,0.0000,0.0000 +2012,3,2,14,30,4.2,0.76,0.056,0.62,54,694,219,0,4,-6.9,142,73,0,159,0.328,44.36,76.25,0.91,0.25,879,0.5,45,2.7,8.1142,6.2184 +2012,3,2,15,30,7.1000000000000005,0.74,0.058,0.62,73,856,437,0,1,-6.7,73,856,0,437,0.331,36.81,64.89,0.91,0.25,880,0.6000000000000001,79,1.8,23.3826,18.1975 +2012,3,2,16,30,10.3,0.76,0.062,0.62,87,933,626,0,1,-7.9,87,933,0,626,0.334,27.07,54.7,0.91,0.25,879,0.6000000000000001,182,1.9000000000000001,35.9294,28.1278 +2012,3,2,17,30,12.9,0.78,0.067,0.62,96,964,760,0,1,-8.6,96,964,0,760,0.337,21.53,46.56,0.91,0.25,879,0.7000000000000001,268,3,45.3623,35.6009 +2012,3,2,18,30,14.5,0.71,0.059000000000000004,0.62,96,991,835,0,0,-8,96,991,0,835,0.34,20.32,41.77,0.91,0.25,878,0.7000000000000001,261,4.1000000000000005,50.5476,39.7097 +2012,3,2,19,30,15.200000000000001,0.72,0.061,0.62,97,990,839,0,0,-7.5,97,990,0,839,0.341,20.22,41.52,0.91,0.25,877,0.7000000000000001,263,5.4,50.8183,39.9242 +2012,3,2,20,30,14.8,0.68,0.056,0.62,92,978,773,0,4,-7.800000000000001,359,13,0,368,0.343,20.2,45.88,0.92,0.25,877,0.7000000000000001,275,6.6000000000000005,46.2258,36.2846 +2012,3,2,21,30,13.5,0.63,0.049,0.62,83,961,651,0,4,-10.5,313,23,0,327,0.34500000000000003,17.86,53.730000000000004,0.92,0.25,878,0.5,288,7.300000000000001,36.8931,28.8936 +2012,3,2,22,30,11.600000000000001,0.54,0.043000000000000003,0.62,70,915,475,0,3,-15.600000000000001,251,298,0,383,0.34700000000000003,13.35,63.75,0.91,0.25,879,0.30000000000000004,294,7,24.7712,19.2968 +2012,3,2,23,30,8.8,0.48,0.043000000000000003,0.62,54,760,250,0,4,-18.900000000000002,108,2,0,108,0.34700000000000003,12.23,75.02,0.91,0.25,880,0.30000000000000004,298,5.2,11.7147,8.9994 +2012,3,3,0,30,5.6000000000000005,0.51,0.045,0.62,21,307,38,7,7,-16,28,6,7,29,0.34500000000000003,19.44,86.85000000000001,0.91,0.25,881,0.30000000000000004,305,3.1,0.0000,0.0000 +2012,3,3,1,30,3.7,0.59,0.047,0.62,0,0,0,0,4,-12.600000000000001,0,0,0,0,0.34500000000000003,29.36,99.37,0.91,0.25,882,0.4,325,2.8000000000000003,0.0000,0.0000 +2012,3,3,2,30,2.6,0.6900000000000001,0.051000000000000004,0.62,0,0,0,0,8,-10.100000000000001,0,0,0,0,0.34500000000000003,38.57,111.75,0.92,0.25,883,0.4,178,3.6,0.0000,0.0000 +2012,3,3,3,30,1.4000000000000001,0.81,0.058,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.34600000000000003,49.9,123.88000000000001,0.93,0.25,884,0.5,20,4,0.0000,0.0000 +2012,3,3,4,30,0.2,0.91,0.064,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.34600000000000003,61.6,135.3,0.93,0.25,885,0.6000000000000001,23,3.5,0.0000,0.0000 +2012,3,3,5,30,-0.8,0.98,0.066,0.62,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.34500000000000003,69.09,145.1,0.9400000000000001,0.25,885,0.6000000000000001,15,2.6,0.0000,0.0000 +2012,3,3,6,30,-1.6,1.03,0.065,0.62,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.34400000000000003,73.25,151.41,0.9400000000000001,0.25,885,0.6000000000000001,179,2.1,0.0000,0.0000 +2012,3,3,7,30,-2.1,1.05,0.065,0.62,0,0,0,0,1,-6,0,0,0,0,0.34500000000000003,74.73,151.71,0.9400000000000001,0.25,886,0.6000000000000001,343,2.2,0.0000,0.0000 +2012,3,3,8,30,-2.4000000000000004,1.07,0.066,0.62,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.34600000000000003,74.78,145.84,0.9400000000000001,0.25,886,0.6000000000000001,331,2.7,0.0000,0.0000 +2012,3,3,9,30,-2.6,1.09,0.066,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.34600000000000003,74.4,136.26,0.9400000000000001,0.25,886,0.5,325,3.1,0.0000,0.0000 +2012,3,3,10,30,-2.9000000000000004,1.11,0.067,0.62,0,0,0,0,1,-6.7,0,0,0,0,0.34600000000000003,75.08,124.93,0.9400000000000001,0.25,887,0.5,322,3,0.0000,0.0000 +2012,3,3,11,30,-3.4000000000000004,1.12,0.065,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.34700000000000003,77.10000000000001,112.83,0.9400000000000001,0.25,887,0.5,320,2.7,0.0000,0.0000 +2012,3,3,12,30,-3.3000000000000003,1.12,0.06,0.62,0,0,0,0,1,-6.9,0,0,0,0,0.35000000000000003,75.98,100.44,0.9400000000000001,0.25,888,0.5,319,2.7,0.0000,0.0000 +2012,3,3,13,30,-1.5,1.11,0.054,0.62,17,234,26,0,1,-7,17,234,0,26,0.352,65.96000000000001,87.82000000000001,0.9400000000000001,0.25,888,0.5,319,3.4000000000000004,0.0000,0.0000 +2012,3,3,14,30,2,1.07,0.047,0.62,51,734,229,0,1,-7.6000000000000005,51,734,0,229,0.352,49.2,75.97,0.93,0.25,888,0.4,323,4,7.6952,5.9002 +2012,3,3,15,30,5,0.98,0.044,0.62,68,899,454,0,1,-9.600000000000001,68,899,0,454,0.34700000000000003,33.86,64.59,0.93,0.25,888,0.4,321,4.1000000000000005,23.3279,18.1594 +2012,3,3,16,30,6.9,0.88,0.043000000000000003,0.62,78,975,647,0,0,-11.100000000000001,78,975,0,647,0.34,26.36,54.36,0.92,0.25,888,0.4,313,4.3,35.4740,27.7749 +2012,3,3,17,30,8.3,0.8,0.041,0.62,84,1026,795,0,0,-12.9,84,1026,0,795,0.335,20.79,46.2,0.92,0.25,888,0.30000000000000004,310,4.9,44.4219,34.8659 +2012,3,3,18,30,9.4,0.74,0.041,0.62,88,1043,870,0,0,-15.3,88,1043,0,870,0.331,15.92,41.38,0.91,0.25,888,0.30000000000000004,313,5.4,49.4711,38.8666 +2012,3,3,19,30,10.200000000000001,0.68,0.047,0.62,92,1036,872,0,0,-17.5,92,1036,0,872,0.328,12.55,41.14,0.91,0.25,887,0.30000000000000004,317,5.800000000000001,49.7394,39.0791 +2012,3,3,20,30,10.600000000000001,0.5700000000000001,0.07200000000000001,0.62,103,990,797,0,0,-18.8,103,990,0,797,0.326,10.97,45.56,0.91,0.25,887,0.30000000000000004,321,5.800000000000001,21.5548,16.9206 +2012,3,3,21,30,10.700000000000001,0.81,0.035,0.62,75,1001,671,0,0,-19.200000000000003,75,1001,0,671,0.326,10.450000000000001,53.46,0.9,0.25,887,0.30000000000000004,324,5.5,18.6107,14.5768 +2012,3,3,22,30,10,0.75,0.043000000000000003,0.62,70,920,480,0,0,-19.400000000000002,70,920,0,480,0.325,10.85,63.53,0.91,0.25,887,0.30000000000000004,325,4.6000000000000005,20.6132,16.0606 +2012,3,3,23,30,7.300000000000001,0.6900000000000001,0.049,0.62,55,757,254,0,0,-18.400000000000002,55,757,0,254,0.322,14.120000000000001,74.82000000000001,0.91,0.25,887,0.30000000000000004,326,2.7,5.2803,4.0578 +2012,3,4,0,30,4.7,0.66,0.051000000000000004,0.62,22,301,40,0,0,-12.4,22,301,0,40,0.321,27.73,86.68,0.91,0.25,887,0.4,324,1.4000000000000001,0.0000,0.0000 +2012,3,4,1,30,4.5,0.67,0.05,0.62,0,0,0,0,0,-13,0,0,0,0,0.319,26.89,99.2,0.91,0.25,888,0.4,314,1.3,0.0000,0.0000 +2012,3,4,2,30,4.2,0.72,0.045,0.62,0,0,0,0,1,-13.8,0,0,0,0,0.317,25.7,111.57000000000001,0.9,0.25,888,0.4,292,1.3,0.0000,0.0000 +2012,3,4,3,30,3.1,0.75,0.042,0.62,0,0,0,0,1,-13.8,0,0,0,0,0.315,27.76,123.69,0.9,0.25,888,0.4,265,1.4000000000000001,0.0000,0.0000 +2012,3,4,4,30,1.6,0.76,0.038,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.313,31.63,135.07,0.9,0.25,888,0.4,246,1.5,0.0000,0.0000 +2012,3,4,5,30,0.6000000000000001,0.77,0.034,0.62,0,0,0,0,4,-12.8,0,0,0,0,0.311,35.93,144.81,0.9,0.25,888,0.5,243,1.8,0.0000,0.0000 +2012,3,4,6,30,0,0.77,0.031,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.309,39.37,151.05,0.9,0.25,888,0.5,251,2.1,0.0000,0.0000 +2012,3,4,7,30,-0.5,0.75,0.029,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.307,44.71,151.33,0.9,0.25,887,0.5,263,2.4000000000000004,0.0000,0.0000 +2012,3,4,8,30,-1,0.71,0.027,0.62,0,0,0,0,1,-9.8,0,0,0,0,0.306,51.45,145.49,0.9,0.25,887,0.5,276,2.5,0.0000,0.0000 +2012,3,4,9,30,-1.5,0.66,0.027,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.305,56.96,135.95,0.9,0.25,886,0.5,288,2.6,0.0000,0.0000 +2012,3,4,10,30,-1.8,0.63,0.028,0.62,0,0,0,0,1,-8.5,0,0,0,0,0.304,59.99,124.65,0.9,0.25,886,0.5,298,2.7,0.0000,0.0000 +2012,3,4,11,30,-2.1,0.6,0.033,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.302,62.21,112.56,0.9,0.25,886,0.5,304,2.8000000000000003,0.0000,0.0000 +2012,3,4,12,30,-1.8,0.5700000000000001,0.039,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.3,61.46,100.19,0.91,0.25,886,0.5,308,3.2,0.0000,0.0000 +2012,3,4,13,30,0.2,0.55,0.046,0.62,18,237,28,0,0,-8.1,18,237,0,28,0.299,53.67,87.58,0.91,0.25,887,0.5,309,3.8000000000000003,0.0000,0.0000 +2012,3,4,14,30,4.1000000000000005,0.54,0.051000000000000004,0.62,55,710,230,0,1,-7.800000000000001,55,710,0,230,0.299,41.6,75.69,0.91,0.25,887,0.5,312,3.7,11.1073,8.5209 +2012,3,4,15,30,9.1,0.53,0.053,0.62,74,873,452,0,1,-7.300000000000001,74,873,0,452,0.298,30.57,64.29,0.91,0.25,888,0.5,330,3.2,24.2886,18.9119 +2012,3,4,16,30,13.9,0.53,0.053,0.62,85,952,644,0,0,-7.9,85,952,0,644,0.297,21.330000000000002,54.03,0.91,0.25,888,0.5,181,3,36.7205,28.7546 +2012,3,4,17,30,17,0.54,0.051000000000000004,0.62,91,995,784,0,0,-8.9,91,995,0,784,0.297,16.18,45.83,0.91,0.25,888,0.5,34,3,46.5198,36.5155 +2012,3,4,18,30,18.6,0.54,0.073,0.62,107,989,853,0,0,-9.200000000000001,107,989,0,853,0.296,14.3,40.99,0.91,0.25,887,0.5,58,3.1,51.5953,40.5382 +2012,3,4,19,30,19.5,0.5700000000000001,0.066,0.62,103,997,859,0,0,-9.200000000000001,103,997,0,859,0.296,13.450000000000001,40.77,0.91,0.25,887,0.5,71,3.1,51.7447,40.6573 +2012,3,4,20,30,19.8,0.6,0.062,0.62,97,986,791,0,0,-9.3,97,986,0,791,0.296,13.19,45.230000000000004,0.91,0.25,887,0.5,76,3.1,46.7278,36.6840 +2012,3,4,21,30,19.6,0.65,0.043000000000000003,0.62,79,965,657,0,0,-9.3,79,965,0,657,0.296,13.35,53.19,0.9,0.25,887,0.6000000000000001,79,3.1,38.2337,29.9494 +2012,3,4,22,30,18.2,0.66,0.043000000000000003,0.62,69,893,471,0,0,-9.200000000000001,69,893,0,471,0.296,14.6,63.300000000000004,0.9,0.25,887,0.6000000000000001,82,2.6,25.8734,20.1622 +2012,3,4,23,30,14.200000000000001,0.67,0.043000000000000003,0.62,53,744,250,0,0,-5.9,53,744,0,250,0.295,24.38,74.63,0.9,0.25,888,0.6000000000000001,87,1.8,12.4403,9.5634 +2012,3,5,0,30,10.200000000000001,0.67,0.042,0.62,22,327,42,0,0,-4.3,22,327,0,42,0.294,35.69,86.51,0.9,0.25,888,0.6000000000000001,94,1.8,0.0000,0.0000 +2012,3,5,1,30,8.700000000000001,0.67,0.04,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.294,35.65,99.03,0.9,0.25,889,0.6000000000000001,99,2.1,0.0000,0.0000 +2012,3,5,2,30,7.6000000000000005,0.67,0.039,0.62,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.293,36.76,111.4,0.9,0.25,889,0.5,106,2.2,0.0000,0.0000 +2012,3,5,3,30,6.6000000000000005,0.67,0.039,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.291,38.06,123.5,0.9,0.25,890,0.5,114,2.2,0.0000,0.0000 +2012,3,5,4,30,5.5,0.67,0.041,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.291,39.72,134.84,0.9,0.25,890,0.5,123,2,0.0000,0.0000 +2012,3,5,5,30,4.6000000000000005,0.66,0.042,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.29,40.85,144.52,0.9,0.25,890,0.5,132,1.9000000000000001,0.0000,0.0000 +2012,3,5,6,30,3.8000000000000003,0.66,0.044,0.62,0,0,0,0,1,-8,0,0,0,0,0.289,41.92,150.69,0.9,0.25,890,0.5,141,1.8,0.0000,0.0000 +2012,3,5,7,30,3.2,0.66,0.044,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.28800000000000003,42.87,150.94,0.9,0.25,891,0.5,149,1.7000000000000002,0.0000,0.0000 +2012,3,5,8,30,2.6,0.66,0.045,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.28600000000000003,44.06,145.14000000000001,0.9,0.25,890,0.5,155,1.6,0.0000,0.0000 +2012,3,5,9,30,2.3000000000000003,0.66,0.045,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.28400000000000003,44.49,135.64000000000001,0.9,0.25,890,0.5,160,1.5,0.0000,0.0000 +2012,3,5,10,30,2.1,0.66,0.045,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.28300000000000003,44.61,124.37,0.9,0.25,890,0.5,166,1.5,0.0000,0.0000 +2012,3,5,11,30,2.1,0.66,0.045,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.28300000000000003,44.15,112.3,0.9,0.25,890,0.5,173,1.4000000000000001,0.0000,0.0000 +2012,3,5,12,30,2.6,0.66,0.045,0.62,0,0,0,0,0,-9,0,0,0,0,0.28300000000000003,42.29,99.92,0.9,0.25,890,0.5,181,1.4000000000000001,0.0000,0.0000 +2012,3,5,13,30,5.6000000000000005,0.67,0.045,0.62,19,267,31,0,0,-8.3,19,267,0,31,0.28400000000000003,35.980000000000004,87.33,0.9,0.25,890,0.5,189,1.7000000000000002,0.0000,0.0000 +2012,3,5,14,30,9.9,0.67,0.045,0.62,53,733,237,0,1,-7.5,53,733,0,237,0.28400000000000003,28.6,75.42,0.9,0.25,890,0.5,194,2.2,11.1812,8.5820 +2012,3,5,15,30,14.4,0.67,0.046,0.62,70,899,465,0,1,-7.7,70,899,0,465,0.28400000000000003,20.990000000000002,63.980000000000004,0.9,0.25,890,0.4,189,3.1,24.2340,18.8738 +2012,3,5,16,30,18.6,0.68,0.049,0.62,83,970,657,0,1,-8.3,83,970,0,657,0.28300000000000003,15.280000000000001,53.7,0.9,0.25,890,0.4,185,4.4,36.6040,28.6669 +2012,3,5,17,30,20.8,0.6900000000000001,0.051000000000000004,0.62,90,1007,797,0,0,-9.1,90,1007,0,797,0.28200000000000003,12.540000000000001,45.46,0.9,0.25,889,0.4,189,5.1000000000000005,45.9282,36.0541 +2012,3,5,18,30,22,0.7000000000000001,0.057,0.62,97,1018,870,0,0,-9.4,97,1018,0,870,0.281,11.370000000000001,40.6,0.9,0.25,888,0.4,196,5.5,50.6359,39.7871 +2012,3,5,19,30,22.8,0.7000000000000001,0.058,0.62,98,1018,873,0,0,-9.8,98,1018,0,873,0.281,10.49,40.4,0.91,0.25,887,0.4,202,5.7,51.0194,40.0899 +2012,3,5,20,30,23.200000000000003,0.6900000000000001,0.058,0.62,95,1001,804,0,0,-10.3,95,1001,0,804,0.28,9.9,44.910000000000004,0.91,0.25,886,0.4,209,5.7,46.4217,36.4463 +2012,3,5,21,30,23.1,0.6,0.047,0.62,83,977,672,0,0,-10.700000000000001,83,977,0,672,0.281,9.63,52.92,0.91,0.25,885,0.4,214,5.6000000000000005,37.4793,29.3612 +2012,3,5,22,30,21.6,0.64,0.05,0.62,74,901,482,0,0,-10.9,74,901,0,482,0.28200000000000003,10.38,63.08,0.91,0.25,885,0.4,215,4.5,25.4285,19.8189 +2012,3,5,23,30,17.5,0.68,0.053,0.62,57,746,257,0,0,-9,57,746,0,257,0.28300000000000003,15.530000000000001,74.44,0.91,0.25,885,0.4,212,2.9000000000000004,12.2650,9.4319 +2012,3,6,0,30,13.5,0.68,0.051000000000000004,0.62,24,325,44,7,3,-6.5,32,3,7,32,0.28400000000000003,24.3,86.35000000000001,0.91,0.25,885,0.4,207,2.4000000000000004,0.0000,0.0000 +2012,3,6,1,30,12.100000000000001,0.65,0.047,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.28600000000000003,24.67,98.87,0.91,0.25,885,0.4,203,2.7,0.0000,0.0000 +2012,3,6,2,30,11.3,0.6900000000000001,0.049,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.28600000000000003,24.41,111.23,0.91,0.25,885,0.4,201,3,0.0000,0.0000 +2012,3,6,3,30,10.8,0.75,0.057,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.28700000000000003,24.1,123.3,0.92,0.25,885,0.4,199,3.6,0.0000,0.0000 +2012,3,6,4,30,10.4,0.8,0.066,0.62,0,0,0,0,8,-9,0,0,0,0,0.289,24.7,134.62,0.92,0.25,885,0.4,198,4,0.0000,0.0000 +2012,3,6,5,30,9.5,0.8200000000000001,0.07200000000000001,0.62,0,0,0,0,1,-8,0,0,0,0,0.29,28.18,144.24,0.92,0.25,885,0.5,200,4,0.0000,0.0000 +2012,3,6,6,30,8.1,0.8300000000000001,0.07200000000000001,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.291,34.84,150.33,0.92,0.25,884,0.5,206,3.9000000000000004,0.0000,0.0000 +2012,3,6,7,30,7,0.8200000000000001,0.07200000000000001,0.62,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.292,41.910000000000004,150.55,0.92,0.25,884,0.5,213,3.7,0.0000,0.0000 +2012,3,6,8,30,6.1000000000000005,0.8200000000000001,0.07200000000000001,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.293,47.75,144.78,0.92,0.25,883,0.5,219,3.4000000000000004,0.0000,0.0000 +2012,3,6,9,30,5.4,0.8200000000000001,0.07,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.294,51.84,135.32,0.92,0.25,882,0.5,224,3,0.0000,0.0000 +2012,3,6,10,30,5.4,0.8300000000000001,0.073,0.62,0,0,0,0,4,-3.6,0,0,0,0,0.294,52.22,124.08,0.92,0.25,882,0.5,229,2.9000000000000004,0.0000,0.0000 +2012,3,6,11,30,5.9,0.85,0.075,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.291,49.370000000000005,112.03,0.92,0.25,882,0.5,232,2.8000000000000003,0.0000,0.0000 +2012,3,6,12,30,6.4,0.87,0.075,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.28600000000000003,45.97,99.66,0.92,0.25,881,0.5,231,2.8000000000000003,0.0000,0.0000 +2012,3,6,13,30,8,0.89,0.078,0.62,22,217,33,0,1,-4.9,22,217,0,33,0.28300000000000003,39.82,87.08,0.92,0.25,881,0.5,225,3.3000000000000003,0.0000,0.0000 +2012,3,6,14,30,10.600000000000001,0.92,0.08,0.62,63,678,237,0,1,-5.300000000000001,63,678,0,237,0.28200000000000003,32.27,75.13,0.92,0.25,881,0.5,216,3.6,11.5475,8.8676 +2012,3,6,15,30,14.4,0.9400000000000001,0.075,0.62,81,856,461,0,0,-5.4,81,856,0,461,0.28200000000000003,25.060000000000002,63.68,0.91,0.25,881,0.5,205,3.7,24.9861,19.4642 +2012,3,6,16,30,19.6,0.96,0.068,0.62,90,945,654,0,1,-5.9,90,945,0,654,0.28200000000000003,17.32,53.36,0.91,0.25,880,0.5,204,4.9,37.3971,29.2915 +2012,3,6,17,30,23.6,0.99,0.061,0.62,94,993,795,0,0,-9.5,94,993,0,795,0.28300000000000003,10.290000000000001,45.09,0.9,0.25,880,0.5,209,6,46.7418,36.6958 +2012,3,6,18,30,25.6,1.03,0.054,0.62,93,1018,870,0,0,-11.9,93,1018,0,870,0.28300000000000003,7.55,40.21,0.9,0.25,879,0.5,209,6.7,51.6940,40.6211 +2012,3,6,19,30,26.400000000000002,1.03,0.052000000000000005,0.62,92,1021,874,7,3,-12.9,307,720,7,858,0.28400000000000003,6.6000000000000005,40.02,0.9,0.25,877,0.5,205,7,51.8971,40.7821 +2012,3,6,20,30,26.5,1.02,0.052000000000000005,0.62,89,998,799,0,0,-13,89,998,0,799,0.28600000000000003,6.55,44.59,0.9,0.25,877,0.6000000000000001,199,7.4,47.2290,37.0827 +2012,3,6,21,30,25.900000000000002,1.02,0.048,0.62,80,966,666,0,0,-12.5,80,966,0,666,0.28700000000000003,7.05,52.660000000000004,0.9,0.25,876,0.6000000000000001,194,7.7,38.3788,30.0687 +2012,3,6,22,30,24.400000000000002,1,0.05,0.62,71,893,479,0,0,-11.5,71,893,0,479,0.289,8.32,62.86,0.91,0.25,876,0.6000000000000001,187,7.7,26.0614,20.3154 +2012,3,6,23,30,21.5,0.98,0.055,0.62,56,730,254,0,0,-9.600000000000001,56,730,0,254,0.291,11.56,74.25,0.91,0.25,875,0.7000000000000001,180,7.4,12.6299,9.7157 +2012,3,7,0,30,18.2,0.98,0.061,0.62,24,309,44,0,0,-6.6000000000000005,24,309,0,44,0.292,17.85,86.18,0.91,0.25,876,0.7000000000000001,174,7.4,0.0000,0.0000 +2012,3,7,1,30,15.700000000000001,0.98,0.07,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.292,27.310000000000002,98.7,0.92,0.25,876,0.7000000000000001,173,7.7,0.0000,0.0000 +2012,3,7,2,30,13.700000000000001,0.97,0.08,0.62,0,0,0,0,0,0.4,0,0,0,0,0.292,40.14,111.06,0.93,0.25,876,0.7000000000000001,178,7.7,0.0000,0.0000 +2012,3,7,3,30,12.3,0.93,0.085,0.62,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.292,50.65,123.11,0.93,0.25,877,0.7000000000000001,184,7.2,0.0000,0.0000 +2012,3,7,4,30,11.4,0.89,0.083,0.62,0,0,0,0,0,3,0,0,0,0,0.292,56.19,134.39000000000001,0.93,0.25,877,0.7000000000000001,190,6.7,0.0000,0.0000 +2012,3,7,5,30,10.600000000000001,0.87,0.078,0.62,0,0,0,0,0,3.2,0,0,0,0,0.291,60.21,143.94,0.93,0.25,877,0.7000000000000001,193,6.4,0.0000,0.0000 +2012,3,7,6,30,10,0.85,0.075,0.62,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.28800000000000003,63.67,149.96,0.93,0.25,877,0.7000000000000001,195,6.300000000000001,0.0000,0.0000 +2012,3,7,7,30,9.5,0.85,0.07100000000000001,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28600000000000003,65.28,150.15,0.93,0.25,877,0.7000000000000001,197,6.1000000000000005,0.0000,0.0000 +2012,3,7,8,30,9.1,0.85,0.066,0.62,0,0,0,0,0,2.6,0,0,0,0,0.28700000000000003,63.61,144.42000000000002,0.93,0.25,876,0.6000000000000001,204,6,0.0000,0.0000 +2012,3,7,9,30,8.700000000000001,0.86,0.059000000000000004,0.62,0,0,0,0,1,0.9,0,0,0,0,0.28800000000000003,58.14,135,0.92,0.25,876,0.5,209,5.5,0.0000,0.0000 +2012,3,7,10,30,7.800000000000001,0.89,0.054,0.62,0,0,0,0,4,-0.8,0,0,0,0,0.289,54.49,123.79,0.92,0.25,876,0.5,212,4.6000000000000005,0.0000,0.0000 +2012,3,7,11,30,6.7,0.92,0.053,0.62,0,0,0,0,8,-1.7000000000000002,0,0,0,0,0.28700000000000003,55.19,111.76,0.92,0.25,877,0.5,214,4,0.0000,0.0000 +2012,3,7,12,30,6.5,0.93,0.05,0.62,0,0,0,0,8,-1.9000000000000001,0,0,0,0,0.28500000000000003,55.01,99.39,0.92,0.25,877,0.5,216,4,0.0000,0.0000 +2012,3,7,13,30,8.200000000000001,0.9400000000000001,0.051000000000000004,0.62,21,304,38,7,7,-1.9000000000000001,26,3,7,26,0.28400000000000003,48.84,86.82000000000001,0.92,0.25,878,0.5,215,4.4,0.0000,0.0000 +2012,3,7,14,30,11.9,0.93,0.049,0.62,54,743,249,0,6,-2.3000000000000003,91,190,0,140,0.28300000000000003,37.25,74.85000000000001,0.92,0.25,878,0.5,211,4.6000000000000005,11.5762,8.8943 +2012,3,7,15,30,16.7,0.92,0.046,0.62,70,893,470,0,7,-2.7,380,0,0,380,0.28300000000000003,26.35,63.370000000000005,0.92,0.25,878,0.6000000000000001,216,5.4,24.8234,19.3418 +2012,3,7,16,30,20.5,0.92,0.044,0.62,79,968,661,0,7,-7.1000000000000005,290,327,0,487,0.28300000000000003,14.92,53.02,0.91,0.25,878,0.6000000000000001,226,6.300000000000001,37.2811,29.2042 +2012,3,7,17,30,22.5,0.92,0.042,0.62,84,1007,800,0,7,-9.4,282,523,0,653,0.28300000000000003,11.03,44.71,0.91,0.25,878,0.6000000000000001,225,6.300000000000001,46.6757,36.6469 +2012,3,7,18,30,23.8,0.93,0.048,0.62,91,1017,872,0,7,-10.5,326,481,0,695,0.28300000000000003,9.34,39.82,0.91,0.25,877,0.6000000000000001,217,6.300000000000001,51.7421,40.6616 +2012,3,7,19,30,24.6,0.9400000000000001,0.05,0.62,92,1016,874,0,7,-11.3,260,678,0,782,0.28300000000000003,8.4,39.65,0.91,0.25,876,0.6000000000000001,211,6.6000000000000005,51.0513,40.1199 +2012,3,7,20,30,24.900000000000002,0.9500000000000001,0.051000000000000004,0.62,89,1006,810,0,1,-11.8,89,1006,0,810,0.28300000000000003,7.9,44.27,0.91,0.25,875,0.5,207,6.800000000000001,46.9788,36.8887 +2012,3,7,21,30,24.700000000000003,0.98,0.047,0.62,81,975,676,0,0,-12.200000000000001,81,975,0,676,0.28300000000000003,7.74,52.39,0.91,0.25,875,0.5,204,6.9,38.0774,29.8352 +2012,3,7,22,30,23.700000000000003,0.99,0.048,0.62,71,905,487,0,0,-12.5,71,905,0,487,0.28300000000000003,8.06,62.64,0.91,0.25,875,0.5,202,6.2,25.9377,20.2220 +2012,3,7,23,30,20.3,0.98,0.05,0.62,56,758,264,0,0,-11.700000000000001,56,758,0,264,0.28300000000000003,10.52,74.06,0.91,0.25,875,0.5,201,4.4,12.5039,9.6219 +2012,3,8,0,30,16.1,0.9500000000000001,0.053,0.62,24,350,49,0,0,-9.1,24,350,0,49,0.28400000000000003,16.9,86.01,0.91,0.25,876,0.5,199,3,0.0000,0.0000 +2012,3,8,1,30,14.100000000000001,0.93,0.058,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.28400000000000003,20.52,98.53,0.92,0.25,877,0.5,193,2.5,0.0000,0.0000 +2012,3,8,2,30,13.200000000000001,0.89,0.067,0.62,0,0,0,0,3,-7.4,0,0,0,0,0.28400000000000003,23.240000000000002,110.88,0.92,0.25,877,0.5,180,2.2,0.0000,0.0000 +2012,3,8,3,30,12.600000000000001,0.8300000000000001,0.079,0.62,0,0,0,0,4,-6.7,0,0,0,0,0.28300000000000003,25.54,122.92,0.93,0.25,878,0.6000000000000001,174,2.1,0.0000,0.0000 +2012,3,8,4,30,11.8,0.8,0.09,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.28200000000000003,28.69,134.15,0.93,0.25,878,0.7000000000000001,177,2,0.0000,0.0000 +2012,3,8,5,30,10.8,0.78,0.094,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.281,33.35,143.65,0.93,0.25,879,0.7000000000000001,182,1.6,0.0000,0.0000 +2012,3,8,6,30,9.8,0.76,0.088,0.62,0,0,0,0,4,-3.8000000000000003,0,0,0,0,0.28,38.06,149.6,0.93,0.25,879,0.7000000000000001,203,1.3,0.0000,0.0000 +2012,3,8,7,30,9,0.76,0.081,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.279,39.99,149.76,0.92,0.25,880,0.7000000000000001,263,2.1,0.0000,0.0000 +2012,3,8,8,30,7.5,0.79,0.075,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.278,41.47,144.06,0.92,0.25,881,0.7000000000000001,331,4.3,0.0000,0.0000 +2012,3,8,9,30,5.4,0.8300000000000001,0.07,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.278,49.94,134.68,0.92,0.25,882,0.8,182,6.7,0.0000,0.0000 +2012,3,8,10,30,3.4000000000000004,0.89,0.076,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.279,64.88,123.5,0.9400000000000001,0.25,883,0.8,14,8.1,0.0000,0.0000 +2012,3,8,11,30,2.6,0.93,0.09,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.281,72.84,111.48,0.9500000000000001,0.25,885,0.9,22,8.9,0.0000,0.0000 +2012,3,8,12,30,2.3000000000000003,0.96,0.097,0.62,0,0,0,0,4,-2.2,0,0,0,0,0.28200000000000003,72.28,99.12,0.9500000000000001,0.25,886,0.9,29,9.5,0.0000,0.0000 +2012,3,8,13,30,2.1,0.97,0.091,0.62,25,213,38,7,4,-2.8000000000000003,7,0,7,7,0.28400000000000003,69.76,86.55,0.9500000000000001,0.25,888,1,35,10.100000000000001,0.0000,0.0000 +2012,3,8,14,30,2.4000000000000004,0.96,0.088,0.62,66,647,238,7,4,-3.4000000000000004,44,0,7,44,0.28600000000000003,65.32000000000001,74.56,0.9500000000000001,0.25,889,1,38,10.3,6.8550,5.2695 +2012,3,8,15,30,3.4000000000000004,0.9500000000000001,0.089,0.62,88,812,456,0,4,-4.1000000000000005,34,0,0,34,0.28700000000000003,57.800000000000004,63.06,0.9500000000000001,0.25,890,1,39,10.5,20.5057,15.9813 +2012,3,8,16,30,4.800000000000001,0.9500000000000001,0.089,0.62,102,894,644,0,4,-5.1000000000000005,325,49,0,355,0.28800000000000003,48.74,52.68,0.9500000000000001,0.25,891,1,41,10.4,27.8015,21.7809 +2012,3,8,17,30,6.300000000000001,0.96,0.08600000000000001,0.62,108,940,781,0,4,-6.300000000000001,365,13,0,375,0.28800000000000003,40.2,44.34,0.9400000000000001,0.25,891,1,42,10.100000000000001,38.3812,30.1369 +2012,3,8,18,30,7.6000000000000005,0.97,0.082,0.62,110,963,854,0,8,-7.5,373,35,0,400,0.29,33.31,39.42,0.9400000000000001,0.25,892,1,42,9.5,41.3721,32.5143 +2012,3,8,19,30,8.5,0.98,0.081,0.62,110,964,856,0,7,-8.8,417,92,0,489,0.291,28.43,39.27,0.9400000000000001,0.25,892,1,43,8.9,46.5694,36.5998 +2012,3,8,20,30,9,0.97,0.085,0.62,108,947,790,0,8,-9.600000000000001,366,64,0,412,0.293,25.91,43.94,0.9400000000000001,0.25,892,0.9,44,8.3,47.6691,37.4332 +2012,3,8,21,30,8.9,0.96,0.08600000000000001,0.62,101,905,656,0,8,-9.9,313,69,0,356,0.294,25.37,52.13,0.9400000000000001,0.25,892,0.9,45,7.7,38.6922,30.3196 +2012,3,8,22,30,8.1,0.9500000000000001,0.08600000000000001,0.62,88,826,470,0,8,-10.4,205,27,0,217,0.295,25.73,62.42,0.9400000000000001,0.25,893,0.9,46,7.1000000000000005,26.4097,20.5931 +2012,3,8,23,30,6.800000000000001,0.9400000000000001,0.08600000000000001,0.62,67,666,252,0,8,-11.200000000000001,128,19,0,133,0.297,26.37,73.87,0.9400000000000001,0.25,894,0.9,46,6.1000000000000005,13.0187,10.0213 +2012,3,9,0,30,5.5,0.9400000000000001,0.089,0.62,28,260,47,7,8,-11.9,20,0,7,20,0.298,27.23,85.84,0.9400000000000001,0.25,895,0.8,46,5,0.0000,0.0000 +2012,3,9,1,30,4.6000000000000005,0.9400000000000001,0.092,0.62,0,0,0,0,8,-12.200000000000001,0,0,0,0,0.301,28.35,98.37,0.9400000000000001,0.25,896,0.8,44,4.5,0.0000,0.0000 +2012,3,9,2,30,4,0.9400000000000001,0.093,0.62,0,0,0,0,4,-12.4,0,0,0,0,0.303,29.240000000000002,110.71000000000001,0.9400000000000001,0.25,897,0.8,43,4.3,0.0000,0.0000 +2012,3,9,3,30,3.5,0.93,0.094,0.62,0,0,0,0,4,-12.3,0,0,0,0,0.306,30.35,122.73,0.9400000000000001,0.25,897,0.9,43,3.8000000000000003,0.0000,0.0000 +2012,3,9,4,30,2.8000000000000003,0.92,0.097,0.62,0,0,0,0,4,-12,0,0,0,0,0.308,32.88,133.92000000000002,0.9400000000000001,0.25,897,0.9,42,3.4000000000000004,0.0000,0.0000 +2012,3,9,5,30,2.3000000000000003,0.92,0.098,0.62,0,0,0,0,4,-11.600000000000001,0,0,0,0,0.309,35.18,143.36,0.9400000000000001,0.25,897,0.9,44,3.3000000000000003,0.0000,0.0000 +2012,3,9,6,30,1.6,0.92,0.097,0.62,0,0,0,0,4,-11.3,0,0,0,0,0.31,37.82,149.23,0.9400000000000001,0.25,897,0.8,45,3.3000000000000003,0.0000,0.0000 +2012,3,9,7,30,1,0.92,0.096,0.62,0,0,0,0,4,-10.600000000000001,0,0,0,0,0.311,41.62,149.36,0.9400000000000001,0.25,898,0.9,42,3.2,0.0000,0.0000 +2012,3,9,8,30,0.5,0.92,0.098,0.62,0,0,0,0,8,-10,0,0,0,0,0.311,45.21,143.69,0.9400000000000001,0.25,898,0.9,36,3.2,0.0000,0.0000 +2012,3,9,9,30,0.2,0.93,0.1,0.62,0,0,0,0,4,-9.4,0,0,0,0,0.311,48.44,134.36,0.9400000000000001,0.25,898,0.9,31,3.4000000000000004,0.0000,0.0000 +2012,3,9,10,30,0,0.92,0.101,0.62,0,0,0,0,4,-8.700000000000001,0,0,0,0,0.31,51.910000000000004,123.21000000000001,0.9400000000000001,0.25,898,0.9,27,3.6,0.0000,0.0000 +2012,3,9,11,30,-0.1,0.91,0.098,0.62,0,0,0,0,4,-8.1,0,0,0,0,0.31,54.93,111.21000000000001,0.9400000000000001,0.25,898,0.8,27,3.7,0.0000,0.0000 +2012,3,9,12,30,0,0.9,0.094,0.62,0,0,0,0,4,-7.7,0,0,0,0,0.309,56.28,98.85000000000001,0.9400000000000001,0.25,898,0.8,29,3.9000000000000004,0.0000,0.0000 +2012,3,9,13,30,1.5,0.88,0.091,0.62,26,226,41,7,4,-7.300000000000001,17,0,7,17,0.308,51.9,86.28,0.9400000000000001,0.25,898,0.8,38,4.5,0.0000,0.0000 +2012,3,9,14,30,4.1000000000000005,0.87,0.093,0.62,69,647,244,0,4,-7.800000000000001,140,9,0,143,0.307,41.75,74.28,0.9400000000000001,0.25,898,0.8,51,5.5,2.1600,1.6613 +2012,3,9,15,30,6.300000000000001,0.86,0.10200000000000001,0.62,95,803,463,0,4,-11.100000000000001,31,0,0,31,0.306,27.55,62.75,0.9500000000000001,0.25,897,0.8,61,6,1.8386,1.4332 +2012,3,9,16,30,7.9,0.86,0.107,0.62,112,877,648,0,4,-14.200000000000001,154,0,0,154,0.305,19.17,52.34,0.9500000000000001,0.25,897,0.9,67,5.9,20.2948,15.9017 +2012,3,9,17,30,9.1,0.86,0.108,0.62,122,921,784,0,4,-14.9,326,2,0,327,0.305,16.7,43.96,0.9500000000000001,0.25,897,0.9,74,5.6000000000000005,22.0647,17.3265 +2012,3,9,18,30,9.9,0.86,0.099,0.62,120,945,854,0,4,-13.700000000000001,158,0,0,158,0.303,17.47,39.02,0.9400000000000001,0.25,897,1,80,5.4,23.8332,18.7317 +2012,3,9,19,30,10.200000000000001,0.9,0.085,0.62,113,959,859,0,4,-11.700000000000001,275,1,0,276,0.3,20.21,38.9,0.9400000000000001,0.25,896,1,84,5,29.1461,22.9079 +2012,3,9,20,30,10,0.93,0.074,0.62,103,949,790,0,4,-9.700000000000001,256,1,0,256,0.297,23.98,43.62,0.9400000000000001,0.25,895,1.1,87,4.6000000000000005,24.2691,19.0591 +2012,3,9,21,30,9.4,0.97,0.07100000000000001,0.62,93,910,655,0,4,-7.9,254,2,0,255,0.295,28.68,51.870000000000005,0.9400000000000001,0.25,895,1.2000000000000002,89,4.3,20.3980,15.9854 +2012,3,9,22,30,8.4,0.99,0.073,0.62,82,833,471,0,4,-6.6000000000000005,226,14,0,232,0.293,33.86,62.2,0.9400000000000001,0.25,895,1.2000000000000002,91,4,11.7849,9.1907 +2012,3,9,23,30,7,1.01,0.074,0.62,63,680,254,0,4,-6,63,0,0,63,0.292,39,73.68,0.93,0.25,894,1.2000000000000002,91,3.1,6.5701,5.0590 +2012,3,10,0,30,5.5,1.03,0.07200000000000001,0.62,27,296,49,7,4,-5.5,27,0,7,27,0.291,45.11,85.67,0.93,0.25,894,1.2000000000000002,91,2,0.0000,0.0000 +2012,3,10,1,30,4.5,1.04,0.067,0.62,0,0,0,0,4,-5.2,0,0,0,0,0.291,49.56,98.2,0.93,0.25,894,1.1,93,1.6,0.0000,0.0000 +2012,3,10,2,30,3.9000000000000004,1.05,0.065,0.62,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.291,49.31,110.54,0.93,0.25,894,1,96,1.6,0.0000,0.0000 +2012,3,10,3,30,3.6,1.04,0.067,0.62,0,0,0,0,4,-6.5,0,0,0,0,0.292,47.7,122.53,0.93,0.25,894,1,99,1.7000000000000002,0.0000,0.0000 +2012,3,10,4,30,3.2,1.05,0.069,0.62,0,0,0,0,4,-6.9,0,0,0,0,0.292,47.47,133.69,0.93,0.25,894,1.1,102,1.7000000000000002,0.0000,0.0000 +2012,3,10,5,30,2.7,1.06,0.069,0.62,0,0,0,0,4,-6.9,0,0,0,0,0.292,49.32,143.06,0.9400000000000001,0.25,893,1.1,101,1.6,0.0000,0.0000 +2012,3,10,6,30,2.3000000000000003,1.06,0.069,0.62,0,0,0,0,4,-6.6000000000000005,0,0,0,0,0.292,51.88,148.86,0.9400000000000001,0.25,893,1.2000000000000002,101,1.7000000000000002,0.0000,0.0000 +2012,3,10,7,30,1.8,1.08,0.067,0.62,0,0,0,0,4,-6.2,0,0,0,0,0.292,55.52,148.97,0.9400000000000001,0.25,892,1.3,101,2,0.0000,0.0000 +2012,3,10,8,30,1.2000000000000002,1.09,0.067,0.62,0,0,0,0,4,-6,0,0,0,0,0.293,58.71,143.32,0.9400000000000001,0.25,892,1.3,98,2.3000000000000003,0.0000,0.0000 +2012,3,10,9,30,0.6000000000000001,1.09,0.076,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.294,64.28,134.03,0.9500000000000001,0.25,891,1.3,93,2.3000000000000003,0.0000,0.0000 +2012,3,10,10,30,0.4,1.09,0.092,0.62,0,0,0,0,4,-4.4,0,0,0,0,0.295,70,122.91,0.96,0.25,891,1.2000000000000002,86,2.4000000000000004,0.0000,0.0000 +2012,3,10,11,30,0.4,1.08,0.107,0.62,0,0,0,0,4,-3.7,0,0,0,0,0.296,74.23,110.93,0.96,0.25,891,1.2000000000000002,80,2.4000000000000004,0.0000,0.0000 +2012,3,10,12,30,0.5,1.08,0.11800000000000001,0.62,0,0,0,0,4,-3,0,0,0,0,0.296,77.11,98.58,0.96,0.25,890,1.2000000000000002,81,2.5,0.0000,0.0000 +2012,3,10,13,30,1.3,1.09,0.124,0.62,29,197,42,7,4,-2.6,15,0,7,15,0.296,75.52,86.01,0.96,0.25,890,1.2000000000000002,90,2.6,0.0000,0.0000 +2012,3,10,14,30,2.4000000000000004,1.1,0.126,0.62,77,594,240,0,1,-2.1,77,594,0,240,0.296,72.23,73.99,0.97,0.25,890,1.3,104,2.8000000000000003,7.0377,5.4153 +2012,3,10,15,30,3.4000000000000004,1.1,0.135,0.62,106,754,454,7,4,-1.6,22,0,7,22,0.298,69.92,62.440000000000005,0.97,0.25,890,1.3,116,3,1.6799,1.3098 +2012,3,10,16,30,4.2,1.1,0.136,0.62,123,840,640,0,4,-1.1,205,0,0,205,0.3,68.18,52,0.97,0.25,889,1.3,123,3.1,8.8163,6.9087 +2012,3,10,17,30,4.800000000000001,1.11,0.133,0.62,131,889,775,0,4,-0.7000000000000001,231,0,0,231,0.303,67.34,43.58,0.97,0.25,888,1.3,127,3.5,19.2610,15.1261 +2012,3,10,18,30,5.300000000000001,1.11,0.14200000000000002,0.62,140,902,845,0,4,-0.4,116,0,0,116,0.305,66.79,38.63,0.97,0.25,887,1.3,130,3.7,9.4227,7.4062 +2012,3,10,19,30,5.7,1.1,0.146,0.62,142,899,846,0,4,0,86,0,0,86,0.307,66.69,38.52,0.97,0.25,886,1.3,136,3.8000000000000003,16.4643,12.9411 +2012,3,10,20,30,6.1000000000000005,1.08,0.14,0.62,135,887,781,0,4,0.30000000000000004,93,0,0,93,0.309,66.34,43.300000000000004,0.97,0.25,886,1.2000000000000002,145,3.6,15.0932,11.8538 +2012,3,10,21,30,6.2,1.08,0.138,0.62,124,844,648,0,4,0.5,140,0,0,140,0.309,66.8,51.61,0.97,0.25,885,1.2000000000000002,158,3.4000000000000004,14.6262,11.4632 +2012,3,10,22,30,5.9,1.08,0.134,0.62,106,766,466,0,4,0.6000000000000001,59,0,0,59,0.31,68.67,61.980000000000004,0.96,0.25,885,1.1,172,3.2,12.6177,9.8416 +2012,3,10,23,30,5,1.08,0.129,0.62,79,605,251,0,4,0.5,63,0,0,63,0.314,72.87,73.49,0.96,0.25,885,1.1,182,2.5,3.1176,2.4013 +2012,3,11,0,30,3.6,1.09,0.125,0.62,31,225,49,7,4,0.5,17,0,7,17,0.319,80.21000000000001,85.51,0.96,0.25,885,1,181,1.5,0.0000,0.0000 +2012,3,11,1,30,2.2,1.1,0.114,0.62,0,0,0,0,4,0.5,0,0,0,0,0.325,88.42,98.04,0.9500000000000001,0.25,885,0.9,165,0.9,0.0000,0.0000 +2012,3,11,2,30,1.2000000000000002,1.1,0.106,0.62,0,0,0,0,4,0.30000000000000004,0,0,0,0,0.329,93.92,110.37,0.9400000000000001,0.25,885,0.8,151,0.8,0.0000,0.0000 +2012,3,11,3,30,0.5,1.09,0.107,0.62,0,0,0,0,4,0.2,0,0,0,0,0.333,97.88,122.34,0.9500000000000001,0.25,885,0.9,168,0.8,0.0000,0.0000 +2012,3,11,4,30,-0.30000000000000004,1.09,0.114,0.62,0,0,0,0,4,-0.30000000000000004,0,0,0,0,0.334,100,133.45,0.9500000000000001,0.25,884,0.9,196,0.9,0.0000,0.0000 +2012,3,11,5,30,-1,1.09,0.12,0.62,0,0,0,0,4,-1,0,0,0,0,0.333,100,142.76,0.9500000000000001,0.25,884,0.9,213,1.1,0.0000,0.0000 +2012,3,11,6,30,-1,1.07,0.127,0.62,0,0,0,0,0,-1,0,0,0,0,0.33,100,148.49,0.9500000000000001,0.25,884,0.9,222,1.5,0.0000,0.0000 +2012,3,11,7,30,-0.8,1.05,0.131,0.62,0,0,0,0,1,-0.8,0,0,0,0,0.326,100,148.57,0.9500000000000001,0.25,883,0.9,228,2.4000000000000004,0.0000,0.0000 +2012,3,11,8,30,-0.7000000000000001,1.03,0.129,0.62,0,0,0,0,4,-0.7000000000000001,0,0,0,0,0.322,99.65,142.95000000000002,0.9500000000000001,0.25,883,0.9,231,2.9000000000000004,0.0000,0.0000 +2012,3,11,9,30,-0.7000000000000001,1.02,0.124,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.319,98.32000000000001,133.71,0.9500000000000001,0.25,882,0.9,228,3,0.0000,0.0000 +2012,3,11,10,30,-0.8,1.01,0.111,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.317,97.67,122.62,0.9500000000000001,0.25,882,0.9,222,3.1,0.0000,0.0000 +2012,3,11,11,30,-0.7000000000000001,1.02,0.092,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.315,95.49,110.65,0.9500000000000001,0.25,881,0.9,217,3.1,0.0000,0.0000 +2012,3,11,12,30,-0.4,1.05,0.082,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.311,93.73,98.31,0.9500000000000001,0.25,881,1,213,3.3000000000000003,0.0000,0.0000 +2012,3,11,13,30,1.1,1.11,0.08700000000000001,0.62,28,274,48,0,0,-1.1,28,274,0,48,0.307,85.33,85.75,0.9500000000000001,0.25,881,1,212,4,0.0000,0.0000 +2012,3,11,14,30,4.3,1.16,0.088,0.62,67,669,255,0,0,-0.7000000000000001,67,669,0,255,0.305,69.84,73.7,0.9500000000000001,0.25,881,1,213,4.800000000000001,11.8427,9.1172 +2012,3,11,15,30,8.6,1.1300000000000001,0.07200000000000001,0.62,81,846,477,0,0,-0.9,81,846,0,477,0.303,51.21,62.13,0.9400000000000001,0.25,880,1,222,5.9,1.1946,0.9316 +2012,3,11,16,30,12.9,1.06,0.057,0.62,86,941,670,0,0,-2.4000000000000004,86,941,0,670,0.3,34.6,51.65,0.93,0.25,880,0.9,237,7.300000000000001,11.7522,9.2103 +2012,3,11,17,30,16.2,0.99,0.052000000000000005,0.62,90,988,810,0,0,-3.6,90,988,0,810,0.296,25.48,43.21,0.92,0.25,879,0.8,247,8.1,13.6207,10.6974 +2012,3,11,18,30,18.400000000000002,0.98,0.052000000000000005,0.62,93,1009,886,0,0,-4.9,93,1009,0,886,0.295,20.1,38.230000000000004,0.91,0.25,878,0.7000000000000001,252,8.5,6.9239,5.4425 +2012,3,11,19,30,19.8,0.98,0.055,0.62,95,1007,886,0,0,-6.1000000000000005,95,1007,0,886,0.294,16.79,38.15,0.91,0.25,878,0.7000000000000001,254,8.6,5.1345,4.0360 +2012,3,11,20,30,20.400000000000002,0.99,0.059000000000000004,0.62,94,993,820,0,0,-7.2,94,993,0,820,0.293,14.9,42.99,0.91,0.25,877,0.6000000000000001,257,8.6,5.4879,4.3103 +2012,3,11,21,30,20.5,0.91,0.061,0.62,89,953,684,0,0,-8,89,953,0,684,0.292,13.93,51.35,0.91,0.25,877,0.6000000000000001,259,8.4,8.0384,6.3006 +2012,3,11,22,30,19.700000000000003,0.86,0.058,0.62,77,886,496,0,0,-8.5,77,886,0,496,0.293,14.120000000000001,61.77,0.91,0.25,878,0.6000000000000001,260,7.4,3.2134,2.5068 +2012,3,11,23,30,17.1,0.81,0.054,0.62,58,749,273,0,8,-8.3,152,134,0,191,0.295,16.85,73.31,0.91,0.25,878,0.6000000000000001,258,5.4,3.1231,2.4063 +2012,3,12,0,30,13.700000000000001,0.78,0.05,0.62,27,379,57,7,7,-6.800000000000001,41,10,7,42,0.297,23.46,85.35000000000001,0.91,0.24,879,0.6000000000000001,255,3.9000000000000004,0.0000,0.0000 +2012,3,12,1,30,11.8,0.75,0.051000000000000004,0.62,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.299,27.580000000000002,97.87,0.91,0.24,879,0.6000000000000001,254,3.8000000000000003,0.0000,0.0000 +2012,3,12,2,30,10.9,0.72,0.051000000000000004,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.299,29.3,110.19,0.9,0.24,880,0.6000000000000001,256,4,0.0000,0.0000 +2012,3,12,3,30,10,0.72,0.05,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.3,30.86,122.14,0.9,0.24,880,0.5,260,4.2,0.0000,0.0000 +2012,3,12,4,30,9.1,0.72,0.051000000000000004,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.3,32.24,133.22,0.9,0.24,880,0.5,262,4.4,0.0000,0.0000 +2012,3,12,5,30,8.3,0.7000000000000001,0.052000000000000005,0.62,0,0,0,0,1,-6.800000000000001,0,0,0,0,0.301,33.64,142.46,0.9,0.24,881,0.5,265,4.6000000000000005,0.0000,0.0000 +2012,3,12,6,30,7.4,0.6900000000000001,0.052000000000000005,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.301,35.71,148.12,0.9,0.24,881,0.5,268,4.7,0.0000,0.0000 +2012,3,12,7,30,6.7,0.6900000000000001,0.052000000000000005,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.3,37.56,148.17000000000002,0.9,0.24,881,0.4,272,4.7,0.0000,0.0000 +2012,3,12,8,30,6.1000000000000005,0.7000000000000001,0.051000000000000004,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.299,39.03,142.58,0.89,0.24,881,0.4,277,4.6000000000000005,0.0000,0.0000 +2012,3,12,9,30,5.4,0.71,0.051000000000000004,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.298,40.71,133.38,0.89,0.24,881,0.4,279,4.1000000000000005,0.0000,0.0000 +2012,3,12,10,30,4.7,0.73,0.051000000000000004,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.298,42.76,122.32000000000001,0.89,0.24,881,0.4,280,3.7,0.0000,0.0000 +2012,3,12,11,30,4.2,0.74,0.05,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.298,44.29,110.36,0.89,0.24,882,0.4,282,3.6,0.0000,0.0000 +2012,3,12,12,30,4.5,0.75,0.05,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.299,43.37,98.03,0.89,0.24,883,0.4,284,3.9000000000000004,0.0000,0.0000 +2012,3,12,13,30,6.5,0.75,0.05,0.62,26,384,57,0,1,-6.800000000000001,26,384,0,57,0.3,37.93,85.48,0.89,0.24,884,0.4,286,4.4,0.0000,0.0000 +2012,3,12,14,30,10.3,0.75,0.05,0.62,57,769,277,0,3,-6.6000000000000005,157,224,0,221,0.301,29.96,73.41,0.89,0.24,885,0.4,286,4.2,12.6165,9.7176 +2012,3,12,15,30,15.4,0.76,0.05,0.62,73,910,503,0,1,-5.800000000000001,73,910,0,503,0.301,22.68,61.82,0.89,0.24,885,0.4,294,4,25.9541,20.2448 +2012,3,12,16,30,19.900000000000002,0.77,0.049,0.62,83,972,690,0,1,-7.300000000000001,83,972,0,690,0.301,15.26,51.31,0.9,0.24,885,0.5,298,4.1000000000000005,38.4633,30.1475 +2012,3,12,17,30,22.3,0.79,0.049,0.62,89,1007,828,0,0,-8.9,89,1007,0,828,0.302,11.61,42.83,0.9,0.24,885,0.5,288,3.9000000000000004,47.8093,37.5511 +2012,3,12,18,30,23.5,0.81,0.05,0.62,93,1022,901,0,0,-9.4,93,1022,0,901,0.303,10.43,37.83,0.91,0.24,885,0.5,274,3.7,52.9306,41.6082 +2012,3,12,19,30,24.200000000000003,0.84,0.055,0.62,96,1018,901,0,0,-9.700000000000001,96,1018,0,901,0.303,9.74,37.77,0.92,0.24,884,0.5,264,3.8000000000000003,52.9397,41.6158 +2012,3,12,20,30,24.400000000000002,0.84,0.061,0.62,96,996,829,0,0,-10,96,996,0,829,0.304,9.4,42.67,0.92,0.24,883,0.5,255,4,48.4282,38.0388 +2012,3,12,21,30,24.200000000000003,0.8200000000000001,0.055,0.62,87,966,694,0,0,-10.200000000000001,87,966,0,694,0.304,9.36,51.09,0.92,0.24,883,0.5,249,4.2,39.3134,30.8167 +2012,3,12,22,30,22.900000000000002,0.8200000000000001,0.052000000000000005,0.62,74,901,504,0,0,-10.3,74,901,0,504,0.304,10.06,61.56,0.91,0.24,883,0.5,244,3.7,27.0505,21.1050 +2012,3,12,23,30,18.8,0.81,0.047,0.62,56,772,280,0,0,-7.7,56,772,0,280,0.303,15.82,73.13,0.9,0.24,883,0.5,239,2.6,9.4842,7.3097 +2012,3,13,0,30,14.5,0.77,0.047,0.62,27,402,61,0,0,-4.800000000000001,27,402,0,61,0.304,26.080000000000002,85.18,0.9,0.24,884,0.5,236,2.2,0.0000,0.0000 +2012,3,13,1,30,12.700000000000001,0.74,0.048,0.62,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.304,26.17,97.71000000000001,0.89,0.24,884,0.5,236,2.4000000000000004,0.0000,0.0000 +2012,3,13,2,30,11.700000000000001,0.72,0.05,0.62,0,0,0,0,1,-7.2,0,0,0,0,0.304,26.02,110.02,0.89,0.24,885,0.4,238,2.4000000000000004,0.0000,0.0000 +2012,3,13,3,30,10.600000000000001,0.72,0.051000000000000004,0.62,0,0,0,0,1,-7.9,0,0,0,0,0.303,26.47,121.95,0.89,0.24,885,0.4,239,2.3000000000000003,0.0000,0.0000 +2012,3,13,4,30,9.600000000000001,0.73,0.051000000000000004,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.301,27.05,132.98,0.9,0.24,885,0.4,242,2.2,0.0000,0.0000 +2012,3,13,5,30,8.700000000000001,0.76,0.053,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.299,28.01,142.16,0.9,0.24,885,0.4,245,2.1,0.0000,0.0000 +2012,3,13,6,30,7.800000000000001,0.79,0.056,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.297,29.71,147.75,0.91,0.24,885,0.4,249,2,0.0000,0.0000 +2012,3,13,7,30,7.1000000000000005,0.8200000000000001,0.058,0.62,0,0,0,0,1,-8.700000000000001,0,0,0,0,0.296,31.6,147.77,0.91,0.24,885,0.4,254,1.9000000000000001,0.0000,0.0000 +2012,3,13,8,30,6.300000000000001,0.84,0.058,0.62,0,0,0,0,4,-8.4,0,0,0,0,0.295,33.99,142.21,0.91,0.24,885,0.4,260,1.7000000000000002,0.0000,0.0000 +2012,3,13,9,30,5.6000000000000005,0.86,0.056,0.62,0,0,0,0,1,-8.3,0,0,0,0,0.294,36.11,133.04,0.91,0.24,885,0.4,267,1.6,0.0000,0.0000 +2012,3,13,10,30,5,0.89,0.054,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.293,37.800000000000004,122.01,0.91,0.24,885,0.5,278,1.6,0.0000,0.0000 +2012,3,13,11,30,4.6000000000000005,0.9,0.052000000000000005,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.292,38.87,110.08,0.9,0.24,885,0.5,289,1.6,0.0000,0.0000 +2012,3,13,12,30,5.1000000000000005,0.91,0.049,0.62,0,0,0,0,1,-8.200000000000001,0,0,0,0,0.29,37.57,97.75,0.9,0.24,886,0.5,296,1.6,0.0000,0.0000 +2012,3,13,13,30,8.3,0.9,0.047,0.62,27,408,61,7,8,-7.5,40,9,7,41,0.28800000000000003,31.88,85.21000000000001,0.9,0.24,886,0.5,300,2.3000000000000003,0.0000,0.0000 +2012,3,13,14,30,12.700000000000001,0.9,0.049,0.62,57,780,284,0,8,-8.4,57,780,5,284,0.28700000000000003,22.11,73.12,0.91,0.24,887,0.4,298,2.7,10.9636,8.4486 +2012,3,13,15,30,17.2,0.92,0.054,0.62,76,909,510,0,7,-7.9,195,517,0,441,0.28500000000000003,17.22,61.51,0.92,0.24,887,0.4,282,2.4000000000000004,27.4235,21.3953 +2012,3,13,16,30,21.6,0.9400000000000001,0.06,0.62,89,962,695,0,8,-8.3,287,374,0,522,0.28400000000000003,12.75,50.97,0.92,0.24,886,0.5,258,2.7,39.6644,31.0922 +2012,3,13,17,30,24,0.9500000000000001,0.062,0.62,97,997,832,7,2,-10.100000000000001,291,731,7,830,0.28200000000000003,9.52,42.45,0.92,0.24,886,0.5,240,3.3000000000000003,48.9215,38.4274 +2012,3,13,18,30,25.3,0.96,0.061,0.62,99,1014,904,0,1,-10.4,99,1014,0,904,0.28,8.63,37.43,0.91,0.24,885,0.5,228,3.8000000000000003,53.8730,42.3514 +2012,3,13,19,30,26.200000000000003,0.9500000000000001,0.055,0.62,95,1020,906,0,0,-10.700000000000001,95,1020,0,906,0.279,7.99,37.39,0.9,0.24,884,0.5,223,4.2,53.8798,42.3572 +2012,3,13,20,30,26.5,0.93,0.051000000000000004,0.62,90,1009,835,0,0,-11,90,1009,0,835,0.278,7.66,42.35,0.89,0.24,883,0.5,220,4.4,49.0014,38.4913 +2012,3,13,21,30,26.3,0.9,0.048,0.62,82,977,699,0,0,-11.100000000000001,82,977,0,699,0.279,7.68,50.83,0.89,0.24,883,0.5,217,4.3,39.9284,31.3013 +2012,3,13,22,30,24.8,0.9,0.047,0.62,71,912,509,0,0,-11,71,912,0,509,0.279,8.45,61.35,0.88,0.24,882,0.5,212,3.4000000000000004,27.5235,21.4768 +2012,3,13,23,30,20.5,0.92,0.046,0.62,55,780,284,0,0,-6.800000000000001,55,780,0,284,0.28,15.280000000000001,72.95,0.88,0.24,882,0.5,202,2.1,13.9268,10.7368 +2012,3,14,0,30,16,0.9400000000000001,0.047,0.62,27,420,63,0,0,-3.2,27,420,0,63,0.281,26.6,85.02,0.88,0.24,883,0.5,190,1.7000000000000002,0.0000,0.0000 +2012,3,14,1,30,14.100000000000001,0.9400000000000001,0.048,0.62,0,0,0,0,3,-4.4,0,0,0,0,0.28,27.46,97.54,0.89,0.24,883,0.5,182,2,0.0000,0.0000 +2012,3,14,2,30,13.3,0.96,0.05,0.62,0,0,0,0,1,-4.5,0,0,0,0,0.28,28.810000000000002,109.85000000000001,0.9,0.24,883,0.6000000000000001,180,2.5,0.0000,0.0000 +2012,3,14,3,30,12.8,0.98,0.053,0.62,0,0,0,0,1,-3.3000000000000003,0,0,0,0,0.279,32.43,121.75,0.91,0.24,884,0.7000000000000001,184,3.1,0.0000,0.0000 +2012,3,14,4,30,12.200000000000001,1.01,0.058,0.62,0,0,0,0,1,-0.7000000000000001,0,0,0,0,0.278,41.08,132.74,0.92,0.24,884,0.8,190,3.6,0.0000,0.0000 +2012,3,14,5,30,11.4,1.01,0.067,0.62,0,0,0,0,1,2.5,0,0,0,0,0.277,54.46,141.86,0.93,0.24,884,0.9,198,3.7,0.0000,0.0000 +2012,3,14,6,30,10.9,1.01,0.076,0.62,0,0,0,0,1,5.5,0,0,0,0,0.276,69.12,147.38,0.9400000000000001,0.24,884,1,206,3.5,0.0000,0.0000 +2012,3,14,7,30,10.5,1.01,0.08600000000000001,0.62,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.276,82.52,147.37,0.9500000000000001,0.24,884,1,215,3.4000000000000004,0.0000,0.0000 +2012,3,14,8,30,10.3,1.02,0.097,0.62,0,0,0,0,0,8.9,0,0,0,0,0.276,90.87,141.84,0.96,0.24,884,1,223,3.1,0.0000,0.0000 +2012,3,14,9,30,9.9,1.03,0.10400000000000001,0.62,0,0,0,0,0,9.5,0,0,0,0,0.276,97.51,132.71,0.96,0.24,884,1.1,227,2.5,0.0000,0.0000 +2012,3,14,10,30,9.5,1.04,0.10400000000000001,0.62,0,0,0,0,0,9.5,0,0,0,0,0.276,100,121.71000000000001,0.96,0.24,884,1.1,232,1.9000000000000001,0.0000,0.0000 +2012,3,14,11,30,9.200000000000001,1.04,0.096,0.62,0,0,0,0,0,9.200000000000001,0,0,0,0,0.275,100,109.79,0.96,0.24,884,1.1,237,1.6,0.0000,0.0000 +2012,3,14,12,30,9.700000000000001,1.04,0.093,0.62,0,0,0,0,4,9.700000000000001,0,0,0,0,0.275,99.95,97.47,0.96,0.24,884,1,241,1.6,0.0000,0.0000 +2012,3,14,13,30,11.5,1.03,0.091,0.62,33,308,60,0,1,9.200000000000001,33,308,0,60,0.276,85.91,84.93,0.96,0.24,885,0.9,240,2.1,0.0000,0.0000 +2012,3,14,14,30,13.700000000000001,1.04,0.089,0.62,70,684,272,0,3,8.5,132,5,0,134,0.277,71.03,72.83,0.9500000000000001,0.24,885,0.9,236,2.5,14.1270,10.8914 +2012,3,14,15,30,15.8,1.05,0.092,0.62,91,831,492,0,7,7.5,195,482,0,427,0.277,57.93,61.19,0.9500000000000001,0.24,885,0.9,235,2.6,24.0906,18.7988 +2012,3,14,16,30,18,1.04,0.095,0.62,106,908,683,0,8,6.2,285,443,0,566,0.276,46.07,50.620000000000005,0.9500000000000001,0.24,885,0.8,235,2.6,30.0465,23.5554 +2012,3,14,17,30,20.5,1.03,0.094,0.62,113,949,818,0,7,4.3,266,584,0,700,0.276,34.42,42.07,0.9400000000000001,0.24,885,0.8,231,2.7,49.0888,38.5616 +2012,3,14,18,30,23.200000000000003,1,0.082,0.62,111,978,891,7,2,0,295,743,7,888,0.276,21.46,37.03,0.9400000000000001,0.24,884,0.8,225,2.8000000000000003,54.0980,42.5307 +2012,3,14,19,30,25.5,0.96,0.065,0.62,101,998,898,0,0,-4.1000000000000005,101,998,0,898,0.276,13.870000000000001,37.02,0.92,0.24,884,0.7000000000000001,218,3.1,54.2222,42.6286 +2012,3,14,20,30,26.8,0.9,0.05,0.62,90,1003,835,0,0,-7.300000000000001,90,1003,0,835,0.276,10.08,42.04,0.9,0.24,883,0.6000000000000001,214,3.6,49.3974,38.8047 +2012,3,14,21,30,26.900000000000002,0.87,0.044,0.62,80,975,699,0,0,-8.8,80,975,0,699,0.276,8.93,50.58,0.89,0.24,883,0.6000000000000001,211,3.9000000000000004,40.2562,31.5608 +2012,3,14,22,30,25.6,0.87,0.043000000000000003,0.62,70,911,510,0,0,-9,70,911,0,510,0.278,9.47,61.14,0.89,0.24,882,0.6000000000000001,207,3.3000000000000003,27.8332,21.7214 +2012,3,14,23,30,21.400000000000002,0.89,0.043000000000000003,0.62,55,779,286,0,0,-5,55,779,0,286,0.279,16.53,72.77,0.89,0.24,883,0.6000000000000001,198,2.2,14.1494,10.9116 +2012,3,15,0,30,17.2,0.91,0.043000000000000003,0.62,27,431,66,0,0,-2.2,27,431,0,66,0.281,26.63,84.86,0.89,0.24,883,0.6000000000000001,189,2.1,0.0000,0.0000 +2012,3,15,1,30,15.4,0.93,0.045,0.62,0,0,0,0,1,-3.3000000000000003,0,0,0,0,0.28300000000000003,27.47,97.38,0.89,0.24,883,0.6000000000000001,186,2.5,0.0000,0.0000 +2012,3,15,2,30,14.200000000000001,0.9500000000000001,0.047,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.28400000000000003,29.42,109.67,0.89,0.24,884,0.6000000000000001,189,2.9000000000000004,0.0000,0.0000 +2012,3,15,3,30,13,0.97,0.05,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.28500000000000003,30.94,121.55,0.9,0.24,884,0.6000000000000001,194,3.1,0.0000,0.0000 +2012,3,15,4,30,11.700000000000001,0.98,0.053,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.28500000000000003,32.03,132.5,0.9,0.24,885,0.6000000000000001,201,3,0.0000,0.0000 +2012,3,15,5,30,10.5,0.99,0.054,0.62,0,0,0,0,1,-5.1000000000000005,0,0,0,0,0.28400000000000003,32.980000000000004,141.55,0.9,0.24,885,0.5,209,2.8000000000000003,0.0000,0.0000 +2012,3,15,6,30,9.200000000000001,0.99,0.053,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.28300000000000003,34.42,147.01,0.9,0.24,885,0.5,220,2.5,0.0000,0.0000 +2012,3,15,7,30,7.9,0.98,0.05,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.28400000000000003,35.17,146.97,0.89,0.24,885,0.5,234,2.2,0.0000,0.0000 +2012,3,15,8,30,6.9,0.98,0.047,0.62,0,0,0,0,1,-7.5,0,0,0,0,0.28400000000000003,35.160000000000004,141.46,0.88,0.24,885,0.4,255,2,0.0000,0.0000 +2012,3,15,9,30,6.300000000000001,0.97,0.045,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.28400000000000003,35,132.37,0.88,0.24,885,0.4,280,2,0.0000,0.0000 +2012,3,15,10,30,5.9,0.97,0.045,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.28400000000000003,34.9,121.4,0.88,0.24,885,0.4,303,2.1,0.0000,0.0000 +2012,3,15,11,30,5.6000000000000005,0.98,0.044,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.28400000000000003,34.57,109.5,0.88,0.24,886,0.4,314,2.3000000000000003,0.0000,0.0000 +2012,3,15,12,30,6.300000000000001,0.99,0.045,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.28400000000000003,32.03,97.19,0.88,0.24,886,0.4,316,2.7,0.0000,0.0000 +2012,3,15,13,30,9.4,1,0.045,0.62,28,456,71,0,0,-9.4,28,456,0,71,0.28400000000000003,25.59,84.65,0.89,0.24,886,0.4,312,3.4000000000000004,0.0000,0.0000 +2012,3,15,14,30,13.8,1.01,0.046,0.62,56,796,295,0,1,-10.100000000000001,56,796,0,295,0.28400000000000003,18.09,72.54,0.89,0.24,887,0.4,307,3.3000000000000003,6.6836,5.1552 +2012,3,15,15,30,18.900000000000002,1.03,0.048,0.62,73,923,522,0,0,-9.3,73,923,0,522,0.28400000000000003,13.91,60.88,0.9,0.24,887,0.4,306,2.3000000000000003,23.3726,18.2420 +2012,3,15,16,30,23.700000000000003,1.05,0.052000000000000005,0.62,85,984,713,0,0,-10.8,85,984,0,713,0.28400000000000003,9.19,50.28,0.9,0.24,887,0.4,281,1.5,32.6226,25.5776 +2012,3,15,17,30,26.200000000000003,1.06,0.058,0.62,94,1012,850,0,0,-12.4,94,1012,0,850,0.28400000000000003,6.95,41.68,0.91,0.24,886,0.4,230,1.3,41.4410,32.5561 +2012,3,15,18,30,27.3,1.06,0.065,0.62,102,1020,921,0,0,-12.4,102,1020,0,921,0.28300000000000003,6.51,36.63,0.92,0.24,886,0.4,198,1.7000000000000002,53.1846,41.8149 +2012,3,15,19,30,27.6,1.05,0.069,0.62,104,1008,913,0,0,-12.600000000000001,104,1008,0,913,0.28200000000000003,6.32,36.64,0.92,0.24,885,0.5,193,2.2,53.7846,42.2867 +2012,3,15,20,30,27.200000000000003,1.03,0.068,0.62,100,993,841,0,0,-13,100,993,0,841,0.28200000000000003,6.29,41.72,0.92,0.24,884,0.5,195,2.8000000000000003,49.4370,38.8380 +2012,3,15,21,30,26.5,1,0.062,0.62,90,963,704,0,0,-13.3,90,963,0,704,0.281,6.390000000000001,50.33,0.91,0.24,884,0.5,197,3.2,40.2944,31.5930 +2012,3,15,22,30,25,0.97,0.059000000000000004,0.62,78,899,514,0,0,-13.200000000000001,78,899,0,514,0.281,7,60.93,0.91,0.24,884,0.5,199,2.9000000000000004,27.9244,21.7953 +2012,3,15,23,30,21.400000000000002,0.9400000000000001,0.063,0.62,63,754,288,0,8,-6.800000000000001,112,527,0,269,0.28200000000000003,14.41,72.59,0.92,0.24,884,0.5,202,2.1,14.2730,11.0100 +2012,3,16,0,30,18,0.9,0.069,0.62,32,386,67,0,7,-5.300000000000001,53,38,0,57,0.28300000000000003,19.97,84.7,0.92,0.24,884,0.4,208,2.1,0.0000,0.0000 +2012,3,16,1,30,16.5,0.88,0.07100000000000001,0.62,0,0,0,0,7,-6.9,0,0,0,0,0.28500000000000003,19.56,97.21000000000001,0.92,0.24,884,0.4,215,2.3000000000000003,0.0000,0.0000 +2012,3,16,2,30,15.700000000000001,0.88,0.074,0.62,0,0,0,0,6,-7.5,0,0,0,0,0.28700000000000003,19.64,109.5,0.93,0.24,885,0.4,219,2.4000000000000004,0.0000,0.0000 +2012,3,16,3,30,14.8,0.89,0.076,0.62,0,0,0,0,6,-7.4,0,0,0,0,0.289,20.96,121.35000000000001,0.93,0.24,885,0.5,220,2.4000000000000004,0.0000,0.0000 +2012,3,16,4,30,14,0.88,0.07200000000000001,0.62,0,0,0,0,4,-6.7,0,0,0,0,0.291,23.21,132.26,0.93,0.24,885,0.5,221,2.4000000000000004,0.0000,0.0000 +2012,3,16,5,30,13,0.85,0.063,0.62,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.292,26.6,141.25,0.92,0.24,885,0.5,223,2.4000000000000004,0.0000,0.0000 +2012,3,16,6,30,11.600000000000001,0.81,0.055,0.62,0,0,0,0,7,-5,0,0,0,0,0.293,30.93,146.63,0.91,0.24,885,0.5,225,2.4000000000000004,0.0000,0.0000 +2012,3,16,7,30,10.100000000000001,0.77,0.048,0.62,0,0,0,0,4,-4.800000000000001,0,0,0,0,0.293,34.75,146.57,0.9,0.24,885,0.5,227,2.3000000000000003,0.0000,0.0000 +2012,3,16,8,30,9,0.79,0.047,0.62,0,0,0,0,1,-5.1000000000000005,0,0,0,0,0.292,36.42,141.08,0.9,0.24,885,0.6000000000000001,231,2.3000000000000003,0.0000,0.0000 +2012,3,16,9,30,8.3,0.86,0.051000000000000004,0.62,0,0,0,0,1,-5.7,0,0,0,0,0.292,36.45,132.04,0.91,0.24,884,0.6000000000000001,236,2.2,0.0000,0.0000 +2012,3,16,10,30,7.6000000000000005,0.9400000000000001,0.056,0.62,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.292,36.64,121.10000000000001,0.92,0.24,884,0.6000000000000001,243,2.1,0.0000,0.0000 +2012,3,16,11,30,7.1000000000000005,0.98,0.06,0.62,0,0,0,0,1,-6.7,0,0,0,0,0.293,36.74,109.22,0.92,0.24,884,0.7000000000000001,251,2,0.0000,0.0000 +2012,3,16,12,30,7.7,0.99,0.06,0.62,0,0,0,0,1,-6.9,0,0,0,0,0.293,34.69,96.91,0.92,0.24,885,0.7000000000000001,258,2.1,0.0000,0.0000 +2012,3,16,13,30,10.600000000000001,0.98,0.06,0.62,31,406,71,0,0,-6.9,31,406,0,71,0.294,28.67,84.38,0.92,0.24,885,0.7000000000000001,261,2.8000000000000003,0.0000,0.0000 +2012,3,16,14,30,14.700000000000001,0.98,0.061,0.62,62,748,290,0,1,-7.5,62,748,0,290,0.295,20.95,72.24,0.92,0.24,885,0.7000000000000001,252,3.1,14.7537,11.3849 +2012,3,16,15,30,19.5,0.99,0.065,0.62,80,873,510,0,0,-5,80,873,0,510,0.295,18.63,60.56,0.93,0.24,885,0.8,237,3.5,28.6272,22.3474 +2012,3,16,16,30,23.900000000000002,1.01,0.075,0.62,96,927,693,0,0,-3.9000000000000004,96,927,0,693,0.296,15.49,49.93,0.9400000000000001,0.24,884,0.9,229,4.4,41.1477,32.2649 +2012,3,16,17,30,26.3,1.01,0.08700000000000001,0.62,109,948,821,0,0,-4.4,109,948,0,821,0.296,12.91,41.300000000000004,0.93,0.24,884,1,225,4.7,50.3713,39.5745 +2012,3,16,18,30,27.400000000000002,0.99,0.069,0.62,103,978,892,0,0,-4,103,978,0,892,0.297,12.51,36.230000000000004,0.93,0.24,883,1.1,221,4.9,55.2059,43.4065 +2012,3,16,19,30,27.900000000000002,1,0.073,0.62,105,970,887,0,0,-3.4000000000000004,105,970,0,887,0.297,12.67,36.27,0.93,0.24,882,1.2000000000000002,220,5,54.7253,43.0285 +2012,3,16,20,30,28,1.01,0.074,0.62,102,953,817,0,0,-2.9000000000000004,102,953,0,817,0.298,13.05,41.410000000000004,0.9400000000000001,0.24,881,1.2000000000000002,219,5,49.8329,39.1512 +2012,3,16,21,30,27.8,1.03,0.075,0.62,95,915,682,7,3,-2.7,303,505,7,627,0.298,13.450000000000001,50.08,0.9400000000000001,0.24,880,1.2000000000000002,217,4.800000000000001,40.6207,31.8512 +2012,3,16,22,30,26.8,1.04,0.076,0.62,84,842,496,7,2,-2.6,225,524,7,481,0.298,14.4,60.72,0.9400000000000001,0.24,880,1.2000000000000002,211,4.2,28.1798,21.9975 +2012,3,16,23,30,23.5,1.05,0.084,0.62,68,687,276,0,0,-1.7000000000000002,68,687,0,276,0.297,18.740000000000002,72.41,0.9500000000000001,0.24,880,1.2000000000000002,196,3,13.4471,10.3758 +2012,3,17,0,30,19.900000000000002,1.05,0.095,0.62,34,307,63,0,0,1.8,34,307,0,63,0.297,29.94,84.53,0.9500000000000001,0.24,880,1.4000000000000001,180,2.8000000000000003,0.0000,0.0000 +2012,3,17,1,30,18.7,1.06,0.10200000000000001,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.297,35.99,97.05,0.9500000000000001,0.24,880,1.5,174,4.1000000000000005,0.0000,0.0000 +2012,3,17,2,30,17.8,1.06,0.101,0.62,0,0,0,0,3,6.4,0,0,0,0,0.297,47.09,109.32000000000001,0.9500000000000001,0.24,881,1.6,172,4.9,0.0000,0.0000 +2012,3,17,3,30,16.3,1.07,0.098,0.62,0,0,0,0,0,9.200000000000001,0,0,0,0,0.296,62.76,121.15,0.9500000000000001,0.24,881,1.7000000000000002,175,4.5,0.0000,0.0000 +2012,3,17,4,30,14.9,1.06,0.098,0.62,0,0,0,0,0,10.9,0,0,0,0,0.294,77.23,132.02,0.9500000000000001,0.24,882,1.6,183,3.9000000000000004,0.0000,0.0000 +2012,3,17,5,30,13.8,1.04,0.099,0.62,0,0,0,0,0,12,0,0,0,0,0.293,88.64,140.94,0.9500000000000001,0.24,881,1.5,189,3.5,0.0000,0.0000 +2012,3,17,6,30,12.9,1,0.097,0.62,0,0,0,0,0,12.5,0,0,0,0,0.291,97.38,146.26,0.9500000000000001,0.24,881,1.3,189,3.2,0.0000,0.0000 +2012,3,17,7,30,12.4,0.98,0.09,0.62,0,0,0,0,0,12.4,0,0,0,0,0.29,100,146.17000000000002,0.9400000000000001,0.24,881,1,190,3.1,0.0000,0.0000 +2012,3,17,8,30,11.8,0.96,0.079,0.62,0,0,0,0,0,11.8,0,0,0,0,0.289,100,140.71,0.9400000000000001,0.24,881,0.8,197,3.2,0.0000,0.0000 +2012,3,17,9,30,10.9,0.97,0.07100000000000001,0.62,0,0,0,0,0,10.9,0,0,0,0,0.289,99.7,131.7,0.93,0.24,880,0.7000000000000001,207,3.2,0.0000,0.0000 +2012,3,17,10,30,9.9,0.98,0.062,0.62,0,0,0,0,0,9.3,0,0,0,0,0.291,96.27,120.79,0.92,0.24,880,0.6000000000000001,217,2.9000000000000004,0.0000,0.0000 +2012,3,17,11,30,8.6,0.98,0.055,0.62,0,0,0,0,0,7.4,0,0,0,0,0.292,92.37,108.93,0.92,0.24,880,0.6000000000000001,225,2.4000000000000004,0.0000,0.0000 +2012,3,17,12,30,8.4,1,0.048,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.294,80.61,96.63,0.91,0.24,881,0.5,232,2.4000000000000004,0.0000,0.0000 +2012,3,17,13,30,10.700000000000001,1.01,0.044,0.62,30,476,79,0,0,2.8000000000000003,30,476,0,79,0.294,58,84.10000000000001,0.91,0.24,881,0.5,234,3.1,0.0000,0.0000 +2012,3,17,14,30,14.8,1.02,0.042,0.62,56,803,305,7,3,0.5,159,300,7,252,0.294,37.75,71.95,0.91,0.24,881,0.5,228,3.5,14.5443,11.2284 +2012,3,17,15,30,20.1,1.02,0.041,0.62,70,928,531,7,3,-1.2000000000000002,218,607,7,519,0.293,23.78,60.25,0.91,0.24,881,0.5,225,4.2,28.0234,21.8803 +2012,3,17,16,30,24.6,1,0.039,0.62,78,992,721,0,0,-6.300000000000001,78,992,0,721,0.293,12.43,49.59,0.9,0.24,881,0.5,228,5.4,40.0451,31.4035 +2012,3,17,17,30,26.900000000000002,0.98,0.036000000000000004,0.62,82,1036,864,0,0,-10.700000000000001,82,1036,0,864,0.292,7.67,40.92,0.9,0.24,880,0.4,228,6.1000000000000005,48.6991,38.2632 +2012,3,17,18,30,27.8,0.96,0.034,0.62,84,1062,944,0,0,-13,84,1062,0,944,0.291,6.0600000000000005,35.83,0.9,0.24,879,0.30000000000000004,226,6.5,53.5104,42.0756 +2012,3,17,19,30,28.200000000000003,0.96,0.035,0.62,84,1061,944,0,0,-14.8,84,1061,0,944,0.289,5.1000000000000005,35.89,0.9,0.24,878,0.30000000000000004,226,6.9,53.2063,41.8362 +2012,3,17,20,30,28.200000000000003,0.96,0.036000000000000004,0.62,82,1035,862,0,0,-14.600000000000001,82,1035,0,862,0.28700000000000003,5.18,41.1,0.91,0.24,878,0.4,225,7.1000000000000005,48.4485,38.0656 +2012,3,17,21,30,27.700000000000003,0.9500000000000001,0.038,0.62,78,993,718,0,0,-12.9,78,993,0,718,0.28400000000000003,6.16,49.83,0.91,0.24,877,0.5,222,7.2,36.2114,28.3958 +2012,3,17,22,30,26.6,0.93,0.038,0.62,69,931,527,0,0,-11.200000000000001,69,931,0,527,0.28200000000000003,7.53,60.52,0.91,0.24,877,0.5,220,6.800000000000001,26.4044,20.6142 +2012,3,17,23,30,23.900000000000002,0.91,0.037,0.62,54,799,298,0,0,-9.9,54,799,0,298,0.281,9.75,72.23,0.91,0.24,877,0.6000000000000001,215,5.300000000000001,13.8202,10.6666 +2012,3,18,0,30,20.400000000000002,0.92,0.039,0.62,29,467,74,0,0,-7.800000000000001,29,467,0,74,0.281,14.24,84.37,0.92,0.24,878,0.6000000000000001,207,3.9000000000000004,0.0000,0.0000 +2012,3,18,1,30,18.400000000000002,0.97,0.044,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.28,18.14,96.89,0.92,0.24,878,0.7000000000000001,198,4,0.0000,0.0000 +2012,3,18,2,30,17.6,1.02,0.05,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.28,20.36,109.15,0.92,0.24,879,0.8,190,4.4,0.0000,0.0000 +2012,3,18,3,30,16.400000000000002,1.05,0.056,0.62,0,0,0,0,0,-4,0,0,0,0,0.28,24.52,120.95,0.92,0.24,879,0.9,184,4.4,0.0000,0.0000 +2012,3,18,4,30,15.3,1.08,0.061,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.278,30.740000000000002,131.77,0.93,0.24,879,1.1,179,4.4,0.0000,0.0000 +2012,3,18,5,30,14.4,1.1,0.066,0.62,0,0,0,0,0,1,0,0,0,0,0.277,39.96,140.64000000000001,0.9400000000000001,0.24,879,1.3,176,4.6000000000000005,0.0000,0.0000 +2012,3,18,6,30,13.700000000000001,1.11,0.076,0.62,0,0,0,0,0,4.7,0,0,0,0,0.277,54.36,145.88,0.9500000000000001,0.24,879,1.5,174,4.800000000000001,0.0000,0.0000 +2012,3,18,7,30,13.3,1.1,0.093,0.62,0,0,0,0,0,8.5,0,0,0,0,0.276,72.87,145.76,0.9500000000000001,0.24,878,1.7000000000000002,174,4.6000000000000005,0.0000,0.0000 +2012,3,18,8,30,13.100000000000001,1.09,0.108,0.62,0,0,0,0,0,10.9,0,0,0,0,0.276,86.52,140.33,0.96,0.24,878,1.7000000000000002,180,4.3,0.0000,0.0000 +2012,3,18,9,30,13.200000000000001,1.07,0.126,0.62,0,0,0,0,0,11.3,0,0,0,0,0.276,88.11,131.36,0.96,0.24,877,1.7000000000000002,190,4.3,0.0000,0.0000 +2012,3,18,10,30,13.5,1.04,0.137,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.276,80.05,120.48,0.96,0.24,877,1.7000000000000002,197,4.4,0.0000,0.0000 +2012,3,18,11,30,13.4,1.05,0.125,0.62,0,0,0,0,0,7.9,0,0,0,0,0.276,69.3,108.63,0.96,0.24,877,1.6,199,4.1000000000000005,0.0000,0.0000 +2012,3,18,12,30,13.4,1.07,0.105,0.62,0,0,0,0,4,6.1000000000000005,0,0,0,0,0.276,61.36,96.35000000000001,0.9500000000000001,0.24,877,1.5,192,3.6,0.0000,0.0000 +2012,3,18,13,30,14.5,1.11,0.093,0.62,37,347,74,7,7,5.6000000000000005,57,19,7,59,0.276,54.97,83.82000000000001,0.9500000000000001,0.24,877,1.4000000000000001,186,3.8000000000000003,0.0000,0.0000 +2012,3,18,14,30,16.7,1.16,0.091,0.62,71,689,288,0,3,5.5,178,163,0,229,0.277,47.44,71.66,0.9400000000000001,0.24,877,1.3,185,4.4,12.6726,9.7876 +2012,3,18,15,30,19.8,1.18,0.092,0.62,91,832,508,0,1,4.800000000000001,91,832,0,508,0.278,37.24,59.94,0.9400000000000001,0.24,877,1.2000000000000002,189,5.5,28.5709,22.3117 +2012,3,18,16,30,22.8,1.17,0.09,0.62,103,909,696,0,7,1.9000000000000001,258,516,0,595,0.279,25.330000000000002,49.24,0.9400000000000001,0.24,877,1.1,196,7.1000000000000005,41.7146,32.7158 +2012,3,18,17,30,25.1,1.1300000000000001,0.077,0.62,103,958,832,7,3,-0.9,309,664,7,814,0.28,18.04,40.54,0.93,0.24,876,1.1,199,8.1,51.2977,40.3076 +2012,3,18,18,30,26.8,1.11,0.064,0.62,99,986,903,0,8,-2.6,291,568,0,754,0.281,14.4,35.42,0.92,0.24,875,1.1,199,8.700000000000001,56.6744,44.5657 +2012,3,18,19,30,27.8,1.12,0.064,0.62,100,982,899,0,6,-3,329,443,0,689,0.28200000000000003,13.18,35.52,0.93,0.24,873,1.2000000000000002,201,9,56.6677,44.5602 +2012,3,18,20,30,27.900000000000002,1.12,0.075,0.62,102,956,826,0,6,-3.1,404,98,0,478,0.28400000000000003,13.01,40.79,0.9400000000000001,0.24,873,1.2000000000000002,206,9.3,51.1563,40.1953 +2012,3,18,21,30,27.400000000000002,1.11,0.083,0.62,99,910,689,0,6,-3.4000000000000004,354,223,0,499,0.28800000000000003,13.06,49.58,0.9400000000000001,0.24,872,1.2000000000000002,211,9.5,41.5049,32.5492 +2012,3,18,22,30,26.1,1.09,0.088,0.62,89,832,501,0,6,-3.9000000000000004,265,215,0,372,0.291,13.56,60.32,0.9400000000000001,0.24,872,1.2000000000000002,215,9.200000000000001,28.9645,22.6156 +2012,3,18,23,30,24.1,1.04,0.09,0.62,70,684,281,0,4,-4.3,177,31,0,186,0.294,14.870000000000001,72.05,0.9400000000000001,0.24,872,1.2000000000000002,218,7.9,14.9469,11.5394 +2012,3,19,0,30,21.700000000000003,0.98,0.09,0.62,35,332,68,0,7,-4,35,315,0,66,0.295,17.6,84.21000000000001,0.9400000000000001,0.24,873,1.2000000000000002,221,6.2,0.0000,0.0000 +2012,3,19,1,30,19.6,0.89,0.101,0.62,0,0,0,0,6,-2.6,0,0,0,0,0.296,22.13,96.72,0.9500000000000001,0.24,874,1.3,232,5.800000000000001,0.0000,0.0000 +2012,3,19,2,30,17.8,0.8200000000000001,0.106,0.62,0,0,0,0,6,-0.7000000000000001,0,0,0,0,0.296,28.59,108.97,0.9500000000000001,0.24,875,1.4000000000000001,241,5.6000000000000005,0.0000,0.0000 +2012,3,19,3,30,16.3,0.8300000000000001,0.099,0.62,0,0,0,0,6,1.2000000000000002,0,0,0,0,0.296,35.93,120.75,0.9500000000000001,0.24,875,1.5,233,4.3,0.0000,0.0000 +2012,3,19,4,30,15.200000000000001,0.89,0.099,0.62,0,0,0,0,6,2.8000000000000003,0,0,0,0,0.297,43.17,131.53,0.9500000000000001,0.24,875,1.5,216,3.4000000000000004,0.0000,0.0000 +2012,3,19,5,30,14.4,0.96,0.109,0.62,0,0,0,0,9,3.5,0,0,0,0,0.3,47.81,140.33,0.9500000000000001,0.24,875,1.6,217,3.5,0.0000,0.0000 +2012,3,19,6,30,13.700000000000001,1.03,0.126,0.62,0,0,0,0,6,3,0,0,0,0,0.303,48.4,145.51,0.96,0.24,875,1.6,234,4.6000000000000005,0.0000,0.0000 +2012,3,19,7,30,12.700000000000001,1.08,0.14200000000000002,0.62,0,0,0,0,7,2.1,0,0,0,0,0.305,48.620000000000005,145.36,0.96,0.24,875,1.6,249,5.5,0.0000,0.0000 +2012,3,19,8,30,11.8,1.1,0.145,0.62,0,0,0,0,3,1.8,0,0,0,0,0.308,50.25,139.95000000000002,0.96,0.24,875,1.5,257,5,0.0000,0.0000 +2012,3,19,9,30,11,1.1,0.138,0.62,0,0,0,0,4,1.1,0,0,0,0,0.314,50.59,131.01,0.9500000000000001,0.24,874,1.4000000000000001,260,3.8000000000000003,0.0000,0.0000 +2012,3,19,10,30,10.3,1.09,0.136,0.62,0,0,0,0,4,0.30000000000000004,0,0,0,0,0.319,49.77,120.16,0.9500000000000001,0.24,874,1.3,258,2.8000000000000003,0.0000,0.0000 +2012,3,19,11,30,9.600000000000001,1.08,0.138,0.62,0,0,0,0,7,-0.6000000000000001,0,0,0,0,0.323,48.980000000000004,108.34,0.9500000000000001,0.24,874,1.2000000000000002,254,2.5,0.0000,0.0000 +2012,3,19,12,30,9.4,1.06,0.129,0.62,0,0,0,0,4,-1.6,0,0,0,0,0.324,46.15,96.06,0.96,0.24,875,1.2000000000000002,256,2.9000000000000004,0.0000,0.0000 +2012,3,19,13,30,9.600000000000001,1.04,0.12,0.62,41,314,76,7,4,-2.4000000000000004,32,0,7,32,0.326,42.980000000000004,83.54,0.96,0.24,875,1.2000000000000002,261,3.7,0.0000,0.0000 +2012,3,19,14,30,10.100000000000001,1.04,0.111,0.62,79,666,291,0,4,-2.9000000000000004,89,0,0,89,0.332,40.03,71.36,0.96,0.24,876,1.1,263,4.3,11.5471,8.9221 +2012,3,19,15,30,11.100000000000001,1.03,0.1,0.62,95,823,511,0,7,-3.4000000000000004,171,8,0,175,0.338,36.01,59.620000000000005,0.9400000000000001,0.24,876,1.1,259,4.800000000000001,28.0165,21.8826 +2012,3,19,16,30,12.700000000000001,1,0.075,0.62,96,925,705,0,7,-3.9000000000000004,52,0,0,52,0.341,31.28,48.9,0.9400000000000001,0.24,875,1,253,5.4,34.4678,27.0349 +2012,3,19,17,30,14,0.97,0.068,0.62,100,972,843,0,6,-4.2,273,6,0,277,0.34,28.05,40.160000000000004,0.93,0.24,875,0.9,248,5.9,48.3735,38.0123 +2012,3,19,18,30,14.700000000000001,0.9500000000000001,0.066,0.62,102,994,916,0,6,-4.7,393,30,0,417,0.34,25.94,35.02,0.93,0.24,874,0.8,245,6.1000000000000005,45.3033,35.6259 +2012,3,19,19,30,14.8,0.9500000000000001,0.065,0.62,102,994,915,0,7,-5.2,420,311,0,675,0.34,24.66,35.15,0.9400000000000001,0.24,873,0.8,241,6.300000000000001,41.3899,32.5481 +2012,3,19,20,30,14.4,0.9400000000000001,0.069,0.62,101,970,839,0,7,-5.800000000000001,286,514,0,677,0.341,24.25,40.480000000000004,0.9500000000000001,0.24,873,0.9,239,6.6000000000000005,28.3889,22.3073 +2012,3,19,21,30,13.5,0.9500000000000001,0.084,0.62,102,922,702,0,6,-6.1000000000000005,150,1,0,151,0.34400000000000003,25.14,49.33,0.9500000000000001,0.24,873,0.8,240,6.800000000000001,28.8715,22.6433 +2012,3,19,22,30,12.3,0.9500000000000001,0.081,0.62,87,853,513,0,0,-6.2,87,853,0,513,0.34800000000000003,27.04,60.11,0.9400000000000001,0.24,873,0.8,244,6.7,20.4700,15.9849 +2012,3,19,23,30,10.9,0.93,0.068,0.62,64,733,292,0,6,-6.4,109,8,0,111,0.354,29.22,71.88,0.9400000000000001,0.24,874,0.8,247,5.9,9.3449,7.2164 +2012,3,20,0,30,9.200000000000001,0.89,0.057,0.62,32,422,76,0,4,-6.4,55,8,0,56,0.36,32.67,84.05,0.9400000000000001,0.24,874,0.7000000000000001,249,4.6000000000000005,0.0000,0.0000 +2012,3,20,1,30,7.800000000000001,0.87,0.058,0.62,0,0,0,0,4,-6,0,0,0,0,0.364,37.050000000000004,96.56,0.9400000000000001,0.24,875,0.7000000000000001,249,3.9000000000000004,0.0000,0.0000 +2012,3,20,2,30,6.9,0.86,0.065,0.62,0,0,0,0,1,-6,0,0,0,0,0.367,39.230000000000004,108.8,0.9400000000000001,0.24,875,0.6000000000000001,251,3.8000000000000003,0.0000,0.0000 +2012,3,20,3,30,5.800000000000001,0.85,0.052000000000000005,0.62,0,0,0,0,4,-6.300000000000001,0,0,0,0,0.369,41.44,120.55,0.93,0.24,875,0.5,258,3.3000000000000003,0.0000,0.0000 +2012,3,20,4,30,4.4,0.8200000000000001,0.043000000000000003,0.62,0,0,0,0,4,-6.300000000000001,0,0,0,0,0.368,45.85,131.28,0.92,0.24,875,0.5,265,2.7,0.0000,0.0000 +2012,3,20,5,30,3.6,0.84,0.045,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.367,48.49,140.02,0.93,0.24,875,0.5,261,2.8000000000000003,0.0000,0.0000 +2012,3,20,6,30,3,0.9,0.056,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.367,49.54,145.13,0.9400000000000001,0.24,874,0.5,254,3.3000000000000003,0.0000,0.0000 +2012,3,20,7,30,2.3000000000000003,0.92,0.058,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.369,51.71,144.96,0.93,0.24,874,0.5,248,3.4000000000000004,0.0000,0.0000 +2012,3,20,8,30,1.6,0.9,0.057,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.372,54.27,139.57,0.92,0.24,874,0.5,248,3.2,0.0000,0.0000 +2012,3,20,9,30,0.8,0.87,0.054,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.376,56.480000000000004,130.67000000000002,0.92,0.24,874,0.4,257,2.8000000000000003,0.0000,0.0000 +2012,3,20,10,30,0,0.85,0.049,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.38,57.67,119.85000000000001,0.91,0.24,874,0.4,268,2.5,0.0000,0.0000 +2012,3,20,11,30,-0.5,0.8300000000000001,0.044,0.62,0,0,0,0,0,-8,0,0,0,0,0.383,56.800000000000004,108.05,0.91,0.24,874,0.4,280,2.5,0.0000,0.0000 +2012,3,20,12,30,-0.1,0.8300000000000001,0.041,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.386,52.46,95.78,0.91,0.24,874,0.4,292,3.2,0.0000,0.0000 +2012,3,20,13,30,2.2,0.85,0.04,0.62,32,524,93,0,0,-9.1,32,524,0,93,0.389,43.04,83.26,0.91,0.24,874,0.4,302,3.8000000000000003,0.0000,0.0000 +2012,3,20,14,30,6,0.87,0.04,0.62,56,821,322,0,0,-9.3,56,821,0,322,0.392,32.51,71.07000000000001,0.91,0.24,874,0.4,309,3.4000000000000004,4.5002,3.4786 +2012,3,20,15,30,9,0.88,0.04,0.62,70,939,549,0,0,-11.700000000000001,70,939,0,549,0.394,21.77,59.31,0.92,0.24,874,0.4,308,2.5,9.6693,7.5536 +2012,3,20,16,30,10.5,0.89,0.04,0.62,80,998,740,0,0,-12.8,80,998,0,740,0.394,18.05,48.550000000000004,0.92,0.24,875,0.4,300,2,3.0159,2.3658 +2012,3,20,17,30,11.600000000000001,0.9,0.041,0.62,86,1028,876,7,2,-13.100000000000001,282,763,7,869,0.393,16.42,39.78,0.92,0.24,874,0.4,297,2.2,16.4762,12.9479 +2012,3,20,18,30,12.5,0.93,0.045,0.62,91,1038,945,0,7,-13.3,276,654,0,814,0.392,15.22,34.62,0.93,0.24,874,0.4,306,2.7,25.0740,19.7188 +2012,3,20,19,30,12.9,0.9400000000000001,0.05,0.62,94,1033,943,0,8,-13.5,332,11,0,341,0.392,14.56,34.77,0.9400000000000001,0.24,874,0.4,322,3.2,40.5774,31.9107 +2012,3,20,20,30,12.600000000000001,0.9500000000000001,0.061,0.62,98,999,861,0,7,-13.700000000000001,409,153,0,526,0.39,14.66,40.17,0.9500000000000001,0.24,874,0.5,341,3.7,40.2378,31.6195 +2012,3,20,21,30,11.8,0.9500000000000001,0.069,0.62,95,955,720,0,7,-13.5,259,513,0,595,0.389,15.69,49.09,0.9500000000000001,0.24,874,0.5,181,4.1000000000000005,8.7445,6.8586 +2012,3,20,22,30,11,0.9500000000000001,0.075,0.62,86,872,523,0,4,-12.5,311,158,0,390,0.387,17.88,59.910000000000004,0.96,0.24,875,0.6000000000000001,14,4.5,28.2640,22.0738 +2012,3,20,23,30,10,0.9500000000000001,0.083,0.62,70,715,294,0,4,-10.9,187,43,0,200,0.385,21.81,71.7,0.96,0.24,876,0.7000000000000001,22,4.3,5.5856,4.3145 +2012,3,21,0,30,9,0.96,0.091,0.62,37,358,75,0,7,-8.8,41,3,0,41,0.384,27.48,83.89,0.96,0.24,877,0.7000000000000001,25,3.9000000000000004,0.0000,0.0000 +2012,3,21,1,30,8.200000000000001,0.96,0.097,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.383,34.2,96.4,0.96,0.24,878,0.8,26,3.8000000000000003,0.0000,0.0000 +2012,3,21,2,30,7.4,0.97,0.096,0.62,0,0,0,0,6,-4.7,0,0,0,0,0.382,41.86,108.62,0.96,0.24,879,0.9,25,3.5,0.0000,0.0000 +2012,3,21,3,30,6.6000000000000005,0.97,0.096,0.62,0,0,0,0,6,-2.9000000000000004,0,0,0,0,0.381,50.64,120.35000000000001,0.96,0.24,879,0.9,20,3.2,0.0000,0.0000 +2012,3,21,4,30,6,0.96,0.10400000000000001,0.62,0,0,0,0,7,-1.5,0,0,0,0,0.379,58.49,131.03,0.96,0.24,879,1,9,3.1,0.0000,0.0000 +2012,3,21,5,30,5.5,0.9500000000000001,0.113,0.62,0,0,0,0,6,-0.30000000000000004,0,0,0,0,0.378,66.09,139.71,0.96,0.24,880,1.1,180,3.4000000000000004,0.0000,0.0000 +2012,3,21,6,30,4.9,0.9400000000000001,0.113,0.62,0,0,0,0,6,0.8,0,0,0,0,0.378,74.53,144.76,0.96,0.24,880,1.1,354,3.5,0.0000,0.0000 +2012,3,21,7,30,4.5,0.9400000000000001,0.108,0.62,0,0,0,0,7,1.3,0,0,0,0,0.377,79.64,144.56,0.96,0.24,880,1.1,346,3.3000000000000003,0.0000,0.0000 +2012,3,21,8,30,4.2,0.9500000000000001,0.101,0.62,0,0,0,0,6,1.3,0,0,0,0,0.376,81.65,139.19,0.9500000000000001,0.24,880,1.1,334,3.3000000000000003,0.0000,0.0000 +2012,3,21,9,30,4.1000000000000005,0.9500000000000001,0.093,0.62,0,0,0,0,7,1.1,0,0,0,0,0.375,80.53,130.33,0.9500000000000001,0.24,879,1.1,324,3.7,0.0000,0.0000 +2012,3,21,10,30,3.9000000000000004,0.9500000000000001,0.088,0.62,0,0,0,0,4,0.7000000000000001,0,0,0,0,0.374,79.4,119.54,0.9500000000000001,0.24,879,1,320,4.1000000000000005,0.0000,0.0000 +2012,3,21,11,30,3.4000000000000004,0.97,0.077,0.62,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.372,79.95,107.75,0.9400000000000001,0.24,879,1,317,4,0.0000,0.0000 +2012,3,21,12,30,3.4000000000000004,0.99,0.067,0.62,0,0,0,0,4,-0.30000000000000004,0,0,0,0,0.369,76.94,95.49,0.93,0.24,879,0.9,314,4,0.0000,0.0000 +2012,3,21,13,30,5,1.01,0.064,0.62,35,447,90,7,4,-0.7000000000000001,21,0,7,21,0.366,66.48,82.98,0.93,0.24,880,0.9,320,4.800000000000001,0.0000,0.0000 +2012,3,21,14,30,7.6000000000000005,1.02,0.068,0.62,66,745,311,0,4,-1.2000000000000002,81,0,0,81,0.363,53.52,70.78,0.9400000000000001,0.24,880,0.9,333,6.1000000000000005,16.3251,12.6243 +2012,3,21,15,30,9.1,1.03,0.082,0.62,89,851,528,0,4,-2.2,311,171,0,400,0.361,45.12,58.99,0.9500000000000001,0.24,880,1,340,6.9,30.3878,23.7428 +2012,3,21,16,30,9.3,1.04,0.08700000000000001,0.62,103,914,712,0,3,-2.4000000000000004,356,381,0,610,0.36,43.84,48.21,0.9500000000000001,0.24,880,1,339,7.1000000000000005,42.9709,33.7105 +2012,3,21,17,30,9.200000000000001,1.04,0.077,0.62,105,956,844,0,7,-2,317,490,0,696,0.361,45.54,39.39,0.9500000000000001,0.24,879,1.1,337,7.1000000000000005,51.7348,40.6586 +2012,3,21,18,30,9.4,1.03,0.074,0.62,107,974,913,0,4,-1.8,430,15,0,443,0.362,45.6,34.22,0.9500000000000001,0.24,879,1.1,334,7.300000000000001,48.9818,38.5224 +2012,3,21,19,30,9.8,1.04,0.07200000000000001,0.62,105,976,910,0,8,-1.6,394,36,0,424,0.362,44.88,34.4,0.9400000000000001,0.24,879,1.1,334,7.5,20.5137,16.1330 +2012,3,21,20,30,9.9,1.03,0.07,0.62,101,961,838,0,8,-1.4000000000000001,372,38,0,401,0.362,45.31,39.87,0.9400000000000001,0.24,878,1.1,338,7.6000000000000005,31.2861,24.5864 +2012,3,21,21,30,9.5,1.04,0.077,0.62,97,918,701,0,7,-0.9,374,163,0,481,0.361,48.14,48.85,0.9400000000000001,0.24,878,1.1,343,7.4,34.4861,27.0503 +2012,3,21,22,30,8.8,1.06,0.076,0.62,85,846,511,0,4,-0.4,308,138,0,377,0.359,52.480000000000004,59.72,0.9400000000000001,0.24,878,1.2000000000000002,346,6.9,21.5125,16.8028 +2012,3,21,23,30,7.800000000000001,1.07,0.077,0.62,67,708,291,0,0,0.2,67,708,0,291,0.357,58.85,71.53,0.9400000000000001,0.24,879,1.2000000000000002,345,5.800000000000001,10.0810,7.7889 +2012,3,22,0,30,6.4,1.08,0.073,0.62,34,389,76,0,3,1,58,50,0,63,0.355,68.41,83.73,0.9400000000000001,0.25,879,1.2000000000000002,338,4.2,0.0000,0.0000 +2012,3,22,1,30,5.2,1.08,0.064,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.354,76.53,96.23,0.93,0.25,879,1.1,327,2.8000000000000003,0.0000,0.0000 +2012,3,22,2,30,4.4,1.07,0.059000000000000004,0.62,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.353,81.15,108.45,0.92,0.25,879,1.1,315,2.2,0.0000,0.0000 +2012,3,22,3,30,4.1000000000000005,1.05,0.06,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.35000000000000003,81.58,120.15,0.93,0.25,879,1.1,303,2,0.0000,0.0000 +2012,3,22,4,30,4.3,1.02,0.067,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.34600000000000003,77.07000000000001,130.79,0.93,0.25,879,1.2000000000000002,292,2.2,0.0000,0.0000 +2012,3,22,5,30,4.9,1,0.067,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.342,69.04,139.39000000000001,0.93,0.25,878,1.2000000000000002,288,2.8000000000000003,0.0000,0.0000 +2012,3,22,6,30,5.7,1.03,0.065,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.338,60.120000000000005,144.38,0.93,0.25,878,1.3,293,3.7,0.0000,0.0000 +2012,3,22,7,30,6,1.07,0.066,0.62,0,0,0,0,7,-2.5,0,0,0,0,0.333,54.57,144.16,0.93,0.25,877,1.3,296,4.3,0.0000,0.0000 +2012,3,22,8,30,5.800000000000001,1.09,0.063,0.62,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.329,51.7,138.81,0.93,0.25,877,1.2000000000000002,292,4.7,0.0000,0.0000 +2012,3,22,9,30,5.4,1.1,0.059000000000000004,0.62,0,0,0,0,4,-4.2,0,0,0,0,0.326,50.19,129.98,0.92,0.25,877,1.1,290,5.4,0.0000,0.0000 +2012,3,22,10,30,5.1000000000000005,1.12,0.055,0.62,0,0,0,0,4,-4.800000000000001,0,0,0,0,0.322,48.85,119.23,0.91,0.25,877,1,291,5.9,0.0000,0.0000 +2012,3,22,11,30,5.1000000000000005,1.1400000000000001,0.05,0.62,0,0,0,0,4,-5.300000000000001,0,0,0,0,0.317,47.12,107.46000000000001,0.9,0.25,877,1,294,6.2,0.0000,0.0000 +2012,3,22,12,30,6,1.1400000000000001,0.047,0.62,0,0,0,0,4,-5.6000000000000005,0,0,0,0,0.312,43.11,95.21000000000001,0.89,0.25,877,1.1,299,6.6000000000000005,0.0000,0.0000 +2012,3,22,13,30,8.4,1.1400000000000001,0.045,0.62,33,497,96,7,4,-5.6000000000000005,55,1,7,55,0.309,36.71,82.7,0.89,0.25,878,1.2000000000000002,308,7.1000000000000005,0.0000,0.0000 +2012,3,22,14,30,11.4,1.1500000000000001,0.044,0.62,57,777,316,0,4,-4.6000000000000005,164,303,0,265,0.307,32.29,70.48,0.89,0.25,879,1.3,320,7.9,4.1175,3.1854 +2012,3,22,15,30,13.100000000000001,1.16,0.044,0.62,71,889,533,0,1,-2.9000000000000004,71,889,0,533,0.307,32.9,58.68,0.89,0.25,880,1.4000000000000001,330,8.5,22.1804,17.3331 +2012,3,22,16,30,13.8,1.18,0.047,0.62,81,943,714,0,1,-0.4,81,943,0,714,0.306,37.62,47.86,0.9,0.25,880,1.5,336,8.1,35.4630,27.8231 +2012,3,22,17,30,14.8,1.19,0.048,0.62,88,974,844,0,1,1.3,88,974,0,844,0.306,39.85,39.01,0.9,0.25,881,1.5,340,7.300000000000001,41.4727,32.5955 +2012,3,22,18,30,15.9,1.21,0.041,0.62,86,997,915,0,1,1.8,86,997,0,915,0.305,38.7,33.82,0.89,0.25,881,1.4000000000000001,343,6.6000000000000005,26.6766,20.9812 +2012,3,22,19,30,16.7,1.21,0.036000000000000004,0.62,83,1001,913,0,0,1.6,83,1001,0,913,0.305,36.160000000000004,34.03,0.89,0.25,881,1.4000000000000001,344,6,25.5242,20.0744 +2012,3,22,20,30,17.2,1.2,0.034,0.62,80,992,844,0,0,1,80,992,0,844,0.303,33.43,39.57,0.9,0.25,881,1.3,343,5.5,23.8680,18.7577 +2012,3,22,21,30,17.3,1.1500000000000001,0.052000000000000005,0.62,84,941,706,0,0,0.2,84,941,0,706,0.302,31.35,48.61,0.92,0.25,881,1.3,343,4.800000000000001,27.9021,21.8874 +2012,3,22,22,30,16.900000000000002,1.17,0.046,0.62,71,884,520,0,3,-0.4,301,76,0,339,0.299,30.810000000000002,59.52,0.91,0.25,881,1.3,346,4,20.8184,16.2624 +2012,3,22,23,30,14.9,1.19,0.042,0.62,55,768,301,0,0,-0.7000000000000001,55,768,0,301,0.297,34.410000000000004,71.36,0.91,0.25,881,1.3,180,2.3000000000000003,14.6910,11.3534 +2012,3,23,0,30,11.8,1.2,0.04,0.62,30,473,83,0,0,1.4000000000000001,30,473,0,83,0.296,48.980000000000004,83.57000000000001,0.9,0.25,882,1.3,36,1.2000000000000002,0.0000,0.0000 +2012,3,23,1,30,9.700000000000001,1.18,0.039,0.62,0,0,0,0,1,0.2,0,0,0,0,0.295,51.72,96.07000000000001,0.9,0.25,882,1.2000000000000002,74,1.3,0.0000,0.0000 +2012,3,23,2,30,8.5,1.1400000000000001,0.038,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.295,53.43,108.27,0.9,0.25,882,1.2000000000000002,99,1.4000000000000001,0.0000,0.0000 +2012,3,23,3,30,7.5,1.1,0.037,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.294,54.6,119.94,0.89,0.25,883,1.1,118,1.4000000000000001,0.0000,0.0000 +2012,3,23,4,30,6.6000000000000005,1.05,0.039,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.293,56.33,130.54,0.9,0.25,883,1,136,1.4000000000000001,0.0000,0.0000 +2012,3,23,5,30,5.800000000000001,1.02,0.041,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.293,58.4,139.08,0.9,0.25,883,1,152,1.4000000000000001,0.0000,0.0000 +2012,3,23,6,30,5,0.99,0.043000000000000003,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.292,61.01,144,0.9,0.25,884,1,164,1.3,0.0000,0.0000 +2012,3,23,7,30,4.4,1,0.043000000000000003,0.62,0,0,0,0,0,-2,0,0,0,0,0.291,63.29,143.76,0.9,0.25,884,1,172,1.3,0.0000,0.0000 +2012,3,23,8,30,3.9000000000000004,1,0.043000000000000003,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.29,66.09,138.43,0.9,0.25,884,0.9,180,1.2000000000000002,0.0000,0.0000 +2012,3,23,9,30,3.4000000000000004,1.01,0.041,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.289,69.65,129.64000000000001,0.9,0.25,884,0.9,186,1.2000000000000002,0.0000,0.0000 +2012,3,23,10,30,2.9000000000000004,1.02,0.04,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.28700000000000003,74.03,118.91,0.9,0.25,884,0.9,190,1.2000000000000002,0.0000,0.0000 +2012,3,23,11,30,2.5,1.03,0.038,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.28500000000000003,78.44,107.17,0.9,0.25,884,0.8,192,1.2000000000000002,0.0000,0.0000 +2012,3,23,12,30,3.5,1.04,0.037,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.28300000000000003,75.49,94.92,0.9,0.25,885,0.8,196,1.5,0.0000,0.0000 +2012,3,23,13,30,6.5,1.05,0.036000000000000004,0.62,33,551,106,0,0,0,33,551,0,106,0.28200000000000003,63.36,82.42,0.9,0.25,885,0.7000000000000001,201,1.9000000000000001,0.0000,0.0000 +2012,3,23,14,30,10.5,1.05,0.035,0.62,55,823,334,0,0,0.6000000000000001,55,823,0,334,0.281,50.49,70.19,0.9,0.25,885,0.7000000000000001,197,2.3000000000000003,13.5078,10.4539 +2012,3,23,15,30,14.700000000000001,1.06,0.034,0.62,68,934,558,0,0,1.3,68,934,0,558,0.28,40.29,58.370000000000005,0.9,0.25,885,0.7000000000000001,195,2.6,29.6063,23.1398 +2012,3,23,16,30,18,1.06,0.033,0.62,76,997,749,0,0,0.8,76,997,0,749,0.28,31.330000000000002,47.52,0.9,0.25,885,0.6000000000000001,207,2.5,41.5580,32.6079 +2012,3,23,17,30,20.700000000000003,1.09,0.032,0.62,80,1028,883,0,0,-0.1,80,1028,0,883,0.28,24.85,38.63,0.9,0.25,885,0.6000000000000001,222,2.2,50.3348,39.5631 +2012,3,23,18,30,22.900000000000002,1.11,0.042,0.62,89,1031,950,0,0,-1.1,89,1031,0,950,0.279,20.2,33.410000000000004,0.9,0.25,884,0.6000000000000001,235,2.1,55.1392,43.3691 +2012,3,23,19,30,24.6,1.1300000000000001,0.043000000000000003,0.62,89,1030,946,0,0,-2.3000000000000003,89,1030,0,946,0.278,16.67,33.660000000000004,0.9,0.25,883,0.6000000000000001,242,1.9000000000000001,54.9980,43.2570 +2012,3,23,20,30,25.5,1.1500000000000001,0.044,0.62,86,1015,872,0,0,-3.4000000000000004,86,1015,0,872,0.277,14.58,39.27,0.89,0.25,883,0.6000000000000001,239,1.7000000000000002,50.2708,39.5094 +2012,3,23,21,30,25.700000000000003,1.32,0.038,0.62,77,990,735,0,0,-4.3,77,990,0,735,0.277,13.530000000000001,48.370000000000005,0.89,0.25,882,0.6000000000000001,229,1.6,40.9881,32.1545 +2012,3,23,22,30,25.1,1.32,0.037,0.62,68,932,543,0,0,-4.9,68,932,0,543,0.277,13.33,59.33,0.89,0.25,882,0.6000000000000001,209,1.3,18.7416,14.6417 +2012,3,23,23,30,22.3,1.31,0.036000000000000004,0.62,54,818,318,0,0,-3,54,818,0,318,0.277,18.23,71.19,0.89,0.25,882,0.6000000000000001,173,1.1,15.2198,11.7648 +2012,3,24,0,30,18,1.32,0.036000000000000004,0.62,30,535,92,0,0,1.6,30,535,0,92,0.277,33.230000000000004,83.42,0.89,0.25,882,0.5,147,1.3,0.0000,0.0000 +2012,3,24,1,30,14.8,1.32,0.036000000000000004,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.277,34.46,95.91,0.88,0.25,883,0.5,144,1.7000000000000002,0.0000,0.0000 +2012,3,24,2,30,13.3,1.31,0.036000000000000004,0.62,0,0,0,0,0,-1,0,0,0,0,0.278,37.22,108.10000000000001,0.88,0.25,883,0.5,146,2,0.0000,0.0000 +2012,3,24,3,30,12.200000000000001,1.3,0.035,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.278,39.89,119.74000000000001,0.89,0.25,884,0.5,149,2.3000000000000003,0.0000,0.0000 +2012,3,24,4,30,11,1.28,0.034,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.278,44.09,130.29,0.89,0.25,884,0.6000000000000001,154,2.3000000000000003,0.0000,0.0000 +2012,3,24,5,30,9.8,1.28,0.034,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.278,48.88,138.77,0.89,0.25,884,0.6000000000000001,159,2.2,0.0000,0.0000 +2012,3,24,6,30,8.700000000000001,1.28,0.034,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.278,53.25,143.63,0.88,0.25,884,0.6000000000000001,166,2,0.0000,0.0000 +2012,3,24,7,30,7.7,1.29,0.034,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.278,56.97,143.35,0.88,0.25,884,0.6000000000000001,173,1.8,0.0000,0.0000 +2012,3,24,8,30,6.9,1.29,0.034,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.278,59.74,138.05,0.88,0.25,884,0.6000000000000001,183,1.7000000000000002,0.0000,0.0000 +2012,3,24,9,30,6.2,1.3,0.035,0.62,0,0,0,0,0,-0.5,0,0,0,0,0.277,62.28,129.3,0.88,0.25,884,0.6000000000000001,195,1.5,0.0000,0.0000 +2012,3,24,10,30,5.7,1.32,0.036000000000000004,0.62,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.277,63.78,118.60000000000001,0.88,0.25,884,0.6000000000000001,210,1.4000000000000001,0.0000,0.0000 +2012,3,24,11,30,5.300000000000001,1.34,0.037,0.62,0,0,0,0,0,-1,0,0,0,0,0.276,63.65,106.87,0.87,0.25,884,0.6000000000000001,233,1.3,0.0000,0.0000 +2012,3,24,12,30,6.5,1.37,0.038,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.276,55.7,94.64,0.87,0.25,885,0.6000000000000001,259,1.5,0.0000,0.0000 +2012,3,24,13,30,10.3,1.3900000000000001,0.038,0.62,33,571,111,0,0,-1.7000000000000002,33,571,0,111,0.275,43.11,82.14,0.86,0.25,885,0.6000000000000001,279,2.2,0.0000,0.0000 +2012,3,24,14,30,14.9,1.4000000000000001,0.038,0.62,56,831,341,0,0,-2.6,56,831,0,341,0.275,29.8,69.9,0.86,0.25,885,0.6000000000000001,285,2.3000000000000003,17.0696,13.2154 +2012,3,24,15,30,19.900000000000002,1.41,0.038,0.62,69,939,565,0,0,-2.4000000000000004,69,939,0,565,0.275,22.16,58.06,0.86,0.25,885,0.6000000000000001,268,1.8,31.0475,24.2700 +2012,3,24,16,30,24.8,1.41,0.038,0.62,77,995,753,0,0,-3.5,77,995,0,753,0.275,15.1,47.18,0.85,0.25,885,0.6000000000000001,239,2.1,43.6442,34.2477 +2012,3,24,17,30,27.900000000000002,1.43,0.042,0.62,84,1020,885,0,0,-5.6000000000000005,84,1020,0,885,0.274,10.72,38.26,0.86,0.25,885,0.6000000000000001,220,2.7,52.7053,41.4286 +2012,3,24,18,30,29.3,1.32,0.07100000000000001,0.62,102,1007,947,0,0,-6.4,102,1007,0,947,0.274,9.290000000000001,33.01,0.86,0.25,884,0.6000000000000001,211,3.2,57.2897,45.0626 +2012,3,24,19,30,29.900000000000002,1.3900000000000001,0.08,0.62,106,999,941,0,0,-6.7,106,999,0,941,0.273,8.77,33.29,0.85,0.25,883,0.6000000000000001,210,3.4000000000000004,57.0234,44.8519 +2012,3,24,20,30,30.1,1.45,0.088,0.62,106,976,865,0,0,-7,106,976,0,865,0.273,8.52,38.97,0.85,0.25,883,0.6000000000000001,213,3.5,51.9742,40.8500 +2012,3,24,21,30,29.8,1.45,0.099,0.62,103,929,723,0,0,-7.2,103,929,0,723,0.272,8.51,48.14,0.85,0.25,882,0.6000000000000001,214,3.4000000000000004,42.7068,33.5050 +2012,3,24,22,30,28.400000000000002,1.43,0.098,0.62,90,861,531,0,0,-7.300000000000001,90,861,0,531,0.272,9.200000000000001,59.13,0.85,0.25,882,0.6000000000000001,212,2.5,30.0522,23.4804 +2012,3,24,23,30,24.5,1.3900000000000001,0.091,0.62,69,734,308,0,0,-0.7000000000000001,69,734,0,308,0.272,18.92,71.02,0.86,0.25,882,0.6000000000000001,196,1.6,16.1045,12.4517 +2012,3,25,0,30,19.900000000000002,1.34,0.08,0.62,35,436,86,0,0,2.1,35,436,0,86,0.272,30.59,83.26,0.86,0.24,882,0.6000000000000001,177,1.5,0.0000,0.0000 +2012,3,25,1,30,17.400000000000002,1.27,0.07,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.272,29.18,95.75,0.88,0.24,883,0.6000000000000001,168,1.9000000000000001,0.0000,0.0000 +2012,3,25,2,30,16.3,1.2,0.062,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.272,29.19,107.92,0.89,0.24,883,0.6000000000000001,166,2.2,0.0000,0.0000 +2012,3,25,3,30,15.5,1.1300000000000001,0.056,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.272,29.63,119.53,0.89,0.24,884,0.7000000000000001,169,2.6,0.0000,0.0000 +2012,3,25,4,30,14.4,1.08,0.054,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.272,31.94,130.04,0.9,0.24,884,0.7000000000000001,175,2.8000000000000003,0.0000,0.0000 +2012,3,25,5,30,13.200000000000001,1.05,0.054,0.62,0,0,0,0,1,-1.9000000000000001,0,0,0,0,0.272,35.22,138.46,0.9,0.24,884,0.7000000000000001,183,2.7,0.0000,0.0000 +2012,3,25,6,30,12,1.04,0.056,0.62,0,0,0,0,1,-1.6,0,0,0,0,0.272,38.75,143.25,0.91,0.24,884,0.7000000000000001,193,2.5,0.0000,0.0000 +2012,3,25,7,30,10.8,1.05,0.057,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.272,42,142.95000000000002,0.91,0.24,885,0.8,205,2.2,0.0000,0.0000 +2012,3,25,8,30,9.9,1.05,0.058,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.272,43.730000000000004,137.67000000000002,0.91,0.24,885,0.7000000000000001,216,2,0.0000,0.0000 +2012,3,25,9,30,9.3,1.06,0.058,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.272,44.21,128.95,0.91,0.24,884,0.7000000000000001,226,1.8,0.0000,0.0000 +2012,3,25,10,30,8.8,1.06,0.06,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.273,44.94,118.28,0.92,0.24,885,0.7000000000000001,231,1.7000000000000002,0.0000,0.0000 +2012,3,25,11,30,8.5,1.06,0.062,0.62,0,0,0,0,1,-2.5,0,0,0,0,0.273,45.980000000000004,106.58,0.92,0.24,885,0.7000000000000001,231,1.6,0.0000,0.0000 +2012,3,25,12,30,9.700000000000001,1.06,0.065,0.62,0,0,0,0,7,-2.1,0,0,0,0,0.273,43.75,94.35000000000001,0.92,0.24,885,0.7000000000000001,227,1.6,0.0000,0.0000 +2012,3,25,13,30,13.100000000000001,1.06,0.069,0.62,41,489,110,7,7,-0.30000000000000004,72,31,7,76,0.273,39.730000000000004,81.86,0.93,0.24,886,0.8,221,2.3000000000000003,0.0000,0.0000 +2012,3,25,14,30,17.400000000000002,1.06,0.07200000000000001,0.62,70,764,336,0,1,-0.1,70,764,0,336,0.273,30.53,69.61,0.93,0.24,886,0.8,211,2.8000000000000003,17.4727,13.5324 +2012,3,25,15,30,21.8,1.07,0.07,0.62,85,881,555,0,0,2,85,881,0,555,0.273,27.05,57.75,0.93,0.24,886,0.9,195,3.7,31.4896,24.6194 +2012,3,25,16,30,25.900000000000002,1.07,0.068,0.62,94,945,741,0,0,3.7,94,945,0,741,0.272,23.94,46.84,0.92,0.24,886,0.9,186,5,43.9259,34.4715 +2012,3,25,17,30,28.5,1.08,0.068,0.62,101,974,870,0,0,3,101,974,0,870,0.271,19.51,37.88,0.93,0.24,885,1,181,5.800000000000001,52.8674,41.5583 +2012,3,25,18,30,29.900000000000002,1.08,0.064,0.62,102,988,934,0,0,2.2,102,988,0,934,0.27,16.94,32.61,0.93,0.24,885,1.1,178,6.2,57.1483,44.9534 +2012,3,25,19,30,30.400000000000002,1.09,0.066,0.62,103,986,930,0,0,1.5,103,986,0,930,0.27,15.68,32.93,0.93,0.24,884,1.1,175,6.5,56.7588,44.6456 +2012,3,25,20,30,30.400000000000002,1.1,0.07100000000000001,0.62,101,962,853,0,0,1,101,962,0,853,0.27,15.17,38.67,0.93,0.24,883,1.2000000000000002,172,6.5,51.5919,40.5513 +2012,3,25,21,30,29.8,1.11,0.077,0.62,97,920,714,0,0,0.8,97,920,0,714,0.271,15.47,47.910000000000004,0.93,0.24,883,1.2000000000000002,169,6.4,42.0424,32.9856 +2012,3,25,22,30,28.6,1.11,0.082,0.62,88,847,525,0,0,0.8,88,847,0,525,0.272,16.51,58.94,0.93,0.24,882,1.2000000000000002,165,6,29.4214,22.9899 +2012,3,25,23,30,25.900000000000002,1.12,0.08600000000000001,0.62,71,705,302,0,0,1.1,71,705,0,302,0.272,19.81,70.86,0.93,0.24,883,1.3,160,4.800000000000001,15.6225,12.0818 +2012,3,26,0,30,22.200000000000003,1.1300000000000001,0.089,0.62,38,390,85,0,0,2.4000000000000004,38,390,0,85,0.272,27.14,83.10000000000001,0.93,0.25,883,1.2000000000000002,154,3.7,0.0000,0.0000 +2012,3,26,1,30,20,1.1300000000000001,0.092,0.62,0,0,0,0,0,3.1,0,0,0,0,0.273,32.77,95.59,0.93,0.25,883,1.2000000000000002,151,3.8000000000000003,0.0000,0.0000 +2012,3,26,2,30,18.900000000000002,1.1300000000000001,0.095,0.62,0,0,0,0,0,3.2,0,0,0,0,0.273,35.21,107.74000000000001,0.9400000000000001,0.25,884,1.2000000000000002,151,4.2,0.0000,0.0000 +2012,3,26,3,30,17.6,1.1400000000000001,0.096,0.62,0,0,0,0,0,3.2,0,0,0,0,0.274,38.32,119.33,0.9400000000000001,0.25,884,1.2000000000000002,153,4.4,0.0000,0.0000 +2012,3,26,4,30,16.400000000000002,1.1500000000000001,0.098,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.275,41.660000000000004,129.78,0.9400000000000001,0.25,884,1.2000000000000002,156,4.4,0.0000,0.0000 +2012,3,26,5,30,15.4,1.16,0.1,0.62,0,0,0,0,1,3.7,0,0,0,0,0.277,45.42,138.14000000000001,0.9400000000000001,0.25,884,1.3,160,4.3,0.0000,0.0000 +2012,3,26,6,30,14.5,1.17,0.10400000000000001,0.62,0,0,0,0,1,4.2,0,0,0,0,0.278,49.870000000000005,142.88,0.9400000000000001,0.25,884,1.3,166,4.2,0.0000,0.0000 +2012,3,26,7,30,13.8,1.17,0.108,0.62,0,0,0,0,1,4.7,0,0,0,0,0.279,54.07,142.55,0.9400000000000001,0.25,884,1.4000000000000001,173,4,0.0000,0.0000 +2012,3,26,8,30,13.100000000000001,1.17,0.113,0.62,0,0,0,0,1,5.1000000000000005,0,0,0,0,0.28,58.300000000000004,137.29,0.9400000000000001,0.25,884,1.4000000000000001,179,3.7,0.0000,0.0000 +2012,3,26,9,30,12.5,1.17,0.116,0.62,0,0,0,0,7,5.5,0,0,0,0,0.281,62.32,128.61,0.9400000000000001,0.25,884,1.5,182,3.5,0.0000,0.0000 +2012,3,26,10,30,12.100000000000001,1.17,0.116,0.62,0,0,0,0,7,5.9,0,0,0,0,0.28200000000000003,65.68,117.97,0.9400000000000001,0.25,884,1.5,183,3.5,0.0000,0.0000 +2012,3,26,11,30,11.700000000000001,1.17,0.116,0.62,0,0,0,0,7,6.2,0,0,0,0,0.28300000000000003,68.85000000000001,106.28,0.9500000000000001,0.25,884,1.5,180,3.6,0.0000,0.0000 +2012,3,26,12,30,12,1.17,0.115,0.62,0,0,0,0,7,6.4,0,0,0,0,0.28400000000000003,68.58,94.07000000000001,0.9500000000000001,0.25,884,1.5,175,4.1000000000000005,0.0000,0.0000 +2012,3,26,13,30,13.8,1.18,0.111,0.62,47,407,107,7,7,6.7,75,25,7,79,0.28400000000000003,62.1,81.58,0.9500000000000001,0.25,884,1.4000000000000001,173,4.9,0.0000,0.0000 +2012,3,26,14,30,16.6,1.18,0.109,0.62,81,694,326,0,7,7.2,197,134,0,244,0.28400000000000003,53.72,69.32000000000001,0.9500000000000001,0.25,884,1.4000000000000001,177,5.6000000000000005,17.2610,13.3732 +2012,3,26,15,30,19.700000000000003,1.18,0.113,0.62,103,817,543,0,4,7.6000000000000005,328,165,0,416,0.28300000000000003,45.53,57.44,0.9500000000000001,0.25,884,1.4000000000000001,183,5.9,30.9832,24.2271 +2012,3,26,16,30,22.700000000000003,1.18,0.11800000000000001,0.62,118,877,722,0,7,7.300000000000001,354,98,0,421,0.28200000000000003,37.22,46.5,0.9500000000000001,0.25,884,1.5,186,5.7,43.2730,33.9619 +2012,3,26,17,30,24.900000000000002,1.18,0.121,0.62,128,909,849,0,3,6.1000000000000005,429,389,0,737,0.28,29.990000000000002,37.5,0.9500000000000001,0.25,883,1.6,189,5.4,52.0139,40.8896 +2012,3,26,18,30,25.8,1.16,0.129,0.62,136,916,911,0,7,5.1000000000000005,267,674,0,837,0.28,26.400000000000002,32.22,0.96,0.25,882,1.7000000000000002,189,5.1000000000000005,56.4020,44.3683 +2012,3,26,19,30,26,1.1300000000000001,0.128,0.62,136,915,907,0,8,4.5,338,505,0,764,0.28,25.11,32.56,0.96,0.25,881,1.7000000000000002,187,5,56.1300,44.1529 +2012,3,26,20,30,25.900000000000002,1.11,0.117,0.62,126,906,836,0,8,4.3,279,575,0,730,0.281,24.93,38.38,0.96,0.25,881,1.7000000000000002,184,4.9,50.9101,40.0173 +2012,3,26,21,30,25.8,1.12,0.11900000000000001,0.62,118,864,700,0,8,4.3,267,459,0,576,0.281,24.96,47.67,0.96,0.25,880,1.7000000000000002,182,4.9,41.5511,32.6020 +2012,3,26,22,30,25.400000000000002,1.12,0.121,0.62,104,788,513,0,3,4.2,276,323,0,443,0.28200000000000003,25.44,58.75,0.96,0.25,880,1.7000000000000002,179,4.800000000000001,29.1199,22.7566 +2012,3,26,23,30,23.6,1.1,0.122,0.62,82,647,296,0,7,4.4,150,420,0,289,0.28400000000000003,28.71,70.69,0.9500000000000001,0.25,880,1.6,172,3.8000000000000003,15.3406,11.8664 +2012,3,27,0,30,20.6,1.08,0.113,0.62,42,344,85,0,7,5.7,42,344,5,85,0.28600000000000003,37.78,82.95,0.9500000000000001,0.25,880,1.5,164,3.1,0.0000,0.0000 +2012,3,27,1,30,18.900000000000002,1.05,0.101,0.62,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.289,44.52,95.42,0.9400000000000001,0.25,880,1.3,160,3.7,0.0000,0.0000 +2012,3,27,2,30,18.2,1.03,0.096,0.62,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.291,50.09,107.57000000000001,0.9400000000000001,0.25,881,1.3,162,4.5,0.0000,0.0000 +2012,3,27,3,30,17.2,1.02,0.101,0.62,0,0,0,0,1,8.6,0,0,0,0,0.292,57.14,119.12,0.9400000000000001,0.25,881,1.3,168,4.800000000000001,0.0000,0.0000 +2012,3,27,4,30,16.1,1.02,0.115,0.62,0,0,0,0,0,9.4,0,0,0,0,0.292,64.44,129.53,0.9500000000000001,0.25,881,1.2000000000000002,177,4.6000000000000005,0.0000,0.0000 +2012,3,27,5,30,15,1.02,0.126,0.62,0,0,0,0,0,9.600000000000001,0,0,0,0,0.29,70.07000000000001,137.83,0.9500000000000001,0.25,881,1,188,4.3,0.0000,0.0000 +2012,3,27,6,30,13.700000000000001,1.01,0.127,0.62,0,0,0,0,0,9,0,0,0,0,0.28800000000000003,73.29,142.5,0.9500000000000001,0.25,881,0.9,199,3.7,0.0000,0.0000 +2012,3,27,7,30,12.600000000000001,0.98,0.126,0.62,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28700000000000003,72.68,142.16,0.9400000000000001,0.25,881,0.7000000000000001,211,3.2,0.0000,0.0000 +2012,3,27,8,30,11.4,0.93,0.117,0.62,0,0,0,0,0,5.9,0,0,0,0,0.28600000000000003,68.81,136.91,0.9400000000000001,0.25,881,0.6000000000000001,225,2.8000000000000003,0.0000,0.0000 +2012,3,27,9,30,10.3,0.87,0.10200000000000001,0.62,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28500000000000003,60.18,128.26,0.92,0.25,881,0.5,241,2.6,0.0000,0.0000 +2012,3,27,10,30,9.4,0.8,0.09,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.28400000000000003,48.56,117.65,0.91,0.25,882,0.4,260,2.5,0.0000,0.0000 +2012,3,27,11,30,8.8,0.74,0.084,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.28300000000000003,40.54,105.99000000000001,0.9,0.25,882,0.4,278,2.4000000000000004,0.0000,0.0000 +2012,3,27,12,30,9.9,0.71,0.083,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28200000000000003,35.21,93.79,0.9,0.25,883,0.4,292,2.8000000000000003,0.0000,0.0000 +2012,3,27,13,30,13.4,0.6900000000000001,0.083,0.62,46,487,119,0,0,-4.9,46,487,0,119,0.28,27.650000000000002,81.3,0.89,0.25,883,0.4,297,3.4000000000000004,0.0000,0.0000 +2012,3,27,14,30,17.900000000000002,0.67,0.083,0.62,76,771,352,0,1,-5.1000000000000005,76,771,0,352,0.279,20.43,69.03,0.9,0.25,884,0.4,299,3.3000000000000003,12.5668,9.7397 +2012,3,27,15,30,22.400000000000002,0.65,0.083,0.62,94,893,579,0,0,-5.1000000000000005,94,893,0,579,0.279,15.5,57.13,0.9,0.25,884,0.4,302,3.5,23.2611,18.1915 +2012,3,27,16,30,25.5,0.64,0.083,0.62,106,966,775,0,0,-8.200000000000001,106,966,0,775,0.278,10.17,46.160000000000004,0.9,0.25,884,0.30000000000000004,297,3.7,24.6120,19.3178 +2012,3,27,17,30,27.200000000000003,0.63,0.082,0.62,113,1000,911,0,0,-9.3,113,1000,0,911,0.278,8.41,37.12,0.9,0.25,883,0.30000000000000004,284,3.3000000000000003,44.0977,34.6684 +2012,3,27,18,30,28.400000000000002,0.65,0.082,0.62,116,1015,979,0,0,-10.3,116,1015,0,979,0.278,7.26,31.82,0.9,0.25,883,0.30000000000000004,272,3.3000000000000003,50.5773,39.7880 +2012,3,27,19,30,29.200000000000003,0.65,0.08,0.62,115,1016,975,0,0,-11.3,115,1016,0,975,0.278,6.37,32.2,0.9,0.25,882,0.30000000000000004,261,3.3000000000000003,46.1400,36.2960 +2012,3,27,20,30,29.5,0.63,0.079,0.62,111,1000,898,0,0,-12.200000000000001,111,1000,0,898,0.277,5.84,38.09,0.9,0.25,882,0.30000000000000004,253,3.4000000000000004,43.5968,34.2702 +2012,3,27,21,30,29.200000000000003,0.62,0.078,0.62,103,966,756,0,0,-12.9,103,966,0,756,0.277,5.62,47.45,0.9,0.25,881,0.30000000000000004,247,3.4000000000000004,33.5469,26.3233 +2012,3,27,22,30,28,0.58,0.077,0.62,90,899,559,0,0,-13.200000000000001,90,899,0,559,0.276,5.89,58.57,0.89,0.25,881,0.30000000000000004,240,2.8000000000000003,24.5976,19.2244 +2012,3,27,23,30,24.5,0.56,0.075,0.62,72,769,328,0,0,-9.1,72,769,0,328,0.277,10.040000000000001,70.53,0.89,0.25,881,0.30000000000000004,226,1.8,14.7031,11.3758 +2012,3,28,0,30,20.1,0.55,0.074,0.62,40,449,96,0,0,-1.1,40,449,0,96,0.278,24,82.79,0.89,0.25,882,0.30000000000000004,209,1.4000000000000001,0.0000,0.0000 +2012,3,28,1,30,17.6,0.56,0.074,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.279,22.35,95.26,0.89,0.25,882,0.30000000000000004,195,1.6,0.0000,0.0000 +2012,3,28,2,30,16.1,0.58,0.075,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.279,23.6,107.39,0.88,0.25,882,0.4,190,1.7000000000000002,0.0000,0.0000 +2012,3,28,3,30,14.8,0.6,0.077,0.62,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.28,24.84,118.91,0.88,0.25,883,0.4,192,1.8,0.0000,0.0000 +2012,3,28,4,30,13.9,0.62,0.078,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.28,25.63,129.28,0.88,0.25,883,0.4,198,2,0.0000,0.0000 +2012,3,28,5,30,13.3,0.64,0.078,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.281,26.78,137.51,0.89,0.25,883,0.5,205,2.6,0.0000,0.0000 +2012,3,28,6,30,12.8,0.67,0.079,0.62,0,0,0,0,7,-3.6,0,0,0,0,0.28200000000000003,31.88,142.13,0.9,0.25,883,0.7000000000000001,213,3,0.0000,0.0000 +2012,3,28,7,30,12.200000000000001,0.7000000000000001,0.08,0.62,0,0,0,0,8,-0.30000000000000004,0,0,0,0,0.281,42.08,141.76,0.91,0.25,883,0.8,223,2.9000000000000004,0.0000,0.0000 +2012,3,28,8,30,11.3,0.6900000000000001,0.08,0.62,0,0,0,0,7,1.8,0,0,0,0,0.281,51.93,136.53,0.91,0.25,883,0.7000000000000001,231,2.6,0.0000,0.0000 +2012,3,28,9,30,10.3,0.67,0.08,0.62,0,0,0,0,7,2.2,0,0,0,0,0.28,57.14,127.92,0.91,0.25,883,0.6000000000000001,238,2.4000000000000004,0.0000,0.0000 +2012,3,28,10,30,9.4,0.65,0.079,0.62,0,0,0,0,4,1.6,0,0,0,0,0.278,58.36,117.34,0.91,0.25,883,0.6000000000000001,246,2.2,0.0000,0.0000 +2012,3,28,11,30,8.700000000000001,0.64,0.078,0.62,0,0,0,0,4,0.6000000000000001,0,0,0,0,0.277,56.71,105.69,0.91,0.25,884,0.6000000000000001,257,2,0.0000,0.0000 +2012,3,28,12,30,9.600000000000001,0.63,0.077,0.62,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.277,48.480000000000004,93.5,0.91,0.25,884,0.5,269,2.1,0.0000,0.0000 +2012,3,28,13,30,13,0.62,0.074,0.62,46,505,124,7,4,-1.8,86,13,7,88,0.277,35.75,81.02,0.9,0.25,885,0.5,278,2.7,0.0000,0.0000 +2012,3,28,14,30,17.2,0.62,0.07100000000000001,0.62,73,784,357,0,3,-3.7,208,219,0,287,0.278,23.7,68.74,0.9,0.25,885,0.5,274,2.7,18.1752,14.0912 +2012,3,28,15,30,22.200000000000003,0.61,0.069,0.62,88,903,582,7,3,-3.7,260,540,7,555,0.278,17.45,56.83,0.9,0.25,885,0.5,259,2.5,32.4273,25.3636 +2012,3,28,16,30,26.200000000000003,0.62,0.067,0.62,98,966,771,0,0,-7.1000000000000005,98,966,0,771,0.279,10.56,45.83,0.9,0.25,884,0.5,247,2.5,45.3551,35.6016 +2012,3,28,17,30,28.1,0.64,0.065,0.62,103,1000,904,0,1,-8.700000000000001,103,1000,0,904,0.28,8.39,36.75,0.9,0.25,884,0.5,234,2.6,54.5520,42.8894 +2012,3,28,18,30,29.3,0.6,0.063,0.62,105,1015,971,0,0,-8.9,105,1015,0,971,0.28200000000000003,7.66,31.42,0.9,0.25,883,0.5,224,2.9000000000000004,59.1967,46.5706 +2012,3,28,19,30,30,0.62,0.062,0.62,104,1015,967,0,0,-9.1,104,1015,0,967,0.28300000000000003,7.29,31.830000000000002,0.9,0.25,882,0.5,218,3.4000000000000004,58.9182,46.3497 +2012,3,28,20,30,30.200000000000003,0.64,0.062,0.62,100,1000,891,0,0,-9.4,100,1000,0,891,0.28500000000000003,7.0200000000000005,37.800000000000004,0.9,0.25,881,0.5,218,3.6,53.6637,42.1853 +2012,3,28,21,30,29.8,0.7000000000000001,0.064,0.62,94,965,749,0,0,-10.200000000000001,94,965,0,749,0.28600000000000003,6.76,47.22,0.9,0.25,880,0.5,220,3.6,44.0622,34.5763 +2012,3,28,22,30,28.700000000000003,0.7000000000000001,0.064,0.62,84,909,560,0,0,-11.3,84,909,0,560,0.28700000000000003,6.6000000000000005,58.38,0.9,0.25,880,0.4,222,3,31.0692,24.2846 +2012,3,28,23,30,25.200000000000003,0.6900000000000001,0.063,0.62,67,786,331,0,0,-9.5,67,786,0,331,0.28700000000000003,9.290000000000001,70.36,0.9,0.25,880,0.4,218,1.9000000000000001,16.7115,12.9325 +2012,3,29,0,30,20.900000000000002,0.6900000000000001,0.063,0.62,38,481,100,0,0,-0.9,38,481,0,100,0.28800000000000003,23.17,82.64,0.9,0.25,880,0.4,204,1.4000000000000001,0.0000,0.0000 +2012,3,29,1,30,18.5,0.68,0.062,0.62,0,0,0,0,1,-3.9000000000000004,0,0,0,0,0.28800000000000003,21.61,95.10000000000001,0.9,0.25,880,0.4,187,1.7000000000000002,0.0000,0.0000 +2012,3,29,2,30,16.900000000000002,0.7000000000000001,0.062,0.62,0,0,0,0,1,-3.6,0,0,0,0,0.28800000000000003,24.41,107.21000000000001,0.9,0.25,881,0.4,176,2.3000000000000003,0.0000,0.0000 +2012,3,29,3,30,15.9,0.74,0.064,0.62,0,0,0,0,1,-1.5,0,0,0,0,0.28700000000000003,30.43,118.71000000000001,0.91,0.25,881,0.6000000000000001,173,3.3000000000000003,0.0000,0.0000 +2012,3,29,4,30,15.3,0.8,0.068,0.62,0,0,0,0,0,2.2,0,0,0,0,0.28700000000000003,41.300000000000004,129.02,0.91,0.25,881,0.7000000000000001,176,4.2,0.0000,0.0000 +2012,3,29,5,30,14.600000000000001,0.85,0.07100000000000001,0.62,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28600000000000003,53.51,137.20000000000002,0.92,0.25,881,0.8,182,4.5,0.0000,0.0000 +2012,3,29,6,30,14,0.89,0.074,0.62,0,0,0,0,0,7,0,0,0,0,0.28600000000000003,62.910000000000004,141.75,0.92,0.25,881,0.9,191,4.4,0.0000,0.0000 +2012,3,29,7,30,13.4,0.91,0.077,0.62,0,0,0,0,0,7.7,0,0,0,0,0.28500000000000003,68.51,141.36,0.92,0.25,881,1,199,4.2,0.0000,0.0000 +2012,3,29,8,30,12.9,0.93,0.079,0.62,0,0,0,0,0,7.9,0,0,0,0,0.28500000000000003,71.7,136.15,0.92,0.25,881,1.1,205,4,0.0000,0.0000 +2012,3,29,9,30,12.3,0.9400000000000001,0.081,0.62,0,0,0,0,0,7.9,0,0,0,0,0.28400000000000003,74.49,127.57000000000001,0.92,0.25,881,1.1,209,3.6,0.0000,0.0000 +2012,3,29,10,30,11.5,0.92,0.08,0.62,0,0,0,0,0,7.9,0,0,0,0,0.28300000000000003,78.67,117.02,0.92,0.25,881,1,213,3.2,0.0000,0.0000 +2012,3,29,11,30,10.600000000000001,0.88,0.076,0.62,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28300000000000003,83.04,105.4,0.92,0.25,881,0.9,219,2.8000000000000003,0.0000,0.0000 +2012,3,29,12,30,11.100000000000001,0.8300000000000001,0.07200000000000001,0.62,0,0,0,0,0,7.300000000000001,0,0,0,0,0.28200000000000003,77.5,93.22,0.92,0.25,881,0.8,229,3.1,0.0000,0.0000 +2012,3,29,13,30,13.600000000000001,0.77,0.069,0.62,45,520,128,0,0,5.9,45,520,0,128,0.281,59.7,80.74,0.91,0.25,881,0.7000000000000001,245,3.7,0.0000,0.0000 +2012,3,29,14,30,17.5,0.72,0.067,0.62,71,790,361,0,0,3.4000000000000004,71,790,0,361,0.28,39,68.46000000000001,0.91,0.25,881,0.6000000000000001,262,3.8000000000000003,14.8562,11.5218 +2012,3,29,15,30,22.400000000000002,0.68,0.066,0.62,86,911,589,0,0,-2.2,86,911,0,589,0.28,19.25,56.52,0.9,0.25,881,0.5,280,4.1000000000000005,31.1306,24.3526 +2012,3,29,16,30,26.3,0.65,0.066,0.62,97,969,776,0,0,-8.200000000000001,97,969,0,776,0.28,9.65,45.49,0.9,0.25,881,0.5,292,4.3,45.1666,35.4563 +2012,3,29,17,30,28.400000000000002,0.63,0.066,0.62,103,1000,908,0,0,-11.3,103,1000,0,908,0.28,6.71,36.38,0.9,0.25,880,0.5,292,4,54.1738,42.5942 +2012,3,29,18,30,29.5,0.66,0.07,0.62,110,1018,982,0,0,-11.700000000000001,110,1018,0,982,0.279,6.0600000000000005,31.02,0.91,0.25,880,0.4,285,3.7,58.7507,46.2217 +2012,3,29,19,30,30,0.65,0.078,0.62,115,1009,975,0,0,-12.3,115,1009,0,975,0.279,5.66,31.470000000000002,0.92,0.25,879,0.4,276,3.7,58.4701,45.9990 +2012,3,29,20,30,29.900000000000002,0.65,0.089,0.62,118,982,896,0,0,-12.9,118,982,0,896,0.279,5.39,37.51,0.93,0.25,878,0.4,270,3.8000000000000003,53.2784,41.8842 +2012,3,29,21,30,29.400000000000002,0.58,0.101,0.62,117,930,751,0,0,-13.700000000000001,117,930,0,751,0.279,5.23,47,0.93,0.25,878,0.4,266,4,43.6869,34.2837 +2012,3,29,22,30,28.1,0.56,0.105,0.62,105,853,554,0,0,-14.200000000000001,105,853,0,554,0.28,5.4,58.2,0.93,0.25,878,0.4,265,3.6,31.1571,24.3556 +2012,3,29,23,30,24.700000000000003,0.54,0.10200000000000001,0.62,83,716,326,0,0,-11.3,83,716,0,326,0.28,8.32,70.2,0.93,0.25,878,0.4,265,2.4000000000000004,16.8903,13.0738 +2012,3,30,0,30,20.3,0.55,0.096,0.62,45,402,98,0,0,-4.3,45,402,0,98,0.28200000000000003,18.64,82.48,0.92,0.25,878,0.4,264,1.7000000000000002,0.0000,0.0000 +2012,3,30,1,30,17.7,0.5700000000000001,0.08700000000000001,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.28200000000000003,19.93,94.94,0.91,0.25,878,0.4,264,1.8,0.0000,0.0000 +2012,3,30,2,30,16.3,0.6,0.078,0.62,0,0,0,0,1,-6.800000000000001,0,0,0,0,0.28300000000000003,19.92,107.03,0.9,0.25,878,0.4,269,1.9000000000000001,0.0000,0.0000 +2012,3,30,3,30,15.100000000000001,0.65,0.07100000000000001,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.28300000000000003,19.830000000000002,118.5,0.9,0.25,879,0.4,279,2.1,0.0000,0.0000 +2012,3,30,4,30,14.100000000000001,0.68,0.066,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.28400000000000003,20.1,128.77,0.89,0.25,879,0.4,292,2.3000000000000003,0.0000,0.0000 +2012,3,30,5,30,13.3,0.66,0.064,0.62,0,0,0,0,1,-8.4,0,0,0,0,0.28600000000000003,21.34,136.88,0.89,0.25,879,0.4,304,2.5,0.0000,0.0000 +2012,3,30,6,30,12.5,0.62,0.063,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.28800000000000003,24.12,141.38,0.89,0.25,878,0.5,312,2.5,0.0000,0.0000 +2012,3,30,7,30,11.8,0.55,0.063,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.291,27.36,140.97,0.89,0.25,878,0.5,315,2.5,0.0000,0.0000 +2012,3,30,8,30,11,0.5,0.062,0.62,0,0,0,0,1,-5.7,0,0,0,0,0.293,30.64,135.78,0.89,0.25,878,0.5,316,2.6,0.0000,0.0000 +2012,3,30,9,30,10.200000000000001,0.45,0.062,0.62,0,0,0,0,0,-5,0,0,0,0,0.295,33.96,127.23,0.9,0.25,878,0.5,315,2.6,0.0000,0.0000 +2012,3,30,10,30,9.5,0.41000000000000003,0.062,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.297,37.480000000000004,116.71000000000001,0.91,0.25,879,0.6000000000000001,314,2.7,0.0000,0.0000 +2012,3,30,11,30,9.1,0.38,0.061,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.298,41.38,105.10000000000001,0.91,0.25,879,0.6000000000000001,312,2.9000000000000004,0.0000,0.0000 +2012,3,30,12,30,9.8,0.37,0.061,0.62,0,0,0,0,1,-1.9000000000000001,0,0,0,0,0.299,43.96,92.94,0.92,0.25,880,0.6000000000000001,309,3.7,0.0000,0.0000 +2012,3,30,13,30,12.4,0.38,0.061,0.62,45,527,133,0,0,-0.1,45,527,0,133,0.3,42.13,80.46000000000001,0.92,0.25,881,0.7000000000000001,308,4.3,0.0000,0.0000 +2012,3,30,14,30,16.5,0.41000000000000003,0.063,0.62,71,778,361,0,0,1.6,71,778,0,361,0.3,36.71,68.17,0.92,0.25,881,0.8,311,4.2,18.7316,14.5319 +2012,3,30,15,30,20.900000000000002,0.43,0.067,0.62,89,886,582,0,1,3.2,89,886,0,582,0.301,31.07,56.22,0.92,0.25,881,0.8,316,4.4,33.0890,25.8882 +2012,3,30,16,30,24.200000000000003,0.44,0.073,0.62,102,935,762,0,0,1.4000000000000001,102,935,0,762,0.302,22.45,45.160000000000004,0.92,0.25,881,0.9,317,4.4,45.5062,35.7255 +2012,3,30,17,30,26.3,0.42,0.081,0.62,114,959,890,0,0,-0.5,114,959,0,890,0.302,17.22,36,0.92,0.25,881,0.9,319,4.2,54.4540,42.8167 +2012,3,30,18,30,27.700000000000003,0.27,0.08700000000000001,0.62,123,964,953,0,0,-2,123,964,0,953,0.301,14.24,30.63,0.92,0.25,880,0.9,322,3.9000000000000004,59.4538,46.7767 +2012,3,30,19,30,28.6,0.25,0.08700000000000001,0.62,123,967,951,0,0,-3.3000000000000003,123,967,0,951,0.3,12.25,31.12,0.92,0.25,880,0.8,322,3.4000000000000004,58.9880,46.4081 +2012,3,30,20,30,28.900000000000002,0.25,0.08600000000000001,0.62,119,951,876,0,0,-4.6000000000000005,119,951,0,876,0.3,10.91,37.230000000000004,0.93,0.25,879,0.8,320,3,53.6102,42.1468 +2012,3,30,21,30,28.8,0.22,0.089,0.62,113,913,739,0,0,-5.9,113,913,0,739,0.3,10,46.78,0.93,0.25,879,0.7000000000000001,316,2.6,43.8346,34.4014 +2012,3,30,22,30,28.1,0.24,0.08700000000000001,0.62,99,845,547,0,0,-6.9,99,845,0,547,0.299,9.6,58.02,0.93,0.25,879,0.7000000000000001,314,2.2,30.8533,24.1203 +2012,3,30,23,30,26.1,0.27,0.08700000000000001,0.62,79,709,321,0,0,-6.6000000000000005,79,709,0,321,0.297,11.03,70.04,0.93,0.25,879,0.7000000000000001,328,1.3,16.6592,12.8975 +2012,3,31,0,30,23.400000000000002,0.3,0.08600000000000001,0.62,45,391,97,0,0,-1.6,45,391,0,97,0.295,18.94,82.33,0.93,0.25,879,0.7000000000000001,205,0.8,0.0000,0.0000 +2012,3,31,1,30,21.3,0.31,0.083,0.62,0,0,0,0,1,-3.4000000000000004,0,0,0,0,0.292,18.85,94.78,0.93,0.25,879,0.7000000000000001,86,1,0.0000,0.0000 +2012,3,31,2,30,19.400000000000002,0.33,0.077,0.62,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.289,22.06,106.86,0.92,0.25,880,0.7000000000000001,107,1.2000000000000002,0.0000,0.0000 +2012,3,31,3,30,17.5,0.34,0.073,0.62,0,0,0,0,7,-2.1,0,0,0,0,0.28700000000000003,26.19,118.29,0.92,0.25,880,0.7000000000000001,107,1.3,0.0000,0.0000 +2012,3,31,4,30,16,0.35000000000000003,0.069,0.62,0,0,0,0,1,-1.7000000000000002,0,0,0,0,0.28700000000000003,29.830000000000002,128.51,0.92,0.25,881,0.7000000000000001,106,1.3,0.0000,0.0000 +2012,3,31,5,30,14.9,0.38,0.066,0.62,0,0,0,0,1,-1.2000000000000002,0,0,0,0,0.28700000000000003,33.06,136.57,0.92,0.25,881,0.7000000000000001,112,1.2000000000000002,0.0000,0.0000 +2012,3,31,6,30,14,0.41000000000000003,0.064,0.62,0,0,0,0,8,-0.9,0,0,0,0,0.28700000000000003,35.82,141.01,0.92,0.25,881,0.7000000000000001,122,1.1,0.0000,0.0000 +2012,3,31,7,30,13.200000000000001,0.43,0.061,0.62,0,0,0,0,7,-0.8,0,0,0,0,0.28700000000000003,37.93,140.57,0.92,0.25,881,0.8,138,1,0.0000,0.0000 +2012,3,31,8,30,12.3,0.45,0.057,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.28600000000000003,40.2,135.4,0.91,0.25,881,0.8,212,0.9,0.0000,0.0000 +2012,3,31,9,30,11.200000000000001,0.47000000000000003,0.054,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.28600000000000003,42.19,126.88000000000001,0.91,0.25,881,0.8,288,1.1,0.0000,0.0000 +2012,3,31,10,30,10.100000000000001,0.49,0.052000000000000005,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.28500000000000003,43.480000000000004,116.39,0.91,0.25,881,0.9,303,1.4000000000000001,0.0000,0.0000 +2012,3,31,11,30,9.5,0.52,0.051000000000000004,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.28500000000000003,43.64,104.81,0.91,0.25,881,0.9,309,1.4000000000000001,0.0000,0.0000 +2012,3,31,12,30,11.100000000000001,0.55,0.051000000000000004,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.28500000000000003,38.42,92.66,0.91,0.25,881,1,314,1.6,0.0000,0.0000 +2012,3,31,13,30,14.9,0.59,0.052000000000000005,0.62,43,555,137,0,1,-1.5,43,555,0,137,0.28400000000000003,32.34,80.19,0.91,0.25,882,1,316,2.1,0.0000,0.0000 +2012,3,31,14,30,19.3,0.62,0.051000000000000004,0.62,65,799,366,0,1,-2.1,65,799,0,366,0.28400000000000003,23.51,67.89,0.91,0.25,882,1,307,2,18.7777,14.5723 +2012,3,31,15,30,24.400000000000002,0.63,0.051000000000000004,0.62,79,904,586,0,1,-1.5,79,904,0,586,0.28300000000000003,17.94,55.92,0.91,0.25,882,1,278,1.8,32.7442,25.6218 +2012,3,31,16,30,28.5,0.63,0.052000000000000005,0.62,89,959,769,0,1,-3.8000000000000003,89,959,0,769,0.28200000000000003,11.870000000000001,44.83,0.91,0.25,881,1,248,2.4000000000000004,44.7290,35.1179 +2012,3,31,17,30,30.3,0.63,0.054,0.62,97,986,898,0,0,-4.4,97,986,0,898,0.281,10.24,35.63,0.92,0.25,881,1,236,3.1,53.4147,42.0015 +2012,3,31,18,30,31.400000000000002,0.66,0.062,0.62,104,992,961,0,0,-4.800000000000001,104,992,0,961,0.28,9.34,30.240000000000002,0.92,0.25,880,1,232,3.9000000000000004,57.7329,45.4244 +2012,3,31,19,30,32.1,0.62,0.061,0.62,103,992,955,0,0,-5.2,103,992,0,955,0.28,8.69,30.76,0.92,0.25,879,1,233,4.5,57.5679,45.2925 +2012,3,31,20,30,32.2,0.59,0.061,0.62,100,976,880,0,0,-5.6000000000000005,100,976,0,880,0.279,8.43,36.95,0.92,0.25,878,1,234,4.9,52.4442,41.2317 +2012,3,31,21,30,31.900000000000002,0.6900000000000001,0.074,0.62,99,929,738,0,0,-5.800000000000001,99,929,0,738,0.279,8.43,46.56,0.92,0.25,878,1,236,5.1000000000000005,43.1644,33.8772 +2012,3,31,22,30,30.900000000000002,0.65,0.07200000000000001,0.62,88,865,548,0,0,-6,88,865,0,548,0.279,8.790000000000001,57.84,0.93,0.25,877,1,237,4.7,30.4929,23.8406 +2012,3,31,23,30,27.8,0.61,0.07,0.62,70,741,325,0,0,-5.7,70,741,0,325,0.279,10.73,69.88,0.93,0.25,877,1,235,3.2,16.4273,12.7206 +2012,4,1,0,30,23.3,0.66,0.065,0.63,40,458,102,0,0,-1.8,40,458,0,102,0.279,18.76,82.18,0.93,0.25,878,1,229,1.9000000000000001,0.0000,0.0000 +2012,4,1,1,30,20.700000000000003,0.62,0.061,0.63,0,0,0,0,1,-1.7000000000000002,0,0,0,0,0.279,22.16,94.62,0.93,0.25,878,1,221,1.9000000000000001,0.0000,0.0000 +2012,4,1,2,30,19.6,0.6,0.057,0.63,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.279,22.68,106.68,0.93,0.25,878,0.9,212,2.1,0.0000,0.0000 +2012,4,1,3,30,18.8,0.58,0.054,0.63,0,0,0,0,0,-3,0,0,0,0,0.28,22.580000000000002,118.08,0.93,0.25,878,0.9,208,2.4000000000000004,0.0000,0.0000 +2012,4,1,4,30,17.900000000000002,0.55,0.051000000000000004,0.63,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.28,22.43,128.26,0.92,0.25,878,0.9,211,2.9000000000000004,0.0000,0.0000 +2012,4,1,5,30,16.8,0.53,0.049,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.28,22.72,136.25,0.92,0.25,877,0.9,221,3.1,0.0000,0.0000 +2012,4,1,6,30,15.700000000000001,0.52,0.046,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.281,23.55,140.64000000000001,0.92,0.25,877,0.9,233,3.2,0.0000,0.0000 +2012,4,1,7,30,14.9,0.54,0.044,0.63,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.281,24.34,140.18,0.91,0.25,877,0.9,245,3.2,0.0000,0.0000 +2012,4,1,8,30,14.200000000000001,0.56,0.043000000000000003,0.63,0,0,0,0,0,-5.5,0,0,0,0,0.281,25.13,135.03,0.91,0.25,876,0.9,253,3.1,0.0000,0.0000 +2012,4,1,9,30,13.5,0.58,0.044,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.281,26.01,126.54,0.91,0.25,876,0.9,257,3,0.0000,0.0000 +2012,4,1,10,30,12.9,0.59,0.044,0.63,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.28200000000000003,26.71,116.08,0.91,0.25,876,0.9,261,3,0.0000,0.0000 +2012,4,1,11,30,12.4,0.61,0.044,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.28200000000000003,27.38,104.52,0.91,0.25,876,0.9,266,3,0.0000,0.0000 +2012,4,1,12,30,13.4,0.65,0.044,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.28200000000000003,25.990000000000002,92.38,0.91,0.25,876,0.8,273,3.5,0.0000,0.0000 +2012,4,1,13,30,16.400000000000002,0.6900000000000001,0.044,0.63,42,596,146,0,1,-5.6000000000000005,42,596,0,146,0.281,21.69,79.91,0.91,0.25,877,0.8,277,4,0.0000,0.0000 +2012,4,1,14,30,20.900000000000002,0.73,0.046,0.63,64,828,379,0,0,-5.2,64,828,0,379,0.281,16.85,67.61,0.91,0.25,877,0.7000000000000001,283,3.9000000000000004,19.0825,14.8133 +2012,4,1,15,30,25.400000000000002,0.73,0.047,0.63,78,928,601,0,0,-6.6000000000000005,78,928,0,601,0.28,11.58,55.620000000000005,0.91,0.25,877,0.7000000000000001,284,4.3,33.0175,25.8389 +2012,4,1,16,30,28.1,0.72,0.049,0.63,88,985,790,0,0,-9.5,88,985,0,790,0.279,7.86,44.5,0.91,0.25,876,0.6000000000000001,268,4.9,45.1836,35.4772 +2012,4,1,17,30,29.6,0.6900000000000001,0.05,0.63,94,1012,920,0,0,-9.9,94,1012,0,920,0.278,6.99,35.27,0.91,0.25,876,0.6000000000000001,250,5.4,53.9336,42.4116 +2012,4,1,18,30,30.6,0.59,0.047,0.63,96,1026,986,0,0,-10,96,1026,0,986,0.277,6.55,29.84,0.91,0.25,875,0.6000000000000001,239,6,58.2520,45.8346 +2012,4,1,19,30,31.1,0.59,0.048,0.63,96,1024,979,0,0,-10.100000000000001,96,1024,0,979,0.276,6.3100000000000005,30.41,0.91,0.25,874,0.6000000000000001,231,6.4,57.8424,45.5101 +2012,4,1,20,30,31.3,0.61,0.048,0.63,93,1016,908,0,0,-10.4,93,1016,0,908,0.276,6.08,36.67,0.91,0.25,873,0.5,226,6.7,52.7141,41.4454 +2012,4,1,21,30,31,0.59,0.047,0.63,86,986,767,0,0,-10.9,86,986,0,767,0.277,5.93,46.34,0.91,0.25,872,0.5,223,6.800000000000001,43.1360,33.8566 +2012,4,1,22,30,30.1,0.58,0.046,0.63,76,928,573,0,0,-11.600000000000001,76,928,0,573,0.277,5.91,57.660000000000004,0.91,0.25,871,0.5,221,6.6000000000000005,30.5779,23.9091 +2012,4,1,23,30,27.8,0.53,0.046,0.63,62,813,344,0,0,-12.4,62,813,0,344,0.278,6.34,69.72,0.91,0.25,871,0.5,219,5.5,16.6558,12.9001 +2012,4,2,0,30,23.900000000000002,0.48,0.046,0.63,38,542,113,0,0,-11.8,38,542,0,113,0.279,8.38,82.03,0.91,0.25,871,0.4,216,4.2,0.0000,0.0000 +2012,4,2,1,30,21.1,0.46,0.047,0.63,0,0,0,0,1,-11.3,0,0,0,0,0.28,10.33,94.46000000000001,0.91,0.25,871,0.4,213,4.1000000000000005,0.0000,0.0000 +2012,4,2,2,30,20,0.49,0.048,0.63,0,0,0,0,0,-12.3,0,0,0,0,0.28200000000000003,10.27,106.5,0.91,0.25,871,0.4,214,4.6000000000000005,0.0000,0.0000 +2012,4,2,3,30,18.7,0.52,0.049,0.63,0,0,0,0,0,-12.4,0,0,0,0,0.28400000000000003,11.01,117.87,0.91,0.25,871,0.4,219,4.5,0.0000,0.0000 +2012,4,2,4,30,17.2,0.53,0.051000000000000004,0.63,0,0,0,0,0,-12,0,0,0,0,0.28600000000000003,12.5,128,0.91,0.25,871,0.5,224,4.2,0.0000,0.0000 +2012,4,2,5,30,15.9,0.54,0.054,0.63,0,0,0,0,1,-11.100000000000001,0,0,0,0,0.289,14.530000000000001,135.94,0.92,0.25,871,0.5,229,3.8000000000000003,0.0000,0.0000 +2012,4,2,6,30,14.9,0.58,0.056,0.63,0,0,0,0,0,-10.3,0,0,0,0,0.291,16.63,140.27,0.91,0.25,871,0.5,233,3.6,0.0000,0.0000 +2012,4,2,7,30,13.8,0.64,0.058,0.63,0,0,0,0,1,-9.3,0,0,0,0,0.292,19.25,139.79,0.91,0.25,871,0.6000000000000001,236,3.3000000000000003,0.0000,0.0000 +2012,4,2,8,30,12.700000000000001,0.65,0.059000000000000004,0.63,0,0,0,0,1,-8.3,0,0,0,0,0.292,22.27,134.65,0.91,0.25,871,0.6000000000000001,243,3,0.0000,0.0000 +2012,4,2,9,30,11.600000000000001,0.65,0.059000000000000004,0.63,0,0,0,0,1,-7.300000000000001,0,0,0,0,0.291,26.03,126.2,0.91,0.25,871,0.6000000000000001,254,2.6,0.0000,0.0000 +2012,4,2,10,30,10.5,0.66,0.058,0.63,0,0,0,0,1,-5.9,0,0,0,0,0.29,30.990000000000002,115.77,0.91,0.25,871,0.6000000000000001,264,2,0.0000,0.0000 +2012,4,2,11,30,9.600000000000001,0.65,0.058,0.63,0,0,0,0,1,-4.9,0,0,0,0,0.289,35.52,104.23,0.91,0.25,871,0.6000000000000001,263,1.6,0.0000,0.0000 +2012,4,2,12,30,10.9,0.66,0.06,0.63,0,0,0,0,1,-4.5,0,0,0,0,0.28700000000000003,33.660000000000004,92.10000000000001,0.91,0.25,872,0.5,248,2,0.0000,0.0000 +2012,4,2,13,30,14.700000000000001,0.65,0.061,0.63,47,582,151,7,3,-4.3,102,25,7,106,0.28600000000000003,26.67,79.64,0.91,0.25,872,0.5,230,3.3000000000000003,6.9606,5.3049 +2012,4,2,14,30,18.8,0.64,0.061,0.63,71,819,386,0,0,-4.800000000000001,71,819,0,386,0.28500000000000003,19.79,67.33,0.91,0.25,872,0.5,219,4.9,19.8063,15.3796 +2012,4,2,15,30,21.700000000000003,0.63,0.059000000000000004,0.63,84,926,611,0,0,-6.5,84,926,0,611,0.28400000000000003,14.55,55.32,0.91,0.25,871,0.5,213,5.9,33.9114,26.5417 +2012,4,2,16,30,23,0.62,0.058,0.63,94,981,797,0,0,-8.1,94,981,0,797,0.28500000000000003,11.85,44.18,0.91,0.25,871,0.5,207,6.300000000000001,46.4617,36.4833 +2012,4,2,17,30,23.700000000000003,0.61,0.057,0.63,99,1011,928,0,0,-9.700000000000001,99,1011,0,928,0.28700000000000003,10.01,34.9,0.91,0.25,870,0.5,202,6.7,55.2930,43.4825 +2012,4,2,18,30,23.900000000000002,0.71,0.062,0.63,104,1020,992,0,0,-11.200000000000001,104,1020,0,992,0.292,8.78,29.45,0.91,0.25,870,0.5,201,7.1000000000000005,59.8031,47.0569 +2012,4,2,19,30,23.5,0.67,0.063,0.63,105,1025,992,0,0,-12.4,105,1025,0,992,0.3,8.21,30.05,0.91,0.25,870,0.4,203,7.2,59.3279,46.6804 +2012,4,2,20,30,22.8,0.63,0.063,0.63,101,1001,907,0,0,-13,101,1001,0,907,0.308,8.16,36.4,0.91,0.25,870,0.5,207,7.2,54.4223,42.7901 +2012,4,2,21,30,21.8,0.6,0.059000000000000004,0.63,93,971,765,0,4,-13.100000000000001,184,0,0,184,0.315,8.61,46.13,0.91,0.25,870,0.5,210,7,44.8619,35.2130 +2012,4,2,22,30,20.5,0.63,0.053,0.63,79,918,573,0,0,-12.9,79,918,0,573,0.32,9.43,57.480000000000004,0.91,0.25,871,0.5,214,6.7,32.0032,25.0257 +2012,4,2,23,30,18.7,0.7000000000000001,0.046,0.63,61,816,346,0,1,-12.600000000000001,61,816,0,346,0.323,10.790000000000001,69.56,0.91,0.25,872,0.5,221,5.9,17.6547,13.6764 +2012,4,3,0,30,16,0.75,0.04,0.63,35,563,115,0,0,-11.700000000000001,35,563,0,115,0.323,13.780000000000001,81.88,0.9,0.25,872,0.5,233,4.3,0.0000,0.0000 +2012,4,3,1,30,13.5,0.75,0.035,0.63,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.32,19.17,94.3,0.91,0.25,873,0.6000000000000001,248,3.1,0.0000,0.0000 +2012,4,3,2,30,12,0.75,0.034,0.63,0,0,0,0,1,-8.1,0,0,0,0,0.316,23.82,106.32000000000001,0.91,0.25,874,0.6000000000000001,264,2.8000000000000003,0.0000,0.0000 +2012,4,3,3,30,10.700000000000001,0.79,0.036000000000000004,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.313,28.79,117.66,0.91,0.25,875,0.6000000000000001,279,2.5,0.0000,0.0000 +2012,4,3,4,30,9.5,0.84,0.039,0.63,0,0,0,0,0,-6,0,0,0,0,0.311,32.97,127.75,0.91,0.25,875,0.6000000000000001,289,2.4000000000000004,0.0000,0.0000 +2012,4,3,5,30,8.6,0.87,0.042,0.63,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.31,35.64,135.62,0.92,0.25,876,0.7000000000000001,295,2.3000000000000003,0.0000,0.0000 +2012,4,3,6,30,7.7,0.88,0.045,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.31,38.34,139.9,0.92,0.25,876,0.7000000000000001,299,2.2,0.0000,0.0000 +2012,4,3,7,30,6.7,0.89,0.049,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.31,42.54,139.4,0.92,0.25,876,0.8,301,1.9000000000000001,0.0000,0.0000 +2012,4,3,8,30,5.800000000000001,0.91,0.053,0.63,0,0,0,0,4,-4.2,0,0,0,0,0.309,48.64,134.28,0.92,0.25,877,0.8,305,1.5,0.0000,0.0000 +2012,4,3,9,30,5,0.92,0.057,0.63,0,0,0,0,8,-3,0,0,0,0,0.308,56.31,125.86,0.92,0.25,877,0.8,310,1.2000000000000002,0.0000,0.0000 +2012,4,3,10,30,4.4,0.93,0.058,0.63,0,0,0,0,1,-1.9000000000000001,0,0,0,0,0.31,63.53,115.46000000000001,0.92,0.25,877,0.8,310,1,0.0000,0.0000 +2012,4,3,11,30,4,0.9400000000000001,0.06,0.63,0,0,0,0,1,-1.2000000000000002,0,0,0,0,0.313,68.82000000000001,103.94,0.92,0.25,878,0.7000000000000001,301,0.9,0.0000,0.0000 +2012,4,3,12,30,4.800000000000001,0.9500000000000001,0.061,0.63,0,0,0,0,1,-0.7000000000000001,0,0,0,0,0.318,67.37,91.82000000000001,0.92,0.25,879,0.7000000000000001,290,1.4000000000000001,0.0000,0.0000 +2012,4,3,13,30,7.4,0.9500000000000001,0.063,0.63,46,580,153,0,0,-0.2,46,580,0,153,0.323,58.36,79.37,0.92,0.25,879,0.7000000000000001,276,1.9000000000000001,5.0523,3.8517 +2012,4,3,14,30,10.8,0.97,0.064,0.63,70,807,385,0,1,-0.1,70,807,0,385,0.328,46.84,67.05,0.92,0.25,880,0.7000000000000001,260,2.3000000000000003,20.2186,15.7042 +2012,4,3,15,30,13.8,0.98,0.063,0.63,84,911,606,0,1,-2.4000000000000004,84,911,0,606,0.332,32.65,55.03,0.92,0.25,880,0.7000000000000001,257,2.5,34.5247,27.0250 +2012,4,3,16,30,15.600000000000001,0.99,0.065,0.63,95,958,786,7,3,-3.9000000000000004,425,285,7,630,0.334,25.89,43.85,0.92,0.25,880,0.8,263,2.5,46.9160,36.8425 +2012,4,3,17,30,17,1.01,0.069,0.63,103,980,910,0,4,-4.4,280,0,0,280,0.333,22.75,34.54,0.93,0.25,880,0.9,270,2.5,55.8127,43.8932 +2012,4,3,18,30,17.900000000000002,1.01,0.07200000000000001,0.63,108,990,973,0,1,-4.6000000000000005,108,990,0,973,0.328,21.27,29.060000000000002,0.93,0.25,880,0.9,278,2.6,60.2014,47.3720 +2012,4,3,19,30,18.2,1.02,0.077,0.63,110,980,962,0,3,-4.5,497,92,0,577,0.325,21.01,29.7,0.93,0.25,880,1,288,3.1,60.1483,47.3275 +2012,4,3,20,30,17.8,1.04,0.079,0.63,108,959,882,0,1,-4.3,108,959,0,882,0.322,21.92,36.12,0.9400000000000001,0.25,880,1.1,300,3.9000000000000004,54.3919,42.7677 +2012,4,3,21,30,17,1.08,0.081,0.63,101,922,743,7,2,-3.9000000000000004,352,435,7,655,0.32,23.72,45.92,0.9400000000000001,0.25,880,1.1,312,4.7,10.7692,8.4533 +2012,4,3,22,30,15.8,1.12,0.083,0.63,90,856,552,0,3,-3.4000000000000004,326,167,0,416,0.318,26.55,57.31,0.9400000000000001,0.25,881,1.1,323,5.2,32.0333,25.0514 +2012,4,3,23,30,14.100000000000001,1.1500000000000001,0.084,0.63,73,732,330,0,4,-2.9000000000000004,202,35,0,214,0.317,30.67,69.41,0.9400000000000001,0.25,881,1.1,332,5.2,17.7825,13.7781 +2012,4,4,0,30,12.200000000000001,1.17,0.084,0.63,42,453,108,0,4,-2.5,13,0,0,13,0.317,35.980000000000004,81.72,0.9400000000000001,0.25,882,1.1,337,4.800000000000001,0.0000,0.0000 +2012,4,4,1,30,10.700000000000001,1.16,0.083,0.63,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.318,41.33,94.14,0.9400000000000001,0.25,883,1.1,343,4,0.0000,0.0000 +2012,4,4,2,30,9.8,1.1500000000000001,0.079,0.63,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.318,45.47,106.14,0.9400000000000001,0.25,883,1.1,350,3.4000000000000004,0.0000,0.0000 +2012,4,4,3,30,9,1.1500000000000001,0.074,0.63,0,0,0,0,0,-1,0,0,0,0,0.319,49.620000000000005,117.45,0.9400000000000001,0.25,884,1.1,354,2.9000000000000004,0.0000,0.0000 +2012,4,4,4,30,8.200000000000001,1.1300000000000001,0.07200000000000001,0.63,0,0,0,0,1,-0.5,0,0,0,0,0.32,54.1,127.49000000000001,0.9400000000000001,0.25,884,1.1,356,2.4000000000000004,0.0000,0.0000 +2012,4,4,5,30,7.4,1.11,0.067,0.63,0,0,0,0,1,-0.2,0,0,0,0,0.322,58.730000000000004,135.31,0.9400000000000001,0.25,884,1,356,2,0.0000,0.0000 +2012,4,4,6,30,6.4,1.08,0.061,0.63,0,0,0,0,7,0.1,0,0,0,0,0.325,64.22,139.53,0.93,0.25,884,0.9,353,1.5,0.0000,0.0000 +2012,4,4,7,30,5.300000000000001,1.04,0.057,0.63,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.327,69.97,139.01,0.93,0.25,883,0.9,343,1.1,0.0000,0.0000 +2012,4,4,8,30,4.5,1,0.054,0.63,0,0,0,0,7,0.2,0,0,0,0,0.325,73.88,133.91,0.92,0.25,883,0.8,329,1,0.0000,0.0000 +2012,4,4,9,30,3.8000000000000003,0.98,0.053,0.63,0,0,0,0,4,0,0,0,0,0,0.32,76.39,125.52,0.92,0.25,882,0.8,314,1.1,0.0000,0.0000 +2012,4,4,10,30,3.5,0.99,0.056,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.315,75.76,115.15,0.92,0.25,882,0.8,302,1.4000000000000001,0.0000,0.0000 +2012,4,4,11,30,3.5,1.01,0.061,0.63,0,0,0,0,0,-1,0,0,0,0,0.312,72.53,103.65,0.92,0.25,882,0.9,292,1.7000000000000002,0.0000,0.0000 +2012,4,4,12,30,4.3,1.02,0.061,0.63,0,0,0,0,4,-1.6,0,0,0,0,0.311,65.33,91.54,0.92,0.25,882,0.9,280,2.5,0.0000,0.0000 +2012,4,4,13,30,6.9,1.01,0.059000000000000004,0.63,46,587,157,7,7,-2.3000000000000003,73,8,7,75,0.313,52.08,79.10000000000001,0.92,0.25,882,0.9,270,3.5,7.2929,5.5618 +2012,4,4,14,30,10.100000000000001,0.99,0.053,0.63,66,816,388,0,8,-3,195,51,0,215,0.314,39.68,66.77,0.92,0.25,883,0.9,267,4.1000000000000005,20.2121,15.7035 +2012,4,4,15,30,13,0.9500000000000001,0.049,0.63,78,915,606,0,4,-3.4000000000000004,295,26,0,310,0.311,31.87,54.74,0.92,0.25,882,1,269,4.6000000000000005,34.2885,26.8433 +2012,4,4,16,30,15.5,0.9500000000000001,0.047,0.63,85,969,788,0,4,-3.6,382,31,0,405,0.306,26.63,43.53,0.91,0.25,882,1,274,4.9,37.1198,29.1515 +2012,4,4,17,30,17.5,0.9500000000000001,0.045,0.63,90,999,916,0,4,-3.6,504,228,0,692,0.299,23.5,34.17,0.91,0.25,881,1,278,5.1000000000000005,16.8513,13.2530 +2012,4,4,18,30,19,0.9400000000000001,0.042,0.63,90,1017,983,0,0,-3.4000000000000004,90,1017,0,983,0.291,21.77,28.68,0.9,0.25,881,0.9,283,5.300000000000001,59.0815,46.4923 +2012,4,4,19,30,20,0.9400000000000001,0.043000000000000003,0.63,90,1011,972,0,0,-3.2,90,1011,0,972,0.28400000000000003,20.75,29.35,0.9,0.25,880,1,290,5.4,35.0036,27.5434 +2012,4,4,20,30,20.5,0.9500000000000001,0.045,0.63,89,995,895,0,0,-3.1,89,995,0,895,0.28,20.27,35.85,0.9,0.25,880,1,300,5.6000000000000005,52.9220,41.6135 +2012,4,4,21,30,20.5,1.04,0.056,0.63,88,949,751,0,0,-3,88,949,0,751,0.278,20.3,45.71,0.9,0.25,879,1.1,312,5.4,38.3606,30.1129 +2012,4,4,22,30,20,1.03,0.056,0.63,78,890,561,0,0,-3,78,890,0,561,0.277,21.07,57.14,0.9,0.25,879,1.1,322,4.9,23.2768,18.2049 +2012,4,4,23,30,18.5,1.03,0.057,0.63,63,774,338,0,0,-2.8000000000000003,63,774,0,338,0.276,23.47,69.25,0.9,0.25,879,1.1,334,3.4000000000000004,11.0130,8.5346 +2012,4,5,0,30,15.3,1.03,0.057,0.63,38,509,113,0,0,-1.8,38,509,0,113,0.275,30.95,81.57000000000001,0.9,0.25,879,1.1,177,1.8,0.0000,0.0000 +2012,4,5,1,30,12.8,1.03,0.057,0.63,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.275,37.96,93.98,0.9,0.25,880,1.1,23,1.2000000000000002,0.0000,0.0000 +2012,4,5,2,30,12,1.03,0.056,0.63,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.274,39.88,105.96000000000001,0.9,0.25,880,1.1,43,1.1,0.0000,0.0000 +2012,4,5,3,30,11.3,1.02,0.054,0.63,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.274,41.92,117.24000000000001,0.9,0.25,880,1.1,63,1.1,0.0000,0.0000 +2012,4,5,4,30,10.5,1,0.053,0.63,0,0,0,0,3,-1,0,0,0,0,0.274,44.82,127.23,0.9,0.25,880,1,84,1,0.0000,0.0000 +2012,4,5,5,30,9.5,0.98,0.052000000000000005,0.63,0,0,0,0,0,-0.8,0,0,0,0,0.274,48.49,134.99,0.91,0.25,880,1,102,1.1,0.0000,0.0000 +2012,4,5,6,30,8.700000000000001,0.96,0.052000000000000005,0.63,0,0,0,0,0,-0.8,0,0,0,0,0.274,51.480000000000004,139.16,0.91,0.25,880,1,117,1,0.0000,0.0000 +2012,4,5,7,30,8,0.9400000000000001,0.054,0.63,0,0,0,0,0,-0.8,0,0,0,0,0.274,53.96,138.62,0.91,0.25,880,1,132,1,0.0000,0.0000 +2012,4,5,8,30,7.300000000000001,0.92,0.056,0.63,0,0,0,0,1,-0.9,0,0,0,0,0.274,56.22,133.54,0.92,0.25,880,1,148,1,0.0000,0.0000 +2012,4,5,9,30,6.7,0.9,0.056,0.63,0,0,0,0,0,-1,0,0,0,0,0.275,57.97,125.18,0.92,0.25,880,0.9,165,1,0.0000,0.0000 +2012,4,5,10,30,6.2,0.88,0.055,0.63,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.276,59.21,114.84,0.91,0.25,880,0.9,180,1.1,0.0000,0.0000 +2012,4,5,11,30,5.800000000000001,0.87,0.056,0.63,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.276,59.93,103.36,0.91,0.25,881,0.9,190,1,0.0000,0.0000 +2012,4,5,12,30,7,0.85,0.058,0.63,0,0,0,0,0,-1.6,0,0,0,0,0.277,54.32,91.27,0.91,0.25,881,0.8,193,1.1,0.0000,0.0000 +2012,4,5,13,30,10,0.85,0.06,0.63,47,594,162,0,0,-1.7000000000000002,47,594,0,162,0.277,44.13,78.83,0.91,0.25,882,0.8,190,1.3,3.5761,2.7283 +2012,4,5,14,30,14,0.84,0.061,0.63,70,811,394,0,0,-1.7000000000000002,70,811,0,394,0.277,33.89,66.5,0.91,0.25,882,0.8,195,1.4000000000000001,11.3127,8.7916 +2012,4,5,15,30,18.7,0.8300000000000001,0.06,0.63,84,912,614,0,0,-2.3000000000000003,84,912,0,614,0.278,23.92,54.45,0.91,0.25,882,0.8,220,1.7000000000000002,17.5638,13.7516 +2012,4,5,16,30,23.1,0.8300000000000001,0.061,0.63,94,959,793,0,0,-3.7,94,959,0,793,0.278,16.47,43.21,0.91,0.25,882,0.9,249,2.3000000000000003,23.8838,18.7580 +2012,4,5,17,30,26,0.85,0.061,0.63,100,988,921,0,1,-4.9,100,988,0,921,0.278,12.68,33.81,0.91,0.25,881,0.9,265,2.5,41.6747,32.7775 +2012,4,5,18,30,27.700000000000003,0.85,0.061,0.63,102,1000,983,0,1,-5.2,102,1000,0,983,0.278,11.19,28.29,0.91,0.25,880,0.9,268,2.2,59.7208,46.9970 +2012,4,5,19,30,28.8,0.86,0.059000000000000004,0.63,101,997,972,0,1,-5.300000000000001,101,997,0,972,0.279,10.450000000000001,29.01,0.91,0.25,880,1,266,1.9000000000000001,58.9962,46.4240 +2012,4,5,20,30,29.200000000000003,0.89,0.059000000000000004,0.63,97,982,896,7,2,-5.2,289,731,7,884,0.278,10.27,35.58,0.91,0.25,879,1,252,1.4000000000000001,53.7305,42.2507 +2012,4,5,21,30,29.1,0.93,0.062,0.63,92,946,756,0,1,-5.2,92,946,0,756,0.278,10.370000000000001,45.5,0.92,0.25,879,1,207,1.1,44.0110,34.5500 +2012,4,5,22,30,28.3,0.9500000000000001,0.064,0.63,83,884,564,0,8,-5.300000000000001,170,647,0,522,0.278,10.75,56.96,0.92,0.25,878,1,158,1.4000000000000001,31.4176,24.5737 +2012,4,5,23,30,25.700000000000003,0.9500000000000001,0.063,0.63,67,769,341,0,8,-5.2,167,379,0,302,0.278,12.59,69.10000000000001,0.93,0.25,879,1,134,1.7000000000000002,17.4188,13.5013 +2012,4,6,0,30,22,0.9400000000000001,0.062,0.63,40,500,115,0,3,-1,84,40,0,89,0.279,21.5,81.43,0.93,0.25,879,1.1,125,2.2,0.0000,0.0000 +2012,4,6,1,30,19.700000000000003,0.9400000000000001,0.064,0.63,0,0,0,0,8,-2.2,0,0,0,0,0.28,22.78,93.82000000000001,0.93,0.25,880,1.1,124,3.8000000000000003,0.0000,0.0000 +2012,4,6,2,30,18.1,0.97,0.067,0.63,0,0,0,0,1,-1.7000000000000002,0,0,0,0,0.281,26.12,105.79,0.93,0.25,881,1.1,126,5,0.0000,0.0000 +2012,4,6,3,30,16.3,1,0.07200000000000001,0.63,0,0,0,0,1,-0.30000000000000004,0,0,0,0,0.281,32.230000000000004,117.03,0.92,0.25,881,1.1,128,5.4,0.0000,0.0000 +2012,4,6,4,30,14.600000000000001,1,0.079,0.63,0,0,0,0,1,0.8,0,0,0,0,0.281,39.050000000000004,126.98,0.92,0.25,882,1.1,128,5.1000000000000005,0.0000,0.0000 +2012,4,6,5,30,13.100000000000001,1,0.082,0.63,0,0,0,0,1,1.7000000000000002,0,0,0,0,0.279,45.88,134.68,0.92,0.25,882,1,128,4.5,0.0000,0.0000 +2012,4,6,6,30,11.9,1.01,0.081,0.63,0,0,0,0,0,2.5,0,0,0,0,0.277,52.49,138.8,0.92,0.25,882,1,129,4.2,0.0000,0.0000 +2012,4,6,7,30,11,1.03,0.081,0.63,0,0,0,0,0,3.2,0,0,0,0,0.275,58.74,138.24,0.92,0.25,882,1.1,132,4.1000000000000005,0.0000,0.0000 +2012,4,6,8,30,10.200000000000001,1.06,0.083,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.274,64.98,133.17000000000002,0.92,0.25,882,1.1,133,3.8000000000000003,0.0000,0.0000 +2012,4,6,9,30,9.4,1.08,0.08700000000000001,0.63,0,0,0,0,0,4.5,0,0,0,0,0.272,71.64,124.85000000000001,0.92,0.25,882,1.1,135,3.5,0.0000,0.0000 +2012,4,6,10,30,8.6,1.06,0.089,0.63,0,0,0,0,0,5.2,0,0,0,0,0.272,79.06,114.53,0.92,0.25,883,1.1,139,3.2,0.0000,0.0000 +2012,4,6,11,30,7.9,1.05,0.091,0.63,0,0,0,0,0,5.800000000000001,0,0,0,0,0.271,86.32000000000001,103.08,0.92,0.25,883,1.1,142,3.1,0.0000,0.0000 +2012,4,6,12,30,8.5,1.06,0.097,0.63,0,0,0,0,0,6.2,0,0,0,0,0.27,85.69,91,0.93,0.25,883,1.2000000000000002,142,3.5,0.0000,0.0000 +2012,4,6,13,30,11,1.1,0.106,0.63,56,508,157,0,0,6.7,56,508,0,157,0.271,74.99,78.56,0.93,0.25,883,1.3,144,4.5,7.7288,5.8989 +2012,4,6,14,30,14.5,1.1300000000000001,0.108,0.63,86,735,382,7,3,7.300000000000001,199,14,7,205,0.271,62.07,66.22,0.93,0.25,883,1.3,151,5.2,20.7757,16.1499 +2012,4,6,15,30,18.3,1.1500000000000001,0.10300000000000001,0.63,102,850,599,0,1,7.800000000000001,102,850,0,599,0.272,50.29,54.160000000000004,0.93,0.25,883,1.3,160,5.6000000000000005,34.8335,27.2760 +2012,4,6,16,30,21.900000000000002,1.17,0.098,0.63,110,913,779,0,0,8.3,110,913,0,779,0.273,41.61,42.9,0.92,0.25,883,1.3,171,5.6000000000000005,46.8059,36.7630 +2012,4,6,17,30,25.1,1.18,0.093,0.63,115,952,909,0,0,7.5,115,952,0,909,0.273,32.62,33.46,0.92,0.25,882,1.2000000000000002,181,5.4,55.5017,43.6543 +2012,4,6,18,30,27.5,1.12,0.077,0.63,110,978,974,0,0,5.1000000000000005,110,978,0,974,0.272,23.990000000000002,27.91,0.92,0.25,881,1.2000000000000002,188,5,59.7530,47.0240 +2012,4,6,19,30,29.1,1.11,0.075,0.63,108,981,970,0,0,2.3000000000000003,108,981,0,970,0.272,17.94,28.67,0.92,0.25,880,1.1,193,4.9,59.0250,46.4481 +2012,4,6,20,30,29.900000000000002,1.07,0.074,0.63,105,970,896,0,0,-0.6000000000000001,105,970,0,896,0.271,13.85,35.32,0.92,0.25,880,1,198,5,53.0979,41.7547 +2012,4,6,21,30,30,1.03,0.07200000000000001,0.63,97,942,759,0,0,-3.9000000000000004,97,942,0,759,0.27,10.84,45.300000000000004,0.91,0.25,879,0.9,202,5,44.3320,34.8036 +2012,4,6,22,30,29.400000000000002,0.99,0.069,0.63,85,893,574,0,0,-7.300000000000001,85,893,0,574,0.27,8.68,56.800000000000004,0.91,0.25,879,0.7000000000000001,205,4.7,29.2603,22.8882 +2012,4,6,23,30,26.5,0.9400000000000001,0.067,0.63,69,786,351,0,0,-9.9,69,786,0,351,0.27,8.35,68.95,0.91,0.25,879,0.6000000000000001,203,3.2,15.5840,12.0812 +2012,4,7,0,30,21.8,0.89,0.065,0.63,42,521,121,0,8,-6.6000000000000005,50,379,0,108,0.271,14.38,81.28,0.91,0.24,879,0.6000000000000001,198,2,0.0000,0.0000 +2012,4,7,1,30,18.900000000000002,0.86,0.064,0.63,0,0,0,0,7,-6.7,0,0,0,0,0.27,17.02,93.67,0.91,0.24,880,0.6000000000000001,200,2.1,0.0000,0.0000 +2012,4,7,2,30,17.8,0.85,0.067,0.63,0,0,0,0,7,-7.7,0,0,0,0,0.27,16.89,105.61,0.91,0.24,880,0.6000000000000001,209,2.4000000000000004,0.0000,0.0000 +2012,4,7,3,30,16.8,0.86,0.074,0.63,0,0,0,0,1,-8.4,0,0,0,0,0.269,16.98,116.82000000000001,0.92,0.24,881,0.6000000000000001,218,2.8000000000000003,0.0000,0.0000 +2012,4,7,4,30,16,0.87,0.081,0.63,0,0,0,0,7,-8.9,0,0,0,0,0.269,17.21,126.72,0.93,0.24,881,0.6000000000000001,222,3.1,0.0000,0.0000 +2012,4,7,5,30,15.100000000000001,0.88,0.08600000000000001,0.63,0,0,0,0,4,-8.9,0,0,0,0,0.269,18.19,134.36,0.93,0.24,881,0.6000000000000001,223,3.1,0.0000,0.0000 +2012,4,7,6,30,14,0.88,0.08600000000000001,0.63,0,0,0,0,7,-8.5,0,0,0,0,0.269,20.16,138.43,0.93,0.24,882,0.7000000000000001,223,2.8000000000000003,0.0000,0.0000 +2012,4,7,7,30,12.9,0.88,0.084,0.63,0,0,0,0,8,-8,0,0,0,0,0.269,22.62,137.86,0.93,0.24,882,0.7000000000000001,223,2.5,0.0000,0.0000 +2012,4,7,8,30,11.9,0.87,0.085,0.63,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.269,25.36,132.81,0.93,0.24,883,0.7000000000000001,225,2.3000000000000003,0.0000,0.0000 +2012,4,7,9,30,11.200000000000001,0.87,0.089,0.63,0,0,0,0,4,-6.7,0,0,0,0,0.269,27.93,124.51,0.93,0.24,883,0.7000000000000001,231,2.1,0.0000,0.0000 +2012,4,7,10,30,10.5,0.85,0.09,0.63,0,0,0,0,0,-6.2,0,0,0,0,0.27,30.41,114.23,0.93,0.24,884,0.7000000000000001,243,2,0.0000,0.0000 +2012,4,7,11,30,10.200000000000001,0.84,0.09,0.63,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.27,31.330000000000002,102.79,0.93,0.24,885,0.7000000000000001,270,2.3000000000000003,0.0000,0.0000 +2012,4,7,12,30,11,0.8300000000000001,0.093,0.63,0,0,0,0,7,-6.5,0,0,0,0,0.27,28.63,90.2,0.93,0.24,886,0.7000000000000001,305,3.4000000000000004,0.0000,0.0000 +2012,4,7,13,30,13.100000000000001,0.84,0.097,0.63,58,541,167,0,7,-7.6000000000000005,112,172,0,147,0.27,22.92,78.3,0.93,0.24,887,0.7000000000000001,339,5,7.4962,5.7238 +2012,4,7,14,30,15.5,0.8300000000000001,0.095,0.63,85,771,399,0,8,-8.9,184,391,0,344,0.27,17.77,65.95,0.93,0.24,888,0.7000000000000001,183,6.5,10.8335,8.4235 +2012,4,7,15,30,17.7,0.8300000000000001,0.092,0.63,101,881,620,0,8,-9.5,209,575,0,548,0.27,14.72,53.88,0.93,0.24,889,0.7000000000000001,18,7.4,34.0267,26.6471 +2012,4,7,16,30,19.400000000000002,0.8300000000000001,0.089,0.63,110,941,803,0,8,-9.3,242,628,0,704,0.27,13.51,42.58,0.93,0.24,890,0.7000000000000001,26,7.5,46.0178,36.1461 +2012,4,7,17,30,20.900000000000002,0.84,0.08700000000000001,0.63,115,968,927,0,8,-8.4,277,671,0,840,0.271,13.22,33.1,0.93,0.24,890,0.8,31,7.1000000000000005,54.8124,43.1138 +2012,4,7,18,30,21.900000000000002,0.87,0.08700000000000001,0.63,118,981,989,0,8,-7.7,290,672,0,886,0.273,13.11,27.53,0.93,0.24,890,0.8,35,6.7,59.2366,46.6190 +2012,4,7,19,30,22.400000000000002,0.88,0.085,0.63,117,977,977,0,7,-7.5,262,644,0,829,0.276,12.94,28.330000000000002,0.9400000000000001,0.24,890,0.9,40,6.300000000000001,58.9318,46.3761 +2012,4,7,20,30,22.1,0.89,0.08600000000000001,0.63,114,960,899,0,7,-7.5,428,269,0,648,0.277,13.14,35.06,0.9400000000000001,0.24,890,0.9,45,5.9,53.8454,42.3439 +2012,4,7,21,30,21.3,0.91,0.089,0.63,107,918,755,0,7,-7.5,278,503,0,633,0.277,13.83,45.09,0.9400000000000001,0.24,890,1,49,5.7,44.5345,34.9641 +2012,4,7,22,30,20,0.9500000000000001,0.094,0.63,98,848,564,0,6,-7.300000000000001,300,155,0,385,0.277,15.14,56.63,0.9500000000000001,0.24,890,1,52,5.6000000000000005,32.2012,25.1905 +2012,4,7,23,30,18.3,0.98,0.10200000000000001,0.63,81,710,338,0,6,-7,196,57,0,217,0.277,17.240000000000002,68.79,0.9500000000000001,0.24,891,1.1,55,5.300000000000001,18.1361,14.0622 +2012,4,8,0,30,16.5,1.04,0.116,0.63,51,412,114,0,7,-6.5,65,88,0,79,0.279,20.06,81.13,0.9500000000000001,0.24,892,1.1,57,5,0.0000,0.0000 +2012,4,8,1,30,15.100000000000001,1.1,0.133,0.63,0,0,0,0,7,-6,0,0,0,0,0.28,22.91,93.51,0.96,0.24,893,1.2000000000000002,59,4.9,0.0000,0.0000 +2012,4,8,2,30,14,1.1400000000000001,0.152,0.63,0,0,0,0,7,-5.5,0,0,0,0,0.281,25.38,105.43,0.96,0.24,893,1.2000000000000002,62,4.800000000000001,0.0000,0.0000 +2012,4,8,3,30,13,1.16,0.176,0.63,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.28200000000000003,28,116.61,0.97,0.24,894,1.3,64,4.4,0.0000,0.0000 +2012,4,8,4,30,12.100000000000001,1.16,0.184,0.63,0,0,0,0,4,-4.7,0,0,0,0,0.28300000000000003,30.63,126.46000000000001,0.97,0.24,894,1.3,66,3.9000000000000004,0.0000,0.0000 +2012,4,8,5,30,11.4,1.1300000000000001,0.17500000000000002,0.63,0,0,0,0,4,-4.4,0,0,0,0,0.28500000000000003,32.910000000000004,134.05,0.96,0.24,894,1.4000000000000001,71,3.7,0.0000,0.0000 +2012,4,8,6,30,10.600000000000001,1.12,0.159,0.63,0,0,0,0,4,-4.1000000000000005,0,0,0,0,0.28600000000000003,35.51,138.07,0.9500000000000001,0.24,894,1.4000000000000001,73,3.6,0.0000,0.0000 +2012,4,8,7,30,9.700000000000001,1.08,0.122,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.28800000000000003,38.68,137.48,0.9500000000000001,0.24,894,1.4000000000000001,74,2.8000000000000003,0.0000,0.0000 +2012,4,8,8,30,8.9,1.03,0.114,0.63,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.28700000000000003,42,132.44,0.9500000000000001,0.24,894,1.5,74,2.2,0.0000,0.0000 +2012,4,8,9,30,8.700000000000001,1.02,0.11900000000000001,0.63,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.28600000000000003,44.300000000000004,124.18,0.9500000000000001,0.24,894,1.6,67,2,0.0000,0.0000 +2012,4,8,10,30,8.6,1.02,0.116,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.28600000000000003,46.68,113.92,0.9400000000000001,0.24,894,1.6,52,2,0.0000,0.0000 +2012,4,8,11,30,8.5,1.02,0.114,0.63,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.28700000000000003,48.800000000000004,102.51,0.9500000000000001,0.24,894,1.7000000000000002,40,2.1,0.0000,0.0000 +2012,4,8,12,30,8.9,1.01,0.111,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.289,48.88,89.96000000000001,0.9500000000000001,0.24,894,1.7000000000000002,36,2.3000000000000003,0.0000,0.0000 +2012,4,8,13,30,10.4,1.01,0.11,0.63,60,498,163,0,3,-0.9,11,0,0,11,0.291,45.52,78.04,0.9500000000000001,0.24,894,1.7000000000000002,38,2.3000000000000003,7.0256,5.3668 +2012,4,8,14,30,12.5,1.01,0.11,0.63,89,723,386,0,3,-0.2,123,0,0,123,0.292,41.550000000000004,65.69,0.9500000000000001,0.24,894,1.6,44,1.9000000000000001,18.2172,14.1682 +2012,4,8,15,30,14.700000000000001,1,0.108,0.63,106,833,600,0,3,0.8,214,1,0,215,0.291,38.74,53.59,0.9500000000000001,0.24,894,1.6,56,1.4000000000000001,31.1681,24.4111 +2012,4,8,16,30,17,1,0.105,0.63,116,895,778,7,3,2.4000000000000004,423,284,7,633,0.28800000000000003,37.63,42.27,0.9500000000000001,0.24,894,1.6,85,0.9,41.6226,32.6957 +2012,4,8,17,30,19.400000000000002,1.01,0.10300000000000001,0.63,122,931,905,0,0,3.9000000000000004,122,931,0,905,0.28500000000000003,35.980000000000004,32.75,0.9400000000000001,0.24,893,1.5,149,1.2000000000000002,50.6833,39.8676 +2012,4,8,18,30,21.8,0.89,0.084,0.63,115,959,969,0,0,5.1000000000000005,115,959,0,969,0.28200000000000003,33.730000000000004,27.150000000000002,0.93,0.24,892,1.5,199,2,53.9120,42.4299 +2012,4,8,19,30,23.5,0.9,0.079,0.63,112,962,961,0,0,5.300000000000001,112,962,0,961,0.28,30.810000000000002,27.990000000000002,0.93,0.24,891,1.5,209,2.5,50.3892,39.6547 +2012,4,8,20,30,24.5,0.92,0.076,0.63,106,949,885,0,0,4.7,106,949,0,885,0.279,27.78,34.800000000000004,0.93,0.24,890,1.5,210,2.7,38.9609,30.6398 +2012,4,8,21,30,24.900000000000002,0.9,0.07100000000000001,0.63,96,919,748,0,0,3.9000000000000004,96,919,0,748,0.278,25.72,44.9,0.92,0.24,889,1.5,207,2.7,37.1644,29.1792 +2012,4,8,22,30,24.700000000000003,0.92,0.069,0.63,85,863,562,0,0,3.3000000000000003,85,863,0,562,0.277,24.93,56.46,0.92,0.24,889,1.4000000000000001,201,2.7,21.6168,16.9117 +2012,4,8,23,30,23.3,0.96,0.068,0.63,68,750,342,0,0,2.9000000000000004,68,750,0,342,0.276,26.43,68.64,0.92,0.24,888,1.4000000000000001,191,2.3000000000000003,11.2279,8.7073 +2012,4,9,0,30,20,0.99,0.068,0.63,42,493,119,0,0,3.6,42,493,0,119,0.276,33.83,80.98,0.92,0.25,888,1.4000000000000001,178,1.7000000000000002,0.0000,0.0000 +2012,4,9,1,30,17.5,1.03,0.068,0.63,0,0,0,0,0,4,0,0,0,0,0.276,40.730000000000004,93.35000000000001,0.92,0.25,889,1.4000000000000001,171,1.9000000000000001,0.0000,0.0000 +2012,4,9,2,30,16.900000000000002,1.05,0.07,0.63,0,0,0,0,0,4.7,0,0,0,0,0.276,44.27,105.25,0.92,0.25,889,1.4000000000000001,171,2.6,0.0000,0.0000 +2012,4,9,3,30,16.2,1.08,0.073,0.63,0,0,0,0,0,5.4,0,0,0,0,0.275,48.75,116.4,0.92,0.25,889,1.4000000000000001,176,3.2,0.0000,0.0000 +2012,4,9,4,30,15.4,1.1,0.077,0.63,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.275,53.89,126.2,0.93,0.25,889,1.4000000000000001,182,3.4000000000000004,0.0000,0.0000 +2012,4,9,5,30,14.3,1.12,0.081,0.63,0,0,0,0,0,6.9,0,0,0,0,0.275,61.02,133.74,0.93,0.25,889,1.5,189,3.3000000000000003,0.0000,0.0000 +2012,4,9,6,30,13.4,1.16,0.088,0.63,0,0,0,0,1,7.800000000000001,0,0,0,0,0.275,68.66,137.71,0.9400000000000001,0.25,889,1.5,196,2.9000000000000004,0.0000,0.0000 +2012,4,9,7,30,12.700000000000001,1.19,0.098,0.63,0,0,0,0,7,8.700000000000001,0,0,0,0,0.274,76.60000000000001,137.1,0.9400000000000001,0.25,889,1.6,202,2.8000000000000003,0.0000,0.0000 +2012,4,9,8,30,12.100000000000001,1.22,0.109,0.63,0,0,0,0,7,9.600000000000001,0,0,0,0,0.274,84.94,132.08,0.9500000000000001,0.25,889,1.6,208,2.6,0.0000,0.0000 +2012,4,9,9,30,11.600000000000001,1.24,0.11800000000000001,0.63,0,0,0,0,7,10.5,0,0,0,0,0.274,92.92,123.85000000000001,0.9500000000000001,0.25,889,1.7000000000000002,213,2.4000000000000004,0.0000,0.0000 +2012,4,9,10,30,11.3,1.25,0.126,0.63,0,0,0,0,7,11.100000000000001,0,0,0,0,0.275,99,113.62,0.9500000000000001,0.25,889,1.7000000000000002,217,2.2,0.0000,0.0000 +2012,4,9,11,30,11.4,1.25,0.134,0.63,0,0,0,0,7,11.4,0,0,0,0,0.277,100,102.23,0.9500000000000001,0.25,889,1.8,220,2.4000000000000004,0.0000,0.0000 +2012,4,9,12,30,12.600000000000001,1.27,0.14,0.63,0,0,0,7,7,11.9,0,0,7,0,0.278,95.22,89.74,0.9500000000000001,0.25,889,1.8,222,3.3000000000000003,0.0000,0.0000 +2012,4,9,13,30,15.100000000000001,1.29,0.14100000000000001,0.63,65,469,164,0,7,12.100000000000001,110,158,0,143,0.279,82.53,77.78,0.9500000000000001,0.25,890,1.9000000000000001,223,4.3,0.5263,0.4022 +2012,4,9,14,30,18.5,1.31,0.134,0.63,95,695,384,0,8,12.4,175,401,0,342,0.28,67.8,65.42,0.9500000000000001,0.25,889,2,224,4.5,6.5267,5.0772 +2012,4,9,15,30,21.6,1.33,0.127,0.63,112,811,596,0,8,11.9,208,544,0,533,0.28,53.85,53.32,0.9500000000000001,0.25,889,2,222,4.1000000000000005,12.2439,9.5905 +2012,4,9,16,30,23.8,1.34,0.123,0.63,122,872,770,0,8,10.4,256,540,0,657,0.28,42.83,41.97,0.9500000000000001,0.25,889,2.1,215,3.4000000000000004,37.4552,29.4238 +2012,4,9,17,30,25.200000000000003,1.36,0.124,0.63,130,904,893,0,8,9.3,275,589,0,772,0.28,36.6,32.4,0.9500000000000001,0.25,888,2.1,206,3.2,54.6379,42.9799 +2012,4,9,18,30,25.900000000000002,1.4000000000000001,0.13,0.63,136,911,950,0,8,8.700000000000001,320,579,0,837,0.28,33.68,26.77,0.9500000000000001,0.25,887,2.2,199,3.4000000000000004,58.9918,46.4293 +2012,4,9,19,30,26,1.42,0.134,0.63,137,904,938,0,8,8.4,270,648,0,844,0.279,32.910000000000004,27.650000000000002,0.9500000000000001,0.25,886,2.3000000000000003,198,3.7,58.4396,45.9915 +2012,4,9,20,30,25.8,1.43,0.136,0.63,134,884,862,0,4,8.4,491,211,0,665,0.279,33.24,34.54,0.9500000000000001,0.25,886,2.3000000000000003,200,4,53.2364,41.8676 +2012,4,9,21,30,25.6,1.47,0.139,0.63,125,844,725,0,7,8.5,343,309,0,563,0.279,33.78,44.7,0.9500000000000001,0.25,885,2.3000000000000003,203,4.2,43.9407,34.5009 +2012,4,9,22,30,25,1.48,0.13,0.63,107,783,542,0,6,8.6,212,17,0,221,0.279,35.21,56.300000000000004,0.9500000000000001,0.25,884,2.3000000000000003,205,3.8000000000000003,31.5816,24.7095 +2012,4,9,23,30,23.6,1.48,0.125,0.63,85,665,329,0,6,9.200000000000001,47,0,0,47,0.28,39.93,68.49,0.9500000000000001,0.25,884,2.2,204,2.9000000000000004,17.7184,13.7431 +2012,4,10,0,30,21.700000000000003,1.48,0.123,0.63,49,407,114,0,6,10,65,5,0,66,0.281,47.26,80.83,0.9500000000000001,0.24,884,2.2,201,2.4000000000000004,0.0000,0.0000 +2012,4,10,1,30,20.200000000000003,1.47,0.123,0.63,0,0,0,0,6,9.9,0,0,0,0,0.28200000000000003,51.7,93.19,0.9500000000000001,0.24,884,2.2,197,2.5,0.0000,0.0000 +2012,4,10,2,30,19.3,1.47,0.125,0.63,0,0,0,0,7,10.100000000000001,0,0,0,0,0.28200000000000003,55.410000000000004,105.07000000000001,0.9500000000000001,0.24,885,2.2,194,2.8000000000000003,0.0000,0.0000 +2012,4,10,3,30,18.2,1.47,0.126,0.63,0,0,0,0,8,10.4,0,0,0,0,0.28200000000000003,60.32,116.18,0.9500000000000001,0.24,885,2.2,191,2.9000000000000004,0.0000,0.0000 +2012,4,10,4,30,17.1,1.47,0.127,0.63,0,0,0,0,7,10.8,0,0,0,0,0.28200000000000003,66.53,125.95,0.9500000000000001,0.24,885,2.2,188,2.8000000000000003,0.0000,0.0000 +2012,4,10,5,30,16.1,1.47,0.13,0.63,0,0,0,1,0,11.3,0,0,1,0,0.28200000000000003,73.25,133.43,0.9500000000000001,0.24,886,2.2,183,2.8000000000000003,0.0000,0.0000 +2012,4,10,6,30,15.200000000000001,1.47,0.128,0.63,0,0,0,0,0,11.8,0,0,0,0,0.28,79.96000000000001,137.35,0.9500000000000001,0.24,886,2.2,177,2.5,0.0000,0.0000 +2012,4,10,7,30,14.100000000000001,1.46,0.126,0.63,0,0,0,0,4,12.200000000000001,0,0,0,0,0.279,88.32000000000001,136.72,0.9500000000000001,0.24,886,2.2,169,2.2,0.0000,0.0000 +2012,4,10,8,30,13.3,1.44,0.126,0.63,0,0,0,0,0,12.600000000000001,0,0,0,0,0.278,95.49,131.72,0.9500000000000001,0.24,886,2.2,167,2.1,0.0000,0.0000 +2012,4,10,9,30,13,1.43,0.133,0.63,0,0,0,0,0,12.9,0,0,0,0,0.276,99.25,123.52,0.9500000000000001,0.24,886,2.1,166,2.3000000000000003,0.0000,0.0000 +2012,4,10,10,30,12.9,1.41,0.14400000000000002,0.63,0,0,0,0,0,12.9,0,0,0,0,0.275,100,113.32000000000001,0.96,0.24,886,2.1,165,2.5,0.0000,0.0000 +2012,4,10,11,30,12.9,1.4000000000000001,0.15,0.63,0,0,0,0,0,12.9,0,0,0,0,0.275,100,101.95,0.96,0.24,887,2,169,2.5,0.0000,0.0000 +2012,4,10,12,30,13.600000000000001,1.4000000000000001,0.154,0.63,0,0,0,0,0,13,0,0,0,0,0.274,95.92,89.52,0.96,0.24,887,2,183,2.8000000000000003,0.0000,0.0000 +2012,4,10,13,30,15.700000000000001,1.42,0.148,0.63,66,470,168,0,0,13.100000000000001,66,470,0,168,0.274,84.38,77.52,0.9500000000000001,0.24,887,2,202,3.1,6.8511,5.2382 +2012,4,10,14,30,19.3,1.45,0.135,0.63,95,703,390,0,0,13.4,95,703,0,390,0.274,68.5,65.16,0.9500000000000001,0.24,888,1.9000000000000001,215,2.9000000000000004,18.1846,14.1494 +2012,4,10,15,30,23,1.45,0.124,0.63,110,820,603,0,0,12.3,110,820,0,603,0.274,50.800000000000004,53.04,0.9500000000000001,0.24,888,1.9000000000000001,199,2.4000000000000004,30.3887,23.8054 +2012,4,10,16,30,25.700000000000003,1.44,0.117,0.63,119,887,782,0,0,9.8,119,887,0,782,0.274,36.68,41.660000000000004,0.9500000000000001,0.24,887,1.8,163,2.3000000000000003,38.9053,30.5646 +2012,4,10,17,30,27.200000000000003,1.43,0.115,0.63,125,920,905,7,2,8.3,303,695,7,892,0.275,30.46,32.06,0.9500000000000001,0.24,887,1.8,141,2.8000000000000003,46.6356,36.6865 +2012,4,10,18,30,28.1,1.41,0.093,0.63,118,949,968,0,0,7,118,949,0,968,0.275,26.34,26.400000000000002,0.9500000000000001,0.24,886,1.8,135,3.3000000000000003,50.9807,40.1254 +2012,4,10,19,30,28.400000000000002,1.41,0.096,0.63,119,945,959,0,0,5.9,119,945,0,959,0.274,23.98,27.32,0.9500000000000001,0.24,886,1.8,136,3.6,51.3482,40.4117 +2012,4,10,20,30,28.3,1.4000000000000001,0.092,0.63,113,932,883,0,0,5.1000000000000005,113,932,0,883,0.274,22.84,34.29,0.9500000000000001,0.24,885,1.8,138,3.8000000000000003,40.0217,31.4760 +2012,4,10,21,30,27.700000000000003,1.3900000000000001,0.083,0.63,100,902,744,0,0,4.800000000000001,100,902,0,744,0.275,23.21,44.5,0.9400000000000001,0.24,885,1.9000000000000001,143,3.9000000000000004,33.0922,25.9841 +2012,4,10,22,30,26.8,1.4000000000000001,0.075,0.63,86,849,559,0,8,4.9,162,668,0,535,0.275,24.66,56.14,0.9400000000000001,0.24,884,1.9000000000000001,146,4,12.4289,9.7251 +2012,4,10,23,30,25.200000000000003,1.41,0.07100000000000001,0.63,68,739,341,0,8,5.4,182,217,0,262,0.275,28.080000000000002,68.34,0.9400000000000001,0.24,884,2,146,3.7,2.4381,1.8914 +2012,4,11,0,30,22.5,1.41,0.073,0.63,43,490,122,0,7,7,62,136,0,84,0.276,36.730000000000004,80.69,0.9400000000000001,0.25,884,2,143,3.3000000000000003,0.0000,0.0000 +2012,4,11,1,30,20.400000000000002,1.41,0.076,0.63,0,0,0,0,7,8.3,0,0,0,0,0.277,45.59,93.03,0.9400000000000001,0.25,885,2.1,141,3.5,0.0000,0.0000 +2012,4,11,2,30,19.3,1.41,0.078,0.63,0,0,0,0,6,9,0,0,0,0,0.277,51.370000000000005,104.89,0.9400000000000001,0.25,885,2.1,143,3.8000000000000003,0.0000,0.0000 +2012,4,11,3,30,18.2,1.41,0.078,0.63,0,0,0,0,6,9.5,0,0,0,0,0.277,56.89,115.97,0.9400000000000001,0.25,886,2,147,3.7,0.0000,0.0000 +2012,4,11,4,30,17.3,1.42,0.08,0.63,0,0,0,0,8,9.600000000000001,0,0,0,0,0.277,60.76,125.69,0.9500000000000001,0.25,886,2,154,3.6,0.0000,0.0000 +2012,4,11,5,30,16.5,1.43,0.085,0.63,0,0,0,1,8,9.8,0,0,1,0,0.277,64.49,133.11,0.9500000000000001,0.25,886,2,162,3.5,0.0000,0.0000 +2012,4,11,6,30,15.600000000000001,1.43,0.09,0.63,0,0,0,0,7,10,0,0,0,0,0.276,69.16,136.99,0.9500000000000001,0.25,886,2,173,3.3000000000000003,0.0000,0.0000 +2012,4,11,7,30,14.8,1.44,0.093,0.63,0,0,0,0,7,10.3,0,0,0,0,0.276,74.22,136.35,0.9500000000000001,0.25,886,2,185,3.1,0.0000,0.0000 +2012,4,11,8,30,14,1.45,0.092,0.63,0,0,0,0,7,10.700000000000001,0,0,0,0,0.276,80.25,131.37,0.9500000000000001,0.25,886,2.1,196,2.8000000000000003,0.0000,0.0000 +2012,4,11,9,30,13.3,1.44,0.093,0.63,0,0,0,0,7,11.100000000000001,0,0,0,0,0.276,86.60000000000001,123.19,0.9500000000000001,0.25,886,2.1,203,2.4000000000000004,0.0000,0.0000 +2012,4,11,10,30,12.8,1.42,0.094,0.63,0,0,0,0,3,11.5,0,0,0,0,0.276,91.93,113.02,0.9500000000000001,0.25,886,2.1,206,1.9000000000000001,0.0000,0.0000 +2012,4,11,11,30,12.700000000000001,1.41,0.098,0.63,0,0,0,0,4,11.8,0,0,0,0,0.276,94.37,101.67,0.9500000000000001,0.25,886,2.1,205,1.6,0.0000,0.0000 +2012,4,11,12,30,13.9,1.41,0.10200000000000001,0.63,0,0,0,7,4,12,0,0,7,0,0.276,88.32000000000001,89.29,0.9500000000000001,0.25,886,2.1,197,2.2,0.0000,0.0000 +2012,4,11,13,30,16.6,1.42,0.098,0.63,57,541,177,0,7,12,55,2,0,56,0.276,74.27,77.27,0.9500000000000001,0.25,886,2.1,191,3.4000000000000004,8.0604,6.1658 +2012,4,11,14,30,20,1.43,0.09,0.63,80,752,399,0,7,11.4,203,49,0,224,0.276,57.64,64.9,0.9400000000000001,0.25,886,2.1,188,4.1000000000000005,20.7773,16.1703 +2012,4,11,15,30,23,1.44,0.09,0.63,96,849,609,0,7,10.5,291,315,0,481,0.277,45.33,52.77,0.9400000000000001,0.25,886,2.1,176,4.3,34.4207,26.9665 +2012,4,11,16,30,25.1,1.45,0.093,0.63,107,900,783,0,7,9.600000000000001,344,384,0,633,0.278,37.43,41.36,0.9400000000000001,0.25,886,2.1,163,4.5,46.3439,36.4105 +2012,4,11,17,30,26.6,1.46,0.094,0.63,114,927,903,0,7,8.700000000000001,439,271,0,669,0.278,32.36,31.720000000000002,0.9400000000000001,0.25,885,2.2,157,4.800000000000001,53.9150,42.4144 +2012,4,11,18,30,27.200000000000003,1.49,0.116,0.63,129,923,958,0,7,8,319,549,0,813,0.279,29.84,26.02,0.9500000000000001,0.25,884,2.2,157,5.1000000000000005,58.9873,46.4285 +2012,4,11,19,30,26.8,1.49,0.122,0.63,131,914,946,0,7,7.6000000000000005,428,383,0,769,0.279,29.69,26.990000000000002,0.9500000000000001,0.25,884,2.3000000000000003,161,5.2,58.3701,45.9393 +2012,4,11,20,30,25.8,1.49,0.126,0.63,129,891,867,0,8,7.6000000000000005,251,652,0,792,0.279,31.400000000000002,34.04,0.9500000000000001,0.25,883,2.4000000000000004,163,5.2,53.1659,41.8147 +2012,4,11,21,30,24.900000000000002,1.52,0.148,0.63,129,833,725,0,8,7.9,242,523,0,617,0.28,33.910000000000004,44.31,0.96,0.25,883,2.5,162,5.1000000000000005,43.7563,34.3589 +2012,4,11,22,30,23.700000000000003,1.5,0.18,0.63,125,732,535,0,7,8.5,223,515,0,512,0.281,38,55.97,0.96,0.25,883,2.6,161,5,30.1117,23.5627 +2012,4,11,23,30,22,1.44,0.242,0.63,115,537,315,0,9,9.700000000000001,169,19,0,176,0.28300000000000003,45.49,68.2,0.97,0.25,883,2.8000000000000003,160,4.5,13.6085,10.5589 +2012,4,12,0,30,20.200000000000003,1.4000000000000001,0.249,0.63,64,273,108,0,9,11.3,72,5,0,73,0.28400000000000003,56.51,80.54,0.97,0.25,883,2.7,151,4,0.0000,0.0000 +2012,4,12,1,30,19,1.4000000000000001,0.17500000000000002,0.63,0,0,0,0,9,12.4,0,0,0,0,0.28800000000000003,65.33,92.87,0.96,0.25,883,2.6,142,4.2,0.0000,0.0000 +2012,4,12,2,30,18.1,1.3900000000000001,0.139,0.63,0,0,0,0,9,13.100000000000001,0,0,0,0,0.292,72.7,104.71000000000001,0.96,0.25,883,2.6,148,4.3,0.0000,0.0000 +2012,4,12,3,30,17.400000000000002,1.41,0.149,0.63,0,0,0,0,9,13.700000000000001,0,0,0,0,0.294,78.66,115.76,0.96,0.25,883,2.6,154,4.4,0.0000,0.0000 +2012,4,12,4,30,16.8,1.44,0.171,0.63,0,0,0,0,6,14,0,0,0,0,0.296,83.39,125.43,0.96,0.25,882,2.5,154,4.7,0.0000,0.0000 +2012,4,12,5,30,16.2,1.45,0.203,0.63,0,0,0,1,1,14.3,0,0,1,0,0.299,88.54,132.8,0.97,0.25,882,2.4000000000000004,158,4.9,0.0000,0.0000 +2012,4,12,6,30,15.9,1.42,0.271,0.63,0,0,0,0,7,14.600000000000001,0,0,0,0,0.302,91.95,136.64000000000001,0.97,0.25,882,2.4000000000000004,165,5,0.0000,0.0000 +2012,4,12,7,30,15.5,1.4000000000000001,0.299,0.63,0,0,0,0,0,14.700000000000001,0,0,0,0,0.306,94.9,135.98,0.97,0.25,882,2.3000000000000003,170,5.1000000000000005,0.0000,0.0000 +2012,4,12,8,30,15.200000000000001,1.3800000000000001,0.277,0.63,0,0,0,0,0,14.5,0,0,0,0,0.308,95.65,131.01,0.97,0.25,882,2.1,176,5.1000000000000005,0.0000,0.0000 +2012,4,12,9,30,14.8,1.34,0.252,0.63,0,0,0,0,0,14.200000000000001,0,0,0,0,0.309,96.26,122.87,0.97,0.25,882,1.9000000000000001,180,4.9,0.0000,0.0000 +2012,4,12,10,30,14.5,1.32,0.202,0.63,0,0,0,0,0,13.9,0,0,0,0,0.308,96.10000000000001,112.73,0.96,0.25,881,1.7000000000000002,182,4.5,0.0000,0.0000 +2012,4,12,11,30,14.200000000000001,1.29,0.155,0.63,0,0,0,0,0,13.600000000000001,0,0,0,0,0.308,96.37,101.4,0.96,0.25,881,1.6,182,4.2,0.0000,0.0000 +2012,4,12,12,30,14.5,1.27,0.13,0.63,0,0,0,0,0,13.5,0,0,0,0,0.309,93.43,89.06,0.96,0.25,881,1.4000000000000001,182,4.4,0.0000,0.0000 +2012,4,12,13,30,16.3,1.24,0.116,0.63,63,536,183,0,1,13.5,63,536,0,183,0.309,83.51,77.01,0.9500000000000001,0.25,881,1.3,190,5.2,2.6909,2.0593 +2012,4,12,14,30,19,1.23,0.095,0.63,83,767,412,0,3,13,198,13,0,204,0.309,68.39,64.65,0.9400000000000001,0.25,881,1.3,204,5.6000000000000005,11.9567,9.3075 +2012,4,12,15,30,22,1.2,0.078,0.63,92,886,631,7,3,10.9,316,364,7,538,0.308,49.480000000000004,52.5,0.93,0.25,881,1.2000000000000002,215,5.4,27.4878,21.5370 +2012,4,12,16,30,24.6,1.17,0.07200000000000001,0.63,99,946,813,7,2,7.6000000000000005,293,676,7,802,0.308,33.71,41.07,0.93,0.25,881,1.1,222,5.4,37.5419,29.4966 +2012,4,12,17,30,26.3,1.12,0.067,0.63,102,982,940,0,8,3.9000000000000004,272,647,0,824,0.308,23.6,31.38,0.92,0.25,880,1,224,5.800000000000001,40.4586,31.8295 +2012,4,12,18,30,27.400000000000002,1.04,0.057,0.63,99,1005,1005,0,1,0.7000000000000001,99,1005,0,1005,0.309,17.580000000000002,25.66,0.91,0.25,879,0.9,224,6.2,49.5654,39.0137 +2012,4,12,19,30,28,0.99,0.051000000000000004,0.63,95,1008,996,0,0,-1.8,95,1008,0,996,0.309,14.14,26.66,0.9,0.25,878,0.9,223,6.6000000000000005,46.8257,36.8544 +2012,4,12,20,30,28.3,0.98,0.052000000000000005,0.63,93,993,918,0,0,-3.4000000000000004,93,993,0,918,0.309,12.370000000000001,33.79,0.9,0.25,878,0.9,223,6.9,47.7083,37.5234 +2012,4,12,21,30,28.1,1.03,0.059000000000000004,0.63,90,951,773,0,0,-4.4,90,951,0,773,0.31,11.65,44.12,0.91,0.25,877,1,223,7.1000000000000005,36.3068,28.5105 +2012,4,12,22,30,27.3,1.06,0.07100000000000001,0.63,86,880,580,0,8,-4.9,180,669,0,556,0.311,11.71,55.81,0.92,0.25,877,1,224,6.9,28.8411,22.5700 +2012,4,12,23,30,25.700000000000003,0.99,0.07100000000000001,0.63,70,766,357,0,6,-4.9,206,64,0,230,0.312,12.88,68.05,0.92,0.25,877,1,224,6.1000000000000005,9.1525,7.1025 +2012,4,13,0,30,22.6,0.85,0.062,0.63,43,535,132,0,8,-4,34,489,0,115,0.313,16.62,80.39,0.91,0.24,877,0.9,226,4.6000000000000005,0.0000,0.0000 +2012,4,13,1,30,19.6,0.74,0.059000000000000004,0.63,0,0,0,0,7,-2.3000000000000003,0,0,0,0,0.314,22.7,92.71000000000001,0.92,0.24,878,0.9,230,3.7,0.0000,0.0000 +2012,4,13,2,30,18.2,0.74,0.065,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.316,25.64,104.53,0.92,0.24,879,0.9,236,3.7,0.0000,0.0000 +2012,4,13,3,30,16.8,0.64,0.06,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.318,27.96,115.55,0.91,0.24,879,0.8,239,3.7,0.0000,0.0000 +2012,4,13,4,30,15.200000000000001,0.56,0.058,0.63,0,0,0,0,0,-2,0,0,0,0,0.319,30.66,125.18,0.91,0.24,879,0.7000000000000001,242,3.5,0.0000,0.0000 +2012,4,13,5,30,13.9,0.58,0.063,0.63,0,0,0,1,6,-2.3000000000000003,0,0,1,0,0.319,32.62,132.49,0.9,0.24,880,0.7000000000000001,250,3.6,0.0000,0.0000 +2012,4,13,6,30,12.600000000000001,0.61,0.066,0.63,0,0,0,0,6,-2.7,0,0,0,0,0.32,34.46,136.28,0.91,0.24,880,0.6000000000000001,264,3.6,0.0000,0.0000 +2012,4,13,7,30,11.4,0.67,0.073,0.63,0,0,0,0,6,-3.2,0,0,0,0,0.32,35.92,135.61,0.92,0.24,880,0.6000000000000001,279,3.1,0.0000,0.0000 +2012,4,13,8,30,10.600000000000001,0.72,0.08,0.63,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.322,36.07,130.66,0.92,0.24,880,0.6000000000000001,285,2.3000000000000003,0.0000,0.0000 +2012,4,13,9,30,10.100000000000001,0.78,0.085,0.63,0,0,0,0,1,-4,0,0,0,0,0.324,36.86,122.55,0.93,0.24,880,0.5,281,1.8,0.0000,0.0000 +2012,4,13,10,30,9.200000000000001,0.79,0.081,0.63,0,0,0,0,4,-4,0,0,0,0,0.327,39.15,112.43,0.92,0.24,880,0.5,277,1.7000000000000002,0.0000,0.0000 +2012,4,13,11,30,8.4,0.77,0.075,0.63,0,0,0,0,1,-4.6000000000000005,0,0,0,0,0.329,39.6,101.13,0.92,0.24,881,0.5,277,1.7000000000000002,0.0000,0.0000 +2012,4,13,12,30,9.9,0.79,0.07200000000000001,0.63,12,96,14,7,4,-4.800000000000001,6,0,7,6,0.33,35.29,88.82000000000001,0.92,0.24,881,0.5,280,2.3000000000000003,0.0000,0.0000 +2012,4,13,13,30,13.5,0.77,0.064,0.63,54,650,202,0,1,-5.5,54,650,0,202,0.331,26.310000000000002,76.76,0.92,0.24,882,0.5,287,2.7,8.8082,6.7441 +2012,4,13,14,30,17.7,0.78,0.065,0.63,75,831,434,0,0,-6.800000000000001,75,831,0,434,0.329,18.19,64.4,0.92,0.24,882,0.6000000000000001,308,2.3000000000000003,10.9091,8.4937 +2012,4,13,15,30,21,0.8,0.066,0.63,89,922,654,7,2,-11.4,262,634,7,650,0.325,10.33,52.24,0.92,0.24,882,0.6000000000000001,279,1.6,30.7796,24.1183 +2012,4,13,16,30,22.5,0.8300000000000001,0.068,0.63,99,964,829,7,2,-12.200000000000001,287,712,7,826,0.321,8.88,40.78,0.92,0.24,882,0.7000000000000001,221,1.9000000000000001,47.5991,37.4004 +2012,4,13,17,30,23.3,0.84,0.068,0.63,105,991,955,0,8,-12,322,569,0,810,0.317,8.540000000000001,31.04,0.93,0.24,881,0.7000000000000001,204,2.8000000000000003,49.8596,39.2268 +2012,4,13,18,30,24,0.88,0.07,0.63,109,997,1010,0,8,-11.600000000000001,287,615,0,844,0.315,8.47,25.29,0.93,0.24,880,0.8,198,3.6,61.2977,48.2497 +2012,4,13,19,30,25.1,0.92,0.07200000000000001,0.63,109,994,999,0,7,-10.9,452,338,0,755,0.314,8.43,26.34,0.93,0.24,879,0.8,197,4.2,60.6737,47.7548 +2012,4,13,20,30,26,0.93,0.067,0.63,102,983,921,0,8,-10,266,679,0,832,0.313,8.58,33.55,0.92,0.24,878,0.8,199,4.5,55.3229,43.5137 +2012,4,13,21,30,26.200000000000003,1.09,0.075,0.63,98,940,775,0,8,-9.3,225,693,0,724,0.313,8.96,43.93,0.92,0.24,877,0.9,199,4.800000000000001,45.5109,35.7395 +2012,4,13,22,30,25.900000000000002,1.05,0.065,0.63,83,891,586,0,8,-8.700000000000001,200,518,0,493,0.312,9.49,55.660000000000004,0.92,0.24,877,0.9,198,4.9,31.3438,24.5302 +2012,4,13,23,30,24.3,1,0.059000000000000004,0.63,66,791,364,0,7,-8.200000000000001,201,132,0,251,0.312,10.86,67.9,0.92,0.24,876,0.9,199,4.1000000000000005,11.9757,9.2949 +2012,4,14,0,30,21.400000000000002,0.9500000000000001,0.056,0.63,42,556,136,0,7,-5.800000000000001,70,6,0,71,0.313,15.63,80.25,0.92,0.24,876,0.9,200,3,0.0000,0.0000 +2012,4,14,1,30,19.5,0.93,0.054,0.63,0,0,0,0,8,-4,0,0,0,0,0.313,20.09,92.56,0.92,0.24,876,0.9,197,2.8000000000000003,0.0000,0.0000 +2012,4,14,2,30,18.7,0.99,0.057,0.63,0,0,0,0,4,-4.2,0,0,0,0,0.312,20.85,104.35000000000001,0.93,0.24,876,0.9,189,2.9000000000000004,0.0000,0.0000 +2012,4,14,3,30,18.1,1.1,0.062,0.63,0,0,0,0,7,-4,0,0,0,0,0.312,22,115.34,0.9400000000000001,0.24,876,1,176,3.3000000000000003,0.0000,0.0000 +2012,4,14,4,30,17.3,1.21,0.076,0.63,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.311,25.28,124.92,0.9500000000000001,0.24,876,1.3,168,4.1000000000000005,0.0000,0.0000 +2012,4,14,5,30,16.3,1.33,0.129,0.63,0,0,0,1,0,2.1,0,0,1,0,0.31,38.31,132.19,0.97,0.24,876,1.8,168,4.6000000000000005,0.0000,0.0000 +2012,4,14,6,30,15.600000000000001,1.35,0.20600000000000002,0.63,0,0,0,0,0,8.5,0,0,0,0,0.309,62.63,135.93,0.97,0.24,876,2,168,4.9,0.0000,0.0000 +2012,4,14,7,30,15.5,1.29,0.216,0.63,0,0,0,0,0,13,0,0,0,0,0.309,84.85000000000001,135.25,0.96,0.24,875,2,172,5.4,0.0000,0.0000 +2012,4,14,8,30,15.600000000000001,1.26,0.181,0.63,0,0,0,0,0,14.700000000000001,0,0,0,0,0.308,94.42,130.31,0.9500000000000001,0.24,875,1.7000000000000002,181,6.2,0.0000,0.0000 +2012,4,14,9,30,15.4,1.23,0.153,0.63,0,0,0,0,0,14.8,0,0,0,0,0.308,96.22,122.23,0.9400000000000001,0.24,874,1.4000000000000001,189,6.2,0.0000,0.0000 +2012,4,14,10,30,14.3,1.1500000000000001,0.109,0.63,0,0,0,0,0,14,0,0,0,0,0.31,97.91,112.14,0.93,0.24,874,1.1,196,5,0.0000,0.0000 +2012,4,14,11,30,13,1.04,0.082,0.63,0,0,0,0,0,12.8,0,0,0,0,0.311,98.74000000000001,100.86,0.92,0.24,874,0.9,198,4,0.0000,0.0000 +2012,4,14,12,30,13.3,0.99,0.073,0.63,13,115,15,0,0,11.600000000000001,13,115,0,15,0.313,89.4,88.59,0.92,0.24,874,0.9,199,4.2,0.0000,0.0000 +2012,4,14,13,30,16.2,0.97,0.067,0.63,53,633,201,0,0,9.5,53,633,0,201,0.314,64.48,76.52,0.91,0.24,874,0.9,204,4.9,9.7395,7.4606 +2012,4,14,14,30,20.400000000000002,0.9400000000000001,0.06,0.63,71,829,432,0,0,4.3,71,829,0,432,0.315,34.71,64.15,0.9,0.24,874,0.9,216,5.9,23.2506,18.1063 +2012,4,14,15,30,23.700000000000003,0.89,0.057,0.63,83,925,653,0,0,-4.5,83,925,0,653,0.317,14.99,51.97,0.9,0.24,874,0.8,224,6.9,37.2268,29.1728 +2012,4,14,16,30,25.6,0.86,0.058,0.63,92,971,831,0,0,-6.800000000000001,92,971,0,831,0.319,11.27,40.49,0.9,0.24,874,0.8,220,7.4,49.0582,38.5488 +2012,4,14,17,30,27.1,0.8300000000000001,0.059000000000000004,0.63,99,1001,959,0,0,-6.800000000000001,99,1001,0,959,0.32,10.3,30.71,0.91,0.24,873,0.7000000000000001,213,7.9,49.0387,38.5823 +2012,4,14,18,30,28.200000000000003,0.85,0.06,0.63,102,1011,1019,0,0,-6.300000000000001,102,1011,0,1019,0.321,9.98,24.92,0.91,0.24,872,0.7000000000000001,205,8.3,51.5006,40.5391 +2012,4,14,19,30,29,0.85,0.059000000000000004,0.63,101,1005,1004,0,0,-6,101,1005,0,1004,0.322,9.76,26.02,0.91,0.24,871,0.8,201,8.9,46.0111,36.2152 +2012,4,14,20,30,29.400000000000002,0.86,0.059000000000000004,0.63,97,990,925,0,0,-5.9,97,990,0,925,0.323,9.63,33.31,0.91,0.24,869,0.8,203,9.4,50.1614,39.4551 +2012,4,14,21,30,29.1,0.87,0.06,0.63,91,958,783,0,0,-6,91,958,0,783,0.325,9.69,43.75,0.91,0.24,869,0.8,209,9.5,42.6488,33.4931 +2012,4,14,22,30,28,0.87,0.061,0.63,82,899,591,0,0,-6.4,82,899,0,591,0.327,10.06,55.5,0.91,0.24,869,0.8,220,9.5,27.8122,21.7677 +2012,4,14,23,30,25.900000000000002,0.8300000000000001,0.063,0.63,68,788,366,0,0,-6.6000000000000005,68,788,0,366,0.329,11.16,67.76,0.91,0.24,869,0.8,235,9,13.0856,10.1579 +2012,4,15,0,30,22.900000000000002,0.75,0.064,0.63,44,540,137,0,1,-6.5,44,540,0,137,0.331,13.5,80.10000000000001,0.91,0.24,870,0.8,252,8.1,0.0000,0.0000 +2012,4,15,1,30,19.900000000000002,0.68,0.066,0.63,0,0,0,0,0,-6,0,0,0,0,0.332,16.87,92.4,0.91,0.24,872,0.9,266,7.800000000000001,0.0000,0.0000 +2012,4,15,2,30,17.5,0.67,0.067,0.63,0,0,0,0,1,-5.1000000000000005,0,0,0,0,0.332,20.97,104.17,0.92,0.24,873,1,274,8.200000000000001,0.0000,0.0000 +2012,4,15,3,30,15.3,0.77,0.068,0.63,0,0,0,0,0,-4.3,0,0,0,0,0.333,25.580000000000002,115.12,0.92,0.24,874,1,279,8.5,0.0000,0.0000 +2012,4,15,4,30,13.200000000000001,0.92,0.075,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.335,27.37,124.66,0.92,0.24,875,0.9,281,8.6,0.0000,0.0000 +2012,4,15,5,30,11.3,1.03,0.076,0.63,0,0,0,1,0,-8,0,0,1,0,0.337,25.18,131.88,0.92,0.24,875,0.8,282,8.6,0.0000,0.0000 +2012,4,15,6,30,9.5,1.09,0.07,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.34,24.45,135.58,0.91,0.24,876,0.7000000000000001,283,8.4,0.0000,0.0000 +2012,4,15,7,30,7.800000000000001,1.1,0.062,0.63,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.341,26.67,134.88,0.9,0.24,876,0.6000000000000001,283,7.800000000000001,0.0000,0.0000 +2012,4,15,8,30,6.7,1.05,0.054,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.343,29.45,129.97,0.9,0.24,876,0.5,280,6.9,0.0000,0.0000 +2012,4,15,9,30,6,0.99,0.049,0.63,0,0,0,0,0,-9.1,0,0,0,0,0.34500000000000003,32.86,121.91,0.91,0.24,876,0.5,275,6.2,0.0000,0.0000 +2012,4,15,10,30,5.5,0.93,0.047,0.63,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.34700000000000003,36.57,111.86,0.9,0.24,876,0.5,269,5.9,0.0000,0.0000 +2012,4,15,11,30,5.1000000000000005,0.87,0.046,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.34900000000000003,39.81,100.60000000000001,0.9,0.24,877,0.4,265,5.9,0.0000,0.0000 +2012,4,15,12,30,5.800000000000001,0.8,0.049,0.63,14,187,19,0,0,-6.9,14,187,0,19,0.35000000000000003,39.52,88.35000000000001,0.9,0.24,877,0.4,263,6.300000000000001,0.0000,0.0000 +2012,4,15,13,30,7.9,0.75,0.052000000000000005,0.63,51,693,215,0,0,-6.5,51,693,0,215,0.35100000000000003,35.36,76.27,0.9,0.24,877,0.4,265,7.300000000000001,9.7080,7.4399 +2012,4,15,14,30,10.5,0.72,0.053,0.63,71,868,452,0,0,-6.6000000000000005,71,868,0,452,0.353,29.37,63.9,0.9,0.24,877,0.4,268,8.1,23.1849,18.0587 +2012,4,15,15,30,12.8,0.71,0.053,0.63,83,953,674,0,0,-7.800000000000001,83,953,0,674,0.355,23.06,51.72,0.91,0.24,877,0.4,270,8.3,37.4395,29.3421 +2012,4,15,16,30,14.9,0.71,0.053,0.63,92,990,848,0,0,-8.700000000000001,92,990,0,848,0.358,18.8,40.2,0.91,0.24,878,0.5,271,8.1,49.3897,38.8112 +2012,4,15,17,30,16.7,0.74,0.053,0.63,97,1016,973,0,0,-9.3,97,1016,0,973,0.361,15.98,30.38,0.91,0.24,877,0.5,274,7.800000000000001,58.0892,45.7044 +2012,4,15,18,30,18.3,0.8,0.054,0.63,99,1026,1032,0,0,-9.8,99,1026,0,1032,0.364,13.92,24.560000000000002,0.91,0.24,877,0.5,278,7.300000000000001,62.2061,48.9673 +2012,4,15,19,30,19.400000000000002,0.84,0.054,0.63,98,1018,1015,0,0,-9.8,98,1018,0,1015,0.366,12.99,25.7,0.91,0.24,877,0.6000000000000001,282,6.800000000000001,61.2099,48.1793 +2012,4,15,20,30,20.1,0.88,0.054,0.63,95,998,931,0,4,-9.200000000000001,492,310,0,752,0.368,12.96,33.07,0.92,0.24,878,0.7000000000000001,288,6.300000000000001,55.7918,43.8849 +2012,4,15,21,30,20.1,1,0.062,0.63,92,960,788,0,1,-8.6,92,960,0,788,0.368,13.6,43.56,0.92,0.24,878,0.7000000000000001,292,5.6000000000000005,46.1474,36.2420 +2012,4,15,22,30,19.700000000000003,0.98,0.06,0.63,82,905,596,0,0,-8.200000000000001,82,905,0,596,0.368,14.36,55.34,0.92,0.24,879,0.7000000000000001,295,4.800000000000001,33.3662,26.1163 +2012,4,15,23,30,18.3,0.97,0.059000000000000004,0.63,67,800,372,0,0,-8.1,67,800,0,372,0.367,15.81,67.61,0.93,0.24,879,0.7000000000000001,296,3.4000000000000004,19.1032,14.8313 +2012,4,16,0,30,15.600000000000001,0.96,0.061,0.63,44,561,142,0,1,-6.6000000000000005,44,561,0,142,0.365,21.12,79.95,0.93,0.24,880,0.7000000000000001,298,1.8,0.0000,0.0000 +2012,4,16,1,30,13.5,0.97,0.063,0.63,0,0,0,0,8,-4.1000000000000005,0,0,0,0,0.363,29.25,92.24,0.9400000000000001,0.24,881,0.7000000000000001,308,1,0.0000,0.0000 +2012,4,16,2,30,12.9,0.98,0.063,0.63,0,0,0,0,7,-4.7,0,0,0,0,0.361,29.02,103.99000000000001,0.9400000000000001,0.24,882,0.7000000000000001,165,0.9,0.0000,0.0000 +2012,4,16,3,30,11.9,0.97,0.064,0.63,0,0,0,0,8,-5,0,0,0,0,0.359,30.37,114.91,0.93,0.24,883,0.7000000000000001,34,1,0.0000,0.0000 +2012,4,16,4,30,10.600000000000001,0.98,0.065,0.63,0,0,0,0,1,-4.5,0,0,0,0,0.358,34.26,124.41,0.93,0.24,884,0.8,58,1.5,0.0000,0.0000 +2012,4,16,5,30,9.200000000000001,1.01,0.067,0.63,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.358,39.65,131.57,0.93,0.24,885,0.8,62,2.1,0.0000,0.0000 +2012,4,16,6,30,8,1.05,0.068,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.358,46.93,135.24,0.9400000000000001,0.24,885,0.8,60,2.7,0.0000,0.0000 +2012,4,16,7,30,7.1000000000000005,1.09,0.069,0.63,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.358,53.660000000000004,134.52,0.9400000000000001,0.24,885,0.9,55,3.2,0.0000,0.0000 +2012,4,16,8,30,6.300000000000001,1.1,0.069,0.63,0,0,0,0,0,-0.8,0,0,0,0,0.357,60.230000000000004,129.63,0.9400000000000001,0.24,886,0.9,52,3.3000000000000003,0.0000,0.0000 +2012,4,16,9,30,5.6000000000000005,1.11,0.069,0.63,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.356,65.62,121.60000000000001,0.93,0.24,887,0.9,51,2.9000000000000004,0.0000,0.0000 +2012,4,16,10,30,4.800000000000001,1.1,0.067,0.63,0,0,0,0,0,0,0,0,0,0,0.355,70.96000000000001,111.57000000000001,0.93,0.24,887,0.9,54,2.3000000000000003,0.0000,0.0000 +2012,4,16,11,30,4.3,1.09,0.066,0.63,0,0,0,0,0,0.1,0,0,0,0,0.354,74.36,100.33,0.93,0.24,888,0.8,61,1.8,0.0000,0.0000 +2012,4,16,12,30,5.6000000000000005,1.09,0.065,0.63,15,169,20,0,0,0.2,15,169,0,20,0.353,68.07000000000001,88.12,0.93,0.24,888,0.8,74,2.2,0.0000,0.0000 +2012,4,16,13,30,9.3,1.09,0.064,0.63,53,653,211,0,0,0.1,53,653,0,211,0.353,52.6,76.03,0.93,0.24,889,0.8,97,2.9000000000000004,10.4038,7.9768 +2012,4,16,14,30,13.200000000000001,1.1,0.063,0.63,74,832,443,0,0,-0.9,74,832,0,443,0.353,37.67,63.660000000000004,0.93,0.24,889,0.8,124,3.4000000000000004,24.3013,18.9319 +2012,4,16,15,30,16.2,1.09,0.063,0.63,87,918,659,0,0,-1.5,87,918,0,659,0.353,29.72,51.46,0.93,0.24,889,0.8,143,3.7,38.6822,30.3184 +2012,4,16,16,30,18.5,1.09,0.064,0.63,96,960,832,0,0,-2.1,96,960,0,832,0.354,24.63,39.92,0.93,0.24,889,0.9,160,3.7,50.4349,39.6343 +2012,4,16,17,30,20.3,1.09,0.065,0.63,102,985,955,0,0,-2.8000000000000003,102,985,0,955,0.354,20.97,30.060000000000002,0.93,0.24,888,0.9,177,3.7,58.9669,46.3965 +2012,4,16,18,30,21.6,1.1,0.068,0.63,106,994,1013,0,0,-3.4000000000000004,106,994,0,1013,0.354,18.51,24.21,0.93,0.24,888,0.9,190,3.7,63.0258,49.6138 +2012,4,16,19,30,22.400000000000002,1.09,0.07100000000000001,0.63,108,989,1002,0,8,-4,448,319,0,736,0.354,16.830000000000002,25.38,0.9400000000000001,0.24,887,0.9,196,3.9000000000000004,61.9046,48.7273 +2012,4,16,20,30,22.6,1.09,0.075,0.63,106,966,918,0,7,-4.7,408,98,0,490,0.356,15.81,32.83,0.9400000000000001,0.24,887,1,201,3.9000000000000004,45.3760,35.6930 +2012,4,16,21,30,22.3,1.1,0.081,0.63,103,928,777,0,7,-5.300000000000001,279,472,0,622,0.358,15.38,43.38,0.9500000000000001,0.24,887,1,204,3.8000000000000003,46.4664,36.4939 +2012,4,16,22,30,21.5,1.11,0.083,0.63,92,865,586,0,8,-5.7,255,352,0,456,0.36,15.67,55.19,0.9500000000000001,0.24,887,1,204,3.3000000000000003,33.6739,26.3589 +2012,4,16,23,30,20.1,1.12,0.08,0.63,74,758,365,0,4,-5.800000000000001,220,190,0,293,0.359,16.89,67.47,0.9500000000000001,0.24,887,1,195,2.3000000000000003,19.4405,15.0955 +2012,4,17,0,30,17.6,1.11,0.078,0.63,47,522,140,0,7,-3,47,522,5,140,0.355,24.34,79.81,0.9500000000000001,0.24,887,1,169,1.3,6.7703,5.1597 +2012,4,17,1,30,15.3,1.09,0.076,0.63,0,0,0,0,8,-1.2000000000000002,0,0,0,0,0.352,32.35,92.08,0.9500000000000001,0.24,888,0.9,147,1.4000000000000001,0.0000,0.0000 +2012,4,17,2,30,13.9,1.08,0.073,0.63,0,0,0,0,3,-1.8,0,0,0,0,0.35000000000000003,33.9,103.81,0.9400000000000001,0.24,888,0.9,143,2.1,0.0000,0.0000 +2012,4,17,3,30,12.5,1.04,0.066,0.63,0,0,0,0,4,-1.6,0,0,0,0,0.34700000000000003,37.45,114.7,0.93,0.24,889,0.9,146,2.6,0.0000,0.0000 +2012,4,17,4,30,11.200000000000001,0.98,0.06,0.63,0,0,0,0,0,-1.1,0,0,0,0,0.343,42.38,124.15,0.93,0.24,889,0.9,150,2.9000000000000004,0.0000,0.0000 +2012,4,17,5,30,10.200000000000001,0.93,0.058,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.337,47.36,131.27,0.92,0.24,889,0.9,154,3,0.0000,0.0000 +2012,4,17,6,30,9.200000000000001,0.9,0.057,0.63,0,0,0,0,0,0.1,0,0,0,0,0.332,52.88,134.89000000000001,0.92,0.24,890,0.8,157,3.1,0.0000,0.0000 +2012,4,17,7,30,8.4,0.87,0.056,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.327,58.02,134.17000000000002,0.92,0.24,890,0.8,158,3.1,0.0000,0.0000 +2012,4,17,8,30,7.7,0.87,0.056,0.63,0,0,0,0,0,1.1,0,0,0,0,0.322,63.1,129.29,0.91,0.24,890,0.8,159,3.2,0.0000,0.0000 +2012,4,17,9,30,7.1000000000000005,0.87,0.056,0.63,0,0,0,0,0,1.6,0,0,0,0,0.318,68.04,121.29,0.91,0.24,890,0.8,161,3.1,0.0000,0.0000 +2012,4,17,10,30,6.4,0.87,0.057,0.63,0,0,0,0,0,2,0,0,0,0,0.316,73.71000000000001,111.29,0.91,0.24,891,0.8,166,2.9000000000000004,0.0000,0.0000 +2012,4,17,11,30,6,0.89,0.057,0.63,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.314,77.76,100.07000000000001,0.91,0.24,891,0.8,174,2.9000000000000004,0.0000,0.0000 +2012,4,17,12,30,7,0.91,0.058,0.63,16,188,23,0,0,2.7,16,188,0,23,0.312,74.2,87.89,0.91,0.24,892,0.8,184,3.3000000000000003,0.0000,0.0000 +2012,4,17,13,30,10.100000000000001,0.91,0.059000000000000004,0.63,53,663,216,0,0,2.9000000000000004,53,663,0,216,0.311,60.96,75.8,0.91,0.24,892,0.8,193,3.9000000000000004,10.2294,7.8465 +2012,4,17,14,30,14.600000000000001,0.92,0.059000000000000004,0.63,73,838,448,0,0,2.7,73,838,0,448,0.31,44.7,63.42,0.91,0.24,892,0.8,198,4.2,23.8575,18.5895 +2012,4,17,15,30,18.7,0.92,0.06,0.63,86,917,660,0,0,1,86,917,0,660,0.309,30.57,51.21,0.91,0.24,892,0.9,201,4.6000000000000005,37.8602,29.6765 +2012,4,17,16,30,21.700000000000003,0.9400000000000001,0.061,0.63,95,963,837,0,0,-1,95,963,0,837,0.308,21.96,39.65,0.92,0.24,892,0.9,202,4.7,49.5159,38.9139 +2012,4,17,17,30,23.6,0.98,0.061,0.63,100,989,960,0,0,-2.1,100,989,0,960,0.307,17.97,29.740000000000002,0.92,0.24,891,0.9,201,4.9,57.9040,45.5615 +2012,4,17,18,30,25,1.01,0.057,0.63,100,1004,1018,0,0,-2.9000000000000004,100,1004,0,1018,0.307,15.620000000000001,23.85,0.92,0.24,890,0.9,200,5,61.8899,48.7208 +2012,4,17,19,30,25.8,1.05,0.058,0.63,100,1001,1007,0,0,-3.4000000000000004,100,1001,0,1007,0.307,14.39,25.07,0.92,0.24,889,0.9,198,5.300000000000001,44.9057,35.3477 +2012,4,17,20,30,26.200000000000003,1.07,0.061,0.63,98,984,928,0,0,-3.6,98,984,0,928,0.307,13.77,32.6,0.92,0.24,888,0.9,197,5.4,29.5789,23.2675 +2012,4,17,21,30,26.1,1.06,0.064,0.63,94,950,786,0,0,-3.9000000000000004,94,950,0,786,0.307,13.59,43.2,0.92,0.24,887,0.9,195,5.5,36.6959,28.8213 +2012,4,17,22,30,25.5,1.04,0.067,0.63,85,890,595,0,0,-4.2,85,890,0,595,0.307,13.8,55.04,0.92,0.24,886,0.9,193,5.6000000000000005,25.7821,20.1826 +2012,4,17,23,30,24.1,1.03,0.07,0.63,71,779,371,0,0,-4.4,71,779,0,371,0.307,14.77,67.33,0.92,0.24,886,0.9,190,5,15.3297,11.9052 +2012,4,18,0,30,20.8,1.03,0.073,0.63,47,539,143,0,0,-4.1000000000000005,47,539,0,143,0.308,18.43,79.67,0.92,0.24,886,0.9,184,3.7,6.6737,5.0868 +2012,4,18,1,30,18,1.04,0.074,0.63,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.308,23.900000000000002,91.92,0.92,0.24,887,0.9,177,3.3000000000000003,0.0000,0.0000 +2012,4,18,2,30,17,1.04,0.074,0.63,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.307,25.490000000000002,103.63,0.92,0.24,887,0.9,174,4,0.0000,0.0000 +2012,4,18,3,30,16,1.03,0.07200000000000001,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.307,27.52,114.49000000000001,0.91,0.24,887,0.9,173,4.4,0.0000,0.0000 +2012,4,18,4,30,14.700000000000001,1.03,0.07,0.63,0,0,0,0,1,-2.4000000000000004,0,0,0,0,0.306,30.8,123.9,0.91,0.24,887,0.9,175,4.4,0.0000,0.0000 +2012,4,18,5,30,13.600000000000001,1.05,0.069,0.63,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.306,34.24,130.97,0.91,0.24,887,0.9,178,4.3,0.0000,0.0000 +2012,4,18,6,30,12.600000000000001,1.07,0.068,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.306,38.050000000000004,134.55,0.91,0.24,887,0.9,183,4.1000000000000005,0.0000,0.0000 +2012,4,18,7,30,11.600000000000001,1.08,0.068,0.63,0,0,0,0,0,-0.8,0,0,0,0,0.307,42.21,133.82,0.91,0.24,886,0.9,189,3.7,0.0000,0.0000 +2012,4,18,8,30,10.9,1.07,0.069,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.309,45.52,128.95,0.91,0.24,886,0.9,195,3.6,0.0000,0.0000 +2012,4,18,9,30,10.4,1.04,0.068,0.63,0,0,0,0,0,-0.2,0,0,0,0,0.311,47.93,120.98,0.91,0.24,886,0.9,198,3.6,0.0000,0.0000 +2012,4,18,10,30,10.200000000000001,0.99,0.067,0.63,0,0,0,0,0,0,0,0,0,0,0.311,49.06,111.01,0.91,0.24,886,0.9,197,3.8000000000000003,0.0000,0.0000 +2012,4,18,11,30,10,0.9400000000000001,0.067,0.63,0,0,0,0,0,0,0,0,0,0,0.311,49.84,99.81,0.91,0.24,886,0.8,194,3.9000000000000004,0.0000,0.0000 +2012,4,18,12,30,11.100000000000001,0.92,0.066,0.63,17,187,24,0,0,0,17,187,0,24,0.31,46.480000000000004,87.67,0.91,0.24,886,0.8,192,4.4,0.0000,0.0000 +2012,4,18,13,30,14.200000000000001,0.9,0.067,0.63,56,660,220,0,0,0.30000000000000004,56,660,0,220,0.309,38.51,75.56,0.91,0.24,886,0.7000000000000001,198,5.4,10.4912,8.0508 +2012,4,18,14,30,18.400000000000002,0.88,0.066,0.63,76,836,453,0,0,0.5,76,836,0,453,0.308,29.96,63.190000000000005,0.91,0.24,886,0.7000000000000001,212,5.9,24.1669,18.8339 +2012,4,18,15,30,22.700000000000003,0.87,0.065,0.63,89,922,670,0,0,-0.1,89,922,0,670,0.308,22.080000000000002,50.97,0.91,0.24,886,0.7000000000000001,225,5.9,37.9546,29.7529 +2012,4,18,16,30,26.400000000000002,0.87,0.064,0.63,97,971,847,0,0,-2.1,97,971,0,847,0.307,15.24,39.37,0.91,0.24,885,0.7000000000000001,233,5.6000000000000005,49.8447,39.1740 +2012,4,18,17,30,28.8,0.87,0.063,0.63,102,997,970,0,0,-4.3,102,997,0,970,0.307,11.290000000000001,29.42,0.91,0.24,885,0.7000000000000001,236,5.2,58.2348,45.8232 +2012,4,18,18,30,30.200000000000003,0.86,0.063,0.63,105,1007,1028,0,0,-5.7,105,1007,0,1028,0.307,9.3,23.5,0.91,0.24,884,0.7000000000000001,236,5.1000000000000005,62.2202,48.9820 +2012,4,18,19,30,31,0.86,0.063,0.63,104,1005,1017,0,0,-6.4,104,1005,0,1017,0.306,8.43,24.76,0.91,0.24,883,0.7000000000000001,234,5.2,61.4628,48.3817 +2012,4,18,20,30,31.3,0.87,0.063,0.63,100,986,933,0,0,-6.6000000000000005,100,986,0,933,0.306,8.18,32.37,0.91,0.24,882,0.8,233,5.2,56.0407,44.0841 +2012,4,18,21,30,31.1,1.05,0.074,0.63,98,946,789,0,0,-6.5,98,946,0,789,0.306,8.34,43.03,0.91,0.24,881,0.8,231,5.1000000000000005,46.3939,36.4395 +2012,4,18,22,30,30.5,1.02,0.07100000000000001,0.63,86,886,596,0,0,-6.1000000000000005,86,886,0,596,0.306,8.92,54.89,0.91,0.24,880,0.9,227,4.800000000000001,33.6646,26.3547 +2012,4,18,23,30,28.400000000000002,0.98,0.069,0.63,71,777,372,0,0,-5.4,71,777,0,372,0.306,10.59,67.19,0.92,0.24,880,1,218,3.5,19.4329,15.0939 +2012,4,19,0,30,24.200000000000003,0.9400000000000001,0.066,0.63,46,551,146,0,0,-2.4000000000000004,46,551,0,146,0.306,17.05,79.52,0.92,0.25,880,1,200,2.1,6.8160,5.1961 +2012,4,19,1,30,21,0.92,0.064,0.63,0,0,0,0,0,-1.1,0,0,0,0,0.305,22.76,91.77,0.92,0.25,880,0.9,184,2.3000000000000003,0.0000,0.0000 +2012,4,19,2,30,19.900000000000002,0.93,0.064,0.63,0,0,0,0,1,-1.4000000000000001,0,0,0,0,0.305,23.84,103.45,0.91,0.25,880,0.8,180,3.2,0.0000,0.0000 +2012,4,19,3,30,18.7,0.98,0.069,0.63,0,0,0,0,1,-1.2000000000000002,0,0,0,0,0.304,26.05,114.27,0.91,0.25,880,0.7000000000000001,182,3.7,0.0000,0.0000 +2012,4,19,4,30,17.6,1.05,0.077,0.63,0,0,0,0,1,-1.1,0,0,0,0,0.304,28.12,123.64,0.91,0.25,880,0.7000000000000001,185,4,0.0000,0.0000 +2012,4,19,5,30,16.8,1.1300000000000001,0.084,0.63,0,0,0,0,1,-1.2000000000000002,0,0,0,0,0.303,29.3,130.67000000000002,0.91,0.25,879,0.7000000000000001,188,4.3,0.0000,0.0000 +2012,4,19,6,30,15.9,1.16,0.085,0.63,0,0,0,0,8,-1.2000000000000002,0,0,0,0,0.303,30.95,134.21,0.91,0.25,879,0.7000000000000001,193,4.5,0.0000,0.0000 +2012,4,19,7,30,15,1.11,0.079,0.63,0,0,0,0,7,-1.3,0,0,0,0,0.303,32.64,133.47,0.91,0.25,879,0.7000000000000001,201,4.2,0.0000,0.0000 +2012,4,19,8,30,14.100000000000001,1.05,0.07100000000000001,0.63,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.304,33.21,128.62,0.91,0.25,879,0.7000000000000001,210,3.7,0.0000,0.0000 +2012,4,19,9,30,13.5,1.01,0.067,0.63,0,0,0,0,1,-2.7,0,0,0,0,0.305,32.34,120.68,0.91,0.25,879,0.7000000000000001,223,3.4000000000000004,0.0000,0.0000 +2012,4,19,10,30,13.3,1.01,0.068,0.63,0,0,0,0,1,-3.9000000000000004,0,0,0,0,0.306,30.07,110.73,0.92,0.25,879,0.7000000000000001,243,3.5,0.0000,0.0000 +2012,4,19,11,30,13.200000000000001,1.02,0.07,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.308,27.47,99.56,0.91,0.25,880,0.7000000000000001,267,3.6,0.0000,0.0000 +2012,4,19,12,30,14.600000000000001,1.02,0.069,0.63,18,203,27,7,4,-5.7,16,0,7,16,0.311,24.17,87.44,0.91,0.25,880,0.8,282,4,0.0000,0.0000 +2012,4,19,13,30,17.7,1.02,0.068,0.63,56,661,223,0,4,-5.2,126,7,0,128,0.313,20.6,75.33,0.91,0.25,880,0.8,283,4.3,10.7066,8.2197 +2012,4,19,14,30,22.3,1.03,0.07,0.63,77,825,452,0,6,-4.2,210,47,0,232,0.313,16.7,62.96,0.91,0.25,881,0.9,289,4.6000000000000005,24.4751,19.0773 +2012,4,19,15,30,26.1,1.06,0.076,0.63,93,900,663,0,6,-2.4000000000000004,320,229,0,465,0.312,15.14,50.730000000000004,0.92,0.25,881,1,296,5,38.5654,30.2339 +2012,4,19,16,30,28,1.08,0.082,0.63,105,939,834,0,6,-2.3000000000000003,409,220,0,579,0.311,13.68,39.11,0.92,0.25,880,1.1,293,4.9,50.4726,39.6692 +2012,4,19,17,30,28.900000000000002,1.08,0.088,0.63,115,957,951,0,6,-2.4000000000000004,460,252,0,680,0.31,12.85,29.11,0.93,0.25,880,1.2000000000000002,288,4.800000000000001,58.8689,46.3235 +2012,4,19,18,30,28.700000000000003,1.1,0.091,0.63,119,963,1004,0,7,-2.4000000000000004,351,518,0,827,0.31,13.02,23.150000000000002,0.93,0.25,879,1.3,286,4.800000000000001,62.8553,49.4832 +2012,4,19,19,30,27.6,1.09,0.084,0.63,114,963,991,0,6,-2,491,132,0,612,0.31,14.280000000000001,24.46,0.93,0.25,879,1.4000000000000001,291,4.800000000000001,62.0955,48.8808 +2012,4,19,20,30,26.400000000000002,1.04,0.07,0.63,103,959,915,0,7,-1.3,387,384,0,712,0.311,16.16,32.15,0.92,0.25,879,1.4000000000000001,302,4.800000000000001,56.3643,44.3398 +2012,4,19,21,30,25.1,1,0.061,0.63,92,935,777,0,6,-0.5,376,121,0,465,0.313,18.47,42.85,0.92,0.25,879,1.4000000000000001,315,4.7,46.5923,36.5965 +2012,4,19,22,30,23.900000000000002,0.99,0.065,0.63,84,874,588,0,6,0,180,6,0,184,0.314,20.6,54.74,0.92,0.25,878,1.4000000000000001,324,4.2,33.7445,26.4188 +2012,4,19,23,30,22.5,0.99,0.078,0.63,73,751,366,0,6,0.4,39,0,0,39,0.317,23.13,67.05,0.92,0.25,878,1.4000000000000001,332,2.7,19.5075,15.1540 +2012,4,20,0,30,20.200000000000003,1.01,0.095,0.63,51,490,141,0,6,2.2,73,6,0,74,0.32,30.34,79.38,0.93,0.25,878,1.4000000000000001,336,1.6,6.9588,5.3060 +2012,4,20,1,30,18.3,1.03,0.113,0.63,0,0,0,0,4,2.4000000000000004,0,0,0,0,0.324,34.68,91.61,0.9400000000000001,0.25,879,1.5,172,1.9000000000000001,0.0000,0.0000 +2012,4,20,2,30,17.2,1.05,0.11900000000000001,0.63,0,0,0,0,7,2.6,0,0,0,0,0.326,37.480000000000004,103.27,0.9500000000000001,0.25,880,1.6,18,3.5,0.0000,0.0000 +2012,4,20,3,30,15.600000000000001,1.08,0.124,0.63,0,0,0,0,6,4.1000000000000005,0,0,0,0,0.328,46.13,114.06,0.9500000000000001,0.25,881,1.7000000000000002,30,5.1000000000000005,0.0000,0.0000 +2012,4,20,4,30,13.600000000000001,1.1500000000000001,0.129,0.63,0,0,0,0,7,5.800000000000001,0,0,0,0,0.331,59.15,123.39,0.96,0.25,882,1.8,34,5.5,0.0000,0.0000 +2012,4,20,5,30,12,1.2,0.129,0.63,0,0,0,0,4,6.800000000000001,0,0,0,0,0.333,70.54,130.37,0.9500000000000001,0.25,883,1.8,38,4.800000000000001,0.0000,0.0000 +2012,4,20,6,30,11.100000000000001,1.23,0.131,0.63,0,0,0,0,8,7.1000000000000005,0,0,0,0,0.335,76.16,133.88,0.9500000000000001,0.25,883,1.8,38,4,0.0000,0.0000 +2012,4,20,7,30,10.5,1.25,0.14,0.63,0,0,0,0,8,7,0,0,0,0,0.335,78.94,133.12,0.9500000000000001,0.25,884,1.9000000000000001,30,3.6,0.0000,0.0000 +2012,4,20,8,30,10.200000000000001,1.26,0.14300000000000002,0.63,0,0,0,0,6,6.800000000000001,0,0,0,0,0.337,79.64,128.29,0.96,0.25,884,1.9000000000000001,22,3.7,0.0000,0.0000 +2012,4,20,9,30,9.8,1.25,0.132,0.63,0,0,0,0,4,6.7,0,0,0,0,0.34,80.84,120.38,0.9500000000000001,0.25,884,1.8,19,3.7,0.0000,0.0000 +2012,4,20,10,30,9.3,1.2,0.111,0.63,0,0,0,0,4,6.5,0,0,0,0,0.341,82.77,110.46000000000001,0.9500000000000001,0.25,885,1.6,17,3.5,0.0000,0.0000 +2012,4,20,11,30,8.8,1.12,0.097,0.63,0,0,0,0,0,6.4,0,0,0,0,0.339,85.15,99.31,0.9400000000000001,0.25,885,1.4000000000000001,10,3.5,0.0000,0.0000 +2012,4,20,12,30,9.600000000000001,1.05,0.091,0.63,19,169,28,0,0,6.4,19,169,0,28,0.336,80.55,87.21000000000001,0.93,0.25,886,1.3,6,4.3,0.0000,0.0000 +2012,4,20,13,30,12.3,0.98,0.08700000000000001,0.63,61,613,219,0,0,6.2,61,613,0,219,0.333,66.2,75.11,0.93,0.25,887,1.2000000000000002,12,5.2,6.2414,4.7937 +2012,4,20,14,30,15.4,0.93,0.084,0.63,83,793,446,0,0,5.1000000000000005,83,793,0,446,0.331,50.230000000000004,62.730000000000004,0.93,0.25,887,1.2000000000000002,20,5.5,12.5543,9.7871 +2012,4,20,15,30,18,0.9,0.084,0.63,98,881,659,0,0,4,98,881,0,659,0.329,39.37,50.49,0.93,0.25,888,1.2000000000000002,21,5.300000000000001,26.7901,21.0040 +2012,4,20,16,30,20.1,0.91,0.083,0.63,107,932,833,0,0,3.3000000000000003,107,932,0,833,0.326,33.03,38.84,0.93,0.25,888,1.2000000000000002,20,5.2,34.5229,27.1345 +2012,4,20,17,30,21.6,0.91,0.081,0.63,112,960,954,0,0,2.7,112,960,0,954,0.323,28.900000000000002,28.810000000000002,0.93,0.25,888,1.2000000000000002,19,5,41.2873,32.4896 +2012,4,20,18,30,22.6,0.78,0.07,0.63,110,976,1009,0,0,2,110,976,0,1009,0.321,25.77,22.81,0.93,0.25,887,1.3,18,4.9,50.5844,39.8238 +2012,4,20,19,30,23.200000000000003,0.81,0.066,0.63,106,978,998,0,0,1.2000000000000002,106,978,0,998,0.319,23.52,24.16,0.92,0.25,887,1.3,16,4.800000000000001,37.3800,29.4257 +2012,4,20,20,30,23.400000000000002,0.8300000000000001,0.063,0.63,101,965,921,0,0,0.6000000000000001,101,965,0,921,0.318,22.18,31.92,0.93,0.25,887,1.3,14,4.6000000000000005,43.0289,33.8501 +2012,4,20,21,30,23.200000000000003,0.97,0.074,0.63,100,928,782,0,0,0.1,100,928,0,782,0.316,21.72,42.68,0.93,0.25,886,1.2000000000000002,12,4.4,27.4726,21.5794 +2012,4,20,22,30,22.400000000000002,0.91,0.068,0.63,86,876,594,0,0,-0.2,86,876,0,594,0.313,22.2,54.59,0.92,0.25,886,1.2000000000000002,12,4,10.4250,8.1622 +2012,4,20,23,30,21.200000000000003,0.86,0.063,0.63,69,777,374,0,0,-0.6000000000000001,69,777,0,374,0.31,23.36,66.9,0.92,0.25,886,1.2000000000000002,13,3.4000000000000004,2.0475,1.5907 +2012,4,21,0,30,18.400000000000002,0.8200000000000001,0.058,0.63,45,562,150,0,0,-0.6000000000000001,45,562,0,150,0.309,27.67,79.24,0.92,0.25,886,1.2000000000000002,23,2.1,3.5273,2.6900 +2012,4,21,1,30,15.4,0.78,0.057,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.308,36.57,91.45,0.92,0.25,887,1.2000000000000002,43,1.3,0.0000,0.0000 +2012,4,21,2,30,14.100000000000001,0.75,0.058,0.63,0,0,0,0,0,0.1,0,0,0,0,0.307,38.33,103.10000000000001,0.92,0.25,887,1.2000000000000002,65,1.4000000000000001,0.0000,0.0000 +2012,4,21,3,30,13.100000000000001,0.75,0.059000000000000004,0.63,0,0,0,0,0,-0.2,0,0,0,0,0.307,39.910000000000004,113.85000000000001,0.91,0.25,887,1.2000000000000002,84,1.6,0.0000,0.0000 +2012,4,21,4,30,12.3,0.77,0.06,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.306,41.37,123.14,0.92,0.25,887,1.2000000000000002,100,1.8,0.0000,0.0000 +2012,4,21,5,30,11.4,0.76,0.059000000000000004,0.63,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.306,43.56,130.07,0.92,0.25,887,1.2000000000000002,114,2,0.0000,0.0000 +2012,4,21,6,30,10.600000000000001,0.77,0.057,0.63,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.305,45.980000000000004,133.54,0.91,0.25,887,1.3,128,2.2,0.0000,0.0000 +2012,4,21,7,30,9.8,0.81,0.056,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.303,49.06,132.78,0.91,0.25,887,1.3,142,2.4000000000000004,0.0000,0.0000 +2012,4,21,8,30,9,0.85,0.058,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.301,52.82,127.96000000000001,0.91,0.25,887,1.2000000000000002,156,2.5,0.0000,0.0000 +2012,4,21,9,30,8.4,0.88,0.057,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.299,56.61,120.08,0.91,0.25,887,1.2000000000000002,170,2.6,0.0000,0.0000 +2012,4,21,10,30,7.9,0.9,0.056,0.63,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.299,60.480000000000004,110.19,0.91,0.25,887,1.2000000000000002,182,2.7,0.0000,0.0000 +2012,4,21,11,30,7.7,0.91,0.055,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.298,63.26,99.06,0.91,0.25,887,1.1,193,3,0.0000,0.0000 +2012,4,21,12,30,8.9,0.92,0.052000000000000005,0.63,19,255,32,0,0,1.5,19,255,0,32,0.297,59.95,86.99,0.91,0.25,887,1.1,202,3.7,0.0000,0.0000 +2012,4,21,13,30,12.3,0.9400000000000001,0.05,0.63,52,686,231,0,0,1.8,52,686,0,231,0.297,48.64,74.88,0.91,0.25,887,1.1,206,4.5,10.6989,8.2205 +2012,4,21,14,30,16.7,0.9500000000000001,0.048,0.63,69,848,460,0,0,1.7000000000000002,69,848,0,460,0.296,36.29,62.51,0.91,0.25,887,1.1,211,5.1000000000000005,24.1718,18.8469 +2012,4,21,15,30,21.1,0.96,0.046,0.63,79,929,673,0,0,1,79,929,0,673,0.296,26.38,50.26,0.91,0.25,887,1.1,222,5.300000000000001,38.0015,29.7960 +2012,4,21,16,30,24.700000000000003,0.97,0.045,0.63,87,973,847,0,0,0,87,973,0,847,0.296,19.63,38.59,0.91,0.25,887,1.1,238,4.7,49.6977,39.0633 +2012,4,21,17,30,27.3,0.96,0.044,0.63,91,998,967,0,0,-1,91,998,0,967,0.297,15.71,28.5,0.91,0.25,886,1.1,252,3.7,57.9483,45.6016 +2012,4,21,18,30,29,0.9500000000000001,0.053,0.63,98,1003,1026,0,0,-1.5,98,1003,0,1026,0.297,13.700000000000001,22.47,0.91,0.25,885,1,261,2.7,61.7387,48.6063 +2012,4,21,19,30,29.900000000000002,0.92,0.055,0.63,99,999,1013,0,0,-1.9000000000000001,99,999,0,1013,0.297,12.67,23.86,0.9,0.25,884,1,273,2.2,60.9768,48.0022 +2012,4,21,20,30,30.200000000000003,0.92,0.055,0.63,96,985,934,0,0,-2.2,96,985,0,934,0.297,12.120000000000001,31.7,0.9,0.25,884,1,295,2.1,55.6806,43.8040 +2012,4,21,21,30,30,0.9400000000000001,0.058,0.63,91,952,792,0,0,-2.7,91,952,0,792,0.297,11.86,42.51,0.9,0.25,884,1,329,2.3000000000000003,46.2220,36.3080 +2012,4,21,22,30,29.200000000000003,0.96,0.057,0.63,81,898,603,0,0,-3,81,898,0,603,0.296,12.09,54.44,0.9,0.25,884,1,181,2.6,33.6775,26.3694 +2012,4,21,23,30,27.400000000000002,1,0.055,0.63,66,801,382,0,0,-3.1,66,801,0,382,0.296,13.31,66.77,0.9,0.25,884,1,25,2.6,19.6584,15.2755 +2012,4,22,0,30,23.6,1.05,0.052000000000000005,0.63,43,593,156,0,0,-1.3,43,593,0,156,0.296,19.07,79.09,0.9,0.25,885,1,44,2.1,7.1508,5.4544 +2012,4,22,1,30,20.200000000000003,1.09,0.049,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.295,25.59,91.3,0.9,0.25,885,1,57,2.2,0.0000,0.0000 +2012,4,22,2,30,19,1.1300000000000001,0.046,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.295,27.580000000000002,102.92,0.89,0.25,886,1,65,2.7,0.0000,0.0000 +2012,4,22,3,30,18,1.16,0.043000000000000003,0.63,0,0,0,0,0,0.4,0,0,0,0,0.296,30.580000000000002,113.64,0.89,0.25,887,1,73,3,0.0000,0.0000 +2012,4,22,4,30,16.8,1.19,0.04,0.63,0,0,0,0,0,1.1,0,0,0,0,0.297,34.660000000000004,122.89,0.89,0.25,887,1.1,81,3.1,0.0000,0.0000 +2012,4,22,5,30,15.600000000000001,1.21,0.039,0.63,0,0,0,0,1,1.8,0,0,0,0,0.298,39.42,129.77,0.89,0.25,887,1.2000000000000002,88,3.1,0.0000,0.0000 +2012,4,22,6,30,14.4,1.21,0.039,0.63,0,0,0,0,0,2.6,0,0,0,0,0.299,44.86,133.21,0.89,0.25,887,1.2000000000000002,93,3,0.0000,0.0000 +2012,4,22,7,30,13.200000000000001,1.21,0.04,0.63,0,0,0,0,0,3.2,0,0,0,0,0.3,50.76,132.44,0.9,0.25,887,1.3,95,2.8000000000000003,0.0000,0.0000 +2012,4,22,8,30,12.200000000000001,1.2,0.041,0.63,0,0,0,0,0,3.7,0,0,0,0,0.3,56.230000000000004,127.64,0.9,0.25,888,1.3,96,2.4000000000000004,0.0000,0.0000 +2012,4,22,9,30,11.3,1.18,0.041,0.63,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.301,61.26,119.79,0.9,0.25,888,1.3,95,2,0.0000,0.0000 +2012,4,22,10,30,10.5,1.18,0.042,0.63,0,0,0,0,0,4.4,0,0,0,0,0.301,65.91,109.92,0.9,0.25,888,1.3,93,1.7000000000000002,0.0000,0.0000 +2012,4,22,11,30,10.3,1.17,0.042,0.63,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.301,67.86,98.82000000000001,0.9,0.25,888,1.3,89,1.6,0.0000,0.0000 +2012,4,22,12,30,11.9,1.17,0.043000000000000003,0.63,19,297,36,0,0,4.800000000000001,19,297,0,36,0.301,61.88,86.77,0.9,0.25,889,1.3,82,2.4000000000000004,0.0000,0.0000 +2012,4,22,13,30,15.600000000000001,1.17,0.045,0.63,50,691,233,0,0,5,50,691,0,233,0.301,49.22,74.67,0.9,0.25,890,1.4000000000000001,80,3.3000000000000003,11.3078,8.6919 +2012,4,22,14,30,19.900000000000002,1.17,0.046,0.63,67,843,459,0,0,4.4,67,843,0,459,0.302,35.97,62.29,0.9,0.25,890,1.4000000000000001,87,3.9000000000000004,24.9670,19.4699 +2012,4,22,15,30,23.3,1.17,0.048,0.63,79,914,667,0,0,3.3000000000000003,79,914,0,667,0.303,27.07,50.03,0.91,0.25,890,1.5,97,4.3,38.8421,30.4572 +2012,4,22,16,30,25.6,1.16,0.05,0.63,88,956,838,0,0,2.9000000000000004,88,956,0,838,0.303,22.93,38.33,0.91,0.25,890,1.5,107,4.2,50.5609,39.7433 +2012,4,22,17,30,27.3,1.1500000000000001,0.051000000000000004,0.63,94,976,954,0,0,2.7,94,976,0,954,0.304,20.48,28.21,0.91,0.25,890,1.6,116,4.1000000000000005,58.7634,46.2443 +2012,4,22,18,30,28.6,1.17,0.055,0.63,98,983,1008,0,0,2.6,98,983,0,1008,0.304,18.84,22.13,0.91,0.25,889,1.6,123,3.8000000000000003,62.8009,49.4435 +2012,4,22,19,30,29.400000000000002,1.18,0.057,0.63,98,976,993,0,0,2.6,98,976,0,993,0.304,17.93,23.56,0.91,0.25,888,1.7000000000000002,125,3.5,61.9139,48.7409 +2012,4,22,20,30,29.8,1.18,0.059000000000000004,0.63,97,960,915,0,0,2.5,97,960,0,915,0.304,17.48,31.490000000000002,0.92,0.25,888,1.7000000000000002,124,3.4000000000000004,56.4866,44.4392 +2012,4,22,21,30,29.6,1.41,0.117,0.63,116,879,766,0,0,2.4000000000000004,116,879,0,766,0.304,17.53,42.34,0.92,0.25,887,1.7000000000000002,121,3.5,46.8340,36.7899 +2012,4,22,22,30,28.900000000000002,1.43,0.11900000000000001,0.63,104,815,580,0,1,2.3000000000000003,104,815,0,580,0.304,18.080000000000002,54.300000000000004,0.92,0.25,887,1.7000000000000002,118,4,34.2110,26.7886 +2012,4,22,23,30,27.400000000000002,1.44,0.12,0.63,85,701,363,0,0,2.2,85,701,0,363,0.305,19.7,66.63,0.92,0.25,887,1.7000000000000002,114,4.5,20.0998,15.6205 +2012,4,23,0,30,24.8,1.43,0.11800000000000001,0.63,54,475,145,0,0,2.5,54,475,0,145,0.305,23.48,78.95,0.92,0.25,887,1.7000000000000002,109,4.800000000000001,7.4384,5.6750 +2012,4,23,1,30,21.900000000000002,1.42,0.113,0.63,0,0,0,0,0,3.2,0,0,0,0,0.306,29.32,91.14,0.92,0.25,888,1.7000000000000002,103,5.1000000000000005,0.0000,0.0000 +2012,4,23,2,30,19.700000000000003,1.4000000000000001,0.106,0.63,0,0,0,0,0,3.6,0,0,0,0,0.306,34.47,102.74000000000001,0.91,0.25,889,1.7000000000000002,102,5.4,0.0000,0.0000 +2012,4,23,3,30,17.8,1.3900000000000001,0.101,0.63,0,0,0,0,0,3.5,0,0,0,0,0.306,38.67,113.43,0.91,0.25,890,1.7000000000000002,102,5.1000000000000005,0.0000,0.0000 +2012,4,23,4,30,16.2,1.4000000000000001,0.101,0.63,0,0,0,0,0,3,0,0,0,0,0.306,41.27,122.64,0.91,0.25,890,1.7000000000000002,104,4.7,0.0000,0.0000 +2012,4,23,5,30,14.9,1.41,0.107,0.63,0,0,0,0,0,2.5,0,0,0,0,0.306,43.21,129.48,0.92,0.25,891,1.7000000000000002,108,4.3,0.0000,0.0000 +2012,4,23,6,30,14,1.41,0.117,0.63,0,0,0,0,7,2.1,0,0,0,0,0.306,44.6,132.88,0.93,0.25,891,1.8,113,3.9000000000000004,0.0000,0.0000 +2012,4,23,7,30,13.100000000000001,1.4000000000000001,0.132,0.63,0,0,0,0,4,2.1,0,0,0,0,0.306,47.160000000000004,132.1,0.93,0.25,891,1.8,116,3.5,0.0000,0.0000 +2012,4,23,8,30,12.3,1.4000000000000001,0.14300000000000002,0.63,0,0,0,0,4,2.4000000000000004,0,0,0,0,0.306,50.910000000000004,127.32000000000001,0.9400000000000001,0.25,891,1.8,117,3.1,0.0000,0.0000 +2012,4,23,9,30,11.700000000000001,1.41,0.145,0.63,0,0,0,0,8,2.6,0,0,0,0,0.306,53.49,119.49000000000001,0.9400000000000001,0.25,891,1.8,115,2.8000000000000003,0.0000,0.0000 +2012,4,23,10,30,11,1.42,0.137,0.63,0,0,0,0,7,2.6,0,0,0,0,0.306,56.04,109.66,0.93,0.25,891,1.7000000000000002,114,2.5,0.0000,0.0000 +2012,4,23,11,30,10.5,1.43,0.11800000000000001,0.63,0,0,0,0,7,2.4000000000000004,0,0,0,0,0.307,57.39,98.58,0.93,0.25,892,1.7000000000000002,115,2.1,0.0000,0.0000 +2012,4,23,12,30,11.3,1.42,0.106,0.63,22,201,34,7,7,2.2,14,0,7,14,0.307,53.71,86.56,0.92,0.25,892,1.6,122,2.7,0.0000,0.0000 +2012,4,23,13,30,13.700000000000001,1.41,0.1,0.63,64,606,226,0,7,1.2000000000000002,123,19,0,128,0.307,42.51,74.45,0.92,0.25,892,1.6,135,3.9000000000000004,11.4269,8.7867 +2012,4,23,14,30,16.400000000000002,1.4000000000000001,0.095,0.63,84,780,450,0,3,-0.1,238,313,0,385,0.308,32.64,62.07,0.91,0.25,892,1.6,148,4.7,24.9487,19.4585 +2012,4,23,15,30,19,1.3900000000000001,0.09,0.63,97,871,659,0,0,-0.2,97,871,0,659,0.309,27.42,49.800000000000004,0.91,0.25,891,1.6,157,5.2,38.5286,30.2134 +2012,4,23,16,30,21.3,1.3900000000000001,0.08700000000000001,0.63,105,922,831,0,0,0.1,105,922,0,831,0.31,24.28,38.08,0.91,0.25,891,1.6,165,5.2,50.0521,39.3449 +2012,4,23,17,30,23.400000000000002,1.4000000000000001,0.084,0.63,110,950,950,0,0,0.1,110,950,0,950,0.311,21.47,27.91,0.91,0.25,890,1.6,175,5,57.9966,45.6420 +2012,4,23,18,30,25.200000000000003,1.3900000000000001,0.075,0.63,108,968,1007,0,0,0.1,108,968,0,1007,0.311,19.3,21.79,0.91,0.25,889,1.6,185,4.7,61.7203,48.5938 +2012,4,23,19,30,26.5,1.4000000000000001,0.07100000000000001,0.63,105,972,998,0,0,0.2,105,972,0,998,0.312,17.900000000000002,23.27,0.9,0.25,888,1.5,192,4.4,60.7114,47.7952 +2012,4,23,20,30,27.400000000000002,1.3900000000000001,0.068,0.63,100,959,920,0,0,0.2,100,959,0,920,0.312,16.96,31.27,0.9,0.25,887,1.5,196,4.2,55.3562,43.5508 +2012,4,23,21,30,27.700000000000003,1.36,0.061,0.63,90,937,785,0,0,0.1,90,937,0,785,0.311,16.6,42.17,0.9,0.25,886,1.4000000000000001,197,3.9000000000000004,45.3167,35.5991 +2012,4,23,22,30,27.400000000000002,1.34,0.06,0.63,80,887,600,0,0,0,80,887,0,600,0.311,16.8,54.15,0.89,0.25,886,1.3,194,3.6,32.9268,25.7844 +2012,4,23,23,30,26.1,1.33,0.058,0.63,66,795,383,0,0,0,66,795,0,383,0.311,18.04,66.49,0.89,0.25,885,1.2000000000000002,186,2.9000000000000004,19.1214,14.8621 +2012,4,24,0,30,22.700000000000003,1.32,0.056,0.63,44,590,158,0,0,0.7000000000000001,44,590,0,158,0.31,23.3,78.81,0.89,0.25,885,1.2000000000000002,174,2.1,6.9158,5.2774 +2012,4,24,1,30,19.5,1.31,0.056,0.63,0,0,0,0,1,1.8,0,0,0,0,0.31,30.69,90.98,0.89,0.25,885,1.2000000000000002,165,1.9000000000000001,0.0000,0.0000 +2012,4,24,2,30,18.5,1.31,0.058,0.63,0,0,0,0,7,1.3,0,0,0,0,0.31,31.650000000000002,102.56,0.89,0.25,885,1.3,165,2.4000000000000004,0.0000,0.0000 +2012,4,24,3,30,17.900000000000002,1.32,0.063,0.63,0,0,0,0,7,1.4000000000000001,0,0,0,0,0.31,33.12,113.22,0.9,0.25,885,1.4000000000000001,168,2.8000000000000003,0.0000,0.0000 +2012,4,24,4,30,17.400000000000002,1.32,0.069,0.63,0,0,0,0,1,1.8,0,0,0,0,0.31,35.01,122.39,0.91,0.25,885,1.5,173,3.1,0.0000,0.0000 +2012,4,24,5,30,16.7,1.32,0.07200000000000001,0.63,0,0,0,0,0,2.2,0,0,0,0,0.31,37.730000000000004,129.19,0.92,0.25,885,1.5,179,3.3000000000000003,0.0000,0.0000 +2012,4,24,6,30,16,1.3,0.07200000000000001,0.63,0,0,0,0,1,2.6,0,0,0,0,0.31,40.550000000000004,132.56,0.92,0.25,885,1.5,187,3.4000000000000004,0.0000,0.0000 +2012,4,24,7,30,15.100000000000001,1.27,0.07,0.63,0,0,0,0,1,2.8000000000000003,0,0,0,0,0.31,43.69,131.77,0.91,0.25,885,1.5,194,3.2,0.0000,0.0000 +2012,4,24,8,30,14.200000000000001,1.25,0.069,0.63,0,0,0,0,1,2.9000000000000004,0,0,0,0,0.309,46.53,127.01,0.91,0.25,885,1.4000000000000001,200,2.8000000000000003,0.0000,0.0000 +2012,4,24,9,30,13.200000000000001,1.23,0.069,0.63,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.309,49.52,119.21000000000001,0.91,0.25,885,1.4000000000000001,203,2.3000000000000003,0.0000,0.0000 +2012,4,24,10,30,12.3,1.22,0.067,0.63,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.308,52.230000000000004,109.4,0.91,0.25,885,1.4000000000000001,205,1.9000000000000001,0.0000,0.0000 +2012,4,24,11,30,12,1.21,0.066,0.63,0,0,0,0,0,2.7,0,0,0,0,0.307,53.01,98.34,0.91,0.25,885,1.4000000000000001,208,1.7000000000000002,0.0000,0.0000 +2012,4,24,12,30,13.8,1.21,0.064,0.63,22,273,39,0,0,2.7,22,273,0,39,0.307,47.07,86.35000000000001,0.91,0.25,885,1.4000000000000001,212,2.3000000000000003,0.0000,0.0000 +2012,4,24,13,30,17.400000000000002,1.21,0.062,0.63,55,674,238,0,0,2.7,55,674,0,238,0.306,37.5,74.24,0.91,0.25,885,1.3,215,3,6.2898,4.8384 +2012,4,24,14,30,21.8,1.21,0.06,0.63,73,832,465,0,0,2.8000000000000003,73,832,0,465,0.306,28.59,61.86,0.91,0.25,885,1.3,216,3.1,20.9564,16.3472 +2012,4,24,15,30,26.700000000000003,1.2,0.058,0.63,84,912,676,0,0,2.2,84,912,0,676,0.305,20.53,49.58,0.91,0.25,884,1.3,215,3.4000000000000004,38.0985,29.8780 +2012,4,24,16,30,30.3,1.21,0.057,0.63,92,957,848,0,0,0.7000000000000001,92,957,0,848,0.304,14.96,37.84,0.91,0.25,884,1.3,216,3.6,49.6609,39.0388 +2012,4,24,17,30,32.4,1.22,0.057,0.63,97,981,966,0,0,0.1,97,981,0,966,0.303,12.71,27.63,0.91,0.25,883,1.3,224,3.8000000000000003,57.7770,45.4703 +2012,4,24,18,30,33.9,1.26,0.062,0.63,102,987,1021,0,0,-0.1,102,987,0,1021,0.302,11.450000000000001,21.46,0.91,0.25,882,1.3,232,3.9000000000000004,61.6799,48.5630 +2012,4,24,19,30,34.800000000000004,1.29,0.065,0.63,103,983,1008,0,0,-0.4,103,983,0,1008,0.301,10.69,22.98,0.91,0.25,881,1.3,238,3.9000000000000004,61.0361,48.0517 +2012,4,24,20,30,35.2,1.31,0.068,0.63,101,966,928,0,0,-0.7000000000000001,101,966,0,928,0.299,10.24,31.060000000000002,0.91,0.25,880,1.3,244,4,55.6782,43.8050 +2012,4,24,21,30,34.9,1.31,0.064,0.63,92,939,790,0,0,-1,92,939,0,790,0.298,10.14,42.01,0.91,0.25,879,1.3,250,4,46.4612,36.4993 +2012,4,24,22,30,34.1,1.33,0.065,0.63,83,880,600,0,0,-1.5,83,880,0,600,0.297,10.24,54.01,0.91,0.25,879,1.4000000000000001,253,3.9000000000000004,34.0850,26.6929 +2012,4,24,23,30,32.1,1.34,0.067,0.63,69,779,381,0,3,-1.8,203,288,0,318,0.297,11.24,66.35,0.91,0.25,878,1.4000000000000001,250,2.8000000000000003,20.1972,15.7004 +2012,4,25,0,30,28,1.35,0.07,0.63,47,564,158,0,8,0.8,56,314,0,118,0.297,17.14,78.67,0.92,0.25,878,1.4000000000000001,237,1.7000000000000002,7.5384,5.7537 +2012,4,25,1,30,24.700000000000003,1.37,0.079,0.63,0,0,0,0,6,1.7000000000000002,0,0,0,0,0.298,22.25,90.32000000000001,0.92,0.25,879,1.5,225,1.7000000000000002,0.0000,0.0000 +2012,4,25,2,30,23.6,1.4000000000000001,0.083,0.63,0,0,0,0,7,1.1,0,0,0,0,0.298,22.72,102.38,0.93,0.25,879,1.5,220,2,0.0000,0.0000 +2012,4,25,3,30,22.8,1.41,0.076,0.63,0,0,0,0,8,1,0,0,0,0,0.299,23.67,113.01,0.92,0.25,879,1.5,221,2.4000000000000004,0.0000,0.0000 +2012,4,25,4,30,21.900000000000002,1.41,0.066,0.63,0,0,0,0,7,1.2000000000000002,0,0,0,0,0.3,25.42,122.14,0.91,0.25,879,1.4000000000000001,223,2.7,0.0000,0.0000 +2012,4,25,5,30,21.1,1.41,0.06,0.63,0,0,0,0,0,1.6,0,0,0,0,0.3,27.38,128.9,0.91,0.25,879,1.4000000000000001,227,2.9000000000000004,0.0000,0.0000 +2012,4,25,6,30,20.3,1.43,0.059000000000000004,0.63,0,0,0,0,0,1.8,0,0,0,0,0.299,29.18,132.24,0.9,0.25,880,1.3,234,3.1,0.0000,0.0000 +2012,4,25,7,30,19.3,1.45,0.06,0.63,0,0,0,0,0,1.6,0,0,0,0,0.298,30.79,131.44,0.9,0.25,880,1.2000000000000002,241,3.1,0.0000,0.0000 +2012,4,25,8,30,18.2,1.46,0.061,0.63,0,0,0,0,0,1.3,0,0,0,0,0.298,32.13,126.7,0.9,0.25,880,1.2000000000000002,248,2.8000000000000003,0.0000,0.0000 +2012,4,25,9,30,17.1,1.48,0.062,0.63,0,0,0,0,1,0.8,0,0,0,0,0.298,33.21,118.93,0.9,0.25,880,1.1,255,2.3000000000000003,0.0000,0.0000 +2012,4,25,10,30,16.3,1.48,0.062,0.63,0,0,0,0,0,0.2,0,0,0,0,0.298,33.53,109.14,0.9,0.25,880,1.1,265,2,0.0000,0.0000 +2012,4,25,11,30,16.2,1.48,0.062,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.298,32.25,98.11,0.9,0.25,880,1.1,278,2,0.0000,0.0000 +2012,4,25,12,30,18.5,1.48,0.06,0.63,22,310,43,0,0,-0.8,22,310,0,43,0.298,27.03,86.14,0.9,0.25,880,1.2000000000000002,290,2.9000000000000004,0.0000,0.0000 +2012,4,25,13,30,22.3,1.48,0.059000000000000004,0.63,54,691,244,0,0,-1.2000000000000002,54,691,0,244,0.299,20.86,74.03,0.9,0.25,880,1.2000000000000002,295,3.6,11.7173,9.0168 +2012,4,25,14,30,27.1,1.47,0.055,0.63,70,850,474,0,0,-1,70,850,0,474,0.3,15.83,61.660000000000004,0.9,0.25,881,1.1,299,3.8000000000000003,25.3453,19.7734 +2012,4,25,15,30,32,1.48,0.048,0.63,79,937,689,0,0,-2.6,79,937,0,689,0.3,10.67,49.370000000000005,0.9,0.25,881,1,303,4.4,39.1125,30.6751 +2012,4,25,16,30,34.800000000000004,1.49,0.04,0.63,82,990,866,0,0,-5.9,82,990,0,866,0.298,7.1000000000000005,37.6,0.89,0.25,880,0.9,303,4.7,50.7029,39.8592 +2012,4,25,17,30,36.1,1.5,0.033,0.63,82,1022,990,0,0,-7.7,82,1022,0,990,0.296,5.76,27.34,0.89,0.25,880,0.8,299,4.6000000000000005,58.7721,46.2545 +2012,4,25,18,30,37,1.41,0.047,0.63,93,1019,1044,0,0,-9.4,93,1019,0,1044,0.294,4.8100000000000005,21.14,0.9,0.25,879,0.8,292,4.5,62.5575,49.2549 +2012,4,25,19,30,37.5,1.41,0.046,0.63,92,1018,1031,7,2,-10.5,279,779,7,998,0.292,4.29,22.7,0.9,0.25,879,0.8,283,4.6000000000000005,61.6666,48.5489 +2012,4,25,20,30,37.4,1.42,0.048,0.63,90,999,947,7,2,-10.8,271,767,7,929,0.289,4.2,30.85,0.9,0.25,878,0.9,276,4.7,56.1809,44.2015 +2012,4,25,21,30,36.9,1.42,0.046,0.63,83,968,804,0,0,-10.4,83,968,0,804,0.28700000000000003,4.45,41.85,0.9,0.25,878,1,273,4.5,46.7764,36.7479 +2012,4,25,22,30,36,1.41,0.043000000000000003,0.63,73,916,613,0,1,-9.600000000000001,73,916,0,613,0.28600000000000003,5,53.870000000000005,0.9,0.25,878,1.1,270,4.3,34.1062,26.7109 +2012,4,25,23,30,34,1.3900000000000001,0.045,0.63,62,818,392,0,8,-8.4,136,491,0,334,0.28600000000000003,6.11,66.22,0.91,0.25,877,1.2000000000000002,268,3.3000000000000003,16.7880,13.0519 +2012,4,26,0,30,30.3,1.37,0.051000000000000004,0.63,44,606,164,0,6,-4.4,71,164,0,104,0.28700000000000003,10.24,78.53,0.91,0.25,878,1.3,267,2.2,5.6321,4.2997 +2012,4,26,1,30,27.700000000000003,1.36,0.058,0.63,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.28700000000000003,13.94,90.19,0.92,0.25,878,1.4000000000000001,270,2.3000000000000003,0.0000,0.0000 +2012,4,26,2,30,27.3,1.35,0.057,0.63,0,0,0,0,6,-2.1,0,0,0,0,0.28600000000000003,14.43,102.2,0.92,0.25,879,1.5,280,3.2,0.0000,0.0000 +2012,4,26,3,30,26.8,1.34,0.053,0.63,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.28600000000000003,15.65,112.81,0.92,0.25,879,1.5,293,3.9000000000000004,0.0000,0.0000 +2012,4,26,4,30,25.6,1.35,0.048,0.63,0,0,0,0,7,-0.6000000000000001,0,0,0,0,0.28500000000000003,17.87,121.89,0.92,0.25,880,1.5,306,4.1000000000000005,0.0000,0.0000 +2012,4,26,5,30,24,1.3800000000000001,0.045,0.63,0,0,0,0,7,0,0,0,0,0,0.28500000000000003,20.44,128.61,0.91,0.25,880,1.5,318,3.8000000000000003,0.0000,0.0000 +2012,4,26,6,30,22.200000000000003,1.42,0.044,0.63,0,0,0,0,1,0.5,0,0,0,0,0.28400000000000003,23.72,131.92000000000002,0.91,0.25,880,1.5,328,3.3000000000000003,0.0000,0.0000 +2012,4,26,7,30,20.6,1.45,0.045,0.63,0,0,0,0,7,1.3,0,0,0,0,0.28500000000000003,27.63,131.12,0.9,0.25,880,1.5,338,3,0.0000,0.0000 +2012,4,26,8,30,19.3,1.46,0.048,0.63,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.28500000000000003,32.2,126.39,0.91,0.25,880,1.5,345,2.8000000000000003,0.0000,0.0000 +2012,4,26,9,30,18.2,1.47,0.051000000000000004,0.63,0,0,0,0,0,3.6,0,0,0,0,0.28500000000000003,37.92,118.65,0.91,0.25,880,1.6,350,2.5,0.0000,0.0000 +2012,4,26,10,30,17.3,1.48,0.054,0.63,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.28600000000000003,44.480000000000004,108.89,0.91,0.25,881,1.6,356,2.2,0.0000,0.0000 +2012,4,26,11,30,16.8,1.49,0.057,0.63,0,0,0,0,8,6.5,0,0,0,0,0.28700000000000003,50.620000000000005,97.88,0.91,0.25,881,1.6,184,2,0.0000,0.0000 +2012,4,26,12,30,17.8,1.5,0.061,0.63,23,310,45,7,7,7.9,30,4,7,31,0.289,52.32,85.93,0.91,0.25,882,1.6,15,2.4000000000000004,0.0000,0.0000 +2012,4,26,13,30,20.3,1.51,0.067,0.63,57,669,243,0,8,9.200000000000001,72,4,0,73,0.29,48.82,73.83,0.92,0.25,882,1.6,30,2.5,12.0357,9.2651 +2012,4,26,14,30,22.900000000000002,1.5,0.079,0.63,80,806,465,0,8,10.4,215,312,0,364,0.291,45.1,61.45,0.93,0.25,882,1.6,53,2.4000000000000004,25.8688,20.1844 +2012,4,26,15,30,24.900000000000002,1.52,0.091,0.63,98,869,667,0,8,10.8,279,399,0,540,0.29,41.07,49.160000000000004,0.93,0.25,882,1.8,76,2.5,39.8946,31.2904 +2012,4,26,16,30,26.6,1.56,0.107,0.63,116,901,832,0,6,10.200000000000001,404,124,0,503,0.28800000000000003,35.64,37.37,0.9400000000000001,0.25,882,1.9000000000000001,96,2.7,51.8055,40.7274 +2012,4,26,17,30,28.6,1.58,0.134,0.63,135,908,944,7,3,9.1,316,682,7,924,0.28700000000000003,29.490000000000002,27.060000000000002,0.9400000000000001,0.25,882,1.9000000000000001,115,3.2,60.2553,47.4230 +2012,4,26,18,30,31.1,1.47,0.11,0.63,128,936,1002,0,0,7.6000000000000005,128,936,0,1002,0.28800000000000003,23.12,20.82,0.9500000000000001,0.25,881,1.9000000000000001,131,3.9000000000000004,63.9863,50.3808 +2012,4,26,19,30,33.2,1.49,0.123,0.63,133,924,988,0,0,5.800000000000001,133,924,0,988,0.289,18.19,22.42,0.9500000000000001,0.25,880,1.9000000000000001,145,4.4,61.0726,48.0822 +2012,4,26,20,30,33.9,1.54,0.16,0.63,146,881,904,0,8,3.9000000000000004,460,120,0,563,0.28800000000000003,15.3,30.650000000000002,0.9500000000000001,0.25,879,1.9000000000000001,158,4.800000000000001,56.2598,44.2645 +2012,4,26,21,30,33.800000000000004,1.56,0.195,0.63,151,817,761,0,7,2.4000000000000004,328,433,0,652,0.28800000000000003,13.8,41.69,0.96,0.25,878,1.9000000000000001,166,5.2,47.6248,37.4155 +2012,4,26,22,30,33.4,1.53,0.209,0.63,139,739,576,0,4,0.8,354,78,0,400,0.289,12.63,53.730000000000004,0.96,0.25,877,1.8,173,5.6000000000000005,34.8666,27.3078 +2012,4,26,23,30,32.2,1.51,0.199,0.63,110,628,365,0,3,-0.7000000000000001,224,243,0,322,0.291,12.06,66.08,0.9500000000000001,0.25,877,1.7000000000000002,177,5.2,17.6506,13.7242 +2012,4,27,0,30,29.700000000000003,1.54,0.202,0.63,70,402,151,0,3,-1.6,111,167,0,145,0.292,13.02,78.39,0.9500000000000001,0.26,877,1.5,177,4.3,4.9662,3.7922 +2012,4,27,1,30,27.3,1.59,0.186,0.63,0,0,0,0,1,-1.9000000000000001,0,0,0,0,0.292,14.66,90.06,0.9400000000000001,0.26,876,1.4000000000000001,177,4.3,0.0000,0.0000 +2012,4,27,2,30,25.700000000000003,1.61,0.149,0.63,0,0,0,0,1,-2.6,0,0,0,0,0.293,15.280000000000001,102.03,0.92,0.26,876,1.2000000000000002,176,4.7,0.0000,0.0000 +2012,4,27,3,30,24,1.57,0.124,0.63,0,0,0,0,3,-2.8000000000000003,0,0,0,0,0.294,16.7,112.60000000000001,0.91,0.26,876,1.2000000000000002,181,4.800000000000001,0.0000,0.0000 +2012,4,27,4,30,22.700000000000003,1.45,0.113,0.63,0,0,0,0,1,-2.6,0,0,0,0,0.295,18.3,121.65,0.91,0.26,877,1.3,201,4.6000000000000005,0.0000,0.0000 +2012,4,27,5,30,21.8,1.25,0.085,0.63,0,0,0,0,1,-2,0,0,0,0,0.297,20.27,128.33,0.91,0.26,877,1.2000000000000002,234,4.6000000000000005,0.0000,0.0000 +2012,4,27,6,30,21.1,1.09,0.057,0.63,0,0,0,0,8,-0.7000000000000001,0,0,0,0,0.3,23.26,131.61,0.9,0.26,877,1,265,5.7,0.0000,0.0000 +2012,4,27,7,30,19.6,1,0.047,0.63,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.303,26.21,130.8,0.9,0.26,877,0.8,284,6.800000000000001,0.0000,0.0000 +2012,4,27,8,30,17.2,0.87,0.042,0.63,0,0,0,0,0,0.2,0,0,0,0,0.307,31.62,126.09,0.9,0.26,877,0.6000000000000001,291,6.800000000000001,0.0000,0.0000 +2012,4,27,9,30,15.4,0.75,0.04,0.63,0,0,0,0,0,0.5,0,0,0,0,0.308,36.34,118.37,0.9,0.26,877,0.6000000000000001,290,6.300000000000001,0.0000,0.0000 +2012,4,27,10,30,14.3,0.74,0.04,0.63,0,0,0,0,0,0,0,0,0,0,0.308,37.56,108.64,0.9,0.26,877,0.6000000000000001,287,6.1000000000000005,0.0000,0.0000 +2012,4,27,11,30,13.600000000000001,0.78,0.042,0.63,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.305,35.95,97.65,0.9,0.26,878,0.5,286,6.2,0.0000,0.0000 +2012,4,27,12,30,14.200000000000001,0.78,0.042,0.63,24,378,52,0,0,-2.1,24,378,0,52,0.302,32.480000000000004,85.73,0.9,0.26,878,0.5,287,6.6000000000000005,0.0000,0.0000 +2012,4,27,13,30,16.400000000000002,0.75,0.039,0.63,52,751,263,0,0,-1.9000000000000001,52,751,0,263,0.3,28.62,73.63,0.9,0.26,878,0.6000000000000001,288,7.6000000000000005,3.6075,2.7780 +2012,4,27,14,30,19.5,0.71,0.037,0.63,67,895,497,0,0,-0.8,67,895,0,497,0.3,25.41,61.26,0.91,0.26,878,0.6000000000000001,289,8.4,19.8918,15.5229 +2012,4,27,15,30,22.400000000000002,0.67,0.036000000000000004,0.63,77,966,711,0,0,-0.6000000000000001,77,966,0,711,0.301,21.580000000000002,48.95,0.91,0.26,878,0.6000000000000001,287,8.6,31.2905,24.5434 +2012,4,27,16,30,24.900000000000002,0.66,0.037,0.63,84,998,880,0,0,-1.2000000000000002,84,998,0,880,0.301,17.76,37.14,0.91,0.26,878,0.7000000000000001,284,8.200000000000001,30.1047,23.6679 +2012,4,27,17,30,26.900000000000002,0.65,0.037,0.63,89,1020,999,0,0,-1.9000000000000001,89,1020,0,999,0.3,15.030000000000001,26.79,0.9,0.26,878,0.7000000000000001,280,7.6000000000000005,56.2588,44.2786 +2012,4,27,18,30,28.5,0.76,0.041,0.63,93,1026,1054,0,0,-2.6,93,1026,0,1054,0.299,12.96,20.5,0.9,0.26,877,0.7000000000000001,274,7.300000000000001,61.4306,48.3694 +2012,4,27,19,30,29.5,0.8,0.043000000000000003,0.63,93,1022,1040,0,0,-3.4000000000000004,93,1022,0,1040,0.298,11.58,22.14,0.9,0.26,877,0.7000000000000001,268,7,60.4780,47.6149 +2012,4,27,20,30,30.1,0.85,0.045,0.63,91,1002,955,0,0,-3.9000000000000004,91,1002,0,955,0.298,10.76,30.45,0.9,0.26,876,0.8,264,6.800000000000001,34.1056,26.8343 +2012,4,27,21,30,30.3,1.19,0.07100000000000001,0.63,97,951,809,0,0,-4.3,97,951,0,809,0.299,10.290000000000001,41.53,0.9,0.26,876,0.8,261,6.5,38.6368,30.3551 +2012,4,27,22,30,30,1.12,0.067,0.63,85,901,620,0,0,-4.7,85,901,0,620,0.3,10.18,53.59,0.9,0.26,876,0.8,261,6.1000000000000005,22.7654,17.8310 +2012,4,27,23,30,28.8,1.04,0.06,0.63,69,812,399,0,0,-5.1000000000000005,69,812,0,399,0.301,10.620000000000001,65.95,0.9,0.26,875,0.8,261,5,17.0350,13.2472 +2012,4,28,0,30,25.400000000000002,0.98,0.056,0.63,46,614,171,0,0,-4.9,46,614,0,171,0.303,13.1,78.25,0.9,0.26,876,0.8,265,3.1,6.9275,5.2911 +2012,4,28,1,30,21.900000000000002,0.93,0.054,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.306,18.02,89.92,0.9,0.26,876,0.8,275,2.1,0.0000,0.0000 +2012,4,28,2,30,20.6,0.88,0.052000000000000005,0.63,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.308,19.67,101.85000000000001,0.9,0.26,877,0.8,287,2.3000000000000003,0.0000,0.0000 +2012,4,28,3,30,19.700000000000003,0.85,0.051000000000000004,0.63,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.31,20.81,112.39,0.9,0.26,877,0.9,297,2.5,0.0000,0.0000 +2012,4,28,4,30,18.7,0.84,0.05,0.63,0,0,0,0,0,-3.2,0,0,0,0,0.311,22.5,121.41,0.91,0.26,878,0.9,306,2.6,0.0000,0.0000 +2012,4,28,5,30,17.8,0.84,0.05,0.63,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.311,24.240000000000002,128.04,0.91,0.26,878,0.9,314,2.8000000000000003,0.0000,0.0000 +2012,4,28,6,30,17.1,0.8300000000000001,0.051000000000000004,0.63,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.311,25.61,131.3,0.91,0.26,878,1,323,3.1,0.0000,0.0000 +2012,4,28,7,30,16.5,0.8300000000000001,0.053,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.311,26.810000000000002,130.48,0.91,0.26,878,1,331,3.5,0.0000,0.0000 +2012,4,28,8,30,15.8,0.8200000000000001,0.055,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.311,28.1,125.79,0.91,0.26,878,1,338,3.7,0.0000,0.0000 +2012,4,28,9,30,14.8,0.8300000000000001,0.058,0.63,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.311,29.53,118.10000000000001,0.91,0.26,878,1,346,3.7,0.0000,0.0000 +2012,4,28,10,30,13.700000000000001,0.84,0.061,0.63,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.312,31.62,108.4,0.91,0.26,879,1,354,3.9000000000000004,0.0000,0.0000 +2012,4,28,11,30,12.700000000000001,0.88,0.066,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.312,36.51,97.43,0.91,0.26,879,1,185,4.1000000000000005,0.0000,0.0000 +2012,4,28,12,30,12.9,0.93,0.073,0.63,26,295,49,0,0,-0.2,26,295,0,49,0.312,40.59,85.52,0.91,0.26,880,1,21,5,0.0000,0.0000 +2012,4,28,13,30,14.9,0.97,0.08,0.63,63,663,252,0,0,-0.30000000000000004,63,663,0,252,0.313,35.37,73.43,0.92,0.26,881,1,38,6.1000000000000005,13.0207,10.0301 +2012,4,28,14,30,17.400000000000002,1,0.085,0.63,85,814,479,0,1,-2.6,85,814,0,479,0.312,25.38,61.06,0.92,0.26,881,1,46,6.1000000000000005,27.1923,21.2224 +2012,4,28,15,30,19.8,1.02,0.08700000000000001,0.63,100,894,689,0,8,-3.8000000000000003,226,597,0,620,0.312,19.96,48.75,0.92,0.26,881,1,48,5.300000000000001,41.2296,32.3411 +2012,4,28,16,30,22.1,1.02,0.088,0.63,110,939,861,7,2,-4.5,311,672,7,848,0.311,16.55,36.92,0.92,0.26,881,1,53,4.2,52.6935,41.4282 +2012,4,28,17,30,24.1,1.01,0.089,0.63,117,964,979,0,8,-4.6000000000000005,269,682,0,879,0.311,14.48,26.52,0.92,0.26,881,1,62,2.9000000000000004,60.8464,47.8903 +2012,4,28,18,30,25.8,1.05,0.094,0.63,122,970,1033,0,8,-4.3,301,654,0,914,0.311,13.450000000000001,20.18,0.92,0.26,881,1,72,1.8,64.6377,50.8955 +2012,4,28,19,30,27,1.09,0.1,0.63,125,960,1016,7,2,-3.6,287,758,7,990,0.311,13.18,21.87,0.93,0.26,880,1.1,80,1.1,63.6790,50.1360 +2012,4,28,20,30,27.700000000000003,1.09,0.10200000000000001,0.63,121,942,935,0,0,-3,121,942,0,935,0.311,13.25,30.25,0.93,0.26,879,1.1,89,1,57.8699,45.5331 +2012,4,28,21,30,28,1.04,0.096,0.63,111,914,797,0,0,-2.5,111,914,0,797,0.31,13.47,41.38,0.93,0.26,879,1.1,94,1.3,47.9597,37.6808 +2012,4,28,22,30,27.8,1.03,0.092,0.63,97,856,607,0,0,-2.2,97,856,0,607,0.309,13.97,53.45,0.93,0.26,878,1.2000000000000002,92,2.2,35.3079,27.6562 +2012,4,28,23,30,26.900000000000002,1.03,0.09,0.63,80,750,387,0,0,-1.8,80,750,0,387,0.308,15.1,65.82000000000001,0.93,0.26,878,1.3,86,3.1,21.1298,16.4334 +2012,4,29,0,30,24.5,1.04,0.091,0.63,54,532,163,0,1,-1.4000000000000001,54,532,0,163,0.308,17.95,78.11,0.92,0.26,878,1.4000000000000001,77,3.7,8.1743,6.2448 +2012,4,29,1,30,22,1.05,0.092,0.63,0,0,0,0,0,-0.9,0,0,0,0,0.309,21.73,89.78,0.92,0.26,878,1.5,74,4.6000000000000005,0.0000,0.0000 +2012,4,29,2,30,20.200000000000003,1.05,0.095,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.311,24.900000000000002,101.68,0.92,0.26,879,1.6,80,5.4,0.0000,0.0000 +2012,4,29,3,30,18.8,1.08,0.10400000000000001,0.63,0,0,0,0,0,0.2,0,0,0,0,0.312,28.560000000000002,112.19,0.93,0.26,879,1.8,85,5.300000000000001,0.0000,0.0000 +2012,4,29,4,30,17.7,1.1400000000000001,0.121,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.312,33.03,121.16,0.93,0.26,880,2.1,90,4.6000000000000005,0.0000,0.0000 +2012,4,29,5,30,16.900000000000002,1.22,0.156,0.63,0,0,0,0,1,2.7,0,0,0,0,0.313,38.54,127.77,0.93,0.26,880,2.3000000000000003,96,4.3,0.0000,0.0000 +2012,4,29,6,30,16.400000000000002,1.26,0.221,0.63,0,0,0,0,0,4.800000000000001,0,0,0,0,0.313,46.160000000000004,130.99,0.9400000000000001,0.26,880,2.3000000000000003,103,4.3,0.0000,0.0000 +2012,4,29,7,30,15.8,1.29,0.218,0.63,0,0,0,0,1,7.2,0,0,0,0,0.314,56.730000000000004,130.17000000000002,0.93,0.26,879,2.2,107,4.1000000000000005,0.0000,0.0000 +2012,4,29,8,30,15.200000000000001,1.31,0.17,0.63,0,0,0,0,0,9,0,0,0,0,0.314,66.45,125.49000000000001,0.93,0.26,879,2.1,108,3.5,0.0000,0.0000 +2012,4,29,9,30,14.5,1.29,0.152,0.63,0,0,0,0,0,10,0,0,0,0,0.313,74.56,117.83,0.93,0.26,879,1.9000000000000001,103,3,0.0000,0.0000 +2012,4,29,10,30,13.9,1.25,0.146,0.63,0,0,0,0,1,10.600000000000001,0,0,0,0,0.313,80.31,108.16,0.93,0.26,880,1.9000000000000001,92,2.9000000000000004,0.0000,0.0000 +2012,4,29,11,30,13.5,1.23,0.15,0.63,0,0,0,0,1,10.8,0,0,0,0,0.313,83.51,97.21000000000001,0.93,0.26,881,1.9000000000000001,78,3.4000000000000004,0.0000,0.0000 +2012,4,29,12,30,14.200000000000001,1.22,0.161,0.63,31,181,46,0,0,10.700000000000001,31,181,0,46,0.313,79.67,85.33,0.9400000000000001,0.26,881,1.9000000000000001,70,4.3,0.0000,0.0000 +2012,4,29,13,30,16.2,1.21,0.17300000000000001,0.63,84,523,235,0,3,10.8,28,0,0,28,0.313,70.38,73.24,0.9400000000000001,0.26,882,1.9000000000000001,68,5,12.4992,9.6316 +2012,4,29,14,30,18.6,1.21,0.184,0.63,120,688,455,0,3,10.9,292,139,0,360,0.313,60.99,60.870000000000005,0.9500000000000001,0.26,883,1.8,71,5.1000000000000005,26.2400,20.4817 +2012,4,29,15,30,20.900000000000002,1.23,0.193,0.63,144,774,657,0,3,11.100000000000001,396,207,0,533,0.313,53.31,48.56,0.9500000000000001,0.26,883,1.9000000000000001,78,4.6000000000000005,35.9778,28.2230 +2012,4,29,16,30,23,1.25,0.192,0.63,158,832,825,7,3,11.200000000000001,489,205,7,653,0.313,47.36,36.7,0.9500000000000001,0.26,883,1.9000000000000001,90,4,50.8003,39.9409 +2012,4,29,17,30,24.8,1.27,0.183,0.63,161,867,938,0,0,11.100000000000001,161,867,0,938,0.311,42.19,26.26,0.9400000000000001,0.26,882,2,103,3.6,53.5558,42.1530 +2012,4,29,18,30,26.3,1.26,0.171,0.63,159,885,991,0,0,10.8,159,885,0,991,0.31,37.88,19.88,0.9400000000000001,0.26,882,2.1,115,3.5,56.0683,44.1487 +2012,4,29,19,30,27.200000000000003,1.25,0.184,0.63,165,871,975,0,0,10.5,165,871,0,975,0.31,35.11,21.6,0.9500000000000001,0.26,881,2.2,126,3.5,60.6338,47.7392 +2012,4,29,20,30,27.6,1.23,0.20500000000000002,0.63,169,835,892,0,1,10.200000000000001,169,835,0,892,0.309,33.6,30.05,0.9500000000000001,0.26,880,2.3000000000000003,133,3.5,56.6752,44.5939 +2012,4,29,21,30,27.5,1.2,0.193,0.63,153,803,757,0,0,9.9,153,803,0,757,0.309,33.25,41.22,0.9500000000000001,0.26,880,2.3000000000000003,134,3.7,47.2660,37.1368 +2012,4,29,22,30,27.1,1.19,0.197,0.63,137,729,572,0,0,9.700000000000001,137,729,0,572,0.309,33.46,53.32,0.9400000000000001,0.26,880,2.3000000000000003,132,4,34.5885,27.0941 +2012,4,29,23,30,26.1,1.17,0.188,0.63,109,616,363,0,0,9.5,109,616,0,363,0.31,35.160000000000004,65.68,0.9400000000000001,0.26,880,2.3000000000000003,127,4.2,20.5149,15.9570 +2012,4,30,0,30,24,1.17,0.177,0.63,68,401,152,0,0,9.9,68,401,0,152,0.311,40.980000000000004,77.97,0.9400000000000001,0.26,880,2.3000000000000003,122,4.2,7.7966,5.9577 +2012,4,30,1,30,21.8,1.18,0.17500000000000002,0.63,0,0,0,7,7,11.3,0,0,7,0,0.311,51.44,89.65,0.9400000000000001,0.26,881,2.3000000000000003,120,4.4,0.0000,0.0000 +2012,4,30,2,30,20.400000000000002,1.22,0.19,0.63,0,0,0,0,7,12.700000000000001,0,0,0,0,0.31,61.33,101.5,0.9400000000000001,0.26,881,2.4000000000000004,123,4.4,0.0000,0.0000 +2012,4,30,3,30,19.400000000000002,1.27,0.217,0.63,0,0,0,0,4,13.8,0,0,0,0,0.308,70.23,111.98,0.9400000000000001,0.26,882,2.4000000000000004,132,4.1000000000000005,0.0000,0.0000 +2012,4,30,4,30,18.7,1.29,0.241,0.63,0,0,0,0,6,14.600000000000001,0,0,0,0,0.307,76.95,120.93,0.9400000000000001,0.26,882,2.4000000000000004,144,3.9000000000000004,0.0000,0.0000 +2012,4,30,5,30,18,1.29,0.244,0.63,0,0,0,0,7,14.9,0,0,0,0,0.306,81.98,127.49000000000001,0.9400000000000001,0.26,882,2.3000000000000003,155,3.8000000000000003,0.0000,0.0000 +2012,4,30,6,30,17.3,1.26,0.22,0.63,0,0,0,0,0,14.9,0,0,0,0,0.306,85.63,130.69,0.9400000000000001,0.26,882,2.1,165,3.8000000000000003,0.0000,0.0000 +2012,4,30,7,30,16.5,1.21,0.186,0.63,0,0,0,0,0,14.8,0,0,0,0,0.306,89.5,129.87,0.9400000000000001,0.26,881,1.9000000000000001,172,3.7,0.0000,0.0000 +2012,4,30,8,30,15.700000000000001,1.1400000000000001,0.162,0.63,0,0,0,0,0,14.700000000000001,0,0,0,0,0.307,93.86,125.2,0.9400000000000001,0.26,881,1.7000000000000002,177,3.6,0.0000,0.0000 +2012,4,30,9,30,15.100000000000001,1.09,0.16,0.63,0,0,0,0,0,14.700000000000001,0,0,0,0,0.307,97.35000000000001,117.57000000000001,0.9400000000000001,0.26,881,1.6,182,3.5,0.0000,0.0000 +2012,4,30,10,30,14.8,1.05,0.162,0.63,0,0,0,0,0,14.600000000000001,0,0,0,0,0.307,98.74000000000001,107.92,0.9400000000000001,0.26,881,1.5,188,3.3000000000000003,0.0000,0.0000 +2012,4,30,11,30,14.700000000000001,1.03,0.149,0.63,0,0,0,0,0,14.5,0,0,0,0,0.307,98.49000000000001,97,0.9400000000000001,0.26,882,1.4000000000000001,192,3.2,0.0000,0.0000 +2012,4,30,12,30,15.5,1.03,0.138,0.63,32,208,50,0,0,14.3,32,208,0,50,0.306,92.5,85.14,0.9400000000000001,0.26,882,1.4000000000000001,199,3.5,0.0000,0.0000 +2012,4,30,13,30,17.900000000000002,1.03,0.11800000000000001,0.63,74,604,250,7,3,14.200000000000001,168,99,7,197,0.305,78.88,73.06,0.93,0.26,883,1.3,208,3.9000000000000004,1.3913,1.0724 +2012,4,30,14,30,21.700000000000003,1.02,0.096,0.63,89,793,478,0,3,13.100000000000001,127,0,0,127,0.303,58.01,60.69,0.92,0.26,883,1.3,215,3.8000000000000003,19.7441,15.4130 +2012,4,30,15,30,25.700000000000003,1.01,0.084,0.63,99,887,688,0,1,9.9,99,887,0,688,0.302,36.9,48.36,0.92,0.26,883,1.3,222,3.8000000000000003,30.9496,24.2798 +2012,4,30,16,30,28.700000000000003,0.99,0.078,0.63,105,941,861,7,2,4.6000000000000005,292,698,7,853,0.301,21.53,36.49,0.91,0.26,882,1.2000000000000002,227,3.9000000000000004,39.1361,30.7711 +2012,4,30,17,30,30.5,0.97,0.074,0.63,108,969,979,0,0,2,108,969,0,979,0.301,16.19,26.01,0.91,0.26,882,1.2000000000000002,226,4,57.1692,44.9979 +2012,4,30,18,30,31.6,1.05,0.077,0.63,112,977,1032,0,0,0.4,112,977,0,1032,0.3,13.6,19.57,0.91,0.26,881,1.2000000000000002,226,4.2,60.8079,47.8816 +2012,4,30,19,30,32.1,1.02,0.073,0.63,109,978,1020,0,0,-0.7000000000000001,109,978,0,1020,0.3,12.17,21.330000000000002,0.91,0.26,881,1.2000000000000002,226,4.4,59.7309,47.0290 +2012,4,30,20,30,32.300000000000004,1,0.069,0.63,104,969,944,0,3,-1.6,404,4,0,407,0.301,11.23,29.86,0.91,0.26,880,1.1,227,4.5,54.0849,42.5566 +2012,4,30,21,30,32,0.93,0.065,0.63,95,942,805,7,3,-2.5,366,465,7,717,0.302,10.73,41.07,0.91,0.26,880,1.1,227,4.3,44.9117,35.2879 +2012,4,30,22,30,31.200000000000003,0.88,0.062,0.63,84,891,618,0,0,-3.3000000000000003,84,891,0,618,0.303,10.55,53.18,0.91,0.26,879,1.1,223,3.9000000000000004,32.6123,25.5472 +2012,4,30,23,30,29.400000000000002,0.8300000000000001,0.06,0.63,70,801,401,0,0,-3.9000000000000004,70,801,0,401,0.306,11.23,65.55,0.91,0.26,879,1,208,2.6,19.2632,14.9853 +2012,5,1,0,30,25.6,0.8,0.061,0.63,49,598,175,0,0,1.9000000000000001,49,598,0,175,0.309,21.32,77.84,0.91,0.26,878,1,176,1.5,7.2752,5.5607 +2012,5,1,1,30,22.1,0.8,0.059000000000000004,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.313,30.5,89.51,0.9,0.26,878,1.1,151,1.8,0.0000,0.0000 +2012,5,1,2,30,20.5,0.84,0.061,0.63,0,0,0,0,1,3.7,0,0,0,0,0.316,32.96,101.33,0.91,0.26,879,1.2000000000000002,148,2.7,0.0000,0.0000 +2012,5,1,3,30,19.6,0.93,0.069,0.63,0,0,0,0,0,6,0,0,0,0,0.316,41.04,111.78,0.91,0.26,879,1.3,153,3.4000000000000004,0.0000,0.0000 +2012,5,1,4,30,18.7,1,0.081,0.63,0,0,0,0,4,8.6,0,0,0,0,0.316,51.86,120.69,0.92,0.26,879,1.4000000000000001,163,3.7,0.0000,0.0000 +2012,5,1,5,30,17.900000000000002,1.03,0.08700000000000001,0.63,0,0,0,0,0,10.3,0,0,0,0,0.316,60.95,127.22,0.92,0.26,879,1.3,174,3.8000000000000003,0.0000,0.0000 +2012,5,1,6,30,17.1,1.01,0.08600000000000001,0.63,0,0,0,0,0,10.9,0,0,0,0,0.315,66.95,130.39000000000001,0.92,0.26,879,1.2000000000000002,184,3.7,0.0000,0.0000 +2012,5,1,7,30,16.3,0.97,0.079,0.63,0,0,0,0,0,10.700000000000001,0,0,0,0,0.314,69.47,129.56,0.91,0.26,878,1.1,195,3.6,0.0000,0.0000 +2012,5,1,8,30,15.5,0.9500000000000001,0.073,0.63,0,0,0,0,0,9.600000000000001,0,0,0,0,0.313,67.93,124.92,0.91,0.26,878,1,205,3.4000000000000004,0.0000,0.0000 +2012,5,1,9,30,14.600000000000001,0.9400000000000001,0.068,0.63,0,0,0,0,0,7.800000000000001,0,0,0,0,0.313,63.63,117.31,0.91,0.26,878,0.9,214,3.1,0.0000,0.0000 +2012,5,1,10,30,13.8,0.96,0.066,0.63,0,0,0,0,0,5.4,0,0,0,0,0.312,56.99,107.69,0.9,0.26,878,0.9,224,2.8000000000000003,0.0000,0.0000 +2012,5,1,11,30,13.5,0.97,0.065,0.63,0,0,0,0,0,2.6,0,0,0,0,0.311,47.77,96.79,0.9,0.26,879,0.9,238,2.9000000000000004,0.0000,0.0000 +2012,5,1,12,30,15,0.96,0.064,0.63,28,353,59,0,0,-0.6000000000000001,28,353,0,59,0.31,34.46,84.95,0.9,0.26,879,0.8,251,3.5,0.0000,0.0000 +2012,5,1,13,30,18.5,0.93,0.063,0.63,59,709,268,0,0,-3.5,59,709,0,268,0.309,22.17,72.87,0.9,0.26,879,0.8,260,3.7,9.8049,7.5599 +2012,5,1,14,30,23.3,0.88,0.061,0.63,76,855,497,0,0,-4.4,76,855,0,497,0.307,15.52,60.51,0.9,0.26,880,0.8,275,3.9000000000000004,6.9729,5.4439 +2012,5,1,15,30,27.8,0.8300000000000001,0.06,0.63,88,930,709,0,0,-6.4,88,930,0,709,0.305,10.19,48.18,0.9,0.26,879,0.8,284,4.2,39.9773,31.3636 +2012,5,1,16,30,30.200000000000003,0.81,0.058,0.63,95,974,880,0,0,-6.2,95,974,0,880,0.303,8.99,36.28,0.89,0.26,879,0.8,274,4.4,51.1443,40.2137 +2012,5,1,17,30,31.8,0.8,0.057,0.63,100,997,998,0,0,-5.5,100,997,0,998,0.301,8.66,25.76,0.89,0.26,879,0.8,260,4.800000000000001,59.6865,46.9802 +2012,5,1,18,30,32.800000000000004,0.67,0.052000000000000005,0.63,100,1010,1053,0,0,-4.9,100,1010,0,1053,0.3,8.53,19.27,0.89,0.26,878,0.8,249,5.4,63.3408,49.8769 +2012,5,1,19,30,33.5,0.6900000000000001,0.051000000000000004,0.63,98,1009,1040,0,0,-4.800000000000001,98,1009,0,1040,0.299,8.3,21.07,0.89,0.26,877,0.8,243,5.800000000000001,62.5040,49.2132 +2012,5,1,20,30,33.7,0.72,0.05,0.63,94,996,960,0,0,-4.9,94,996,0,960,0.298,8.13,29.67,0.89,0.26,876,0.8,239,6,24.6847,19.4235 +2012,5,1,21,30,33.7,1.18,0.078,0.63,100,941,811,0,0,-5.2,100,941,0,811,0.298,7.98,40.92,0.9,0.26,876,0.9,236,5.9,42.5543,33.4365 +2012,5,1,22,30,33.300000000000004,1.22,0.081,0.63,91,884,622,0,0,-5.5,91,884,0,622,0.298,7.930000000000001,53.050000000000004,0.9,0.26,875,0.9,234,5.5,35.2560,27.6196 +2012,5,1,23,30,31.700000000000003,1.24,0.083,0.63,76,783,402,0,0,-5.9,76,783,0,402,0.299,8.44,65.42,0.9,0.26,875,0.9,230,4.2,21.3008,16.5722 +2012,5,2,0,30,27.6,1.23,0.082,0.63,52,586,177,0,0,-3.6,52,586,0,177,0.299,12.71,77.7,0.9,0.25,875,0.8,226,2.7,8.3816,6.4077 +2012,5,2,1,30,23.900000000000002,1.21,0.078,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.299,18.78,89.38,0.89,0.25,876,0.8,225,2.4000000000000004,0.0000,0.0000 +2012,5,2,2,30,22.5,1.18,0.073,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.298,18.57,101.16,0.89,0.25,876,0.8,226,3,0.0000,0.0000 +2012,5,2,3,30,21.8,1.16,0.069,0.63,0,0,0,0,1,-3.8000000000000003,0,0,0,0,0.298,17.76,111.58,0.89,0.25,877,0.8,226,3.6,0.0000,0.0000 +2012,5,2,4,30,20.900000000000002,1.1400000000000001,0.067,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.297,17.21,120.45,0.89,0.25,877,0.8,225,4,0.0000,0.0000 +2012,5,2,5,30,19.900000000000002,1.1300000000000001,0.066,0.63,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.296,17.07,126.94,0.89,0.25,877,0.8,222,4.2,0.0000,0.0000 +2012,5,2,6,30,18.900000000000002,1.12,0.068,0.63,0,0,0,0,0,-6.4,0,0,0,0,0.296,17.43,130.1,0.89,0.25,877,0.8,218,4.2,0.0000,0.0000 +2012,5,2,7,30,17.8,1.12,0.07,0.63,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.296,19.07,129.27,0.89,0.25,878,0.7000000000000001,215,4.1000000000000005,0.0000,0.0000 +2012,5,2,8,30,16.6,1.1300000000000001,0.07100000000000001,0.63,0,0,0,0,1,-4.5,0,0,0,0,0.296,23.22,124.64,0.89,0.25,878,0.7000000000000001,216,3.8000000000000003,0.0000,0.0000 +2012,5,2,9,30,15.3,1.1300000000000001,0.07,0.63,0,0,0,0,1,-2.6,0,0,0,0,0.296,29.02,117.06,0.89,0.25,878,0.7000000000000001,224,3.3000000000000003,0.0000,0.0000 +2012,5,2,10,30,14.200000000000001,1.11,0.067,0.63,0,0,0,0,1,-1.8,0,0,0,0,0.297,33.24,107.47,0.89,0.25,878,0.7000000000000001,234,2.7,0.0000,0.0000 +2012,5,2,11,30,14,1.1,0.063,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.298,33.53,96.58,0.89,0.25,879,0.7000000000000001,243,2.6,0.0000,0.0000 +2012,5,2,12,30,16,1.1,0.059000000000000004,0.63,28,385,63,0,0,-2.4000000000000004,28,385,0,63,0.3,28.16,84.76,0.89,0.25,879,0.7000000000000001,253,3.2,0.0000,0.0000 +2012,5,2,13,30,19.900000000000002,1.1500000000000001,0.056,0.63,56,734,275,0,0,-3.3000000000000003,56,734,0,275,0.301,20.740000000000002,72.7,0.89,0.25,880,0.7000000000000001,262,3.6,13.3622,10.3058 +2012,5,2,14,30,24.900000000000002,1.23,0.055,0.63,72,874,505,0,0,-3.1,72,874,0,505,0.302,15.51,60.34,0.89,0.25,880,0.7000000000000001,272,3.7,27.3173,21.3296 +2012,5,2,15,30,29.1,1.3,0.054,0.63,83,946,716,0,0,-4.6000000000000005,83,946,0,716,0.303,10.81,48,0.89,0.25,880,0.7000000000000001,275,4,41.2227,32.3422 +2012,5,2,16,30,31.3,1.3800000000000001,0.053,0.63,90,988,888,0,0,-6.300000000000001,90,988,0,888,0.303,8.370000000000001,36.08,0.89,0.25,880,0.7000000000000001,266,4.1000000000000005,52.7853,41.5051 +2012,5,2,17,30,32.7,1.44,0.054,0.63,95,1009,1005,0,0,-7.5,95,1009,0,1005,0.302,7.04,25.51,0.89,0.25,880,0.7000000000000001,252,4.2,60.8634,47.9075 +2012,5,2,18,30,33.7,1.49,0.057,0.63,98,1016,1059,0,0,-8.4,98,1016,0,1059,0.299,6.23,18.97,0.89,0.25,879,0.7000000000000001,239,4.5,64.6464,50.9057 +2012,5,2,19,30,34.300000000000004,1.49,0.055,0.63,97,1015,1045,0,0,-8.700000000000001,97,1015,0,1045,0.298,5.88,20.82,0.89,0.25,879,0.7000000000000001,228,4.7,63.7454,50.1913 +2012,5,2,20,30,34.5,1.47,0.054,0.63,93,1002,965,0,0,-8.700000000000001,93,1002,0,965,0.297,5.82,29.490000000000002,0.89,0.25,878,0.7000000000000001,218,5,58.2408,45.8282 +2012,5,2,21,30,34.300000000000004,1.45,0.056,0.63,88,972,825,0,0,-8.700000000000001,88,972,0,825,0.296,5.87,40.77,0.89,0.25,877,0.7000000000000001,211,5.2,48.1509,37.8350 +2012,5,2,22,30,33.7,1.42,0.054,0.63,78,924,636,0,0,-9,78,924,0,636,0.295,5.95,52.92,0.88,0.25,877,0.7000000000000001,208,5.300000000000001,35.5037,27.8149 +2012,5,2,23,30,32.1,1.3800000000000001,0.052000000000000005,0.63,65,837,415,0,0,-9.5,65,837,0,415,0.295,6.26,65.29,0.88,0.25,877,0.7000000000000001,207,4.6000000000000005,21.3749,16.6318 +2012,5,3,0,30,28.3,1.3,0.048,0.63,45,665,188,0,0,-8.4,45,665,0,188,0.296,8.49,77.56,0.88,0.25,877,0.6000000000000001,213,3.3000000000000003,8.4836,6.4874 +2012,5,3,1,30,24.6,1.2,0.042,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.296,12.36,89.25,0.88,0.25,878,0.5,226,3.2,0.0000,0.0000 +2012,5,3,2,30,23.3,1.12,0.035,0.63,0,0,0,0,1,-9.3,0,0,0,0,0.296,10.6,100.98,0.88,0.25,878,0.4,239,4.2,0.0000,0.0000 +2012,5,3,3,30,21.8,1.1400000000000001,0.032,0.63,0,0,0,0,1,-13.100000000000001,0,0,0,0,0.294,8.55,111.38,0.87,0.25,879,0.4,244,4.4,0.0000,0.0000 +2012,5,3,4,30,20,1.26,0.036000000000000004,0.63,0,0,0,0,1,-14.100000000000001,0,0,0,0,0.292,8.870000000000001,120.22,0.88,0.25,879,0.30000000000000004,246,3.9000000000000004,0.0000,0.0000 +2012,5,3,5,30,18.6,1.36,0.042,0.63,0,0,0,0,1,-13.5,0,0,0,0,0.291,10.14,126.68,0.88,0.25,879,0.30000000000000004,250,3.7,0.0000,0.0000 +2012,5,3,6,30,17.7,1.36,0.047,0.63,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.29,11.56,129.8,0.89,0.25,880,0.4,255,3.3000000000000003,0.0000,0.0000 +2012,5,3,7,30,17,1.3,0.047,0.63,0,0,0,0,7,-11.5,0,0,0,0,0.289,13.16,128.97,0.9,0.25,880,0.4,259,2.8000000000000003,0.0000,0.0000 +2012,5,3,8,30,16.2,1.28,0.046,0.63,0,0,0,0,7,-10.5,0,0,0,0,0.28800000000000003,15.05,124.36,0.9,0.25,880,0.5,258,2.4000000000000004,0.0000,0.0000 +2012,5,3,9,30,15.100000000000001,1.31,0.043000000000000003,0.63,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.28700000000000003,17.25,116.81,0.9,0.25,880,0.5,254,2,0.0000,0.0000 +2012,5,3,10,30,13.9,1.37,0.042,0.63,0,0,0,0,1,-9.1,0,0,0,0,0.28700000000000003,19.38,107.24000000000001,0.9,0.25,881,0.6000000000000001,250,1.8,0.0000,0.0000 +2012,5,3,11,30,13.700000000000001,1.44,0.047,0.63,0,0,0,0,1,-9,0,0,0,0,0.28600000000000003,19.900000000000002,96.38,0.91,0.25,881,0.8,251,1.8,0.0000,0.0000 +2012,5,3,12,30,16.1,1.54,0.057,0.63,28,410,67,0,0,-8.8,28,410,0,67,0.28600000000000003,17.240000000000002,84.58,0.92,0.25,882,0.8,255,2.7,0.0000,0.0000 +2012,5,3,13,30,20.1,1.6,0.069,0.63,60,713,274,0,0,-10.4,60,713,0,274,0.28600000000000003,11.81,72.52,0.92,0.25,882,0.9,257,3.4000000000000004,13.7330,10.5946 +2012,5,3,14,30,24.5,1.6400000000000001,0.078,0.63,81,837,498,0,1,-9.700000000000001,81,837,0,498,0.28600000000000003,9.58,60.160000000000004,0.92,0.25,883,1,256,3.9000000000000004,27.7853,21.6971 +2012,5,3,15,30,28.400000000000002,1.68,0.082,0.63,95,908,705,0,8,-8.8,254,515,0,600,0.28500000000000003,8.14,47.82,0.92,0.25,883,1,252,4.6000000000000005,41.6549,32.6828 +2012,5,3,16,30,30.6,1.6600000000000001,0.083,0.63,105,950,875,0,1,-8.9,105,950,0,875,0.28400000000000003,7.140000000000001,35.88,0.92,0.25,882,1,245,5,53.2863,41.9001 +2012,5,3,17,30,31.900000000000002,1.6300000000000001,0.083,0.63,110,974,991,0,0,-9.200000000000001,110,974,0,991,0.28400000000000003,6.45,25.27,0.92,0.25,882,1,239,5.4,61.3088,48.2589 +2012,5,3,18,30,32.9,1.68,0.094,0.63,118,976,1042,0,0,-9.5,118,976,0,1042,0.28400000000000003,5.96,18.68,0.92,0.25,882,1,234,5.7,65.0311,51.2094 +2012,5,3,19,30,33.9,1.7,0.091,0.63,115,975,1029,0,0,-9.5,115,975,0,1029,0.28500000000000003,5.66,20.56,0.91,0.25,881,1,231,5.9,64.0668,50.4451 +2012,5,3,20,30,34.4,1.71,0.084,0.63,108,970,953,0,0,-9.200000000000001,108,970,0,953,0.28500000000000003,5.61,29.3,0.9,0.25,881,0.9,230,6,58.5595,46.0798 +2012,5,3,21,30,34.300000000000004,1.71,0.082,0.63,100,941,814,0,0,-9.200000000000001,100,941,0,814,0.28700000000000003,5.66,40.63,0.9,0.25,880,0.9,231,6,49.0000,38.5031 +2012,5,3,22,30,33.6,1.71,0.081,0.63,89,889,627,0,1,-9.4,89,889,0,627,0.289,5.8100000000000005,52.79,0.9,0.25,880,0.9,231,5.7,36.3227,28.4578 +2012,5,3,23,30,31.900000000000002,1.7,0.079,0.63,74,795,408,0,0,-9.5,74,795,0,408,0.293,6.3,65.16,0.9,0.25,880,0.9,230,4.6000000000000005,22.0877,17.1883 +2012,5,4,0,30,28,1.68,0.078,0.63,51,604,182,0,0,-8,51,604,0,182,0.297,8.86,77.43,0.9,0.26,880,0.9,226,2.8000000000000003,9.0179,6.8977 +2012,5,4,1,30,24.1,1.6500000000000001,0.078,0.63,0,0,0,0,0,-4.9,0,0,0,0,0.301,14.22,89.11,0.91,0.26,881,0.9,224,2.1,0.0000,0.0000 +2012,5,4,2,30,22.900000000000002,1.6300000000000001,0.08,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.304,14.950000000000001,100.81,0.91,0.26,881,1,231,2.6,0.0000,0.0000 +2012,5,4,3,30,22.700000000000003,1.62,0.084,0.63,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.307,14.4,111.18,0.91,0.26,882,1.1,244,3.6,0.0000,0.0000 +2012,5,4,4,30,22.200000000000003,1.61,0.083,0.63,0,0,0,0,1,-6.6000000000000005,0,0,0,0,0.308,13.96,119.99000000000001,0.91,0.26,882,1.1,255,4.3,0.0000,0.0000 +2012,5,4,5,30,21.1,1.58,0.077,0.63,0,0,0,0,1,-7.1000000000000005,0,0,0,0,0.309,14.36,126.41,0.9,0.26,882,1,264,4.3,0.0000,0.0000 +2012,5,4,6,30,19.8,1.52,0.07100000000000001,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.309,14.870000000000001,129.52,0.91,0.26,882,1,269,3.9000000000000004,0.0000,0.0000 +2012,5,4,7,30,18.6,1.46,0.069,0.63,0,0,0,0,0,-8.4,0,0,0,0,0.309,15.200000000000001,128.68,0.91,0.26,882,0.9,271,3.5,0.0000,0.0000 +2012,5,4,8,30,17.5,1.4000000000000001,0.06,0.63,0,0,0,0,0,-8.8,0,0,0,0,0.309,15.73,124.09,0.91,0.26,882,0.9,270,3,0.0000,0.0000 +2012,5,4,9,30,16.400000000000002,1.33,0.052000000000000005,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.307,16.830000000000002,116.56,0.9,0.26,882,0.8,268,2.7,0.0000,0.0000 +2012,5,4,10,30,15.4,1.28,0.048,0.63,0,0,0,0,0,-9,0,0,0,0,0.304,17.79,107.02,0.9,0.26,882,0.8,267,2.5,0.0000,0.0000 +2012,5,4,11,30,15.200000000000001,1.24,0.048,0.63,0,0,0,0,0,-9,0,0,0,0,0.301,17.93,96.18,0.9,0.26,882,0.7000000000000001,266,2.7,0.0000,0.0000 +2012,5,4,12,30,17.1,1.2,0.048,0.63,28,432,70,0,0,-9.1,28,432,0,70,0.299,15.77,84.4,0.9,0.26,883,0.7000000000000001,266,3.5,0.0000,0.0000 +2012,5,4,13,30,20.8,1.17,0.049,0.63,55,745,281,0,0,-9.4,55,745,0,281,0.297,12.25,72.35000000000001,0.89,0.26,883,0.8,263,3.9000000000000004,13.7060,10.5767 +2012,5,4,14,30,25.700000000000003,1.1400000000000001,0.049,0.63,71,877,509,0,0,-8,71,877,0,509,0.296,10.17,60,0.89,0.26,883,0.8,268,4.4,27.4295,21.4214 +2012,5,4,15,30,29.6,1.1300000000000001,0.049,0.63,82,946,719,0,0,-5.4,82,946,0,719,0.295,9.85,47.65,0.89,0.26,883,0.8,271,5.1000000000000005,34.9274,27.4055 +2012,5,4,16,30,31.6,1.11,0.049,0.63,89,985,889,0,0,-5.6000000000000005,89,985,0,889,0.294,8.69,35.69,0.89,0.26,883,0.8,265,5.4,52.5267,41.3040 +2012,5,4,17,30,33.1,1.09,0.048,0.63,93,1002,1001,0,0,-6.2,93,1002,0,1001,0.293,7.63,25.04,0.89,0.26,883,0.9,261,5.6000000000000005,60.4720,47.6011 +2012,5,4,18,30,34.1,1.07,0.047,0.63,95,1016,1060,0,0,-6.800000000000001,95,1016,0,1060,0.293,6.9,18.400000000000002,0.9,0.26,882,0.8,257,5.800000000000001,64.0025,50.4002 +2012,5,4,19,30,34.7,1.02,0.044,0.63,93,1016,1046,0,0,-7.2,93,1016,0,1046,0.293,6.44,20.31,0.9,0.26,881,0.8,253,5.9,63.1011,49.6854 +2012,5,4,20,30,35,0.98,0.041,0.63,88,1006,967,0,0,-7.7,88,1006,0,967,0.293,6.09,29.12,0.9,0.26,881,0.8,249,5.9,57.8472,45.5201 +2012,5,4,21,30,34.800000000000004,1.1,0.044,0.63,84,976,826,0,0,-8.4,84,976,0,826,0.293,5.8500000000000005,40.49,0.89,0.26,880,0.8,247,5.7,48.3631,38.0035 +2012,5,4,22,30,34.1,1.09,0.042,0.63,75,936,642,0,0,-9.1,75,936,0,642,0.294,5.76,52.660000000000004,0.89,0.26,880,0.7000000000000001,246,5.4,35.8282,28.0717 +2012,5,4,23,30,32.6,1.08,0.041,0.63,62,851,422,0,0,-9.600000000000001,62,851,0,422,0.294,6.0200000000000005,65.04,0.89,0.26,880,0.7000000000000001,244,4.3,21.7363,16.9166 +2012,5,5,0,30,28.5,1.06,0.039,0.63,44,677,193,0,0,-8.6,44,677,0,193,0.295,8.23,77.29,0.89,0.26,880,0.7000000000000001,240,2.6,8.7368,6.6843 +2012,5,5,1,30,24.3,1.05,0.039,0.63,10,164,13,0,0,-5.300000000000001,10,164,0,13,0.295,13.57,88.98,0.89,0.26,880,0.7000000000000001,235,1.9000000000000001,0.0000,0.0000 +2012,5,5,2,30,22.6,1.04,0.038,0.63,0,0,0,0,1,-5.9,0,0,0,0,0.295,14.35,100.64,0.89,0.26,880,0.7000000000000001,232,2.1,0.0000,0.0000 +2012,5,5,3,30,21.8,1.04,0.038,0.63,0,0,0,0,0,-6.9,0,0,0,0,0.296,14.040000000000001,110.98,0.89,0.26,880,0.7000000000000001,232,2.7,0.0000,0.0000 +2012,5,5,4,30,21.200000000000003,1.04,0.039,0.63,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.296,13.540000000000001,119.76,0.89,0.26,880,0.7000000000000001,235,3.3000000000000003,0.0000,0.0000 +2012,5,5,5,30,20.5,1.04,0.04,0.63,0,0,0,0,0,-8.6,0,0,0,0,0.296,13.31,126.15,0.89,0.26,880,0.6000000000000001,241,4,0.0000,0.0000 +2012,5,5,6,30,19.700000000000003,1.06,0.041,0.63,0,0,0,0,0,-9.3,0,0,0,0,0.296,13.25,129.23,0.89,0.26,880,0.6000000000000001,248,4.3,0.0000,0.0000 +2012,5,5,7,30,18.7,1.08,0.042,0.63,0,0,0,0,0,-9.9,0,0,0,0,0.296,13.4,128.4,0.89,0.26,880,0.6000000000000001,254,4.3,0.0000,0.0000 +2012,5,5,8,30,17.7,1.12,0.044,0.63,0,0,0,0,0,-10.4,0,0,0,0,0.296,13.700000000000001,123.83,0.89,0.26,880,0.6000000000000001,257,3.8000000000000003,0.0000,0.0000 +2012,5,5,9,30,16.5,1.1400000000000001,0.045,0.63,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.296,14.65,116.32000000000001,0.89,0.26,880,0.6000000000000001,258,3.1,0.0000,0.0000 +2012,5,5,10,30,15.200000000000001,1.1500000000000001,0.046,0.63,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.296,16.43,106.81,0.89,0.26,880,0.6000000000000001,254,2.4000000000000004,0.0000,0.0000 +2012,5,5,11,30,14.8,1.1400000000000001,0.046,0.63,0,0,0,0,0,-9.5,0,0,0,0,0.296,17.8,95.99000000000001,0.89,0.26,880,0.6000000000000001,250,2.1,0.0000,0.0000 +2012,5,5,12,30,16.900000000000002,1.1400000000000001,0.046,0.63,28,449,73,0,0,-8.9,28,449,0,73,0.297,16.330000000000002,84.23,0.89,0.26,881,0.6000000000000001,248,2.9000000000000004,0.0000,0.0000 +2012,5,5,13,30,20.8,1.16,0.047,0.63,55,763,288,0,3,-9.1,177,40,0,190,0.298,12.57,72.19,0.89,0.26,881,0.6000000000000001,244,3.5,14.0785,10.8669 +2012,5,5,14,30,25.5,1.2,0.049,0.63,71,890,518,0,3,-8.3,282,257,0,411,0.298,10.040000000000001,59.84,0.89,0.26,881,0.6000000000000001,245,3.7,28.0618,21.9172 +2012,5,5,15,30,30.200000000000003,1.25,0.052000000000000005,0.63,83,955,729,0,0,-8.6,83,955,0,729,0.297,7.46,47.480000000000004,0.89,0.26,881,0.6000000000000001,252,4.3,41.8782,32.8608 +2012,5,5,16,30,33.1,1.31,0.055,0.63,92,991,899,0,1,-10.3,92,991,0,899,0.294,5.5600000000000005,35.51,0.89,0.26,881,0.6000000000000001,254,4.800000000000001,53.3869,41.9813 +2012,5,5,17,30,34.5,1.3900000000000001,0.062,0.63,100,1002,1010,7,2,-10.4,297,754,7,982,0.291,5.08,24.810000000000002,0.9,0.26,880,0.7000000000000001,252,5.2,61.0987,48.0952 +2012,5,5,18,30,35.300000000000004,1.54,0.078,0.63,110,1000,1061,7,2,-10.5,290,774,7,1026,0.289,4.84,18.12,0.9,0.26,879,0.7000000000000001,247,5.6000000000000005,65.1230,51.2832 +2012,5,5,19,30,35.6,1.55,0.077,0.63,109,993,1042,0,8,-10.4,349,602,0,915,0.28700000000000003,4.78,20.07,0.9,0.26,879,0.8,244,6,64.1581,50.5184 +2012,5,5,20,30,35.6,1.53,0.07100000000000001,0.63,103,984,963,7,2,-10.3,308,721,7,939,0.28600000000000003,4.83,28.95,0.9,0.26,878,0.8,242,6.2,58.7122,46.2015 +2012,5,5,21,30,35.2,1.47,0.063,0.63,93,961,826,7,3,-10.3,300,664,7,806,0.28500000000000003,4.92,40.34,0.91,0.26,878,0.8,241,6.1000000000000005,49.0926,38.5776 +2012,5,5,22,30,34.5,1.44,0.063,0.63,84,916,641,0,8,-10.8,176,663,0,579,0.28600000000000003,4.92,52.53,0.92,0.26,877,0.7000000000000001,238,5.800000000000001,36.7052,28.7600 +2012,5,5,23,30,32.7,1.44,0.083,0.63,78,800,418,0,8,-11.5,206,346,0,352,0.28600000000000003,5.16,64.91,0.9400000000000001,0.26,877,0.7000000000000001,235,4.800000000000001,22.5022,17.5145 +2012,5,6,0,30,29.200000000000003,1.45,0.105,0.63,59,574,187,0,8,-11.100000000000001,49,518,0,164,0.28600000000000003,6.5,77.16,0.9400000000000001,0.26,877,0.7000000000000001,230,3.4000000000000004,9.2727,7.0961 +2012,5,6,1,30,26.200000000000003,1.46,0.115,0.63,12,84,13,7,6,-9,6,0,7,6,0.28600000000000003,9.16,88.84,0.9500000000000001,0.26,878,0.7000000000000001,224,2.9000000000000004,0.0000,0.0000 +2012,5,6,2,30,24.900000000000002,1.46,0.11900000000000001,0.63,0,0,0,0,7,-9.8,0,0,0,0,0.28700000000000003,9.28,100.47,0.9400000000000001,0.26,878,0.7000000000000001,220,3.4000000000000004,0.0000,0.0000 +2012,5,6,3,30,24,1.45,0.113,0.63,0,0,0,0,8,-10.4,0,0,0,0,0.28800000000000003,9.370000000000001,110.79,0.93,0.26,878,0.7000000000000001,219,3.8000000000000003,0.0000,0.0000 +2012,5,6,4,30,22.700000000000003,1.45,0.097,0.63,0,0,0,0,1,-10.4,0,0,0,0,0.291,10.09,119.53,0.92,0.26,879,0.7000000000000001,222,3.8000000000000003,0.0000,0.0000 +2012,5,6,5,30,21.200000000000003,1.45,0.083,0.63,0,0,0,0,3,-10.3,0,0,0,0,0.294,11.15,125.89,0.91,0.26,879,0.7000000000000001,228,3.6,0.0000,0.0000 +2012,5,6,6,30,19.8,1.46,0.08600000000000001,0.63,0,0,0,0,3,-10.200000000000001,0,0,0,0,0.296,12.26,128.96,0.93,0.26,879,0.7000000000000001,236,3.5,0.0000,0.0000 +2012,5,6,7,30,19,1.48,0.117,0.63,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.298,12.89,128.12,0.9400000000000001,0.26,879,0.8,244,3.3000000000000003,0.0000,0.0000 +2012,5,6,8,30,18.3,1.48,0.145,0.63,0,0,0,0,1,-10.100000000000001,0,0,0,0,0.299,13.52,123.57000000000001,0.9500000000000001,0.26,879,0.8,250,3,0.0000,0.0000 +2012,5,6,9,30,17.3,1.48,0.134,0.63,0,0,0,0,1,-9.9,0,0,0,0,0.299,14.700000000000001,116.09,0.9400000000000001,0.26,879,0.7000000000000001,256,2.6,0.0000,0.0000 +2012,5,6,10,30,16.400000000000002,1.47,0.117,0.63,0,0,0,0,3,-9.5,0,0,0,0,0.3,16.05,106.60000000000001,0.93,0.26,880,0.8,268,2.5,0.0000,0.0000 +2012,5,6,11,30,16.2,1.45,0.106,0.63,0,0,0,0,4,-8.6,0,0,0,0,0.3,17.38,95.8,0.92,0.26,880,0.8,289,3.1,0.0000,0.0000 +2012,5,6,12,30,17.400000000000002,1.43,0.10200000000000001,0.63,34,340,69,7,8,-4.800000000000001,47,7,7,48,0.302,21.6,84.06,0.92,0.26,881,1,320,4.4,0.0000,0.0000 +2012,5,6,13,30,19.400000000000002,1.42,0.10200000000000001,0.63,70,661,274,0,0,2.4000000000000004,70,661,0,274,0.303,32.38,72.03,0.92,0.26,882,1.1,171,5.9,9.5335,7.3605 +2012,5,6,14,30,21.5,1.43,0.10400000000000001,0.63,91,797,494,0,0,7.800000000000001,91,797,0,494,0.304,41.19,59.68,0.92,0.26,883,1.3,8,6.4,22.6801,17.7155 +2012,5,6,15,30,23.5,1.43,0.106,0.63,107,871,697,0,0,8.700000000000001,107,871,0,697,0.303,39,47.32,0.93,0.26,883,1.4000000000000001,11,6.2,42.4844,33.3379 +2012,5,6,16,30,25.400000000000002,1.42,0.10400000000000001,0.63,115,914,861,0,0,8.700000000000001,115,914,0,861,0.303,34.72,35.33,0.92,0.26,883,1.5,11,5.9,54.0061,42.4693 +2012,5,6,17,30,27,1.3900000000000001,0.095,0.63,117,943,975,0,0,8.3,117,943,0,975,0.301,30.82,24.59,0.92,0.26,883,1.6,10,5.5,59.9550,47.1957 +2012,5,6,18,30,28.1,1.31,0.085,0.63,115,957,1026,0,0,7.800000000000001,115,957,0,1026,0.3,27.93,17.84,0.92,0.26,883,1.7000000000000002,10,5.2,63.0482,49.6500 +2012,5,6,19,30,28.700000000000003,1.28,0.079,0.63,111,959,1013,0,0,7.300000000000001,111,959,0,1013,0.3,25.97,19.830000000000002,0.91,0.26,883,1.7000000000000002,11,5,56.1351,44.2017 +2012,5,6,20,30,28.900000000000002,1.25,0.075,0.63,105,947,935,0,0,6.7,105,947,0,935,0.3,24.71,28.77,0.91,0.26,882,1.7000000000000002,14,4.800000000000001,57.0259,44.8752 +2012,5,6,21,30,28.5,1.37,0.085,0.63,102,909,797,0,0,6.300000000000001,102,909,0,797,0.3,24.53,40.2,0.91,0.26,882,1.7000000000000002,18,4.5,47.9210,37.6580 +2012,5,6,22,30,27.700000000000003,1.3800000000000001,0.08600000000000001,0.63,92,854,613,0,0,5.9,92,854,0,613,0.301,25.07,52.4,0.91,0.26,882,1.7000000000000002,22,4.1000000000000005,33.1211,25.9529 +2012,5,6,23,30,26.3,1.4000000000000001,0.088,0.63,78,755,399,0,3,5.6000000000000005,233,199,0,318,0.301,26.7,64.78,0.91,0.26,882,1.7000000000000002,26,3.8000000000000003,18.7876,14.6249 +2012,5,7,0,30,24.200000000000003,1.41,0.091,0.63,54,559,180,0,3,5.5,111,227,0,162,0.303,30,77.03,0.91,0.26,883,1.7000000000000002,31,3.5,7.8859,6.0363 +2012,5,7,1,30,21.8,1.41,0.094,0.63,11,94,13,0,0,5.6000000000000005,11,94,0,13,0.304,34.96,88.7,0.91,0.26,883,1.8,33,3.8000000000000003,0.0000,0.0000 +2012,5,7,2,30,19.8,1.41,0.096,0.63,0,0,0,0,0,6,0,0,0,0,0.306,40.49,100.3,0.92,0.26,884,1.8,35,4.5,0.0000,0.0000 +2012,5,7,3,30,18.2,1.41,0.098,0.63,0,0,0,0,0,6.5,0,0,0,0,0.306,46.43,110.59,0.92,0.26,884,1.8,37,4.800000000000001,0.0000,0.0000 +2012,5,7,4,30,16.5,1.41,0.099,0.63,0,0,0,0,0,7.2,0,0,0,0,0.306,53.99,119.31,0.92,0.26,884,1.8,38,4.800000000000001,0.0000,0.0000 +2012,5,7,5,30,15.100000000000001,1.41,0.101,0.63,0,0,0,0,7,7.7,0,0,0,0,0.306,61.21,125.64,0.92,0.26,884,1.8,39,4.6000000000000005,0.0000,0.0000 +2012,5,7,6,30,14,1.42,0.10400000000000001,0.63,0,0,0,0,7,8,0,0,0,0,0.306,67.28,128.68,0.92,0.26,884,1.8,40,4.3,0.0000,0.0000 +2012,5,7,7,30,13.200000000000001,1.42,0.11,0.63,0,0,0,0,7,8.3,0,0,0,0,0.306,72.04,127.85000000000001,0.92,0.26,884,1.8,37,4,0.0000,0.0000 +2012,5,7,8,30,12.700000000000001,1.42,0.113,0.63,0,0,0,0,7,8.5,0,0,0,0,0.307,75.7,123.31,0.92,0.26,884,1.8,33,4.1000000000000005,0.0000,0.0000 +2012,5,7,9,30,12.4,1.43,0.116,0.63,0,0,0,0,8,8.700000000000001,0,0,0,0,0.309,78.32000000000001,115.86,0.92,0.26,885,1.7000000000000002,33,4.3,0.0000,0.0000 +2012,5,7,10,30,12.3,1.44,0.12,0.63,0,0,0,0,7,8.700000000000001,0,0,0,0,0.31,78.60000000000001,106.4,0.93,0.26,885,1.7000000000000002,34,4.6000000000000005,0.0000,0.0000 +2012,5,7,11,30,12.4,1.45,0.122,0.63,0,0,0,0,0,8.4,0,0,0,0,0.31,76.57000000000001,95.62,0.93,0.26,886,1.7000000000000002,35,4.800000000000001,0.0000,0.0000 +2012,5,7,12,30,13.100000000000001,1.47,0.127,0.63,36,293,67,0,0,7.9,36,293,0,67,0.311,70.88,83.9,0.93,0.26,886,1.8,37,5,0.0000,0.0000 +2012,5,7,13,30,14.700000000000001,1.5,0.131,0.63,76,606,265,7,3,7.800000000000001,103,1,7,103,0.313,63.120000000000005,71.87,0.93,0.26,887,1.8,41,5.2,13.7687,10.6330 +2012,5,7,14,30,16.900000000000002,1.53,0.134,0.63,101,750,482,0,3,7.800000000000001,123,0,0,123,0.315,55.06,59.53,0.93,0.26,887,1.9000000000000001,44,5.1000000000000005,27.2856,21.3147 +2012,5,7,15,30,19.200000000000003,1.53,0.14400000000000002,0.63,122,824,682,0,3,7.800000000000001,228,0,0,228,0.315,47.61,47.17,0.93,0.26,887,1.9000000000000001,46,4.9,40.6407,31.8924 +2012,5,7,16,30,21.200000000000003,1.53,0.165,0.63,143,858,845,0,4,7.6000000000000005,276,1,0,276,0.314,41.57,35.15,0.9400000000000001,0.26,886,1.9000000000000001,46,4.6000000000000005,51.7411,40.6890 +2012,5,7,17,30,23,1.54,0.182,0.63,159,872,953,0,4,7.4,450,11,0,460,0.312,36.69,24.37,0.9400000000000001,0.26,886,2,49,4.1000000000000005,59.5427,46.8718 +2012,5,7,18,30,24.3,1.59,0.212,0.63,176,865,1000,0,3,7.1000000000000005,477,13,0,489,0.311,33.25,17.57,0.9400000000000001,0.26,886,2,53,3.7,63.0620,49.6615 +2012,5,7,19,30,25.1,1.59,0.218,0.63,177,858,986,7,3,6.800000000000001,533,347,7,860,0.31,30.95,19.59,0.9400000000000001,0.26,885,2,58,3.5,62.1606,48.9468 +2012,5,7,20,30,25.3,1.59,0.216,0.63,170,840,908,7,2,6.4,380,579,7,888,0.31,29.91,28.6,0.9400000000000001,0.26,884,2,62,3.6,56.7974,44.6961 +2012,5,7,21,30,24.700000000000003,1.58,0.21,0.63,157,805,773,0,0,6.2,157,805,0,773,0.311,30.5,40.07,0.9400000000000001,0.26,884,2,65,4,47.4017,37.2507 +2012,5,7,22,30,23.5,1.55,0.216,0.63,142,734,591,0,3,6.1000000000000005,359,73,0,403,0.312,32.56,52.28,0.9400000000000001,0.26,884,2,69,4.5,35.0848,27.4928 +2012,5,7,23,30,22,1.53,0.211,0.63,115,623,381,0,7,6.2,225,150,0,290,0.314,35.78,64.66,0.9400000000000001,0.26,884,2,70,5.1000000000000005,16.9892,13.2263 +2012,5,8,0,30,20,1.51,0.20600000000000002,0.63,75,419,170,0,6,6.300000000000001,115,23,0,120,0.316,40.92,76.89,0.9400000000000001,0.26,885,2,68,5.300000000000001,7.7964,5.9692 +2012,5,8,1,30,17.900000000000002,1.51,0.184,0.63,11,51,12,7,9,6.6000000000000005,7,0,7,7,0.318,47.44,88.56,0.93,0.26,885,2,63,5.2,0.0000,0.0000 +2012,5,8,2,30,16.1,1.5,0.163,0.63,0,0,0,0,6,6.7,0,0,0,0,0.32,53.78,100.14,0.93,0.26,886,1.9000000000000001,63,5,0.0000,0.0000 +2012,5,8,3,30,14.9,1.48,0.164,0.63,0,0,0,0,6,6.6000000000000005,0,0,0,0,0.321,57.660000000000004,110.4,0.9400000000000001,0.26,887,2,66,4.7,0.0000,0.0000 +2012,5,8,4,30,14.100000000000001,1.46,0.17500000000000002,0.63,0,0,0,0,6,6.300000000000001,0,0,0,0,0.32,59.480000000000004,119.08,0.9400000000000001,0.26,887,1.9000000000000001,65,4.5,0.0000,0.0000 +2012,5,8,5,30,13.4,1.46,0.166,0.63,0,0,0,0,6,5.9,0,0,0,0,0.317,60.43,125.39,0.9400000000000001,0.26,887,1.9000000000000001,65,4.2,0.0000,0.0000 +2012,5,8,6,30,12.700000000000001,1.48,0.19,0.63,0,0,0,0,6,5.5,0,0,0,0,0.313,61.5,128.41,0.9500000000000001,0.26,888,2,67,3.7,0.0000,0.0000 +2012,5,8,7,30,12.3,1.49,0.298,0.63,0,0,0,0,6,5.1000000000000005,0,0,0,0,0.31,61.63,127.58,0.96,0.26,888,2,64,3.5,0.0000,0.0000 +2012,5,8,8,30,12,1.49,0.362,0.63,0,0,0,0,6,4.6000000000000005,0,0,0,0,0.309,60.57,123.06,0.97,0.26,888,2.1,56,3.3000000000000003,0.0000,0.0000 +2012,5,8,9,30,11.8,1.48,0.36,0.63,0,0,0,0,6,3.9000000000000004,0,0,0,0,0.31,58.52,115.63,0.96,0.26,888,2,48,3.3000000000000003,0.0000,0.0000 +2012,5,8,10,30,11.5,1.49,0.311,0.63,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.313,56.97,106.2,0.96,0.26,888,1.9000000000000001,42,3.6,0.0000,0.0000 +2012,5,8,11,30,11.3,1.5,0.241,0.63,0,0,0,0,7,2.5,0,0,0,0,0.316,54.74,95.44,0.9500000000000001,0.26,888,1.8,44,4,0.0000,0.0000 +2012,5,8,12,30,11.600000000000001,1.5,0.203,0.63,41,224,66,7,6,1.7000000000000002,23,0,7,23,0.319,50.75,83.74,0.9500000000000001,0.26,888,1.8,52,4.3,0.0000,0.0000 +2012,5,8,13,30,12.5,1.49,0.212,0.63,96,522,260,0,0,0.8,96,522,0,260,0.321,44.76,71.72,0.9500000000000001,0.26,889,1.8,57,4.5,5.1835,4.0039 +2012,5,8,14,30,13.8,1.48,0.196,0.63,123,698,478,7,3,0.2,123,698,5,478,0.322,39.300000000000004,59.38,0.9400000000000001,0.26,889,1.7000000000000002,56,4.6000000000000005,6.7996,5.3121 +2012,5,8,15,30,15.5,1.47,0.178,0.63,137,801,683,0,4,0.2,404,88,0,464,0.323,35.38,47.02,0.9400000000000001,0.26,889,1.7000000000000002,55,4.5,13.3007,10.4380 +2012,5,8,16,30,17.400000000000002,1.45,0.17200000000000001,0.63,149,856,850,0,7,0.9,391,348,0,676,0.324,32.84,34.99,0.9500000000000001,0.26,889,1.7000000000000002,61,4.6000000000000005,16.5917,13.0479 +2012,5,8,17,30,18.900000000000002,1.44,0.177,0.63,159,881,963,0,3,1.7000000000000002,551,244,0,773,0.325,31.62,24.16,0.9500000000000001,0.26,888,1.7000000000000002,67,4.7,28.0989,22.1197 +2012,5,8,18,30,20.1,1.52,0.192,0.63,169,884,1013,0,7,2.3000000000000003,360,542,0,878,0.326,30.66,17.3,0.9500000000000001,0.26,888,1.7000000000000002,70,4.3,30.0621,23.6743 +2012,5,8,19,30,20.700000000000003,1.5,0.192,0.63,168,880,999,0,8,2.8000000000000003,359,549,0,877,0.326,30.560000000000002,19.36,0.9500000000000001,0.26,887,1.7000000000000002,76,3.7,52.7831,41.5633 +2012,5,8,20,30,20.8,1.5,0.18,0.63,156,873,923,0,6,3.1,464,228,0,665,0.328,31.11,28.43,0.9400000000000001,0.26,886,1.6,72,3.4000000000000004,53.9552,42.4601 +2012,5,8,21,30,20.900000000000002,1.54,0.159,0.63,137,852,790,0,6,3.3000000000000003,405,114,0,493,0.33,31.35,39.93,0.9400000000000001,0.26,886,1.6,70,3.4000000000000004,45.9884,36.1408 +2012,5,8,22,30,20.5,1.52,0.162,0.63,124,790,608,0,7,3.4000000000000004,322,121,0,397,0.331,32.31,52.15,0.9400000000000001,0.26,886,1.5,75,3.5,23.0769,18.0840 +2012,5,8,23,30,19.6,1.51,0.153,0.63,99,691,397,0,7,3.4000000000000004,211,45,0,231,0.331,34.14,64.53,0.9400000000000001,0.26,886,1.5,75,3.6,15.5068,12.0734 +2012,5,9,0,30,18,1.5,0.155,0.63,68,487,179,0,7,3.3000000000000003,68,487,5,179,0.331,37.65,76.76,0.9400000000000001,0.25,886,1.5,92,2.6,5.7806,4.4270 +2012,5,9,1,30,16.3,1.49,0.17500000000000002,0.63,12,61,14,7,7,3.7,11,0,7,11,0.332,43.15,88.43,0.9400000000000001,0.25,887,1.5,110,1.8,0.0000,0.0000 +2012,5,9,2,30,15.3,1.5,0.171,0.63,0,0,0,0,7,3.8000000000000003,0,0,0,0,0.332,46.160000000000004,99.97,0.9400000000000001,0.25,888,1.5,112,1.8,0.0000,0.0000 +2012,5,9,3,30,14.5,1.49,0.16,0.63,0,0,0,0,4,3.8000000000000003,0,0,0,0,0.333,48.5,110.21000000000001,0.9400000000000001,0.25,888,1.4000000000000001,112,1.6,0.0000,0.0000 +2012,5,9,4,30,13.700000000000001,1.47,0.154,0.63,0,0,0,0,4,3.8000000000000003,0,0,0,0,0.333,51.06,118.86,0.9400000000000001,0.25,888,1.4000000000000001,118,1.4000000000000001,0.0000,0.0000 +2012,5,9,5,30,12.9,1.47,0.151,0.63,0,0,0,0,7,3.7,0,0,0,0,0.334,53.65,125.14,0.9400000000000001,0.25,888,1.4000000000000001,131,1.1,0.0000,0.0000 +2012,5,9,6,30,12.200000000000001,1.46,0.148,0.63,0,0,0,0,7,3.7,0,0,0,0,0.335,55.93,128.15,0.9400000000000001,0.25,888,1.4000000000000001,144,0.9,0.0000,0.0000 +2012,5,9,7,30,11.700000000000001,1.45,0.14400000000000002,0.63,0,0,0,0,1,3.7,0,0,0,0,0.336,57.870000000000005,127.32000000000001,0.9400000000000001,0.25,888,1.4000000000000001,155,0.8,0.0000,0.0000 +2012,5,9,8,30,11.4,1.45,0.136,0.63,0,0,0,0,0,3.7,0,0,0,0,0.337,59.14,122.81,0.93,0.25,888,1.4000000000000001,169,0.7000000000000001,0.0000,0.0000 +2012,5,9,9,30,11.100000000000001,1.46,0.124,0.63,0,0,0,0,0,3.7,0,0,0,0,0.338,60.15,115.41,0.93,0.25,888,1.4000000000000001,201,0.6000000000000001,0.0000,0.0000 +2012,5,9,10,30,10.700000000000001,1.46,0.117,0.63,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.339,62.27,106,0.93,0.25,888,1.4000000000000001,253,0.6000000000000001,0.0000,0.0000 +2012,5,9,11,30,10.700000000000001,1.44,0.116,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.34,62.84,95.27,0.93,0.25,888,1.4000000000000001,293,0.6000000000000001,0.0000,0.0000 +2012,5,9,12,30,12.4,1.42,0.115,0.63,36,327,73,0,0,4.1000000000000005,36,327,0,73,0.34,56.82,83.58,0.93,0.25,889,1.4000000000000001,329,0.6000000000000001,0.0000,0.0000 +2012,5,9,13,30,15.600000000000001,1.41,0.113,0.63,73,640,276,0,0,3.7,73,640,0,276,0.34,45.14,71.57000000000001,0.93,0.25,889,1.4000000000000001,223,1,13.1029,10.1233 +2012,5,9,14,30,18.6,1.3900000000000001,0.11,0.63,94,787,497,0,0,3.1,94,787,0,497,0.34,35.67,59.24,0.93,0.25,889,1.4000000000000001,99,1.8,26.4473,20.6633 +2012,5,9,15,30,20.8,1.37,0.107,0.63,107,871,703,0,0,2.8000000000000003,107,871,0,703,0.34,30.560000000000002,46.87,0.92,0.25,889,1.3,110,2.1,27.0811,21.2532 +2012,5,9,16,30,22.6,1.36,0.10200000000000001,0.63,115,920,870,0,0,2.6,115,920,0,870,0.339,26.830000000000002,34.83,0.92,0.25,888,1.3,124,2.3000000000000003,40.6498,31.9682 +2012,5,9,17,30,24.200000000000003,1.35,0.098,0.63,119,947,985,0,0,2.1,119,947,0,985,0.339,23.650000000000002,23.96,0.92,0.25,887,1.3,138,2.4000000000000004,47.2296,37.1801 +2012,5,9,18,30,25.400000000000002,1.29,0.09,0.63,117,963,1038,0,0,1.7000000000000002,117,963,0,1038,0.338,21.35,17.04,0.92,0.25,886,1.3,148,2.7,53.9876,42.5164 +2012,5,9,19,30,26.200000000000003,1.31,0.09,0.63,117,961,1024,0,0,1.4000000000000001,117,961,0,1024,0.337,19.85,19.13,0.92,0.25,885,1.3,154,2.9000000000000004,53.8372,42.3938 +2012,5,9,20,30,26.5,1.32,0.09,0.63,113,946,946,0,0,1.1,113,946,0,946,0.337,19.1,28.27,0.92,0.25,884,1.3,158,3.1,40.4152,31.8052 +2012,5,9,21,30,26.3,1.36,0.093,0.63,107,912,808,0,0,0.9,107,912,0,808,0.337,19.05,39.800000000000004,0.92,0.25,884,1.3,160,3.2,29.3399,23.0578 +2012,5,9,22,30,25.6,1.3800000000000001,0.096,0.63,97,855,623,0,0,0.8,97,855,0,623,0.337,19.69,52.03,0.92,0.25,883,1.3,163,3.3000000000000003,22.7453,17.8249 +2012,5,9,23,30,24.3,1.3900000000000001,0.10200000000000001,0.63,83,749,407,0,0,0.8,83,749,0,407,0.338,21.32,64.41,0.93,0.25,883,1.4000000000000001,164,3.3000000000000003,12.3637,9.6272 +2012,5,10,0,30,22,1.41,0.108,0.63,59,550,186,0,0,1,59,550,0,186,0.339,24.89,76.63,0.93,0.25,883,1.4000000000000001,166,2.5,8.6305,6.6111 +2012,5,10,1,30,19.5,1.42,0.112,0.63,13,104,16,0,0,2.4000000000000004,13,104,0,16,0.34,32.19,88.29,0.93,0.25,884,1.4000000000000001,167,1.8,0.0000,0.0000 +2012,5,10,2,30,18.2,1.44,0.114,0.63,0,0,0,0,7,2.8000000000000003,0,0,0,0,0.341,35.77,99.81,0.93,0.25,884,1.4000000000000001,167,2,0.0000,0.0000 +2012,5,10,3,30,17.5,1.45,0.116,0.63,0,0,0,0,4,3,0,0,0,0,0.341,38,110.02,0.93,0.25,884,1.5,164,2.2,0.0000,0.0000 +2012,5,10,4,30,16.900000000000002,1.46,0.117,0.63,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.343,40.410000000000004,118.65,0.93,0.25,884,1.5,160,2.3000000000000003,0.0000,0.0000 +2012,5,10,5,30,16.2,1.47,0.11800000000000001,0.63,0,0,0,0,7,3.6,0,0,0,0,0.34500000000000003,43.07,124.9,0.93,0.25,884,1.6,159,2.4000000000000004,0.0000,0.0000 +2012,5,10,6,30,15.600000000000001,1.48,0.12,0.63,0,0,0,0,1,3.9000000000000004,0,0,0,0,0.34700000000000003,45.67,127.89,0.93,0.25,884,1.6,162,2.5,0.0000,0.0000 +2012,5,10,7,30,14.9,1.49,0.121,0.63,0,0,0,0,7,4.3,0,0,0,0,0.34900000000000003,48.96,127.06,0.93,0.25,883,1.7000000000000002,169,2.5,0.0000,0.0000 +2012,5,10,8,30,13.9,1.52,0.124,0.63,0,0,0,0,8,4.800000000000001,0,0,0,0,0.35000000000000003,54.17,122.57000000000001,0.93,0.25,883,1.8,178,2.3000000000000003,0.0000,0.0000 +2012,5,10,9,30,12.8,1.54,0.128,0.63,0,0,0,0,7,5.4,0,0,0,0,0.35000000000000003,60.57,115.2,0.93,0.25,883,1.8,186,1.9000000000000001,0.0000,0.0000 +2012,5,10,10,30,12.100000000000001,1.56,0.135,0.63,0,0,0,0,7,5.9,0,0,0,0,0.34900000000000003,65.89,105.81,0.9400000000000001,0.25,883,1.8,193,1.5,0.0000,0.0000 +2012,5,10,11,30,12.100000000000001,1.58,0.14100000000000001,0.63,0,0,0,0,6,6.4,0,0,0,0,0.34900000000000003,68.26,95.10000000000001,0.9400000000000001,0.25,883,1.8,199,1.4000000000000001,0.0000,0.0000 +2012,5,10,12,30,13.700000000000001,1.58,0.14200000000000002,0.63,38,299,73,7,6,6.9,29,0,7,29,0.34900000000000003,63.440000000000005,83.43,0.9400000000000001,0.25,882,1.8,200,1.5,0.0000,0.0000 +2012,5,10,13,30,16.400000000000002,1.58,0.145,0.63,80,598,271,0,6,7.4,103,7,0,105,0.34800000000000003,55.21,71.43,0.9400000000000001,0.25,882,1.8,183,1.7000000000000002,13.9286,10.7636 +2012,5,10,14,30,18.6,1.58,0.152,0.63,108,739,487,0,6,7.5,196,13,0,203,0.34400000000000003,48.46,59.11,0.9400000000000001,0.25,882,1.8,162,2.2,27.5204,21.5033 +2012,5,10,15,30,19.3,1.58,0.16,0.63,128,813,685,0,6,7,319,37,0,345,0.338,44.79,46.730000000000004,0.9400000000000001,0.25,882,1.9000000000000001,151,2.6,41.0500,32.2170 +2012,5,10,16,30,19.1,1.59,0.153,0.63,138,865,849,0,6,7,427,166,0,564,0.333,45.5,34.67,0.9500000000000001,0.25,882,2,136,2.6,52.3312,41.1556 +2012,5,10,17,30,18.8,1.59,0.151,0.63,144,891,959,0,6,7.2,485,155,0,627,0.33,46.95,23.76,0.9500000000000001,0.25,881,2.1,115,2.6,60.1959,47.3881 +2012,5,10,18,30,18.400000000000002,1.67,0.161,0.63,151,894,1007,0,6,7.4,491,74,0,562,0.326,48.64,16.79,0.9500000000000001,0.25,881,2.2,95,2.6,63.8383,50.2746 +2012,5,10,19,30,17.900000000000002,1.67,0.164,0.63,152,889,993,0,6,7.6000000000000005,481,70,0,547,0.323,50.93,18.900000000000002,0.9500000000000001,0.25,881,2.2,83,2.9000000000000004,62.8734,49.5099 +2012,5,10,20,30,17.2,1.6600000000000001,0.182,0.63,155,857,911,0,6,8,348,8,0,356,0.32,54.7,28.1,0.96,0.25,880,2.3000000000000003,72,3,57.5055,45.2553 +2012,5,10,21,30,16.400000000000002,1.6,0.20400000000000001,0.63,154,802,771,0,6,8.5,274,7,0,279,0.32,59.35,39.660000000000004,0.96,0.25,880,2.4000000000000004,60,2.9000000000000004,48.1010,37.8027 +2012,5,10,22,30,15.700000000000001,1.6,0.20800000000000002,0.63,139,733,592,0,6,8.8,239,16,0,249,0.322,63.49,51.910000000000004,0.96,0.25,880,2.4000000000000004,47,2.8000000000000003,35.7109,27.9867 +2012,5,10,23,30,15.100000000000001,1.59,0.20700000000000002,0.63,114,621,383,0,6,9.1,137,5,0,139,0.325,67.29,64.28,0.96,0.25,880,2.5,44,2.7,21.8025,16.9786 +2012,5,11,0,30,14.5,1.57,0.221,0.63,78,407,173,0,6,9.5,61,1,0,61,0.327,71.79,76.5,0.97,0.25,880,2.5,48,2.7,8.9763,6.8777 +2012,5,11,1,30,14,1.56,0.23,0.63,13,50,15,7,6,10.100000000000001,8,0,7,8,0.328,77.17,88.16,0.97,0.25,880,2.4000000000000004,45,2.8000000000000003,0.0000,0.0000 +2012,5,11,2,30,13.700000000000001,1.57,0.214,0.63,0,0,0,0,4,10.700000000000001,0,0,0,0,0.33,82.21000000000001,99.64,0.96,0.25,880,2.4000000000000004,50,2.9000000000000004,0.0000,0.0000 +2012,5,11,3,30,13.5,1.57,0.197,0.63,0,0,0,0,8,11.200000000000001,0,0,0,0,0.331,86.25,109.83,0.96,0.25,880,2.4000000000000004,75,2.7,0.0000,0.0000 +2012,5,11,4,30,13.3,1.57,0.17500000000000002,0.63,0,0,0,0,4,11.600000000000001,0,0,0,0,0.331,89.73,118.43,0.9500000000000001,0.25,881,2.4000000000000004,98,2.2,0.0000,0.0000 +2012,5,11,5,30,13.100000000000001,1.59,0.148,0.63,0,0,0,0,4,11.8,0,0,0,0,0.33,91.98,124.66,0.9400000000000001,0.25,881,2.4000000000000004,104,1.8,0.0000,0.0000 +2012,5,11,6,30,12.8,1.61,0.146,0.63,0,0,0,0,7,11.8,0,0,0,0,0.328,93.57000000000001,127.63000000000001,0.9400000000000001,0.25,880,2.4000000000000004,93,1.5,0.0000,0.0000 +2012,5,11,7,30,12.600000000000001,1.62,0.159,0.63,0,0,0,0,6,11.600000000000001,0,0,0,0,0.326,93.72,126.8,0.9400000000000001,0.25,880,2.4000000000000004,60,1.6,0.0000,0.0000 +2012,5,11,8,30,12.3,1.6400000000000001,0.157,0.63,0,0,0,0,6,11.3,0,0,0,0,0.324,93.88,122.34,0.9400000000000001,0.25,880,2.4000000000000004,24,2,0.0000,0.0000 +2012,5,11,9,30,12.100000000000001,1.68,0.131,0.63,0,0,0,0,8,11,0,0,0,0,0.323,93.08,114.99000000000001,0.93,0.25,880,2.4000000000000004,185,2.4000000000000004,0.0000,0.0000 +2012,5,11,10,30,12,1.7,0.117,0.63,0,0,0,0,7,10.8,0,0,0,0,0.324,92.08,105.63,0.9400000000000001,0.25,880,2.4000000000000004,357,2.8000000000000003,0.0000,0.0000 +2012,5,11,11,30,12,1.6600000000000001,0.128,0.63,0,0,0,0,6,10.600000000000001,0,0,0,0,0.324,91.31,94.94,0.9500000000000001,0.25,880,2.4000000000000004,353,3.1,0.0000,0.0000 +2012,5,11,12,30,12.5,1.61,0.159,0.63,40,275,72,7,7,10.600000000000001,27,0,7,28,0.323,88.36,83.29,0.96,0.25,881,2.5,354,3.4000000000000004,0.0000,0.0000 +2012,5,11,13,30,13.4,1.59,0.20500000000000002,0.63,94,524,262,0,7,10.700000000000001,153,33,0,163,0.321,83.83,71.3,0.97,0.25,882,2.5,181,3.9000000000000004,5.3058,4.1010 +2012,5,11,14,30,14.700000000000001,1.6,0.256,0.63,141,637,469,0,6,10.5,135,2,0,136,0.318,75.76,58.97,0.97,0.25,883,2.5,10,4.4,11.2490,8.7901 +2012,5,11,15,30,15.9,1.62,0.305,0.63,182,699,662,0,6,10.200000000000001,317,34,0,341,0.316,68.79,46.6,0.97,0.25,884,2.4000000000000004,19,5,20.1544,15.8182 +2012,5,11,16,30,17.1,1.6400000000000001,0.309,0.63,201,754,823,0,7,10.100000000000001,397,46,0,435,0.314,63.32,34.52,0.97,0.25,884,2.4000000000000004,27,5.5,33.9351,26.6886 +2012,5,11,17,30,18.1,1.67,0.28500000000000003,0.63,202,801,936,0,7,9.8,473,59,0,528,0.314,58.2,23.57,0.96,0.25,884,2.4000000000000004,32,5.800000000000001,38.3260,30.1719 +2012,5,11,18,30,18.6,1.67,0.265,0.63,198,828,992,0,7,9.5,437,20,0,456,0.314,55.300000000000004,16.54,0.96,0.25,884,2.3000000000000003,33,5.9,34.5700,27.2253 +2012,5,11,19,30,18.6,1.68,0.242,0.63,187,840,983,0,4,9.200000000000001,491,21,0,511,0.315,54.15,18.68,0.96,0.25,884,2.2,31,5.9,33.5922,26.4526 +2012,5,11,20,30,18.5,1.68,0.222,0.63,173,833,909,0,4,8.8,251,0,0,251,0.315,53.120000000000005,27.94,0.96,0.25,885,2.2,31,5.9,21.6456,17.0347 +2012,5,11,21,30,18.3,1.69,0.211,0.63,157,807,780,0,7,8.4,390,252,0,584,0.315,52.370000000000005,39.53,0.9500000000000001,0.25,885,2,36,5.9,16.6145,13.0577 +2012,5,11,22,30,17.900000000000002,1.68,0.17500000000000002,0.63,128,773,606,0,0,8.1,128,773,0,606,0.315,52.7,51.79,0.9500000000000001,0.25,885,1.9000000000000001,41,5.800000000000001,14.2798,11.1915 +2012,5,11,23,30,17,1.6500000000000001,0.14400000000000002,0.63,96,699,401,0,0,8.1,96,699,0,401,0.315,55.620000000000005,64.16,0.9400000000000001,0.25,886,1.8,46,5.300000000000001,7.4530,5.8046 +2012,5,12,0,30,15.4,1.61,0.129,0.63,64,525,188,0,0,8.3,64,525,0,188,0.317,62.45,76.37,0.9400000000000001,0.26,887,1.7000000000000002,49,4.3,2.9467,2.2583 +2012,5,12,1,30,13.8,1.57,0.13,0.63,15,110,19,0,0,8.8,15,110,0,19,0.319,71.72,88.02,0.9500000000000001,0.26,887,1.6,49,3,0.0000,0.0000 +2012,5,12,2,30,12.8,1.55,0.137,0.63,0,0,0,0,0,9.4,0,0,0,0,0.322,79.68,99.48,0.9500000000000001,0.26,888,1.6,43,2.4000000000000004,0.0000,0.0000 +2012,5,12,3,30,12.200000000000001,1.54,0.14200000000000002,0.63,0,0,0,0,0,9.8,0,0,0,0,0.324,85.55,109.65,0.9500000000000001,0.26,889,1.7000000000000002,38,2.3000000000000003,0.0000,0.0000 +2012,5,12,4,30,11.4,1.55,0.135,0.63,0,0,0,0,7,10.100000000000001,0,0,0,0,0.325,91.48,118.22,0.9500000000000001,0.26,890,1.6,36,2,0.0000,0.0000 +2012,5,12,5,30,10.5,1.55,0.128,0.63,0,0,0,0,7,10,0,0,0,0,0.326,97.01,124.42,0.9400000000000001,0.26,890,1.6,36,1.7000000000000002,0.0000,0.0000 +2012,5,12,6,30,9.8,1.54,0.129,0.63,0,0,0,0,7,9.8,0,0,0,0,0.327,99.74000000000001,127.38000000000001,0.9400000000000001,0.26,890,1.6,33,1.6,0.0000,0.0000 +2012,5,12,7,30,9.200000000000001,1.53,0.131,0.63,0,0,0,0,1,9.200000000000001,0,0,0,0,0.328,100,126.56,0.9400000000000001,0.26,890,1.6,26,1.7000000000000002,0.0000,0.0000 +2012,5,12,8,30,8.700000000000001,1.5,0.129,0.63,0,0,0,0,0,8.700000000000001,0,0,0,0,0.329,100,122.11,0.9400000000000001,0.26,890,1.7000000000000002,18,1.8,0.0000,0.0000 +2012,5,12,9,30,8.3,1.46,0.128,0.63,0,0,0,0,0,8.3,0,0,0,0,0.329,100,114.78,0.9400000000000001,0.26,890,1.7000000000000002,13,2,0.0000,0.0000 +2012,5,12,10,30,8,1.44,0.129,0.63,0,0,0,0,0,8,0,0,0,0,0.329,100,105.45,0.9400000000000001,0.26,891,1.7000000000000002,12,2.2,0.0000,0.0000 +2012,5,12,11,30,8.3,1.45,0.133,0.63,0,0,0,0,0,7.800000000000001,0,0,0,0,0.328,96.36,94.78,0.9400000000000001,0.26,891,1.7000000000000002,13,2.6,0.0000,0.0000 +2012,5,12,12,30,10,1.45,0.14100000000000001,0.63,40,303,77,0,0,7.6000000000000005,40,303,0,77,0.328,84.95,83.14,0.9400000000000001,0.26,892,1.8,20,3.3000000000000003,0.0000,0.0000 +2012,5,12,13,30,12.9,1.46,0.14300000000000002,0.63,82,600,275,0,0,7.2,82,600,0,275,0.328,68.4,71.16,0.9400000000000001,0.26,892,1.8,33,3.9000000000000004,8.2465,6.3751 +2012,5,12,14,30,15.700000000000001,1.47,0.145,0.63,107,744,492,0,0,6.6000000000000005,107,744,0,492,0.328,54.58,58.85,0.9400000000000001,0.26,893,1.8,43,4.2,7.5422,5.8940 +2012,5,12,15,30,18.1,1.47,0.147,0.63,126,822,691,0,0,5.800000000000001,126,822,0,691,0.327,44.52,46.47,0.9500000000000001,0.26,893,1.9000000000000001,47,4.1000000000000005,19.9289,15.6417 +2012,5,12,16,30,20,1.46,0.149,0.63,138,868,855,0,0,5.4,138,868,0,855,0.327,38.51,34.37,0.9500000000000001,0.26,893,1.9000000000000001,49,3.7,26.1806,20.5903 +2012,5,12,17,30,21.400000000000002,1.45,0.15,0.63,146,894,966,0,0,5.4,146,894,0,966,0.326,35.230000000000004,23.39,0.9500000000000001,0.26,892,1.9000000000000001,48,3.3000000000000003,32.2812,25.4134 +2012,5,12,18,30,22.3,1.52,0.188,0.63,167,881,1012,0,0,5.6000000000000005,167,881,0,1012,0.326,33.77,16.3,0.9500000000000001,0.26,892,1.9000000000000001,49,2.9000000000000004,28.0547,22.0944 +2012,5,12,19,30,22.700000000000003,1.49,0.185,0.63,165,882,1001,0,1,5.800000000000001,165,882,0,1001,0.326,33.51,18.46,0.9500000000000001,0.26,891,1.8,49,2.6,31.3870,24.7164 +2012,5,12,20,30,22.700000000000003,1.48,0.17,0.63,153,874,926,7,3,6.1000000000000005,531,226,7,731,0.326,34.07,27.79,0.9500000000000001,0.26,891,1.8,50,2.2,15.2647,12.0132 +2012,5,12,21,30,22.6,1.45,0.16,0.63,139,845,792,0,3,6.1000000000000005,465,142,0,575,0.327,34.39,39.4,0.9500000000000001,0.26,890,1.8,54,2,34.7878,27.3409 +2012,5,12,22,30,22.1,1.43,0.15,0.63,121,792,612,0,1,6,121,792,0,612,0.329,35.230000000000004,51.67,0.9500000000000001,0.26,890,1.8,59,2,34.7698,27.2514 +2012,5,12,23,30,21.1,1.42,0.146,0.63,99,692,402,0,1,5.9,99,692,0,402,0.33,37.230000000000004,64.04,0.9500000000000001,0.26,891,1.8,68,2.2,21.5196,16.7615 +2012,5,13,0,30,19.3,1.43,0.14400000000000002,0.63,68,500,187,0,0,5.9,68,500,0,187,0.331,41.39,76.24,0.9500000000000001,0.24,891,1.8,80,1.9000000000000001,9.0903,6.9684 +2012,5,13,1,30,17.1,1.44,0.138,0.63,15,100,19,7,7,6.9,15,1,7,15,0.333,51.160000000000004,87.89,0.9400000000000001,0.24,891,1.8,90,1.8,0.0000,0.0000 +2012,5,13,2,30,15.700000000000001,1.43,0.131,0.63,0,0,0,0,7,6.6000000000000005,0,0,0,0,0.336,54.71,99.32000000000001,0.9400000000000001,0.24,892,1.8,97,2.4000000000000004,0.0000,0.0000 +2012,5,13,3,30,14.8,1.43,0.129,0.63,0,0,0,0,8,6.4,0,0,0,0,0.337,57.230000000000004,109.47,0.9400000000000001,0.24,892,1.8,102,2.7,0.0000,0.0000 +2012,5,13,4,30,13.700000000000001,1.43,0.132,0.63,0,0,0,0,1,6.5,0,0,0,0,0.337,61.72,118.01,0.9400000000000001,0.24,892,1.9000000000000001,107,2.6,0.0000,0.0000 +2012,5,13,5,30,12.700000000000001,1.43,0.138,0.63,0,0,0,0,7,6.6000000000000005,0,0,0,0,0.337,66.41,124.19,0.9400000000000001,0.24,892,1.9000000000000001,113,2.2,0.0000,0.0000 +2012,5,13,6,30,11.8,1.43,0.146,0.63,0,0,0,0,8,6.800000000000001,0,0,0,0,0.337,71.60000000000001,127.14,0.9400000000000001,0.24,892,2,118,1.8,0.0000,0.0000 +2012,5,13,7,30,11,1.44,0.155,0.63,0,0,0,0,8,7.1000000000000005,0,0,0,0,0.337,77.13,126.31,0.9400000000000001,0.24,892,2,124,1.4000000000000001,0.0000,0.0000 +2012,5,13,8,30,10.3,1.45,0.159,0.63,0,0,0,0,8,7.5,0,0,0,0,0.338,82.61,121.88,0.9400000000000001,0.24,892,2,131,1.1,0.0000,0.0000 +2012,5,13,9,30,9.700000000000001,1.45,0.158,0.63,0,0,0,0,0,7.800000000000001,0,0,0,0,0.337,87.83,114.59,0.9400000000000001,0.24,892,2,137,1,0.0000,0.0000 +2012,5,13,10,30,9.200000000000001,1.45,0.158,0.63,0,0,0,0,1,8.1,0,0,0,0,0.337,92.82000000000001,105.27,0.9400000000000001,0.24,892,2,142,0.9,0.0000,0.0000 +2012,5,13,11,30,9.5,1.46,0.16,0.63,0,0,0,0,0,8.4,0,0,0,0,0.337,93.06,94.62,0.9400000000000001,0.24,893,2,151,1.2000000000000002,0.0000,0.0000 +2012,5,13,12,30,11.5,1.46,0.163,0.63,42,280,76,0,0,8.8,42,280,0,76,0.337,83.3,83.01,0.9400000000000001,0.24,893,2,162,2.2,0.0000,0.0000 +2012,5,13,13,30,14.5,1.46,0.168,0.63,87,567,271,0,0,9.3,87,567,0,271,0.338,70.86,71.04,0.9400000000000001,0.24,893,2.1,168,3.2,13.9307,10.7714 +2012,5,13,14,30,17.2,1.45,0.17300000000000001,0.63,115,711,484,0,0,9.3,115,711,0,484,0.34,59.83,58.730000000000004,0.9400000000000001,0.24,893,2.1,168,3.5,27.3032,21.3379 +2012,5,13,15,30,19.3,1.44,0.181,0.63,138,786,681,0,3,9.200000000000001,360,62,0,403,0.341,52.03,46.35,0.9500000000000001,0.24,893,2.2,167,3.4000000000000004,40.4002,31.7100 +2012,5,13,16,30,20.700000000000003,1.43,0.192,0.63,156,829,841,0,4,9.200000000000001,399,12,0,409,0.342,47.62,34.24,0.9500000000000001,0.24,892,2.2,167,3.3000000000000003,51.4725,40.4825 +2012,5,13,17,30,21.200000000000003,1.41,0.20500000000000002,0.63,170,847,948,0,8,9.3,330,6,0,335,0.34400000000000003,46.65,23.21,0.96,0.24,892,2.3000000000000003,168,3.3000000000000003,59.0714,46.5046 +2012,5,13,18,30,21.1,1.41,0.23,0.63,185,841,993,0,6,9.600000000000001,380,9,0,389,0.34400000000000003,47.83,16.06,0.96,0.24,891,2.4000000000000004,169,3.2,62.2724,49.0430 +2012,5,13,19,30,20.5,1.3900000000000001,0.25,0.63,193,825,976,0,8,10,400,13,0,413,0.343,51.1,18.25,0.96,0.24,891,2.4000000000000004,168,3.1,61.4952,48.4262 +2012,5,13,20,30,20,1.3900000000000001,0.254,0.63,188,803,899,0,8,10.5,452,58,0,503,0.342,54.39,27.63,0.96,0.24,890,2.4000000000000004,165,3,44.4650,34.9942 +2012,5,13,21,30,19.6,1.4000000000000001,0.255,0.63,176,762,766,0,7,10.9,366,45,0,401,0.342,57.07,39.28,0.96,0.24,890,2.4000000000000004,160,3,34.2618,26.9281 +2012,5,13,22,30,19,1.41,0.251,0.63,156,696,589,0,6,10.9,202,7,0,207,0.342,59.410000000000004,51.550000000000004,0.96,0.24,889,2.4000000000000004,157,3.3000000000000003,35.1309,27.5353 +2012,5,13,23,30,18.3,1.44,0.225,0.63,121,605,386,0,6,10.9,86,1,0,86,0.343,61.980000000000004,63.92,0.96,0.24,889,2.4000000000000004,155,3.4000000000000004,21.5917,16.8192 +2012,5,14,0,30,16.900000000000002,1.47,0.224,0.63,80,408,178,0,6,11,51,1,0,51,0.343,68.23,76.11,0.96,0.24,889,2.4000000000000004,153,2.7,9.0510,6.9399 +2012,5,14,1,30,15.600000000000001,1.47,0.294,0.63,14,41,16,7,9,11.600000000000001,11,0,7,11,0.342,77.28,87.76,0.96,0.24,889,2.5,152,1.9000000000000001,0.0000,0.0000 +2012,5,14,2,30,14.8,1.45,0.40900000000000003,0.63,0,0,0,0,9,11.5,0,0,0,0,0.343,80.53,99.16,0.97,0.24,890,2.5,160,1.5,0.0000,0.0000 +2012,5,14,3,30,14.4,1.44,0.4,0.63,0,0,0,0,6,11.5,0,0,0,0,0.34400000000000003,82.61,109.29,0.97,0.24,890,2.5,176,1,0.0000,0.0000 +2012,5,14,4,30,14.100000000000001,1.45,0.332,0.63,0,0,0,0,6,11.5,0,0,0,0,0.34500000000000003,84.3,117.81,0.96,0.24,890,2.3000000000000003,166,0.7000000000000001,0.0000,0.0000 +2012,5,14,5,30,13.700000000000001,1.46,0.291,0.63,0,0,0,0,6,11.3,0,0,0,0,0.34600000000000003,85.60000000000001,123.96000000000001,0.96,0.24,890,2.2,136,0.8,0.0000,0.0000 +2012,5,14,6,30,13.3,1.45,0.292,0.63,0,0,0,0,7,11.200000000000001,0,0,0,0,0.34600000000000003,86.83,126.9,0.96,0.24,890,2.2,128,0.9,0.0000,0.0000 +2012,5,14,7,30,13.100000000000001,1.45,0.334,0.63,0,0,0,0,6,11,0,0,0,0,0.34500000000000003,87.10000000000001,126.08,0.96,0.24,889,2.3000000000000003,133,1,0.0000,0.0000 +2012,5,14,8,30,12.8,1.44,0.388,0.63,0,0,0,0,6,10.8,0,0,0,0,0.343,87.81,121.67,0.97,0.24,889,2.2,131,1.1,0.0000,0.0000 +2012,5,14,9,30,12.600000000000001,1.43,0.421,0.63,0,0,0,0,7,10.600000000000001,0,0,0,0,0.34400000000000003,87.89,114.39,0.97,0.24,889,2.2,125,1,0.0000,0.0000 +2012,5,14,10,30,12.3,1.42,0.465,0.63,0,0,0,0,4,10.5,0,0,0,0,0.34500000000000003,89,105.10000000000001,0.97,0.24,889,2.2,131,0.8,0.0000,0.0000 +2012,5,14,11,30,12.3,1.42,0.491,0.63,0,0,0,0,7,10.5,0,0,0,0,0.34800000000000003,88.98,94.47,0.97,0.24,890,2.3000000000000003,137,0.8,0.0000,0.0000 +2012,5,14,12,30,12.5,1.42,0.484,0.63,51,104,64,7,7,10.5,22,0,7,22,0.352,87.67,82.88,0.97,0.24,890,2.3000000000000003,129,1,0.0000,0.0000 +2012,5,14,13,30,13.100000000000001,1.42,0.437,0.63,135,356,251,0,7,10.5,140,12,0,144,0.355,84.04,70.92,0.97,0.24,890,2.3000000000000003,121,1.4000000000000001,13.7432,10.6282 +2012,5,14,14,30,14,1.43,0.382,0.63,177,548,462,0,7,10.5,186,9,0,191,0.357,79.29,58.61,0.97,0.24,890,2.3000000000000003,113,2,26.8771,21.0062 +2012,5,14,15,30,14.8,1.43,0.388,0.63,211,643,656,0,6,10.600000000000001,109,0,0,109,0.356,75.73,46.230000000000004,0.97,0.24,890,2.3000000000000003,109,2.1,23.5708,18.5011 +2012,5,14,16,30,15.200000000000001,1.43,0.405,0.63,239,697,816,0,7,10.5,56,0,0,56,0.353,73.42,34.1,0.97,0.24,890,2.2,111,1.9000000000000001,24.6283,19.3702 +2012,5,14,17,30,15.3,1.44,0.352,0.63,232,761,932,0,6,10.4,147,0,0,148,0.35100000000000003,72.72,23.04,0.97,0.24,890,2.2,113,1.9000000000000001,20.4894,16.1307 +2012,5,14,18,30,15.4,1.44,0.313,0.63,221,796,988,0,6,10.5,221,1,0,221,0.34900000000000003,72.76,15.82,0.97,0.24,890,2.2,112,2.1,23.9407,18.8548 +2012,5,14,19,30,15.4,1.44,0.28800000000000003,0.63,210,807,977,0,6,10.600000000000001,353,6,0,359,0.34600000000000003,73.28,18.04,0.97,0.24,889,2.2,106,2.1,25.3764,19.9836 +2012,5,14,20,30,15.3,1.44,0.26,0.63,191,804,904,0,6,10.700000000000001,176,0,0,176,0.34400000000000003,74.11,27.48,0.97,0.24,889,2.2,101,2.1,30.6029,24.0849 +2012,5,14,21,30,15.4,1.48,0.248,0.63,173,773,772,0,6,10.700000000000001,247,4,0,250,0.343,73.58,39.15,0.96,0.24,889,2.2,100,2.1,23.9004,18.7849 +2012,5,14,22,30,15.4,1.49,0.224,0.63,146,726,599,0,6,10.5,250,18,0,261,0.343,72.72,51.43,0.96,0.24,889,2.1,95,2,11.8881,9.3182 +2012,5,14,23,30,15.100000000000001,1.49,0.202,0.63,115,634,395,0,6,10.3,212,37,0,228,0.343,73.25,63.800000000000004,0.96,0.24,889,2.1,87,1.7000000000000002,4.6230,3.6015 +2012,5,15,0,30,14.3,1.49,0.181,0.63,75,461,186,0,6,10.3,91,129,0,122,0.34400000000000003,77.07000000000001,75.99,0.96,0.24,890,2,70,1.1,2.4709,1.8951 +2012,5,15,1,30,13.100000000000001,1.48,0.155,0.63,17,101,21,7,7,11.3,15,0,7,15,0.34400000000000003,88.55,87.62,0.9500000000000001,0.24,890,2,46,0.6000000000000001,0.0000,0.0000 +2012,5,15,2,30,12.100000000000001,1.44,0.129,0.63,0,0,0,0,0,10.100000000000001,0,0,0,0,0.343,87.34,99.01,0.9400000000000001,0.24,890,1.8,26,0.7000000000000001,0.0000,0.0000 +2012,5,15,3,30,11.4,1.3800000000000001,0.111,0.63,0,0,0,0,0,9.600000000000001,0,0,0,0,0.341,88.43,109.11,0.9400000000000001,0.24,890,1.7000000000000002,13,0.8,0.0000,0.0000 +2012,5,15,4,30,10.8,1.3,0.10200000000000001,0.63,0,0,0,0,0,9.4,0,0,0,0,0.339,91.16,117.60000000000001,0.93,0.24,890,1.6,181,0.8,0.0000,0.0000 +2012,5,15,5,30,10.100000000000001,1.24,0.098,0.63,0,0,0,0,0,9.3,0,0,0,0,0.338,94.95,123.74000000000001,0.93,0.24,890,1.5,347,0.9,0.0000,0.0000 +2012,5,15,6,30,9.4,1.2,0.096,0.63,0,0,0,0,0,9.3,0,0,0,0,0.339,99.01,126.66,0.93,0.24,890,1.4000000000000001,333,0.9,0.0000,0.0000 +2012,5,15,7,30,8.6,1.18,0.093,0.63,0,0,0,0,0,8.6,0,0,0,0,0.339,100,125.85000000000001,0.93,0.24,889,1.3,321,1,0.0000,0.0000 +2012,5,15,8,30,8,1.19,0.09,0.63,0,0,0,0,0,8,0,0,0,0,0.338,100,121.45,0.93,0.24,889,1.3,315,1.1,0.0000,0.0000 +2012,5,15,9,30,7.6000000000000005,1.21,0.08700000000000001,0.63,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.337,100,114.2,0.93,0.24,889,1.2000000000000002,313,1.3,0.0000,0.0000 +2012,5,15,10,30,7.4,1.23,0.08600000000000001,0.63,0,0,0,0,0,7.4,0,0,0,0,0.335,100,104.94,0.9400000000000001,0.24,889,1.2000000000000002,314,1.4000000000000001,0.0000,0.0000 +2012,5,15,11,30,8.1,1.25,0.08600000000000001,0.63,0,0,0,0,0,8.1,0,0,0,0,0.334,100,94.33,0.9400000000000001,0.24,890,1.2000000000000002,316,2,0.0000,0.0000 +2012,5,15,12,30,10.3,1.27,0.08700000000000001,0.63,38,403,89,0,0,8.8,38,403,0,89,0.332,90.68,82.75,0.9400000000000001,0.24,890,1.1,316,2.7,0.0000,0.0000 +2012,5,15,13,30,13.8,1.28,0.081,0.63,67,701,298,0,0,9,67,701,0,298,0.331,72.61,70.8,0.9400000000000001,0.24,890,1.1,310,2.5,7.3107,5.6546 +2012,5,15,14,30,17.8,1.27,0.076,0.63,83,837,520,0,0,8.4,83,837,0,520,0.33,53.99,58.5,0.93,0.24,890,1.1,292,1.4000000000000001,10.6135,8.2956 +2012,5,15,15,30,20.6,1.25,0.076,0.63,95,907,724,0,0,6.4,95,907,0,724,0.328,39.79,46.11,0.93,0.24,890,1.1,238,0.6000000000000001,6.3776,5.0060 +2012,5,15,16,30,22.400000000000002,1.24,0.078,0.63,104,945,888,0,0,5.2,104,945,0,888,0.327,32.72,33.980000000000004,0.93,0.24,890,1.1,180,0.5,3.3729,2.6529 +2012,5,15,17,30,23.700000000000003,1.22,0.079,0.63,110,967,1001,0,0,4.7,110,967,0,1001,0.327,29.150000000000002,22.88,0.93,0.24,890,1.1,126,0.5,9.0536,7.1277 +2012,5,15,18,30,24.6,1.1,0.074,0.63,111,979,1054,0,0,4.3,111,979,0,1054,0.326,26.96,15.6,0.93,0.24,889,1.1,57,0.6000000000000001,13.6035,10.7137 +2012,5,15,19,30,25.400000000000002,1.09,0.077,0.63,112,974,1039,0,0,4,112,974,0,1039,0.326,25.09,17.84,0.93,0.24,889,1.1,22,0.7000000000000001,22.0621,17.3738 +2012,5,15,20,30,25.700000000000003,1.07,0.079,0.63,109,958,960,0,0,3.6,109,958,0,960,0.326,24.05,27.330000000000002,0.93,0.24,888,1.1,16,0.8,10.7101,8.4291 +2012,5,15,21,30,25.6,1.11,0.084,0.63,104,925,823,0,0,3.3000000000000003,104,925,0,823,0.326,23.67,39.03,0.92,0.24,888,1.1,13,0.9,14.9049,11.7150 +2012,5,15,22,30,25.1,1.1,0.085,0.63,95,871,639,0,0,3,95,871,0,639,0.326,23.82,51.31,0.92,0.24,888,1.1,11,0.8,14.9965,11.7550 +2012,5,15,23,30,24.1,1.1,0.085,0.63,80,779,425,0,0,2.7,80,779,0,425,0.326,24.78,63.690000000000005,0.92,0.24,888,1.1,183,0.7000000000000001,12.2668,9.5571 +2012,5,16,0,30,22.3,1.11,0.083,0.63,57,607,205,0,0,4,57,607,0,205,0.326,30.29,75.86,0.92,0.23,888,1,311,0.5,5.9165,4.5386 +2012,5,16,1,30,19.900000000000002,1.1400000000000001,0.081,0.63,17,177,25,0,0,6,17,177,0,25,0.327,40.38,87.5,0.92,0.23,888,1,250,0.7000000000000001,0.0000,0.0000 +2012,5,16,2,30,18,1.19,0.08,0.63,0,0,0,0,0,4.7,0,0,0,0,0.327,41.46,98.85000000000001,0.92,0.23,889,1,235,1,0.0000,0.0000 +2012,5,16,3,30,16.6,1.24,0.08,0.63,0,0,0,0,0,4.4,0,0,0,0,0.326,44.49,108.93,0.91,0.23,889,1,237,1.2000000000000002,0.0000,0.0000 +2012,5,16,4,30,15.200000000000001,1.29,0.081,0.63,0,0,0,0,0,4.3,0,0,0,0,0.325,48,117.41,0.91,0.23,889,1,242,1.3,0.0000,0.0000 +2012,5,16,5,30,14,1.33,0.082,0.63,0,0,0,0,0,4,0,0,0,0,0.324,50.86,123.52,0.91,0.23,889,1,248,1.4000000000000001,0.0000,0.0000 +2012,5,16,6,30,13,1.34,0.084,0.63,0,0,0,0,0,3.7,0,0,0,0,0.323,53.14,126.43,0.91,0.23,889,1,256,1.4000000000000001,0.0000,0.0000 +2012,5,16,7,30,12.3,1.35,0.085,0.63,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.321,54.46,125.62,0.91,0.23,889,0.9,263,1.5,0.0000,0.0000 +2012,5,16,8,30,11.600000000000001,1.35,0.08600000000000001,0.63,0,0,0,0,0,3.2,0,0,0,0,0.32,56.27,121.25,0.91,0.23,888,0.9,270,1.6,0.0000,0.0000 +2012,5,16,9,30,11.100000000000001,1.34,0.08700000000000001,0.63,0,0,0,0,0,3.1,0,0,0,0,0.319,57.72,114.02,0.91,0.23,888,0.9,276,1.7000000000000002,0.0000,0.0000 +2012,5,16,10,30,10.600000000000001,1.33,0.08700000000000001,0.63,0,0,0,0,0,3,0,0,0,0,0.318,59.29,104.78,0.91,0.23,889,0.9,281,1.8,0.0000,0.0000 +2012,5,16,11,30,10.9,1.32,0.088,0.63,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.317,57.49,94.19,0.91,0.23,889,0.9,286,2,0.0000,0.0000 +2012,5,16,12,30,13.3,1.31,0.088,0.63,38,415,91,0,0,3.2,38,415,0,91,0.317,50.550000000000004,82.63,0.91,0.23,889,0.9,290,2.8000000000000003,0.0000,0.0000 +2012,5,16,13,30,16.900000000000002,1.31,0.089,0.63,68,701,300,0,0,3.1,68,701,0,300,0.318,39.71,70.69,0.91,0.23,889,0.9,291,3.2,15.1457,11.7166 +2012,5,16,14,30,21.1,1.31,0.089,0.63,87,832,523,0,0,3.7,87,832,0,523,0.318,31.85,58.39,0.91,0.23,889,0.9,278,2.2,28.9127,22.5998 +2012,5,16,15,30,24.400000000000002,1.31,0.088,0.63,99,904,727,0,0,2.9000000000000004,99,904,0,727,0.318,24.62,46.01,0.91,0.23,889,0.9,240,1.5,42.3769,33.2643 +2012,5,16,16,30,26.1,1.32,0.088,0.63,108,946,893,0,0,3.1,108,946,0,893,0.316,22.61,33.86,0.91,0.23,889,0.9,207,1.6,53.4968,42.0765 +2012,5,16,17,30,27.3,1.33,0.08700000000000001,0.63,113,969,1007,0,0,2.9000000000000004,113,969,0,1007,0.313,20.73,22.72,0.91,0.23,889,0.9,198,2,61.2447,48.2172 +2012,5,16,18,30,28.200000000000003,1.32,0.085,0.63,114,976,1055,0,0,2.5,114,976,0,1055,0.311,19.13,15.38,0.91,0.23,888,1,196,2.3000000000000003,64.8879,51.1043 +2012,5,16,19,30,28.8,1.32,0.084,0.63,113,975,1042,0,0,2.2,113,975,0,1042,0.309,18.05,17.64,0.91,0.23,887,1,194,2.6,63.8611,50.2908 +2012,5,16,20,30,29,1.31,0.083,0.63,109,965,967,0,0,1.8,109,965,0,967,0.307,17.44,27.18,0.91,0.23,886,0.9,191,2.8000000000000003,58.4302,45.9866 +2012,5,16,21,30,29,1.25,0.076,0.63,99,942,832,0,0,1.3,99,942,0,832,0.305,16.78,38.9,0.9,0.23,885,0.9,187,2.9000000000000004,49.0802,38.5768 +2012,5,16,22,30,28.400000000000002,1.24,0.075,0.63,89,893,648,0,0,0.6000000000000001,89,893,0,648,0.303,16.55,51.2,0.9,0.23,885,0.9,183,2.9000000000000004,36.7327,28.7941 +2012,5,16,23,30,27,1.25,0.073,0.63,74,807,434,0,0,0.2,74,807,0,434,0.301,17.400000000000002,63.57,0.9,0.23,885,0.9,178,2.4000000000000004,22.8833,17.8300 +2012,5,17,0,30,23.5,1.25,0.07100000000000001,0.63,54,639,211,0,0,4.6000000000000005,54,639,0,211,0.3,29.330000000000002,75.74,0.9,0.23,885,0.9,174,1.6,9.9520,7.6362 +2012,5,17,1,30,19.8,1.25,0.07,0.63,17,214,27,0,0,6.5,17,214,0,27,0.3,41.83,87.37,0.9,0.23,885,0.9,175,1.5,0.0000,0.0000 +2012,5,17,2,30,18.1,1.25,0.07,0.63,0,0,0,0,1,4.2,0,0,0,0,0.3,39.88,98.7,0.9,0.23,885,0.9,182,1.8,0.0000,0.0000 +2012,5,17,3,30,17.1,1.24,0.07100000000000001,0.63,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.3,40.07,108.76,0.9,0.23,886,0.9,192,2.2,0.0000,0.0000 +2012,5,17,4,30,16.400000000000002,1.23,0.073,0.63,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.301,40.07,117.21000000000001,0.9,0.23,886,0.9,201,2.5,0.0000,0.0000 +2012,5,17,5,30,15.700000000000001,1.22,0.075,0.63,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.301,40.38,123.3,0.9,0.23,886,0.8,208,2.8000000000000003,0.0000,0.0000 +2012,5,17,6,30,14.9,1.2,0.075,0.63,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.302,41.34,126.2,0.9,0.23,885,0.8,212,3,0.0000,0.0000 +2012,5,17,7,30,14.100000000000001,1.19,0.076,0.63,0,0,0,0,0,1.8,0,0,0,0,0.303,43.2,125.4,0.9,0.23,885,0.8,216,2.9000000000000004,0.0000,0.0000 +2012,5,17,8,30,13.200000000000001,1.18,0.078,0.63,0,0,0,0,0,2.1,0,0,0,0,0.303,46.77,121.04,0.91,0.23,885,0.8,220,2.8000000000000003,0.0000,0.0000 +2012,5,17,9,30,12.600000000000001,1.18,0.082,0.63,0,0,0,0,0,2.5,0,0,0,0,0.304,50.29,113.84,0.91,0.23,885,0.9,223,2.7,0.0000,0.0000 +2012,5,17,10,30,12.100000000000001,1.19,0.085,0.63,0,0,0,0,1,3,0,0,0,0,0.304,53.86,104.62,0.92,0.23,885,0.9,224,2.7,0.0000,0.0000 +2012,5,17,11,30,12.4,1.22,0.089,0.63,0,0,0,0,1,3.5,0,0,0,0,0.305,54.54,94.06,0.92,0.23,885,1,223,3,0.0000,0.0000 +2012,5,17,12,30,14.3,1.25,0.097,0.63,39,396,91,0,0,4.1000000000000005,39,396,0,91,0.306,50.15,82.51,0.92,0.23,885,1.1,221,3.6,0.0000,0.0000 +2012,5,17,13,30,17.8,1.29,0.109,0.63,75,664,296,0,0,4.7,75,664,0,296,0.306,41.980000000000004,70.58,0.93,0.23,885,1.2000000000000002,214,4.3,15.2627,11.8088 +2012,5,17,14,30,21.900000000000002,1.33,0.117,0.63,98,789,512,0,0,5,98,789,0,512,0.307,33.27,58.29,0.93,0.23,885,1.3,207,5.300000000000001,29.0969,22.7450 +2012,5,17,15,30,25.200000000000003,1.36,0.12,0.63,114,859,712,7,2,3.1,295,588,7,704,0.307,23.830000000000002,45.9,0.9400000000000001,0.23,885,1.4000000000000001,203,6,42.5656,33.4131 +2012,5,17,16,30,27.5,1.3800000000000001,0.116,0.63,121,907,875,0,1,2.1,121,907,0,875,0.307,19.38,33.74,0.93,0.23,884,1.4000000000000001,201,5.9,53.8096,42.3231 +2012,5,17,17,30,29.3,1.3800000000000001,0.111,0.63,125,935,988,0,0,1.7000000000000002,125,935,0,988,0.308,17.01,22.57,0.93,0.23,883,1.4000000000000001,198,5.7,61.6221,48.5147 +2012,5,17,18,30,30.700000000000003,1.25,0.089,0.63,116,960,1043,0,0,1.6,116,960,0,1043,0.308,15.49,15.16,0.92,0.23,882,1.4000000000000001,196,5.7,64.9590,51.1607 +2012,5,17,19,30,31.6,1.24,0.088,0.63,115,958,1029,0,0,1.5,115,958,0,1029,0.309,14.620000000000001,17.44,0.92,0.23,881,1.4000000000000001,195,5.6000000000000005,64.0554,50.4442 +2012,5,17,20,30,32,1.23,0.085,0.63,110,946,952,0,0,1.5,110,946,0,952,0.309,14.290000000000001,27.04,0.92,0.23,880,1.4000000000000001,194,5.6000000000000005,58.8678,46.3315 +2012,5,17,21,30,31.8,1.54,0.122,0.63,117,886,808,0,0,1.5,117,886,0,808,0.309,14.52,38.78,0.91,0.23,880,1.5,193,5.7,49.6314,39.0108 +2012,5,17,22,30,31.1,1.52,0.126,0.63,108,827,627,0,7,1.5,234,467,0,528,0.308,15.14,51.09,0.92,0.23,879,1.5,191,5.6000000000000005,37.2660,29.2131 +2012,5,17,23,30,29.700000000000003,1.49,0.136,0.63,94,716,414,0,6,1.7000000000000002,40,618,0,316,0.307,16.56,63.45,0.92,0.23,879,1.6,186,5.300000000000001,23.3874,18.2244 +2012,5,18,0,30,27,1.46,0.14300000000000002,0.63,68,520,198,0,7,2.6,68,520,5,198,0.304,20.73,75.62,0.93,0.24,878,1.7000000000000002,177,4.800000000000001,10.2533,7.8691 +2012,5,18,1,30,24.200000000000003,1.46,0.14,0.63,19,133,25,0,0,3.2,19,133,0,25,0.302,25.46,87.24,0.92,0.24,879,1.6,169,4.9,0.0000,0.0000 +2012,5,18,2,30,22.200000000000003,1.46,0.131,0.63,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.3,28.150000000000002,98.55,0.92,0.24,879,1.6,167,5.2,0.0000,0.0000 +2012,5,18,3,30,20.6,1.46,0.128,0.63,0,0,0,0,0,3.1,0,0,0,0,0.299,31.48,108.59,0.92,0.24,879,1.6,171,5.1000000000000005,0.0000,0.0000 +2012,5,18,4,30,19.3,1.46,0.124,0.63,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.298,34.730000000000004,117.02,0.91,0.24,879,1.5,176,5.1000000000000005,0.0000,0.0000 +2012,5,18,5,30,18.3,1.45,0.121,0.63,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.298,38.24,123.09,0.91,0.24,879,1.4000000000000001,181,5.2,0.0000,0.0000 +2012,5,18,6,30,17.3,1.45,0.11900000000000001,0.63,0,0,0,0,0,4.5,0,0,0,0,0.298,42.57,125.98,0.91,0.24,879,1.3,185,5.300000000000001,0.0000,0.0000 +2012,5,18,7,30,16.3,1.47,0.123,0.63,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.297,47.56,125.19,0.91,0.24,879,1.3,191,5.1000000000000005,0.0000,0.0000 +2012,5,18,8,30,15.3,1.53,0.13,0.63,0,0,0,0,0,6,0,0,0,0,0.296,53.660000000000004,120.85000000000001,0.91,0.24,878,1.3,195,4.800000000000001,0.0000,0.0000 +2012,5,18,9,30,14.4,1.58,0.134,0.63,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.296,59.42,113.67,0.91,0.24,878,1.2000000000000002,199,4.3,0.0000,0.0000 +2012,5,18,10,30,13.600000000000001,1.57,0.132,0.63,0,0,0,0,0,6.9,0,0,0,0,0.296,64.05,104.48,0.91,0.24,878,1.2000000000000002,207,3.8000000000000003,0.0000,0.0000 +2012,5,18,11,30,13.5,1.52,0.124,0.63,0,0,0,0,0,6.9,0,0,0,0,0.296,64.28,93.93,0.91,0.24,879,1.2000000000000002,216,3.7,0.0000,0.0000 +2012,5,18,12,30,15.200000000000001,1.48,0.11800000000000001,0.63,41,380,91,0,0,6.9,41,380,0,91,0.295,57.56,82.4,0.91,0.24,879,1.1,218,3.9000000000000004,0.0000,0.0000 +2012,5,18,13,30,18.8,1.47,0.114,0.63,75,668,298,0,0,7,75,668,0,298,0.295,46.14,70.48,0.91,0.24,879,1.1,218,4,15.0743,11.6647 +2012,5,18,14,30,23.5,1.45,0.11,0.63,94,807,519,0,0,7,94,807,0,519,0.296,34.660000000000004,58.2,0.91,0.24,879,1.1,221,4.1000000000000005,28.5004,22.2798 +2012,5,18,15,30,28.3,1.36,0.099,0.63,104,889,723,0,0,4.9,104,889,0,723,0.296,22.56,45.81,0.91,0.24,879,1.1,233,4.4,41.2328,32.3677 +2012,5,18,16,30,31.5,1.23,0.085,0.63,107,945,894,0,0,-0.30000000000000004,107,945,0,894,0.295,12.92,33.63,0.91,0.24,878,1,241,4.7,52.7362,41.4794 +2012,5,18,17,30,33.2,1.1500000000000001,0.075,0.63,107,975,1009,0,0,-2,107,975,0,1009,0.295,10.370000000000001,22.43,0.91,0.24,878,1,236,5,60.4687,47.6071 +2012,5,18,18,30,34.300000000000004,0.98,0.061,0.63,103,990,1059,0,0,-2.3000000000000003,103,990,0,1059,0.294,9.55,14.96,0.91,0.24,877,1.1,229,5.4,64.2293,50.5865 +2012,5,18,19,30,35,0.98,0.06,0.63,101,989,1046,0,0,-2.2,101,989,0,1046,0.294,9.27,17.25,0.91,0.24,876,1.1,225,5.800000000000001,63.2658,49.8229 +2012,5,18,20,30,35.2,0.96,0.063,0.63,101,972,968,0,8,-2.1,281,649,0,860,0.294,9.21,26.900000000000002,0.92,0.24,876,1.1,224,6.2,57.9651,45.6216 +2012,5,18,21,30,34.800000000000004,0.81,0.057,0.63,93,949,834,0,8,-2.3000000000000003,216,684,0,750,0.294,9.31,38.660000000000004,0.93,0.24,875,1.1,224,6.6000000000000005,48.2126,37.8963 +2012,5,18,22,30,33.5,0.72,0.051000000000000004,0.63,81,907,652,0,8,-2.8000000000000003,136,724,0,592,0.295,9.63,50.97,0.93,0.24,875,1.1,224,6.5,30.3778,23.8142 +2012,5,18,23,30,31.5,0.73,0.048,0.63,68,833,442,0,0,-3.1,68,833,0,442,0.297,10.55,63.34,0.93,0.24,875,1,224,5.4,17.0427,13.2816 +2012,5,19,0,30,28.200000000000003,0.76,0.045,0.63,50,681,220,0,7,-2.1,50,681,5,220,0.299,13.76,75.5,0.93,0.24,875,0.9,216,3.8000000000000003,9.6312,7.3933 +2012,5,19,1,30,24.700000000000003,0.8,0.047,0.63,19,260,32,7,8,0.1,25,6,7,25,0.3,19.88,87.11,0.92,0.24,875,0.8,200,2.9000000000000004,0.0000,0.0000 +2012,5,19,2,30,22.900000000000002,0.88,0.057,0.63,0,0,0,0,7,0,0,0,0,0,0.302,21.86,98.4,0.92,0.24,876,0.8,182,3.5,0.0000,0.0000 +2012,5,19,3,30,22,1.01,0.069,0.63,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.302,23.66,108.42,0.92,0.24,876,0.9,173,4.6000000000000005,0.0000,0.0000 +2012,5,19,4,30,20.700000000000003,1.17,0.084,0.63,0,0,0,0,7,3.2,0,0,0,0,0.303,31.45,116.83,0.92,0.24,877,1,175,5.5,0.0000,0.0000 +2012,5,19,5,30,19.5,1.27,0.097,0.63,0,0,0,0,7,7.1000000000000005,0,0,0,0,0.304,44.65,122.88,0.92,0.24,877,1.2000000000000002,183,6,0.0000,0.0000 +2012,5,19,6,30,18.6,1.29,0.106,0.63,0,0,0,0,1,9.9,0,0,0,0,0.306,56.84,125.77,0.92,0.24,877,1.3,190,6.1000000000000005,0.0000,0.0000 +2012,5,19,7,30,17.7,1.27,0.106,0.63,0,0,0,0,0,11.3,0,0,0,0,0.307,65.93,124.98,0.92,0.24,878,1.3,194,5.5,0.0000,0.0000 +2012,5,19,8,30,16.7,1.22,0.10200000000000001,0.63,0,0,0,0,0,11.700000000000001,0,0,0,0,0.307,72.41,120.66,0.92,0.24,878,1.3,201,4.6000000000000005,0.0000,0.0000 +2012,5,19,9,30,15.700000000000001,1.1400000000000001,0.095,0.63,0,0,0,0,0,11.700000000000001,0,0,0,0,0.306,77,113.51,0.92,0.24,878,1.2000000000000002,212,3.5,0.0000,0.0000 +2012,5,19,10,30,14.600000000000001,1.11,0.091,0.63,0,0,0,0,0,11.4,0,0,0,0,0.305,81.05,104.33,0.92,0.24,879,1.1,226,2.6,0.0000,0.0000 +2012,5,19,11,30,14.5,1.18,0.096,0.63,0,0,0,0,0,10.5,0,0,0,0,0.304,77.11,93.81,0.91,0.24,879,1,240,2.6,0.0000,0.0000 +2012,5,19,12,30,16.400000000000002,1.28,0.106,0.63,41,398,94,0,0,9.3,41,398,0,94,0.302,62.68,82.3,0.91,0.24,879,0.9,251,3.2,0.0000,0.0000 +2012,5,19,13,30,19.900000000000002,1.37,0.113,0.63,75,681,303,0,0,7.4,75,681,0,303,0.301,44.37,70.38,0.9,0.24,880,0.8,262,3.4000000000000004,15.1899,11.7557 +2012,5,19,14,30,24.5,1.42,0.116,0.63,96,813,525,0,0,5,96,813,0,525,0.3,28.42,58.1,0.89,0.24,880,0.8,283,3.8000000000000003,28.9041,22.5964 +2012,5,19,15,30,28.1,1.45,0.117,0.63,110,891,732,0,0,-3.3000000000000003,110,891,0,732,0.299,12.66,45.72,0.89,0.24,881,0.7000000000000001,295,4.4,42.3572,33.2510 +2012,5,19,16,30,29.700000000000003,1.47,0.11900000000000001,0.63,121,933,898,0,0,-4.6000000000000005,121,933,0,898,0.297,10.46,33.53,0.89,0.24,881,0.7000000000000001,287,4.2,53.8918,42.3889 +2012,5,19,17,30,31,1.48,0.11900000000000001,0.63,127,957,1012,0,0,-4.6000000000000005,127,957,0,1012,0.296,9.71,22.29,0.89,0.24,881,0.7000000000000001,273,4,61.7628,48.6264 +2012,5,19,18,30,31.900000000000002,1.44,0.112,0.63,126,971,1066,0,0,-4.5,126,971,0,1066,0.295,9.25,14.75,0.89,0.24,880,0.7000000000000001,260,3.9000000000000004,65.2230,51.3695 +2012,5,19,19,30,32.5,1.43,0.112,0.63,126,969,1052,0,0,-4.7,126,969,0,1052,0.294,8.86,17.06,0.89,0.24,880,0.7000000000000001,251,3.9000000000000004,64.3203,50.6537 +2012,5,19,20,30,32.7,1.42,0.111,0.63,122,954,974,0,0,-4.9,122,954,0,974,0.293,8.63,26.76,0.89,0.24,880,0.7000000000000001,246,3.7,52.3729,41.2207 +2012,5,19,21,30,32.5,1.3900000000000001,0.109,0.63,113,920,833,0,0,-5.2,113,920,0,833,0.292,8.540000000000001,38.550000000000004,0.89,0.24,879,0.8,246,3.3000000000000003,44.7637,35.1860 +2012,5,19,22,30,31.900000000000002,1.36,0.109,0.63,103,867,650,0,0,-5.5,103,867,0,650,0.293,8.63,50.86,0.9,0.24,879,0.8,248,2.9000000000000004,34.0757,26.7141 +2012,5,19,23,30,30.400000000000002,1.34,0.108,0.63,87,775,436,0,0,-5.5,87,775,0,436,0.295,9.370000000000001,63.22,0.9,0.24,880,0.8,258,1.8,23.8563,18.5930 +2012,5,20,0,30,27.700000000000003,1.31,0.108,0.63,63,596,213,0,0,1.3,63,596,0,213,0.296,18.13,75.37,0.9,0.24,880,0.8,292,1,10.7120,8.2248 +2012,5,20,1,30,24.200000000000003,1.28,0.11,0.63,20,180,30,0,0,4.2,20,180,0,30,0.298,27.330000000000002,86.98,0.9,0.24,881,0.8,162,1.1,0.0000,0.0000 +2012,5,20,2,30,21.6,1.26,0.112,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.299,26.79,98.25,0.9,0.24,882,0.9,20,1.7000000000000002,0.0000,0.0000 +2012,5,20,3,30,20.200000000000003,1.25,0.116,0.63,0,0,0,0,0,0.9,0,0,0,0,0.299,27.53,108.25,0.9,0.24,882,1,41,2.8000000000000003,0.0000,0.0000 +2012,5,20,4,30,18.900000000000002,1.25,0.123,0.63,0,0,0,0,7,2.1,0,0,0,0,0.301,32.53,116.64,0.91,0.24,883,1.1,48,4.1000000000000005,0.0000,0.0000 +2012,5,20,5,30,17.3,1.27,0.129,0.63,0,0,0,0,8,4.6000000000000005,0,0,0,0,0.305,43.14,122.68,0.91,0.24,884,1.3,49,4.5,0.0000,0.0000 +2012,5,20,6,30,16,1.27,0.133,0.63,0,0,0,0,0,6.300000000000001,0,0,0,0,0.308,52.660000000000004,125.56,0.92,0.24,885,1.5,47,4.2,0.0000,0.0000 +2012,5,20,7,30,15,1.28,0.135,0.63,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.31,59.03,124.78,0.92,0.24,885,1.6,40,4.2,0.0000,0.0000 +2012,5,20,8,30,14.200000000000001,1.28,0.14,0.63,0,0,0,0,0,7.300000000000001,0,0,0,0,0.31,63.24,120.48,0.93,0.24,886,1.7000000000000002,34,4.6000000000000005,0.0000,0.0000 +2012,5,20,9,30,13.5,1.27,0.14300000000000002,0.63,0,0,0,0,0,7.5,0,0,0,0,0.309,67.06,113.35000000000001,0.93,0.24,887,1.7000000000000002,32,5,0.0000,0.0000 +2012,5,20,10,30,12.9,1.26,0.14300000000000002,0.63,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.306,70.35000000000001,104.19,0.93,0.24,887,1.7000000000000002,31,5,0.0000,0.0000 +2012,5,20,11,30,12.700000000000001,1.25,0.14400000000000002,0.63,0,0,0,0,0,7.7,0,0,0,0,0.302,71.67,93.69,0.93,0.24,888,1.7000000000000002,31,5.1000000000000005,0.0000,0.0000 +2012,5,20,12,30,13.8,1.25,0.149,0.63,46,319,89,0,0,7.800000000000001,46,319,0,89,0.3,66.95,82.19,0.93,0.24,888,1.7000000000000002,38,5.7,0.0000,0.0000 +2012,5,20,13,30,16.3,1.26,0.151,0.63,86,601,289,7,3,8.4,106,1,7,107,0.299,59.39,70.29,0.93,0.24,889,1.7000000000000002,47,6,15.4588,11.9654 +2012,5,20,14,30,19.1,1.27,0.155,0.63,112,739,503,0,3,9.5,86,0,0,86,0.299,53.68,58.02,0.93,0.24,889,1.7000000000000002,56,5.7,29.2540,22.8710 +2012,5,20,15,30,21.5,1.27,0.161,0.63,131,812,699,0,3,10.5,299,3,0,301,0.299,49.47,45.63,0.93,0.24,890,1.8,61,5.4,42.8962,33.6748 +2012,5,20,16,30,23.6,1.28,0.162,0.63,143,859,860,0,3,11,463,110,0,554,0.3,45.21,33.43,0.93,0.24,890,1.8,67,5,54.1424,42.5865 +2012,5,20,17,30,25.400000000000002,1.29,0.159,0.63,148,886,969,0,3,11.200000000000001,526,147,0,662,0.3,40.980000000000004,22.16,0.93,0.24,889,1.9000000000000001,72,4.5,61.9553,48.7783 +2012,5,20,18,30,26.8,1.41,0.232,0.63,184,849,1006,7,3,11.100000000000001,582,205,7,781,0.299,37.5,14.56,0.93,0.24,889,2,79,4.1000000000000005,65.6629,51.7163 +2012,5,20,19,30,27.8,1.41,0.22,0.63,177,854,994,0,3,10.9,446,6,0,452,0.299,34.96,16.88,0.93,0.24,888,2,87,3.6,64.6983,50.9519 +2012,5,20,20,30,28.3,1.41,0.20800000000000002,0.63,168,841,919,7,3,10.8,446,450,7,848,0.3,33.57,26.62,0.9400000000000001,0.24,888,2.1,96,3.2,59.3260,46.6937 +2012,5,20,21,30,28.400000000000002,1.3900000000000001,0.187,0.63,149,818,790,0,0,10.600000000000001,149,818,0,790,0.301,32.99,38.43,0.9400000000000001,0.24,887,2.1,105,2.9000000000000004,49.7296,39.0900 +2012,5,20,22,30,27.900000000000002,1.3900000000000001,0.182,0.63,133,759,613,0,2,10.4,375,118,0,450,0.301,33.67,50.75,0.9500000000000001,0.24,887,2.2,113,2.9000000000000004,37.4300,29.3447 +2012,5,20,23,30,26.900000000000002,1.3800000000000001,0.187,0.63,112,650,407,0,2,10.4,262,127,0,320,0.301,35.53,63.11,0.9500000000000001,0.24,887,2.2,116,3,23.5518,18.3572 +2012,5,21,0,30,25.1,1.3900000000000001,0.193,0.63,80,455,196,0,0,10.5,80,455,0,196,0.3,39.910000000000004,75.25,0.96,0.24,888,2.3000000000000003,114,2.7,10.3826,7.9737 +2012,5,21,1,30,23.1,1.3800000000000001,0.212,0.63,22,88,26,0,0,11.4,22,88,0,26,0.3,47.69,86.86,0.96,0.24,888,2.5,109,2.8000000000000003,0.0000,0.0000 +2012,5,21,2,30,21.8,1.3800000000000001,0.215,0.63,0,0,0,0,0,11.700000000000001,0,0,0,0,0.299,52.5,98.10000000000001,0.96,0.24,889,2.5,106,3.5,0.0000,0.0000 +2012,5,21,3,30,21,1.36,0.20700000000000002,0.63,0,0,0,0,0,12,0,0,0,0,0.298,56.27,108.09,0.96,0.24,890,2.6,108,3.7,0.0000,0.0000 +2012,5,21,4,30,20.1,1.34,0.187,0.63,0,0,0,0,0,12.200000000000001,0,0,0,0,0.298,60.26,116.46000000000001,0.96,0.24,890,2.6,112,3.7,0.0000,0.0000 +2012,5,21,5,30,19.200000000000003,1.32,0.17,0.63,0,0,0,0,0,12.200000000000001,0,0,0,0,0.297,63.940000000000005,122.48,0.9500000000000001,0.24,890,2.5,117,3.5,0.0000,0.0000 +2012,5,21,6,30,18.400000000000002,1.3,0.154,0.63,0,0,0,0,0,12.200000000000001,0,0,0,0,0.297,67.12,125.36,0.9500000000000001,0.24,890,2.5,123,3.1,0.0000,0.0000 +2012,5,21,7,30,17.5,1.29,0.138,0.63,0,0,0,0,0,12.200000000000001,0,0,0,0,0.296,70.93,124.58,0.9500000000000001,0.24,890,2.5,128,2.6,0.0000,0.0000 +2012,5,21,8,30,16.6,1.3,0.128,0.63,0,0,0,0,0,12.200000000000001,0,0,0,0,0.296,75.09,120.3,0.9500000000000001,0.24,890,2.5,131,2.1,0.0000,0.0000 +2012,5,21,9,30,15.8,1.31,0.125,0.63,0,0,0,0,0,12.200000000000001,0,0,0,0,0.296,79.4,113.19,0.9400000000000001,0.24,891,2.5,131,1.7000000000000002,0.0000,0.0000 +2012,5,21,10,30,15,1.34,0.125,0.63,0,0,0,0,0,12.3,0,0,0,0,0.295,84.13,104.06,0.9400000000000001,0.24,891,2.5,131,1.5,0.0000,0.0000 +2012,5,21,11,30,15.200000000000001,1.36,0.128,0.63,0,0,0,0,0,12.5,0,0,0,0,0.295,83.71000000000001,93.57000000000001,0.9400000000000001,0.24,891,2.5,132,1.9000000000000001,0.0000,0.0000 +2012,5,21,12,30,17.1,1.3800000000000001,0.129,0.63,44,338,90,7,8,12.700000000000001,50,5,7,51,0.294,75.10000000000001,82.10000000000001,0.9400000000000001,0.24,892,2.5,144,2.7,0.0000,0.0000 +2012,5,21,13,30,20.200000000000003,1.3900000000000001,0.13,0.63,80,611,287,0,7,12.9,160,33,0,171,0.294,62.870000000000005,70.2,0.9400000000000001,0.24,892,2.5,169,3.1,5.4635,4.2293 +2012,5,21,14,30,23,1.3900000000000001,0.127,0.63,101,750,499,0,6,12.700000000000001,191,13,0,198,0.294,52.22,57.94,0.9400000000000001,0.24,892,2.5,178,3.2,4.7941,3.7482 +2012,5,21,15,30,25.1,1.3900000000000001,0.125,0.63,115,827,695,0,7,12.4,280,397,0,558,0.293,45.24,45.550000000000004,0.9400000000000001,0.24,892,2.5,169,3.2,17.6438,13.8512 +2012,5,21,16,30,26.5,1.4000000000000001,0.126,0.63,126,871,854,0,0,12.600000000000001,126,871,0,854,0.293,42.07,33.34,0.9400000000000001,0.24,891,2.5,161,3.4000000000000004,33.4078,26.2777 +2012,5,21,17,30,27.400000000000002,1.41,0.127,0.63,132,896,963,0,0,12.9,132,896,0,963,0.292,40.660000000000004,22.03,0.9400000000000001,0.24,891,2.5,156,3.5,40.5333,31.9128 +2012,5,21,18,30,27.900000000000002,1.27,0.094,0.63,119,926,1016,0,0,12.9,119,926,0,1016,0.291,39.68,14.370000000000001,0.9400000000000001,0.24,890,2.6,155,3.7,48.1133,37.8945 +2012,5,21,19,30,28,1.29,0.097,0.63,120,922,1003,0,0,12.8,120,922,0,1003,0.29,39.160000000000004,16.7,0.9400000000000001,0.24,890,2.6,155,3.9000000000000004,27.8018,21.8949 +2012,5,21,20,30,27.900000000000002,1.31,0.10400000000000001,0.63,119,900,925,0,0,12.700000000000001,119,900,0,925,0.289,38.96,26.490000000000002,0.9400000000000001,0.24,889,2.7,155,4.1000000000000005,51.6605,40.6609 +2012,5,21,21,30,27.8,1.35,0.114,0.63,117,863,794,0,0,12.3,117,863,0,794,0.289,38.35,38.32,0.9400000000000001,0.24,888,2.6,155,4.2,47.1749,37.0826 +2012,5,21,22,30,27.400000000000002,1.3800000000000001,0.124,0.63,110,800,617,0,0,11.8,110,800,0,617,0.289,38.01,50.64,0.9500000000000001,0.24,888,2.6,156,4.4,25.9239,20.3248 +2012,5,21,23,30,26.5,1.42,0.128,0.63,93,704,413,0,1,11.4,93,704,0,413,0.289,38.92,63,0.9400000000000001,0.24,888,2.5,156,4.4,17.2987,13.4843 +2012,5,22,0,30,24.700000000000003,1.44,0.127,0.63,67,529,202,0,8,11.4,121,245,0,184,0.28800000000000003,43.230000000000004,75.14,0.9400000000000001,0.24,887,2.5,154,4,9.5637,7.3464 +2012,5,22,1,30,22.700000000000003,1.45,0.128,0.63,21,155,30,7,6,11.8,21,1,7,21,0.289,50.07,86.73,0.9400000000000001,0.24,887,2.5,153,3.9000000000000004,0.0000,0.0000 +2012,5,22,2,30,21.5,1.45,0.131,0.63,0,0,0,0,6,11.700000000000001,0,0,0,0,0.289,53.46,97.96000000000001,0.9400000000000001,0.24,888,2.5,156,4.1000000000000005,0.0000,0.0000 +2012,5,22,3,30,20.700000000000003,1.46,0.136,0.63,0,0,0,0,6,11.5,0,0,0,0,0.289,55.71,107.93,0.9400000000000001,0.24,888,2.6,160,4.1000000000000005,0.0000,0.0000 +2012,5,22,4,30,19.900000000000002,1.47,0.14200000000000002,0.63,0,0,0,0,9,11.5,0,0,0,0,0.29,58.45,116.28,0.9400000000000001,0.24,888,2.7,164,4,0.0000,0.0000 +2012,5,22,5,30,19.3,1.48,0.148,0.63,0,0,0,0,9,11.5,0,0,0,0,0.291,60.78,122.29,0.9400000000000001,0.24,887,2.7,167,3.8000000000000003,0.0000,0.0000 +2012,5,22,6,30,18.7,1.49,0.154,0.63,0,0,0,0,9,11.600000000000001,0,0,0,0,0.293,63.440000000000005,125.16,0.9400000000000001,0.24,887,2.8000000000000003,172,3.5,0.0000,0.0000 +2012,5,22,7,30,18.2,1.49,0.158,0.63,0,0,0,0,6,11.700000000000001,0,0,0,0,0.295,65.95,124.39,0.9500000000000001,0.24,887,2.8000000000000003,179,3.2,0.0000,0.0000 +2012,5,22,8,30,17.7,1.5,0.163,0.63,0,0,0,0,6,11.9,0,0,0,0,0.298,68.62,120.13,0.9500000000000001,0.24,887,2.8000000000000003,190,2.9000000000000004,0.0000,0.0000 +2012,5,22,9,30,17.1,1.5,0.161,0.63,0,0,0,0,7,12,0,0,0,0,0.299,71.88,113.04,0.9400000000000001,0.24,887,2.8000000000000003,200,2.5,0.0000,0.0000 +2012,5,22,10,30,16.3,1.51,0.154,0.63,0,0,0,0,7,12,0,0,0,0,0.299,75.79,103.94,0.9400000000000001,0.24,886,2.6,204,2,0.0000,0.0000 +2012,5,22,11,30,16.5,1.54,0.151,0.63,0,0,0,0,6,12,0,0,0,0,0.3,74.69,93.47,0.9400000000000001,0.24,886,2.4000000000000004,206,2.3000000000000003,0.0000,0.0000 +2012,5,22,12,30,18.3,1.58,0.15,0.63,45,330,91,7,7,12,42,2,7,43,0.301,66.63,82,0.93,0.24,886,2.3000000000000003,209,3.4000000000000004,0.0000,0.0000 +2012,5,22,13,30,21.3,1.62,0.152,0.63,84,600,288,0,7,11.700000000000001,153,29,0,163,0.302,54.45,70.12,0.93,0.24,886,2.2,208,4.7,8.7384,6.7653 +2012,5,22,14,30,24.6,1.6400000000000001,0.151,0.63,107,739,500,0,8,11.200000000000001,224,354,0,413,0.302,43.04,57.86,0.93,0.24,885,2.2,206,5.4,11.0423,8.6337 +2012,5,22,15,30,27.400000000000002,1.62,0.145,0.63,121,821,697,0,8,10.9,302,378,0,567,0.302,35.81,45.47,0.93,0.24,884,2.2,203,5.6000000000000005,32.7163,25.6843 +2012,5,22,16,30,29.8,1.58,0.138,0.63,129,871,858,7,2,10.600000000000001,301,657,7,850,0.302,30.42,33.25,0.93,0.24,884,2.2,203,5.6000000000000005,51.5067,40.5142 +2012,5,22,17,30,31.700000000000003,1.54,0.129,0.63,132,900,967,0,0,10.200000000000001,132,900,0,967,0.302,26.580000000000002,21.91,0.93,0.24,883,2.3000000000000003,206,5.6000000000000005,58.9708,46.4294 +2012,5,22,18,30,33.1,1.32,0.08700000000000001,0.63,115,941,1027,0,0,9.8,115,941,0,1027,0.303,23.94,14.19,0.93,0.24,882,2.2,209,5.6000000000000005,62.5977,49.3029 +2012,5,22,19,30,34.1,1.33,0.08600000000000001,0.63,113,939,1014,0,0,9.4,113,939,0,1014,0.304,21.97,16.53,0.93,0.24,881,2.2,211,5.6000000000000005,61.7010,48.5922 +2012,5,22,20,30,34.6,1.34,0.085,0.63,109,928,941,0,0,8.9,109,928,0,941,0.305,20.68,26.36,0.93,0.24,880,2.1,213,5.6000000000000005,56.3606,44.3607 +2012,5,22,21,30,34.5,1.34,0.084,0.63,102,902,811,0,0,8.200000000000001,102,902,0,811,0.306,19.91,38.2,0.92,0.24,879,2,213,5.5,47.4251,37.2799 +2012,5,22,22,30,33.800000000000004,1.35,0.083,0.63,92,855,636,0,0,7.5,92,855,0,636,0.306,19.72,50.53,0.92,0.24,878,1.9000000000000001,212,5.5,35.5594,27.8800 +2012,5,22,23,30,32.5,1.37,0.085,0.63,78,769,429,0,8,7,166,518,0,402,0.305,20.42,62.89,0.91,0.24,878,1.8,207,5.2,22.3428,17.4176 +2012,5,23,0,30,29.700000000000003,1.42,0.093,0.63,59,594,212,0,8,7.1000000000000005,127,172,0,171,0.305,24.13,75.02,0.91,0.24,877,1.8,196,4.3,8.9867,6.9045 +2012,5,23,1,30,26.700000000000003,1.49,0.109,0.63,21,192,33,7,7,7.800000000000001,30,8,7,30,0.304,30.25,86.61,0.92,0.24,877,1.9000000000000001,183,3.9000000000000004,0.0000,0.0000 +2012,5,23,2,30,24.8,1.57,0.129,0.63,0,0,0,0,8,7.5,0,0,0,0,0.302,33.160000000000004,97.82000000000001,0.92,0.24,877,1.9000000000000001,176,4.3,0.0000,0.0000 +2012,5,23,3,30,23.5,1.6300000000000001,0.14200000000000002,0.63,0,0,0,0,1,7.300000000000001,0,0,0,0,0.301,35.32,107.77,0.92,0.24,877,1.8,175,4.6000000000000005,0.0000,0.0000 +2012,5,23,4,30,22.3,1.68,0.145,0.63,0,0,0,0,7,7.4,0,0,0,0,0.301,38.29,116.11,0.91,0.24,877,1.7000000000000002,178,4.7,0.0000,0.0000 +2012,5,23,5,30,21.200000000000003,1.72,0.146,0.63,0,0,0,0,8,8,0,0,0,0,0.302,42.56,122.10000000000001,0.91,0.24,877,1.6,183,4.5,0.0000,0.0000 +2012,5,23,6,30,20.200000000000003,1.73,0.145,0.63,0,0,0,0,0,9,0,0,0,0,0.302,48.39,124.97,0.91,0.24,876,1.5,187,4.3,0.0000,0.0000 +2012,5,23,7,30,19.3,1.71,0.14,0.63,0,0,0,0,0,10,0,0,0,0,0.301,54.730000000000004,124.2,0.9,0.24,875,1.4000000000000001,192,4,0.0000,0.0000 +2012,5,23,8,30,18.400000000000002,1.67,0.127,0.63,0,0,0,0,0,10.700000000000001,0,0,0,0,0.3,60.7,119.96000000000001,0.9,0.24,875,1.3,197,3.6,0.0000,0.0000 +2012,5,23,9,30,17.6,1.62,0.114,0.63,0,0,0,0,0,10.8,0,0,0,0,0.298,64.6,112.9,0.9,0.24,875,1.1,209,3.4000000000000004,0.0000,0.0000 +2012,5,23,10,30,16.7,1.62,0.117,0.63,0,0,0,0,0,10.200000000000001,0,0,0,0,0.297,65.31,103.81,0.9,0.24,875,1,227,3.1,0.0000,0.0000 +2012,5,23,11,30,16.8,1.69,0.139,0.63,0,0,0,0,0,8.5,0,0,0,0,0.296,58.04,93.36,0.9,0.24,875,1,250,3.2,0.0000,0.0000 +2012,5,23,12,30,19.3,1.75,0.153,0.63,44,372,96,0,0,5.300000000000001,44,372,0,96,0.296,39.83,81.92,0.89,0.24,875,0.9,280,4.2,0.0000,0.0000 +2012,5,23,13,30,23.400000000000002,1.76,0.152,0.63,82,645,302,0,0,0.6000000000000001,82,645,0,302,0.296,22.18,70.04,0.89,0.24,875,0.9,301,4.7,8.3356,6.4541 +2012,5,23,14,30,28,1.77,0.152,0.63,106,785,524,0,0,-1.3,106,785,0,524,0.296,14.74,57.79,0.89,0.24,875,0.8,306,5.300000000000001,23.0426,18.0170 +2012,5,23,15,30,31.5,1.79,0.149,0.63,121,869,731,0,0,-4.3,121,869,0,731,0.295,9.620000000000001,45.4,0.89,0.24,875,0.7000000000000001,300,6.1000000000000005,33.2520,26.1052 +2012,5,23,16,30,33.4,1.77,0.136,0.63,127,928,904,0,0,-6.800000000000001,127,928,0,904,0.294,7.16,33.17,0.89,0.24,874,0.6000000000000001,287,6.2,51.2734,40.3311 +2012,5,23,17,30,35,1.6500000000000001,0.111,0.63,123,976,1029,0,0,-8.1,123,976,0,1029,0.293,5.9,21.8,0.89,0.24,874,0.5,274,6.1000000000000005,59.2228,46.6281 +2012,5,23,18,30,36.2,1.53,0.092,0.63,116,998,1085,0,0,-9,116,998,0,1085,0.291,5.19,14.01,0.89,0.24,873,0.5,264,6,63.2824,49.8424 +2012,5,23,19,30,37.1,1.43,0.083,0.63,112,1002,1073,0,0,-9.1,112,1002,0,1073,0.29,4.87,16.36,0.89,0.24,872,0.5,253,6,62.3853,49.1314 +2012,5,23,20,30,37.5,1.42,0.083,0.63,108,982,989,0,0,-9,108,982,0,989,0.29,4.8,26.23,0.89,0.24,871,0.6000000000000001,242,5.9,57.3449,45.1359 +2012,5,23,21,30,37.4,1.49,0.094,0.63,106,945,850,0,0,-8.8,106,945,0,850,0.291,4.92,38.09,0.89,0.24,870,0.6000000000000001,233,5.9,48.4532,38.0887 +2012,5,23,22,30,36.7,1.67,0.11900000000000001,0.63,105,869,658,0,0,-8.4,105,869,0,658,0.291,5.25,50.43,0.89,0.24,869,0.7000000000000001,228,5.800000000000001,36.6696,28.7514 +2012,5,23,23,30,34.800000000000004,1.79,0.139,0.63,94,759,441,0,0,-7.6000000000000005,94,759,0,441,0.29,6.24,62.78,0.89,0.24,869,0.7000000000000001,226,4.800000000000001,21.7638,16.9675 +2012,5,24,0,30,30.900000000000002,1.79,0.137,0.63,67,588,220,0,0,-3.6,67,588,0,220,0.29,10.540000000000001,74.91,0.89,0.24,869,0.7000000000000001,223,3.5,8.3605,6.4248 +2012,5,24,1,30,27.400000000000002,1.6600000000000001,0.12,0.63,22,222,35,0,0,-1,22,222,0,35,0.291,15.610000000000001,86.49,0.89,0.24,869,0.7000000000000001,221,3.4000000000000004,0.0000,0.0000 +2012,5,24,2,30,26.1,1.58,0.121,0.63,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.291,15.3,97.68,0.89,0.24,869,0.7000000000000001,222,4.3,0.0000,0.0000 +2012,5,24,3,30,25.3,1.75,0.20800000000000002,0.63,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.291,14.76,107.62,0.89,0.24,870,0.6000000000000001,227,5.1000000000000005,0.0000,0.0000 +2012,5,24,4,30,24,1.99,0.41500000000000004,0.63,0,0,0,0,0,-4,0,0,0,0,0.29,15.22,115.94,0.88,0.24,870,0.6000000000000001,234,5.4,0.0000,0.0000 +2012,5,24,5,30,22.700000000000003,2.13,0.6,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.289,15.700000000000001,121.92,0.87,0.24,870,0.6000000000000001,243,5.300000000000001,0.0000,0.0000 +2012,5,24,6,30,21.6,2.14,0.53,0.63,0,0,0,0,0,-5.4,0,0,0,0,0.28800000000000003,15.9,124.78,0.87,0.24,870,0.6000000000000001,249,5.2,0.0000,0.0000 +2012,5,24,7,30,20.900000000000002,2,0.295,0.63,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.28700000000000003,16.14,124.03,0.88,0.24,871,0.7000000000000001,253,5.2,0.0000,0.0000 +2012,5,24,8,30,20.1,1.78,0.17500000000000002,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.28600000000000003,17.17,119.8,0.88,0.24,871,0.8,257,4.9,0.0000,0.0000 +2012,5,24,9,30,18.900000000000002,1.58,0.134,0.63,0,0,0,0,1,-4.800000000000001,0,0,0,0,0.28500000000000003,19.68,112.76,0.89,0.24,872,0.9,260,4.1000000000000005,0.0000,0.0000 +2012,5,24,10,30,17.7,1.43,0.114,0.63,0,0,0,0,1,-3.5,0,0,0,0,0.28600000000000003,23.330000000000002,103.7,0.89,0.24,872,0.9,262,3.5,0.0000,0.0000 +2012,5,24,11,30,17.7,1.3800000000000001,0.112,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.28600000000000003,24.98,93.26,0.89,0.24,873,1,265,3.5,0.0000,0.0000 +2012,5,24,12,30,19.3,1.37,0.12,0.63,43,395,99,0,0,-1.9000000000000001,43,395,0,99,0.28600000000000003,23.84,81.84,0.9,0.24,874,1,268,3.7,0.0000,0.0000 +2012,5,24,13,30,22.400000000000002,1.36,0.128,0.63,79,659,305,0,0,-1.1,79,659,0,305,0.28600000000000003,20.81,69.97,0.9,0.24,874,1,279,3.9000000000000004,15.4550,11.9676 +2012,5,24,14,30,25.8,1.33,0.133,0.63,102,784,521,0,0,0.5,102,784,0,521,0.28600000000000003,19.17,57.72,0.9,0.24,875,1.1,293,4.1000000000000005,29.2464,22.8686 +2012,5,24,15,30,28.5,1.28,0.133,0.63,118,859,722,0,0,1.5,118,859,0,722,0.28600000000000003,17.57,45.33,0.9,0.24,875,1.1,294,3.9000000000000004,42.8788,33.6635 +2012,5,24,16,30,30.8,1.24,0.133,0.63,129,903,885,0,0,1.5,129,903,0,885,0.28600000000000003,15.370000000000001,33.1,0.9,0.24,875,1.1,284,3.6,54.5384,42.8997 +2012,5,24,17,30,32.800000000000004,1.22,0.134,0.63,136,927,997,0,0,1,136,927,0,997,0.28500000000000003,13.200000000000001,21.7,0.9,0.24,874,1.1,268,3.6,63.0268,49.6234 +2012,5,24,18,30,34.300000000000004,1.2,0.125,0.63,134,943,1050,0,0,0.4,134,943,0,1050,0.28500000000000003,11.6,13.84,0.9,0.24,874,1.1,251,3.9000000000000004,66.8635,52.6633 +2012,5,24,19,30,35.2,1.28,0.124,0.63,132,942,1036,0,0,-0.4,132,942,0,1036,0.28500000000000003,10.450000000000001,16.19,0.89,0.24,873,1.1,239,4.4,66.0232,51.9968 +2012,5,24,20,30,35.6,1.41,0.12,0.63,125,931,961,0,0,-1.1,125,931,0,961,0.28500000000000003,9.69,26.11,0.89,0.24,873,1.1,232,4.6000000000000005,60.2798,47.4464 +2012,5,24,21,30,35.5,1.57,0.14100000000000001,0.63,126,886,824,0,0,-1.8,126,886,0,824,0.28500000000000003,9.3,37.980000000000004,0.9,0.24,872,1.1,227,4.6000000000000005,50.7953,39.9304 +2012,5,24,22,30,34.9,1.61,0.133,0.63,110,838,646,0,0,-2.1,110,838,0,646,0.28400000000000003,9.370000000000001,50.32,0.9,0.24,872,1.1,221,4.3,37.9523,29.7580 +2012,5,24,23,30,33.4,1.58,0.122,0.63,90,756,437,0,0,-2.2,90,756,0,437,0.28300000000000003,10.13,62.68,0.9,0.24,872,1.1,215,3.4000000000000004,23.8928,18.6288 +2012,5,25,0,30,29.700000000000003,1.5,0.109,0.63,63,600,220,0,0,0.9,63,600,0,220,0.28200000000000003,15.620000000000001,74.79,0.9,0.24,872,1.1,205,2.2,10.7665,8.2754 +2012,5,25,1,30,25.700000000000003,1.4000000000000001,0.095,0.63,22,234,37,0,0,4.6000000000000005,22,234,0,37,0.28200000000000003,25.72,86.37,0.9,0.24,873,1.1,196,1.8,0.0000,0.0000 +2012,5,25,2,30,24,1.29,0.081,0.63,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.281,25.29,97.54,0.9,0.24,874,1.1,195,2.3000000000000003,0.0000,0.0000 +2012,5,25,3,30,23.3,1.21,0.07100000000000001,0.63,0,0,0,0,0,1.8,0,0,0,0,0.281,24.44,107.47,0.9,0.24,874,1.1,200,2.8000000000000003,0.0000,0.0000 +2012,5,25,4,30,22.700000000000003,1.19,0.069,0.63,0,0,0,0,0,1.1,0,0,0,0,0.28,23.990000000000002,115.77,0.9,0.24,874,1.1,207,3.4000000000000004,0.0000,0.0000 +2012,5,25,5,30,22.1,1.24,0.07200000000000001,0.63,0,0,0,0,0,0.5,0,0,0,0,0.28,23.900000000000002,121.74000000000001,0.9,0.24,875,1.1,212,3.9000000000000004,0.0000,0.0000 +2012,5,25,6,30,21.400000000000002,1.3,0.076,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.281,24.580000000000002,124.60000000000001,0.9,0.24,875,1.1,215,4.2,0.0000,0.0000 +2012,5,25,7,30,20.400000000000002,1.34,0.083,0.63,0,0,0,0,0,0.4,0,0,0,0,0.281,26.29,123.85000000000001,0.9,0.24,875,1.1,215,4.1000000000000005,0.0000,0.0000 +2012,5,25,8,30,19.3,1.3900000000000001,0.091,0.63,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.281,28.72,119.65,0.9,0.24,876,1.2000000000000002,215,3.6,0.0000,0.0000 +2012,5,25,9,30,18.2,1.48,0.10200000000000001,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.281,32.02,112.63,0.91,0.24,876,1.3,211,3,0.0000,0.0000 +2012,5,25,10,30,17.2,1.57,0.116,0.63,0,0,0,0,0,2,0,0,0,0,0.28200000000000003,36.12,103.59,0.91,0.24,877,1.3,209,2.5,0.0000,0.0000 +2012,5,25,11,30,17.400000000000002,1.6400000000000001,0.132,0.63,0,0,0,0,0,2.7,0,0,0,0,0.28200000000000003,37.33,93.17,0.91,0.24,877,1.3,215,2.6,0.0000,0.0000 +2012,5,25,12,30,19.700000000000003,1.69,0.146,0.63,45,367,98,0,0,3,45,367,0,98,0.28200000000000003,33.15,81.76,0.91,0.24,878,1.4000000000000001,226,3.2,0.0000,0.0000 +2012,5,25,13,30,23.3,1.72,0.157,0.63,85,623,299,0,0,2.8000000000000003,85,623,0,299,0.28300000000000003,26.150000000000002,69.9,0.91,0.24,879,1.4000000000000001,237,3.4000000000000004,15.6183,12.0952 +2012,5,25,14,30,27.700000000000003,1.75,0.163,0.63,110,753,513,0,0,2.8000000000000003,110,753,0,513,0.28400000000000003,20.18,57.660000000000004,0.91,0.24,879,1.4000000000000001,252,3.5,29.0897,22.7468 +2012,5,25,15,30,31.400000000000002,1.76,0.164,0.63,127,830,712,0,0,2.1,127,830,0,712,0.28500000000000003,15.450000000000001,45.27,0.91,0.24,879,1.4000000000000001,250,3.6,42.3597,33.2565 +2012,5,25,16,30,33.9,1.78,0.164,0.63,139,879,876,0,0,1.2000000000000002,139,879,0,876,0.28600000000000003,12.59,33.03,0.91,0.24,879,1.3,229,3.7,53.3985,42.0034 +2012,5,25,17,30,35.7,1.8,0.167,0.63,147,903,987,0,0,-0.4,147,903,0,987,0.28600000000000003,10.19,21.6,0.91,0.24,878,1.3,211,4.3,61.0728,48.0852 +2012,5,25,18,30,36.800000000000004,1.82,0.178,0.63,156,907,1038,0,0,-1.7000000000000002,156,907,0,1038,0.28500000000000003,8.69,13.68,0.92,0.24,878,1.3,200,5.1000000000000005,64.7131,50.9699 +2012,5,25,19,30,37.5,1.83,0.17400000000000002,0.63,154,907,1025,0,0,-2.6,154,907,0,1025,0.28500000000000003,7.82,16.03,0.92,0.24,878,1.3,195,6,63.7541,50.2102 +2012,5,25,20,30,37.5,1.78,0.16,0.63,144,899,953,0,0,-3.1,144,899,0,953,0.28500000000000003,7.54,25.98,0.93,0.24,877,1.3,193,6.800000000000001,58.5819,46.1104 +2012,5,25,21,30,37,1.71,0.164,0.63,137,860,816,0,3,-3.3000000000000003,478,186,0,624,0.28500000000000003,7.65,37.88,0.93,0.24,877,1.4000000000000001,192,7.5,49.2532,38.7188 +2012,5,25,22,30,35.7,1.6500000000000001,0.182,0.63,131,785,634,0,1,-3.2,131,785,0,634,0.28500000000000003,8.25,50.22,0.9400000000000001,0.24,877,1.5,194,7.800000000000001,37.2755,29.2283 +2012,5,25,23,30,33.800000000000004,1.61,0.246,0.63,129,627,418,0,0,-2.9000000000000004,129,627,0,418,0.28600000000000003,9.4,62.57,0.9500000000000001,0.24,878,1.6,195,7.6000000000000005,23.6919,18.4734 +2012,5,26,0,30,31.3,1.62,0.328,0.63,100,377,200,0,0,-2.1,100,377,0,200,0.28600000000000003,11.52,74.68,0.9500000000000001,0.24,878,1.8,192,6.2,10.7779,8.2859 +2012,5,26,1,30,28.3,1.6400000000000001,0.372,0.63,24,74,29,0,0,-0.5,24,74,0,29,0.28600000000000003,15.36,86.25,0.9500000000000001,0.24,879,1.8,187,4.5,0.0000,0.0000 +2012,5,26,2,30,26,1.68,0.356,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.28600000000000003,19.91,97.41,0.9400000000000001,0.24,880,1.9000000000000001,181,3.6,0.0000,0.0000 +2012,5,26,3,30,24.6,1.75,0.314,0.63,0,0,0,0,0,2.2,0,0,0,0,0.28700000000000003,23.13,107.32000000000001,0.93,0.24,880,2,176,3.6,0.0000,0.0000 +2012,5,26,4,30,23.5,1.82,0.28,0.63,0,0,0,0,0,3.1,0,0,0,0,0.28800000000000003,26.47,115.61,0.93,0.24,881,2.2,173,4,0.0000,0.0000 +2012,5,26,5,30,22.6,1.84,0.272,0.63,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.28800000000000003,31.07,121.57000000000001,0.93,0.24,881,2.3000000000000003,172,4.1000000000000005,0.0000,0.0000 +2012,5,26,6,30,21.6,1.84,0.269,0.63,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.28800000000000003,37.89,124.42,0.93,0.24,881,2.3000000000000003,174,4.1000000000000005,0.0000,0.0000 +2012,5,26,7,30,20.6,1.83,0.264,0.63,0,0,0,0,0,8.4,0,0,0,0,0.28700000000000003,45.58,123.69,0.92,0.24,881,2.3000000000000003,177,4.4,0.0000,0.0000 +2012,5,26,8,30,19.900000000000002,1.83,0.26,0.63,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28700000000000003,53.25,119.5,0.92,0.24,881,2.3000000000000003,177,4.800000000000001,0.0000,0.0000 +2012,5,26,9,30,19.5,1.83,0.251,0.63,0,0,0,0,0,11.8,0,0,0,0,0.28700000000000003,61.17,112.5,0.92,0.24,882,2.2,174,4.9,0.0000,0.0000 +2012,5,26,10,30,19.1,1.82,0.24,0.63,0,0,0,0,0,13.4,0,0,0,0,0.28600000000000003,69.35000000000001,103.48,0.93,0.24,882,2.2,170,4.9,0.0000,0.0000 +2012,5,26,11,30,19.200000000000003,1.81,0.229,0.63,0,0,0,0,0,14.600000000000001,0,0,0,0,0.28400000000000003,74.57000000000001,93.08,0.93,0.24,882,2.2,166,5,0.0000,0.0000 +2012,5,26,12,30,20.700000000000003,1.8,0.223,0.63,51,284,92,0,0,15.5,51,284,0,92,0.28200000000000003,71.92,81.68,0.93,0.24,882,2.3000000000000003,165,5.7,0.0000,0.0000 +2012,5,26,13,30,23.700000000000003,1.79,0.22,0.63,98,542,285,0,0,15.5,98,542,0,285,0.281,60.02,69.84,0.93,0.24,883,2.3000000000000003,172,6.9,15.3206,11.8657 +2012,5,26,14,30,26.8,1.78,0.218,0.63,128,685,494,0,0,13.700000000000001,128,685,0,494,0.279,44.58,57.6,0.93,0.24,883,2.3000000000000003,180,7.7,28.6521,22.4052 +2012,5,26,15,30,29.3,1.77,0.215,0.63,147,769,689,0,0,11.8,147,769,0,689,0.278,33.95,45.22,0.93,0.24,882,2.3000000000000003,183,8,41.7805,32.8021 +2012,5,26,16,30,31.200000000000003,1.77,0.211,0.63,159,819,846,0,0,10.600000000000001,159,819,0,846,0.277,28.2,32.96,0.93,0.24,882,2.4000000000000004,184,8.1,52.8618,41.5816 +2012,5,26,17,30,32.9,1.77,0.20500000000000002,0.63,164,851,956,0,0,10.100000000000001,164,851,0,956,0.277,24.76,21.5,0.93,0.24,882,2.4000000000000004,184,8.3,60.4661,47.6078 +2012,5,26,18,30,34,1.71,0.171,0.63,153,881,1009,0,0,10,153,881,0,1009,0.277,23.04,13.52,0.93,0.24,881,2.5,182,8.5,63.9795,50.3924 +2012,5,26,19,30,34.7,1.7,0.185,0.63,158,867,992,0,0,10,158,867,0,992,0.276,22.26,15.870000000000001,0.93,0.24,880,2.6,181,8.700000000000001,63.0842,49.6829 +2012,5,26,20,30,34.800000000000004,1.68,0.199,0.63,159,841,916,0,0,10.200000000000001,159,841,0,916,0.277,22.35,25.86,0.93,0.24,879,2.6,180,8.8,58.1035,45.7343 +2012,5,26,21,30,34.4,1.69,0.244,0.63,168,774,780,0,0,10.3,168,774,0,780,0.278,23.04,37.77,0.9400000000000001,0.24,879,2.7,178,8.9,37.3065,29.3277 +2012,5,26,22,30,33.4,1.6500000000000001,0.255,0.63,154,701,603,0,1,10.4,154,701,0,603,0.278,24.48,50.120000000000005,0.9400000000000001,0.24,879,2.8000000000000003,177,8.8,36.5967,28.6968 +2012,5,26,23,30,32.1,1.6400000000000001,0.261,0.63,129,589,402,0,7,10.5,195,384,0,373,0.278,26.51,62.47,0.9400000000000001,0.24,878,2.9000000000000004,176,8.6,22.6784,17.6845 +2012,5,27,0,30,30.400000000000002,1.6600000000000001,0.267,0.63,90,405,198,0,1,10.700000000000001,90,405,0,198,0.278,29.72,74.57000000000001,0.9400000000000001,0.24,879,2.9000000000000004,172,8.3,9.8076,7.5415 +2012,5,27,1,30,28.400000000000002,1.68,0.261,0.63,25,106,32,7,8,11.200000000000001,22,0,7,22,0.278,34.32,86.14,0.9400000000000001,0.24,879,2.8000000000000003,168,8.200000000000001,0.0000,0.0000 +2012,5,27,2,30,26.700000000000003,1.68,0.255,0.63,0,0,0,0,0,11.700000000000001,0,0,0,0,0.277,39.27,97.28,0.9400000000000001,0.24,879,2.7,167,8.3,0.0000,0.0000 +2012,5,27,3,30,25.200000000000003,1.67,0.251,0.63,0,0,0,0,1,12.200000000000001,0,0,0,0,0.277,44.300000000000004,107.17,0.9400000000000001,0.24,880,2.7,167,8.200000000000001,0.0000,0.0000 +2012,5,27,4,30,23.8,1.6600000000000001,0.24,0.63,0,0,0,0,1,12.600000000000001,0,0,0,0,0.276,49.34,115.45,0.93,0.24,880,2.6,170,7.9,0.0000,0.0000 +2012,5,27,5,30,22.6,1.68,0.225,0.63,0,0,0,0,1,12.8,0,0,0,0,0.276,53.97,121.4,0.93,0.24,880,2.6,174,7.5,0.0000,0.0000 +2012,5,27,6,30,21.700000000000003,1.7,0.227,0.63,0,0,0,0,7,13.100000000000001,0,0,0,0,0.276,58.17,124.25,0.9400000000000001,0.24,880,2.7,181,7.2,0.0000,0.0000 +2012,5,27,7,30,21,1.69,0.23500000000000001,0.63,0,0,0,0,7,13.5,0,0,0,0,0.276,62.25,123.53,0.9400000000000001,0.24,880,2.7,186,6.800000000000001,0.0000,0.0000 +2012,5,27,8,30,20.5,1.67,0.22,0.63,0,0,0,0,7,13.8,0,0,0,0,0.276,65.55,119.36,0.9400000000000001,0.24,880,2.6,190,6.4,0.0000,0.0000 +2012,5,27,9,30,20,1.6500000000000001,0.193,0.63,0,0,0,0,1,14,0,0,0,0,0.276,68.52,112.38,0.9400000000000001,0.24,880,2.5,194,6,0.0000,0.0000 +2012,5,27,10,30,19.5,1.6300000000000001,0.171,0.63,0,0,0,0,0,14.100000000000001,0,0,0,0,0.275,71.21000000000001,103.38,0.93,0.24,880,2.2,197,5.4,0.0000,0.0000 +2012,5,27,11,30,19.3,1.61,0.147,0.63,0,0,0,0,0,14.200000000000001,0,0,0,0,0.275,72.41,93,0.93,0.24,880,1.9000000000000001,200,4.9,0.0000,0.0000 +2012,5,27,12,30,20.400000000000002,1.59,0.125,0.63,45,391,101,0,0,14.200000000000001,45,391,0,101,0.275,67.7,81.62,0.92,0.24,881,1.5,206,4.9,0.0000,0.0000 +2012,5,27,13,30,23,1.59,0.113,0.63,75,674,308,0,0,13.4,75,674,0,308,0.276,54.88,69.78,0.91,0.24,881,1.3,214,5.1000000000000005,14.6111,11.3170 +2012,5,27,14,30,26,1.61,0.107,0.63,92,811,527,0,0,10,92,811,0,527,0.277,36.480000000000004,57.550000000000004,0.9,0.24,881,1.2000000000000002,219,5,27.5996,21.5828 +2012,5,27,15,30,28.700000000000003,1.6300000000000001,0.10300000000000001,0.63,104,888,730,0,0,6,104,888,0,730,0.279,23.8,45.160000000000004,0.9,0.24,881,1.1,224,5.2,40.4368,31.7475 +2012,5,27,16,30,30.8,1.61,0.097,0.63,110,934,894,0,0,2.4000000000000004,110,934,0,894,0.28,16.36,32.9,0.9,0.24,880,1.1,228,5.7,51.0576,40.1627 +2012,5,27,17,30,32.4,1.55,0.08700000000000001,0.63,111,971,1015,0,0,-0.9,111,971,0,1015,0.28200000000000003,11.77,21.42,0.89,0.24,880,0.9,230,6.2,58.5726,46.1173 +2012,5,27,18,30,33.5,1.48,0.078,0.63,109,990,1072,0,0,-3.2,109,990,0,1072,0.28300000000000003,9.32,13.370000000000001,0.89,0.24,879,0.8,231,6.6000000000000005,62.1977,48.9893 +2012,5,27,19,30,34.2,1.3800000000000001,0.069,0.63,104,994,1061,0,0,-4.6000000000000005,104,994,0,1061,0.28400000000000003,8.09,15.72,0.89,0.24,879,0.8,230,6.800000000000001,61.0599,48.0889 +2012,5,27,20,30,34.5,1.25,0.06,0.63,97,993,991,0,0,-5.300000000000001,97,993,0,991,0.28400000000000003,7.54,25.75,0.89,0.24,878,0.7000000000000001,229,6.9,55.8558,43.9655 +2012,5,27,21,30,34.5,0.99,0.048,0.63,86,976,859,0,0,-5.800000000000001,86,976,0,859,0.28600000000000003,7.25,37.67,0.89,0.24,878,0.7000000000000001,228,6.9,46.6440,36.6688 +2012,5,27,22,30,33.9,0.87,0.047,0.63,78,933,678,0,0,-6.4,78,933,0,678,0.28800000000000003,7.17,50.02,0.89,0.24,877,0.7000000000000001,228,6.800000000000001,34.8201,27.3046 +2012,5,27,23,30,32.6,0.93,0.055,0.63,70,846,463,0,0,-6.9,70,846,0,463,0.291,7.4,62.36,0.89,0.24,877,0.7000000000000001,229,6,20.2503,15.7921 +2012,5,28,0,30,29.3,1.06,0.067,0.63,55,676,236,0,0,-6.800000000000001,55,676,0,236,0.294,9.07,74.46000000000001,0.88,0.24,878,0.7000000000000001,228,4.2,9.7191,7.4748 +2012,5,28,1,30,25.1,1.1300000000000001,0.075,0.63,23,289,43,0,0,-3,23,289,0,43,0.295,15.41,86.02,0.88,0.24,879,0.6000000000000001,226,2.8000000000000003,0.0000,0.0000 +2012,5,28,2,30,22.6,1.1,0.076,0.63,0,0,0,0,1,-2.3000000000000003,0,0,0,0,0.296,18.85,97.15,0.89,0.24,879,0.6000000000000001,227,2.7,0.0000,0.0000 +2012,5,28,3,30,21.1,1.05,0.075,0.63,0,0,0,0,1,-2.8000000000000003,0,0,0,0,0.297,19.900000000000002,107.03,0.89,0.24,880,0.5,231,2.8000000000000003,0.0000,0.0000 +2012,5,28,4,30,19.6,1.06,0.076,0.63,0,0,0,0,1,-3.5,0,0,0,0,0.297,20.72,115.3,0.9,0.24,881,0.5,239,2.8000000000000003,0.0000,0.0000 +2012,5,28,5,30,17.900000000000002,1.11,0.077,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.297,21.88,121.24000000000001,0.9,0.24,881,0.4,256,2.6,0.0000,0.0000 +2012,5,28,6,30,16.2,1.16,0.079,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.297,23.87,124.09,0.89,0.24,882,0.4,285,2.4000000000000004,0.0000,0.0000 +2012,5,28,7,30,14.8,1.21,0.079,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.297,25.63,123.38000000000001,0.89,0.24,882,0.4,317,2.4000000000000004,0.0000,0.0000 +2012,5,28,8,30,13.600000000000001,1.27,0.078,0.63,0,0,0,0,0,-4.7,0,0,0,0,0.296,27.69,119.22,0.89,0.24,882,0.4,343,2.4000000000000004,0.0000,0.0000 +2012,5,28,9,30,12.5,1.32,0.074,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.295,29.62,112.27,0.89,0.24,883,0.4,181,2.3000000000000003,0.0000,0.0000 +2012,5,28,10,30,11.5,1.32,0.068,0.63,0,0,0,0,0,-5.2,0,0,0,0,0.295,30.740000000000002,103.29,0.89,0.24,883,0.5,11,2.3000000000000003,0.0000,0.0000 +2012,5,28,11,30,11.600000000000001,1.29,0.065,0.63,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.294,29.19,92.92,0.9,0.24,884,0.5,17,2.9000000000000004,0.0000,0.0000 +2012,5,28,12,30,13.4,1.25,0.063,0.63,38,522,115,0,0,-6.6000000000000005,38,522,0,115,0.294,24.26,81.55,0.9,0.24,884,0.5,23,3.4000000000000004,0.0000,0.0000 +2012,5,28,13,30,17,1.25,0.063,0.63,63,774,331,0,0,-6.800000000000001,63,774,0,331,0.294,19,69.72,0.9,0.24,884,0.5,32,3.4000000000000004,15.7987,12.2377 +2012,5,28,14,30,21.700000000000003,1.27,0.063,0.63,78,881,552,0,0,-7.2,78,881,0,552,0.294,13.77,57.5,0.9,0.24,885,0.6000000000000001,44,3.2,29.4510,23.0311 +2012,5,28,15,30,25.400000000000002,1.28,0.063,0.63,89,944,755,0,0,-7.800000000000001,89,944,0,755,0.293,10.52,45.12,0.9,0.24,884,0.6000000000000001,59,2.2,42.8506,33.6431 +2012,5,28,16,30,28.200000000000003,1.27,0.061,0.63,95,983,921,0,0,-7.5,95,983,0,921,0.293,9.14,32.85,0.9,0.24,884,0.6000000000000001,138,1.2000000000000002,53.9600,42.4460 +2012,5,28,17,30,30.5,1.25,0.06,0.63,100,1003,1034,0,0,-7.9,100,1003,0,1034,0.293,7.76,21.34,0.9,0.24,884,0.6000000000000001,223,1.6,62.1923,48.9675 +2012,5,28,18,30,32.2,1.33,0.068,0.63,106,1013,1091,0,0,-8.6,106,1013,0,1091,0.292,6.67,13.23,0.9,0.24,883,0.5,239,2.7,66.0868,52.0527 +2012,5,28,19,30,33.2,1.33,0.07,0.63,106,1009,1078,0,0,-9.200000000000001,106,1009,0,1078,0.291,6.0200000000000005,15.57,0.9,0.24,882,0.5,241,3.4000000000000004,65.3136,51.4393 +2012,5,28,20,30,33.7,1.35,0.07200000000000001,0.63,104,995,1001,0,0,-9.9,104,995,0,1001,0.291,5.53,25.63,0.9,0.24,881,0.5,244,3.9000000000000004,60.4372,47.5720 +2012,5,28,21,30,33.6,1.3,0.07,0.63,97,970,866,0,0,-10.700000000000001,97,970,0,866,0.291,5.24,37.57,0.9,0.24,881,0.5,249,4.2,51.3791,40.3918 +2012,5,28,22,30,33,1.26,0.067,0.63,87,927,684,0,0,-11.4,87,927,0,684,0.291,5.1000000000000005,49.92,0.9,0.24,880,0.5,257,4.1000000000000005,39.1654,30.7128 +2012,5,28,23,30,31.5,1.21,0.065,0.63,74,859,474,0,0,-12,74,859,0,474,0.291,5.3100000000000005,62.26,0.9,0.24,880,0.4,265,3.4000000000000004,25.1546,19.6182 +2012,5,29,0,30,27.900000000000002,1.19,0.065,0.63,56,707,247,0,0,-8.8,56,707,0,247,0.292,8.43,74.35000000000001,0.9,0.24,880,0.4,275,2,11.5958,8.9199 +2012,5,29,1,30,24.200000000000003,1.19,0.067,0.63,24,329,48,0,0,-0.4,24,329,0,48,0.292,19.69,85.91,0.9,0.24,881,0.4,282,1.3,0.0000,0.0000 +2012,5,29,2,30,23.1,1.24,0.069,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.293,18,97.02,0.9,0.24,881,0.4,278,1.3,0.0000,0.0000 +2012,5,29,3,30,22.5,1.3,0.07100000000000001,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.293,17.2,106.9,0.89,0.24,881,0.4,255,1.1,0.0000,0.0000 +2012,5,29,4,30,21.1,1.35,0.076,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.293,17.47,115.15,0.89,0.24,881,0.4,229,1.2000000000000002,0.0000,0.0000 +2012,5,29,5,30,19.200000000000003,1.43,0.084,0.63,0,0,0,0,0,-4.4,0,0,0,0,0.294,19.94,121.08,0.89,0.24,881,0.4,229,1.3,0.0000,0.0000 +2012,5,29,6,30,17.3,1.55,0.098,0.63,0,0,0,0,0,-4.5,0,0,0,0,0.295,22.18,123.93,0.89,0.24,881,0.4,254,1.5,0.0000,0.0000 +2012,5,29,7,30,15.5,1.69,0.11800000000000001,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.295,24.8,123.23,0.88,0.24,881,0.4,285,1.7000000000000002,0.0000,0.0000 +2012,5,29,8,30,14.3,1.8,0.14200000000000002,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.295,25.72,119.09,0.88,0.24,882,0.4,309,1.8,0.0000,0.0000 +2012,5,29,9,30,13.5,1.9000000000000001,0.168,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.295,26,112.16,0.88,0.24,882,0.4,326,1.9000000000000001,0.0000,0.0000 +2012,5,29,10,30,12.9,1.97,0.195,0.63,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.294,27.09,103.2,0.88,0.24,882,0.4,334,1.9000000000000001,0.0000,0.0000 +2012,5,29,11,30,13.3,2.0300000000000002,0.222,0.63,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.294,27.04,92.85000000000001,0.88,0.24,883,0.4,336,1.9000000000000001,0.0000,0.0000 +2012,5,29,12,30,16,2.08,0.253,0.63,51,338,101,0,0,-4.800000000000001,51,338,0,101,0.294,23.67,81.49,0.88,0.24,883,0.4,334,2.7,0.0000,0.0000 +2012,5,29,13,30,19.5,2.13,0.28500000000000003,0.63,105,563,301,0,0,-5.300000000000001,105,563,0,301,0.294,18.18,69.68,0.88,0.24,884,0.5,329,3,16.9875,13.1596 +2012,5,29,14,30,23.700000000000003,2.17,0.314,0.63,145,685,514,0,0,-4.2,145,685,0,514,0.293,15.31,57.46,0.87,0.24,884,0.5,337,2.4000000000000004,30.8561,24.1305 +2012,5,29,15,30,28.400000000000002,2.19,0.336,0.63,176,758,712,0,0,-4.6000000000000005,176,758,0,712,0.293,11.23,45.07,0.87,0.24,884,0.5,325,1.7000000000000002,44.3234,34.7997 +2012,5,29,16,30,31.5,2.2,0.34,0.63,197,809,877,0,0,-7.4,197,809,0,877,0.292,7.58,32.8,0.88,0.24,884,0.5,281,1.3,55.5944,43.7319 +2012,5,29,17,30,33.300000000000004,2.19,0.323,0.63,203,848,993,0,0,-8.700000000000001,203,848,0,993,0.292,6.21,21.26,0.88,0.24,884,0.5,257,1.6,63.3613,49.8882 +2012,5,29,18,30,34.5,2.12,0.24,0.63,177,905,1059,0,0,-9.3,177,905,0,1059,0.292,5.54,13.09,0.88,0.24,883,0.5,254,1.8,67.2634,52.9797 +2012,5,29,19,30,35.2,2.11,0.233,0.63,174,907,1048,0,0,-9.700000000000001,174,907,0,1048,0.292,5.17,15.43,0.88,0.24,882,0.5,253,1.9000000000000001,66.3668,52.2691 +2012,5,29,20,30,35.4,2.08,0.233,0.63,168,889,971,0,0,-10.100000000000001,168,889,0,971,0.292,4.95,25.52,0.88,0.24,882,0.5,252,1.8,61.0559,48.0595 +2012,5,29,21,30,35.2,2.16,0.292,0.63,177,819,827,0,0,-10.5,177,819,0,827,0.292,4.84,37.47,0.88,0.24,881,0.5,251,1.7000000000000002,51.8087,40.7301 +2012,5,29,22,30,34.6,2.16,0.293,0.63,158,756,646,0,0,-10.8,158,756,0,646,0.292,4.89,49.82,0.88,0.24,881,0.5,253,1.6,39.5265,30.9969 +2012,5,29,23,30,33.1,2.15,0.289,0.63,129,656,436,0,0,-10.9,129,656,0,436,0.293,5.3100000000000005,62.160000000000004,0.88,0.24,881,0.5,261,1.1,25.7691,20.0988 +2012,5,30,0,30,31,2.14,0.274,0.63,86,493,220,0,0,-1.8,86,493,0,220,0.294,11.92,74.25,0.88,0.24,881,0.5,299,0.5,12.1483,9.3467 +2012,5,30,1,30,28.8,2.13,0.257,0.63,25,184,39,0,0,-2.3000000000000003,25,184,0,39,0.296,13.05,85.8,0.88,0.24,881,0.5,189,0.5,0.0000,0.0000 +2012,5,30,2,30,26.400000000000002,2.11,0.23700000000000002,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.297,13.57,96.9,0.88,0.24,881,0.5,62,0.9,0.0000,0.0000 +2012,5,30,3,30,24,2.09,0.222,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.298,15.9,106.76,0.88,0.24,881,0.5,83,1.2000000000000002,0.0000,0.0000 +2012,5,30,4,30,21.900000000000002,2.09,0.22,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.298,17.85,115.01,0.88,0.24,881,0.5,95,1.3,0.0000,0.0000 +2012,5,30,5,30,20.400000000000002,2.11,0.23900000000000002,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.298,19.57,120.93,0.88,0.24,881,0.5,104,1.3,0.0000,0.0000 +2012,5,30,6,30,19.200000000000003,2.13,0.268,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.298,20.98,123.78,0.88,0.24,881,0.5,112,1.2000000000000002,0.0000,0.0000 +2012,5,30,7,30,18.400000000000002,2.15,0.29,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.299,22.25,123.09,0.88,0.24,881,0.5,119,1.1,0.0000,0.0000 +2012,5,30,8,30,17.8,2.16,0.308,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.299,23.28,118.97,0.88,0.24,880,0.5,127,0.9,0.0000,0.0000 +2012,5,30,9,30,17.6,2.18,0.34600000000000003,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.299,23.53,112.06,0.88,0.24,880,0.5,148,0.8,0.0000,0.0000 +2012,5,30,10,30,17.2,2.22,0.40800000000000003,0.63,0,0,0,0,0,-4,0,0,0,0,0.299,23.14,103.12,0.88,0.24,880,0.4,190,0.8,0.0000,0.0000 +2012,5,30,11,30,16.400000000000002,2.25,0.468,0.63,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.299,24.57,92.79,0.87,0.24,880,0.4,242,0.9,0.0000,0.0000 +2012,5,30,12,30,17.3,2.2600000000000002,0.497,0.63,53,230,87,0,0,-3.1,53,230,0,87,0.299,24.650000000000002,81.44,0.87,0.24,881,0.4,282,1.6,0.0000,0.0000 +2012,5,30,13,30,19.900000000000002,2.2600000000000002,0.496,0.63,127,453,284,0,0,-3.4000000000000004,127,453,0,284,0.3,20.48,69.63,0.87,0.24,881,0.4,300,2.5,15.4533,11.9717 +2012,5,30,14,30,23.5,2.24,0.466,0.63,174,607,501,0,0,-3.7,174,607,0,501,0.3,16.06,57.42,0.87,0.24,881,0.4,309,3,28.7379,22.4745 +2012,5,30,15,30,27.8,2.21,0.417,0.63,196,714,700,0,0,-4.5,196,714,0,700,0.301,11.77,45.04,0.87,0.24,880,0.5,316,3.2,41.8051,32.8229 +2012,5,30,16,30,31.400000000000002,2.17,0.362,0.63,204,796,874,0,0,-6.800000000000001,204,796,0,874,0.301,8.02,32.75,0.88,0.24,880,0.5,320,3.3000000000000003,52.9429,41.6464 +2012,5,30,17,30,33.4,2.1,0.303,0.63,196,857,996,0,0,-8.3,196,857,0,996,0.302,6.38,21.19,0.88,0.24,880,0.5,325,3,60.8536,47.9139 +2012,5,30,18,30,34.5,2.18,0.433,0.63,243,800,1022,0,0,-8.3,243,800,0,1022,0.302,5.98,12.96,0.88,0.24,879,0.6000000000000001,330,2.8000000000000003,65.2956,51.4300 +2012,5,30,19,30,35.1,2.08,0.342,0.63,213,840,1023,0,0,-8.1,213,840,0,1023,0.302,5.87,15.290000000000001,0.88,0.24,878,0.6000000000000001,333,2.7,64.5258,50.8195 +2012,5,30,20,30,35.4,2,0.26,0.63,178,866,960,0,0,-8,178,866,0,960,0.302,5.8500000000000005,25.41,0.88,0.24,878,0.6000000000000001,334,2.8000000000000003,59.2339,46.6257 +2012,5,30,21,30,35.4,1.84,0.163,0.63,134,894,844,0,0,-8,134,894,0,844,0.303,5.82,37.37,0.89,0.24,877,0.6000000000000001,336,2.8000000000000003,49.4859,38.9046 +2012,5,30,22,30,34.800000000000004,1.74,0.128,0.63,109,868,670,0,0,-8.4,109,868,0,670,0.304,5.8500000000000005,49.730000000000004,0.89,0.24,877,0.6000000000000001,337,2.7,37.3442,29.2863 +2012,5,30,23,30,33.4,1.6400000000000001,0.10300000000000001,0.63,85,804,462,0,0,-8.9,85,804,0,462,0.306,6.0600000000000005,62.07,0.89,0.24,877,0.6000000000000001,342,2,23.7186,18.5008 +2012,5,31,0,30,30.400000000000002,1.51,0.09,0.63,60,661,241,0,0,-3.9000000000000004,60,661,0,241,0.309,10.55,74.15,0.89,0.24,877,0.6000000000000001,184,1.3,10.8302,8.3340 +2012,5,31,1,30,26.900000000000002,1.4000000000000001,0.083,0.63,25,306,48,0,0,0.7000000000000001,25,306,0,48,0.312,18.19,85.7,0.9,0.24,877,0.6000000000000001,34,1.2000000000000002,0.0000,0.0000 +2012,5,31,2,30,24.1,1.32,0.08,0.63,0,0,0,0,0,-1.6,0,0,0,0,0.316,18.18,96.78,0.9,0.24,878,0.7000000000000001,55,1.4000000000000001,0.0000,0.0000 +2012,5,31,3,30,21.700000000000003,1.25,0.081,0.63,0,0,0,0,0,-1.1,0,0,0,0,0.319,21.7,106.63,0.9,0.24,878,0.7000000000000001,68,1.6,0.0000,0.0000 +2012,5,31,4,30,20.1,1.24,0.08600000000000001,0.63,0,0,0,0,0,0.1,0,0,0,0,0.321,26.28,114.87,0.9,0.24,879,0.8,72,2,0.0000,0.0000 +2012,5,31,5,30,18.900000000000002,1.26,0.094,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.321,37.04,120.79,0.91,0.24,879,0.9,72,2.3000000000000003,0.0000,0.0000 +2012,5,31,6,30,17.8,1.28,0.10200000000000001,0.63,0,0,0,0,0,9.1,0,0,0,0,0.321,56.7,123.64,0.91,0.24,879,1.1,71,2.4000000000000004,0.0000,0.0000 +2012,5,31,7,30,16.900000000000002,1.28,0.111,0.63,0,0,0,0,0,13.200000000000001,0,0,0,0,0.319,78.94,122.96000000000001,0.92,0.24,879,1.2000000000000002,70,2.3000000000000003,0.0000,0.0000 +2012,5,31,8,30,16.7,1.28,0.123,0.63,0,0,0,0,1,15.5,0,0,0,0,0.315,92.76,118.86,0.93,0.24,880,1.3,66,2.5,0.0000,0.0000 +2012,5,31,9,30,16.8,1.29,0.13,0.63,0,0,0,0,7,16.5,0,0,0,0,0.312,97.94,111.96000000000001,0.93,0.24,881,1.5,54,3.2,0.0000,0.0000 +2012,5,31,10,30,16.7,1.31,0.13,0.63,0,0,0,0,8,16.6,0,0,0,0,0.31,99.17,103.04,0.93,0.24,882,1.6,39,4.1000000000000005,0.0000,0.0000 +2012,5,31,11,30,16.6,1.31,0.133,0.63,0,0,0,0,4,15.9,0,0,0,0,0.308,95.91,92.72,0.9400000000000001,0.24,883,1.8,31,5.1000000000000005,0.0000,0.0000 +2012,5,31,12,30,17.2,1.31,0.145,0.63,49,351,102,7,7,14.600000000000001,50,3,7,50,0.308,84.91,81.39,0.9500000000000001,0.24,884,1.8,35,6.2,0.0000,0.0000 +2012,5,31,13,30,18.7,1.31,0.147,0.63,87,611,300,0,7,13.200000000000001,145,422,0,292,0.309,70.25,69.59,0.9500000000000001,0.24,884,1.9000000000000001,43,6.800000000000001,14.5870,11.3013 +2012,5,31,14,30,20.8,1.3,0.137,0.63,107,755,514,0,7,12.3,203,528,0,488,0.31,58.19,57.38,0.9500000000000001,0.24,885,1.9000000000000001,50,6.800000000000001,28.0169,21.9110 +2012,5,31,15,30,23.1,1.29,0.123,0.63,115,839,709,0,1,11.600000000000001,115,839,0,709,0.31,48.42,45,0.9400000000000001,0.24,885,2,56,6.5,41.1042,32.2728 +2012,5,31,16,30,25.5,1.26,0.111,0.63,119,892,870,0,0,10.9,119,892,0,870,0.31,39.93,32.71,0.93,0.24,885,2,63,6.1000000000000005,52.7663,41.5077 +2012,5,31,17,30,27.6,1.24,0.10400000000000001,0.63,122,921,980,0,0,10.100000000000001,122,921,0,980,0.309,33.49,21.13,0.93,0.24,885,2,71,5.6000000000000005,61.0415,48.0620 +2012,5,31,18,30,29.1,1.1400000000000001,0.091,0.63,118,937,1031,0,0,9.4,118,937,0,1031,0.308,29.34,12.84,0.93,0.24,885,2.1,78,5.2,63.0188,49.6369 +2012,5,31,19,30,30.1,1.1500000000000001,0.09,0.63,117,935,1020,0,0,8.9,117,935,0,1020,0.308,26.76,15.16,0.93,0.24,884,2.1,84,4.800000000000001,62.9924,49.6120 +2012,5,31,20,30,30.6,1.1500000000000001,0.091,0.63,114,918,944,0,1,8.6,114,918,0,944,0.308,25.38,25.3,0.93,0.24,884,2.2,91,4.5,58.5706,46.1039 +2012,5,31,21,30,30.400000000000002,1.43,0.134,0.63,125,858,807,0,0,8.200000000000001,125,858,0,807,0.309,25.12,37.28,0.93,0.24,883,2.2,98,4.2,50.5137,39.7131 +2012,5,31,22,30,29.700000000000003,1.42,0.14,0.63,115,796,631,0,0,8.1,115,796,0,631,0.311,25.86,49.64,0.93,0.24,883,2.3000000000000003,105,4.1000000000000005,38.7443,30.3851 +2012,5,31,23,30,28.6,1.3900000000000001,0.145,0.63,100,698,428,0,0,8.1,100,698,0,428,0.313,27.57,61.97,0.9400000000000001,0.24,883,2.3000000000000003,111,4,25.1477,19.6166 +2012,6,1,0,30,26.700000000000003,1.32,0.153,0.61,75,518,218,0,0,8.200000000000001,75,518,0,218,0.314,31.150000000000002,74.05,0.9400000000000001,0.24,884,2.3000000000000003,117,3.6,11.8747,9.1394 +2012,6,1,1,30,24.400000000000002,1.28,0.145,0.61,28,181,42,0,0,8.6,28,181,0,42,0.315,36.56,85.59,0.9400000000000001,0.24,884,2.3000000000000003,121,3.3000000000000003,0.0000,0.0000 +2012,6,1,2,30,22.8,1.26,0.135,0.61,0,0,0,0,0,8.8,0,0,0,0,0.315,40.89,96.67,0.9400000000000001,0.24,885,2.3000000000000003,126,3.6,0.0000,0.0000 +2012,6,1,3,30,21.8,1.26,0.125,0.61,0,0,0,0,0,9,0,0,0,0,0.315,44,106.51,0.9400000000000001,0.24,885,2.3000000000000003,129,4,0.0000,0.0000 +2012,6,1,4,30,20.700000000000003,1.27,0.12,0.61,0,0,0,0,0,9.3,0,0,0,0,0.316,47.96,114.73,0.9400000000000001,0.24,886,2.4000000000000004,130,4.2,0.0000,0.0000 +2012,6,1,5,30,19.700000000000003,1.28,0.11800000000000001,0.61,0,0,0,0,3,9.5,0,0,0,0,0.317,51.83,120.65,0.9400000000000001,0.24,886,2.4000000000000004,129,4.3,0.0000,0.0000 +2012,6,1,6,30,18.7,1.29,0.116,0.61,0,0,0,0,7,9.700000000000001,0,0,0,0,0.318,55.72,123.5,0.9400000000000001,0.24,886,2.4000000000000004,128,4,0.0000,0.0000 +2012,6,1,7,30,17.7,1.3,0.116,0.61,0,0,0,0,7,9.600000000000001,0,0,0,0,0.319,59.04,122.83,0.9400000000000001,0.24,886,2.4000000000000004,129,3.9000000000000004,0.0000,0.0000 +2012,6,1,8,30,16.7,1.32,0.121,0.61,0,0,0,0,8,9.200000000000001,0,0,0,0,0.32,61.32,118.75,0.9400000000000001,0.24,886,2.4000000000000004,132,3.8000000000000003,0.0000,0.0000 +2012,6,1,9,30,16,1.35,0.134,0.61,0,0,0,0,7,8.700000000000001,0,0,0,0,0.32,61.83,111.87,0.9400000000000001,0.24,886,2.5,137,3.6,0.0000,0.0000 +2012,6,1,10,30,15.4,1.3800000000000001,0.152,0.61,0,0,0,0,7,8.200000000000001,0,0,0,0,0.321,62.230000000000004,102.97,0.9400000000000001,0.24,886,2.6,144,3.3000000000000003,0.0000,0.0000 +2012,6,1,11,30,15.5,1.3900000000000001,0.17,0.61,0,0,0,0,7,7.9,0,0,0,0,0.322,60.61,92.67,0.9500000000000001,0.24,886,2.6,153,3.7,0.0000,0.0000 +2012,6,1,12,30,17,1.3900000000000001,0.185,0.61,52,296,97,7,7,7.800000000000001,67,13,7,69,0.324,54.58,81.35000000000001,0.9500000000000001,0.24,886,2.7,164,4.9,0.0000,0.0000 +2012,6,1,13,30,19.6,1.3800000000000001,0.19,0.61,96,550,288,0,3,8.8,118,0,0,118,0.326,49.68,69.55,0.9500000000000001,0.24,886,2.7,176,6.1000000000000005,15.0032,11.6243 +2012,6,1,14,30,22.5,1.3800000000000001,0.187,0.61,122,692,496,0,0,11.4,122,692,0,496,0.326,49.32,57.35,0.9500000000000001,0.24,886,2.7,188,6.6000000000000005,27.2956,21.3473 +2012,6,1,15,30,25.1,1.3800000000000001,0.188,0.61,141,772,688,0,0,12.9,141,772,0,688,0.325,46.79,44.980000000000004,0.9500000000000001,0.24,886,2.7,197,6.7,41.6375,32.6918 +2012,6,1,16,30,27.3,1.37,0.19,0.61,155,817,843,0,0,13.700000000000001,155,817,0,843,0.324,43.09,32.68,0.9500000000000001,0.24,885,2.8000000000000003,203,6.6000000000000005,52.5284,41.3207 +2012,6,1,17,30,29.200000000000003,1.3800000000000001,0.189,0.61,161,846,950,0,0,14,161,846,0,950,0.322,39.43,21.07,0.9400000000000001,0.24,885,2.8000000000000003,208,6.6000000000000005,60.0643,47.2928 +2012,6,1,18,30,30.700000000000003,1.42,0.195,0.61,167,854,1000,7,2,13.9,346,632,7,963,0.321,36.03,12.72,0.9400000000000001,0.24,884,2.8000000000000003,212,6.5,63.5779,50.0774 +2012,6,1,19,30,31.8,1.43,0.188,0.61,163,858,992,0,0,13.5,163,858,0,992,0.32,32.82,15.030000000000001,0.9400000000000001,0.24,883,2.7,214,6.5,62.8130,49.4710 +2012,6,1,20,30,32.7,1.42,0.176,0.61,153,851,923,0,0,12.8,153,851,0,923,0.32,29.95,25.2,0.9400000000000001,0.24,882,2.6,214,6.300000000000001,57.6019,45.3418 +2012,6,1,21,30,33.2,1.18,0.114,0.61,118,864,806,0,0,12.100000000000001,118,864,0,806,0.32,27.68,37.18,0.9400000000000001,0.24,881,2.5,212,6.1000000000000005,48.3083,37.9798 +2012,6,1,22,30,33,1.1400000000000001,0.106,0.61,104,823,638,0,0,11.3,104,823,0,638,0.32,26.560000000000002,49.54,0.9400000000000001,0.24,880,2.3000000000000003,209,5.9,36.5009,28.6264 +2012,6,1,23,30,32.1,1.1,0.099,0.61,86,742,436,0,0,10.600000000000001,86,742,0,436,0.321,26.64,61.88,0.9400000000000001,0.24,880,2.3000000000000003,205,5.5,23.3121,18.1859 +2012,6,2,0,30,30.1,1.07,0.096,0.61,63,586,225,0,8,10.100000000000001,122,244,0,190,0.321,28.97,73.95,0.93,0.24,880,2.3000000000000003,198,4.6000000000000005,10.7513,8.2761 +2012,6,2,1,30,27.5,1.05,0.097,0.61,27,231,45,7,7,10.200000000000001,37,7,7,37,0.322,33.95,85.49,0.9400000000000001,0.24,880,2.3000000000000003,191,3.9000000000000004,0.0000,0.0000 +2012,6,2,2,30,25.700000000000003,1.07,0.10200000000000001,0.61,0,0,0,0,6,10.100000000000001,0,0,0,0,0.322,37.46,96.55,0.9400000000000001,0.24,880,2.4000000000000004,187,4.1000000000000005,0.0000,0.0000 +2012,6,2,3,30,24.6,1.11,0.11,0.61,0,0,0,0,6,10,0,0,0,0,0.322,39.77,106.38,0.9400000000000001,0.24,880,2.5,187,4.4,0.0000,0.0000 +2012,6,2,4,30,23.3,1.1500000000000001,0.11800000000000001,0.61,0,0,0,0,6,10.3,0,0,0,0,0.322,43.88,114.60000000000001,0.9400000000000001,0.24,880,2.6,187,4.1000000000000005,0.0000,0.0000 +2012,6,2,5,30,22,1.19,0.126,0.61,0,0,0,0,6,10.9,0,0,0,0,0.321,49.2,120.51,0.9400000000000001,0.24,881,2.6,186,3.5,0.0000,0.0000 +2012,6,2,6,30,20.900000000000002,1.21,0.134,0.61,0,0,0,0,6,11.4,0,0,0,0,0.32,54.67,123.37,0.9400000000000001,0.24,881,2.7,182,2.9000000000000004,0.0000,0.0000 +2012,6,2,7,30,19.900000000000002,1.23,0.145,0.61,0,0,0,0,6,12.100000000000001,0,0,0,0,0.32,60.6,122.71000000000001,0.9400000000000001,0.24,881,2.8000000000000003,178,2.4000000000000004,0.0000,0.0000 +2012,6,2,8,30,19.1,1.26,0.153,0.61,0,0,0,0,6,12.700000000000001,0,0,0,0,0.32,66.3,118.64,0.9500000000000001,0.24,881,2.8000000000000003,165,2,0.0000,0.0000 +2012,6,2,9,30,18.5,1.29,0.159,0.61,0,0,0,0,7,13.200000000000001,0,0,0,0,0.32,71.09,111.79,0.9500000000000001,0.24,882,2.7,144,1.8,0.0000,0.0000 +2012,6,2,10,30,18,1.32,0.163,0.61,0,0,0,0,7,13.4,0,0,0,0,0.321,74.64,102.9,0.9400000000000001,0.24,882,2.7,130,1.9000000000000001,0.0000,0.0000 +2012,6,2,11,30,18.5,1.36,0.168,0.61,0,0,0,0,7,13.600000000000001,0,0,0,0,0.321,73.15,92.61,0.9400000000000001,0.24,882,2.7,128,2.6,0.0000,0.0000 +2012,6,2,12,30,20.400000000000002,1.3800000000000001,0.17200000000000001,0.61,50,310,97,7,7,13.700000000000001,73,17,7,76,0.322,65.58,81.31,0.9400000000000001,0.24,883,2.7,141,3.5,0.0000,0.0000 +2012,6,2,13,30,23.5,1.4000000000000001,0.17400000000000002,0.61,91,569,291,0,4,13.8,182,21,0,189,0.322,54.63,69.52,0.9400000000000001,0.24,883,2.6,160,3.9000000000000004,6.0651,4.6994 +2012,6,2,14,30,26.900000000000002,1.42,0.17300000000000001,0.61,117,707,499,0,7,13.8,208,443,0,448,0.321,44.480000000000004,57.33,0.9400000000000001,0.24,884,2.6,173,4.3,27.7474,21.7009 +2012,6,2,15,30,30.1,1.43,0.17,0.61,133,787,690,0,3,13.100000000000001,357,360,0,612,0.321,35.410000000000004,44.95,0.9400000000000001,0.24,883,2.7,181,4.7,40.4066,31.7255 +2012,6,2,16,30,32.300000000000004,1.44,0.168,0.61,144,836,847,7,3,12.3,321,613,7,837,0.32,29.51,32.65,0.9400000000000001,0.24,883,2.7,184,4.800000000000001,50.9008,40.0405 +2012,6,2,17,30,33.7,1.45,0.166,0.61,150,864,956,7,3,12.3,314,660,7,930,0.319,27.240000000000002,21.02,0.9400000000000001,0.24,882,2.7,183,4.7,58.2289,45.8478 +2012,6,2,18,30,34.9,1.26,0.112,0.61,128,909,1015,0,0,11.700000000000001,128,909,0,1015,0.317,24.650000000000002,12.61,0.9400000000000001,0.24,882,2.7,182,4.6000000000000005,59.3884,46.7778 +2012,6,2,19,30,35.9,1.26,0.111,0.61,127,910,1006,0,0,10.9,127,910,0,1006,0.315,22.01,14.9,0.9400000000000001,0.24,881,2.6,181,4.6000000000000005,61.0938,48.1172 +2012,6,2,20,30,36.300000000000004,1.28,0.113,0.61,123,894,933,7,3,10,349,593,7,886,0.312,20.3,25.1,0.93,0.24,880,2.6,180,4.7,56.3272,44.3387 +2012,6,2,21,30,36.300000000000004,1.6,0.198,0.61,150,805,792,0,6,9.200000000000001,264,5,0,268,0.31,19.25,37.09,0.93,0.24,879,2.6,178,5,48.2585,37.9411 +2012,6,2,22,30,35.7,1.62,0.212,0.61,140,738,620,0,6,8.5,187,3,0,189,0.309,19,49.46,0.93,0.24,879,2.5,177,5.2,36.9191,28.9553 +2012,6,2,23,30,34.5,1.6400000000000001,0.22,0.61,119,634,419,0,9,7.9,88,1,0,89,0.309,19.5,61.79,0.93,0.24,878,2.5,175,5.2,23.7615,18.5376 +2012,6,3,0,30,31.900000000000002,1.6600000000000001,0.217,0.61,84,468,215,0,9,7.9,32,0,0,32,0.309,22.55,73.85000000000001,0.93,0.24,878,2.4000000000000004,172,4.5,9.3789,7.2209 +2012,6,3,1,30,28.700000000000003,1.6600000000000001,0.215,0.61,29,157,42,7,9,8.700000000000001,20,0,7,20,0.31,28.580000000000002,85.39,0.93,0.24,879,2.4000000000000004,168,3.9000000000000004,0.0000,0.0000 +2012,6,3,2,30,26.8,1.6600000000000001,0.21,0.61,0,0,0,0,9,8.4,0,0,0,0,0.31,31.27,96.44,0.92,0.24,879,2.3000000000000003,167,4.1000000000000005,0.0000,0.0000 +2012,6,3,3,30,25.700000000000003,1.6500000000000001,0.203,0.61,0,0,0,0,9,7.9,0,0,0,0,0.309,32.22,106.27,0.93,0.24,880,2.3000000000000003,170,4.6000000000000005,0.0000,0.0000 +2012,6,3,4,30,24.6,1.6500000000000001,0.20400000000000001,0.61,0,0,0,0,9,8.200000000000001,0,0,0,0,0.309,35.2,114.48,0.93,0.24,880,2.3000000000000003,175,4.9,0.0000,0.0000 +2012,6,3,5,30,23.700000000000003,1.67,0.216,0.61,0,0,0,0,6,9.4,0,0,0,0,0.308,40.24,120.38,0.93,0.24,880,2.3000000000000003,181,5,0.0000,0.0000 +2012,6,3,6,30,23.1,1.7,0.23700000000000002,0.61,0,0,0,0,6,11,0,0,0,0,0.308,46.54,123.24000000000001,0.93,0.24,880,2.4000000000000004,184,5,0.0000,0.0000 +2012,6,3,7,30,22.400000000000002,1.71,0.273,0.61,0,0,0,0,7,12.600000000000001,0,0,0,0,0.307,54.04,122.59,0.9400000000000001,0.24,880,2.4000000000000004,187,5.1000000000000005,0.0000,0.0000 +2012,6,3,8,30,21.6,1.71,0.324,0.61,0,0,0,0,4,13.5,0,0,0,0,0.307,59.95,118.55,0.9500000000000001,0.24,880,2.3000000000000003,189,4.9,0.0000,0.0000 +2012,6,3,9,30,20.900000000000002,1.73,0.353,0.61,0,0,0,0,7,13.8,0,0,0,0,0.306,63.88,111.71000000000001,0.9500000000000001,0.24,880,2.3000000000000003,190,4.3,0.0000,0.0000 +2012,6,3,10,30,20.200000000000003,1.78,0.34700000000000003,0.61,0,0,0,0,7,13.8,0,0,0,0,0.306,66.87,102.84,0.9400000000000001,0.24,880,2.2,192,3.6,0.0000,0.0000 +2012,6,3,11,30,20.1,1.84,0.34800000000000003,0.61,0,0,0,0,7,13.8,0,0,0,0,0.307,66.93,92.57000000000001,0.93,0.24,880,2.2,195,3.2,0.0000,0.0000 +2012,6,3,12,30,21.400000000000002,1.9000000000000001,0.373,0.61,57,216,90,7,3,13.8,70,2,7,70,0.307,62.03,81.27,0.92,0.24,881,2.1,199,3.4000000000000004,0.0000,0.0000 +2012,6,3,13,30,24,1.95,0.41100000000000003,0.61,127,429,277,0,0,13.9,127,429,0,277,0.308,53.17,69.5,0.92,0.24,881,1.9000000000000001,204,3.8000000000000003,9.7170,7.5292 +2012,6,3,14,30,27.3,1.99,0.443,0.61,177,558,478,0,0,13.4,177,558,0,478,0.308,42.4,57.31,0.91,0.24,881,1.8,210,4,25.0647,19.6030 +2012,6,3,15,30,30.400000000000002,2,0.454,0.61,213,643,668,0,0,11.700000000000001,213,643,0,668,0.308,31.650000000000002,44.93,0.91,0.24,881,1.8,216,4,35.9463,28.2236 +2012,6,3,16,30,32.9,2,0.442,0.61,233,708,829,0,0,8.6,233,708,0,829,0.308,22.36,32.63,0.91,0.24,881,1.7000000000000002,221,3.9000000000000004,50.5410,39.7577 +2012,6,3,17,30,34.6,1.98,0.41300000000000003,0.61,237,757,944,0,0,6.4,237,757,0,944,0.309,17.46,20.98,0.91,0.24,881,1.6,226,3.7,57.0057,44.8849 +2012,6,3,18,30,35.9,2.0100000000000002,0.446,0.61,251,758,991,0,0,4.7,251,758,0,991,0.31,14.41,12.51,0.9,0.24,880,1.5,234,3.4000000000000004,62.5989,49.3067 +2012,6,3,19,30,36.6,2,0.41600000000000004,0.61,240,769,984,0,0,3.1,240,769,0,984,0.31,12.42,14.780000000000001,0.9,0.24,880,1.5,243,3.1,61.9612,48.8006 +2012,6,3,20,30,36.9,1.98,0.386,0.61,223,766,918,0,0,1.7000000000000002,223,766,0,918,0.311,11.06,25,0.9,0.24,879,1.4000000000000001,255,2.7,54.0756,42.5666 +2012,6,3,21,30,36.7,1.95,0.352,0.61,199,747,795,0,0,0.6000000000000001,199,747,0,795,0.311,10.38,37,0.9,0.24,879,1.3,270,2.4000000000000004,16.0492,12.6181 +2012,6,3,22,30,36.1,1.93,0.325,0.61,170,698,625,0,7,-0.1,249,559,0,613,0.311,10.16,49.370000000000005,0.9,0.24,879,1.3,287,2.1,10.9400,8.5803 +2012,6,3,23,30,34.6,1.9100000000000001,0.303,0.61,134,612,424,0,6,-0.5,232,50,0,255,0.311,10.76,61.7,0.89,0.24,879,1.2000000000000002,306,1.4000000000000001,4.8532,3.7864 +2012,6,4,0,30,31.6,1.8900000000000001,0.289,0.61,91,449,216,0,9,5.1000000000000005,141,31,0,150,0.311,18.85,73.76,0.89,0.24,879,1.2000000000000002,334,0.9,1.5811,1.2175 +2012,6,4,1,30,28.3,1.86,0.274,0.61,28,157,41,7,6,8.4,31,1,7,31,0.312,28.6,85.29,0.89,0.24,880,1.2000000000000002,193,1,0.0000,0.0000 +2012,6,4,2,30,26,1.82,0.261,0.61,0,0,0,0,6,6.300000000000001,0,0,0,0,0.313,28.330000000000002,96.34,0.89,0.24,880,1.2000000000000002,62,1.1,0.0000,0.0000 +2012,6,4,3,30,24.400000000000002,1.78,0.248,0.61,0,0,0,0,6,6.2,0,0,0,0,0.314,31.12,106.15,0.9,0.24,881,1.3,114,1.2000000000000002,0.0000,0.0000 +2012,6,4,4,30,23.200000000000003,1.73,0.23500000000000001,0.61,0,0,0,0,6,6.7,0,0,0,0,0.314,34.44,114.36,0.9,0.24,881,1.5,158,1.6,0.0000,0.0000 +2012,6,4,5,30,22.1,1.68,0.221,0.61,0,0,0,0,6,7.800000000000001,0,0,0,0,0.313,39.77,120.26,0.9,0.24,881,1.6,181,2,0.0000,0.0000 +2012,6,4,6,30,21.200000000000003,1.6400000000000001,0.21,0.61,0,0,0,0,6,9.5,0,0,0,0,0.312,47.34,123.12,0.91,0.24,882,1.8,191,2.2,0.0000,0.0000 +2012,6,4,7,30,20.200000000000003,1.6,0.202,0.61,0,0,0,0,7,11.5,0,0,0,0,0.312,57.33,122.48,0.91,0.24,882,1.9000000000000001,199,1.9000000000000001,0.0000,0.0000 +2012,6,4,8,30,19.3,1.58,0.196,0.61,0,0,0,0,7,13,0,0,0,0,0.312,66.7,118.46000000000001,0.92,0.24,882,2,205,1.5,0.0000,0.0000 +2012,6,4,9,30,18.8,1.57,0.191,0.61,0,0,0,0,7,13.700000000000001,0,0,0,0,0.312,72.05,111.64,0.92,0.24,882,2.1,213,1.1,0.0000,0.0000 +2012,6,4,10,30,18.5,1.56,0.186,0.61,0,0,0,0,7,13.9,0,0,0,0,0.311,74.81,102.78,0.92,0.24,882,2.1,235,0.8,0.0000,0.0000 +2012,6,4,11,30,19,1.54,0.181,0.61,0,0,0,0,0,13.9,0,0,0,0,0.311,72.22,92.53,0.93,0.24,882,2.2,290,0.9,0.0000,0.0000 +2012,6,4,12,30,21.1,1.52,0.171,0.61,50,329,100,0,0,13.8,50,329,0,100,0.31,62.9,81.24,0.93,0.24,883,2.2,164,1.7000000000000002,0.0000,0.0000 +2012,6,4,13,30,24.700000000000003,1.48,0.157,0.61,87,601,298,0,0,13.200000000000001,87,601,0,298,0.31,48.83,69.47,0.93,0.24,883,2.1,16,2.9000000000000004,14.2439,11.0371 +2012,6,4,14,30,28.6,1.45,0.14200000000000002,0.61,106,748,510,0,8,12.3,245,322,0,418,0.309,36.46,57.29,0.93,0.24,883,2.1,44,3.9000000000000004,26.7459,20.9181 +2012,6,4,15,30,31.400000000000002,1.42,0.131,0.61,117,834,708,0,8,10.4,316,355,0,567,0.308,27.43,44.92,0.93,0.24,883,2,61,4.4,39.2377,30.8081 +2012,6,4,16,30,33.2,1.4000000000000001,0.127,0.61,126,878,865,0,0,9.9,126,878,0,865,0.306,24.01,32.61,0.93,0.24,883,2.1,70,4.3,50.0597,39.3791 +2012,6,4,17,30,34.2,1.4000000000000001,0.127,0.61,132,903,975,0,0,10,132,903,0,975,0.304,22.81,20.94,0.93,0.24,883,2.1,77,4.2,57.8661,45.5624 +2012,6,4,18,30,34.7,1.56,0.18,0.61,158,876,1013,0,0,10.4,158,876,0,1013,0.302,22.78,12.42,0.93,0.24,882,2.3000000000000003,83,4.1000000000000005,61.1220,48.1435 +2012,6,4,19,30,34.800000000000004,1.56,0.185,0.61,160,868,999,0,0,11,160,868,0,999,0.3,23.63,14.67,0.93,0.24,882,2.4000000000000004,88,4.3,60.6107,47.7372 +2012,6,4,20,30,34.6,1.56,0.19,0.61,157,844,922,0,6,11.5,322,10,0,332,0.299,24.64,24.91,0.93,0.24,881,2.6,93,4.4,56.0352,44.1095 +2012,6,4,21,30,34.1,1.55,0.186,0.61,146,811,794,0,9,11.8,192,2,0,193,0.299,25.92,36.910000000000004,0.93,0.24,881,2.7,98,4.5,47.6175,37.4381 +2012,6,4,22,30,33.2,1.54,0.186,0.61,132,754,623,0,9,12.100000000000001,146,1,0,147,0.3,27.75,49.28,0.93,0.24,881,2.7,101,4.4,35.4941,27.8389 +2012,6,4,23,30,31.8,1.54,0.189,0.61,113,653,423,0,9,12.4,84,1,0,84,0.301,30.61,61.61,0.9400000000000001,0.24,881,2.8000000000000003,104,4.2,13.9132,10.8557 +2012,6,5,0,30,29.5,1.54,0.191,0.61,82,485,218,0,9,13,34,0,0,34,0.302,36.25,73.67,0.9400000000000001,0.24,881,2.7,107,3.4000000000000004,7.4174,5.7125 +2012,6,5,1,30,26.900000000000002,1.54,0.185,0.61,30,173,44,7,9,14.600000000000001,24,0,7,24,0.304,46.77,85.2,0.93,0.24,881,2.7,110,2.8000000000000003,0.0000,0.0000 +2012,6,5,2,30,25.200000000000003,1.55,0.182,0.61,0,0,0,0,6,15.100000000000001,0,0,0,0,0.305,53.370000000000005,96.23,0.93,0.24,882,2.6,114,2.8000000000000003,0.0000,0.0000 +2012,6,5,3,30,24.1,1.57,0.187,0.61,0,0,0,0,6,15.5,0,0,0,0,0.305,58.7,106.04,0.93,0.24,882,2.7,116,3,0.0000,0.0000 +2012,6,5,4,30,23.1,1.58,0.197,0.61,0,0,0,0,6,16.2,0,0,0,0,0.305,64.97,114.24000000000001,0.9400000000000001,0.24,882,2.8000000000000003,122,3.2,0.0000,0.0000 +2012,6,5,5,30,22.200000000000003,1.56,0.215,0.61,0,0,0,0,6,16.7,0,0,0,0,0.305,71.14,120.14,0.9500000000000001,0.24,883,3,133,3.1,0.0000,0.0000 +2012,6,5,6,30,21.6,1.52,0.257,0.61,0,0,0,0,6,17,0,0,0,0,0.305,75.32000000000001,123.01,0.9500000000000001,0.24,883,3.1,148,2.7,0.0000,0.0000 +2012,6,5,7,30,21,1.49,0.297,0.61,0,0,0,0,7,17.1,0,0,0,0,0.304,78.43,122.38,0.96,0.24,883,3.2,165,2,0.0000,0.0000 +2012,6,5,8,30,20.6,1.47,0.323,0.61,0,0,0,0,6,17.1,0,0,0,0,0.304,80.21000000000001,118.37,0.96,0.24,883,3.2,179,1.5,0.0000,0.0000 +2012,6,5,9,30,20.200000000000003,1.47,0.337,0.61,0,0,0,0,8,17.1,0,0,0,0,0.304,82.21000000000001,111.57000000000001,0.96,0.24,883,3.2,188,1.2000000000000002,0.0000,0.0000 +2012,6,5,10,30,19.700000000000003,1.48,0.31,0.61,0,0,0,0,4,17,0,0,0,0,0.304,84.65,102.73,0.96,0.24,883,3.2,197,1,0.0000,0.0000 +2012,6,5,11,30,19.5,1.48,0.28,0.61,0,0,0,0,8,17,0,0,0,0,0.304,85.64,92.49,0.9500000000000001,0.24,883,3.2,216,0.9,0.0000,0.0000 +2012,6,5,12,30,20.1,1.49,0.272,0.61,58,231,93,7,8,16.8,27,0,7,27,0.304,81.56,81.22,0.9500000000000001,0.24,883,3.2,252,1.2000000000000002,0.0000,0.0000 +2012,6,5,13,30,21.3,1.49,0.274,0.61,113,475,279,0,4,16.400000000000002,18,0,0,18,0.305,73.8,69.46000000000001,0.9500000000000001,0.24,884,3.2,281,1.7000000000000002,15.3278,11.8774 +2012,6,5,14,30,22.700000000000003,1.49,0.274,0.61,147,617,481,0,4,15.8,134,0,0,134,0.306,65.12,57.28,0.9500000000000001,0.24,884,3.3000000000000003,292,2.2,23.3911,18.2944 +2012,6,5,15,30,23.700000000000003,1.49,0.28600000000000003,0.61,176,696,669,0,4,15.100000000000001,407,95,0,474,0.306,58.480000000000004,44.9,0.96,0.24,884,3.3000000000000003,301,2.3000000000000003,33.3061,26.1508 +2012,6,5,16,30,24.200000000000003,1.49,0.33,0.61,209,722,817,0,4,14.8,165,0,0,165,0.306,55.59,32.59,0.96,0.24,884,3.4000000000000004,315,1.9000000000000001,52.2353,41.0906 +2012,6,5,17,30,24.3,1.47,0.40800000000000003,0.61,250,711,914,0,4,14.700000000000001,170,0,0,170,0.305,54.9,20.900000000000002,0.97,0.24,884,3.5,326,1.3,59.7686,47.0605 +2012,6,5,18,30,24.1,1.46,0.483,0.61,284,689,957,7,3,14.600000000000001,478,471,7,939,0.304,55.230000000000004,12.33,0.97,0.24,883,3.5,323,0.8,62.4818,49.2148 +2012,6,5,19,30,24,1.47,0.47100000000000003,0.61,278,692,947,0,1,14.5,278,692,0,947,0.303,55.46,14.56,0.97,0.24,883,3.5,309,0.7000000000000001,61.5389,48.4684 +2012,6,5,20,30,23.900000000000002,1.48,0.441,0.61,258,685,880,7,2,14.600000000000001,258,685,5,880,0.302,56,24.810000000000002,0.97,0.24,882,3.5,300,0.7000000000000001,20.2676,15.9542 +2012,6,5,21,30,24,1.48,0.357,0.61,213,689,764,0,0,14.600000000000001,213,689,0,764,0.302,55.68,36.83,0.96,0.24,882,3.5,301,0.7000000000000001,11.5621,9.0905 +2012,6,5,22,30,23.900000000000002,1.5,0.333,0.61,183,639,600,0,0,14.5,183,639,0,600,0.301,55.65,49.2,0.96,0.24,881,3.4000000000000004,318,0.7000000000000001,8.5144,6.6782 +2012,6,5,23,30,23.6,1.52,0.324,0.61,149,540,407,0,1,14.4,149,540,0,407,0.301,56.47,61.52,0.96,0.24,881,3.4000000000000004,178,0.8,4.5858,3.5782 +2012,6,6,0,30,22.8,1.55,0.323,0.61,103,371,208,0,3,14.9,160,83,0,183,0.302,60.93,73.58,0.96,0.24,881,3.3000000000000003,41,0.8,1.6827,1.2961 +2012,6,6,1,30,21.6,1.57,0.318,0.61,32,105,41,7,3,15.8,31,0,7,31,0.302,69.48,85.10000000000001,0.96,0.24,881,3.2,70,0.9,0.0000,0.0000 +2012,6,6,2,30,20.8,1.59,0.309,0.61,0,0,0,0,4,15.4,0,0,0,0,0.303,71.10000000000001,96.13,0.9500000000000001,0.24,881,3.1,91,1.1,0.0000,0.0000 +2012,6,6,3,30,20.3,1.6,0.3,0.61,0,0,0,0,8,15.600000000000001,0,0,0,0,0.304,74.19,105.94,0.9500000000000001,0.24,881,3.1,106,1.2000000000000002,0.0000,0.0000 +2012,6,6,4,30,20,1.6,0.302,0.61,0,0,0,0,8,15.700000000000001,0,0,0,0,0.304,76.48,114.13,0.96,0.24,881,3.1,116,1.3,0.0000,0.0000 +2012,6,6,5,30,19.700000000000003,1.58,0.333,0.61,0,0,0,0,8,15.9,0,0,0,0,0.305,78.74,120.03,0.96,0.24,881,3.2,122,1.4000000000000001,0.0000,0.0000 +2012,6,6,6,30,19.5,1.55,0.37,0.61,0,0,0,0,7,16.1,0,0,0,0,0.306,80.82000000000001,122.9,0.97,0.24,881,3.3000000000000003,120,1.6,0.0000,0.0000 +2012,6,6,7,30,19.3,1.53,0.401,0.61,0,0,0,0,4,16.400000000000002,0,0,0,0,0.307,83.18,122.29,0.97,0.24,881,3.4000000000000004,115,2,0.0000,0.0000 +2012,6,6,8,30,19.1,1.53,0.388,0.61,0,0,0,0,0,16.7,0,0,0,0,0.308,85.87,118.29,0.97,0.24,881,3.5,114,2.4000000000000004,0.0000,0.0000 +2012,6,6,9,30,18.7,1.52,0.334,0.61,0,0,0,0,7,17,0,0,0,0,0.308,89.78,111.51,0.96,0.24,882,3.5,121,2.6,0.0000,0.0000 +2012,6,6,10,30,18.3,1.49,0.289,0.61,0,0,0,0,3,17.2,0,0,0,0,0.308,93.23,102.69,0.96,0.24,882,3.4000000000000004,132,2.6,0.0000,0.0000 +2012,6,6,11,30,18.3,1.46,0.274,0.61,0,0,0,0,7,17.3,0,0,0,0,0.308,94.09,92.46000000000001,0.96,0.24,882,3.3000000000000003,139,2.7,0.0000,0.0000 +2012,6,6,12,30,18.8,1.44,0.272,0.61,58,229,94,7,7,17.5,55,3,7,55,0.308,91.89,81.19,0.96,0.24,882,3.1,138,3,0.0000,0.0000 +2012,6,6,13,30,19.900000000000002,1.44,0.26,0.61,111,487,282,0,6,17.5,98,3,0,99,0.308,86.01,69.44,0.9500000000000001,0.24,882,3,133,3.1,0.9259,0.7175 +2012,6,6,14,30,21.3,1.45,0.248,0.61,141,641,488,0,6,17.1,237,25,0,250,0.309,76.89,57.27,0.9500000000000001,0.24,882,2.9000000000000004,134,3.1,7.4990,5.8651 +2012,6,6,15,30,22.8,1.47,0.23600000000000002,0.61,159,739,682,0,7,16.400000000000002,375,179,0,502,0.31,67.24,44.9,0.9500000000000001,0.24,882,2.7,142,3.1,27.8448,21.8629 +2012,6,6,16,30,24.400000000000002,1.49,0.22,0.61,165,803,842,0,6,15.700000000000001,430,228,0,622,0.311,58.46,32.58,0.9400000000000001,0.24,882,2.6,152,3.1,9.9643,7.8384 +2012,6,6,17,30,26.1,1.5,0.203,0.61,166,842,953,0,7,15.100000000000001,462,350,0,789,0.311,50.730000000000004,20.88,0.9400000000000001,0.24,882,2.6,156,3.2,10.4216,8.2057 +2012,6,6,18,30,27.6,1.6400000000000001,0.276,0.61,200,813,994,0,7,14.5,464,348,0,804,0.31,44.75,12.25,0.9400000000000001,0.24,881,2.6,153,3.4000000000000004,57.9202,45.6219 +2012,6,6,19,30,28.8,1.6400000000000001,0.255,0.61,191,824,989,0,6,14,507,233,0,733,0.309,40.28,14.450000000000001,0.9400000000000001,0.24,881,2.5,148,3.5,58.3397,45.9489 +2012,6,6,20,30,29.8,1.6400000000000001,0.229,0.61,174,824,923,0,7,13.4,293,562,0,804,0.307,36.61,24.72,0.9400000000000001,0.24,880,2.4000000000000004,144,3.7,53.7275,42.2935 +2012,6,6,21,30,30.6,1.55,0.184,0.61,146,819,802,0,8,12.8,235,659,0,763,0.306,33.56,36.75,0.9400000000000001,0.24,880,2.4000000000000004,141,4,45.7766,35.9915 +2012,6,6,22,30,30.5,1.52,0.17200000000000001,0.61,128,771,633,0,8,12.3,315,50,0,348,0.306,32.78,49.120000000000005,0.9400000000000001,0.24,879,2.4000000000000004,139,4.4,34.7623,27.2662 +2012,6,6,23,30,29.3,1.5,0.166,0.61,107,683,433,0,7,12.4,233,72,0,267,0.305,35.33,61.44,0.9400000000000001,0.24,880,2.4000000000000004,136,4.9,22.2319,17.3482 +2012,6,7,0,30,27,1.48,0.164,0.61,78,518,225,0,8,13.4,139,229,0,204,0.305,43.02,73.49,0.9400000000000001,0.24,880,2.5,134,5,9.0642,6.9829 +2012,6,7,1,30,24.400000000000002,1.47,0.16,0.61,31,199,48,7,8,15.100000000000001,37,3,7,38,0.306,56.02,85.01,0.9400000000000001,0.24,881,2.5,133,4.7,0.0000,0.0000 +2012,6,7,2,30,22.5,1.47,0.154,0.61,0,0,0,0,7,16.400000000000002,0,0,0,0,0.307,68.31,96.04,0.9400000000000001,0.24,881,2.4000000000000004,133,4.3,0.0000,0.0000 +2012,6,7,3,30,21.3,1.48,0.153,0.61,0,0,0,0,7,17.1,0,0,0,0,0.307,77.15,105.84,0.93,0.24,882,2.4000000000000004,130,4,0.0000,0.0000 +2012,6,7,4,30,20.3,1.5,0.153,0.61,0,0,0,0,7,17.400000000000002,0,0,0,0,0.309,83.62,114.03,0.93,0.24,882,2.4000000000000004,126,3.8000000000000003,0.0000,0.0000 +2012,6,7,5,30,19.6,1.51,0.157,0.61,0,0,0,0,0,17.5,0,0,0,0,0.31,87.71000000000001,119.93,0.93,0.24,882,2.4000000000000004,123,3.6,0.0000,0.0000 +2012,6,7,6,30,18.900000000000002,1.52,0.161,0.61,0,0,0,0,0,17.5,0,0,0,0,0.311,91.61,122.8,0.93,0.24,882,2.5,120,3.5,0.0000,0.0000 +2012,6,7,7,30,18.2,1.52,0.166,0.61,0,0,0,0,0,17.400000000000002,0,0,0,0,0.312,95.16,122.2,0.9400000000000001,0.24,882,2.5,118,3.4000000000000004,0.0000,0.0000 +2012,6,7,8,30,17.6,1.51,0.17300000000000001,0.61,0,0,0,0,0,17.2,0,0,0,0,0.313,97.45,118.22,0.9400000000000001,0.24,882,2.5,115,3.4000000000000004,0.0000,0.0000 +2012,6,7,9,30,17.2,1.48,0.178,0.61,0,0,0,0,1,16.900000000000002,0,0,0,0,0.313,97.83,111.46000000000001,0.9400000000000001,0.24,883,2.5,110,3.4000000000000004,0.0000,0.0000 +2012,6,7,10,30,17,1.44,0.17200000000000001,0.61,0,0,0,0,0,16.5,0,0,0,0,0.313,97.16,102.65,0.9400000000000001,0.24,883,2.5,103,3.4000000000000004,0.0000,0.0000 +2012,6,7,11,30,17.3,1.41,0.155,0.61,0,0,0,0,0,16.5,0,0,0,0,0.313,95.04,92.43,0.9400000000000001,0.24,884,2.4000000000000004,99,3.8000000000000003,0.0000,0.0000 +2012,6,7,12,30,18.5,1.3800000000000001,0.14300000000000002,0.61,49,353,103,0,0,16.6,49,353,0,103,0.313,88.96000000000001,81.18,0.9400000000000001,0.24,884,2.3000000000000003,102,4.6000000000000005,0.0000,0.0000 +2012,6,7,13,30,20.6,1.37,0.137,0.61,83,615,299,0,3,16.7,159,6,0,161,0.313,78.28,69.43,0.9400000000000001,0.24,885,2.3000000000000003,110,4.9,5.0935,3.9470 +2012,6,7,14,30,23,1.37,0.13,0.61,103,752,510,0,3,16.3,203,1,0,204,0.313,65.95,57.26,0.9400000000000001,0.24,885,2.3000000000000003,115,4.6000000000000005,13.9914,10.9429 +2012,6,7,15,30,25.1,1.3800000000000001,0.126,0.61,115,830,703,0,3,16,276,1,0,277,0.312,56.980000000000004,44.89,0.93,0.24,885,2.3000000000000003,118,4.2,29.4896,23.1543 +2012,6,7,16,30,26.900000000000002,1.4000000000000001,0.127,0.61,126,870,860,0,3,15.700000000000001,240,0,0,241,0.311,50.46,32.57,0.9400000000000001,0.24,885,2.4000000000000004,121,3.9000000000000004,37.5630,29.5488 +2012,6,7,17,30,28.5,1.42,0.13,0.61,134,893,968,0,3,15.5,310,1,0,311,0.31,45.24,20.85,0.9400000000000001,0.24,885,2.4000000000000004,124,3.7,48.3693,38.0850 +2012,6,7,18,30,29.5,1.6400000000000001,0.184,0.61,162,869,1011,0,3,15.3,209,0,0,209,0.309,42.21,12.18,0.9500000000000001,0.24,885,2.5,126,3.7,49.5951,39.0645 +2012,6,7,19,30,30.1,1.6300000000000001,0.191,0.61,164,860,997,0,3,15.200000000000001,287,0,0,288,0.308,40.53,14.35,0.9500000000000001,0.24,884,2.6,127,3.7,45.1593,35.5681 +2012,6,7,20,30,30.200000000000003,1.61,0.201,0.61,164,837,925,0,3,15.200000000000001,355,1,0,357,0.307,40.22,24.64,0.9500000000000001,0.24,884,2.6,128,3.8000000000000003,49.0925,38.6451 +2012,6,7,21,30,30.1,1.6600000000000001,0.255,0.61,175,769,791,0,3,14.9,473,137,0,583,0.308,39.730000000000004,36.67,0.9500000000000001,0.24,884,2.6,129,3.9000000000000004,45.7241,35.9507 +2012,6,7,22,30,29.6,1.62,0.243,0.61,154,715,622,0,1,14.5,154,715,0,622,0.309,39.81,49.04,0.9500000000000001,0.24,883,2.6,128,4.1000000000000005,20.1679,15.8192 +2012,6,7,23,30,28.5,1.59,0.224,0.61,124,632,427,0,0,14.3,124,632,0,427,0.31,41.99,61.36,0.9500000000000001,0.24,883,2.5,126,4.4,14.5919,11.3871 +2012,6,8,0,30,26.6,1.54,0.20700000000000002,0.61,87,478,223,0,0,14.600000000000001,87,478,0,223,0.312,47.58,73.41,0.9500000000000001,0.23,884,2.5,123,4.7,10.1128,7.7919 +2012,6,8,1,30,24.1,1.48,0.193,0.61,33,176,48,0,0,15.200000000000001,33,176,0,48,0.313,57.36,84.93,0.9500000000000001,0.23,884,2.5,119,4.9,0.0000,0.0000 +2012,6,8,2,30,21.8,1.41,0.186,0.61,0,0,0,0,0,15.8,0,0,0,0,0.315,68.71000000000001,95.94,0.9500000000000001,0.23,885,2.5,116,5.1000000000000005,0.0000,0.0000 +2012,6,8,3,30,20.1,1.36,0.189,0.61,0,0,0,0,0,16.2,0,0,0,0,0.315,78.49,105.74000000000001,0.9500000000000001,0.23,885,2.5,117,5.300000000000001,0.0000,0.0000 +2012,6,8,4,30,19,1.33,0.198,0.61,0,0,0,0,0,16.400000000000002,0,0,0,0,0.315,84.88,113.93,0.96,0.23,885,2.5,121,5.300000000000001,0.0000,0.0000 +2012,6,8,5,30,18.2,1.32,0.202,0.61,0,0,0,0,0,16.1,0,0,0,0,0.315,87.79,119.83,0.96,0.23,885,2.6,125,5.2,0.0000,0.0000 +2012,6,8,6,30,17.6,1.3,0.213,0.61,0,0,0,0,0,15.700000000000001,0,0,0,0,0.315,88.82000000000001,122.71000000000001,0.96,0.23,885,2.6,129,5,0.0000,0.0000 +2012,6,8,7,30,17.1,1.3,0.22,0.61,0,0,0,0,0,15.4,0,0,0,0,0.315,89.93,122.12,0.96,0.23,885,2.7,131,4.5,0.0000,0.0000 +2012,6,8,8,30,16.7,1.29,0.226,0.61,0,0,0,0,0,15.3,0,0,0,0,0.315,91.28,118.16,0.96,0.23,885,2.8000000000000003,131,4,0.0000,0.0000 +2012,6,8,9,30,16.5,1.3,0.23800000000000002,0.61,0,0,0,0,0,15.200000000000001,0,0,0,0,0.314,91.73,111.41,0.96,0.23,885,2.8000000000000003,130,3.6,0.0000,0.0000 +2012,6,8,10,30,16.2,1.31,0.243,0.61,0,0,0,0,0,15.100000000000001,0,0,0,0,0.313,92.96000000000001,102.62,0.96,0.23,886,2.9000000000000004,128,3.3000000000000003,0.0000,0.0000 +2012,6,8,11,30,16.3,1.32,0.24,0.61,0,0,0,0,0,14.9,0,0,0,0,0.313,91.57000000000001,92.41,0.96,0.23,886,2.8000000000000003,128,3.4000000000000004,0.0000,0.0000 +2012,6,8,12,30,17.2,1.34,0.23600000000000002,0.61,57,253,96,0,0,14.700000000000001,57,253,0,96,0.313,85.39,81.16,0.96,0.23,887,2.8000000000000003,132,3.9000000000000004,0.0000,0.0000 +2012,6,8,13,30,19.1,1.36,0.222,0.61,104,521,287,0,3,14.5,50,0,0,50,0.313,74.78,69.43,0.96,0.23,887,2.7,141,4.2,8.2840,6.4196 +2012,6,8,14,30,21.5,1.3800000000000001,0.211,0.61,130,674,495,0,7,14.600000000000001,269,131,0,340,0.313,64.69,57.26,0.96,0.23,887,2.6,152,4.3,11.4175,8.9299 +2012,6,8,15,30,23.8,1.4000000000000001,0.20700000000000002,0.61,148,762,688,0,3,14.600000000000001,230,0,0,231,0.312,56.370000000000005,44.89,0.9500000000000001,0.23,886,2.5,161,4.2,16.2726,12.7768 +2012,6,8,16,30,25.8,1.43,0.20400000000000001,0.61,160,816,848,0,3,14.600000000000001,207,0,0,207,0.311,50.04,32.57,0.9500000000000001,0.23,886,2.4000000000000004,166,4.1000000000000005,14.5544,11.4492 +2012,6,8,17,30,27.6,1.45,0.199,0.61,166,850,960,0,3,14.600000000000001,237,0,0,237,0.309,45.03,20.84,0.9500000000000001,0.23,885,2.3000000000000003,168,4,19.0662,15.0124 +2012,6,8,18,30,29,1.51,0.209,0.61,174,856,1011,0,3,14.600000000000001,249,0,0,249,0.307,41.46,12.11,0.9500000000000001,0.23,885,2.3000000000000003,168,3.9000000000000004,12.8927,10.1552 +2012,6,8,19,30,30.1,1.53,0.2,0.61,167,860,1001,0,8,14.5,477,85,0,559,0.305,38.550000000000004,14.26,0.9400000000000001,0.23,884,2.3000000000000003,167,4,17.7445,13.9758 +2012,6,8,20,30,30.700000000000003,1.52,0.189,0.61,158,852,933,0,3,14.200000000000001,487,124,0,600,0.304,36.62,24.55,0.9400000000000001,0.23,883,2.2,165,4.2,21.8005,17.1613 +2012,6,8,21,30,30.8,1.5,0.171,0.61,141,832,809,0,4,13.8,454,121,0,551,0.303,35.47,36.59,0.9400000000000001,0.23,882,2.2,162,4.5,34.9430,27.4743 +2012,6,8,22,30,30.400000000000002,1.46,0.154,0.61,122,790,640,7,3,13.4,288,531,7,636,0.302,35.34,48.96,0.9400000000000001,0.23,882,2.2,159,4.7,36.0573,28.2832 +2012,6,8,23,30,29.200000000000003,1.42,0.14200000000000002,0.61,100,710,441,0,0,13.200000000000001,100,710,0,441,0.302,37.410000000000004,61.28,0.9400000000000001,0.23,881,2.2,157,4.9,23.3478,18.2208 +2012,6,9,0,30,27.3,1.4000000000000001,0.136,0.61,73,554,232,0,1,13.4,73,554,0,232,0.302,42.36,73.33,0.9400000000000001,0.22,881,2.3000000000000003,152,4.9,11.0629,8.5250 +2012,6,9,1,30,24.900000000000002,1.3900000000000001,0.132,0.61,31,233,52,0,0,14,31,233,0,52,0.302,50.83,84.84,0.9400000000000001,0.22,881,2.3000000000000003,146,4.6000000000000005,0.0000,0.0000 +2012,6,9,2,30,22.900000000000002,1.3900000000000001,0.131,0.61,0,0,0,0,0,14.700000000000001,0,0,0,0,0.302,60.08,95.85000000000001,0.9400000000000001,0.22,881,2.4000000000000004,142,4.4,0.0000,0.0000 +2012,6,9,3,30,21.6,1.3900000000000001,0.131,0.61,0,0,0,0,0,15.3,0,0,0,0,0.302,67.36,105.65,0.9400000000000001,0.22,881,2.5,143,4.3,0.0000,0.0000 +2012,6,9,4,30,20.6,1.42,0.132,0.61,0,0,0,0,0,15.600000000000001,0,0,0,0,0.302,73.06,113.83,0.9400000000000001,0.22,882,2.5,148,4.1000000000000005,0.0000,0.0000 +2012,6,9,5,30,19.8,1.45,0.136,0.61,0,0,0,0,0,15.600000000000001,0,0,0,0,0.302,76.83,119.73,0.9400000000000001,0.22,881,2.5,155,3.9000000000000004,0.0000,0.0000 +2012,6,9,6,30,19.200000000000003,1.5,0.145,0.61,0,0,0,0,0,15.5,0,0,0,0,0.301,78.92,122.62,0.93,0.22,881,2.5,161,3.9000000000000004,0.0000,0.0000 +2012,6,9,7,30,18.7,1.55,0.155,0.61,0,0,0,0,0,15.200000000000001,0,0,0,0,0.301,80.17,122.05,0.93,0.22,881,2.4000000000000004,167,3.9000000000000004,0.0000,0.0000 +2012,6,9,8,30,18.2,1.6,0.167,0.61,0,0,0,0,0,15,0,0,0,0,0.301,81.64,118.10000000000001,0.92,0.22,881,2.3000000000000003,171,3.9000000000000004,0.0000,0.0000 +2012,6,9,9,30,17.6,1.6500000000000001,0.185,0.61,0,0,0,0,0,14.9,0,0,0,0,0.301,84.03,111.37,0.92,0.22,880,2.1,174,3.9000000000000004,0.0000,0.0000 +2012,6,9,10,30,17.1,1.74,0.216,0.61,0,0,0,0,0,14.8,0,0,0,0,0.301,86.35000000000001,102.59,0.91,0.22,880,1.9000000000000001,176,3.6,0.0000,0.0000 +2012,6,9,11,30,17,1.83,0.258,0.61,0,0,0,0,0,14.8,0,0,0,0,0.302,86.7,92.39,0.9,0.22,880,1.7000000000000002,181,3.5,0.0000,0.0000 +2012,6,9,12,30,18.6,1.8900000000000001,0.28300000000000003,0.61,54,274,96,0,0,14.8,54,274,0,96,0.302,78.46000000000001,81.16,0.9,0.22,880,1.6,190,4,0.0000,0.0000 +2012,6,9,13,30,21.700000000000003,1.8900000000000001,0.276,0.61,105,526,289,0,0,14.8,105,526,0,289,0.303,64.9,69.43,0.89,0.22,880,1.4000000000000001,207,4.6000000000000005,2.5727,1.9937 +2012,6,9,14,30,25.8,1.85,0.246,0.61,131,693,506,0,0,14.600000000000001,131,693,0,506,0.303,50.18,57.27,0.89,0.22,879,1.2000000000000002,228,4.6000000000000005,19.0292,14.8832 +2012,6,9,15,30,30,1.77,0.20800000000000002,0.61,141,804,710,0,0,12.600000000000001,141,804,0,710,0.304,34.300000000000004,44.9,0.89,0.22,879,1.1,251,4.3,13.5703,10.6550 +2012,6,9,16,30,33.4,1.68,0.17300000000000001,0.61,142,879,882,0,0,7.1000000000000005,142,879,0,882,0.304,19.61,32.57,0.9,0.22,878,1,266,3.9000000000000004,12.5011,9.8339 +2012,6,9,17,30,35.6,1.58,0.145,0.61,137,926,1003,0,0,2,137,926,0,1003,0.303,12.17,20.82,0.9,0.22,878,0.9,266,3.7,14.5297,11.4404 +2012,6,9,18,30,36.9,1.92,0.25,0.61,183,880,1043,0,3,-1.4000000000000001,611,234,0,840,0.303,8.83,12.05,0.9,0.22,877,0.8,255,3.7,15.3608,12.0993 +2012,6,9,19,30,37.6,1.87,0.216,0.61,169,902,1043,0,1,-3.7,169,902,0,1043,0.303,7.16,14.17,0.9,0.22,876,0.7000000000000001,245,3.9000000000000004,34.4434,27.1282 +2012,6,9,20,30,37.6,1.84,0.20400000000000001,0.61,158,893,971,0,0,-5.4,158,893,0,971,0.304,6.34,24.47,0.89,0.22,876,0.7000000000000001,239,4,36.6433,28.8456 +2012,6,9,21,30,37.1,2.22,0.718,0.61,280,619,777,0,0,-6.7,280,619,0,777,0.305,5.87,36.51,0.88,0.22,875,0.6000000000000001,234,4,33.0303,25.9707 +2012,6,9,22,30,36.300000000000004,2.22,0.665,0.61,235,571,611,0,0,-7.7,235,571,0,611,0.307,5.68,48.88,0.88,0.22,875,0.6000000000000001,226,3.4000000000000004,36.8792,28.9285 +2012,6,9,23,30,33.7,2.21,0.616,0.61,181,493,418,0,0,-5.4,181,493,0,418,0.308,7.8,61.2,0.88,0.22,874,0.5,206,2.2,24.1254,18.8286 +2012,6,10,0,30,29.400000000000002,2.19,0.5700000000000001,0.61,112,353,214,0,0,4.7,112,353,0,214,0.31,20.79,73.25,0.88,0.22,874,0.5,179,1.5,11.5179,8.8768 +2012,6,10,1,30,25.6,2.16,0.533,0.61,29,127,40,0,0,3.6,29,127,0,40,0.311,24.060000000000002,84.76,0.88,0.22,874,0.5,167,1.7000000000000002,0.0000,0.0000 +2012,6,10,2,30,23.700000000000003,2.13,0.496,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.312,24.580000000000002,95.77,0.88,0.22,875,0.5,171,2.1,0.0000,0.0000 +2012,6,10,3,30,22.700000000000003,2.11,0.458,0.61,0,0,0,0,0,2.5,0,0,0,0,0.312,26.57,105.56,0.88,0.22,875,0.6000000000000001,187,2.3000000000000003,0.0000,0.0000 +2012,6,10,4,30,21.700000000000003,2.09,0.425,0.61,0,0,0,0,0,2,0,0,0,0,0.312,27.240000000000002,113.74000000000001,0.88,0.22,875,0.6000000000000001,207,2.6,0.0000,0.0000 +2012,6,10,5,30,21,2.08,0.392,0.61,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.311,23.63,119.65,0.88,0.22,875,0.5,224,3.1,0.0000,0.0000 +2012,6,10,6,30,20.400000000000002,2.04,0.34700000000000003,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.31,18.14,122.54,0.88,0.22,875,0.5,235,3.7,0.0000,0.0000 +2012,6,10,7,30,19.6,1.96,0.293,0.61,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.31,15.22,121.98,0.88,0.22,875,0.5,242,4,0.0000,0.0000 +2012,6,10,8,30,18.7,1.87,0.247,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.309,15.24,118.05,0.88,0.22,875,0.6000000000000001,251,3.9000000000000004,0.0000,0.0000 +2012,6,10,9,30,17.900000000000002,1.78,0.215,0.61,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.309,16.59,111.33,0.88,0.22,876,0.6000000000000001,263,3.3000000000000003,0.0000,0.0000 +2012,6,10,10,30,17.2,1.73,0.189,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.309,18.650000000000002,102.57000000000001,0.88,0.22,876,0.6000000000000001,275,2.8000000000000003,0.0000,0.0000 +2012,6,10,11,30,17.900000000000002,1.69,0.164,0.61,0,0,0,0,0,-6.2,0,0,0,0,0.309,18.82,92.38,0.88,0.22,877,0.6000000000000001,283,2.9000000000000004,0.0000,0.0000 +2012,6,10,12,30,21,1.56,0.132,0.61,46,425,111,0,0,-6,46,425,0,111,0.31,15.8,81.16,0.88,0.22,878,0.6000000000000001,292,3.8000000000000003,0.0000,0.0000 +2012,6,10,13,30,25.3,1.35,0.098,0.61,72,720,325,0,0,-6.2,72,720,0,325,0.311,11.94,69.43,0.89,0.22,879,0.6000000000000001,298,4.4,14.8701,11.5233 +2012,6,10,14,30,29.8,1.24,0.085,0.61,85,848,544,0,0,-4.7,85,848,0,544,0.311,10.31,57.27,0.89,0.22,879,0.7000000000000001,301,5.5,28.3185,22.1484 +2012,6,10,15,30,32.9,1.2,0.083,0.61,97,911,742,0,0,-5.300000000000001,97,911,0,742,0.312,8.26,44.910000000000004,0.9,0.22,879,0.8,297,6.4,41.7084,32.7482 +2012,6,10,16,30,34.7,1.1,0.077,0.61,103,954,907,0,0,-6.2,103,954,0,907,0.312,6.97,32.58,0.9,0.22,879,0.8,287,6.2,53.2655,41.9012 +2012,6,10,17,30,36.1,0.96,0.068,0.61,104,982,1021,0,0,-6.300000000000001,104,982,0,1021,0.311,6.41,20.82,0.9,0.22,879,0.8,278,5.9,61.4919,48.4177 +2012,6,10,18,30,37.2,0.93,0.067,0.61,105,991,1075,0,0,-6.300000000000001,105,991,0,1075,0.311,6.05,12,0.9,0.22,878,0.8,270,5.7,51.8210,40.8181 +2012,6,10,19,30,37.800000000000004,0.99,0.07200000000000001,0.61,107,986,1064,0,0,-6.2,107,986,0,1064,0.31,5.87,14.08,0.9,0.22,878,0.8,264,5.4,64.2691,50.6196 +2012,6,10,20,30,38,1.1500000000000001,0.08700000000000001,0.61,111,963,988,0,0,-6.2,111,963,0,988,0.31,5.8100000000000005,24.39,0.9,0.22,877,0.8,259,5,59.3065,46.6863 +2012,6,10,21,30,37.800000000000004,1.3,0.101,0.61,110,926,855,0,0,-6.1000000000000005,110,926,0,855,0.31,5.94,36.44,0.89,0.22,877,0.8,257,4.5,46.5856,36.6292 +2012,6,10,22,30,37.1,1.45,0.122,0.61,107,861,674,0,0,-5.9,107,861,0,674,0.311,6.24,48.81,0.89,0.22,877,0.8,256,3.9000000000000004,35.4395,27.7998 +2012,6,10,23,30,35.4,1.56,0.145,0.61,98,750,460,0,0,-5.7,98,750,0,460,0.311,6.96,61.13,0.89,0.22,877,0.9,258,2.7,22.8785,17.8563 +2012,6,11,0,30,31.8,1.6500000000000001,0.17500000000000002,0.61,78,560,240,0,0,1.4000000000000001,78,560,0,240,0.311,14.370000000000001,73.17,0.89,0.22,877,0.9,268,1.4000000000000001,10.6322,8.1953 +2012,6,11,1,30,28.6,1.74,0.215,0.61,32,212,52,0,0,5.2,32,212,0,52,0.311,22.54,84.69,0.89,0.22,878,0.9,283,1.2000000000000002,0.0000,0.0000 +2012,6,11,2,30,27.200000000000003,1.82,0.27,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.311,19.95,95.69,0.89,0.22,878,0.9,292,1.2000000000000002,0.0000,0.0000 +2012,6,11,3,30,26.1,1.8900000000000001,0.338,0.61,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.311,20.03,105.47,0.89,0.22,879,0.9,294,1.2000000000000002,0.0000,0.0000 +2012,6,11,4,30,24.8,1.95,0.417,0.61,0,0,0,0,0,0.8,0,0,0,0,0.311,20.77,113.66,0.88,0.22,879,0.9,288,1.3,0.0000,0.0000 +2012,6,11,5,30,23.3,2,0.498,0.61,0,0,0,0,1,0.30000000000000004,0,0,0,0,0.311,21.94,119.56,0.88,0.22,879,0.9,280,1.5,0.0000,0.0000 +2012,6,11,6,30,21.700000000000003,2.06,0.578,0.61,0,0,0,0,0,0,0,0,0,0,0.312,23.52,122.47,0.88,0.22,880,0.9,276,1.8,0.0000,0.0000 +2012,6,11,7,30,20,2.12,0.648,0.61,0,0,0,0,0,-0.1,0,0,0,0,0.312,26.080000000000002,121.92,0.88,0.22,880,0.9,281,1.9000000000000001,0.0000,0.0000 +2012,6,11,8,30,18.5,2.17,0.6910000000000001,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.312,29.3,118,0.88,0.22,880,0.9,295,1.9000000000000001,0.0000,0.0000 +2012,6,11,9,30,17.5,2.19,0.6950000000000001,0.61,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.31,34.62,111.3,0.88,0.22,881,0.9,317,2,0.0000,0.0000 +2012,6,11,10,30,16.900000000000002,2.2,0.664,0.61,0,0,0,0,0,4.4,0,0,0,0,0.309,43.36,102.55,0.88,0.22,881,1,342,2.5,0.0000,0.0000 +2012,6,11,11,30,16.900000000000002,2.18,0.604,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.308,52.550000000000004,92.37,0.88,0.22,882,1.1,179,3.4000000000000004,0.0000,0.0000 +2012,6,11,12,30,18.2,2.15,0.524,0.61,54,195,84,0,0,9.3,54,195,0,84,0.308,55.99,81.16,0.88,0.22,883,1.2000000000000002,9,4.4,0.0000,0.0000 +2012,6,11,13,30,21.1,2.11,0.446,0.61,122,433,274,0,0,10.200000000000001,122,433,0,274,0.307,49.71,69.44,0.88,0.22,884,1.3,18,5,16.7224,12.9588 +2012,6,11,14,30,24.5,2.05,0.374,0.61,158,607,486,0,1,10.100000000000001,158,607,0,486,0.306,40.2,57.28,0.89,0.22,885,1.4000000000000001,29,5.5,30.4452,23.8117 +2012,6,11,15,30,27.200000000000003,1.98,0.309,0.61,171,725,685,0,0,9.5,171,725,0,685,0.303,32.82,44.92,0.9,0.22,886,1.6,39,5.800000000000001,43.5870,34.2231 +2012,6,11,16,30,29.400000000000002,1.9000000000000001,0.252,0.61,169,808,849,0,0,9,169,808,0,849,0.301,27.95,32.59,0.9,0.22,886,1.7000000000000002,46,5.5,54.7743,43.0881 +2012,6,11,17,30,31.3,1.82,0.20500000000000002,0.61,161,864,969,7,2,8.4,324,668,7,948,0.298,24.11,20.81,0.91,0.22,886,1.7000000000000002,50,5.1000000000000005,62.5954,49.2866 +2012,6,11,18,30,32.9,1.69,0.133,0.61,134,917,1031,7,2,7.6000000000000005,390,590,7,967,0.296,20.88,11.950000000000001,0.91,0.22,886,1.8,53,4.6000000000000005,66.3203,52.2388 +2012,6,11,19,30,33.9,1.67,0.13,0.61,133,918,1023,0,8,6.7,473,174,0,641,0.293,18.57,14,0.92,0.22,885,1.8,56,4.3,65.5666,51.6417 +2012,6,11,20,30,34.1,1.6500000000000001,0.135,0.61,131,897,948,0,1,5.9,131,897,0,948,0.292,17.39,24.32,0.92,0.22,885,1.9000000000000001,61,4.2,60.3503,47.5082 +2012,6,11,21,30,33.6,1.6,0.126,0.61,120,876,825,0,0,5.300000000000001,120,876,0,825,0.292,17.09,36.37,0.92,0.22,885,1.8,66,4.2,51.2694,40.3123 +2012,6,11,22,30,32.5,1.59,0.126,0.61,109,825,654,0,1,4.9,109,825,0,654,0.292,17.69,48.74,0.92,0.22,885,1.8,69,4.3,39.1032,30.6742 +2012,6,11,23,30,31.1,1.59,0.126,0.61,93,738,450,0,0,4.800000000000001,93,738,0,450,0.292,19,61.06,0.92,0.22,885,1.9000000000000001,71,4.3,25.1882,19.6599 +2012,6,12,0,30,29.1,1.6,0.128,0.61,70,582,240,0,3,4.9,144,248,0,216,0.293,21.53,73.10000000000001,0.92,0.22,885,1.9000000000000001,72,4.1000000000000005,11.9328,9.1990 +2012,6,12,1,30,26.700000000000003,1.62,0.134,0.61,31,259,56,0,0,5.5,31,259,0,56,0.294,25.830000000000002,84.61,0.92,0.22,886,1.9000000000000001,74,3.9000000000000004,0.0000,0.0000 +2012,6,12,2,30,25,1.6400000000000001,0.14300000000000002,0.61,0,0,0,0,1,6,0,0,0,0,0.294,29.46,95.61,0.92,0.22,886,2,77,4,0.0000,0.0000 +2012,6,12,3,30,23.8,1.67,0.154,0.61,0,0,0,0,8,6.5,0,0,0,0,0.294,32.84,105.39,0.92,0.22,887,2.1,80,4.1000000000000005,0.0000,0.0000 +2012,6,12,4,30,22.6,1.71,0.166,0.61,0,0,0,0,8,7.1000000000000005,0,0,0,0,0.294,36.9,113.58,0.92,0.22,887,2.2,84,4.2,0.0000,0.0000 +2012,6,12,5,30,21.6,1.73,0.179,0.61,0,0,0,0,1,7.9,0,0,0,0,0.294,41.29,119.49000000000001,0.93,0.22,887,2.4000000000000004,86,4.2,0.0000,0.0000 +2012,6,12,6,30,20.8,1.74,0.192,0.61,0,0,0,0,0,8.9,0,0,0,0,0.293,46.45,122.4,0.93,0.22,887,2.5,86,4.2,0.0000,0.0000 +2012,6,12,7,30,20.1,1.75,0.20700000000000002,0.61,0,0,0,0,0,10.200000000000001,0,0,0,0,0.292,52.77,121.86,0.93,0.22,887,2.6,86,4,0.0000,0.0000 +2012,6,12,8,30,19.5,1.76,0.219,0.61,0,0,0,0,0,11.4,0,0,0,0,0.292,59.43,117.96000000000001,0.93,0.22,887,2.7,86,3.7,0.0000,0.0000 +2012,6,12,9,30,18.8,1.76,0.228,0.61,0,0,0,0,0,12.4,0,0,0,0,0.293,66.33,111.28,0.93,0.22,887,2.6,84,3.3000000000000003,0.0000,0.0000 +2012,6,12,10,30,18.2,1.76,0.24,0.61,0,0,0,0,7,13.100000000000001,0,0,0,0,0.294,72.02,102.54,0.93,0.22,888,2.5,81,3.1,0.0000,0.0000 +2012,6,12,11,30,18.2,1.75,0.256,0.61,0,0,0,0,6,13.5,0,0,0,0,0.295,73.91,92.37,0.93,0.22,888,2.5,77,3.3000000000000003,0.0000,0.0000 +2012,6,12,12,30,19.5,1.74,0.271,0.61,56,257,95,7,7,13.9,67,7,7,68,0.295,69.85000000000001,81.16,0.93,0.22,889,2.5,81,4.1000000000000005,0.0000,0.0000 +2012,6,12,13,30,22.1,1.72,0.281,0.61,110,488,281,0,3,15.5,195,34,0,206,0.296,66.2,69.45,0.93,0.22,889,2.6,97,4.800000000000001,14.0970,10.9241 +2012,6,12,14,30,24.900000000000002,1.72,0.272,0.61,142,633,484,0,0,16.900000000000002,142,633,0,484,0.296,61.19,57.300000000000004,0.93,0.22,889,2.7,110,4.9,27.1978,21.2718 +2012,6,12,15,30,27,1.71,0.267,0.61,163,720,672,7,3,17,386,287,7,589,0.295,54.47,44.94,0.93,0.22,889,2.8000000000000003,116,4.9,40.2375,31.5931 +2012,6,12,16,30,28.5,1.69,0.266,0.61,180,770,828,0,1,16.900000000000002,180,770,0,828,0.294,49.57,32.6,0.9400000000000001,0.22,888,2.9000000000000004,119,5.1000000000000005,51.2708,40.3320 +2012,6,12,17,30,29.5,1.68,0.27,0.61,190,794,933,0,0,17,190,794,0,933,0.293,46.9,20.82,0.9400000000000001,0.22,888,3.1,122,5.4,58.1205,45.7631 +2012,6,12,18,30,29.900000000000002,1.62,0.233,0.61,181,824,988,0,0,17.1,181,824,0,988,0.292,46.22,11.92,0.9500000000000001,0.22,887,3.3000000000000003,125,5.7,59.6589,46.9919 +2012,6,12,19,30,30,1.59,0.266,0.61,194,799,969,0,1,17.2,194,799,0,969,0.291,46.28,13.92,0.9500000000000001,0.22,886,3.6,128,5.9,39.5021,31.1128 +2012,6,12,20,30,29.700000000000003,1.56,0.308,0.61,205,755,893,0,0,17.3,205,755,0,893,0.291,47.24,24.25,0.9500000000000001,0.22,886,3.7,131,6.1000000000000005,57.9115,45.5886 +2012,6,12,21,30,29,1.5,0.275,0.61,181,735,773,0,0,17.1,181,735,0,773,0.291,48.56,36.300000000000004,0.9500000000000001,0.22,885,3.8000000000000003,132,6.2,49.4774,38.9036 +2012,6,12,22,30,28,1.49,0.354,0.61,188,621,598,0,0,16.8,188,621,0,598,0.29,50.480000000000004,48.67,0.96,0.22,884,4,128,6,37.9521,29.7718 +2012,6,12,23,30,26,1.44,0.635,0.61,209,367,387,0,0,16.900000000000002,209,367,0,387,0.28800000000000003,57.19,60.99,0.98,0.22,884,4.4,130,4.4,24.6513,19.2416 +2012,6,13,0,30,23.6,1.3900000000000001,1.055,0.61,142,120,177,0,0,17.900000000000002,142,120,0,177,0.28700000000000003,70.54,73.03,0.98,0.22,885,4.5,132,2.6,10.7465,8.2854 +2012,6,13,1,30,22.200000000000003,1.3800000000000001,1.098,0.61,22,15,23,0,1,18.7,22,15,0,23,0.28800000000000003,80.69,84.54,0.98,0.22,885,4.4,139,2.1,0.0000,0.0000 +2012,6,13,2,30,21.6,1.45,0.846,0.61,0,0,0,0,8,19.1,0,0,0,0,0.291,85.67,95.54,0.98,0.22,886,4.1000000000000005,139,3,0.0000,0.0000 +2012,6,13,3,30,21.200000000000003,1.49,0.669,0.61,0,0,0,0,9,19.400000000000002,0,0,0,0,0.294,89.41,105.32000000000001,0.98,0.22,886,3.9000000000000004,126,4.6000000000000005,0.0000,0.0000 +2012,6,13,4,30,20.900000000000002,1.52,0.442,0.61,0,0,0,0,6,19.6,0,0,0,0,0.296,92.2,113.51,0.97,0.22,886,3.7,124,5.6000000000000005,0.0000,0.0000 +2012,6,13,5,30,20.5,1.54,0.325,0.61,0,0,0,0,6,19.5,0,0,0,0,0.296,93.86,119.42,0.96,0.22,885,3.5,128,5.9,0.0000,0.0000 +2012,6,13,6,30,20.1,1.59,0.29,0.61,0,0,0,0,6,19.200000000000003,0,0,0,0,0.296,94.38,122.34,0.9500000000000001,0.22,885,3.4000000000000004,137,5.7,0.0000,0.0000 +2012,6,13,7,30,19.700000000000003,1.61,0.292,0.61,0,0,0,0,6,18.6,0,0,0,0,0.296,93.66,121.82000000000001,0.9500000000000001,0.22,884,3.3000000000000003,147,5.300000000000001,0.0000,0.0000 +2012,6,13,8,30,19.200000000000003,1.61,0.281,0.61,0,0,0,0,7,18,0,0,0,0,0.297,92.75,117.93,0.9400000000000001,0.22,884,3.1,158,4.800000000000001,0.0000,0.0000 +2012,6,13,9,30,18.7,1.59,0.268,0.61,0,0,0,0,4,17.2,0,0,0,0,0.298,91.2,111.26,0.9400000000000001,0.22,884,3,169,4.3,0.0000,0.0000 +2012,6,13,10,30,18.1,1.58,0.255,0.61,0,0,0,0,3,16.400000000000002,0,0,0,0,0.298,90.02,102.53,0.9400000000000001,0.22,884,2.8000000000000003,177,3.7,0.0000,0.0000 +2012,6,13,11,30,18,1.57,0.242,0.61,0,0,0,0,0,15.700000000000001,0,0,0,0,0.298,86.43,92.38,0.9400000000000001,0.22,884,2.7,178,3.2,0.0000,0.0000 +2012,6,13,12,30,19.200000000000003,1.55,0.23,0.61,54,275,96,0,0,15.3,54,275,0,96,0.298,78.15,81.17,0.93,0.22,884,2.5,177,3.5,0.0000,0.0000 +2012,6,13,13,30,21.6,1.55,0.218,0.61,99,537,288,0,0,15.200000000000001,99,537,0,288,0.297,66.95,69.46000000000001,0.93,0.22,884,2.4000000000000004,177,3.9000000000000004,10.5976,8.2122 +2012,6,13,14,30,24.400000000000002,1.54,0.209,0.61,126,685,496,0,0,15.600000000000001,126,685,0,496,0.296,58.09,57.32,0.93,0.22,884,2.3000000000000003,174,4,27.0831,21.1819 +2012,6,13,15,30,26.900000000000002,1.53,0.20500000000000002,0.61,144,767,686,0,0,15.8,144,767,0,686,0.294,50.660000000000004,44.96,0.93,0.22,884,2.4000000000000004,169,4.1000000000000005,34.5963,27.1637 +2012,6,13,16,30,28.900000000000002,1.53,0.203,0.61,157,818,846,0,3,15.700000000000001,492,185,0,648,0.293,44.83,32.62,0.9400000000000001,0.22,884,2.4000000000000004,167,4.3,50.0018,39.3337 +2012,6,13,17,30,30.5,1.54,0.199,0.61,162,846,953,0,3,15.600000000000001,486,66,0,548,0.292,40.45,20.82,0.93,0.22,883,2.5,168,4.7,57.2003,45.0386 +2012,6,13,18,30,31.8,1.51,0.155,0.61,145,882,1008,0,3,15.4,455,10,0,464,0.291,37.160000000000004,11.89,0.93,0.22,883,2.7,172,5.1000000000000005,60.9554,48.0132 +2012,6,13,19,30,32.5,1.56,0.17300000000000001,0.61,153,865,993,0,3,15.200000000000001,541,178,0,714,0.291,35.32,13.85,0.9400000000000001,0.22,882,2.9000000000000004,175,5.300000000000001,59.7181,47.0356 +2012,6,13,20,30,32.800000000000004,1.59,0.202,0.61,161,829,918,0,3,15.100000000000001,502,141,0,630,0.292,34.46,24.18,0.9400000000000001,0.22,881,3,177,5.5,54.5560,42.9473 +2012,6,13,21,30,32.6,1.6300000000000001,0.231,0.61,163,776,788,0,3,14.9,424,335,0,694,0.293,34.52,36.230000000000004,0.9400000000000001,0.22,881,3.1,178,5.6000000000000005,46.3653,36.4570 +2012,6,13,22,30,31.900000000000002,1.6300000000000001,0.228,0.61,146,719,622,0,3,14.700000000000001,359,258,0,530,0.294,35.43,48.6,0.9400000000000001,0.22,880,3.1,177,5.5,34.7108,27.2296 +2012,6,13,23,30,30.700000000000003,1.62,0.216,0.61,120,635,429,0,8,14.700000000000001,246,213,0,349,0.295,37.82,60.92,0.9400000000000001,0.22,880,3,174,5,21.2093,16.5556 +2012,6,14,0,30,29,1.61,0.201,0.61,84,487,227,0,6,14.8,142,39,0,154,0.296,41.97,72.96000000000001,0.93,0.22,880,2.9000000000000004,166,4.1000000000000005,8.8119,6.7946 +2012,6,14,1,30,26.900000000000002,1.59,0.19,0.61,34,198,53,0,6,15.200000000000001,39,22,0,42,0.297,48.84,84.47,0.93,0.22,880,2.8000000000000003,153,3.5,0.0000,0.0000 +2012,6,14,2,30,25.3,1.58,0.189,0.61,0,0,0,0,7,15.5,0,0,0,0,0.299,54.72,95.47,0.9400000000000001,0.22,880,2.9000000000000004,143,4,0.0000,0.0000 +2012,6,14,3,30,24.200000000000003,1.56,0.20400000000000001,0.61,0,0,0,0,7,15.9,0,0,0,0,0.299,60.01,105.25,0.9400000000000001,0.22,881,3.1,141,4.7,0.0000,0.0000 +2012,6,14,4,30,23.3,1.55,0.224,0.61,0,0,0,0,8,16.6,0,0,0,0,0.298,65.99,113.44,0.9400000000000001,0.22,881,3.2,143,4.800000000000001,0.0000,0.0000 +2012,6,14,5,30,22.5,1.57,0.23600000000000002,0.61,0,0,0,0,7,17.1,0,0,0,0,0.298,71.74,119.36,0.9400000000000001,0.22,881,3.2,148,4.7,0.0000,0.0000 +2012,6,14,6,30,21.8,1.61,0.242,0.61,0,0,0,0,7,17.5,0,0,0,0,0.298,76.5,122.29,0.9400000000000001,0.22,881,3.1,154,4.4,0.0000,0.0000 +2012,6,14,7,30,21.200000000000003,1.6500000000000001,0.248,0.61,0,0,0,0,0,17.6,0,0,0,0,0.299,79.94,121.78,0.9400000000000001,0.22,881,2.9000000000000004,160,4,0.0000,0.0000 +2012,6,14,8,30,20.5,1.68,0.244,0.61,0,0,0,0,0,17.5,0,0,0,0,0.3,82.8,117.9,0.93,0.22,881,2.8000000000000003,165,3.5,0.0000,0.0000 +2012,6,14,9,30,19.8,1.67,0.224,0.61,0,0,0,0,0,17.2,0,0,0,0,0.301,85.02,111.25,0.93,0.22,881,2.6,169,3.1,0.0000,0.0000 +2012,6,14,10,30,19.1,1.6400000000000001,0.196,0.61,0,0,0,0,0,16.900000000000002,0,0,0,0,0.302,87.08,102.53,0.93,0.22,881,2.5,173,2.7,0.0000,0.0000 +2012,6,14,11,30,19.3,1.61,0.17200000000000001,0.61,0,0,0,0,0,16.6,0,0,0,0,0.303,84.25,92.38,0.93,0.22,881,2.3000000000000003,176,3,0.0000,0.0000 +2012,6,14,12,30,21,1.59,0.154,0.61,48,352,102,0,0,16.3,48,352,0,102,0.304,74.41,81.19,0.92,0.22,881,2.2,180,3.8000000000000003,0.0000,0.0000 +2012,6,14,13,30,24.1,1.57,0.14200000000000002,0.61,82,618,298,0,0,15.8,82,618,0,298,0.306,59.65,69.48,0.92,0.22,881,2.1,190,4.7,14.8147,11.4800 +2012,6,14,14,30,27.5,1.56,0.134,0.61,101,757,510,0,0,14.9,101,757,0,510,0.307,46.01,57.34,0.92,0.22,881,2,202,5,27.7517,21.7046 +2012,6,14,15,30,30.6,1.55,0.129,0.61,114,835,704,0,0,13.700000000000001,114,835,0,704,0.307,35.68,44.980000000000004,0.92,0.22,881,2,208,4.4,40.2915,31.6352 +2012,6,14,16,30,33.4,1.54,0.126,0.61,122,881,863,0,0,12.100000000000001,122,881,0,863,0.307,27.36,32.64,0.91,0.22,881,2,209,3.8000000000000003,39.1305,30.7818 +2012,6,14,17,30,35.6,1.54,0.125,0.61,127,906,974,0,0,10.3,127,906,0,974,0.307,21.52,20.84,0.91,0.22,880,2,205,3.3000000000000003,33.5968,26.4535 +2012,6,14,18,30,37,1.53,0.122,0.61,129,918,1028,0,0,8.8,129,918,0,1028,0.306,18.080000000000002,11.86,0.92,0.22,880,2,196,3.2,28.6272,22.5491 +2012,6,14,19,30,37.9,1.53,0.124,0.61,130,915,1019,0,0,7.7,130,915,0,1019,0.306,15.97,13.790000000000001,0.92,0.22,879,2,188,3.4000000000000004,44.0046,34.6593 +2012,6,14,20,30,38.1,1.54,0.126,0.61,127,898,946,0,6,6.800000000000001,161,0,0,161,0.305,14.85,24.11,0.92,0.22,879,2.1,181,3.7,38.4915,30.3013 +2012,6,14,21,30,37.9,1.55,0.13,0.61,122,868,823,0,6,6.1000000000000005,178,1,0,179,0.305,14.24,36.17,0.93,0.22,879,2,177,4.1000000000000005,41.6326,32.7359 +2012,6,14,22,30,37.2,1.56,0.136,0.61,114,812,651,0,6,5.300000000000001,113,0,0,113,0.305,14.07,48.54,0.93,0.22,878,2,174,4.4,30.7711,24.1396 +2012,6,14,23,30,35.7,1.57,0.14400000000000002,0.61,100,719,450,0,6,4.9,147,6,0,150,0.304,14.83,60.86,0.93,0.22,878,2,169,4.2,19.1349,14.9371 +2012,6,15,0,30,32.6,1.59,0.15,0.61,76,560,241,0,6,6.4,122,18,0,127,0.304,19.55,72.9,0.93,0.22,878,1.9000000000000001,160,3.7,7.6718,5.9162 +2012,6,15,1,30,29.200000000000003,1.62,0.147,0.61,33,254,57,0,7,9.4,11,0,0,11,0.304,29.150000000000002,84.41,0.92,0.22,879,1.9000000000000001,154,3.9000000000000004,0.0000,0.0000 +2012,6,15,2,30,26.900000000000002,1.6400000000000001,0.139,0.61,0,0,0,0,8,10.5,0,0,0,0,0.304,35.72,95.4,0.92,0.22,879,2,154,4.2,0.0000,0.0000 +2012,6,15,3,30,25.6,1.6300000000000001,0.137,0.61,0,0,0,0,6,12.200000000000001,0,0,0,0,0.304,43.27,105.19,0.92,0.22,880,2.1,158,4.1000000000000005,0.0000,0.0000 +2012,6,15,4,30,24.400000000000002,1.6,0.137,0.61,0,0,0,0,6,13.600000000000001,0,0,0,0,0.305,50.9,113.38,0.91,0.22,880,2.1,164,3.8000000000000003,0.0000,0.0000 +2012,6,15,5,30,23.400000000000002,1.57,0.133,0.61,0,0,0,0,7,14.3,0,0,0,0,0.304,56.82,119.3,0.92,0.22,881,2.1,169,3.4000000000000004,0.0000,0.0000 +2012,6,15,6,30,22.400000000000002,1.55,0.13,0.61,0,0,0,0,7,14.600000000000001,0,0,0,0,0.304,61.230000000000004,122.24000000000001,0.92,0.22,881,2,176,3.1,0.0000,0.0000 +2012,6,15,7,30,21.5,1.55,0.131,0.61,0,0,0,0,8,14.5,0,0,0,0,0.304,64.58,121.74000000000001,0.92,0.22,881,2.1,182,2.8000000000000003,0.0000,0.0000 +2012,6,15,8,30,20.700000000000003,1.55,0.134,0.61,0,0,0,0,0,14.5,0,0,0,0,0.303,67.5,117.89,0.92,0.22,881,2.1,182,2.5,0.0000,0.0000 +2012,6,15,9,30,20,1.56,0.137,0.61,0,0,0,0,0,14.3,0,0,0,0,0.303,69.86,111.24000000000001,0.92,0.22,881,2.1,170,2.4000000000000004,0.0000,0.0000 +2012,6,15,10,30,19.400000000000002,1.56,0.136,0.61,0,0,0,0,0,14.100000000000001,0,0,0,0,0.303,71.66,102.53,0.92,0.22,882,2,153,2.6,0.0000,0.0000 +2012,6,15,11,30,19.200000000000003,1.55,0.129,0.61,0,0,0,0,0,14,0,0,0,0,0.302,71.88,92.4,0.92,0.22,882,1.9000000000000001,140,3.3000000000000003,0.0000,0.0000 +2012,6,15,12,30,20.400000000000002,1.53,0.122,0.61,45,396,106,0,0,14,45,396,0,106,0.301,66.75,81.2,0.92,0.22,882,1.8,137,4.1000000000000005,0.0000,0.0000 +2012,6,15,13,30,22.900000000000002,1.51,0.117,0.61,76,655,305,0,0,13.9,76,655,0,305,0.301,56.730000000000004,69.51,0.92,0.22,883,1.7000000000000002,143,4.5,15.3264,11.8762 +2012,6,15,14,30,25.8,1.5,0.114,0.61,95,786,519,0,0,13.600000000000001,95,786,0,519,0.301,46.94,57.370000000000005,0.92,0.22,883,1.6,147,4.5,28.5320,22.3147 +2012,6,15,15,30,28.400000000000002,1.5,0.115,0.61,109,851,710,0,0,13.5,109,851,0,710,0.301,40.01,45.01,0.92,0.22,883,1.8,148,4.2,41.3463,32.4633 +2012,6,15,16,30,30.3,1.5,0.11900000000000001,0.61,120,885,865,0,0,13.3,120,885,0,865,0.301,35.33,32.67,0.92,0.22,883,2,148,4,52.1119,40.9934 +2012,6,15,17,30,31.400000000000002,1.5,0.126,0.61,129,900,970,0,0,13.5,129,900,0,970,0.3,33.7,20.85,0.93,0.22,883,2.2,147,4.1000000000000005,59.7129,47.0168 +2012,6,15,18,30,32.1,1.5,0.131,0.61,134,903,1018,0,0,14.200000000000001,134,903,0,1018,0.3,33.81,11.84,0.93,0.22,883,2.4000000000000004,145,4.2,63.4251,49.9586 +2012,6,15,19,30,32.4,1.49,0.136,0.61,136,894,1004,0,0,14.8,136,894,0,1004,0.299,34.58,13.72,0.93,0.22,883,2.6,142,4.4,62.8043,49.4666 +2012,6,15,20,30,32.6,1.48,0.14,0.61,134,874,932,0,0,15.3,134,874,0,932,0.298,35.38,24.05,0.93,0.22,883,2.7,140,4.7,9.8375,7.7443 +2012,6,15,21,30,32.4,1.32,0.10300000000000001,0.61,111,869,813,0,0,15.700000000000001,111,869,0,813,0.297,36.57,36.1,0.93,0.22,882,2.8000000000000003,139,5,10.7394,8.4445 +2012,6,15,22,30,31.8,1.33,0.10400000000000001,0.61,101,820,644,0,0,15.8,101,820,0,644,0.297,38.07,48.480000000000004,0.93,0.22,882,2.8000000000000003,138,5.4,6.5620,5.1479 +2012,6,15,23,30,30.5,1.35,0.114,0.61,91,724,444,0,6,16.1,206,44,0,227,0.297,41.910000000000004,60.800000000000004,0.9400000000000001,0.22,882,3,135,5.300000000000001,8.2272,6.4225 +2012,6,16,0,30,28.3,1.37,0.147,0.61,76,531,233,0,9,17.1,87,8,0,89,0.297,50.56,72.84,0.9400000000000001,0.22,882,3.2,132,4.6000000000000005,6.3303,4.8821 +2012,6,16,1,30,26,1.36,0.229,0.61,37,154,52,0,9,18.2,3,0,0,3,0.297,62.06,84.35000000000001,0.9500000000000001,0.22,883,3.4000000000000004,136,3.8000000000000003,0.0000,0.0000 +2012,6,16,2,30,24.3,1.36,0.332,0.61,0,0,0,0,9,18.6,0,0,0,0,0.298,70.75,95.34,0.96,0.22,884,3.5,152,2.9000000000000004,0.0000,0.0000 +2012,6,16,3,30,23.400000000000002,1.3800000000000001,0.38,0.61,0,0,0,0,6,18.8,0,0,0,0,0.298,75.60000000000001,105.13,0.96,0.22,885,3.3000000000000003,161,1.9000000000000001,0.0000,0.0000 +2012,6,16,4,30,22.6,1.41,0.27,0.61,0,0,0,0,6,18.8,0,0,0,0,0.299,79.22,113.32000000000001,0.9500000000000001,0.22,885,2.9000000000000004,155,2,0.0000,0.0000 +2012,6,16,5,30,21.900000000000002,1.4000000000000001,0.18,0.61,0,0,0,0,6,17.900000000000002,0,0,0,0,0.3,77.82000000000001,119.25,0.9500000000000001,0.22,884,2.7,158,3,0.0000,0.0000 +2012,6,16,6,30,21.200000000000003,1.4000000000000001,0.14200000000000002,0.61,0,0,0,0,6,17.400000000000002,0,0,0,0,0.301,78.71000000000001,122.2,0.9400000000000001,0.22,884,2.8000000000000003,173,3.5,0.0000,0.0000 +2012,6,16,7,30,20.6,1.41,0.136,0.61,0,0,0,0,6,16.900000000000002,0,0,0,0,0.3,79.56,121.72,0.9400000000000001,0.22,885,2.8000000000000003,186,3.2,0.0000,0.0000 +2012,6,16,8,30,20,1.44,0.138,0.61,0,0,0,0,6,16.400000000000002,0,0,0,0,0.298,79.96000000000001,117.87,0.9400000000000001,0.22,885,2.8000000000000003,193,2.4000000000000004,0.0000,0.0000 +2012,6,16,9,30,19.400000000000002,1.47,0.137,0.61,0,0,0,0,6,15.8,0,0,0,0,0.297,79.85000000000001,111.24000000000001,0.9400000000000001,0.22,885,2.7,192,1.7000000000000002,0.0000,0.0000 +2012,6,16,10,30,19,1.49,0.137,0.61,0,0,0,0,7,15.100000000000001,0,0,0,0,0.295,78.24,102.54,0.9400000000000001,0.22,885,2.7,187,1.4000000000000001,0.0000,0.0000 +2012,6,16,11,30,19.6,1.5,0.137,0.61,0,0,0,0,7,14.5,0,0,0,0,0.293,72.37,92.41,0.9400000000000001,0.22,886,2.6,177,1.5,0.0000,0.0000 +2012,6,16,12,30,21.6,1.5,0.137,0.61,47,358,102,7,7,14.4,72,19,7,75,0.291,63.45,81.23,0.9400000000000001,0.22,886,2.6,172,2.4000000000000004,0.0000,0.0000 +2012,6,16,13,30,24.3,1.51,0.135,0.61,81,614,296,0,3,13.9,194,80,0,222,0.29,52.14,69.53,0.9400000000000001,0.22,886,2.5,179,3.6,15.6823,12.1516 +2012,6,16,14,30,27.1,1.52,0.131,0.61,101,745,503,0,3,13.600000000000001,273,284,0,426,0.28800000000000003,43.37,57.4,0.9400000000000001,0.22,886,2.6,188,4,29.0310,22.7046 +2012,6,16,15,30,29,1.53,0.13,0.61,115,818,693,0,0,13.600000000000001,115,818,0,693,0.28800000000000003,38.77,45.04,0.9400000000000001,0.22,886,2.7,187,3.6,41.6950,32.7369 +2012,6,16,16,30,30.1,1.53,0.134,0.61,127,857,848,0,0,14.3,127,857,0,848,0.28800000000000003,38.07,32.7,0.9400000000000001,0.22,887,2.8000000000000003,179,3.4000000000000004,52.2300,41.0862 +2012,6,16,17,30,30.6,1.53,0.14200000000000002,0.61,138,873,953,0,0,15,138,873,0,953,0.28800000000000003,38.92,20.87,0.9500000000000001,0.22,887,3,172,3.5,59.4671,46.8233 +2012,6,16,18,30,30.6,1.46,0.131,0.61,135,887,1004,0,3,15.700000000000001,414,512,0,915,0.28800000000000003,40.69,11.83,0.9500000000000001,0.22,887,3.2,168,3.6,62.8088,49.4731 +2012,6,16,19,30,30.3,1.43,0.136,0.61,137,880,993,0,0,16.2,137,880,0,993,0.289,42.72,13.67,0.9500000000000001,0.22,887,3.3000000000000003,165,3.7,61.8824,48.7405 +2012,6,16,20,30,29.6,1.4000000000000001,0.136,0.61,134,866,924,0,0,16.400000000000002,134,866,0,924,0.289,44.980000000000004,23.990000000000002,0.9500000000000001,0.22,886,3.3000000000000003,164,3.6,56.9513,44.8336 +2012,6,16,21,30,28.8,1.36,0.115,0.61,117,853,806,0,0,16.400000000000002,117,853,0,806,0.289,47.15,36.050000000000004,0.9500000000000001,0.22,886,3.2,161,3.4000000000000004,48.7838,38.3596 +2012,6,16,22,30,28.1,1.35,0.107,0.61,104,813,643,0,4,16.400000000000002,317,34,0,340,0.29,48.96,48.42,0.9500000000000001,0.22,886,3,153,3.1,37.4053,29.3449 +2012,6,16,23,30,27.1,1.33,0.101,0.61,87,741,449,0,6,16.900000000000002,94,1,0,94,0.292,53.6,60.74,0.9500000000000001,0.22,886,2.8000000000000003,140,2.5,12.4551,9.7233 +2012,6,17,0,30,25.6,1.32,0.096,0.61,65,602,244,0,6,17.8,126,22,0,132,0.294,61.93,72.78,0.9500000000000001,0.22,886,2.7,131,2,4.4387,3.4236 +2012,6,17,1,30,24.1,1.31,0.098,0.61,32,288,61,0,6,18,34,2,0,34,0.296,68.9,84.29,0.9500000000000001,0.22,886,2.7,132,1.7000000000000002,0.0000,0.0000 +2012,6,17,2,30,23,1.3,0.10300000000000001,0.61,0,0,0,0,6,17.6,0,0,0,0,0.299,71.51,95.28,0.9500000000000001,0.22,886,2.7,137,1.6,0.0000,0.0000 +2012,6,17,3,30,22.1,1.3,0.108,0.61,0,0,0,0,4,17.1,0,0,0,0,0.3,73.32000000000001,105.07000000000001,0.9500000000000001,0.22,887,2.7,140,1.4000000000000001,0.0000,0.0000 +2012,6,17,4,30,21.400000000000002,1.31,0.127,0.61,0,0,0,0,4,16.7,0,0,0,0,0.3,74.78,113.27,0.9500000000000001,0.22,887,2.7,138,1.1,0.0000,0.0000 +2012,6,17,5,30,20.8,1.32,0.139,0.61,0,0,0,0,7,16.6,0,0,0,0,0.298,76.98,119.2,0.9500000000000001,0.22,888,2.8000000000000003,132,0.8,0.0000,0.0000 +2012,6,17,6,30,20,1.34,0.14100000000000001,0.61,0,0,0,0,7,16.3,0,0,0,0,0.295,79.44,122.17,0.9500000000000001,0.22,888,2.7,137,0.7000000000000001,0.0000,0.0000 +2012,6,17,7,30,19.200000000000003,1.35,0.14300000000000002,0.61,0,0,0,0,7,16.2,0,0,0,0,0.294,82.55,121.69,0.9500000000000001,0.22,888,2.7,160,0.7000000000000001,0.0000,0.0000 +2012,6,17,8,30,18.400000000000002,1.36,0.145,0.61,0,0,0,0,4,15.9,0,0,0,0,0.293,85.60000000000001,117.87,0.9500000000000001,0.22,887,2.6,190,0.8,0.0000,0.0000 +2012,6,17,9,30,17.6,1.36,0.145,0.61,0,0,0,0,7,15.600000000000001,0,0,0,0,0.293,88.06,111.24000000000001,0.9500000000000001,0.22,887,2.6,212,1,0.0000,0.0000 +2012,6,17,10,30,17.1,1.37,0.14100000000000001,0.61,0,0,0,0,3,15.100000000000001,0,0,0,0,0.293,87.93,102.56,0.9500000000000001,0.22,887,2.6,228,1.2000000000000002,0.0000,0.0000 +2012,6,17,11,30,17.8,1.3900000000000001,0.139,0.61,0,0,0,0,0,14.5,0,0,0,0,0.294,80.79,92.43,0.9500000000000001,0.22,887,2.6,238,1.9000000000000001,0.0000,0.0000 +2012,6,17,12,30,20.200000000000003,1.41,0.138,0.61,48,352,101,0,0,14.100000000000001,48,352,0,101,0.295,67.78,81.25,0.9500000000000001,0.22,887,2.6,241,2.8000000000000003,0.0000,0.0000 +2012,6,17,13,30,23.400000000000002,1.43,0.137,0.61,82,605,294,0,0,13.700000000000001,82,605,0,294,0.296,54.35,69.56,0.9500000000000001,0.22,887,2.7,237,4.1000000000000005,11.4126,8.8430 +2012,6,17,14,30,26.3,1.44,0.135,0.61,103,738,500,0,0,13.600000000000001,103,738,0,500,0.296,45.52,57.43,0.9500000000000001,0.22,887,2.7,234,4.9,23.8252,18.6330 +2012,6,17,15,30,28.400000000000002,1.45,0.132,0.61,117,815,692,0,0,13.3,117,815,0,692,0.296,39.59,45.07,0.9500000000000001,0.22,886,2.7,231,4.9,40.6931,31.9500 +2012,6,17,16,30,30.3,1.46,0.127,0.61,125,863,851,0,0,13.200000000000001,125,863,0,851,0.296,35.15,32.730000000000004,0.9500000000000001,0.22,886,2.7,227,4.7,51.2009,40.2765 +2012,6,17,17,30,31.900000000000002,1.46,0.123,0.61,128,891,960,0,0,13.100000000000001,128,891,0,960,0.297,31.88,20.900000000000002,0.9400000000000001,0.22,885,2.7,224,4.7,58.4238,46.0018 +2012,6,17,18,30,33.2,1.45,0.105,0.61,122,913,1016,0,0,12.9,122,913,0,1016,0.3,29.18,11.83,0.9400000000000001,0.22,884,2.7,220,4.6000000000000005,56.4541,44.4677 +2012,6,17,19,30,34.1,1.44,0.10300000000000001,0.61,121,915,1010,0,0,12.5,121,915,0,1010,0.303,27.05,13.620000000000001,0.9400000000000001,0.22,883,2.6,217,4.5,61.2061,48.2080 +2012,6,17,20,30,34.6,1.43,0.1,0.61,116,906,944,0,0,12,116,906,0,944,0.308,25.490000000000002,23.93,0.9400000000000001,0.22,881,2.5,215,4.4,56.4662,44.4519 +2012,6,17,21,30,34.7,1.42,0.094,0.61,106,885,822,0,0,11.5,106,885,0,822,0.314,24.54,35.99,0.93,0.22,881,2.4000000000000004,212,4.3,48.3685,38.0334 +2012,6,17,22,30,34.300000000000004,1.41,0.091,0.61,96,843,656,0,0,11,96,843,0,656,0.318,24.310000000000002,48.370000000000005,0.93,0.22,880,2.3000000000000003,209,4.2,19.7522,15.4960 +2012,6,17,23,30,33.2,1.41,0.089,0.61,82,766,457,0,0,10.700000000000001,82,766,0,457,0.318,25.32,60.68,0.93,0.22,879,2.3000000000000003,202,3.8000000000000003,5.1595,4.0280 +2012,6,18,0,30,30.8,1.4000000000000001,0.089,0.61,62,623,247,0,0,11.200000000000001,62,623,0,247,0.315,29.92,72.72,0.92,0.22,879,2.3000000000000003,192,3,6.5869,5.0810 +2012,6,18,1,30,28,1.4000000000000001,0.092,0.61,31,311,62,0,0,12.700000000000001,31,311,0,62,0.312,38.94,84.24,0.92,0.22,879,2.3000000000000003,184,2.8000000000000003,0.0000,0.0000 +2012,6,18,2,30,26.8,1.43,0.096,0.61,0,0,0,0,0,12,0,0,0,0,0.309,39.7,95.23,0.93,0.22,879,2.3000000000000003,183,3.7,0.0000,0.0000 +2012,6,18,3,30,26.3,1.45,0.097,0.61,0,0,0,0,0,11.4,0,0,0,0,0.306,39.35,105.02,0.93,0.22,879,2.3000000000000003,187,4.7,0.0000,0.0000 +2012,6,18,4,30,25.6,1.45,0.096,0.61,0,0,0,0,0,10.9,0,0,0,0,0.303,39.64,113.22,0.93,0.22,879,2.2,193,5.300000000000001,0.0000,0.0000 +2012,6,18,5,30,24.900000000000002,1.45,0.094,0.61,0,0,0,0,4,10.5,0,0,0,0,0.301,40.230000000000004,119.17,0.93,0.22,879,2.2,197,5.5,0.0000,0.0000 +2012,6,18,6,30,24.1,1.45,0.089,0.61,0,0,0,0,0,10.200000000000001,0,0,0,0,0.299,41.480000000000004,122.14,0.93,0.22,879,2.2,199,5.300000000000001,0.0000,0.0000 +2012,6,18,7,30,23.200000000000003,1.44,0.083,0.61,0,0,0,0,0,10.3,0,0,0,0,0.298,44.17,121.68,0.93,0.22,879,2.2,201,5.1000000000000005,0.0000,0.0000 +2012,6,18,8,30,22.3,1.41,0.077,0.61,0,0,0,0,0,11,0,0,0,0,0.298,48.72,117.87,0.92,0.22,878,2.1,206,5.1000000000000005,0.0000,0.0000 +2012,6,18,9,30,21.5,1.3800000000000001,0.073,0.61,0,0,0,0,0,12,0,0,0,0,0.298,54.81,111.26,0.92,0.22,878,2,210,5,0.0000,0.0000 +2012,6,18,10,30,20.6,1.34,0.07,0.61,0,0,0,0,0,12.8,0,0,0,0,0.298,60.99,102.58,0.92,0.22,877,1.8,214,4.5,0.0000,0.0000 +2012,6,18,11,30,20.400000000000002,1.31,0.068,0.61,0,0,0,0,0,13.100000000000001,0,0,0,0,0.298,62.800000000000004,92.46000000000001,0.92,0.22,877,1.7000000000000002,219,4.3,0.0000,0.0000 +2012,6,18,12,30,21.8,1.28,0.065,0.61,38,482,111,0,0,13,38,482,0,111,0.298,57.42,81.28,0.91,0.22,877,1.5,224,4.3,0.0000,0.0000 +2012,6,18,13,30,25.200000000000003,1.25,0.062,0.61,61,730,316,0,0,12.700000000000001,61,730,0,316,0.298,45.83,69.60000000000001,0.91,0.22,877,1.4000000000000001,233,4.6000000000000005,15.1100,11.7074 +2012,6,18,14,30,29.700000000000003,1.22,0.058,0.61,75,852,533,0,0,11,75,852,0,533,0.298,31.53,57.46,0.91,0.22,877,1.3,247,4.7,27.9596,21.8660 +2012,6,18,15,30,34.1,1.23,0.055,0.61,83,917,731,0,0,6.800000000000001,83,917,0,731,0.298,18.53,45.11,0.91,0.22,877,1.3,266,4.2,40.6308,31.9009 +2012,6,18,16,30,37.2,1.24,0.054,0.61,90,955,893,0,0,1.8,90,955,0,893,0.297,10.94,32.76,0.91,0.22,877,1.3,276,3.3000000000000003,51.3795,40.4168 +2012,6,18,17,30,39,1.26,0.053,0.61,93,980,1008,0,0,0.30000000000000004,93,980,0,1008,0.297,8.93,20.93,0.91,0.22,876,1.2000000000000002,262,2.4000000000000004,58.8513,46.3383 +2012,6,18,18,30,40.2,1.29,0.055,0.61,96,987,1062,0,0,0.2,96,987,0,1062,0.296,8.34,11.83,0.9,0.22,875,1.2000000000000002,231,2.1,62.6857,49.3762 +2012,6,18,19,30,40.800000000000004,1.3,0.056,0.61,96,985,1054,0,0,0.1,96,985,0,1054,0.295,8.01,13.58,0.9,0.22,875,1.2000000000000002,206,2.5,62.2558,49.0348 +2012,6,18,20,30,41,1.3,0.056,0.61,94,974,984,0,0,-0.2,94,974,0,984,0.295,7.76,23.88,0.9,0.22,874,1.2000000000000002,194,2.9000000000000004,57.6922,45.4172 +2012,6,18,21,30,40.6,1.3800000000000001,0.067,0.61,94,940,855,0,0,-0.5,94,940,0,855,0.296,7.74,35.94,0.9,0.22,874,1.2000000000000002,187,3.2,49.3345,38.7932 +2012,6,18,22,30,39.800000000000004,1.3800000000000001,0.068,0.61,86,900,685,0,0,-0.9,86,900,0,685,0.297,7.86,48.31,0.9,0.22,873,1.1,180,3.4000000000000004,38.1166,29.9037 +2012,6,18,23,30,37.9,1.3800000000000001,0.068,0.61,74,826,480,0,0,-0.6000000000000001,74,826,0,480,0.298,8.91,60.63,0.9,0.22,873,1.1,168,3,25.0930,19.5908 +2012,6,19,0,30,34.1,1.3800000000000001,0.068,0.61,58,690,263,0,0,4.800000000000001,58,690,0,263,0.3,16.080000000000002,72.67,0.9,0.22,874,1.1,156,2.6,12.3324,9.5138 +2012,6,19,1,30,30.200000000000003,1.3900000000000001,0.07100000000000001,0.61,30,371,67,0,0,8.3,30,371,0,67,0.3,25.51,84.19,0.91,0.22,874,1.3,152,3.2,0.0000,0.0000 +2012,6,19,2,30,28,1.3900000000000001,0.079,0.61,0,0,0,0,0,8.1,0,0,0,0,0.301,28.51,95.18,0.91,0.22,875,1.5,152,4.1000000000000005,0.0000,0.0000 +2012,6,19,3,30,26.8,1.37,0.096,0.61,0,0,0,0,0,9.5,0,0,0,0,0.301,33.69,104.97,0.93,0.22,876,1.7000000000000002,155,4.800000000000001,0.0000,0.0000 +2012,6,19,4,30,26,1.31,0.11800000000000001,0.61,0,0,0,0,0,10.8,0,0,0,0,0.3,38.480000000000004,113.18,0.9400000000000001,0.22,877,1.9000000000000001,162,5.300000000000001,0.0000,0.0000 +2012,6,19,5,30,25.3,1.23,0.132,0.61,0,0,0,0,0,12.100000000000001,0,0,0,0,0.3,43.71,119.14,0.9400000000000001,0.22,877,2,168,5.5,0.0000,0.0000 +2012,6,19,6,30,24.400000000000002,1.2,0.133,0.61,0,0,0,0,0,13.100000000000001,0,0,0,0,0.299,49.24,122.12,0.9400000000000001,0.22,877,2.1,169,5.4,0.0000,0.0000 +2012,6,19,7,30,23.400000000000002,1.23,0.125,0.61,0,0,0,0,0,13.600000000000001,0,0,0,0,0.3,54.07,121.68,0.9400000000000001,0.22,877,2.1,169,4.9,0.0000,0.0000 +2012,6,19,8,30,22.400000000000002,1.26,0.112,0.61,0,0,0,0,0,13.8,0,0,0,0,0.3,58.32,117.87,0.93,0.22,877,2,170,4.5,0.0000,0.0000 +2012,6,19,9,30,21.5,1.28,0.10200000000000001,0.61,0,0,0,0,0,13.9,0,0,0,0,0.302,62.01,111.27,0.93,0.22,877,1.9000000000000001,170,4.3,0.0000,0.0000 +2012,6,19,10,30,20.8,1.28,0.097,0.61,0,0,0,0,0,14,0,0,0,0,0.303,64.95,102.60000000000001,0.92,0.22,877,1.7000000000000002,170,3.9000000000000004,0.0000,0.0000 +2012,6,19,11,30,20.8,1.28,0.094,0.61,0,0,0,0,0,14,0,0,0,0,0.305,65.23,92.49,0.92,0.22,877,1.6,170,4,0.0000,0.0000 +2012,6,19,12,30,22.400000000000002,1.28,0.094,0.61,42,427,107,0,0,14.200000000000001,42,427,0,107,0.306,59.620000000000005,81.32000000000001,0.92,0.22,877,1.6,176,4.6000000000000005,0.0000,0.0000 +2012,6,19,13,30,25.200000000000003,1.28,0.094,0.61,71,680,307,0,0,14.4,71,680,0,307,0.308,51.08,69.63,0.92,0.22,877,1.6,186,5,16.2350,12.5784 +2012,6,19,14,30,28.400000000000002,1.29,0.093,0.61,88,804,520,0,0,13.9,88,804,0,520,0.308,41.1,57.5,0.92,0.22,877,1.6,188,4.7,29.8002,23.3052 +2012,6,19,15,30,31.400000000000002,1.3,0.093,0.61,100,873,716,0,0,12.600000000000001,100,873,0,716,0.309,31.82,45.15,0.92,0.22,877,1.6,182,4.2,42.9157,33.6945 +2012,6,19,16,30,33.9,1.31,0.094,0.61,109,910,874,0,0,11,109,910,0,874,0.309,24.79,32.8,0.92,0.22,877,1.7000000000000002,175,4,53.9125,42.4093 +2012,6,19,17,30,35.800000000000004,1.31,0.096,0.61,115,932,985,0,0,9.700000000000001,115,932,0,985,0.309,20.48,20.96,0.92,0.22,877,1.7000000000000002,169,4.3,61.7921,48.6537 +2012,6,19,18,30,37.1,1.3,0.085,0.61,112,947,1039,0,0,9,112,947,0,1039,0.308,18.18,11.84,0.92,0.22,876,1.8,166,4.800000000000001,65.5238,51.6117 +2012,6,19,19,30,37.800000000000004,1.3,0.08700000000000001,0.61,113,942,1028,0,0,8.6,113,942,0,1028,0.308,17.03,13.540000000000001,0.92,0.22,876,1.9000000000000001,164,5.300000000000001,64.9694,51.1722 +2012,6,19,20,30,38.1,1.29,0.088,0.61,110,926,957,0,0,8.3,110,926,0,957,0.308,16.43,23.830000000000002,0.92,0.22,875,2,163,5.7,60.1401,47.3444 +2012,6,19,21,30,37.800000000000004,1.24,0.08700000000000001,0.61,104,899,832,0,0,8.3,104,899,0,832,0.308,16.64,35.89,0.92,0.22,875,2,161,6.1000000000000005,51.3201,40.3548 +2012,6,19,22,30,37.1,1.22,0.088,0.61,95,850,661,0,0,8.4,95,850,0,661,0.309,17.45,48.26,0.92,0.22,875,2.1,159,6.4,39.8098,31.2326 +2012,6,19,23,30,35.7,1.19,0.09,0.61,83,766,459,0,0,8.700000000000001,83,766,0,459,0.309,19.19,60.58,0.93,0.22,874,2.2,157,6.6000000000000005,26.3639,20.5836 +2012,6,20,0,30,33.5,1.17,0.093,0.61,65,615,248,0,0,9.5,65,615,0,248,0.309,22.88,72.62,0.93,0.22,875,2.3000000000000003,154,6.6000000000000005,13.1374,10.1356 +2012,6,20,1,30,30.900000000000002,1.16,0.096,0.61,32,296,62,0,0,10.8,32,296,0,62,0.31,29.03,84.14,0.93,0.22,875,2.4000000000000004,152,6.7,0.0000,0.0000 +2012,6,20,2,30,28.900000000000002,1.1400000000000001,0.099,0.61,0,0,0,0,0,11.8,0,0,0,0,0.31,34.76,95.14,0.93,0.22,876,2.4000000000000004,155,6.9,0.0000,0.0000 +2012,6,20,3,30,27.5,1.1300000000000001,0.10400000000000001,0.61,0,0,0,0,0,12.700000000000001,0,0,0,0,0.309,39.89,104.93,0.93,0.22,877,2.4000000000000004,159,6.5,0.0000,0.0000 +2012,6,20,4,30,26.3,1.12,0.109,0.61,0,0,0,0,0,13.4,0,0,0,0,0.309,44.9,113.15,0.93,0.22,877,2.4000000000000004,161,6,0.0000,0.0000 +2012,6,20,5,30,25.400000000000002,1.1400000000000001,0.113,0.61,0,0,0,0,0,13.9,0,0,0,0,0.308,48.84,119.11,0.93,0.22,878,2.4000000000000004,163,5.9,0.0000,0.0000 +2012,6,20,6,30,24.700000000000003,1.18,0.117,0.61,0,0,0,0,0,14.100000000000001,0,0,0,0,0.308,51.57,122.11,0.93,0.22,878,2.3000000000000003,167,6.1000000000000005,0.0000,0.0000 +2012,6,20,7,30,24,1.21,0.121,0.61,0,0,0,0,0,14,0,0,0,0,0.307,53.69,121.68,0.93,0.22,878,2.3000000000000003,171,6.2,0.0000,0.0000 +2012,6,20,8,30,23.200000000000003,1.22,0.124,0.61,0,0,0,0,0,14,0,0,0,0,0.307,56.15,117.88,0.92,0.22,878,2.3000000000000003,173,5.9,0.0000,0.0000 +2012,6,20,9,30,22.400000000000002,1.21,0.124,0.61,0,0,0,0,0,14,0,0,0,0,0.307,59.01,111.29,0.92,0.22,878,2.2,173,5.7,0.0000,0.0000 +2012,6,20,10,30,21.6,1.19,0.121,0.61,0,0,0,0,0,14.200000000000001,0,0,0,0,0.307,62.78,102.63,0.92,0.22,878,2.1,172,5.4,0.0000,0.0000 +2012,6,20,11,30,21.3,1.17,0.11800000000000001,0.61,0,0,0,0,0,14.600000000000001,0,0,0,0,0.307,65.79,92.52,0.92,0.22,878,2,171,5.5,0.0000,0.0000 +2012,6,20,12,30,22.3,1.1500000000000001,0.11800000000000001,0.61,45,377,102,0,0,15.3,45,377,0,102,0.307,64.74,81.36,0.92,0.22,879,1.9000000000000001,173,6.1000000000000005,0.0000,0.0000 +2012,6,20,13,30,24.3,1.12,0.11900000000000001,0.61,78,635,299,0,0,16.1,78,635,0,299,0.308,60.230000000000004,69.67,0.93,0.22,879,1.9000000000000001,178,6.5,15.7684,12.2165 +2012,6,20,14,30,26.8,1.11,0.12,0.61,99,761,507,0,0,16.2,99,761,0,507,0.307,52.31,57.550000000000004,0.93,0.22,880,2,180,6.2,29.0674,22.7317 +2012,6,20,15,30,29.3,1.11,0.122,0.61,114,831,700,0,0,15.8,114,831,0,700,0.305,44.06,45.19,0.93,0.22,880,2.1,180,5.6000000000000005,42.0301,32.9990 +2012,6,20,16,30,31.6,1.11,0.124,0.61,124,872,857,0,0,15.200000000000001,124,872,0,857,0.303,37.050000000000004,32.85,0.93,0.22,880,2.2,178,5.1000000000000005,52.7618,41.5040 +2012,6,20,17,30,33.5,1.1,0.126,0.61,132,893,965,0,0,14.5,132,893,0,965,0.3,31.86,21,0.93,0.22,880,2.3000000000000003,176,4.7,60.3805,47.5422 +2012,6,20,18,30,35,1.12,0.129,0.61,136,902,1019,0,0,13.8,136,902,0,1019,0.298,28.12,11.86,0.93,0.22,880,2.3000000000000003,171,4.5,64.1044,50.4937 +2012,6,20,19,30,35.9,1.1300000000000001,0.129,0.61,135,899,1009,0,0,13.200000000000001,135,899,0,1009,0.296,25.71,13.51,0.93,0.22,879,2.4000000000000004,166,4.5,63.3682,49.9111 +2012,6,20,20,30,36.4,1.1400000000000001,0.13,0.61,132,884,941,0,0,12.8,132,884,0,941,0.294,24.240000000000002,23.79,0.93,0.22,879,2.4000000000000004,161,4.7,58.4931,46.0480 +2012,6,20,21,30,36.4,1.1300000000000001,0.117,0.61,119,863,818,0,0,12.4,119,863,0,818,0.293,23.71,35.84,0.93,0.22,879,2.5,156,5,49.9445,39.2734 +2012,6,20,22,30,35.800000000000004,1.1300000000000001,0.116,0.61,107,812,648,0,0,12.100000000000001,107,812,0,648,0.293,24.05,48.22,0.93,0.22,879,2.6,153,5.2,38.4215,30.1438 +2012,6,20,23,30,34.7,1.12,0.116,0.61,92,728,451,0,0,12.100000000000001,92,728,0,451,0.292,25.45,60.53,0.93,0.22,879,2.6,149,5.300000000000001,25.2181,19.6896 +2012,6,21,0,30,32.6,1.11,0.116,0.61,71,575,243,0,0,12.3,71,575,0,243,0.292,29.060000000000002,72.58,0.9400000000000001,0.22,880,2.7,145,5,12.3939,9.5627 +2012,6,21,1,30,30.1,1.09,0.115,0.61,34,262,61,0,0,12.8,34,262,0,61,0.293,34.65,84.10000000000001,0.9400000000000001,0.22,880,2.7,140,4.5,0.0000,0.0000 +2012,6,21,2,30,28.1,1.04,0.115,0.61,0,0,0,0,0,13.100000000000001,0,0,0,0,0.294,39.730000000000004,95.10000000000001,0.9400000000000001,0.22,881,2.7,136,4.2,0.0000,0.0000 +2012,6,21,3,30,26.700000000000003,0.98,0.114,0.61,0,0,0,0,0,13.200000000000001,0,0,0,0,0.295,43.4,104.9,0.9400000000000001,0.22,882,2.7,136,4,0.0000,0.0000 +2012,6,21,4,30,25.400000000000002,0.9500000000000001,0.113,0.61,0,0,0,0,0,13.3,0,0,0,0,0.296,46.94,113.12,0.9400000000000001,0.22,883,2.7,137,3.7,0.0000,0.0000 +2012,6,21,5,30,24.3,0.9500000000000001,0.114,0.61,0,0,0,0,0,13.3,0,0,0,0,0.296,50.34,119.09,0.9400000000000001,0.22,884,2.8000000000000003,138,3.3000000000000003,0.0000,0.0000 +2012,6,21,6,30,23.200000000000003,0.97,0.11800000000000001,0.61,0,0,0,0,7,13.5,0,0,0,0,0.295,54.51,122.10000000000001,0.9400000000000001,0.22,884,3,141,2.6,0.0000,0.0000 +2012,6,21,7,30,22.3,0.99,0.124,0.61,0,0,0,0,7,13.9,0,0,0,0,0.294,58.800000000000004,121.68,0.9400000000000001,0.22,885,3.1,143,2,0.0000,0.0000 +2012,6,21,8,30,21.5,1,0.129,0.61,0,0,0,0,7,14.200000000000001,0,0,0,0,0.292,62.96,117.9,0.9400000000000001,0.22,885,3.2,142,1.5,0.0000,0.0000 +2012,6,21,9,30,20.900000000000002,1.01,0.134,0.61,0,0,0,0,6,14.5,0,0,0,0,0.291,66.83,111.32000000000001,0.9400000000000001,0.22,886,3.2,133,1.4000000000000001,0.0000,0.0000 +2012,6,21,10,30,20.3,1.01,0.14,0.61,0,0,0,0,6,15,0,0,0,0,0.289,71.37,102.67,0.9500000000000001,0.22,886,3.3000000000000003,117,1.5,0.0000,0.0000 +2012,6,21,11,30,20.400000000000002,1,0.147,0.61,0,0,0,0,8,15.5,0,0,0,0,0.28800000000000003,73.55,92.56,0.9500000000000001,0.22,887,3.4000000000000004,105,2.2,0.0000,0.0000 +2012,6,21,12,30,21.900000000000002,0.99,0.153,0.61,50,296,94,7,8,16,54,4,7,55,0.28700000000000003,69.31,81.4,0.9500000000000001,0.22,888,3.4000000000000004,120,2.4000000000000004,0.0000,0.0000 +2012,6,21,13,30,24.200000000000003,0.99,0.157,0.61,89,554,281,7,7,16,152,41,7,166,0.28500000000000003,60.02,69.72,0.9500000000000001,0.22,888,3.5,130,1.9000000000000001,15.3520,11.8934 +2012,6,21,14,30,26.5,1,0.16,0.61,114,690,484,0,7,15.8,233,326,0,408,0.28400000000000003,51.89,57.59,0.9500000000000001,0.22,888,3.5,102,1.9000000000000001,28.3333,22.1571 +2012,6,21,15,30,28.6,1,0.164,0.61,132,767,672,0,0,15.600000000000001,132,767,0,672,0.28300000000000003,45.27,45.24,0.9500000000000001,0.22,888,3.5,84,2.4000000000000004,41.0860,32.2575 +2012,6,21,16,30,30.200000000000003,1.01,0.171,0.61,148,810,828,0,0,15.4,148,810,0,828,0.28300000000000003,40.7,32.89,0.96,0.22,888,3.5,94,2.7,51.7312,40.6930 +2012,6,21,17,30,31.3,1.02,0.18,0.61,159,832,936,0,0,15.3,159,832,0,936,0.28200000000000003,37.96,21.04,0.96,0.22,888,3.5,103,2.8000000000000003,59.1522,46.5750 +2012,6,21,18,30,31.900000000000002,1.1400000000000001,0.147,0.61,145,868,995,7,2,15.200000000000001,293,674,7,953,0.28200000000000003,36.52,11.88,0.96,0.22,887,3.5,109,3,62.8698,49.5212 +2012,6,21,19,30,32.1,1.1400000000000001,0.156,0.61,149,861,986,0,0,15.100000000000001,149,861,0,986,0.28200000000000003,35.97,13.48,0.96,0.22,887,3.5,112,3.1,62.1981,48.9896 +2012,6,21,20,30,31.900000000000002,1.1300000000000001,0.166,0.61,150,839,918,7,2,15.100000000000001,418,457,7,837,0.281,36.25,23.75,0.96,0.22,886,3.5,114,3.2,57.5177,45.2803 +2012,6,21,21,30,31.400000000000002,1.12,0.165,0.61,141,806,795,0,3,15.100000000000001,413,94,0,489,0.281,37.300000000000004,35.800000000000004,0.96,0.22,886,3.6,118,3.5,49.1088,38.6165 +2012,6,21,22,30,30.700000000000003,1.11,0.17200000000000001,0.61,132,747,630,7,2,15.100000000000001,302,455,7,606,0.281,38.96,48.17,0.97,0.22,886,3.5,123,3.7,37.6709,29.5553 +2012,6,21,23,30,29.8,1.09,0.171,0.61,112,656,436,0,1,15.3,112,656,0,436,0.28,41.31,60.49,0.96,0.22,886,3.5,128,3.9000000000000004,24.7860,19.3528 +2012,6,22,0,30,28.6,1.08,0.158,0.61,82,511,235,0,0,15.3,82,511,0,235,0.281,44.53,72.54,0.96,0.22,886,3.4000000000000004,133,3.7,12.1485,9.3740 +2012,6,22,1,30,27.200000000000003,1.08,0.14300000000000002,0.61,36,220,59,0,3,15.5,51,50,0,57,0.281,48.660000000000004,84.06,0.96,0.22,886,3.3000000000000003,135,3.3000000000000003,0.0000,0.0000 +2012,6,22,2,30,26,1.07,0.126,0.61,0,0,0,0,0,15.600000000000001,0,0,0,0,0.281,52.730000000000004,95.06,0.96,0.22,887,3.2,134,3.2,0.0000,0.0000 +2012,6,22,3,30,24.900000000000002,1.06,0.112,0.61,0,0,0,0,0,15.700000000000001,0,0,0,0,0.28,56.660000000000004,104.87,0.9500000000000001,0.22,887,3,132,3.2,0.0000,0.0000 +2012,6,22,4,30,23.8,1.05,0.10200000000000001,0.61,0,0,0,0,0,15.9,0,0,0,0,0.28,61.18,113.10000000000001,0.9500000000000001,0.22,887,3,131,3,0.0000,0.0000 +2012,6,22,5,30,22.8,1.05,0.095,0.61,0,0,0,0,0,16.1,0,0,0,0,0.279,65.74,119.08,0.9500000000000001,0.22,887,2.9000000000000004,131,2.9000000000000004,0.0000,0.0000 +2012,6,22,6,30,22,1.05,0.09,0.61,0,0,0,0,0,16.3,0,0,0,0,0.278,69.97,122.10000000000001,0.9500000000000001,0.22,887,2.8000000000000003,133,2.9000000000000004,0.0000,0.0000 +2012,6,22,7,30,21.200000000000003,1.05,0.08600000000000001,0.61,0,0,0,0,0,16.5,0,0,0,0,0.278,74.48,121.7,0.9500000000000001,0.22,887,2.8000000000000003,136,2.9000000000000004,0.0000,0.0000 +2012,6,22,8,30,20.5,1.07,0.082,0.61,0,0,0,0,0,16.6,0,0,0,0,0.277,78.52,117.93,0.9500000000000001,0.22,886,2.7,139,2.9000000000000004,0.0000,0.0000 +2012,6,22,9,30,19.8,1.1,0.078,0.61,0,0,0,0,0,16.7,0,0,0,0,0.277,82.52,111.36,0.9500000000000001,0.22,886,2.7,142,2.9000000000000004,0.0000,0.0000 +2012,6,22,10,30,19.3,1.12,0.076,0.61,0,0,0,0,0,16.8,0,0,0,0,0.277,85.35000000000001,102.7,0.9500000000000001,0.22,886,2.7,146,3,0.0000,0.0000 +2012,6,22,11,30,19.5,1.1300000000000001,0.076,0.61,0,0,0,0,0,16.7,0,0,0,0,0.276,83.8,92.61,0.9500000000000001,0.22,886,2.7,151,3.3000000000000003,0.0000,0.0000 +2012,6,22,12,30,21.400000000000002,1.1300000000000001,0.075,0.61,40,425,103,0,0,16.5,40,425,0,103,0.276,73.79,81.44,0.9400000000000001,0.22,887,2.7,165,3.9000000000000004,0.0000,0.0000 +2012,6,22,13,30,24.6,1.1400000000000001,0.074,0.61,65,675,299,0,0,15.4,65,675,0,299,0.275,56.730000000000004,69.77,0.9400000000000001,0.22,887,2.7,182,4.6000000000000005,8.5194,6.5997 +2012,6,22,14,30,27.6,1.1500000000000001,0.07200000000000001,0.61,80,796,507,0,0,14.4,80,796,0,507,0.275,44.49,57.64,0.9400000000000001,0.22,887,2.7,188,4.9,22.7960,17.8265 +2012,6,22,15,30,30.200000000000003,1.16,0.07100000000000001,0.61,91,864,699,0,0,13.9,91,864,0,699,0.275,36.87,45.29,0.9400000000000001,0.22,887,2.7,185,4.9,39.4367,30.9623 +2012,6,22,16,30,32.300000000000004,1.17,0.07,0.61,98,904,857,0,0,13.3,98,904,0,857,0.275,31.62,32.94,0.9400000000000001,0.22,886,2.7,180,5,49.9773,39.3131 +2012,6,22,17,30,33.9,1.18,0.069,0.61,102,928,968,0,0,12.8,102,928,0,968,0.276,27.89,21.09,0.9400000000000001,0.22,886,2.7,176,5,57.3724,45.1735 +2012,6,22,18,30,35,1.2,0.07,0.61,105,939,1024,0,0,12.4,105,939,0,1024,0.276,25.52,11.91,0.9400000000000001,0.22,885,2.6,172,5.1000000000000005,58.7972,46.3133 +2012,6,22,19,30,35.6,1.22,0.07100000000000001,0.61,105,937,1017,0,0,12.100000000000001,105,937,0,1017,0.277,24.26,13.46,0.9400000000000001,0.22,884,2.6,170,5.2,60.7813,47.8737 +2012,6,22,20,30,35.800000000000004,1.23,0.07200000000000001,0.61,103,924,949,0,0,11.9,103,924,0,949,0.277,23.650000000000002,23.71,0.9400000000000001,0.22,883,2.6,168,5.2,51.1631,40.2777 +2012,6,22,21,30,35.6,1.27,0.078,0.61,100,896,827,0,0,11.600000000000001,100,896,0,827,0.277,23.51,35.76,0.9400000000000001,0.22,883,2.5,166,5.2,29.3595,23.0868 +2012,6,22,22,30,34.800000000000004,1.28,0.076,0.61,91,855,661,0,0,11.3,91,855,0,661,0.277,24.07,48.13,0.9400000000000001,0.22,882,2.4000000000000004,164,5.300000000000001,35.2353,27.6447 +2012,6,22,23,30,33.6,1.27,0.074,0.61,78,784,464,0,0,11,78,784,0,464,0.277,25.3,60.45,0.9400000000000001,0.22,882,2.3000000000000003,163,5.2,23.9674,18.7141 +2012,6,23,0,30,31.700000000000003,1.26,0.073,0.61,60,648,255,0,0,10.9,60,648,0,255,0.277,27.93,72.5,0.9400000000000001,0.22,882,2.3000000000000003,160,4.6000000000000005,11.7530,9.0693 +2012,6,23,1,30,29.200000000000003,1.25,0.07200000000000001,0.61,31,349,67,0,0,11.4,31,349,0,67,0.277,33.17,84.03,0.9400000000000001,0.22,883,2.2,156,3.9000000000000004,0.0000,0.0000 +2012,6,23,2,30,27.200000000000003,1.25,0.07200000000000001,0.61,0,0,0,0,0,11.9,0,0,0,0,0.277,38.730000000000004,95.03,0.9400000000000001,0.22,883,2.1,156,3.8000000000000003,0.0000,0.0000 +2012,6,23,3,30,26,1.25,0.07100000000000001,0.61,0,0,0,0,0,12.3,0,0,0,0,0.277,42.49,104.85000000000001,0.9400000000000001,0.22,883,2.1,161,4,0.0000,0.0000 +2012,6,23,4,30,25,1.25,0.07,0.61,0,0,0,0,0,12.600000000000001,0,0,0,0,0.278,45.94,113.08,0.9400000000000001,0.22,884,2,167,4,0.0000,0.0000 +2012,6,23,5,30,24.1,1.26,0.069,0.61,0,0,0,0,0,12.700000000000001,0,0,0,0,0.278,48.800000000000004,119.08,0.9400000000000001,0.22,883,2,173,4,0.0000,0.0000 +2012,6,23,6,30,23.200000000000003,1.27,0.069,0.61,0,0,0,0,0,12.700000000000001,0,0,0,0,0.278,51.52,122.11,0.93,0.22,883,1.9000000000000001,179,3.9000000000000004,0.0000,0.0000 +2012,6,23,7,30,22.5,1.27,0.068,0.61,0,0,0,0,0,12.600000000000001,0,0,0,0,0.279,53.64,121.72,0.93,0.22,883,1.9000000000000001,184,3.6,0.0000,0.0000 +2012,6,23,8,30,21.8,1.28,0.068,0.61,0,0,0,0,0,12.600000000000001,0,0,0,0,0.279,56.04,117.96000000000001,0.93,0.22,883,1.9000000000000001,190,3.4000000000000004,0.0000,0.0000 +2012,6,23,9,30,21.1,1.28,0.068,0.61,0,0,0,0,0,12.700000000000001,0,0,0,0,0.28,58.81,111.39,0.93,0.22,883,1.8,197,3.2,0.0000,0.0000 +2012,6,23,10,30,20.700000000000003,1.29,0.067,0.61,0,0,0,0,0,12.9,0,0,0,0,0.281,60.78,102.75,0.93,0.22,883,1.8,205,3.2,0.0000,0.0000 +2012,6,23,11,30,21.1,1.3,0.067,0.61,0,0,0,0,1,13,0,0,0,0,0.28200000000000003,59.88,92.65,0.93,0.22,883,1.7000000000000002,213,3.8000000000000003,0.0000,0.0000 +2012,6,23,12,30,23.1,1.31,0.067,0.61,38,466,107,0,0,13.200000000000001,38,466,0,107,0.28300000000000003,53.620000000000005,81.49,0.93,0.22,884,1.7000000000000002,216,4.7,0.0000,0.0000 +2012,6,23,13,30,26,1.33,0.066,0.61,63,713,309,0,0,13.200000000000001,63,713,0,309,0.28400000000000003,45.2,69.82000000000001,0.93,0.22,884,1.7000000000000002,215,5.4,15.3384,11.8813 +2012,6,23,14,30,28.8,1.34,0.065,0.61,77,830,521,0,0,13,77,830,0,521,0.28500000000000003,37.77,57.69,0.93,0.22,884,1.7000000000000002,210,5.5,28.3199,22.1457 +2012,6,23,15,30,31.200000000000003,1.35,0.063,0.61,87,897,717,0,0,11.8,87,897,0,717,0.28400000000000003,30.47,45.34,0.93,0.22,884,1.7000000000000002,203,5.2,41.0152,32.2012 +2012,6,23,16,30,33.1,1.35,0.061,0.61,93,939,881,0,0,10.600000000000001,93,939,0,881,0.28400000000000003,25.26,32.99,0.92,0.22,884,1.6,197,5,51.7233,40.6864 +2012,6,23,17,30,34.6,1.35,0.058,0.61,96,963,994,0,0,9.4,96,963,0,994,0.28300000000000003,21.45,21.14,0.92,0.22,884,1.6,192,4.9,59.3311,46.7156 +2012,6,23,18,30,35.7,1.36,0.055,0.61,97,977,1052,0,0,8.3,97,977,0,1052,0.28300000000000003,18.66,11.94,0.92,0.22,883,1.5,187,4.9,63.1767,49.7629 +2012,6,23,19,30,36.4,1.35,0.052000000000000005,0.61,95,981,1049,0,0,7.300000000000001,95,981,0,1049,0.28200000000000003,16.78,13.44,0.92,0.22,883,1.4000000000000001,184,5,62.6930,49.3795 +2012,6,23,20,30,36.6,1.33,0.05,0.61,91,971,981,0,0,6.4,91,971,0,981,0.28300000000000003,15.68,23.68,0.92,0.22,882,1.4000000000000001,181,5.1000000000000005,58.0118,45.6695 +2012,6,23,21,30,36.4,1.47,0.066,0.61,94,938,855,0,0,5.7,94,938,0,855,0.28400000000000003,15.13,35.72,0.91,0.22,882,1.3,178,5.1000000000000005,49.6569,39.0479 +2012,6,23,22,30,35.6,1.47,0.065,0.61,85,896,684,0,0,5.2,85,896,0,684,0.28600000000000003,15.24,48.09,0.91,0.22,882,1.3,177,5.1000000000000005,38.4384,30.1581 +2012,6,23,23,30,34.300000000000004,1.47,0.065,0.61,74,827,482,0,0,4.9,74,827,0,482,0.28700000000000003,15.99,60.42,0.91,0.22,882,1.2000000000000002,177,4.9,25.5127,19.9212 +2012,6,24,0,30,31.8,1.48,0.064,0.61,57,696,267,0,0,4.800000000000001,57,696,0,267,0.28800000000000003,18.29,72.46000000000001,0.91,0.22,882,1.2000000000000002,176,4,12.7580,9.8454 +2012,6,24,1,30,28.5,1.47,0.064,0.61,30,400,72,0,0,6,30,400,0,72,0.289,24.09,84,0.91,0.22,883,1.1,176,3.1,0.0000,0.0000 +2012,6,24,2,30,26.400000000000002,1.47,0.063,0.61,0,0,0,0,0,6.5,0,0,0,0,0.29,28.17,95,0.91,0.22,884,1.1,179,3.3000000000000003,0.0000,0.0000 +2012,6,24,3,30,25.3,1.46,0.063,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.291,29.73,104.83,0.91,0.22,884,1.1,184,3.6,0.0000,0.0000 +2012,6,24,4,30,24.3,1.45,0.062,0.61,0,0,0,0,0,6.5,0,0,0,0,0.291,31.93,113.07000000000001,0.91,0.22,884,1.1,189,3.5,0.0000,0.0000 +2012,6,24,5,30,23.3,1.44,0.062,0.61,0,0,0,0,0,7,0,0,0,0,0.291,34.980000000000004,119.08,0.91,0.22,885,1.1,194,3.4000000000000004,0.0000,0.0000 +2012,6,24,6,30,22.400000000000002,1.42,0.062,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.291,38.54,122.12,0.92,0.22,885,1.2000000000000002,198,3.2,0.0000,0.0000 +2012,6,24,7,30,21.6,1.41,0.063,0.61,0,0,0,0,0,8.3,0,0,0,0,0.291,42.39,121.74000000000001,0.92,0.22,885,1.3,202,3,0.0000,0.0000 +2012,6,24,8,30,20.8,1.4000000000000001,0.064,0.61,0,0,0,0,0,8.9,0,0,0,0,0.291,46.43,118,0.92,0.22,885,1.3,207,2.6,0.0000,0.0000 +2012,6,24,9,30,20,1.3900000000000001,0.065,0.61,0,0,0,0,0,9.4,0,0,0,0,0.291,50.31,111.44,0.92,0.22,885,1.4000000000000001,214,2.3000000000000003,0.0000,0.0000 +2012,6,24,10,30,19.400000000000002,1.4000000000000001,0.067,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.292,53.02,102.8,0.92,0.22,885,1.4000000000000001,222,2,0.0000,0.0000 +2012,6,24,11,30,19.900000000000002,1.42,0.069,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.292,51.63,92.71000000000001,0.93,0.22,886,1.4000000000000001,231,2.5,0.0000,0.0000 +2012,6,24,12,30,22.200000000000003,1.44,0.07200000000000001,0.61,39,467,107,0,0,9.8,39,467,0,107,0.293,45.2,81.54,0.93,0.22,886,1.4000000000000001,236,3.1,0.0000,0.0000 +2012,6,24,13,30,25.900000000000002,1.46,0.076,0.61,65,705,308,0,0,10.100000000000001,65,705,0,308,0.294,36.93,69.87,0.93,0.22,887,1.5,232,3.7,15.8443,12.2725 +2012,6,24,14,30,29.400000000000002,1.48,0.08,0.61,83,820,521,0,0,10.3,83,820,0,521,0.295,30.57,57.74,0.93,0.22,887,1.5,222,3.9000000000000004,29.0943,22.7507 +2012,6,24,15,30,31.700000000000003,1.5,0.083,0.61,96,884,717,0,0,10.100000000000001,96,884,0,717,0.295,26.37,45.39,0.93,0.22,887,1.5,210,3.6,42.0651,33.0251 +2012,6,24,16,30,33.5,1.52,0.084,0.61,105,926,881,0,0,9.5,105,926,0,881,0.295,22.92,33.04,0.93,0.22,887,1.4000000000000001,198,3.6,53.1672,41.8220 +2012,6,24,17,30,35,1.55,0.08600000000000001,0.61,111,948,994,0,0,8.700000000000001,111,948,0,994,0.295,19.98,21.19,0.93,0.22,886,1.4000000000000001,187,3.6,60.9218,47.9679 +2012,6,24,18,30,36.2,1.54,0.081,0.61,110,961,1051,0,0,7.9,110,961,0,1051,0.295,17.68,11.98,0.93,0.22,886,1.4000000000000001,179,3.8000000000000003,64.9033,51.1228 +2012,6,24,19,30,36.9,1.56,0.082,0.61,111,959,1044,0,0,7,111,959,0,1044,0.295,16.05,13.43,0.93,0.22,885,1.4000000000000001,174,4,64.6664,50.9338 +2012,6,24,20,30,37.2,1.58,0.082,0.61,108,947,976,0,0,6.4,108,947,0,976,0.295,15.200000000000001,23.650000000000002,0.9400000000000001,0.22,885,1.4000000000000001,170,4.1000000000000005,59.9699,47.2111 +2012,6,24,21,30,37,1.57,0.076,0.61,99,926,852,0,0,6.1000000000000005,99,926,0,852,0.294,15.040000000000001,35.69,0.9400000000000001,0.22,885,1.4000000000000001,167,4.1000000000000005,51.3421,40.3733 +2012,6,24,22,30,36.300000000000004,1.58,0.074,0.61,90,885,681,0,0,6,90,885,0,681,0.294,15.46,48.06,0.9400000000000001,0.22,884,1.4000000000000001,164,4,39.7812,31.2119 +2012,6,24,23,30,35,1.58,0.073,0.61,78,812,479,0,0,5.9,78,812,0,479,0.294,16.55,60.38,0.9400000000000001,0.22,884,1.4000000000000001,161,3.8000000000000003,26.5072,20.6981 +2012,6,25,0,30,32.2,1.59,0.07200000000000001,0.61,60,679,265,0,0,6.2,60,679,0,265,0.294,19.69,72.43,0.9400000000000001,0.22,885,1.4000000000000001,159,2.7,13.3633,10.3132 +2012,6,25,1,30,28.6,1.59,0.07100000000000001,0.61,31,383,71,0,0,8.8,31,383,0,71,0.294,29.03,83.97,0.93,0.22,885,1.4000000000000001,159,1.8,0.0000,0.0000 +2012,6,25,2,30,26.3,1.6,0.07,0.61,0,0,0,0,0,9.200000000000001,0,0,0,0,0.294,33.99,94.98,0.93,0.22,886,1.4000000000000001,162,1.8,0.0000,0.0000 +2012,6,25,3,30,25.3,1.6,0.07100000000000001,0.61,0,0,0,0,0,9.1,0,0,0,0,0.294,35.74,104.81,0.93,0.22,886,1.4000000000000001,168,2,0.0000,0.0000 +2012,6,25,4,30,24.400000000000002,1.6,0.07100000000000001,0.61,0,0,0,0,0,9,0,0,0,0,0.293,37.5,113.07000000000001,0.93,0.22,886,1.4000000000000001,176,2,0.0000,0.0000 +2012,6,25,5,30,23.400000000000002,1.6,0.07200000000000001,0.61,0,0,0,0,0,8.9,0,0,0,0,0.292,39.72,119.08,0.93,0.22,887,1.4000000000000001,187,2,0.0000,0.0000 +2012,6,25,6,30,22.5,1.6,0.074,0.61,0,0,0,0,0,8.9,0,0,0,0,0.291,41.82,122.15,0.92,0.22,887,1.4000000000000001,198,1.9000000000000001,0.0000,0.0000 +2012,6,25,7,30,21.700000000000003,1.6,0.075,0.61,0,0,0,0,1,8.9,0,0,0,0,0.29,43.910000000000004,121.78,0.92,0.22,887,1.5,208,1.7000000000000002,0.0000,0.0000 +2012,6,25,8,30,21,1.6,0.077,0.61,0,0,0,0,0,9,0,0,0,0,0.29,46.04,118.04,0.92,0.22,887,1.5,219,1.6,0.0000,0.0000 +2012,6,25,9,30,20.400000000000002,1.6,0.079,0.61,0,0,0,0,0,9.1,0,0,0,0,0.29,48.14,111.49000000000001,0.92,0.22,887,1.5,230,1.5,0.0000,0.0000 +2012,6,25,10,30,20,1.6,0.079,0.61,0,0,0,0,0,9.200000000000001,0,0,0,0,0.29,49.79,102.85000000000001,0.92,0.22,887,1.5,240,1.4000000000000001,0.0000,0.0000 +2012,6,25,11,30,20.900000000000002,1.59,0.079,0.61,0,0,0,0,0,9.3,0,0,0,0,0.29,47.47,92.76,0.92,0.22,887,1.5,250,1.6,0.0000,0.0000 +2012,6,25,12,30,23.6,1.59,0.079,0.61,39,454,105,0,0,9.8,39,454,0,105,0.29,41.61,81.60000000000001,0.92,0.22,887,1.5,258,2.3000000000000003,0.0000,0.0000 +2012,6,25,13,30,27.400000000000002,1.59,0.079,0.61,65,702,306,0,0,9.8,65,702,0,306,0.29,33.1,69.93,0.92,0.22,887,1.5,253,2.5,15.7860,12.2266 +2012,6,25,14,30,30.900000000000002,1.59,0.079,0.61,82,822,520,0,0,10.100000000000001,82,822,0,520,0.29,27.650000000000002,57.800000000000004,0.92,0.22,887,1.5,223,2,29.0867,22.7442 +2012,6,25,15,30,33.300000000000004,1.59,0.078,0.61,93,889,717,0,0,9.700000000000001,93,889,0,717,0.29,23.580000000000002,45.45,0.92,0.22,887,1.5,186,2,42.0589,33.0198 +2012,6,25,16,30,35.1,1.6,0.077,0.61,100,929,879,0,0,9,100,929,0,879,0.289,20.36,33.1,0.92,0.22,887,1.5,165,2.3000000000000003,53.1626,41.8181 +2012,6,25,17,30,36.6,1.6,0.076,0.61,105,952,992,0,0,8.1,105,952,0,992,0.289,17.64,21.25,0.92,0.22,886,1.5,155,2.8000000000000003,60.9189,47.9655 +2012,6,25,18,30,37.800000000000004,1.61,0.076,0.61,107,962,1048,0,0,7.2,107,962,0,1048,0.28800000000000003,15.530000000000001,12.030000000000001,0.92,0.22,886,1.5,152,3.2,64.8403,51.0731 +2012,6,25,19,30,38.5,1.61,0.074,0.61,106,963,1042,0,0,6.300000000000001,106,963,0,1042,0.28700000000000003,14.06,13.43,0.92,0.22,885,1.5,150,3.5,64.3585,50.6913 +2012,6,25,20,30,38.7,1.61,0.073,0.61,102,951,974,0,0,5.5,102,951,0,974,0.28600000000000003,13.15,23.62,0.92,0.22,885,1.5,150,3.8000000000000003,59.6662,46.9721 +2012,6,25,21,30,38.400000000000006,1.6500000000000001,0.085,0.61,102,917,847,0,0,4.7,102,917,0,847,0.28500000000000003,12.61,35.660000000000004,0.92,0.22,884,1.5,150,3.9000000000000004,51.1649,40.2341 +2012,6,25,22,30,37.7,1.6400000000000001,0.082,0.61,92,878,680,0,0,4,92,878,0,680,0.28500000000000003,12.46,48.03,0.92,0.22,884,1.4000000000000001,151,4,39.6107,31.0784 +2012,6,25,23,30,36.4,1.6400000000000001,0.079,0.61,79,807,478,0,0,3.4000000000000004,79,807,0,478,0.28600000000000003,12.86,60.35,0.92,0.22,884,1.4000000000000001,151,3.8000000000000003,26.3485,20.5746 +2012,6,26,0,30,33.5,1.6300000000000001,0.076,0.61,60,674,264,0,0,3.3000000000000003,60,674,0,264,0.28600000000000003,15.02,72.41,0.92,0.22,884,1.4000000000000001,151,2.8000000000000003,13.2670,10.2393 +2012,6,26,1,30,29.700000000000003,1.6300000000000001,0.073,0.61,31,382,71,0,0,6.1000000000000005,31,382,0,71,0.28600000000000003,22.63,83.95,0.92,0.22,884,1.4000000000000001,151,2,0.0000,0.0000 +2012,6,26,2,30,27.5,1.62,0.07100000000000001,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.28700000000000003,26.02,94.97,0.91,0.22,884,1.3,152,2.1,0.0000,0.0000 +2012,6,26,3,30,26.5,1.62,0.068,0.61,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.28700000000000003,27.28,104.8,0.91,0.22,884,1.3,154,2.4000000000000004,0.0000,0.0000 +2012,6,26,4,30,25.6,1.62,0.067,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.28700000000000003,29.2,113.07000000000001,0.91,0.22,885,1.4000000000000001,158,2.6,0.0000,0.0000 +2012,6,26,5,30,24.700000000000003,1.62,0.067,0.61,0,0,0,0,0,6.800000000000001,0,0,0,0,0.28700000000000003,31.740000000000002,119.10000000000001,0.91,0.22,884,1.4000000000000001,164,2.7,0.0000,0.0000 +2012,6,26,6,30,23.700000000000003,1.62,0.067,0.61,0,0,0,0,0,7.300000000000001,0,0,0,0,0.28800000000000003,34.84,122.17,0.91,0.22,884,1.4000000000000001,172,2.7,0.0000,0.0000 +2012,6,26,7,30,22.8,1.62,0.068,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.28800000000000003,37.660000000000004,121.82000000000001,0.91,0.22,884,1.4000000000000001,181,2.5,0.0000,0.0000 +2012,6,26,8,30,22,1.62,0.07,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.289,39.97,118.09,0.91,0.22,884,1.4000000000000001,190,2.3000000000000003,0.0000,0.0000 +2012,6,26,9,30,21.3,1.6300000000000001,0.07200000000000001,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.29,41.84,111.54,0.91,0.22,884,1.5,199,2.1,0.0000,0.0000 +2012,6,26,10,30,20.6,1.6300000000000001,0.074,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.291,43.69,102.91,0.91,0.22,884,1.5,208,1.9000000000000001,0.0000,0.0000 +2012,6,26,11,30,21.3,1.6400000000000001,0.076,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.291,41.82,92.82000000000001,0.91,0.22,884,1.5,217,2.2,0.0000,0.0000 +2012,6,26,12,30,23.8,1.6400000000000001,0.078,0.61,38,455,104,0,0,7.9,38,455,0,104,0.292,36.230000000000004,81.66,0.91,0.22,885,1.5,225,2.9000000000000004,0.0000,0.0000 +2012,6,26,13,30,27.700000000000003,1.6500000000000001,0.08,0.61,65,701,305,0,0,8.1,65,701,0,305,0.293,29.03,69.98,0.91,0.22,885,1.5,227,3.1,15.6751,12.1398 +2012,6,26,14,30,32.2,1.6600000000000001,0.081,0.61,82,820,518,0,0,8.200000000000001,82,820,0,518,0.293,22.650000000000002,57.86,0.91,0.22,885,1.5,222,3.3000000000000003,29.0216,22.6927 +2012,6,26,15,30,35.300000000000004,1.6600000000000001,0.083,0.61,94,885,714,0,0,7.2,94,885,0,714,0.293,17.78,45.51,0.91,0.22,885,1.5,214,3.6,42.0513,33.0135 +2012,6,26,16,30,37.2,1.67,0.085,0.61,103,923,876,0,0,6.1000000000000005,103,923,0,876,0.292,14.88,33.160000000000004,0.91,0.22,884,1.5,206,4,53.0365,41.7186 +2012,6,26,17,30,38.6,1.68,0.08700000000000001,0.61,109,945,989,0,0,5,109,945,0,989,0.291,12.77,21.31,0.91,0.22,884,1.5,199,4.4,60.7929,47.8661 +2012,6,26,18,30,39.7,1.67,0.085,0.61,111,956,1046,0,0,4.2,111,956,0,1046,0.29,11.35,12.08,0.91,0.22,883,1.5,194,4.7,64.6536,50.9260 +2012,6,26,19,30,40.2,1.67,0.085,0.61,110,955,1039,0,0,3.6,110,955,0,1039,0.29,10.6,13.44,0.91,0.22,882,1.5,189,4.9,64.2352,50.5942 +2012,6,26,20,30,40.400000000000006,1.67,0.085,0.61,107,943,972,0,0,3.3000000000000003,107,943,0,972,0.289,10.25,23.6,0.91,0.22,882,1.5,185,5,59.5459,46.8774 +2012,6,26,21,30,40.1,1.6400000000000001,0.079,0.61,99,922,848,0,0,3,99,922,0,848,0.289,10.22,35.63,0.91,0.22,881,1.5,181,5.1000000000000005,50.8676,40.0004 +2012,6,26,22,30,39.300000000000004,1.6500000000000001,0.08,0.61,91,875,676,0,0,2.8000000000000003,91,875,0,676,0.289,10.49,48,0.92,0.22,881,1.6,177,5.1000000000000005,39.5566,31.0362 +2012,6,26,23,30,38,1.6500000000000001,0.081,0.61,79,799,475,0,0,2.7,79,799,0,475,0.289,11.22,60.33,0.92,0.22,881,1.6,173,4.800000000000001,26.2982,20.5357 +2012,6,27,0,30,35.300000000000004,1.6500000000000001,0.083,0.61,62,659,261,0,0,3.1,62,659,0,261,0.289,13.33,72.39,0.92,0.23,881,1.6,168,3.7,13.2194,10.2029 +2012,6,27,1,30,31.700000000000003,1.6600000000000001,0.084,0.61,31,361,70,0,0,5,31,361,0,70,0.289,18.66,83.93,0.92,0.23,881,1.6,162,2.8000000000000003,0.0000,0.0000 +2012,6,27,2,30,29.8,1.6500000000000001,0.085,0.61,0,0,0,0,0,5.7,0,0,0,0,0.289,21.78,94.96000000000001,0.92,0.23,882,1.7000000000000002,159,3.1,0.0000,0.0000 +2012,6,27,3,30,28.8,1.6500000000000001,0.085,0.61,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.29,23.05,104.8,0.92,0.23,882,1.7000000000000002,160,3.7,0.0000,0.0000 +2012,6,27,4,30,27.700000000000003,1.6500000000000001,0.085,0.61,0,0,0,0,0,5.800000000000001,0,0,0,0,0.291,24.830000000000002,113.08,0.92,0.23,883,1.7000000000000002,164,3.9000000000000004,0.0000,0.0000 +2012,6,27,5,30,26.6,1.6500000000000001,0.08600000000000001,0.61,0,0,0,0,0,6,0,0,0,0,0.291,26.86,119.12,0.92,0.23,883,1.7000000000000002,169,3.9000000000000004,0.0000,0.0000 +2012,6,27,6,30,25.5,1.6500000000000001,0.08600000000000001,0.61,0,0,0,0,0,6.2,0,0,0,0,0.292,29.17,122.21000000000001,0.92,0.23,883,1.7000000000000002,174,3.8000000000000003,0.0000,0.0000 +2012,6,27,7,30,24.700000000000003,1.6600000000000001,0.08700000000000001,0.61,0,0,0,0,0,6.5,0,0,0,0,0.292,31.23,121.86,0.92,0.23,883,1.8,179,3.7,0.0000,0.0000 +2012,6,27,8,30,23.900000000000002,1.67,0.088,0.61,0,0,0,0,0,6.9,0,0,0,0,0.292,33.59,118.14,0.92,0.23,883,1.8,184,3.5,0.0000,0.0000 +2012,6,27,9,30,23.1,1.68,0.09,0.61,0,0,0,0,0,7.300000000000001,0,0,0,0,0.293,36.31,111.60000000000001,0.92,0.23,883,1.8,191,3.2,0.0000,0.0000 +2012,6,27,10,30,22.400000000000002,1.7,0.093,0.61,0,0,0,0,0,7.7,0,0,0,0,0.293,38.93,102.97,0.92,0.23,883,1.8,198,2.9000000000000004,0.0000,0.0000 +2012,6,27,11,30,22.8,1.71,0.097,0.61,0,0,0,0,0,8,0,0,0,0,0.293,38.78,92.88,0.92,0.23,884,1.8,207,3,0.0000,0.0000 +2012,6,27,12,30,24.900000000000002,1.72,0.101,0.61,41,413,100,0,0,8.200000000000001,41,413,0,100,0.293,34.5,81.72,0.92,0.23,884,1.8,215,3.5,0.0000,0.0000 +2012,6,27,13,30,28.700000000000003,1.74,0.106,0.61,72,661,297,0,0,8.3,72,661,0,297,0.293,27.87,70.05,0.92,0.23,885,1.8,216,3.6,15.6169,12.0939 +2012,6,27,14,30,33.300000000000004,1.76,0.111,0.61,92,781,507,0,0,8.200000000000001,92,781,0,507,0.293,21.32,57.92,0.92,0.23,885,1.8,211,3.6,28.9008,22.5976 +2012,6,27,15,30,36.7,1.77,0.116,0.61,108,849,702,0,0,6.9,108,849,0,702,0.293,16.07,45.57,0.92,0.23,885,1.8,201,3.4000000000000004,41.8679,32.8690 +2012,6,27,16,30,38.800000000000004,1.79,0.122,0.61,120,888,863,0,0,5.6000000000000005,120,888,0,863,0.293,13.15,33.22,0.92,0.23,884,1.8,184,3,52.8500,41.5717 +2012,6,27,17,30,40.1,1.81,0.129,0.61,129,905,972,0,0,4.800000000000001,129,905,0,972,0.293,11.620000000000001,21.37,0.92,0.23,884,1.9000000000000001,164,2.9000000000000004,60.6056,47.7185 +2012,6,27,18,30,41,1.81,0.13,0.61,132,916,1028,0,0,4.3,132,916,0,1028,0.293,10.65,12.14,0.92,0.23,883,1.9000000000000001,150,3.2,64.5285,50.8274 +2012,6,27,19,30,41.400000000000006,1.81,0.133,0.61,134,913,1021,0,0,3.9000000000000004,134,913,0,1021,0.293,10.18,13.44,0.92,0.23,883,1.9000000000000001,142,3.7,64.0499,50.4483 +2012,6,27,20,30,41.300000000000004,1.8,0.134,0.61,130,898,954,0,1,3.8000000000000003,130,898,0,954,0.293,10.120000000000001,23.59,0.92,0.23,883,1.9000000000000001,139,4.3,59.4249,46.7822 +2012,6,27,21,30,40.7,1.84,0.162,0.61,134,848,824,0,0,3.8000000000000003,134,848,0,824,0.294,10.5,35.61,0.92,0.23,882,2,138,4.800000000000001,50.9306,40.0501 +2012,6,27,22,30,39.6,1.82,0.17200000000000001,0.61,127,786,653,0,1,4.1000000000000005,127,786,0,653,0.294,11.35,47.980000000000004,0.93,0.23,882,2.1,139,5.1000000000000005,39.3278,30.8569 +2012,6,27,23,30,38.1,1.8,0.18,0.61,110,692,453,0,3,4.4,288,101,0,337,0.295,12.59,60.31,0.93,0.23,882,2.1,139,5.2,26.1363,20.4095 +2012,6,28,0,30,35.800000000000004,1.8,0.18,0.61,82,536,245,0,0,5,82,536,0,245,0.295,14.81,72.37,0.93,0.23,883,2.2,140,4.7,13.0716,10.0891 +2012,6,28,1,30,32.800000000000004,1.8,0.182,0.61,37,243,62,0,0,6,37,243,0,62,0.296,18.82,83.92,0.93,0.23,883,2.2,140,3.9000000000000004,0.0000,0.0000 +2012,6,28,2,30,30.6,1.81,0.182,0.61,0,0,0,0,0,7.2,0,0,0,0,0.297,23.2,94.95,0.93,0.23,884,2.3000000000000003,141,3.7,0.0000,0.0000 +2012,6,28,3,30,29.3,1.82,0.186,0.61,0,0,0,0,0,8.200000000000001,0,0,0,0,0.297,26.66,104.8,0.93,0.23,885,2.3000000000000003,145,3.8000000000000003,0.0000,0.0000 +2012,6,28,4,30,28.1,1.83,0.193,0.61,0,0,0,0,0,9,0,0,0,0,0.296,30.21,113.09,0.93,0.23,885,2.3000000000000003,151,3.6,0.0000,0.0000 +2012,6,28,5,30,27,1.83,0.202,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.296,33.49,119.15,0.93,0.23,885,2.3000000000000003,158,3.3000000000000003,0.0000,0.0000 +2012,6,28,6,30,26,1.84,0.20700000000000002,0.61,0,0,0,0,0,9.9,0,0,0,0,0.295,36.37,122.25,0.93,0.23,885,2.4000000000000004,167,2.9000000000000004,0.0000,0.0000 +2012,6,28,7,30,25,1.85,0.209,0.61,0,0,0,0,0,10.100000000000001,0,0,0,0,0.295,39.12,121.92,0.93,0.23,885,2.4000000000000004,178,2.5,0.0000,0.0000 +2012,6,28,8,30,24.200000000000003,1.85,0.213,0.61,0,0,0,0,0,10.200000000000001,0,0,0,0,0.294,41.27,118.21000000000001,0.93,0.23,885,2.4000000000000004,191,2.1,0.0000,0.0000 +2012,6,28,9,30,23.5,1.86,0.218,0.61,0,0,0,0,0,10.3,0,0,0,0,0.294,43.19,111.67,0.9400000000000001,0.23,885,2.4000000000000004,204,1.9000000000000001,0.0000,0.0000 +2012,6,28,10,30,22.900000000000002,1.86,0.225,0.61,0,0,0,0,0,10.4,0,0,0,0,0.293,45.050000000000004,103.04,0.9400000000000001,0.23,886,2.5,217,1.7000000000000002,0.0000,0.0000 +2012,6,28,11,30,23.5,1.87,0.231,0.61,0,0,0,0,0,10.4,0,0,0,0,0.293,43.61,92.95,0.9400000000000001,0.23,886,2.5,229,2.1,0.0000,0.0000 +2012,6,28,12,30,25.700000000000003,1.86,0.23600000000000002,0.61,51,269,89,0,0,10.5,51,269,0,89,0.292,38.57,81.79,0.9400000000000001,0.23,887,2.5,237,3,0.0000,0.0000 +2012,6,28,13,30,29,1.86,0.23900000000000002,0.61,100,516,276,0,0,10.8,100,516,0,276,0.292,32.38,70.11,0.9400000000000001,0.23,887,2.5,239,4,15.1977,11.7683 +2012,6,28,14,30,32.5,1.85,0.23600000000000002,0.61,131,659,481,0,0,11,131,659,0,481,0.292,26.78,57.980000000000004,0.9400000000000001,0.23,887,2.5,240,4.3,28.2781,22.1101 +2012,6,28,15,30,35.4,1.85,0.23,0.61,151,750,675,0,0,10,151,750,0,675,0.292,21.35,45.63,0.9400000000000001,0.23,887,2.4000000000000004,234,3.6,41.1568,32.3104 +2012,6,28,16,30,37.6,1.84,0.224,0.61,163,804,835,0,0,9,163,804,0,835,0.292,17.68,33.29,0.9400000000000001,0.23,886,2.4000000000000004,214,2.8000000000000003,52.0603,40.9502 +2012,6,28,17,30,39.2,1.84,0.221,0.61,169,835,947,0,0,8.3,169,835,0,947,0.292,15.47,21.44,0.93,0.23,886,2.4000000000000004,185,2.6,59.5604,46.8954 +2012,6,28,18,30,40.1,1.77,0.151,0.61,143,890,1013,0,0,7.9,143,890,0,1013,0.293,14.33,12.200000000000001,0.93,0.23,885,2.4000000000000004,166,3.1,63.4162,49.9512 +2012,6,28,19,30,40.6,1.77,0.152,0.61,143,886,1005,0,0,7.7,143,886,0,1005,0.293,13.82,13.46,0.93,0.23,885,2.5,159,3.6,62.9403,49.5743 +2012,6,28,20,30,40.5,1.76,0.157,0.61,141,869,937,0,0,7.7,141,869,0,937,0.293,13.85,23.580000000000002,0.93,0.23,884,2.5,157,3.9000000000000004,58.3250,45.9164 +2012,6,28,21,30,40.1,1.75,0.152,0.61,132,842,817,0,0,7.6000000000000005,132,842,0,817,0.293,14.1,35.59,0.9400000000000001,0.23,884,2.5,156,4.2,49.4911,38.9182 +2012,6,28,22,30,39.2,1.74,0.155,0.61,121,789,650,0,0,7.5,121,789,0,650,0.293,14.64,47.96,0.9400000000000001,0.23,883,2.5,156,4.5,37.9923,29.8092 +2012,6,28,23,30,37.9,1.74,0.156,0.61,104,703,452,0,0,7.4,104,703,0,452,0.293,15.63,60.29,0.9400000000000001,0.23,883,2.5,157,4.7,18.5452,14.4819 +2012,6,29,0,30,35.800000000000004,1.76,0.154,0.61,78,555,246,0,0,7.5,78,555,0,246,0.293,17.63,72.36,0.9400000000000001,0.22,883,2.5,157,4.5,12.2725,9.4727 +2012,6,29,1,30,33.1,1.77,0.154,0.61,36,262,63,0,0,8.1,36,262,0,63,0.293,21.28,83.91,0.9400000000000001,0.22,884,2.5,157,4,0.0000,0.0000 +2012,6,29,2,30,31.1,1.78,0.156,0.61,0,0,0,0,0,8.8,0,0,0,0,0.293,25.03,94.95,0.9400000000000001,0.22,884,2.5,160,4,0.0000,0.0000 +2012,6,29,3,30,29.8,1.77,0.163,0.61,0,0,0,0,0,9.5,0,0,0,0,0.293,28.25,104.81,0.9400000000000001,0.22,885,2.6,165,4,0.0000,0.0000 +2012,6,29,4,30,28.6,1.76,0.17400000000000002,0.61,0,0,0,0,0,10.100000000000001,0,0,0,0,0.293,31.55,113.11,0.9400000000000001,0.22,885,2.7,169,3.9000000000000004,0.0000,0.0000 +2012,6,29,5,30,27.6,1.76,0.183,0.61,0,0,0,0,0,10.4,0,0,0,0,0.292,34.2,119.18,0.9400000000000001,0.22,885,2.7,172,3.7,0.0000,0.0000 +2012,6,29,6,30,26.6,1.76,0.19,0.61,0,0,0,0,4,10.5,0,0,0,0,0.291,36.52,122.3,0.9400000000000001,0.22,885,2.8000000000000003,174,3.4000000000000004,0.0000,0.0000 +2012,6,29,7,30,25.700000000000003,1.76,0.198,0.61,0,0,0,0,3,10.5,0,0,0,0,0.291,38.5,121.98,0.9400000000000001,0.22,885,2.8000000000000003,175,3.1,0.0000,0.0000 +2012,6,29,8,30,25,1.74,0.213,0.61,0,0,0,0,0,10.5,0,0,0,0,0.29,40.11,118.27,0.9500000000000001,0.22,885,2.8000000000000003,180,2.8000000000000003,0.0000,0.0000 +2012,6,29,9,30,24.400000000000002,1.73,0.23,0.61,0,0,0,0,0,10.5,0,0,0,0,0.29,41.52,111.74000000000001,0.9500000000000001,0.22,885,2.8000000000000003,189,2.6,0.0000,0.0000 +2012,6,29,10,30,23.900000000000002,1.72,0.242,0.61,0,0,0,0,0,10.4,0,0,0,0,0.289,42.63,103.11,0.9500000000000001,0.22,885,2.8000000000000003,199,2.4000000000000004,0.0000,0.0000 +2012,6,29,11,30,24.200000000000003,1.71,0.25,0.61,0,0,0,0,0,10.3,0,0,0,0,0.289,41.54,93.02,0.96,0.22,885,2.8000000000000003,204,2.6,0.0000,0.0000 +2012,6,29,12,30,25.5,1.7,0.262,0.61,53,235,86,0,0,10.200000000000001,53,235,0,86,0.28800000000000003,38.25,81.85000000000001,0.96,0.22,886,2.9000000000000004,208,3.4000000000000004,0.0000,0.0000 +2012,6,29,13,30,27.8,1.69,0.274,0.61,108,475,269,0,0,10.100000000000001,108,475,0,269,0.28800000000000003,33.09,70.18,0.96,0.22,886,2.9000000000000004,212,4.4,14.1156,10.9295 +2012,6,29,14,30,30.400000000000002,1.68,0.274,0.61,144,620,472,0,0,9.700000000000001,144,620,0,472,0.28700000000000003,27.77,58.050000000000004,0.96,0.22,885,2.9000000000000004,215,4.7,26.8194,20.9689 +2012,6,29,15,30,32.9,1.69,0.262,0.61,163,714,662,0,0,9.3,163,714,0,662,0.28700000000000003,23.400000000000002,45.7,0.96,0.22,885,3,216,4.2,39.5667,31.0616 +2012,6,29,16,30,35.1,1.69,0.251,0.61,175,774,821,7,3,8.700000000000001,379,496,7,793,0.28700000000000003,19.85,33.35,0.96,0.22,885,3,214,3.6,50.3651,39.6165 +2012,6,29,17,30,36.5,1.7,0.233,0.61,176,815,935,0,3,8.200000000000001,333,1,0,333,0.28600000000000003,17.79,21.51,0.96,0.22,885,3,208,3.4000000000000004,58.0246,45.6860 +2012,6,29,18,30,37.2,1.72,0.213,0.61,172,842,995,0,4,8.200000000000001,203,0,0,203,0.28600000000000003,17.09,12.280000000000001,0.9500000000000001,0.22,884,2.9000000000000004,201,3.6,62.4889,49.2207 +2012,6,29,19,30,37.7,1.75,0.189,0.61,160,856,993,0,4,8.3,335,1,0,335,0.28600000000000003,16.73,13.48,0.9500000000000001,0.22,883,2.9000000000000004,196,3.9000000000000004,61.9532,48.7968 +2012,6,29,20,30,38.1,1.76,0.169,0.61,147,855,931,0,0,8.3,147,855,0,931,0.28600000000000003,16.46,23.57,0.9500000000000001,0.22,883,2.8000000000000003,191,4,57.2863,45.0987 +2012,6,29,21,30,38.1,1.77,0.15,0.61,130,840,814,0,0,8.200000000000001,130,840,0,814,0.28600000000000003,16.34,35.57,0.9400000000000001,0.22,882,2.7,188,4,49.0725,38.5892 +2012,6,29,22,30,37.6,1.77,0.14,0.61,115,800,650,0,0,8,115,800,0,650,0.28700000000000003,16.580000000000002,47.95,0.9400000000000001,0.22,881,2.6,184,4,37.8203,29.6744 +2012,6,29,23,30,36.5,1.77,0.134,0.61,97,724,456,0,0,7.9,97,724,0,456,0.28700000000000003,17.44,60.28,0.9400000000000001,0.22,881,2.5,178,3.9000000000000004,24.8766,19.4263 +2012,6,30,0,30,34.300000000000004,1.77,0.135,0.61,74,578,249,0,0,7.9,74,578,0,249,0.28800000000000003,19.650000000000002,72.35000000000001,0.9400000000000001,0.22,881,2.4000000000000004,170,3.1,12.3238,9.5124 +2012,6,30,1,30,31.400000000000002,1.78,0.14,0.61,35,278,64,0,3,8.9,53,77,0,62,0.289,24.84,83.91,0.93,0.22,881,2.4000000000000004,163,2.8000000000000003,0.0000,0.0000 +2012,6,30,2,30,29.900000000000002,1.77,0.15,0.61,0,0,0,0,8,9,0,0,0,0,0.289,27.14,94.95,0.93,0.22,881,2.5,161,3.8000000000000003,0.0000,0.0000 +2012,6,30,3,30,29,1.76,0.164,0.61,0,0,0,0,7,8.8,0,0,0,0,0.289,28.36,104.83,0.9400000000000001,0.22,882,2.6,162,4.7,0.0000,0.0000 +2012,6,30,4,30,27.900000000000002,1.75,0.179,0.61,0,0,0,0,6,8.9,0,0,0,0,0.289,30.27,113.14,0.9400000000000001,0.22,882,2.7,167,4.9,0.0000,0.0000 +2012,6,30,5,30,27,1.72,0.194,0.61,0,0,0,0,6,8.700000000000001,0,0,0,0,0.289,31.61,119.22,0.9500000000000001,0.22,882,2.8000000000000003,173,4.9,0.0000,0.0000 +2012,6,30,6,30,26.200000000000003,1.68,0.213,0.61,0,0,0,0,6,8.6,0,0,0,0,0.28800000000000003,32.85,122.35000000000001,0.9500000000000001,0.22,882,2.8000000000000003,179,4.800000000000001,0.0000,0.0000 +2012,6,30,7,30,25.5,1.6500000000000001,0.226,0.61,0,0,0,0,7,8.700000000000001,0,0,0,0,0.28800000000000003,34.410000000000004,122.04,0.96,0.22,882,2.9000000000000004,186,4.5,0.0000,0.0000 +2012,6,30,8,30,24.900000000000002,1.6500000000000001,0.221,0.61,0,0,0,0,8,9,0,0,0,0,0.28700000000000003,36.44,118.35000000000001,0.96,0.22,882,2.9000000000000004,195,4.3,0.0000,0.0000 +2012,6,30,9,30,24.3,1.6600000000000001,0.20400000000000001,0.61,0,0,0,0,8,9.4,0,0,0,0,0.28500000000000003,38.88,111.82000000000001,0.96,0.22,882,2.8000000000000003,204,4.1000000000000005,0.0000,0.0000 +2012,6,30,10,30,23.6,1.68,0.185,0.61,0,0,0,0,7,10,0,0,0,0,0.28400000000000003,42.12,103.19,0.9500000000000001,0.22,882,2.7,209,3.5,0.0000,0.0000 +2012,6,30,11,30,23.6,1.69,0.17,0.61,0,0,0,0,0,10.5,0,0,0,0,0.28200000000000003,43.7,93.09,0.9500000000000001,0.22,882,2.7,208,3.2,0.0000,0.0000 +2012,6,30,12,30,25.1,1.69,0.166,0.61,47,313,91,0,0,11.100000000000001,47,313,0,91,0.281,41.42,81.93,0.9500000000000001,0.22,883,2.6,207,3.8000000000000003,0.0000,0.0000 +2012,6,30,13,30,28,1.68,0.17200000000000001,0.61,88,567,280,0,1,11.5,88,567,0,280,0.28,35.87,70.25,0.9500000000000001,0.22,883,2.6,206,4.1000000000000005,13.7489,10.6446 +2012,6,30,14,30,31.3,1.68,0.179,0.61,116,697,484,0,0,11.100000000000001,116,697,0,484,0.279,28.94,58.120000000000005,0.96,0.22,883,2.7,196,3.5,26.3077,20.5682 +2012,6,30,15,30,34.2,1.6600000000000001,0.189,0.61,138,770,675,7,3,10.3,386,238,7,552,0.279,23.29,45.76,0.96,0.22,883,2.7,172,2.8000000000000003,38.7965,30.4565 +2012,6,30,16,30,36.2,1.6500000000000001,0.194,0.61,152,814,831,0,1,9.8,152,814,0,831,0.279,20.150000000000002,33.42,0.96,0.22,883,2.8000000000000003,150,3,47.8268,37.6196 +2012,6,30,17,30,37.5,1.6400000000000001,0.194,0.61,160,840,941,7,2,9.8,312,651,7,918,0.28,18.75,21.580000000000002,0.9500000000000001,0.22,882,2.9000000000000004,142,3.7,20.4022,16.0637 +2012,6,30,18,30,38.300000000000004,1.62,0.17400000000000002,0.61,155,863,998,0,0,10.100000000000001,155,863,0,998,0.28,18.32,12.35,0.9500000000000001,0.22,882,3,142,4.2,12.5219,9.8631 +2012,6,30,19,30,38.6,1.61,0.176,0.61,155,859,991,0,0,10.5,155,859,0,991,0.281,18.57,13.51,0.9500000000000001,0.22,881,3.1,145,4.5,20.6508,16.2654 +2012,6,30,20,30,38.6,1.61,0.178,0.61,152,842,923,0,0,11,152,842,0,923,0.281,19.12,23.57,0.9500000000000001,0.22,881,3.2,146,4.6000000000000005,56.9201,44.8105 +2012,6,30,21,30,38,1.58,0.167,0.61,139,818,804,0,0,11.200000000000001,139,818,0,804,0.28200000000000003,20.11,35.56,0.9500000000000001,0.22,880,3.2,147,4.7,48.8942,38.4491 +2012,6,30,22,30,37.1,1.59,0.166,0.61,126,766,639,0,0,11.3,126,766,0,639,0.28200000000000003,21.240000000000002,47.93,0.9500000000000001,0.22,880,3.2,148,4.9,37.8216,29.6755 +2012,6,30,23,30,35.800000000000004,1.61,0.159,0.61,105,687,446,0,0,11.200000000000001,105,687,0,446,0.28200000000000003,22.69,60.27,0.9500000000000001,0.22,880,3.1,149,5,25.0983,19.5995 +2012,7,1,0,30,34,1.6600000000000001,0.145,0.62,76,553,243,0,0,11,76,553,0,243,0.28200000000000003,24.64,72.34,0.9400000000000001,0.22,881,3,150,4.800000000000001,12.4752,9.6294 +2012,7,1,1,30,31.6,1.68,0.135,0.62,35,273,64,0,0,10.600000000000001,35,273,0,64,0.28300000000000003,27.41,83.91,0.9400000000000001,0.22,881,2.8000000000000003,150,4,0.0000,0.0000 +2012,7,1,2,30,29.5,1.7,0.127,0.62,0,0,0,0,7,10.100000000000001,0,0,0,0,0.28300000000000003,30.04,94.96000000000001,0.9400000000000001,0.22,882,2.7,150,3.2,0.0000,0.0000 +2012,7,1,3,30,28,1.72,0.122,0.62,0,0,0,0,8,9.700000000000001,0,0,0,0,0.28400000000000003,31.810000000000002,104.85000000000001,0.9400000000000001,0.22,882,2.6,152,2.9000000000000004,0.0000,0.0000 +2012,7,1,4,30,26.700000000000003,1.72,0.125,0.62,0,0,0,0,8,9.700000000000001,0,0,0,0,0.28400000000000003,34.29,113.17,0.9400000000000001,0.22,883,2.7,156,2.8000000000000003,0.0000,0.0000 +2012,7,1,5,30,25.6,1.72,0.132,0.62,0,0,0,0,8,10.200000000000001,0,0,0,0,0.28300000000000003,37.84,119.27,0.9400000000000001,0.22,883,2.8000000000000003,159,2.8000000000000003,0.0000,0.0000 +2012,7,1,6,30,24.6,1.7,0.14100000000000001,0.62,0,0,0,0,7,11.200000000000001,0,0,0,0,0.28200000000000003,42.93,122.42,0.9400000000000001,0.22,883,2.8000000000000003,162,2.9000000000000004,0.0000,0.0000 +2012,7,1,7,30,23.8,1.69,0.149,0.62,0,0,0,0,7,12.4,0,0,0,0,0.28200000000000003,48.730000000000004,122.12,0.9400000000000001,0.22,883,2.9000000000000004,163,3,0.0000,0.0000 +2012,7,1,8,30,23,1.68,0.149,0.62,0,0,0,0,7,13.4,0,0,0,0,0.28200000000000003,54.83,118.43,0.9400000000000001,0.22,883,2.8000000000000003,164,3.1,0.0000,0.0000 +2012,7,1,9,30,22.3,1.67,0.14100000000000001,0.62,0,0,0,0,3,14.100000000000001,0,0,0,0,0.28300000000000003,59.870000000000005,111.9,0.9400000000000001,0.22,883,2.8000000000000003,165,3.2,0.0000,0.0000 +2012,7,1,10,30,21.8,1.6600000000000001,0.133,0.62,0,0,0,0,0,14.600000000000001,0,0,0,0,0.28400000000000003,63.440000000000005,103.27,0.9400000000000001,0.22,884,2.7,167,3.1,0.0000,0.0000 +2012,7,1,11,30,22,1.6600000000000001,0.127,0.62,0,0,0,0,4,14.8,0,0,0,0,0.28400000000000003,63.71,93.17,0.9400000000000001,0.22,884,2.7,171,3.4000000000000004,0.0000,0.0000 +2012,7,1,12,30,23.5,1.6400000000000001,0.125,0.62,42,349,91,0,0,15.3,42,349,0,91,0.28500000000000003,59.89,82,0.9400000000000001,0.22,885,2.8000000000000003,181,4.3,0.0000,0.0000 +2012,7,1,13,30,26,1.6400000000000001,0.125,0.62,76,608,281,0,0,16.3,76,608,0,281,0.28600000000000003,55.21,70.32000000000001,0.9400000000000001,0.22,885,2.9000000000000004,186,4.9,14.3021,11.0719 +2012,7,1,14,30,28.6,1.6400000000000001,0.125,0.62,97,739,487,0,0,16.5,97,739,0,487,0.28600000000000003,47.99,58.19,0.9400000000000001,0.22,885,2.9000000000000004,179,4.7,26.9665,21.0825 +2012,7,1,15,30,30.700000000000003,1.6500000000000001,0.126,0.62,112,812,677,0,0,16.1,112,812,0,677,0.28600000000000003,41.5,45.83,0.9400000000000001,0.22,885,3,168,4.4,32.3440,25.3908 +2012,7,1,16,30,32.5,1.6600000000000001,0.126,0.62,121,855,835,0,0,15.5,121,855,0,835,0.28700000000000003,35.97,33.49,0.9400000000000001,0.22,885,3.1,160,4.2,50.1125,39.4172 +2012,7,1,17,30,33.9,1.67,0.127,0.62,128,880,946,0,0,14.600000000000001,128,880,0,946,0.28700000000000003,31.32,21.66,0.9400000000000001,0.22,885,3.1,154,4.1000000000000005,56.2401,44.2806 +2012,7,1,18,30,34.9,1.7,0.139,0.62,137,884,1000,0,0,13.5,137,884,0,1000,0.28600000000000003,27.63,12.43,0.9400000000000001,0.22,884,3.1,150,4.1000000000000005,61.5589,48.4879 +2012,7,1,19,30,35.5,1.71,0.14,0.62,137,883,995,0,0,12.5,137,883,0,995,0.28600000000000003,25.03,13.55,0.9400000000000001,0.22,883,3.1,148,4.1000000000000005,61.0885,48.1156 +2012,7,1,20,30,35.800000000000004,1.7,0.14,0.62,134,870,932,0,0,11.600000000000001,134,870,0,932,0.28600000000000003,23.240000000000002,23.57,0.9500000000000001,0.22,883,3,145,4.1000000000000005,56.4310,44.4254 +2012,7,1,21,30,35.6,1.69,0.116,0.62,116,861,816,0,0,10.8,116,861,0,816,0.28600000000000003,22.240000000000002,35.56,0.9500000000000001,0.22,882,2.9000000000000004,142,4.2,48.2945,37.9775 +2012,7,1,22,30,34.9,1.72,0.11,0.62,103,820,652,0,0,10.100000000000001,103,820,0,652,0.28600000000000003,22.06,47.93,0.9400000000000001,0.22,882,2.8000000000000003,140,4.3,37.1840,29.1754 +2012,7,1,23,30,33.7,1.75,0.107,0.62,88,743,456,0,0,9.700000000000001,88,743,0,456,0.28600000000000003,22.95,60.26,0.9400000000000001,0.22,882,2.8000000000000003,139,4.4,24.5493,19.1709 +2012,7,2,0,30,31.900000000000002,1.78,0.107,0.62,67,604,250,0,0,9.5,67,604,0,250,0.28700000000000003,25.12,72.34,0.9400000000000001,0.21,882,2.7,139,4.2,12.1758,9.3984 +2012,7,2,1,30,29.6,1.81,0.108,0.62,33,312,66,0,0,9.8,33,312,0,66,0.28700000000000003,29.14,83.91,0.9400000000000001,0.21,883,2.6,140,3.8000000000000003,0.0000,0.0000 +2012,7,2,2,30,27.8,1.83,0.108,0.62,0,0,0,0,0,10.4,0,0,0,0,0.28800000000000003,33.68,94.98,0.93,0.21,884,2.6,144,3.7,0.0000,0.0000 +2012,7,2,3,30,26.6,1.85,0.109,0.62,0,0,0,0,0,11.100000000000001,0,0,0,0,0.28800000000000003,37.94,104.87,0.93,0.21,884,2.6,151,4,0.0000,0.0000 +2012,7,2,4,30,25.6,1.85,0.112,0.62,0,0,0,0,0,12.100000000000001,0,0,0,0,0.289,43.01,113.21000000000001,0.93,0.21,885,2.7,160,4.1000000000000005,0.0000,0.0000 +2012,7,2,5,30,24.6,1.84,0.114,0.62,0,0,0,0,0,13,0,0,0,0,0.28800000000000003,48.370000000000005,119.32000000000001,0.92,0.21,885,2.7,170,3.9000000000000004,0.0000,0.0000 +2012,7,2,6,30,23.700000000000003,1.84,0.115,0.62,0,0,0,0,0,13.5,0,0,0,0,0.28800000000000003,52.78,122.48,0.92,0.21,885,2.7,178,3.5,0.0000,0.0000 +2012,7,2,7,30,23,1.83,0.117,0.62,0,0,0,0,0,13.700000000000001,0,0,0,0,0.28800000000000003,55.800000000000004,122.2,0.93,0.21,885,2.7,184,3.1,0.0000,0.0000 +2012,7,2,8,30,22.3,1.78,0.121,0.62,0,0,0,0,0,13.8,0,0,0,0,0.28800000000000003,58.56,118.51,0.93,0.21,885,2.6,188,2.9000000000000004,0.0000,0.0000 +2012,7,2,9,30,21.6,1.71,0.125,0.62,0,0,0,0,0,13.9,0,0,0,0,0.28800000000000003,61.39,111.98,0.93,0.21,885,2.6,192,2.7,0.0000,0.0000 +2012,7,2,10,30,21,1.6500000000000001,0.128,0.62,0,0,0,0,0,14,0,0,0,0,0.289,64.16,103.35000000000001,0.93,0.21,885,2.6,195,2.5,0.0000,0.0000 +2012,7,2,11,30,21,1.6,0.13,0.62,0,0,0,0,0,14.200000000000001,0,0,0,0,0.29,64.93,93.25,0.93,0.21,885,2.6,199,3,0.0000,0.0000 +2012,7,2,12,30,22.3,1.55,0.13,0.62,42,340,89,0,0,14.5,42,340,0,89,0.291,61.44,82.08,0.93,0.21,886,2.6,205,4.1000000000000005,0.0000,0.0000 +2012,7,2,13,30,24.5,1.52,0.128,0.62,76,607,280,0,0,15,76,607,0,280,0.292,55.44,70.39,0.93,0.21,886,2.6,205,4.7,14.3441,11.1035 +2012,7,2,14,30,27,1.49,0.125,0.62,97,745,489,0,0,14.8,97,745,0,489,0.293,47.07,58.26,0.93,0.21,886,2.5,196,4.7,27.1234,21.2044 +2012,7,2,15,30,29.200000000000003,1.45,0.122,0.62,110,822,682,0,0,14.3,110,822,0,682,0.294,40.32,45.910000000000004,0.93,0.21,886,2.5,185,4.7,39.6599,31.1335 +2012,7,2,16,30,31,1.42,0.121,0.62,120,868,843,0,0,13.9,120,868,0,843,0.295,35.39,33.57,0.93,0.21,886,2.5,177,4.800000000000001,50.3476,39.6018 +2012,7,2,17,30,32.5,1.4000000000000001,0.121,0.62,126,891,954,0,0,13.5,126,891,0,954,0.295,31.68,21.740000000000002,0.93,0.21,885,2.6,172,4.9,57.9509,45.6274 +2012,7,2,18,30,33.6,1.37,0.123,0.62,131,901,1010,0,0,13.3,131,901,0,1010,0.295,29.330000000000002,12.52,0.9400000000000001,0.21,884,2.6,168,5.1000000000000005,61.6797,48.5829 +2012,7,2,19,30,34.300000000000004,1.35,0.126,0.62,132,896,1003,0,0,13.200000000000001,132,896,0,1003,0.294,28.12,13.59,0.9400000000000001,0.21,884,2.7,167,5.300000000000001,61.3336,48.3086 +2012,7,2,20,30,34.4,1.33,0.129,0.62,130,880,936,0,0,13.4,130,880,0,936,0.294,28.150000000000002,23.580000000000002,0.9400000000000001,0.21,883,2.7,166,5.4,56.9813,44.8586 +2012,7,2,21,30,34.1,1.41,0.153,0.62,132,832,809,0,0,13.4,132,832,0,809,0.293,28.75,35.56,0.93,0.21,883,2.8000000000000003,167,5.5,49.0153,38.5443 +2012,7,2,22,30,33.300000000000004,1.3900000000000001,0.153,0.62,120,782,644,0,0,13.4,120,782,0,644,0.293,30.04,47.92,0.93,0.21,883,2.7,168,5.6000000000000005,37.9405,29.7689 +2012,7,2,23,30,32,1.3900000000000001,0.152,0.62,103,696,448,0,0,13.4,103,696,0,448,0.293,32.27,60.26,0.93,0.21,883,2.7,169,5.5,25.1013,19.6021 +2012,7,3,0,30,30.5,1.3900000000000001,0.151,0.62,78,544,243,0,0,13.3,78,544,0,243,0.293,35.01,72.34,0.93,0.22,883,2.7,169,5.300000000000001,12.5265,9.6692 +2012,7,3,1,30,28.700000000000003,1.3900000000000001,0.15,0.62,36,243,62,0,0,13.3,36,243,0,62,0.293,38.77,83.92,0.9400000000000001,0.22,883,2.7,168,4.800000000000001,0.0000,0.0000 +2012,7,3,2,30,27.400000000000002,1.36,0.15,0.62,0,0,0,0,0,13.4,0,0,0,0,0.293,42.050000000000004,95,0.9400000000000001,0.22,884,2.7,166,4.3,0.0000,0.0000 +2012,7,3,3,30,26.400000000000002,1.32,0.152,0.62,0,0,0,0,0,13.5,0,0,0,0,0.293,44.96,104.9,0.9400000000000001,0.22,884,2.7,165,4,0.0000,0.0000 +2012,7,3,4,30,25.6,1.26,0.156,0.62,0,0,0,0,0,13.700000000000001,0,0,0,0,0.293,47.61,113.26,0.9400000000000001,0.22,885,2.8000000000000003,168,3.7,0.0000,0.0000 +2012,7,3,5,30,24.900000000000002,1.21,0.16,0.62,0,0,0,0,0,13.8,0,0,0,0,0.293,50.06,119.39,0.9400000000000001,0.22,885,2.9000000000000004,172,3.5,0.0000,0.0000 +2012,7,3,6,30,24.3,1.2,0.162,0.62,0,0,0,0,0,13.9,0,0,0,0,0.293,52.4,122.56,0.9400000000000001,0.22,885,2.9000000000000004,174,3.3000000000000003,0.0000,0.0000 +2012,7,3,7,30,23.700000000000003,1.22,0.161,0.62,0,0,0,0,0,14.100000000000001,0,0,0,0,0.293,54.89,122.28,0.9500000000000001,0.22,885,3,174,3.3000000000000003,0.0000,0.0000 +2012,7,3,8,30,23.1,1.25,0.158,0.62,0,0,0,0,0,14.200000000000001,0,0,0,0,0.293,57.38,118.60000000000001,0.9500000000000001,0.22,885,3,173,3.4000000000000004,0.0000,0.0000 +2012,7,3,9,30,22.5,1.28,0.154,0.62,0,0,0,0,0,14.3,0,0,0,0,0.293,59.800000000000004,112.07000000000001,0.9500000000000001,0.22,885,3,173,3.4000000000000004,0.0000,0.0000 +2012,7,3,10,30,21.8,1.28,0.152,0.62,0,0,0,0,0,14.4,0,0,0,0,0.293,62.74,103.44,0.9500000000000001,0.22,885,3,172,3.3000000000000003,0.0000,0.0000 +2012,7,3,11,30,21.8,1.25,0.153,0.62,0,0,0,0,0,14.600000000000001,0,0,0,0,0.293,63.43,93.34,0.9500000000000001,0.22,885,3,174,3.7,0.0000,0.0000 +2012,7,3,12,30,23,1.2,0.158,0.62,46,281,84,0,0,15.100000000000001,46,281,0,84,0.293,61.02,82.16,0.9500000000000001,0.22,885,3.1,182,4.7,0.0000,0.0000 +2012,7,3,13,30,25,1.1500000000000001,0.162,0.62,88,547,270,0,0,16.2,88,547,0,270,0.292,58.160000000000004,70.47,0.96,0.22,886,3.2,190,5.1000000000000005,14.2840,11.0560 +2012,7,3,14,30,27.400000000000002,1.11,0.163,0.62,113,688,474,0,0,16.5,113,688,0,474,0.292,51.46,58.34,0.96,0.22,885,3.2,191,4.6000000000000005,27.2245,21.2827 +2012,7,3,15,30,29.700000000000003,1.08,0.162,0.62,130,769,665,0,0,16.400000000000002,130,769,0,665,0.292,44.83,45.980000000000004,0.96,0.22,885,3.3000000000000003,186,4.2,39.9431,31.3552 +2012,7,3,16,30,31.5,1.03,0.168,0.62,145,813,822,0,0,16.3,145,813,0,822,0.292,39.96,33.64,0.96,0.22,885,3.3000000000000003,179,4.1000000000000005,50.8228,39.9752 +2012,7,3,17,30,32.7,1,0.176,0.62,157,834,932,0,1,16,157,834,0,932,0.292,36.78,21.82,0.97,0.22,884,3.4000000000000004,174,4.3,58.4364,46.0094 +2012,7,3,18,30,33.5,1.03,0.202,0.62,173,829,982,0,1,15.9,173,829,0,982,0.291,34.79,12.620000000000001,0.97,0.22,883,3.5,172,4.7,62.2935,49.0663 +2012,7,3,19,30,33.9,1.02,0.20800000000000002,0.62,175,823,975,0,0,15.700000000000001,175,823,0,975,0.291,33.61,13.64,0.97,0.22,883,3.6,172,4.9,61.8254,48.6959 +2012,7,3,20,30,33.9,1.01,0.214,0.62,173,803,909,7,2,15.4,335,606,7,890,0.291,33.03,23.59,0.97,0.22,882,3.6,172,5.1000000000000005,57.2252,45.0506 +2012,7,3,21,30,33.6,1,0.203,0.62,159,777,791,0,2,15.200000000000001,445,109,0,533,0.29,33.2,35.56,0.97,0.22,882,3.6,171,5.300000000000001,48.5948,38.2137 +2012,7,3,22,30,33,1,0.194,0.62,141,727,628,0,0,15.100000000000001,141,727,0,628,0.29,34.06,47.92,0.97,0.22,882,3.6,172,5.5,37.4762,29.4047 +2012,7,3,23,30,32.2,1.01,0.184,0.62,117,642,436,0,0,15,117,642,0,436,0.29,35.4,60.26,0.96,0.22,881,3.6,173,5.5,24.6609,19.2582 +2012,7,4,0,30,31.200000000000003,1.03,0.176,0.62,86,490,234,0,0,14.9,86,490,0,234,0.29,37.21,72.35000000000001,0.96,0.21,881,3.6,174,5.1000000000000005,12.1758,9.3984 +2012,7,4,1,30,29.900000000000002,1.05,0.166,0.62,38,197,59,0,3,14.8,51,12,0,52,0.29,39.76,83.94,0.96,0.21,882,3.5,173,4.6000000000000005,0.0000,0.0000 +2012,7,4,2,30,28.8,1.08,0.158,0.62,0,0,0,0,0,14.600000000000001,0,0,0,0,0.29,42.01,95.02,0.96,0.21,882,3.5,173,4.4,0.0000,0.0000 +2012,7,4,3,30,28,1.09,0.156,0.62,0,0,0,0,0,14.5,0,0,0,0,0.29,43.76,104.94,0.96,0.21,883,3.4000000000000004,174,4.4,0.0000,0.0000 +2012,7,4,4,30,27.200000000000003,1.11,0.16,0.62,0,0,0,0,1,14.600000000000001,0,0,0,0,0.289,45.97,113.31,0.96,0.21,883,3.5,176,4.2,0.0000,0.0000 +2012,7,4,5,30,26.5,1.12,0.164,0.62,0,0,0,0,1,14.8,0,0,0,0,0.289,48.550000000000004,119.45,0.96,0.21,883,3.5,179,4.1000000000000005,0.0000,0.0000 +2012,7,4,6,30,25.700000000000003,1.1500000000000001,0.159,0.62,0,0,0,0,1,15.100000000000001,0,0,0,0,0.289,52.06,122.64,0.96,0.21,883,3.4000000000000004,182,4.4,0.0000,0.0000 +2012,7,4,7,30,24.900000000000002,1.18,0.148,0.62,0,0,0,0,0,15.5,0,0,0,0,0.29,55.99,122.38,0.96,0.21,883,3.4000000000000004,184,4.6000000000000005,0.0000,0.0000 +2012,7,4,8,30,24,1.21,0.14,0.62,0,0,0,0,0,15.8,0,0,0,0,0.29,59.99,118.7,0.9500000000000001,0.21,883,3.3000000000000003,185,4.4,0.0000,0.0000 +2012,7,4,9,30,23.3,1.23,0.134,0.62,0,0,0,0,0,15.8,0,0,0,0,0.291,62.93,112.17,0.9500000000000001,0.21,884,3.3000000000000003,184,4.1000000000000005,0.0000,0.0000 +2012,7,4,10,30,22.700000000000003,1.24,0.13,0.62,0,0,0,0,0,15.8,0,0,0,0,0.291,65.21000000000001,103.53,0.9500000000000001,0.21,884,3.2,183,3.7,0.0000,0.0000 +2012,7,4,11,30,22.6,1.25,0.126,0.62,0,0,0,0,0,15.8,0,0,0,0,0.291,65.49,93.42,0.9500000000000001,0.21,884,3.2,182,3.7,0.0000,0.0000 +2012,7,4,12,30,23.900000000000002,1.26,0.12,0.62,42,325,86,0,0,15.8,42,325,0,86,0.291,60.54,82.24,0.9500000000000001,0.21,884,3.2,185,4.5,0.0000,0.0000 +2012,7,4,13,30,26.3,1.27,0.112,0.62,74,607,276,0,0,15.8,74,607,0,276,0.292,52.56,70.55,0.9500000000000001,0.21,884,3.2,188,4.9,13.7639,10.6523 +2012,7,4,14,30,28.700000000000003,1.28,0.10300000000000001,0.62,90,751,484,0,0,15.8,90,751,0,484,0.292,45.71,58.410000000000004,0.9500000000000001,0.21,884,3.1,185,4.6000000000000005,26.3780,20.6202 +2012,7,4,15,30,30.8,1.29,0.095,0.62,100,832,677,0,0,15.8,100,832,0,677,0.292,40.32,46.06,0.9500000000000001,0.21,884,3.1,178,4.5,38.9391,30.5666 +2012,7,4,16,30,32.7,1.31,0.09,0.62,106,877,836,0,0,15.5,106,877,0,836,0.293,35.51,33.72,0.9500000000000001,0.21,884,3.2,173,4.800000000000001,49.5506,38.9743 +2012,7,4,17,30,34.2,1.32,0.089,0.62,111,902,948,0,0,15,111,902,0,948,0.293,31.73,21.91,0.9500000000000001,0.21,883,3.2,171,5.2,57.0844,44.9447 +2012,7,4,18,30,35.2,1.26,0.082,0.62,110,916,1004,0,0,14.700000000000001,110,916,0,1004,0.293,29.330000000000002,12.71,0.9500000000000001,0.21,883,3.3000000000000003,171,5.5,60.5634,47.7034 +2012,7,4,19,30,35.7,1.23,0.08600000000000001,0.62,112,911,997,0,0,14.4,112,911,0,997,0.293,28.11,13.700000000000001,0.9500000000000001,0.21,882,3.4000000000000004,171,5.7,60.0977,47.3350 +2012,7,4,20,30,35.6,1.19,0.094,0.62,113,890,929,0,0,14.3,113,890,0,929,0.293,28.060000000000002,23.61,0.9500000000000001,0.21,882,3.5,173,5.800000000000001,54.4123,42.8361 +2012,7,4,21,30,35,1.31,0.131,0.62,124,836,804,0,0,14.4,124,836,0,804,0.293,29.060000000000002,35.56,0.9500000000000001,0.21,881,3.5,173,5.9,32.0161,25.1766 +2012,7,4,22,30,34,1.3,0.14400000000000002,0.62,118,773,636,0,3,14.5,364,92,0,426,0.293,31.07,47.93,0.96,0.21,881,3.6,174,5.9,36.5451,28.6742 +2012,7,4,23,30,32.7,1.29,0.16,0.62,107,670,439,0,3,14.8,273,76,0,311,0.294,33.97,60.27,0.96,0.21,882,3.7,175,5.9,24.0003,18.7423 +2012,7,5,0,30,31.3,1.29,0.182,0.62,85,491,234,0,1,15.100000000000001,85,491,0,234,0.294,37.54,72.36,0.96,0.22,882,3.8000000000000003,175,5.6000000000000005,11.7237,9.0493 +2012,7,5,1,30,29.900000000000002,1.28,0.202,0.62,39,177,57,0,3,15.600000000000001,39,177,5,57,0.295,41.87,83.96000000000001,0.96,0.22,883,3.9000000000000004,175,5,0.0000,0.0000 +2012,7,5,2,30,28.700000000000003,1.27,0.218,0.62,0,0,0,0,7,16,0,0,0,0,0.296,46.13,95.05,0.96,0.22,883,3.9000000000000004,176,4.5,0.0000,0.0000 +2012,7,5,3,30,27.700000000000003,1.27,0.219,0.62,0,0,0,0,7,16.3,0,0,0,0,0.296,49.870000000000005,104.98,0.96,0.22,884,3.8000000000000003,178,4.4,0.0000,0.0000 +2012,7,5,4,30,26.700000000000003,1.29,0.20400000000000001,0.62,0,0,0,0,7,16.400000000000002,0,0,0,0,0.296,53.39,113.36,0.96,0.22,884,3.7,183,4.3,0.0000,0.0000 +2012,7,5,5,30,25.700000000000003,1.33,0.183,0.62,0,0,0,0,0,16.6,0,0,0,0,0.296,57.04,119.53,0.96,0.22,884,3.6,188,4,0.0000,0.0000 +2012,7,5,6,30,24.700000000000003,1.3800000000000001,0.164,0.62,0,0,0,0,0,16.7,0,0,0,0,0.296,61.01,122.73,0.96,0.22,884,3.5,191,3.5,0.0000,0.0000 +2012,7,5,7,30,23.8,1.44,0.151,0.62,0,0,0,0,0,16.8,0,0,0,0,0.296,64.76,122.47,0.96,0.22,884,3.4000000000000004,191,3,0.0000,0.0000 +2012,7,5,8,30,23,1.5,0.14400000000000002,0.62,0,0,0,0,0,16.8,0,0,0,0,0.296,68.18,118.8,0.96,0.22,884,3.4000000000000004,187,2.6,0.0000,0.0000 +2012,7,5,9,30,22.400000000000002,1.54,0.14,0.62,0,0,0,0,0,16.8,0,0,0,0,0.296,70.75,112.27,0.96,0.22,884,3.4000000000000004,184,2.5,0.0000,0.0000 +2012,7,5,10,30,21.700000000000003,1.57,0.135,0.62,0,0,0,0,0,16.8,0,0,0,0,0.296,73.82000000000001,103.63,0.9500000000000001,0.22,884,3.3000000000000003,181,2.6,0.0000,0.0000 +2012,7,5,11,30,21.6,1.58,0.129,0.62,0,0,0,0,0,16.8,0,0,0,0,0.296,74.33,93.52,0.9500000000000001,0.22,885,3.2,180,3.1,0.0000,0.0000 +2012,7,5,12,30,22.900000000000002,1.59,0.122,0.62,41,335,86,0,0,16.8,41,335,0,86,0.296,68.5,82.32000000000001,0.9500000000000001,0.22,885,3.1,185,4.2,0.0000,0.0000 +2012,7,5,13,30,25.3,1.61,0.115,0.62,73,612,276,0,0,16.2,73,612,0,276,0.297,57.02,70.63,0.9400000000000001,0.22,885,3,190,4.800000000000001,14.0596,10.8800 +2012,7,5,14,30,27.900000000000002,1.62,0.108,0.62,91,753,484,0,0,15.4,91,753,0,484,0.297,46.480000000000004,58.49,0.9400000000000001,0.22,885,2.9000000000000004,189,4.7,26.9243,21.0464 +2012,7,5,15,30,30.200000000000003,1.6300000000000001,0.10200000000000001,0.62,102,834,679,0,0,14.9,102,834,0,679,0.297,39.480000000000004,46.13,0.9400000000000001,0.22,885,2.8000000000000003,182,4.6000000000000005,39.6320,31.1100 +2012,7,5,16,30,32.2,1.6300000000000001,0.097,0.62,109,883,842,0,0,14.3,109,883,0,842,0.297,33.85,33.8,0.9400000000000001,0.22,885,2.7,175,4.800000000000001,50.3875,39.6321 +2012,7,5,17,30,33.800000000000004,1.6300000000000001,0.092,0.62,112,911,956,0,0,13.4,112,911,0,956,0.297,29.2,21.990000000000002,0.9400000000000001,0.22,885,2.7,171,5.300000000000001,58.0592,45.7119 +2012,7,5,18,30,34.7,1.61,0.098,0.62,117,917,1012,0,0,12.5,117,917,0,1012,0.298,26.21,12.82,0.9400000000000001,0.22,884,2.7,170,5.800000000000001,61.9172,48.7696 +2012,7,5,19,30,35,1.59,0.097,0.62,117,915,1006,0,0,11.9,117,915,0,1006,0.299,24.810000000000002,13.76,0.9500000000000001,0.22,884,2.8000000000000003,172,6.300000000000001,61.4516,48.4013 +2012,7,5,20,30,34.7,1.56,0.096,0.62,114,903,941,0,1,11.600000000000001,114,903,0,941,0.3,24.71,23.63,0.9500000000000001,0.22,884,2.8000000000000003,174,6.5,56.7954,44.7121 +2012,7,5,21,30,34,1.52,0.093,0.62,106,876,819,0,0,11.4,106,876,0,819,0.301,25.36,35.57,0.9500000000000001,0.22,884,2.9000000000000004,175,6.7,48.2945,37.9775 +2012,7,5,22,30,33,1.5,0.089,0.62,96,834,654,0,0,11.200000000000001,96,834,0,654,0.301,26.35,47.94,0.9500000000000001,0.22,884,2.9000000000000004,176,6.6000000000000005,24.7893,19.4502 +2012,7,5,23,30,31.700000000000003,1.5,0.083,0.62,80,763,458,0,0,10.9,80,763,0,458,0.302,27.84,60.28,0.9500000000000001,0.22,884,2.9000000000000004,177,6.300000000000001,17.1185,13.3681 +2012,7,6,0,30,30.1,1.5,0.078,0.62,61,633,252,0,1,10.700000000000001,61,633,0,252,0.303,30.1,72.38,0.9500000000000001,0.22,884,2.8000000000000003,178,5.6000000000000005,11.7226,9.0484 +2012,7,6,1,30,28.200000000000003,1.51,0.07200000000000001,0.62,30,346,66,0,1,10.8,30,346,0,66,0.304,33.87,83.98,0.9500000000000001,0.22,885,2.8000000000000003,177,4.4,0.0000,0.0000 +2012,7,6,2,30,26.5,1.52,0.068,0.62,0,0,0,0,0,11.200000000000001,0,0,0,0,0.305,38.53,95.09,0.9400000000000001,0.22,885,2.8000000000000003,178,3.5,0.0000,0.0000 +2012,7,6,3,30,25.1,1.53,0.066,0.62,0,0,0,0,0,11.700000000000001,0,0,0,0,0.305,43.160000000000004,105.03,0.9400000000000001,0.22,886,2.7,180,3.2,0.0000,0.0000 +2012,7,6,4,30,24,1.55,0.065,0.62,0,0,0,0,0,12.100000000000001,0,0,0,0,0.305,47.43,113.43,0.9400000000000001,0.22,886,2.7,185,2.8000000000000003,0.0000,0.0000 +2012,7,6,5,30,22.900000000000002,1.58,0.064,0.62,0,0,0,0,0,12.4,0,0,0,0,0.305,51.7,119.61,0.9400000000000001,0.22,886,2.7,192,2.4000000000000004,0.0000,0.0000 +2012,7,6,6,30,21.900000000000002,1.61,0.064,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.304,55.64,122.83,0.9400000000000001,0.22,887,2.7,199,1.9000000000000001,0.0000,0.0000 +2012,7,6,7,30,21,1.6300000000000001,0.064,0.62,0,0,0,0,0,12.700000000000001,0,0,0,0,0.303,59.09,122.58,0.9400000000000001,0.22,887,2.7,207,1.5,0.0000,0.0000 +2012,7,6,8,30,20.3,1.6500000000000001,0.065,0.62,0,0,0,0,0,12.8,0,0,0,0,0.302,61.88,118.91,0.9400000000000001,0.22,887,2.7,213,1.2000000000000002,0.0000,0.0000 +2012,7,6,9,30,19.6,1.67,0.068,0.62,0,0,0,0,0,12.8,0,0,0,0,0.301,64.69,112.38,0.9500000000000001,0.22,887,2.7,212,1,0.0000,0.0000 +2012,7,6,10,30,19.200000000000003,1.67,0.07100000000000001,0.62,0,0,0,0,0,12.8,0,0,0,0,0.301,66.3,103.73,0.9500000000000001,0.22,887,2.8000000000000003,202,0.9,0.0000,0.0000 +2012,7,6,11,30,19.8,1.67,0.073,0.62,0,0,0,0,0,12.8,0,0,0,0,0.301,63.940000000000005,93.61,0.9500000000000001,0.22,887,2.8000000000000003,188,1.4000000000000001,0.0000,0.0000 +2012,7,6,12,30,22.1,1.67,0.074,0.62,35,403,89,0,0,12.8,35,403,0,89,0.3,55.76,82.41,0.9500000000000001,0.22,888,2.9000000000000004,182,2.5,0.0000,0.0000 +2012,7,6,13,30,25.1,1.67,0.075,0.62,63,661,281,0,0,12.8,63,661,0,281,0.3,46.43,70.72,0.9500000000000001,0.22,888,2.9000000000000004,186,3.9000000000000004,14.0494,10.8709 +2012,7,6,14,30,28,1.67,0.075,0.62,79,785,489,0,0,12.600000000000001,79,785,0,489,0.3,38.68,58.57,0.9500000000000001,0.22,888,2.9000000000000004,187,4.9,26.9125,21.0364 +2012,7,6,15,30,30.1,1.67,0.076,0.62,91,852,680,0,0,12.8,91,852,0,680,0.3,34.56,46.21,0.9500000000000001,0.22,888,3,184,5.2,39.7406,31.1947 +2012,7,6,16,30,31.700000000000003,1.67,0.076,0.62,99,893,840,0,0,12.700000000000001,99,893,0,840,0.3,31.46,33.88,0.9500000000000001,0.22,887,3,179,5.2,50.7419,39.9105 +2012,7,6,17,30,33,1.67,0.077,0.62,105,915,953,0,0,12.4,105,915,0,953,0.299,28.59,22.09,0.9500000000000001,0.22,887,3,175,5.300000000000001,58.5445,46.0938 +2012,7,6,18,30,33.9,1.67,0.081,0.62,109,921,1007,0,0,12,109,921,0,1007,0.299,26.41,12.93,0.9500000000000001,0.22,887,3.1,173,5.4,62.4069,49.1551 +2012,7,6,19,30,34.4,1.6600000000000001,0.085,0.62,111,918,1002,0,0,11.600000000000001,111,918,0,1002,0.299,25.12,13.83,0.9500000000000001,0.22,886,3.1,173,5.5,62.0042,48.8364 +2012,7,6,20,30,34.5,1.6300000000000001,0.094,0.62,112,897,934,0,0,11.5,112,897,0,934,0.299,24.71,23.66,0.9500000000000001,0.22,886,3.2,172,5.4,57.5278,45.2886 +2012,7,6,21,30,34.1,1.59,0.10300000000000001,0.62,111,864,813,0,0,11.3,111,864,0,813,0.3,25,35.59,0.96,0.22,885,3.2,169,5.300000000000001,49.1946,38.6853 +2012,7,6,22,30,33.4,1.58,0.11,0.62,104,810,647,0,1,11.100000000000001,104,810,0,647,0.3,25.740000000000002,47.95,0.96,0.22,885,3.2,167,5.1000000000000005,38.0556,29.8592 +2012,7,6,23,30,32.300000000000004,1.57,0.114,0.62,91,727,451,0,3,11.100000000000001,274,101,0,324,0.301,27.240000000000002,60.300000000000004,0.96,0.22,885,3.1,166,4.800000000000001,25.2084,19.6855 +2012,7,7,0,30,31,1.58,0.114,0.62,69,582,245,0,0,11,69,582,0,245,0.301,29.19,72.4,0.96,0.22,886,3.1,164,4,12.6220,9.7423 +2012,7,7,1,30,29.200000000000003,1.59,0.112,0.62,33,287,63,0,1,11.100000000000001,33,287,0,63,0.301,32.57,84.01,0.9500000000000001,0.22,886,3,162,2.9000000000000004,0.0000,0.0000 +2012,7,7,2,30,27.6,1.6,0.111,0.62,0,0,0,0,0,11.4,0,0,0,0,0.301,36.550000000000004,95.13,0.9500000000000001,0.22,887,2.9000000000000004,162,2.5,0.0000,0.0000 +2012,7,7,3,30,26.700000000000003,1.61,0.11,0.62,0,0,0,0,0,11.4,0,0,0,0,0.301,38.480000000000004,105.08,0.9500000000000001,0.22,887,2.8000000000000003,165,2.7,0.0000,0.0000 +2012,7,7,4,30,25.900000000000002,1.6,0.11,0.62,0,0,0,0,0,11.5,0,0,0,0,0.3,40.62,113.5,0.9500000000000001,0.22,888,2.7,172,2.9000000000000004,0.0000,0.0000 +2012,7,7,5,30,25,1.58,0.11,0.62,0,0,0,0,0,11.700000000000001,0,0,0,0,0.299,43.32,119.69,0.9500000000000001,0.22,888,2.7,180,2.9000000000000004,0.0000,0.0000 +2012,7,7,6,30,24.1,1.56,0.111,0.62,0,0,0,0,0,11.9,0,0,0,0,0.298,46.300000000000004,122.93,0.9500000000000001,0.22,888,2.6,188,2.7,0.0000,0.0000 +2012,7,7,7,30,23.3,1.53,0.111,0.62,0,0,0,0,0,12.100000000000001,0,0,0,0,0.297,49.26,122.69,0.96,0.22,888,2.6,195,2.4000000000000004,0.0000,0.0000 +2012,7,7,8,30,22.6,1.5,0.112,0.62,0,0,0,0,0,12.3,0,0,0,0,0.296,52.07,119.02,0.96,0.22,888,2.6,203,2.1,0.0000,0.0000 +2012,7,7,9,30,21.900000000000002,1.47,0.113,0.62,0,0,0,0,0,12.4,0,0,0,0,0.294,54.870000000000005,112.49000000000001,0.96,0.22,889,2.6,211,1.8,0.0000,0.0000 +2012,7,7,10,30,21.200000000000003,1.45,0.111,0.62,0,0,0,0,0,12.5,0,0,0,0,0.293,57.47,103.83,0.96,0.22,889,2.6,219,1.5,0.0000,0.0000 +2012,7,7,11,30,21.8,1.44,0.107,0.62,0,0,0,0,0,12.5,0,0,0,0,0.292,55.45,93.71000000000001,0.96,0.22,889,2.6,228,1.9000000000000001,0.0000,0.0000 +2012,7,7,12,30,24.1,1.43,0.10300000000000001,0.62,39,356,86,0,0,12.5,39,356,0,86,0.292,48.29,82.5,0.96,0.22,890,2.6,232,2.5,0.0000,0.0000 +2012,7,7,13,30,27.200000000000003,1.42,0.098,0.62,70,634,278,0,0,12.4,70,634,0,278,0.291,39.87,70.8,0.9500000000000001,0.22,890,2.6,226,2.6,14.2921,11.0575 +2012,7,7,14,30,29.8,1.43,0.093,0.62,87,770,487,0,0,12.5,87,770,0,487,0.291,34.57,58.65,0.9500000000000001,0.22,890,2.6,203,2.1,27.1786,21.2436 +2012,7,7,15,30,31.700000000000003,1.44,0.091,0.62,99,847,684,0,0,12.4,99,847,0,684,0.293,30.7,46.29,0.9500000000000001,0.22,890,2.5,168,1.8,39.7893,31.2323 +2012,7,7,16,30,33.300000000000004,1.45,0.091,0.62,107,890,845,0,0,11.8,107,890,0,845,0.294,27.04,33.96,0.9500000000000001,0.22,890,2.5,142,2,50.6142,39.8097 +2012,7,7,17,30,34.7,1.47,0.093,0.62,114,911,957,0,0,11.100000000000001,114,911,0,957,0.295,23.900000000000002,22.18,0.9500000000000001,0.22,889,2.6,131,2.3000000000000003,58.3550,45.9443 +2012,7,7,18,30,35.7,1.5,0.10300000000000001,0.62,121,915,1013,0,3,10.5,494,59,0,552,0.296,21.73,13.040000000000001,0.9500000000000001,0.22,888,2.6,127,2.4000000000000004,62.0949,48.9092 +2012,7,7,19,30,36.300000000000004,1.5,0.11,0.62,125,909,1007,7,2,10,285,697,7,962,0.297,20.330000000000002,13.9,0.9500000000000001,0.22,888,2.6,124,2.5,61.7551,48.6401 +2012,7,7,20,30,36.5,1.49,0.12,0.62,126,887,939,0,0,9.5,126,887,0,939,0.298,19.47,23.69,0.96,0.22,887,2.7,121,2.6,57.0980,44.9502 +2012,7,7,21,30,36.1,1.47,0.128,0.62,123,853,816,0,0,9.1,123,853,0,816,0.298,19.36,35.61,0.96,0.22,887,2.7,118,2.8000000000000003,48.8323,38.4003 +2012,7,7,22,30,35.2,1.47,0.135,0.62,115,795,647,0,3,8.9,378,163,0,487,0.299,20.05,47.97,0.96,0.22,886,2.8000000000000003,117,3,37.6470,29.5385 +2012,7,7,23,30,34,1.48,0.136,0.62,99,710,451,0,1,9,99,710,0,451,0.299,21.61,60.32,0.96,0.22,886,2.8000000000000003,116,3,17.8309,13.9241 +2012,7,8,0,30,32.5,1.48,0.135,0.62,75,559,243,0,0,9.3,75,559,0,243,0.3,24.03,72.43,0.96,0.22,887,2.9000000000000004,117,2.3000000000000003,12.2691,9.4696 +2012,7,8,1,30,30.6,1.48,0.135,0.62,35,256,61,0,3,10.5,51,25,0,54,0.301,28.97,84.05,0.96,0.22,887,2.9000000000000004,122,1.5,0.0000,0.0000 +2012,7,8,2,30,29.3,1.48,0.136,0.62,0,0,0,0,0,11.5,0,0,0,0,0.301,33.21,95.17,0.96,0.22,888,3,128,1.3,0.0000,0.0000 +2012,7,8,3,30,28.700000000000003,1.47,0.139,0.62,0,0,0,0,3,11.5,0,0,0,0,0.302,34.53,105.14,0.96,0.22,888,3.1,135,1.6,0.0000,0.0000 +2012,7,8,4,30,28.1,1.46,0.14,0.62,0,0,0,0,3,11.600000000000001,0,0,0,0,0.302,35.980000000000004,113.57000000000001,0.96,0.22,888,3.1,142,1.9000000000000001,0.0000,0.0000 +2012,7,8,5,30,27.400000000000002,1.46,0.137,0.62,0,0,0,0,3,11.700000000000001,0,0,0,0,0.301,37.7,119.79,0.9500000000000001,0.22,888,3.1,150,2,0.0000,0.0000 +2012,7,8,6,30,26.700000000000003,1.47,0.134,0.62,0,0,0,0,4,11.8,0,0,0,0,0.301,39.44,123.04,0.9500000000000001,0.22,888,3.1,159,2,0.0000,0.0000 +2012,7,8,7,30,26,1.47,0.132,0.62,0,0,0,0,4,11.9,0,0,0,0,0.3,41.32,122.81,0.9500000000000001,0.22,888,3.1,170,1.8,0.0000,0.0000 +2012,7,8,8,30,25.3,1.49,0.129,0.62,0,0,0,0,0,11.9,0,0,0,0,0.3,43.25,119.14,0.9500000000000001,0.22,888,3.1,184,1.4000000000000001,0.0000,0.0000 +2012,7,8,9,30,24.6,1.5,0.126,0.62,0,0,0,0,3,11.9,0,0,0,0,0.299,45.07,112.60000000000001,0.9500000000000001,0.22,888,3.1,204,1.1,0.0000,0.0000 +2012,7,8,10,30,24.1,1.53,0.122,0.62,0,0,0,0,3,11.8,0,0,0,0,0.299,46.2,103.94,0.9500000000000001,0.22,888,3.1,226,1,0.0000,0.0000 +2012,7,8,11,30,24.400000000000002,1.55,0.11900000000000001,0.62,0,0,0,0,0,11.700000000000001,0,0,0,0,0.299,45.08,93.81,0.9500000000000001,0.22,888,3.1,247,1.3,0.0000,0.0000 +2012,7,8,12,30,26.3,1.57,0.117,0.62,39,332,82,0,0,11.600000000000001,39,332,0,82,0.299,40,82.59,0.9500000000000001,0.22,888,3,261,1.8,0.0000,0.0000 +2012,7,8,13,30,29.400000000000002,1.59,0.116,0.62,73,606,271,0,0,11.5,73,606,0,271,0.299,33.02,70.89,0.9500000000000001,0.22,888,3,283,1.4000000000000001,14.1292,10.9303 +2012,7,8,14,30,32.300000000000004,1.6,0.117,0.62,94,739,478,0,0,11.200000000000001,94,739,0,478,0.299,27.51,58.74,0.9500000000000001,0.22,888,3,178,1,27.0556,21.1466 +2012,7,8,15,30,34.1,1.58,0.126,0.62,112,806,668,7,3,10.9,300,471,7,625,0.299,24.3,46.38,0.96,0.22,888,3.1,68,1.4000000000000001,40.0134,31.4077 +2012,7,8,16,30,34.9,1.54,0.147,0.62,132,837,825,0,0,10.600000000000001,132,837,0,825,0.299,22.830000000000002,34.05,0.96,0.22,888,3.1,83,1.8,50.9082,40.0406 +2012,7,8,17,30,35.1,1.52,0.161,0.62,145,853,935,0,3,10.4,459,39,0,494,0.299,22.35,22.28,0.96,0.22,888,3.2,86,1.9000000000000001,58.5946,46.1328 +2012,7,8,18,30,35.1,1.52,0.163,0.62,150,864,992,0,4,10.5,330,1,0,331,0.299,22.400000000000002,13.16,0.97,0.22,887,3.2,85,1.9000000000000001,34.0360,26.8085 +2012,7,8,19,30,35.1,1.51,0.163,0.62,150,862,986,0,8,10.700000000000001,450,143,0,588,0.299,22.7,13.99,0.97,0.22,887,3.3000000000000003,83,2,59.2874,46.6964 +2012,7,8,20,30,34.800000000000004,1.51,0.164,0.62,146,845,920,0,7,11,425,300,0,700,0.3,23.580000000000002,23.73,0.97,0.22,887,3.4000000000000004,82,2.2,57.4017,45.1893 +2012,7,8,21,30,34.2,1.5,0.162,0.62,137,814,799,7,2,11.4,348,499,7,754,0.3,25.02,35.63,0.97,0.22,886,3.5,84,2.3000000000000003,49.0106,38.5404 +2012,7,8,22,30,33.300000000000004,1.49,0.158,0.62,123,765,635,0,8,11.8,202,615,0,614,0.3,26.96,47.99,0.97,0.22,886,3.5,88,2.4000000000000004,28.3352,22.2322 +2012,7,8,23,30,32.1,1.48,0.152,0.62,104,681,441,0,0,12.200000000000001,104,681,0,441,0.3,29.64,60.34,0.97,0.22,886,3.6,92,2.4000000000000004,24.8172,19.3795 +2012,7,9,0,30,30.5,1.46,0.153,0.62,78,525,236,0,0,12.8,78,525,0,236,0.3,33.75,72.46000000000001,0.97,0.22,887,3.7,90,2.1,12.1655,9.3893 +2012,7,9,1,30,28.5,1.45,0.149,0.62,35,227,58,0,8,14,27,1,0,27,0.3,40.95,84.08,0.97,0.22,888,3.9000000000000004,70,2.1,0.0000,0.0000 +2012,7,9,2,30,26.6,1.44,0.14400000000000002,0.62,0,0,0,0,4,14.9,0,0,0,0,0.3,48.730000000000004,95.22,0.97,0.22,888,4,42,2.8000000000000003,0.0000,0.0000 +2012,7,9,3,30,24.8,1.42,0.148,0.62,0,0,0,0,4,15.8,0,0,0,0,0.299,57.53,105.21000000000001,0.97,0.22,889,4.2,29,3.6,0.0000,0.0000 +2012,7,9,4,30,23.1,1.43,0.153,0.62,0,0,0,0,0,16.7,0,0,0,0,0.299,67.42,113.66,0.97,0.22,889,4.3,25,4.2,0.0000,0.0000 +2012,7,9,5,30,22,1.44,0.168,0.62,0,0,0,0,0,17.400000000000002,0,0,0,0,0.298,75.36,119.89,0.97,0.22,889,4.4,24,4.5,0.0000,0.0000 +2012,7,9,6,30,21.3,1.47,0.186,0.62,0,0,0,0,3,17.900000000000002,0,0,0,0,0.298,80.81,123.15,0.98,0.22,889,4.4,28,4.4,0.0000,0.0000 +2012,7,9,7,30,20.900000000000002,1.5,0.19,0.62,0,0,0,0,4,18.2,0,0,0,0,0.298,84.35000000000001,122.93,0.97,0.22,889,4.4,34,4.2,0.0000,0.0000 +2012,7,9,8,30,20.700000000000003,1.51,0.194,0.62,0,0,0,0,4,18.3,0,0,0,0,0.298,86.18,119.26,0.97,0.22,889,4.4,39,3.8000000000000003,0.0000,0.0000 +2012,7,9,9,30,20.5,1.51,0.199,0.62,0,0,0,0,4,18.3,0,0,0,0,0.298,87.42,112.72,0.97,0.22,889,4.4,41,3.4000000000000004,0.0000,0.0000 +2012,7,9,10,30,20.3,1.5,0.21,0.62,0,0,0,0,4,18.2,0,0,0,0,0.298,87.78,104.05,0.97,0.22,889,4.4,36,3.1,0.0000,0.0000 +2012,7,9,11,30,20.200000000000003,1.49,0.223,0.62,0,0,0,0,4,18.1,0,0,0,0,0.298,87.56,93.91,0.97,0.22,889,4.4,27,3.1,0.0000,0.0000 +2012,7,9,12,30,20.400000000000002,1.48,0.234,0.62,46,202,72,7,4,18,18,0,7,18,0.298,85.87,82.69,0.97,0.22,889,4.4,20,3.1,0.0000,0.0000 +2012,7,9,13,30,21,1.49,0.23700000000000002,0.62,99,464,250,0,4,17.8,11,0,0,11,0.299,81.93,70.98,0.98,0.22,890,4.4,20,3,13.7621,10.6450 +2012,7,9,14,30,22.400000000000002,1.51,0.23,0.62,129,622,451,0,4,17.6,59,0,0,59,0.3,74.11,58.82,0.98,0.22,889,4.3,27,2.6,26.5424,20.7445 +2012,7,9,15,30,24.3,1.52,0.219,0.62,147,718,641,0,4,17.3,52,0,0,52,0.3,65.03,46.46,0.98,0.22,889,4.3,42,2.1,36.5517,28.6899 +2012,7,9,16,30,25.8,1.5,0.226,0.62,164,767,799,0,4,17,203,0,0,203,0.3,58.42,34.14,0.98,0.22,889,4.2,61,1.6,49.6952,39.0862 +2012,7,9,17,30,26.6,1.48,0.24,0.62,179,789,909,0,4,16.7,200,0,0,201,0.3,54.63,22.38,0.98,0.22,889,4.2,74,1.3,30.2433,23.8110 +2012,7,9,18,30,26.900000000000002,1.47,0.244,0.62,186,801,965,0,4,16.400000000000002,460,18,0,478,0.299,52.69,13.290000000000001,0.98,0.22,888,4.2,75,1.1,20.4079,16.0743 +2012,7,9,19,30,26.6,1.47,0.245,0.62,186,799,961,7,3,16.2,524,300,7,815,0.298,53.02,14.08,0.98,0.22,888,4.2,68,0.9,36.2361,28.5405 +2012,7,9,20,30,26.1,1.49,0.234,0.62,176,789,898,0,0,16.400000000000002,176,789,0,898,0.297,55.26,23.77,0.98,0.22,888,4.3,61,1,42.7896,33.6859 +2012,7,9,21,30,25.8,1.53,0.231,0.62,164,758,780,0,0,16.7,164,758,0,780,0.297,57.24,35.660000000000004,0.98,0.22,888,4.3,64,1.2000000000000002,45.2850,35.6106 +2012,7,9,22,30,25.5,1.57,0.199,0.62,137,726,623,0,0,17,137,726,0,623,0.296,59.31,48.01,0.98,0.22,888,4.2,71,1.5,35.7220,28.0279 +2012,7,9,23,30,24.900000000000002,1.59,0.17200000000000001,0.62,109,658,434,0,1,17.3,109,658,0,434,0.296,62.81,60.370000000000005,0.97,0.22,888,4.2,78,1.7000000000000002,24.2640,18.9474 +2012,7,10,0,30,24.1,1.62,0.151,0.62,77,525,235,0,4,17.900000000000002,164,64,0,183,0.296,68.53,72.49,0.97,0.22,888,4.2,83,1.6,11.8118,9.1158 +2012,7,10,1,30,23.200000000000003,1.6400000000000001,0.14400000000000002,0.62,34,237,58,0,7,18.6,34,195,0,54,0.296,75.29,84.12,0.97,0.22,888,4.2,81,1.4000000000000001,0.0000,0.0000 +2012,7,10,2,30,22.700000000000003,1.6500000000000001,0.14300000000000002,0.62,0,0,0,0,4,18.6,0,0,0,0,0.296,77.60000000000001,95.28,0.97,0.22,888,4.2,71,1.5,0.0000,0.0000 +2012,7,10,3,30,22.3,1.6500000000000001,0.145,0.62,0,0,0,0,4,18.6,0,0,0,0,0.296,79.60000000000001,105.28,0.97,0.22,889,4.2,59,1.8,0.0000,0.0000 +2012,7,10,4,30,21.900000000000002,1.6400000000000001,0.147,0.62,0,0,0,0,4,18.7,0,0,0,0,0.295,82.03,113.74000000000001,0.97,0.22,889,4.3,49,2.2,0.0000,0.0000 +2012,7,10,5,30,21.6,1.6400000000000001,0.14400000000000002,0.62,0,0,0,0,4,18.7,0,0,0,0,0.295,83.84,119.99000000000001,0.96,0.22,889,4.3,42,2.5,0.0000,0.0000 +2012,7,10,6,30,21.200000000000003,1.6500000000000001,0.138,0.62,0,0,0,0,1,18.7,0,0,0,0,0.294,85.76,123.27,0.96,0.22,888,4.3,37,2.6,0.0000,0.0000 +2012,7,10,7,30,20.700000000000003,1.67,0.133,0.62,0,0,0,0,4,18.7,0,0,0,0,0.294,88.36,123.06,0.96,0.22,888,4.2,34,2.4000000000000004,0.0000,0.0000 +2012,7,10,8,30,20.3,1.69,0.138,0.62,0,0,0,0,4,18.8,0,0,0,0,0.294,90.86,119.39,0.96,0.22,888,4.2,30,2.1,0.0000,0.0000 +2012,7,10,9,30,20,1.68,0.165,0.62,0,0,0,0,4,18.8,0,0,0,0,0.294,92.95,112.84,0.96,0.22,888,4.2,24,1.9000000000000001,0.0000,0.0000 +2012,7,10,10,30,19.8,1.6600000000000001,0.20800000000000002,0.62,0,0,0,0,7,18.900000000000002,0,0,0,0,0.294,94.59,104.16,0.97,0.22,888,4.2,21,1.8,0.0000,0.0000 +2012,7,10,11,30,19.900000000000002,1.6300000000000001,0.256,0.62,0,0,0,0,7,18.900000000000002,0,0,0,0,0.294,94.25,94.02,0.97,0.22,888,4.2,27,2,0.0000,0.0000 +2012,7,10,12,30,20.6,1.61,0.301,0.62,48,171,69,7,7,19,38,1,7,38,0.294,90.60000000000001,82.78,0.97,0.22,888,4.2,41,2.5,0.0000,0.0000 +2012,7,10,13,30,21.5,1.6,0.332,0.62,114,400,243,7,7,18.900000000000002,74,2,7,75,0.294,85.34,71.07000000000001,0.98,0.22,888,4.2,56,3.1,0.5582,0.4317 +2012,7,10,14,30,22.200000000000003,1.6,0.355,0.62,161,537,438,0,3,18.6,76,0,0,76,0.294,80.27,58.910000000000004,0.98,0.22,888,4.3,64,3.7,3.2747,2.5593 +2012,7,10,15,30,22.700000000000003,1.61,0.359,0.62,192,630,625,0,4,18.400000000000002,144,0,0,144,0.294,76.49,46.550000000000004,0.98,0.22,889,4.3,67,4.2,3.0403,2.3864 +2012,7,10,16,30,23.1,1.62,0.342,0.62,206,700,785,0,4,18.1,117,0,0,117,0.293,73.47,34.230000000000004,0.97,0.22,889,4.2,66,4.7,12.2261,9.6159 +2012,7,10,17,30,23.400000000000002,1.6300000000000001,0.301,0.62,202,756,901,0,3,17.7,303,1,0,304,0.293,70.24,22.48,0.97,0.22,889,4.2,63,4.9,12.3042,9.6873 +2012,7,10,18,30,24,1.6500000000000001,0.256,0.62,189,798,965,0,4,17.2,358,1,0,360,0.293,65.69,13.42,0.97,0.22,889,4.1000000000000005,58,5,29.4691,23.2112 +2012,7,10,19,30,24.6,1.69,0.202,0.62,165,831,971,0,4,16.7,159,0,0,159,0.293,61.370000000000005,14.17,0.96,0.22,888,3.9000000000000004,55,4.9,50.2225,39.5564 +2012,7,10,20,30,25.400000000000002,1.73,0.161,0.62,143,843,914,0,4,16.3,456,65,0,516,0.293,57.21,23.82,0.96,0.22,888,3.8000000000000003,54,4.800000000000001,54.8906,43.2121 +2012,7,10,21,30,25.900000000000002,1.76,0.138,0.62,125,830,799,0,7,16.1,250,563,0,707,0.293,54.67,35.7,0.96,0.22,887,3.8000000000000003,57,4.800000000000001,46.8438,36.8363 +2012,7,10,22,30,25.900000000000002,1.78,0.133,0.62,112,785,637,0,7,15.9,294,288,0,487,0.292,54.14,48.04,0.96,0.22,887,3.7,62,4.6000000000000005,36.2432,28.4366 +2012,7,10,23,30,25.200000000000003,1.77,0.14200000000000002,0.62,99,693,441,0,6,15.9,197,25,0,209,0.292,56.22,60.4,0.96,0.22,887,3.7,68,4.4,23.8746,18.6430 +2012,7,11,0,30,24,1.75,0.156,0.62,77,528,236,0,7,16,127,25,0,134,0.293,60.83,72.53,0.96,0.23,888,3.7,73,3.8000000000000003,9.1566,7.0663 +2012,7,11,1,30,22.6,1.74,0.166,0.62,35,224,58,0,3,16.3,50,34,0,53,0.293,67.44,84.17,0.96,0.23,888,3.7,77,2.9000000000000004,0.0000,0.0000 +2012,7,11,2,30,21.5,1.74,0.166,0.62,0,0,0,0,7,16.5,0,0,0,0,0.294,73.41,95.34,0.96,0.23,889,3.7,77,2.1,0.0000,0.0000 +2012,7,11,3,30,20.700000000000003,1.75,0.158,0.62,0,0,0,0,8,16.7,0,0,0,0,0.295,77.64,105.36,0.96,0.23,889,3.6,74,1.7000000000000002,0.0000,0.0000 +2012,7,11,4,30,19.900000000000002,1.76,0.147,0.62,0,0,0,0,7,16.8,0,0,0,0,0.296,82.22,113.84,0.96,0.23,889,3.5,68,1.4000000000000001,0.0000,0.0000 +2012,7,11,5,30,19.3,1.77,0.136,0.62,0,0,0,0,1,16.900000000000002,0,0,0,0,0.297,86.02,120.11,0.9500000000000001,0.23,889,3.5,59,1.1,0.0000,0.0000 +2012,7,11,6,30,18.7,1.79,0.127,0.62,0,0,0,0,1,17,0,0,0,0,0.297,89.79,123.4,0.9500000000000001,0.23,889,3.4000000000000004,46,1,0.0000,0.0000 +2012,7,11,7,30,18.2,1.79,0.122,0.62,0,0,0,0,0,17,0,0,0,0,0.297,92.76,123.2,0.9500000000000001,0.23,889,3.3000000000000003,34,1.1,0.0000,0.0000 +2012,7,11,8,30,17.8,1.8,0.12,0.62,0,0,0,0,0,17,0,0,0,0,0.297,94.8,119.53,0.9500000000000001,0.23,889,3.3000000000000003,22,1.2000000000000002,0.0000,0.0000 +2012,7,11,9,30,17.5,1.8,0.117,0.62,0,0,0,0,4,16.8,0,0,0,0,0.297,95.84,112.97,0.9500000000000001,0.23,889,3.2,13,1.4000000000000001,0.0000,0.0000 +2012,7,11,10,30,17.400000000000002,1.81,0.114,0.62,0,0,0,0,4,16.6,0,0,0,0,0.296,95.28,104.28,0.9500000000000001,0.23,889,3.1,7,1.8,0.0000,0.0000 +2012,7,11,11,30,18.1,1.8,0.112,0.62,0,0,0,0,0,16.400000000000002,0,0,0,0,0.296,89.73,94.12,0.9500000000000001,0.23,889,3,7,2.5,0.0000,0.0000 +2012,7,11,12,30,20.3,1.8,0.111,0.62,37,338,79,0,0,16.1,37,338,0,79,0.296,76.87,82.88,0.9500000000000001,0.23,889,3,18,3.2,0.0000,0.0000 +2012,7,11,13,30,23.3,1.79,0.107,0.62,70,617,269,0,0,15.3,70,617,0,269,0.296,60.88,71.17,0.9500000000000001,0.23,889,2.9000000000000004,38,3.5,3.8024,2.9405 +2012,7,11,14,30,25.8,1.79,0.1,0.62,88,760,479,0,0,14.3,88,760,0,479,0.296,49.01,59,0.9500000000000001,0.23,889,2.8000000000000003,55,3.7,4.2162,3.2949 +2012,7,11,15,30,27.6,1.78,0.096,0.62,99,837,674,0,0,13.8,99,837,0,674,0.296,42.62,46.64,0.9500000000000001,0.23,889,2.8000000000000003,64,3.7,8.4170,6.6064 +2012,7,11,16,30,29,1.75,0.098,0.62,110,879,835,0,1,13.5,110,879,0,835,0.297,38.53,34.32,0.9500000000000001,0.23,889,2.8000000000000003,68,3.6,7.0454,5.5412 +2012,7,11,17,30,30.1,1.72,0.10200000000000001,0.62,118,903,951,0,1,13.3,118,903,0,951,0.297,35.67,22.59,0.96,0.23,889,2.7,72,3.4000000000000004,18.6075,14.6498 +2012,7,11,18,30,31,1.58,0.125,0.62,132,898,1006,7,3,13.100000000000001,541,256,7,790,0.297,33.58,13.56,0.96,0.23,888,2.7,75,3.2,22.1927,17.4799 +2012,7,11,19,30,31.5,1.57,0.124,0.62,132,898,1002,0,0,12.9,132,898,0,1002,0.297,32.28,14.280000000000001,0.96,0.23,887,2.7,79,3.1,9.7975,7.7167 +2012,7,11,20,30,31.8,1.57,0.122,0.62,127,886,938,0,0,12.8,127,886,0,938,0.297,31.35,23.88,0.96,0.23,887,2.7,83,3.1,31.5390,24.8287 +2012,7,11,21,30,31.700000000000003,1.59,0.11800000000000001,0.62,118,861,817,0,1,12.5,118,861,0,817,0.297,30.91,35.730000000000004,0.96,0.23,886,2.7,87,3.1,42.4565,33.3860 +2012,7,11,22,30,31.200000000000003,1.58,0.12,0.62,109,813,652,0,0,12,109,813,0,652,0.297,30.93,48.08,0.96,0.23,886,2.6,91,3.2,28.3285,22.2266 +2012,7,11,23,30,30.200000000000003,1.58,0.125,0.62,95,726,453,0,0,11.700000000000001,95,726,0,453,0.297,32.11,60.44,0.96,0.23,886,2.6,96,3.2,11.4951,8.9761 +2012,7,12,0,30,28.5,1.56,0.13,0.62,73,570,244,0,8,11.600000000000001,125,343,0,228,0.298,35.15,72.57000000000001,0.96,0.21,886,2.6,104,2.6,6.7023,5.1720 +2012,7,12,1,30,26.200000000000003,1.55,0.135,0.62,34,257,60,0,0,12.600000000000001,34,257,0,60,0.298,43.01,84.23,0.96,0.21,887,2.6,114,1.9000000000000001,0.0000,0.0000 +2012,7,12,2,30,24.8,1.53,0.138,0.62,0,0,0,0,0,12.9,0,0,0,0,0.298,47.62,95.41,0.96,0.21,887,2.6,124,1.9000000000000001,0.0000,0.0000 +2012,7,12,3,30,24.1,1.51,0.14100000000000001,0.62,0,0,0,0,0,12.700000000000001,0,0,0,0,0.298,48.980000000000004,105.44,0.96,0.21,888,2.6,133,2.1,0.0000,0.0000 +2012,7,12,4,30,23.3,1.48,0.145,0.62,0,0,0,0,4,12.700000000000001,0,0,0,0,0.298,51.46,113.94,0.96,0.21,888,2.6,142,2.1,0.0000,0.0000 +2012,7,12,5,30,22.6,1.45,0.15,0.62,0,0,0,0,3,12.9,0,0,0,0,0.297,54.4,120.23,0.96,0.21,888,2.6,153,1.8,0.0000,0.0000 +2012,7,12,6,30,22,1.43,0.157,0.62,0,0,0,0,0,13.3,0,0,0,0,0.296,57.61,123.54,0.96,0.21,888,2.6,166,1.4000000000000001,0.0000,0.0000 +2012,7,12,7,30,21.5,1.44,0.159,0.62,0,0,0,0,0,13.600000000000001,0,0,0,0,0.295,60.68,123.34,0.96,0.21,888,2.7,181,1.1,0.0000,0.0000 +2012,7,12,8,30,20.8,1.46,0.153,0.62,0,0,0,0,0,13.8,0,0,0,0,0.295,64.24,119.67,0.96,0.21,888,2.7,193,1,0.0000,0.0000 +2012,7,12,9,30,20.1,1.48,0.14400000000000002,0.62,0,0,0,0,0,14,0,0,0,0,0.294,67.93,113.10000000000001,0.96,0.21,887,2.6,203,1,0.0000,0.0000 +2012,7,12,10,30,19.5,1.51,0.138,0.62,0,0,0,0,8,14.4,0,0,0,0,0.294,72.49,104.4,0.9500000000000001,0.21,887,2.6,211,1,0.0000,0.0000 +2012,7,12,11,30,20,1.52,0.136,0.62,0,0,0,0,0,14.8,0,0,0,0,0.294,72.21000000000001,94.24,0.9500000000000001,0.21,887,2.7,221,1.2000000000000002,0.0000,0.0000 +2012,7,12,12,30,22.1,1.53,0.14100000000000001,0.62,40,294,76,0,0,15.3,40,294,0,76,0.293,65.17,82.98,0.9500000000000001,0.21,888,2.7,224,1.8,0.0000,0.0000 +2012,7,12,13,30,25.1,1.54,0.147,0.62,80,570,263,0,0,15.5,80,570,0,263,0.293,55.42,71.26,0.9500000000000001,0.21,888,2.7,208,2,13.6255,10.5353 +2012,7,12,14,30,27.8,1.55,0.149,0.62,105,712,471,0,0,15.100000000000001,105,712,0,471,0.293,45.82,59.09,0.96,0.21,888,2.7,180,1.7000000000000002,26.5595,20.7551 +2012,7,12,15,30,29.700000000000003,1.55,0.15,0.62,122,793,665,0,0,14,122,793,0,665,0.293,38.29,46.730000000000004,0.96,0.21,888,2.7,151,1.4000000000000001,39.3853,30.9122 +2012,7,12,16,30,30.900000000000002,1.48,0.176,0.62,145,822,823,0,0,13.3,145,822,0,823,0.293,34.160000000000004,34.410000000000004,0.96,0.21,888,2.7,124,1.3,50.2730,39.5394 +2012,7,12,17,30,31.6,1.46,0.193,0.62,160,840,935,0,0,12.8,160,840,0,935,0.293,31.740000000000002,22.7,0.96,0.21,888,2.7,111,1.5,58.2030,45.8233 +2012,7,12,18,30,32.1,1.55,0.145,0.62,141,885,1001,7,3,12.200000000000001,327,645,7,954,0.293,29.78,13.700000000000001,0.96,0.21,887,2.7,115,1.7000000000000002,48.6968,38.3554 +2012,7,12,19,30,32.5,1.56,0.14400000000000002,0.62,140,885,997,0,0,11.9,140,885,0,997,0.292,28.41,14.39,0.96,0.21,886,2.7,124,1.9000000000000001,61.7386,48.6263 +2012,7,12,20,30,32.800000000000004,1.58,0.138,0.62,134,875,934,0,0,11.600000000000001,134,875,0,934,0.292,27.43,23.94,0.96,0.21,886,2.7,133,1.9000000000000001,57.3287,45.1312 +2012,7,12,21,30,32.800000000000004,1.6300000000000001,0.121,0.62,119,861,817,0,0,11.3,119,861,0,817,0.292,26.89,35.78,0.9500000000000001,0.21,885,2.6,137,1.9000000000000001,49.0593,38.5781 +2012,7,12,22,30,32.5,1.6500000000000001,0.112,0.62,104,820,652,0,0,11,104,820,0,652,0.291,26.88,48.120000000000005,0.9500000000000001,0.21,885,2.6,137,2,37.9214,29.7528 +2012,7,12,23,30,31.700000000000003,1.6600000000000001,0.105,0.62,88,749,457,0,0,10.8,88,749,0,457,0.29,27.7,60.480000000000004,0.9500000000000001,0.21,885,2.5,135,2.1,24.9094,19.4502 +2012,7,13,0,30,29.8,1.6500000000000001,0.101,0.62,66,609,248,0,0,10.700000000000001,66,609,0,248,0.289,30.6,72.62,0.9500000000000001,0.22,885,2.5,136,1.6,11.3997,8.7963 +2012,7,13,1,30,27.200000000000003,1.6500000000000001,0.099,0.62,31,307,62,0,0,13.200000000000001,31,307,0,62,0.289,41.99,84.28,0.9500000000000001,0.22,886,2.4000000000000004,139,1.2000000000000002,0.0000,0.0000 +2012,7,13,2,30,25.6,1.6400000000000001,0.096,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.289,44.410000000000004,95.48,0.9500000000000001,0.22,886,2.4000000000000004,142,1.6,0.0000,0.0000 +2012,7,13,3,30,24.8,1.6300000000000001,0.095,0.62,0,0,0,0,1,11.700000000000001,0,0,0,0,0.289,43.980000000000004,105.53,0.9400000000000001,0.22,887,2.4000000000000004,146,2.2,0.0000,0.0000 +2012,7,13,4,30,23.8,1.6300000000000001,0.095,0.62,0,0,0,0,4,11.100000000000001,0,0,0,0,0.29,44.84,114.05,0.9400000000000001,0.22,887,2.4000000000000004,152,2.5,0.0000,0.0000 +2012,7,13,5,30,22.8,1.6300000000000001,0.095,0.62,0,0,0,0,0,10.9,0,0,0,0,0.291,46.88,120.35000000000001,0.9400000000000001,0.22,887,2.4000000000000004,159,2.4000000000000004,0.0000,0.0000 +2012,7,13,6,30,21.900000000000002,1.6300000000000001,0.097,0.62,0,0,0,0,1,10.8,0,0,0,0,0.292,49.370000000000005,123.68,0.9400000000000001,0.22,887,2.4000000000000004,167,2.2,0.0000,0.0000 +2012,7,13,7,30,21.3,1.62,0.1,0.62,0,0,0,0,0,10.9,0,0,0,0,0.293,51.43,123.49000000000001,0.9500000000000001,0.22,887,2.5,175,2.2,0.0000,0.0000 +2012,7,13,8,30,21,1.61,0.106,0.62,0,0,0,0,0,11,0,0,0,0,0.294,52.9,119.81,0.9500000000000001,0.22,887,2.5,182,2.2,0.0000,0.0000 +2012,7,13,9,30,20.700000000000003,1.61,0.113,0.62,0,0,0,0,7,11.3,0,0,0,0,0.295,54.76,113.24000000000001,0.9500000000000001,0.22,887,2.5,191,2.1,0.0000,0.0000 +2012,7,13,10,30,20.3,1.61,0.116,0.62,0,0,0,0,0,11.600000000000001,0,0,0,0,0.296,57.24,104.53,0.9500000000000001,0.22,887,2.5,200,2,0.0000,0.0000 +2012,7,13,11,30,20.5,1.62,0.117,0.62,0,0,0,0,0,11.9,0,0,0,0,0.297,57.64,94.35000000000001,0.9500000000000001,0.22,888,2.5,211,2.3000000000000003,0.0000,0.0000 +2012,7,13,12,30,22,1.6300000000000001,0.11800000000000001,0.62,38,325,77,0,0,12.100000000000001,38,325,0,77,0.297,53.44,83.09,0.9500000000000001,0.22,888,2.5,220,2.8000000000000003,0.0000,0.0000 +2012,7,13,13,30,25.3,1.6300000000000001,0.117,0.62,73,608,267,0,0,12.5,73,608,0,267,0.298,45,71.36,0.9500000000000001,0.22,889,2.5,219,2.8000000000000003,13.3106,10.2905 +2012,7,13,14,30,28.900000000000002,1.6400000000000001,0.114,0.62,93,752,478,0,0,12.3,93,752,0,478,0.298,35.85,59.19,0.9500000000000001,0.22,889,2.4000000000000004,213,2.7,26.1028,20.3972 +2012,7,13,15,30,31.3,1.6500000000000001,0.111,0.62,106,829,673,0,0,11.4,106,829,0,673,0.298,29.560000000000002,46.82,0.9500000000000001,0.22,888,2.5,204,2.2,38.8483,30.4901 +2012,7,13,16,30,33.1,1.6500000000000001,0.11,0.62,115,875,836,0,0,11.100000000000001,115,875,0,836,0.299,26.03,34.51,0.9500000000000001,0.22,888,2.5,185,1.7000000000000002,49.5424,38.9643 +2012,7,13,17,30,34.4,1.6400000000000001,0.111,0.62,122,900,951,0,0,11,122,900,0,951,0.299,24.1,22.81,0.9500000000000001,0.22,887,2.5,159,1.5,57.2173,45.0469 +2012,7,13,18,30,35.300000000000004,1.6400000000000001,0.111,0.62,125,912,1010,0,0,11,125,912,0,1010,0.299,22.94,13.84,0.9500000000000001,0.22,887,2.5,139,1.7000000000000002,58.8012,46.3138 +2012,7,13,19,30,35.9,1.6400000000000001,0.112,0.62,125,911,1006,0,0,10.9,125,911,0,1006,0.299,22.04,14.51,0.9500000000000001,0.22,886,2.5,130,2,61.4264,48.3803 +2012,7,13,20,30,36.1,1.6500000000000001,0.114,0.62,122,894,939,0,0,10.8,122,894,0,939,0.299,21.63,24.01,0.9500000000000001,0.22,885,2.6,127,2.4000000000000004,57.0804,44.9356 +2012,7,13,21,30,35.9,1.6400000000000001,0.122,0.62,119,860,817,0,0,10.5,119,860,0,817,0.299,21.5,35.83,0.9500000000000001,0.22,885,2.6,128,2.7,49.0545,38.5741 +2012,7,13,22,30,35.1,1.62,0.13,0.62,112,805,649,0,0,10.100000000000001,112,805,0,649,0.299,21.830000000000002,48.160000000000004,0.9500000000000001,0.22,885,2.6,131,3,37.9163,29.7485 +2012,7,13,23,30,33.9,1.62,0.132,0.62,97,719,450,0,0,9.8,97,719,0,450,0.299,22.88,60.53,0.9500000000000001,0.22,885,2.6,137,3.2,25.1233,19.6168 +2012,7,14,0,30,31.700000000000003,1.6300000000000001,0.128,0.62,72,572,242,0,0,9.700000000000001,72,572,0,242,0.299,25.82,72.68,0.9500000000000001,0.22,885,2.6,143,2.7,12.3939,9.5627 +2012,7,14,1,30,28.900000000000002,1.6500000000000001,0.123,0.62,33,272,59,0,0,11.100000000000001,33,272,0,59,0.299,33.28,84.35000000000001,0.9500000000000001,0.22,885,2.5,149,2.2,0.0000,0.0000 +2012,7,14,2,30,27.3,1.6600000000000001,0.11900000000000001,0.62,0,0,0,0,0,11.200000000000001,0,0,0,0,0.299,36.57,95.55,0.9500000000000001,0.22,886,2.5,153,2.7,0.0000,0.0000 +2012,7,14,3,30,26.5,1.67,0.116,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.299,37.25,105.62,0.9500000000000001,0.22,886,2.5,155,3.3000000000000003,0.0000,0.0000 +2012,7,14,4,30,25.5,1.67,0.114,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.299,39.32,114.16,0.9500000000000001,0.22,887,2.5,158,3.5,0.0000,0.0000 +2012,7,14,5,30,24.400000000000002,1.67,0.113,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.3,42.18,120.48,0.9500000000000001,0.22,887,2.5,161,3.4000000000000004,0.0000,0.0000 +2012,7,14,6,30,23.5,1.6600000000000001,0.114,0.62,0,0,0,0,0,10.9,0,0,0,0,0.299,44.93,123.82000000000001,0.9500000000000001,0.22,887,2.5,165,3.2,0.0000,0.0000 +2012,7,14,7,30,22.700000000000003,1.6500000000000001,0.117,0.62,0,0,0,0,3,11,0,0,0,0,0.299,47.730000000000004,123.64,0.9500000000000001,0.22,887,2.6,169,2.9000000000000004,0.0000,0.0000 +2012,7,14,8,30,22,1.6400000000000001,0.121,0.62,0,0,0,0,1,11.200000000000001,0,0,0,0,0.299,50.47,119.96000000000001,0.9500000000000001,0.22,887,2.6,174,2.6,0.0000,0.0000 +2012,7,14,9,30,21.400000000000002,1.6300000000000001,0.123,0.62,0,0,0,0,0,11.4,0,0,0,0,0.299,52.97,113.38,0.9500000000000001,0.22,887,2.6,181,2.3000000000000003,0.0000,0.0000 +2012,7,14,10,30,21,1.6300000000000001,0.122,0.62,0,0,0,0,0,11.600000000000001,0,0,0,0,0.299,54.77,104.66,0.9500000000000001,0.22,887,2.5,188,2.1,0.0000,0.0000 +2012,7,14,11,30,21.1,1.6300000000000001,0.121,0.62,0,0,0,0,0,11.700000000000001,0,0,0,0,0.299,54.85,94.47,0.9500000000000001,0.22,887,2.5,195,2.3000000000000003,0.0000,0.0000 +2012,7,14,12,30,22.5,1.6300000000000001,0.12,0.62,38,319,75,0,0,11.8,38,319,0,75,0.299,50.79,83.19,0.96,0.22,888,2.5,199,2.7,0.0000,0.0000 +2012,7,14,13,30,25.6,1.62,0.122,0.62,74,599,264,0,0,12,74,599,0,264,0.3,42.87,71.46000000000001,0.96,0.22,888,2.6,196,2.9000000000000004,13.5006,10.4359 +2012,7,14,14,30,28.900000000000002,1.61,0.128,0.62,98,733,472,0,0,11.5,98,733,0,472,0.3,34.17,59.28,0.96,0.22,888,2.6,187,2.9000000000000004,26.4758,20.6876 +2012,7,14,15,30,31,1.58,0.14300000000000002,0.62,119,795,662,0,7,10.8,246,482,0,576,0.3,28.82,46.910000000000004,0.97,0.22,889,2.8000000000000003,169,2.6,39.3044,30.8474 +2012,7,14,16,30,32.1,1.55,0.164,0.62,139,827,820,7,3,10.700000000000001,403,392,7,726,0.301,26.85,34.61,0.97,0.22,888,2.9000000000000004,147,2.6,50.3158,39.5721 +2012,7,14,17,30,32.7,1.54,0.178,0.62,153,844,931,7,3,10.8,356,583,7,893,0.301,26.240000000000002,22.92,0.97,0.22,888,3,135,2.9000000000000004,58.1898,45.8122 +2012,7,14,18,30,33.4,1.56,0.20600000000000002,0.62,170,841,985,0,7,11.100000000000001,358,507,0,850,0.301,25.69,14,0.97,0.22,888,3,134,3.2,62.2478,49.0282 +2012,7,14,19,30,34.300000000000004,1.6,0.189,0.62,161,851,984,0,1,11.4,161,851,0,984,0.301,24.92,14.63,0.96,0.22,887,3,138,3.2,61.9763,48.8132 +2012,7,14,20,30,34.9,1.6300000000000001,0.171,0.62,148,848,923,0,0,11.700000000000001,148,848,0,923,0.301,24.5,24.080000000000002,0.96,0.22,886,3,139,3.2,57.3816,45.1724 +2012,7,14,21,30,35,1.6600000000000001,0.17300000000000001,0.62,141,818,803,7,3,11.700000000000001,351,510,7,765,0.3,24.46,35.88,0.9500000000000001,0.22,886,2.9000000000000004,138,3.2,49.0498,38.5701 +2012,7,14,22,30,34.5,1.67,0.161,0.62,124,776,641,7,3,11.5,317,398,7,582,0.3,24.87,48.21,0.9500000000000001,0.22,886,2.8000000000000003,136,3.2,37.7367,29.6073 +2012,7,14,23,30,33.5,1.68,0.152,0.62,103,696,445,0,0,11.3,103,696,0,445,0.3,25.87,60.58,0.9500000000000001,0.22,886,2.8000000000000003,135,3.3000000000000003,24.7310,19.3099 +2012,7,15,0,30,31.400000000000002,1.68,0.146,0.62,76,550,239,0,0,11.100000000000001,76,550,0,239,0.299,28.69,72.73,0.9500000000000001,0.22,886,2.7,137,2.6,12.0873,9.3253 +2012,7,15,1,30,28.700000000000003,1.67,0.14,0.62,33,250,57,0,3,12.200000000000001,42,2,0,42,0.298,36.02,84.42,0.9500000000000001,0.22,886,2.6,141,2.1,0.0000,0.0000 +2012,7,15,2,30,27.3,1.67,0.133,0.62,0,0,0,0,3,12,0,0,0,0,0.297,38.76,95.64,0.9500000000000001,0.22,887,2.6,146,2.8000000000000003,0.0000,0.0000 +2012,7,15,3,30,26.6,1.67,0.129,0.62,0,0,0,0,7,11.600000000000001,0,0,0,0,0.296,39.29,105.72,0.9500000000000001,0.22,887,2.6,151,3.7,0.0000,0.0000 +2012,7,15,4,30,25.8,1.6600000000000001,0.125,0.62,0,0,0,0,3,11.700000000000001,0,0,0,0,0.295,41.410000000000004,114.28,0.9500000000000001,0.22,887,2.6,155,4.2,0.0000,0.0000 +2012,7,15,5,30,24.900000000000002,1.6600000000000001,0.123,0.62,0,0,0,0,0,11.9,0,0,0,0,0.294,44.33,120.62,0.9500000000000001,0.22,888,2.7,161,4.2,0.0000,0.0000 +2012,7,15,6,30,24,1.6500000000000001,0.12,0.62,0,0,0,0,0,12.100000000000001,0,0,0,0,0.293,47.25,123.98,0.9500000000000001,0.22,887,2.7,166,4.1000000000000005,0.0000,0.0000 +2012,7,15,7,30,23.200000000000003,1.6500000000000001,0.11900000000000001,0.62,0,0,0,0,1,12.200000000000001,0,0,0,0,0.293,49.97,123.8,0.9400000000000001,0.22,887,2.7,172,3.8000000000000003,0.0000,0.0000 +2012,7,15,8,30,22.5,1.6500000000000001,0.11900000000000001,0.62,0,0,0,0,0,12.3,0,0,0,0,0.293,52.5,120.12,0.9400000000000001,0.22,887,2.7,180,3.5,0.0000,0.0000 +2012,7,15,9,30,21.8,1.6500000000000001,0.122,0.62,0,0,0,0,0,12.4,0,0,0,0,0.293,55.2,113.52,0.9500000000000001,0.22,887,2.7,189,3.1,0.0000,0.0000 +2012,7,15,10,30,21.3,1.6400000000000001,0.127,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.293,57.43,104.79,0.9500000000000001,0.22,887,2.7,198,2.9000000000000004,0.0000,0.0000 +2012,7,15,11,30,21.400000000000002,1.62,0.132,0.62,0,0,0,0,1,12.8,0,0,0,0,0.293,57.94,94.59,0.9500000000000001,0.22,888,2.7,205,2.9000000000000004,0.0000,0.0000 +2012,7,15,12,30,22.8,1.6,0.139,0.62,38,286,72,0,0,13.100000000000001,38,286,0,72,0.294,54.26,83.3,0.9500000000000001,0.22,888,2.8000000000000003,209,3.2,0.0000,0.0000 +2012,7,15,13,30,25.3,1.58,0.149,0.62,80,561,257,0,3,13.5,177,44,0,191,0.295,47.94,71.56,0.9500000000000001,0.22,888,2.9000000000000004,207,3.2,13.3366,10.3077 +2012,7,15,14,30,27.700000000000003,1.58,0.153,0.62,105,702,463,0,1,13.4,105,702,0,463,0.296,41.25,59.38,0.9500000000000001,0.22,888,2.9000000000000004,201,3,26.1302,20.4166 +2012,7,15,15,30,29.6,1.58,0.151,0.62,121,785,657,7,3,12.700000000000001,315,423,7,604,0.297,35.34,47,0.9500000000000001,0.22,888,3,193,2.5,33.6298,26.3932 +2012,7,15,16,30,31.200000000000003,1.59,0.139,0.62,127,843,820,0,3,12.100000000000001,390,19,0,406,0.298,31.060000000000002,34.71,0.9400000000000001,0.22,888,3,181,1.9000000000000001,43.6873,34.3585 +2012,7,15,17,30,32.7,1.61,0.121,0.62,125,883,938,0,4,11.700000000000001,407,6,0,412,0.299,27.75,23.04,0.9400000000000001,0.22,887,3,165,1.5,54.6346,43.0130 +2012,7,15,18,30,33.9,1.6,0.12,0.62,128,896,996,0,4,11.4,344,1,0,345,0.299,25.39,14.15,0.9400000000000001,0.22,887,3,149,1.4000000000000001,52.3818,41.2572 +2012,7,15,19,30,34.5,1.59,0.117,0.62,126,897,994,0,4,10.9,335,1,0,336,0.3,23.87,14.76,0.9400000000000001,0.22,886,3,139,1.4000000000000001,60.6164,47.7419 +2012,7,15,20,30,34.6,1.58,0.117,0.62,124,886,932,0,8,10.5,350,20,0,369,0.3,23.07,24.16,0.9500000000000001,0.22,885,2.9000000000000004,138,1.5,56.3994,44.3990 +2012,7,15,21,30,34.4,1.57,0.116,0.62,117,858,811,0,6,10.100000000000001,237,4,0,240,0.301,22.67,35.94,0.9500000000000001,0.22,885,2.9000000000000004,138,1.5,45.9234,36.1115 +2012,7,15,22,30,33.7,1.56,0.115,0.62,106,810,645,0,4,9.600000000000001,212,1,0,213,0.301,22.84,48.27,0.9500000000000001,0.22,884,2.9000000000000004,139,1.7000000000000002,33.8352,26.5460 +2012,7,15,23,30,32.6,1.56,0.113,0.62,90,732,449,0,4,9.3,115,0,0,115,0.302,23.740000000000002,60.64,0.9500000000000001,0.22,884,2.8000000000000003,141,2,24.4489,19.0891 +2012,7,16,0,30,30.700000000000003,1.56,0.114,0.62,69,581,241,0,4,9.3,106,3,0,107,0.304,26.54,72.8,0.9500000000000001,0.24,884,2.8000000000000003,142,1.6,11.9319,9.2046 +2012,7,16,1,30,28.5,1.56,0.114,0.62,31,268,57,0,4,12.5,4,0,0,4,0.305,37.26,84.49,0.9500000000000001,0.24,885,2.8000000000000003,146,1.2000000000000002,0.0000,0.0000 +2012,7,16,2,30,27,1.56,0.112,0.62,0,0,0,0,3,12.3,0,0,0,0,0.307,40.09,95.72,0.9500000000000001,0.24,885,2.7,152,1.4000000000000001,0.0000,0.0000 +2012,7,16,3,30,26.1,1.58,0.108,0.62,0,0,0,0,1,12.100000000000001,0,0,0,0,0.308,41.81,105.82000000000001,0.9500000000000001,0.24,885,2.7,158,1.8,0.0000,0.0000 +2012,7,16,4,30,25.200000000000003,1.59,0.10400000000000001,0.62,0,0,0,0,3,11.700000000000001,0,0,0,0,0.308,43.01,114.4,0.9400000000000001,0.24,885,2.7,165,2.1,0.0000,0.0000 +2012,7,16,5,30,24.3,1.59,0.101,0.62,0,0,0,0,1,11.5,0,0,0,0,0.308,44.75,120.77,0.9400000000000001,0.24,885,2.6,171,2.4000000000000004,0.0000,0.0000 +2012,7,16,6,30,23.3,1.6,0.1,0.62,0,0,0,0,0,11.4,0,0,0,0,0.307,47.160000000000004,124.14,0.9400000000000001,0.24,885,2.6,176,2.3000000000000003,0.0000,0.0000 +2012,7,16,7,30,22.200000000000003,1.58,0.099,0.62,0,0,0,0,0,11.4,0,0,0,0,0.306,50.49,123.97,0.9400000000000001,0.24,885,2.5,181,2.1,0.0000,0.0000 +2012,7,16,8,30,21.3,1.56,0.099,0.62,0,0,0,0,1,11.5,0,0,0,0,0.306,53.410000000000004,120.28,0.9400000000000001,0.24,885,2.5,191,1.9000000000000001,0.0000,0.0000 +2012,7,16,9,30,20.400000000000002,1.53,0.099,0.62,0,0,0,0,1,11.5,0,0,0,0,0.306,56.75,113.67,0.9400000000000001,0.24,885,2.5,206,1.7000000000000002,0.0000,0.0000 +2012,7,16,10,30,19.8,1.5,0.1,0.62,0,0,0,0,7,11.700000000000001,0,0,0,0,0.306,59.65,104.92,0.9400000000000001,0.24,885,2.5,222,1.6,0.0000,0.0000 +2012,7,16,11,30,19.900000000000002,1.48,0.10200000000000001,0.62,0,0,0,0,1,12,0,0,0,0,0.306,60.18,94.71000000000001,0.9400000000000001,0.24,885,2.6,232,2.1,0.0000,0.0000 +2012,7,16,12,30,21.700000000000003,1.46,0.10400000000000001,0.62,35,323,72,7,8,12.3,37,2,7,37,0.306,55,83.41,0.9400000000000001,0.24,885,2.6,229,2.8000000000000003,0.0000,0.0000 +2012,7,16,13,30,24.8,1.45,0.107,0.62,70,608,261,0,8,12.9,27,0,0,27,0.306,47.46,71.66,0.9400000000000001,0.24,885,2.7,221,3.5,9.6399,7.4495 +2012,7,16,14,30,28.200000000000003,1.43,0.11,0.62,92,745,470,0,8,13.200000000000001,220,33,0,237,0.305,39.63,59.47,0.9500000000000001,0.24,885,2.7,214,4,25.6174,20.0148 +2012,7,16,15,30,31.1,1.42,0.114,0.62,108,817,664,0,8,12.3,300,42,0,328,0.304,31.66,47.1,0.9500000000000001,0.24,884,2.8000000000000003,206,4.1000000000000005,35.2544,27.6677 +2012,7,16,16,30,33.1,1.41,0.11800000000000001,0.62,120,861,827,0,8,11.3,277,7,0,283,0.303,26.39,34.81,0.9500000000000001,0.24,884,2.8000000000000003,199,4.2,24.4267,19.2105 +2012,7,16,17,30,34.5,1.41,0.124,0.62,130,883,942,0,8,10.600000000000001,405,52,0,453,0.302,23.31,23.16,0.96,0.24,883,2.8000000000000003,195,4.4,25.2034,19.8421 +2012,7,16,18,30,35.1,1.27,0.20500000000000002,0.62,173,839,986,0,8,10.200000000000001,441,68,0,507,0.301,22.07,14.31,0.96,0.24,883,2.9000000000000004,194,4.6000000000000005,21.2590,16.7440 +2012,7,16,19,30,34.800000000000004,1.25,0.227,0.62,183,824,980,0,4,10.100000000000001,241,0,0,241,0.301,22.17,14.9,0.97,0.24,882,2.9000000000000004,194,4.9,20.6966,16.3007 +2012,7,16,20,30,34.5,1.25,0.226,0.62,178,807,914,0,3,10.100000000000001,529,174,0,687,0.301,22.56,24.240000000000002,0.97,0.24,882,3,193,5.300000000000001,22.5455,17.7483 +2012,7,16,21,30,34,1.32,0.17,0.62,143,814,801,0,0,10.200000000000001,143,814,0,801,0.301,23.45,36,0.96,0.24,881,3,191,5.6000000000000005,14.4056,11.3277 +2012,7,16,22,30,33.2,1.34,0.153,0.62,123,774,638,0,0,10.4,123,774,0,638,0.302,24.85,48.32,0.96,0.24,881,3,185,5.800000000000001,12.3805,9.7132 +2012,7,16,23,30,31.8,1.35,0.133,0.62,98,705,443,0,4,10.700000000000001,145,0,0,145,0.303,27.330000000000002,60.7,0.9500000000000001,0.24,881,3,177,6.2,6.3160,4.9312 +2012,7,17,0,30,29.6,1.34,0.12,0.62,71,564,237,0,7,11.100000000000001,128,303,0,217,0.304,31.95,72.87,0.9500000000000001,0.24,881,3,173,6.2,5.3384,4.1178 +2012,7,17,1,30,27.1,1.31,0.122,0.62,32,239,55,0,3,11.700000000000001,46,70,0,53,0.305,38.33,84.57000000000001,0.9500000000000001,0.24,882,3.1,173,5.5,0.0000,0.0000 +2012,7,17,2,30,25.3,1.26,0.129,0.62,0,0,0,0,8,12,0,0,0,0,0.305,43.42,95.82000000000001,0.9500000000000001,0.24,883,3.2,176,4.5,0.0000,0.0000 +2012,7,17,3,30,24.3,1.19,0.14100000000000001,0.62,0,0,0,0,1,12.100000000000001,0,0,0,0,0.304,46.44,105.93,0.9500000000000001,0.24,884,3.2,186,3.7,0.0000,0.0000 +2012,7,17,4,30,23.6,1.09,0.153,0.62,0,0,0,0,1,12.200000000000001,0,0,0,0,0.303,48.82,114.53,0.96,0.24,885,3.3000000000000003,200,3.4000000000000004,0.0000,0.0000 +2012,7,17,5,30,22.8,0.99,0.162,0.62,0,0,0,0,3,12.4,0,0,0,0,0.302,52.02,120.92,0.96,0.24,885,3.3000000000000003,213,3.3000000000000003,0.0000,0.0000 +2012,7,17,6,30,22.1,0.92,0.165,0.62,0,0,0,0,4,12.700000000000001,0,0,0,0,0.302,55.300000000000004,124.3,0.9500000000000001,0.24,885,3.3000000000000003,219,3.5,0.0000,0.0000 +2012,7,17,7,30,21.5,0.9,0.159,0.62,0,0,0,0,0,12.9,0,0,0,0,0.302,58.120000000000005,124.14,0.9500000000000001,0.24,884,3.3000000000000003,216,3.5,0.0000,0.0000 +2012,7,17,8,30,21.1,0.9,0.147,0.62,0,0,0,0,0,12.8,0,0,0,0,0.302,59.120000000000005,120.45,0.9500000000000001,0.24,884,3.2,208,3.3000000000000003,0.0000,0.0000 +2012,7,17,9,30,20.8,0.91,0.14100000000000001,0.62,0,0,0,0,0,12.5,0,0,0,0,0.302,58.93,113.82000000000001,0.9500000000000001,0.24,883,3.2,200,2.9000000000000004,0.0000,0.0000 +2012,7,17,10,30,20.400000000000002,0.91,0.14100000000000001,0.62,0,0,0,0,0,12.200000000000001,0,0,0,0,0.301,59.45,105.06,0.9500000000000001,0.24,883,3.2,194,2.4000000000000004,0.0000,0.0000 +2012,7,17,11,30,20.5,0.92,0.146,0.62,0,0,0,0,0,12.200000000000001,0,0,0,0,0.3,58.89,94.83,0.9500000000000001,0.24,883,3.2,193,2.5,0.0000,0.0000 +2012,7,17,12,30,22,0.93,0.149,0.62,40,225,65,7,4,12.3,42,0,7,42,0.3,54.14,83.52,0.9500000000000001,0.24,884,3.2,200,3.2,0.0000,0.0000 +2012,7,17,13,30,24.700000000000003,0.9500000000000001,0.151,0.62,83,531,249,0,4,12.700000000000001,132,5,0,133,0.3,47.06,71.76,0.9500000000000001,0.24,884,3.2,211,4.1000000000000005,1.3614,1.0519 +2012,7,17,14,30,27.8,0.98,0.149,0.62,108,687,456,0,7,12.3,203,426,0,418,0.3,38.29,59.57,0.9500000000000001,0.24,884,3.2,220,4.4,13.1063,10.2394 +2012,7,17,15,30,30.200000000000003,1.02,0.147,0.62,124,776,651,7,3,11,351,298,7,554,0.3,30.64,47.2,0.9500000000000001,0.24,884,3.2,221,4,19.1387,15.0197 +2012,7,17,16,30,31.8,1.05,0.146,0.62,135,826,812,0,4,10.5,405,40,0,438,0.301,27.05,34.910000000000004,0.9500000000000001,0.24,884,3.3000000000000003,213,3.5,17.0233,13.3879 +2012,7,17,17,30,32.9,1.07,0.149,0.62,144,853,927,0,4,10.5,518,181,0,684,0.302,25.43,23.29,0.9500000000000001,0.24,884,3.3000000000000003,202,3.3000000000000003,27.7080,21.8137 +2012,7,17,18,30,33.800000000000004,1.16,0.134,0.62,139,878,989,7,2,10.600000000000001,287,685,7,950,0.302,24.25,14.48,0.9500000000000001,0.24,883,3.3000000000000003,194,3.4000000000000004,31.2384,24.6039 +2012,7,17,19,30,34.4,1.1400000000000001,0.138,0.62,141,874,985,0,1,10.600000000000001,141,874,0,985,0.302,23.5,15.040000000000001,0.96,0.24,883,3.3000000000000003,188,3.5,14.8436,11.6908 +2012,7,17,20,30,34.800000000000004,1.1,0.139,0.62,138,860,922,0,1,10.600000000000001,138,860,0,922,0.302,22.96,24.330000000000002,0.96,0.24,882,3.2,184,3.7,41.9713,33.0405 +2012,7,17,21,30,34.9,1.05,0.137,0.62,130,831,802,0,1,10.4,130,831,0,802,0.302,22.57,36.07,0.96,0.24,882,3.2,179,3.7,48.0732,37.8014 +2012,7,17,22,30,34.5,1,0.14,0.62,120,777,636,0,0,10.100000000000001,120,777,0,636,0.302,22.64,48.39,0.96,0.24,881,3.1,175,3.7,37.0770,29.0885 +2012,7,17,23,30,33.5,0.9500000000000001,0.14400000000000002,0.62,105,684,439,0,0,9.9,105,684,0,439,0.302,23.54,60.76,0.96,0.24,881,3,170,3.7,7.9607,6.2151 +2012,7,18,0,30,31.5,0.9,0.146,0.62,79,518,231,0,0,9.8,79,518,0,231,0.302,26.19,72.94,0.9500000000000001,0.24,882,2.9000000000000004,165,3.2,10.8194,8.3446 +2012,7,18,1,30,29.1,0.85,0.146,0.62,34,183,51,0,1,10.600000000000001,34,183,0,51,0.302,31.71,84.65,0.9500000000000001,0.24,882,2.9000000000000004,160,2.9000000000000004,0.0000,0.0000 +2012,7,18,2,30,27.700000000000003,0.79,0.147,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.303,34.68,95.92,0.9500000000000001,0.24,883,2.8000000000000003,160,3.6,0.0000,0.0000 +2012,7,18,3,30,26.8,0.75,0.151,0.62,0,0,0,0,1,10.9,0,0,0,0,0.303,37.08,106.05,0.9500000000000001,0.24,883,2.8000000000000003,162,4,0.0000,0.0000 +2012,7,18,4,30,25.8,0.72,0.155,0.62,0,0,0,0,1,11.5,0,0,0,0,0.302,40.88,114.67,0.9500000000000001,0.24,884,2.9000000000000004,168,4,0.0000,0.0000 +2012,7,18,5,30,25,0.6900000000000001,0.161,0.62,0,0,0,0,7,12,0,0,0,0,0.302,44.4,121.07000000000001,0.9500000000000001,0.24,884,2.9000000000000004,174,3.9000000000000004,0.0000,0.0000 +2012,7,18,6,30,24.200000000000003,0.66,0.169,0.62,0,0,0,0,8,12.600000000000001,0,0,0,0,0.301,48.24,124.48,0.9500000000000001,0.24,884,3,180,3.6,0.0000,0.0000 +2012,7,18,7,30,23.5,0.64,0.176,0.62,0,0,0,0,7,13.200000000000001,0,0,0,0,0.301,52.29,124.31,0.9500000000000001,0.24,884,3.1,185,3.3000000000000003,0.0000,0.0000 +2012,7,18,8,30,22.900000000000002,0.64,0.177,0.62,0,0,0,0,8,13.8,0,0,0,0,0.301,56.61,120.61,0.9500000000000001,0.24,885,3.1,189,3.1,0.0000,0.0000 +2012,7,18,9,30,22.200000000000003,0.66,0.171,0.62,0,0,0,0,7,14.4,0,0,0,0,0.301,61.32,113.98,0.9500000000000001,0.24,885,3.1,193,3,0.0000,0.0000 +2012,7,18,10,30,21.5,0.68,0.165,0.62,0,0,0,0,0,14.8,0,0,0,0,0.301,65.87,105.2,0.9500000000000001,0.24,885,3,195,2.8000000000000003,0.0000,0.0000 +2012,7,18,11,30,21.5,0.7000000000000001,0.162,0.62,0,0,0,0,0,15.100000000000001,0,0,0,0,0.3,67.05,94.96000000000001,0.9500000000000001,0.24,886,3,197,3.1,0.0000,0.0000 +2012,7,18,12,30,22.900000000000002,0.71,0.16,0.62,41,196,63,0,0,15.3,41,196,0,63,0.3,62.31,83.64,0.9500000000000001,0.24,886,3,200,4,0.0000,0.0000 +2012,7,18,13,30,25.6,0.73,0.157,0.62,86,516,247,0,0,15.4,86,516,0,247,0.3,53.28,71.87,0.9500000000000001,0.24,887,2.9000000000000004,201,4.6000000000000005,6.7002,5.1763 +2012,7,18,14,30,28.700000000000003,0.74,0.151,0.62,111,682,456,0,0,14.9,111,682,0,456,0.3,43.03,59.67,0.9500000000000001,0.24,887,2.9000000000000004,194,4.2,23.1024,18.0481 +2012,7,18,15,30,31.200000000000003,0.76,0.139,0.62,123,782,654,0,0,14,123,782,0,654,0.3,35.050000000000004,47.29,0.9500000000000001,0.24,887,2.9000000000000004,178,3.8000000000000003,32.3152,25.3598 +2012,7,18,16,30,32.9,0.8,0.127,0.62,129,843,819,0,0,13.200000000000001,129,843,0,819,0.301,30.32,35.01,0.9500000000000001,0.24,887,2.9000000000000004,165,3.8000000000000003,26.3421,20.7164 +2012,7,18,17,30,34.2,0.84,0.114,0.62,129,884,940,0,0,12.5,129,884,0,940,0.302,26.98,23.41,0.9500000000000001,0.24,887,2.8000000000000003,161,3.9000000000000004,41.8314,32.9325 +2012,7,18,18,30,35.1,0.91,0.095,0.62,121,911,1002,0,0,11.9,121,911,0,1002,0.302,24.59,14.65,0.9400000000000001,0.24,886,2.8000000000000003,161,4.1000000000000005,58.5274,46.0968 +2012,7,18,19,30,35.7,0.93,0.089,0.62,117,915,1000,0,1,11.3,117,915,0,1000,0.303,22.92,15.200000000000001,0.9400000000000001,0.24,886,2.8000000000000003,163,4.1000000000000005,60.6623,47.7773 +2012,7,18,20,30,35.9,0.96,0.084,0.62,111,907,936,0,0,10.8,111,907,0,936,0.304,21.89,24.43,0.9400000000000001,0.24,885,2.8000000000000003,164,4.2,56.3226,44.3378 +2012,7,18,21,30,35.6,0.99,0.073,0.62,99,891,819,0,0,10.3,99,891,0,819,0.304,21.5,36.15,0.9400000000000001,0.24,885,2.7,165,4.2,48.1266,37.8430 +2012,7,18,22,30,35,1,0.07100000000000001,0.62,90,850,653,0,0,9.700000000000001,90,850,0,653,0.304,21.41,48.46,0.9400000000000001,0.24,885,2.6,165,4.2,36.9520,28.9899 +2012,7,18,23,30,33.800000000000004,1.01,0.07100000000000001,0.62,77,773,454,0,0,9.3,77,773,0,454,0.303,22.21,60.83,0.9400000000000001,0.24,885,2.6,165,4.1000000000000005,24.0930,18.8092 +2012,7,19,0,30,31.700000000000003,1.02,0.073,0.62,60,628,243,0,0,9,60,628,0,243,0.303,24.57,73.02,0.9400000000000001,0.24,885,2.5,165,3.6,11.5099,8.8762 +2012,7,19,1,30,29.1,1.02,0.075,0.62,29,296,56,0,0,9.600000000000001,29,296,0,56,0.303,29.75,84.74,0.9400000000000001,0.24,886,2.5,164,3.1,0.0000,0.0000 +2012,7,19,2,30,27.400000000000002,1,0.078,0.62,0,0,0,0,0,9.9,0,0,0,0,0.303,33.45,96.02,0.9500000000000001,0.24,886,2.5,166,3.4000000000000004,0.0000,0.0000 +2012,7,19,3,30,26.5,0.97,0.081,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.303,35.61,106.17,0.9500000000000001,0.24,887,2.5,169,3.5,0.0000,0.0000 +2012,7,19,4,30,25.5,0.93,0.08600000000000001,0.62,0,0,0,0,0,10.4,0,0,0,0,0.303,38.57,114.81,0.9500000000000001,0.24,887,2.5,172,3.3000000000000003,0.0000,0.0000 +2012,7,19,5,30,24.700000000000003,0.89,0.092,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.302,41.480000000000004,121.24000000000001,0.9500000000000001,0.24,887,2.6,178,3.2,0.0000,0.0000 +2012,7,19,6,30,24,0.86,0.101,0.62,0,0,0,0,0,11.3,0,0,0,0,0.3,44.78,124.65,0.9500000000000001,0.24,888,2.6,187,3.3000000000000003,0.0000,0.0000 +2012,7,19,7,30,23.3,0.85,0.11,0.62,0,0,0,0,0,11.9,0,0,0,0,0.299,48.69,124.49000000000001,0.9500000000000001,0.24,888,2.7,199,3.3000000000000003,0.0000,0.0000 +2012,7,19,8,30,22.700000000000003,0.86,0.11800000000000001,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.297,52.95,120.79,0.9500000000000001,0.24,888,2.8000000000000003,209,3.3000000000000003,0.0000,0.0000 +2012,7,19,9,30,22.1,0.87,0.123,0.62,0,0,0,0,0,13.4,0,0,0,0,0.296,57.72,114.14,0.9500000000000001,0.24,889,2.8000000000000003,218,3,0.0000,0.0000 +2012,7,19,10,30,21.3,0.89,0.123,0.62,0,0,0,0,0,14.100000000000001,0,0,0,0,0.295,63.32,105.35000000000001,0.9500000000000001,0.24,889,2.8000000000000003,225,2.5,0.0000,0.0000 +2012,7,19,11,30,21.3,0.9,0.121,0.62,0,0,0,0,0,14.600000000000001,0,0,0,0,0.294,65.7,95.09,0.9500000000000001,0.24,890,2.7,230,2.4000000000000004,0.0000,0.0000 +2012,7,19,12,30,22.900000000000002,0.92,0.11800000000000001,0.62,37,261,65,0,0,15.100000000000001,37,261,0,65,0.294,61.33,83.75,0.9500000000000001,0.24,890,2.7,230,2.8000000000000003,0.0000,0.0000 +2012,7,19,13,30,25.700000000000003,0.9400000000000001,0.114,0.62,74,581,254,0,0,15.200000000000001,74,581,0,254,0.294,52.44,71.97,0.9500000000000001,0.24,890,2.7,221,2.8000000000000003,12.4304,9.6017 +2012,7,19,14,30,28.700000000000003,0.96,0.108,0.62,94,737,464,0,0,14.5,94,737,0,464,0.294,41.800000000000004,59.77,0.9500000000000001,0.24,890,2.7,197,2.5,25.1881,19.6764 +2012,7,19,15,30,31.200000000000003,0.99,0.10300000000000001,0.62,106,822,663,0,0,13.200000000000001,106,822,0,663,0.295,33.36,47.39,0.9500000000000001,0.24,890,2.7,171,2.5,38.1372,29.9280 +2012,7,19,16,30,32.800000000000004,1.02,0.099,0.62,114,873,827,0,0,12.4,114,873,0,827,0.295,28.88,35.12,0.9500000000000001,0.24,890,2.7,159,2.9000000000000004,49.2469,38.7291 +2012,7,19,17,30,34.1,1.05,0.094,0.62,116,903,944,0,0,11.600000000000001,116,903,0,944,0.296,25.6,23.54,0.9400000000000001,0.24,890,2.7,157,3.2,57.4803,45.2519 +2012,7,19,18,30,35,1.09,0.08700000000000001,0.62,115,920,1005,0,0,11,115,920,0,1005,0.297,23.400000000000002,14.83,0.9400000000000001,0.24,889,2.7,159,3.5,61.7245,48.6146 +2012,7,19,19,30,35.5,1.1400000000000001,0.08,0.62,111,925,1003,0,0,10.600000000000001,111,925,0,1003,0.298,22.05,15.35,0.9400000000000001,0.24,889,2.7,162,3.7,61.5797,48.4996 +2012,7,19,20,30,35.7,1.18,0.073,0.62,104,919,940,0,0,10.200000000000001,104,919,0,940,0.298,21.240000000000002,24.53,0.9400000000000001,0.24,888,2.7,164,3.9000000000000004,57.1713,45.0056 +2012,7,19,21,30,35.4,1.24,0.057,0.62,90,909,823,0,0,9.9,90,909,0,823,0.298,21.14,36.230000000000004,0.93,0.24,888,2.6,165,4,49.1390,38.6387 +2012,7,19,22,30,34.6,1.29,0.052000000000000005,0.62,80,873,658,0,0,9.600000000000001,80,873,0,658,0.298,21.76,48.53,0.93,0.24,887,2.5,165,4,37.9306,29.7571 +2012,7,19,23,30,33.4,1.32,0.047,0.62,67,806,459,0,0,9.5,67,806,0,459,0.297,23.12,60.910000000000004,0.93,0.24,887,2.5,166,3.9000000000000004,24.9056,19.4428 +2012,7,20,0,30,31.3,1.35,0.044,0.62,51,679,248,0,0,9.600000000000001,51,679,0,248,0.297,26.18,73.10000000000001,0.93,0.24,888,2.4000000000000004,166,3.2,12.0988,9.3292 +2012,7,20,1,30,28.700000000000003,1.37,0.041,0.62,24,374,58,0,0,10.4,24,374,0,58,0.298,31.94,84.83,0.93,0.24,888,2.4000000000000004,168,2.4000000000000004,0.0000,0.0000 +2012,7,20,2,30,26.900000000000002,1.3900000000000001,0.04,0.62,0,0,0,0,0,11.100000000000001,0,0,0,0,0.298,37.39,96.13,0.93,0.24,889,2.3000000000000003,171,2.5,0.0000,0.0000 +2012,7,20,3,30,26.1,1.4000000000000001,0.039,0.62,0,0,0,0,0,11.700000000000001,0,0,0,0,0.298,40.6,106.3,0.93,0.24,889,2.4000000000000004,176,2.6,0.0000,0.0000 +2012,7,20,4,30,25.3,1.4000000000000001,0.039,0.62,0,0,0,0,0,12.200000000000001,0,0,0,0,0.298,44.2,114.96000000000001,0.93,0.24,890,2.4000000000000004,185,2.5,0.0000,0.0000 +2012,7,20,5,30,24.5,1.3900000000000001,0.04,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.298,47.61,121.41,0.93,0.24,890,2.4000000000000004,197,2.4000000000000004,0.0000,0.0000 +2012,7,20,6,30,23.900000000000002,1.37,0.042,0.62,0,0,0,0,0,12.9,0,0,0,0,0.298,50.33,124.84,0.93,0.24,890,2.4000000000000004,209,2.4000000000000004,0.0000,0.0000 +2012,7,20,7,30,23.3,1.34,0.043000000000000003,0.62,0,0,0,0,0,13.200000000000001,0,0,0,0,0.297,53.14,124.68,0.9400000000000001,0.24,890,2.5,218,2.3000000000000003,0.0000,0.0000 +2012,7,20,8,30,22.700000000000003,1.31,0.045,0.62,0,0,0,0,0,13.5,0,0,0,0,0.297,56.24,120.97,0.9400000000000001,0.24,890,2.5,225,2.3000000000000003,0.0000,0.0000 +2012,7,20,9,30,22.200000000000003,1.28,0.047,0.62,0,0,0,0,0,13.9,0,0,0,0,0.296,59.230000000000004,114.3,0.9400000000000001,0.24,889,2.5,229,2.2,0.0000,0.0000 +2012,7,20,10,30,21.6,1.26,0.048,0.62,0,0,0,0,0,14.200000000000001,0,0,0,0,0.296,62.92,105.49000000000001,0.9400000000000001,0.24,890,2.5,231,2.1,0.0000,0.0000 +2012,7,20,11,30,21.8,1.26,0.049,0.62,0,0,0,0,0,14.5,0,0,0,0,0.295,63.370000000000005,95.22,0.9500000000000001,0.24,890,2.5,234,2.4000000000000004,0.0000,0.0000 +2012,7,20,12,30,23.400000000000002,1.26,0.051000000000000004,0.62,29,389,71,0,0,14.8,29,389,0,71,0.294,58.45,83.86,0.9500000000000001,0.24,890,2.5,236,3.2,0.0000,0.0000 +2012,7,20,13,30,26,1.27,0.052000000000000005,0.62,55,681,265,0,0,15.3,55,681,0,265,0.294,51.67,72.08,0.9500000000000001,0.24,891,2.4000000000000004,234,3.4000000000000004,12.7708,9.8632 +2012,7,20,14,30,28.6,1.29,0.051000000000000004,0.62,70,811,478,0,0,15.200000000000001,70,811,0,478,0.294,44.02,59.870000000000005,0.9500000000000001,0.24,891,2.4000000000000004,220,2.8000000000000003,25.6152,20.0089 +2012,7,20,15,30,30.900000000000002,1.31,0.051000000000000004,0.62,81,881,676,0,0,14.3,81,881,0,676,0.294,36.57,47.49,0.9500000000000001,0.24,891,2.4000000000000004,196,2.4000000000000004,38.6494,30.3292 +2012,7,20,16,30,32.7,1.33,0.052000000000000005,0.62,89,918,839,0,0,13.5,89,918,0,839,0.294,31.36,35.230000000000004,0.9500000000000001,0.24,891,2.5,175,2.6,49.7177,39.0988 +2012,7,20,17,30,34.2,1.35,0.053,0.62,94,941,955,0,0,12.700000000000001,94,941,0,955,0.294,27.3,23.67,0.9500000000000001,0.24,890,2.5,163,2.9000000000000004,57.7168,45.4377 +2012,7,20,18,30,35.300000000000004,1.35,0.055,0.62,97,947,1012,0,0,12.100000000000001,97,947,0,1012,0.294,24.67,15.01,0.9500000000000001,0.24,890,2.6,157,3.2,61.9023,48.7543 +2012,7,20,19,30,36,1.36,0.056,0.62,98,946,1009,0,0,11.700000000000001,98,946,0,1009,0.294,23.14,15.52,0.9500000000000001,0.24,889,2.6,155,3.3000000000000003,61.7584,48.6401 +2012,7,20,20,30,36.300000000000004,1.36,0.055,0.62,94,934,943,0,0,11.5,94,934,0,943,0.293,22.41,24.64,0.9500000000000001,0.24,888,2.7,154,3.4000000000000004,57.4092,45.1925 +2012,7,20,21,30,36.2,1.34,0.056,0.62,90,908,821,0,0,11.3,90,908,0,821,0.293,22.22,36.31,0.9400000000000001,0.24,888,2.7,153,3.3000000000000003,49.3712,38.8208 +2012,7,20,22,30,35.6,1.33,0.055,0.62,81,868,655,0,1,11,81,868,0,655,0.294,22.59,48.61,0.9400000000000001,0.24,887,2.6,153,3.2,38.2119,29.9773 +2012,7,20,23,30,34.6,1.31,0.055,0.62,70,794,455,0,0,10.8,70,794,0,455,0.294,23.61,60.99,0.9400000000000001,0.24,887,2.6,153,3.1,25.1675,19.6463 +2012,7,21,0,30,32.4,1.29,0.055,0.62,54,655,243,0,0,10.8,54,655,0,243,0.294,26.61,73.19,0.9400000000000001,0.24,888,2.6,154,2.3000000000000003,12.3386,9.5128 +2012,7,21,1,30,29.700000000000003,1.27,0.055,0.62,26,334,55,0,0,11.700000000000001,26,334,0,55,0.295,33.06,84.92,0.9400000000000001,0.24,888,2.6,156,1.5,0.0000,0.0000 +2012,7,21,2,30,28.1,1.25,0.056,0.62,0,0,0,0,0,11.9,0,0,0,0,0.295,36.54,96.24000000000001,0.9400000000000001,0.24,888,2.6,160,1.5,0.0000,0.0000 +2012,7,21,3,30,27.400000000000002,1.23,0.056,0.62,0,0,0,0,0,11.8,0,0,0,0,0.294,37.910000000000004,106.43,0.9400000000000001,0.24,889,2.6,167,1.7000000000000002,0.0000,0.0000 +2012,7,21,4,30,26.6,1.21,0.057,0.62,0,0,0,0,0,11.9,0,0,0,0,0.294,39.96,115.12,0.9400000000000001,0.24,889,2.6,176,1.7000000000000002,0.0000,0.0000 +2012,7,21,5,30,25.700000000000003,1.21,0.056,0.62,0,0,0,0,0,12,0,0,0,0,0.294,42.550000000000004,121.58,0.9400000000000001,0.24,889,2.6,188,1.7000000000000002,0.0000,0.0000 +2012,7,21,6,30,24.900000000000002,1.2,0.056,0.62,0,0,0,0,0,12.200000000000001,0,0,0,0,0.293,45.050000000000004,125.03,0.9400000000000001,0.24,889,2.6,201,1.6,0.0000,0.0000 +2012,7,21,7,30,24.200000000000003,1.2,0.055,0.62,0,0,0,0,0,12.4,0,0,0,0,0.293,47.57,124.88000000000001,0.9400000000000001,0.24,889,2.6,215,1.5,0.0000,0.0000 +2012,7,21,8,30,23.5,1.2,0.055,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.293,50.33,121.15,0.9400000000000001,0.24,889,2.6,230,1.4000000000000001,0.0000,0.0000 +2012,7,21,9,30,22.900000000000002,1.2,0.055,0.62,0,0,0,0,0,12.8,0,0,0,0,0.293,52.980000000000004,114.47,0.9400000000000001,0.24,889,2.6,244,1.3,0.0000,0.0000 +2012,7,21,10,30,22.3,1.21,0.055,0.62,0,0,0,0,0,13,0,0,0,0,0.293,55.78,105.64,0.9400000000000001,0.24,889,2.6,256,1.2000000000000002,0.0000,0.0000 +2012,7,21,11,30,22.700000000000003,1.22,0.055,0.62,0,0,0,0,0,13.3,0,0,0,0,0.293,55.21,95.35000000000001,0.9400000000000001,0.24,889,2.6,269,1.5,0.0000,0.0000 +2012,7,21,12,30,25,1.23,0.056,0.62,29,371,68,0,0,13.5,29,371,0,68,0.294,48.72,83.98,0.9400000000000001,0.24,889,2.6,282,2,0.0000,0.0000 +2012,7,21,13,30,28.700000000000003,1.24,0.057,0.62,56,667,260,0,0,13.600000000000001,56,667,0,260,0.294,39.5,72.19,0.9400000000000001,0.24,890,2.6,296,1.7000000000000002,13.3103,10.2782 +2012,7,21,14,30,32.1,1.26,0.058,0.62,73,798,472,0,0,12.4,73,798,0,472,0.294,30.07,59.980000000000004,0.9400000000000001,0.24,890,2.6,185,1,26.3727,20.5995 +2012,7,21,15,30,34.2,1.27,0.06,0.62,85,867,669,0,0,11,85,867,0,669,0.295,24.310000000000002,47.6,0.9400000000000001,0.24,889,2.6,82,1.4000000000000001,39.3944,30.9130 +2012,7,21,16,30,35.7,1.27,0.063,0.62,94,906,834,0,0,10.3,94,906,0,834,0.295,21.37,35.34,0.9500000000000001,0.24,889,2.6,103,2.2,50.4286,39.6574 +2012,7,21,17,30,36.800000000000004,1.27,0.065,0.62,101,929,950,0,0,10,101,929,0,950,0.296,19.76,23.81,0.9500000000000001,0.24,888,2.6,112,2.7,58.3811,45.9603 +2012,7,21,18,30,37.5,1.29,0.066,0.62,104,939,1010,7,3,9.8,450,445,7,879,0.296,18.830000000000002,15.19,0.9500000000000001,0.24,888,2.6,118,3.2,62.3263,49.0880 +2012,7,21,19,30,37.9,1.28,0.069,0.62,105,936,1007,7,3,9.700000000000001,523,287,7,799,0.297,18.29,15.69,0.9500000000000001,0.24,887,2.6,123,3.6,62.1209,48.9252 +2012,7,21,20,30,37.800000000000004,1.28,0.07200000000000001,0.62,103,922,941,7,3,9.600000000000001,364,553,7,866,0.297,18.23,24.76,0.9400000000000001,0.24,887,2.6,128,3.8000000000000003,57.5851,45.3307 +2012,7,21,21,30,37.4,1.25,0.074,0.62,99,894,819,0,6,9.4,378,109,0,466,0.297,18.43,36.4,0.9400000000000001,0.24,886,2.6,131,3.8000000000000003,49.2434,38.7200 +2012,7,21,22,30,36.7,1.24,0.075,0.62,90,848,650,0,8,9.200000000000001,166,679,0,614,0.297,18.82,48.69,0.9400000000000001,0.24,886,2.6,133,3.6,38.0272,29.8317 +2012,7,21,23,30,35.4,1.23,0.078,0.62,79,766,449,0,8,8.9,10,730,0,363,0.297,19.86,61.08,0.9400000000000001,0.24,886,2.6,136,3.3000000000000003,24.9360,19.4646 +2012,7,22,0,30,33.1,1.23,0.08,0.62,60,616,238,0,7,9,18,510,0,165,0.297,22.7,73.28,0.9400000000000001,0.24,886,2.6,144,2.2,12.0797,9.3119 +2012,7,22,1,30,30.1,1.22,0.081,0.62,27,280,52,7,8,11,35,3,7,36,0.297,30.68,85.03,0.9400000000000001,0.24,886,2.6,159,1.4000000000000001,0.0000,0.0000 +2012,7,22,2,30,28.3,1.22,0.08,0.62,0,0,0,0,8,11.5,0,0,0,0,0.297,35.2,96.36,0.9400000000000001,0.24,887,2.7,174,1.3,0.0000,0.0000 +2012,7,22,3,30,27.3,1.22,0.081,0.62,0,0,0,0,8,11.700000000000001,0,0,0,0,0.298,37.910000000000004,106.57000000000001,0.9400000000000001,0.24,887,2.7,185,1.3,0.0000,0.0000 +2012,7,22,4,30,26.6,1.22,0.084,0.62,0,0,0,0,8,12,0,0,0,0,0.298,40.29,115.28,0.9400000000000001,0.24,887,2.8000000000000003,194,1.2000000000000002,0.0000,0.0000 +2012,7,22,5,30,26,1.22,0.08600000000000001,0.62,0,0,0,0,8,12.200000000000001,0,0,0,0,0.297,42.42,121.76,0.9400000000000001,0.24,887,2.8000000000000003,202,1.1,0.0000,0.0000 +2012,7,22,6,30,25.6,1.22,0.088,0.62,0,0,0,0,1,12.4,0,0,0,0,0.296,43.86,125.22,0.9400000000000001,0.24,887,2.9000000000000004,211,0.9,0.0000,0.0000 +2012,7,22,7,30,25.6,1.22,0.091,0.62,0,0,0,0,0,12.5,0,0,0,0,0.296,44.02,125.07000000000001,0.9400000000000001,0.24,887,2.9000000000000004,225,0.8,0.0000,0.0000 +2012,7,22,8,30,25.700000000000003,1.22,0.093,0.62,0,0,0,0,0,12.5,0,0,0,0,0.295,43.95,121.34,0.9400000000000001,0.24,887,2.9000000000000004,244,0.6000000000000001,0.0000,0.0000 +2012,7,22,9,30,25.6,1.22,0.092,0.62,0,0,0,0,0,12.5,0,0,0,0,0.294,44.27,114.64,0.9400000000000001,0.24,887,2.8000000000000003,275,0.5,0.0000,0.0000 +2012,7,22,10,30,25.1,1.22,0.091,0.62,0,0,0,0,0,12.5,0,0,0,0,0.294,45.5,105.79,0.9400000000000001,0.24,887,2.8000000000000003,317,0.5,0.0000,0.0000 +2012,7,22,11,30,25,1.22,0.089,0.62,0,0,0,0,0,12.5,0,0,0,0,0.293,45.75,95.49,0.9400000000000001,0.24,887,2.8000000000000003,176,0.5,0.0000,0.0000 +2012,7,22,12,30,26.200000000000003,1.23,0.088,0.62,32,308,63,0,0,12.700000000000001,32,308,0,63,0.293,43.160000000000004,84.10000000000001,0.9400000000000001,0.24,888,2.7,21,0.8,0.0000,0.0000 +2012,7,22,13,30,29.3,1.24,0.08600000000000001,0.62,64,622,253,0,0,12.5,64,622,0,253,0.294,35.550000000000004,72.3,0.9400000000000001,0.24,888,2.7,45,1,13.0458,10.0723 +2012,7,22,14,30,32.7,1.26,0.085,0.62,83,765,464,0,0,11.700000000000001,83,765,0,464,0.294,27.76,60.08,0.9400000000000001,0.24,888,2.7,63,1.2000000000000002,26.0250,20.3266 +2012,7,22,15,30,34.9,1.28,0.08600000000000001,0.62,96,841,662,0,0,10.600000000000001,96,841,0,662,0.294,22.82,47.7,0.9400000000000001,0.24,888,2.7,70,1.6,38.9724,30.5811 +2012,7,22,16,30,36.300000000000004,1.3,0.088,0.62,106,884,826,0,0,10.200000000000001,106,884,0,826,0.295,20.63,35.45,0.9400000000000001,0.24,888,2.7,76,1.9000000000000001,50.1176,39.4123 +2012,7,22,17,30,37.300000000000004,1.31,0.092,0.62,114,907,943,0,0,10,114,907,0,943,0.295,19.23,23.94,0.9500000000000001,0.24,888,2.7,83,2.1,58.0666,45.7123 +2012,7,22,18,30,37.9,1.37,0.088,0.62,115,920,1001,0,0,9.700000000000001,115,920,0,1001,0.295,18.25,15.38,0.9500000000000001,0.24,887,2.8000000000000003,89,2.2,54.1289,42.6314 +2012,7,22,19,30,37.9,1.3900000000000001,0.089,0.62,115,919,999,0,0,9.4,115,919,0,999,0.295,17.93,15.870000000000001,0.9500000000000001,0.24,887,2.8000000000000003,96,2.2,49.1863,38.7379 +2012,7,22,20,30,37.6,1.41,0.09,0.62,112,905,934,0,1,9.3,112,905,0,934,0.295,18.1,24.88,0.9500000000000001,0.24,886,2.8000000000000003,106,2.2,52.8758,41.6232 +2012,7,22,21,30,37.300000000000004,1.42,0.093,0.62,108,876,812,0,0,9.3,108,876,0,812,0.295,18.400000000000002,36.5,0.9500000000000001,0.24,886,2.8000000000000003,118,2.3000000000000003,27.9455,21.9733 +2012,7,22,22,30,36.7,1.44,0.093,0.62,98,829,644,0,1,9.200000000000001,98,829,0,644,0.296,18.88,48.78,0.9500000000000001,0.24,885,2.8000000000000003,128,2.4000000000000004,35.6370,27.9561 +2012,7,22,23,30,35.7,1.45,0.094,0.62,84,746,444,0,3,9.200000000000001,250,220,0,356,0.297,19.84,61.17,0.9500000000000001,0.24,885,2.8000000000000003,135,2.6,19.8829,15.5195 +2012,7,23,0,30,33.800000000000004,1.45,0.097,0.62,64,589,232,0,1,9.200000000000001,64,589,0,232,0.298,22.05,73.38,0.9500000000000001,0.24,885,2.9000000000000004,138,2.1,8.1954,6.3167 +2012,7,23,1,30,31.8,1.45,0.10300000000000001,0.62,28,248,49,7,3,10.3,34,1,7,34,0.299,26.66,85.14,0.9500000000000001,0.24,886,2.9000000000000004,141,1.6,0.0000,0.0000 +2012,7,23,2,30,30.6,1.44,0.108,0.62,0,0,0,0,1,10.5,0,0,0,0,0.3,28.91,96.49000000000001,0.9500000000000001,0.24,887,3,145,1.9000000000000001,0.0000,0.0000 +2012,7,23,3,30,29.700000000000003,1.42,0.113,0.62,0,0,0,0,0,10.600000000000001,0,0,0,0,0.3,30.61,106.72,0.9500000000000001,0.24,887,3.1,148,2,0.0000,0.0000 +2012,7,23,4,30,28.8,1.42,0.11900000000000001,0.62,0,0,0,0,0,10.9,0,0,0,0,0.3,32.980000000000004,115.44,0.9500000000000001,0.24,887,3.1,151,2,0.0000,0.0000 +2012,7,23,5,30,27.8,1.42,0.11800000000000001,0.62,0,0,0,0,7,11.4,0,0,0,0,0.3,36.01,121.95,0.9500000000000001,0.24,887,3.1,155,1.8,0.0000,0.0000 +2012,7,23,6,30,26.700000000000003,1.41,0.112,0.62,0,0,0,0,8,11.8,0,0,0,0,0.299,39.49,125.43,0.9500000000000001,0.24,887,3.1,164,1.6,0.0000,0.0000 +2012,7,23,7,30,25.700000000000003,1.3800000000000001,0.107,0.62,0,0,0,0,7,12.100000000000001,0,0,0,0,0.299,42.72,125.28,0.9500000000000001,0.24,887,3.1,179,1.5,0.0000,0.0000 +2012,7,23,8,30,24.8,1.35,0.105,0.62,0,0,0,0,0,12.3,0,0,0,0,0.298,45.68,121.53,0.9500000000000001,0.24,887,3,199,1.5,0.0000,0.0000 +2012,7,23,9,30,24.1,1.31,0.10400000000000001,0.62,0,0,0,0,0,12.4,0,0,0,0,0.298,48.03,114.81,0.9500000000000001,0.24,887,3,215,1.7000000000000002,0.0000,0.0000 +2012,7,23,10,30,23.5,1.27,0.10400000000000001,0.62,0,0,0,0,0,12.4,0,0,0,0,0.297,49.85,105.95,0.9500000000000001,0.24,887,2.9000000000000004,225,1.9000000000000001,0.0000,0.0000 +2012,7,23,11,30,23.700000000000003,1.23,0.10200000000000001,0.62,0,0,0,0,0,12.3,0,0,0,0,0.296,48.86,95.62,0.9500000000000001,0.24,887,2.9000000000000004,233,2.6,0.0000,0.0000 +2012,7,23,12,30,25.400000000000002,1.22,0.1,0.62,32,281,60,0,0,12.200000000000001,32,281,0,60,0.295,43.87,84.22,0.9400000000000001,0.24,888,2.9000000000000004,239,3.6,0.0000,0.0000 +2012,7,23,13,30,28.200000000000003,1.22,0.097,0.62,66,601,248,0,0,12.100000000000001,66,601,0,248,0.295,36.95,72.41,0.9400000000000001,0.24,888,2.9000000000000004,243,4,12.6815,9.7894 +2012,7,23,14,30,31.200000000000003,1.23,0.096,0.62,86,747,458,0,0,12,86,747,0,458,0.295,30.8,60.18,0.9400000000000001,0.24,888,2.9000000000000004,244,3.7,25.5688,19.9692 +2012,7,23,15,30,33.7,1.24,0.097,0.62,101,826,655,0,0,12,101,826,0,655,0.295,26.78,47.800000000000004,0.9400000000000001,0.24,888,2.9000000000000004,235,3.1,38.5519,30.2503 +2012,7,23,16,30,35.5,1.23,0.097,0.62,111,870,819,0,1,12,111,870,0,819,0.296,24.310000000000002,35.56,0.9500000000000001,0.24,887,3,219,2.9000000000000004,49.6265,39.0255 +2012,7,23,17,30,36.800000000000004,1.22,0.101,0.62,119,892,933,0,0,11.9,119,892,0,933,0.296,22.490000000000002,24.080000000000002,0.9500000000000001,0.24,887,3.1,205,2.9000000000000004,57.6305,45.3686 +2012,7,23,18,30,37.5,1.2,0.112,0.62,128,896,991,7,3,11.700000000000001,494,357,7,838,0.297,21.330000000000002,15.58,0.9500000000000001,0.24,886,3.1,196,3.1,61.6341,48.5421 +2012,7,23,19,30,37.5,1.19,0.123,0.62,133,886,985,0,3,11.3,470,25,0,494,0.297,20.740000000000002,16.06,0.96,0.24,885,3.2,191,3.3000000000000003,61.4907,48.4282 +2012,7,23,20,30,37,1.18,0.127,0.62,132,868,918,0,3,11.200000000000001,404,6,0,410,0.297,21.17,25.01,0.96,0.24,885,3.3000000000000003,187,3.4000000000000004,57.0198,44.8849 +2012,7,23,21,30,36.1,1.2,0.121,0.62,121,843,798,0,4,11.200000000000001,278,1,0,279,0.298,22.3,36.6,0.96,0.24,885,3.3000000000000003,180,3.5,48.6851,38.2800 +2012,7,23,22,30,35.300000000000004,1.18,0.122,0.62,111,791,631,0,8,11.200000000000001,317,281,0,502,0.298,23.23,48.88,0.96,0.24,885,3.3000000000000003,174,3.9000000000000004,37.3666,29.3122 +2012,7,23,23,30,34.1,1.16,0.123,0.62,95,701,432,0,8,11.200000000000001,220,68,0,253,0.299,24.830000000000002,61.26,0.96,0.24,885,3.3000000000000003,171,4.4,19.4887,15.2109 +2012,7,24,0,30,32.5,1.1400000000000001,0.129,0.62,72,532,223,7,2,11.3,142,195,7,197,0.299,27.38,73.48,0.96,0.24,885,3.3000000000000003,170,4.9,11.5125,8.8720 +2012,7,24,1,30,30.700000000000003,1.12,0.129,0.62,29,190,45,7,3,11.8,35,1,7,36,0.299,31.29,85.25,0.96,0.24,886,3.3000000000000003,171,5.300000000000001,0.0000,0.0000 +2012,7,24,2,30,29,1.1,0.122,0.62,0,0,0,0,0,12.4,0,0,0,0,0.299,36.03,96.62,0.96,0.24,886,3.3000000000000003,173,5.4,0.0000,0.0000 +2012,7,24,3,30,27.5,1.08,0.116,0.62,0,0,0,0,1,13,0,0,0,0,0.299,40.87,106.87,0.9500000000000001,0.24,887,3.3000000000000003,177,5.2,0.0000,0.0000 +2012,7,24,4,30,26.5,1.08,0.116,0.62,0,0,0,0,7,13.4,0,0,0,0,0.299,44.5,115.61,0.9500000000000001,0.24,887,3.4000000000000004,179,4.7,0.0000,0.0000 +2012,7,24,5,30,25.700000000000003,1.08,0.117,0.62,0,0,0,0,7,13.700000000000001,0,0,0,0,0.298,47.53,122.14,0.96,0.24,887,3.4000000000000004,177,4.3,0.0000,0.0000 +2012,7,24,6,30,25,1.1,0.117,0.62,0,0,0,0,7,13.9,0,0,0,0,0.298,50.28,125.63000000000001,0.96,0.24,887,3.5,177,4.1000000000000005,0.0000,0.0000 +2012,7,24,7,30,24.3,1.1300000000000001,0.116,0.62,0,0,0,0,4,14,0,0,0,0,0.297,52.730000000000004,125.49000000000001,0.96,0.24,886,3.5,180,4,0.0000,0.0000 +2012,7,24,8,30,23.8,1.1400000000000001,0.114,0.62,0,0,0,0,8,14,0,0,0,0,0.297,54.29,121.73,0.96,0.24,886,3.5,186,3.8000000000000003,0.0000,0.0000 +2012,7,24,9,30,23.400000000000002,1.1500000000000001,0.111,0.62,0,0,0,0,8,13.9,0,0,0,0,0.297,55.19,114.99000000000001,0.96,0.24,886,3.5,193,3.6,0.0000,0.0000 +2012,7,24,10,30,22.900000000000002,1.1500000000000001,0.111,0.62,0,0,0,0,8,13.8,0,0,0,0,0.297,56.45,106.10000000000001,0.96,0.24,886,3.4000000000000004,196,3.2,0.0000,0.0000 +2012,7,24,11,30,22.700000000000003,1.1500000000000001,0.115,0.62,0,0,0,0,7,13.8,0,0,0,0,0.296,57.300000000000004,95.76,0.96,0.24,887,3.4000000000000004,189,2.9000000000000004,0.0000,0.0000 +2012,7,24,12,30,23.700000000000003,1.1300000000000001,0.122,0.62,33,235,57,7,7,14,32,1,7,32,0.296,54.39,84.34,0.96,0.24,887,3.4000000000000004,179,3.2,0.0000,0.0000 +2012,7,24,13,30,25.900000000000002,1.12,0.132,0.62,75,543,239,0,0,13.9,75,543,0,239,0.296,47.54,72.52,0.96,0.24,887,3.4000000000000004,176,3.7,12.4182,9.5845 +2012,7,24,14,30,28.6,1.11,0.132,0.62,100,700,447,0,0,13.600000000000001,100,700,0,447,0.296,39.79,60.29,0.96,0.24,887,3.3000000000000003,174,4,25.2233,19.6983 +2012,7,24,15,30,31.400000000000002,1.11,0.124,0.62,113,793,645,0,3,13.100000000000001,350,273,0,533,0.296,32.81,47.910000000000004,0.96,0.24,886,3.3000000000000003,170,4.5,38.1316,29.9198 +2012,7,24,16,30,33.800000000000004,1.11,0.11800000000000001,0.62,121,849,811,0,0,12.600000000000001,121,849,0,811,0.297,27.71,35.68,0.96,0.24,886,3.2,168,5.1000000000000005,49.1955,38.6861 +2012,7,24,17,30,35.5,1.1,0.11800000000000001,0.62,128,877,928,0,0,12.100000000000001,128,877,0,928,0.297,24.35,24.23,0.96,0.24,885,3.2,171,5.6000000000000005,57.0105,44.8801 +2012,7,24,18,30,36.5,1.1400000000000001,0.108,0.62,126,897,989,0,0,11.600000000000001,126,897,0,989,0.298,22.39,15.780000000000001,0.96,0.24,884,3.2,174,5.9,51.5909,40.6319 +2012,7,24,19,30,36.800000000000004,1.12,0.122,0.62,133,886,984,0,0,11.3,133,886,0,984,0.298,21.52,16.25,0.96,0.24,883,3.2,178,5.9,30.4029,23.9442 +2012,7,24,20,30,36.6,1.1,0.137,0.62,137,861,917,0,3,11,366,2,0,368,0.298,21.38,25.14,0.96,0.24,883,3.2,181,5.7,25.0263,19.7001 +2012,7,24,21,30,36.2,1.08,0.14300000000000002,0.62,132,826,794,0,0,10.8,132,826,0,794,0.298,21.53,36.71,0.96,0.24,882,3.2,183,5.5,16.7246,13.1500 +2012,7,24,22,30,35.7,1.07,0.149,0.62,123,767,626,0,8,10.5,209,602,0,605,0.299,21.77,48.980000000000004,0.96,0.24,882,3.2,184,5.300000000000001,29.1172,22.8404 +2012,7,24,23,30,34.7,1.05,0.156,0.62,107,668,427,0,8,10.3,234,159,0,310,0.299,22.57,61.36,0.96,0.24,882,3.1,184,5.1000000000000005,13.8424,10.8034 +2012,7,25,0,30,33.4,1.04,0.16,0.62,80,492,219,0,8,10,144,194,0,199,0.299,23.94,73.59,0.96,0.24,882,3.1,181,4.5,9.7667,7.5253 +2012,7,25,1,30,31.8,1.04,0.161,0.62,30,151,43,7,7,10.100000000000001,34,3,7,34,0.3,26.28,85.36,0.96,0.24,882,3.1,174,4,0.0000,0.0000 +2012,7,25,2,30,30.5,1.05,0.158,0.62,0,0,0,0,7,10.3,0,0,0,0,0.3,28.76,96.75,0.96,0.24,883,3.1,170,4,0.0000,0.0000 +2012,7,25,3,30,29.6,1.06,0.153,0.62,0,0,0,0,7,10.600000000000001,0,0,0,0,0.3,30.92,107.02,0.96,0.24,883,3.2,172,4.1000000000000005,0.0000,0.0000 +2012,7,25,4,30,28.8,1.08,0.14300000000000002,0.62,0,0,0,0,8,11,0,0,0,0,0.299,33.12,115.79,0.96,0.24,883,3.2,178,4.1000000000000005,0.0000,0.0000 +2012,7,25,5,30,28.1,1.1,0.134,0.62,0,0,0,0,7,11.3,0,0,0,0,0.298,35.15,122.34,0.96,0.24,883,3.3000000000000003,185,4.1000000000000005,0.0000,0.0000 +2012,7,25,6,30,27.5,1.12,0.126,0.62,0,0,0,0,7,11.600000000000001,0,0,0,0,0.297,37.2,125.85000000000001,0.96,0.24,883,3.5,190,4.3,0.0000,0.0000 +2012,7,25,7,30,27,1.1500000000000001,0.117,0.62,0,0,0,0,8,12,0,0,0,0,0.296,39.31,125.7,0.96,0.24,883,3.6,194,4.5,0.0000,0.0000 +2012,7,25,8,30,26.3,1.18,0.106,0.62,0,0,0,0,0,12.4,0,0,0,0,0.296,42.050000000000004,121.93,0.96,0.24,883,3.6,193,4.5,0.0000,0.0000 +2012,7,25,9,30,25.5,1.23,0.091,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.296,44.78,115.17,0.96,0.24,883,3.6,190,4.3,0.0000,0.0000 +2012,7,25,10,30,24.700000000000003,1.27,0.077,0.62,0,0,0,0,0,12.700000000000001,0,0,0,0,0.297,47.14,106.26,0.9500000000000001,0.24,883,3.4000000000000004,188,4.2,0.0000,0.0000 +2012,7,25,11,30,24.3,1.3,0.069,0.62,0,0,0,0,1,12.8,0,0,0,0,0.297,48.52,95.9,0.9500000000000001,0.24,883,3.4000000000000004,190,4.2,0.0000,0.0000 +2012,7,25,12,30,25.3,1.33,0.064,0.62,28,327,59,7,3,13,38,1,7,38,0.297,46.300000000000004,84.46000000000001,0.9500000000000001,0.24,883,3.3000000000000003,198,4.6000000000000005,0.0000,0.0000 +2012,7,25,13,30,27.900000000000002,1.35,0.063,0.62,57,640,248,0,4,13.4,34,0,0,34,0.298,40.93,72.64,0.9500000000000001,0.24,883,3.3000000000000003,209,5.1000000000000005,11.9552,9.2257 +2012,7,25,14,30,30.8,1.37,0.061,0.62,73,779,458,0,4,13.4,123,0,0,123,0.298,34.57,60.4,0.9500000000000001,0.24,883,3.3000000000000003,217,5.2,24.6014,19.2114 +2012,7,25,15,30,33,1.4000000000000001,0.06,0.62,84,854,655,0,4,12.8,368,153,0,471,0.297,29.41,48.02,0.9500000000000001,0.24,883,3.3000000000000003,219,5.1000000000000005,31.0178,24.3374 +2012,7,25,16,30,34.6,1.42,0.06,0.62,91,895,817,0,3,12.600000000000001,431,254,0,637,0.297,26.45,35.79,0.9500000000000001,0.24,882,3.4000000000000004,218,4.9,48.7037,38.2987 +2012,7,25,17,30,35.9,1.44,0.06,0.62,96,919,934,7,3,12.600000000000001,467,319,7,758,0.296,24.63,24.37,0.9500000000000001,0.24,882,3.4000000000000004,216,4.7,56.6955,44.6316 +2012,7,25,18,30,36.9,1.37,0.066,0.62,102,926,992,0,1,12.5,102,926,0,992,0.296,23.21,15.98,0.9500000000000001,0.24,881,3.4000000000000004,214,4.5,60.8789,47.9466 +2012,7,25,19,30,37.6,1.36,0.068,0.62,103,924,989,0,0,12.4,103,924,0,989,0.295,22.13,16.44,0.9500000000000001,0.24,881,3.4000000000000004,213,4.4,60.5516,47.6878 +2012,7,25,20,30,37.7,1.34,0.07100000000000001,0.62,102,909,924,0,3,12.200000000000001,466,135,0,588,0.295,21.77,25.28,0.9500000000000001,0.24,880,3.4000000000000004,214,4.4,22.4592,17.6792 +2012,7,25,21,30,37.4,1.31,0.088,0.62,105,869,800,0,4,11.9,411,75,0,471,0.294,21.7,36.82,0.9500000000000001,0.24,880,3.4000000000000004,216,4.4,47.5857,37.4145 +2012,7,25,22,30,36.6,1.29,0.091,0.62,97,818,633,7,2,11.5,256,564,7,625,0.294,22.01,49.08,0.96,0.24,879,3.4000000000000004,218,4.3,35.0792,27.5164 +2012,7,25,23,30,35.300000000000004,1.27,0.09,0.62,82,738,435,7,2,11.100000000000001,221,333,7,380,0.293,23.1,61.47,0.96,0.24,879,3.3000000000000003,219,3.9000000000000004,16.9504,13.2282 +2012,7,26,0,30,32.800000000000004,1.25,0.08600000000000001,0.62,61,588,226,0,8,11.100000000000001,4,0,0,4,0.293,26.48,73.7,0.9500000000000001,0.24,880,3.3000000000000003,220,2.7,9.8558,7.5926 +2012,7,26,1,30,29.700000000000003,1.24,0.081,0.62,26,251,45,7,6,13.4,23,1,7,23,0.293,36.76,85.49,0.9500000000000001,0.24,880,3.2,221,1.6,0.0000,0.0000 +2012,7,26,2,30,27.700000000000003,1.25,0.076,0.62,0,0,0,0,6,14.5,0,0,0,0,0.293,44.58,96.9,0.9500000000000001,0.24,881,3.1,222,1.4000000000000001,0.0000,0.0000 +2012,7,26,3,30,26.8,1.26,0.07200000000000001,0.62,0,0,0,0,6,14.600000000000001,0,0,0,0,0.292,47.06,107.18,0.9500000000000001,0.24,881,3.1,223,1.3,0.0000,0.0000 +2012,7,26,4,30,26.1,1.27,0.069,0.62,0,0,0,0,6,14.600000000000001,0,0,0,0,0.292,49,115.98,0.9500000000000001,0.24,881,3.1,224,1.1,0.0000,0.0000 +2012,7,26,5,30,25.400000000000002,1.29,0.067,0.62,0,0,0,0,7,14.5,0,0,0,0,0.291,50.76,122.55,0.9500000000000001,0.24,881,3.1,228,0.9,0.0000,0.0000 +2012,7,26,6,30,24.700000000000003,1.31,0.066,0.62,0,0,0,0,4,14.200000000000001,0,0,0,0,0.291,51.97,126.07000000000001,0.9500000000000001,0.24,881,3.2,249,0.7000000000000001,0.0000,0.0000 +2012,7,26,7,30,23.8,1.32,0.067,0.62,0,0,0,0,8,14.100000000000001,0,0,0,0,0.291,54.47,125.92,0.9500000000000001,0.24,881,3.2,134,0.8,0.0000,0.0000 +2012,7,26,8,30,22.900000000000002,1.34,0.067,0.62,0,0,0,0,7,13.9,0,0,0,0,0.292,56.89,122.13,0.9500000000000001,0.24,881,3.2,14,1.3,0.0000,0.0000 +2012,7,26,9,30,22.400000000000002,1.36,0.066,0.62,0,0,0,0,7,14,0,0,0,0,0.293,59.19,115.35000000000001,0.9500000000000001,0.24,882,3.2,27,1.6,0.0000,0.0000 +2012,7,26,10,30,22,1.3800000000000001,0.065,0.62,0,0,0,0,6,14.4,0,0,0,0,0.294,62.160000000000004,106.42,0.9500000000000001,0.24,882,3.3000000000000003,29,1.7000000000000002,0.0000,0.0000 +2012,7,26,11,30,22.1,1.4000000000000001,0.064,0.62,0,0,0,0,3,14.8,0,0,0,0,0.294,63.22,96.04,0.9500000000000001,0.24,883,3.3000000000000003,31,2.1,0.0000,0.0000 +2012,7,26,12,30,23.6,1.42,0.065,0.62,27,321,58,0,0,15.100000000000001,27,321,0,58,0.295,58.96,84.59,0.9500000000000001,0.24,883,3.4000000000000004,37,2.5,0.0000,0.0000 +2012,7,26,13,30,26.400000000000002,1.42,0.065,0.62,57,634,245,0,0,14.9,57,634,0,245,0.296,49.34,72.75,0.9500000000000001,0.24,884,3.4000000000000004,47,2.7,1.6988,1.3107 +2012,7,26,14,30,29.400000000000002,1.42,0.066,0.62,74,773,455,0,0,13.700000000000001,74,773,0,455,0.296,38.33,60.5,0.9500000000000001,0.24,884,3.3000000000000003,55,2.6,6.7651,5.2826 +2012,7,26,15,30,31.6,1.41,0.068,0.62,87,846,652,0,0,12.9,87,846,0,652,0.297,31.98,48.120000000000005,0.9500000000000001,0.24,884,3.3000000000000003,61,2.8000000000000003,27.3997,21.4979 +2012,7,26,16,30,33.4,1.41,0.069,0.62,96,889,816,0,0,12.8,96,889,0,816,0.297,28.77,35.910000000000004,0.9500000000000001,0.24,884,3.3000000000000003,70,3.1,38.2462,30.0749 +2012,7,26,17,30,34.800000000000004,1.41,0.07100000000000001,0.62,102,912,932,0,0,12.8,102,912,0,932,0.296,26.61,24.52,0.9500000000000001,0.24,884,3.3000000000000003,80,3.4000000000000004,46.3022,36.4495 +2012,7,26,18,30,35.800000000000004,1.62,0.059000000000000004,0.62,98,933,994,0,0,12.9,98,933,0,994,0.296,25.22,16.19,0.9500000000000001,0.24,884,3.3000000000000003,89,3.7,61.0553,48.0851 +2012,7,26,19,30,36.2,1.59,0.064,0.62,100,929,990,0,1,12.9,100,929,0,990,0.295,24.75,16.65,0.9500000000000001,0.24,883,3.3000000000000003,98,3.9000000000000004,60.8511,47.9234 +2012,7,26,20,30,36,1.55,0.073,0.62,103,910,924,0,0,13,103,910,0,924,0.295,25.14,25.43,0.96,0.24,883,3.3000000000000003,106,4.1000000000000005,35.8800,28.2433 +2012,7,26,21,30,35.4,1.6,0.076,0.62,98,881,803,0,0,13,98,881,0,803,0.296,26,36.94,0.96,0.24,883,3.3000000000000003,114,4.3,28.2215,22.1890 +2012,7,26,22,30,34.2,1.6,0.079,0.62,91,832,634,0,0,13,91,832,0,634,0.297,27.87,49.19,0.96,0.24,883,3.3000000000000003,120,4.4,36.2261,28.4153 +2012,7,26,23,30,32.800000000000004,1.6,0.082,0.62,79,750,436,0,0,13.3,79,750,0,436,0.297,30.73,61.58,0.96,0.24,883,3.2,126,4.4,20.7636,16.2030 +2012,7,27,0,30,30.900000000000002,1.59,0.083,0.62,59,597,226,0,0,13.700000000000001,59,597,0,226,0.298,35.13,73.82000000000001,0.96,0.24,884,3.2,133,3.9000000000000004,0.1979,0.1524 +2012,7,27,1,30,28.8,1.6,0.081,0.62,24,261,44,0,1,14.4,24,261,0,44,0.299,41.35,85.61,0.9500000000000001,0.24,884,3.1,141,3.4000000000000004,0.0000,0.0000 +2012,7,27,2,30,27.200000000000003,1.6,0.076,0.62,0,0,0,0,7,15.100000000000001,0,0,0,0,0.299,47.46,97.04,0.9500000000000001,0.24,885,3.1,146,3.2,0.0000,0.0000 +2012,7,27,3,30,26,1.57,0.074,0.62,0,0,0,0,6,15.600000000000001,0,0,0,0,0.299,52.67,107.35000000000001,0.9500000000000001,0.24,886,3,150,3.1,0.0000,0.0000 +2012,7,27,4,30,25,1.53,0.074,0.62,0,0,0,0,6,16.1,0,0,0,0,0.299,57.82,116.16,0.9500000000000001,0.24,886,3,154,2.8000000000000003,0.0000,0.0000 +2012,7,27,5,30,24.1,1.47,0.077,0.62,0,0,0,0,6,16.6,0,0,0,0,0.298,62.9,122.76,0.9500000000000001,0.24,886,3,159,2.3000000000000003,0.0000,0.0000 +2012,7,27,6,30,23.200000000000003,1.42,0.082,0.62,0,0,0,0,6,17,0,0,0,0,0.297,68,126.29,0.96,0.24,887,2.9000000000000004,164,1.7000000000000002,0.0000,0.0000 +2012,7,27,7,30,22.400000000000002,1.37,0.08700000000000001,0.62,0,0,0,0,7,17.2,0,0,0,0,0.297,72.46000000000001,126.14,0.96,0.24,887,2.9000000000000004,169,1.1,0.0000,0.0000 +2012,7,27,8,30,21.700000000000003,1.34,0.093,0.62,0,0,0,0,7,17.400000000000002,0,0,0,0,0.296,76.34,122.34,0.96,0.24,887,2.8000000000000003,175,0.7000000000000001,0.0000,0.0000 +2012,7,27,9,30,21.200000000000003,1.31,0.097,0.62,0,0,0,0,0,17.5,0,0,0,0,0.295,79.36,115.54,0.96,0.24,887,2.8000000000000003,182,0.6000000000000001,0.0000,0.0000 +2012,7,27,10,30,20.900000000000002,1.3,0.101,0.62,0,0,0,0,0,17.6,0,0,0,0,0.295,81.52,106.58,0.96,0.24,887,2.8000000000000003,189,0.5,0.0000,0.0000 +2012,7,27,11,30,21.1,1.29,0.10300000000000001,0.62,0,0,0,0,0,17.8,0,0,0,0,0.294,81.21000000000001,96.18,0.96,0.24,888,2.8000000000000003,192,0.7000000000000001,0.0000,0.0000 +2012,7,27,12,30,23,1.29,0.105,0.62,31,257,54,0,0,17.900000000000002,31,257,0,54,0.293,72.84,84.71000000000001,0.96,0.24,888,2.9000000000000004,202,0.7000000000000001,0.0000,0.0000 +2012,7,27,13,30,26,1.29,0.10400000000000001,0.62,67,584,240,0,0,17.400000000000002,67,584,0,240,0.293,58.97,72.86,0.96,0.24,888,3,157,1,12.2291,9.4337 +2012,7,27,14,30,28.6,1.28,0.10200000000000001,0.62,88,735,449,0,0,16.3,88,735,0,449,0.292,47.43,60.61,0.96,0.24,888,3.1,103,2,25.0103,19.5284 +2012,7,27,15,30,30.400000000000002,1.28,0.10200000000000001,0.62,103,815,646,0,0,15.8,103,815,0,646,0.292,41.34,48.230000000000004,0.96,0.24,888,3.2,107,2.8000000000000003,37.9163,29.7485 +2012,7,27,16,30,31.8,1.27,0.10200000000000001,0.62,113,861,809,0,0,15.600000000000001,113,861,0,809,0.292,37.74,36.03,0.96,0.24,888,3.3000000000000003,116,3.4000000000000004,48.9821,38.5165 +2012,7,27,17,30,32.800000000000004,1.25,0.106,0.62,121,883,924,0,1,15.5,121,883,0,924,0.292,35.47,24.67,0.96,0.24,888,3.4000000000000004,125,3.7,56.9212,44.8084 +2012,7,27,18,30,33.4,1.53,0.095,0.62,117,904,984,0,1,15.5,117,904,0,984,0.292,34.18,16.4,0.96,0.24,888,3.5,133,4,61.1695,48.1746 +2012,7,27,19,30,33.5,1.55,0.1,0.62,119,898,979,7,3,15.4,510,286,7,784,0.292,33.71,16.86,0.96,0.24,887,3.6,140,4.2,60.9035,47.9642 +2012,7,27,20,30,33.4,1.53,0.106,0.62,119,881,913,0,3,15.100000000000001,463,130,0,581,0.291,33.410000000000004,25.580000000000002,0.96,0.24,887,3.6,144,4.3,56.3728,44.3739 +2012,7,27,21,30,33.1,1.67,0.099,0.62,108,859,794,0,0,14.8,108,859,0,794,0.291,33.230000000000004,37.06,0.9500000000000001,0.24,886,3.6,145,4.4,48.1026,37.8198 +2012,7,27,22,30,32.5,1.6500000000000001,0.093,0.62,96,815,627,0,0,14.4,96,815,0,627,0.291,33.6,49.31,0.9500000000000001,0.24,886,3.6,146,4.3,36.7335,28.8124 +2012,7,27,23,30,31.6,1.61,0.088,0.62,80,738,430,0,0,14.100000000000001,80,738,0,430,0.291,34.62,61.690000000000005,0.9500000000000001,0.24,887,3.5,147,4.2,23.8070,18.5766 +2012,7,28,0,30,30.200000000000003,1.55,0.08700000000000001,0.62,60,586,222,0,0,13.8,60,586,0,222,0.291,36.77,73.94,0.9500000000000001,0.24,887,3.4000000000000004,149,3.6,11.1693,8.6012 +2012,7,28,1,30,28.5,1.46,0.088,0.62,24,236,42,0,0,13.8,24,236,0,42,0.291,40.62,85.74,0.9500000000000001,0.24,888,3.4000000000000004,153,2.8000000000000003,0.0000,0.0000 +2012,7,28,2,30,27.1,1.36,0.088,0.62,0,0,0,0,0,14,0,0,0,0,0.291,44.51,97.19,0.9500000000000001,0.24,888,3.4000000000000004,158,2.5,0.0000,0.0000 +2012,7,28,3,30,26.1,1.25,0.09,0.62,0,0,0,0,0,14.200000000000001,0,0,0,0,0.291,47.81,107.52,0.9500000000000001,0.24,889,3.4000000000000004,165,2.4000000000000004,0.0000,0.0000 +2012,7,28,4,30,25.200000000000003,1.12,0.096,0.62,0,0,0,0,0,14.5,0,0,0,0,0.29,51.6,116.36,0.9500000000000001,0.24,889,3.4000000000000004,172,2.2,0.0000,0.0000 +2012,7,28,5,30,24.400000000000002,0.99,0.10400000000000001,0.62,0,0,0,0,0,14.9,0,0,0,0,0.29,55.35,122.98,0.96,0.24,889,3.4000000000000004,180,1.9000000000000001,0.0000,0.0000 +2012,7,28,6,30,23.700000000000003,0.87,0.111,0.62,0,0,0,0,0,15.200000000000001,0,0,0,0,0.289,59.08,126.52,0.96,0.24,889,3.3000000000000003,188,1.8,0.0000,0.0000 +2012,7,28,7,30,23,0.78,0.11800000000000001,0.62,0,0,0,0,0,15.600000000000001,0,0,0,0,0.289,62.980000000000004,126.37,0.96,0.24,889,3.3000000000000003,196,1.6,0.0000,0.0000 +2012,7,28,8,30,22.400000000000002,0.72,0.123,0.62,0,0,0,0,0,15.9,0,0,0,0,0.289,66.6,122.55,0.96,0.24,889,3.2,204,1.5,0.0000,0.0000 +2012,7,28,9,30,21.900000000000002,0.6900000000000001,0.126,0.62,0,0,0,0,0,16.2,0,0,0,0,0.28800000000000003,70.01,115.73,0.96,0.24,890,3.2,211,1.3,0.0000,0.0000 +2012,7,28,10,30,21.3,0.66,0.127,0.62,0,0,0,0,0,16.5,0,0,0,0,0.28800000000000003,73.88,106.75,0.96,0.24,890,3.1,216,1.1,0.0000,0.0000 +2012,7,28,11,30,21.5,0.65,0.127,0.62,0,0,0,0,0,16.7,0,0,0,0,0.28700000000000003,74.16,96.32000000000001,0.96,0.24,890,3,220,1.2000000000000002,0.0000,0.0000 +2012,7,28,12,30,23.400000000000002,0.66,0.125,0.62,33,187,50,0,0,17,33,187,0,50,0.28700000000000003,67.2,84.83,0.96,0.24,891,3,217,2,0.0000,0.0000 +2012,7,28,13,30,26,0.67,0.123,0.62,76,538,233,0,0,17.6,76,538,0,233,0.28700000000000003,59.94,72.98,0.96,0.24,891,2.9000000000000004,206,2.7,11.9673,9.2301 +2012,7,28,14,30,28.3,0.7000000000000001,0.11800000000000001,0.62,98,708,445,0,0,17.5,98,708,0,445,0.28700000000000003,51.88,60.72,0.96,0.24,891,2.9000000000000004,193,3,24.6642,19.2568 +2012,7,28,15,30,30.3,0.74,0.11,0.62,110,805,645,0,0,16.6,110,805,0,645,0.28800000000000003,43.84,48.34,0.96,0.24,891,2.9000000000000004,183,3.4000000000000004,37.5534,29.4630 +2012,7,28,16,30,32,0.79,0.10400000000000001,0.62,117,857,809,7,3,15.700000000000001,391,386,7,703,0.289,37.5,36.15,0.96,0.24,890,3.1,179,3.8000000000000003,48.5505,38.1765 +2012,7,28,17,30,33.5,0.84,0.10200000000000001,0.62,122,885,925,7,2,15,360,558,7,866,0.289,33.03,24.82,0.96,0.24,890,3.2,179,4.2,56.4229,44.4157 +2012,7,28,18,30,34.5,1.09,0.079,0.62,111,915,988,7,2,14.600000000000001,280,692,7,943,0.29,30.36,16.62,0.96,0.24,889,3.3000000000000003,181,4.6000000000000005,60.5452,47.6825 +2012,7,28,19,30,35.1,1.1300000000000001,0.079,0.62,111,915,985,0,1,14.200000000000001,111,915,0,985,0.29,28.67,17.080000000000002,0.96,0.24,889,3.3000000000000003,183,4.9,48.2233,37.9777 +2012,7,28,20,30,35.300000000000004,1.12,0.081,0.62,109,901,920,0,1,13.600000000000001,109,901,0,920,0.29,27.23,25.740000000000002,0.96,0.24,888,3.3000000000000003,183,5,35.4402,27.8964 +2012,7,28,21,30,35.2,1.17,0.07200000000000001,0.62,98,885,803,0,1,12.700000000000001,98,885,0,803,0.29,25.86,37.2,0.9500000000000001,0.24,888,3.1,182,5.1000000000000005,47.5517,37.3861 +2012,7,28,22,30,34.6,1.1,0.075,0.62,91,837,635,0,0,11.700000000000001,91,837,0,635,0.289,24.97,49.43,0.9500000000000001,0.24,887,3,181,5.2,36.3125,28.4812 +2012,7,28,23,30,33.4,1.03,0.077,0.62,79,755,435,0,0,10.8,79,755,0,435,0.289,25.22,61.82,0.9500000000000001,0.24,887,2.8000000000000003,181,5.1000000000000005,23.4630,18.3069 +2012,7,29,0,30,31.5,0.98,0.078,0.62,59,598,223,0,0,10.200000000000001,59,598,0,223,0.28800000000000003,27,74.07000000000001,0.9400000000000001,0.24,887,2.7,182,4.4,10.9596,8.4380 +2012,7,29,1,30,29.1,0.96,0.076,0.62,24,236,41,0,0,10.200000000000001,24,236,0,41,0.28800000000000003,30.92,85.88,0.9400000000000001,0.24,888,2.6,183,3.5,0.0000,0.0000 +2012,7,29,2,30,27.3,0.9500000000000001,0.073,0.62,0,0,0,0,0,10.4,0,0,0,0,0.28800000000000003,34.800000000000004,97.35000000000001,0.9400000000000001,0.24,889,2.5,185,3.2,0.0000,0.0000 +2012,7,29,3,30,26.1,0.9400000000000001,0.07,0.62,0,0,0,0,0,10.4,0,0,0,0,0.28800000000000003,37.24,107.7,0.9400000000000001,0.24,889,2.4000000000000004,188,3,0.0000,0.0000 +2012,7,29,4,30,25.1,0.91,0.069,0.62,0,0,0,0,0,10.200000000000001,0,0,0,0,0.28800000000000003,39.17,116.56,0.9400000000000001,0.24,889,2.3000000000000003,192,2.9000000000000004,0.0000,0.0000 +2012,7,29,5,30,24.200000000000003,0.88,0.069,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28700000000000003,40.86,123.2,0.9400000000000001,0.24,889,2.2,198,2.7,0.0000,0.0000 +2012,7,29,6,30,23.3,0.84,0.069,0.62,0,0,0,0,0,9.9,0,0,0,0,0.28700000000000003,42.75,126.76,0.9400000000000001,0.24,889,2.2,206,2.5,0.0000,0.0000 +2012,7,29,7,30,22.6,0.8,0.07100000000000001,0.62,0,0,0,0,0,9.9,0,0,0,0,0.28600000000000003,44.53,126.60000000000001,0.9400000000000001,0.24,889,2.2,215,2.3000000000000003,0.0000,0.0000 +2012,7,29,8,30,22,0.78,0.073,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28600000000000003,46.78,122.77,0.9400000000000001,0.24,889,2.2,223,2.3000000000000003,0.0000,0.0000 +2012,7,29,9,30,21.6,0.77,0.076,0.62,0,0,0,0,0,10.600000000000001,0,0,0,0,0.28600000000000003,49.620000000000005,115.92,0.9400000000000001,0.24,890,2.2,228,2.3000000000000003,0.0000,0.0000 +2012,7,29,10,30,21.200000000000003,0.77,0.078,0.62,0,0,0,0,0,11.4,0,0,0,0,0.28600000000000003,53.71,106.91,0.9400000000000001,0.24,890,2.2,232,2.3000000000000003,0.0000,0.0000 +2012,7,29,11,30,21.400000000000002,0.78,0.078,0.62,0,0,0,0,0,12.4,0,0,0,0,0.28600000000000003,56.39,96.47,0.9500000000000001,0.24,890,2.2,236,2.7,0.0000,0.0000 +2012,7,29,12,30,23.3,0.8200000000000001,0.075,0.62,29,282,54,0,0,13.200000000000001,29,282,0,54,0.28600000000000003,53.11,84.96000000000001,0.9500000000000001,0.24,890,2.2,236,3.5,0.0000,0.0000 +2012,7,29,13,30,26.400000000000002,0.86,0.07100000000000001,0.62,61,635,245,0,0,14.600000000000001,61,635,0,245,0.28700000000000003,48.21,73.10000000000001,0.9500000000000001,0.24,890,2.2,232,4.5,11.6052,8.9492 +2012,7,29,14,30,29.400000000000002,0.89,0.066,0.62,77,788,461,0,0,15.4,77,788,0,461,0.28700000000000003,42.71,60.83,0.9400000000000001,0.24,890,2.2,226,4.7,24.4282,19.0713 +2012,7,29,15,30,32,0.92,0.063,0.62,87,868,663,0,0,14.3,87,868,0,663,0.28700000000000003,34.18,48.45,0.9400000000000001,0.24,890,2.2,219,4.4,37.4813,29.4055 +2012,7,29,16,30,34.1,0.9500000000000001,0.06,0.62,94,915,832,0,0,12.700000000000001,94,915,0,832,0.28700000000000003,27.51,36.27,0.9400000000000001,0.24,889,2.2,210,4.3,42.1791,33.1660 +2012,7,29,17,30,35.6,0.96,0.058,0.62,98,941,951,0,0,11.3,98,941,0,951,0.28700000000000003,23.05,24.98,0.9400000000000001,0.24,889,2.2,202,4.3,52.8721,41.6201 +2012,7,29,18,30,36.7,0.96,0.053,0.62,97,956,1013,0,0,10.3,97,956,0,1013,0.28600000000000003,20.25,16.84,0.9400000000000001,0.24,888,2.2,195,4.4,58.0134,45.6882 +2012,7,29,19,30,37.300000000000004,0.97,0.054,0.62,98,953,1007,0,0,9.700000000000001,98,953,0,1007,0.28500000000000003,18.900000000000002,17.3,0.9400000000000001,0.24,887,2.3000000000000003,191,4.5,60.5769,47.7061 +2012,7,29,20,30,37.5,0.98,0.055,0.62,96,940,941,0,0,9.5,96,940,0,941,0.28400000000000003,18.41,25.91,0.9400000000000001,0.24,887,2.3000000000000003,188,4.5,56.1079,44.1643 +2012,7,29,21,30,37.2,0.96,0.053,0.62,89,917,818,0,0,9.4,89,917,0,818,0.28400000000000003,18.53,37.33,0.9400000000000001,0.24,886,2.3000000000000003,185,4.5,48.0768,37.7982 +2012,7,29,22,30,36.4,0.9500000000000001,0.053,0.62,81,872,647,0,0,9.3,81,872,0,647,0.28400000000000003,19.25,49.550000000000004,0.9400000000000001,0.24,886,2.3000000000000003,182,4.5,36.7600,28.8313 +2012,7,29,23,30,35.1,0.9500000000000001,0.054,0.62,70,793,443,0,0,9.200000000000001,70,793,0,443,0.28400000000000003,20.64,61.940000000000005,0.9400000000000001,0.24,886,2.3000000000000003,180,4.5,23.7162,18.5029 +2012,7,30,0,30,32.800000000000004,0.9400000000000001,0.054,0.62,53,644,228,0,0,9.3,53,644,0,228,0.28400000000000003,23.56,74.2,0.9400000000000001,0.24,886,2.3000000000000003,177,3.8000000000000003,10.9958,8.4641 +2012,7,30,1,30,30.3,0.9400000000000001,0.054,0.62,22,276,42,0,0,9.8,22,276,0,42,0.28500000000000003,28.060000000000002,86.02,0.9400000000000001,0.24,886,2.3000000000000003,175,3.3000000000000003,0.0000,0.0000 +2012,7,30,2,30,28.8,0.93,0.054,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28600000000000003,31.28,97.51,0.9400000000000001,0.24,887,2.3000000000000003,177,3.7,0.0000,0.0000 +2012,7,30,3,30,27.900000000000002,0.93,0.055,0.62,0,0,0,0,0,10.3,0,0,0,0,0.28600000000000003,33.34,107.88,0.9400000000000001,0.24,887,2.2,181,3.9000000000000004,0.0000,0.0000 +2012,7,30,4,30,27,0.93,0.056,0.62,0,0,0,0,0,10.5,0,0,0,0,0.28600000000000003,35.550000000000004,116.77,0.9400000000000001,0.24,887,2.2,187,4,0.0000,0.0000 +2012,7,30,5,30,26.200000000000003,0.9400000000000001,0.057,0.62,0,0,0,0,0,10.600000000000001,0,0,0,0,0.28600000000000003,37.62,123.43,0.9400000000000001,0.24,887,2.1,192,3.9000000000000004,0.0000,0.0000 +2012,7,30,6,30,25.3,0.9500000000000001,0.058,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.28700000000000003,39.95,127,0.9400000000000001,0.24,887,2.1,198,3.6,0.0000,0.0000 +2012,7,30,7,30,24.5,0.96,0.059000000000000004,0.62,0,0,0,0,0,10.8,0,0,0,0,0.28700000000000003,42.02,126.84,0.9400000000000001,0.24,887,2.1,205,3.3000000000000003,0.0000,0.0000 +2012,7,30,8,30,23.700000000000003,0.97,0.06,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.28700000000000003,44.03,122.99000000000001,0.9400000000000001,0.24,887,2,211,2.9000000000000004,0.0000,0.0000 +2012,7,30,9,30,23,0.97,0.061,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.28800000000000003,45.94,116.11,0.9400000000000001,0.24,887,2,218,2.7,0.0000,0.0000 +2012,7,30,10,30,22.3,0.97,0.063,0.62,0,0,0,0,1,10.8,0,0,0,0,0.28800000000000003,48.15,107.08,0.9400000000000001,0.24,887,2,224,2.6,0.0000,0.0000 +2012,7,30,11,30,22.3,0.98,0.065,0.62,0,0,0,0,0,10.9,0,0,0,0,0.28700000000000003,48.57,96.62,0.9400000000000001,0.24,888,2,229,2.9000000000000004,0.0000,0.0000 +2012,7,30,12,30,23.900000000000002,0.97,0.068,0.62,27,299,53,0,0,11.100000000000001,27,299,0,53,0.28700000000000003,44.68,85.09,0.9400000000000001,0.24,888,2.1,232,3.4000000000000004,0.0000,0.0000 +2012,7,30,13,30,27.5,0.97,0.069,0.62,59,641,244,0,0,11.4,59,641,0,244,0.28600000000000003,36.730000000000004,73.21000000000001,0.9400000000000001,0.24,888,2.1,228,3.5,12.1893,9.3978 +2012,7,30,14,30,31.400000000000002,0.97,0.07,0.62,78,789,461,0,0,10.700000000000001,78,789,0,461,0.28600000000000003,28.04,60.94,0.9400000000000001,0.24,888,2,218,3.3000000000000003,25.2896,19.7425 +2012,7,30,15,30,33.9,0.98,0.07100000000000001,0.62,91,866,664,0,0,9.600000000000001,91,866,0,664,0.28500000000000003,22.54,48.56,0.9400000000000001,0.24,888,2,208,2.9000000000000004,38.5128,30.2140 +2012,7,30,16,30,35.6,0.98,0.07,0.62,99,911,833,0,0,9,99,911,0,833,0.28500000000000003,19.71,36.4,0.9400000000000001,0.24,888,2,196,2.6,49.9071,39.2421 +2012,7,30,17,30,36.9,0.98,0.07,0.62,105,939,955,0,0,8.4,105,939,0,955,0.28600000000000003,17.61,25.14,0.9400000000000001,0.24,887,1.9000000000000001,186,2.6,58.0509,45.6962 +2012,7,30,18,30,37.9,0.93,0.064,0.62,104,955,1017,0,0,7.7,104,955,0,1017,0.28600000000000003,15.94,17.06,0.9400000000000001,0.24,887,1.9000000000000001,180,2.7,62.3099,49.0714 +2012,7,30,19,30,38.5,0.93,0.063,0.62,104,958,1017,0,0,6.9,104,958,0,1017,0.28700000000000003,14.63,17.53,0.9400000000000001,0.24,886,1.8,176,3,61.9198,48.7632 +2012,7,30,20,30,38.7,0.93,0.062,0.62,100,946,950,0,0,6.1000000000000005,100,946,0,950,0.28700000000000003,13.69,26.080000000000002,0.9400000000000001,0.24,885,1.8,173,3.2,57.3768,45.1625 +2012,7,30,21,30,38.400000000000006,0.89,0.059000000000000004,0.62,93,926,828,0,0,5.300000000000001,93,926,0,828,0.28700000000000003,13.19,37.47,0.9400000000000001,0.24,885,1.7000000000000002,172,3.3000000000000003,48.9617,38.4932 +2012,7,30,22,30,37.5,0.9,0.06,0.62,85,880,654,0,0,4.7,85,880,0,654,0.28700000000000003,13.22,49.68,0.9400000000000001,0.24,884,1.7000000000000002,171,3.4000000000000004,37.4386,29.3626 +2012,7,30,23,30,36.2,0.9,0.062,0.62,74,797,447,0,0,4.2,74,797,0,447,0.28800000000000003,13.75,62.07,0.9400000000000001,0.24,884,1.7000000000000002,170,3.3000000000000003,24.1337,18.8272 +2012,7,31,0,30,33.2,0.9,0.064,0.62,56,642,229,0,0,4.1000000000000005,56,642,0,229,0.28800000000000003,16.07,74.34,0.9400000000000001,0.24,885,1.6,171,2.6,11.2291,8.6417 +2012,7,31,1,30,29.900000000000002,0.91,0.066,0.62,23,253,40,0,0,5.5,23,253,0,40,0.28800000000000003,21.42,86.17,0.9400000000000001,0.24,885,1.7000000000000002,173,2,0.0000,0.0000 +2012,7,31,2,30,28.400000000000002,0.91,0.069,0.62,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.289,23.57,97.68,0.9400000000000001,0.24,886,1.7000000000000002,177,2.5,0.0000,0.0000 +2012,7,31,3,30,27.8,0.92,0.07200000000000001,0.62,0,0,0,0,0,6,0,0,0,0,0.289,25.13,108.07000000000001,0.9400000000000001,0.24,886,1.8,183,3.1,0.0000,0.0000 +2012,7,31,4,30,27,0.9400000000000001,0.074,0.62,0,0,0,0,0,7,0,0,0,0,0.28800000000000003,28.05,116.98,0.9400000000000001,0.24,886,1.9000000000000001,190,3.4000000000000004,0.0000,0.0000 +2012,7,31,5,30,26.200000000000003,0.96,0.076,0.62,0,0,0,0,0,8,0,0,0,0,0.28700000000000003,31.490000000000002,123.66,0.9400000000000001,0.24,887,2,198,3.6,0.0000,0.0000 +2012,7,31,6,30,25.3,0.98,0.078,0.62,0,0,0,0,0,8.8,0,0,0,0,0.28600000000000003,35.050000000000004,127.24000000000001,0.9400000000000001,0.24,887,2.1,207,3.5,0.0000,0.0000 +2012,7,31,7,30,24.6,0.99,0.079,0.62,0,0,0,0,0,9.3,0,0,0,0,0.28600000000000003,37.87,127.08,0.9400000000000001,0.24,886,2.1,216,3.3000000000000003,0.0000,0.0000 +2012,7,31,8,30,24,1,0.08,0.62,0,0,0,0,0,9.600000000000001,0,0,0,0,0.28600000000000003,40.15,123.21000000000001,0.9400000000000001,0.24,886,2.2,225,3.1,0.0000,0.0000 +2012,7,31,9,30,23.400000000000002,1.01,0.081,0.62,0,0,0,0,0,9.8,0,0,0,0,0.28700000000000003,42.17,116.31,0.9400000000000001,0.24,887,2.2,233,2.8000000000000003,0.0000,0.0000 +2012,7,31,10,30,22.8,1.02,0.082,0.62,0,0,0,0,0,9.9,0,0,0,0,0.28700000000000003,44.06,107.25,0.9400000000000001,0.24,887,2.2,240,2.6,0.0000,0.0000 +2012,7,31,11,30,22.900000000000002,1.02,0.083,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28700000000000003,44.17,96.76,0.9400000000000001,0.24,888,2.2,248,2.7,0.0000,0.0000 +2012,7,31,12,30,24.6,1.02,0.083,0.62,28,266,50,0,0,10.200000000000001,28,266,0,50,0.28700000000000003,40.21,85.21000000000001,0.9400000000000001,0.24,888,2.2,255,3.1,0.0000,0.0000 +2012,7,31,13,30,28.3,1.03,0.082,0.62,62,618,239,0,0,10.3,62,618,0,239,0.28700000000000003,32.63,73.33,0.9400000000000001,0.24,888,2.2,256,3,12.1271,9.3482 +2012,7,31,14,30,32.2,1.03,0.08,0.62,81,772,455,0,0,9.8,81,772,0,455,0.28700000000000003,25.26,61.050000000000004,0.9400000000000001,0.24,888,2.2,245,2.2,25.2726,19.7280 +2012,7,31,15,30,34.4,1.05,0.078,0.62,93,854,658,0,0,8.8,93,854,0,658,0.28800000000000003,20.84,48.67,0.9400000000000001,0.24,888,2.2,205,1.4000000000000001,38.5563,30.2472 +2012,7,31,16,30,36,1.06,0.077,0.62,102,903,828,0,0,8.3,102,903,0,828,0.289,18.38,36.52,0.9400000000000001,0.24,888,2.1,158,1.3,49.9542,39.2784 +2012,7,31,17,30,37.300000000000004,1.07,0.077,0.62,108,927,946,0,0,8.1,108,927,0,946,0.289,16.92,25.3,0.9500000000000001,0.24,887,2.2,141,1.9000000000000001,58.2841,45.8793 +2012,7,31,18,30,38.2,1.09,0.063,0.62,103,949,1009,0,0,8.1,103,949,0,1009,0.29,16.16,17.29,0.9500000000000001,0.24,887,2.2,142,2.6,62.5458,49.2567 +2012,7,31,19,30,38.7,1.1,0.063,0.62,103,949,1006,0,0,8.200000000000001,103,949,0,1006,0.291,15.77,17.76,0.9500000000000001,0.24,886,2.2,146,3,62.5238,49.2383 +2012,7,31,20,30,38.7,1.12,0.063,0.62,100,937,940,0,0,8.200000000000001,100,937,0,940,0.291,15.83,26.26,0.9500000000000001,0.24,886,2.2,150,3.3000000000000003,57.9135,45.5844 +2012,7,31,21,30,38.300000000000004,1.12,0.06,0.62,93,913,816,0,0,8.200000000000001,93,913,0,816,0.292,16.09,37.62,0.9500000000000001,0.24,885,2.2,156,3.5,49.5458,38.9516 +2012,7,31,22,30,37.4,1.1300000000000001,0.061,0.62,85,869,645,0,0,7.9,85,869,0,645,0.293,16.57,49.82,0.9500000000000001,0.24,885,2.1,161,3.5,37.8259,29.6653 +2012,7,31,23,30,36.1,1.1400000000000001,0.061,0.62,72,789,440,0,0,7.6000000000000005,72,789,0,440,0.294,17.46,62.21,0.9500000000000001,0.24,885,2.1,166,3.5,24.3312,18.9797 +2012,8,1,0,30,33.5,1.12,0.059000000000000004,0.58,54,641,225,0,0,7.4,54,641,0,225,0.294,19.93,74.48,0.9400000000000001,0.24,885,2,171,2.6,11.2640,8.6665 +2012,8,1,1,30,30.6,1.1300000000000001,0.057,0.58,21,270,39,0,0,8.1,21,270,0,39,0.295,24.560000000000002,86.32000000000001,0.9400000000000001,0.24,885,1.9000000000000001,175,1.9000000000000001,0.0000,0.0000 +2012,8,1,2,30,28.900000000000002,1.1300000000000001,0.055,0.58,0,0,0,0,0,8.200000000000001,0,0,0,0,0.295,27.400000000000002,97.85000000000001,0.9400000000000001,0.24,886,1.9000000000000001,177,2.1,0.0000,0.0000 +2012,8,1,3,30,28,1.1500000000000001,0.054,0.58,0,0,0,0,0,8.3,0,0,0,0,0.295,29.07,108.26,0.9400000000000001,0.24,886,1.8,178,2.2,0.0000,0.0000 +2012,8,1,4,30,27.1,1.16,0.055,0.58,0,0,0,0,0,8.6,0,0,0,0,0.295,31.11,117.19,0.9400000000000001,0.24,886,1.9000000000000001,181,2.2,0.0000,0.0000 +2012,8,1,5,30,26.200000000000003,1.17,0.056,0.58,0,0,0,0,0,8.8,0,0,0,0,0.294,33.34,123.9,0.9400000000000001,0.24,886,1.9000000000000001,185,2,0.0000,0.0000 +2012,8,1,6,30,25.400000000000002,1.17,0.058,0.58,0,0,0,0,0,9.1,0,0,0,0,0.293,35.550000000000004,127.49000000000001,0.9400000000000001,0.24,886,1.9000000000000001,190,1.9000000000000001,0.0000,0.0000 +2012,8,1,7,30,24.6,1.17,0.059000000000000004,0.58,0,0,0,0,0,9.3,0,0,0,0,0.293,37.97,127.33,0.9400000000000001,0.24,886,1.9000000000000001,196,1.8,0.0000,0.0000 +2012,8,1,8,30,23.900000000000002,1.16,0.06,0.58,0,0,0,0,0,9.600000000000001,0,0,0,0,0.293,40.44,123.44,0.9400000000000001,0.24,886,2,205,1.8,0.0000,0.0000 +2012,8,1,9,30,23.400000000000002,1.16,0.063,0.58,0,0,0,0,0,10.100000000000001,0,0,0,0,0.292,42.9,116.51,0.9400000000000001,0.24,886,2,214,2,0.0000,0.0000 +2012,8,1,10,30,22.8,1.1500000000000001,0.065,0.58,0,0,0,0,0,10.5,0,0,0,0,0.292,45.9,107.42,0.9400000000000001,0.24,886,2,224,2.1,0.0000,0.0000 +2012,8,1,11,30,22.8,1.1400000000000001,0.065,0.58,0,0,0,0,0,10.9,0,0,0,0,0.292,47,96.91,0.9400000000000001,0.24,886,2,231,2.4000000000000004,0.0000,0.0000 +2012,8,1,12,30,24.6,1.1300000000000001,0.065,0.58,26,300,50,0,0,11.200000000000001,26,300,0,50,0.291,43.07,85.34,0.9400000000000001,0.24,887,2.1,235,3,0.0000,0.0000 +2012,8,1,13,30,28.3,1.12,0.064,0.58,57,648,242,0,0,11.5,57,648,0,242,0.291,35.32,73.45,0.9400000000000001,0.24,887,2.1,231,3.1,11.8654,9.1447 +2012,8,1,14,30,32.5,1.12,0.063,0.58,74,796,458,0,0,11.200000000000001,74,796,0,458,0.291,27.12,61.160000000000004,0.9400000000000001,0.24,887,2.1,220,2.8000000000000003,24.9268,19.4567 +2012,8,1,15,30,35.4,1.12,0.063,0.58,86,872,661,0,0,9.9,86,872,0,661,0.291,21.27,48.79,0.9400000000000001,0.24,887,2.1,206,2.3000000000000003,38.1934,29.9617 +2012,8,1,16,30,37.2,1.12,0.063,0.58,95,916,830,0,0,9.4,95,916,0,830,0.291,18.59,36.65,0.9400000000000001,0.24,886,2.1,193,2.2,49.6424,39.0326 +2012,8,1,17,30,38.6,1.12,0.064,0.58,100,937,947,0,0,9.1,100,937,0,947,0.292,16.85,25.47,0.9400000000000001,0.24,886,2.2,182,2.4000000000000004,57.7240,45.4378 +2012,8,1,18,30,39.7,1.12,0.066,0.58,104,945,1005,0,0,8.8,104,945,0,1005,0.292,15.58,17.53,0.9400000000000001,0.24,885,2.3000000000000003,177,2.8000000000000003,62.0432,48.8604 +2012,8,1,19,30,40.300000000000004,1.12,0.068,0.58,105,943,1002,0,0,8.6,105,943,0,1002,0.292,14.85,18,0.9400000000000001,0.24,884,2.3000000000000003,176,3.1,61.8366,48.6967 +2012,8,1,20,30,40.5,1.12,0.07,0.58,103,927,933,0,0,8.3,103,927,0,933,0.292,14.48,26.44,0.9400000000000001,0.24,884,2.4000000000000004,175,3.4000000000000004,57.2911,45.0939 +2012,8,1,21,30,40.2,1.1400000000000001,0.084,0.58,104,888,806,0,0,8.1,104,888,0,806,0.291,14.46,37.77,0.9400000000000001,0.24,883,2.4000000000000004,174,3.4000000000000004,48.8123,38.3742 +2012,8,1,22,30,39.5,1.1400000000000001,0.08600000000000001,0.58,95,837,634,0,0,7.800000000000001,95,837,0,634,0.29,14.72,49.96,0.9400000000000001,0.24,883,2.4000000000000004,172,3.5,37.2864,29.2410 +2012,8,1,23,30,38.2,1.1300000000000001,0.088,0.58,82,749,429,0,0,7.5,82,749,0,429,0.29,15.52,62.35,0.9400000000000001,0.24,882,2.4000000000000004,169,3.4000000000000004,23.9285,18.6638 +2012,8,2,0,30,35.5,1.1300000000000001,0.089,0.58,61,583,215,0,0,7.5,61,583,0,215,0.289,17.87,74.63,0.9400000000000001,0.24,882,2.4000000000000004,165,2.7,11.0533,8.5023 +2012,8,2,1,30,32.5,1.1300000000000001,0.091,0.58,22,194,34,0,0,8.3,22,194,0,34,0.289,22.41,86.47,0.9400000000000001,0.24,883,2.4000000000000004,162,2.4000000000000004,0.0000,0.0000 +2012,8,2,2,30,31.1,1.1300000000000001,0.092,0.58,0,0,0,0,0,8.3,0,0,0,0,0.289,24.23,98.03,0.9400000000000001,0.24,883,2.4000000000000004,166,3.3000000000000003,0.0000,0.0000 +2012,8,2,3,30,30.3,1.1300000000000001,0.094,0.58,0,0,0,0,0,8.4,0,0,0,0,0.28800000000000003,25.61,108.46000000000001,0.9400000000000001,0.24,883,2.5,173,4,0.0000,0.0000 +2012,8,2,4,30,29.400000000000002,1.1300000000000001,0.095,0.58,0,0,0,0,0,8.8,0,0,0,0,0.28700000000000003,27.59,117.41,0.9400000000000001,0.24,883,2.5,182,4.2,0.0000,0.0000 +2012,8,2,5,30,28.5,1.1400000000000001,0.095,0.58,0,0,0,0,0,9.200000000000001,0,0,0,0,0.28700000000000003,29.830000000000002,124.14,0.9400000000000001,0.24,883,2.6,190,4.3,0.0000,0.0000 +2012,8,2,6,30,27.700000000000003,1.1500000000000001,0.095,0.58,0,0,0,0,0,9.5,0,0,0,0,0.28600000000000003,31.93,127.75,0.9400000000000001,0.24,883,2.6,198,4.3,0.0000,0.0000 +2012,8,2,7,30,27,1.1500000000000001,0.094,0.58,0,0,0,0,0,9.700000000000001,0,0,0,0,0.28600000000000003,33.81,127.58,0.9500000000000001,0.24,883,2.7,204,4.2,0.0000,0.0000 +2012,8,2,8,30,26.400000000000002,1.16,0.094,0.58,0,0,0,0,0,9.9,0,0,0,0,0.28600000000000003,35.4,123.66,0.9500000000000001,0.24,883,2.8000000000000003,210,4,0.0000,0.0000 +2012,8,2,9,30,25.8,1.16,0.096,0.58,0,0,0,0,0,10,0,0,0,0,0.28600000000000003,37.02,116.71000000000001,0.9500000000000001,0.24,883,2.8000000000000003,216,3.9000000000000004,0.0000,0.0000 +2012,8,2,10,30,25.3,1.17,0.096,0.58,0,0,0,0,0,10.200000000000001,0,0,0,0,0.28700000000000003,38.550000000000004,107.59,0.9500000000000001,0.24,883,2.8000000000000003,223,3.7,0.0000,0.0000 +2012,8,2,11,30,25.1,1.18,0.095,0.58,0,0,0,0,0,10.4,0,0,0,0,0.28700000000000003,39.51,97.06,0.9500000000000001,0.24,884,2.7,231,3.5,0.0000,0.0000 +2012,8,2,12,30,26.3,1.2,0.091,0.58,27,242,46,0,0,10.5,27,242,0,46,0.28800000000000003,37.15,85.47,0.9500000000000001,0.24,884,2.7,241,3.5,0.0000,0.0000 +2012,8,2,13,30,29.200000000000003,1.24,0.085,0.58,62,606,233,0,0,10.600000000000001,62,606,0,233,0.28800000000000003,31.59,73.57000000000001,0.9500000000000001,0.24,884,2.6,251,3.5,12.0010,9.2473 +2012,8,2,14,30,32.5,1.28,0.078,0.58,79,768,448,0,0,10.5,79,768,0,448,0.28800000000000003,25.93,61.28,0.9500000000000001,0.24,884,2.6,258,3.3000000000000003,25.0741,19.5704 +2012,8,2,15,30,35.4,1.32,0.07200000000000001,0.58,90,853,650,0,0,10,90,853,0,650,0.289,21.36,48.9,0.9500000000000001,0.24,884,2.6,259,2.9000000000000004,38.3516,30.0848 +2012,8,2,16,30,37.800000000000004,1.36,0.068,0.58,96,902,819,0,0,9.600000000000001,96,902,0,819,0.289,18.21,36.78,0.9500000000000001,0.24,884,2.6,256,2.4000000000000004,49.7493,39.1160 +2012,8,2,17,30,39.5,1.3800000000000001,0.066,0.58,100,927,936,0,0,9.3,100,927,0,936,0.29,16.28,25.64,0.9500000000000001,0.24,883,2.7,250,1.9000000000000001,57.7733,45.4761 +2012,8,2,18,30,40.7,1.3900000000000001,0.068,0.58,104,937,996,0,0,9.1,104,937,0,996,0.291,15.06,17.77,0.9500000000000001,0.24,882,2.7,237,1.5,61.7860,48.6574 +2012,8,2,19,30,41.2,1.4000000000000001,0.069,0.58,104,935,993,0,0,8.9,104,935,0,993,0.292,14.530000000000001,18.25,0.9500000000000001,0.24,881,2.7,218,1.2000000000000002,61.5792,48.4934 +2012,8,2,20,30,41.400000000000006,1.41,0.07200000000000001,0.58,103,919,924,0,0,8.8,103,919,0,924,0.292,14.24,26.63,0.9500000000000001,0.24,881,2.8000000000000003,201,1.1,56.8517,44.7474 +2012,8,2,21,30,41.2,1.48,0.066,0.58,94,897,801,0,3,8.6,393,47,0,431,0.293,14.23,37.93,0.9500000000000001,0.24,880,2.8000000000000003,191,1.3,48.1988,37.8911 +2012,8,2,22,30,40.400000000000006,1.46,0.073,0.58,88,842,628,0,3,8.5,356,55,0,391,0.293,14.69,50.11,0.96,0.24,880,2.9000000000000004,184,1.5,36.6318,28.7265 +2012,8,2,23,30,39.2,1.44,0.082,0.58,78,748,424,7,3,8.4,202,417,7,395,0.294,15.57,62.5,0.96,0.24,880,2.9000000000000004,179,1.9000000000000001,23.3089,18.1789 +2012,8,3,0,30,37.1,1.41,0.089,0.58,59,576,211,0,3,8.5,35,0,0,35,0.294,17.57,74.78,0.96,0.24,880,2.9000000000000004,173,1.8,10.5479,8.1114 +2012,8,3,1,30,34.800000000000004,1.3900000000000001,0.093,0.58,21,189,32,7,3,10.100000000000001,22,0,7,22,0.295,22.21,86.63,0.96,0.24,880,3,170,2.2,0.0000,0.0000 +2012,8,3,2,30,33.4,1.36,0.097,0.58,0,0,0,0,3,9.8,0,0,0,0,0.295,23.5,98.21000000000001,0.96,0.24,881,3,172,3.1,0.0000,0.0000 +2012,8,3,3,30,32.4,1.33,0.099,0.58,0,0,0,0,0,9.4,0,0,0,0,0.294,24.26,108.66,0.9500000000000001,0.24,881,2.9000000000000004,176,3.8000000000000003,0.0000,0.0000 +2012,8,3,4,30,31.3,1.3,0.1,0.58,0,0,0,0,0,8.9,0,0,0,0,0.293,24.97,117.64,0.9500000000000001,0.24,881,2.8000000000000003,183,4.1000000000000005,0.0000,0.0000 +2012,8,3,5,30,30.400000000000002,1.27,0.10200000000000001,0.58,0,0,0,0,0,8.3,0,0,0,0,0.292,25.240000000000002,124.39,0.9500000000000001,0.24,881,2.8000000000000003,190,4.2,0.0000,0.0000 +2012,8,3,6,30,29.5,1.24,0.106,0.58,0,0,0,0,0,7.800000000000001,0,0,0,0,0.291,25.71,128.01,0.9500000000000001,0.24,881,2.7,198,4.2,0.0000,0.0000 +2012,8,3,7,30,28.400000000000002,1.22,0.11,0.58,0,0,0,0,0,7.800000000000001,0,0,0,0,0.29,27.36,127.83,0.9500000000000001,0.24,881,2.7,205,4,0.0000,0.0000 +2012,8,3,8,30,27.3,1.21,0.114,0.58,0,0,0,0,1,8.4,0,0,0,0,0.289,30.400000000000002,123.9,0.9500000000000001,0.24,881,2.7,211,3.7,0.0000,0.0000 +2012,8,3,9,30,26.3,1.2,0.11800000000000001,0.58,0,0,0,0,4,9.200000000000001,0,0,0,0,0.28800000000000003,33.92,116.91,0.9500000000000001,0.24,882,2.7,214,3.1,0.0000,0.0000 +2012,8,3,10,30,25.400000000000002,1.21,0.12,0.58,0,0,0,0,4,9.8,0,0,0,0,0.28800000000000003,37.38,107.77,0.9500000000000001,0.24,882,2.8000000000000003,217,2.4000000000000004,0.0000,0.0000 +2012,8,3,11,30,25,1.22,0.11900000000000001,0.58,0,0,0,0,0,10.200000000000001,0,0,0,0,0.28800000000000003,39.24,97.21000000000001,0.9500000000000001,0.24,883,2.8000000000000003,224,2.1,0.0000,0.0000 +2012,8,3,12,30,26.1,1.23,0.11800000000000001,0.58,27,199,43,0,0,10.600000000000001,27,199,0,43,0.28800000000000003,37.69,85.60000000000001,0.9500000000000001,0.24,883,2.9000000000000004,234,2.3000000000000003,0.0000,0.0000 +2012,8,3,13,30,29,1.24,0.114,0.58,68,559,225,0,0,10.8,68,559,0,225,0.28800000000000003,32.410000000000004,73.69,0.9500000000000001,0.24,883,2.9000000000000004,240,2.8000000000000003,11.5418,8.8918 +2012,8,3,14,30,32.6,1.24,0.11,0.58,91,725,438,0,0,10.600000000000001,91,725,0,438,0.28800000000000003,26,61.39,0.9500000000000001,0.24,883,2.9000000000000004,240,3,24.5083,19.1274 +2012,8,3,15,30,35.7,1.24,0.107,0.58,105,815,640,0,0,9.5,105,815,0,640,0.289,20.3,49.02,0.9500000000000001,0.24,883,2.8000000000000003,227,2.9000000000000004,37.6990,29.5720 +2012,8,3,16,30,38,1.24,0.10300000000000001,0.58,113,868,808,0,0,9,113,868,0,808,0.289,17.28,36.910000000000004,0.9500000000000001,0.24,883,2.8000000000000003,204,2.9000000000000004,49.0770,38.5867 +2012,8,3,17,30,39.800000000000004,1.24,0.101,0.58,119,899,929,0,0,8.6,119,899,0,929,0.289,15.33,25.810000000000002,0.9500000000000001,0.24,882,2.7,184,3.2,57.0906,44.9382 +2012,8,3,18,30,40.900000000000006,1.33,0.069,0.58,105,938,996,0,0,8.200000000000001,105,938,0,996,0.289,14.05,18.01,0.9500000000000001,0.24,881,2.6,173,3.7,61.2214,48.2122 +2012,8,3,19,30,41.5,1.33,0.069,0.58,105,937,993,0,0,7.7,105,937,0,993,0.289,13.120000000000001,18.5,0.9500000000000001,0.24,880,2.6,169,4.1000000000000005,61.0140,48.0478 +2012,8,3,20,30,41.5,1.33,0.07100000000000001,0.58,103,925,928,0,0,7.1000000000000005,103,925,0,928,0.289,12.58,26.830000000000002,0.9500000000000001,0.24,880,2.5,167,4.5,56.2898,44.3045 +2012,8,3,21,30,41.1,1.34,0.073,0.58,98,899,805,0,0,6.300000000000001,98,899,0,805,0.289,12.24,38.1,0.9500000000000001,0.24,879,2.4000000000000004,167,4.7,25.7650,20.2545 +2012,8,3,22,30,40.2,1.34,0.073,0.58,89,853,634,0,0,5.7,89,853,0,634,0.289,12.24,50.26,0.9400000000000001,0.24,879,2.3000000000000003,168,4.9,22.5791,17.7057 +2012,8,3,23,30,38.7,1.33,0.074,0.58,76,769,429,0,1,5,76,769,0,429,0.28800000000000003,12.69,62.65,0.9400000000000001,0.24,879,2.3000000000000003,169,4.9,21.4404,16.7199 +2012,8,4,0,30,36.1,1.32,0.073,0.58,56,610,214,0,1,4.6000000000000005,56,610,0,214,0.28800000000000003,14.18,74.94,0.9400000000000001,0.24,879,2.2,169,4.1000000000000005,1.7148,1.3184 +2012,8,4,1,30,33.300000000000004,1.29,0.075,0.58,20,215,32,0,1,4.800000000000001,20,215,0,32,0.28800000000000003,16.85,86.8,0.9400000000000001,0.24,880,2.1,168,3.4000000000000004,0.0000,0.0000 +2012,8,4,2,30,31.5,1.27,0.077,0.58,0,0,0,0,0,4.9,0,0,0,0,0.28800000000000003,18.81,98.39,0.93,0.24,880,2.1,171,3.3000000000000003,0.0000,0.0000 +2012,8,4,3,30,30.1,1.23,0.083,0.58,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28800000000000003,21.3,108.87,0.9400000000000001,0.24,881,2.3000000000000003,177,3.1,0.0000,0.0000 +2012,8,4,4,30,28.700000000000003,1.19,0.092,0.58,0,0,0,0,1,7.1000000000000005,0,0,0,0,0.28800000000000003,25.69,117.87,0.9400000000000001,0.24,882,2.4000000000000004,190,2.7,0.0000,0.0000 +2012,8,4,5,30,27.6,1.1500000000000001,0.10300000000000001,0.58,0,0,0,0,0,8.8,0,0,0,0,0.28800000000000003,30.73,124.65,0.9400000000000001,0.24,882,2.6,209,2.2,0.0000,0.0000 +2012,8,4,6,30,26.5,1.12,0.111,0.58,0,0,0,0,0,10.3,0,0,0,0,0.28800000000000003,36.08,128.28,0.9400000000000001,0.24,883,2.7,233,1.6,0.0000,0.0000 +2012,8,4,7,30,25.5,1.11,0.116,0.58,0,0,0,0,0,11.3,0,0,0,0,0.28800000000000003,41.06,128.09,0.9400000000000001,0.24,883,2.8000000000000003,254,1.1,0.0000,0.0000 +2012,8,4,8,30,25.1,1.1,0.117,0.58,0,0,0,0,0,12,0,0,0,0,0.28800000000000003,44.12,124.13000000000001,0.9400000000000001,0.24,883,2.7,255,0.9,0.0000,0.0000 +2012,8,4,9,30,24.700000000000003,1.11,0.111,0.58,0,0,0,0,0,12.5,0,0,0,0,0.28800000000000003,46.47,117.11,0.9500000000000001,0.24,883,2.7,221,0.8,0.0000,0.0000 +2012,8,4,10,30,23.900000000000002,1.11,0.105,0.58,0,0,0,0,0,12.600000000000001,0,0,0,0,0.289,49.17,107.94,0.9400000000000001,0.24,883,2.5,186,1,0.0000,0.0000 +2012,8,4,11,30,23.8,1.12,0.099,0.58,0,0,0,0,0,12.5,0,0,0,0,0.289,49.1,97.36,0.9400000000000001,0.24,884,2.5,176,1.8,0.0000,0.0000 +2012,8,4,12,30,25.5,1.12,0.095,0.58,26,225,43,0,0,12.200000000000001,26,225,0,43,0.289,43.61,85.73,0.9400000000000001,0.24,884,2.4000000000000004,178,3.1,0.0000,0.0000 +2012,8,4,13,30,28.200000000000003,1.12,0.093,0.58,64,592,229,0,0,11.8,64,592,0,229,0.289,36.13,73.81,0.9400000000000001,0.24,884,2.4000000000000004,186,4.1000000000000005,11.1332,8.5753 +2012,8,4,14,30,31.1,1.1300000000000001,0.092,0.58,85,752,444,0,0,11.4,85,752,0,444,0.29,29.82,61.5,0.9400000000000001,0.24,885,2.4000000000000004,191,4.2,23.9448,18.6864 +2012,8,4,15,30,33.9,1.1300000000000001,0.092,0.58,99,836,646,0,0,11.200000000000001,99,836,0,646,0.29,25.18,49.14,0.9400000000000001,0.24,885,2.4000000000000004,186,3.8000000000000003,37.1034,29.1039 +2012,8,4,16,30,36.4,1.1300000000000001,0.094,0.58,110,882,814,0,0,10.9,110,882,0,814,0.291,21.44,37.050000000000004,0.9400000000000001,0.24,885,2.4000000000000004,177,3.6,48.4051,38.0577 +2012,8,4,17,30,38.1,1.1300000000000001,0.095,0.58,116,909,933,0,0,10.3,116,909,0,933,0.292,18.84,25.98,0.9400000000000001,0.24,884,2.4000000000000004,167,3.5,56.6520,44.5923 +2012,8,4,18,30,39.300000000000004,1.06,0.08700000000000001,0.58,116,924,994,0,0,9.700000000000001,116,924,0,994,0.293,16.94,18.26,0.9500000000000001,0.24,884,2.5,160,3.5,61.2100,48.2027 +2012,8,4,19,30,39.900000000000006,1.06,0.091,0.58,118,921,990,0,0,9.200000000000001,118,921,0,990,0.293,15.83,18.76,0.9500000000000001,0.24,884,2.5,153,3.5,61.0018,48.0376 +2012,8,4,20,30,39.900000000000006,1.04,0.099,0.58,119,901,921,7,3,8.700000000000001,441,403,7,799,0.294,15.280000000000001,27.03,0.9500000000000001,0.24,883,2.5,148,3.6,56.5191,44.4842 +2012,8,4,21,30,39.5,1.02,0.105,0.58,115,864,793,0,3,8.1,414,67,0,466,0.295,15,38.27,0.9500000000000001,0.24,883,2.6,145,3.7,48.1051,37.8156 +2012,8,4,22,30,38.5,1.02,0.11,0.58,106,808,621,0,3,7.6000000000000005,234,1,0,234,0.295,15.290000000000001,50.42,0.9500000000000001,0.24,883,2.5,143,3.8000000000000003,36.5913,28.6922 +2012,8,4,23,30,37,1.01,0.114,0.58,92,708,415,0,3,7.300000000000001,256,66,0,286,0.295,16.330000000000002,62.800000000000004,0.96,0.24,883,2.6,141,3.7,23.2628,18.1392 +2012,8,5,0,30,34.6,1.01,0.12,0.58,68,521,202,0,1,7.5,68,521,0,202,0.295,18.78,75.10000000000001,0.96,0.24,884,2.6,141,3,10.4701,8.0472 +2012,8,5,1,30,32,1.02,0.123,0.58,21,121,27,0,1,8.6,21,121,0,27,0.295,23.51,86.96000000000001,0.96,0.24,885,2.7,140,2.5,0.0000,0.0000 +2012,8,5,2,30,30.3,1.03,0.122,0.58,0,0,0,0,3,9.4,0,0,0,0,0.295,27.34,98.58,0.96,0.24,886,2.7,140,2.6,0.0000,0.0000 +2012,8,5,3,30,28.900000000000002,1.04,0.117,0.58,0,0,0,0,8,10,0,0,0,0,0.294,30.92,109.08,0.96,0.24,887,2.8000000000000003,141,2.4000000000000004,0.0000,0.0000 +2012,8,5,4,30,27.6,1.06,0.115,0.58,0,0,0,0,8,10.8,0,0,0,0,0.294,35.01,118.11,0.9500000000000001,0.24,888,3,138,2,0.0000,0.0000 +2012,8,5,5,30,26.5,1.08,0.11900000000000001,0.58,0,0,0,0,8,11.4,0,0,0,0,0.293,39.06,124.91,0.96,0.24,889,3.1,115,1.7000000000000002,0.0000,0.0000 +2012,8,5,6,30,25.8,1.09,0.132,0.58,0,0,0,0,7,12.100000000000001,0,0,0,0,0.292,42.37,128.55,0.96,0.24,889,3.2,65,2.1,0.0000,0.0000 +2012,8,5,7,30,25.3,1.11,0.149,0.58,0,0,0,0,7,12.600000000000001,0,0,0,0,0.291,45.36,128.36,0.96,0.24,890,3.3000000000000003,36,3.1,0.0000,0.0000 +2012,8,5,8,30,24.400000000000002,1.12,0.153,0.58,0,0,0,0,7,13,0,0,0,0,0.29,49.06,124.37,0.96,0.24,890,3.2,39,3.6,0.0000,0.0000 +2012,8,5,9,30,23.400000000000002,1.17,0.136,0.58,0,0,0,0,7,13.3,0,0,0,0,0.289,53,117.32000000000001,0.9500000000000001,0.24,891,3.1,43,3.5,0.0000,0.0000 +2012,8,5,10,30,22.5,1.24,0.115,0.58,0,0,0,0,1,13.5,0,0,0,0,0.28800000000000003,56.63,108.12,0.9500000000000001,0.24,891,2.9000000000000004,44,3.6,0.0000,0.0000 +2012,8,5,11,30,22,1.31,0.101,0.58,0,0,0,0,0,13.600000000000001,0,0,0,0,0.28800000000000003,58.81,97.51,0.9500000000000001,0.24,891,2.8000000000000003,48,4,0.0000,0.0000 +2012,8,5,12,30,22.400000000000002,1.36,0.092,0.58,25,228,41,0,0,13.700000000000001,25,228,0,41,0.28800000000000003,57.78,85.86,0.9500000000000001,0.24,892,2.8000000000000003,56,4.5,0.0000,0.0000 +2012,8,5,13,30,24.1,1.4000000000000001,0.089,0.58,62,590,225,0,0,13.700000000000001,62,590,0,225,0.28800000000000003,52.32,73.93,0.9500000000000001,0.24,892,2.9000000000000004,64,4.800000000000001,11.3186,8.7164 +2012,8,5,14,30,26.6,1.43,0.089,0.58,82,747,438,0,0,13.8,82,747,0,438,0.28800000000000003,45.18,61.620000000000005,0.9500000000000001,0.24,893,2.9000000000000004,71,4.7,24.2560,18.9280 +2012,8,5,15,30,29.1,1.45,0.09,0.58,96,827,636,0,0,13.600000000000001,96,827,0,636,0.289,38.74,49.25,0.9400000000000001,0.24,893,3,77,4.4,37.4354,29.3634 +2012,8,5,16,30,31.400000000000002,1.46,0.091,0.58,106,874,803,0,0,13.3,106,874,0,803,0.29,33.24,37.18,0.9400000000000001,0.24,892,3,85,4.1000000000000005,48.7505,38.3286 +2012,8,5,17,30,33.300000000000004,1.46,0.092,0.58,113,901,921,0,0,13,113,901,0,921,0.291,29.17,26.16,0.9400000000000001,0.24,892,3,94,4,56.8841,44.7745 +2012,8,5,18,30,34.7,1.57,0.075,0.58,107,925,984,0,0,12.5,107,925,0,984,0.291,26.27,18.51,0.9400000000000001,0.24,891,3,102,4,61.0750,48.0958 +2012,8,5,19,30,35.5,1.54,0.08,0.58,109,921,980,0,0,12.200000000000001,109,921,0,980,0.291,24.55,19.02,0.9400000000000001,0.24,890,3,108,4,60.8046,47.8817 +2012,8,5,20,30,35.7,1.52,0.085,0.58,109,904,913,0,0,11.9,109,904,0,913,0.291,23.87,27.240000000000002,0.9400000000000001,0.24,890,3,112,4.1000000000000005,48.6499,38.2901 +2012,8,5,21,30,35.5,1.57,0.08,0.58,100,880,789,0,0,11.700000000000001,100,880,0,789,0.292,23.79,38.44,0.9400000000000001,0.24,889,3,115,4.1000000000000005,27.8369,21.8822 +2012,8,5,22,30,34.7,1.55,0.08700000000000001,0.58,93,824,617,7,2,11.600000000000001,258,535,7,597,0.292,24.66,50.58,0.9400000000000001,0.24,889,3,117,4,13.4972,10.5831 +2012,8,5,23,30,33.6,1.53,0.092,0.58,81,731,413,0,3,11.5,243,171,0,321,0.292,26.12,62.96,0.9400000000000001,0.24,889,3,118,3.8000000000000003,15.4930,12.0795 +2012,8,6,0,30,32.1,1.52,0.096,0.58,59,556,201,0,0,11.5,59,556,0,201,0.292,28.42,75.26,0.9400000000000001,0.24,890,3,117,3.3000000000000003,9.8692,7.5832 +2012,8,6,1,30,30.700000000000003,1.52,0.097,0.58,18,165,27,0,0,11.600000000000001,18,165,0,27,0.292,30.98,87.13,0.9400000000000001,0.24,890,3,115,2.8000000000000003,0.0000,0.0000 +2012,8,6,2,30,29.6,1.51,0.094,0.58,0,0,0,0,0,11.8,0,0,0,0,0.292,33.46,98.78,0.9400000000000001,0.24,891,3,114,3,0.0000,0.0000 +2012,8,6,3,30,28.8,1.5,0.092,0.58,0,0,0,0,0,12.100000000000001,0,0,0,0,0.291,35.67,109.3,0.9400000000000001,0.24,891,3.1,116,3.3000000000000003,0.0000,0.0000 +2012,8,6,4,30,28,1.47,0.093,0.58,0,0,0,0,0,12.4,0,0,0,0,0.29,38.12,118.35000000000001,0.9400000000000001,0.24,891,3.1,121,3.4000000000000004,0.0000,0.0000 +2012,8,6,5,30,27.200000000000003,1.44,0.095,0.58,0,0,0,0,0,12.700000000000001,0,0,0,0,0.289,40.61,125.17,0.9500000000000001,0.24,891,3.1,130,3.3000000000000003,0.0000,0.0000 +2012,8,6,6,30,26.5,1.4000000000000001,0.096,0.58,0,0,0,0,0,12.8,0,0,0,0,0.28800000000000003,42.800000000000004,128.83,0.9500000000000001,0.24,891,3.1,143,3,0.0000,0.0000 +2012,8,6,7,30,25.8,1.37,0.097,0.58,0,0,0,0,0,13,0,0,0,0,0.28700000000000003,44.99,128.63,0.9500000000000001,0.24,891,3.1,159,2.7,0.0000,0.0000 +2012,8,6,8,30,25.200000000000003,1.35,0.097,0.58,0,0,0,0,0,13.100000000000001,0,0,0,0,0.28600000000000003,47.02,124.61,0.9500000000000001,0.24,891,3.2,176,2.5,0.0000,0.0000 +2012,8,6,9,30,24.700000000000003,1.33,0.096,0.58,0,0,0,0,0,13.3,0,0,0,0,0.28500000000000003,49,117.53,0.9500000000000001,0.24,891,3.2,193,2.4000000000000004,0.0000,0.0000 +2012,8,6,10,30,24.200000000000003,1.32,0.094,0.58,0,0,0,0,0,13.5,0,0,0,0,0.28500000000000003,51.22,108.3,0.9500000000000001,0.24,891,3.2,207,2.4000000000000004,0.0000,0.0000 +2012,8,6,11,30,24.200000000000003,1.31,0.093,0.58,0,0,0,0,0,13.700000000000001,0,0,0,0,0.28300000000000003,51.93,97.67,0.9500000000000001,0.24,891,3.3000000000000003,218,2.7,0.0000,0.0000 +2012,8,6,12,30,25.6,1.31,0.094,0.58,24,211,39,0,0,13.9,24,211,0,39,0.28200000000000003,48.480000000000004,85.99,0.9500000000000001,0.24,891,3.3000000000000003,228,3.4000000000000004,0.0000,0.0000 +2012,8,6,13,30,28.400000000000002,1.3,0.095,0.58,63,571,220,0,0,14.200000000000001,63,571,0,220,0.281,41.72,74.05,0.9500000000000001,0.24,891,3.3000000000000003,233,4,11.1087,8.5530 +2012,8,6,14,30,31.3,1.29,0.096,0.58,85,730,431,0,0,14.100000000000001,85,730,0,431,0.281,35.2,61.74,0.9500000000000001,0.24,891,3.3000000000000003,235,4.1000000000000005,23.9101,18.6566 +2012,8,6,15,30,33.4,1.28,0.097,0.58,100,814,630,0,0,13.9,100,814,0,630,0.281,30.79,49.370000000000005,0.9500000000000001,0.24,891,3.3000000000000003,231,3.9000000000000004,36.8416,28.8967 +2012,8,6,16,30,35,1.27,0.098,0.58,110,863,796,0,0,13.600000000000001,110,863,0,796,0.28200000000000003,27.67,37.32,0.9500000000000001,0.24,890,3.3000000000000003,224,3.6,48.0788,37.7999 +2012,8,6,17,30,36.2,1.26,0.099,0.58,117,889,914,7,2,13.3,278,682,7,890,0.28300000000000003,25.39,26.34,0.9500000000000001,0.24,890,3.3000000000000003,216,3.5,56.1400,44.1882 +2012,8,6,18,30,37,1.26,0.099,0.58,121,903,976,0,0,12.9,121,903,0,976,0.28400000000000003,23.66,18.77,0.9500000000000001,0.24,889,3.2,208,3.3000000000000003,60.4484,47.6018 +2012,8,6,19,30,37.300000000000004,1.26,0.1,0.58,121,902,972,0,0,12.4,121,902,0,972,0.28500000000000003,22.54,19.29,0.96,0.24,888,3.2,200,3.2,60.1774,47.3872 +2012,8,6,20,30,37.4,1.27,0.101,0.58,118,889,907,0,1,11.8,118,889,0,907,0.28500000000000003,21.62,27.45,0.96,0.24,887,3.1,191,3.1,55.5761,43.7406 +2012,8,6,21,30,37.2,1.25,0.094,0.58,108,867,785,0,1,11.3,108,867,0,785,0.28500000000000003,21.150000000000002,38.62,0.96,0.24,887,3,184,3.1,47.1142,37.0348 +2012,8,6,22,30,36.5,1.26,0.093,0.58,97,816,614,7,3,10.8,277,456,7,566,0.28500000000000003,21.23,50.75,0.96,0.24,886,3,181,3.1,34.4146,26.9829 +2012,8,6,23,30,35.5,1.27,0.09,0.58,81,731,412,0,3,10.4,248,58,0,274,0.28500000000000003,21.85,63.13,0.96,0.24,886,2.9000000000000004,179,3.1,17.3704,13.5417 +2012,8,7,0,30,33.4,1.29,0.08700000000000001,0.58,58,563,200,0,0,10.200000000000001,58,563,0,200,0.28500000000000003,24.1,75.43,0.96,0.24,886,2.9000000000000004,176,2.4000000000000004,9.8068,7.5330 +2012,8,7,1,30,31.1,1.3,0.083,0.58,18,164,26,0,0,10.4,18,164,0,26,0.28600000000000003,27.87,87.31,0.9500000000000001,0.24,886,2.9000000000000004,173,2.2,0.0000,0.0000 +2012,8,7,2,30,30,1.32,0.081,0.58,0,0,0,0,0,9.9,0,0,0,0,0.28600000000000003,28.740000000000002,98.98,0.9500000000000001,0.24,887,3,175,2.8000000000000003,0.0000,0.0000 +2012,8,7,3,30,29.400000000000002,1.33,0.081,0.58,0,0,0,0,0,9.3,0,0,0,0,0.28500000000000003,28.59,109.52,0.9500000000000001,0.24,887,3,179,3.5,0.0000,0.0000 +2012,8,7,4,30,28.8,1.33,0.082,0.58,0,0,0,0,1,9,0,0,0,0,0.28500000000000003,28.93,118.60000000000001,0.9500000000000001,0.24,887,3,184,3.8000000000000003,0.0000,0.0000 +2012,8,7,5,30,28.1,1.34,0.084,0.58,0,0,0,0,3,8.8,0,0,0,0,0.28500000000000003,29.84,125.44,0.9500000000000001,0.24,887,3.1,189,3.9000000000000004,0.0000,0.0000 +2012,8,7,6,30,27.5,1.35,0.08700000000000001,0.58,0,0,0,0,7,8.8,0,0,0,0,0.28400000000000003,30.91,129.11,0.9500000000000001,0.24,887,3.1,195,3.9000000000000004,0.0000,0.0000 +2012,8,7,7,30,27,1.35,0.089,0.58,0,0,0,0,7,9,0,0,0,0,0.28400000000000003,32.11,128.9,0.9500000000000001,0.24,887,3,201,3.8000000000000003,0.0000,0.0000 +2012,8,7,8,30,26.400000000000002,1.36,0.09,0.58,0,0,0,0,7,9.200000000000001,0,0,0,0,0.28400000000000003,33.77,124.86,0.9500000000000001,0.24,886,3,207,3.7,0.0000,0.0000 +2012,8,7,9,30,25.6,1.37,0.088,0.58,0,0,0,0,8,9.600000000000001,0,0,0,0,0.28300000000000003,36.44,117.74000000000001,0.9500000000000001,0.24,886,3,215,3.5,0.0000,0.0000 +2012,8,7,10,30,24.700000000000003,1.3900000000000001,0.084,0.58,0,0,0,0,8,10.200000000000001,0,0,0,0,0.28300000000000003,40,108.48,0.9500000000000001,0.24,887,3,223,3.1,0.0000,0.0000 +2012,8,7,11,30,24.3,1.4000000000000001,0.081,0.58,0,0,0,0,7,10.8,0,0,0,0,0.28300000000000003,42.65,97.82000000000001,0.9500000000000001,0.24,887,2.9000000000000004,231,3,0.0000,0.0000 +2012,8,7,12,30,25.3,1.41,0.077,0.58,23,239,39,7,6,11.600000000000001,22,1,7,22,0.28300000000000003,42.38,86.12,0.9500000000000001,0.24,887,2.9000000000000004,238,3.3000000000000003,0.0000,0.0000 +2012,8,7,13,30,28.400000000000002,1.42,0.075,0.58,58,609,224,0,8,12.200000000000001,93,7,0,95,0.28300000000000003,36.81,74.17,0.9500000000000001,0.24,887,2.8000000000000003,243,4,10.8499,8.3520 +2012,8,7,14,30,32,1.43,0.07200000000000001,0.58,76,768,438,0,7,11.9,223,134,0,286,0.28200000000000003,29.330000000000002,61.85,0.9500000000000001,0.24,887,2.8000000000000003,246,4.3,23.5101,18.3431 +2012,8,7,15,30,34.6,1.44,0.07100000000000001,0.58,88,847,639,0,0,11.100000000000001,88,847,0,639,0.28200000000000003,23.96,49.49,0.9500000000000001,0.24,887,2.9000000000000004,244,3.8000000000000003,36.4784,28.6109 +2012,8,7,16,30,36.5,1.44,0.07100000000000001,0.58,97,891,804,7,3,10.700000000000001,294,600,7,771,0.28200000000000003,21.04,37.46,0.9500000000000001,0.24,887,3,231,2.9000000000000004,47.6459,37.4587 +2012,8,7,17,30,38,1.44,0.073,0.58,103,916,923,0,0,10.5,103,916,0,923,0.28200000000000003,19.1,26.53,0.9500000000000001,0.24,886,3,207,2.5,54.2383,42.6907 +2012,8,7,18,30,39,1.41,0.07200000000000001,0.58,106,926,981,0,0,10.5,106,926,0,981,0.28200000000000003,18.080000000000002,19.03,0.96,0.24,886,3.1,187,2.7,59.9442,47.2041 +2012,8,7,19,30,39.300000000000004,1.3900000000000001,0.081,0.58,110,917,974,0,3,10.5,369,2,0,370,0.281,17.8,19.56,0.96,0.24,885,3.2,178,3.2,59.6726,46.9890 +2012,8,7,20,30,38.900000000000006,1.37,0.091,0.58,112,894,904,7,3,10.4,470,294,7,731,0.281,18.12,27.68,0.96,0.24,884,3.3000000000000003,173,3.6,55.1956,43.4405 +2012,8,7,21,30,37.9,1.35,0.096,0.58,108,859,778,0,0,10.5,108,859,0,778,0.28200000000000003,19.27,38.81,0.96,0.24,884,3.4000000000000004,170,3.8000000000000003,46.8568,36.8315 +2012,8,7,22,30,36.800000000000004,1.35,0.1,0.58,99,802,605,0,1,10.8,99,802,0,605,0.28300000000000003,20.81,50.92,0.96,0.24,884,3.5,168,3.8000000000000003,32.6065,25.5640 +2012,8,7,23,30,35.4,1.35,0.105,0.58,85,704,402,0,0,11.100000000000001,85,704,0,402,0.28400000000000003,22.96,63.300000000000004,0.96,0.24,884,3.5,166,3.5,14.8100,11.5442 +2012,8,8,0,30,33.300000000000004,1.36,0.111,0.58,62,517,191,0,8,11.8,78,8,0,80,0.28600000000000003,27.080000000000002,75.61,0.96,0.24,884,3.6,160,2.8000000000000003,9.7439,7.4824 +2012,8,8,1,30,31.3,1.37,0.116,0.58,17,116,22,7,8,13.700000000000001,11,0,7,11,0.28700000000000003,34.37,87.49,0.96,0.24,885,3.6,155,2.8000000000000003,0.0000,0.0000 +2012,8,8,2,30,30,1.3900000000000001,0.117,0.58,0,0,0,0,3,14.3,0,0,0,0,0.28800000000000003,38.47,99.18,0.96,0.24,885,3.6,152,3.5,0.0000,0.0000 +2012,8,8,3,30,29,1.43,0.112,0.58,0,0,0,0,7,14.5,0,0,0,0,0.28800000000000003,41.18,109.75,0.96,0.24,886,3.5,151,4.1000000000000005,0.0000,0.0000 +2012,8,8,4,30,27.900000000000002,1.46,0.11,0.58,0,0,0,0,8,14.700000000000001,0,0,0,0,0.28800000000000003,44.43,118.85000000000001,0.96,0.24,886,3.5,148,4,0.0000,0.0000 +2012,8,8,5,30,26.900000000000002,1.46,0.11900000000000001,0.58,0,0,0,0,8,14.9,0,0,0,0,0.28700000000000003,47.7,125.72,0.96,0.24,887,3.5,143,3.6,0.0000,0.0000 +2012,8,8,6,30,26.200000000000003,1.44,0.137,0.58,0,0,0,0,7,15.100000000000001,0,0,0,0,0.28700000000000003,50.43,129.39000000000001,0.96,0.24,887,3.5,140,3.2,0.0000,0.0000 +2012,8,8,7,30,25.6,1.45,0.15,0.58,0,0,0,0,4,15.3,0,0,0,0,0.28600000000000003,53.1,129.17000000000002,0.96,0.24,887,3.6,143,2.8000000000000003,0.0000,0.0000 +2012,8,8,8,30,24.900000000000002,1.46,0.152,0.58,0,0,0,0,4,15.5,0,0,0,0,0.28500000000000003,56.08,125.11,0.96,0.24,887,3.6,148,2.6,0.0000,0.0000 +2012,8,8,9,30,23.900000000000002,1.51,0.138,0.58,0,0,0,0,7,15.700000000000001,0,0,0,0,0.28500000000000003,60.050000000000004,117.96000000000001,0.96,0.24,887,3.5,153,2.4000000000000004,0.0000,0.0000 +2012,8,8,10,30,23,1.55,0.126,0.58,0,0,0,0,7,15.8,0,0,0,0,0.28300000000000003,63.910000000000004,108.66,0.9500000000000001,0.24,887,3.5,161,2.1,0.0000,0.0000 +2012,8,8,11,30,22.6,1.57,0.11900000000000001,0.58,0,0,0,0,4,15.9,0,0,0,0,0.28200000000000003,65.96000000000001,97.98,0.9500000000000001,0.24,888,3.4000000000000004,174,2.2,0.0000,0.0000 +2012,8,8,12,30,23.3,1.58,0.114,0.58,23,187,35,7,8,15.9,22,1,7,22,0.281,63.17,86.25,0.9500000000000001,0.24,888,3.4000000000000004,187,2.8000000000000003,0.0000,0.0000 +2012,8,8,13,30,25.400000000000002,1.58,0.111,0.58,65,551,214,0,4,15.100000000000001,13,0,0,13,0.281,52.97,74.29,0.9500000000000001,0.24,889,3.4000000000000004,197,3.3000000000000003,4.6801,3.6019 +2012,8,8,14,30,27.8,1.58,0.112,0.58,89,714,425,0,3,13.8,231,271,0,359,0.28,42.29,61.97,0.9500000000000001,0.24,889,3.4000000000000004,208,3.3000000000000003,15.5897,12.1626 +2012,8,8,15,30,30.1,1.57,0.116,0.58,106,798,623,0,0,12.9,106,798,0,623,0.281,34.910000000000004,49.620000000000005,0.9500000000000001,0.24,889,3.4000000000000004,223,3,36.9837,29.0062 +2012,8,8,16,30,32.1,1.55,0.124,0.58,121,843,789,7,2,12.5,308,577,7,766,0.281,30.38,37.6,0.96,0.24,889,3.4000000000000004,244,2.6,46.1360,36.2710 +2012,8,8,17,30,33.7,1.54,0.132,0.58,132,868,907,0,0,12.5,132,868,0,907,0.28200000000000003,27.6,26.71,0.96,0.24,889,3.3000000000000003,263,2.2,56.2360,44.2625 +2012,8,8,18,30,34.9,1.56,0.166,0.58,152,860,964,0,0,12.4,152,860,0,964,0.28200000000000003,25.68,19.29,0.96,0.24,888,3.2,274,2,60.2383,47.4351 +2012,8,8,19,30,35.7,1.57,0.166,0.58,151,861,961,0,0,12.100000000000001,151,861,0,961,0.28300000000000003,24.2,19.84,0.96,0.24,887,3.1,280,1.7000000000000002,22.7096,17.8824 +2012,8,8,20,30,35.9,1.58,0.164,0.58,146,850,898,0,0,11.8,146,850,0,898,0.28400000000000003,23.34,27.900000000000002,0.9500000000000001,0.24,887,2.9000000000000004,299,1.5,44.4716,34.9997 +2012,8,8,21,30,35.9,1.62,0.105,0.58,112,868,786,0,0,11.200000000000001,112,868,0,786,0.28400000000000003,22.47,39,0.9500000000000001,0.24,886,2.6,170,1.6,46.4194,36.4867 +2012,8,8,22,30,35.5,1.6500000000000001,0.098,0.58,98,826,616,0,4,10.5,116,0,0,116,0.28400000000000003,21.95,51.1,0.9400000000000001,0.24,886,2.4000000000000004,41,2.2,34.8307,27.3064 +2012,8,8,23,30,34.300000000000004,1.67,0.091,0.58,80,748,414,0,0,9.700000000000001,80,748,0,414,0.28400000000000003,22.3,63.47,0.9400000000000001,0.24,886,2.2,60,2.7,21.7033,16.9155 +2012,8,9,0,30,31.700000000000003,1.69,0.08600000000000001,0.58,56,586,200,0,0,9.3,56,586,0,200,0.28400000000000003,24.990000000000002,75.79,0.93,0.24,886,2,72,2.2,3.8917,2.9875 +2012,8,9,1,30,28.700000000000003,1.7,0.081,0.58,16,180,23,0,0,10.700000000000001,16,180,0,23,0.28400000000000003,32.72,87.67,0.93,0.24,887,1.9000000000000001,88,1.7000000000000002,0.0000,0.0000 +2012,8,9,2,30,27.1,1.71,0.075,0.58,0,0,0,0,0,11.200000000000001,0,0,0,0,0.28400000000000003,37.06,99.39,0.93,0.24,888,1.8,106,1.7000000000000002,0.0000,0.0000 +2012,8,9,3,30,26,1.71,0.073,0.58,0,0,0,0,0,11.8,0,0,0,0,0.28300000000000003,41.2,109.98,0.92,0.24,888,1.8,125,1.6,0.0000,0.0000 +2012,8,9,4,30,25,1.71,0.073,0.58,0,0,0,0,0,12.4,0,0,0,0,0.28200000000000003,45.54,119.11,0.92,0.24,888,1.9000000000000001,144,1.5,0.0000,0.0000 +2012,8,9,5,30,24.200000000000003,1.7,0.073,0.58,0,0,0,0,0,12.8,0,0,0,0,0.281,49.050000000000004,125.99000000000001,0.92,0.24,888,1.9000000000000001,160,1.4000000000000001,0.0000,0.0000 +2012,8,9,6,30,23.400000000000002,1.69,0.073,0.58,0,0,0,0,0,13,0,0,0,0,0.281,52.17,129.68,0.92,0.24,888,2,173,1.3,0.0000,0.0000 +2012,8,9,7,30,22.700000000000003,1.68,0.073,0.58,0,0,0,0,0,13.100000000000001,0,0,0,0,0.28,54.71,129.45,0.92,0.24,888,2,183,1.2000000000000002,0.0000,0.0000 +2012,8,9,8,30,22.1,1.68,0.075,0.58,0,0,0,0,0,13.200000000000001,0,0,0,0,0.279,56.910000000000004,125.36,0.92,0.24,888,2.1,195,1.1,0.0000,0.0000 +2012,8,9,9,30,21.6,1.68,0.08,0.58,0,0,0,0,0,13.3,0,0,0,0,0.279,59.13,118.17,0.92,0.24,888,2.1,209,1,0.0000,0.0000 +2012,8,9,10,30,21.200000000000003,1.68,0.083,0.58,0,0,0,0,0,13.4,0,0,0,0,0.28,61.27,108.84,0.92,0.24,888,2,226,0.9,0.0000,0.0000 +2012,8,9,11,30,21.3,1.69,0.084,0.58,0,0,0,0,0,13.600000000000001,0,0,0,0,0.28,61.36,98.13,0.91,0.24,889,2,246,0.9,0.0000,0.0000 +2012,8,9,12,30,23.200000000000003,1.7,0.083,0.58,21,247,37,0,0,13.700000000000001,21,247,0,37,0.28,55.06,86.38,0.91,0.24,889,1.9000000000000001,265,1.4000000000000001,0.0000,0.0000 +2012,8,9,13,30,26.900000000000002,1.71,0.081,0.58,57,625,226,0,0,13.8,57,625,0,226,0.281,44.51,74.41,0.91,0.24,889,1.8,288,1.5,0.6397,0.4922 +2012,8,9,14,30,30.700000000000003,1.72,0.081,0.58,78,783,444,0,0,12,78,783,0,444,0.28200000000000003,31.8,62.09,0.91,0.24,889,1.8,177,1,19.5538,15.2540 +2012,8,9,15,30,33.4,1.72,0.081,0.58,91,864,650,0,0,8.700000000000001,91,864,0,650,0.28200000000000003,21.91,49.74,0.91,0.24,889,1.8,63,1.1,36.0408,28.2657 +2012,8,9,16,30,35.300000000000004,1.73,0.08,0.58,100,912,821,0,0,6.9,100,912,0,821,0.28300000000000003,17.45,37.74,0.91,0.24,889,1.8,78,1.6,45.8233,36.0244 +2012,8,9,17,30,36.7,1.73,0.078,0.58,104,939,942,0,0,6.1000000000000005,104,939,0,942,0.28300000000000003,15.3,26.900000000000002,0.91,0.24,888,1.8,81,1.9000000000000001,55.2485,43.4847 +2012,8,9,18,30,37.7,1.72,0.074,0.58,105,951,1001,0,0,5.800000000000001,105,951,0,1001,0.28300000000000003,14.17,19.56,0.91,0.24,888,1.9000000000000001,82,2.2,59.1814,46.6023 +2012,8,9,19,30,38.300000000000004,1.72,0.074,0.58,105,951,998,0,0,5.7,105,951,0,998,0.28200000000000003,13.59,20.13,0.92,0.24,887,1.9000000000000001,82,2.4000000000000004,58.9692,46.4338 +2012,8,9,20,30,38.5,1.72,0.075,0.58,103,934,927,0,0,5.6000000000000005,103,934,0,927,0.28200000000000003,13.38,28.13,0.92,0.24,886,2,83,2.5,54.6152,42.9820 +2012,8,9,21,30,38.2,1.71,0.07,0.58,94,911,800,0,0,5.5,94,911,0,800,0.281,13.5,39.2,0.92,0.24,886,2,84,2.7,46.8768,36.8452 +2012,8,9,22,30,37.4,1.71,0.07100000000000001,0.58,86,861,624,0,0,5.4,86,861,0,624,0.281,13.98,51.28,0.92,0.24,885,2,87,2.9000000000000004,6.6737,5.2317 +2012,8,9,23,30,36.1,1.71,0.07200000000000001,0.58,73,774,416,0,0,5.4,73,774,0,416,0.281,14.99,63.65,0.92,0.24,885,2,92,2.8000000000000003,22.3251,17.3979 +2012,8,10,0,30,32.9,1.71,0.073,0.58,53,602,198,0,0,5.7,53,602,0,198,0.281,18.37,75.97,0.92,0.24,885,2,102,2,9.7148,7.4552 +2012,8,10,1,30,29.6,1.71,0.073,0.58,15,180,21,0,0,8.200000000000001,15,180,0,21,0.281,26.26,87.85000000000001,0.92,0.24,886,2,112,1.5,0.0000,0.0000 +2012,8,10,2,30,28,1.72,0.073,0.58,0,0,0,0,0,8.1,0,0,0,0,0.28200000000000003,28.5,99.61,0.92,0.24,886,2,117,1.7000000000000002,0.0000,0.0000 +2012,8,10,3,30,27,1.72,0.074,0.58,0,0,0,0,0,8.3,0,0,0,0,0.28300000000000003,30.63,110.21000000000001,0.92,0.24,887,2,117,1.9000000000000001,0.0000,0.0000 +2012,8,10,4,30,26,1.74,0.077,0.58,0,0,0,0,0,8.700000000000001,0,0,0,0,0.28400000000000003,33.47,119.37,0.92,0.24,887,2.1,114,1.9000000000000001,0.0000,0.0000 +2012,8,10,5,30,25,1.75,0.083,0.58,0,0,0,0,0,9.1,0,0,0,0,0.28400000000000003,36.58,126.28,0.92,0.24,887,2.1,107,2,0.0000,0.0000 +2012,8,10,6,30,24.1,1.77,0.089,0.58,0,0,0,0,0,9.5,0,0,0,0,0.28500000000000003,39.51,129.98,0.92,0.24,888,2.2,100,2.2,0.0000,0.0000 +2012,8,10,7,30,23.3,1.79,0.093,0.58,0,0,0,0,0,9.700000000000001,0,0,0,0,0.28500000000000003,42.09,129.74,0.92,0.24,888,2.2,94,2.5,0.0000,0.0000 +2012,8,10,8,30,22.400000000000002,1.8,0.096,0.58,0,0,0,0,0,9.700000000000001,0,0,0,0,0.28600000000000003,44.550000000000004,125.61,0.91,0.24,888,2.2,91,2.8000000000000003,0.0000,0.0000 +2012,8,10,9,30,21.400000000000002,1.81,0.097,0.58,0,0,0,0,0,9.5,0,0,0,0,0.28600000000000003,46.730000000000004,118.39,0.91,0.24,888,2.1,91,3,0.0000,0.0000 +2012,8,10,10,30,20.6,1.82,0.097,0.58,0,0,0,0,0,9.200000000000001,0,0,0,0,0.28500000000000003,47.93,109.03,0.91,0.24,889,2.1,91,3,0.0000,0.0000 +2012,8,10,11,30,20,1.83,0.096,0.58,0,0,0,0,0,8.9,0,0,0,0,0.28500000000000003,48.74,98.29,0.9,0.24,889,2.1,91,3.1,0.0000,0.0000 +2012,8,10,12,30,21,1.83,0.096,0.58,20,227,34,0,0,8.8,20,227,0,34,0.28400000000000003,45.56,86.51,0.9,0.24,889,2,92,3.4000000000000004,0.0000,0.0000 +2012,8,10,13,30,23.5,1.83,0.095,0.58,59,600,219,0,0,8.8,59,600,0,219,0.28400000000000003,39.24,74.54,0.9,0.24,890,2,97,3.7,11.1095,8.5465 +2012,8,10,14,30,26.5,1.84,0.094,0.58,81,763,436,0,0,8.8,81,763,0,436,0.28400000000000003,32.63,62.21,0.9,0.24,890,2,105,3.7,24.1648,18.8496 +2012,8,10,15,30,29.6,1.84,0.094,0.58,95,847,641,0,0,8.4,95,847,0,641,0.28500000000000003,26.62,49.86,0.9,0.24,889,2,115,3.4000000000000004,37.5864,29.4769 +2012,8,10,16,30,32.5,1.84,0.095,0.58,105,892,809,0,0,8,105,892,0,809,0.28500000000000003,21.88,37.89,0.9,0.24,889,2.1,127,2.8000000000000003,49.0990,38.5989 +2012,8,10,17,30,34.9,1.84,0.098,0.58,112,917,929,0,0,7.7,112,917,0,929,0.28600000000000003,18.84,27.1,0.9,0.24,888,2.1,130,2.1,57.3666,45.1510 +2012,8,10,18,30,36.5,1.85,0.153,0.58,140,893,980,0,0,7.5,140,893,0,980,0.28600000000000003,17.02,19.830000000000002,0.9,0.24,887,2.1,120,1.8,61.4387,48.3791 +2012,8,10,19,30,37.4,1.86,0.162,0.58,144,884,972,0,0,7.2,144,884,0,972,0.28500000000000003,15.790000000000001,20.42,0.9,0.24,886,2.2,109,1.9000000000000001,61.2239,48.2085 +2012,8,10,20,30,37.9,1.86,0.168,0.58,143,864,903,0,0,6.7,143,864,0,903,0.28500000000000003,14.92,28.37,0.91,0.24,886,2.2,106,2.3000000000000003,56.3613,44.3554 +2012,8,10,21,30,37.800000000000004,1.68,0.073,0.58,95,905,794,0,0,6.300000000000001,95,905,0,794,0.28400000000000003,14.57,39.4,0.91,0.24,885,2.1,109,2.8000000000000003,47.6903,37.4834 +2012,8,10,22,30,37,1.68,0.07200000000000001,0.58,85,857,619,0,0,5.800000000000001,85,857,0,619,0.28400000000000003,14.65,51.47,0.91,0.24,885,2.1,114,3.3000000000000003,35.8746,28.1217 +2012,8,10,23,30,35.5,1.68,0.07,0.58,71,774,413,0,0,5.2,71,774,0,413,0.28300000000000003,15.35,63.84,0.91,0.24,885,2,119,3.8000000000000003,22.4049,17.4578 +2012,8,11,0,30,32.7,1.68,0.069,0.58,51,604,195,0,0,5.1000000000000005,51,604,0,195,0.28300000000000003,17.77,76.16,0.91,0.24,885,2,123,3.8000000000000003,9.6037,7.3674 +2012,8,11,1,30,29.900000000000002,1.68,0.067,0.58,14,176,20,0,0,5.9,14,176,0,20,0.28300000000000003,22.03,88.04,0.91,0.24,885,2,126,4.1000000000000005,0.0000,0.0000 +2012,8,11,2,30,27.900000000000002,1.68,0.065,0.58,0,0,0,0,0,6.300000000000001,0,0,0,0,0.28300000000000003,25.48,99.83,0.91,0.24,886,2,129,4.5,0.0000,0.0000 +2012,8,11,3,30,26.3,1.7,0.066,0.58,0,0,0,0,0,6.5,0,0,0,0,0.28300000000000003,28.3,110.46000000000001,0.91,0.24,886,2,132,4.2,0.0000,0.0000 +2012,8,11,4,30,24.8,1.73,0.069,0.58,0,0,0,0,0,6.4,0,0,0,0,0.28300000000000003,30.64,119.63,0.91,0.24,887,2,137,3.8000000000000003,0.0000,0.0000 +2012,8,11,5,30,23.6,1.75,0.073,0.58,0,0,0,0,0,5.9,0,0,0,0,0.28300000000000003,31.95,126.57000000000001,0.91,0.24,887,2,144,3.2,0.0000,0.0000 +2012,8,11,6,30,22.6,1.76,0.078,0.58,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28300000000000003,33.11,130.27,0.91,0.24,887,2.1,151,2.8000000000000003,0.0000,0.0000 +2012,8,11,7,30,21.900000000000002,1.77,0.083,0.58,0,0,0,0,0,5.2,0,0,0,0,0.28300000000000003,33.8,130.02,0.91,0.24,887,2.1,159,2.5,0.0000,0.0000 +2012,8,11,8,30,21.400000000000002,1.77,0.08700000000000001,0.58,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.28400000000000003,34.42,125.87,0.91,0.24,887,2.2,168,2.3000000000000003,0.0000,0.0000 +2012,8,11,9,30,21,1.77,0.091,0.58,0,0,0,0,0,5,0,0,0,0,0.28400000000000003,35,118.60000000000001,0.92,0.24,887,2.2,178,2,0.0000,0.0000 +2012,8,11,10,30,20.5,1.78,0.094,0.58,0,0,0,0,4,5,0,0,0,0,0.28400000000000003,36.28,109.21000000000001,0.92,0.24,887,2.3000000000000003,185,1.7000000000000002,0.0000,0.0000 +2012,8,11,11,30,20.400000000000002,1.78,0.097,0.58,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.28500000000000003,36.75,98.44,0.92,0.24,887,2.3000000000000003,186,1.8,0.0000,0.0000 +2012,8,11,12,30,21.3,1.78,0.101,0.58,20,205,32,0,0,5.2,20,205,0,32,0.28500000000000003,34.910000000000004,86.64,0.91,0.24,887,2.4000000000000004,185,2.3000000000000003,0.0000,0.0000 +2012,8,11,13,30,23.900000000000002,1.79,0.106,0.58,61,572,213,0,0,5.300000000000001,61,572,0,213,0.28500000000000003,30.1,74.66,0.91,0.24,887,2.5,183,3.1,10.7528,8.2703 +2012,8,11,14,30,27.700000000000003,1.81,0.109,0.58,85,734,426,0,4,5.6000000000000005,49,0,0,49,0.28500000000000003,24.45,62.33,0.91,0.24,887,2.5,188,4.1000000000000005,23.7109,18.4941 +2012,8,11,15,30,31.3,1.82,0.113,0.58,102,818,628,0,3,6.1000000000000005,345,66,0,387,0.28500000000000003,20.55,49.99,0.91,0.24,887,2.5,200,4.4,37.0498,29.0551 +2012,8,11,16,30,34.300000000000004,1.83,0.116,0.58,114,867,797,0,1,6.4,114,867,0,797,0.28400000000000003,17.8,38.03,0.91,0.24,886,2.5,211,4.2,48.3659,38.0218 +2012,8,11,17,30,36.800000000000004,1.83,0.11800000000000001,0.58,122,894,916,0,0,6.300000000000001,122,894,0,916,0.28400000000000003,15.41,27.29,0.91,0.24,886,2.5,216,4.1000000000000005,56.5603,44.5158 +2012,8,11,18,30,38.5,1.9100000000000001,0.081,0.58,106,933,983,0,0,5.9,106,933,0,983,0.28400000000000003,13.66,20.1,0.9,0.24,885,2.5,215,4,60.1356,47.3523 +2012,8,11,19,30,39.6,1.9100000000000001,0.085,0.58,108,932,980,0,0,5.5,108,932,0,980,0.28300000000000003,12.49,20.71,0.9,0.24,884,2.4000000000000004,212,4,59.6133,46.9395 +2012,8,11,20,30,39.900000000000006,1.9000000000000001,0.089,0.58,108,915,911,0,0,5,108,915,0,911,0.28300000000000003,11.91,28.62,0.91,0.24,883,2.4000000000000004,208,4.1000000000000005,54.8841,43.1919 +2012,8,11,21,30,39.7,1.9000000000000001,0.096,0.58,104,880,782,0,0,4.6000000000000005,104,880,0,782,0.28300000000000003,11.68,39.61,0.91,0.24,882,2.4000000000000004,204,4.2,47.3111,37.1842 +2012,8,11,22,30,38.900000000000006,1.9100000000000001,0.098,0.58,95,828,609,0,0,4.3,95,828,0,609,0.28300000000000003,11.92,51.660000000000004,0.91,0.24,882,2.3000000000000003,201,4.4,35.5607,27.8740 +2012,8,11,23,30,37.4,1.92,0.094,0.58,78,743,404,0,0,3.9000000000000004,78,743,0,404,0.28300000000000003,12.63,64.02,0.91,0.24,882,2.2,197,4.4,22.2138,17.3065 +2012,8,12,0,30,34.6,1.93,0.08600000000000001,0.58,53,577,190,0,0,3.7,53,577,0,190,0.28400000000000003,14.51,76.35000000000001,0.91,0.24,882,2.1,192,3.8000000000000003,9.4440,7.2424 +2012,8,12,1,30,31.700000000000003,1.92,0.078,0.58,13,159,17,0,0,4,13,159,0,17,0.28400000000000003,17.39,88.24,0.91,0.24,883,2,188,3.5,0.0000,0.0000 +2012,8,12,2,30,30,1.8900000000000001,0.074,0.58,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.28500000000000003,19.03,100.05,0.91,0.24,883,2,189,3.9000000000000004,0.0000,0.0000 +2012,8,12,3,30,28.6,1.85,0.073,0.58,0,0,0,0,0,4,0,0,0,0,0.28500000000000003,20.87,110.7,0.91,0.24,883,2.1,192,3.9000000000000004,0.0000,0.0000 +2012,8,12,4,30,27.5,1.82,0.078,0.58,0,0,0,0,8,4.4,0,0,0,0,0.28500000000000003,22.86,119.9,0.91,0.24,884,2.2,196,3.9000000000000004,0.0000,0.0000 +2012,8,12,5,30,26.6,1.8,0.08700000000000001,0.58,0,0,0,0,3,4.800000000000001,0,0,0,0,0.28600000000000003,24.78,126.86,0.92,0.24,884,2.3000000000000003,202,3.9000000000000004,0.0000,0.0000 +2012,8,12,6,30,25.900000000000002,1.78,0.099,0.58,0,0,0,0,8,5.2,0,0,0,0,0.28600000000000003,26.46,130.58,0.92,0.24,884,2.4000000000000004,211,3.9000000000000004,0.0000,0.0000 +2012,8,12,7,30,25.3,1.75,0.112,0.58,0,0,0,0,4,5.4,0,0,0,0,0.28600000000000003,27.86,130.31,0.93,0.24,884,2.5,220,3.7,0.0000,0.0000 +2012,8,12,8,30,24.700000000000003,1.71,0.126,0.58,0,0,0,0,1,5.6000000000000005,0,0,0,0,0.28600000000000003,29.310000000000002,126.12,0.93,0.24,884,2.5,229,3.3000000000000003,0.0000,0.0000 +2012,8,12,9,30,23.900000000000002,1.69,0.133,0.58,0,0,0,0,1,6,0,0,0,0,0.28700000000000003,31.61,118.82000000000001,0.93,0.24,884,2.5,241,2.8000000000000003,0.0000,0.0000 +2012,8,12,10,30,23,1.68,0.13,0.58,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.28800000000000003,34.7,109.39,0.93,0.24,885,2.6,256,2.2,0.0000,0.0000 +2012,8,12,11,30,22.8,1.68,0.124,0.58,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.28800000000000003,36.39,98.60000000000001,0.93,0.24,885,2.6,272,2,0.0000,0.0000 +2012,8,12,12,30,24.400000000000002,1.69,0.11900000000000001,0.58,20,173,30,0,0,7.7,20,173,0,30,0.28800000000000003,34.47,86.78,0.93,0.24,886,2.6,291,2.6,0.0000,0.0000 +2012,8,12,13,30,27.8,1.7,0.116,0.58,64,551,209,0,0,8.4,64,551,0,209,0.28800000000000003,29.59,74.79,0.93,0.24,886,2.7,323,3.5,10.4470,8.0334 +2012,8,12,14,30,31.1,1.73,0.114,0.58,88,723,422,0,0,9.1,88,723,0,422,0.28700000000000003,25.52,62.45,0.93,0.24,886,2.7,181,4.6000000000000005,2.6627,2.0767 +2012,8,12,15,30,33.4,1.75,0.115,0.58,104,810,623,0,0,9.3,104,810,0,623,0.28700000000000003,22.7,50.120000000000005,0.93,0.24,886,2.8000000000000003,24,5.300000000000001,22.3580,17.5329 +2012,8,12,16,30,34.9,1.78,0.12,0.58,117,855,789,0,0,9.3,117,855,0,789,0.28700000000000003,20.93,38.18,0.93,0.24,886,2.9000000000000004,36,5.5,47.6342,37.4458 +2012,8,12,17,30,36,1.79,0.126,0.58,126,880,907,0,0,9.3,126,880,0,907,0.28700000000000003,19.740000000000002,27.490000000000002,0.93,0.24,886,2.9000000000000004,44,5.5,55.7550,43.8813 +2012,8,12,18,30,36.7,1.76,0.146,0.58,140,878,963,0,1,9.3,140,878,0,963,0.28700000000000003,19,20.38,0.9400000000000001,0.24,886,3,49,5.5,60.3053,47.4852 +2012,8,12,19,30,37,1.74,0.149,0.58,141,873,956,7,3,9.3,300,672,7,927,0.28600000000000003,18.61,21.01,0.9400000000000001,0.24,886,3.1,54,5.5,60.0879,47.3125 +2012,8,12,20,30,36.800000000000004,1.72,0.148,0.58,135,858,887,0,0,9.200000000000001,135,858,0,887,0.28600000000000003,18.67,28.86,0.93,0.24,885,3.1,58,5.4,55.3511,43.5585 +2012,8,12,21,30,36.300000000000004,1.78,0.107,0.58,110,858,769,0,1,9,110,858,0,769,0.28500000000000003,19,39.82,0.93,0.24,885,3,62,5.300000000000001,46.5737,36.6034 +2012,8,12,22,30,35.4,1.75,0.10400000000000001,0.58,98,808,597,0,0,8.700000000000001,98,808,0,597,0.28500000000000003,19.55,51.85,0.93,0.24,885,2.9000000000000004,67,5.2,34.9600,27.4015 +2012,8,12,23,30,34,1.75,0.105,0.58,82,713,392,0,0,8.4,82,713,0,392,0.28500000000000003,20.650000000000002,64.22,0.93,0.24,885,2.8000000000000003,74,4.9,21.7022,16.9055 +2012,8,13,0,30,31.8,1.76,0.10400000000000001,0.58,56,531,180,0,1,8.1,56,531,0,180,0.28600000000000003,23.01,76.55,0.92,0.24,885,2.7,80,4,9.1884,7.0439 +2012,8,13,1,30,29.400000000000002,1.78,0.109,0.58,12,104,14,0,1,8.200000000000001,12,104,0,14,0.28600000000000003,26.52,88.43,0.92,0.24,886,2.7,78,3,0.0000,0.0000 +2012,8,13,2,30,27.900000000000002,1.8,0.123,0.58,0,0,0,0,1,8.200000000000001,0,0,0,0,0.28700000000000003,28.89,100.27,0.92,0.24,887,2.7,70,2.9000000000000004,0.0000,0.0000 +2012,8,13,3,30,26.8,1.81,0.136,0.58,0,0,0,0,3,8,0,0,0,0,0.28700000000000003,30.55,110.95,0.92,0.24,888,2.7,64,2.8000000000000003,0.0000,0.0000 +2012,8,13,4,30,26,1.8,0.14400000000000002,0.58,0,0,0,0,4,8,0,0,0,0,0.28700000000000003,31.85,120.18,0.92,0.24,888,2.7,63,2.6,0.0000,0.0000 +2012,8,13,5,30,25.3,1.8,0.14400000000000002,0.58,0,0,0,0,3,7.9,0,0,0,0,0.28700000000000003,33,127.16,0.92,0.24,888,2.6,64,2.3000000000000003,0.0000,0.0000 +2012,8,13,6,30,24.5,1.78,0.152,0.58,0,0,0,0,4,7.800000000000001,0,0,0,0,0.28600000000000003,34.47,130.89000000000001,0.93,0.24,889,2.7,57,1.9000000000000001,0.0000,0.0000 +2012,8,13,7,30,24,1.75,0.17200000000000001,0.58,0,0,0,0,4,7.9,0,0,0,0,0.28600000000000003,35.62,130.61,0.93,0.24,889,2.7,45,1.6,0.0000,0.0000 +2012,8,13,8,30,23.700000000000003,1.71,0.199,0.58,0,0,0,0,4,8.3,0,0,0,0,0.28600000000000003,37.4,126.38000000000001,0.9400000000000001,0.24,889,2.8000000000000003,195,1.5,0.0000,0.0000 +2012,8,13,9,30,23.3,1.68,0.225,0.58,0,0,0,0,4,9,0,0,0,0,0.28600000000000003,40.12,119.05,0.9400000000000001,0.24,890,2.8000000000000003,336,1.8,0.0000,0.0000 +2012,8,13,10,30,22.900000000000002,1.69,0.23600000000000002,0.58,0,0,0,0,4,9.600000000000001,0,0,0,0,0.28700000000000003,42.75,109.58,0.9400000000000001,0.24,890,2.9000000000000004,319,2.1,0.0000,0.0000 +2012,8,13,11,30,22.5,1.73,0.228,0.58,0,0,0,0,3,10.100000000000001,0,0,0,0,0.28600000000000003,45.38,98.76,0.9400000000000001,0.24,891,2.9000000000000004,322,2.1,0.0000,0.0000 +2012,8,13,12,30,22.900000000000002,1.78,0.194,0.58,19,115,26,7,4,10.700000000000001,11,0,7,11,0.28600000000000003,46.15,86.91,0.93,0.24,891,2.9000000000000004,330,2.2,0.0000,0.0000 +2012,8,13,13,30,24.200000000000003,1.81,0.17300000000000001,0.58,73,485,200,0,4,11.100000000000001,9,0,0,9,0.28500000000000003,43.77,74.91,0.93,0.24,891,2.9000000000000004,344,1.6,10.2390,7.8716 +2012,8,13,14,30,26.1,1.81,0.164,0.58,102,671,411,0,4,10.4,51,0,0,51,0.28500000000000003,37.4,62.57,0.93,0.24,891,2.9000000000000004,247,0.9,22.9135,17.8693 +2012,8,13,15,30,28.5,1.8,0.162,0.58,121,768,613,0,4,9.200000000000001,318,352,0,543,0.28500000000000003,29.98,50.24,0.93,0.24,891,2.9000000000000004,144,1.1,35.9750,28.2102 +2012,8,13,16,30,31,1.8,0.161,0.58,134,825,781,7,3,8.200000000000001,374,427,7,708,0.28500000000000003,24.21,38.33,0.93,0.24,890,2.9000000000000004,148,1.9000000000000001,47.1408,37.0571 +2012,8,13,17,30,33.1,1.8,0.16,0.58,141,857,900,0,0,7.800000000000001,141,857,0,900,0.28500000000000003,20.93,27.7,0.93,0.24,890,2.9000000000000004,150,2.5,55.1927,43.4380 +2012,8,13,18,30,34.6,1.8900000000000001,0.129,0.58,131,891,965,0,0,7.7,131,891,0,965,0.28400000000000003,19.1,20.67,0.93,0.24,888,2.9000000000000004,152,3.2,59.0634,46.5067 +2012,8,13,19,30,35.4,1.87,0.131,0.58,131,889,960,0,0,7.800000000000001,131,889,0,960,0.28300000000000003,18.39,21.31,0.93,0.24,888,2.9000000000000004,155,3.8000000000000003,56.8224,44.7405 +2012,8,13,20,30,35.6,1.85,0.135,0.58,129,871,890,0,0,7.9,129,871,0,890,0.28300000000000003,18.38,29.12,0.93,0.24,887,2.9000000000000004,159,4.2,53.8748,42.3958 +2012,8,13,21,30,35.2,1.8800000000000001,0.10300000000000001,0.58,108,863,769,0,0,8.1,108,863,0,769,0.28200000000000003,19,40.04,0.93,0.24,886,2.9000000000000004,162,4.5,45.7772,35.9762 +2012,8,13,22,30,34.300000000000004,1.85,0.107,0.58,99,805,593,0,0,8.200000000000001,99,805,0,593,0.281,20.05,52.06,0.93,0.24,886,2.9000000000000004,165,4.5,34.2453,26.8397 +2012,8,13,23,30,32.9,1.82,0.11,0.58,83,707,389,0,0,8.200000000000001,83,707,0,389,0.281,21.78,64.41,0.93,0.24,886,2.8000000000000003,168,4.4,21.0276,16.3776 +2012,8,14,0,30,30.700000000000003,1.82,0.107,0.58,56,522,176,0,0,8.5,56,522,0,176,0.281,25.1,76.75,0.92,0.24,886,2.8000000000000003,172,3.6,8.6919,6.6607 +2012,8,14,1,30,28.3,1.83,0.10200000000000001,0.58,11,101,13,0,0,9.3,11,101,0,13,0.281,30.42,88.63,0.92,0.24,886,2.8000000000000003,177,3.1,0.0000,0.0000 +2012,8,14,2,30,26.700000000000003,1.82,0.099,0.58,0,0,0,0,0,9.9,0,0,0,0,0.28,34.89,100.5,0.92,0.24,886,2.7,183,3.1,0.0000,0.0000 +2012,8,14,3,30,25.6,1.8,0.1,0.58,0,0,0,0,0,10.3,0,0,0,0,0.28,38.22,111.2,0.92,0.24,887,2.7,186,3.1,0.0000,0.0000 +2012,8,14,4,30,24.700000000000003,1.78,0.105,0.58,0,0,0,0,0,10.600000000000001,0,0,0,0,0.28,41.12,120.46000000000001,0.92,0.24,887,2.7,187,3.1,0.0000,0.0000 +2012,8,14,5,30,23.900000000000002,1.76,0.114,0.58,0,0,0,0,1,10.8,0,0,0,0,0.279,43.78,127.46000000000001,0.93,0.24,887,2.7,190,3.1,0.0000,0.0000 +2012,8,14,6,30,23.400000000000002,1.72,0.13,0.58,0,0,0,0,7,10.8,0,0,0,0,0.279,45.09,131.2,0.93,0.24,887,2.8000000000000003,193,3.1,0.0000,0.0000 +2012,8,14,7,30,22.900000000000002,1.67,0.147,0.58,0,0,0,0,7,10.600000000000001,0,0,0,0,0.279,45.910000000000004,130.9,0.9400000000000001,0.24,887,2.9000000000000004,197,3,0.0000,0.0000 +2012,8,14,8,30,22.5,1.6300000000000001,0.158,0.58,0,0,0,0,7,10.700000000000001,0,0,0,0,0.279,47.22,126.65,0.9400000000000001,0.24,886,3,200,2.7,0.0000,0.0000 +2012,8,14,9,30,22.1,1.61,0.164,0.58,0,0,0,0,8,10.8,0,0,0,0,0.279,48.63,119.27,0.9400000000000001,0.24,886,3.1,201,2.5,0.0000,0.0000 +2012,8,14,10,30,21.8,1.59,0.171,0.58,0,0,0,0,4,10.9,0,0,0,0,0.279,50.02,109.77,0.9400000000000001,0.24,886,3.2,204,2.3000000000000003,0.0000,0.0000 +2012,8,14,11,30,21.8,1.58,0.17200000000000001,0.58,0,0,0,0,3,11.100000000000001,0,0,0,0,0.279,50.57,98.92,0.9400000000000001,0.24,886,3.2,207,2.4000000000000004,0.0000,0.0000 +2012,8,14,12,30,23.1,1.57,0.166,0.58,20,111,26,7,4,11.4,10,0,7,10,0.279,47.63,87.04,0.9500000000000001,0.24,886,3.3000000000000003,207,3,0.0000,0.0000 +2012,8,14,13,30,26.200000000000003,1.57,0.156,0.58,72,487,198,0,7,11.8,117,265,0,185,0.28,40.660000000000004,75.04,0.9500000000000001,0.24,886,3.3000000000000003,212,4.1000000000000005,0.4404,0.3385 +2012,8,14,14,30,29.6,1.57,0.149,0.58,100,673,409,0,0,13.600000000000001,100,673,0,409,0.28,37.52,62.690000000000005,0.9500000000000001,0.24,886,3.3000000000000003,219,4.9,2.7670,2.1577 +2012,8,14,15,30,32,1.57,0.147,0.58,118,770,609,0,0,13.9,118,770,0,609,0.28,33.39,50.370000000000005,0.9500000000000001,0.24,885,3.4000000000000004,222,5.1000000000000005,31.3415,24.5759 +2012,8,14,16,30,33.7,1.56,0.148,0.58,131,824,775,0,0,13.8,131,824,0,775,0.28,30.13,38.49,0.9500000000000001,0.24,885,3.4000000000000004,223,5,42.2875,33.2413 +2012,8,14,17,30,35.1,1.55,0.152,0.58,140,850,892,0,0,13.700000000000001,140,850,0,892,0.281,27.650000000000002,27.900000000000002,0.9500000000000001,0.24,884,3.5,224,4.800000000000001,54.7515,43.0900 +2012,8,14,18,30,36.2,1.36,0.1,0.58,120,897,957,0,0,13.4,120,897,0,957,0.28,25.560000000000002,20.96,0.96,0.24,883,3.6,223,4.7,59.1704,46.5902 +2012,8,14,19,30,37,1.34,0.11,0.58,125,889,951,7,2,13.100000000000001,299,663,7,915,0.28,23.97,21.62,0.97,0.24,882,3.6,222,4.5,58.8284,46.3192 +2012,8,14,20,30,37.300000000000004,1.33,0.121,0.58,126,866,881,0,1,12.700000000000001,126,866,0,881,0.28,23.07,29.38,0.97,0.24,882,3.6,222,4.3,54.0370,42.5225 +2012,8,14,21,30,36.7,1.1400000000000001,0.095,0.58,108,854,759,0,1,12.3,108,854,0,759,0.28,23.12,40.26,0.98,0.24,881,3.5,220,3.9000000000000004,45.7536,35.9565 +2012,8,14,22,30,35.7,1.16,0.098,0.58,98,796,585,7,2,11.9,250,535,7,578,0.281,23.830000000000002,52.26,0.98,0.24,881,3.5,215,3.4000000000000004,33.9871,26.6356 +2012,8,14,23,30,34.2,1.18,0.098,0.58,82,700,382,0,4,11.9,220,32,0,234,0.281,25.88,64.62,0.98,0.24,881,3.4000000000000004,206,2.5,20.8383,16.2277 +2012,8,15,0,30,31.8,1.2,0.101,0.58,57,501,170,0,6,13.9,30,0,0,30,0.28200000000000003,33.86,76.96000000000001,0.98,0.24,881,3.4000000000000004,197,1.7000000000000002,8.4865,6.5009 +2012,8,15,1,30,29.6,1.22,0.10300000000000001,0.58,11,59,12,7,6,15.9,5,0,7,5,0.28300000000000003,43.49,88.83,0.97,0.24,881,3.4000000000000004,195,1.5,0.0000,0.0000 +2012,8,15,2,30,28.200000000000003,1.23,0.105,0.58,0,0,0,0,6,16.400000000000002,0,0,0,0,0.28400000000000003,48.84,100.74000000000001,0.97,0.24,882,3.5,204,1.5,0.0000,0.0000 +2012,8,15,3,30,27,1.25,0.111,0.58,0,0,0,0,8,16.900000000000002,0,0,0,0,0.28500000000000003,53.93,111.46000000000001,0.97,0.24,882,3.6,221,1.4000000000000001,0.0000,0.0000 +2012,8,15,4,30,25.8,1.29,0.11800000000000001,0.58,0,0,0,0,7,17.6,0,0,0,0,0.28500000000000003,60.53,120.74000000000001,0.96,0.24,883,3.6,271,1.2000000000000002,0.0000,0.0000 +2012,8,15,5,30,24.8,1.36,0.116,0.58,0,0,0,0,8,17.7,0,0,0,0,0.28500000000000003,64.83,127.77,0.96,0.24,883,3.6,188,1.1,0.0000,0.0000 +2012,8,15,6,30,24,1.44,0.117,0.58,0,0,0,0,7,17.900000000000002,0,0,0,0,0.28500000000000003,68.67,131.51,0.96,0.24,882,3.5,99,1.2000000000000002,0.0000,0.0000 +2012,8,15,7,30,23,1.52,0.11900000000000001,0.58,0,0,0,0,1,17.5,0,0,0,0,0.28500000000000003,71.09,131.2,0.9500000000000001,0.24,882,3.3000000000000003,141,1.3,0.0000,0.0000 +2012,8,15,8,30,22.1,1.57,0.125,0.58,0,0,0,0,7,17,0,0,0,0,0.28500000000000003,72.79,126.91,0.9500000000000001,0.24,882,3.2,154,1.5,0.0000,0.0000 +2012,8,15,9,30,21.400000000000002,1.59,0.13,0.58,0,0,0,0,7,16.6,0,0,0,0,0.28500000000000003,73.95,119.49000000000001,0.9400000000000001,0.24,882,3.1,159,1.3,0.0000,0.0000 +2012,8,15,10,30,20.8,1.6,0.133,0.58,0,0,0,0,1,16.1,0,0,0,0,0.28500000000000003,74.71000000000001,109.95,0.9400000000000001,0.24,882,3.1,160,1.1,0.0000,0.0000 +2012,8,15,11,30,20.6,1.6,0.133,0.58,0,0,0,0,4,15.700000000000001,0,0,0,0,0.28500000000000003,73.69,99.08,0.9400000000000001,0.24,882,3,157,1.1,0.0000,0.0000 +2012,8,15,12,30,21.900000000000002,1.61,0.131,0.58,19,135,25,7,4,15.5,12,0,7,12,0.28500000000000003,66.97,87.18,0.9400000000000001,0.24,883,3,160,1.7000000000000002,0.0000,0.0000 +2012,8,15,13,30,24.6,1.62,0.13,0.58,66,520,199,0,0,14.9,66,520,0,199,0.28600000000000003,54.620000000000005,75.16,0.9400000000000001,0.24,883,3,176,2.4000000000000004,9.0434,6.9493 +2012,8,15,14,30,27.700000000000003,1.6300000000000001,0.129,0.58,93,698,412,0,0,14,93,698,0,412,0.28600000000000003,43.02,62.81,0.9400000000000001,0.24,883,3,193,2.4000000000000004,22.1724,17.2885 +2012,8,15,15,30,30.400000000000002,1.6300000000000001,0.127,0.58,109,793,614,0,0,13.700000000000001,109,793,0,614,0.28700000000000003,35.980000000000004,50.5,0.9400000000000001,0.24,883,3,200,2.1,35.1340,27.5487 +2012,8,15,16,30,32.4,1.6300000000000001,0.127,0.58,121,847,782,0,0,13.5,121,847,0,782,0.28700000000000003,31.77,38.64,0.9400000000000001,0.24,883,3,200,2,46.2731,36.3734 +2012,8,15,17,30,33.9,1.6300000000000001,0.128,0.58,129,876,902,0,0,13.3,129,876,0,902,0.28800000000000003,28.92,28.11,0.9500000000000001,0.24,882,3,197,2.1,54.2503,42.6948 +2012,8,15,18,30,35.1,1.45,0.092,0.58,115,911,964,0,0,13.200000000000001,115,911,0,964,0.28800000000000003,26.78,21.25,0.9500000000000001,0.24,882,3.1,193,2.2,58.6641,46.1907 +2012,8,15,19,30,35.800000000000004,1.46,0.096,0.58,117,907,959,0,0,13,117,907,0,959,0.28700000000000003,25.400000000000002,21.93,0.9500000000000001,0.24,881,3.1,187,2.3000000000000003,56.0541,44.1340 +2012,8,15,20,30,36.2,1.49,0.10200000000000001,0.58,116,887,887,0,0,12.8,116,887,0,887,0.28700000000000003,24.53,29.64,0.96,0.24,881,3.2,180,2.3000000000000003,53.4706,42.0758 +2012,8,15,21,30,36.2,1.42,0.08600000000000001,0.58,102,868,762,0,0,12.5,102,868,0,762,0.28600000000000003,24.04,40.49,0.96,0.24,880,3.2,172,2.2,45.1352,35.4692 +2012,8,15,22,30,35.800000000000004,1.46,0.09,0.58,93,811,587,0,0,12.100000000000001,93,811,0,587,0.28600000000000003,24.080000000000002,52.47,0.96,0.24,880,3.2,164,2.2,33.1006,25.9391 +2012,8,15,23,30,34.6,1.5,0.094,0.58,79,710,381,0,3,11.9,235,101,0,278,0.28600000000000003,25.36,64.82000000000001,0.96,0.24,880,3.2,154,1.8,12.5161,9.7452 +2012,8,16,0,30,31.8,1.53,0.098,0.58,55,510,169,0,6,14.200000000000001,4,0,0,4,0.28600000000000003,34.34,77.17,0.96,0.24,880,3.3000000000000003,142,1.4000000000000001,1.4445,1.1061 +2012,8,16,1,30,29.400000000000002,1.53,0.10300000000000001,0.58,0,0,0,7,7,15.8,0,0,7,0,0.28600000000000003,43.69,89.03,0.96,0.24,880,3.3000000000000003,138,1.7000000000000002,0.0000,0.0000 +2012,8,16,2,30,28.3,1.51,0.111,0.58,0,0,0,0,3,15.100000000000001,0,0,0,0,0.28600000000000003,44.58,100.98,0.96,0.24,881,3.3000000000000003,145,2.5,0.0000,0.0000 +2012,8,16,3,30,27.3,1.47,0.116,0.58,0,0,0,0,7,14.9,0,0,0,0,0.28600000000000003,46.75,111.72,0.96,0.24,882,3.4000000000000004,153,3.2,0.0000,0.0000 +2012,8,16,4,30,26.5,1.43,0.13,0.58,0,0,0,0,6,14.700000000000001,0,0,0,0,0.28600000000000003,48.33,121.03,0.96,0.24,882,3.4000000000000004,161,3.5,0.0000,0.0000 +2012,8,16,5,30,25.900000000000002,1.3900000000000001,0.139,0.58,0,0,0,0,6,14.4,0,0,0,0,0.28600000000000003,49,128.08,0.9500000000000001,0.24,883,3.4000000000000004,171,3.2,0.0000,0.0000 +2012,8,16,6,30,25.3,1.36,0.14200000000000002,0.58,0,0,0,0,7,14.200000000000001,0,0,0,0,0.28500000000000003,50.120000000000005,131.83,0.9500000000000001,0.24,883,3.5,183,2.9000000000000004,0.0000,0.0000 +2012,8,16,7,30,24.900000000000002,1.34,0.155,0.58,0,0,0,0,7,14.3,0,0,0,0,0.28500000000000003,51.76,131.51,0.96,0.24,884,3.7,194,2.8000000000000003,0.0000,0.0000 +2012,8,16,8,30,24.5,1.34,0.17500000000000002,0.58,0,0,0,0,8,14.600000000000001,0,0,0,0,0.28500000000000003,53.89,127.18,0.96,0.24,884,3.8000000000000003,206,2.8000000000000003,0.0000,0.0000 +2012,8,16,9,30,24,1.37,0.19,0.58,0,0,0,0,7,15,0,0,0,0,0.28500000000000003,57.26,119.72,0.97,0.24,884,3.8000000000000003,215,2.5,0.0000,0.0000 +2012,8,16,10,30,23.400000000000002,1.43,0.20500000000000002,0.58,0,0,0,0,0,15.600000000000001,0,0,0,0,0.28500000000000003,61.75,110.14,0.97,0.24,885,3.8000000000000003,209,2.4000000000000004,0.0000,0.0000 +2012,8,16,11,30,22.900000000000002,1.5,0.187,0.58,0,0,0,0,7,16.2,0,0,0,0,0.28500000000000003,65.83,99.24000000000001,0.97,0.24,885,3.6,191,2.5,0.0000,0.0000 +2012,8,16,12,30,23.400000000000002,1.56,0.168,0.58,18,98,23,7,7,16.400000000000002,17,0,7,17,0.28400000000000003,64.82000000000001,87.31,0.96,0.24,885,3.5,174,2.7,0.0000,0.0000 +2012,8,16,13,30,25.5,1.61,0.159,0.58,72,478,193,0,0,16.400000000000002,72,478,0,193,0.28400000000000003,57.18,75.29,0.96,0.24,886,3.4000000000000004,169,2.4000000000000004,9.7176,7.4659 +2012,8,16,14,30,28,1.62,0.155,0.58,101,666,404,7,3,15.4,221,325,7,369,0.28400000000000003,46.13,62.940000000000005,0.96,0.24,886,3.3000000000000003,135,1.9000000000000001,22.3172,17.3999 +2012,8,16,15,30,30.1,1.61,0.157,0.58,121,761,604,0,1,14.3,121,761,0,604,0.28400000000000003,38.18,50.64,0.96,0.24,886,3.4000000000000004,69,2.4000000000000004,35.4052,27.7603 +2012,8,16,16,30,31.5,1.6,0.167,0.58,138,808,768,0,1,14,138,808,0,768,0.28400000000000003,34.5,38.800000000000004,0.96,0.24,887,3.5,47,3.4000000000000004,46.6757,36.6890 +2012,8,16,17,30,32.300000000000004,1.57,0.193,0.58,159,822,883,0,1,14,159,822,0,883,0.28400000000000003,33.02,28.330000000000002,0.97,0.24,887,3.5,62,3.7,54.8428,43.1604 +2012,8,16,18,30,32.4,1.43,0.167,0.58,152,851,943,0,0,14.200000000000001,152,851,0,943,0.28400000000000003,33.18,21.54,0.97,0.24,886,3.6,73,3.7,59.0770,46.5151 +2012,8,16,19,30,32.1,1.43,0.188,0.58,161,834,934,0,0,14.5,161,834,0,934,0.28300000000000003,34.4,22.25,0.97,0.24,886,3.7,81,3.7,58.7317,46.2414 +2012,8,16,20,30,31.700000000000003,1.44,0.2,0.58,161,809,863,0,1,14.8,161,809,0,863,0.28400000000000003,35.9,29.91,0.97,0.24,886,3.7,88,3.7,53.8144,42.3453 +2012,8,16,21,30,31.3,1.47,0.2,0.58,151,773,737,0,1,14.8,151,773,0,737,0.28400000000000003,36.9,40.730000000000004,0.96,0.24,886,3.6,97,3.7,45.2888,35.5886 +2012,8,16,22,30,30.8,1.48,0.199,0.58,134,709,563,0,1,14.700000000000001,134,709,0,563,0.28500000000000003,37.63,52.69,0.96,0.24,886,3.6,108,3.5,33.5871,26.3185 +2012,8,16,23,30,29.900000000000002,1.48,0.20500000000000002,0.58,111,590,360,0,8,14.600000000000001,213,219,0,306,0.28500000000000003,39.25,65.03,0.96,0.24,886,3.6,117,3.1,14.8478,11.5588 +2012,8,17,0,30,28.3,1.47,0.216,0.58,73,368,153,0,7,14.700000000000001,85,9,0,87,0.28600000000000003,43.43,77.38,0.96,0.23,886,3.6,123,2.4000000000000004,0.1923,0.1472 +2012,8,17,1,30,26.900000000000002,1.46,0.223,0.58,0,0,0,7,7,15.200000000000001,0,0,7,0,0.28600000000000003,48.84,89.23,0.96,0.23,887,3.6,124,2,0.0000,0.0000 +2012,8,17,2,30,26,1.45,0.226,0.58,0,0,0,0,7,15,0,0,0,0,0.28600000000000003,50.800000000000004,101.22,0.96,0.23,887,3.5,124,2.1,0.0000,0.0000 +2012,8,17,3,30,25.3,1.45,0.23700000000000002,0.58,0,0,0,0,6,15,0,0,0,0,0.28600000000000003,52.88,111.98,0.9500000000000001,0.23,888,3.6,120,2,0.0000,0.0000 +2012,8,17,4,30,24.6,1.45,0.25,0.58,0,0,0,0,7,15,0,0,0,0,0.28500000000000003,55.160000000000004,121.32000000000001,0.9500000000000001,0.23,888,3.6,117,2,0.0000,0.0000 +2012,8,17,5,30,23.8,1.46,0.248,0.58,0,0,0,0,7,14.8,0,0,0,0,0.28500000000000003,57.14,128.39000000000001,0.9500000000000001,0.23,888,3.6,116,2.3000000000000003,0.0000,0.0000 +2012,8,17,6,30,23.200000000000003,1.46,0.244,0.58,0,0,0,0,1,14.5,0,0,0,0,0.28500000000000003,58.14,132.15,0.9500000000000001,0.23,888,3.6,119,2.4000000000000004,0.0000,0.0000 +2012,8,17,7,30,22.700000000000003,1.43,0.263,0.58,0,0,0,0,1,14.3,0,0,0,0,0.28500000000000003,59.22,131.81,0.96,0.23,888,3.6,124,2.5,0.0000,0.0000 +2012,8,17,8,30,22.5,1.3800000000000001,0.308,0.58,0,0,0,0,0,14.3,0,0,0,0,0.28500000000000003,59.85,127.45,0.96,0.23,888,3.7,126,2.5,0.0000,0.0000 +2012,8,17,9,30,22.200000000000003,1.34,0.325,0.58,0,0,0,0,7,14.4,0,0,0,0,0.28500000000000003,61.24,119.94,0.96,0.23,888,3.8000000000000003,119,2.5,0.0000,0.0000 +2012,8,17,10,30,21.8,1.29,0.303,0.58,0,0,0,0,3,14.600000000000001,0,0,0,0,0.28500000000000003,63.7,110.33,0.96,0.23,888,3.8000000000000003,105,2.4000000000000004,0.0000,0.0000 +2012,8,17,11,30,21.5,1.23,0.276,0.58,0,0,0,0,7,14.9,0,0,0,0,0.28500000000000003,66.28,99.4,0.96,0.23,888,3.9000000000000004,98,2.6,0.0000,0.0000 +2012,8,17,12,30,21.400000000000002,1.2,0.281,0.58,16,34,17,7,7,15.3,16,0,7,16,0.28500000000000003,68.41,87.44,0.96,0.23,888,3.9000000000000004,97,2.9000000000000004,0.0000,0.0000 +2012,8,17,13,30,21.900000000000002,1.21,0.298,0.58,94,328,177,0,8,15.600000000000001,141,93,0,165,0.28600000000000003,67.54,75.42,0.96,0.23,889,3.9000000000000004,97,3.1,9.4141,7.2310 +2012,8,17,14,30,22.700000000000003,1.23,0.302,0.58,143,523,380,0,8,15.600000000000001,217,281,0,345,0.28700000000000003,64.11,63.06,0.96,0.23,889,3.8000000000000003,98,3.2,19.9705,15.5689 +2012,8,17,15,30,23.6,1.27,0.28200000000000003,0.58,167,652,580,0,8,15.5,293,294,0,479,0.28700000000000003,60.550000000000004,50.77,0.96,0.23,889,3.8000000000000003,104,3.1,34.8102,27.2926 +2012,8,17,16,30,24.700000000000003,1.3,0.276,0.58,183,723,746,0,7,15.600000000000001,374,306,0,612,0.28700000000000003,57.050000000000004,38.96,0.96,0.23,889,3.8000000000000003,115,2.8000000000000003,45.8238,36.0185 +2012,8,17,17,30,25.700000000000003,1.33,0.29,0.58,200,752,860,0,7,15.8,453,247,0,670,0.28600000000000003,54.19,28.54,0.96,0.23,888,3.9000000000000004,124,2.5,53.6715,42.2378 +2012,8,17,18,30,26.3,1.35,0.279,0.58,201,774,919,0,7,16,486,232,0,702,0.28600000000000003,53.13,21.84,0.96,0.23,888,4,128,2.2,57.7739,45.4883 +2012,8,17,19,30,26.5,1.36,0.278,0.58,200,773,914,0,7,16.3,455,275,0,709,0.28500000000000003,53.550000000000004,22.57,0.97,0.23,887,4,130,2.2,57.1824,45.0207 +2012,8,17,20,30,26.700000000000003,1.36,0.273,0.58,191,756,845,0,7,16.7,436,85,0,510,0.28500000000000003,54.11,30.19,0.97,0.23,886,4.1000000000000005,133,2.3000000000000003,52.3375,41.1821 +2012,8,17,21,30,26.900000000000002,1.34,0.229,0.58,162,744,724,0,7,16.900000000000002,335,37,0,362,0.28500000000000003,54.22,40.96,0.97,0.23,886,4.1000000000000005,141,2.7,43.7776,34.3997 +2012,8,17,22,30,26.8,1.32,0.221,0.58,142,681,552,0,8,17,293,127,0,369,0.28600000000000003,54.92,52.910000000000004,0.97,0.23,885,4.1000000000000005,153,3.4000000000000004,32.1845,25.2176 +2012,8,17,23,30,26.1,1.3,0.227,0.58,117,557,350,0,7,17.3,149,18,0,156,0.28600000000000003,58.25,65.25,0.96,0.23,885,4.1000000000000005,164,4,16.3180,12.7011 +2012,8,18,0,30,25,1.29,0.229,0.58,74,339,147,0,8,17.7,116,60,0,129,0.28700000000000003,63.9,77.60000000000001,0.96,0.23,885,4,171,4.2,4.1776,3.1965 +2012,8,18,1,30,23.900000000000002,1.31,0.232,0.58,0,0,0,7,7,18.1,0,0,7,0,0.28700000000000003,70.15,89.43,0.96,0.23,885,3.8000000000000003,176,3.8000000000000003,0.0000,0.0000 +2012,8,18,2,30,23,1.33,0.233,0.58,0,0,0,0,3,18.400000000000002,0,0,0,0,0.28800000000000003,75.49,101.47,0.9500000000000001,0.23,885,3.7,182,3.2,0.0000,0.0000 +2012,8,18,3,30,22.400000000000002,1.35,0.233,0.58,0,0,0,0,2,18.6,0,0,0,0,0.28800000000000003,78.91,112.25,0.9500000000000001,0.23,886,3.7,195,2.3000000000000003,0.0000,0.0000 +2012,8,18,4,30,21.900000000000002,1.36,0.23500000000000001,0.58,0,0,0,0,4,18.6,0,0,0,0,0.289,81.35000000000001,121.61,0.96,0.23,886,3.7,212,1.5,0.0000,0.0000 +2012,8,18,5,30,21.6,1.36,0.241,0.58,0,0,0,0,6,18.5,0,0,0,0,0.28800000000000003,82.5,128.71,0.96,0.23,886,3.8000000000000003,220,1.5,0.0000,0.0000 +2012,8,18,6,30,21.6,1.35,0.253,0.58,0,0,0,0,6,18.3,0,0,0,0,0.28700000000000003,81.72,132.48,0.96,0.23,886,3.8000000000000003,216,1.9000000000000001,0.0000,0.0000 +2012,8,18,7,30,21.5,1.37,0.245,0.58,0,0,0,0,7,18.1,0,0,0,0,0.28600000000000003,81.11,132.12,0.96,0.23,886,3.7,211,2,0.0000,0.0000 +2012,8,18,8,30,21,1.4000000000000001,0.218,0.58,0,0,0,0,8,17.900000000000002,0,0,0,0,0.28500000000000003,82.61,127.72,0.96,0.23,886,3.5,210,1.8,0.0000,0.0000 +2012,8,18,9,30,20.400000000000002,1.43,0.198,0.58,0,0,0,0,4,17.8,0,0,0,0,0.28500000000000003,84.87,120.17,0.96,0.23,885,3.4000000000000004,219,1.6,0.0000,0.0000 +2012,8,18,10,30,19.900000000000002,1.46,0.187,0.58,0,0,0,0,4,17.7,0,0,0,0,0.28400000000000003,87.12,110.52,0.9500000000000001,0.23,885,3.4000000000000004,238,1.4000000000000001,0.0000,0.0000 +2012,8,18,11,30,19.700000000000003,1.51,0.178,0.58,0,0,0,0,4,17.7,0,0,0,0,0.28400000000000003,88.04,99.55,0.9500000000000001,0.23,885,3.3000000000000003,259,1.6,0.0000,0.0000 +2012,8,18,12,30,20.900000000000002,1.55,0.17,0.58,16,88,20,7,4,17.7,8,0,7,8,0.28300000000000003,81.86,87.57000000000001,0.9400000000000001,0.23,885,3.2,272,2.4000000000000004,0.0000,0.0000 +2012,8,18,13,30,23.700000000000003,1.59,0.161,0.58,71,476,189,7,4,17.5,131,23,7,137,0.28300000000000003,68.32000000000001,75.54,0.9400000000000001,0.23,885,3.1,271,3.1,8.0394,6.1736 +2012,8,18,14,30,26.900000000000002,1.62,0.153,0.58,99,671,402,0,0,16.3,99,671,0,402,0.28300000000000003,52.36,63.190000000000005,0.9400000000000001,0.23,885,3,259,2.9000000000000004,18.6565,14.5433 +2012,8,18,15,30,29.400000000000002,1.6300000000000001,0.149,0.58,117,773,604,0,0,15.100000000000001,117,773,0,604,0.28300000000000003,41.910000000000004,50.910000000000004,0.9400000000000001,0.23,884,3,243,2.3000000000000003,27.5925,21.6328 +2012,8,18,16,30,31.1,1.6400000000000001,0.147,0.58,128,829,772,0,0,14.600000000000001,128,829,0,772,0.28300000000000003,36.83,39.12,0.9400000000000001,0.23,884,3.1,221,1.7000000000000002,36.5028,28.6913 +2012,8,18,17,30,32.4,1.6500000000000001,0.146,0.58,136,861,890,0,0,14.4,136,861,0,890,0.28300000000000003,33.67,28.76,0.9400000000000001,0.23,883,3.1,197,1.5,40.7128,32.0392 +2012,8,18,18,30,33.1,1.59,0.10200000000000001,0.58,118,904,956,0,0,14.4,118,904,0,956,0.28300000000000003,32.32,22.14,0.9400000000000001,0.23,883,3.1,181,1.6,42.9962,33.8525 +2012,8,18,19,30,33.4,1.6,0.11,0.58,123,898,950,0,3,14.5,478,133,0,601,0.28200000000000003,31.970000000000002,22.89,0.9500000000000001,0.23,882,3.1,174,1.7000000000000002,43.3930,34.1634 +2012,8,18,20,30,33.1,1.59,0.127,0.58,127,868,875,0,1,14.600000000000001,127,868,0,875,0.281,32.81,30.47,0.9500000000000001,0.23,882,3.2,169,1.6,30.9165,24.3263 +2012,8,18,21,30,32.5,1.58,0.13,0.58,120,832,746,0,0,14.700000000000001,120,832,0,746,0.28,34.11,41.21,0.9500000000000001,0.23,881,3.2,160,1.5,21.4907,16.8864 +2012,8,18,22,30,31.400000000000002,1.58,0.14200000000000002,0.58,112,762,569,0,8,14.700000000000001,21,0,0,21,0.28,36.47,53.13,0.9500000000000001,0.23,881,3.2,151,1.6,21.0749,16.5117 +2012,8,18,23,30,29.900000000000002,1.6,0.14400000000000002,0.58,93,652,363,0,0,15.3,93,652,0,363,0.279,41.09,65.47,0.9500000000000001,0.23,881,3.2,150,1.6,8.3053,6.4633 +2012,8,19,0,30,27.8,1.62,0.14100000000000001,0.58,60,446,154,0,0,17.400000000000002,60,446,0,154,0.279,53.04,77.82000000000001,0.9500000000000001,0.23,882,3.2,151,1.2000000000000002,6.1864,4.7316 +2012,8,19,1,30,25.900000000000002,1.6400000000000001,0.14100000000000001,0.58,0,0,0,7,4,19.400000000000002,0,0,7,0,0.28,67.5,89.64,0.9500000000000001,0.23,882,3.1,150,1,0.0000,0.0000 +2012,8,19,2,30,24.900000000000002,1.6600000000000001,0.138,0.58,0,0,0,0,7,19,0,0,0,0,0.28,69.74,101.71000000000001,0.9500000000000001,0.23,883,3.1,144,1.1,0.0000,0.0000 +2012,8,19,3,30,24.1,1.67,0.134,0.58,0,0,0,0,0,18.2,0,0,0,0,0.281,69.79,112.52,0.9500000000000001,0.23,884,3.1,140,1.2000000000000002,0.0000,0.0000 +2012,8,19,4,30,23.400000000000002,1.67,0.135,0.58,0,0,0,0,0,17.7,0,0,0,0,0.281,70.55,121.91,0.9500000000000001,0.23,884,3,137,1.4000000000000001,0.0000,0.0000 +2012,8,19,5,30,22.700000000000003,1.6600000000000001,0.14,0.58,0,0,0,0,0,17.400000000000002,0,0,0,0,0.281,72.17,129.03,0.9500000000000001,0.23,884,3,130,1.5,0.0000,0.0000 +2012,8,19,6,30,22.1,1.6300000000000001,0.153,0.58,0,0,0,0,1,17.400000000000002,0,0,0,0,0.28200000000000003,74.56,132.81,0.9500000000000001,0.23,885,3,112,1.4000000000000001,0.0000,0.0000 +2012,8,19,7,30,21.700000000000003,1.62,0.185,0.58,0,0,0,0,0,17.400000000000002,0,0,0,0,0.28300000000000003,76.7,132.43,0.96,0.23,885,3.1,86,1.6,0.0000,0.0000 +2012,8,19,8,30,21.3,1.61,0.246,0.58,0,0,0,0,4,17.400000000000002,0,0,0,0,0.28300000000000003,78.64,127.99000000000001,0.96,0.23,886,3.2,74,2.1,0.0000,0.0000 +2012,8,19,9,30,20.8,1.6,0.304,0.58,0,0,0,0,4,17.5,0,0,0,0,0.28400000000000003,81.53,120.4,0.96,0.23,886,3.2,75,2.5,0.0000,0.0000 +2012,8,19,10,30,20.3,1.59,0.326,0.58,0,0,0,0,1,17.5,0,0,0,0,0.28400000000000003,84.03,110.71000000000001,0.96,0.23,886,3.2,79,2.7,0.0000,0.0000 +2012,8,19,11,30,20,1.6,0.322,0.58,0,0,0,0,4,17.6,0,0,0,0,0.28400000000000003,86.33,99.71000000000001,0.96,0.23,886,3.3000000000000003,81,2.7,0.0000,0.0000 +2012,8,19,12,30,20.200000000000003,1.61,0.304,0.58,14,44,16,7,4,17.8,9,0,7,9,0.28400000000000003,86.3,87.7,0.96,0.23,887,3.2,83,2.6,0.0000,0.0000 +2012,8,19,13,30,21,1.6300000000000001,0.281,0.58,88,367,179,7,4,18,121,8,7,123,0.28400000000000003,82.85000000000001,75.67,0.96,0.23,888,3.2,86,2.8000000000000003,6.6684,5.1197 +2012,8,19,14,30,22.3,1.6600000000000001,0.256,0.58,128,579,388,0,8,17.7,182,20,0,191,0.28500000000000003,75.12,63.31,0.96,0.23,888,3.2,90,3,21.7196,16.9295 +2012,8,19,15,30,23.900000000000002,1.69,0.229,0.58,145,709,591,0,8,16.3,245,32,0,265,0.28600000000000003,62.47,51.04,0.9500000000000001,0.23,888,3.1,96,3.1,34.7744,27.2624 +2012,8,19,16,30,25.5,1.71,0.20500000000000002,0.58,152,788,762,0,7,14.600000000000001,340,35,0,368,0.28600000000000003,50.78,39.29,0.9500000000000001,0.23,888,3.1,106,3,46.0295,36.1785 +2012,8,19,17,30,26.900000000000002,1.72,0.183,0.58,153,838,885,7,8,14,406,278,7,649,0.28600000000000003,45,28.98,0.9500000000000001,0.23,888,3,116,2.9000000000000004,54.0646,42.5456 +2012,8,19,18,30,27.8,1.71,0.25,0.58,185,811,935,0,4,14,453,18,0,469,0.28600000000000003,42.75,22.45,0.9500000000000001,0.23,887,3,126,2.7,58.5357,46.0865 +2012,8,19,19,30,28.3,1.68,0.23500000000000001,0.58,179,820,932,0,4,14.100000000000001,522,146,0,656,0.28500000000000003,41.94,23.22,0.9500000000000001,0.23,887,2.9000000000000004,136,2.6,36.7709,28.9492 +2012,8,19,20,30,28.5,1.6600000000000001,0.224,0.58,169,808,863,0,0,14.200000000000001,169,808,0,863,0.28500000000000003,41.54,30.75,0.9500000000000001,0.23,886,2.9000000000000004,143,2.6,53.0206,41.7174 +2012,8,19,21,30,28.3,1.6600000000000001,0.152,0.58,129,820,744,0,1,14.100000000000001,129,820,0,744,0.28400000000000003,41.76,41.45,0.9500000000000001,0.23,886,2.9000000000000004,147,2.5,44.2602,34.7761 +2012,8,19,22,30,27.900000000000002,1.6600000000000001,0.14300000000000002,0.58,112,765,569,0,2,13.9,330,71,0,372,0.28400000000000003,42.12,53.36,0.9500000000000001,0.23,886,2.9000000000000004,151,2.4000000000000004,1.1983,0.9387 +2012,8,19,23,30,26.900000000000002,1.68,0.133,0.58,89,669,365,0,3,13.600000000000001,213,224,0,305,0.28400000000000003,43.99,65.69,0.9500000000000001,0.23,886,2.8000000000000003,154,2.1,19.2940,15.0119 +2012,8,20,0,30,24.8,1.69,0.125,0.58,57,468,154,0,8,14.600000000000001,57,468,5,154,0.28400000000000003,52.99,78.04,0.9400000000000001,0.22,886,2.8000000000000003,156,1.5,7.3765,5.6396 +2012,8,20,1,30,22.8,1.7,0.121,0.58,0,0,0,7,7,15.4,0,0,7,0,0.28400000000000003,63.06,89.84,0.9400000000000001,0.22,886,2.8000000000000003,156,1.2000000000000002,0.0000,0.0000 +2012,8,20,2,30,21.900000000000002,1.7,0.11900000000000001,0.58,0,0,0,0,7,14.5,0,0,0,0,0.28400000000000003,62.68,101.97,0.9400000000000001,0.22,887,2.7,155,1.4000000000000001,0.0000,0.0000 +2012,8,20,3,30,21.200000000000003,1.7,0.11900000000000001,0.58,0,0,0,0,1,13.700000000000001,0,0,0,0,0.28400000000000003,62.22,112.8,0.9400000000000001,0.22,888,2.6,154,1.6,0.0000,0.0000 +2012,8,20,4,30,20.6,1.7,0.11900000000000001,0.58,0,0,0,0,0,13.100000000000001,0,0,0,0,0.28300000000000003,62.07,122.22,0.9400000000000001,0.22,888,2.6,152,1.9000000000000001,0.0000,0.0000 +2012,8,20,5,30,20.1,1.69,0.121,0.58,0,0,0,0,0,12.8,0,0,0,0,0.28300000000000003,62.75,129.36,0.9400000000000001,0.22,888,2.6,150,2.1,0.0000,0.0000 +2012,8,20,6,30,19.5,1.69,0.126,0.58,0,0,0,0,0,12.8,0,0,0,0,0.28200000000000003,65.44,133.15,0.9400000000000001,0.22,888,2.7,148,2.2,0.0000,0.0000 +2012,8,20,7,30,19,1.69,0.134,0.58,0,0,0,0,0,13.100000000000001,0,0,0,0,0.281,68.67,132.75,0.9500000000000001,0.22,888,2.9000000000000004,145,2.1,0.0000,0.0000 +2012,8,20,8,30,18.6,1.68,0.147,0.58,0,0,0,0,0,13.3,0,0,0,0,0.281,71.49,128.26,0.9500000000000001,0.22,888,3,144,2,0.0000,0.0000 +2012,8,20,9,30,18.2,1.67,0.162,0.58,0,0,0,0,0,13.5,0,0,0,0,0.281,73.85000000000001,120.62,0.9500000000000001,0.22,888,3.1,144,2,0.0000,0.0000 +2012,8,20,10,30,17.900000000000002,1.6600000000000001,0.179,0.58,0,0,0,0,0,13.5,0,0,0,0,0.28,75.35000000000001,110.9,0.9500000000000001,0.22,888,3.2,144,2,0.0000,0.0000 +2012,8,20,11,30,17.8,1.6600000000000001,0.196,0.58,0,0,0,0,0,13.4,0,0,0,0,0.28,75.47,99.87,0.9500000000000001,0.22,888,3.3000000000000003,141,2.1,0.0000,0.0000 +2012,8,20,12,30,18.5,1.6500000000000001,0.20800000000000002,0.58,15,67,17,0,0,13.3,15,67,0,17,0.28,71.62,87.83,0.96,0.22,888,3.3000000000000003,139,2.5,0.0000,0.0000 +2012,8,20,13,30,20.6,1.6600000000000001,0.21,0.58,78,420,181,0,0,13.100000000000001,78,420,0,181,0.28,62.07,75.8,0.9500000000000001,0.22,889,3.4000000000000004,147,3.2,5.9805,4.5905 +2012,8,20,14,30,23.3,1.67,0.21,0.58,115,612,389,0,0,13.200000000000001,115,612,0,389,0.28,52.96,63.440000000000005,0.9500000000000001,0.22,888,3.4000000000000004,164,3.7,10.3111,8.0363 +2012,8,20,15,30,25.8,1.68,0.20500000000000002,0.58,136,720,588,0,0,14.4,136,720,0,588,0.28,49.47,51.18,0.9500000000000001,0.22,888,3.5,181,3.9000000000000004,15.2494,11.9547 +2012,8,20,16,30,27.900000000000002,1.69,0.2,0.58,149,783,754,7,2,15.5,321,554,7,748,0.281,46.93,39.46,0.9500000000000001,0.22,887,3.6,194,3.9000000000000004,21.9331,17.2386 +2012,8,20,17,30,29.5,1.69,0.201,0.58,159,815,870,0,8,16.1,286,539,0,757,0.281,44.44,29.21,0.9500000000000001,0.22,886,3.7,203,3.9000000000000004,39.4124,31.0146 +2012,8,20,18,30,30.700000000000003,1.6300000000000001,0.148,0.58,140,863,936,0,8,16.400000000000002,377,402,0,747,0.28,42.29,22.76,0.9500000000000001,0.22,886,3.7,210,3.8000000000000003,28.7078,22.6019 +2012,8,20,19,30,31.1,1.6300000000000001,0.153,0.58,142,857,928,0,0,16.6,142,857,0,928,0.28,41.71,23.55,0.96,0.22,885,3.8000000000000003,214,3.7,40.1220,31.5869 +2012,8,20,20,30,31,1.62,0.155,0.58,138,839,857,0,0,16.8,138,839,0,857,0.28,42.57,31.04,0.96,0.22,884,3.8000000000000003,212,3.5,52.2710,41.1265 +2012,8,20,21,30,30.700000000000003,1.6600000000000001,0.171,0.58,135,792,726,0,3,17.1,394,85,0,458,0.28,44.02,41.71,0.9500000000000001,0.22,884,3.8000000000000003,204,3.3000000000000003,44.1152,34.6607 +2012,8,20,22,30,30.200000000000003,1.6600000000000001,0.164,0.58,118,732,553,0,3,17,331,164,0,428,0.28,45.26,53.59,0.9500000000000001,0.22,883,3.8000000000000003,192,3.1,21.2057,16.6116 +2012,8,20,23,30,28.700000000000003,1.67,0.157,0.58,95,628,351,0,6,17.7,140,10,0,144,0.28,51.31,65.92,0.9500000000000001,0.22,883,3.7,179,2.8000000000000003,16.1841,12.5899 +2012,8,21,0,30,26.5,1.67,0.153,0.58,60,417,145,0,6,18.900000000000002,75,80,0,91,0.281,63.01,78.27,0.9500000000000001,0.22,882,3.6,173,3,7.3685,5.6313 +2012,8,21,1,30,25.1,1.68,0.147,0.58,0,0,0,0,6,17.8,0,0,0,0,0.28200000000000003,63.85,90.05,0.9500000000000001,0.22,882,3.5,177,3.7,0.0000,0.0000 +2012,8,21,2,30,24.3,1.6500000000000001,0.176,0.58,0,0,0,0,7,16.6,0,0,0,0,0.28200000000000003,62.11,102.22,0.96,0.22,883,3.5,186,3.9000000000000004,0.0000,0.0000 +2012,8,21,3,30,23.700000000000003,1.58,0.202,0.58,0,0,0,0,8,16.1,0,0,0,0,0.28300000000000003,62.47,113.08,0.96,0.22,883,3.5,195,3.6,0.0000,0.0000 +2012,8,21,4,30,23.1,1.54,0.195,0.58,0,0,0,0,8,16,0,0,0,0,0.28300000000000003,64.27,122.52,0.96,0.22,884,3.6,206,3,0.0000,0.0000 +2012,8,21,5,30,22.3,1.51,0.195,0.58,0,0,0,0,4,16.2,0,0,0,0,0.28300000000000003,68.52,129.69,0.97,0.22,884,3.6,210,2.1,0.0000,0.0000 +2012,8,21,6,30,21.400000000000002,1.5,0.21,0.58,0,0,0,0,4,16.900000000000002,0,0,0,0,0.28300000000000003,75.44,133.48,0.97,0.22,885,3.7,161,1.8,0.0000,0.0000 +2012,8,21,7,30,20.400000000000002,1.52,0.23600000000000002,0.58,0,0,0,0,4,17.2,0,0,0,0,0.28400000000000003,81.79,133.07,0.97,0.22,885,3.7,109,2.2,0.0000,0.0000 +2012,8,21,8,30,19.6,1.55,0.245,0.58,0,0,0,0,4,17.1,0,0,0,0,0.28400000000000003,85.28,128.54,0.97,0.22,886,3.7,107,2.8000000000000003,0.0000,0.0000 +2012,8,21,9,30,18.900000000000002,1.57,0.257,0.58,0,0,0,0,4,16.8,0,0,0,0,0.28500000000000003,87.71000000000001,120.85000000000001,0.97,0.22,886,3.6,113,3.3000000000000003,0.0000,0.0000 +2012,8,21,10,30,18.5,1.61,0.266,0.58,0,0,0,0,4,16.6,0,0,0,0,0.28500000000000003,88.78,111.09,0.97,0.22,886,3.5,120,3.3000000000000003,0.0000,0.0000 +2012,8,21,11,30,18.3,1.6500000000000001,0.264,0.58,0,0,0,0,4,16.400000000000002,0,0,0,0,0.28500000000000003,88.61,100.03,0.97,0.22,886,3.4000000000000004,127,3.2,0.0000,0.0000 +2012,8,21,12,30,18.6,1.69,0.255,0.58,13,51,15,7,4,16.2,5,0,7,5,0.28500000000000003,85.76,87.97,0.96,0.22,886,3.2,131,3.2,0.0000,0.0000 +2012,8,21,13,30,20.1,1.74,0.23700000000000002,0.58,81,402,179,0,0,15.9,81,402,0,179,0.28500000000000003,76.84,75.93,0.96,0.22,887,3.1,134,3.3000000000000003,8.7912,6.7462 +2012,8,21,14,30,22.5,1.79,0.212,0.58,115,619,390,0,3,15.5,123,0,0,123,0.28500000000000003,64.82000000000001,63.57,0.9500000000000001,0.22,887,3,137,3.1,20.9813,16.3510 +2012,8,21,15,30,25,1.82,0.191,0.58,131,742,595,7,3,15.100000000000001,279,11,7,286,0.28600000000000003,54.17,51.32,0.9500000000000001,0.22,887,2.9000000000000004,143,2.5,33.8181,26.5104 +2012,8,21,16,30,26.900000000000002,1.82,0.185,0.58,143,806,764,7,3,14.9,379,33,7,405,0.28700000000000003,47.88,39.63,0.9500000000000001,0.22,888,2.9000000000000004,143,1.8,44.5641,35.0248 +2012,8,21,17,30,28.200000000000003,1.81,0.186,0.58,153,838,882,7,3,15,419,17,7,433,0.28800000000000003,44.62,29.44,0.9500000000000001,0.22,887,2.9000000000000004,137,1.6,45.9559,36.1631 +2012,8,21,18,30,29,1.78,0.181,0.58,155,855,941,0,3,15.100000000000001,404,4,0,407,0.28800000000000003,42.71,23.07,0.9500000000000001,0.22,887,2.9000000000000004,130,1.7000000000000002,45.7098,35.9870 +2012,8,21,19,30,29.400000000000002,1.77,0.19,0.58,158,848,933,0,3,15,308,1,0,308,0.289,41.71,23.89,0.9500000000000001,0.22,886,2.9000000000000004,123,1.9000000000000001,56.7379,44.6671 +2012,8,21,20,30,29.400000000000002,1.74,0.2,0.58,158,823,861,0,3,15.100000000000001,335,1,0,336,0.289,41.72,31.330000000000002,0.96,0.22,886,2.9000000000000004,118,2.1,51.8842,40.8210 +2012,8,21,21,30,29.1,1.75,0.227,0.58,158,766,727,0,3,15,278,1,0,278,0.29,42.18,41.96,0.96,0.22,886,2.9000000000000004,115,2.4000000000000004,27.1392,21.3219 +2012,8,21,22,30,28.3,1.77,0.214,0.58,135,709,553,0,0,14.700000000000001,135,709,0,553,0.291,43.6,53.83,0.9500000000000001,0.22,886,2.8000000000000003,115,2.8000000000000003,24.3738,19.0917 +2012,8,21,23,30,26.900000000000002,1.79,0.2,0.58,106,602,349,0,0,14.600000000000001,106,602,0,349,0.292,47,66.15,0.9500000000000001,0.22,886,2.8000000000000003,117,3.2,7.6276,5.9324 +2012,8,22,0,30,24.900000000000002,1.81,0.191,0.58,64,392,142,0,0,14.8,64,392,0,142,0.293,53.32,78.5,0.9500000000000001,0.22,887,2.7,119,3.3000000000000003,4.3497,3.3229 +2012,8,22,1,30,23,1.84,0.184,0.58,0,0,0,0,0,15.100000000000001,0,0,0,0,0.293,61.06,90.26,0.9400000000000001,0.22,887,2.7,120,3.3000000000000003,0.0000,0.0000 +2012,8,22,2,30,21.700000000000003,1.86,0.184,0.58,0,0,0,0,1,15.3,0,0,0,0,0.294,67.09,102.48,0.9400000000000001,0.22,888,2.6,120,3.4000000000000004,0.0000,0.0000 +2012,8,22,3,30,20.700000000000003,1.8800000000000001,0.192,0.58,0,0,0,0,0,15.4,0,0,0,0,0.293,71.76,113.36,0.9400000000000001,0.22,889,2.6,122,3.3000000000000003,0.0000,0.0000 +2012,8,22,4,30,19.8,1.9000000000000001,0.202,0.58,0,0,0,0,0,15.4,0,0,0,0,0.292,75.72,122.83,0.9400000000000001,0.22,889,2.6,124,3.3000000000000003,0.0000,0.0000 +2012,8,22,5,30,18.900000000000002,1.92,0.21,0.58,0,0,0,0,1,15.3,0,0,0,0,0.291,79.85000000000001,130.02,0.9400000000000001,0.22,889,2.6,127,3.1,0.0000,0.0000 +2012,8,22,6,30,18.3,1.9100000000000001,0.215,0.58,0,0,0,0,7,15.3,0,0,0,0,0.289,82.77,133.82,0.9400000000000001,0.22,889,2.6,130,2.7,0.0000,0.0000 +2012,8,22,7,30,17.7,1.9000000000000001,0.22,0.58,0,0,0,0,7,15.3,0,0,0,0,0.28800000000000003,85.92,133.38,0.9400000000000001,0.22,889,2.6,132,2.5,0.0000,0.0000 +2012,8,22,8,30,17.400000000000002,1.8800000000000001,0.227,0.58,0,0,0,0,1,15.3,0,0,0,0,0.28600000000000003,87.53,128.81,0.9400000000000001,0.22,888,2.6,134,2.3000000000000003,0.0000,0.0000 +2012,8,22,9,30,17.1,1.86,0.23600000000000002,0.58,0,0,0,0,7,15.3,0,0,0,0,0.28500000000000003,89.38,121.08,0.9500000000000001,0.22,888,2.6,137,2.2,0.0000,0.0000 +2012,8,22,10,30,16.900000000000002,1.83,0.241,0.58,0,0,0,0,7,15.4,0,0,0,0,0.28400000000000003,90.8,111.28,0.9500000000000001,0.22,888,2.6,140,2,0.0000,0.0000 +2012,8,22,11,30,16.8,1.82,0.24,0.58,0,0,0,0,0,15.4,0,0,0,0,0.28200000000000003,91.65,100.19,0.9500000000000001,0.22,888,2.6,144,2,0.0000,0.0000 +2012,8,22,12,30,17.400000000000002,1.79,0.248,0.58,13,56,15,7,7,15.5,10,0,7,10,0.281,88.5,88.10000000000001,0.9500000000000001,0.22,889,2.6,153,2.2,0.0000,0.0000 +2012,8,22,13,30,19.1,1.79,0.249,0.58,82,400,179,0,3,15.5,22,0,0,22,0.281,79.52,76.06,0.9500000000000001,0.22,889,2.6,164,2.6,8.6849,6.6631 +2012,8,22,14,30,21.6,1.81,0.23900000000000002,0.58,122,604,389,0,3,15.700000000000001,120,0,0,120,0.28200000000000003,68.93,63.7,0.9500000000000001,0.22,889,2.6,175,2.8000000000000003,6.6282,5.1650 +2012,8,22,15,30,24.3,1.82,0.229,0.58,144,719,592,0,3,16.1,245,2,0,246,0.28300000000000003,60.27,51.46,0.9500000000000001,0.22,889,2.6,184,2.8000000000000003,16.4400,12.8870 +2012,8,22,16,30,26.700000000000003,1.84,0.219,0.58,157,788,762,0,3,16.3,152,0,0,152,0.28400000000000003,52.9,39.800000000000004,0.9500000000000001,0.22,888,2.6,188,2.6,24.1195,18.9561 +2012,8,22,17,30,28.700000000000003,1.86,0.209,0.58,162,827,881,0,3,16.1,287,0,0,287,0.28400000000000003,46.49,29.67,0.9500000000000001,0.22,888,2.7,190,2.5,26.2778,20.6778 +2012,8,22,18,30,30.200000000000003,1.8900000000000001,0.213,0.58,166,838,936,0,3,15.600000000000001,421,7,0,427,0.28500000000000003,41.4,23.39,0.9400000000000001,0.22,887,2.8000000000000003,190,2.4000000000000004,24.8967,19.6006 +2012,8,22,19,30,31.200000000000003,1.8900000000000001,0.20700000000000002,0.58,163,838,928,0,3,15.100000000000001,500,134,0,622,0.28500000000000003,37.7,24.23,0.9400000000000001,0.22,886,2.9000000000000004,190,2.4000000000000004,18.8241,14.8190 +2012,8,22,20,30,31.700000000000003,1.8800000000000001,0.203,0.58,156,821,855,0,0,14.600000000000001,156,821,0,855,0.28600000000000003,35.53,31.63,0.9400000000000001,0.22,885,3,188,2.4000000000000004,20.3327,15.9967 +2012,8,22,21,30,31.5,1.84,0.124,0.58,115,838,735,0,0,14.200000000000001,115,838,0,735,0.28500000000000003,35,42.230000000000004,0.9400000000000001,0.22,885,3.1,184,2.5,16.4626,12.9333 +2012,8,22,22,30,30.8,1.81,0.123,0.58,102,775,557,0,0,13.8,102,775,0,557,0.28500000000000003,35.61,54.07,0.9400000000000001,0.22,884,3.2,179,2.7,31.4594,24.6396 +2012,8,22,23,30,29.400000000000002,1.79,0.122,0.58,84,667,351,0,0,13.8,84,667,0,351,0.28500000000000003,38.36,66.38,0.9500000000000001,0.22,884,3.2,174,2.5,18.4534,14.3493 +2012,8,23,0,30,27.400000000000002,1.77,0.11900000000000001,0.58,54,451,142,0,3,14.600000000000001,96,181,0,132,0.28500000000000003,45.660000000000004,78.74,0.9500000000000001,0.23,885,3.3000000000000003,165,2.1,6.7814,5.1786 +2012,8,23,1,30,25.900000000000002,1.76,0.117,0.58,0,0,0,0,7,15.200000000000001,0,0,0,0,0.28500000000000003,51.63,91.01,0.9500000000000001,0.23,885,3.4000000000000004,157,2.2,0.0000,0.0000 +2012,8,23,2,30,25.200000000000003,1.74,0.116,0.58,0,0,0,0,7,15.100000000000001,0,0,0,0,0.28500000000000003,53.4,102.75,0.9500000000000001,0.23,885,3.5,153,2.7,0.0000,0.0000 +2012,8,23,3,30,24.6,1.72,0.116,0.58,0,0,0,0,7,15.100000000000001,0,0,0,0,0.28500000000000003,55.5,113.65,0.9500000000000001,0.23,885,3.6,154,3.1,0.0000,0.0000 +2012,8,23,4,30,24.200000000000003,1.69,0.11900000000000001,0.58,0,0,0,0,4,15,0,0,0,0,0.28500000000000003,56.49,123.14,0.96,0.23,885,3.7,158,3.6,0.0000,0.0000 +2012,8,23,5,30,23.700000000000003,1.6600000000000001,0.124,0.58,0,0,0,0,4,15,0,0,0,0,0.28400000000000003,58.07,130.36,0.96,0.23,885,3.8000000000000003,163,4.1000000000000005,0.0000,0.0000 +2012,8,23,6,30,23.200000000000003,1.6300000000000001,0.133,0.58,0,0,0,0,4,15.100000000000001,0,0,0,0,0.28400000000000003,60.54,134.17000000000002,0.96,0.23,885,3.8000000000000003,167,4.1000000000000005,0.0000,0.0000 +2012,8,23,7,30,22.8,1.59,0.14100000000000001,0.58,0,0,0,0,4,15.4,0,0,0,0,0.28400000000000003,63.230000000000004,133.71,0.96,0.23,885,3.9000000000000004,172,4,0.0000,0.0000 +2012,8,23,8,30,22.700000000000003,1.57,0.139,0.58,0,0,0,0,4,15.600000000000001,0,0,0,0,0.28500000000000003,64.34,129.09,0.96,0.23,885,3.9000000000000004,179,3.8000000000000003,0.0000,0.0000 +2012,8,23,9,30,22.700000000000003,1.57,0.126,0.58,0,0,0,0,7,15.600000000000001,0,0,0,0,0.28500000000000003,64.13,121.31,0.96,0.23,885,3.9000000000000004,189,3.7,0.0000,0.0000 +2012,8,23,10,30,22.400000000000002,1.59,0.111,0.58,0,0,0,0,7,15.4,0,0,0,0,0.28600000000000003,64.52,111.46000000000001,0.96,0.23,885,3.9000000000000004,194,3.3000000000000003,0.0000,0.0000 +2012,8,23,11,30,22.1,1.61,0.105,0.58,0,0,0,0,4,15.4,0,0,0,0,0.28700000000000003,65.95,100.35000000000001,0.96,0.23,885,3.9000000000000004,195,2.9000000000000004,0.0000,0.0000 +2012,8,23,12,30,22.3,1.61,0.109,0.58,13,98,16,7,8,15.700000000000001,6,0,7,6,0.28700000000000003,66.27,88.23,0.96,0.23,885,3.9000000000000004,197,3.1,0.0000,0.0000 +2012,8,23,13,30,23.3,1.6300000000000001,0.115,0.58,61,505,181,0,7,16.2,90,8,0,91,0.28800000000000003,64.46000000000001,76.19,0.96,0.23,885,3.9000000000000004,207,3.7,1.0663,0.8179 +2012,8,23,14,30,24.900000000000002,1.6500000000000001,0.11800000000000001,0.58,88,687,391,0,8,16.6,189,33,0,203,0.28800000000000003,59.86,63.83,0.96,0.23,885,3.9000000000000004,218,4.2,6.4607,5.0340 +2012,8,23,15,30,26.5,1.67,0.11900000000000001,0.58,105,782,591,0,8,16.5,292,143,0,381,0.28800000000000003,54.32,51.6,0.96,0.23,885,3.9000000000000004,223,4.5,14.1329,11.0780 +2012,8,23,16,30,27.900000000000002,1.68,0.122,0.58,117,833,756,0,4,16.5,408,105,0,489,0.28600000000000003,49.92,39.97,0.96,0.23,885,4,223,4.800000000000001,9.0487,7.1114 +2012,8,23,17,30,29.1,1.69,0.123,0.58,125,863,873,0,4,16.400000000000002,193,0,0,193,0.28500000000000003,46.39,29.91,0.96,0.23,885,4,221,5.1000000000000005,17.4116,13.7007 +2012,8,23,18,30,29.8,1.73,0.14200000000000002,0.58,137,865,929,0,4,16.2,396,5,0,400,0.28400000000000003,43.94,23.7,0.96,0.23,884,3.9000000000000004,217,5.300000000000001,26.1113,20.5564 +2012,8,23,19,30,30.1,1.74,0.135,0.58,133,868,922,0,4,16,370,3,0,372,0.28200000000000003,42.49,24.57,0.96,0.23,884,3.9000000000000004,214,5.4,38.0006,29.9147 +2012,8,23,20,30,29.900000000000002,1.76,0.126,0.58,125,858,853,0,4,15.9,393,13,0,404,0.281,42.78,31.94,0.96,0.23,883,3.9000000000000004,213,5.300000000000001,51.7147,40.6853 +2012,8,23,21,30,29.400000000000002,1.75,0.12,0.58,114,827,724,0,4,16,339,16,0,351,0.28200000000000003,44.300000000000004,42.49,0.96,0.23,883,3.9000000000000004,214,4.9,43.4951,34.1688 +2012,8,23,22,30,28.5,1.72,0.11800000000000001,0.58,101,767,549,0,4,16.1,192,1,0,193,0.28300000000000003,46.97,54.32,0.96,0.23,883,3.9000000000000004,213,4.3,31.6535,24.7894 +2012,8,23,23,30,27.200000000000003,1.68,0.115,0.58,82,660,344,0,8,16.3,171,301,0,291,0.28400000000000003,51.53,66.62,0.96,0.23,883,3.9000000000000004,208,3.2,18.5258,14.4025 +2012,8,24,0,30,25.700000000000003,1.6400000000000001,0.108,0.58,51,449,137,0,6,17.2,68,62,0,80,0.28400000000000003,59.49,78.98,0.96,0.23,883,3.8000000000000003,195,2.3000000000000003,6.2991,4.8083 +2012,8,24,1,30,24.6,1.6300000000000001,0.098,0.58,0,0,0,0,6,17.6,0,0,0,0,0.28500000000000003,65.06,91.26,0.96,0.23,884,3.7,180,2.4000000000000004,0.0000,0.0000 +2012,8,24,2,30,24.200000000000003,1.62,0.096,0.58,0,0,0,0,6,17.400000000000002,0,0,0,0,0.28600000000000003,65.89,103.02,0.96,0.23,884,3.7,171,3,0.0000,0.0000 +2012,8,24,3,30,23.8,1.6300000000000001,0.10300000000000001,0.58,0,0,0,0,6,17.3,0,0,0,0,0.28600000000000003,67.12,113.94,0.96,0.23,884,3.8000000000000003,170,3.5,0.0000,0.0000 +2012,8,24,4,30,23.3,1.6400000000000001,0.115,0.58,0,0,0,0,7,17.3,0,0,0,0,0.28600000000000003,69.02,123.46000000000001,0.96,0.23,884,3.9000000000000004,171,3.5,0.0000,0.0000 +2012,8,24,5,30,22.8,1.6500000000000001,0.128,0.58,0,0,0,0,7,17.3,0,0,0,0,0.28600000000000003,70.93,130.7,0.96,0.23,884,4,171,3.4000000000000004,0.0000,0.0000 +2012,8,24,6,30,22.400000000000002,1.6600000000000001,0.139,0.58,0,0,0,0,4,17.1,0,0,0,0,0.28500000000000003,72.17,134.52,0.96,0.23,883,4.1000000000000005,176,3.6,0.0000,0.0000 +2012,8,24,7,30,22.1,1.67,0.147,0.58,0,0,0,0,3,16.900000000000002,0,0,0,0,0.28500000000000003,72.43,134.03,0.96,0.23,883,4,186,3.8000000000000003,0.0000,0.0000 +2012,8,24,8,30,21.900000000000002,1.6600000000000001,0.155,0.58,0,0,0,0,8,16.5,0,0,0,0,0.28500000000000003,71.58,129.37,0.96,0.23,883,4,195,4,0.0000,0.0000 +2012,8,24,9,30,21.5,1.6500000000000001,0.156,0.58,0,0,0,0,7,16.1,0,0,0,0,0.28400000000000003,71.36,121.54,0.96,0.23,883,3.8000000000000003,203,3.8000000000000003,0.0000,0.0000 +2012,8,24,10,30,20.900000000000002,1.6600000000000001,0.14400000000000002,0.58,0,0,0,0,7,15.8,0,0,0,0,0.28400000000000003,72.57000000000001,111.65,0.96,0.23,883,3.7,207,3.1,0.0000,0.0000 +2012,8,24,11,30,20.3,1.6600000000000001,0.128,0.58,0,0,0,0,7,15.600000000000001,0,0,0,0,0.28300000000000003,74.41,100.51,0.96,0.23,883,3.7,208,2.5,0.0000,0.0000 +2012,8,24,12,30,20.900000000000002,1.6500000000000001,0.116,0.58,13,90,15,7,3,15.5,7,0,7,7,0.28300000000000003,71.35000000000001,88.36,0.96,0.23,883,3.6,207,3,0.0000,0.0000 +2012,8,24,13,30,23,1.6400000000000001,0.108,0.58,59,517,181,0,0,15.600000000000001,59,517,0,181,0.28200000000000003,62.96,76.32000000000001,0.9500000000000001,0.23,883,3.5,209,4.1000000000000005,4.4062,3.3788 +2012,8,24,14,30,25.700000000000003,1.6300000000000001,0.099,0.58,82,714,395,0,0,15.5,82,714,0,395,0.28300000000000003,53.21,63.96,0.9500000000000001,0.23,883,3.4000000000000004,219,4.5,10.9194,8.5072 +2012,8,24,15,30,28.200000000000003,1.6400000000000001,0.089,0.58,93,820,601,0,0,14.9,93,820,0,601,0.28300000000000003,44.35,51.75,0.9500000000000001,0.23,882,3.2,230,4.1000000000000005,21.8767,17.1472 +2012,8,24,16,30,30.3,1.6400000000000001,0.08,0.58,99,884,775,0,0,14.4,99,884,0,775,0.28400000000000003,38.1,40.15,0.9500000000000001,0.23,882,2.9000000000000004,235,3.6,29.0991,22.8684 +2012,8,24,17,30,32,1.6400000000000001,0.07100000000000001,0.58,100,923,898,0,0,14,100,923,0,898,0.28400000000000003,33.63,30.150000000000002,0.9400000000000001,0.23,881,2.7,235,3.4000000000000004,11.7047,9.2099 +2012,8,24,18,30,33.300000000000004,1.6300000000000001,0.056,0.58,94,950,962,0,0,13.5,94,950,0,962,0.28500000000000003,30.22,24.03,0.93,0.23,880,2.5,234,3.4000000000000004,24.4520,19.2497 +2012,8,24,19,30,34.1,1.6400000000000001,0.051000000000000004,0.58,91,957,959,0,0,12.8,91,957,0,959,0.28500000000000003,27.69,24.92,0.93,0.23,880,2.3000000000000003,233,3.4000000000000004,22.7183,17.8838 +2012,8,24,20,30,34.4,1.6600000000000001,0.047,0.58,86,949,889,0,0,12,86,949,0,889,0.28600000000000003,25.71,32.24,0.92,0.23,879,2.2,233,3.4000000000000004,24.4237,19.2141 +2012,8,24,21,30,34.2,1.67,0.05,0.58,82,915,754,0,0,11,82,915,0,754,0.28600000000000003,24.36,42.76,0.92,0.23,878,2.3000000000000003,232,3.5,20.7571,16.3055 +2012,8,24,22,30,33.5,1.68,0.054,0.58,76,853,570,0,0,10.200000000000001,76,853,0,570,0.28600000000000003,23.98,54.57,0.93,0.23,878,2.5,230,3.4000000000000004,10.9557,8.5792 +2012,8,24,23,30,31.8,1.67,0.061,0.58,65,742,356,0,0,9.8,65,742,0,356,0.28500000000000003,25.77,66.86,0.93,0.23,878,2.7,223,2.6,15.3299,11.9153 +2012,8,25,0,30,29.200000000000003,1.6500000000000001,0.07,0.58,44,515,141,0,0,12.200000000000001,44,515,0,141,0.28600000000000003,35.01,79.22,0.9400000000000001,0.23,879,2.8000000000000003,206,1.5,3.8154,2.9113 +2012,8,25,1,30,27.400000000000002,1.62,0.076,0.58,0,0,0,0,0,13.700000000000001,0,0,0,0,0.28600000000000003,43.01,91.51,0.9400000000000001,0.23,879,3,187,1.3,0.0000,0.0000 +2012,8,25,2,30,26.700000000000003,1.59,0.077,0.58,0,0,0,0,0,13.600000000000001,0,0,0,0,0.28600000000000003,44.47,103.28,0.9500000000000001,0.23,879,3.1,179,1.7000000000000002,0.0000,0.0000 +2012,8,25,3,30,25.900000000000002,1.58,0.077,0.58,0,0,0,0,0,13.9,0,0,0,0,0.28600000000000003,47.6,114.23,0.9500000000000001,0.23,880,3.2,174,2.3000000000000003,0.0000,0.0000 +2012,8,25,4,30,25.1,1.59,0.073,0.58,0,0,0,0,4,14.5,0,0,0,0,0.28600000000000003,51.95,123.78,0.9500000000000001,0.23,880,3.2,172,2.7,0.0000,0.0000 +2012,8,25,5,30,24.200000000000003,1.6,0.068,0.58,0,0,0,0,1,15.200000000000001,0,0,0,0,0.28500000000000003,57.06,131.04,0.9400000000000001,0.23,880,3.2,171,2.8000000000000003,0.0000,0.0000 +2012,8,25,6,30,23.1,1.6300000000000001,0.062,0.58,0,0,0,0,4,15.600000000000001,0,0,0,0,0.28400000000000003,62.65,134.87,0.9400000000000001,0.23,880,3.2,172,2.5,0.0000,0.0000 +2012,8,25,7,30,21.8,1.6500000000000001,0.056,0.58,0,0,0,0,0,15.700000000000001,0,0,0,0,0.28300000000000003,68.4,134.36,0.93,0.23,879,3.1,175,1.9000000000000001,0.0000,0.0000 +2012,8,25,8,30,20.700000000000003,1.67,0.052000000000000005,0.58,0,0,0,0,0,15.700000000000001,0,0,0,0,0.28300000000000003,72.88,129.65,0.93,0.23,879,3,182,1.3,0.0000,0.0000 +2012,8,25,9,30,19.8,1.7,0.049,0.58,0,0,0,0,0,15.4,0,0,0,0,0.28300000000000003,75.93,121.77,0.92,0.23,879,3,198,1.1,0.0000,0.0000 +2012,8,25,10,30,19.1,1.73,0.046,0.58,0,0,0,0,0,15.100000000000001,0,0,0,0,0.28400000000000003,77.8,111.84,0.92,0.23,879,3,223,1,0.0000,0.0000 +2012,8,25,11,30,18.8,1.77,0.044,0.58,0,0,0,0,0,14.8,0,0,0,0,0.28400000000000003,77.71000000000001,100.67,0.92,0.23,879,2.9000000000000004,249,1.2000000000000002,0.0000,0.0000 +2012,8,25,12,30,19.8,1.81,0.043000000000000003,0.58,11,179,16,0,0,14.700000000000001,11,179,0,16,0.28500000000000003,72.58,88.49,0.92,0.23,880,2.9000000000000004,272,1.9000000000000001,0.0000,0.0000 +2012,8,25,13,30,22.6,1.84,0.042,0.58,44,624,191,0,0,14.8,44,624,0,191,0.28500000000000003,61.24,76.45,0.93,0.23,880,2.9000000000000004,292,2.4000000000000004,8.7552,6.7121 +2012,8,25,14,30,26.200000000000003,1.87,0.041,0.58,61,791,407,0,0,14.3,61,791,0,407,0.28500000000000003,48.050000000000004,64.09,0.93,0.23,881,2.9000000000000004,299,2.4000000000000004,21.2277,16.5367 +2012,8,25,15,30,29.6,1.8800000000000001,0.041,0.58,71,873,610,0,0,12.600000000000001,71,873,0,610,0.28500000000000003,35.2,51.89,0.93,0.23,881,2.9000000000000004,293,2.5,34.4885,27.0312 +2012,8,25,16,30,31.900000000000002,1.8900000000000001,0.041,0.58,79,918,779,0,0,11.700000000000001,79,918,0,779,0.28500000000000003,29.04,40.33,0.9400000000000001,0.23,881,2.9000000000000004,292,2.5,46.0987,36.2270 +2012,8,25,17,30,33.4,1.9000000000000001,0.042,0.58,84,942,897,0,0,11.600000000000001,84,942,0,897,0.28400000000000003,26.6,30.39,0.9400000000000001,0.23,881,2.9000000000000004,302,2.5,54.4406,42.8360 +2012,8,25,18,30,34.5,1.92,0.043000000000000003,0.58,87,954,956,0,0,11.5,87,954,0,956,0.28400000000000003,24.78,24.35,0.9400000000000001,0.23,881,2.8000000000000003,319,2.5,58.7858,46.2778 +2012,8,25,19,30,35.1,1.93,0.045,0.58,87,951,948,0,0,11.200000000000001,87,951,0,948,0.28300000000000003,23.46,25.27,0.9400000000000001,0.23,880,2.8000000000000003,339,2.6,58.5433,46.0840 +2012,8,25,20,30,35.2,1.94,0.047,0.58,86,938,876,0,0,10.700000000000001,86,938,0,876,0.28300000000000003,22.69,32.55,0.9400000000000001,0.23,880,2.7,180,2.8000000000000003,53.7177,42.2584 +2012,8,25,21,30,34.800000000000004,1.96,0.048,0.58,81,908,744,0,0,10.3,81,908,0,744,0.28200000000000003,22.51,43.04,0.9400000000000001,0.23,880,2.7,19,3,44.5576,35.0001 +2012,8,25,22,30,34,1.97,0.049,0.58,73,856,566,0,0,9.9,73,856,0,566,0.281,22.990000000000002,54.82,0.9400000000000001,0.23,880,2.6,35,3.2,32.3197,25.3064 +2012,8,25,23,30,32.300000000000004,1.98,0.05,0.58,61,760,357,0,0,9.700000000000001,61,760,0,357,0.28,24.95,67.11,0.9400000000000001,0.23,880,2.5,45,3,18.7182,14.5456 +2012,8,26,0,30,29.3,1.99,0.05,0.58,40,552,141,0,0,10.9,40,552,0,141,0.28,31.93,79.47,0.9400000000000001,0.23,881,2.5,51,2.3000000000000003,6.7219,5.1274 +2012,8,26,1,30,26.8,1.99,0.05,0.58,0,0,0,0,0,11.9,0,0,0,0,0.281,39.63,91.77,0.9400000000000001,0.23,882,2.4000000000000004,55,2.2,0.0000,0.0000 +2012,8,26,2,30,25.700000000000003,1.98,0.05,0.58,0,0,0,0,0,11.700000000000001,0,0,0,0,0.281,41.63,103.56,0.9400000000000001,0.23,883,2.4000000000000004,62,2.6,0.0000,0.0000 +2012,8,26,3,30,24.5,1.96,0.051000000000000004,0.58,0,0,0,0,0,12.200000000000001,0,0,0,0,0.281,46.1,114.53,0.9400000000000001,0.23,883,2.5,75,2.3000000000000003,0.0000,0.0000 +2012,8,26,4,30,23.3,1.92,0.052000000000000005,0.58,0,0,0,0,0,13.100000000000001,0,0,0,0,0.281,52.68,124.10000000000001,0.9400000000000001,0.23,883,2.5,98,1.8,0.0000,0.0000 +2012,8,26,5,30,22.400000000000002,1.83,0.053,0.58,0,0,0,0,0,14,0,0,0,0,0.281,59.08,131.39000000000001,0.9400000000000001,0.23,883,2.6,121,1.4000000000000001,0.0000,0.0000 +2012,8,26,6,30,21.700000000000003,1.74,0.056,0.58,0,0,0,0,0,14.9,0,0,0,0,0.281,65.27,135.22,0.9400000000000001,0.23,884,2.6,139,1.1,0.0000,0.0000 +2012,8,26,7,30,21.3,1.67,0.058,0.58,0,0,0,0,0,15.5,0,0,0,0,0.281,69.59,134.69,0.9400000000000001,0.23,884,2.6,155,0.9,0.0000,0.0000 +2012,8,26,8,30,20.700000000000003,1.6400000000000001,0.058,0.58,0,0,0,0,0,15.9,0,0,0,0,0.28200000000000003,74.04,129.93,0.9400000000000001,0.23,884,2.5,249,0.9,0.0000,0.0000 +2012,8,26,9,30,19.900000000000002,1.6300000000000001,0.059000000000000004,0.58,0,0,0,0,0,16.2,0,0,0,0,0.28300000000000003,79.19,122,0.9400000000000001,0.23,884,2.5,343,1,0.0000,0.0000 +2012,8,26,10,30,19.3,1.62,0.059000000000000004,0.58,0,0,0,0,0,16.400000000000002,0,0,0,0,0.28300000000000003,83.33,112.03,0.9400000000000001,0.23,885,2.5,187,1.3,0.0000,0.0000 +2012,8,26,11,30,18.8,1.62,0.062,0.58,0,0,0,0,0,16.6,0,0,0,0,0.28400000000000003,86.98,100.83,0.9400000000000001,0.23,886,2.5,30,1.8,0.0000,0.0000 +2012,8,26,12,30,19.5,1.6,0.066,0.58,11,132,15,0,0,16.900000000000002,11,132,0,15,0.28500000000000003,84.72,88.62,0.9400000000000001,0.23,886,2.5,42,2.5,0.0000,0.0000 +2012,8,26,13,30,22.200000000000003,1.59,0.07100000000000001,0.58,52,579,186,0,1,17.3,52,579,0,186,0.28600000000000003,73.89,76.58,0.9500000000000001,0.23,887,2.6,52,2.7,9.2299,7.0743 +2012,8,26,14,30,25.5,1.59,0.07,0.58,72,759,403,7,3,17.3,159,2,7,160,0.28600000000000003,60.44,64.22,0.9500000000000001,0.23,887,2.6,55,2.7,21.8525,17.0217 +2012,8,26,15,30,28,1.59,0.07,0.58,86,850,609,7,3,16.900000000000002,347,107,7,413,0.28500000000000003,50.84,52.04,0.9500000000000001,0.23,888,2.5,57,3,34.9854,27.4194 +2012,8,26,16,30,29.900000000000002,1.59,0.069,0.58,94,900,779,0,0,16.5,94,900,0,779,0.28500000000000003,44.46,40.51,0.9500000000000001,0.23,888,2.5,66,3.2,46.3168,36.3974 +2012,8,26,17,30,31.400000000000002,1.6,0.065,0.58,98,931,899,0,0,16,98,931,0,899,0.28400000000000003,39.58,30.63,0.9500000000000001,0.23,887,2.5,77,3.4000000000000004,54.3603,42.7719 +2012,8,26,18,30,32.6,1.46,0.07,0.58,103,938,955,0,0,15.3,103,938,0,955,0.28300000000000003,35.35,24.68,0.9500000000000001,0.23,887,2.5,86,3.6,58.3982,45.9717 +2012,8,26,19,30,33.300000000000004,1.46,0.068,0.58,102,940,949,0,0,14.5,102,940,0,949,0.28200000000000003,32.21,25.62,0.9500000000000001,0.23,887,2.4000000000000004,93,3.8000000000000003,57.8481,45.5356 +2012,8,26,20,30,33.5,1.46,0.067,0.58,98,926,875,0,0,13.700000000000001,98,926,0,875,0.281,30.32,32.87,0.9400000000000001,0.23,886,2.4000000000000004,97,3.9000000000000004,52.9049,41.6176 +2012,8,26,21,30,33.2,1.46,0.065,0.58,91,896,743,0,0,13,91,896,0,743,0.281,29.42,43.31,0.9400000000000001,0.23,886,2.4000000000000004,101,4.1000000000000005,43.9338,34.5083 +2012,8,26,22,30,32.300000000000004,1.46,0.064,0.58,81,843,563,0,0,12.4,81,843,0,563,0.281,29.82,55.08,0.9400000000000001,0.23,886,2.3000000000000003,105,4.2,32.0563,25.0978 +2012,8,26,23,30,30.8,1.47,0.064,0.58,66,740,351,0,0,12.3,66,740,0,351,0.28200000000000003,32.1,67.36,0.9400000000000001,0.23,886,2.3000000000000003,110,4.1000000000000005,18.7331,14.5535 +2012,8,27,0,30,28.3,1.47,0.063,0.58,43,521,136,0,0,12.700000000000001,43,521,0,136,0.28200000000000003,38.19,79.72,0.9400000000000001,0.23,887,2.3000000000000003,116,3.3000000000000003,6.7206,5.1246 +2012,8,27,1,30,26.1,1.47,0.061,0.58,0,0,0,0,0,13.8,0,0,0,0,0.28300000000000003,46.69,92.03,0.9400000000000001,0.23,887,2.2,124,3,0.0000,0.0000 +2012,8,27,2,30,24.8,1.48,0.059000000000000004,0.58,0,0,0,0,0,14.5,0,0,0,0,0.28300000000000003,52.76,103.83,0.93,0.23,888,2.1,129,3.2,0.0000,0.0000 +2012,8,27,3,30,23.6,1.49,0.058,0.58,0,0,0,0,0,15.200000000000001,0,0,0,0,0.28300000000000003,59.42,114.82000000000001,0.93,0.23,889,2,133,2.9000000000000004,0.0000,0.0000 +2012,8,27,4,30,22.3,1.5,0.057,0.58,0,0,0,0,0,15.9,0,0,0,0,0.28200000000000003,67.05,124.43,0.93,0.23,889,1.9000000000000001,138,2.3000000000000003,0.0000,0.0000 +2012,8,27,5,30,21,1.52,0.057,0.58,0,0,0,0,0,16.400000000000002,0,0,0,0,0.281,75.2,131.74,0.93,0.23,890,1.7000000000000002,142,1.6,0.0000,0.0000 +2012,8,27,6,30,19.900000000000002,1.53,0.056,0.58,0,0,0,0,0,16.8,0,0,0,0,0.28,82.52,135.57,0.93,0.23,890,1.6,149,1.1,0.0000,0.0000 +2012,8,27,7,30,19,1.54,0.056,0.58,0,0,0,0,0,17.1,0,0,0,0,0.28,88.86,135.02,0.93,0.23,890,1.6,158,0.9,0.0000,0.0000 +2012,8,27,8,30,18.400000000000002,1.55,0.057,0.58,0,0,0,0,0,17.3,0,0,0,0,0.279,93.51,130.21,0.93,0.23,890,1.6,169,0.8,0.0000,0.0000 +2012,8,27,9,30,18,1.56,0.058,0.58,0,0,0,0,0,17.5,0,0,0,0,0.279,96.84,122.24000000000001,0.9400000000000001,0.23,890,1.6,185,0.7000000000000001,0.0000,0.0000 +2012,8,27,10,30,17.8,1.57,0.06,0.58,0,0,0,0,0,17.6,0,0,0,0,0.28,98.78,112.22,0.9400000000000001,0.23,890,1.6,207,0.6000000000000001,0.0000,0.0000 +2012,8,27,11,30,17.8,1.58,0.062,0.58,0,0,0,0,0,17.7,0,0,0,0,0.28,99.38,100.99000000000001,0.9400000000000001,0.23,891,1.6,248,0.5,0.0000,0.0000 +2012,8,27,12,30,18.900000000000002,1.59,0.065,0.58,11,137,14,0,0,17.7,11,137,0,14,0.28,92.97,88.75,0.9400000000000001,0.23,891,1.6,308,0.5,0.0000,0.0000 +2012,8,27,13,30,22.200000000000003,1.6300000000000001,0.064,0.58,50,617,192,0,0,17.7,50,617,0,192,0.281,75.78,76.71000000000001,0.93,0.23,891,1.5,207,0.8,8.9796,6.8809 +2012,8,27,14,30,26.1,1.73,0.059000000000000004,0.58,69,802,416,0,0,15.3,69,802,0,416,0.281,51.4,64.35,0.93,0.23,891,1.5,78,1.6,8.5827,6.6847 +2012,8,27,15,30,28.8,1.79,0.057,0.58,80,893,628,0,0,12.3,80,893,0,628,0.281,36.04,52.18,0.92,0.23,891,1.4000000000000001,82,2.3000000000000003,23.6725,18.5522 +2012,8,27,16,30,30.6,1.82,0.055,0.58,87,942,801,0,0,10.5,87,942,0,801,0.28200000000000003,28.94,40.69,0.92,0.23,891,1.4000000000000001,88,2.8000000000000003,46.2969,36.3807 +2012,8,27,17,30,32,1.84,0.054,0.58,91,968,922,0,0,9,91,968,0,922,0.28200000000000003,24.17,30.88,0.92,0.23,891,1.4000000000000001,95,3.2,54.4615,42.8505 +2012,8,27,18,30,33.1,1.84,0.054,0.58,94,979,981,0,0,7.9,94,979,0,981,0.28300000000000003,21.06,25.01,0.92,0.23,890,1.4000000000000001,99,3.4000000000000004,58.3153,45.9053 +2012,8,27,19,30,33.7,1.86,0.054,0.58,93,978,972,0,0,7.2,93,978,0,972,0.28300000000000003,19.42,25.98,0.92,0.23,890,1.4000000000000001,100,3.5,57.8849,45.5635 +2012,8,27,20,30,33.800000000000004,1.8800000000000001,0.053,0.58,90,961,894,0,0,6.800000000000001,90,961,0,894,0.28300000000000003,18.78,33.19,0.92,0.23,889,1.5,99,3.5,52.8159,41.5462 +2012,8,27,21,30,33.4,1.96,0.048,0.58,81,936,759,0,0,6.6000000000000005,81,936,0,759,0.28200000000000003,18.93,43.6,0.92,0.23,889,1.5,97,3.6,43.8428,34.4350 +2012,8,27,22,30,32.6,1.95,0.048,0.58,73,883,575,0,0,6.5,73,883,0,575,0.28200000000000003,19.650000000000002,55.34,0.92,0.23,888,1.5,95,3.6,31.8481,24.9323 +2012,8,27,23,30,30.8,1.94,0.047,0.58,60,783,358,0,0,6.6000000000000005,60,783,0,358,0.28200000000000003,21.97,67.61,0.92,0.23,888,1.6,96,3.1,18.3808,14.2763 +2012,8,28,0,30,27.400000000000002,1.9100000000000001,0.048,0.58,39,563,137,0,0,8.200000000000001,39,563,0,137,0.28200000000000003,29.71,79.97,0.92,0.23,889,1.7000000000000002,101,2.2,6.4825,4.9416 +2012,8,28,1,30,24.700000000000003,1.8900000000000001,0.048,0.58,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28200000000000003,39.77,92.29,0.91,0.23,889,1.7000000000000002,108,1.9000000000000001,0.0000,0.0000 +2012,8,28,2,30,23.6,1.86,0.051000000000000004,0.58,0,0,0,0,0,10.5,0,0,0,0,0.28200000000000003,43.61,104.11,0.91,0.23,890,1.8,114,2,0.0000,0.0000 +2012,8,28,3,30,22.700000000000003,1.85,0.056,0.58,0,0,0,0,0,11.3,0,0,0,0,0.28200000000000003,48.39,115.13,0.91,0.23,890,1.9000000000000001,119,1.9000000000000001,0.0000,0.0000 +2012,8,28,4,30,21.700000000000003,1.85,0.064,0.58,0,0,0,0,0,12,0,0,0,0,0.28200000000000003,54.08,124.76,0.91,0.23,891,1.9000000000000001,123,1.6,0.0000,0.0000 +2012,8,28,5,30,20.900000000000002,1.86,0.074,0.58,0,0,0,0,0,12.5,0,0,0,0,0.28200000000000003,58.75,132.09,0.91,0.23,891,2,125,1.4000000000000001,0.0000,0.0000 +2012,8,28,6,30,20.1,1.87,0.082,0.58,0,0,0,0,0,12.9,0,0,0,0,0.28200000000000003,63.38,135.93,0.91,0.23,891,2,123,1.1,0.0000,0.0000 +2012,8,28,7,30,19.5,1.87,0.089,0.58,0,0,0,0,0,13.3,0,0,0,0,0.28200000000000003,67.26,135.35,0.91,0.23,891,2,114,1,0.0000,0.0000 +2012,8,28,8,30,19,1.87,0.093,0.58,0,0,0,0,0,13.5,0,0,0,0,0.28200000000000003,70.41,130.5,0.91,0.23,891,2,100,0.9,0.0000,0.0000 +2012,8,28,9,30,18.8,1.86,0.095,0.58,0,0,0,0,0,13.600000000000001,0,0,0,0,0.28300000000000003,71.86,122.47,0.91,0.23,890,2,85,0.8,0.0000,0.0000 +2012,8,28,10,30,18.6,1.85,0.096,0.58,0,0,0,0,0,13.700000000000001,0,0,0,0,0.28300000000000003,73.12,112.41,0.92,0.23,890,2,69,0.7000000000000001,0.0000,0.0000 +2012,8,28,11,30,18.400000000000002,1.84,0.097,0.58,0,0,0,0,0,13.700000000000001,0,0,0,0,0.28300000000000003,74.28,101.15,0.92,0.23,891,1.9000000000000001,56,0.7000000000000001,0.0000,0.0000 +2012,8,28,12,30,19.3,1.83,0.098,0.58,10,101,12,0,0,13.8,10,101,0,12,0.28300000000000003,70.29,88.87,0.92,0.23,891,1.9000000000000001,46,0.9,0.0000,0.0000 +2012,8,28,13,30,22.1,1.82,0.098,0.58,56,556,182,0,0,13.8,56,556,0,182,0.28300000000000003,59.300000000000004,76.84,0.92,0.23,891,1.9000000000000001,55,1.6,9.2606,7.0944 +2012,8,28,14,30,25.200000000000003,1.82,0.097,0.58,80,748,402,0,0,13.3,80,748,0,402,0.28300000000000003,47.69,64.49,0.91,0.23,891,1.8,67,2.2,22.2943,17.3623 +2012,8,28,15,30,27.700000000000003,1.83,0.097,0.58,95,845,612,0,0,12.3,95,845,0,612,0.28200000000000003,38.42,52.33,0.91,0.23,891,1.7000000000000002,64,2.7,35.9756,28.1929 +2012,8,28,16,30,29.700000000000003,1.85,0.097,0.58,105,900,786,0,0,10.200000000000001,105,900,0,786,0.28200000000000003,29.91,40.88,0.91,0.23,891,1.6,61,3.2,47.5838,37.3908 +2012,8,28,17,30,31.3,1.8800000000000001,0.097,0.58,112,932,909,0,0,8,112,932,0,909,0.281,23.53,31.13,0.91,0.23,890,1.5,60,3.7,55.8333,43.9288 +2012,8,28,18,30,32.4,1.9000000000000001,0.096,0.58,113,948,970,0,0,6.1000000000000005,113,948,0,970,0.281,19.34,25.34,0.9,0.23,890,1.4000000000000001,61,4,59.8800,47.1360 +2012,8,28,19,30,33,1.92,0.093,0.58,112,952,964,0,0,4.5,112,952,0,964,0.28,16.740000000000002,26.34,0.9,0.23,889,1.3,62,4.3,59.2619,46.6461 +2012,8,28,20,30,33.1,1.94,0.09,0.58,107,942,892,0,0,3.2,107,942,0,892,0.28,15.23,33.51,0.9,0.23,888,1.2000000000000002,64,4.6000000000000005,53.9332,42.4235 +2012,8,28,21,30,32.6,1.99,0.082,0.58,96,919,759,0,0,2.2,96,919,0,759,0.28,14.58,43.88,0.9,0.23,888,1.1,68,4.7,44.7514,35.1467 +2012,8,28,22,30,31.5,2,0.079,0.58,85,868,575,0,0,1.5,85,868,0,575,0.28,14.71,55.61,0.9,0.23,887,1,72,4.7,32.4874,25.4301 +2012,8,28,23,30,29.5,2,0.076,0.58,68,765,356,0,0,1.1,68,765,0,356,0.28,16.04,67.86,0.9,0.23,887,1,77,3.8000000000000003,18.7089,14.5274 +2012,8,29,0,30,25.8,1.99,0.074,0.58,42,541,134,0,0,2.4000000000000004,42,541,0,134,0.281,21.830000000000002,80.22,0.89,0.23,888,0.9,84,2.5,6.5322,4.9781 +2012,8,29,1,30,22.6,1.98,0.07200000000000001,0.58,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.281,31.060000000000002,92.56,0.89,0.23,888,0.9,90,2,0.0000,0.0000 +2012,8,29,2,30,21.200000000000003,1.96,0.07,0.58,0,0,0,0,0,5,0,0,0,0,0.28200000000000003,34.59,104.39,0.89,0.23,888,0.9,94,1.9000000000000001,0.0000,0.0000 +2012,8,29,3,30,20.1,1.94,0.07,0.58,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28200000000000003,38.65,115.43,0.89,0.23,889,0.8,96,1.8,0.0000,0.0000 +2012,8,29,4,30,19,1.9100000000000001,0.07,0.58,0,0,0,0,0,6.300000000000001,0,0,0,0,0.281,43.35,125.09,0.89,0.23,889,0.8,97,1.6,0.0000,0.0000 +2012,8,29,5,30,18.1,1.8900000000000001,0.07200000000000001,0.58,0,0,0,0,0,6.800000000000001,0,0,0,0,0.281,47.67,132.45,0.89,0.23,889,0.8,95,1.4000000000000001,0.0000,0.0000 +2012,8,29,6,30,17.3,1.87,0.074,0.58,0,0,0,0,0,7.2,0,0,0,0,0.281,51.42,136.3,0.9,0.23,889,0.8,93,1.3,0.0000,0.0000 +2012,8,29,7,30,16.6,1.86,0.077,0.58,0,0,0,0,0,7.4,0,0,0,0,0.28,54.38,135.68,0.9,0.23,889,0.8,90,1.2000000000000002,0.0000,0.0000 +2012,8,29,8,30,16.1,1.85,0.081,0.58,0,0,0,0,0,7.4,0,0,0,0,0.28,56.24,130.78,0.9,0.23,888,0.8,88,1.2000000000000002,0.0000,0.0000 +2012,8,29,9,30,15.600000000000001,1.84,0.08600000000000001,0.58,0,0,0,0,0,7.4,0,0,0,0,0.281,58.34,122.7,0.9,0.23,888,0.9,86,1.1,0.0000,0.0000 +2012,8,29,10,30,15.4,1.84,0.093,0.58,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.281,59.64,112.60000000000001,0.9,0.23,888,0.9,83,1.1,0.0000,0.0000 +2012,8,29,11,30,15.4,1.85,0.099,0.58,0,0,0,0,0,7.7,0,0,0,0,0.281,60.09,101.31,0.9,0.23,888,0.9,79,1,0.0000,0.0000 +2012,8,29,12,30,16.8,1.85,0.106,0.58,0,0,0,0,0,7.800000000000001,0,0,0,0,0.281,55.25,89,0.9,0.23,888,0.9,67,1,0.0000,0.0000 +2012,8,29,13,30,19.8,1.86,0.112,0.58,58,568,186,0,0,8.4,58,568,0,186,0.28,47.85,76.97,0.9,0.23,889,0.9,57,1,8.7702,6.7172 +2012,8,29,14,30,23.5,1.86,0.117,0.58,86,757,410,0,0,8.1,86,757,0,410,0.28,37.2,64.62,0.9,0.23,889,0.9,60,1.2000000000000002,21.5222,16.7592 +2012,8,29,15,30,26.6,1.87,0.121,0.58,104,851,622,0,0,5.6000000000000005,104,851,0,622,0.279,26.080000000000002,52.480000000000004,0.9,0.23,889,0.9,58,1.6,35.0376,27.4564 +2012,8,29,16,30,28.6,1.8800000000000001,0.11900000000000001,0.58,115,907,799,0,0,3.7,115,907,0,799,0.278,20.39,41.06,0.9,0.23,888,0.9,48,1.9000000000000001,46.6712,36.6725 +2012,8,29,17,30,30.3,1.8800000000000001,0.115,0.58,120,939,922,0,0,2.5,120,939,0,922,0.278,16.97,31.39,0.9,0.23,887,0.9,48,2.2,55.0246,43.2914 +2012,8,29,18,30,31.700000000000003,1.8900000000000001,0.089,0.58,111,971,986,0,0,1.6,111,971,0,986,0.277,14.65,25.68,0.9,0.23,887,0.9,53,2.4000000000000004,59.1856,46.5883 +2012,8,29,19,30,32.6,1.8800000000000001,0.09,0.58,111,968,976,0,0,0.8,111,968,0,976,0.276,13.22,26.7,0.9,0.23,886,0.9,59,2.7,58.7480,46.2403 +2012,8,29,20,30,33,1.87,0.091,0.58,107,952,898,0,0,0.4,107,952,0,898,0.275,12.52,33.84,0.9,0.23,885,0.9,66,2.9000000000000004,53.7826,42.3036 +2012,8,29,21,30,32.800000000000004,1.8800000000000001,0.083,0.58,97,926,761,0,0,0.2,97,926,0,761,0.275,12.44,44.17,0.9,0.23,884,0.9,73,3.1,44.7167,35.1175 +2012,8,29,22,30,32,1.86,0.082,0.58,86,868,573,0,0,0,86,868,0,573,0.274,12.86,55.870000000000005,0.9,0.23,884,0.9,80,3.2,32.4459,25.3948 +2012,8,29,23,30,29.700000000000003,1.83,0.08,0.58,69,760,353,0,0,0.1,69,760,0,353,0.274,14.76,68.12,0.9,0.23,884,0.9,87,2.5,18.5658,14.4126 +2012,8,30,0,30,25.700000000000003,1.8,0.076,0.58,42,528,130,0,0,3.8000000000000003,42,528,0,130,0.274,24.37,80.48,0.9,0.23,884,0.9,95,1.7000000000000002,0.0000,0.0000 +2012,8,30,1,30,22.700000000000003,1.76,0.07100000000000001,0.58,0,0,0,0,1,5,0,0,0,0,0.275,31.560000000000002,92.83,0.9,0.23,885,0.9,102,1.7000000000000002,0.0000,0.0000 +2012,8,30,2,30,21.3,1.73,0.066,0.58,0,0,0,0,0,4.800000000000001,0,0,0,0,0.275,33.89,104.68,0.89,0.23,885,0.9,106,1.7000000000000002,0.0000,0.0000 +2012,8,30,3,30,20.1,1.73,0.062,0.58,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.276,37.46,115.74000000000001,0.89,0.23,886,0.9,107,1.5,0.0000,0.0000 +2012,8,30,4,30,19.1,1.73,0.06,0.58,0,0,0,0,0,5.7,0,0,0,0,0.276,41.34,125.42,0.9,0.23,886,1,109,1.3,0.0000,0.0000 +2012,8,30,5,30,18.3,1.74,0.057,0.58,0,0,0,0,0,6,0,0,0,0,0.277,44.61,132.81,0.9,0.23,886,1.1,109,1.2000000000000002,0.0000,0.0000 +2012,8,30,6,30,17.8,1.76,0.055,0.58,0,0,0,0,0,6.2,0,0,0,0,0.277,46.44,136.66,0.9,0.23,886,1.1,106,1.1,0.0000,0.0000 +2012,8,30,7,30,17.5,1.77,0.054,0.58,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.278,47.25,136.02,0.9,0.23,886,1.2000000000000002,98,1.1,0.0000,0.0000 +2012,8,30,8,30,17.400000000000002,1.78,0.054,0.58,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.279,47.43,131.06,0.9,0.23,886,1.2000000000000002,86,1,0.0000,0.0000 +2012,8,30,9,30,17.400000000000002,1.77,0.055,0.58,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.279,47.29,122.93,0.9,0.23,886,1.2000000000000002,70,0.9,0.0000,0.0000 +2012,8,30,10,30,17.3,1.76,0.056,0.58,0,0,0,0,0,6,0,0,0,0,0.28,47.45,112.79,0.91,0.23,886,1.2000000000000002,49,0.7000000000000001,0.0000,0.0000 +2012,8,30,11,30,17.400000000000002,1.74,0.058,0.58,0,0,0,0,1,6.1000000000000005,0,0,0,0,0.281,47.37,101.47,0.91,0.23,886,1.2000000000000002,29,0.6000000000000001,0.0000,0.0000 +2012,8,30,12,30,18.2,1.74,0.06,0.58,0,0,0,0,1,6.5,0,0,0,0,0.281,46.32,89.13,0.91,0.23,886,1.2000000000000002,15,0.6000000000000001,0.0000,0.0000 +2012,8,30,13,30,20.1,1.73,0.062,0.58,48,624,188,7,3,7.300000000000001,123,65,7,138,0.281,43.46,77.10000000000001,0.91,0.23,886,1.2000000000000002,6,0.8,8.9550,6.8570 +2012,8,30,14,30,23.6,1.74,0.062,0.58,69,810,414,0,1,6.4,69,810,0,414,0.281,33.01,64.76,0.91,0.23,886,1.1,31,1,21.9299,17.0749 +2012,8,30,15,30,27.3,1.75,0.06,0.58,81,900,627,0,8,4.5,203,563,0,545,0.279,23.21,52.64,0.91,0.23,886,1.1,62,1.4000000000000001,35.5882,27.8865 +2012,8,30,16,30,29.700000000000003,1.76,0.059000000000000004,0.58,89,949,802,0,8,3.4000000000000004,313,378,0,597,0.278,18.67,41.25,0.91,0.23,886,1.1,71,2,47.4222,37.2615 +2012,8,30,17,30,31.5,1.77,0.058,0.58,93,972,921,0,1,2.7,93,972,0,921,0.277,16.05,31.64,0.91,0.23,886,1.2000000000000002,78,2.5,55.7886,43.8914 +2012,8,30,18,30,32.7,1.77,0.059000000000000004,0.58,96,982,978,7,2,2.4000000000000004,282,740,7,947,0.276,14.64,26.02,0.91,0.23,885,1.2000000000000002,84,2.8000000000000003,60.1374,47.3363 +2012,8,30,19,30,33.2,1.77,0.058,0.58,95,981,969,0,7,2.3000000000000003,197,801,0,910,0.275,14.15,27.07,0.91,0.23,884,1.2000000000000002,88,3,59.4523,46.7934 +2012,8,30,20,30,33.1,1.76,0.057,0.58,91,967,892,0,0,2.2,91,967,0,892,0.275,14.21,34.17,0.91,0.23,884,1.2000000000000002,91,3,54.1128,42.5617 +2012,8,30,21,30,32.5,1.76,0.058,0.58,86,932,751,0,1,2.1,86,932,0,751,0.275,14.58,44.47,0.91,0.23,883,1.3,93,3,44.7981,35.1794 +2012,8,30,22,30,31.6,1.76,0.058,0.58,76,876,564,0,1,2,76,876,0,564,0.276,15.21,56.14,0.91,0.23,883,1.3,95,2.9000000000000004,32.2928,25.2723 +2012,8,30,23,30,29.5,1.77,0.058,0.58,62,770,346,0,0,2.1,62,770,0,346,0.276,17.3,68.38,0.91,0.23,883,1.3,99,2.1,18.3693,14.2561 +2012,8,31,0,30,26,1.78,0.059000000000000004,0.58,39,533,125,0,1,6.2,39,533,0,125,0.277,28.32,80.74,0.9,0.23,883,1.3,107,1.3,0.0000,0.0000 +2012,8,31,1,30,23.3,1.79,0.059000000000000004,0.58,0,0,0,0,1,6.800000000000001,0,0,0,0,0.278,34.58,93.10000000000001,0.9,0.23,884,1.3,114,1.3,0.0000,0.0000 +2012,8,31,2,30,22,1.8,0.059000000000000004,0.58,0,0,0,0,0,6.4,0,0,0,0,0.278,36.27,104.96000000000001,0.9,0.23,884,1.3,118,1.4000000000000001,0.0000,0.0000 +2012,8,31,3,30,20.900000000000002,1.81,0.059000000000000004,0.58,0,0,0,0,0,6.2,0,0,0,0,0.279,38.480000000000004,116.04,0.9,0.23,885,1.3,119,1.4000000000000001,0.0000,0.0000 +2012,8,31,4,30,19.8,1.82,0.059000000000000004,0.58,0,0,0,0,0,6.300000000000001,0,0,0,0,0.279,41.34,125.76,0.9,0.23,885,1.3,119,1.3,0.0000,0.0000 +2012,8,31,5,30,18.900000000000002,1.83,0.059000000000000004,0.58,0,0,0,0,0,6.4,0,0,0,0,0.28,44.2,133.17000000000002,0.91,0.23,885,1.3,119,1.3,0.0000,0.0000 +2012,8,31,6,30,18.1,1.84,0.059000000000000004,0.58,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.28,47.050000000000004,137.03,0.91,0.23,886,1.3,119,1.2000000000000002,0.0000,0.0000 +2012,8,31,7,30,17.5,1.85,0.058,0.58,0,0,0,0,0,6.7,0,0,0,0,0.281,49.21,136.36,0.91,0.23,886,1.3,118,1.1,0.0000,0.0000 +2012,8,31,8,30,17.3,1.85,0.058,0.58,0,0,0,0,0,6.800000000000001,0,0,0,0,0.28200000000000003,49.93,131.35,0.91,0.23,886,1.3,119,1,0.0000,0.0000 +2012,8,31,9,30,17.5,1.85,0.058,0.58,0,0,0,0,0,6.800000000000001,0,0,0,0,0.28200000000000003,49.4,123.16,0.91,0.23,886,1.3,124,0.9,0.0000,0.0000 +2012,8,31,10,30,17.8,1.86,0.057,0.58,0,0,0,0,0,6.9,0,0,0,0,0.28300000000000003,48.72,112.98,0.91,0.23,886,1.3,133,0.7000000000000001,0.0000,0.0000 +2012,8,31,11,30,18.1,1.85,0.055,0.58,0,0,0,0,0,6.9,0,0,0,0,0.28300000000000003,48.03,101.63,0.91,0.23,887,1.3,202,0.5,0.0000,0.0000 +2012,8,31,12,30,19,1.85,0.053,0.58,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.28400000000000003,45.87,89.25,0.91,0.23,887,1.3,279,0.5,0.0000,0.0000 +2012,8,31,13,30,21.400000000000002,1.85,0.051000000000000004,0.58,46,641,187,0,0,8.200000000000001,46,641,0,187,0.28400000000000003,42.58,77.23,0.91,0.23,888,1.2000000000000002,297,0.6000000000000001,6.6383,5.0819 +2012,8,31,14,30,25.3,1.85,0.049,0.58,64,822,413,0,0,7.7,64,822,0,413,0.28400000000000003,32.53,64.89,0.91,0.23,888,1.2000000000000002,167,0.8,22.1212,17.2219 +2012,8,31,15,30,28.8,1.85,0.048,0.58,75,908,624,0,0,6.5,75,908,0,624,0.28400000000000003,24.39,52.79,0.91,0.23,888,1.2000000000000002,39,1,31.1620,24.4169 +2012,8,31,16,30,30.6,1.85,0.048,0.58,83,955,798,0,0,4.9,83,955,0,798,0.28400000000000003,19.73,41.45,0.91,0.23,888,1.2000000000000002,50,1.3,35.4165,27.8272 +2012,8,31,17,30,31.900000000000002,1.86,0.048,0.58,88,980,919,0,0,3.8000000000000003,88,980,0,919,0.28300000000000003,16.94,31.900000000000002,0.91,0.23,887,1.2000000000000002,69,1.3,55.7058,43.8251 +2012,8,31,18,30,32.9,1.81,0.053,0.58,93,986,976,0,0,3,93,986,0,976,0.28200000000000003,15.15,26.36,0.91,0.23,887,1.2000000000000002,93,1.3,57.7348,45.4440 +2012,8,31,19,30,33.5,1.82,0.054,0.58,93,984,966,0,0,2.4000000000000004,93,984,0,966,0.28200000000000003,14.1,27.43,0.91,0.23,886,1.2000000000000002,117,1.3,55.4057,43.6071 +2012,8,31,20,30,33.7,1.83,0.054,0.58,89,966,885,0,0,2,89,966,0,885,0.281,13.51,34.5,0.91,0.23,885,1.3,135,1.4000000000000001,53.7195,42.2507 +2012,8,31,21,30,33.4,1.77,0.059000000000000004,0.58,86,933,749,0,0,1.7000000000000002,86,933,0,749,0.28,13.42,44.76,0.91,0.23,885,1.2000000000000002,146,1.5,44.1718,34.6854 +2012,8,31,22,30,32.6,1.78,0.059000000000000004,0.58,77,876,561,0,0,1.4000000000000001,77,876,0,561,0.279,13.77,56.42,0.91,0.23,885,1.2000000000000002,153,1.6,31.7440,24.8399 +2012,8,31,23,30,30.5,1.78,0.058,0.58,62,770,343,0,0,1.2000000000000002,62,770,0,343,0.279,15.32,68.65,0.91,0.23,885,1.2000000000000002,156,1.3,17.9655,13.9388 +2012,9,1,0,30,27,1.77,0.053,0.59,38,540,122,0,0,6.800000000000001,38,540,0,122,0.279,27.67,81,0.91,0.23,885,1.2000000000000002,157,1,0.0000,0.0000 +2012,9,1,1,30,24,1.77,0.052000000000000005,0.59,0,0,0,0,0,6.5,0,0,0,0,0.278,32.480000000000004,93.37,0.91,0.23,886,1.2000000000000002,159,1.2000000000000002,0.0000,0.0000 +2012,9,1,2,30,22.6,1.77,0.051000000000000004,0.59,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.278,33.230000000000004,105.25,0.91,0.23,887,1.1,160,1.3,0.0000,0.0000 +2012,9,1,3,30,21.6,1.77,0.05,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.278,34.06,116.36,0.91,0.23,887,1.1,161,1.4000000000000001,0.0000,0.0000 +2012,9,1,4,30,20.700000000000003,1.76,0.05,0.59,0,0,0,0,0,4.800000000000001,0,0,0,0,0.278,35.28,126.10000000000001,0.91,0.23,887,1.1,164,1.4000000000000001,0.0000,0.0000 +2012,9,1,5,30,20,1.76,0.051000000000000004,0.59,0,0,0,0,1,4.7,0,0,0,0,0.278,36.63,133.53,0.91,0.23,887,1.1,167,1.4000000000000001,0.0000,0.0000 +2012,9,1,6,30,19.200000000000003,1.75,0.051000000000000004,0.59,0,0,0,0,0,4.800000000000001,0,0,0,0,0.277,38.65,137.39000000000001,0.91,0.23,887,1.2000000000000002,172,1.4000000000000001,0.0000,0.0000 +2012,9,1,7,30,18.5,1.75,0.051000000000000004,0.59,0,0,0,0,0,4.9,0,0,0,0,0.278,40.69,136.69,0.92,0.23,887,1.2000000000000002,178,1.3,0.0000,0.0000 +2012,9,1,8,30,17.900000000000002,1.74,0.052000000000000005,0.59,0,0,0,0,0,5,0,0,0,0,0.278,42.54,131.63,0.92,0.23,887,1.2000000000000002,186,1.3,0.0000,0.0000 +2012,9,1,9,30,17.400000000000002,1.74,0.052000000000000005,0.59,0,0,0,0,0,5,0,0,0,0,0.278,44.06,123.39,0.92,0.23,887,1.2000000000000002,194,1.2000000000000002,0.0000,0.0000 +2012,9,1,10,30,16.900000000000002,1.73,0.052000000000000005,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.278,45.58,113.17,0.92,0.23,887,1.2000000000000002,200,1.2000000000000002,0.0000,0.0000 +2012,9,1,11,30,16.6,1.73,0.052000000000000005,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.278,46.660000000000004,101.79,0.92,0.23,888,1.2000000000000002,204,1.2000000000000002,0.0000,0.0000 +2012,9,1,12,30,18.3,1.73,0.053,0.59,0,0,0,0,0,5.4,0,0,0,0,0.277,42.61,89.38,0.92,0.23,888,1.3,208,1.4000000000000001,0.0000,0.0000 +2012,9,1,13,30,21.8,1.73,0.053,0.59,46,630,184,0,0,6.300000000000001,46,630,0,184,0.278,36.69,77.37,0.92,0.23,888,1.3,210,1.8,8.9878,6.8789 +2012,9,1,14,30,26.3,1.73,0.054,0.59,66,807,407,0,0,6.5,66,807,0,407,0.278,28.3,65.03,0.93,0.23,889,1.4000000000000001,201,2.2,22.0467,17.1621 +2012,9,1,15,30,30.5,1.72,0.056,0.59,79,889,615,0,0,5.7,79,889,0,615,0.278,20.96,52.95,0.93,0.23,889,1.5,190,2.5,35.6568,27.9373 +2012,9,1,16,30,32.7,1.72,0.059000000000000004,0.59,89,932,785,0,0,4.7,89,932,0,785,0.278,17.3,41.64,0.93,0.23,889,1.6,188,2.5,47.3171,37.1764 +2012,9,1,17,30,34,1.71,0.063,0.59,96,955,904,0,0,4.9,96,955,0,904,0.279,16.240000000000002,32.17,0.9400000000000001,0.23,888,1.6,187,2.5,55.5615,43.7104 +2012,9,1,18,30,34.9,1.69,0.068,0.59,101,959,958,0,0,5.1000000000000005,101,959,0,958,0.279,15.73,26.71,0.9400000000000001,0.23,888,1.7000000000000002,186,2.6,59.4778,46.8147 +2012,9,1,19,30,35.4,1.68,0.07100000000000001,0.59,102,952,944,0,0,5.4,102,952,0,944,0.279,15.57,27.8,0.9400000000000001,0.23,887,1.8,184,2.6,58.7876,46.2675 +2012,9,1,20,30,35.5,1.67,0.074,0.59,101,931,865,0,0,5.6000000000000005,101,931,0,865,0.279,15.69,34.84,0.9500000000000001,0.23,886,1.9000000000000001,182,2.7,53.2659,41.8923 +2012,9,1,21,30,35.2,1.6500000000000001,0.081,0.59,97,891,727,0,0,5.7,97,891,0,727,0.279,16.07,45.06,0.9500000000000001,0.23,886,1.9000000000000001,179,2.8000000000000003,44.0174,34.5621 +2012,9,1,22,30,34.300000000000004,1.6300000000000001,0.08600000000000001,0.59,88,821,539,0,0,5.7,88,821,0,539,0.279,16.96,56.7,0.9500000000000001,0.23,885,2,176,2.9000000000000004,31.5317,24.6708 +2012,9,1,23,30,32.4,1.61,0.093,0.59,73,696,323,0,0,5.9,73,696,0,323,0.279,19.150000000000002,68.92,0.96,0.23,885,2,172,2.4000000000000004,17.7687,13.7820 +2012,9,2,0,30,29,1.59,0.101,0.59,44,423,109,0,0,8.200000000000001,44,423,0,109,0.28,27.13,81.27,0.96,0.23,886,2.1,166,1.7000000000000002,0.0000,0.0000 +2012,9,2,1,30,26.6,1.57,0.11,0.59,0,0,0,0,0,9.1,0,0,0,0,0.28,33.1,93.65,0.96,0.23,886,2.1,165,1.9000000000000001,0.0000,0.0000 +2012,9,2,2,30,26,1.55,0.11900000000000001,0.59,0,0,0,0,0,8.9,0,0,0,0,0.281,34,105.54,0.97,0.23,886,2.2,169,2.5,0.0000,0.0000 +2012,9,2,3,30,25.5,1.52,0.126,0.59,0,0,0,0,0,9.200000000000001,0,0,0,0,0.281,35.64,116.67,0.97,0.23,887,2.2,176,3.1,0.0000,0.0000 +2012,9,2,4,30,25,1.51,0.129,0.59,0,0,0,0,0,9.600000000000001,0,0,0,0,0.281,37.82,126.44,0.97,0.23,887,2.3000000000000003,183,3.5,0.0000,0.0000 +2012,9,2,5,30,24.400000000000002,1.5,0.128,0.59,0,0,0,0,0,10.200000000000001,0,0,0,0,0.281,40.64,133.9,0.97,0.23,887,2.3000000000000003,190,3.6,0.0000,0.0000 +2012,9,2,6,30,23.700000000000003,1.49,0.124,0.59,0,0,0,0,0,10.700000000000001,0,0,0,0,0.281,44.03,137.77,0.97,0.23,887,2.3000000000000003,196,3.6,0.0000,0.0000 +2012,9,2,7,30,23.1,1.48,0.121,0.59,0,0,0,0,0,11.3,0,0,0,0,0.281,47.43,137.03,0.97,0.23,887,2.3000000000000003,200,3.5,0.0000,0.0000 +2012,9,2,8,30,22.5,1.47,0.11800000000000001,0.59,0,0,0,0,0,11.8,0,0,0,0,0.28,50.870000000000005,131.92000000000002,0.97,0.23,886,2.3000000000000003,203,3.5,0.0000,0.0000 +2012,9,2,9,30,21.8,1.46,0.113,0.59,0,0,0,0,1,12.3,0,0,0,0,0.28,54.67,123.62,0.96,0.23,886,2.2,205,3.4000000000000004,0.0000,0.0000 +2012,9,2,10,30,21.200000000000003,1.46,0.107,0.59,0,0,0,0,1,12.600000000000001,0,0,0,0,0.279,58.03,113.36,0.96,0.23,887,2.2,207,3.3000000000000003,0.0000,0.0000 +2012,9,2,11,30,20.6,1.46,0.10200000000000001,0.59,0,0,0,0,0,12.8,0,0,0,0,0.279,60.83,101.95,0.96,0.23,887,2.1,208,3.2,0.0000,0.0000 +2012,9,2,12,30,21.200000000000003,1.46,0.097,0.59,0,0,0,0,1,12.8,0,0,0,0,0.278,58.870000000000005,89.51,0.96,0.23,887,2.1,209,3.5,0.0000,0.0000 +2012,9,2,13,30,23.900000000000002,1.45,0.093,0.59,55,539,172,0,0,13,55,539,0,172,0.278,50.38,77.5,0.96,0.23,888,2,209,3.9000000000000004,8.8360,6.7609 +2012,9,2,14,30,28.1,1.45,0.088,0.59,79,744,391,0,0,13.200000000000001,79,744,0,391,0.278,39.980000000000004,65.17,0.96,0.23,888,2,205,4.1000000000000005,21.7040,16.8933 +2012,9,2,15,30,31.700000000000003,1.46,0.084,0.59,92,845,599,0,0,11.700000000000001,92,845,0,599,0.278,29.36,53.11,0.96,0.23,888,2,197,4.1000000000000005,35.1190,27.5144 +2012,9,2,16,30,33.6,1.46,0.081,0.59,100,900,771,0,0,10.100000000000001,100,900,0,771,0.278,23.69,41.84,0.9500000000000001,0.23,887,2,188,3.9000000000000004,46.5241,36.5521 +2012,9,2,17,30,34.9,1.46,0.078,0.59,105,931,890,0,0,9.3,105,931,0,890,0.278,20.88,32.43,0.9500000000000001,0.23,887,2,182,3.9000000000000004,54.6304,42.9767 +2012,9,2,18,30,35.9,1.49,0.091,0.59,114,932,944,0,0,8.700000000000001,114,932,0,944,0.278,19.09,27.05,0.9500000000000001,0.23,886,2,179,3.9000000000000004,58.3551,45.9298 +2012,9,2,19,30,36.300000000000004,1.47,0.08700000000000001,0.59,111,931,932,0,0,8.5,111,931,0,932,0.279,18.400000000000002,28.18,0.9500000000000001,0.23,885,2.1,178,3.9000000000000004,57.4205,45.1902 +2012,9,2,20,30,36.4,1.46,0.084,0.59,106,916,855,0,0,8.5,106,916,0,855,0.279,18.21,35.18,0.9500000000000001,0.23,884,2.1,176,3.7,52.0295,40.9182 +2012,9,2,21,30,36,1.45,0.091,0.59,102,872,715,0,0,8.5,102,872,0,715,0.279,18.72,45.37,0.9500000000000001,0.23,884,2.2,174,3.6,42.6871,33.5154 +2012,9,2,22,30,35.1,1.44,0.088,0.59,89,811,531,0,0,8.700000000000001,89,811,0,531,0.279,19.900000000000002,56.980000000000004,0.9500000000000001,0.23,884,2.2,172,3.5,30.2529,23.6674 +2012,9,2,23,30,33.300000000000004,1.43,0.084,0.59,70,696,318,0,0,8.9,70,696,0,318,0.28,22.34,69.19,0.9500000000000001,0.23,884,2.2,168,2.8000000000000003,16.6937,12.9442 +2012,9,3,0,30,30.1,1.42,0.081,0.59,41,436,105,0,0,10,41,436,0,105,0.28,28.810000000000002,81.54,0.9500000000000001,0.23,884,2.3000000000000003,163,2,0.0000,0.0000 +2012,9,3,1,30,27.700000000000003,1.42,0.077,0.59,0,0,0,0,0,11,0,0,0,0,0.28,35.4,93.92,0.9500000000000001,0.23,884,2.3000000000000003,162,2,0.0000,0.0000 +2012,9,3,2,30,27,1.42,0.073,0.59,0,0,0,0,0,11.100000000000001,0,0,0,0,0.28,37.13,105.83,0.9500000000000001,0.23,885,2.3000000000000003,165,2.6,0.0000,0.0000 +2012,9,3,3,30,26.400000000000002,1.42,0.07,0.59,0,0,0,0,0,11.3,0,0,0,0,0.28,38.92,116.98,0.9500000000000001,0.23,885,2.3000000000000003,171,3.1,0.0000,0.0000 +2012,9,3,4,30,25.700000000000003,1.43,0.068,0.59,0,0,0,0,0,11.5,0,0,0,0,0.281,41,126.78,0.9500000000000001,0.23,885,2.3000000000000003,178,3.4000000000000004,0.0000,0.0000 +2012,9,3,5,30,25,1.43,0.067,0.59,0,0,0,0,1,11.700000000000001,0,0,0,0,0.281,43.37,134.27,0.9500000000000001,0.23,885,2.3000000000000003,184,3.4000000000000004,0.0000,0.0000 +2012,9,3,6,30,24.3,1.43,0.067,0.59,0,0,0,0,0,12.100000000000001,0,0,0,0,0.281,46.37,138.14000000000001,0.9500000000000001,0.23,885,2.4000000000000004,189,3.4000000000000004,0.0000,0.0000 +2012,9,3,7,30,23.8,1.42,0.069,0.59,0,0,0,0,0,12.600000000000001,0,0,0,0,0.281,49.63,137.38,0.9500000000000001,0.23,885,2.4000000000000004,194,3.4000000000000004,0.0000,0.0000 +2012,9,3,8,30,23.3,1.4000000000000001,0.073,0.59,0,0,0,0,0,13.3,0,0,0,0,0.28,53.51,132.21,0.96,0.23,885,2.5,197,3.5,0.0000,0.0000 +2012,9,3,9,30,22.900000000000002,1.36,0.077,0.59,0,0,0,0,0,14,0,0,0,0,0.28,57.4,123.85000000000001,0.96,0.23,886,2.6,199,3.5,0.0000,0.0000 +2012,9,3,10,30,22.5,1.33,0.081,0.59,0,0,0,0,0,14.600000000000001,0,0,0,0,0.28,61.01,113.54,0.96,0.23,886,2.7,199,3.2,0.0000,0.0000 +2012,9,3,11,30,22.200000000000003,1.32,0.083,0.59,0,0,0,0,0,15,0,0,0,0,0.28,63.76,102.11,0.96,0.23,886,2.7,200,2.7,0.0000,0.0000 +2012,9,3,12,30,22.900000000000002,1.32,0.082,0.59,0,0,0,0,0,15.3,0,0,0,0,0.279,62.18,89.63,0.96,0.23,887,2.7,200,2.8000000000000003,0.0000,0.0000 +2012,9,3,13,30,25,1.33,0.081,0.59,52,535,166,0,0,15.5,52,535,0,166,0.279,55.410000000000004,77.64,0.96,0.23,887,2.7,200,3,8.2533,6.3136 +2012,9,3,14,30,28,1.34,0.079,0.59,75,736,382,0,0,15.5,75,736,0,382,0.279,46.63,65.31,0.96,0.23,887,2.7,195,2.8000000000000003,20.8290,16.2104 +2012,9,3,15,30,31,1.36,0.077,0.59,88,834,587,0,0,14.5,88,834,0,587,0.278,36.85,53.27,0.9500000000000001,0.23,887,2.7,176,2.5,34.1822,26.7790 +2012,9,3,16,30,33,1.37,0.077,0.59,98,886,756,0,1,12.8,98,886,0,756,0.277,29.28,42.04,0.96,0.23,886,2.7,154,2.3000000000000003,45.6712,35.8808 +2012,9,3,17,30,34.5,1.36,0.077,0.59,104,915,874,0,0,11.8,104,915,0,874,0.277,25.35,32.7,0.96,0.23,886,2.7,143,2.3000000000000003,53.7612,42.2918 +2012,9,3,18,30,35.5,1.37,0.079,0.59,107,925,929,0,0,11.4,107,925,0,929,0.276,23.330000000000002,27.400000000000002,0.96,0.23,885,2.7,141,2.3000000000000003,57.4773,45.2376 +2012,9,3,19,30,36.2,1.36,0.08,0.59,107,922,917,0,0,11.200000000000001,107,922,0,917,0.275,22.07,28.55,0.96,0.23,884,2.7,142,2.3000000000000003,56.6615,44.5914 +2012,9,3,20,30,36.5,1.36,0.08,0.59,104,905,840,0,0,11,104,905,0,840,0.274,21.44,35.52,0.96,0.23,884,2.7,145,2.2,51.3952,40.4177 +2012,9,3,21,30,36.300000000000004,1.36,0.08,0.59,97,870,704,0,0,10.700000000000001,97,870,0,704,0.274,21.3,45.67,0.96,0.23,883,2.7,148,2.2,41.9440,32.9298 +2012,9,3,22,30,35.6,1.35,0.082,0.59,86,806,522,0,0,10.4,86,806,0,522,0.273,21.62,57.26,0.96,0.23,883,2.6,149,2.1,29.7618,23.2803 +2012,9,3,23,30,33.9,1.35,0.083,0.59,70,684,310,0,0,10.100000000000001,70,684,0,310,0.273,23.31,69.46000000000001,0.96,0.23,883,2.6,147,1.7000000000000002,16.3967,12.7100 +2012,9,4,0,30,30.8,1.35,0.084,0.59,40,414,99,0,0,11.700000000000001,40,414,0,99,0.273,30.92,81.81,0.96,0.23,883,2.6,143,1.2000000000000002,0.0000,0.0000 +2012,9,4,1,30,28.400000000000002,1.35,0.084,0.59,0,0,0,0,0,12.100000000000001,0,0,0,0,0.273,36.52,94.2,0.96,0.23,884,2.6,141,1.3,0.0000,0.0000 +2012,9,4,2,30,27.400000000000002,1.36,0.083,0.59,0,0,0,0,0,11.9,0,0,0,0,0.273,38.2,106.13,0.96,0.23,884,2.6,142,1.5,0.0000,0.0000 +2012,9,4,3,30,26.5,1.36,0.082,0.59,0,0,0,0,0,12.100000000000001,0,0,0,0,0.273,40.9,117.3,0.96,0.23,884,2.6,145,1.6,0.0000,0.0000 +2012,9,4,4,30,25.700000000000003,1.37,0.08,0.59,0,0,0,0,0,12.5,0,0,0,0,0.273,43.94,127.13000000000001,0.9500000000000001,0.23,884,2.6,150,1.7000000000000002,0.0000,0.0000 +2012,9,4,5,30,24.900000000000002,1.37,0.08,0.59,0,0,0,0,0,12.9,0,0,0,0,0.272,47.33,134.64000000000001,0.9500000000000001,0.23,884,2.7,158,1.7000000000000002,0.0000,0.0000 +2012,9,4,6,30,24.3,1.37,0.08,0.59,0,0,0,0,0,13.4,0,0,0,0,0.272,50.64,138.51,0.96,0.23,884,2.7,170,1.8,0.0000,0.0000 +2012,9,4,7,30,23.8,1.36,0.083,0.59,0,0,0,0,0,13.9,0,0,0,0,0.272,53.84,137.72,0.96,0.23,884,2.8000000000000003,181,2,0.0000,0.0000 +2012,9,4,8,30,23.3,1.34,0.08700000000000001,0.59,0,0,0,0,0,14.3,0,0,0,0,0.272,57.07,132.49,0.96,0.23,884,2.9000000000000004,186,2,0.0000,0.0000 +2012,9,4,9,30,22.700000000000003,1.33,0.089,0.59,0,0,0,0,0,14.700000000000001,0,0,0,0,0.273,60.56,124.08,0.96,0.23,884,2.9000000000000004,188,1.8,0.0000,0.0000 +2012,9,4,10,30,22,1.33,0.089,0.59,0,0,0,0,0,14.9,0,0,0,0,0.273,64.24,113.73,0.96,0.23,885,2.9000000000000004,190,1.5,0.0000,0.0000 +2012,9,4,11,30,21.400000000000002,1.34,0.08700000000000001,0.59,0,0,0,0,0,15.100000000000001,0,0,0,0,0.273,67.23,102.26,0.96,0.23,885,2.9000000000000004,192,1.2000000000000002,0.0000,0.0000 +2012,9,4,12,30,22.5,1.35,0.08600000000000001,0.59,0,0,0,0,0,15.200000000000001,0,0,0,0,0.273,63.18,89.76,0.96,0.23,885,2.9000000000000004,196,1.4000000000000001,0.0000,0.0000 +2012,9,4,13,30,25.3,1.36,0.08600000000000001,0.59,53,521,163,0,0,15.200000000000001,53,521,0,163,0.274,53.57,77.77,0.96,0.23,885,2.9000000000000004,200,1.5,7.9590,6.0869 +2012,9,4,14,30,29.1,1.37,0.085,0.59,77,724,377,0,0,15.200000000000001,77,724,0,377,0.274,42.910000000000004,65.45,0.96,0.23,886,2.9000000000000004,180,1.1,20.3283,15.8189 +2012,9,4,15,30,32.9,1.3800000000000001,0.08600000000000001,0.59,92,821,581,0,0,14,92,821,0,581,0.274,31.89,53.43,0.96,0.23,885,2.9000000000000004,135,1.3,33.4746,26.2232 +2012,9,4,16,30,35.1,1.37,0.08700000000000001,0.59,102,872,748,0,0,12.700000000000001,102,872,0,748,0.274,25.91,42.24,0.96,0.23,885,3,116,1.8,44.7598,35.1635 +2012,9,4,17,30,36.4,1.37,0.088,0.59,109,900,864,0,0,12.4,109,900,0,864,0.274,23.62,32.97,0.96,0.23,885,3,122,2,52.7708,41.5114 +2012,9,4,18,30,37.4,1.41,0.08,0.59,107,917,918,0,0,12.200000000000001,107,917,0,918,0.275,22.16,27.76,0.96,0.23,884,3.1,130,2,56.5382,44.4972 +2012,9,4,19,30,37.800000000000004,1.4000000000000001,0.082,0.59,108,913,907,0,0,12.100000000000001,108,913,0,907,0.275,21.5,28.93,0.96,0.23,883,3.1,135,2,55.7211,43.8500 +2012,9,4,20,30,37.9,1.4000000000000001,0.08600000000000001,0.59,106,891,828,0,0,12,106,891,0,828,0.275,21.23,35.87,0.96,0.23,882,3.2,138,1.9000000000000001,50.4608,39.6813 +2012,9,4,21,30,37.5,1.44,0.078,0.59,95,862,694,0,0,11.8,95,862,0,694,0.275,21.48,45.980000000000004,0.96,0.23,882,3.2,137,1.8,41.2616,32.3920 +2012,9,4,22,30,36.5,1.44,0.079,0.59,84,796,511,0,0,11.700000000000001,84,796,0,511,0.275,22.44,57.550000000000004,0.96,0.23,882,3.2,137,1.9000000000000001,29.2154,22.8500 +2012,9,4,23,30,34.800000000000004,1.44,0.079,0.59,67,675,301,0,0,11.600000000000001,67,675,0,301,0.275,24.6,69.73,0.96,0.23,882,3.2,136,1.6,15.9464,12.3570 +2012,9,5,0,30,32,1.45,0.079,0.59,38,404,94,0,3,13.9,63,4,0,64,0.276,33.36,82.08,0.96,0.24,882,3.2,136,1.2000000000000002,0.0000,0.0000 +2012,9,5,1,30,29.6,1.46,0.078,0.59,0,0,0,0,1,14.9,0,0,0,0,0.276,40.85,94.48,0.96,0.24,882,3.2,138,1.5,0.0000,0.0000 +2012,9,5,2,30,28.6,1.46,0.077,0.59,0,0,0,0,4,14.600000000000001,0,0,0,0,0.276,42.5,106.42,0.96,0.24,883,3.2,146,2,0.0000,0.0000 +2012,9,5,3,30,27.8,1.46,0.077,0.59,0,0,0,0,8,14.4,0,0,0,0,0.276,43.94,117.62,0.96,0.24,883,3.2,156,2.5,0.0000,0.0000 +2012,9,5,4,30,27.200000000000003,1.44,0.079,0.59,0,0,0,0,8,14.3,0,0,0,0,0.276,45.26,127.47,0.96,0.24,883,3.2,166,2.9000000000000004,0.0000,0.0000 +2012,9,5,5,30,26.6,1.42,0.08600000000000001,0.59,0,0,0,0,8,14.200000000000001,0,0,0,0,0.276,46.53,135.01,0.96,0.24,883,3.2,175,3.1,0.0000,0.0000 +2012,9,5,6,30,26.200000000000003,1.3900000000000001,0.1,0.59,0,0,0,0,8,14.100000000000001,0,0,0,0,0.275,47.36,138.89000000000001,0.96,0.24,883,3.2,181,3.2,0.0000,0.0000 +2012,9,5,7,30,25.900000000000002,1.35,0.12,0.59,0,0,0,0,8,14.200000000000001,0,0,0,0,0.275,48.5,138.06,0.96,0.24,883,3.2,185,3.4000000000000004,0.0000,0.0000 +2012,9,5,8,30,25.5,1.33,0.139,0.59,0,0,0,0,3,14.600000000000001,0,0,0,0,0.275,50.910000000000004,132.78,0.97,0.24,883,3.3000000000000003,189,3.3000000000000003,0.0000,0.0000 +2012,9,5,9,30,24.8,1.33,0.145,0.59,0,0,0,0,1,15.100000000000001,0,0,0,0,0.275,54.7,124.31,0.97,0.24,882,3.2,191,2.9000000000000004,0.0000,0.0000 +2012,9,5,10,30,23.8,1.35,0.14100000000000001,0.59,0,0,0,0,4,15.4,0,0,0,0,0.275,59.31,113.92,0.96,0.24,883,3.2,192,2.2,0.0000,0.0000 +2012,9,5,11,30,22.900000000000002,1.36,0.133,0.59,0,0,0,0,4,15.5,0,0,0,0,0.275,63.14,102.42,0.96,0.24,883,3.2,193,1.6,0.0000,0.0000 +2012,9,5,12,30,23.5,1.37,0.125,0.59,0,0,0,7,7,15.5,0,0,7,0,0.275,60.94,89.88,0.96,0.24,883,3.1,198,1.8,0.0000,0.0000 +2012,9,5,13,30,26.1,1.3800000000000001,0.11800000000000001,0.59,58,470,156,0,1,15.5,58,470,0,156,0.275,51.99,77.91,0.96,0.24,883,3.1,207,2.3000000000000003,7.8097,5.9713 +2012,9,5,14,30,29.8,1.4000000000000001,0.112,0.59,85,688,369,0,0,15.3,85,688,0,369,0.275,41.4,65.59,0.96,0.24,884,3.1,215,2.2,20.0411,15.5935 +2012,9,5,15,30,33.4,1.41,0.106,0.59,100,797,573,0,0,14.100000000000001,100,797,0,573,0.275,31.21,53.59,0.96,0.24,884,3.1,214,1.9000000000000001,33.1098,25.9359 +2012,9,5,16,30,35.800000000000004,1.41,0.10400000000000001,0.59,110,855,741,0,0,13,110,855,0,741,0.275,25.43,42.45,0.96,0.24,884,3.1,200,1.6,44.2633,34.7722 +2012,9,5,17,30,37.4,1.41,0.107,0.59,118,882,855,0,0,12.3,118,882,0,855,0.275,22.22,33.25,0.9500000000000001,0.24,883,3.2,182,1.5,52.1431,41.0164 +2012,9,5,18,30,38.400000000000006,1.47,0.066,0.59,100,924,915,0,0,11.8,100,924,0,915,0.274,20.45,28.11,0.9500000000000001,0.24,882,3.3000000000000003,167,1.7000000000000002,55.8420,43.9481 +2012,9,5,19,30,38.7,1.43,0.076,0.59,105,912,900,0,1,11.600000000000001,105,912,0,900,0.274,19.79,29.310000000000002,0.96,0.24,882,3.4000000000000004,157,1.8,55.0841,43.3472 +2012,9,5,20,30,37.9,1.36,0.095,0.59,111,878,819,0,3,11.4,401,44,0,436,0.274,20.42,36.21,0.97,0.24,881,3.5,149,2,49.7063,39.0862 +2012,9,5,21,30,36.300000000000004,1.34,0.10400000000000001,0.59,107,830,681,0,3,11.700000000000001,344,66,0,390,0.274,22.68,46.29,0.97,0.24,881,3.6,140,2.3000000000000003,40.6372,31.8996 +2012,9,5,22,30,34.4,1.33,0.113,0.59,97,750,497,0,3,12.4,278,243,0,408,0.274,26.43,57.84,0.97,0.24,882,3.7,132,2.6,28.5568,22.3319 +2012,9,5,23,30,32.1,1.33,0.114,0.59,77,616,288,0,4,13.700000000000001,76,0,0,76,0.274,32.85,70.01,0.97,0.24,882,3.8000000000000003,124,2.6,15.4465,11.9657 +2012,9,6,0,30,29.5,1.35,0.112,0.59,41,335,86,7,8,15.9,31,1,7,31,0.274,43.93,82.35000000000001,0.97,0.24,883,3.8000000000000003,118,2.8000000000000003,0.0000,0.0000 +2012,9,6,1,30,27.3,1.4000000000000001,0.10200000000000001,0.59,0,0,0,0,8,17.3,0,0,0,0,0.274,54.38,94.77,0.97,0.24,884,3.7,118,3.2,0.0000,0.0000 +2012,9,6,2,30,25.8,1.44,0.092,0.59,0,0,0,0,4,17.8,0,0,0,0,0.274,61.19,106.72,0.96,0.24,885,3.6,122,3.6,0.0000,0.0000 +2012,9,6,3,30,24.5,1.44,0.088,0.59,0,0,0,0,7,17.900000000000002,0,0,0,0,0.274,66.78,117.94,0.96,0.24,885,3.5,130,3.6,0.0000,0.0000 +2012,9,6,4,30,23.3,1.44,0.085,0.59,0,0,0,0,7,18,0,0,0,0,0.274,72.15,127.82000000000001,0.96,0.24,885,3.4000000000000004,135,3.2,0.0000,0.0000 +2012,9,6,5,30,22.400000000000002,1.43,0.088,0.59,0,0,0,0,4,18.1,0,0,0,0,0.274,76.64,135.39000000000001,0.96,0.24,885,3.4000000000000004,133,2.8000000000000003,0.0000,0.0000 +2012,9,6,6,30,21.6,1.41,0.093,0.59,0,0,0,0,7,18.1,0,0,0,0,0.274,80.62,139.27,0.96,0.24,886,3.5,128,2.6,0.0000,0.0000 +2012,9,6,7,30,21,1.3900000000000001,0.10200000000000001,0.59,0,0,0,0,8,18.1,0,0,0,0,0.274,83.29,138.41,0.96,0.24,886,3.5,128,2.5,0.0000,0.0000 +2012,9,6,8,30,20.5,1.3800000000000001,0.109,0.59,0,0,0,0,7,18,0,0,0,0,0.273,85.35000000000001,133.06,0.96,0.24,886,3.5,130,2.3000000000000003,0.0000,0.0000 +2012,9,6,9,30,20.1,1.3800000000000001,0.109,0.59,0,0,0,0,7,17.8,0,0,0,0,0.274,86.61,124.54,0.96,0.24,886,3.4000000000000004,131,1.8,0.0000,0.0000 +2012,9,6,10,30,19.700000000000003,1.3900000000000001,0.105,0.59,0,0,0,0,7,17.6,0,0,0,0,0.274,87.85000000000001,114.11,0.96,0.24,886,3.4000000000000004,125,1.3,0.0000,0.0000 +2012,9,6,11,30,19.400000000000002,1.4000000000000001,0.101,0.59,0,0,0,0,7,17.5,0,0,0,0,0.275,88.63,102.58,0.96,0.24,886,3.3000000000000003,114,1,0.0000,0.0000 +2012,9,6,12,30,20,1.41,0.096,0.59,0,0,0,0,8,17.400000000000002,0,0,0,0,0.275,84.77,90,0.96,0.24,886,3.2,102,1.5,0.0000,0.0000 +2012,9,6,13,30,22.5,1.42,0.092,0.59,53,502,157,7,7,17.3,87,22,7,92,0.275,72.63,78.04,0.96,0.24,886,3.2,107,2.1,7.4689,5.7093 +2012,9,6,14,30,26.400000000000002,1.43,0.088,0.59,77,713,370,0,0,16.6,77,713,0,370,0.276,54.93,65.73,0.96,0.24,886,3.2,138,2.4000000000000004,19.5950,15.2446 +2012,9,6,15,30,30,1.44,0.08600000000000001,0.59,92,816,574,0,0,14.700000000000001,92,816,0,574,0.276,39.480000000000004,53.76,0.96,0.24,887,3.1,165,2.7,32.6313,25.5597 +2012,9,6,16,30,32.2,1.44,0.085,0.59,101,871,742,0,0,14,101,871,0,742,0.276,33.21,42.660000000000004,0.96,0.24,886,3.1,170,2.9000000000000004,43.8251,34.4267 +2012,9,6,17,30,33.800000000000004,1.44,0.08600000000000001,0.59,108,898,856,0,0,13.600000000000001,108,898,0,856,0.275,29.560000000000002,33.53,0.96,0.24,886,3.2,169,3.1,51.5750,40.5684 +2012,9,6,18,30,34.800000000000004,1.6400000000000001,0.066,0.59,99,926,914,0,0,13.200000000000001,99,926,0,914,0.275,27.3,28.47,0.9500000000000001,0.24,885,3.2,168,3.3000000000000003,55.6333,43.7825 +2012,9,6,19,30,35.4,1.6500000000000001,0.067,0.59,99,923,901,0,0,12.9,99,923,0,901,0.275,25.84,29.69,0.9500000000000001,0.24,884,3.2,168,3.6,54.6293,42.9879 +2012,9,6,20,30,35.4,1.67,0.067,0.59,96,906,824,0,0,12.600000000000001,96,906,0,824,0.275,25.28,36.56,0.9500000000000001,0.24,884,3.2,168,3.9000000000000004,26.1564,20.5670 +2012,9,6,21,30,34.9,1.75,0.056,0.59,84,883,691,0,0,12.3,84,883,0,691,0.275,25.5,46.61,0.9500000000000001,0.24,883,3.1,169,4.2,22.8147,17.9079 +2012,9,6,22,30,33.9,1.79,0.055,0.59,74,822,508,0,0,12,74,822,0,508,0.276,26.52,58.13,0.9500000000000001,0.24,883,3.1,171,4.4,22.7660,17.8009 +2012,9,6,23,30,32.2,1.83,0.053,0.59,58,710,298,0,0,11.700000000000001,58,710,0,298,0.276,28.580000000000002,70.29,0.9500000000000001,0.24,883,3,173,3.9000000000000004,3.8904,3.0126 +2012,9,7,0,30,29.400000000000002,1.85,0.051000000000000004,0.59,33,447,90,0,0,11.8,33,447,0,90,0.277,33.81,82.63,0.9500000000000001,0.23,883,2.9000000000000004,174,2.9000000000000004,0.0000,0.0000 +2012,9,7,1,30,27.1,1.84,0.05,0.59,0,0,0,0,0,12.4,0,0,0,0,0.277,40.08,95.05,0.9500000000000001,0.23,884,2.9000000000000004,175,2.3000000000000003,0.0000,0.0000 +2012,9,7,2,30,26.1,1.79,0.052000000000000005,0.59,0,0,0,0,0,12.200000000000001,0,0,0,0,0.278,41.99,107.02,0.9500000000000001,0.23,884,2.9000000000000004,177,2.1,0.0000,0.0000 +2012,9,7,3,30,25.200000000000003,1.71,0.055,0.59,0,0,0,0,1,12,0,0,0,0,0.278,43.81,118.26,0.9500000000000001,0.23,884,2.8000000000000003,180,2,0.0000,0.0000 +2012,9,7,4,30,24.5,1.62,0.06,0.59,0,0,0,0,3,11.8,0,0,0,0,0.279,45.13,128.17000000000002,0.9500000000000001,0.23,884,2.8000000000000003,186,2.1,0.0000,0.0000 +2012,9,7,5,30,24,1.53,0.066,0.59,0,0,0,0,0,11.600000000000001,0,0,0,0,0.278,45.85,135.76,0.9400000000000001,0.23,884,2.8000000000000003,193,2.2,0.0000,0.0000 +2012,9,7,6,30,23.6,1.47,0.07200000000000001,0.59,0,0,0,0,0,11.4,0,0,0,0,0.278,46.39,139.65,0.9400000000000001,0.23,884,2.8000000000000003,201,2.6,0.0000,0.0000 +2012,9,7,7,30,23.200000000000003,1.43,0.076,0.59,0,0,0,0,3,11.3,0,0,0,0,0.278,46.97,138.75,0.9400000000000001,0.23,884,2.8000000000000003,208,3.1,0.0000,0.0000 +2012,9,7,8,30,22.900000000000002,1.41,0.078,0.59,0,0,0,0,1,11,0,0,0,0,0.277,47.18,133.35,0.9400000000000001,0.23,883,2.8000000000000003,214,3.4000000000000004,0.0000,0.0000 +2012,9,7,9,30,22.400000000000002,1.42,0.077,0.59,0,0,0,0,1,10.9,0,0,0,0,0.277,48.26,124.77,0.9400000000000001,0.23,883,2.8000000000000003,218,3.2,0.0000,0.0000 +2012,9,7,10,30,21.8,1.43,0.073,0.59,0,0,0,0,0,10.9,0,0,0,0,0.278,49.85,114.29,0.9400000000000001,0.23,883,2.8000000000000003,221,2.7,0.0000,0.0000 +2012,9,7,11,30,21.200000000000003,1.45,0.069,0.59,0,0,0,0,0,10.8,0,0,0,0,0.278,51.61,102.74000000000001,0.9400000000000001,0.23,884,2.8000000000000003,224,2.4000000000000004,0.0000,0.0000 +2012,9,7,12,30,22.1,1.46,0.065,0.59,0,0,0,0,0,10.8,0,0,0,0,0.278,48.85,90.12,0.9400000000000001,0.23,884,2.8000000000000003,228,2.8000000000000003,0.0000,0.0000 +2012,9,7,13,30,24.700000000000003,1.47,0.062,0.59,46,554,160,0,0,11,46,554,0,160,0.279,42.2,78.18,0.9400000000000001,0.23,884,2.8000000000000003,233,3.1,4.4020,3.3641 +2012,9,7,14,30,28.700000000000003,1.48,0.06,0.59,67,752,374,0,0,11.600000000000001,67,752,0,374,0.279,34.68,65.88,0.9400000000000001,0.23,884,2.9000000000000004,243,3.3000000000000003,19.6272,15.2678 +2012,9,7,15,30,32.4,1.49,0.06,0.59,80,846,578,0,0,11.700000000000001,80,846,0,578,0.279,28.29,53.92,0.9400000000000001,0.23,885,2.9000000000000004,263,3.5,32.6641,25.5838 +2012,9,7,16,30,34.2,1.52,0.061,0.59,89,894,744,0,2,11,353,372,0,626,0.28,24.46,42.87,0.9400000000000001,0.23,885,3,287,3.3000000000000003,43.8600,34.4528 +2012,9,7,17,30,35.2,1.54,0.063,0.59,95,920,860,0,8,10.4,260,577,0,739,0.279,22.11,33.81,0.9500000000000001,0.23,884,3,313,3.3000000000000003,51.6102,40.5947 +2012,9,7,18,30,35.6,1.53,0.061,0.59,97,933,914,0,0,9.9,97,933,0,914,0.279,20.98,28.830000000000002,0.9500000000000001,0.23,884,3,340,3.7,55.5450,43.7117 +2012,9,7,19,30,35.4,1.54,0.068,0.59,100,923,898,0,0,9.600000000000001,100,923,0,898,0.279,20.77,30.07,0.9500000000000001,0.23,884,3.1,180,4.4,54.6598,43.0103 +2012,9,7,20,30,34.2,1.55,0.075,0.59,99,900,819,0,0,9.4,99,900,0,819,0.279,21.88,36.92,0.9500000000000001,0.23,884,3.1,13,5.4,49.3986,38.8407 +2012,9,7,21,30,32.300000000000004,1.57,0.079,0.59,94,860,682,0,0,9.3,94,860,0,682,0.278,24.23,46.93,0.9500000000000001,0.23,884,3.1,21,6.300000000000001,40.3825,31.6951 +2012,9,7,22,30,29.8,1.61,0.081,0.59,84,791,498,0,0,9.5,84,791,0,498,0.278,28.29,58.42,0.9500000000000001,0.23,885,3.1,27,6.800000000000001,28.3021,22.1266 +2012,9,7,23,30,27.200000000000003,1.6400000000000001,0.08,0.59,66,664,287,0,3,9.600000000000001,181,61,0,201,0.278,33.08,70.57000000000001,0.9500000000000001,0.23,886,3.2,32,6.9,15.2160,11.7789 +2012,9,8,0,30,24.400000000000002,1.6600000000000001,0.081,0.59,35,378,82,0,0,9.600000000000001,35,378,0,82,0.278,39.12,82.9,0.9500000000000001,0.23,887,3.2,36,6.9,0.0000,0.0000 +2012,9,8,1,30,22,1.67,0.089,0.59,0,0,0,0,0,9.700000000000001,0,0,0,0,0.278,45.47,95.34,0.9500000000000001,0.23,888,3.3000000000000003,39,7,0.0000,0.0000 +2012,9,8,2,30,20.200000000000003,1.67,0.10400000000000001,0.59,0,0,0,0,0,9.8,0,0,0,0,0.278,51.14,107.32000000000001,0.9500000000000001,0.23,890,3.4000000000000004,40,7.2,0.0000,0.0000 +2012,9,8,3,30,18.8,1.6500000000000001,0.131,0.59,0,0,0,0,4,9.8,0,0,0,0,0.278,55.94,118.58,0.96,0.23,891,3.5,39,7.300000000000001,0.0000,0.0000 +2012,9,8,4,30,17.8,1.6300000000000001,0.163,0.59,0,0,0,0,4,9.8,0,0,0,0,0.278,59.67,128.52,0.96,0.23,891,3.5,39,7.2,0.0000,0.0000 +2012,9,8,5,30,16.900000000000002,1.61,0.181,0.59,0,0,0,0,4,10,0,0,0,0,0.278,63.800000000000004,136.14000000000001,0.96,0.23,892,3.5,41,6.800000000000001,0.0000,0.0000 +2012,9,8,6,30,16.2,1.56,0.182,0.59,0,0,0,0,4,10.200000000000001,0,0,0,0,0.278,67.61,140.03,0.97,0.23,893,3.5,43,6.2,0.0000,0.0000 +2012,9,8,7,30,15.600000000000001,1.51,0.17200000000000001,0.59,0,0,0,0,4,10.4,0,0,0,0,0.278,71.32000000000001,139.1,0.97,0.23,893,3.5,43,5.6000000000000005,0.0000,0.0000 +2012,9,8,8,30,15,1.49,0.168,0.59,0,0,0,0,4,10.600000000000001,0,0,0,0,0.278,75.16,133.64000000000001,0.97,0.23,894,3.4000000000000004,41,4.9,0.0000,0.0000 +2012,9,8,9,30,14.5,1.54,0.154,0.59,0,0,0,0,4,10.600000000000001,0,0,0,0,0.279,77.62,125,0.97,0.23,894,3.3000000000000003,41,4.5,0.0000,0.0000 +2012,9,8,10,30,14.100000000000001,1.61,0.135,0.59,0,0,0,0,4,10.5,0,0,0,0,0.28,78.92,114.48,0.97,0.23,894,3.2,46,4.4,0.0000,0.0000 +2012,9,8,11,30,13.9,1.6500000000000001,0.12,0.59,0,0,0,0,4,10.3,0,0,0,0,0.281,78.74,102.9,0.96,0.23,894,3,47,3.9000000000000004,0.0000,0.0000 +2012,9,8,12,30,14.3,1.67,0.11,0.59,0,0,0,0,4,10.100000000000001,0,0,0,0,0.28200000000000003,75.82000000000001,90.23,0.96,0.23,894,2.9000000000000004,42,3.2,0.0000,0.0000 +2012,9,8,13,30,15.600000000000001,1.68,0.099,0.59,53,498,154,0,4,9.700000000000001,8,0,0,8,0.28300000000000003,68.01,78.31,0.9500000000000001,0.23,895,2.8000000000000003,40,3.2,7.6507,5.8455 +2012,9,8,14,30,17.8,1.69,0.08700000000000001,0.59,76,725,371,0,4,8.200000000000001,38,0,0,38,0.28300000000000003,53.53,66.02,0.9500000000000001,0.23,895,2.6,46,3.6,19.8166,15.4130 +2012,9,8,15,30,19.700000000000003,1.69,0.076,0.59,86,838,578,0,4,6.5,88,0,0,88,0.28200000000000003,42.17,54.09,0.9400000000000001,0.23,895,2.5,48,3.8000000000000003,32.8686,25.7425 +2012,9,8,16,30,21.400000000000002,1.69,0.067,0.59,92,901,750,0,4,5.7,300,2,0,302,0.28200000000000003,35.93,43.08,0.9400000000000001,0.23,895,2.4000000000000004,46,3.6,36.9826,29.0493 +2012,9,8,17,30,23,1.69,0.059000000000000004,0.59,93,940,872,0,4,5.1000000000000005,348,3,0,351,0.28200000000000003,31.26,34.09,0.9400000000000001,0.23,894,2.2,44,3.1,44.5340,35.0277 +2012,9,8,18,30,24.400000000000002,1.62,0.08,0.59,107,937,925,0,4,4.4,210,0,0,210,0.281,27.47,29.19,0.9500000000000001,0.23,893,2.1,43,2.6,55.5171,43.6883 +2012,9,8,19,30,25.5,1.6400000000000001,0.068,0.59,100,946,916,0,4,3.8000000000000003,459,86,0,533,0.28,24.66,30.46,0.9400000000000001,0.23,892,2,45,2.1,54.4471,42.8415 +2012,9,8,20,30,26.1,1.6600000000000001,0.061,0.59,93,935,837,0,4,3.3000000000000003,459,192,0,611,0.279,23,37.27,0.9400000000000001,0.23,892,2,46,1.7000000000000002,49.0630,38.5750 +2012,9,8,21,30,26.200000000000003,1.68,0.056,0.59,84,907,700,0,4,2.9000000000000004,393,164,0,504,0.279,22.17,47.24,0.9400000000000001,0.23,891,1.9000000000000001,46,1.4000000000000001,39.8161,31.2482 +2012,9,8,22,30,25.6,1.69,0.053,0.59,73,848,513,0,4,2.5,293,74,0,331,0.28,22.3,58.72,0.93,0.23,891,1.9000000000000001,50,1.2000000000000002,27.7015,21.6539 +2012,9,8,23,30,24.3,1.7,0.051000000000000004,0.59,57,734,298,0,4,2.2,162,14,0,166,0.28,23.61,70.85000000000001,0.93,0.23,891,1.8,66,0.9,10.2372,7.9218 +2012,9,9,0,30,22.1,1.7,0.05,0.59,31,452,85,0,3,4.800000000000001,57,7,0,58,0.281,32.34,83.18,0.93,0.24,891,1.8,100,0.7000000000000001,0.0000,0.0000 +2012,9,9,1,30,20.1,1.7,0.048,0.59,0,0,0,0,4,5.4,0,0,0,0,0.28200000000000003,38.15,95.63,0.92,0.24,891,1.7000000000000002,139,0.8,0.0000,0.0000 +2012,9,9,2,30,18.8,1.71,0.047,0.59,0,0,0,0,4,5.300000000000001,0,0,0,0,0.28300000000000003,41.09,107.62,0.92,0.24,891,1.7000000000000002,166,0.8,0.0000,0.0000 +2012,9,9,3,30,17.8,1.71,0.046,0.59,0,0,0,0,7,5.4,0,0,0,0,0.28400000000000003,43.99,118.91,0.92,0.24,892,1.6,190,0.9,0.0000,0.0000 +2012,9,9,4,30,17,1.71,0.045,0.59,0,0,0,0,7,5.300000000000001,0,0,0,0,0.28400000000000003,45.9,128.88,0.92,0.24,892,1.6,213,1,0.0000,0.0000 +2012,9,9,5,30,16.3,1.72,0.045,0.59,0,0,0,0,4,5.4,0,0,0,0,0.28400000000000003,48.52,136.52,0.92,0.24,892,1.6,235,1.1,0.0000,0.0000 +2012,9,9,6,30,15.700000000000001,1.72,0.046,0.59,0,0,0,0,4,5.9,0,0,0,0,0.28400000000000003,52.28,140.42000000000002,0.92,0.24,892,1.5,252,1.2000000000000002,0.0000,0.0000 +2012,9,9,7,30,15.3,1.72,0.046,0.59,0,0,0,0,4,6.7,0,0,0,0,0.28400000000000003,56.550000000000004,139.45000000000002,0.92,0.24,892,1.5,265,1.3,0.0000,0.0000 +2012,9,9,8,30,14.8,1.72,0.047,0.59,0,0,0,0,4,7.5,0,0,0,0,0.28400000000000003,61.65,133.92000000000002,0.92,0.24,892,1.5,275,1.4000000000000001,0.0000,0.0000 +2012,9,9,9,30,14.200000000000001,1.72,0.047,0.59,0,0,0,0,4,8.3,0,0,0,0,0.28400000000000003,67.69,125.23,0.92,0.24,892,1.5,283,1.5,0.0000,0.0000 +2012,9,9,10,30,13.700000000000001,1.71,0.048,0.59,0,0,0,0,8,9,0,0,0,0,0.28300000000000003,73.31,114.66,0.92,0.24,892,1.4000000000000001,290,1.6,0.0000,0.0000 +2012,9,9,11,30,13.3,1.71,0.048,0.59,0,0,0,0,7,9.4,0,0,0,0,0.28300000000000003,77.44,103.05,0.92,0.24,892,1.4000000000000001,297,1.7000000000000002,0.0000,0.0000 +2012,9,9,12,30,14.4,1.71,0.048,0.59,0,0,0,0,8,9.600000000000001,0,0,0,0,0.28300000000000003,73.03,90.9,0.92,0.24,892,1.4000000000000001,303,2.3000000000000003,0.0000,0.0000 +2012,9,9,13,30,17.5,1.7,0.047,0.59,43,617,166,0,8,9.700000000000001,102,136,0,129,0.28300000000000003,60.11,78.45,0.92,0.24,893,1.3,306,2.7,0.3823,0.2921 +2012,9,9,14,30,21.3,1.7,0.045,0.59,62,813,390,0,7,8.5,110,656,0,375,0.28400000000000003,43.71,66.17,0.92,0.24,893,1.3,310,1.6,2.0113,1.5641 +2012,9,9,15,30,24.400000000000002,1.7,0.044,0.59,73,904,601,0,1,4.1000000000000005,73,904,0,601,0.28400000000000003,26.88,54.26,0.91,0.24,893,1.3,190,0.8,5.0005,3.9161 +2012,9,9,16,30,26.3,1.7,0.043000000000000003,0.59,80,953,774,0,1,2.6,80,953,0,774,0.28400000000000003,21.51,43.300000000000004,0.91,0.24,892,1.3,83,1,17.8314,14.0058 +2012,9,9,17,30,27.8,1.7,0.043000000000000003,0.59,85,978,893,7,2,1.8,286,704,7,867,0.28400000000000003,18.59,34.38,0.92,0.24,892,1.3,108,1.3,21.1415,16.6281 +2012,9,9,18,30,28.900000000000002,1.68,0.05,0.59,91,983,946,0,1,1.2000000000000002,91,983,0,946,0.28400000000000003,16.8,29.55,0.92,0.24,891,1.3,119,1.6,12.7490,10.0323 +2012,9,9,19,30,29.6,1.68,0.05,0.59,91,981,932,0,0,0.8,91,981,0,932,0.28400000000000003,15.68,30.85,0.92,0.24,890,1.3,124,1.8,32.2976,25.4123 +2012,9,9,20,30,29.900000000000002,1.69,0.05,0.59,87,964,851,0,0,0.6000000000000001,87,964,0,851,0.28400000000000003,15.13,37.63,0.92,0.24,890,1.3,128,2,36.5762,28.7561 +2012,9,9,21,30,29.6,1.6400000000000001,0.059000000000000004,0.59,86,922,708,0,0,0.4,86,922,0,708,0.28400000000000003,15.22,47.57,0.93,0.24,889,1.3,130,2.1,29.3949,23.0678 +2012,9,9,22,30,28.700000000000003,1.6400000000000001,0.058,0.59,75,859,517,0,0,0.30000000000000004,75,859,0,517,0.28300000000000003,15.93,59.01,0.93,0.24,889,1.3,132,2.3000000000000003,18.3818,14.3667 +2012,9,9,23,30,26.6,1.6400000000000001,0.057,0.59,59,737,297,0,0,0.4,59,737,0,297,0.28400000000000003,18.06,71.14,0.93,0.24,889,1.3,134,1.8,8.4330,6.5233 +2012,9,10,0,30,23.1,1.6400000000000001,0.056,0.59,31,443,82,0,0,3.9000000000000004,31,443,0,82,0.28400000000000003,28.59,83.46000000000001,0.92,0.23,889,1.3,139,1.2000000000000002,0.0000,0.0000 +2012,9,10,1,30,20.5,1.6400000000000001,0.054,0.59,0,0,0,0,0,4.3,0,0,0,0,0.28400000000000003,34.4,95.91,0.92,0.23,889,1.3,146,1.2000000000000002,0.0000,0.0000 +2012,9,10,2,30,19.400000000000002,1.6400000000000001,0.053,0.59,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28400000000000003,35.58,107.93,0.92,0.23,890,1.3,154,1.3,0.0000,0.0000 +2012,9,10,3,30,18.5,1.6400000000000001,0.052000000000000005,0.59,0,0,0,0,0,3.6,0,0,0,0,0.28400000000000003,37.22,119.23,0.92,0.23,890,1.3,164,1.4000000000000001,0.0000,0.0000 +2012,9,10,4,30,17.7,1.6400000000000001,0.052000000000000005,0.59,0,0,0,0,0,3.7,0,0,0,0,0.28300000000000003,39.37,129.23,0.92,0.23,890,1.4000000000000001,175,1.4000000000000001,0.0000,0.0000 +2012,9,10,5,30,16.900000000000002,1.6400000000000001,0.052000000000000005,0.59,0,0,0,0,0,4,0,0,0,0,0.28300000000000003,42.39,136.9,0.92,0.23,890,1.4000000000000001,186,1.3,0.0000,0.0000 +2012,9,10,6,30,16.3,1.6400000000000001,0.052000000000000005,0.59,0,0,0,0,0,4.5,0,0,0,0,0.28200000000000003,45.63,140.8,0.92,0.23,890,1.5,194,1.3,0.0000,0.0000 +2012,9,10,7,30,15.8,1.6500000000000001,0.052000000000000005,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.28200000000000003,48.94,139.8,0.92,0.23,890,1.6,198,1.2000000000000002,0.0000,0.0000 +2012,9,10,8,30,15.3,1.6500000000000001,0.052000000000000005,0.59,0,0,0,0,0,5.5,0,0,0,0,0.28200000000000003,52.08,134.21,0.92,0.23,890,1.7000000000000002,198,1.2000000000000002,0.0000,0.0000 +2012,9,10,9,30,14.8,1.6500000000000001,0.054,0.59,0,0,0,0,0,5.9,0,0,0,0,0.28200000000000003,55.120000000000005,125.46000000000001,0.93,0.23,890,1.8,198,1.1,0.0000,0.0000 +2012,9,10,10,30,14.3,1.6600000000000001,0.055,0.59,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.28200000000000003,57.99,114.85000000000001,0.93,0.23,890,1.9000000000000001,198,1,0.0000,0.0000 +2012,9,10,11,30,13.9,1.6600000000000001,0.056,0.59,0,0,0,0,0,6.300000000000001,0,0,0,0,0.28200000000000003,60.15,103.21000000000001,0.93,0.23,890,2,200,1,0.0000,0.0000 +2012,9,10,12,30,15.100000000000001,1.6500000000000001,0.058,0.59,0,0,0,0,1,6.300000000000001,0,0,0,0,0.28300000000000003,55.86,91.04,0.93,0.23,890,2.1,200,1.4000000000000001,0.0000,0.0000 +2012,9,10,13,30,18.3,1.6500000000000001,0.06,0.59,45,564,156,7,3,6.300000000000001,98,11,7,100,0.28300000000000003,45.410000000000004,78.59,0.93,0.23,890,2.2,196,2.2,6.1617,4.7057 +2012,9,10,14,30,22.3,1.6300000000000001,0.062,0.59,67,763,373,0,0,4.800000000000001,67,763,0,373,0.28300000000000003,31.95,66.32000000000001,0.93,0.23,890,2.2,194,3.4000000000000004,19.8250,15.4156 +2012,9,10,15,30,25.8,1.62,0.064,0.59,81,853,578,0,0,2.9000000000000004,81,853,0,578,0.28300000000000003,22.66,54.44,0.9400000000000001,0.23,890,2.3000000000000003,198,4.2,34.1251,26.7232 +2012,9,10,16,30,28,1.62,0.065,0.59,91,902,745,0,0,3.8000000000000003,91,902,0,745,0.28300000000000003,21.27,43.52,0.9400000000000001,0.23,889,2.4000000000000004,202,4.2,45.6733,35.8728 +2012,9,10,17,30,29.5,1.62,0.064,0.59,96,931,861,0,0,4.9,96,931,0,861,0.28300000000000003,21.09,34.67,0.9400000000000001,0.23,889,2.4000000000000004,203,4.2,52.1940,41.0499 +2012,9,10,18,30,30.700000000000003,1.6,0.061,0.59,96,942,913,0,0,5.7,96,942,0,913,0.28200000000000003,20.75,29.92,0.9400000000000001,0.23,888,2.5,203,4.3,57.4015,45.1683 +2012,9,10,19,30,31.3,1.6,0.061,0.59,96,939,899,7,3,6.2,380,490,7,800,0.28200000000000003,20.7,31.23,0.9400000000000001,0.23,887,2.5,203,4.4,56.4415,44.4074 +2012,9,10,20,30,31.6,1.59,0.061,0.59,92,920,817,0,0,6.4,92,920,0,817,0.28200000000000003,20.75,37.99,0.9400000000000001,0.23,886,2.6,201,4.4,50.9049,40.0192 +2012,9,10,21,30,31.400000000000002,1.57,0.057,0.59,84,887,679,0,0,6.6000000000000005,84,887,0,679,0.28200000000000003,21.23,47.89,0.9400000000000001,0.23,885,2.6,197,4.3,41.2484,32.3672 +2012,9,10,22,30,30.700000000000003,1.57,0.057,0.59,73,822,493,0,0,6.7,73,822,0,493,0.281,22.22,59.31,0.93,0.23,885,2.6,192,4.2,28.6649,22.4003 +2012,9,10,23,30,29.1,1.57,0.057,0.59,58,696,279,0,0,6.7,58,696,0,279,0.28,24.41,71.43,0.93,0.23,885,2.6,185,3.4000000000000004,15.0480,11.6356 +2012,9,11,0,30,26.1,1.58,0.058,0.59,30,396,73,0,0,7.2,30,396,0,73,0.28,30.1,83.74,0.93,0.23,885,2.5,177,2.4000000000000004,0.0000,0.0000 +2012,9,11,1,30,24.1,1.59,0.059000000000000004,0.59,0,0,0,0,0,7.4,0,0,0,0,0.28,34.36,96.2,0.93,0.23,885,2.5,172,2.4000000000000004,0.0000,0.0000 +2012,9,11,2,30,23.5,1.6,0.06,0.59,0,0,0,0,0,6.800000000000001,0,0,0,0,0.28,34.230000000000004,108.23,0.93,0.23,886,2.5,171,3.1,0.0000,0.0000 +2012,9,11,3,30,22.900000000000002,1.6,0.06,0.59,0,0,0,0,4,6.4,0,0,0,0,0.28,34.36,119.56,0.93,0.23,886,2.5,173,3.6,0.0000,0.0000 +2012,9,11,4,30,22.200000000000003,1.6,0.062,0.59,0,0,0,0,7,6,0,0,0,0,0.28,34.92,129.59,0.93,0.23,886,2.5,175,3.9000000000000004,0.0000,0.0000 +2012,9,11,5,30,21.5,1.6,0.064,0.59,0,0,0,0,8,5.6000000000000005,0,0,0,0,0.28,35.59,137.29,0.9400000000000001,0.23,886,2.5,178,4.1000000000000005,0.0000,0.0000 +2012,9,11,6,30,20.900000000000002,1.59,0.068,0.59,0,0,0,0,4,5.300000000000001,0,0,0,0,0.28,36.03,141.19,0.9400000000000001,0.23,886,2.5,181,4.2,0.0000,0.0000 +2012,9,11,7,30,20.3,1.59,0.073,0.59,0,0,0,0,1,4.9,0,0,0,0,0.28,36.45,140.14000000000001,0.9400000000000001,0.23,886,2.5,186,4.2,0.0000,0.0000 +2012,9,11,8,30,19.8,1.57,0.08,0.59,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.28,36.74,134.49,0.9400000000000001,0.23,886,2.5,192,4.1000000000000005,0.0000,0.0000 +2012,9,11,9,30,19.400000000000002,1.57,0.085,0.59,0,0,0,0,0,4.4,0,0,0,0,0.28,37.14,125.69,0.9500000000000001,0.23,885,2.5,200,3.6,0.0000,0.0000 +2012,9,11,10,30,18.8,1.58,0.08600000000000001,0.59,0,0,0,0,0,4.4,0,0,0,0,0.28,38.62,115.03,0.9500000000000001,0.23,885,2.4000000000000004,205,3,0.0000,0.0000 +2012,9,11,11,30,18.2,1.59,0.082,0.59,0,0,0,0,0,4.5,0,0,0,0,0.281,40.24,103.37,0.9400000000000001,0.23,885,2.4000000000000004,207,2.6,0.0000,0.0000 +2012,9,11,12,30,18.7,1.6,0.077,0.59,0,0,0,0,0,4.4,0,0,0,0,0.281,38.94,91.18,0.9400000000000001,0.23,885,2.4000000000000004,206,3,0.0000,0.0000 +2012,9,11,13,30,21.200000000000003,1.61,0.073,0.59,47,535,152,0,0,4.4,47,535,0,152,0.281,33.17,78.73,0.9400000000000001,0.23,886,2.4000000000000004,205,4,4.7742,3.6452 +2012,9,11,14,30,24.8,1.61,0.07,0.59,70,749,369,0,0,4.5,70,749,0,369,0.28,26.96,66.47,0.9400000000000001,0.23,886,2.3000000000000003,206,4.6000000000000005,19.6962,15.3133 +2012,9,11,15,30,28.5,1.61,0.067,0.59,82,850,575,0,0,5.1000000000000005,82,850,0,575,0.28,22.61,54.61,0.9400000000000001,0.23,886,2.3000000000000003,211,4.800000000000001,32.7926,25.6780 +2012,9,11,16,30,31.6,1.61,0.064,0.59,90,908,746,0,0,6,90,908,0,746,0.279,20.09,43.74,0.9400000000000001,0.23,885,2.2,212,4.6000000000000005,43.9356,34.5065 +2012,9,11,17,30,33.7,1.61,0.063,0.59,95,936,863,0,0,6.4,95,936,0,863,0.279,18.37,34.96,0.9400000000000001,0.23,885,2.2,207,4.4,51.8052,40.7427 +2012,9,11,18,30,34.9,1.62,0.063,0.59,97,950,918,0,0,6.2,97,950,0,918,0.278,16.93,30.28,0.9400000000000001,0.23,884,2.1,200,4.5,55.3690,43.5674 +2012,9,11,19,30,35.4,1.62,0.063,0.59,97,947,903,0,0,5.9,97,947,0,903,0.278,16.1,31.62,0.9400000000000001,0.23,883,2.1,194,4.7,48.4189,38.0939 +2012,9,11,20,30,35.5,1.62,0.064,0.59,94,929,823,0,0,5.7,94,929,0,823,0.278,15.8,38.35,0.9500000000000001,0.23,882,2.1,190,4.9,48.8337,38.3890 +2012,9,11,21,30,35,1.6,0.065,0.59,88,889,680,0,8,5.6000000000000005,185,646,0,615,0.278,16.18,48.22,0.9500000000000001,0.23,882,2.2,188,5.1000000000000005,39.5169,31.0061 +2012,9,11,22,30,34,1.59,0.07100000000000001,0.59,79,812,490,0,8,5.7,163,571,0,452,0.278,17.19,59.620000000000005,0.9500000000000001,0.23,882,2.3000000000000003,187,5.2,27.2881,21.3210 +2012,9,11,23,30,32.300000000000004,1.56,0.082,0.59,65,663,273,0,3,5.9,152,260,0,234,0.278,19.19,71.71000000000001,0.96,0.23,882,2.4000000000000004,186,4.7,14.0982,10.8968 +2012,9,12,0,30,30.200000000000003,1.54,0.096,0.59,33,322,67,0,0,6.5,33,322,0,67,0.279,22.62,84.02,0.96,0.23,882,2.5,185,4.1000000000000005,0.0000,0.0000 +2012,9,12,1,30,28.8,1.53,0.108,0.59,0,0,0,0,0,7.300000000000001,0,0,0,0,0.279,25.900000000000002,96.5,0.96,0.23,883,2.7,187,4,0.0000,0.0000 +2012,9,12,2,30,27.8,1.55,0.11,0.59,0,0,0,0,0,8,0,0,0,0,0.279,28.8,108.54,0.96,0.23,883,2.8000000000000003,191,3.9000000000000004,0.0000,0.0000 +2012,9,12,3,30,26.6,1.58,0.105,0.59,0,0,0,0,0,8.700000000000001,0,0,0,0,0.279,32.34,119.89,0.96,0.23,884,2.9000000000000004,190,3.6,0.0000,0.0000 +2012,9,12,4,30,25.400000000000002,1.61,0.099,0.59,0,0,0,0,1,9,0,0,0,0,0.278,35.52,129.94,0.9500000000000001,0.23,884,2.9000000000000004,186,3.5,0.0000,0.0000 +2012,9,12,5,30,24.200000000000003,1.61,0.097,0.59,0,0,0,0,0,9,0,0,0,0,0.278,38.15,137.67000000000002,0.9500000000000001,0.23,884,2.9000000000000004,185,3.8000000000000003,0.0000,0.0000 +2012,9,12,6,30,23.3,1.59,0.10300000000000001,0.59,0,0,0,0,0,8.8,0,0,0,0,0.277,39.53,141.58,0.9500000000000001,0.23,884,2.9000000000000004,189,4,0.0000,0.0000 +2012,9,12,7,30,22.6,1.56,0.112,0.59,0,0,0,0,0,8.200000000000001,0,0,0,0,0.276,39.76,140.49,0.9500000000000001,0.23,884,3,195,4.2,0.0000,0.0000 +2012,9,12,8,30,22,1.55,0.117,0.59,0,0,0,0,0,7.5,0,0,0,0,0.276,39.19,134.78,0.9500000000000001,0.23,884,3.1,199,4.2,0.0000,0.0000 +2012,9,12,9,30,21.3,1.54,0.11900000000000001,0.59,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.276,39.88,125.91,0.9500000000000001,0.23,884,3.2,204,4,0.0000,0.0000 +2012,9,12,10,30,20.700000000000003,1.54,0.125,0.59,0,0,0,0,0,7.800000000000001,0,0,0,0,0.277,43.31,115.22,0.96,0.23,884,3.4000000000000004,209,3.8000000000000003,0.0000,0.0000 +2012,9,12,11,30,20.200000000000003,1.53,0.131,0.59,0,0,0,0,0,9.5,0,0,0,0,0.278,50.1,103.53,0.96,0.23,885,3.5,213,3.6,0.0000,0.0000 +2012,9,12,12,30,20.200000000000003,1.53,0.129,0.59,0,0,0,0,4,11.3,0,0,0,0,0.278,56.56,91.33,0.96,0.23,885,3.5,210,3.2,0.0000,0.0000 +2012,9,12,13,30,21.5,1.54,0.123,0.59,55,440,140,7,4,12.4,76,1,7,76,0.279,56.19,78.87,0.9500000000000001,0.23,885,3.4000000000000004,204,2.9000000000000004,7.2537,5.5371 +2012,9,12,14,30,24.200000000000003,1.55,0.11800000000000001,0.59,84,668,349,0,1,12.600000000000001,84,668,0,349,0.279,48.33,66.62,0.9500000000000001,0.23,886,3.4000000000000004,204,2.8000000000000003,19.4620,15.1291 +2012,9,12,15,30,27.1,1.55,0.12,0.59,103,777,551,7,3,12.5,280,349,7,481,0.279,40.45,54.79,0.9500000000000001,0.23,886,3.3000000000000003,208,2.8000000000000003,32.5973,25.5234 +2012,9,12,16,30,29.200000000000003,1.55,0.127,0.59,118,830,716,7,3,12.4,345,402,7,634,0.28,35.56,43.96,0.9500000000000001,0.23,885,3.3000000000000003,208,2.8000000000000003,43.9679,34.5304 +2012,9,12,17,30,30.400000000000002,1.53,0.136,0.59,129,856,828,0,4,12.4,165,0,0,165,0.28,33.19,35.25,0.9500000000000001,0.23,885,3.3000000000000003,206,2.8000000000000003,51.8975,40.8139 +2012,9,12,18,30,30.700000000000003,1.51,0.098,0.59,115,897,886,0,4,12.5,295,1,0,296,0.28,32.83,30.650000000000002,0.9500000000000001,0.23,884,3.3000000000000003,203,2.7,55.6422,43.7810 +2012,9,12,19,30,30.200000000000003,1.48,0.107,0.59,118,885,869,0,8,12.600000000000001,342,387,0,670,0.279,34.08,32.01,0.9500000000000001,0.23,884,3.4000000000000004,198,2.5,54.6189,42.9701 +2012,9,12,20,30,29,1.45,0.116,0.59,118,856,786,0,7,12.9,357,62,0,405,0.278,37.09,38.71,0.96,0.23,884,3.5,190,2.2,49.1541,38.6388 +2012,9,12,21,30,27.5,1.44,0.126,0.59,113,803,645,0,6,13.5,104,0,0,104,0.278,42.09,48.550000000000004,0.96,0.23,884,3.6,180,1.9000000000000001,35.7525,28.0501 +2012,9,12,22,30,25.8,1.43,0.136,0.59,102,714,459,0,8,14.4,136,3,0,138,0.278,49.25,59.92,0.96,0.23,885,3.7,142,1.7000000000000002,24.9744,19.5099 +2012,9,12,23,30,24,1.44,0.145,0.59,80,554,251,0,1,15.200000000000001,80,554,0,251,0.278,58.01,72,0.97,0.23,885,3.7,85,2,11.7937,9.1120 +2012,9,13,0,30,22.400000000000002,1.45,0.147,0.59,35,228,58,0,7,16.1,39,3,0,40,0.278,67.38,84.3,0.97,0.23,886,3.7,56,2.6,0.0000,0.0000 +2012,9,13,1,30,21.200000000000003,1.46,0.148,0.59,0,0,0,0,4,16.6,0,0,0,0,0.279,74.89,96.79,0.96,0.23,886,3.7,49,3.2,0.0000,0.0000 +2012,9,13,2,30,20.200000000000003,1.45,0.16,0.59,0,0,0,0,4,16.8,0,0,0,0,0.279,80.72,108.84,0.97,0.23,887,3.7,44,3.8000000000000003,0.0000,0.0000 +2012,9,13,3,30,19.400000000000002,1.42,0.185,0.59,0,0,0,0,7,16.6,0,0,0,0,0.279,83.96000000000001,120.22,0.97,0.23,888,3.7,39,4.3,0.0000,0.0000 +2012,9,13,4,30,18.6,1.3900000000000001,0.21,0.59,0,0,0,0,8,16.1,0,0,0,0,0.279,85.48,130.3,0.97,0.23,888,3.8000000000000003,36,4.7,0.0000,0.0000 +2012,9,13,5,30,17.7,1.3800000000000001,0.232,0.59,0,0,0,0,7,15.600000000000001,0,0,0,0,0.279,87.31,138.06,0.97,0.23,889,3.7,34,4.9,0.0000,0.0000 +2012,9,13,6,30,16.7,1.3800000000000001,0.28600000000000003,0.59,0,0,0,0,4,14.8,0,0,0,0,0.279,88.8,141.97,0.98,0.23,889,3.6,30,5.1000000000000005,0.0000,0.0000 +2012,9,13,7,30,15.8,1.3800000000000001,0.339,0.59,0,0,0,0,4,13.9,0,0,0,0,0.279,88.51,140.84,0.98,0.23,889,3.5,22,5.4,0.0000,0.0000 +2012,9,13,8,30,14.700000000000001,1.3800000000000001,0.379,0.59,0,0,0,0,4,12.9,0,0,0,0,0.28,89.2,135.07,0.98,0.23,890,3.4000000000000004,12,5.800000000000001,0.0000,0.0000 +2012,9,13,9,30,13.700000000000001,1.3800000000000001,0.397,0.59,0,0,0,0,7,11.9,0,0,0,0,0.28,88.86,126.14,0.98,0.23,890,3.2,6,6.4,0.0000,0.0000 +2012,9,13,10,30,12.9,1.3900000000000001,0.34400000000000003,0.59,0,0,0,0,7,10.9,0,0,0,0,0.28,87.7,115.4,0.98,0.23,891,3.2,7,6.7,0.0000,0.0000 +2012,9,13,11,30,12.200000000000001,1.42,0.25,0.59,0,0,0,0,8,10.3,0,0,0,0,0.281,88.25,103.68,0.97,0.23,892,3.1,12,6.7,0.0000,0.0000 +2012,9,13,12,30,11.9,1.44,0.181,0.59,0,0,0,0,7,9.9,0,0,0,0,0.281,87.65,91.47,0.97,0.23,892,3.1,19,6.5,0.0000,0.0000 +2012,9,13,13,30,12,1.46,0.148,0.59,59,407,136,0,1,9.600000000000001,59,407,0,136,0.281,85.19,79.01,0.97,0.23,892,3.1,27,6.4,3.6255,2.7669 +2012,9,13,14,30,12.600000000000001,1.48,0.14100000000000001,0.59,92,645,346,0,4,9.5,48,0,0,48,0.28,81.4,66.77,0.97,0.23,893,3.1,32,6.4,18.3853,14.2901 +2012,9,13,15,30,13.5,1.48,0.151,0.59,115,749,545,0,4,9.600000000000001,25,0,0,25,0.28,77.16,54.97,0.97,0.23,894,3.1,33,6.300000000000001,27.2459,21.3319 +2012,9,13,16,30,14.4,1.47,0.159,0.59,133,808,712,0,4,9.600000000000001,70,0,0,70,0.279,72.67,44.19,0.97,0.23,894,3,30,6.2,37.3440,29.3270 +2012,9,13,17,30,15,1.47,0.15,0.59,137,849,827,0,4,9.4,41,0,0,41,0.278,69.32000000000001,35.550000000000004,0.97,0.23,894,3,26,6.2,9.9171,7.7988 +2012,9,13,18,30,15.700000000000001,1.49,0.133,0.59,132,877,883,0,4,9.3,164,0,0,164,0.277,65.69,31.02,0.96,0.23,894,2.9000000000000004,25,6.300000000000001,17.9312,14.1083 +2012,9,13,19,30,16.400000000000002,1.5,0.113,0.59,122,890,873,0,4,9.1,176,0,0,176,0.275,62.160000000000004,32.410000000000004,0.96,0.23,894,2.8000000000000003,26,6.4,40.5000,31.8611 +2012,9,13,20,30,17,1.51,0.097,0.59,110,887,798,0,4,8.9,149,0,0,149,0.274,58.870000000000005,39.08,0.9500000000000001,0.23,893,2.6,27,6.300000000000001,24.1697,18.9982 +2012,9,13,21,30,17.3,1.53,0.085,0.59,96,859,662,0,3,8.6,136,0,0,136,0.274,56.44,48.870000000000005,0.9500000000000001,0.23,893,2.5,28,6.1000000000000005,6.0392,4.7377 +2012,9,13,22,30,17,1.55,0.076,0.59,81,796,476,0,0,8.1,81,796,0,476,0.274,55.910000000000004,60.22,0.9500000000000001,0.23,893,2.5,29,5.7,7.6117,5.9452 +2012,9,13,23,30,16.1,1.57,0.07,0.59,61,669,264,0,3,7.800000000000001,150,220,0,217,0.275,57.76,72.29,0.9400000000000001,0.23,894,2.4000000000000004,31,5.2,12.6165,9.7436 +2012,9,14,0,30,14.9,1.59,0.064,0.59,28,352,62,0,1,7.6000000000000005,28,352,0,62,0.276,61.61,84.58,0.9400000000000001,0.23,894,2.4000000000000004,33,4.3,0.0000,0.0000 +2012,9,14,1,30,13.9,1.6,0.059000000000000004,0.59,0,0,0,0,0,7.7,0,0,0,0,0.277,66.26,97.08,0.93,0.23,895,2.4000000000000004,33,3.6,0.0000,0.0000 +2012,9,14,2,30,13.100000000000001,1.61,0.055,0.59,0,0,0,0,1,7.7,0,0,0,0,0.278,69.91,109.15,0.93,0.23,895,2.3000000000000003,32,3.5,0.0000,0.0000 +2012,9,14,3,30,12.5,1.62,0.053,0.59,0,0,0,0,4,7.6000000000000005,0,0,0,0,0.278,71.93,120.54,0.93,0.23,895,2.3000000000000003,30,3.6,0.0000,0.0000 +2012,9,14,4,30,11.9,1.62,0.054,0.59,0,0,0,0,4,7.300000000000001,0,0,0,0,0.278,73.59,130.66,0.93,0.23,895,2.3000000000000003,30,3.7,0.0000,0.0000 +2012,9,14,5,30,11.4,1.62,0.057,0.59,0,0,0,0,4,7.1000000000000005,0,0,0,0,0.277,74.78,138.44,0.93,0.23,895,2.3000000000000003,28,3.8000000000000003,0.0000,0.0000 +2012,9,14,6,30,11,1.6300000000000001,0.058,0.59,0,0,0,0,4,6.800000000000001,0,0,0,0,0.277,75.45,142.36,0.93,0.23,895,2.3000000000000003,24,3.9000000000000004,0.0000,0.0000 +2012,9,14,7,30,10.5,1.6400000000000001,0.056,0.59,0,0,0,0,4,6.6000000000000005,0,0,0,0,0.278,76.61,141.19,0.93,0.23,895,2.3000000000000003,19,4,0.0000,0.0000 +2012,9,14,8,30,10,1.6500000000000001,0.054,0.59,0,0,0,0,1,6.300000000000001,0,0,0,0,0.278,77.74,135.35,0.93,0.23,895,2.2,14,3.9000000000000004,0.0000,0.0000 +2012,9,14,9,30,9.600000000000001,1.6600000000000001,0.053,0.59,0,0,0,0,4,6,0,0,0,0,0.279,78.38,126.36,0.93,0.23,895,2.1,10,3.8000000000000003,0.0000,0.0000 +2012,9,14,10,30,9.200000000000001,1.6600000000000001,0.051000000000000004,0.59,0,0,0,0,0,5.7,0,0,0,0,0.28,78.96000000000001,115.58,0.93,0.23,895,2,7,3.6,0.0000,0.0000 +2012,9,14,11,30,8.700000000000001,1.6500000000000001,0.05,0.59,0,0,0,0,0,5.4,0,0,0,0,0.281,79.83,103.84,0.93,0.23,895,1.9000000000000001,4,3.4000000000000004,0.0000,0.0000 +2012,9,14,12,30,9,1.6400000000000001,0.048,0.59,0,0,0,0,0,5,0,0,0,0,0.281,76.11,91.61,0.93,0.23,895,1.8,4,3.7,0.0000,0.0000 +2012,9,14,13,30,10.9,1.62,0.046,0.59,41,589,152,0,0,4.5,41,589,0,152,0.281,64.55,79.15,0.92,0.23,895,1.7000000000000002,11,4.5,6.4857,4.9488 +2012,9,14,14,30,13.700000000000001,1.61,0.044,0.59,61,798,373,0,0,3.1,61,798,0,373,0.281,48.85,66.93,0.92,0.23,895,1.6,23,5.1000000000000005,2.5256,1.9628 +2012,9,14,15,30,16.3,1.61,0.043000000000000003,0.59,72,892,582,0,0,1.5,72,892,0,582,0.281,36.76,55.15,0.92,0.23,895,1.6,31,5.2,1.4149,1.1077 +2012,9,14,16,30,18.5,1.61,0.043000000000000003,0.59,80,941,752,0,0,0.5,80,941,0,752,0.281,29.73,44.410000000000004,0.92,0.23,895,1.6,34,5.1000000000000005,4.1205,3.2358 +2012,9,14,17,30,20.200000000000003,1.61,0.043000000000000003,0.59,85,965,866,0,0,0.6000000000000001,85,965,0,866,0.28200000000000003,27.05,35.85,0.93,0.23,895,1.7000000000000002,35,4.800000000000001,2.4628,1.9367 +2012,9,14,18,30,21.400000000000002,1.68,0.055,0.59,93,963,915,0,0,1.4000000000000001,93,963,0,915,0.28200000000000003,26.61,31.39,0.9400000000000001,0.23,894,1.8,37,4.6000000000000005,9.9291,7.8120 +2012,9,14,19,30,22.1,1.6600000000000001,0.06,0.59,96,955,899,0,0,2.4000000000000004,96,955,0,899,0.28200000000000003,27.41,32.8,0.9500000000000001,0.23,893,1.8,38,4.4,10.6318,8.3636 +2012,9,14,20,30,22,1.6400000000000001,0.065,0.59,95,933,815,0,0,3.3000000000000003,95,933,0,815,0.28200000000000003,29.3,39.44,0.9500000000000001,0.23,893,1.8,40,4.3,8.8847,6.9833 +2012,9,14,21,30,21.5,1.6300000000000001,0.067,0.59,89,893,672,0,0,3.8000000000000003,89,893,0,672,0.281,31.3,49.21,0.9500000000000001,0.23,892,1.8,41,4.3,7.8886,6.1881 +2012,9,14,22,30,20.700000000000003,1.6400000000000001,0.065,0.59,77,826,483,0,0,4,77,826,0,483,0.281,33.4,60.53,0.9500000000000001,0.23,892,1.8,43,4.2,26.2084,20.4671 +2012,9,14,23,30,19.200000000000003,1.6400000000000001,0.063,0.59,58,692,265,0,1,4,58,692,0,265,0.281,36.71,72.59,0.9400000000000001,0.23,892,1.8,47,3.5,10.8781,8.3974 +2012,9,15,0,30,16.6,1.6600000000000001,0.06,0.59,27,363,60,0,3,4.3,21,0,0,21,0.281,44.11,84.86,0.9400000000000001,0.23,893,1.8,55,2.1,0.0000,0.0000 +2012,9,15,1,30,14.4,1.67,0.056,0.59,0,0,0,0,0,5.300000000000001,0,0,0,0,0.281,54.35,97.37,0.9400000000000001,0.23,893,1.8,67,1.2000000000000002,0.0000,0.0000 +2012,9,15,2,30,13.4,1.67,0.053,0.59,0,0,0,0,0,5.4,0,0,0,0,0.281,58.300000000000004,109.45,0.9400000000000001,0.23,894,1.8,76,1.1,0.0000,0.0000 +2012,9,15,3,30,12.700000000000001,1.68,0.052000000000000005,0.59,0,0,0,0,0,5.4,0,0,0,0,0.281,61.34,120.87,0.93,0.23,894,1.8,82,0.9,0.0000,0.0000 +2012,9,15,4,30,12.100000000000001,1.68,0.052000000000000005,0.59,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.281,64.46000000000001,131.02,0.93,0.23,894,1.8,82,0.8,0.0000,0.0000 +2012,9,15,5,30,11.8,1.67,0.051000000000000004,0.59,0,0,0,0,0,5.800000000000001,0,0,0,0,0.28200000000000003,66.51,138.83,0.93,0.23,894,1.9000000000000001,70,0.8,0.0000,0.0000 +2012,9,15,6,30,11.700000000000001,1.67,0.051000000000000004,0.59,0,0,0,0,1,5.800000000000001,0,0,0,0,0.28200000000000003,67.35,142.75,0.93,0.23,893,1.9000000000000001,42,0.7000000000000001,0.0000,0.0000 +2012,9,15,7,30,11.4,1.67,0.05,0.59,0,0,0,0,0,5.9,0,0,0,0,0.28300000000000003,68.77,141.54,0.93,0.23,893,1.9000000000000001,183,0.6000000000000001,0.0000,0.0000 +2012,9,15,8,30,10.9,1.6600000000000001,0.049,0.59,0,0,0,0,1,5.7,0,0,0,0,0.28400000000000003,70.47,135.63,0.93,0.23,893,1.9000000000000001,332,0.7000000000000001,0.0000,0.0000 +2012,9,15,9,30,10,1.6600000000000001,0.048,0.59,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28500000000000003,73.9,126.59,0.93,0.23,893,1.9000000000000001,315,0.8,0.0000,0.0000 +2012,9,15,10,30,9.200000000000001,1.6500000000000001,0.048,0.59,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28600000000000003,76.49,115.77,0.93,0.23,893,1.9000000000000001,313,0.9,0.0000,0.0000 +2012,9,15,11,30,8.8,1.6500000000000001,0.048,0.59,0,0,0,0,0,4.800000000000001,0,0,0,0,0.28600000000000003,76.10000000000001,104,0.93,0.23,893,1.8,319,1,0.0000,0.0000 +2012,9,15,12,30,9.8,1.6400000000000001,0.048,0.59,0,0,0,0,0,4.3,0,0,0,0,0.28600000000000003,68.37,91.76,0.93,0.23,893,1.8,325,1.6,0.0000,0.0000 +2012,9,15,13,30,12.600000000000001,1.6500000000000001,0.047,0.59,41,581,149,7,7,3.9000000000000004,75,12,7,77,0.28500000000000003,55.46,79.3,0.93,0.23,893,1.8,330,2.1,7.2470,5.5285 +2012,9,15,14,30,16,1.6500000000000001,0.046,0.59,61,788,368,0,7,4.3,120,607,0,357,0.28500000000000003,45.86,67.08,0.92,0.23,893,1.8,344,1.7000000000000002,19.6011,15.2306 +2012,9,15,15,30,18.8,1.6500000000000001,0.045,0.59,73,884,575,0,8,3.7,166,541,0,474,0.28400000000000003,36.72,55.33,0.93,0.23,893,1.8,185,1.3,32.9122,25.7646 +2012,9,15,16,30,20.700000000000003,1.6500000000000001,0.045,0.59,81,934,745,0,6,3.7,344,75,0,397,0.28300000000000003,32.6,44.64,0.93,0.23,892,1.8,17,0.7000000000000001,44.2382,34.7380 +2012,9,15,17,30,22.400000000000002,1.6600000000000001,0.045,0.59,85,960,861,0,6,4.3,417,108,0,504,0.28200000000000003,30.63,36.15,0.93,0.23,892,1.8,116,0.30000000000000004,51.9895,40.8817 +2012,9,15,18,30,23.700000000000003,1.68,0.046,0.59,88,970,913,0,6,4.7,438,75,0,502,0.281,29.17,31.76,0.93,0.23,891,1.8,201,0.2,55.3650,43.5581 +2012,9,15,19,30,24.6,1.69,0.046,0.59,87,967,896,0,6,4.9,413,208,0,586,0.28,27.96,33.19,0.93,0.23,890,1.8,184,0.30000000000000004,54.2711,42.6911 +2012,9,15,20,30,25,1.69,0.045,0.59,83,953,816,0,6,4.9,274,8,0,280,0.279,27.3,39.81,0.93,0.23,889,1.7000000000000002,173,0.4,48.5580,38.1640 +2012,9,15,21,30,24.900000000000002,1.83,0.059000000000000004,0.59,84,904,670,0,8,4.7,202,563,0,568,0.279,27.150000000000002,49.54,0.93,0.23,889,1.7000000000000002,166,0.5,38.9324,30.5370 +2012,9,15,22,30,24.200000000000003,1.82,0.057,0.59,72,840,482,0,8,4.4,154,606,0,449,0.28,27.67,60.84,0.93,0.23,888,1.6,162,0.7000000000000001,26.5446,20.7260 +2012,9,15,23,30,22.5,1.8,0.054,0.59,55,712,265,0,0,4.2,55,712,0,265,0.28,30.21,72.88,0.93,0.23,888,1.5,161,0.7000000000000001,13.2472,10.2215 +2012,9,16,0,30,19.700000000000003,1.79,0.05,0.59,25,384,58,0,1,7,25,384,0,58,0.28,43.76,85.15,0.93,0.23,888,1.4000000000000001,162,0.8,0.0000,0.0000 +2012,9,16,1,30,17.3,1.77,0.047,0.59,0,0,0,0,0,6.4,0,0,0,0,0.281,48.58,97.67,0.92,0.23,889,1.2000000000000002,168,1.1,0.0000,0.0000 +2012,9,16,2,30,15.8,1.76,0.045,0.59,0,0,0,0,0,6.300000000000001,0,0,0,0,0.281,53.38,109.76,0.92,0.23,889,1.2000000000000002,177,1.4000000000000001,0.0000,0.0000 +2012,9,16,3,30,14.600000000000001,1.74,0.044,0.59,0,0,0,0,0,6.4,0,0,0,0,0.281,57.79,121.2,0.92,0.23,889,1.1,186,1.6,0.0000,0.0000 +2012,9,16,4,30,13.700000000000001,1.73,0.043000000000000003,0.59,0,0,0,0,0,6.5,0,0,0,0,0.28,62,131.38,0.91,0.23,889,1,195,1.7000000000000002,0.0000,0.0000 +2012,9,16,5,30,12.8,1.72,0.042,0.59,0,0,0,0,1,6.7,0,0,0,0,0.28,66.42,139.22,0.91,0.23,889,1,207,1.6,0.0000,0.0000 +2012,9,16,6,30,12.100000000000001,1.71,0.041,0.59,0,0,0,0,1,6.6000000000000005,0,0,0,0,0.279,69.24,143.14000000000001,0.91,0.23,888,1,220,1.5,0.0000,0.0000 +2012,9,16,7,30,11.600000000000001,1.71,0.041,0.59,0,0,0,0,8,6.300000000000001,0,0,0,0,0.279,70.06,141.89000000000001,0.91,0.23,888,0.9,234,1.5,0.0000,0.0000 +2012,9,16,8,30,11,1.71,0.04,0.59,0,0,0,0,8,5.7,0,0,0,0,0.278,69.82000000000001,135.92000000000002,0.91,0.23,888,0.9,248,1.5,0.0000,0.0000 +2012,9,16,9,30,10.5,1.71,0.04,0.59,0,0,0,0,0,5,0,0,0,0,0.278,68.73,126.81,0.9,0.23,887,0.8,262,1.5,0.0000,0.0000 +2012,9,16,10,30,10,1.71,0.04,0.59,0,0,0,0,1,4.4,0,0,0,0,0.278,68.3,115.95,0.9,0.23,887,0.8,275,1.5,0.0000,0.0000 +2012,9,16,11,30,9.600000000000001,1.72,0.04,0.59,0,0,0,0,0,4,0,0,0,0,0.279,68.09,104.15,0.9,0.23,887,0.8,285,1.4000000000000001,0.0000,0.0000 +2012,9,16,12,30,10.700000000000001,1.73,0.041,0.59,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.279,62.58,91.9,0.9,0.23,887,0.7000000000000001,294,1.9000000000000001,0.0000,0.0000 +2012,9,16,13,30,13.9,1.74,0.041,0.59,40,635,156,0,0,4.1000000000000005,40,635,0,156,0.279,51.68,79.44,0.89,0.23,887,0.7000000000000001,302,2.4000000000000004,3.6705,2.7995 +2012,9,16,14,30,18.2,1.76,0.043000000000000003,0.59,60,836,383,0,0,4.3,60,836,0,383,0.28,39.84,67.24,0.89,0.23,888,0.7000000000000001,314,2.1,18.7376,14.5575 +2012,9,16,15,30,22.5,1.78,0.045,0.59,72,926,597,0,0,2.5,72,926,0,597,0.28,26.810000000000002,55.51,0.89,0.23,888,0.7000000000000001,341,1.4000000000000001,26.7822,20.9643 +2012,9,16,16,30,25.200000000000003,1.81,0.047,0.59,81,973,771,0,0,-0.2,81,973,0,771,0.281,18.76,44.88,0.89,0.23,887,0.7000000000000001,182,1.3,23.3391,18.3261 +2012,9,16,17,30,26.8,1.84,0.05,0.59,87,997,889,0,0,-0.8,87,997,0,889,0.28200000000000003,16.39,36.46,0.89,0.23,887,0.7000000000000001,8,1.5,30.2394,23.7777 +2012,9,16,18,30,28.1,1.8900000000000001,0.056,0.59,92,1002,941,0,0,-1.2000000000000002,92,1002,0,941,0.28300000000000003,14.72,32.14,0.89,0.23,886,0.7000000000000001,14,1.6,30.3571,23.8824 +2012,9,16,19,30,28.900000000000002,1.94,0.062,0.59,94,994,922,0,0,-1.6,94,994,0,922,0.28300000000000003,13.69,33.59,0.89,0.23,885,0.7000000000000001,21,1.8,35.3522,27.8078 +2012,9,16,20,30,29.3,1.98,0.069,0.59,94,970,835,0,0,-2,94,970,0,835,0.28400000000000003,13,40.18,0.89,0.23,884,0.7000000000000001,28,1.9000000000000001,16.6683,13.0996 +2012,9,16,21,30,29.200000000000003,2,0.07100000000000001,0.59,88,931,687,0,0,-2.3000000000000003,88,931,0,687,0.28400000000000003,12.8,49.870000000000005,0.89,0.23,884,0.7000000000000001,36,1.9000000000000001,32.8685,25.7783 +2012,9,16,22,30,28.200000000000003,2.02,0.075,0.59,78,856,490,0,0,-2.4000000000000004,78,856,0,490,0.28300000000000003,13.38,61.15,0.89,0.23,883,0.7000000000000001,49,1.8,24.6298,19.2274 +2012,9,16,23,30,25.200000000000003,2.0300000000000002,0.076,0.59,59,707,264,0,0,-0.9,59,707,0,264,0.28200000000000003,17.830000000000002,73.17,0.89,0.23,883,0.8,77,1.3,13.2114,10.1893 +2012,9,17,0,30,20.900000000000002,2.02,0.07200000000000001,0.59,25,358,53,0,0,6,25,358,0,53,0.28300000000000003,37.75,85.44,0.89,0.23,884,0.8,108,1.1,0.0000,0.0000 +2012,9,17,1,30,18.3,2,0.066,0.59,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28300000000000003,36.99,97.96000000000001,0.89,0.23,884,0.8,128,1.4000000000000001,0.0000,0.0000 +2012,9,17,2,30,17.1,1.96,0.058,0.59,0,0,0,0,0,2.6,0,0,0,0,0.28400000000000003,37.9,110.07000000000001,0.89,0.23,884,0.8,142,1.6,0.0000,0.0000 +2012,9,17,3,30,16.2,1.93,0.054,0.59,0,0,0,0,0,2.5,0,0,0,0,0.28500000000000003,39.65,121.53,0.89,0.23,884,0.8,155,1.7000000000000002,0.0000,0.0000 +2012,9,17,4,30,15.4,1.92,0.052000000000000005,0.59,0,0,0,0,0,2.7,0,0,0,0,0.28600000000000003,42.38,131.73,0.89,0.23,884,0.9,167,1.8,0.0000,0.0000 +2012,9,17,5,30,14.600000000000001,1.92,0.054,0.59,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28700000000000003,45.36,139.61,0.9,0.23,884,0.9,181,1.7000000000000002,0.0000,0.0000 +2012,9,17,6,30,13.9,1.92,0.056,0.59,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28700000000000003,47.6,143.54,0.9,0.23,884,1,195,1.7000000000000002,0.0000,0.0000 +2012,9,17,7,30,13.3,1.92,0.057,0.59,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.28700000000000003,49.120000000000005,142.24,0.9,0.23,884,1,209,1.7000000000000002,0.0000,0.0000 +2012,9,17,8,30,12.8,1.9100000000000001,0.058,0.59,0,0,0,0,0,2.7,0,0,0,0,0.28700000000000003,50.25,136.2,0.9,0.23,883,1,223,1.7000000000000002,0.0000,0.0000 +2012,9,17,9,30,12.4,1.9100000000000001,0.058,0.59,0,0,0,0,0,2.6,0,0,0,0,0.28800000000000003,51.38,127.03,0.9,0.23,883,1,235,1.6,0.0000,0.0000 +2012,9,17,10,30,12.100000000000001,1.9000000000000001,0.058,0.59,0,0,0,0,0,2.6,0,0,0,0,0.28800000000000003,52.27,116.13,0.9,0.23,883,1,243,1.6,0.0000,0.0000 +2012,9,17,11,30,11.8,1.9000000000000001,0.058,0.59,0,0,0,0,0,2.5,0,0,0,0,0.289,53,104.31,0.9,0.23,883,1,248,1.5,0.0000,0.0000 +2012,9,17,12,30,13.200000000000001,1.8900000000000001,0.058,0.59,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.289,47.86,92.05,0.9,0.23,883,1,253,1.8,0.0000,0.0000 +2012,9,17,13,30,16.6,1.8900000000000001,0.059000000000000004,0.59,42,584,148,0,0,2.7,42,584,0,148,0.28800000000000003,39.4,79.59,0.9,0.23,883,1,258,2.6,7.4356,5.6701 +2012,9,17,14,30,20.8,1.87,0.062,0.59,66,795,371,0,7,2.3000000000000003,157,423,0,319,0.28700000000000003,29.47,67.4,0.91,0.23,883,1,261,3,20.0762,15.5950 +2012,9,17,15,30,24.900000000000002,1.85,0.066,0.59,81,885,579,0,7,2.3000000000000003,200,555,0,512,0.28500000000000003,22.88,55.7,0.91,0.23,884,1.1,264,3,33.7034,26.3801 +2012,9,17,16,30,27.5,1.82,0.068,0.59,91,936,751,0,8,0.6000000000000001,220,604,0,646,0.28300000000000003,17.46,45.11,0.91,0.23,884,1.1,275,3,45.2945,35.5640 +2012,9,17,17,30,28.8,1.82,0.068,0.59,96,964,868,0,8,0.5,280,587,0,750,0.28,16.02,36.76,0.91,0.23,883,1.1,294,2.8000000000000003,53.3060,41.9136 +2012,9,17,18,30,29.6,1.87,0.076,0.59,102,965,916,0,8,0.7000000000000001,202,694,0,787,0.278,15.55,32.51,0.91,0.23,883,1.2000000000000002,310,2.8000000000000003,56.8692,44.7381 +2012,9,17,19,30,30,1.9100000000000001,0.075,0.59,101,962,899,0,8,1,256,665,0,808,0.277,15.530000000000001,33.99,0.91,0.23,882,1.2000000000000002,327,3,55.5836,43.7198 +2012,9,17,20,30,29.6,1.92,0.076,0.59,97,943,813,0,3,1.4000000000000001,405,367,0,684,0.276,16.3,40.550000000000004,0.91,0.23,881,1.2000000000000002,341,3.4000000000000004,49.6641,39.0287 +2012,9,17,21,30,28.700000000000003,1.9100000000000001,0.073,0.59,88,902,666,0,4,1.7000000000000002,358,269,0,530,0.277,17.61,50.21,0.91,0.23,881,1.3,352,3.9000000000000004,39.7071,31.1390 +2012,9,17,22,30,27,1.8900000000000001,0.07100000000000001,0.59,76,831,473,0,7,2.1,158,554,0,423,0.279,19.98,61.46,0.91,0.23,882,1.3,181,4.3,26.8276,20.9392 +2012,9,17,23,30,24.5,1.8800000000000001,0.07,0.59,58,688,253,0,8,2.7,119,322,0,211,0.28200000000000003,24.21,73.47,0.91,0.23,882,1.3,9,4.3,13.1261,10.1189 +2012,9,18,0,30,21.400000000000002,1.8900000000000001,0.07,0.59,24,324,48,7,7,3.8000000000000003,31,4,7,32,0.28600000000000003,31.5,85.72,0.91,0.24,884,1.4000000000000001,15,4,0.0000,0.0000 +2012,9,18,1,30,19.3,1.9000000000000001,0.075,0.59,0,0,0,0,1,4.6000000000000005,0,0,0,0,0.291,37.82,98.26,0.92,0.24,885,1.6,19,4.2,0.0000,0.0000 +2012,9,18,2,30,18.1,1.9100000000000001,0.089,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.295,42.32,110.38,0.93,0.24,886,1.8,24,4.5,0.0000,0.0000 +2012,9,18,3,30,17.2,1.83,0.126,0.59,0,0,0,0,0,5.800000000000001,0,0,0,0,0.299,47.15,121.86,0.9400000000000001,0.24,887,2,27,4.6000000000000005,0.0000,0.0000 +2012,9,18,4,30,16.6,1.73,0.166,0.59,0,0,0,0,4,6.9,0,0,0,0,0.301,52.550000000000004,132.09,0.9500000000000001,0.24,888,2.2,31,4.4,0.0000,0.0000 +2012,9,18,5,30,15.9,1.69,0.176,0.59,0,0,0,0,8,7.9,0,0,0,0,0.303,58.96,140,0.9500000000000001,0.24,888,2.1,39,4,0.0000,0.0000 +2012,9,18,6,30,15.200000000000001,1.71,0.149,0.59,0,0,0,0,4,8.5,0,0,0,0,0.305,64.49,143.93,0.9400000000000001,0.24,888,2,46,3.7,0.0000,0.0000 +2012,9,18,7,30,14.100000000000001,1.82,0.116,0.59,0,0,0,0,4,9,0,0,0,0,0.307,71.27,142.59,0.93,0.24,889,1.8,42,3.6,0.0000,0.0000 +2012,9,18,8,30,13,1.8900000000000001,0.106,0.59,0,0,0,0,0,9,0,0,0,0,0.307,76.69,136.48,0.93,0.24,889,1.6,37,3.3000000000000003,0.0000,0.0000 +2012,9,18,9,30,12.100000000000001,1.92,0.106,0.59,0,0,0,0,0,8.700000000000001,0,0,0,0,0.306,79.68,127.26,0.93,0.24,889,1.6,38,2.8000000000000003,0.0000,0.0000 +2012,9,18,10,30,11.3,1.95,0.11,0.59,0,0,0,0,0,8.200000000000001,0,0,0,0,0.305,81.5,116.31,0.93,0.24,890,1.5,39,2.3000000000000003,0.0000,0.0000 +2012,9,18,11,30,10.5,1.97,0.114,0.59,0,0,0,1,0,7.800000000000001,0,0,1,0,0.303,83.24,104.47,0.93,0.24,890,1.5,39,1.8,0.0000,0.0000 +2012,9,18,12,30,10.8,1.98,0.115,0.59,0,0,0,0,0,7.4,0,0,0,0,0.302,79.69,92.19,0.93,0.24,891,1.5,38,2,0.0000,0.0000 +2012,9,18,13,30,12.8,1.99,0.115,0.59,51,480,136,0,0,7.1000000000000005,51,480,0,136,0.3,68.17,79.73,0.93,0.24,891,1.5,48,2.7,7.0541,5.3782 +2012,9,18,14,30,15.5,2,0.113,0.59,81,713,353,0,0,5.7,81,713,0,353,0.3,52.13,67.56,0.93,0.24,892,1.5,63,3,16.6996,12.9700 +2012,9,18,15,30,18.2,2,0.108,0.59,96,828,561,0,0,4.800000000000001,96,828,0,561,0.301,41.25,55.89,0.92,0.24,892,1.5,74,2.6,28.8786,22.6019 +2012,9,18,16,30,20.700000000000003,2,0.10200000000000001,0.59,105,891,732,0,0,4.7,105,891,0,732,0.301,34.99,45.35,0.92,0.24,892,1.5,90,1.9000000000000001,37.9255,29.7766 +2012,9,18,17,30,23.1,2,0.095,0.59,109,927,849,0,0,4.9,109,927,0,849,0.3,30.62,37.07,0.92,0.24,891,1.5,122,1.4000000000000001,44.9442,35.3374 +2012,9,18,18,30,25.200000000000003,2.0300000000000002,0.10300000000000001,0.59,115,936,901,0,0,4.800000000000001,115,936,0,901,0.298,26.79,32.89,0.92,0.24,890,1.4000000000000001,164,1.3,47.5330,37.3920 +2012,9,18,19,30,26.6,2.0300000000000002,0.098,0.59,112,936,885,0,0,4.3,112,936,0,885,0.297,23.900000000000002,34.38,0.92,0.24,889,1.4000000000000001,193,1.4000000000000001,48.6764,38.2851 +2012,9,18,20,30,27.3,2.0300000000000002,0.093,0.59,105,923,803,0,0,3.9000000000000004,105,923,0,803,0.296,22.23,40.92,0.92,0.24,888,1.3,207,1.6,40.6471,31.9407 +2012,9,18,21,30,27.400000000000002,2.0300000000000002,0.092,0.59,96,883,657,0,0,3.5,96,883,0,657,0.295,21.580000000000002,50.54,0.92,0.24,887,1.3,214,1.6,30.5946,23.9904 +2012,9,18,22,30,26.8,2.0300000000000002,0.08700000000000001,0.59,81,811,465,0,0,3.3000000000000003,81,811,0,465,0.294,21.92,61.77,0.91,0.24,887,1.3,213,1.6,23.1146,18.0377 +2012,9,18,23,30,24.400000000000002,2.0100000000000002,0.082,0.59,60,666,246,0,0,3.3000000000000003,60,666,0,246,0.294,25.3,73.76,0.91,0.24,887,1.3,193,1.3,10.4617,8.0610 +2012,9,19,0,30,20.900000000000002,2,0.076,0.59,23,306,44,0,0,7.6000000000000005,23,306,0,44,0.294,42.32,86,0.91,0.23,887,1.3,173,1.1,0.0000,0.0000 +2012,9,19,1,30,18.8,1.97,0.07100000000000001,0.59,0,0,0,0,0,5.9,0,0,0,0,0.294,42.9,98.55,0.91,0.23,887,1.3,169,1.5,0.0000,0.0000 +2012,9,19,2,30,18.1,1.96,0.067,0.59,0,0,0,0,0,5,0,0,0,0,0.294,42.160000000000004,110.68,0.91,0.23,888,1.3,173,2.1,0.0000,0.0000 +2012,9,19,3,30,17.5,1.95,0.065,0.59,0,0,0,0,0,4.5,0,0,0,0,0.294,42.21,122.19,0.91,0.23,888,1.3,178,2.7,0.0000,0.0000 +2012,9,19,4,30,16.8,1.94,0.064,0.59,0,0,0,0,0,4.5,0,0,0,0,0.294,43.93,132.45,0.91,0.23,888,1.3,184,3.1,0.0000,0.0000 +2012,9,19,5,30,16.1,1.95,0.064,0.59,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.294,46.54,140.39000000000001,0.91,0.23,888,1.4000000000000001,192,3.2,0.0000,0.0000 +2012,9,19,6,30,15.600000000000001,1.95,0.065,0.59,0,0,0,0,0,4.9,0,0,0,0,0.293,48.980000000000004,144.32,0.91,0.23,888,1.4000000000000001,200,3.3000000000000003,0.0000,0.0000 +2012,9,19,7,30,15.100000000000001,1.95,0.066,0.59,0,0,0,0,0,5.300000000000001,0,0,0,0,0.292,51.89,142.94,0.91,0.23,888,1.4000000000000001,207,3.4000000000000004,0.0000,0.0000 +2012,9,19,8,30,14.8,1.94,0.067,0.59,0,0,0,0,0,5.800000000000001,0,0,0,0,0.292,54.88,136.76,0.91,0.23,888,1.5,214,3.3000000000000003,0.0000,0.0000 +2012,9,19,9,30,14.4,1.93,0.068,0.59,0,0,0,0,0,6.5,0,0,0,0,0.291,58.980000000000004,127.48,0.91,0.23,887,1.5,219,3.1,0.0000,0.0000 +2012,9,19,10,30,13.9,1.93,0.068,0.59,0,0,0,0,0,7.2,0,0,0,0,0.291,63.92,116.49000000000001,0.91,0.23,887,1.5,223,2.8000000000000003,0.0000,0.0000 +2012,9,19,11,30,13.4,1.92,0.069,0.59,0,0,0,0,0,7.800000000000001,0,0,0,0,0.291,68.84,104.62,0.92,0.23,887,1.6,226,2.5,0.0000,0.0000 +2012,9,19,12,30,14.100000000000001,1.92,0.07,0.59,0,0,0,0,0,8.3,0,0,0,0,0.291,68.09,92.34,0.92,0.23,888,1.6,228,2.9000000000000004,0.0000,0.0000 +2012,9,19,13,30,16.6,1.92,0.07100000000000001,0.59,43,535,137,0,0,8.700000000000001,43,535,0,137,0.29,59.64,79.88,0.92,0.23,888,1.6,226,3.5,6.4826,4.9416 +2012,9,19,14,30,20.6,1.92,0.07100000000000001,0.59,68,762,357,0,0,9.200000000000001,68,762,0,357,0.29,47.96,67.72,0.92,0.23,888,1.5,223,4.4,18.4552,14.3312 +2012,9,19,15,30,24.8,1.92,0.07100000000000001,0.59,82,864,564,0,0,9.5,82,864,0,564,0.289,37.96,56.08,0.91,0.23,888,1.5,226,5.300000000000001,31.6135,24.7404 +2012,9,19,16,30,27.900000000000002,1.93,0.07,0.59,91,922,736,0,0,8.700000000000001,91,922,0,736,0.28800000000000003,29.89,45.59,0.91,0.23,887,1.4000000000000001,227,5.2,42.9439,33.7149 +2012,9,19,17,30,30.200000000000003,1.93,0.069,0.59,96,952,852,0,0,7.2,96,952,0,852,0.28800000000000003,23.650000000000002,37.38,0.91,0.23,887,1.4000000000000001,228,4.9,50.8446,39.9749 +2012,9,19,18,30,31.900000000000002,1.96,0.088,0.59,107,948,899,0,0,5.7,107,948,0,899,0.28800000000000003,19.32,33.27,0.91,0.23,886,1.4000000000000001,228,4.5,54.3835,42.7791 +2012,9,19,19,30,32.9,1.94,0.08600000000000001,0.59,105,945,882,0,0,4.2,105,945,0,882,0.28800000000000003,16.48,34.78,0.91,0.23,885,1.4000000000000001,230,4.1000000000000005,53.2776,41.9021 +2012,9,19,20,30,33.4,1.93,0.084,0.59,100,930,799,0,0,2.8000000000000003,100,930,0,799,0.28800000000000003,14.56,41.29,0.91,0.23,885,1.3,234,3.7,47.6760,37.4618 +2012,9,19,21,30,33.2,1.9100000000000001,0.074,0.59,88,898,655,0,0,1.7000000000000002,88,898,0,655,0.28800000000000003,13.56,50.88,0.91,0.23,884,1.3,238,3.3000000000000003,37.8790,29.6996 +2012,9,19,22,30,32.2,1.9100000000000001,0.07,0.59,75,831,464,0,0,0.8,75,831,0,464,0.28800000000000003,13.51,62.08,0.91,0.23,884,1.2000000000000002,237,2.5,25.3598,19.7859 +2012,9,19,23,30,28.900000000000002,1.92,0.067,0.59,56,686,244,0,0,4.1000000000000005,56,686,0,244,0.28800000000000003,20.62,74.06,0.91,0.23,884,1.2000000000000002,227,1.4000000000000001,12.1645,9.3685 +2012,9,20,0,30,24.900000000000002,1.94,0.066,0.59,21,308,41,0,0,7.7,21,308,0,41,0.289,33.49,86.29,0.91,0.23,884,1.2000000000000002,217,1.2000000000000002,0.0000,0.0000 +2012,9,20,1,30,22.8,1.95,0.065,0.59,0,0,0,0,1,5.4,0,0,0,0,0.29,32.44,98.85000000000001,0.91,0.23,885,1.2000000000000002,216,1.4000000000000001,0.0000,0.0000 +2012,9,20,2,30,21.700000000000003,1.96,0.064,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.29,33.81,110.99000000000001,0.91,0.23,885,1.3,219,1.6,0.0000,0.0000 +2012,9,20,3,30,21,1.96,0.064,0.59,0,0,0,0,0,4.7,0,0,0,0,0.291,34.46,122.52,0.91,0.23,886,1.3,222,1.7000000000000002,0.0000,0.0000 +2012,9,20,4,30,20,1.97,0.063,0.59,0,0,0,0,0,4.3,0,0,0,0,0.291,35.51,132.81,0.91,0.23,886,1.3,227,1.9000000000000001,0.0000,0.0000 +2012,9,20,5,30,18.7,1.97,0.064,0.59,0,0,0,0,1,4.2,0,0,0,0,0.291,38.29,140.78,0.91,0.23,886,1.3,233,2.2,0.0000,0.0000 +2012,9,20,6,30,17.5,1.98,0.066,0.59,0,0,0,0,0,4.3,0,0,0,0,0.291,41.68,144.72,0.91,0.23,886,1.4000000000000001,239,2.4000000000000004,0.0000,0.0000 +2012,9,20,7,30,16.6,1.97,0.069,0.59,0,0,0,0,0,4.4,0,0,0,0,0.291,44.24,143.29,0.91,0.23,886,1.4000000000000001,245,2.5,0.0000,0.0000 +2012,9,20,8,30,15.9,1.96,0.07200000000000001,0.59,0,0,0,0,0,4.2,0,0,0,0,0.291,45.800000000000004,137.04,0.92,0.23,886,1.4000000000000001,251,2.4000000000000004,0.0000,0.0000 +2012,9,20,9,30,15.200000000000001,1.95,0.076,0.59,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.29,47.44,127.7,0.92,0.23,886,1.4000000000000001,256,2.3000000000000003,0.0000,0.0000 +2012,9,20,10,30,14.600000000000001,1.95,0.079,0.59,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.29,48.78,116.67,0.91,0.23,886,1.4000000000000001,261,2.1,0.0000,0.0000 +2012,9,20,11,30,13.9,1.94,0.081,0.59,0,0,0,0,0,3.6,0,0,0,0,0.29,49.980000000000004,104.78,0.91,0.23,886,1.3,268,1.8,0.0000,0.0000 +2012,9,20,12,30,14.5,1.93,0.083,0.59,0,0,0,0,0,3.2,0,0,0,0,0.291,46.54,92.48,0.91,0.23,886,1.3,278,2,0.0000,0.0000 +2012,9,20,13,30,17.1,1.92,0.084,0.59,45,521,135,0,0,2.8000000000000003,45,521,0,135,0.291,38.38,80.02,0.91,0.23,886,1.3,290,2.4000000000000004,6.5312,4.9778 +2012,9,20,14,30,20.700000000000003,1.9100000000000001,0.084,0.59,71,750,354,0,0,2.1,71,750,0,354,0.292,29.18,67.88,0.91,0.23,887,1.3,301,2.3000000000000003,18.6397,14.4720 +2012,9,20,15,30,25.1,1.9000000000000001,0.083,0.59,87,857,563,0,0,2.3000000000000003,87,857,0,563,0.292,22.650000000000002,56.27,0.92,0.23,887,1.3,306,1.5,31.7533,24.8478 +2012,9,20,16,30,29.5,1.8900000000000001,0.08,0.59,96,916,734,0,0,1.2000000000000002,96,916,0,734,0.293,16.19,45.83,0.92,0.23,886,1.3,287,1.2000000000000002,43.1475,33.8731 +2012,9,20,17,30,32.4,1.8900000000000001,0.076,0.59,100,948,850,0,0,-0.30000000000000004,100,948,0,850,0.293,12.32,37.69,0.92,0.23,886,1.3,256,1.3,50.9915,40.0887 +2012,9,20,18,30,33.800000000000004,1.8900000000000001,0.073,0.59,100,962,901,0,0,-0.8,100,962,0,901,0.293,10.950000000000001,33.65,0.92,0.23,885,1.3,239,1.4000000000000001,54.2273,42.6545 +2012,9,20,19,30,34.4,1.8800000000000001,0.07,0.59,98,961,883,0,0,-1.2000000000000002,98,961,0,883,0.293,10.33,35.18,0.92,0.23,884,1.3,236,1.6,53.0579,41.7274 +2012,9,20,20,30,34.5,1.87,0.068,0.59,93,943,798,0,0,-1.5,93,943,0,798,0.294,10.03,41.660000000000004,0.92,0.23,883,1.3,236,1.9000000000000001,47.3953,37.2389 +2012,9,20,21,30,34,1.84,0.065,0.59,85,909,654,0,0,-1.8,85,909,0,654,0.294,10.08,51.22,0.93,0.23,883,1.2000000000000002,234,2.1,37.7150,29.5680 +2012,9,20,22,30,32.800000000000004,1.84,0.067,0.59,74,832,460,0,0,-2,74,832,0,460,0.294,10.620000000000001,62.39,0.93,0.23,883,1.2000000000000002,227,1.9000000000000001,25.2550,19.7001 +2012,9,20,23,30,29.5,1.84,0.07100000000000001,0.59,57,674,239,0,0,2.2,57,674,0,239,0.295,17.35,74.36,0.93,0.23,883,1.2000000000000002,205,1.3,12.0324,9.2621 +2012,9,21,0,30,25.5,1.83,0.075,0.59,21,275,38,0,0,7.5,21,275,0,38,0.296,31.76,86.57000000000001,0.93,0.23,883,1.2000000000000002,185,1.2000000000000002,0.0000,0.0000 +2012,9,21,1,30,23.200000000000003,1.81,0.081,0.59,0,0,0,0,1,4.800000000000001,0,0,0,0,0.297,30.37,99.14,0.93,0.23,883,1.2000000000000002,184,1.4000000000000001,0.0000,0.0000 +2012,9,21,2,30,21.8,1.81,0.082,0.59,0,0,0,0,3,4.3,0,0,0,0,0.297,31.89,111.3,0.93,0.23,883,1.3,192,1.6,0.0000,0.0000 +2012,9,21,3,30,20.700000000000003,1.81,0.081,0.59,0,0,0,0,1,4,0,0,0,0,0.298,33.38,122.84,0.93,0.23,883,1.3,200,1.8,0.0000,0.0000 +2012,9,21,4,30,19.8,1.81,0.079,0.59,0,0,0,0,0,3.7,0,0,0,0,0.298,34.43,133.17000000000002,0.93,0.23,883,1.3,206,2.2,0.0000,0.0000 +2012,9,21,5,30,18.900000000000002,1.81,0.077,0.59,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.298,35.83,141.17000000000002,0.92,0.23,883,1.3,210,2.6,0.0000,0.0000 +2012,9,21,6,30,18,1.82,0.076,0.59,0,0,0,0,0,3.5,0,0,0,0,0.297,38.06,145.11,0.92,0.23,884,1.3,214,2.8000000000000003,0.0000,0.0000 +2012,9,21,7,30,17.2,1.82,0.076,0.59,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.297,40.79,143.64000000000001,0.92,0.23,884,1.3,217,2.8000000000000003,0.0000,0.0000 +2012,9,21,8,30,16.3,1.81,0.078,0.59,0,0,0,0,0,4.2,0,0,0,0,0.298,44.45,137.32,0.92,0.23,884,1.3,223,2.5,0.0000,0.0000 +2012,9,21,9,30,15.3,1.81,0.081,0.59,0,0,0,0,0,4.5,0,0,0,0,0.298,48.67,127.92,0.92,0.23,884,1.3,232,2.2,0.0000,0.0000 +2012,9,21,10,30,14.5,1.8,0.083,0.59,0,0,0,0,0,4.800000000000001,0,0,0,0,0.299,52.08,116.85000000000001,0.92,0.23,885,1.3,242,1.7000000000000002,0.0000,0.0000 +2012,9,21,11,30,13.600000000000001,1.8,0.082,0.59,0,0,0,0,0,4.800000000000001,0,0,0,0,0.299,55.38,104.93,0.92,0.23,885,1.3,254,1.4000000000000001,0.0000,0.0000 +2012,9,21,12,30,14.100000000000001,1.81,0.08,0.59,0,0,0,0,0,4.800000000000001,0,0,0,0,0.299,53.44,92.63,0.92,0.23,885,1.2000000000000002,271,1.4000000000000001,0.0000,0.0000 +2012,9,21,13,30,16.7,1.82,0.079,0.59,44,525,134,0,0,5.2,44,525,0,134,0.299,46.59,80.17,0.91,0.23,886,1.2000000000000002,291,1.7000000000000002,0.0000,0.0000 +2012,9,21,14,30,20.400000000000002,1.83,0.078,0.59,70,759,354,0,0,5.2,70,759,0,354,0.299,37.04,68.04,0.92,0.23,886,1.2000000000000002,314,1.7000000000000002,18.4584,14.3289 +2012,9,21,15,30,25,1.84,0.078,0.59,85,865,563,0,0,5,85,865,0,563,0.299,27.6,56.47,0.92,0.23,886,1.2000000000000002,193,1.5,31.6675,24.7787 +2012,9,21,16,30,28.8,1.85,0.079,0.59,95,916,731,0,0,3.3000000000000003,95,916,0,731,0.297,19.59,46.08,0.92,0.23,886,1.3,82,1.8,42.9991,33.7547 +2012,9,21,17,30,31.1,1.86,0.081,0.59,102,944,845,0,0,2.6,102,944,0,845,0.296,16.330000000000002,38.01,0.92,0.23,886,1.3,105,2.1,50.8387,39.9668 +2012,9,21,18,30,32.6,1.77,0.07,0.59,100,964,898,0,0,2.2,100,964,0,898,0.295,14.57,34.03,0.93,0.23,885,1.3,104,2.2,54.3119,42.7192 +2012,9,21,19,30,33.5,1.78,0.07200000000000001,0.59,100,958,879,0,0,1.9000000000000001,100,958,0,879,0.293,13.530000000000001,35.57,0.93,0.23,885,1.3,99,2.3000000000000003,53.0783,41.7414 +2012,9,21,20,30,33.7,1.8,0.07200000000000001,0.59,95,935,790,0,0,1.6,95,935,0,790,0.292,13.09,42.04,0.93,0.23,884,1.4000000000000001,94,2.4000000000000004,47.2921,37.1554 +2012,9,21,21,30,33.300000000000004,1.8,0.07,0.59,87,896,644,0,0,1.4000000000000001,87,896,0,644,0.291,13.23,51.56,0.93,0.23,884,1.4000000000000001,92,2.5,37.6081,29.4812 +2012,9,21,22,30,32.1,1.8,0.07,0.59,75,819,451,0,0,1.4000000000000001,75,819,0,451,0.29,14.17,62.7,0.93,0.23,884,1.4000000000000001,93,2.4000000000000004,24.9867,19.4869 +2012,9,21,23,30,28.8,1.81,0.07,0.59,56,663,231,0,1,2.7,56,663,0,231,0.29,18.71,74.65,0.92,0.23,884,1.4000000000000001,93,1.8,11.7538,9.0430 +2012,9,22,0,30,24.700000000000003,1.81,0.069,0.59,19,264,34,7,3,7.1000000000000005,21,0,7,21,0.29,32.43,86.85000000000001,0.92,0.23,884,1.4000000000000001,94,1.5,0.0000,0.0000 +2012,9,22,1,30,22.6,1.81,0.067,0.59,0,0,0,0,3,6.1000000000000005,0,0,0,0,0.29,34.42,99.44,0.92,0.23,885,1.4000000000000001,97,1.7000000000000002,0.0000,0.0000 +2012,9,22,2,30,21.6,1.81,0.066,0.59,0,0,0,0,3,6.1000000000000005,0,0,0,0,0.291,36.43,111.60000000000001,0.92,0.23,885,1.4000000000000001,103,1.9000000000000001,0.0000,0.0000 +2012,9,22,3,30,20.6,1.81,0.067,0.59,0,0,0,0,0,6.300000000000001,0,0,0,0,0.291,39.43,123.17,0.92,0.23,886,1.5,111,1.9000000000000001,0.0000,0.0000 +2012,9,22,4,30,19.6,1.81,0.068,0.59,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.291,42.78,133.53,0.92,0.23,886,1.5,124,1.7000000000000002,0.0000,0.0000 +2012,9,22,5,30,18.7,1.82,0.07100000000000001,0.59,0,0,0,0,0,6.800000000000001,0,0,0,0,0.292,46.01,141.56,0.92,0.23,886,1.5,142,1.5,0.0000,0.0000 +2012,9,22,6,30,17.900000000000002,1.82,0.075,0.59,0,0,0,0,0,7,0,0,0,0,0.292,48.79,145.51,0.92,0.23,886,1.6,166,1.4000000000000001,0.0000,0.0000 +2012,9,22,7,30,17.2,1.84,0.081,0.59,0,0,0,0,0,6.9,0,0,0,0,0.291,50.870000000000005,143.99,0.92,0.23,887,1.6,190,1.4000000000000001,0.0000,0.0000 +2012,9,22,8,30,16.6,1.85,0.088,0.59,0,0,0,0,0,6.7,0,0,0,0,0.291,52.06,137.6,0.92,0.23,887,1.6,210,1.4000000000000001,0.0000,0.0000 +2012,9,22,9,30,16.1,1.86,0.094,0.59,0,0,0,0,0,6.4,0,0,0,0,0.291,52.620000000000005,128.13,0.92,0.23,887,1.6,227,1.3,0.0000,0.0000 +2012,9,22,10,30,15.600000000000001,1.87,0.1,0.59,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.291,53.28,117.03,0.92,0.23,888,1.6,239,1.3,0.0000,0.0000 +2012,9,22,11,30,15.100000000000001,1.8800000000000001,0.105,0.59,0,0,0,0,0,5.9,0,0,0,0,0.291,54,105.09,0.92,0.23,888,1.6,249,1.2000000000000002,0.0000,0.0000 +2012,9,22,12,30,15.700000000000001,1.8900000000000001,0.11,0.59,0,0,0,0,0,5.7,0,0,0,0,0.29,51.28,92.78,0.92,0.23,889,1.7000000000000002,258,1.3,0.0000,0.0000 +2012,9,22,13,30,18.1,1.8900000000000001,0.116,0.59,48,455,125,0,0,6,48,455,0,125,0.289,45.09,80.32000000000001,0.92,0.23,889,1.7000000000000002,265,1.8,0.0000,0.0000 +2012,9,22,14,30,22,1.8900000000000001,0.121,0.59,81,691,338,0,0,5.800000000000001,81,691,0,338,0.28800000000000003,34.800000000000004,68.21000000000001,0.92,0.23,890,1.7000000000000002,263,1.8,18.4337,14.3073 +2012,9,22,15,30,26.6,1.8800000000000001,0.125,0.59,102,802,542,0,0,5.7,102,802,0,542,0.28700000000000003,26.400000000000002,56.660000000000004,0.92,0.23,890,1.7000000000000002,236,1.5,31.6362,24.7521 +2012,9,22,16,30,30.400000000000002,1.8800000000000001,0.127,0.59,115,862,710,7,2,4.7,115,862,5,710,0.28600000000000003,19.650000000000002,46.32,0.92,0.23,890,1.7000000000000002,195,1.7000000000000002,42.7906,33.5892 +2012,9,22,17,30,32.4,1.8900000000000001,0.125,0.59,121,896,824,0,0,4.1000000000000005,121,896,0,824,0.28500000000000003,16.81,38.32,0.92,0.23,890,1.7000000000000002,168,2,50.5052,39.7028 +2012,9,22,18,30,33.6,1.9100000000000001,0.151,0.59,136,890,870,0,0,3.6,136,890,0,870,0.28500000000000003,15.18,34.410000000000004,0.93,0.23,889,1.7000000000000002,160,2.4000000000000004,54.0944,42.5463 +2012,9,22,19,30,34.1,1.92,0.147,0.59,132,888,851,0,0,3.1,132,888,0,851,0.28400000000000003,14.290000000000001,35.97,0.92,0.23,888,1.7000000000000002,158,2.6,52.7986,41.5193 +2012,9,22,20,30,34.2,1.92,0.14200000000000002,0.59,124,868,765,0,0,2.6,124,868,0,765,0.28400000000000003,13.75,42.410000000000004,0.92,0.23,888,1.7000000000000002,159,2.9000000000000004,46.7728,36.7449 +2012,9,22,21,30,33.6,1.93,0.161,0.59,120,804,616,0,0,2.1,120,804,0,616,0.28400000000000003,13.67,51.9,0.92,0.23,887,1.7000000000000002,161,3.1,36.9838,28.9887 +2012,9,22,22,30,32.4,1.92,0.16,0.59,102,716,427,0,0,1.7000000000000002,102,716,0,427,0.28400000000000003,14.200000000000001,63.02,0.92,0.23,887,1.6,162,3,24.4477,19.0624 +2012,9,22,23,30,29.1,1.92,0.155,0.59,72,545,213,0,0,2.1,72,545,0,213,0.28500000000000003,17.69,74.95,0.92,0.23,887,1.6,162,2.3000000000000003,11.3308,8.7132 +2012,9,23,0,30,25.400000000000002,1.93,0.14400000000000002,0.59,19,164,27,0,0,5,19,164,0,27,0.28600000000000003,26.95,87.13,0.92,0.24,887,1.6,165,2.1,0.0000,0.0000 +2012,9,23,1,30,23.8,1.93,0.136,0.59,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.28600000000000003,27.75,99.73,0.92,0.24,888,1.6,171,2.9000000000000004,0.0000,0.0000 +2012,9,23,2,30,23.200000000000003,1.93,0.128,0.59,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28700000000000003,27.35,111.91,0.92,0.24,888,1.6,179,3.7,0.0000,0.0000 +2012,9,23,3,30,22.400000000000002,1.93,0.122,0.59,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28700000000000003,27.91,123.5,0.92,0.24,889,1.6,187,4.1000000000000005,0.0000,0.0000 +2012,9,23,4,30,21.5,1.93,0.12,0.59,0,0,0,0,0,2.7,0,0,0,0,0.28700000000000003,28.87,133.89000000000001,0.92,0.24,889,1.6,194,4.3,0.0000,0.0000 +2012,9,23,5,30,20.8,1.94,0.12,0.59,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.28600000000000003,29.38,141.95000000000002,0.92,0.24,889,1.5,199,4.3,0.0000,0.0000 +2012,9,23,6,30,20.1,1.94,0.122,0.59,0,0,0,0,0,2,0,0,0,0,0.28600000000000003,29.95,145.9,0.92,0.24,889,1.5,204,4.3,0.0000,0.0000 +2012,9,23,7,30,19.5,1.95,0.124,0.59,0,0,0,0,0,1.8,0,0,0,0,0.28500000000000003,30.67,144.34,0.92,0.24,890,1.5,207,4.2,0.0000,0.0000 +2012,9,23,8,30,18.8,1.96,0.127,0.59,0,0,0,0,0,1.8,0,0,0,0,0.28500000000000003,32.05,137.87,0.92,0.24,890,1.5,211,4.1000000000000005,0.0000,0.0000 +2012,9,23,9,30,18,1.96,0.128,0.59,0,0,0,0,0,2.1,0,0,0,0,0.28500000000000003,34.46,128.35,0.92,0.24,890,1.5,214,3.8000000000000003,0.0000,0.0000 +2012,9,23,10,30,17.2,1.97,0.13,0.59,0,0,0,0,0,2.7,0,0,0,0,0.28600000000000003,37.85,117.21000000000001,0.92,0.24,890,1.5,217,3.4000000000000004,0.0000,0.0000 +2012,9,23,11,30,16.5,1.97,0.13,0.59,0,0,0,0,3,3.3000000000000003,0,0,0,0,0.28600000000000003,41.4,105.24000000000001,0.92,0.24,890,1.5,221,3,0.0000,0.0000 +2012,9,23,12,30,16.8,1.97,0.128,0.59,0,0,0,0,4,3.8000000000000003,0,0,0,0,0.28600000000000003,42.050000000000004,92.92,0.92,0.24,891,1.5,223,3.2,0.0000,0.0000 +2012,9,23,13,30,18.900000000000002,1.96,0.128,0.59,49,443,123,7,3,4.1000000000000005,81,5,7,82,0.28600000000000003,37.5,80.47,0.92,0.24,891,1.5,223,3.6,0.0000,0.0000 +2012,9,23,14,30,22.700000000000003,1.96,0.128,0.59,83,688,337,0,4,4.3,157,1,0,157,0.28500000000000003,30.22,68.37,0.92,0.24,891,1.5,220,4.1000000000000005,17.5754,13.6387 +2012,9,23,15,30,27,1.96,0.127,0.59,102,805,543,0,3,4,282,348,0,473,0.28400000000000003,22.830000000000002,56.86,0.92,0.24,891,1.5,213,5,30.4274,23.8043 +2012,9,23,16,30,30,1.97,0.128,0.59,115,870,713,7,3,1.9000000000000001,356,392,7,626,0.28400000000000003,16.54,46.57,0.92,0.24,891,1.4000000000000001,205,5.4,41.5305,32.5983 +2012,9,23,17,30,31.8,1.97,0.128,0.59,123,903,828,0,0,0.7000000000000001,123,903,0,828,0.28300000000000003,13.71,38.64,0.92,0.24,890,1.4000000000000001,199,5.300000000000001,49.2170,38.6885 +2012,9,23,18,30,32.800000000000004,1.96,0.111,0.59,117,928,879,0,0,0.2,117,928,0,879,0.28200000000000003,12.49,34.79,0.91,0.24,890,1.4000000000000001,194,5.300000000000001,52.3717,41.1895 +2012,9,23,19,30,33.4,1.96,0.107,0.59,115,930,863,0,0,-0.2,115,930,0,863,0.281,11.69,36.37,0.91,0.24,889,1.3,191,5.2,51.0770,40.1635 +2012,9,23,20,30,33.300000000000004,1.96,0.101,0.59,107,913,777,0,0,-0.7000000000000001,107,913,0,777,0.28,11.39,42.78,0.91,0.24,888,1.3,189,5.1000000000000005,45.2493,35.5457 +2012,9,23,21,30,32.7,1.96,0.093,0.59,95,878,633,1,0,-1.1,95,878,1,633,0.279,11.42,52.24,0.91,0.24,888,1.2000000000000002,188,5,35.3281,27.6879 +2012,9,23,22,30,31.400000000000002,1.96,0.088,0.59,80,801,440,1,0,-1.5,80,801,1,440,0.279,11.96,63.33,0.91,0.24,888,1.2000000000000002,186,4.7,23.0970,18.0053 +2012,9,23,23,30,28.400000000000002,1.95,0.084,0.59,58,641,221,1,0,-1.5,58,641,1,221,0.279,14.200000000000001,75.25,0.91,0.24,888,1.2000000000000002,182,3.7,10.4203,8.0087 +2012,9,24,0,30,24.8,1.95,0.082,0.59,17,225,27,0,0,0.2,17,225,0,27,0.279,19.85,87.41,0.91,0.24,888,1.1,181,2.9000000000000004,0.0000,0.0000 +2012,9,24,1,30,22.900000000000002,1.94,0.08,0.59,0,0,0,0,3,0.5,0,0,0,0,0.279,22.740000000000002,100.02,0.91,0.24,889,1.1,183,3.3000000000000003,0.0000,0.0000 +2012,9,24,2,30,21.900000000000002,1.94,0.08,0.59,0,0,0,0,3,0.6000000000000001,0,0,0,0,0.279,24.39,112.21000000000001,0.91,0.24,889,1.1,186,3.6,0.0000,0.0000 +2012,9,24,3,30,21,1.94,0.08,0.59,0,0,0,0,3,1.4000000000000001,0,0,0,0,0.279,27.14,123.82000000000001,0.91,0.24,889,1.1,190,3.7,0.0000,0.0000 +2012,9,24,4,30,20.200000000000003,1.92,0.08,0.59,0,0,0,0,3,2.4000000000000004,0,0,0,0,0.279,30.650000000000002,134.24,0.91,0.24,889,1.1,193,3.8000000000000003,0.0000,0.0000 +2012,9,24,5,30,19.6,1.9000000000000001,0.081,0.59,0,0,0,0,3,3.5,0,0,0,0,0.278,34.54,142.34,0.91,0.24,889,1.2000000000000002,197,3.9000000000000004,0.0000,0.0000 +2012,9,24,6,30,19.1,1.9000000000000001,0.081,0.59,0,0,0,0,4,4.7,0,0,0,0,0.278,38.550000000000004,146.3,0.91,0.24,889,1.2000000000000002,200,3.8000000000000003,0.0000,0.0000 +2012,9,24,7,30,18.7,1.8900000000000001,0.082,0.59,0,0,0,0,3,5.7,0,0,0,0,0.277,42.42,144.69,0.91,0.24,889,1.2000000000000002,202,3.8000000000000003,0.0000,0.0000 +2012,9,24,8,30,18.3,1.8800000000000001,0.081,0.59,0,0,0,0,7,6.6000000000000005,0,0,0,0,0.277,46.42,138.15,0.91,0.24,889,1.2000000000000002,203,3.7,0.0000,0.0000 +2012,9,24,9,30,17.7,1.86,0.081,0.59,0,0,0,0,4,7.5,0,0,0,0,0.277,51.24,128.57,0.92,0.24,889,1.2000000000000002,203,3.4000000000000004,0.0000,0.0000 +2012,9,24,10,30,17.1,1.84,0.081,0.59,0,0,0,0,3,8.3,0,0,0,0,0.278,56.24,117.38,0.92,0.24,889,1.3,206,3,0.0000,0.0000 +2012,9,24,11,30,16.400000000000002,1.84,0.08,0.59,0,0,0,0,4,9,0,0,0,0,0.278,61.730000000000004,105.4,0.92,0.24,888,1.3,210,2.7,0.0000,0.0000 +2012,9,24,12,30,16.5,1.85,0.079,0.59,0,0,0,0,4,9.700000000000001,0,0,0,0,0.279,64.26,93.07000000000001,0.92,0.24,888,1.3,212,2.9000000000000004,0.0000,0.0000 +2012,9,24,13,30,18.1,1.84,0.079,0.59,43,510,126,0,4,10.4,76,3,0,76,0.279,60.68,80.62,0.92,0.24,888,1.3,210,3.4000000000000004,0.0000,0.0000 +2012,9,24,14,30,21.1,1.83,0.079,0.59,70,750,344,0,4,11,215,69,0,240,0.279,52.63,68.54,0.92,0.24,888,1.3,206,4.3,8.1527,6.3254 +2012,9,24,15,30,24.3,1.82,0.078,0.59,85,856,550,0,3,11.4,325,133,0,397,0.278,44.52,57.06,0.92,0.24,888,1.4000000000000001,206,5.1000000000000005,26.5271,20.7512 +2012,9,24,16,30,26.8,1.82,0.077,0.59,94,913,719,0,7,10.3,316,349,0,555,0.276,35.44,46.82,0.92,0.24,887,1.4000000000000001,206,5,36.5884,28.7175 +2012,9,24,17,30,28.8,1.82,0.076,0.59,100,941,831,0,8,8.9,268,558,0,702,0.274,28.71,38.96,0.92,0.24,887,1.5,206,4.7,49.4213,38.8472 +2012,9,24,18,30,30.400000000000002,1.83,0.082,0.59,105,947,879,0,8,7.6000000000000005,258,569,0,723,0.272,24,35.17,0.92,0.24,885,1.5,206,4.5,52.8765,41.5846 +2012,9,24,19,30,31.3,1.84,0.082,0.59,104,943,859,0,8,6.5,314,494,0,709,0.27,21.21,36.77,0.92,0.24,884,1.5,205,4.3,51.7563,40.6956 +2012,9,24,20,30,31.6,1.85,0.083,0.59,100,921,771,0,8,5.7,277,470,0,620,0.269,19.73,43.160000000000004,0.92,0.24,883,1.5,205,4.3,45.9143,36.0657 +2012,9,24,21,30,31.200000000000003,1.85,0.085,0.59,92,875,624,0,8,5,266,366,0,488,0.27,19.19,52.58,0.92,0.24,883,1.5,206,4.2,36.2532,28.4098 +2012,9,24,22,30,30.1,1.85,0.08600000000000001,0.59,79,791,430,0,8,4.2,180,391,0,353,0.272,19.39,63.65,0.92,0.24,883,1.5,207,3.7,23.7500,18.5102 +2012,9,24,23,30,27.5,1.85,0.08700000000000001,0.59,58,621,213,0,7,4.2,125,45,0,136,0.274,22.54,75.55,0.92,0.24,882,1.5,204,2.6,10.7836,8.2835 +2012,9,25,0,30,24.700000000000003,1.85,0.088,0.59,16,188,24,7,7,5.6000000000000005,16,1,7,16,0.275,29.26,87.69,0.92,0.23,882,1.5,199,2,0.0000,0.0000 +2012,9,25,1,30,23.5,1.86,0.09,0.59,0,0,0,0,7,5.4,0,0,0,0,0.277,31.02,100.32000000000001,0.92,0.23,882,1.6,196,2.3000000000000003,0.0000,0.0000 +2012,9,25,2,30,23,1.86,0.097,0.59,0,0,0,0,7,5.4,0,0,0,0,0.279,31.990000000000002,112.52,0.92,0.23,883,1.6,195,2.9000000000000004,0.0000,0.0000 +2012,9,25,3,30,22.400000000000002,1.87,0.10400000000000001,0.59,0,0,0,0,7,5.7,0,0,0,0,0.28,33.83,124.15,0.92,0.23,882,1.6,193,3.6,0.0000,0.0000 +2012,9,25,4,30,21.6,1.8800000000000001,0.11,0.59,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.281,36.65,134.6,0.93,0.23,882,1.7000000000000002,192,4.1000000000000005,0.0000,0.0000 +2012,9,25,5,30,20.6,1.8800000000000001,0.113,0.59,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.281,40.08,142.72,0.93,0.23,882,1.7000000000000002,190,4.3,0.0000,0.0000 +2012,9,25,6,30,19.5,1.87,0.113,0.59,0,0,0,0,0,6.9,0,0,0,0,0.281,43.97,146.69,0.93,0.23,882,1.7000000000000002,191,4.2,0.0000,0.0000 +2012,9,25,7,30,18.5,1.84,0.114,0.59,0,0,0,0,0,7.300000000000001,0,0,0,0,0.281,47.93,145.03,0.93,0.23,882,1.7000000000000002,198,3.9000000000000004,0.0000,0.0000 +2012,9,25,8,30,17.6,1.8,0.125,0.59,0,0,0,0,0,7.4,0,0,0,0,0.28200000000000003,51.36,138.42000000000002,0.93,0.23,882,1.7000000000000002,212,3.4000000000000004,0.0000,0.0000 +2012,9,25,9,30,16.8,1.77,0.14100000000000001,0.59,0,0,0,0,1,7.300000000000001,0,0,0,0,0.28300000000000003,53.59,128.78,0.9400000000000001,0.23,883,1.7000000000000002,233,2.7,0.0000,0.0000 +2012,9,25,10,30,16.1,1.77,0.153,0.59,0,0,0,0,0,7,0,0,0,0,0.28400000000000003,54.64,117.56,0.9400000000000001,0.23,883,1.8,257,2,0.0000,0.0000 +2012,9,25,11,30,15.5,1.81,0.155,0.59,0,0,0,0,3,6.7,0,0,0,0,0.28500000000000003,55.61,105.55,0.9400000000000001,0.23,883,1.9000000000000001,271,1.4000000000000001,0.0000,0.0000 +2012,9,25,12,30,16.2,1.84,0.151,0.59,0,0,0,0,0,6.7,0,0,0,0,0.28600000000000003,53.34,93.22,0.9400000000000001,0.23,883,1.9000000000000001,272,1.2000000000000002,0.0000,0.0000 +2012,9,25,13,30,19,1.86,0.146,0.59,51,399,115,7,3,7.2,64,1,7,64,0.28800000000000003,46.300000000000004,80.77,0.9400000000000001,0.23,883,2,264,1.7000000000000002,0.0000,0.0000 +2012,9,25,14,30,23.1,1.86,0.134,0.59,85,663,325,0,7,7.4,71,631,0,300,0.289,36.57,68.71000000000001,0.9400000000000001,0.23,884,2,264,2.3000000000000003,12.4446,9.6536 +2012,9,25,15,30,26.900000000000002,1.85,0.11900000000000001,0.59,100,799,532,0,0,7.300000000000001,100,799,0,532,0.289,28.79,57.26,0.9400000000000001,0.23,884,1.9000000000000001,274,2.5,22.2422,17.3977 +2012,9,25,16,30,29.400000000000002,1.83,0.105,0.59,106,873,701,0,3,6.2,362,333,0,588,0.289,23.16,47.08,0.9400000000000001,0.23,883,1.9000000000000001,278,2.9000000000000004,32.4130,25.4388 +2012,9,25,17,30,31.1,1.81,0.093,0.59,107,917,817,0,0,5,107,917,0,817,0.28800000000000003,19.27,39.28,0.9400000000000001,0.23,883,1.8,273,3.2,41.8709,32.9107 +2012,9,25,18,30,32,1.8,0.083,0.59,105,940,870,0,0,4.1000000000000005,105,940,0,870,0.28600000000000003,17.23,35.550000000000004,0.9400000000000001,0.23,882,1.7000000000000002,264,3.5,43.4613,34.1785 +2012,9,25,19,30,32.5,1.79,0.074,0.59,100,946,853,0,0,3.5,100,946,0,853,0.28500000000000003,16.09,37.17,0.93,0.23,881,1.6,256,3.8000000000000003,42.4863,33.4049 +2012,9,25,20,30,32.4,1.78,0.068,0.59,92,933,768,0,0,3,92,933,0,768,0.28400000000000003,15.57,43.53,0.92,0.23,881,1.5,252,4.2,36.5997,28.7470 +2012,9,25,21,30,31.8,1.76,0.065,0.59,83,893,622,0,0,2.4000000000000004,83,893,0,622,0.28300000000000003,15.41,52.92,0.92,0.23,880,1.5,251,4.3,27.9098,21.8691 +2012,9,25,22,30,30.8,1.74,0.063,0.59,71,815,428,0,0,1.8,71,815,0,428,0.28300000000000003,15.68,63.96,0.92,0.23,880,1.5,252,4.1000000000000005,19.0119,14.8140 +2012,9,25,23,30,27.8,1.72,0.061,0.59,51,652,211,0,0,1.5,51,652,0,211,0.28200000000000003,18.27,75.84,0.92,0.23,881,1.5,253,2.7,6.6192,5.0818 +2012,9,26,0,30,24.200000000000003,1.71,0.058,0.59,14,208,22,0,0,3.9000000000000004,14,208,0,22,0.28200000000000003,26.7,87.96000000000001,0.92,0.23,881,1.6,251,1.4000000000000001,0.0000,0.0000 +2012,9,26,1,30,22.400000000000002,1.7,0.057,0.59,0,0,0,0,3,4.3,0,0,0,0,0.28200000000000003,30.6,100.61,0.92,0.23,882,1.6,241,1.3,0.0000,0.0000 +2012,9,26,2,30,21.700000000000003,1.7,0.057,0.59,0,0,0,0,0,4.2,0,0,0,0,0.28300000000000003,31.740000000000002,112.82000000000001,0.92,0.23,882,1.6,223,1.2000000000000002,0.0000,0.0000 +2012,9,26,3,30,20.700000000000003,1.7,0.061,0.59,0,0,0,0,0,4,0,0,0,0,0.28300000000000003,33.45,124.47,0.92,0.23,882,1.7000000000000002,206,1.3,0.0000,0.0000 +2012,9,26,4,30,19.900000000000002,1.7,0.069,0.59,0,0,0,0,0,4,0,0,0,0,0.28300000000000003,35.04,134.95,0.93,0.23,882,1.8,196,1.4000000000000001,0.0000,0.0000 +2012,9,26,5,30,19.3,1.68,0.083,0.59,0,0,0,0,3,4,0,0,0,0,0.28200000000000003,36.49,143.11,0.9400000000000001,0.23,882,1.9000000000000001,194,1.6,0.0000,0.0000 +2012,9,26,6,30,18.900000000000002,1.67,0.097,0.59,0,0,0,0,0,4.3,0,0,0,0,0.28200000000000003,38.17,147.09,0.9400000000000001,0.23,882,2,196,1.7000000000000002,0.0000,0.0000 +2012,9,26,7,30,18.3,1.67,0.10300000000000001,0.59,0,0,0,0,1,5,0,0,0,0,0.281,41.44,145.38,0.9400000000000001,0.23,883,2.1,202,1.6,0.0000,0.0000 +2012,9,26,8,30,17.6,1.67,0.1,0.59,0,0,0,0,0,5.7,0,0,0,0,0.281,45.5,138.70000000000002,0.9400000000000001,0.23,883,2.1,209,1.3,0.0000,0.0000 +2012,9,26,9,30,16.900000000000002,1.68,0.089,0.59,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.281,48.92,128.99,0.9400000000000001,0.23,883,2,218,1,0.0000,0.0000 +2012,9,26,10,30,16.2,1.68,0.08,0.59,0,0,0,0,1,6.2,0,0,0,0,0.281,51.47,117.73,0.93,0.23,883,2,233,0.8,0.0000,0.0000 +2012,9,26,11,30,15.8,1.67,0.076,0.59,0,0,0,0,0,6,0,0,0,0,0.281,52.28,105.71000000000001,0.93,0.23,883,1.9000000000000001,285,0.7000000000000001,0.0000,0.0000 +2012,9,26,12,30,16.1,1.6600000000000001,0.074,0.59,0,0,0,0,0,5.800000000000001,0,0,0,0,0.281,50.36,93.36,0.93,0.23,884,1.9000000000000001,176,0.9,0.0000,0.0000 +2012,9,26,13,30,18.1,1.6500000000000001,0.073,0.59,41,491,119,0,0,5.7,41,491,0,119,0.281,44.24,80.92,0.93,0.23,884,1.9000000000000001,36,1.5,0.0000,0.0000 +2012,9,26,14,30,21.700000000000003,1.6400000000000001,0.073,0.59,67,734,332,0,0,5.800000000000001,67,734,0,332,0.281,35.6,68.88,0.93,0.23,885,1.9000000000000001,48,2.1,15.5331,12.0472 +2012,9,26,15,30,25.400000000000002,1.6300000000000001,0.075,0.59,83,838,534,0,3,6.7,314,124,0,381,0.281,30.21,57.46,0.93,0.23,885,2,51,2.4000000000000004,29.7751,23.2878 +2012,9,26,16,30,28,1.62,0.078,0.59,95,890,698,0,4,6.5,364,76,0,415,0.28,25.7,47.33,0.9400000000000001,0.23,885,2.1,55,2.4000000000000004,34.3117,26.9273 +2012,9,26,17,30,29.700000000000003,1.59,0.08600000000000001,0.59,104,911,806,0,4,6.5,421,105,0,501,0.279,23.2,39.6,0.9400000000000001,0.23,884,2.2,68,2.1,48.6949,38.2725 +2012,9,26,18,30,30.8,1.58,0.095,0.59,112,913,851,0,4,6.5,463,252,0,667,0.278,21.76,35.93,0.9500000000000001,0.23,884,2.3000000000000003,89,1.6,52.2600,41.0959 +2012,9,26,19,30,31.3,1.57,0.10400000000000001,0.59,115,898,827,0,8,6.5,387,225,0,565,0.277,21.16,37.56,0.9500000000000001,0.23,884,2.4000000000000004,114,1.3,51.0736,40.1544 +2012,9,26,20,30,31.3,1.55,0.117,0.59,116,861,736,0,8,6.6000000000000005,268,14,0,278,0.276,21.27,43.9,0.96,0.23,883,2.5,131,1.4000000000000001,45.2908,35.5708 +2012,9,26,21,30,30.700000000000003,1.53,0.132,0.59,112,798,589,0,7,6.800000000000001,283,79,0,331,0.276,22.38,53.26,0.97,0.23,883,2.5,141,1.7000000000000002,35.5232,27.8314 +2012,9,26,22,30,29.5,1.53,0.14100000000000001,0.59,97,692,398,0,0,7.2,97,692,0,398,0.275,24.68,64.27,0.97,0.23,884,2.6,144,2.1,23.0012,17.9183 +2012,9,26,23,30,27.200000000000003,1.56,0.138,0.59,68,507,189,7,3,8.200000000000001,105,3,7,106,0.275,30.240000000000002,76.14,0.96,0.23,884,2.6,137,1.9000000000000001,10.2450,7.8613 +2012,9,27,0,30,24.200000000000003,1.61,0.11800000000000001,0.59,14,103,17,7,3,10.700000000000001,9,0,7,9,0.274,42.730000000000004,88.23,0.96,0.23,884,2.5,127,1.8,0.0000,0.0000 +2012,9,27,1,30,22.3,1.62,0.101,0.59,0,0,0,0,0,12.4,0,0,0,0,0.274,53.660000000000004,100.9,0.9500000000000001,0.23,885,2.6,125,2.4000000000000004,0.0000,0.0000 +2012,9,27,2,30,21.200000000000003,1.59,0.095,0.59,0,0,0,0,4,14.600000000000001,0,0,0,0,0.273,66.19,113.12,0.9500000000000001,0.23,885,2.6,136,2.7,0.0000,0.0000 +2012,9,27,3,30,20.3,1.55,0.095,0.59,0,0,0,0,1,16.3,0,0,0,0,0.273,77.79,124.8,0.9500000000000001,0.23,886,2.8000000000000003,153,2.9000000000000004,0.0000,0.0000 +2012,9,27,4,30,19.5,1.51,0.095,0.59,0,0,0,0,4,17,0,0,0,0,0.273,85.72,135.31,0.9500000000000001,0.23,886,2.8000000000000003,161,2.8000000000000003,0.0000,0.0000 +2012,9,27,5,30,18.8,1.49,0.096,0.59,0,0,0,0,0,17.3,0,0,0,0,0.274,90.75,143.5,0.9500000000000001,0.23,886,2.9000000000000004,160,2.5,0.0000,0.0000 +2012,9,27,6,30,18.1,1.49,0.10200000000000001,0.59,0,0,0,0,4,17.2,0,0,0,0,0.274,94.33,147.48,0.9500000000000001,0.23,886,2.9000000000000004,155,2,0.0000,0.0000 +2012,9,27,7,30,17.6,1.48,0.115,0.59,0,0,0,0,7,17,0,0,0,0,0.274,96.31,145.72,0.9500000000000001,0.23,887,2.9000000000000004,150,1.4000000000000001,0.0000,0.0000 +2012,9,27,8,30,17.400000000000002,1.47,0.135,0.59,0,0,0,0,6,16.8,0,0,0,0,0.273,96.53,138.97,0.96,0.23,887,3,135,1.1,0.0000,0.0000 +2012,9,27,9,30,17.2,1.44,0.157,0.59,0,0,0,0,7,16.8,0,0,0,0,0.272,97.28,129.21,0.96,0.23,887,3,107,1.1,0.0000,0.0000 +2012,9,27,10,30,17.1,1.43,0.167,0.59,0,0,0,0,6,16.7,0,0,0,0,0.271,97.60000000000001,117.91,0.97,0.23,888,3,103,1.3,0.0000,0.0000 +2012,9,27,11,30,17.1,1.42,0.176,0.59,0,0,0,0,6,16.7,0,0,0,0,0.271,97.55,105.86,0.97,0.23,888,3.1,126,1.4000000000000001,0.0000,0.0000 +2012,9,27,12,30,17.3,1.43,0.188,0.59,0,0,0,0,7,16.8,0,0,0,0,0.271,96.59,93.51,0.97,0.23,888,3.1,140,1.6,0.0000,0.0000 +2012,9,27,13,30,17.900000000000002,1.44,0.188,0.59,55,307,103,7,6,16.900000000000002,34,0,7,34,0.27,93.68,81.07000000000001,0.97,0.23,888,3.1,156,1.8,0.0000,0.0000 +2012,9,27,14,30,18.900000000000002,1.46,0.169,0.59,95,589,305,0,7,17.2,187,66,0,210,0.269,89.64,69.05,0.97,0.23,889,3.1,173,2.1,17.1648,13.3101 +2012,9,27,15,30,20,1.48,0.152,0.59,112,734,505,0,7,17.2,261,88,0,309,0.268,83.96000000000001,57.67,0.96,0.23,889,3.1,182,2.3000000000000003,21.3019,16.6591 +2012,9,27,16,30,21.200000000000003,1.49,0.14,0.59,122,814,670,0,7,17,343,232,0,500,0.266,76.99,47.59,0.96,0.23,889,3,183,2.4000000000000004,24.1970,18.9883 +2012,9,27,17,30,22.400000000000002,1.5,0.129,0.59,124,857,782,0,7,16.7,379,243,0,565,0.264,69.99,39.92,0.96,0.23,888,3,179,2.5,29.8388,23.4511 +2012,9,27,18,30,23.200000000000003,1.51,0.129,0.59,127,870,829,0,7,16.2,378,328,0,642,0.263,64.89,36.31,0.96,0.23,888,3,169,2.6,40.0365,31.4821 +2012,9,27,19,30,23.6,1.5,0.124,0.59,124,869,809,0,7,15.8,351,337,0,617,0.261,61.78,37.96,0.96,0.23,887,3,160,2.8000000000000003,33.8020,26.5739 +2012,9,27,20,30,23.3,1.49,0.13,0.59,121,837,720,0,7,15.600000000000001,290,398,0,575,0.26,61.78,44.27,0.96,0.23,887,3.1,155,3,16.3776,12.8618 +2012,9,27,21,30,22.6,1.48,0.155,0.59,120,763,572,0,6,15.200000000000001,303,101,0,362,0.26,63.11,53.6,0.96,0.23,887,3.1,153,3.1,18.8766,14.7876 +2012,9,27,22,30,21.700000000000003,1.5,0.157,0.59,101,664,386,0,7,15.100000000000001,216,54,0,239,0.259,66,64.59,0.96,0.23,887,3,151,3.1,21.3419,16.6216 +2012,9,27,23,30,20.700000000000003,1.53,0.152,0.59,69,476,181,0,6,15.100000000000001,89,6,0,91,0.26,70.15,76.43,0.96,0.23,887,3,151,2.7,5.1345,3.9377 +2012,9,28,0,30,19.5,1.55,0.15,0.59,12,65,14,7,7,15.200000000000001,7,0,7,7,0.26,76.27,88.49,0.96,0.22,887,3,151,2.1,0.0000,0.0000 +2012,9,28,1,30,18.8,1.56,0.145,0.59,0,0,0,0,4,15.100000000000001,0,0,0,0,0.26,79.33,101.19,0.96,0.22,888,2.9000000000000004,151,1.9000000000000001,0.0000,0.0000 +2012,9,28,2,30,18.2,1.56,0.14100000000000001,0.59,0,0,0,0,1,15,0,0,0,0,0.26,81.5,113.42,0.96,0.22,888,2.9000000000000004,150,2,0.0000,0.0000 +2012,9,28,3,30,17.8,1.55,0.137,0.59,0,0,0,0,0,14.9,0,0,0,0,0.26,83.29,125.12,0.96,0.22,888,2.8000000000000003,152,2.2,0.0000,0.0000 +2012,9,28,4,30,17.5,1.53,0.136,0.59,0,0,0,0,0,15,0,0,0,0,0.259,85.45,135.66,0.96,0.22,888,2.8000000000000003,157,2.4000000000000004,0.0000,0.0000 +2012,9,28,5,30,17.3,1.49,0.138,0.59,0,0,0,0,7,15.4,0,0,0,0,0.259,88.36,143.89000000000001,0.97,0.22,888,2.9000000000000004,161,2.6,0.0000,0.0000 +2012,9,28,6,30,17.2,1.47,0.145,0.59,0,0,0,0,4,15.9,0,0,0,0,0.26,91.8,147.88,0.97,0.22,888,2.9000000000000004,159,2.5,0.0000,0.0000 +2012,9,28,7,30,17.2,1.45,0.146,0.59,0,0,0,0,7,16.3,0,0,0,0,0.26,94.57000000000001,146.07,0.97,0.22,888,2.9000000000000004,154,2.4000000000000004,0.0000,0.0000 +2012,9,28,8,30,17.2,1.43,0.14,0.59,0,0,0,0,7,16.6,0,0,0,0,0.26,96.54,139.24,0.97,0.22,888,3,148,2,0.0000,0.0000 +2012,9,28,9,30,17.1,1.41,0.14100000000000001,0.59,0,0,0,0,7,16.8,0,0,0,0,0.261,97.89,129.42000000000002,0.97,0.22,888,3,139,1.6,0.0000,0.0000 +2012,9,28,10,30,17,1.41,0.14,0.59,0,0,0,0,7,16.8,0,0,0,0,0.261,98.54,118.08,0.97,0.22,888,3,126,1.3,0.0000,0.0000 +2012,9,28,11,30,16.900000000000002,1.41,0.13,0.59,0,0,0,0,7,16.7,0,0,0,0,0.262,98.8,106.02,0.97,0.22,888,3,115,1.5,0.0000,0.0000 +2012,9,28,12,30,16.900000000000002,1.43,0.123,0.59,0,0,0,0,3,16.6,0,0,0,0,0.262,98.27,93.66,0.97,0.22,888,3,107,1.9000000000000001,0.0000,0.0000 +2012,9,28,13,30,17.2,1.44,0.113,0.59,47,392,106,7,7,16.6,46,3,7,47,0.262,96.38,81.23,0.97,0.22,889,2.9000000000000004,105,2.4000000000000004,0.0000,0.0000 +2012,9,28,14,30,17.900000000000002,1.45,0.1,0.59,76,669,313,0,7,16.7,64,1,0,65,0.262,92.71000000000001,69.23,0.97,0.22,889,2.9000000000000004,108,2.6,10.8413,8.4050 +2012,9,28,15,30,18.8,1.47,0.092,0.59,90,796,513,0,7,16.6,93,1,0,93,0.261,87.3,57.88,0.97,0.22,889,2.9000000000000004,111,2.6,17.2574,13.4948 +2012,9,28,16,30,19.700000000000003,1.5,0.082,0.59,96,867,678,0,7,16.3,276,23,0,292,0.26,80.96000000000001,47.84,0.96,0.22,889,2.9000000000000004,109,2.6,29.1283,22.8566 +2012,9,28,17,30,20.400000000000002,1.52,0.073,0.59,98,907,791,0,7,15.9,309,19,0,324,0.258,75.2,40.24,0.96,0.22,889,2.8000000000000003,111,2.7,33.6256,26.4259 +2012,9,28,18,30,20.8,1.52,0.068,0.59,98,921,836,0,6,15.5,287,9,0,294,0.257,71.77,36.69,0.96,0.22,888,2.9000000000000004,117,2.8000000000000003,38.5070,30.2780 +2012,9,28,19,30,20.700000000000003,1.52,0.064,0.59,95,919,816,0,7,15.3,363,56,0,407,0.256,71.11,38.36,0.96,0.22,888,2.9000000000000004,118,2.8000000000000003,36.8817,28.9934 +2012,9,28,20,30,20.5,1.54,0.059000000000000004,0.59,88,904,731,0,7,15,303,31,0,325,0.255,70.71000000000001,44.65,0.9500000000000001,0.22,888,2.8000000000000003,115,2.7,33.8392,26.5729 +2012,9,28,21,30,20,1.55,0.056,0.59,79,863,587,0,6,14.700000000000001,139,2,0,140,0.254,71.7,53.94,0.9500000000000001,0.22,887,2.8000000000000003,111,2.5,20.6144,16.1469 +2012,9,28,22,30,19.400000000000002,1.57,0.053,0.59,67,786,400,0,7,14.700000000000001,131,7,0,134,0.254,74.21000000000001,64.9,0.9500000000000001,0.22,887,2.7,106,2.1,12.7863,9.9558 +2012,9,28,23,30,18.3,1.59,0.051000000000000004,0.59,48,617,190,0,6,15.100000000000001,59,2,0,59,0.254,81.78,76.73,0.9500000000000001,0.22,887,2.7,101,1.5,4.3981,3.3711 +2012,9,29,0,30,17.2,1.6,0.049,0.59,11,149,14,7,6,15.4,3,0,7,3,0.255,89.32000000000001,88.76,0.9500000000000001,0.22,887,2.7,101,1.1,0.0000,0.0000 +2012,9,29,1,30,16.5,1.61,0.049,0.59,0,0,0,0,6,15.3,0,0,0,0,0.255,92.79,101.48,0.9500000000000001,0.22,887,2.6,104,1.2000000000000002,0.0000,0.0000 +2012,9,29,2,30,16.1,1.6,0.048,0.59,0,0,0,0,7,15.4,0,0,0,0,0.256,95.64,113.72,0.9500000000000001,0.22,888,2.6,109,1.4000000000000001,0.0000,0.0000 +2012,9,29,3,30,15.8,1.59,0.048,0.59,0,0,0,0,7,15.4,0,0,0,0,0.257,97.58,125.44,0.9500000000000001,0.22,888,2.6,112,1.6,0.0000,0.0000 +2012,9,29,4,30,15.600000000000001,1.59,0.049,0.59,0,0,0,0,7,15.4,0,0,0,0,0.258,98.55,136.01,0.9500000000000001,0.22,888,2.6,109,1.6,0.0000,0.0000 +2012,9,29,5,30,15.5,1.59,0.047,0.59,0,0,0,0,7,15.3,0,0,0,0,0.259,98.48,144.28,0.9500000000000001,0.22,888,2.6,98,1.3,0.0000,0.0000 +2012,9,29,6,30,15.3,1.58,0.049,0.59,0,0,0,0,7,15.100000000000001,0,0,0,0,0.261,98.98,148.27,0.9500000000000001,0.22,888,2.7,80,0.9,0.0000,0.0000 +2012,9,29,7,30,15.100000000000001,1.57,0.051000000000000004,0.59,0,0,0,0,6,15,0,0,0,0,0.263,99.44,146.41,0.9500000000000001,0.22,888,2.7,57,0.9,0.0000,0.0000 +2012,9,29,8,30,14.9,1.57,0.051000000000000004,0.59,0,0,0,0,6,14.8,0,0,0,0,0.264,99.44,139.5,0.9500000000000001,0.22,888,2.8000000000000003,37,1.3,0.0000,0.0000 +2012,9,29,9,30,14.600000000000001,1.56,0.052000000000000005,0.59,0,0,0,0,6,14.600000000000001,0,0,0,0,0.265,99.86,129.63,0.9500000000000001,0.22,887,2.8000000000000003,28,1.7000000000000002,0.0000,0.0000 +2012,9,29,10,30,14.4,1.57,0.051000000000000004,0.59,0,0,0,0,7,14.3,0,0,0,0,0.266,99.61,118.26,0.9500000000000001,0.22,887,2.8000000000000003,24,2,0.0000,0.0000 +2012,9,29,11,30,14.200000000000001,1.58,0.049,0.59,0,0,0,0,7,14.100000000000001,0,0,0,0,0.267,99.19,106.17,0.9400000000000001,0.22,887,2.7,16,2.1,0.0000,0.0000 +2012,9,29,12,30,14.100000000000001,1.58,0.047,0.59,0,0,0,0,4,13.8,0,0,0,0,0.267,98.09,93.81,0.9400000000000001,0.22,888,2.7,10,2.3000000000000003,0.0000,0.0000 +2012,9,29,13,30,14.8,1.58,0.048,0.59,36,498,111,7,8,13.700000000000001,32,1,7,32,0.267,92.91,81.38,0.9400000000000001,0.22,888,2.8000000000000003,11,2.7,0.0000,0.0000 +2012,9,29,14,30,16.1,1.59,0.05,0.59,60,735,318,0,4,13.9,12,0,0,12,0.268,86.64,69.4,0.9500000000000001,0.22,889,2.9000000000000004,16,3.1,3.3504,2.5969 +2012,9,29,15,30,17.5,1.59,0.052000000000000005,0.59,74,839,517,0,4,13.5,183,1,0,184,0.267,77.33,58.08,0.9500000000000001,0.22,889,2.9000000000000004,23,3.5,5.1882,4.0566 +2012,9,29,16,30,18.8,1.57,0.055,0.59,83,892,679,0,8,12.8,209,8,0,215,0.266,68.24,48.1,0.9500000000000001,0.22,888,2.9000000000000004,30,3.7,16.9968,13.3364 +2012,9,29,17,30,19.8,1.57,0.054,0.59,88,922,788,0,4,12.600000000000001,245,1,0,245,0.265,62.99,40.57,0.9500000000000001,0.22,888,2.9000000000000004,36,3.7,19.2681,15.1418 +2012,9,29,18,30,20.8,1.58,0.05,0.59,88,938,836,0,4,12.5,334,3,0,336,0.264,59.02,37.08,0.9500000000000001,0.22,887,2.8000000000000003,42,3.6,17.6206,13.8543 +2012,9,29,19,30,21.6,1.6,0.046,0.59,85,939,817,0,4,12.4,361,9,0,368,0.264,55.64,38.75,0.9500000000000001,0.22,887,2.7,45,3.5,24.3077,19.1077 +2012,9,29,20,30,22.1,1.62,0.042,0.59,79,924,732,0,4,12.100000000000001,347,32,0,370,0.263,53.07,45.02,0.9400000000000001,0.22,886,2.6,45,3.4000000000000004,19.1057,15.0020 +2012,9,29,21,30,22.200000000000003,1.6300000000000001,0.044,0.59,73,881,588,0,4,11.8,317,68,0,357,0.263,51.63,54.28,0.9400000000000001,0.22,886,2.5,44,3.4000000000000004,7.9606,6.2346 +2012,9,29,22,30,21.6,1.6400000000000001,0.041,0.59,62,809,401,7,3,11.4,184,414,7,357,0.263,52.27,65.21000000000001,0.9400000000000001,0.22,886,2.3000000000000003,44,3.2,7.1526,5.5679 +2012,9,29,23,30,19.8,1.6500000000000001,0.04,0.59,45,644,189,0,1,11.200000000000001,45,644,0,189,0.263,57.660000000000004,77.02,0.9400000000000001,0.22,886,2.2,49,2.4000000000000004,2.8453,2.1797 +2012,9,30,0,30,17.5,1.6600000000000001,0.04,0.59,0,0,0,0,0,11.8,0,0,0,0,0.264,69.38,89.02,0.9400000000000001,0.22,886,2.1,58,1.5,0.0000,0.0000 +2012,9,30,1,30,16,1.67,0.043000000000000003,0.59,0,0,0,0,0,11.700000000000001,0,0,0,0,0.265,75.43,101.76,0.93,0.22,887,2,68,1.4000000000000001,0.0000,0.0000 +2012,9,30,2,30,15.100000000000001,1.68,0.046,0.59,0,0,0,0,0,11.8,0,0,0,0,0.266,80.64,114.02,0.93,0.22,887,1.9000000000000001,75,1.3,0.0000,0.0000 +2012,9,30,3,30,14.200000000000001,1.69,0.049,0.59,0,0,0,0,0,12.100000000000001,0,0,0,0,0.267,86.98,125.75,0.93,0.22,888,1.8,79,1.1,0.0000,0.0000 +2012,9,30,4,30,13.600000000000001,1.69,0.053,0.59,0,0,0,0,0,12.3,0,0,0,0,0.268,91.65,136.36,0.93,0.22,888,1.8,80,1,0.0000,0.0000 +2012,9,30,5,30,13.200000000000001,1.69,0.057,0.59,0,0,0,0,0,12.4,0,0,0,0,0.269,94.85000000000001,144.66,0.9400000000000001,0.22,887,1.8,73,0.9,0.0000,0.0000 +2012,9,30,6,30,13.100000000000001,1.68,0.062,0.59,0,0,0,0,0,12.5,0,0,0,0,0.27,96.13,148.67000000000002,0.9400000000000001,0.22,887,1.8,57,0.8,0.0000,0.0000 +2012,9,30,7,30,12.9,1.68,0.07,0.59,0,0,0,0,0,12.600000000000001,0,0,0,0,0.271,97.87,146.75,0.9400000000000001,0.22,887,1.8,32,0.7000000000000001,0.0000,0.0000 +2012,9,30,8,30,12.700000000000001,1.67,0.078,0.59,0,0,0,0,0,12.600000000000001,0,0,0,0,0.273,99.39,139.77,0.9500000000000001,0.22,887,1.9000000000000001,181,0.6000000000000001,0.0000,0.0000 +2012,9,30,9,30,12.100000000000001,1.67,0.08600000000000001,0.59,0,0,0,0,0,12.100000000000001,0,0,0,0,0.275,100,129.84,0.9500000000000001,0.22,887,2,330,0.7000000000000001,0.0000,0.0000 +2012,9,30,10,30,11.700000000000001,1.6600000000000001,0.09,0.59,0,0,0,0,0,11.700000000000001,0,0,0,0,0.276,100,118.43,0.9500000000000001,0.22,887,2,309,0.8,0.0000,0.0000 +2012,9,30,11,30,11.600000000000001,1.6600000000000001,0.089,0.59,0,0,0,0,0,11.600000000000001,0,0,0,0,0.277,100,106.33,0.9500000000000001,0.22,887,2,300,1.1,0.0000,0.0000 +2012,9,30,12,30,12.100000000000001,1.6600000000000001,0.089,0.59,0,0,0,0,0,11.9,0,0,0,0,0.278,98.52,93.96000000000001,0.9500000000000001,0.22,887,2,298,1.7000000000000002,0.0000,0.0000 +2012,9,30,13,30,13.9,1.6600000000000001,0.08600000000000001,0.59,42,448,108,0,0,11.9,42,448,0,108,0.278,87.91,81.53,0.9500000000000001,0.22,887,2,297,2.3000000000000003,0.0000,0.0000 +2012,9,30,14,30,17.1,1.67,0.078,0.59,68,717,319,0,0,12.600000000000001,68,717,0,319,0.278,74.61,69.58,0.9500000000000001,0.22,887,2,297,2.4000000000000004,0.6176,0.4786 +2012,9,30,15,30,20.5,1.69,0.069,0.59,81,844,524,0,0,12.600000000000001,81,844,0,524,0.278,60.38,58.29,0.9500000000000001,0.22,887,1.9000000000000001,304,2.4000000000000004,10.2539,8.0167 +2012,9,30,16,30,22.900000000000002,1.7,0.062,0.59,87,908,690,0,0,12.100000000000001,87,908,0,690,0.278,50.49,48.36,0.9400000000000001,0.22,886,1.9000000000000001,318,2.4000000000000004,12.5039,9.8104 +2012,9,30,17,30,24.6,1.73,0.057,0.59,89,942,802,0,0,11.600000000000001,89,942,0,802,0.277,44.29,40.9,0.9400000000000001,0.22,885,1.9000000000000001,333,2.5,14.5586,11.4402 +2012,9,30,18,30,25.8,1.75,0.052000000000000005,0.59,89,957,848,0,0,10.9,89,957,0,848,0.277,39.160000000000004,37.46,0.9400000000000001,0.22,885,1.9000000000000001,347,2.6,20.1218,15.8201 +2012,9,30,19,30,26.400000000000002,1.77,0.053,0.59,88,949,824,0,0,10,88,949,0,824,0.278,35.62,39.15,0.9400000000000001,0.22,884,2,178,2.8000000000000003,21.9597,17.2609 +2012,9,30,20,30,26.5,1.78,0.055,0.59,85,926,735,0,0,9.3,85,926,0,735,0.279,33.86,45.39,0.9400000000000001,0.22,883,2,5,3,21.7278,17.0595 +2012,9,30,21,30,26.200000000000003,1.81,0.056,0.59,78,877,586,0,0,8.9,78,877,0,586,0.281,33.49,54.620000000000005,0.9400000000000001,0.22,883,2.1,12,3.1,20.2688,15.8723 +2012,9,30,22,30,25.1,1.83,0.059000000000000004,0.59,67,786,393,0,0,8.8,67,786,0,393,0.28200000000000003,35.47,65.52,0.9400000000000001,0.22,883,2.2,24,2.7,19.0122,14.7959 +2012,9,30,23,30,22.6,1.82,0.064,0.59,49,598,180,0,6,10.100000000000001,61,5,0,62,0.28300000000000003,45.09,77.32000000000001,0.9400000000000001,0.22,883,2.2,44,1.7000000000000002,9.0964,6.9646 +2012,10,1,0,30,19.900000000000002,1.54,0.063,0.61,0,0,0,7,6,12.4,0,0,7,0,0.28300000000000003,61.86,89.28,0.9400000000000001,0.22,884,2.3000000000000003,65,1.2000000000000002,0.0000,0.0000 +2012,10,1,1,30,18.8,1.49,0.08,0.61,0,0,0,0,7,11.9,0,0,0,0,0.28400000000000003,64.42,102.05,0.9500000000000001,0.22,884,2.4000000000000004,78,1.1,0.0000,0.0000 +2012,10,1,2,30,18.5,1.45,0.109,0.61,0,0,0,0,7,12.100000000000001,0,0,0,0,0.28400000000000003,66.25,114.31,0.96,0.22,885,2.5,79,0.9,0.0000,0.0000 +2012,10,1,3,30,17.900000000000002,1.42,0.131,0.61,0,0,0,0,8,11.9,0,0,0,0,0.28500000000000003,68,126.07000000000001,0.96,0.22,885,2.4000000000000004,174,1,0.0000,0.0000 +2012,10,1,4,30,17.1,1.42,0.131,0.61,0,0,0,0,7,12.100000000000001,0,0,0,0,0.28600000000000003,72.5,136.71,0.96,0.22,885,2.3000000000000003,272,1.5,0.0000,0.0000 +2012,10,1,5,30,16.6,1.44,0.122,0.61,0,0,0,0,4,12.200000000000001,0,0,0,0,0.28600000000000003,75.16,145.05,0.96,0.22,885,2.2,278,2,0.0000,0.0000 +2012,10,1,6,30,16,1.49,0.1,0.61,0,0,0,0,0,12,0,0,0,0,0.28600000000000003,77.35000000000001,149.06,0.9500000000000001,0.22,885,2.1,292,2.4000000000000004,0.0000,0.0000 +2012,10,1,7,30,15.4,1.51,0.082,0.61,0,0,0,0,0,11.600000000000001,0,0,0,0,0.28600000000000003,78.16,147.09,0.9400000000000001,0.22,885,2,303,2.7,0.0000,0.0000 +2012,10,1,8,30,14.9,1.53,0.07200000000000001,0.61,0,0,0,0,0,10.8,0,0,0,0,0.28700000000000003,76.71000000000001,140.04,0.93,0.22,885,1.9000000000000001,312,3.3000000000000003,0.0000,0.0000 +2012,10,1,9,30,14.4,1.54,0.068,0.61,0,0,0,0,0,9.8,0,0,0,0,0.28800000000000003,74.08,130.04,0.93,0.22,885,1.9000000000000001,322,3.8000000000000003,0.0000,0.0000 +2012,10,1,10,30,13.8,1.53,0.068,0.61,0,0,0,0,0,9,0,0,0,0,0.289,72.62,118.60000000000001,0.93,0.22,885,1.9000000000000001,332,4,0.0000,0.0000 +2012,10,1,11,30,13.3,1.53,0.07,0.61,0,0,0,0,0,8.5,0,0,0,0,0.289,72.60000000000001,106.48,0.93,0.22,885,1.9000000000000001,342,4,0.0000,0.0000 +2012,10,1,12,30,13.100000000000001,1.52,0.07200000000000001,0.61,0,0,0,0,0,8.3,0,0,0,0,0.29,72.75,94.11,0.93,0.22,886,1.9000000000000001,348,4,0.0000,0.0000 +2012,10,1,13,30,14.5,1.5,0.07,0.61,39,468,106,0,0,8.3,39,468,0,106,0.29,66.49,81.69,0.93,0.22,887,1.9000000000000001,350,4.2,0.0000,0.0000 +2012,10,1,14,30,17.7,1.48,0.067,0.61,64,730,317,0,0,9,64,730,0,317,0.29,56.68,69.75,0.93,0.22,887,1.9000000000000001,182,4.800000000000001,16.3920,12.7004 +2012,10,1,15,30,20.900000000000002,1.48,0.067,0.61,79,840,518,0,0,10.3,79,840,0,518,0.289,50.56,58.51,0.93,0.22,888,2,14,5.7,29.1684,22.8020 +2012,10,1,16,30,22.900000000000002,1.5,0.07200000000000001,0.61,91,891,679,0,0,9.8,91,891,0,679,0.28800000000000003,43.4,48.63,0.93,0.22,888,2.1,17,6.300000000000001,40.0935,31.4548 +2012,10,1,17,30,23.900000000000002,1.5,0.079,0.61,100,913,787,0,0,9.3,100,913,0,787,0.28600000000000003,39.43,41.22,0.9400000000000001,0.22,887,2.2,15,6.7,47.6189,37.4171 +2012,10,1,18,30,24.3,1.44,0.059000000000000004,0.61,92,941,836,0,0,9,92,941,0,836,0.28400000000000003,37.92,37.84,0.9400000000000001,0.22,887,2.2,14,6.9,50.7436,39.8934 +2012,10,1,19,30,24.5,1.41,0.057,0.61,90,940,815,0,1,8.6,90,940,0,815,0.28200000000000003,36.26,39.54,0.93,0.22,886,2.1,14,7,49.1266,38.6126 +2012,10,1,20,30,24.3,1.4000000000000001,0.056,0.61,86,922,729,0,3,7.7,365,330,0,595,0.28,34.67,45.76,0.93,0.22,886,2,15,6.9,43.1147,33.8488 +2012,10,1,21,30,23.700000000000003,1.42,0.074,0.61,86,860,580,0,3,6.800000000000001,223,1,0,224,0.279,33.7,54.95,0.93,0.22,886,1.9000000000000001,15,6.7,33.2194,26.0104 +2012,10,1,22,30,22.700000000000003,1.3900000000000001,0.081,0.61,75,762,387,0,3,6.300000000000001,238,94,0,276,0.279,34.6,65.83,0.93,0.22,886,1.8,16,6.1000000000000005,20.8806,16.2457 +2012,10,1,23,30,20.700000000000003,1.35,0.089,0.61,54,553,173,0,0,6.2,54,553,0,173,0.28,38.83,77.61,0.93,0.22,887,1.8,20,4.6000000000000005,2.9783,2.2790 +2012,10,2,0,30,18.1,1.29,0.093,0.61,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.281,46.82,89.53,0.93,0.22,888,1.7000000000000002,28,2.8000000000000003,0.0000,0.0000 +2012,10,2,1,30,16.1,1.24,0.09,0.61,0,0,0,0,0,7,0,0,0,0,0.28200000000000003,54.870000000000005,102.34,0.93,0.22,888,1.6,39,2,0.0000,0.0000 +2012,10,2,2,30,15,1.23,0.082,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.28200000000000003,59.06,114.60000000000001,0.93,0.22,888,1.5,47,1.9000000000000001,0.0000,0.0000 +2012,10,2,3,30,14.100000000000001,1.26,0.076,0.61,0,0,0,0,0,7,0,0,0,0,0.28200000000000003,62.51,126.38000000000001,0.93,0.22,888,1.5,49,1.9000000000000001,0.0000,0.0000 +2012,10,2,4,30,13.3,1.34,0.07100000000000001,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.28300000000000003,65.97,137.05,0.93,0.22,889,1.6,45,1.9000000000000001,0.0000,0.0000 +2012,10,2,5,30,12.5,1.42,0.07100000000000001,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.28300000000000003,69.65,145.43,0.93,0.22,889,1.7000000000000002,38,1.8,0.0000,0.0000 +2012,10,2,6,30,11.700000000000001,1.48,0.075,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.28300000000000003,73.44,149.45000000000002,0.93,0.22,889,1.7000000000000002,29,1.5,0.0000,0.0000 +2012,10,2,7,30,11.200000000000001,1.5,0.079,0.61,0,0,0,0,1,7.1000000000000005,0,0,0,0,0.28300000000000003,75.73,147.43,0.93,0.22,889,1.7000000000000002,19,1.4000000000000001,0.0000,0.0000 +2012,10,2,8,30,10.700000000000001,1.5,0.079,0.61,0,0,0,0,1,7,0,0,0,0,0.28300000000000003,77.73,140.3,0.93,0.22,889,1.7000000000000002,14,1.4000000000000001,0.0000,0.0000 +2012,10,2,9,30,10.100000000000001,1.49,0.076,0.61,0,0,0,0,4,6.800000000000001,0,0,0,0,0.28400000000000003,80.24,130.25,0.93,0.22,889,1.6,13,1.2000000000000002,0.0000,0.0000 +2012,10,2,10,30,9.600000000000001,1.49,0.07200000000000001,0.61,0,0,0,0,4,6.800000000000001,0,0,0,0,0.28400000000000003,82.52,118.77,0.93,0.22,889,1.6,14,1.1,0.0000,0.0000 +2012,10,2,11,30,9.200000000000001,1.49,0.067,0.61,0,0,0,0,0,6.7,0,0,0,0,0.28500000000000003,84.32000000000001,106.64,0.93,0.22,889,1.6,14,0.9,0.0000,0.0000 +2012,10,2,12,30,9.600000000000001,1.49,0.064,0.61,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.28600000000000003,81.67,94.26,0.93,0.22,889,1.7000000000000002,9,0.9,0.0000,0.0000 +2012,10,2,13,30,11.8,1.49,0.062,0.61,37,482,106,0,0,6.6000000000000005,37,482,0,106,0.28600000000000003,70.42,81.85000000000001,0.93,0.22,889,1.7000000000000002,177,1,0.0000,0.0000 +2012,10,2,14,30,15.3,1.49,0.06,0.61,62,744,318,0,0,5.800000000000001,62,744,0,318,0.28600000000000003,53.050000000000004,69.93,0.93,0.22,888,1.7000000000000002,332,1.2000000000000002,16.2647,12.5992 +2012,10,2,15,30,18.5,1.48,0.059000000000000004,0.61,76,857,521,0,0,3.7,76,857,0,521,0.28700000000000003,37.37,58.72,0.93,0.22,888,1.7000000000000002,298,1.7000000000000002,28.7999,22.5115 +2012,10,2,16,30,20.8,1.47,0.059000000000000004,0.61,85,914,686,0,0,4.3,85,914,0,686,0.28700000000000003,33.82,48.89,0.93,0.22,887,1.7000000000000002,274,2.3000000000000003,39.4178,30.9225 +2012,10,2,17,30,22.8,1.46,0.059000000000000004,0.61,90,943,796,0,0,5.1000000000000005,90,943,0,796,0.28600000000000003,31.740000000000002,41.550000000000004,0.93,0.22,886,1.7000000000000002,262,2.7,46.6915,36.6864 +2012,10,2,18,30,24.3,1.46,0.064,0.61,95,950,841,0,0,5.800000000000001,95,950,0,841,0.28600000000000003,30.35,38.22,0.93,0.22,885,1.7000000000000002,255,2.9000000000000004,49.9854,39.2952 +2012,10,2,19,30,25.400000000000002,1.45,0.064,0.61,94,947,820,0,0,6.2,94,947,0,820,0.28600000000000003,29.29,39.94,0.93,0.22,884,1.6,249,3.1,48.5469,38.1546 +2012,10,2,20,30,26,1.45,0.062,0.61,88,927,730,0,0,6.5,88,927,0,730,0.28500000000000003,28.72,46.13,0.92,0.22,883,1.6,245,3.1,34.8636,27.3687 +2012,10,2,21,30,26.1,1.46,0.053,0.61,77,890,583,0,0,6.5,77,890,0,583,0.28500000000000003,28.64,55.29,0.92,0.22,882,1.6,240,3,12.6790,9.9262 +2012,10,2,22,30,25.3,1.46,0.051000000000000004,0.61,64,806,390,0,0,6.4,64,806,0,390,0.28500000000000003,29.88,66.14,0.92,0.22,882,1.6,231,2.5,14.6296,11.3792 +2012,10,2,23,30,22.5,1.47,0.048,0.61,45,628,176,0,0,7.4,45,628,0,176,0.28500000000000003,37.75,77.9,0.92,0.22,882,1.5,208,1.6,8.2961,6.3450 +2012,10,3,0,30,19.200000000000003,1.47,0.046,0.61,0,0,0,0,0,9.1,0,0,0,0,0.28500000000000003,52.15,89.78,0.91,0.22,882,1.5,183,1.4000000000000001,0.0000,0.0000 +2012,10,3,1,30,18,1.47,0.044,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28600000000000003,51.34,102.62,0.91,0.22,882,1.5,173,2.1,0.0000,0.0000 +2012,10,3,2,30,17.6,1.47,0.043000000000000003,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.28700000000000003,51.84,114.9,0.91,0.22,882,1.5,171,2.9000000000000004,0.0000,0.0000 +2012,10,3,3,30,16.8,1.46,0.042,0.61,0,0,0,0,0,7.7,0,0,0,0,0.28700000000000003,55.050000000000004,126.69,0.91,0.22,882,1.5,174,3.4000000000000004,0.0000,0.0000 +2012,10,3,4,30,15.9,1.46,0.041,0.61,0,0,0,0,0,8,0,0,0,0,0.28700000000000003,59.4,137.4,0.91,0.22,882,1.5,177,3.6,0.0000,0.0000 +2012,10,3,5,30,15,1.45,0.041,0.61,0,0,0,0,0,8.3,0,0,0,0,0.28700000000000003,64.07000000000001,145.81,0.91,0.22,882,1.5,181,3.7,0.0000,0.0000 +2012,10,3,6,30,14.200000000000001,1.44,0.042,0.61,0,0,0,0,0,8.5,0,0,0,0,0.28700000000000003,68.61,149.84,0.91,0.22,882,1.5,185,3.7,0.0000,0.0000 +2012,10,3,7,30,13.600000000000001,1.44,0.043000000000000003,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.28600000000000003,72.46000000000001,147.77,0.91,0.22,882,1.5,188,3.8000000000000003,0.0000,0.0000 +2012,10,3,8,30,13.100000000000001,1.43,0.044,0.61,0,0,0,0,0,8.9,0,0,0,0,0.28500000000000003,75.71000000000001,140.56,0.91,0.22,882,1.5,191,3.6,0.0000,0.0000 +2012,10,3,9,30,12.5,1.41,0.044,0.61,0,0,0,0,0,8.9,0,0,0,0,0.28500000000000003,78.8,130.46,0.91,0.22,881,1.4000000000000001,194,3.2,0.0000,0.0000 +2012,10,3,10,30,11.9,1.4000000000000001,0.044,0.61,0,0,0,0,0,8.8,0,0,0,0,0.28500000000000003,81.41,118.94,0.91,0.22,881,1.3,196,2.7,0.0000,0.0000 +2012,10,3,11,30,11.3,1.3900000000000001,0.043000000000000003,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.28500000000000003,83.92,106.79,0.9,0.22,881,1.3,197,2.3000000000000003,0.0000,0.0000 +2012,10,3,12,30,11.4,1.3900000000000001,0.042,0.61,0,0,0,0,0,8.6,0,0,0,0,0.28500000000000003,82.76,94.41,0.9,0.22,882,1.2000000000000002,200,2.4000000000000004,0.0000,0.0000 +2012,10,3,13,30,13.4,1.3800000000000001,0.04,0.61,34,540,109,0,0,8.5,34,540,0,109,0.28500000000000003,72.02,82.01,0.9,0.22,882,1.1,203,2.9000000000000004,0.0000,0.0000 +2012,10,3,14,30,17.2,1.3800000000000001,0.037,0.61,54,798,326,0,0,8.4,54,798,0,326,0.28400000000000003,56.1,70.11,0.9,0.22,882,1.1,202,3.1,16.2898,12.6158 +2012,10,3,15,30,21.400000000000002,1.3800000000000001,0.034,0.61,65,911,535,0,0,8.1,65,911,0,535,0.28400000000000003,42.35,58.94,0.9,0.22,882,1,203,3.2,28.9333,22.6134 +2012,10,3,16,30,25.3,1.37,0.031,0.61,71,967,703,0,0,7.2,71,967,0,703,0.28300000000000003,31.45,49.160000000000004,0.89,0.22,882,1,210,3.3000000000000003,39.7883,31.2110 +2012,10,3,17,30,28.6,1.37,0.029,0.61,73,995,815,0,0,5.1000000000000005,73,995,0,815,0.28200000000000003,22.42,41.88,0.89,0.22,881,1,222,3.3000000000000003,47.1867,37.0733 +2012,10,3,18,30,30.8,1.3800000000000001,0.034,0.61,78,1000,860,0,0,2.9000000000000004,78,1000,0,860,0.281,16.92,38.6,0.89,0.22,881,1,230,3,50.2433,39.4958 +2012,10,3,19,30,31.900000000000002,1.3800000000000001,0.034,0.61,77,996,836,0,0,1.5,77,996,0,836,0.28,14.43,40.33,0.89,0.22,880,1,234,2.7,48.7994,38.3507 +2012,10,3,20,30,32.300000000000004,1.3800000000000001,0.035,0.61,74,974,745,0,0,0.4,74,974,0,745,0.28,13.040000000000001,46.5,0.89,0.22,879,1,235,2.6,42.7255,33.5377 +2012,10,3,21,30,31.900000000000002,1.3800000000000001,0.034,0.61,68,932,594,0,8,-0.5,181,629,0,536,0.28,12.52,55.63,0.89,0.22,879,1,232,2.5,32.9472,25.7905 +2012,10,3,22,30,30.200000000000003,1.3900000000000001,0.035,0.61,58,853,399,0,8,-0.6000000000000001,171,381,0,323,0.28,13.61,66.45,0.89,0.22,879,0.9,220,1.8,20.6229,16.0364 +2012,10,3,23,30,26.1,1.3900000000000001,0.036000000000000004,0.61,41,668,178,0,0,7.2,41,668,0,178,0.28,30.12,78.19,0.89,0.22,880,0.9,199,1.2000000000000002,8.4269,6.4417 +2012,10,4,0,30,22.200000000000003,1.3900000000000001,0.035,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.28,35.71,90.03,0.89,0.22,880,0.9,189,1.4000000000000001,0.0000,0.0000 +2012,10,4,1,30,20.200000000000003,1.3900000000000001,0.034,0.61,0,0,0,0,0,4.2,0,0,0,0,0.28,34.87,102.9,0.88,0.22,881,0.9,192,1.6,0.0000,0.0000 +2012,10,4,2,30,18.900000000000002,1.3900000000000001,0.033,0.61,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28,36.72,115.19,0.88,0.22,881,1,198,1.6,0.0000,0.0000 +2012,10,4,3,30,18,1.3900000000000001,0.033,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28,37.58,127,0.88,0.22,882,1,208,1.8,0.0000,0.0000 +2012,10,4,4,30,17.400000000000002,1.3800000000000001,0.033,0.61,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.28,37.56,137.74,0.88,0.22,882,1.1,224,2,0.0000,0.0000 +2012,10,4,5,30,16.8,1.35,0.032,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.28,38.12,146.19,0.88,0.22,882,1.1,244,2.2,0.0000,0.0000 +2012,10,4,6,30,16.3,1.3,0.03,0.61,0,0,0,0,0,2.2,0,0,0,0,0.28,38.62,150.23,0.88,0.22,883,1.1,267,2.5,0.0000,0.0000 +2012,10,4,7,30,16,1.24,0.027,0.61,0,0,0,0,0,1.6,0,0,0,0,0.28,37.87,148.11,0.88,0.22,883,1.1,290,3.2,0.0000,0.0000 +2012,10,4,8,30,15.9,1.19,0.025,0.61,0,0,0,0,0,1,0,0,0,0,0.28,36.32,140.82,0.89,0.22,884,1.1,312,4.6000000000000005,0.0000,0.0000 +2012,10,4,9,30,15.3,1.17,0.024,0.61,0,0,0,0,0,0.4,0,0,0,0,0.28,36.34,130.66,0.89,0.22,885,1.1,333,6.4,0.0000,0.0000 +2012,10,4,10,30,13.3,1.19,0.025,0.61,0,0,0,0,0,1.1,0,0,0,0,0.28,43.28,119.12,0.9,0.22,886,1.1,172,7.800000000000001,0.0000,0.0000 +2012,10,4,11,30,10.5,1.24,0.03,0.61,0,0,0,0,0,2.6,0,0,0,0,0.28,58.13,106.95,0.91,0.22,888,1.1,4,8.1,0.0000,0.0000 +2012,10,4,12,30,8.3,1.3,0.039,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28,70.94,94.57000000000001,0.93,0.22,889,1.2000000000000002,10,7.800000000000001,0.0000,0.0000 +2012,10,4,13,30,8.200000000000001,1.32,0.048,0.61,35,511,105,0,0,2.9000000000000004,35,511,0,105,0.279,69.45,82.16,0.9400000000000001,0.22,890,1.2000000000000002,14,7.6000000000000005,0.0000,0.0000 +2012,10,4,14,30,9.700000000000001,1.33,0.048,0.61,59,773,320,0,3,2,157,9,0,160,0.279,58.7,70.29,0.9400000000000001,0.22,891,1.2000000000000002,17,7.300000000000001,16.6727,12.9094 +2012,10,4,15,30,11.8,1.34,0.046,0.61,71,885,525,0,3,1.6,269,37,0,288,0.279,49.44,59.15,0.93,0.22,892,1.2000000000000002,19,6.7,29.6746,23.1901 +2012,10,4,16,30,14.100000000000001,1.33,0.044,0.61,78,940,690,0,0,1.6,78,940,0,690,0.278,42.6,49.43,0.93,0.22,892,1.3,20,6,40.7356,31.9518 +2012,10,4,17,30,16.3,1.31,0.043000000000000003,0.61,82,969,800,0,0,1.7000000000000002,82,969,0,800,0.276,37.44,42.21,0.92,0.22,892,1.3,23,5.2,48.2727,37.9243 +2012,10,4,18,30,18.2,1.33,0.048,0.61,87,974,844,0,0,1.9000000000000001,87,974,0,844,0.275,33.47,38.980000000000004,0.92,0.22,891,1.3,27,4.3,51.3358,40.3523 +2012,10,4,19,30,19.6,1.33,0.048,0.61,86,969,821,0,0,1.9000000000000001,86,969,0,821,0.273,30.86,40.72,0.92,0.22,890,1.3,33,3.4000000000000004,49.7059,39.0606 +2012,10,4,20,30,20.3,1.33,0.049,0.61,82,946,729,0,0,2,82,946,0,729,0.272,29.62,46.87,0.92,0.22,890,1.3,39,2.5,43.5533,34.1846 +2012,10,4,21,30,20.400000000000002,1.35,0.052000000000000005,0.61,77,897,579,0,0,2,77,897,0,579,0.271,29.51,55.96,0.92,0.22,890,1.3,46,1.9000000000000001,30.2424,23.6700 +2012,10,4,22,30,19.8,1.36,0.053,0.61,65,806,383,0,0,2.1,65,806,0,383,0.271,30.84,66.76,0.92,0.22,889,1.3,59,1.6,17.0386,13.2454 +2012,10,4,23,30,17.5,1.36,0.053,0.61,45,610,167,0,0,2.3000000000000003,45,610,0,167,0.271,36.08,78.47,0.92,0.22,889,1.3,79,1.3,8.5111,6.5028 +2012,10,5,0,30,14.700000000000001,1.36,0.053,0.61,0,0,0,0,0,4.5,0,0,0,0,0.271,50.410000000000004,90.25,0.92,0.22,889,1.3,96,1.2000000000000002,0.0000,0.0000 +2012,10,5,1,30,13.3,1.36,0.055,0.61,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.271,52.39,103.18,0.92,0.22,889,1.3,106,1.6,0.0000,0.0000 +2012,10,5,2,30,12.600000000000001,1.37,0.055,0.61,0,0,0,0,0,3.5,0,0,0,0,0.272,54.06,115.47,0.92,0.22,889,1.3,113,1.9000000000000001,0.0000,0.0000 +2012,10,5,3,30,11.8,1.37,0.056,0.61,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.272,57.83,127.31,0.92,0.22,889,1.3,118,2.1,0.0000,0.0000 +2012,10,5,4,30,10.8,1.37,0.059000000000000004,0.61,0,0,0,0,1,4.2,0,0,0,0,0.272,63.54,138.08,0.92,0.22,889,1.3,120,2,0.0000,0.0000 +2012,10,5,5,30,9.8,1.36,0.063,0.61,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.272,69.97,146.57,0.92,0.22,889,1.4000000000000001,119,1.7000000000000002,0.0000,0.0000 +2012,10,5,6,30,9,1.35,0.066,0.61,0,0,0,0,1,5,0,0,0,0,0.272,75.87,150.62,0.92,0.22,889,1.4000000000000001,115,1.6,0.0000,0.0000 +2012,10,5,7,30,8.3,1.34,0.068,0.61,0,0,0,0,4,5.300000000000001,0,0,0,0,0.273,81.32000000000001,148.44,0.93,0.22,889,1.4000000000000001,110,1.6,0.0000,0.0000 +2012,10,5,8,30,7.6000000000000005,1.34,0.068,0.61,0,0,0,0,7,5.5,0,0,0,0,0.273,86.82000000000001,141.08,0.93,0.22,888,1.4000000000000001,108,1.6,0.0000,0.0000 +2012,10,5,9,30,7.1000000000000005,1.35,0.069,0.61,0,0,0,0,0,5.800000000000001,0,0,0,0,0.273,91.2,130.86,0.93,0.22,888,1.4000000000000001,105,1.6,0.0000,0.0000 +2012,10,5,10,30,6.800000000000001,1.36,0.07100000000000001,0.61,0,0,0,0,0,5.9,0,0,0,0,0.274,94.09,119.29,0.93,0.22,888,1.4000000000000001,102,1.6,0.0000,0.0000 +2012,10,5,11,30,6.6000000000000005,1.35,0.074,0.61,0,0,0,0,0,6,0,0,0,0,0.274,95.97,107.10000000000001,0.9400000000000001,0.22,888,1.4000000000000001,97,1.7000000000000002,0.0000,0.0000 +2012,10,5,12,30,6.800000000000001,1.33,0.081,0.61,0,0,0,0,0,6,0,0,0,0,0.275,94.62,94.72,0.9400000000000001,0.22,888,1.4000000000000001,91,2,0.0000,0.0000 +2012,10,5,13,30,8.3,1.31,0.08700000000000001,0.61,40,424,97,0,0,6,40,424,0,97,0.276,85.21000000000001,82.32000000000001,0.9400000000000001,0.22,889,1.4000000000000001,96,2.4000000000000004,0.0000,0.0000 +2012,10,5,14,30,11.200000000000001,1.31,0.085,0.61,70,709,307,0,0,6.2,70,709,0,307,0.276,71.39,70.48,0.9400000000000001,0.22,889,1.4000000000000001,118,2.5,8.1697,6.3242 +2012,10,5,15,30,14.700000000000001,1.3,0.081,0.61,86,839,513,0,0,6.9,86,839,0,513,0.277,59.71,59.370000000000005,0.9400000000000001,0.22,889,1.3,149,2.4000000000000004,15.9555,12.4676 +2012,10,5,16,30,18.1,1.3,0.074,0.61,92,908,680,0,0,7.9,92,908,0,680,0.277,51.410000000000004,49.7,0.93,0.22,888,1.3,174,2.3000000000000003,39.9440,31.3286 +2012,10,5,17,30,21.3,1.29,0.069,0.61,96,944,791,0,0,8.200000000000001,96,944,0,791,0.276,43,42.54,0.93,0.22,888,1.3,188,2.3000000000000003,47.3441,37.1926 +2012,10,5,18,30,24.1,1.29,0.067,0.61,97,957,837,0,0,7.2,97,957,0,837,0.276,33.83,39.36,0.93,0.22,887,1.3,200,2.2,50.3382,39.5659 +2012,10,5,19,30,26,1.28,0.065,0.61,95,953,813,0,0,5.5,95,953,0,813,0.276,26.92,41.11,0.93,0.22,886,1.3,203,2.1,48.7684,38.3214 +2012,10,5,20,30,26.8,1.27,0.064,0.61,90,930,721,0,0,4.2,90,930,0,721,0.275,23.47,47.230000000000004,0.93,0.22,885,1.3,190,2.1,42.5682,33.4085 +2012,10,5,21,30,26.900000000000002,1.24,0.063,0.61,81,882,571,0,0,3.3000000000000003,81,882,0,571,0.275,21.94,56.29,0.92,0.22,885,1.3,169,2.4000000000000004,32.6168,25.5248 +2012,10,5,22,30,25.700000000000003,1.22,0.062,0.61,68,790,376,0,0,2.8000000000000003,68,790,0,376,0.274,22.72,67.06,0.92,0.22,884,1.3,143,2.7,20.1540,15.6628 +2012,10,5,23,30,22.5,1.2,0.061,0.61,46,582,160,0,0,4.4,46,582,0,160,0.274,30.830000000000002,78.76,0.92,0.22,884,1.4000000000000001,123,3.3000000000000003,7.9762,6.0912 +2012,10,6,0,30,18.900000000000002,1.21,0.062,0.61,0,0,0,0,7,6.2,0,0,0,0,0.274,43.47,91.05,0.93,0.22,885,1.4000000000000001,114,4.3,0.0000,0.0000 +2012,10,6,1,30,16.400000000000002,1.23,0.064,0.61,0,0,0,0,7,7.1000000000000005,0,0,0,0,0.274,53.980000000000004,103.45,0.93,0.22,885,1.5,109,5.1000000000000005,0.0000,0.0000 +2012,10,6,2,30,14.200000000000001,1.26,0.069,0.61,0,0,0,0,7,7.7,0,0,0,0,0.273,64.99,115.76,0.93,0.22,886,1.7000000000000002,103,5.4,0.0000,0.0000 +2012,10,6,3,30,12.3,1.28,0.076,0.61,0,0,0,0,1,7.300000000000001,0,0,0,0,0.273,71.65,127.61,0.9400000000000001,0.22,887,1.7000000000000002,97,5.800000000000001,0.0000,0.0000 +2012,10,6,4,30,10.5,1.29,0.083,0.61,0,0,0,0,0,6,0,0,0,0,0.273,73.60000000000001,138.41,0.9400000000000001,0.22,888,1.8,93,6.1000000000000005,0.0000,0.0000 +2012,10,6,5,30,9.200000000000001,1.28,0.098,0.61,0,0,0,0,1,4.9,0,0,0,0,0.273,74.49,146.94,0.96,0.22,888,1.8,88,6.2,0.0000,0.0000 +2012,10,6,6,30,8.3,1.24,0.128,0.61,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.274,75.07000000000001,151.01,0.96,0.22,889,1.8,84,6.2,0.0000,0.0000 +2012,10,6,7,30,7.4,1.22,0.148,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.274,75.3,148.78,0.97,0.22,889,1.8,80,6.1000000000000005,0.0000,0.0000 +2012,10,6,8,30,6.7,1.21,0.157,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.275,73.8,141.34,0.97,0.22,889,1.7000000000000002,77,5.9,0.0000,0.0000 +2012,10,6,9,30,6.2,1.22,0.16,0.61,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.276,71.39,131.07,0.97,0.22,889,1.6,76,5.4,0.0000,0.0000 +2012,10,6,10,30,5.9,1.22,0.155,0.61,0,0,0,0,7,0.7000000000000001,0,0,0,0,0.278,69.27,119.46000000000001,0.97,0.22,889,1.6,76,5,0.0000,0.0000 +2012,10,6,11,30,5.7,1.23,0.15,0.61,0,0,0,0,7,0.2,0,0,0,0,0.28,67.85,107.26,0.97,0.22,890,1.6,77,4.6000000000000005,0.0000,0.0000 +2012,10,6,12,30,5.6000000000000005,1.23,0.14400000000000002,0.61,0,0,0,0,1,-0.2,0,0,0,0,0.28200000000000003,66.41,94.87,0.97,0.22,890,1.6,78,4.3,0.0000,0.0000 +2012,10,6,13,30,5.9,1.23,0.137,0.61,46,333,90,7,7,-0.5,43,2,7,43,0.28500000000000003,63.39,82.48,0.96,0.22,890,1.6,80,4,0.0000,0.0000 +2012,10,6,14,30,6.800000000000001,1.25,0.125,0.61,82,645,296,0,7,-0.8,22,0,0,22,0.28700000000000003,58.42,70.66,0.96,0.22,890,1.6,83,3.7,15.6487,12.1108 +2012,10,6,15,30,8.1,1.27,0.116,0.61,99,788,498,0,7,-0.9,50,0,0,50,0.29,53.17,59.59,0.96,0.22,890,1.6,88,3.3000000000000003,28.3854,22.1776 +2012,10,6,16,30,9.600000000000001,1.29,0.107,0.61,108,864,664,0,7,-0.7000000000000001,325,64,0,367,0.29,48.52,49.97,0.9500000000000001,0.22,890,1.6,93,2.8000000000000003,39.3268,30.8422 +2012,10,6,17,30,11.100000000000001,1.3,0.097,0.61,110,907,775,7,3,-0.30000000000000004,342,7,7,347,0.29,45.36,42.87,0.9500000000000001,0.22,889,1.6,96,2.2,46.7712,36.7404 +2012,10,6,18,30,12.3,1.28,0.078,0.61,103,936,822,0,8,0.30000000000000004,326,26,0,347,0.289,43.57,39.74,0.9500000000000001,0.22,888,1.6,88,1.8,49.8779,39.2018 +2012,10,6,19,30,13.5,1.29,0.07,0.61,97,937,799,0,4,0.8,377,23,0,394,0.28800000000000003,41.95,41.5,0.9400000000000001,0.22,888,1.6,73,1.7000000000000002,48.2472,37.9094 +2012,10,6,20,30,14.5,1.32,0.063,0.61,89,920,709,0,7,1.3,257,13,0,265,0.28800000000000003,40.63,47.6,0.9400000000000001,0.22,887,1.6,62,1.8,42.0524,33.0009 +2012,10,6,21,30,14.5,1.34,0.063,0.61,81,871,560,0,7,1.5,256,161,0,344,0.28800000000000003,41.21,56.620000000000005,0.9400000000000001,0.22,887,1.6,62,2.2,32.1143,25.1281 +2012,10,6,22,30,13.600000000000001,1.36,0.065,0.61,69,773,366,0,4,1.4000000000000001,151,3,0,152,0.289,43.37,67.37,0.9400000000000001,0.22,887,1.6,68,2.8000000000000003,19.7380,15.3350 +2012,10,6,23,30,11.700000000000001,1.36,0.069,0.61,47,556,153,0,7,1.1,82,13,0,85,0.29,48.14,79.04,0.9400000000000001,0.22,887,1.6,75,3.4000000000000004,7.6348,5.8278 +2012,10,7,0,30,9.700000000000001,1.36,0.07200000000000001,0.61,0,0,0,0,4,0.7000000000000001,0,0,0,0,0.291,53.58,91.33,0.9400000000000001,0.22,888,1.6,78,4.1000000000000005,0.0000,0.0000 +2012,10,7,1,30,7.9,1.35,0.077,0.61,0,0,0,0,4,0.2,0,0,0,0,0.291,58.26,103.73,0.9400000000000001,0.22,889,1.5,78,4.800000000000001,0.0000,0.0000 +2012,10,7,2,30,6.2,1.34,0.08,0.61,0,0,0,0,7,-0.5,0,0,0,0,0.29,61.99,116.04,0.9400000000000001,0.22,890,1.5,77,5,0.0000,0.0000 +2012,10,7,3,30,4.9,1.33,0.084,0.61,0,0,0,0,4,-1.3,0,0,0,0,0.289,64.07000000000001,127.91,0.9400000000000001,0.22,891,1.5,78,4.7,0.0000,0.0000 +2012,10,7,4,30,4.1000000000000005,1.32,0.09,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.289,64.79,138.75,0.9500000000000001,0.22,892,1.5,80,4,0.0000,0.0000 +2012,10,7,5,30,3.4000000000000004,1.31,0.097,0.61,0,0,0,0,1,-2.5,0,0,0,0,0.289,65.27,147.32,0.9500000000000001,0.22,892,1.6,80,3.6,0.0000,0.0000 +2012,10,7,6,30,2.9000000000000004,1.32,0.10200000000000001,0.61,0,0,0,0,8,-3,0,0,0,0,0.289,65.07000000000001,151.39000000000001,0.9500000000000001,0.22,892,1.6,84,3.3000000000000003,0.0000,0.0000 +2012,10,7,7,30,2.4000000000000004,1.31,0.107,0.61,0,0,0,0,1,-3.5,0,0,0,0,0.289,65.19,149.11,0.9500000000000001,0.22,893,1.6,88,3.1,0.0000,0.0000 +2012,10,7,8,30,2.1,1.28,0.11900000000000001,0.61,0,0,0,0,1,-3.8000000000000003,0,0,0,0,0.289,64.84,141.6,0.96,0.22,892,1.7000000000000002,92,2.7,0.0000,0.0000 +2012,10,7,9,30,2,1.26,0.126,0.61,0,0,0,0,4,-4,0,0,0,0,0.289,64.55,131.27,0.96,0.22,892,1.6,96,2.4000000000000004,0.0000,0.0000 +2012,10,7,10,30,2,1.26,0.124,0.61,0,0,0,0,4,-4,0,0,0,0,0.289,64.38,119.63,0.9500000000000001,0.22,892,1.6,102,2.1,0.0000,0.0000 +2012,10,7,11,30,2,1.26,0.12,0.61,0,0,0,0,4,-4,0,0,0,0,0.289,64.44,107.41,0.9500000000000001,0.22,891,1.6,109,2.1,0.0000,0.0000 +2012,10,7,12,30,2.2,1.26,0.116,0.61,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.289,63.85,95.03,0.9500000000000001,0.22,891,1.6,117,2.3000000000000003,0.0000,0.0000 +2012,10,7,13,30,3,1.26,0.11,0.61,42,369,89,7,7,-3.8000000000000003,49,4,7,50,0.289,61,82.65,0.9500000000000001,0.22,891,1.5,124,2.7,0.0000,0.0000 +2012,10,7,14,30,4.6000000000000005,1.27,0.105,0.61,76,672,296,0,4,-3.5,184,31,0,194,0.29,55.58,70.85000000000001,0.9500000000000001,0.22,891,1.5,131,3,1.1196,0.8663 +2012,10,7,15,30,6.5,1.29,0.1,0.61,93,807,499,0,4,-3.3000000000000003,244,17,0,252,0.29,49.68,59.81,0.9500000000000001,0.22,891,1.5,140,2.9000000000000004,2.7631,2.1586 +2012,10,7,16,30,8.4,1.3,0.097,0.61,103,876,663,0,4,-2.9000000000000004,337,58,0,374,0.291,44.71,50.24,0.9500000000000001,0.22,891,1.5,150,2.6,21.2041,16.6281 +2012,10,7,17,30,10.200000000000001,1.3,0.095,0.61,109,911,773,0,4,-2.5,400,62,0,445,0.292,40.97,43.2,0.9500000000000001,0.22,890,1.5,163,2.1,20.5000,16.1024 +2012,10,7,18,30,11.9,1.31,0.093,0.61,110,925,817,0,4,-1.8,383,17,0,396,0.292,38.46,40.12,0.9500000000000001,0.22,889,1.5,184,1.7000000000000002,20.6601,16.2370 +2012,10,7,19,30,13.3,1.31,0.08700000000000001,0.61,106,927,796,0,4,-1,378,22,0,394,0.293,37.15,41.88,0.9500000000000001,0.22,888,1.4000000000000001,222,1.6,23.3591,18.3528 +2012,10,7,20,30,14.4,1.32,0.078,0.61,97,913,708,0,4,-0.4,405,157,0,510,0.294,36.15,47.96,0.9500000000000001,0.22,888,1.3,256,1.6,15.4375,12.1136 +2012,10,7,21,30,14.8,1.32,0.062,0.61,81,883,562,7,2,-0.1,258,442,7,499,0.295,36.04,56.96,0.9400000000000001,0.22,887,1.2000000000000002,274,1.4000000000000001,19.3157,15.1116 +2012,10,7,22,30,14.4,1.33,0.051000000000000004,0.61,64,811,372,0,0,0,64,811,0,372,0.295,37.36,67.67,0.9400000000000001,0.22,887,1,187,0.7000000000000001,7.9591,6.1818 +2012,10,7,23,30,12.200000000000001,1.35,0.045,0.61,42,615,156,0,0,0.1,42,615,0,156,0.296,43.4,79.32000000000001,0.93,0.22,887,1,106,0.6000000000000001,4.0533,3.0927 +2012,10,8,0,30,9.600000000000001,1.37,0.042,0.61,0,0,0,0,0,1.3,0,0,0,0,0.297,56.22,91.60000000000001,0.93,0.22,887,1,126,1.4000000000000001,0.0000,0.0000 +2012,10,8,1,30,8.4,1.3800000000000001,0.041,0.61,0,0,0,0,0,0.5,0,0,0,0,0.296,57.45,104,0.93,0.22,888,1,138,2.5,0.0000,0.0000 +2012,10,8,2,30,7.4,1.4000000000000001,0.041,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.296,60.620000000000005,116.32000000000001,0.93,0.22,888,1,147,2.9000000000000004,0.0000,0.0000 +2012,10,8,3,30,6.300000000000001,1.4000000000000001,0.041,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.295,65.41,128.21,0.93,0.22,889,1,155,2.7,0.0000,0.0000 +2012,10,8,4,30,5.5,1.3900000000000001,0.04,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.294,68.99,139.08,0.93,0.22,889,1,163,2.6,0.0000,0.0000 +2012,10,8,5,30,4.7,1.3800000000000001,0.04,0.61,0,0,0,0,0,0.2,0,0,0,0,0.293,72.69,147.69,0.93,0.22,889,1,171,2.5,0.0000,0.0000 +2012,10,8,6,30,4.1000000000000005,1.36,0.039,0.61,0,0,0,0,0,0.1,0,0,0,0,0.292,75.46000000000001,151.78,0.93,0.22,889,1,180,2.4000000000000004,0.0000,0.0000 +2012,10,8,7,30,3.5,1.34,0.039,0.61,0,0,0,0,0,0.1,0,0,0,0,0.291,78.46000000000001,149.44,0.92,0.22,889,1,190,2.2,0.0000,0.0000 +2012,10,8,8,30,3.1,1.32,0.038,0.61,0,0,0,0,0,0.1,0,0,0,0,0.291,80.64,141.85,0.92,0.22,889,1,199,2.2,0.0000,0.0000 +2012,10,8,9,30,2.7,1.29,0.038,0.61,0,0,0,0,0,0.1,0,0,0,0,0.291,83.14,131.47,0.92,0.22,889,0.9,208,2.2,0.0000,0.0000 +2012,10,8,10,30,2.5,1.27,0.039,0.61,0,0,0,0,0,0.2,0,0,0,0,0.291,84.67,119.79,0.92,0.22,888,1,215,2.3000000000000003,0.0000,0.0000 +2012,10,8,11,30,2.3000000000000003,1.26,0.04,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.291,86.53,107.57000000000001,0.92,0.22,888,1,221,2.4000000000000004,0.0000,0.0000 +2012,10,8,12,30,2.7,1.24,0.042,0.61,0,0,0,0,0,0.4,0,0,0,0,0.29,84.9,95.18,0.93,0.22,888,1.1,223,2.7,0.0000,0.0000 +2012,10,8,13,30,4.6000000000000005,1.24,0.043000000000000003,0.61,33,501,95,0,0,0.6000000000000001,33,501,0,95,0.29,75.11,82.81,0.93,0.22,888,1.1,220,3.2,0.0000,0.0000 +2012,10,8,14,30,8.200000000000001,1.24,0.042,0.61,56,777,309,0,0,0.8,56,777,0,309,0.289,59.78,71.03,0.93,0.22,888,1.1,213,3.8000000000000003,9.8555,7.6236 +2012,10,8,15,30,12.100000000000001,1.24,0.041,0.61,69,891,513,0,0,1.6,69,891,0,513,0.28700000000000003,48.74,60.04,0.93,0.22,888,1.1,208,4.5,13.9085,10.8641 +2012,10,8,16,30,15.600000000000001,1.25,0.04,0.61,76,948,679,0,0,2.6,76,948,0,679,0.28400000000000003,41.5,50.51,0.93,0.22,887,1.1,208,4.9,21.5870,16.9271 +2012,10,8,17,30,18.5,1.25,0.039,0.61,80,978,789,0,0,3.3000000000000003,80,978,0,789,0.28200000000000003,36.49,43.53,0.93,0.22,886,1.1,213,5,26.2663,20.6305 +2012,10,8,18,30,20.900000000000002,1.29,0.04,0.61,82,987,833,0,0,3.9000000000000004,82,987,0,833,0.28,32.79,40.49,0.93,0.22,885,1.1,219,4.9,23.5566,18.5122 +2012,10,8,19,30,22.8,1.28,0.038,0.61,80,980,805,0,0,4.1000000000000005,80,980,0,805,0.278,29.59,42.27,0.93,0.22,884,1.2000000000000002,226,4.800000000000001,23.3367,18.3340 +2012,10,8,20,30,24,1.28,0.037,0.61,75,959,713,0,0,3.9000000000000004,75,959,0,713,0.277,27.150000000000002,48.32,0.92,0.22,883,1.2000000000000002,231,4.6000000000000005,29.6744,23.2830 +2012,10,8,21,30,24.400000000000002,1.25,0.034,0.61,67,912,560,0,0,3.7,67,912,0,560,0.277,26.03,57.28,0.92,0.22,882,1.3,232,4.3,27.9711,21.8797 +2012,10,8,22,30,23.6,1.26,0.036000000000000004,0.61,57,816,363,0,1,3.7,57,816,0,363,0.277,27.32,67.97,0.92,0.22,882,1.4000000000000001,226,3.5,19.4309,15.0871 +2012,10,8,23,30,20.200000000000003,1.27,0.038,0.61,39,608,149,0,1,4.9,39,608,0,149,0.278,36.68,79.61,0.92,0.22,882,1.4000000000000001,210,2.4000000000000004,7.4362,5.6715 +2012,10,9,0,30,17.1,1.28,0.038,0.61,0,0,0,0,7,6,0,0,0,0,0.28,47.84,91.87,0.92,0.22,882,1.5,195,2.4000000000000004,0.0000,0.0000 +2012,10,9,1,30,16.3,1.29,0.039,0.61,0,0,0,0,0,6,0,0,0,0,0.281,50.43,104.27,0.93,0.22,882,1.5,190,3.3000000000000003,0.0000,0.0000 +2012,10,9,2,30,15.600000000000001,1.3,0.04,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.281,53.78,116.59,0.93,0.22,882,1.6,194,3.8000000000000003,0.0000,0.0000 +2012,10,9,3,30,14.5,1.31,0.041,0.61,0,0,0,0,0,6.4,0,0,0,0,0.281,58.42,128.5,0.93,0.22,883,1.6,200,3.9000000000000004,0.0000,0.0000 +2012,10,9,4,30,13.700000000000001,1.3,0.042,0.61,0,0,0,0,0,6.5,0,0,0,0,0.281,61.800000000000004,139.4,0.93,0.22,882,1.6,209,3.8000000000000003,0.0000,0.0000 +2012,10,9,5,30,13,1.29,0.043000000000000003,0.61,0,0,0,0,0,6.5,0,0,0,0,0.281,64.51,148.06,0.93,0.22,882,1.7000000000000002,220,3.7,0.0000,0.0000 +2012,10,9,6,30,12.600000000000001,1.27,0.042,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.28200000000000003,65.34,152.16,0.93,0.22,882,1.7000000000000002,229,3.6,0.0000,0.0000 +2012,10,9,7,30,12.200000000000001,1.25,0.04,0.61,0,0,0,0,0,6,0,0,0,0,0.28300000000000003,65.75,149.77,0.93,0.22,882,1.6,237,3.4000000000000004,0.0000,0.0000 +2012,10,9,8,30,11.5,1.23,0.037,0.61,0,0,0,0,0,5.7,0,0,0,0,0.28400000000000003,67.43,142.1,0.92,0.22,882,1.4000000000000001,245,3.2,0.0000,0.0000 +2012,10,9,9,30,10.8,1.22,0.033,0.61,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28400000000000003,68.69,131.67000000000002,0.92,0.22,882,1.3,255,3,0.0000,0.0000 +2012,10,9,10,30,10.200000000000001,1.21,0.03,0.61,0,0,0,0,0,4.4,0,0,0,0,0.28500000000000003,67.42,119.96000000000001,0.91,0.22,882,1.2000000000000002,267,2.9000000000000004,0.0000,0.0000 +2012,10,9,11,30,9.9,1.2,0.027,0.61,0,0,0,0,0,3,0,0,0,0,0.28500000000000003,62.11,107.72,0.91,0.22,882,1.1,279,2.8000000000000003,0.0000,0.0000 +2012,10,9,12,30,10.4,1.2,0.025,0.61,0,0,0,0,0,0.9,0,0,0,0,0.28600000000000003,51.88,95.34,0.9,0.22,882,1.1,288,3,0.0000,0.0000 +2012,10,9,13,30,12.8,1.19,0.024,0.61,29,543,95,0,0,-1.1,29,543,0,95,0.28600000000000003,38.18,82.98,0.9,0.22,883,1.1,293,3.6,0.0000,0.0000 +2012,10,9,14,30,16.7,1.2,0.024,0.61,48,806,308,0,0,-2.1,48,806,0,308,0.28800000000000003,27.580000000000002,71.22,0.9,0.22,883,1.1,291,3.8000000000000003,15.6718,12.1198 +2012,10,9,15,30,21.6,1.2,0.024,0.61,59,913,512,0,0,-1.4000000000000001,59,913,0,512,0.289,21.36,60.26,0.9,0.22,883,1.1,289,3.6,28.2756,22.0837 +2012,10,9,16,30,26.200000000000003,1.2,0.024,0.61,66,966,676,0,0,-0.7000000000000001,66,966,0,676,0.291,17.07,50.79,0.9,0.22,883,1.1,296,4.3,39.1518,30.6978 +2012,10,9,17,30,28.6,1.22,0.024,0.61,69,992,785,0,0,-0.9,69,992,0,785,0.292,14.64,43.87,0.9,0.22,883,1.1,301,4.7,46.5292,36.5434 +2012,10,9,18,30,29.700000000000003,1.23,0.023,0.61,70,999,826,0,0,-0.7000000000000001,70,999,0,826,0.292,13.98,40.87,0.9,0.22,882,1.2000000000000002,296,4.4,49.5086,38.9046 +2012,10,9,19,30,30.3,1.24,0.023,0.61,69,994,800,0,0,-0.4,69,994,0,800,0.292,13.73,42.65,0.9,0.22,882,1.2000000000000002,291,4.2,47.6326,37.4188 +2012,10,9,20,30,30.400000000000002,1.26,0.023,0.61,66,973,708,0,0,-0.30000000000000004,66,973,0,708,0.291,13.74,48.68,0.9,0.22,881,1.2000000000000002,287,3.9000000000000004,41.4356,32.5080 +2012,10,9,21,30,29.900000000000002,1.28,0.024,0.61,61,923,555,0,0,-0.30000000000000004,61,923,0,555,0.291,14.21,57.61,0.9,0.22,881,1.3,283,3.5,31.3390,24.5107 +2012,10,9,22,30,28.1,1.3,0.024,0.61,51,835,361,0,0,-0.1,51,835,0,361,0.29,15.99,68.27,0.9,0.22,881,1.3,280,2.3000000000000003,18.9135,14.6808 +2012,10,9,23,30,24.700000000000003,1.32,0.025,0.61,35,633,147,0,0,5.800000000000001,35,633,0,147,0.28800000000000003,29.76,79.88,0.9,0.22,882,1.3,277,1.2000000000000002,7.1018,5.4144 +2012,10,10,0,30,21.900000000000002,1.34,0.025,0.61,0,0,0,0,0,5,0,0,0,0,0.28700000000000003,33.2,92.14,0.9,0.22,882,1.3,318,1,0.0000,0.0000 +2012,10,10,1,30,20,1.36,0.026000000000000002,0.61,0,0,0,0,0,3.1,0,0,0,0,0.28600000000000003,32.64,104.53,0.9,0.22,883,1.3,212,1.5,0.0000,0.0000 +2012,10,10,2,30,17.5,1.3800000000000001,0.029,0.61,0,0,0,0,1,2.9000000000000004,0,0,0,0,0.28400000000000003,37.76,116.86,0.89,0.22,885,1.4000000000000001,67,2.9000000000000004,0.0000,0.0000 +2012,10,10,3,30,15.100000000000001,1.4000000000000001,0.032,0.61,0,0,0,0,1,3,0,0,0,0,0.28300000000000003,44.26,128.8,0.89,0.22,886,1.4000000000000001,70,4.1000000000000005,0.0000,0.0000 +2012,10,10,4,30,13.3,1.4000000000000001,0.035,0.61,0,0,0,0,3,3.3000000000000003,0,0,0,0,0.28200000000000003,50.59,139.73,0.9,0.22,887,1.4000000000000001,69,4.4,0.0000,0.0000 +2012,10,10,5,30,11.9,1.3800000000000001,0.036000000000000004,0.61,0,0,0,0,1,3.8000000000000003,0,0,0,0,0.28200000000000003,57.65,148.43,0.91,0.22,888,1.4000000000000001,65,4.3,0.0000,0.0000 +2012,10,10,6,30,10.700000000000001,1.36,0.038,0.61,0,0,0,0,3,4.2,0,0,0,0,0.281,64.22,152.55,0.91,0.22,888,1.4000000000000001,61,4.4,0.0000,0.0000 +2012,10,10,7,30,9.600000000000001,1.35,0.04,0.61,0,0,0,0,1,4.3,0,0,0,0,0.281,69.75,150.1,0.92,0.22,889,1.4000000000000001,60,4.7,0.0000,0.0000 +2012,10,10,8,30,8.700000000000001,1.36,0.043000000000000003,0.61,0,0,0,0,3,4,0,0,0,0,0.28,72.45,142.35,0.92,0.22,889,1.5,58,4.6000000000000005,0.0000,0.0000 +2012,10,10,9,30,8,1.35,0.045,0.61,0,0,0,0,1,3.4000000000000004,0,0,0,0,0.28,72.55,131.86,0.92,0.22,890,1.5,54,4,0.0000,0.0000 +2012,10,10,10,30,7.5,1.35,0.047,0.61,0,0,0,0,1,2.8000000000000003,0,0,0,0,0.28,72.02,120.13,0.92,0.22,890,1.5,50,3.4000000000000004,0.0000,0.0000 +2012,10,10,11,30,7,1.35,0.048,0.61,0,0,0,0,1,2.4000000000000004,0,0,0,0,0.28,72.53,107.88,0.92,0.22,891,1.5,48,2.8000000000000003,0.0000,0.0000 +2012,10,10,12,30,6.800000000000001,1.36,0.047,0.61,0,0,0,0,1,2.2,0,0,0,0,0.279,72.28,95.49,0.92,0.22,891,1.5,47,2.4000000000000004,0.0000,0.0000 +2012,10,10,13,30,7.9,1.37,0.046,0.61,32,472,88,7,3,2,48,1,7,48,0.278,66.17,83.14,0.92,0.22,891,1.5,58,2.7,0.0000,0.0000 +2012,10,10,14,30,10.5,1.37,0.045,0.61,56,754,296,0,3,1.3,155,11,0,159,0.278,52.77,71.41,0.91,0.22,892,1.5,79,3.3000000000000003,15.5938,12.0563 +2012,10,10,15,30,13.200000000000001,1.3800000000000001,0.043000000000000003,0.61,68,872,498,0,3,0.5,228,14,0,235,0.278,41.92,60.49,0.91,0.22,892,1.5,95,3.3000000000000003,28.1839,22.0093 +2012,10,10,16,30,15.700000000000001,1.3900000000000001,0.042,0.61,76,934,663,0,3,0.6000000000000001,305,18,0,316,0.278,35.72,51.06,0.91,0.22,891,1.4000000000000001,108,2.9000000000000004,38.9376,30.5273 +2012,10,10,17,30,18,1.4000000000000001,0.039,0.61,79,966,772,0,3,1.3,406,102,0,479,0.276,32.6,44.2,0.92,0.22,890,1.4000000000000001,123,2.6,46.2498,36.3216 +2012,10,10,18,30,19.900000000000002,1.3900000000000001,0.051000000000000004,0.61,88,968,816,7,2,2.2,319,588,7,761,0.274,30.92,41.24,0.93,0.22,889,1.3,139,2.6,49.0475,38.5398 +2012,10,10,19,30,21.400000000000002,1.3900000000000001,0.05,0.61,86,964,790,0,0,3,86,964,0,790,0.272,29.75,43.03,0.93,0.22,888,1.3,151,2.7,47.2897,37.1469 +2012,10,10,20,30,22.200000000000003,1.4000000000000001,0.049,0.61,81,941,698,0,0,3.5,81,941,0,698,0.27,29.45,49.04,0.93,0.22,887,1.3,157,2.9000000000000004,41.0943,32.2372 +2012,10,10,21,30,22.1,1.4000000000000001,0.048,0.61,73,893,547,0,0,3.9000000000000004,73,893,0,547,0.269,30.42,57.94,0.93,0.22,886,1.3,160,3.1,31.0060,24.2465 +2012,10,10,22,30,21.1,1.41,0.05,0.61,62,793,352,0,0,4.2,62,793,0,352,0.268,33.05,68.57000000000001,0.93,0.22,886,1.3,162,3.2,18.7618,14.5584 +2012,10,10,23,30,18.3,1.41,0.053,0.61,42,568,139,0,0,4.7,42,568,0,139,0.268,40.59,80.16,0.9400000000000001,0.22,886,1.3,161,2.5,7.0080,5.3412 +2012,10,11,0,30,15.4,1.42,0.058,0.61,0,0,0,0,1,5.7,0,0,0,0,0.268,52.54,92.4,0.9400000000000001,0.22,887,1.4000000000000001,159,2.2,0.0000,0.0000 +2012,10,11,1,30,14.200000000000001,1.42,0.064,0.61,0,0,0,0,1,6,0,0,0,0,0.268,57.93,104.79,0.9400000000000001,0.22,887,1.4000000000000001,163,2.8000000000000003,0.0000,0.0000 +2012,10,11,2,30,13.3,1.42,0.07200000000000001,0.61,0,0,0,0,0,6.800000000000001,0,0,0,0,0.269,64.55,117.13,0.9500000000000001,0.22,887,1.5,169,3.1,0.0000,0.0000 +2012,10,11,3,30,12.5,1.42,0.083,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.269,72,129.08,0.9500000000000001,0.22,887,1.6,177,3.1,0.0000,0.0000 +2012,10,11,4,30,12.100000000000001,1.41,0.096,0.61,0,0,0,0,0,8.5,0,0,0,0,0.269,78.53,140.05,0.96,0.22,887,1.8,186,3,0.0000,0.0000 +2012,10,11,5,30,11.9,1.3900000000000001,0.115,0.61,0,0,0,0,0,9.5,0,0,0,0,0.269,85.05,148.79,0.96,0.22,887,2,194,3.1,0.0000,0.0000 +2012,10,11,6,30,12,1.36,0.138,0.61,0,0,0,0,0,10.5,0,0,0,0,0.269,90.81,152.93,0.97,0.22,887,2.2,199,3.1,0.0000,0.0000 +2012,10,11,7,30,12.4,1.31,0.16,0.61,0,0,0,0,1,11.600000000000001,0,0,0,0,0.268,95.16,150.42000000000002,0.97,0.22,887,2.4000000000000004,203,3,0.0000,0.0000 +2012,10,11,8,30,12.8,1.26,0.17,0.61,0,0,0,0,3,12.600000000000001,0,0,0,0,0.268,98.66,142.6,0.97,0.22,887,2.6,204,2.6,0.0000,0.0000 +2012,10,11,9,30,13.200000000000001,1.23,0.169,0.61,0,0,0,0,3,13.200000000000001,0,0,0,0,0.269,100,132.06,0.97,0.22,887,2.6,205,2.3000000000000003,0.0000,0.0000 +2012,10,11,10,30,13.5,1.21,0.16,0.61,0,0,0,0,7,13.5,0,0,0,0,0.269,100,120.3,0.97,0.22,887,2.7,205,2.2,0.0000,0.0000 +2012,10,11,11,30,13.700000000000001,1.22,0.151,0.61,0,0,0,0,0,13.700000000000001,0,0,0,0,0.269,100,108.04,0.97,0.22,887,2.7,204,2.4000000000000004,0.0000,0.0000 +2012,10,11,12,30,14.100000000000001,1.22,0.149,0.61,0,0,0,0,0,14.100000000000001,0,0,0,0,0.268,100,95.65,0.97,0.22,887,2.8000000000000003,204,2.6,0.0000,0.0000 +2012,10,11,13,30,15.4,1.22,0.152,0.61,43,262,73,0,0,14.4,43,262,0,73,0.268,93.63,83.31,0.97,0.22,887,2.8000000000000003,202,3,0.0000,0.0000 +2012,10,11,14,30,17.6,1.24,0.147,0.61,84,574,266,0,3,14.9,154,7,0,157,0.267,84.19,71.61,0.97,0.22,888,2.9000000000000004,201,3.9000000000000004,8.0360,6.2113 +2012,10,11,15,30,20.200000000000003,1.26,0.138,0.61,105,726,460,0,8,15.700000000000001,205,348,0,375,0.266,75.48,60.71,0.97,0.22,888,2.9000000000000004,204,4.6000000000000005,12.9182,10.0867 +2012,10,11,16,30,22.3,1.31,0.121,0.61,111,816,620,0,3,15.600000000000001,359,96,0,419,0.265,65.71000000000001,51.34,0.97,0.22,887,2.9000000000000004,205,4.7,18.1828,14.2542 +2012,10,11,17,30,24.1,1.35,0.105,0.61,111,866,728,7,2,15.200000000000001,285,610,7,719,0.263,57.44,44.53,0.97,0.22,887,2.9000000000000004,202,4.5,28.1951,22.1411 +2012,10,11,18,30,25.700000000000003,1.3800000000000001,0.088,0.61,105,893,773,7,3,14.8,294,610,7,750,0.261,50.86,41.62,0.96,0.22,886,2.9000000000000004,197,4.4,45.1468,35.4725 +2012,10,11,19,30,26.6,1.3900000000000001,0.075,0.61,97,900,752,0,1,14.3,97,900,0,752,0.259,46.78,43.410000000000004,0.96,0.22,885,2.8000000000000003,192,4.5,46.6514,36.6429 +2012,10,11,20,30,26.6,1.3900000000000001,0.068,0.61,89,881,663,0,0,14,89,881,0,663,0.258,46.02,49.39,0.96,0.22,885,2.8000000000000003,188,4.6000000000000005,40.4630,31.7390 +2012,10,11,21,30,26.200000000000003,1.37,0.062,0.61,78,832,516,0,8,14,229,59,0,260,0.257,47.01,58.26,0.96,0.22,885,2.9000000000000004,186,4.6000000000000005,30.5059,23.8517 +2012,10,11,22,30,25.200000000000003,1.37,0.061,0.61,65,727,327,0,7,14.100000000000001,136,458,0,301,0.256,50.29,68.86,0.96,0.22,885,3.1,184,3.9000000000000004,18.2474,14.1546 +2012,10,11,23,30,22.900000000000002,1.37,0.062,0.61,42,494,124,0,1,14.8,42,494,0,124,0.256,60.15,80.43,0.96,0.22,885,3.2,180,2.6,0.0000,0.0000 +2012,10,12,0,30,20.5,1.37,0.063,0.61,0,0,0,0,1,15.3,0,0,0,0,0.256,71.93,92.67,0.96,0.22,886,3.2,173,1.9000000000000001,0.0000,0.0000 +2012,10,12,1,30,19.700000000000003,1.36,0.063,0.61,0,0,0,0,7,15.100000000000001,0,0,0,0,0.256,74.76,105.05,0.96,0.22,886,3.3000000000000003,168,2,0.0000,0.0000 +2012,10,12,2,30,19.3,1.34,0.064,0.61,0,0,0,0,8,15.3,0,0,0,0,0.255,77.55,117.4,0.96,0.22,887,3.2,167,2.3000000000000003,0.0000,0.0000 +2012,10,12,3,30,18.8,1.34,0.066,0.61,0,0,0,0,0,15.600000000000001,0,0,0,0,0.255,81.44,129.37,0.96,0.22,887,3.2,170,2.5,0.0000,0.0000 +2012,10,12,4,30,18.2,1.34,0.069,0.61,0,0,0,0,0,15.9,0,0,0,0,0.255,86.38,140.37,0.96,0.22,887,3,176,2.6,0.0000,0.0000 +2012,10,12,5,30,17.6,1.35,0.073,0.61,0,0,0,0,0,16.2,0,0,0,0,0.254,91.36,149.15,0.96,0.22,887,2.9000000000000004,184,2.5,0.0000,0.0000 +2012,10,12,6,30,17.1,1.35,0.076,0.61,0,0,0,0,0,16.400000000000002,0,0,0,0,0.254,95.48,153.3,0.96,0.22,888,2.9000000000000004,190,2.5,0.0000,0.0000 +2012,10,12,7,30,16.900000000000002,1.34,0.079,0.61,0,0,0,0,0,16.5,0,0,0,0,0.254,97.22,150.74,0.96,0.22,888,2.9000000000000004,194,2.6,0.0000,0.0000 +2012,10,12,8,30,16.8,1.31,0.085,0.61,0,0,0,0,6,16.5,0,0,0,0,0.255,98.35000000000001,142.85,0.96,0.22,888,3,194,2.6,0.0000,0.0000 +2012,10,12,9,30,16.7,1.26,0.1,0.61,0,0,0,0,6,16.6,0,0,0,0,0.256,99.53,132.26,0.97,0.22,888,3.3000000000000003,188,2.3000000000000003,0.0000,0.0000 +2012,10,12,10,30,16.7,1.2,0.135,0.61,0,0,0,0,6,16.7,0,0,0,0,0.257,99.94,120.47,0.98,0.22,887,3.6,179,1.9000000000000001,0.0000,0.0000 +2012,10,12,11,30,16.8,1.1400000000000001,0.199,0.61,0,0,0,0,6,16.8,0,0,0,0,0.258,99.69,108.19,0.98,0.22,887,3.8000000000000003,171,2.1,0.0000,0.0000 +2012,10,12,12,30,17.1,1.1300000000000001,0.244,0.61,0,0,0,0,6,16.8,0,0,0,0,0.258,98.27,95.81,0.98,0.22,888,3.7,169,2.7,0.0000,0.0000 +2012,10,12,13,30,17.7,1.18,0.212,0.61,45,191,67,7,6,17.1,29,0,7,29,0.258,96.28,83.48,0.97,0.22,888,3.3000000000000003,163,3.2,0.0000,0.0000 +2012,10,12,14,30,18.900000000000002,1.2,0.17,0.61,90,542,259,0,4,17.6,94,0,0,94,0.259,91.91,71.8,0.96,0.22,888,3,157,3.5,7.9202,6.1201 +2012,10,12,15,30,21,1.24,0.124,0.61,99,739,458,0,7,18,239,212,0,341,0.259,82.84,60.94,0.96,0.22,888,2.9000000000000004,158,4.1000000000000005,20.5868,16.0724 +2012,10,12,16,30,23.5,1.28,0.098,0.61,101,834,619,0,4,17.5,354,94,0,412,0.259,69.19,51.61,0.96,0.22,888,3,159,4.800000000000001,24.0833,18.8783 +2012,10,12,17,30,25.400000000000002,1.28,0.09,0.61,104,874,723,0,4,16.400000000000002,408,148,0,513,0.259,57.33,44.86,0.96,0.22,887,3.1,162,5.2,42.2824,33.2013 +2012,10,12,18,30,26.3,1.27,0.10200000000000001,0.61,112,876,762,7,3,15.9,428,140,7,532,0.258,52.92,41.99,0.96,0.22,886,3.1,165,5.4,44.4520,34.9243 +2012,10,12,19,30,26.6,1.25,0.111,0.61,114,858,734,0,0,16,114,858,0,734,0.258,52.11,43.79,0.96,0.22,885,3.2,166,5.5,44.3618,34.8420 +2012,10,12,20,30,26.5,1.23,0.115,0.61,110,825,643,7,3,16,371,106,7,439,0.258,52.65,49.74,0.96,0.22,885,3.2,166,5.6000000000000005,38.3865,30.1073 +2012,10,12,21,30,26.1,1.21,0.11900000000000001,0.61,101,758,496,7,7,16,256,109,7,313,0.258,53.79,58.58,0.96,0.22,884,3.3000000000000003,164,5.5,14.4752,11.3160 +2012,10,12,22,30,25.1,1.2,0.125,0.61,84,633,309,0,0,16.1,84,633,0,309,0.258,57.32,69.15,0.96,0.22,884,3.3000000000000003,159,5.2,15.5648,12.0697 +2012,10,12,23,30,23.400000000000002,1.19,0.133,0.61,52,369,112,0,1,16.400000000000002,52,369,0,112,0.258,64.74,80.7,0.96,0.22,883,3.3000000000000003,154,4.9,0.0000,0.0000 +2012,10,13,0,30,21.900000000000002,1.17,0.147,0.61,0,0,0,0,0,16.400000000000002,0,0,0,0,0.259,70.96000000000001,92.93,0.96,0.22,884,3.4000000000000004,151,5.300000000000001,0.0000,0.0000 +2012,10,13,1,30,21,1.12,0.161,0.61,0,0,0,0,0,16.3,0,0,0,0,0.259,74.4,105.31,0.97,0.22,884,3.5,152,5.6000000000000005,0.0000,0.0000 +2012,10,13,2,30,20.3,1.08,0.167,0.61,0,0,0,0,7,16.3,0,0,0,0,0.26,77.69,117.66,0.97,0.22,884,3.5,155,5.6000000000000005,0.0000,0.0000 +2012,10,13,3,30,19.8,1.07,0.163,0.61,0,0,0,0,0,16.400000000000002,0,0,0,0,0.262,80.63,129.65,0.97,0.22,884,3.6,161,5.5,0.0000,0.0000 +2012,10,13,4,30,19.400000000000002,1.06,0.176,0.61,0,0,0,0,0,16.400000000000002,0,0,0,0,0.264,83.04,140.68,0.97,0.22,884,3.7,167,5.5,0.0000,0.0000 +2012,10,13,5,30,19,1.05,0.19,0.61,0,0,0,0,0,16.5,0,0,0,0,0.266,85.56,149.51,0.98,0.22,883,3.7,175,5.4,0.0000,0.0000 +2012,10,13,6,30,18.6,1.05,0.184,0.61,0,0,0,0,0,16.7,0,0,0,0,0.267,88.71000000000001,153.68,0.98,0.22,883,3.5,182,5.2,0.0000,0.0000 +2012,10,13,7,30,18.3,1.06,0.14300000000000002,0.61,0,0,0,0,1,16.900000000000002,0,0,0,0,0.267,91.41,151.07,0.97,0.22,883,3.3000000000000003,188,4.800000000000001,0.0000,0.0000 +2012,10,13,8,30,17.8,1.06,0.10200000000000001,0.61,0,0,0,0,0,17,0,0,0,0,0.267,94.93,143.1,0.97,0.22,883,3,193,4.3,0.0000,0.0000 +2012,10,13,9,30,17.2,1.06,0.08600000000000001,0.61,0,0,0,0,0,16.900000000000002,0,0,0,0,0.268,98.13,132.45,0.97,0.22,882,2.7,200,3.8000000000000003,0.0000,0.0000 +2012,10,13,10,30,16.400000000000002,1.07,0.073,0.61,0,0,0,0,0,16.400000000000002,0,0,0,0,0.268,100,120.64,0.96,0.22,882,2.3000000000000003,209,3.2,0.0000,0.0000 +2012,10,13,11,30,15.200000000000001,1.1,0.055,0.61,0,0,0,0,0,15.200000000000001,0,0,0,0,0.269,100,108.35000000000001,0.9500000000000001,0.22,883,1.8,225,2.7,0.0000,0.0000 +2012,10,13,12,30,13.9,1.1500000000000001,0.042,0.61,0,0,0,0,0,13.5,0,0,0,0,0.27,97.36,95.97,0.9400000000000001,0.22,883,1.5,247,2.8000000000000003,0.0000,0.0000 +2012,10,13,13,30,13.700000000000001,1.2,0.032,0.61,29,494,83,0,0,11,29,494,0,83,0.271,84,83.65,0.93,0.22,883,1.2000000000000002,266,3.3000000000000003,0.0000,0.0000 +2012,10,13,14,30,15.9,1.23,0.024,0.61,48,808,298,0,0,8.4,48,808,0,298,0.272,61.050000000000004,71.99,0.91,0.22,883,0.9,276,4,4.7337,3.6568 +2012,10,13,15,30,19.200000000000003,1.22,0.02,0.61,56,929,504,0,0,4.5,56,929,0,504,0.271,37.93,61.17,0.89,0.22,883,0.8,276,5.1000000000000005,18.6940,14.5927 +2012,10,13,16,30,21.3,1.19,0.019,0.61,61,989,672,0,0,-0.6000000000000001,61,989,0,672,0.27,23.09,51.89,0.89,0.22,883,0.7000000000000001,269,6.2,23.6558,18.5416 +2012,10,13,17,30,22.200000000000003,1.1500000000000001,0.018000000000000002,0.61,64,1016,780,0,0,-1.9000000000000001,64,1016,0,780,0.269,19.92,45.19,0.89,0.22,883,0.7000000000000001,267,6.6000000000000005,30.1393,23.6647 +2012,10,13,18,30,22.700000000000003,1.1300000000000001,0.018000000000000002,0.61,65,1020,819,0,0,-2.6,65,1020,0,819,0.269,18.37,42.36,0.89,0.22,883,0.8,270,6.9,31.5016,24.7481 +2012,10,13,19,30,22.900000000000002,1.1400000000000001,0.019,0.61,65,1013,792,0,0,-3.5,65,1013,0,792,0.268,17,44.160000000000004,0.89,0.22,882,0.8,274,7,43.2547,33.9699 +2012,10,13,20,30,22.900000000000002,1.17,0.02,0.61,63,990,699,0,0,-4.4,63,990,0,699,0.268,15.870000000000001,50.09,0.89,0.22,882,0.8,277,6.9,25.3853,19.9083 +2012,10,13,21,30,22.6,1.2,0.022,0.61,59,942,546,0,0,-4.7,59,942,0,546,0.27,15.74,58.9,0.9,0.22,882,0.8,279,6.6000000000000005,17.3956,13.5968 +2012,10,13,22,30,21.6,1.21,0.023,0.61,50,848,348,0,0,-4.2,50,848,0,348,0.271,17.41,69.44,0.89,0.22,882,0.8,280,5.6000000000000005,15.9382,12.3552 +2012,10,13,23,30,18.7,1.21,0.023,0.61,33,625,131,0,0,-2.6,33,625,0,131,0.271,23.39,80.97,0.89,0.22,882,0.9,281,3.5,0.0000,0.0000 +2012,10,14,0,30,15.600000000000001,1.24,0.024,0.61,0,0,0,0,0,0.4,0,0,0,0,0.27,35.57,93.18,0.9,0.22,883,1,281,2.1,0.0000,0.0000 +2012,10,14,1,30,14.3,1.3,0.026000000000000002,0.61,0,0,0,0,0,1,0,0,0,0,0.271,40.42,105.56,0.9,0.22,884,1,282,2.1,0.0000,0.0000 +2012,10,14,2,30,13.8,1.32,0.026000000000000002,0.61,0,0,0,0,0,0.9,0,0,0,0,0.271,41.46,117.92,0.9,0.22,885,1.1,286,2.3000000000000003,0.0000,0.0000 +2012,10,14,3,30,13.3,1.31,0.025,0.61,0,0,0,0,0,0.8,0,0,0,0,0.271,42.6,129.92000000000002,0.91,0.22,885,1.1,295,2.6,0.0000,0.0000 +2012,10,14,4,30,12.600000000000001,1.32,0.026000000000000002,0.61,0,0,0,0,0,0.9,0,0,0,0,0.272,44.85,140.99,0.91,0.22,886,1.1,307,2.7,0.0000,0.0000 +2012,10,14,5,30,11.8,1.34,0.029,0.61,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.272,48.120000000000005,149.86,0.91,0.22,886,1.1,319,2.6,0.0000,0.0000 +2012,10,14,6,30,11,1.3800000000000001,0.034,0.61,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.272,51.52,154.06,0.91,0.22,887,1,328,2.3000000000000003,0.0000,0.0000 +2012,10,14,7,30,10.3,1.43,0.041,0.61,0,0,0,0,0,1.5,0,0,0,0,0.272,54.52,151.38,0.9,0.22,887,0.9,331,2,0.0000,0.0000 +2012,10,14,8,30,9.9,1.47,0.048,0.61,0,0,0,0,0,1.6,0,0,0,0,0.272,56.33,143.34,0.9,0.22,887,0.9,331,1.9000000000000001,0.0000,0.0000 +2012,10,14,9,30,9.5,1.49,0.051000000000000004,0.61,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.271,58.2,132.64000000000001,0.9,0.22,888,0.9,331,2,0.0000,0.0000 +2012,10,14,10,30,9.3,1.52,0.05,0.61,0,0,0,0,0,1.8,0,0,0,0,0.271,59.49,120.8,0.9,0.22,888,0.9,334,2.1,0.0000,0.0000 +2012,10,14,11,30,9,1.53,0.049,0.61,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.27,61.09,108.51,0.9,0.22,889,1,337,2.2,0.0000,0.0000 +2012,10,14,12,30,9,1.55,0.048,0.61,0,0,0,0,0,2,0,0,0,0,0.27,61.52,96.13,0.9,0.22,890,1,340,2.4000000000000004,0.0000,0.0000 +2012,10,14,13,30,10.700000000000001,1.55,0.048,0.61,30,459,79,0,0,2.2,30,459,0,79,0.269,55.78,83.81,0.9,0.22,891,1.1,343,3,0.0000,0.0000 +2012,10,14,14,30,14,1.55,0.048,0.61,56,753,286,0,0,2.7,56,753,0,286,0.27,46.44,72.19,0.91,0.22,891,1.2000000000000002,175,3.4000000000000004,14.9803,11.5693 +2012,10,14,15,30,17.8,1.55,0.047,0.61,69,874,487,0,0,2.6,69,874,0,487,0.27,36.26,61.4,0.91,0.22,892,1.2000000000000002,22,3.5,27.5907,21.5345 +2012,10,14,16,30,20.8,1.55,0.047,0.61,77,933,650,0,0,1.1,77,933,0,650,0.27,26.89,52.17,0.91,0.22,892,1.2000000000000002,44,3.4000000000000004,38.5413,30.2063 +2012,10,14,17,30,22.6,1.55,0.047,0.61,82,960,755,0,0,1.1,82,960,0,755,0.271,24.17,45.52,0.91,0.22,892,1.3,48,2.7,45.7816,35.9440 +2012,10,14,18,30,23.8,1.57,0.046,0.61,83,971,797,0,0,1.5,83,971,0,797,0.272,23.11,42.730000000000004,0.91,0.22,891,1.3,46,2,48.4496,38.0601 +2012,10,14,19,30,24.5,1.57,0.047,0.61,83,964,770,0,0,1.8,83,964,0,770,0.272,22.6,44.53,0.91,0.22,890,1.3,44,1.2000000000000002,46.6243,36.6136 +2012,10,14,20,30,24.700000000000003,1.56,0.047,0.61,79,939,677,0,0,1.9000000000000001,79,939,0,677,0.272,22.56,50.44,0.92,0.22,890,1.3,58,0.7000000000000001,40.3681,31.6553 +2012,10,14,21,30,24.400000000000002,1.47,0.05,0.61,73,883,525,0,0,1.9000000000000001,73,883,0,525,0.272,22.900000000000002,59.21,0.92,0.22,889,1.3,109,0.7000000000000001,30.2914,23.6727 +2012,10,14,22,30,23.200000000000003,1.46,0.05,0.61,60,784,332,0,0,1.7000000000000002,60,784,0,332,0.273,24.37,69.73,0.92,0.22,889,1.2000000000000002,153,0.8,17.9043,13.8745 +2012,10,14,23,30,20.6,1.46,0.051000000000000004,0.61,38,543,121,0,0,4.800000000000001,38,543,0,121,0.273,35.480000000000004,81.23,0.92,0.22,889,1.2000000000000002,151,0.9,0.0000,0.0000 +2012,10,15,0,30,17.8,1.45,0.051000000000000004,0.61,0,0,0,0,0,4.7,0,0,0,0,0.274,41.84,93.44,0.92,0.22,889,1.1,141,1.1,0.0000,0.0000 +2012,10,15,1,30,15.9,1.45,0.051000000000000004,0.61,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.274,44.54,105.81,0.92,0.22,890,1.1,141,1.2000000000000002,0.0000,0.0000 +2012,10,15,2,30,14.600000000000001,1.45,0.05,0.61,0,0,0,0,0,3.5,0,0,0,0,0.274,47.33,118.18,0.92,0.22,890,1.1,149,1.4000000000000001,0.0000,0.0000 +2012,10,15,3,30,13.700000000000001,1.45,0.048,0.61,0,0,0,0,0,3.2,0,0,0,0,0.274,48.980000000000004,130.2,0.92,0.22,891,1.1,159,1.5,0.0000,0.0000 +2012,10,15,4,30,13.100000000000001,1.45,0.047,0.61,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.274,49.88,141.29,0.92,0.22,891,1.1,168,1.7000000000000002,0.0000,0.0000 +2012,10,15,5,30,12.600000000000001,1.45,0.046,0.61,0,0,0,1,0,2.7,0,0,1,0,0.274,50.75,150.22,0.92,0.22,891,1.1,178,1.9000000000000001,0.0000,0.0000 +2012,10,15,6,30,12.100000000000001,1.45,0.044,0.61,0,0,0,0,0,2.5,0,0,0,0,0.274,51.92,154.43,0.92,0.22,891,1.1,187,2.1,0.0000,0.0000 +2012,10,15,7,30,11.600000000000001,1.44,0.042,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.274,53.25,151.70000000000002,0.92,0.22,891,1.1,195,2.2,0.0000,0.0000 +2012,10,15,8,30,11.100000000000001,1.43,0.041,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.274,54.64,143.58,0.92,0.22,890,1.1,203,2.3000000000000003,0.0000,0.0000 +2012,10,15,9,30,10.700000000000001,1.41,0.04,0.61,0,0,0,0,0,2.2,0,0,0,0,0.274,55.88,132.84,0.92,0.22,890,1,212,2.3000000000000003,0.0000,0.0000 +2012,10,15,10,30,10.4,1.4000000000000001,0.039,0.61,0,0,0,0,1,2.2,0,0,0,0,0.274,56.9,120.97,0.92,0.22,890,1,221,2.3000000000000003,0.0000,0.0000 +2012,10,15,11,30,10.200000000000001,1.37,0.038,0.61,0,0,0,0,0,2.2,0,0,0,0,0.274,57.58,108.66,0.92,0.22,890,1,230,2.4000000000000004,0.0000,0.0000 +2012,10,15,12,30,10.4,1.36,0.038,0.61,0,0,0,0,1,2.2,0,0,0,0,0.273,56.95,96.29,0.92,0.22,890,1,237,2.6,0.0000,0.0000 +2012,10,15,13,30,12,1.35,0.038,0.61,29,474,78,0,1,2.3000000000000003,29,474,0,78,0.271,51.64,83.99,0.92,0.22,890,1,243,3.3000000000000003,0.0000,0.0000 +2012,10,15,14,30,15.100000000000001,1.35,0.037,0.61,53,775,287,0,0,2.6,53,775,0,287,0.27,43.02,72.38,0.92,0.22,890,1,243,3.7,14.3504,11.0795 +2012,10,15,15,30,18.8,1.35,0.036000000000000004,0.61,65,894,490,0,0,3.1,65,894,0,490,0.268,35.13,61.64,0.92,0.22,889,1,232,4.4,26.6219,20.7754 +2012,10,15,16,30,21.8,1.34,0.035,0.61,72,953,653,0,0,2.5,72,953,0,653,0.267,28,52.45,0.92,0.22,889,1,221,5.300000000000001,37.2374,29.1818 +2012,10,15,17,30,23.6,1.35,0.035,0.61,76,982,761,7,2,2.2,265,689,7,746,0.265,24.69,45.85,0.92,0.22,888,1,219,5.5,44.2707,34.7554 +2012,10,15,18,30,24.8,1.31,0.038,0.61,80,989,802,0,8,2.2,273,537,0,665,0.264,22.86,43.1,0.92,0.22,887,1,219,5.6000000000000005,47.1024,36.9992 +2012,10,15,19,30,25.3,1.29,0.04,0.61,80,977,772,0,8,2.1,243,579,0,653,0.262,22.1,44.9,0.92,0.22,886,1.1,220,5.6000000000000005,45.2815,35.5564 +2012,10,15,20,30,25.200000000000003,1.28,0.04,0.61,76,952,678,0,8,2.1,218,568,0,577,0.261,22.16,50.79,0.92,0.22,885,1.1,222,5.4,39.0468,30.6161 +2012,10,15,21,30,24.700000000000003,1.29,0.038,0.61,68,904,526,0,0,2.1,68,904,0,526,0.261,22.87,59.52,0.92,0.22,884,1.1,221,5.2,29.0758,22.7190 +2012,10,15,22,30,23.5,1.27,0.039,0.61,57,802,331,0,1,2.2,57,802,0,331,0.261,24.810000000000002,70.01,0.93,0.22,883,1.1,219,4.4,17.0373,13.1980 +2012,10,15,23,30,21,1.25,0.04,0.61,36,560,119,0,8,2.9000000000000004,67,261,0,106,0.261,30.23,81.49,0.93,0.22,883,1.1,213,3.4000000000000004,0.0000,0.0000 +2012,10,16,0,30,19,1.24,0.04,0.61,0,0,0,0,1,3.6,0,0,0,0,0.262,36.01,93.69,0.93,0.22,883,1.1,205,3.3000000000000003,0.0000,0.0000 +2012,10,16,1,30,18.3,1.22,0.04,0.61,0,0,0,0,1,3.4000000000000004,0,0,0,0,0.264,37.08,106.06,0.93,0.22,883,1.1,200,3.9000000000000004,0.0000,0.0000 +2012,10,16,2,30,17.5,1.22,0.04,0.61,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.265,38.81,118.43,0.93,0.22,883,1.1,198,4.4,0.0000,0.0000 +2012,10,16,3,30,16.6,1.23,0.04,0.61,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.266,41.25,130.46,0.93,0.22,883,1.1,201,4.4,0.0000,0.0000 +2012,10,16,4,30,15.600000000000001,1.23,0.04,0.61,0,0,0,0,1,3.5,0,0,0,0,0.267,44.42,141.6,0.93,0.22,882,1.1,204,4.1000000000000005,0.0000,0.0000 +2012,10,16,5,30,14.600000000000001,1.24,0.039,0.61,0,0,0,1,7,3.8000000000000003,0,0,1,0,0.268,48.2,150.56,0.93,0.22,882,1,208,3.6,0.0000,0.0000 +2012,10,16,6,30,13.8,1.25,0.037,0.61,0,0,0,0,7,4,0,0,0,0,0.268,51.5,154.8,0.92,0.22,882,1,217,3.3000000000000003,0.0000,0.0000 +2012,10,16,7,30,13.100000000000001,1.27,0.035,0.61,0,0,0,0,7,4,0,0,0,0,0.269,53.92,152.02,0.92,0.22,881,1,228,3.1,0.0000,0.0000 +2012,10,16,8,30,12.5,1.29,0.033,0.61,0,0,0,0,1,3.8000000000000003,0,0,0,0,0.271,55.29,143.82,0.92,0.22,881,0.9,239,3,0.0000,0.0000 +2012,10,16,9,30,12,1.29,0.031,0.61,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.272,55.660000000000004,133.03,0.91,0.22,880,0.9,249,3,0.0000,0.0000 +2012,10,16,10,30,11.5,1.29,0.029,0.61,0,0,0,0,7,2.9000000000000004,0,0,0,0,0.273,55.61,121.14,0.91,0.22,880,0.8,255,3,0.0000,0.0000 +2012,10,16,11,30,10.8,1.27,0.026000000000000002,0.61,0,0,0,0,7,2.4000000000000004,0,0,0,0,0.272,55.96,108.82000000000001,0.9,0.22,879,0.8,259,3,0.0000,0.0000 +2012,10,16,12,30,10.4,1.26,0.024,0.61,0,0,0,0,1,1.9000000000000001,0,0,0,0,0.27,55.5,96.45,0.9,0.22,879,0.7000000000000001,265,3.3000000000000003,0.0000,0.0000 +2012,10,16,13,30,11.4,1.25,0.022,0.61,26,527,79,0,0,1.6,26,527,0,79,0.268,51.01,84.16,0.9,0.22,879,0.7000000000000001,271,3.7,0.0000,0.0000 +2012,10,16,14,30,14.600000000000001,1.25,0.022,0.61,46,817,291,0,0,1.6,46,817,0,291,0.268,41.44,72.58,0.89,0.22,879,0.7000000000000001,278,3.8000000000000003,14.3751,11.0954 +2012,10,16,15,30,18.8,1.26,0.021,0.61,56,930,495,0,0,1.7000000000000002,56,930,0,495,0.27,31.82,61.870000000000005,0.89,0.22,879,0.7000000000000001,288,3.5,26.7454,20.8686 +2012,10,16,16,30,23.1,1.27,0.021,0.61,62,979,655,0,0,1.2000000000000002,62,979,0,655,0.272,23.63,52.730000000000004,0.89,0.22,879,0.8,288,3.1,37.3665,29.2803 +2012,10,16,17,30,26.3,1.27,0.021,0.61,66,1006,763,0,0,0.8,66,1006,0,763,0.274,18.94,46.18,0.89,0.22,878,0.8,278,3.1,43.6994,34.3043 +2012,10,16,18,30,28.3,1.25,0.024,0.61,70,1008,801,0,0,-0.2,70,1008,0,801,0.273,15.73,43.46,0.89,0.22,877,0.9,274,3.5,39.2625,30.8388 +2012,10,16,19,30,29.200000000000003,1.24,0.024,0.61,69,1002,774,0,0,-0.6000000000000001,69,1002,0,774,0.271,14.41,45.27,0.89,0.22,876,0.9,277,3.8000000000000003,38.3600,30.1191 +2012,10,16,20,30,29.400000000000002,1.23,0.023,0.61,65,980,680,0,0,-0.9,65,980,0,680,0.269,13.950000000000001,51.13,0.89,0.22,876,0.9,284,3.9000000000000004,33.2352,26.0566 +2012,10,16,21,30,29,1.23,0.023,0.61,59,937,530,0,0,-1,59,937,0,530,0.268,14.18,59.83,0.89,0.22,875,0.8,287,3.5,29.0798,22.7183 +2012,10,16,22,30,26.900000000000002,1.23,0.023,0.61,49,841,333,0,0,-0.8,49,841,0,333,0.266,16.29,70.29,0.89,0.22,875,0.8,281,2.3000000000000003,16.9436,13.1209 +2012,10,16,23,30,22.6,1.24,0.022,0.61,31,612,119,0,0,5.300000000000001,31,612,0,119,0.265,32.49,81.75,0.89,0.22,875,0.8,266,1.4000000000000001,0.0000,0.0000 +2012,10,17,0,30,19.3,1.23,0.021,0.61,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.264,36.25,93.94,0.89,0.22,875,0.8,252,1.6,0.0000,0.0000 +2012,10,17,1,30,18.400000000000002,1.18,0.02,0.61,0,0,0,0,0,2.2,0,0,0,0,0.264,33.86,106.3,0.88,0.22,875,0.8,245,2.3000000000000003,0.0000,0.0000 +2012,10,17,2,30,18.5,1.09,0.019,0.61,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.265,30.05,118.67,0.88,0.22,875,0.8,245,3.5,0.0000,0.0000 +2012,10,17,3,30,18.400000000000002,1.02,0.018000000000000002,0.61,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.266,27.42,130.73,0.88,0.22,875,0.8,251,4.7,0.0000,0.0000 +2012,10,17,4,30,17.6,1.04,0.018000000000000002,0.61,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.267,27.39,141.89000000000001,0.88,0.22,874,0.7000000000000001,257,5.1000000000000005,0.0000,0.0000 +2012,10,17,5,30,16.400000000000002,1.1300000000000001,0.017,0.61,0,0,0,1,0,-1.8,0,0,1,0,0.267,28.86,150.91,0.88,0.22,874,0.8,260,5,0.0000,0.0000 +2012,10,17,6,30,15.4,1.22,0.018000000000000002,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.268,30.37,155.17000000000002,0.88,0.22,874,0.8,260,4.9,0.0000,0.0000 +2012,10,17,7,30,14.600000000000001,1.28,0.018000000000000002,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.268,31.7,152.33,0.88,0.22,874,0.8,260,4.9,0.0000,0.0000 +2012,10,17,8,30,14,1.29,0.019,0.61,0,0,0,0,0,-2,0,0,0,0,0.268,33.01,144.06,0.88,0.22,874,0.9,262,4.7,0.0000,0.0000 +2012,10,17,9,30,13.5,1.22,0.02,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.268,34.43,133.22,0.88,0.22,874,0.9,267,4.5,0.0000,0.0000 +2012,10,17,10,30,13.100000000000001,1.11,0.021,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.269,35.72,121.3,0.88,0.22,874,0.9,273,4.2,0.0000,0.0000 +2012,10,17,11,30,12.8,1.06,0.023,0.61,0,0,0,0,0,-1.6,0,0,0,0,0.269,36.82,108.98,0.89,0.22,875,0.9,280,4.1000000000000005,0.0000,0.0000 +2012,10,17,12,30,12.700000000000001,1.04,0.025,0.61,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.269,37.53,96.61,0.89,0.22,876,1,295,4,0.0000,0.0000 +2012,10,17,13,30,14.100000000000001,1.05,0.026000000000000002,0.61,26,484,74,0,0,-1.1,26,484,0,74,0.268,35,84.33,0.89,0.22,877,1.1,319,4.2,0.0000,0.0000 +2012,10,17,14,30,17.3,1.09,0.026000000000000002,0.61,47,785,280,0,0,-0.4,47,785,0,280,0.268,30.01,72.78,0.89,0.22,878,1.1,169,4.5,14.5482,11.2256 +2012,10,17,15,30,20.400000000000002,1.1300000000000001,0.024,0.61,58,909,483,0,0,0.5,58,909,0,483,0.267,26.45,62.1,0.89,0.22,879,1,13,4.6000000000000005,26.9787,21.0476 +2012,10,17,16,30,22.5,1.16,0.022,0.61,63,972,648,0,0,0.7000000000000001,63,972,0,648,0.267,23.69,53.01,0.89,0.22,879,0.9,20,4.3,37.4376,29.3332 +2012,10,17,17,30,23.900000000000002,1.19,0.021,0.61,66,1006,758,0,0,0.9,66,1006,0,758,0.266,22,46.51,0.89,0.22,879,0.8,16,4,44.6500,35.0480 +2012,10,17,18,30,24.900000000000002,1.19,0.027,0.61,72,1009,800,0,0,1,72,1009,0,800,0.263,20.86,43.82,0.9,0.22,879,0.8,14,3.7,47.2459,37.1068 +2012,10,17,19,30,25.5,1.19,0.028,0.61,72,997,769,0,0,0.8,72,997,0,769,0.262,19.85,45.64,0.9,0.22,878,0.9,18,3.2,45.4186,35.6585 +2012,10,17,20,30,25.6,1.19,0.029,0.61,69,972,674,0,0,0.4,69,972,0,674,0.261,19.16,51.47,0.9,0.22,878,0.9,27,2.7,39.1169,30.6647 +2012,10,17,21,30,25.3,1.21,0.023,0.61,59,930,522,0,0,-0.1,59,930,0,522,0.262,18.8,60.14,0.9,0.22,878,0.9,44,2.1,29.2485,22.8463 +2012,10,17,22,30,23.900000000000002,1.21,0.023,0.61,49,832,326,0,0,-0.6000000000000001,49,832,0,326,0.262,19.77,70.57000000000001,0.9,0.22,878,0.9,70,1.7000000000000002,17.0031,13.1623 +2012,10,17,23,30,20.3,1.2,0.024,0.61,31,592,114,0,0,2.1,31,592,0,114,0.261,29.79,82.01,0.9,0.22,878,0.9,89,1.7000000000000002,0.0000,0.0000 +2012,10,18,0,30,17,1.19,0.024,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.261,37.35,94.18,0.89,0.22,879,0.8,96,2.2,0.0000,0.0000 +2012,10,18,1,30,15.3,1.17,0.023,0.61,0,0,0,0,1,1.3,0,0,0,0,0.26,38.69,106.54,0.89,0.22,879,0.8,99,2.5,0.0000,0.0000 +2012,10,18,2,30,13.700000000000001,1.17,0.022,0.61,0,0,0,0,0,0.8,0,0,0,0,0.26,41.47,118.92,0.89,0.22,880,0.7000000000000001,102,2.3000000000000003,0.0000,0.0000 +2012,10,18,3,30,12.200000000000001,1.18,0.021,0.61,0,0,0,0,0,0.4,0,0,0,0,0.26,44.34,130.99,0.89,0.22,880,0.7000000000000001,107,2.1,0.0000,0.0000 +2012,10,18,4,30,10.700000000000001,1.22,0.02,0.61,0,0,0,0,0,0.1,0,0,0,0,0.26,48,142.18,0.88,0.22,881,0.7000000000000001,114,2,0.0000,0.0000 +2012,10,18,5,30,9.3,1.29,0.02,0.61,0,0,0,0,0,0,0,0,0,0,0.26,52.15,151.25,0.88,0.22,881,0.6000000000000001,116,1.9000000000000001,0.0000,0.0000 +2012,10,18,6,30,8.1,1.37,0.022,0.61,0,0,0,0,0,-0.1,0,0,0,0,0.26,56.34,155.53,0.88,0.22,882,0.6000000000000001,110,1.7000000000000002,0.0000,0.0000 +2012,10,18,7,30,7,1.41,0.023,0.61,0,0,0,0,0,-0.2,0,0,0,0,0.261,60.33,152.64000000000001,0.88,0.22,883,0.7000000000000001,99,1.7000000000000002,0.0000,0.0000 +2012,10,18,8,30,6,1.41,0.023,0.61,0,0,0,0,0,-0.2,0,0,0,0,0.261,64.36,144.3,0.88,0.22,883,0.7000000000000001,86,1.6,0.0000,0.0000 +2012,10,18,9,30,5.2,1.3800000000000001,0.022,0.61,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.261,67.63,133.41,0.88,0.22,884,0.7000000000000001,76,1.4000000000000001,0.0000,0.0000 +2012,10,18,10,30,4.7,1.36,0.02,0.61,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.261,68.49,121.47,0.88,0.22,884,0.7000000000000001,73,1.2000000000000002,0.0000,0.0000 +2012,10,18,11,30,4.5,1.34,0.019,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.262,66.83,109.14,0.89,0.22,884,0.7000000000000001,76,1,0.0000,0.0000 +2012,10,18,12,30,4.6000000000000005,1.33,0.018000000000000002,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.263,63.31,96.77,0.89,0.22,885,0.7000000000000001,81,0.9,0.0000,0.0000 +2012,10,18,13,30,6.300000000000001,1.33,0.018000000000000002,0.61,24,525,74,0,0,-2.2,24,525,0,74,0.263,54.730000000000004,84.5,0.89,0.22,886,0.7000000000000001,89,1.1,0.0000,0.0000 +2012,10,18,14,30,9.8,1.34,0.018000000000000002,0.61,44,820,283,0,0,-2.6,44,820,0,283,0.264,41.65,72.98,0.89,0.22,886,0.7000000000000001,113,1.8,13.9722,10.7778 +2012,10,18,15,30,13.600000000000001,1.34,0.018000000000000002,0.61,54,932,486,0,0,-3.6,54,932,0,486,0.264,30.18,62.34,0.89,0.22,887,0.7000000000000001,140,2.7,26.2857,20.5039 +2012,10,18,16,30,16.400000000000002,1.35,0.019,0.61,61,985,650,0,0,-4.1000000000000005,61,985,0,650,0.264,24.34,53.29,0.89,0.22,887,0.7000000000000001,151,3,36.9941,28.9829 +2012,10,18,17,30,18.400000000000002,1.36,0.019,0.61,64,1007,753,0,0,-4.2,64,1007,0,753,0.264,21.17,46.84,0.9,0.22,886,0.8,164,2.6,44.3119,34.7800 +2012,10,18,18,30,20,1.37,0.019,0.61,66,1016,794,0,0,-4.6000000000000005,66,1016,0,794,0.264,18.69,44.18,0.9,0.22,886,0.8,183,2.3000000000000003,47.1401,37.0211 +2012,10,18,19,30,21.1,1.3800000000000001,0.019,0.61,65,1010,766,0,0,-4.7,65,1010,0,766,0.264,17.25,46,0.9,0.22,885,0.8,203,2,45.0754,35.3861 +2012,10,18,20,30,21.700000000000003,1.3900000000000001,0.019,0.61,62,987,672,0,0,-4.800000000000001,62,987,0,672,0.263,16.59,51.800000000000004,0.9,0.22,884,0.8,221,1.6,38.7204,30.3507 +2012,10,18,21,30,21.8,1.27,0.025,0.61,60,930,519,0,0,-4.7,60,930,0,519,0.263,16.52,60.44,0.91,0.22,884,0.8,237,1.3,28.7548,22.4567 +2012,10,18,22,30,21.1,1.29,0.025,0.61,50,830,323,0,0,-4.7,50,830,0,323,0.263,17.25,70.84,0.91,0.22,884,0.8,224,0.7000000000000001,16.6036,12.8483 +2012,10,18,23,30,18.400000000000002,1.31,0.023,0.61,31,592,110,0,0,-0.4,31,592,0,110,0.264,28.1,82.26,0.9,0.22,884,0.8,168,0.7000000000000001,0.0000,0.0000 +2012,10,19,0,30,15,1.35,0.022,0.61,0,0,0,0,0,-0.5,0,0,0,0,0.264,34.61,94.42,0.9,0.23,884,0.8,132,1.2000000000000002,0.0000,0.0000 +2012,10,19,1,30,12.9,1.4000000000000001,0.023,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.264,38.75,106.78,0.9,0.23,884,0.8,135,1.5,0.0000,0.0000 +2012,10,19,2,30,12,1.44,0.024,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.264,39.01,119.16,0.9,0.23,884,0.8,141,1.7000000000000002,0.0000,0.0000 +2012,10,19,3,30,11.100000000000001,1.49,0.027,0.61,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.264,40.82,131.24,0.89,0.23,885,0.8,146,1.8,0.0000,0.0000 +2012,10,19,4,30,10.100000000000001,1.53,0.032,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.263,44.480000000000004,142.47,0.89,0.23,885,0.8,152,1.6,0.0000,0.0000 +2012,10,19,5,30,9.200000000000001,1.56,0.036000000000000004,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.263,48.410000000000004,151.59,0.89,0.23,885,0.9,157,1.5,0.0000,0.0000 +2012,10,19,6,30,8.4,1.58,0.041,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.262,51.94,155.9,0.89,0.23,885,0.9,162,1.3,0.0000,0.0000 +2012,10,19,7,30,7.800000000000001,1.59,0.045,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.261,54.59,152.95000000000002,0.89,0.23,886,0.9,167,1.2000000000000002,0.0000,0.0000 +2012,10,19,8,30,7.300000000000001,1.59,0.047,0.61,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.26,56.85,144.53,0.89,0.23,886,0.9,173,1.2000000000000002,0.0000,0.0000 +2012,10,19,9,30,6.9,1.6,0.049,0.61,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.26,59.06,133.6,0.89,0.23,886,0.9,181,1.2000000000000002,0.0000,0.0000 +2012,10,19,10,30,6.6000000000000005,1.6,0.051000000000000004,0.61,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.259,61.24,121.63,0.89,0.23,886,0.9,190,1.1,0.0000,0.0000 +2012,10,19,11,30,6.300000000000001,1.59,0.052000000000000005,0.61,0,0,0,0,0,0,0,0,0,0,0.258,64.01,109.3,0.9,0.23,886,1,200,1.1,0.0000,0.0000 +2012,10,19,12,30,6.300000000000001,1.59,0.052000000000000005,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.258,65.64,96.93,0.9,0.23,886,1,209,1.1,0.0000,0.0000 +2012,10,19,13,30,8.3,1.59,0.051000000000000004,0.61,27,422,67,0,0,0.7000000000000001,27,422,0,67,0.257,58.85,84.67,0.9,0.23,886,1,216,1.4000000000000001,0.0000,0.0000 +2012,10,19,14,30,12.100000000000001,1.59,0.051000000000000004,0.61,55,744,270,0,0,1.3,55,744,0,270,0.257,47.660000000000004,73.18,0.9,0.23,886,1,213,2.3000000000000003,14.0956,10.8696 +2012,10,19,15,30,16.1,1.6,0.049,0.61,69,874,471,0,0,1.6,69,874,0,471,0.257,37.52,62.57,0.9,0.23,886,1,204,3.5,26.4077,20.5957 +2012,10,19,16,30,19.5,1.6,0.047,0.61,76,938,634,0,0,1.6,76,938,0,634,0.257,30.400000000000002,53.57,0.9,0.23,886,1,201,4.3,37.0642,29.0350 +2012,10,19,17,30,21.900000000000002,1.6,0.045,0.61,80,971,740,0,0,1.4000000000000001,80,971,0,740,0.257,25.82,47.17,0.89,0.23,885,1,204,4.3,43.9738,34.5119 +2012,10,19,18,30,23.700000000000003,1.61,0.039,0.61,79,992,785,0,0,0.9,79,992,0,785,0.256,22.31,44.54,0.89,0.23,884,0.9,210,4.2,46.7394,36.7038 +2012,10,19,19,30,25.1,1.6,0.039,0.61,78,985,757,0,0,0.4,78,985,0,757,0.256,19.73,46.35,0.89,0.23,883,0.9,218,4,44.8504,35.2067 +2012,10,19,20,30,25.700000000000003,1.58,0.038,0.61,73,961,663,0,0,-0.2,73,961,0,663,0.255,18.32,52.14,0.89,0.23,882,0.9,224,3.7,38.5551,30.2180 +2012,10,19,21,30,25.700000000000003,1.58,0.034,0.61,64,919,513,0,0,-0.7000000000000001,64,919,0,513,0.256,17.64,60.74,0.89,0.23,881,0.8,227,3.5,28.5385,22.2840 +2012,10,19,22,30,23.8,1.55,0.032,0.61,52,818,317,0,0,-1,52,818,0,317,0.256,19.240000000000002,71.11,0.89,0.23,881,0.8,223,2.5,16.4104,12.6942 +2012,10,19,23,30,19.5,1.51,0.029,0.61,31,579,107,0,0,2.7,31,579,0,107,0.257,32.77,82.5,0.89,0.23,880,0.7000000000000001,214,1.6,0.0000,0.0000 +2012,10,20,0,30,16.2,1.46,0.026000000000000002,0.61,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.258,38.21,94.66,0.89,0.23,880,0.7000000000000001,205,1.7000000000000002,0.0000,0.0000 +2012,10,20,1,30,15.100000000000001,1.42,0.023,0.61,0,0,0,0,0,0.8,0,0,0,0,0.259,37.75,107.01,0.88,0.23,880,0.6000000000000001,201,2,0.0000,0.0000 +2012,10,20,2,30,14.5,1.4000000000000001,0.021,0.61,0,0,0,0,0,0.1,0,0,0,0,0.26,37.36,119.39,0.88,0.23,880,0.6000000000000001,203,2.3000000000000003,0.0000,0.0000 +2012,10,20,3,30,13.9,1.41,0.019,0.61,0,0,0,0,0,-0.4,0,0,0,0,0.261,37.37,131.49,0.87,0.23,880,0.6000000000000001,208,2.6,0.0000,0.0000 +2012,10,20,4,30,13.200000000000001,1.42,0.018000000000000002,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.261,38.12,142.76,0.87,0.23,880,0.6000000000000001,215,2.8000000000000003,0.0000,0.0000 +2012,10,20,5,30,12.4,1.42,0.017,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.26,39.92,151.92000000000002,0.87,0.23,880,0.6000000000000001,223,2.9000000000000004,0.0000,0.0000 +2012,10,20,6,30,11.5,1.41,0.016,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.259,42.4,156.26,0.88,0.23,880,0.5,232,2.9000000000000004,0.0000,0.0000 +2012,10,20,7,30,10.8,1.4000000000000001,0.015,0.61,0,0,0,0,0,-1,0,0,0,0,0.258,43.87,153.26,0.87,0.23,880,0.5,243,2.9000000000000004,0.0000,0.0000 +2012,10,20,8,30,10.3,1.3800000000000001,0.014,0.61,0,0,0,0,0,-1.6,0,0,0,0,0.257,43.37,144.77,0.87,0.23,879,0.5,256,3.1,0.0000,0.0000 +2012,10,20,9,30,10.100000000000001,1.37,0.013000000000000001,0.61,0,0,0,0,0,-2.7,0,0,0,0,0.257,40.61,133.78,0.87,0.23,879,0.4,271,3.3000000000000003,0.0000,0.0000 +2012,10,20,10,30,10,1.36,0.012,0.61,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.257,37.43,121.8,0.86,0.23,879,0.4,283,3.5,0.0000,0.0000 +2012,10,20,11,30,9.600000000000001,1.37,0.012,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.257,36.480000000000004,109.45,0.86,0.23,879,0.4,290,3.6,0.0000,0.0000 +2012,10,20,12,30,9.5,1.3800000000000001,0.012,0.61,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.257,36.04,97.10000000000001,0.86,0.23,879,0.4,294,3.8000000000000003,0.0000,0.0000 +2012,10,20,13,30,11,1.3800000000000001,0.012,0.61,21,561,72,0,0,-4.9,21,561,0,72,0.257,32.410000000000004,84.85000000000001,0.86,0.23,880,0.4,296,4.2,0.0000,0.0000 +2012,10,20,14,30,14.3,1.3900000000000001,0.012,0.61,38,855,283,0,1,-4.9,38,855,0,283,0.257,26.13,73.38,0.86,0.23,880,0.4,295,4.2,13.4231,10.3477 +2012,10,20,15,30,18.7,1.3900000000000001,0.013000000000000001,0.61,49,962,488,0,1,-4.2,49,962,0,488,0.256,20.78,62.81,0.87,0.23,880,0.4,293,3.5,25.5539,19.9268 +2012,10,20,16,30,23.700000000000003,1.4000000000000001,0.013000000000000001,0.61,54,1007,648,0,1,-3.3000000000000003,54,1007,0,648,0.255,16.43,53.85,0.87,0.23,880,0.5,291,3.4000000000000004,36.1083,28.2834 +2012,10,20,17,30,27.6,1.4000000000000001,0.013000000000000001,0.61,57,1033,755,0,0,-5.5,57,1033,0,755,0.254,11,47.49,0.87,0.23,879,0.5,285,3.8000000000000003,43.1689,33.8776 +2012,10,20,18,30,29.400000000000002,1.3800000000000001,0.015,0.61,61,1040,797,0,1,-6.800000000000001,61,1040,0,797,0.252,9,44.9,0.88,0.23,878,0.5,276,4,46.1623,36.2479 +2012,10,20,19,30,30.200000000000003,1.3800000000000001,0.016,0.61,61,1026,764,0,0,-6.9,61,1026,0,764,0.251,8.5,46.71,0.88,0.23,877,0.6000000000000001,272,4.1000000000000005,44.2756,34.7527 +2012,10,20,20,30,30.5,1.3800000000000001,0.018000000000000002,0.61,60,994,666,0,0,-6.9,60,994,0,666,0.25,8.38,52.47,0.89,0.23,877,0.7000000000000001,271,3.9000000000000004,37.9868,29.7693 +2012,10,20,21,30,30,1.35,0.02,0.61,56,942,512,0,0,-6.800000000000001,56,942,0,512,0.25,8.700000000000001,61.04,0.89,0.23,876,0.7000000000000001,268,3.4000000000000004,28.1576,21.9827 +2012,10,20,22,30,27.3,1.36,0.021,0.61,47,834,313,0,0,-5.1000000000000005,47,834,0,313,0.251,11.53,71.38,0.89,0.23,876,0.8,261,2.1,16.0657,12.4231 +2012,10,20,23,30,22.700000000000003,1.37,0.023,0.61,29,573,102,0,0,3.7,29,573,0,102,0.251,28.88,82.75,0.9,0.23,876,0.9,249,1.4000000000000001,0.0000,0.0000 +2012,10,21,0,30,19.6,1.3800000000000001,0.024,0.61,0,0,0,0,0,1.3,0,0,0,0,0.252,29.5,94.89,0.9,0.23,877,1,238,1.6,0.0000,0.0000 +2012,10,21,1,30,18.6,1.3900000000000001,0.026000000000000002,0.61,0,0,0,0,0,0.5,0,0,0,0,0.252,29.6,107.23,0.91,0.23,877,1.2000000000000002,230,1.7000000000000002,0.0000,0.0000 +2012,10,21,2,30,18.3,1.3900000000000001,0.028,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.252,29.79,119.62,0.91,0.23,877,1.3,226,1.9000000000000001,0.0000,0.0000 +2012,10,21,3,30,18,1.42,0.029,0.61,0,0,0,0,0,0.2,0,0,0,0,0.252,30.19,131.74,0.91,0.23,878,1.4000000000000001,229,2.1,0.0000,0.0000 +2012,10,21,4,30,17.3,1.46,0.029,0.61,0,0,0,0,4,0.30000000000000004,0,0,0,0,0.253,31.7,143.03,0.9,0.23,878,1.4000000000000001,238,2.5,0.0000,0.0000 +2012,10,21,5,30,16.400000000000002,1.48,0.03,0.61,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.253,34.45,152.25,0.9,0.23,878,1.4000000000000001,246,2.7,0.0000,0.0000 +2012,10,21,6,30,15.8,1.44,0.032,0.61,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.253,37.81,156.61,0.9,0.23,878,1.4000000000000001,249,2.8000000000000003,0.0000,0.0000 +2012,10,21,7,30,15.200000000000001,1.3900000000000001,0.034,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.253,42.06,153.56,0.9,0.23,878,1.4000000000000001,249,2.8000000000000003,0.0000,0.0000 +2012,10,21,8,30,14.700000000000001,1.37,0.034,0.61,0,0,0,0,0,3.2,0,0,0,0,0.253,46.08,145,0.9,0.23,878,1.3,247,2.9000000000000004,0.0000,0.0000 +2012,10,21,9,30,14.100000000000001,1.3800000000000001,0.032,0.61,0,0,0,0,1,3.7,0,0,0,0,0.253,49.47,133.97,0.89,0.23,878,1.2000000000000002,248,2.9000000000000004,0.0000,0.0000 +2012,10,21,10,30,13.600000000000001,1.41,0.029,0.61,0,0,0,0,0,3.6,0,0,0,0,0.253,50.93,121.96000000000001,0.89,0.23,878,1.1,251,3,0.0000,0.0000 +2012,10,21,11,30,13.200000000000001,1.42,0.026000000000000002,0.61,0,0,0,0,1,3.1,0,0,0,0,0.253,50.51,109.61,0.88,0.23,878,1,255,3.2,0.0000,0.0000 +2012,10,21,12,30,13.100000000000001,1.41,0.025,0.61,0,0,0,0,0,2.5,0,0,0,0,0.253,48.54,97.26,0.88,0.23,879,1,263,3.6,0.0000,0.0000 +2012,10,21,13,30,14.600000000000001,1.3900000000000001,0.026000000000000002,0.61,24,464,64,0,0,1.9000000000000001,24,464,0,64,0.253,42.36,85.03,0.88,0.23,879,1,271,4.3,0.0000,0.0000 +2012,10,21,14,30,18.1,1.36,0.025,0.61,46,784,268,0,0,1.9000000000000001,46,784,0,268,0.252,33.81,73.58,0.88,0.23,880,1,274,4.7,14.0433,10.8223 +2012,10,21,15,30,22.6,1.34,0.024,0.61,57,905,467,0,0,2.4000000000000004,57,905,0,467,0.252,26.61,63.04,0.88,0.23,880,1,273,5.1000000000000005,26.4339,20.6096 +2012,10,21,16,30,26.1,1.32,0.022,0.61,62,970,631,0,1,2.6,62,970,0,631,0.251,21.84,54.13,0.88,0.23,880,0.9,271,5.800000000000001,36.8606,28.8698 +2012,10,21,17,30,27.5,1.3,0.02,0.61,65,1000,736,0,0,2.1,65,1000,0,736,0.25,19.35,47.82,0.89,0.23,880,0.9,267,6.1000000000000005,43.9981,34.5257 +2012,10,21,18,30,28.3,1.25,0.023,0.61,69,1006,777,0,0,1.3,69,1006,0,777,0.248,17.5,45.25,0.89,0.23,880,0.9,263,6.2,46.8192,36.7610 +2012,10,21,19,30,28.700000000000003,1.21,0.025,0.61,70,998,749,0,0,0.9,70,998,0,749,0.247,16.65,47.06,0.9,0.23,879,0.9,258,6.2,44.6346,35.0316 +2012,10,21,20,30,28.700000000000003,1.19,0.028,0.61,68,965,652,0,0,1.1,68,965,0,652,0.245,16.87,52.79,0.9,0.23,879,1,253,6.1000000000000005,38.1073,29.8605 +2012,10,21,21,30,28.3,1.18,0.028,0.61,61,913,499,0,0,1.3,61,913,0,499,0.244,17.490000000000002,61.33,0.9,0.23,879,1,248,5.9,28.0512,21.8957 +2012,10,21,22,30,26.8,1.18,0.027,0.61,50,808,304,0,0,1.1,50,808,0,304,0.244,18.78,71.65,0.9,0.23,879,1,242,4.7,15.8236,12.2313 +2012,10,21,23,30,23.1,1.17,0.024,0.61,29,554,97,0,0,1.8,29,554,0,97,0.244,24.69,82.99,0.89,0.23,879,1,237,3.1,0.0000,0.0000 +2012,10,22,0,30,20,1.1500000000000001,0.021,0.61,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.245,32.34,95.12,0.89,0.23,879,1.1,232,2.4000000000000004,0.0000,0.0000 +2012,10,22,1,30,18.8,1.1400000000000001,0.018000000000000002,0.61,0,0,0,0,0,2.7,0,0,0,0,0.245,34.36,107.46000000000001,0.89,0.23,879,1.2000000000000002,228,2.5,0.0000,0.0000 +2012,10,22,2,30,18,1.16,0.018000000000000002,0.61,0,0,0,0,0,2.7,0,0,0,0,0.245,35.93,119.85000000000001,0.9,0.23,880,1.3,226,2.6,0.0000,0.0000 +2012,10,22,3,30,17.2,1.18,0.018000000000000002,0.61,0,0,0,0,4,2.8000000000000003,0,0,0,0,0.246,38.03,131.98,0.91,0.23,880,1.4000000000000001,228,2.6,0.0000,0.0000 +2012,10,22,4,30,16.5,1.2,0.018000000000000002,0.61,0,0,0,0,7,3,0,0,0,0,0.246,40.35,143.31,0.91,0.23,880,1.4000000000000001,231,2.7,0.0000,0.0000 +2012,10,22,5,30,16.5,1.2,0.02,0.61,0,0,0,0,7,3.1,0,0,0,0,0.247,40.75,152.57,0.93,0.23,880,1.5,234,3.4000000000000004,0.0000,0.0000 +2012,10,22,6,30,17.1,1.16,0.027,0.61,0,0,0,0,8,3.1,0,0,0,0,0.247,39.29,156.97,0.9400000000000001,0.23,881,1.7000000000000002,241,4.3,0.0000,0.0000 +2012,10,22,7,30,17.400000000000002,1.17,0.033,0.61,0,0,0,0,7,3,0,0,0,0,0.247,38.28,153.86,0.9500000000000001,0.23,881,1.9000000000000001,250,4.5,0.0000,0.0000 +2012,10,22,8,30,16.6,1.23,0.037,0.61,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.248,41.18,145.23,0.96,0.23,881,2.1,246,3.9000000000000004,0.0000,0.0000 +2012,10,22,9,30,15.4,1.21,0.044,0.61,0,0,0,0,7,4.5,0,0,0,0,0.248,48.25,134.16,0.96,0.23,881,2.2,224,3.1,0.0000,0.0000 +2012,10,22,10,30,14.3,1.23,0.048,0.61,0,0,0,0,7,6.1000000000000005,0,0,0,0,0.249,57.75,122.13,0.9500000000000001,0.23,881,2.2,193,2,0.0000,0.0000 +2012,10,22,11,30,13.200000000000001,1.35,0.036000000000000004,0.61,0,0,0,0,1,6.9,0,0,0,0,0.25,65.49,109.77,0.9400000000000001,0.23,881,1.9000000000000001,180,1.5,0.0000,0.0000 +2012,10,22,12,30,12.600000000000001,1.4000000000000001,0.029,0.61,0,0,0,0,0,7.300000000000001,0,0,0,0,0.251,70.3,97.42,0.93,0.23,882,1.8,203,1.6,0.0000,0.0000 +2012,10,22,13,30,14.100000000000001,1.3800000000000001,0.026000000000000002,0.61,23,435,60,0,0,7.5,23,435,0,60,0.251,64.62,85.2,0.92,0.23,882,1.6,223,2.5,0.0000,0.0000 +2012,10,22,14,30,17.6,1.35,0.024,0.61,45,763,259,0,0,7.5,45,763,0,259,0.25,51.44,73.79,0.91,0.23,882,1.5,227,3.5,13.2744,10.2264 +2012,10,22,15,30,21.5,1.3,0.022,0.61,56,887,455,0,0,7,56,887,0,455,0.248,39.050000000000004,63.28,0.91,0.23,883,1.5,232,4.1000000000000005,25.2572,19.6890 +2012,10,22,16,30,24.700000000000003,1.27,0.022,0.61,63,946,613,0,0,5.2,63,946,0,613,0.246,28.54,54.410000000000004,0.91,0.23,882,1.5,239,4.6000000000000005,35.8492,28.0747 +2012,10,22,17,30,26.6,1.26,0.021,0.61,65,979,719,0,0,3.9000000000000004,65,979,0,719,0.244,23.27,48.14,0.9,0.23,882,1.4000000000000001,240,4.800000000000001,42.8442,33.6174 +2012,10,22,18,30,27.700000000000003,1.26,0.021,0.61,67,989,759,0,0,3.1,67,989,0,759,0.242,20.6,45.6,0.9,0.23,881,1.4000000000000001,240,4.800000000000001,45.5974,35.7990 +2012,10,22,19,30,28.200000000000003,1.26,0.021,0.61,66,986,733,0,0,2.5,66,986,0,733,0.241,19.09,47.410000000000004,0.9,0.23,880,1.3,240,4.7,43.7094,34.3027 +2012,10,22,20,30,28.200000000000003,1.27,0.021,0.61,63,961,639,0,0,1.8,63,961,0,639,0.24,18.26,53.120000000000005,0.9,0.23,880,1.3,239,4.5,37.2568,29.1909 +2012,10,22,21,30,27.6,1.27,0.02,0.61,56,915,491,0,0,1.3,56,915,0,491,0.24,18.25,61.620000000000005,0.9,0.23,880,1.2000000000000002,237,4.2,27.2898,21.2976 +2012,10,22,22,30,25.8,1.27,0.02,0.61,46,810,298,0,0,1,46,810,0,298,0.24,19.87,71.91,0.9,0.23,880,1.2000000000000002,234,3.1,15.3303,11.8454 +2012,10,22,23,30,21.900000000000002,1.27,0.02,0.61,28,553,93,0,0,3.1,28,553,0,93,0.241,29.080000000000002,83.23,0.9,0.23,880,1.1,226,1.9000000000000001,0.0000,0.0000 +2012,10,23,0,30,18.8,1.27,0.02,0.61,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.242,37.24,95.34,0.89,0.23,881,1.1,217,1.7000000000000002,0.0000,0.0000 +2012,10,23,1,30,17.7,1.27,0.02,0.61,0,0,0,0,0,3.1,0,0,0,0,0.243,37.61,107.68,0.89,0.23,881,1,210,1.9000000000000001,0.0000,0.0000 +2012,10,23,2,30,17.2,1.27,0.02,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.243,37.01,120.07000000000001,0.89,0.23,881,1,208,2.3000000000000003,0.0000,0.0000 +2012,10,23,3,30,16.8,1.28,0.02,0.61,0,0,0,0,1,1.8,0,0,0,0,0.244,36.45,132.21,0.89,0.23,881,1.1,213,2.9000000000000004,0.0000,0.0000 +2012,10,23,4,30,16.2,1.29,0.02,0.61,0,0,0,0,1,1.4000000000000001,0,0,0,0,0.244,36.88,143.57,0.89,0.23,881,1.1,219,3.4000000000000004,0.0000,0.0000 +2012,10,23,5,30,15.3,1.29,0.02,0.61,0,0,0,0,1,1.3,0,0,0,0,0.244,38.76,152.89000000000001,0.89,0.23,881,1.1,226,3.5,0.0000,0.0000 +2012,10,23,6,30,14.200000000000001,1.28,0.02,0.61,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.244,41.83,157.32,0.89,0.23,881,1.1,233,3.2,0.0000,0.0000 +2012,10,23,7,30,13.200000000000001,1.26,0.02,0.61,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.244,44.76,154.16,0.9,0.23,881,1.1,240,3,0.0000,0.0000 +2012,10,23,8,30,12.5,1.23,0.02,0.61,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.244,46.78,145.45000000000002,0.9,0.23,881,1.1,245,2.7,0.0000,0.0000 +2012,10,23,9,30,11.9,1.22,0.02,0.61,0,0,0,0,0,1.5,0,0,0,0,0.245,48.82,134.34,0.9,0.23,881,1.1,250,2.3000000000000003,0.0000,0.0000 +2012,10,23,10,30,11.4,1.21,0.02,0.61,0,0,0,0,0,1.6,0,0,0,0,0.246,50.81,122.29,0.9,0.23,881,1.1,253,2,0.0000,0.0000 +2012,10,23,11,30,11,1.22,0.019,0.61,0,0,0,0,0,1.6,0,0,0,0,0.247,52.300000000000004,109.93,0.9,0.23,881,1.1,254,1.8,0.0000,0.0000 +2012,10,23,12,30,10.8,1.24,0.019,0.61,0,0,0,0,0,1.6,0,0,0,0,0.248,52.94,97.59,0.9,0.23,882,1.1,253,1.7000000000000002,0.0000,0.0000 +2012,10,23,13,30,12.9,1.25,0.02,0.61,22,459,59,0,0,1.6,22,459,0,59,0.249,46.31,85.37,0.9,0.23,882,1.1,251,2.2,0.0000,0.0000 +2012,10,23,14,30,16.5,1.27,0.021,0.61,44,780,259,0,0,1.8,44,780,0,259,0.249,37.11,73.99,0.9,0.23,883,1.1,241,2.6,12.8038,9.8604 +2012,10,23,15,30,20.5,1.27,0.022,0.61,56,900,457,0,0,2.2,56,900,0,457,0.25,29.68,63.52,0.9,0.23,883,1.1,230,2.5,24.5681,19.1485 +2012,10,23,16,30,24.700000000000003,1.26,0.024,0.61,64,956,617,0,0,2.5,64,956,0,617,0.251,23.53,54.69,0.91,0.23,883,1.1,224,2.6,34.7830,27.2369 +2012,10,23,17,30,27.400000000000002,1.26,0.024,0.61,68,990,725,0,0,1.9000000000000001,68,990,0,725,0.251,19.19,48.46,0.91,0.23,882,1,220,2.9000000000000004,41.8098,32.8031 +2012,10,23,18,30,28.8,1.23,0.029,0.61,73,994,765,0,0,1.6,73,994,0,765,0.252,17.400000000000002,45.95,0.92,0.23,881,1,217,3.2,44.4946,34.9305 +2012,10,23,19,30,29.700000000000003,1.24,0.026000000000000002,0.61,70,990,736,0,0,1.3,70,990,0,736,0.252,16.080000000000002,47.76,0.91,0.23,881,1,216,3.4000000000000004,42.7273,33.5290 +2012,10,23,20,30,30.200000000000003,1.26,0.022,0.61,64,970,641,7,3,0.8,250,594,7,603,0.252,15.07,53.44,0.91,0.23,880,1,213,3.6,36.4633,28.5660 +2012,10,23,21,30,29.900000000000002,1.25,0.022,0.61,57,918,489,0,0,0.30000000000000004,57,918,0,489,0.252,14.83,61.910000000000004,0.91,0.23,880,1,209,3.5,26.8034,20.9141 +2012,10,23,22,30,27.6,1.24,0.02,0.61,46,815,295,0,0,0.2,46,815,0,295,0.252,16.8,72.17,0.91,0.23,880,1,201,2.6,14.9915,11.5793 +2012,10,23,23,30,23.400000000000002,1.22,0.02,0.61,27,548,90,0,0,4,27,548,0,90,0.252,28.37,83.46000000000001,0.91,0.23,880,1,192,1.8,0.0000,0.0000 +2012,10,24,0,30,20.700000000000003,1.21,0.021,0.61,0,0,0,0,1,3.5,0,0,0,0,0.252,32.19,95.56,0.91,0.23,880,1,187,2.2,0.0000,0.0000 +2012,10,24,1,30,19.900000000000002,1.21,0.021,0.61,0,0,0,0,1,2.6,0,0,0,0,0.252,31.740000000000002,107.89,0.91,0.23,880,1,189,2.8000000000000003,0.0000,0.0000 +2012,10,24,2,30,19.3,1.22,0.02,0.61,0,0,0,0,0,2.1,0,0,0,0,0.252,31.78,120.28,0.91,0.23,881,1,194,3.6,0.0000,0.0000 +2012,10,24,3,30,18.7,1.23,0.021,0.61,0,0,0,0,0,1.8,0,0,0,0,0.252,32.26,132.44,0.91,0.23,881,1,200,4.1000000000000005,0.0000,0.0000 +2012,10,24,4,30,17.8,1.24,0.022,0.61,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.252,33.89,143.84,0.91,0.23,881,1,207,4.1000000000000005,0.0000,0.0000 +2012,10,24,5,30,16.900000000000002,1.24,0.024,0.61,0,0,0,0,0,1.8,0,0,0,0,0.253,36.19,153.21,0.92,0.23,881,1,213,3.7,0.0000,0.0000 +2012,10,24,6,30,16.400000000000002,1.25,0.026000000000000002,0.61,0,0,0,0,0,2,0,0,0,0,0.254,37.76,157.67000000000002,0.93,0.23,881,1,215,3.4000000000000004,0.0000,0.0000 +2012,10,24,7,30,15.9,1.25,0.029,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.255,40.01,154.45000000000002,0.9400000000000001,0.23,881,1.1,213,3.2,0.0000,0.0000 +2012,10,24,8,30,15.100000000000001,1.26,0.032,0.61,0,0,0,0,3,3.2,0,0,0,0,0.255,44.9,145.68,0.9400000000000001,0.23,881,1.2000000000000002,211,3,0.0000,0.0000 +2012,10,24,9,30,14,1.26,0.035,0.61,0,0,0,0,1,4.9,0,0,0,0,0.255,54.06,134.52,0.9500000000000001,0.23,881,1.3,211,2.6,0.0000,0.0000 +2012,10,24,10,30,13.200000000000001,1.24,0.036000000000000004,0.61,0,0,0,0,7,6.6000000000000005,0,0,0,0,0.256,64.37,122.46000000000001,0.9500000000000001,0.23,881,1.3,212,2.3000000000000003,0.0000,0.0000 +2012,10,24,11,30,12.600000000000001,1.23,0.036000000000000004,0.61,0,0,0,0,0,8.1,0,0,0,0,0.256,74.26,110.09,0.9500000000000001,0.23,881,1.3,215,2.2,0.0000,0.0000 +2012,10,24,12,30,12.600000000000001,1.22,0.037,0.61,0,0,0,0,0,9.1,0,0,0,0,0.256,79.48,97.75,0.9500000000000001,0.23,881,1.3,216,2.2,0.0000,0.0000 +2012,10,24,13,30,13.8,1.2,0.041,0.61,25,382,54,7,7,9.8,41,25,7,43,0.255,76.83,85.55,0.9500000000000001,0.23,881,1.3,212,2.6,0.0000,0.0000 +2012,10,24,14,30,15.700000000000001,1.21,0.042,0.61,52,729,251,0,7,10.4,62,2,0,62,0.254,70.92,74.19,0.9500000000000001,0.23,881,1.3,205,2.8000000000000003,12.7803,9.8390 +2012,10,24,15,30,17.6,1.22,0.043000000000000003,0.61,67,857,446,0,7,10.9,175,20,0,184,0.251,64.94,63.76,0.9500000000000001,0.23,881,1.4000000000000001,199,2.8000000000000003,24.6353,19.1976 +2012,10,24,16,30,20.400000000000002,1.23,0.043000000000000003,0.61,75,922,605,0,8,11.100000000000001,280,250,0,423,0.249,55.33,54.96,0.9500000000000001,0.23,880,1.4000000000000001,196,3.3000000000000003,34.9656,27.3769 +2012,10,24,17,30,23.6,1.25,0.042,0.61,79,955,708,0,3,10.600000000000001,353,340,0,577,0.246,43.980000000000004,48.78,0.9400000000000001,0.23,880,1.4000000000000001,197,4.2,42.1129,33.0382 +2012,10,24,18,30,26.1,1.27,0.038,0.61,79,966,746,0,7,8.6,188,720,0,685,0.244,32.95,46.300000000000004,0.9400000000000001,0.23,879,1.5,202,4.9,44.7987,35.1665 +2012,10,24,19,30,27.3,1.27,0.039,0.61,78,958,718,0,8,6.1000000000000005,375,228,0,527,0.242,25.89,48.1,0.9400000000000001,0.23,878,1.5,209,5.4,42.8528,33.6246 +2012,10,24,20,30,27.8,1.28,0.038,0.61,73,936,627,0,8,4.2,205,512,0,508,0.241,22.150000000000002,53.75,0.9400000000000001,0.23,878,1.4000000000000001,216,5.6000000000000005,34.3620,26.9168 +2012,10,24,21,30,27.700000000000003,1.29,0.036000000000000004,0.61,65,886,478,0,8,2.7,233,70,0,266,0.241,20.01,62.190000000000005,0.9400000000000001,0.23,877,1.3,218,5.300000000000001,26.6449,20.7866 +2012,10,24,22,30,26.400000000000002,1.28,0.032,0.61,51,782,287,0,7,1.9000000000000001,162,114,0,196,0.242,20.400000000000002,72.42,0.93,0.23,877,1.2000000000000002,215,4.4,14.8047,11.4306 +2012,10,24,23,30,23.3,1.27,0.029,0.61,29,511,85,0,7,2.4000000000000004,29,1,0,29,0.243,25.37,83.69,0.92,0.23,877,1.1,208,3.5,0.0000,0.0000 +2012,10,25,0,30,21,1.24,0.025,0.61,0,0,0,0,7,2.7,0,0,0,0,0.243,29.8,95.78,0.92,0.23,877,0.9,204,3.7,0.0000,0.0000 +2012,10,25,1,30,19.8,1.19,0.024,0.61,0,0,0,0,1,2.1,0,0,0,0,0.244,30.77,108.10000000000001,0.91,0.23,877,0.9,203,3.9000000000000004,0.0000,0.0000 +2012,10,25,2,30,18.400000000000002,1.1400000000000001,0.022,0.61,0,0,0,0,1,2,0,0,0,0,0.244,33.36,120.5,0.9,0.23,877,0.8,203,3.7,0.0000,0.0000 +2012,10,25,3,30,17.2,1.07,0.022,0.61,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.244,35.7,132.67000000000002,0.9,0.23,877,0.8,206,3.7,0.0000,0.0000 +2012,10,25,4,30,16.400000000000002,0.98,0.023,0.61,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.244,36.300000000000004,144.09,0.9,0.23,877,0.8,211,3.9000000000000004,0.0000,0.0000 +2012,10,25,5,30,15.600000000000001,0.88,0.024,0.61,0,0,0,0,0,0.8,0,0,0,0,0.243,36.6,153.52,0.9,0.23,877,0.8,217,3.9000000000000004,0.0000,0.0000 +2012,10,25,6,30,14.600000000000001,0.8,0.024,0.61,0,0,0,0,1,0.4,0,0,0,0,0.243,38,158.02,0.9,0.23,878,0.8,229,3.7,0.0000,0.0000 +2012,10,25,7,30,13.600000000000001,0.8200000000000001,0.024,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.243,40.17,154.75,0.89,0.23,878,0.8,252,3.4000000000000004,0.0000,0.0000 +2012,10,25,8,30,12.9,0.9,0.024,0.61,0,0,0,0,0,0.1,0,0,0,0,0.244,41.58,145.9,0.89,0.23,879,0.8,280,3.3000000000000003,0.0000,0.0000 +2012,10,25,9,30,12.200000000000001,0.98,0.022,0.61,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.245,41.99,134.71,0.89,0.23,880,0.7000000000000001,306,3.4000000000000004,0.0000,0.0000 +2012,10,25,10,30,11.3,1.02,0.021,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.246,41.81,122.62,0.9,0.23,881,0.7000000000000001,332,3.6,0.0000,0.0000 +2012,10,25,11,30,10.200000000000001,1.07,0.021,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.246,43.26,110.25,0.9,0.23,882,0.6000000000000001,174,3.9000000000000004,0.0000,0.0000 +2012,10,25,12,30,8.9,1.1400000000000001,0.023,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.247,50.29,97.92,0.91,0.23,883,0.7000000000000001,8,4.4,0.0000,0.0000 +2012,10,25,13,30,8.4,1.2,0.028,0.61,23,435,55,0,1,0.8,23,435,0,55,0.247,58.730000000000004,85.72,0.93,0.23,885,0.7000000000000001,12,5.5,0.0000,0.0000 +2012,10,25,14,30,9,1.22,0.033,0.61,49,771,257,7,3,1.1,115,3,7,116,0.247,57.57,74.4,0.93,0.23,886,0.7000000000000001,13,6.5,3.0538,2.3502 +2012,10,25,15,30,10.3,1.2,0.034,0.61,63,899,457,0,3,-0.7000000000000001,263,60,0,289,0.247,46.410000000000004,63.99,0.93,0.23,887,0.7000000000000001,15,6.7,9.9023,7.7152 +2012,10,25,16,30,11.700000000000001,1.17,0.034,0.61,71,961,619,0,1,-2.4000000000000004,71,961,0,619,0.248,37.28,55.24,0.93,0.23,887,0.7000000000000001,17,6.4,23.9418,18.7437 +2012,10,25,17,30,13.100000000000001,1.1500000000000001,0.032,0.61,74,987,721,0,0,-3.5,74,987,0,721,0.249,31.490000000000002,49.1,0.92,0.23,887,0.8,18,5.800000000000001,33.4791,26.2626 +2012,10,25,18,30,14.3,1.1400000000000001,0.03,0.61,74,1000,761,0,0,-4,74,1000,0,761,0.25,27.96,46.64,0.92,0.23,887,0.8,19,5.2,40.0707,31.4526 +2012,10,25,19,30,15.100000000000001,1.1400000000000001,0.028,0.61,72,995,732,0,0,-4.4,72,995,0,732,0.25,25.85,48.43,0.91,0.23,887,0.8,19,4.5,30.6491,24.0469 +2012,10,25,20,30,15.3,1.1400000000000001,0.028,0.61,68,969,637,0,0,-4.6000000000000005,68,969,0,637,0.25,25,54.06,0.91,0.23,887,0.8,20,4,28.9096,22.6432 +2012,10,25,21,30,14.9,1.1400000000000001,0.028,0.61,61,909,481,0,0,-4.800000000000001,61,909,0,481,0.249,25.32,62.47,0.91,0.23,887,0.9,22,3.6,14.4677,11.2847 +2012,10,25,22,30,13.700000000000001,1.1400000000000001,0.028,0.61,50,796,287,0,7,-4.9,107,499,0,256,0.248,27.16,72.67,0.92,0.23,887,0.9,29,3.3000000000000003,9.8135,7.5740 +2012,10,25,23,30,11.5,1.1500000000000001,0.029,0.61,28,507,82,0,7,-4.7,45,311,0,78,0.248,31.85,83.9,0.92,0.23,887,0.9,41,3,0.0000,0.0000 +2012,10,26,0,30,9.600000000000001,1.1500000000000001,0.029,0.61,0,0,0,0,8,-3.7,0,0,0,0,0.248,38.88,95.99000000000001,0.92,0.24,888,1,55,3.4000000000000004,0.0000,0.0000 +2012,10,26,1,30,8.5,1.16,0.03,0.61,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.248,43.050000000000004,108.3,0.92,0.24,888,1,64,4,0.0000,0.0000 +2012,10,26,2,30,7.300000000000001,1.17,0.03,0.61,0,0,0,0,1,-2.9000000000000004,0,0,0,0,0.249,48.51,120.7,0.92,0.24,888,0.9,68,3.9000000000000004,0.0000,0.0000 +2012,10,26,3,30,6.2,1.18,0.029,0.61,0,0,0,0,0,-2.5,0,0,0,0,0.25,53.6,132.89000000000001,0.92,0.24,889,0.9,68,3.7,0.0000,0.0000 +2012,10,26,4,30,5.1000000000000005,1.18,0.028,0.61,0,0,0,0,8,-2.4000000000000004,0,0,0,0,0.251,58.25,144.35,0.91,0.24,890,0.9,66,3.4000000000000004,0.0000,0.0000 +2012,10,26,5,30,4.2,1.18,0.03,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.251,62.11,153.82,0.91,0.24,890,0.9,63,3,0.0000,0.0000 +2012,10,26,6,30,3.4000000000000004,1.18,0.032,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.251,65.64,158.36,0.91,0.24,890,0.9,61,2.8000000000000003,0.0000,0.0000 +2012,10,26,7,30,2.7,1.19,0.033,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.251,68.89,155.04,0.91,0.24,891,0.9,60,2.5,0.0000,0.0000 +2012,10,26,8,30,2,1.2,0.035,0.61,0,0,0,0,0,-2.5,0,0,0,0,0.252,72.07000000000001,146.12,0.91,0.24,891,0.9,57,2.2,0.0000,0.0000 +2012,10,26,9,30,1.5,1.21,0.036000000000000004,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.253,74.05,134.89000000000001,0.91,0.24,891,0.8,54,2,0.0000,0.0000 +2012,10,26,10,30,1,1.22,0.036000000000000004,0.61,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.255,75.75,122.78,0.91,0.24,891,0.8,51,2,0.0000,0.0000 +2012,10,26,11,30,0.6000000000000001,1.23,0.036000000000000004,0.61,0,0,0,0,0,-3,0,0,0,0,0.255,76.66,110.41,0.9,0.24,892,0.8,45,2,0.0000,0.0000 +2012,10,26,12,30,0.4,1.26,0.037,0.61,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.255,76.38,98.09,0.9,0.24,893,0.8,38,2.3000000000000003,0.0000,0.0000 +2012,10,26,13,30,1.1,1.28,0.038,0.61,23,392,51,0,0,-3.5,23,392,0,51,0.255,71.2,85.89,0.9,0.24,894,0.8,42,3.4000000000000004,0.0000,0.0000 +2012,10,26,14,30,3,1.3,0.039,0.61,50,749,249,0,0,-4.6000000000000005,50,749,0,249,0.255,57.38,74.60000000000001,0.9,0.24,895,0.8,49,4.3,5.7027,4.3872 +2012,10,26,15,30,5.1000000000000005,1.32,0.039,0.61,64,883,448,0,0,-5.5,64,883,0,448,0.255,46.36,64.23,0.9,0.24,895,0.8,48,4.4,15.5279,12.0962 +2012,10,26,16,30,7.2,1.34,0.04,0.61,73,946,608,0,0,-5.6000000000000005,73,946,0,608,0.256,39.74,55.52,0.89,0.24,895,0.8,44,4.3,34.9898,27.3900 +2012,10,26,17,30,9.1,1.35,0.039,0.61,77,978,714,0,0,-5.5,77,978,0,714,0.257,35.08,49.410000000000004,0.89,0.24,894,0.8,41,4.3,41.7875,32.7774 +2012,10,26,18,30,10.5,1.36,0.037,0.61,77,991,753,0,0,-5.4,77,991,0,753,0.258,32.2,46.980000000000004,0.88,0.24,894,0.8,39,4.2,44.4691,34.9023 +2012,10,26,19,30,11.4,1.37,0.036000000000000004,0.61,76,985,725,0,0,-5.4,76,985,0,725,0.258,30.44,48.77,0.88,0.24,893,0.8,38,4.2,42.5238,33.3608 +2012,10,26,20,30,11.700000000000001,1.3800000000000001,0.037,0.61,72,957,629,0,0,-5.5,72,957,0,629,0.257,29.580000000000002,54.370000000000005,0.88,0.24,892,0.8,38,4.1000000000000005,36.2014,28.3512 +2012,10,26,21,30,11.3,1.4000000000000001,0.039,0.61,65,903,479,0,0,-5.800000000000001,65,903,0,479,0.257,29.66,62.75,0.88,0.24,892,0.7000000000000001,38,3.9000000000000004,26.1137,20.3647 +2012,10,26,22,30,10.200000000000001,1.4000000000000001,0.039,0.61,53,785,283,0,0,-6.2,53,785,0,283,0.257,30.990000000000002,72.91,0.88,0.24,892,0.7000000000000001,40,3.6,12.7877,9.8658 +2012,10,26,23,30,7.800000000000001,1.3800000000000001,0.038,0.61,28,488,78,0,0,-6.4,28,488,0,78,0.258,35.83,84.12,0.88,0.24,893,0.7000000000000001,44,2.7,0.0000,0.0000 +2012,10,27,0,30,5.5,1.33,0.035,0.61,0,0,0,0,0,-5.7,0,0,0,0,0.259,44.37,96.2,0.89,0.24,893,0.7000000000000001,51,2.1,0.0000,0.0000 +2012,10,27,1,30,4.4,1.31,0.034,0.61,0,0,0,0,0,-6,0,0,0,0,0.261,46.82,108.5,0.89,0.24,893,0.6000000000000001,58,2.4000000000000004,0.0000,0.0000 +2012,10,27,2,30,3.5,1.33,0.034,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.263,49.300000000000004,120.9,0.88,0.24,894,0.6000000000000001,65,2.4000000000000004,0.0000,0.0000 +2012,10,27,3,30,2.5,1.36,0.034,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.263,53.01,133.11,0.87,0.24,893,0.6000000000000001,72,2.2,0.0000,0.0000 +2012,10,27,4,30,1.6,1.3800000000000001,0.034,0.61,0,0,0,0,0,-6,0,0,0,0,0.263,56.910000000000004,144.59,0.86,0.24,893,0.6000000000000001,80,1.9000000000000001,0.0000,0.0000 +2012,10,27,5,30,0.8,1.37,0.032,0.61,0,0,0,0,0,-6,0,0,0,0,0.264,60.56,154.12,0.86,0.24,893,0.6000000000000001,88,1.6,0.0000,0.0000 +2012,10,27,6,30,0.1,1.35,0.032,0.61,0,0,0,0,0,-5.9,0,0,0,0,0.264,63.940000000000005,158.70000000000002,0.86,0.24,893,0.6000000000000001,95,1.4000000000000001,0.0000,0.0000 +2012,10,27,7,30,-0.6000000000000001,1.33,0.031,0.61,0,0,0,0,0,-5.9,0,0,0,0,0.265,67.51,155.32,0.87,0.24,893,0.6000000000000001,103,1.2000000000000002,0.0000,0.0000 +2012,10,27,8,30,-1.1,1.31,0.03,0.61,0,0,0,0,0,-5.9,0,0,0,0,0.265,70.13,146.34,0.87,0.24,893,0.6000000000000001,113,1.1,0.0000,0.0000 +2012,10,27,9,30,-1.5,1.29,0.03,0.61,0,0,0,0,0,-5.9,0,0,0,0,0.266,72,135.07,0.88,0.24,892,0.7000000000000001,124,1.1,0.0000,0.0000 +2012,10,27,10,30,-1.8,1.28,0.03,0.61,0,0,0,0,0,-6,0,0,0,0,0.268,73.23,122.95,0.88,0.24,892,0.7000000000000001,135,1.1,0.0000,0.0000 +2012,10,27,11,30,-2,1.28,0.031,0.61,0,0,0,0,0,-6,0,0,0,0,0.269,73.83,110.57000000000001,0.89,0.24,892,0.7000000000000001,144,1.2000000000000002,0.0000,0.0000 +2012,10,27,12,30,-2,1.28,0.033,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.271,73.28,98.25,0.89,0.24,892,0.7000000000000001,153,1.2000000000000002,0.0000,0.0000 +2012,10,27,13,30,-0.4,1.29,0.031,0.61,21,407,49,0,1,-6.2,21,407,0,49,0.273,64.65,86.07000000000001,0.89,0.24,892,0.7000000000000001,159,2.1,0.0000,0.0000 +2012,10,27,14,30,2.5,1.31,0.028,0.61,46,773,249,0,4,-6.5,144,170,0,188,0.275,51.32,74.8,0.88,0.24,892,0.7000000000000001,169,3.1,12.2192,9.3971 +2012,10,27,15,30,5.300000000000001,1.31,0.026000000000000002,0.61,58,905,448,0,0,-6.9,58,905,0,448,0.277,41.050000000000004,64.47,0.88,0.24,892,0.7000000000000001,185,3.4000000000000004,24.0299,18.7157 +2012,10,27,16,30,7.9,1.31,0.025,0.61,64,968,609,0,1,-7,64,968,0,609,0.279,34.02,55.79,0.88,0.24,891,0.7000000000000001,199,3.5,34.3227,26.8648 +2012,10,27,17,30,10.3,1.3,0.024,0.61,68,1005,718,0,0,-7,68,1005,0,718,0.281,28.94,49.730000000000004,0.88,0.24,890,0.6000000000000001,208,3.6,41.3363,32.4207 +2012,10,27,18,30,12.3,1.3,0.027,0.61,72,1012,758,0,0,-7,72,1012,0,758,0.28200000000000003,25.46,47.31,0.89,0.24,888,0.6000000000000001,214,3.6,43.9541,34.4954 +2012,10,27,19,30,13.8,1.28,0.027,0.61,70,1005,728,0,0,-7,70,1005,0,728,0.28300000000000003,23.03,49.1,0.89,0.24,887,0.6000000000000001,219,3.6,42.0679,33.0002 +2012,10,27,20,30,14.700000000000001,1.26,0.028,0.61,67,978,633,0,0,-7.1000000000000005,67,978,0,633,0.28300000000000003,21.47,54.67,0.89,0.24,886,0.6000000000000001,221,3.4000000000000004,35.6973,27.9532 +2012,10,27,21,30,14.9,1.24,0.026000000000000002,0.61,59,925,479,0,0,-7.300000000000001,59,925,0,479,0.28200000000000003,20.92,63.02,0.89,0.24,886,0.6000000000000001,219,3,25.9568,20.2385 +2012,10,27,22,30,13.600000000000001,1.22,0.024,0.61,47,815,283,0,0,-7.300000000000001,47,815,0,283,0.281,22.7,73.15,0.89,0.24,886,0.6000000000000001,208,2,14.1048,10.8779 +2012,10,27,23,30,10.100000000000001,1.22,0.024,0.61,26,522,77,0,0,-4,26,522,0,77,0.279,36.82,84.34,0.89,0.24,886,0.6000000000000001,183,1.3,0.0000,0.0000 +2012,10,28,0,30,7.300000000000001,1.22,0.023,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.276,42.51,96.41,0.89,0.24,887,0.6000000000000001,165,1.6,0.0000,0.0000 +2012,10,28,1,30,6.6000000000000005,1.21,0.022,0.61,0,0,0,0,0,-5.7,0,0,0,0,0.274,41.17,108.7,0.89,0.24,887,0.6000000000000001,159,2.3000000000000003,0.0000,0.0000 +2012,10,28,2,30,5.9,1.19,0.021,0.61,0,0,0,0,0,-6.2,0,0,0,0,0.273,41.62,121.10000000000001,0.89,0.24,888,0.7000000000000001,158,2.6,0.0000,0.0000 +2012,10,28,3,30,4.7,1.18,0.021,0.61,0,0,0,0,0,-6.2,0,0,0,0,0.273,45.27,133.31,0.9,0.24,888,0.7000000000000001,158,2.4000000000000004,0.0000,0.0000 +2012,10,28,4,30,3.5,1.18,0.022,0.61,0,0,0,0,0,-6,0,0,0,0,0.273,49.94,144.83,0.9,0.24,889,0.7000000000000001,159,2.1,0.0000,0.0000 +2012,10,28,5,30,2.6,1.19,0.023,0.61,0,0,0,0,0,-5.9,0,0,0,0,0.273,53.59,154.42000000000002,0.9,0.24,889,0.8,162,1.9000000000000001,0.0000,0.0000 +2012,10,28,6,30,1.9000000000000001,1.19,0.025,0.61,0,0,0,0,0,-5.9,0,0,0,0,0.273,56.39,159.03,0.91,0.24,889,0.8,164,1.8,0.0000,0.0000 +2012,10,28,7,30,1.5,1.18,0.029,0.61,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.274,58.13,155.61,0.91,0.24,890,0.8,166,1.9000000000000001,0.0000,0.0000 +2012,10,28,8,30,1,1.17,0.03,0.61,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.274,60.53,146.56,0.91,0.24,890,0.8,170,1.9000000000000001,0.0000,0.0000 +2012,10,28,9,30,0.7000000000000001,1.17,0.031,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.275,62.31,135.25,0.92,0.24,890,0.8,175,1.7000000000000002,0.0000,0.0000 +2012,10,28,10,30,0.7000000000000001,1.16,0.035,0.61,0,0,0,0,1,-5.5,0,0,0,0,0.276,62.980000000000004,123.11,0.92,0.24,890,0.9,180,1.6,0.0000,0.0000 +2012,10,28,11,30,0.8,1.1500000000000001,0.039,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.278,63.35,110.73,0.93,0.24,890,0.9,185,1.5,0.0000,0.0000 +2012,10,28,12,30,1,1.1500000000000001,0.044,0.61,0,0,0,0,7,-5.2,0,0,0,0,0.279,63.31,98.42,0.93,0.24,890,1,191,1.5,0.0000,0.0000 +2012,10,28,13,30,2.2,1.16,0.046,0.61,22,337,44,7,7,-5,17,0,7,17,0.28,58.980000000000004,86.25,0.93,0.24,891,1,197,2.1,0.0000,0.0000 +2012,10,28,14,30,4.800000000000001,1.17,0.049,0.61,53,707,236,0,4,-4.800000000000001,150,66,0,167,0.28,49.93,75.01,0.9400000000000001,0.24,891,1.1,198,2.7,9.2094,7.0799 +2012,10,28,15,30,8.1,1.18,0.049,0.61,69,849,431,0,7,-4.6000000000000005,212,297,0,339,0.279,40.43,64.71000000000001,0.9400000000000001,0.24,891,1.1,193,3.3000000000000003,23.9885,18.6800 +2012,10,28,16,30,11.100000000000001,1.19,0.049,0.61,78,918,590,0,7,-4.3,229,456,0,484,0.278,33.7,56.07,0.9400000000000001,0.24,890,1.1,188,3.7,34.3349,26.8713 +2012,10,28,17,30,13,1.19,0.049,0.61,83,947,691,0,1,-3.7,83,947,0,691,0.277,31.02,50.04,0.9400000000000001,0.24,890,1.2000000000000002,185,3.7,41.5200,32.5619 +2012,10,28,18,30,14.4,1.17,0.047,0.61,84,960,731,0,1,-3.4000000000000004,84,960,0,731,0.277,29.060000000000002,47.64,0.9400000000000001,0.24,889,1.2000000000000002,185,3.6,44.1989,34.6847 +2012,10,28,19,30,15.8,1.18,0.044,0.61,81,956,702,0,1,-3.2,81,956,0,702,0.277,26.91,49.42,0.93,0.24,888,1.2000000000000002,186,3.5,42.1932,33.0956 +2012,10,28,20,30,16.900000000000002,1.2,0.038,0.61,73,938,612,0,7,-3.2,208,539,0,518,0.277,25.17,54.97,0.93,0.24,887,1.1,184,3.3000000000000003,35.8756,28.0896 +2012,10,28,21,30,17.1,1.17,0.031,0.61,62,889,462,0,8,-3.3000000000000003,157,574,0,415,0.277,24.71,63.28,0.93,0.24,887,1.1,180,3.1,25.9098,20.1980 +2012,10,28,22,30,15.700000000000001,1.1500000000000001,0.029,0.61,49,773,270,0,8,-3.3000000000000003,127,296,0,211,0.278,26.85,73.39,0.93,0.24,887,1.1,170,2.2,14.0734,10.8495 +2012,10,28,23,30,12.200000000000001,1.1500000000000001,0.027,0.61,26,474,71,0,0,-1,26,474,0,71,0.279,39.96,84.55,0.92,0.24,887,1.1,157,1.7000000000000002,0.0000,0.0000 +2012,10,29,0,30,9.9,1.1500000000000001,0.026000000000000002,0.61,0,0,0,0,1,-1.7000000000000002,0,0,0,0,0.28,44.45,96.60000000000001,0.92,0.24,887,1,152,2.4000000000000004,0.0000,0.0000 +2012,10,29,1,30,9.4,1.1500000000000001,0.025,0.61,0,0,0,0,0,-2,0,0,0,0,0.28,44.75,108.89,0.92,0.24,887,1,155,3.2,0.0000,0.0000 +2012,10,29,2,30,8.4,1.1500000000000001,0.024,0.61,0,0,0,0,0,-2,0,0,0,0,0.281,48.11,121.29,0.92,0.24,888,1,159,3.3000000000000003,0.0000,0.0000 +2012,10,29,3,30,7.300000000000001,1.16,0.024,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.28200000000000003,52.15,133.52,0.92,0.24,888,1,163,3,0.0000,0.0000 +2012,10,29,4,30,6.4,1.17,0.024,0.61,0,0,0,0,1,-1.8,0,0,0,0,0.28400000000000003,55.620000000000005,145.06,0.92,0.24,888,1,167,2.7,0.0000,0.0000 +2012,10,29,5,30,5.5,1.18,0.024,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.28400000000000003,59.550000000000004,154.71,0.92,0.24,888,1,172,2.4000000000000004,0.0000,0.0000 +2012,10,29,6,30,4.800000000000001,1.18,0.025,0.61,0,0,0,0,0,-1.6,0,0,0,0,0.28400000000000003,63.190000000000005,159.36,0.92,0.24,888,1,178,2.1,0.0000,0.0000 +2012,10,29,7,30,4.1000000000000005,1.18,0.025,0.61,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.28500000000000003,67.45,155.89000000000001,0.93,0.24,888,1,183,1.9000000000000001,0.0000,0.0000 +2012,10,29,8,30,3.6,1.18,0.026000000000000002,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.28500000000000003,71.15,146.78,0.93,0.24,888,1.1,186,1.7000000000000002,0.0000,0.0000 +2012,10,29,9,30,3,1.18,0.026000000000000002,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.28600000000000003,75.54,135.42000000000002,0.93,0.24,888,1.1,187,1.5,0.0000,0.0000 +2012,10,29,10,30,2.5,1.18,0.027,0.61,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.28600000000000003,79.44,123.27,0.93,0.24,888,1,187,1.3,0.0000,0.0000 +2012,10,29,11,30,2.1,1.18,0.028,0.61,0,0,0,0,0,-0.5,0,0,0,0,0.28500000000000003,82.64,110.89,0.93,0.24,889,1,187,1.1,0.0000,0.0000 +2012,10,29,12,30,1.9000000000000001,1.18,0.028,0.61,0,0,0,0,0,-0.5,0,0,0,0,0.28400000000000003,84.17,98.59,0.93,0.24,889,1,190,1.1,0.0000,0.0000 +2012,10,29,13,30,3.5,1.19,0.029,0.61,20,375,44,0,0,-0.5,20,375,0,44,0.28300000000000003,75.22,86.43,0.93,0.24,889,1,195,1.7000000000000002,0.0000,0.0000 +2012,10,29,14,30,6.800000000000001,1.22,0.03,0.61,47,745,237,0,0,-0.5,47,745,0,237,0.28300000000000003,59.88,75.22,0.93,0.24,889,1,199,2.4000000000000004,8.1656,6.2752 +2012,10,29,15,30,10.600000000000001,1.25,0.029,0.61,59,882,433,0,0,-0.2,59,882,0,433,0.28200000000000003,47.04,64.94,0.93,0.24,889,1,199,2.9000000000000004,18.1204,14.1077 +2012,10,29,16,30,14.600000000000001,1.27,0.028,0.61,67,947,591,0,0,0.1,67,947,0,591,0.281,37.02,56.34,0.93,0.24,889,1,200,3.3000000000000003,27.2506,21.3244 +2012,10,29,17,30,17.900000000000002,1.29,0.027,0.61,70,979,695,0,0,0.1,70,979,0,695,0.28,29.98,50.35,0.93,0.24,888,1,199,3.3000000000000003,39.9135,31.2992 +2012,10,29,18,30,20.3,1.28,0.025,0.61,70,996,737,0,0,-0.30000000000000004,70,996,0,737,0.278,25.080000000000002,47.97,0.93,0.24,887,0.9,198,3.2,42.5785,33.4104 +2012,10,29,19,30,22,1.29,0.026000000000000002,0.61,70,988,708,0,0,-1,70,988,0,708,0.276,21.6,49.75,0.93,0.24,886,0.9,202,3.1,40.6401,31.8746 +2012,10,29,20,30,22.8,1.3,0.026000000000000002,0.61,66,961,614,0,0,-1.5,66,961,0,614,0.275,19.78,55.27,0.93,0.24,886,0.9,205,2.9000000000000004,29.3175,22.9521 +2012,10,29,21,30,22.700000000000003,1.31,0.021,0.61,56,912,462,0,0,-1.9000000000000001,56,912,0,462,0.273,19.27,63.550000000000004,0.92,0.24,885,0.9,204,2.3000000000000003,22.4082,17.4651 +2012,10,29,22,30,20.8,1.32,0.02,0.61,45,799,270,0,0,-2,45,799,0,270,0.272,21.53,73.62,0.92,0.24,885,0.9,184,1.4000000000000001,10.4695,8.0680 +2012,10,29,23,30,16.900000000000002,1.32,0.02,0.61,24,498,69,0,0,2.6,24,498,0,69,0.272,38.31,84.76,0.91,0.24,885,0.9,160,1.1,0.0000,0.0000 +2012,10,30,0,30,13.8,1.32,0.02,0.61,0,0,0,0,0,0,0,0,0,0,0.271,38.85,96.8,0.91,0.24,885,0.9,153,1.5,0.0000,0.0000 +2012,10,30,1,30,12.3,1.32,0.02,0.61,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.271,41.92,109.08,0.91,0.24,885,0.9,155,1.7000000000000002,0.0000,0.0000 +2012,10,30,2,30,11.200000000000001,1.3,0.021,0.61,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.271,45.07,121.48,0.91,0.24,886,0.9,160,1.8,0.0000,0.0000 +2012,10,30,3,30,10.200000000000001,1.29,0.022,0.61,0,0,0,0,0,-0.2,0,0,0,0,0.272,48.57,133.72,0.91,0.24,886,0.9,167,1.8,0.0000,0.0000 +2012,10,30,4,30,9.4,1.29,0.022,0.61,0,0,0,0,0,-0.1,0,0,0,0,0.273,51.64,145.29,0.91,0.24,886,0.9,176,1.7000000000000002,0.0000,0.0000 +2012,10,30,5,30,8.6,1.3,0.023,0.61,0,0,0,0,0,0,0,0,0,0,0.274,54.59,154.99,0.91,0.24,885,0.9,187,1.6,0.0000,0.0000 +2012,10,30,6,30,7.800000000000001,1.33,0.023,0.61,0,0,0,0,0,-0.2,0,0,0,0,0.275,56.84,159.69,0.91,0.24,885,0.9,201,1.4000000000000001,0.0000,0.0000 +2012,10,30,7,30,7.300000000000001,1.3800000000000001,0.022,0.61,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.275,56.65,156.17000000000002,0.9,0.24,885,0.9,219,1.3,0.0000,0.0000 +2012,10,30,8,30,7.6000000000000005,1.4000000000000001,0.021,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.275,52.47,146.99,0.9,0.24,885,0.9,243,1.2000000000000002,0.0000,0.0000 +2012,10,30,9,30,8,1.4000000000000001,0.02,0.61,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.275,48.13,135.6,0.89,0.24,885,0.9,278,1,0.0000,0.0000 +2012,10,30,10,30,7.9,1.3800000000000001,0.019,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.274,46.410000000000004,123.44,0.89,0.24,885,0.9,325,1,0.0000,0.0000 +2012,10,30,11,30,7.2,1.36,0.018000000000000002,0.61,0,0,0,0,0,-3.1,0,0,0,0,0.274,47.99,111.05,0.89,0.24,885,0.8,184,1.2000000000000002,0.0000,0.0000 +2012,10,30,12,30,6.4,1.34,0.018000000000000002,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.273,51.27,98.76,0.88,0.24,885,0.8,23,1.3,0.0000,0.0000 +2012,10,30,13,30,8,1.31,0.017,0.61,18,418,43,0,0,-2.6,18,418,0,43,0.272,47.230000000000004,86.61,0.88,0.24,885,0.8,30,1.6,0.0000,0.0000 +2012,10,30,14,30,11.8,1.29,0.017,0.61,40,787,238,0,0,-1.2000000000000002,40,787,0,238,0.271,40.6,75.42,0.89,0.24,886,0.7000000000000001,30,2.2,11.5672,8.8859 +2012,10,30,15,30,15.9,1.27,0.017,0.61,51,916,436,0,0,-1.1,51,916,0,436,0.271,31.21,65.18,0.89,0.24,886,0.7000000000000001,38,2.4000000000000004,23.1058,17.9858 +2012,10,30,16,30,20.3,1.27,0.017,0.61,58,971,592,0,0,-0.8,58,971,0,592,0.27,24.3,56.620000000000005,0.89,0.24,886,0.8,60,2.7,33.2310,26.0013 +2012,10,30,17,30,23.3,1.27,0.017,0.61,61,1000,695,0,0,-2.4000000000000004,61,1000,0,695,0.27,17.95,50.660000000000004,0.9,0.24,886,0.8,73,3.1,40.0984,31.4415 +2012,10,30,18,30,24.5,1.35,0.031,0.61,73,995,735,0,0,-2.6,73,995,0,735,0.27,16.490000000000002,48.300000000000004,0.9,0.24,885,0.8,72,2.8000000000000003,42.8810,33.6450 +2012,10,30,19,30,25,1.36,0.032,0.61,73,986,706,0,0,-2.5,73,986,0,706,0.27,16.11,50.06,0.9,0.24,885,0.8,71,2.4000000000000004,40.9388,32.1059 +2012,10,30,20,30,25,1.37,0.032,0.61,69,954,608,0,0,-2.5,69,954,0,608,0.27,16.12,55.56,0.9,0.24,884,0.9,71,2,34.7023,27.1646 +2012,10,30,21,30,24.400000000000002,1.37,0.028,0.61,59,901,457,0,0,-2.5,59,901,0,457,0.27,16.66,63.800000000000004,0.9,0.24,884,0.9,73,1.6,24.8997,19.4032 +2012,10,30,22,30,22.5,1.3800000000000001,0.028,0.61,47,781,265,0,0,-2.2,47,781,0,265,0.27,19.1,73.85000000000001,0.9,0.24,884,0.9,84,1.1,13.3685,10.2982 +2012,10,30,23,30,19.5,1.3900000000000001,0.028,0.61,24,467,66,0,0,2.6,24,467,0,66,0.27,32.49,84.96000000000001,0.9,0.24,885,0.9,103,1,0.0000,0.0000 +2012,10,31,0,30,17.2,1.3900000000000001,0.028,0.61,0,0,0,0,0,-0.2,0,0,0,0,0.27,30.66,96.99000000000001,0.9,0.24,885,0.9,120,1.2000000000000002,0.0000,0.0000 +2012,10,31,1,30,15.700000000000001,1.3900000000000001,0.028,0.61,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.27,32.86,109.26,0.9,0.24,885,0.9,138,1.3,0.0000,0.0000 +2012,10,31,2,30,14.4,1.3800000000000001,0.028,0.61,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.271,35.42,121.66,0.9,0.24,886,0.8,157,1.4000000000000001,0.0000,0.0000 +2012,10,31,3,30,13.3,1.36,0.027,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.272,37.83,133.91,0.9,0.24,886,0.8,174,1.4000000000000001,0.0000,0.0000 +2012,10,31,4,30,12.4,1.34,0.027,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.273,39.9,145.51,0.9,0.24,886,0.8,189,1.4000000000000001,0.0000,0.0000 +2012,10,31,5,30,11.9,1.35,0.026000000000000002,0.61,0,0,0,0,0,-1,0,0,0,0,0.274,40.79,155.27,0.9,0.24,886,0.9,204,1.3,0.0000,0.0000 +2012,10,31,6,30,11.600000000000001,1.36,0.026000000000000002,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.275,41.08,160.02,0.9,0.24,886,0.9,220,1.3,0.0000,0.0000 +2012,10,31,7,30,11.4,1.37,0.025,0.61,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.276,40.980000000000004,156.45000000000002,0.9,0.24,886,0.9,240,1.1,0.0000,0.0000 +2012,10,31,8,30,11,1.37,0.026000000000000002,0.61,0,0,0,0,0,-1.6,0,0,0,0,0.276,41.53,147.20000000000002,0.9,0.24,886,0.9,266,1.1,0.0000,0.0000 +2012,10,31,9,30,10.4,1.36,0.026000000000000002,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.276,42.56,135.78,0.91,0.24,886,1,291,1.1,0.0000,0.0000 +2012,10,31,10,30,9.700000000000001,1.36,0.026000000000000002,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.276,44.27,123.60000000000001,0.91,0.24,887,1,309,1.2000000000000002,0.0000,0.0000 +2012,10,31,11,30,9.200000000000001,1.37,0.026000000000000002,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.276,45.71,111.21000000000001,0.91,0.24,887,1,319,1.2000000000000002,0.0000,0.0000 +2012,10,31,12,30,9.3,1.37,0.026000000000000002,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.276,45.410000000000004,98.93,0.9,0.24,887,1,323,1.2000000000000002,0.0000,0.0000 +2012,10,31,13,30,10.600000000000001,1.37,0.025,0.61,18,372,39,0,0,-1.9000000000000001,18,372,0,39,0.276,41.660000000000004,86.79,0.9,0.24,888,1,323,1,0.0000,0.0000 +2012,10,31,14,30,13.700000000000001,1.37,0.024,0.61,43,757,231,0,0,0,43,757,0,231,0.276,39.12,75.63,0.9,0.24,888,0.9,318,1.1,11.5963,8.9050 +2012,10,31,15,30,17.6,1.3800000000000001,0.024,0.61,56,892,427,0,0,-1,56,892,0,427,0.275,28.23,65.42,0.9,0.24,888,0.9,264,1.2000000000000002,23.2245,18.0746 +2012,10,31,16,30,21.8,1.3800000000000001,0.024,0.61,63,955,585,0,0,-0.9,63,955,0,585,0.274,22.03,56.89,0.9,0.24,888,0.9,193,1.9000000000000001,33.2410,26.0060 +2012,10,31,17,30,24.6,1.37,0.024,0.61,67,986,689,0,0,-1.7000000000000002,67,986,0,689,0.273,17.47,50.96,0.91,0.24,887,0.9,175,3,40.0517,31.4020 +2012,10,31,18,30,25.8,1.37,0.022,0.61,67,994,724,0,0,-2,67,994,0,724,0.272,15.97,48.620000000000005,0.91,0.24,887,1,177,3.3000000000000003,42.7170,33.5135 +2012,10,31,19,30,26.3,1.37,0.022,0.61,66,987,695,0,0,-2.2,66,987,0,695,0.272,15.24,50.38,0.91,0.24,886,1,179,3.5,40.7769,31.9761 +2012,10,31,20,30,26.400000000000002,1.3800000000000001,0.022,0.61,62,960,601,0,0,-2.4000000000000004,62,960,0,601,0.273,14.91,55.84,0.91,0.24,885,1,182,3.5,34.3162,26.8592 +2012,10,31,21,30,25.700000000000003,1.3900000000000001,0.02,0.61,54,906,451,0,0,-2.6,54,906,0,451,0.273,15.370000000000001,64.06,0.91,0.24,885,1,184,3.4000000000000004,24.5873,19.1562 +2012,10,31,22,30,23,1.3900000000000001,0.021,0.61,44,786,260,0,0,-2.4000000000000004,44,786,0,260,0.274,18.25,74.07000000000001,0.91,0.24,885,1,183,2.4000000000000004,13.0932,10.0822 +2012,10,31,23,30,18.6,1.3900000000000001,0.021,0.61,23,473,63,0,0,1.3,23,473,0,63,0.274,31.27,85.16,0.91,0.24,886,1,181,1.6,0.0000,0.0000 +2012,11,1,0,30,15.8,1.37,0.022,0.6,0,0,0,0,0,0.5,0,0,0,0,0.275,35.33,97.17,0.91,0.24,886,0.9,182,1.8,0.0000,0.0000 +2012,11,1,1,30,14.8,1.36,0.023,0.6,0,0,0,0,1,0,0,0,0,0,0.274,36.43,109.43,0.91,0.24,886,0.9,186,2.1,0.0000,0.0000 +2012,11,1,2,30,14.100000000000001,1.34,0.024,0.6,0,0,0,0,0,0,0,0,0,0,0.274,38,121.83,0.91,0.24,887,0.9,191,2.3000000000000003,0.0000,0.0000 +2012,11,1,3,30,13.4,1.33,0.026000000000000002,0.6,0,0,0,0,0,0.1,0,0,0,0,0.274,40.14,134.09,0.91,0.24,887,0.9,195,2.5,0.0000,0.0000 +2012,11,1,4,30,12.8,1.32,0.027,0.6,0,0,0,0,0,0.4,0,0,0,0,0.273,42.47,145.73,0.91,0.24,887,0.9,200,2.6,0.0000,0.0000 +2012,11,1,5,30,12.100000000000001,1.32,0.03,0.6,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.273,45.410000000000004,155.54,0.91,0.24,887,0.9,206,2.6,0.0000,0.0000 +2012,11,1,6,30,11.5,1.32,0.032,0.6,0,0,0,0,0,0.9,0,0,0,0,0.273,48.26,160.34,0.92,0.24,887,1,213,2.6,0.0000,0.0000 +2012,11,1,7,30,10.9,1.31,0.034,0.6,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.273,51.26,156.72,0.92,0.24,887,1,222,2.5,0.0000,0.0000 +2012,11,1,8,30,10.3,1.31,0.037,0.6,0,0,0,0,0,1.5,0,0,0,0,0.274,54.36,147.41,0.92,0.24,887,1,231,2.4000000000000004,0.0000,0.0000 +2012,11,1,9,30,9.600000000000001,1.32,0.04,0.6,0,0,0,0,0,1.8,0,0,0,0,0.275,58.43,135.96,0.92,0.24,887,1,241,2.2,0.0000,0.0000 +2012,11,1,10,30,9.1,1.33,0.042,0.6,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.275,62.31,123.76,0.92,0.24,887,1,249,2,0.0000,0.0000 +2012,11,1,11,30,8.6,1.34,0.044,0.6,0,0,0,0,0,2.7,0,0,0,0,0.276,66.42,111.38,0.92,0.24,887,1,256,1.8,0.0000,0.0000 +2012,11,1,12,30,8.3,1.36,0.046,0.6,0,0,0,0,0,3.1,0,0,0,0,0.276,69.79,99.10000000000001,0.92,0.24,887,1,261,1.6,0.0000,0.0000 +2012,11,1,13,30,10.3,1.3800000000000001,0.047,0.6,20,305,36,0,1,3.5,20,305,0,36,0.277,62.68,86.96000000000001,0.93,0.24,887,0.9,265,2,0.0000,0.0000 +2012,11,1,14,30,14.100000000000001,1.3900000000000001,0.047,0.6,50,708,224,0,1,3.9000000000000004,50,708,0,224,0.278,50.13,75.84,0.92,0.24,887,0.9,266,2.4000000000000004,11.2354,8.6246 +2012,11,1,15,30,18.2,1.41,0.046,0.6,65,857,419,0,0,4.2,65,857,0,419,0.28,39.59,65.66,0.92,0.24,887,0.9,248,2.5,22.7042,17.6661 +2012,11,1,16,30,22.400000000000002,1.42,0.045,0.6,74,928,577,0,1,3.9000000000000004,74,928,0,577,0.281,29.82,57.160000000000004,0.92,0.24,887,0.9,220,2.8000000000000003,32.8034,25.6605 +2012,11,1,17,30,25.1,1.42,0.043000000000000003,0.6,78,964,681,0,0,1.6,78,964,0,681,0.28200000000000003,21.580000000000002,51.26,0.92,0.24,886,0.9,203,3.4000000000000004,39.6606,31.0926 +2012,11,1,18,30,26.400000000000002,1.41,0.039,0.6,78,979,721,0,0,0.2,78,979,0,721,0.28200000000000003,18,48.94,0.92,0.24,885,0.9,196,3.7,42.0317,32.9731 +2012,11,1,19,30,27,1.42,0.038,0.6,76,973,692,0,0,-1,76,973,0,692,0.281,15.96,50.69,0.92,0.24,884,0.9,197,3.9000000000000004,40.0939,31.4377 +2012,11,1,20,30,27,1.42,0.037,0.6,71,945,598,0,0,-1.8,71,945,0,598,0.28,15.01,56.120000000000005,0.92,0.24,884,0.9,200,3.8000000000000003,33.8757,26.5114 +2012,11,1,21,30,26.400000000000002,1.44,0.04,0.6,65,885,449,0,0,-2.4000000000000004,65,885,0,449,0.279,14.86,64.3,0.92,0.24,883,0.8,203,3.6,24.2201,18.8664 +2012,11,1,22,30,23.6,1.44,0.039,0.6,51,759,256,0,0,-2.7,51,759,0,256,0.278,17.27,74.29,0.92,0.24,883,0.8,201,2.4000000000000004,12.8203,9.8684 +2012,11,1,23,30,19.200000000000003,1.43,0.037,0.6,25,430,59,0,0,1,25,430,0,59,0.279,29.490000000000002,85.35000000000001,0.92,0.24,883,0.8,194,1.6,0.0000,0.0000 +2012,11,2,0,30,16.400000000000002,1.42,0.035,0.6,0,0,0,0,0,0.1,0,0,0,0,0.28,33,97.35000000000001,0.91,0.24,883,0.7000000000000001,191,1.8,0.0000,0.0000 +2012,11,2,1,30,15.4,1.4000000000000001,0.033,0.6,0,0,0,0,0,-0.5,0,0,0,0,0.281,33.81,109.60000000000001,0.91,0.24,884,0.7000000000000001,192,2.2,0.0000,0.0000 +2012,11,2,2,30,14.8,1.4000000000000001,0.032,0.6,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.281,34.79,122,0.91,0.24,884,0.7000000000000001,195,2.7,0.0000,0.0000 +2012,11,2,3,30,14.3,1.4000000000000001,0.032,0.6,0,0,0,0,1,-0.4,0,0,0,0,0.281,36.4,134.27,0.91,0.24,884,0.7000000000000001,199,3.2,0.0000,0.0000 +2012,11,2,4,30,13.8,1.41,0.034,0.6,0,0,0,0,1,0,0,0,0,0,0.28,38.7,145.94,0.91,0.24,884,0.7000000000000001,204,3.6,0.0000,0.0000 +2012,11,2,5,30,13.100000000000001,1.42,0.036000000000000004,0.6,0,0,0,0,0,0.5,0,0,0,0,0.279,41.97,155.8,0.91,0.24,884,0.7000000000000001,208,3.6,0.0000,0.0000 +2012,11,2,6,30,12.100000000000001,1.43,0.038,0.6,0,0,0,0,0,1,0,0,0,0,0.279,46.57,160.65,0.91,0.24,884,0.8,212,3.5,0.0000,0.0000 +2012,11,2,7,30,11.3,1.43,0.04,0.6,0,0,0,0,0,1.5,0,0,0,0,0.278,51.01,156.99,0.92,0.24,884,0.8,217,3.2,0.0000,0.0000 +2012,11,2,8,30,10.600000000000001,1.43,0.04,0.6,0,0,0,0,0,2,0,0,0,0,0.278,55.4,147.62,0.92,0.24,884,0.8,222,3,0.0000,0.0000 +2012,11,2,9,30,9.8,1.42,0.041,0.6,0,0,0,0,0,2.5,0,0,0,0,0.277,60.38,136.13,0.92,0.24,883,0.8,230,2.6,0.0000,0.0000 +2012,11,2,10,30,9,1.42,0.04,0.6,0,0,0,0,0,2.7,0,0,0,0,0.277,64.65,123.92,0.92,0.24,883,0.8,241,2.2,0.0000,0.0000 +2012,11,2,11,30,8.4,1.41,0.039,0.6,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.275,65.95,111.54,0.92,0.24,883,0.7000000000000001,251,2,0.0000,0.0000 +2012,11,2,12,30,8.1,1.41,0.037,0.6,0,0,0,0,0,1.5,0,0,0,0,0.274,63.18,99.27,0.91,0.24,883,0.7000000000000001,260,2.1,0.0000,0.0000 +2012,11,2,13,30,9.5,1.41,0.035,0.6,18,343,35,0,0,0,18,343,0,35,0.274,51.43,87.14,0.91,0.24,884,0.6000000000000001,268,2.8000000000000003,0.0000,0.0000 +2012,11,2,14,30,12.700000000000001,1.43,0.034,0.6,46,750,227,0,1,-2.1,46,750,0,227,0.274,35.62,76.04,0.9,0.24,884,0.6000000000000001,272,3.4000000000000004,10.8762,8.3456 +2012,11,2,15,30,16.5,1.45,0.035,0.6,60,891,424,0,1,-3.8000000000000003,60,891,0,424,0.273,24.73,65.89,0.89,0.24,884,0.6000000000000001,268,3.2,22.2384,17.3000 +2012,11,2,16,30,21.200000000000003,1.48,0.036000000000000004,0.6,69,956,584,0,1,-4.6000000000000005,69,956,0,584,0.273,17.27,57.43,0.89,0.24,884,0.6000000000000001,268,3.3000000000000003,32.3103,25.2717 +2012,11,2,17,30,25,1.5,0.036000000000000004,0.6,74,989,688,0,0,-7.2,74,989,0,688,0.272,11.290000000000001,51.56,0.88,0.24,883,0.6000000000000001,278,3.4000000000000004,39.1547,30.6931 +2012,11,2,18,30,26.8,1.57,0.035,0.6,75,1008,733,0,0,-9.1,75,1008,0,733,0.272,8.74,49.25,0.88,0.24,882,0.5,284,3.2,41.8110,32.7972 +2012,11,2,19,30,27.3,1.58,0.036000000000000004,0.6,74,992,698,0,0,-9.200000000000001,74,992,0,698,0.271,8.43,50.99,0.88,0.24,882,0.6000000000000001,283,3.1,39.8743,31.2626 +2012,11,2,20,30,27.200000000000003,1.58,0.037,0.6,70,962,603,0,0,-9,70,962,0,603,0.27,8.6,56.4,0.88,0.24,881,0.6000000000000001,285,3,33.6609,26.3402 +2012,11,2,21,30,26.5,1.57,0.038,0.6,63,901,450,0,0,-8.9,63,901,0,450,0.27,9.07,64.55,0.88,0.24,881,0.6000000000000001,289,2.6,24.0714,18.7471 +2012,11,2,22,30,23.6,1.55,0.039,0.6,50,771,256,0,0,-7.1000000000000005,50,771,0,256,0.27,12.39,74.51,0.88,0.24,881,0.6000000000000001,295,1.7000000000000002,12.5978,9.6935 +2012,11,2,23,30,20.1,1.52,0.041,0.6,24,425,57,0,0,0,24,425,0,57,0.271,26.03,85.54,0.89,0.24,882,0.6000000000000001,303,1.2000000000000002,0.0000,0.0000 +2012,11,3,0,30,18.400000000000002,1.49,0.043000000000000003,0.6,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.273,22.51,97.53,0.89,0.24,882,0.6000000000000001,311,1.3,0.0000,0.0000 +2012,11,3,1,30,17.1,1.46,0.044,0.6,0,0,0,0,0,-4.2,0,0,0,0,0.274,23.04,109.77,0.89,0.24,883,0.6000000000000001,326,1.3,0.0000,0.0000 +2012,11,3,2,30,15.200000000000001,1.44,0.046,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.276,25.79,122.17,0.9,0.24,883,0.6000000000000001,169,1.4000000000000001,0.0000,0.0000 +2012,11,3,3,30,13.100000000000001,1.43,0.047,0.6,0,0,0,0,0,-3.7,0,0,0,0,0.277,30.82,134.45,0.9,0.24,883,0.7000000000000001,13,1.8,0.0000,0.0000 +2012,11,3,4,30,11.600000000000001,1.41,0.049,0.6,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.278,37.67,146.14000000000001,0.9,0.24,884,0.8,33,2.5,0.0000,0.0000 +2012,11,3,5,30,10.600000000000001,1.4000000000000001,0.051000000000000004,0.6,0,0,0,0,0,-0.4,0,0,0,0,0.278,46.58,156.06,0.9,0.24,885,0.8,44,3.4000000000000004,0.0000,0.0000 +2012,11,3,6,30,9.700000000000001,1.3900000000000001,0.053,0.6,0,0,0,0,0,1.6,0,0,0,0,0.278,57.13,160.96,0.9,0.24,885,0.9,45,3.8000000000000003,0.0000,0.0000 +2012,11,3,7,30,8.8,1.3900000000000001,0.056,0.6,0,0,0,0,1,2.9000000000000004,0,0,0,0,0.278,66.38,157.26,0.9,0.24,886,1,42,3.6,0.0000,0.0000 +2012,11,3,8,30,7.9,1.3800000000000001,0.059000000000000004,0.6,0,0,0,0,0,3.1,0,0,0,0,0.278,71.43,147.83,0.9,0.24,887,1.1,36,3.1,0.0000,0.0000 +2012,11,3,9,30,7.2,1.3800000000000001,0.062,0.6,0,0,0,0,7,2.6,0,0,0,0,0.279,72.43,136.31,0.91,0.24,887,1.1,30,2.9000000000000004,0.0000,0.0000 +2012,11,3,10,30,6.6000000000000005,1.3800000000000001,0.066,0.6,0,0,0,0,8,2.1,0,0,0,0,0.28,72.77,124.08,0.91,0.24,887,1.1,24,3,0.0000,0.0000 +2012,11,3,11,30,6.2,1.37,0.07,0.6,0,0,0,0,7,1.7000000000000002,0,0,0,0,0.281,72.71000000000001,111.7,0.92,0.24,888,1.1,21,3.2,0.0000,0.0000 +2012,11,3,12,30,5.800000000000001,1.36,0.075,0.6,0,0,0,0,7,1.4000000000000001,0,0,0,0,0.28200000000000003,73.09,99.44,0.92,0.24,888,1.1,19,3.3000000000000003,0.0000,0.0000 +2012,11,3,13,30,6.300000000000001,1.36,0.08,0.6,19,209,29,7,7,1.1,20,1,7,20,0.28200000000000003,69.45,87.31,0.92,0.24,889,1.1,22,3.6,0.0000,0.0000 +2012,11,3,14,30,8.1,1.36,0.084,0.6,58,622,206,0,4,0.9,137,35,0,145,0.28300000000000003,60.26,76.25,0.92,0.24,889,1.2000000000000002,34,4.1000000000000005,11.0042,8.4407 +2012,11,3,15,30,10.5,1.37,0.08600000000000001,0.6,79,785,396,0,7,0.7000000000000001,185,369,0,334,0.28400000000000003,50.71,66.13,0.92,0.24,890,1.2000000000000002,47,4,22.4641,17.4721 +2012,11,3,16,30,13,1.3900000000000001,0.084,0.6,90,863,551,0,3,0.8,325,166,0,413,0.28500000000000003,43.37,57.7,0.92,0.24,889,1.3,57,3.6,32.6568,25.5395 +2012,11,3,17,30,15.3,1.41,0.082,0.6,95,904,653,0,8,1.1,250,485,0,549,0.28500000000000003,38.12,51.86,0.92,0.24,889,1.3,70,3.1,39.5107,30.9693 +2012,11,3,18,30,17.2,1.41,0.07,0.6,92,925,692,0,7,1.4000000000000001,333,281,0,516,0.28500000000000003,34.480000000000004,49.56,0.93,0.24,889,1.4000000000000001,91,2.4000000000000004,42.4605,33.3039 +2012,11,3,19,30,18.2,1.4000000000000001,0.079,0.6,95,903,660,0,8,1.6,258,424,0,523,0.28600000000000003,32.96,51.29,0.9400000000000001,0.24,888,1.5,105,1.9000000000000001,40.1740,31.4948 +2012,11,3,20,30,18.7,1.3800000000000001,0.08600000000000001,0.6,92,859,564,0,7,1.9000000000000001,254,303,0,420,0.28600000000000003,32.49,56.67,0.9400000000000001,0.24,887,1.6,91,1.6,33.8957,26.5207 +2012,11,3,21,30,18.6,1.3900000000000001,0.064,0.6,73,815,421,0,7,2.1,196,340,0,341,0.28600000000000003,33.160000000000004,64.79,0.9400000000000001,0.24,887,1.6,71,1.6,24.0816,18.7513 +2012,11,3,22,30,17.400000000000002,1.3900000000000001,0.063,0.6,57,677,235,0,8,2.2,120,299,0,199,0.28700000000000003,36.01,74.71000000000001,0.9400000000000001,0.24,887,1.6,74,1.3,12.5729,9.6706 +2012,11,3,23,30,14.8,1.4000000000000001,0.06,0.6,25,328,50,0,0,3.5,25,328,0,50,0.28700000000000003,46.7,85.71000000000001,0.9400000000000001,0.24,887,1.6,90,1,0.0000,0.0000 +2012,11,4,0,30,12.600000000000001,1.4000000000000001,0.058,0.6,0,0,0,0,1,2.7,0,0,0,0,0.28800000000000003,50.95,97.7,0.9400000000000001,0.24,888,1.6,106,1.1,0.0000,0.0000 +2012,11,4,1,30,11.5,1.4000000000000001,0.057,0.6,0,0,0,0,0,2.5,0,0,0,0,0.28800000000000003,54.07,109.93,0.93,0.24,889,1.6,116,1.3,0.0000,0.0000 +2012,11,4,2,30,10.600000000000001,1.41,0.054,0.6,0,0,0,0,0,2.6,0,0,0,0,0.289,57.51,122.32000000000001,0.93,0.24,889,1.5,121,1.4000000000000001,0.0000,0.0000 +2012,11,4,3,30,9.700000000000001,1.42,0.051000000000000004,0.6,0,0,0,0,0,2.7,0,0,0,0,0.289,61.52,134.61,0.93,0.24,889,1.5,123,1.5,0.0000,0.0000 +2012,11,4,4,30,8.8,1.43,0.049,0.6,0,0,0,0,0,2.7,0,0,0,0,0.28800000000000003,65.69,146.33,0.92,0.24,889,1.4000000000000001,122,1.4000000000000001,0.0000,0.0000 +2012,11,4,5,30,7.9,1.43,0.049,0.6,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.28700000000000003,69.96000000000001,156.31,0.92,0.24,890,1.4000000000000001,121,1.3,0.0000,0.0000 +2012,11,4,6,30,7.2,1.42,0.048,0.6,0,0,0,0,0,2.7,0,0,0,0,0.28700000000000003,73.14,161.27,0.92,0.24,890,1.4000000000000001,120,1.1,0.0000,0.0000 +2012,11,4,7,30,6.5,1.42,0.048,0.6,0,0,0,0,0,2.6,0,0,0,0,0.28600000000000003,76.17,157.53,0.92,0.24,890,1.4000000000000001,121,1,0.0000,0.0000 +2012,11,4,8,30,6,1.42,0.048,0.6,0,0,0,0,0,2.5,0,0,0,0,0.28500000000000003,78.04,148.03,0.92,0.24,890,1.3,123,1,0.0000,0.0000 +2012,11,4,9,30,5.7,1.43,0.048,0.6,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.28500000000000003,78.96000000000001,136.48,0.92,0.24,890,1.3,128,0.9,0.0000,0.0000 +2012,11,4,10,30,5.5,1.43,0.047,0.6,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.28500000000000003,79.72,124.25,0.91,0.24,890,1.3,137,0.9,0.0000,0.0000 +2012,11,4,11,30,5.4,1.43,0.046,0.6,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.28500000000000003,80.25,111.86,0.91,0.24,890,1.2000000000000002,156,0.9,0.0000,0.0000 +2012,11,4,12,30,5.300000000000001,1.43,0.045,0.6,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.28600000000000003,81.38,99.61,0.91,0.24,890,1.2000000000000002,189,0.8,0.0000,0.0000 +2012,11,4,13,30,6.5,1.42,0.045,0.6,17,268,28,0,0,2.6,17,268,0,28,0.28500000000000003,76.04,87.49,0.91,0.24,890,1.2000000000000002,224,1.2000000000000002,0.0000,0.0000 +2012,11,4,14,30,9.4,1.42,0.044,0.6,48,692,210,0,0,2.9000000000000004,48,692,0,210,0.28500000000000003,63.86,76.46000000000001,0.91,0.24,890,1.1,237,1.8,7.0176,5.3807 +2012,11,4,15,30,13.200000000000001,1.43,0.042,0.6,63,848,403,0,1,3.3000000000000003,63,848,0,403,0.28500000000000003,51.17,66.36,0.91,0.24,890,1.1,235,2.7,17.6630,13.7349 +2012,11,4,16,30,17,1.44,0.04,0.6,71,921,559,0,1,4.2,71,921,0,559,0.28400000000000003,42.75,57.97,0.91,0.24,890,1.1,239,3.6,23.0620,18.0336 +2012,11,4,17,30,19.900000000000002,1.45,0.038,0.6,75,958,662,0,0,4.3,75,958,0,662,0.28300000000000003,35.76,52.160000000000004,0.91,0.24,889,1.1,244,3.8000000000000003,31.4906,24.6807 +2012,11,4,18,30,22,1.43,0.039,0.6,77,972,703,0,0,3.3000000000000003,77,972,0,703,0.28300000000000003,29.23,49.870000000000005,0.91,0.24,888,1,247,3.9000000000000004,29.8572,23.4165 +2012,11,4,19,30,23.3,1.43,0.039,0.6,76,964,674,0,0,1.7000000000000002,76,964,0,674,0.28200000000000003,24.16,51.59,0.91,0.24,887,1,251,3.9000000000000004,30.0668,23.5690 +2012,11,4,20,30,23.8,1.42,0.039,0.6,71,934,581,0,0,0.1,71,934,0,581,0.28200000000000003,20.84,56.94,0.91,0.24,886,1,256,3.9000000000000004,23.5772,18.4452 +2012,11,4,21,30,23.5,1.4000000000000001,0.038,0.6,63,877,433,0,0,-1.6,63,877,0,433,0.28200000000000003,18.87,65.02,0.91,0.24,886,0.9,260,3.6,18.2166,14.1817 +2012,11,4,22,30,21,1.3900000000000001,0.036000000000000004,0.6,49,748,243,0,0,-2.8000000000000003,49,748,0,243,0.28200000000000003,20.05,74.92,0.91,0.24,886,0.9,257,2.3000000000000003,9.7560,7.5014 +2012,11,4,23,30,16.8,1.3800000000000001,0.034,0.6,22,408,52,0,0,-0.1,22,408,0,52,0.28300000000000003,31.720000000000002,85.89,0.91,0.24,886,0.8,247,1.4000000000000001,0.0000,0.0000 +2012,11,5,0,30,14.3,1.3800000000000001,0.032,0.6,0,0,0,0,1,-1.8,0,0,0,0,0.28400000000000003,32.94,97.86,0.91,0.24,886,0.8,240,1.5,0.0000,0.0000 +2012,11,5,1,30,13.100000000000001,1.3800000000000001,0.03,0.6,0,0,0,0,0,-2.7,0,0,0,0,0.28600000000000003,33.22,110.08,0.9,0.24,886,0.8,239,1.7000000000000002,0.0000,0.0000 +2012,11,5,2,30,12.200000000000001,1.3900000000000001,0.029,0.6,0,0,0,0,8,-3.5,0,0,0,0,0.28700000000000003,33.18,122.48,0.9,0.24,887,0.8,244,1.8,0.0000,0.0000 +2012,11,5,3,30,11.3,1.41,0.027,0.6,0,0,0,0,0,-4.4,0,0,0,0,0.289,33.06,134.77,0.9,0.24,887,0.8,252,1.9000000000000001,0.0000,0.0000 +2012,11,5,4,30,10.4,1.44,0.026000000000000002,0.6,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.29,33.22,146.52,0.89,0.24,887,0.8,262,1.9000000000000001,0.0000,0.0000 +2012,11,5,5,30,9.4,1.47,0.025,0.6,0,0,0,0,0,-5.5,0,0,0,0,0.29,34.410000000000004,156.56,0.89,0.24,887,0.8,276,1.8,0.0000,0.0000 +2012,11,5,6,30,8.8,1.48,0.025,0.6,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.29,35.09,161.58,0.89,0.24,888,0.9,307,1.9000000000000001,0.0000,0.0000 +2012,11,5,7,30,8.700000000000001,1.47,0.027,0.6,0,0,0,0,0,-6,0,0,0,0,0.29,34.76,157.79,0.9,0.24,888,0.9,164,2.6,0.0000,0.0000 +2012,11,5,8,30,8.5,1.46,0.028,0.6,0,0,0,0,0,-5.4,0,0,0,0,0.291,36.95,148.24,0.9,0.24,889,1,6,3.7,0.0000,0.0000 +2012,11,5,9,30,8,1.45,0.029,0.6,0,0,0,0,0,-4.2,0,0,0,0,0.291,41.68,136.65,0.89,0.24,889,1,11,4.4,0.0000,0.0000 +2012,11,5,10,30,7.4,1.4000000000000001,0.029,0.6,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.292,46.57,124.41,0.89,0.24,889,1,12,4.7,0.0000,0.0000 +2012,11,5,11,30,6.9,1.34,0.029,0.6,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.292,50.230000000000004,112.02,0.89,0.24,890,1,13,4.4,0.0000,0.0000 +2012,11,5,12,30,6.4,1.3,0.028,0.6,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.292,53.28,99.78,0.89,0.24,890,1,12,4.1000000000000005,0.0000,0.0000 +2012,11,5,13,30,6.9,1.29,0.027,0.6,15,307,28,0,0,-2.1,15,307,0,28,0.291,52.89,87.67,0.9,0.24,891,1,9,4.2,0.0000,0.0000 +2012,11,5,14,30,9.3,1.29,0.026000000000000002,0.6,42,727,210,0,1,-1.4000000000000001,42,727,0,210,0.29,47.12,76.66,0.9,0.24,891,1,12,4.5,10.1472,7.7773 +2012,11,5,15,30,12.8,1.3,0.025,0.6,55,870,401,0,1,0.2,55,870,0,401,0.289,41.94,66.6,0.9,0.24,891,1.1,25,4.9,21.2737,16.5391 +2012,11,5,16,30,15.8,1.31,0.025,0.6,63,938,556,0,1,1,63,938,0,556,0.28800000000000003,36.57,58.230000000000004,0.9,0.24,891,1.1,34,4.7,31.1701,24.3707 +2012,11,5,17,30,17.900000000000002,1.31,0.025,0.6,67,971,658,0,0,0.30000000000000004,67,971,0,658,0.28700000000000003,30.580000000000002,52.45,0.9,0.24,891,1.1,35,3.7,37.9264,29.7218 +2012,11,5,18,30,19.5,1.32,0.027,0.6,70,979,697,0,0,0,70,979,0,697,0.28600000000000003,26.98,50.17,0.9,0.24,890,1.1,27,2.6,40.6319,31.8642 +2012,11,5,19,30,20.400000000000002,1.32,0.028,0.6,69,970,668,0,0,-0.30000000000000004,69,970,0,668,0.28300000000000003,25.03,51.870000000000005,0.9,0.24,889,1.1,187,1.9000000000000001,38.7021,30.3352 +2012,11,5,20,30,20.900000000000002,1.33,0.03,0.6,66,939,575,0,1,-0.6000000000000001,66,939,0,575,0.281,23.7,57.2,0.9,0.24,889,1.1,337,1.7000000000000002,32.5708,25.4780 +2012,11,5,21,30,20.8,1.33,0.027,0.6,57,877,425,0,0,-1,57,877,0,425,0.28,23.19,65.25,0.9,0.24,888,1.2000000000000002,315,1.7000000000000002,23.0922,17.9740 +2012,11,5,22,30,19.400000000000002,1.33,0.028,0.6,45,746,237,0,8,-1.3,104,404,0,208,0.279,24.77,75.12,0.9,0.24,888,1.2000000000000002,308,1.2000000000000002,11.8910,9.1396 +2012,11,5,23,30,17.6,1.32,0.028,0.6,21,397,48,0,0,0.8,21,397,0,48,0.277,32.2,86.06,0.9,0.24,888,1.2000000000000002,194,0.5,0.0000,0.0000 +2012,11,6,0,30,15.8,1.31,0.027,0.6,0,0,0,0,0,-0.5,0,0,0,0,0.276,32.78,98.02,0.9,0.24,889,1.1,110,0.7000000000000001,0.0000,0.0000 +2012,11,6,1,30,13.4,1.31,0.027,0.6,0,0,0,0,0,-0.8,0,0,0,0,0.275,37.480000000000004,110.23,0.9,0.24,889,1.1,151,1.2000000000000002,0.0000,0.0000 +2012,11,6,2,30,11.4,1.3,0.027,0.6,0,0,0,0,0,-1.1,0,0,0,0,0.275,41.84,122.62,0.9,0.24,889,1.1,169,1.4000000000000001,0.0000,0.0000 +2012,11,6,3,30,10.4,1.29,0.027,0.6,0,0,0,0,8,-1.4000000000000001,0,0,0,0,0.275,43.84,134.93,0.9,0.24,889,1.1,181,1.5,0.0000,0.0000 +2012,11,6,4,30,9.700000000000001,1.29,0.027,0.6,0,0,0,0,0,-1.6,0,0,0,0,0.274,45.29,146.71,0.9,0.24,889,1.1,190,1.6,0.0000,0.0000 +2012,11,6,5,30,9.1,1.29,0.026000000000000002,0.6,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.273,46.62,156.8,0.9,0.24,889,1.1,198,1.8,0.0000,0.0000 +2012,11,6,6,30,8.6,1.29,0.026000000000000002,0.6,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.272,47.800000000000004,161.87,0.9,0.24,888,1.1,206,2,0.0000,0.0000 +2012,11,6,7,30,8,1.29,0.026000000000000002,0.6,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.272,49.67,158.05,0.9,0.24,888,1.1,214,2.1,0.0000,0.0000 +2012,11,6,8,30,7.5,1.27,0.025,0.6,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.272,51.53,148.44,0.9,0.24,888,1.1,222,2.1,0.0000,0.0000 +2012,11,6,9,30,7,1.25,0.025,0.6,0,0,0,0,4,-1.7000000000000002,0,0,0,0,0.272,53.88,136.82,0.89,0.24,888,1.1,231,1.9000000000000001,0.0000,0.0000 +2012,11,6,10,30,6.5,1.23,0.025,0.6,0,0,0,0,1,-1.5,0,0,0,0,0.272,56.49,124.57000000000001,0.89,0.24,888,1.1,241,1.7000000000000002,0.0000,0.0000 +2012,11,6,11,30,6.2,1.21,0.025,0.6,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.272,58.28,112.19,0.89,0.24,889,1.1,251,1.6,0.0000,0.0000 +2012,11,6,12,30,6,1.21,0.025,0.6,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.272,59.120000000000005,99.95,0.89,0.24,889,1.1,260,1.5,0.0000,0.0000 +2012,11,6,13,30,7.800000000000001,1.21,0.024,0.6,15,300,26,0,0,-1.5,15,300,0,26,0.271,51.83,87.84,0.89,0.24,889,1.1,268,1.7000000000000002,0.0000,0.0000 +2012,11,6,14,30,11.4,1.23,0.023,0.6,41,726,206,0,1,-1.4000000000000001,41,726,0,206,0.271,41,76.87,0.89,0.24,890,1.1,274,2.2,10.1324,7.7631 +2012,11,6,15,30,15.3,1.25,0.022,0.6,53,874,397,0,1,-1.6,53,874,0,397,0.272,31.330000000000002,66.83,0.89,0.24,890,1.1,271,2.1,21.1281,16.4222 +2012,11,6,16,30,19.5,1.27,0.022,0.6,60,941,552,0,1,-1.4000000000000001,60,941,0,552,0.273,24.3,58.49,0.89,0.24,890,1.1,270,1.5,30.9597,24.2031 +2012,11,6,17,30,23.1,1.28,0.022,0.6,64,978,657,0,0,-2,64,978,0,657,0.275,18.78,52.730000000000004,0.89,0.24,889,1,174,1.4000000000000001,37.6527,29.5045 +2012,11,6,18,30,24.900000000000002,1.29,0.024,0.6,67,986,695,0,0,-2.6,67,986,0,695,0.275,16.04,50.47,0.89,0.24,889,1,84,1.8,40.2407,31.5547 +2012,11,6,19,30,25.5,1.29,0.024,0.6,66,979,667,0,0,-2.9000000000000004,66,979,0,667,0.276,15.18,52.160000000000004,0.89,0.24,888,1,98,1.9000000000000001,38.3149,30.0291 +2012,11,6,20,30,25.400000000000002,1.29,0.025,0.6,63,949,573,0,0,-3,63,949,0,573,0.276,15.11,57.46,0.89,0.24,888,1,103,1.8,32.1917,25.1785 +2012,11,6,21,30,24.8,1.29,0.024,0.6,56,889,425,0,0,-3.1,56,889,0,425,0.276,15.52,65.47,0.89,0.24,888,1,104,1.7000000000000002,22.6267,17.6083 +2012,11,6,22,30,22,1.3,0.025,0.6,44,757,236,0,0,-2.8000000000000003,44,757,0,236,0.276,18.84,75.31,0.89,0.24,888,1,102,1.3,10.1606,7.8068 +2012,11,6,23,30,17.7,1.3,0.026000000000000002,0.6,20,401,47,0,0,1.9000000000000001,20,401,0,47,0.276,34.77,86.22,0.89,0.24,888,1,100,1.2000000000000002,0.0000,0.0000 +2012,11,7,0,30,15,1.3,0.026000000000000002,0.6,0,0,0,0,0,-0.4,0,0,0,0,0.276,34.980000000000004,98.17,0.89,0.24,889,1,101,1.5,0.0000,0.0000 +2012,11,7,1,30,13.8,1.3,0.026000000000000002,0.6,0,0,0,0,0,-0.8,0,0,0,0,0.276,36.69,110.37,0.89,0.24,889,1,104,1.7000000000000002,0.0000,0.0000 +2012,11,7,2,30,12.8,1.29,0.026000000000000002,0.6,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.276,39.47,122.76,0.89,0.24,889,1,108,1.8,0.0000,0.0000 +2012,11,7,3,30,11.700000000000001,1.28,0.026000000000000002,0.6,0,0,0,0,0,-0.2,0,0,0,0,0.276,43.78,135.08,0.89,0.24,890,1,113,1.9000000000000001,0.0000,0.0000 +2012,11,7,4,30,10.700000000000001,1.28,0.026000000000000002,0.6,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.276,48.65,146.88,0.89,0.24,890,1,119,1.9000000000000001,0.0000,0.0000 +2012,11,7,5,30,9.8,1.27,0.026000000000000002,0.6,0,0,0,0,0,0.9,0,0,0,0,0.276,53.86,157.03,0.89,0.24,890,1,126,1.8,0.0000,0.0000 +2012,11,7,6,30,9,1.27,0.026000000000000002,0.6,0,0,0,0,0,1.3,0,0,0,0,0.276,58.620000000000005,162.17000000000002,0.89,0.24,890,1.1,134,1.6,0.0000,0.0000 +2012,11,7,7,30,8.200000000000001,1.27,0.028,0.6,0,0,0,0,0,1.5,0,0,0,0,0.276,62.88,158.31,0.9,0.24,890,1.1,142,1.5,0.0000,0.0000 +2012,11,7,8,30,7.6000000000000005,1.27,0.029,0.6,0,0,0,0,0,1.6,0,0,0,0,0.276,65.59,148.64000000000001,0.9,0.24,890,1.1,147,1.4000000000000001,0.0000,0.0000 +2012,11,7,9,30,7.2,1.27,0.031,0.6,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.276,66.72,137,0.9,0.24,890,1.1,150,1.3,0.0000,0.0000 +2012,11,7,10,30,6.800000000000001,1.27,0.031,0.6,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.275,67.46000000000001,124.73,0.9,0.24,890,1.1,152,1.2000000000000002,0.0000,0.0000 +2012,11,7,11,30,6.5,1.28,0.031,0.6,0,0,0,0,0,1,0,0,0,0,0.275,67.68,112.35000000000001,0.9,0.24,889,1.1,155,1.2000000000000002,0.0000,0.0000 +2012,11,7,12,30,6.2,1.29,0.031,0.6,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.275,68.08,100.12,0.9,0.24,889,1,160,1.2000000000000002,0.0000,0.0000 +2012,11,7,13,30,7.800000000000001,1.3,0.03,0.6,14,274,24,0,0,0.6000000000000001,14,274,0,24,0.274,60.410000000000004,88.02,0.9,0.24,890,1,167,1.7000000000000002,0.0000,0.0000 +2012,11,7,14,30,11.100000000000001,1.31,0.028,0.6,43,716,203,0,0,0.6000000000000001,43,716,0,203,0.274,48.230000000000004,77.08,0.9,0.24,890,1,174,2.4000000000000004,9.9247,7.6009 +2012,11,7,15,30,15,1.32,0.027,0.6,56,869,394,0,1,0.7000000000000001,56,869,0,394,0.274,37.74,67.06,0.9,0.24,889,1,178,3,20.8790,16.2251 +2012,11,7,16,30,19.400000000000002,1.33,0.026000000000000002,0.6,63,939,550,0,0,0.8,63,939,0,550,0.274,28.810000000000002,58.75,0.9,0.24,889,1,185,4.2,30.6936,23.9920 +2012,11,7,17,30,22.8,1.33,0.026000000000000002,0.6,67,977,655,0,0,0,67,977,0,655,0.275,22,53.02,0.89,0.24,888,0.9,194,5.2,37.5519,29.4228 +2012,11,7,18,30,24.6,1.33,0.023,0.6,66,992,694,0,0,-0.9,66,992,0,694,0.275,18.6,50.76,0.89,0.24,886,0.9,199,5.2,40.0804,31.4263 +2012,11,7,19,30,25.6,1.34,0.023,0.6,65,984,665,0,0,-1.4000000000000001,65,984,0,665,0.275,16.8,52.44,0.89,0.24,885,0.9,203,5.1000000000000005,38.2129,29.9463 +2012,11,7,20,30,26,1.35,0.024,0.6,62,954,572,0,0,-1.9000000000000001,62,954,0,572,0.275,15.870000000000001,57.71,0.9,0.24,885,0.9,206,5,32.0367,25.0542 +2012,11,7,21,30,25.6,1.34,0.022,0.6,54,896,423,0,0,-2.3000000000000003,54,896,0,423,0.275,15.72,65.69,0.9,0.24,884,0.9,205,4.5,22.5893,17.5759 +2012,11,7,22,30,22.900000000000002,1.35,0.023,0.6,43,770,236,0,0,-2.5,43,770,0,236,0.276,18.28,75.5,0.9,0.24,884,0.8,200,3.1,11.5096,8.8402 +2012,11,7,23,30,18.6,1.35,0.023,0.6,20,413,46,0,0,-0.7000000000000001,20,413,0,46,0.277,27.19,86.39,0.9,0.24,884,0.8,192,2.1,0.0000,0.0000 +2012,11,8,0,30,16.1,1.35,0.023,0.6,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.277,30.66,98.32000000000001,0.89,0.24,884,0.8,188,2.3000000000000003,0.0000,0.0000 +2012,11,8,1,30,15.4,1.36,0.024,0.6,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.278,30.89,110.51,0.89,0.24,884,0.7000000000000001,188,2.7,0.0000,0.0000 +2012,11,8,2,30,14.700000000000001,1.36,0.024,0.6,0,0,0,0,0,-2,0,0,0,0,0.278,31.52,122.9,0.89,0.24,884,0.7000000000000001,191,3,0.0000,0.0000 +2012,11,8,3,30,13.9,1.37,0.025,0.6,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.279,32.69,135.22,0.89,0.24,884,0.8,196,3.3000000000000003,0.0000,0.0000 +2012,11,8,4,30,13,1.3800000000000001,0.025,0.6,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.279,34.4,147.05,0.89,0.24,884,0.8,203,3.4000000000000004,0.0000,0.0000 +2012,11,8,5,30,11.9,1.3900000000000001,0.026000000000000002,0.6,0,0,0,0,0,-2.5,0,0,0,0,0.279,36.63,157.25,0.89,0.24,884,0.7000000000000001,213,3.3000000000000003,0.0000,0.0000 +2012,11,8,6,30,10.9,1.3900000000000001,0.026000000000000002,0.6,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.278,38.300000000000004,162.46,0.89,0.24,884,0.7000000000000001,225,2.9000000000000004,0.0000,0.0000 +2012,11,8,7,30,10,1.4000000000000001,0.025,0.6,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.278,39.22,158.56,0.89,0.24,884,0.7000000000000001,237,2.5,0.0000,0.0000 +2012,11,8,8,30,9.4,1.4000000000000001,0.026000000000000002,0.6,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.278,39.160000000000004,148.84,0.89,0.24,883,0.6000000000000001,249,2.3000000000000003,0.0000,0.0000 +2012,11,8,9,30,8.9,1.4000000000000001,0.027,0.6,0,0,0,0,0,-4.2,0,0,0,0,0.278,39.230000000000004,137.17000000000002,0.89,0.24,883,0.6000000000000001,258,2.2,0.0000,0.0000 +2012,11,8,10,30,8.5,1.4000000000000001,0.028,0.6,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.278,39.38,124.89,0.89,0.24,883,0.6000000000000001,264,2.1,0.0000,0.0000 +2012,11,8,11,30,8.1,1.41,0.028,0.6,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.278,39.63,112.51,0.89,0.24,883,0.7000000000000001,267,2,0.0000,0.0000 +2012,11,8,12,30,7.9,1.41,0.029,0.6,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.278,39.34,100.29,0.9,0.24,883,0.7000000000000001,270,2,0.0000,0.0000 +2012,11,8,13,30,9.4,1.41,0.03,0.6,14,279,22,0,0,-5.300000000000001,14,279,0,22,0.279,34.910000000000004,88.19,0.9,0.24,884,0.7000000000000001,271,2.7,0.0000,0.0000 +2012,11,8,14,30,12.5,1.42,0.03,0.6,43,726,203,0,4,-5.6000000000000005,130,34,0,138,0.28,27.95,77.28,0.91,0.24,884,0.7000000000000001,270,3.5,9.7663,7.4767 +2012,11,8,15,30,16.1,1.45,0.03,0.6,57,879,396,0,3,-5.6000000000000005,214,244,0,308,0.28200000000000003,22.05,67.29,0.91,0.24,884,0.7000000000000001,264,3.4000000000000004,20.6829,16.0692 +2012,11,8,16,30,20.5,1.46,0.03,0.6,65,944,551,0,8,-5.1000000000000005,198,518,0,464,0.28200000000000003,17.38,59.01,0.91,0.24,884,0.8,259,3.4000000000000004,30.5388,23.8678 +2012,11,8,17,30,24.3,1.47,0.031,0.6,70,976,654,0,8,-5.4,232,499,0,531,0.28200000000000003,13.450000000000001,53.300000000000004,0.92,0.24,883,0.8,261,3.8000000000000003,37.3921,29.2946 +2012,11,8,18,30,26.400000000000002,1.4000000000000001,0.047,0.6,81,969,690,0,8,-6.5,306,347,0,524,0.28200000000000003,10.96,51.050000000000004,0.92,0.24,882,0.8,261,4.1000000000000005,39.9789,31.3440 +2012,11,8,19,30,26.900000000000002,1.41,0.049,0.6,80,954,658,0,8,-6.4,244,442,0,512,0.28200000000000003,10.69,52.71,0.92,0.24,882,0.9,259,4.3,38.0548,29.8197 +2012,11,8,20,30,27,1.43,0.048,0.6,75,919,562,0,1,-5.9,75,919,0,562,0.28200000000000003,11.040000000000001,57.95,0.92,0.24,881,1,256,4.4,31.9390,24.9749 +2012,11,8,21,30,26.6,1.47,0.043000000000000003,0.6,64,859,415,7,3,-5.300000000000001,185,500,7,389,0.28200000000000003,11.9,65.9,0.92,0.24,881,1,249,3.9000000000000004,22.4455,17.4607 +2012,11,8,22,30,23.6,1.47,0.042,0.6,49,716,226,0,3,-4,138,130,0,170,0.281,15.620000000000001,75.68,0.92,0.24,881,1.1,235,2.5,11.4911,8.8229 +2012,11,8,23,30,19.6,1.46,0.041,0.6,20,340,41,7,7,-0.7000000000000001,27,3,7,27,0.281,25.59,86.54,0.93,0.24,881,1.2000000000000002,216,1.8,0.0000,0.0000 +2012,11,9,0,30,18.400000000000002,1.44,0.04,0.6,0,0,0,0,4,-0.9,0,0,0,0,0.279,27,98.46000000000001,0.93,0.24,881,1.3,200,2.4000000000000004,0.0000,0.0000 +2012,11,9,1,30,18.8,1.43,0.039,0.6,0,0,0,0,8,-1,0,0,0,0,0.278,26.150000000000002,110.64,0.93,0.24,881,1.3,196,3.6,0.0000,0.0000 +2012,11,9,2,30,18.5,1.41,0.038,0.6,0,0,0,0,0,-0.8,0,0,0,0,0.278,27.11,123.02,0.93,0.24,881,1.4000000000000001,195,4.1000000000000005,0.0000,0.0000 +2012,11,9,3,30,17.400000000000002,1.4000000000000001,0.037,0.6,0,0,0,0,7,-0.2,0,0,0,0,0.278,30.35,135.36,0.93,0.24,881,1.4000000000000001,195,3.8000000000000003,0.0000,0.0000 +2012,11,9,4,30,16.2,1.3900000000000001,0.038,0.6,0,0,0,0,1,0.30000000000000004,0,0,0,0,0.277,33.92,147.21,0.92,0.24,881,1.5,196,3.6,0.0000,0.0000 +2012,11,9,5,30,14.8,1.4000000000000001,0.038,0.6,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.277,37.94,157.47,0.92,0.24,881,1.5,198,3.5,0.0000,0.0000 +2012,11,9,6,30,13.5,1.42,0.038,0.6,0,0,0,0,0,0.8,0,0,0,0,0.277,42,162.74,0.92,0.24,881,1.5,202,3.3000000000000003,0.0000,0.0000 +2012,11,9,7,30,12.4,1.42,0.043000000000000003,0.6,0,0,0,0,1,1,0,0,0,0,0.277,45.730000000000004,158.81,0.92,0.24,881,1.5,207,3.2,0.0000,0.0000 +2012,11,9,8,30,11.600000000000001,1.42,0.048,0.6,0,0,0,0,0,1.1,0,0,0,0,0.276,48.480000000000004,149.03,0.92,0.24,881,1.5,213,3,0.0000,0.0000 +2012,11,9,9,30,11,1.41,0.047,0.6,0,0,0,0,0,1,0,0,0,0,0.276,50.17,137.34,0.92,0.24,881,1.4000000000000001,220,2.9000000000000004,0.0000,0.0000 +2012,11,9,10,30,10.4,1.41,0.042,0.6,0,0,0,0,0,0.8,0,0,0,0,0.275,51.34,125.06,0.92,0.24,881,1.2000000000000002,227,2.8000000000000003,0.0000,0.0000 +2012,11,9,11,30,9.9,1.41,0.034,0.6,0,0,0,0,0,0.4,0,0,0,0,0.274,51.65,112.67,0.91,0.24,881,1.1,233,2.8000000000000003,0.0000,0.0000 +2012,11,9,12,30,9.5,1.41,0.029,0.6,0,0,0,0,0,-0.1,0,0,0,0,0.273,51.26,100.46000000000001,0.9,0.24,882,1,240,2.7,0.0000,0.0000 +2012,11,9,13,30,10.700000000000001,1.41,0.027,0.6,13,259,20,0,0,-0.7000000000000001,13,259,0,20,0.272,45.25,88.37,0.9,0.24,882,1.1,247,3.3000000000000003,0.0000,0.0000 +2012,11,9,14,30,13.600000000000001,1.42,0.026000000000000002,0.6,41,706,194,0,3,-1.2000000000000002,123,51,0,134,0.271,35.89,77.49,0.9,0.24,882,1.2000000000000002,250,3.8000000000000003,6.6307,5.0743 +2012,11,9,15,30,17.6,1.42,0.026000000000000002,0.6,54,856,382,0,1,-1.7000000000000002,54,856,0,382,0.27,26.78,67.52,0.91,0.24,882,1.3,251,4.1000000000000005,16.1382,12.5354 +2012,11,9,16,30,21.6,1.43,0.025,0.6,62,924,534,0,1,-2,62,924,0,534,0.269,20.51,59.27,0.91,0.24,882,1.4000000000000001,255,5.1000000000000005,25.7264,20.1039 +2012,11,9,17,30,23.900000000000002,1.45,0.024,0.6,65,959,634,0,0,0.5,65,959,0,634,0.268,21.36,53.58,0.9,0.24,881,1.4000000000000001,257,5.9,30.2773,23.7182 +2012,11,9,18,30,24.900000000000002,1.48,0.022,0.6,65,973,673,0,0,0.9,65,973,0,673,0.268,20.78,51.33,0.9,0.24,881,1.4000000000000001,254,6.1000000000000005,30.1523,23.6378 +2012,11,9,19,30,25.400000000000002,1.48,0.024,0.6,65,963,645,0,0,1,65,963,0,645,0.267,20.32,52.980000000000004,0.91,0.24,880,1.4000000000000001,251,6.2,29.2666,22.9312 +2012,11,9,20,30,25.5,1.49,0.028,0.6,64,925,552,0,0,1.3,64,925,0,552,0.266,20.650000000000002,58.19,0.91,0.24,879,1.5,247,6.1000000000000005,31.3408,24.5043 +2012,11,9,21,30,25,1.57,0.027,0.6,56,860,404,0,1,1.8,56,860,0,404,0.265,22.06,66.11,0.92,0.24,879,1.6,239,5.9,20.6082,16.0285 +2012,11,9,22,30,23.6,1.57,0.027,0.6,44,722,220,0,0,2.5,44,722,0,220,0.264,25.11,75.86,0.92,0.24,879,1.7000000000000002,232,5,8.2651,6.3439 +2012,11,9,23,30,20.900000000000002,1.53,0.027,0.6,19,356,39,7,3,3.2,20,0,7,20,0.264,31.2,86.69,0.92,0.24,879,1.7000000000000002,227,3.8000000000000003,0.0000,0.0000 +2012,11,10,0,30,18.6,1.52,0.024,0.6,0,0,0,0,1,3.7,0,0,0,0,0.264,37.17,98.60000000000001,0.91,0.24,880,1.6,227,3.3000000000000003,0.0000,0.0000 +2012,11,10,1,30,17.1,1.48,0.023,0.6,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.264,41.22,110.77,0.91,0.24,880,1.5,229,2.9000000000000004,0.0000,0.0000 +2012,11,10,2,30,15.600000000000001,1.43,0.025,0.6,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.264,45.49,123.15,0.92,0.24,880,1.5,227,2.4000000000000004,0.0000,0.0000 +2012,11,10,3,30,14.5,1.36,0.031,0.6,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.265,48.800000000000004,135.48,0.93,0.24,881,1.6,214,2,0.0000,0.0000 +2012,11,10,4,30,14.200000000000001,1.3,0.042,0.6,0,0,0,0,7,3.8000000000000003,0,0,0,0,0.265,49.57,147.36,0.9400000000000001,0.24,881,1.7000000000000002,196,2.4000000000000004,0.0000,0.0000 +2012,11,10,5,30,14.200000000000001,1.27,0.055,0.6,0,0,0,0,0,4,0,0,0,0,0.265,50.4,157.68,0.9500000000000001,0.24,880,1.8,186,3.2,0.0000,0.0000 +2012,11,10,6,30,14,1.27,0.066,0.6,0,0,0,0,1,5.2,0,0,0,0,0.265,55.44,163.02,0.9500000000000001,0.24,880,1.8,184,3.8000000000000003,0.0000,0.0000 +2012,11,10,7,30,13.3,1.28,0.07,0.6,0,0,0,0,1,7.2,0,0,0,0,0.265,66.39,159.06,0.9500000000000001,0.24,880,1.8,185,4,0.0000,0.0000 +2012,11,10,8,30,12.5,1.28,0.063,0.6,0,0,0,0,1,8.8,0,0,0,0,0.265,78.04,149.23,0.9400000000000001,0.24,879,1.8,187,4,0.0000,0.0000 +2012,11,10,9,30,11.9,1.27,0.054,0.6,0,0,0,0,1,9.4,0,0,0,0,0.265,84.91,137.51,0.9400000000000001,0.24,878,1.8,192,3.9000000000000004,0.0000,0.0000 +2012,11,10,10,30,11.5,1.25,0.048,0.6,0,0,0,0,0,9.4,0,0,0,0,0.266,87.09,125.22,0.9400000000000001,0.24,878,1.8,200,3.9000000000000004,0.0000,0.0000 +2012,11,10,11,30,11.200000000000001,1.25,0.043000000000000003,0.6,0,0,0,0,0,9,0,0,0,0,0.266,86.46000000000001,112.84,0.9400000000000001,0.24,878,1.8,206,3.7,0.0000,0.0000 +2012,11,10,12,30,10.8,1.27,0.04,0.6,0,0,0,0,0,8.5,0,0,0,0,0.267,85.65,100.63,0.93,0.24,878,1.7000000000000002,205,3.4000000000000004,0.0000,0.0000 +2012,11,10,13,30,11.5,1.28,0.037,0.6,12,201,18,0,0,7.9,12,201,0,18,0.267,78.52,88.54,0.93,0.24,878,1.6,201,3.7,0.0000,0.0000 +2012,11,10,14,30,13.9,1.28,0.034,0.6,43,674,187,0,0,7.4,43,674,0,187,0.268,65.05,77.69,0.93,0.24,878,1.5,195,4.3,6.4303,4.9191 +2012,11,10,15,30,17.900000000000002,1.27,0.029,0.6,56,845,376,0,0,7.1000000000000005,56,845,0,376,0.268,49.31,67.75,0.93,0.24,878,1.4000000000000001,198,5.6000000000000005,19.9779,15.5143 +2012,11,10,16,30,21.6,1.26,0.026000000000000002,0.6,62,922,530,7,2,6.9,211,596,7,513,0.268,38.49,59.52,0.92,0.24,877,1.4000000000000001,208,7.5,29.5642,23.0998 +2012,11,10,17,30,23.6,1.23,0.023,0.6,65,960,631,7,2,6.300000000000001,236,639,7,613,0.268,32.77,53.85,0.92,0.24,876,1.4000000000000001,213,8.8,36.1067,28.2820 +2012,11,10,18,30,24.6,1.2,0.024,0.6,67,966,667,0,6,5.2,260,31,0,280,0.268,28.67,51.61,0.92,0.24,875,1.5,214,9.3,38.6842,30.3236 +2012,11,10,19,30,25.200000000000003,1.16,0.025,0.6,66,957,639,0,7,4.3,203,569,0,544,0.268,25.86,53.25,0.92,0.24,874,1.5,216,9.5,36.8275,28.8527 +2012,11,10,20,30,25.200000000000003,1.11,0.028,0.6,65,923,548,7,7,3.5,257,196,7,360,0.269,24.55,58.43,0.93,0.24,874,1.5,221,9.4,30.7436,24.0346 +2012,11,10,21,30,24.400000000000002,1.05,0.03,0.6,58,855,402,7,3,2.9000000000000004,178,476,7,369,0.269,24.7,66.31,0.93,0.24,874,1.5,229,9,21.3681,16.6164 +2012,11,10,22,30,22.6,1.03,0.034,0.6,47,714,219,0,3,2.3000000000000003,101,2,0,101,0.27,26.37,76.03,0.93,0.24,874,1.3,238,8.1,10.6802,8.1950 +2012,11,10,23,30,20,0.99,0.035,0.6,20,323,37,7,3,2,22,0,7,22,0.27,30.21,86.83,0.93,0.24,875,1.2000000000000002,245,6.5,0.0000,0.0000 +2012,11,11,0,30,17.5,0.92,0.035,0.6,0,0,0,0,10,1.8,0,0,0,0,0.27,34.74,98.73,0.93,0.24,875,1.1,247,5,0.0000,0.0000 +2012,11,11,1,30,15.700000000000001,0.84,0.035,0.6,0,0,0,0,8,1.2000000000000002,0,0,0,0,0.27,37.4,110.89,0.93,0.24,876,1,247,4.2,0.0000,0.0000 +2012,11,11,2,30,14,0.79,0.035,0.6,0,0,0,0,1,0.2,0,0,0,0,0.271,38.84,123.26,0.92,0.24,876,0.9,249,3.9000000000000004,0.0000,0.0000 +2012,11,11,3,30,12.200000000000001,0.78,0.034,0.6,0,0,0,0,0,-1.1,0,0,0,0,0.273,39.65,135.61,0.92,0.24,877,0.9,256,3.4000000000000004,0.0000,0.0000 +2012,11,11,4,30,10.4,0.84,0.033,0.6,0,0,0,0,7,-2.5,0,0,0,0,0.274,40.28,147.51,0.93,0.24,878,0.8,267,2.8000000000000003,0.0000,0.0000 +2012,11,11,5,30,8.9,0.92,0.031,0.6,0,0,0,0,7,-4,0,0,0,0,0.275,40.03,157.88,0.92,0.24,878,0.8,282,2.4000000000000004,0.0000,0.0000 +2012,11,11,6,30,7.6000000000000005,0.97,0.029,0.6,0,0,0,0,1,-5.4,0,0,0,0,0.275,39.31,163.3,0.92,0.24,879,0.8,295,2.2,0.0000,0.0000 +2012,11,11,7,30,6.4,1,0.027,0.6,0,0,0,0,4,-6.7,0,0,0,0,0.275,38.61,159.3,0.92,0.24,879,0.7000000000000001,302,2.1,0.0000,0.0000 +2012,11,11,8,30,5.4,1.02,0.026000000000000002,0.6,0,0,0,0,1,-7.9,0,0,0,0,0.276,37.67,149.42000000000002,0.91,0.24,879,0.6000000000000001,302,2.1,0.0000,0.0000 +2012,11,11,9,30,4.6000000000000005,1.04,0.025,0.6,0,0,0,0,1,-8.9,0,0,0,0,0.278,36.92,137.68,0.91,0.24,880,0.5,300,2.2,0.0000,0.0000 +2012,11,11,10,30,3.9000000000000004,1.05,0.025,0.6,0,0,0,0,1,-9.5,0,0,0,0,0.28,36.87,125.38000000000001,0.91,0.24,880,0.5,294,2.4000000000000004,0.0000,0.0000 +2012,11,11,11,30,3.3000000000000003,1.07,0.024,0.6,0,0,0,0,8,-9.8,0,0,0,0,0.28300000000000003,37.65,113,0.9,0.24,881,0.4,285,2.6,0.0000,0.0000 +2012,11,11,12,30,2.8000000000000003,1.09,0.025,0.6,0,0,0,0,1,-9.8,0,0,0,0,0.28500000000000003,38.92,100.8,0.9,0.24,881,0.4,279,2.9000000000000004,0.0000,0.0000 +2012,11,11,13,30,3.3000000000000003,1.1500000000000001,0.027,0.6,12,258,18,0,1,-9.600000000000001,12,258,0,18,0.28700000000000003,38.27,88.7,0.9,0.24,882,0.4,276,3.6,0.0000,0.0000 +2012,11,11,14,30,5.2,1.2,0.027,0.6,42,745,198,7,3,-9.200000000000001,106,263,7,161,0.28800000000000003,34.56,77.89,0.9,0.24,883,0.4,280,5,8.9634,6.8544 +2012,11,11,15,30,7.5,1.24,0.027,0.6,55,901,393,0,1,-8.9,55,901,0,393,0.289,30.12,67.98,0.9,0.24,883,0.4,284,6,19.6268,15.2380 +2012,11,11,16,30,9.200000000000001,1.25,0.024,0.6,62,976,553,0,1,-10.100000000000001,62,976,0,553,0.28800000000000003,24.48,59.77,0.9,0.24,883,0.4,285,6.300000000000001,28.3611,22.1569 +2012,11,11,17,30,10.5,1.25,0.022,0.6,64,1023,664,0,1,-12.100000000000001,64,1023,0,664,0.28700000000000003,19.19,54.120000000000005,0.89,0.24,883,0.30000000000000004,286,6.5,34.8697,27.3104 +2012,11,11,18,30,11.4,1.2,0.021,0.6,65,1035,704,0,1,-14.9,65,1035,0,704,0.28500000000000003,14.35,51.89,0.89,0.24,883,0.30000000000000004,286,6.9,16.0768,12.6011 +2012,11,11,19,30,11.700000000000001,1.19,0.022,0.6,65,1041,685,0,1,-18.2,65,1041,0,685,0.28400000000000003,10.73,53.5,0.89,0.24,883,0.2,286,7.2,31.0251,24.3045 +2012,11,11,20,30,11.5,1.21,0.025,0.6,64,1009,588,0,0,-20.400000000000002,64,1009,0,588,0.28300000000000003,8.96,58.65,0.89,0.24,884,0.2,286,7.300000000000001,20.0241,15.6525 +2012,11,11,21,30,10.8,1.23,0.028,0.6,58,943,434,0,0,-21.3,58,943,0,434,0.28300000000000003,8.72,66.5,0.89,0.24,884,0.2,287,7.1000000000000005,19.4865,15.1504 +2012,11,11,22,30,9.5,1.22,0.029,0.6,46,806,238,0,0,-21.400000000000002,46,806,0,238,0.28300000000000003,9.42,76.19,0.89,0.24,885,0.2,289,6.2,4.8965,3.7559 +2012,11,11,23,30,7.4,1.21,0.03,0.6,19,410,41,0,0,-20.8,19,410,0,41,0.28300000000000003,11.38,86.96000000000001,0.89,0.24,886,0.2,289,4.800000000000001,0.0000,0.0000 +2012,11,12,0,30,5.4,1.22,0.03,0.6,0,0,0,0,0,-19.3,0,0,0,0,0.28300000000000003,14.96,98.85000000000001,0.89,0.24,888,0.2,289,3.9000000000000004,0.0000,0.0000 +2012,11,12,1,30,4.1000000000000005,1.25,0.03,0.6,0,0,0,0,0,-18.1,0,0,0,0,0.28200000000000003,18.07,111,0.89,0.24,889,0.2,290,3.5,0.0000,0.0000 +2012,11,12,2,30,2.9000000000000004,1.26,0.03,0.6,0,0,0,0,1,-17,0,0,0,0,0.281,21.62,123.37,0.89,0.24,890,0.2,294,3,0.0000,0.0000 +2012,11,12,3,30,1.8,1.26,0.03,0.6,0,0,0,0,0,-15.700000000000001,0,0,0,0,0.28,25.92,135.72,0.89,0.24,891,0.2,301,2.5,0.0000,0.0000 +2012,11,12,4,30,0.9,1.27,0.029,0.6,0,0,0,0,0,-14.9,0,0,0,0,0.28,29.6,147.65,0.89,0.24,891,0.30000000000000004,310,2.2,0.0000,0.0000 +2012,11,12,5,30,0.1,1.28,0.028,0.6,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.279,33.43,158.08,0.89,0.24,892,0.30000000000000004,320,1.8,0.0000,0.0000 +2012,11,12,6,30,-0.6000000000000001,1.29,0.027,0.6,0,0,0,0,0,-13.4,0,0,0,0,0.279,37.35,163.56,0.89,0.24,893,0.30000000000000004,327,1.4000000000000001,0.0000,0.0000 +2012,11,12,7,30,-1,1.31,0.026000000000000002,0.6,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.279,39.38,159.54,0.89,0.24,893,0.30000000000000004,327,1.3,0.0000,0.0000 +2012,11,12,8,30,-1.7000000000000002,1.33,0.024,0.6,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.279,41.18,149.61,0.89,0.24,894,0.30000000000000004,325,1.4000000000000001,0.0000,0.0000 +2012,11,12,9,30,-2.6,1.33,0.022,0.6,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.279,42.65,137.84,0.88,0.24,894,0.30000000000000004,328,1.4000000000000001,0.0000,0.0000 +2012,11,12,10,30,-3.2,1.33,0.02,0.6,0,0,0,0,0,-14,0,0,0,0,0.279,42.97,125.54,0.88,0.24,894,0.30000000000000004,333,1.5,0.0000,0.0000 +2012,11,12,11,30,-3.8000000000000003,1.34,0.019,0.6,0,0,0,0,0,-14.4,0,0,0,0,0.279,43.47,113.16,0.88,0.24,894,0.30000000000000004,334,1.5,0.0000,0.0000 +2012,11,12,12,30,-4.2,1.34,0.019,0.6,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.279,43.75,100.98,0.88,0.24,895,0.30000000000000004,330,1.6,0.0000,0.0000 +2012,11,12,13,30,-3.2,1.34,0.019,0.6,11,294,17,0,0,-14.9,11,294,0,17,0.278,39.87,88.86,0.89,0.24,895,0.30000000000000004,328,2.3000000000000003,0.0000,0.0000 +2012,11,12,14,30,-0.5,1.35,0.019,0.6,38,772,198,0,4,-15,123,53,0,134,0.278,32.49,78.09,0.89,0.24,896,0.30000000000000004,330,2.8000000000000003,7.7091,5.8931 +2012,11,12,15,30,3.4000000000000004,1.36,0.019,0.6,51,924,394,7,2,-14.9,161,626,7,393,0.277,24.71,68.2,0.89,0.24,896,0.30000000000000004,168,2.2,20.4749,15.8926 +2012,11,12,16,30,6.9,1.36,0.019,0.6,58,993,554,0,1,-16.900000000000002,58,993,0,554,0.277,16.5,60.02,0.89,0.24,896,0.30000000000000004,14,1.3,30.5285,23.8468 +2012,11,12,17,30,8.8,1.37,0.019,0.6,62,1025,659,0,0,-18.1,62,1025,0,659,0.278,13.040000000000001,54.39,0.89,0.24,896,0.30000000000000004,68,0.5,37.7258,29.5444 +2012,11,12,18,30,10.200000000000001,1.32,0.028,0.6,71,1025,700,0,0,-18.5,71,1025,0,700,0.278,11.53,52.15,0.9,0.24,895,0.30000000000000004,134,0.5,40.3766,31.6447 +2012,11,12,19,30,11.100000000000001,1.32,0.028,0.6,69,1017,671,0,0,-18.7,69,1017,0,671,0.279,10.61,53.76,0.9,0.24,894,0.30000000000000004,167,1,39.0247,30.5685 +2012,11,12,20,30,11.600000000000001,1.32,0.027,0.6,65,978,570,0,0,-19,65,978,0,570,0.279,10.09,58.88,0.9,0.24,894,0.4,179,1.5,32.6667,25.5322 +2012,11,12,21,30,11.4,1.28,0.028,0.6,58,913,419,0,0,-19.1,58,913,0,419,0.279,10.120000000000001,66.69,0.9,0.24,893,0.4,176,1.7000000000000002,22.8849,17.7894 +2012,11,12,22,30,9.600000000000001,1.27,0.027,0.6,44,777,228,0,0,-18.900000000000002,44,777,0,228,0.278,11.540000000000001,76.35000000000001,0.9,0.24,893,0.4,164,1.3,11.5239,8.8369 +2012,11,12,23,30,6.300000000000001,1.26,0.026000000000000002,0.6,18,389,38,0,0,-12.9,18,389,0,38,0.279,23.86,87.09,0.9,0.24,893,0.4,152,1.1,0.0000,0.0000 +2012,11,13,0,30,3.9000000000000004,1.25,0.025,0.6,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.279,26.34,98.97,0.9,0.24,894,0.4,147,1.4000000000000001,0.0000,0.0000 +2012,11,13,1,30,2.8000000000000003,1.24,0.024,0.6,0,0,0,0,0,-14.3,0,0,0,0,0.279,27.28,111.11,0.9,0.24,894,0.4,151,1.6,0.0000,0.0000 +2012,11,13,2,30,2,1.23,0.024,0.6,0,0,0,0,0,-14.4,0,0,0,0,0.279,28.62,123.48,0.9,0.24,895,0.4,159,1.8,0.0000,0.0000 +2012,11,13,3,30,1.4000000000000001,1.22,0.024,0.6,0,0,0,0,0,-14,0,0,0,0,0.279,30.76,135.83,0.9,0.24,895,0.4,166,2,0.0000,0.0000 +2012,11,13,4,30,0.7000000000000001,1.2,0.024,0.6,0,0,0,0,0,-13.3,0,0,0,0,0.278,34.37,147.78,0.9,0.24,895,0.4,170,2.1,0.0000,0.0000 +2012,11,13,5,30,0,1.18,0.024,0.6,0,0,0,0,0,-12.4,0,0,0,0,0.276,38.88,158.27,0.91,0.24,895,0.4,171,2.1,0.0000,0.0000 +2012,11,13,6,30,-0.5,1.17,0.025,0.6,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.275,42.97,163.83,0.91,0.24,895,0.4,175,2.1,0.0000,0.0000 +2012,11,13,7,30,-0.9,1.16,0.025,0.6,0,0,0,0,0,-10.9,0,0,0,0,0.273,46.63,159.78,0.91,0.24,895,0.4,180,2.3000000000000003,0.0000,0.0000 +2012,11,13,8,30,-1.3,1.1500000000000001,0.026000000000000002,0.6,0,0,0,0,0,-10.3,0,0,0,0,0.272,50.34,149.81,0.91,0.24,895,0.4,183,2.4000000000000004,0.0000,0.0000 +2012,11,13,9,30,-1.9000000000000001,1.1400000000000001,0.026000000000000002,0.6,0,0,0,0,0,-9.8,0,0,0,0,0.272,54.63,138.01,0.91,0.24,894,0.4,186,2.2,0.0000,0.0000 +2012,11,13,10,30,-2.5,1.1400000000000001,0.026000000000000002,0.6,0,0,0,0,0,-9.5,0,0,0,0,0.272,58.64,125.7,0.91,0.24,894,0.4,190,1.9000000000000001,0.0000,0.0000 +2012,11,13,11,30,-3,1.1400000000000001,0.027,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.272,61.53,113.32000000000001,0.91,0.24,894,0.4,196,1.7000000000000002,0.0000,0.0000 +2012,11,13,12,30,-3.2,1.1400000000000001,0.028,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.272,62.52,101.15,0.91,0.24,894,0.4,201,1.6,0.0000,0.0000 +2012,11,13,13,30,-1.9000000000000001,1.1300000000000001,0.029,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.272,56.59,89.03,0.91,0.24,894,0.4,204,2.3000000000000003,0.0000,0.0000 +2012,11,13,14,30,1.2000000000000002,1.12,0.031,0.6,43,713,187,0,4,-9.4,118,68,0,132,0.272,45.15,78.3,0.92,0.24,894,0.5,201,3.1,6.4101,4.8984 +2012,11,13,15,30,5.2,1.12,0.033,0.6,59,875,380,0,1,-9.4,59,875,0,380,0.273,33.99,68.43,0.92,0.24,894,0.5,196,4.1000000000000005,20.4370,15.8595 +2012,11,13,16,30,8.9,1.11,0.035,0.6,68,947,538,0,1,-10.3,68,947,0,538,0.273,24.560000000000002,60.27,0.92,0.24,893,0.5,194,5.1000000000000005,30.5391,23.8518 +2012,11,13,17,30,11.200000000000001,1.1,0.037,0.6,75,981,642,0,0,-10.4,75,981,0,642,0.274,20.98,54.65,0.92,0.24,893,0.5,195,5.2,37.3965,29.2836 +2012,11,13,18,30,12.9,1.12,0.04,0.6,78,982,676,0,0,-10.5,78,982,0,676,0.275,18.6,52.42,0.92,0.24,891,0.6000000000000001,197,5.1000000000000005,40.1051,31.4293 +2012,11,13,19,30,14,1.12,0.041,0.6,77,972,648,0,0,-10.5,77,972,0,648,0.276,17.26,54,0.92,0.24,890,0.6000000000000001,199,5,38.1840,29.9072 +2012,11,13,20,30,14.5,1.12,0.039,0.6,71,951,560,0,0,-10.4,71,951,0,560,0.276,16.87,59.09,0.92,0.24,889,0.5,201,4.800000000000001,31.6265,24.7162 +2012,11,13,21,30,14.200000000000001,1.1,0.038,0.6,63,885,410,0,0,-10.200000000000001,63,885,0,410,0.275,17.490000000000002,66.88,0.92,0.24,889,0.5,204,4.2,22.0607,17.1457 +2012,11,13,22,30,11.9,1.09,0.037,0.6,48,752,223,0,0,-10,48,752,0,223,0.273,20.68,76.5,0.91,0.24,889,0.4,202,2.8000000000000003,11.0261,8.4527 +2012,11,13,23,30,8,1.08,0.035,0.6,19,343,35,0,0,-8.1,19,343,0,35,0.27,31.13,87.21000000000001,0.91,0.24,889,0.4,194,1.6,0.0000,0.0000 +2012,11,14,0,30,5.6000000000000005,1.06,0.034,0.6,0,0,0,0,0,-8.3,0,0,0,0,0.268,35.94,99.08,0.91,0.24,890,0.4,188,1.6,0.0000,0.0000 +2012,11,14,1,30,4.7,1.04,0.033,0.6,0,0,0,0,0,-8.5,0,0,0,0,0.267,37.86,111.21000000000001,0.91,0.24,890,0.4,184,1.8,0.0000,0.0000 +2012,11,14,2,30,3.9000000000000004,1.02,0.033,0.6,0,0,0,0,0,-8.5,0,0,0,0,0.266,40.08,123.57000000000001,0.91,0.24,891,0.4,181,1.8,0.0000,0.0000 +2012,11,14,3,30,3,1,0.032,0.6,0,0,0,0,0,-8.4,0,0,0,0,0.265,43.01,135.93,0.9,0.24,891,0.4,181,1.9000000000000001,0.0000,0.0000 +2012,11,14,4,30,2.1,0.98,0.032,0.6,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.265,46.39,147.9,0.91,0.24,892,0.5,186,1.8,0.0000,0.0000 +2012,11,14,5,30,1.3,0.97,0.032,0.6,0,0,0,0,0,-8,0,0,0,0,0.264,49.85,158.45000000000002,0.91,0.24,892,0.5,194,1.7000000000000002,0.0000,0.0000 +2012,11,14,6,30,0.6000000000000001,0.9500000000000001,0.033,0.6,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.263,53.32,164.09,0.91,0.24,892,0.5,204,1.6,0.0000,0.0000 +2012,11,14,7,30,0,0.9500000000000001,0.034,0.6,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.263,56.550000000000004,160.02,0.91,0.24,892,0.5,214,1.5,0.0000,0.0000 +2012,11,14,8,30,-0.6000000000000001,0.96,0.034,0.6,0,0,0,0,0,-7.5,0,0,0,0,0.263,59.79,149.99,0.91,0.24,892,0.5,225,1.3,0.0000,0.0000 +2012,11,14,9,30,-0.9,0.97,0.034,0.6,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.263,61.7,138.18,0.91,0.24,892,0.5,238,1.2000000000000002,0.0000,0.0000 +2012,11,14,10,30,-0.9,0.98,0.033,0.6,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.263,62.050000000000004,125.86,0.91,0.24,892,0.5,253,1.2000000000000002,0.0000,0.0000 +2012,11,14,11,30,-0.8,0.98,0.032,0.6,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.263,61.64,113.49000000000001,0.9,0.24,892,0.5,268,1.2000000000000002,0.0000,0.0000 +2012,11,14,12,30,-0.9,0.98,0.032,0.6,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.263,61.870000000000005,101.32000000000001,0.9,0.24,892,0.5,281,1.2000000000000002,0.0000,0.0000 +2012,11,14,13,30,0.2,0.98,0.032,0.6,0,0,0,0,0,-7.4,0,0,0,0,0.262,56.7,89.19,0.9,0.24,893,0.5,291,1.3,0.0000,0.0000 +2012,11,14,14,30,3.3000000000000003,0.97,0.031,0.6,42,707,183,0,4,-7.4,116,79,0,132,0.262,45.39,78.5,0.9,0.24,893,0.5,296,1.7000000000000002,6.3087,4.8191 +2012,11,14,15,30,7.300000000000001,0.96,0.031,0.6,57,876,376,0,1,-7.5,57,876,0,376,0.262,34.1,68.65,0.9,0.24,893,0.5,280,1.8,19.7225,15.3012 +2012,11,14,16,30,11.700000000000001,0.96,0.03,0.6,66,962,539,0,1,-7.5,66,962,0,539,0.262,25.35,60.51,0.9,0.24,893,0.4,229,1.8,29.6133,23.1255 +2012,11,14,17,30,15.100000000000001,0.97,0.03,0.6,71,997,644,0,0,-8.8,71,997,0,644,0.263,18.46,54.910000000000004,0.9,0.24,893,0.4,194,2.7,36.3890,28.4918 +2012,11,14,18,30,16.900000000000002,0.9500000000000001,0.029,0.6,72,1010,684,0,0,-9.200000000000001,72,1010,0,684,0.263,15.9,52.68,0.9,0.24,892,0.4,194,3.3000000000000003,38.6874,30.3156 +2012,11,14,19,30,18,0.99,0.028,0.6,70,1004,656,0,0,-9.700000000000001,70,1004,0,656,0.264,14.31,54.24,0.9,0.24,891,0.4,197,3.6,36.8363,28.8491 +2012,11,14,20,30,18.400000000000002,1.03,0.028,0.6,65,974,563,0,0,-10.100000000000001,65,974,0,563,0.264,13.48,59.300000000000004,0.9,0.24,890,0.4,200,3.8000000000000003,31.0351,24.2515 +2012,11,14,21,30,17.900000000000002,0.99,0.025,0.6,56,914,413,0,0,-10.4,56,914,0,413,0.265,13.55,67.05,0.9,0.24,890,0.4,198,3.5,21.5541,16.7489 +2012,11,14,22,30,14.8,1.01,0.024,0.6,43,778,223,0,0,-10.200000000000001,43,778,0,223,0.265,16.75,76.65,0.9,0.24,889,0.4,189,2.4000000000000004,10.7722,8.2557 +2012,11,14,23,30,10.4,1.02,0.023,0.6,17,376,35,0,0,-7.4,17,376,0,35,0.266,27.85,87.34,0.9,0.24,889,0.4,180,1.8,0.0000,0.0000 +2012,11,15,0,30,8.200000000000001,1.02,0.023,0.6,0,0,0,0,1,-8.1,0,0,0,0,0.267,30.6,99.19,0.9,0.24,889,0.4,179,2.2,0.0000,0.0000 +2012,11,15,1,30,7.5,1.03,0.024,0.6,0,0,0,0,1,-8,0,0,0,0,0.268,32.39,111.31,0.9,0.24,889,0.4,182,2.8000000000000003,0.0000,0.0000 +2012,11,15,2,30,6.7,1.07,0.025,0.6,0,0,0,0,0,-7.4,0,0,0,0,0.268,35.81,123.66,0.89,0.24,889,0.4,188,3.1,0.0000,0.0000 +2012,11,15,3,30,5.7,1.11,0.026000000000000002,0.6,0,0,0,0,0,-6.7,0,0,0,0,0.268,40.53,136.03,0.89,0.24,889,0.4,196,3.1,0.0000,0.0000 +2012,11,15,4,30,4.5,1.1500000000000001,0.027,0.6,0,0,0,0,1,-6.2,0,0,0,0,0.267,45.92,148.02,0.89,0.24,889,0.4,204,2.8000000000000003,0.0000,0.0000 +2012,11,15,5,30,3.7,1.18,0.029,0.6,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.266,49.82,158.62,0.89,0.24,889,0.4,214,2.5,0.0000,0.0000 +2012,11,15,6,30,3.3000000000000003,1.2,0.03,0.6,0,0,0,0,7,-5.7,0,0,0,0,0.265,51.81,164.34,0.9,0.24,889,0.4,225,2.4000000000000004,0.0000,0.0000 +2012,11,15,7,30,2.7,1.21,0.031,0.6,0,0,0,0,7,-5.7,0,0,0,0,0.265,53.83,160.25,0.9,0.24,888,0.4,235,2.2,0.0000,0.0000 +2012,11,15,8,30,2.3000000000000003,1.2,0.031,0.6,0,0,0,0,7,-5.9,0,0,0,0,0.265,54.5,150.18,0.91,0.24,888,0.4,245,2.1,0.0000,0.0000 +2012,11,15,9,30,2.6,1.19,0.033,0.6,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.264,51.81,138.34,0.91,0.24,888,0.4,253,2.1,0.0000,0.0000 +2012,11,15,10,30,2.9000000000000004,1.18,0.034,0.6,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.263,48.77,126.02,0.91,0.24,888,0.4,258,2.1,0.0000,0.0000 +2012,11,15,11,30,3,1.17,0.034,0.6,0,0,0,0,7,-7.5,0,0,0,0,0.263,46.1,113.65,0.91,0.24,888,0.4,261,1.9000000000000001,0.0000,0.0000 +2012,11,15,12,30,2.8000000000000003,1.16,0.033,0.6,0,0,0,0,7,-8.1,0,0,0,0,0.264,44.4,101.49000000000001,0.91,0.24,888,0.4,265,1.8,0.0000,0.0000 +2012,11,15,13,30,3.6,1.1500000000000001,0.032,0.6,0,0,0,7,7,-8.9,0,0,7,0,0.264,39.63,89.36,0.91,0.24,889,0.4,278,2.1,0.0000,0.0000 +2012,11,15,14,30,5.7,1.1500000000000001,0.032,0.6,42,714,182,0,7,-9.8,70,5,0,71,0.264,31.830000000000002,78.7,0.91,0.24,889,0.4,296,2.8000000000000003,6.3039,4.8139 +2012,11,15,15,30,8.6,1.16,0.032,0.6,57,884,376,0,7,-10.700000000000001,203,186,0,270,0.264,24.240000000000002,68.87,0.9,0.24,890,0.4,318,3.4000000000000004,19.4782,15.1080 +2012,11,15,16,30,11.700000000000001,1.17,0.031,0.6,66,961,535,0,7,-11.200000000000001,237,372,0,418,0.265,19.02,60.75,0.9,0.24,890,0.4,342,3.9000000000000004,29.6258,23.1321 +2012,11,15,17,30,14.200000000000001,1.17,0.03,0.6,69,989,634,0,3,-10.700000000000001,348,242,0,486,0.265,16.75,55.160000000000004,0.89,0.24,890,0.5,177,4.1000000000000005,36.4589,28.5437 +2012,11,15,18,30,16.2,1.1500000000000001,0.028,0.6,70,1003,674,0,0,-10,70,1003,0,674,0.266,15.610000000000001,52.93,0.89,0.24,890,0.5,4,4.2,39.1033,30.6388 +2012,11,15,19,30,17.7,1.1500000000000001,0.027,0.6,68,996,647,0,0,-9.5,68,996,0,647,0.266,14.780000000000001,54.480000000000004,0.89,0.24,889,0.5,9,4.3,37.2513,29.1716 +2012,11,15,20,30,18.1,1.1500000000000001,0.026000000000000002,0.6,63,968,554,0,0,-9.1,63,968,0,554,0.266,14.8,59.51,0.88,0.24,889,0.5,16,4.4,31.1644,24.3498 +2012,11,15,21,30,17.400000000000002,1.12,0.024,0.6,55,906,406,0,0,-8.8,55,906,0,406,0.266,15.94,67.23,0.89,0.24,889,0.5,22,4.3,21.6821,16.8456 +2012,11,15,22,30,14.8,1.12,0.025,0.6,43,763,217,0,1,-8.200000000000001,43,763,0,217,0.266,19.67,76.79,0.89,0.24,890,0.5,27,3.2,10.7604,8.2444 +2012,11,15,23,30,11.3,1.12,0.025,0.6,17,346,32,7,7,-6.5,18,1,7,18,0.266,28.14,87.45,0.89,0.24,891,0.6000000000000001,32,2.2,0.0000,0.0000 +2012,11,16,0,30,9.4,1.12,0.026000000000000002,0.6,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.266,32.56,99.29,0.9,0.24,891,0.6000000000000001,37,2.4000000000000004,0.0000,0.0000 +2012,11,16,1,30,8.4,1.1300000000000001,0.026000000000000002,0.6,0,0,0,0,6,-6.2,0,0,0,0,0.267,35.01,111.4,0.9,0.24,892,0.6000000000000001,39,2.5,0.0000,0.0000 +2012,11,16,2,30,7.300000000000001,1.1400000000000001,0.025,0.6,0,0,0,0,6,-6.1000000000000005,0,0,0,0,0.268,38.13,123.75,0.9,0.24,893,0.6000000000000001,40,2.4000000000000004,0.0000,0.0000 +2012,11,16,3,30,6.2,1.16,0.025,0.6,0,0,0,0,6,-5.9,0,0,0,0,0.268,41.67,136.12,0.9,0.24,893,0.6000000000000001,41,2.2,0.0000,0.0000 +2012,11,16,4,30,5.2,1.18,0.025,0.6,0,0,0,0,1,-5.7,0,0,0,0,0.266,45.44,148.13,0.89,0.24,893,0.6000000000000001,39,1.9000000000000001,0.0000,0.0000 +2012,11,16,5,30,3.9000000000000004,1.2,0.024,0.6,0,0,0,0,0,-5.4,0,0,0,0,0.265,50.81,158.78,0.89,0.24,893,0.6000000000000001,36,1.7000000000000002,0.0000,0.0000 +2012,11,16,6,30,2.7,1.21,0.024,0.6,0,0,0,0,0,-5,0,0,0,0,0.263,56.77,164.58,0.89,0.24,893,0.6000000000000001,31,1.6,0.0000,0.0000 +2012,11,16,7,30,1.9000000000000001,1.21,0.024,0.6,0,0,0,0,0,-4.7,0,0,0,0,0.261,61.81,160.48,0.9,0.24,893,0.7000000000000001,26,1.6,0.0000,0.0000 +2012,11,16,8,30,1.4000000000000001,1.21,0.024,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.26,65.96000000000001,150.37,0.9,0.24,894,0.7000000000000001,22,1.7000000000000002,0.0000,0.0000 +2012,11,16,9,30,0.9,1.22,0.024,0.6,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.259,70.21000000000001,138.51,0.91,0.24,893,0.8,20,1.9000000000000001,0.0000,0.0000 +2012,11,16,10,30,0.5,1.22,0.026000000000000002,0.6,0,0,0,0,1,-3.5,0,0,0,0,0.259,74.28,126.18,0.92,0.24,893,0.8,20,1.9000000000000001,0.0000,0.0000 +2012,11,16,11,30,0,1.23,0.028,0.6,0,0,0,0,7,-3.2,0,0,0,0,0.258,79.19,113.81,0.93,0.24,893,0.9,22,1.9000000000000001,0.0000,0.0000 +2012,11,16,12,30,-0.4,1.23,0.031,0.6,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.257,83.94,101.66,0.93,0.24,894,0.9,25,1.7000000000000002,0.0000,0.0000 +2012,11,16,13,30,0.4,1.24,0.035,0.6,0,0,0,7,7,-2.4000000000000004,0,0,7,0,0.256,81.59,89.51,0.9400000000000001,0.24,894,1,30,1.9000000000000001,0.0000,0.0000 +2012,11,16,14,30,2.9000000000000004,1.24,0.04,0.6,44,645,168,0,7,-1.9000000000000001,92,23,0,96,0.256,70.46000000000001,78.89,0.9500000000000001,0.24,894,1.1,34,2,3.3885,2.5868 +2012,11,16,15,30,6.9,1.25,0.045,0.6,62,815,353,0,3,-1.5,212,126,0,256,0.256,54.96,69.09,0.9500000000000001,0.24,894,1.1,79,1.7000000000000002,13.9605,10.8256 +2012,11,16,16,30,11.4,1.26,0.05,0.6,74,887,504,0,1,0.7000000000000001,74,887,0,504,0.256,47.72,60.99,0.96,0.24,894,1.2000000000000002,139,2.6,22.9418,17.9106 +2012,11,16,17,30,14.3,1.26,0.055,0.6,82,921,605,0,0,2.4000000000000004,82,921,0,605,0.256,44.72,55.410000000000004,0.9500000000000001,0.24,893,1.2000000000000002,160,3.8000000000000003,27.4821,21.5136 +2012,11,16,18,30,15.9,1.29,0.051000000000000004,0.6,82,935,643,0,0,2.7,82,935,0,643,0.257,41.18,53.18,0.9500000000000001,0.24,892,1.3,167,4.1000000000000005,38.4914,30.1568 +2012,11,16,19,30,17,1.31,0.051000000000000004,0.6,81,926,616,0,0,2.7,81,926,0,616,0.257,38.4,54.71,0.9500000000000001,0.24,892,1.3,173,4.2,36.7007,28.7377 +2012,11,16,20,30,17.3,1.32,0.053,0.6,76,890,525,0,1,2.5,76,890,0,525,0.258,37.06,59.71,0.93,0.24,891,1.3,176,4.1000000000000005,30.6295,23.9292 +2012,11,16,21,30,16.8,1.32,0.039,0.6,61,838,383,0,7,2.2,124,616,0,361,0.258,37.43,67.39,0.92,0.24,891,1.3,173,3.8000000000000003,21.2835,16.5330 +2012,11,16,22,30,15,1.32,0.038,0.6,46,691,202,0,0,2,46,691,0,202,0.259,41.49,76.93,0.92,0.24,890,1.3,167,2.8000000000000003,10.4605,8.0125 +2012,11,16,23,30,12.100000000000001,1.34,0.036000000000000004,0.6,16,282,28,0,0,2.3000000000000003,16,282,0,28,0.26,51.08,87.56,0.91,0.24,891,1.3,161,2,0.0000,0.0000 +2012,11,17,0,30,10.200000000000001,1.35,0.035,0.6,0,0,0,0,1,2.5,0,0,0,0,0.261,58.83,99.39,0.92,0.24,891,1.4000000000000001,159,2.3000000000000003,0.0000,0.0000 +2012,11,17,1,30,9.600000000000001,1.35,0.037,0.6,0,0,0,0,1,3,0,0,0,0,0.261,63.34,111.48,0.92,0.24,892,1.4000000000000001,160,2.7,0.0000,0.0000 +2012,11,17,2,30,9.200000000000001,1.35,0.039,0.6,0,0,0,0,1,3.4000000000000004,0,0,0,0,0.261,67.15,123.83,0.93,0.24,892,1.4000000000000001,163,3,0.0000,0.0000 +2012,11,17,3,30,8.6,1.35,0.042,0.6,0,0,0,0,4,3.8000000000000003,0,0,0,0,0.26,71.87,136.2,0.93,0.24,892,1.4000000000000001,167,3,0.0000,0.0000 +2012,11,17,4,30,8.1,1.35,0.045,0.6,0,0,0,0,4,4.1000000000000005,0,0,0,0,0.26,75.96000000000001,148.23,0.9400000000000001,0.24,892,1.4000000000000001,171,3,0.0000,0.0000 +2012,11,17,5,30,7.7,1.34,0.048,0.6,0,0,0,0,4,4.3,0,0,0,0,0.259,79.15,158.94,0.9400000000000001,0.24,891,1.4000000000000001,175,3,0.0000,0.0000 +2012,11,17,6,30,7.2,1.34,0.051000000000000004,0.6,0,0,0,0,4,4.4,0,0,0,0,0.258,82.68,164.82,0.9400000000000001,0.24,891,1.4000000000000001,180,2.8000000000000003,0.0000,0.0000 +2012,11,17,7,30,6.4,1.33,0.053,0.6,0,0,0,0,4,4.5,0,0,0,0,0.258,87.76,160.70000000000002,0.9400000000000001,0.24,891,1.4000000000000001,185,2.6,0.0000,0.0000 +2012,11,17,8,30,5.5,1.31,0.055,0.6,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.257,93.60000000000001,150.55,0.9400000000000001,0.24,891,1.3,188,2.3000000000000003,0.0000,0.0000 +2012,11,17,9,30,4.6000000000000005,1.3,0.056,0.6,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.257,99.89,138.67000000000002,0.9400000000000001,0.24,891,1.3,190,1.8,0.0000,0.0000 +2012,11,17,10,30,4,1.3,0.056,0.6,0,0,0,0,0,4,0,0,0,0,0.258,100,126.34,0.9400000000000001,0.24,891,1.2000000000000002,192,1.6,0.0000,0.0000 +2012,11,17,11,30,3.7,1.29,0.057,0.6,0,0,0,0,1,3.7,0,0,0,0,0.259,100,113.97,0.9500000000000001,0.24,891,1.2000000000000002,193,1.6,0.0000,0.0000 +2012,11,17,12,30,3.6,1.28,0.061,0.6,0,0,0,0,1,3.6,0,0,0,0,0.259,100,101.83,0.96,0.24,891,1.2000000000000002,194,1.7000000000000002,0.0000,0.0000 +2012,11,17,13,30,4.9,1.27,0.07100000000000001,0.6,0,0,0,0,0,4.9,0,0,0,0,0.26,100,89.68,0.96,0.24,891,1.1,194,2.4000000000000004,0.0000,0.0000 +2012,11,17,14,30,7.2,1.26,0.081,0.6,52,560,158,0,3,5.1000000000000005,80,1,0,80,0.261,86.76,79.09,0.97,0.24,891,1.1,193,3.3000000000000003,4.5794,3.4948 +2012,11,17,15,30,10,1.26,0.08700000000000001,0.6,77,750,342,7,4,5.9,115,0,7,115,0.261,75.47,69.3,0.97,0.24,891,1.1,197,3.9000000000000004,13.2114,10.2421 +2012,11,17,16,30,12.9,1.34,0.076,0.6,85,853,495,0,8,6.4,236,301,0,381,0.262,64.48,61.22,0.96,0.24,891,1.2000000000000002,199,4,27.6214,21.5608 +2012,11,17,17,30,15.4,1.3900000000000001,0.065,0.6,86,909,599,0,4,5.9,348,165,0,441,0.262,53.19,55.660000000000004,0.9500000000000001,0.24,890,1.2000000000000002,194,3.6,34.1712,26.7473 +2012,11,17,18,30,17.3,1.3900000000000001,0.047,0.6,80,943,642,0,7,5.300000000000001,220,502,0,519,0.262,45.28,53.42,0.9500000000000001,0.24,890,1.2000000000000002,189,3.5,36.6822,28.7369 +2012,11,17,19,30,18.6,1.4000000000000001,0.046,0.6,78,932,613,0,8,4.800000000000001,221,506,0,512,0.262,40.29,54.93,0.9500000000000001,0.24,889,1.3,186,3.6,34.9057,27.3298 +2012,11,17,20,30,19.200000000000003,1.4000000000000001,0.047,0.6,74,898,524,0,7,4.5,183,485,0,426,0.262,37.92,59.9,0.9500000000000001,0.24,888,1.3,186,3.8000000000000003,28.9928,22.6480 +2012,11,17,21,30,18.900000000000002,1.3900000000000001,0.05,0.6,66,821,379,0,7,4.4,204,145,0,259,0.261,38.31,67.55,0.9500000000000001,0.24,888,1.3,185,3.8000000000000003,18.8998,14.6790 +2012,11,17,22,30,17,1.3800000000000001,0.053,0.6,50,657,197,0,8,4.4,122,150,0,156,0.26,43.28,77.06,0.9500000000000001,0.24,888,1.4000000000000001,179,3,9.7280,7.4495 +2012,11,17,23,30,14.3,1.3800000000000001,0.054,0.6,17,232,27,7,4,4.7,13,0,7,13,0.26,52.33,87.66,0.9500000000000001,0.24,888,1.4000000000000001,172,2.5,0.0000,0.0000 +2012,11,18,0,30,13,1.3800000000000001,0.055,0.6,0,0,0,0,7,4.9,0,0,0,0,0.259,57.9,99.48,0.9500000000000001,0.24,888,1.4000000000000001,170,3.1,0.0000,0.0000 +2012,11,18,1,30,12.600000000000001,1.3800000000000001,0.057,0.6,0,0,0,0,7,5.2,0,0,0,0,0.259,60.800000000000004,111.56,0.9500000000000001,0.24,888,1.5,171,3.5,0.0000,0.0000 +2012,11,18,2,30,12.100000000000001,1.37,0.058,0.6,0,0,0,0,7,5.5,0,0,0,0,0.258,64.03,123.9,0.9500000000000001,0.24,888,1.5,173,3.4000000000000004,0.0000,0.0000 +2012,11,18,3,30,11.5,1.36,0.061,0.6,0,0,0,0,7,5.7,0,0,0,0,0.257,67.52,136.28,0.96,0.24,888,1.6,177,3.3000000000000003,0.0000,0.0000 +2012,11,18,4,30,11,1.35,0.065,0.6,0,0,0,0,7,5.800000000000001,0,0,0,0,0.256,70.46000000000001,148.33,0.96,0.24,888,1.7000000000000002,182,3.3000000000000003,0.0000,0.0000 +2012,11,18,5,30,10.600000000000001,1.35,0.069,0.6,0,0,0,0,7,5.9,0,0,0,0,0.255,72.71000000000001,159.09,0.96,0.24,888,1.8,186,3.3000000000000003,0.0000,0.0000 +2012,11,18,6,30,10.100000000000001,1.35,0.069,0.6,0,0,0,0,1,5.9,0,0,0,0,0.254,75.03,165.06,0.96,0.24,888,1.8,189,3.1,0.0000,0.0000 +2012,11,18,7,30,9.600000000000001,1.35,0.067,0.6,0,0,0,0,4,5.800000000000001,0,0,0,0,0.253,76.94,160.93,0.96,0.24,887,1.8,190,2.9000000000000004,0.0000,0.0000 +2012,11,18,8,30,9.200000000000001,1.35,0.066,0.6,0,0,0,0,7,5.6000000000000005,0,0,0,0,0.252,78.44,150.73,0.96,0.24,887,1.9000000000000001,194,2.6,0.0000,0.0000 +2012,11,18,9,30,8.9,1.34,0.065,0.6,0,0,0,0,7,5.6000000000000005,0,0,0,0,0.251,79.8,138.84,0.96,0.24,887,2,197,2.2,0.0000,0.0000 +2012,11,18,10,30,8.700000000000001,1.33,0.064,0.6,0,0,0,0,7,5.6000000000000005,0,0,0,0,0.251,81.05,126.5,0.96,0.24,887,2.1,198,1.9000000000000001,0.0000,0.0000 +2012,11,18,11,30,8.6,1.32,0.064,0.6,0,0,0,0,7,5.7,0,0,0,0,0.252,81.94,114.14,0.96,0.24,887,2.2,201,1.8,0.0000,0.0000 +2012,11,18,12,30,8.8,1.3,0.065,0.6,0,0,0,0,7,5.800000000000001,0,0,0,0,0.252,81.24,102,0.96,0.24,887,2.2,210,2,0.0000,0.0000 +2012,11,18,13,30,9.4,1.31,0.065,0.6,0,0,0,7,7,5.9,0,0,7,0,0.253,78.73,89.85000000000001,0.96,0.24,887,2.2,223,2.6,0.0000,0.0000 +2012,11,18,14,30,10.8,1.32,0.066,0.6,47,552,150,7,7,6,41,1,7,42,0.253,72.32000000000001,79.29,0.96,0.24,887,2.2,234,3.1,3.8146,2.9103 +2012,11,18,15,30,12.9,1.31,0.068,0.6,68,742,328,0,7,6.2,116,10,0,119,0.253,63.83,69.52,0.96,0.24,887,2.2,240,3.3000000000000003,5.9239,4.5914 +2012,11,18,16,30,15.3,1.28,0.07100000000000001,0.6,81,827,477,0,8,6.5,241,108,0,293,0.252,55.61,61.45,0.96,0.24,887,2.2,246,3.8000000000000003,20.8508,16.2735 +2012,11,18,17,30,17.2,1.27,0.069,0.6,87,870,575,0,8,6.5,260,136,0,336,0.251,49.33,55.9,0.97,0.24,887,2.3000000000000003,253,4.4,24.8787,19.4717 +2012,11,18,18,30,18,1.27,0.089,0.6,98,863,610,0,7,6.7,312,164,0,409,0.25,47.660000000000004,53.660000000000004,0.97,0.24,887,2.3000000000000003,257,4.6000000000000005,29.5778,23.1693 +2012,11,18,19,30,18.3,1.27,0.085,0.6,95,858,585,0,7,7.1000000000000005,240,46,0,266,0.249,47.870000000000005,55.15,0.97,0.24,886,2.3000000000000003,255,4.5,28.9833,22.6908 +2012,11,18,20,30,18.400000000000002,1.28,0.083,0.6,88,825,500,0,8,7.300000000000001,242,200,0,342,0.249,48.370000000000005,60.08,0.97,0.24,886,2.2,248,4.5,23.4996,18.3550 +2012,11,18,21,30,18.3,1.3,0.097,0.6,81,730,358,0,4,7.300000000000001,111,0,0,112,0.249,48.63,67.7,0.97,0.24,886,2.1,239,4.4,13.5419,10.5159 +2012,11,18,22,30,17.1,1.33,0.084,0.6,57,582,186,0,4,7.1000000000000005,113,9,0,115,0.25,51.81,77.19,0.96,0.24,886,2,231,3.8000000000000003,7.5061,5.7466 +2012,11,18,23,30,14.9,1.34,0.073,0.6,17,180,24,7,7,7,15,1,7,15,0.251,59.19,87.76,0.96,0.24,886,1.8,225,2.8000000000000003,0.0000,0.0000 +2012,11,19,0,30,13.4,1.35,0.062,0.6,0,0,0,0,7,7.1000000000000005,0,0,0,0,0.252,65.45,99.57000000000001,0.96,0.24,887,1.6,222,2.8000000000000003,0.0000,0.0000 +2012,11,19,1,30,12.700000000000001,1.36,0.052000000000000005,0.6,0,0,0,0,7,7.2,0,0,0,0,0.252,69.09,111.63,0.9500000000000001,0.24,887,1.5,220,3.1,0.0000,0.0000 +2012,11,19,2,30,11.9,1.35,0.045,0.6,0,0,0,0,7,7.300000000000001,0,0,0,0,0.253,73.64,123.97,0.9500000000000001,0.24,887,1.4000000000000001,220,3.3000000000000003,0.0000,0.0000 +2012,11,19,3,30,11.200000000000001,1.32,0.041,0.6,0,0,0,0,7,7.6000000000000005,0,0,0,0,0.254,78.48,136.35,0.9400000000000001,0.24,888,1.3,221,3.3000000000000003,0.0000,0.0000 +2012,11,19,4,30,10.4,1.3,0.037,0.6,0,0,0,0,4,7.800000000000001,0,0,0,0,0.254,84.15,148.42000000000002,0.9400000000000001,0.24,888,1.2000000000000002,225,3.2,0.0000,0.0000 +2012,11,19,5,30,9.700000000000001,1.26,0.034,0.6,0,0,0,0,1,7.9,0,0,0,0,0.254,88.76,159.23,0.9400000000000001,0.24,888,1.1,231,3.1,0.0000,0.0000 +2012,11,19,6,30,9,1.23,0.031,0.6,0,0,0,0,0,7.800000000000001,0,0,0,0,0.255,92.01,165.28,0.9400000000000001,0.24,888,1,239,3,0.0000,0.0000 +2012,11,19,7,30,8.4,1.2,0.028,0.6,0,0,0,0,1,7.4,0,0,0,0,0.255,93.21000000000001,161.15,0.93,0.24,888,0.9,249,2.9000000000000004,0.0000,0.0000 +2012,11,19,8,30,7.9,1.19,0.027,0.6,0,0,0,0,1,6.800000000000001,0,0,0,0,0.255,92.83,150.91,0.93,0.24,888,0.9,260,2.9000000000000004,0.0000,0.0000 +2012,11,19,9,30,7.1000000000000005,1.19,0.025,0.6,0,0,0,0,0,6.2,0,0,0,0,0.255,94.26,139,0.92,0.24,888,0.9,270,2.7,0.0000,0.0000 +2012,11,19,10,30,6.300000000000001,1.19,0.023,0.6,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.256,95.36,126.65,0.91,0.24,888,0.8,279,2.6,0.0000,0.0000 +2012,11,19,11,30,5.800000000000001,1.18,0.023,0.6,0,0,0,0,7,4.7,0,0,0,0,0.256,92.82000000000001,114.3,0.91,0.24,888,0.8,289,2.7,0.0000,0.0000 +2012,11,19,12,30,5.5,1.17,0.024,0.6,0,0,0,0,4,3.4000000000000004,0,0,0,0,0.256,86.11,102.17,0.91,0.24,889,0.7000000000000001,300,2.8000000000000003,0.0000,0.0000 +2012,11,19,13,30,6.1000000000000005,1.17,0.022,0.6,0,0,0,7,7,1.6,0,0,7,0,0.256,72.65,89.99,0.91,0.24,889,0.6000000000000001,310,3.3000000000000003,0.0000,0.0000 +2012,11,19,14,30,8.3,1.17,0.021,0.6,37,704,165,7,7,-0.2,94,32,7,100,0.256,55.11,79.48,0.91,0.24,889,0.6000000000000001,315,3.9000000000000004,2.0021,1.5270 +2012,11,19,15,30,11.700000000000001,1.17,0.021,0.6,51,877,354,0,7,-1,173,317,0,283,0.256,41.43,69.73,0.9,0.24,890,0.6000000000000001,311,3.7,6.1181,4.7406 +2012,11,19,16,30,15.600000000000001,1.18,0.021,0.6,58,961,515,0,7,-1.1,179,552,0,441,0.257,31.92,61.68,0.9,0.24,890,0.5,304,3.7,16.0118,12.4951 +2012,11,19,17,30,18.7,1.18,0.021,0.6,63,997,619,7,2,-2.3000000000000003,237,649,7,598,0.257,23.96,56.13,0.9,0.24,889,0.5,294,3.8000000000000003,18.9334,14.8170 +2012,11,19,18,30,20.200000000000003,1.16,0.02,0.6,63,1011,659,0,0,-3.8000000000000003,63,1011,0,659,0.257,19.490000000000002,53.89,0.9,0.24,888,0.5,285,3.8000000000000003,23.2847,18.2382 +2012,11,19,19,30,20.900000000000002,1.1500000000000001,0.019,0.6,62,1004,633,0,0,-4.7,62,1004,0,633,0.257,17.45,55.36,0.9,0.24,888,0.5,285,3.8000000000000003,15.0423,11.7756 +2012,11,19,20,30,21,1.1300000000000001,0.019,0.6,58,975,542,0,0,-5.300000000000001,58,975,0,542,0.257,16.66,60.26,0.9,0.24,887,0.5,289,3.7,18.8460,14.7187 +2012,11,19,21,30,20.400000000000002,1.17,0.02,0.6,52,909,395,0,0,-5.6000000000000005,52,909,0,395,0.257,16.91,67.85,0.9,0.24,887,0.5,297,3.1,5.8487,4.5411 +2012,11,19,22,30,17.400000000000002,1.16,0.02,0.6,40,767,209,0,0,-4.800000000000001,40,767,0,209,0.258,21.52,77.31,0.9,0.24,888,0.5,307,1.9000000000000001,5.5287,4.2317 +2012,11,19,23,30,13.5,1.1500000000000001,0.019,0.6,15,351,28,0,0,-2,15,351,0,28,0.26,34.230000000000004,87.85000000000001,0.89,0.24,888,0.5,318,1.3,0.0000,0.0000 +2012,11,20,0,30,11.600000000000001,1.1400000000000001,0.018000000000000002,0.6,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.261,34.87,99.64,0.89,0.24,889,0.5,330,1.4000000000000001,0.0000,0.0000 +2012,11,20,1,30,10.700000000000001,1.12,0.018000000000000002,0.6,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.263,36.04,111.7,0.89,0.24,889,0.5,340,1.4000000000000001,0.0000,0.0000 +2012,11,20,2,30,10,1.11,0.017,0.6,0,0,0,0,0,-4,0,0,0,0,0.264,37.06,124.03,0.89,0.24,890,0.5,347,1.4000000000000001,0.0000,0.0000 +2012,11,20,3,30,9.5,1.1,0.017,0.6,0,0,0,0,0,-4.2,0,0,0,0,0.265,37.77,136.41,0.88,0.24,890,0.5,352,1.3,0.0000,0.0000 +2012,11,20,4,30,8.8,1.1,0.016,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.265,39.19,148.5,0.88,0.24,890,0.5,353,1.3,0.0000,0.0000 +2012,11,20,5,30,7.9,1.12,0.015,0.6,0,0,0,0,0,-4.4,0,0,0,0,0.265,41.39,159.36,0.88,0.24,890,0.5,348,1.3,0.0000,0.0000 +2012,11,20,6,30,6.9,1.1500000000000001,0.015,0.6,0,0,0,0,0,-4.4,0,0,0,0,0.265,44.39,165.5,0.88,0.24,890,0.5,342,1.4000000000000001,0.0000,0.0000 +2012,11,20,7,30,6.2,1.18,0.016,0.6,0,0,0,0,0,-4.4,0,0,0,0,0.264,46.76,161.36,0.88,0.24,890,0.5,339,1.4000000000000001,0.0000,0.0000 +2012,11,20,8,30,5.6000000000000005,1.16,0.016,0.6,0,0,0,0,0,-4.4,0,0,0,0,0.263,48.6,151.09,0.88,0.24,890,0.5,337,1.4000000000000001,0.0000,0.0000 +2012,11,20,9,30,5.1000000000000005,1.1400000000000001,0.015,0.6,0,0,0,0,0,-4.5,0,0,0,0,0.261,49.9,139.16,0.88,0.24,890,0.5,334,1.5,0.0000,0.0000 +2012,11,20,10,30,4.6000000000000005,1.1400000000000001,0.016,0.6,0,0,0,0,0,-4.7,0,0,0,0,0.259,50.99,126.81,0.88,0.24,890,0.5,333,1.5,0.0000,0.0000 +2012,11,20,11,30,4.3,1.1300000000000001,0.016,0.6,0,0,0,0,0,-4.9,0,0,0,0,0.258,51.370000000000005,114.46000000000001,0.88,0.24,891,0.5,337,1.5,0.0000,0.0000 +2012,11,20,12,30,4.3,1.1300000000000001,0.016,0.6,0,0,0,0,0,-5,0,0,0,0,0.256,50.94,102.34,0.89,0.24,891,0.5,343,1.5,0.0000,0.0000 +2012,11,20,13,30,5.300000000000001,1.1300000000000001,0.016,0.6,0,0,0,0,0,-4.9,0,0,0,0,0.255,47.64,90.14,0.89,0.24,891,0.5,348,1.3,0.0000,0.0000 +2012,11,20,14,30,8.4,1.1300000000000001,0.016,0.6,34,720,163,7,4,-4.3,103,60,7,114,0.253,40.46,79.67,0.89,0.24,892,0.5,352,1.6,4.7663,3.6344 +2012,11,20,15,30,12.100000000000001,1.1300000000000001,0.015,0.6,46,894,353,0,1,-4,46,894,0,353,0.253,32.230000000000004,69.94,0.89,0.24,892,0.5,182,1.7000000000000002,14.5228,11.2501 +2012,11,20,16,30,16.1,1.1400000000000001,0.015,0.6,53,969,509,0,1,-3.7,53,969,0,509,0.252,25.42,61.9,0.89,0.24,892,0.5,55,1.4000000000000001,24.0647,18.7765 +2012,11,20,17,30,19.700000000000003,1.16,0.015,0.6,57,1004,613,0,0,-4.4,57,1004,0,613,0.252,19.26,56.370000000000005,0.89,0.24,891,0.5,112,1.6,33.6592,26.3388 +2012,11,20,18,30,21.1,1.16,0.015,0.6,58,1016,654,0,0,-5.300000000000001,58,1016,0,654,0.253,16.46,54.120000000000005,0.89,0.24,890,0.5,138,2,37.4798,29.3542 +2012,11,20,19,30,21.700000000000003,1.18,0.015,0.6,57,1001,623,0,0,-5.800000000000001,57,1001,0,623,0.253,15.35,55.56,0.89,0.24,890,0.6000000000000001,159,2.4000000000000004,35.7611,27.9924 +2012,11,20,20,30,21.6,1.21,0.015,0.6,54,972,533,0,0,-6.300000000000001,54,972,0,533,0.253,14.9,60.44,0.89,0.24,889,0.6000000000000001,168,2.6,29.8353,23.2989 +2012,11,20,21,30,20.8,1.22,0.016,0.6,49,907,389,0,0,-6.6000000000000005,49,907,0,389,0.253,15.200000000000001,67.99,0.9,0.24,889,0.6000000000000001,168,2.4000000000000004,20.6014,15.9930 +2012,11,20,22,30,17.5,1.23,0.016,0.6,38,766,205,0,0,-5.6000000000000005,38,766,0,205,0.253,20.13,77.42,0.9,0.24,889,0.6000000000000001,162,1.6,10.0402,7.6832 +2012,11,20,23,30,13.3,1.24,0.017,0.6,14,348,27,0,0,-2.4000000000000004,14,348,0,27,0.253,33.5,87.93,0.9,0.24,889,0.6000000000000001,156,1.4000000000000001,0.0000,0.0000 +2012,11,21,0,30,11.200000000000001,1.24,0.017,0.6,0,0,0,0,1,-3.9000000000000004,0,0,0,0,0.253,34.56,99.72,0.9,0.24,890,0.6000000000000001,156,1.6,0.0000,0.0000 +2012,11,21,1,30,10.3,1.25,0.018000000000000002,0.6,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.252,37.04,111.76,0.9,0.24,890,0.6000000000000001,158,1.8,0.0000,0.0000 +2012,11,21,2,30,9.5,1.26,0.018000000000000002,0.6,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.252,40.36,124.08,0.9,0.24,890,0.6000000000000001,161,1.9000000000000001,0.0000,0.0000 +2012,11,21,3,30,8.8,1.26,0.019,0.6,0,0,0,0,4,-2.6,0,0,0,0,0.252,44.550000000000004,136.47,0.9,0.24,891,0.6000000000000001,164,2.1,0.0000,0.0000 +2012,11,21,4,30,8.1,1.27,0.019,0.6,0,0,0,0,1,-1.8,0,0,0,0,0.252,49.83,148.57,0.91,0.24,891,0.6000000000000001,167,2.1,0.0000,0.0000 +2012,11,21,5,30,7.300000000000001,1.27,0.02,0.6,0,0,0,0,8,-1,0,0,0,0,0.252,55.72,159.48,0.91,0.24,891,0.6000000000000001,173,2,0.0000,0.0000 +2012,11,21,6,30,6.4,1.27,0.02,0.6,0,0,0,0,4,-0.5,0,0,0,0,0.252,61.38,165.72,0.91,0.24,890,0.5,178,1.9000000000000001,0.0000,0.0000 +2012,11,21,7,30,5.5,1.28,0.021,0.6,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.252,66.29,161.57,0.91,0.24,890,0.5,185,1.7000000000000002,0.0000,0.0000 +2012,11,21,8,30,5,1.28,0.022,0.6,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.251,68.35000000000001,151.26,0.91,0.24,890,0.5,192,1.6,0.0000,0.0000 +2012,11,21,9,30,4.7,1.28,0.023,0.6,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.251,68.2,139.32,0.91,0.24,890,0.5,199,1.6,0.0000,0.0000 +2012,11,21,10,30,4.9,1.3,0.024,0.6,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.25,64.54,126.97,0.91,0.24,890,0.6000000000000001,202,1.5,0.0000,0.0000 +2012,11,21,11,30,5.1000000000000005,1.31,0.026000000000000002,0.6,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.251,60.730000000000004,114.62,0.91,0.24,890,0.6000000000000001,203,1.4000000000000001,0.0000,0.0000 +2012,11,21,12,30,5.2,1.33,0.028,0.6,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.251,57.92,102.5,0.92,0.24,890,0.7000000000000001,204,1.4000000000000001,0.0000,0.0000 +2012,11,21,13,30,6.300000000000001,1.36,0.031,0.6,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.252,52.11,90.85000000000001,0.92,0.24,890,0.8,207,1.4000000000000001,0.0000,0.0000 +2012,11,21,14,30,9.200000000000001,1.37,0.036000000000000004,0.6,40,636,152,7,8,-2.9000000000000004,92,43,7,100,0.252,42.52,79.86,0.93,0.24,890,1,208,2.2,5.4337,4.1423 +2012,11,21,15,30,12.3,1.36,0.043000000000000003,0.6,59,801,332,0,7,-3,103,6,0,106,0.252,34.410000000000004,70.14,0.9400000000000001,0.24,890,1.3,204,2.8000000000000003,18.0811,14.0029 +2012,11,21,16,30,15.600000000000001,1.36,0.051000000000000004,0.6,73,866,478,0,7,-2.7,200,384,0,380,0.251,28.27,62.120000000000005,0.9500000000000001,0.24,890,1.6,199,3.5,27.7364,21.6383 +2012,11,21,17,30,19.200000000000003,1.35,0.059000000000000004,0.6,82,892,573,0,7,0.1,266,339,0,453,0.25,27.650000000000002,56.59,0.9500000000000001,0.24,889,1.8,200,4.9,34.4629,26.9649 +2012,11,21,18,30,21.700000000000003,1.34,0.061,0.6,85,899,609,0,8,3.6,182,598,0,530,0.249,30.46,54.34,0.96,0.24,888,2,201,5.7,37.1576,29.0995 +2012,11,21,19,30,22.5,1.34,0.074,0.6,89,870,579,0,8,5.4,204,534,0,504,0.247,32.96,55.76,0.96,0.24,887,2.2,201,5.9,35.1628,27.5219 +2012,11,21,20,30,22.3,1.32,0.089,0.6,90,813,488,0,8,6.7,219,348,0,390,0.246,36.58,60.61,0.96,0.24,886,2.3000000000000003,202,5.9,29.3084,22.8851 +2012,11,21,21,30,21.200000000000003,1.29,0.063,0.6,69,764,353,0,8,7.7,176,35,0,189,0.246,41.82,68.13,0.9500000000000001,0.24,886,2.4000000000000004,203,5.5,20.2648,15.7293 +2012,11,21,22,30,19.400000000000002,1.29,0.069,0.6,53,586,179,0,7,8.3,96,332,0,168,0.246,48.78,77.52,0.96,0.24,886,2.5,203,4.2,9.8415,7.5296 +2012,11,21,23,30,17,1.3,0.07200000000000001,0.6,16,153,21,0,0,8.8,16,153,0,21,0.246,58.33,88.02,0.96,0.24,886,2.5,202,3,0.0000,0.0000 +2012,11,22,0,30,15.5,1.3,0.077,0.6,0,0,0,0,7,9.1,0,0,0,0,0.247,65.54,99.78,0.96,0.24,886,2.4000000000000004,200,2.9000000000000004,0.0000,0.0000 +2012,11,22,1,30,14.700000000000001,1.32,0.081,0.6,0,0,0,0,7,9.4,0,0,0,0,0.247,70.65,111.81,0.96,0.24,886,2.4000000000000004,199,3.1,0.0000,0.0000 +2012,11,22,2,30,13.9,1.37,0.08,0.6,0,0,0,0,1,9.8,0,0,0,0,0.248,76.16,124.13000000000001,0.96,0.24,886,2.3000000000000003,200,3.3000000000000003,0.0000,0.0000 +2012,11,22,3,30,13.200000000000001,1.42,0.077,0.6,0,0,0,0,1,10.100000000000001,0,0,0,0,0.248,81.37,136.52,0.96,0.24,886,2.3000000000000003,204,3.5,0.0000,0.0000 +2012,11,22,4,30,12.700000000000001,1.43,0.081,0.6,0,0,0,0,1,10.3,0,0,0,0,0.248,85.38,148.64000000000001,0.96,0.24,886,2.3000000000000003,211,3.7,0.0000,0.0000 +2012,11,22,5,30,12.3,1.4000000000000001,0.092,0.6,0,0,0,0,0,10.5,0,0,0,0,0.248,88.51,159.6,0.96,0.24,885,2.4000000000000004,218,3.7,0.0000,0.0000 +2012,11,22,6,30,12,1.37,0.107,0.6,0,0,0,0,0,10.600000000000001,0,0,0,0,0.249,91.43,165.93,0.97,0.24,885,2.4000000000000004,223,3.6,0.0000,0.0000 +2012,11,22,7,30,11.8,1.36,0.109,0.6,0,0,0,0,1,10.9,0,0,0,0,0.249,94.29,161.78,0.97,0.24,885,2.3000000000000003,227,3.4000000000000004,0.0000,0.0000 +2012,11,22,8,30,11.5,1.36,0.097,0.6,0,0,0,0,0,11.200000000000001,0,0,0,0,0.249,97.82000000000001,151.44,0.97,0.24,885,2.2,230,3,0.0000,0.0000 +2012,11,22,9,30,11.100000000000001,1.36,0.084,0.6,0,0,0,0,0,11.100000000000001,0,0,0,0,0.249,100,139.48,0.96,0.24,884,2,235,2.8000000000000003,0.0000,0.0000 +2012,11,22,10,30,10.700000000000001,1.36,0.075,0.6,0,0,0,0,0,10.700000000000001,0,0,0,0,0.25,100,127.12,0.96,0.24,884,1.8,240,2.7,0.0000,0.0000 +2012,11,22,11,30,10.3,1.36,0.066,0.6,0,0,0,0,0,10.3,0,0,0,0,0.25,100,114.77,0.96,0.24,884,1.6,245,2.8000000000000003,0.0000,0.0000 +2012,11,22,12,30,9.9,1.35,0.055,0.6,0,0,0,0,0,9.9,0,0,0,0,0.251,100,102.67,0.9500000000000001,0.24,885,1.3,251,3,0.0000,0.0000 +2012,11,22,13,30,9.8,1.35,0.043000000000000003,0.6,0,0,0,0,1,9.600000000000001,0,0,0,0,0.252,98.52,91.03,0.9400000000000001,0.24,885,1.1,259,3.5,0.0000,0.0000 +2012,11,22,14,30,11.100000000000001,1.37,0.033,0.6,39,643,150,0,1,8.700000000000001,39,643,0,150,0.252,84.89,80.05,0.93,0.24,885,0.9,266,3.9000000000000004,4.7672,3.6334 +2012,11,22,15,30,14.200000000000001,1.4000000000000001,0.025,0.6,52,858,341,0,3,7.6000000000000005,197,155,0,249,0.253,64.38,70.35000000000001,0.92,0.24,886,0.7000000000000001,272,4.1000000000000005,5.4197,4.1963 +2012,11,22,16,30,18.3,1.4000000000000001,0.02,0.6,57,953,499,0,1,5.1000000000000005,57,953,0,499,0.254,41.74,62.34,0.91,0.24,885,0.6000000000000001,283,4.9,20.6776,16.1291 +2012,11,22,17,30,21.3,1.37,0.018000000000000002,0.6,59,1000,607,0,1,-2.3000000000000003,59,1000,0,607,0.255,20.37,56.81,0.9,0.24,885,0.5,291,5.4,25.4399,19.9031 +2012,11,22,18,30,22.5,1.36,0.019,0.6,62,1011,648,0,0,-6.1000000000000005,62,1011,0,648,0.256,14.23,54.550000000000004,0.89,0.24,884,0.5,293,4.9,30.0829,23.5570 +2012,11,22,19,30,23.1,1.34,0.02,0.6,61,1002,623,0,0,-7.7,61,1002,0,623,0.257,12.200000000000001,55.95,0.89,0.24,884,0.5,297,4.4,28.4192,22.2418 +2012,11,22,20,30,23.200000000000003,1.33,0.021,0.6,59,963,529,0,0,-8.4,59,963,0,529,0.258,11.42,60.77,0.89,0.24,884,0.6000000000000001,306,3.8000000000000003,21.4232,16.7264 +2012,11,22,21,30,22.400000000000002,1.32,0.021,0.6,52,897,384,0,0,-8.700000000000001,52,897,0,384,0.258,11.790000000000001,68.26,0.89,0.24,884,0.6000000000000001,321,3,9.8343,7.6322 +2012,11,22,22,30,19.1,1.33,0.023,0.6,40,739,199,0,0,-6.9,40,739,0,199,0.258,16.490000000000002,77.62,0.89,0.24,885,0.7000000000000001,167,2,8.0604,6.1658 +2012,11,22,23,30,15,1.34,0.024,0.6,14,306,24,0,0,-3.8000000000000003,14,306,0,24,0.259,27.23,88.09,0.89,0.24,886,0.7000000000000001,15,1.8,0.0000,0.0000 +2012,11,23,0,30,13.4,1.34,0.026000000000000002,0.6,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.26,27.82,99.84,0.89,0.24,887,0.7000000000000001,32,2.8000000000000003,0.0000,0.0000 +2012,11,23,1,30,12.9,1.33,0.028,0.6,0,0,0,0,7,-4.7,0,0,0,0,0.26,29.03,111.86,0.89,0.24,888,0.8,39,3.9000000000000004,0.0000,0.0000 +2012,11,23,2,30,12.100000000000001,1.3,0.028,0.6,0,0,0,0,7,-3.7,0,0,0,0,0.26,32.9,124.18,0.89,0.24,890,0.8,40,4.5,0.0000,0.0000 +2012,11,23,3,30,11,1.25,0.028,0.6,0,0,0,0,7,-2.5,0,0,0,0,0.26,38.78,136.57,0.89,0.24,891,0.9,41,4.9,0.0000,0.0000 +2012,11,23,4,30,9.9,1.22,0.027,0.6,0,0,0,0,3,-1.5,0,0,0,0,0.26,45.02,148.70000000000002,0.89,0.24,892,0.9,41,5,0.0000,0.0000 +2012,11,23,5,30,8.6,1.21,0.026000000000000002,0.6,0,0,0,0,0,-0.9,0,0,0,0,0.261,51.300000000000004,159.70000000000002,0.9,0.24,892,0.9,41,5.2,0.0000,0.0000 +2012,11,23,6,30,7.300000000000001,1.21,0.025,0.6,0,0,0,0,0,-0.9,0,0,0,0,0.261,55.86,166.13,0.9,0.24,893,0.8,39,5.2,0.0000,0.0000 +2012,11,23,7,30,6.2,1.21,0.024,0.6,0,0,0,0,0,-1.6,0,0,0,0,0.263,57.370000000000005,161.99,0.9,0.24,894,0.8,36,5,0.0000,0.0000 +2012,11,23,8,30,5.2,1.2,0.023,0.6,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.263,57.84,151.61,0.89,0.24,895,0.8,33,4.5,0.0000,0.0000 +2012,11,23,9,30,4.5,1.19,0.022,0.6,0,0,0,0,0,-3.1,0,0,0,0,0.264,57.660000000000004,139.64000000000001,0.89,0.24,895,0.7000000000000001,31,4,0.0000,0.0000 +2012,11,23,10,30,3.8000000000000003,1.17,0.022,0.6,0,0,0,0,0,-3.6,0,0,0,0,0.264,58.47,127.28,0.9,0.24,896,0.7000000000000001,30,3.6,0.0000,0.0000 +2012,11,23,11,30,3.1,1.1500000000000001,0.021,0.6,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.264,59.86,114.93,0.9,0.24,897,0.7000000000000001,29,3.3000000000000003,0.0000,0.0000 +2012,11,23,12,30,2.5,1.1300000000000001,0.021,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.265,60.980000000000004,102.83,0.9,0.24,897,0.7000000000000001,29,3,0.0000,0.0000 +2012,11,23,13,30,2.7,1.12,0.021,0.6,0,0,0,0,1,-4.6000000000000005,0,0,0,0,0.266,58.71,91.2,0.9,0.24,898,0.6000000000000001,27,3.1,0.0000,0.0000 +2012,11,23,14,30,4.6000000000000005,1.12,0.02,0.6,35,683,151,0,1,-4.9,35,683,0,151,0.267,50.120000000000005,80.24,0.9,0.24,899,0.6000000000000001,37,4,0.0000,0.0000 +2012,11,23,15,30,7.1000000000000005,1.1300000000000001,0.02,0.6,49,868,338,0,1,-6.2,49,868,0,338,0.268,38.14,70.54,0.9,0.24,899,0.6000000000000001,55,4.7,12.7072,9.8360 +2012,11,23,16,30,9.3,1.1300000000000001,0.02,0.6,57,948,494,0,1,-8.5,57,948,0,494,0.269,27.63,62.550000000000004,0.9,0.24,899,0.6000000000000001,66,4.6000000000000005,27.1140,21.1466 +2012,11,23,17,30,11,1.1400000000000001,0.021,0.6,62,984,598,0,0,-9.9,62,984,0,598,0.268,22.14,57.03,0.9,0.24,899,0.6000000000000001,72,3.8000000000000003,34.0507,26.6372 +2012,11,23,18,30,12.3,1.1400000000000001,0.02,0.6,63,998,639,0,0,-10.5,63,998,0,639,0.267,19.26,54.76,0.9,0.24,898,0.6000000000000001,77,3.1,36.7457,28.7723 +2012,11,23,19,30,13.100000000000001,1.1500000000000001,0.02,0.6,62,984,610,0,0,-10.8,62,984,0,610,0.266,17.830000000000002,56.14,0.9,0.24,898,0.7000000000000001,83,2.5,35.0971,27.4660 +2012,11,23,20,30,13.4,1.17,0.02,0.6,58,954,522,0,0,-10.9,58,954,0,522,0.266,17.400000000000002,60.92,0.9,0.24,897,0.7000000000000001,89,2.1,29.0305,22.6638 +2012,11,23,21,30,13,1.1300000000000001,0.018000000000000002,0.6,50,890,378,0,0,-10.8,50,890,0,378,0.266,18.01,68.38,0.89,0.24,897,0.7000000000000001,95,1.8,19.9589,15.4874 +2012,11,23,22,30,11.100000000000001,1.1500000000000001,0.018000000000000002,0.6,38,744,197,0,0,-10.600000000000001,38,744,0,197,0.267,20.73,77.72,0.89,0.24,897,0.7000000000000001,101,1.4000000000000001,9.5423,7.2980 +2012,11,23,23,30,8.200000000000001,1.17,0.018000000000000002,0.6,13,318,24,0,0,-7.4,13,318,0,24,0.269,32.36,88.14,0.89,0.24,897,0.7000000000000001,106,1.1,0.0000,0.0000 +2012,11,24,0,30,6.1000000000000005,1.18,0.017,0.6,0,0,0,0,0,-8.3,0,0,0,0,0.271,34.910000000000004,99.9,0.89,0.24,897,0.7000000000000001,113,1.2000000000000002,0.0000,0.0000 +2012,11,24,1,30,5,1.19,0.017,0.6,0,0,0,0,0,-8.6,0,0,0,0,0.272,36.77,111.91,0.89,0.24,897,0.7000000000000001,123,1.2000000000000002,0.0000,0.0000 +2012,11,24,2,30,4.2,1.2,0.017,0.6,0,0,0,0,0,-8.9,0,0,0,0,0.274,37.93,124.21000000000001,0.89,0.24,897,0.7000000000000001,136,1.4000000000000001,0.0000,0.0000 +2012,11,24,3,30,3.5,1.21,0.017,0.6,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.274,38.96,136.6,0.88,0.24,896,0.6000000000000001,151,1.5,0.0000,0.0000 +2012,11,24,4,30,3,1.21,0.017,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.275,39.78,148.75,0.88,0.24,896,0.6000000000000001,165,1.7000000000000002,0.0000,0.0000 +2012,11,24,5,30,2.6,1.2,0.017,0.6,0,0,0,0,0,-9.5,0,0,0,0,0.276,40.63,159.8,0.88,0.24,896,0.6000000000000001,178,2,0.0000,0.0000 +2012,11,24,6,30,2.2,1.19,0.017,0.6,0,0,0,0,0,-9.5,0,0,0,0,0.277,41.730000000000004,166.32,0.88,0.24,895,0.6000000000000001,191,2.2,0.0000,0.0000 +2012,11,24,7,30,1.7000000000000002,1.18,0.016,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.278,43.42,162.19,0.88,0.24,895,0.6000000000000001,204,2.3000000000000003,0.0000,0.0000 +2012,11,24,8,30,1.3,1.16,0.016,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.28,44.94,151.78,0.88,0.24,895,0.6000000000000001,215,2.3000000000000003,0.0000,0.0000 +2012,11,24,9,30,1,1.1400000000000001,0.016,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.28300000000000003,46.21,139.79,0.88,0.24,894,0.5,224,2.5,0.0000,0.0000 +2012,11,24,10,30,0.9,1.12,0.016,0.6,0,0,0,0,0,-9.1,0,0,0,0,0.28500000000000003,47.03,127.43,0.88,0.24,894,0.5,228,2.8000000000000003,0.0000,0.0000 +2012,11,24,11,30,0.9,1.09,0.015,0.6,0,0,0,0,0,-9,0,0,0,0,0.28600000000000003,47.660000000000004,115.09,0.88,0.24,893,0.5,229,3.2,0.0000,0.0000 +2012,11,24,12,30,0.9,1.06,0.015,0.6,0,0,0,0,0,-8.8,0,0,0,0,0.28600000000000003,48.4,103,0.88,0.24,893,0.5,229,3.6,0.0000,0.0000 +2012,11,24,13,30,1.5,1.03,0.015,0.6,0,0,0,0,0,-8.6,0,0,0,0,0.28500000000000003,47.050000000000004,91.38,0.88,0.24,893,0.5,228,4.2,0.0000,0.0000 +2012,11,24,14,30,3.6,1.01,0.016,0.6,33,698,149,7,4,-8.4,92,112,7,111,0.28300000000000003,41.11,80.42,0.88,0.24,892,0.5,228,4.7,0.0000,0.0000 +2012,11,24,15,30,7.2,1,0.016,0.6,46,881,337,0,1,-8.200000000000001,46,881,0,337,0.28200000000000003,32.6,70.74,0.88,0.24,892,0.5,230,5.5,17.2194,13.3254 +2012,11,24,16,30,10.8,1,0.016,0.6,53,961,493,0,1,-7.6000000000000005,53,961,0,493,0.28,26.650000000000002,62.76,0.88,0.24,891,0.5,235,6.1000000000000005,26.8053,20.9029 +2012,11,24,17,30,13.600000000000001,1.01,0.016,0.6,57,998,597,0,0,-6.5,57,998,0,597,0.278,24.23,57.24,0.88,0.24,889,0.5,238,6,33.5085,26.2105 +2012,11,24,18,30,15.9,1.11,0.018000000000000002,0.6,61,1009,640,0,0,-5.7,61,1009,0,640,0.276,22.22,54.96,0.89,0.24,888,0.5,241,5.800000000000001,36.2007,28.3432 +2012,11,24,19,30,17.6,1.07,0.016,0.6,58,1004,615,0,0,-5.300000000000001,58,1004,0,615,0.275,20.46,56.32,0.88,0.24,886,0.5,243,5.7,34.3330,26.8659 +2012,11,24,20,30,18.5,1.03,0.014,0.6,52,978,525,0,0,-5.4,52,978,0,525,0.275,19.330000000000002,61.07,0.88,0.24,885,0.5,245,5.6000000000000005,28.6202,22.3414 +2012,11,24,21,30,18.6,1.01,0.014,0.6,46,913,381,0,0,-5.6000000000000005,46,913,0,381,0.276,18.900000000000002,68.49,0.88,0.24,885,0.5,243,5,19.6270,15.2279 +2012,11,24,22,30,16.2,0.99,0.013000000000000001,0.6,35,773,198,0,0,-5.5,35,773,0,198,0.276,22.02,77.81,0.88,0.24,884,0.5,234,3.8000000000000003,9.4412,7.2194 +2012,11,24,23,30,13,0.98,0.012,0.6,13,352,24,0,0,-4.800000000000001,13,352,0,24,0.276,28.64,88.21000000000001,0.88,0.24,884,0.5,226,3.3000000000000003,0.0000,0.0000 +2012,11,25,0,30,11.8,0.98,0.012,0.6,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.276,30.23,99.95,0.87,0.24,884,0.5,227,4,0.0000,0.0000 +2012,11,25,1,30,11.200000000000001,1.01,0.012,0.6,0,0,0,0,0,-5.4,0,0,0,0,0.275,30.73,111.94,0.87,0.24,884,0.4,235,4.4,0.0000,0.0000 +2012,11,25,2,30,10.100000000000001,1.04,0.011,0.6,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.274,32.24,124.24000000000001,0.86,0.24,884,0.4,243,4.5,0.0000,0.0000 +2012,11,25,3,30,9,1.08,0.011,0.6,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.273,33.83,136.64000000000001,0.86,0.24,883,0.4,250,4.4,0.0000,0.0000 +2012,11,25,4,30,7.800000000000001,1.1,0.011,0.6,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.272,36.15,148.8,0.86,0.24,883,0.4,255,4.1000000000000005,0.0000,0.0000 +2012,11,25,5,30,6.7,1.11,0.01,0.6,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.27,38.980000000000004,159.89000000000001,0.86,0.24,883,0.4,258,3.9000000000000004,0.0000,0.0000 +2012,11,25,6,30,5.7,1.1,0.01,0.6,0,0,0,0,0,-6.2,0,0,0,0,0.268,41.94,166.51,0.86,0.24,882,0.4,262,3.9000000000000004,0.0000,0.0000 +2012,11,25,7,30,4.800000000000001,1.09,0.01,0.6,0,0,0,0,0,-6.2,0,0,0,0,0.268,44.65,162.38,0.87,0.24,882,0.4,266,4,0.0000,0.0000 +2012,11,25,8,30,4,1.07,0.01,0.6,0,0,0,0,0,-6.4,0,0,0,0,0.268,46.67,151.95000000000002,0.87,0.24,881,0.4,271,4,0.0000,0.0000 +2012,11,25,9,30,3.4000000000000004,1.05,0.01,0.6,0,0,0,0,0,-6.7,0,0,0,0,0.268,47.57,139.95000000000002,0.87,0.24,881,0.4,276,4,0.0000,0.0000 +2012,11,25,10,30,3,1.03,0.01,0.6,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.268,47.64,127.59,0.87,0.24,881,0.4,279,4,0.0000,0.0000 +2012,11,25,11,30,2.7,1.02,0.01,0.6,0,0,0,0,0,-7.4,0,0,0,0,0.268,47.410000000000004,115.25,0.87,0.24,881,0.4,282,4.1000000000000005,0.0000,0.0000 +2012,11,25,12,30,2.5,1.01,0.01,0.6,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.268,46.68,103.16,0.86,0.24,882,0.4,286,4,0.0000,0.0000 +2012,11,25,13,30,3,1,0.01,0.6,0,0,0,0,0,-8.3,0,0,0,0,0.268,43.35,91.55,0.86,0.24,882,0.4,289,4.3,0.0000,0.0000 +2012,11,25,14,30,5.2,1.01,0.01,0.6,28,725,147,7,4,-8.8,90,117,7,110,0.269,35.660000000000004,80.60000000000001,0.86,0.24,882,0.4,291,4.4,0.0000,0.0000 +2012,11,25,15,30,9,1.02,0.01,0.6,39,904,335,0,1,-9.200000000000001,39,904,0,335,0.269,26.73,70.94,0.86,0.24,882,0.4,291,4,17.1373,13.2583 +2012,11,25,16,30,13.3,1.03,0.011,0.6,47,979,492,0,0,-9.200000000000001,47,979,0,492,0.27,20.05,62.96,0.86,0.24,882,0.4,296,3.5,26.7137,20.8285 +2012,11,25,17,30,17,1.04,0.011,0.6,50,1016,597,0,0,-9.5,50,1016,0,597,0.269,15.43,57.44,0.85,0.24,881,0.4,296,3.3000000000000003,33.4165,26.1360 +2012,11,25,18,30,19.6,1.02,0.011,0.6,52,1028,639,0,0,-9.5,52,1028,0,639,0.269,13.06,55.15,0.85,0.24,880,0.4,285,3.3000000000000003,36.2240,28.3593 +2012,11,25,19,30,21.3,1.04,0.011,0.6,51,1021,615,0,0,-10.200000000000001,51,1021,0,615,0.269,11.13,56.49,0.85,0.24,879,0.4,278,3.6,34.5839,27.0601 +2012,11,25,20,30,21.900000000000002,1.06,0.012,0.6,49,1003,532,0,0,-11.100000000000001,49,1003,0,532,0.269,10.02,61.21,0.85,0.24,879,0.30000000000000004,277,3.6,28.7581,22.4471 +2012,11,25,21,30,21,1.01,0.01,0.6,41,944,386,0,0,-11.9,41,944,0,386,0.269,9.950000000000001,68.60000000000001,0.85,0.24,879,0.30000000000000004,276,2.8000000000000003,19.7643,15.3326 +2012,11,25,22,30,17.400000000000002,1.05,0.011,0.6,33,803,202,0,0,-7.800000000000001,33,803,0,202,0.269,17.150000000000002,77.89,0.86,0.24,879,0.30000000000000004,272,1.7000000000000002,9.4846,7.2514 +2012,11,25,23,30,13.4,1.08,0.012,0.6,13,374,24,0,0,-7.4,13,374,0,24,0.269,22.900000000000002,88.27,0.87,0.24,879,0.30000000000000004,269,1.6,0.0000,0.0000 +2012,11,26,0,30,11.200000000000001,1.1,0.013000000000000001,0.6,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.27,22.32,99.99000000000001,0.87,0.24,879,0.30000000000000004,269,1.8,0.0000,0.0000 +2012,11,26,1,30,9.8,1.12,0.014,0.6,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.27,23.44,111.97,0.87,0.24,880,0.30000000000000004,272,2.1,0.0000,0.0000 +2012,11,26,2,30,8.9,1.1300000000000001,0.014,0.6,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.271,24.060000000000002,124.27,0.87,0.24,880,0.30000000000000004,276,2.4000000000000004,0.0000,0.0000 +2012,11,26,3,30,8.4,1.17,0.014,0.6,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.271,24.76,136.66,0.86,0.24,880,0.4,277,2.6,0.0000,0.0000 +2012,11,26,4,30,8,1.2,0.014,0.6,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.272,26.51,148.84,0.86,0.24,880,0.4,277,2.9000000000000004,0.0000,0.0000 +2012,11,26,5,30,7.7,1.24,0.015,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.273,28.63,159.98,0.87,0.24,880,0.5,278,3.1,0.0000,0.0000 +2012,11,26,6,30,7.4,1.29,0.017,0.6,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.273,30.830000000000002,166.68,0.87,0.24,880,0.5,280,3.2,0.0000,0.0000 +2012,11,26,7,30,7.1000000000000005,1.33,0.018000000000000002,0.6,0,0,0,0,0,-8.3,0,0,0,0,0.273,32.61,162.58,0.88,0.24,880,0.5,282,3.2,0.0000,0.0000 +2012,11,26,8,30,6.7,1.3800000000000001,0.019,0.6,0,0,0,0,0,-8.1,0,0,0,0,0.273,33.86,152.12,0.89,0.24,880,0.5,284,3.3000000000000003,0.0000,0.0000 +2012,11,26,9,30,6.300000000000001,1.42,0.019,0.6,0,0,0,0,0,-8.1,0,0,0,0,0.274,34.81,140.11,0.89,0.24,881,0.5,289,3.4000000000000004,0.0000,0.0000 +2012,11,26,10,30,5.9,1.43,0.019,0.6,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.274,35.67,127.74000000000001,0.89,0.24,881,0.5,297,3.7,0.0000,0.0000 +2012,11,26,11,30,5.1000000000000005,1.42,0.019,0.6,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.275,37.74,115.4,0.89,0.24,882,0.5,308,3.9000000000000004,0.0000,0.0000 +2012,11,26,12,30,4.2,1.37,0.019,0.6,0,0,0,0,0,-8,0,0,0,0,0.275,40.54,103.32000000000001,0.89,0.24,883,0.5,321,3.9000000000000004,0.0000,0.0000 +2012,11,26,13,30,3.8000000000000003,1.32,0.019,0.6,0,0,0,0,1,-7.800000000000001,0,0,0,0,0.275,42.52,91.72,0.88,0.24,885,0.5,334,4.3,0.0000,0.0000 +2012,11,26,14,30,4.800000000000001,1.26,0.02,0.6,34,681,143,7,4,-7.1000000000000005,91,63,7,102,0.275,41.82,80.78,0.88,0.24,886,0.5,348,4.9,0.0000,0.0000 +2012,11,26,15,30,6.800000000000001,1.21,0.021,0.6,49,870,330,0,1,-5,49,870,0,330,0.275,42.61,71.13,0.88,0.24,887,0.5,182,5.4,17.0045,13.1520 +2012,11,26,16,30,9,1.18,0.023,0.6,58,941,483,0,1,-3.4000000000000004,58,941,0,483,0.275,41.45,63.160000000000004,0.88,0.24,888,0.6000000000000001,12,5.6000000000000005,26.6237,20.7554 +2012,11,26,17,30,10.8,1.17,0.026000000000000002,0.6,64,976,587,0,1,-2.7,64,976,0,587,0.275,38.82,57.64,0.87,0.24,888,0.6000000000000001,18,5.7,33.3820,26.1066 +2012,11,26,18,30,12.200000000000001,1.09,0.024,0.6,65,992,629,7,2,-2.5,233,685,7,623,0.274,35.82,55.34,0.87,0.24,888,0.6000000000000001,21,5.7,36.1356,28.2879 +2012,11,26,19,30,13,1.1,0.026000000000000002,0.6,65,975,601,0,1,-2.6,65,975,0,601,0.273,33.65,56.65,0.86,0.24,888,0.7000000000000001,24,5.6000000000000005,34.5548,27.0354 +2012,11,26,20,30,13,1.1400000000000001,0.027,0.6,62,942,514,0,3,-2.9000000000000004,299,132,0,362,0.273,33.11,61.34,0.86,0.24,888,0.7000000000000001,28,5.4,29.1163,22.7247 +2012,11,26,21,30,12.100000000000001,1.17,0.028,0.6,55,871,371,0,0,-3.1,55,871,0,371,0.273,34.62,68.7,0.86,0.24,889,0.7000000000000001,31,5,20.0048,15.5173 +2012,11,26,22,30,10.100000000000001,1.2,0.028,0.6,41,718,191,0,1,-3.2,41,718,0,191,0.274,39.08,77.96000000000001,0.85,0.24,890,0.7000000000000001,35,4.3,9.6722,7.3938 +2012,11,26,23,30,7.4,1.22,0.028,0.6,13,270,21,0,0,-3.2,13,270,0,21,0.276,46.79,88.31,0.84,0.24,891,0.7000000000000001,40,3.3000000000000003,0.0000,0.0000 +2012,11,27,0,30,5.300000000000001,1.22,0.027,0.6,0,0,0,0,1,-3.3000000000000003,0,0,0,0,0.277,53.86,100.03,0.84,0.24,892,0.7000000000000001,45,3.2,0.0000,0.0000 +2012,11,27,1,30,4,1.2,0.026000000000000002,0.6,0,0,0,0,1,-3.3000000000000003,0,0,0,0,0.279,58.83,112,0.85,0.24,893,0.7000000000000001,47,3.5,0.0000,0.0000 +2012,11,27,2,30,2.7,1.18,0.026000000000000002,0.6,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.281,63.93,124.29,0.85,0.24,894,0.7000000000000001,49,3.5,0.0000,0.0000 +2012,11,27,3,30,1.5,1.1500000000000001,0.025,0.6,0,0,0,0,0,-3.7,0,0,0,0,0.28300000000000003,68.27,136.68,0.85,0.24,894,0.7000000000000001,50,3,0.0000,0.0000 +2012,11,27,4,30,0.4,1.12,0.025,0.6,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.28200000000000003,71.65,148.87,0.85,0.24,894,0.7000000000000001,48,2.3000000000000003,0.0000,0.0000 +2012,11,27,5,30,-0.5,1.1,0.026000000000000002,0.6,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.281,73.96000000000001,160.05,0.86,0.24,895,0.7000000000000001,38,1.6,0.0000,0.0000 +2012,11,27,6,30,-1.3,1.11,0.026000000000000002,0.6,0,0,0,0,0,-5,0,0,0,0,0.28200000000000003,75.97,166.86,0.86,0.24,895,0.7000000000000001,22,1.3,0.0000,0.0000 +2012,11,27,7,30,-1.8,1.1300000000000001,0.026000000000000002,0.6,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.28300000000000003,76.83,162.77,0.86,0.24,895,0.7000000000000001,187,1.1,0.0000,0.0000 +2012,11,27,8,30,-2.2,1.1500000000000001,0.026000000000000002,0.6,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.28300000000000003,77.64,152.28,0.86,0.24,895,0.6000000000000001,356,1.1,0.0000,0.0000 +2012,11,27,9,30,-2.4000000000000004,1.16,0.025,0.6,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.281,77.66,140.26,0.87,0.24,895,0.6000000000000001,350,0.9,0.0000,0.0000 +2012,11,27,10,30,-2.6,1.17,0.024,0.6,0,0,0,0,0,-5.9,0,0,0,0,0.279,77.8,127.89,0.87,0.24,894,0.6000000000000001,340,0.8,0.0000,0.0000 +2012,11,27,11,30,-2.7,1.18,0.024,0.6,0,0,0,0,0,-6,0,0,0,0,0.277,77.82000000000001,115.56,0.87,0.24,894,0.6000000000000001,319,0.8,0.0000,0.0000 +2012,11,27,12,30,-3,1.2,0.023,0.6,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.276,79.48,103.48,0.86,0.24,894,0.6000000000000001,290,0.9,0.0000,0.0000 +2012,11,27,13,30,-2.2,1.21,0.023,0.6,0,0,0,0,0,-6,0,0,0,0,0.275,75.26,91.89,0.86,0.24,895,0.6000000000000001,267,1.3,0.0000,0.0000 +2012,11,27,14,30,0.4,1.21,0.022,0.6,34,668,139,7,4,-5.9,89,62,7,99,0.274,62.75,80.96000000000001,0.86,0.24,895,0.5,249,2.1,0.0000,0.0000 +2012,11,27,15,30,3.7,1.21,0.022,0.6,49,864,326,0,1,-6,49,864,0,326,0.273,49.31,71.31,0.86,0.24,895,0.5,233,2.8000000000000003,16.7215,12.9298 +2012,11,27,16,30,7,1.2,0.022,0.6,57,949,483,0,1,-5.6000000000000005,57,949,0,483,0.271,40.26,63.35,0.86,0.24,894,0.5,225,3.3000000000000003,26.1013,20.3453 +2012,11,27,17,30,10,1.18,0.021,0.6,61,989,587,0,0,-4.800000000000001,61,989,0,587,0.269,34.82,57.84,0.86,0.24,894,0.5,225,3.7,32.7886,25.6401 +2012,11,27,18,30,12.5,1.19,0.021,0.6,63,1012,636,0,0,-4.4,63,1012,0,636,0.266,30.52,55.52,0.86,0.24,892,0.4,229,4,35.1994,27.5530 +2012,11,27,19,30,14.5,1.2,0.021,0.6,62,1005,612,0,0,-4.3,62,1005,0,612,0.263,27,56.81,0.86,0.24,891,0.4,234,4.2,33.7413,26.3970 +2012,11,27,20,30,15.600000000000001,1.2,0.021,0.6,58,975,524,0,0,-4.5,58,975,0,524,0.261,24.79,61.47,0.86,0.24,891,0.4,238,4.1000000000000005,19.7962,15.4493 +2012,11,27,21,30,15.600000000000001,1.2,0.021,0.6,51,909,380,0,0,-4.9,51,909,0,380,0.259,23.990000000000002,68.8,0.86,0.24,890,0.4,239,3.6,19.2109,14.8998 +2012,11,27,22,30,12.700000000000001,1.2,0.021,0.6,39,761,197,0,0,-4.800000000000001,39,761,0,197,0.258,29.23,78.03,0.86,0.24,890,0.4,232,2.4000000000000004,9.1424,6.9879 +2012,11,27,23,30,8.8,1.19,0.021,0.6,13,315,22,0,0,-4,13,315,0,22,0.259,40.17,88.36,0.87,0.24,890,0.4,223,2,0.0000,0.0000 +2012,11,28,0,30,7.2,1.17,0.022,0.6,0,0,0,0,1,-4.5,0,0,0,0,0.261,43.14,100.06,0.87,0.24,890,0.30000000000000004,221,2.4000000000000004,0.0000,0.0000 +2012,11,28,1,30,6.6000000000000005,1.16,0.022,0.6,0,0,0,0,1,-4.5,0,0,0,0,0.263,45.11,112.02,0.87,0.24,891,0.30000000000000004,223,2.7,0.0000,0.0000 +2012,11,28,2,30,5.800000000000001,1.16,0.023,0.6,0,0,0,0,1,-4.4,0,0,0,0,0.264,47.83,124.3,0.87,0.24,891,0.30000000000000004,229,2.9000000000000004,0.0000,0.0000 +2012,11,28,3,30,5.1000000000000005,1.1500000000000001,0.023,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.263,50.56,136.70000000000002,0.87,0.24,891,0.30000000000000004,236,3,0.0000,0.0000 +2012,11,28,4,30,4.4,1.1500000000000001,0.024,0.6,0,0,0,0,0,-4.2,0,0,0,0,0.261,53.5,148.9,0.87,0.24,891,0.4,243,3.1,0.0000,0.0000 +2012,11,28,5,30,3.9000000000000004,1.1500000000000001,0.024,0.6,0,0,0,0,0,-4.2,0,0,0,0,0.26,55.72,160.12,0.87,0.24,891,0.4,249,3.2,0.0000,0.0000 +2012,11,28,6,30,3.4000000000000004,1.1500000000000001,0.024,0.6,0,0,0,0,0,-4.2,0,0,0,0,0.259,57.64,167.02,0.87,0.24,891,0.4,255,3.3000000000000003,0.0000,0.0000 +2012,11,28,7,30,2.9000000000000004,1.16,0.025,0.6,0,0,0,0,0,-4.4,0,0,0,0,0.259,58.81,162.96,0.88,0.24,891,0.4,260,3.2,0.0000,0.0000 +2012,11,28,8,30,2.4000000000000004,1.16,0.024,0.6,0,0,0,0,0,-4.9,0,0,0,0,0.259,58.76,152.44,0.87,0.24,891,0.4,265,2.9000000000000004,0.0000,0.0000 +2012,11,28,9,30,2,1.17,0.024,0.6,0,0,0,0,0,-5.7,0,0,0,0,0.259,56.870000000000005,140.41,0.87,0.24,891,0.4,271,2.7,0.0000,0.0000 +2012,11,28,10,30,1.7000000000000002,1.18,0.024,0.6,0,0,0,0,0,-6.7,0,0,0,0,0.258,53.59,128.04,0.87,0.24,891,0.30000000000000004,277,2.6,0.0000,0.0000 +2012,11,28,11,30,1.4000000000000001,1.2,0.023,0.6,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.256,50.27,115.71000000000001,0.86,0.24,891,0.30000000000000004,283,2.7,0.0000,0.0000 +2012,11,28,12,30,1.1,1.21,0.023,0.6,0,0,0,0,0,-8.6,0,0,0,0,0.256,48.29,103.64,0.86,0.24,892,0.30000000000000004,288,2.7,0.0000,0.0000 +2012,11,28,13,30,1.7000000000000002,1.23,0.023,0.6,0,0,0,0,0,-9,0,0,0,0,0.255,44.96,92.05,0.86,0.24,892,0.30000000000000004,292,3.1,0.0000,0.0000 +2012,11,28,14,30,4.1000000000000005,1.24,0.022,0.6,34,691,140,7,4,-9,89,80,7,101,0.255,37.96,81.13,0.86,0.24,892,0.30000000000000004,293,3.6,0.0000,0.0000 +2012,11,28,15,30,7.7,1.24,0.023,0.6,50,885,331,0,3,-8.8,194,138,0,238,0.255,30,71.5,0.87,0.24,892,0.30000000000000004,285,3.4000000000000004,16.4915,12.7487 +2012,11,28,16,30,12,1.24,0.023,0.6,58,969,490,7,2,-8.4,195,644,7,482,0.255,23.18,63.54,0.87,0.24,892,0.30000000000000004,273,3.3000000000000003,26.0674,20.3161 +2012,11,28,17,30,16.2,1.23,0.022,0.6,62,998,590,0,1,-7.800000000000001,62,998,0,590,0.255,18.5,58.03,0.88,0.24,891,0.4,260,3.9000000000000004,32.7540,25.6107 +2012,11,28,18,30,19.200000000000003,1.34,0.028,0.6,68,1004,634,0,1,-7.5,68,1004,0,634,0.255,15.76,55.7,0.89,0.24,890,0.4,249,4.4,35.9034,28.1019 +2012,11,28,19,30,20.700000000000003,1.35,0.029,0.6,68,996,611,0,0,-7.800000000000001,68,996,0,611,0.253,13.99,56.96,0.9,0.24,889,0.4,240,4.6000000000000005,34.3312,26.8567 +2012,11,28,20,30,20.900000000000002,1.35,0.03,0.6,64,963,523,0,0,-8,64,963,0,523,0.252,13.61,61.59,0.9,0.24,889,0.4,232,4.4,28.6319,22.3430 +2012,11,28,21,30,19.700000000000003,1.3,0.026000000000000002,0.6,55,901,379,0,8,-8,148,484,0,322,0.251,14.65,68.89,0.91,0.24,888,0.4,225,3.6,19.6600,15.2464 +2012,11,28,22,30,16.1,1.31,0.026000000000000002,0.6,42,750,196,0,8,-6.6000000000000005,101,242,0,151,0.251,20.490000000000002,78.09,0.91,0.24,888,0.4,219,2.4000000000000004,9.4264,7.2041 +2012,11,28,23,30,12.200000000000001,1.32,0.026000000000000002,0.6,13,288,21,7,7,-5.5,12,1,7,12,0.251,28.59,88.4,0.9,0.24,888,0.5,216,2,0.0000,0.0000 +2012,11,29,0,30,10.700000000000001,1.33,0.025,0.6,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.252,29.69,100.09,0.9,0.24,889,0.5,215,2.2,0.0000,0.0000 +2012,11,29,1,30,9.9,1.34,0.024,0.6,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.252,30.72,112.03,0.9,0.24,889,0.5,214,2.4000000000000004,0.0000,0.0000 +2012,11,29,2,30,9.3,1.36,0.022,0.6,0,0,0,0,1,-6.4,0,0,0,0,0.253,32.45,124.31,0.89,0.24,889,0.6000000000000001,212,2.7,0.0000,0.0000 +2012,11,29,3,30,8.9,1.36,0.022,0.6,0,0,0,0,1,-5.6000000000000005,0,0,0,0,0.252,35.33,136.70000000000002,0.89,0.24,889,0.7000000000000001,213,3,0.0000,0.0000 +2012,11,29,4,30,8.5,1.35,0.023,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.252,40.06,148.92000000000002,0.9,0.24,888,0.8,217,3.4000000000000004,0.0000,0.0000 +2012,11,29,5,30,7.9,1.35,0.025,0.6,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.253,46.4,160.18,0.91,0.24,888,0.9,222,3.6,0.0000,0.0000 +2012,11,29,6,30,7.300000000000001,1.35,0.027,0.6,0,0,0,0,0,-1.8,0,0,0,0,0.255,52.32,167.17000000000002,0.92,0.24,888,1,227,3.7,0.0000,0.0000 +2012,11,29,7,30,6.800000000000001,1.36,0.029,0.6,0,0,0,0,0,-1.1,0,0,0,0,0.257,57.08,163.14000000000001,0.92,0.24,888,1,232,3.6,0.0000,0.0000 +2012,11,29,8,30,6.1000000000000005,1.37,0.028,0.6,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.258,61.92,152.61,0.91,0.24,888,1.1,237,3.2,0.0000,0.0000 +2012,11,29,9,30,5.5,1.3800000000000001,0.028,0.6,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.258,66.02,140.56,0.91,0.24,887,1.1,242,2.7,0.0000,0.0000 +2012,11,29,10,30,5.2,1.3900000000000001,0.027,0.6,0,0,0,0,0,-0.1,0,0,0,0,0.258,68.63,128.19,0.91,0.24,887,1.1,248,2.5,0.0000,0.0000 +2012,11,29,11,30,5.1000000000000005,1.4000000000000001,0.027,0.6,0,0,0,0,1,0.1,0,0,0,0,0.259,70.06,115.86,0.91,0.24,887,1.1,256,2.6,0.0000,0.0000 +2012,11,29,12,30,5.2,1.41,0.026000000000000002,0.6,0,0,0,0,1,0.2,0,0,0,0,0.26,70.35000000000001,103.8,0.91,0.24,887,1.1,264,2.7,0.0000,0.0000 +2012,11,29,13,30,6.1000000000000005,1.42,0.024,0.6,0,0,0,0,0,0.4,0,0,0,0,0.261,66.81,92.22,0.9,0.24,887,1,271,3.3000000000000003,0.0000,0.0000 +2012,11,29,14,30,8.5,1.44,0.022,0.6,33,629,128,0,1,0.5,33,629,0,128,0.261,57.300000000000004,81.3,0.9,0.24,887,1,273,4,0.0000,0.0000 +2012,11,29,15,30,11.9,1.47,0.022,0.6,48,831,309,0,1,0.6000000000000001,48,831,0,309,0.261,45.730000000000004,71.68,0.89,0.24,887,1,270,4,12.0187,9.2886 +2012,11,29,16,30,16.2,1.5,0.023,0.6,57,916,463,0,1,0.5,57,916,0,463,0.261,34.47,63.730000000000004,0.89,0.24,887,1,275,4.3,25.9794,20.2447 +2012,11,29,17,30,19.700000000000003,1.53,0.024,0.6,62,961,568,0,1,-0.8,62,961,0,568,0.26,25.19,58.21,0.89,0.24,887,0.9,286,5,32.8882,25.7132 +2012,11,29,18,30,21.200000000000003,1.54,0.03,0.6,68,968,611,0,0,-2,68,968,0,611,0.259,20.95,55.870000000000005,0.9,0.24,886,0.9,286,5,35.7598,27.9875 +2012,11,29,19,30,21.6,1.55,0.032,0.6,68,963,591,0,0,-2.6,68,963,0,591,0.258,19.61,57.1,0.9,0.24,885,0.8,282,4.800000000000001,34.2491,26.7906 +2012,11,29,20,30,21.6,1.55,0.031,0.6,64,932,506,0,0,-3.1,64,932,0,506,0.257,18.86,61.7,0.9,0.24,885,0.8,279,4.6000000000000005,28.5556,22.2818 +2012,11,29,21,30,20.900000000000002,1.54,0.03,0.6,55,864,365,0,0,-3.6,55,864,0,365,0.255,18.93,68.97,0.9,0.24,884,0.8,276,3.9000000000000004,16.6463,12.9080 +2012,11,29,22,30,17.6,1.52,0.028,0.6,41,714,187,0,0,-3.5,41,714,0,187,0.253,23.56,78.15,0.89,0.24,884,0.8,272,2.5,7.2233,5.5198 +2012,11,29,23,30,13.600000000000001,1.5,0.026000000000000002,0.6,13,279,20,0,0,-2.4000000000000004,13,279,0,20,0.251,32.86,88.44,0.89,0.24,885,0.7000000000000001,267,1.8,0.0000,0.0000 +2012,11,30,0,30,12,1.47,0.023,0.6,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.248,33.87,100.11,0.88,0.24,885,0.7000000000000001,265,2,0.0000,0.0000 +2012,11,30,1,30,11.4,1.44,0.022,0.6,0,0,0,0,1,-3.9000000000000004,0,0,0,0,0.246,33.980000000000004,112.04,0.88,0.24,885,0.7000000000000001,268,2.4000000000000004,0.0000,0.0000 +2012,11,30,2,30,10.9,1.42,0.022,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.244,34.230000000000004,124.31,0.88,0.24,885,0.7000000000000001,273,2.8000000000000003,0.0000,0.0000 +2012,11,30,3,30,10.3,1.42,0.022,0.6,0,0,0,0,4,-4.4,0,0,0,0,0.243,35.27,136.71,0.87,0.24,885,0.7000000000000001,278,3.1,0.0000,0.0000 +2012,11,30,4,30,9.5,1.43,0.022,0.6,0,0,0,0,4,-4.4,0,0,0,0,0.242,37.300000000000004,148.93,0.87,0.24,885,0.7000000000000001,282,3.2,0.0000,0.0000 +2012,11,30,5,30,8.5,1.45,0.022,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.243,40.07,160.23,0.87,0.24,885,0.7000000000000001,285,3.2,0.0000,0.0000 +2012,11,30,6,30,7.7,1.45,0.021,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.244,42.38,167.32,0.87,0.24,885,0.7000000000000001,288,3.1,0.0000,0.0000 +2012,11,30,7,30,7,1.43,0.019,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.246,44.44,163.32,0.87,0.24,885,0.7000000000000001,291,3.1,0.0000,0.0000 +2012,11,30,8,30,6.5,1.4000000000000001,0.018000000000000002,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.248,45.9,152.76,0.88,0.24,885,0.7000000000000001,291,3.1,0.0000,0.0000 +2012,11,30,9,30,6.1000000000000005,1.36,0.017,0.6,0,0,0,0,0,-4.4,0,0,0,0,0.249,46.93,140.71,0.88,0.24,885,0.8,290,3.1,0.0000,0.0000 +2012,11,30,10,30,6,1.34,0.017,0.6,0,0,0,0,0,-4.5,0,0,0,0,0.25,46.910000000000004,128.34,0.89,0.24,885,0.8,288,3.3000000000000003,0.0000,0.0000 +2012,11,30,11,30,5.9,1.32,0.017,0.6,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.251,47,116.01,0.89,0.24,886,0.8,287,3.5,0.0000,0.0000 +2012,11,30,12,30,5.800000000000001,1.32,0.016,0.6,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.253,47.07,103.96000000000001,0.89,0.24,886,0.8,287,3.6,0.0000,0.0000 +2012,11,30,13,30,6.4,1.33,0.016,0.6,0,0,0,0,8,-4.7,0,0,0,0,0.254,45.04,92.38,0.89,0.24,886,0.8,288,3.9000000000000004,0.0000,0.0000 +2012,11,30,14,30,8.700000000000001,1.35,0.017,0.6,31,647,127,7,8,-4.6000000000000005,76,47,7,83,0.254,38.71,81.47,0.89,0.24,886,0.8,287,4.3,0.0000,0.0000 +2012,11,30,15,30,12.3,1.37,0.017,0.6,45,849,310,0,3,-4.4,183,126,0,223,0.254,31.01,71.85000000000001,0.89,0.24,887,0.8,282,4.1000000000000005,15.5781,12.0364 +2012,11,30,16,30,16.7,1.3800000000000001,0.018000000000000002,0.6,54,933,464,0,3,-3.9000000000000004,256,214,0,350,0.253,24.21,63.910000000000004,0.89,0.24,886,0.8,283,4.3,24.9224,19.4182 +2012,11,30,17,30,20.3,1.3900000000000001,0.018000000000000002,0.6,58,973,568,0,4,-2.7,327,119,0,390,0.252,21.16,58.39,0.88,0.24,886,0.8,284,4.9,31.6313,24.7283 +2012,11,30,18,30,22.1,1.37,0.015,0.6,56,991,610,0,7,-2.4000000000000004,143,775,0,576,0.25,19.32,56.03,0.88,0.24,885,0.8,276,5,34.4344,26.9483 +2012,11,30,19,30,23,1.35,0.014,0.6,54,986,588,0,4,-2.7,301,305,0,466,0.247,17.88,57.24,0.87,0.24,884,0.8,268,5,33.1044,25.8936 +2012,11,30,20,30,23.1,1.31,0.013000000000000001,0.6,50,964,505,0,8,-3.2,180,522,0,426,0.245,17.13,61.81,0.87,0.24,884,0.7000000000000001,262,5,27.6082,21.5410 +2012,11,30,21,30,22.200000000000003,1.29,0.014,0.6,45,897,366,0,8,-3.8000000000000003,162,361,0,291,0.245,17.32,69.05,0.87,0.24,883,0.7000000000000001,259,4.2,18.8562,14.6202 +2012,11,30,22,30,18.7,1.27,0.015,0.6,36,748,188,7,7,-3.6,77,436,7,166,0.247,21.72,78.2,0.87,0.24,883,0.7000000000000001,255,2.6,8.9430,6.8332 +2012,11,30,23,30,14.4,1.27,0.016,0.6,12,307,20,7,3,-2.5,9,0,7,9,0.248,31.080000000000002,88.47,0.88,0.24,883,0.7000000000000001,252,1.8,0.0000,0.0000 +2012,12,1,0,30,12.600000000000001,1.28,0.019,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.25,32.56,100.12,0.88,0.24,884,0.6000000000000001,251,2,0.0000,0.0000 +2012,12,1,1,30,11.9,1.31,0.022,0.62,0,0,0,0,8,-4,0,0,0,0,0.252,32.64,112.05,0.89,0.24,884,0.6000000000000001,253,2.2,0.0000,0.0000 +2012,12,1,2,30,11.3,1.33,0.024,0.62,0,0,0,0,1,-4.6000000000000005,0,0,0,0,0.254,32.63,124.31,0.89,0.24,884,0.6000000000000001,257,2.5,0.0000,0.0000 +2012,12,1,3,30,10.600000000000001,1.34,0.026000000000000002,0.62,0,0,0,0,4,-5,0,0,0,0,0.256,33.1,136.70000000000002,0.89,0.24,884,0.6000000000000001,263,2.7,0.0000,0.0000 +2012,12,1,4,30,9.9,1.34,0.026000000000000002,0.62,0,0,0,0,4,-5.2,0,0,0,0,0.258,34.05,148.94,0.9,0.24,884,0.6000000000000001,269,2.7,0.0000,0.0000 +2012,12,1,5,30,9.200000000000001,1.33,0.026000000000000002,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.259,35.31,160.27,0.9,0.24,884,0.5,273,2.8000000000000003,0.0000,0.0000 +2012,12,1,6,30,8.700000000000001,1.32,0.026000000000000002,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.259,36.11,167.46,0.9,0.24,884,0.5,276,3,0.0000,0.0000 +2012,12,1,7,30,8.3,1.31,0.027,0.62,0,0,0,0,4,-5.7,0,0,0,0,0.259,36.61,163.49,0.9,0.24,884,0.5,277,3.2,0.0000,0.0000 +2012,12,1,8,30,7.9,1.3,0.027,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.259,37.09,152.92000000000002,0.9,0.24,883,0.5,278,3.3000000000000003,0.0000,0.0000 +2012,12,1,9,30,7.7,1.29,0.027,0.62,0,0,0,0,4,-6,0,0,0,0,0.259,37.22,140.86,0.91,0.24,883,0.5,279,3.5,0.0000,0.0000 +2012,12,1,10,30,7.5,1.28,0.026000000000000002,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.26,37.45,128.49,0.91,0.24,883,0.5,281,3.5,0.0000,0.0000 +2012,12,1,11,30,7.300000000000001,1.27,0.025,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.26,37.78,116.16,0.91,0.24,883,0.6000000000000001,283,3.5,0.0000,0.0000 +2012,12,1,12,30,7.1000000000000005,1.25,0.023,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.26,38.28,104.11,0.91,0.24,884,0.6000000000000001,286,3.6,0.0000,0.0000 +2012,12,1,13,30,7.800000000000001,1.22,0.022,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.261,36.83,92.54,0.91,0.24,884,0.6000000000000001,288,4.1000000000000005,0.0000,0.0000 +2012,12,1,14,30,9.9,1.19,0.021,0.62,33,644,126,7,7,-5.7,78,41,7,84,0.262,32.79,81.64,0.91,0.24,885,0.6000000000000001,289,4.6000000000000005,0.0000,0.0000 +2012,12,1,15,30,13.100000000000001,1.17,0.021,0.62,48,851,311,0,7,-5.2,148,37,0,159,0.263,27.63,72.03,0.91,0.24,885,0.6000000000000001,287,4.6000000000000005,11.2247,8.6706 +2012,12,1,16,30,16.900000000000002,1.16,0.021,0.62,57,939,467,0,7,-4.4,226,222,0,323,0.265,22.97,64.08,0.91,0.24,885,0.6000000000000001,290,4.9,18.8160,14.6585 +2012,12,1,17,30,20.1,1.16,0.021,0.62,61,980,572,0,8,-3.6,226,383,0,425,0.268,20.02,58.56,0.91,0.24,885,0.6000000000000001,298,6,21.6975,16.9609 +2012,12,1,18,30,21.400000000000002,1.16,0.021,0.62,63,994,616,0,7,-4.5,284,223,0,408,0.272,17.17,56.19,0.91,0.24,884,0.6000000000000001,298,6.4,32.4367,25.3832 +2012,12,1,19,30,21.700000000000003,1.18,0.021,0.62,62,980,590,0,6,-5.5,286,92,0,336,0.276,15.700000000000001,57.370000000000005,0.91,0.24,884,0.7000000000000001,291,6.1000000000000005,26.0839,20.4010 +2012,12,1,20,30,21.700000000000003,1.21,0.02,0.62,57,951,505,0,7,-5.9,261,143,0,328,0.278,15.19,61.9,0.9,0.24,883,0.7000000000000001,284,5.9,23.2270,18.1214 +2012,12,1,21,30,21.200000000000003,1.19,0.016,0.62,47,890,365,0,1,-6.1000000000000005,47,890,0,365,0.278,15.47,69.12,0.88,0.24,883,0.7000000000000001,279,5,15.0229,11.6469 +2012,12,1,22,30,18,1.1500000000000001,0.015,0.62,36,752,189,0,0,-5.9,36,752,0,189,0.278,19.2,78.24,0.87,0.24,883,0.6000000000000001,274,3.2,7.9369,6.0640 +2012,12,1,23,30,14,1.11,0.014,0.62,12,316,20,0,0,-4.5,12,316,0,20,0.277,27.36,88.49,0.87,0.24,884,0.6000000000000001,268,2.1,0.0000,0.0000 +2012,12,2,0,30,12.3,1.08,0.014,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.277,29.05,100.13,0.87,0.24,884,0.6000000000000001,268,2.2,0.0000,0.0000 +2012,12,2,1,30,11.5,1.07,0.013000000000000001,0.62,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.276,29.400000000000002,112.04,0.87,0.24,884,0.6000000000000001,273,2.3000000000000003,0.0000,0.0000 +2012,12,2,2,30,10.700000000000001,1.09,0.013000000000000001,0.62,0,0,0,0,0,-6,0,0,0,0,0.274,30.43,124.3,0.86,0.24,885,0.6000000000000001,280,2.3000000000000003,0.0000,0.0000 +2012,12,2,3,30,9.9,1.12,0.014,0.62,0,0,0,0,0,-6,0,0,0,0,0.272,32.15,136.69,0.87,0.24,885,0.6000000000000001,286,2.3000000000000003,0.0000,0.0000 +2012,12,2,4,30,9.1,1.1500000000000001,0.014,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.27,34.6,148.94,0.87,0.24,885,0.6000000000000001,291,2.2,0.0000,0.0000 +2012,12,2,5,30,8.3,1.18,0.015,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.27,37.67,160.31,0.87,0.24,885,0.6000000000000001,295,2.1,0.0000,0.0000 +2012,12,2,6,30,7.7,1.2,0.015,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.271,40.68,167.59,0.88,0.24,885,0.6000000000000001,299,2,0.0000,0.0000 +2012,12,2,7,30,7.1000000000000005,1.21,0.016,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.272,44.02,163.66,0.88,0.24,885,0.6000000000000001,303,2,0.0000,0.0000 +2012,12,2,8,30,6.6000000000000005,1.22,0.016,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.273,47.300000000000004,153.08,0.88,0.24,885,0.6000000000000001,307,2.1,0.0000,0.0000 +2012,12,2,9,30,6.2,1.23,0.016,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.273,50.53,141.01,0.89,0.24,885,0.6000000000000001,309,2.1,0.0000,0.0000 +2012,12,2,10,30,5.800000000000001,1.24,0.017,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.272,53.89,128.63,0.89,0.24,885,0.6000000000000001,309,2.2,0.0000,0.0000 +2012,12,2,11,30,5.5,1.24,0.016,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.272,56.75,116.31,0.89,0.24,885,0.6000000000000001,309,2.2,0.0000,0.0000 +2012,12,2,12,30,5.2,1.24,0.016,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.272,59.410000000000004,104.26,0.89,0.24,886,0.6000000000000001,308,2.2,0.0000,0.0000 +2012,12,2,13,30,6.1000000000000005,1.23,0.017,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.272,56.52,92.7,0.89,0.24,886,0.7000000000000001,304,2.6,0.0000,0.0000 +2012,12,2,14,30,8.9,1.22,0.018000000000000002,0.62,31,639,122,7,4,-1.9000000000000001,77,16,7,80,0.271,46.730000000000004,81.8,0.9,0.24,886,0.7000000000000001,299,3.4000000000000004,0.0000,0.0000 +2012,12,2,15,30,12.5,1.21,0.019,0.62,47,845,305,0,4,-1.9000000000000001,184,66,0,204,0.27,36.68,72.2,0.9,0.24,887,0.7000000000000001,288,3.4000000000000004,7.9899,6.1702 +2012,12,2,16,30,16.6,1.2,0.02,0.62,56,932,460,0,8,-1.9000000000000001,209,321,0,348,0.269,28.28,64.26,0.9,0.24,887,0.7000000000000001,273,3.1,17.3436,13.5097 +2012,12,2,17,30,20.6,1.2,0.02,0.62,60,974,566,7,3,-2.5,222,618,7,543,0.266,20.98,58.72,0.9,0.24,886,0.7000000000000001,260,3.9000000000000004,23.6228,18.4644 +2012,12,2,18,30,22.700000000000003,1.19,0.019,0.62,61,984,606,0,7,-4.9,204,554,0,511,0.264,15.48,56.34,0.9,0.24,885,0.8,246,4.7,22.9581,17.9645 +2012,12,2,19,30,23.400000000000002,1.2,0.018000000000000002,0.62,59,979,585,0,7,-6,185,610,0,513,0.262,13.63,57.49,0.9,0.24,884,0.8,234,5,18.7947,14.6990 +2012,12,2,20,30,23.400000000000002,1.23,0.018000000000000002,0.62,55,948,501,0,8,-6.7,173,527,0,420,0.261,12.93,62,0.89,0.24,883,0.8,227,5.1000000000000005,17.8734,13.9437 +2012,12,2,21,30,22.400000000000002,1.26,0.019,0.62,50,879,362,0,8,-7.1000000000000005,131,473,0,299,0.262,13.27,69.18,0.89,0.24,883,0.8,222,4.5,18.8316,14.5986 +2012,12,2,22,30,19,1.28,0.019,0.62,38,729,186,0,8,-7,93,347,0,164,0.264,16.51,78.28,0.89,0.24,882,0.8,219,3.1,9.0351,6.9026 +2012,12,2,23,30,15,1.31,0.018000000000000002,0.62,12,291,20,7,7,-5.800000000000001,11,1,7,11,0.265,23.400000000000002,88.51,0.89,0.24,882,0.8,218,2.3000000000000003,0.0000,0.0000 +2012,12,3,0,30,13.100000000000001,1.34,0.019,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.267,25.35,100.13,0.89,0.24,882,0.8,218,2.5,0.0000,0.0000 +2012,12,3,1,30,12.4,1.35,0.02,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.268,25.86,112.04,0.89,0.24,882,0.8,217,2.8000000000000003,0.0000,0.0000 +2012,12,3,2,30,12,1.35,0.023,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.268,26.63,124.28,0.9,0.24,882,0.8,220,3.2,0.0000,0.0000 +2012,12,3,3,30,11.4,1.34,0.025,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.268,28.34,136.68,0.9,0.24,882,0.7000000000000001,227,3.7,0.0000,0.0000 +2012,12,3,4,30,10.700000000000001,1.33,0.024,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.268,30.060000000000002,148.93,0.9,0.24,882,0.7000000000000001,234,3.9000000000000004,0.0000,0.0000 +2012,12,3,5,30,9.9,1.3,0.023,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.268,31.3,160.33,0.9,0.24,882,0.7000000000000001,238,3.7,0.0000,0.0000 +2012,12,3,6,30,9.3,1.27,0.021,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.267,31.88,167.72,0.89,0.24,882,0.7000000000000001,240,3.7,0.0000,0.0000 +2012,12,3,7,30,8.8,1.23,0.019,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.266,32.43,163.83,0.89,0.24,881,0.6000000000000001,243,3.9000000000000004,0.0000,0.0000 +2012,12,3,8,30,8.4,1.21,0.017,0.62,0,0,0,0,0,-7,0,0,0,0,0.267,32.81,153.23,0.88,0.24,881,0.6000000000000001,248,3.9000000000000004,0.0000,0.0000 +2012,12,3,9,30,8,1.19,0.016,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.267,33.15,141.15,0.88,0.24,881,0.7000000000000001,254,3.9000000000000004,0.0000,0.0000 +2012,12,3,10,30,7.800000000000001,1.1400000000000001,0.015,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.267,33.32,128.78,0.88,0.24,881,0.7000000000000001,260,3.8000000000000003,0.0000,0.0000 +2012,12,3,11,30,7.6000000000000005,1.1,0.015,0.62,0,0,0,0,1,-7.300000000000001,0,0,0,0,0.266,33.86,116.46000000000001,0.88,0.24,881,0.8,267,3.7,0.0000,0.0000 +2012,12,3,12,30,7.5,1.08,0.015,0.62,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.265,34.730000000000004,104.41,0.88,0.24,882,0.9,274,3.7,0.0000,0.0000 +2012,12,3,13,30,8.3,1.11,0.015,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.263,34.39,92.86,0.88,0.24,883,0.9,280,3.9000000000000004,0.0000,0.0000 +2012,12,3,14,30,10.8,1.18,0.016,0.62,30,623,117,7,7,-5.5,72,56,7,80,0.262,31.330000000000002,81.96000000000001,0.89,0.24,883,1,282,4.4,0.0000,0.0000 +2012,12,3,15,30,14.4,1.21,0.017,0.62,45,827,295,0,3,-4.1000000000000005,173,139,0,216,0.261,27.5,72.36,0.9,0.24,884,1.1,283,5,10.2350,7.9020 +2012,12,3,16,30,18.1,1.23,0.017,0.62,53,912,446,0,3,-1.8,249,197,0,334,0.26,25.88,64.42,0.91,0.24,883,1.2000000000000002,290,5.9,18.6621,14.5347 +2012,12,3,17,30,20.700000000000003,1.23,0.017,0.62,57,950,548,7,2,0,214,606,7,527,0.259,25.07,58.88,0.91,0.24,883,1.3,295,6.4,30.1551,23.5683 +2012,12,3,18,30,22,1.28,0.022,0.62,63,955,590,0,8,-0.4,217,448,0,465,0.259,22.52,56.480000000000004,0.92,0.24,882,1.4000000000000001,292,5.9,28.7327,22.4817 +2012,12,3,19,30,22.3,1.24,0.022,0.62,62,948,570,0,8,-0.4,165,602,0,488,0.26,22.05,57.61,0.92,0.24,882,1.4000000000000001,289,5.2,28.6776,22.4269 +2012,12,3,20,30,21.8,1.2,0.024,0.62,60,917,489,0,7,-0.30000000000000004,239,245,0,354,0.261,22.990000000000002,62.08,0.92,0.24,882,1.3,285,4.7,22.8719,17.8422 +2012,12,3,21,30,20.700000000000003,1.19,0.027,0.62,54,846,354,0,8,-0.1,137,482,0,308,0.263,24.84,69.24,0.93,0.24,882,1.2000000000000002,281,4,15.4184,11.9518 +2012,12,3,22,30,18,1.19,0.026000000000000002,0.62,40,696,182,0,8,0.4,109,125,0,134,0.265,30.48,78.31,0.92,0.24,882,1.1,278,2.8000000000000003,7.8387,5.9881 +2012,12,3,23,30,14.8,1.19,0.024,0.62,12,252,19,0,0,0.6000000000000001,12,252,0,19,0.266,37.95,88.52,0.92,0.24,883,1.1,281,1.9000000000000001,0.0000,0.0000 +2012,12,4,0,30,12.9,1.17,0.025,0.62,0,0,0,0,0,0.4,0,0,0,0,0.268,42.300000000000004,100.13,0.92,0.24,884,1.1,296,1.8,0.0000,0.0000 +2012,12,4,1,30,11.9,1.16,0.026000000000000002,0.62,0,0,0,0,8,0.6000000000000001,0,0,0,0,0.27,45.97,112.02,0.92,0.24,885,1.2000000000000002,154,1.9000000000000001,0.0000,0.0000 +2012,12,4,2,30,11.100000000000001,1.1400000000000001,0.027,0.62,0,0,0,0,0,1.1,0,0,0,0,0.271,49.97,124.26,0.92,0.24,886,1.2000000000000002,20,2.7,0.0000,0.0000 +2012,12,4,3,30,10.3,1.12,0.026000000000000002,0.62,0,0,0,0,7,1.4000000000000001,0,0,0,0,0.273,54.09,136.65,0.92,0.24,887,1.2000000000000002,48,3.5,0.0000,0.0000 +2012,12,4,4,30,9.1,1.12,0.025,0.62,0,0,0,0,7,1.5,0,0,0,0,0.274,58.92,148.92000000000002,0.91,0.24,887,1.2000000000000002,57,3.5,0.0000,0.0000 +2012,12,4,5,30,7.9,1.12,0.025,0.62,0,0,0,0,7,1.1,0,0,0,0,0.276,62.230000000000004,160.35,0.91,0.24,888,1.2000000000000002,56,2.9000000000000004,0.0000,0.0000 +2012,12,4,6,30,6.800000000000001,1.12,0.024,0.62,0,0,0,0,7,0.6000000000000001,0,0,0,0,0.277,64.58,167.83,0.91,0.24,889,1.2000000000000002,50,2.2,0.0000,0.0000 +2012,12,4,7,30,5.7,1.1300000000000001,0.022,0.62,0,0,0,0,8,0.2,0,0,0,0,0.279,67.92,163.99,0.91,0.24,889,1.2000000000000002,40,1.8,0.0000,0.0000 +2012,12,4,8,30,4.9,1.1400000000000001,0.022,0.62,0,0,0,0,1,0.30000000000000004,0,0,0,0,0.281,71.95,153.38,0.91,0.24,890,1.1,28,1.6,0.0000,0.0000 +2012,12,4,9,30,4.3,1.16,0.021,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.28200000000000003,76.78,141.3,0.91,0.24,891,1.1,17,1.6,0.0000,0.0000 +2012,12,4,10,30,3.9000000000000004,1.16,0.021,0.62,0,0,0,0,0,1.1,0,0,0,0,0.28300000000000003,81.89,128.92000000000002,0.91,0.24,891,1.1,12,1.8,0.0000,0.0000 +2012,12,4,11,30,3.6,1.16,0.02,0.62,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.28300000000000003,87.24,116.60000000000001,0.9,0.24,892,1.1,11,2,0.0000,0.0000 +2012,12,4,12,30,3.3000000000000003,1.1500000000000001,0.019,0.62,0,0,0,0,0,2.2,0,0,0,0,0.28300000000000003,92.27,104.56,0.9,0.24,893,1,14,2,0.0000,0.0000 +2012,12,4,13,30,3.7,1.1400000000000001,0.017,0.62,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.281,91.09,93.01,0.9,0.24,893,1,21,2.3000000000000003,0.0000,0.0000 +2012,12,4,14,30,6,1.1300000000000001,0.016,0.62,30,619,114,0,1,2.3000000000000003,30,619,0,114,0.278,77.11,82.12,0.9,0.24,894,0.9,31,2.8000000000000003,0.0000,0.0000 +2012,12,4,15,30,9.1,1.12,0.016,0.62,44,833,294,0,3,1,174,131,0,213,0.276,56.94,72.52,0.9,0.24,895,0.9,49,2.9000000000000004,10.8209,8.3523 +2012,12,4,16,30,11.700000000000001,1.12,0.015,0.62,51,924,448,0,3,-1.1,248,207,0,337,0.274,41.03,64.58,0.9,0.24,895,0.9,65,2.5,17.8907,13.9322 +2012,12,4,17,30,13.600000000000001,1.1300000000000001,0.015,0.62,55,966,552,0,3,-1.9000000000000001,293,262,0,428,0.272,34.09,59.03,0.9,0.24,895,0.9,69,1.6,29.2406,22.8517 +2012,12,4,18,30,15,1.16,0.016,0.62,58,980,597,0,1,-2.1,58,980,0,597,0.27,30.85,56.61,0.9,0.24,894,0.9,79,0.9,26.1281,20.4425 +2012,12,4,19,30,16.2,1.18,0.016,0.62,57,974,577,0,0,-1.9000000000000001,57,974,0,577,0.268,28.89,57.72,0.9,0.24,893,0.9,144,0.9,27.2629,21.3194 +2012,12,4,20,30,16.7,1.19,0.016,0.62,54,943,495,0,0,-1.8,54,943,0,495,0.266,28.18,62.160000000000004,0.91,0.24,893,0.9,201,1.4000000000000001,19.2678,15.0298 +2012,12,4,21,30,16.2,1.2,0.019,0.62,50,871,358,0,1,-1.9000000000000001,50,871,0,358,0.266,28.96,69.28,0.91,0.24,892,0.9,193,1.6,15.8742,12.3042 +2012,12,4,22,30,14.100000000000001,1.2,0.02,0.62,38,717,183,0,7,-1.6,81,500,0,182,0.266,33.81,78.34,0.91,0.24,892,0.9,176,1.2000000000000002,6.4040,4.8919 +2012,12,4,23,30,11.200000000000001,1.2,0.018000000000000002,0.62,12,282,20,7,7,-0.8,9,0,7,9,0.265,43.37,88.51,0.91,0.24,893,0.9,161,1.1,0.0000,0.0000 +2012,12,5,0,30,9.4,1.21,0.017,0.62,0,0,0,0,7,-2,0,0,0,0,0.264,44.96,100.12,0.9,0.24,893,0.9,152,1.2000000000000002,0.0000,0.0000 +2012,12,5,1,30,8.200000000000001,1.21,0.017,0.62,0,0,0,0,1,-2.3000000000000003,0,0,0,0,0.265,47.53,112,0.9,0.24,893,0.9,149,1.3,0.0000,0.0000 +2012,12,5,2,30,7.1000000000000005,1.16,0.016,0.62,0,0,0,0,7,-2.7,0,0,0,0,0.265,49.730000000000004,124.24000000000001,0.89,0.24,893,0.9,151,1.4000000000000001,0.0000,0.0000 +2012,12,5,3,30,6.2,1.12,0.017,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.266,50.71,136.63,0.89,0.24,893,0.9,157,1.5,0.0000,0.0000 +2012,12,5,4,30,5.4,1.07,0.018000000000000002,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.265,51.32,148.9,0.9,0.24,893,0.9,168,1.5,0.0000,0.0000 +2012,12,5,5,30,4.800000000000001,1.05,0.018000000000000002,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.265,51.800000000000004,160.37,0.9,0.24,893,0.9,177,1.5,0.0000,0.0000 +2012,12,5,6,30,4.3,1.05,0.019,0.62,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.264,52.57,167.94,0.9,0.24,893,0.9,184,1.6,0.0000,0.0000 +2012,12,5,7,30,4,1.07,0.019,0.62,0,0,0,0,4,-4.7,0,0,0,0,0.263,53.120000000000005,164.15,0.9,0.24,893,0.9,190,1.7000000000000002,0.0000,0.0000 +2012,12,5,8,30,3.7,1.08,0.02,0.62,0,0,0,0,4,-4.7,0,0,0,0,0.261,54.04,153.53,0.91,0.24,893,0.9,195,1.8,0.0000,0.0000 +2012,12,5,9,30,3.4000000000000004,1.09,0.02,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.26,55.26,141.44,0.91,0.24,892,1,198,1.8,0.0000,0.0000 +2012,12,5,10,30,3.1,1.11,0.02,0.62,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.26,56.84,129.06,0.91,0.24,892,1,202,1.8,0.0000,0.0000 +2012,12,5,11,30,2.9000000000000004,1.12,0.019,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.259,58.29,116.75,0.91,0.24,892,1,207,1.8,0.0000,0.0000 +2012,12,5,12,30,2.8000000000000003,1.12,0.02,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.258,59.58,104.71000000000001,0.91,0.24,892,1,212,1.9000000000000001,0.0000,0.0000 +2012,12,5,13,30,3.6,1.1300000000000001,0.021,0.62,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.258,57.1,93.16,0.91,0.24,891,1,215,2.3000000000000003,0.0000,0.0000 +2012,12,5,14,30,5.6000000000000005,1.1400000000000001,0.022,0.62,31,589,111,7,7,-3.9000000000000004,67,23,7,70,0.258,50.32,82.27,0.92,0.24,891,1.1,216,3.1,0.0000,0.0000 +2012,12,5,15,30,8.3,1.1400000000000001,0.023,0.62,48,809,289,0,8,-3.8000000000000003,154,189,0,211,0.258,42.15,72.68,0.92,0.24,891,1.1,211,3.9000000000000004,10.6547,8.2221 +2012,12,5,16,30,11.4,1.1400000000000001,0.024,0.62,58,897,441,0,7,-4,230,184,0,309,0.258,33.79,64.74,0.92,0.24,890,1.2000000000000002,208,4.7,18.0305,14.0392 +2012,12,5,17,30,14.200000000000001,1.1500000000000001,0.025,0.62,64,940,545,0,7,-3.6,217,419,0,431,0.257,28.91,59.18,0.93,0.24,889,1.2000000000000002,209,5.4,23.7277,18.5419 +2012,12,5,18,30,16.3,1.21,0.027,0.62,67,954,590,0,7,-3.1,199,503,0,475,0.255,26.26,56.74,0.92,0.24,888,1.2000000000000002,211,5.5,33.5234,26.2270 +2012,12,5,19,30,17.8,1.22,0.025,0.62,64,950,570,0,8,-3.1,199,532,0,482,0.253,23.91,57.82,0.92,0.24,886,1.2000000000000002,214,5.4,32.2164,25.1918 +2012,12,5,20,30,18.5,1.23,0.023,0.62,59,922,489,0,0,-3.2,59,922,0,489,0.251,22.67,62.230000000000004,0.92,0.24,885,1.2000000000000002,217,5.1000000000000005,26.9283,21.0043 +2012,12,5,21,30,18.3,1.23,0.017,0.62,48,863,353,0,0,-3.3000000000000003,48,863,0,353,0.249,22.88,69.33,0.92,0.24,884,1.2000000000000002,218,4.4,18.4447,14.2959 +2012,12,5,22,30,15.700000000000001,1.24,0.016,0.62,36,716,181,0,0,-3,36,716,0,181,0.248,27.46,78.35000000000001,0.91,0.24,884,1.2000000000000002,212,3,8.6969,6.6431 +2012,12,5,23,30,12.3,1.23,0.016,0.62,12,285,19,7,3,-2.4000000000000004,8,0,7,8,0.247,35.82,88.52,0.9,0.24,883,1.1,204,2.3000000000000003,0.0000,0.0000 +2012,12,6,0,30,11,1.21,0.018000000000000002,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.248,38.5,100.10000000000001,0.91,0.24,883,1.1,200,2.6,0.0000,0.0000 +2012,12,6,1,30,10.4,1.21,0.019,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.248,40.58,111.98,0.9,0.24,883,1.1,201,2.8000000000000003,0.0000,0.0000 +2012,12,6,2,30,9.700000000000001,1.21,0.021,0.62,0,0,0,0,1,-2.1,0,0,0,0,0.249,43.45,124.21000000000001,0.9,0.24,883,1.1,206,2.8000000000000003,0.0000,0.0000 +2012,12,6,3,30,8.9,1.22,0.023,0.62,0,0,0,0,7,-1.9000000000000001,0,0,0,0,0.25,46.68,136.6,0.9,0.24,883,1.1,213,2.8000000000000003,0.0000,0.0000 +2012,12,6,4,30,8.200000000000001,1.23,0.025,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.251,49.27,148.87,0.9,0.24,883,1,222,2.7,0.0000,0.0000 +2012,12,6,5,30,7.7,1.21,0.028,0.62,0,0,0,0,0,-2,0,0,0,0,0.251,50.22,160.37,0.91,0.24,882,1,232,2.7,0.0000,0.0000 +2012,12,6,6,30,7.300000000000001,1.19,0.028,0.62,0,0,0,0,1,-2.5,0,0,0,0,0.251,49.7,168.04,0.91,0.24,882,1,246,2.6,0.0000,0.0000 +2012,12,6,7,30,6.9,1.21,0.023,0.62,0,0,0,0,4,-3.4000000000000004,0,0,0,0,0.251,47.78,164.31,0.9,0.24,881,1,261,2.6,0.0000,0.0000 +2012,12,6,8,30,6.7,1.27,0.023,0.62,0,0,0,0,4,-4.5,0,0,0,0,0.251,44.59,153.67000000000002,0.89,0.24,881,0.9,274,2.7,0.0000,0.0000 +2012,12,6,9,30,6.6000000000000005,1.34,0.027,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.251,42.33,141.58,0.89,0.24,881,0.9,284,2.9000000000000004,0.0000,0.0000 +2012,12,6,10,30,6.5,1.43,0.032,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.251,41.83,129.2,0.89,0.24,881,0.9,290,3.2,0.0000,0.0000 +2012,12,6,11,30,6.300000000000001,1.5,0.037,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.25,42.47,116.89,0.89,0.24,880,0.8,296,3.4000000000000004,0.0000,0.0000 +2012,12,6,12,30,6,1.53,0.038,0.62,0,0,0,0,1,-5.5,0,0,0,0,0.248,43.64,104.86,0.88,0.24,880,0.8,300,3.5,0.0000,0.0000 +2012,12,6,13,30,6.5,1.5,0.036000000000000004,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.246,42.230000000000004,93.31,0.88,0.24,880,0.8,303,3.9000000000000004,0.0000,0.0000 +2012,12,6,14,30,8.5,1.44,0.033,0.62,33,577,109,7,8,-5.4,70,62,7,78,0.244,36.93,82.42,0.88,0.24,881,0.8,307,4.5,0.0000,0.0000 +2012,12,6,15,30,11.8,1.3900000000000001,0.031,0.62,51,812,290,0,1,-5.300000000000001,51,812,0,290,0.243,29.89,72.83,0.89,0.24,881,0.8,310,4.3,10.5389,8.1307 +2012,12,6,16,30,16,1.36,0.03,0.62,60,904,444,7,3,-5,188,550,7,422,0.241,23.27,64.89,0.89,0.24,881,0.9,326,3.9000000000000004,16.5132,12.8561 +2012,12,6,17,30,19.5,1.34,0.031,0.62,66,948,550,0,3,-3.6,300,235,0,420,0.24,20.72,59.32,0.9,0.24,880,0.9,341,3.8000000000000003,23.8739,18.6546 +2012,12,6,18,30,21.1,1.32,0.033,0.62,70,961,595,0,3,-2.8000000000000003,326,237,0,455,0.23800000000000002,19.92,56.86,0.91,0.24,880,0.9,337,3.6,26.6554,20.8526 +2012,12,6,19,30,21.8,1.3,0.035,0.62,70,947,573,0,8,-3,194,518,0,470,0.23800000000000002,18.85,57.910000000000004,0.91,0.24,879,1,332,3.4000000000000004,26.8980,21.0320 +2012,12,6,20,30,21.700000000000003,1.29,0.036000000000000004,0.62,66,913,491,0,7,-3.2,180,517,0,421,0.23700000000000002,18.68,62.29,0.91,0.24,879,1,333,3.1,26.5898,20.7393 +2012,12,6,21,30,20.400000000000002,1.28,0.038,0.62,59,838,354,0,0,-3.2,59,838,0,354,0.23700000000000002,20.19,69.36,0.92,0.24,879,1,343,2.1,18.1791,14.0893 +2012,12,6,22,30,17.3,1.28,0.042,0.62,45,664,179,0,8,-0.6000000000000001,111,144,0,140,0.23700000000000002,29.71,78.37,0.92,0.24,879,1.1,189,1.3,8.6488,6.6062 +2012,12,6,23,30,14.3,1.29,0.044,0.62,13,199,18,7,7,-0.7000000000000001,10,0,7,10,0.23600000000000002,35.58,88.51,0.92,0.24,879,1.1,39,1.4000000000000001,0.0000,0.0000 +2012,12,7,0,30,12.3,1.3,0.044,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.23700000000000002,39.49,100.08,0.92,0.24,880,1.1,55,1.9000000000000001,0.0000,0.0000 +2012,12,7,1,30,10.600000000000001,1.3,0.043000000000000003,0.62,0,0,0,0,7,-0.5,0,0,0,0,0.23700000000000002,46.11,111.95,0.91,0.24,881,1.1,62,2.4000000000000004,0.0000,0.0000 +2012,12,7,2,30,9.1,1.3,0.041,0.62,0,0,0,0,7,0.1,0,0,0,0,0.23700000000000002,53.160000000000004,124.17,0.91,0.24,881,1.1,66,2.6,0.0000,0.0000 +2012,12,7,3,30,7.800000000000001,1.29,0.041,0.62,0,0,0,0,7,0.2,0,0,0,0,0.23800000000000002,58.71,136.56,0.91,0.24,881,1.1,70,2.5,0.0000,0.0000 +2012,12,7,4,30,6.800000000000001,1.3,0.04,0.62,0,0,0,0,1,-0.1,0,0,0,0,0.23900000000000002,61.370000000000005,148.84,0.9,0.24,881,1,73,2.4000000000000004,0.0000,0.0000 +2012,12,7,5,30,5.800000000000001,1.31,0.039,0.62,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.241,63.15,160.37,0.9,0.24,881,1,76,2.1,0.0000,0.0000 +2012,12,7,6,30,4.9,1.32,0.04,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.242,65.08,168.12,0.89,0.24,881,1,76,1.7000000000000002,0.0000,0.0000 +2012,12,7,7,30,4.1000000000000005,1.34,0.04,0.62,0,0,0,0,8,-1.4000000000000001,0,0,0,0,0.244,67.48,164.46,0.89,0.24,881,1,75,1.4000000000000001,0.0000,0.0000 +2012,12,7,8,30,3.5,1.34,0.041,0.62,0,0,0,0,8,-1.5,0,0,0,0,0.245,69.7,153.82,0.9,0.24,881,1,74,1.2000000000000002,0.0000,0.0000 +2012,12,7,9,30,3,1.33,0.041,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.245,71.89,141.72,0.9,0.24,880,1,70,1,0.0000,0.0000 +2012,12,7,10,30,2.6,1.3,0.041,0.62,0,0,0,0,8,-1.6,0,0,0,0,0.245,73.97,129.34,0.9,0.24,880,1,60,0.8,0.0000,0.0000 +2012,12,7,11,30,2.4000000000000004,1.28,0.04,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.245,75.15,117.03,0.9,0.24,880,1,44,0.7000000000000001,0.0000,0.0000 +2012,12,7,12,30,2.3000000000000003,1.26,0.039,0.62,0,0,0,0,8,-1.5,0,0,0,0,0.245,75.9,105,0.9,0.24,881,1,26,0.7000000000000001,0.0000,0.0000 +2012,12,7,13,30,2.7,1.25,0.038,0.62,0,0,0,0,7,-1.5,0,0,0,0,0.246,73.84,93.46000000000001,0.9,0.24,881,1,11,1,0.0000,0.0000 +2012,12,7,14,30,4.1000000000000005,1.27,0.038,0.62,33,545,104,7,7,-1.5,41,2,7,41,0.247,66.86,82.57000000000001,0.9,0.24,881,1,179,1.3,0.0000,0.0000 +2012,12,7,15,30,6.5,1.29,0.036000000000000004,0.62,52,789,283,0,7,-1.6,146,238,0,216,0.249,56.410000000000004,72.98,0.9,0.24,881,1,328,1.4000000000000001,14.4645,11.1567 +2012,12,7,16,30,9.5,1.33,0.033,0.62,61,888,436,0,3,-1.7000000000000002,240,221,0,334,0.25,45.68,65.03,0.9,0.24,881,1.1,283,1.8,22.5271,17.5361 +2012,12,7,17,30,12.600000000000001,1.37,0.03,0.62,65,943,544,0,1,-1.9000000000000001,65,943,0,544,0.251,36.62,59.46,0.9,0.24,880,1,265,2.7,23.2461,18.1628 +2012,12,7,18,30,15.600000000000001,1.44,0.037,0.62,71,951,589,0,0,-2,71,951,0,589,0.252,29.86,56.980000000000004,0.91,0.24,880,1,272,3.4000000000000004,25.5176,19.9615 +2012,12,7,19,30,17.8,1.44,0.035,0.62,69,952,573,0,0,-2,69,952,0,573,0.252,26.01,58,0.9,0.24,879,0.9,278,3.9000000000000004,26.2158,20.4977 +2012,12,7,20,30,18.7,1.43,0.032,0.62,64,924,492,0,0,-2.1,64,924,0,492,0.252,24.42,62.35,0.9,0.24,878,0.9,278,4.1000000000000005,22.8832,17.8476 +2012,12,7,21,30,18.3,1.42,0.028,0.62,54,859,357,0,0,-2.3000000000000003,54,859,0,357,0.252,24.580000000000002,69.39,0.9,0.24,878,0.9,276,3.4000000000000004,18.2258,14.1250 +2012,12,7,22,30,15.4,1.41,0.026000000000000002,0.62,40,709,183,0,0,-2,40,709,0,183,0.252,30.2,78.37,0.9,0.24,878,0.9,270,2,6.6891,5.1092 +2012,12,7,23,30,12.200000000000001,1.3800000000000001,0.024,0.62,12,269,19,0,0,-1.6,12,269,0,19,0.254,38.43,88.5,0.89,0.24,878,0.9,263,1.4000000000000001,0.0000,0.0000 +2012,12,8,0,30,11,1.35,0.022,0.62,0,0,0,0,1,-2.5,0,0,0,0,0.255,38.72,100.06,0.89,0.24,879,0.9,260,1.4000000000000001,0.0000,0.0000 +2012,12,8,1,30,10.3,1.32,0.02,0.62,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.255,39.800000000000004,111.91,0.89,0.24,879,0.9,262,1.4000000000000001,0.0000,0.0000 +2012,12,8,2,30,9.5,1.31,0.02,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.256,41.52,124.13000000000001,0.89,0.24,879,0.9,263,1.4000000000000001,0.0000,0.0000 +2012,12,8,3,30,8.6,1.31,0.02,0.62,0,0,0,0,0,-3,0,0,0,0,0.257,43.77,136.51,0.89,0.24,880,0.9,261,1.3,0.0000,0.0000 +2012,12,8,4,30,7.800000000000001,1.3,0.02,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.259,45.94,148.8,0.89,0.24,880,0.9,257,1.3,0.0000,0.0000 +2012,12,8,5,30,7.1000000000000005,1.29,0.021,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.262,48.21,160.36,0.89,0.24,880,0.9,255,1.2000000000000002,0.0000,0.0000 +2012,12,8,6,30,6.300000000000001,1.29,0.022,0.62,0,0,0,0,0,-3,0,0,0,0,0.265,51.29,168.20000000000002,0.89,0.24,880,0.9,261,1.1,0.0000,0.0000 +2012,12,8,7,30,5.4,1.29,0.022,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.266,55.230000000000004,164.6,0.9,0.24,880,0.9,277,1.1,0.0000,0.0000 +2012,12,8,8,30,4.5,1.29,0.022,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.267,59.85,153.96,0.9,0.24,880,0.9,306,1.1,0.0000,0.0000 +2012,12,8,9,30,3.7,1.3,0.023,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.268,64.74,141.86,0.9,0.24,880,0.9,172,1.1,0.0000,0.0000 +2012,12,8,10,30,2.8000000000000003,1.31,0.023,0.62,0,0,0,0,0,-2,0,0,0,0,0.268,70.67,129.48,0.9,0.24,880,0.9,44,1.1,0.0000,0.0000 +2012,12,8,11,30,1.8,1.29,0.023,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.268,77.59,117.17,0.9,0.24,880,0.9,81,1.2000000000000002,0.0000,0.0000 +2012,12,8,12,30,1.1,1.27,0.024,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.269,83.33,105.14,0.9,0.24,880,0.9,101,1.2000000000000002,0.0000,0.0000 +2012,12,8,13,30,1.6,1.25,0.026000000000000002,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.27,82.41,93.60000000000001,0.9,0.24,881,0.9,117,1.2000000000000002,0.0000,0.0000 +2012,12,8,14,30,3.6,1.26,0.027,0.62,31,572,104,0,0,-0.7000000000000001,31,572,0,104,0.271,73.29,82.71000000000001,0.9,0.24,881,0.9,133,1.5,0.0000,0.0000 +2012,12,8,15,30,6.6000000000000005,1.27,0.028,0.62,49,805,283,0,1,-0.4,49,805,0,283,0.272,60.89,73.12,0.91,0.24,881,0.9,154,1.9000000000000001,10.7585,8.2962 +2012,12,8,16,30,10.3,1.28,0.028,0.62,59,902,438,0,1,0.1,59,902,0,438,0.273,49.1,65.17,0.91,0.24,881,0.9,178,2.4000000000000004,17.8111,13.8633 +2012,12,8,17,30,13.9,1.28,0.027,0.62,64,950,545,0,1,0.1,64,950,0,545,0.274,38.69,59.58,0.91,0.24,880,0.9,207,3.2,30.0853,23.5046 +2012,12,8,18,30,16.6,1.29,0.029,0.62,67,969,594,0,0,-0.9,67,969,0,594,0.274,30.36,57.08,0.91,0.24,879,0.8,230,4.1000000000000005,33.0126,25.8231 +2012,12,8,19,30,18,1.29,0.026000000000000002,0.62,64,966,575,0,0,-2,64,966,0,575,0.275,25.72,58.08,0.91,0.24,878,0.8,242,4.7,31.9457,24.9767 +2012,12,8,20,30,18.5,1.27,0.024,0.62,60,938,494,0,0,-2.8000000000000003,60,938,0,494,0.277,23.36,62.4,0.91,0.24,877,0.8,248,5.2,26.7319,20.8485 +2012,12,8,21,30,18.1,1.26,0.022,0.62,51,879,360,0,0,-3.7,51,879,0,360,0.278,22.44,69.41,0.9,0.24,876,0.7000000000000001,251,4.800000000000001,18.3754,14.2404 +2012,12,8,22,30,15.5,1.24,0.02,0.62,38,732,186,0,0,-4.2,38,732,0,186,0.279,25.41,78.37,0.9,0.24,876,0.7000000000000001,247,3.4000000000000004,8.7437,6.6784 +2012,12,8,23,30,11.9,1.2,0.018000000000000002,0.62,12,297,20,0,0,-4,12,297,0,20,0.281,32.62,88.48,0.89,0.24,876,0.7000000000000001,241,2.3000000000000003,0.0000,0.0000 +2012,12,9,0,30,10.3,1.16,0.017,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.28200000000000003,34.61,100.03,0.89,0.24,876,0.6000000000000001,237,2.4000000000000004,0.0000,0.0000 +2012,12,9,1,30,9.700000000000001,1.1300000000000001,0.016,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.28300000000000003,34.62,111.87,0.88,0.24,876,0.6000000000000001,237,2.6,0.0000,0.0000 +2012,12,9,2,30,9.200000000000001,1.11,0.016,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.28400000000000003,34.58,124.08,0.89,0.24,877,0.6000000000000001,242,2.8000000000000003,0.0000,0.0000 +2012,12,9,3,30,8.6,1.09,0.015,0.62,0,0,0,0,1,-6,0,0,0,0,0.28400000000000003,35.07,136.47,0.89,0.24,877,0.6000000000000001,250,3.1,0.0000,0.0000 +2012,12,9,4,30,8,1.07,0.015,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.28500000000000003,35.99,148.76,0.9,0.24,877,0.6000000000000001,258,3.3000000000000003,0.0000,0.0000 +2012,12,9,5,30,7.2,1.06,0.015,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.28500000000000003,37.7,160.34,0.9,0.24,877,0.6000000000000001,265,3.3000000000000003,0.0000,0.0000 +2012,12,9,6,30,6.300000000000001,1.04,0.014,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.28600000000000003,39.730000000000004,168.28,0.89,0.24,877,0.6000000000000001,274,3.1,0.0000,0.0000 +2012,12,9,7,30,5.300000000000001,1.03,0.013000000000000001,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.28600000000000003,41.83,164.74,0.89,0.24,878,0.6000000000000001,284,2.9000000000000004,0.0000,0.0000 +2012,12,9,8,30,4.4,1.02,0.013000000000000001,0.62,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.28700000000000003,43.12,154.1,0.89,0.24,878,0.5,296,2.8000000000000003,0.0000,0.0000 +2012,12,9,9,30,3.6,1.04,0.014,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.28800000000000003,44.230000000000004,142,0.89,0.24,879,0.6000000000000001,315,3.1,0.0000,0.0000 +2012,12,9,10,30,2.6,1.1,0.016,0.62,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.28800000000000003,48.96,129.61,0.9,0.24,879,0.6000000000000001,340,3.8000000000000003,0.0000,0.0000 +2012,12,9,11,30,1.4000000000000001,1.17,0.02,0.62,0,0,0,0,4,-5.1000000000000005,0,0,0,0,0.289,61.79,117.3,0.91,0.24,880,0.6000000000000001,179,4.3,0.0000,0.0000 +2012,12,9,12,30,0.30000000000000004,1.24,0.024,0.62,0,0,0,0,4,-3.6,0,0,0,0,0.291,74.86,105.28,0.93,0.24,881,0.7000000000000001,10,4.5,0.0000,0.0000 +2012,12,9,13,30,-0.2,1.27,0.024,0.62,0,0,0,0,4,-3.5,0,0,0,0,0.293,78.38,93.74,0.93,0.24,882,0.7000000000000001,15,4.800000000000001,0.0000,0.0000 +2012,12,9,14,30,0.4,1.26,0.022,0.62,30,599,104,0,0,-4.800000000000001,30,599,0,104,0.295,68.29,82.85000000000001,0.92,0.24,883,0.6000000000000001,21,5.5,0.0000,0.0000 +2012,12,9,15,30,2,1.23,0.02,0.62,46,835,286,0,1,-7.6000000000000005,46,835,0,286,0.298,49.07,73.26,0.91,0.24,883,0.6000000000000001,26,5.800000000000001,14.0773,10.8530 +2012,12,9,16,30,3.7,1.21,0.02,0.62,55,930,443,0,1,-9,55,930,0,443,0.301,38.87,65.3,0.91,0.24,884,0.6000000000000001,29,5.6000000000000005,23.3328,18.1590 +2012,12,9,17,30,5.2,1.2,0.021,0.62,60,973,551,0,7,-9.600000000000001,200,505,0,455,0.305,33.42,59.7,0.91,0.24,883,0.6000000000000001,32,5.2,30.1199,23.5301 +2012,12,9,18,30,6.2,1.22,0.022,0.62,63,987,598,7,2,-9.9,221,692,7,596,0.309,30.490000000000002,57.18,0.91,0.24,883,0.6000000000000001,35,4.7,33.2759,26.0279 +2012,12,9,19,30,6.800000000000001,1.23,0.024,0.62,63,979,580,0,4,-10.100000000000001,291,333,0,467,0.314,28.810000000000002,58.15,0.91,0.24,882,0.6000000000000001,37,4,32.0435,25.0522 +2012,12,9,20,30,6.800000000000001,1.24,0.026000000000000002,0.62,61,938,495,0,4,-10.200000000000001,288,133,0,349,0.319,28.53,62.440000000000005,0.91,0.24,882,0.7000000000000001,38,3.6,26.8318,20.9257 +2012,12,9,21,30,6.1000000000000005,1.22,0.025,0.62,53,870,359,0,0,-10.4,53,870,0,359,0.324,29.580000000000002,69.42,0.91,0.24,882,0.7000000000000001,39,3.8000000000000003,18.5266,14.3572 +2012,12,9,22,30,4.4,1.23,0.028,0.62,41,703,182,0,0,-10.600000000000001,41,703,0,182,0.329,32.68,78.36,0.91,0.24,883,0.8,40,4.3,8.8870,6.7879 +2012,12,9,23,30,2.2,1.21,0.035,0.62,13,232,19,7,4,-10.9,8,0,7,8,0.333,37.29,88.45,0.92,0.24,883,0.8,41,5.1000000000000005,0.0000,0.0000 +2012,12,10,0,30,0.1,1.19,0.045,0.62,0,0,0,0,4,-11.200000000000001,0,0,0,0,0.336,42.43,99.99000000000001,0.93,0.72,884,0.8,37,6,0.0000,0.0000 +2012,12,10,1,30,-1.6,1.16,0.066,0.62,0,0,0,0,4,-11.100000000000001,0,0,0,0,0.339,48.17,111.82000000000001,0.9500000000000001,0.72,886,0.8,27,6.800000000000001,0.0000,0.0000 +2012,12,10,2,30,-3,1.11,0.101,0.62,0,0,0,0,4,-10.4,0,0,0,0,0.342,56.5,124.03,0.96,0.72,887,0.8,15,7,0.0000,0.0000 +2012,12,10,3,30,-3.8000000000000003,1.1,0.137,0.62,0,0,0,0,4,-9.4,0,0,0,0,0.34400000000000003,65.15,136.41,0.97,0.72,888,0.8,8,6.4,0.0000,0.0000 +2012,12,10,4,30,-4.1000000000000005,1.11,0.128,0.62,0,0,0,0,7,-9.4,0,0,0,0,0.343,66.72,148.71,0.97,0.72,889,0.7000000000000001,5,5.5,0.0000,0.0000 +2012,12,10,5,30,-4.2,1.1400000000000001,0.095,0.62,0,0,0,0,1,-10.3,0,0,0,0,0.335,62.71,160.32,0.97,0.72,889,0.6000000000000001,181,4.5,0.0000,0.0000 +2012,12,10,6,30,-4.7,1.22,0.059000000000000004,0.62,0,0,0,0,4,-11.5,0,0,0,0,0.324,58.79,168.34,0.9500000000000001,0.72,889,0.5,357,3.5,0.0000,0.0000 +2012,12,10,7,30,-5.7,1.28,0.034,0.62,0,0,0,0,4,-12.8,0,0,0,0,0.317,57.51,164.88,0.93,0.72,889,0.4,351,2.3000000000000003,0.0000,0.0000 +2012,12,10,8,30,-6.6000000000000005,1.28,0.027,0.62,0,0,0,0,1,-13.5,0,0,0,0,0.313,58.02,154.23,0.91,0.72,888,0.30000000000000004,344,1.7000000000000002,0.0000,0.0000 +2012,12,10,9,30,-7,1.27,0.024,0.62,0,0,0,0,1,-14.100000000000001,0,0,0,0,0.31,57.050000000000004,142.13,0.91,0.72,888,0.30000000000000004,336,1.8,0.0000,0.0000 +2012,12,10,10,30,-7.2,1.27,0.023,0.62,0,0,0,0,1,-14.600000000000001,0,0,0,0,0.309,55.68,129.75,0.9,0.72,888,0.30000000000000004,332,1.9000000000000001,0.0000,0.0000 +2012,12,10,11,30,-7.4,1.26,0.023,0.62,0,0,0,0,1,-15,0,0,0,0,0.307,54.67,117.44,0.9,0.72,888,0.30000000000000004,330,1.7000000000000002,0.0000,0.0000 +2012,12,10,12,30,-7.6000000000000005,1.24,0.022,0.62,0,0,0,0,1,-15.3,0,0,0,0,0.305,53.97,105.41,0.9,0.72,887,0.30000000000000004,322,1.6,0.0000,0.0000 +2012,12,10,13,30,-7.1000000000000005,1.24,0.02,0.62,0,0,0,0,1,-15.5,0,0,0,0,0.303,51.1,93.87,0.89,0.72,887,0.30000000000000004,308,2,0.0000,0.0000 +2012,12,10,14,30,-5.300000000000001,1.24,0.02,0.62,31,633,108,0,1,-15.700000000000001,31,633,0,108,0.301,44.01,82.98,0.89,0.72,887,0.30000000000000004,298,2.7,0.0000,0.0000 +2012,12,10,15,30,-2.7,1.24,0.019,0.62,50,867,298,0,0,-16.7,50,867,0,298,0.299,33.33,73.39,0.89,0.72,887,0.30000000000000004,292,3.1,14.2080,10.9513 +2012,12,10,16,30,-0.30000000000000004,1.24,0.018000000000000002,0.62,61,962,461,0,0,-17.3,61,962,0,461,0.298,26.38,65.43,0.89,0.72,886,0.30000000000000004,289,3.6,23.5762,18.3465 +2012,12,10,17,30,1.6,1.23,0.017,0.62,67,1007,573,0,0,-17,67,1007,0,573,0.297,23.77,59.82,0.89,0.72,885,0.30000000000000004,289,3.7,25.1285,19.6295 +2012,12,10,18,30,3,1.32,0.023,0.62,75,1015,624,0,0,-16.7,75,1015,0,624,0.297,21.91,57.28,0.9,0.72,884,0.30000000000000004,289,3.6,33.3708,26.1010 +2012,12,10,19,30,4.1000000000000005,1.29,0.021,0.62,72,1012,605,0,0,-16.900000000000002,72,1012,0,605,0.297,19.92,58.21,0.89,0.72,883,0.30000000000000004,288,3.5,26.0151,20.3384 +2012,12,10,20,30,4.800000000000001,1.26,0.019,0.62,65,986,521,0,0,-17.400000000000002,65,986,0,521,0.297,18.31,62.47,0.89,0.72,882,0.30000000000000004,288,3.3000000000000003,18.9511,14.7792 +2012,12,10,21,30,4.9,1.22,0.017,0.62,55,924,379,0,0,-17.7,55,924,0,379,0.297,17.7,69.43,0.89,0.72,881,0.30000000000000004,287,2.5,18.4735,14.3159 +2012,12,10,22,30,3.6,1.2,0.016,0.62,39,782,197,0,0,-17.1,39,782,0,197,0.297,20.41,78.35000000000001,0.88,0.72,881,0.30000000000000004,264,1.3,8.6962,6.6423 +2012,12,10,23,30,1.7000000000000002,1.18,0.016,0.62,13,345,22,0,0,-15.4,13,345,0,22,0.297,26.94,88.42,0.88,0.72,881,0.30000000000000004,211,0.8,0.0000,0.0000 +2012,12,11,0,30,0,1.1500000000000001,0.017,0.62,0,0,0,0,1,-17,0,0,0,0,0.298,26.61,99.95,0.88,0.24,881,0.30000000000000004,178,1.1,0.0000,0.0000 +2012,12,11,1,30,-1.7000000000000002,1.1,0.019,0.62,0,0,0,0,1,-16.400000000000002,0,0,0,0,0.299,31.57,111.77,0.88,0.24,882,0.4,179,1.4000000000000001,0.0000,0.0000 +2012,12,11,2,30,-2.6,1.06,0.021,0.62,0,0,0,0,1,-16.1,0,0,0,0,0.3,34.61,123.98,0.89,0.24,881,0.4,192,1.5,0.0000,0.0000 +2012,12,11,3,30,-2.9000000000000004,1.03,0.022,0.62,0,0,0,0,1,-15.700000000000001,0,0,0,0,0.299,36.61,136.36,0.89,0.24,881,0.4,213,1.7000000000000002,0.0000,0.0000 +2012,12,11,4,30,-2.9000000000000004,1.02,0.022,0.62,0,0,0,0,1,-15,0,0,0,0,0.299,38.69,148.66,0.9,0.24,881,0.4,237,2,0.0000,0.0000 +2012,12,11,5,30,-2.9000000000000004,1.03,0.021,0.62,0,0,0,0,1,-14.200000000000001,0,0,0,0,0.298,41.46,160.29,0.89,0.24,881,0.4,257,2.3000000000000003,0.0000,0.0000 +2012,12,11,6,30,-3.1,1.05,0.019,0.62,0,0,0,0,1,-13.4,0,0,0,0,0.298,44.97,168.39000000000001,0.89,0.24,881,0.4,270,2.6,0.0000,0.0000 +2012,12,11,7,30,-3.3000000000000003,1.07,0.018000000000000002,0.62,0,0,0,0,1,-12.700000000000001,0,0,0,0,0.3,48.33,165.01,0.89,0.24,881,0.4,283,2.8000000000000003,0.0000,0.0000 +2012,12,11,8,30,-3.5,1.08,0.017,0.62,0,0,0,0,1,-12,0,0,0,0,0.302,51.660000000000004,154.37,0.89,0.24,881,0.4,295,3.2,0.0000,0.0000 +2012,12,11,9,30,-3.7,1.09,0.017,0.62,0,0,0,0,1,-11.5,0,0,0,0,0.304,54.93,142.26,0.89,0.24,881,0.4,306,3.4000000000000004,0.0000,0.0000 +2012,12,11,10,30,-3.9000000000000004,1.11,0.018000000000000002,0.62,0,0,0,0,1,-10.9,0,0,0,0,0.304,58.18,129.88,0.9,0.24,882,0.4,315,3.4000000000000004,0.0000,0.0000 +2012,12,11,11,30,-4.2,1.1300000000000001,0.019,0.62,0,0,0,0,1,-10.600000000000001,0,0,0,0,0.304,61.04,117.57000000000001,0.9,0.24,882,0.4,325,3.3000000000000003,0.0000,0.0000 +2012,12,11,12,30,-4.4,1.1400000000000001,0.019,0.62,0,0,0,0,1,-10.4,0,0,0,0,0.304,62.83,105.54,0.9,0.24,883,0.4,332,3.1,0.0000,0.0000 +2012,12,11,13,30,-4.1000000000000005,1.1500000000000001,0.019,0.62,0,0,0,0,4,-10.4,0,0,0,0,0.304,61.61,94.01,0.89,0.24,884,0.4,341,3.2,0.0000,0.0000 +2012,12,11,14,30,-2.5,1.1500000000000001,0.019,0.62,29,617,102,0,1,-10.4,29,617,0,102,0.305,54.47,83.11,0.89,0.24,884,0.4,350,3.3000000000000003,0.0000,0.0000 +2012,12,11,15,30,0.5,1.16,0.019,0.62,45,852,287,0,0,-10.4,45,852,0,287,0.306,43.86,73.52,0.89,0.24,885,0.4,183,2.9000000000000004,14.7863,11.3947 +2012,12,11,16,30,4.1000000000000005,1.17,0.02,0.62,54,945,446,0,0,-11.100000000000001,54,945,0,446,0.308,32.03,65.55,0.89,0.24,885,0.4,24,2.4000000000000004,24.5102,19.0711 +2012,12,11,17,30,6.5,1.17,0.021,0.62,60,988,555,0,0,-12.4,60,988,0,555,0.309,24.48,59.93,0.89,0.24,885,0.4,36,1.9000000000000001,31.6234,24.7014 +2012,12,11,18,30,7.5,1.11,0.019,0.62,60,1007,604,0,0,-12.9,60,1007,0,604,0.31,22.03,57.36,0.89,0.24,885,0.4,28,1.5,34.9206,27.3119 +2012,12,11,19,30,7.9,1.1400000000000001,0.02,0.62,61,1000,587,0,0,-13.200000000000001,61,1000,0,587,0.31,20.78,58.27,0.9,0.24,884,0.4,13,1.3,33.6918,26.3392 +2012,12,11,20,30,7.9,1.16,0.021,0.62,58,970,506,0,0,-13.4,58,970,0,506,0.31,20.46,62.5,0.9,0.24,884,0.4,178,1.2000000000000002,28.2853,22.0582 +2012,12,11,21,30,7.4,1.09,0.018000000000000002,0.62,49,908,369,0,0,-13.5,49,908,0,369,0.307,20.990000000000002,69.43,0.9,0.24,884,0.4,344,1.1,19.5009,15.1119 +2012,12,11,22,30,5.7,1.1,0.018000000000000002,0.62,38,762,192,0,0,-12.5,38,762,0,192,0.303,25.72,78.33,0.9,0.24,884,0.4,181,0.8,9.4133,7.1902 +2012,12,11,23,30,3.8000000000000003,1.12,0.018000000000000002,0.62,13,324,22,0,0,-12,13,324,0,22,0.299,30.46,88.39,0.9,0.24,884,0.4,64,0.6000000000000001,0.0000,0.0000 +2012,12,12,0,30,2.5,1.12,0.017,0.62,0,0,0,0,1,-13.200000000000001,0,0,0,0,0.297,30.490000000000002,99.9,0.9,0.24,885,0.30000000000000004,125,0.9,0.0000,0.0000 +2012,12,12,1,30,1.1,1.11,0.017,0.62,0,0,0,0,1,-13.4,0,0,0,0,0.294,33.03,111.72,0.9,0.24,885,0.30000000000000004,151,1.1,0.0000,0.0000 +2012,12,12,2,30,-0.4,1.09,0.016,0.62,0,0,0,0,1,-13.700000000000001,0,0,0,0,0.292,35.9,123.91,0.9,0.24,885,0.30000000000000004,161,1.3,0.0000,0.0000 +2012,12,12,3,30,-1.7000000000000002,1.08,0.016,0.62,0,0,0,0,1,-13.9,0,0,0,0,0.29,38.95,136.29,0.9,0.24,886,0.30000000000000004,168,1.4000000000000001,0.0000,0.0000 +2012,12,12,4,30,-2.6,1.08,0.017,0.62,0,0,0,0,1,-13.9,0,0,0,0,0.28800000000000003,41.53,148.6,0.9,0.24,886,0.30000000000000004,178,1.5,0.0000,0.0000 +2012,12,12,5,30,-3.1,1.07,0.017,0.62,0,0,0,0,1,-13.700000000000001,0,0,0,0,0.28700000000000003,43.660000000000004,160.25,0.9,0.24,886,0.4,190,1.7000000000000002,0.0000,0.0000 +2012,12,12,6,30,-3.2,1.07,0.017,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.28700000000000003,44.74,168.44,0.9,0.24,886,0.4,204,1.9000000000000001,0.0000,0.0000 +2012,12,12,7,30,-3.1,1.07,0.016,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.28600000000000003,44.99,165.14000000000001,0.89,0.24,886,0.4,217,2.2,0.0000,0.0000 +2012,12,12,8,30,-3.1,1.07,0.015,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.28500000000000003,45.29,154.5,0.89,0.24,885,0.4,227,2.4000000000000004,0.0000,0.0000 +2012,12,12,9,30,-3,1.06,0.014,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.28400000000000003,45.2,142.39000000000001,0.89,0.24,885,0.5,234,2.6,0.0000,0.0000 +2012,12,12,10,30,-2.8000000000000003,1.05,0.014,0.62,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.28300000000000003,44.82,130.01,0.89,0.24,885,0.5,238,3,0.0000,0.0000 +2012,12,12,11,30,-2.6,1.05,0.014,0.62,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.28200000000000003,44.27,117.7,0.88,0.24,885,0.5,240,3.3000000000000003,0.0000,0.0000 +2012,12,12,12,30,-2.4000000000000004,1.05,0.014,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.281,43.43,105.67,0.88,0.24,886,0.4,240,3.4000000000000004,0.0000,0.0000 +2012,12,12,13,30,-1.7000000000000002,1.07,0.014,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.281,40.84,94.14,0.88,0.24,886,0.4,241,3.7,0.0000,0.0000 +2012,12,12,14,30,0.4,1.1,0.014,0.62,27,628,101,0,1,-13.3,27,628,0,101,0.281,34.9,83.24,0.88,0.24,886,0.4,240,4.1000000000000005,0.0000,0.0000 +2012,12,12,15,30,3.6,1.12,0.015,0.62,42,859,284,0,1,-13.200000000000001,42,859,0,284,0.281,28.01,73.65,0.88,0.24,886,0.4,238,4.2,14.2234,10.9585 +2012,12,12,16,30,7.2,1.1300000000000001,0.015,0.62,50,954,443,7,2,-13,175,642,7,440,0.28,22.32,65.67,0.88,0.24,886,0.4,238,4.800000000000001,23.6912,18.4320 +2012,12,12,17,30,10.4,1.1300000000000001,0.015,0.62,55,998,553,0,1,-13.100000000000001,55,998,0,553,0.28,17.740000000000002,60.03,0.88,0.24,885,0.4,241,5.300000000000001,30.6103,23.9087 +2012,12,12,18,30,12.3,1.23,0.02,0.62,61,1007,603,0,0,-13.100000000000001,61,1007,0,603,0.28,15.74,57.44,0.89,0.24,885,0.4,242,5.2,33.7874,26.4246 +2012,12,12,19,30,13.4,1.2,0.017,0.62,58,1006,586,0,0,-13,58,1006,0,586,0.28,14.74,58.32,0.88,0.24,884,0.4,242,4.9,32.6788,25.5465 +2012,12,12,20,30,13.8,1.16,0.015,0.62,53,981,505,0,0,-12.8,53,981,0,505,0.28,14.5,62.52,0.89,0.24,884,0.4,242,4.6000000000000005,27.4655,21.4184 +2012,12,12,21,30,13.100000000000001,1.21,0.02,0.62,51,907,369,0,0,-12.700000000000001,51,907,0,369,0.28,15.41,69.43,0.89,0.24,884,0.4,241,3.5,18.9864,14.7132 +2012,12,12,22,30,9.5,1.19,0.019,0.62,38,763,193,0,0,-11.100000000000001,38,763,0,193,0.279,22.17,78.3,0.89,0.24,884,0.4,235,2.2,9.1751,7.0085 +2012,12,12,23,30,5.6000000000000005,1.18,0.02,0.62,13,321,22,0,0,-9.9,13,321,0,22,0.277,31.86,88.35000000000001,0.89,0.24,884,0.4,230,1.8,0.0000,0.0000 +2012,12,13,0,30,4.1000000000000005,1.17,0.02,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.276,33.1,99.85000000000001,0.89,0.24,885,0.4,229,2,0.0000,0.0000 +2012,12,13,1,30,3.5,1.16,0.02,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.274,33.99,111.66,0.89,0.24,885,0.4,229,2.1,0.0000,0.0000 +2012,12,13,2,30,2.9000000000000004,1.1400000000000001,0.02,0.62,0,0,0,0,0,-11,0,0,0,0,0.273,35.12,123.85000000000001,0.89,0.24,886,0.4,232,2.1,0.0000,0.0000 +2012,12,13,3,30,2.3000000000000003,1.1300000000000001,0.02,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.272,36.230000000000004,136.22,0.89,0.24,886,0.4,236,2.2,0.0000,0.0000 +2012,12,13,4,30,1.8,1.12,0.019,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.272,37.1,148.54,0.89,0.24,886,0.4,240,2.3000000000000003,0.0000,0.0000 +2012,12,13,5,30,1.2000000000000002,1.12,0.019,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.272,38.4,160.21,0.89,0.24,886,0.4,245,2.3000000000000003,0.0000,0.0000 +2012,12,13,6,30,0.5,1.12,0.018000000000000002,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.271,40.17,168.47,0.89,0.24,886,0.4,250,2.2,0.0000,0.0000 +2012,12,13,7,30,-0.1,1.12,0.018000000000000002,0.62,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.271,41.78,165.26,0.89,0.24,886,0.4,256,2.1,0.0000,0.0000 +2012,12,13,8,30,-0.7000000000000001,1.12,0.018000000000000002,0.62,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.272,43.4,154.63,0.89,0.24,886,0.4,264,2,0.0000,0.0000 +2012,12,13,9,30,-1.2000000000000002,1.1300000000000001,0.017,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.273,44.53,142.52,0.88,0.24,886,0.30000000000000004,275,1.9000000000000001,0.0000,0.0000 +2012,12,13,10,30,-1.6,1.1400000000000001,0.016,0.62,0,0,0,0,0,-12,0,0,0,0,0.274,45.12,130.13,0.88,0.24,886,0.30000000000000004,286,1.9000000000000001,0.0000,0.0000 +2012,12,13,11,30,-1.9000000000000001,1.1500000000000001,0.016,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.274,45.2,117.83,0.88,0.24,886,0.30000000000000004,293,1.9000000000000001,0.0000,0.0000 +2012,12,13,12,30,-2.1,1.1500000000000001,0.015,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.273,44.97,105.8,0.88,0.24,886,0.30000000000000004,295,1.9000000000000001,0.0000,0.0000 +2012,12,13,13,30,-1.3,1.16,0.015,0.62,0,0,0,0,1,-12.600000000000001,0,0,0,0,0.272,41.78,94.26,0.88,0.24,887,0.30000000000000004,295,1.8,0.0000,0.0000 +2012,12,13,14,30,2,1.16,0.015,0.62,27,636,100,7,4,-12.4,62,8,7,63,0.271,33.65,83.36,0.88,0.24,887,0.30000000000000004,295,2.4000000000000004,0.0000,0.0000 +2012,12,13,15,30,6.1000000000000005,1.17,0.015,0.62,42,859,282,0,3,-12.3,171,85,0,195,0.271,25.43,73.77,0.88,0.24,887,0.4,287,2.7,14.0578,10.8286 +2012,12,13,16,30,9.9,1.18,0.016,0.62,51,952,442,0,3,-11.9,246,207,0,331,0.271,20.26,65.78,0.88,0.24,887,0.4,260,2.3000000000000003,23.3512,18.1655 +2012,12,13,17,30,14.100000000000001,1.19,0.017,0.62,57,995,552,0,0,-11.3,57,995,0,552,0.271,16.06,60.120000000000005,0.88,0.24,887,0.4,235,3,30.4822,23.8072 +2012,12,13,18,30,16.8,1.2,0.017,0.62,58,1002,597,0,0,-11.5,58,1002,0,597,0.271,13.32,57.51,0.88,0.24,886,0.5,229,3.9000000000000004,33.7175,26.3690 +2012,12,13,19,30,17.900000000000002,1.24,0.018000000000000002,0.62,59,996,581,0,0,-10.8,59,996,0,581,0.271,13.1,58.36,0.89,0.24,885,0.5,225,4.1000000000000005,32.6143,25.4954 +2012,12,13,20,30,18.1,1.28,0.02,0.62,57,964,502,0,0,-9.8,57,964,0,502,0.271,14.02,62.53,0.89,0.24,885,0.5,220,4,27.4076,21.3730 +2012,12,13,21,30,16.900000000000002,1.31,0.021,0.62,51,888,363,0,0,-8.700000000000001,51,888,0,363,0.271,16.57,69.42,0.89,0.24,884,0.6000000000000001,210,3.2,18.9864,14.7132 +2012,12,13,22,30,13.100000000000001,1.34,0.023,0.62,40,736,189,0,0,-6.300000000000001,40,736,0,189,0.272,25.38,78.27,0.9,0.24,884,0.6000000000000001,193,2.1,9.2240,7.0462 +2012,12,13,23,30,9.1,1.34,0.025,0.62,13,294,22,0,1,-5.300000000000001,13,294,0,22,0.272,35.68,88.31,0.91,0.24,884,0.6000000000000001,177,1.9000000000000001,0.0000,0.0000 +2012,12,14,0,30,7.7,1.32,0.028,0.62,0,0,0,0,1,-5.7,0,0,0,0,0.271,38.09,99.79,0.91,0.24,884,0.6000000000000001,170,2.3000000000000003,0.0000,0.0000 +2012,12,14,1,30,7,1.3,0.029,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.271,40.46,111.59,0.91,0.24,884,0.6000000000000001,168,2.7,0.0000,0.0000 +2012,12,14,2,30,6.4,1.28,0.031,0.62,0,0,0,0,4,-5.2,0,0,0,0,0.27,43.21,123.78,0.92,0.24,884,0.7000000000000001,170,3,0.0000,0.0000 +2012,12,14,3,30,6.1000000000000005,1.24,0.033,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.269,46.61,136.15,0.92,0.24,884,0.7000000000000001,174,3.2,0.0000,0.0000 +2012,12,14,4,30,5.6000000000000005,1.22,0.036000000000000004,0.62,0,0,0,0,7,-3.1,0,0,0,0,0.267,53.4,148.47,0.93,0.24,884,0.8,176,3.1,0.0000,0.0000 +2012,12,14,5,30,5,1.22,0.041,0.62,0,0,0,0,7,-1,0,0,0,0,0.266,65.04,160.16,0.9500000000000001,0.24,884,0.9,178,3.1,0.0000,0.0000 +2012,12,14,6,30,4.9,1.22,0.055,0.62,0,0,0,0,6,1.5,0,0,0,0,0.265,78.43,168.5,0.96,0.24,884,1,180,3.2,0.0000,0.0000 +2012,12,14,7,30,5.300000000000001,1.19,0.07100000000000001,0.62,0,0,0,0,6,3.6,0,0,0,0,0.264,88.63,165.37,0.97,0.24,883,1.1,179,3.4000000000000004,0.0000,0.0000 +2012,12,14,8,30,5.800000000000001,1.18,0.079,0.62,0,0,0,0,6,5,0,0,0,0,0.265,94.28,154.75,0.97,0.24,882,1.3,176,3.6,0.0000,0.0000 +2012,12,14,9,30,6.2,1.16,0.09,0.62,0,0,0,0,6,5.6000000000000005,0,0,0,0,0.266,96.23,142.64000000000001,0.97,0.24,882,1.4000000000000001,173,3.6,0.0000,0.0000 +2012,12,14,10,30,6.6000000000000005,1.1500000000000001,0.094,0.62,0,0,0,0,6,6.1000000000000005,0,0,0,0,0.266,96.31,130.26,0.97,0.24,881,1.6,174,3.7,0.0000,0.0000 +2012,12,14,11,30,6.9,1.1500000000000001,0.092,0.62,0,0,0,0,6,6.4,0,0,0,0,0.266,96.53,117.95,0.97,0.24,881,1.8,180,3.9000000000000004,0.0000,0.0000 +2012,12,14,12,30,7.2,1.1500000000000001,0.096,0.62,0,0,0,0,6,6.7,0,0,0,0,0.266,96.87,105.93,0.97,0.24,881,1.9000000000000001,182,4,0.0000,0.0000 +2012,12,14,13,30,7.4,1.17,0.09,0.62,0,0,0,0,6,7,0,0,0,0,0.266,96.99000000000001,94.39,0.97,0.24,881,2,179,4,0.0000,0.0000 +2012,12,14,14,30,7.9,1.17,0.079,0.62,37,387,81,7,7,7.1000000000000005,38,2,7,38,0.266,94.77,83.48,0.97,0.24,880,1.9000000000000001,178,4.7,0.0000,0.0000 +2012,12,14,15,30,9.1,1.18,0.073,0.62,63,676,250,0,7,7.4,140,63,0,158,0.267,89.24,73.88,0.96,0.24,880,1.9000000000000001,176,5.6000000000000005,9.6417,7.4255 +2012,12,14,16,30,11.4,1.21,0.052000000000000005,0.62,69,830,408,7,3,7.800000000000001,229,33,7,243,0.268,78.77,65.89,0.9500000000000001,0.24,878,1.7000000000000002,175,6.7,17.5517,13.6526 +2012,12,14,17,30,14.3,1.23,0.033,0.62,67,908,518,0,7,8.1,236,281,0,375,0.269,66.45,60.21,0.9400000000000001,0.24,877,1.7000000000000002,180,8,30.4109,23.7504 +2012,12,14,18,30,16.6,1.22,0.026000000000000002,0.62,65,939,568,0,8,8,226,415,0,449,0.273,56.7,57.57,0.93,0.24,875,1.6,184,8.9,33.3698,26.0962 +2012,12,14,19,30,17.5,1.17,0.024,0.62,62,933,551,0,1,7.9,62,933,0,551,0.277,53.26,58.4,0.92,0.24,872,1.7000000000000002,185,9.5,32.3290,25.2719 +2012,12,14,20,30,16.900000000000002,1.05,0.027,0.62,61,894,473,0,7,7.7,207,53,0,231,0.28200000000000003,54.78,62.54,0.92,0.24,872,1.8,197,10.4,27.2430,21.2445 +2012,12,14,21,30,14.600000000000001,0.62,0.03,0.62,56,824,346,0,7,6.7,161,363,0,289,0.28600000000000003,59.22,69.4,0.91,0.24,873,1.5,227,10.9,18.6793,14.4754 +2012,12,14,22,30,12.100000000000001,0.56,0.02,0.62,39,716,185,0,8,1.5,22,0,0,22,0.289,48.370000000000005,78.23,0.89,0.24,874,0.9,248,9.9,9.0340,6.9013 +2012,12,14,23,30,10.4,0.76,0.016,0.62,13,308,22,0,1,-3.4000000000000004,13,308,0,22,0.291,37.87,88.27,0.87,0.24,875,0.7000000000000001,252,8.700000000000001,0.0000,0.0000 +2012,12,15,0,30,9,0.89,0.017,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.291,37.45,99.73,0.88,0.24,877,0.6000000000000001,251,8.4,0.0000,0.0000 +2012,12,15,1,30,7.9,0.98,0.017,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.289,38.92,111.52,0.88,0.24,878,0.5,250,8.4,0.0000,0.0000 +2012,12,15,2,30,7.2,1,0.016,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.28800000000000003,40.85,123.7,0.88,0.24,879,0.5,250,8.6,0.0000,0.0000 +2012,12,15,3,30,6.7,1.03,0.015,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28600000000000003,43.74,136.08,0.88,0.24,879,0.6000000000000001,252,8.5,0.0000,0.0000 +2012,12,15,4,30,6.2,1.06,0.015,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.28400000000000003,47.77,148.4,0.88,0.24,879,0.6000000000000001,256,8.1,0.0000,0.0000 +2012,12,15,5,30,5.6000000000000005,1.08,0.014,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.28400000000000003,51.49,160.1,0.88,0.24,879,0.5,261,7.5,0.0000,0.0000 +2012,12,15,6,30,4.9,1.07,0.012,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.28400000000000003,54.29,168.52,0.87,0.24,879,0.5,266,6.9,0.0000,0.0000 +2012,12,15,7,30,4.2,1.07,0.012,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.28500000000000003,56.51,165.48,0.87,0.24,879,0.5,271,6.4,0.0000,0.0000 +2012,12,15,8,30,3.5,1.08,0.012,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.28500000000000003,58.59,154.87,0.87,0.24,879,0.5,276,5.800000000000001,0.0000,0.0000 +2012,12,15,9,30,2.9000000000000004,1.1,0.012,0.62,0,0,0,0,0,-4,0,0,0,0,0.28500000000000003,60.28,142.76,0.88,0.24,879,0.5,276,5.300000000000001,0.0000,0.0000 +2012,12,15,10,30,2.2,1.1300000000000001,0.013000000000000001,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.28400000000000003,62.620000000000005,130.38,0.89,0.24,879,0.5,272,4.800000000000001,0.0000,0.0000 +2012,12,15,11,30,1.7000000000000002,1.1400000000000001,0.013000000000000001,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.28200000000000003,64.52,118.07000000000001,0.89,0.24,879,0.5,267,4.5,0.0000,0.0000 +2012,12,15,12,30,1.4000000000000001,1.1500000000000001,0.014,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.281,65.78,106.05,0.9,0.24,879,0.6000000000000001,264,4.5,0.0000,0.0000 +2012,12,15,13,30,1.6,1.16,0.014,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.279,64.97,94.51,0.9,0.24,880,0.6000000000000001,263,4.800000000000001,0.0000,0.0000 +2012,12,15,14,30,3.1,1.17,0.015,0.62,26,592,92,0,0,-4.2,26,592,0,92,0.277,58.910000000000004,83.60000000000001,0.91,0.24,880,0.6000000000000001,262,5.1000000000000005,0.0000,0.0000 +2012,12,15,15,30,6.2,1.18,0.015,0.62,42,837,273,0,1,-3.9000000000000004,42,837,0,273,0.277,48.550000000000004,73.99,0.91,0.24,881,0.6000000000000001,265,5.7,7.8043,6.0093 +2012,12,15,16,30,9.600000000000001,1.2,0.013000000000000001,0.62,48,931,427,0,1,-4,48,931,0,427,0.277,38.04,65.98,0.9,0.24,881,0.7000000000000001,273,6.5,12.8745,10.0135 +2012,12,15,17,30,11.8,1.22,0.013000000000000001,0.62,52,977,536,0,1,-4.800000000000001,52,977,0,536,0.277,30.990000000000002,60.29,0.89,0.24,880,0.7000000000000001,276,6.800000000000001,20.6486,16.1254 +2012,12,15,18,30,13,1.22,0.015,0.62,56,991,587,0,1,-4.800000000000001,56,991,0,587,0.275,28.73,57.63,0.9,0.24,879,0.7000000000000001,272,6.9,25.0894,19.6201 +2012,12,15,19,30,13.600000000000001,1.22,0.017,0.62,58,984,573,0,7,-4.6000000000000005,201,527,0,477,0.273,27.94,58.42,0.9,0.24,879,0.7000000000000001,269,6.9,30.6530,23.9613 +2012,12,15,20,30,13.700000000000001,1.22,0.018000000000000002,0.62,55,954,495,0,8,-4.6000000000000005,166,512,0,402,0.271,27.82,62.54,0.9,0.24,878,0.7000000000000001,268,6.6000000000000005,12.5353,9.7751 +2012,12,15,21,30,13.200000000000001,1.2,0.019,0.62,50,886,362,0,8,-4.5,132,480,0,301,0.268,29,69.37,0.91,0.24,878,0.7000000000000001,266,5.800000000000001,14.8740,11.5268 +2012,12,15,22,30,10.9,1.18,0.02,0.62,39,738,190,0,8,-4.3,107,211,0,151,0.267,34.28,78.19,0.91,0.24,878,0.7000000000000001,263,4,1.0517,0.8035 +2012,12,15,23,30,7.9,1.16,0.02,0.62,14,309,23,7,7,-3.4000000000000004,13,1,7,13,0.267,44.76,88.21000000000001,0.91,0.24,878,0.7000000000000001,261,2.4000000000000004,0.0000,0.0000 +2012,12,16,0,30,6.300000000000001,1.1500000000000001,0.021,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.267,50.17,99.66,0.91,0.24,879,0.7000000000000001,262,2.3000000000000003,0.0000,0.0000 +2012,12,16,1,30,5.6000000000000005,1.1500000000000001,0.02,0.62,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.269,52.480000000000004,111.45,0.91,0.24,879,0.7000000000000001,263,2.5,0.0000,0.0000 +2012,12,16,2,30,5,1.1500000000000001,0.017,0.62,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.272,54.77,123.62,0.9,0.24,880,0.8,263,2.8000000000000003,0.0000,0.0000 +2012,12,16,3,30,4.5,1.16,0.015,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.275,57,136,0.9,0.24,880,0.8,262,2.9000000000000004,0.0000,0.0000 +2012,12,16,4,30,4.1000000000000005,1.17,0.014,0.62,0,0,0,0,1,-3.2,0,0,0,0,0.28,59.19,148.32,0.9,0.24,879,0.8,257,3.1,0.0000,0.0000 +2012,12,16,5,30,3.9000000000000004,1.18,0.014,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.28500000000000003,61.1,160.04,0.89,0.24,879,0.8,252,3.5,0.0000,0.0000 +2012,12,16,6,30,3.7,1.17,0.014,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.29,63.74,168.53,0.88,0.24,879,0.8,250,3.9000000000000004,0.0000,0.0000 +2012,12,16,7,30,3.4000000000000004,1.17,0.014,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.294,67.17,165.59,0.88,0.24,879,0.7000000000000001,251,4.1000000000000005,0.0000,0.0000 +2012,12,16,8,30,3,1.17,0.013000000000000001,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.296,70.83,154.99,0.87,0.24,879,0.8,253,4.3,0.0000,0.0000 +2012,12,16,9,30,2.8000000000000003,1.1300000000000001,0.014,0.62,0,0,0,0,1,-1.5,0,0,0,0,0.299,73.15,142.88,0.88,0.24,879,0.8,256,4.5,0.0000,0.0000 +2012,12,16,10,30,2.5,1.1300000000000001,0.015,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.301,76.13,130.5,0.88,0.24,879,0.8,260,4.5,0.0000,0.0000 +2012,12,16,11,30,2,1.16,0.015,0.62,0,0,0,0,0,-1,0,0,0,0,0.304,80.55,118.19,0.87,0.24,879,0.6000000000000001,264,4.3,0.0000,0.0000 +2012,12,16,12,30,1.5,1.18,0.014,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.306,84.79,106.17,0.87,0.24,879,0.5,267,4,0.0000,0.0000 +2012,12,16,13,30,1.6,1.19,0.014,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.307,84.89,94.62,0.87,0.24,880,0.5,272,4.1000000000000005,0.0000,0.0000 +2012,12,16,14,30,3.4000000000000004,1.19,0.014,0.62,25,599,91,0,0,-0.7000000000000001,25,599,0,91,0.308,74.46000000000001,83.71000000000001,0.87,0.24,880,0.5,274,4.5,0.0000,0.0000 +2012,12,16,15,30,6.800000000000001,1.2,0.014,0.62,40,835,269,0,1,-1.1,40,835,0,269,0.309,57.26,74.10000000000001,0.88,0.24,880,0.6000000000000001,279,5.1000000000000005,13.4711,10.3708 +2012,12,16,16,30,9.9,1.23,0.016,0.62,50,931,428,0,7,-3.8000000000000003,179,402,0,342,0.309,37.94,66.08,0.89,0.24,880,0.6000000000000001,287,6,22.6074,17.5821 +2012,12,16,17,30,11.600000000000001,1.24,0.02,0.62,59,965,536,0,7,-4.7,213,437,0,429,0.311,31.580000000000002,60.370000000000005,0.91,0.24,879,0.7000000000000001,285,6.5,29.4997,23.0365 +2012,12,16,18,30,12,1.21,0.026000000000000002,0.62,65,968,583,0,8,-4.2,255,259,0,394,0.312,32.04,57.68,0.93,0.24,878,0.8,278,6.4,32.7903,25.6416 +2012,12,16,19,30,11.700000000000001,1.21,0.031,0.62,67,952,565,0,7,-4,162,8,0,166,0.314,33.14,58.44,0.93,0.24,877,0.9,274,6,26.5334,20.7408 +2012,12,16,20,30,11.700000000000001,1.25,0.034,0.62,65,917,488,0,6,-3.9000000000000004,240,152,0,310,0.317,33.31,62.53,0.92,0.24,877,0.9,273,6,21.8146,17.0113 +2012,12,16,21,30,11.600000000000001,1.27,0.026000000000000002,0.62,53,860,357,0,7,-4.1000000000000005,154,26,0,163,0.32,33.08,69.34,0.91,0.24,877,0.9,273,6.1000000000000005,15.4957,12.0090 +2012,12,16,22,30,10.200000000000001,1.23,0.025,0.62,40,717,188,0,8,-4.6000000000000005,89,393,0,170,0.323,35.01,78.14,0.91,0.24,877,0.8,275,5.300000000000001,7.2201,5.5164 +2012,12,16,23,30,8.1,1.19,0.024,0.62,14,298,23,0,0,-5,14,298,0,23,0.324,39.25,88.15,0.9,0.24,878,0.7000000000000001,279,4.4,0.0000,0.0000 +2012,12,17,0,30,6.4,1.19,0.023,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.325,42.6,99.59,0.9,0.24,878,0.6000000000000001,284,4.4,0.0000,0.0000 +2012,12,17,1,30,5.2,1.22,0.022,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.328,44.76,111.37,0.9,0.24,879,0.5,286,4.800000000000001,0.0000,0.0000 +2012,12,17,2,30,4.2,1.27,0.021,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.33,45.730000000000004,123.54,0.9,0.24,880,0.4,285,5.300000000000001,0.0000,0.0000 +2012,12,17,3,30,3.1,1.33,0.021,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.33,46.43,135.91,0.9,0.24,880,0.4,286,5.5,0.0000,0.0000 +2012,12,17,4,30,2.2,1.36,0.021,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.328,47.39,148.24,0.9,0.24,881,0.30000000000000004,289,5.6000000000000005,0.0000,0.0000 +2012,12,17,5,30,1.3,1.36,0.02,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.326,49.59,159.97,0.9,0.24,881,0.30000000000000004,292,5.5,0.0000,0.0000 +2012,12,17,6,30,0.5,1.36,0.02,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.323,52.09,168.53,0.9,0.24,881,0.4,293,5.300000000000001,0.0000,0.0000 +2012,12,17,7,30,-0.2,1.36,0.02,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.32,54.57,165.68,0.9,0.24,881,0.4,293,4.9,0.0000,0.0000 +2012,12,17,8,30,-0.8,1.34,0.019,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.317,56.870000000000005,155.11,0.9,0.24,881,0.4,291,4.6000000000000005,0.0000,0.0000 +2012,12,17,9,30,-1.3,1.33,0.018000000000000002,0.62,0,0,0,0,1,-8.3,0,0,0,0,0.312,59.08,143,0.9,0.24,881,0.4,289,4.5,0.0000,0.0000 +2012,12,17,10,30,-1.7000000000000002,1.3,0.018000000000000002,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.307,61.24,130.62,0.9,0.24,881,0.5,287,4.3,0.0000,0.0000 +2012,12,17,11,30,-2,1.26,0.019,0.62,0,0,0,0,0,-8,0,0,0,0,0.303,63.300000000000004,118.31,0.9,0.24,881,0.5,286,4,0.0000,0.0000 +2012,12,17,12,30,-2.2,1.22,0.019,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.3,65.21000000000001,106.28,0.9,0.24,881,0.6000000000000001,284,3.8000000000000003,0.0000,0.0000 +2012,12,17,13,30,-1.8,1.2,0.019,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.297,64.5,94.73,0.9,0.24,882,0.6000000000000001,281,4,0.0000,0.0000 +2012,12,17,14,30,0.2,1.21,0.019,0.62,27,570,88,7,4,-7.4,51,2,7,51,0.292,56.730000000000004,83.81,0.9,0.24,882,0.6000000000000001,279,4.4,0.0000,0.0000 +2012,12,17,15,30,3.7,1.23,0.018000000000000002,0.62,44,827,269,0,3,-7.1000000000000005,163,86,0,187,0.28700000000000003,45.19,74.2,0.9,0.24,882,0.6000000000000001,283,5.2,13.2604,10.2067 +2012,12,17,16,30,7.4,1.23,0.017,0.62,51,930,427,7,3,-7.1000000000000005,174,594,7,414,0.28300000000000003,34.82,66.16,0.89,0.24,881,0.6000000000000001,291,6.300000000000001,18.0931,14.0700 +2012,12,17,17,30,10.200000000000001,1.23,0.016,0.62,55,978,538,0,3,-7.6000000000000005,306,177,0,393,0.28,27.89,60.43,0.88,0.24,881,0.6000000000000001,294,6.9,23.5995,18.4282 +2012,12,17,18,30,12.200000000000001,1.23,0.016,0.62,57,1004,593,7,2,-7.7,220,685,7,586,0.279,24.150000000000002,57.72,0.87,0.24,880,0.5,295,7.1000000000000005,22.0034,17.2059 +2012,12,17,19,30,13.5,1.21,0.016,0.62,56,1000,579,7,3,-7.7,215,687,7,575,0.278,22.22,58.45,0.86,0.24,879,0.5,295,7,9.2328,7.2171 +2012,12,17,20,30,14.200000000000001,1.2,0.016,0.62,53,972,502,0,0,-7.7,53,972,0,502,0.277,21.29,62.51,0.86,0.24,879,0.5,293,6.7,16.8233,13.1191 +2012,12,17,21,30,13.8,1.19,0.016,0.62,47,908,368,0,0,-7.6000000000000005,47,908,0,368,0.275,21.94,69.3,0.86,0.24,879,0.5,290,5.800000000000001,8.3936,6.5052 +2012,12,17,22,30,11.100000000000001,1.17,0.016,0.62,37,766,195,0,0,-7.2,37,766,0,195,0.274,27.1,78.08,0.86,0.24,879,0.5,284,4,8.1303,6.2124 +2012,12,17,23,30,7.800000000000001,1.16,0.017,0.62,14,346,25,0,0,-6,14,346,0,25,0.272,37.050000000000004,88.09,0.86,0.24,879,0.5,278,2.9000000000000004,0.0000,0.0000 +2012,12,18,0,30,6.4,1.19,0.018000000000000002,0.62,0,0,0,0,0,-6,0,0,0,0,0.271,40.61,99.51,0.86,0.24,880,0.5,276,3.1,0.0000,0.0000 +2012,12,18,1,30,5.800000000000001,1.22,0.018000000000000002,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.268,42.11,111.28,0.86,0.24,880,0.5,278,3.3000000000000003,0.0000,0.0000 +2012,12,18,2,30,5,1.24,0.018000000000000002,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.267,44.62,123.45,0.87,0.24,880,0.6000000000000001,280,3.2,0.0000,0.0000 +2012,12,18,3,30,4.3,1.28,0.017,0.62,0,0,0,0,0,-6,0,0,0,0,0.266,47.12,135.82,0.87,0.24,880,0.6000000000000001,278,3.1,0.0000,0.0000 +2012,12,18,4,30,3.8000000000000003,1.29,0.017,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.265,49.230000000000004,148.15,0.87,0.24,880,0.6000000000000001,274,3.2,0.0000,0.0000 +2012,12,18,5,30,3.3000000000000003,1.29,0.017,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.265,51.68,159.9,0.87,0.24,880,0.6000000000000001,272,3.3000000000000003,0.0000,0.0000 +2012,12,18,6,30,2.9000000000000004,1.29,0.016,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.266,54.120000000000005,168.52,0.87,0.24,879,0.7000000000000001,273,3.5,0.0000,0.0000 +2012,12,18,7,30,2.5,1.3,0.016,0.62,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.267,57.11,165.78,0.87,0.24,879,0.7000000000000001,276,3.5,0.0000,0.0000 +2012,12,18,8,30,2,1.31,0.015,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.267,61.120000000000005,155.22,0.87,0.24,879,0.6000000000000001,281,3.2,0.0000,0.0000 +2012,12,18,9,30,1.6,1.32,0.014,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.268,65.46000000000001,143.11,0.87,0.24,879,0.6000000000000001,287,3,0.0000,0.0000 +2012,12,18,10,30,1.3,1.34,0.014,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.268,69.92,130.73,0.87,0.24,878,0.5,293,2.8000000000000003,0.0000,0.0000 +2012,12,18,11,30,0.9,1.36,0.013000000000000001,0.62,0,0,0,0,0,-3,0,0,0,0,0.268,75.12,118.42,0.87,0.24,878,0.5,298,2.7,0.0000,0.0000 +2012,12,18,12,30,0.5,1.3900000000000001,0.012,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.267,79.92,106.39,0.87,0.24,878,0.4,302,2.7,0.0000,0.0000 +2012,12,18,13,30,1,1.41,0.012,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.265,78.69,94.84,0.87,0.24,879,0.4,306,2.9000000000000004,0.0000,0.0000 +2012,12,18,14,30,3.4000000000000004,1.3900000000000001,0.013000000000000001,0.62,25,612,89,0,1,-2.2,25,612,0,89,0.262,66.85,83.91,0.88,0.24,879,0.4,309,3.5,0.0000,0.0000 +2012,12,18,15,30,6.6000000000000005,1.3800000000000001,0.013000000000000001,0.62,40,859,272,0,3,-2.1,165,88,0,189,0.26,53.84,74.29,0.88,0.24,880,0.4,312,3.4000000000000004,9.2098,7.0877 +2012,12,18,16,30,10.200000000000001,1.4000000000000001,0.013000000000000001,0.62,47,947,429,0,1,-1.9000000000000001,47,947,0,429,0.257,42.84,66.24,0.88,0.24,880,0.5,322,3.1,21.8885,17.0203 +2012,12,18,17,30,13.700000000000001,1.41,0.013000000000000001,0.62,52,992,541,7,2,-2.7,209,638,7,523,0.255,31.92,60.49,0.89,0.24,880,0.5,325,3.1,21.6114,16.8751 +2012,12,18,18,30,15.8,1.28,0.021,0.62,62,991,590,0,3,-4.800000000000001,278,401,0,492,0.252,23.87,57.75,0.9,0.24,879,0.6000000000000001,297,2.4000000000000004,32.7190,25.5847 +2012,12,18,19,30,16.7,1.23,0.026000000000000002,0.62,65,980,577,0,7,-5.9,284,267,0,424,0.25,20.75,58.46,0.91,0.24,878,0.6000000000000001,248,2.1,31.9795,24.9976 +2012,12,18,20,30,17,1.22,0.027,0.62,62,949,500,0,7,-6.4,253,197,0,344,0.25,19.61,62.49,0.9,0.24,878,0.6000000000000001,219,2.5,27.2466,21.2476 +2012,12,18,21,30,16,1.32,0.017,0.62,48,901,367,0,6,-6.6000000000000005,175,29,0,185,0.251,20.64,69.25,0.88,0.24,877,0.6000000000000001,207,2,18.9566,14.6924 +2012,12,18,22,30,12.9,1.35,0.014,0.62,36,767,195,0,8,-2.4000000000000004,109,160,0,142,0.253,34.52,78.02,0.88,0.24,876,0.6000000000000001,192,1.3,9.3285,7.1287 +2012,12,18,23,30,9.700000000000001,1.36,0.013000000000000001,0.62,13,366,26,7,7,-3.4000000000000004,15,1,7,15,0.255,39.69,88.02,0.88,0.24,876,0.6000000000000001,183,1.4000000000000001,0.0000,0.0000 +2012,12,19,0,30,7.9,1.32,0.013000000000000001,0.62,0,0,0,0,7,-5,0,0,0,0,0.257,39.550000000000004,99.43,0.89,0.25,876,0.6000000000000001,189,1.6,0.0000,0.0000 +2012,12,19,1,30,6.800000000000001,1.27,0.015,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.26,41.68,111.2,0.9,0.25,876,0.6000000000000001,200,1.7000000000000002,0.0000,0.0000 +2012,12,19,2,30,6.5,1.22,0.018000000000000002,0.62,0,0,0,0,6,-5.6000000000000005,0,0,0,0,0.262,41.79,123.36,0.91,0.25,876,0.6000000000000001,215,2,0.0000,0.0000 +2012,12,19,3,30,7.1000000000000005,1.18,0.02,0.62,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.264,40.09,135.73,0.91,0.25,876,0.7000000000000001,230,2.5,0.0000,0.0000 +2012,12,19,4,30,7.5,1.16,0.022,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.265,38.75,148.06,0.91,0.25,876,0.7000000000000001,241,3,0.0000,0.0000 +2012,12,19,5,30,7.7,1.1500000000000001,0.022,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.266,39.160000000000004,159.82,0.91,0.25,876,0.7000000000000001,248,3.1,0.0000,0.0000 +2012,12,19,6,30,7.5,1.1300000000000001,0.022,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.266,41.54,168.5,0.91,0.25,875,0.8,251,3,0.0000,0.0000 +2012,12,19,7,30,7.2,1.12,0.023,0.62,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.266,44.47,165.86,0.91,0.25,875,0.9,253,2.8000000000000003,0.0000,0.0000 +2012,12,19,8,30,7.2,1.12,0.023,0.62,0,0,0,0,6,-3.6,0,0,0,0,0.266,46.08,155.32,0.92,0.25,874,1,253,2.8000000000000003,0.0000,0.0000 +2012,12,19,9,30,7.4,1.12,0.023,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.267,46.52,143.22,0.92,0.25,874,1,251,3,0.0000,0.0000 +2012,12,19,10,30,7.800000000000001,1.1400000000000001,0.023,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.268,45.42,130.84,0.93,0.25,873,1.1,244,3.3000000000000003,0.0000,0.0000 +2012,12,19,11,30,8.1,1.1500000000000001,0.024,0.62,0,0,0,0,6,-3.6,0,0,0,0,0.268,43.33,118.53,0.93,0.25,872,1.1,236,3.4000000000000004,0.0000,0.0000 +2012,12,19,12,30,8.200000000000001,1.1400000000000001,0.024,0.62,0,0,0,0,6,-4.1000000000000005,0,0,0,0,0.269,41.71,106.5,0.93,0.25,872,1.1,229,3.7,0.0000,0.0000 +2012,12,19,13,30,8.5,1.1400000000000001,0.023,0.62,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.269,39.38,94.95,0.93,0.25,872,1.2000000000000002,224,4.3,0.0000,0.0000 +2012,12,19,14,30,9.600000000000001,1.1400000000000001,0.022,0.62,27,518,81,7,7,-4.800000000000001,47,9,7,48,0.269,35.910000000000004,84.01,0.93,0.25,872,1.3,220,4.9,0.0000,0.0000 +2012,12,19,15,30,11.5,1.1500000000000001,0.021,0.62,45,783,256,0,7,-4.2,146,133,0,182,0.271,32.96,74.38,0.93,0.25,871,1.3,217,5.5,9.3007,7.1566 +2012,12,19,16,30,13.4,1.12,0.02,0.62,54,894,412,0,7,-2.2,173,394,0,332,0.272,33.86,66.32000000000001,0.92,0.25,871,1.2000000000000002,222,6.800000000000001,22.6675,17.6247 +2012,12,19,17,30,14.9,1.05,0.02,0.62,59,942,522,7,3,1,206,614,7,507,0.272,38.84,60.550000000000004,0.91,0.25,871,1.2000000000000002,234,8.700000000000001,28.7499,22.4484 +2012,12,19,18,30,15.600000000000001,0.9400000000000001,0.025,0.62,65,962,577,7,3,1.6,229,610,7,554,0.273,38.84,57.78,0.91,0.25,870,1,246,10.100000000000001,27.4662,21.4770 +2012,12,19,19,30,15,0.9,0.026000000000000002,0.62,65,966,570,0,4,-1,181,0,0,181,0.273,33.43,58.45,0.9,0.25,870,0.8,255,10.700000000000001,23.5801,18.4319 +2012,12,19,20,30,13,0.93,0.023,0.62,60,962,504,0,4,-6.7,51,0,0,51,0.274,24.82,62.46,0.89,0.25,871,0.5,266,10.9,18.6734,14.5622 +2012,12,19,21,30,10.5,0.91,0.021,0.62,52,922,379,0,4,-12.600000000000001,140,2,0,141,0.275,18.43,69.2,0.88,0.25,873,0.30000000000000004,277,10.600000000000001,9.5340,7.3898 +2012,12,19,22,30,8.200000000000001,0.92,0.022,0.62,41,777,203,0,4,-13.8,61,0,0,61,0.278,19.51,77.95,0.89,0.25,874,0.30000000000000004,283,9.600000000000001,6.7950,5.1931 +2012,12,19,23,30,6.1000000000000005,1.03,0.026000000000000002,0.62,15,324,27,7,3,-13,14,0,7,14,0.281,23.96,87.95,0.9,0.25,876,0.4,293,8.6,0.0000,0.0000 +2012,12,20,0,30,3.8000000000000003,1.11,0.035,0.62,0,0,0,0,4,-11.600000000000001,0,0,0,0,0.28200000000000003,31.46,99.34,0.92,0.25,879,0.4,312,8.4,0.0000,0.0000 +2012,12,20,1,30,1.4000000000000001,1.11,0.052000000000000005,0.62,0,0,0,0,1,-10.3,0,0,0,0,0.28400000000000003,41.52,111.10000000000001,0.9400000000000001,0.25,882,0.5,335,8.8,0.0000,0.0000 +2012,12,20,2,30,-0.6000000000000001,1.1300000000000001,0.054,0.62,0,0,0,0,1,-10.4,0,0,0,0,0.28600000000000003,47.36,123.27,0.9400000000000001,0.25,884,0.4,346,8.9,0.0000,0.0000 +2012,12,20,3,30,-1.8,1.18,0.042,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.28700000000000003,47.550000000000004,135.63,0.93,0.25,886,0.4,347,8.200000000000001,0.0000,0.0000 +2012,12,20,4,30,-2.5,1.19,0.033,0.62,0,0,0,0,0,-12.3,0,0,0,0,0.28600000000000003,46.94,147.97,0.92,0.25,887,0.30000000000000004,344,7.300000000000001,0.0000,0.0000 +2012,12,20,5,30,-3.1,1.18,0.027,0.62,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.28500000000000003,47.4,159.74,0.9,0.25,888,0.30000000000000004,342,6.300000000000001,0.0000,0.0000 +2012,12,20,6,30,-3.8000000000000003,1.17,0.023,0.62,0,0,0,0,0,-13,0,0,0,0,0.28300000000000003,48.7,168.48,0.88,0.25,889,0.2,341,5.5,0.0000,0.0000 +2012,12,20,7,30,-4.5,1.17,0.021,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.281,49.980000000000004,165.94,0.88,0.25,890,0.2,338,4.7,0.0000,0.0000 +2012,12,20,8,30,-5.2,1.16,0.02,0.62,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.28,51.42,155.43,0.87,0.25,890,0.2,332,3.8000000000000003,0.0000,0.0000 +2012,12,20,9,30,-5.7,1.16,0.02,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.279,52.93,143.33,0.87,0.25,891,0.2,324,3.3000000000000003,0.0000,0.0000 +2012,12,20,10,30,-5.9,1.16,0.02,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.277,53.65,130.95,0.87,0.25,891,0.2,316,3.2,0.0000,0.0000 +2012,12,20,11,30,-5.9,1.1500000000000001,0.019,0.62,0,0,0,0,0,-13.700000000000001,0,0,0,0,0.275,54.25,118.64,0.87,0.25,892,0.2,306,3.1,0.0000,0.0000 +2012,12,20,12,30,-6,1.1300000000000001,0.019,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.273,55.44,106.60000000000001,0.88,0.25,893,0.2,298,2.9000000000000004,0.0000,0.0000 +2012,12,20,13,30,-5.6000000000000005,1.12,0.017,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.271,54.07,95.05,0.87,0.25,894,0.2,293,3.2,0.0000,0.0000 +2012,12,20,14,30,-3.7,1.12,0.016,0.62,26,620,90,0,1,-13.5,26,620,0,90,0.269,46.47,84.09,0.87,0.25,894,0.2,290,3.6,0.0000,0.0000 +2012,12,20,15,30,-0.30000000000000004,1.11,0.016,0.62,43,874,277,0,4,-14.100000000000001,166,103,0,194,0.268,34.65,74.46000000000001,0.87,0.25,895,0.2,299,3.8000000000000003,8.9490,6.8848 +2012,12,20,16,30,2.7,1.1,0.015,0.62,50,976,441,7,2,-17.5,176,649,7,436,0.267,20.93,66.38,0.86,0.25,895,0.2,312,3.7,17.5312,13.6301 +2012,12,20,17,30,4.800000000000001,1.1,0.015,0.62,55,1022,557,0,1,-19.6,55,1022,0,557,0.267,15.11,60.59,0.86,0.25,895,0.2,315,3.2,27.8603,21.7530 +2012,12,20,18,30,6.5,1.1300000000000001,0.013000000000000001,0.62,54,1043,610,0,0,-20.6,54,1043,0,610,0.266,12.36,57.800000000000004,0.85,0.25,894,0.2,311,2.8000000000000003,30.9225,24.1792 +2012,12,20,19,30,7.7,1.16,0.014,0.62,55,1037,598,0,0,-21,55,1037,0,598,0.265,10.950000000000001,58.44,0.85,0.25,894,0.2,305,2.5,10.0666,7.8688 +2012,12,20,20,30,8.3,1.18,0.014,0.62,52,1011,520,0,0,-21.200000000000003,52,1011,0,520,0.264,10.41,62.42,0.84,0.25,893,0.2,296,2.2,2.7690,2.1594 +2012,12,20,21,30,7.9,1.22,0.013000000000000001,0.62,45,953,385,0,0,-21.1,45,953,0,385,0.263,10.77,69.14,0.84,0.25,893,0.2,286,1.6,7.2696,5.6350 +2012,12,20,22,30,6,1.23,0.013000000000000001,0.62,35,819,207,0,0,-15.200000000000001,35,819,0,207,0.263,20.23,77.88,0.8300000000000001,0.25,893,0.2,269,1.1,2.9200,2.2319 +2012,12,20,23,30,3.9000000000000004,1.25,0.014,0.62,14,417,30,0,0,-15.100000000000001,14,417,0,30,0.263,23.64,87.86,0.8300000000000001,0.25,893,0.2,250,1,0.0000,0.0000 +2012,12,21,0,30,2.8000000000000003,1.26,0.014,0.62,0,0,0,0,0,-17.8,0,0,0,0,0.263,20.35,99.25,0.8200000000000001,0.25,894,0.2,237,1.2000000000000002,0.0000,0.0000 +2012,12,21,1,30,1.6,1.26,0.014,0.62,0,0,0,0,0,-18.1,0,0,0,0,0.262,21.650000000000002,111.01,0.8200000000000001,0.25,894,0.2,231,1.4000000000000001,0.0000,0.0000 +2012,12,21,2,30,0,1.24,0.015,0.62,0,0,0,0,0,-18,0,0,0,0,0.261,24.47,123.17,0.8200000000000001,0.25,894,0.2,230,1.5,0.0000,0.0000 +2012,12,21,3,30,-1.6,1.23,0.015,0.62,0,0,0,0,0,-17.7,0,0,0,0,0.26,28.2,135.53,0.8300000000000001,0.25,894,0.2,233,1.6,0.0000,0.0000 +2012,12,21,4,30,-2.6,1.23,0.016,0.62,0,0,0,0,0,-17.900000000000002,0,0,0,0,0.259,29.85,147.87,0.84,0.25,894,0.2,238,1.7000000000000002,0.0000,0.0000 +2012,12,21,5,30,-3.1,1.22,0.017,0.62,0,0,0,0,4,-18.3,0,0,0,0,0.26,29.86,159.65,0.85,0.25,894,0.2,247,1.8,0.0000,0.0000 +2012,12,21,6,30,-3.4000000000000004,1.22,0.018000000000000002,0.62,0,0,0,0,0,-18.7,0,0,0,0,0.26,29.55,168.44,0.86,0.25,893,0.2,256,2,0.0000,0.0000 +2012,12,21,7,30,-3.5,1.21,0.02,0.62,0,0,0,0,0,-18.900000000000002,0,0,0,0,0.261,29.26,166.02,0.86,0.25,893,0.2,263,2.2,0.0000,0.0000 +2012,12,21,8,30,-3.5,1.2,0.02,0.62,0,0,0,0,0,-18.900000000000002,0,0,0,0,0.261,29.3,155.53,0.87,0.25,893,0.2,268,2.4000000000000004,0.0000,0.0000 +2012,12,21,9,30,-3.3000000000000003,1.19,0.02,0.62,0,0,0,0,4,-18.7,0,0,0,0,0.261,29.39,143.44,0.87,0.25,893,0.2,270,2.6,0.0000,0.0000 +2012,12,21,10,30,-3.3000000000000003,1.18,0.019,0.62,0,0,0,0,4,-18.2,0,0,0,0,0.261,30.560000000000002,131.05,0.86,0.25,892,0.2,272,2.7,0.0000,0.0000 +2012,12,21,11,30,-3.4000000000000004,1.17,0.018000000000000002,0.62,0,0,0,0,4,-17.6,0,0,0,0,0.26,32.45,118.74000000000001,0.86,0.25,892,0.2,272,2.6,0.0000,0.0000 +2012,12,21,12,30,-3.3000000000000003,1.16,0.018000000000000002,0.62,0,0,0,0,4,-17.2,0,0,0,0,0.259,33.410000000000004,106.7,0.86,0.25,893,0.2,271,2.7,0.0000,0.0000 +2012,12,21,13,30,-2.4000000000000004,1.1500000000000001,0.018000000000000002,0.62,0,0,0,0,1,-17,0,0,0,0,0.259,31.61,95.14,0.86,0.25,893,0.2,268,3.1,0.0000,0.0000 +2012,12,21,14,30,0.1,1.16,0.018000000000000002,0.62,26,610,88,7,4,-17.1,50,2,7,50,0.259,26.16,84.18,0.86,0.25,893,0.2,264,3.8000000000000003,0.0000,0.0000 +2012,12,21,15,30,3.3000000000000003,1.16,0.018000000000000002,0.62,44,870,276,0,4,-17.400000000000002,168,74,0,187,0.26,20.36,74.53,0.86,0.25,893,0.2,255,3.9000000000000004,9.5321,7.3325 +2012,12,21,16,30,6.7,1.16,0.017,0.62,52,973,441,0,3,-16.8,241,232,0,334,0.261,16.84,66.44,0.86,0.25,893,0.2,242,3.8000000000000003,23.0121,17.8903 +2012,12,21,17,30,9.8,1.16,0.017,0.62,57,1020,557,7,2,-17.3,217,659,7,540,0.262,13.1,60.63,0.86,0.25,892,0.2,230,4.4,30.6005,23.8919 +2012,12,21,18,30,12,1.1400000000000001,0.018000000000000002,0.62,60,1036,612,0,0,-18.900000000000002,60,1036,0,612,0.263,9.9,57.81,0.86,0.25,891,0.2,223,5,34.0446,26.6203 +2012,12,21,19,30,13.200000000000001,1.1300000000000001,0.018000000000000002,0.62,60,1033,600,0,0,-20.200000000000003,60,1033,0,600,0.264,8.18,58.42,0.87,0.25,890,0.2,219,5.2,33.2605,25.9990 +2012,12,21,20,30,13.3,1.11,0.019,0.62,57,1004,523,0,0,-20.700000000000003,57,1004,0,523,0.265,7.79,62.38,0.87,0.25,890,0.2,218,4.9,28.2403,22.0238 +2012,12,21,21,30,12,1.16,0.018000000000000002,0.62,50,945,388,0,0,-20.3,50,945,0,388,0.265,8.74,69.08,0.87,0.25,889,0.2,215,3.5,19.8601,15.3955 +2012,12,21,22,30,8,1.18,0.018000000000000002,0.62,39,791,206,0,0,-15,39,791,0,206,0.265,17.92,77.8,0.87,0.25,889,0.30000000000000004,209,2,9.9122,7.5774 +2012,12,21,23,30,3.9000000000000004,1.19,0.019,0.62,15,383,30,0,0,-12.9,15,383,0,30,0.265,28.16,87.78,0.87,0.25,889,0.30000000000000004,204,1.8,0.0000,0.0000 +2012,12,22,0,30,2.3000000000000003,1.18,0.019,0.62,0,0,0,0,0,-14.3,0,0,0,0,0.263,28.17,99.15,0.88,0.25,889,0.30000000000000004,205,2,0.0000,0.0000 +2012,12,22,1,30,1.7000000000000002,1.17,0.019,0.62,0,0,0,0,1,-14.8,0,0,0,0,0.261,28.25,110.91,0.88,0.25,890,0.30000000000000004,208,2.1,0.0000,0.0000 +2012,12,22,2,30,1.3,1.1500000000000001,0.019,0.62,0,0,0,0,0,-15.200000000000001,0,0,0,0,0.26,28.16,123.07000000000001,0.88,0.25,890,0.4,212,2.3000000000000003,0.0000,0.0000 +2012,12,22,3,30,0.9,1.1500000000000001,0.019,0.62,0,0,0,0,0,-15.3,0,0,0,0,0.26,28.61,135.43,0.88,0.25,889,0.4,217,2.5,0.0000,0.0000 +2012,12,22,4,30,0.5,1.1400000000000001,0.019,0.62,0,0,0,0,0,-15.4,0,0,0,0,0.259,29.37,147.77,0.88,0.25,889,0.4,221,2.6,0.0000,0.0000 +2012,12,22,5,30,-0.1,1.1300000000000001,0.019,0.62,0,0,0,0,1,-15.200000000000001,0,0,0,0,0.259,31.11,159.56,0.88,0.25,889,0.4,226,2.5,0.0000,0.0000 +2012,12,22,6,30,-0.7000000000000001,1.1400000000000001,0.019,0.62,0,0,0,0,0,-14.9,0,0,0,0,0.259,33.22,168.4,0.89,0.25,888,0.4,234,2.4000000000000004,0.0000,0.0000 +2012,12,22,7,30,-1.1,1.1400000000000001,0.02,0.62,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.259,34.9,166.08,0.89,0.25,888,0.4,242,2.3000000000000003,0.0000,0.0000 +2012,12,22,8,30,-1.4000000000000001,1.1500000000000001,0.022,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.258,36.62,155.62,0.9,0.25,888,0.4,248,2.2,0.0000,0.0000 +2012,12,22,9,30,-1.5,1.1400000000000001,0.021,0.62,0,0,0,0,0,-14.200000000000001,0,0,0,0,0.258,37.5,143.54,0.9,0.25,887,0.4,255,2.1,0.0000,0.0000 +2012,12,22,10,30,-1.3,1.1400000000000001,0.021,0.62,0,0,0,0,0,-14,0,0,0,0,0.258,37.34,131.15,0.9,0.25,887,0.5,263,2.2,0.0000,0.0000 +2012,12,22,11,30,-0.5,1.1300000000000001,0.023,0.62,0,0,0,0,1,-14.100000000000001,0,0,0,0,0.259,35.13,118.84,0.9,0.25,886,0.5,271,2.4000000000000004,0.0000,0.0000 +2012,12,22,12,30,0.1,1.1300000000000001,0.024,0.62,0,0,0,0,4,-14.200000000000001,0,0,0,0,0.261,33.160000000000004,106.8,0.9,0.25,886,0.5,276,2.4000000000000004,0.0000,0.0000 +2012,12,22,13,30,0.7000000000000001,1.1400000000000001,0.025,0.62,0,0,0,0,1,-14.200000000000001,0,0,0,0,0.262,31.900000000000002,95.23,0.91,0.25,886,0.5,275,2.5,0.0000,0.0000 +2012,12,22,14,30,2.3000000000000003,1.1400000000000001,0.026000000000000002,0.62,28,538,81,7,4,-14.4,46,1,7,47,0.262,27.95,84.26,0.91,0.25,886,0.5,271,3.2,0.0000,0.0000 +2012,12,22,15,30,4.5,1.12,0.028,0.62,48,808,263,0,4,-15,154,23,0,160,0.261,22.84,74.61,0.91,0.25,886,0.5,260,3.5,9.1824,7.0626 +2012,12,22,16,30,6.4,1.1,0.028,0.62,59,917,425,0,7,-14.200000000000001,175,406,0,337,0.26,21.29,66.5,0.92,0.25,886,0.5,247,3.4000000000000004,17.6202,13.6977 +2012,12,22,17,30,8.3,1.09,0.029,0.62,66,958,535,0,7,-13.200000000000001,260,284,0,399,0.258,20.28,60.660000000000004,0.92,0.25,885,0.6000000000000001,240,3.5,29.6594,23.1566 +2012,12,22,18,30,10.100000000000001,1.03,0.038,0.62,73,959,584,0,7,-12.5,303,162,0,390,0.257,19,57.81,0.93,0.25,884,0.7000000000000001,242,3.9000000000000004,34.1544,26.7060 +2012,12,22,19,30,11.3,1.03,0.038,0.62,73,955,573,0,7,-12.4,299,164,0,385,0.256,17.7,58.4,0.93,0.25,884,0.7000000000000001,247,4.3,33.3754,26.0891 +2012,12,22,20,30,11.600000000000001,1.04,0.039,0.62,69,918,496,0,7,-12.100000000000001,254,88,0,294,0.255,17.77,62.32,0.93,0.25,883,0.8,247,4.1000000000000005,28.4107,22.1573 +2012,12,22,21,30,11.3,1.05,0.042,0.62,62,839,362,0,7,-11.200000000000001,171,56,0,191,0.254,19.53,69.01,0.93,0.25,883,0.9,243,3.5,20.0253,15.5247 +2012,12,22,22,30,9.3,1.04,0.043000000000000003,0.62,47,683,193,0,7,-9.8,120,109,0,143,0.254,24.95,77.72,0.93,0.25,883,0.9,242,2.9000000000000004,9.8683,7.5449 +2012,12,22,23,30,7.1000000000000005,1.02,0.041,0.62,17,265,28,7,4,-8.8,15,0,7,15,0.253,31.29,87.69,0.92,0.25,883,0.8,244,2.8000000000000003,0.0000,0.0000 +2012,12,23,0,30,6.2,1.01,0.039,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.253,33.18,99.05,0.92,0.25,883,0.8,248,3.2,0.0000,0.0000 +2012,12,23,1,30,5.6000000000000005,1.03,0.036000000000000004,0.62,0,0,0,0,4,-8.6,0,0,0,0,0.254,35.19,110.81,0.92,0.25,883,0.7000000000000001,252,3.5,0.0000,0.0000 +2012,12,23,2,30,5.300000000000001,1.06,0.031,0.62,0,0,0,0,1,-8.3,0,0,0,0,0.254,36.87,122.96000000000001,0.91,0.25,883,0.7000000000000001,258,3.9000000000000004,0.0000,0.0000 +2012,12,23,3,30,4.7,1.1,0.028,0.62,0,0,0,0,0,-8,0,0,0,0,0.255,39.38,135.32,0.9,0.25,883,0.7000000000000001,266,4.3,0.0000,0.0000 +2012,12,23,4,30,3.9000000000000004,1.1300000000000001,0.024,0.62,0,0,0,0,1,-7.800000000000001,0,0,0,0,0.256,42.28,147.66,0.9,0.25,883,0.7000000000000001,276,4.4,0.0000,0.0000 +2012,12,23,5,30,3,1.1300000000000001,0.021,0.62,0,0,0,0,4,-7.800000000000001,0,0,0,0,0.257,44.86,159.46,0.88,0.25,883,0.6000000000000001,285,4.5,0.0000,0.0000 +2012,12,23,6,30,2.2,1.1300000000000001,0.019,0.62,0,0,0,0,4,-8,0,0,0,0,0.257,47.02,168.35,0.87,0.25,883,0.6000000000000001,292,4.4,0.0000,0.0000 +2012,12,23,7,30,1.6,1.16,0.018000000000000002,0.62,0,0,0,0,0,-8,0,0,0,0,0.256,49.03,166.14000000000001,0.87,0.25,883,0.5,296,4.3,0.0000,0.0000 +2012,12,23,8,30,1.2000000000000002,1.18,0.017,0.62,0,0,0,0,1,-7.800000000000001,0,0,0,0,0.256,50.99,155.71,0.87,0.25,883,0.5,298,4.1000000000000005,0.0000,0.0000 +2012,12,23,9,30,1,1.2,0.016,0.62,0,0,0,0,4,-7.6000000000000005,0,0,0,0,0.257,52.57,143.63,0.87,0.25,882,0.5,297,4.1000000000000005,0.0000,0.0000 +2012,12,23,10,30,0.8,1.2,0.016,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.258,54.42,131.25,0.88,0.25,882,0.5,296,4.1000000000000005,0.0000,0.0000 +2012,12,23,11,30,0.7000000000000001,1.19,0.016,0.62,0,0,0,0,8,-7.1000000000000005,0,0,0,0,0.259,55.910000000000004,118.93,0.88,0.25,882,0.4,293,4.2,0.0000,0.0000 +2012,12,23,12,30,0.6000000000000001,1.17,0.016,0.62,0,0,0,0,7,-6.9,0,0,0,0,0.26,57.36,106.89,0.88,0.25,882,0.4,292,4.4,0.0000,0.0000 +2012,12,23,13,30,0.9,1.16,0.015,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.261,56.99,95.32000000000001,0.88,0.25,882,0.4,291,4.7,0.0000,0.0000 +2012,12,23,14,30,2.7,1.17,0.015,0.62,25,584,82,7,4,-6.5,45,1,7,46,0.262,50.68,84.34,0.88,0.25,882,0.4,288,5,0.0000,0.0000 +2012,12,23,15,30,6.1000000000000005,1.18,0.014,0.62,41,862,269,0,8,-6.4,127,366,0,224,0.263,40.410000000000004,74.67,0.88,0.25,882,0.30000000000000004,284,5.1000000000000005,7.8510,6.0377 +2012,12,23,16,30,10.5,1.19,0.014,0.62,49,964,433,0,3,-6.1000000000000005,255,124,0,304,0.264,30.63,66.54,0.88,0.25,882,0.30000000000000004,284,5.300000000000001,17.7701,13.8135 +2012,12,23,17,30,14.600000000000001,1.2,0.013000000000000001,0.62,52,1012,548,0,3,-6.4,282,310,0,434,0.265,22.85,60.68,0.87,0.25,882,0.30000000000000004,289,6.5,21.9110,17.1068 +2012,12,23,18,30,17,1.2,0.013000000000000001,0.62,54,1030,603,0,7,-9.700000000000001,219,524,0,498,0.267,15.16,57.81,0.88,0.25,881,0.30000000000000004,291,7.6000000000000005,21.7651,17.0185 +2012,12,23,19,30,18,1.17,0.014,0.62,55,1025,593,0,0,-12.200000000000001,55,1025,0,593,0.27,11.68,58.370000000000005,0.88,0.25,880,0.30000000000000004,291,7.800000000000001,21.4182,16.7425 +2012,12,23,20,30,18.1,1.1,0.015,0.62,53,997,517,0,0,-13.600000000000001,53,997,0,517,0.273,10.33,62.27,0.87,0.25,880,0.30000000000000004,291,7.4,15.9771,12.4609 +2012,12,23,21,30,17,1.04,0.018000000000000002,0.62,50,931,385,0,0,-14.600000000000001,50,931,0,385,0.278,10.27,68.93,0.87,0.25,880,0.30000000000000004,291,6.1000000000000005,9.8638,7.6476 +2012,12,23,22,30,13.4,1.01,0.019,0.62,40,792,209,0,0,-14.100000000000001,40,792,0,209,0.28300000000000003,13.49,77.63,0.87,0.25,881,0.30000000000000004,291,4.1000000000000005,6.8533,5.2405 +2012,12,23,23,30,9.3,1.02,0.019,0.62,16,379,32,0,0,-11.8,16,379,0,32,0.28800000000000003,21.19,87.60000000000001,0.87,0.25,881,0.4,293,3,0.0000,0.0000 +2012,12,24,0,30,7.2,1.02,0.019,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.29,25.44,98.95,0.87,0.25,882,0.4,296,2.8000000000000003,0.0000,0.0000 +2012,12,24,1,30,5.800000000000001,0.98,0.019,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.291,29.7,110.7,0.87,0.25,882,0.4,300,2.4000000000000004,0.0000,0.0000 +2012,12,24,2,30,4.6000000000000005,0.98,0.019,0.62,0,0,0,0,1,-9.8,0,0,0,0,0.293,34.4,122.85000000000001,0.88,0.25,883,0.4,304,2.1,0.0000,0.0000 +2012,12,24,3,30,3.5,0.98,0.021,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.293,38.2,135.21,0.88,0.25,883,0.4,310,1.9000000000000001,0.0000,0.0000 +2012,12,24,4,30,2.8000000000000003,0.96,0.024,0.62,0,0,0,0,8,-9.4,0,0,0,0,0.293,40.27,147.55,0.89,0.25,883,0.4,317,1.8,0.0000,0.0000 +2012,12,24,5,30,2.2,0.9500000000000001,0.028,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.293,41.76,159.36,0.9,0.25,883,0.4,322,1.8,0.0000,0.0000 +2012,12,24,6,30,2,0.98,0.032,0.62,0,0,0,0,7,-9.4,0,0,0,0,0.293,42.47,168.29,0.91,0.25,883,0.4,326,1.7000000000000002,0.0000,0.0000 +2012,12,24,7,30,2,0.99,0.037,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.294,43.22,166.20000000000002,0.92,0.25,883,0.4,334,1.4000000000000001,0.0000,0.0000 +2012,12,24,8,30,2.3000000000000003,1,0.038,0.62,0,0,0,0,0,-9,0,0,0,0,0.295,43.050000000000004,155.8,0.92,0.25,882,0.4,346,1.2000000000000002,0.0000,0.0000 +2012,12,24,9,30,2.3000000000000003,1.04,0.038,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.296,43.61,143.73,0.92,0.25,882,0.4,184,1,0.0000,0.0000 +2012,12,24,10,30,1.9000000000000001,1.08,0.038,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.297,44.58,131.35,0.92,0.25,882,0.4,24,1,0.0000,0.0000 +2012,12,24,11,30,1.5,1.11,0.037,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.298,44.78,119.03,0.92,0.25,882,0.4,46,1,0.0000,0.0000 +2012,12,24,12,30,0.7000000000000001,1.1400000000000001,0.039,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.298,47.050000000000004,106.98,0.91,0.25,882,0.4,69,1,0.0000,0.0000 +2012,12,24,13,30,0.1,1.17,0.036000000000000004,0.62,0,0,0,0,7,-10,0,0,0,0,0.299,46.660000000000004,95.4,0.91,0.25,882,0.5,93,1.1,0.0000,0.0000 +2012,12,24,14,30,1.4000000000000001,1.16,0.04,0.62,29,489,77,7,7,-9.8,42,4,7,42,0.299,43.26,84.41,0.92,0.25,882,0.5,118,1.7000000000000002,0.0000,0.0000 +2012,12,24,15,30,3.6,1.1400000000000001,0.048,0.62,55,756,254,0,7,-10,141,219,0,199,0.299,36.38,74.73,0.93,0.25,881,0.6000000000000001,139,2.5,10.9855,8.4473 +2012,12,24,16,30,5.7,1.1400000000000001,0.051000000000000004,0.62,69,870,415,0,7,-9.700000000000001,188,343,0,324,0.299,32.21,66.58,0.93,0.25,881,0.6000000000000001,156,3,16.0249,12.4564 +2012,12,24,17,30,8.1,1.1300000000000001,0.051000000000000004,0.62,76,926,529,0,4,-9,308,180,0,396,0.299,28.650000000000002,60.7,0.93,0.25,880,0.6000000000000001,173,3.6,23.8301,18.6049 +2012,12,24,18,30,10.3,1.1300000000000001,0.055,0.62,81,936,580,0,8,-8.9,201,554,0,496,0.3,25.05,57.800000000000004,0.93,0.25,879,0.7000000000000001,187,3.9000000000000004,27.7923,21.7314 +2012,12,24,19,30,11.700000000000001,1.1400000000000001,0.057,0.62,81,930,570,0,7,-8.9,190,562,0,485,0.301,22.7,58.32,0.93,0.25,878,0.7000000000000001,195,3.9000000000000004,32.9949,25.7924 +2012,12,24,20,30,12,1.1400000000000001,0.063,0.62,79,885,492,0,6,-9,257,128,0,317,0.301,22.22,62.2,0.9400000000000001,0.25,877,0.8,192,3.3000000000000003,28.1050,21.9205 +2012,12,24,21,30,10.600000000000001,1.1400000000000001,0.069,0.62,72,802,361,0,6,-8.200000000000001,206,69,0,231,0.301,25.84,68.85000000000001,0.9400000000000001,0.25,876,0.8,176,2.4000000000000004,19.8963,15.4274 +2012,12,24,22,30,8.5,1.1300000000000001,0.069,0.62,54,641,192,0,6,-6.2,104,13,0,106,0.302,34.63,77.53,0.9400000000000001,0.25,875,0.8,164,2.3000000000000003,10.0213,7.6642 +2012,12,24,23,30,7.1000000000000005,1.1300000000000001,0.064,0.62,18,225,28,7,7,-6.6000000000000005,13,0,7,13,0.305,37.160000000000004,87.51,0.93,0.25,875,0.8,160,2.8000000000000003,0.0000,0.0000 +2012,12,25,0,30,6.1000000000000005,1.12,0.057,0.62,0,0,0,0,6,-6.6000000000000005,0,0,0,0,0.308,39.71,98.84,0.93,0.6900000000000001,874,0.8,158,2.9000000000000004,0.0000,0.0000 +2012,12,25,1,30,5,1.12,0.048,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.311,43.75,110.59,0.92,0.6900000000000001,874,0.8,158,2.4000000000000004,0.0000,0.0000 +2012,12,25,2,30,3.6,1.11,0.039,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.314,48.910000000000004,122.74000000000001,0.9,0.6900000000000001,874,0.8,160,1.9000000000000001,0.0000,0.0000 +2012,12,25,3,30,2.5,1.11,0.035,0.62,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.317,52.31,135.1,0.9,0.6900000000000001,873,0.8,160,1.7000000000000002,0.0000,0.0000 +2012,12,25,4,30,2,1.1,0.035,0.62,0,0,0,0,4,-6.300000000000001,0,0,0,0,0.32,54.15,147.44,0.91,0.6900000000000001,873,0.9,161,1.7000000000000002,0.0000,0.0000 +2012,12,25,5,30,1.6,1.09,0.039,0.62,0,0,0,0,4,-6.2,0,0,0,0,0.324,56.36,159.25,0.91,0.6900000000000001,872,0.9,170,1.6,0.0000,0.0000 +2012,12,25,6,30,1.1,1.08,0.047,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.328,60.2,168.23,0.92,0.6900000000000001,872,1,97,1.4000000000000001,0.0000,0.0000 +2012,12,25,7,30,0.30000000000000004,1.11,0.059000000000000004,0.62,0,0,0,0,4,-5,0,0,0,0,0.332,67.44,166.24,0.93,0.6900000000000001,872,1.1,26,2,0.0000,0.0000 +2012,12,25,8,30,-0.6000000000000001,1.1300000000000001,0.073,0.62,0,0,0,0,4,-4.3,0,0,0,0,0.337,76.01,155.88,0.9500000000000001,0.6900000000000001,873,1.1,45,3,0.0000,0.0000 +2012,12,25,9,30,-1.5,1.12,0.1,0.62,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.343,82.2,143.82,0.96,0.6900000000000001,873,1.1,52,3.7,0.0000,0.0000 +2012,12,25,10,30,-2.4000000000000004,1.11,0.124,0.62,0,0,0,0,6,-4.5,0,0,0,0,0.34900000000000003,85.45,131.44,0.96,0.6900000000000001,874,1,48,4.5,0.0000,0.0000 +2012,12,25,11,30,-3.5,1.1,0.135,0.62,0,0,0,0,6,-5.5,0,0,0,0,0.354,85.87,119.11,0.96,0.6900000000000001,876,0.9,36,5.5,0.0000,0.0000 +2012,12,25,12,30,-4.6000000000000005,1.09,0.171,0.62,0,0,0,0,6,-7.2,0,0,0,0,0.358,81.84,107.06,0.96,0.6900000000000001,878,0.8,20,6.800000000000001,0.0000,0.0000 +2012,12,25,13,30,-5.800000000000001,1.12,0.186,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.359,75.3,95.47,0.96,0.6900000000000001,880,0.7000000000000001,9,7.7,0.0000,0.0000 +2012,12,25,14,30,-6.300000000000001,1.16,0.164,0.62,42,244,66,7,6,-11.600000000000001,25,0,7,25,0.357,66.12,84.47,0.96,0.6900000000000001,882,0.7000000000000001,2,8.200000000000001,0.0000,0.0000 +2012,12,25,15,30,-5.7,1.18,0.139,0.62,86,602,244,0,4,-12.9,128,1,0,128,0.354,56.94,74.78,0.96,0.6900000000000001,883,0.6000000000000001,179,8.4,9.7543,7.4998 +2012,12,25,16,30,-4.5,1.2,0.11900000000000001,0.62,104,772,410,0,4,-13.5,214,3,0,215,0.35000000000000003,49.45,66.62,0.9500000000000001,0.6900000000000001,884,0.6000000000000001,356,8.5,17.0738,13.2712 +2012,12,25,17,30,-3.4000000000000004,1.21,0.109,0.62,114,850,530,0,4,-13.700000000000001,209,0,0,209,0.34600000000000003,44.74,60.71,0.9500000000000001,0.6900000000000001,885,0.6000000000000001,355,8.5,21.7410,16.9736 +2012,12,25,18,30,-2.5,1.23,0.13,0.62,129,853,584,0,4,-13.700000000000001,231,0,0,231,0.342,42.06,57.77,0.9500000000000001,0.6900000000000001,885,0.6000000000000001,356,8.3,27.6822,21.6453 +2012,12,25,19,30,-1.9000000000000001,1.23,0.125,0.62,126,854,575,0,4,-13.5,215,0,0,215,0.339,40.92,58.28,0.9500000000000001,0.6900000000000001,885,0.6000000000000001,358,8,26.9931,21.1012 +2012,12,25,20,30,-1.9000000000000001,1.24,0.114,0.62,113,831,501,0,4,-13.200000000000001,140,0,0,140,0.336,41.9,62.13,0.9500000000000001,0.6900000000000001,886,0.6000000000000001,359,7.7,17.2405,13.4474 +2012,12,25,21,30,-2.4000000000000004,1.27,0.112,0.62,96,754,369,0,0,-12.9,96,754,0,369,0.333,44.21,68.76,0.9500000000000001,0.6900000000000001,886,0.6000000000000001,358,7.300000000000001,11.9461,9.2637 +2012,12,25,22,30,-3.6,1.29,0.091,0.62,64,618,198,0,0,-12.9,64,618,0,198,0.329,48.67,77.43,0.9500000000000001,0.6900000000000001,887,0.6000000000000001,358,6.300000000000001,5.0855,3.8900 +2012,12,25,23,30,-5.1000000000000005,1.31,0.078,0.62,20,225,31,0,1,-12.9,20,225,0,31,0.325,54.14,87.39,0.9500000000000001,0.6900000000000001,887,0.6000000000000001,180,5.2,0.0000,0.0000 +2012,12,26,0,30,-6.300000000000001,1.32,0.07100000000000001,0.62,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.321,58.51,98.73,0.9400000000000001,0.78,888,0.5,5,4.800000000000001,0.0000,0.0000 +2012,12,26,1,30,-7.1000000000000005,1.32,0.065,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.316,61.53,110.47,0.9400000000000001,0.78,888,0.5,8,4.800000000000001,0.0000,0.0000 +2012,12,26,2,30,-7.5,1.32,0.06,0.62,0,0,0,0,0,-13.3,0,0,0,0,0.312,62.99,122.62,0.9400000000000001,0.78,888,0.5,10,4.7,0.0000,0.0000 +2012,12,26,3,30,-7.7,1.31,0.056,0.62,0,0,0,0,7,-13.4,0,0,0,0,0.31,63.660000000000004,134.98,0.9400000000000001,0.78,888,0.5,13,4.5,0.0000,0.0000 +2012,12,26,4,30,-7.800000000000001,1.3,0.052000000000000005,0.62,0,0,0,0,7,-13.4,0,0,0,0,0.308,63.99,147.33,0.9400000000000001,0.78,888,0.4,16,4.2,0.0000,0.0000 +2012,12,26,5,30,-7.7,1.28,0.052000000000000005,0.62,0,0,0,0,7,-13.4,0,0,0,0,0.307,63.54,159.14000000000001,0.9400000000000001,0.78,888,0.4,18,3.7,0.0000,0.0000 +2012,12,26,6,30,-7.5,1.25,0.053,0.62,0,0,0,0,7,-13.4,0,0,0,0,0.304,62.67,168.15,0.9400000000000001,0.78,887,0.4,13,2.9000000000000004,0.0000,0.0000 +2012,12,26,7,30,-7.4,1.24,0.054,0.62,0,0,0,0,7,-13.4,0,0,0,0,0.302,62.42,166.28,0.9400000000000001,0.78,887,0.4,178,2.1,0.0000,0.0000 +2012,12,26,8,30,-7.300000000000001,1.24,0.053,0.62,0,0,0,0,7,-13.3,0,0,0,0,0.3,62.09,155.96,0.9400000000000001,0.78,887,0.4,344,1.8,0.0000,0.0000 +2012,12,26,9,30,-7,1.24,0.051000000000000004,0.62,0,0,0,0,7,-13.3,0,0,0,0,0.298,60.93,143.9,0.9400000000000001,0.78,887,0.4,335,1.8,0.0000,0.0000 +2012,12,26,10,30,-6.6000000000000005,1.25,0.05,0.62,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.297,59.59,131.52,0.9400000000000001,0.78,887,0.4,330,1.6,0.0000,0.0000 +2012,12,26,11,30,-6.2,1.24,0.049,0.62,0,0,0,0,7,-13,0,0,0,0,0.297,58.39,119.2,0.9400000000000001,0.78,886,0.5,340,1.3,0.0000,0.0000 +2012,12,26,12,30,-5.800000000000001,1.24,0.049,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.297,57.44,107.14,0.9400000000000001,0.78,886,0.5,182,0.8,0.0000,0.0000 +2012,12,26,13,30,-5.4,1.24,0.048,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.297,56.61,95.55,0.9400000000000001,0.78,886,0.7000000000000001,64,0.7000000000000001,0.0000,0.0000 +2012,12,26,14,30,-4.6000000000000005,1.25,0.048,0.62,31,443,73,7,7,-12.4,29,0,7,29,0.295,54.35,84.53,0.9400000000000001,0.78,886,0.8,135,1.2000000000000002,0.0000,0.0000 +2012,12,26,15,30,-3.4000000000000004,1.27,0.045,0.62,59,748,255,0,7,-12,88,3,0,89,0.293,51.22,74.83,0.9400000000000001,0.78,886,0.8,166,2,6.2713,4.8214 +2012,12,26,16,30,-1.8,1.28,0.041,0.62,74,874,420,0,7,-11.700000000000001,226,35,0,240,0.292,46.75,66.65,0.9400000000000001,0.78,886,0.8,177,2.7,11.3262,8.8034 +2012,12,26,17,30,-0.1,1.28,0.04,0.62,83,936,540,0,7,-11.3,291,32,0,307,0.292,42.77,60.71,0.93,0.78,885,0.7000000000000001,184,3.4000000000000004,11.4737,8.9577 +2012,12,26,18,30,1.4000000000000001,1.28,0.037,0.62,85,961,598,0,7,-10.600000000000001,336,45,0,360,0.292,40.54,57.75,0.93,0.78,884,0.7000000000000001,190,4,12.8943,10.0825 +2012,12,26,19,30,2.6,1.27,0.035,0.62,83,955,586,0,7,-10,352,172,0,443,0.291,38.84,58.22,0.93,0.78,882,0.8,195,4.4,11.9686,9.3563 +2012,12,26,20,30,3.3000000000000003,1.27,0.034,0.62,77,928,512,0,6,-9.700000000000001,283,39,0,302,0.291,38,62.050000000000004,0.93,0.78,881,0.8,197,4.4,7.6176,5.9419 +2012,12,26,21,30,3.3000000000000003,1.28,0.034,0.62,66,857,378,0,4,-9.5,214,10,0,218,0.291,38.46,68.66,0.93,0.78,881,0.9,193,4,19.0975,14.8108 +2012,12,26,22,30,1.2000000000000002,1.29,0.033,0.62,49,716,206,0,0,-9.4,49,716,0,206,0.292,45.08,77.33,0.93,0.78,880,0.9,183,2.9000000000000004,9.5048,7.2719 +2012,12,26,23,30,-0.7000000000000001,1.27,0.036000000000000004,0.62,18,315,33,0,0,-9.4,18,315,0,33,0.292,51.910000000000004,87.29,0.93,0.78,880,0.9,173,2.7,0.0000,0.0000 +2012,12,27,0,30,-0.8,1.24,0.041,0.62,0,0,0,0,1,-9.5,0,0,0,0,0.294,51.730000000000004,98.61,0.9400000000000001,0.65,880,0.9,169,3.8000000000000003,0.0000,0.0000 +2012,12,27,1,30,-1,1.24,0.043000000000000003,0.62,0,0,0,0,1,-9.3,0,0,0,0,0.294,53.15,110.36,0.93,0.65,880,0.9,169,4.2,0.0000,0.0000 +2012,12,27,2,30,-1.6,1.24,0.041,0.62,0,0,0,0,4,-9.3,0,0,0,0,0.294,55.89,122.5,0.93,0.65,879,0.7000000000000001,169,4.2,0.0000,0.0000 +2012,12,27,3,30,-2.3000000000000003,1.23,0.04,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.293,59.120000000000005,134.87,0.93,0.65,879,0.6000000000000001,171,3.9000000000000004,0.0000,0.0000 +2012,12,27,4,30,-3.1,1.21,0.039,0.62,0,0,0,0,4,-9.200000000000001,0,0,0,0,0.293,62.88,147.21,0.92,0.65,879,0.6000000000000001,177,3.6,0.0000,0.0000 +2012,12,27,5,30,-3.8000000000000003,1.19,0.038,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.293,66.58,159.03,0.92,0.65,879,0.5,186,3.3000000000000003,0.0000,0.0000 +2012,12,27,6,30,-4.2,1.18,0.038,0.62,0,0,0,0,1,-9,0,0,0,0,0.294,69.15,168.07,0.92,0.65,879,0.5,194,3.1,0.0000,0.0000 +2012,12,27,7,30,-4.3,1.17,0.037,0.62,0,0,0,0,1,-8.9,0,0,0,0,0.295,70.22,166.31,0.92,0.65,878,0.5,200,3.1,0.0000,0.0000 +2012,12,27,8,30,-4.3,1.1500000000000001,0.037,0.62,0,0,0,0,1,-8.8,0,0,0,0,0.297,70.68,156.03,0.92,0.65,878,0.5,203,3.1,0.0000,0.0000 +2012,12,27,9,30,-4.1000000000000005,1.1300000000000001,0.036000000000000004,0.62,0,0,0,0,1,-8.8,0,0,0,0,0.299,69.83,143.98,0.91,0.65,877,0.5,208,3,0.0000,0.0000 +2012,12,27,10,30,-3.7,1.11,0.035,0.62,0,0,0,0,1,-8.8,0,0,0,0,0.301,67.8,131.61,0.91,0.65,877,0.5,221,3.1,0.0000,0.0000 +2012,12,27,11,30,-3.2,1.11,0.034,0.62,0,0,0,0,1,-8.9,0,0,0,0,0.304,64.92,119.28,0.92,0.65,877,0.5,239,3.1,0.0000,0.0000 +2012,12,27,12,30,-2.8000000000000003,1.12,0.032,0.62,0,0,0,0,1,-9,0,0,0,0,0.306,62.42,107.21000000000001,0.92,0.65,877,0.5,257,2.8000000000000003,0.0000,0.0000 +2012,12,27,13,30,-2,1.1400000000000001,0.031,0.62,0,0,0,0,1,-9.1,0,0,0,0,0.307,58.230000000000004,95.61,0.92,0.65,877,0.5,274,2.8000000000000003,0.0000,0.0000 +2012,12,27,14,30,0,1.1500000000000001,0.03,0.62,28,521,77,7,4,-9.1,40,0,7,40,0.307,50.33,84.59,0.92,0.65,877,0.4,286,3.3000000000000003,0.0000,0.0000 +2012,12,27,15,30,2.6,1.16,0.03,0.62,52,809,264,0,4,-8.8,122,2,0,123,0.307,42.9,74.87,0.92,0.65,877,0.4,289,3.4000000000000004,4.3586,3.3506 +2012,12,27,16,30,5.5,1.16,0.03,0.62,66,922,431,0,7,-8,223,38,0,238,0.306,37.28,66.67,0.92,0.65,877,0.4,287,3.6,12.6402,9.8244 +2012,12,27,17,30,7.9,1.17,0.03,0.62,74,974,551,0,6,-7.5,304,56,0,332,0.306,32.72,60.71,0.92,0.65,876,0.4,285,4,16.8537,13.1580 +2012,12,27,18,30,9.1,1.18,0.03,0.62,78,994,609,0,6,-9.1,308,31,0,325,0.306,26.68,57.71,0.92,0.65,875,0.4,281,4.2,20.0972,15.7149 +2012,12,27,19,30,9.5,1.18,0.029,0.62,77,984,595,0,6,-10.200000000000001,306,33,0,323,0.306,23.86,58.160000000000004,0.92,0.65,875,0.5,274,4.2,24.6688,19.2852 +2012,12,27,20,30,9.3,1.18,0.029,0.62,72,956,521,0,7,-10.700000000000001,294,75,0,330,0.307,23.26,61.96,0.91,0.65,875,0.5,268,3.6,16.4407,12.8248 +2012,12,27,21,30,7.800000000000001,1.16,0.028,0.62,62,895,389,0,4,-10.200000000000001,241,23,0,249,0.309,26.64,68.56,0.91,0.65,875,0.5,260,2.2,11.2922,8.7585 +2012,12,27,22,30,5,1.1500000000000001,0.027,0.62,46,758,214,0,0,-7,46,758,0,214,0.31,41.54,77.22,0.9,0.65,875,0.5,241,1.2000000000000002,9.8949,7.5717 +2012,12,27,23,30,3.3000000000000003,1.1400000000000001,0.03,0.62,18,352,36,0,0,-9.5,18,352,0,36,0.312,38.46,87.18,0.91,0.65,875,0.6000000000000001,197,1,0.0000,0.0000 +2012,12,28,0,30,2.5,1.12,0.036000000000000004,0.62,0,0,0,0,1,-10.4,0,0,0,0,0.317,37.86,98.49000000000001,0.92,0.6900000000000001,876,0.6000000000000001,151,1,0.0000,0.0000 +2012,12,28,1,30,1.6,1.08,0.045,0.62,0,0,0,0,8,-9.9,0,0,0,0,0.323,42.06,110.23,0.93,0.6900000000000001,876,0.7000000000000001,141,1.1,0.0000,0.0000 +2012,12,28,2,30,0.9,1.06,0.053,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.329,48.03,122.38,0.9400000000000001,0.6900000000000001,876,0.7000000000000001,148,1.1,0.0000,0.0000 +2012,12,28,3,30,0.30000000000000004,1.06,0.057,0.62,0,0,0,0,8,-8.3,0,0,0,0,0.332,52.56,134.74,0.9400000000000001,0.6900000000000001,877,0.7000000000000001,152,1,0.0000,0.0000 +2012,12,28,4,30,-0.5,1.06,0.056,0.62,0,0,0,0,7,-8,0,0,0,0,0.333,57.04,147.09,0.93,0.6900000000000001,877,0.7000000000000001,142,1.1,0.0000,0.0000 +2012,12,28,5,30,-1.4000000000000001,1.06,0.056,0.62,0,0,0,0,7,-7.7,0,0,0,0,0.333,62.17,158.91,0.93,0.6900000000000001,877,0.7000000000000001,112,1.4000000000000001,0.0000,0.0000 +2012,12,28,6,30,-2,1.06,0.059000000000000004,0.62,0,0,0,0,7,-7.5,0,0,0,0,0.332,66.15,167.98,0.93,0.6900000000000001,878,0.7000000000000001,80,2,0.0000,0.0000 +2012,12,28,7,30,-2.7,1.07,0.064,0.62,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.331,70.61,166.33,0.93,0.6900000000000001,878,0.7000000000000001,59,2.4000000000000004,0.0000,0.0000 +2012,12,28,8,30,-3.5,1.09,0.067,0.62,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.331,76.05,156.1,0.9400000000000001,0.6900000000000001,879,0.7000000000000001,47,2.7,0.0000,0.0000 +2012,12,28,9,30,-4.4,1.1300000000000001,0.065,0.62,0,0,0,0,4,-7,0,0,0,0,0.333,82.04,144.06,0.9500000000000001,0.6900000000000001,879,0.6000000000000001,39,2.9000000000000004,0.0000,0.0000 +2012,12,28,10,30,-5.2,1.18,0.058,0.62,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.334,86.4,131.68,0.9500000000000001,0.6900000000000001,879,0.6000000000000001,32,3,0.0000,0.0000 +2012,12,28,11,30,-5.6000000000000005,1.2,0.051000000000000004,0.62,0,0,0,0,4,-7.5,0,0,0,0,0.335,86.68,119.35000000000001,0.9500000000000001,0.6900000000000001,880,0.5,22,3.1,0.0000,0.0000 +2012,12,28,12,30,-5.800000000000001,1.2,0.053,0.62,0,0,0,0,4,-8,0,0,0,0,0.336,84.72,107.29,0.9500000000000001,0.6900000000000001,882,0.5,14,3.5,0.0000,0.0000 +2012,12,28,13,30,-5.7,1.22,0.055,0.62,0,0,0,0,1,-8.6,0,0,0,0,0.335,79.8,95.68,0.9500000000000001,0.6900000000000001,883,0.5,10,3.8000000000000003,0.0000,0.0000 +2012,12,28,14,30,-5,1.25,0.051000000000000004,0.62,31,450,73,0,1,-9.3,31,450,0,73,0.334,71.63,84.64,0.9500000000000001,0.6900000000000001,883,0.5,7,4.1000000000000005,0.0000,0.0000 +2012,12,28,15,30,-3.4000000000000004,1.29,0.048,0.62,59,761,257,0,1,-9.600000000000001,59,761,0,257,0.333,61.97,74.9,0.9400000000000001,0.6900000000000001,884,0.5,5,4.1000000000000005,6.0216,4.6287 +2012,12,28,16,30,-1.5,1.33,0.045,0.62,74,896,429,0,1,-9.600000000000001,74,896,0,429,0.33,54.07,66.68,0.9400000000000001,0.6900000000000001,884,0.4,2,3.9000000000000004,12.5329,9.7408 +2012,12,28,17,30,0.30000000000000004,1.35,0.043000000000000003,0.62,83,955,550,0,0,-9.4,83,955,0,550,0.326,47.99,60.69,0.9400000000000001,0.6900000000000001,884,0.4,177,3.7,18.2262,14.2295 +2012,12,28,18,30,1.6,1.36,0.043000000000000003,0.62,87,977,609,0,0,-9.3,87,977,0,609,0.32,44.33,57.67,0.9400000000000001,0.6900000000000001,884,0.4,349,3.5,18.1471,14.1903 +2012,12,28,19,30,2.5,1.36,0.041,0.62,85,977,602,0,0,-9.1,85,977,0,602,0.314,41.96,58.09,0.9400000000000001,0.6900000000000001,884,0.4,341,3.4000000000000004,17.9923,14.0662 +2012,12,28,20,30,2.9000000000000004,1.37,0.038,0.62,78,953,528,0,0,-9.200000000000001,78,953,0,528,0.309,40.61,61.870000000000005,0.9400000000000001,0.6900000000000001,884,0.4,334,3.2,17.9754,14.0228 +2012,12,28,21,30,2.8000000000000003,1.37,0.034,0.62,66,896,395,0,0,-9.5,66,896,0,395,0.306,40.06,68.45,0.93,0.6900000000000001,884,0.4,331,2.6,12.9091,10.0137 +2012,12,28,22,30,1.2000000000000002,1.37,0.031,0.62,48,764,219,0,0,-9.5,48,764,0,219,0.303,44.88,77.10000000000001,0.93,0.6900000000000001,884,0.4,166,1.5,10.2862,7.8727 +2012,12,28,23,30,-0.8,1.37,0.028,0.62,19,393,39,0,0,-9.700000000000001,19,393,0,39,0.301,50.76,87.06,0.92,0.6900000000000001,884,0.4,30,0.9,0.0000,0.0000 +2012,12,29,0,30,-2.1,1.36,0.026000000000000002,0.62,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.299,53.77,98.37,0.92,0.68,885,0.4,77,1.1,0.0000,0.0000 +2012,12,29,1,30,-3.1,1.35,0.026000000000000002,0.62,0,0,0,0,1,-10,0,0,0,0,0.298,58.76,110.11,0.92,0.68,885,0.4,105,1.2000000000000002,0.0000,0.0000 +2012,12,29,2,30,-3.7,1.36,0.026000000000000002,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.295,62.230000000000004,122.26,0.92,0.68,886,0.4,125,1.2000000000000002,0.0000,0.0000 +2012,12,29,3,30,-4.1000000000000005,1.36,0.027,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.293,64.52,134.62,0.92,0.68,887,0.4,142,1.2000000000000002,0.0000,0.0000 +2012,12,29,4,30,-4.5,1.36,0.027,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.291,66.48,146.96,0.92,0.68,887,0.4,155,1.2000000000000002,0.0000,0.0000 +2012,12,29,5,30,-4.7,1.36,0.027,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.289,67.25,158.78,0.92,0.68,888,0.4,167,1.1,0.0000,0.0000 +2012,12,29,6,30,-4.9,1.36,0.026000000000000002,0.62,0,0,0,0,0,-10,0,0,0,0,0.28600000000000003,67.62,167.89000000000001,0.91,0.68,888,0.4,181,1,0.0000,0.0000 +2012,12,29,7,30,-5,1.36,0.024,0.62,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.28400000000000003,67.07000000000001,166.35,0.91,0.68,889,0.30000000000000004,198,1,0.0000,0.0000 +2012,12,29,8,30,-5,1.35,0.023,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.28300000000000003,65.49,156.16,0.91,0.68,889,0.30000000000000004,218,0.9,0.0000,0.0000 +2012,12,29,9,30,-4.800000000000001,1.34,0.022,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.28200000000000003,62.940000000000005,144.13,0.9,0.68,889,0.30000000000000004,240,0.8,0.0000,0.0000 +2012,12,29,10,30,-4.5,1.33,0.021,0.62,0,0,0,0,0,-11,0,0,0,0,0.28200000000000003,60.51,131.76,0.9,0.68,889,0.30000000000000004,262,0.6000000000000001,0.0000,0.0000 +2012,12,29,11,30,-4.4,1.32,0.02,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.281,59.54,119.43,0.9,0.68,890,0.30000000000000004,183,0.4,0.0000,0.0000 +2012,12,29,12,30,-4.3,1.32,0.02,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.28,58.980000000000004,107.35000000000001,0.9,0.68,891,0.30000000000000004,94,0.5,0.0000,0.0000 +2012,12,29,13,30,-3.7,1.31,0.02,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.279,56.56,95.73,0.9,0.68,892,0.30000000000000004,105,0.6000000000000001,0.0000,0.0000 +2012,12,29,14,30,-2.2,1.31,0.02,0.62,26,565,79,0,0,-10.700000000000001,26,565,0,79,0.278,52.120000000000005,84.68,0.9,0.68,892,0.30000000000000004,129,0.8,0.0000,0.0000 +2012,12,29,15,30,0.8,1.32,0.02,0.62,48,843,267,0,0,-10.5,48,843,0,267,0.277,42.54,74.93,0.9,0.68,893,0.30000000000000004,149,1.6,12.5783,9.6682 +2012,12,29,16,30,3.9000000000000004,1.32,0.02,0.62,61,950,437,0,1,-10.8,61,950,0,437,0.276,33.24,66.69,0.9,0.68,893,0.30000000000000004,160,2.7,22.5890,17.5564 +2012,12,29,17,30,5.6000000000000005,1.32,0.02,0.62,68,1000,558,0,0,-11,68,1000,0,558,0.277,29.05,60.67,0.9,0.68,893,0.30000000000000004,171,3.1,30.1976,23.5760 +2012,12,29,18,30,6.6000000000000005,1.31,0.02,0.62,72,1020,618,0,0,-11.200000000000001,72,1020,0,618,0.277,26.85,57.620000000000005,0.9,0.68,892,0.30000000000000004,180,3.2,34.0121,26.5965 +2012,12,29,19,30,7,1.31,0.019,0.62,70,1019,610,0,0,-11.5,70,1019,0,610,0.278,25.43,58.01,0.89,0.68,891,0.30000000000000004,186,3.3000000000000003,33.5463,26.2270 +2012,12,29,20,30,7,1.3,0.018000000000000002,0.62,65,995,536,0,0,-11.9,65,995,0,536,0.279,24.580000000000002,61.77,0.89,0.68,890,0.30000000000000004,185,3.3000000000000003,28.7773,22.4508 +2012,12,29,21,30,5.800000000000001,1.29,0.018000000000000002,0.62,57,937,403,0,0,-12.3,57,937,0,403,0.28,25.96,68.34,0.88,0.68,890,0.30000000000000004,179,2.7,20.4975,15.9021 +2012,12,29,22,30,2.1,1.28,0.018000000000000002,0.62,43,809,225,0,0,-11,43,809,0,225,0.28,37.33,76.98,0.88,0.68,889,0.30000000000000004,173,1.9000000000000001,10.5347,8.0647 +2012,12,29,23,30,-1.4000000000000001,1.28,0.019,0.62,19,444,42,0,0,-11.600000000000001,19,444,0,42,0.278,45.96,86.94,0.89,0.68,890,0.30000000000000004,174,1.9000000000000001,0.0000,0.0000 +2012,12,30,0,30,-2.4000000000000004,1.28,0.02,0.62,0,0,0,0,1,-12.600000000000001,0,0,0,0,0.277,45.47,98.24000000000001,0.89,0.24,890,0.30000000000000004,178,2.1,0.0000,0.0000 +2012,12,30,1,30,-2.5,1.27,0.022,0.62,0,0,0,0,1,-12.700000000000001,0,0,0,0,0.276,45.28,109.98,0.9,0.24,890,0.30000000000000004,182,2.4000000000000004,0.0000,0.0000 +2012,12,30,2,30,-2.5,1.27,0.024,0.62,0,0,0,0,1,-12.700000000000001,0,0,0,0,0.276,45.38,122.13,0.91,0.24,891,0.30000000000000004,187,2.8000000000000003,0.0000,0.0000 +2012,12,30,3,30,-2.6,1.28,0.027,0.62,0,0,0,0,1,-12.5,0,0,0,0,0.276,46.7,134.49,0.91,0.24,890,0.30000000000000004,187,3,0.0000,0.0000 +2012,12,30,4,30,-2.8000000000000003,1.28,0.029,0.62,0,0,0,0,1,-11.9,0,0,0,0,0.276,49.51,146.83,0.92,0.24,890,0.4,185,3,0.0000,0.0000 +2012,12,30,5,30,-3,1.28,0.03,0.62,0,0,0,0,4,-11.3,0,0,0,0,0.276,52.69,158.65,0.92,0.24,890,0.4,185,3.1,0.0000,0.0000 +2012,12,30,6,30,-3.1,1.27,0.03,0.62,0,0,0,0,1,-10.9,0,0,0,0,0.276,54.99,167.78,0.92,0.24,889,0.5,190,3.2,0.0000,0.0000 +2012,12,30,7,30,-2.9000000000000004,1.25,0.033,0.62,0,0,0,0,4,-10.600000000000001,0,0,0,0,0.277,55.18,166.36,0.93,0.24,889,0.5,193,3.3000000000000003,0.0000,0.0000 +2012,12,30,8,30,-2.6,1.23,0.035,0.62,0,0,0,0,7,-10.5,0,0,0,0,0.278,54.51,156.22,0.93,0.24,889,0.6000000000000001,194,3.3000000000000003,0.0000,0.0000 +2012,12,30,9,30,-2.5,1.22,0.037,0.62,0,0,0,0,7,-10.4,0,0,0,0,0.28,54.52,144.20000000000002,0.9400000000000001,0.24,889,0.6000000000000001,196,3.2,0.0000,0.0000 +2012,12,30,10,30,-2.4000000000000004,1.22,0.039,0.62,0,0,0,0,7,-10.3,0,0,0,0,0.28300000000000003,54.54,131.83,0.9400000000000001,0.24,888,0.7000000000000001,196,3.1,0.0000,0.0000 +2012,12,30,11,30,-2.3000000000000003,1.21,0.042,0.62,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.28700000000000003,54.76,119.49000000000001,0.9400000000000001,0.24,888,0.7000000000000001,195,3.1,0.0000,0.0000 +2012,12,30,12,30,-2.2,1.21,0.048,0.62,0,0,0,0,7,-10,0,0,0,0,0.292,55.1,107.41,0.9400000000000001,0.24,888,0.8,191,3.1,0.0000,0.0000 +2012,12,30,13,30,-1.9000000000000001,1.21,0.054,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.296,54.6,95.79,0.9500000000000001,0.24,888,0.9,187,3.3000000000000003,0.0000,0.0000 +2012,12,30,14,30,-1.1,1.21,0.06,0.62,30,395,67,7,7,-9.700000000000001,39,4,7,40,0.3,52.04,84.72,0.9500000000000001,0.24,888,1,182,3.6,0.0000,0.0000 +2012,12,30,15,30,0.2,1.2,0.065,0.62,59,697,240,0,6,-9.600000000000001,93,7,0,95,0.301,47.71,74.95,0.9500000000000001,0.24,888,1,181,4.4,13.0643,10.0412 +2012,12,30,16,30,1.6,1.2,0.066,0.62,74,820,398,0,6,-9.8,184,36,0,198,0.302,42.5,66.69,0.9500000000000001,0.24,887,1.1,185,5.300000000000001,23.0084,17.8822 +2012,12,30,17,30,2.9000000000000004,1.2,0.065,0.62,82,882,514,0,6,-9.8,261,101,0,310,0.301,38.65,60.65,0.9500000000000001,0.24,886,1.1,188,5.5,30.6406,23.9221 +2012,12,30,18,30,3.9000000000000004,1.2,0.066,0.62,86,905,571,0,6,-9.600000000000001,276,83,0,320,0.298,36.67,57.56,0.9500000000000001,0.24,885,1.1,191,5.300000000000001,34.5238,26.9973 +2012,12,30,19,30,4.3,1.19,0.068,0.62,86,901,565,0,6,-9.200000000000001,282,211,0,394,0.293,36.86,57.92,0.9500000000000001,0.24,884,1.1,193,4.7,34.0067,26.5879 +2012,12,30,20,30,4.4,1.19,0.064,0.62,80,876,495,0,6,-8.700000000000001,250,94,0,295,0.28700000000000003,37.94,61.660000000000004,0.9400000000000001,0.24,883,1.1,190,3.8000000000000003,29.2320,22.8070 +2012,12,30,21,30,3.7,1.2,0.059000000000000004,0.62,69,813,370,0,6,-8.1,191,46,0,209,0.28300000000000003,41.78,68.22,0.9400000000000001,0.24,883,1.1,179,2.5,20.9322,16.2413 +2012,12,30,22,30,1.9000000000000001,1.19,0.055,0.62,52,672,205,0,6,-6.9,87,9,0,89,0.281,52.120000000000005,76.85000000000001,0.9400000000000001,0.24,883,1.1,169,1.6,10.8319,8.2941 +2012,12,30,23,30,0.5,1.17,0.056,0.62,21,282,37,7,6,-7.300000000000001,14,0,7,14,0.28,55.92,86.82000000000001,0.9400000000000001,0.24,883,1.1,167,1.5,0.0000,0.0000 +2012,12,31,0,30,0.2,1.1500000000000001,0.058,0.62,0,0,0,0,6,-7.5,0,0,0,0,0.28,56.13,98.11,0.9400000000000001,0.24,883,1.1,171,1.9000000000000001,0.0000,0.0000 +2012,12,31,1,30,0.4,1.1300000000000001,0.065,0.62,0,0,0,0,6,-7.2,0,0,0,0,0.28,56.59,109.85000000000001,0.9400000000000001,0.24,884,1.2000000000000002,175,2.3000000000000003,0.0000,0.0000 +2012,12,31,2,30,0.4,1.1300000000000001,0.067,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.281,58.17,122,0.9500000000000001,0.24,883,1.3,173,2.7,0.0000,0.0000 +2012,12,31,3,30,0.2,1.12,0.066,0.62,0,0,0,0,6,-6.4,0,0,0,0,0.28200000000000003,61.25,134.36,0.9500000000000001,0.24,883,1.4000000000000001,172,3.1,0.0000,0.0000 +2012,12,31,4,30,-0.2,1.09,0.078,0.62,0,0,0,0,9,-5.5,0,0,0,0,0.28400000000000003,67.29,146.70000000000002,0.96,0.24,883,1.5,176,3.3000000000000003,0.0000,0.0000 +2012,12,31,5,30,-0.7000000000000001,1.06,0.095,0.62,0,0,0,0,6,-4.3,0,0,0,0,0.28500000000000003,76.74,158.52,0.96,0.24,883,1.6,173,3.2,0.0000,0.0000 +2012,12,31,6,30,-1,1.06,0.101,0.62,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.28600000000000003,83.79,167.67000000000002,0.97,0.24,882,1.6,163,3,0.0000,0.0000 +2012,12,31,7,30,-1.3,1.06,0.099,0.62,0,0,0,0,6,-3.1,0,0,0,0,0.28600000000000003,87.77,166.36,0.97,0.24,881,1.5,159,2.9000000000000004,0.0000,0.0000 +2012,12,31,8,30,-1.3,1.01,0.107,0.62,0,0,0,0,6,-2.8000000000000003,0,0,0,0,0.28600000000000003,89.61,156.27,0.97,0.24,880,1.3,165,2.8000000000000003,0.0000,0.0000 +2012,12,31,9,30,-0.9,0.98,0.123,0.62,0,0,0,0,6,-2.3000000000000003,0,0,0,0,0.28500000000000003,90.48,144.27,0.98,0.24,880,1.2000000000000002,178,2.9000000000000004,0.0000,0.0000 +2012,12,31,10,30,-0.4,0.97,0.115,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.28400000000000003,91.39,131.89000000000001,0.97,0.24,879,1.1,186,2.9000000000000004,0.0000,0.0000 +2012,12,31,11,30,-0.2,0.9500000000000001,0.093,0.62,0,0,0,0,4,-1.3,0,0,0,0,0.28400000000000003,92.60000000000001,119.56,0.97,0.24,879,1,192,2.6,0.0000,0.0000 +2012,12,31,12,30,-0.1,0.9500000000000001,0.088,0.62,0,0,0,0,4,-1,0,0,0,0,0.28300000000000003,93.71000000000001,107.47,0.97,0.24,879,0.9,201,2.4000000000000004,0.0000,0.0000 +2012,12,31,13,30,0,0.96,0.074,0.62,0,0,0,0,4,-0.8,0,0,0,0,0.28300000000000003,94.54,95.83,0.97,0.24,879,0.8,208,2.6,0.0000,0.0000 +2012,12,31,14,30,0.7000000000000001,0.96,0.056,0.62,31,406,68,7,4,-0.5,22,0,7,22,0.28300000000000003,91.77,84.76,0.96,0.24,880,0.7000000000000001,217,3.3000000000000003,0.0000,0.0000 +2012,12,31,15,30,2.1,0.99,0.045,0.62,54,749,248,7,4,-0.1,64,0,7,64,0.28200000000000003,85.60000000000001,74.97,0.9500000000000001,0.24,880,0.7000000000000001,229,4.5,4.6475,3.5720 +2012,12,31,16,30,4.3,1.05,0.032,0.62,61,893,414,0,4,0.1,90,0,0,90,0.281,74.34,66.68,0.93,0.24,880,0.7000000000000001,241,5.300000000000001,10.4249,8.1023 +2012,12,31,17,30,6.4,1.11,0.024,0.62,62,960,533,7,3,-0.5,287,47,7,310,0.279,61.45,60.61,0.91,0.24,880,0.7000000000000001,254,5.7,17.0246,13.2918 +2012,12,31,18,30,7.7,1.1500000000000001,0.024,0.62,64,987,595,0,0,-2,64,987,0,595,0.278,50.15,57.5,0.91,0.24,880,0.6000000000000001,264,5.800000000000001,17.8820,13.9839 +2012,12,31,19,30,8.4,1.17,0.025,0.62,65,984,589,0,0,-3.5,65,984,0,589,0.276,42.92,57.83,0.91,0.24,880,0.6000000000000001,268,5.5,21.9755,17.1822 +2012,12,31,20,30,8.6,1.19,0.025,0.62,62,959,519,0,0,-4.6000000000000005,62,959,0,519,0.274,38.97,61.550000000000004,0.92,0.24,880,0.6000000000000001,269,5.1000000000000005,16.0998,12.5620 +2012,12,31,21,30,7.7,1.2,0.025,0.62,55,907,394,0,0,-5.5,55,907,0,394,0.273,38.79,68.1,0.92,0.24,880,0.5,268,3.7,10.8667,8.4326 +2012,12,31,22,30,4.7,1.21,0.025,0.62,44,776,222,0,4,-4.4,49,0,0,49,0.273,51.83,76.72,0.92,0.24,881,0.5,268,2.1,4.2884,3.2845 +2012,12,31,23,30,1.6,1.21,0.025,0.62,20,405,43,7,4,-5,20,0,7,20,0.273,61.52,86.69,0.92,0.24,881,0.6000000000000001,274,1.5,0.0000,0.0000 From 8711b3d3e132432a3fbc7953f8915733c70bc81d Mon Sep 17 00:00:00 2001 From: jmartin4 Date: Thu, 16 Oct 2025 16:20:49 -0600 Subject: [PATCH 36/79] Sprucing up plots for white paper --- .../plot_co2h_methanol.py | 113 ++++++++++++------ .../tech_config_co2h.yaml | 4 +- 2 files changed, 80 insertions(+), 37 deletions(-) diff --git a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py index bbd81b4d7..f6960d6f5 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py +++ b/examples/03_methanol/co2_hydrogenation_doc/plot_co2h_methanol.py @@ -1,15 +1,20 @@ import pandas as pd +import matplotlib.dates as mdates import matplotlib.pyplot as plt +myFmt = mdates.DateFormatter("%m/%d") + + def plot_methanol(model): - plt.clf() + fig = plt.figure(figsize=(8, 8)) times = pd.date_range("2013", periods=8760, freq="1h") # Electricity to H2 using Electrolyzer plt.subplot(3, 2, 1) - plt.title("Electrolyzer") + T = plt.title("Electrolyzer") + T.set_position([-0.2, 1.1]) elyzer_elec_in = ( model.plant.electrolyzer.eco_pem_electrolyzer_performance.get_val("electricity_in") / 1000 ) @@ -18,77 +23,115 @@ def plot_methanol(model): / 1000 * 24 ) - plt.plot(times, elyzer_elec_in, label="electricity_in [MW]", color=[0.5, 0.5, 1]) + plt.plot(times, elyzer_elec_in, label="Electricity Available [MW]", color=[0.5, 0.5, 1]) plt.plot( [times[0], times[-1]], [160, 160], "--", - label="electrolyzer_max_input [MW]", + label="Electrolyzer Capacity [MW]", color=[0.5, 0.5, 1], ) - plt.plot(times, elyzer_h2_out, label="hydrogen_out [t/d]", color=[1, 0.5, 0]) - plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) + plt.plot(times, elyzer_h2_out, label="Hydrogen Produced [t/d]", color=[1, 0.5, 0]) + plt.legend(bbox_to_anchor=(0, 1.02), loc=3) + plt.xlim(pd.to_datetime("2012-12-31"), pd.to_datetime("2013-01-31")) + plt.xticks(["2013-01-01", "2013-01-08", "2013-01-15", "2013-01-22", "2013-01-29"]) + ax = plt.gca() + ax.xaxis.set_major_formatter(myFmt) + plt.xlabel("Day in simulated year") + plt.ylabel( + "Power\n[MW]\n \nFlow\n[t/d]", rotation="horizontal", va="center", ha="center", labelpad=20 + ) # Electricity to CO2 using DOC plt.subplot(3, 2, 2) - plt.title("DOC") + T = plt.title("Direct\nOcean\nCapture") + T.set_position([-0.2, 1.1]) doc_elec_in = model.plant.doc.direct_ocean_capture_performance.get_val("electricity_in") / 1e6 doc_co2_out = model.plant.doc.direct_ocean_capture_performance.get_val("co2_out") / 1000 - plt.plot(times, doc_elec_in, label="electricity_in [MW]") + plt.plot(times, doc_elec_in, label="Electricity Available [MW]", color=[0.5, 0.5, 1]) plt.plot( [times[0], times[-1]], [43.32621908, 43.32621908], "--", - label="doc_max_input [MW]", + label="DOC Input Capacity [MW]", color=[0.5, 0.5, 1], ) - plt.plot(times, doc_co2_out, label="co2_out [t/hr]", color=[0.5, 0.25, 0]) - plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) + plt.plot(times, doc_co2_out, label="CO$_2$ Produced [t/hr]", color=[0.5, 0.25, 0]) + plt.legend(bbox_to_anchor=(0, 1.02), loc=3) + plt.xlim(pd.to_datetime("2012-12-31"), pd.to_datetime("2013-01-31")) + plt.xticks(["2013-01-01", "2013-01-08", "2013-01-15", "2013-01-22", "2013-01-29"]) + ax = plt.gca() + ax.xaxis.set_major_formatter(myFmt) + plt.xlabel("Day in simulated year") + plt.ylabel( + "Power\n[MW]\n \nFlow\n[t/hr]", rotation="horizontal", va="center", ha="center", labelpad=20 + ) # H2 and Storage plt.subplot(3, 2, 3) - plt.title("H2 Storage") + T = plt.title("Hydrogen\nStorage") + T.set_position([-0.2, 1.1]) h2_storage_in = model.plant.electrolyzer_to_h2_storage_pipe.get_val("hydrogen_in") * 3600 h2_storage_out = model.plant.h2_storage_to_methanol_pipe.get_val("hydrogen_out") * 3600 - plt.plot(times, h2_storage_in, label="hydrogen_in [kg/hr]", color=[1, 0.5, 0]) - plt.plot(times, h2_storage_out, label="hydrogen_out [kg/hr]", color=[0, 0.5, 0]) - plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) + plt.plot(times, h2_storage_in, label="Hydrogen In [kg/hr]", color=[1, 0.5, 0]) + plt.plot(times, h2_storage_out, label="Hydrogen Out [kg/hr]", color=[0, 0.5, 0]) + plt.legend(bbox_to_anchor=(0, 1.02), loc=3) + plt.xlim(pd.to_datetime("2012-12-31"), pd.to_datetime("2013-01-31")) + plt.xticks(["2013-01-01", "2013-01-08", "2013-01-15", "2013-01-22", "2013-01-29"]) + ax = plt.gca() + ax.xaxis.set_major_formatter(myFmt) + plt.xlabel("Day in simulated year") + plt.ylabel("Flow\n[kg/hr]", rotation="horizontal", va="center", ha="center", labelpad=20) # H2 and Storage plt.subplot(3, 2, 4) - plt.title("CO2 Storage") + T = plt.title("CO$_2$\nStorage") + T.set_position([-0.2, 1.1]) co2_storage_in = model.plant.doc_to_co2_storage_pipe.get_val("co2_in") co2_storage_out = model.plant.co2_storage_to_methanol_pipe.get_val("co2_out") - plt.plot(times, co2_storage_in, label="co2_in [kg/hr]", color=[0.5, 0.25, 0]) - plt.plot(times, co2_storage_out, label="co2_out [kg/hr]", color=[0, 0.25, 0.5]) - plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) + plt.plot(times, co2_storage_in, label="CO$_2$ In [kg/hr]", color=[0.5, 0.25, 0]) + plt.plot(times, co2_storage_out, label="CO$_2$ Out [kg/hr]", color=[0, 0.25, 0.5]) + plt.legend(bbox_to_anchor=(0, 1.02), loc=3) + plt.xlim(pd.to_datetime("2012-12-31"), pd.to_datetime("2013-01-31")) + plt.xticks(["2013-01-01", "2013-01-08", "2013-01-15", "2013-01-22", "2013-01-29"]) + ax = plt.gca() + ax.xaxis.set_major_formatter(myFmt) + plt.xlabel("Day in simulated year") + plt.ylabel("Flow\n[kg/hr]", rotation="horizontal", va="center", ha="center", labelpad=20) # H2 and CO2 to Methanol plt.subplot(3, 2, 5) - plt.title("Methanol") + T = plt.title("Methanol") + T.set_position([-0.2, 1.1]) meoh_h2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("hydrogen_in") meoh_co2_in = model.plant.methanol.co2h_methanol_plant_performance.get_val("co2_in") meoh_meoh_out = model.plant.methanol.co2h_methanol_plant_performance.get_val("methanol_out") - plt.plot(times, meoh_h2_in, label="hydrogen_in [kg/hr]", color=[0, 0.5, 0]) - plt.plot(times, meoh_co2_in, label="co2_in [kg/hr]", color=[0, 0.25, 0.5]) - plt.plot(times, meoh_meoh_out, label="methanol_out [kg/hr]", color=[1, 0, 0.5]) - plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) + plt.plot(times, meoh_h2_in, label="Hydrogen In [kg/hr]", color=[0, 0.5, 0]) + plt.plot(times, meoh_co2_in, label="CO$_2$ In [kg/hr]", color=[0, 0.25, 0.5]) + plt.plot(times, meoh_meoh_out, label="Methanol Out [kg/hr]", color=[1, 0, 0.5]) + plt.legend(bbox_to_anchor=(0, 1.02), loc=3) + plt.xlim(pd.to_datetime("2012-12-31"), pd.to_datetime("2013-01-31")) + plt.xticks(["2013-01-01", "2013-01-08", "2013-01-15", "2013-01-22", "2013-01-29"]) + ax = plt.gca() + ax.xaxis.set_major_formatter(myFmt) + plt.xlabel("Day in simulated year") + plt.ylabel("Flow\n[kg/hr]", rotation="horizontal", va="center", ha="center", labelpad=20) # H2 and CO2 storage SOC plt.subplot(3, 2, 6) - plt.title("Storage SOC") + T = plt.title("State of\nCharge\n(SOC)") + T.set_position([-0.2, 1.1]) h2_soc = model.plant.h2_storage.get_val("hydrogen_soc") * 100 co2_soc = model.plant.co2_storage.get_val("co2_soc") * 100 - plt.plot(times, h2_soc, label="hydrogen_soc [%]", color=[1, 0.5, 0]) - plt.plot(times, co2_soc, label="co2_soc [%]", color=[0.5, 0.25, 0]) - plt.legend() - plt.xlim(pd.to_datetime("2012-12-15"), pd.to_datetime("2013-01-31")) + plt.plot(times, h2_soc, label="Hydrogen SOC [%]", color=[1, 0.5, 0]) + plt.plot(times, co2_soc, label="CO$_2$ SOC [%]", color=[0.5, 0.25, 0]) + plt.legend(bbox_to_anchor=(0, 1.02), loc=3) + plt.xlim(pd.to_datetime("2012-12-31"), pd.to_datetime("2013-01-31")) + plt.xticks(["2013-01-01", "2013-01-08", "2013-01-15", "2013-01-22", "2013-01-29"]) + ax = plt.gca() + ax.xaxis.set_major_formatter(myFmt) + plt.xlabel("Day in simulated year") + plt.ylabel("SOC\n[kg]", rotation="horizontal", va="center", ha="center", labelpad=20) - fig = plt.gcf() fig.tight_layout() plt.show() diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index a5c21aa7b..58e4c858a 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -68,7 +68,7 @@ technologies: demand_profile: 2108.73919484047 cost_parameters: cost_year: 2022 - energy_capex: 383 # $/kg + energy_capex: 383 # $/kg - based on https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/review22/st235_houchins_2022_p-pdf.pdf?Status=Master power_capex: .000001 # $/kg/h opex_fraction: .000001 # percent of capex doc: @@ -120,7 +120,7 @@ technologies: demand_profile: 15388.3891 cost_parameters: cost_year: 2022 - energy_capex: 5 # $/kg + energy_capex: 5 # $/kg - based on https://www.maritime.dot.gov/sites/marad.dot.gov/files/2024-11/LCE%20MARAD%20CCS%20TEA%20Final%20Report%20-%2031%20May%202024%20%283%29.pdf power_capex: .000001 # $/kg/h opex_fraction: .000001 # percent of capex methanol: From 856cfbdf4a17ee276a2fffa69856d000003e0147 Mon Sep 17 00:00:00 2001 From: John Jasa Date: Fri, 17 Oct 2025 11:53:56 -0500 Subject: [PATCH 37/79] Add a bool to driver_config for creating OM reports (#308) * Added bool for turning off OM reports * Reverting framework test * Added test for create_om_reports --- CHANGELOG.md | 1 + h2integrate/core/h2integrate_model.py | 4 +- h2integrate/core/inputs/driver_schema.yaml | 4 ++ h2integrate/core/test/conftest.py | 7 ++- h2integrate/core/test/test_framework.py | 71 ++++++++++++++++++++++ 5 files changed, 83 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21b3f0698..62e0ccb95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Added an optimized offshore methanol production case to examples/03_methanol/co2_hydrogenation_doc - Updated setting up recorder in `PoseOptimization` - Added resource models to make solar resource API calls to the NREL Developer GOES dataset +- Added `create_om_reports` option to driver config to enable/disable OpenMDAO reports (N2 diagrams, etc.) ## 0.4.0 [October 1, 2025] diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index b6744c4b3..a98d1fd27 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -30,7 +30,9 @@ def __init__(self, config_file): # load custom models self.collect_custom_models() - self.prob = om.Problem() + # Check if create_om_reports is specified in driver config + create_om_reports = self.driver_config.get("general", {}).get("create_om_reports", True) + self.prob = om.Problem(reports=create_om_reports) self.model = self.prob.model # create site-level model diff --git a/h2integrate/core/inputs/driver_schema.yaml b/h2integrate/core/inputs/driver_schema.yaml index 44d3dbe02..8e4099284 100644 --- a/h2integrate/core/inputs/driver_schema.yaml +++ b/h2integrate/core/inputs/driver_schema.yaml @@ -17,6 +17,10 @@ properties: type: string description: Name of the folder for output files default: "output" + create_om_reports: + type: boolean + description: Whether to create OpenMDAO reports (N2 diagrams, etc.) + default: true driver: type: object properties: diff --git a/h2integrate/core/test/conftest.py b/h2integrate/core/test/conftest.py index 48904cf27..5e33704d1 100644 --- a/h2integrate/core/test/conftest.py +++ b/h2integrate/core/test/conftest.py @@ -35,9 +35,10 @@ def pytest_sessionfinish(session, exitstatus): if file2path.exists(): file2path.unlink() # remove folder created in h2integrate/core/test/test_recorder.py - files_in_test_folder = list(test_dir.iterdir()) - if len(files_in_test_folder) == 0: - test_dir.rmdir() + if test_dir.exists(): + files_in_test_folder = list(test_dir.iterdir()) + if len(files_in_test_folder) == 0: + test_dir.rmdir() # remove environment variables used for tests in # h2integrate/core/test/test_recorder.py diff --git a/h2integrate/core/test/test_framework.py b/h2integrate/core/test/test_framework.py index 00e6e8898..7270db03d 100644 --- a/h2integrate/core/test/test_framework.py +++ b/h2integrate/core/test/test_framework.py @@ -275,3 +275,74 @@ def test_resource_connection_error_missing_resource(): # Clean up temporary YAML files temp_plant_config.unlink(missing_ok=True) temp_highlevel_yaml.unlink(missing_ok=True) + + +def test_reports_turned_off(): + # Change the current working directory to the example's directory + os.chdir(examples_dir / "13_air_separator") + + # Path to the original config files in the example directory + orig_plant_config = Path.cwd() / "plant_config.yaml" + orig_driver_config = Path.cwd() / "driver_config.yaml" + orig_tech_config = Path.cwd() / "tech_config.yaml" + orig_highlevel_yaml = Path.cwd() / "13_air_separator.yaml" + + # Create temporary config files + temp_plant_config = Path.cwd() / "temp_plant_config.yaml" + temp_driver_config = Path.cwd() / "temp_driver_config.yaml" + temp_tech_config = Path.cwd() / "temp_tech_config.yaml" + temp_highlevel_yaml = Path.cwd() / "temp_13_air_separator.yaml" + + # Copy the original config files to temp files + shutil.copy(orig_plant_config, temp_plant_config) + shutil.copy(orig_driver_config, temp_driver_config) + shutil.copy(orig_tech_config, temp_tech_config) + shutil.copy(orig_highlevel_yaml, temp_highlevel_yaml) + + # Load and modify the driver config to turn off reports + with temp_driver_config.open() as f: + driver_data = yaml.safe_load(f) + + if "general" not in driver_data: + driver_data["general"] = {} + driver_data["general"]["create_om_reports"] = False + + # Save the modified driver config + with temp_driver_config.open("w") as f: + yaml.safe_dump(driver_data, f) + + # Load the high-level YAML content and point to temp config files + with temp_highlevel_yaml.open() as f: + highlevel_data = yaml.safe_load(f) + + # Modify the high-level YAML to point to the temp config files + highlevel_data["plant_config"] = str(temp_plant_config.name) + highlevel_data["driver_config"] = str(temp_driver_config.name) + highlevel_data["technology_config"] = str(temp_tech_config.name) + + # Save the modified high-level YAML back + with temp_highlevel_yaml.open("w") as f: + yaml.safe_dump(highlevel_data, f) + + # Record initial files before running the model + initial_files = set(Path.cwd().rglob("*")) + + # Run the model + h2i_model = H2IntegrateModel(temp_highlevel_yaml) + h2i_model.run() + + # Check that no OpenMDAO report directories were created + final_files = set(Path.cwd().rglob("*")) + new_files = final_files - initial_files + report_dirs = [f for f in new_files if f.is_dir() and "reports" in f.name.lower()] + + # Assert that no report directories were created due to create_om_reports=False + assert ( + len(report_dirs) == 0 + ), f"Report directories were created despite create_om_reports=False: {report_dirs}" + + # Clean up temporary YAML files + temp_plant_config.unlink(missing_ok=True) + temp_driver_config.unlink(missing_ok=True) + temp_tech_config.unlink(missing_ok=True) + temp_highlevel_yaml.unlink(missing_ok=True) From 75500899f373b618ae630e9a226bdf01f9d2b7ef Mon Sep 17 00:00:00 2001 From: John Jasa Date: Fri, 24 Oct 2025 16:22:12 -0500 Subject: [PATCH 38/79] Minor opt formulation fixes (#317) --- h2integrate/controllers/openloop_controllers.py | 11 ++++++++++- h2integrate/core/pose_optimization.py | 16 ++++++++++------ 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/h2integrate/controllers/openloop_controllers.py b/h2integrate/controllers/openloop_controllers.py index 2e8ecc992..aa1dfd945 100644 --- a/h2integrate/controllers/openloop_controllers.py +++ b/h2integrate/controllers/openloop_controllers.py @@ -246,7 +246,8 @@ class DemandOpenLoopController(ControllerBaseClass): the system. {resource_name}_missed_load (float): Missed load timeseries when demand exceeds supply. - Units: Defined in `resource_rate_units` (e.g., "kg/h"). - + total_{resource_name}_missed_load (float): Total missed load over the simulation period. + - Units: Defined in `resource_rate_units` (e.g., "kg"). """ def setup(self): @@ -303,6 +304,12 @@ def setup(self): desc=f"{resource_name} missed load timeseries", ) + self.add_output( + f"total_{resource_name}_missed_load", + units=self.config.resource_rate_units, + desc=f"Total {resource_name} missed load over the simulation period", + ) + def compute(self, inputs, outputs): """ Compute the state of charge (SOC) and output flow based on demand and storage constraints. @@ -383,3 +390,5 @@ def compute(self, inputs, outputs): # Record the missed load at the current time step missed_load_array[t] = max(0, (demand_t - output_array[t])) + + outputs[f"total_{resource_name}_missed_load"] = np.sum(missed_load_array) diff --git a/h2integrate/core/pose_optimization.py b/h2integrate/core/pose_optimization.py index 5a3b3216b..bfdc7b881 100644 --- a/h2integrate/core/pose_optimization.py +++ b/h2integrate/core/pose_optimization.py @@ -356,7 +356,10 @@ def set_driver(self, opt_prob): return opt_prob def set_objective(self, opt_prob): - """Set merit figure. Each objective has its own scaling. Check first for user override + """Set merit figure. Each objective has its own scaling. Check first for user override. + + The optimization is always minimizing the objective. If you wish to maximize the objective, + use a negative ref or scaler value in the config. Args: opt_prob (openmdao problem instance): openmdao problem instance for @@ -413,11 +416,12 @@ def set_constraints(self, opt_prob): opt_prob (openmdao problem instance): openmdao problem instance for current optimization problem edited to include constraint setup """ - for technology, variables in self.config["constraints"].items(): - for key, value in variables.items(): - if value["flag"]: - value.pop("flag") - opt_prob.model.add_constraint(f"{technology}.{key}", **value) + if self.config.get("constraints", False): + for technology, variables in self.config["constraints"].items(): + for key, value in variables.items(): + if value["flag"]: + value.pop("flag") + opt_prob.model.add_constraint(f"{technology}.{key}", **value) def set_recorders(self, opt_prob): """sets up a recorder for the openmdao problem as desired in the input yaml From e922c522719347be5c8490fd6dc5b6522bda33a7 Mon Sep 17 00:00:00 2001 From: Jared Thomas Date: Sun, 26 Oct 2025 12:51:24 -0600 Subject: [PATCH 39/79] Pyomo dispatch (#211) * refactor open loop controller classes * update inputs for control model functionality * refactor model processing * pre-commit formatting updates * missing driver_config from refactor * pre-commit formatting fix * adding missing driver_config declaration to open loop controller base class * shift from generic to * correct incorrect comment * new controller directory structure * add *_out/ to .gitignore to avoid clutter * edit change log * demand controller working and tested in single-tech system * add h2 dispatch example * working with pass through * complete h2 dispatch example and corresponding example test * h2 dispatch example plot * add doc strings and other comments/explanations * update docs * rename control_model to control_strategy * update changelog and test_all_examples * update example for h2 rule-based dispatch * add PyXDSM output to .gitignore * rename control_methods to control_strategies * rename * rename * restore openloop_controllers.py from develop * replace old openloop contents with new * remove control_strategies/openloop_controllers.py * move openloop_controllers.py to control_strategies directory * move openloop_controllers.py back to controllers/ * fix typo * revert cost_coeffs.csv changes * update examples for financial group default naming and control naming changes * typing adjustment reverted by hook * Removed time_steps as an input to controllers * minor refactor to demand controller * create base class for Pyomo dispatch rules for individual technologies * Made demand profile available as an OpenMDAO input * Added back persistent variables * add infrastructure for pyomo dispatch * input files for pyomo dispatch test * remove debugging artifacts * remove copy shape from demand profile to allow users to specify the demand profile in the config * revert base class start * enable passing of pyomo objects for pyomo dispatch * add battery baseclass * add initial pysam battery wrapper; note, not fully functional * add heuristic dispatch controller for battery from HOPP * include dispatch rule framework * add heuristic dispatch test * generalize heuristic dispatch and change battery units to kW from MW * update for financial input rework * restructuring control and dispatch folders * split out pyomo comtrol tests * move previously missed pyomo test * wip * move storage pyomo rules to storage rules base class * propogate use of baseclass for pyomo rules to technologies * successfully pass rules * dynamically set pyomo rule names * allow dispatch rules in dispatch tech * pass pyomo_dispatch_solver to storage performance model * reorder so control and dispatch rules are put into tech groups first * updating pysam battery model * add more pseudo code * update pysam battery model * update pyomo controller, separating from openloop controller * WIP: heuristic controller test update * a step to generalize matching dispatch techs group names * update heuristic load following battery dispatch test * generalize the return of pyomo blocks * bring in changes from elenya-grant/dev/battery to allow battery tests to run * add logic for over charging/dischargin and move demand to be an openMDAO input * update test values for new logic and add demand as openMDAO input * updated battery dispatch tests to included min and max SOC tests * Battery cost model and updates to performance model (#3) * added battery cost model and updated pysam battery so capacity is input --------- Co-authored-by: Jared Thomas * run pre-commit hooks back to fc3bbde98999d957347a63ab714837756390cf09 * precommit adjustments * update heuristic battery dispatch * update h2storage naming * increase grid limit value so it is not a limiting factor * set default value for grid_limit to be high * remove grid limit from test input file * update test for heuristic battery controller * rename test input folder for h2_storage * generalize naming to be technology agnostic * update to get n_timesteps and dt from plant_config * update electricity out from battery to remove charged energy * WIP: example 18; NOTE: mod in h2integrate_model is stand-in for demand module * fix typo Co-authored-by: John Jasa * fix typo Co-authored-by: John Jasa * Update h2integrate/storage/battery/pysam_battery.py Co-authored-by: John Jasa * Update h2integrate/core/h2integrate_model.py Co-authored-by: John Jasa * Reworked setup order in H2I * update pysam battery logic to finally be correct, plus example * updating test and example * WIP: update h2storage to use new heuristic structure * battery control pyomo tests all passing * refactor demand no longer required by performance model * wip: separation of dispatch and simulate * Removed policy_parameters throughout * removed unused tech_config_heuristic in test_controllers * removed cost_year from WindPlantCostModelConfig * removed unused battery baseclasses * removed policy parameters from test_controllers plant configs * wip: fix pysam battery usage * wip: debug p_chargeable * wip: adding local checks * Making pyomo control options a config * Updating after merge * Merging; pre-commit fix * finance fix * correct logic and update tests * swap np.max for np.maximum * Working on testing (#4) * units fix and merge_shared_inputs * Update SOC start value * Update battery power output keys and adjust tolerances * update tests --------- Co-authored-by: Genevieve Starke * get all tests passing * update example 14 * update names from 'resource' to 'commodity' * add abs_tol for max SOC test * add rtol to max SOC test * adjust tol * adjust tol for unmet demand test * add more checks on how much power the battery can charge or discharge * update tolerance * adjust tol * adjust expected values * rename resource to commodity for dispatch and battery. print warning if unable to generate xdsm diagram rather than raising an error * remove internal battery sizing method in favor of using the builtin one from PySAM. * remove commented code * update comments and doc strings based on feedback * update doc strings and validators * add test for example 18 * remove code from usage: pyomo [-h] [--version] {build-extensions,convert,download-extensions,help,install-extras,model-viewer,run,solve,test-solvers} ... This is the main driver for the Pyomo optimization software. options: -h, --help show this help message and exit --version show program's version number and exit subcommands: {build-extensions,convert,download-extensions,help,install-extras,model-viewer,run,solve,test-solvers} build-extensions Build compiled extension modules convert Convert a Pyomo model to another format download-extensions Download compiled extension modules help Print help information. install-extras Install "extra" packages that Pyomo can leverage. model-viewer Run the Pyomo model viewer run Execute a command from the Pyomo bin (or Scripts) directory. solve Optimize a model test-solvers Test Pyomo solvers ------------------------------------------------------------------------- Pyomo supports a variety of modeling and optimization capabilities, which are executed either as subcommands of 'pyomo' or as separate commands. Use the 'help' subcommand to get information about the capabilities installed with Pyomo. Additionally, each subcommand supports independent command-line options. Use the -h option to print details for a subcommand. For example, type pyomo solve -h to print information about the `solve` subcommand. branch that will be saved for the pr later * fix example 14 plant input * remove changes that have been saved in for later pr * roll back h2 pyomo dispatch - save for later in 'pyomo_h2' for another pr * pull dt and n_timesteps from plant_config * move h2 pyomo test inputs out of pyomo and into pyomo_h2 for a later pr * move input_power from being a discrete_input for openmdao to being in the input yaml and config * make names in battery and control more explicit * create pysam battery with pyomo heuristic system test * include generic converter rules * change 'excess' to 'unused' in accordance with naming discussion * remove h2 storage rules * shift to generic dispatch for pyomo with storage techs * adjust test from battery dispatch rules to generic dispatch rules * update modify_tech_config function to run model.setup() internally by default, with the option to not run model.setup() * change location for example 18 (wind battery dispatch) to match example 19 (simple dispatch) to avoid saving more resource files in git * remove TODOs that are not needed in this PR anymore. * update doc strings * generalize pyomo storage rules * remove comments specific to pyomo_opt * edit doc string * include notebook version of example 18 * remove notebook version * add control framework documentation * repair errors arising due to renaming * update changelog * rename test, rename example 18 input yaml * unify unit specifications to rates and unify names between all techs * update resource_name to commodity_name, resource_units to commodity_units, and kg to kg/h * revert switch from excess_acid to unused_acid * update docs after bringing in commodity stream PR (#294) * update links in control docs * update doc strings to clarify what is included in commodity_out for storage and control * correct naming for h2 storage input for electrolyzer rating * change from battery_electricity_out to battery_electricity_discharge and add some test cleanup * correct naming typo and add pyomo comment in docs * Update docs/control/control_overview.md Co-authored-by: John Jasa * Update docs/technology_models/pysam_battery.md Co-authored-by: John Jasa * Update docs/technology_models/pysam_battery.md Co-authored-by: John Jasa * Update examples/18_pyomo_heuristic_dispatch/18_run_pyomo_heuristic_dispatch.py Co-authored-by: John Jasa * Update examples/18_pyomo_heuristic_dispatch/18_run_pyomo_heuristic_dispatch.py Co-authored-by: John Jasa * put error in place for compute method of PyomoRuleBaseClass * remove incorrect error raising and correct comment * change from _demand_in to _demand * rename run script for example 18 * add comments * Update h2integrate/storage/battery/battery_baseclass.py Co-authored-by: John Jasa * Update h2integrate/storage/battery/battery_baseclass.py Co-authored-by: John Jasa * update pysam battery call without controller to have a pseudo control option * Update h2integrate/storage/battery/pysam_battery.py Co-authored-by: John Jasa * Update h2integrate/storage/battery/pysam_battery.py Co-authored-by: John Jasa * remove finance parameters because they are unused - we are only testing control and battery outputs here * update docs * Update h2integrate/storage/battery/battery_baseclass.py Co-authored-by: kbrunik <102193481+kbrunik@users.noreply.github.com> * Update h2integrate/control/control_rules/converters/generic_converter.py Co-authored-by: kbrunik <102193481+kbrunik@users.noreply.github.com> * move battery tests to battery directory * open loop html * Apply suggested doc updates from code review Co-authored-by: kbrunik <102193481+kbrunik@users.noreply.github.com> * updating formatting to fix tests * fixing formatting for pre-commit hooks * fixing formatting from including suggestions from code reivew * more pre-commit fixes * add error message if provided tech_name does not match the actual tech name * Consolidated pyomo controller test files * include file for testing that was left out * include file for testing that was left out * update docs to clarify system_commodity_interface_limit * update min/max storage fraction handling to use provided limits * remove unused battery themal function (it is in PySAM BatteryTools) --------- Co-authored-by: bayc Co-authored-by: John Jasa Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Co-authored-by: Chris Bay <12664940+bayc@users.noreply.github.com> Co-authored-by: John Jasa Co-authored-by: kbrunik Co-authored-by: kbrunik <102193481+kbrunik@users.noreply.github.com> Co-authored-by: Genevieve Starke --- CHANGELOG.md | 2 + docs/_toc.yml | 9 + docs/control/control_overview.md | 37 + docs/control/figures/open-loop-n2.html | 14808 ++++++++++++++++ docs/control/figures/open-loop-n2.png | Bin 0 -> 174036 bytes docs/control/figures/pyomo-n2.html | 14808 ++++++++++++++++ docs/control/figures/pyomo-n2.png | Bin 0 -> 354348 bytes docs/technology_models/pysam_battery.md | 8 + .../simple_generic_storage.md | 8 +- docs/technology_models/technology_overview.md | 14 +- examples/01_onshore_steel_mn/tech_config.yaml | 8 +- examples/02_texas_ammonia/tech_config.yaml | 6 +- .../tech_config_co2h.yaml | 8 +- examples/05_wind_h2_opt/driver_config.yaml | 2 +- .../driver_config_no_optimization.yaml | 2 +- .../offshore_plant_oae.yaml | 2 +- examples/12_ammonia_synloop/tech_config.yaml | 6 +- .../hydrogen_dispatch.ipynb | 309 +- .../inputs/h2i_wind_to_h2_storage.yaml | 1 - .../inputs/plant_config.yaml | 10 +- .../inputs/tech_config.yaml | 8 +- .../driver_config.yaml | 5 + .../plant_config.yaml | 84 + .../pyomo_heuristic_dispatch.yaml | 7 + ..._heuristic_dispatch_error_for_testing.yaml | 7 + .../run_pyomo_heuristic_dispatch.py | 78 + .../tech_config.yaml | 77 + .../tech_config_error_for_testing.yaml | 77 + .../driver_config.yaml | 0 .../plant_config.yaml | 0 .../run_wind_battery.py | 8 +- .../tech_config.yaml | 10 +- .../wind_battery_dispatch.yaml | 0 h2integrate/control/__init__.py | 0 h2integrate/control/control_rules/__init__.py | 0 .../control_rules/converters/__init__.py | 0 .../converters/generic_converter.py | 78 + .../control_rules/pyomo_rule_baseclass.py | 151 + .../control/control_rules/storage/__init__.py | 0 .../storage/pyomo_storage_rule_baseclass.py | 232 + .../control/control_strategies/__init__.py | 0 .../controller_baseclass.py | 52 + .../openloop_controllers.py | 239 +- .../control_strategies/pyomo_controllers.py | 751 + .../marine/ocean_alkalinity_enhancement.py | 14 +- .../converters/wind/wind_plant_baseclass.py | 1 + h2integrate/core/h2integrate_model.py | 82 +- h2integrate/core/supported_models.py | 23 +- h2integrate/core/test/test_recorder.py | 24 + .../iron/rosner_override/finance_model.py | 6 +- .../simulation/technologies/steel/steel.py | 8 +- .../storage/battery/atb_battery_cost.py | 10 +- .../storage/battery/battery_baseclass.py | 50 + h2integrate/storage/battery/pysam_battery.py | 590 + .../test_battery/inputs/tech_config.yaml | 28 + .../test_battery/test_pysam_battery.py | 271 + h2integrate/storage/hydrogen/eco_storage.py | 15 +- h2integrate/storage/simple_generic_storage.py | 10 +- h2integrate/tools/run_cases.py | 8 +- h2integrate/tools/test/test_tools.py | 17 + h2integrate/transporters/generic_summer.py | 2 +- tests/h2integrate/test_all_examples.py | 129 +- .../test_controllers/inputs/tech_config.yaml | 6 +- .../test_open_loop_controllers.py | 55 +- .../test_pyomo_controllers.py | 401 + 65 files changed, 33271 insertions(+), 391 deletions(-) create mode 100644 docs/control/control_overview.md create mode 100644 docs/control/figures/open-loop-n2.html create mode 100644 docs/control/figures/open-loop-n2.png create mode 100644 docs/control/figures/pyomo-n2.html create mode 100644 docs/control/figures/pyomo-n2.png create mode 100644 docs/technology_models/pysam_battery.md create mode 100644 examples/18_pyomo_heuristic_dispatch/driver_config.yaml create mode 100644 examples/18_pyomo_heuristic_dispatch/plant_config.yaml create mode 100644 examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch.yaml create mode 100644 examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch_error_for_testing.yaml create mode 100644 examples/18_pyomo_heuristic_dispatch/run_pyomo_heuristic_dispatch.py create mode 100644 examples/18_pyomo_heuristic_dispatch/tech_config.yaml create mode 100644 examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml rename examples/{19_wind_battery_dispatch => 19_simple_dispatch}/driver_config.yaml (100%) rename examples/{19_wind_battery_dispatch => 19_simple_dispatch}/plant_config.yaml (100%) rename examples/{19_wind_battery_dispatch => 19_simple_dispatch}/run_wind_battery.py (85%) rename examples/{19_wind_battery_dispatch => 19_simple_dispatch}/tech_config.yaml (89%) rename examples/{19_wind_battery_dispatch => 19_simple_dispatch}/wind_battery_dispatch.yaml (100%) create mode 100644 h2integrate/control/__init__.py create mode 100644 h2integrate/control/control_rules/__init__.py create mode 100644 h2integrate/control/control_rules/converters/__init__.py create mode 100644 h2integrate/control/control_rules/converters/generic_converter.py create mode 100644 h2integrate/control/control_rules/pyomo_rule_baseclass.py create mode 100644 h2integrate/control/control_rules/storage/__init__.py create mode 100644 h2integrate/control/control_rules/storage/pyomo_storage_rule_baseclass.py create mode 100644 h2integrate/control/control_strategies/__init__.py create mode 100644 h2integrate/control/control_strategies/controller_baseclass.py rename h2integrate/{controllers => control/control_strategies}/openloop_controllers.py (59%) create mode 100644 h2integrate/control/control_strategies/pyomo_controllers.py create mode 100644 h2integrate/storage/battery/battery_baseclass.py create mode 100644 h2integrate/storage/battery/pysam_battery.py create mode 100644 h2integrate/storage/battery/test_battery/inputs/tech_config.yaml create mode 100644 h2integrate/storage/battery/test_battery/test_pysam_battery.py create mode 100644 tests/h2integrate/test_controllers/test_pyomo_controllers.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e0ccb95..64988ca86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ - Added an optimized offshore methanol production case to examples/03_methanol/co2_hydrogenation_doc - Updated setting up recorder in `PoseOptimization` - Added resource models to make solar resource API calls to the NREL Developer GOES dataset +- Added framework to run heuristic load following dispatch for storage technologies +- Added PySAM battery model as a storage technology performance model - Added `create_om_reports` option to driver config to enable/disable OpenMDAO reports (N2 diagrams, etc.) ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index 004e70639..b22fab622 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -38,6 +38,7 @@ parts: - file: technology_models/simple_generic_storage.md - file: technology_models/methanol.md - file: technology_models/ammonia.md + - file: technology_models/pysam_battery.md - caption: Resource Models chapters: @@ -48,6 +49,14 @@ parts: - file: resource/solar_index - file: resource/goes_solar_v4_api +- caption: Control + chapters: + - file: control/control_overview.md + +- caption: Examples + chapters: + - file: examples/01-green-hydrogen + - caption: Developer Guide chapters: - file: CONTRIBUTING diff --git a/docs/control/control_overview.md b/docs/control/control_overview.md new file mode 100644 index 000000000..86a710cfa --- /dev/null +++ b/docs/control/control_overview.md @@ -0,0 +1,37 @@ +# Control Overview + +There are two different systematic approaches, or frameworks, in H2Integrate for control: [open-loop](open-loop-control) and [pyomo](pyomo-control). These two frameworks are useful in different situations and have different impacts on the system and control strategies that can be implemented. Both control frameworks are focused on dispatching storage technologies and as such can currently only be used on storage technologies. However, we plan to extend them to work more generally as system controllers, and even though the controllers must be placed on storage technologies for now, they behave somewhat like system controllers in that they may curtail/discard commodity amounts exceeding the needs of the storage technology and the specified demand. However, any unused commodity may be connected to another down-stream component to avoid actual curtailment. + +(open-loop-control)= +## Open-loop control framework +The first approach, open-loop control, assumes no feedback of any kind to the controller. The open-loop framework does not require a detailed performance model and can essentially act as the performance model in the absence of a dedicated performance model for a given storage technology. The open-loop framework establishes a control component that runs the control and passes out information about storage dispatch, state of charge (SOC), etc. + +An example of an N2 diagram for a system using the open-loop control framework for hydrogen storage and dispatch is shown below ([click here for an interactive version](./figures/open-loop-n2.html)). Note that the hydrogen out going into the finance model is coming from the control component. + +![](./figures/open-loop-n2.png) + +The open-loop framework currently supports only two control strategy, `pass_through_controller`, and `demand_open_loop_controller`. The `pass_through_controller` simply directly passes the input commodity flow to the output without any modifications. It is useful for testing, as a placeholder for more complex controllers, and for maintaining consistency between controlled and uncontrolled frameworks as this 'controller' does not alter the system output in any way. The `demand_open_loop_controller` uses simple logic to dispatch the storage technology when demand is higher than commodity generation and charges the storage technology when the commodity generation exceeds demand, both cases depending on the storage technology's state of charge. For the `demand_open_loop_controller`, the storage state of charge is an estimate in the control logic and is not informed in any way by the storage technology performance model. + +For examples of how to use the open-loop control framework, see the following: +- For the `pass_through_controller` + - `examples/01_onshore_steel_mn` + - `examples/02_texas_ammonia` + - `examples/12_ammonia_synloop` +- For the `demand_open_loop_controller` + - `examples/14_wind_hydrogen_dispatch/` + - `examples/19_simple_dispatch/` + +(pyomo-control)= +## Pyomo control framework +[Pyomo](https://www.pyomo.org/about) is an open-source optimization software package. It is used in H2Integrate to facilitate modeling and solving control problems, specifically to determine optimal dispatch strategies for dispatchable technologies. + +The second systematic control approach, pyomo control, allows for the possibility of feedback control at specified intervals, but can also be used for open-loop control if desired. In the pyomo control framework in H2Integrate, each technology can have control rules associated with them that are in turn passed to the pyomo control component, which is owned by the storage technology. The pyomo control component combines the technology rules into a single pyomo model, which is then passed to the storage technology performance model inside a callable dispatch function. The dispatch function also accepts a simulation method from the performance model and iterates between the pyomo model for dispatch commands and the performance simulation function to simulated performance with the specified commands. The dispatch function runs in specified time windows for dispatch and performance until the whole simulation time has been run. + +An example of an N2 diagram for a system using the pyomo control framework for hydrogen storage and dispatch is shown below ([click here for an interactive version](./figures/pyomo-n2.html)). Note the control rules being passed to the dispatch component and the dispatch function, containing the full pyomo model, being passed to the performance model for the battery/storage technology. Another important thing to recognize, in contrast to the open-loop control framework, is that the storage technology outputs (commodity out, SOC, unused commodity, etc) are passed out of the performance model when using the Pyomo control framework rather than from the control component. + +![](./figures/pyomo-n2.png) + +The pyomo control framework currently supports only a simple heuristic method, `heuristic_load_following_controller`, but we plan to extend the framework to be able to run a full dispatch optimization using a pyomo solver. When using the pyomo framework, a `dispatch_rule_set` for each technology connected to the storage technology must also be specified. These will typically be `pyomo_dispatch_generic_converter` for generating technologies, and `pyomo_dispatch_generic_storage` for storage technologies. More complex rule sets may be developed as needed. + +For an example of how to use the pyomo control framework with the `heuristic_load_following_controller`, see +- `examples/18_pyomo_heuristic_wind_battery_dispatch` diff --git a/docs/control/figures/open-loop-n2.html b/docs/control/figures/open-loop-n2.html new file mode 100644 index 000000000..44bca3629 --- /dev/null +++ b/docs/control/figures/open-loop-n2.html @@ -0,0 +1,14808 @@ + + + +OpenMDAO Model Hierarchy and N2 diagram + + + + + + + + + + + + + + + + + +
+
+ +
+
+ +
+ + +
+
+
+
+ + + +
+
+ + +
+
+ + + + + +
+
+ + + + +
+
+ +
+
+ +
+ +
+
+ +
+ +
+
+ Processing... +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+
+
+ + + +
+ +
+ +
+
+ +
+
+
+
+ N2 Information +
+ + +
+ +
+
+
+
+
+ + + + + + + + + + +
+ +
+ +
+ +
+ +
+

Left-click on a node in the model hierarchy to navigate to that node.
+ Right-click on a node to collapse/expand it. + Alt-right-click on a node with variables to select which ones to hide.
+ Note: Right-click in Firefox displays a browser menu. To disable that, + visit about:config and set dom.event.contextmenu.enabled + to true.
+ Hover over any cell in the matrix to display its connections + as arrows. Click that cell to make those arrows persistent. +

+

Toolbar Help

+
+ Snapshot of toolbar buttons + +
+
+ +
+ + + + + + +
Variable NameVisible
+
+ + +
+
+
+ Search + +
+
+ + + +
+
+
+ + + + + + + diff --git a/docs/control/figures/open-loop-n2.png b/docs/control/figures/open-loop-n2.png new file mode 100644 index 0000000000000000000000000000000000000000..722db805ed76f8fda15eb6a14164896e11b475ed GIT binary patch literal 174036 zcmaHT1y~%*wl(e+2=1OBgS$&`O9<{B+#Lo80YY$h3-0a?VQ_bMcX#+F=bm%kedoUa z^7Sx9cU4!_?yfCsuOe7UK@t^-00{yD0##Z{{1XHOtSbZrv>5^%_>6~=rIO|9uS!j{Bzjh5p*?+wI9`G(li3Q`sPZ0(qq&J_#?^aK$ zTxtAdwNDhp$7C?teK|F?v=Az5Dr!G|JR{7hd{Z`V?46>_^wAZ6CBnc3p9I4f)QAtG z#K5C!>O#}hR*8?QhLN@SLl?z-Xy?63T0TOX*`<9(X5T$C-799fHEovqdZsE5VZ*1Z zw)XoxtZ~$o@h37=HX9yaR;iK`UTs!H0h~Ar!T8k6J8g%V%|Q=So*0@o>JvkEd0HS< zxEbM-HZ<-q@y)bI-6^vSy=)bFA!)I?IFxc?Uh7jvO3CiT99%C6!`nzP611OEQQZbz zWa(mvC`RA0Xqgpc2A*G5QckhMeW~8toq9eH+qEjj;dhH^nBb3iCe&Y7VO=w!|0+Y9{jMmYEG8`t{#G_}Ffp-l z{9@}ga1+`IzSXSxXLToac{yGqTWf%Uv8|yAz|Gq3cM}MHH(qej+Qi9#%+1=$#*x=e zfZ~rDyx{Wh(@Yd(e^ha@6rfO-S0WR$buc001TX`bDFl(o$jJB|j7@nziA((19Q>C6 z#TO?hJ6G9uMs{c<*7B(K9e{cG4m;TvQ#nHq; z%+?y*r<36SJeofn|NF&18}c*#p8CIu;$L$9<1ARvf=K*Ke?K%qq`jSxM+gXE2x)PV z&u)-MX^6hYD(N(&$}F zKDU!5O<3Ng!ASZ3e~*JWUpB}3RD)?EwnY!vUta%hXu=$ri7tcsm}YD{I2n$MTpkV7 zkeFou|AX5ZCNHeH2edG;XSFM1a_(JsvF&t*_g`n>%jbvXbrSzWWkO0zS|@jZ%k{tY zP{0K>$>thmZ{*9d=)nAAwDCBhIlTA3Oc#8KPO`&Ugaa#pWi7dsXN2*;j;5pQ4Y$FL zjXmp^A;!E;@Bca!0Mw+QYZ%L{m34nfY$zjII_3XgGGL+E(T;5ai!RLc-`afnVyANC zymBp?{`em^w8>O)T zwi}HS^II7%4Qz|TjE7Iss&P{stL7P}oGh#7l~y=;@i{{9YY9gzEnhcV~p_R{&2Bj;6bF3A3T3R8G~AdmzioIhqr zkMVq!NtMI4%>Le9q%awowYBxc#Dv2qp0;xkA@Qa)KM7MYe0#HG1WDXsS@Q_KVl4KA z|M2ke#MBg3;pYMQUp(RL5#iyQCSY5ew(1cIzXWxG&V!e3O->NTYu=UE#puffb#Z{h zjOJffS;@lnW|up3ONtAmYvWgfWNeX!y+E^Y`s>#>EfqV^ZHd~(m60*E0;#{?)QsM+ zYpZB`ICtyAg2mCICAcOE3Zkyb=B{gG3DPpVM(|~G!0N6z#rnfy09KqKtPb9$s-YLh z>NEBNnMUF8Xm5izx%&OR&IKFJwN|;l=QaDu&n`;5P3!$SySk^1FW=h63W6|c4;c^Fo)0x z@bDs6R&*O*Umi_*!-;!Q$9ldl(f;dI^y8)Rg`CKfPuZG~Ws1Y5S4BXnX2u(#F41XL z9T9xAlGFnv@QJ{pBs0r-pNHr%33nEs{f=%z{|&HvOkeKVo>gJlz_c)HLL7~_3Do{h<#815)L~_t=Qh=q;8D}IDtO=f2Ej7H?G~1^2 zSrbv+;K#UCmh3O;7_dz#7bj%5o+*wf1ic_xgP#)?e+&2Bak(5%hSjRggP_p$z#$h= z6SK?pgbC17J`J!uGS3Ljn@0)lf3dhMxqV_Cq(7;1#vCg(=t{c8NErWX8(UG2HtqO) zA73(Y`)iWO>eCLF$!wVpa=I$bU+T6f4gyY4k^lVL<$Q~KwYK|q9MmR!D2gK@^T5XX zLG7%rXV-SQ_p#-6DBB44I$nEZhZO?Z?Wd@XB~6`TadsD{S|P6_a4k z1z$vH-z@MY2L&xcPOCjAFmNl7&?eL1_HA{(#~*slZ-D}Wl1ZE1t&#U^fFoV=_Vza8 ztg=<%BsXGL`mY)N-Obc?u%B;I1F-vSFVSjwk*R%UIzJ&+SM93x%WV0HOg}Ncd_R{@ ztrpx=M+m;u853-K6AG0u)W42uN{H2~#BQsS#e;GJ^7nn0%Ca)rodynKa zRhj=ZXQ>Q+_#mC^F+9iN86r|*#lF@>^wHD`OPC@n&rz%(swg=gdY|_5Fx$6xXvTl* z<1@*%CCAaY+4h&~k)IYXW$%~*VCT;wYww^}3;t(be^1bnmiZ8Ny5j3%_9J`=iy@{h zc1ih84hu(8+%xp%#2ed~lM@^FZF;@^yT@)QqQ!b!T!tFZU(%tnONCHXU9B;X(e~KS zotT{5#B-_qai|TwMCt70)YmI`Q;GFipN4sfh9$B?8B9>spah3V5K1|G-52J zFBgXHW%BG0_w>q&;O3m6z}Z*a7Jbk&>c#NieJC}@ z2Bh|)qx1)Er%jZ>t>nrk@X`Z~rq%I^dV70w>+5IFdqYwbms%c7)`_dR{fohRvsW#P z)ICK`ODpADw?Svo=5JxFz=XCRM@7A{H3)&R`7w5*sj2x*0vh>Ux@HZ`S#wZQ?YWzF zJd++E@ngsXNk~uXCT&dRa zm=)-Rk58y9)Rft~r`haMYKdc+7FP&g$I4*3jU=P!i~Ru6*BlT~peB{T=p$8Jh+OAk zqTVT=vZ&=nbEvSKEF|nty-3O1#|J8)8H;4 zhU5B2iA6@7Ip6jHWH@%c2p2w4`Lzcu+B9guuD({ekL(x-gqPO~v0VC!3#~1w3hMz> z&mz6qI0?#M*9~qXZhFcg-tV#vU|efad$DV^PW8W}{q@z45AzGMq(pSxq>B4VpZX^n zw)y>rqok)vb@%6SFOlghmMlgJUq1Y2M7K1Sa>E;!J+g~A+!Lo8^DXZV-crbp)vyL-Q*o>*XR2E|MZ zvSc1}7lU#Tues9ux2d^ud5gw+-IlSL*|hPY7L*8T!?`%%a#Y}P7{5DtQYGX@()kuLUgYvdfO|tK*MXJoE`osg1Xh$ z%nIkxEYKEvj>u!1w1RzWI|C6}bBqATCB+4KFXQd<)Xo{xJ}5<@Z4`mHBDL!GyZ1$E zfl>1m?YUqxEsjE2&A9#T6sVq5b#0U?lGfSFn0Tq%L>9CvjOEJX-G{sNw098=3Ge8y z2LKSUm9#jC%*etup&<7qAn&v!lzAAKYznIe5PakG<5adTiR9Hvwga{;l4oSAqhig`D?mZ74k}8Uh`cuA@b2K%cC1azrgfUJFWVcoiH@7*OjVCxGUt`DN zZ+=v!N1MllS{+&(k(Kxm`g5SLjA7WG+qPSQ#?5d(B7CjX@8}+5dX2DlUGTQF^H7Nk z8(p=DJ*cXAsRR4a#b4MD3Xx6x+2g|de>ndv^TRfEYK8@`xAGb_N_srojw$+M@Jp?` zZd!v`!Yu1!X!w)jx~RH(lFjE*r~Ikv>my!y)%hS2oDGu>P-DFfVtW&ZZXT{UE-ph5 z^?HDbzWn8lHHP)z4b68wRp5kRipO@Gi_m$LN)|_yO6OkiOOfg!w#GPa3L_=+O{}Lu7WZZq;j-sdG7AU+xQ>Kok>2(D+!< z77X~4u$1-0#|drUmdOmu*5hF;qJ(8o-QRmR_`wq~U)iW;G%t^Te<+LKlc-mYGefZo zbaHuOx+P6~)3bdzJ3zo;VQ7bD6wjzXX4;J3TMI;y1tFM)An#(3!f63f;>Y%JT1W9WP3~ z#7fV@a+kq2zksx)AdQwqG_=0Hz4KWCmPrIQ7oip=y5bGRxhAuAOb+FvTM}#S4jm=plgyR`fDPE88I8Qbl8t%<#~$z%Pk{h)!u1`%p0dmt>qwe z6nJ)CY-0)rf0$OFgKSCs%c=Rp`@%^SZk-#!!DGwLpoF}Q6WA%JNM`c1yB#l*UBL

e+tCpGitxlH<1N#{7tlFyz+V(PdmTG{BDGGfIh029viMDB8X|ZOa9XI7R0dFD$ID9R{mqEKNmmuCJ6l zts^aW3+-VeC>j9@K!^ShKhakR3YC(QQW+FPQrGjS^zn)Kakc660q@V8uDuG(`kg8=nz)*>`|u&e6x`l9I@qJp9X~03C2`!E z!Wp%hVWu-f6bqni@P?EU$FjsOPF&ly0Bv`MjSmOKgTdUrLvFwFkiUi1C4C_95?f#=ELW<4Y|@2NnhhXkiC3^YU7fk8^BM zHd|Y~5`Ooy+W!sdLbKMFPdJfm`;IY|wzdi5;~$Gf@S#~yHewbs8UliY5qGEN<`Oxc ztq6ULTgjo?o9*Q*a*T#27$Wj{vLGt4%r?@6v^~G_8 z%@Z#is7;FhjcFAiK{@)2V)mDx^jD}rCI*A!r2-(7Z1P2wo?daDLH)zvkN2rQP|O#C zbDmO|I0;af8FV12f2wIJ2q;>!C2FzXVQ2v)6lDLPUD4WU6XmcSGXaJH8i^o{CE!rGPys%1UiIaMts}8sI|*-1gTz z8fiI&0m$o4zDPM~)|jOCLzGlX-7xxN*0VPi6gV*_c2ZsI72;RQ^6S%P89bCcVP4a2 za9AXN2cQ2c6nI0ig*Mk_nCyU`qc6+=))#a0sIn1-V6*CpH(>+fyo_#Zal^aRyIy%t z#L~~bJye6xTjL+3Atc5noICN9vH>W~cO+v$L{UmoV>EQ<9bA~f4ONKd{0LzL_3{7= z1O!1&{5=tmR^#O99vCMMbHQb(iQhhXCxp$VWT;ytfKWCEF-ryYu z`q9uNz{ztOw}QM_)bp$x$+>3b5c?oBgR>H&1cUaVS}RfBCqVGl_z|qLV!vgyrIqv* z31^<+TGy^Dl09e$8N~+Z2UJytl}FOlcrJ1e+otq3j27GK4V5T?fCKZRrvUYJ*TEY; z1c7&?jVWeGr_`9l%3>i3tR|r{ zHuv7inCOvhs*HS-`oNGjKy}_Gs(GN_r?7xZ{g7`4##2qP<|eLFaK3>S*MEMfy{xQDrB_7;CFZs<-$yXR4u-T)=5`4tc#&5aBU{J2C z9k?Sze#*mnoc$tUwJT?hV#Eu#U;3ut%;6{U7A}WVC$cjvKpu|w{EF1Q0<}T^-MI`O z91sDYqiAvC8w)<`T|>ZpmBXa}CO96jxibl9Nn-%3XjekooYol)Kj?$_Fn>MOckP;G zYCsJGoVGC9gE&1^T@z@Xy!Ng(En!0OSAE%8s|B(L`pMPUkeCvr&vL5@sxLn9{T9C^ zl%f0y3Jk}_Bm<3a_oL23|$^?^nJ zxQHY)eh<`RWyt8-4Tg=?1)9&F^hf>)3TE;mj_ukw$0I9$fTCiKfI0i=uEjt@=;X3d zr7rG*iYBXPs9n`WK?ipA=>5<*4$7=;6UwC27k+*;>)G!41!ZoFUOOUH<()Qv&Y^^B!Bd!Hor!3m>6b-b1gsFRr ze7tPRNAE5i`wgSXfJ=#4MBD@~7S_2Y*i<$LFxV`XY_=X?~!m&uyRe{x*BCuc=a0+t|5f*grrEg1)?pW%ltsAvpFO z08QZwox8_X7t#Zr$gS&qFLm#W;Z^lNAC|NX%-gnV4wXc@v>$_LxK_b>1qKXCkXTO_ zr`oR+NB9B0$^23qE{UvbF>x5RngA~fP$2LiZa>6Y?zxW)FiBH!ij#>_F@w4DF%sm_{27>Zl(r<{?6XSi zzwo&tqv1xduWRNYyH_xBnoWdrFMpMmEv~A!7hVvv@Vy0(1$|;24DYk<(aN9&jv8Tpf!{h{D$KE5H?&a z-|l17i@f%^bI@7aU@&T0t)S&P2`k31Wo6!5dwlR>;N&#LI|&UZfr1&+ zpQGh8X)gVR)HtNNv{e4nf)F^qf0t4ms&T9omJg1dj^j8taXWd;M*C zkr?4O^DGX_BLRPSwZw41tEk$AdNumuiZ?9zBO5=E4i_uG0+fnOW+l%%d13*D12~&@5jdYKy{dcJTNQH)TuzPoDB%3V z0;Xwl1tv;(S`11=@PQj@&!>~AJzU%+=w~8o*H*Kb|5wXOfdJ*LgN+#Dm+vxA* zG#4_Sk<4{krIQz$sXb1rsV04-Fe8?kk~+It9ae9tfb+5@GTU%I7pu`cReBV=+BB7y z8Q$7SgSswv1t?4B&i#s1)WH4_s+N5(Nmf4IJ-l!>=vK^Shr$D&U`MZ~`dcX@OZ80w zio)dx>1I&KshF$J`0`ve)#*X z81%w%=US)MJ9!UlaT<>0ep-^~wFA`T{8PSJ*S0m(a9wTg`DV$$(^k||VX3Ey1Sz{7 z56RUIbeqVzfYG=py(eLZ;3#v|@6ZN&BPqGN9H%j$_@of}b*~y0CZk})`{_=x=$fHG ze+ICA#qu*qd++l4^6U^#;5KX7eCg3@Us>5-m=YJoTD?xgSiOLwMUtfZzw_B(FINAy zKyT6A>_jTF2vP3H=M%}}W;J!~u08(abz0RiBQ6iz^43j|$?NOAa(`Ha)WaH}_g%`u zbs~Wa?RK!MkQSQvxdpz@mZ1B^vsz!)>)khwhz2;1ppzz*Pl^I`iY=F{()=&7lCyR7 z{5lV9FA>p%#L)siw>Ug!wxljj*FL9%RnOjPeVvDbJ9zT-tt(kv$EQ8lvY4qdNt5OQG983Rp;wXl=Rz(Epa<+jUF)%7f4*|`!uj{3mlUD+ zG@o-r`BBQM(*^W`wp-p=s*JlZ{ukO^K8f|0Q!nYdeW2mt^GKujY>Q-F>%A!c<8Ye8 zRm!VcUHhR%c-vO^Do)w*OQu{Quzn1`uRq*RgurDP;@oW+%k63Jqjce$shx=G6Y@9z z!RBCqfE-y$qrB>Ft{?OldZ}yKN+XTx4~_*!V_NUhr#k-X9~{8IyYD&197`%MUU}3& z6kp6eZ5O1SUw<+0pK&&m*}Ys{8!FSe0inyjTECK;b0B1RE<&2&9E~ZqQ+o>DOK98# z7N;iFOyc4khYGqSu(Q|q;lFCm-2m^EM~3D~2%HF={Bo;pfJ;foKQub|gr1NzUh*Qi z)!-?t9cI)>RiQ0Dk-YdfFg$k)#bBR4Y0;tv+1?#Fp{$1~#>l@uQI<53dzQP`8=-)X zmin1V^-UT!b-q|}$&fcZvQy<6NWxyb}V()iW33N15aApm_uuKD(3nZ3FKtraL7 z(3ENZJLy(|>~bMUJ1UXO?ZUZgZ>4M~){iz7ulSvj?T7H*PCkphzHni-KW%%M4%lBq;5RrS zSaVCFPVy0L+9GKN6ACAACVN zq}wdKW3+rE4*^?O*f(Lg+BC$2s?t)Z&GcM0QRnNBJT;g0(%~or%I)653PPtz(SxSO zkL5s`Y=23W9V-oQP@|w>76M`{W@0qk>m^sX-r~64%6fx{Z~L;AZqHbm^EW~4rLz%ueE+sJ~lF8A}IxGGz>&n~Fw(h6qqY>~pPSbJyzCYRAR!2zNi zySBI{i#fn=%{9jffioL|rB_t{LBkTpev>(>6VZjo>m}UwR9WBOk=0stdmgkMsMs>g zvUhX5OzsLi)}u<3>pP1Qi~eY&^4ck2F*iIQ?{mBBa9XMtFUD6lF#Kv4w{)9U?(wT@ zl8QM-cy&0#^=UMaE0vyp81Spf2~5k&*ZQuHntR z@*7ww{Wn+$MIWoR!qQTjo44mJX9wKr6J!-Vn`_Lq3VO!Ms-rU6&#&+^RL<)(hX9x2 z{~K~q@`w46w>YhTLKm5<6Y=y(v-_j_h~+9kWclR*zFx}0%2?BJ_6LWybgGs|3 zb$N^=(4`sWhB)$8+q0S-UTeF5b&0;-XTSO)6!$p`h%T?!ON@C&G4@b$bEx2ftSseMa*Sc&wJWp zDNOKKW8&tDehX3OE$Ydev(`fs+c=3dSR#Sjs;={RRrAlc@cBMBTH7%w-T4o@&Z78~ zdz5NrQSZ}+Nq8O_s6O?yk8$3nG0{|t}Nhbr|$m0b1v zeIcd%r>ct$a5$tqQi?Onoj2^+6I7GkUKLjzJUXM7rF$>Ur{VWj10Qa#O1BcVs$Ep} z-4*g&mF+E;jowj7m&wXo@pO!*x?pMa+bH%EFqHnX>~N2~oyFHq|9U$5+GpQgvHn#y z*K^v#xzR4?h{M~{X(xxk*XCJ>)On=)gP5urZ8++U?C!<1N%^`6<~zwulYTm$$99q! zu*=0K(GT|Z!|}ASQau+%%!I&xo%_OVM6;s$W5O&?wHMgC3rB|C)Ft<}Gi!WD)nJjG zdb6)Z#pm>k1`wsg z$isj?YgP!TGlFTtSk#`t?x=+iZs#tRPrHx{laIbMn7Zzt$Q>*nlf z@lKqyF^#EZ+Y*x}?Aj+&Fpwzkz~CfIwM%zmXBpgR!;JS*tfcd*Da182gv7V;kGJ!e zo0|cGRQbn)G(m)-Lluft;B47@T%Vwkj{5yh4m^GGwwgNYdfz888>^Btmv1RVp)!49 zD;oo_(5`lzfkzHaL%yi2byt$tkW=3t;71QqL~XLb01kD-BDY@{scM1pnu_%`5?q7K z6d2#D!4$H#tE}$wCoc!Xf7eLQ3?Nk-1M&s^((12KtHpr3XX28#^!y#apdlAe*Q^%w za}TD$@ZrrC?eQJ)RX5VM5y;5KdRoydu1xLD8ss+2cn1d5XA~E9Q?Nm^czhmVAD-(( zs*t#`s9GKbpU?oRss)38MI}28E3s|+F|UenQ`=o9l0KBTPq){YKkB3%E$`20WiXm)8M8i1TcG8(u(Tpm{D zU8p=?<>7Xp_b$4T&hd4|ERl5`xKF8}pR1!P?av00>_sEwaYwS!7mUFxw7WB6$k5EB z!RQd@$<7z$YpInTi38BMW$P)vI)nRphJNoN#-(p=s}G4PVm3gg;;Uc^3D&CD4E?Wd zTETYn^3Saogc%t%p8aG17$%<7+vxL0EyJt11OJRWr1u%G9^3h;@+9&E%XOS^4WPZs z{`J%-$B9^Ls1J;Yy~tN@sNPJ2yy_Rad!OWUKy{U|4D9geT!P#;X zcrajRM+eTU90nCVxM(%GWUEy1xcx-e#rt}00CwoX`Jqkau&S(LWuS9Kg_6#7e&Ty7 zzkBKmFbEaDLqp)Qi_2&9AJl0@C_9e+KcGNo`Ai|g$QwJU^h%4|Z_ZIvzq9k3Fbbzf zk<|$|QgUkArvC~X5`CcDEWiFu4D^LrLa^H@Bg7{GlVJMBs0U^Qz5?U zfiYJcY)FD1xGMH6m4A{B)&?_g1pAk-ASLC&cAqUmAyvEQVcHEB?mHz7_A zkPjlhBf>T>fX5p$TE^(`s*ot18g9}j5X{Q^`Us2XJWc}TabygA)c{*9Md)?Eu$9cN zBNZYKXYaP}hvFnMvLl2Cvhu>nU{vTML+A7l4j#>eXGLJNP_OSN7wnrGFd^6ANwT|F zey^H$WR)8EP19_;#5UP&+O@qzDdTC1eu|OlMAuw&UKo77K2qM6McM{#XW;aCZYQDV(r%h zifQMR%KaWD7bbNQu8pM$C>q51oU0{Izk)8#qs7o#j6+GZR&AUTkL_96Zd;7$z{IFu zW*6LSwX`JX*~qNAC3N_tpT2-Qybm5N4<+R(XJ2m_S4LE=ga7h91f-*+|Hs=+9jTCS z0#0632G?xH8wfA6<~ZK~egi*{ODE3XG)*+v^D>N1WE3V=ZCI0>J|s@K1o}dT$fH#w zomch?qnqZs_v>fIP1l8Sp5hE0sWItDVO=m6KAfH9v%^eFk)Q>ob*9Oy(ZtvTJ|tT? zNZ}fXdYOCO39gn5p}f~>l5gr5;N(UP5KS*p0s;?2ORGh7dWS>9n!!1p?%?3y~74C&0b@nz0-mW8k(fK$dAG1KyCw>mkA z#*T@ZcoU(e13AT5VTA8fl*^Ot4zn!gDoCUHb>}09F|g;N%EBL=@fcRnO%& zBCIRn^rrUlmQ;NS-{3$xvkT@7X}m7`nKeE=w%R%VLoO`<8_E z7^`S4zK;lb6WL)%IaU;crQP5VAnv>l|9^om6v7$JD#|44UBBtp`s4`4wfD7!_O}ci zhNV^^{Ud%N_+vfOcv6|^h~H`iN^BwqExh+2y8)^%Cg9C3*l7JpvL2=g`ZH|*LF7rL z1J5d*uBv)0WmHi*(y_oyB=jehk_J?1nDWHj+&kjqV@$*#>O6@OD^6O zu+LxJkH^D>FJ#U-OQ3Pt>SQ_MnY-Kpm{EIabcs4jOF*Qfj&AiJAhPzdZ)MFJ_+ zQWG2=!R}aue%-cHq7irrM4e-0j2p=&@R-%nq~&U57hk#UyE5@$Ma;+R>OCz-0EAe_ z_OZcLV%TbOgDAHm+)go#t4wK-AlDmWi&CYU>$bh_hF&Cx4cFAQ zOEyRt@5!d2p`nUPkA3>A+j@ax)pY+}(`8U}tMh{_git5*$xqWwtk2N4mdtxYQylHj zj>D-MzQb07`#es2ku8tQr|}_7ZR%xh4+jnuBP=mEDFB2G5&0E&jLjko4>@H-owy&T zAVS+%Et|#n1JnuH8_8}$L{EJTrmAsrd>YtA$-hZhbQ+vMXO$w071Vp5b}Zu$s<2SK$7Iv&re|6a&sQJ7mGLw5bgcXX2=;>fNt5mYyZ7PcBnQ}5 zSO#fMn>gH#vtdL0BpH2MRCCPK=N+-3TX~Gjmx)jkAE2&fGc{7Q&B%nT=j3T(qQ?|J znH`YelP0VO*HF>WQl|}0Gg0ld01#lN-Vvy(p|Efq-4qZ8Dx}pemISUOo^b7-H^MEU zprWBQ>6W10{fHdsu>5bOycd z?G;RC5=|tH;cfl&u}8+MAP)@-)0kY%vtj*ozzK(*xzyza4g@Q|u=Cpf&R>D|n=D~) z_kuS|Y3Hs5j{HH-+AndO>eT#gD!|(s)E7zV;`LNTj%CNwt+PHot57el8JfjSo+s}s z4pwHM(#MisHNsZWMT&s!#GgEXtoVn0%jc_OJlyPMwIbW{x|bqNjn2&AU_!8Q7_f75 zYZzl`eEOT6h1`i`#7p3+gH)G{##Q9EuTd#||6*5>9NhzEWe#ICFz~*YA7&guJ^oJc z1+92}udtK67gcQ7EFGW9j{=H^m_2OYAH@rem`#ddR%9ZtOd)tb6Dd$3Fou%3P~z+3 z?Quqyao7XrpYG?soY3FD{TeY6A3vuy{sLKQBW9Al6wu3WmeG@^lldu&tz9phn@`eK zbn|+iWvvLN6%GbWDWIBL=!C*}O!tM1-VY}9%Xn*|fWciy+DK*6#~=x_kuA$v!SDa( z*#1kw?}+*ix(x>`yl;R5qBUzlJD3DL(*MjS(=4L$Yoa-Oy2~lCvbHllJ|Q8=GN>=J zgl4m)JX>7p4yT7mK^X zI@NyIW-A7nIMSoGsC;IZlL>p{YjB%9y{X{Y-9W%mQb@N2sRgBHWlIYDF6rl zE2Yo>WtqTf0h{aCfEdgYyH+ZaI3H~`0F!NgNFW_O2~9p6LJL`X{Af9GOx*Ds5l^v> zf&Am9iANJlRWP=xg}N23LFPAr@x6|H@B_VC-@^#Nd=hNN6v82_HcRE@*#zYu?0!c+ zfAQ)5l6EEl=X3XA&NTl#f;oLUDy;wH#E6T#nzE?wJeY<1ptZfbIUGIY2%6HS<0&Wi z)9;Se#u@B8bQwnLsu|IG}!QPrqp3tMJ>(B zDdfe2|4Y@ms1P>TI|U9fR^y4S8BO|If>{rOQ_z=rVvXD%LCk@kJ@82dZPW&blH^8L zaUp|5mnkk)7iuH#jF@{)GqgI~g_c?u_^;F~Tfu-w72Q;%g-O6m&&{IA1Fq1sia4o_ z>d$rxdV3%xif6qbTrZfoHF_GIaW|$n?a@k6+?A3F-o{fLg*~AY_B`!XeZeLnl8i%7 zFQ;D_(8PRVdO5PB$=3_$-#1AQT0B<+%~W&Cb( zZD?f}U&IEyKuW+=8OH{D8Q$bPV;xIf&LA2Sosf|SWOiva?!7w|ZuYQ!zXkJMtq(?1 z3^T=D(2}99Ex>O29;Bt`t6m@oMJguaW?K@ZNGP7%C!>>mj~4=fp%>cL2FF#+w)PLW zPlZ9goyX>~3&w|jokfEuJ8{Gcw0?y7*+$at>~A7ZQDC>Zg1?yCZ@vHPe*sMA#vxMp zeUQ!EV?4g>!gv4Bo1={(E#u0-Z@oo4t5y+H7<)ua618&9B3&o~UhW4`5I{E1slJA? zY@M*y((ra2lrOskR*K0iF_#C$2uxO7Hnh` z?U9!b=VL1?fb8sSRex&J&98;SxiBMQvtwhC-H<2x9@ERv>55Fj->7pyaxf@IkvD#R zko(8SX?_ONMJf~H}zM}bB5`C!1fP)(Q02b z`RPXO3szl_D{xVtT7&$#?ui`mn}A5yJD{k;Y@&R6ja2e9vnf*nwr!K&$P4KGQ7w4Ws61{ znsXSb&Xq#szyaB6-?yjbtO~2iq(3%-=7)FK#teTQ-S15GvN91>h&U`^Pt$Pw;v`4H z=dd;PL2j6;LJC2@!a9wD16SG-a(_@8J33CnVi)4a=3!R}9bD=N%1X%DDsnU8T!5b^CG0k3fL?Muo z1)cUPc0=bI_jWk85s${_n?V)G!5=wpPG*e$BMqx0lW7y$+~+3APs1c=8}@+BZ+~9( z>D}e^^Ad+nRbKOO(n34aB-QhL6J7Xy*N~f3hm5{9E*;SzN8d^oMLX&Yy<0TQK}3g? zhbZfTKLMKuzJh??IO~gP(9|t>}nIhN;(tQJ_|UGtrxmw*bfB^g-zTaHf^imrsV}LyYyCsq-@`) zi|0V7Ibs__TlW>wX5nFF4q5=$TNfZKy@2c@c0S9 z!wLg9uaQ;I{6LK>vjFswmaThpCSoAxnNmC!G}@E6RPwqoZE2QSFoqTDpW*;NF|kZW z^}|pxG9I`BsioUgtec@yGKVLqfRw32Uh|5Yi|G2*MDJlJG~cPn5W9#q=OP@QVKPYNe^<%eZuchz zfm3*6_bnNZCug=eSdxpr$azXfAVVF_R($1&C2feOYMZO7E)nMnn-%7Icxcm6tIiSH z)uYC~RJ(JeEbEK!@As9hu3A!b9?mC)B`MCcC|k^V7M94R)6L4HFd?q{=433-rApt@Bu=k;({Iao3(R{s0hOeVr3?m?Nu{MSC#+bJC4j^1HmNfv z$#*LSEag{n|ABS+;?;>N8C@A$47fn)kERc>p+0=vO($sZzPm0jHTsxIR79>Jp$f@@^@yVF4I^R32yabzHdhmMIuk8Tu^*) zIxQBukq}FS9E6Gcs->l=uC73MAoBSSc|PfF3;}!+uwasr!ZxKeId{$Z*lC`{{J=#@ z=BHt2306pAN->rjDjagpGbkGYx@L) z*!Z}~nzfcxVEgP9pl`n^(XR6-NSeHP#uEch6_v2?$^iYlWIa;tUd5mu(mt+`(q5x? zFk#zrYJm|v7=Pwf{ppt}P7*^T7!mL;F^B)IjmKyOyf&EAuLZ4_Ca9_yT9@{-^j4eI z_2J!_aJT&gvWFN}QZuSWhP@(iqt&|ltOj%1VvB)r1aJGA3gOm=c-D0+GP>hZ6#$j3 zp*gj8()~7VIZd`wuItf#a~>ov4szq8xUv?cS2#!Irt|Z}T+$hK?bX_7u33a4iRhjb<-g8JF?R@{+o-$2}8UHt-w_VS_m-2{HCByT(xTJ;wi3H#j-KJ+AvN85 z)Cq6GS&u46!O%9dw2V`s1*MUMf1(puTU+B$h3<=#T}MY1LwgkVioNQ-3cvz!7IX9S zX>7A^g5Ahoz#SR0>|mui5;a<#BsFJv9yXj_*0n9FVsjbxXp+X*fuD0eHgZ#J9B^j- z03%dRVWo?Ht8xGD0GItsJ>sG;wpi=pfOR20!>R?gNQ0gdgXc%P%i2mEii?Yj$5g=0 zvj87xzuj^dndlad-D{95X=N=6$mteD{-S5AKb`*=*}}r|Y$2ud?mMVzBYoz&52h8k z?{?;yYlWN2RF?IuFP{5umq7bk_2o#GbJ`R)zQgb+g<4zvmumHpcDH$kdTq{y(tN)) zoO)E$sJ`J^!dU&H;l-Pm4@MXcTT^hSUvICx``s-!s&fv;3Vd7#1Eib>Uv!-jM(sl+ zuF&E!R+)h|S`*#v^f-9MaWfRv+TSu;7o~Y4z52%kN_ga;FA++AU7(4ejD14?PcCE? z1V8Hn%8sp~hmz9{kQ6s(LQKv9GnI9m1^h$z%GcB^M2*1R4==h{-#}c?2@|wY4)YUCa=}ktl=1@srG@+b{d2Y#?S2Ue?RWu<~J3XMH;%A zY1p_MY&GM$guVXaMM}m=c9@4M^Yky1ZBCYdmqS;}y!lMprywNBm33q*UN&<5$5{*q zjd}f@V*cv3))@N+3w;%orVVeS46j%De(;5m_IJ+wr=t%_H=Cp4+^r94|HtIh3dJSjQior{&!Z41`b>ve$!xJU5c5>IUsXe2v3Br3GteU)4y3HT=W1 zQ_1{YZ5#`l(O;d(;gA~GOgbt56Dn=9j5N=OjgR*dnB3> z=sv`Fof^(wsQZ#jJl^TkW|nxU+%LCA6Ugs$q0xu`=y%W;&-NJ8QJ^tb(l5#($)syY z;MJq;J^Ih3{{<>*L<~05J{_zdd{14;Ws6CU_N==~xAXeZcE4WX&r)24V7NjkpS`}? z^6)y1ya%|QA}c5UA`U9p4Bs6ue;M~^@|D=I9I<9a41F@+-9Dl5*0H*e(U){_I%It* z;d^1!;&WWzsd;#CyEiTKboJzzpgttm{Fhwxhfj$9>CXn5{69sdf@8GGJcgXvt=fic z)g?YU-Lv`q*$*ADISv6npMf z982Rb!)vhu)e@a4(75e}VTV$}rvrZU;2uz=Z5w&UeTgWvS#mD@=G!+tZ;A0YV(lYtym!d(j~eylk!3V=gCW6b@6YCc!2_Q3HK&u9BO5J|R{OqCdBE z8Bro&>}AkS!IMc%ArihMG(*~E53{UJf7(^_bXOPLtDYra;)hQ^WI!q%8`~5r2zXyYx75-JF3$#4%U_L|NE&87&@dUNX1p~wwE z>2B_xhBJ7?2Of{SH3NMg`Pm)PDg7j6Q6GAj`vNU(9K)lZHN$W2k1YW)-7;i}$=70T zgqu(^DXkU1EQUFP)8UepzzB5Y`&eRiJKaRkWnOU|iPoZm=d@{d9sW97VUfMqtv4@w zYrr*B+oRG*BvvM}@Z{{P@vY}#MAJ_En!`_;rIIQe{e1Dc-i^MJC)%xrN|A_ZwEj5X z+`!fGVZhhHd)^&2*kkFtf&;nIzk@NiLYDT2TIihy9YOXb+qx`1N31qf7|xz_U`wB; z4o)OCst`R5D-7l`-S;s^W9wsk&s7;OvmeC-8c3qdVHd<)e%fhSWo2Pcn&M(iSlSb$ zdDa0&D!D8Rw&;ud*f&+{KRRqY2|AqfP8UFVDRKf=7Jbip$0n8zaGHY-9}~g_Ju-^# zuGNkAJDNbfL3;b~_$Hr3t`fA<a|~Li)s|AKz1_Fyi7%#i780 z_}B)2x~sqjPKzDYc^H!Zj_>DfQJ=OypI0U6TUg~V58D5c!2^^Oq@!4N;`{sX&X=Wp zx*Sh;OsPp#AHRG_pfTA+T{>}|y>2*qZ32!IJawFXOyBxlU%TLU+>_Uz>-!kP<7E97 zCm5KNRDF?a-=7${tukKhEp;^+K_sl`@X5nU^l7!X{9Dy_3+_GsU;P?~KZEzMu@z zwQC`G+%-*IgL7S=meG3<(7bpY=4Or0@LG1H_;K5Ox}l?UnkR@6jnbipT=U!7g;$3g z7?mWL@t@EcC#R%Lwj51_P=&VQLf$eE?U<>MRcBmh^8BpQweE;w?5nP;o1c(vsxq^- zt{HIehRElo?WH6q7rUQ#4XpDMpx%vv))!e;z%DwR8O3jj_b{p7*Wa0Am}y)2Ki;CX z6*mLlapv+fO>xw}EgmVG{YHEk9n!nT!H&5%{|7YK`=@0&DJ%EN!&jhG*u?mHqMQPUBg?xQ+g))1x z`YoI&Ed9x9i%W;9{pB8&=^I zd5FVKlE985mCL7&wBbOqB=cO7U zA>q{J*ZUg~<{LzimDL+aJ!0k9GULHCT|aGJn|l7BjUmUys|_S?n+{w2;wcX?wMW2# zt<_vS;`4A`<8$jGD=PFK?7nLFN$<$E`PL==2QFRH#k`wYkY@-$@BuQ7Lrgn`Rjl34 z`qzSf4PMUpHY^Rz+PEiNz)XgQGFn}vKfzATM?j!1DI|}}Jx_(-hI{07Tz6-U+~MlyMZG*^{DSefHuuZ3=}@NGL3 zSA6wHlP&l`|N6D&-6|8$qj`|;C1Gz=aYL?-$8YYo`GTMLb?1J06AxVhktqn*%>iiI z-VBXchEuBNZaV zxNtj^W=Cd~yb|xizPF16c_7$QzYmfhY%kY{y!!_vRE&cEnDpnc=_ozsg57ee57#u6 zdF@)5*i2^|{-e(`d8J_nThO0+ucz$|O^?z){o?F+jFQIeQEH^oZMEn(-&QDKroZ2$ z@nu&K>va}k!_65BSZZ+8RzI&t&$o&%$mf=!H;+L_~1*z8rVIHSl?rUQ(&WM*GbK@@~v_55GZ}1u!PT1%Wr9QUAgjreOx^b?+d@p@y zp@o<$>YIVcM?VaKpx*tej3N$J*?&gD{)U73edv9?8f5B)O2G9ItzuZ<6`rf2;HcLhddhv{M0u%+vp%)zDece*dFlh%qjAOsKz z{Tg|}Jwmv>0oTU^85dYmErNmmjT}IPPJ!ARi!vCe zW`$Ch3W!*~fnJ-LpY-a7Z1)%ruHor#}9x%aK6eb!~hmpx0p z@{GR!M!k^QOCE|8)VdDn{%OF&;GzZHZ||iSz6x8W=P&aqTc2=c^6E*pTOx!rQHM5M z(Db5x#8U9r_S>+1`p$+ZGWJl3fs)$2(?M#^U*-i_ry7UCnvV~Jx)^*FpE*Wbwm(N? zlj|w78H}9-3~EI2ArA^Xh%-~{z4|RQ@+poF?90yQD`;Lgwhiu0aZ5sMrHGT0<6F{Y zyicWTRa9ZzYu_$1xCCUbs}+_>6Fb7H4M%x@M?xuj34EKjbZT9-eCNg5n6@6umv2x7 zo3(9}h+BBb8XHV=))?WatZtIkoUFFw7BMO*i%TgB7fO`O8*lzkbn;V)VVJ;VvYGIjnLRN1#no%pZ%|3bNY@^B2;4^@qaJGtk&2l5 zAKdw={!6>yd7ZP1WN3ABE-%?)&3%_=~5{DWwVPmFx;y>vAivuom;!M@3pjt#pZ7( zRdLTitUto0BC}4He0KWtvby;v8N;YzQMK65aVg8G%Mpyo_cuuC0^Mn1LMy7zNh#ou zW6O1}SK({_8yD~aU8SiVN$|P@m-@KJmK_n#wWvZRkrMcyK%jU#k`zkEGnY*j7c;qv z+&~)_AET2+enuL1+b?H-`R5zfTe7m3epqQa_!ET-Sbcjx%_GLJEC9~7DIQfLd7{3F z936}AI?*y%bb`wY+03z|q-1RDkAOB2%eC9ix79J3+=hnP(ST+kMDG}bcpZp#ajxM0 zgQ_Lj(Fo5cMrWqE%;V?V>zYYqRK0(*cWH96;koxf%5eR*ehv3kJl zC7^CBR+QLlLHPy*W|W}BV!nJYTvI8mD?ab~x@u>B6nhp6{Q{8I6B?^-8@0m_Ykw%3 zGYw$5ss^jW8svhdyRXgFas0ceW6MVFw2}M5*}#2L&L~W7gR3bcxm)j6H~f3tbtgK z8k;FScqsl1NOA%kC_X@fL4ToQpdP`lA0`g)*OkkxtYH9m0s_Kc3<@=gos+Q+YF?$o zLyVg9ph1SSh67F8b0XNtXgp+km(+sEk~kJsSEJl5fiWHZDw1mA1>co=G@!#MmOW|&kskt1A}3Jr8frxo#`eK zO}k#1S5DGp52DfiE`?Ra7*%6E#}r zxfso~>A{Y#W+r0OagVC@4V=NTT8H8RMmYsygeGvG;pem4!~-D-$bFd{c=h`P|7f!A zu0i2zQGoRM0WeN!1J??zl}4aG%aJAsVeah+i15His2qbA67#!^PrvQF(QyVi1|X5& z*DqJGZi>KCvu_8b__XX`qLs+Dqwz4*e?{J{mMBQqr0n%Z5rEU+{8?G9gSM=a?8A|s zdD~32mkTcQ*06B4_8PTTNzFTQwzLAj{vGU|?*Z$W5vY8jX$1SMTlyyh(yUTo4dt+Ow%Bk1i`=6<_FOLQ6BOi z@)8y-Q3E!%H9q4_wqfw`&9?AO^1R!O`sarI6}~X;IX6a=Q5F->P~*a`)}nU&M65y< z@kTPvbZy(Bfa|aJDu@cyRZx7Nj}NP@EO)9=2^{L-L;}~_x3}8YX0!4!>%TAd`D;ZA z`1(vO@O${UPp}uV23~GLE`q0Yv!}(_lKyxx>9>n;V`F#;lcuS3v;Eapo-2&pXG!XP zyF&_b23)j8{t`L1!*OG+PT>8|vugYoH8h8PfBUwM1F_B~p+ji1pOOY75Iy&Ccp zmjdOj|1hqCP!Gom>At(pZKUC5ijCJO&nZ3CwN28UUt&BcVI{U`tn3GT|Wbpzolwe{DABY+xs00+%sfi<3L=GEYqRmFH(rh+2iOx(7#18 z-_xS?JuTQcTFcFfS)CoRKS2{gVN=2dq9vekywj(R(%WJagzA=N48!qca2 zDQ7egA0Qezhz0nkm1>G%z*awD*5+1E2CF}Yj_alNj6DFMc}|}8R7JuxeqeQOf6Q+s zhpWvQ4wuRt;_4KCSPupOt#H`&U_du?phzz9-lz#QnBed-H_9)7f!;+;vaJOAzN*r` zy`g*Hm3bXAAgHqTY1JgreF>K29e@@szW-7r>lKzXX*H%7Qkf*@1vc}qqA|@z*>eCg zp|Tgl!2Kz5(5N?K7IRhFjrIhM#}(bCrGSmXda&n}JuY{aE2Fj+>!xtTG=TP1;)Uu< zbQ21cuG%jpYRD$1+w*cK>JDv^B*Xh#t9T^>Xn*T^T&W7Kw>g$mKzV`lP*5Np$ z)+>GJj>OT!kJPh$?EbUIb+}vqxH#Xo-H2`oc+qwusY$zchA<(Z%imeSfNT0gnuqT^ zn+${+kpPiy)NI0wp{cu_`u!{OaaaA?p*LPYzE4D1!Ol~aE2W*yd-X@(tfUxm)~tqu z6KkV2xNsOaMA+|luU6kQyd*(37BRr6Y~V-GBB*^zt z=*vzG)I~)6!3Wgi@mAJM@I{S_F^vWWg=BMx2cPNH3=FzD#7#(VRhcz+n3eK<5WKqy z{4qKPHc5W75qM*&Nim)xGHA^9zT~+x|6weu}#L#_xeZ zs$B^+sUV1)KDC%y?ZG~K-F)Py`O|?k)ekF==nj?AOD9H;LcY}SMUv!SJi_0eDF>c> zPA7kEH9FtT9Iaqh?sVr(R=!cKd@}5Pm7wN!5sXiz4C5Z~jDRZvwW}e<=3tyv|`mr23|6X<1~?m&r6!+3Bz2>nq4;FSoH!CJk1l z#~ReKAZdX)-BC9a+;)_yHHt14?W3IyJ9dqJpuGw38{!us(eP^?(y?T%TN`|Pz9Bqx zki(%5rlq5Y`1h$VR5eokJ}?t0^O-F6i3m0gX-S)>0;m^Xd;PbYSe~m#6NMC+bu_n#0k_E1j z9(MdvyO?x-VsIk;zDdi(u;DkqT?5}$Uki(M8^yq=B{oyAZ538w{_-T+5`}-uV&wxE zVmyAPU<&Sj12nLnumT}68e)tmuitu_#3?zjy@Tk9-k5li2IklH_xU*kgUoz-*lVze zy1M#Q@B0f?&F>o8e>J{-pFgzsEq*pbm;>t0%Du6B8%UyW6Ed9-!pfD*Y*l(#sMgvf zc33Ck;SqIJkau8W@VzP6>bGsZk-9nQWm1#jQ<2$P2%u%0eh`yLDs%(h_{W47f98yK zb1Y641tGlxh2cuoL zj=CuMgJJ&Tk2fo5zDERg!-;f9O`C{2vyD>8d9si>AzkT6Ua-i@hJrpd>(Uhk@?qUX z#Y15JN~wG)JIpBHDWyodCV3u}rx zwe{aURdYkJNj!7Hu>aSd`T|+@B@E->N0J#$Y5+d8k}H>F?b_f`W4H(o?bzs>8^gWeKb9EUrgH|7eEyc->##*v2@ea<7{zXZ0)QnA15f%kg;^OChN%lDZ&imqfZrB$wJC znbWdo)tfR;aXbhi*$*;#tPGEs%>4UwaGSD6#@nZf+0fA@75+F|m5BV8i@In_lqY5y zT9JYZyC%T#RE9QDW9%D4#FD#xpGb03n_w;wwHSM%;p7oOleb=Dxl3xPNwB+vY(QHI zgPsV8fK5)#$8$ldWr2?RSQsXMk9lMXV3uMO2s{&j1qrO|Xez(LT|D=VJqWK1F&n*r z&Xn(tu7##wgTo3_dbD32QS9{N*7%tHl&5i*IwLq>xkcs+oOk8p*->K)axCiNPo|vCbYO()@7QQp*`@BevH3Qi+JFaz|IWcdFNWJVx)Zy)<7c9 zw!dU2RaJ6IykoN9<)|#J{k)Dkl_|ZBVu-3~8UX5O6WhmfWDtn|y3fF^rUt<}9VR&J zjd1+E9+}}SwDP38V#$nG`rBx?Xdb^)7>kOPf8qZA=(|KUMEgpuCB*hO`^ji9{rw}q ze6_`P`JV9}Q!C|349U*p853xg^T>%*A1U2OQm_8>JM(k{;RF+(D3Ig3-OavgTHXO#=x>-_r+%L{SiGaedtRXpm|VFx+&9#l=7B3 z{WEa9k=G@pA*qqFv`ek6baB zH;rh50LM?3Y>mVBwK&DmUK?Z&uR`mVpE)1aREdmX{l3Ecf2#YFNt1tOhP#}KIKNAO&Xg9FstXahC9gIM1C4iq`vYIQ@eEJ z)r`Ts{d#b3$Xi#XU!lJ-Ue>w#@s}<}T2rZ++qb_un9TRcY=k8QKP}whxa_s{eABf8 z4Zv&r2X|W!V>gjepd_8~g;g#W`_5%<32`JBsi!r%$&1Oc`~*j#&M{=W&bjO!kxBLe zn1J`6?^1kE-ILN>ezY0oR;hH&MWs;~V$$F*HOu3n@laCuUkBIgc5c8ch1f zD$3BY(QB?sevt}>E4>Rk=XWXNkDsje_N_uyfjU1TkF%SZ8Pb4=Z+Mw7>nX3$I7+Qauf+)(%qjEcz0O7NuVtP zBKH8m?@}#nXBvtD7mC5si4f?A`3H_P|cdq5BnyZ7TI9t#gi5G%x9OwG_xzTN z*v-^ssYIYL99h z-cMO9SAwOg@@rXX6z|KI%H&&<**u+cH)>zSIMaGyTW;OL4(xDD92HaO%rlFi$CNAQ z(dxI420DB5LcKHQ6#8HU@ABT1`KsMMo|w8HNMyJq6qr@&nAVrllHhyZ8T%A*-%hC@ za3RSdbJDrlvGlK!U^r0X#v79PS2hp$XZ4Ch68r?};Bm?04sPPNKusug)^QNVKKK4i zo8+#>Ln36;YFEXJdH2F6Gh7V1ZDCr5{dCBsb^==^oJn|?-ba_pX&)N_!kRoZ=$VQ9xW|UR@?gj z5HD=emz3*@ZOeO~A?4h)YLi!j{MYuEa(B716KoToFl)TNhbs1XG`n@+k!HmFu_)13 zE{v&vgF~t#H+`zJ@lK=4DCj&Q{9#t3DfDZgBP8T`|Dhy<5iNVzVDjxRoD0RI`wU$y zj{6PNnCFKdEILlpM?)A)Wq?xoOSZ9(0Xsl5n>{tvJy-KsP?d(AWB9PRIo)EYVBeG# zdTG4fVqE=>AZ2{{4xuKybIW+LUPCoZzl! zA>?pjS1UVI-#GykT=Y`j>+bje1baQxJv{I@4ca``pJe{-4d{{guNwB0V<#;_0=kF@ z@M-GrAN?k7K)r?3lZyrB-82r{y8SgKC*N4<_dd>5$?a~^+mmWyoFu;Cdnk{Ex_p^p ztKrt-fdVtMhGTt-+^NIvrIzMk|Jp=&|Ne!j$q-pzl5Nnl0XAM z+G(QncW;m*_CkKhsh4tU<-qs;F;%>?q7Z{1Z_d5&tj9`q-EL85B_d+O>U!*l*EW*Sn|hS zk67JiQR{+*HN)ZU9tC+%K`7+^+CSeX0xyVw$fM^R9*oDtttSENsqi%{>WIHfdUV8P zZk{fuu)sqc>{!Quqw=HaUIzTFlTaPDcQ}RWMD&!QODkWi1bOJMH4+CF`tUY-kgM8(nxqw;VVInl;M!_&>d*ru%vvmYd2>cAI{{22iS4 z{PEJN=fkd<1^z_uAZ6eCWK65j-d>-AuMSShFVzgRsMWU7R(65vN?dkY{oB}dqX+rs zro3~(rmL{ERqwbTY_&y~!u&Ex_=0X5=CyJqD1c|K@^m+g;|xiYLOY^Z)N0dZgtX|? zB)}7K+?!(#=L{^zD^jYn1t_xv3mYjt-s_IOKN5YiQ%U~TA5{DYJP->kHa0&4Iq<$Z zc3jY9v%gHnp9FZ?bfLK6MZ+(zd-q__IgPFp*R71J`6>CMM?p#J=iDumjgCMVO5;v- z#iF?QeCfe3NJfA~Yf42zH$h4~V_ciFDH;uzNlgnXr%<73&fC1p`L5V0X|CtD^$*QY zZP-ZoxYl)2*iiF^-yR?$&;D7vud)KQN7jN<&L5daSoALFIOwb)kb^m!%2Ogvj$$_3 zmdS%?%RLIC@#P;P^WdU4X-Gi83O;VhaF0u0;w^aUN1c{yDUgL?B>@!3RBX8I@>K&e zI9*A~6g$0nmC|CX-Mqcv+vL~?#=dwuIwn+%(XwW%u>;UJM>IR|1UYvO0xRRwip5<0 z*%_PL%6FF|4Mo}@*gE?Qywmzuc>7kb25MVZk*mLp#R+Y^Gb=#jvJ4@@zysqq(w03I zGb1Oy{C&}zEsk($MT`?)u)9h*F=K}A%FhY#K^~}7#}Qs!1PQ?5RU z$f*c;_vDjo5IQMEk=%E_$pMU0&o<*d8#XA}X|-AI;Z-*+5QMGTJ2lA2q_)CFq$X0> zVnjQ~5|4!$8AR*VY(+~+_mx(q4Uefv=ixoas^5>d#RlpH5gj200cJ!P3e|A?KydU) zYMB*)mx}@e5r=OqNHu0>1l|?Do&A1kFLMKAqbO&`AK(6^~%Qo-8{rOKX0VpNS7@Xqnh7`V0!Vfs2$YYaqPp)3f&Hp#QZ1yyS7Q zfwa?M^7i`^9l06>)TDV5*Rmy*U!OJK18hL$to2wX0TZh@DN6|lqjuJ2Mt%$qvI@E% zs}|`Wb>9pZ>aBehXN&<+*Z|UF;c0ozLnQomL7qa>cI#etUs%(5N$NP8-O)4H(~8hclJ0XJ7+>37y~C1U7Xq zQxXlKb%{}7Fv3(GHPX@5CTbtdr$;`wHv~i~Z~O*x!~4XPe~!(@>O56zwUqbYwD<2- zMEiCNeG$6~6$;X7b60a5$00pGudX-p zXR9V;Zaq?+U9^D(ST%mD^JC!0zt-TNcZnR<$;BEKq(wr_JL!KRHA#bI^h`(B`^~(E`Od=oeETX5aNW?Gd7CDNq}5YjUEQ?s{2EU=WR8f!8gIik?ZVPhEH48H4TAqC zTs5YztT|uGrJ0D0&@)(v`B?cqf45rem&a7ad|K7A2`Ax3ZC_1%&H^9!X^Duf^G!o-bP}s+X`$JjVQpg!<29;prQ-i(5OdUkdwgBQv(4>(oXFg2( z(w34K4=+~Wg3_ETe&us$Z`}OfyJGfB1Fe$+4brR6eXF|lY#st~u zy;qeAN~9%KP=s$?_%lzOG~ebc`NR8mVW)aLZ}kCxW#!CJDK7#V9D>#g69||FdLMs z$c`M(;AerE#+6m`2{n0=QpU8F2jk1F%)|n1pjla|AIU5;I)v8)_B5&^vl*+v1;bPT zIi3Qh?Y8ra)JMuZ4vF<&ic#Mun8bxqjC=(`n7C@gzk`y?v`!rlC}Y|U=NA{P*T*L& z)_Ky59@@G0Izav9EAuB5W4sIa^@vJHJ%PEL0S z2RnECyNeKfPA|>9XBNf7!{hnc!WF{bC#eKZkQLH{YsD62t^I>uapB5c_@C61h@BVp zhxm4(aB{Ig^nDs);O0#1>_({J4ukvH#R&Jd)yt?2yed{FuPDD^&ULf3THOJ3iUa8n zxdWYj=HOrpJEmVaqEDiN>=#Pq7S`76r=mesKqSS;^0MuIRzNbq!i3`^MWn3M@z@3-YUl& zrnsPTW!$BEtIF%~$Z&g1qN7+dKo#sACk@=(e%bFo8fdpHEN=}{bn>AmzK16bp>_Aj z@42~m(^gzs=BB4&yOK6_G_vp#1!J5K&)4-gZT(Jr?`%R53!f{SL>h+8bm?R~%hh>i zpI|VH5Jz^unPTfg&@Yp~1bK3EaaMCoW3EwVOys6xlDKYk-di7)ARZcX-mmE85hR(? z$Gcxe^X;p&o+{RKm{5|)A$p@;qD3(RNrDPKdHJmo>f>3>R*I>W>Lk&S4yvYMG3q2b zXe@bOEo!0#yS?Dw$&O3C^_xs)w}h85HO?JZ5L~>e>{<^WY7XrE4`2|2jf;Ch<|2VA$Y{?W&={?MCdYOXmmPNrhmj`I?nnoCobJ(eako6&NZu4|ZoMe0@CPs@{l% zB#App8jQVlJFKw@Dade1b)4Z#nj1~m@^ut#QP~E!mV23rNOscxi~-KPtxcTsS>+d;AE_j(uS2k+-pJPFaIzZ{sj-HQDEQ5&_%e|6>skmN9Ulp*qVZ`$9LDGfr(Q&o7%^jfV!1cp%z9u`b+uo{u;&~zAqya$oZoae|}8o&gr8A5z9L{eyoOblA>w^0HPJX7=r-%s8cM zQI$(AeCZ-l{8CKtL_Xy0&19aMcj7-#+h6^>bl3|Bh#GvUNTL)~KrLKqra_A$%u5^4 zzC2|U$BI9Rzd)vRf31blv;OnSa7 z-oF~8AS83p@eHza+h6T$@m9!`<5nW(SzZ73zS?e8xTBX&7dV4nkJJHR19^z!R;ta% z*9(hESwgtBo)4*1Na{ip)Hyc%=O@VtOiLPLXukMZ*9^N$$qgIS2j^5$10Tm*oL5l; zW_%>Rds|L@M4w=j;ATiFJGmzk+ z19~?O7V0v9+h)mP86ON>46Z(>MPrGGh=4AiobQcakz`%uY?&U;&j}=H`o+m*kkCnq zjd@-u;i~~BZqfb1sWxx>Oz6*18>i~9Nvo=+K}BS}o?uXSu&^{Tq8QzfR{YDbbhfDm z<@9wwaM-f-K$jQ$>>Z|N2&?VPJt4iAT6xp^tsz|+Zdq5i%8B@_`%r~oX16l z4_m|X@rzCVAC1n>l9?>X;lI#NEfV)a)J*oOru5+7jxN2&M^{4QT$6J90JLw+dZ8&5 zlH{=$ao6Wz$K{boz>!FHGamgbc}I3%e#q8+PZ6Bi$a&2X&}EpVO#k*JSGN$9VHF0$ z`JC3avTBU!nAQG6QAJB|adYp7O@y)&oj#wOwCUX1Pjm@?yu{S{Pe8173h;C(0!C!Y z`)&SlX_%YXW!#ATVGq&-^7Xx^$;7XL(45!Kz6dE+J&=g-Aso>RQo5MWAka7z5EPga z%=_dV#f;`T=A7^sY>fSCw#UdXD2+Wfvs#!w69zcS7P7ZW9pA{18T-p!-@9KJQ)K#R zllpBPLXIn0RWP-CRprWTlkKa%)yT^^*fp;p_LIY{Wex)Ev60@!r>F=<2BT27Uvl{S zoU;LES`cIw<7O)+4!Q|KR4e6&vH6}~w7Sp;5gxjyK&osHgDsp<(FliQChm?^WVOY` z#Y*?HO=cFZM0U%B>e|}e+esjOZ(AphF*tt)m(?VD&SbvUy3%sG)ajk6@90l4C>-&? z-rinZ1U{!pKj65M_Vn}&oxHu+t7+o&P|DVQ5Y%cP>fahEM(LN?!=*Goq6({%Y`LTW!z!t*W^AN+ z=KOhg+ujei--ed$bko(Js&>?G1rR`6KUga=?>|V?m+?RE@=@_K)R7ex*4Q9B&8dqyJ2AH_%;fVh1*jgJbt|NsZMPV7n^?qzDHO;q z*MZ5gcJ0K@>A{Fz?HTyv_Nu&)>yvgt9xSIb{3$A#=#Hw@r1&n^jhw8dPMTy{;?2Ym z&%>{->Y#O5Dxb2F0T0~laJD-ei|0EveYSj?1{PTg$&4{Nc2aca+mmJR#@kpouMP&c z>(zBL{KH=;bEMba{HLY#kG z&hLU~dQ%X;P5O-f395$*Nj=0zj7X*xzQi6W>y>Ge?&2a8{ry^hZ|Au3@0e8b_Anba zek&v1`3t4zs)_R+$K)bI`ArsD?Quj?u7|yFX9w_tX!%|$^RB!-+M2MN_r(kDY!Nm# zUX86i=o1t)*IjRGYhz)(@!j4*dmPx=a%*NVUs+pQyB7{xo3s}R+raDdG)&S^R!>)V zI(G51vD_4P$kQB z>>jUn$uFO}3*_YFu!!GXg$mE*kgMl@ubR7E#-V4KVQ07wxqMQ&>B^6|_X>sS=c>xe5pxlc zCh7u6OoRsXt5K$WBHhW7bf_?E5Nd~sZk59tUytz4$$r z5iFxkxU7L<9}~51^$sAtP~y$Zdm0RdTu#R^>#Y3q!wnsHYivd8-x!&-xS!!pYHt2e z-7#EKH#BnYn;W?fm@abgdR|6q7{CurtyMByHp0F7|cm!7W z<$WiY2}9ny2Lw3Z34Mx*rK}Tu0hK{(w2H&E;tuSz5XrN7I{l z7L5*1-(|+Rt$jit;B!bSpMo{tPR2ulNsA}pg#+Q6{Tb_-W?`g410fO7qcwY(<(Z-m z=>(|b+aTp1>V~TI`OKb{D_ZdYiv*EDdLC_=wMtv+8C?J_pE-pS9Mf8%+Vf8K=UD<> zK*j_6bFt!Pe%%$jSL=LhKjpHT{?cWWd9xs^&?j4LlSXnZrx=oZ+ff$hRH$FouaD3V zK?R))f0*{w>4-)%|0PQM)yqlh6Cvw)o*GqM9!-@N@~tM=FTJ~s+0jL+a5u4LF}2P7 zcl(zja!*A@gq+R}mF2zPqt=QxSxQBDdoNOh`;#j+lHs@>P+I)!U;{VjVa8SaW!`YwZ{Z*%Y zsT(z>MQ}0%{_#G4_R#2{LZG#TY5l%feI;x^nJAU>+}5mUgSl|@2$;Vn?Z1D?o0Yne z-MPDR--PEc-q9S1WnW5HuE1`eHB86_+eFd2B58Us!N^?~!`i1bh1usHYVed4WB?`@ z?Js=Sis`ls0&dbTnK$L%n z)ZCylR`jj|dv|W?WWs8k6jGGzoSQw0p)DCX=mx@fE4t4xid{F`Ud|fa5G5(Is|Tnv zlIGIB!>Rzpu&4;5RaJ}8b&5mB#O&(foV73$*>vJS&^}V^&7V1+IhOYFYPgxsZm8PI zVm)MRVc2i-JxMS?HwgpqBrs`ATNrFrNX;;cGW4QB(Vp}i_k2X`D9?tAzDb{X`UA^( z;7?*7AC$j0qIG0KcUuDgobLqU5<{g0$MZUyJ3Aa*ob2qKdwa!VUtg+o19s~K9UZ;0 zYfcRKj*VR~FfdqiH+)}ynpS;ap@fE{)d(y~^(A3JxDT(UH$toGd0cCx)9~-az z(`R(^naqikDMp3L)wmj6A8~L#T#0B*C);aXVF)(hu466eVi9a8VCVn*4{xnvH1dO= z#dgbG^i!+7iIC5a8M?ZR#ZMmqiQ(xtTm}%9^^1E?!^sBZ{fld<42p(K9={33&3cr*=WWu5x$d@AZyQs$V~-~_ zmMGYLepW954hHo*wMCE&wDQZ1c-F}ws-7Y@QQA0FX6@HqIh#dCv?xXQW(EQ6^FPAK@fJ&Oz7HUjMR0ld2Bu`Xx(2^eE0OrK5dJAT8{C z2P$QA?L)q1KKm`=5 z5>|8TpGvz(zv>?glaoY{j3i;mgoMvDOjG#}_0-~xFLSq1l22<|FfI!-bL7Z#XGHr1pL$Q6L&}|bE_382Lh9c=uUuiFnH6-5HuEXX zDEIghv8%?kY8ZT-wh%#!Ax%SE!@b6A&ie4}(BN%YZi^p+p7JlT3P2T z+qG6PD5v&@#hTfc*aX|xeOdjrQ?IViq&#x((JFcOqwK`| z@&8hG+MP^OOnDv8+BGVW;y}sP%%;mhBFt45iBj-)3Sx=r=wuJg$CrDa?WUE>tJk#J zUi+%1JZI<=xl84jXH&2fFOtYY!7CN+FfS(WxPy$`YVq=mEeH@m(<44(s$%x5cAXw` z#yKOHbh=wnIj7h0mb=Nai3&{`z_m+$Hs*ZvJ1lOYK? zL<{Y7C(eJR)&~j#G$R;t!OGaxp(#%=yC+Cb zlaN=5pY=g)YXhCERV~Y8_0IQ4Sb^vyiU254CQh?9+aq^%5*8c8-fE0`?PKSd?kK*j zFs7r~w!hJ}MH*G)I}#zRF7=0;ujIH9x4XQFLUXL^q{ZE8(sMJ_$m2P=f-NhmGofQ| zJ8WV5UmzLMh_H{h)t}L9FT$43iloS~)jYPJP1sH288wZ0?GAe_RuqNLNL(ps>3J1y zDbYLqJfrx&t4E*~tWTfua%k{r(5L#D^(VLUNTXenFRKm(>y<`5x9Ho$f(1~gQKsQ( z=n$G3?K(R$JJ`nsRn~@7VIcgB_cQkNsh)|n5%rIkYna`oyGwAxj#rP%WR{nY4yYZIfISOqQ*B+ zRpKGO6dmD0A}%?~Tda!QK8gU5VY#W*r|I(J0dO#Q)^`|a&~4`6@SIz!@?!T&Wzp_d z=}qIM&x-RF==NU9kFXhC#aLncw;Nr?FoqRu7#|-rxR*N2dPLA)93^%UI7gxj9A{fx zjH+UX1U@rf!04KA3R%n#3_lZc!zx>s)cMn_K;xNuvAap0 z9k%aRH&D>(&v+%!dV9`?uXzThZPJ@cUVO))dw==> zgmth*5@Yf9>Wcl?xrSCiXs+yN0$h5GAj7N=righL=qBH$Zn!y?;zy-N18O@JkymM&-mgKBL4Np$F8N?AC;7w%#S}CEoT@DIqL** zMi5y|?y+>5B^c?tnK|m)`;YYI;4*em&#-F`(xym zO~J{HxxDs_w-<r5TbOg_#a4MuqQs>-}pN1Z@3lbsGLUyZ5Pkxkxm5)!;qv97v?O`C|1bfouVuK zp(0s(dai*gwEMsOBE|84ME{X(Wug|`ij$Dg5v-n3EwFUqK+^rkjdpm+0M++KJFJy; zr019r+U65%3*V18nY-$aT(m8)w>T@>S1b#BXSYV?JAAd0>^@_=wqSgs?R5&Jd(F9y z?t5EvQ*@ZQ&|7pUi(EqVQ}UJ$bcprEYYLy<`YErL%_K+9g=87$YI{!T-Ks88N_wIi z8+vlMQ$yc$D0Yhy@|5Rk&oGPAmk{o5{|_%dn7w{ZH)LpXy1 z1M!)@S4@OSilq%?=Mfq1?GO4s19R_xQZ7vG+Hh@Ykt9g_MYYCJoy=90Ahx^e_`xhLADzqC8Q#v6Tq*x0vOGDns)%PbhD=L?F`#SV=6T?c)0%n|aq zqvUEi(l7d7LwV`KPz0KMQ4Bbvip7~m6Sg%^wT-u@%7+-0_#y=JTElTQwDdbeNMFj& zs;z#>C2SbZMFbh^BA`;l0aT;pAANA7Vv_kxuLQ#$s}g!5jDXXrvh;^Yp=S!a>YZ@J zQ2Y4gF#AC@;d1LJ>Q6RhixhRevl9>{Y%l0ipn~#bY2tGXZOIa;Gf>1yn|ke~LO5#M zCuWb21<^)V9L=X9gNb;{Ho8A=w@|Q_(nc=QmrAC*LvTWw*grdPuH z@zbZ}v(2JDx}EH=!QnUxd@PV;f`2x=5uY1RT5PECP)0xAoCb)HG-@7&Ybwp z#S{k*lcA^>Wc2JiPqoI;Ey0#gqAt_MGj!{{>P&T3tCo(d-G5+;a&avBcuc&2d@|VF zU(G|jFS3uu#`j#OoygGpW6b@>geL559D!c-$C&uChI#B&KE1~kngxQqt6v3e5~ej~ zAIm%^+u**SOZ$q`+ueRfQm3wWdbS*Vz$#NBAr6iJ_G#}*9*Lcl#Y7ogK@-?5>=C!W z=JIWr4M#X(Gs%6XEmWR`3!5s+8`IxfNdLxkcd#|0W@E~d{$Yvoh`GZUCV~6WE*zdU zvm_>7Q)U?*{0)5shOHXbY>Qa-4t^xd+oSt$SOOf(yiqBENe}fyUmDn$r9=ME3q2Za z?^E4e>9r^FY&u2hlr76FIKv43Q42SJUuL@xFMJn}o_J0=#&ZgcaW5uLda$yMa0OQB zF_;&j^|1lWh}`+1)jr$krzTwbzCYZ(;CD<91TK}!t~T5Z zH)20X$}OunVjuBiC$w2rpOe&JrDg?xtR=|K6Ol-ukH0=XP?}C3-ErKSH0X=u)XmY` zL5RDYy{`%`<#FiPOvLjr`tlhse*`r2X%PrG@|5*yJw^GI%&xS*bHcGe+_^t#4i(Ez z*y^lvAdXa!iCL{|ufJ!{GeO7HZp_gix{hB0QdBX2nC_mXyRJ_?H!he=xFn0goW8q} zV5v*YZm{*UMFuZ*;rpFStgr!dM&3c&Uh*&Ff*whw<-5aZg4r*et&i6l37eTbR9Mt6 z^LWOe4KdYeT__tbs~0^lutjX{E@3sY1uQ-N2MF^gWZwAUM*1YOUupyHffB`>x*$Su zZ#AUb&s7sIA=1(Qah9xw;O6w8YnOJSiR9&hSHc#M)pp%FeuJ8aP@F&fF4I>`y)nn; zrEXlR`&t7!QnizR%oRKpt3|`EOPa=rC16%+AZmH;aHC^hTJ<&^2%P5N^TqPG&b=r)w;)6P)thSfKy?FZL~xL2@I_42c#v-wPq(C3JQaC9 z{V>ny0q$p`M-I(0O=qMHP}1Ou=1!m!Z#prguKk(kIiDIgk<@PEK#t9>4ySFWCHk&b z-QM&^uXqLWDs7tL^x&NRbtrMeHE9zJZQHnhNRA#t`m+3_k_smz)b8WP2O}<6xVLb$ zh1N%P-6638=ON++)r}Xf>^+@`#Gw0;66FsN0eSZp2){RH9l9_qS%3RP^WOj^IPl2> zVf%ZE48RfI!dA><&yMk%&)Um;6r0qNYEs>}Kt%LoUH;8y8EKL9+-kMCLp^vs6L;^b z2!YXpHx*Oy2XVRXND*94T10Cr%~P+*&r{S!3;?JsreLnf(EPFqYtU(mA;pQ>b6QhY z;AhV}>Fr%A5`fA73yIWMx`9cR*l8dDCRJoao|JcUtBTcn#CvlbKY7HaI&v0u`>OOi zJ&eAaP+q0;=gOO$f&$`-%aM_hHuHxMx0DB(fWq!mg4A8#@eU#N)NZyH?28F8fPJp^ z^evwr<|^*ailqpx`{@ejssX-RMgdJAZqy?M&Uz@ z<(7-zZ>`oD>Wigz4S9SY#vAM&;*dDFZ7%9oO?K@64)w zeVq3iHt5L4QWhrcGkNH^*4(a=v_quFTFs~2Afl-yze(H&{5AWEi|oI5D#fSB;tLzE zs>B(3=H^ozTfF0=+SfXloA*BpQyrwW9Kr()k0q}t*@#uLhYDW&%VZz7cUq3g8bn$uDw-{0s%MEE9$?hm{7(8lS8U>LF~uSGS?I$i45CC zkY;0E3(Luo0(&I$}%x%mM-7S`6EWQcu^4SdeeHz8)5fq`Lg zY|J?D@EzM@EM!qp(Zc0LJCznShZ(e_lo`%hy-bz@x*H@Qm)tn0sOREAU|jV)?k2i5T% z9O)q|trti*FUT^}WL)jVV#LrNzQZwsbQj1Xon(js^S#>g{^z@Y8EVPA;S~CMRP`4d zqM!e+B=;p#q^lea_CK^bU+dJr%gqV+3rhWyoVhufGXaFDCgu+pAjAH1qx!%8mqi9( zCe3@E?%!3`oAqhv14Ow+va4u?Rx2smDck=6fMVV%{HGI1GG*x=C`307>}p4uLQ@k( zf9&l2)ARy?SR>t(j}_CJim@zDk@w2Cb(rMyUXdn-9_gq4{@jZzkl)5sRUo_Y|GrAu z*FdQi^~208oNl@JM)tHv-T%vR{Bu@26q}M+7&)3zm+s_045ch4kkH5nI~g+kMdBob z&|LM-!*|e)i!0mpb|p;k?QAp8Q#E83Kt&94R3P&UEbAWy(E9|cyM&@5BVnVzkx<`& zJG$sq>pMr-dB$URiNf8OKQP9_so5Yl729l4z0${!Czu?p_}a@ncjIqtw&rSj1`mKo zZ~2A-?RaEY|79zmd2BR?N#mzdy?u?TY^2-Gq^li>MH}t^ztI-lFS0e64ii4cuO;J^ z`g2W{fQ)==X<+a*FfgzK%md8Rv9v6hV*@+{oe$1i$pg9~K=RQ-u>C7H-rvRrgyh`# z%~+4h*Gtj=wyAPJxEc*|w?BXX#YO_t4Uwmbs4{F_9cUFf;?DvZAQ!TvSQvT+#VVQ@ z=;&{Qh50P7u&`=4*fgmI^y`7#Me&&-dqoTz-o39A!AXP;3k2 zcw4B8JbjtQUS^KfJ=+OM?fdWLsH7eh8dT@O+EC{B^SLaiqGCWiE+1FilEb%LDe+Bs zxUi<)a?`-=npy`_0zi!dLVdj}i;rpQMwDc!$k}u2+)AoDR%6}#b7$9Q8jHbl^K(1P z1EaFS8VPa&EIh|Dc2)%sVX$eHyhm4}D(?EOy*g1mNK~icvft_w@5H#uqOp_j;MIRg zF*YiGcg&>+V;Lm&c_EZaXwVOhLS0+A{i zUH20#G@3l0?C5O=!fxc-Ygeyf-R01E&8A2|V+_o5|3zciAdO(h+@fh7@#y?;U!rv* zqOtN`{zQrBnRwe(YoYFo&n;Em|E37akx!f+X)8tk)`ocBr%ZYMD8Yzefv)+FS%Lq1 zy#m4_i@^l-_Zo|&ymjKRKFZLUnflvW_jeTpN{-&?`@4VS|D}?PMOE=vVAwa*Tkg#F zHvYQ+{msuDVSoa1jG=D!7dIp&Ojh`_x@=^mt4W(m5A9ST;C?Cg->?7s2SxE4ii6dR z{tK9IUTl3&Wglhr{4RZ&{C%Xa3lZh|ioQFnPR>ftpFv)-A_pgPsuxE)y5_1`FTDAe ze9qhbUVl|Q7DE@{nq;MsMmFZFn>dedxhbhdMv;5(KTs5yCP)>}IXG{(FSC~eiv4}9 zWIL17s4Fwvr(4lxW@f;XS^YqFi|V#+DBBD27HWXN3R44x1C%4Hn{9pYDAus?4Xjjz zxNg!0R?J#fCf6`{IhNiYjoX$4#9&a4DB~f|P;Zjqmt(hF;!we;Z#sqU*2R5U+?+*_ znDZV1(N+sRfDt2(!=L6EvaPhxjqGtdfg~H?>&}6uD&Xcqg|ReZ!xPaF+ zL<>bQ)sK|`xe=OXw_B^)i!&}d;{?yI>v)hSde(Q1F`)?e3CH?)lMq}I4g#x94_O|Ls?1&;ncdm zZ+uzhmM6xM37*s_2EWNgR9n_9-N;44)h``1Gs{axjI@&&hgg`~y}rN6kbB0iR&35% zI#`QPs}Kdgwm>;jUreT?FI6!_U@ZBX>-ab(!4Up1&#!AhgnLg*f;O}?C;5gk*2RjD z3mxEyfgOSqsou?um;V*vXoxSp778 zut1BQEreu$$&&NZo1gdYU87vrO4Oi;CNPF>U)r656!Xva>8Ugd&}90(KL~Ham;$9- zIaAxa81*3&*lmUYDa}$1$&M})ilf%$vQ}u@F^j%K?C(!wykaa z5B0!dDb_FvTq(4N?!ImVoxc<%ReeWarffsD5S&Do8in~b*XDo0X0moj@kw6NdT#67 zraNnqmsq@NW|!Xigf*S$v=TdC8m1vHmqX*c_QF^lcdpc_wBht+)4*O$VW2hw%#SO zuM@!cZ!>&juah~_W@J8mfy3^BQ9-GQiY#yKe=k9jH`3lI*VW{v!T=30UX4>%gm(EG z+_SdtpJDL(VI@x6TEE0DDs`tl*3m#4Xt>PwPicq#0%*8+_br9cB=tq^U0eo3yJmM! zqJC(Xi;!G4K)VHZ&kA%7*LMR;zRP8HsWWi8&r7!pqkY<*wQ6`dbCqM=eH6sRJ7zsq ztR}9y)aTJ~VVzT$6Ge!?nE3Icd+93vN+Lk^^o%PlDm{Hpm%A2TUx@Yb3*@bG1>-b^UlS;|IFg^Ia=edsAeWs|NwdjS@N-Fi) zWyDlmJ=t13 ze=D2haYEvn^a3!}q((Q>t z{M4`G#UyOUr3$3=M?}o*7xfNeIqM!X#5HV5a-VngaRq1bdR?%)Y!zxR)na)zg^ew{ zai_oE$ck-e$LOl7d#TB;vZ>R3EtwLIdNK9wDe4Fc6*fuO$xd>YIxE)b|Kt}-hXGf2 z#yH(Kf8-+;@4_(-N!fzM-Go8$uMgKJj=q?z7D~NIG0wsvKx=0lWLec+ zu$X_)E33hCD|jS`4zA_`9dVQ)en@|d#puXWKJM+UczKli9hIuZh6YNTtNN5^kcB#o zx{xOy&DK9eRdF?U06VN48i8T0^2At7?WG}aJXy*t@@(ZMS(`{D_c|7v-GG;Q4mp`A z`{?l73l+L%ywv-w5-;Wwj7-h${drPi$*~8uy=tnUEzQL@ODgDn)PKuPy~C-2ZbOO_ zD~Q6|L$onVFX8=Rwf!t@lVWLU2*N^}$2d0wE8P4%&M>KR70aw(nx83eyy_H}U~4-p zIPQQ*cl~-~_$;x7&@0jInFL6ub4>FLo2am_A#!ilTwh?_O=(F)I6>bYGQnOU4B+Jo zp55GnxkR!Rp4SJ19G2w?@LsIULhnVqmvtz$JCTtIaO$kyO}H|_M`HS7fwCOEdR}Lt z!kJ;Rz7U&$=W`1=QqpsSv=ny2ZYn(5;V&;nHmJmUC4wMD_fDh&K8*aUhqysb!>JlM zQKBq{`kArEoslztBr$1dz3M(&%}}nphap3)Z>haK{-TpQ4g|x^Xx_#%pAAOG>_{B* zlykD0d8S&QuFTHL7iq*d+K7>zL8vzE7LUUo7?b!4W7-9!0H0!0dGmC^*9>BP7FL?M zdwAN32iz?~*4#|0yxY^)EBOVyeEpkT0me*v)Y>D24R2|QMz1}VMmI-3&+I(;%9iZI zQ^wcwW94quo8EVgovL;13JD>EUEx6atD(WU;a;*Iox>70Fq&YuG@5(w@-E^#3efcm z?W2Cn;S^(vW2M?$ESlhKU^E5u(QqMZh8|zyBcRB5$$!ZF6It6MZ!CV!B*LeF6cPFd zQH}9ccSCowCmh3NOQFG*+$<*9F6oD^Yh^9`CyxAFo)q=NknV)r(cMANvlM-oJGJzd z6Z^)wcv+`LleI74pYvv!cCU|$+CoKJXKnFnC3dQ=&f)!}o{SoI7b?+a5_RIo{O|pw z2!8gHW~WXym~XQ{ensE9g6}#cs`pAk&{0!*ui)AqU1t}RhfDoP{oCHe-mLK8-aO8TlI~_KO-Mr1XTx+Mq zCE0C{szLFniP>2uTf}iCe*R64^(W;V*cWd5OnU8ddOSKBg=1c2(vj7}QMrlw{$*gQ z95dQj{83P@`Rg*Lz>e)L55f~jKs)j)&Ze+LXapneI0m{q1M9QZb+{ zJe$1yB73Ky};=5T0w7LSy>bd z$QZarA(Ew-2+TM7@$BM~4M7h3j>s%MmB$Zf=H zvGr18$+2n};B}L)#blY@X)*IhsdFmo9h%zPOF6WfC1+4J_7ki$w$$+;(H6UPy|B@} z9I*Ry$xOYPkHqsOmaL3M`P13M@~_7+qK|(#kW{i21^wG!%5S{tIow+t-cG65jI2Ua z_!10P_-!)H(0g%jqXDrVZQyP>Tcu1GS(;PAa+=n9c#!F_9XqJasi|8i)hmAYY@W}j zr91L|&W(k1+=@auH=nU)i*!B>uYd%d>^FUl|Po?b92W{6g@9T&W ztSc!@z7-WnJL92#vvqt@gYsC<-6aaR*=l3x*1h)Sqn&qrJou67r{U~4tVsZJzJ>7p z9+wcw;N&hT%fJ;Atia#)2w=A&gij!=r)-ZFffdmG`~iHJaok2;aYye zl#-#Zi9FX82*d8xJ>*uNdWTydh!4>APD$hUyl0WL;g7ci`}{T*Ge4ZUAo#`ZFMhtG zEZ8P`C(TaIb}vH7FGE5^^Y`#WnkFh4CBa3|e*9NWGK|yEcs4nm(BVX>497ow=3y{W5>* zxf^PmDw&3XVB$bE2iD9_x>HoU;`D94PRbUE* z;vjPFaLd?JnnVVfU_RUCEg}+#{9C2uP%X(+$Nz$^M34K z;3)tNaK+w*)!+_~=hLA^-u5;s60{fTX~jloIuc(}j{lPG7P*^{(BGy%|ALD7L0-7E zRZh%^=)+T?S_K~Mcp?;Q4Q~DF=7;_@`Ink16q;Zn3Rp3I0dHLN+mG@uE=Oc!k5%6f zaj=mSK9pNGZ4V}f!@HTXjKLVrfeyd^UMe=Ps|%Jf%gJw2PPxmk2657CvgG2UlfM5g zp$EySlA!lhGb}9~1Xo*iZ|>>AZ-?iDfetaGD9O3LI!^*sbNH3EYQql`>#%G)B8@dPI z%yOuQnMdF_LkV>n_ivEq7jS*^Gnr1bcj7N#`H^>+q>5)$nPyFX}4-}HP* zIQ{XTp2u67ocYLnUpkk26M#@cNHwS@=DEw(mkF2?PbJAB8jrI3G=0ue6eEUFHdqz3 zi5Kr!fVg7d5UB%lJpa6y@+vB^6Of41Eq-?yL?B7ONq^-!QCw49Jz2`v@tlJrbCgf=BJvFv!GtxB#?F%p_#$ek>-uD`+ftSssU`bhkD+p-+zM z73MeQg#KFkJo_dT705MBO~cUVAjRh6`ybn&WVn5))1D%02+g;coXF(6V2Ing49E}n zlDI*O$RXpp0SBrjniD^F8#C>Ufd55qh=#&B$N`KwmrNnQM>$N|I!3NzUO`S6AN3>t z9nOFrE>1(!zL`=0N?KUh!wA1cl>m@>A$TC)a1U$qZ6kc}&ZmMHS%97`wu;1Ap>ldv zN*xZ~i3hVc252+A1TeWPKA^}B59INUivgv6<#W@6zp?;kLS#MOz>XpO9}P-kZMXFG z_6Ykxtes2K8@`xd4$Oi7rvsDjbeVpqMAoYYXoadRRt)0LA>WdFPC!xyflqPHc)o=N z4djrnWCP9DFav6rNY8)n^)c6o?G+|i+rAI|{O#r_PvQ^mn>(qEg$t>witJ34==LUX z$Z0VYbv`;c%Ov20XfzB_qO_w~h03x%!>g_}v{~FxB{>{l8)VJ&li)*d^o-EuDsnV} z%Yd|ym>c@8y2aZv7wS3{s`^SJm5D5_GV3^x#t9**-iAkbi#=0*Eq1}3J4~TLtH#N4 z6pzsFLjsF|crK~+RJokf_T=(-?A2_uFIplBdE^-A@``HV(r2c|q}}XbYF*aZ$VZGP z2}~~s?+k&E6R8*L-l>|4na2vIAVYyZY3G@AorX+DK-$ zNCc|E)8jkI?{=pKv;XJ(E=fiTiuj7?XV~uwsQ3ywH(lCnSSxa*X6$Qz@kVL&f7eE^ z=K{0A`bw(p?`N1xkaKh02mLr3AghIAB3C%(v@)QH`j>>kyNjX`FIQDBzO?Q4Z|TdC zF$!o7_doMr`n*(7^pyn*olStB_%AEiof>G z$MpCSpKjL9k;JaW)iekW8O6ay>|)*hoOR0&8-@$p04N6)O`0YHbh=$V;7JD7B|QC zU)YynX;S5+kSaI}pf^)()gO$~WO10pRVkM1oM)*!Z_nb|(T+*Y;tZPUx;d zs9X%8DSaw$p0=mFNv{aLMQ|NO4vEcP4SC(8{v~YYjlLabC!N#_wn1%J*9$U1HGR`B zcn+v~to=ToW@o&?_JAkof{d_eJX1SqzI`B*Q-b6M=!1kYd|<(!)6I5!36nm$rA&I4 zA~9g1h}Ekp-LhYs$C(|~>TeDQcJKKKHr&E1nO>DMI5jX?*BEuRqfxGYOd;!G6(=8G z0-|)&!LicxJD34L#?Na`+DlRd2XVQE4h|~K^ERUhp4(W@LJtNnv#UmTrrtYM7!V`qx-C{AT|{S;j|4S0?Z*+EM_q zVsIaej~WxWB!ZP+bQ@y`Mcq={`XtsDMjpt23|w}oc^j&4(hLYXT2+B^cZn|}s# z9GbXTf)-uoo@!w#8AuU4a%XEQ(Y$K~-X zlL9|NWkX|E$8ki}RlVG5nvQeYK^Z)dVAn<4`=##e1c)SK5_z3BM2&eZC!cd4_KUVJ z?f>ez{_N)HZm`9u@r``8-}P)9Te3An{l)j7+Ho}~{>R@fN#^s%*w3CnnnnM5F`&%A zRvlsePWk|d6d*UP;SzN}L3YFtPnMA?jAD*7q5{Nmbn4(apB=6n81nG)8i9BN1Gvq* z3jWOx6{4%*rlzI?(Sg`)?nk7?|Zp=A341KPD+1c-SOQuQp zs>l<*46C_Oo=3zt+AXW-&e&xeQ}uDL5-G%qVseY^u~2cD^nsL|2tWIsNM-rX|Fh`? zNGeqs$DchXcqtcbe7|$Uuz(e`vv%>FiCp1GJ>W}xNd(x&vT#XCon?n_$+In($#x=B zk)Pg!<)_o#f(lrz&Op{5D!G;tk!e8S2PTWW2aREJ%KXTzrRFP(s40AOUlI9F@3yHi zeMx-E^JO`jY^KV+Evk9}@ed5bBpo^t7|tEfIXP=K8vQ%_i#ocllDzXfq(e?cdbhXK zx75oo>4-3&TvHEJnYXq?+}wO-?tAEkF0$pbaF2=I1J1xak(TS^IyUc+{OqG^sjO0` zBg3OtN50+!PIvDZN<0h|ZoCs_q@sv?u{hLz;E(p~Ozh=Pyhkq|;@-i1bmt|9rq~DX zSH>LrA17$s2GQA-e zJP<{O-37CeLNB6Zxh`9PQ=~KnawQ5?%l!Hub}tyu1kD zF$J?~)G;xU+yMsRVHEoAiIujeO?az{i!7&9lYYN_rh|h6{(+A{MQN!rc0d+1J2w}e z@JC%;ohP{-j{~@Ur(I-ENj0N#x#P^u%s%9AA?RZA9TM3_ocWk5hap^2=Vxc|T#V{s zfEmIkWq=d5WP0%vF4v}oxuaU11oZu3B~mqep?vY_Rt|ljEw5se^)sE_F4VcZ*5w zqZNyU%Cqkj1id>K5iu2?bY7sk6)uZ(~or+bM`5EO=4-BuFm!1Y}&rJ z@Ih$n7nvGDM;k7skLu^cUL`j0x?n=S^3xM-jx+YvnJ3Yo`q=HsC+x&)zvz6IZ@nAp z(z7y9QGY-7=9{*2FMqsJ3fq)o`^m`d_5|u)&{{HbphdDFDF|MEvzV>-@Dt!0CiOTR z5M6ltXMq+%YM~NZ-Ldh1nRKItf+q+y5C%kfZpMyOxmeQB)#~geJ5kvzgTtO% zwjaxuZnrYyb5?x2-DafrGTp5AHIqQ?isri8C2mfvfVwNx)69?lP`yu3=)wZII~-=` z@BFPxh>sc}k-)li@f3wZKfXYIj)&}9&gS#^e3`q%N1|{g6k#bzYX`%xPD76Sv0%${ zf1pwJRdvDi>xl95;h`#C0Y)a7l27*l*dx9tg@Nz;V%3W7;m)6BGw{P7>JkK~>`A|T z_%6~Z)|U|Y#raVbh>({Y!|{s2iy@^O*nSdKYU`VSeU_0lGIf2S>~cD|XtWpv4K2*t ziBV1Fny_~#-$!f;QWrs;{T=u(Q$VI*yit!=GWEP;9~SL)x!{GO(*@#icN}R~Q0i^>a;0$8-mQA^*mL)mwHRGOT9Nw}GW0xN!L`BSdMIdSZLV5W zA#~KubG`HRlIiBGC&NL5ZOn%wZdq5olZx6aL^tKY>?*e}p8L6;^&=LdyuKtBZLQtQ zvTq4zw`SdEPUfS`4ELp2SJ4_Cv(JaG63ygyu^)GLhGlU*>>cp4v)FZBy=zU$OjJ~) z=TRstuo?jqonYVpA!B%EG?sI##@1yy++gJ11o7bEsD14~MMU2vDf@EkEI-XbZPCnn z&=(IxH)$m5?uFl$<0&V9jdY&ofARpjVxbtw`=3w$uM%Y-1msmL?|SKPns9xEhbG)cRTeedZZJ6UQ2Lu| ziu9`vqnU5FV&6Yy|8S(sQ|YI6nofYdX%$n5i{(1Rpr3o|!` z4sWN{VIf*Y&*`IHa0={jE6!8rYr0qBk!I(s$uCjONUBHZ$=bdqzC*)WY*z7SZL>sqDvh6}S-UjO^NKU{vVxsfH zdUTPDIWkN3%3cP!i)VWsNQt*I8j3eN!K;$Hv}l-D3uW*_u~D;8FZN&k>va6eE>ln_#dcj69-wO0fKEF1qldL|nCnGm6yiS?l z{W^EMvl5+rBh4QE)nvK4*}=obQLCs=W=krwhMlu!W>;#Vy=S)KbQJ%ioF~NeYgCy6 z3-bSlGGfH;fG~Gn{}NPIY6M%oz)-e6=^$U4iuQVlyB7MW!r_7};-yld%|(mO!UQ(n z8CiqA!><<7XJLyyK<}zq~{Cym$L;xWEv)@!r{p z&txf)vKb{Co6YJr+KVIPX*q_hB0Sr-x@I4ESVB*s(XEDW6?(sB(QV%EmM|xsFlee2 zy~G|ak9t%Q_|b-ACgsaCqbZ%;?aq6YxUmDq@ut4K@1^Mr_>vQut8;WcT)_IQP&;cO)#DH|rHsBi_qR(OCLSjAq`MC&wU3@a| zES~S`FL;W<@0InMrX5p-mlz``@BRp;un6#4=Y+5 zo`SSs)_nUbzv8D_;Ez04Lx#OhuZM0Z*FCh4HQAbG^~-R=qhHUyhfp?nIhyT)P$e(f zbq{t_GxIh!GuD-x)wnIoOl`-M8~g zKw2kLM3ViTC+uVxTA`Bsy(P3S&c!$++l1Na(4VQ0a zPj6|4LTzfV-6|A}!XzAmigfM46qmX@I$MGUhov%&I5eVT%}j8-gy9R}NlW-W?TyLtVz&661d$o3&d;HVAuxq}?Q*4OVM=L~{6W}>?u5&SBH%yBrX-Iq@_-w*I$=YZD- zn$b70OXh6@pWp4XEZ#Jl58k?B*x9otQNP|)?ZpdSy7QRr6Gpw0VZ8(%&%eGcEdvgsAGR)IjSfnYMt z@c#CZT_Sc8wlDStM^CLk^sIJkzWo+5qQt;IPrMAIM1Pt#b9`gpkMN4;VS7rTo%r47 z1@p|s;*!_g^fF%sd@3!nbE6j4Jy)3G)y(K~ZI&?PS>H6pH*2FJDmr75O9M^uV9eRA zOB&VOAi(^H(Q#tv?+*w@}!a;tV-T+Kg2Jk_`wy+^XH50^U z6L>5oCak5yCS)~D-$7%p?|(@?b6l&RbMPHMcfVx`BHgl>S?;0Nuwvq?=#}6eF;baw z$|KySht&hceHl@-+jo7o9K)La$?*W1|1|L1Bq2MTYZpVS3piE|M2szupJS&K5@o-? zl^Dj3?yp(;CB`pXt9UAZc!}Tt;j;Q|K3!hmme8_$H9-mwTszjL zyRNhY-`nl%BtdpaBDl`Z&!4JxF@*t+7$CN~#VMw}Cl5Q@3d~verMq1SalHidoY2WOq*m?7_u4QxQ@He60yP2Cl<}ZqMsHD8pOKxqt-3@ zY<$U)cZcN^JOI-nGT2G92yR)}_}s@`SW*JAc5n#Al#~EW3*(cMuS#)LoQid?dSP8| zQ#@9UJZ6bSrgf#n!$k(Am5R;p9_ZEk;%&qcq^x@PpWQ~ZEUfc?k!TJ}32*V`JI5O4 zh5OOZ?1bF819{6>nxCDgq(ZF`?Ub4l$~aMXI@=P%KHiNH+{jy<|M_s@h9+ow6$QzL znnNj3&FV`|mC_HN#p@0>0LdAYPs_g7;|@I)l(ms9%2SFgScIlmYVHDG1Tg~l{1eJR zqFQjg_MCgO;TOy%?=W9n4^|+j@d;_*l##dcLEUOpglU%N#-|Fak*^URGXFqyVE5?v z`qS32%iSwIdK2{uP4Iq16h$9~b>qfOoEqD(yjJALZ&eS7pIKc`@U<4@|8tZ5YX<4q zTQDPT$or26gLD5=+^M0AE0w{@3pYe)asDA*|FH*wO^9ILMZ?D=|M=o7$$Kh>O2=lI z>(Bi6a_Rqf#|bPKz)s{94p#id_1f4m=@RsL3kW$enDE&0&4?LYxK z-7ncqpnrLbKnaG2$pPcg#Du2^kj#V+#bSI)G2>ODfbfy*R~KLoRiGgXgGxFRW4dEU z$%hPYz;N^QZN$H(PB~!6Q2E`TNur2b?*YVOvyy&CC*ZpL$Y3cNmde9;{JOX4~0_HU&n>O#qo9fgN0XHU{_m2e!g+~kxTL_MV zIbS6!E>v!huDg%qnkyH@Sd4Nf73GajVT#Nk?ZHr4w!{KN@X>+E&M{FYqd_i2bA~5l z4NkF?F4M5&)GQFo$|$m3Pmfu$$PyiL^P6^9cY7ki9y+?_G=9;K&U5EA8d3c#lhVS7 zeSu9u7R_5{b5tV+;Z)0(@^^+9^<^1FanD^F)bDcCFtQq8HA$8AboK75^9On~o*R*#0Ggb((v>1Uc@12yO zDWAK<1=n&CkmrlW$H#Lz%??&9ilI;iG_;#!@E9+!zm{B4mpXm>VCEYSEQ=cuJH|K{ zBz_7`E(8eTCjMH(v}2=E7sZOVj>WnK{lSxHBZLo+R^!8h4n&(bubGHs{ zb$X3TYA|c^rSfCXs*&Nv8xb;{I=}CmL;$^jb`Fs2Dvp|>D6h=8n-1Fz##tQQw`~pK zZa2j5+_DN=gqPrjKIVY=PzG~Vq>JsdLl1XVb-Ne0`IAg~w^|2EToxgR6tYU70$;j# z@El{i9Kd5=|Dz{k0<;ny^pa*6>TM3u{SE}2CP&)e5#KMLnzSsKb|01cv@oCWXcz;y zf#?F$99sBSds6f&E&AT}kjqN_x$mWa&&z7sdd~T`$E|yeAtym&vljR3J!VNN({EHj z60>tcj*QP^3>i*_22>b-q`6v$VaEeg7XWNRR5!7=kJ*PC4APZe+Wad(ff*9f$V&yPmRCp!*OtmhYp*Y3|7(Xt84L_!wwNqgvXD z>QOKgYZ)?Hpia3xO5w5wV)hz=%cc>f?hhoQrUewl!Jz))JdOm7s1R5Xi#Yzr#CsIf z9HmUa+ZSU9OtB#!+ug~L;(twyD0Wo9Gm=EopV}=ZoX&4AN0y(+OYHPk4F!%S%O5NAw zpO(Q-gvPf2Od+%j$_#K~M-SRKRP3ET2~v`l4%RY%%29v~Ij!7&x8Mr90%P^!eVOlg z*kEu%%W|I0r{}qU{~VS(RM-0%Oz?`d2m-l}R0{qC+nPl)gyW41>*_G1nba!!#q^o` z1B{nL(@^jbmI2E|G@9S*I^RZ!a*TEy=PXJKdLPX1m$;6N*x=ALzy2>d9kbl)w+mB* zPD?kDrPN%^rMz&pg}4Qiu--LSd;dYthWAp45CMfC>h zK++IcC50yMixIQn7UJ`T$;=Vs<;DBM_xw7wN<6W zOfRgMf=GZxe}PoxDx}a>*5T!>n*do_VPVeO{BK?Ks%ydM-1?;NLGcko{TANTwc-hb z-S=-3mC?4hh-A_x9N{#j4@3NU=CCsoi+$iEv$H5`b^xu;7q46NGFII8WUY_$P4@$~ z#Ux|UE&=C&wBPqtjZ3Oc7|d+yWtI4}eFf$=XiBDk#zh=NRP-6WJt?cjkAdGO+NwTB z=hrU=VZQJpxAMwz3E{E{)Z)QBMPt!;vJ(mRz6Xq=Y5OJT3bo!D?r^|o??Us&B_gfu z+lKO2XZMJoFXmS0%e1N+;i)m5UbIdhoXl?X^NT!QmjQ&N%#Wgt4+)T`s0}!@24gDA zzr#4z(%ZU+K%RcPIx~y$Wc8xrkp_A~)}}+JUl0-O!ix8@X%1U|-9;$j3ZH!!-?W#Z zK~x9eQG`+_@R49-3&TWdc&$5TAX80H;3+2&Q1m|K&CVAky*lLnkffIDZ3o&ML;Q3W>9 z0eu^VVNxDkfd9NrPlH0MP>=&CwtMPG9>vR5K^F4aHtrZH_*So6AwDKZ{!~hxn7VbJyf`}4#;t}@X|g~dmNl5Ik2KNXnO{U0EzJv$-FD~V5qO0~o~nH1QhpBVpEaNu1; z5CG5F^RY>_g}Pd-b093zX}SEmx3htn@|g_KTt*~_IVu1=>qe^5r?QR$ztTf>h%eklm$H8L0?}O!TOzm z=X!z`7|c4zS^0YEYg8qWq${qd_?lRi2op{hH5i7$ zR*C+_v(NXNea`LZo_peAS|L>@nlFA0MjxCX}i#?OsgguZPt&s(x1_F7akB1T)22w7RVXENS zVtxXioF+T9>qMf4=0wVf$U9gVr}izC#+P&!S{y&oJS*Ry>Zqqi$w}~Gemub#`?25) zaC{)B_Y)k+K>*7G~c~Z)5FCk=FDW_#@B*`szFI!S%1?8wpF}0wN zj7u#;SE-;?uc|$$%KFf=F`}XxU9m6@bp2399!WUuiSOVC}Z~9=?~5bI+?foxGvTf zd>AuT(xC?W1)%^tZbqnS>5D$XZGnuxk@U@PP4I>GX2ihcH+>Y$kkw! z!j+v@BJ?#+)ILaXw0Ns__*$jO^B9(4W}_?f8h9)`@k|9S zvs|AmK>onTo`{#;$IKtcp?kgqh;l9|T$JY3OG(BJs(H{Ii*4o{V;ZX3f$pN!Vzmp% zm6o@)EmUWCf~7Y{#Rm*bm6MeXEiEB3_E9fszIerd_j7gK@X$N!ePx6VL>tVXGfPEr zV^>5nVbD_6+}dh9D%%@C4<{PLYNAS}P#Ycr26hw_7WS{E-l>IFh^tg0UD^##}IG*s}<+68~XI?ST)XmE&mXS|=+ze6MiiOU0JsH)oy}q5l4!Zkg-uE97+xkT ztIaZ((pU_uo%LaY>@4!hx$^mA^=#Ltawbjq9uPLBtfhwu$k6PQZO8&=eT@RNFz!@C zHeqbJ@4`(FnojY1hlwdg@wY!w1vCu9X#tD*B?ijJlskmJ@6MdTAGFW%_t5{ zBx9Lr>gV6M*{ZcPm8V86XtB?;VIiqrCiO}0?wD!IX2G=u`A;Cmk?(dQr0G+M*;}AG zPXb=b{X0AT18;g?APB7y)b`z%V4Kc^QVK)*1>d{Uyp7mCV7L-ioS4+0VWeBgqZ3H! z=Nh;3USIJ2tE-E(4_)t`lSMKFF3^21$)l=YIVYK!B)^bJ>l(LJQ$G)bc)I`YK>o)O z3+QZ4!huc2(?$4|pujqtYAYyXdElz?q*p0b0%`S~*h^NWpZNr(%;*mJx)gk#wHGq$ z@WDHlpHboODj(AQ5Hpc|PBjIFCV?}AZ8%h`zt0Rse}gH z&fb=#O;r#NT_K+1*Cd#Gm`Jv@Zm_&bdxv+Y|mF$>8vxW?|-{>`< zEuW#~Kck(FW*JV{2I5BlJ8k}Z7A6BE12tCF5<{U!$-w3v$2j@@0WkjrDY|%(X6)5Y z4jbr1O}D@UYbY)*06B2!fGL@!u!B>(II~2k5!X`fJ)+0!4rz;nd-3~k6h#b>j>D$E z;b0R!j{$Ul)cLQucgMevkJE)xcv;yb)EbxW$>E?=`jpke+->IHW8!PznIpz{Xt#_> zQnkJ1+g9>W`X>gAk*7KZ(P)NnWQ*O49w@AJiI7kk0M5NsiT7jmg%Oh} z^Z%F)cT|=TWu+nEdHhAQ0nh)Ia~`CGV7{+x?-{n_bQG}uXivRPSF z^qh|f_;-CjkQ0cr%(y={iGHp{8Fw4QYd2rAhjMcK`A;)!!1gz5cCqCD%Z|o~%;m=m z>ruMHcxAQCpnZ-WvUp{)4<*6aL|7u*uT3@$HU);yTzu10v!YJt8n&Eb1N|~eS=rLk z!$G=F)6#3C9d7NWjv4rKwxg3&mv&Cid4vrqZH0OGdp8xj^AtC;YiB3z^m|j*TpEaJ3R_Xs!e-W|p02PWQ~3i$G1y4`#s6 zXzgVS8)FD^xji1scHJtL2bhV?hF&ZF)+UWrWw&jvW@TXqzH65Q+|WsixMC2VLe{Gv z&q!4FzK|6FrJ_yhGaC;TOM~n|9p| zmM05ahnt(*D42`;hu%iv2 zWRQjj0)Bd>NSw1p-$i#?=;owHZ?pSdYx;mWGH{CLXgb>38~0^EzLaLY%>LJf2G#Ar z?5tu;yzUV|DQ~*x#th68XM9X5h@A2Q^9g^T$ay0yD&^rt?4L9f*Xp8O$tW^*d7Ep$GFn9s%@?B_eD+4v^*unKJMrv*P4L9 zfWrhA7nhu+rDeD66hvmFn;cIFkitPmBrjrd4Z+}z`peT;0vXqDeKI;1UWtl2Kg;jo zxzrcv0y;S$IxJZipdSDjF?lKqKm#K87ZVA{h-&V>B@(2+oNb|w6kczeG`0>^qKRdn zUGKn}X*kmjhGDHsW|2qtG&e-7+P&s0a=iUK%m#oP4|WLj>izNJCblXhSgX&gW8QAh zaXh@g@8^E)ww4@yORxu%MLhjdP@U>A_SW26oVmHVTd5|G8>>*uu!a4(F9V7HR}+^> zpd^Y0Ks>S@Pgap(`A>8c69WOD)()dH;q(~@D1bP=8>xpV@8V)UZXU!g(hl_lh%P0f zwI{|zfj8tVyJro>Y|mYyU{dStTg@6EZ2MVEX-1KU|9kF9F4;Vkzj(aG9A*F({ zWN+UOq;N=5!pPm{mv2+Jh`+eysb+yffiZ<9aCKI4o zHjBaW&q47qMNEy~UGb~0#^YVyp&6ad4=-K*zuf|{|3y9ZviMg;gT=&@8(83)7#E{5 z|NDo5D(`YYI9zQZ|My^LGL5owpF2p?x*nc@b8V3MA3FH&lP(1@wy1{u{$YT*;Cj9D zkGVi%c*y!JUdpxk0TUyejhR4=HQzs+|R^Zf3&|AF)YC003+R3sRU`w%xA*(aNM}=lO+WDuS$qN;YdZSEs0y`gK27!of670~|fT$jbH+ zlKuEhw&?%Puvm!gJJ_|^>fgAq28?h)tR+qmy&%u{~ zBDT|%!gVI3LPr{@kRLTL7EE{R>6{--|mk0nV zR1lKo*9*H`McGm2m||H7S%vjk+6ZnD+3oWugCE|$QzWlG*PX4m-IaBoFLPRGSYEWvk_cguoh#ZB2Z%HKR+w*5?~8x=IY%82 z=<-2V87cd zGvIgsIrsw~_vq9JrN%RR<2bG)F{JvGBUP0an8Orv8{@}AKep4lxKAa zQ`)0w58{AZhQ^o@*H2=S-G5NPxzVseedcgS#)(uZ&xXv z-44IeAf4k5eQTbh%53au#N$?_c#cXW-!@8w6G~9>!jJC=8=%T`rd}5o8;PSW1u>;T zqT&eT>dT!V*x!R~HTTZ3iVSw&f?fs+zJrv|lJm^K-FoXUbZc%5W`DdabJ`Y_K{(KA z1XgF!s`mjIayBU9w*#%I5>>#xQvEexX81!$2FOwsY|QR&Y0|2=3q1W0{JX0Y4BV`> zPmIhk4C)fv=*l-!=)tvC%f3Sn)Hr95?C>rieIhs4j{H(yUX0}NU6gpbh6YIj8aI6W zNej1S1&M2(%k9l|izzcNW&-omAlk=_tIM@RH27+6EUp?QWaN22Oua#Rt{v&*#TuV_ zhYJ1rNh|IS-TMbLlRgaq{lK4B7NLkJX#M@Lf9RW-JqC(YSq(&gqRF}+1a+AbSBpn$rQ@375G6mGw#sXj|th>ga9^C#_%i5*EiG>drk%PbNL z!Qj6HxcP^UzAqSg>(#M;uT(&ynAtbxu*-wg-C?f|CJdKSAFWi?t2U;!DsMfhKdSO+ zVfr^d7qi0|tT?i)@$!fDJ};A8{%XlNKNF_*(FeVE+D(G+GaxUL#km~g?tWE6$dL^m zS{0Tg!a@qTw6#5*=Wyxb#>RgV45c~qs?mhic`nY5nm{_=+?}344a^p1T^Cn$$MRJ# z`-iU2i?z~X z%)I){!LW3NA|6^Fo_iY$#DNT%LIl@5teY>V-o<7);_3{|&#~AP`KGzt>{5h5oh8DT zo^zu&Nh^#?np}?I$y+NopE>BUHJ1vpevuAUSV&t;>ddCtnf>J%D#g>xT#Zh-8&Pzb zNHBWbn{_P37}=A)JQHwIb$hFWx$m9gBIH)RAb>lBL?SuRrpB1A~pA*l=1rIP^qT7<@I@~gEd!I`~1ow&` z&ssvbdD$1=4ztE>?Iyx`TMeN^WLp{dyLO2PvAlM;q7`&j4%M*f5k%6IQHY+BE%KBV%K0 zn_F5sTz4X%BVJli5K{s=#j93URvulPZD7f&5*~2AGwx6BM@;5b-1OsPb)BLnQ~&~d zW210S^(p_-%P#XeUg6!SIkmO!x@gwkjz+vZJS5_949r`|4qWmohPmmE8#xiqd1aM(^Dt}%zcJEJRNs>Qb43#T#4d2AD^SZ9j98B}O zpr5%pW%E{<`YoNj8ss$t)V6U)(8P*^@J+?C5$JjiBMrYA+!^HI`h2)Luwn_Ak_FJD_L%T|C2p4aY}3j@oE&tbcIZ#Kak7A!DLyiJep}4hzB+Fb z0T= zo~D2H^TaI(9YA;i%<=OJZOf7cHc9k;-d=0h<7pj-ejsUB=hrsA9d+V{d)6zpuDx2S z=xUf9FW6UEZ(5=n*-y&>^jh*g-~3NxoK&xSlOxSx7RHB)zhZSo+`gJNW;s2n?dzuW z1+?D3bcg#|@8G`}15dElg-T)oCG~(?0}+u5idkvHD~Gj|(ir;tQMj5IOg+x*#9W}s z5EnjnyM`YwWqo3JNMwwD_c=igRT0(+Y2gUN>y4d+kRC+*BkBO4s9F~Q46n_j;BKv@ z&~MP9qJhf6(z{4EQWO>+rS+h}2E&v!13ht~GbN5Qy|TXG#6h>U+|m~pm8c7{GiwGf z#ak!ifzzHZ!-m{2ccC6*iy;rxcJcJ+_MHQP(!@jc?1)ume6tPjq4?A!LWi@8zLMp# z4%f*gA|_QYV*6$V#L0iENa;aLDJWS!swhskcU{n@N^iU2O@m*|(|xbt8yC@Ru+mZ# zDodKOS@kaSIxS0;_&BMiuRFvWGNpGJ*r?EAJDlqfdS+G0>FfT-{|X!?fIBUwElPBO z3DCy|4E#K#^cWi297^5Q!?&GdPV;k%9H@uujyj$RqGpR_`5)3aJh8CWj%uo_zdZ(X8}JufsLiH!DEY06&`5swt|Z6_ty=k})jbiPg69GeCR%^h6W z(i<`Uc@RkZuzTz-U;H|g*{Ol57o3(hD%#-jt2F3}JZCfZsbX}1qgx)mclVRJXb|Ez zcI@Ns7na?eXIt9H;8}miV!qNSx)Evbd(iCd?R9PBFFkYnaS!1oShGVIFmw}XJx=(u z&W8FdvM6qCDp0NcE(We=v&?#ofs1_8TiA^le7*OyQW(UCH*|u!bVJ%wj;dlGA<&JX z+xq=#&3AEYHW-E(pJmK?EqSdhy&ME&Owz zZWn``ciifVEGS)zw1j+0s|srs9+J?3j=QcElp?ESL=XoL$aPmIbM^f8HP9`ab5*kq zb~0q^eL46UEK#akZ;F~v3@`S16TG|OltGP7=y(5CQKSOt(BOQZNl>qT;Y9>bp%vGT zE_btsfP17ziW~xh^G*_T@*8jMFB-n>=r73ODjnGmw485TBTM<| zUkaP1?v@L>xUeyZ&0n=R!{2Lg7vIY>{BU`}B)iV#@G21S7wG{CT*&Y%2d{gFbmw@q zTGZhIv909?ZV0E(IZA=i@jSmU(utT+UI2uMy~E`K;BlW|v--u`)vq_Sug(U=;hHM3 zJes{W;g^s~XZ<@2w{d|wh?JGSP$Lk$s_(AEaZBwXks^qq8ynyptdH6jF z$Fda?j~=~gZ%pf7?6Xg!3^hNEsyr3ybfL`s0vF%(L6|$B8&Tt5wtrp{lQ+g-qmDlz z+#xU<$3K@jDMPkD0hcmNO-#u1k=3+pM37D$*q<^v@p;=_0rIi1KT50qAoM4_GcL>A zfUd!*MhD_4@OBmKJ@~Z2?g}UwLR&u)9n%1XnUB=~0n60Xrr}QF?(QiF{7@5Tdgq-Y zsS8B6L3uf_Cn2AOMTr}b+u;HT4n-8W!LF#vndmlLJ{g;3`d}38G(%h7_~nuF>mWKc zI=0VjhuWGZpN(EGzE(tv;nLmd7 z!Iw)6yREmzoTvVNYy3oWlsDO__?IQ(v106}u2%t0cQ~Ediya1zJd7Q}l6#~={O0Ji zT8atyFI?eh1MB+S{;lGW`_ES@UP$p2sgFsK?QOGaIxniU?%DPw1iqKjul0(ukTR=u z$j4gkHp9z<5^qI&m_Ns)lTGNDOd10v9PK2+4%1HB>Rwk*lpAWi%7ZPuu)>p3%6`y` zeoDFfy>;Ey0SiT#sKR!pji6nNAww2U=!!&}kv2}&gApe8@^*>)BqxUkGN*WUrEA1V zmDcFp6#U*tidY$OD@n_mNXq8l*!rG?_KtT@@;iqNSlKH?uKbICMx0XBk!ZbpoT5{u z)`9;(rzV9mzAKC)n*kEM^U2=C=rq+cWT7~@XOgM)++*^zqqRA<;ia1Ge&S&gV6#oX z|JrX3wtYH*WN~=8u?cQeRgR5WX&T5Y&>3v~DBV@F2xsMX;-i_nJCby0_+VEN^mZq? zQ${;#A4-;@Lem6)YORZ%G(qXN^SSq;(f&kc+fC$-H>{~#hF?>3Eix|B?q#kST2sBJ z;ICVE&wUmmb5|`qW~UjBY0aS6UZy4R(kYPG`??%qzifUbgmYh0(!}o--<$HSRNj?I z#lE}J<>?pA^^V>~J{^J%3)-6sSu0Vf>kW6Oc*iRf80)O9cOfQcoP_o-Q2E~C3ukSQ^@~vr5ZQHaN_o1EMshPD_)W{IyL1HpUXr6TY<48%R$hEWaW{G8%PKs;c z-cn!t6oqyRgvf{$;m%BTT6SLKdZ;PtQoVUJ!K|Ap@{P2f?3GJ_()AIyfWR(ccYJ*`Q7n$KRxndyxgXk+JmWnxP|;zQMJ87J-fd(f}AXz$xMC{q|!Cht!%OXef3CUS(Gil6~RKF)wb-dqxQJer`q4Aexx!KD{wd~>UEXOJTvZT zY-w~X`3aid2biHyGzr_nE z1x{>C`P~WrhdThDoWzNhx4xF!v^UaGB#{QHf*pzi43=wi5LeXIo!&HYir1UE@dPtJ z(kS1&<&YH)ebK74kBBFKwCs_zMZ;uY%44>q>A+A3rFC^kbA@eIstap-Q zVTY_3g0f@1y<%YlYPb<%*4tJV{Y{8<2Gk~1@1g6xYECl?|sVD$*y;+$ApEq|C=(o0{gWWW|SLP*8?(3H&0x zQh}QXY&@r;W53kcCJX3G=OUf`6DJQe@Tx(RER!sTM1V2naafMdmk3`0_ZKnj|4E0% z@G(#yKMpJGduqx-&RxWsj*lRtoPnSOIx<{EE|T-aZ<1^x3k!Xy@Eer3Z_N7fR2EX0 zqqiBJ736&lFaSgt#yUnqWb_#s89;`H&-xFKwn%*khdfP*toJTk08B8Zu2*~23)PC; zDS<$!Swazvlp|BSd?IiPW3)ClHa4mjC(-{H^0QH6&r{3IhW zYvBW9Asx9sDP18Q;|-gZPDxGU+5XSB4a!7f+oBl1t`pcZ~skch(=`*V)^l@ zgAKt%g&ZTU-QN!lbxx|%TKC>2i_ROVvXsvzHa3Xgd8 zKYAiWnTmbyg$L5V-zYZnkSX^5Fvla^F_tae_u+X*&zb)H+rKKj#t$GPr#DC=LVu|q zVnrl+=F`A(t^m*f?LWDP`4gzvQ$#rU|5Y5c94RClB!8d(!9o4u4*qH#u3Z0);|7ZV z8bM&4(?L=)+PMFtqEXntmHKbV=m0@^-RD<-1?B8AC`dlrJ`uey<|L>d#s?^2Xn(8J z$JqG8N%gWI0NFngDurd%7jUTGDD6qlU<6{&Af3-mlTbPtY zrDLbSY{TTBeiHZbH zK6<9cO25YTgNr_?l%P!6wi7t$yEzNxNyRy39jM+UxalF_6l{o0%$K_j+D}c3Qe4;& zEPU)boJ4VUeh;}h3zQv={fPh;1Kh{Lj*fsRP+S$XL$D{&D-AeGfk-U!8Xk_>B1c0z zS3I6|ppqecf;;7kqyv^ZOj*Sd05)_l|%^xFVSoM-{)&A9z;qoinBuG-}T zMg({aiTN>v^GHE_UPm0;5&|xt%uMWn)2?cTf`H<0kDeMO;Jo|Kq(`Hw=_fa=P3rO* zpmUDCn^pD)6UazzYe*y7BkRBnf2`#i*WW&mRRYFngx+*llxrI%Q6 z7=Pw2{{5g0oy^V^pvS-0&QbKrrX{k98i*Q}mK_qEBqoOMmw;o6;%KW3;TOjPSYRsM zb1c{BqWK+dkX|5vORdwf@CV*U&Lg$a(#;*d!OsB8^w)0)kM&oohhg+)PBQ@mB_H}5 zKKv^5k-i@kOc(eBDWB&|QQA7JD)<{`bqxc3aO0mFub$?pV-j3pa~<`-)sl6Qkv8hl z|F|PnsGLW?x?oZuN`cs;hgL<*$?Nz7+1TOtki+GWf>0O|>DTHS)(YzU&PnVfBFVmO zaUi@a|L-I4h8j>=|GTe4P>!Idcifo#c|6+#B$Apb+?Z>qfvQT|iEy=ZmHd*_7tCx$ zU;oF8_*W<(fI~z%w;jlK4gAW$Uf&|~0~i$#YkF+1E@`?P{;rKazM~>Xrx_V-UVzf4WCo|b~-S??a^}_x{Rizup8NLA{+lB0Qc{2FAKj%q&3&|&KvRdkK&&q zU%sf6Fl{IGG<M6#OImNtP$LR9#uQ4`vq!(o10_1WoQvcOvLZvnk{ z5cu@`Tq9rSNCnTs`Q86$@9cmVUH!;Z0QftMJiJV*oR&MG;^r&&pY~cZ|sL+avit(-2`)|%l zpCvG%%TPT$lEJ+0qb7IyEkn$pv^&L?tDHHYLB5UYuip1_YurFztU0kZd^O3YN`wpI z6lgsjfaNN$r6xw^Z)Aq^6zqPKC)yMDSPmvy%S*FAxv0Dy6IgkBTFbYw1nkno&Cw!{ zyp*t&IzT?A9H(5WH8&J9dMOtdZf~v}GhXX*+4${Z-16CR&SVZ30SYL8ev{>Q5sF2- zxrzV|sw;qO*m?%2s*EiMp9_=slwr2h1-bNYJN@9(7ZX@BaQSV;z)ij}VR89{Gzz|o zL}i&a_)x^PYcL(PyW*AM9J^#SRR{<%!C_JoS#jm$QTt}=i~iFux9_^>HeW>>?g+Rn zzk#Xh;-&%CMXgc;@RTPUy!|(ADex=fLnt(k^PJvz7C(u9{WWIcA-u#R?3D?0Yvf@Y zAC+23<~NdeP|ia1u7;1C5J(Bk3xAcLQ_GX%ojcuqK#I!U_l)9Zs3%fA(Z+!xG^phm z&;$(PdA66Y5SFtwwZK0bVW_aYQVJ^^>D8Gb+f`G&y-higMk(JA^865)$Yhe zM!l8e%T^$zlfvhy{aCl`b&?e<;n`z>t+t3t7_2`>3+QSFH=z!pps5z}ioBRY9t>ft z{F;_wZqYK%TSshRrZm=835)d({B_#G9OR{3&>Ahv)b4}&kIx;{w=VVpm(nS1VL3z> zm?NojDOl68a4xV3HPZ9A>QJ#ls%_j2<9$4zdRJ zteCd(iuYvNQ*4%8ZVJBUpSUJMnjVq8BA@LjY;NY9TMpF7if`zOw3U^WwbAPK`(sF4 zEqK9adc1vbFvKUy{S^Y~OQock=I~+#`qfMUGs>u!y)$+WR#q`XLn^CsczmCa#J(5u z!BKN0lUZAR%yKF3zzDg;dt!V0gEi$t`E})^>IYilF+= zspkneZZmM%gwlt4#Rl~n2Ti9chwwmMXA;0QAmudybOCk|P##0eWG~e7tx|-=(bswg zhoYfI+(1-6%^e)%DAW$pbiAdYV|fJZ!izRSQ!G^k$-8@_Xd|WB3(-?NDWye6w;_i= zfj;zn2Q1~Io4U9LXsLSM5gce932zb&NXp#|nF0>RwmPb^yRLlt(Ybi_BrAU@`&$?z z9m)17S!?v&F;T@&R)_f2C4aq;BE`-uKgY-c(Jc)ApT(99AEN7(ELBVGwhoead9?ds zMsD$M{KT!=DCo=72cO-hktZ&0&L@d@>Q)&tK!Z`wnZ^p7-YwRG3w?SWUzE$@NU7*Qx$q2HtX`(O|whk3Ji%{ z+YReQg&u1c>huALj-pa%=z!h%-2f2U7&9@*yOh4nmBnqFq?FFbv1;(2O&oKNMy#|8 zL^w|y_?7PA!9jv0MV%tQXJhlDhRFE5zHaSd`JS3Vr;#a#W0|>@n@-7-DN17&*(T?D zt&khz(kPjZ3b%FqirYw6PS+utPt8jjo^OC~im{Qr8n)g6U%c2P>lfy`wuR<{W541a zbB~&}Q#-`wJ@fY51E#4Qa)R$nJt`-cU*S5)=k!yt-V%)M&(&H+Q1pCg z+}JoPZ+P{h_P@=QN^BFfdmo`+Y_$I=`iVys2v%sKR=qiQKUsFTQQ((Gt~g7$e4vu8 zrlSto$dxacqJDrK%hWUMFmAO3+j#}Cwu@!_b>Yo_(M%aTYVzqU)H}D(weYOU0SJKQ zso&rIRhV9P&HR7Z`U;>ZyRhvSB%}pYq(kWxM7ovkM!KbO=@totZeC^}BmDO)Y zH|gu|uTN?7VG%qAU}Ec!EW-DbCt9D~p26MBAemBfE_N;DsruIT3#`_!c8PEILOCsO zJI#ijdORZLd~ij?G=-0e9Nq*aUQ)2QExH5tBXa_)^*?>aMo%Wwz5AW^JCH&-q{63s zX3>Qcov9eAUc)23tmf@zbL9Cx*kx9g8~Wz1kVrjF2uTNlNu$_X&hv9U1!IwrpKFA^B7SX^;mzme>*x*U$S9-BVe<|ic_ZC=*A#|QE_ z+S4ijZt!+_z&V18GA~9{g+TjcRb+gwrg(K*$&lT#*5n;G%J*DdlJ5(4)ppYib>0W6 ze79I4G1rko8bEF}5mpYh5$@urBsZ-c_famv%b|Je)g52!%o7>iu-x@z zjcGEE#y2tglwH=m)4^H$#=-Zux!7pKwFiU6E*V3Yd^==cWWF&EH9H64upvT zU2nSI8Ld@{p#JHb`t-+rQ<`z8@N-9H6Fo830Gy|vliMZq;h^Df6=WjDS=hkp&BgiW z0({gbYRE^iYA3awxRl(aOBq79-bcE+9BXGQV3E9J>||i?STe<0PjOPzjK0g;uo3(< zKKON)$DmYtSxEyS4uFROgQWt(W&)v%6UG|Nqbal(UUuEJF2eb-6V>qQYZAzKB8t~% zh|?~Qg?E(|w35&EKz{hW;}u_m=WL?&%|h_)zEjPAZ&H&Se!gh9CQXm0^!Z^cQ!rfj z#Q-t7PK7BoYG+%>j>*5Otw3^spZyVM1 z@AU7S9k{;)@COKBKHS00Hs%>v%bjG$kx;_XIBM1eSW#?>4BhDIOd|?dMfB;C=NvDJ z#mzMIQ&SAEaMx|0df*$DwOSs#C{psJ%uoWRrx&h1II1oiKB?)Y4t4q>8>IaJOQIU+ z*j)$zvoL$DS#}*PmuyM;s#x~)HQQob6zl2BCn4LOy2OGb_gaWIUjb^6*RPfiDX%@G ztwc@(1X@g4@=hnPVw@)OFpY9{NQ=|t!b#>FQeG%5++;GNI31n-Ji$n5;cwm~Uw6;; zU@o#5>o+U(-k3@EINC6=*W0-tv~9k486ey>o95bQ32aKqZv;za`?GbQe!0kOE1wi_ z>(08@Y(>SvbXMp$M_n#_`OyvcIMwY0FW2q}&Alks>d-*K*+M{?p$E3cus+k@9rW(m zkU&OC)%85*19cqPpw@^jadfYRFhHCT;Z`ZzI+9lW zPn3V3{xPD7G3+(z_U5bWhf z5}?x;H~dg|@kghx4?tVAjO(8tU6=qwWG_iSVEikHeug?%H+$ilvSlJ*TRF~rWfUf8 z_fxB$=)G{8=z19?aW{ZCm_69Aa)_HWbmxCcfe*xNs_IWNxb!C;RZ+JTSxlx_eIc53 zK;bY`lPEf>d!fCyxw*9&FVN}~x9#@5aN+IJ?VM9Gnb&EVO1JyQ+awb=1j3sDiZxeG zrhPZ;OGH6NNM;>Qd*$q9jB*l^o8Dy^`~S`|-jBlI1GGGF8dDhFb+6-LfH3fNxKGy< z1WxZi9kvLpjE>V40?5T<_XNGeELtkZTb5(l6B^t9ySVzm%$(xzBgA>kC3&a8I-qgy ziQ;9E!Ml7E&sk%H(Wl93Y4=+&`fOqNBgK!S4qcxg1@IpatoDJ;yTexBU>ns~k26_0 zP$p55QK6GLwo?@Y4HpbCUR?7Tvhx8I%dF!gMu4l($(S1PRdP}iT6rlYx{pxQE>A~p7w~=wYNoF8?*TGoYKJxwO1gGa=jxUIc%2NvPuX*uw8Y}^~!LL!+v^d z6qFe8e1N$C(k9%+hO)`&9Q4yw(-y!#=NH-hn6g$F&9zC7l+~0eTh1@=>Vdpx)NV|= zP0Pq4{ZKM1(A$J#t^j*tC6F-bl(xh*ft3Am@nmrlI%7$Z;OLg0;ys*iHsC8KWjpa- z&>1HHQ<~8#r)?yROq_JM#yrCNRY7y|03g2qD)AN zoQbjlm;ZWPiTknG1tD_#jaAEW>(uo7f1&RGX$y?TfY%hTE=a`x^K=g>{9jQq+_O%z zg#`cGKmR=rc<;a^Y9$2x<(`ZB;(r3v<2qY>?tHWozWStZetGo%y8_?`vY<}>zmV9o zB{?cpRXUZLCrYBFtNnlQtwofX!3G0alWU1EGKOL@&^Aa}M~4xXz&`k(%fza1`5U3q zLzdQfk`cfADcm-in))XvCx!Wa4eM!J{X1zSIw~sE%vxpg|BGxON&-v?M&Iv8{q6CL zi2N4-;RCCnEE7|(@X%gN#U4b)2rwBDg~DLD)zxEKEKjgK0WGg1)09~T7HAXq)7W=o zLckv>%Kyl?ed%iAJn>gTT}5Px+5XHUfnvauFfuSCz@|lf*2yZM0G4;9EES!vAXyip zS0lEX!0{amp!>Ivbwj#=$oH2G)YrgR?;SBGGR1{+`dUX(W8<6szQ;z9wSDT6`sGXC z6x>#=TMDp}#*a5gU5=wz%P2n>UXLD3WrgK&e2f!&0NR+<*G_zrQ^{$z{=A|_%yFbd zzVWyQ@KsYP)243ItN73Y$TA-3WVY5H@04g!DNg}7?bcqWnHA^lo#Y)$vZ)QQB1%M6 z3ISriP|@7}X9`2m?mmALqsqwqT!aHp$YvvY2Z?}3>I@(nnmL!z2}KS6FTMEldFRHd zU7BpW$y3X!E)B_a8|L%@*t7i6yAb8tK>4p#Bl1-TGU2}j-VkBH#_3J`u}^<{4wls$ zw(Bb(UYKk|-z;O&jBuoeLRZLj*c?3Uu^~vE&I+*h?K=Mg-94a&fTXLQ zzsJ1;{e}XK0Bez%Jb>(@Dy%OVJNZ!0SuCgoq*V^`uyeFin0#QxcHRK32k;m1#tGA6 ztv9&qXQ*J@6bYc9^W7En-wXh07bDTMw>IDaARnx(*7emZz;-5leVOQ7`WekHXZLJp zKsD2GpD7vJJ_C@lCFC0hRbV_#wrw<0<0X3;vD;zuy>~PRYm*HQ7)*J-NG$YTlGn7> z??`>R2ZCU_kmGUD=>uj?uE1>#;5lSinooS*{s{5hhC*K_l(voFfu0CiSK8E0*W8@c7{g|Llq}mND%6)Pq z+|9k{jWcD2XHTYM6(T1D$TWvcNf_ZXXxz+p61Alk=9d&>C6${)@7T_xHDVs?(6%KX z)fg<_Si8+ql~u!BT&)5&s_tOR)kd5MOHKDsltr$FJGmQH9N_dW|8Kx?_i>3v6W*8A zOWS@6&Q%D1t@xqqPC(^>@d-JfQx#q6kOH)n+)trT0YluohW{omsG5E&>KSj$Yq ze-&g;o+4w&NVj=DVzSWYunm(pt^MCM?e1sgV*uf1y0<|bT*{=A+Tuv_BX*|v|VzE^wp|dML20VxL;@7mI0prZg@pEYufH#tSIXX3FQAO{BY(h43kW>IA#zMjsWY|hkp zrGxAut!LhqkneOj9!f6X8?a9ORq>((isOG!(Mwt$|W})4(M=K#LHaHPF#XOnb39MJrM%OY^jN z4uDZvYsKmS@oHS@Ue&m%kI>Mrn-#?N)2%AA|U==o|Ve)o23QJq6znD?kyL^Tv>MD%gCA3DfK>N9@5Evq5}Bp9j^?QJnt(p|tI+Jlojma*dnNUkrysrxxsRC>iH5h|anT;}@${Do zB$sJ+Y(S-Ec<} z`}6gvxNf!tHnS9aY((5@K@ZsP#7uKCzSV(DvS?;LUimC!%f0i%wF&3H89m#={so{I z;aXpbpsY{a0eZv3rok0>^ zMG7v2s<&9*oVfmSrJ%l_;Ro1*i7Fy{8kODHDC>4tgdZnm%Blx)0ZP9mKi)TG= zS5+e)oOQ|8c62_ctC4?mB653F>ZGV~y*0)cswEBo9GYvnWy+c5xqHf#dYx~`KwCv5 zvv``Hd-U~kyzaGFp|C^g!$HAe=yE2y1GqBRQf3nDR}q0T{!;cQ7oObSk&-qi9L65i z@pS-Q@ACoO~FH&zlWG%!N z8xkO_>7wr0N@lmvwKjgNzshOSX?b=h#IO$q(bUuWPW)RH-}^kv9y z(LenDnwxVU@lp&==jwr{;nXuPhpT$^biZ6s-h_aKL%|OB_*1vg@0Z;zMRnV=>U*<4 zd-s>`sd^oF!IymMv^zP~o8hIETZY06CtBX>7IXXha#|3r^5|E#jHeCA)ruCUBYYEQD{2^5Rd(+^%_bMYX`0;ng z&6)aN5Uc3>su#*7bjt`tMQu+Iy7``)LsUT9b)o!u(^l>#Wvf}2!1W{U?@<>pVHVbO zoovs3wy#0b1#O3>7(YyhRW{Xy94&80OAp+!7af;Q9lGjlG~1ZhrZk?{5Ha^`m)_Fd z^QwgnwQ8{tZ)~`)Qiu&2@VeqNDYh}}&IJNC{%o!u-e24~o* z7ytzTY^#QM6p2{B-wX!L(ANXDO&_bO6vt6X7_mV8o(3~K>%z)fa4xG_vpxE9Bv=#L zkuJh|lHm6$%SY$~#>j)EvG5{eN{;X1Ck+WO$fZN{q1r(7vcx4Yarpca-jc2`%s19J zNy3!1>>xtd)lU!I;_;)V%kI8m)prisZiCBN7XcP^~+>|EMiB>Dh8(BSv#<+#I{_?Dh@s7MLEBy1%PkA|*+1)5FkXk}%qCb(K@mh<# zFcx}n|Guw5qr6#^0mH+XEShye$ZiIrW-X4w3>tex3hw7a?S1Q`$oYu};34#4!n+1R zffw%&*QLl`lpZB&qbt~^OKUdjA5_ZKu@g=k0I8>(2qNbB%NJz0x;w1Sv-f@kAov4n z$-hUHsXf6f9#NJ5;(29v`KnU9Rbd2%u1PoPSov9BsSn!R0(}M0E-g*G;zCM{)M_h9 zC@5STt91^XcN>2!EB?NhylE?JuZNfM+m~WRy1Qosxm?$78~IRS`)TGC(SDO~ZQ%&Hi}ex*7q{`ye+3B%q=}j77T*E@N z>s3&R3A~40^Q~d?%#)nApuwmuIA+R_g~$BfSr_JnM`l1($_>+6eF3QLbmO5!FAeWmgY-ByMr#`|p!z7s~; zdzHkYWF2~H)xFR{6?~TJwuSCQk1e zxhdGY8n;crzsal*!cIdh0-HPicj86tfJPchsX3Fm-aTKfx16#HYCvW#zd+TzZ!h?D zG4>InC4r4Sxxx^gN8fh>a!|=XHA{a_hJB3#$x`iggF}g=loTtrcHTw?6_)n2>bEnDuMT9j)ez=-2#3j1S4>i>@56N@(8nS$&6!7uDbZI@n~-dAp%Gak|w z*Q0~EAUJK0t!Cz{Tqn^J-WopQ2pwX)-zSG&M&#Kyy5{MgNN@3s;Zp`pyfQz4y}1(M5XI+y>mdjY?G!RI}7VCg?r`}`LSq=I2&jP4Fc22=@hz4%{lEPrb3 zCt#1@bLLEZ^y_<#MBvVK--rP^^)}Wa$QAKFvEP45gS?tRA5Fo`NAWi+%R`ik2??Vx z;E9TlD|2Wl{Y#ZR$zLr*)FYI~ zN>))GHQX4rXqZ!e3`o*w4(eK3Fu-I-jim&zXbds^^8u~heLzlwIIMq{M}~fg5~uh0 zGl-FiiQhuEIRd934H9VW>Qa{mnWDr-6WV!?TYj8@Zj2p(A%N2R1#krckSsB`Z#8N%Q@(!yEdTkgT2h>PP+dX@EYSRuOLueck zbGhfeL*K6>sI&cayi8H(72DzrF^L?e78w`vC!a8vf3 z0N2reLjF`_Tb{45SCaV&YHr&*xIeVL9s{~&nQU$mw60uiq7@>6teVYJCi2G$P(?cD;BK_ zYAJRwjILJYR33q1)`DOh8NQ%OXUh-{%U6_FCm#zt=1kq;cQ7DxECC37V4`3>%Up6s z_x}`ounxKqScEJP?5k8{ZDWzud1SMwcwzKSGZnOqLAitwZ0F@S9|U<(^~;(^Iu8su z&)YHOTX>^1O6=0#YSOvTsBIb10W{#Y8D=oQ@r*%YrR-!`CoZ|OSD-gP>h>sEirE7^ z;^1PnM~GMDY|J)hvp zdQ6`oEkWv=nr2Vh0jC^5&OlU`{CMuu^5p2~N)eXgf91!ra&qQoW&ooJo!n(vk^p4T zSX5NRl027EN=r*S(QjsGm~QG>KmC!d{FpQPk-hZrB@E_T`FVcsvI|oYOYp&&N*RF1 zn~RP+i6D#=6v8caI0^%N|F-YLAIUL1)WO=&{J5V&PnhC^3T*i^3S_E zA^I6J>rm3Ie2f8|_OG2sSVFr^s{Y}(g-KOh0UL{|@A4$&Jg-0D6N@d?&f0?m(DCS| zIL)CC8xTds1V8G3lX5xu02ncqY*#++PkE~RAgbJLCVld;W21UQD5$Rcuhh>-ma3?X zsuRHX;)oSquc9(Cz=$-}ambOJAD6A5uerQU{zReC^Y8)&nNY2>ewrq~94UH@N?`oiw^a zp$Vi;EVE!x!tJ6K{!GW!H@1_=Who0JIe+i~1PB zxOrVpg>pw`RIu5_{1a#<5HxW;@bqgG2II9oSN;|?HK5wib3q-0se+F)a;mG3>s_dY z$`|BjPJjIPu>zC|lluyTT(G!LjLc)K6Jk}Tow0FRx~nes$LFFgA_n>eeBfb&bBJu+ zIN+V1`;*~NLsgZg3&Ec~`=+-6m3^1@F=w2WC+X}7;`qvX_Sz`d?k5xbjB6!l@zIhj zAd%V%*ShAkGOcEdXO3sqf7}cmUs}qzCWx(6j5NWF35nbwC5ir_tSka()M0e?Mn zclRk3T)dVuU=+a%HA1%!YaR*6HhKl`*`X^`=BuWjoSxoHq9AJm1W*Lw{Dy7Icls%y z3S_fw2bTeSYANFF-dCDp>#7WjjDnB{B@@Nhkg^#v#2AKwU_GJ>B;Qu zF0M>)K@^K96tepz45XEa9*UD8!E(BHB|^axza`SZv8+el$iXs!OjU7C{N#s8k*C#1 zYVs$Ck?mE3!p!J+6!N{iWHvxly}dXY&s~vuk79C1{f~-yfQ@3_)m-SjYteh2L3}P@ z1iva&Rmt-_IKhDy9a2wE?cDUa-9#BH%80J&*93f6X!2nbvhMqvJAXx0u`)#M@%1F* z7#BwevB0nsovW6AmYKv~873+x7rH&yzy+~B*3Nd~LBja;%2bN)tK7R(##56LU9MekfcgL^_^HeWP#fgV5J~!$N8AcoW8+Ue8hf>_247VuPltu?Ju4g~JP! zG9}0NF)s*>3H~%~NNpI~yzacaQ-QlLxyd?htfxr-rxv*ZEmY%C;!w+Y9Q?2roSe(l zkrqIRnHB=4_5YOg&9T3*Dkrb911chXQWW`dRV{qL)MSm8!GfP1V~j|$v{BhmrHHK2 zBjkM|-LJOnixF~wRd*e^VE4fS{ggA^-_{H)`@WM?p6TY>x91*maY^cHMO^DJyGXl) zUEc_#B;Y1E-nR(>~Tj@jX6F!hBsCH9u*+gL0XJe8h;Y_ z)U~8j|&K71Gm(XaTAZvF}?WTm1GhyqnPR1hjVqd4?1XzBUk=V{_b2 z(>A0(+Ol35m_I*Shk=!Z6X~qDk&;0dzWV``@>P+5`t^60dUD$ ztxJKn?<9VFgbII64BtBexBDzi#L>kFG;OVJaOqm#C2!u8yUx^;9n~$xQ3bB%Ir-$uutE>ZBhSCMlKUX7nmZGMkf= zpoXrVI6)i}ESiS@o|LJ;ll1W;v>f^Ha#H0MJZ6|ID!Y=rxVhCUsN83G(huK;qFOmm z$=8h<>boUv-!zkT3(&3GUSxlHg#-i5+DqzgV!JUkn**xk2MR?0EE>%C0 z)5yxjIZe@`Xj~K|zeYe77=Lx0?q^3a5bno~Q9St%lp}yHnTkjy9j8g*Ww5hR!fXKJ zsaQh7PDRKa1~M@SLe)PvC~F_fx&Cs8et7KEOs?LeJo``nJ1m1w5HJ$wZ278k+I-`Q z9GpQSTu@V^v2ar6M*FSF&U?qk5bSZZ#`ifxsGG=uf5-U)oy&tB^EVA26zXw1eD%~) zI^4?w%*=fUqxMRaDdqRdIl~_zP!QphElDz|JcR*?-!a#_cUtEiG~b5K&j4-P(DPw9 zlwI>Fh3Sxh$T)A!VOTl`GDG{*&ZiT)u-zN{>1@vfifu$4Su>#p3L%X@3+;dF_L+dh zC@!HlY=*Ot4X1a%x8S2ji};EI0a|cSj+^5YXrqX4jgPJ zlolgTy};aMkl;N@$i?z$`T zY$*6>+okMo?<)6=W9H>;o>AH6X}}d9z|-ud{4nV;yy?*wtx-a;GG|7>oI+Gy84Su8 ztkM;@r*AMRwjsW6k}=8^eH8Ot1~}_ma58i3|1bij^Uw4RIA^0vjyQ6k(Mr^u#Mt^FP=*}OsH&@8^^oPGWNl7D(K&?2z$5KkqA zl(d6O_G>=5H5`H;LGMvq%|XMg8amFo3In7^S%tQL7UM<)Ke7cC2UNg5KJuJ&hYtd+ zR4R}8Nz0zkpyzwnDy$MH6q-|2MQBYfp`j7y?Bdc;DK3Db31oUjct+JB5Y~L&XB(@Q zn;&5?7;Bn=oj@x#AlOmN@A&L>JS+vL7da1EQoB}TuNTEV#_PRUyqTB@ZuZ;GqwGTs zeJs~tvfojq)OT~a8w*xPC%%3uoJH0gZoPWeEge0^mcmTRBjOO}#*^1*_tSGKZ36_4 zqsaI&A-38d4sl0Nl?C`#aDJVy#*NV^39glyO@o!lZ+(<$0Fn(8pFlo%q*=B&zw~tglRKHBrMd^lH~_1MzIq5Kxws-8xJkO|=j(+?RHk ztVqd8`ERp><o$+_$_>B60|tJ==_FX!=5Vh`ZRtVMQ8%NA6 z>iLx{X4YG+3I93Q0EY+XUEuH#8+*_<0vWJxSUDi~ey^C>d7ofEp`F}sn!0pHf5OsZ zDC}Z#hKnkFUM;Vi$mMnwVklP-j=~w)o-OqHu=5`6NKp_yv5HV?P|uiIT2b)BzXw7y zWdD(x1i6E0OXL66QJhrsQ5B|GzbtT-(9Qlb5Wd@Z^=R6eb|HFA6ni0}mQ=VicdsseOoWDLhnbYH$-J7puXXSeo zM+XhgOZQTZJ@8X!H z1xq)t?(q>P=6M-Vz7yp?&)yKSI^L=~`*|D%%^DPMl=+Zxy=+qS#sf7t@wcbv7iZ)a z>#S4>RMQcPPuH&WI1O>OOA~3rR$I<#ENnVyvwyn^929~!(>}CNr?GB)?!4u^_ zUGZf%se^s(X*;SuHv+kPa8~4eNB0Xs;?RihQU2p4JJs4_7QmqkPqpEP31iX-%MPjU zQ=i#7X_ZdwLZ8`1xr`^2?w`Y)DXLFVJMdk;CvsM}1-oFM;_NKal1I*k7S7}zewU-2 zdqFx3+VD@8JGWYwTVKKJed~~~p6ZqOa8TQ5$LUI~<*irRZK$)z2|WfdaqfS;6^nzv z>3d;}@i8>lIg=znIdHeFEWyY;{MA~zNv>L>d*Cqx@kaz!S!^r0ZtnWDRLOOmrM`7n z{-u|q0@D*^2TDsx8qbjfXOn-3EC%&Hk6IqIM0$HB6y;KhSH@lg<~I0+I?fzU^Ycp9 zz~>l0kzA&wT;PQu%^<_{a&-2j=fgk*EqBk&x#E_(_`6m7z4a?SKHa`V`<&?;!i~u8OcfaV)zU%9hj3ZZ}voF zDyqeSVRhwERf5dwH#jHg>^(N+3_Ev1^I**MW$G5K^27KK%GyvxVck>TJwm9Jchy+) z$vkxVQp)POA8$41)>~HHP1EBbsZQEhBNbF3X*S3s%mg|7-{WT@*}l14&Y5|(OZ%Iw z@3#Z@R2$uMW11#p+pflra()KpueR?j0vEWW$uCQ$)I}^RjNNP_p^$;H^e?5Lz6LW$%q{>ocb|-+cA7 z6W5*>vr++vwLy#oY)qiogBg5v@IpQ6@qJu|^}1xTQ;7iuG^;Prv(z-*a*OSwN&spJxSy`4tvR`QFY5C)OZJX}sPDmGki`=O@R?dlOzBIIVCDml%oB$H9 z8#?b;4Y`bF`J|qE+zY?8;36K|1VJa2aO~zr1#5QC^5zTpPZ{ToK}70o%_bh_&&A#N zfS*^|hzW1ezQt#z*-sCz;+zN%4Kh8q2QKE6N=$Ku9E(}bZYVVd=c-tRfEgoe@U46B zN9(*d5kCn1uIe8?3@KV3=Q>TJD!0Q^dXQtp$0#MMh zNim<5m0Z}1mgnPGjlEsQr4Ba$Xrg}?URz5bBxIK9?og<}J5R2Gi_JuPa9ZtVi`O?z(X&0A~VuQEB zr=ZZQs|nrQnwoK@ANVJ)fkhsz^~uuq=W}nI4*#B*Mp^*~xr3htP^|Vd3-y`-k&0=J zdgdemK-z-Huxj8`a1ewS!B6HZ56EqX(|YMQLV`fD$^bJ@xNG;At8W?d6_K!=FV~+1oP}6$zj(1~5dm~9pDj&X9|wPcHo*L^ z>4RRXQTwYSn_6qfCQ-FC6`ECYp-E6uX$v`x1N2#aa!nSl92-rJu<6B)(|sM)gE*8PCdV~{wZmzH_(XD+UIgN&}tNNp!1(lb58u89)Pq^6UpAQfpX zQWgM&ECL%`Qz zW5)a6pnZ4jlAjTNQ3E}@b)MIVfUJP8!OFIs%c0Nhp1))hw>8{$(zLY+=9o|r2Z%r1 z-@j38daU8|T@Crk+%;CTZmrhj{1&8-+&0>64h{mpRw?5UW_G%du&Cz6qh%d}+!9hA z3ZEJiJJ0C-o!=!ZWT^4^v)`^-nss&umoDh||AUoxWgvgrNSmL611QbD(wMv{YxMGhPeuw+ zU0%$pK_?X9+t*!r=&K)fj&clKeDC&q4j}rwjF?^);0>;FARVWOR7sw!RU1^VI!Yc1 z+SEWHjVpu+1=NqTKqE>wCMWKt{69f_&bO?pt+sL83v6_B#plVzs?u?V&p`q3@sW!y zO6krxO0|e_Lmk3gjkE(E{}ANiHAi z0Fq0$d3V)^1Fx;}vw|1RM}E>~5XQq4kfteegR(w2iE2j$77ui}vVO2C)rP|#2L+1E zUdHf@@fBz3mjB+}xHIl#hW#1b`O8pqkZ5SJjE`=88;ysB`uWHft;vJipo-^P>2BTI ziIlMpwh`eF5k@pl6@p$TWHm_*CHVvaIbL@j;X0WzJ>ttlmce(=FP|B`qI${S63q~J z*ELh|V7$^8Ja<%)7FPGG?lHGtdw~ZERHEJ&AlN_0^u7OtxvruSlJpjPrJv@7-nmGw z-=y5(oPZ?^Mk&;j^j;pOi+rJUVqkR<%wG81S;QfHrD>~pFQFT+KxR6&v+m|Fvf!PU z2!nvIN8w0z_cl&JU#@z&(Z@~7+xW24lU^qq%fdxl8?vQ4(u_RwHowVi^r!mLuRCM6 z-8QWZm%dl8r#+{gJr3?ULC-FbQ|wZo3U@rAz;d>5~&Yxr6Q3Qh18e>kOo< z?+spWif4Xq&GQxISf+1f6BBwzn$DDp`_~k%-3(v*=k(y4$#D&vNyT^!`2^q-!10fA zZ_0EfBM#>2Uk(GnTxp5-LT;m?#t#9q{|$b@r-!iFqBz2`a%GCWcWHVwx4mXs5ecPA zWRWMaA~W3;8j1r(GKpjQr_1hnpDkHqX>aFg?s*x+?^p9#e+kN7d6If~De;c4q}^ZF z=O&J`e(w>jz$D32q66OAt7@zq3`JcyioIHkmjI8@Cw0O1`odsjfwW z*W1j~7Q#EU{&TeNXXlQ6us}S6zzMmz55Pcuz({IBz(;cW;ESpbTRP=djNdF#w3H`r z>)X>5J_k83fXE2&;c|jFco}Mn5{iY41Q%i&&HYlG>qi3v`!Fk&06K&o%3nAc~mhy-eAT5GYM2(Fz$22s0EipY;#|H4v-`Rv5 zOP#;rBU1Ddm(giZbc0q~G)ZKCenIDbT%N{#Z1Q zV$L7?kp%7oD~lzzjz6}f@RLtlJZ)}XFDf=ej7hS_RDKIvy}rIKBPre%~E+3|mkNWnIXDyDrws5<<`IUxkOoa(|=FD)2 zr{s*{=duS&YwM(H7HuqTpICf(QkS(4Ae%33O@y5p|u{I5~yOXT`@_C=*J z++9AEjah0FZjbuX`9sZg{fv|F;CARB?re-#io6>8UO?D#3>RvfE%tbz3ZDX>3wtqf z?Ard9u>`4{f{nL>F1&8}8tMhakd_`PSohVa#cyO|o62#2No=}RAIE9+!4g%Vlk?lR z(rZ)ZW4vcrTNb*{*(pil4lEuVXS+*ohpBL}dKTD}~>JEPlG&E9;GKC^J{ywez))KgKM=t?DZ$ zO+xBRIp6A=z!i;?JhC=3$?%jpJ?1*0+7*RirCb0O*hN{WF-c1ibW0j1?O+S(%SJ;( z&#iJ06=Hd1t{jdRi1FpQJOI3y2_Oj$ppKvLlxTidSE33N2&WM1qb3Q5W_AYWzB-W> zbI3SA5kgAVReH98#e~i|GJLo>((ZGg;zf(|GHUp2=W}NXJme8)%)CvAD|@p1NB}v& zKhxL_i;mOb8%O}b$9*esyAk0sm(d|56Xk~Ni?=sFO%s;@`#w>{2WNou3)`UccFgTr zC%G!`$45i6Oo!fO)UpZs?w74%Sg@$!?R(JnDJ%ja ze(sb{qUFLtmHHGI8ui?Zt|XSDQsrHs#f+cw6yXjd6P6ft5jPFN($ z+Os|rZcdJ?Tb@SbNP>rrUC(cBOyp~j9t?!PdE{B{&BL8PI35v&yb^TLC@|;;64=Tj zOuX|xkvgvqGa89FM*~vBFnQ;Oj!t9>k~xF0jGIg?5onX{moWaR(NQjA7Y<5o$mY`N zW}B54oQOHLFqEya7ZJUsc{*gjlC*OAV>dU!Am;k=C+tU8Xl`rkf(kiQ01+@NCzTVt zbn*f31g#}x9yvv9XeFLv0L$0@Ap?WcmN3j_E)OuU4tTYd8+H@IuCNvkC zRSF`V=sGrtEiqwleuvvKz@@#c(@`4sqt%B7_Gkt-XVb+murf@LKQPR77x(lhbRnUZ zf0`n4@#M;a4}QgcU{`iWcW6I&(5`UgKS1G8(xiM-RU?ke6nqDY)A-LLbdF@;`H-^_ z%UE34?Uxzm@aU+qSjv`nqCW2X?WBhhd3mOiORo1&b1#hN6ck0On}7^HI?nn`S8%5U z>oy4dHGh3geh6>NzOfsemas$E4;?_-QWQIS#_R`u#QS5}lm-^3HQm`TxjtP;_Lf-0 z#ou4IfzupycFsL%X4j4Ug}Jp!69zLo?%VQavnw-h%KdH%IRF`ZD zY|Fg=HKz~(W?^ZYi522}-7u|_+;Y-W8PoBZ872X@UHPwe3(X!QLqiWNYs_Ksv8PDu zX1j9@Svot@RZ;K<^KKc3>46BJ=R@$eEg&ri=r2KB@*0OXde1fmkag zOLKEgZVn(&<=bJJ;^qv%+|s3wYfunO!vzp&#F85IYO1S&tX!!NWCP^3lfYqU90<2d z9YMS3v+fQfp7?)sy#-X1f3!8MNJt0@A|S1VFqDI&G)jj84qZ}`(hU*dWTrJMnBs zE0Z2`+rlyflYXU6k10wqY`^T-W$ag|BKOyOq&;@E;@oyV#NNoIc|CLXu6)Dl<4(M* zy8W;pAr6V==}8TLhEb=%@Tli4t~-H(_EZ8itct=``<~u~h?AUyDXl*u$$17Z9ynI5 z>%!`(43b?iC*?D>6Pk($8kvlq@@pyXb-a#j^3#R7k5+LS+E(iPpA&0qhZb0K)7dZK z<^?=&O~-m>R>AiMu53zzXS0(=?e1unmX{@TEY;Cm=WbY;F6zh2-Cx@V< zon#8L3&r-!{m!=&SC;!V>s>3r_k9$Fjx(CL-Mqx_bZb-2%1syR`%VY3n{+3d@>$-x zD*2{nZ|l=F@D$u?irIQ={F;tHQ+1v%Q(iDRk8A0836K#@*Qw`)u*a~d6Y4q{5R?1> z6n(EEba#i1^X1_;F=G30yOn$lTfIYkmz_$d&pi_UQ7wm0T+Wg;3+9M_CYOqFpY2HQ ztoffVeC1@jxmV+HlIFJH@%!xBDr=u55Wbl4-Q!X=X>W+OL@bjhEbj$tPasuij)Ddi zQ||kE2<|MsK36V08yv|ro$iz9SB0toP9^YB>=oY*vt2tc5;WTR;Z^kAV7kQ6zbvMy z@<1{}@kU=ULoe%o6cU=@nzxs;x)bL5FtBn;=XG!y&tiGvMfG%1n*a}iP_NDDzzA4j z^ls6~=en(hfzQH*YmUSFxWccct z=h^ZhB2dvH?9-2TfJU&z^EyILUuyXGkAP^FVxgVY-;sQ>3Ne+srx>eqJC(xcsxB+d zx-KDY2_D&R?*L(_+#T<0+V!^SwibOQkJU}QmW^?|si_`({P~HBuk4kG{JqaYw5q}^ zm&~ev@_jFKXrR|-_mp~|LYb|amIfQW5plEu$t`*_inO_APcHwBGE%)KcNbYp7sPV2 z*%KSrv2=i&RSR@C!wCG`V-wa8KA#d#k^RXVk}}AUH^=DQnc4O7VhFOXKWqTco1`i& z4+RE@!UAdofgYZcE^HsYp+Lu;g?U+NWC0DE7(HXFoitEA<)QKa_)ve3sqH(|NBhy< zS6zOsS!Lhv={IPuzuCK7MS;G@Bx$S9@>sO@xm`RY8~5xfC?7O7*4{rqX0+E&)ZW9B z5DC?-7|>Y!vn`W?-8;IN?t66V73T0jbBPSO?>}%B*#I&3 zpiJiUp9=osGX#s|9`4I`)3&zXh>7mt1o{SLm@eBy%J>6qvrmuq`oE!@9iFwtL+#KmTFQqgL-~lIT2W<2GF@%kJ09yiBK&cRPuE_e%EEKKsfsFX5{mIF^3o0^^tUf*Mk{bVk^d2 zXKB$1Fq%_$aihhC+(-dsHO;9c2G3r!yMPgD@uf$W#Bl3Mmaas0XSPC*Jdpd!W7c%w zP+NWL)@~^CDZ9cl$s1cLHU-V`eb8yOoEGFdhEBF53Y-L$n>^3z`Ue32`BOx9p%YZ? z7`TLmT6yQcw70LeH2}+%9&GNKnNdD%zHRBo5Cyi5s8;(>H6n;tN~rU#p>pE{qanLk zj8>)hRa2fl&LiVAURsLGQ~+3XA8P81-e}*fg9W@#`roVB#1oHa#K*^%+t$?k5LH%J z^A+ITleg@71e<+-rS^l5_;AgyBB_$*}Hp8XmIsDC&HPA-WN(X4TiN4#IVkQ44Ceb}@xv)iXM` z6i@pJ-Uu}`98Jm^o@;hT6%PMW8tSEcDmg7g{GfO9?CVHIxPV<$5 zj=kGG<#w&diC-cHpkirBAYBtBAgNEUq+VuV#cpN5^%6T^|x9M|3T{aHsSLdm^ z9}J|zJbXlCmLC$R+Ly{F7xske2WtjcY3CgWOkdW%4}xn?q;%g=CiBQwJ-64evUN?- zF`HVB4(o7&#hdaA9aOzHHVUU&;}q;UsG}=Nh;+&@Kp*$p!003!`65K#KCV4> zR0s?&c*L?weB@8g^aQnwQ%sak2bM(>JF5HI;smcdS;D2;X-vBdVBWj)_epRmg5ky z?Lav6OCyvzf6|_YRX3^j*{i!>=rfgs?R3Tip7Od6V0h)23akvuGq&)e8a7gP@8?7C zy$4u#Kwbu(EJHS`$!4!(22=No;yI1DYTwR=( z#a`pElT9klMo4EY-_|3VE_GY>(MI*Q^|dlGGWiLQd9;hMYbFi#%mL4v5iqBl+)x~W zwETJf)`G6sXvioR2S?a*2WzNW8c!&>;-IK9jG;zu0YbSSYU)f7#O!_ri)Jcr!42$>T;}aq1f2+V6F*$J?i4LvNYG%;Bvwot-xj{xV zGcl2HAcS#v)p0^!+1B;dX`1Xvv)s$f-5Uv*zBz~b*FN0f1y-O%{YfO>@fO?i@Wo&$ zCLUTfnZ{9ta;7eiohW0hOv97eRA*;z>qW4s0>xL418nJA2y_DrlGp+m-k(RT^!pQQ ztt4#zqyRZO?^oj^azv(A2kv=y(ccVvJ~lbVmOVm2iN$7DkZFXvlEK$3wfDr~M)YgT zH+)a$rXW4h^a$)W4i|LCjY%e_84srqSItKXqrejL*7?^p%UQRx*MN7z0w9=$c3MnU zJ%?M25zY)lcqXlV!J1A-5OUAfOoRt&f5-;8xScF#w^hDw{N*UiO_c`Al8d{is_Wq( zu(F(;5`BZ5`)lPsf@=hr&yr&EmY)Bb`K`VAfjx#@mrY7J02m4BYG`QeWmUYj+pbwH z3~W2@SeXl;j{cs&)8?=mwOZ6T{Vpnc5jgxc>7uRW{$y7)yA*y*-b=--*;K063K)V` zFUndOMOI(vr2g#p z1u@f;7!|&0#x>91vOxGbH@mi7h zK1z-6aj3@&vS^e`xw^WpJy+7vNiGgH=pWO0nUGObT+C4rlx!^zN#uE*Ot(nZHZBf& z4h`*&HqhprEbAO36q~(zRh;n60o?4=*mT3L)Wpifm#SHj10vG9kg&iZaVd^=P5(9F zgs!W9o@;Wxo~WaJ|LCD1)m2^`_NrMl#THnB29l{vuNkemhqX!6JbW5l92;4!<5(t8 zPb=CC9h%sTO8aFc9n136qLr5)d<#^l2gERl(N)%?R)B@1Gy`+Y5JVpo0v-Nk~W- zH)Te-fq?SsioOw`hanP)SMIE)s-Nm35P3oI!!D0*FL5p1k+YYVaEmg{-{Z;vjuQJC zS7BhXW7R%iPx8xbf-{&H`dXu~9jyM)+4~iu>1I^qI~6-f%M=+CrS1^nz=7%S(3`L2 z4J$0WOFqljJEjQUj38gkX zvLDO)#bHE@ACOsF`?wm1(INq^dXz!2*v1t0A_#BXf*l6LlhGXGmX&tF2c(Pa$9A5l zd>jS7$IlAe5oi3doB3-F#g9kLiU(aN)ERdcEA!+@57&i((eO?HS zBG$PxD>M(8p(f*C&)1T_t z+ka#bf9~g-%g@vQtME8w0x8-=`CkrGZ3TpSW%lWMS zaN4}SH(2s>l<7cL2boFYtx(s4F%zT3?xbzY`kfG`I`JYIuo#a_0BQ0`3HnIgJYhN5?G*36;T|2{u;fNmqfGV*Uiw_9}2cSyz> z-@I`bhHXL5)?dGI6R?_T@Yn$cULfGfK=V#FYT1$Wy2{EC`D!I%)b|wfhx65mVr>5F z5SJ$Ri5a6Vw$zAN-FiSu9>u-yb<2SaN?U2$HFLJcJw`x^)IyYMX&PLM1K@CYdCi(Ga@IV>etC?tqqo|mhss;X zO)A;`Mt6^WO*h|S;*tK6daMFw$V)db10HoYm(Mr%ROF()LkwZo)~m@C{K1AW6iGjC zRZVUA5lS+~>xuThV0?Qu{c>PH<4tjogTVlrO2y&d`l)c<=I68Me>y@`@cr}EeizWr zjKAl6O1nrz9NXx#liwbhtW`bUUW>bTdEPIz_|AZzJQ8^G@WK*Ego@}o&>syh2BtmY zyu0}Dj`1ID`@hZD+8Qy)$wJNKr&lM*~FEE@PWrv6A?W(_Bg@mIufTTq2G~Y{IkFM z&!4n#-TPySSE9Ny`mw-T`lJ43q`;GAnBLmdQrtuc} ztS5&lDVg~o-t}5C%~G*9)+a!;4X7`9H5rM2<3&L{fjXvV#U0S(4kRmD8%`}^J+htD%sFG3&!vB91-kc@%2nW~+2Ilyi%7fty z%M>8ZHfnuh{He$n@C?=iRmpu=}jTi^D_YF_1*_%F-*EjOkk5KvSI< zdtYay8AzH?0r0~s5aNJVSJPIn!fsK)e2VQIyVYHC^7;Jn@$roG^cJ?41wBcRd33Pc zTwM)&k_DNd!2C@~Qz_V;fyG5y z=rXpz2>IU%Z%Aa`dt;#SwvSWL>90fdQ5ndPQyh}Vas z$1CoOm&l=C<>K`|v9OYp7_)P_XU%!zBBK90Hl!q|h~pRd7wIgh~NyVMK<4` zfBsW-BMxk)xXc58AGD)pET|aO%JobK7sksu>iM zqoc7mD~-S3eJ_!YZ36_?*b|H??xkIce4MoS^_ z{aWVUt^-LB?jC&rP&hiPe2lkX*FMk9%bSO)sh7O;V^J@qqh%w-W3V{wFavI={gac4 zsnq0Y&mK@Mw&D<#qK3;yinFiGk&RX;{O95z*rHwQ^U@marJ{P+ZthFgCDQIqcNhzm*I|T|@EQR#TVX(z z4AQI?OX{`lKt6eG&=`Yfs82%GMZ0>Np$7j8!&%)*S$7I`ewb6yo}4<+tTX<6H?kg; zpbcV}C0BRZluKj?881y$hbdX42@hWe78z>_n_wdO+F^gXrG`$-5_+59~(alugV8jd=4S*`gF1&^RctNp~scw4C zuXvDYjC>(s6BH99}iOK>9872Rd>l;bWAZ=wn5yS{|^DxQ*#)rXq|e&6Vpa$ z%^5LiK(9_<MJN8VqtmtDT}DLd9rJ_w6rKN=Q}Uv1+41-XWbM=fG%^*U`Na;hDC)(94Vdh zFn)oWM{#Ous_@ehUP)u4?xdB5^?iR`Ma9rOwmqvYnWFM?6$uFmC830JNUJaVLY@8G zfcWUbPYYHirV=aO)02}mX}bJ*W1^b6{!ZW}L;Ez8fgLPnbF|wef$*|!iOfn?GqbbD zfb^~Vzm)Gw7)t>5QlF#!E*ry?2fEtTGrC82;WtV@G>cU4y!3-pU)^tAKTEA&SzoW% z`&OQPUZ(XeHf-o<{J@=E^?-krdQCA$&11#$Cg?0`BZDyD`W#T~VLqB;;A`8i*ENX6=r@V^y0I0E0+4##+#_C~f zp~nM%>hrAtCicRg-xC;PbX-l(MumSL_w1~d^|XSFP%)xoUcdCs(cC<5(x#2lRn^^P z+GVjLCp-D>Ov5^SVxc!peA_br(dW5>!kU#_=gDYR&4rJWRPRBm0OeuF-g1de++2Ij z@y~?)!Xw+UQlnC{q1>YbkHaZOR1$S3hggevF5IVn-xgO2(47RsSFav;QouO6zD~@X zA2?6829qP>Op?L-5fi~2YxiwXWWOVEuu0&5CJ_ejlF#;^d%Pr62(64n*D<-e zacQQ5$Kcg5*sB`z%YpNVt`96|yA05%2i|q`fI8TggPMOYZ!YhI*-qbB+}aHlSYl}s zyi9n_=(FRjFd}2(oc9Ug!n>V%Wv2g}2re6%1q|SSlBcjc9g`gOqu1uU$#;SF~qwj*!#)-u$ID;)4=Ip|Zb5c3>lx9)Gf~-)7gLmGm zS1-K)u%T`pnhX1s6B(6d+N`=^ae>jYQ{{0?{A8Eg&*J3t@@XFIKYdC#t5zH59{-B` zPhJpYc1BEI86kw_% zf~%`H@dE}BpbRs;Wj;1J$w3^v zQPUy50AJ}{!2J97ao_xdN!`u*FiK@z+H3`uyZ${}V-mBG2gfKh>OR+YFO z%>_*1BLM}-+W@s3_m=gI?{*8DLcd;{J!?igZs}=&uv?CY%}%bv>K)9pzlR43ADOOx zSF57C$1b!ThMe^Kkb5Gbe%SbX%J%&Hr1eeYNTo3Q;`w@j;c81`#Bp|Vrt3zsV^H?H zfD3@2Y2nt=drZTI73tg3D;O`$Zn;Jb0`%*HIKyom`YysGcdw18@JVudb^Lk@kgshz z1YsdhN&00sK1SqAPUz(G)?g@uCS>z&S2w46T$$KZX^&&F7R-Uqn3CnDGEB$vqbXl& z^}8qcIHqPU@9tAI*_JZ&=q>y?D!WFc~-2)wc;Fev8nPyqwZ|STWF)E|V@z3i@D*vowLNF9ywoE-L#C z6^(X~yh3Ghu0)!~tjMEI#lhS6woD{n{zAIYiFTPf>EagHhcj z22>Z#X>S8`g%K|Ry#@~t&rszLY^E}fg3bJT@@i{qwO7kb-N2%5vm|OpBSYf*zVNBQ zq292XtG*HnRZ07V%*C^g73OjN_&rtf1k_ zV}P^bu340?Q6W>LfnN{mYAC?e?y#uQlo@~TPbdWtTqH@KHAS-L$+AtHpxZ%v2<77+ z6Rt=wdM!>27;VMfv==AUlhe(}X&Eli%q%F7f2|?QOWPxOIOz-|Mr?d?n0bceRq|kn zK>z|tsP*Leh~xrmOr5Mh=855{GC`;PklP3q{`v&#kaAY%7f$v_?`bRVG9I-h!D0_l zQ4!3cs@hAaKP(s>hmQFa>-4EdQBv^F3*I3Z&GMl&x?2|Q<*+|noBP6~yo;!w=h#NP*w5)*TxS_J5)iZG;Te8*5RZ%RhHc?B--t{h-KmSBs$Tq#KLVabcdQ+)BGE| zR<(wF#zCsU;np>5Ti0}vm*N6lT2)IO*IAotgvleRb3s_ws9X6jzxH*UwP za6OWtQF~yb4F=)<9}GLHW4;;{+xBs#1ida&D^pMq`n^sVLeVMZXTzm+d67xerfSu| zvZo%nZ7ATpVUW3q%ojJe2$~h37FYB!Db26_SR@@}yvY?T*+#*_#_DvtV)Fr$U5e=t zTPJD~f%_Aj-# zi0HNOE#`@=|sI%$qO$NC?}nqIvY8 zsXy1g@7&HieDi%3o=ZmL4^a#Pj1B_BgFPDGlo&Pv5tj}c%7UI`e-BCm&m)&*A314h zX@qa0HVKt+-P#w=h`n|hmguoALcr3RTqVz9A@;VDIKg9?~jpd#CfNpqux6Krx2dD3S*=( z4lT@!X(E5~3})%cA32j%P6vrMZyL`f)!te~)${>v^y z;Kfnf;bnFs-2ANdJJ|!a5%=>*r{oNc*l`Uoas)$cbhbH5rV2ZA1eTpEchJZp_Mp{T zrdIro9i70!Fpgm&yw1|rO3pr5vX%9_oDtHPGZvs-TBWEM`u7UI$#@g{3G!nL7BaC0 zGlzvILF$p`*2gGsZ|{ZAZ!O*Zc^^HZ1L+id`{2eO{{lhuI>Rk%0VwpIudnX`9pP}_ z#1%n|I{UO3ti7r!>pA@^!aUle1ljo*?n)-KIFVOUU31%z@kjNBi$|vzw z%leJF4%PzsdJ&qGZ?zfndlT9qZ-Dtwy~E@h!V#vkKJScjzMI;`MotCiSWQ$2SV)lo zT_*6|BX^(_NL_jA7QedUQwr^rUi)SyfW#RQ6;?By7$_OGslh+k+mkXe$qor&hd>~i zT2n=@V1N=BJmsyPGCIG);k5){d5y8 zAI*MiYV73o7Oz`keUYhv0D2VLe3b)kOF3l|z>XGI+y{v=;(LGC7 zUmSm%o?^ljc4*cF{*pskpW_GLP1QPePC3may=(#AiAHl@{I-uKUN;JUJFW)9*XpyK z&Ut78w`DjOC!pr?H+UvfRas4tJ)Q?;M{pf=z==!*dD>NZqk56bTYQY_-!$KB0&ZEV z-{KE`s`_WVIm;p&e9r4+S@BJ-)3+F~zlH>)@00yiQ2akdrEiI%+Kn3L#FYGG_Z{i6 zIu|>wN}ZBW0{5j}TAP=dNK{F(72~y=N_?IrZuu_*j7f=j+?g(Ltqyr&&~nw#;La<~ z3pny(ssVId%%BFa+wX$vUc74d+EuQdI6Mf}=DW_(6d^is;(u@V??IagnCcsNwTfTf z`nuOY_r0XQG!9@Fh*kXmwts&T41g;8$5L4@-X%=`4^)}UK*XfftzG1O#@S^bf9bLI z?>F%&dJ*L!&zOucFLKT7C~B(zo&FY?T}tZyDADZ4e?QwmRP{{$#}LK)jHMenaf^1e zV1nO?L828F9tAefzO6!SO$jbs@PmjUN6i62)j*c0rdf3mTOs_@C|5Iy>I;5XTG<4R> zb<{qh#j_pQ!&c@5%`8{%o3#qD*UA~%pP#`6r}+A8iaQ~Ki9~>943yl%DRqAp;Jc-i zr)>sqrS%7vOWQJvi!D*q+r>LCS9l=o z6AsmTfl;dGXNJJ`4ROE!ZIEV@C%YhjeTQB}X`#-REQua)1j<6n;>+38?EPQSzFc3`m@qaae|)3O6fPASHh73BPayqZ&J7UpJVrJlo3@@oJKj8J#?^QY|%x|v87Z*Z6SM@4X#E&v{S@>c;6!X-C+J)Z+zCp2lj>m z(yqlb@>T-NNGK$U2V}g5d^{-T6_ALZoVj%@?MaM zg@8=DUPP{MHmh}-hLD`|)5nJ~(i3~Zp+LaA7Y2L&{5ii}KCcHSaDrZAW@Y6n zotn<0*Zz_Pgc@DmOAf%C_+@5SxmFrW8Gd|)>Twfd!Fvc;;M|2w;iofZCj4q|G@TH7 zp8qVSdEmR%pz8pC=t;C=Ucrr$Lx zsj3=fwnJG`PS9dy*C@xnf<-*X+Vv(Le-m*^87W!`boHS0nC!a6@1(tL{YR_;?$ZSx z@6x8&wT;y%bxeZDWvMx!5iaALDs=|W{N+14)p@-IW1d>k zvqrVKtE2>XJR>1{QskthVRE?_Mw%)Uc@&DkQco#lcm8&15^*9Ez%>=d%6`aCI0D1g zpm~iSfE1?FoVCz%ye^?2Q5`P@n`cr5u1}O*PB75ZlFQYzue>;v`JCW6Bs!=banO=s z+17b;@btY|5rEi@nIXIeHYw|E4mZU=r2Z0~hJ%Udoch%s1_cnu8KD=O5xdyUK>@l4-r&+-)NUFqUe`N^j zv@z*?wq7}tyz|5CXIGr<`SD_#5#T(~u{RvOMD<>pl?p|OH1U9ihSQBe0OH{d6@z`u z^-Q333k3@@`RuWk_|TjOiB`@B6e|6SIf{a zQ?`ghSD=Psg+CLIFN#lZEd~ybyHPQGHDKw!9ihN*y!yT+fB?6@98?%(SQHToB>lZt1&Ieb=oFLvbqYId zm$c0YJWIuj+7|Z0qJQBsFv2>BzK>Zh04_<>_AP7bw38$I-B*`!-J6AxgF8#eSBZeM zWyR!8d&iDNpZn#Lm&ji`Ht4#3el;~@xHvtRSB8le&q5B(e1lCNtnD7jfkelmW{?@~9a%}7~{*OfPPGfn*kUQ#X6)Z-{f;#`H) zhpNd-#9QGpxKg)GCcXM0cR3a={U9QeEB2I7?k+o9Ua5$|KZsN5`Ydw&J(8Gdn=9>^ zj8@iDz5Zfw6W%TZR4_1CWg^Ob0fUV{1;c)U0=C++&nS*p7uZ%JFiXdZIQuPkD5n^b zF!~6WTwg!tfx5`eC-kc>6y{fYoFC}%&QFo`aK4Nl_`Mw0lH>I$n~@Fji74=iwk9xF0o`i#TS2!`O%(y#TpWjI~-&mdE&-wCRR?w5SOgh{78WBj?0$AQCnxfNq0~qgR zcVROo(m0QO2_oaH+o|39f@^7JKMweWY|dk76s1DQ$E*2e7H0Muv?Vq3A&(Oel)wqr zLoK(W6y!|4#7+nNMNDesthZGY$_QIYuE6RS3d1@CdE(?`z@p84Z%egXKhkk+g^n|o zm^wV-?R(i4FlycHf$@X$n9iIUHq!jDx)JR9@!$>h<1#U~%Bgc<%9GR{(rXHa^g8p~ zD#c>t-P#qT6cgWhgN6d&57FTUei@1>9Q?k==%Kh3+SO{oKi!IZ)tVhsHdUy}24*bR zKjcGMrvsvv*_V7P-f#Vkt1x@Pd19RC(Oa1u{Hyt#Tp$^LJ$F!D|AmXz{E%VU%H}2k zcU$knq*_|Kpo_j9h~d$52fx;uyplp-VP$qd3Hd=u5}K5hG|b7-yt%#}B^o8E()8_$ z4v3J?@9{U}bnNUrTsmgmdd<2HxO{q^hwZkji%;~~ebP%lV4w_#Y`vn#!CnvX?9jyBrB4@C00RooX?DXEU?%TJ< zp3!bc`tj#V`T4U?$}6tnk;Zb)KBh7-RM|@6{5n*q7ZAE`b0C^>=B|cus;3AQVE>|p z?H~sGL^&yB*O#N`$G6wiB%%`2Yv-84C$6=QWAJdiHcyy@6VfCBK37uh^Z%J|Ul_IQ z)RMqE{dRu_$6-?Bz^`C&uq9g98gu!{W4egMga$!`d0pKdXoVB(NL+7PI0iEagUMT_ z&FaanJ~G^!dj>w+&lT_LSOHn^3ykZqP%Yf~)?xOj#$8P`B``|1b#&ne$CyX&s1Zc> z8Rmf`MuhQzpJR|-ged>Xcf&H<{TG~6wQD}V*y5B-j8<;$yAQw%`lILDO`i(~)$gQM z-%KEc0a;o&80fE_`TmY()6PA7%Vh})?i*?Fae%s`@V4wUcTKp(N6N>J=tE2M>7haz zGf3Z>jise9Nh%jQx&fd@vs>)`?x`qnw$+kG9X^|?S#6ssL{fv&F7*hVf=&u<#sSfs zlWW*)I2A*Y8IVs<2764;$yhD6UDJ;sA(H793y63O451^dEdaIbooOBv4vBVB1w0;yU@PCSUyJ# zr<^?BPJP1Ww7cm$;JEq$@4p!=9j)nD{{SnZt@B^S$#DbQ{d76o(7>eaU3ihjt1f;g zNjkayfTYJx2w>bnh`8aTflkfgxLQ!@zcC2JeJ;b*xEP88+ixe`HtT7%^HhtvTbrvB z*oD_za2E@)ou(XOn&5g~;={a7w+KvjY8+O5?wydj&41Yr@_O;{cn4&?`O1Kn<PB^GQ9bEPv-u&K!U=2!q4JmqAEOLc3kTKH+?Od#WQv2oEYF&4N*$WEEolmQ+_W6~Hf2PFxFT4L zTl)O!vJjj+j#uq?bfc5GdmBXPU(-VeafCcChuRe)yG6;j!=J~TGQ6!E;m%5`;zN_p)X*7LOG&Tjhs3agNmaJa%gnh5m!r z3N1m!N=}(|Ic<8x$dQi-RV~MDz0uC)^34#BJs~kPsN`!F7L)-zl;+%&aB6UBA7w}q zf}ggNP6Yotw%Cq(xLAWQ*(vRad$en1zvvc#r*6b1wzG}hN_Nm(HCv*X;Em^#XC|HTncyOxgn!(p9SUn?5~->$ts`wEwqkEL?(YKNd&mGxjb*C_dUC5VJpSy_!Q~uOpPxDWgtk9 zXAo|`O_)ccXz?qGT(4+u`6WMbz7}`f&e7lvLrYtKUwKS^cZ++FFlH+l+%u@OuNoKU za#kRM=7K#)=a1Zg*V|gy1wI-aS&XuI>geR8`E)DL9gIi8MCb`(nV8BfDnOP5rd(yn z(fo}yqMehuiQz1KqaULdG&uQrwSX|R|8*h@ms>PO9upq^!uX{E?2{_~oKMfNvHJw^ zxa;fJuSNGo%fi3Gg!Zsggx=XS2N1({t9Evckm;Q!b-4uv4k4<_&4{)GkoKbFUv)lj zo@65+)6`Da7Hx$qAu6?rA$fh}d0Mc?gNNq6CsYMW2Do3I6n}{4(L+LZI6XLKoCI61 z-4Af|a{O3Sn0C$Mrs+{3C=!YueLIAX<2s9y7}_Rr7_)G%<3O`mF(;V&ADVc1fEvwZ zS6oPR;-M3wvW6I*AjCVC-$Xl;h@UT4-Di9fKIfuVWcHYMrWm2h?jNUE3tcDRw`?v( zm{jr+aMM=VAMd#g6gJUz$c($s8++n7C8xLic?{>nMnL{3P5ItT ztg1z8Ob)~>4JSiI@fmBUfV08aKJYfdsz$o$9_g%B9awr$`rM|pW`9`I=-0`<`qa@MP))F4= z=>QqjyZd+(wc-2XOC+|*!_rc{tx(#dyk47Xa>Pn#=P#{V&j+<4TU0M6`l3IT@%C~Z zjH4U8qln!mq?q{(7X6P+t!IJ0GUORk4a`QVQkkV=#MwwZQI6!^RoK=U!3hucFNy8g zx0)h?%n4WKD1jFmE1Asam+H4K8n1UBn>q>NAtv3)oMQ73l}Y{m8~1-4{rwd*o@jF^ zBR_h4|3{3E6wx4rR_4ZsOx-IGj=w~+BScdf;v&tX*^~+NEI(S-3zlZU6?C}XG`}^P z8XTl+qjIy568_;kx0D_lExNzvr57vc=D3w!4u}6tTBIYy8vZggIJoegfIt=(Q=qE= zfEA?lpq08WG@s}WR|Pvnk%%FgC3omgZ*vK26wPmR^p()cA)o}_N=Xuj zCNClV;y1&S5(LufvZJxz2uY#kx;*S1giF+H5q3jQrL6mPO8tzQ|8lp4g zJ$D{fH{mPe|Ft)e1Vy2$bryh=kaDKLJBOZdHwn`Ossk$50!2?y>cDgQOu>kCr=M#q zKha+qbTUl|fW$fdpIBxfR76#yU{d~tlzcbyO|llEUTREwDez zWaiftBU%}SALJAiP*$=n#MJK4tLBu{%d88&!fk*@M2%k?F9TYc6ylRRr>QeXbDapT zJI8Q?Ao6egI`SBh{JTLoKObiRuKJ0#cTI=(jkr9{jgtCawX`}R%Sh0;_~z5qo{Uuz zIL@Zw^QAQuDjdqgA#ljRqb@abbJZ}`eWB5j5tFb5k8C?0_B#^)cs^bt+V@x|h74bZ z)J$2inA^;6KVFv_z)Dvst=k)_Axyp;f@!$p(*8 z+cMH^vXCjq{YP8&{DSv{j;>a!zkE49HANXjWfNq-G+yhp`R-_vz%Z)XnGSLbEHcH7 z;~gi4W$Ygu+)<(aI)&!2a!)u!XsHvYlC8FtKo_L~>hJ6OIN>Mh9%5d1FAonEGzRoB zHLRgmD35w)W{QOMC*ea}t)zq0dr$pdzE)*}rJJf6B87G2onXyEqaW9B9E$KOGBHk! zwLET;9R*b=KZKKLP_wAOtXEzp2fN6qG&%e6TbP>%683E$_2G{Y&QngLu@pM``CUH} zviVMCU2t=26ltZ*A`m0^N17$p5I~Bh>Y6R-*37` z&68vWB$3uh_ET-=~?qt3VC%pAD?;CBvv z^unp5w`Yf(ibjjXp$_m)x9Ebf^n`fHC`Q8uA&};Wty1UWek-a*otoS|IKg#de(6$nH3~rgwq)vg? zDr)fqCn~BW6!i(`8LelxL+3}H-uM@(=_T~k{4-Ux_4e{6(kxDGqSZ<+a0^syjK$Vt z+fMQ_AX(Xb5z_tma4m$7F&CBeyq8hJ!{rw~Hy=rk|$@zKwMflGm_STn{ig4wStacSM-=K0Bz(L2Ay#%p2 z*wC=KVybMnm2#AX@BVffQ81OsT%^*SE&;zkE6CtU%X+2vje6tW|Len&;M zQxgBNy8!cEHJF4%0jB+U&LWU&)hho)Y5(gi^bgj?bdEv)(wZfaO=;Kl&?km*mHg8|j24nHjYy1(0FT~RaRbat6 zRciIm!BT2Lk~|T!LCd)2Y^B9yuOWKpYWw4M8sU8V4sB_oE+R(*zxNQ~_Ca8XIVIk^ z#0h!PRr|ijAOk8};cAA;bUPBz#FKK%|UrFGQ zURz%e1`(|o_joMvWifVyY61WajzLMtFe=E)OKM88*Te=iI>>O^JiMP`Mo6=C3stO@ z(0pj6>S>T_L@ zN5B-kWUAP9`9mPF#TTbENFz7~g=`ZYD@|}*n_@J(u11Sp$Ut`QG*-C23GokoSpXby z9}kwjrhePd@sexIBP?HpW`;ocAqw@n;fl0)zQq-`*ZE9hQ=4$f@&UN(lDTaWk`r?j*^!u&qBZq`1G_b+3 z9WlWK_{I+}M`XXBBQktj->*(DMt0;$$%?8$lVz<_N2;qZyjtBj3wpYG7Y3v_QD8Q3 zb>GJw^r&p~;f=BoE*CMZw)Y7oFh*Uk73o5hU$Hm{eHPpG}+ z4qe4gz(c4O!2Hug+8)E(I&jtpf>e9SiMKpn;sVmt633t2R^W7H@p)%t7#XN$*I77s zKVoeD@n0Ck^k$u!+R167j+z(@?Ytfs#d&b8lORgjxU0*UAp0liB4R;@z*fCLxPFBz z1tp0OYcaX#BFJu411%_W+HLbY$cZCbcENmu-7{d{4ejX|MWVy7`gpau5D*4&FH|L^ zd(ymVA)nTJVu(VNtfp!}jXw$%m$ zm$52dbrdWGP^go9E4!PM)TALh?r^Mi?!|3TtkY1T-KP#E4OKAv$9sBk3$3Nabopzp z#(o~uQ{DI<@Jr+Uo^C78vd4t7wtcaqTcO%!b(biP-T`$qM4kil!^+Qjp{*Ckrs*r; zGd6896@@8Uen-YTk1GBhvsY+}KP@=D+5;vgqyzrMUK$@zZ{E`TyYlIqjNW4KOgM?> z0lnq0 z-=`j9XK9V(4kf!Ycr1XN0!PP3KV5}TCpOU=oL%6(bA7{7R{MiY6_L zBg;5X@5|7asrIS3_y;|y)q(@d&4@<@f@f8h0&=G&=zC=8e30v%cVD-Wv7J%cOs{&w zN9E;Kw#IFXqQ^KTb}FH+mj_uxwr$+GWVnra=VJcI2D8g@6LH8(@sk&IZrsPl1}|a zA=!sCyKReSa$0muflovfzems*s#&GrI;>a=@cqgDM|tomp(W$+a4&{BJXXUQIJX?t zr7aVlgc4A%Ndb^q)EDL^uIPQhcl7Riiucv&S7jc*3~By!M&dBOJu$T^Q#lrK%D5uR zS}9X=b7;~WSgkVTlb7IrAG-*?Z4nqu_M{S!c>6X@|M>AEB2+v_-gUp1e+MviM+0gM zqk(oI{p;zGH=RA^053ZY)qdtNTLU z7&LhEieaO~*;Txp=b(98)@b8vKjk;oSncy>Ipd8JljaMi{;ZXpIPr5W&fYK`FD<-t z*vwEta+gMlXP#nTGTkAxylH7oM+r7{STUcHrh+%+zWlierfjL)E8C?#an|o0X{2+J zLO&<$x?QvrBDx5<%Z zfie+^!QECYZvk@E`(zD1P&$7{P4LOOea~zBgB9&9^nIzqCJcyXeMpED(H^^fE1zGN zm`l%V3N}CnZ;E4@RU)u3RU(<@Gn+5l=lLU!0J@FXZvuOqSK4^hu+qYQnpdcWjvnP7 zef}_V*DtgnQpmlgC!u__+oFT}I@gb2t9;__L(j?77jaT!rijiEeC|&blwDAS(f+E5 zQ~d4mu#3c`q{H6tm~;N8m6ATX%&F8t^e!t!;G$WR zsIm~lOgsgshMw;GQ=pCL2;@}_YUG1;DG_Cwp5ZGP-!n7=V;0gtK?8v?#pFr*nrwkF zkpsuuNoi&{r;hPl3QS1=K;BDx+cO7-J*_3#+VkwTa>N&d2DWJ}CxbnI4@H)vZ;o{o zmQrihkMw?BKwhKVUsow|D#BNLf$6xscn~lD=e6s2)o;~|8k-67LUFy6|rX;3tlwimn_P9~}AbqS+$NBQCd880dXLwke zHe94y{`6=gyipoYeP5eI;tIKGBL`Abs1W8h`Pqczr5r2LUf>F)r^8mN+!9l}$`M?j zI!Ha;nljv>^rlt9iF>iOO=tA8%L|+gC+baCpE=vj2{Q8p&X>BX%hR_jcRaJQ&)p11 zi>}@mPkNfsq%E|fOk6@JyZ1_`!O5L@=4(g(ab%fl2JWa_+Hu~e_~uT#PtBU#i}@}; zb9Vc=cu1#S58#8k_UbB5mIUQsV^w^IKgW8GD802~JrHq2XWOOg7ZA>Z7;JO4rrkp3 zH>=?vpL6&l-QgQp09pKwCPSIh;MHO7vCeY`ooke0d@KExV~%`#=ib0L4rub2=Cl3T zJuEGkspjhq%hXfiHX#ZEjKCOwh2q&_S)?@s%0ouY^l?;LE7c6Y9x26^Jx0`{J~&SN|o2hMcg+iIuPpfrvp>W3x}VN#dF;evJl8+g5& zo;{cV1Y+M_;_Vuh_Uv-LLDVf(e%69ms^NCD@4{3}H=}y!$1y<<76NYP+7OykCQB+4 z^LljRcc1i$dOFpeh3+YS#SWCtR5OA37h`cckys z4aYBZ$5qtW{Z{pZN3|>MBoiey3S1|1O{M7N&DNK8v5c5Ux5@FQQ#p?J@Oz^Wtrp1I zYw5=$M|ao<+_RjiFeeNG=xc1oPfAqQO)Uo_ws&HhtYpGpTzl4DiX)U$vdJN`T*sl; zxrc46!Nr93y$SChRTFfWO$r4M93nn!UY~z*UT@n7Cg^6qc)3r-ZIv`BjFNG9IroUm zv^U8Zdg0A8zdZ7p`?}1^mpHFbtLq zA>J1Y%9=meT3^3Iho)~!st?#S$7vbkx0c`&6C_;h9-nj?wNBxMK^3@oc;Y%bI;yQ# z#9V1qYeNAV_Vm3C|piq`3AMO#3P1d-Zjim@d_KnIaMWj~_(rJNGw zvQt^mR0ZG>P(9@`#;0Pwz)jDn)K0@yhEtTv@Q-NRg=dO1`Y{JNmk|ElEhgZUU;sEg z)6J+TEGQV$Y^yCtC$GO` zwq#v&E1go}w2p+GTPwIDt|U1c*J3IVXL%JHT+cx=8;lr)4f_rWCks{fmfI1~I!yO9 zN=4OJa70GxZM?48Jj%f{jN|QY4cJy4z0Sk4)TwM0mN=vi^0U>``4-U@#7yC70zu#T zRiG7d;Gr{t7XI8T{Zd^+=4s@X_nGO16DJ&fYTh)1s2SilOlu zR6HASe8*MY_%&geCK~vG^2h&MsnaSaa{|7bw91V4#wzijCBNZpXelJs5 z?WMtT@^hN+pE946>9u2=?x$UoRk-vgzN*kgp{yW6ZU1B@LB(n%0rUISHr&6z?uxiy zpk5})AHP{`-aJ84aU84jyere*u~11vDo=|B;=ON$JZYyN3cI_2CEL+g=N4l&M(u*& z*ZV2U^sr22D>ccxkW#p29(kRi;)=IDReXFbTGO}miNUTxfXRyu_5<3Ie+eMI1JaO{04y@4V3aoQ&&6%~FLErlD#JI1p{Ep>LZG9@5CC3HilRC5p61$Dk{P|1;6q7YeL^@*{ zEL&HX_=oN5kKyf8_s(kgpOJ5lZ7B8fmRtuaR`m@Qx&E}}<>R|skOln8)?pqsqsmF*rW5=kllbf@_Fa&oifk2{K|WUG4)wkr^J&m znL?f&N;3Itxn!THapwoae~|?-T~w@WcyzYT<$CJ5xI+n>?+BgFE9Kfn>7wa4WLQB@ z?N{!vEh7(!=b$s-%k#Kh`)4+>cYfi$RMM#I0}$c4N$11hz@hPiYk#EGX-1J{+V76JHMt6^7Qtf zB>hm==drSaYO=E+=q2_5PMtPlx%F8;O13DkoU_C@_h?!w---R3Ul~HneBJl>*$G!oS|NdS;iwfM*sqTaTo+^Hd-`FE<+AZaeC1)MR z8#8;~6bq3U^NK0wx#7m-#YJ9CX5N#F_d(o2$8&zAl-kZS#Y4?Y+y$noDKndd&u$tl ziKt2WbfAekq*vv#zF&rY)ICQrj-fkvexZZ(5nak7;;oJo1E%?_urfV)@?E|sT4QzSD^--yVtAz)uc5LAn4 zUcqk{8J5?(!0!&M6TnjNFP^zu@21Naho!n+35xGaXcr%Gc*$3G*5J^#G>J5O=Baly zyf4k}gqnRE*$SxGgKRooK`Tor#ez=Mh?=FEZ9~e|{jYQ8y4o=4m`?jb-Qa9w@bTNk z?hMo|J!H7==InKKCUc2&s6Hgz>-dqq=Dt?zEkOToXZIVh@GYQ=aN3?EtF5UjU`A!U zdDPcT_?C40<#|!&_f~%8g@$773Ujnid4jG1+8v4V=ZlFEi7DPT^x&t(TCRTgdz;ou zn2O`=BJ5KsqNO-7Pxp2v4tx&ynsV(5BulLHR?Xp#4w}>$~jqk`D5%tzSc9W9L%SkeQ!7J@KoQXf9FKp!IJj1 zYLb^L;d#`@LLwOE-hKT)Qy~9Rt&-%vUTa)*S@>1f?`}c(CVKW}EnXe2CIHIUaRI=J!wW>oXd|__O1;3Au zOlq1Zlj@v3c$l<)LcUE9y&SI+f-JJxVgB1;oNFfK%&}a-M8-T zjg3gaG$qCjVBhcw*Lgj=(~ow8n^1h|uR=-`Q#1vdGox5_p65p^y|kp5UDodIknG_N zOU-Q|pzLz~?&RXKMr$N!07KUT@Ynv%6<(^Mz7A@&&+}cVn%&1Vp~ zGmNr%OnXb~03w`dnlHrsCkr4cDP<{$88po{4RDjCq$W#?k4wAh{T~?|MVvJWYlL9~ zk*YjcOEpLcssSzn|149uycR?R$VEUEdz7WQyhXZ{TVl=u^(sM$YZ*43aLh>G0aacC z1NV$W0Ch#rV_Kc4DJNedK$I0TUbi<$iL{41e~TsF8Kl_EhVJopku)M2E<n5nu{5cxm_&d=(Ww?bJ8D)r$8cGw%3Awv}D3HGjik9bhBtJRCS-8KGyZz{& zai3JasI)#i2Mee*;eRw#|32N3mZhz36Ee2#h|yW`2WWMC%EDmuRhIN*=_XTQb`xII~pM78RRbi%c zf&0p`e~cLsuZ12EM||unEcP|2r9x)?nQIQb^*zyfzjo!1Uq5il-+3?h4&d#eN-A0e z^dhcx!!ratLHB87!Dvr4Aa<*72^sbtGqXLBCwTbx?SN6?F7=XxW24x#FoV0VUO~An zv3d;UH%s&LKSlfD0y?|+=5K}(;e$jmdQT(oHE7mTDQIa~d5)7YF=;wKnV}N|=qV~X zP$btBfg=#a^giQIC{2LUgwpX)A%rNZAN%z5h6chW!%iTWe4}_v2Cd3v>I9EGqMTps zQN0J(Nw=gDq@r9n(FQ_qs9Zzx$!5l<-BFhSZgY>42sppNlDL5tVEKKigZ{yTR`pjh z9U%IX$?bjqJLgsgn3lW!%rNJGI#YH2Tio=L9UlmYKz&jygpf0;AuXrds~u1v1oe5L zo0CU(-IqYFT$aw^&S)Z;zuwyTN2n)mGDTQ1iAtf|f>VYM#aZ>*dufBPk|a8bO@{%X zBt!zQqKU1Hkv{%q5>sEZ2NaVej!ezSJab&F4neYUrv#v9gz9^Gb9*%vCvJ3Y&z2N8 ze;91Fl>^GSh%nvCUd`LUCiQy^IJ+*YYqn*=-ZR8L$ z5ab(aw;{~q_oXg81b981OA=|aq!5nocG_i=y_ajt?#D59Jx|D=FimB2*)dZI%b}0$yD3=JxC{sm{3@;i2 zQn?zQm!PyCvsU)TmYjPe7VX!bKzCVlv;7?idEj@pLQO7qk^Uw1LRN_vZX*|2HY^SF zCFOK@W23l55+Q(F~gsYrzQHHET?c!SgLk{ilFk? zc65Bdo-*oBr?#|EKSdUPA z*YAGTXHN~A8kd#7|NG@7*-)xU{BZMQWX+s7DVls4Jb)4z020)-E&zuT;=8(JXElfweV z4T6wof7dbLvu4LD{?(YSJ%;J98Xgz#nQ*`M3b6W zM=#LMG`#C!P5pED=?8ZXaO2)v82BqHDu&eA_81PiF|86~RRigcL5|%Mh7q4jC8tj( zR^N*`+(_o3M778osIQjY8fJ=IYmk3D|swdxTU zqNi(sPW~3Q-haI9R^|j2RQQ;OScvy{3#4HGzDlICU>)SbMWsZAq44hp3@A}CXJ>Ak z1@Sl5XS%GF_QgN;tW*qR?E1b)oQ|(d*A8n%Ak1etdk{XjU3jO-Q@{S8l}i=S z00wYjQdc<;&EL15^Y_CH3vGA4hMW>lgP)MP%!7Z(Dbu>&d!UE*cbSen$d|yCFwtqg zLWfx6=C-JfjE)-fS7u}g0ZQQCk~O6dK!o#KDAkP=FF^-z6am0ou+`U(U+}w;Q?&z$ zH;KW3XYUJ=$W=36Hw+F4)(UVoeuyd?2E1JyF0sw<`H~6f)R@QsSPrKUKk*Bk>nxqQ zXm!=tgz~@$oz5GW5M&7CoN6u+s2Q;s^ie#1JY>aH`)J~q<`Y%k*9EY%~@n_gSuv~c9 zZ;hJIPF=pP7O?Ca<>?mZ(BuItPO`l=g>sLl3mq^M`M2g55Uf5z zMK*fw)iMqQ_HkPtF{trnJ$p3pX_2N35N6e_#A*n4rn#;rQ~)DvaVeRMu!b6foXQ zxxu^q*ENtv;kFPe-xpN(CNm~iyG7NF;Z`4z#WH=5qQlkxzD9`u>je8vyqutC#WgBr z$S&?Mh7W&A(7#PzL<=#N>6*1bP|0WZ9oIt>{`!gA)pj=8J)gSeu->ifzWj5#{H+iF zrkGe>6Cv+x;Vo5KI3Am^_5(;SWtu`?cT1y!|&mP5+s!c5Fm0 z0ucd&?ioH0yWb&^UQr=$+@DB5e`}FMEIk4%nsiARrV$l!PElWv^9BviL1yV+9pWNj z*wduNdHgt=fpyV1Z4q>b@kSB+&&`+hfoXnWG!XpH(^=`NUVcxt$~02bu7jXMp9x9h z%YcHMzRTm>U+x-YxXa~E`>%*mJoUzox2l|*O&{}EL5(%Y)Y7slHAxZVZ((6kjBhFN ze61p!srz&}PJX4JurRm^$F-G-QtK}C)XIH4xx6tm^C_Dk&B>&+vZ2u=&ZHTj_(9I( zkweZt+VC=c7g%TS^m(XeRD!Q%rAM!tad%32JmE?nQ2mn6>A8D)HmU&5yey0pVXGTC z=P3olOJH)i3Bz6_>*dU7NjLrQnWt*Pm7joW5;2}r(q!V}8P26G|E5FBEqsz{L4BU8 zB6$-fZEcFFae)aipp?o=%nchTneL!_sq7-lrp8)*oyz^hLs!0HNBz49lRN6apF21D zbxh(1{G4GnAdQ2T*Y@Z5#Dp0?(Zh?`S#7{49TMICk6SO2O$^|&?N?Qbt&7OySIVWn zvb2`U5fL*@EsP@(h_6-pj|gmqK5-L5i3uX`v`Q`jW=AJ9iXb^8Uqs{ip>qHw?%CN{ zvS(Sm+QL(CULIXVqUSk)(gUI!L!%~>T`hf5n+5Oz$<##28(#6?7y_^Kvi}dep10UR z!WU_DP+tZn21aK6$JEO6K9WUq72+?0vs#yR@oFd>z=2h`Z)1={1iIv~N&cGTWqHsF zdjpMno1D3`>&*HB{HWoC^S3$!qNHHp+_D}j{Pn#^yOp52h*G9y6NhbKe82vZ!R57z z6!1%HEpGv^CfkqIDMHQqw+aJ*gtoz!l|2CoRchi=3w;}h4_bF9x9=fN(j)`wwZ{<4 z6&z^GRle?!Wqn_Drc~!L=LA^O6CTpV1kr7l$Q@Bj;BkaIuvYpZOZGDQzfB59z=z$Z zvYAb06>^SNw6eWC0BJb=h%@@slJ0No+(&eD+B7a8$rCM$egDP9Twbcb!8s7gNHp}B z(hryxmKoC(N%^Q1P`-8FSY8Y(LEYF#6Mj#zDd{;YDNO%v9= z5kh^HurvF~kfhw6NVxT(UzZ-buM%Y8P3Pa8Ao|wL?$>TdDvR|fO7!1?$k*=S2gfdH zv)(#|JkjE-SFjm7lh^3zLi3{fAm$G5^QdE$pDzPuHssxnc1zB}jlmK-I_JB>-*M zEwAJNnK`3bK0xc}F|&I_v*E<@mXH_szgWhjN4_ZU z#UzvnXwlJ)h(iD34OG6u)V9#pVz%s5rF*zNZ;k>tbYF&liElBA)1uu-b}Ipc85SQ5 z9_Z7_QYiT}gw3Se-n_#-$$p9{g-U(CzdzUW*QhgqD&bp(cAZ$yD8vd7^P09GDuM9sCFQ_VD8mCK_ zv^YQiht>F~aZ67gdDhP9fl!r^hF94@o^?8=vk(V8)l8Q&^+QY$<&>wIP#E}PQfV5T zIr(TYk_dGYQtb7kgrz3V9D<4&JxCZ~eHJH$cS(z<+)Z5~@M*6DUh=jV3hapHhLn=e z&PAj^IZab7Wk1vyHNUYKLO$9WHmWeo zHvvo|t1fj5Wv8PSXY7Aj5$sR5D6%9;tOd=4BTd-)Uk}H!g^$jsum2~?Vg{$F^ zmYZ#?gmJ|bfo0cmY(LZ79?8_*smN%yG!Lha4(t^_{+c}!UM)65BeA-va(vLRbPM@j z9g1DaQ_ON&iIig>e2^(&K8 z6Qi#DFfbkB_U+q|`l?0&aS}vcp)Nf@Eef5VPX`7viLRO`6V^NG9U20IY@M7`ZYW?K zAtrj=CiH(U4=T?92Izf|E(f74CCzX`kHe9N)>f?@`4Od#(7&-B0tpn8lX z0GCx@S#i_rZoTsf0qRQ#Vq;_QEYp#|9Z(`amV!J5UH`-eV<__W&D5hH!F-X?2*e^q zsU{M7AY{8P6}YC?Xl@;N(^sRZq?J2A?R1WQHD@j{zQnGbfxl=(S|r;fuNz?hCLl5K zG59KAtVA)Tt}(L3!h|UVId_#v_Xiu|zb%}n z`}t(|qWA%_c5`nwjFwNpP#_0`H$9@HOi_ABnNU86Dh}^w9s>5@}?E(Hf3`TG`!S zwt~oe!9Sh&MoRxrYZm;mrOX}~TNK3j41T-WW9_!6{L94m|BXnB%1~`iht})jbQFDo zcswCZ;_s&G_}g^*>OW<9j#VHhV`ubt4+HKH3;M1i%+**ejK$=P*hqp6-u!%^`ps5P zdnpRM)}TquEdam+r1talDW{9cYN57UVJGu^G5@}Gz`JytZ<6Xsk7?9WFZsXihGdKW z`^jW!&{jv_*xI-`Qo4XL*N^BnmL!Jno`>|bhaHDO6{*WdW|!}nQw4uag+PO$i>kHp zv9DB2+&l!P)%OAjX$C+0C>fwm&S&Xrnv{_An~M-``^806>!_Zt`$+=*7@XF?T}dfM z33h{2QqdIM#$g32m|twf4fZ~!x;zy&i1_kxc_Epl+p$sM=5$?6c{npKH|6qN*AEhn)_ve-sMngO> z+aQrmVyD5(w#HrYt26~>DvYw*Ma}^7>YF8R|82da2r#k9V_@0le%tepGPJdowT#NP zU+D|HF-Cz;Tg#_rXPIu=`V#dSug|ASfczsHcPPVRXSNZjCIJqDCJp=s2v6;>Aww26 zHEFy3YBd*Y;5<%|l<$Bx6Fxn?MJDK>24s!g4AQ9@;eFa!*ciXq5= zQA`}5!enUSBi)bA_xXwKG(I{?_$+hjXBK(MvrZs-Kn+;&IGVeji;3*>>L_E6Sp&z|Xu)5wD^?mre-rMM8)i@Y5CXaf8gGmBx7#RNzyYziP#gd<_R%_$Rr1UXwn=L=_^mhdG487qH_E#Qvq5ZWG(3w28U zlShtQfe|c!FgWo~EoJpmbOju{Dz#_PvIVMtyqbU4_4B)^)X9)5X{|@8M6Nl5XsUmh zoKLhYG+6Ho=zc6}csuTYG)?&f3IA#U%O2*-?w3wSNYdD6oz#88qEYlz2JAuN5q%2B zPoBJuc>ch@jI&}-p5prk zugqbeJ;qDe`aCCDo0@U#8urThVL->q$*}4S3_tXF!pRmg9{WU|K0>w=NsRjP!=I$m z9I15S88CY`Q>>LVB`J#LJpjv^cyoZ(1myVxX+cj{Y*~G9oa30dEVY1a&Zo>%G+0rB zk`J`%b%`u%fBH&w59i`+2(0*P0n*m>=XN!qDyM^>*49=(gum%djn{1hItV@?fD*n@ zCVBVC!jjYARi~WBls@FaCAn%J5_`$NI4qK4EIDKR2AEIB+!r_~&DTAnYI4B%WxJ8H zu{#tRUr-omGT=Sv7zDC2JIrrts;8jlQ@COon0`|Wp>YwM^J}fJl4p4{-)8hQj^~{;C^1bz0C*AUFlFg6ObL&&5WCV`z zm;(MRqlNcLwO^SL!`rQiBk%>nf)bura^23na^=)a^5yX+_hlph&_vA?eWlfY)?Sj0 z7nFV}>JB+GU*#bESueAfs}D}Z_d$g}Pjx^1Xpypu@L-)-}sJGq=U zWHOIaUWwfF;rVssc9>_yN%zC-id<=Vc(sB_AKJ=vwN1FC_t|HxA%UOf=Wg}O6I~QP zNHVYq2*9JYD)B;re9|k$9Ls9SsW(I5`0~0FI zL7W<^Onus7?Gs~e` zWkg|pAh?7Ps`sfOajh?|U7Al}DA_zFz2@}^FbJCQ3r&Y!Y~aD`W-v;IEz#?FcIw0s0^c??9Nv9L%a>X@c$* z`?89X2D7`)2kGKBGfy!o?UISlt8BkFZy#|?IPU0FhrYVouU3$-PxwB;jg7kPwN7|p z8iZYvh%(obPdgB|JZ`XVbKU zr)EF$d2-=;9qFy;deEbv<8qXlbLMd|RRBE#zIJgZD}S)!R`2l`5trrUF6T^OESYQO zOBjz>nm<3gT&yRgW|JdEX_;$%!!qvt`d~`(ocBmk%O-rbN!gfDGZTT(^*kzBOa00} zl@_zol|n1mm#P9=&URaTc8~)XNG-by8kJM7np){m6YLX{Biw|ZUv7chez*aGFQG_>pW z-BchBq+BKu|Iz}C`*`6ACAx#Y7Uw8mq)l{0I{R2iNsaTY(w@#kZza4+gBAR_%SzJ+vvM+Ua*GQv_h@~|m0;st%iysl5niX#>!IfEr$%FENu^^T zah1jsO>T$&n2Mu!Ix5nw*efh0vTMa(HN5OoV8=fm!W8l54lDGKrOQr~r-9B#vuDFL zMk$b~R5#5l=l0`j2cnv`Q%;wj3@C{@bL}-EXz!Tv#LxaQWooG@4_=Y9_sLI?k*TSy zI-YtySt))|eg3G~ae=)*Qs_%;4=}NhqM)!Kt{xyVuJFftC73*u7Tp3bjx^F@5%q78 z5wn*U>=g^ZV2mVz^V>+reiauS#feF0%NXA)ftBZ8>b$SKcL!@NFgbuRBG+d@_8XX` z@Kcu>K!^I z*CpCL4ePrG)Cmhg!BV8wDyPo9Uvw_RQR%Lkn|6h?Fsg{6cV6wBgPoVNQUtt?ttPjd zXLq&wm*tgoFv;!nFP7&@BTGEpV;oNJo%SAHGtz05y_K$8zdP!@qaY0hI`I&iA5qfX zZGmp@3(8%<8Etk|rglH;y z0ZyEG&F%;SwG77e(0Tydhp>5~x@8Ho9t-IxKZg_zoLB522bxYNI^(&zih7J+sZV81 z(k;qy-r>l7i-DY=HR)8RE+tsINWxYw>oVq)JTP<5)#T91Dj;PSSf+w{0oVEYjdstc zlkn-zPKLGV+v6*V>_Cdp!CCY`o)!toxKfjMq~Z_j?-^R19nkffYNzf;z;rA0sW>M7 zvTwc7Jq>X@ptSNk$sSXtWJ?6&;k1GZDyOrd{3RR+x3cO>ae5tCND>PwC`?d`LRp%V z>v1_75o|`6YkOLy7pwFF6A3;?@G=d8WXe$;J1_jJMesw5Lq*Uf1b)GR&mJHR!;xs%HlJWXt@6YU|l#xQA9LUMEzNt8}47^fa9JcxQP; zf+?=bKKE)3!b}>8)UVb*HnQ<3RlmzU1tbnVFjDXqilG`>pZttM`^yc$0&Fe2;5ldAQwo$zw)=yV^U1=yQa#I^rM=E?$8Ea#4D%Omm!TftUwJOL5EF-RzLj@0*L;oR z)&U}`NZP(k>eHx^cM#aIqLc^OhRaL$&snVTu{9!z<{~?a!s7O4uk;vicWup>_lB!9 ztoWm1UKGt9zGzfGKMlq2kr6m70jJd52A2q&AF4=r%hYCO#-Xg#G;o(&C3HxPM*Fywmz_pU}!II9^aUKn2OLAX=Q+#ej+-8k5%Yukkadesthg*t8kl?n zPvIsh(kx#j)F7cs_E^|FIA1;AiBMFkW>75`_XeszW1VTD5kkuGukBpcyui>)Y`Ad^ zU%gOm5PA?j27RA`2HD9rNr-3qeJY*E!Xc#1PsBr-f|~sgdsn>G>=afGk&}x{$8)C* zF(hOI5dk6}_C0GsdHa}E))(!gPgV6o8DBmym&fR0YD2AtPFZsQY#TGWBjzEvOmjS4kA-TLwC^a05+K2$19) zLQN-qGjJLR)FIZrP04aZojx~?z(fN1X%dXP#MsIFdu9KJiKyKr!nx>_>Q|^v)QpV)m@y$ng+FZS5%{x(ulo z3N?&qL$AIL}ezKx&U;1JHyo&fkk`E)%Dp`Z16{l_~ zFLk&ZCecHnKYDBP&SxM7?v$7!jWhm{r&Ao>E)D%wj0uMtFa5x%tV$fGl_zQR=XO7i z_pqNU&$F@iX?H#SA{|AyeOh^?*RqwerH>KBg37f>d`^($UWjc0}}aJ90c z?sbF{jEld)Tv_kX?l@#O-V8sT^n4p}4Pef1C8(5QW0BB|N%?-y#<#s;d;h{xEO4|` zo1F;W8a`6CrDahZqrni8j1O-g(fQsb<>JT@d z@z!?@Vrx@56mJ8Ov~Ca{z`h|w{w;v=r!9t{-EmsA0$+Tpd&AZ^(WX-WxCN1h5+8UE zYSeHXP`p=s+@zf5wk!ctz<1%**h#W*86szJh=4$A`cb6$ zj_&xSM)h4(3Jen*9Ju)`(%cE8{LUb4wt42nvyuGv(Z1-6fuI4Gc)5w~kDr#qBr!Ge z+z~(hQEToC)!p}qHxpW!?jWSWzfyzOxtWqv;05s~5rMi6$lw%%7=zLa$(`CiR5!l( z0H=uP>DFitLeFb+1^?Q!xG6^rXO|LaZ7tEhvN2rxiy#C8%Wn&gcf_I){Dta(+D?+# zw<@vuut;gWj`=$~Aik-5Kn&9KXP%ld%29BO{Rncw0pDFNxznGRm#j-Yw5xWxpl5)8 zy<&WtIO$J>62`&xj`CuEry>sn|3D2fJskb;rYn&X{DciM9;myRnJjnTPP$U_I=&Xj zqKrphn;SIIdj5ecmT_K4c^pCr<4kr4nbaWUDYw}Y@jex-+fE!?Z}cv2wxo@I?{Cke zZvz*ou72YxnlqVqXuz|P44QrBeY)b^%Q@#+Ffziq8T9Gdk47KI$hp^>DxKf+sg(nXZJ3rgJ#SY9}W zSdq<3UX{D~5GhA6O*iKV$=a@7h@#Rl91V96-o0Z|!2e0AC6-9X>pTF;`gQc2cBxgb zroMd?&HHSE6D~42%jkXGG*HCv6t0Z_+&yR#FGF5X(i(2I24xSQwiwww);;GE;qSYv z@y27HKdv5+y+$yPtk9v_ z0SCs*1t~kWVrke4b}JW4kbvE8}ArHP)0yCD*5snq`JMR9|K7oXbQI@24aHAQI8~>=Aqtj zAjNt7<84xuDJF)xqc@%*-s3nYUJWhk3mH%IJUReYMP5m&JR)KR=}bOVSGysmSmP;`pz)Yk{;-SZfAqC>##`^$i0R? zPnlrMIA!UBEvXm7x2<-aQ4R5f0;OKS2iRbS|HA<)S~`Z0YMB6GncDVqLcMHt4j;G) zEX$&sKRGoyz;^v-F5`bn)m}3IdF!F*OOHTuuvc8Ql0NNlx)xv4e43{uB&;=qI@u(V7KIZedZa>t`a$)nB0EM(CKq@4Fd4x;269Hop}uZlYcut zzUCKf)fsLLt0$4nZ&q;BxcoxdiPKyJAZlwtOVd8ZPodEY1bBujKJ6Uz%TkpiY~vgq^hf=Z%EpCKW#PQXeOTQ_t#QCSRPQ)--*SK{AI>VwK7Ba-OiX zbK9yLIN7nZ=y~k)bFL$42+6%d_`Jr7&xD*hx$)G%KAktZ65Yi+*>L7JH)6e!_y-Ll zx{LPN#(#*ZKZqz5iViSu;OuK+r@g9>`%pl_r6Jwpc2*OeOciVWaP2K3_lcn9=rI(2 zWnMhNjT|?LPt*JT{$2JB`RTtbGk#t~OW-QZPW)C1Dg&{?_f+iAeJc)XcMUVcDE)KfozR%d3 zk0LV3#Eo(_nS69wEZku~pOezEQQ-5pTV$dt>rfUQ+1>;a#q*$gwi^vij_23LCh&mb z|8u-gi|U;|a6#lS9?X)ID|X*i+U}l@0cV;+Ef+X1W(gR_y8Qub?@tiyb3N3Q8!DF} z4jLTH8Y6FWe^`G`0G*9MT<}Og9NSpplOjCc$5>vuqvL zR#Gy0sGvb|Iw7q*e)Jjq$61Di{&JRCb^UdgK_dwW`dq|-%J>k1>NK41HC`1^fba(h z5mHd}OkU_$rQDbZ0*a`wbpySlB><@@Vs#!v`kT_#hp<_-=V=MmjGXHNOq0;p;}qCT zgDUY~Zv7T&_2;UCy9NCu7?@pXXs}FRI-=@8hp01P;{TN`yr6%p6b8G%Z+=O)m^l_h znM~tf$XD}TzOH^B)&Bel$zHhM)c%Lewc&YM1SAck%lu+HrsnSrmSgz*5X35`+K!x}gv!A!|)Bj;x{BA%b$^(mHwM^D_%io8@kA?CvMdFSj zvfKYV^#dqvc`1;6|M+{SZho!{wA@Gy#@N?Hk$(3d(#1cGTF{+wPE`G`<~$QQMwEgY za*M%3+(R7tyqn}@5(U1fHLyT9)O%qDG_cVZXW+L$s zr)7ln(M>2qlO#10I;u?3Sqi2f-sKl|4mpoM9rMe90)Gg-H%tQxSp&|uT#95)$=6E1 zkUW+_@D0$P5=dsDlZ$v|+|QeR3+{QF&U2L`V{h zg#|#!2ooyYNp%SPO<+{s)+lPnJ?K#8SL_a>){U)nku?6v9tHGtlMR*gVn7kYxr7rX zPgdWnu)J;QM_o&qH3bQ*aYCeNUa#Nl0*l69QkZC78*hijA=+xE`m_x(8+I#Vy+@}X zC;)pb5J51x9)76~q!&_z#7K|Gs zZV~b7Z5c6UlviYnfqm$jOb>_sp-x=S5XAx`T#%?VVy=Ci`QGtyBOaC%MN~lRXb0+$ z--va$ELZ9o4%CkV=|tG04WgJY4bg8v8{iLEq-Nk4~Sk{i77O0*+R^5<>PoaPYb!k74c*`+W_8 z5oLu85;#OLH7*hNfab?;jcW>-3rjBVvRb#XQq*>5nl!lR_VhZujdj>gGP-S$HtzcA zRDCXjx~Fy9du@uT0e>T5Z-m+>;=$C3A^%F%c5knx>ZIbGlt<%lRw<(4x*|CfL{d5L z1FaOirQy=>6T$2N1rI4=+KRdxZBgiodm)pEGN6BhIZ;tCWpGk`ku3#@HBA5SpoU0@ z>%Kn(i{1Au%X^W(@Afl{^f)aRf9QVKKl}3c-(XU7d4eJPB=KraKt={-rmyjy^Z_*f zW}EJVKN`7LAL{=IVo85$ri#q(CI3E;yY|8mgAy+DtH-!`Mh`E0jg|<1ANAFT5D5cC z9eU;$Z_;iM;2vWjsRt?F8Eg@hxaBS&`pSilRbcFoYB(ZlBr4x{^42(TO#Wrdgsz8@ zJjG)$ULlIG%6?R@uLw5hB}$%ga7QxCg0Hten?#j$5T(zs(KIW%MM?ex%}z}TRfuTT zV?`920k~ESaUX?2hyZmBv&E8u+MwUF2q-UesR6-(pGH7E*TPPnyF}LDrw#$yy%1%ZMm@-w-6TX{pUugNMKp(@ydkoWWDK{431+%McDg7%glufM&vIk5At?9u= z(8ny4<@)yU1deGc9e8)sO-{eq-k8nFeJvv}ll)o-kaz07Q_6&s2AAXaYD)FrL<5?; z94LkZxMYztp;P5hdzt}$ZjXO!lxT9Mew};Pfszkgy89p@2?4nk6`Wb? zz{JLr*b+hcm(#N-va|qduc`6A#n2>^<2_){qo840ySI&)pDI7HDMmG?d#0#Q++^q9 z={mB`RU&<83r5eJPpSyV<-#i?otLn5sotDmo@m)HJD&pwr<_x26%uoyu_n5X k5 zA5r1S?pvi}u_Q29nVFZz7|ecWjfHqMLjpm&a_=K&Vu}n0F!w@JN#A2!aRDTY+izt< zHsB5U)(3}1=w_4m@BRP-Q~I0g*x1;8zsYPIGhc6l6sQa2F+e!r`EFKDP8bX(0EQgQ zx37c2`U^fMGbC~mo2gURex82tQ)DPm$rPObAyC=)mM^w`IR=|zer#A^gL%il2^3jaSR@tD_Ztm~ZF<56fxuufPDNoo`Q_1(y>6U{ zkor2lO4!rnPRKo94HbVRzAV@7TU%;x49#An2e|?LF4b!FQRP9o+?Gsdmb#Q`Lp#Na zJa5iM4ua$>Er91yvDq0Kcp)JglYYQ}^u4%RUfj=$ zSD)KyY1J8BPQM+;fm(#oPgpl>`s8$jN&d60m#8=!!a+YRz?W7+!4${XGIZf#otgIG zrg~hG$xa+bF!y!r-5sra69KXh|@a#J&1 z^ndC39Vnj-!xu32g%p|Q2jt`sMW(^W_YPig7M&1PM0%CDa%1oC+q^+UM@wJVSaCvh zmkOs45;pl33tYe1Tso~3&EWOqb=r)8cRXEaWkPsh1OM~5jzm0xeeEX%U|CLg>MFcE zs|k-MS$mD%l+X~SR*+z*$F{aJh+7qYXLN+7+0NHL`=gC|g<}-mo+-rY41c%>1X8tN zH*_8Q3SaWLUWgdc%$I6(?L6H>ZO3?^@e0Xoy|aBYH$F54*=0(+?heL&iB<7?H$j*D zK)%0u$=5JCBI<%3iXa@$aCuyYy=!JjF5ybGbP*bk@6xew0gf_oXQpFPm6{v4@bxsI zd>oKy6!+#@Fk|y;J-{0FGMxL`6E1proWe4-w!h$c?!jJ4X>ChQmBLFrWYSIv6Z-cE z_@OAl_LQK{gyC8dA}ZZosMkJ!w%Z*rP_EOAQ@&BLN;yXeX6$6d-?P{mMQz;xCn*MR zS*e}HcnuzkYbVuO)Q@p|wrx7fK1y58fn!$e(5oEUsyV0-oONoTH!LHC)(2&tU{_{+ zQ7UKCFuZpt?hQ|8`F-N*-jHvBV-y#y-lL@h4E5Ie`EReO!^AMc_oJhtd}Qa&;{}ID zMwGu{Q8GvQb#!%!!M5sYC#)L{4BM(cDA%5JmW-|fEsi$@%cFjlSnoVF@$m3oQ%+eF z-pL~l4Et28Zcg$F{rB#>QH_-)m%OGIV&&|z&jcpsVtrjPx9%z=X11rU+aKn;UI2&wg{yk*iPDv$y zFYGcH9Qs6ok5a9upE*W}WQHTi<0SnO>ru}R3X|Pex&2Bx!-xHo45RU`qVdtMe@YX> z1r=TT;4BI6Q;5;f(EQTsA)LCY1SLuRi(fGwC#a#xO<#=<>JY*-2V=AM(N zC0uvGC4i>FOrE#FpgOisgTV&kFeId;+n4A4h+C)@R&{tR`8#KMRMuoXD~s*Ejz{73 zPklyNe3bHeTP1^|T!w+qQo&6lbpYEhWi&q8ow9>6TDHh37#_! zR@4Ea)t3$iY3wYW&tkBSJpxur@3@wY^m}4cJGCrHEfA=T?nY&|vDT$Xai6XgSpu_S zj?JpwZ*Gluj@QyIN-|H@s@|okn{O!Q@xf)$VZ8pF?uGs*TA6qjLjof&PTv^v%|euP z6>2C<>6HR_Ptu2J3in$ripHrurv<)WrrO@EWrv*8%ijfjXyS=4lt1P`05TE3hJEp~ z7vuQAKJ9EUh?lT+*J7`P0n3;BCu4eAObtsf6&cw|P`CPWBN)W6MD~$^$9aoct z;|X7h zb+*&in|p7m7t+f+y2AmCl59^+%$#B-%zt1rb8^B{DB!rJ%QM>=cyiq5?woH`sjnk^ zVdsyw=U%5)%_)yvW4|Vee68%Lxl?dlry2N)D>~gL=O2?`CkbLNI~D_z&4Le<%ImWo zur?5vXP7}@^-hkPi-d;bj%Xff)k;0)yvW9xjl=Nguscd5;100qY4;H0C3|kpFBQ+N z!fOv_9Q%ODSS9m}{z<|0a;=ekZOV})b??w zf}Ev-g}NfvfrDsw25d57;KY?gJ>VPkGgAK_7ziw6v2`?>&KkngHl8iuU3iA4c^Zx| zq6wb4rgwF(X11HjBF;|_m0D*O@1WV))LmQl#N|!5qo1}fME0!YM7aG;Nhntbm~p>! zhe1i0lAWe&TpUYx*4?&A^;5EH&5dpww!EWls{p8NR^GAs=q!P^WQ9B_EFF2 z6qHgF;z>Xw2RGycE4E23x4~zyIl&wA1A|iS z5zdON5t?nhs!qZAE2hT3SAK)f*Ytn+BUL>`GO=>{uvy}!gX(1vQU`X>(owORo1uCn zq;)UoJ&XGf_)8C5|CC2bXf{RgFE#fk7J{+5jvimpuK#Qmo1!kN5*sG*5WLbUkyyz> zA+k%d^9C~7VcN%j=k0U%yx6tyRrH-gh3flB4VB-pm!v)aeE3nmGRE0x38r4Ee72Yd zCv3HVjvVv5XGAE}VIfRm$TNg{C`XNE(`ouNQ#YUG`EzBPwZ#~-gQ@YKe4iqUj(?;? zXwY3mq^*?Y=Jqo_CnF`rDIOkHa>e-0Yp~Q6=V7;U^dc=9C_&qotB$nyYb7hZu(_$m zijVm6-=j=jbKl7Q#?92VxP?tVpWz!?XT>6#$8z9LC7zPzbip#-|8BP&qe|#un5;Oz zklk`G?Tac&0?v3g!etNj{1AAz@X?0=Ndny-fjE|I(d_jo>vwJv%v%B3--7Lcb3vaH zUD#P;p&=0gcgc>weT1c7#eyvQ>u{3^6JCnjJ;=4>MEJKhXDh>fJi~l9bF*iS^I9_1 zH%;`UBeK$&z2^2q>A$c07ON*Ydw9{76$)1Sc;Y+zWZ_V{SPTjj(nZ`Et||zl-x8`b z>naxy4-NA^(<`?$%j-hP0?HO2=EaV0?c6$MXJVRhsYjvk#2quiLJ|Q(ZxZWVW43!m zMWfk=82w(BX*M|;)tnLyTxcBMm6l(;#GVJk#jP|AMouICH>2@ul06a>Lb3b_2E}tF z-IEEaIT0duZ!wWb;5gf^te+5iPBP*%x=$%QeZC6e!Up2;xZl8g`0vF%9B;ffyIrv2 z!5iaOVi4@f&=RGqg?XJh6$XuC3xSMS7Nof_s^MIUE9yaVy2K)2Tj~(aJ&Gjq8^$>K_68|6Nx1oAwfdokC$MU;=1PZvVZLHOe7Q2U7t0JFOFiGV1M#4GeSz? z2ojNw4=lyP7I&K|piyE92?-H?ZEdKpum32aTcl0<<27D3Xc>`N$jbWqKIw4Vf@RRb z9u`v!Wa2m>I-0p_156EWbD9MD-dr9Ki0C9$3FF$*RfvD>fjR!X4S(;M8i|lf^Ai%a zIP(n8NSC?#wv=;oy@jvsFPl=TDYGowZz@KPekdfyhikL)@R-EX4#F2cXE(&a42*P? zbK8nri>nL6=+Dcz;SoMOW40|F={4GrdD?KllP@jl7hyRj-iMGHMxk+29j}9%WOy{+ zq>DUi(r5ZKeyVrgblI5+!CcPz%9yK?L`E`X=gpU&X49ET5P^J_11q}IWp zcqB~#0Q!#V-bWN2GIH-zWD6U0U|{f?oM&Z3It==kWGeu6-`;iauCkQba9s3eUF3B; z4zqNBFroLH1!bdhlXtY%%`MClOMePDJB8_>;}8c^J2?D|La{hNBYiK|z41 zxnLv6kx(puts8}A)4bJc#~*pHHYkZXEQL18mq^XVFPBt{dAIyYxahn$st+{?2?;aS zbaW8*7r=T|(VypFM5oZ8JHD-EYO8%&CugTK!!RdUZZG6FTy@W*PF=L=rUPxdnG1~* z#YCdyzs;rJV?^$%AadvE)guDrKaaE<9T`!TMTRCHk%kPke!uPCPT8Hebck4=xt7TC z`y)N-C<9r-FmayNSVd6s~!DxLH+?Rr8XM%a$ z-F>b5FYTY-dl|`iy++2QX5OCkHzEwaoDbO&hw1K)d>@nH0wLCMHFBl7!`EsgP}sR1bJH=M1{ zKNzpYhfP_l7LI1O)8Z3OHug-1eX9GYu>pIuM2TDs+*yIaLY?5gX>7#0MP`x+Y)~H4Jeo$Nk~W>;SL+) z;^L~U1D`mtB$+KvQP!JMB+F}ScU!*r`wRQnH*YVGj*LWF@Dq|ewVp^#O{KJ{0(L5ayUwzmGP)>7{RH&6g%g_r~8r=s9LZ&==mZ$nn(0C(9ZgRml@e z+SG-U&Dw$T=!T%y>WNI zQXMzl=LRf4(@WDIUqU?jP}5~!;aB`r;SK_sQS`>BLBc-SPD!chq^b=Ta)z>O9hpbF zzn`Dq2e{)B*R%=;HfQ}Bs%HE_pEx7N-tmjA6eD|Ch{P~32mQ&HlTw1mu)q-aXC~|I zNy?mDTO#S1s=y-38MeU(iqW zwOs|`f40{tlvrA1`!*{E4{tHJSO)^EY=Ex%`ijyD<6(+lD!dS?dzsnErv7zO%a5s|)55Yfz??q}Db3c^&M~ zvxn}ktmcP#!|Kz1xy9Miz-sFINex1WybhgLE36W@BxN%zX}T28=-g}%XRs=?YiB5p z9I&?_fLaHExP^pnM<8d)%<%hM++uNWmGw4WB@2|`SO`M8j& zUZLKG4@aIy+?_Txy*4t#@7&@rO)HP26!i={+in*92o!lO5P__A>V8mBS~@&dV&wAr zz&tj);grYZ8U1_`LjrUMt(MBSTAei*-<~p&QKv0IKgaWnZpx~k51#VuVI|>smT-~f z%4S(8{jxy5h21+o^;0ZJ_RewDlF|U#6(;-p0$7oye>(s9r6?hqhGe99w`&yJ2zZiRii}6l=)hCmvUk>3ViCptpt ziWS~6C>K-_ad~|ArVPo0dtY(BR*l1jl2^4@3O%HC6-b4Oi`R7(a;G4*o;h7NX^V@= zEcOXo;CtO@CoaorLa39P^=AIGZnK8tKfT3yAL2q?(UZF8OS5=dMwMAB)XPt5MpP&? zZ_TzWJy%(&nBySW@%F5wkg@;exb*9ult`p`9n2#V&=L?^EckH|qj8|syX|{4zMlY9 zzZU&`k3iu{p-pHKx@UU6L7$iJO?9kDpp(fWO|Ans*X}_j=%a>y8m>rWrwdeYxaOVR zwhvRJQEvxx?WIbW(HS^jry3N{VXa>H`n*waT6hXQ{gGKezLFEF+E%;1^e~Z}(;)Dv zC^MRs!KEKS@0S!Qq`Q<&QV$AqA~6Oi`}uWrIp~)x^`uaE$w6zuYmNtz<~#Q%6Ayo~ol7H=N{&Yy*=RNoK#G*K zv}U6`kdIO46JiCrOW#P{@v#RTnq&|0gzJv#Cs@nEGxT2{7zKYKe671%Rf7&kMswwC9; zJnmMS-D@fy)>y^ffS;q2Im-wm9alLYTb2Vm)gx+mQ3I4glt#Z7X3gG@79?N#hGKq4W*SW#ePUY7N&Eb%&v3zH4}>zw|xE9Cc(oRd_a+|RgDJ-SEZ{`HZr z95ubwBEfe^R|Cs`KGGT{3pI!+9;@23_L>nsEQN;wT+4e)>R6(eS}!Ez@pgZ zG_@N~N4Pdq#y4R<_eB;|(B6+?Iu+N=rfZ-eg;cY_;)24x>^K2u=);&=iE-4u?V7yu z#pq~)vY&e97YILxmCemVu$*ZpDrS&)U z_q-ENk!`xJVeP+Fuwq%@Ep?akAN!p~Qe7sZx`Cg9C%3E(dUgB5c?;?Kty-6C!JJN~ zVs7Az63ePvHa#gFWi1UVh&Er+df!km7-_>IFB=kQ86BfsE^7V$!fEi8V#TJHYl2U; z(Pdl8q;1f99@yLa9?8j2cB9VV&71mfZI$h&MZ=&C;w6~07{pNfM!iFzE7i!{ zyl1!d8D1`kO+@cO({m>#eN0&7PKEJ7OD6X#kcnT%P(N#WoeRX}boKSA!#SUGa~m@> zLu_sl2t}soWZ@y6WkRxK$Ai36nZ2wE);x05S9q%>mDCq* zve<4ry(#iG@|v-{=SoUEvEM(#_B$X1^5eUA`3F1i9=#rYPzX^7Be(k<2!4kcFAQ$y zy-#ODhY8uDFtUVNXs)j^TcWW2ZQ`Syh}tLJe3#A&V&)Gw&NtoM7Vghd5MXV(9##VH zuFkL@2}cbyhSc)0R$UxO93(Z{U(9~_&Hr6@^PY}&D}t~IRJW^@CV~c1%#vSCQ{g8Gj!D3~>yyo4yJUTOW z%@}pT%*jpP*Opj5S5VtH&b`@iMGKj~-BBFgi!@kP}4tylCKyz5x&se|G-Wl1nL zQ?#g65NOHo6!z-Lv+!%f6DCj0RDVl}x`$IT4F`p$WQ0C?Zd01F^QG%=!uf!RR+Qtr z5w38CJdStoGAkEH-tdAox-EJhh+HX8~@vRsY$kE}N5+Kr#_FQ72Y z?s{vgJ84VFvtFj!%s{$Yp#p?o`g3;z0bDFB`PP|OCMc~ZJ9}Cq#aAtj*nT zVlTXCVa_Q&^NX>^!@nzcJo^^}uM*F1OxT{=9=G&fcQDR8G1WZ{()ui#7+xnbEZvg2 zq0;)TKe$uh2o+1jn&5?-h>vY-G`?}LRgk;u#81Wyg1RWdzsvSp|9_Y5D=RA*HuD3w zyC%K}{kZX`beH)0h-RmV(r|JTQMa#wx_!0*<6#SMa)^qL4;M_jMeE)CZ7V7=@>8fl z!`4>*ASo$4T=C@+U4N=Tr2=4A|x#`j?98O<|bUkBlMREbp5`etc34;2&OIKC8e6jo%<}cYmNd2A1?7R8jq)9Zr|7aQA#_q zH>1v=)3-o5H>|hQ`cmrjYpvwTceB?3o7PS_|J;{62VHxoLI9;E%xP{AXkIZ3;U$6zhElBROC%l1^Y$a>tz$26ijo6B zqELAfJ5xH8RO`77a|t1y-J`MBFrWU0UZ@%%Db!_}ERTfX2f4W%?Bb^4B_k_qHA5FRJKKXg7al)Ev@fe=fHiic^ z$9jNh(`JZht_BpC6MrM-ag@(Gtl{F~T0ppjmtwn!_!Hl5LH$u;GL9n7M$W$xBtn`I zRabzp35^YR0D$Ryn3Bf!!MU53bQ&f*3aQK9Yq#&EUl#DYcu$SZhzbE_F#;n$rixIX zUGeCEd7|rGUYxU5kSBYVWF7vff$B+Ea!R>*kHVhr=}5S<{7)9oU`d|0FyJRQc>B$t zS|0Jl-Iiu6Dgw7nDCvYsdzgVQi@9tZ?#wjufcUJz*q*1%cTZd2Xhdr@n$?KTvoi2> z!>(3sR~`t$#~}U*(^>^dd%g;OZrSYTHs1Kh7)9P`V|z1@4{lqYWGyYP_GJs(BNz|S z?24J6RNhK80`Rfww}l$%TF2Z4^|T*cE_5k)ippt;n&&so?pa-~M?r z2%@@Lr>E1O7kH5jUnz+h_L=&y*ty7;{f(*qS_nD?-g{Pd2I1~q=~6`p^9$YymSr4X zk%%02Fce!_x%mjQWw153){CC|?r)|Sj%d$D2q^3<&=YUMO{8>0f2^=f0`tk?RVZ<>`OLI_al&_r>3Q)rS`*z z2Q&0}$Ik?-e0d7*1W>8?fc!F%K2C}qN@AU{3)l;4JTI$FpV5z4y~}$5j5ea9@Y{ss z`D5wn2Qd15g`jY9l`t!h>^5SVi?M3;q$lL>Ju?CZ*Rmye)P@gko4f|pwUe)~>z$Sv z^p`oMIMF+36`(2&^dt>|5GXE}CNrRA0rHHrq8^dO(a4%RhjJ8}#ZNqsR-L3ZLrsC9exK zQKPFU5gy&cw~iGh;QRzx@${4Q&u-)Bg=ZTd``M$Yl^3>>Ym76m2$oy+f~XbD-jjS@ zUqU-Fe=9&sETJZnrIp{iL@(GkBy5@*RMQ9aAW)RH28B`EaOO#qWlS0BDQ-w6GQh7mBakVQ-|?BJ?5TacE$&QS=h9@ z)iMa+pZVS6R~)}ChRQWILiL834LeAL?{{ym^+;N+ey=FZ9-Y6GXaN1?X08F1jsj~&N=9E8imW?24KCvqCsYKUNr;bQF&(b)a}8Ku`S(-T-gU~2m005ZHTgjOO?#!mv#Z$OOlV!gf(2a zC!3m@8pRUUGd<1d0*@9b;&j|gXMesL@uNef<(*RxKX zK;{y6Eo$b8(%!1~$B$Knm2bzBFcY-i`;iKq@O|7b!UnI)R>}j|rn*&ihgpTtmrNGh8FzHj zKm=D~rTP6@oZXZPhwavkz-YCTot~!I+E{UxAbKUVhbW)yJ9H}|5F+Kf>Y8X05-Bp zCG2pOqCZ43)KhKEx<2Kh7njB+SpV(s*a_)8+gFKHjZ zXBKy35i_6vNz&_PY3g8;jS0;X6u*Db5yLMcBFGF!C8T97Gg51Dn-aFa8o~JYqjgm` zw!92?>zhKZu6~{yp^qq5otT*oTm_7r>a^(ogZ0$8*V(jp2Zyc1KWN<$+U+iwC^3o2 zhE|re9e#^m`-v+)*d7j`kq4I)W<<^BKM_m(UEi0N6bOKBtQm6%D70t!Yo`_M?gi?x z#b6f`?Cl1NLxKR!nhqKzk!nb`^x+tXDCdDxh~ePfo~v#gxjT!nmhcyN&1yD&Fnle# z^oy1OQ~C`S54_A|qu>|Z^AgNGt8{p!JpI}F4Wo!Vd&PJBP|Nk`@TbzmK_UxXnYlU0 ztCglrR{8Q`!m89(!$S1SGEjd5a;<9UDP4S!ED!3I(L&rge5UMz1oR&xv{X~ zR_A;KJ$*hpI>2gF!Z3>I=gSEt+2gb zh)xf+qQq>Pl+M#L`ZQA^3vA*VA&S~LIGk*;l;AX$HQcqg<@xq5#$7uXcsLt|vj6ri z(kYna;DNbaAHKQRbs2rYLhn%#FzC43lK~^KkxN5$REMCbudPVELCmhHjm3A`E!RU` zLpH}Wlp-A76I-%5=_+&q|BunK(ii1|qs(DC!<+(&X^f<59}QPkhO#YmoI9I^{ozVD{ z@j|AG%1_~IC!-}LBo1%smNtjBd&$aYwB|G9N*e5j4c|TpA4sO`T z%-nx;L&>2eR1RCqpU%D}u?R@~$>jcdvVYrN+fvqb_f&cy)_V1%XrWm#FN0$$9T}Hr zFOZnqKEI8aT4lm{w=+!VleapP7Q;BA#>R0wC`t$$9UX1sWdochrQ*f)AVOh(1k7EtT{E*&0j+vx-oQ}IdC5xt6^iJyvXv#Uk$(+)1swY=U4SV>Z2YC zDvqFpu&*E-p;`x}{wGExF5Kt{{k$`vye{{q8QC-Gi_{2MH0HN{{!q~OY>)bhQI?1$ zb%U3XotatI>dDd0Gj3FZ)b?8SyYUs6AsD$Q=m?vid>t1ydLyi`m!Rn|x)AG1OE zKh1e^cQDG@nbDm1nW{CbImv@0Ss6GjU6eZjj83jddtA61Q>Nm_gp#)-~S7Dls ziirk;5H2PvTb&g4UtZlSa#Ey8pKr$S)vVWSq3}$Op%$Pej9dt4kaQvTNzr^-e2+bk zX2z<3tz?cvlB#*{wxxE81*`f!1Y`dUDp^7g49wOzf1#alM`rTU^XA)Glr?4JdE71Jw`x zuu5S5lFiIzyLQW2LfhVcq;(1~xOHXc8cilE6t+|(0DIAwmObj;@3ZqMs!k~51>2r} zN@=B&MzlpUiQT0nVq7r~J`t@k68^mS$p=Y-d1K~$?@=@$gWSh(gv~(!jdao4CHYuU z(NV;t?m|OtR`&V{UGz@M%*;#mJ~t+1$W;a>qi>$ts;)UG@Jb2z}#P)U8ksmD+FZLPm#t0$Gut z!BaQ zb8(jc19Ai@%&BMx-gbC<6Z9p2eiVR26b-=?^}T%a0o>AJYzs&Q3Zx@8@A6au#Bl)~ zvkj-;MiWyF!$&hSuB}{VnPDddBzg07mIj5~8E@ZBP)QItL9(qianCvMoB;YE94fA9 zO`)8G8`r&*ocUqcz-|Tc-ky8ORWWUMV{Nok%;2NeYH#0-cBFWi4d`0^N}(cp|)&2YFg7 zI8HsuZVi0o5r60OwEcwo};l5p8d z#DnGzXy+i{;6mr)ozD|<0el)ikdc##*o?QjysDKn99{|w3maO)NU251^O~ER7rgn- zw7+zKT3&adjTwE}@nj{<$aHbG3BeVj+du9}dJ*55SlAiE?!^4uwEYDEVVoN^bh-Uq zc_QD1i#k1`KmMQQAUOqKhLdNfARD;zTmVNWuOa4$S0v~ zrEXC5j&ImScA%4}h-POo`wt2E>4+boD&vrHKXy7;>jl{_*4$eI_-Yk99<Y1IebtMxpDrwDfI~EwdjA8E__g->aGSEG#3sH_0x6G?1x1!p0 zEQ43q^`#8i!@p1hlq6Y`;1FpnP>h}XK$4NN~Pv;8P zs_i<)=SOO%@^*I0?g|IA9lBX2&j*k)!|M|TON#o5CKj%F-p2oz&vTVg|3oBnhu%Di4eW?CkyhSsik_!+QM$WP|4#h){kd-26GFAWlcSd zGkm`{|4=h@B8ebnlVMn%xQon1lDg)Sq}6zYI(hnnK;=U25=Qix`=XZj;jxbQBc}^| zvFR`P$FzF5$iX~fHAZD;LjxVDnAJzy&7|R?3oi^CN81)9gI^iw+Rp1mo&2;*aatE9 zJYQ7$R%G_-qubs+#@w&Z@}KVia0^)>h!5YuU;UQe7pQTmA0$^K5pdo>Pv|NUr|P5>{t&j#sA9Ja`EcbVXipLBK0j7oRYiYCS1E)TsXPQ7_sJM z7U3@>+eCKyQA|nIvAc30-HLQwDiNUE`ONl%w=I?I*`hcX+NdXG(t!7oNL8x)yDEwt4_~d z?GvxG`Nru>)Z47@BY7^FRZ3QE9ZpJ0GeypPnavx&?97r)P>Y*ZNe-RC$(%eZPTh3U z_B2m6b?3=0>xob_PBz9L?UL~U>gh4E!@1do%n9S^YgplJ@5_tsg-&pyA2_=TY8+K3 zgmuAEruY|pym|A`l4@xUE)RI(&-3||Rj(DvaB)`Z9uyM{YAw~;k5{Wff;{aeDSYBJ z%(iTIGDH@(s@*8ZZEGLlNjuBoq^Dq`OMM5s@~umi-uvR@$IfD{^DFE~jYoV{=XA8hZj(d}uKR9h{@GRgrFw&mE{{7V+X@~x zSsjncxU@t}zzp=MJ*1}+=>!C}o=aYRw5@L&;1nt_z6ZM&z7cMFX@tQ%&nnz{U z48Ztsg5>y2Q>;6tE9=2TV;xuh0L!T^gq`8e(=yQE543v%h48pbDN|A45Up4r)fMov z2EDq$X(k#Lp8j5naMq+EFyV@aUy7Xoy3Zb1oaw0%o$s8ep<`qrSZ5FECn{-|Cf^u% z?S%~h4tLMs;6eeD#WngrM10AE8G7R}-9&U(gdfmUqa6eA10tA)sx*#jP<%<{SJdOI z0L9czlhZctUGmE#x!o&3kISehZns*=HuFiZ3)z zB=S`Y-grewYrEB5|A&G9RhQhGyNTRfzQ<-t{$5W>azb3EezkNYB)_jhF;9bpdX~hK zc#M88iAkCGULrbd9&fgo$5;fl^XByH>lV@fFz_(}1K+dq9|k_T`%6Lcpp}r_3q|b3 z46^Uwd_$R&^gDCU4r}SrL*kfEa@@j`jND|U){bciD;ApvXS84YXN_jWT

J9S#`{ z@-JV~bWd2=cnOJOqnK8$iceup_HH^Woaa-`SGn1@#T@&n)SX`LN*3-A@TQ}AUn+K; zjA|aD5kKwUYlW`zka*!eG&Dc_VcF$&?uVsO-A=T34(m4FMvDmHQK7}x*X!4uV2sor zx7$t|Am4J!8o?QVzZq!~qrjq%p643CUbY&+wQ6t?k}Y#_mqx1X&{UaDIhE3FUO{Eo z$W2vaiXS`P`BGo+l1MXDkME+^A?;(l)$Av0>y-J<%Wl$5BG0KQRl4ry^PB>6 z;&!DcFD=e4x*a_$@n3xWGFZFg*4oSHBCB`_hX%{Dd`m|97~YfgnbgCFb9c`|&Kpg3 znYdg-cg$KKK~i{}rFBK>t0-E@EpnX)6NB$qRy?GSB6YRIPyN@^uQ>ro`ls`+(T9gw zmQoF!VpgmRML8Yhq_9x8Ps6|sfbOl^uki#lFt0YOBi+u{W;eoux*qTa*?L6RdMa`r zUXZ4jd^WsI?R26Z<97fBt*vI0fQ3wn(Qx(||7nJhSfiQxNAXC$6LMg2v_SDr^fgVe%^t_d+eO)g?`tylBE=9xu9dJ-Eg;N5%7}?qJ7+oH*uQX7l;E(a0O8na_3(4N|;SYJ~)vP={}|N}Y@Q8Uy=nu4XD; zRu?k~+#DU5gY8@re3!_@YjxRGx%$1N7pIrwzKoq+>DN1#P}+&Dah~j>+1?J~G>W@B zkhn&KF}ki~pSD_TkEugby;pOw!WV8}>Q*_g!9(s)T;+b*_(prlFH?`Ma2#@oW}9@& zbM6NErBIGr79=qKG(eA9S@!x$6p2Gh;eaR2@~O@nzo_r8Pn_u<6u=6Ig@+yo49Joc=Wm3MOzwBcFIcA(h`27Sij z!d%r!i6z#Z0N*2JASK6SsDxy_(g&|EO{Fv4b)8M0o$DNv)@=VoO>+4M7jV zaCT3?(6Nt|4L{j~_2flfF0QO(y6K+l91Nb*<@r$=`4O$U+?q1_^||4r&;*c)|tftQk`9O zj>X41d8?13c${UhU2Vlr)))+Fy+zFwbNw6qG(X_%Cx3pQf|-AYgmfFdivCIqKw~RR zqgp_Jpb!~@m8;|qRuMlPb2v8E6Z9YLZU?nas~CAT=eX4=ckAlN>bq86**d)Ivz)@3 znR`gbLt8BWLzNZpNV@H{AvtTFzm66soffstU7Zl#Ck#o*XbYMbzL$?yFL!BBJmEBC z7ar`1xpPapQf8UX4lf*3Nyqw#nmsB62YZnAen-`A7Z-gqpn;QD+HK~pt$u-4+O`6SXg}9^O@}OG=EG;n z7&eS~>!Xw5TFB`^1_s3an$!J>m(MNdKTTM5^Guaob{8AE%z%1J9%m9D?#uwp8EtOb zS!iDXrd~P3PHP3ty1+RJ5F39+^fs$5jGsxo&idxz`VZRO;mcp^sG`cuMXqdQcO>FE zMD%^Va>iuJw?p{iXY!P9wg1{hS!tJ1q}U5yxvH2z=e$Du z?HN6d=8e~aJ~Exea*7oqbSZnPZ@gdA+=v;9*K zV9L1nS?sF!4F=cLM-lA)*-ihV3=~C;rUDG5B zjJQ}qNOeuF5#o1utSv)4l~&4}3?AC7?0fUJQ$ z>8cE}^N-67gMpnJWI-vLj+&!nHpUB#uCJIX_lu=nUR4ZUqeR2B@MphRiII$%ykKiJ zt(A2>5|3~YXVDUdf8;x5tVst%H z1v2<~pd-Q8V-y9R0OZv;^+j|9eO*X~(Q%u|A zArFZ#w-rQF^g!apz8=lH^`rc%0MCqfxVDmtur61HjDby+IrKgc#OzN^v4>^CN3pn% zr^t)4sBr^smq+)ZHr7g9;{cm$*bB_0TT3D7IN2_xxL5Yq2)LfP#@T-=Cm1ZlDFpt%+U^EXu+~^flS?DCWmHBtN)%ZoztS zee6;&t^0I_u+emFeit^SFVqwWWA?%^pBNtjtfWzff8bC>EN!nNvl z1n=n81-S1J=Fx4&;zbPkFgxl&{BYvpmA@9d;!GEwsb&*VvFk))qux#CH|OR!pxOQX ziOdNfE5_ou#n1e~%0pc-|K-Vj8UG?%gG(J$pSuLjXS!C{fcRV8BMev zyOYc9wrE^v?h>4L&>7jU>VxY25*`v}>~sv4D!qB-j)?W~`IJHU;Nb!UgmK!P7j`p2 z4M`jPBpIPu-)V0adR`U=1Mi5}U5ANwH$n3o*pih0;N#fds&3Qza%)M@$|MuII-#@by-k&pwKdV)sCDOhp$~4GOWqR3buEF(ro^m_UU?fVL zHS5OgByyhwo)GJi+{J&SIi1{M>|sz-r@X})l%~S}a(H5R^r`FY=Ue~lzG~%rJ3T)| z!`)!%9tzE$KN~AH1@Rire7cnPXJgAD#f7|@i-m=S3{}gmY_ZsFt(IHey6v^B^wH6A zfI(kxU+<2d*;EOvdksKX7$+Fb)PzDcgr^ZZ3!qY~?oMEwkfOf4xVRB)L@n~)@c|HC z0LYz4%KVA&9)m$@Kg>-y-q$ea5#QQv<2FC$Hc3??=_MrdSU%I=JYt9@#I^q^XvFj0 zB(&ZcE?q_xZuKgn()PN%-TPMaxrcr61n&Q#Q>(hUSoR+GIQ&AYf8_n8b!2l zc0J@w+@Q#}gr>xS6wS`|4)|xSn#|Vr29CHbHQjKk^d3*_IP|hOzNAKI_10=bFpNsH z7=%jQM?A`M3PiG}(82?~I$hxF6tUISy^jWw>Eg4sP~l`-!%?%^Vat<89YEUCKieD= z3s#T|q;W6q@13}+?e!_-jHTNpK+NS-(x5J~Y9s`X+gA|MB_D;g_*^W3(7HqH8p?^UvT%XcNs=N@W4@pWTp zT7-T2lS%q>WAl!|e_w2={4fchQgm{)o86~BRWK2~=6ZD)%^v`#a9QTf+l^_}SY``z z5&;eNF1Xa=VW-No7y@A^Urh`tus@D+=h*_5&Hm-(dXer2T9*{gDae;RF3Z3?hy{WnyWN z+SaI6nj1efB>aB2c>et3Fvl~Gm&2J?>Nm=`17Y`pPxiB)T|WH3$P~|@?Z-FE2@M0$ zxaYqOE)#-zg!#b6p^?}oFjY@t6#pGICJEDA&c5yxVT1h;fb(qa8Cn@(6Eao~W?zNY~VHo>iX|KBb#e`2d`8&1h z{+>munt5HIL#1IiBIq-u3vf#`#Or!0e}!tE{#PVo*tWb+UguebOBs8nV2-VKx3?jy zwQ8w7`dRWpIDDP&UbvY9Rxa8!=0ZM8BG;h}w@j`PJ%$yG^l$I$&qF{S4#Ll@8lJUP zCYK&eZ5Dvlky~d6)Wu8jwO<;wVSm6w0lE!}K1G|EV!N_qLeu0~lh%l>3}{zX=N!r@ zY6Jnc&Ia>*Hdf{kg3+_sY5B8Pb4dOG-(wX!v-V@I9FSa2gh$9 zTtFv14-OVu23%&*!aiffz7$=hjkKHso@H(pcn?Zeu}f`=M*dN=v*ES3F#7hlMxYN| z=W-c7hcqk9T~XXNRR_o4iBrD>0Q$9Iqtm$woOSae42=?Xcdh-R2pR~R^^ZwKb_*v- z&^O=P77)ld{<3Q%8IC0DDb!mlw@h<+C~~=uW4jrSRIKo!&C|y)_s3%Uz@$+fMt81_ zfP5)lZ!O~;{4x@lI=Bg`FOE$OQ@_kNn+1KMih3^e8hEwK5eju&)4P6Vb->7s%Uvz{ z3EuI<+Fd-By3+Q3QaONtXJ_#G$)a9;juJ*W!LAME9-wDAYFLQ_ws79^@yNTrJ2`|Z zUlihbZaNFiu+6V*v*&QF-&d&s>|t$x4%VTJ3D1Dl$^C@fC8@02Pc*b^w#b#BZB7}6fpLZULZ$LmZ7%-?{zGj z!vc?#`X#OXBTfY;w89Gstw)cP6)@zCzt{~=_0*i8J!F9QzLENFlEN^I_`8VkrWe4& z|M-;#xhWg{Jb9m9KgjeSz4)Jf>Rlorw6J;0{GL5H8~P$9Wwmj^q0c_&Uuj<&@^j*h zZ2Ot(7b~e1K>je7bX(m$V`K7B+0+BNAp*rrph(YG=#E*jev&B zq8{y^@9g>gAw28H!p!NV$a zXlH=)p8@JL%d<^b&Ohl0r0)Urmhs`?>+Wts4UI<3M_R(#im`cOUN^o0Jckj3Nbi&^ zm$h#qa3{xoM4))8IY68C)SLQMB=z=4Jppn)L^neM^8U=|)-F3*oE^TEc|C$v7MXgR+`f2G>sN zX5O3%sYnS9?nTVNkPzKxh2>_O?>p=0Cj6&LD#LuG))LXY-kheINlPT2L;LrJ9MPIV z8j&goYC;h$!cW@$>LqrT9h(IZ6IA8$qin1plL?>0+!ctyx7& zjis&+*nJd}s8EU5@!eERI9Dre@D2!-k3K-28;IYm&9>O)Yf;mc94HW~v;lN?{IyY3 z`w4?y)bV&=wr7(1EEsA$i^|5C^U$|E?mtbs{_3FEL z)bbk2u=&E$7Jz*uGIb>oDpZhz1!+7pFc1Ki25((ZSdy&oSDyxbYtGi@M5~3AIB2Q9o`M8NGmK_nE=|Dd%A!jvztEHx>0WQ$Y z_bQNEK^XvIm(hQAko&n_Kk&$66SHQ4$p^UfS6F=x`u*!a{+PxI(a6L^z2tloo$y1m z+A=h$Nnd2Z28X2rNC{jGZ)AUuEU#qn&g$HlmGxGsy_Lz1kwi-Vt^4^ELE@Ob zzt&TCCntP9P?DusDez7od6j`GZB|KI`CIEsH0<|kGb@kHWV@C2uTtpemJK{*Kz;7^ zDtQcJ{yHLHB;u6Kb5jK(v4N8OiyHH{JVzRMm3_K@CNc;jX<45fB0s~4;#gv=(Jh++e35m$( z*v1pT?YZ#xZs9odUE-kS_jU6@f5YnTmat+~<7(c@_je#3fBdTy;zGq3dbXM}ifOf& zvWgAI!j9<5sUIxDHzoB(AvzwpKs?<%R1wL2*8c2?dLQa;ALT_}*us;rqM~n05xoV} zry1hTU2EeL#;(-O4c)+|78nuD4qgtJQ+S^))y{IoP(FWgzr08Rt%5=E$(QoGRxI`f zM8h@no=*?90JW!Qb0G0c)G&h5Z5ju)M(7}>($bn}Y9Z%yy<;=`ablx=_iz3k=}dIB z+qNsq1fZn0bxFX4DuLVY@eN;$(f)Kii4ch*QhFy^E**yoqn?z+V$<$q2^j8+OG$~f zX%hl2l3airq>#o>If)LEG1V6%z^b>{w@vB z0-coudeidB8~;4t0cAiSlm$$$s&8m0cK^hpvI2I!y=|+M%EN6|;plt71wg4)difv96t?(z6TNL<#Jp05+^$s98teaQ)^mu=Y=6_lc+ZfhrVuQHqQuYT+WWTQD1Sn@3VVA&e4 z@*g0z=p)KqJFn@%Ev69_!mZiyNeTuo$=>kNtj95?JD1#Y|1X=SU)j-i)K~EVp&>W( zj~wFv8U(=e%6lseCvv9M{DN`U9mmC*d6faDB$6jX(mCkQc7NrYmy9&hP`j3{BQ~2n znCUvQ|4xdu+n%|BZ53W{zk&?U+1pl79{VQeD(6VPp*z6vR^>fK8xrn$$NkOg$MI3834n})8TKwxAv-mg?wEq=JpN1+$r;39`yF|q#qhp;vX8wqd|%#B8aB-Ky9oFr_VS3mnXcOy$k1Gn zL4FIVsU-jMvkqYVK+BW$dt$tD(N95(q}4aOT-h^8U6M?&0N7`u9$?&HXKybE%oV^* zr0%D#?r9C1L^XK-MY>qz#V+q!3=ULghZV2dz-{tD)6^sReZvP!#A-;1o%tAV{}} zKM+)!75QFN9S~oDtml;?03wJlT{(p>Vwc{Y&yAqWd4RvMqL9<}T@pQ?lPFq7^pS`S zKB{lrvy!q|hIbn+0+CT@094YZ+_gX@f%oPwf`>drnyVZgjJo10Sj-$aBuV}NSlmb~ zHghKQ10Rv_YH&baqOW1FtR_Ef0}!|H>a*bKm{`jxw){5rS8Kk*qS<*Tn#1uEseSy!=piRC+8t478DFuDW z29&`&9B7-sGP@rrRnH6sS0n)EhGVJ!M`OS&z!Wx)-mC*ZhGOc$-IY?v!Q1b z?G+&Hv4V=-lKGuXcry{Cq3}mECe-=;tgVq>ad`7NxAs@iNk&VNqg@a&TDPsX-%gx`6#Y%l2Gf<~)(n#n)@ zMLFt~;?D~|?T%4*1{Hx{Ci83=GCUY=B!5BCEV zh%0+3-(#oD7UqCxY#)o8Fl%WQtb)mlG=I@Jc%rUA8RwD3LkiR|Wdm z!djJL*(nUbY(fK0+=m*@r){J5Q>)9bd3zw4pmD4l5cN}7`C~AV%}BGvMP8_0mrs3 zCG_%mLD6!J+1z692E_(vJfbG0x+l0=e6(2dRLhFK!BJ*y>FCAl2QE3xa_J3bCW$x5+0)uN(^p`Y4{ST`ZoPEt6WcV>U6~@FzYo~ueX*_0YX`h22xP(D{LbQJ$&h}Gi?nxuuLBI*zdZQIG65=j z176%u6aFwFyDxx!Mg-ufq)xWnP7r465B&?mzHJBW(YAX{jg7lipXC*wy8m$D_cL=< zc!$z-|5;W@(SXjlVol%w9vFAjYO6rvdl^*J%M7YMTj*evedn@06o1PB0N7EovDMWR zbC)c=3c&Q(&=>uALjS6%8e-m89k^UpOT?PhwO@4Z@0&;M?e26_TOFeU%PByg$JU^)dsIX2P*a5J^ zq0i<|%w!iYO%XRTDWQ%*sf!iqPuqrHE8e>nFhbj3Sd$xL+%<$6ky0LqpjidoL@q!T zYtLMoD^r&3w)MwTdzk}*mfp*t@$GW8o5w_9R>wGqFDu62nero*>nnh^*0tZ0mhw+x(BJczMXq` zAsmxhohbt#EC7rZ%feqD+LYN27$r~TR8RiW6>RiQI39QwmhJBE+fgWeh&{ka!%+ls zCYij(Jxo*$pvw5dhS2set?dWW%`D}FNWL-_8U(bcH~`2<35I*@?+-zO^8di94zo-T zG>6E21D~zhn}9~m%(JhUiGR|7Bh0>}q@-xRe9$>Gwxc=+eyGgL69CwlGFIFUK~Y$w zF;qm`7RE{N5vv2VY_&QO&-U%5(JCwLCN3^)bcq^!cq*T#QtB#|fE2}7l-k0TGM4h* zGJR3_^%Q{Y8v3_k&K*(DUK;B8b9_AE9Aw+p9rBMp+)L*+(#2J(D+oZoWxH|XDiC#g zkOrXOTEKG*u9}XrvIDrdbpGc62IihQm(xd_x*`YET95o%|5>`K#mg|7B};~MavCT?$jG`MLey=gTACbVmB2% zf5;Ekz79pu_S97?m70wDUIQ7+F?3tUl~6e!*IX~(%vt#nO)^%rx_0}AnuM|j59`*? z4b+)Ta3w|N&6zadiA=75fq5?D^}xSVRHAGm#F#EGiuU<`uUqfe1jpyyZ&=?r$r^na zXzf}))P-|n@6{dD$O-+GSS;ebw5L%yt<@_zB->-3v63d1`ZJpSdAPvOz{afyBJz7y zQ7Iba@`@S&H1RiB$t#sUx`Ll)BQR3#QRXreJ`MgLVsy?f=|H&q;+;i47DO@tWisYwa$_`urC zGk2paQs3|uT0hwkNTcc}=(pluDIpn%;Ca6X`DkkGXs?x;C6`}noU3O71Bc1SXJ0ET z>M1*b5C#Rz-PUZBPzu2CtM1`JT|fQ|bqopAK;3qZj+k0Zxxf9iql>Il(~}$lUyvI_ zr8>S_QSV?xPv?W(-Ba^;mR8hfI`7uAuQovE#eJsp0+Y3?f$grh!%;~wqQb_yELY{` zjH?zlhWe(+V3iC=d284xqY68Ep`3kBwV|HVX?!@vV`4xPc;2A^WCH4<>SvvbC9Q}r zTUc|LzHSuEZ;c%|u%fm<0kq$1?8>Hb^dviU#%M~wrV6kxe80onSRHVX=XDy!6_~Hd z1JrR%x@Bkvo$QOi79qi9NKYFH@V)M75<*$~KLD|t(mO>zAZbA(%1TmMkQ^9`Agqn2 z^0jW8R+<#2o)DKfWbjM=nC}@v__MjV1>J0l2wXLu(N}M(SKV=J$!r!R8l@Y$Qg@ow zSdXzqz3M1F(Nyqza}^W3iJU_= z!b>ZOi~3lud)Ghtre1K}GtWd<7?tE4EO1H<$+W&KsjZ3_?t_k<;@ZCG9$aNXH^M#u zj-B=mF|_$(G5jxZU67L`_wVkCwEkD5Jahxct!-=5Tl3Wb{baWbn>LV{(a5 zxHBhlT&!LYBsj8_M@sYo&7m9F{dL{d^r|?aoFK> zNlA<$fh`k5L!qBqRYRv|uZV^drue@=>Vusb0HdzO{2M!S@R^+{^XU(E=5*vwcIG5- zul&Kz5RtnJ#7Qg_fq6_gcVvg}lnm(d zer{txQ}Mh7p|x#%>vN%cTa1|6T#*I)tRrIXQ%lpCmsMf?zZt&UWx{)Y=1uTOoQ<1eGqc?s2J>a2!wLSRVS;Sa-us=4&AT{n$PPEJ-84h~IwTyxRx!M7lX1O+w-+1*-eIyj&VU@7nblJPQl*XR;I zFN8RzUMb0dWFbSpe6oh*0)oyF7CvzZ7-A4`*SYS_3@L>)|De+(ev=6U4Sz2L1Q0$R z2#A;Xc&~teMe}>5I6gkSmDn3Oxj!s|_;nXd)ISf+q&z!f%z82oq+IN9fnkPVwNo0; zD{z5zO-y;-K4Quww<72~Q}+`HyoxYBf>djpb6$84ybKsFsYMcI3NGDFVBY-*mSNiX(SyGr1aY1#5MDS+3pjSUhYjw|Ra8PJ=$zPiJe@?OI62M+RX zGEPSU0vgLJYD(Cz!I`tPaWFV)?WstAy!gKz*9+kT4G6(u&d6o=ny@A*?A6#IqS#nB zrHvp2j3h`!7s^PbjQ_e#1DjIm^jd~ixOw{5q{~4zXTn#X2)q#=iYsGlk~!|1{O% zdKw${9Vxv8V?Ij;kC;YO5dKfC@&3h08CjvCZe=TDHMTRDQLWN?JJXoda)1xf9NZfuHW_YJ9wsxGLq6_E zj9i{|zm6f{W5{CsjKEV~*_hn@SAticK)mUi(``gVB68}lUAy-VIJnB4qclmEt|JJZ z?}2|@Mzrl$rw4Ee^2!mF7n(*LeApuD_rTv9dRG;F0K_)2m5Q(KyiHj&+neHt`5B88duXkhT2>0Ey*H@8CMARFZzI@iY5 z))+9!ggthzm>Ip1-`>nGYU{Bkj!Q*hM(y!DXhG-QHWqzD$e~tgmeRh}w-FsK(&XkY zeF`ek=8s;HVqT8J_1bZCD&rl9WoTvULBOX1c+kC2f-F0DcXqqan(Uh!Pb0G1$JwuS z4C{8UlW_BpFAK*_d7d@EL+~P6Q>S4m^)$O& z<5;v=c`FsF1z#C`pld420R_Du~QVSKX*KdyJ2;(C}~v*-d{hzG1KNRSG{fs91UdJ#vBVw|(u z{1^CI-#)CD;KX~B1mvkLAf;_qLp053XND)987q(ltIp|>-g!7k)uV!de)0;q!%@ua`eT;sRl96_EE|4A z^(&4UR{35NkxsTVV^l3J35PnefY+M1!Sx<3o{0~g;fR6Xg*w(w^4JfAMxYTAPfRT> zndq|J828}$7&GWY2xzRscp5%^0{i|5fPRdp&g~zhJN?n9=R-1t-s4v9?(V|eAu5*P zHn#_j%aL8%EFs=S&mAa!;oY%=Azq5doMbkVJ92~OuDk=k^rqH<;dZg33jdxiSO|N+$oe7t zp)~}#q$afFbE(BJ*xZnDiwmH29j|(LjjHY?Xcs)=(8+amJ|o&NJIr)2drcinN0g|2+>xrM>>}=%o3DOVKRvo$Ks&7qNtV zoRLz#ROLi#tRNLM1N5HhPMt)e@-U-E7QdQg4xe@@f^mpnei^HHp9+V2X1Pyf0s^+Y zI$v%WnurIA^652!+Vh?Kw+&}n5d@J`veIp>gw)Ua+GIm$mZ!yrIZlPQ@e_h2Q31bG z7n6YK>&(>+8$kpzU82>N(_YGgfx(YkqkvF=t!JLgU(jy;_)YTN1Ypq4x3RGSd4M-P zn8+;kxdD>i<%EBCxJq+hS{xJ6*c@`08CIv>!#8#}^KG`7xY#C?_aUP4aNvh)ta=-L z=z*YWxn_2hH*()coE?kQCAH!OcI;b(Rrnxa#6dpro{|JN9?2_=PDDDSX#@pBqAJP$ zBi#Ia;v4@WW!AkAM8yeF?6asGb4G_1P&2=0Tlu6NXNIzX^*2`;B%cl0KsCq&FED%}W*f|87dRZ-GrIv|0i*SGU$CGE3(}rUXF=j4cSu;;x!5XpVwkh%i3( zI+^~3pBKLOdu}NIhAE+&d>Ghn@&6nP*oBdSJ@gW4@({CwY-4DAHlOZYV%FVxHMPvi zP($8sHh8t7veQ((C3$iE?W?hvl>{mz3nm=puJJ%g-`=gm>;lxov3N7tfebO@GmKs1 z@B{|&By9B?u)ozKxG_xYSiSsSs~AHH<1d&gJXYb3Dn;W#_ZvCy?0rc%;RfjrC98Cg(PxWEw1BT-(L(nL-HgJk)Ry@`hv^QTr#UJ)+lycpSOIVOYTCi15z{N7~HO{da*Ty!ph{x2q~-8rW!9< z>Wq$rVR4&<5Ukx@arrN0BIWNsXb?|4U1VSOiPtgFJbDpe)yMPCaWdL*#8nF*YWCmH>(M0f$NpCLFVCsr|ih*Sm_0yt!_p=c+>lHiPJ&OD0AXW zg~Zm=p&mt!p!j5o_{-uQ?smqF@#7J*b?)P+!Q0y_t#tF)09ED^(PNsq1JWg~u7Y}b zu1|mj<%}6O^5eaoLB;iY-`kj@+w_eF|9)$(yN>n|9AQ~W-h9)y>KBaALsoKzCBF0Q zM~SV~#cr@VTHW1)_)l%Qj?{=&4aII$6HiA5Rqjn^Vax7%=J)%4SNL3)1q3Sc{W71w zTQJ?yrp67elPx|?$d7Gt%x?C^7+$crwDX%v}rI-&Ctcz>(6wH4aRb~ z!_(ALVf@b`X;lQFMzKIWbX=ZBs@$s7irRBq-}nA{f+$qtx>zsYb+X5Z)AvucT> z!*&+MGFK^&ph&spl<>5{w)dOcZaCYL7A6wE9Ens3xi6I)A3u9(0-xb6WLh|%N1#uL zby2@+6kz-0T3V~jCx%n!PqOep5?tWA8!!Dp-DGSPG;WCx9-Nwp(-`(C*_8^mW%-kz zK`(AobTx+qrt>BapIS;|GR5PGaDv;CC%LcS`qAKAw5>8kRdh&(?cv8$t;OutAexC& zZ-d}GUpZ9s+OsFJvCeR*t@W>Fn<z!{$?k@1>ZbAU zQZ{j|>Ao2u7B^oaVVw2d<$DWiM!`uw3?Hw!Re2ydUbw-OsPLINtMME=NF<60tx{)L zE2(?bzU^F5x>;*UHyL`TG*VaS;SA$^#iq&$(tL8*r{EsbSLmj4Qt`dJsqYa<`IZ$Q zw(A^qGSB5eOMAyCsoDGW^$9)Mth{g{Zfy+7;tj@z#GHoNSBBzEOv;1Cu-ZArq*STb zBV@2^9~SwY(yGKg!e3^q(h{#@8Q|QL0$B|h2)ZA)Y?mr^E^(R7tUp-`mRsic1M56J zUDqkZe5`pAnU>nM13R_}o4hG4lBJOEef=@fOtaVynBQ_Wy_Zz_e-v?7+LXPpj0#7y zkgm+vOjUHp-7jLebV-t?Dbl@@lPYV!!i`&Pkp8CKjC`mV?tDHI+m(i_sOWYCugKDp zrqz^DtR|KGjltFBA>D(lw70L1p0ftJaJr5RTSestuBIG!Eg_vWoL9%-;Z{^xMbH1p zP$ybv2jlhDYkGh@t9zMj>hK5=@Vz%|rVipEzRDYaAcZbrH8rq-Jnh^*`nDXwVhX9j zaZyM9Diu|}A&2HsOobX3-vvpg4k?rjA92;vjhyvjOWx&DA&IgkrJ18LLUoEdeK==A zbUOL*o`TrRvUV@`9TfMQ7Uj`9AO4}NT_qe@naUIm_^hg$WGTTe4S`G#msrz8n?7ez z^JJ&3J&`_BZjlAJHY)@252s7UKZtAOV%W82POX1f&U|~!IX%{00B-u2 zw}x*{?k-OB@-K^93IjC(hD?1=7oX`u!w|Vm&B}w4Lh{q{n0yq?toh^K#rXZi9mA#) zJjQL@0TteQXR`HOAJ%8rS11!yj8+^X9i-}fgfvb3H+A=4AM*SOv%V`N%4>|Apdvo? zW?4zDU2Kt=31DUNz|gQhpi;OvpNtSjX_*kL!m zw{$~UUxC~>ZRyfsyAc9yIk#LD$KE4jBYA{)Jgw z)Bv;oKC8<5N}h&eNoYo6OUC*DW>#*;%2J+UtW1a3oH)vy&33z6P(7In# zFx5lSX)=R}uKj|k=+%y)n=wD@9z(ig%(T0eGMRz`c|HjRB&BS-vDAUm^pp*U0E@&I z&7E*Pgu8|r+L5U)ZMO1J4>TysvyTm>LD(yb&EVi{ltuY7v^p0FFPBcPOQtB>O)1gU zud)#-oeT}w^)OX$aQvE5roU+mE33>gxeq|iy*6+KhPGfC-}(Tz9Bzr8bpI{=ZL#-; z;QVWU4{C{G9g5zO@ThI0tI-@+_*{H1>#2GVbbLlG*{Ubw*e3&D7YWN_ zhL*8TTx$~okYEoiiYYLZ&9KxTii3_9+GRSCp8_Gfj1gx`eF#4>e=)l~6rC2l)8Vew zqypouH9Ntz4iXg^t~7o*w7X0;iw2(MXe}OBvX8Ift9T!f)H6~~O4(LZi3)vENY+2c=26O$rNYxzzfKFEm1=#|m|F0?rL}xW;ry~Z_)5m!LIE>c zd0_^xBT<&?@ffr`J6rH`JthW5eq&v{zs5swEs|lDCOGw)=u*|k zkdYfvWpDWq?wXaleoGcZPX&fc_nji}o5eV{eZ3Rmx$U-*9 zW94ITU!(cyK29W?ow>b93~t{i?Met$hssfetmcg`bs0KV z%GFkv)BB(RQoE%p-uh4GTIr^!CPl>TxhZ*WmpF%rWp-sgWcu%p(AX6UcasdQ&#|Fw zCmkyN^9V6EE8%EqF`H3v9=;D&JFTs7w0D1p#;-Y9V>TXbLh#3rqRyzQdE^lsCD29h z=Av@*Nwb8~S~*5%RBBr#(Q6#jbw z2!U%5Q|P7T*1{&Z zNgFus@a{w*q9T^=l9b13q#xT2-rvC`?a&wJzM)uHC|b74=3Lr8O0NqvJ!uG?F4%O< zu&15Hk~EF)rwbUxd>f)2ulQMeW57k%K1gguY2+urR)lHv_x@fKbMG!C?W~dLY|Q|X z%lPf%tCH8W@EMk_(72WF)HjdZ-)-Hyf5;|-D7g>Xb(W?-Y9xf!upXFAI!W@ouA z1Ta-K=M5W*D;ik_0gM7<8baJP3yfx?)GrM+hL404Pz@V%;U*K`!jwkF+p3mm`v{|! zL%KDhyC~TVZ^GsvlsM-Xn?d^_eH=XKK78&qHW-*#Rgz-t(5m@bapCya z7cU4sL;J5MvRRtzuG_I7z=N}f8AQ}vmxW&z^SYs(zq~49|BMEn9G_=O$LGQl8)*3P#wz~4nN&;s~3QI^Cy5Wr3jNBsul#a26dcwytIsFt~)QH zB=6GVYg1UVy9~x^ru4L7*g~O}%V^S@XW-LZl{awEjJrI=YtbetE-sXs5ZDE90&Nic zV&3SF7~!z-oNtL*{|h7Vr5!;8*3LN=Nw`v6)^7K%gvz(zM>a$D=7_w8;al2=uZF9o zU%B)oW}s}i92p#9r}_{=mv|v0vBj|-4r`&FFCZ&{1~+BCg7uA(eeOp~4>s!;Ak~M3 z&$uLHjKK8UFnLnXIep@bsIsYl9fc?SRrk1B{SKNA{ED8!)ynQbkbm_-84Q@u z7}}4kU<=xd5y2qbAMWg1#}W!8)0uV;fhZKGwF-v=v`JlMF&{ZZe}V{J;c`v-MmC}t z^ML>c{@-hE!q0>BqjCm`qaJ%pjq1F9hk0D!N}gqB0POSf!N5QyyDguOa~6K9wobk% ziEs=7AHy7GpKmY|g7O<=3@sl@)I#3Y)xFBA5B3plUn*H&XYXcD!5Q;4QQvWQ!&bf7vJ2&aA711#p39U0=HZYa2+un+seWY4ptb{ zXxhlqgn$tQ>ELJ`u3ROs{dlPHKQR-{R|4}A-wx6Ra#r1FG!iEGfZot{83nsLl}w|1 zc{H8}24tFI(lM@EeYD}u)Td0J;IM};hpl#VtM5kz@h14#qRBaoS7ro@EA=$NkzF}< zKLu?9=(kpAuSP$?QT;7gv=KvVCXv`15dJSbBuh@@>)tWFKqj*B#fa0=vHgS&DZZQS zit1&Es(U|e7m@w$)m`LnRy&4w9RTf}?~Ea05SH@%11oH;eiJ7vpXEW{K~tRK5Mt@R z%Hg4D)f7uvzev!4?NH&Q-=uScbIQ)oFoK@NljX~0)su6PF1}iGAHj|jEa5Tk&R!oS z7{KOTAsI|KjB(|m-O_=$uHse{QffcE-w07xPM_CpKpF^^9~4Z8lne*HaZ(r}Y#J^w zm!D515Sq>ublOwL|B$UJyX)85O58fr9esvimt2i?dVI2?-A0;7IBWB6+I;Q_2{L0X z6pGrbUx1{4=*Jj5iaAhkVNaV`SxwnPFLfLP#o=UUKMEUN`D^wBDvewxuvwVbig1fp zITB)SY(i@UMY=?#;R)D?Cqmm<+yqe#m9b2oIRp*ThSv(Pep)`YQU}Cjq)x!`cbFUxMN=Z*!Pw$QB++f@;@^qX11K<{(KP51+ z)`O=ZSE34BP zoo&yckCMAuoNC4!uE*Jl7lEp-@lf90l6dU&zF2N(-T)IG*6~8W3tK zj_Re;Gbu7{f|vsO>O?!pScy*YGv%YWw{6STrMXI#&{P$V+Mr8Q&yRy;fm~404ONlW zr`>cf9J|83@|%hdbo|Y@R##fQR=emWh{s@+nFIcG zoplg%Elay#sLY9VLKNPTI3#8kpZ9gJ5X|FN>hzhblBqpL zPAv_9}yjcyV+0M^R z8Lje02QvNDoz(bf*n!H%y5vXY!;A|Hm4`LIbBb4B=r7kxI?a^Bl0ABT^Cdp|=l|F` zRPTF{+GwVd=Ir*s=2BB%P@%a9;hip|4T=lx)Fh+AOLzds)>0Hg;_5E{1NHs?0(hfe zSc1hZaCFsYCXdJk)Sd+S;DsMKxlGgqPi$R#w#?YDVYj|ytW^n|@`dM$Lvo|DoM)L( zy0^_=46aQK66Ky$7-t?aV~juFf_RU?!o z>#RqpaWbH5O4pr8A6V910O=j|im4iGr!#wLWQS0AnL zElk0t7_6|MsRF69rJ8;kGpv4IaNfDhmeM<-A*a2&?jJx&w10OBvoIP)b&Zm*sO~Mm6kWWv$h>*jA<+8^Y3iv&1I~$w!$3 zu=01COZlri>|~WT21XCnjgV93_|uqy1``vc(g2Llxq0jEMra_1$H($`pR^_Pylvz| z>f1CcH@t?JC^72 zNVuR%qJgos9xE;6Fa$?^&CGSkCzF8~0K3JTRlT_^5o?da?Z?B0P^-I2WP73w_CIbZ zKD;J~4}$>L0w*2|rYfxmz%7+OW)fm$%sQrITW^5%CN_iDInJ_g_(*6q3R7u$eyAR$ zJ3VlRF__f@;mv9eGF@~E!qaqd%mQhc_9K zR&P{N+)VG+C3>+3MLOX*{8`TGOs5o^V|Jge%5Q<88Lx(L3wPxn?n-Bbz8HH2Ij#2> zl1in+n-%QT4J78#A&E|?1BpQdL8+C_n`By32IOOib!UP@xO@v5O3HsFoUNCLWTi7e ze_@q~-(MpI2Z!CE2m_w1S;xf0|an~dP<=dDLu$>0k zo*(j%W3Mo&x{NF$>ENUIEarfJ%hcJ@6#Gt7i?4(He*^NP$*vci8)PLVlZoBzRot}^#Ph;mD4OhSJ@k9_J+N(zy zB|-?27o!X&y6A$@2@;H6M<*hBi>T3SMz5oeE<~>rWwhvFA{f2j$-CBj&OPVcd)M9n z?X~vW<+t|Q`};hf?{_^A5kJvvW5Hvcm5QvmPGOZl&chlrN?3cOTb8mG$bd(JNzAD7 zru`?h1D@8)uAJ~!r+3r>q0C^y%ol~$moJHtHVIpOmivfI@jOaDRTFV>n_12a?fS2Z zVj&zw*iYc`K9${^=nUgX!Ux6Wt{fzd>pEAJ?KP>Fw@C8gFIVACTI&ZV6NzDTu4^9H z=E}xPrGf910Jdg5V^1DZYnP@UGbBkxNNi+&U$=$Jx}YcShrQQ#(05h~j%S%0GQMh= zplQh#@;{PV-)UsL*xmGBwMskOBxq?p&Z%q2P^8-R$<)>^dpSNR7Si26%7t*(xzvLVI>g6z# znK#kbQ&CAzv(dKW{q|YuZH1kt6;aS_rH;<8o{!C5C5j!`zyhSyJbk%ATw#~|Da%S# zcbs*5-uy=)|2&%_b?a!{%xcFTJw2`n$gCMw1o$V`NVV0>tvCiOcBn9a=;^AEgwK^e z7%kRYy2xlk(KG8a{Ap|In?caGF0{HHqbyf`F-n3+4(Z2r;K%!UUh4I)EbV+G~ zNvcN#EMY?33Gf^NH9QjBQBTIxvN~Cosmn)%5NlRd2r&mX*ya~It|x0=aFex zUY$-F6FbUQ;Z6uKlk2N!!O}l~9qVTLpC5~-O*}A3Jpl#TGtG)! zHwcu#(r>&@o}?@@7`a7KwH>eQy^!j69+hk-NAe+a11JR9@(ymD2#8D z_@YssVK#*$KieT^d@548q=Aiz(_3-_$27S-Z=j{5c_UH1{nNRuI5UZ5 ze@Q?f`ni_ZAyegwb84?|3$+c&{?&U}Qi_Pb6D4O^tRDs50_)q>=HQ#XY!ZMQjMhC9 z23oHfo1+qgnRkzhs7BvIuQ|7)T~bTRH=<&8{TP!}W4|{{0PNRXvq_X2b zsmH=LY<0>Gxymf?LukmRXBuAOD1d1F8a)DbT{ST9)A+RqxYu-7$lIqYk`J+kIr#S6 zYJDBv9IYJ49K6+NM$CID_a`_oC#LETh-jtFW?Ytd!(c#Cz(o>FEh#h8;dD-JjxKs+ zho7we8Ser_BJ7ONbfk6pjA^SckU|S{XX~WMBYsZ3;x;Ws4EKv`g6F&eutxOP4|%z* z<+}3kZ9&X=PHY_x-rFZk)xIeu3XBr!fQm&q{#ebBs;EDI-kmOeOsEhgKtb91L_H7H ze!|`aTT~=Qo<{53q1cs4*IUi!2`38qV0`k+P5FB_#|72(X&NwnTU5R~nJYk%>iTK+ z&-_O&C83@k{_h(ZmjdCG2_gys;#{LZ;|G-e+&}2HDA{9tV76D=OGvm1S- zR;_QCE7{19JWKwEawzti2ag#d)h}PjxD|lkW&|J7ax0}Qr#>}t0E8p=F^;Q0%nB6r zUCx%P6N!eH20fgqJ-Y86K4Co(13q$MuxZZ2pLnxQhCG&_DqFxN}jtj5Pj9U)f~ zlCpvV9d z8B+Ocj)}Ydpy5i_=ZcCEXDyLUBpG4wcH^WSQP8c*jSZ{TMBc!ku1)d!Tqz$&HSVst?*sK~=WvaN;gM(+OVLAR2t0 z+MW67vb{Te14~p}^|+UZohg_?7cc1TqIrI-mU&VeZl-+1AGMZk;MmT#`ATOhY7x`n zw!0U>G=5!Y8kL7f&t?E+tZhO<^yG#yyJu~$39|PxU%L-KoiQ-aM!2dHmClT(SClzt z#$e1^-(im1BnX$o7&2{G=K|W$5Mc_(?hFA4uLBK6H|_RC zDl>vd_z2+osJuCnz%&*;ydlx%We*^DcZfC$%wbtL`RS8WB8Yv42+?N$a#TrMwKrOl zU99@XHz9uxr2~~7-rf&D$;m#3tlF=80StepCzT_2bbey`GLQeI!Yhyk(w1O+id(_H zuD)4&F&puRMLU}iS5hO1QbAA0Fd-tiBieZAT6RP;>dR%sj_eCyTP1xK6_UQ(QmZhl zCq-AdPREk9>&I-o58G2#;yuzRBL39VuKf7GTlUb{%=8^UGQcocM!|c2+oJ!8_?XQ? z9cWs?;pu1*^9EFa1GE6OL}gEfeFH+~ps=IQkRAHEZi$`3Y4UC4WN#UGI7=(gkdea( zjkR(pJ9R7s538FUS$kZSoyVr*NiHL4$RKF_eNa|V{4QF;p@c8RHWG*%44IFcrp-CL zh?~@s$QlZSIB+sVl#czRpPkr%PB!*XE!x)q!Q&zIU2!E(p2>K;P&G{`LLrW&+;;d} zmZMgx?hNAK;lj0?Ph(^VMhkU5Pa%h(Us2}6aF;+AMis;<>^#-*<>Z?w?CK*+vxNZZ~1037H@X=f%pFB$) zvKtki*AVhu7$Nw+=9h?!R#C?^%;KCvzl8RiC95MzjmeYz(lE#kh6~T)$MbZM=SGv%RWA ztd@NfX4qy_gw3mHT7IG~T_v~f?qK~)P`7{S#A{^tT-~05#kp){H}IhdySG@EaGRH? zEANn!e=k9zM!vhf&JKJU9aKXtK%jaP$L-0xc#OVky;Wt|&=0*o_)X`$>Ce56Ld zDUHLrUH{;nR1dzsPCI~D{5^fq(PQc&=><`Hy=r+mCsMdi$6LE$vnvf!=g{?rFun;t zRx^Hlzx$`3^AJeU5a|sH?--lC0lMov!ZleT0YV?yL;gG;U8&75$2A>*hKGR<=If^s zqV>Jw(oKNc5=3VL&L|R5g`|mVVeG6uISCW#>Xr+P8B965tXV4CUs)B8z{$1DZe6u74fv7WM8>%T2wx z(dx%t>9BI^)#)8G-^zKd!;2GPC=>nKQ_7{_~h^O6Ro?3DthD$b@Mik&GB`xB%dEc&P%eO*n z2G`iC8PbnGKs5;;>_VpUbN^R~wBq9mj;P^LZNQUL-cdY@V!hiaIz2Eu0M-95v^d#%sF` zB=|0lsCWQaoQq-uMX9apSv-?g{pDRqShh+dCB-_C!`jWa$X;B7DG3V=3zJ$7UrXXC zp`X`c<=60ck4JB^j#z@ndAUwyg&qq8qYdyYNDptsq(?Q1>F}=9a$+WP z{)Y?&1>Tl)&fE(Byn=10mb{d>V~We+iggC&Ptw6?EdsL*XuR;vw=*;q6!Y@$-O0m2*hF6z(q`Y2nt^(xe5ZdR%jk>j86iV0ccV{M<`f zLHZ(+V#b$A_OXXQ4OzDzBzaX=+JV;67EV)2MF$RvANY1Bm{?;1fLKZrws#2V_`AeG zS*4KF*>AfQ0W$bu6lo=|W|>CF=QAyOvVh<9^^miR`ed(B99^_42xySzgOnxuJm5Vn zrxVWaSF~4jkfb!^m-V(MSf+9i!N(|eD$=yrd6sQy3*Tv&F6YXCQGM1ZRF7bU^*6^?9aNNQvze@jN zQWiam`CQD@vbubG>blN`^xNGDF8S^NCQ6cJ#M33XLT^l19A!b&rKz~nZvWvn9mWRQ zv|ohUA3R1~bX&*dLZ3*{ogYxCt|+<{kIHUpQN=VUZfO{0P^*(stLZC9xpRKV%~RxZ zZYEqK_*ML|AIch<>A3*=6#Ulqg~n6V2p6!nHh~5=q%`lQ*I7s z(s6Ha-rTa8KY4Ff%$tj5HeGWzhCC%1f9ttfs`7#4Hd9c1n7_9-;_DBsLp6CC;rHje zy&57A*|d8>rd%KTmsAo+#6n1-kSq5Bxi{{)jVIllPy2J`YFQX_Aol(I;?#%ctn zbtkP$c`ww~ddSD199IYtMU0QAfU{Iofe(R<`fZX@#gUP`S&!kv>zZLih4_BFSL>UG zy2a$o7lI0OV_6BI@q=5e0<|i-6ebcGJ)7P3x6zZj8Um=~=3Y-!fMoZWG+YKT$CMUGg)Vz6R-@_sHz zrG)F=q&R=u8Jqm?=-G!6 ze5=tcH9@N(C0EMntKi(k#Kf_}lt*y-!DS5XKYQ679bC?9WJ-@e(JvF1AJk%pKl3)2 ztninCm|!fgI8!$Ez;s*te48KI>LAw!_-ao8s)U zx(vvpml!U~Q6mP2?znA^@A=Wmi)OQ4R;=rgcGh#Rs^Z&P34HTA-GsRoRL!ZMsUOGX zhc25zAdr#`Vh__4ZPHtwvH3~rdm>s?a9e$)ke=5|K!?%I4e(~<&wYabih?WgXdWn{!y*U(Vg!C1%&->_MQz6TF3 zi~KlFW^0vcd{wpo%zSfKUQr#mzNgl!dY$og2_wo2Ni35#8!8WuuWHTC{7I)K7F-JX_iIdQNEfb%fstw zoDTld)Sq33!1MzZ>Ji>(q1ie8m|m*(JBRPpe@oamBnLu9#T#FzbIarT5IeEuUUNRX zE;}pk;@Trqe&e4XGrAORBxr#gvi_H2W6mdWx>S;JkGQ8S(}3~GQs$8$rV><-x|ez> zxUGS^(IZtH`KfgXK7)AU3|#b3ZG?vI`)^a0C6)T-ApM1rz5XGA89_VCI + + +OpenMDAO Model Hierarchy and N2 diagram + + + + + + + + + + + + + + + + + +

+ + + + + + + diff --git a/docs/control/figures/pyomo-n2.png b/docs/control/figures/pyomo-n2.png new file mode 100644 index 0000000000000000000000000000000000000000..46c6517f153539c42cc907833235c009e7779e42 GIT binary patch literal 354348 zcmd43bzD?y_dbk(A}TEgFmyL42tx}CPGw5=!gc zJHV0sXfb0Xq+7~n!ouzkD7@`|d4mraT+A zXoe7@!95)1kdwLXatCTJDeY}pkpW5UW=~E{Ev>s{m8De*3O@)l%W#SZ4c!uzSQH$d z&W7sSKPATY?5KT;D$mHRYHUwk*HrctLk&B9I#B0<+1F({mE@eeO(y#`scBzMS?RBF zOQ1CA>fh5;xd}fi9yB$dX5$TFBo1DXVm!0t_GA|?+y-m2qw_tACg+by+CR~@9b4>i zHs+3`Zlcgm@qMBhIn|J{wLBDVe|(E@9=0?WhJ{WuVxc>@IyQ)>8y8L&Op|Ua?y`nt(LG? zi*LP1)~={bh0RWh(OGP1NYwSwXJJ|F~cHEyP?4pWzr1{+vGne`2=UK=qxLalGAAn`ha zfg;ohrcde!wXn1UJMxkLyaEiAZw|ANlm5H}_J)sKT}GZ%*vi(3l#`j2nU$RX9w{j) zudSgmSW)EFAJu_xeB`Dum^GM%#lgXW+2I+pm8}U28#gyM3oAPdJ3A9_1(ThVB~0Iu z$MskBE_-fvuS}%*@J?^ya?$udU!PK63J#2mSu{tDQ!UW`8}&((aFL0Uczy zIm5!n%*yin-au8}o1Srm*w}Q@!wl~ z)p>-3B#0y-BBbniYcm;54_{@hQ_k6n@?an;Lm5Bo9daNoJ$d=Mrkarh(?{f$-S}_Ehuo_<;hI9L&e9KFfTf!w0;yaCQ#~zEkxDl~mL0_cKNgSQ_jkn`nwyn( z4-pzNGflG6iWbzls+R||+7|zRYb5zy$8m&w!5fVrQ$9kW|Djug$nOPP@Fm9Y!Yd?k zNpJn%AJb@5bNG-GxpyBPyt13A`&H!s(4FT_$W1CtzKdUbdJ5JV$6=#JDmjqbT>old zX8=+PcVJM^=g!U*uAgblZuKeA~KN%A7K;`uEyBKeLEsrm(d6z##dQqbEH!B#WGn1 z&bn1J2Ev_ZfWAb@a&ruGwmyz24bwxvcMn{bJ3S{VDjJcP$Y5k-q^Pb=ySBC#5gtzF z7!QW$ zLqWWesCVv23JD2C4(}cvJu2la!vIg*aqK8#V3I)#fow)PE?3+Xx5N^qp9rFzBPT7| zXJxIaC(}~9Ap^%(unutISv_T)oNA+DVy0%`2Tu7^YxCOguc+|u3%BZn+6SB=(jAUwG=Uvy|xb-;FB|E&ghZG^5o)OZy#}vp_zyQL^(&&u!K!b)Z<<+gB6u zyQ*_qext2-*cs~sJ0Q4I|GAmcERn;*!-opgSf27amg<4&=_Pq$*T?cb%xWxWU}(#k z5|QgHg_2*BdDPMjhV=FM3SU%W65kmNhbm&he#nmxfE`!cJ2Q#p*3vHL^MA6Y)T>n8a84H%sUlNdvQ}im0}Z8LvaXRE5+4j ze8yg3*w&=1fghVTzCi`A|BkJu=78Rqu()TUYaTK``~mtgSfDCVu${Ed5@{N5dNlc9dq#`rem--FT#j5S|Es4t`NfIDzb$GC z#r&9rKbi;c<|m=pEb{(GR{W&XSSHSW>}VWYGF>s_suqz2euq)T-B;F!@>oJz))o7g z$8$YE&$sk?mC62YHN6(4(yZp1hDvk=8Wly-S~ZNtvZdoQ=3HIZvSK$MmZ;v5Wq}<) zC(A{f8~n_;&hx=**a4h+El88q(8MtikA0!G>+a{X_lJ;rdkGkA3`lsps7)omARnzjdk*1}t=v|og5D3VdF42 zJjZZMGqsRMnJR2JT*F~z$bFyk&A70u?r1c-H*RD5Mq<)s>9}lhI3c3dmUOSrVi~nR z$~O=AW12W1`xDIWIpFT9O@qTR85kG}#zG~!3#P_;oqkX7Uxk4usIEotxHszaapEVr z%k|~T+d1&il8sz6oZd2OH;Y|yty3oN-Em4#E7mq+T7L0oe}6XoIsL6*JYU+nMwjFD zT@mM_&Ad5BF-d!_ui3K6^aZL#5hNZL3e!%X@zqTIHFR`Rn9;;$;NuV)@kn%&xsNuB z2kO>OwB~^+8pU~Z_@3MQ{2GIh^DYsz^tROxgGTG2@4&pIdOYI73V(@Py*W|V_W1#v zbPAJ>X9Kr^vh&6126?;DUtReVv=qgAPUo0s)_!GSR5TbE<+s;*t2a`c&5+0aw%phx z!mxlA43jr3h)Vvsm43T;(|f34v$%uS?^G*>w32N)o=!dIY63fK7k0ubEIyxDg1~^O zq{UJ2D~qt-{zmu2YB}Le@!(>a+u^91_kqP@9mn)wBJLr@qJ6@}FG7W@+?jR3!NDVI z71+ssY^$V+oY0}UF%qs59oJpa%d+LsqvWKdLXbxl69DXfH{y4}bPM$xc+J*!-*79W ztv8|nmxTs_?9NtVNwP@+^V`%!$B<9fi*L)khp0t+iS7 zTZru?3+_Cns3f~S?sC(?3~Ey<8S=kb22&YSY$|`OrLs<9I}VU6M`k0h{q~g%#=e zlSb`4)1rQxpTu}E#At0O%XW1jeG!5`F7^+Q499KZf?2n>>fbSW(jn`o$KMg|^UR{v z`*v|u^gBc0C@pdEcRdpRrnRf9rdvrtK|zr^jm}*dFTRnAd!W-KH8(fQrU%$+XlTHv zeBL^SWAt%~3<(t~$HsNIW=?EQ*OYt%oTu{zFBd9~C|cs6--p|r!Gtelc}Bi*kA{qu z?Gxtl`D2mjyiwqyp}XmrH7`2p!qXLYhoL;B9D<-9uU|sIst@59qHRxC$A5_M`5Bj; zuwl2r#|Y4>t4HUl55CyQ3|Mc)ChQw!z|NhipU_-(6!f?y+Rox=`udU|^K>(BRMeJ~}h zbD^^h8n1$%knuSm3`~+R*Dm4KUhMV2!BQe!_>UiN9JZPH^-U&P)=8wepP60a5+u2- z&ihzQRZ3J_&gAEWUimnas_UwF8DPrRp`c-k+uGWWitcUK?{wpB~pKaou0; z9bTMFXHBxPeuPQPt1h-k2B%4K>ZE^1>?>^7=7&+Odi$05wOQ40h~isk3LFHXCR%me z*diT>g(K4|4;q7cqMz^*ndv=JpTSAo-HhN}Gt<@}f)ja7%v)S;Z|p9{MnC1RRcz3A z{$*HY5|p2o|qle)#dX?5(_N+(dzvDs8@#55q|C z1-n9Tn850MYfX)F(9^*X`_EH-_B|Cu=wY4^Wc*?S&`OlIclSHPB()@QYwJ?}j=`?A zjSa2ITVpLN(lqvpIYv08@GVOX8RItzq_=WbdZ{O(4A{|+9o^S2JSv4T7(T;qB{6p5 zx>F!1wxLo|QlWV|4&D6un7VFr8X7DaJQIm zCRN}~pFgbg%D!OqI^Sv5mF3xbt`)5(Ae3pMub*DDN4q3~rjWu#ZO&u=P37AVY{0#; z%l8(nW!jmn1yqo~uayu2zxq@=Qe62QMD&5{I)T*_le|r)SODNJ<1Y~z?x$~KzqgrH8J zP2bD*41LQ`K9&P#^**s1Bt^=nv{~s=ciwZlJ2tK$Don^-Pj$24h z|0!%&sPUmgp?560%q(^_`IF+tBh9DJjDw5Tce5E3r?PT#rs+dp%EEqhP1fgf9;n)IY2`qePVBlFHW%<}) zp6N-GD*&ZM4Ey+34GHV&3XiC9qGjQFi2#YK(Qhs*K0QM!Tmjl-z5RLD7*}Rh8SR1e zdKr1Hwd*uK4OkTxYZgV)H<}IBgJu{wTOrA&3;b$lQuvo#e+fK==T#a%aob39Z&eEZ`EeJR5eqMI|yuF=sHE!D~w=MtvFkGVG z;J`2!^GACy(dk_FWyFHeN>UY>qTM}2P%7q^(E7-w1*JME3s_lYfNkmqKMjkn;$Gm= zT05ymtcd`5XMX4$;8NZT>$#+td=>wJ&$Y3=rcOHZQi_V6u`+?}WBS)G-4R4^A5d%r zef)aj%Re0BBQK--%Tgs*D48y){9}dA&BGB9OVdLk%;XGN@?Re3Q#H!y6ev$?*uLt`{aE`f4O=Y`(`nJFB*r>sIIM@mJL)t+z^% z|Ahv#7hdB_SP!rQ@s+xVzx*{M7IaKeng(J>fc}bMW?FR2#H4iQC%> zuZxy8YG(w_#Lu8)o%}|65<8WaZ~@Q!(n3nsOnO-TpM>F8q)(iK2GWcDJ%*!0&|bE9 zQ=&UUl<yn5F*Ia{v%?3#0YmAG0Ux}=iN#h;u#J=Rf ztjIAcu=O^|eUl=Qz#%vNhFz^xwb&xJI3Q$ zaLAq{xy~L8HvaqznaOw~4XL}I>`CqQ)WLBJhvbexu65r|#+$oytQx7bMtGwSbZ0M) zn-Sjv@QjXvI}u*jyex9phnCQDt!LLooln4(CZR3qFHUFA4=!e=tGknEQo=fC9hE|7 zo_icwoLZi;y9t1;S4+*eLgwn#W)nE1jp#lv&V}YjoNDwJ+SLnJ9|g=awR$jNV#58l{xzxlp<7K4LMLbP}?(X!cB<1h9!H zxPr=?Nl|(d{VF&Z^tUxqoV`5%+%Wcc8?Kh{aGR}~za7o{*v?d%m7fJsmA@V&f68xP z2-})eaz5J10l}U~S+1}&i{}y0Y&6sUXO^`IM`N8qASzl=!+_9YSWTr zijC!bLI4$e!&+A2-ED=Xy?oCdCDc8e4Id9Gj6ZlmAwzvba6<7sKQL9hUPb-6cY1 zk6K|Czs2oCn$(fuIYu4E+oz|t=WW+f13#>vK8NL6Tv-;`K6EET@q3U5g*)rSH8+R+ zu+#Fq|KHX#KAtH^7JPWLEr&Lg@Y#5_l0{`o)c4D>H&WMkE?DpD#6fXf>zDHz79O=3 zkoW^-P&OeRZgQbF_}35>1q%i^=Pd@*Z%1XGIBr=pFw=vLk+Z0%oIytP>y{g5aNEmd zhuX18lL5NowRV*A+eTJR^RDB((y0D^s^@M8p*n+5N)c|XpZNVxlKy-6InXQb(LjJ` z17HV=C(o$4OiBW?dl;Cbt?ZB!)8NkoP{rpRaZbp_)tD`n=m*WE)33IsyJ9kz7OTvQ z{eLpKwA;8}db=akNL-{}>9~e#b0F-|(eFo!<$PPt%|alInE6DOgj`+S4r!>^TB{x` zj%(l&;N*d9OBhdIy1LR2myvvH)Vjc?TX}V-+KNSC9sKy=mvhY*@3<2GMHJJb@l5e$ z!5+F+5`7Ab0vsq3{R|QJb|V_!>h!i~CWs?b&PTQAaLi`PiN;q3SWwLB=-?7#lTIrQ zQ_5uFe)vP_XcTI}`&ieF$|jLhB1$s0cBu`kFoWH6!djyqmiK@NEIrlP(LHo~ zKa`P>U;0rKzgR4Z!{_L7=;9p?>KPQO!>C+PR@Mcj=hs9-Zv zk5z|TLF!R2mMse1=vMwgc7A~JN5I~u3@}bAKOrC z8hMWh8~k9@hxe>~d``|U6vWW;h&jyPs#Zg6QJ^G7c>(Wl2S_H@3LRhH%Q zu+!0U6WVen@jFKFXW`q;NPwS%tT0~Ccs2I+EG&z}R!0a9lgS@`^9}i0y{@FK&G|1g73dfkBE#l7 zyn8$@Y|tOvduWCDTEB?pAy3EP)~?3gRea6#o+@h2ZG(x9o)PyN$zxYhw%%s$nzWXi z+Z;ru*{>orUd(R)`CeDwS4A_%OGY=vggzM#6XdlyWj(1)e0Qy4G$Z!O#(UTL8E7iXq9UcHrr0Nr< zgl`4Xz`a#EP-v=Ewn%bIAgV6Xuu{3UYQHhBEiSqEu|*NIEjIi}yWA>ExmCUMxDlT{ zS>Wk%Ba7{vG+?er($fa{K6}~KLY)$PvH(cs(DwxMru%@cWuD*Y9n~C0AR;SA`x=U) z9j?v7_eQ^LXGj2&rQsn);~BFOiO4X5&L2_+&Wrs{=1Y8Gupni0vwBURqBcZDGWCx} zB{k5S%}7a(UXYKMo8vi8TG=%;P&Mc4jCwb@E9NqDbE~Z9)~P$)rc&#rrK63)Mw|#w z84DZ=zTJqD$Wg9>kL|V@Cad~~Z8&RoIv0sLuKLA|0NuiB&ps6F%w(!VKI{w#$%8(6 zV_nhHhyG$UuDUZ4y!xbc+MV@i#C_gy&L+dB+NTB`C5i)~3im(};~Bz*1AsZoN&-Bw zJ>emJ^rGN08yu68?1o{)`n8SFO&(e`wmNO%dN_{>Kh#d56^D5Tt7L%pu@zto-5F z<*uYd09raST&9v?EHRL3o$7JDvtx^xviHnh>E{5iip^n?bZouVS_R^tBG~nDe*j!nN3f`D3 ztPoQ=(iz}7ZUmkA0nn78*3+WOO67Z_c40S5^N1s9I&h>S{-)d)P>MlPzW^*>qDm5A zJuU$9)m-VE-gOznfRGD;Cfdr23FDd2iL!nr@H>8A=-AzGG**9(f892Ji z#!d3cU2b(gL65Dp=K*+vpL)wCV{s{ETnU^~CugsSRg9i}477?Dp1PSyoO9fDGf{6w zeB7pgDqdVE3bCN{$UaP}m>VU<>khdm;ZotIMb}rBu&unj2%{gQ6N1z>Rli&)hP2+a zA4WtqJ|Ro_@FIe*9mQc~A6P=K)Tw;S;M9^;(1`w}FQxy;g#B84JaxWI#%71Fh|O_ckJmV5a1PFIxbVBs8;C@) zmN2@UQ3f1hdM_wxnbMwj7yKvlCt^XS!62aAA1lPy#Xo$jER24BER`NOaa3ucH0bR` zKPr_LxO`uA&GG+*fCnVhlF>YF1RBrIyHN!p!w|DI;(}28Uy{vpKIC{aGxp;=8l#@G z!-b7S2I0=&@QrNQXe7kQnZ+zmL`FuPo4nwBW1L0=m=Y`xl3f+WRK`F*`9V!?pWpm>^XQ^^4iYy|F@#a;r{zvyyc|0_h2@ z*iBiv*xY$i@Y=ffe-%q&kcJ`EQ!@R20E2qYd5eUj)GVddbM8HqWrOBtw4Un<)p&Ma zZL--eN4jZ+xOOWY&1j|@pZ$0(2PSIfA8ELD5t><8scdK3(^4#VoWO;-w@hmgtnrGl})@B3Ult{cWkP z_=Alvm}N!3MfU`X1}#-M%*G6hg+#H%%0#H7ve-upclY>PT~#D#0>X=wNl*X zt&qj^ArU!5!QDLSYB+wgbvrolg4AaQN$Ni(z)AO@kSyjz#|RxTqb~vyPmChs6U;9Q_v;%PzE<(B$s4Up zk?88S{#Q`%da&tJ?+}#Q+^mw>aolpWMM+Po?!B5>(CYW>zi=cZ)HoNv^IJa$k=%=R z6n&bTUGWuci=3^s^}Q*2!B1L;`{TJ6-ucmJ-$%JwM`6IwQqnL;jpZJM`}7lQl+azu z2|z-nYAjk^yToO}9a7?{K8tb;)3kkFDM~V5TQ>>|47_JH$E^x*aWVkEqZ7fT_%B*i z#?$oMjJAfd%8h2gh(f8TEc2NdVChMR!u|K&HJzXO?;yxHUd;f3mqPO59eXk|Th;O6 zAqmJFxrZHR-6Kw)fM@k^9Ea3fps5!=j|N2k9X(op39S8IBdI}Iz?nRfB4sDn_C`jb z92l3oCnZIxlf@;auz0nEua-^vrVPWR?Phq=qH%xh9Vxa|I&FNZq{HH4WZ^yW*o#Gv zeHWWB{-IyOwl!K!IYL1JMyr+h0QBsYWt@8rTHEz_IY z687|&_WLJ$=M0GD9uFEIO9S`G6WUh#d%Y246~>y8XD;F^vbIL94Jm!SUE$1Xmpa6C zE_G3{(HmuJ%gxs*!Ne|2mC$k3s~=k258ZdRYT!}HsUDv6G`54G0{0GtU%o8hxm6F3 z+*d1(u)rTgL(`JC4lC|Cd$!bczI44^CuLhkjBlQD$e;SxPT5$k10N_Wefh4X)j5fsyoO1^v`>_u8UpSys1nI>- zm)D}-Bg{H&L}8E0T2G(~8e6-r1V0t+%WxKa$ULwUugfIx^aoA8`iH^#Bqp0BS<@@PrHu=Ft zv}}BxYCKGGRL7~emU^QS?E3?%)?ZgW#e{V~d3E0F$!mZRNl#@k$a^HM#!VTQy>i*C z?)v{5aBmsi<_?stJ3D&G{L{r_VbjvmhG~y#BtVoI{mUyTi_+vJEt;U;Z|$q!{wZI0 zVjw>uDOS6_HPk3aLYNg=bho2atIj$-$-a;Kj0&?sVKz^RhR$Y1ou_(zebg_KS#uJ* zK#|Lzt`m~$>_fl_Dwt2dGcI2Lx-m~ZqocQ?z#q+3gld8bODk!$h0bdg`6oKB(Z-3^ zf1Nnm>cfZx&`>OX`yQVv{M$E#kaMD#8d&2(V*V0*U#j)$b^y(wGi1$XT?7ptx6LzF zX8vg^AY|0b>?WhFRBln7qpTMo0?pswMt=JAQm=*z!2C^qc3KKd290&kMu1Z^pEzAN z1MvW*ZNObyZVOoP*6wZYK9`-vf@oW2rU2^KON0x&?&Jp&-I^X$Ym8g*RC5ms!3g`f z?Rm2G{c~X0g9f$$0{~PFj@H+n;H|r`Qa9ae^AGW{~kLwAwLNwilL0B zCiT;=4h*33tC&%-)Lxz4u^VdSw#!D%?Mp2H@|ys7Z8S(|hlqGn96s>wou8#<;|7Z= zOAIBTx61iCV{_+0gGF*5%du|L6DMevr{U2vbM!*-d`6$R5v}ww5i|dRl78bRFI5>& z**ew6(@96bWpq%7rFUF%hlSJe41IIh=BR#O_$xm#%?w*yPBx-tu49(#k7)Y|L9oPP zo~mKqV_A23GcLKn0Gw!F@hOp4&iU)F^3WtcaMDoL74f`ktdgNg*5cLvS2(aJ0Vx?) zt;L&yV*IV%O3Bx^6P=XICz#3vF0Na^FgDr$6`yr?3jW z3T+nQPvKFkF4XdG9a!r1xYp`R=29^3chn|6>EEBS@ki*goQc@7Kg-I|+`$;$i7DoD z>23l|BSt%kBg>l4lNsHQAzl5wk?95VXwxr6L_ zU$9SCtJJ8pMxQNQ>?6+19Ly8*t7j5k`8t*olrYPSj@>5lABi1vKK-4a@VCKXdMk)n zMKEP?SfKp`DHO;EdcLvk%3xzdHW{j)6X&SGJu&97|6clRF?DH*C%gMast2>x#rYb6 z-nVFrGjO`5b_kEd9=n1e7&t$0wHjypxV(>&I8 zf6J(Pxc#keG`TLNnTJn!Z*PBtvF+_I`~HvL1DZErQnQA48W^F0Ra95y=ORC;iX|(? z%?kEXl|||+--%_3oufmW$qizOX*Ee@ioN=dwYL>Pf%$?ozksO2#Ao{^fcm6|k%>-X zfzv8xFjgA-LBypPzP>+g%@L$dyk^!dQ#~t$_oGWFOuo78Lk1-~wIt?MAgO%K1%Ip7Y)UuMwoMz40^jrNtu)bm3IM^ z&eUf+`7rna0jIQ_Np@D(4QWx1H-fq$!1f!|?;M4dXG2mw!WGQFa>IPxYAo^?A*F&> zXCuS(>rh`=wbPaTPR)X%L&A{qw0S*=z)%M!IWSCIZ2pjtS3MNufBW5#9l5)^b-9Y< zTV?gg>SmXM4Q*5L(ycv4AZY)$o%X9-6yRBrb2ujQ4tle>yzWpAP*aNBsk9pRtieq%jqO@l?l2R<`<3{r;{e-9xIsKCZAA? zQX`|OZqXwbn_OQ_bsY`9DOo?or~ibxu(-jX(M_kWshQ!S<#7jtg!xUh4~yk6wU8mG zBV;43qiQ2_6DrM}C5#rJjM?7O($ewV2mVX&{5{S$1;I!vK^jQp%=72L0EFkjey6DL zG?|k#%smtg=;F9uid8ObW;?i)r@mO5LEH8=u zLi+U7pTuyP?|60Z#79JVe9kGy*U!JFt>zo!c&b}W;mLtg?e`L~?vMAh@Wgd*e?D8v zeXjQIs3P(#ztQ;?V$%|mB`oq$FI=;7GnE(Y%BiSWbZvuzpr#dfe_EOCs#veLN4u*9U56SI)d( zweUwgUPW^p9oB-E=GtN6`71tE8kPrFPaGp7c!hu-QUo zcwbE3&feZVIyHk^=@l`*h|vJ*-P|v9TCZ!gN2B4}%7?My7Aq9Zp*r@45{I@bEA{cS z;mK4Q>&{Av?Y?g%v0lK*Y`Z1f19Kg5e1~oEmt`yCZ@I-4o%HwXnGW09{M(ddG@Uc#TS>z0+PTd@j?uej+mYzps3iCGDWf5wwQ6tr`_kaLLQFE( z>CuYfBKw}U=QLnPQa~F(0Yz4?-WwsI0ptsf!a-s{kog2i8C$!VnBY5`)g-}uRU}-K z4vZj&Wc0BkVID@IX|_4vTipq^1$E6D@bTlBzvO}CzvKZOxAXX_Z%T#9tp8L8q>n*` z?pK2RzjLoE~ zsL5&*c#(vyQS4yEU2ldak;rb|{Fq3T2IA&I78@zZKqjB$Dn8Wgsx}4TmT5pi){-bl zlzq0ZQdh%lPuLDJ_HZ8qR^1vmcGfGA}V;-&05y$EGQbNQtzCLMpBPx zoeJ~@c!33>g<7O@(t6s5woGC}E!G)_5Ye2{QtVYIdI)HEaU=k99XK|CGz?uA>0Cc} zKA8=?PjhZlm@u(?BPB?V_JF9*69JM^^8K5tva;a@mmt~AyEJ#Ff0Qu*GF2a25gJ&} z?@cKL(029-j|evf>~Dihi_+oN?mp15%Xgsjo1`t_31dj})(v+agmSG+Y{mJ3fai#W zcAa8ZJH133M-95QUP&>~dcnG9!npA za=;TcGV9zi=Z2Ba);GN5wZMv3a#h&_z^_zL$-6o>w>R%O(6My;C+b$~%*fet7MWLX znK8CiG-;7fUs>mGt=sq{#e|cguRSeiCKKYMq?A=YM`wJ8uNJ2;x| zQ?n*|zOP(4<;`t}I+qf$`Sn5VaYBL7RA$f8SP*m6)8XuVS%!0vdDWywezA!}ty4Ka zzmVGk6&oLfo&DK+u&KG0l~l6->It-q&Qjo5U*i^xH2CU6ukur@Z`!nDN(B7PaQxQ3e`CQZKZ!%yn{-;BK!osv?VJl%w7} zrJ+Zk-`Y#X#j5{2$oyQSPE528(s%pcFoVelU^`3(JmvV5dWnK&#(|VyPjd|2&+{Df zN*8nOO2YbT_?X|GFB)De)ku_Rr1or|vkY(WoP32SDyTAto9L38NzH~YUGvjWnfX&? z?qCNbgO!lMhq*Pgn5q4!Gfou~$p z{io<)8&Ar{7fRC~9y}DuzMVWE2iEpTB}zH2TZDN)5B${ ziyn{2ucOy^EV=>#1a9%LvwaF@f+KvY?a080*Ikv8V?v;;mlvNTim?Cyyh~c*XTOBaNV`{ z_C7)%VJ)l~Glj}obh;;1dw5M8B|B5MM&8yD9KI97R5UE%UzwEKY|?ynlP0BD+>zq4 ze05Hx%{_m0(SlN?LUof#B9eu8IVF|3n0_-7|N1D?w7_CVoqjw(eWJ?xZ?C%f%Z-5tWyH!Ry)eB4BNyWV{;gyV^Zqh1cB z+mFJNnjLx?-XkyDZ}2F{u{M2{Mjm|ZR;SL@kxcjQNkjV;f(}vGpdBILtYgcmntdYT z@=VQx8f10m-#&ZgYpd87>C-PgtgWZp{VA5i-_pZHri$SuCa+Tgs{Izl;A0&Y9sVX< zm(J$V33s@IIQi)4b|tJ)_UaD_f(Tjk?d|f*oK(ZT#^dh!ivF1Erlb7AGuJY`2F^^c z;9xU`W4`mk;3mU{hKp5-aXD$gh=1ja} zoJ6ALTvti9Mqt$zgh>*1GJYjD?fdjrvRu@*hX+JV(-94ofo9=J@AF(SfvwE@JkY4I zf{oD7z@aalX;V6I0D%1TC0>5i){6)ASpZ*SxA^K*ZrAfjqsBIia&wyH$~Cu~%M%(qf_(hP=mO=YzAFTBa5zjzM;Ux%lVAJbA|1W@SNoa%RC_T5^ z2yN{$i^D31a_+<75(Y6MRFpT@yG`eaulxP6$cTyc><&1PXcysAe=Htl`{(0xYF2GIvS&*qsO44q$K~QQV8t~IlGfb%bf+M;SH>zN~wspzkMS{n6XcKp89ceblIn0X55UU=l=cyd-A#xeCnm^C-MUa zQJb0Yw{`N-0!9b~ZaUcVk8ZseBc%mwr8TcDs1+6>sTCkzr_*hNhL%jVRo`xI5_ed? z?vNKKQbNB4hL2%_zuw0zfVt`ueY_DoyK+*N>8E~XG`7s^O;*8!zPYxZ+V*_BzjXOn z*P5wi|{BCH$0#a13 zMGzl(x1(?Z)C$Q57=<3{e%ka0;BXh%xrA0fv`YNFMvYc?&^^k{k?yaF)&|R{ZwKW6L$~+w6#Re*_4>>i9=N2>=AGtWqgzcG%3d z>zca9s(NC&9CVptaTYs9h*h9a@5$0raCw5@M5z*ZoN{1+WC^k?@n{#RbF$%XgDt8*MZT!A$MFi&)e=?(c%% z&IhU@PC7mu5`O6T(Du=Npg=C{qTu~HEoda&%}um6=~vV+{cf&u@UULkSSR}S5l?B14_vG#T}8!v$a`KNd;_VF~XdGZ#vHEr4?nc%BSCdo3}r1ue@ zkh{eB_lzqmI240W31S5O1ukTc_?#mz8V>mQ>-NlaQQ}4kKuWgU6fL=2N}t)mqBy3cK1hYhU_rCBFwtd zg{^O|0?*4)jZNzT9wH*{a*@=cP$h55ac$0k`YkTA$l{M1YL1n)2*po{_1|Yhc^BMU zxIpWyb?5C?^~uZ=?;T^*99)y)EvcGWY@&mb&Nw-?C*-qy^DV~bs!rMkk^6LQmU6S9 z{2UuMmBC?J>xl@;F4QcqTm2pFFU?u7?pP^Xry=`H|B<%>&`b_k7gcF_oN98oRk!fB z5?Fn0wS#C=*-1gMwi#z2vtOn+PGNfFlzqJ&ke>Xn$nmJ^*kkFQe6DxPN`$L>X&$S9G%_3L4&LDkJaeH~IXR5OUe{;J=ask5acY>0|| zR66-I34>rhi}V_%AtjS^S&J`*GsSAw!@t-;nJ^*;>RO_pN&wQTwI9&lP;<3k!B)Qr{WlW^yQ>YUyry97Lp>~>ja>{!m){nh#nBPG0 z9V!7me?IBBW)>f|O;+rYbO70Evg zlF10zQz1VCjiFO4gy=F&K%Bp~bcjP*EFgT7MM=5)Dem#Q_Pdifue6hTu_SYRoSkC zkk-#m*q0KUM<0(bPa{6A=bkE8e=(+fMrmm(^kW}^Bj(Rq_b*uc56?1*l3LT#olP&F zx66}qpLr%HUA?q$|En{Paf`>@&PVck*kwOeB6x|?3}heXM%vwn9LO6ws=Pq6_3?Ty z%U%3;GCMZU3g|WB+lckUJJEnQCwhB?*|WJ(!eXf_@I-PSGM7f2Xpe$(_bMyiwD&4a zjz+iaQi|W+nVDEsSum^z9oW0;$J3{TTDIl*H5I87H1g^K-*Z zsTpwFG`{eJB}C^J{VtinDwi&o@10lXT(9jyHaYq&n9RVerQT7-4;XXovV;-)P9tP_bS z#>0>)PDTomc6S>gByQuTJZfs|kCeBDQGH80PEI=(_A61C>~SBf^T7`nV~*q~9KNX z^upx0{#`LRH`{w@Tdjm~Crhpw%zgkFZ@c~|)Fh-Y2bf`%xSO(+=QH{~*3o7ZASx4U zx0)v?r4my41hrcjf!N(7Yt!zNNBHsCeV?i)<)MjFf0**xhghbMlOF2X)oG2?fPu#D z8=0?#_>{qa``L0V>K&H2#`kzwpI=6lczE`TzVxF1%2k4HJ|Bg zjq1-hO$zDblcLEAup0R()fFuh&8J}7rSZwHK4rsR@(4HH@A1NZ$}Y0s>F&i10WsLg zYvv}}aL~ll*W}6uOxk)+B!dQroWA<}wW+V8_Q*{mSYW=KZcs%QALw^rDK#U!Ty1E7 z8I!c%jhX|R+!^Cm5Jpzce8y#)7bAJ}T45U-^=*hRjmyz9m&VQmF97cW?ExqYa&`LZ zn7QL02HkV3lqnCu&1cL3@;b?aqOi!jN7o-7T(VptGX^p zeT76^_GTAqCu}#d6bDM%rW%xk(_Q2z`ER94lxKXU4i~ucVq?eaN`FwW| z>~d!-Cr(aJ$z@!b5CYd^?V~d{u*B-xpbk<6ER}!GemtDVkEnOn_xVvz)hVp;ZP#^m zV) zxr)^4{;4h|7Yf$9cXJwVK_)~$R=SD_2-1(=wJe;dw4md2A!bzcKQ(azIHM%iCmcSs zi)Nt(NWXYVs{#Hr&UzY9=4;6NBLT=0>>&V2kNa0i$baf)p*^;@05LNlSp&@fiRX;7 zJOB^F6RbPg$ttt0)xw{X{)dWpgqsc{(PJy4297!cHMxHQGJ>tGK+YzW>+A`a5xUZb z#@c=sgsWz$L^`1S!^rr00q~6GD`+7wd_aW<(KlpBm464o-#nr4n?J*VwodzH?`LM| zsa`yxUl%~_@p&KmQ){Q=3DESMgz)t9bX}TDgwV#m3+$iLSkBpSty|CHB06Sl=$5qPb_*O z^NO4eWs)G?Y#jEVVH}EY&PLtZaw)r zr-t1Q%10V2-onrx`=rca>aAXY3>fkR}qtzLvYRzI<&5|(# zYp~Z#wBUY+l%dnm$wFW@rgEVC^fI>)@i7$>%k(PdF#S09C$~-avlUwLJtLvp>TSR>{QbIRI28GS@*n8G&$~`ELaaj=8fdGYWZvmCSY=EhsEZ8KvUny+jbCt zWcKOVs4^j|7lfO|!lImBvWq$6HY?R=Ha>pTyKeVBDYdR8t`akYNtklE&YHh*NB*1x zv}g;{*6r?b=#TDGq^TcDB4XL7aBo=3ZQciPi^BBNP@Om14FBxKOajP@a*{7p(?FBw z>nqKV;vc8fZq1uIm4hFjb6m!gCSj+Aje^L(i(9S7+ThEui$B~=K*OUg`B3z+#cW6s`Oxv+-Y8R~0rK)AeUQ0P6Uy_j@VPu4_-FF7r@R1Kw+FehEo zV^~oAkH-0vOZT4kx|04qY_JLC!oMJXtCq*6%H4^t8^auEZP9=GpV)b4#f|IluD5Rw z^$sFr`T!D|j3&DX52(gm?!>iUbhIx1489)A9t8Lua(c>z=@ggrMF0H-(3Y0ke>tF7 zx6%s@{Q<)~^4P?Ew$<>{o;2wDy1IaGI#S!b5bz}-R1377U%E#24_3JfkVmf&o4G4eF)vo_^-XecK`GU&SZCec%S)9)jp4cNj_<8nw^X=J| z7DQZ|0-wV7@@s2_NIqf2*){S%*e+$FXTcv*|$CzEs-m6b`<wg634@*gI?Sc}EIe*HhK zG^nWX-dD8ucpsiXB%pdg(;VBuqw(=K!W7B$rFae=wR^So*!p*a{%E`1wcGW6@^UF$ zYem|JBENmJ(~iw1W5K;~v33 zCj`nOI4R~x?aI*pa(3rl6X_I*2^W0zj10F-*T$;@N}ElpA9!j_VnT8|kTaPWbap1QiYzD$Yi>@#E?;022Bt5m=UHMVUqaVH}kCm{iI&R3JuYW;<;{|^S$ zuHSzdR3=f@mc!=Ta}_bWH4U#R&(GzCT4WUo|Khs-U9~)c_!J(bGS@6IR!D!QFHmNm zE4v$_@CDs#Vn*~Y(eEKbk~+rqa2XYoMZ_SZ^l-?G*;}pnD#f)L@!wq?ks#$7O^$78 z&f5=Wh7Hn5YtHNMJ5+3Wi`9s&jMX?fnZ$(ai`45CL|d}RD4uGF|1x#5W`uU6GVAWd zg28ZkwCZH(P+(#6CSXR^U7n=0B)Hg{*5q;1Ee?4j1iMJXLZIF<4mX{X9|J8yrcRRC zo#EHq9HICZ0P){)ReVw~coBbW<|ld)jOrH)$n-Gh@O ze=x@-P_ZBetiM7zX?Ju@8NuhnBA3b{h$K?W((TSe8v{-0}dczJz>{R*6X0Rfv11YdttIyf*84gY@jTF#W z?ztYVf~E^87vm`X;gGf%m(%B}?FJ#8@`p_fK)GB)w_ky5nA>)5FGy;`o#!F*+t<6J z(@QM(^K{6Jc*}UdERXgQ54Sp$FtgAUNM$j6xKYTeo6mp-9&Zsj0zN}r{I`U7f`k(J z%LA4jL2dR=qzaX44WU}wfM@8ovZ&vYvj(R-{$c>HtGJCx_W-;@^A3{ecFv z#Q_*OyH4E@6F?DYNta7NUo$3iggCa_72XV(zb6#8tBhWe*C=k8%-nfxrmr=l_UEd{ z@SrcNn*MeD0&b#Na+td;MBnbi&f?&GdxqKeT-H>%IL+k7N~E6S_o)xqHV-fR!Zt~> zXntD+#&1eX8!kz=laieMUJ)%~lj7Jydbc*6|3*{|j#pFJRhOZbk7M<&Q&kx8CSTuJ zpve*~mACmXZR|tio1$KZ=OtEVq>O9_^xaZ`s9KeqV9fLj&DUc8WiYXkswyTaAU z5Z5Qo%6|Eq92L;2H9Hl$xI4$ckWAYzDvPP@O;0nWLjx2bry1%VWKr7bp z4IJRZwV<#C1{>DriKfZ`bkCY|zWk$816`>Bc==}*_#YK|g^KTrT`dC#b?mH(na(oE1% z9;j`#L~1*&!{>058L>Ck#s0JCKCgkbL|0W(qUh@T0tct=5kExzA$3>;g#ug;rg>WY3;TAhXpf}ojDYOtkqV(2gf*~Pv(^Bu%u>E+41E6U7_CpheB;sB$NLM&WyqcT-K#p&u7+q97-Bn z&5YPH`gTrjkhq*dF7YT#)4jD!!ua|<`&c*vZ4)aTvtk3|3Nq{Cj)%b z!K~%$r|9JqyGMtyBq3-E2alQdPpY#9w(s-j^`y<@C=1?4wL1manOOgrUchw@6BMZ~ z)?_%HV9M+YGGF4SSp1O@gu|;*vKt09j|wbq7Lg|8kb8Xiai9ityNJZimWdhOXd3{Rf>#&9y-5}jtYJRuSus4(6PSGgpbf#**4qVt}njN7Sa>ovOG*_DKC zTu$~9`Tg*Fl7#8vuq`BfJx#SlHTP-tvCGOfr|bN#$B1_679Qy*tdTE z!UuF>|5BFf`Nkaqo{C5q1C#nQgE*1**HO0aOzSEt~xbDMDP=6uqW0wmOleU^|o1G5TP4AE4I#YOp>&6Lxxm&^$xbL$dzGp#`(ELH*Y`-VV4d$|j#TJ=9>a1la z*%-<-6Sq2^DRsgOpqd_fA;bGZrq8|1^q}7u3W(<81xi|sI<~9&vV6L?eTXCj8tyyd zzr1}{{kuxibio8FJnlSlXc8TmB80pln1NVr5n?U;7zE5QC$Z+LHPZ4B29qh2xc5rb z{19(vWb6P@O?5vL^QOU6)k&Dkl>k)bmD^#SE`m1^*StF&i|Q@for7%3`A#I{m>eMM zKE-cwrWjAZoDT)%e>@mt!~7Ok?zhji6$OqNBf&_oWf60184o?6NxTG3)dk5%?QT-T z(XZ!e0_5Gm#;2II51 zPUhzq+L9ge*1lFd?<(0IE)mv9CuQ$YQB!xr33ZlP9#lIMxWl;mycLwTXT_nUBuzP~ z7bfKOct(Qob*9@_Be@{@R^64wP34;7fE>U0_NdwQN8(-)JvNj5hlj=Hw-TEJ{Ps!| z-MnWXN#fZ`D(mo0C_bb$8j^Va1cnqI=06@}QJ)`Y7WnxWqCTC3Rtk8GvCOQLga)a( zaFM@HjwI>w%DONy9u$}L#QK$Yk)BL_w9q`q2m)sOFX3ObOp>=|cj_uCT6gGaZ*gcm zLzJCveiWDi0Uw5d4cnZ3(|~NX-6p+{zQY@!Pr=fQTKB7uTpxAVm7349wG*mGviq-3 zl+nav;*vvNG&tx^XG<`5Y6f-Aa=Xp$;H&*jsVz<&p{O+aDyPEx2kUJp z4YIn93zwTlLw29>H?+9T^_4IB9Mu0fD8R)h3_HZTKHaq_kpj#(K9t%{c-T-l(dnD> zWy7^RD}Sl*jX$sFs=~{)~pTqV$J%hSt-WWr!r~C2Y z1|dvnOx=DR^G(XgtGA_revCuHmyqZ|b|J_84`D-V+toH5uh#FQQE(+P=Z(E^HZyH9 zP!jN*B0AKH)9-$Ki1H59v#7`CErKw<8J~TO5A&(d*ImIPS$~+Xe#^Wu2=T+U=mg9i zOp)xl-&kMjS#puxWsqwl*pmGIdEODhD+uvfk12KvP5l`aEoRs|7gt3p7D8oZJaI_@ zJSnumzo+ZWtLJc{aBqaSGvI3*cnDK*@NM_20?2e_YEjviJl7F6R#$})z9^{p6_{iD zQWSkFu+HcPLlPow%y+iF7>?93D!l)^?~QP?Q7_e-#Qa_B;0*5gcVsUO-uGb-FT}1` zJ!qpnU3O5Th}o`0-FAG93D}#Nu){Z@hU$=8aK#3p=@oLfZ^;L~ifXgbT;afzgo1~n zSv6sC3JhM2T6jT-2AEa7A)UIa#$Z#rk;D0&hT4NR_WrA1Mg^&SKf>XXzz#;a!%Q#N zd!HZX(ydSJEipK)s$qC)v1$EI09AR}2n{f?v zb!1zZBFAEdys^n-H=E_^syQJZP$s#@oVIF?gyN7MnaWOAA1b*y~OM0uV&9?AH= z+Ep(t6&Hp3r{2CEK4YEqi;4lZh-kvcn*!}5+^Xvvwx#@~y|)LV1V7XCEVwNg?08R! zWvsC3OZ?To!Twm9;Eh2)9{Wa8gz%pW6%l-_0G}90KDP(-XUR4VdM2ay>LqMys2Ios zSw?7W{X~*Bz%PTAhCcgH=RrIfla*C6zQ6{)hgfOT{`#d|tx}T+3aU8{g2qx_#+NbET^81F6SH)JkuEhYI15*|xBYdT+^Q4`Cy&!(JkF|hfdjt7a1!3& z=jIRsyQ`Z6*MpZIC2n<#kiZCMTB%jKdFpCIIQUZ)wgc_@EM?wEm!cM&PIk2}X5%Y1 z(#YoX?!Zqtmnty>USmkt#YKE?&;&u!6nsNv=R;0HmPAf9TN|`qtxU0!;$p2#d`K3ux+(fa$qOb$<37V6`i^Hf521&Xcab!YRr$!rO%(6Nl zH5$-bt`rBSkEI6qizzPmBhFHl%J|Jn+f~7KSL-+rDm1|7?D}dzReUcgSGDqHDv&hM zv0rfCYvXtGA$u6o;x{+{d2f8i!YSQs$<$7%nbVwh`Wy~E_q6N*LyayN_l#IJ+Rz`5d`ONoWkW0}NCz3Ay!&ckR{#|^+uNfV{975VXI?l-91-|uW$l`rQ zl0$T2hQQcY&+y>>k;+$zczPs@-K7#Xob7$0CWXHs9oj&;g6h zW6>Opak6h~qZx*C*}>9M<6U0cW~Y{YRXA(gX(yw{&`m5FuCEa>26GL=3JY_Y?`878 z=0lJZO$)Nt>(r;Tk-g^CPF!kauhK#&o%X)?68br&i-OH?rtX%_sO`UTMn@YMUVFsy zP8M}Qa1Kei_h&u>DoIxwY*yHTP71tgR=Q;b`G(Kqc2?ODyWKU2gU@4rrlUoR-yJlp z$Xz@8*>~84d)l~rMhWD?z1Hi_UHi2l1M5X_><;D12SO%n)ohLu2jD-cMf{bMyO=hVu>)~L1xx49_t%6D4)3*#{x4Q7$*k(Jx@ zMMj2Q!`q2)*Ixa?QQ$ets-B7M71v~i`;|uDG>Y>?+4ljH;Er1y6GFw0a7nT^9JZkAe3m85-^vRA$%ayucj^$Sca!7A;b{R#UiVT50LU#*=_m+nIdR|HmyUTHexcQ3lK zLA=^p+#md9jBtIs5Z@H|novseJ%*7gA`HvK`xQVI0uJtP@|Kq9HA8HjR(=m*GaoJF zq!4+CA&|xg{W?bG4YH51lZVzk9C5R{p1$2^ ztdaEIrf32 z{(WKp`vXDQJHi9yE_5Bc-mmdclvL?E*9zw8tsZW?b|QTH^s~P z;`QZB#tOe~&DAh;OC_gsP03MTZXFb(fSfh#w!bH(C(hXxap)?R9CCW^>!6 z(5{RY{jZ^Tq$rtaKc;`mLy3PbK)6%?TvX zZ}w}7lc|4q0wL`!2CFBqwxw9N+U-oL(mIW{6d4VJ1=N|YsYw1w*FNbgOw>@yjeyvh zE}UePHz&vK%x`T_q$6&gzP;=z>QO45tqqCwvXu64Vq)U*`ici@TN_J@?%0bzLuvdG zhGTZNhtz^aianDo!Z1;k{z1~{>T^f6E+kSJ|Iwc4cV6z+-TPp1Ze2!-%gS@O8)&4%a`1)AobHLyx_4mW-C;eFV0*-28T})7Y zvP#Ryc}Pgd-eTsNo6v~SWz$Z%_zvcuMfpE185)=&mdT@fof-n{76WJrOaM7y;CwPi#PpFv2o_&btD&y5=|&t#dLYtBWcupevBzN&x)AarSt)#RQS8NZzXy0C(BKgSY7*ugtD>f+58r66Y$6{eTWynV9`0Eow$Ukm= zlrSg1vd~Kg`V34uB%M<{=+AwHB`0$3-+ z_wWy;onLA{Gt?8@Ufts2BpmgSzIVP{V8=!Gx(UX~Ly4X1UKI2Rhp6*rl2ejqy1ANF z-F)ZP)z&!-HRXLL`YJP?9R(`;sUK6nJk67pk1%| zct4&=|JoNpSi>?arrsx{NyBXQgfT}tPhb9#T`vpQ(YgXyrx>p@#Fa!|$)TfHrRX=u zRho`uihEzwhK|?a6=+8;F$_Qvifvm?v-NE*o0u?_$H9m@5-u){!c{gyjizs$<3*B# zq61h!T*<>EU@0J`l!F9bd~ZJ%iaJTFY+{Ku6(C6z|EN8#K- zRz*p|#nOtIrI)&(!54&%Z2?c=Fki64gZPh}8N_TIhT< z&{2H5tFX_=76xBcfx#5fa(i)D(!(?q;jq>6IAG7@+4$hnJ3bhhnVCtHt!B<$gtxRR z;J-XR*HHfWtd^a#Eo_Qe9FpvwEcC$0zbVO(q=q=!U2}bX{Z9Gv;r38>q2BIYOpGU1 zNUOXIx3~F1{Z|Flhy)jxt=XKy4n6(n-bqyoLU1&4UK;a&V%p^*0G|44D3rpm?St~* zOr}q$TId zV?XlSC}`d;i0iTK(viEiEW|3rP@?o5er_EFckMBEGWbgq$R&9PyTOX{NuKHrm@LFj z)vagQ zLxvvJHqo6bkbZ5u&asDVEW{sloX_l=SooLIZcY*!9vvc}%m!OyyRD=Z0&cUbH27C&ex9cWVBA}DYAvi z8e;(hH5=~5lXs9*0_S8}VF2jm-F@WUBT?j6YROimqWA~AguH(a0E2x%C^0NWue>V` zx`6)}fhL43%}OT$DFOM_jY__0iik_{atFE$y5{4$4WE%{;-G&>mZFR7-T}cFD7U;m z98zwr(8p4j)jNQC%*(@}a@}aCJFzrbVhsx*UiL%yQa;qyI=6xaJfdPG-?&FfL?jqc z53I)p*^+IBQvPjQ+P(LTYKzffx|N>ie9Qr)EVA8RR}Vp8bU=~ql}GH-k))JV)x;;31(`819AnTMSe1oy`F9wORUjt%U$uI0;M! z5y`E%vq}+2l7P{_sbPp$_xr!)FeIW|;BP&AM}kf`?gTINM-8u(J+H~|wXBE=K@OHb zPn>pfnHBIo40M7t7G~_rOANmNRB&?-B$r^maB}5TL59 zvPt&Yc>AlwQBDy(d>-F3Jd47POD&1asR&y~Z(&$alRDqZj}xOh3V3KACpQl{{-geL zi>}*c497u#c$f=MzWD&hT=&b0dhzXI02vFfY!Ph}TVsV6e}o?iOo*2;l}Bu^VVZ zoP-j+ebgcejuQ%i8x^yvVxij#jKz8Xlc$YOB1E8Q7lA(c6eMozIvDy{q*}}8ezDD=VqBlI<1l=;x{yhBms2b)CUAz__}}sW zu%AR*6T#0eN9wsUVV-k$0ox7uV8L_&^L~|0u>3dhFlQMG3NAkY=&{& z91f=m0V3Ux*A)kyz!i}}Cc&rJ^;YL84@q%YFGBZC>tv4uo}>gD$)e0@mg%nADB}(J zXr2K>U@51~4#uL(1$I#F^}E9BEmE$d0cOCod#lu32fNp`DMZ}vgox*tKq)QPza0rS zn`}5-8P?ox<|hzn@s^D)7Ydv1N_^a&^_pdqz_8($!I}IzMZ?pQpmZcn?JfQ5=o$=mWE5>N?Tx=~uji`n zbrS#B9{)Xi8UynjA~Bj<1YL6|we|a3r!C;JT+@`H+&Ue2ykRe@3a0s>2!V<7Z3`h@B zz)R-hLv@!*)<9}$o?h;(SdAvCR}xv;*a!rcI4`)_wlFn^o}D z(WJ71VuAk}=;HACKr9;}+q^TO+t&(_*&$pko(n1xFhSP>nA=CZ!eI1fQ01WyCJW1P z4W22;I+VP-ixq(8=#1B5WaH-MdO2XHhv2qWj12>Zw@Oj z8n!&11eTXbr0~REv#ZkO>1?CLVpuys3!(19jikrT%V4*- zFJiD|>AjvDPu1L0keMZFX1~-9|?x-W@yWTXV~0`;Nm5}hkmI$&RO4KCrfvn6QvP~`5bP^(;?LBA zLxq+kt|tFnsDGv%?ZDiI^EFC^St6a~FLXyrJ*mlyfo(3!b>)T^;W8gNf9)@EJ+qG@aoj2U9~dmqAX@od+toiCkJ{E6ZgrR_soaKCrGgN5-N^ko_#Kk>Qr7uy#h0$yLp}8NHs@GOI%abcsMYV6B+glqRo@?won!@2B`z-H@1z$_iTdNb$fv{O` zWvL_|gy<5Dr&tBG(Gm8!0%XOAQ(?H~LrDl;QJ{n?K6!?!sFqo!4tUnbyd>M~nR)=C z684_Z*PVJ^7spZE?m+4ndQ+#YhCl}{juK;77lGcMRJYSAHE>7EB2I_VcXT)A<5>kX zSh(0(%}cJ^!bcF5nSP7;NNN><6-LciuDEvN`iP_^%gX@>W?GlNsvXE3437Yoz0l9f z!Bx(PM(AHKiLW*)f(I?Wci;E~;62K)_>UJPG9aYO-u4TtoQzH|N9PziJHqymc%Rt)Mc07 zX*|M9YYsd=lELB9$h{(fPW6yXUd#3Ym$O2R>P){&oaVOd+lM?e_^WdQeqx$KC2c%c zdfaChu$<@ZuzelXYL2sIHA&)(jMv?I?>qitq69Bgelp##jG2uzDPe*ldP{xaLWzGNw<&Jl%r@0r_FQLb6=?zb8o}JQghK*0kwTI^IheYO zHbOw9`Sy3<8ukws^EfWyFi!@_Vq4FILIB@VeY%_z;to3gvGxnl>Xj}dj_3jIV2oc1bk~U#{OR00f z{cPy@X(b`c62SuLvfC`zlv!V-z2-3WBOPj4e@e+j;mog#S84VO}uegjXXzu-X4$Vmni(`WhWV*u{qei zTv8TpPA`o}X?(!BI?p3`0q5Bv@NR80gTuQ?kI8({mym>-M`PU_TIR-GuRbfY?agZV zQ=QiWW;6ZP%X$)ju0h$PyxpOs%?mT_Vmx1wrg2UA@B>gRc8ADIQvaSAN!>B_EY481 zX^(rr*%0Kor$|7Yj^IeaL=RK~iI2#{i=CAIJHfj+4Xiib@Fdkl=|zegr}U&pYSKH~)#F!V1}a<{04_;^7f=k2Y( zlF&#}J9>7j1XbSOt-sH`hx>UZ`yY0Hp+IYpYLKGcBs@8i^R}dg*%DhR-PB=lciK#( z#CM0lkD6)=S&VnCjXi-w4MF&BiyDTTv0m%N+gI$PFEl9|(p97oqNpi&VLbvvp7}No zfJzZ~7U1&gU7Zp6&DZ#^E^xFblsJ%ONEx05e97)(|jHO?{gTXYd) zugmIX*r{l**P5i0Pnge#znB?LRKR<rhDN_G86FQKT@iVLDl~m$ z=czI^hv|hMCPSvCn!GU5dJd%J?h{v>3P^Rm6`RY0Ux#%7%5LXjveFJ0v1MB%>#582 z9IJ$x2>{;B*``@0Zkjq++ESsvDd#aGbcNtQMdn8Tgw>S1nWBOZ3vR7zB!p-9Vf+II}?0n_g?+=NJlKA9AoPX}>qUOT%V^hZK0 zlIK`0&)(lPZm8OBkK;-nHJ!Gfs$9+J#){0CYBao)7a5b_)N|MDlbUW+cm9xg{hnvO zQP}ZQKGJv#e0@z7JmRw!qMW8**=7-kbAdn6@rUu-1x6E3K4+so-xGs~Z`BZbPtJ<4N*rbX_Ldh(XEThwyxMl-_q>{?wwy-; zzdWVBvo4iFef|7Yxqg-Ax^3ko)-JST5?kKKo=-*0GLGhSdvLSzOp@&T+VZ8YRb&DE z+iT&;!>SDdSna@%yk~|40kXU@QC=b3n*-v+>)%%J?C!EJswI_8B^

V|r#Kr&jf z<5B0HKe>ry6C=d6slcI^-%JEU>Ht}YK^EncP^d+!jvlMVOfDRk7nyQEr6!1ze`npT z|3)57;Q%x|6~m8El~*m#Q#Ze*OO?ju2zW6lUzIOhXeFg&r&%sYDuqr~GZYE9D2Ri* zBFzYFwu!78Kv|3Ifg z2p^-P1Vluby8XjXu6dPMy+97T&vXelSZXB%^Hjb{jw@Ual0H^cLw?zVeL=2{P=7&R z6v;(_=WSX0hBw!aj(yCbO*;ZRF@tG+Q1(cJ>+^W?>qESHWI(C>e{8*FSX*7YuKg4# zR$Pk~cPPbz26xv|tXOe(2vDrJySux)yBBvW65I(6JAL+A`&jG!zJG*d5{`^H?=dp2 z^FAk^>fSOVivabK4BK^9aP4Z_dDBF$r-Tr*~DQCLvM=Rp^O{lXG5WcJB4I z(HE@<_IodPM5MUv03nGtjZxK<6Lt&LM1v(1A~M`-{Bi(lQnM=POTN5}lP0%g#??M_ z`^}kIg~S0iC^4^=2#QinJUOunTdhez!(JS?!7_?W0mT%4XiPxU2fB4qCS|%aL65mW zdB<-WFL`GxI{@99Co>pd68!sqK*FgD`@ABOh3)H~S=P+B&>dO9sYPNz@4v^uDV^ze zMiB(@R*gzPAI->efU>}reo%l=0Ym)fmOVk#_P;NSTlC3Iv9IINw$AA@avbChq4@fj za*L_qoI^?V7`kXA)YgV>=_dRooEGYh%Iv>nO|9WYVV1`7%FdW~Ut}{A%I7l zytvCAk=MizqhWjy_Mf`dY2~`iXU|%F;AmvdN6$J>M0d3OU}aeR$xayY0!8?wV_OIu zN|`|pLT9CN&>LdU$?*~ldU#gfHf=GC#o|2|v!H<);ArG?xUbgQ>7%4DoaGHkk95$+HO5wbr*qCEq$pQj zdgwOgc|kZ}FLK^Twk=OwvOJIK#2U`7I`gh6{4e_rHshA4HvIc00s>Q1po%|N&#}tt z4hB_C8tQEswx-dw4hI#?grI@Ky)8A7_p$8s+z6=UEQJ>%<8j{a^lZ$qj>6u*W)6=} zDx;^ZY_*p{?uG1%(liX-b(l-k-D>6gPza(T?II<+ve-(gJ454CXs!J0;~OeqH`*yT zZxF$_m-6ApK~j}>Q2?~QE#2SVmR2T?o%kFblcfK%J{=?uNFR6X*(Rn9`F29k|-#2V+#;F>}YhrHiNhijo#EN?nyKCD}-1HE6J? z^UP-J)8z8apg@-G3AO67dlA02Kmb~kB}!~0+3%aiK3;yv;w+ix!ZsND_24iHVrLn} z+irV*KW&r-P0%h&pb1)@Yu1WP5H0Ql=y#pZS4r0Qf1%K9C_36s*z`MjK&9p{JSsPN zkaALMN&?NipfO#t)r{x@^q?wR4{Ianv*G>)hEU?uYv=WV9QIV}@9&@bctPv)qELph zukp}4NSfEu>1Ivx91`1`6KYU$g>+_lsh!P#t4S)U) zsyuREO(Ij_2~THsYL4<)*$%Ry`F#49b-nG3ndIf?$u9yf99+P%`P|e)32idV_9*BN zj3k104@(P1(D=1q3i_WDF?p=86^vlR<9BClv_kX>JP<}gJqz9p*bAd{+myEZ0B=xP(6g$)ORQKcdj9JP?&O` zfUH83Kl}eq{_Go}Fm2eE#s%Q7rhm~_P9r_-!zGJ!D|tT9*uUN$fXpJ5c zMVG39-w=6Gr5^C$PKbTepGB;I#9>X`FJXN}*fH_xDhAo3{&!3HYE}vigQv7FY`{VY zrc-+wz*PSvh}G{JbAL$u&p4lA9$@OKoy5b1GtTyHeY!y=;YJroUt2xu=ko27^$@z$ z^O-1L!x_v(E<&r%P=n-PW`%}kzZiFxB1rG@0XHq(!tLum!YS1iOK5KL+iGsE{Z9vr zc@Dow-)$XZD23bkxX*8*-~NJkRTg4qd}X~~p^n|_S+eFrfl?7u1#~03G@VRVd)W-d z1=RXvjX+Pg@UY0iB-x~IDmQ+kI>i}l05B-c>%0Tteqa~qISBvJH2-0_5En@A=ED!Yz$snHCJ-kPns*2n4cDLqZ08@9Tmms`;C=NPbl; zI0+n$oAcLNvFL5S;(AAHM7_o4U3jh;fNt)1<@6y~T<06gmX8c1|GBj+N3PVS!zp)L zz1Er^ul8)ugrA?V)RKc%7~?-rTs2`^YIMm)6FCzM@Zbw7r+wY}i9hA`XRw<; zoK;%#MaUo}ZHAsJF&!Q6i9AIvH7`6pGC$oJhl+`;Bj`v*-hrc|yJ`P(4v z)(3ZXOBJ=)ASGmy4gO-M_T7^cm?$P!W8)uY;-$~fvwxGp#nG9P)pG1ypmE0D*|c~h zMN+NC6zvdkniY6qQ_z~-u)M2BbxXP+l-2tsPyCCKmrWOu7nY(H+D2vtw}hQ2`rRcv z8bG|yl_7Fst>9P^pUuZ#0(^edL4~9m&h!?oe&X2#Y>x;7nD<>y+|xm$3UK>XyeGkI@Wx9q{NPDDKrtn~_`;;ko6&MdICYE+!#HW>mN ztn(QO8cPMo`te)b@#Nb)krC5{i*#obP20_k*<~Z~IC{B4P$axT9EKa7c!xf(Ftn`t z_c~nvV4`>ZI_dM-xmi`r1_1F9&RdBql5EuVKrtvZlyU8~I>+3?zb{rXTvqc&Gbt!; z6gob?JM^&%h_n3!4H=MLH6yu}ENpT<(W6aQ2?UhCz5X;EW4SP!j_Gy#@yYO!0tftK zXMBb>ruD^hKI-SY#hf0msj|KMDSQf62+l1ZnK_?NKwK2i+7s;^>|kl3gCdF8%`tnl z*9}>-axyI%I^pLFkA~AFxfR9ww^^48f62PYdVR`h*L}e4lQRz0AVy)~lUXHtyWq7t`tnw&UYu?v1-b|M9)KH2=w?EvdLOxM1iSy>hbAM&cKD)hVn8V&z)d^4mai{ zBYxRMft6AJO(1}GhtSz-zU%noyp@3rOr)R#XK&HC=8(-ytD+r*u{H@R_UI$ik$SNT ztt(3`-bq8_bslel3#5O6Cgphn{7lbP&4c9vpbuH;?4&u|(EBaZUQgeTn2f$x_nijP z^zxXl+XbnmlcU$CO8sW5>H6`XagI~ z7c2N^_#f%qok)63ZQFB1*77>?&Q1bucjVSP)((Y_AGqqOJ;#24ZjKnG$gvtk@6MXjtgg|K8B}=_8kzM! zlOeo5$B6{<<$uHVhta($wPPZp(;zv{T zLcuo}zvKC`YF+J`voTf-*-UGY73sYrcj0)7|6R#uxUWRE0MMR7V%;906>^wYQeul% z(0VmNeQ&wS73dY^3u}MfFKy8xC!9y7JQTUTGY~eHichQ98xD_By}N8mAAVSIuu+xu z?d|`j=ed8=^K-!$IHX-KHL0BB*NqwyJ)B-}Ap%Vn7Dnsy3YDpfJrICUn_nn_W`N|KG-@83!C zYO}N6G-$whcNqI0(YVky_c1aeF)If-GxqVF__9fo&+9qIAC)iBo-A^>L4QVbk)Any zLJ=}_&pxxsU{quIHuz+SS^Q`WHAv4$3#ux;$R1nkit82Y{25JDNOwi$-omC7IChZ5*BJnq?@+5T>}+gTepPW!qlx+X*g3y9Bx0xYu_F3G7MfBxsBd zCDt*ndmQH$&dpwDG@(!t6Y}Q$I~5<@ywKERKHKnbfCR+BKC`PE1Ti`mp{rk0(ylyf zL=6(Z)pxdquR^b z4u}T=qz&#Zaz9_*{51k-u|tgjOOHF~zijLjTJxUn%F;iU(KoF^8w9=&wm&p)Z#-R$ zrE)HHn1nHSx@`)AL=C8eHl46Z-S)L8N?&_CS-bKZy*~SpPNs+U=WEs3J>48Gb$Vw| zv_Z-3aPP%%wU*Ss{qgRp&4$}XQRFcqR+GtH|G-K{^?=1B*n0YVT`t_6r*`TUgTH&; z72wZ%$i7;?9nyaI$cNV?mzr;7q*C0@1UgX`BNYg38~KY6C~tBZJusrE)sSg;N4{0u z6Ew+XhI?kYVFlft4Yaa$@$17wy*(G!UptU@3Kc5ivyBRjkvp0UZY_>x1$CUSCx&xs zmPh(__oR)pX^J9Ag*7}Ma3NA_vMLF~Q6fP)G)&WrKG%Nd|2EaU>osN$<6-hZCn=R`!aH4I^qah2 zdbqrvs@cy&pLV@RYqxI-xs;|&{fvf>(v$52gy3!FDnuAbfXSJWOMNyh@@G2GmQ4s77G3`2U zXqE>3>Tf<+QL*BACPq9dQuYst23|=OHN`cNg@{U2?jgCJw%8i}?Jr7~{5f^YwywJ+ z7l(BTuinL|Z2OFjNbFEo`m-aIB4o}0y}lc>X@?2ZB7)Ql1%Bl6yGq%BUqfiQgVSBM z2}N7*g#jx&q+b^LeG4nai1Q&ZOvLTIK8Aj z^SXnftv}Nqx*#C0YHleY3a(d%Q(870rL6wUEbZRO*0Mj}$VV*T^`T(=R={m{-OhGq zVM~4=YfZ>~I#9wr9J`tpz+Alx+5=O*rW~V2xC84;Mb)nUxiu(?y7ld+e9=vKqptjK-!I-dKJ|6J( zFDc;>%k7=hnL^C5CtD@BlY>ds@Sf5oA6H zPlFsHgPYo0CuHTNR#)Q=ZjGIC?jAI@Uy&d%A6g&L#FtFYR)sU&H7P=dXaC`KN!jI- z?I-h8vw%z27Lz^cstmdMwTn!$-Z6Y_ANIH)B?wV6zKTcUcZ4+m`o-u;C{Qc5o#&nW zkR+7DN`iFP-g^xfmXhnz;&Hc7F-m#5P%<0ubwUs6d49mPn#h$t|8P}5IyFVTO2+!F_&R+8>$jC6pLQp^v`i8T7y zO5G-#&|)6Qd6ygHw7^Vp!v;#z{1Yc8M_TiFn!|m;$~m0f{07E7pyp27Jqn=Syw)Ww zcCYI!Ykt<&o~{Fu*d<#n9HFNejwA*Aq}BHkbsxEWWOLmJnM!2p={Gg??dXSgxS4!v zU1C2$#EfH-D`)oFhCjJC7tp)^&I8Tr^A`J?;a@#?uC#nfdQI$P(|P=+xMyYz2CL}_HU66<{SPMv zCxI`o@XT~NeC!to%oHGtn5 zV&1v{nz`#8g`Tp$o%hT%!aP>y!Vc-a`8#&$sQ~vUhTQo&bxq`#Wu%d`PCr?x=Bw~9 zfGcq|*ucO7=JiaI3*W$CR7*Vq3Skw%WoR6>oR^+VOYxqwXeQ2<-`90WVul_Bdil6= z=f~1o%45;=ycXDnos1MpA5ZGm4}95_t7dYCe54qnQB4+hrKs~LsgC)U6O8AymK6u> z%R@%d63JJgK)$+SJKqk%@YxTin7bMo8;DOYIAxN%F#B=^S)KpWsoU0_ALA0ve%Nm) zS6_nr4rjPKD- zltg9CBFSnjf#Smq6V)N~g0M!kE}6G{)>Tt7dsby0l1S`C?A8m|6F}nmP>9D+=a&o5 zhb$Y{TP1R}eRY=?`(`CcL3&(!S6XSSp`wTI5h!yyxgZY!y9Mv(o%{>uF>R_}lN zCFYRe7_vTAQe)t#3Z{7}OLOLOzbQ?&Uwk4y65+x({=CYkkkQj!b zkf>0adTe3v`0yKaQnM$-bDI9*w{@_Mn#J-G{d}!C8b)uoR1x}pr#f(1a?(@6u7j8% z#&OF0&z7NBd~(auSCuG@tV?cioTHtCu=fdlp9OB>^u_TrOpuS2;F~rl=9B@+RQoO9 zkDzY0Lz_LlsuwgwRWYFVuWThjC3BOGk%dkHJo+WmvHQ}AWJJ=*2_8S~Hw2r06~JK| zm1w5ZyOPN2-6)GoUDitcV-LIcaTr8KpUihyrANK_U=SyiG<7eox^GC~Ka=EgY69o*k1 zd1%%wCQ57oQUMC`^F|iB9x}BC&U2SW#gYM8z*AOvz%!-nbIPpQOliZn{m*I834>9) zH;qeOEN(^U4Y0O%`S!|4jdMtl_O=X0jzZs`5M5=_-97~u;c~uNJ6Tz@EGBc97@+sG zuZ6NAncYt6)DvWQChVi_*2;Z3qCQC8VxWML$A&oE6zce-nsJ$TJ)|wB^!+)q-w6*R zOnd-*kCLS^=iF{gF1J?H^GZjE8kin$sX8R^sUxZI^V_!G9Wig$O+4m;Iayv~qQiJH zl>Bzi}as#vC0>9xqQe+fz>{W?y|D4 ziG1m6oF;2&qy#4Pn&q90Aq+k(uTG=t5+>=LM=Xxj{>Ms9NgJb>h>9demp0_46bVaw z!@K1n5J2qdt0ktuE|`PD&4b*U?3F}HSpO3Rr1fd zlfDzi(BJS zZg9_1l)lC`zhmTS0Y*~U$aQ(r=*VEE1GHtRVug8ff+ngJVM}NiIf$e}4mvSuwwz8@ ze)Ic%OiO7rRRv(PB;IRCs~To;Y+Zn`ecwV2cDKdD>hy+^2M)z!H|s!E!07S?r8eN1 zh74AZt4`^SYDb7-r^Z%ocu5AP69Zq!ZwLSw$DL4M_oks1Sn(~; z=H-e0ytrc12Wl>ArL%2?X^rH7(mjN6j!SGkxH?sxDn@@ILQ2%Gn#&Y?&Gw^Ayspdc^9`M>(aOH zMBX0fBtV7sbl!T`%q(qxWZ(h=w_n^H?cLwrm7>uk0dT+plB5ISX*T`PF8`rqr!o<7LT(ls7n_y!`4+1XfUJsF2OJ)3`G(3`szI1$*jVM2z!>@xDIhq(-6+Vw3>PcF1BWGP zAaIyhk-}p(yxpSAZ=8@s^Xka4$Wq4R@d5v1sl^a9a7VM({`fHwI1A11*c=NjWoY&) z>(#=YHy+N|%Ym1)S0s~N;oo%>JvR|=Y*y#p5}5w?RD=lAfc&@JXZp$A&e=swW&c51 z-*dy?oCoJDkOm!_{pw^{u0|fZiOz!Yu9Jo*I!iV?3ZKPsycfCY!{0Wib5(hHW8UwZ zX2{Z#nK+r&ttBASZ`bc&t7vBqh24I8OyrGry*VRx*c0aBDTqQhD{%~PJ!btGz+X#9 z^*=@gZ2VXdAtkI3pT8wYVre60^TLF71pMm#8q58$rfovwpVva zvSkb~PUGnsxDF{+UJmsFU;H9BqNTLxp%PbWRkdNCR8G3@G6@~uj*dQwX|#2MYqgP4 zhua#_YAQ{)IH|yMSv4y7n$Y>fb}rE*?8IQnul>ysm>C4i-2k)N2bYmoMigVuV)nRZ z3b?$HU-I!n5&z6qGmz;l!(cuO4F|-BGoVBkl*;zqd2Hu)B{WYvNx$f%zyl-EP&M!M zn(P2US9U*|ae0+;e;BlcS9&|s+GTT9+S}UUN`LYH?X)1drIdO?u1rHrI)A!({!Ogo zi`KS9iombJQKs;lu|9#EmWx{_%G&I?wCSk!=;Z3lg3lnyxH$V?R|^Yp|Fc~@11Nxi zR{EXmJmmPSmB@A?CF1m0k`BE^0_W8pN?3g`abJ{gKVnG8ix8C&ytrWx{Y~i77vc67 zd;;5$9!YZac267OY|j@c+Scd%PEFUh`7^J%y;IS};CFIcBzv9kfML#+dZbC}qQ>Ky z`<1eM@ANo`K2MT6JcBK{d7xv-cm;2V^i#v#Q zvg4cA=ykL}_mU&i)xor*DM}z8Dsr#&Y$2vO>tR5(YI}J}TIXpr@ zvlNpAdjj@(Tf9GXvE_Qw3BI#@{pj!(*I4rW`adzpyltMenzE|-W(aT8->77V7OV+Do>JP5oFr}5!0$Gs1 zMK)YHvk4FOqr`=}$D7JO>2{_=(mFP3(ce%Ps}T!|D&CHflVqMIU2wrBakP3R2)fYj zi_xV0t&>s__FAuR!DBPTp0sMovNW)axL0eV5&Tw-!Hz|sl zYOA5U6!K@PXC?kP_>sLsoYs=uVqs^&r4za1YNLv-IF;n6V_OCb*^WdEH#MQ&pEpio zwBi#YbHj09BY(Mk1wJNUSvlFx{2J!f>?=gk8jcDR6CTwH3?qjtPC@3Wr-{pDU@8fO z-18=6M|hG~UNDOR&q2*I#y!1zriL2uuRKCaV@$js*=#&ye6ZqWBdJ-;Yl z>3&dW&wh|d1q)k^K-!cdo9Dzp4=qqY0RK;{=;urUFT$K%^MUOzjM$T&_>M>M%M?Ag zM?DjLqSoLwhm_rsUQ(U?Ns`9B@sYUEvdECSD`~l{O!EX>WYWs*UytIyBVs2 z&ot*{0N%kXdd07Oh4Ke$_S2s+#70GvbhVyd$Wv>+6sE} zOMxVLkm5dY2x|vbvtw-Lvy44O=T*Ov!P#5`|z_KNbu;A!f2KMAT?JqC`ub5 zXjCO2+W{PiLmPdHzHD5GQ{Y?p#p)CAhYj4<(vKMk1rmpHFf7lte*P0RbKG2Wmr+UcI!%zPr2bX#HHuufbvrvY6hsitI08@b2Ba zQOZ?-n!7sJiVW@N&r0jy+W^`|3EE)2;GO@5)GnT7b5m-%{$&+HRQC1Q)Aoo*LcCL}P{m|7rWIt(guori_jUajcrzyi#QMwE$$ zJObjtsxkiT&jMz(2_pXL;-vPT;kb&uyT1b@k>ri-;l@D}@L`k8+K`19?=jZE!A7WK zsM5<5E};#g*2E05<`Zt&8JC8oKy1M#BiE^!di>8Nw8`&DF383N5WOX2VFR`phfh- zdlFnqTHe6+GjqgYnm!|Z*V5H_XK+y|vwsnKdVKE54l>3d8AY|GT)TfAds3ZxH6RhJ zy2aqlRV74T(X-z{awJtfgbFC~Oiu85K?-+yV`zhkn7@`>tv{O@-zBQs6OK6a&& zc3m|TGi+NDbs4KA=qw#qsL!*k{_9r7fO8`6Mpt68iLa`p>iXxd6aVDC6H z%W*_P?1_9pCgXG8>h>L#tL~|eok0_qu`zW+dWCUXV4C3zi>Oc|aBV8lWASUTi+w1( z&W}z~4{2Utf0n~e^pLh1sld%+Uy%XuSzU^IJ?yvbHL7+^L8y246@F)h*_sOjR90qo zpb~y2C~meV1J@Lmca=R$v%*jpK#S=RoIUobHsN|!9PW`QFUr zbZM*+;Hvp73fJYCxYy#(l6p#-pi^{U0(${gk)n37j^I}pz|#%oVs%i|2`;!UOu{`< z)&GXEy%~(y`g~$|Kf|*ly}|e#?Or1ml@tiEE7J@jOTRfVLvLyj52{L9qZN38Uc+1? z_=JR|?Tt)4mG^)x=wSYFyXxM<=eieOQ6Y9)8;lEpO8ZtTrniyI7iMQ81&%-e*o$g% zIL|FvPftn<(iu`=WmM%=CqZePndWD`b<=hlb_xy2Z?}j1(dF9NUehRIQuI*yu<3eGrRj!TG`gV{*7c%9;z3JXp)ee z>WF{pJ6*~{i*n>BUsjOq|3=bbgwZ(!EmGh{((+Sx{z)%-;6jN7*|JK|`Km|t{!7W7 z4pio-9TDfAb#4DW1X0=)Nk&ED-|hq=^610_c>{5WOYvI11)3-FJU};StTKngFn@wr zzW*wiV*j|ViCHjWxFI^c6;4NFUPcbR=4^Do zYh_~2ul^CU2?`rrj0(JN!7y%RD25H3D%VD@8jRT5tXvmAwbs7+MNEtp+WF4cuE1zw z(U1Fm*_WSC2O{>sGlnrEiS)=B!I`3>qsbQEU&D@n{eG0K%jw^=y){4T$Uq?7chVM2qKzovAN z%hHJ>R|U$a_JOUPv2#IQV6Gdi1n7a5AE8DGr}~6Qmx*c7PZo`bQ1L07v#ut-Ap6_> z*V(*2liMS+#uT=m6AJ;buSN(dNoSPB%k)jz;|~(Nj#H>C^{EP~-jqBCEEAGwuY)Vh z|9U30*Xte#wi=;!2~c?g+4*H_X+It>lv;MwZ@{lBJ#kfsH*Wi{^`A9{l$87s@ME_h z0a-qd7NjuHnkh~L&NtOxNTP;PP~NEzot`Cm`4d70$_(bwxppD!vrv|h0h((8)lOWo zl<{v{%qP)L_KWAk;o)z9NnI4QcJtK9rD@bj&$R> z%70c>U7kmvA0qS7Xq7M$$s0U~CHsj1^a<;oOstUhMuJJ8#E{pUYEy}|OP_SLrQlQs@UHWX2wR&r*z*kyd_A*<*-mX7f zAg_@0v?!p1j#xGyI_)wu+zEMiuWPg?`D4o-CC6{F798cv<3m-7-^;LdiB_?i-Vx!} zK6%%5j&qo<{7=N57 z-0D4_+1w<>=*Z89CCTEm&-ee^1+X)>;%s+&CANgiIZj{lt@yF(6VJys@Py=Av9i?t ziDP}r6(US3_s}-FpxER7gk8?V0>#sfMBU}imPib5K|I&_@Ksdw>kv)zZ;(}t*Hg~J zx@)P|uW_ampJQfY>&=`6$|s0$nCELr?(as0w8-XZ?oWP?{d-HaS-DiS_!TtrVpog$ zd7mBtQxcU{RgY6`!%MBGL9f?>p$eH|c5RKpU3+)|PDjO7s+upM`BfUZ0l7l3+6@w8 zPiKLOYVj+Yvp%5lJTk8UEUaQtK356&5WGQ^^vp;~*+g>3Cl_4zVe5ugA1o}vH<5?_ zTR?7PQ^rPnAn5gdOFUNetce6VVZbl{N_Ntt^e+8^{7(z3_=`#$dOyhu5ECijEPT6b z^Wji@Bhj^l{a%NprOnR3QLph1>Y*4IFd{;Ti0{Zh!3F&M`(Vp~{L{l6OOmV1GY*VM zwgT1`X!4_YfgAb2W4o4f?d%La`PO$Bkk_U2;9{Du-ezGT?-H!}Wcp7X4_V^k&Aofsh(T|#Sc8wTpIz{;qNqP@ z&rZ#CVgp~o^I1F9D8AnO&iPI*D{GL$aDIX5ycWFCu{B$b3F)l;=P>?9-H3Hl&Ypm4 znNf|?mSY7yOTr`mbSQp@o6U26;NP z|CB+;&pA@)hcM;_&z^kOKUI#pacD^IipaYc@%2p=-SB+LKmgpVcv;Dxlnra`?a>X6 zMWMV#(?uM72+N)j2J&G>0D&;GHbc$u+Snj>q{R3zriJRpb{~#%Qg$LwEpzUox=gz& z5nZkXlD5U(^IL=W!8_{Lnx%e2gEUDp;XL0(hCVl}IW*OHt>Y1NWn+Ect17=qvW+Rh z)`v&B99GjeZzuP&O~kfZ%Y=1iBfAU#0W-l?B!;@IdU&Taif>!%i-(;=zXKktZ*Z}9Sfwo6%^l4SU8ql zzk*r5vO~C3Zx4F>rEwziiu>(wVt$^Am(Zu!j$asDAfl-pvb>~m2y1zF{^@pHPKY_s zh@HpT>-Phr-XPZr;uCQ9E~Y&*{0`8@V~G}mxQiWLpLTWc59s{QYvkWgUg;Q4EWgY- z-$Cf#YsUqqr6A#J9Jpj%$O8Et`FH$xos%?)IF#KLFctKy`7y?Rbp zQW6`O;F@f!N^vu@>*LfQ9gtR!k_7fQ`*{89wzJ%u1?a7a52!dQ@B?wNzJo^nzL8BeQiIc$gRgB*Pi0P7?NwX%NC^(ti`$g$ z^J+37TJqFJ#~N^rHWhHZl|#L0Wa8|EC@9veS(ybhmL7ot*=yfFpVi(UOE}Kf5RAkG zj`uB|5a8jKRn!*>s-0@e z{u%6~@Vp;v39UnO)-c5Ucb1Wo>u33}9>!;P*JRC!+VacL%lX zRXVBmSRa8*;{I%L+cMWIx;6#7bN0rs&uk!V7m4ptJxOU#tuMM6$00SSI`*bkMsk~N z+D#nQaNK>Gn&L9*KlWhO6D>pO9!*Kk=RlMFsA8PJJou zI=rE-w|5york{VVx8{^rV_4d>%(sv7jGfKhA=zIdVs7sebJg|;!YDg2qeX_-GR!!C zKpxzBuM8piTK-?Po){+Krkq^-|DD^-_i($W75G^-_5Y4iwM=$#FT4-#uq}0Y?{v-O zZY{oYwP_t%SZOJI+iUlsEpX1-)J7@Q8-{kn9T`^~em~8bm9~pZoJ6u|8=jEZ8w59_ z*%>w(8j8X{vu7~5s7-E8E$`=d;dIP(L2EBLT0oAm(ZMJFi$qdb1q<+Ea)7HF?RpTM z8po0!CfJifd8zRF$|pW|`l;qDK6PgzQ}1D5u$z_vd1TXD_K>=cPJ{)wO+P&-kL*p8 zmqwNsW)p}7JBp*F092rcQ2Jx-RLHUdCb$G!5M?LqpmhGe9 z_sw1A?EMdV-oWG%W)=tH|GaQm6k)#bI=gq;{%QDI_kaGRg;%8dxZ8w<|ES^e)jt0H z#5&8(=cKtz%9S_7G7&h?|CPdCV@NXAvv* zzL{;X(MM8uUuW6FC5M%zg>L*oWZBrqCo0=FW_LG2{=&{&tjm%vcsX8}7)SHx+-E|? zoQ_A{*!X;d#!(){G_nuV{j>-eqB{kQy2Ui#Dw8?v0iN-l+2SzS&HhN3xWv*kd$5J>WYULd5F4(N?7r7?cOxp zxXr^ZFkQ*5mf+N<5^X;MnI$(C=GBG*pFMGERP|JEtzTTXya@@;IY00abxPXLyn}Nh z`Pn?Qng1HVhz+@%16P&3J~o_2CI{*JYUa`GE~b?VLMg^uZo}U&xC7!+x{omC>1T)} z9C#(NdfkWTf?`?_^J?ppyeh0dG&+T~C}``f^0%p=-~oP)%uBL-7VpU98;Olg%lX$W z@4SPTRy_LiDe|We0eW}n{roqvgyT&?C|#!M6rY_h>u@fc32>mU<4nG8BZr@DXE)#=Q(}yo%w;FefUn=fi&Ls;?^vopazdQ^KFfx4*!0Ytw#iot_ zK6p&xhS0G{Tw+>wKl9I9cb0ec63JXEt_SOD^hvC=wL>5<#F#1A9_e@n-Ybz=_-wn6 zijJ!qV+gQE{q$AJg(=frlIt@Gcdb4!wDdScMJB_%GlP+%>xo5GU{GdsHEitz&j}fuACR?toyz6n1g`%hR*xLz*jtL=@$<-37>{I z_~VPE$Z@8yuZ-JHu#hG?`n<-J>xKqqH1YD#A1d~JwE}V~hx(gqNkzlW2o*FBC>V`# z>Y8MxUS=C+RZaragHz#dB6Z-7J_t6z5wC}qu>bunLI@E+`400i{Zbb*3p&>n)50;B zgW|5AHBtXrj8m{YEA*6ttMz^YQqSzYHXsKgyh%V(tKy}S+V=3{_kMKO34cH`^vS8$ zRHynn9iuzE3gI&()B5?l2fD=1O`&4wkfK=7mU25&AW$F{?L%UhF6RxdSJd~{Ph*@q zMsJF1GfBXz|C8w^i)07VnHmPT4K;pVPTDi3+m06Rm$(!3Uy}#M{k;DK)25FQbs-+ES(bzztLK3c!m1!r*P>5xe1|LL_L>z; z$c^f&sTWqSh_}_9?|pFL6Vx;9amcul^8jw8tBC+#7)9pz+xYu{y``Q`oTw*(?u!lHz*%5k(*EIS#b z>6h;x+6_}z2LdNX)N{=I|T1x*2_lm+|5sgZJAePJ3t-3&LRyyi*Xl0R|dQNBogx9n9cj>l% z186C0`5FVSTQ-?o^4^I@JS@pXxQe6R{Yr&6m&w?hFV76Q;SwF(T?%3qQS&=?2xT)(kbZ8ux+aZ;yk{Dd)p{ega{<$|`*< zx#o{G^-YOb2D|3(w6(bxIA0qyiXOR)bOnHNcJ-*hYcpnvO_oN~>pxugj-r+ZMBY5T zzjzL$7stJMMt_|LZE#2yE%ZWfAG6(g@lxF@@y*iG+K~^kRBh{#*%HyolZU!l_HyVM zNV-XE(s#H1kIZ!C5VxoGz2jV_OL>N7W8+7!x`xdKmx`>*eMn?=$!m+*MrVbIuARtqvDU1I6N29C^EmUf~h4GJY_Rg7+UM4`U_c*KJ!3Cm*;y03M>-=^(6(F5$xLmr=41gTD`k-Epq@+Z;I{iZ5aaQ)tcmO!^P}!d#md(Etin_Ed~y`GoW=Ff1L>(U z-H0p@0-xjn{dC-b5{rFQM@aNL?lO~C*5WCtd0M@FL_WMd98Zs^ue&>l{E^@4gHXuW zz4knDBHW7T31d|K_RrU(FeAp4^rC}k6j^YQk?_E{Or z|A)7?4v1>)`al(t5J@TN4nYv<97MXiQ@XnwrCUIdPU-G0VGtOGuAxCvy8CWC$Mb#P zdEa~gynl(q0DJa+p7pF>thIukzV@+gkkbqY){f)5a$8YCADSu6)S00D2`}bh1{sKQi5tyR-~LtZ!SSuidj4i!FxO zad|Wfigme4jeh)qzo_*ctqIS$=TaDGy5tnDo1e5hNGFj_OHr&+SI%t@IWE+>erS7o8138oZkmnixq z`N+A8e{SJNRGF!(Zu9y7ig=gQSX7JMbQ+er$)BB* zW0i!Xhv)$>oMY=@6|t+{Tt0Q;QweYQd+0)FB(#s7b8(d;) z{{jz#%FyuT@0gOY>Iqooo0|*U6INx_9pG3ko4a>KXi)AAOk86HkmZD_`2DtyB=4oK zg>K7H0MRde6AeUFuWGK4-h`?-MkSfEoh+>acP%uux2dV_x%cECMGHdbV7oO#VSow3(JZSUp(~cU{nvYYSmxsLe}o!dg?4D zU_92I6gh;x&->?j_9`bh0lyC?ENU;P*c4*!+cp16uqx|HC_^S&+rowf?em4AXgh8q zK-N;kNNiDo^0-ePiY4mB&(DGJm`2MfN%xC#B^G>r0v0RjliwPgaFHaFJ&s zVJCbs;6$FQljK4@<3L8OtZkOHg63KtK|%L5Gl?`Z$(hCjj=tJPV}dUKW*y}%;fIKS zl+?Z-@c)ZR$P|UkO=LSCz1wLgh*lAEMHrhio3T{;tUg7^w3q%WfxH~irTI&Civ_OH zVC+Th?mNfir4p(9ID&L8qj){leZ*g!ow^!xp1%oL}SJ7Wl8;RII zRupjivYtSgrD!nA^Tpm%KDtx?-D_VkPnaJAt-TW_gmy|g?}BZza$`Tx4!P0g`P&4! zodk98@&4f<+z&Nb1CQ-+PL)MB8~*g1sIizynb)auU+Q_E~2&t?VS)8$-!g zhMAsyvREQf@AssRt4b?YddjHM3qB{p}PAs8*CT>0v; z-+$mnCR8BBWa(!U%QJ=IS9&1d!u|UV8bS6-zW4tKPRh z=49HaYQic(y!-JF$tk;PznU6fqJdb7UODF&pH>IgRK+(NCeL+DB#lD%22s(6#m>iOUTmz3rOG>h4rcsg*c|!(i6hkR?kGH0bU2 z_RQ)QCHVYTCm5)(9vvCPcSU^8Ru8@@R66LU%^0>P=>pWB?)$b2q5(Zm6=K>QC!Tc> z2afA$yD0Gv?B~G5SuUm6!C>ySyl{3`J86TSwboVtz=i%D-(cH0N%*)ViYb3-_MUXq zjQWytI!bzKP;)u4U+71K<&W;i`gBEDcj>LZSa+JulSY>l!K5Fy0-mZ~8x|SW#l)mV z*4)5hW8)@UCy4w9v+!He=@1tj)gh4R(|h=K2Q}I7SULP-8-YHCavC>nIK9+LiSnfN z&8Fp&n60U{{2rd`xx>IC2==NyR~RldVBF z4H=LSHh2u@jw4^Y)laOvd|6z_+2o3rclS$zp38A*qM)#l3HoF5L+AOc?UMNQtYh=h z$#LlB^+xjcOFW)?2M%i*=)0-)TabLJ7k&aZ@+R@3rUo)+=6dNO5~wE!_={I-bX2yX7(-?wIaNYty5&vZiN&*r<+X zQ%ng}r(dpV=s{OX&xTBPXO|P1+rOu`-wA_B_+v#BvUj%Jl-AqKmYZu6)WjnOsabYy zEXJ709_WOT$@5fS2{oT<%n|`a(f?9IlN^ZF0fy9yfQ3Nx@AUjj%5=|YhP?U zHc%~R*!ee@{~iCg34w644dZ3H#eoy*C`59LxnO0Q^Q#}L$+vMTLen-GvXc~FR8>=V z({XbPmV9Ymc{msrp27=9-w#n&XXDd5jIwmDdj=^s!JZtlscHLu{KG!1KaRBBsuj-K z+HSyTOn@Dc7y>aVbrWSrXm`R(M`YSt8I&+&#@qY&I>_d(^OdH86zG!Y_~1;GI}{y( zIBw9AyKcOY5Z>nkX!JE*O>5J*FEEi+Fs;tV8W)_Z@cWmrqt)R7vU{-hWF-QL1@DLv_)l-{Gu1VUc{xR8&3prR*_C#8A39X$~g%g zRW*y5VSgQ|f9oTE{xePsM=?5)@2Yk63J_4nFp*AvnV&>eSg2R}1twDumZ3GNIWKrOVy$0U!_4$#tW2Dl=G9`U) zvXbPa6G2LPAuf}9`Kr3w4yM8nv~TBR9TUoxl93eFFfWvJHrI^}WO#3n8L9>WOrv;F z(#^+*w1dSOjP-kSGau5_BIr3ZoLIkL#s|a=-0i|5Q-&^Kwik9K+Ewu9(i#4d_t&Hz z3fq#d=+TbbUv0VETV7!`8iS+0L1I}di+rD|Dt3J-9B=(rl#DCn?X|SM{;jY~8S6ht zC14%OFCz7Y*m-+`^V)$`%7yb-Et!%rY19uAMgRRh@|`$CZ7S+Y)FA$$*OYJWtU5qOg zO-P2_eNZT|ANT@Hi)3+MA;m7C__1(#NQ?6l%**AR7o1O9cXLMQbA4vzAuTI+IWI

!Xv;WxS_46N-kt8t`sta&A|g{|2w1QaJ2M+w-Um{-}O zpZWfnMAz#CGwc;ZrCH_+k=e?NvsKfKqLAve6ix#Uh(f(9O!cJYOcMwB{1{KqZ=>w` zCQW3znJtvJaWi+uh4uyb@;@bgRkwhAG%(0xuSXU)K7K( zDER?C=ddaXRSGUX?Yv&?yV+thY`kFHU08}*ebZdT`h+2i&CivdK5?n{B#@~F|4|oU zhsjOY3Qi&C53MPuX!+cuUWZ0jrj~;QuzRLnH(|nUd9dpGifUal{I~lhh@^}O48-Ps z@%vuN3U)xJ5G%`=+!zE%_tTC#)immIs8c(1?B5}A@%xXEBS=Tk2|vmsGcp)zfmeJc z6m_t*`!lrrr3P1eVzDsVF;A8DJ<^=lzAzEU zjZ0L(vJJP(!G~K~wuNfcS=+2eNM)@CHCT``QV>bFo)2=kgnGEmsIW+l{nY?4KA`}q zMWQ?C!&Y+bD@jPe+XeVyX1^0Z2%~9>E|4|hGvX}Tvz0ch9rEFx=&QtlFqu9VPQUP-oS9R-! z=7=g0}kskgbbU@ zvGK!L*9fI-BB&f5!N?;q^VdeLVkzH zAn|id=9ki2JlQAbYA0JyWar%j;3cDqSkEtu{HF>FnuwAUpZ1P2$8x8)=|(%NmTNXhM7OkO6V_8_pgV`)Yh(7>s+(DC`VAugR`Lw9 z*o@tY<*76#JB!ic$*i5;%_bt}4P#cV-QS#Y{a>8&i%YPdhnFKjthheeypAGS{8hWW zf$TXu;!$SL|3I!Zl%<;zuT~NpDBU`aOuNYV5*u_|Z+dg+6SlU^SQ5joK zrwzN$b@_Mg?oaEwIXoIeWhN%H6hCl#2bEfCUMuC6Quew0-dPw0DsaYprV0iug2!aL ztZpBq(g_uxQ;o-p(*nEF-x0Y&aB8?3ZvILC2pWP>Tm!E3*XEk%ObKyxYQnKHB2=S? zWWr@x@G~MkblE!75 z4(uEQnNcect}iJ36m8Z=*jJ^PNx0USeQH(0=(|)bm;c|%)krfN;qI@VHR;EG(5L(# z2f*|W3D=}AUlt;;)Ycdi$&Zdjz390{N0<}ST~do{TDR=Ul`*D?n9u+nvRZvVvU77AR*qQO^VM2?c;!6k zI=7aqKL~_(a%EDpZ0hjv`UOeRIqSf~ztD3F{(zKLj==|ObaXwq_oiBGfE&Eam4gbB z!`HCfLY%6c65X$U3{sjk?4GJ4nH;(S%+dCfrj}=sp!(B_^>d~D+9f)|HnbC66m7kI zZVP~ub@d`Kqo)`(&!Tb$_Gf`B{L$O7%JXQIO`c5}N#bv}Q)$mFHj+s(CJR`ywQ9y7 zuTw^MafbcAA3522r4Yk^L~?9;8TRg$`oNuL>F3JFo%fRVVs0cibho+{?HMX$H&5Si zGG`!QJ?BbK3C5Om{8E01C##B1M;Pe$5$T|@c`umM&TdN9$kd4J^QZwDzVnmp)zt(< zZag~@-}4bMRm59u@mNB3pMYHw6XRlU|9IUuJZ~OFZmP}lJ%Z3PyT4fydUmb`6=d;6 zc8HI(A6Bxwzd)(feGp9a6fgP5x@Q$QR?XAJOw!`wa&T&|vdgB{FE=v4S?`1G_FK=h z-H+FkXIDC(k*xLQoz!WD^K;xRRHU&`=YOd)8BFq5mRua@`ZRf-P_EV%R5NJ`Y7l?{ za?LS#E~q?myJybTCcjDM^lD;?*!|WH23XJcq)wgpP!hwfyPrsUJmnOdIpBr}#gQPK z%~m{m@Jz3tTmj*sZDaEk*#5Y$E(yjNY=EbA3lz&NE;b6l%wIq3t(Vu|#GIVsBM;Ma zHiD@|7f+_~VU;d=4>X}n;7;xOkSP_*B4 zA+Ybv6Vedl!kHpfRNRVuqxBg)?0A71K3p2H{uJd|1;(=r6mJ(z^9;%7g9pC31~5kOlfdrF?O&BuCJ-Kyo(rWK}2wfhapa4w0P;A#d1QhY|x;>u(6HUCTj54a8k**cnbjFM#%35U@I zlRtf$o@3_y>)^?>!Mr$zg6ywO%u~_`xa=|sI_fmu{lg*__yd+N_KsK`Ab}s(gCly% z`4a@{faqM`pyCNJyk@{#G-+7X3CoP50O*Rq7y4PAXZCt?cnT4*35_AokQEVs>iL@( z1NAXm&vE!&mtX(D{N%TabaSzlFPZ5X0N==Pb*6%v7@PFQ@P^ClU`3npW*vs&VlwC* z_hxfFg?W>U8oRRMTAAlaJa^SC_h5J!g(n>!<+0ccI(i1M0#=GO&K-3r;J(=WE2Ij} zQ^v%^_!)wuW`3#P-`$GjR!fNe{b4#TkwU~>1%#^ffY{0-LPklA3~J%T>!umXjE}dU zzJt|Ii)_)0fv$*dK6V34)5qo!?+ehuz~?EuF+<1Lxb(0Lkhb5@6VVlDMw_sN!edRB zo!~peeYFv8E7hkJK>V{pp$1NbjW3RhozrLS?36XUH0N#)-vQ|!L$4AVg^0}Ui3X{ zc=zt;zNH!;iNdh0fzffj(k>Go04 z{Jz`RY_?M*u6##Guf#(5wSxq%}g+92T-OwA?aOSbCaxXq)5oG@*;r;@c zCac%Tf1Ca6;mBi0`eZ?&-}$u?#9a@dwc=8I5o_MCk@X@=d;I|d;huUb@-hs1v9rQ= z;<)ppSm*{j%nWuA5DkUDRsHP|PO|G(V8}F$`r)ini0u@P4nkCK`YDK#m0f~WWaw+E zu5yrj;p1fM+-$%hb%iu2bt;0m$amrSQeJ550*mgmY#2tv9MamDmo^`wPO!~9)V|eu zV~DE7Srw*Ha=o`2&0?^v{GG!(2)dy0$+(=UqkX}H(A_BlfIP)JOX*vzc20}BUR8GF zU6eV)o(KBIzWQJntUJbbitikjQ2=PkfyQLHWl)^WI`0I1|A<&&I7aH`^JCQUhGj7( zCN8qzkuT=fU{+t%gYo)bcpu516`rx(9|iZ}HVP8cE=eA*e6QaRTf5~QF1$y|C0YpY z>wO&~Ordkk;4yYZazem9^eQmxJ~gQC0@rM|5b?}fGcqDxc+EIHyV1q0Ed7V0vc+KU zZqw3kux+JP=!FfN5A)@HxXn#-QC zGutPF{C&JQ=Rq%FrS&ZjV=^mZ;L}Td0Js1*$3&t2D$IWr;i#op@!!en-;lu(8Q57& zFJ^!s0DSxo3fO)|OAb5_vmQvB#f&YlSUYO%3GedWR^%q`ZmfsXA~$vbAsd_Z@zLRX z4Rd5!qS=o@klCd5vSU;vQL}D*rPkxuYw@ZdyxR=dTX{2>fgL+;4Cj?LucjJd=W&F5 zcqXb^*;Z5I{5A4q_lOJw6DLnm%b~x&7(v%``D81Ow(@GHd_vnnS9jsUV@q)`<*mpB zdJzX{YDzON0f&uMRdhsX&oY0r%npDkntQpodIc^p((yeRx_)GI60Db@HO5QM(Bjx`7>B%&eBFS`Do2gk+mH0GBr*K$Dp)Ma^ zE1kDVk-4LJsQ-EeueoNqx&P`j)t`Ws=LO{qExbis$F{bdTa#y|v#^^riE0!zJduze zD22@+awojAU`wHkq0kTi{%n_rynB(P7qIy#FmG%ehCds~*!@&-Qe%!#azLvh~066LFK~L$lV2UQa6@{V5ZN zHXq~3gQ|634;R$sWp#P?B0e#}f=ARo5Ty=BQm~pvT~PvQ9L~S}XkK1kH&h=4ateE8R2y6t}7m*u7owk!mqS$5yZURl8y zDZrE^0iiAE>AvpSdEg>ioP0~Jo{F9Ai6kzx%FK()NPb_i)`GepvZ%(wWF7N%XYq=wJGR3td?RSLYb4uREZ5;wN*s^kKftlA!RJ2lW-*`1g@oOEBB>p)DCH( zsb9kbQ9J@M!yQ2ikFnz_qiFrBBQ49XAm05hKSCRM)CIeZG&j#7BI(VkL`9Zn!|CbD zi>+$tL2rAyQ1s)eBA#Xr+g{FrFNID?4-9q(q3v7l>(%^>0KJKUxu2v4TMQ_6#1q!@ zc__&><{#TRZN7KSR3FR*hs#XNYwHYi(IFjnb{^y*@qj|JSu0}$2Z9Ct>hXeVEeysC zE@Ojb*s9(?EEIWK6=Tte*8lDoEtqP01-bKbST-@Y9l$0p{qlqgW*?L6*EH@f7f>34%cM zvY&AN7$b^l^%Li(nYe=EUVQI_`a`z`5zt-8_;)I{u;^eykqBLo4WEd6q5(R@bVFi; zAH{~~F`oEF8$c|NU=K`|a=zBmQg3o8HLu2lu%BOrm5(=ZhWdBbkl-vuzq#63-a>Bc zZLp>X3U8>EL_xjJvK=-4smh_jz{jT}`x79w*?{|@!&c*<4=l6o7yf?3NbqDrritdN zJkTR91kj2e!fqO z5sbS?PP3RjNxfC;>DAZYkliH0Lpj)i3u9@TOUqVt|N4}h6pQ^Lajn-I&(1B5o|GYk z;`jtRDt^MS+j`nC2k;R9b}hh6aKS%5P|7s(hL!1#O55^h2Zx7-qj&2@R4d0^hM(Uf zom=~O+X__kKhu$Spa-XUbhK1$xN;)0?YVnHV^=W3 zT7Y*8rud4sh6Z4QWzl3!z%-A`hN%({QMAE-v# z4q0{Y)1t5JY(?_}mL#b=zTsKi@TZJEW~ETtx3Ghq4>0^|CE*NvP1s7?W~FRY$G%4TtveukP6q^{uQPdv|j#|D(-#&kX5;{zN!2Z?0B zN0RgKT4i4F@P1e-wtO+A!1|GT@bMT7F%ARcOdhZu6JJPa?dw(jM8GBH1?-KMb;oyd zyk{rDu;s*bmucp`vB25kmwj%GVV9l;a=d(*x#uk=gssn~MVX(FY%XU9r|@%l?H=$0 zKLq?<`#2F?{x-nD`1NasFD~u3NSwM67%A{;Q(ZpUp4F_H5w2&};sd)SlH~EoZ>~z! ztM$-5zZUQ{T1V_wl%{v>a`lTw>-FAgOB3EbXQ`T;MT7lD#COu;I{?Muacu~7tOEWf zglngooz?LE#Oq5{BxQQ(rPtUFA?(00A^i@Zo;K(*P&{TU!9g0w)!|<#DAI5x6~+EJ z}ec8~;L{+zuon*?XKuOX8{=0P-Xc6F!Jp(m#E= z*%B%Bl-%y?3%bl>?~NZy9G;k4`@!F`$T`jj{@$AfTJRj!v!5a&o&(sE&#i(W;(xHG zU@JKpg-)w`abC_p`Szn1edP8wi-k_Pid1RX~4Ve`O<@T2GN%-$t*(G@{226VJIs&tUF z_u!v9EzlYn&-@BPy#1gi%#-3~6#P5I8^RQqmWFS)O4uoD9-3sDVfqUyokjr3(&;bM z#66%8fb8M50w_F}irCvwCyL>Tjq1$3)7uRw;E=I>k>Sx#HEhoe(;dO-wrwY75V(1y zkuQ-XE8PVoGb2rocqNy2yzxrO1v}y~#ViRwUup+ZSwJ&*o?>+l0Z4m;`VK z+93yhbSK~9rL@t0O{2M@50oQSLXvYtuFp1Ejp!D9?V0`soVH~&OK43@a}4w!4V?~V zCzt$Jlv$AYfSjhJ;785>x%^B43_I$;D5bpwdH5LMDJLSW8JT1&toEul8%eX8(=oo? z&EPtw2aa?xK=H41-BGpDtnH^7-JP#PrH!Ia+CCEcuW&}Jkj*fKy}CflJFvW7^6Pme z53U9t+&_!!xBucdvdaXB0$SRDe~_L$Gm^40oG}&dr>hIH>dg{;1!f-Rw30D+3IdKU z5-eCrf{s>Q0U(dEaQXbgpPQQ>8I~Rn{~Kd``!~kO$$q2WJ?CuD)>b5=^rY(d()mwJ znS|7k{KW`JL;qe}4OH;5-i;W6!F4+}&3qt4pp4?3`@1q5Eys^1CdaRRzcKH_8_=lj z9A?7lrmHnvQ+{5~i0j-C^&eL`!;%S8Z#Jp1e=QibNt`U@Ffrb?{1- zhBn0tg6GB0x5;DqNw8^wkDnjn`s2T%`N!mTL4LW-@ed&2_ucQHrWrQqQAlRoJ;IH6 z_3T)m%je>A%s9+NU(gSW(ZkbY$xIdZvm>C*NHo65L-HSp_ajXkgTB@Xt2c%AqQudr zcywYq$T6u4QfQNoap+Fhy0f-v)IHy$$~`3%fO}%w@}uS+EC+hpUX<840O}f5!(HMj zf;CCuv6+t{_$tLO{FAKni$9M*c_!>-_vVH!U?_NW04V1;^%sn(=M1X1F|RI8HxX)t zNdA?q1BvHze}nFzteTo}6JNefZs~tQ1q~TRS}Nk7rO$-r|G#RNBszEka^w~z2jVa} zoLaDIq6GMHA?x0OxrwAg7k$l`bLSpJ$#1dWsiBIT&6X=TIiY(c*NWY=<94&Y#Vsfi z><_*doh;Yum>59xpD!OcpwY3q&-Cb#;3Em)cgnh9AtP}Z z&fpryUs9u=V~-Zb`fe@R=WgII?RwZl(vAqsL-shl86e_4hxPe6*}3@Fd)q;(;gcN` zFc**J(J^}Q)cZ$A_qtD@L5E0$Uc3~xzS@_cfqEq(JucLq(CY%IeF(uhRacNq!K~P+ zoc9?)186X3q!rph*%Dh;7fEb#*b$!XsX0YDWyzHZA62<%tEdX96b@b@# z`Jxz!$VggdE_k2W&@As8OLK*}UlkoZ%WlNkt{ zEdNt_fC1-%VTT?nIB9#I4^rzR0*|e>K-UMPk zLt=w#i3xsY_VUL#Vd}hZS51`h!-h`+ndQB#m_IMN5&82YG8pU+k1taRpyjU0Ka-Vw zoP5y5Z-;K~*TH~DwmgH3)V3~Kqkcg3*7p({oc=QUEQ54-p{|j%=GWd{)KZ7wgLavj z3y=But{^ksCt=Ny+q!t^3d=w(GP#5Y^cd@ex2AsE1U$m2FFwUEED*K*fQe9$v6zgY zU7t`O{2P)ALO$5+;KJALde%4ssu+1k<4W2;NP+Axh@S&U4*v!dA}XzO+n-TcS6Ae^ zYE{v!a{dAp)0W-0%kMt$|BZ@j9Tt)P3n&tmQ;s+kd;X9k6Y!e{&j1Ov-F>T52<+EG zjS11gH_}YA*MCDIDY@LHRt}%|s$}TX(m zecmZ+><&RVrB#yuf(wwCZxoO$PBVL2ot%LeT!2y?62i9q&7Z1^)=Aa6lYolVxC-bg z!T8S+R!ehx+h;RWE%_pT0Zk(QW-g0fAZ@b~flU_Qt*Db9)!m^js_Mj?pYz~gCIZDQ z@TUZ-^TMTK3p`ITITy;mprG4O+FR9Y4(Xnwioha;PHr8Gf6-M%~H;zrsQ&cofJNUW>>jJrvpbVWm{8= zj_-o=*_q9|0ZyNHf>U?>iTy`!<8!IWeK$n0w!MbE?j*0iiR#(WhcTOWpZDEd8eX_= z=Wsb-r)%lceIW69*{K$-I^v@Vt6N8hR;$RXhhSlCNt$yvPs`)TsA&eh#o9jc3axeV znxTPD4Hb;d!q@mo1-xW7H*5@;0Qrb=MD%Fu_3WKrLK%>*Pm3S&$Uzr zL{Kw6@d9vAd+worhAtsVh?6Lx3G`zPop{j`v_!mR*aWHyxM~e#wor@D#}qhj z+&m}DFO$hG>*DZsgq@_Iy9E`(<{K0>VsF`Ch(wxXcM{yKH02%3LZyYCjyM99T z-2>F?ijA*R3LHmPG9V+Tl?{8(^f+SU)j{aw8DIA?|EF@q*CN6^uj6y0{v<=ZNXmIR zCBk=QkyJysQ5RoH<*{dE=%&vT!@gL)-JmQMI}Nk3nB7~)`_w;*g){M`-kCjAsXXcI z()E|MroduAcr#+l>d;WaD$cxgsPV)um+{YKuvk}&12##P!mAZXOBDO!;CY7aOpJrH z%Axr}r!u?4FXh_7Lay7{Q+c>F`+PNN*7#H&G@#PpyNuSSRa=25enVK1a*{!JZ)}WO zHJurs>}mT=9t$lqIyIYqthBF^!?C=2cPi$@uCWf%w3J_9iR~9=vGB9qk-dI~*JzGL z`y{_+k7&z?`3WBLPZt^-MN%EU7grM&ZP*j$AT<+yW zm!K_F;sf)bKW$Gy%kWZlPVzgiMA^7--j6WznGp+qG~>g!BM&TB;eV2TL*1vqF~`i` zc9`f4SOpBbpM3oP0gx_3k#RLn9&8sTCO&r>sYx8F)1tP%fD^@W7PD;zQ0lFdK2Cl( z0V+*?SC8Pqf;0|KdpFX4*WR(zb=P@3s|TV8zt78SM;7Y~*6)3qmb_LET$0rVtHMJS z-R5pIKlBGsKgYgW0-YR;xE(vz=;w%Xt6M*oDYv!ihN^g68AhXK8F>9apPC-1nP!8d5KBxW<8a26RE##`3M zN+eSmBxF8$$~P3HwjJ?TTx_h9O4Glq*CO)ELHc+dnLVEQwSN(fAu5Y&%P%>R`R6V7 zcc&N;@7D}BKlvDV3Bitz_H>kE{S}#Ca>R+r^+_MgqBJ`15?JZpGOROc+1SS$e6`2Zc- zF{>jpar2~2*7{l+)iy?~O}9I?n}|2Ny8njvVn zzs$BVYbcrNXn(G}MXaIyY>)Tzy3LpX^yzv0hV{VBPgb5uXDSQ!_g8BBn{XYDF!mNt z4u?tKob1aL63_0g^f3q3FSyIMVJ>342U@s0JY6?JkGpx6&J!8;^s-mxNDYZAUa)<+`>?acU7Xh* zE_P(3$ofg1=3a*^4rnrwUOLP~m+c9^oY2yPZRdGeT-nT6mhWPcu^%ul2Iw4W`YH9ys=(V6Qwv4x&wWr=< z`Nrh!XWg$6Yg75JM#?*1qj%Sfm^vr*!ARbBweJg!wn!A@#-n9@w9R+lMG%B2iD3q4 z&aNvH|A?Pegy*r`kFavY_D_FO-aQJ8d^4Y5#%6cTw{Y13T6o-Av>SBC#(oKc;+;R8<@&`a z98w>@lCdpunSb#n!duQ%edeK`83v(<^{^Hl&$+`sN{hWlwR}0?!PuS;r54`QpOK0c zA89-D(S8POxz`!Tq@nKGTo&b!6%f!00)MX)^IJ_~OZhEc z@I~}1pjsv@=!MCswo~9iL{V6#rQ3#d6|z`gZ9RT*Vf%#l&VdTtt1uM#FL9w^HPzm4 zIai!g7?oXan4SXpluEJ`Uf3sAT*K?2aYHJsI%Rs!$m?uc{^&kmzOWD5?Y6}X1#$uw zc#d!CbmF-B61er;6=kCiV}RYFjRnWIsGX?WDv_&YjJ3sa+w?3_t45Fr*_JWnr;*9> zokn$h(phi&UEUdL%b_S0DR+SN&Q#7uhyNz`k|x%*?mJ6K`zWu)Lo#Ar0Ou}wP*dFL6m?T^khP-q9L%Pu|uj@1%*?n~ZV&?EJ z+;OB#i<63k&yP6euH#thi$el|6ornhLVT5+a1#N`5840wTz<0-1^EC|6gZ`XG;00l zyNM`|@sgqayls(z&4IzLWUIl(xUdKYMnC&xX+wjN1Fs%_s;=xXh37TXX2yXctUh_( z_s^^#i5rWRczIPfw2<ML8`=G;5%}OGR{AyIzgi-$Y!UH6r>SK-Q519l|uSlB?>=(wx zYx}byf(d1#s*$tvL+12pmC7;l^1bG7y<1{6lz&Aqg~^?Ubl`Yj6>M_Ky1#t+;^SMa z>Z|7@*+}sOk_RjCViT#(om5K+!*e$4dCnU}*cC0WvkfSJkyk=AXKIbZX9vL`fcTPG z+>8n`3D7l?W<=Ycv3^VJJvGlhB*A&s8GP`4S_@NlWm!McaVqdC#%*6UL2+t4hVc)( z_2-g*KWPlOFh4KDFE9SkFAt82#VovJ$Zb2%f|T{VW6tHdX0Vp%GmGkYO`%K|L@Dalv=<;n%UsR72?+j}E#@ej`0ruWzP1)YS121N&p@l%t{yWqlk2ce0qWWArh zfmxgo3TQVP(=myfn!o#9>{! zq4A`H_BzVa@UMs8+fh~ys;e?-lu#VsWg@jvdY(VjMD*(XBZns_g-uTYHB_}W#NXPu z(BJn)bXGkrUoomWZKS>Q^KtTa4!8M41_HTxcqGrpJpHq+{#^WDyx$VzV+mLHFM*86 ze>0I7aHoEPe(fM_`s}?|SeRHjXI{Q+ING*UJ~oJr zjdyT(zL0SZCy;bbLD1Wqb$^<3u+v{Y+&HCTm*qIsa`6;?sgYXh@a)%&o57LM7*kY? zr$Z+k*78+S-C5^X(Sob47ol(mJSfhxrBQG&rR&KdIA{ zDUrf)k&=CaJCq){A)sxgFdqls$%TbVi1@TCx{RIF);9dM>cOU_0oNIi=3+!RAU;#= z`51kw8m{@$MFaOYIQDOn&|m9|ef6}dbm8m$LBA^TAHF}46xdu$?dQ^bf4%eJZZO68 zk&4i{d%71QWqc#=?91fdmR;W<&!6_|8XZO9Yf3_SybG_ZcR0bFuN z@l4ZcuSl_PVwsNR?4C$hO5@@kHa(s&ESt`P>C?K`n#%=&A&d6I$ySHl(AeNtPD=mh zK_>aN&s2ZK_={iizj_Zaw^zryQgXkoAiv+l3U?zlo(T{x^4Mt^ddL)Xs5JSf#U&-e zUp0(~%cU^k&}cF6EN6^Pod;S?C;Ps=_bm40S#+Wl9p!T^z2HiYGCqA{k%NMa(z_xn zL{xr!x+bOYE_HU)tGyB^hP+gNhy67_zk&+@)UXQhLkEsJz%P9^UErCGHaV98v=JF> zICxYzc^qtgQnh~N0VVddZU8;Twl2;GMIDuT@Rm6Vs4zeFUu(9VIJISdVgsJnxvmJV z1lpAFIpvN3pci09F1SVIW)02&JTvFZd}R;};21!SgFdz;9$EUMNCyiz*5Z0v-)w?8 zJ<>lm5(7;^?k{x#aS#wk`9JM9|0PVLKiO)I)&g3CcL7y4MZ8Vs1lE0?dMbZt)OgSdB$A*ZM5fF!u=DJ~%qdZ?{B?Jjx`Tr&{+%fdz06fTorinXd>Ni=Z&ZvL*9_VNgI}@ab2kV{AplI5w zt?Tg~@w}}-%>d0sO@4s%&VsEK$SL zA8&?%y9J{F2G6(I#CnGj)XufBzES)*d~HrUckO3Zf%0{S$UF^oYjGUBddM?$G1<_w z&iP{pF2@2Y$?6|H(Fi+)BOMxy5HawRZGSfTo{x|56y5y9pnkOI&j5qMbsm`WF5ug5 z0Daf{WCl>@+kYFM*9SM^eoMEv%UvI*HDPbjT+B;3UPiK<9R{DAfNX_(O0v7AG zt57Y|m0>bn|qjJnxSrlr-spaTOK~gy*-0>B%u#eYd5a4W)XZ0r| zWsV=Nw*Tb$^s`jWZBh0*Wxp;EWrxK4%In`Y6!}M5Vc`HWi~SqQRWB336v##TnBXMI zV*r1S)evD;cVxo+h9Og#B={|>Jrx5=X;;^941$)BISKzA9MwZX#VmEqdj+Z+?k`e~ zg&qpZmQ=`VEL1T-bo(n%E-}KZ0@cLYSMPFbyPh0Uibhn_N!9&6_O^+E;GcT%dV{Pf zh`ddlD{bS`LZ}q*W8(<^ePpDk#j9TyegZY02=d%P7{h{o<(%lQYDT7}hOSrUxe50gSa3t4OI)Fj&115K z*ma_d@%my@+Asvn-*ESj8b$r!aUMI7HY=_8T`BT#6cr(vh1b8(M5C4m8u!9PgL!IX z%%uVS3XElj_acnU7X3NWXnJ;cC5fb^Q05-y(hj7w3J!UO8_=p->!-FnYYfL|q?@f7 zX-;;68`0%@(@TBnGpgy69XsR3?9OYSys;l9^Lk@T^4xUYr5`e+xO0w98iXho)d3XK zzvs?#xjKJx&H&3RZ;5E1EGwW z^je0`i{+0^35Fwf?EeZIcu?;qk%_Xe5uhyQx?yw<&Qm|wQu~?TEHV!KIs5*Imt5Sx zpCD>cL4j~c23~f6SK2VIy~KmhjCyHxD{4K~e<`%9`6`|)Uh&{TidkC0TH1*y=S<)6 z-*~XM6G;G#Bi^pdr3K*b^6JkPqbx}|)_RM7Ad)%o1B$_kLW9wk_h{2QZmUg~p^LuV z!ORe~J@3l}Pp%eI&WH4ibJ39*Ab}*VeZjBKWfZTkqX`1ncV{Q26GRUqE4T0O<@+$E|&MyN){SVM9#&5&ywl#|Iqc;VR1dn7HE(JOOO!U z2ZDPD?oRL!Ab7A4+;x!P?(Q1g-QC^Y-DPlpo8Qej@7#0W`)hwQ-|U&*J>At+t5(&5 z&zh);`zhqNK{>5Zsr7&2-&mBF*|}(fTwk_Lnc{Nf*{{a{lZz#oCObfRnzh3%7MfGT zM(#DRy5)WPL5(EM`<0e~b5q^8aOX#|NnpA{$W9m7R$61X1J^k==WUzbzf=+XvVms8l340yUGt$QKIRpjhh-Fr!S>+wNEtwpxoowR7tm z_ih^vdw&$)mekaIwA1H94LIj-UFc8a;1hm91`if_evuCXUC`fe3;fbDKpw9#M7ow+ z>A!x1#lz$mk%tm6`Ta$~$y`GGq-lq*qK}KdPXn_2kpnsI7VS7Xd1>zC$oRe~{_L!K z_4n7L4N`4}B7XA3*Y2XEtvgt$2F}g$%;H`Sj-Tsg^7v61J@_GI4#GgcVXN@+6coqt zV3!-T51YzcB8QWizIpY2N@J9nrM9=5XMM2W#f4$LYm$C1Ff?OpjokBx4`sJ=Vyae} z1tS}zNO&z$XMOyreR5?Qa4N}-TTrz1s6rfs8Q#2ozToUHPCgnD>kAd<9n&zG%M%!^4h)GYohfouPlV`2C;8_etFF z@De+%J=E-suVSx*1f={*VAQCx5r8{2VLhmVj;eMlJ^7@EIk}WIT$BA6;jhlyBI(Y@ zx`i6wUFcA4!9q2`pE_Q`CTlsToZWWAI>wgDZOP}MPAZbq`#8e^du5E+WtJ|j1-e=)haR4&vg zgH9K|vptv)n;OB8a@>%nRez4XORPGClS=#qN66CGVzJHDD<$1^phedX^!Ihwu37w= z!*ismWFU6=#vX!wf{!b>lk8pf3P?PKFm&_08>%i{CQv7uSmE z^h4lPAXoZB%e)aS()U>N&vt{J3h*&pcYga5W?N0~(c7*a931*8XXUo^I0*9> zh{(xMSB`nhYYNqkMf0`~cIA~>!bM!@P%+^VU(IK^hT5$e>R=BEu7`ZjTfGRtQPn0B zZ`N!G3)LIp;|&eP144TS4P_&0mbw3QlQ5I&>Yz?%c+X#-M|{j~v{P-me7tk4-AIa| zTa~<3t~xJihLpCO&vZol(KKB zU{Gnm?*u8b&_pzsc^x&AH?B)AZ$IjIJ5Q_?$i%v)q1N+=(($pWtT2a1$4XdiZlqN1WngGiq~n7xMdX zd+C$&;ht_j*B z*p|F7v|POHQ=FldgY&QQb+1ZefQG2klbV$+M9#bF=MksnRj3h)0%>RPwd`E!#tzu? zZ(h4wk2=REJg*LMH`~Tg*{6I^Q@nl%iw&3Oqls^olBk2;| z$4qU)(|>dgoZp1#Z>Pde2l{)o?)mfAwqOna!tq)z5?VXj6Cj~?nSwQT`NbHHDj1oV zxrk(GYk}_Y<+xVEtt04R?X>?E_H!4Yn1 z^z3Nhfj%(z4N!8FyiyVI?#*%j0rKEiAhkH}l=v}D7iu-+Eg}-1&u85FYEYvYx(As^ zNz-=wzW(|sP-TUoBb^6~ii_i(Hp&>e48zcp!F}SVp-`Vq@DqvqcFe<%4b!|H<#Klc z1#Ocj2Vo~4ytDAfFQ+Yjx39-4_Y%Rfj(@Eui#c=US(o znJ?-c{xO5`x7Do3S3IcwMhKZli1nDnDDpewTOLPLc8619L_|azoWXF}S%q)rj>VIh z1g=DSO+cuoVP~2C@Q`oc)dao#T4F8rp`2~Lpr}iSUM+_*O zyaR*)QBI=OrS3fh?jN-~%nDa}>OSQ+n=rbp{!m@zQM{KLiaS!UO|YA+kdw?wiC{fK z%)pn^W!Uv%Q#PrQcowEya#KMO_V)dr^qrQ0L7BnewYLZ*#e*abwY-d&96=|#c3~wI z@Jr;dHvzkX&u6K4kB;v-dW2ue=3_^LKyL#A0_Ekte%Wz&{iv9c5kdXO?PY8~d|oBv zJshs9yHIR~X?6R%f7#}UqLBZ{@NMAiqiNs+B6NuFt4J7*O*A9*k2T({4c^xgjG?_X!GU`KB$(Jq zfp+GcqA7Vd>Wp`XlAaAukv*~U+K70d*uANuLZQETodg7&WY|o3x zz(YGn4h+&{F~mupnTNwY_1U(Sy*Jn_a72o)<0F9+!Nq_zB9=ptMdX`oZ-O?sjatLc zVg3+>LEJebITPFE9I`WxHSP>G0+LPPajavHOZA;x2W>{jWCrzezKC|0dcAUCo$Ra; zAZ2Kbp^Y&0_?<~C7nkIBaba_Ff8RkQZBJxrYvn`a9rVunnjfzJe0FXI<;mt`{dCAR z$~S}}Dd7tQ07GsOs|iZDAU#BADCVdsqwVy@e(OpqX!r<|CiqL~YV_kKNYhaO%8kRF`EVM*bi-Hg#(0qS{pshQl{7XeK+H{7}n zU)~ApS?CcoGeF{4t)wesk#oXV4}8OoOMsiKk+e>NQ2VaN5z_ofMNKDcXf+eWpc1Hlp=p5b3;@;HTV z44sq?CJ=wMQ1uy61(5H;`FQF45{7N`YedSHph$W9E9jJGycd>47I8MCgB91bCl|TJ z0k3KZlfbMa*HnEu*R*;cyDGRROn$*+4Ck{^6e!+`lB`H`E!LJ?EkVtm0HRd73y>lqp?^XV|03>3lrdU5_bct5ny>V>8QouB+aIiiFo$oo`$vzi85?YGcxo z;7g~4bc4Nz@$O)Iddy_wT)d>zbdiXZQ4GiGNpR%UyMT{RSA=WvMal2U5hh;xL}qKi`%Y`M%ozSv8}Z}yx!$Ah!GJV ze|my*6bqe}9Y<5iKCE50(lc99GIznm%d0BuEo{ck(kil=Hv+j>K2Mc7&`PlTsAcL} zFp0Rqzk{!&I;>F20c@cM{|4Hu>~gL-(V{_BhGaV_BWT~D`3rromJ9u-m-x@{E=T}LDc&TR?|GYp_=UYT-GgK$=s!JKXaS=gEVfF=>5DEIV1Za@fGKiErnZ%p)KDDd=|oa+d#7? zx;KJhZnG0j{<5KFY6?UZXE?K-_=+;*YpPkGp{E68bE5?G;wr3m5{Id%dT9CERFEGv zx*Qy?%UQu8;b-TxMWnDt2Qmwf5x3w22WP}^tx`LS7d%if|_AD}3yMq8$QnB{A37C68 zaf)NB{MKNdEa~yic=l<00RDIiX%COBy+&Hi!N)g)m;^1EV$pN`;_acU0eN|~xi5ux zOi;Z8s_Kdb4%ZMGksga zRPtQaeANH>r+{U89@Yyxw$#Clmw;*yBAyKrC~lx>AT6Z0r#8W2fQ2I_42x^q$FO z$i0v6ov%Z}c{Ww7#*DnS8#ixhE7A4Et)9^w+b_u48Mi{zkC)W^Y$@3y)Wg*iE{#Qe z+;9?JXR2meg?o@>TvhrVQaJreMCsq&>fZ?Je=hDuu$_^^0=|NP#?p3r767G5Iw^6@g1RnfW_riHx7X8EE~8UEv&5qYGX;_ zv@5JdYf_qK0z6J}`vJtD!ut({Db7eE+Pcl;*d}|1J1I9D0Uj_Y%ijDOs(*J@azRNb zb%*I>@kouST2>ev!8OU&2%kUkg@8kgYkp(+b3G4>N;o*(WklXZr$nH-BVjYb6vATs z4#-mh&-K5T3-HRKo)oYVFd?r(u)lp(3fY>owT59&tJ8@9mKC<}Y74Y7873D={}KWZ z40NeKWZeJncd)ZU-=6izB_s!H72_*)jDD^6NsP3)Jv;j`Qn6y*m?z3X-bLMuH&i2y zr{Exd6|r#|Jxz8xXl83yCPsi1X_ipg{KQ!m2dGw6=M6J}_X%zxG&b=p;f=db{F~k| zipTYwukmJAF)$3N*Y-E0VRiitm&OHU-P}M#A02!@n&>6|=eqxo$1)#8W`Cnj$vv*+ zXombNK5lXne$zxfI7m?oySSR00T1CkMZnQDL|a1*<2|o4W*365sUqLr1<=Y@U_57{ zXg>MwNF5N@nAv~wu`BGi^YksCF*9DmT%Njh#~lv`4A4KnOMwh!-=BwR+lTu0Y3)A0 zMSmrIgodHOB4%5u4vnhIYccJl`E&Hq^|6!;Jyw2J$blJ=g2&1tz0W7F)ExA=x_&y7M=r2QP(+t5vsJY-~BIh^wDM_gmv# zwFZC>1n?8@z1CQbXe_{8J;>9`i>ppoS_5SV)63ab()yu!?LSp1xf_urQk#sb?3QC& zHp~m|@#f2-8}|?;X;4KXn;Gnme10+X@y($EK>N#}+|m7C`Pxg}8^Dy?9erJ+LUFA| zRRemT28@^E{`5{-f|F{tY-U9k>f4;l_9aSRG+j_6tN{#eCxhCXVGaA!4Oz;IO;wCH z=)$g+j>cZe(|)oAF#(5M!kU&zYV@WZqKC;mzWeZ#0pA{{^G8V8vD=!!+I(Ae8~6@T z8ugR3E1kx`*>c*Bqk;D2n!~=ojN<>-O4_1@S;X2hajdDaFY2o!JW^Qola3m_59g1L z9-1GCh;pcPNUdd_ImT?F&P1MAh1dX8YC(P*vu~g!hBYmdL0;_$sAkS4qmXCWTZ`B+zD5p8|)M{ zt>G}8VV`uh8LDGqQM}O|WomF7VXg*K0(mO7TPeujBzLbA?IUq-yxnrY-WjU-F*&W5LgG97165KEMHS7<^iW{BFGIQCn645Rh<*>)M9uJiX4~u*jOB}B_-xY5)3oj5Z2ma6L)Rj!yPp^5G?lQY-bL8dK{ch$$(=)Q* z8_c=jpmwwrdr~q;8_=$=^gbLuqY%=~ldNa=!Q+05R@-TfLOVUNW-5QyM7}=7#?UOE zaw%ymx%Tc~zSv47w%xnm<-TW2xT$pIpplkr9m7EnyFNLw2sQEy8xSSYne0$Hx-weP zn9@>F3b=_6C3e{|u&}!p-Yw-q{T$Qy-dI|EdIrw86*KBwK94M<`u*~z$j;uHI~q%w zqoV^X@`p`b4OQH$tsRo)QdIpRsZG@i`RbPl1F$>zVnA67UXzvsp-3MUWj41>bCGUq zCsv?VPY8DTI)#GvFj`L*{!ZEX+jk@&hR({8j-#6Nq2OmB6*EF^(st>Ey20PFeA!@w zvi$3Z(Cx&lGr=8jcjB~=({*<%10UQ@&UrSzrPNay-~}mlAfMkkw9q)#aLDIwVXEdz z*0*f-be+)$uFo_#&X?x)iX@Tzkkv44%l`jz+VRu9LUh1wislmnNv@f3Q4_E^B|>O0E_SZxghbHC0zokiLS670}9n{Uw{MsPgZ zJ-J#*1U%`R-Qmj@EH}Fr5GsI>kN)T$#lJDII5tgJR)kz4p3y|?>I2%cM z%6F*Ugq({pY%bhc%C(JjoKlnL6&{*vtcQO(W>_<;=Y)KFD76}bW`71E>zYb(J(w6w zvSxBRGiVc#>M#&g_w~96A9(WEV8dh{%}VsE8C=a66wdt5h$D5ss@ zQBhNm(|^2tLX=Qu;HLPQ^CXsruA5pp&j{^m@a}8p_v4tAwasnhP^BaJm~fBAq62`7 ziOdG-avo+E3%A*>a;!9w)tmC|R~VSLVW^XXx@UOfDVl=B|RUK}M7kz=Y+K?WnynRRx= zjuulRrwxUm8G_@CM$kA51lMoR3-E4QyV&@{?GCrL?Ukah@z6aIcn&SUr=$i}Pw;vK zx-o|P#!`O`w~f!zMX0}VssukFRpE1AU}ibrVmh7M=%K)JM5W6-(?hc zGYv24`OTN2j|NV+KTq%(5<1@!hqe>n(d1YRapw&Xu5-)JeTxvgy}v+|MLf-lMk8>Y zTbJlk5D`oC`#eqr{C%~n2#%!H9OcNe>*t$pyj$s$0BSTwu8jo1sT)Hs+Knn=CBKds z-#GPQN*?{XjH?;2b^4~{h*Z=^avgrQ;P(J~zs>vqKWaHo)M-#;XhS>Dl4rcQ*P`0lO zEJ?jYc|fvVa>my9u_6{Zl0!5_U{+IXs%$HMMw2t-!DMKp(fQ~zGx7`YB*_)>kYo~Q zdgUZj{f9tuq-46-aC_mlc0W8D44$4yh#K?$jb1lc%QaxqNMDLy8CKz&11hwtdB|=Y zj&s(LtpkevGNRfA?ozqFp;=Z9UH=-Ju3YLW*&iS!?_k%{FSyra!?-@OY&M+hh4!7k z*qfF`vq>OC_e-LX3AON(lx}RekY580STR$==CDQZCc49fzE#d5iwtwhqBJ7{s{BeX z^K)^#G@Ku#51M)4;$np88(t$2aTlHbKoK_UX<7M`{TPE8fR0=+Bt>S_PV!kLK<9eO zxF)bB6{PT)C$)Ho@`Tq^V=6rpWqYei-vH6JZ-*0!FKB0TJHtu->@EkI1eL(oE}<}(0fun4C}=o9Pz9O1DNQ+$Hi(GnejS0dx#z;UD33ZXHp zM>u}d2&%3Bff(5Lm7mBZjmn&fMVnAo(}^~PrEbN8d{_tiL9tiTO?A8PcQ?H3DRw;Z zrUaCl&8%qV5%$y?77JiOGBTwDaQ0BHyZ(X4y8gmrYh@iHdZHE;|A0xMFqzec8^0;a zF0cF-*7%yXZoeDpWD%rP<}DE+LYFA&-+eBLw7sdtEeodj@f|?Y?sX~w^y-v7H@J$q zI_0_cUl3TRM7D;G+Emp%rCIe4I?ihCA#xLP+b zq)4|1c#ul#d>*xhyQD!UCt-0;9?H48w=3Q4i_~a2&l`+fYLr8J0>rD0G+~e_wGWA1 zujx*lkU!@2gf%}XL{|iN2&#TSLRUHT-rijIiRdIH$Dk9=HuM~RjkUs$u|C$w?i=+M zpS|5Va%!u*@Y_UlyAW5DZ+W?p|z7@hFNMVz8pvk8esmFUq@{W-Bo9%&87 z%uI_B4WQru6SrZz2St5w<^W^T6Ed~`j5uDoJUHuW_{6kv4(LFj9;*<|*`c>cadK_z(yN>=J zj~WXae@t7AN3(`$GkBD>_dDf$BofrU3i#$!+hn z=!l^usL)g-7t`@61vhahxI>RPVR%M~o)lFna?2Y@KG} zfz9K*?KLuX_Cs$TjXEo9UV=gKxP?Uv)5xC*y| z_t4;6>6fkCfyZn6KSq0e$d2)6=U7p)<}iZAwNqciaTnMx$kA>6QyVi(MxKm0)|ca8 zYgXYWjoD@dcR=9d=$#$n$DB|qlWkGh6fJZbwYyeD`zu=I$QYHmx!Ld}5G;Ww=%0|S zl`4o|UVt}ZeZBC?;sOTc$Ns{}_oWf8`in#Vk?A5|h8^_uORr2Z`EO}_7ivw>c#Cs# zZdc*gYsHh_PF;p~XJ+0=hpz*ZI{Fsg;+wBml6rw#-5Ws?R!_&AZ_!Dg07Y^krDrRu zb)Wz3jke|m0`U#9gGn;w%B=U3;5f%>I+I=m*ny_saT;bh8QjsufSOX&@Vn+V`E!_6 z`K{vAAMTy}4*s)pZ?8S|FrE|kmIXj_r0eQ{OD?X5ajBY-DYioUGcvCo0W?G7n>98m z!NY^d(~~g%=yUqRdhps(S!~E%(&|2u$I(o6SBm9MK4gvbM7bqAlSt$#q~-MFhua}8 z7!#Tytu%HrwnH}5<0Squ`e?yNEYpK~V({qf$dyoaiHiW?gwNZJ0ioNSinO=j#K;S| zMPcgT+tIO^nfhqj0X+GaDCsrU&kP*rk1;W7(oPtT!Vji+Xr81ap(35RVo_!;b`>;i zU_$2b+m%0U?2vVWfDgd=p!_*~Zd#6rcCKTA9+}eHSf4}35W*b4J`(sB14?p$eY!al zMGiF_g=gnRqLvD)y&Bam8>A7;|_4L1b0j!JM zTokb>^28hF#hs1nEwb){6lcn1`4ks)Q3yLLHcmuIme^8KEkft7&JIe}I&db=E|NEl zyp)`-^9=hBhV|m2Un6hbc4sPB+^+^&&isj8@7SA=S5H3Qs{?lf{T$umSXz?#h=^Lw ze7c_E5aa2{wzu=-;%?tS)Z+67GXAk3|9j5@uPpjWiOUS|Pf?XebH>ojFg6Vpe40e8 z{D61%So02g)QqBzo{qwC55`cwNq3)#p6hEGtQU^dZ|EK2AhD*$K~kAib};8X0>g5Y zy&;nYs(JSj$3%S>|$+=9Sne1nb+?iZd(DGB(Hs(u+`85_iF4Ia~ zT3h%wTNgWHNRHvE~F|keREW zcpaDAhZ>?|ZMx9w;CWu_vnNhgOTHwYMpV1YCB=Je&o?Fp4Bdo$WNA0EBpBNfN4kc+ z$C|=M<)!w-JMfe3`Vdy@h5ZAV*djXj;^^HS1;NO?57RNta+v>09Gt;FRQ!Cm&3#QP z8iW&g>~g>E>z%qr1!`V?Jif>6-ij3K_+-E2Z>Q0)o|2Q=7S01co!(G5yBV}c!^HU0 zTN7A}>%)Y?<2AM7?0GBf#Phu7{I(H7?RIWhq>1s?vb@==)aSIS@{F zsXy9}R2K1S-SshCOioafIx=S@4K>d9v@g*-ZKrN0gO~vYpb0A135YK9XwEVD30hR2 zOus9Lp=}$M#v9Aja?^`|TTsnEX^Yj$({A_^J>wrV*w^2FG?|UE6$U=>#>zbcEuK$K z0E{srD=Ozd z3cR$>gFA+2=#Ki%A&l(gcW4%a{xRXg#9B1ijwS#p9FUpAT^Lku7nAv_M})4wz5XS| z;UUL=*{PO$MzMi+`FL|5xx~%@lJOpk$juZerI#u+{Hm79GyM{RESO%#3Mu}4yb4B) z$8p}1&QH=@h>zPCjjj5_+fY?bSmYOG!hdn)UVwwA^i~;!H}LCy5&O?oFB>$%FMJpDJ>{<*${<=eI0M~)4V|t^0whR-e65~Q(?sQ@pMJ& zpvT^1j#SF<;X6S$ICz`c{PPy<5|eEg-(n`MvB0iMudPao*WLol$` z1dh&`ubi_UJvyww(Ect{w;V^jQU7^QDxE<^hto#*+WKzX9PXjYC>pf)^rZjUIoBi= z$!J@C%BE_CbaMI$5VVMsCWlf1R+*>wCj*^_%A86aTh}>c$;Ui}FxIHC8G|V%7}}$l ze|Z4^wSQX;gMTyfBRk#j>>(X|YLv7P;b(H~FNXZKl2hm^MECn$k%KbNeWsmB_bcBC z*Hjz^1L#x(OTNX~c-I7as=evcX_&66aOr29Ey0Fr7U)e=cS+Y=7Ek9E0sZ|Y0AuUS zEZdZi@lPB%(&`9H3JSs{)6hATkBW}Tmy6wg9bZdLPfZ5NZvyQ)5P`E_xOwL~pJN&> z^6|`6k;?kA63Lb2;bmfYo*#2e^Ut|X`)SH9GD8`U%ksWIpO3JI3M$vv*G*9wG?P&A z$`sk{k9AaXWGGhdYw>Q0=hNxitT0oP*rZyMTYVM&|6Y@*u=^llG7SwW{GXC>Eezy} za?Sb7SSG`Q zO@_!)B@!z3UDwV@bKvI{7vIMyn3L%~6crkvwZMk*)@6z_t)}DSS;#C5+=sDUJXC&; zAIZj>b&?^W%FCYFh`8TREo?<{!hYP`-mu7hwfl>&{dayOhXUHx;EjwdK7RR3F-sZR z>WMFw+V&c#CExi6vSBXvOQz@@Xtbl@t$F7r$?Oc?F-!PBJBL5?uk~{Cf|%2y<>?ersdo~v!CC%Rm4Hlkm@njW3 z>Vd{%na`_jKV)m81F<}6YG5n<(1I;)Ij8R= z;tkq4#wlq`o(nu$271xS{lX5{pX$Wr@vuD}L(e>JK+zgb`13^FHwY!lI z(Bbnxlsn(h7T%Dz$ekF3udxqPy+7Bb+*cV96C=~0r2 zB@I^dcoX9Q{TE`O5+1T_LhEL%`BmYD#L!~Id$OHv(m=?`R%}#85;vLf-#<113yR_H zmk!{M|L&05*87>J*l=~4OCC3$Z26{nv2;wYwNy=%=4;6L#A{z~QcBvv%9CyXNQ)uU z8q!d!`WNC|wROA-P-nT`F36aEIb0(teea-sDAd!TV0W^BbyD=*{{tce&T@YA-cuV{ zd>sKw<3j+%RhK!)TY_y^$bL;xInVa0RFd6Fm`?4Efra_K!8`0%$V-kv@L#U-Kh@kW zlEhM$)SL7V7&IpzjNd7!st28>@xwYffFk@kj8+2gc7#ZhKaY=nT_~3ZOyQwtYX|`s zs_e{rp7xVu{GmT##R^V;yi(LeaD89t4*x?}d!f?(wd8;~kh#6RHM&v;`%k;N&6eUF zTz^EPR@Aysa$}J!P&{~x<#M8i{<*?M@!t5jx>iZDM<-s?f(VIE{WcNcnUTI-y?AC7!GR&uJ&aG}7 z>7S_=k7%YGuAVmraqkBV(8!BYaHQ_2*Cd@>l2F{sh`|nyAYrLm3VCzNQkxLhB=0S5 z-F=Vkd*@2NZi^e?p+ituqk1g}GOX}5bTz<+vOzbg~aC3VbFUY7yqp)JfJEWeJ zOc|B)X>qr?XH#9l$+`5A_Tj-;cvh&Xv2oEapkA4+23bo1n?}q;Oyi`Nm-Kreatp4q zV=E`f3>{$YGavhH&QL zEYbW@tg6vWdefTDxR-tP3TSt#x3irdWoGC5)yjgA0}scsi;|v>ZAXS+)QU+0m7NE5 zwN98#+2FJXsz~T@l!^J3NY_XB)AKy^?eX^@fOdxpr6qG4`d(6_w5k>69x*vgeLZLq zkpgr;Rv7ki5lBq0e(6l&;~Dd+Q%s8#!*RNcBJB@84lXu3y|yX2KCp3}>&@}aM!cg- zvu4apL*>}S`6flw9u+kfSkg)ZpF{?aPZG+3oQ{u=AJoz1e^*E^Gow5#NJU8Dykv_FwQw1Y~oF z9?L&CDH*;P>JLGc683WBP;2t+y$a+{L%*Ow4FGd#7SQ zoqF)EQ$vjf1l$qWB+-ZVJ3IsOceFy-+e~rJAON5lY8V5$>y>%=IyZ~9$bha30G0m- ziBIWeTW>RDAZUiG&~Rp$qzM67k|Kl?qJHQA3??S({K#lkWTi*o=H_Ng#KatL&OqRr zy$()7`-_(D_%zu-Q;{`<8=zLt$lKny4sEoGyV35k*d%@L8Lz0S((PNgbsgGKKiaVr z8(lNdY`(%Rd!b;auH8BYoU}Qmw%uR@_ zSJp(B#p#Mkzhbl)x^K&oOskt%!FdLI?T}6iz=;5b#VP*Q=wU8%rWyT64ewcB#h(_6 z=2X1=vh9vXw;^QWyx=3g&dpZB>D(0()dUhzgbwCP;)YVErolsw!gypP z9*vYQjfPV5DMr{ZJBdu?2qjA`QqO9>l2GG}x!+?c2V zKxQPJ==|CfKs{6hHm7wC>vaFD z)6)jzYE*k+Fw~NVJl@XVRB^^Avv$s-YIoM>Gm294HnyYPSgDyA!4NBN=mp|J_ajqA zW>rVMsMi93#Go})KC$Eg^iaA&-APt8n@R(M%#BD>V>1FXAuczEIX~<&>4F)*5Id>h zeG4^F8xsy*AZ@Vh5_IvxZ!%3++y|L^1v%ZvC zgCsCR$s(eHTFM6ve*cNd;8MnfGb-pCXRPr`(v9T6ajydzP%Gz|*i>LRVvL4Pj?l zoh*ywQgB|>NM@I?)4AiNen24SNM%X!ZR5b;VCU1M&4VQiX4xDE1%W`%>?S%BXu%{;X^*U{ zYpsC8+GKjBVD>v#T`~a3on6#g0>x}4YyOB$cCHt92RAy?w2F;XJu*zvxkSVLohM=; z>!?fT%)8v5m^q4PT!Atic<7K|{`Vqow`?S6ZlhH{6r7>g_jnhg+BvQ;=~VSD%|}vr zr00?*UtI0K$M8QF78>Zg+{T}u1*l6<+-(vXS8OO>w;TqQl*Aprl+3`1{g}F9*W1F{ z$SCIjWf2CUT`gf`uCP9{^1zzjR&;!3cVIg-(=3oEf#k>!O`C}b&XfovmkGtQ~uIs zZw@`RNDXDisKhji-K%A566oOu=tCE!4-HtZF7%><9iPH)57_#V3MU#`P-PWt=lC8D zi!4I@L@QVJGhdwM)RukA|OgEk>!;*ZBL>>Lfm011MUyYyXr z3#~^*ECZ18WQJzI&JGEza>C{O^=D7Q4}8wMd9n;U5;tt|4xTA5%asQYpdo?o+G-SM z2fQ3dKnEiyeVF}^_Gj-VpCo%1stF}ho8PVw!n~v;zQx3X4inD&8ubJ6bI3T55l&=< zhO<9goSpfus9?#vn5X|Z!R#DyeT(r?WY%SYW0!l!e$!MV@J2-;cc|k7A;eh`F4lmG zLhz*bTsOQz8$#g$r{(Y#B9l7&qC1Na&#qm}y*5 zMaN(QfM7Cix#-z35+r)_4jmzO?-$P{44KOnwV>}(@jUJS;gRHRsA>^8X!U2`OpkZH`zz%~zq(m@L zF2%`Le<>DdDce!tVy`dbGHWS5SzAL#vK2uc%}q2iHzK69+5%!Fp++*wC; zd1cM~-sVuFWz!SobY@?Xx*8nn`Y5dt%;SJc)cEk8(9M8+OOUE<{d&14o6l9bQ~a4k z$l|;SeN9jsGo{%Y-zk;v)pN0iB%zwv=uwijMNgENqPPe$_+~0;?nSPukxIsGhSxy% zumdGhY=)55d50j{K!1N%?Q{_CoU-vJebqIyo%x(cX)dL@#VrOlt5aopP8fXC+z5BD z>GJ~&QGcYxgcsQI${Q=eq{v)*!@OlZb4F8yTzWUf@oKI%*#zk=hpY6DCE9s5w{Dxm z*-C_B8|ec!2gVmMVFwFj0?4MS;Iem%>ovjIJ;tu%ab4xf6Q{H*2blHh;hKS*_nKRf zl=R?mhL!etUy>}s059|m5D#BpHb`mX-e=QIL;E!nOcbhJvmCIzlbn;6x1s|vdRSkI zp9S(pi1*Ea#<$zXiTuE4#DtdgPB@9lFa1L>%pE!J2+u^ox!T*@vm;{ye7>_2sx|A}yhpmnx?Z=>*3tfxYWn8dhzCD@Qju%!Oo znU~^P+flxz@$;E0xm9L2ue;p{oiM<0RYf7>j<~ZU5BJ)ULvG{3#fS5TvnM`I_RVDw z2$0hqXSf|;LzB_1ew38_)?{hUmo=D+(g0bcJxsPhBS10WEIvoGc#39cIU5 z;7T=*7GD2#Td_}b;CCPApnA1O5m1QZJXCe_m_sD}(@LiPaiOMQ)I*Z8X2Cs~i}5yk zuhw-j`Fn*873nUIxVaqW6g zHptcCb3Nl|e%{nwWY>o7=3&JE*O+wyC>*EeYqVsk)5k_VCbIKALedQyMJBaumy`kW|vx$txhbE`;KH~!@-|uqSmWuk5LKLzs~sl=MYO^i{-_b3e%SBhZicI0+GA(oj6%^<07pDp#~f?A`;!vOHtT= zZgr0rH2lDD2@H4aY^Dk2x)l8zF+uA6Ker=6A#35S?;sc?bPh9=e7Rcq#uJ49i0$F~ zAgibx6YY~Jyw8}|o+5GhxV>`yUawds13r}>#0qe%k%v<>cNul_K-{y&K|E*d&#JRk z*SSt{aR?x0ABlp)79~nqhG%P^)_8Jr6sfv|#x@AXo_-PG6=4NAkbLf4f^f~<)PbUE z)!UYbz8Ne@;M1$cBo}k9#HpWiY?!cv@2NoHm#TbMgxqTOPzy1VnmX~un4~umc>aF% z1SzJ&aw(otXL*&*;kH!LrUKr><_)Y9A%Zm)xPmX zMo7Uk-L`IBE!iV{`4q8+iQhJ)_JMqJu_JTrZmcd}W`%G^d%+J|F{bZpb=jrv3A&0y z!8~UChd|xUORRJFIsSH7yvV@C>(*_Aq zc|nITL1Niwra=FQk6h#2-jqMbUMW0hi`ZLH-x23ags$|mv8u}X%DPvFuvs*f2b*6v z7WyCj?eR=SxZ1B^{Nsoo?44}mU-+fcM=8&OiYLOletjHQceK)6qA5|yAKVAI4m#*v zZYhL!w=#|@L!*>4-Bu*iA#dK_4)&}hoZfctXvDkg?M?47)EzqG%GgiFC8G&rbt6J}%H9NHyDOQ_ zgS@y0A~rVA@G*Uaz;-m_wDm4rBICA46Jlte;p~n(U$Q*GjY~kOZGkw5JoJ0quY}Xd z38O`3!wYUlud-`3(@=KB+G#f|^fmk2V8yzV0HnauuwK4u=}1!Hu%neS7=;yAF~`2M zD>U8iA8Uj0*nCG+rLnUj9X|1X^jB{e#5&24z;i>6PmYCZb_nywHu4L2cO#y~ z;R!oQ5PoBE_bY?!KkFw`1sIlgBm^)qm1O;R;*Mu=+?C{-n{C(=>6z^zWz(c+MXFRf z(Ix1IOV^7$8yL&erG7ynK5lYhK$ieQE2&8%$oY(OJ)+<&kdw=GOQec@jC4Yad$FpK|Ej0ZaAc_oc#R7+JFhk$D)N;ia!(`hyTkjKs=EMw*AGxY zSKpL08h66`NHrsMmud#XdeS#*`UlvnQ$#{Z+-*kgD zQ0F@DG*#`55&=w==hH@5IIhIb!U42t#a`@@_SydEQe|+5Fe@2;LZpyi_lVPnGV{g% zhpu-HkL%s~hubu5)CP?;X(qO<#*J;;wj0~l#7<+gv2EM7li#%8bDsA(=egd$=9<~F zF?-+lJ!`EGmayJB4r)SG9SCIeyH5$3J3=I5Q4h5xUU=$P^Hy@v z644jazPw(cYEcl$btwflFhkT~n)c)m4y7b}T{@D*=}#1IHun+|;F5X3E}7EidkUO7h{5fz&Vi^yD^n30^Z*e}hiwaZERD}~xLXGX=B zDs&wSDL#1LBLBhCoI*W*OqbCVG3U?(;+EEz;!FO7n7$Au%3+6*#N=-Mbjg)SJ!}E6 zGlPHeaQ3+amI(T4%wh?e6|9<)sX>~t0pGrRth+rH)+M+Uxd`nnt8AckS!Y<@xY(&< z^Rn;y4@Kuc{x!g&GwVdA3+o^z^ugL1nuB}4IDQNwA#j-aJr-C&#f+;-J=(yMjp$t_ zu}7ztV8=itGX~h;^ED7t}NXsU73?ZO1iQ|KMw1MNeU7Yn%f~ z7Xgcn4cFv_q`2}s4dF%snx^3cxDv1k3jX!ev$b0AZ}Xmy_4^NcF|cpS6>d2|XJ?*3 zH~lekiH0+rm?}yVe*e7dGY-hsgo5n8JDc-U{p5M=&0;^!1xB4Qu2G_bPJv0G-pRrS z*;97nX-1h<<2e3^9;R=~FSf=b)t)r+UMuZfK9USdu`H^nm03u*#hD9U>NI%#5@)4r zmjfK9MzBxHsKk+>>`yvWE$aETk=apfR)yrVZ@nBohSRP?AS;wJh>-)FZ2GSR^zK?wh|a=mD)M5MyAD? zvk-qQT^?NAvc!~0)ekh?=wbF^x7w$>A!8RV0!=~9i}1I`ZrinU7ae0Iq`5nP{Yu)N z?g=bdF3FxVi31(a0vN(A;0*?{h}^&iP6$eGK8-w7!b_v+wYp56Otuj)xDxYbp?2ey ztf{zq7VWERX~Uo8Cgy#i5Jmj7w2cc*umipHMYtWG`61w|F<07J2TSIPEz|@VO<-|O zFAHee3RUx9HV@#yB7*&=^LQm~$ybvds#itioffH~*4|t)I5%iCwe#njFNMIFf|d(n zw6Zs`ml4(55Bbp~=`vs^1nUH3?|c|HwvUT^-E^*W|wUZtC0CpEZ#!rjSghgw^iU7qle#(~u zsW_z+a47>xQRbY(4SJIdFUiQhfV`Z=lr;0rV0~GO{0?)6VQV}#jfG14w@sCBBv;++ z)>LiArLx%bzMx>#j=8e`a(D?9bMkqITu{bC&?N>;)46Gbe=VU@9Z+r|S4sQ#7fvz0lp(Hz>xjZGSue0B%Q>*K#0wkW|N!L(WLN zSE1)q(o%Z3*xikdET^(-@3bnmpn9*-<3#VR)P$*i4+TD|a)v%#!j zFmKLi{Wq52lH9%|@$Up`<)7Ev`r9#g%T1^h<9j~EwtMi60y^FJIG8yuJYQVZv!Q2&D<80*q~$Gv)=N( zk!t0(w(t!q)%7ziMY)DyLi2A@zq#zyuYY(b({7}KwT%|#Eug(g47D4E+vlfpScJic z(hoXKC5DD_|_`10YDupgN zkG}K1s@$fm;DM71smo;unW-WUEGy;jHf$)GA&cZ?}K#3N_9KNP}xG z#o5K-#Q_9X=^+GTYXKHKUS*g4m3wO4g@I%wD_+IsqX9G9DtE=OsTj6B#@3^3@C=xa zCy?DSb4tf%cVBrIWOfS0o?bsdB2IK=p=-E*fUY*a+#clHri%P_JMyIPLwHmV-GfJB zvsxHyNvDJ1m!p?yInF1oKvb z`alk%hb9b%w*}J9&h>*beU6Qv0y0nJ@QU2s@=Rt{C72@SF5(qqHG4J+EEO9s)Iab+ zcL|FF9BWVJW_@X}{jX6oboL5Q$)`#5W)D{n1jZXFbWi)moHp0>=CZoXhO{lfF8jww z`qW^OXHPV`WmmiJ3+e(o-KD2s3!TcqJnd^j#np)?$TY)l9XIufP(dYlUCc^o|D0o_ zL^xONqa`$1$Ih$Zc|nCch*74$Qvla3;)W<2$jyQ-TwNt2e}buy0|BLm$>2h-+4jcW zVtoe5MEvxnsUgDOJ-58^#Btbl*Q8W~PX2}=Ur+cmwns@3CBmci zf;D~V^Ps!K(Tj<^dhlR!f^P%T*W9`6l{{P8e~-&IB#G6&<9dTwO?$*34#z0_Ax(Tb zUo9D#M8Il(ZG3npSKLk&^vytaX4^mw0UX+|-@2u{0d~RpwWilLQhZKSy-g~(;_$AV z`x+6{_(biG=k_Aux*@n~p)&1Iyi0Ax!cv28l}xI|b1!o*fdFHrg#1kf8B)>)GAZc@ zOEMSd1$7+Cq-9jIb~YEvpGK1LYM7a3?jSkOI>&5~XS--6`qUuBJ`+LkwEfM~qIQ&K zZR_9Sa&VCUx1R4E`|*9j^Rqi@xj0;W&dY0s4$JJ>R+RcoEc~MR`}Qy;IEgOfP=$8G zCuja&txQ9vX0`S;BN8{*0-EG{|2X(q6_cm7f}jF#e?PC?eQQ3yS2`P6EoA(|XK)l= zpD1y~_ahE{Xi}4r@owqlLqS8`vaY1?9JA>eg+Rw4v*G3SFDoHqMzH1tD4D{F_f zIGD)R2$;z3CI~p|Ybeh4g_UnKJ zRSQEJdiaHYLS(nPN{_Pl3ivmJS9ble)Kl`aEg<$Gfl^f56*Z&kI`08l%h0R6%0#@t z;b$vjQuek+9C5}<>x__y<9rNn6w@-W%pmqmmFVUPOD<^Gb>diQz7#rfVS@w3V+@cq>dD@WFjOUDKNvD|TZN*t>8M4Xp!lX*XGn`T}xAZ?Y zR9ici$8+d%;K_*F>?F*q2>_}B#%OvSz;^ty_r1U!o8BWZ8=5>Ux1=N$)=gP_j*JIZ zrMD9wL$05nGL7>WRtn-yixZ4+1Sz=G?=K|O=^KFz7nn6XG#~>|C#Ek>_!_9q>3Cmp zS**8NT33;nPU3HQeQ{ONTGH#v9bI#bYb*-g(&67KGlaY zVR4Wm?yxvXe8<8;&}FY)T5Dv|%tVP{!~z^Q4P4vSix{5jup)Oo2xj<9gRPs}hZ3l|+|F8!6dd-)vyxbCvJZJO)=G1fFc{Pvnx;G^C#!w) z>RjBbP%!$P%xG|5X@fJIU=Ln@{be+y(Kkt9vE|=RUgYdSwIQHQy(oeGfdbD6!Z4Q# zl*}h!G9xRT#S{JCz> z*7_c;XTTI#dIpn6du*Zzdik|rih%2BXjnQ$Ht7#OP6Vf#oGJn~XhW)YPao`H{CGdT zf5n$a!F#CbirC9Ivl{T3~YT4a}~1qpWx zvmwbObcYj5wU}IH(sjndt1xb03gT}ZQ^ljk_Yc%@XB`~ugoj---cNo>#xtE)1eqg5 z2GuMq6|y}l%c}cy`nV4%Ou_MgXCl*U{C;J=LmNsqAktK!SLIh^E(JUoOjln&IQ@i& zz`~Dz>-;r8ikS1>pgpOdM40FRE7TD}gT#m5#{}3Ef@o&$;d=8x#MKNM@WM+e+_LLl z?VM9y>F$oo+f@lo@7){svqMoX*5v0< zTW=^;Ykt&|R8V2eXXiu*2#w0kZkQE0a?MP6O>8_j`J`$~-*9&9rAA)`X7C>8O)ZZh z-@0^-!cCNy^>bxn_0c{gCMz-R?N%amm(NM#F-32ZKip9+Ey>mB4Bl z)tD0K>56gEhD62{!n&K@@Kcz|vdlG?4p&^}w$V$fzK1pe=&6UT zld?0Uz;^gi;+XsxE>KYJQgkf1@}iud7$uC0AsZ$4dZl;Y5@$oyR4fk?6p* zyE<4){z1$W>@$`Q-y4BtMD36{^f%p>mX^rjfiG7h) zDQGm6FJZbFF@|@V3ed6Qs~ZWbPoV<)Qx)DpepvMbA8G76=$vuW1$?qLz~vPPX^a8P zqH=@SGVksh0TVrFcCLQ+yO`48-V$${6-EcUfGJIOaBJw{;=9%GYvnjHfjqWbuNe3& zCwVz8RELdqW(GJ4eF;XIZU?NF)wKjXB-Iw~R`%U{`f8xQlfTMOu;z332wJZ|_&R=4 zE;jC88VX|+h-bvqgxJ98Y+LuJ&0rq8aF=*i!8%@YHSG?Qky-;N>xu-uool?ebkWU2 zxPl*A-75R_{Pt56(301EH8@wLA)(gtYPb-z3)Yo)ddcSgs^9R3dlt1Za>noE z6hl0e+VUkHHHB->ESQ2+NAt(m5Nfo3C5-HIU(6RC-2eEt&$5<%<1m*^+5S$%Z1&q@ zO3B8gA3(tMn3g8C&IVbO3`Ko9s$)0xh_cx)kpCk*W9mA`{eh9O%>bgaO#i@QOrr&M z2-&gdb|!DF(}60Ds0c6E$0tX^VU$%vlo=)DZ9^E+{s5vK{={OOyDX;G3|)4vj6W6o z4T>dY*hG>{RKhN(atebZg6a*8`N#nmXZoh+te&UhG&{tjXr!ZJ@?HeU!a!lNcJ^B13!2b=&k|FHQO=O@y z<6^u=Q#3^;aF{)x)8KUEr5qhonwq)gnXt37b>2C4kZ4O5bL#yOPiB<&g-t9>yJvf8 z?QVG~QiQb7xw=k20i5T1WDNssx&8jl zp8i#dMqF(Chd3>(sqMgMyY+W;hrPt8*UZgMqv}kW4eoZ4xUI}gy%F~r2?TC)Hp|uh zaylxqz|%)7xHb;7NJjRtF!zJVxO{JcxC#gtL(XeOP5cfO!onB+iIBE^=I6NN~dQ$}duz>#^bN>mwjd370Mdnza1=Rko z$Y3{Rt=C-ro%JnwDarxsZrY&m(`8EZ^NlTLDDI=>eJfbg~g?%Y28tSjVqyUBUi#y-2tNzQpxwzI8L;&D*i#r!-$5Y2Iya z58JTWJ&^B>S84Az*oomy(K{7%BXs8|s1{8d2RkLUpDS>o>z890LDaRS*fNSfxm+C5 zd;o`k>r(y)`fEi36NgrV#N7UVGR^mmhy#5MnT-TegGyUp0nr!&^1cPuw&*t#wF@-D zwbH|05+|*|I8wCddA0wKhb<{qw*~?~+kN90r)_A*b_V2DE%*2F+k)L$1afbWY7($Q z>a>WsmUwU^Ddx-9<6Y1vOXwzV=I`9hKi(Y%QzM@#;G>4h%GsRfNJU+&d0FRST!Rg- zGOxI{;)Um4U9My#L0)g-X@1pOUJ@=BHf}0Q^<4}=2pMz)z9Z~1rQJBBtoo~&x#&s* zICZjN?ZBnpZ^!B$U|98NR&VXNk#w~GyL7DufKkPix(73Pp1}-_{%xuF5yhtC9oU-* zN}Uv4ipb>y9`LNwFPu;yM|V^>{J&&ga6UELsWU|Hb^R<##%e&^1PBpq&8!8(C$9S)1cQ|;&(%E9vu8W5R$7- z_aoTHjgphkXU27QG@Tr!h&doK+DM)Mh5dTLh;(2un{F8n)lf%{YN3Lg0QZCpecT$z z^}$3u$o30v zx7mHMQkf@(G9ic}DsPG8se<_L*#rzJQhpwb`pL~kq|e{Xa+t1xoQ$%526dIi;t2=? z>t4rJ9exVSIGnJw-uV$mMUC@YWy`;pLF!oL7JScvb{z8RSV;j?JZ?p&Bz^SGfIy2{ z#kYsfy<2^=J2hlZ9XT~L6iJ9mi#1|60lAHN?2R5Dd+eok=}7aX`kZE?%4VSNYd8T;rN~=Fs+n;_|g= zEUCDiF&aaL4;)`sLg5Bd$|3Lc=D8Krn|#`P3J99EBf^_;fgK8Wu0YL$5~ss z6(~sZ)Mzj=G^n9v5}&tERQwg?bk%peevNm!F#0_7B&f61EjVt7Wp02qPR0}8Y=Qai zqkfsXKXsx;0BBA)R$rsq&@EN%TcgFAkL=sc(4T? z0fVkf@VX)%6+}P<*Z@}yO@TUxRPOMK0@_M}d}boCdrpNo76tJL@KE~BA*d~(N$nUD z$Ps!*wzZCg`ti+fRB>tKru@5+AgZveeL|e>|E!Dulv2N6;eP|!j|ApT6aJ;3>Ok6t zh*f@@TB`t&{u%XjkeX6=9XMyQH=jJokSK)wxVEx|BBZxtCQAs?N{eM)rrx#3pfu zNUkKra&RsjHtkR7gq8laMr8gBmyni|Pe9#s?P)}|etlFpWC?LlrBghK3(YU0$O>Cn zY{L_z0$8;dz4EeqyD-Qj`#Vi80ao1sz9qi*|R+q#2N zJQR~r14L+2JYG9&y+_9e^$x3{+Q9Q}7dxcsR*th-A`zCgAY)+OwWy0D{N%t^bT9)q z6lJjAnB}Fsc*+dzTC_p>@c`O_$;hGupD7_)vmnr>Ad_+0TA74m7I47 zcQ}jc#{CR^x^1(Mik01|VXJoBlMfSHg`;aXo`aBT{>@7Cwn@K}`LuMP7$ajT6Rzg2QVYCuw4ju}>ZGyflScET_w$=N+u9*W5f!@nq zyD!4cvT&}xf@9(R>sK8Ui$stAH5%UiaZ3#Q@Hb(Lz=yy@wN%!ktl!jghRr>2^!Xj| zl}2AaA;&in`x6wD-YDz`j?p$5twKisjCM_2t{~zw3%+6Y+kf=BK z1Eb~^BzCKg1@nTv`XU&$eyn<+@WphgSUR8MqhdwFFu~6mi;4DAga}59IDGs{-SYjH zfn1Onu~N->pg4P_@>dJfz;rJilqTuebr4sa1*!w+OG`W9OdL8*u9VfUq)W@KM~WgG zWd8(5n||?E;|*N4G~z_6p?*ezN&nj;Bg-*Ye;83SvaA*%$|bF|a_)q_WcTgyw9ya; zw^us48)sy)!A=kTY=!irCh0gF*y_1(7FP4R>mTHNF|Nr+Tb-V`dNK*g2D4Y8dAEmt zTzADo6g3jfV#L=mYwmC^0^@WxOApI-6^VTHyOyijy`+Jg`j<1Z$2SyiC#sMnM9Eh) z^cxu8S6w9rz@FTKj4TS0e<$mcz&A2l3|@gz)Y(>yP2Q|DdJwJqzr6rb)t-Ygr>cCcZSk)eSY3HF0%-qAw+wfAJd{LhQ2DnrY-kBYplO zN4+I)^p}{vChk#^K0Nr70+9*t4~wS01}cW1K5_Gbqy^dx%GIP?CRVc$qqI_N17$?S zCQG#Es0R~wdGVYCiF+hj{cZbgl6t;h{%o%2ZCwly@~NcK6kx2XfJz1K8LzCY@SoW2 zY7y;Vfcr}v)A4R21IkWh9WOp1OY^QY6}_lO43O6O+ks2~9_~?H8fb(h1cjp<7WZJy zBKk(l8L!k0$3sQ zWPHj7ZV!L34&Az>k4+(6=1=)?Q6flFvyGA&NwKyVzTW{=qx9By^+(?{FCSGFt{pgs zi!}X0dA(Y9;we-Q+=!F1Il8h_AXU7r+M=8PaeN)h^&&bYJJORZPF>kRJq$&unBC%G z?V@hvH_`Bq=KnVuMEXHqOwmPprM6X<+xi)=P9bdgcdf^Wi_E7OD389z#^x;1KBxNG z2q>?y7)xs#82E86riP|feszi*D!Wz>q}80nIx?|;iXs21gM%NH0W`*2?HT=4F8<#w zi_8!^C@V&K!7UUMbz@c6WlZ=L!DaO^hpOFQqp$QcJoi=iUZ&&1#SL>`E&?xMDa6LU z4`yeW7au>Y6YSJ>ubNN936BJ>_SawQZ{ZlmZ+9rwSmDVgQhs#XM#>1px&%OPjwg9~ zl8<2r;%}=Pi3TOmi6DJ<<9UPFSy&*~S{R+vEU-?q;8^$wNv_pq#!6bf7KD#pXqLWOmuJx)?mQ$4gyjVzPfb6g#6g9 z?9mIj8nG$s=#Q1Gp)_<(hmpS>-+K1O!I~oB6h|rv(~@6loKiDkUFhFSxI(aPzxBE> z@V&6mkg{qT1)NQxZwQRLL??#*lTO|uHnfScEH6}}fASAN!W3T1+P+C+u*K=50Y$`A zQwwdxg-ScV8Wgsi!`6;2xpMF9NeT9ROw8H!De6C(L1?VtdXW*L8Qtmb#%Ja300sYJ zA^Jbh9Gr*ILFzj;^kl||fM@G>MC-73f-7AcuuHKYBbasy!T-#xzTaUrtN^t$(4V0N z(OsK8C1vrRBU{$c@(S=*B!fgO3-*SODqg(<U1aOV--Kr@7*l#NqFD8e!4Q|OHNIx4E1Q#I7+`<9L zz`klOIQiBe55nJ0)vg;(vCLgAO-hqo{V%n}8umLMX=52H4@#XsLT!whFvM9LNuZpCJQ8#o_v~}_@7mbiio#}C1lyAXO|u7FF8NsjpL;kMP#?S zjS$oEPH&}@C{VX0U2F|Eo(z99|D|kCc99KN__8-JdLW?OOJ*JfA+Kub0B}0KnLk@y zn1Aj@zPEe)yfcG=h!@El$)#K382E%!TYz%1KB7;)ceHe|2yyIu4pal1^K`fX}&^u|gc1&7y?tfP$V+ zI1n|_CmD77wNdccr!l;KadW(c02r_u85LvKoaLe?a1QBdy@_j>TG{nB-CwMk{WWnh z0p8L;N00swQvdi52tzwh-3=?iXjqFBILl8@e;Zy}lCdd>xZ%2@%oP;OGJdc+&*yYr zbznOTIdJQ?=vMxWtIQExne$L*uTh#RNf*#j;)XfRFduy-A>?yP@6P(mKJTrkAi+XQu_p z?L_8uvs}S1(Sv^&dV)v|MuXbo3#dMasv1s1Xtjdm=#YyaAOQA7REN=lh5gVoD_AMe zl-bgLd2uC_{@icdh6Kr+e((u#naWrCB_9I1C=+nFOZ&+)pkv#phUfWBGqq_qAE$+aM_c(zS~+hl0Pc%)>Y5S;lm>UWb2IUR1?UChW$uf zAZ_O*g*!pYU=&Age<3QENv-qYi5%=)@~e(&=*oqZm}7wGgEvY@Y%rnG;`9>8U}@16 zH9Q9_NEWK2A3fbxF{F4Vj`aNs3{QS%2Fq_5$RB1~#--NTU7S;CDkeO}eVbcKPR6{2 zb$sCO%)Zwe9K{jLm)m=P5Byp8fy^)c_K8obwQg{F@_t7uqP0?&e;}RsiJuHX(`?09_S-HCjDY1vxZ~mF# zBq}C$lk!RF;G8S4D=}f=0Z?sFQDX12&+*F##O6%7j|$#&2d&q8dw^QQZ6o{VAIa4hs`d zRP-1%;<|0*3(QEyJTeb4&sI{;BN&^#j-3oPy05!Uqa2%+9`hH<=zDP8HL~>-G8XNQ zEhF>WZumPRr~=+`)f{?RTF_DC>hfl;e9QDCoz=2`_9aLHB-|s5#?oq-Oy>9yhmx0+ z1aTJNSbhF%x1TaNuJf45o@Eo%dHn?&#b({KJR9p0jr4eNrEG;$#F!OjLxkXXw&3oa z6y-uH?RFY}hePAe^{i2K+Kh`exR>r1lg9KOamdAF&MiDdPTm!utdqt$3c_B6hr;CBW{i0&)?iiLUN>Y4cnbL&ncKKOROc7WaXW;cRuiP>&K zC>+8(l`1XDziJfi#oV%_28TQ zq$l8vQ(+<0jfvaVPDf@c0R9&9!OLo8%^E6unD^hkwtg3a4{9@GS2gi^-bm-_DNykG z(BJQDHqvn6A#gVIgKtu0)xqF@x%@1mLOeTK16p;?gshrRNjmlHbhvM)9GRnk^a#u< z%ou-Ondqo``~BYjTRGEP0#G7ilyd?N@-xA@2oI-kP*N!2SuC}{?QMZbhNS&UgNqBW zo98#{!_jXD0+7TrK{!cf*#3E>B}m@<7yB_AxbF(6R9h-(wy-ODH^;1qb;gyvlS*IeX(xri=;wU;ECI0>&3#nM5 z?H9Y*wRlR)g_GWGxka`nN}11Wgu!cZm}jgG04(Rg<9ZUo4IcA?6MU96ga?vn(ObW$-N>qjKkA+}!A8fA*Nca!AVDdNsb2 zQ@i_q}aH&)L zH!VtJk{vKM3bYLCTcST;YPI|P_RiT@(~Cl?-Kr}kN|@>SXsEv8A)%9-Qmyy=fh(1G z-F8s)!s8I>StLtv@Ux#MooT3*_-EFis@~oeA`-PSg2-Q>+BAav;6|138K++Fc;dxI zbCS7|Q>wZyoo5f33Uj0ED+?qmmVcRfj0xlAY?%~vMpjfM#0m1?6OzI3#zBo?Zd62> zcu~qVZl+DlmDtrdnx1T1ECmenyzy;%QPTyo%|tNW#dImLb2-WfRq>Us_j96XFa|*< z#gc`M$L%ZojpsVBO3WUl|E!;*0j<;hZ=i%Vr^|!UG&LX;X(?@DLj*ggj;*BY7V{vI zVQ(4}7f>QZXAK@&omjOa@nE1N+HTN8M+f`n&_=~*vCzv&ou+m~!ae!_{> z@f#EO6z&MqMEL#pH&xX>g}v$IEAS3VTqGP*5e#Eg;3dFW&qppYX_IK5jLhI)6-HH5 zh>sLr3WTy^*zs?3QvHt?TzwtIN7!^{zKRXq?4BaDi=^|jWpQ&<;8inQbjuFr%*H@!*e#XMC@IK?d1Sa3 z+y085=-xWLTUBa2s@WQ8)W5XY`NG1aVsM+nByj({s?VnO@z&!JQ&d*Y0=M(Eyp8Ym z_Jld|U_r%|5L{TfmzJ8yAqS5S+pQilGG)6y4f1;Yl!4f(COHl*t;}AyGpo@`xgQ(4 zUZP@MU$E!&bO!PDCmam7CA`cy4E};1?}eeCLCN02^;SK#N3-i$7Ha2OkJL3J18>j% ztr;y)XDOzT(l}TkJVfX3pD=`n|*_>A^juKMgvQ<{~F_igZdHZ z?h)4rEh*DZ0oYbMYZ7qMQk=$}PF&2{8#oks%)iH>$=4qw(l;FQx^|kEx%?b)cR|2J zAJ%Yuf0Ip_mPhbdr}3!X`8cNOh%tkKipqH@TL_r$*NCX> zyiKdQPz`4?m@_AD)^R%m9TD_VuSFpJa?M2S^DO_Stg0B^ra*z)v1D%_uf*R3tT^e0+}`7KMkR{X=w5zd zG<&}M(4Vf^kZkIQ{iXV-NmtvjpfXyKS~aykQH5z=jvym)-B1huIBDC%fkfc?_&|Z) zRc_|xEZmp#d=BVd32J#lD0k@87#qYu=lU zy%z8(fBJ$cT-Wwv8O@_-W_G>5*)Hm7Ny+-|g8w|2m?PEHZLD=KE1>gRzUO&vG0F3_ zSoGs-Y`^L?wg2m|taI-gGlJ*J<5GFZVqHP?(`hvl=drwf!#x_X=2rX6_buy2B`Aqe z0!iHsuLWfVq!Q#iwiec3UFPE?ZiM4}s49@of_#uM@*&XYGq%_JO{;Vq~Yl!@MWrzRB9!1aS(R59S8#zw!i^+MfI8|s$J_M<;`E2aq^m#^Q`D&P7~8OM_1Z=Da=Df1lEFzi(xV|^Ll z^d4Zb##Vzc=)0H4vR|GmU-A;^?t}XdTI7BBg$-Y;WhEqqBH1uk%2RmvCXmfeTj2gA zSEUMXSDT}oVvX6Z=27*lM3<2W43tWq2%ht z=iXG)v8IJPo!`C)+CvOu*;g)mUjw>kUOh5AB0`=au2Woa;oV=ph)zw-u#G)BF>#Vf zNz9of61ZL)H!J5pUsoT(DfI#z(nphw0UYAXHZOr*4+{QNUnCC&Plg4w69rIC7kn+Q zb_py8^>Lne)#T$*az4~fneE=d;u)mPw8uBH?I$1w*#((@&Z+$N*N*nP-M5O2Q=SZ5 z_W7TgTdqb0fbVZyOIS?NLLF3HSO(c<%B3H;~`r)eBMvU$)eay*5oD5qLgm0A8VM72@aFuJlv-si550 z;|a?PV3x_NRfw9IvzxvNTO^(?`0&%Lz(oG06&#MkTMeD`Sc*G+?aN1=nElA5d7m7V zb}@gq&j_pznYc(1j;BTzeeV%~w4pbtgV4ftrx6rV^I`vSTPY~bmPl6fjVJDO!Q8UB z2$dMxX@w3`GrDsB^%*EQdg6771xwYaTm(pSV~BR*h<1MC2x@*%*?zv0gB^P)WA7ch zmI4uMUQ!Bx?5L9VCkW^g#{xKZZZ?-~y?rHx9?`E*-*>w_xVGGf0$CP_M{SIxa1NXU z1o7|gtl~^NQt}Snx2e>O7l}J-i@&KMX%caewktUn!{(_}*>Ode(Ufopq}$@tx4EiB z=fQ5djgd(8>a*YCAi2VzOkTk#6mTuoyc}Qj=9+(B+t`0yzOx_YN2N1nw?fafzazdR zPAjh%QG3OOZ?i6uHPB_eTAG__5N$Y*_({P>-%>-xdQy5{2#Jm`s zazZ#0F6+-S?PT+yo1Sqw=+?cTCJYYcf$E;Ty=!lURW3_)C5Xv3Mj8Ix^=qO6Gm7SJ z7eo%`eH7){etammja!b_-*iK}6m3)A+t`rzrD419{euP8um1mGfzH&7CbJUf#6ID{ zxUDg_Pk2G8oG>d!;!1TE^;ts}=qD?Ixv7={YaD0ach|g-P3}@mH`hDQD&B_5e|UY0 zv24V2QLEorcUqfck-8)N4=gaPJp5|drf>vY1+c6$ zl*3Ff70H%cu>+x{0C-?hXGhkV*Z0$WiDE9dw*=Yy#!JKD9^-P{zrn`|ls8Hfx)oJn zI}P*9)mPxbwYa;yVbbX@i5Zf75KUQS>RtWVT2N7Qj|zb1~eHEzzM+@ zC#+^5$xa_6uUk$R&UqDl<~_1UL~h04WR*eOJVYox$CgoK%O=LHG=z1TQcOni-mSNC zPIH-Rj6&8A;S)SY(O?A>daQp6txM;s2A7tqPiEFu{2fNDFX{mlu3MG~>Uc~rvy&E& zz1Jv{*Y0yMS$;jm_wlW`Iimvy2A&unOA-s!ox#fu3^;$1H$B$r)3gnKGa78{ z)5k#0;k;e;c#h^Y^SR8tI+|39w&&&VO-ZfBk$MW+X9~&7xj05Ogf*FY7)|UrVI<-d zapK&~*z&A2QlIWe3Q?DRDJ4joZtCG7mM15RGy3Av=D_Iy!RLDG2kxZaD6mO{PGFdJ z@LVB0d;35`CRHklOw!qIXLK(lm>p-^^&s6(OKk8j=v3n?02-V2`^nJ%1x~k-{sN~L z^XH$Tf2&?XQxq)g&jM@=eJK^^ODJBK?PdVP{z=bzW8Wo`z72u3$G&(OzR;I3dLk|N zK*IJbz~k4(eob9*EK`BRf()L^y5tt}`60`r7W58*_28>rV4<7SFV#S?+i{MKhrPH0 zfZN$Y^yM*5ZfqX`vXMKy@>iIQmF=P=#-UfPATEp#V4?Cn-K=Xj4YT5nh6lp^qxK2c z9eK-%&c<9NK?@(he1n)Jh1HRw9RnH9Yi_U59feV$N2^u3KdM~$_tRd9b66O~r~Bnk zH~W%+xj8||`g(;es5)zT*XR4|Y^9)d_(@YIN8LT=pLNbP%*a-%Q!Uy&;- zEI4xIfISyb_?u|!h5x+7$_}x7cX zdfj+PqV{wH&u{duB_b~ItP`9~NpqzSl$^iW0ZC0eCqqCXWYQV|WDBnYL>p5&BuY^m{;+O}y`V$Z8uH2Lz$|o5Lz1HpE zmyntl=zW$Y_n_eK@EIz}v4*j^W}<;y*U*e87O$!OjXXj3u7RBJG?~)5W+)ePJJFFN z7Aj@;_Q$5H*U+C8bCWRjfGA8G74d>AXxY`MnPQ>J1rCXS|mIq=+xM*&`7mbTt;$4^nZ?;~Ea zHxH=Cv=%a6kaPxck+As@239Yhuk({ih{^e31)9|m5fu?jeGnv`LH*Hi4pEyRflr;x zINAFtR+2J7Aazk^PisDtcbA}p%Z+r2oU&zFR2EE;;(NSiPP_^|DLgFCwG~HEUF^YU zc*u!1!;y@&ARFqRmYDqLaF!3vZs)5=!CCez&+oFb(%j3Y?NJ$EbQvAYW8@DbBX$v) zg-&o-CP*x(VtSyy*wraJXWLqrFLVHTSJsyhtO|cLKv*I)`Oq`l9@GJHo7q84m|;}K z!}?kby($EyANaQ}DG40+KFz8`0kOn$9$p6_aM>N;A98kf-pG^uI~)Hu?Z?|t@VnG> zprM5{`M+A;8*@XlKBrM#5K6I(S~2UZ6dha%)45c?pyTJ{OWPn}>2$bVK%3x3ao#-EHVt9Ep;S zExrHG=SlVMm}~O++R!p&gvSO7dNMFj6ZUin7xr+i2dr#LcA!*Z{5m{|cDp#JS+9v| zS8wxHG3`{NX~GM#1#z`URG!0>XE5%hnNc1e6u>0vZB9_IV!Q`mi_7(e4eDtOpEfx@ z&V5^eP5I(;xL?KxXM0MwI@XORb*-e2 zL+n|wS~6O1Cxtpof74ZXb6*Eo6aOrY6L8!i=wf zje<&DRaf=-RfL2T7=D#s>7;5=JHSAjWN(+?p2c~{N&~oCz=X+)ifo)d%MPcQ)@NJl z1R1o!h&Yy*iIUh)>sPcM-|X%l{NnSzbUd$s+0H9i8wwB+x&0~jvMvJrdRN5GB*og? zJA(_2?Ugk-@Vv_;9~-zFT@R3Lyi8)$*QGr1Er{#WRq(7Eyy;6~A>$NZT`F&4R;y0MRqOH0+kIP_*+MoBV_tAk%S$JOZnju62jutMDn8z>Ma;ZDGC)atd zlS-x1t6s-2{oOeL8$W*zjRMqd+`d1sx(L3&6so7%bZbN(EOOrai;ILF`(Jki*|w5r z+|UJib2dUDM~9gx;DpdyFXZsOgb2lj*KZ^M&yNn z;|Cc{EX!>{^w9mG)9zO`rOkB)hTzZ=-uv#NII~j}1@3^WnS*oh29+_L zHU7jR97_;BQV__szRcY|1vg7?j6X2caASR0g_ZFQUhtg*xWE(76MhuQ{w9Rue*0;V z$qCt=><+M3IP|zdMT?2zbp$6MDVeYCQBd;gAI=e}U>|%rEc-%xqjPtBRdLmOAyDWd z6T#`l2rE(~8Q6@;b6QW3jtD$}Z?!MLY+u(Ykmde=Y`t|@RBiV?E{LR*fHX*hG)Q-g zba#VDcML;_bW3-4cXyZ4&Cs1gcYFtZp7-;@j5K4x={1OLT^ar2 zh3@`&vkH94lP&q%X)g!EcrgPqy5DfjuvvK>zENBx@+O&cbmoO+{LQ*ypg0wgtC~hA zKp3_&RKm?NhWN3%Ei6{>`4#!k`q^wrj|yHYB!PF{_C5X_G04+KO~wDmJRm|E&lYE^ z3%H{CZ|cEY*gw<*h^;0(q`#3)+2@4+Fb|pI*5nM~f_;`ZhjJg{T0(T|0a)RdTnv^A8GBni7kzBvA$aYYlo3%i;z_Lyq#%*r6gL_Q_$;69E3Iqecmd5p^ z8O$u0ajAD4dVfV!oWtwrsdI-`X*{Hoqte6G=4wC9O0Kw=YoQUF98@JTcmie<-7=|G zHjJR944W$+QRJ+l3@9;XLa3 z#EmMmsKNKFzxPu?77L@EABQnZ@W1ScinWRWwhIHraItye+r5WElmiQ0tcnK-a+T9e zkvJe;$-VQgKFaGs1M1>kqr}BBA%g{dtuHA5%aAZ%W2TSLC{x42q5%sIdu%&3Vb7g^ zFp?8(Q-id_bShE3;l+$j&9Ke##=MGjN->K*f1|p+O%pX%6hz5!WYEdk937yQ{ov|e zhC-|WID+QxFLnSIL^2hTg;yL)ZLEt9?O^U5`RJ4GKbWOoHFrg}WgFERBYD{mKur7^ zCPh8Iefw5Cb(#V0)9<2*Z^3zCAn*o(;BzW+0PjgmldHy6xDSK&lzOs&7r*e07#!icG>@kv z@j4LtH$Z=(#!S7%wbHzh%EJa?CPTs((NcNPH~nEKsL6QnownEGC3QYHfn(WKMm7Alg?j5_>Ib*MoF8pK!2cg5!fZ8h z?jJ@3k-!T%!oa{_ADE*VBA(eTsJ7>;1P^#h+X4R2wG*fM;hB9>jW5u>2l-W^6X1@L z61vu}h4y6-cki!#+{sxnFO-XcYPQE1hjrYxQa-BTYPKnd%<&z&wzS*Clyvl@cO-jB z!n-&G*ipwg-x*{Oq5EG!sr_{9&(La0GKSt+1!*0|9oe4JRp+NH2}{^zKx%!)&kvcu z@e)L(8?KR)`!x?n2xr5U$&IHPXEP7=tIh@vo(`{Vvj@-WrXXI*D@i%kB@tBIU%o*X z|L{CKk1*F^#M4lgXxExGS;w?`5HBF! z=UvUs>lqrVV4dH3Af3*y6FE)negfrcuNgr=Z_R5!KuBoiAZ@#p%x)!|&hKG++KXKb z_G6@pr^WDb+x%uVISCsd=?wE)E&TP9?j|rf@?Ohgmia8TLw&f~TmQqxcl4ijV>3*v zI|xrWjZ{sF0jKO|OOr|I5evPHp~0kxes8^d2lnchJjzx> z!sC7aU`88dyP`F4vu{GWLqri#KeBsv5&+L1BvsXU z4CU4RL?P%lY>=hFHsrx#h<|X>le+xmu#!5yhCu7dJoFi&IbK%!ONzKQ_bh{uA|T(x z(T%$a9CW-Mway^W7u9 zebI)f7Gc>U z_dZd7Riznk&f{x|IGB_ z`}hsJqI%wX11tQ1S?$wBMNE~cfST=iWZe{wa)nk<_;OtX;d=259J*V>2C8YZ zkm8%;a!9uqm#CK13bt}XV^Zx~Qn#a_|65oe(}q_bJO2VFXRw=uBv&Yb_6^bdTREO` zGoXMY<@RVK6*uwbULG+V^L;JSk1`tfh2hhc_Y6H{GI`p)E3MB&&Q{A4EIRo?K|Bmi zXp1wYPU-^Djw>yX>>mexCRNV51Bgih=Xqak%7Q%uiAm);u;5S(vA5p*$^==6FE7|Q z`{W4!Nto%-^yR`ZWQi;);dUWeq1(6=(veV`W)nQB*CU?iQZsCTl>JXNjURk(%x=tP zzwkDm$k1stw(xa)@WA}9@>s_7i?F8jI3`f&1)J1G`#{A_eyeKWbvq8gt-)@|N&nF? zPWp3G3z>Kb*q3QAlb=f#&~+MEV*{gmdn(b;T>Fd1;^Fut@->{i>I8rPd>aUIR@Z;= zIwL~L53;-Zj{c{xzp74JK}(Box@3KR-T1fhVo+=m@c3!YQEh{S__Sl0F_%f{93WLsNqo zS6p9jo^Ck9rvr{)0Yo1SQ%a!#? z_{dW8#&$oEh`KT6SylDX%%rj$d#Pqn`La948!oP09!s3d?6glngDcAv`ztO^gF|(? zrw0eR=Ub{ANXsQ6NCUs5`zKU|%1YZQm!#VsHJjETw&6IE^nLI+#8Rv2*v;fV1z*P1 zo#`5Y#bPl~pm3AKyY2b>1XL{U>_8`j57GL)?Qrk)c!v~B^Y)-%Qm!AXei;_J-yJmb zMM#&S&CO>)uT45qzgvzED}KqbdI+gLmg(8`DTGrRM?$oJ6@<&m}B-GFwu_AtmN_)iFuSU$`<0J40&WzNUI`!$Z+XjYaEX*^$`YU++yMh5aw6 z`I2C8dZPVQ(~L-Wpol|+DA4dlGwSuQxB>VPlS{CfKN%39>4RVCnYMa-RM651>we=$ zzo4pB!h5+2^>DG59~c_eX(h)e)}uk5)_RVDsmL!txf|zsj$DMG6&EYz)g9>rH{NO^ z@T>Knfncr{No~o4!`k(Rq~vMCrR5$}U8KzpV10V(MlC2R>6p^`x;D1Vm*CKiygOEj zQPz0PPXMW`h43@WL~$2MsC?ZaUc7!A>F3?q*^uzLr({Z5jLEF`+IrC+R6;lX9z%0S z&x6g{;{hQCt?^<|>Rg3c!b9)rd~~QU2wN|dC*1=jH|Kh-1v_TBcXm{H_;e>lME#;y zF5Tk`%qHB;Xc$M)(-EivJ%olTjgpo|ZsJx=&!;jvpSq;JR4bpbs`(*lpnplLel;A@ z57KW|JLK8pn$X|@ZbC`%WU93OLk#@LJY!p+ovBRcfdi3}ae;}6bc>Z%^Lri+OZnzR zeG|hntrdQCu{28QIb=Mpch%dx;pRg|H)FN4W4A@hqC0J=JP6tGw(B>ifk6@VC3T%{ zh=4M@QwFmPI{ZH}uTL1ziMy>oOwI~z{8T@@L6WkXD?E#sSlx`f2>+>Cedr0q=$ZbCXHB2t%HHaIk^ zPapUoacSFS3+&Q0Ow-j37Thp-#*piAGL^Pe=JjdWNihDE%WF<1$3y7Cdmeg*H-)%x z0Nf#3Dm*qF2m2ZfkSxuOAPnJ$U%DX^6io5BfQ8b`(ADpb>P6#HO|HJ4Q`m%W%3K20 z=I~4Lx5V+->_|QDtw|!|fa9jS^1oq{hYg4F2Skm<#JFVBcyV>^FT9DT@9`s@LXY?u zTQYbz?@;)l4pbk41iUmtJ2%Jk5rD#dJ-usS3aOu;T$!FUsxXB}GI6-w-V!w%P{NMg zw%ptusMt}iTa#AVu%_;yA?gjtFYm?Rmdb+H01q+{~Vns|@P5a0^L@s{W^+2rU|#9Jg8qoz)+4fj*q~D=&e!NJU*Y z8HhX-#`Taqo`4?mT2GzcT<70=`H^s|OJkOsT~~L<8yg{D zfty!qp}1i@jEy+>YEP2|*2@Y~(cOugz42q&0k^IKh^>QZz@(m@*~Q)))fs^Mw|*;n zE^-r5$4}coU6xhyQ-0Vidm=6SQUNC}KQMAhL9=r6%laYLmYE*LRG)ysG3h~;4+pb) z%wNwEKWcy7_x90$V8CbA_DIMuTC2!RB1gt6DP7PJzk5TSHDwLO^;eUDga)6_G^~38 z{TUehk;8+LnnJX%PAxEJ<qA@639MnTQ=N-`3CfRR=NpyS%NZCOq~s}f^FI@1s#-G?P_ z-Tw2$c6uv%G$oW#*GneSHc}Mtk^+_Ks=-iFAmxYX(0z9o30>j|;#&lT#pPvw^Sxa? z!Jm5|uA=@levI#j6#0@|sn?-o5;ZdCXYhbWnY&Rhrc`0qDwo9wVvo@JG`Dx>?K%ZR za|icSjO{rs;BC*-T*TXk&E)da`Qq}VgK5N}4V(U#8 zRe!nf3aRijk*foibX=Yv&66ct2r=KYW}3CoZx zu!Yu>)FsS*4>cyHDRP|tjz>lZKmT;o`CBJ>InBNa!5FhQyy=WB`csV= z^ZAY~V+b2L+cS9zk$}*{4lo}*Y2e61>+}{{JqYbxT*U9(lyouF zrn1aR`F6|Q5}Rb6-%7AjXH8#Mrjrd{Z?obd0g$k}`5cFypPFZ1>2W`@n80#r@A=wW znBz*p7~}$O4WPAd)&aOaUJf(jxSb99f8a@SgV>K3o-IE<%$t7vwJ8^~5$;f=ffTU+ zus11ZI|{-cGaZmWTxh|)cedOS3@a*VZF5i`!a4gDvOgEe`=ofXQr^zKv%N89NKnU0 zMJ6KiGo17C6IP!+ykC?txV}E!6S2E5yqdjtj6K={68;z7h1B zv+EVDqD39k^4KQ`c}8?L+4*svo(}HMnF67%d+eoc%3N=CZ~jiz(uCC`oh=hMCAbI= zCKn#L$m+S&dk8x_GY0`zlyBtc^!e8Hu1SR@C44#H;l& z$kZ;y*2bp#rP$*A*CNuc%GpL$BL7qO&oF`LWmn^R)y)4U`qIpi#!Qiw5afBr$^e{Ft~75?P9Xc38M z`{h`*wP^{WJZ%Tl4xc^;Q^b704AvytQX$4j!=`}i^}OjxCz6B8+?eEZnSnjc5&-naz%dt9+)AB{YFcFVVU;A+v2_>yZT zA_LhGL3S@juV^ruFKRPJDN^AwIKb5O)Rf}Qu>W<}jJ}c7g6-t(LeCFc;!dkNMg+069?Qd>w$p!?JBa!NU zeKkxOd@X<&fJ2BGs7SiU5*!>Uv4$4%tra9V@KNiszSpCbx*p_&%KK_W<^61}1)1d| zLO&E$S`IvE>9dGy z`V0~A?EdUfc#N3YO1y)w|2abRd0EfeqAj){*{I4`>C{bbmNw!({p)TYG$xhx*)8kY`F={_urPt4=!6rZhWW&Pt{~J`EK> z_iaN66?SC5V!6Zn_2nm$|KeO^gpsbQYHOFQ-<;rA(Jk1Iw=bT$*yDi<7t7y&bXQnP z3Z5@3<)AZOu$Zuv&pH*?X%0jEG@4fNiuf1KB*wYtJct*oDI;!ibT`5!{z%lb@F~C@ zJApz5GT{VS$!tesgaS!zFtxe_^0CB9t@bGy+H*iK#Cd9Soavnv@QT1gA79hbUF;0=nmp?t z;Ivf@=ueDfE_z(H9_60Qmy=-FV#BiIgJ#?0ZSW`@@9?QoOKs+UL;heeuIeX}w7!CXX(17QtUxBLJF1x`LLcMLGOmi`hmB(9i| zE~;GUN^FiK!5#FhN|_Kr@AAaED8)1R;Q>g<{taHZtBW4BHpofB!v=%Uu?~aig0+hZ zZQ47sAoz=@iMto3sIwo3pZqy8iiK(wLxk|eKGstw)|WN*u-y}18CzT1;wb~L^piro z98u!Syd_{yXw5*RZjaZsi$#gnyj=Hk<4~wKJu8c}HLvijY|OxhnqT6AwA>n^ zLc*2Nok=149T@*E!lJEBOVhMB80%v__2Pi~E_x}XO=x(mELQ7GP3uiM?9w`LwZU%V z*Zmwj<=3KO{GBpZ>?%!k!svP`qdXUusPgLR7>xK~{M(UrFpQ@s+j=9e=<@x;dc?MZ znbV!6HFvSm#lkjNFRkN~{UfB-;hQCR(z-BEy9xnlAp$qO){QW^s$$2kuC6JE5cD4q zsoL7wntvHbUuo?==lQRLkAx6s&fp5e3*5AJsjc~i8&-D<&$?}3;BvhBC7+Xh*uUl! zkUU>N-xLdzEVl;M=If1tOywoLruLrZ1go}q-ApD2Z8pN(UjJghu;K<&q#%AmP(Zy!8LM|d_N z{f(Q`@UZMQt!u00^m{w=S=$RRj-^LIn6+sanFBHJRjL1IyB^8dFkCF3c$V=Amo3s; z5kd8wJ8!p7sXGWnWEk@9t@zX9hpZFf5ET});S~Ff0kdH;EBDB1-h2){n=}D^ZPmhr zg2oY!(N|24QctVG>8)>j(h%j{H+C~A33jvolo!Fi!E%@bzQogJTOagjVl%!f( z3rkiuU1QnjcJJ9@VmYOs39sh&%umFS!@J`O>mHSfdY z{vgd{_$3h_FP= zAzL9Qeo~PicrD1I(F}eU+h!+v#GMwy6RL}-%!fB3tBvhfWWPqMfB$r>f3AU4agJTr zFVgO0#Z9K?<X7Ey>+ddCP>rb(Zr#APpwj=1dzq zb%CigYDKx03pEJ%?3NXvX?>3e2zU|^VN($?T%E?3$YcP`?X*9&dUAJpPzj;tDO2aC zI^!AApY2qgE!0|6LLLNrscxO(dAAoB6jTYy9jHHAtml9{+pZ7S3J6laQknUaNBrSs zXPCXHrtrvUNM7O=!4T4pHCC3O3?SJOcF0+aRtK+hyWcQ8A_oI(c?S>8d z@h3835bY@S?fONuJkub?Na_h{S#1R}np>!LM|Z_n-AqUcy7fA7^B0iVyw@8d99|b{ z=V2%|zY)$b4TE#%C}U4P-m{uGrKS;PinKF`gGp_~91FTKwWNyr6`W&a(_d5bDI^M6 z%?dEWmfOAes-zc}5XJjofL-h8Q?3#1p|KLTc$ci^wN~AK{r)48RZ#hHU4YNU=fCV* ze?e6P=C+Yj^dH9wsZeGO^kf}9F1~8?3|G|RpU|ChZyVvCb}&eG!#ASaC~99#Vq5oy z3K3T7vu&X|x^%Z@H|ra@k?=33_)o?04VZ+@3+=lFOcAvCLL;V5xik04n1i}W40?prEW$o_+FY1?Wtbwo-A+$`S{4f!6yWz{@LUXYi zq0jEM2=&O|P^vg^_x;YL*tM+}NIK1uR_Tn1oE_)2;SYIvRX=P>Dh1g@bI_v&OWR5$ z0wXGi_8b+ST-t)qS3SZ2vAStl;R51gttKR?YhyBB_{LM6uG68IWmofCUAm>@*JaGU zhpv$eCXX5dR{eKV!j4GS-Amc;>~!1xmtQ0LHhB@<&ywhGkjA{_LG>mvhzl_Oqv7`6 zz=m2O@8CnzZC2bn_h}>^X))jVNH}a$OQlaneqMh0IL7S=p9b%)Lv zOmV#QB(Wh}wbLM!QILgq5NHc@utFrln?+6)d0@Is{;l37fXyho|AsQvTH6?rIaW_G z2#J5C0KQx=AGz0TiHzyI|7d`YuHTA`o3?6CmGrCM+Cb+Fm#(;ZpD1TEtEsC1VzX)V#CM?}{Z#=Gw7%NEJw-oH`WrcM7S$h4pdiN zaQNY?;-sTV?+%<3;9H&otcFHVN5K);1*H+}dFw}PGz~Rgbg*dNu8P|5Wn_lcf$&|C zHl;s!wm#qQ{_x}sxpQ5^#y`D3whZ`vH+HFN*8RFGGm7A!LFU|skJ+o}$gYFk(!k~Z z^5t(N{U5j;2p>q5%4clc{&#^3e#mdYM4G_&Pq7oKhA6Pcj?vTw*NoH8XuLVl-xf>| zhZikDIT1KP2u-^TyTsY{9gi_7g}j4(7zjH%Ti&b!ngNJs>_&{u9HYlRQgA&P6)ku^ zgZQN}S2iSy;lpj>L`Lx#o%OD2l;Tb(-AkM3voS4VoBDwf*t!DwjD9??VWaCouQ!9@ z6!Z~$ooFMyTta1)ryruDBIt3&%sup_Ge~!2Ng|rbl`&-At@Y z{5+tN(`>zM`<5~)v~_xhfF0dYn#r?`0vQ}xzjV==r_FPJ-n9BW;6GbX?j~vxFs$n$ zOmHXq25o*XWQi*`5a~)mH()jeCjtdZ_an%Jxa$b(>=PYzc^4J-71gg+Tes`a4=uF# z>GH%lQq97EeS&*~x#^hK|IFI{*U*^4N`LKI{yEKrIslOU*@1{>{Ljl+EkOTF@6sKo z*oZ~U_EXXO!x#klP9-d~mEeeAQFbAOjo>Rz8vEH@N(e>Sto{%bW5g9XK=+;)RVgE| zXkQaXaaRfj8-M{wtc24o5A7%15o!=H6MC9D1>w)EKcB9nJ z!THO>kv!J16#z&YiOjaQm;Q^DWH^zm=1vlfGEH7rj;t&GbM@cu%ZO0@?M0=C!+C$R zZis83yi9ec6jI8d=(s!kXPF;@Kw*8!G^(bayKMbmvG7uhV$84(3rg3E+Ik**_~KSO zATzq!+DlKZbfxenH8sL6R3$j0FQe3(@oJ49WyFMf`BSsX(GqL`cQGwNI#n=ApG?M$GkRb zxh=J19K67!OSddy>3n?4oH`0t0(6AfO>&+L*VH!d=I_2JRpoFUWmQz6{;gVPL}~(R z43Ej668G&3bp0;7uIA##&tyR-*W&Pmqe*-yX~&d@97;rjdJ;MM>QtEF3Bef|W8#;C zD1YWnxE9Pu)X5M${(>(!p+&pLCl{Y&ij`GV_Ku@yoo;}YO(Tn?MR|Avme1ARsYDR> zvi#9+=lpeHPNcyhcANkzXvzLG<9j%gQ{U)A!nnu(Mv>v6xgjmDW#K+6{v`#*34V7l zvigV){t?%qx{nECNm7vrX%SRRi%#_3uLWuQgYn?7trXi9Otp&c72z|yalCTDNjw>~ zm$sP-#HZD&eqWhQhM#DVR;h8*8aMJg5)CS75L}{4LTHm`C1H=?m-f(}+kDC$>818I zR3(!k{&29545NuhQRF?kAzx66)Z6oJ@052fRr?=`EcOw^q_#*fg;_)4E4jQ5dmS)< z`Xc7&Z5e3sWE&#mJS=EB-4CY|Lp~o(wV45JI*&`Lq$8k{c5blna1%jk^{lpr6SC|f zW=RW*7bwoV9c42UY3tJHl(f93CJS*Y3T`Qf2>oOGa*G#AQHz_`;jjYN-nJr9GZ7}k zq^3DUGWJ}Pyhi*Ek&&_W31_BupzhDS?0*O4W|wum6$Gmq16EFsT^bcV4Xj=R+ni-E z&@cmpIH)a5yH&WMpr8s03x&+g3afHLg*{i=cXnV^Z{6ICy7o+yug$n~d}|o_#d^G# z;C%*ZLE3?;Rjc7qJ;%1?WHhx#*1ou2p`WF8=c+ObA@(aqF!(gI{|7`_5kryeEj)3> z5xrDHX~jB{J)4ONF{8?2(}9-{| z$1F^v{p=6YX-;lp7F7QGsZNTf+UJk#+Rxq27l9Z3Y$7}cok^H}-HE=vp?+GnS5yb5 z8#N^Q!q)77=cQ)y#1^{m!$CQlDbC2gEnk8IQo@28o+^VR?X`XTh9@+{Ws%;r$W*_7i^cr07E#^(y4-f-YM=LcPzvvu*cpmCn z8_`H5rq>Q*k@Ri9N4h_iZ|2o$(6(pj@w;XH`

Ny zW094j@)|=egOaOq=zirOF%l*#gq6x>43ewOo-|imZMDr9)hwmdS=@L5>C6xGTS1e+ zBo3;pVBx;Q(~tSu?|^BMJBzJG?-V3;%{wu>CaUD7H`n5%oV+~8Uk#b;pvWQ8a2*xP z1ZGvF(1`@;^SbsA&LwHU$QeQd?ZSEA)$!F0yZmgVBD ze7I3`9j@RWeP_XA{MTATX!S<;gWCy0p!yRMVqnUK?W6a_%H%NIJUe{TMzN`3>EF}i zZ+pek*N~;6*$+UYg#N-6X!iNcJh*HI< z#AN10b={9Ma}14>#_uq5%FvG)<4h0YE=g-F1?J>B0dWy%X^U4)smjq-N*x~d2l-GC z&B}?mA=${7t_9(NmFl6M_78XS3SVI{`+}-|hP<&IQOC_za84SS zxt&v{*E-FNTkLqO6#55h%MBnH3mH*sk`;s(dU9FXzET|hbtgS9yPj8V!<_KxNuQ?F z@_`g?(U8lZZSfOfOmZ9F9vfx#&KaUZaQt3u~=?iey)prU4zBY zUCj6Ii;BWLP3?FH#1~lLY?Ro!v%8(&z)fm!oJ=IqItdF4r&N{Fl+Z<3JXV5cr??MZ zyr5#aGc)_nV5+Ueom^W^`KAIPW@A=WEh~GqtH1ZQflL`K6@--`PfZK-HMszIai+n*PLd5&pB_HVYTbK-PrgtilsR}||yNEPX zx%FD~?gP;y1Dil4=k2X6HkBUt6tA39<0y2(C#c^Tk);a#-QBOfy}buUM>(!53nA25 zS4E8)a^?&Uycs0~M!5 zrqS(dKy{1Oqb4_2$Mc<$Kt{fdalsHv73sgZ)e z3jhkvB093sU%Z!~dS9AUe7X;X5EN15LUC%toYX_-wnM{N8_Xa88Zw52RB1__qp~Vb zUjlBgOtGGpxf7QrH^kG3J4t3?B2s378A9;o~R+o-^e~$6PpwaGH3gx zMpqRT-AdC_YqYI}8Lq-1-cu<7#`&6!`6V3klufPN1)7*BU zjoxsf()=DXqWOL9k6P=JJDNw>n;M(urSdLOA$u}V(0XE?I@mkMvsj0S;e>iL~ zno7%hsOi5ZqQeUww)0xB=|9d&HB>NjRJjEeuhs;3QR-__j|vZt%E|-Iq|i6XBAP~0 zZn|BN6nwpz=rlgiu%5!7tY8d6e(ey68gMSx=wtjr}J7tpr;=R9p zT&E$-a?Z&;>!^g#CUG%IiwmAl;+{K%}A5_hCnDhS`8=4{^}S!p|S=+sOHIrqa!oocWeM5Tkc$d`|}V*V3$b zY-O~j!h-Pd-t00RWZrF59;?U9-@R04x$A0DxO_p%%Ld8bSaW1xF#Vt}t*@=NL(vrui zK&Yc>S0l&dallu?liDTDRS>m8MUe1q+)e zQC@kQYq9N0@`C;y4($u!)}6~YmsOpd*;?@1&kfibVpv7B?ctj=8_U1R3{TePJx<_K z^%@)ad*W&V>iZG+OP~8XjHaHHqMHi&x6!++2VQAF8nL8X^5hNOjPe-Q9AK`R%n0VI zoXyqa#bRwO6dwBh8M{?X68XHircVNM_CqpMr2jRdB>DnSr#aQ>soxNx{vGOk9B*za z&2&*fwdew@w-3OifHI;&ndPSrh~r(zV1{!HZ`-m3BA7y$FmJ|C-9_XUVs6EB_P7I3;=kqzF*we|tLMQtnn+yr~W@HaLH$44gX^)C= zPH}0W*z;#S$b6nkH_urc{hWj^<+aZmb9XoTow`M|Pn1Yb+|Cbgh0*w;=HmsxVSO|; z@bA2_UV%yXi#b#l-T% zOZt1a)G`wttcyI(@PQY|$6%AI-+)Gjf~!7MSQYkTc9L_cR$x5KuG!9p;hvk1YqSt} zPv9MMEblh2cFN$Yn$6pdVN0At+-;+8w4jyOIzRT$@5vRP>V}fIVFb>bXJQuM*yHgd zy0nOf7`tDw_?y||;lcwp=Hd?&&+T6OjctN#5sbfoifuzS;A~9cJLc4;1a@hp1k^rB z<8yF7kADBgTk-J9@7?dt<6nlNH*Wffep@w^Dmnq3u{go-e`Z8Sp_rhJy3BRpofv8U z%%O43f33c6d@wzqXWev>aD)C`q9kKoFy>3V3ZIU@z?e|J7Q4(u(Q1$~YkPx09<6X# zr%>s-@hj~nq)UXqew(T6$$$f8g}qFnTqvz<&c38VVIJj7lqWvaJ&BVior!$u)Z*R5 zfDgmoHuDfISm(^XIl1LjU3fsmn$^$e6TC)Gc%&Mx6#P~MQbt=97#DTc|H_$&@dp*| zV+kVQ`V!%~*MQ}fc~x4=?o2*bl=m1R(kyXrloYHX>{dH%L4okUo=z%4+15BzoAOp+VM&Cq>E-@TSq1b1)yDj%-;tNl3cg$Q@%x1QdU>v(rZ zSW5d3FusEK!_sjiTmfIFv zo5n3xg_lQmF1UWnZ_i|G#OrN9#QYcO zeWd?erk|ijJLET0&vBsR8GV&BJ&wzi+=P!@Pllr%RE`_cX*Sn!SRizWBo1;s3#Bs^hQ^4|yq~dO$&=4IdZYU_wSUGBnbzxj zAeztdg&C6q>gma|3Gt6dD9KioicyPBqTQ`DuhDp~fK@{j{kMmzghOw3a)4&$&`s6X zsaTB}a=t^S?9~!Dev=nHEfhdo*-`k0pF&|GPT`>lf)GH8NZU@ZR#601hYjGdq>wUA zMzFWZS05;B9Ug-GBcK_n$EZERA)K2i8NwN|$39Z6j1zbB7a&)jIX-*3{Y2tdl{}M3rz22o&&C$%v zEZclW_Hg|4^i+r*cYA1PAKN=dO>I5$QGk8FZ*rPYiSjp7j2X9ej>E%Zxjc{>0qPsx z1Pk^E^#O?RxQ(i%qY+*AVtw5ZU>A(BWyKbIm1o55#fAN!EntBI>NcX$qy32m`0rkE z6#gBX568hdNc`!ddDYGssimI&4a)&>S}hMw{*5mqna_Ct;so0B0^W_%=Rv_ULtx@t zLs{ebBv}I-#%E9LuO4k!0=n$*_2Hqt?ubEv$x)z!n1A!)pizljOgrhS~j?wVo+>WTz#>xJQgzX>)&&loWO;9?-Yi-$NJbX5+ITy|~3(l;W5?fp+^~K6C`DE#0`o zS+Y~YSeJRx8C0ahfa+l#%R-J4cGVw%+$Ujiu5SAkwffP{r!PWo^av~St^aY^NQ0&P zr;&V+$1MF)KxX9As=HU7A~tSBlu)$-))Ic3cc-n(EI!lk8j8Q;nBoTW1#Se|#!3u! zv=J@Qt5keYuebvhBGv1KHNjKS>iFd_-e@}6iw6mmU)$6T1fr95B-68)Pf?$I4GG0% zg>9K9-RKK@xpi~8(V5I9DI-(stWk#WpM`VuvUM+vhtMlw{pZE)Be=S{cJR?boABq8 zFgkxokwRMa{DuLVyzZiiAWFjAd8OLLgU~-C)DiO5!J?edTNF`eFwLY-JiF0YK1pWT zB+dHLfKHDjd#Zb*c@@nsCKUD3n-TZolVqDwiF3h~(z~vofKeFR@J6CTD2Zj`>+mq8 zzSbC!;syC*Ykjzoj0!UDc*@%K6ygO+`E^XQhcrPMMYi_4J@I?s4~Ln`oSpb=-~Ht1 zS4nWQ8;t~HQE3Kyd{WP8%W)+~;ttC>MNOSdFwSUiTD-@{AV5RBEbJ z%9-so@X^=G_D_hjg@d!$SN+Yot;#rZ3=n~GDhG3GnmyEy?%G@bEXo41kJ-S?A6*Td zlh|pSd^-nwxojl=%w$eK1ko$}z}5D+?1WGUwwl{qMVXH1I&M-H1BBf zj>4QA(cYnPVU%z8x%gLxR*JC5B~R&Ix|zj2wjF9UU3s$&J)7nt6w#>)KuWcz*vSvX zsM`GOMCEjgx8*fEf#TN53)ms5R9PL=?SW)>vHXyy+tPVAo4)M`%@MpDEi(efEx+u$ ztHN<%xu>`ANXS;u8ChA-SXf&HB_+xvZ{|$~{n&M`S!6V$f7D55#D#iqVM70kwZE$H z4nKderDm36WGn{97ZrW1DC1glK14rhp1}i?<-u0rwGNLKSm}{^ZrCsxzKBtJr|>`mUq)`nofP%i#s4v1xx)^%&i| zMKSzJNB`JrBqxx^ZK8s;`}j*NEN^RT+k5HS!;G4BTF8JuC9P@2R)_H9y0;n$*`#E0 z;(TXhK~X>=oS-v|V>xhcPMuD@qNAg#(WkB_qqH@TCH>B&yhUPh#wE6;e9J>ePH=hl z%Jcoe6|A0~9&&c?V-Q8p`{IE&|875!(;5=LSf&i;CR6?#H_)?VuEX9Wi+#&9Z(KrK zSSVbZD*mHRQtE3i`oQq8gr{d4%b^(6MCjsN469ce7>F|fEYX*qV!%Y=BYtGihFvdpNSx~u2U2K9_v|w`y~=_av$9e zv>aqKjX>GS**G=3-MR?FzXa8x>+!}u6QDo{KK7oLMP`P*BXXN4=&UalN zK2f=oHmksW1v=;cB5_x=JdVEQ@x7lQGt8M3k=*|qe!ax+RuIM) z{6Js?y z73yd;d39?g&FkjpC`L=)q3Hana$|-OO* zrFoOhsVh|tGmD~Pdx?UA!zybN7vN1bib@SXfg@0LvT-T42n+$<$TrQZIlX7>!o!)6 zLdyw!q$G#%k_@A)YvJY)#vKvY_O)bhAyTw2+`RqLWb&@N1 zG{-Fa$*So06sAsd5{;`a3HH(*p&-Zok2ehK@xZjGP;IziJ>x9qV!0HjMt8jN93qQ* zq=G}7eHBhtbE(kL&<>}k_{hv^Bh>J?c}8fk$~T(FdjewXVb(7efM1R5Wd9U_=DkoH zX2@8tf0pBohySNx7q0;&A`^ zjw><#Alt+1s@V8Hfv#aJcYtV3a%DmzXgK0nIdum|4udGQJnIzNRFt8rbLk>1EK=1XzJp2F``kWgs|kq4 z)EsMmY2;D;Cn%9i z@Jx(kekv`mzmG~uLTDC#ji*@w-Jt1=LnP#%Hq7IYS^V>DqInCN9pch!)$Pd*#IoI? z21>0^H0Na}7(stzIcT;a%I*~Fc>*VNFdmn$tvaFYligVNm^408wjVOcB;=t#T*a-A zM3}x4bKcgdy}Kh$LU7IQW};Zo116cwpWdKR3=e!<_9sX~NsKH@ZP&#lAA zi@fpI%zQ|&n%hw$TCsaGEY1fMjwlH7^=pNbw9?SxrKKIGbBVtDff5s}_a0}I#uQQ+ z7V0!fz5TSgntUB2#62ie*H8Bo9JrIp0XWr z25ON3pTy-LLgqAnipTW)5Q*T!3ronWUS-suy5z7>9ORPT;g`=*HvKNNBcf+}@C^>- zUnr~+6})Onh_NPIrSHQ(Rt4DU+Al1yT-Z~^r}eIEBtb3{M7Hi;t`L}oh*F&R-_SQ@{etJIp#r>u;;i$ zu=lb5EOxJIp;mA1=;9r8F^=5;%cREGk3OCt@FREkug7Jeng#U|L84}MpDc^mAqqbC zg^{4dmXeYHV)R&ng_b}ouehjJqyG4Wzn1OJyLTd-_+eQA|M=Ju zdsv@{vd!Le){$&Eiv9;4mzC)%Y9x>IBBs*d+nY?0M?VCd zAR$fHytAs#frQT-^Y#GRT`Xz-vS}subc2@lbVEW+E-sx;XH#QdfSmrhiylc$B|H&6 z^lLxpH7|Z@XnyPy)Yv zS}TSiL6@bGI%@EnwsOa@DoAZ3xffbouywNcHAugie0fj#nDOzepp>@5ZSA__bEKGo3zg+FF!n_r|I5eHctWBL@aN%fu(jEx#k> zK{%L%Hx1(gLK)+A_=8SN9y6+>oi@FNTbt73!J0CQRW+aq`Va28VueGftAjl5lc&ZT zS#jkDjY$8LdDvSCVj%~`0WTFL9o(E>L;m&b1yfY?)aedo3 z&g^EQCXYOxbHPorY3Fd%hr(RLi}$=ll`1aMCe0F*e?j_6dT@hCu#lQ53h$wYR~#ma znYxEmmnS_CcDX)iGc|M@h3BXfJn6lq{z&+6OQzwgQ6$l9YPuUe;VXlfI6TfD94myo zWZjj4m&PTz5F1q@<>5kU|I3?`0c+2R@ZS&}V0rxgVKNNi(=fIk!NH|J5{M_BpO+?b z@5}c0g=?sI!KpgY5kr0eFWzWlIO!#)sMI5)qCifzFeNWt4eTs&aS&I%s!+s8A_)n$ zPU;?F{@{b)MC50(SlkG1g$455%g}Zd@xkq@8;XN^iG_Ay1fWp_*g%Ns@m19*^ap?FcCd-FQC5&6Ji<@>#ElU85nryRHSKG5HO9I&K@4v}> z{ePt~{Ui(^c4-~-C1|{dntM1|oKv=@lu8AyddS{tMbL6Sct#N}Y;JDu9{L5vR_~XN zMiPSN#*p`KWMD^K&z2^ruXZe#_}!&J{6wCY0L;D7`hd#>2M>RVB*D{a?}PNLGwk;> zgZQp#gfe7o)ryg85GBpPF=R|@9jir3?8}!61hGl0sE`=)Aif;u;O`Hh^<#o2WGzQQ zfCK;w>dx7W9fuhHAH*J^`O1b2Mh5`gx#^wnfJ6H^sK)IOg@ikopP%1)?dsf#$~kvU zyN&Qce|7=;md$Hh_A~szUs&Cx^O!|HM+vy<%bHIIGr(z_T#K>@w~qj4QMww`vV7ZA z^ui=ub3PEPU5A3KfN!0@;gY}Son+<}-7Q5Oh#AHWT|@cBFQGoqJvmX0d%Kkk~pfw&bJ{L5MSYD6qt>L6e1=EzTb zmgh*8Sr&ima8+e5_V&KFJQ8)DTUx?U|)O{_Z0s4SPe_?LqwD*&XB0{m|O3h+hOCZG*-a z0ITG`KcC-W7AV=zJi=ZhGR0JlR?ME!x+qRO?=ssr8e}0qq;z~z-_(pm7 z#&lQIq@-%kaNRf<0eIOZSkK1AOmc9Nx!JrR9WrVPZY!%P;sjTZ4 z)0*fNl@XeW&n?Z}RGGXSZnWCGiCt9_0N(#UaQxZUmHIL!K7i0Iirt!v0W9xq`+-Nz zwh|yNr1)OGPPAJ_XPgVO_#I-oV#SZ26PeyFuIGN+4fR52>!kHvFQuyGYxyt0~J73?83EZ`c^eaB3Xa zW>}o?AB+n2m|x#!(krFtI4dEi7z&5{4zb>Xl^pW58FbEL7NASjVQe;$t2P#2w^wJ2 zt+Y6B2?hyjl&6P~J{CwxbLqZ!4&iHRPFp>`I-D=l>hKfM>moNuvVvY)TMG&-wcA%T zozrz{o7m`$M8(CO|6~B*{h4w-u}r4*$UM0mVzQrFUSB%?Qm)Kbn{`dT#g|Iu#UC9V z4eoQK<0cnl(&<9@D9i$Ktu$ZcJXok3kATx3Owc<`_%F;L1oBu_Ez|1yzfqrHng-fe z2#ub#ZqGvR!-S4J&f82Vy_1Ty$7uU)BXs+Ly8}>s41Yh^{yxxR?Hy&#M75PN!C@`Iuzziox>xl6&DbEQAI z`*d4D2yEL~Y*}x@J?E7aw^5soRN}-Jxb)kRfJb(atnX)yZ!)qfnHm|~)GW38)9)Wj z>BTlpxk{8EQ&J|9tvfih_CymILV~nftD$0Y})I;_gQV=iJx(5#C{}pJDsg_LlxFB@ZMOb zMqVkFX_5M!;QR1PDGfYZ zA=71@gg+8LFeD*(Oe2IS`jyh|`sx~rwbwPZkJ8TI;_g0R<7_MIyEkKq_LNrLWPsHs z>@7<`*EOMUF>#b2G%y8@l1#wFA_w_Vt&!G+w<@j z57?CdXM4SXLUKUNGXDBY{=dmSGtXBp56ZCf6VUq8R6kF~=Fr7=F$2iS?B&*fAfJj% zz!yYc$DY0_npBfW`Tnet{-+m!1sH+3qlvx6W;RQyHy^=!WG2EhaQJI0xm7wB;X5rg z)pX;t!+0JmB%I(NJs6y*DY>VHNhPFCb|AmbzocWzz#XA!p1UQ{)zZA$Y-wlT6*ttD z-^f>Wzd3}EBzf6FHq6Y5GDN%{!*a{Whxf;2* z|Cmn~MVBLK8RvT3bt!35EP40{)lW^NJ8wOw7wv>Np}$HuO$WJ_T#1mlL!HqttnKVA zQ|Tq#xlD>1jCKFW=rTm2VTuy9#0s6U4)1<=sX#EI9nJFb;IG+@^y`bLJ8pMVIz8`H zo-<0P?aQ2L9XK2ezIiKzhF-%SSK2T5ms9EwGJ$>80>5_=k5|3l&1jK(8WaCN&=E*6 zNxqo7tjka{YsS)80!BS%7tWi9E zhm&?Ea`U#G;w~cnKmlprP(U)%GVW))7L&@I+>EG%d8TwMO+UqlY|^?U!LPix-2#oG z(3SKK1RcWY=H+!srY+KjL*cp~$M>LaYe~EsFO(fqXq2RLKP?4iN3?$}7tc6}Nw8$^ zOW&Z(^$F@LMz^o1uYLkE#F&3)yX6hS;$VR+NFvmK3KjG7%rC54Rj6jn;Quk52Ci zA$o+&*nHzAeyKK1v|Bf}+x&CfoSu3E2U1b@-I7n0#hgu|#0 zPnW_)R+X@rOK*YtVCcOU#MCL!iGzs(?&w#GnfX(g=ifGsa->z$a0 zySL+?U0<)NPz;bgvGcKPvbF%(Bm78?)As@Y`2jqO{K(fsB6>ApS0KjXoiVPkLKHVb&{;S0 zM)Vc4O5B-hQDdO_2k9{OivTEMSEwQ662r)W3VW%5H5vd-&r&^(+O{mQxicfDFixDBiBVwwSP>o z?E~3tei+h_P;U=;aJnCwg!W+p-_JTy<%UCg2N= z`#jxM{SV2o41bbGic?$a?pfWZ|&Qimm_ucjZ`_h(>oFY8X+y3{Ws zm~OH#HCQ-VCs3Ed-PUq(b4JE^vgX7|09^fx4rVg!dT7RL;N~Ve?{(byp#4YgmVmC+ zpK}}P_UfVqY*b{QHk099%rW{1Qy`I@)+7ItgW;cbJnLY>jB^vjL`N9O3BS5gZf0H*s%3wbkg zKJX}gsn*%@!_ra|9BX@ge(i{mbWzZ(#FH*_SL8N+Z1Qx2)f4Y{v-oh8eL~bY)VN92 zsGBsWWA)j}2|Sz(2=Aw}^>3lXa}fV-m`!UUXm_#zD~3kp+rxuv1y!o4xQMN-+mie` zocBu*L@tjepvg?6Y#j}EcWBU1cK(vv6C<^rSd^SwIvfF_}BL5SZtok|Q+P*v{E$@zu* zwo);a+G^3i%R#_g1tTN4v2!aTXYPPt^~Baj@ocdCP zz&1-=PAcgr(&}HYlArCC0i6>WW3BJm4~D3K*oO*@eHrA99U2=LvdkvXkaY!xEb$@f zyq1uR>_8!h(Fsrm>%sEWSm<=j>qORjv0 zQpz|eAD9nk9LAc@1Xg{ky47 z!UAhH`!B&v(J;I|cS%41oV=o9T45s|20CWnY_AHA+{U<(c%B>H^vM2jdfQFP%w+bG zp^_L;UhP1H;U$fRMbYMi6u$)Gy-*w$Rshu8hI>mo)%Z%O5nge>cjFZ|Pm{bOGppyb znzjW6gG>AOACiyHUe!!k=Iz0J$7Z{33m4QKXSYz?{aj8XN=xUaJgbtUIyOX!Qc1DlR4x;-M?4N| zNMOtWiMEbT+1EC3i2g04xi{X`R|$Qtd&^B{1ZHZ>3TMqR*LFN$PMY)gDipM|3hBRC zLSn9f{MV15|0ER5QeNS1TL%WV`NeDaLd^&um&*3{hiRz%SlgqbD$%4}+7jr2M1(|o zPbkecx~jDbG{;{0WKc^10}Y;pJL2EoBHJJD=qdE*9ScY z8=nw;Lv5j$rDI0-l2aigci2pT0z19B0$>GGA4ZOnxLt9A0|3#Ve989M7HuP)d2U!3 zC#`5HKJud>ez;57JVpjx{FcT5f+C>6+UxlCB7nrU@>mT7soQUX`5ZDqPdDC@J5PY` z;o))O5({h9_nPXoUfWjyBj|$fj;x~g zQJ)iFW+7qZo-FQ=CYz-sy0wlLWH^b4h*;g091BB6R+mxKjy3VKb%uFLGHvkydAk(f z-vXJs8t8*M!kTT~_!glHI&BOR{P8#c`l2}uFrY=U5V9+BG`h}dnXPGASZ20{fDw75 z#JwJlt2P%=*x5PWqt0-ZGhdo)3fhRqd4brJG*_3$SN=*;p*g!fTG@LJZ zM8H^9K_GE+vTv`wRDGqUqT&5!j%hc2`zS;3At5?10b3F|cxZP7b@YOPBaYzx8K2i5 zT}6JS^r>yMU=&|b7pEIwUPai6fNJ*fIsjgr=GEK;EQ!^<~_OUa=jBKW_ z@};{8*WGR9*)H_NUMQ?(*+Va-Y?yhdmm)w4qhz9+7W{eMgeGy`#KyQd z<%$r{eJl?6ARwo6i`SU)50}3k$ z(Cb}T4sor8wIQx!LY!TiU>lyIq%AXTW$fZTbpKaCzjBAmv~1RF^}m1q2_M{R!^`$= zp-%a3OU(~DXWSw>`*_z(tl3|4jn0R4BVC8|FqZ0tMq~a;;VhA0Y8Z%IZ8q-*RBW+P zG4sZAJ27!O9GR;7(5h8`1>~oH31B3X^V!Z$e*+;GFIjA^$_Fl$R*MU=1HPbC1lbu^e zM57Xjxbgl&BQZ66ch9>gX+bGSnOX`Yv_GU7d2Fj7+-{@$$vbvA$39g!tR2DhWo;p# z0B}|t0SQ6T+s4j8j(V$q*PU{s6?8KlKdkXqMa{P`i^uavcnFq|Q99n>;FP*@$5e(6 zovXHuPK9W9%*l@}>@WX;Le;Q_foXG7g}SW&afJYCh&Xe1O-LYy=43W4#2|eU5bUO_ zIVrMQ8?n?Gd}IeiB!R68IOU4P|idOx5quIOy zMfdkIosq}Af)&Br?;#J@&(h8pxl9py<9klaGwi=KEO}@83mA;}T#cgLQX7uHiGE_B zvOcG&)-hXfr8PLm#CtekmY4lBz5)g@!TllmP>S1kCod9})%tx1-4oa@wPG60Bew51 zasJ^%3&rzFRtM*R9~;BGqEpKrnE`Xx$D?Q(+n_Hxp&eT;M{* z(dk!uw|U>0JJ9d@M>-T9PLV!sHf=MUiRJ{3_jHGQ(Rhe?2{N2uPd-TJ)>zKM2gWlI zVGAzd690W)EYDy~vyRU!cDZJI`_Vw-IT;)C&)(OC@wF_>`02Z%2?#W?Q?~cGP9rRN z{7^)lP(2Hk1j$ldiwk;`{{x3d1X@)@@$>#ANP)z+KpzU<&Qdc>o?hXM(k&c z*L{YQ$6oi*s0Q;Lp&0>ZcV%95mpQ32N^&h@yywGwZI_Q|Yh~-F7I;W|Y_!nF25dXRfo=fM=bwy=O6DLLPy2;T(H z(RH4{9nw4sH#qqFW_KtxMC4DoO1{rHuj=So4ejc7h%cIsLGrON+RyjL1;$fb?xvkz zSi0g=Dn^de{XdmJ{y1*Tyr>7UDjjC#h!bJH?whf@NwgR}JnN@~+zRelZi1oI#h%!> zA@s;NC<YG#cO>{t`zc;g4twb^m7cxDDph^_whOHNSx>kIaJ^MpLI1BIjg5hLs=P z3W*Jx?!q`5A2gO=E)KjJ@wp6X8Wb3Dm1h~SPzXcUO{P2%?SG4w#`o2NC2E#`aQ1EY zK+k7D^nP-FhVTg{fGWxD(rOO6zwzd^n4DCFCRwNcBeM#5ZyD#FSxym35qLd8X?ZyD zIt5L#g5BpX0h7J}en|IML0@k*=yUPE^25{n0@xUKM{7sL2#RzB1U>0^th4)5B&+qemKh`8XFW8L7or zBAEZ!%u;_($FW%<3EO|%fR|hZKa`V8aE7!yaW&dWa3Bjsoh%(L>z2H(0d)tuzyH8{ z2q`Ch%rnYmLfoJ)q1gp@U`@_%FJ{&Qc*^oAh7kh^olMIZfA}KWKj}W`K;Q>fBvS9? z7uZ#0q7OXu&NjviN?%Dsb2cA{bdjd+?2xf=Ea-LP7(`qzz$m*t`SwAS*5|qhsn3or zB=c~$Em=_;qz1Q?)M0WYva%VeVT?cwoDGO$w96HseDrG?!qUu29;=mf%w$|n2>8;$ zA_lWqTnnC}l|JKo?AB+P@Nm0rX@AY&bMOHvwzsP`ps|rm!VVCi>ONk^mS^E>R>9$u zNy@J>iS_jKovT=FiC2|*h4^+j8@Ky4ZRyHOGc5G*Q~fqO6T5BXh$?oZa{rKHFc2FDZ7SouS2ctt5HPEGxs&N$DbqG75W z?qVPE-y%TI>H`FT?Ovh0WEKTTeTKgXz8>Iox2I!0*4ry|clskowoyy^rfz_<4zQ3H zH#g@8RN2#1wL!O*2kH3rv!HJkLT>8FU&HV|^i(=+4sHo)bEK2Sn`PnK@r9h=GJ z3%kkf+++XBq4?)=w!*@BxtiOGHhS!Q z&Gc%-T>{IISsL*I^U7aHc2At;qKi8VAXuz}cw&hW!Zf&tPTLPV=b(fG>bSXR>Sq@w$p}Sn~w)QedcNt@(UB7 zl-u-Pw;}|*-)64?rzbbuYVBdVsB}V#BoWztzI3#mh|>hkV6u>ebGSi@!AD4^l5Fo_ zTUB%3Bkv~g{@(epbsnb7AccbP7L%H{UO;3R9hWSt=yW2;`$i9oc)BaRfZF1KR7tr#xb zZ1a~#5*TM4NDlq!-xm7*!jrEFMxAma_m5$41!r?O3~@no)<&T%|M9c5AFaI|m0OFd zeuy18dwob+ZSvP{F1OoT{pM3Tka80yrQTM>IB9Iu>Mo(XF%#ug%2kGCLJVsxbf}X~ zCm;(m?QX}@0sZj}fMKbm1wSLSnRn*V`!_TLbjdgAGLV2W%$Gp^kece3_SwapkPGTQ zB)5=I*<)F^jE3qLj;U{>`%`K?6zCaI@&wFGd%BNJNO-*AzCx^5&F4r5&QDNyEeCv- z88EVVLrnTx;&vL3R`#4$rp~|WwhYH7L-Nc!oFF&5`ZF0~J|8z01gYTd$>O9VI34WW zhjP1thtO&Y5K(V;M7Micr2-l~RUG0vN->+zh86Gw_fyhB?tMJ=ahLq@S%cLbWUv-dOD+k(h6T#|`DgFuN#jRi}spS$>rH6tRl-7owY6Iuqct*|safpH=} z!2F?)m%|)q+QWd(S|utzHl9PQy0|f}@In?4i&D?v8chZ)`g-O?hpzJ~Mm6 zAVULHZ6oPIZ9u`B>y710!CThJ6j1P%DH{6nl5*d4A5ic{O7D*PpDo4!q}+S&|4mH* zdLs5HIdq(4@ZPYn716p$W0TToYqP^Fln|p$y`JL2kFPgN3P_PD!kxjrns&ez&1yV_ zgjiW^Cp8T^6nk2|`uMXL0k4Lj({h85O)08?#5Mfg^6<@HO0+F+0=A`*oyHtY{qQfe zRUJ!K7%R-Rg=mHW68 zikZjb->r)*Y?E_$b7@+bY)O^ zMwtUp;zdnsLbTtDnj>{>W?l0j-8Vxk-x*}xaIWmG$c0{$t?nVuI7bl?v(6`1a z(u=JU|7@2WB(Kx;?tXSZ<^fYDyn z5-Z$iB6K;OsL#NBG`%vgriqrvE8L$Eu~pg289_k^AEkQ?Q0HIcrTYr7Em%TmQx06T z`@)-9@c*mS_EMBei^IgcA6q-w`pCVTK=OY2Um+o@m}jt!Fezy+QHQ#@3Xb)cFEWB0 zjeUj%8Rhk=Vxie{G;b=0cAsJ0^TSG``&nPPDWG*!rjXr!p&5y2h3_M1=3@GB9vjA)19gr?LIfi9kKYd~9z`?;MTQP=0ZFF3i?qo}XX0uZo+qm$IEAg>2IDd_yAMa3bhf zDUIEojLVwFK#v7rud44<+c#DZxBc{Sl3Fy2&!i-AokIzAt$t=peY;>PygW4G)HJd{ z^;&7Yjr6;R-PKw?9?wTMp8W)z2zAWAGPYir?@qurS$UrMo&~bQN83U%4S=XKm3AcY z10|#>`N{du$s1-P>Nhr_8TG}`qrB-m)9KXuNGYBnTH)1f6mS28<9On&vu%%`9sWFi zvGaM5j+a)vPPzx2DZUcByD^BiKy}Ef_F)T_R3Fa%1 zGa9P{f^4hUWs`moMm}|AYBqay?26)Z;O&b2iHS8J-!2=?PWk|)@c+1!l?fv0Ppj>$ z*@Qyjh+5wylV^KBsZo2KjlI#ut9nQ?JSwW8>PW0Qz1~?SOnt1v1cup$3c+T}@g| z;LS|s7I^y9l?`1zh;KPVqpvTES(xE|;V)vF6p{mX9WNPpSdEpP_I9f~ zE`-?i_L{!-c)=v0gX$mSlOzv*wtV)vlRo)h`Yq(Wv>0;On+ls>{M(;)a-=mq9xl+_ zpU%YKEaHRB-R@S()hvV@ZEYiQvhX>5LN(oS{3G9>3QQZQTT}W;CFSm!Y1Sa6wmiKJ z$@!Vy?fDcZOw`WJ-IRM^cgeroTo=1GdcD+ba=q-&E99>=Ki7gXUW5w_DEvf@5xeY! z1HfabEKa2o?PyBy!QE$?W8@~A@_;beOK5tn^pGexVr;A zA_!5N2A;qjHa$GN_T&zCqAr^cug_-md{}Gxr-Y@QmBM-L#a7~~z$z7Ci#f0FR3o-f zSFqgPGQFygARIE6b6*tMIU^QyRL57cZLD`*1izqVk??D%vo|q??xw^b8XAbKP^U-5!MMqQE49L zePF{W_!|NM`u#UY5(U+k zo)*sI7))53l}~_k$Ky9*nM-ZfMIghbJ;@Htlti4S z%^fcoZz3F&pI1A|4v(vpD@<{~g#=d)_X7)#8;~V+Q9=TxT5FCQgW=970(a+xadw>% zw_b%^GHI{9U%0zq-rJyO$}hwFA`Y~5Z8#lCv`A-jqPxIn6~{rCApZ?K!`t-E?JYsPJTc}os$1Cq}GE=5%S8?AlG5w^`V7Y8klKI>dopKxXn2KK+zBeIuR{%a}tupvM7?ihNA?^NZd)C4h3N+ z9GsGRDhPbd3nD2_Bu%5w&Is5e8?ySU2~;{j;TJPqlRW;>e6<9%aXF#GR=o1VsA%oo z(tYVw%`$`WnQnAL@n_-8Z$T4xcuuE}cQ{{2IJgMyw zF8>L4z=%#lUpqE9rWuIGdMt!|_-)+<(@0-`4=*O&{WAaOjON~XHAX-CMkd05cMoxI z>Tj!3YxtGLt73-IGr6U?$>yCY_Ahfa2?;m zJv~7gSuBQvQcdkBUVEH5zJ0q0)(~nyR3U#h&VlYueH4Uf>+$eV(RYX$8|F!x>Kc@t z>Jh@$v!h4z*gJmIfV|XAuj%2NXEW5DLYqiQzWDfJkQuetKDs_$soh-8TQKVH$z$wA z*h~(lqa+Ls(NUS|x!bdX3kd}$n%d$C-!9Ea*W6?xTR}Ok;{R;4Od>g&mEx1**sbit z`#3h+2~`&#zt=`l)0@u7=XQw^4N>Bf%B!jncwgM)OsTW5hRg@K-Di{I5Au+i8ERYa zqD($P!k6C>9~yVCTm~IvHaZBs6*OdJOQq1{yFh^VqIX+T*VxoV3Z(z`x5&Fv8@#wu zxubuus25ghUly1IZP<p`RZb%>H`$`}L4k2`ER~pkU zhEtu$Rx+LZob5~Bz^CSgZJ?>nWm>&t-jlms5_fv@Qq%#a>q(n^vSgY&4#c^yvxLPv zD^UWL`9f)&q0|D9GokGy{BRVu1K~v_O=Rhy{@gHC+?Sp_RZYZ91b>`~SqwjZpWGW6 zHN`@GWi?fwfC&hsRN9heyPy7&Zbtn%{-6EN&caPPgh>67m4RsuUgujH-V;LpCpUKI z3bkLZv>R5-x>3;I`ZX3F+%bmf(WGm7s0%{Zm0;4zg1m=Z30Ij; zlXLW+;oZtIt{8*z@aK7Y%

P9Vd?kjMCP3DxXCWUkJk{Qd=mUP{x=pXzTB zpl)`kYew1Mgx@Yh9Qk-=6h$#IShs7v_A=f;MqN5B$YTL|yLG)Zaou2GMQ&5e;owBe z&h$v?lkR)yU>pdf#dt~RFN936Z$q6nvX~hh57^PALA>kM=G5=G@s7h&nB5dJ49$s_ zK(IfZ>cSjS3ClJ{{!9cbnKn2?@#2u5EwyNSHp^xc=KjJH-m;DS(?-R*f? zj@>!inC^pB6f6*K;JrlbLpl`L!*z&YG{v4#jy)R-&K(;3xBx+zR$LF~PtX(_iGK zGR!aW84QOqHRlQBQ{j(=#OuoF2$E6ahE#ffm(}QqW*h+jeK3(iY{~aqi@U6i?qi3P zMqW@H9&042OD~LWW8kP>8gmMs%cPMLt?LeZ=>m_Rc7kPiG<^@Uo&*rDKI+T_bmrM8{g9Jpmp>y|Mox_G)B3oVBn-Algd zitXO2Z>q?_wSBB zHmhG{=~!h_K>Sn>w)?QSb#=7^2?fP6Z5p``*z%vk0WTkUz&8fIy8FT{-5}}zNc-xj zszbPCea9=bVj=i_!3;JxVrbl<5j4$2c0zOuU(u;iu`2G zb%AjD!HpPg`kPHlSn<`A~{C4-yK}!rlCz?wdMVrMEk=I z{gr4Ky7Sm0T8#Le>I2iXQqWt;e2R%DIsH+$I3r34CI3Kch&V7D*W?_@HsgRI{d9nT z{J3sc{idcZtS_=U;;>gx(TEcCJ<_6tLh-BYWAANM`+YRE#pkgq?H~)+>2_tpO{*@b zyY>`Cfg?D*{sn&XgD#5geov*?SnyoxZkC?QY{c>Pw3O%NeKCDm6-OTdk@?( z$B3sV#7ZcS?-Al{igEBp27{mNM5Ziozb0|)87;foGeA^q)^g30J%KQ0L_BDytcaY% zwv@8cJP}PR#y(rwEZy6eWuagex?euqV6q?ldGCf@aoO)7+OXB$YtDYoKA&&8;lc_* z4NBBUyNbLgDrJuQ#?Nne_-D@BKBG{S3dFTbhq(DUuBu0|Hq3u~+?_c%P>*M4v~oJX zysjvuUbm+vei1DXp>7n9)YM?n$?u0e1j;@wZMy%d3Rloake=k7NJ)6>fY44qZi(zW z-6o}DE%&diwP+f~ox>2Z+ha4-zYkS=OPubrBkfoE=O}>?y$?}MN!^S)E}RrK5p-u5 z2?0OHci&sc39O_Lm-LR#dlKwKIxx8E4ZXFXI7}K>mLzkoTFK5UWC(T*zu1dE_kFHm zL_V8oeCr~T99?36UAng+bnor1fYkW{Ut1Em5Y2J%@hItzvV-YsS&1=MyJ%Mf7qMG~ zUaL|z_AvBNT=PJnGBq+P%!_0vTJV7F_A&?cu*Zq_V5`bL16#+(zcYzcIJi;HeIF^& ziN<)>y~~=^DX_!z%QV1xMinqP#b?W*BwrxX=}ng!`d$Ox-pFpaW;k89>shqae$){n zYa>bTRS;jk%x5r8_wk}6mr_-Vd3KP`5t;G+q0&p`tu$QaPamA~W$xvtXPwGCX-?pt zJanvUn0e?JV7ltg+;F+WZ+E^uH)n2Pfz*VI^-VQXBLCbp%FpHiu=OZ2uVNd~=exv; zlS>7UrR;R&jT?-*4_v#fk(-AThsQd>7dqSzp?&xIEc!F9@m^SU$ebY|=A8_r2!v=N zVYSsTYP@cpC=dLiPb20=Cg8{;@DHIucZpcB{xB?bbE?U3@!XMF^$&r5 zSC8!bXyUek;g2~?>o$4BS3Aa=#`yFfwJ@V9O#IFU-u=9O=pv6N%R4vU0=1Ag0}#Ik>o#9C=n*nTv|t!@IG>Rg46$e$Y`LoRX00GiPDj zVv87~Sz<1hoN^IEBzDEJNmn|{Z)vyC8Xw_tg|#t{=8N$bGxY@bBx*{4yQyVkK35E+ zmwZWL% z%qCN<6eQSw-C6Cl_H9_&qg@x>xpPfQTbm+6q%NjJ{8elJs2Dd5KC1Bf(Hh*vz&WYq z>WM9E`(&%IbOYU4ug>T2>DpY2Fy_?>@sde~!$J4svX?tOaL6d(S}l+Z_aNZ#5fJch zbRW&LC-}jRtH2c~u=xrg=>cl&Pjd9{4}NWkFrY+7F6(z1uODS1+O=1o@wBiE3>Lay zUlu=gk3^ucC+SB*sH^{1O1IhBhhfdUpTF*j*_V(Y(E2*6_rymypkZ^I;jwLHN7m>= zkoAWmG#A#EvE~P^zgk)nUbICaOhXNHa;hs!^r=f58wKniG7KSw=XU-WRAcr0W~L_~ zZs1d;RwBTB)O>2hakHpm!0X;M8CgR@jLm6RPgL2g)X9yE1zJ%bUz0e&PO{SSHk(*}S2v@ym7=d^(DYuY9m6$Y<{h=kJmM!E8Em4ujnoqt2TZHgvI)3x*T33EyBP!3)mmlfw2mpn7h?Zn4`?fHoN zqag>wcs6t|CL^}65zJy*3uWV8kFWN}@Y^zuHJ>u`%$SKNVFxLAJnEmS7B|)-`A|rR z6DYv2Gw3g(O+GVgdv%lBVa%zX+aOca2aBOx(O$oP9n#V8;s z`1tKv&O%`eORipMrChU0=RNz+HeETc2IeRB9x<$f?kDU)xL}SD@8l#;y(^XwRr_oPed$tWaZAKEW&&DFGLBCR z6V2WQjgHWQ?wsVPI$mBL_p=v7U#+#%Zc-cGEly?2!jw-<{T#2u$WiOoVX!Pi>dpV= z34pm05%Oz$WPliU_XG==l-SL_v;$XlmzYH5=;|m}vaOlJO?l_5aB-A(q!sp(TVu*jMy~_y`0BH%5s%_j}fjG7PqX!5`W?$xZ?UXwcLD)#1amG1t46>~rK*`k9G2@+xA zu0}PjlX)yXy1F_ZpE!VOehd%MIDRUhk`d}Pdm(6qYg86bn~40dE!uI;f&ZV!P!dAn z;hkvjpX`BkeG_8gwmeUxsKouVKZy(@QqPzThh_x<6J!=~FSjeC!Q;_5y&hTLaj5fm zNqu^M_E>s=L47TihTwi$Hk_8;Bq++>XwSt=R=(~&j?i9T!GyT;3gO1j&&_A-c5hhM z&dBsMSY3fv@*u}#w=RBOJ5OMFrpJxT3fkpncj4T)e|1>@w&MP7cFnv7#8qbzI0&gO zJ-9RmQvC6p%nOZMdSh8bHqOs3t)M?Eq8f=$_qXrUXpZIPIW3FPg5*R zn`_KSxMDj?EfG=m?x&#b`lUWz9O#YVcw?{@+t_v8v8Snp+2SZ6)jo`IH_yAJ_!8R! z^Y$ec_xd;U&+p!xu3=aCtikObyKX;$mbZ7b+y?l@ZsZZ*7MxTX%ZNU2_O?LX@m!jB z$U|BQ2gWu#=pHfV6{AJ~^2*M^vrK)il^J6(eG+dKw#tZ?yp0t-iHav)k16aWpS*#V zQzh2eeD3~;l9ij4=FtQc2zF!O<39N?u303)<~f|gkIc1mKHR0mP+M<20qY@nVUA8o zk4);h@DTCgw@CEa64NWE+`V!i+mgI)B>SlodnbQ1_k)msr7`|}Jgoxs|9}8!67VN! zB^6n?+V_7ml8;Q}x&`*vZSHjaoU@$33u+%2AlsZz3PiF2y_%K`TDU5|p1A0tRI{6i zszx^1PQn?=YZuFd9+8=5=Nj#XTlKVZBPbk|Ib3_*wnHmv9TZFN=PfLT6sIzantL#i z5pX>1*&pV)+VoH>(Ln15xgpZ;m-AHE2<~hPD!DTzX9&1Ej8kH(WzLa`CDerS1 z*dz1pvzfJr53M>h_;#FqO^PREx-tpeWo^>i=SeXqt;4i3qh)xFwYSy-@vTbL2Rgco z^+-tVJm|Z0%45Od;o-J#=JpNhU2Hl+L`#Sqq2t3Fcva6=Y9)1kc>#dIEGx@Z8rIpW zkp?PXH9lpwk1O4MTM#^uW*Il7!c~!`OASo#durp5T68^!?^67jN?$p^wB>FgLEgt3 z(wGS>`&BG%`AhrT`=PsXCVrK`XDfhO%|6x!N(9NjJ`3FJ75%Ytn5WTFm#8TsMd0s3)WG`1K9_T!!$Y%wzCEoP!vyGs5!NoQ9b4PULsw^6m*U`~|H)T=Ks=-HMKHk@d z1{mn)1gYfB0G}}d!hn{V8kfjFA3=A$Y%v~#Fa);$HXm0q81(wkJt-!}^euN;>|dNg zRCF{GSyC||fJsH8hm~99Psjv^IbB^>A1$JUrvkI-HCul4EzJCltgNhRecV-fEMWEI zxbE|8_EXthHPBs5flHiu!IM=M7<|CeI^*)CPe`9ixrXE=)504R!M(#(RUYp|sE9o|e=CG~6o=kA%!vV_3ZPgVPz;FB8Fvu}Ma9``y@ zsXacrb0&}tNk*SO3T!HRiIvy*F`8Qt)(C~T)Hn@{)ZE1g|K6GIKKSX%1HK0}iFrVW zset$WkFscPFUMRhMU&Zv)QhK47B8!T;(3fUc5@_44%_TD_2x^jdCIOX386U2uBH-E zlLHS+V}T_qmQ8dgy&M*dDWUiC-J=7!jxQRo5a?(PaIR-7fC_36ddgP2=*rWX{cgHf zy8C0E^ogSRq`h-M?u@ai%8-O=w&46Q_WoABa^^(reVhwHumv5K&h;vj?WNapMn>65 zldFU8?pz1g$aS43w~%24fs@eX%$gVG%?UB(z>Ue66u$Ry0g+_9B$=`SXH9fu{`vQ) z#U$a_b%8e`c9xz|x!;Qq3fNH}7N^JQdgY?WwqGsXpN)_bv{Ruq(1UwT>a)s~s@RvpJ{K=A#H z;Fe_Dwz;|cJr1l4=>DXEZ9V-xNW|w1NP+JK4}e3F>_**+oS)HOVB=|?mlJSYa`rX? zHd+%W=PFnG*Ff*{p=CA63T?uNG=ZXNxY(~B%r<}Qld7WhQluw%mjDvgQ=?{p!4DT- zn`koYi69Yr_I@(W%3cB@#%H*F#Xg$t{wvD9*@ljUu z_0v3P29wW?DFw-z5iLB*$-$*-WMA?1R>koe>k{78-j1Bt3y1d}*gC9qYVKnW?eE^5 zyv~F)m!0ZsEsyayz2ROd-z;d69Rp^LP8^X3Sqz8sIa{cd`~@r&-jxe|>q5@LBzEb#Y19LhU*n zKB(%>KEZAW4;Nm_9Tb)nwMMt(wEp;VxieEGmSN(oLr0IspUe;*4w?v$AmV(i*F*#% zU{$Gl48jTHUG6fu7oI6T$MX}D%2)2#NbC5Z>xIyT;*0jisz8Y+GFXU1rPb8wDE;+FmJew*=MzzFFg;CUw0ydj29WBhxc|gcp5$NMJ=Hpd{=t2 zaQrA(6cEGD{kiAA&j({tkkg@TgFFZXkuj;6Zrv9$rvxfVr8oV#E|5sC z**4GwEiwF0wqj;cRpq^*WukFtd;8DYvd0m{42&meFE@QFUcxs?jjnAGy%nFGfv2|IBCxCkLmli1GQ{16ljilDts+WHDMAp`gYklHtv|duD`LN#u_c;LXRcjP}9S+M_-_~sn$HXYfxcb566h7emtY?`Ca zlxktJ-Scs?E1-t->^Bvhq`3RTbXbTJo|_5rhXRR{_FSuxLI6x=NvyK@eA|4)w&T6` zGE0@Y)zZPC7u#h$wbE3}5`)Fi5O0Sqrm^=d5H)T{r)qH-4iKEF>8yl@6SZAW2%daU z2F!v9Jm(|Ja)~^1%enD`-~SXioVZtOv8iE($iBLs9dmg5WwSl0Gv|>f;O#Bh?}kBU zVDLuNMEI)9_Nw`9G*Kb(%Ijr4k1J2rCI$T>-DdOzLPC^$Z81WO&6+drE`y{2{TDl7 z-0Gv&Sth*rWMFn$h1VONva!gN#57LbbX`bnwz|>vxEE1@gq)P&0;?xogTjndvk=4T zwv>(PH}eLCw$AR53*+#v9yEM#Xg1%clAYrKo!sYOae|<`KLB^^Q>GdIu13>(!AJ0eCDVcO#w)AuDoA?wCS43 zqe4wh!Zo*)rbZr;RYzjz3KmO3ea4c zOYjkvS^}D@UDH7hKyoFs!O4^i=h!$fQ%?!AO*|raAyNzx@X}&r__{UJ#NVu2B||9X zYB!k?nx5P+kgWH)yDw5R*TF=;s#jg?=aovBmt;j{>E?!Z{gYRE)S#5?uUU})CW49K zz9SCoB=uJB02ULiQk4SLQ4$9{u7(i>T%sMV$@L^)ic1U zf`;|6E2o`=fq`yWV4G4ik44Er!E!`gJDFE&#(g(8Px=%KLvMAcg(5$fmU^M8WS~D_ zTXQk8xVUp>yzcqh9|!JXl?HFhF;w)O)dLM{maG+cxLwjIR+tfUuOGBHtjW+?SZqyK zV@!|TrWN)%&6Ig?l5I_EYUZ>U?<&1$q2C=1bsE+zZ5!>9REL)(SnoN%J0G9cZ6P(V z8?Pc3(yc&j@wpXLh^C!Od*sf$iN3jR*Wl@q-{0N$7|>>MGedYY(Zj6uR;~(pd3pKp z1`@jF{Np~cxO0si9s310G-NZVDE?9f|9jv>>L``YdPM3Ho8>fq|DMhcP%|{-iz|^M z^t4OD#&8yroh5FKKq?|mUyOYFOQbi zB+++{JF1wvJwdWgPhLUZTjyQcLSy9GowyVW_TlK>(KKMknlx|+3ZX=W6*}QJQMHFMJ2qK zGUgrBf6G& zRF>WyFAzf%F-#pG@O40yu5;}tN2W{mkOzYGYY%{hl2Vjcr=XJ@^wQ^aG(07n0G48= z2aK?PO2xK5@tFAaO;(6joeh8DoD)l2lMv1!t-^O%w7HjsVAB0XT|1Q$CE6p>ljoEJ zDeXTZsnqDCPhJooPg(69W0Bjj@Uy+g^Kyer2j!ZdR(IT_@Y@>>LY~UE>4El#&x1HC zLZLP@h}T`A-=Qzm6{oo;nlF5iP{zNoltU#L4G;*t7G0o7|4v9Za%F_D?eCRO40 zRdsjnVIo)6HwwPgB%uegIr1HA27=HpZ5v}^<38bxv5*JIBh7CuLBWsJ7kLkxo?^h4 zmo^HV8KTGaw8RbFhE9JZp)VPyv5On_{=-sJDNWB~UHv;a5pky`m#9B*`)M}tD{$@Q zy-(WBZ*BzT1T$J9_eHzwiqs zO@j~tRN=F?RBYYt;qAiA*EjQJU-aG*5YlqKoy)<{ustVK#x;*_nw%(%$W}gFeb}k| z{xNIe+9sOf(v?W*+$V~|Ca=ZD5zdp~uJL*?WRCepal)6AXZgabm{{*R1W#RFQL>J+ zSWp?6B@Rj^akYaF4%O3Lgt;}(l-y*I*?c@}8|X`=O}uqqIgZCOj)b`-ZWNH;rG--V!F=xE+l%5rW2982P63Y|VvooH6>Unx7l}Z~?jty$v&v z-h8ud)i=Vy<^3)WT-dnzrb}5@rwwTP!zAAI1fk>7z$&yVn??|DJu#DBw{Mt{ls?U@ zDrI6y2oLR7k#RrXQc+cfj?!XORL_*{+HDEBgjv45m0ICWz75B-8>Wvi)N(VNyZO)% zX1iWx;e0Fq^rF7uwbUh_R@wT5e6=b6@%}84Q3u$bI)@l*(X=5_N)cFXG1Pw2f{7Vj z^dK04fvjwW>RVlu7!w4{T0abzCxD-}(y+a0q!Dv8`n&a`Mda7X4d7kJ@2_$n*E_{| zT{+SRJo6>#uFZCzbkLG#W~U*sJyeL(W8*lyIx{ff#y3t+RUNSRvA!DJxyCrft19*u zc09inMH1!uszFXgO5AD}yI1}kyq8=A#Y<`Q-3v@g=3lvP*gIPeFN~)jQ=Twx&e5iv za`~FoBHXdw6~{*-=qvQpZ2hXyei1<;oGi=|mfsxU*sH@}7V@o_FK2p?q-|)>98YAT zT*Ilz&Er#vTy1Re?qD&Wt26D#1Uz0>*i7Uh(=Hn2eBhEd{>aG4T8D|p%Q}?0%2Wwl zR^Cabf5nYXh$E9uVB5rsp4P|W6fDc^9E$ZMurI7@U#wJ5W(^SNVXUr!0z+4HSR}r^ zp96w}+x^=#D}s}XMdcj9#sCL&RX11C<5?nWC^ z0XVAQx2w%j^yAro{U_7?y4G=nJBG@Objb>#>5KLHkTa4`bI=Ph*?>XCr#>hqcYhd! zx{pTU)$-TRrM#0c_d&ANIDps`px3KBL5R;bsnn2cm^;`H$xd#JL%jvRU?)q>RsncR z)S7(iedg%RZ1(EV%j*gjcct&6v$Q{>+K#_P)2c2OZh!W~Qj2$78V@Nr~UN z*?&hP0I{h65G|c`Qu)6xD@i=c8lCP6F-_wqBg}RjiXDF2`?ZLAZ{@(u^vmIgaAEiP z$Wx7@Dl08k3ofLv)U;4F4X)h6W}|*fvpvSQR4FB5jGB}KkdD(-FXNw5_>$)c<3QGM zXLoiwFLFRj(*aieEma2AH2gl)E&21%NDXpW742`%BlPhZBLmSDE6sL6Amz|#`%l}y zTh;u{?~CM90B4Pg6P+pfud^oLJrhb9^6X8YW`w!;8JTXV>_zQ0V*RNvk>CZ^5Qb^5 zZ_om~w56UNxUq7_>L=ohD{OS=>awWw%d$p5&j0g2#o_=NCr(a#id3Rn>!|7|#)g(8 zO11L)OGE(3aLW{5@qn`Z7k5LBC)hKS;qgTZS5Z4`#f?m}HaZj(Zq!Q$O z=ug}DUhV+<+N;Nyj!I#q|v|5jS1SBvi@@*@*C0tBBc#{Pn7BIJF zLL_f5(JzFBk!DVM-JRUyb-1BeyMsTZG!IGn-agU!Y8TEjZwMw8zV2>tj*=nEV~3C; z@q6-zCJR02pRVfSFO};o_r7#?2`zs0EEl)?*rEs=^C#H+y+{CTU5fZUx}=fJJ>eJM z>*pxb3U1piw}||R{epV0qau3&>$70s8|#rA4ELDp@iLwCZ5!dMd)!!90_^T=XIBLV zxy)nA;D)m=1nM=@IErcT_kNbwNBbtV&L^NMGM$E}gz(igqrQg6_@rTJLzWX&?y7z# z!Oa|xZ1`NixwB2A@H!yeQkC9CvF`;Z2ClDb3Wx#9Oi;JR_^eRX-tcs%;Q8v5dXauT z?qH(;VcZdWK;yn;Sv9=nzTVA@vxG66wt`p1+|w4pEh5 zcA-UWn}BWiX+QR7>tDqm|G{r7-O&}acXY+yqoZVt0*fdo9|EMd(NTT<$z~aGIBV>t zD165|nYa^ct8a}yb^_1}K>VtNYg&^j0_#DIJj&w^uc6qpd^JfavDwx7dJGGf;liC; z`^$?`6ckO28b6_<8o+y%qd~=DsL>aZSoKvuPu7T2k(56O0M!K*E4N7xZ`RNN*?0j+ z)7AB-<&a2j=O+GO^03Vzs^^}WDp{9BgOFBQGTcPr15h&~N5LWfuXX%qjiUexm+w-V zUqWL3q#4a(-V3@P|2#YtV+-Vjd1+IMilhS0Co4STiB&3Lj_o$OxBd!Y?Pj)GO+;8H z+l9R(-Hd}@inJS1_F*r%Z$GoBH`f96jHszCm$rTdC%7509qrSyOr-{mA1$k_3Xdnc z>8fB3m2w`Qeg`+p#{m;sdY@|%<5BUH)P%Pv;-%-2OZptwQ+@3pvb36(=IuIWR%$Pdjp@phs>|@v40b8i5&%x##G>dcG*|9hi&X*t!-6v;)ebn{S9B5sMCqkg7%2`xw;PkX7wYsY+-xo0pkB6!6+r*a1<6d^1=;%8`WSC&E+gW~Y+4^UevNyejYs0=G5S?be;MimyJE3O%swXC7-iSW2 z4C(JOB^Y9;H^J`SPoK*95DuR1WIMK&FMs`d)Lg6rI&n@w*<)WR<2d)<^53VvE8qR|(sKpj4{Scaqmouj1cjK}zVHKIccqWQSojvO)m2Ig!3X8* z>r&|zp~=>;2)rdEcY=@@ECegpTO-E|lIEy(Ng^CzdqfNjFz%jka9c_+lA==N6Fwjx zHSJhsnkvx2B;(hpnXPa4ep9|;@hS?g`}z$E$rkC5Yq#&u^KSR;W?nZb%~QS=|Gpfj z!w&BG4>*LaJcHA0y~1$uMd}p#Wb^B1@@3Z7NP0rP2834y5y52Ik79k4ufJ~2h(kZu zJ0^(gc(nO9&TDOOT5G*V562+;5KOiy3-NlqcYLTBB&x~QRyV4JFf+R#zijNE-cZQ6 z^36%vW@Zb-<;-A`i-)0I_!l@?m-z?3c*(4$L{E)8VFFATpVO1t#$VE{`+PkC5Y1s^ zIo|FJJtp_I8!lY0tb=vsGAe2(muCiWg_I35QI;(+9JzyH6?s7O7FiGLi{)X%@eA&n z=j-Kfy{9uk#o=^o`iJ{J;G=X=?Ri z?9OR3JOABrAJ7O!#W%IirNk}_Xwa&gXr()y3x&q%xC0OL_ob)M=BmpMDGMgne84yR zA3{2Y5W!k%0SmtDn4MjkRLB+qdni>wWk~~O2 zp$_E=4u>IEG2t^K5+_$Rx>#BqTRwC~wGL2cDbs#K)p9Mm67+`2hY56huJs{#TLsij%5>?N2!$7Cxzu7kz4Kh{9vs!i6_)QB zxzO<}vIql@g)=sx80Al>1pCI%%*;F|O}rolP)F+Mjs{H9%$BA&T8`zoY|k!_vqf8g z%gWd4bD_yLfbUdENHN9j!t8}f6m)S0Yuhe;8k8+FBkbb=0lp;FPO- z1soe?4zVDHPSub4ci`$u3Fa zDtk6>H=W6O;zh^uDA|TCn~3iE-qrb)G)1_{Z-i#Z&V<*zTDHgeUBy4m{7c0V1$vDg zfcE6}WuIML0^<%03~181CHCd1!5u=IcoQRj>VNelKHIn${H|$b8ON$kcV27$ioflL zn^&BSgYyJW2b{z6K$iiKEX=z%ukM|<8*kP3FOR|RBnQcWwBXcCfJ~J)DD2n@_#)Fi zcZ;14_V#@|$>3eZbD{!$MT}{VY8yttVD}aQ9#~#Z5H~3*$^K$3wK8b=#Y}Z9ct%%j zWxV=?Y)<2JtfLNIb$12sZN+p~%8;_CuJA{J>Bpw{9#l^~O#Fjn?!e0n;YqO@it6g( zj317`(dBNf+iIvS%zEOD+vzMyp{AmydA|%mvVP=o)mYKxueJk4EiDgKTX9<@4nb!D zG)E+RT<_vy)}g6bG9s#erGnPw&o*ZmX z9AbhMU<0&e@c811%RUyA5(9ntXR+vIR&mcInsVe>P0lYh6!(4(XHHyhvh+&1?$yj= zJDj905wDLGA;IGt@Fe&OX^s6vzfV@4-9#&f60I+FTiI=U?k?TTHH8tahjONh*qwsv zJ@D?s&VNRPx@~DMSblG{kkjn_y?^q%Uph9 ze9#s4pktH1#G?-SIR{(&vQ$sJkRgUYSai{$8~@L77=15zzApz~N-hLO$t5oFi_HY+ z<0$GoU`MSFFh{?F2|9H|9)Wpj)J0mPdKDKf8PgZrWFAt4>k4E-p&6mhBx4RMGj(V1 zQXC+AM+y;|t7o;*KBb|gqI?1C2ss1T^Q)st3m%6(@+(H<44`14w!uVF{j?h*s3j)x zO^WT_xYZP56B3q$|5GMt^C&HNxh9O*VeyE5MVZ@URqpHpnQnRhzhc3X&c6Q#B>4I= zxedXGTp8^5K1fzr;9-+j&JpZ zTroi{*IWassFEuT>O+~g_rC7TXt&7tx%{1*KBk9d|F5~}GL~9;-QRH*0Eik8Nw&8i z$0lmLqtyai#EC&7*JJR*gf&_8TDd{qh!d0P?hWt6Rov}5oz2`l0?<{{tE`Lw*Bm}l zu6q59h=|GY(&bs888$XasOD292|#2}4y4%4NE+U)KUtL{2%o|rHX8X*vnWA9ruhR> zeAqgDz8wB$tb_?*Chl=Hdmj#?LT?nXB^mixk2zb4b9Bjf}4HD1?CM^^)x}7+68#VeVqP+h#Lcb9b_|ZpNeO{q6 zHkV(~*-GSlK|)(cYA>S%{v)^omWw%5saD3GO+O zLU4*&Y^CpQ*z*Iq(fCamUgw1z zO$v|wy{*99z#P~CAP8Apg9v|Ruw38R0UMd_UBFTv65P5OLVbdF1eIFE z(OwyVMWp%@dquipXM3W-?IxB_v^Zbss&_V8vz?XK)~dChf_y_KP4}F#A|mGS7&kWF zG73D6>+Xw(vSpbwRl$T^=!;hKO}e_B_A(fBZ(6h$!kf#C%JY2OY^#VkhVu6>I@m3o zryJYIytd@etjCejVk#X*k`ZyxEKt+w|3m-#2ae(b{Z#A!U2cI*mx(y>xddz|ZeLP_ z_&_nAjc>(~ok`MyHkP)3>JfiKEgjwfzvgmD!%vS_&ACZFy7VC-cYZDno7@Yifup8_ zRV+Y)MLLNqPoi$Iy7=~`W=hi`SCK&&GEjeSX3fFz3`mtz4mQ5|al0fNYqtXsYHje{ zX5F*`fXXo2-#bz11ClivI@?p0f?RAeOo9i8P4WP8CBnjYgfv+_j$cqoNBFc6EC^#` zXIIxBYdRVft}WDdGJu8z*MzgZV4kj(CVc6RJibiwF6aATKb}#{{NQYVzZ%}Z*}p%c z2&IxoQVR8s-e+b9zoxzy-;bC>pXFfd?PHRF*DQkvobCz5$_OM&k%IHh+WU`<5TwM|$m#wEc@=Nml2dPxH*vE`rIUmtkjy4Twn)L=$540QDT$1<|2M?7Or9^%O21gLkMZ=GEZESDT+jAa0*>4fmg{x$7~RJEdaC$A#--VszAR zqI+W(#bs3`Wc1Cnf5nWi9{}(cyq6QNDd)}OTKLW)j=rYIF=9(6yu=W5xCk*yIK!6

Y{eMyE`hm zlDjP6D}!P;+bKWf`-7l}Mp5{t>|29=jqTbDJhGARC_Y>?Ets~=t7mhdgHXsgZL~ZR z@9*6d;Dk3WF8zf6O%2e=-?2K0;Gj_P-)Dc>BOrBoy8_=t!$RGMzm#Y|f;GiNM22Xg zUdGFisS?IyKBwg#e`XS?U<+vt7&qjeL?JHXd6h-KPit3taylOlbZq}r7|%>eM~yph z6xZ~O%Fshvx5KwHRDAxWze8-BR1h>@ES>C7)XXvP7EBy|Gl(gPy25{ih5mEht8v9* zmai0@lv|<3d)J$E_yS&x8^?z55~keMxl9{;gJ0*oQ?9&oDdxMeQPD-VHsj@fLb5R~ zeS9rMh{pRfo00fw5?4nsvCsFFLwL^u{Qbg^r7340y8*EEdh3%ZUE9y`bLn_QID}>2 zC%k{$HDuTAJ9N13Q~Pc`icRN26IJA)B(0lLx2&%#w;Pla%#@F-uE$Q=J%E&@$w-{eyf{V{6y6}IXbX|3oH_%KXKNcT&pufl+tqtdC6cYhmn%YJyrFx${fb12289ZSResNT( z{qW4C2ui{Tfn+c?;9ai~u~$-F&m@{yB9+_5mpvWxV(WG%N0+&D7pdlU8$zoU4{;m8 z6PG&qLou60-4m9RQB;&9@@DIaW@ezl1FDmx_JD@9-L(vIU4&Cm8YM^%P>F3;=R(U~3#32TpZ6VC(5P%ytcSEVc0 zt&i3n`UM30P1bD^%6DKJ0#hGgvCoe;c}|jC#W!^v7p`b+T@=`)WNUUoYGf`TbO+q$ zVEKbUdXt@nkMINl;lDKdoh8!(w%#Q{d_gAM)%ql)%`D6NUwT=si$J>TYDHSg*8_*V z7I!5F|KMk)^*#;0o1==H8+W6g3G4Lspl9Yb{S(&NfCqrmc~x;!Fw0+xeGC`FH`~`d zh9=MdLe4arrukHVm?3(Et05YC-iO0)^J^m_K2o13J*j((kUajJnNMehp<%sKj-!=# zdV|yI6A*VM=G`axm#&_VyJ0zgw^02gbI=}sttm3P(s8ZM5-dk!M}pMylt<&J+rWI!?`{eJ#gcqX^r zZR0z2+>+89;7w>QDtnjOSF8k%HDlKokyl!?Ho=u+tN~dI@cQY`b zIR^kHmu&}w)KYXgx!W;)&rfudg>?AZ^K+wW`o}>&CPF@GD=kpB3%&hr*`QM2zb0dt>TF4@tU zuluoqX3Badbg#yMB&ofteHrRwCq^e|>_Z@r(3BRkRbWQGMZd(C_1cMxyyX9!8$QU%h$$f3P$h5O7;2xV3*|Gi#Rp^%FQ8{ZKw2T5NjJWhdyYfwBuML~~!o4473u3iOU06v5A_0P2Fi8iXJLkRR)aXwNM!q=dh{{(T+76-JpDj=) z5HdscIXl9cnJ?tlnR5jJWzhTIlI)gt#e%W1aRW}U1VaIRlyP4@Oa3g%*G!x1y4mqe z+M9_Bc0lZ1f-WhrKr@=tCj0_hQHZ->=n?GPZKkku<>sRpWQ&gENgkhtdnBYJ!+@t2IsrQpGp^3)Pxr}ct8oN9`4o2g7#283 zAZhXL7NX(*mgOa1WJWuPVEVl@($I12zt%`PTk7N|E&iiwCe}m`LMMtY$yc>^QhBp#hBux32Md6d zi&tr}3}M!fF)G)%MyhR51eu}mXdtPE%ik4{Lp8E9h;M{iBh=YsH@ z;B@M$@N5cAC%BxNOaW0PjY;HxSAz}26~ut|$|e3i-|wh^e^u&C7-Y($NJ>pGidbtC2KP|?iP!~DS1k-Spu zn9rr$_MB~{X=P=zuuZ?Bi`?@;1-kd!CsWQl8S?@TC|!hXw({O~^gyY0e&guG`wk=p z`H2WK9&X#y@Kj%oIdcGqp}H1~W_Wu7I>#u%agvney|&~!%N~gR;JeL&jSB90NU?70 z;?`f(1o{fUUW0Q!Ta4pNG&YFK?!4jl<<7FYX{gtGu!Z5u{VpWUlb|AbNLb4Mq3bMw z;>x0Rod5~$Bsc_j2<{dA?}80VWm$CJ}Fu} z6_>)_J6--W$^Kpnwo(9Fn1Orjcjtd?oCtKXg~2SQCld>%64Xb>e=0OeNzodmDN&g6 z5|XI&7G5zc5q-RCJc*`%qluziSIRVc3WeWS{?m^p7O00SICneqc*u6h1>m)gC0x+H zu{+$Y(=FBB+=6+N7zLQ_;5FLx1*2b1!50I7vbdeiN>~eY&Y}-EcJjVPkSh|Siq56l z6YygJEO=7=n(E9uS}-gl5v{j3`v|@APtw(S*+^ge`%%A1r5HSW9#$Z%iFo$!`drD9 zeG;Dtpb`OTE<;)#FSgw6%}xBQ{RA~_ZF$C zKh^u-Re{73xpa+E)u0)wiwn#?i)C?=x!Y*O zK#f$AAIQ6v%uEIX#bVF$G`D=RZ2F}~XYGDH80C+grJlkS4Q-iLunixRWJdArgOn*S zlW2az_(e{Nf`IlGbJZ4gm$*GRU~Bro@C@Ug24gthy}gYrN2|weT&%&+yt0K-Gj_P( z2BOmcc8{8GIiNEQp2`)_{#W0Y7p(gQqSx6baiP_ zQB~AC{OnRUF*&5 zB!Bfj{Ivj3G6RbBn=xWa6s0pnj2zuB$(Uh647T|_9?|Frq+8NWQ{%-J8rHL-p#C1w z+%i6ALaR{RqO-ZVg(!ARmqjw`(mLXwn%sAV+u)kLMK$aewlWR>$xVIt26L*b-|_;t z5JZ_k{Y~ltGn#<2;fjo~E)iSH27aeQg@(ylNNF8}o$Za|vJZNmcOZ!0dkP0f=3XyK zik25)FkRTOE+6-!%bpt+E3`B+Ay{f(=M2O+g(4IO=gDO7*b}~;GWULTmnv1X?7(rF z@-Irl-SS%~4O5c2YU^2mfOEx_o?pyrh6q>elPB1TEo&QJFmsLJy_?0lUK)rA2n_)S z4xE$4yzm-7Hzk?fuc@|6`$NGJxi^4rdJOeMmAmc$=YYRPVLA(%wS(<PG&>7Su#-HU3SfoF+?@ui&4gD6oB95%IDSoQA}b>M9x>oa?zc zzLV{ItrAuTwh;F2y<3lZWwn9Mbo9#iJ8`zCG#3(vLUc%wo_3n=t09lNWd#p=@Dy&F`!!wSvgGZ$>d4Ou0v=t6 zWjyZJRieCk;F=@*HqQz28BTk!-GtF-1G`d+o4cj&REdA-*O-&x7Eyo<# z-m+ohI)rx@FEIQcgyzj1BcSEl;Qv3t5EXepXjsl(vpc3Wiau`h!i@3i zjFz0FdJ#tEzXTs{SopLQe$3#1&E>*c7Dli(#Isco+SKr=b3lYgp!*IyOcl_2XU#F8r*?Q(==McqxkR~@UAR=c)ET|qL zEvwYTh3w1plw5T@xi&9nK#hUSh&z1$4#>rv6m93GzFW}w{$&}fDJ zwpo1LHnVetVBo!EKrm}A91<%|beb1EJ$d2>yIg9=dETnrpQ!<;n4k$PJo%W}O8F9w zP8Z0kT`Xg%_5PyKs1Gq*Tw)znBmZ~-B#tEY?wm{oNRIN0;*DPnbiO{~#Zt)>bYMXHmr3nW?>DZvcqKleAxKnALcSyK4E61C|P1*IWDF765#YU*HdvZD%k{o-o{Y%l&25nwm zEnFSPP}~xB=3cz#-`mM$zF5^`+_|w1-B3Ha<{vkGl~uMOW5&Jr zr_PDFAD$|R2YP+nIBA&)RKAY*xrA4385^pzt7}RqaR5U*l8`SDBkjdA`qqb3?NoZu ziA}-Rfs2#D?y;9g7hlH{q4T#z+gB9LmYt`c8W=*k9z^N*@v3?TM*yLS)++EJozdq% zin(Ex@Q$)MwHn|5x_qZ|?Vm%9(g8uoO_zt-2DUK`KESxXv8H+h;A$U52fg?dVG`lh z18>dbZZ5U~tp`lkP66=j;1HeWik>JC@NFE{J*F}PY85$Me%PJ`y*S~#W)9V6ID~{| zo>e!15rrDKqIX9F5QOw~?o_ibI{_~Y{p>zG)_feIh3m3-r-|qgFDVbG`mbO%R#45F zkAYVr(0$;x0vqt?@dRaUh}~xV)`Nrs+H^xe4-y2E>7|Vo)-_v8XMdAAuO7~;vDeqa zn!`@n!|SfrBpd5ymVf`j?6~(f@yp(0Hc!I)KZ<=sn9ap|eF1gARw4a`_val=eML`3Pa2M}Gj9B5+c&*gncV^^UlrySI2L z4QICEhMAzeiOY0w@;4Df2zFS2_PR%0@VpVMvoI&S11qs2#lVLl=%W)H2e%>Nvnbd6 z9F!WS2t-&FD-~HknKBE=J5FFFKqKQb-urW&h%gTl*YRnDyq0HOoIm~>2Bo8-$Z~~# zr~Q5QY~-s_WfClogM!X}nn4yJ+Kn`MP&iFHox@`U5*X9AD_b;Z*Z^t- zAXxtqbQo^l8Bt=f05_P`bbmC5)h&p*1PXtn@_ z5sz5pA8Dk3%e!=2oQdOVD#n)HXutpLat;{2@nF*rim7aq11=f`y)fe{2=dYOE-?@AxZ?kf&+Y1Ns66^Jl7IT@eYSG&Kv%BL)bW0j}0< z`oHWD__z9kLju}=U{VkR#eG7Qi8f^X4}kyMJpaXeS0ucE;O7USEvwZSkzmH_Zp_JY zzEpl>F9lpo*|eT&gTWZV5GUFMwl}{Vw9Xpj{kj;+hntm$5<)kik=n;PX8lA5xcN=`Gq&=DT%iJx8 zSx0EX?YR5AY~%ydmRb_vc%ZM-rY$g~`FuddZq(^KX*mlM^|l$29oS#?%au8lzh9=% zH36{c$`1su&MzdH zio@dotJ1{$(Jx$X13cNpuI>Pa0<}1;w|gqRCBzS1VYd=hZE1oFS(@#62xM4?z`pTQ zNF&LUCFxoC)zzysHF*mA+om9-X4pV}v%$1)^pn>AQI}r^#MW9a-0Ms_z(n=&%}X68 z6@;>A@39@;k5l#f??0p$qplvSi6FC+Mn!ZjFB5P!G#FR}<+$>VL@?47YxA<0Eg&_q zS%^Zpbg~-HjUU7-Mk)S~(soc&OVCFFhv8iAcTEi=9vsHXxV-wuMc_Yzk;G3sP}nbe zTTfrBI~-)s^WR^u$Z;+XUA;a_zyFP;HfF4qnBS8^{o+y;kN0bb`$ZFMGi~8%go`{p zCqtY41B&IYDUF+m^?wWq_P}+<8D>S&JM>uBJxQi+nAlUQv#T!KKVhXjtO~wN<}1+{ zyw`^$uPc$zg7fG{Q!iq}i4fDKblG@3Js&Y%Y(xZ1hTa@~suQ`tQg_H2JfED|+vsI< zStDj?*db8LV|RHfQESE`$(3O)?DFM7(mQ9&{cL5Fr;4@kZ(G!VfCfPAxB=Nq%r&#X zHXzJxw;+@A?(|V|8vgnDS;`%cM3=#8zvBlGQNMih^lg}6~{IqCie?a{MwE*##$D;~^wp^;( zh@(fj0IoR)mmm@D9Av3ruovRj%S5)WFd^7V6ux~K+&+UoH@K#d5{ObL9!ahGU zNlJ(ctAi+&6W0ufdk$5>OtnddmOS7)0Xw&wD-jOt6%Ow2@~_GKAjzihS!ep@mq_T0 zp!vE3TIs0q!<$REQjyKAzM_fxiqdM^DU@z@Rw@aV+>%{F!jj^A10@Do4o+@NCF%cE z2mde&KzJ7StF}*%+$5zAi2TNd(=5Nc((-#_i4ZX`T4I3Ha2U7a7oB zYP;N)^DHjOH)S$J_KRc4zUGcdqWCP9sz7Uwr?-Y@WL`Xud8N%l?szbjk4YY7S6ShN z2k#apoy?wA=>*YxbwqYtDsuC*p>%R`C7-G}$YwddrL!>_VGi>J|E*o-sQcCZi_di_=;)4y7 zgLAFpQu+7_@20I<zN zokZ(+oV0d_D#IZuXJF6O*M{3>q+~anCb~=L67y@_Ak9Mcan4Y`hFW!1jy=oQ+n5m@ zu;^_7{i>$?Esc>c(iLLjaam7#LrCR=e>`D3WpbFPUg>=_TDqcS$&Mu3f9`Cys0t=2 z`U>ZEkpOO!-T{4+I2|DYmXYz*Jo6$u+?59O&f%Uggnqwf2>?8Y_3ll+23W4 z>5FJF*6O3c>f|1jDC@ukVnr&3vbt;K9Od{E-$Y|V9LdP!i!W*$1e~z5`5)@YGM?nZ!K={b~Rw z0^hiSwb&h9m3)z_=E0RIK;;9h%!pZTm%{I{^FH15x{oxAJuzb(gW_cxwt;?0S>wa` zT~2EhYL$X-PkKF{51Wn)kqK)Yml`wd(!`?2Oi8!eHr^*>xm`o(XyDeEO84Y_|IqcG zc9;7=Er!NwyAPFGlgzCm)b)@R(6s)jpj{~!-6&nC51e~)`&UVnkM=f~XMT2}{I}16 z^?!U080GMXX>3;OPgQTgG+1+wy3UcPC78oWh)(MDlD^^KI`AwiVe2J1UP{Vng_x{8 z0H4AhPN9L8GOctIMO-}M=<`?f32aLEkXOm@MHh1 zn}^~n%nVHNK>$nf_%MN@#wj zNbI|={mW>?z!Zl;+OGSO2j4P1Py^}cyb;OD^;Q2!m(o@`jcV1&Tdx&`iHQiw44kMw zNg6gfe5&f9Y?Kgo%gqnn>a@k=WTG&n5twgR?knW`ar%juB~DLI$}}5(s5{EA0c9k} zwvREZiWOhH9}DzVLjnD*=8@T|L9E~!TN$9n2HGrF7t?49sQSgTA8dQRw{+IiOCq>M z%k$Ny|3FD8WyH68%*)B8w&L#MJiUz-(RPh}zy3b`KzElA%XoS;CNdd8#Z@CMRJRxD zpf@ssnelpJ>Lhccy$xH1L5qdWT}e5jUO9gij$md=GHz8+l(ma7iJMO?0lQxC7P@F0 z>rs=YJqp1tY?F6YX2T|PYdGjC2~&2*Kd19~upD(62cK=T%HIM4`+yEGCp@vaeAi`^ z`No9>@WB+dX6Krg5Iw_8Tn92&zUP~!G^rKj->nguFkT9~IEDb@>Gk~pK4Z)@f{I0w zew+pxI>ITuj)69NS^^*|^+UwXEe$-JuVHpOoFar8Nh9OtKd5@*Q{2zd@-J(!M6UNX|+`CifNSMbBWBA){^T{fJ`Skf~!CH)R%KGB@{KsD9>wW+t{k{iwD%o0| zzjJfeSfaqpBWx`_u_~u{Ow)=6sw0#i>U7(%_ADXo_Y`0jUqj@E*z;ht&TV@UqcN9t zc~9T!w9pPdtu!GrN6`DWACj#~DRZ$QZOzYhHGPX}tk}YJH2aQ-nqX4U*Doc8G}mdx z!O=<24e!{%In6@iAj$aBvprH|jZr$#td((O@@ZTfWVd0Rjt8Nb1m89tp-X;E{G7G+ zdCN&;!`cTSi5*XCm)jQqN`KhV{!-x8jD}wF#AU?ummpST7uC47=V_j5v=p9ogFsyV z@9W{Lzc@;KD(epAH3?TvoM4;hmkm#Ue=LU*PvHU$1Y0^b;|I#XC9TcI`@v3IfIGc_vp=te_oObK#;BqLfmb{ zBt)4Bt3Mvv=R1@ACNj^GkrS0`3y`z zD;s13P6C{Bes&-VGs1^D+HZQ-T+Vqp;t!v>_QCJ-9aW$czuxF*7x&Axk# zuwk8RyQCPTwPKd%%an+L-@UA{zL7GmItQfYIRan^3D-lhnGL*)TZ2H+6JO?-Tx>qxpGs7(o_}jR6IC zpfv31t^3uSQBRFZN|&<8zPzDhX4B%>*tuA^3HPP*2cwx%t(&U_t56TUr)d=ji%+84 zt_DTduU%6rt7MnP#sc0y;#YJH11E)=+jj1#{n9x1*>0w(_K@w zVg#KF{7{Ztu|tKwtkD%vT<3Hzrln`MCHT$hDthx9J5@g@@vl%g z^e;VraQsLJB_!+K+Q09L(AK<)wdo@3jE(y000HjPjxQmECU%Fk@i6BDQHqO6sfx## zT!*m4CG5e>-ry3)dBNh%8?-RR0$Wc*kv~@=3aJZc*nNo)Mx(H_39hw}UF<1Zumur0 z_fvfCwS}UMfBBO|$nyH!I^Tr-yRa~Bm@jy;A?(+gn4)`6$nr1M>dB_`Q9CNwxPBB< zq%!q)PtCrnrA{3m!-SmFRnYqBWRS$0lVws6LJJ>>G+#J7C2thPwKplqY`rP~%lf05 zYKoIJq|b?A!vNX9u$QVhWiU64OQz5+)!4r|DA!_APd!cEEDAIbLxV_>GWFPL`)jNM zH#tn0Q3(~yD>MtzmuUIdP!~iryv*<;M@XFvXo6xyFVU>izH-%5_?~k@dwx@aUj4atzJguHlBMfxtXZ;z9#pmr)^&2f+}WL7>ETWP>zP1x=yi|ln^_P z&d2J$eX_kI3?#$K)XX~;)``F0^c-wT4unwo8Ypx}FdE4Kd*@)ELDFqi~b^(qrYkpi>LrBRWM^o+37 zy&i>obIXaq^R{X$J3L|WqK_Ouq12DQGSov{Y&g5=<6ihStKPIG<}pS#sF`cykfKKR zo)(?5UP3DD8}Psp4BSb#SI$sKjN9qlt|AJ$y2tX33oi0%DJO3EtsMPpmf)X4kcoO< zvl~9Cl`}&g(@J(TRa7-)w>+#y(g*NXw)E~;bPmouAgfKL?s68-@y~4DoU~w0RlW6P9)owd;!*8I>~c9aEc&{@Vp(Xjzzl20fl)C zddKE>mxWKW3^QL$Oy8=DzFJ?NNL=fbITdXxdWee%8ePdFv0AOM7FKbmX&X4x6#qTU z{~GN7+#`m(Albv2MKZDj28Jo7w|W108|4Bfe;QZ+bEW3c&lZ5?|M z(SL?r<+5F^B-3UP)2u=#v+Ib574T_XA_6r!xK(xU)e`K~1ec5n)*XJP2YFh--UUV- z?lUf-5+Su}w5lpDU)9AP^)y)MogUlG>y~iT5IpNvRaiFCdTEdAF4KqAk1!k?ax7Y6 z?!25iV~6+V}A4msSve;Rrl&rwXb ztX+#+7j#}sUZ5Gy1!0w1(^Gz)63nF+IeB?>_Nn=5hd$&e`78apz`+D59($l3vj*Px zM{O+_E9}{)rC@H|>}s1y|H0F)T%RfB{nxElKSw2PYzyVA8zYb_rANmm<^Ox`PzR~yeB(D=v3yP?Mw_<(MIk!S#R({`*Ero=UinqtcmUXZp9)HUlPeaim`kKH8jk zwAk>=NQV7vK|@uEYNiHtSbIU|rmmpk7*0!PZV^O?S9>HFm=GPK?5t=#CSfPtdZ@fs zJ{)Arl?_B@Ot$kOUAL@@w!lRXxmM0r&bOTJyQ&u_o=^@#x6Rn4Z^&V242+V>ntGC= zvKuY%vFRz~bymzgEIpc@9bJiC#zPK7WRTD(2~Z1b(~U z_{48n!WiQ~AYXXK0mV|0bo_l)I@W}k!`p2n1dBI5Wo!gL?M-|t?Ww|EsEJUdNb+e4 z{(s|lG#z$SVkX^*A6FKF)VdP3xZmls6Oj*K&hPp8@iI*yDA~yD{Be}`9kMSz==(}# z8Q3dp-vxeZE(eWNhBIb)eMsT-nyM-HZ5*CxKz8e-eMFr^bb{z=O(+u6K>Ty*ZY<>< zSshk{KF*TirX!0=wAPTgKr%i&-$3u71Cszb7 zrwU!YtW`Zl(^UEbW+k?~Eu0lm-X4ti=_XK~3kjCOGkck4WLtTj$s+hso?^}%3}rkP z(^-R4CY%Q;WTIdYl*C{H&AC#b=;a%@iTpgT{BrdL)s#&qEGYgqy#@6Yq#0le{okWZ z04TjbDmn;dv^z!ukG4y^lXIShw_|q3=7Zf;Gk_#Z-_gkX@dD$j0dEZ2vE6K@@b$+` zPZsX>x^;M@ZDVtPWI}qYRRrv;qc(V_FVk<9tSysN^)WDr)(f&^ay8R z+eLQMkrQ_N84e`o$9>_Uzqa&7pb2_j{320{~WkTE^c30 z*;yd=&pb%c@?S9O>T)=P9%1f1xE_>2CdODepWKkQ-{R~s$i|#*oCQgq^fgP1-b?QcU_19RkUIa>*YO9rpa=7QD$M!FxNpC>>7?YGceJ#VVk0TX09&fUYZ) zL4^KEG%cEJH%ts!@hC^1OS|Ze_DGcfp-~cUSllMyaV1>iWU+i&H8wF6nXKEOEgPmf z99A&6?_G2KXMaXR%`o9sEq=Qi4p8&SW5jMJHJjQNacJUT-08Y2I}&pyQk!ZOa+{^B zm>u?vY&Vg7pj#!pjVkdj$P(Woq>TOc8o#IBmEV$AKSY9EzNf;BZjXsZQg;MCV(Ag$ zyQpwSZyxP@g)KHH>Yq^-jY=74jv#hMMQ;;*haWoWq}JCN)Ym6YN>1KLyJwBZt?Vkz z)!N$2Hz6t_qNFi$I&L$EQud5#|qc1iXaNg(m!-&fb5dOP}a>;MBUizDmHs6tP$9T}be zk`I&Pl7&ujN6FdP>7q7IUP{E%c*r)hLye5x90_C+?#9Y19zK<19qsxe9p>hD8_im$ zV{nUZ>dZpjw79fLjdLoFz3BWFf)j!KBoaNriqI*jyp)ZETGOvEJ>I`&>k^dP2{bqrTcXF5osSniHtO*}0cSaXP}YM#$gC$oD{wbmDMPZBw` z2|x3mEWI{vUyoVOo@6{6=;p@~v5*n6oQXI=3KQVKx8E}6_-Fc?LhU>9dUIiynPaum zIvS3@H&aG5F!-*bb25QzYVme9h6IRg;ol@O)(cfyf!tr=rl zmN16;{Sas&l~Vcn_UehMXqBemeaksh`ZDrk z)+9Yd%Z7I(pFxTw*SrRQ3jgJ&F7Xt8p`CleLvi&xeKB*+_)yVEFpF@HtYY5uaUOnFTX)>f2)&If&(SUm?J2a{B`e)Ch+DU{@ql0<;8iEw&!nKl~TO5G}&1BZ4 zNfRNCR={HC`dKZHy9-|?X-kgKxOytL@wH!3sE)@LY?wcNjK_gTJm{CDdIeIRw}(f6Q*bs{2T*vnuN;9jAJ=@;%!oI060H>W%~@=dU-QBaymJ7sPwjqfV;Pb zn`<7)K(CHqihGQ!W{GXvBFeKks6n;_%n@goTC0#2TbHFb!#3fU2p&7+ z3I-L0(M*F3hE1Bd44afjihDH;Efw2RW|Gb+=Gm$|C+O{3&zzKcljoJE&ITH{n`=k( zjp(b+wBFDd@h%w}j9q=IX}0Cuaha-^Aeg$$4y!6r&NZ9QQ?lqP4P&a!(mO(z-JPu& z<^dhdZkL8>El4E|9T#3{Z5bG%$HnZ=j8JLG<{5UnYW=@!54`Shv{Y(x#R1 zL=dRP!YRb<8{3rDDyoenherjP+imwbDJ>W$MbT|F%k46RHH<4Pj2xE%{WYVClVS;O(2 z><^k>e4bX+u^$3av^Z5z7iQsqP8~muTcIubGQSOr&pQnP5!RZl7!_)oM8NLoP@O7} zcmEv>mXKw*znp38>?#RgD%?7p%wo%zv9>O!%agE}f{k<|db6`4YL`&4-p6mS`LIxM z2n!2a(Jiol5-nqFoKLq<&0DA^wm2pK+EKWy1^5p|ht&eaxO~2JzA$U?V1AnlpLZGf z0gG?Zw&c1vRWYbOsF)Yxow6blmBh{E7$y&lNiNsW{*jS7`+|%p5E}Vg;(xN$d@HEQ z(}=VrpND2mj&a4cHkX$l6lS_;=w9^=7F!J)xPh^}%bR%)fYzu4PEOGsQ*(Qk52Vs& zCFp_KG%+xZoj)D>tmdHSh!|lI5QV;S99#%)mjyY}=jG(6Er;;giwO%)e#Ea58k2G3 z$;nDdn1?lT#L;+pM1_AyIfFDCf-r%vRpoHBn~yHUy~)g6qVo)}0U3l68XB6S?H)p^ zH7b0A+};n4j$1Rxnn_?Pe23UwRwA*|Eah%|{0YGyNl9ikI2-ZPofPU~_{^?tQ50=d z%H4`wuESLH^tFpFIah8U#qbe)&pKtin|~T89f0F!aF+NTJu$28DS4AE3~KVg#ttwD5cb9SCeUu!Y84 zd80(T3RfI@5*sg7PaCP;7NYsvKpEJ##Iv@{t8{5EB;Mej^il}eGubwU3ag)M!ytuM zKgiiC;0%2H2OH3%{|G_WW?HVK;XELbkBiZcmxq>ikiqfb%s!K3OC6W*Rdxu&uL=F| zcdULH@gl|k(x$9Z`cEiE54$OW)6w}z74USl(%wo(KWHPeME?F?L;`jclKFNiJG2ti z>(Puzp>>bx*-^CP1f=?jER)~x7QNFOo<%-?f!0T8(aJpdf{KMg%(ZQ3fMk)FHD{S-{4_}1I)B$^?+-{cH0@{cRn|uLILNu9H*LZZ$5$z_!;C8C*XQS!#4tmbFbY4CQoAkHh{n>crs&TkpP}dT{H{)%y2fR1UU$Co|*7r8epBPm1&I<#DDvz({f(-ia)laplQ6tzNWuFl22G4kgG9Rl#%pNu*PQ{5@eJo1+r_=}kDTI2 z$n9N_NqSP(J+A}Lm$kkT(PaS}%|GsJYe}EqSb6zA5X7EvC;g z1U)x|Y#USjPJ-k%GW%FkTuq3bJ`eAW9zC1i9X{AOk#qI?+)LW%jgZG*EI4*;dckx-Go3LincvryGiHI8 z(T@}{58KPwuUbC zU03Xddo6=Sd}x_}iFOqQ{6?#GcrVC2Fr0z=Rl==Ey&32=Km|T?EZnic_DZjh&eJ0` zS1muG2WC9o7)m*5G9Z-}@oV{7{k+Yow6$V8x-rEkhQzBE#xtGhzP)%TTd;Op(RcTB zVV|>Pw8RvP8L0JXz`8p6VsDBOWCSt|-TKmH7VM;JWcac&N3%@@GpKC<{#bjl-#Rt) z&bnc3k~zBQHV>%+06~nk1$$&(%MpJ4ZN~zB91skt6?i3?-%f^=c&(L-j2F+k)elCf z-`8I4U$JyGIJvEmHoNFj48`5<8^-2j7nb6ef+s?sh(PV1=ANR2)Uh2FDG?Y@p!LIq zCtIp$r&M#FwcqAx**broLTV(*!CQ#Utk162^hf`5wf=h`2Kzqph!S4rPi8u42chlX zt+tB!0%LRfJeDnF+d^Vcs6zPrAsY1DR>}sWBAzKX*?N(hJqpe%?hyMp{B@zzlR8|K z-IESX6-R%+8AM}LUo|wBD}coyL{YND4F2T2?pTpw%!Tx5LD*S*M^&d$yTnG0bzDMe zC(}ZW#OWZ_Vk;=7r|}p?g37)oCUjhqL)Ax1*>fSE0&I%jKB~-kW4a+Ig}KDs-JqNz zrB$s+yqOp+c5PB9$jk-t4x&Ry09A{OW-YM<3EOVn$O zt1jPl<6Ok{aY{?7sj(3bL`BD-`Y8@;&QNoWTJI*DLnaN}k)V+xwd8G=^;!qUpI@K8 z_18&YmQpFwEB7$BzOBXaz0DHQ|B=z4-D5>V%NYW&1&+#`%CdmOo*s0<>FEm|`!`1M zRC&PwO-;PF?I^WhB&T9=Ft4v&|5{9&5}v&_xrJksx5vba1~T9-EGj$eN!cztn#V#O zSt2bEM*ecyYW~yrMlU{lt61iY8_BOr2X6xaiT{KP{~mbj0kqxeA0YPY8Tn;UNcT5H zMI#2*c#AKOQ)s|u%(zlbY{81=nr*o^BLP=8O5;L&_k(PUC%2~Nxa{Q+K7B8AXeEY= z%gud-Gqq@C_!OI4!VSIK?voJ3|AG(fnP=J&ly&!{II?8w#G7v=x%zBT!&M7~V+w=^ zZ*0~SX1wo5z8*&$mMkXuzOcDdqCs1lDUgS$4TKzx_C*t^drzi__ucd6xHBc*L4-Y- zW@E+RHxdbwX%}+w&Bb}bzz=N=M%8$_It?mZkeBwTgO^o_#6tbboG7N-Gr;Q?WjREJ z)}k_{YA?nnH(rTs%Z(@`Y+PR?ZOi%pA)FVmEXEM_oW9m}0FSlIgnhCKFS>s{b zdbMKjlJEMa+gTo+=$(X?ljFWI&r_G79xW&S$Wd>Jf4bhdG~V*t64tv?oQ7h>WX7I_ zKF5kk8Ri%4Aa$SM`Q8pOJk!L&^T}-M%{OtY5iUs~CDC~FRbockn&s%2)n?z9(0H%? zvKR4YSctC`8a+hft0iB6->E}x;)cft)E z4WQ)U7SO`j`SNE>B|!ycMXfCq`%9K|dG?B~h>3_~NJNp-JK!PpGVU*q1%`!{))MHf z=rxfnjdAv<{zYH`48bK1P>F7?S(rqrf5Dqe?FO8 zFQV`z?9r4i=%)l7l}DT=e6s@`t__g z@t!7_fr~Wl`q)W_$CWLD>v$nC#_V2HGh#i~ivEj_Xb#uyPPplw)ih-D2f3-G++9Pa zR(mnu8K#fLfb{~~0qi&>swdURuZY6GMv(c#xfAMSD`))g^Z zWP`QLv+iD8imxbIT~x`pl+GL)%>5G^Nr+#^N^`1(kv^v4{)x{G-?iIcu=l>`owqKf zxd)DIQ!0Gg>U&{f;R!*NmncSmM?R}JzqkY|KqBrg_8=c;BNSzM-`rJ@Jl;fL7|&QV6VoF~+DHI1CH+!9ds*;P8vWw>ldBVUh7Yi$fn-mvx@43MYT9H|*~uFOFDkkj?*O6|B;Ro1t)<7h55^bs zSIxxsd($vx^qeZ0{U29J=t~GjhI^=ZUDvFmutM%Nj5NIjGlW+SNZ3eUoazepI4X|Y zg^F`zWqy4AKnkX7mH1Je1Fg{A`i@_xi?3?7(x^#y-<$SlAC`5-%P(~-*0P55NdC|n zBEizmmiGMiW_W=^55%OB3!kC|9S#FvF3KwTrWP*KvUm&^C$J}M;ZfeMw(Cl)?a`sy zAFAiAmJ;F1B~HTScxOc4<Q(-x5^)0 z%$kIABP@;;9M(2ec^wdN1G0x>v7Nod(qPB^vBQR}ELT&Ng3xQPvC%cjl$@$KEh4_30x% z2eG^}MvbV@ZO>}Gq$Vy$3+53C?%IZ;UrdAiyonqHx*rElskhW3^~-9h#Zh%$#=a_N z>kyOucmnCoZ+7r&F&$ln$tUSR#Si}W4Px`QT0r}gtqX>H1;^(DUUfDO_nO=e152uR zHE_W!d`wFwF2zzi1h*V?rM3ziKd+S3H%L;H7!wj^*N>5P_M|9jsXP52tzuaUb;TXP z7Xhfeyq;1?aOdY*T%P9!+y#}qiiMT3_>psBe1@D$S34e70^-*1&n{GBU8?x1LOfNb zkap_F3c+^MGbVI8q!v>n_9j-s&KyX1E;o~ocaq;tRX?xV*nvz^a=*iBaAzX>I67SD zUJCE$YaLBy;X^o@+vO1eDR?NCLCVifWygb0F^!-p7c&Cx8ns?f@M}Xind-1Pmpts3 z#X(@>yt+L5hZN62)5@{xVRSCn;#W|+3Y zm1ar!De38z7^$GP&~2ujmZJNSgd!#wfEO4fO|QY?*U+)BOvYLmx+O1YPE_aFUnJ%q zR*(Q`T~cy5d=cBUGX9p~44drU?&+@|yTHB-~V(;ujqnEvS`hf@{L-|#&H(2#71I$$mw-o1bS zqGLQT7dgR8sX9y6MdOXfZdgD-ehinPe`d;+^G7jm<{Az(A!b4ged5E>!zsSL6V71%3Kr)DHuj>r$WFbfJ{W&E+{yd&Plsq3bLb|#cr`$TcC0S;N z|5AeqjlZdZOnq}mR&RA{vYrx8hMu5b{M$Kcy>SVCm8z*~W60$1q zhp^~b=h&0zurRv(wj9SyU?m%?cy;O78CEr|$i>LW_$CaVruQ3#{Y9#p8aH7T>l^@e zmNnu;6u=IXpr-<>>;C4t*f@oydcv9WSun5z=(t4PdR`ey$}C2xMiW7ZHg3a#Kf{mF zOy2dx+Htl2lrU9^(^GKo(o-X2LJ!YS5{x#ymlR&neky}CHVX2T@iX@C9RW5pM5Ix9 z_qZzf6X;bD+|jYtOt!CDaVr}D(J)vsBzsLw`7xKJoY`9}^cYynDyzv>O`rxfW0O_Ez1AKkkv9s&Cdn;HjtepIMQBDEBuAsN!c z!1C|~K&0_2XiN|&u^*>5F9tPjm~` zeHqc#pL2#!cpk4}lQa|Vyh_tl{7(U0Ea?wxq@=arG0Jqe%0L#a_M>2GN zR~MWIGHP=1Ox)z|h29zKaZUz1))bPRN$}%+g$A)Fm!!SG_u2disy~sgca-es)6%6` z+PN2+{c{!?B%PwBaw-dJwj-!FyIJ8sA|ux;JKc^NdIP8()xOgFb(%6<-s*eV+TlBpHOxNW3n`?$H~6&Fhzt2ou3uhkMXvI6gCJE;x#Y z9;b0hcKyS3pLg@+ym;DQ89I_{M+V#u)mIVpMUu=QocRxY9vRDZ@5ry4lHOH90 zz)=-D8JGGeiu0ZqP8Y_rGebVe^C@LJ#F+n*(4LHJlz#k!XbXu;=_2N|v9#^^<*%FHVcfR!7o2Kln9MtpG+anzj?e;+9izzuYK>>XwC@N|#P1;;Q6{O|(bQ z{DEp@v4s5s`Vo%5GCud(0QZqVK}ZeLtv56Zxe33O`)&sH)VaYuE)u~9iV8-Bo^StD zQ2zWUejj`yUDdLgzDwpBzp`BUuC(sFZ+EnH_LU%*vy9hY3s+_BV$f1l)t+R??YOPy zHKx}!)mu+a$iw^8K>2GPNF9DJccwiejLofg4BU`uttamxz6sgPi_8$8w`=2lT+-cr zvuUW;GqIsR58q`~k4Y!H=fjZ8=Y3cdr^+5p_BVn97?%Ld?hOtXsHdYjivbc90e12Y z#2hwu50-t3+a+JmrlVHVdageq+xRC?+$q>lHZ4pyPCKZHg2$gn;`k13gR36_>yn#YoGYkuRR1$k>X2TTM&qb3Jjvd#c__>G=mHdfY&wNYw@(C9x1WJu4}5b9cuDrebN3Pz z7!1N0(2VTfzGiTUQ2aCJ{P%zw{bo?6G22lq#Da^IONOk~MPow)-;%n!TSU}eb3Fj5 zr}+s!Fn}#{&z5Pt-0l&MiSIt$(T>$LX4weWzKBo_N@`o3L&zlV)6Ol^)4i#~$68$Kxt zE}>O+?PPRJ9ujBK2Y94|Ig$vgG$1#;y@y^suUqM<+UUXF>dMNbj=ns-6!|cbyEV9; zNUA#lR@yqp)OORV(HjqKJtVAmx>!LWxk9LV@2C}3{{H6vHpVLL|AIsHDM#ar-}f|` zcS1E4dO})@kemk>s=~esWFO12ZeQx$wJuT8(+Vgo(97+lo;MP!rB--_%d@>FU9|37 zx;-;ryquruF&erl5ak*^3$^+7Hv$Etc&9Lg2n|&GBL<(>mUg6Gr`iqPRTJ`y{6EUx zIw-Dg3HuF%1PBhn8Qe9vyE}v+L6hL_ZXrN`;Oda1|Q%vlRfWoWJDTLYAu1d-_^DQoGlmc1yE88@PUDSKA z)JMF$s&Zek_(GYGFCVPwiWJe^Y{crm@x1E+Umwg_rXkktJUOEnqYAR0w1*yF!j)+B z|LFxFf5v#)OG6ViWxdVvDw|4UvRF{Wu98z@?aEI{hp8)_yVQ|kQ&PQumz0kbN^<2h zOt|$a<^On81R%kv&#Ob1-FZJ^Guid?!Y=~-#`2Jkj*4r4K zcT{%pz#->BIASZ>C6-{nYn;`t$>f-gqF7@-@kKYNK6x*eKm#`R-_2bBM5s_}iTML@ zpD!Q=U+gjDf^vXHI$1R#(f6BHqFe^AXOjuH`LL=#P-{KH%7-{WO#JAwF%Jpr6xKT7 zxDYISclo(D^C>DSN+XzYxA|cm&F$v#4$JxmJwkaDj_Xj<&4%d<8d{m*6#e#Xgw&3f zAyB{Y2JX%A-TYCh^8k(=_d(^UO4i|Y2&*&(!P$uUwwk@?<301C%jQS;mUYxdW@Dzy z{rQi@dpsjjc;7*|oy3~NJLf-n|Aru~JrsZn3gvJP=$ZgaD7l{wWW8d8>FDev`gr)D z>3;tBud$}k0DHe-7hBA5Deeh1Si4W|cDbs%`l$hTk?Ao>Y$&*PL(p3W7kj99FP`M2 z9a?FF8A0(R7-g(B9%|h=-Fh#C<6$)M`0Pm=Je1mq=zK$PAP@4P&q>wYc5y!OYH=XY zuKZ1@;*fj&YT_=ti}oZw8#-D+!}~sbXh>*04~NRi4)HOt1(Q;Hn)61^#}3!O{q#$3 z@zZ>u_fjLYWy_0>phkSyDT%CPU%$LxymMvN^H%GH>M&2_bR+8oLqwI}c&6jo&-)$^ z)>%(HaGl0?$n#|ksFqIfUUb~L?FahCrw(%Xe)k7^Wk-=zlyv>zSyR{agYok1`lvi4 z;)mFoAot@v$5PKt z8l$_>(Bp_DSJe!;-UBoX(Q1*i8!{H*^HLgQ$4*|clfq8^Pg7BM9o1FGfzoX6y~I*& z?Ps{CT8`Q=!>UBiS0g%#!7Kif9mTQuxx=rIz7nb`HQaa48T(%RUn2Nq#Sa>I`06yaE z-{;W^6}B=k*vo_R!ml-qNO)IXcN+CMI5A3t(!5HWctNU&XXM!ODC?Y;Rh_eZ$lgo` zv_8m#KICL7(e2i{8G0f#w|pb@;|y8&9RvuI{>Y?@%(sqIYR?J3Kw^ z5sp{sqHssbR#=4#Q8lmqOE(f+qQWggv%9GYe~vZc$`m_(M0fU=8U!s;vkls6!Fj{q zaoQvy2&~CPevlAl<-!O)J{qB+2WU#ZbfRQOijQzEt-N zhbz_TN~eilt5g(%bi)(3+!?~*dh0!i=hM{SNYZSr>vVU!eA}`_J!026U2B8R<*@7H z88~L)X+kX|)Q*g0!-Bq{DjoA-Zju4>>0|Swl>*^n>KOu_4ZZKp9T7Dp3Hb~Hqx*&)8am`_VeO?#y%V`Ll<iCfFvb zNDg-sVyXVW{XIp>VP7fxVqfMnzxh*q9W~{DSghntJLE`V~pK^Bnb* zHPOE+Zk!F0aZB6ptHD9AQOUQc0kKNe!&|cN!m=PaK0zX}4~bkmA0iIjAlg7KfoG;s z9N8E|4>|EMNp?8K*@Mi{X>1FnyAhM!_iNnNFb-mUIeg){^@0)V%&#DN%scWfycFrP zr1{r0`nGNCSB=LtjIPFlS(1#GJcF{48sBSs-lu?8*Y6CSc};W!pJ?V(#*b+bwmzNm zK8cQ`H?5l8BNUOlS(q(N@CP^deXNkc`@V#&==r(n`*JA<(wnP8fy*CD9g3Kgb8%Gi zi;H4V8CP_S&IJgtp3aoBEsM6praP;zvPM5wuH+LW7$V+u$F$4<}#Dh4UoF}+Zo z$JGucq&CvaMYzb$6NMnF!UbF<$v!6A`J39=*?*YPGnDk=Jg@W+BQ@5L6u(jJ5a(_V zwUgQVxJt40K8$1QzC+TnkxXV#kvn4u^nY=Pu6vJilo>;lXA5<=L|<0$QmBLX8!K#+ zl|cvRmr)@tjn{h0GIKoXnP7DRfv?JAL8cc0ldybD+649PT{P}@Y)1mJgTqXEcIhZ2`b z7eY^eQCRiNvHI9X&No z0jlOmxtXh0n1SR=k((eZS~@RT)dtFmycvDCr6Q#qKOu^>pqR;k>{SXhgC7CjDpn=& z4R>$S_qo(M*jsCi;AK-jN8O@Y$Seqt z;$S=E^j?#BL<3zRfvcNTuV7dsCzVu9J4&@pyZ%6dW?9+N)+? zRQgn5ED=w>Ha|hwyrLh@T9k69`CcxDbB;x*_|sIj&0S+-Xm;{gWm38p^y+Y9XjqFm zUB-89ZTEcXJRNYS5|zvX;?i;X$vZnd?x!xgWi(WxwRt+`$;789@s8HB;A+l{wUL{# zqVAF38P(u_k5Ea-|)etg5}J&GD39Q1C&?&%wpR>tu!;F@?}N zmn9fRJOi+eV^j#F^5;1)pSkbfUrBb5w;DQH4zPZWgqeshr51?N~EP~`TkZ; zt+qe{<_yntQsj5;Yxo6>kyKZ^=nag?6xt%{Lo}afcKGX2hV;A<7X}@_aGX=ClkgfH zGAWVF5!7PW52KnM(cZq$ZYL{QWYV!tY`^8yaU2iW zfsVFn>^uHsgRCgpx!f$IuyH!yyZ2w)QR&F@=`z~@m_rA5&t3IMe`l7RD}RVj zTp_dU_H*FRluBgT*a+FOjAX;i*m+=3{n+K49{xoM&pz*nhh**e0k;k}R(C6_%;;$| z6(-ht2eIEpc0bu9$T_yj#!CdfSYXUgJNf|gQ#=3b%$ZC}lGA=gF_YnO_SAPV+%;_| z$;+Br(PJ~KNz#42U2g&?M`5@CiwzpGrT+#;>FI(&q!;&>xjg5qJZ^{OyWhpV^43GP zLnK`E#a#v-=cg>!rf)UL#8YZCDKt5Es4ZDk7d3Sno?g7)z}wS&|HHpjfh51!hVwrd z^*92gXZC*Aq;PTOtazolcj=40Jh?rwg1wq(W`q7#eC(y^=y}H__hJ?6f0Dzku!I5> z3$R~%W&inTSu`PcDFd6fRrceK9owDJ2?v=#nLx~?in3@Jx8gs0IUYQH-`e?|L@E

WA{ohKC}t~a*4n7`1G4Osmd@Aj3ma>r zS2~oy$zqdvPRil+^r!uSojnfRkaHK5p%Kh)RL@F!rngEjM*7ND@AU$*1I6aiuW;&d z^ryBX%BC5uX&oN#=-ZvAw@2p?z?l~Gho=o?2T#SFA%>PHPhY4qzH3?Q%{MKe&n|(l(G%U>Ct?sk`ACg=l^|=->^^$zaOcc@VCCDG6)FCBE9>%a(1=$yJTOM=-d_Z1qud&FKnwHs6sQx^XvT-l?V{jCl*~o~d@?+6p zYb!=_@0Rw(gwi^hY03|}b zT4+x$dD!!M#_1qFXQWJ(!EC7%zYp_1gks61!6q7g6KQiJT?EhNZ$9C#vkAQL(uMut z2FdTh`^V#X0h-DU2?B8Q)T!3(;-g8nR;}IiQOJ33O{YlNK!NP zrhLtdU#2Am4l?y4H4iVZLLPCytgbQk|C+Xc_SaxwD3|ys{@Zr_`#J=5xu8h=qt%ap zeM5<~6tv;o42*CTe}p&rTXgzoIH+E1TJ_7zi%rw@77L66+CVk7zv(>INl#A~7s!vE zfg-0dDZ4SqpD*FD+RZmG04b+gFG$!?U^nsVMh5d|F9z7pCoO=Z)7!aOxi5g`KX(0} zH4ao-i;c3*yAQ?uVSBtuk;&z}=~oNq5@JH=jExZ@AaJ!>V1n?NU!U>ay=CAzCj`&i`(&*O#zDRi$0zFL*PwTQ>z8{tLPHxg))$7 z3?6Ru)MZrhwecn9_1RV`qsMHY+B-}7#dsEMkn6dK+xz!*&731#)NguFR{UX*{MePW z6V(3Z)a^qAd_+1ZJ}@2@%^>R#G(TCE=h7?%1O&jq^Kg+nYn3Jbt}zpECj;tB+!rd$ zF#qK41frqt@9&Y(v5h(CaQu9~xVpT))HBR1&C2>+fm)R;P->UNdonrav{ME?9-l7T z*fjB(e~2VcpEG{wi{0ty^@U^HOLkn|v--5`Z_Buz5!g57$*cSNTcP>dk7FbYGvamwtOEsF`KHSKE&zZqn^_%=?>t!cC3RL$6*AXZ_L(G97wDE38#ipaoH>;}|0_Vz!MJ78B*1kvA=YMQ&L5OI)Zjas6%=vR zd+t9zy8KAYF=HN5rCFLxbt*Co*8lt1N~9s8D2NNy@)TlVVEhVCMe?jOmXETol*$qo z0@>eM88?|`AhIT9PwGITlFiorIFFoN&T8|v7CTz>k71(QI8*J=;5J`x>l1HAYL`y3 zX@)@+PX>U?8lP@XWASsriI9+(Dd?)%e5IvXrNob8Yi{?Q@%WlMLDwn(qE zLcQe$XFKrgDWtmKCYRoGhuZ<)mu7=50*8!^{KhCYz`+v_Yp|duLzT%*M)OX9bU9wE z-xq~$xH`T#;G0RlvzA|=Xiy5xIgGr}tiC-(1U`mhH(KF80HHz&jFDlq!|Xwr-!_Pe zT+1sMddKC}x8M^FulJmj22FSL>W;fUA-t|Cxt?bU6KZwaNbt?aLOxPkaiE!U2fCQY zTbgRi`L9;a-IkNpbgz@#5$}^0x2FbWA3l)%Mk+%7AQj4aSbgK^$yCX4w=+Z_CN6rd z3V$n7Dd>zz<%ziidiE~#zj5uwH-Yf^BO`-1su?phA>clq;_9IdFwo7yufX;=o`C@G zDWOjEH%;;Mycs^-#nJskR{&e06>*y7NOq55=c0Re^$AA#7&(U|qy^e>j9gylndh%x zM_Vg9j*CU5$-r6UD_fwlc3+^y-APS}7k{HaI2CtW;z{&=5z)f6mr7!x?Bz3DQJ3oR z!!^Yff5h5aIZs*ba-?sJ6q5dhV04nxB46_a*ABIrh{5Rw!i7CF;ul91w)zfMp)8J* zX=9~$)U7{exd+-ci9UOEPF;u(e~p%g&n>~z+nI~R-5&D=pf^q_P#H-bJZw||AQm~j z_WyQ1P+$gFYZHSG)c@QVe}V5J!*o$0FS9EP#ks3OSoN3vQJfxT49nQbURej@;!a{p z*lnFId4h+f>B}w*ZvO9zBVd>enE#%hDfW?CLy0K3@J`o}`j+janioSsc5c(?2kWUrd5ApQO0o6!cmaFN!zE3G zdet|sE0)^>fDWK{9Nu}&ZFl5_qN?d7zvKimhQ1`RzeDVI+mo%_n?>Mv=fovLJ#mQP zSkIT%H^w4=vLQSDuxCC|hF09ThG^6~*n`CL^&Ph3MwcHxQy}O}i_qST!wDu?UxpDx z^Ywqi?h4PvKlFr#L?2BtqRb@&0@xwzS91D|bJ5L0}wV=L|c_0coec zmC-iiz|mw00iXK=>;7UhXa+l8t;{NY1*UPu3%X4I0LSf}{+lnWtItXP?}xV=eam~f z*G^&M<QrY5ktpJ}x3c^|>DE_F_v5 z%0o64!&(9hW5&QO60SwuhYt$=hFuHBK_4-R5P4+1cW4jl9q3YnWhFXHtgDsDXfWxR zF!nAT%@^Jf=;)AgaGw9c3-bS8c)?)%XAE$$bWEIA8Ed)~HJ z?l!Bclj%HHjV^O>$>{>O1av6Yg>NX@n^dOEWX4IxoT_D9jf@Po=R(xdmXmYl1ag6L z0tFds>pL8F(0cui&Z$F%igZMzZv!H}Gk@sn&-@Qx^9VD`S-fwx-k5ddw4b8|9sx(@H@Ddcf zUIP=9dED3pXiMjg_J;$_3>OVkSAG5PJ1&5cofrqRBud1hEw{_=g*tUYqhI)50doLt z7XDAYkeoHoLS_$kDEw$+_Cb42seUzQMhBp(JiD%q8HB+@u7;y}cKah}Cz6ucE;lt? z?Hb~uL{vQRF3s`A?0s-ne<%!zG;K70cz6-TfW7n6=0zD_ttrH>q;*?xMPK0c%%P7i zc4rr}nt*M$Dj3)Ss?0-&@&9~`UT9LSD^`S38D1E?;-$o`u}-spTumTZubq$C;fo~?C>;PV$;Zu8!gzc&I0-s`fAaTw|6 zBQh3`lhuPUyvFaHuqx>Jy3PEC@&0q&@&Y7*#3aASzU0Apt;!f-qX)Q2zKV;94TTTT zqwf5CbM`GZ=(9MH7npz+`y0k*2yK0s|A>d%5Y3As};r# zG*Zwe&8lV}hT+*_)LRj$*?!6!4rylV$BXS5w8%wg%)6_sUMHu|Fg8+mw+o~CgPo!A zj}AQ%nSC9I?H10ki&K5LpCKOo;bFd}CaFH!@V)ApJ8NDo<;KsD~ zyy6#l`SR5>ybkj-IfphCx`}6e)+ua=K_-uNzv=JUO!CBwZLHzvgv1SQj>~fet!?t) zo_*cNP}}%~Y=C(+&;Khyj5Un&_F%xhY>Cx7WuL^Oypq>iD}nxK4zpio9Wv~rs+?ss z^7?qR0k(FE4Ui$vf8uc3Ko#8B1>o(wwMz2tqa*J5sk7Y!O4T1ZV+WYPTRSuJIDgXd zfM^G_$8c`_J7<4dT3R1@?UWTg2^d&0>z&UxQEB616v7}AHrXOLsEz|H_8}Qothe@`*Sg(eQT3uZG`MI2wq(Ig1;9`lX- zloyd^Wyh3hJTgSwX}lFV@x7sT44V7}L3B*#E0n zL`i@1;lDF$1<9%=Eje~}^K^goif$o2a4W0Cu0oSdOCCcgnTz`JYctX4b$fTMbpg(Q zL|2_zSq;76`Da2wks1!@TeW8{RiZ}-A5>#Cp6PG0pUsCF?t`U3$}S+{zpACz z{$Zec%?_v*57J9`7m8bO2S($XJt-;tok;}H@22ffSNP4%3lwLII9<{l4oBb%F5Qa_ z5Z6wjb~LY=9QW%75Z~8}J0m1@a6WK!hCoB`2k=qGgn*GbCzuPDS_ne(>kv?lN}+@r zkut}v#(U%o?YN96ezEP`FNKE(2;m})B47~WYUjWjfwMhAYK$t4RRq&dp0&thGaqUm zWga?1 zc#3gA6d;-ngUDzFC(5#Un0YfpJuSjyiw5?EO4%acj3qK}paWc9MYO>%zzQ zZQ`|MQ7IpR)*yz+h;kFC}`l!zUT-osv^bTyM<3WZ=Gw{yuSj zwd6_QhX~3qAHnIg$qAa1d4@5)ZpD^Mw$kz}MN9-;?c73Rf`6HKk+FCIF184YL

m9hRj{nPZ9Gnv6X73uG9`954WtAol z&hEDax{a{b%M7L<8xgOad2<0>&7}a)0n%`L9(R4cJydkHp^u=(T9B;klhJAItkNlEhh3j+S0yWwTWu1*kalMn7d_dl66 zc=y>;o9%vyj&Jb3QF|KB`2}||gho2iGxo+^!5OACGBd+)k2NnF_9raIR7*QM+P#{S zRo;LdxpePPKaPG(49~5Mc#Qb?wK@8HrH84NG6=#wBgPU6k^H73Z-r`@=vNQKoW`Ay zBM7vFKC%gQOqO4L0;cYJ|IT4LRHJa8GB`np3b249S!nC0Q97+gJ71MjH*=nym8LM{ z;qI>gDPTIubv?{s43(brJvk*^k;3a4P%!T0TNLWa0f)mEOtPl=tK2Ss9Z6sn^%#XI zI;f%~ZdE#LJ#5TzNFi|9>Wal`#B3kUuXEew-lbh5PS&*3Ma+=VXV6MC9~yV`BoPGZzTs$tC_5!`Scn-^-@}Gj#k~o z$0taOT;1I4i;xa#LQeSAZ1;3}3d$@Zc2#uIevPAn!iQ4)4hfU63D{7s!sc)m_rVjU zY&Dq*fz&HE1U%mm`1Il# z_aEd)dq>O4Mj<&5Nv|1g4i4np7nri8z!|J93^Sz0c-5NC&!iY)DV}0*gkHC-?LD80 z$^pV`Md^3Ds$=+RSA&1pRZIXx+pM;D$Gpz%-h0W-sp{8Yh9Z&!9Ni;8+!7S)0v%5M zZ!cDgV)uBAq)Z4vH8)Mj3JGOIjR>SD;+8CVh`_gQuIN(uyvl!(yZ^lsOX`4W<3`yj z{x>O2eH)?aO5dQfQ))(i6lFK4MGNzM*K;QtyLMQ>noXxqNlzlHDI49@$U8L{x$xF2 z#O&m8sbpwk4oL_|2djrF7H$n8R*~6t6QKNH`7@eU|G`U1iaFNv8!r*VOm!yt?t*eJ z@gL^Y@-Q@2nSRICmWM+)K|JvE&B)o)_J9H9V={aYKpn7ti+3df6;i`(7J!W)@Nr2a^9GdbXI07yoPv1$+Ni?v3@sS*}WBRNF(70O}aDHz-gl8f?t&)c z?uHcI_Z>5ca4H5J+4Nk?e$9y6rQQpxfML(S?r zcc~49vOHR|ixvl;>g_jf!C=K2!4hImDjJNloCYR801rIUWF*AtW~cxR@UZY3OiL0m z*Ya_l-^#?t>kx0yqVr-tR%!i3H?9gPs{G^fv&|$ z1vt8|cX*tfBzs=sWZPDhLEzLS<{HEq8(E*Gwb>vZMzfU?TUSg_6T85k>nj1 zX|IONQCX}&A28CeOIHHh2J&7rVp2^xA-dk)bp=F5V26$1`#Q19bu1{&3Y~lM4j`ks zGq<#iPv=MI@F-ezNVp3h^EIof#=Z8=HM+b@&y5idUc@=qswFS~-NM)cMo>)_q5Rvu zBR7*APRPB5IiZRt6x@BKgfb8{H%k0HK-0)lq_iKBDtl3VngjT(JC+=T&aS7oQd2}`g?(ns8$rl^xg zJ?eA%?fCbJ{O7*Tp?qKgn>5MVOh#%*p=JZuJkpEjKN#^;GZR2cUy51V<)?O>=vx1I!MM1;zR%`x9dCF4nS($j9O4&UI5-^U_`R zKQee0D&D7>r}GLE@NxL+>jy3do(Ys)Z1U~f=TI>->$Ey=Mm>zK$? z1?HcND3Lo=+U^YNE`-bOsj&+#j$vYeb(fxWX}>rr6b2?N3D6hgv*ezrI@_nRD&=I+ zm>}MWB=eH5n^7*VD_WA5&Ph)C8R2oT->H2VCZ`vzSV1m%Yk0UWt{^K0bL1%>)VZMJ ztUDkhYoS>=%B^-JidsXTx(FGZ6oa6@O-%8Z>Zx zXHEaPy+}wVRN=?v1u^q=Ry|YVsaT-tZ!Z8F8dwRYzod;{6xr7C!JR77zyW2<4ln;a k=Knlb|MsPAoC+P(b9" + "" ] }, "execution_count": 3, @@ -237,7 +298,7 @@ }, { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGwCAYAAABPSaTdAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjUsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvWftoOwAAAAlwSFlzAAAPYQAAD2EBqD+naQAA1udJREFUeJzs3Xd8U+X+B/BPdmfSvWgZpQUKZZRdQAFZsi7guHIvCijqFQEFFBQHKop49Sfg4MKVK8NRcQEqKspeYtlSKBQKLd0tXUlX0ozz+yM5pw1dSXPSjH7fr1df0pOTc57YnOR7nuf7fB8BwzAMCCGEEELclNDRDSCEEEIIsScKdgghhBDi1ijYIYQQQohbo2CHEEIIIW6Ngh1CCCGEuDUKdgghhBDi1ijYIYQQQohbEzu6Ac7AYDAgLy8Pvr6+EAgEjm4OIYQQQizAMAwqKioQEREBobDp/hsKdgDk5eUhKirK0c0ghBBCSCtkZ2cjMjKyyccp2AHg6+sLwPg/Sy6XO7g1hBBCCLGESqVCVFQU9z3eFAp2AG7oSi6XU7BDCCGEuJiWUlAoQZkQQgghbo2CHUIIIYS4NQp2CCGEEOLWKNghhBBCiFujYIcQQgghbo2CHUIIIYS4NQp2CCGEEOLWKNghhBBCiFujYIcQQgghbs2hwc7Ro0cxdepUREREQCAQYPfu3WaPMwyDlStXIjw8HJ6enhg7diyuX79utk9paSlmzZoFuVwOPz8/zJs3D5WVlW34KgghhBDizBwa7FRVVaFv377YsGFDo4+/++67+PDDD7Fp0yYkJyfD29sbEyZMgFqt5vaZNWsWLl++jH379mHPnj04evQonnzyybZ6CYQQQghxcgKGYRhHNwIwrmuxa9cuTJ8+HYCxVyciIgLPPfccnn/+eQCAUqlEaGgotm3bhpkzZ+LKlSvo2bMnTp8+jYEDBwIA9u7di0mTJiEnJwcRERGNnkuj0UCj0XC/swuJKZVKWhuLAABOpBfj2zPZMNj56uge5osn746GRNQ29x2lVbVYuy8NqhqdzccSCoCZgztiaHQgDy0jTbmYU45tJzKhs/eb0cGCfGQY3CUAQ7oEwN9bCgCo1Oiw81wOskqqoVJrERPigyfuim5xHSRHMBgYfHDgOjKKqwAACk8JBnb2R3SQD1JylbiQXQa11gAAGNU9GPf1b3qFbr6l5Cix9Y8M6PTNv4eEAkDuKYHcQwK1Vo/yGi1qdQazfcQiAQZ2CsA9PUIQpvCwZ7MtolKpoFAoWvz+dtqFQDMyMlBQUICxY8dy2xQKBYYMGYKTJ09i5syZOHnyJPz8/LhABwDGjh0LoVCI5ORkzJgxo9Fjr1mzBm+88YbdXwNxXat+SkVaYYX9T/QXkK+swVvTe9v/XAA+P3kLX/yZxdvxLmSX49Dzo5zyy8cdGAwMnvvmL1wvah9D81tOZEAoAAZ2CkB8BwV2ns9BebXWbJ/E6CD0jlQ4qIVN+z21EB8cME+z+PzPW43u+0tKPsb2DIXcQ2L3dlXX6vDUF2eRW17D2zF3nssFAEQFeCI2xBfje4bioUFRTv054LTBTkFBAQAgNDTUbHtoaCj3WEFBAUJCQsweF4vFCAgI4PZpzIoVK7B06VLud7ZnhxDA2Kt4q9R4d/bMmFgoPO3zgVReXYuPD6Xjiz+z0D1MjkeGdrLLeepLzigBAEzvF4HekX6tPg7DMHh3bxoyS6qRXlSJ2FBfnlpI6vs9tQDXiyrh6yHGs2NinfrLxBYMwyCzpArJN0txvagSpzJLcSqzFAAQHeSNcT1DceJGMS7lqrDvSqFTBjvb/sgAAEzoFYrBXQKRV16D05mlyCyuQq8IBQZ29oeflxRbjmcgt7wGf6QX4974cLu3a92+a8gtr0EHP088NqJLs/saDAxUai1UNVp4SESQe0rgIRGZ7aOq0eLo9du4kF2O7NIaZJfW4ODVInhKRZjWr4M9X4pNnDbYsSeZTAaZTOboZhAnVVpVy3U3LxjdFTKxqIVntJ6nVIR396bh9R8vo2e4HAM6+dvtXLU6A85llQEAFoyOsTlAOZ5ejMNpt7HvSiEFO3bAMAw+PpQOAJg7rDMevyvawS1qGzll1fj9ciFScpW4KzYIf+sbAbFIiG/PZGPZdxexP7UQS8d1c3QzzVzJV+HPm6UQCQV4bWovRPh5NrlvTlk1tp7IxOG023YPdi7lKrHlRCYA4K3p8RjdI6T5J1hoybhuKK+uRVpBBXZfyMNXp7Lw6u5LGNwlAOGKpl+7Iznt1POwsDAAQGFhodn2wsJC7rGwsDAUFRWZPa7T6VBaWsrtQ4i12O7eEF+ZXQMdAJg/sium9AmH3sDgnV+vwJ4pdCm55VBrDQjwliImxMfm442NM/a67kstbGFP0hpHrt3GpVwVPCUiPDq8+TtydxLp74XHRnTBuof64b7+kRCb8tnu6RECgQBIzVchj8chGT58djITgLFXp7lABwBGdTcGHEeu3bbr9Q4AK3+4BL2BweQ+4bwFOiw/LymGRAdi1bRe6BvlB5Vah+e//QsGJ80tc9pgp0uXLggLC8OBAwe4bSqVCsnJyUhMTAQAJCYmory8HGfPnuX2OXjwIAwGA4YMGdLmbSbuIbfM+EHawd/+dygCgQCvTukJqViI05llOJ5ebLdzJWcYhwUGdfbnZThkXE9jsHMhuxxFFeoW9ibW2nj4BgDgn0M6IsCUsNueBfrIMKCjsefzwBXnCbDLqmqx67wxh2XusJaD0iFdAiATC5GvVONaof1ysW7crsS5rHKIhQK8NqWn3c4jEQmx7u994SER4kR6CX691HQKiSM5NNiprKzEhQsXcOHCBQDGpOQLFy4gKysLAoEAixcvxltvvYUff/wRKSkpmD17NiIiIrgZW3Fxcbj33nvxxBNP4NSpUzhx4gQWLlyImTNnNjkTi5CWsD07HVq4Q+NLqNwDDw8x5uus3XfNbnd7yTeNwc6QLvzMngqVe6BvpAIMAxy8UtTyE4jF9AYGZ24ZhxxnJ9o/l8tVjDH1Ju53ovfbL5fyodYaEBcux6DOLQ9De0hE3AzGI9fs9zp+uZgPABgeE4QQuX1nTUUH+2CeKR/o27PZdj1Xazk02Dlz5gwSEhKQkJAAAFi6dCkSEhKwcuVKAMDy5cuxaNEiPPnkkxg0aBAqKyuxd+9eeHjU/eG+/PJL9OjRA2PGjMGkSZMwYsQIfPLJJw55PcQ9tHWwAwDzR3WFh0SI81nlOJx2m/fj6/QGnDV9eQ7uEsDbcdneHRrK4lehSg29gYFEJECUv5ejm+M0xvU0DsWcvFGCSo3t5RP4kHHbOJlheNdAi3tMR3UPBgC7XOusn1OMwc7k3vZPggaA+01T6Y9eu+2UPb0ODXZGjRoFhmEa/Gzbtg2AsYt/1apVKCgogFqtxv79+9Gtm3liWkBAAJKSklBRUQGlUoktW7bAx8f2fATSfrXlMBYr2FeGOYmdAQD/PXqD9+On5qtQqdHB10OMuHD+akmNNQU7x9OLodbqeTtue8cG3GEKDwiF7jkDqzW6BvugU6AXavUGHL9uv0DBGtzNkRWfFyO7GYOd05mlqLJD0HbzdiWuFlRALBRgfK/Qlp/Ag+hgHyR09IOBAX68kNcm57SG0+bsEOIojujZAYDZwzoDMObWFCj5vTM6xeXrBEDE45dn91BfBPlIodEZcCVfxdtx27s8B70HnZ1AIMBdsUEAgDOZZQ5ujVFrPi+6BHkjKsATWj2DP2+W8N6mX0y9OsNiguDn1Xb5XmyhxO9NdXicCQU7TkxvYKDVG1rekfCqNXdqfOjg54mBnfzBMHVd0Hxhgx0+h7AA45dPH1O9nr+yy3k9dnuWY+pdbGlmT3vU35SkfN5J3m+t6QkWCAQYEWMM2k6k8x/s/JxiTBKe3LttZyVP7RMOqUiIK/kqpOY5180PBTtOymBgMOM/JzD6/w6jQq1t+QmEF1UaHVex1RF31VP7GhPrf/qL327gizlKAHVfFHzqywY7pnMQ27EBdyQFOw0kmN7DKbnKBksZtLWaWj1KqmoBAJF+1uVWDetqDHb+uMHvDMybtytxJV8FkVCA8T3bNtjx85JiTJwxr+qHC87Vu0PBjpM6n12GizlK5JTV4NcU55zK547YLxm5hxi+bVDK/U4Te4dBKICpOmk1L8csUqlRoFJDKAB6RfC/9lvfKGM1W+rZ4U+eg3oXXUHnQC/4eUlQqzMg1cFDp+znhbdUBLmndTV6h3U1zsi6WlCB4kpNC3tbbrcpX2ZETBC3xlhbmtzHmBB9KM15ZswBFOw4rV/qBTjfnc1xYEval7ouacfMgAnx9UCi6UPwp4v89O6wvToxIT7wlvFfNJ3t2blZXAVlDfVC8iGXhrGaJBAIkBDlBwA4n+XYvJ36Q97W1q4K9JGhR5ix8vjJG/wMZTEMg92mmj/39XfM0g0jYoIgFADXCiuRr3Se4o8U7DghhmHwa72cjVOZpcgq4ecunzQvxwkSQ6f2MQ5l8TWj4WKuMdjp3cGPl+Pdyd9bio4BxuAwhYaybMYwjMOS5F0Fl7eTVe7QdtiaSD48ht+hrHNZZcgqrYaXVMSVhWhrfl5SLo/v2DX7FUm1FgU7TuivHCXylGp4S0VcQun356h3py2wd9SRDhw+mNDLOJR1taCCl5WKU3LKAQB97Lh4Yl/TnfZfpnOR1lPWaFFda5zGTz07jUvgkpQd3LNjY5mK4THGXtw7k5Q1On2rSjmwlZzvjQ+Dl9RxS1/ebZpaf8RJygMAFOw4JbZX5564UPxzcEcAwM7zOU675og7cYYpv/7eUvQzBQ/Hrtn2YcEwDDeMZddgx3TsC5S3YzN2JlaQj7TBitPEqG+UAgIBkF1ag9sV/OW7WKuuB651w96DuwRCLBQgq7Qa2aXV0Oj02HTkBga+uR9j3j+CEityeWp1BuwxVU2ekeDY1cdHdjP2WB2/Xgy9k3xvUbDjZBiGwS+XjG/YSfFhmNArDD4yMbJLa7jy8cR+2A8vR99R3xVrvDM6auOdUZ5SjZKqWoiFAl6LCd6JDc4uZJfbfXFDd+cMAbez8/WQoFuIMd/FkXk7tvbs+MjEXK/opA+PYdBb+/HOr1dRodEht7wGL+5Msfh6OpxWhPJqLYJ9ZdxML0fpG+kHXw8xlDVaXHSS3l4KdpzMlfwKZJfWwFMiwqjuIfCUinCPabXaZDsUnyLmHFE9uTFsN7Ctd0bsEFa3UF+79hL0ilBAJBTgdoUGBSrnKxXvSpwl4HZ2CR39AADnHJi3w0du1fR+xhy9CrUOKrUOoXIZlk3oDolIgH2phfjmjGVrTbH7Te8XwWvh0NYQi4RcHaFj150jb4eCHSeTklsOABjQyR+eUuOXEzv8wCaaEvuo1RlQaFrTxdF31X0jFZB7iKFS62zKg2GHsNjp4fbiKRWhW6jxTvuvbHqf2oILuCnYaRbbI3I5zzHvN53ewAX2tuT4PZLYGadeGoN9S+7GnkUjcGTZaCwYHYPnx3cHALzxUyrO3ipt9hj5yhocvGqc6j3TlPrgaOwN21Ebh+L5QsGOk7mSXwEAiAv35baxme0008W+CpRqMAwgEwsR5NP29SnqE4uE3EwNW2Y0sMGOvWZi1dePrbfjJN3WripP6Ry9i86OHZZlPzPbWoFpsVapSIhgH5lNxwqReyA21BfxHRRcD+zjd0VjWNdAVNfq8Y9PkvHN6aZ7eL45nQMDY6yQ3jXYOdaGZHt2/sopd4p18yjYcTJXC4xFsnqE1eVX9IqQQyAwXlzOuJqsu8gpN07v7+Bnfc0Me+DujFqZt1Op0XGF/uyZnMzqS8tG8IJq7FimW6gPBAKguFLDa1E+S7F/p3A/+yzWKhIKsHn2QEyMD0Ot3oDl31/Eun3XGuynNzD4+nQWAHATWpxBpL8ngnxk0OoZh/W+1UfBjhNhGIa7S+lRr2fHWyZGjClav0RDWXbjLPk6LHbBwwvZ5a0q1rf1eAYqNDp0CfK2a3Iyi+2BvJijpJmDNqAaO5bxkorRyVTfKa2g7Xt32uLv5C0TY8M/+2Px2FgAwAcHrmPTkRtm+xy9fht5SjUUnhLcG9+2y0M0RyAQ1OVV3Sp3aFsACnacSoFKDWWNFiKhADEh5l2Rvdm8HRrKshtn+5KJ9PdCdLA39AbrV0Yuq6rFJ0dvAgCWjuvWJgmL3UJ94CERolKjw83iSrufzx2ptXoUV5rWWnKSoNuZsT3gVxywbERb5VYJhQIsHtsNy+815vC88+tVrPzhEv64UYxtJzKw7Nu/AAD39490ulIFbPHHcw6udA1QsONUrpp6dboGe0MmNn/T9u5gDHYob8d+nDExdGi0segYu2q5pTYdvYEKjQ5x4XJM7h1uj6Y1IBYJufcpJSm3Djvt3EsqgsKz7ddmczVsD/hVR/bstFFQ+vSoGCwcHQMA+OzkLfxzczJe/ykVxZW16BLkjSfvjm6TdlijPzdjrszhJSko2HEiVxrJ12HVn5Hl6DeNu3LGxNAhpgrayRmW9+zcrtBg+x+ZAIBlE7rZJZ+gKXUroJe32TndSV553WxAZ8gbc3bsZyWb69iWHNET/Nz4bvjvIwNwX0IHBPnI0MHPE29Nj8fvS+5GmMKjzdphqT6RfhAJBShUaZCndGy+qePqSZMGrjaSr8PqGa6AUGD8IitUaZzyje3qnLlnJzVPBZVaC7kFK7H/kpIPtdaA3h0UGN09xN5NNNOHXTaCkpRbJdeUJE/JyZZhZ61eL6yETm+AWNR29++OCHYEAgEm9DIWm3UFnlIR4sJ9cSlXhfNZZQ79bKWeHSfCjjvHNdKzU7+OSQolKfPOYGDq7qqdqGcnVO6BzoFeMDDAmUzLhrJ+NVXgntYvos17B/qZenZS81XQ6Bw/3dTVOFuSvLOL8veCl1QEjc6AzDZcLJlhmLpK1/S3ahaXt+PgJGWnDnb0ej1effVVdOnSBZ6enujatSvefPNNs2EchmGwcuVKhIeHw9PTE2PHjsX169cd2OrWUWv1uFlcBaDxnh2gft5OeVs1q90ortSgVm+AUGAMMJzJkC7G3p3kmy0HOyWVGi6/xxF3f1EBnvD3kkCrZxxW/8SV5ZY7R1FLVyEUCribwLYcyiqpqoVaa4BAAIQr6G/VHGdJUnbqYOff//43Nm7ciI8//hhXrlzBv//9b7z77rv46KOPuH3effddfPjhh9i0aROSk5Ph7e2NCRMmQK12rXo06UWV0BsYKDwlCGviy7Y3VVK2mxzTXVqY3AOSNuwKt8SQaGPezp8WJCn/nloIA2MMjKMCWrc4oS0EAgFX2dZZ1sRxJbn1aj0Ry7BDWVfbMLhme+BCfGWQip3r88LZsMHO5TylQ4sLOvVf6Y8//sC0adMwefJkdO7cGQ888ADGjx+PU6dOATD26qxfvx6vvPIKpk2bhj59+uCzzz5DXl4edu/e7djGW4mdTdAjzLfJoYf6M7IoSZlfzjx8MMSUt3MpV4lKja7ZfX+9VAAADq23wSYpn3fgmkWuqq1n+LgDRyQpO1uZCmcWFeCJQG+pw4sLOnWwM2zYMBw4cADXrhmrRv711184fvw4Jk6cCADIyMhAQUEBxo4dyz1HoVBgyJAhOHnyZJPH1Wg0UKlUZj+Oxnbx9YxouvhbXLgcYqEAJVW1yHdwZru7ceYPrw5+noj094TewOBsMyvfK6u1+CPduLTERAcGO/1M000vUJKyVfQGBgVKGsayVo+wtp9+Xndz1Pa9p65GIBBg1bR4JD0xBD3D7V/JvSlOHey8+OKLmDlzJnr06AGJRIKEhAQsXrwYs2bNAgAUFBjvYkNDQ82eFxoayj3WmDVr1kChUHA/UVFR9nsRFmAYBodMi7jdHRvc5H4ekrokZSouyC9n7tkB6vJ2TjczlHXgaiF0BgbdQ30R7cD1cdgk5YziKpRV1TqsHa7mdoUGWj0DkVCAEF/b1lpqT9ienZyyGqjU1lcabw1nvjlyRpP7hGNY1yBucWtHcOpg55tvvsGXX36JpKQknDt3Dtu3b8f//d//Yfv27TYdd8WKFVAqldxPdnbTC6y1hasFFchXquEhESKxa2Cz+7L1dtjV0Qk/6j68nPNOjS273lz9GjYAvrtbUBu0qGn+3lJEB3kDoN4da7D5OmFyjzadQu3qFF4ShJtKcVxro96dHCe/OSINOfUVtWzZMq53p3fv3njkkUewZMkSrFmzBgAQFmbsqi8sLDR7XmFhIfdYY2QyGeRyudmPIx009eoM7xrUYrnv+A60bIQ9OPs00n5c0m/T+VqZJcbZfI7s1WGxQ1nnKdixGM3Eaj12KOtKGwU77M1RJP2tXIZTBzvV1dUQCs2bKBKJYDAYAABdunRBWFgYDhw4wD2uUqmQnJyMxMTENm2rLdhgZ3SPlgvA1fXsUJIyn5yxoGB93cN8IRULoazR4lYT9USyTNs7OWAW1p0STDMwzjvBmjiuwtmHUp1ZD9NCt1fbaI2s3DLTrDn6W7kMpw52pk6ditWrV+Pnn39GZmYmdu3ahbVr12LGjBkAjIlPixcvxltvvYUff/wRKSkpmD17NiIiIjB9+nTHNt5CpVW13BeCJcFO9zBfSEQClFdrua5UYhtljRYVpllOzhrsSERC9DR9oDc2lKU3MMg2fQB3Mg0hOVKCqSfqQnY5rYBuoTzKA2k1tmenLVY/r1BroVI79+cFacipg52PPvoIDzzwAJ5++mnExcXh+eefx7/+9S+8+eab3D7Lly/HokWL8OSTT2LQoEGorKzE3r174eHhXIXhmnLkWhEMjPFiteTCkYlFXEIeVVLmB3tHHegtdWgCXUv6RjY9hJlXXgOtnoFUJGyyTlNb6hHmCw+JEBVqWgHdUuzQCC0VYb266ecVdu/xZv9Ofl4SeMtoxSVX4dTBjq+vL9avX49bt26hpqYGN27cwFtvvQWpVMrtIxAIsGrVKhQUFECtVmP//v3o1q2bA1ttnYNXbwMA7rGgV4fVu5kvPWI9V/mS6cMustlIHkxWqbFXJzLAE6I2XPizKWKRkGvvOaq3YxEaxmq96GBvSEQCVGp0du/xph441+TUwU57wE4lvrtb01PO79SnA83I4hM3/u7kH159o4x/90t5Suj0BrPH2OTkzoGOH8JisUNZVFzQMvQl2noSkRAxIW1Tb8fZ8/tI4yjYcaACpRoFKjWEgrrEY0vEUyVlXrlK1droIB/4yMRQaw24XmQ+NMQmJ3d0guRkFjtdnpKUW1Y/byzCz/HDkK4oji0uaOck5RwX+bwg5ijYcSA20bRbqC+8pJaP/XYLNc7MUal13PAFaT1XKRAmFAoQ38GYm3DnulN1PTvOFOwYZ2RdK6xAVQvLXLR3bG9BgLfUqs8CUoddQPlqIfXskIYo2HEgNveCXUvIUlKxEHHh7Jce5e3YypVyJdj3yl93/N3Z6eidnGgYK1TugQiFBwwMvU9bksfljVGvTmt1D2ub6eeucnNEzFGw40Bszw67SrQ16vJ26EvEVq704cW+V87VWyOLYRiuh6+TE/XsAPXq7WTTUFZzXOk96KzYYayM4iq7rq7tSjdHpE6r+kszMjJw7Ngx3Lp1C9XV1QgODkZCQgISExNdZsq3oxkMDC5mGwMVNvHUGnUzssr5bFa7o9bqUVxpXL8p0gU+vAZ1DgBgTMIsrapFgLcUtys1qK7VQygAIp1sYcKEjn74OSWfkpRbkOfky5W4gmBfGQK8pSitqsX1wkruM5JPGp0etys1ACgwdTVWBTtffvklPvjgA5w5cwahoaGIiIiAp6cnSktLcePGDXh4eGDWrFl44YUX0KlTJ3u12S1klFShQqODh0TILe5pjd6mnp1LuSoYDAyETjDd2BWxXzLeUhEUnhIHt6Zlwb4ydA/1RVphBf68WYJJvcO5IawIP09Ixc7VWVuXpFwOhmEgEND7tDE5NIxlM4FAgB5hvvjjRgmuFKjsEuzklavBMICXVIQAb2nLTyBOw+JPxoSEBHz44YeYO3cubt26hfz8fJw9exbHjx9HamoqVCoVfvjhBxgMBgwcOBDffvutPdvt8th8nfgIBSStWPQvNsQHMrEQlRodl5xKrFd/JparfBGzi8WeSC8GUD9fx/l6BXpFKCARCVBcqaGK381gh0ZcoXfRmbHFBe1VSTnHVKYi0oU+L4iRxd+y77zzDpKTk/H0008jKiqqweMymQyjRo3Cpk2bcPXqVURHR/PaUHfDJSe3Il8HMBZt6xVBlZRtxX7JOHtBwfqGxxhXNT95owQAkGUKdp0pOZnlIRFxy1zQoqBNy3ORwpbOjl024mqBfZKUc7ig1PluLEjzLA52JkyYYPFBAwMDMWDAgFY1qL24kMPm6/i1+hhshVqa6dJ6rpgYOrhLAIQC4GZxFfKVNch0ogVAG9OPKy5IScqN0ej0KKqgPBA+sNPPr+TbZ9mI+j07xLXYPMD/888/Y9myZVi6dCm+//57Ptrk9mp1BlzJM9559LNy2nl9vesVFySt44ozKxSeEu5vv/2PWzhwpRAAEBvq48hmNaluBfRyxzbESeWXqwEAHhIh5YHYKDbEF0KBcYFlNpGYTzk03OiybAp2Xn31VSxfvhwCgQAMw2DJkiVYtGgRX21zW1mlVajVG+AtFSEqoPUXDZuAdzlPCT2tLN0qOS7YswMAw0xDWZuO3EBVrR5DowNwd6zlS460JTZJOTVPBY3OflOCXVX9ISzKA7GNp1SEzkHG4dyr+fzn7dAwluuyKtg5c+aM2e9ff/01zpw5g3fffRfr1q3DTz/9hC+++ILXBrqj9CJjjkV0sI9NH25dg33gJRWhqlaPm7dpZenWcNXE0GGmJGUAiFB4YMM/+0PcikT3ttAxwAsB3lLU6g12+QJyda4acDurODsmKdMwluuy6tPxqaeewuLFi1FdbfyDR0dH4/3330daWhpSUlKwceNGl1px3FFuFhsDk67BtiWUioQCrpLy5Tz7Vg11Rzq9AQUq4xCCq9U3GdgpAH5eEsjEQvz3kYEI9JE5uklNEggE3LDbRUqmb8BVA25n1d2UpHyF5yRljU6PQpVxaIx6dlyPVcFOcnIywsPD0b9/f/z000/YsmULzp8/j2HDhuGuu+5CTk4OkpKS7NVWt3GjXs+OrdgZWZfz6EvEWkUVGugNDCQiAUJ8nTdYaIynVISfFo7AviUj7VJPhG/sQrcpVASzAW4YS0HBDh+4GVk89yLmmXKrvKQi+Hs5f00uYs6qooIikQgvvPACHnzwQcyfPx/e3t74+OOPERERYa/2uaW6nh0+gx3q2bEWOxMrXOHpkkUZo5x09lVjuJ4dSqZvIJdW0eYV29udXlQJrd7QqjpmjaEaO66tVe+C6Oho/Pbbb5gxYwbuvvtubNiwge92uS2GYXDzNtuzY3tdlF4RbCVlpV2mWrozWr247bBlEq4VVqCmlpKU66MaO/zq4OcJH5kYtXoDMor5K7hKycmuzapgp7y8HMuXL8fUqVPxyiuvYMaMGUhOTsbp06cxdOhQpKSk2KudbqOkqhbKGi0EAqBLkO3BTrdQX0hEAqjUOqpQa6Vc+pJpM6FyGYJ9ZTAwQGo+9e6wDAaGGx6hoJsfQqGAy9u5ymOSMiUnuzargp05c+YgOTkZkydPRlpaGubPn4/AwEBs27YNq1evxkMPPYQXXnjBXm11C2yvTgc/T3hIRDYfTyoWIjbEeGHTUJZ1clywxo6rEggE6BtJQ1l3Kq7UoFZvgFAAhCloXSy+cMFOPn+fiVRjx7VZFewcPHgQn376KZ566ins2LEDx48f5x4bM2YMzp07B5HI9i9wd3bjNn/5Oiw2byeVkpStwvbsRNIddZvo3cEPABXBrI99D4bKPXjLLSFAnF16dmgYy5VZdXXFxsbik08+wbVr17Bp06YGK5t7eHjg7bff5rWBubm5ePjhhxEYGAhPT0/07t3brN4PwzBYuXIlwsPD4enpibFjx+L69eu8toFPbD0cPvJ1WPHsCujUs2OVXFO3NPXstA12RtZfNCOL44rLlbiCHqYkZX57dmgYy5VZFexs2bIFBw8eREJCApKSkrBx40Z7tQsAUFZWhuHDh0MikeDXX39Famoq3n//ffj7+3P7vPvuu/jwww+xadMmJCcnw9vbGxMmTIBarbZr21rrhmkYyx49OzT93HIMw9AXTRtjp8jfLK5ChVrr4NY4B1dcrsQVsMNYeUo1lNW2v9eoxo7rs2rqeb9+/RpUUbanf//734iKisLWrVu5bV26dOH+zTAM1q9fj1deeQXTpk0DAHz22WcIDQ3F7t27MXPmzEaPq9FooNHUrZuiUrVdj4g9enbiwuUQCIBClQa3KzQIdrGaMY5QWlULtdYAAAj3o1yJthDkI0MHP0/kltfgcp4KQ6MDW36Sm6OZWPYh95Bw77W0wgoM7hJg0/Goxo7rs7hnxxHTmn/88UcMHDgQDz74IEJCQpCQkIDNmzdzj2dkZKCgoABjx47ltikUCgwZMgQnT55s8rhr1qyBQqHgfqKiouz6OlganR5Zpcau0Bgee3a8ZWJ0CTQGT9S7Yxn2wyvEVwaZmPLM2gotXmuOehfthysuyEMlZaqx4/osDnZ69eqFHTt2oLa2ttn9rl+/jvnz5+Odd96xuXE3b97Exo0bERsbi99++w3z58/HM888g+3btwMACgoKAAChoaFmzwsNDeUea8yKFSugVCq5n+zsbJvbaomskmoYGMBHJua996Unm6TM4xi1O8stp3wdR2CHsmjZCKNcmnZuNz3CTctG8FBJmZKTXZ/Fw1gfffQRXnjhBTz99NMYN24cBg4ciIiICHh4eKCsrAypqak4fvw4Ll++jIULF2L+/Pk2N85gMGDgwIFc0nNCQgIuXbqETZs2Yc6cOa0+rkwmg0zW9kM9N+oNYfF9dxAXLseei/l2WfzOHeVQQUGH6MNNPy93bEOcBCXJ208P04KgfPfsENdkcbAzZswYnDlzBsePH8fXX3+NL7/8Erdu3UJNTQ2CgoKQkJCA2bNnY9asWWYJxLYIDw9Hz549zbbFxcXh+++/BwCEhYUBAAoLCxEeHs7tU1hYiH79+vHSBj5dKzQGO2xdHD7Zaz0Yd0XDB47BDmPdKqmGsloLRTvOf6hQa6FS6wBQzo49xJl6dtIKKmAwMDYtCUM1dlyfVQnKADBixAiMGDHCHm1pYPjw4UhLSzPbdu3aNW7Ke5cuXRAWFoYDBw5wwY1KpUJycjIvPUt8u1ZoDES6hfKXr8Nip1reuF2JWp0BUjHV7GgOzYJxDD8vKToFeuFWSTVScpUYERvk6CY5DJs3pvCUwEdm9UcxaUHnQG9IxUJU1+qRU1aDjoGtH4KiYSzX59TfiEuWLMGff/6Jt99+G+np6UhKSsInn3yCBQsWADBWZV28eDHeeust/Pjjj0hJScHs2bMRERGB6dOnO7bxjbhu6tnpFsp/z06EwgO+HmLoDAw3XEaaRj07jsMtCppb7tiGOBiXN0bvQbsQi4TcjeUVG4eyaBjL9Tl1sDNo0CDs2rULX331FeLj4/Hmm29i/fr1mDVrFrfP8uXLsWjRIjz55JMYNGgQKisrsXfvXnh4ONd0Yq3ewK12HmuHnh2BQMDr7AN3RytNOw6bt9PeZ2RR76L9dQ9liwu2fnifauy4B6fvO50yZQqmTJnS5OMCgQCrVq3CqlWr2rBV1rtVUgWtnoG3VGS3O7keYXKczizjtUS6O6rS6FBuKjRGd9Vtj102or2vkUUzseyPzdux5QaQauy4B6fu2XEnbHJyTKiv3eo0dKckZYuwvTpyDzF8PejDq63FdzAWwcwtr0FxpablJ7gpGkq1P3ZGli2zVKnGjnugYKeNcMnJIfwPYbHqzz4gTasbwqIuaUfw9ZAgOshYBDOlHdfbYaed00ws+2Fr7WSUVKGmVt+qY1BysnuwKtjJy8vD888/3+jyCkqlEsuWLUNhYSFvjXMn9kxOZrHHLlCpUV7dfPHH9iyXauw4XJ9IPwDtO2+HHR6hnB37CfKRIchHBoapu+G0FiUnuwergp21a9dCpVJBLpc3eEyhUKCiogJr167lrXHuhL3Q7JGczPL1kHAXJOXtNI3t2aEPL8fhZmS102CnVmdAYQXl7LQFWyduUI0d92BVsLN3717Mnj27ycdnz56NPXv22Nwod1OrMyCj2LjauT17doB6VUNp2YgmsT07EbQAqMO090rKhSo1GAaQioUI9JY6ujlujQ12WrtsBA1juQergp2MjAx07NixyccjIyORmZlpa5vcTmZJFXQGBr4yMcIV9v2CrbuLoZ6dptQlhtKHl6P0ilBAKACKKjQoVKkd3Zw2V3+5Elsq+5KWsQVXW5vLSMNY7sGqYMfT07PZYCYzMxOenvSGuBM7hBUT6mP3bP4e4RTstITqmziep1TE9XK2x6EsmonVduoPYzEMY9VzqcaO+7Aq2BkyZAg+//zzJh//7LPPMHjwYJsb5W7Yaefd7LAm1p3YC/taoXE9GGKOciWcB5u3k9IOh7Lyymkota3EhPhAJBSgrFqLogrrSh1QjR33YVWw8/zzz2Pr1q14/vnnzWZdFRYW4rnnnsO2bdvw/PPP895IV3erxJiv0yXY2+7nqr8eTLap+5XUKVAacyVkYiGCfChXwpG4vJ12OP28bkYg9RbYm4dEhC6mUgdXrMxlpBo77sOqYGf06NHYsGEDPv74Y0RERMDf3x8BAQGIiIjAhg0b8NFHH+Gee+6xV1tdVl4bdlmLRULEmmr5tDYhz53l1FuPiD68HKu3afr5xRyl1cMLri6XenbaVGtzGSk52X1YvVzEv/71L0yZMgXffPMN0tPTwTAMunXrhgceeACRkZH2aKPLa+sckR5hclzOUyGtoAL3xoe1yTldBdU2cR5x4b6QiAQorapFbnlNu/pCyaO12dpUXLgcey7mW52knF1Ki7W6i1atjdWhQwcsWbKE77a4JZ3egALTbJPINrpg+FgPxl1RQUHnIROL0D3MF5dyVUjJUbabYIdhmLpaTzSM1Sbqpp9b95mYaUpB6Bxk/xQEYl+tWi7i22+/xX333Yf4+HjEx8fjvvvuw3fffcd329xCgUoNAwNIRUIE+cja5Jzdafp5k3LL6U7NmXCLgrajvJ2SqlpodAYIBECYnUtRECN2+nl6USXUWsuXjbh52xjsRFOw4/KsCnYMBgMeeughPPTQQ0hNTUVMTAxiYmJw+fJlPPTQQ5g5c2a7G3tvCduTEO7n0Wb1NNjCgpk2rAfjrupyJSjYcQZsknJ7WjaC/UwI8ZVBKqblCdtChMIDoXIZdAYGf2WXW/Qcg4HBrRLjzRH17Lg+q660Dz74APv378ePP/6Iq1evYvfu3di9ezfS0tKwa9cu7Nu3Dx988IG92uqS8pRtP2wS7CtDoLfUpvVg3BXV2HEubLDzV055uymVQDV22p5AIMDAzgEAgDO3yix6TmGFGjVaPcRCARUUdANWBTtbt27Fe++9hylTpjR47G9/+xveffddbNmyhbfGuYO6pQna9mLpQSugN2AwMHUJyvRF4xS6h/rCSypChVqH60WVjm5Om8ij3kWHGNTJHwBwOrPUov0zTENYHQO8IBFRD5yrs+oveP36dYwdO7bJx8eOHYvr16/b3Ch34qi7OHYo6wolKXOKKzWo1RsgpFwJpyEWCdEvyg8AcNbCO25Xl0O9iw7B9uyczSyD3oJexAxKTnYrVi8XUV5e3uTjKpUKHh70JVJfroN6EtgkZerZqZNjCjzD5B50p+ZEBpruuM/csuyO2xZqrd6qBFV7oGEsx+gR5gsfmRgVGp1Fn4tsz04XCnbcglWf+ImJidi4cWOTj2/YsAGJiYk2N8qd5JoqcLb1XVwc27OTb/16MO6K8nWcU39TsGPvnp3c8hqMef8IBq3ej4NXC1t+gp20ZZFRUkcsEiKhox8AywLrjGIKdtyJVcHOyy+/jE8//RR///vfcerUKahUKiiVSvz555948MEHsWXLFrz88sv2aiveeecdCAQCLF68mNumVquxYMECBAYGwsfHB/fff7/ZUhaOVL+eRlt/sMWG+kAoAMqqtbht5Xow7oruqJ1T/07+EAiAWyXVdnuvllfXYs6WU8gtr0GFWod5289g4+EbDrkRyKWCgg4zyDSUdTqz5cCaHcaiYMc9WBXsDBs2DF9//TUOHTqExMREbrmI4cOH49ChQ/jqq68wfPhwuzT09OnT+O9//4s+ffqYbV+yZAl++uknfPvttzhy5Ajy8vJw33332aUN1iqr1kKtNQBo+xwRD4mIG2umejtGVLXWOck9JOhuWgHdHr07tToDHt9+BulFlQiTe+D+/pFgGODfe69i1/lc3s/XnCqNDuXVWgCUoOwIAzubkpQzSpsNdHV6A7JM084p2HEPVldQnjFjBiZMmIDffvuNS0bu1q0bxo8fDy8v+1QDraysxKxZs7B582a89dZb3HalUolPP/0USUlJ3JpcW7duRVxcHP78808MHTrULu2xFDtsEuwrg4dE1ObnjwuT4+btKlwtUOHubsFtfn5nQ4svOq/+nfxxtaAC57LKeF/iZPf5XJy5VQZfDzG2PzYY3UJ9EK7wwMeH0vH+79cwqXd4m12fbMDt6yGG3INW0W5r/aL8IBYKUKBSI6esBlEBjX8W5JTVQGdgIBMLESanPFR30KosTS8vL8yYMQPLly/H8uXLMX36dLsFOgCwYMECTJ48ucFMsLNnz0Kr1Zpt79GjBzp27IiTJ082eTyNRgOVSmX2Yw+OLmBHlZTN0eKLzotLUrZwWrClGIbB9pOZAIAFo2PQPcwXAoEAC++JQZjcA7nlNfjiz1u8nrM5OTSU6lBeUjH6mmb/HU4ranK/+kNYbVUMltiXVcHOyZMnsWfPHrNtn332Gbp06YKQkBA8+eST0Gj4HXPfsWMHzp07hzVr1jR4rKCgAFKpFH5+fmbbQ0NDUVBQ0OQx16xZA4VCwf1ERUXx2mZW3fo3jvlg41b6pdXPAdT17FCBMOczwBTsXMpV8Tpb6lxWOS7nqSAVC/H3gXXXuYdEhMVjYwEAGw6lo0Kt5e2czaHkZMeb0CsUAPDrpaa/I2gmlvuxKthZtWoVLl++zP2ekpKCefPmYezYsXjxxRfx008/NRqUtFZ2djaeffZZfPnll7xOaV+xYgWUSiX3k52dzdux63P07B+21k56USV0eoND2uAslDVaVGh0AChXwhl1DPBCiK8MtXoD/rxZwttxPzf16kztE4EAb6nZYw8MiER0sDfKqrXYfPQmb+dsjqM/EwgwMT4cAJCcUYrSqtpG96EFQN2PVcHOhQsXMGbMGO73HTt2YMiQIdi8eTOWLl2KDz/8EN988w1vjTt79iyKiorQv39/iMViiMViHDlyBB9++CHEYjFCQ0NRW1vboPZPYWEhwsKaHveXyWSQy+VmP/bAVUp1UAG7SH9PeEtFqNUbuGmU7RX7JRPgLYWX1OpUNWJnAoEA40133Hsu5vNyzOJKDX5JMd69zxnWqcHjYpEQy8Z3BwD873hGm8xadPTQNgGiArzQK0IOvYHBvtTGe3duUs+O27Eq2CkrK0NoaCj3+5EjRzBx4kTu90GDBvHaSzJmzBikpKTgwoUL3M/AgQMxa9Ys7t8SiQQHDhzgnpOWloasrCynqPdTN8XUMQmxQqEA3UxDWVfaed4OTTt3flP6RAAAfrtcAI3O9qGsXedyUas3oG+UH/pE+jW6z73xYegbqUB1rR4fH7R/9XcaxnIOE01J8I0NZekNDP7KKQdQV6+MuD6rgp3Q0FBkZGQAAGpra3Hu3DmzGU8VFRWQSPibYeDr64v4+HizH29vbwQGBiI+Ph4KhQLz5s3D0qVLcejQIZw9exaPPvooEhMTHT4TCwDKqo1dpI5MiGWHstLa+bIRXHFH+pJxWoM6ByDEV4YKtQ7HrhXbfDy2cNzk3k338goEArxwbw8AQNKpLG66sb3QMJZzuNc0lHUivRjKGvN8rbSCClSodfCWihBnWmOQuD6rgp1JkybhxRdfxLFjx7BixQp4eXnhrrvu4h6/ePEiunbtynsjm7Nu3TpMmTIF999/P+6++26EhYVh586dbdqGphxbPhoXVo5Dt1DHXTDsxdrek5SpkJvzEwkFmNzH+CW052Kezce7lGsM8OM7KJrdb1hMEO6KDYJWz2Dd/ms2n7cpWr0BBSpaiNYZxIT4IDbEB1o9g/2p5kVo2SC5fyd/iGlZGbdh1V/yzTffhFgsxsiRI7F582Zs3rwZUmld0t+WLVswfvx43htZ3+HDh7F+/Xrudw8PD2zYsAGlpaWoqqrCzp07m83XaUsCgQB+XlKHrsPEFmtr79PPabVz18AOZe1LLbRpVlZZVS0X4PaKaD7YAYBlE4y5Oz/9lddk0qqtClVqGBhAKhIi2Edml3MQy03ta3yv/e94Bgz1FgY9lWEMdthqy8Q9WPUtHBQUhKNHj6KsrAxlZWWYMWOG2ePffvstXnvtNV4bSGzDDmPlltdA1UbTa51RDvXsuIT+Hf3Qwc8TVbV6/GxDovLlPGOvTqdALyg8Wx5a7xPph14RcugMDH7moVepMewQVrifB9VucQKzEzvBRybGlXwVfjclKjMMg9OZFOy4o1Z1OSgUCohEDSuOBgQEmPX0EMdTeEkQbpoNdq0d9+7UVU+mYMeZCQQCrh7OGz9dRnZp63JoLuUpAQDxFvTqsGYkdAAA7LTTEhJ5SnZ2Jr0HnYGflxSPDu8MAFi//zoMBgY5ZTUoVGkgEQnQz1R8kLgHGpBsB3q08xlZaq0exZXGacUU7Di/+aO6om+UH1RqHZ7ZcR7aVtSISsk1Bju9Olg+m+Zv/SIgFADns8rtUqqBkpOdz7wRXeArE+NqQQV+u1zA9erEd1DAU9r2S/wQ+6Fgpx3oEW78wL+a3z5nZLHTfb2kIvh50XpEzk4qFuLjfyTA10OM81nl+OiA9VPCL+da37MT4uuBu2KNa8jZY4FQqrHjfOr37ry4M4VbOoSGsNwPBTvtANuzk9ZOe3bq19gRCChXwhVEBXjh7Rm9AQCfHs9AebXlScMqtRaZpinkLc3EutN9/Y1DWbvP5za7KnZr5JqS5B21fAxp3BN3RyOhox+UNVqcyyoHQMGOO6Jgpx2oq7VTwfsHuCug4QPXNKVPOOLC5aiq1WP7H5Yv1plqSk7u4OfZYImIlozvGQYvqQhZpdXc1HW+cLWe6H3oVHw9JNjx5FA8ZMoVEwsF3FptxH1QsNMORAd7QyISoEKj43o52hOqnuyaBAIBnh5lrNu19Y8MVJnWNmvJJTZfJ8L66reeUhGGdQ0CABxLv23185vCMAwNYzkxmViEd+7vjU0PD8AnswdYHSQT50fBTjsgEQnRNdgHQPssLkg9O65rUu9wdA70Qnm1Fl+dyrLoOWywY+0QFuvubqZgh4cqzqyyai3UWmOidbiD1sojzRMIBLg3Pgz39AhteWficijYaSe4vJ3CdhjsUM+OyxIJBZhv6t3ZdORmg9L+d9IbGJw0rZreJ7J1wc6IGGOwc/ZWGaprLetNagkbcAf5yOAhoVk+hLQ1CnbaCXZG1pV2OCOLDXYiqWfHJc1IiESXIG8UV2qw5pcrze6bfLMEhSoNFJ4SJHYNbNX5ugR5o4OfJ2r1BiSbqunaKrec8nUIcSQKdtoJtmenvS0boTcwKFCyS0U4ZvV5YhupWIh37jPOzNpxOhsn0pseXmKnjE/uEw6ZuHU9KAKBAHfFGnt3jl/nZyiLZmIR4lgU7LQT7IysjOIqm9YccjWFKjV0BgZioQDBvrQekasaEh2IR4Z2AgC8uPMiyhpZv0qt1ePXS8ay/9P7dbDpfGy9nWPX+UlSZoexIvwoX4cQR6Bgp50Ilcvg5yWB3sAgvajS0c1pM+wQVrifB0S0HpFLe2FiD3Tw80R2aQ0e/O9Jrlgka/+VQlRqdOjg54mBNk4dHtY1EAIBcK2wEoWmlcptkUd5Y4Q4FAU77YRAIOBWQG9PxQVpTSz34SMTY9ujgxAm90B6USUe2PgH9lzMg0anR02tHl+fzgYATE+IsHmhTX9vKfqYZnPxMZTFJcn701AqIY5AwU47EscuG1HQfpKUc0yF3CLpS8YtxIb64vunhyE62Bt5SjUWJp3HwLf2o88bv+GYKSixdQiLNdBURZddZ8sWdTV2aBiLEEegYKcdaY9Jytmlxi+ZKAp23EYHP0/snD8MC0fHIEzugQq1Dlo9gwiFB54ZE4tYUw+mrdiihJfzbAt2amr1KDXlGEVSkjwhDiF2dANI2+neHoMdrmeHhrHciZ+XFM9P6I4l47rhQnY5gnyk6BjgxevaZ2xRwtQ8FQwGptVDY2yvjrdUBLknfeQS4gjUs9OOdAv1hUAA3K7QoKRS4+jmtAk22IkKoDtqdyQyrWPUKdCb90Veo4O8IRMLUVWrR2ZJVauPU5evQwvREuIoFOy0I94yMTqavvTbQ5KyTm9Avqm+SVQA9ewQ64hFQq4Y5+W81ue50UwsQhyPgp12hs3budIOgp0CU40dqUiIUF9KDCXWq8vbaX2wU1djh4IdQhzFqYOdNWvWYNCgQfD19UVISAimT5+OtLQ0s33UajUWLFiAwMBA+Pj44P7770dhYaGDWuz82OKCae1gRhabnNzB39PmqcikfYqPMObt2JKkTEOphDieUwc7R44cwYIFC/Dnn39i37590Gq1GD9+PKqq6sbPlyxZgp9++gnffvstjhw5gry8PNx3330ObLVza08zsig5mdiqfs8OwzCtOkZ2qSnYoRmBhDiMU08N2Lt3r9nv27ZtQ0hICM6ePYu7774bSqUSn376KZKSknDPPfcAALZu3Yq4uDj8+eefGDp0qCOa7dTYHIRrhRXQGxi3riqcU0o1dohtuof5QiQUoLSqFgUqNcIV1gfOWaYexo7Us0OIwzh1z86dlEpjV3JAgLHY19mzZ6HVajF27Fhunx49eqBjx444efJkk8fRaDRQqVRmP+1FxwAveEiEUGsNuGXDDBNXkG3KlaDkZNJaHhIRYoJ9AACXc63/nKip1aPYNPOR3oeEOI7LBDsGgwGLFy/G8OHDER8fDwAoKCiAVCqFn5+f2b6hoaEoKCho8lhr1qyBQqHgfqKiouzZdKciEtYtG+HuQ1k0fED4YEuSMjuU6ushhsJTwmu7CCGWc5lgZ8GCBbh06RJ27Nhh87FWrFgBpVLJ/WRnZ/PQQtfRXooL5nA9OxTskNbr1aH1Scr1A26qsUOI4zh1zg5r4cKF2LNnD44ePYrIyEhue1hYGGpra1FeXm7Wu1NYWIiwsLAmjyeTySCTyezZZKfGzsi6mu++w3canR6FFaYaO5SgTGxgS89OlinYoXwdQhzLqXt2GIbBwoULsWvXLhw8eBBdunQxe3zAgAGQSCQ4cOAAty0tLQ1ZWVlITExs6+a6DHZB0FQ3DnZyy2rAMICXVIQAb6mjm0NcWE9TsJNbXoMy0xpXluLWZqN8HUIcyql7dhYsWICkpCT88MMP8PX15fJwFAoFPD09oVAoMG/ePCxduhQBAQGQy+VYtGgREhMTaSZWM3qagp2cshooq7VQeLlfLgGXnEzDB8RGcg8JOgZ4Iau0Gqn5KgyPCbL4uWzODvXsEOJYTt2zs3HjRiiVSowaNQrh4eHcz9dff83ts27dOkyZMgX3338/7r77boSFhWHnzp0ObLXzU3hJuNozl/NtW9HZWWWXUo0dwp/4Dq1bAZ17H1KwQ4hDOXXPjiVFvDw8PLBhwwZs2LChDVrkPnpFyJFTVoPUPBWGdbX8TtVVUNVawqdeEQr8klKAS1ZMP2cYhgt2qGeHEMdy6p4dYj+9uDL47pm3c/O2sYYQ9ewQPvSMsL5np7SqFlW1egC0CCghjkbBTjvVqxUf3q5CrdXjRHoxAGBQ5wAHt4a4A/Z6uVlchepanUXPYfPGwuQe8JCI7NY2QkjLKNhpp9ienRu3q6DW6h3cGn4dv16M6lo9whUe6BOpcHRziBsI8fVAsK8MDANcybesPhU77ZxmYhHieBTstFOhchkCvaXQGxi3Ky7422XjrL3xPUNpJhbhTbypdyfVwt5QrqAg5esQ4nAU7LRTAoGgVXkIzk6nN2D/lUIAwIT4pgtLEmIttjfU0iTlHJp2TojToGCnHXPHJOVTmaUoq9bC30uCwZSvQ3jE5u1cyC6HTm9odt8qjQ7ns8oB0NpshDgDp556TuyL/fA+n1WOS7nu0bvz3dkcAMCYuFCIRRTLE/706+gHkVCAtMIKTNtwAi9O7AF/r4bVuSvUOrz6wyWkF1VCKhJSkjwhToCCnXaMDXau5Ksw5aPjDm4Nvyb0oiEswq9whSfWPdQPr+6+hMt5Kjzy6alm9w+Vy7Dhn/3RMZB6dghxNAp22rEuQd74W98InMoodXRTeNUtzBd3d3O/QonE8f7WNwKJ0YFY8+sVnLxRgqbqnvaNUuCt6b0R7Nt+FxwmxJkIGEvKFLs5lUoFhUIBpVIJuVzu6OYQQgghxAKWfn9TUgMhhBBC3BoFO4QQQghxaxTsEEIIIcStUbBDCCGEELdGwQ4hhBBC3BoFO4QQQghxaxTsEEIIIcStUbBDCCGEELdGwQ4hhBBC3BoFO4QQQghxa24T7GzYsAGdO3eGh4cHhgwZglOnml+kjxBCCCHtg1sEO19//TWWLl2K1157DefOnUPfvn0xYcIEFBUVObpphBBCCHEwt1gIdMiQIRg0aBA+/vhjAIDBYEBUVBQWLVqEF198scH+Go0GGo2G+12pVKJjx47Izs6mhUAJIYQQF6FSqRAVFYXy8nIoFIom9xO3YZvsora2FmfPnsWKFSu4bUKhEGPHjsXJkycbfc6aNWvwxhtvNNgeFRVlt3YSQgghxD4qKircO9gpLi6GXq9HaGio2fbQ0FBcvXq10eesWLECS5cu5X43GAwoLS1FYGAgBAIBb21jI0537jFy99fo7q8PoNfoDtz99QH0Gt2BPV4fwzCoqKhAREREs/u5fLDTGjKZDDKZzGybn5+f3c4nl8vd8o1bn7u/Rnd/fQC9Rnfg7q8PoNfoDvh+fc316LBcPkE5KCgIIpEIhYWFZtsLCwsRFhbmoFYRQgghxFm4fLAjlUoxYMAAHDhwgNtmMBhw4MABJCYmOrBlhBBCCHEGbjGMtXTpUsyZMwcDBw7E4MGDsX79elRVVeHRRx91aLtkMhlee+21BkNm7sTdX6O7vz6AXqM7cPfXB9BrdAeOfH1uMfUcAD7++GO89957KCgoQL9+/fDhhx9iyJAhjm4WIYQQQhzMbYIdQgghhJDGuHzODiGEEEJIcyjYIYQQQohbo2CHEEIIIW6Ngh1CCCGEuDUKdgghhBDi1ijYIYQQQohbo2CHEEIIIW6Ngh1CCCGEuDUKdgghhBDi1ijYIYQQQohbo2CHEEIIIW6Ngh1CCCGEuDUKdgghhBDi1ijYIYQQQohbo2CHEEIIIW6Ngh1CCCGEuDUKdgghhBDi1ijYIYQQQohbo2CHEEIIIW6Ngh1CCCGEuDUKdgghhBDi1ijYIYQQQohbc+pgZ+PGjejTpw/kcjnkcjkSExPx66+/co+r1WosWLAAgYGB8PHxwf3334/CwkIHtpgQQgghzkbAMAzj6EY05aeffoJIJEJsbCwYhsH27dvx3nvv4fz58+jVqxfmz5+Pn3/+Gdu2bYNCocDChQshFApx4sQJRzedEEIIIU7CqYOdxgQEBOC9997DAw88gODgYCQlJeGBBx4AAFy9ehVxcXE4efIkhg4d6uCWEkIIIcQZiB3dAEvp9Xp8++23qKqqQmJiIs6ePQutVouxY8dy+/To0QMdO3ZsMdjRaDTQaDTc7waDAaWlpQgMDIRAILDr6yCEEEIIPxiGQUVFBSIiIiAUNp2Z4/TBTkpKChITE6FWq+Hj44Ndu3ahZ8+euHDhAqRSKfz8/Mz2Dw0NRUFBQbPHXLNmDd544w07tpoQQgghbSU7OxuRkZFNPu70wU737t1x4cIFKJVKfPfdd5gzZw6OHDli0zFXrFiBpUuXcr8rlUp07NgR2dnZkMvltjaZEEIIIW1ApVIhKioKvr6+ze7n9MGOVCpFTEwMAGDAgAE4ffo0PvjgAzz00EOora1FeXm5We9OYWEhwsLCmj2mTCaDTCZrsJ2d9UUIIYQQ19FSCopTTz1vjMFggEajwYABAyCRSHDgwAHusbS0NGRlZSExMdGBLSSEEEKIM3Hqnp0VK1Zg4sSJ6NixIyoqKpCUlITDhw/jt99+g0KhwLx587B06VIEBARALpdj0aJFSExMpJlYhBBCCOE4dbBTVFSE2bNnIz8/HwqFAn369MFvv/2GcePGAQDWrVsHoVCI+++/HxqNBhMmTMB//vMfB7eaEEIIIc7E5ers2INKpYJCoYBSqaScHUIIIcRFWPr97XI5O4QQQggh1qBghxBCCCFujYIdQgghhLg1CnYIIYQQ4tYo2CGEEEKIW6NghxBCCCFujYIdQgghhLg1CnYIIYQQ4tYo2CGEWK2kpAQhISHIzMzkto0aNQqLFy+26bgzZ87E+++/b1vjCHEzd15vdK1Zj4IdQpzU3LlzMX369AbbDx8+DIFAgPLyct6Oaa3Vq1dj2rRp6Ny5s83Hqu+VV17B6tWroVQqeT0uaV/sce0AQHZ2Nh577DFERERAKpWiU6dOePbZZ1FSUmL1sawJWOxxvbW3a42CHUKIVaqrq/Hpp59i3rx5vB87Pj4eXbt2xRdffMH7sQmxxc2bNzFw4EBcv34dX331FdLT07Fp0yYcOHAAiYmJKC0ttct57XW9tbdrjYId0q4wDIPqWp1DfpxxGbpRo0bhmWeewfLlyxEQEICwsDC8/vrrzT7nl19+gUwmw9ChQ5vd7+eff4ZCocCXX34JAKioqMCsWbPg7e2N8PBwrFu3rtG726lTp2LHjh22vCxiBwzDwFBd7ZAfZ7h2FixYAKlUit9//x0jR45Ex44dMXHiROzfvx+5ubl4+eWXuX07d+6M9evXmz2/X79+3LU1d+5cHDlyBB988AEEAgEEAoHZkHB9llxvdK21zKlXPSeEbzVaPXqu/M0h505dNQFeUue75LZv346lS5ciOTkZJ0+exNy5czF8+HCMGzeu0f2PHTuGAQMGNHvMpKQkPPXUU0hKSsKUKVMAAEuXLsWJEyfw448/IjQ0FCtXrsS5c+fQr18/s+cOHjwYq1evhkajgUwm4+U1EtsxNTVI69/8391eup87C4GXl0PODQClpaX47bffsHr1anh6epo9FhYWhlmzZuHrr7/Gf/7zHwgEghaP98EHH+DatWuIj4/HqlWrAADBwcGN7tvS9UbXmmWc75OXEMLZs2cPfHx8zLbp9Xru39nZ2XjkkUdQVFQEsViMV199FQ8++KBV5+jTpw9ee+01AEBsbCw+/vhjHDhwoMlg59atW4iIiGjyeBs2bMDLL7+Mn376CSNHjgRgvNPcvn07kpKSMGbMGADA1q1bGz1OREQEamtrUVBQgE6dOln1Wghh8XntXL9+HQzDIC4urtHH4+LiUFZWhtu3byMkJKTFtikUCkilUnh5eSEsLKzZfZu73uhasxwFO6Rd8ZSIkLpqgsPOba3Ro0dj48aNZtuSk5Px8MMPAwDEYjHWr1+Pfv36oaCgAAMGDMCkSZPg7e1t8Tn69Olj9nt4eDiKioqa3L+mpgYeHh6NPvbdd9+hqKgIJ06cwKBBg7jtN2/ehFarxeDBg7ltCoUC3bt3b3AM9s65urra4tdA7E/g6Ynu58467NzWsse144jhtKauN7rWrEPBDmlXBAKBUw4lNcXb2xsxMTFm23Jycrh/h4eHIzw8HICxOz0oKAilpaVWBTsSicTsd4FAAIPB0OT+QUFBKCsra/SxhIQEnDt3Dlu2bMHAgQMt6tK/E5vo2VS3PnEMgUDg0KEka/F57cTExEAgEODKlSuYMWNGg8evXLkCf39/7j0rFAobBEZarbZVr6Op642uNetQgjIhbuLs2bPQ6/WIioqy63kSEhKQmpra6GNdu3bFoUOH8MMPP2DRokXc9ujoaEgkEpw+fZrbplQqce3atQbHuHTpEiIjIxEUFMR/4wlpREvXTmBgIMaNG4f//Oc/qKmpMXusoKAAX375JR566CEu4AgODkZ+fj63j0qlQkZGhtnzpFKp2bBaU5q63uhas45TBztr1qzBoEGD4Ovri5CQEEyfPh1paWlm+4waNYrLZmd/nnrqKQe1mBDHKC0txezZs/HJJ5/Y/VwTJkzA5cuXm+zd6datGw4dOoTvv/+em/3h6+uLOXPmYNmyZTh06BAuX76MefPmQSgUNrgjPXbsGMaPH2/vl0EIAMuvnY8//hgajQYTJkzA0aNHkZ2djb1792LcuHHo0KEDVq9eze17zz334PPPP8exY8eQkpKCOXPmQCQyH8bu3LkzkpOTkZmZieLi4iZ7U5u73uhas5xTBztHjhzBggUL8Oeff2Lfvn3QarUYP348qqqqzPZ74oknkJ+fz/28++67DmoxIW1Po9Fg+vTpePHFFzFs2DC7n693797o378/vvnmmyb36d69Ow4ePIivvvoKzz33HABg7dq1SExMxJQpUzB27FgMHz4ccXFxZvkIarUau3fvxhNPPGH310GINddObGwszpw5g+joaPz9739H165d8eSTT2L06NE4efIkAgICuH1XrFiBkSNHYsqUKZg8eTKmT5+Orl27mh3v+eefh0gkQs+ePREcHIysrKxGz9vS9UbXmoUYF1JUVMQAYI4cOcJtGzlyJPPss8/adFylUskAYJRKpY0tJKRtGQwGZubMmcxrr73Wpufds2cPExcXx+j1+lYfo7KyklEoFMz//vc/btt//vMfZty4cXw0kZBmOeraaQ1brzd3vtYs/f526p6dO7FlretH0ADw5ZdfIigoCPHx8VixYkWLmeUajQYqlcrshxBXdOLECXz99dfYvXs3+vXrh379+iElJcXu5508eTKefPJJ5ObmWvyc8+fP46uvvsKNGzdw7tw5zJo1CwAwbdo0bh+JRIKPPvqI9/YScidHXTutYe31RtdaQwKGcYLSlBYwGAz429/+hvLychw/fpzb/sknn6BTp06IiIjAxYsX8cILL2Dw4MHYuXNnk8d6/fXX8cYbbzTYrlQqIZfL7dJ+Qtq78+fP4/HHH0daWhqkUikGDBiAtWvXonfv3o5uGiFupT1dayqVCgqFosXvb5cJdubPn49ff/0Vx48fR2RkZJP7HTx4EGPGjEF6enqDMVKWRqOBRqPhflepVIiKiqJghxBCCHEhlgY7LlFwZOHChdizZw+OHj3abKADAEOGDAGAZoMdmUzm9qWxCSGEEGLk1MEOwzBYtGgRdu3ahcOHD6NLly4tPufChQsAwBWLIoQQQkj75tTBzoIFC5CUlIQffvgBvr6+KCgoAGAsfe3p6YkbN24gKSkJkyZNQmBgIC5evIglS5bg7rvvblACnxBCCCHtk1Pn7DRV/nrr1q2YO3cusrOz8fDDD+PSpUuoqqpCVFQUZsyYgVdeecWq3BtLx/wIIYQQ4jzcImenpTgsKioKR44caaPWEEIIIcQVuVSdHUIIIYQQa1GwQwghhBC3RsEOIYQQQtwaBTuEEEIIcWsU7BBCCCHErVGwQwhxuFGjRmHx4sVN/s7HMZtSUlKCkJAQZGZm8nbumTNn4v3337fpGIS0FUve83deJ5Y+ryVtda1QsEOIk5o7dy6mT5/eYPvhw4chEAhQXl7equMWFBRg0aJFiI6OhkwmQ1RUFKZOnYoDBw7Y1mC0/sNv586dePPNN20+f2usXr0a06ZNQ+fOnXk75iuvvILVq1dDqVTydkxiOXtcO3PnzoVAIIBAIIBEIkFoaCjGjRuHLVu2wGAw2N5oJ2eP6wRou2uF92BHq9UiOzsbaWlpKC0t5fvwhBAbZGZmYsCAATh48CDee+89pKSkYO/evRg9ejQWLFhg07Fra2tb/dyAgAD4+vradP7WqK6uxqeffop58+bxetz4+Hh07doVX3zxBa/HJY517733Ij8/H5mZmfj1118xevRoPPvss5gyZQp0Op2jm2c39rpOgLa7VngJdioqKrBx40aMHDkScrkcnTt3RlxcHIKDg9GpUyc88cQTOH36NB+nIoQftVXGn/qFK3W1xm06TeP71r9702uN27Rqy/Z1Ek8//TQEAgFOnTqF+++/H926dUOvXr2wdOlS/Pnnn9x+nTt3xvr1682e269fP7z++uvc76NGjcLChQuxePFiBAUFYcKECThy5Ag++OAD7g6Y7fLeu3cvRowYAT8/PwQGBmLKlCm4ceOG2bGa6xEyGAxYs2YNunTpAk9PT/Tt2xffffcd93hVVRVmz54NHx8fhIeHW9wt/ssvv0Amk2Ho0KFN7vPzzz9DoVDgyy+/BGD8vJs1axa8vb0RHh6OdevWNdr+qVOnYseOHRa1w5VoNfomf3RaveX71lq2rzORyWQICwtDhw4d0L9/f7z00kv44Ycf8Ouvv2Lbtm3cfi29X0eNGoVFixZh8eLF8Pf3R2hoKDZv3oyqqio8+uij8PX1RUxMDH799Vez81tyHT3zzDNYvnw5AgICEBYWZnbNAq27Viy5TgDnvlZsrqC8du1arF69Gl27dsXUqVPx0ksvISIiAp6enigtLcWlS5dw7NgxjB8/HkOGDMFHH32E2NhYPtpOSOu9HWH877IbgHeQ8d9/fAAcfAvoPxv420d1+74XA2irgWcvAv6djNtObQZ+WwH0fhC4/391+67vDVSXAE//CYTEGbdd+BIYMNfuL6klpaWl2Lt3L1avXg1vb+8Gj/v5+Vl9zO3bt2P+/Pk4ceIE1Go15s+fj/j4eKxatQoAEBwcDMD4Abt06VL06dMHlZWVWLlyJWbMmIELFy5AKGz5nmvNmjX44osvsGnTJsTGxuLo0aN4+OGHERwcjJEjR2LZsmU4cuQIfvjhB4SEhOCll17CuXPn0K9fv2aPe+zYMQwYMKDJx5OSkvDUU08hKSkJU6ZMAQAsXboUJ06cwI8//ojQ0FCsXLmy0XMNHjwYq1evhkajgUwma/E1uopPnm26an2n+EBMWdiX+33LsmPQ1TY+xBMR64cZz/Xnfv/s5T+grmx4Y7Bg0z02tNb+7rnnHvTt2xc7d+7E448/DqDl9ytgvHaWL1+OU6dO4euvv8b8+fOxa9cuzJgxAy+99BLWrVuHRx55BFlZWfDy8gJg2XW0fft2LF26FMnJyTh58iTmzp2L4cOHY9y4cQDQqmulpesEcP5rxeZg5/Tp0zh69Ch69erV6OODBw/GY489hk2bNmHr1q04duwYBTuEWGjPnj3w8fEx26bX193tZmdn45FHHkFRURHEYjFeffVVPPjgg40eKz09HQzDoEePHry1LzY2Fu+++y73u1QqhZeXF8LCwsz2u//++81+37JlC4KDg5Gamor4+Phmz6HRaPD2229j//79SExMBABER0fj+PHj+O9//4sBAwbg008/xRdffIExY8YAMH7gR0ZGttj+W7duISIiotHHNmzYgJdffhk//fQT9wVVUVGB7du3IykpiTvX1q1bGz1GREQEamtrUVBQgE6dOrXYFsIvPq+dlvTo0QMXL14E0PL7lX0v9e3bF6+88goAYMWKFXjnnXcQFBSEJ554AgCwcuVKbNy4ERcvXuR6VCy5jvr06YPXXnsNgPH6/Pjjj3HgwAGMGzcOlZWVrbpWmrtOANe4VmwOdr766iuL9pPJZHjqqadsPR0h/Hgpz/hfiVfdtmHPAkOfBoR3XBbL0o3/FXvWbRv8BDBgDiAQme+7OKXhvv1mtbqZo0ePxsaNG822JScn4+GHHzaeRizG+vXr0a9fPxQUFGDAgAGYNGlSoz039ljzt6W7Pdb169excuVKJCcno7i4mEvozMrKajHYSU9PR3V1NXdnyqqtrUVCQgJu3LiB2tpaDBkyhHssICAA3bt3b7FdNTU18PDwaLD9u+++Q1FREU6cOIFBgwZx22/evAmtVovBgwdz2xQKRaPn8vQ0vgeqq6tbbIcrefKDkU0+Jrijk+6x9+5qet871nmevXqYLc1qgM9rpyUMw3ALV7f0fmX16dOH+7dIJEJgYCB69+7NbQsNDQUAFBUVcdssuY7qHxcAwsPDuWO09lpp6joBXOda4XUh0KysLERFRTVYrZxhGGRnZ6Njx458no6Q1pM28oEmlgKQWravSGL8sXTfVvL29kZMTIzZtpycHO7f4eHhCA8PBwCEhYUhKCgIpaWljX5gx8bGQiAQ4OrVqy2eVygUNgiOtNqGQwyWfjFMnToVnTp1wubNmxEREQGDwYD4+HiLkporKysBGPMBOnToYPaYTCazaSJEUFAQysrKGmxPSEjAuXPnsGXLFgwcOLDBZ5ol2HaxQ3nuQiITtbyTnfe1BJ/XTkuuXLmCLl26AGj5/cqSSMw/F9hZXvV/B2A208uS66ix49o6W6yp6wRwnWuF19lYXbp0we3btxtsLy0t5d4IhBD7OHv2LPR6PaKiohp9PCAgABMmTMCGDRtQVVXV4PH603GDg4ORn5/P/a5SqZCRkdFiG6RSqdlQAWCsz5GWloZXXnkFY8aMQVxcXJMfnI3p2bMnZDIZsrKyEBMTY/YTFRWFrl27QiKRIDk5mXtOWVkZrl271uKxExISkJqa2mB7165dcejQIfzwww9YtGgRtz06OhoSicRswoVSqWz0XJcuXUJkZCSCgoIsfq3EMVq6dppz8OBBpKSkcENMLb1fW8vW6whAq6+Vpq4T9piucK3w2rNTvyuvvsrKyia7wAghtistLcXs2bOxefPmZvfbsGEDhg8fjsGDB2PVqlXo06cPdDod9u3bh40bN+LKlSsAjEmX27Ztw9SpU+Hn54eVK1dCJGr5zrtz585ITk5GZmYmfHx8EBAQAH9/fwQGBuKTTz5BeHg4srKy8OKLL1r82nx9ffH8889jyZIlMBgMGDFiBJRKJU6cOAG5XI45c+Zg3rx5WLZsGQIDAxESEoKXX37ZosTnCRMmYMWKFSgrK4O/v7/ZY926dcOhQ4cwatQobsjD19cXc+bMwbJlyxAQEICQkBC89tprEAqFDT772IkZxLlZeu0AxnycgoIC6PV6FBYWYu/evVizZg2mTJmC2bNnA7Ds/doatl5HAODj49Oqa6W56wRwjWuFl2Bn6dKlAIzdZa+++iqXOQ4YE8KSk5NbnBVBCGkdjUaD6dOn48UXX8SwYc3nPURHR+PcuXNYvXo1nnvuOeTn5yM4OBgDBgwwy29YsWIFMjIyMGXKFCgUCrz55psW9ew8//zzmDNnDnr27ImamhpkZGSgc+fO2LFjB5555hnEx8eje/fu+PDDDzFq1CiLX+Obb76J4OBgrFmzBjdv3oSfnx839RcA3nvvPVRWVmLq1Knw9fXFc889Z1GRst69e6N///745ptv8K9//avB4927d8fBgwcxatQoiEQivP/++1i7di2eeuopTJkyBXK5HMuXL0d2drbZDZ1arcbu3buxd+9ei18jaXvWXDuAcep3eHg4xGIx/P390bdvX3z44YeYM2eOWcDQ0vu1NYRCoc3XEdC6a6Wl6wRw/mtFwPCQtTh69GgAwJEjR5CYmAiptC7vQSqVonPnznj++eeddhaWSqWCQqGAUqmEXC53dHMIsRjDMPjnP/+J7t27N6inQSzz888/Y9myZbh06ZJFvUF3qqqqQocOHfD+++9zRdc2btyIXbt24ffff+e7uYQndO1Yx9brBLDPtWLx9zfDo7lz5zJKpZK347399tvMwIEDGR8fHyY4OJiZNm0ac/XqVbN9ampqmKeffpoJCAhgvL29mfvuu48pKCiw6jxKpZIBwGvbCWkLx44dYwQCAdO3b1/u5+LFi45ulstZt24dk5WVZdG+586dY5KSkpj09HTm7NmzzLRp0xiFQsHcvn2b22fz5s0NPquIc6Frx3rWXCcM0zbXiqXf3zb37GRlZVk1yyo3N7dBhnpT7r33XsycORODBg2CTqfDSy+9hEuXLiE1NZXLmJ8/fz5+/vlnbNu2DQqFAgsXLoRQKMSJEycsbhP17BBCLHX+/Hk8/vjjSEtLg1QqxYABA7B27VqzacOEkLa5Viz9/rY52AkNDcX06dPx+OOPm82xr0+pVOKbb77BBx98gCeffBLPPPNMq851+/ZthISE4MiRI7j77ruhVCoRHByMpKQkPPDAAwCAq1evIi4uDidPnmyxtDWLgh1CCCHE9Vj6/W1zgnJqaipWr16NcePGwcPDAwMGDEBERAQ8PDxQVlaG1NRUXL58Gf3798e7776LSZMmtfpcbBJVQEAAAON0Qa1Wi7Fjx3L79OjRAx07dmw22NFoNNBo6tY/UqlUrW4TIYQQQpybzXV2AgMDsXbtWuTn5+Pjjz9GbGwsiouLcf36dQDArFmzcPbsWZw8edKmQMdgMGDx4sUYPnw4VymyoKAAUqm0wZo+oaGhKCgoaPJYa9asgUKh4H5sqX1ACCGEEOfGW50dT09PPPDAA9xwEt8WLFiAS5cu4fjx4zYfa8WKFdx0ecDYs0MBDyGEEOKeeC0qaC8LFy7Enj17cPToUbMFy8LCwlBbW4vy8nKz3p3CwsIGCxHWJ5PJ3GoVYkIIIYQ0jdflIvjGMAwWLlyIXbt24eDBgw2WnBgwYAAkEgkOHDjAbUtLS0NWVha32iwhhBBC2jen7tlZsGABkpKS8MMPP8DX15fLw1EoFPD09IRCocC8efOwdOlSBAQEQC6XY9GiRUhMTLR4JhYhhBBC3BsvFZTtpanVU7du3Yq5c+cCMJaafu655/DVV19Bo9FgwoQJ+M9//tPsMNadaOo5IYQQ4nrarM6OO6BghxBCCHE9ln5/85qzM2fOHBw9epTPQxJCCCGE2ITXYEepVGLs2LGIjY3F22+/jdzcXD4PTwghhBBiNV6Dnd27dyM3Nxfz58/H119/jc6dO2PixIn47rvvoNVq+TwVIaQNjBo1CosXL26352+KJe0qKSlBSEgIMjMzLX5OS2bOnIn333/fpmMQ0h7xPvU8ODgYS5cuxV9//YXk5GTExMTgkUceQUREBJYsWcJVViaENG/u3LmYPn16g+2HDx+GQCBAeXl5q44pEAjw1FNPNXhswYIFEAgEXPI/AOzcuRNvvvmm1edpK039P3IGq1evxrRp09C5c2fejvnKK69g9erV3NI5hBDL2K3OTn5+Pvbt24d9+/ZBJBJh0qRJSElJQc+ePbFu3Tp7nZYQ0oKoqCjs2LEDNTU13Da1Wo2kpCR07NjRbN+AgAD4+vq2dRNdXnV1NT799FPMmzeP1+PGx8eja9eu+OKLL3g9LiHujtdgR6vV4vvvv8eUKVPQqVMnfPvtt1i8eDHy8vKwfft27N+/H9988w1WrVrF52kJsVq1thrV2mrUn4yo1WtRra1Grb620X0NjKFuX4NxX41eY9G+zqR///6IiorCzp07uW07d+5Ex44dkZCQYLbvnUMv3333HXr37g1PT08EBgZi7NixqKqqavExg8GANWvWoEuXLvD09ETfvn3x3XffmZ2rqqoKs2fPho+PD8LDw3kZrtFoNHjmmWcQEhICDw8PjBgxAqdPn+Ye37t3L0aMGAE/Pz8EBgZiypQpuHHjhs3t+uWXXyCTyZqt9/Xzzz9DoVDgyy+/BABUVFRg1qxZ8Pb2Rnh4ONatW9fo0NfUqVOxY8cOK/4vEEJ4DXbCw8PxxBNPoFOnTjh16hTOnDmDp556ymw62OjRoxss3ElIWxuSNARDkoagTFPGbdt6eSuGJA3B28lvm+076ptRGJI0BPlV+dy2HVd3YEjSEKw8sdJs33u/vxdDkobgZvlNbtsP6T/Y6VW03mOPPYatW7dyv2/ZsgWPPvpos8/Jz8/HP/7xDzz22GO4cuUKDh8+jPvuuw8MwzT7GGBcfPezzz7Dpk2bcPnyZSxZsgQPP/wwjhw5wh1/2bJlOHLkCH744Qf8/vvvOHz4MM6dO2fT61y+fDm+//57bN++HefOnUNMTAwmTJiA0tJSAMZAZunSpThz5gwOHDgAoVCIGTNmwGCoC1Zb065jx45hwIABTT6elJSEf/zjH/jyyy8xa9YsAMDSpUtx4sQJ/Pjjj9i3bx+OHTvW6HkGDx6MU6dOQaPRNHiMENI4Xisor1u3Dg8++CA8PDya3MfPzw8ZGRl8npYQt7Vnzx74+PiYbdPr9dy/s7Oz8cgjj6CoqAhisRivvvoqHnzwwRaP+/DDD2PFihW4desWAODEiRPYsWMHDh8+3ORz8vPzodPpcN9996FTp04AgN69ewMArl271uRjGo0Gb7/9Nvbv388t4xIdHY3jx4/jv//9L0aOHInKykp8+umn+OKLLzBmzBgAwPbt283WwrNWVVUVNm7ciG3btmHixIkAgM2bN2Pfvn349NNPsWzZMtx///1mz9myZQuCg4ORmpqK+Pj4Vrfr1q1biIiIaPSxDRs24OWXX8ZPP/2EkSNHAjD26mzfvh1JSUncebZu3droMSIiIlBbW4uCggLu/zUhpHm8BjuPPPIIn4cjxG6S/5kMAPAUe3LbHu31KB6OexhiofllcfjvhwEAHuK6IH5mj5m4P/Z+iIQis3333r+3wb7TYqa1up2jR4/Gxo0bzduenIyHH34YACAWi7F+/Xr069cPBQUFGDBgACZNmgRvb+9mjxscHIzJkydj27ZtYBgGkydPRlBQULPP6du3L8aMGYPevXtjwoQJGD9+PB544AH4+/s3+1h6ejqqq6sxbtw4s+PV1tZyw2Y3btxAbW0thgwZwj0eEBCA7t27W/z/6k43btyAVqvF8OHDuW0SiQSDBw/GlStXAADXr1/HypUrkZycjOLiYq5HJysrC/Hx8a1uV01NTaM3fd999x2Kiopw4sQJDBo0iNt+8+ZNaLVaDB48mNumUCgaPY+np/E9W11dbcn/BkIIeAh2li5davG+a9eutfV0hPDCS+LVYJtEJIFEJLFsX6EEEqHl+7aWt7c3YmJizLbl5ORw/w4PD0d4eDgAICwsDEFBQSgtLW0x2AGMQ1kLFy4EYOxtaIlIJMK+ffvwxx9/4Pfff8dHH32El19+GcnJyejSpUuTj1VWVgIw5qh06NDB7JgymazF89rT1KlT0alTJ2zevBkREREwGAyIj49HbW1ty09uRlBQEMrKyhpsT0hIwLlz57BlyxYMHDiwySVxmsMOwQUHB9vURkLaE5tzds6fP2/Rz4ULF3hoLiGkKWfPnoVer0dUVJRF+997772ora2FVqvFhAkTLHqOQCDA8OHD8cYbb+D8+fOQSqXYtWtXs4/17NkTMpkMWVlZiImJMfth29q1a1dIJBIkJydz5yorK8O1a9es/L9Qp2vXrpBKpThx4gS3TavV4vTp0+jZsydKSkqQlpaGV155BWPGjEFcXFyDAKW17UpISEBqamqjbTp06BB++OEHLFq0iNseHR0NiURiljytVCobPc+lS5cQGRnZYk8cIaSOzT07hw4dAmDskp44cSI2bdqE2NhYmxtGCLFcaWkpZs+ejc2bN1v8HJFIxA3niESiFvY2Dp8dOHAA48ePR0hICJKTk3H79m3ExcU1+5ivry+ef/55LFmyBAaDASNGjIBSqcSJEycgl8sxZ84c+Pj4YN68eVi2bBkCAwMREhKCl19+GUJhy/djSqWywc1UYGAgoqKiMH/+fCxbtgwBAQHo2LEj3n33XVRXV2PevHlQKBQIDAzEJ598gvDwcGRlZeHFF180O05r2zVhwgSsWLECZWVl8Pf3N3usW7duOHToEEaNGsUNQ/r6+mLOnDlcW0NCQvDaa69BKBQ26P05duwYxo8f3+L/F0JIHd5ydqRSKS5evMjX4QghFtJoNJg+fTpefPFFDBs2zKrnWrPwrVwux9GjR7F+/XqoVCp06tQJ77//PiZOnIgrV640+RgAvPnmmwgODsaaNWtw8+ZN+Pn5oX///njppZe447/33nuorKzE1KlT4evri+eee86i4nmHDx9uMGV+3rx5+N///od33nkHBoMBjzzyCCoqKjBw4ED89ttvXACyY8cOPPPMM4iPj0f37t3x4YcfYtSoUWbHak27evfujf79++Obb77Bv/71rwaPd+/eHQcPHsSoUaMgEonw/vvvY+3atXjqqacwZcoUyOVyLF++HNnZ2Wa5P2q1Grt378bevXtb/P9CCKnD66rnS5YsgUwmwzvvvMPXIdsErXpOXBXDMPjnP/+J7t274/XXX3d0c0g9P//8M5YtW4ZLly5Z1EN1p6qqKnTo0AHvv/8+V5xw48aN2LVrF37//Xe+m0uIS7L0+5vX2Vg6nQ5btmzB/v37MWDAgAZJkpSgTAi/Tpw4ga+//hp9+vTB7t27AQCff/45N+2bOM7kyZNx/fp15ObmWpRHdf78eVy9ehWDBw+GUqnkiq9Om1Y3m08ikeCjjz6yW5sJcVe89uyMHj266RMJBDh48CBfp+IV9ewQQhzt/PnzePzxx5GWlgapVIoBAwZg7dq1FLgS0gxLv795DXZcFQU7hBBCiOux9PvbbguB8uXo0aOYOnUqIiIiIBAIuK56FruKc/2fe++91zGNJYQQQojT4TVnp6UFPleuXNns442pqqpC37598dhjj+G+++5rdJ97773XbJ0fRxcqI4QQQojz4DXYYYuLsbRaLTIyMiAWi9G1a9dWBTsTJ07kpq82RSaTISwszOpjE0IIIcT98RrsnD9/vsE2lUqFuXPnYsaMGXyeyszhw4cREhICf39/3HPPPXjrrbcQGBjY5P4ajcZsxWCVSmW3thFCCCHEseyesyOXy/HGG2/g1Vdftcvx7733Xnz22Wc4cOAA/v3vf+PIkSOYOHGi2crQd1qzZg0UCgX3Y2l5fUIIIYS4Hl57dpqiVCotqoTaGjNnzuT+3bt3b/Tp0wddu3bF4cOHMWbMmEafs2LFCrMFTFUqFQU8hBBCiJviNdj58MMPzX5nGAb5+fn4/PPPW8y74Ut0dDSCgoKQnp7eZLAjk8koiZkQQghpJ3gNdtatW2f2u1AoRHBwMObMmYMVK1bweaom5eTkoKSkBOHh4W1yPkIIIYQ4N16DnYyMDD4PBwCorKxEenq62TkuXLiAgIAABAQE4I033sD999+PsLAw3LhxA8uXL0dMTAwmTJjAe1sIIYQQ4nraJGfHFmfOnDFbhoLNtZkzZw42btyIixcvYvv27SgvL0dERATGjx+PN998k4apCCGEEALADstFlJeX49NPP8WVK1cAAD179sS8efOgUCj4PA2vaLkIQgghxPU4ZLmIM2fOoGvXrli3bh1KS0tRWlqKdevWoWvXrjh37hyfpyKEEEIIsQivPTt33XUXYmJisHnzZojFxhEynU6Hxx9/HDdv3sTRo0f5OhWvqGeHEEIIcT0OWfXc09MT58+fR48ePcy2p6amYuDAgaiurubrVLyiYIcQQghxPQ4ZxpLL5cjKymqwPTs7G76+vnyeihBCCCHEIrwGOw899BDmzZuHr7/+GtnZ2cjOzsaOHTvw+OOP4x//+AefpyKEEEIIsQivU8//7//+DwKBALNnz4ZOpwMASCQSzJ8/H++88w6fp3IJOr2B+7dQIIBQKHBga0hzGIYBv/MSAYEAEAjob04IIY7G+9RzAKiursaNGzcAAF27doWXlxffp+CVvXJ27nn/MG7ergIAeEpE2PTIAIzsFszb8Yl1btyuRGqeCiq1FrcrNMgtq0FOWQ1yyquRX66GzsDvpeAtFSE21Bf9ovzw3Phu8PWQ8Hp84loyiqvwj0/+RFGFGgKBAAKYAmIITIFxvX/DGCg3+e8G2wB/LylendITw2OC2vy1vfPrVfxxoxgPD+mEGf07QCKy+xrTDmMwMEi/XYkzmWW4XlQBtVaPWh0DXw8xFJ4SyCRCMAwQG+KD8b3CHN1ct2fp9zcvPTsqlarBtk6dOgEwzsZiH2/Pyb81Wj1+vphHwY6DfHMmGy9+fxE8xzPNqqrV40J2OS5kl6NHmC9mDu7YdicnTsVgYPDi9xdRoFIbN5jdY/LzpixUafD49jP44vHBGNApgNuu1upx8kYJiirUqNUZMC2hA+Q8Bt63KzT45OgNGBhgec5FfHwoHV/MG4KOgXU3uQYDg89OZuJUZiniwuQY1CUAQ7oEuFzP5+U8JZZ8fQHXCist2v/Y8tGICnDum/32gpdgx8/Pr9k3LcMwEAgE0Ov1fJzOZexeMByMATiYVoglX/+F1PyGQSGxvy3HM7BqTyoAIL6DHOEKTwR6SxHp74lIfy9E+nsiws8TnhIRb+dkAJRUavDub2nYl1qI7DLnnIlI2sY3Z7KRnFEKT4kI3z6ViGBfGRgGMDAMGJgPozbYDjY2YkyPAYzp30y9f7/7WxqOXruNR7eexldPDkWvCAVKq2rx4KY/cMPUwwwYg6LnJ3Tn7bX9nloAAwOEKzyg1RuQVVqNzcdu4s3p8QCAsqpaLP3mAg6l3QYA/JJSAAB4c1ovPJLYmbd22NuW4xl459erqNUb4CkRoV+UH3pHKuAjE0MiEqJCrUVZtRY6vQF7LxWgQqNDUYWGgh0nwUuwc+jQIe7fDMNg0qRJ+N///ocOHTrwcXiXxd49DehovMu6VlAJrd7g1l28zuaP9GIu0Hl8RBe8PDmuze4mA7yl6N/RH/tSC5GvVLfJOW1hMDDIKasxuyMntitSqbH6F2NF+efGd0N8B/tUk9/0cH/M/vQUztwqwwMbT+L1v/XEV6eyceN2FQK8pQiVe+BKvgoXsst5Pe8vKfkAgDnDOqNbqA8e23YGB68WYRXDQKMz4L6NfyCjuAoysRCPDu+CUxklOJdVjrO3ylwm2Dly7Tb3OTI2LhTvPtAHAd7SJve/lKfClXwVKjW6tmoiaQEvwc7IkSPNfheJRBg6dCiio6P5OLzLiwrwhK9MjAqNDjduV6JHWPsdzmtr57LKAADje4a2aaDDCld4AADyy50/2Hl5dwq+OpWNjbP6Y2LvcEc3x20kncpChVqH3h0UmDuss93O4yUV49O5g/D0l2dxIr0EL3yfAgBQeErwzb+GorpWj799fAKX85Rcb7utSio1+PNmKQBgUnw4QuQyeEiEyC2vQVphBa7mVyCjuApBPjJ89thg9IyQY++lfDz1xTncLK5q4ejO49PjxkWu/zE4Cm/P6N3i/ztfmfGrtVJNwY6zoC6GNiAQCBAXYQxwLufSUFZbKqrQAABiQ30ckh/ABTvKGrufS29gcC6rDLU6Q8s73+GP9GJ8dSobALDHdKdO+FGoMr4Hx8aFQmznXl2FpwSfPTYEz46JhUAAyMRCbJk7EDEhvugW6guRUICyam1d7lAjGIbB2VtleOfXq/i1hffCvtRC6A0M4jvI0THQCx4SEYZ3NSZIH7hShB2njXXXHhnaCT1Nn4HRwT4AgIzbVbDD/BjeXS+swNFrtyEUAE+PirHoc8THwxjsVFHPjtNw+lXP3UXPcDlOZZQiNV+F+x3dmHakyPRFE+Lr4ZDzR/h5AgDylWre7qabsuN0Fl7edQlLx3XDM2NiLX6eRqfHK7svcb//kV4Mg4GhUgk8UdVoAQAKz7b5uBUJBVgyrhum9AmHVCxEp0BvAICHRISYYB+kFVbgcq4K4QrPBs+9VliBx7efQVZpXY7ZM/fEYMm4bo2+d3+5ZMy/mRhf1xN4T1wIDlwtwtens5FVWg2BAHhgYCT3eMcALwgEQIVGh9uVGoddm5ba+kcmAGBcz1CL8298TD07FRTsOA273Wa4Wpa9vbF3Nal51LPTlooqjHewIb4yh5w/RG48r0ZnQFm11q7nSi8yzhC5YkUiPMMwWLvvGm4WVyHYVwYfmRhl1VpKpueRkg12vNq29EBsqC8X6LB6sZ9DTfx93/n1KrJKq+EtFWFY10AAwIcH0/HsjgtQqc3fv7crNPgjvRgAMDG+bor1PT1CAIALmO6KDUYHv7rAykMiQqS/8feM2849lFVeXYud53IAAI8N72Lx87xpGMvp8HKrcd9995n9rlar8dRTT8Hb2/xC27lzJx+nc0k9w+s+ZOx9h0/qsMNYIXLH3D3KxCIE+chQXKlBvrKm2aRGW5VV1QIA8ixMhs4srsJLu1Lwx40SAMBrU3ti17lcHLhahBPpxXZLpG1vuGDH0/F1lnpGyLHzfC4u5ykbPHarpAqH0ooAAD8tGoHoYB98beot/PGvPCRnlOCt6b0xrmcoAGDDoXToDAwSOvpxQ1MAEK7wRM9wORdQzRwU1eBc0UE+yC6twc3iKgyJDrTHS+XFznO5UGsN6BUhx+AuAS0/wcSXHcaqpWDHWfDSs6NQKMx+Hn74YURERDTY3p51C/WFRCSAskaL3PIafP7nLXx7JtvRzXJrDMPUBTsO6tkB2i5Jme05KrAgP6ikUoNpG07gjxsl8JAI8crkOEzuHc4VpDtuumMntmODHT5r27RWz2Z6dj47eQsMA4zsFswFLw8N6oikJ4aic6AXClUaPPHZGfzncDqySqrxZfItAMCy8Q2nsY+NM/buBHhLMTYutMHjXYKMN8I3b1tWr8ZR/sopBwBM6h1u1Q0qN4zlAj071bU65JXbP6fQ0Xjp2dm6dSsfh3FrUrEQMSG+uJKvwoqdKTh23fhlcne3YIQ6qNfB3SlrtFyybrCDg52UXKXdk5TLqo09O0UVmhZLHBxOuw1ljRadAr3w2WODueGOEbHGYOd0ZinUWj08eKw91F45Vc+OqYc5u7QGJZUarNiZgrLqWiwe2w3fmG6+7pwxNrhLAPYuvhvv/ZaGT49n4N29afjuTA60egZ3xQZhWCMVm2cO7oij14vxz8EdIRU3fB92DTa+3zKcfEZWWkEFACAu3LqFrLlhLCfP2amu1WHaxyeQWVKFw8tGmw03uhunn4119OhRTJ06FRERERAIBNi9e7fZ4wzDYOXKlQgPD4enpyfGjh2L69evO6axLWA/aNhABwD+uEF30PbC9uooPCUO/dKum5Fl754dY7DDMMZ8iuacMPXcTO4dbpbXERvig2BfGdRaAzdtn7SewcBwuS7OEOz4eUm5L7Ql3/yF31MLcTqzDLP+l4wKtQ6dA70arfLuIRHh1Sk98cw9MQDATRt/4d4ejZ4nws8TuxcMx98bGcICgC5Bxp6jm06cs1OrM3B5cN2tLBdSN/Xcvnl6tlr98xVcL6qEVs+4fT6p0wc7VVVV6Nu3LzZs2NDo4++++y4+/PBDbNq0CcnJyfD29saECROgVjtfXRO2CxkAAk25GyfSSxzVHLdXNxPLcb06ABBeb0aWPZVV1X2wNncuhmFwwhRk37mOkkAgwAjTtj/ovWmzCo2Oq4wsd4JgB6j7HDp6zVjReGh0XS7KI4mdm52Ft2RcNzxxlzFR976EDq3O64o29exklVZDq7e+VEJbuFlcCZ3BuOZVhMK63ve6qefOu2rAwauF+DI5i/vdkuFvV+b0U88nTpyIiRMnNvoYwzBYv349XnnlFUybNg0A8NlnnyE0NBS7d+/GzJkz27KpLRrdPRjv/SbEqG4heGhQFB7ddhon0ospYdlOuJlYcgcHO6YPSnuOi9fqDGZd5gXNBDs3bleiUKWBTCzEgE7+DR5PjA7ErvO5OHOr1C5tbU/YaecysdBphgR7RcixL7UQgLH2z+bZA3AqoxRXCyowa0jz67cJBAK8NCkODw6MQicbKm2HyT3gKRGhRqtHdmm1WYKzs2CHsLqH+lr9+ezt5FPP1Vo9ln9nLDrJ/h2aq73kDpy+Z6c5GRkZKCgowNixY7ltCoUCQ4YMwcmTJ5t8nkajgUqlMvtpC9HBPvjrtfHY+HB/DI0OhFQkRL5SbTZuXV5di6kfHce6fdfapE3urC452bE5UWw9E3t+mJSbhrBYzeUHHTcNow7qHNDoF3BMqPGLJ7OY1vOylTPl67D6RBp7Y+QeYqyeEQ+BQIAh0YGYM6yzRUUPBQIBuoX6QiZuffAmFArQOci583aussFOmHX5OkBdgnKlxjmHsdKLKlFcqYHCU4In7jaudOAKS9rYwqWDnYICY0Gr0FDzbP/Q0FDuscasWbPGbJZYVFTj48r2IBOLIBAI4CkVIaGjHwDgxI264YKDV4uQkqvEtj8yXaK6qDNzmmGsejk79vqb3lnDp7meneOm4ak7h7BY0aYvoQKVGtU0ddYmzhjsjOoWglcmx+HzeUMcOjmCHcpy1rwdtmenRyuCHV8nH8bKNfUydw70QmdTD10h9ey0Tk1NDXJzcxtsv3z5sr1OabEVK1ZAqVRyP9nZjpkCzuZGnKiXsPyXaZE+ZU3zJd1Jy9hhLEfOxAKAULkHBALjUFNpVW3LT2iFO4+b38R7R6c34M+bxmBnRBPBjp+XFH6mAniu3LuTW16DZd/+hVsljvsydcZgRygU4PG7otE3ys+h7WCDamddI4sbxmrFWobOXlSQHVKP8PNEmLxtJlA4ml2Cne+++w6xsbGYPHky+vTpg+TkZO6xRx55hLfzhIUZq3YWFhaabS8sLOQea4xMJoNcLjf7cQR2yubJmyXQG4x3/Bdy6op9WVMJlzTk6IKCLKlYiCAfY8Blrw+UsjuGse7s2TmTWYr5X5zFk5+fRaVGBz8viVnC/J06m2ZoZTowULDVf4/cwLdnc7DpyA2HtcEZgx1nwfbsnEgvRkll87MH25pKreV6P7qHtn4Yq1ZvgEbnfL07uWXG19bBzxNhpp7nAjv2PDsDuwQ7b731Fs6ePYsLFy5g69atmDdvHpKSkgCA1/+ZXbp0QVhYGA4cOMBtU6lUSE5ORmJiIm/nsZe+kQr4yMRQ1mhxOU8JjU6PK/Wm/13Jr3Bg61zfbScoKMiyd5IyG+ywQdWdwc66/dfw66UCHLxqrJA7IiYIomZm3UQ7eT6FJS6abhzYO3RHUFGw06SR3UIQ5CNDVmk1HvrkTxQ5UU82+54JV3i0apkPNtgBnHMoK8+U09fBvy7Yqa7VO21CNR/sEuxotVouj2bAgAE4evQo/vvf/2LVqlVWZ7VXVlbiwoULuHDhAgBjUvKFCxeQlZUFgUCAxYsX46233sKPP/6IlJQUzJ49GxEREZg+fTrPr4p/YpEQw2OMpdJ/v1yIq/kVqK03DZN6dmzDfng6U7Bjr6FJdqkItremQKXmeguBunWznrirC1ZM7IFXJvds9njOnjzaEp3ewF0/1wsrHXbHylVPpmCngQBvKb7511CEyT2QXlSJ2VtOwWBwjp4FW5KTAeNirJ6m5H9nHMpie3Yi/DzhJRVDbsoxKnTjoSy7BDshISG4ePEi93tAQAD27duHK1eumG23xJkzZ5CQkICEhAQAwNKlS5GQkICVK1cCAJYvX45FixbhySefxKBBg1BZWYm9e/fCw8M1qhJP6m1cLfjnlHxcMOXrsHcFFOy0XqVGh6pa4x2Vo4exgLoZWXl2WjKCTVDuFuIDkVAAvYFBsWlooFKjQ6EpWXvh6Fj8a2RX7m6uKWw5/0wXDXZu3K6CxlQ9u0Kjc1j+Gw1jNS862Aff/CsRIqEAVwsquKFnR0srMH729mhFvg6LrbVT4YQzstghOrbAZFgbFT51JLsEO59//jlCQkLMtkmlUnz11Vc4cuSIVccaNWoUGIZp8LNt2zYAxmmQq1atQkFBAdRqNfbv349u3brx9VLsbkxcKGRiITKKq7DjtDFRemrfCADGu2q11vm6QF0B26vjJRWZdSk7Ctuzk1Nmn4RftmcnyFfG9WSxH1zsytKB3lKLu+S7uHjPzqVc84UurxU6Zg0mCnZa1jHQC0E+xiKr7KQCR7teyFZObn39H18nTVJWa/UorjR+XrCrz4e1QXkMR+Ml2LmzZo1cLoeXl1ejtWyGDx/Oxyndho9MjFHdjeXZ2Z6c8T1DEegthYEBrhVS3k5rOMMCoPV1M3WH26skO5uz4+8lqRsyM43L3yw2fnCzCaGWYIexSqpquS9sV5JyR7Bz3UHXEQU7lmFrYbW0zElbYadhRyhav1YUOyPL2VY+Z/MGvaQi7n0ZZiq8SsNYLfDz84O/v3+TP+zjpHGT+0SY/d43yg89TAvP0VBW6zjLTCxW30g/AMZptvYIHkpNw1j+XlJuyIzt2blh6tmJDrL8LtVHJuam7LviUNblPGOw0zHAWEPEUTcNlKBsGfa95izBDtvzYUvZCmdd+bz+EBabQ8v27DRVssId8NK/f+jQIe7fDMNg0qRJ+N///ocOHTrwcXi3N6ZHCGRiITQ6AzoGeCHAW4q4MDlOpJfQjKxWcqbkZMCYjBnp74mcshpcylU2WdCvtdgKyv7eUrOppABw87b1PTsA0CXQG7crNMgsqXJ4TRZrGAwMLpt60GYkdMAHB647fhirFTN62pNgH+cJdtRaPbf0SpAtwY6Hc658zvbsdPCv67Via+24c88OL8HOyJEjzX4XiUQYOnQooqOj+Ti82/OWiXFPjxD8eqmA+1LpYVohnXp2Wue2kywVUV/fSD/klNXgr5xy3oMdtqigsWfHPNmQrVBr7fpDXYK8cSqzFBnFVUjNU+FaYQWm9Ytw+nXcbhZXobpWDw+JEPfGh+GDA9eRXlTpkDXoaBjLMlzPjhPU22E/O6RiIZd30xrsc6ucLNipPxOLdednhjtyfOYmAQA8OzYWFWodHh9hXFE4rt4wFi0Uar26YSzn6NkBgL5RCvycko+L2cqWd7aCVm/gusr9vSRmPTsGA8MlGVvbs8Pm7ey9VIBNR25ArTVA4SXB6O4hLTzTsdghrJ7hcnQN9oFYKEClRoc8pZqbfdIWGIaByvR3oWCneex1yi7x4kjsLMZgH5lNn7vOUEU5u7QaGp0eMSF1U+hzTTNC618L7LIh7rxkhEuvjeVOeoTJ8cXjQ7ienZgQHwgFgEqtc4quXVfDXrShfAY7DAMYDMaf+nVb2G0Gg/m+d9R26WPK2/krp5y/NgEoN+XrCATGL1U2T+VKvgqZJVWo0eohFgq47ZZiZ2RdLaiAWmt8bd+cdszSKtZgZ2LFd1BAKhZyr6Ot83YqNTqu1hEFO83jhrGcoGeHzddhZ4i1Vt3U87YPdooq1HhpVwpG/d9hTPzgmNnEiNxy44zQSP+GPTslVbVOWfGZD3YLdqgnwjYysQj+XsaLrcRO6ym5MzZfhdeFDtXlwCp/44+h3gfY/pXGbftfq9um1wJrIoHNYwBVHgDjl69AYOwq5nOKLZuvI/eQQCwSIj5CgagAT1RodNhwyLhUQscAL0gsWNG6PjZIAOpWyt5/pdBu63vx5VKu8YM9voOxzd1M5f7bekYWO4QlFQsbXV3eJl/+HXi7A3B5l/n2isLG928rZbeM730rOVOCMtsGthp5a/k4oGenSqPD+v3XMOq9w0hKzoLewECrZ7B+/zVun9zyhsNYfl4SSMXGzwdn6F2zB16Gse677z6z39VqNZ566il4e5t3m+/cuZOP07UbAd5SlFTVcjVUiGUYhuHqRYTZGuwY9ICwlV9UtZVA3nnAy1gl20cmRkywD64XVeJithJje/ITiLHBR4C3MTgWCgX4+4AovL/vGnaezwFg/RAWYOxdHN8zFF5SEd65vw8e2PQHLuWq8MOFXDw6vAsvbecbwzC4YioI19OU9xYb6gOktH2tHbvm62irje+v+r2Hf24EDrwJzN4NRA1u+ByDHjizBejzd8BDwX+bDAbgq38A2irgkd1AQBfzx05vNl4LvR9o8NT6wY6jh+3ZYSxbgx1fCQMhDG029TyzuAoP/vckF6z1jfLDw0M6Yvn3F/F7aiEu5SoRFy7nbgTrD2MJBAKEKzxwq6Qa+Uo1oqzsBXYFvPTsKBQKs5+HH34YERERDbYT6/h7U89Oa1RodKg2VU9uqVJwi3Y/DbwZDCR/AsgUwPIM44+w3n3CqBXGbaNerNsmkgBPJwP/+AoQ131oskNZF3kcymKrJ/vVm/HzwMBICAV134XWJicDxpL3n8weiPUzE+AhEeHBAVEAgO/O5tjeaDspVGlQXq2FSChATIjxNbM9O/aqcdQU3oOdm4eB8izjH/X+T4FnLgCx44yPGfRA+n5joJG+v/Hn62uBfSuBEx/y0547lWcCJemAXgfknjV/bNeTwK/LAUnjOVNssFNTbyaUo3A5O7bM5Px4MGbvH4h+gnQun65So7PrsiWf/3kLtys0iPT3xIZ/9sfup4fhwYFRmGoqbfLBgeu4XaGBVs9AJBQ06PVmf3fXwoK89Oxs3bqVj8OQOwSYhrHuXNGaNI+dPunrIYaX1Ma3uEZl/JIQSQChEPAKaLiP1Nv4U59AAIT0MP7U0y9Kge/P5Zitbm8r9v3Bvl8A4/IUI7sF41DabQB1C3s2y2AAym+Z35HX87e+EVj98xVczlMhNU/V7KrpjsL26kQHeXNDRwM7+0MoAFLzVbhVUoVOgdb3crWGqobH5GS9ztRrUg0sOAUEdzd/XCgC/v4ZcHk30O+fxm21VUDyJmDYs4BIDFzaaXx+zmnb21Pf148AEi/g7mXAsuuATG58/9fXcxpwZU9djxLDGNtium68pGL4yMSo1BhzFH09HJfjVNezY0POjtj4XB9BDSo0OpzPKsN9G//AI0M7YdW0eD6a2cCZW2UAgOfGd8PkPuHc9mfGxGLPxTzsSy3k1usKk3s0WAiYm5Flp8WKHY0SlJ1YgOlic/YcCWfD3pmE29qrAwD3fQIsvgTE39fyvo0puwUcXw/8uQkA0C/KWFzz2PXbeO2HS7xMS2WDHT8v8w/nhwZFcf+2qGdn/0rgw35A6g+NPuzvLcXYnsaZWHsu5rWusXZ21VSXii3dABjLD7BT/Xefb7t281pQsOq2McDxCgQCYxvfR+oNJMyqCzRuHAQOrAJ+eNr4e8xY4NFfgYe+sL09XLtKgKs/Axd3GG8GPBQNAx0AiJsKPHsB6DwCyDgG/LszsG2y2S7OkrdTXFG39EqrpHwHRA7CpTGf4bihN6o0Ohy8WgSGMfa+2KOciFqrx2VTYv7ATuY3ZDEhPvj7QONnwY9/Gd//9WvssNgcvTQ3rdpPwY4TY+/UKdixDq/JyTJfwC+q9TkOyhxj4vKp/wIA4jvIMXdYZzAMsP3kLfzt4+OoqbVt9kMZl7Nj/qV6T49QdAr0gsJTwlXkbpanqcr56U+b3GVUN2OwczqztHWNtbOr3AKO5q93RoKxwOkPF3LbbAV0Xoex5OHAk4eB59KMQYUlbv0BiD2AgfOMv/uGAp2GAR5W9MiVZTb/uKc/MPdnYMxrQMAdddVq76i87Rtm/K93kDHZv+SmWc6Rs8zIsjlnJ+Vb4MwW+FfdhAFCVKp1XJFLhgHe3XuVr6Zy/souh87AIMRXZjbLivXW9Hh8MLMfJvQyLkX0t74RDfZhJyGk8Njr7Eyozo4TY3N2KNixDhvs2JyczIeALkCfhwB/49CQQCDA63/rhbFxoViQdA43blfh7K0yjIhtfZHBupwd854dqViI3U8Ph9ZggNySYYG4acYvrC4jm9xlUBfjXeNf2UqotXr+ZxnZiO3ZibsjuBvfKwwekhTcLK7CxRxlm1SEZoMduQePH7MiKwKn/nOAwU80DEIslXEU+Pw+YMQSYPRLjffYCIVAp0TjDyvnLPDDAqC6GPAONrZjyL/qnh8YAzx1wtiuescMdpJaOzbPxor7G+DpD0PHRAAlqNDozPLFDqXdxp83SzA0OpCH1hqxQ1gDOvk3mtwtFgkxrV8HTOvX9KoG7OzF9NuVqNLouDpB7oJ6dpwYe6dOOTvW4WZi8TGMdXw9cHIDUFPWuufLI4xDYaNXmG0eERuEQZ2NgQO7UGdrld0xG6s+f29p81WkGQYoMt1pBsUAvWY0npdk0tm0QnWt3tBgZXFH0+j0uGFaGqNHmHnvhY9MjPE9jT0Lu87ntkl7eO3ZaU1vVEiPhoFO4WXgxAfAlZ8af05lUd2/s08BBq0x6dia88vDgdtXjENvRanA9d/NAyWRBAiLB6TmM36coWdHrdVzdXGCWxvsJMwC+v0T/jkHcZfwIirUOu4zie1h/L/f0nhpL+tcvWCntUJ8PRCu8ADDgOuJcicU7DixAG/jxVZa5XqrTjtSXUFBHoKdQ28Dv70EaPgfx+4aYhwjv1FkW7BTWm/Fc6t99yjwnyHGWWe6lr9kBAIBlxNwysmGsm4UVUFnYCD3EDear8V+0ey5mAed3tDgcb5xPTu2Bjs1ZcD73Y0Jyq2oYWPm5mHjjKy/djR8rPQm8H4PIGmm8Tx3Pw889CUwfWPd0Jm+fn2p14GDqwH1HV+M8gjgn98Az14EJq8Fhj9jUdNaytlhGMbuQ5DsEJZUJITc04aejfT98Pnj3xgp/Ivb1DnQC0vHdQNg7InR8vQeNBgYnM0yBjsDOzd9o2KJ3qbeHT5nizoLCnacWF3OjnsWebIX/mrsGIx3ab0fBDz8bDuWrhbQms9y6GpahZxdlby1bMoxiB0PiD2B0F6ASGr8Yj33OXDs/Safwg5lnclsZW+XnXD5OuHyRrvyR8QGQe4hRnFlLVLbYM053np2cs8ClYXA7avWDWM1JmoI0HM6EDOm4WM3DwOM3tibw54nbgogqXcd7XkWOL4OKM8G/vgYOPqusZbUnbpNAPw7AYPmAdGjGj6edwE4/A5w8VtuU0gzwU5xpQb3b/wDE9YftWuF3/rVk1tV66c8C6guBSIHg+k/F+eZumTyXhEKRPh5crOg+EpPuFlchfJqLTwkQvSycYYkl7fjZL22fHCvQTk3488OY1VpHV5oy5UUKI0fljYPYwmFwJR1tjdo99PAhSRg0nvGHAoTtmeHXZW8tUq4D+hWBDt9/2HM0VGYxvIrCoAfFxoDoKELzL/oTAZ1NnaVn8kshcHAQCh0jvfl1QJTvk5Y48nYEpEQAzsH4ODVIpzOLONqHtkLb8FOpxHAvH2AmocvoMiBwN+31/2+ZwlQdAUY9yYw8DHje6GpHr7i68B500yu6NHAA1uMAVJ00zleTco9AxxeA3SbCPR5EEDTPTtFFWrM2pyM66Ye0IziqgbDlHwpZvN1WjsT67eXgSs/ApP+D4K/fYCjZ3/jesN6RsghEgoQ6C1FUYUGtys0TfY+q7V6iIQCi6qen71l7GHtE+lndZX0O/U2XRPumKTs8j07r7/+OgQCgdlPjx49Wn6iC2BzMGr1BlTZOGOnvajVGbieDl5ydvgg9QbAABX5ZpujTT07eUo1qltZZbW6tq6AYmBr6oIIBHWBDgAE9wBiJwDDFgK6xouL9QyXw0sqgkqtw7Ui55mmyk7prT/t/E4D6wVq9pZjWl06XGHj4qMSD2NFZLaAIJ/uet7Ym5f0oHH2VGBXILRn4/sGxQIjXwAm/R8Q0Q/o+TdgytrWnTeiP5DwMNCjbvo5G+wU1Qt2VGotZn7yJxfoAPZdmdvmmVhsbl+QcbjKp15yOlvRu6XhukKVGmPeP4Lx645aNNyanGF8Lw9sbb6OTmOcdVddyg1j3SyugkptDNbLqmrx8cHrWPrNBa731BW5Rc9Or169sH9/XdVQsdgtXha8pGJ4SIRQaw0orazl1lohTWPXnJKIBGZF9lqFYRqfgWKtu5cbvyS8zGdf+HtLEeAtRWlVLW7eruJmQ1iDrQkiEwute3/cOglc3WO80+81o267QADM+qbZp4pFQvTv6I/j6cU4nVlmt7tsa7E9O3dOO6+PTQo/nVlm197SCrWW++LsHOSEpfdrq43BjdjDGHh0HNKwMGZjRr/Ez/k79Df+1MMGAaVVGugNxiq/Gw6l4+btKoQrPBDgLcXlPBVXNNQe6mZitfKzY+4eoKacqxQtlwrA3uKwRTibC3b0BgbP7jjPrV91taCi2c+FWyVV2POX8Qx3dwu2rq3XfgcyjxonKKTvAya/j4BBjyPS3xM5ZTU4e6sMJ64X44vkW9xCwLvP52Lm4I544d4eLre4rVt8e4rFYoSFhTm6GQ1UHj8BjarpfAyhABDVm7mrbeTmftztqyir1qLkFy38Qr2a3ZclEADiesfV6YA70/oEIhG8Bg6AyNcXEqkIqloVLhRdQGLI8IY7myg1SvxVfh4Mw2Bk5EgI9EIwDJChzECmMhMRPuHoHlDXq3a08DAYhsGIDiMgNkjAMMAt1S3cLL+JMO8wxAXGcfueKDoGnUGHxIhEyOABppkbGoms7sXptHqzffOKqyBhgM5SoHz/IYgYHRev6PWAoZn8RrEI5vsWpRnzE/w6NZhNZbbvHQueN3vcO/adUnYNN4urkf9jBcI7BUAkMr4vLDmuSASUllRhWF4aAr2kKP216WngImFdjqnBAOiv7jUWP4tKB255N79vI22YWFoA5BWg+OccqFRdmt230eMyxv/HTREKjftbuu/FnDLEpmWghwAIOy9CyaXGO607MQbcXXAJOgODG9/XwN+r6Tv4+tcnwwBsqohnfDwkoaF3tEEAkURo2pfBzfwK+GmqMbQ6B7UHJShp4rhA89eyUACI8pIBgRAI6QmtsOmA5M7rvsnjXt8HwcWvIO48FBjyJOA9A7pCgPnl98aPC6D+/WNjnydN7qtvfiKXpN6+Qh1wd95lGABk7QJ0egZpv17BCD2Df8V0waU8JRR5xTAcKUZZSXiz13L941pz3ctOZWNEXgl6Xb+Nkl8aLqra4DOiqeMWX4P4+LvYyMjxiuZhKDwkEB+ToEQADMzIgi6vFMyRUpTcDjU77k9/5UOUUoARMJ4k/Tslwu8oS1H/M+K7IzcxOFuFHmE+iL0iQckdJXzq72t2feq1wK8vGCvEA4AwEKI/LkFY9jtmVNzEuTwlPn8nFbV6BgMBRPp5wN9bipRcFbJ2Xcb/HTuMxeNiIREJrbruvYcNh8inbSqY30nAtFWFLTt5/fXX8d5770GhUMDDwwOJiYlYs2YNOnbs2ORzNBoNNJp6XaUqFaKioqBUKiGX83eXemPiJOzt9HyTjweWXELflI3c74fvWguDqPEPX7/ya+h/4QPu92PD3oFW2vgdrK/qFgade5f7/Y+hq6D2aLymg1+gGLNW342FBxbiXNE5LLy2FmX51Y3u6+Enwvq4hQCA4zOP4/e111B0q/FhDA8fCTb0fRZagxb7HtiHk5vykHe9vNF9xVIhtie+hIraCvw4/Udc/lyFW5dKGt0XABZsuof7995PUnDj3O0m9x15dAlEBmPvR2qPR1AQNrTJfUeceAFSrbG7PC3278jt0HQuQuKfr8JTbew+To+egayOY5vcd/Cpt+BTbbz7utl5EjI7T25y34Fn/w15RRYA4FbUWNzoOqPJfRMurId/+XUAQE7E3f/f3nmHRXGtDfy3u+wuvXcVEEVsNBtBY4kaS3JjS4wxxmhimjGSxMSb9kXTm2k3xphy04sxGk0xltiwgQ17CQoCAgLSy1J22Z3vj2EXEVjaIsKd3/Psozvz7pkznJkz77znLZzrNaNB2dATn+CefxqATO8bONt7doOy/U//F88c0en0skcEp/o90KBsn3++xydrPwC5rv04Efpog7K9zq2m66XdABQ4B3E0/IkGZXskrcc/TbTWFjv4cXjgMw3KBqT8RWDKRgBKbX04OOT/GpT1u7iNnhfESuHl1q7E3fBqg7JdMnYRfF60cmmV9uwd9naDsr1v8GbMXHH5R1ep5/PHdzUo63H5CCFnahI37hi1okHZ62GOsNNkEnnoNdP3A4P/D42dT72y1hV5DN2/xPT90IB/U+LoX6+sUlvC8NiaenJHwh+n0LlXvbJyfSWj9iwyfT8eMp88t4bLLoyOWWD6/8m+88jxHNCgrDRHiFyLOSJw00bU3S1bRLi4uBgnJ6dGn98d3rITGRnJN998Q3BwMJmZmbz88ssMHz6cU6dO4eBQ/43+5ptv8vLLL7d536z79gUzgTZyRydsBtTchDIzmVH1Nna1Zc0s1cntbGvLqho2yerSM9DExZFYmEiJtoQKM+HHSrmSu4LvIqEgAYWs8WRy4Z7hVBmqUMobN3eGeoRSpivDWmENWG5d2Do0FCu5+NphZW0+LNM6NBS1UFEta94kbN2vPzaCOOlZqT3Ny/YJxqZIAL0WpXf9Dwkj6uDe2BjENzmlquEEYADqoCBKC1Wk5mkQXMz3V9WzJzZV4kNSqaz/4WOSDfDHhgMgCKgCzMtesnMnsPpaU1l1Myur7NYNG29Rtkxh3hKr7NIFGw9RtlJuPuFisYMbp10DsFVb0dXXfB+svDzJE3qTVVSBo7P5dq08PLBxEPsgl1nO/0vh4lLr/jSH3NEJGz978U3cPcjsHCG3d2j6HGGtxKZ/L1CJfmPm5giZtXXtdq0b/lvIVKpasnK7hpfwZAo5Nu6VouXU0Re5bcPLjzK5HE2vfqTkanC0USJ3NL/ke2UfFMbM4A1gHR6OFaIZTCOYzzTerDmidxBZubnklekxODUy9/TtQ2mRK6l5GrQO5pMNGueIs5nFXLY1f27qoCBs9OI5KZXm7w3jHFGu1ZNRbv7eSLf3IEcfAECFvfm/g9LfHxtfUZmUq1tXSb41dHjLztUUFhbi7+/P+++/z7x58+qVuVaWHRDf8hpCJgerKzLQ1ie7eO1x/jqRyeLxwTw0umfT2pWBleqKdrX6OnZnfVEh6YueouLIEVSOdnht/4uCqmLclR6oFdb8lrieNw68iYPKgb9v/xuFXAEyUF7RbpVWb95ErW6hbPXS1J9Jf7IjbQevDn0Ve5W9WVkjy7b8Q/HX33BPwt9Yh4bSY9V3Jr8Mvc6AwYw920olb7qsUo6s2j6srzJg0JuRlVUhe8MLENA/cQ6DTc1EsvOfyyz46Qi9vR1Y9+gwFEq5KbqpsXYVSjkf70zk/a3nmDGgK6+ZKTCosJIhr14X0usNGKrMtGslQ/5uIOgqMDy4G71zjzoyOr2B8Ff+pkqA/S+MwdPRGoPegN5Mu3IrGYrqPhgMAnpdw7ZvuUKGwqpx2Q+3JbBydzJqlYIN0TcS6GZHVSPt7krM4f5vDhPoZsuW6BENy161NFWlNZA4ahT6omL816zGumdQg7KvfbyJqSufQ69S0yd2L7Ir1q2act+3SPbq+76Vc0SNcO37vjmyZu/7Xe+gjH0Loh6D8a9TpdXz2a4k/rP9vOk3UyK68MbUEADiUvO596uD9PZ2YMOCYS1e6r6aK+/7sct2kppbxtdzBxNZT4Zjs3PEwS/EHEZ9J8PUT7FSyvnzZCbvbkng47vC6eMlPls2ncrkqV+OM9DPhe8fiBTbVcp5b+s5Pt6ZyD1DuvH02GCGvLENQYAdT4/E27HGyV2hlLM2Pp1//3oCB6WCLU8Mx8O+fgW01nzSlPu++v4sq9BhhaxBn7YNpzJZtFbMIWSvtKKisoqFo3syf1TPOrJX3vdtwf+MZedqnJ2d6dWrF4mJiQ3KqNVq1NdIw7zypmuJrLODGp0MCq6K1mlWu6q6skpPNwK//IyEiAHoCwuxLa3CySvAtH9qnyk42TmikCmwUsuxktdtw6qedhuiWbLVk/u0vlOY2meyWSdSq6vKFWSWVjAtdR8Kgxb3GbfX+q1CKaepvWiWrJUchdk7SSHmG1E7olBaobhi7Hr6OqCTwfl8Ta2JqWntQp4xesRJ3eRrQqGQo9AWim/1DR1gwUGwdUcul9cbsqlEgWe1I2NqfhmejtbIFXLquUzqRS6XIW9ifxuS/eVQGiv2JIMMXp/anx7VxU4b+zsM9KvOXJ1XRpGuqkmRNzKZDKVagdrbg8qCXMjJQtmv/qhPmUyGISkBhUGLrlsPVI04yrd2jrCIbDPuz+bImr3vh8+HkQtBbW+SXXBzL+4bGciFHA3ZxRUM6+mO0lipuzq6Mqu4os59b7YPzZC9rNGik4G3m02jf786c0SPSJA9L0a0Vf92UphvnTpUXi426GSQXa6tdYxL1U7Jvq62ODuqCfJ15PSlYo5nFtPV3Y5z2aUEethRUlHF29X1taJv7oWvW9N8YBQKeY2vWGGamEvJzlP029n5OmhyxXQCMhm2jZSXmTqwKxH+Ltiprdh9Loen1hznt1OZLBzX67pNkdLhQ8+vprS0lKSkJHx8zC8XdBSM4ecFbVAfS65Wo3AVJ359fm0fGSu5FeMCxjHGfwxW8vbTiZt74ziciMe7rAC9nT2OEye07uAXdkHcJ5B2qHXtANz6HoxdCna13xa7udqiVMio0BnILG5+lEluS3Ps/HcMvOomRmXVh71nowUn/d3EJYrUvPp9vNqS2MRcnl9/EoDoMUFMG9C1yb91slUS7CWa9mOTGvYNqw+lr/jg0l0yXz3d7mISAKo+fczK/U9j42xSdAAwiJYoW5UV/bs4MaaPV63aa8acNIVlOip0lk/FUVSmo7hCfKlsUei5bwTc+IRY4R1ES8+uZWJ01hU0FI2VXq3sdHEWrTjGUPL41AJe/+ss4z/czej3Ynhs1RHyNFp6etozd1hA8/sJYlb494Lh4Oei0nPwczi9rsZhuQkEuNvh4aBmfH9vrJVyLuRorutkhB1e2Xn66afZtWsXKSkpxMbGMnXqVBQKBTNnzmzvrlkEo7KT10bFQK2qlZ3fD33Hxgsb2+QYrWV3+m6W7FvC7vTdjcr2P7IDAP3YicjN+BY0iX82wJbn4PyW1rVjBqVCjp+rqDS0pGyEsY6QW3Mn57LqPDON+DOYw9jvi/nXVtnJKakk+udjVBkEpoT78uTYoMZ/dBVj+4p+Vj8fvNis3xmVnSozyk5JhQ6fnDQAXMMaXlpsEin74D9hsPb+1rVzvXMhBr4cZzb80NHaCttqS1FWG4Sf/3FCHNPe3g51iuq2iJ2vw87XxOzXV2BUdkorqyi/In9aRnVeJmPV8gHVys76oxn8d28yAGn55ew5nwvAy5P6tTyJYFWluEbq3E1MOTDqOTF/UhN8Ma/GXm3FzdV15347av4loD3p8MpOeno6M2fOJDg4mDvvvBM3Nzf279+Ph0czcw5cp7SlZQfAyl20NOw6+Qffn/m+TY7RWvZn7md94npi0mLMymUkXiQ0TXzbd7+r4aiDJuMTDv3vAO+Q1rcF4gRz1VseYFp+MVYubg41SdCaOTk/fR4WJ4kVqOsjLwk2PQt/m4lschXN5xfzWlfuoiEqdHo+3HaOhKyaiD+DQeCpNcfJLa0k2MuBt24PbZHZfOYQP+Qy0bKT2IzEiDWWncwGZVJzNfQoEouNOoe2UtnRXBYTvhU3fLwOj0EvVlfPOAylWQ2KyWQyUwmYtkgsuOawqKBOH2TekbdBClKhJLumfljIdLHiu7K2k7a9WsyfBjX3b5XeYCpz08VZlDcW9SwsE5P7zYny5/lbeuPnasvcoQEM62neidgss36B/7sslosBGPWsmN39SktbM5gSLt4Xf564hN5cnH870uF9dn7+uZ6Cdp0IF2N9rDaqfK5wFZWd4TYhFHVrQdr3a8DobqOxklsxsmvt/hkMBpLizxAY0QeFlYL4ld8SJBhI9Q1iQkS/1h84Ypb4sQQHv4CNT0O/aTD961q7bgnx4e8z2Xyx+wIzBnczmbGbgrFURLMrNCuswM7MZFlZAgdWgq07jHutXhHjMlZbWXZ+PHCRD7edZ83hdLYtGomNSsEXey6w+1wO1ko5y++OqLXM0Ry6utgyurcX285m88P+i7w0qWnXi7J6edzcMtbF86l012rQy+Soe9UfSt1kAkfB/X837FvVGZArYPADYqboRpbMvZ2suZCrMRX7tRQJWSWcSC/CSi4zPbibzc93Q/YpuGedWHvslmX1islkMjwc1KTll3O5pJJurrZcLhETKVrJZSbLTxdnG7wdrckqriCsqxMv3NoXlZWch0bUDRhoEa2ts3YFI3p54GKrJKekktikXIYHXX/Ghg5v2enstLllx01cxhrjOIhHwh5pk2O0lkHeg1g0cBEDvQbW2r7lteVUzZ7OhnsfQ6fV4RqzCQDVlNvbo5vmcQkQ/y2u+5CcHO7LkABXynV6XvnzdJOb1FYZTPWXWpzeviHceopRMqNfaHBpoa2XsXb+cxmAjMJyPolJZF9iLu9sSQBgyb/60cvLfJhwY9wbJYbV/xqfTmllFbmllY2m51d2adxnp+iEOIZFHl1aH2pr4yJmN+4ysHHZjswt78DNr4i+YmZoK8uO0aozpo9n85eEjQgGQFYnU3p9GF9OjH47xozJPs7WpkKhMpmMBTf1YEiAKx/fPQCVVRs+rqsqIT8ZitJb9HOlQs6toeKLwPW6lCUpO9c5RmWnsFzXJuZBhZv4dl+V1/a1gixJweU83Nd+B0CvIzFsnLMQN00BJSpbbrh/ejv3rh78h8GTp+H+zXV2yWQyXpnSD4VcxpbT2exMuNykJvM04kSpkMual7o997xYsPDw1w3LqO1h/OticcgGHJX9qi07uaVaNJUtq+3VEJrKKg4m11yTn+26wIKfjqA3CEwb0IWZQ1q41HAFN/Z0p7u7HSWVVQx4ZSuDXtvGzC/2Yy4bh8lnJycHQVvzAlJlqDn/qgRRIasMsNAbuIQJr+qILEtadnR6A+uPisuO0we24rp6NA6W5IF3aO3t9VxPJifl6mUso7/O1Vbd2VEB/PJIFN1cLVhyJCNe9AGL+6Rm2+534aNw8d8WMiVczAu2+VRmLV+k6wVJ2bnOcbYVH2KCAIVtsJRltOxU5TcvKuVaYxAMnCs4R3x2PAB7Xv0Ae20ZuupY515HxYy1mTeMwdbeQhPDJ0NhWU9xcmgtKltw6tpgra3e3o7cNzQAgLc2/mM2x48R4xKWm52qeZXHc/6BuI/h2I9N/009OForTdenpa07cUl5aPUGurrYMLKXB1q9gcIyHaFdnXhjaohFwlvlchnzbhSzuWqrLTqHUgrYdrZhZVPh6opMrQZBYNGaueSW51KmK2P2xtn8eFb8e9qkimkvlJYoSJy8B07/BoXNc6TukFRpxeVTM/g4GS075RY77Paz2eRptLjbqxkV3MrlF7mi5uXgzyfgdR/Yv7KO2NURWUbLjm8zlrBbTPZpOPUrJG2v2eboK9ZJM7T8pWWgvwtdXWzQaPVsO1u31EZ7Iyk71zlKhRzH6sq5BW2g7BhDz0+d28f2i9sbkW4/tqVu4/Y/bufNA2+SdSENvx1/AFDw5Itc9A40yfV7+F7LHVSTI34aSM9vaRaOCcJBbUVCdkmTJoucllZodgmAoQtF/yFzGPSi02V+MmSdhBO/1HlL9W+jpayYc6LCMSrYg5cn9cNOpcDTQc1nswe22E+nPmZF+vH7gmFsf2okD40Qr6OPtp9v0Lojk8mQe4v1jDKTjuOgcmDDhQ2cyjvFZ8c/o6CiAI/sVABcWuucDBC3AtbMgaQdrW/rembff+A1DzEk2gzG8POs4oYzvTeX7+LE8Zo+qCtWFk1+J4CurF4FzpgE8Gplp+u1UHa6DoZxr0P43TXbImbDC1kw+eMWNyuTyZhc7e/0+7GM1vbS4nRir7fOg5u9muKKKvJKtfQ0v6TdbKzcxPVlB40ehdU1uNFayACvAchlcgZ6DWT/0rcJ1utI9e7BuHnTuRgZwcV58yjo0ZfJAy3wgDHy4A4x74SrhZYjss/Aof+C2gFurluuxMlGyewofz6JSeLjnYnc3NfLrAUj11ih2aGZyo53SNMizGKXw7alYkRaQYoYLWPtDL3GmUT83Ow4nl7ERQvm2hEEgZgEsd7ZqF6eBLjbsfPpUais5JYJCb4CmUxGWDdnAB4eEcj3camczCgiJiGHm3rXf7OpunShPPUij3nPQK1QM73XdDQ6DQO9BlKclIdnqWgl7TY4rPUd9AiGikJwbrjWX6fA2ln8t9T8Eq7RsmOpyufns0uITcpDLoN7bjBfGsUsuYmwe5mYUHDkv8Vto56DG58Unfyvwt1BvI5Nyo5xGcvlGszBnn3Ez5VYyAF+SngXVuxMIiYhhwKNFhc7y96vrUGy7HQAXKqXCvLbwEnZqOy4VygJc7fA5NxGuNu488eUP7ileARBh8S3XI+nFiGXywkI7cWIQ3uY/PNnlj2oczfw6idGiViC8nw4/CWcXNOgyLwbu2OtlHMivciUT6MhTAkF22pCcQ0EhQoEPXhWL8lclXTMz1WcnC1p2UnK0ZBeUI5KIWdoT/H69HS0triiczVu9mpmVzst/8eMdUfdRfRNCNaJfZPJZNzX/z5CPUI5+rZYiPOCfz+cvFoRGmzk5pdFP68eoxuX7cj0nyamQrhrlVkxo4Py5ZKKRp3Jm8L3+0Wrzpg+Xs2KgqxDQQqc+BnO/lGzzcFbtKLWE85tclAubYdlrDYkyMuBvj6OVBkENpy8vtIlSMpOB8Cn+gZIaYNMtcZlLLQ6rLXXZ34EI75qHy6//DJyBM6HDWfgbR3sAeATLi4fjXutXqdFEB+4M4eIb/HLdzT8wIUrSkU017JTWVKTC8QcwRNF0/b0b2DCW7AkH0LuqCXiX51rJ9WCyk5MtYP2kO6u2KqurfH5weGBqK3kHEsrbFDZtGog/Dz9XAqBh3cC4Dz/vrbtaGdD7SCmQmgka7ebvRqFXIZBqFH2W0pJhY5f48XoozlRAa1qC7dAMZpsUP31GK/G6LOTW1KJIAgNOii3CZknxHxAV0dZbnkBVt1db8Roc5g2QHwZ+HpvskUUUkshKTsdgNAuYoXf42mFFm9bbmOD3Fb0u9DnmrcktDfb3vqErrlplCqtOTnHk6LKNkxNXpYvRisct2AeJ7W9qOj0n9agozLAwyN6oLKScyilgN+PNTzxtDih4Nr7xVIRx34yL6dQYip2pXagvsJXxiiRNAsqO9vP1vjrXGs8HNTMijRv3blkJ4b7a9JSam2Pf/sjlAY9p7vJOOqf3OZ9/V9EIZfhVa0otNZJ+bejGWi0egI97BjWs/FwcbO4BsKwx2HQFUpuXhLs/xROrq0jfqWDckGZjvLq8hdtbtkxGOCL0fBeLyi5am75ZwMk/CX66bWCu4b44WKr5EKuxuz8da2RlJ0OQGhXZwBOpBdavO1sTTYaB/HtuSr/+g0/ryyvMIWab5rgxs85v/PlyS/b7oBF6WKpiK1L2u4YDeDtZE10dYX7VzacaXD5ssV1sYylIqydWtbBnATTf42JBdMLytBZ4C2uQKPlYIrYv3HVKeivNQ+PDERlJSc+taDe2llbKo4AUJpWo9CknDiHf9xWANbeKCMmLcasVa5JVBSLpSI+HwV6Xeva6gjEfixm7daYf+kyhp+3tmTEz4fE3Dr3RPq3TfHK7NOw+RkxoehVGO9Zrd7A2cxi0zZLOt/XS3mBmMtIoQL7q+6vG58Ua/i5tMJ3CTFD9MMjRT/Hj3act8i8YAkkZacDENLVCZkMLhVVcLnEssm0UopTuGgl3mxVeddv+PmZnQew15VTrLZjxIIXCHEPYXjX4W13QJUd9L8deo23bLsGA+Scg3Pm6209NKIHwV4O5Gu0vPbXmXplcltaF2ve37D4QvP9QAx6+GIMrBgimsIRfSjc7FTo9AKHUlqvLG87m43eINDb28GUx+da4+Vozd3VS4n/2X6+zn5Hf3EiV+eWIBgMnNp5gMw5s1Ebqkjx7ckni/ewdtLa1j9Ay/NFX5CcBItmu71u2f+JmLW70LxlwVheJe5Cy+erM5eKOX2pGKVCxpSILi1ux0RJlvi5Uil18Yd+U6HHTXXErZUKU5Tt3kRRuevibCHfQHPYucGiM/B8Zl2n5IFzxUzWji3MIH0F90b542anIjWvjPVHro/ILEnZ6QDYq63oWX2Dn0iz7NKNi7UL9p7iza6/jhMLZuyOBeByQF9G+o/ix1t+ZLD3YE7nneZEjvjgvVR6ibN5Zy1zQLcecMdXMGm5ZdozknUcVgyGn+6EpJ0Niqms5Lx1ewgyGaw7ksH3cSl1ZGosO81cxpIrxElP2UyTuVwBTl3EYoEX94ub5DJT1NJ2M/lpmsqW02LI/YT+7WPVMfLwyEBUCjkHk/NrJTcEeHjMcyCXI9NVcfKRaLQLH8K5vJgMt66EfbYCV1tXy3TC3kssFXFX6/IhdRgiZovWBRvzf79/VWfq/fP4JbRVLbMarIkXrTpj+3iZEre2ik3PiFXED39Vs80nTPR3G/WsGK31UQTs+8i0u7e3IwArY5KAaxSJZaSNy4/YqqyYP6rGutPScbIkkrLTQTCGxx638FJWL5de9Os5FICqvOvYZ+f4UQCsBgxAJpMhk8nQ6DT8e9e/uXfTvSzetZgJv07g9QOvt3NHG8EnHCIfEdP/B5i3TEX4ubDwJnE568XfT/Pl3pplkwqdnvzqDMrNrovVGia+A89ehMiHTJvG9jEqO9mtWrrRVFax+7wYcj6+X/sqOz5ONkyJqC5ueLy234FMqTTVyFLu3o5NlZYL/v0Y/Psv+AZZMERcaSOWiujskVhGbnoOxr4Ert3Nit3Y0x13ezUFZTp2nctp9mG0VQaTL8n0QV1b0tO66HViFfGGFLWEvyD/Amx9UUyeCCybHmoq9gnXyDnZ3P0pCFCUAYnbLHKoWZH+uNurSS8o59cjLStDYUkkZaeDENa12kk53fJOuYrqLMrXq2VHV6nFJ+0cAH43DTNtV8lVTAuahp+jH/PD56OQK7BWWFNeZbnsqhZHJoOJb8Pcv5r0dvXkzb1Mb0ivbjjD2urokV+PpGMQwNfJunk+O+UFYtTF3g9b0nsxnPaqUNrhQR6oFHJS8spIyml5BfRd53LQVhnwc7Wlt3fr6l5ZAqPP0M6Ey3WUOO+lS0iMvJlv+kzkkzEPMWrd9zi5iw+upMIkXtj7Ai/H1c2lJNF6rBRyU/K63442f4lkxz/Z5Gu0eDqoGWGpgpUzf4IX88Rlq/oY9jj860NYeASsREuSv5sdvzwcxUu39WWQvwuTwy2wnGYOfZW4BL1+fo3f3pWUF8AHfeGH26G8sNWHs1EpeLR67vp4RyKVVe1bQkJSdjoIRsvOifTC1js+XkGVoQorY32s69RB+Z+98dhWVVKqtCE4KsK0vbCykPTSdJaNWEagUyBb79jKf8f/FxtLJEeM+wSWBbWdg7JxCcmgh8K0BsVkMhn/Hh9sUnhe++sMOSWVfLbrAgAPjghsXqmI4ktiqYhYyy3P2amtuKGHGM2yvRVp4reczgJgfD/zyRSvFUN7uqGykpNeUE5STikABzIPMOHXCTxT8RfRvuNZHTyGO5+4Bzu7mmtOq9fyR9IfbEnZ0rp7NfsMnF4vOrr+r1ClFR+6jTC12s9m69lsUzHcprLmsPjCMHVAF8tmTJbLa7/A6Mrh3WB43Re0GjFSy612glKFXMbcYd1ZO38o/bu0MGCgqaQdgNxzkLBRjK68GltXMYGqVwiUWqbcw92Rfng5qskoLOeXw+1r3ZGUnQ5Cb29HVAo5hWU6iyZwe3Lnkyw9+z4A+uvUQTktRvTXyfYLxkpZM5l42HqwNGopwa7BgJh40GKU5YLmMugs6xBei4wj8HZ3+PY2s2IymYynbu5Fb28HCst0zPg8jov5ZbjaqbhrcDOXTdSOMDQaBrSirEbCZvh5lpgNuhrjUpaxzIXBIPDL4TSGvrmdO1bG8teJTLM5NzafymTDCTEJWXv76xixVVlxQ6CoxO38R1wuSStJI6M0gwOpqQiCmFNk+FXWgZ7OPZkfNp/Xhr2GQWiFr8LZP2DNXDj4ecvb6EgcWyWWjFj3UKOi/Xwd6eVlj7bKwKZmJK+7XFJBTPXSV6uKfjYFK+vqOUQDlaU126u04j3UyhDvZtMtUrQo37KsYYf3BQdh/l4xc7cFsFYqWFC9FL9iRyIVuvaz7kjKTgdBZSWnj6/o0HbMgvl28ivyybEWfT+u12gs/TEx1FcWMaBJ8hVVFaQVN2wtaRI3LIBH9sHQx1rXjjnceoK2VIy6qc+sfAVWCjmvTRFLYVyoXiq6b2gANqpmhqo6d4Nxr8LYpS3qMiD6HvyzoVZE2ehqJ+X41AKe/fUEUz/Zx7/XnuBSUQWHUwtY8NMRbnovht+OZtQqcioIAtvPZrNw1VH0BoHbB3RlgJ9LnUO2FzdV5/rZ8Y/ofH2z/81M8nid/IxRuNmpePHWvnV+o1QoeTT8UUb7jUZRT26iJuPgA35R4GGBgqIdAdvqXDeaxv1wZDIZUyNEf5tVh5p+r68/koHeIBDh50xPz7qZjVuEVgPrHobNz9dO1imTwcN7YMRiMY3F+WpfmHUPwqoZrS7E22wUVhBwI4TeaV7GwswY3A0fJ2uyiiuIqyeVw7VCqo3VgQjr6sTxtEIe//kYi9eeILSLE3cN8eNfoT4tzs/w2c2fket7hPKfHr4uLTv6Kj3eqf8A0HXk0EblD2QeYFHMIvwc/Fj1L/Op581i5yZ+2hJrR5gfC+5B9Sbsu5pBAa7cMbAra+PTsVMpuLe1WV9bStA40GtrOVh3dbGln68jpy8Vm/KX2KkULBwTRJlWz4/7U0nLL+eJ1cf4aMd5kzPm2cwSUwj9raE+vH27ZSqaW4qbgj15+c8zHErJp6RCR06xgjX7lBj03VhyV9+2rf0zcI74+V+h+3AxJYJNA8pucSbseQ8ChkG/qUwf1JUPtp7jeFohx9IKCa9e6m8IQRBYU+3zZlGrjiZXLBWhUMP4qwIkvPtDzJviy4F3KASNheBbxGhGZfukVrjWqK0UvH17KB4Oavr4OLZbPzqNsrNixQqWLVtGVlYWYWFhLF++nCFDhrR3tyzKbWG+/BqfjkarR1tl4HBqAYdTC1jy+ykiu7syKtiTGYO7NUvxsVfZYx0QwnlAX1SEoNMhU14/OT2O/LUTe20Z5VYqQkYMblS+p3NPyqrKyK/Ip7CiEGdjgcHrFc/mvbW/cEsfKnR6xvbxwsm2meNUUQSHvxajwVpT78u9J9z4RJ3NH84IZ+PJLOQysFVbcWuID97VCeAeGRnIV3uT+XTXBS7kaEzWKRD9FiaH+/L27aEWrjrdegLc7ejubkdyrob3t57jYHI+Wr2BUcEeTAprOB+JTq/jfOF5CisLGerbuJIugejHZi4dwtEf4NAXcGEn9JmEu72af4X6sO5oBt/GphA+I9xs88fSCkm8XIq1Us6/wnws12+1A9z8Kugr68+MHrUAvPqLLwkgZlAPuaNJLzgWI24FVFWKxzVXVFYQxKXT9EPwwDaL5NwBGNHr2mdDvxqZYElv13Zi9erV3HvvvXz66adERkby4YcfsmbNGhISEvD0bLxMeHFxMU5OThQVFeHo2H6aZ1PQGwRKK6vI12jZeDKTVQcvkl5QE30UFejGF3MGYa9uXI89mHmQAV4DUCDnn/4hYDDQc/culJ6exHy2CqvPlyMgI79POG7jxhJ19yQUVtfuBr10/iIpd07HpbyY82HDmbS6ab4LZ/PO0sulV+uWEM78LtaQChwFThYKT21vNj8nJm4LGgezGi5G2pYUaLQcSM6jXKenSi8Q6GFHXx+n5i/HXUNe+fMMX+0Tw/6tnA6jktnzx7y59PRo2PJ3OOsw9225Dx87H/6+4+9r1dXOSeHFGmvPrw+IykP3EYBYQmfyin0oFTJinx1jKsNQH8+vP8lPBy4yJdyXD++KaFDOopzfBvlJEHgTePS6Nse8mtxEMbeXYIAZP0Af8z6CrBwG2adgxo+i9Xn7KzD9WzHHFkB+sqiUOlwfvnVNfX53CmUnMjKSwYMH8/HHHwNgMBjo1q0bCxcu5Nlnn230922p7Bw48jklZXmEB0/B3aMPALk5ZzmW8BsOtm5EDqhxxjt07CuKSrMJCboVL69QAAryk4g/8wu2akeGDl5gkj164gfyitPo0/1mimS92H0+h29j4uiijMHdwYnJo542vWTkZfyOpiINN5eh2LmKfi+7L/3An5nfMdo2ggm936Lbg3egKCyg7M6paM6fx+PoqTrnUuTsTNGUOVhXh9jaaNJRV+ZRYeNNhY0XADJDFU6FYvRIoWtNFXUbzSXUlTlUWntSbmt8qzLgnH9SbNulP4JMfOBZl2dhXZ5N4R+xeOZmk+niy8A/1+J0eY/4s6BxNZaJ3PNw+azoi+J7xQT2z0Y0Og1xNjZYqe0Z1W2U6GuSdYrTaMm0cybIJQh/R384t4XyyhL22aiQqewY4zcG3g6A8gLOTv6ADFc/Ap0CCXQOBMS39l3puwAY4zfGtOySkJ9AWkka/o7+BLkEAaA36NmZJiYPHNltJEq5aI1JKkwiuSiZrg5d6X1mk5hS/q4f2aYTlxJvVHthnZ8Mzn4k2zmRVJiEj70P/XJSxAiunmPYmXUQvaBnqLU3tnkXwLELaY6eJBQk4GnrSWhBpvg2FziK3bnH0CbvJvLQDzhMWgE9x5BRmsHZvLO427gT7hlu+tPty9hHeVU5g7wGmSxjWZosTuWewsXahYFeA0XH7Yx44va+iabnaCLC5uBm4waaXHLOb+Z4ZS6OfkMZ4lNtXU2N5VDmQYqcfAjzH42HrQeU5ZN3fjNHy7Ow84siyjdKlE07SPyl/RTYu9M/YDTedt5QUUTRuU0c0qRj7XcDN3a5UZRNj+dYRiy5di70CbiJLvZdQKuh5J+/OFCajMovihFdxQcjl45xMn0f2TaO9PIfiZ+jH+gqKPtnA7FF51H43cBNftXZbrNOcjptL5lqG5T2g1n662VcbWWk2z9NOZVsnbYFb4fqt97sM5CXKNZH8hb9qkoqi7ll7c0E23iz8tYfKRV0xGfHY6vJZyjW4tu1bzhHLx8lrzyPvgWZ+KqcoOdYigQdh7IOof7raYYrHGHKp+DVl+M5x8kpyyHYNZhuDuIyjEanIe5SHFZyK/Ear+Z07mkyNZk11zhQXlXOvox9yGQy8Rqv5mzeWTJKM9r2GnetsWBuSxV9V4Z3HY5aISonyUXJ4jWeeoB+F+LE9Axe/dh5cSf6na8x9HIytlM/h55jSStOI6EgAa/CDEKULszdLiMmQ85N4bmEelYxpFKPUu1BvucN5FdmkVxyDm1qEnmJOg7pAnn/gYlgk0C55jKDKypxsvWAnmNqrvGiSwy0cgbfcHD2I+5SHBpNNhFlZbjZuEOvceSU5XA85ziORZcYYuUM3iHg2p2DmQcp1hYT5hEmXuM/3E7ehR0cHRGNXa8JNdc4EJ8dT8H5zfTvMgzv7uLYFVUUcujwSqwVSm4cvBCsxL/PsXN/kHv5NH18BtGlx83iNaYt4cChFahkckYMegxU4rLYycRNZGcdo5dXGH5BtwBQdvxnYlP+RhFxDzf51eRtOp13mszSTHo496C7k5jfqPLcJvYUJYFrAGP3fwvn/4bwe0gYEU1a8UW6xyyjR9oxmPopur63sSttFxRncJPcCYVrd/AJ43zBeVKLU+mWe4FgG28Iurn5SUybSFOf3x1+GUur1RIfH89zzz1n2iaXyxk7dixxcXH1/qayspLKykrT96IiMXdNcXGxxfv31v7lJMj1fKBVEDVI1IzjT/7Jk+e+J9ig4Nued5lk34/7iOMyLW9oyhld7Y9x4uxWok99j59exi/Bs02yy2M/ZD9lLC3MY+KIJdwd4YGHtpwXk2JxqzKw8asbTLJDunzGGftK+h8/zf6CWQD42Kdj8K3CPmsvD8fu4V2dku56Paxaiw1QCiSNmoRr5CBKdm4l4OguFHl5uH75fq3z0yJ6udtetQ3AlrV1ZGUNyNrUI2sLZKrt8PzgXWQqBcXf3wsY4LEj4FBtsTu8Bna9BaEzxLouRn6aR4pQSXQXbxyUDmydvhWO/QFbl/BVYCib9PlER0Rzd5+7YfWjZFfkE93NB6VcyZ679sCw/4OYN/kh6xTrD7zLAyEP8EDIAwAUVRYRvSkagH137TNZkH45/gurElZxT597eCxCdGzW6rUm2W13bMNeJTpFrju5jq9Pf80dve7g6cQjkJMOmgqe2PEEBsHAhi5TcI/9GMJm8pd/CJ8c/4R/Bf6L/9vzLVSVwyP7WLx1MWVVZaz1v5Ouu9+HPpPZ3GcEH8R/wBi/Mbx+eAOU58ED23lhzwvkVeTx/eSvCfLoB8XFxCTF8PqB17nR90beHfWu6U/30o6XyNBk8PnNnxPqISrd+1L28WLsiwz0HMiKsSvg0jH49jbe8PEg6dgFlruGMdh7MKQc4uDvi1js5U6/i/v4cnx1/bJNr7Ks4hynrNW8M9yOEd1GQMYJjq+PJtrbk8DkHfx0a3Vh0r/f4T/FRzlso+aVKhXjuo+Dywmc/nUB0T5e+CZuZt3kdaLsjg9YmbOPPXY2PK+DST0mQUEqiWseIbqLNy4Jf7Dp9k2i7K5P+G/G32y1t+XJigpmBM+A0hzSVz9IdFcfbM/+yo4ZO0TZfV/y3YX1/Olgx/yw+fzx8BzKSnNI/CyZR709UVdAsVA9X+z/HvavgEEPwM0vidsEgQ2nziLjLOVRuZzQpBK9LRo/hQO/XDgL4XfDxHdYHruc/Vn7WZJfwi0lRTA/jgSDhujN0XgqlPyRcgw0FVBczGcHPiMmPYZ/D/4304KmAaKSEL0puuYar+arw1+xKWVTzTWOWAcvelM0KrmK3XftNsl+f/R7fkv8rVnX+Ow+s1kQIb58VeorG7/GBz1tOt4Tm8Vr/K+pf4kKMrDhzAZWHl/Jv/TW/F96Igy6BDbdWPx39TVeUkJXpTcUF7M5YTMfxH/AWL2K19IvcM/gD9hxwZG43I85UKhhREYWOq0vD2mXYuV4BGuf3+mvkfPfqossd36afu5Kpv8pXuNfZGYTYtcNHtldc41jw4rU83DrBxA6nTd2v0FSYRLLsy4zWOkKCw9zMP0gi3cvpr/Mlv+mnINxr8PAOby7911O5Z3ineHviNe4+wCOV2qJ/mcNgZnxNde4IPCfdQ9wWFbJqxeOcLOb+BJ6KucU0ae+x1dXxbqAO8BOzIG2MnY5eyoyeP7CASZ5RAKQWJBI9MnvcK3Ss7HrreILH/DF/o/ZVprMkwkxzPASXwrS3UOJjnsF28snaq5x4Lv47/jzwp/MD5vPnH6if1ieU2+idzyFDBlxwz4AlRfc8DQ/HfuaNefWMNdgxyPlVeDYG01Brmnsd6Wmo46YDRPeZO2JtXx/9nvuKtbwREEBLDgEjhZcOrwC43O7UbuN0MHJyMgQACE2NrbW9sWLFwtDhgyp9zdLly4VAOkjfaSP9JE+0kf6dIJPWlqaWV2hw1t2WsJzzz3HokWLTN8NBgP5+fm4ublZNBKkuLiYbt26kZaWdt37ArWUzn6Onf38QDrHzkBnPz+QzrEz0BbnJwgCJSUl+Pqad6bu8MqOu7s7CoWC7OzaGR+zs7Px9q7fgUqtVqNW13Zkc3Z2bqsu4ujo2Ckv3Cvp7OfY2c8PpHPsDHT28wPpHDsDlj4/JyenRmWurzjPFqBSqRg4cCDbt283bTMYDGzfvp2oqCgzv5SQkJCQkJD4X6DDW3YAFi1axJw5cxg0aBBDhgzhww8/RKPRcN9997V31yQkJCQkJCTamU6h7MyYMYOcnByWLFlCVlYW4eHhbN68GS8vr3btl1qtZunSpXWWzDoTnf0cO/v5gXSOnYHOfn4gnWNnoD3Pr1Pk2ZGQkJCQkJCQaIgO77MjISEhISEhIWEOSdmRkJCQkJCQ6NRIyo6EhISEhIREp0ZSdiQkJCQkJCQ6NZKy04asWLGCgIAArK2tiYyM5ODBg+3dpRbx5ptvMnjwYBwcHPD09GTKlCkkJCTUkhk1ahQymazW55FHHmmnHjefl156qU7/e/euKV5YUVHBggULcHNzw97enttvv71OIsvrnYCAgDrnKJPJWLBArHHU0cZw9+7d3Hbbbfj6+iKTyfjtt99q7RcEgSVLluDj44ONjQ1jx47l/PnztWTy8/OZNWsWjo6OODs7M2/ePEpLS6/hWZjH3DnqdDqeeeYZQkJCsLOzw9fXl3vvvZdLly7VaqO+cX/rrbeu8ZnUT2NjOHfu3Dp9nzBhQi2ZjjyGQL33pEwmY9myZSaZ63kMm/J8aMr8efHiRW699VZsbW3x9PRk8eLFVFVVWayfkrLTRqxevZpFixaxdOlSjhw5QlhYGOPHj+fy5cvt3bVms2vXLhYsWMD+/fvZunUrOp2OcePGodFoask9+OCDZGZmmj7vvPNOO/W4ZfTr169W//fu3Wva9+STT/Lnn3+yZs0adu3axaVLl5g2bVo79rb5HDp0qNb5bd0qFo6cPn26SaYjjaFGoyEsLIwVK1bUu/+dd97ho48+4tNPP+XAgQPY2dkxfvx4KioqTDKzZs3i9OnTbN26lQ0bNrB7924eeuiha3UKjWLuHMvKyjhy5AgvvvgiR44cYd26dSQkJDBp0qQ6sq+88kqtcV24cOG16H6jNDaGABMmTKjV91WrVtXa35HHEKh1bpmZmXz11VfIZDJuv/32WnLX6xg25fnQ2Pyp1+u59dZb0Wq1xMbG8u233/LNN9+wZMkSy3XUItU4JeowZMgQYcGCBabver1e8PX1Fd5888127JVluHz5sgAIu3btMm0bOXKk8Pjjj7dfp1rJ0qVLhbCwsHr3FRYWCkqlUlizZo1p29mzZwVAiIuLu0Y9tDyPP/640KNHD8FgMAiC0LHHEBDWr19v+m4wGARvb29h2bJlpm2FhYWCWq0WVq1aJQiCIJw5c0YAhEOHDplkNm3aJMhkMiEjI+Oa9b2pXH2O9XHw4EEBEFJTU03b/P39hQ8++KBtO2cB6ju/OXPmCJMnT27wN51xDCdPniyMHj261raOMoaCUPf50JT5c+PGjYJcLheysrJMMitXrhQcHR2FyspKi/RLsuy0AVqtlvj4eMaOHWvaJpfLGTt2LHFxce3YM8tQVFQEgKura63tP/74I+7u7vTv35/nnnuOsrKy9uheizl//jy+vr4EBgYya9YsLl68CEB8fDw6na7WePbu3Rs/P78OO55arZYffviB+++/v1bx244+hkaSk5PJysqqNWZOTk5ERkaaxiwuLg5nZ2cGDRpkkhk7dixyuZwDBw5c8z5bgqKiImQyWZ1af2+99RZubm5ERESwbNkyiy4PtDUxMTF4enoSHBzM/PnzycvLM+3rbGOYnZ3NX3/9xbx58+rs6yhjePXzoSnzZ1xcHCEhIbUSAY8fP57i4mJOnz5tkX51igzK1xu5ubno9fo6GZy9vLz4559/2qlXlsFgMPDEE08wbNgw+vfvb9p+99134+/vj6+vLydOnOCZZ54hISGBdevWtWNvm05kZCTffPMNwcHBZGZm8vLLLzN8+HBOnTpFVlYWKpWqzgPEy8uLrKys9ulwK/ntt98oLCxk7ty5pm0dfQyvxDgu9d2Dxn1ZWVl4enrW2m9lZYWrq2uHHNeKigqeeeYZZs6cWavIYnR0NAMGDMDV1ZXY2Fiee+45MjMzef/999uxt01jwoQJTJs2je7du5OUlMTzzz/PxIkTiYuLQ6FQdLox/Pbbb3FwcKizRN5RxrC+50NT5s+srKx671XjPksgKTsSzWLBggWcOnWqlj8LUGuNPCQkBB8fH8aMGUNSUhI9evS41t1sNhMnTjT9PzQ0lMjISPz9/fnll1+wsbFpx561DV9++SUTJ07E19fXtK2jj+H/MjqdjjvvvBNBEFi5cmWtfYsWLTL9PzQ0FJVKxcMPP8ybb7553ZcluOuuu0z/DwkJITQ0lB49ehATE8OYMWPasWdtw1dffcWsWbOwtrautb2jjGFDz4frAWkZqw1wd3dHoVDU8TbPzs7G29u7nXrVeh577DE2bNjAzp076dq1q1nZyMhIABITE69F1yyOs7MzvXr1IjExEW9vb7RaLYWFhbVkOup4pqamsm3bNh544AGzch15DI3jYu4e9Pb2rhMwUFVVRX5+focaV6Oik5qaytatW2tZdeojMjKSqqoqUlJSrk0HLUhgYCDu7u6ma7KzjCHAnj17SEhIaPS+hOtzDBt6PjRl/vT29q73XjXuswSSstMGqFQqBg4cyPbt203bDAYD27dvJyoqqh171jIEQeCxxx5j/fr17Nixg+7duzf6m2PHjgHg4+PTxr1rG0pLS0lKSsLHx4eBAweiVCprjWdCQgIXL17skOP59ddf4+npya233mpWriOPYffu3fH29q41ZsXFxRw4cMA0ZlFRURQWFhIfH2+S2bFjBwaDwaToXe8YFZ3z58+zbds23NzcGv3NsWPHkMvldZZ/OgLp6enk5eWZrsnOMIZGvvzySwYOHEhYWFijstfTGDb2fGjK/BkVFcXJkydrKa5Gxb1v374W66hEG/Dzzz8LarVa+Oabb4QzZ84IDz30kODs7FzL27yjMH/+fMHJyUmIiYkRMjMzTZ+ysjJBEAQhMTFReOWVV4TDhw8LycnJwu+//y4EBgYKI0aMaOeeN52nnnpKiImJEZKTk4V9+/YJY8eOFdzd3YXLly8LgiAIjzzyiODn5yfs2LFDOHz4sBAVFSVERUW1c6+bj16vF/z8/IRnnnmm1vaOOIYlJSXC0aNHhaNHjwqA8P777wtHjx41RSK99dZbgrOzs/D7778LJ06cECZPnix0795dKC8vN7UxYcIEISIiQjhw4ICwd+9eISgoSJg5c2Z7nVIdzJ2jVqsVJk2aJHTt2lU4duxYrXvTGMESGxsrfPDBB8KxY8eEpKQk4YcffhA8PDyEe++9t53PTMTc+ZWUlAhPP/20EBcXJyQnJwvbtm0TBgwYIAQFBQkVFRWmNjryGBopKioSbG1thZUrV9b5/fU+ho09HwSh8fmzqqpK6N+/vzBu3Djh2LFjwubNmwUPDw/hueees1g/JWWnDVm+fLng5+cnqFQqYciQIcL+/fvbu0stAqj38/XXXwuCIAgXL14URowYIbi6ugpqtVro2bOnsHjxYqGoqKh9O94MZsyYIfj4+AgqlUro0qWLMGPGDCExMdG0v7y8XHj00UcFFxcXwdbWVpg6daqQmZnZjj1uGVu2bBEAISEhodb2jjiGO3furPe6nDNnjiAIYvj5iy++KHh5eQlqtVoYM2ZMnfPOy8sTZs6cKdjb2wuOjo7CfffdJ5SUlLTD2dSPuXNMTk5u8N7cuXOnIAiCEB8fL0RGRgpOTk6CtbW10KdPH+GNN96opSy0J+bOr6ysTBg3bpzg4eEhKJVKwd/fX3jwwQfrvDB25DE08tlnnwk2NjZCYWFhnd9f72PY2PNBEJo2f6akpAgTJ04UbGxsBHd3d+Gpp54SdDqdxfopq+6shISEhISEhESnRPLZkZCQkJCQkOjUSMqOhISEhISERKdGUnYkJCQkJCQkOjWSsiMhISEhISHRqZGUHQkJCQkJCYlOjaTsSEhISEhISHRqJGVHQkJCQkJColMjKTsSEhISEhISnRpJ2ZGQkLAYc+fOZcqUKe3djWvO7NmzeeONN0zfAwIC+PDDD5vdzubNmwkPD8dgMFiwdxISEpKyIyEh0SRkMpnZz0svvcR//vMfvvnmm3bt57VWuI4fP87GjRuJjo5udVsTJkxAqVTy448/WqBnEhISRqzauwMSEhIdg8zMTNP/V69ezZIlS0hISDBts7e3x97evj261q4sX76c6dOnt/rcdTodSqWSuXPn8tFHHzF79mwL9VBCQkKy7EhISDQJb29v08fJyQmZTFZrm729fR2ryqhRo1i4cCFPPPEELi4ueHl58cUXX6DRaLjvvvtwcHCgZ8+ebNq0qdaxTp06xcSJE7G3t8fLy4vZs2eTm5tr2r927VpCQkKwsbHBzc2NsWPHotFoeOmll/j222/5/fffTRanmJgYANLS0rjzzjtxdnbG1dWVyZMnk5KSYmrT2PeXX34ZDw8PHB0deeSRR9BqtQ3+TfR6PWvXruW2226rs6+srIz7778fBwcH/Pz8+Pzzz037UlJSkMlkrF69mpEjR2JtbW2y5tx2220cPnyYpKSk5gyPhISEGSRlR0JCok359ttvcXd35+DBgyxcuJD58+czffp0hg4dypEjRxg3bhyzZ8+mrKwMgMLCQkaPHk1ERASHDx9m8+bNZGdnc+eddwKihWnmzJncf//9nD17lpiYGKZNm4YgCDz99NPceeedTJgwgczMTDIzMxk6dCg6nY7x48fj4ODAnj172LdvH/b29kyYMKGWMrN9+3ZTm6tWrWLdunW8/PLLDZ7biRMnKCoqYtCgQXX2vffeewwaNIijR4/y6KOPMn/+/FqWMIBnn32Wxx9/nLNnzzJ+/HgA/Pz88PLyYs+ePa3+20tISFRjsfrpEhIS/zN8/fXXgpOTU53tc+bMESZPnmz6PnLkSOHGG280fa+qqhLs7OyE2bNnm7ZlZmYKgBAXFycIgiC8+uqrwrhx42q1m5aWJgBCQkKCEB8fLwBCSkpKvX27ug+CIAjff/+9EBwcLBgMBtO2yspKwcbGRtiyZYvpd66uroJGozHJrFy5UrC3txf0en29x1q/fr2gUChqtSsIguDv7y/cc889pu8Gg0Hw9PQUVq5cKQiCICQnJwuA8OGHH9bbbkREhPDSSy/Vu09CQqL5SD47EhISbUpoaKjp/wqFAjc3N0JCQkzbvLy8ALh8+TIgOvzu3LmzXh+YpKQkxo0bx5gxYwgJCWH8+PGMGzeOO+64AxcXlwb7cPz4cRITE3FwcKi1vaKiotZyUVhYGLa2tqbvUVFRlJaWkpaWhr+/f512y8vLUavVyGQys+dtXPIznqOR+ixCADY2NiZLl4SEROuRlB0JCYk2RalU1vouk8lqbTMqCsZw69LSUm677TbefvvtOm35+PigUCjYunUrsbGx/P333yxfvpwXXniBAwcO0L1793r7UFpaysCBA+uNcvLw8Gjxubm7u1NWVoZWq0WlUtXaV995Xx1SbmdnV2+7+fn5reqXhIREbSRlR0JC4rpiwIAB/PrrrwQEBGBlVf8UJZPJGDZsGMOGDWPJkiX4+/uzfv16Fi1ahEqlQq/X12lz9erVeHp64ujo2OCxjx8/Tnl5OTY2NgDs378fe3t7unXrVq98eHg4AGfOnDH9v7UYrU0REREWaU9CQkJyUJaQkLjOWLBgAfn5+cycOZNDhw6RlJTEli1buO+++9Dr9Rw4cIA33niDw4cPc/HiRdatW0dOTg59+vQBxIR+J06cICEhgdzcXHQ6HbNmzcLd3Z3JkyezZ88ekpOTiYmJITo6mvT0dNOxtVot8+bN48yZM2zcuJGlS5fy2GOPIZfXP1V6eHgwYMAA9u7da7Hz379/P2q1mqioKIu1KSHxv46k7EhISFxX+Pr6sm/fPvR6PePGjSMkJIQnnngCZ2dn5HI5jo6O7N69m1tuuYVevXrxf//3f7z33ntMnDgRgAcffJDg4GAGDRqEh4cH+/btw9bWlt27d+Pn58e0adPo06cP8+bNo6KiopalZ8yYMQQFBTFixAhmzJjBpEmTeOmll8z294EHHrBoEsBVq1Yxa9asWr5DEhISrUMmCILQ3p2QkJCQaG/mzp1LYWEhv/32W7N+V15eTnBwMKtXr261NSY3N5fg4GAOHz7coP+RhIRE85EsOxISEhKtwMbGhu+++65W0sOWkpKSwieffCIpOhISFkZyUJaQkJBoJaNGjbJIO4MGDWowHF1CQqLlSMtYEhISEhISEp0aaRlLQkJCQkJColMjKTsSEhISEhISnRpJ2ZGQkJCQkJDo1EjKjoSEhISEhESnRlJ2JCQkJCQkJDo1krIjISEhISEh0amRlB0JCQkJCQmJTo2k7EhISEhISEh0av4fligbpTfyXzkAAAAASUVORK5CYII=", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjsAAAGwCAYAAABPSaTdAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjYsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvq6yFwwAAAAlwSFlzAAAPYQAAD2EBqD+naQAAxHtJREFUeJzsnQd4FOXzx7/pvZCENJIAoffeq4ogItJEsXfsjZ8Ne0fFvwXBLiJKExVFUJTea+gQIIGE9N57/T/z7u3lLtwll+TK3mU+PPvcZW/Z27vbfXfeme/M2NXW1taCYRiGYRjGRrG39AEwDMMwDMOYEjZ2GIZhGIaxadjYYRiGYRjGpmFjh2EYhmEYm4aNHYZhGIZhbBo2dhiGYRiGsWnY2GEYhmEYxqZxtPQBKIGamhqkpKTAy8sLdnZ2lj4chmEYhmEMgEoFFhYWIjQ0FPb2+v03bOwAwtAJDw+39GEwDMMwDNMMEhMTERYWpvd1NnYA4dGRvyxvb29LHw7DMAzDMAZQUFAgnBXyfVwfbOwA6tAVGTps7DAMwzCMddGYBIUFygzDMAzD2DRs7DAMwzAMY9OwscMwDMMwjE3Dxg7DMAzDMDYNGzsMwzAMw9g0bOwwDMMwDGPTsLHDMAzDMIxNw8YOwzAMwzA2DRs7DMMwDMPYNBY1dnbt2oWpU6eKBl5U/fCPP/64osHXa6+9hpCQELi5uWHChAmIiYnR2iYnJwe33367qHzs6+uL+++/H0VFRWb+JAzDMAzDKBWLGjvFxcXo168flixZovP1Dz/8EIsWLcJXX32FgwcPwsPDA5MmTUJZWZl6GzJ0zpw5g82bN2PDhg3CgJo7d64ZPwXDMAzDMErGrpbcJwqAPDvr1q3D9OnTxd90WOTx+d///odnn31WrMvPz0dQUBCWLVuGOXPmIDo6Gj179sThw4cxePBgsc2mTZtw/fXXIykpSfx/XZSXl4ulfiMx2r+le2Ml5pTgh73xyCqqOz5DsbcDvFyd0MbdCbMHhyPcz90kx8jopqamFp9suYDL2SUm2T+1fvF0cYSPmxNu7B+K7sGmPVfLq6rx3e44nE8rNOp+/Tyc8dykbvBw4dZ8xqa0ohoL/z3frPHD1qDz638TuyLA0wVK5lJmEb7dHYfi8qoGt3NzcsCjV3VCe38PsxxXTHoh1h1LRlJuqdH2+cqUHgj0doUxofu3j49Po/dvxY42cXFxSEtLE6ErGfpAw4YNw/79+4WxQ48UupINHYK2t7e3F56gGTNm6Nz3ggUL8Oabb0JJFJZVikFq1aEEVFa33P48mZyPZfcONcqxMYZxMC4Hn2+LNct7/Xk8BdufHQ9nR9M4ZzMKyvDwz1E4mpBnkv13auuBO0d0MMm+WzP/nE7F0r1xlj4MxeDsYIc3p/WGUskuKsed3x9Ccp5hBkV1bS0+mt3PpMeUW1whrn0az4zN0xO6IBCWQbHGDhk6BHlyNKG/5dfoMTBQ+6tzdHSEn5+fehtdzJ8/H/PmzbvCs2NJyJuzfP9l8XxMlwCM69q20S6uujwL6QVl+G5PHA5cykZZZTVcnRxMdMRMfc6k5IvHPu18MH1AO6Pvn37fovIqrDiYIAbHX6OScNuwCKO/T1p+GW5cvAcZheXwcnXEw+M6Ge082n8xC1uiM3AsIQ93jjDKLhkNzqdLXrgRkf6Y0FN77GxN0Dj4za5L+P1YMl6c3ANuzsobB6uqa/DEqmPiWu7g796g8U8e/2X74sW4bmq+2nVRGDoO9na4qlsghkf6NflepA9/D8t52RRr7JgSFxcXsSiJuKxi8fjI+E544bruzd4Phf/Wn0gRN6qjl3MxsnOAEY+SaYizqQXicUKPINw/uqPJ3ofCWG9tOIsl22Nx06Awo3t3/jyeLM6fjgEe+OGeIegQYDy3eWSAhzB2jieaxmPU2olNl5Izru8T3Ko9ZzQxIC9XYk4pNpxMEWF9pfHZ1hjsu5gNd2cHfHPXYHQN8tK7LU1yfjpwWYSUyDhq5+tmkmMqLq/CqoMJ4vkXtw/EpF7BsBUUm3oeHCx9yenp6Vrr6W/5NXrMyMjQer2qqkpkaMnbWAvJqrho92D9J7whkAU+WmXg7I7NMsqxMYYRnSrNqnuEtOw3bAzy5gR6uYhB75cjiUbf/8kkyUN18+Bwoxo6RL9wX/F4KasY+SWVRt03A8RmSsZO50DTnoNKx97eDnOGSF5PkgYoEfLMEm9P692goUOQVq93Ox/x/KAJvTu/H01CQVkV2vu749oetuUZVKyx07FjR2GwbN26VSvcRFqcESMk/zc95uXlISoqSr3Ntm3bUFNTI7Q91oQcsw1r03KLfXQXydjZy8aO2aioqkFshmzsmFY4TCGlR8d3Es/Ju1NZXWPU/Z9Ikrwu/cKkwdXY4mQaSInjqvdhjAOFrRNyJHF850BPtHZmDw6Do72d0J2dS5O8rkoaL9IKpKziMV0N875TOIkwVSirpqYWS/fGi+f3juwgDEZbwqLGDtXDOX78uFhkUTI9T0hIEB6Kp59+Gu+88w7Wr1+PU6dO4a677hIZVnLGVo8ePXDdddfhwQcfxKFDh7B37148/vjjQrysLxNLiVDsVj7x2/m2PINK9uycSs4XYjPG9FzMLBLCctK4GMNgbYw5QyMQ4OmM1Pwy7DyfaVTBpJx90Us1kzQ2/VXeneMmEj+3Vi5lFoNya33dncS50doJ9HLFtSrdkhyaUZKmiH4rCkEHGKhjGd7RXzyaQjhM7LiQIeQUNIYpMexn1cbOkSNHMGDAALEQJBqm51RIkHj++efxxBNPiLo5Q4YMEcYRpZa7utalrq1YsQLdu3fHNddcI1LOR48ejW+++QbWRHphOaprauHkYCfCEy2FUvu6BnmKi2m/GQRtDIWwpJljj2Bvo4n5GvPuTO8viaDXRhkvlEVZfLK2hrRBJjV2EnNNsv/WSozKs9i5radZzkFrgEKxxL9n0oWeUSnIEwrS3hjqQRncoY0oL0KlLVLzjZcOLrPyoDSOzBkSbpNlISxq7IwfP16cgPUXqqND0AX71ltvicwqKiS4ZcsWdO3aVWsflHm1cuVKFBYWijz7pUuXwtPTuly4KaoQVrCPq9Fch6M7txWPu2M4lGVWY8fEeh1NZg0KE49bozOER8YYnFLpdfqaIIR1pbGTp6gbkLVzMUPW61jX+GdKRnTyh6uTvfCcy5lqSpItNEVoTDXU6nQ7xvXu5JdUYucFSf960yDb8+ooWrPTmpDFycZU2I/uIrk8WbdjXnFydxPrdTQhbVDvdt6oqpEy8IzBSZWOpk+YZJCYgp6h3nB2sEduSaVaY8IYU5zMxo6mB3RkJymsv/2c8cK9lhrzh3WUdDsH44zrsf/3TJoIw3cL8kK3FibJKBU2dhRl5Ruv4vGQDlQbAeJmwtVUTQt5J+o8O+atwD1bNQuTMzta+jlOqDw7phAny7g4OqBHqPQ9cQq68YhRpZ2zsaPN+G6Sl3v7ee3MXUuSnCcZ+e2aqO8bHilNYnddyDKqV3S9arJEldltFTZ2FBW/NV4ZbXJ5ku5CFiozpiOzsBzZxRUink4zI3NyY79QofU6k1KgNriaC7n66bNQMbFeoaYzdogBqlAWFRdkWg5l5MVnS7W6upj5HFQ647tKhWejLueioKzSasNYBHmpqC4P/f/6EwX6++GforCjiUZdRmEZ9l2UIgA39A2BrcLGjoI0O0218hujryoUIeswGNMWE6SaNOau1NrGwxnjVIP51mjtmlTNra/TJdDT5J9D1gSdZkPcKJBolcIQdCMM9TFu7yFrJ8LfXbQnoSSQPQrRMKrDWE0c8+m6pKKlxMaTqer1m06n4pav92PTmTQ8uPwItp0zfCz4+2QqamqlGljm6rtlCdjYsdEwlty2QPMmxpgGuVGmuUNY9d305No2hl7HlOLk+ucmeaToJsS0jFgNcTJnYl0JtT0gtp+zfCiL6tmk5MmlRpo+wZ2i8r5sPJUq9rXyYAIeWXEU5VU1oukpGb0P/3wUu2Ma1yjV1tZi3XFVCKuf7YawCDZ2LAydbM218htDvmmdSuZQgSmRRbYdLTQroj5qxNGElrnpZZG1bIiYksi2nsILUVpZLbo+My0jViPtnLmS8SpjZ8eFTItnAJKGsqK6RoS9KQO3Ode7l4ujqLFFTV9f+/O0KDNyx/AI7HnhKkzsGSSKFj7689FGG4zuv5SNE4l5ot7P1H62G8Ii2NixMHkllWLAJ0KM7H6mrBe6oNILykURK8a6wpCGEu7nLvpYUVbWvtjsltdpMUOrAdIF9VR5wk6rGqgyzYfabxCdWJyst0YNVVMmTRoZCZYkSTVeBHm7wsnBvlkZZnKxxHc2RovrfkqfENF2gl5bfNtADIjwRWF5FeatOd6g5/TzrbHq2jpUhNGWYWPHwsiWN7kfjd2h3N3ZEV1UNy7W7ShPbGhMxqpahOwywHWtr9WALJTvEmSeG6ZcM+RUkrJK+VsjsnfYHNW7rREaW2XhtqV1YsYoNXKDhheGOqa/P6uPOnxJXppPbu4vPKdUbfm73Zd07uNIfI7w7FCCw8PjpPYztgwbO0rJxDLRICXfUOTKuIzpwpChljR2VKGsXc1001O7C7nVgL+HeVoNyOcme3Zsw+BWOr1V5Q5OpxQo47dqwZhPRWMpEkAFE5fcPlBk32pCyRKv3dBTPP/ov/M6Szx8vk3y6tw0KMyiY5e5YGNHMYOUaVyIat0ON100CQWlVSiuqLb4jYbqb9AMjYxn6m/TXIFrFzMKXGVt0NmUAiG0ZJoHhSnSVKEZS4VSrQHZuD5jA54d8t789cRobH92vN4yEbcMCcd1vYKFYPmRn6O06q0t3x+PnRcyRTj5kXGd0RpgY0cpeg8T3Sj7qEXK+RYX5tkiSariYOQNMXfauSbUy2Zwez+1d6cl2TzmgtKBaWZaVF6lrhHDNB2qk0K6DdKk2LruoiVQtXEleBKN4dmRpQ8hPvr3QZOWhbP7inprqflleGLlMSFk//N4Ml5ff0Zs88yELiI1vzXAxo4NtorQhESgZL1nFVUgxcLCPFtETiFVghtYHcpqRi0R2djpZMZsHkcHe3W6Phe+bPkYQpk9dK0zuqFzzU6VsEEGoq2O+ZpQeOvrOwcJ/Q7pcyZ8vAtPrT4uQtZ3Dm+Px65qHV4dgo0dC1Nn5bubTJgnV/U9yaX5jU5yrqrsuyKMHUmkvP9iNsqrpNCaocTIYSwzV9+VQ1mWFo1aM6zXMTxhQzbmqb6Tpb355hKT0zX9zZ2DRQNeD5X3eWq/ULxxY69WVZPJ9vq4WxnyiR9qIs0OQWmIVOX3WGIeJvex7VoK5kb2linBs9Mj2Fu4tik2HxWfi5GdJePHoFYDKp2Pufsq9VbpDU4nc0aWpcMirUWkTF5M0u3IhQbNSX5ppUgJN/eYMbpLgFhIypBTXAE/D+dWZegQ7NmxIKUV1aKnEhFm5OrJmgyIaCMej17ONdl7tFZMVRCyOdjb26m9OzubkIJ+ObtYaD48LNBqQFNTxpWUlR8WsXbUGYAWMq7l34qMDfI0mRs7Ozv4e7q0OkOHYGNHATMyTxdHeLuZ7sQfGKHqkZWcLyprMsYvEKaUG41cTbkprSPUeh0LtBroGuQljCwSKctFDZmmwWEsw5EzlywlUubfynKwsWNBNE98U95kqLquj5uT6J3S0s7YjHmz6ZrK6M4BQoRJv7OhIkxLZGLJkKBW9jxSV2rG+ip4WxNUVZ6gEg15JZJXvbVq/FobbOzYuF6HIEOKdDvEsQS+oRgLqjpM5eeVdKMhF7Wsg9ltoHcnxoLGDjGwPRs71l7U0lqgSV97Vaq1JUTKrK+yHGzstBK9x0DV7JlEyoxxkHvsUK2YNu7aFUwtiazbMbR1RF1BQfNmYskMUhk7rClrnuBVCUUtrYnuwdJ5fi7N/GFTDmNZDkUbO9XV1Xj11VfRsWNHuLm5oVOnTnj77be1iuPR89deew0hISFimwkTJiAmJgbWQN2Jb/qiTrJnhzpjM8YPYSlJ8De2i6Tb2R2T1WhlYvJOxaRLxo5cosDcUEosEZ9dolXllWlKbz1no/fWs1W6B0uhrHMWCOkrKaGhtaFoY+eDDz7Al19+icWLFyM6Olr8/eGHH+Lzzz9Xb0N/L1q0CF999RUOHjwIDw8PTJo0CWVlyi+gV+d+Nn0GTL9wX6HlSMwpVYdeGGMNXMqqQEphIRL9UoppY6566plTUV2DQC8XhPu5WSy00FXVfJS9O02DQ1hNp0eIZNSfT2fPTmtC0cbOvn37MG3aNEyZMgUdOnTATTfdhIkTJ+LQoUNqr86nn36KV155RWzXt29fLF++HCkpKfjjjz+gdJLNWFzK29VJ9D0iWLdjHX3NmouTgz1GdDIslHU4Lkc8DunoZ1HvlBzKiuJzs0nwzbPpdFN5ds6nFZq13AF5UamSPcHd6c2Poo2dkSNHYuvWrbhw4YL4+8SJE9izZw8mT54s/o6Li0NaWpoIXcn4+Phg2LBh2L9/v979lpeXo6CgQGsxN1XVNUgrKDNbGIsYEC7dUHR1wGVs60YzTtbtNNIn61C8ZOwM7SD11bIUsqaMPTvWnQ1oDUT4ucPNyUFkp1KNKXOPF+R1JW8mY14Ubey8+OKLmDNnDrp37w4nJycMGDAATz/9NG6//XbxOhk6RFBQkNb/o7/l13SxYMECYRTJS3h4OMxNemG5mFVQp2oKIZizgNtpC5ZKtyWUHEKQ+2RRhhPVsNFncMvGxRALGzuyZ+dEEteCas4NVInnoFKhcgdy2NScImVNvY6SNH6tBUUbO7/88gtWrFiBlStX4ujRo/jxxx/x0UcficeWMH/+fOTn56uXxMREWGpGRs37qPKtOauHUql07oDeclLylTurbu/vIWawVBn5wMVsndtEpxaKTB5vV0d0U2WoWAqqBUUZbWToUGsTxjBY8Go9ImUle4JbA4o2dp577jm1d6dPnz6488478cwzzwjPDBEcHCwe09PTtf4f/S2/pgsXFxd4e3trLa2hxDulXNKshlpUyCE0pnlQllOqquO5Um80jaWgyyGswR38LN4tm2a6fcPqKn0zhpEsn4N8A20SsnFvKc8OY34UbeyUlJTA3l77EB0cHFBTI7m5KSWdjBrS9ciQ/oayskaMGAElY860cxlKTZVFytx4sWVQijRlMZGNEOStLIGyzBhVCro+3c6huGxFhLBk+qrCrCdZU9YEwauqqCUbO02ie4gFjB0LjPmMlRg7U6dOxbvvvouNGzciPj4e69atw8cff4wZM2aoZ4Ok4XnnnXewfv16nDp1CnfddRdCQ0Mxffp0KBkqV26JTJ66Rng8ezZGT6xgb1eR/aRERnbyFx4bql+TkC2VqZehMOaReEmvM7SjpJexNOzZaV4o3N3ZAb4KKmppTWGshJwSFOvRtBkb9uxYFmWO0iqong6lmz/66KPo0aMHnn32WTz00EOisKDM888/jyeeeAJz587FkCFDUFRUhE2bNsHVVZmzbUv3s+mt6g1zxkKN8GwFJYuTZbxcndRNYOuHsuKyikU408XRHn3aSdsoxbNzIb0QpaqqwIx+UjRCWCx4bRrUdVxODDFXvR3W7FgWRRs7Xl5eoo7O5cuXUVpaiosXLwovjrOzs3obusjfeustkX1FhQS3bNmCrl27QulYyqUpe3Z49tw6mi/WVVPWNnbkYoPUGNHZURnDAIUD6QZEpU/YGG+c5LwSxRvcSqZ7SF29HXOWGuEaO5ZBGaNcK27eZ+6bZY8Qb1FJOb2g3OCu2Iz1ztLkFPR9sdmorK650thRDfhKQQ5lnUxiY6cxOCxipB5ZZsjIkkuNODvYo62neUqNMNqwsWMB8koqUVopuelDfMwbbvNwcUSntp4W6/prex3rlX2jIU8e6TkKy6u0iknK6d29VB3SlYIcymLPY+NwJpZxjJ1oM3h2ZMM0xNd8pUYYbdjYsWjzPheLNO9T63b4htJygbnCZ9UkUB7dWUpB362RlXVWI4ylJOTClyeSOCPL0DAWGzstSz+nMJap646pQ44+/FtZCjZ2WuGNknU7rSeMpanb2RmTJR4pfEkpyzTBtFSnc330VZ2blzKLUVhWaenDsY5zUOEGt1LpHOgpJgP5pZUmrzsme3ZYr2M52NhphQ0k5dk8VdBlmk5BWSUKy6qsxtgZoyoueDIpD7nFFWqvTmRbT7g5m9+z2BD+ni7q75RrQemH9B9p+RzGagkujg6IDPAwS70deYIb1oZr7FgKx+b8J2rAuXv3bpElRYX/2rZtK/pWUSE/pad8KwFLN++rX2OCdDxM038/0sJYw3cX4uMmegFdSC/CtnMZ6llsL4WFsDR1OzQhIONsRCd/Sx+OIsksLEdlda3wTJirt56tZmTFZBThXGohruoWaLL3YS+clXl2qE/V0KFD0alTJ7zwwgv4448/hNHz3Xff4brrrhMNOKkmDhlBjLJaRVi6xoRN1tixovj7DX1DxePSvXF1eh2FZWLV1+2c5DBroxoQKmrpqNCillaVkZVWYCbPjvWMGbaGwVcJeW4WLVqEe+65RxgzqampiIqKwp49e3D27FnRpuHPP/8UrRwGDx6MtWvXmvbIrZg6K99dEeI8xjZr7Ghy5/D2cHNyEBl4m6PTFSlOluknV1Lm9PPGM7Gs6BxUsrFjynGQ+uhZk8YPrd3Yef/990XPKfLchIeH62yuOX78eHz11Vc4d+4cIiMjjX2sNoN84odaSLMj19sxd9dfW2sVYU0DVxsPZ9wyRLpuqbO45jmgNHqr0uEpzEoaI0Z53mFbKywYm1Gkvi5M0kevSuqjF2zmUiNMM4ydSZMmGbop/P39MWjQIIO3b01QGfwc1QAeZsGGcHXuW/bstKRMvzVx/+iO6u7mQd4uovSBEvFxd0IHf+na4IxB3XDauXEI9XGFl6sjqmpqcSmryKSTI9LOKbWPXmugxd88Nel87rnnMG/ePPz222/GOapW4NXxdHGEt5ujxcNY58xQY8LWSM4tscoQQrifO27oG6LIYoL14aagBhrcVnYOKg1qN1RXSbnQxE2f+beyWmPn1VdfFY046YShG+YzzzwjmnIy+tGM3VqyeZ85a0zYbhjS+gavFyd3x7T+oXj86s5QMnIl5RMaVZ8Z62pEay1oTvxMAdfYUQZNci0cOXJEiI9l1qxZgxMnTsDNTfoRSbxMuh3qVs401mbAVRE1JkTaZVqhcLEyjUOx94zCcqudqdHv/NmcAVA6fbjwZcO99axQN6ZU5FIcpsrISrJST3Cr9uw8/PDDePrpp0VtHYJEyP/3f/+H8+fP49SpU/jyyy+touO4JVFS8z5ZnGcq960tQoXcKOrn4miPAE9nSx+OzUJVvsnxmZpfxg1r61FQWoWicuspaql0eoSYNowlG6bs2bEiY4eysUJCQjBw4ED89ddfWLp0KY4dO4aRI0dizJgxSEpKwsqVK013tDZA3YzMXUFpl5yR1eRZmoXDkLYOFWvsrGpYe5q9OzrHEKqXpbQK2NZIV1XLFArn55VUmFCzY/kxvzXTpDCWg4ODKCY4e/ZsPPLII/Dw8MDixYsRGioVLGOaEmu3fAoiZ2S1IO2cZ2lmKS5IYdYTifm4unuQpQ9HMXAIy7h4uToJrwsZJTQWDo/0N27IkTU71itQpvDVv//+ixkzZmDs2LFYsmSJ8Y/MRlGSS1MOY13MNF2NCVuD65uYvyko63b0ZAPyOaj44oJUZqS0slo8D1HABLc10yRjJy8vT2RfTZ06Fa+88oowdii0dfjwYQwfPlzodhj9VFXXqDOflODSlGtMUI8dU9WYsDV4Vm0++oZL6ecnk/K5PIIGKaoGoJyJpXyRsjxeUF0rSgphrMTYufvuu4VxM2XKFCFKplAWFRBctmwZ3n33Xdxyyy0izMXoJr2wXHQrdnJQRvM+zRoT3DbC+gTmtg717qLyCFSBloTKjASfg9aTfs41dqzU2Nm2bRu+//57kZW1evVq0RdL5pprrsHRo0eFrodpOO2cSobbqyrZKuUij+aMLINgz475cHVyUItHybvDWG+7EmvJyKJJH/WyMnZCQ5gF+yAyzTB2unTpgm+++QYXLlwQPbDat2+v9bqrqyvee+89GJPk5GTccccdwoNE9Xz69Okj6v3IkHv7tddeE1li9PqECRMQExMDJaJEvYepa0zYEjQIpubzrNqc9FMVFzyVzMUFr2hEq6BxxNrp4O8BZ0d7lFRUI1FloBgD9sJZqbFDqebk3aEO6JRiTnV1TElubi5GjRoFJycn/PPPP6K7OtX1adOmjXqbDz/8UHRjJ+OLQmyUIUZ9vMrKlOf2VlLauQyHsQyHigmSvolCK8HeLDY0V0YWwZ4dibLKamTKRS35Bmo0HB3s0SXQ0+ihLDmMpYSElNZOk1LP+/fvr+VVMTUffPCB6LD+ww8/qNd17NhRy6vz6aefCrH0tGnTxLrly5cjKCgIf/zxB+bMmaNzv+Xl5WKRKSgwj1ejLn6rnBtlV5WxQ5qI/JJK0YSRabj5Ihk6NDgypqdvO22RcmuvbSRrl9ycHNCGr1Wje7nPpBSI4oKTegUbZZ8c9lYOBo/YlsiGWL9+vWhPQXV9AgMDhUfp22+/Vb8eFxeHtLQ0EbqS8fHxwbBhw7B//369+12wYIHYTl7IoDKr+1lBVr63qsYEwaEsA41VBf1+tg5pypwd7EUPt8Qc6ftvzWi2m2nthp/JvNzpxhkH6Z5Z59lRjje/tWKwsdOrVy8hSq6oaLjCJOllKEvr/fffb/HBXbp0SYTKSCtEdX1ov08++SR+/PFH8ToZOgR5cjShv+XXdDF//nzk5+erl8TERLTWMBbBxQWbWCOJZ2lmg3QUsnj0RBLrduo0IMoaQ2yB7kZuG8FtPaw0jEXNPSmt/NFHH8W1114rPC5UOZlEyaStIT0NZWedOXMGjz/+uDBMWkpNTY14H1n0TJ6d06dPC30OpcE3FxcXF7GYE81KmkrzDJD7dkt0Bhs7jcCeHcvpdk4k5YviglP7te5q7ZyJZfrM1PjsYpRWVLe4FYcsdKYeetzWw4qMHUotJ70OGTTU7XzFihW4fPkySktLERAQIAyRu+66C7fffruWgLglUIZVz549tdb16NEDv/32m3geHCzFVdPT08W2MvQ36YuURG5JZV0lTR/laHa0a0xwGMvasulaj24nASfZs6MOY7Hg1fi09XSBv4czsosrEJNRiL5hkl6subBex4oFysTo0aPFYg4oE4uKF2pCae9yyjuJlcng2bp1q9q4IbExZWUZw7NkikEqwNNF1A9Rco0JpdQAUhrqwYtvNGalb7iUkXU6uaDVn59K6q1na4giqyFe2BubLUJZLTV2WK+jLBSdUvLMM8/gwIEDIowVGxsr0t2pzs9jjz2mPjmffvppvPPOO0LMTO0qyLtE4bXp06dDSSg5BKJZY0I+TqaBMCTP1MwKdT93dbIX+oe47GK0ZpSq+7MVugXJdcdaHtJXqmyhtaJoY2fIkCFYt24dVq1ahd69e+Ptt98WqeYUKpOhXl1PPPEE5s6dK7YvKirCpk2bhJZImYOUso6rfo2JaA5lNRqG5J5E5j8/qXUEcaoV19vhopZmFCkbYRysq57Mv5USULSxQ9xwww3CY0NFAqOjo/Hggw9qvU7enbfeektkX9E2W7ZsQdeuXaE0lF71VK6kzMUFG56lKTEM2RqQQwqtubhgZlFdUcsgBfTWs0U0M1NbWm6FNTvKQvHGjq2g9BBI3UXOnp2GCgryLM0y9G4n63Zar7Ejh5i5qKXp6BLoBZKE5RRXCOOyJbBmR1nwFWN2cau7wt237NmxNs1Va6Cvqm3E6ZR8VBuxUaM1oXTvsC1AKeKkYWxpvZ3CskpRCJPgMcMKjZ2UlBQ8++yzOtsrUHG+5557TqR9M/qNHaVmUahrTGRJNSYYbbigoGXp1NZTtEggEX1cVhFaI0ofQ2wFeeLXkpC+/Fv5ujvB06XJSc+MpY2djz/+WBg63t6SvkMTartQWFgotmG0IeOB3KJEmEKzKOQaEzRpphoTjDacWWFZSKfSK9S7Vet2+Bw0b0ZWS5I1lC5baI00ydihLCdK7dYHvbZhwwZjHJdNIVv5ZOF7uynTyiehd11xQTZ26sNiQ8vT2jug14WxlDlhshWM4dnhbudWbuxQ482IiAi9r4eFhSE+Pt4Yx2WzN0olN++TM7KM1RvGluCCggrS7bRSkTKHscxDD9U4GJNRhKrqmmbtg+shWbmx4+bm1qAxQ6/RNoz+TsVWMaMxUtdfW4GK2eWVqMSG7NmxGH1UGVlnUgqafROyZuTQCHsLTAt9v+7ODqioqhF9spoD19ixcmNn2LBh+Omnn/S+vnz5cgwdOtQYx2VTWEusXZ1+zp4dnb+ft6sjvFydLH04rZaOAZ7wcHYQxR1jM1uXSLmgrBKFqg7aXNTStFA7EjmkT4a1LY/5rYkmGTuUifXDDz+IR82sK3r+v//9D8uWLROvMdbp0pRrTFAjvMzCltWYsMUaO0otG9CaRMqybud4QutqCirfPNu4O8HdWZm6P1v0IjY3ZKouVcGGqXUaO1dddRWWLFmCxYsXi/5T1N3cz89PPKf1n3/+Oa6++mrTHa2VYi3N+7RqTHBxQTWcWaEcBka0EY9HE3LRmmBPgWWKWDZHDE9hb5owEu39eYKkFJo8RXjooYdEC4dffvlFNOekktrUnuGmm24SAmWmgRotVjBQkW7nUlaxCGWN6dLW0oejCJKs6PezdQa1l4ydqMuty9hJkXtiscFtVjE8hbGoJxmFtgzlskrn4+fhzGFvBdEsf2i7du1ER3KmcUhImVZQZhVhLDkj6+9TaZx+rgELQ5XDAJVn52JmMfJKKuDr7ozW5R3mc9AcdG7rCVcne+GlicsuFkUtDSUhWwp7R/gpf7xvTTSrXcTatWsxc+ZM0YmcFnr+66+/Gv/obID0wnJR3t7JwQ6BVtC8r67WDoexZLjGjnKg2XLHACnUeqwV6XZk7yKfg+aBeo/1DJFS0E81MZR1OUcydjiEZcXGTk1NDW655RaxnD17Fp07dxbLmTNnxLo5c+a0uFOsrc7Ign1cm+QKteYaE7YG6yWURWvU7cjlK9i7aD76hvmKx1NNFCnLYaz27NmxXmPns88+w5YtW7B+/XqcO3cOf/zxh1jOnz+PdevWYfPmzWIbxnqb9xmjxoQtUV5VjQxVZpq1/Ia2zsD2vq1Ot8NhLMtlZDXZsyOHsVTJHowVGjuUdr5w4UIhUK7PjTfeiA8//BBLly415vFZPdaSdq6rxgTrdoDUPElvRfF7CqEwyhEpn0jMaxXeRza4LYNc5uBMSr6QIjTV2OEwlhUbOzExMZgwYYLe1+k12obRVW9B2WnnmnBxQetr9dGaoHpQ1GeuuKIa59Nt/xxNy2eD2xKQKNnNyUGcZ3FZhhWxJI94qipzjo0dK28XkZenXxRIHdFdXa3npm7WMJYVxdrVPbJYpKwu+84FBZVVXHBAhBTKOtoKQlmaISw2uM17nvVu592kejs0XpATiKQAbT2Vn5DSmmiSsTNixAh8+eWXel+nwoK0DWO9YSwtzw6HsbigoMJDWQficmDrcCaW5YsLUsi0KZlYlHbOhqkVGzsvv/wyvv/+e9x88804dOiQ8OTk5+fjwIEDmD17ttDr0Dam4v333xcn0NNPP61eV1ZWhsceewz+/v7w9PTErFmztFpZWBLKTLPGTB7Zs0MhuMIyqQFma4ULCiqTkZ0CxOPBS9k2nwHKmViWY0gHP/F44JJhRjXX2LERY2fkyJFYs2YNtm/fLjw4cruIUaNGiXWrVq0Sz03B4cOH8fXXX6Nv375a66m44V9//SVq/+zcuRMpKSmi7o8SyC2pFE0LiRAf6wnv+bg7qY/3QivQRDQEe3aUSb9wH6FhySqqEGUSWkUYy4fPQXMzPNJfPJI2LKuo8X6BLE62oaKCM2bMwOXLl0URwQULFojlt99+Q0JCgvCqmIKioiLcfvvt+Pbbb4WBJUNeJfI0ffzxx6In16BBg0TG2L59+4S3SSkzsgBPF7g6OcCakDOyolu5SNmaWn20JlwcHTC4vTTr3hebBVtGHQrnc9DskCBcDusfuJRtcI0dTju3kQrK7u7uwuh5/vnnxTJ9+nSxzlRQmGrKlClXZIJFRUWhsrJSa3337t0RERGB/fv3691feXm5CMFpLibNxLLCQUoOZZ1vxbodSjeVM2Gs8Te0dUZ0kmbd+w24CVkzXMFbGSHT/RezDa+ezGEs6zZ2yIDYsGGD1rrly5ejY8eOCAwMxNy5c4UhYUxWr16No0ePCg9SfdLS0uDs7AxfXykzQyYoKEi8pg/al4+Pj3oJDw+HaQcp6wlhXSlSbr0ZWekFZaiqqYWjPbX6sL7fsLUYO6SnoGaNtgh9LrnWExcUtLBR3YixQ79VAreKsA1j56233hKtIWROnTqF+++/X3hWXnzxRaGd0WWUNJfExEQ89dRTWLFihVFT2ufPny9CYPJC72MKrK16cv3u53JGlq0LQBszVkN8XUUaKqO8Crcezg7IL63E2VTbNMpJJ1JRXQM6/ajlDGN+hnb0E9//paxitadXF+mFZaLODk2OrHHMt3WaZOwcP34c11xzjZbXZdiwYUJLM2/ePCxatAi//PKL0Q6OwlQZGRkYOHAgHB0dxUIiZHofek4enIqKiitq/1A2VnBwsN79uri4wNvbW2sxBdYsbo0M8BTNSwvLqpDSwAVuy1jz79cacHKwx5COcrZMtk1nAwZ7u4rPy5gfHzcndQr6/kv69WGxKqE8ZWJRI1FGWTTpF8nNzRUGhgwZHpMnT1b/PWTIEKN6SciwIu8RGVnyMnjwYCFWlp87OTlh69at6v9DfbpILK2Eej91wkLrc2k6O9qLCqLEORudNdtijaTWxkhViGF3jG2KlGXvMIewLMsIVVbWvlj9RnW0apyUveKMFRs7ZOjExcWJ5+RRIS3N8OHD1a8XFhYK48NYeHl5oXfv3lqLh4eHqKlDz0lvQ2E08ipR6jt5gu69915h6Ggel6XILakQj6FWqNkhWntxQWsWmLcWrukhTb52x2SqDQNbwhrrdNmybmfHhUy9/djk9jpycgdjxcbO9ddfL7Q5u3fvFroXysAaM2aM+vWTJ0+iU6dOMCeffPKJaExKae9jx44V4avff/8dSmD381fh+GvXomuQdVr63dRtI1qrsSOJDcN4Vq1YyPs4rKOfKNG/5rBptHeWhDOxlJORRWnomYXl2HE+U+c20apxskcIGztWb+y8/fbbQiszbtw4odOhhbKhZKiC8sSJE2FKduzYgU8//VT9NwmXqU1FTk4OiouLhaHTkF7HnFC1Z193Z6uNtcvu2POtNCOL65tYB7cPby8eVx9OsLku6BzGUk5Yf9bAduL5ah1GNQmTYzNkz451Tm5tHcembBwQEIBdu3aJDCZqzeDgoF0oj6oY03rGNpAv2ouZxSivqhaF3FoLlIFmzdl0rYlJvYLErDu9oBxbz2VgUi9lTHaMAYdSlcMtQ8Lx7e44bD+fgYyCMgR618kTLmUVobK6Fl4ujlyAVKE0y+VAWpn6hg5BrSM0PT2MdUMZIJSJQMX15EyD1kJ2cQXKKmtAvfwo9ZxRLmSEzx4cJp6vPJgAm6zgzQa3xekc6CUa0NJ4+OvRJN16nRAvbgCqUKwzvsKYBbpoZe9Oa6ukLAtDA71cWpVHy1q5bWiEeNwVk6k2EKydgrJKUfqB4DCWcrw7BOnDNAtZqjOxWJysWNjYYRqktWZksTDUumjv74HhkX6g+pfr6s26rRU5jOrr7gQPlyYpDhgTcUPfEBGqooaff55IvkKczGnnyoWNHaZBuqsyC1qdsaPWSnCNHWth1kAplPXb0WSbqPrNRS2Vh7uzIx65Sso4/uCf8yipqNKqRcaeHeXCxg5jUPfz1lZYkD071sf1fULg7uyAuKxiHE3IhbXDmVjK5L5RHYUIOa2gDF/vvITsonJkFEo9ITkTS7mwscM0SDdVjSC6mHOKpSKJrQHOgrE+KNQzuXeIeP5rVJLNtIpgg1tZuDo54KXre4jnX++6iBd/P6Vu/snhRuXCxg7TIHTxyh18W1MHdM6CsU5mDZJqoWw4kYqyymrYQhiLU5mVx+TewaKFBGVsbj6bLtb15GKCiobNUMYg7w4J8ii9kiqJtgaSVdWT2bNjXQzv6C88IWSs/nsmDdP6S8aPNcJhLGVnqv5w7xD8dSJFjI1UquLeUR0sfVhMA7CxwxgkUv7vbHqrST+nlN8CVcovhxCsC3t7O1HpdtG2WCFUtmZjh3Vjyg9nzR4spaIzyofDWEwT0s9bRxhLDh9wyq91MmuQlJW1JyYTafllsEao/YAsemXvIsO0HDZ2GIONnQvpRaJ6qK3DKb/WX3NnSIc2ojno78esU6hMRhplz7s42sPfg6vSM0xLYWOHMejm4epkj9LKaiTkSFqWViFO5hm11XKTyrvzW1SSVdbcScpTacZ83bj9AMMYATZ2mEZxsLdD16DW0wG9TivBBQWtueYOGejUxPZ4Yh6st6glG9wMYwzY2GGaFMqKVjW8s2X4RmP9eLk64TpV93PqY2RtpORJWiMOpTKMcWBjhzGIbqoy6K1BpMzF3GyD24a1F4/rjiUj18oKYiarwlicds4wxoGNHcYgerSi7udczM02IJEyFXorr6rBqsMJsCY47ZxhjAsbO0yTemRdzilRN7+zRajqblaRKuWXbzRWDQl75UJvP+2/jKrqGoP/r6VFzeowFhvcDGMU2NhhDMLf0wVtvVxEOiyloNsqctVaaihJdXYY62Zqv1CRup2aX4Z/z0hl/RuisroGd35/EF1e/gcjFmzF3UsP4XJ2McxJTU0te3YYxsiwscM0vbigDXdA17zJcMqvbVS5vW1YhHj+5c7YRutEfb41BrtjslBVUysMpJ0XMvH4ymPCCDIXWcXloqigvR0Q7ONqtvdlGFtG0cbOggULMGTIEHh5eSEwMBDTp0/H+fPntbYpKyvDY489Bn9/f3h6emLWrFlIT298Bse0pJKy7ep2uNu57XHniPbwcnHE6eQCLN0Tp3e7w/E5WLw9Vjx/f2YfrJk7HD5uTjiVnC+MIHOHsIK8XeHkoOghmmGsBkVfSTt37hSGzIEDB7B582ZUVlZi4sSJKC6ucys/88wz+Ouvv7B27VqxfUpKCmbOnGnR47ZVureCjCyunmx7BHq54uUpPcTzj/47j7isK8NSpEN7evVxUXV51sAwzBkagWGR/nh3Rm/x+pIdF3E0Ides5yBnYjFMKzF2Nm3ahHvuuQe9evVCv379sGzZMiQkJCAqKkq8np+fj++//x4ff/wxrr76agwaNAg//PAD9u3bJwwkxjQiZfLsWFrAafrqyVxQ0Ja4ZUg4RnX2F5lZL/x68opw1oaTqeK3D/VxxRs39lSvv6FvKKb1DxXbf/DPObOmnbPBzTCtxNipDxk3hJ+fn3gko4e8PRMmTFBv0717d0RERGD//v1691NeXo6CggKthWmczoGeoppyXkmlukmhrcEFBW0T0l+9P7OvEJ4fis/BVzsvar1ObSWI24e3FwUJNXlxcnehnzkYl4N4HV4hY8OZWAzTio2dmpoaPP300xg1ahR695Zcy2lpaXB2doavr6/WtkFBQeK1hrRAPj4+6iU8PNzkx28rYs+OAR7iebSNipQ5C8Z2Cfdzxxs39hLPP958AVGXpbBUYk6JMGRIjz5jQLsr/l+IjxvGdm0rnv9yJNFsujEOYzFMKzR2SLtz+vRprF69usX7mj9/vvASyUtiovWVk7e0SNkWiwtSHZa0AmlWzQUFbZPZg8JEOjqFpZ5cdQzZReX4/WiyeG1kJ3+9BsbNg6UJ0a9RSU2q19OiUCobOwzTuoydxx9/HBs2bMD27dsRFiZ1MyaCg4NRUVGBvDztRn+UjUWv6cPFxQXe3t5aC2MYtpyRFZ9dLG6C1ECyraeLpQ+HMVE4i0TH4X5uwqiYtmQv1qiqK8ud0nUxoUcQ/DycRfiW0tHNUeuJw1gM00qMHRLBkqGzbt06bNu2DR07dtR6nQTJTk5O2Lp1q3odpaaTiHnEiBEWOOLWlJFle8bOsQTJaO7bzhf2JNJgbBJvVyf8cM9QtPd3FyGjlPwyeDg7YJKqcagunB3t1SEuUzYWLSqvQn5ppXjOYSyGaSXGDoWufv75Z6xcuVLU2iEdDi2lpdLMh/Q2999/P+bNmye8PiRYvvfee4WhM3z4cEsfvk3SPUTy7MRmFJq10Jo5OJ4oGTv9wn0sfSiMGcT2fzw6SoSuiGkD2sHd2bHRjC5i27kM5JiosWhSrpSJRfV9PF0aPh6GYQxH0VfTl19+KR7Hjx+vtZ7Syyklnfjkk09gb28viglSltWkSZPwxRdfWOR4WwMk3KUCbYXlVbiUWaxOR7clY6d/eBtLHwpjBtp4OGP5fUNxOD7XIAO3a5CXaCx6NrUA/5xOxe2qrurG5FSSlHHaNcjT6PtmmNaM4sNYuhbZ0CFcXV2xZMkS5OTkiGKDv//+e4N6Hablmoe6eju2k5FVWlGtDs31j9DO7mNsF0cHe4zo5N+oV0fmxv6h4nH98RSTHI+cITaovVReg2GYVmDsMMpENnaiU21Ht3MmJV+Ik6nZKRWWYxhdUCYXQbV60vKlzD3TGDvsXWQYY8LGDtNk+oVLno/dMabNSrFMCMuXG4AyDYZxB7dvAyogvuGkcb07+SWViMkoEs8HsneRYYwKGztMk7m2RxAc7e1wJqVAZ58ha+SYhrHDMAaFsk4Y19g5mih5dahwpz+XPmAYo8LGDtMsYeeozgHi+UYjz24txXFV2jkbO0xjXN8nRLRNOZmUb1Td2lFVCGtgBIewGMbYsLHDNIspfUPUDRStnczCclFgjqJXfcM47ZxpmABPF0zqFSSev7sx2mhNcVmvwzCmg40dpllM6hkMJwc7kcEUq9IZWCN0o/puzyXxvHNbzyuaQDKMLl64rjucHeyxOyZL1N1pKdSCQtaNsbHDMK2szg6jXHzcnTC6cwC2n8/EioOXMWug/lL7Suan/ZexRtXc8a4Rxq+bwtgm7f09cO/oDvh65yW8szEaQd4ty+C7nF2CkopqeLk6oksg19hhGGPDxg7TbKb0DRXGzg9748VirVBniLen9zZJkTjGdnn8qs74LSpZiPRv+HyPUfZJeh1uVcIwxoeNHabZTO4djF+jEhGfJZW4t0ZoJk0hiQk9JQ0GwxgKhTypqeg7G8+isqrluh0XJ3vcPZINboYxBXa1xlLXWTEFBQWiz1Z+fj53QGcYhmEYG7t/s0CZYRiGYRibho0dhmEYhmFsGjZ2GIZhGIaxadjYYRiGYRjGpmFjh2EYhmEYm4aNHYZhGIZhbBo2dhiGYRiGsWnY2GEYhmEYxqZhY4dhGIZhGJuGjR2GYRiGYWwamzF2lixZgg4dOsDV1RXDhg3DoUOHLH1IDMMwDMMoAJswdtasWYN58+bh9ddfx9GjR9GvXz9MmjQJGRkZlj40hmEYhmEsjE00AiVPzpAhQ7B48WLxd01NDcLDw/HEE0/gxRdfvGL78vJyschQA7GIiAgkJiZyI1CGYRiGsaJGoHS/z8vLEw1B9eEIK6eiogJRUVGYP3++ep29vT0mTJiA/fv36/w/CxYswJtvvnnFevrCGIZhGIaxLgoLC23b2MnKykJ1dTWCgoK01tPf586d0/l/yDCisJcMeYJycnLg7+8POzs7o1uctuwxsvXPaOufj+DPaP3Y+ucj+DNaPwUm+HwUnCJDJzQ0tMHtrN7YaQ4uLi5i0cTX19dk70c/qi2euK3pM9r65yP4M1o/tv75CP6M1o+3kT9fQx4dmxEoBwQEwMHBAenp6Vrr6e/g4GCLHRfDMAzDMMrA6o0dZ2dnDBo0CFu3btUKS9HfI0aMsOixMQzDMAxjeWwijEX6m7vvvhuDBw/G0KFD8emnn6K4uBj33nuvRY+LQmWUDl8/ZGZL2PpntPXPR/BntH5s/fMR/BmtHxcLfj6bSD0nKO184cKFSEtLQ//+/bFo0SKRks4wDMMwTOvGZowdhmEYhmEYm9TsMAzDMAzDNAQbOwzDMAzD2DRs7DAMwzAMY9OwscMwDMMwjE3Dxg7DMAzDMDYNGzsMwzAMw9g0bOwwDMMwDGPTsLHDMAzDMIxNw8YOwzAMwzA2DRs7DMMwDMPYNGzsMAzDMAxj07CxwzAMwzCMTcPGDsMwDMMwNg0bOwzDMAzD2DRs7DAMwzAMY9OwscMwDMMwjE3Dxg7DMAzDMDYNGzsMwzAMw9g0bOwwDMMwDGPTsLHDMAzDMIxNw8YOwzAMwzA2DRs7DMMwDMPYNIo2dr788kv07dsX3t7eYhkxYgT++ecf9etlZWV47LHH4O/vD09PT8yaNQvp6ekWPWaGYRiGYZSFXW1tbS0Uyl9//QUHBwd06dIFdJg//vgjFi5ciGPHjqFXr1545JFHsHHjRixbtgw+Pj54/PHHYW9vj71791r60BmGYRiGUQiKNnZ04efnJwyem266CW3btsXKlSvFc+LcuXPo0aMH9u/fj+HDh1v6UBmGYRiGUQCOsBKqq6uxdu1aFBcXi3BWVFQUKisrMWHCBPU23bt3R0RERKPGTnl5uVhkampqkJOTI8JhdnZ2Jv8sDMMwDMO0HPLXFBYWIjQ0VER2rNbYOXXqlDBuSJ9Dupx169ahZ8+eOH78OJydneHr66u1fVBQENLS0hrc54IFC/Dmm2+a+MgZhmEYhjEHiYmJCAsLs15jp1u3bsKwyc/Px6+//oq7774bO3fubNE+58+fj3nz5qn/pn2TR4i+LBJCMwzDMAyjfAoKChAeHg4vL68Gt1O8sUPem86dO4vngwYNwuHDh/HZZ5/hlltuQUVFBfLy8rS8O5SNFRwc3OA+XVxcxFIfOeuLYRiGYRjroTEJiqJTz3VB+hrS25Dh4+TkhK1bt6pfO3/+PBISEkTYi2EYhmEYRvGeHQo3TZ48WYSYSIBEmVc7duzAv//+K1LN77//fhGOogwt8sg88cQTwtDhTCyGYRiGYazC2MnIyMBdd92F1NRUYdxQgUEydK699lrx+ieffCLU11RMkLw9kyZNwhdffGHpw2YYhmEYRkFYXZ0dUwmcyJgioTJrdhiGYRjGtu7fVqfZYRiGYRiGaQps7DAMwzAMY9OwscMwDMMwjE3Dxg7DMAzDMDYNGzsMwzAMw9g0bOwwDMMwDGPTsLHDMAzDMIxNw8YOwzAMwzA2DRs7DGPDjB8/Hk8//bRVHEN2djYCAwMRHx/fpP/XEHPmzMH//d//tWgfDNNU6p+7SrgOG8KQ46t/fRr6/5RyfbKxwzB6uOeeezB9+vQr1lN/Nuqwm5eX16x90v+lxdnZGZ07d8Zbb72FqqoqtHbeffddTJs2DR06dDDaPl955RWxX6quytgOpr42qcl0UFCQaE20dOlS0YC6Jfz+++94++23Yc28a+XXJxs7DGNmrrvuOtHvLSYmBv/73//wxhtvYOHChTq3raioQGugpKQE33//vWjua0x69+6NTp064eeffzbqfhnbvjbJe/HPP//gqquuwlNPPYUbbrihRRMSalbt5eUFU2LKsaLEBq5PNnYYs0Kt2EoqqiyyKKUNnIuLC4KDg9G+fXs88sgjmDBhAtavX692Cz/++OPCNRwQECCa2xLU6PbJJ58UbmRXV1eMHj0ahw8f1tpvcXGxaJzr6emJkJCQK9zDNCP79NNPtdb1799fGFsyNIP98MMPhceJjjMiIkLMvDRfX7BgATp27Ag3Nzf069cPv/76q8HHoI+///5bvN/w4cP1brNx40bRA2fFihXi78LCQtx+++3w8PAQ70WNgXW51adOnYrVq1cbdBytGbo+akpKLLIo7dps164dBg4ciJdeegl//vmnMHyWLVtm8HVQH83z8ptvvkFoaOgV3iLymtx3330G71/XWGHI/ytuxjVqyPXZ3GvUXNenorueM7ZHaWU1er72r0Xe++xbk+DurLxTngYliofL/Pjjj8II2rt3r3rd888/j99++028RkYSGSQ0uMXGxopZI/Hcc89h586dYnAmo4gG6qNHjwqDxlDmz5+Pb7/9VgxKZFDRLPfcuXPq12kgpVnYV199hS5dumDXrl2444470LZtW4wbN67Zx7B7924MGjRI7+srV67Eww8/LB5plk3MmzdPfEdkKFLI4bXXXtP5XkOHDhUGGxmMNGAzuqktLcX5gfp/A1PS7WgU7NzdoUSuvvpqYTRQKOqBBx4w6DpoiNmzZ+OJJ57A9u3bcc0114h1OTk52LRpkzAqmrL/+mOFIf/vuWZco41dny25Rs11fSpv5GcYBbFhwwYxA9Kkurpa/TwxMRF33nknMjIy4OjoiFdffVUMZoZAs9mtW7fi33//FYOfDA1SZMxozsS+/PJLMbOcPHmyWEcGyebNm4VrmQavoqIi8ZwGOnkApYEwLCzM4M9Ks7DPPvsMixcvxt133y3WkYuZjB6CBqP33nsPW7ZswYgRI8S6yMhI7NmzB19//bUYDJt7DJcvXxazXV0sWbIEL7/8Mv766y/1gE3HSvumgVV+rx9++EHnPmgdufjT0tKEocjYBqa8NuvTvXt3nDx50qDroDFjp02bNuI61jx3yftC3hkKmzVl/5pjhSH/r6iZ40RD12dLr1FzXZ9s7DBmxc3JQXhYLPXeTYUGHzI0NDl48KCYLRE0iFJoiGYqdLHSDf/6668XbtvGBunKykrhdr7tttu0Qkn1Z1AXL14U244aNUq9jgSUNCOKjo5Wb0MDxrBhw9TbkMenW7duBn9W2hcNmPLAVB/yIlHsnkSbmtD7DhgwoEXHUFpaKsJz9aGbAN2saHY4ZMgQ9fpLly6J74S+Axlyn+t6L/KcEXTsjH7s3NyEh8VS762Ea7OhiQkJlw25DgyBQjsPPvggvvjiC+HNoLAPZSbZ29s3af+aY4Uh/+9iM69RfdenMa5Rc12fbOwwZoUGDCWGkvRBAyPpVzRJSkpSP6c4NC0ExfppdkYu6YYGVHmQpmwsmtXQoFz/PU0BDaT1tRE0GNUfdPRBs0I5Lk+aBk1owKbP3Vzoe8vNzb1iPQ3S5PamjJjBgwerbzhNQT4ucuUz+hGZSAoNJZnr2mxoIkA6GEOuA0MgnQpdi7QPMhAoTESh46buX/OzGOO4mnp9GuMaNdf1yQJlhjESUVFRwo0eHh5u0CBN4t/6ho4uKJREhpGmhoeMFBIo9+zZU70NeXtoZitDg9OFCxfUf9NgQhocmYKCAsTFxWm5xMngodCaLui9aNBMSEgQx6+50Gc25Bj0QQPm2bNndX520jaQvkAz1EfueXovTZE2pa/qeq/Tp08LNz0N2EzrxNBrUxfbtm3DqVOnMGvWLIOuA0MgL8nMmTOFR2fVqlXC20GC6Jbs35D/16mZ16i+69MY16i5rk9FT7FJbEWiMBJI0iA8cuRIfPDBB1puMFJ2k9hKk4ceekgItBjGXNDshDIcSEtjbMg4IhEiaXPI5UxGEsXpye0rp4JSWIye0zb+/v5CeEgxdPLmaAotSfdDs0pfX18hFnRwcNAagF944QUhhibjisJmmZmZOHPmjNg3pc4+++yzeOaZZ0T4jbQ8NHiREebt7S10Po0dgz5IbE3iaBp4SdOgSdeuXcVgSte6HJqgY6H3k78Teq/XX39dvFf9mSXNmidOnGiEX4Kx9WuTwrgU8iLDKD09XYiG6T5EglvaB2HIdWBoKIv2S9eXHHpryf4N+X+eBowTTb0+W3qNmuv6VLSxQ0bMY489Jtx8VOOAVOP0pZCFqem+o9gnFWaTcbciVyxj/dAASQXOXnzxRWGQm4L3339fDGAkuCThH7mLSdisOfBQrR5yZZMxQwMN1fDRLNZFgxV5cmiApdg5FTnT9OwQJOKkwYoMoZSUFBEGoAwLGfo/5CGiGwDF5MloklN0DTkGffTp00fs55dffhGTlfrQBIdm2DSYkoFG6bIff/yxODb6PDSYk5FGolRNbUFZWRn++OMPcdNiWh9NvTbpPKFznq4BurYoC2vRokXipq1pEDR2HRgCTT7ICDh//rzQ7WnS3P0b8v8WNuMabez6bO41atbrs9aKyMjIIMFB7c6dO9Xrxo0bV/vUU0+1aL/5+fliv/TIME2hpqamds6cObWvv/66pQ/F6tmwYUNtjx49aqurq5v1/4uKimp9fHxqv/vuO/W6L774ovbaa6814lEy1gJfm8q6PnVdo8a4Pg29f1uVZke2PuW6IjIU96R4H1VjpNlrY6pusvZJr6C5MExzIBfxmjVrxOyEsj5oofg+03SmTJmCuXPnIjk52aDtjx07JvQOlGFCAkkKC8jF2WRIM/D555+b7JgZ5cLXpmWvT0OuUXNen3Zk8cAKIBf+jTfeKHqeUN0AGapGSbn5lNVCdRBIc0CpbqT10Qel+b755ps6jSlytTEMo3xoIKUibxQGII0RpeGS25xc7gzDtI5rtKCgQITlG7t/W42xQwJNKtlNhk5DBZAoZkh1QqjmAKnE9Xl2aNH8skitzsYOwzAMw1gPhho7ihYoy1D/DyrERqWvG6v0KBdLasjYofQ8LhvPMAzDMK0DRRs75HSivP1169Zhx44d6qJODXH8+HHxKBeTYhiGYRimdaNoY4fSzqmvBhUrohQ5qn9AkMuK6u6Q6IlepxLgVDOANDtUY2Ds2LHo27evpQ+fYRiGYRgFoGjNjr6y09RM7J577hH5+lSMiSowUrNE0t3MmDEDr7zySpO0N4bG/BiGYRiGUQ42odlpzA4j46Z+9WSGYRiGYRhNrKrODsMwDMMwTFNhY4dhGIZhGJuGjR2GYRiGYWwaNnYYhmEYhrFp2NhhGIZhGMamYWOHYZgmMX78eDz99NMNbpOdnY3AwEDEx8cb/H8aY86cOfi///u/Fu2DYVoj45txzRr6/6zlumVjh2H0QLWcpk+ffsV6quZNNaCoKW1T0Td4LFu2DL6+vrAV3n33XdHZuEOHDkbbJ9XPov1SPQ2mdWOKa5P2Sf+XFurGHRQUhGuvvRZLly4VjahtnXdNcM0q6bo1urFTWVkpiv1Rl9OcnBxj755hGIVTUlKC77//Hvfff79R99u7d2/R7+7nn3826n4ZRua6665Damqq8G5Q4+mrrroKTz31FG644QZUVVXBVikx0TWrpOvWKMZOYWEhvvzyS4wbN05UMCTLsEePHmjbti3at2+PBx98EIcPHzbGWzG2QkWxtGgWjqyqkNZVleveVnN2VV0prassM2xbK4M8QE8++SSef/55+Pn5ITg4GG+88YbWNnSdffrpp1rr+vfvr7Xdr7/+ij59+oj2KtRSZcKECaLaOEGz1QULFoiec/R6v379xPaa0LZ33XUXPD09Rb85Q9zRf//9t2i0O3z4cL3bbNy4UVQ9XbFihXoMuf322+Hh4SHe55NPPtHpBZs6dSpWr17d6DEwzaeyvFrvUlVZbfi2FYZtqyTovKVrrV27dhg4cCBeeukl0a6IDB/yvso0du3QuUt9Hen8bdOmjfASffvtt+J6uvfee0X7o86dO4v9arJp0yaMHj1aeHnpeiUji9oiNWVcMNU1a+3XbYsrKH/88cfCRUWWG30gOjlCQ0PFCUCeHWrlsHv3bkycOFF0JP/888/RpUsX4xw9Y728Fyo9PncR8AiQnu/7DNj2DjDwLuDGz+u2XdgZqCwBnjoJtGkvrTv0LfDvfKDPbGDWd3XbftoHKMkGHj0ABPaQ1h1fAQy6B9bGjz/+iHnz5uHgwYPYv3+/cLOPGjVKuNYNgWaot956Kz788EPRRoUGJroW5crkNFjTbOurr74S1+SuXbtE+xWapNDEhXjuuedElXIa8CmeT9f30aNHhVGlD3qPQYMG6X2d+tk9/PDD4pEGc4I+5969e7F+/XpxY3jttdd0vs/QoUPFeFNeXi4GZ8b4fPOU/qr07Xv744bH+6n/XvrcblRV6A7xhHbxxYz/DVT/vfzlfSgrunLi8dhXV0PJXH311cKY+f333/HAAw8YfO3Q9UtGyaFDh7BmzRo88sgjoqk1XYt0HZFhcOeddyIhIQHu7u5qQ4WuBertWFRUJK4D2p4aXNvb2xs0LpjimrWF67bFxg55bOiH7tWrl87X6UPed9994qSgnlb0pbKxw1gLGzZsEDMkTaqr62ajFLKlASsjIwOOjo549dVXMXv2bKO8Nw14r7/+unhO18zixYuxdevWJhk75HqfOXOm8LAS5OUhaNB57733sGXLFowYMUKsi4yMxJ49e/D111+LAZsGW3Jt06B+zTXXqAfasLCwBt/38uXLYsKjiyVLluDll1/GX3/9pb4pkBFG+6VBVH4fGit07YPWVVRUiKbA8mdiWifmvDa7d+8uGk0beu0QZCCRXoWYP38+3n//fQQEBIhIB0GGAUVEaL+yR2XWrFla70t6ITKgzp49K8JBjY0LprhmbeW6bbGxs2rVKoO2I2uOrEKGEbyUIj06STMawcingOGPAvb1TsvnYqVHR7e6dUMfBAbdDdg5aG/79Kkrt+1/e7MPk2L2NCBpQjMqmsWJt3F0FKEkmsnQhUyzo+uvv164dVsKDWqakJuYBm5DocGWBiEycCZNmiS8qzfddJNwq8fGxoo4fX3DiQakAQMGiOfkPqe/ySMrQ67zbt26Nfi+paWlcHV1vWI9ufnp+GkmOGTIEPX6S5cuCa0fTYxkyFWu633IY0zQsTOmYe5n0s1MF3b1hA/3LRyjf9t6fZzvenckjIk5r03yhsqNqQ25dupfvw4ODiIsJU82CPKEEJrXdExMjDCC6HNkZWWphdHk/dE0dvSNC8a+Zm3pujVqI1D6Qag5Z/1u5XSikJUdERFhzLdjrBlnHQOOozO9YNi2Dk7SYui2zYQGRoqta5KUlKQ10NBCUPycZm4UvtU3oJKmTVdWAmWP0EChCWWEaELXlWZWCLm16zfLpcFHc4DdvHkz9u3bh//++0+EkGl2RgMpzQDlGDzpEzRpqZuZvoPc3Nwr1tONgFzcNFsdPHjwFeOEIchJDzTbZUyDk4uDxbe1xLXZENHR0UKfQxh67ei6fjXXyee/5jVNUhDyfJC+h7wh9BoZOWTANLTflmaLBei5Zm3pujVqNhadDJmZmTo/qHyiMIytEhUVJdzoZPDrg2Y9NHDUh9Z17dq1Se9HAweFqmQKCgoQFxentQ0NTBTPf/PNN3Hs2DE4OzsL3UDPnj3FwEwTFLphaC7y8ZMOjwZWMo5kaEC8cOFCg8dFgyO53etD+9u+fbvQEpB4U4ZCAPQ+mkkMZBDqeh/SAJJLngZnhjHmtamPbdu24dSpU+oQkyHXTnOgOjeUxUyhL/LIUpKPPgNEH8a+Zm3pujWqZ0fT1acJWcL6XGQMYwuQQU8ZEDQjawgSKVKMnTIqSOxIgybNECkcTPHwpgonKUOEZoOUvUHub/LmyNCAR7F8Cl+RUJH+pskIDaKUDfLss8/imWeeEbNCygChgYpc1eR9uvvuu4UeglJRSfBILnjaB3mGZKGkPihkRhoFGmQpZKYJGXQ0cFLGhhxmoGOh96P3IZc7vQ9pEuh96o8ncrIDwxj72pT1OBTyIsMoPT1dZEeRGJkEubQPwpBrpznQtULX2TfffCM8UmRMvfjii03ahymuWVu5bo1i7JAim6APSCIwWVlO0ElDg2xDSnCGsWZogKQCZzQwjRzZsC6BZkMk6KcBiNLAyT1N4se1a9eKGh9NgQYn8uTQQEwhsLffflvLs0MDL70XDUzk9SH3OKWhTp48WbxO25N3iAZzir+TwSSn28osXLhQTFbIoKLB7X//+1+jxcFIl0D7+eWXX/DQQw/p9G7RbJkGTjLO6Jgoq5M0ffRZ6Lgpi4VC35qTpLKyMvzxxx/iBsQwxr42CTq3yNCgGzrd9En3tmjRInFT1zQYDLl2mgrtn9KzaSJEoSu6Tui96TppCqa4Zm3hurWrrR/0b6ZQjKB0N1Knk6tchp5TPRCyhJWahUU3ArpZ0AlBPxjDGApdPrfddpsYCOrXu2jNkLeKZnzkvm5sVqkLSsElPQQNqHKhMxKjUgiO9EcM0xh8bZr3mrXUdWvw/bvWiNxzzz21+fn5Rtvfe++9Vzt48OBaT0/P2rZt29ZOmzat9ty5c1rblJaW1j766KO1fn5+tR4eHrUzZ86sTUtLa9L70DHTV2HMY2daB7t37661s7Or7devn3o5efKkpQ9LEXzyySe1CQkJBm179OjR2pUrV9bGxsbWRkVFiWvdx8enNjMzU73Nt99+e8X1zzD64GvTtNesUq5bQ+/fLfbsUFyxKVlWycnJVyjY9UFufWoiRuluVC+EXIRkdZKQSlbUkwaCLFLSLpB19/jjjwurlOKnhsKeHYaxLCSeJg0TCTTJG0xpwuQi10zVZRhGWRxTwHVr6P27xcYO1QqgmCh9YM0cfE3oICgW+Nlnn2Hu3LkiJtkcSFxJIigKl40dO1bsl+KmVNSI6ocQ586dEwJMqizZWOlrGTZ2GIZhGMb6MPT+3WKBMnlZqAw0FVgiURJZdlQfgJ6TspteP3PmjBA/Udl6KurUXGSRFSm/5XRCqitCQk8ZEnuSp6khY4dEa7RoflkMwzAMw9gmLa6zQ+lt5Laieh+UUksiZKr8SJUgCWoSRkYJGR8tMXQoxY+ai1HNELmSJKUIkuuMlPD1vU30mj5IQU+WoLy0pDYCwzAMwzDKxmh1dqgcNIWS5HCSsXnssceEXof6j7QUStmV0+Vlzw4bPAzDMAxjmxi1qKCpINExNX2jmiGaDc2oBDjVKaFS+5reHSoGRa/pgwq5ccdkhmEYhmkdGLVdhLEh7TQZOpSjT8WM6recIH0QlaumKrEypAqnDDG5Gy3DMAzDMK0bRXt2KHRFmVbUk4MqQco6HNLZUNiMHqlwEYWkSLRMSmzq3UGGjqGZWAzDMAzD2DZGqaBsKvR1V/3hhx9wzz33qEtRUzls6i1EGVbU4+OLL75oMIxVH049ZxiGYRjrw2x1dmwBNnYYhmEYxnbv30bV7FCzNBIRMwzDMAzDKAWjGjtkWVGBP6q1895774nWEAzDMAzDMDZj7FAbdzJwqF/VmjVrRLfzyZMn49dffxWVjhmGYayB8ePHiyKmDZGdnS3a18THxzfp/zUE9QKkjtEMwyg89Zx6VVF21IkTJ3Dw4EF07twZd955p2gh8cwzz6grKzOM0iERPPV9q8+OHTuEeJ7qOzUVfTdDamRbvxK4pTD0hk3fD30PtFAJCKpcTm1jli5dKiqe2zrUJmfatGliUmcsXnnlFbFfuTUOwzAKr7ND7SM2b94sFgcHB9Eq4tSpU+jZsyc++eQTU70twzBm5LrrrhPXOnk3/vnnH1x11VV46qmncMMNN6Cqqgq2SklJCb7//ntR+sKYUCucTp064eeffzbqfhmmtWNUY4dCVb/99psY6Nq3b4+1a9eKGWJKSgp+/PFHbNmyRXQ/f+utt4z5towVUlJZIhbNZMDK6kqxrqK6Que2NbV13oLKGmnb8upyg7a1Nsi78uSTT+L5558XNaSolMIbb7xxxTZUV4qusTZt2gjPyrfffovi4mLce++9ojYVeVbJCNGEvC7UH46KdFK9qn79+olQs+yt2blzJz777DO110YzTFMfqkROx9auXTvR7Pell14SdbHoPclbZch7tuSzbNq0CaNHjxZeMerTR2PPxYsXm/Q90nvcdddd8PT0REhIiEFhpL///lt89sbqeW3cuFFkiqxYsUL8XVhYKPoFenh4iPeiiV99T9rUqVOxevXqRo+BYRgLGTt08T744IPC0Dl06BCOHDmChx9+WCsdjGZ+SnHXM5Zj2MphYsktz1Wv++HMD2Ldewff09p2/C/jxfrU4lT1utXnVot1r+19TWvb6367Tqy/lHdJve7P2D9hjdAEgW6KFA7+8MMPxSSBPKX1twkICBDXGxkLpJebPXs2Ro4ciaNHj2LixIkijEyeCBkyOpYvX46vvvoKZ86cEeHlO+64Q23kUFFOuo7JY0NLU/vGXX311cKY+f333w16z5Z8FjJUKGxOYw1VUre3t8eMGTO0wmiNfY/PPfecOA4y0v777z8RpqT3a4jdu3eLCu4NQQVRb731VmHokIFD0LHu3bsX69evF8dA+6n/XkOHDhXfAdUNYxjGSNQakeXLl9eWlpbWWhv5+fnkXhCPjHnovay3WLJLs9Xrvj7xtVj3+t7XtbYd8vMQsT6pMEm9bvmZ5WLd8zuf19p2zKoxYn1MTox63drza5t1jHfffXetg4NDrYeHh9bi6uoqzpfc3NzahISE2nHjxtX26NGjtk+fPrW//PJLg/ukbZ966qkr1v/www+1Pj4+WtuNHj1a+3sYMqT2hRde0LtNVVWVOL4777xTvS41NVUc6/79+8XfZWVlte7u7rX79u3T2vf9999fe+uttzZ4jLq+n2nTpul87ZZbbhHfSVPes6mfRReZmZlim1OnTuncb/3vsbCwsNbZ2Vnrd8vOzq51c3Nr8Dugz33fffddsV7+7hYvXix+zx07dqhfKygoqHVycqpdu7bufMzLyxPfjeZ7nThxQnyG+Ph4ve/PMEzT7t9GbRdBsy6GMYSDtx0Uj26Obup19/a6F3f0uAOO9tqn5Y6bd4hHV0dX9bo53edgVpdZcLB30Np206xNV2w7rfO0Zh8neSK//PJL7WM/eFB4JQhHR0d8+umn6N+/v2hnQrN90qeRJ6Gl9O3b9wrPaUZGht5tSBtHoZw+ffqo11E4iJD/X2xsrPCMkJBYE2qoO2DAABgLCk/KFdANfc+mfhaCEh5ee+018ZtkZWWpPTrUH4/0L/X3W/97pJAXHcewYcPUr1O4q1u3bg1+vtLSUri61p1jmlB4jvZPHpwhQ4ao11+6dEmE+slzI0MhrvrvRWE+QtODxTBMy2ixsUNuWUP5+OOPW/p2jI3g7uR+xTonByexGLStvZNYDN22uZDRQloRTZKSkrRunLQQpAehMExOTo5eY4dCuroybSizi258WsftpH3cZDzUz3LStY3mOtngkP9fUVGRWktCOhtNSINiLKKjo9WNew19z6Z+FlnfQmFz0vdQxie9RkYOGTAN7bel2WL0O+fm1oVgNSEDjkJTlJU2ePBgvW1v9EHnj5zZyjCMQoydY8eOGbRdUy94hrE2oqKiUF1d3aDGhWbxpAupD90cu3btauIjhMiGJAODPB/jxo3TuY2zs7P4HM1l27ZtIvOSdDmGvmdzoDo358+fF4bOmDFjxLo9e/Y0aR+U+UTGEHmGIiIixDoyYi5cuNDgsZJBoy9jivZJImcSHpOHavHixWJ9ZGSkeK/Dhw+r34sMX3qvsWPHqv//6dOnERYWJgwqhmEUYuxs375dPNJMigoIkgCRKigzTGuCZuOU0UM33oYg0S3d/ChD6IEHHhBGAHk8qJHtX3/9ZfLjpKymZ599Vhgi5N2gTCa64VLIhbxO1PKF6sbQzZ+ysChDicI6JPzVBYloKXxHxlF6errIjiIxMmVF0fdh6Hs2B8raolDXN998I7xrZEy9+OKLTdoHfT5KHyeRMu2LigS+/PLLej+vDDUcnj9/vjCM6DjqQ4YrjY1k8MihTvoe6LPSe9F3Su/1+uuvi/fSnAySaJnE2AzDGA+jaXZoNnjy5Elj7Y5hrAa64VPxQbrRUuZQQ9DsnvrH0Q2VWqvQJKF79+6iTAPVrDEHb7/9tgiRkFFCOhLKjpTTxgkyTOimTB4Z0qbExcXpLZxHxg0ZGnRDp5s+ZWEtWrRI/H9Ng6Gx92wOtH9K0SbDkUJX5DWj9yYDoyksXLhQhNooJEYGyf/+979Gi/qRloiOn0ppPPTQQzq3oeMhL5fs4SFvD4XyKUOVjEEy9CglPjExUa3/KSsrE5Xo6XtlGMZ4GLXrOc3caKb6/vvvw5rgrudMc6HL57bbbhM3tvr1Wxjbhjxy5KWhsFNjniB9UOo86ZjIECIPE4nh161bpzPUyTBM8+/fRs3GooqpJMqj4oGUlVJfpMkCZcbWoFAM9YGjjB+akRM//fSTVhYRY5tMmTJFZINRP0BDaxGRxvHcuXMiI4sGZ7nAKrWdIEjT8/nnn5v0uBmmNWJUzw6l6ep9Izs74dJVIuzZYRjGHJCxQ1otElZT6J8mhTQJZOOYYUx7/zaqsWOtsLHDMAzDMLZ7/zZZI1BjQWJOEg5SDQ3yDsmhAl2dl+XFXEJPhmEYhmGUj1E1O401+KRKp80R8FGGx3333YeZM2fq3IaMmx9++MEkxdEYhmEYhrFujGrsUBaBJlQandJWKS2VCm01x9ih2j20NITceZlhGIZhGMakxo6uasoUT6NQE3UiNhXUpZgKdFGdD+q4/M4774gCYQ3VRdHsKEzHyDAMwzCMbWJyzQ4Jht588028+uqrJtk/hbCWL1+OrVu34oMPPsDOnTuFJ6ihcvdU2IwETfJiaNoowzAMwzCt3LOjD1JJN1aRtLnMmTNH/ZzSN6neCYXMyNtzzTXX6Pw/VOZds4EpeXbY4GEYhmEY28Soxg6VateEstpTU1NFkbXGdDfGgsrxUwO92NhYvcYOaXxYxMwwDMMwrQOjGjuffPKJ1t9UQp364VCfHPKmmIOkpCTRDZn69TAMwzAMwxjV2KHMK2NDDfrIS6P5HsePHxddg2khPdCsWbNENtbFixdFY73OnTuLrsQMwzAMwzBm0ey0hCNHjmi1oZC1NuQtoqZ51Gn9xx9/RF5enig8OHHiRNFhmcNUDMMwDMOYpF0EGR3ff/89oqOjxd89e/YU3Xwp60mpcLsIhmEYhrE+LNIugrwwlAlF2p2cnByx0HNad/ToUWO+FcMwDMMwjPk9O2PGjBF6mW+//VZUTSaqqqpEl99Lly6JPldKhD07DMMwDGN9WKTruZubm6ii3L17d631Z8+exeDBg1FSUgIlwsYOwzAMw1gfFglj0RslJCRcsT4xMRFeXl7GfCuGYRiGYRiDMKqxc8sttwgx8po1a4SBQ8vq1atFGOvWW2815lsxDMMwDMOYP/X8o48+gp2dHe666y6h1SGcnJzwyCOP4P3330drI6uoHL5uTnB0qLMpa2pqUaOKHDrY24nvS6a6plZUnSY0/w9jnTQ3Qqx5TjAMwzAKTD0nSJtDBf4IysRyd3eHkjGVZmfWl/twKjkfndt6IqyNGxJySnAxswiV1dJX7uXiiG7BXvDzcEZMRhHis4sh/xqBXi7oG+aL8d3a4tahEcIwYixDRVUN9l7Mwn9n0nEhvRBxWcXIL61UGzPyBWSMK4l+5+n92+Ht6b3g7qzcMlhlldX4bGsMUvNKUVZZg8Ed2uCBMZGWPiybYsPJFPwWlYSLmcVIzitttvFc//zydXdGW08X3DuqA2YP1u4JGJ1agKV74uDm7IDIAA9c0yMI4X7GHb8vZRbhuz1xqK6uhbuLA5JzS3EurRAhPq5YcvtABHi6ILOwHL8cSRTXGV1/5VU1qKyuQc8Qb9w3uiOsDbpedpzPQHJeGXKKy8U1Qz9nLf2rlX4Xukd0DPDAiE7+cHF0sPQhWw1mFSjTmxmCUsW/pjB26GsdvmAr0gvKW7yvoR388Mmc/mjn62aUY2Ma57vdl8SgX1MLFJZVorii2qzv3z3YC1/fOQjt/T2gRN7deBbf7taumL7vxasRyueo0caPvm/8h8JyyUNuCjycHbBv/jXwcXMSf285m44nVx9Dica57u7sgP+b3Q+T+xin/U5GYRmmLd6L1Pwyna9HtvXAMxO64q0NZ4XBo4sdz45HhwBlXhe6jJyle+OwdE+88PQbwg19Q7D4toEmPzZbwdD7t1Gmjr6+vg263unCpderq817w7Ak9Hn3v3gNksSspUDMzCL83NE1yAverk7CoidDiF7LKa5Al0AvdAnyhKujA6pra4UH6FBcDr7YHotD8Tm47tNd+O2RkeL/M6bnh73xSNEYkNt6uWBy72AM7eiHDv4eYvZJp7z6rBfPpb/kS8GuGSEpmlk/tfq4mOneu+wwts4bp7iw1unkfHy/RzJ0Hh7XCf+eSRPeroNx2ZgxIMzSh2cT5JVUqg2dlQ8OE+ecoxG8u1U1tWK8eWbNceFNXn0oAQ+N64RVhxLw0rpTwsswItIf/cJ9sf9iFk4k5eORFUfx5NWdMW9itxbf+OcujxKGDhk1Mwe0E58x0MtVeDXeXH8GlzKL8cSqY2L7LoGeuKp7IJwd7OHkYI+1UYnq8dRajJ2nVx/HpjNp4jl5rga1bwN/D2e4OTuqxw96JO8VXfO7Y7IQdTnX0odtkxjF2Nm+fbuWYXP99dfju+++Q7t27dCasbe3Q4S/u1h0Qe5kCmPpws/DD0M6+Akr/7GVR3E6uQAf/3cBX905yMRHzZC7PDW/VDxf8cAwYeh0autpllDiqM4BWPfoSIz5cLsY+MndTSEFS5KYU4IPNp0TxzOxVxA2n00XHi86N1+c3F1o0L7ZdQkHL+WwsWMkaHJEkFE9slOAUfdN3rcHx0Ti+d9OYtm+eHEDfvWP08LQoZD5W9N6CeOiqroGC/45JwzbRdtiMbpLW2HsN5e3N5zF8cQ84Un6/u4hImSjSe92Prj92wOIzy7BzIHt8M703lqh3KTcEqyNSsL5tCJc1xuKh64TMnTISH1vZh/MGNBOfK/6yC2uwIC3NwtjsKSiSpFh7N0xmcKAWzCzDyb2CoY1YZRvc9y4cVp/Ozg4YPjw4YiM5Bh+S6Ewxsc398fET3aJCycmvRBd2LtjUlLySsXN3MXRHiM7+Zvds0KzXBogaRaeV1oBN2fLhYboRkeGDs08ibOpUsiablivT+0lng/r6CeMnQOXsi12nLZ4DhLtfF1Nsv9pA0Lx4b/nxY31ju8PinPt+j7BeG9Gb/X5TkkSr97QE0VlVVhzJBHf7r7UbGOHJhB/HEsWzz+9pf8Vhg5BYfq/nxqD+KwS9AjxuuK6kyeGpJtTOsXlVXj9z9Pi+YNjI3FzPW2ULtp4OKONuxNySyqFp7RXqPJaLK0/noLs4gp8uiXG6owdTvmxAih0NalXkHj+xQ5J+M2YDhKSEyTMtEQIid7T113SUeQWV8JS0EyaZuNk6FBo470ZfcSjs6O9mHWTx4sY3MEP5PSiGXlafpnIKqQZIIUtmJYZO6bSQJEA9u4R7cVz8h6Sgb1gZl+d5zvdrIkt0eniJtzc0Cfp3shIHte1rd7tyJvRM9Rb53HIIXwKYymdRVtjRBicvtcnr+5i8P+LbOspHsmLqkQuqX5/mvTQb2pNsLFjJTx+lXTBrD+RgsvZyrwQbIXEHOlGE97Gch4VCnES5NmxFNGphWqxNOlGbhsWgVVzh+PCO5MxtV+oeju6gdENiiDdDhlId35/CEu2x1rs2K0dWS9mSsH3HcPbw9PFUXgRP791gFqoXJ/OgZ64unugCHORaF+fJ4Myx+5fdhijP9iGfReztF7fr/L6kReQwvvNQfbskFGtZEOaJgc/Hbgsnr8xtVeTwtCyx0upxk6chrFL2XLWhMmMHaWJKq2dPmE+YkZEs+bX/jwj3MKMaT07JCi3FFSficgvsZxnRw4X9AjRPdPWZHhHf/H40/7LWL4/XjwnsSXTMs2OKY0dCpv8+fgobHxyDAZEtGlw2wfGSOneJBImbYkmNPm67rNd+N/aE9h6LkOIiOetOaF17u6/KBk7lFbdXKgcBxlkNAaSMUCPf51IQbaBWU7m4kRSnshoo5IiZCQ2BRJuE5eyiqA08koqhLhdhsKSSjY6TWLszJw5U2spKyvDww8/fMV6pmU8N6kbXJ3ssfNCJl78jTIn6qoGnE0pwPzfT1n05mgrJObWhbEshRzGyiu13O95Pk0ydgzJABweKd3EjlzOFXon4kxKvlUNhq1JsyNDwnt9SRKaUPiyV6i3CHmRd1mGQko3fbVfeENDfVzx9IQuwjuRVlCGN/86I7ahidmR+Fyt86Q5kMHdTXUukiFOGiLK3ProvwtQEvtiVYZdpH+TvViRAcoNY11SeXWCvF2EvqqgrEpkYrYqY4dy3DWXO+64A6GhoVesZ1oGZSssvnWgyAr67WgSPtlcd5G/8dcZkT76+7Ekix6jLUDZR5Y2dnzcVGGsEssbOxTGaowhHf3UKfdUm4Vm4FQ809ri+q1Fs9McQ0MOXdJkS57p3/rNAVEPh86RPx4fhacndMVHs/sJDdfvx5Kx6XQqTiblobSyWohvZWOluXQNlowBStOmtHniYoayvCByCG9k56Ybdp1Unh0KF5mg3m+LkA0wMpBvGiRlXf52VBKdt5psrB9++MEYu2EMYELPICyY0UekjX616xIeGBspWlDItRk03YxMy4ydCCV4dkrM93vS4CqnupPugGo9EV0NMHbIuKGK3ycS8/DkNV1wLCEX/55JF+clCZgZw6HvPkNVUE8pxg4xtktbvP/PORGSKq+qxqbTaSJziDw5a+aOgI/qnKVUdqrd8+WOi3h27Ul1KIe8Os3V68jIxtK6Y0nqgq2pBZJhqARKK6pxLCFPPG9OyQAqU0JfUVF5lTAiA71N69lrauVrOdR2bc8gUUGdrne5jp7SUbxAedeuXZg6darwFNEX+scff2i9Tl/0a6+9hpCQELi5uWHChAmIiYmBLTN7cJgQDdKgSC0MdpzPFPFrgsqrM82HqiXTAG5pzw7Ngs3t2fludxx6vb5JlLWn1iWUjkwtTSg8YQhUaffDm/qKGi4DVRqQowlcIK2ppBeUCTEwZb1RATqlQOnglIFHXpqo+FxsPJWqHo9kQ0eGqiAPj/QTN2057NUSvY6MHFLVrEyfnl+uGC8IGfcV1TWigGAHPfXVGsuSC2sj/T9qE6JEcXLHAE9x/yH7hu43WUXWMcFWvLFTXFyMfv36YcmSJTpf//DDD7Fo0SJ89dVXOHjwIDw8PDBp0iShG7JVhEu5r+RSpoGEUkJlLBn2sKVMLBIXUqaKpfCxQDbWnyeShd7mx33xIkwge3UMnbXRAEj1RCjMSrN7IuqyNPNjmiFO9nFV1IyZjmVMF8lbse5YMvapRMdTdLSSIEPt6zsGq8MysoalpejSj5FxoRSPthzCIsOuub+dUkXKl1TGFx2fq5MDwlVGWazCwohWa+xMnjwZ77zzDmbMmHHFazSIfvrpp3jllVcwbdo09O3bF8uXL0dKSsoVHiBbY2o/aYDZG5slPDsy7NkxXo0dSyJnY5nLeKXUYTnVnLKoDqpShZvbnoT0ZU4OdqIfkGxAMtap19FErpFDlYzJm9ynnY/e/m3k7Vl271AhZu0X5iOMYWNkkFFWlhxmlj1f+nptmZu9KgNwVAuqXitRpFxTU4s4VcmTTqrjo3YeRGyG8os8WoWx0xBxcXFIS0sToSsZEkIPGzYM+/fv1/v/ysvLRfMwzcXaoOJTvdt5iwGHXMUybOwYSZxswRo7mpodc/2eFHuXQ6EUvlp7RBK6dwtq3g2KZn5yBVgOZdmOsTO6c4BaiE5M6dtwg1CaNOx4bjz+eGyU0bxUck0nEsmGqLLVKPRnaQrKKnEqKa/FITu1Z0elkVGKt7Giqkb0KWunGhs7q8YG9uyYATJ0iKAgqbqwDP0tv6aLBQsWaGWJhYc3XspbidyoUditvSo+XMDGjlHSzi0pTibayGEsE3l2yCtK/ZB+2CsViZMF7nKzSQoNEN2C9XcRbgxZt8ONDZtGcp7pCwo2F39PF+HNkdEVwqoP9YMyZjjupet7CE3Q3LGRCPZ2U4xnJy6zWISBKTW7Jb9dpKqwYHOrVZsy7by9v7u6R2BnVbVnaijbqo2d0tJSJCdfmZZ25oxUe8GSzJ8/X7SDl5fEROuqBCkzRaXbIWaqGjCyZ8c2wlhyNdtcE2VjkSaHqrxStWPyJESpvC93jeigtV3XZnp2CFm3syc2S+01YpRTY6clWVkEhaYscZ1QaPWpCV2E9zDYRwppUZsSSyPrhuQ2Ks1FbhmRmFsqGoIqgTiVl0mzp5nco7FVGzu//vorunTpgilTpggdDQmHZe68806jvU9wsNSILD29TqAr/y2/pgsXFxd4e3trLdYIxcIfGheJCT0CMa1/qLoIHQtCrTvtXDOMVV5VY5LCfLLHiGwQqldyVOV9oc7MdBOTO27TTL65jOkaAG9XRzFD/fO49dTjsDRKDmMR947qIM6T16b2tPShIMRH+o6oiKFSjB0/j5YZO+QZCvdzExOEXaqaRkrx7ESqDDFCFp9Tirw1FLM1ibFDguKoqCgcP35c1OC5//77sXLlSvGaMW/EHTt2FEbN1q1b1etIf0PG1YgRI9AamD+5B767ewgCvaULjC4QarjHNE+ER7MpJRg7lAkmu4tNEcoifYHMd3viRDVUNycHdA/xUhePI01YS/B2dRL1VohPtlxQd05n9EPjo9KNHTKAP7mlPwa1t3z9pGBVHRoleXb86qXhNxUK+U3qKU3WqbSI0jKxZLxcnUSKPRGbqXyRsklyaysrK9U6mkGDBolaOZRNFRsb2+TYbVFRkfh/mqJkMqL8/PwQERGBp59+WhhX5Eki4+fVV18VNXmmT5+O1gTdqEg8RloLCmVZMm3aWsksKhc3ZDIy5IvYUojO525OyC6uEOnnwUY+nsKyOvc49fEh+oVTBpW9CGXRnOSqJvb10ecF+GFvvMjIWnM4AXfWC5Mx2pDRKU9WQlVeC0Y/8nWRmm/5jD+6Vo3h2SEm9goWkxAqK0LtNui6tBRV1TU4nigJr3vU0/BRhh3ppUikrATjtyFM8g0GBgbi5MmT6r/JMNm8eTOio6O11hvCkSNHMGDAALEQ8+bNE8+pkCDx/PPP44knnsDcuXMxZMgQYRxt2rQJrq7KjHeb8uborYDmkdYMNTCUZ4uOFhxcrqyibALPjg5tl6yxoRopD46NNEqqsLuzI568prN4vmhbLHt3GkH26lBRyaZ0y27txo5mkUFLITdI9fNomWdHvhYprZ6M34OXcmDpxqZF5VViPJIz4WTkMSImXfm6HZOM6D/99JMweDRxdnbGqlWrsHPnzibta/z48cK1W39ZtmyZ+ib/1ltviewrKiS4ZcsWdO3aFa0RHzfJm8Mi5ZYKQ5Uxo/ZVZ2QZX6Qse3ZGaqTIDjbRzGzOkAjhaaTYPnXIZvQjt4kIUlCbACUjh7HoZkzVz23Fs0PeZWrJQPx31rLNNvfE1NUOkkPrMl0CJZFyrILS5E1q7NSvWUOCX3d3d521bEaNGmWMt2QayODJN2PVXZusXKuQLBhTFhaUNTt9wnyEyH18t7ZGKeevC/IUhalqc8jfMaMbMgiNkdHTWvBwcYSXq6Miau3ImZPG8OwQk3rV6XZIT2gp9sRKIulRna8slGhNnh2jCDt8fX0b1OLIjcKqq1k4ax5jhz07zSFZFcaSi2ZZGrnfEGXYmSqMRSLix66SwkymhLxllO6eoqohw+iGKk4TbVuQBdfaIH1dYVmR0I50VnkarDkbS4YmHx7ODiLT7FRyPvqF+8LcFJVXqRubyq1CNJGrKNMkhqqwk/GpVIxyZNu3b9cybK6//np89913aNeunTF2zzQx7MHGTvOQvQ7tfC2biSXj62a6woJyGItSw82BnFmUnCel9jO6yVJ5dgLYs2MwFPK7kC4ZO5akztgxjmeH6ggNi/THtnMZQjdjCWPn4KVsUVGdslN11VSS23dQ+PVcWoGiRcpGGenGjRun9beDgwOGDx+OyMhIY+yeMRD27BhJs6MQz47c+dwUYUk5jCWL2k2N/J2yZ6fxjEAiwFM53c6Vjpw5mW5BY4cypuRx11ieHbnTPBk7ct86c7MnVmpsOlqHV0ezDx4d4+lkZRs7lk85YYyGOhuLjZ2WhbGUotkxYTaW7NmR9Q5m8+yovmOmkTAWe3YMJliVop9qQc2OfI2SmkOedBqD7qpUb/KaWII9MSpjR4deR6a3KkPrdHI+lAwbOzaEj5k7ZdsSZCAWqhqqGq2YGxWrkRdd6/StV+GjCkuaomWE2rPjaibPjsqAZIGyYQJlql7NWE9hQTmERT3t6mcstdSzQ5xPKzS5SPlcWgGe//UEErKlUPOR+BzRCoI+jmbWpi7PDnE6paB1GjvGbPzGGAaHsZqP7HHw83AWtWGMwt/PAm/6AjsW1K0rL5DW0VKt8Tttfk1at/lVs2Rj1Xl2mmnsVJYCW94Afp+rbbTpQdZBkdiSipQpDdIafvTvefx1IsWix5FVZJz+Sloc/Ql40w9YdVvj26adBv54DNj5IcxCVox0XJtfb3i7vYuAPx4FDnypN4ylBGOHxg9j0sHfQ2QzUuFPuUmxKaiuqcUza07glyNJeHD5ESE2fuMvqY/lzYPD1XrQhoydmPTCK1rbKKl1kVFG9ZkzZ2r9TfVuHn74YXh41JWWJn7//XdjvF3rgE4S2WAszgYqSwDfhruzyzdH7nzeEnGyMvQ6mmEsYxuvNACps7FUtZmaTMxmYM8n0vMbPwccG745082bOqqT2JHEjEprhUAVYhdvj4WLo71Iw2+2EdhC3YfsxTOuZ4c8htVArYaRmXAQOPQNMOX/ADcN4ev5v4HjPwOdJ8AkFGUCzu6As+rekHUBOL8RyO8LXPumtC5+D3BhE3Dt23VjYOxmICsWsLMHyosAl7qCl9RHiohOK8AXO2LxyLhOZp9s17WKMIKxU1UBOEr7oeKm1IyX9DCk22nvr31PNRZ/HEtGdKrkmTmfXohpS/aKqsgU5n52UrcG/y8Zm2Tk0XdwIb0QfcOk8+liZhEe+PEIeoZ447M5/S1eqNUoxo6Pj2TZydxxxx3G2G3rZevbgIMzMP4FyehZ/4Q0ANz/LxDYo9FUZfbsNJ26fkRG1OtMeBMY/xLgpLFPZy/guUvScweNG+r4F4FRT2ttSy5xTc+OXMKhpZRV1gijg2j2Tb3njcA9G4FTaw3aXLTg8HUVbSPIsFSasXNZ5bqnxqv/nknHTYPCzH4MdLOgy53CBvJv32zKC4GcS4BHW6D3TUCXidKYQtCbbHgayDgLhPQDRj1Z9//GPCt5H8OHae/r+Epg2EMtOybyBq6aA1RXALeuAnzCpGXSAuk4iIIU4KcZ0jahA4Des6T1A+4CqkqB/ncA9to3TUo3v3tEe/y4/zI+3HRehHw+ubk/7I0YTmqMnOLylnt2Ms4BP8+UDLpnTmvpdsjYoTDTdb31N7huLmWV1fi//86L55N7B2PTmTRh6BDPTOjaqOFNY1KvUG/sjskSx0nGDhV4nLv8iGgCTAs1DZ03sWGjySqMHWr2yRiJ9DPA7o+k512uBfw7AXmXgZoqIPVEw8YOh7GUlXZOs0+NGaiABmoPHfFvmunKs92qcmDFbISW5MAV81Ba6YJvdl3E59tixQzp6u5SZdWW6nXoXkB1PAwm/SwQvR7of7vkZewwWlroeC/vB8rygW7X6f3v1OuJjB3ZsFRit3uCOrRbwtiR9TrUaLPFuo+kI8BP04G2PYDHDkjeFBkymMmwjt8lGUGluYBbm7rzc+I7dduSYfTHI0D0X0BwH6D9yOYfU+5lIDdeGsvonCHIyJENHcI7FBj3ApAdC3TVOJf6zm5w129O640uQV54Y/0Z/Hk8BdP6h7b4OmkKOcWV6lTsZuMZCBQkS88ritXjQfdgSbdzzkQZWT/ui0dKfpnw0FCD1647LuKzrTGihs6dI9prb3xxG/Dbg8CNi4DuU7RCWcLYSckX2qL//XICFzOLhWeIQuafb4/F0I7+DWZ1mRrlVgBqrbj6Atd/JA0y7QZK625fCzi6Au4Np/VpGjt0wplzZmPtGLWg4OV9wNp7gXaDgFtXNv3/0wz88l441FTB374YyTUueO/vc+IlGshbbOyojGHy6jTJUxT1gxT6yDwHzJbatQgu7QBW3gz4RTZo7IjvNq6uB5mS0NRD7I3NQkZhGQK9XC2Udm6EEBYZFJ5BgJeec6XfLdJCBupXY4DIccB1H2gbRQSdHy7egHsAUNTCDtyB3YG52yXvDU3i9DHmf3XvrQsNQ0CTO4a3F6ETajz7W1SymY0dlaHaXGMndqv0eN9/QEAXrc/XI8R0GVnF5VX4cudF8XzetV1FbZ+nrukiemD1DZMaA2ux6SWgJEsygF9MUK/uHSpFd84k5+PTLRfw39l00Zh6+X1D8cuRRKw6lIin1xzD30+OQaCFWqGwsaM0fNoBQx/UXkezHUP+q8rYoQhFUUWV2TJtbIEkY2p26KZQlAaUNrOBHw3ys74DnD1Ru6oc0NAlnkpqeXonNRdsll6n41ggIxoYeJf2+ojhgGcwENxXmrHbOwJxO4GIEYBT3fcpf7dK9OwkqDw79NXT9bPhRCruG93RIgUFjSJOJq/wsxca345m6nkJksFao8cjTJ6eKR9rh2Obi2+EtDSEPiMnOQpYOUfSGD1+WOcmswaGCWNn89l00RBZDu2bmpySFnp2tr4pee5JQxWhEULU8OxczikxepXiFQcvizB5xwAPzBwoeTNpkiy3qriC+zZJY4Cf9rXRu51kkFGl5xOqMerdGb0xIKKNMNaoCjNd9xTSYmOHMQyKw5OXR4cBRFY5CSxJd0AXOhs7FmoC2ukaYO5OKfbeXHrNEA/unjuBkiIM6dAGh+NzcSmrWHjuWlLLo0lp55VlQNJhKVzVY6q01MfVB/jfubqbFN1Af7lb0nhc/Yp6M/m7VWL6OYXXiBv6hoqMrD9PpJjf2FFlYpm1oCCdZ25+wrAWv6MuGvEo6z1vNI2jmportDZNxisEKM6Qwm4aIl5NSDtCxgG1JvnrZIrw9ijes0OfhTRSBalAT+m614TCmmQAU5iTBMBkQBhLq/Pt7jjxnETdBoVOydBsP+KK1VRhWQ5ZEY9d1QmzB4er70tf3TEIjg52CGtjuer0XGdHaRSmA9kXJfdyffYtBj4fBPz5uHbasgas22neRS/rJYwSxnL1BkL7AyF9W7yrZyd2xW3DIvDd3UPUzTRbWryrSQUFT/8G/HiDFKYydDZenCWJXE+u0dokVKGeHcqCSs2XjunhcZFi0D+RmGf2Du0WawJKIaywQYZtS96HkpwrJ2BFGdLz6ipg50JgyVDJKJEhYfK310hZYC0xdh7cBrwQr9PQISgsO3Og1Kbo96NJsArNDn2W6xdKE4ayPCnNPupHrU3Uup20K3U7vxxOxHWf7kLU5aZ5ktceSRTnXKiPK6YPaEZrJxKuq7RX9L33V7WzmNovFP+7VluM3CHAw6KGDsHGjtI4sAT4fCCw44MrX+s4BnBwAbxD6PRq0Njh9HPDkXvquDk5qFs0WBwyeC9uw3WhpXhvRh/xu/ZTpXSebGEoS7MJaKOUZANO7lJIytABsP0oKQtt2hKtl2RDkvRRSqq/kZpXJkJXVM+kR7A3hnaQPBlbolU3cGtsAko3zF/vk7xsxmLjs8DXY4FTv2qL1pdeB/w0EyjNk7KoTqySkipOqIxdmpjF7waSj+jU2hgMGdSkg6sv+icDS4Pp/dsJ8f3RhDxcyiyyDs0OYe8gZchRrS3Sx+kwdsizU581RxKFEXT30sM4mqBhYDZi4H+1U8oKfWhcJ3HuN0rmBeDfl6UJEGUMf9RNEq6reGd6byyY2Qcfze6rSL0oGzuKw05KT9blUqashYd2AjcuBhzqzcqPLBWzpjau0k/Knp3miZONUp/j/CZpoCctRHPZ/X9SCu7ZP9WrSDBInEySuhCbpaAgpSXPiwaGPNDwdnRDe8MHWBAmDdpUNoE0PvWysYjiimoUlGrfoJQgTibPGQ3S1/QIFH9vjW6hILeZxo5RBMpUqoJuSvlG9G5QmjjpseSMIYLqKwnDtVYydEjgPONrYMY3danqVGLhsYPS+sCexjuemC3ABx2B5TdqrSZNyOgubcXzrWYwWMlwzzVGNhYR1EsKLfacprMlhhzq1EQupkgdyu/+/hDOGlDJeHdMpggnk3F2y5CG67epIWN1/2Igapl0HlQWAydWq1+mGkC3Do2Ai2MTMjzNCGt2lAYV1pKLa+mirY5aBeRWpllXbTU6tPsZh2CPPDZ2DCZJdbMzWkHBfZ8Dl/cAs75vXIypjzYdgMBeUiaMir7G8uyom4AaePlrFp3TB93QQgcCKUcljY8ObY+bs4MYXLOLK5CUVwIfdz0aEQulnZPugJjQIwjvbIzGobgc8V2ZS/tm1DAWJTmI8NRQGI1B9wCD75PCtDKUVXXPBiltWk5fDx8iLU0VJhsCpa6TZ4nON9K5UBKApvGlok87b+y6kInLOaYPRZKRUaGqCt6sooLLbpBKjsz8RhKWa2Y6qpB1XNkqg1iGsm7TVT3BZK3Soq0x+OrOhsOS645JlcJv7B8qNDUG4d8FGPaI9JtT/aPeM6UMTCvB6j07b7zxhpiNay7du3eHzUOx87+fl2b+FDroNR2IGIkqH8lKZ8+O4cSptBkd/I0UU6aSAR3HAW1aIHAd9zzw6D5gyP1aGQ/keKIZWf1BrylQwS/C6FWCaeZOoatu10ueHsqeOf+PHt1OmeIyscJVmgLSF3QO9BSFF3eez7ROzw7dNEc8JqV7GwsyejUNHc0JmGzo1Ic0Hf+8KKWbGwPyVG17W2qvQm1Ypn0BPLj9is3k31IWnpsS2atDYXAy6JsMadzIaNMsMloPf1Un9ex6nh2aONB5SuPC61N7iXWH4nMaDBMXllXivzNp4vmMpmh1yICd/L5kSJNonX73Bo5ZaVi9sUP06tULqamp6mXPnj2weS78Cxz6Gji6HGjTXpp1+bTD5PxfxMts7BjO5awS9U3OKEx8G7h7veGiTwMh4yRSdYwt8e7IISTvxgTKF7dLegy6sRhC267AAKpw6yAZOt9eDax/Uqt3VrDcx8iCHarrk6gKY8ptBwhzh7KkVhGV1tPxnLzJpAeqp5e5gg3zgINfAtvfbXxbQ6AwmBzioXR58oDqyBYLV3npTNlPSia7pdWT7/oDeGQ/0G6wdjYbaaBU+MueHdV7ycheHTKQB7b3Fdm4VImb6g3p498z6SJjN7KtB/qo+lq1BmwijOXo6IjgYOOX0W4pRXv2orxAvxuVNFwOGhOBShoLSOtRVSLNjqkomAqy3DVDoZV5lHo+CagYDvz9HxC/F4j6DxEeXTA6zwfeh1NRYC9pRqqqRERdJ6RQcdQ4Cwzd1t7FBc4DBsPORX/NBCeXugOuqqhW3/NOZ51GZkkmurTpgjAvqbZDpX059qXsg4OdA8aEjFW38YnOiUZaURoifSPR3ltKI612qMSe5D2wgx3GhY5Xb3sh9zySC1MQ7h2Gzr5dxDpHZ3u1Dqe6skZn5+DEjEL0zY5H1/OlKCiOkbatluqt6IN+C1neQx5syqw1xrZ0Ptg3sO20/Ms4lJKL1PXZyLscrN6WtmuovybVBpMzf4OPx2J0ahFCTxQguzBW/7aXdqDm8AlUB1N8/r9G96t1DOTZyYiQDPH1f4k0ZNp2YHwCilOyYL87C9k5JLTXDe1TrmdGvwP9HoZsS+dYVRO39Tl4HqNzStElugjZRVKBtQmZRTidEoOirLPI880Q51D9/ToFh8Ctl6RBIa2Pg5O0Y5pVV1Xo/zGoIoGjRuigsrxa3LScqFWEvR0cL8cjOz5e/xihb7/yGEEfLC8BlfaekiGgQ4dWfzwxeIwoSkfVsbWoTTku/U0V3eUigDrHk5GozdoH7D4FOG67Iq/CSXNbat/VwDWn3tb3DlR3vwo1KceAM8XA2SvPzZDSCoxMOQ2ndDvk/l2BhlrPal2fTbnuVdsWJudjdEocIsrckP13VQvGCElfVX36T9Sc2SD1J6PCj5TgWVqJ0SlnhHciZ1MtZD1xToLqvdu4oei/GtxaegmxmcWIXlOANp38tcaTGtX1Gb09FqPTizDFPxg5/2xu/Fom6Ich7xOVKbCzk7bNigbST6PGvxuqA/Vnnmru12PkKDh4mqa/V2PY1SopLaKZYayFCxeK/lyurq4YMWIEFixYgIgI/fHh8vJyscgUFBQgPDwc+fn58PbW4aZtJhcnX49N7Z/V+7p/9mn0O1XXxXfHmI9RQ9lWOvDNu4CBxz9T/7175PuoJCGzDrwKLmPI0bquxfuGv4UyVx0tCujkK07FsMN15eEPDnkFxR66b0KuZdkYeaBuln9s0ofILdd94rp6OuH+j8ZgU9wm7EzaiSGHbkJqjG5vBBkk173TETesuwGeTp54OecrXD6dDX3M/rg3rll7DRztHLGgbDkuHtUfapj72Ti10bV12VmcOyC5b3Uxeu8LcK6UZkTnu9yM5Hbj9G474sCrcCuTUj1jI2cgIUJ/48Shh96BZ0mqeH6pw/WI71BXZr0+g6M+gHehZKReDp+Ai52urLshM+D4p2iTJxlnSaFjcaGrNDDqou/JLxCQI3UxTg0ejujud+rdtveZ7xCYeUw8z2g7AKd76Rcn9zj3E0LSDojnWX69cLLvo3q37XphDcJSdonnub5dcKz/03q37XRxHdonbhHPC7wicGTQC3q37RC/EZHxf4vnRe4hODS0rrZPfSIStqDzpXXieamrH/YPf1vvtu2Sd6JbjOQprXDyxJ5ROjIkVXQfHoxr7umpNl6+eWqn/s82sC2um9tH/feSh7fZ7BhxeODzKFRNUurjVFGIMfteVP99tP9TyPPtqnNb++pyjN89T/33iT6PINu/N/Rx9Y7H1M9P9bwfmYGqavQ6GLfrGTjUSOGhs93vRFrwcL3b8hjRsjEi8p+/4dLRuPWr6P5N9//G7t9W79kZNmwYli1bhm7duokQ1ptvvokxY8bg9OnT8PLSfaGTMUTbmRrXnj2BBvRx9t4+cBtYdxHaNVB0y97TS3tbzelTPUodnXE5tLNoICe2ddbvXrVzddXer6t+Tw3th7atLshHRexF1JSUAA76rfSs0iy8uvdVlFWXoWPpeBre9G7r4uCCAYED4OboBjRSLsLJ3klsa09T5BYkPNXHoW1buAVLg62jq5TNoQ/XXr3hVisNeo4ugQ1v27MH3Gqkm4OTi35vBuHSrTvcagJESXwnmm43tG2XLnCrls5xJ6eGMyqcO3eGW5V0k8woavizOXfsCLdwaTro7NihwW2d2reHW6h0o3B2bPgYnMLDUejeU2hknP0b7j3l1K4d3NpK52W5fcP9dJxCQuDmJ21bZd+wmNoxKBBuvtK2tXb1UpjrUeLZBmf8OojsniD/ZhTWMwLNGiNIJ5N+usGalvYe7tr7bcoY4ezY6Bih+T56t3V01N7W3Uv/tvb22tu6NRx+oW0pa7Giqga19RpV18e1f384QrrWHF0b/p1d+/aFS22Z8ceIjkFwU40NTs6NtLno1BVuqmuitDrQJGOEk1P7xseIgHzh7XH2aWvwGEERAUth9Z6d+uTl5aF9+/b4+OOPcf/9deJOS3h25FleU9zZerclt7Ozjm23vwcc+QG44f+AHjfiRGIu5nx7EIG+rtg3/xpp2wryD+vbMV1cGvs1YNuyCxcQd+M01Hq3Qeddu9Rhoud3PY8diTvw7OBncXO3m4VHZWfiTmxP3I6XBr0MuwYkYlohr8pqdWiqpds2FsY6FJeNSw89ggGZsQh9dT78bp2jd1ut/TrZw07lH66uqkFNtWpbCieuuEnKWHh4T8Pb6oBCIaJGRVk+qqP/RY2LP9CJDMU6bcfQ97agvLIGG58eg66qvjnV1TWoqWpgv452sFfFb0a8uxVZBWVY+9AI9NIRs9fctqa6BtUN7Nfe0Q4OjW1LvbT8u8De2RH/nEnD4yuPYWj7Nlhx3zD9+3Wwg4PKV0+/A/0ehmxbW1OLqiZsey45Hzcu3gsvF0ccfFl75r0zJgMP/HxUaGj2v3g1ajU+W/Ghw0h66CHYe3qg03//wdHDXSuMVVBchOyybIR7hYu/D6cfxpCgIVIShY7r/o895+D74uMIKc6B29ChCF+yWBgDLRojqMSAnlIKV2xr5DFCV/i6KaFug6/7w0uBtJNSujZln2lsO+eb/ThwKQefzOorKmPrw5BQd0Pb3vz1PtHtm+phaRbnM+i6z4oRtYscXd1g99LlBre94fPduJRZjGUPDMUoVWr9s2uO48+jyXh6QhfMHdtJtJMYtmCrOK7N88Yioq2nuuZNZWU1Jny0UxT1fHd6b8xQtYfQdd3rHE8oNE2hLM+gZo8RpqDVeHbq4+vri65duyI29kotgoyLi4tYzIHmBWqSbR2rgcihQM9JQGkaIu0zUGVXKwSgNKuhYlGag0+j+zVgW5cOHURg3q4gF3a5magN9IejvSPeu+odfHb0MwT7BKqPb1z4OLE0Bc3BvSXb0k1Gs24O3Yzqb51UUIouuZeFG9utd68Gt9UH3TzVZY86DgIe2SyJMXX8nlrbNoSrDxwG3HzFMTjBAX0i2mD/pWwcSchTGzs0mGhqOxoiv7wSlXZAGx+Xhs+5lOOwryqHPTUmNKBlAA1+pE3WgkoiHP5OytTqd4s60yiruMLg850Ga3sDt6Wbi1MTtk0uLBffRUiA+xX/b2z3ICHippTwI5dzMTyyLszjM2oostoFoTIxEaU7tsB3+vS6/drZYX/WXjy38zmMaTcGvQJ64asTX2H+0Pm4rcdtVxwHva/L5g0IK0xDoW8Aun/yIRxV2Te6tjUUJ0MqZMvbGnmMkHE01bbydT+6Xh9BDaSKvTlIIj2Ugd9bk657J3vkFpXjGNW1sQPG9awb9wy+7t3dgP7TAXunRrf19XJBZVaxug8XkV4knb9BftL56+vigO5hPqIC+LGUfHQIqvOW7bmUjcv5paLkxNRBYQ3+jrrHEwfAPdSw616B2EQ2liZFRUW4ePEiQkIaDhcoEuqRQpVzKRXRUCa8Ady2WpqqfdITfsvHw8+xXAjn5GJTxoZc1S4dpfBGeUwMVp1bheErh+PL41/ixaEv4pr2kkfJUpzJOoPHtj6G1/e93ui2abEJ8KkoRo29A1y66tYLNAmqEEvFH42ciaXJkI6S4XE4vumNRquqa1BCM3NDUs+3vAEsnQjE6BYnG4So9l0LpJ/Sqhcip1lbmn0Xs7VSlTWhiYLcEHHDyZQrwiq+s2aK53m/alQUVpFcmCwmAB19OooQLYVcM0oaKHAXKzXtzBh/PRzbGKf3UWtHnX5uwoysPTHSWN0zxLt5DS5JwE/1daZrVxsXzTbXPwFsmq9eJU8UNMtOyNXfgzXee2gH6fyhOlGarDggxfxvGhTevBR5XZArjlqF6GpvpDCs3th59tlnsXPnTsTHx2Pfvn2YMWMGHBwccOutt8LqyI6VWkVQX5mmQt2lqZmfewA6qyITVLjNVFAsWDZ24vLjUFpVCheqpqoAKmsqsStpFzbFbxLH1RAV0WfFY2m79haNJ+sk7bSU3qvZY0gMZs03duTqyQb1xqJsQErt9Wg4Jt8gwx4GHtoldc7WGLCp83p5Q2lTZoAafi7dG6curqaLG/pJ6/85lSYMRU18ZswQaSalR6JQHiftR+b+Pvdjz5w94vG+3vfh16m/4ulB+gXZHqnSjci3hxHq4pxdD6y9Fzj2M1oNNFGsh1xKwJS1dnZekJIjxnVrwTWiC7rmqazI8RXqPoh16ed1nzVdNnZUJR2IoR0lD+R/Z9IRo2ovkZxXim3npDIK1GuvyQbNmjuAbe8CZfWqM9P6j7poVXpXKlZv7CQlJQnDhgTKN998M/z9/XHgwAG0bWvkk88c0I1ZX6sIQ5ifBDx/Ea7+khAtSVU/xKTGzoUYvDL8Ffw1/S/c1OUmKIF+bfvhmUHPYM0NayTBcwM4X5IyFey6Gqn4GtX+oBLq5KFrKb/eK7WMIKNHgwERvqJZJf2+cgPLplZPpgJoTo3F0Wd+DTx1Auh8Tcs9XSqoGrGjSkNA9UAsARktm8+m49m1J8Tfc8dG4vo+uj3BIzv5i35pdIMh/YcmTkFB8BgzWjwv/K8uhVfGw8kDfq5+wqtDZRb0Hk9FJQJypSzBsP49jVNw9MzvIgxp8+ReBj7oACzsZPZaO6SLoSrNxLiuRr7fUHXoEY8Ds3+UxJ0ahQXllhGkzyksr7rC2BndOQCd2nqIc3bml/uwZHssHv05Snj7h0f6iYKZTYIavVIPrL2fkSpb+zVRxNZOamCtcKxes7N6dV1vDquHmty9lNRwQYaGUOlT5LYHZjF2YmKEu76DT8NZO+aENBM0m9bHhvkfoOZcNMYvXQT/FKkZnnffOr1Oi6AeZTTLmfyhJFJuCQFdpVh+vbQaDxdH9Ar1FoUFD8fn4sZ+bk327BjcKsLIkJ1DM9T0gnJkFVYgRNXzx1x8s+sivt55ST07vqpbW7xwnX5DlwzC63qHYNWhBKw/kYzRXbQzw9wHDUbxzl0ov6hfI6hJTlkOlp1ehscGPCbCW0T8qQtwrqlCuYMTuvbqjBbTbTLg7i/1WbJ16HPKnk/yOmhUeJbDWBTqIQPX0cgi2TMpBeI88nRxxMCIZoYe93wK7FsEDLxLkiTIkAhm0rtam6o9O6owllyYk96fFhkKUa19eCQeXH4EUZdzsfDf82I9TTIeu6oZ5xdVx57ysSSvqN9tnnrgTXhdiiwoHKs3dmySBtJLDYEaGmo2uDSpsXPxImqrq2FnqDrWwhz7Zxc6rZN6z/z9wnvomCMV8goaPMA4bxDUR4pft9TQIeas0PvS4PZ+krETl4MbVaGWpnQ8N3qriMb45W7g0nbgpqVihiqMnXrVYE3NvtgsvPf3OfGcvDVT+4XiuUndhJesIab3DxXGzoaTqXhtai+tG4tLpFQzpOJSXRhr3o55yC3LFfq1bn7dtATzD/z3AGJyY4TH8ZH+j4j1ycfPghKIM/1C4GCMJophg6WlNUAd0B89AHgFAy7aqeuBXi5Cd0WJGmTwyJ4eY7HzQoba+2dQ13BdlGQBJdnqUFVDqPtjqQx1OYQV5H1l+J2qOa94YBhe//MMYjIKcW3PYEzpE4KI5rTEoeQEjbY1WuhrE6JA2NixJcircHkfBnpSCq2XusGlKXAKCxP1N2rLyvDNprfRufcYiwuT6xOfH48159cg2CMYd/e6G1WVVch67z3ICZc9d2+AU201qu3s4dmrh3HedNxzAGgxLUM7thF6k6bqdkgrY1CrCDLYVt4iDWa3/CzNNFtCVZm0z7xEBHj1AlKBLFXjS3NAM/u3Nkj6rDlDwvH29N6Nh/FUDO3oJ9p0XMoqFjof6uysWW+EKI69gJd2zceUTjeguqYaR9KPiHpQ9T2OD/V9CN+e/BYj241Ury+MPi+MndLQhmubMHqgKs56svjCfN3E70bNXo1p7JDe7JcjSS3X64yeB/S//QpDTU1OHHCOqilfC39qtqrh2ZHFyfq8o9Tg84Ob9Fc2bm1YvWbHpji3EfjzMamrb3NIPAScWovwiksmD2ORJ8elk+S9OLh3LX6L+Q1Kg1pN/Bz9M1ZEr0BNbQ22fvwdwjIvo8TJFQnBkcLQIbL9Q2HfQDFFJTKovSRSPp9eiOOJdT10DNXsNOrZodlmwn7g0s6WGzrEhDeBRw8CfW9BgMeVQktTs+pwougI7ePmJMJWhho6spEiGzjk4dHEOTxc9HNwKKvAnpN/IaEwQQj1J3ecLDKx6jOx/USsvmG10JURdF7WxEvXq32kEbyBROYFYVQa4i2wdcJUBo6xx8Kf9l8WxTGpBtP0/k1opqnLa0LGmo+eIpv/vAD89woQvxv+8nWj0uzIYayg5mSBGUplqdSHkXqh6ePQt8CaOxWvEWNjR0lQ80TKoEg63Lz/T4W1Jr4Dt25Xqy+G+hkkpghlTantjfHhdYXvlMJV4VdhSuQUIaDOy8yB78rvxPr0mXch4p23UK1q1FPU3kg3GWND2p8fbwR2LrziJRpkp/UPFYkSJLQtqzQssylV1W3c170RY8c9AJi9DLjhExgF6r5Ni7M7AlSNLs3l2SER98f/SbqF/03sijbNaNg4a1AYnB3sRejwdHK+VhkGYfAAeNxvBgYHDcaHYz8Ui2aNJ/X2dnZC4ybz3sH34JIm3SR8exih9AFBovZPe0vF9loDCQeAXQuBmM16Q/rGFCnnFldg0VYpseHZiV2Fhs5kdBwjvDqUGemvymQkUTJd73IT0GAfE2aRphwHVt4MfDFC/zb0vUevb/59y0ywsaMkOl0DXP0q0GVi8/5/10nAyCfQpvMwMTBX10jFBU1t7AwrCxUVk5WGq6Mr3h/zPsaGjcW+D7+Cd3kx0nyDMWH+o+gxehAujpostnMfM8Y4b0gCvoVdgC9HNV9krgnVr4jbCaRJWUP1eWNqL5HKHZtRhE+3SINvY2w/L+kMhqnSU/VCQk8ynlWNCI2Jvwk8O2TU3/L1fox6fxveWH8GBy9li2rTl7OLMfur/aKjePdgL9ymEYJqCqSBmNhLKuO/sr53JzJSPE5AjwazrupTUlmCtdGrESJ3XR+ov9dTkyARqYOzVekpWgSVZ9j2juQZr4csUiYvjLFYtC1GhIPpfKKaNS2CMjcpxVxfNtPIJ4A7fgV63ihCz04OduprJ01HjR2jU1EkJUqED9G/Tf/bgGvfBjpImYlKhTU7SqLDKGlpIRSrbtfGDXFZxcJ9K1USNT4uXesyspRMQU4+gv6Tmj/W3nU/nF2lmdDUbxci4dRcjOtj+A2qQYozgeIMoKayxSJzQeRVwMxvAT/pZlof8lC8N6M35v4UJbKMSIDYJ0x/2YKMwjJ1yOuaHg331DE6lClD6atlefD3nGb0woKH4nNwUFVEbdm+eLF4ODuIDJz80kp08HfH9/cMaVFGDhlKJFJeeTBBGFcvXd8Dvu7OcFYV2NQUKRuCu5M7Xg2ZB6fqhSijTKzuun/nJvPksYbbh9saYUOA/ncA7et0UDI9Q6XsrG3nMlBYVtliYT6FgVcclIzdl6f0aFTc3ijU7ifvMnD/ZsCr4Z5Y5BUkcT9NYEm3I09kg02Z0djlWmmhivD66FVXPVzJsGfHlqAYfUEKkBtvlvRz+w6SoLIi/jJqK5WrD9jx/ufwrChBShsPjH1Q6n1F2Nvbo0O/buLRKPh3kXQpNy01zv4COgN9b24ws2Zir2Dc0DdE1ND48F8p00gf26Ilr06/MJ/G4/x5CUDCQSBfEmEaZYb456PAf68iwN1Bq16IMaACanJmzMwB7YQnpriiWhg63YK88MvDI9TXRHMZ0ckf94+WdDgkTh367lbhSfouUWr2WHqx6UZ/2ySpkW6mf6hxMrFkKISmpy+WzUE3Y6pATNdKPcZ0DkBkWw9RcqG+3qo5bD6TLrK7ugR6YoyqP1WL6DwB6DJJKuDZEGRsVFciwKtOt2MWz46MQT1udKAgo5uNHSVBhgqFQhqyohvi4nbg4x7AL3eZJf38kms+ymiiVFWFisREKJHC3AIE//u7eP7b6DIklyabdkAgXUonSTNlLp6f1F3U0Ngdk4V9F/W3GtmiMnau6dHIwEqc/EVqFbFjgXEO0jNYCtP2vw2BbrVG9exQSjcVCSTuHdURH9/SH0denoCNT47GR7P7CUMn0KvlNwSaWb96Q0/8+vAIdA3yREV1jahMe9BZMgizzjddI1NwTmoTURravPAaU4/8ZK0bLHm5Hx4rafK+3xPX4qrdctuQKX2N1I7oho+B23+R2kbo4/e5wIJ2wIVN6sKCJ5LykKm6fkJ9FZBcUVYgNUEulIpjqpucfj5ICjEqADZ2lMSKm6VKoFSFtzm4+VKalKhoKRs7pkw/Ty1JQ4q/NHusuCRllCiNPYuXwau8FGm+rhh990sI8agbpI6mH8UTW59AUqGRvBem8NQlH5U0CQ3Mkqh2hpwt9OGm8+LmX5/SimrsiZWqvU4wxNhxcpdaRXi3INNEE/Ke3fk7MG0x/Nr4qSsoN9RhuinF3cjooKrQY1RF/+gm1yvUBzcNChMZWMZkcAc/bHpqLHY/fxUW3zYAyT6Sd8YzpxQ1JYZdbzU1Ndi/ZiM89m4Xf2eGVqC4srjlB5d2SmoVsfNDtDoKUoFvrwZ+f1BLMzdtQKioRUO1nf48pt3jrCnkl1SKCQXRUBd1o0NjOpVuSD+rLiz4w954MRyM6uyvFi4bnUs7gc8HA/+82Pi2v9wFLLseOP+P9HdNtbSOsjq7XgclwMaOklClQmtWAW0S7QYDr2UDD+0Umh1Th7GubX8t+g6WRL7lF5Vp7Dj+J4kWyybfjdt63wZnEm6qvAF3b7obO5J24NtT3xrnzaJ+BE6sAYql5pItpqIY+PYqKbtm7yLg/Qjggu6mnE9c3Vnc7EmT897f0biUWSTEuRtPpuK3qCSsOHgZZZU1IpTTI0RPTQ9NRjwqtYq46iUYGwoxESSgpzBTS/nvTJq6ZD/VFjEHZExR3RbSSbX1ugn51BZDhHTjG/2/FWXl2DRpFnxffxYhuamosgc2tD0iig22GGpTQq0iYreg1ZF8RNLM0eQgS/KYES6ODurw4ze7L+mcDBjCv2fSUFVTK4TJTW650BLGPgs8cRQY+5y6t5x83dw53ISV69PPANkxQL4BXntqCeMdBtSoohJUroL64dFkSbSUsDwsUFYSj+6XLOLmoqE9kUXJNOM1JW6du4AUCxWXjNALyshE74lCWGYCKu0cMOT+usawVNvEDnb4YdIP+PLEl5g3aJ5x3nD7u0BROvDgdsCjkWwnQ6AeaTRQ0GCz+VWg+w16syKo4/KDYzpi0bZYfLs7Tiy6IGGyrpRoc+JsVyO8LTRgUyirOangmvynCmHJ2VLmhL7LmweHI3FtIHyy41B+6RKijsfCxcMDg6fpLrK55Z3P0THxHMocnJEw4locm1CBiEBcUYSw2S1nrv8IcDBzhWwl0GMq8PAeKXuo3ucnz+dH/14QmYtUZLBT26YbKxtOpYpH0sgZBfLCUWmJgC7A/bonMQKNauxyJiMR6uOKCaZMNOg3RwrLO0mGfINc8xpw7Zva66inHiVZyPclmgQaY1xsJmzsKA1jFHCjxC5/D3V9CaozYqoeRHLarRI9OxeWrwFVLrncdSD6hkk3wtNZp0Vtk9t73C5q8Hwf/L1x3oyM1G7XS3FqfyP0NyLIKHnmNFBeBPz2gFQS39VX7+ZPT+iKjm098OfxFOFud7CzQ/cQL3g4OyI2swjlldWYM8SC2pCD30jx+z6zREaWZOxUoEsLbJSLmUWiWCBlxVzd3cwZZipmDGiH5V6B6J0dhwuvvwO/4nyU2zsib+RO+LaVQnYySefjEPzHT+J51n1PYNr/HoCUm2YkfMOBoQ+i1aKnHxhlYQ3p2AZ7Y7Ox+0Jmk40dCrnujZVCWFOMFcKinl6lOUCp4UVBNUNW1L3c2P2+rih4aKj+UL5vnd8kJVR4qHrIyYYOFSUkmYUFYWPH1tj8mohdt732TVHm/lBcDn4/mty8BnANkF+ej9f3vY5+lf4YrtLskHvY0l4DzVBB0CFJ+9Rm5gz1+v0p+0Xfoqj0KFzf8XrjHS9d7FM/hcn6/1CfLHK/N3C8FFqZMSBMLKTRIQNAs2dPk36fPx6VBmOq+xRkhE7chKMLUJ4vMrzIHX8ps7hFImVKJX5sxVHxfFTnAJEGbm5OZJ7AR4c/Qp/IUiAe8CyWCg661FThxPqtGHf/bK3tjz3/OjpXVeByaBdc+9S9Zj/eVkVFiShiKUPZU2Ts7IrJwj2jrqxu3RC/HEkUYdc+7XzQMcAAT4ehsoNH9tfJFxqCyjYkHEB4m+vFn1Rv5xZLTlx0kRENrL1bmpRRKr2qvYXacLIwrNlRCmT5/vm4VBq8JZz6DTj1C1CYKsSZxK9RSc2OU+sjNi8WWxO2Yk3RLsDRUQgzq9I0lPgW5uDqjfApK0S+qxeG3iINEAT1yKJigw52DqhFLY5nHBe9iuhR0ZAxFb8b2Pw6kBTV6ObU+bh+c8ImGXYkTjz/tySMNBYUhhOp+T/UNTXUMHZo9kxaI0OggoGPrjgqvDpkOL073UgF+ZrIhdwLOJ55HBm9pJltuk8gLkZK/Yjydu7S2nbvz+vR+fxh0Yut/TtvXJFqXiXrHZoLhQlIq9NQaf/WAIWHvrsWWK7tMxurShXffzG7SVlZVFNp+T5Ji3XnCCP2LyNDjCYSwX0M63u4fzEG1J4XInxqYEtV1E1GcZbUBuLy/qaNGR6BQNvuUgV2hcGeHaVABemO/STpNEjY1VxGPQlUVwBeIZgSECiqyVJxwajLucIp8GtUMh4aG4kOLZydtPNsh+eHPC+eO0esFp4dCmU5hRgpnt1C8tatA11u6UPHq4sIEiRQXnbdMhRUFMDezh5/xP4h+nrd3/t+9A/s37IeMo6upq1tcmIVcHKNlCkVNggm5foPpQrOlJFlLCher4rZy0JLudYOeXiu/2w3MgrL8dL13fHgmEi9xhkZ7i+vOyVCdSTKXnrPYKN3tDaUMe3GYOHYhfBy9oLfdeHoHBqIg2v/Ad47Cb+zx0TWFdVxKiksRvVnUtuPi2NvwLSRA9X7qKiuwC0bbkF8QTx23rIT3s7NTFCgatu/3guEDgDmNjOj0xbwaCuJlakdDGVoeUtjEgmL6byjc+3o5TxRN8lQTVhKfpnQy9zYz4xZWJp0GAP4dYJz5Gj8NMxIbUUagrJA/34WaNsDeOwADKLrRMDJFeh3q3GKqhoZNnaUApV2v5q8Oi28WQ57SP2UzJnr+4QIz86bf53F+bRCURtk/8Us/PnYaPg01h+pAaiT+J097xTPkzodEsaOSD8f3fIK0C0lMzEVHS5I4Y2u99QVEZTxcfERCzEidARKqkrQK0B3rN9gSFMTv0fqJdV7JkwCpXA6uTVYZNBodJ9i0t3L9UKoazv1+Xnh15PC0CHe+/scEnNKccfw9mjv735FhtXibbGiqB8Vr6XU775hltMC0HVwXUft1Np+U69B3AIHBBRl49KxaHQe1AtbX/kQnQuzkOPui6sWaGe4kQFeWFEoPDuX8i413+gm3ZhfJyk80pqhMAoV9owYIT3XCPOSV2TdsWTsisk02Nj5YW+cWiNj1Gw/8ppQtlNIfyCkke7kY4yURGEolF1I402bJoT7qNK7nmrvSoCNHaVA8c2xzxl9t7MHhQlj55SqeSHFeuOzS/Dk6mNYes+Qlpc7p+uio0qkrJCMrCNL16BDbQ2S2rbHtRozaF1M6jBJLC2GhMlleaYV4ZERZSpDylycWSe6cl8bOgWf29uJFg8TPt4pSiRQ2O3O4e1F8befDlwWCzl3qFrtoPZt0NbTRRhEqw9LqbBv3tjLsAKJZsarjTeSwruiY0I0YjZuQW1NLdpv/k28VvXI0/D2u7KlxyfjP4G/m79WHagm03e2tBijL5u1Q33ddDC2q2Ts7I7JxAvXdW90N9T09XB8rijaSca3UTn9G3D4W2ncb8zYsdLWRUpCeb6mZrJkyRJ06NABrq6uGDZsGA4dOoRWSWVZXSVmQIiUO7WVQlb3jeqIdY+OgquTPXZeyMQHmxpuL6APCiMcSTuCPLq5kxizk2TsVFy8hJhDJ7H+qdfw552PY/0tcxG1QSqaZk4cN/8tHqsm1ml1TM5DO6W017ChsHrKC6VWEVmxxt/3nk+BHe+hZ815LLt3KLxcHNW1oF68rruoUPzVHYPQP9xXND4kqdmF9CKsOpQo0uplQ4dCsXeOMGGNEQNYdHQR1sWsEw0961M7eJh4tN/6L9IefghONdW42LEPxtQTLMv0adsHoZ6hxhHMKzCEYFE0ynmM7izpdk4nF6jbLeiDBMkkA5ArJjfaYqWpUFo3tYogjYuh5MRJzUOZJmNXa2zlqgVYs2YN7rrrLnz11VfC0Pn000+xdu1anD9/HoGBjaejFhQUwMfHB/n5+fD2bma83Bg3mKpywMVb6lrcXEjgvO9zYMTjwKR3xaqUvFIk5pRgWKTktl1/IgVPrjomnr81rRfuauJNI7MkE1evvVpoXg7dfgg1Z2MQP3s2qp2cUV1dA2cNoSWl4Fa8/RGGzjKC98QAzu4+ArsH7xS1ddpt2Qb/doalIxdVFIkwgm8Dqd2KgXQIqAW8TaQfSDwEfH+tpNehwoLGZOOzQHkBcOPnIjvrXFoBnv/1JHoEe2PBzD4i1CBDQxOVxD+ekIejCXkoLq+Cu4uD6HU1vX87rW3NDV0D1/56Laprq/Hn9D8R6ROp8zyUSfcORLdVPyGkU8MZNFQDKjo7uulh1UYy9Vol1El865tA2klg7i61ETh9yV5RfLNvmA9WPjgcni66Axxf7rgoJoT0+j9PjbGYLkyrFcYnPQE7e+CZs2otktGprZUMxOb2wzIzht6/rePTNMLHH3+MBx98EPfeK6VyktGzceNGLF26FC++aECpaxNy8Og3KCzJRv9u0xFAYi+KeGRG4/j5P+Dl7o9hA+dKG0Ytw+FdbyO/4xj0ueELBHlI7nk5Tdrd0R0j29V19T2WcQzZpdno5d8LIZ4h6nTwwzUFcHF3xxhqNUAkRSEzZT8KPdogsXAswr3CcWN3b1T3v4SfLp3C21ujUVk9C+18XeGdexqp+VFIdvZEG7/haOvaDvbV5fBO3YKT5XEo8B+A3r6jkFwSiwBHfzjV1mL//oM4mOmJG6k1VGUFKKKdFRaK/L5jYXf2NCLjTwOvP4fDx/5Bbdv2KPWou0H75kg30nzfXqi1l05F19J0uJamodzFH6UeUjYZ4ZNzEnaoRYFvD9TYS8agS2km3EpTUOHcBiWe0k0k/59NoB7meZ0i0DfATXtGRFkaXiHahfliNuPTS3/g+7RdmNt3Lp4Y8ASQl4jzsf8g0a4K7SOvRZc2Ulf06pjN2J5+RMzIxneeCkc65oIUxMZsRLybJ8KDB6KbXzf1rrdclqrYjgkbAxcHSaMSlx+Hi3kXxSy+p39dSve2hG3iRjcydKTohk0kFCSIbJ8g9yAx85d2+gZ2RX2Jiu7XY9jkRUIYS58rKTUK5xyAgOD+kuaD+qud/xt78i+gLLgPhoQOl3RKGdFISz6M0/ZVaBPcD4OCBkmDW/Rf2J8fi+KgHhhY7QA/MnR8I5BRkoGTmSfF/x0SXPe9HUo9JETe/dr2Q1t3abZM5yOdl57OnhgeQgUJJIQXsDwPvQN6I5jE944uyCvPx5Hk3XBLP4v1V3cAKIPJ3k5kxWVlnkWPikq0C+iBwPChGN7FHfaep+GcfhZjPTsAHUaLbem4MrKi0a20BOH+3YH2I4SXZV/KPjikn8FVnh2lTtgeATiTfQapGWfRqaQAHf26Ah3HoKyqDHuS98Au4yyu8egAhA8VGo9zOeeQlHkGHYty0alNZyByPCprKrEzcSeQcQ5XuYfBObA7Hh/wuNDYRDr5AmfXS9k11NiRJE+jBiLK1R2eZSXI8vavM3SopkocZTC6SoJOmaQjKMu7jGeTNmJf5nH8OvVXRLoFimrA0aXpSA7oKAyqSN9IIOUYKnPisLO2WNzwro64GvZHfgC2vY0Lg25HQper0N67fd15W1ON7YmSh3Vc+Dh18UI6D+l8DPMKQ3e/Ou/C1stbRabi6HajReai5nlLYw2NOTLbE7YLg0/zvE0sSMT53PMIdA9E37Z14ZldSbuEGHtoyFC1CDu5KFkYdwFuAVpapb3Je1FaVYrBQYPVE5C04jRRJ8vXxReDg+t0SQdSD4jJyoDAASIUKBujJ9IPwjv2bwwtygUSD4rz4/CFP3F7l+Nwy3PD/qReePDHI5g1xAdZiWvgAXuEhN2CKmdvFJRV4ec9qzHYOw5zBoxVGzpijD3+PVxrajC6333qlOrjcZuRlXwE3f17IqyHlAVGOqyDx7+Hc1UFxva9R52KferyDqQn7kdXvy6I6HmTWCeftzSBpN9T5mz2WaQUpaCTbyd09OkodEjlji7YHf8v4BOGCdWOUl+qiOE4X5GLxMJEdHD0Quf8dJHsUtVhFHYkSmL1q2qc4UDnX9gQxFQX4XLBZYQ7eqEbbeviidrIq0SGLRVGHbv2UTiT9uuBLbhUECfO8/pjFm1LE5JR7UbBzVEaa2mfVAmctGx0vcvQtTMsZJj6fLIEVm/sVFRUICoqCvPnz1evo+yHCRMmYP9+3Wlz5eXlYpEhi1C2EI3N+wc+x3n7anxS4YARg6U+Q1Gn/sIzF35CtxoH/NhZJaD164ePvUNwIjca78XtV5/wJzNO4sktTyLCKwK/TP1Fvd/P932OA2kH8Prw1zE5UmrZQIP0k/FbEBjUDetHv0IfCNj6Mb7O2ocdHm54fkglZnaZKW78kWdex7l2wXCsOoo3f5Ni0W86/oBTQWexydMd5QdiUZk7CgHIwxr35/FpeAhqk/9CccyrYtv5jr642XEbvj/xJZZUzUSwTxgiC1IR0TcTfTsmw+65VSgpr8Huux5Gh8tngTV/C+m15txI7nnthl+1vjNaX39bualA/UtF3oe7xiMlL3fyP4SC5BipczhxYiPw30tA18nALI32EGsfh3dtAar92+CqtldJ58CZzVi9922s8fbCXUUFeHTAo2LTsnXP4Ulv6R23+Y+QBvdzO/H79rewzMcLN4eOx7zx76t3/eQ/T4rHjTM2qgfhDWc3iKrNN3a6ES8NqxOqPvfvcyitLsVvU39DOy/pPPn33L/45OgnuDbiWrw9+m3VFxCO+Z6+yE09iBWpsejUphOw93tsj16NBQF+UnbQuIVSIcKf7sAbocFIcXLEdxO/kwaf/cux5+RSvNbWX9xIFl+zWDJ2froD74YE4pKzMxZfvRiD790t3u5g3E68sPsF8X9pHzIL9ywUBsRHYz/C6LDRYt2x1GN4cvuT6OzbGT9f/7N620/3fYqjGUfx9si3cW2Ha8WvdjrzNJ7c/CTaVdXgt+QU4IGtQNtuWHJgCfam7MXLWTmYGjIamL0UMTkxeHLTk/CvATYmJgF3/QW0G4BvD38rBtx52bm4OWAAcOtqcaOl792jlgbjJODWNUJ7sOzIMmyM24hHc/Nwl2c34O4/kVWSJbZ1qAX20razlwljZcWxFSJD7768Asx1bgc8sFncuOTfc9flJDhP+wI397wZaA8UxB0Bfr5D8oRRKFM+F0e6we58BiIeuRcebX2lcys9WnzXIkX3SUlEL9jyf6g9vxG1vcagurQa/nb+KEiNFdv+HNAW6zxc8EDvB/BA3weAHUuQf3otnoyQzpM9c/bA0a09kJeDX1KOY2XsOtzR4w5hjIlrpLpCfeybb9osGcgA1p1eh6Wnl2JWl1l4bkidXvDpTU8LA2bD9A0IUKUQbzy7EV+c+AJTOk7BqyOkMYB4/r/nUVxVjLU3rEW4t9QW4N/z/+LjqI9xTcQ1eHe05F0mXt7yMrLLsvHTdT+hi59kiO24uAPvHnwXo0JH4f/G/5962ze2vyEMoW+u/UZtMO2N34tX972KgYED8cWEL9TbvrfzPVEKY9FVi4QhRRxOOoxnd72IXm074fvrXwHa9BLj4cJ9n+J0WTpe9w/HsYJO2BudiAPxu+AW8QsiKypQvsMD52uliVNE2D8465GD2sQ4FBRMF+vOZJ3Bk8e+Q2hlFX73HgiES0bXl/sXY3dBDObXtsG0dleJdRdzL+LJo9+gTXU1/nHvAUSOE+u/O/glNuecwjNV7rglTDJ4kwuTxW/k5uCG7bfUhf6XH12O9RfX45F+j4iyGZixAtkVBXhynZRAcKDUG8g4C9z8E1blHsMvF37BPaHj8fD+n4GgPii58zf1b7+jKhiulKU281v8VhKH5dHLcUvIWDxzYCXg1xm1c7ert/0nYADaFBUDhYVYf3o9vjn1DaZ1nob5Q+vus8/++yzKq8ux7sZ16gn3puhN+OzYZ0IH+ebIuorKL25+ET9N/gmBdN4bGfm+3WiQqtbKSU5Opk9Yu2/fPq31zz33XO3QoUN1/p/XX39d/B9eeOGFF1544QVWvyQmJjZoK1i9Z6c5kBdo3ry6VD6qhZGTkwN/f3+jVgAmizM8PByJiYmW0wKZGFv/jLb++Qj+jNaPrX8+gj+j9VNggs9HHp3CwkKEhjasYbR6YycgIAAODg5IT5eaAcrQ38HBdTUWNHFxcRGLJr6+phOm0o9qiydua/qMtv75CP6M1o+tfz6CP6P1423kz0cC5caw+hxFZ2dnDBo0CFu3btXy1NDfI0aMsOixMQzDMAxjeazes0NQSOruu+/G4MGDMXToUJF6XlxcrM7OYhiGYRim9WITxs4tt9yCzMxMvPbaa0hLS0P//v2xadMmBAVZtroqhcpef/31K0JmtoStf0Zb/3wEf0brx9Y/H8Gf0fpxseDns4miggzDMAzDMDar2WEYhmEYhmkINnYYhmEYhrFp2NhhGIZhGMamYWOHYRiGYRibho0dE7JkyRJ06NABrq6uohv7oUOHYI0sWLAAQ4YMgZeXl+giP336dNFRXpPx48eL6tOay8MPPwxr4Y033rji+Lt3r2uOWFZWhscee0xU2fb09MSsWbOuKGSpdOhcrP8ZaaHPZY2/4a5duzB16lRROZWO9Y8//tB6nXIvKEMzJCQEbm5uol9eTEyM1jZUOf32228XBc6osOj999+PoiLqrqb8z1hZWYkXXngBffr0gYeHh9jmrrvuQkpKSqO/+/vv1/VwU/JveM8991xx7Nddd53N/IaErmuSloULF1rFb7jAgPuDIeNnQkICpkyZAnd3d7Gf5557DlVVVUY7TjZ2TMSaNWtE/R9Kszt69Cj69euHSZMmISMjA9bGzp07xYl64MABbN68WQyyEydOFLWMNKHO86mpqerlww8/hDXRq1cvrePfs6euqeMzzzyDv/76C2vXrhXfB91QZs6cCWvi8OHDWp+Pfkti9uzZVvkb0vlH1xVNKnRBx75o0SJ89dVXOHjwoDAI6BqkgVeGbpJnzpwR38WGDRvEjWnu3Lmwhs9YUlIixpZXX31VPP7+++/iJnPjjTdese1bb72l9bs+8cQTsIbfkCDjRvPYV61apfW6Nf+GhOZno2Xp0qXCmCGDwBp+w50G3B8aGz+rq6uFoUONvfft24cff/wRy5YtE5MVo2HMppxMHdSE9LHHHlP/XV1dXRsaGlq7YMGCWmsnIyNDNF7buXOnet24ceNqn3rqqVprhZrD9uvXT+dreXl5tU5OTrVr165Vr4uOjhbfwf79+2utFfq9OnXqVFtTU2P1vyH9FuvWrVP/TZ8pODi4duHChVq/o4uLS+2qVavE32fPnhX/7/Dhw+pt/vnnn1o7OzvRYFjpn1EXhw4dEttdvnxZva59+/a1n3zySa3S0fX57r777tpp06bp/T+2+BvS57366qu11lnLb6jr/mDI+Pn333/X2tvb16alpam3+fLLL2u9vb1ry8vLa40Be3ZMAFmnUVFRwm0uY29vL/7ev38/rJ38/Hzx6Ofnp7V+xYoVoldZ7969RbNVmnlaExTiIFdzZGSkmC2SW5Wg35JmK5q/J4W4IiIirPb3pHP0559/xn333afV/Nbaf0OZuLg4UWBU8zej/jkUTpZ/M3qksAdVXpeh7ela/f/27jumqe6NA/jxdaL4ooh7IC6iURQ0MbgjBsXEGRduFFQURxxx78ToHxpHolFjcMYRFf3DgQviHiiKxJFAwJEQZyTueX75Pr/3Nm0pQylJ7/X7SZrS3vb2Xk7vPU+f85wWmSCzHptoT+ff+sOQB4YQgoODZXjEncMDJS05OVmGNQIDA1VsbKx68+aNbZnV2hBDOydOnJChOGdmacNcp/6hKOdPXGM41v6LgJGFxQ+HImvnDpb4BmVP8/r1a0nLOX+DM24/evRImRl+d2zGjBmqY8eO0iEahg8frvz9/SVYSEtLk1oCpNSRWjcDdIJIm+KEihTx8uXLVefOnVV6erp0mvgNNucOBO2JZWaEuoF3795JTYRV2tCe0S6ujkFjGa7RidorU6aMnKTN2K4YnkObRUZGOvzI4rRp01RISIjsF4YIEMTiPb5u3Trl6TCEheGOgIAAlZmZqRYsWKAiIiKkc8QPQFutDTF8g9oX5yFys7ThLxf9Q1HOn7h2daway9yBwQ79FozNIgCwr2cB+zFyROgoCg0LC5MTVOPGjZWnwwnUEBQUJMEPOv5Dhw5JcavV7NixQ/YZgY1V2vBvhk/OQ4YMkaLsLVu2OCxD7aD9exsdz8SJE6Ww1NN/lmDYsGEO70lsP96LyPbgvWk1qNdBVhmTWszYhlPy6R88AYexSgCGAfCpw7naHLdr1aqlzCouLk4KAJOSklS9evUKfCyCBcjIyFBmhE8hzZo1k+1Hm2HYB5kQK7TnkydP1Llz51R0dLRl29Bol4KOQVw7TxjA0ABm95ipXY1AB+2KAlH7rE5+7Yr9zM7OVmaDIWacX433pFXaEC5duiSZ1MKOS09tw7h8+oeinD9x7epYNZa5A4OdEoCou23btur8+fMO6T3cDg0NVWaDT4t4IyckJKgLFy5ISrkwd+/elWtkB8wIU1eR0cD2oy3Lli3r0J44KaGmx4ztGR8fL6l/zH6wahviPYqTpH2bYfwfdRxGm+EaJ2DUFBjw/saxagR6Zgl0UG+GABY1HYVBu6KmxXn4xwyeP38uNTvGe9IKbWifbcW5BjO3zNSGupD+oSjnT1zfv3/fIXA1AvcWLVq4bUOpBBw4cEBmfuzcuVNmDEyYMEFXqVLFodrcLGJjY7WPj49OTk7WOTk5tsunT59keUZGhl6xYoVOSUnRWVlZ+vjx47pRo0a6S5cu2ixmzZol+4ftv3Lliu7Ro4f28/OTmQUwadIk3aBBA33hwgXZz9DQULmYDWYFYj/mzp3rcL8Z2/D9+/c6NTVVLjiVrVu3Tv42ZiKtXr1ajjnsS1pamsxyCQgI0J8/f7ato1evXjo4OFjfuHFDX758WTdt2lRHRkZqM+zjt2/fdN++fXW9evX03bt3HY5NYwbL1atXZRYPlmdmZuq9e/fq6tWr69GjR2tP3z8smz17tszYwXvy3LlzOiQkRNroy5cvlmhDQ25urq5YsaLMQHLm6W0YW0j/UJTz548fP3TLli11eHi47Ofp06dlH+fPn++27WSwU4I2bdokDVyuXDmZin79+nVtRjhAXV3i4+Nl+dOnT6VT9PX1lQCvSZMmes6cOXIAm8XQoUN17dq1pa3q1q0rtxEAGNBBTp48WVetWlVOSgMGDJAD2mwSExOl7R4/fuxwvxnbMCkpyeX7EtOVjennixcv1jVr1pR9CgsLy7Pfb968kY7R29tbprlGRUVJ52SGfUQAkN+xiefB7du3dfv27aUzqlChgm7evLletWqVQ7DgqfuHzhKdHzo9TF3G9OuYmJg8HxjN3IaGrVu3ai8vL5mm7czT21AV0j8U9fyZnZ2tIyIi5P+AD5r4APr9+3e3bWep/zaWiIiIyJJYs0NERESWxmCHiIiILI3BDhEREVkagx0iIiKyNAY7REREZGkMdoiIiMjSGOwQERGRpTHYISIiIktjsENEbjN27FjVv39/9bcZNWqUWrVqle12w4YN1fr16397PadPn1Zt2rSR33YiIvdhsENERVKqVKkCL8uWLVMbNmxQO3fu/KsCrnv37qmTJ0+qadOmFXtdvXr1kh9N3Ldvn1u2jYj+r8x/10REBcrJybH9ffDgQbVkyRL59WKDt7e3XP42mzZtUoMHDy72vuMXzBHoIFjbuHGjZIuIyD2Y2SGiIqlVq5bt4uPjI9kc+/vQ2TtnVbp166amTp2qZsyYoapWrapq1qyptm/frj5+/KiioqJU5cqVVZMmTdSpU6ccXis9PV1FRETIOvEcdPyvX7+2LT98+LBq1aqV8vLyUtWqVVM9evSQdSK7tGvXLnX8+HFbxik5OVme8+zZMzVkyBBVpUoV5evrq/r166eys7Nt6zS2ffny5ap69erq33//VZMmTVLfvn3L93/y8+dP2ZY+ffrkWfbp0yc1btw42ccGDRqobdu22ZbhdbFtCBq7du2qKlSoYMvmYF0pKSkqMzPzj9uKiBwx2CGiEoXgw8/PT928eVMCn9jYWMmEdOjQQd25c0eFh4dLMIPgAN69e6e6d++ugoODpdNHHcuLFy8kUDEyTJGRkRJIPHz4UIKZgQMHKvym8ezZs+VxGA7C43DB6yBr0rNnTwk8Ll26pK5cuSKBFB5nH8ycP3/ets79+/ero0ePSvCTn7S0NJWbm6vatWuXZ9natWvl/tTUVDV58mTZb/tMGMybN09Nnz5dXhPbBwiMEOBhO4nITdz2++lE9NeIj4/XPj4+ee4fM2aM7tevn+12165ddadOnWy3f/z4oStVqqRHjRpluy8nJ0fjVHTt2jW5vXLlSh0eHu6w3mfPnsljHj9+rG/fvi1/Z2dnu9w2522APXv26MDAQP3r1y/bfV+/ftVeXl46MTHR9jxfX1/98eNH22O2bNmivb299c+fP12+VkJCgi5durTDesHf31+PHDnSdhvLa9SoIeuDrKws2Yf169e7XG9wcLBetmyZy2VE9PtYs0NEJSooKMj2d+nSpWXYCUNQBmQx4OXLl7aC36SkJJc1MBjaQSYoLCxM1oFsCG4PGjRIhsnyg3VmZGRIZsfely9fHIaLWrdurSpWrGi7HRoaqj58+CBDYP7+/nnW+/nzZ1W+fHkZkipov40hP2MfDa4yQoDhOSPTRUTFx2CHiEoUim7toeO3v88IFIzp1gguULeyZs2aPOuqXbu2BExnz55VV69eVWfOnJEC4YULF6obN26ogIAAl9uAdbZt29blLCfU5/wpDM8hKMFQWLly5Qrdb+cp5ZUqVXK53rdv3xZru4jIEYMdIvIoISEh6siRI/JdNWXKuD5FIXDo2LGjXDArDFmXhIQENXPmTAk6UDjsvE4UA9eoUUMKjwvKACFbg8wKXL9+XTJM9evXd/l4fCcOPHjwwPZ3cRnZJtQsEZF7sECZiDzKlClTJLOBIuRbt25Jx5+YmCiztxDEIIODL/BD8fLTp0+liPjVq1eqefPm8nwESSgcRjEwZnChOHnEiBGShcEMLBT+ZmVlSREyvhvn+fPnttdGhmb8+PESvOC7c5YuXari4uLUP/+4PlUi+4JA6vLly27bfwRYGBrDEBoRuQeDHSLyKHXq1JHZUghsUI+D2hxMXceUcQQdyMxcvHhR9e7dWzVr1kwtWrRIZj5hqjrExMSowMBAqYdBMIJ1oQ4Hz8FMJ8zcQmCEoAZZFPtMD2qBmjZtqrp06aKGDh2q+vbtK9PZCxIdHe3WLwHELDAEZ/a1Q0RUPKVQpVzMdRARmR6+ZwfT3o8dO/Zbz8OwF4IrDJMVNxuDTBTWhaxVfvVHRPT7mNkhIioG1Pfs3r3b4UsP/xS+bHDz5s0MdIjcjAXKRETFhG+KdgcMveU3HZ2I/hyHsYiIiMjSOIxFRERElsZgh4iIiCyNwQ4RERFZGoMdIiIisjQGO0RERGRpDHaIiIjI0hjsEBERkaUx2CEiIiJlZf8DJ1fUHTzJqoIAAAAASUVORK5CYII=", "text/plain": [ "

" ] @@ -252,6 +313,7 @@ "start_hour = 0\n", "end_hour = 200\n", "total_time_steps = model.prob.get_val(\"h2_storage.hydrogen_soc\").size\n", + "print(total_time_steps)\n", "demand_profile = [\n", " model.technology_config[\"technologies\"][\"h2_storage\"][\"model_inputs\"][\"control_parameters\"][\n", " \"demand_profile\"\n", @@ -271,25 +333,25 @@ " range(start_hour, end_hour),\n", " model.prob.get_val(\"h2_storage.hydrogen_in\", units=\"t/h\")[start_hour:end_hour],\n", " linestyle=\"-\",\n", - " label=\"H$_2$ In (kg)\",\n", + " label=\"H$_2$ Produced (kg)\",\n", ")\n", "ax[1].plot(\n", " range(start_hour, end_hour),\n", - " model.prob.get_val(\"h2_storage.hydrogen_curtailed\", units=\"t/h\")[start_hour:end_hour],\n", + " model.prob.get_val(\"h2_storage.hydrogen_unused_commodity\", units=\"t/h\")[start_hour:end_hour],\n", " linestyle=\":\",\n", - " label=\"H$_2$ Curtailed (kg)\",\n", + " label=\"H$_2$ Unused (kg)\",\n", ")\n", "ax[1].plot(\n", " range(start_hour, end_hour),\n", - " model.prob.get_val(\"h2_storage.hydrogen_missed_load\", units=\"t/h\")[start_hour:end_hour],\n", + " model.prob.get_val(\"h2_storage.hydrogen_unmet_demand\", units=\"t/h\")[start_hour:end_hour],\n", " linestyle=\":\",\n", - " label=\"H$_2$ Missed Load (kg)\",\n", + " label=\"H$_2$ Unmet Demand (kg)\",\n", ")\n", "ax[1].plot(\n", " range(start_hour, end_hour),\n", " model.prob.get_val(\"h2_storage.hydrogen_out\", units=\"t/h\")[start_hour:end_hour],\n", " linestyle=\"-\",\n", - " label=\"H$_2$ Out (kg)\",\n", + " label=\"H$_2$ Delivered (kg)\",\n", ")\n", "ax[1].plot(\n", " range(start_hour, end_hour),\n", @@ -315,7 +377,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3.11.13 ('h2i_env')", + "display_name": "native-ard-h2i", "language": "python", "name": "python3" }, @@ -329,12 +391,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.13" - }, - "vscode": { - "interpreter": { - "hash": "e55566d5f9cb5003b92ad1d2254e8146f3d62519cfa868f35d73d51fb57327c6" - } + "version": "3.12.11" } }, "nbformat": 4, diff --git a/examples/14_wind_hydrogen_dispatch/inputs/h2i_wind_to_h2_storage.yaml b/examples/14_wind_hydrogen_dispatch/inputs/h2i_wind_to_h2_storage.yaml index 0f3cd0cd5..8aee94ed6 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/h2i_wind_to_h2_storage.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/h2i_wind_to_h2_storage.yaml @@ -1,5 +1,4 @@ name: "H2Integrate_config" - system_summary: "This reference hybrid plant is located in Minnesota and contains wind, electrolysis, and hydrogen storage technologies." driver_config: "driver_config.yaml" diff --git a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml index 5f5097bd9..4e5eea316 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml @@ -21,6 +21,7 @@ site: resource_model: "wind_toolkit_v2_api" resource_parameters: resource_year: 2012 + # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. @@ -66,9 +67,14 @@ finance_parameters: cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 finance_subgroups: - elec: + electricity: commodity: "electricity" + technologies: ["wind"] + all_hydrogen: + commodity: "hydrogen" + commodity_stream: "electrolyzer" #use all hydrogen from the electrolyzer controller in finance calc technologies: ["wind", "electrolyzer", "h2_storage"] - h2: + dispatched_hydrogen: commodity: "hydrogen" + commodity_stream: "h2_storage" #use only dispatched hydrogen from h2_storage controller in finance calc technologies: ["wind", "electrolyzer", "h2_storage"] diff --git a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml index 37f04a537..134d4598b 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml @@ -68,16 +68,16 @@ technologies: model: "demand_open_loop_controller" model_inputs: shared_parameters: - resource_name: "hydrogen" + commodity_name: "hydrogen" performance_parameters: - rating: 720. # electrolyzer rating for sizing + electrolyzer_rating_mw_for_h2_storage_sizing: 720. # electrolyzer rating for sizing size_capacity_from_demand: flag: False # If True, then storage is sized to provide steady-state storage capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] days: 10 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) control_parameters: - resource_rate_units: "kg/h" + commodity_units: "kg/h" max_capacity: 60000.0 # kg max_charge_percent: 1.0 # percent as decimal min_charge_percent: 0.1 # percent as decimal @@ -86,4 +86,4 @@ technologies: max_discharge_rate: 10000.0 # kg/time step charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal - demand_profile: 5000 # Example: 10 time steps with 5000 kg/time step demand. Scalar indicates constant demand, array-like indicates dynamic demand + demand_profile: 5000 # constant demand of 5000 kg per hour (see commodity_units) diff --git a/examples/18_pyomo_heuristic_dispatch/driver_config.yaml b/examples/18_pyomo_heuristic_dispatch/driver_config.yaml new file mode 100644 index 000000000..72d2e368a --- /dev/null +++ b/examples/18_pyomo_heuristic_dispatch/driver_config.yaml @@ -0,0 +1,5 @@ +name: "driver_config" +description: "This analysis runs a hybrid plant to meet an electrical load." + +general: + folder_output: outputs diff --git a/examples/18_pyomo_heuristic_dispatch/plant_config.yaml b/examples/18_pyomo_heuristic_dispatch/plant_config.yaml new file mode 100644 index 000000000..65d70216d --- /dev/null +++ b/examples/18_pyomo_heuristic_dispatch/plant_config.yaml @@ -0,0 +1,84 @@ +name: "plant_config" +description: "This plant is located in TX, USA..." + +site: + latitude: 35.2018863 + longitude: -101.945027 + + # array of polygons defining boundaries with x/y coords + boundaries: [ + { + x: [0.0, 1000.0, 1000.0, 0.0], + y: [0.0, 0.0, 100.0, 1000.0], + }, + { + x: [2000.0, 2500.0, 2000.0], + y: [2000.0, 2000.0, 2500.0], + } + ] + + resources: + wind_resource: + resource_model: "wind_toolkit_v2_api" + resource_parameters: + resource_year: 2012 + +plant: + plant_life: 30 + +# array of arrays containing left-to-right technology +# interconnections; can support bidirectional connections +# with the reverse definition. +# this will naturally grow as we mature the interconnected tech +technology_interconnections: [ + ["wind", "battery", "electricity", "cable"], +] + +# array of arrays containing left-to-right technology, technology doing the dispatching +# in this case, battery is connected to battery because there are controls rules for +# the battery and battery is controlling the dispatching +tech_to_dispatch_connections: [ + ["wind", "battery"], + ["battery", "battery"], +] + +resource_to_tech_connections: [ + # connect the wind resource to the wind technology + ['wind_resource', 'wind', 'wind_resource_data'], +] + +finance_parameters: + finance_groups: + commodity: "electricity" + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # p-tax https://www.house.mn.gov/hrd/issinfo/clsrates.aspx # insurance percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" - MACRS may be better and can reduce LCOH by more than $1/kg and is spec'd in the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depr_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + target_dollar_year: 2022 + finance_subgroups: + all_electricity: + commodity: "electricity" + commodity_stream: "wind" # use all electricity generated from wind in finance calc + technologies: ["wind", "battery"] + dispatched_electricity: + commodity: "electricity" + commodity_stream: "battery" #use only dispatched electricity from battery in finance calc + technologies: ["wind", "battery"] diff --git a/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch.yaml b/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch.yaml new file mode 100644 index 000000000..af7329de0 --- /dev/null +++ b/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "This hybrid plant contains wind and battery storage technologies. The system is designed to meet a specific electrical load." + +driver_config: "driver_config.yaml" +technology_config: "tech_config.yaml" +plant_config: "plant_config.yaml" diff --git a/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch_error_for_testing.yaml b/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch_error_for_testing.yaml new file mode 100644 index 000000000..2166eb61d --- /dev/null +++ b/examples/18_pyomo_heuristic_dispatch/pyomo_heuristic_dispatch_error_for_testing.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "This hybrid plant contains wind and battery storage technologies. The system is designed to meet a specific electrical load." + +driver_config: "driver_config.yaml" +technology_config: "tech_config_error_for_testing.yaml" +plant_config: "plant_config.yaml" diff --git a/examples/18_pyomo_heuristic_dispatch/run_pyomo_heuristic_dispatch.py b/examples/18_pyomo_heuristic_dispatch/run_pyomo_heuristic_dispatch.py new file mode 100644 index 000000000..642dd03a7 --- /dev/null +++ b/examples/18_pyomo_heuristic_dispatch/run_pyomo_heuristic_dispatch.py @@ -0,0 +1,78 @@ +import numpy as np +from matplotlib import pyplot as plt + +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +# Create an H2Integrate model +model = H2IntegrateModel("pyomo_heuristic_dispatch.yaml") + +demand_profile = np.ones(8760) * 50.0 + + +# TODO: Update with demand module once it is developed +model.setup() +model.prob.set_val("battery.electricity_demand", demand_profile, units="MW") + +# Run the model +model.run() + +# Plot the results +fig, ax = plt.subplots(2, 1, sharex=True) + +start_hour = 0 +end_hour = 200 + +ax[0].plot( + range(start_hour, end_hour), + model.prob.get_val("battery.SOC", units="percent")[start_hour:end_hour], + label="SOC", +) +ax[0].set_ylabel("SOC (%)") +ax[0].set_ylim([0, 110]) +ax[0].axhline(y=90.0, linestyle=":", color="k", alpha=0.5, label="Max Charge") +ax[0].legend() + +ax[1].plot( + range(start_hour, end_hour), + model.prob.get_val("battery.electricity_in", units="MW")[start_hour:end_hour], + linestyle="-", + label="Electricity In (MW)", +) +ax[1].plot( + range(start_hour, end_hour), + model.prob.get_val("battery.unused_electricity_out", units="MW")[start_hour:end_hour], + linestyle=":", + label="Unused Electricity (MW)", +) +ax[1].plot( + range(start_hour, end_hour), + model.prob.get_val("battery.unmet_electricity_demand_out", units="MW")[start_hour:end_hour], + linestyle=":", + label="Unmet Electrical Demand (MW)", +) +ax[1].plot( + range(start_hour, end_hour), + model.prob.get_val("battery.electricity_out", units="MW")[start_hour:end_hour], + linestyle="-", + label="Electricity Out (MW)", +) +ax[1].plot( + range(start_hour, end_hour), + model.prob.get_val("battery.battery_electricity_discharge", units="MW")[start_hour:end_hour], + linestyle="-.", + label="Battery Electricity Out (MW)", +) +ax[1].plot( + range(start_hour, end_hour), + demand_profile[start_hour:end_hour], + linestyle="--", + label="Eletrical Demand (MW)", +) +ax[1].set_ylim([-7e2, 7e2]) +ax[1].set_ylabel("Electricity Hourly (MW)") +ax[1].set_xlabel("Timestep (hr)") + +plt.legend(ncol=2, frameon=False) +plt.tight_layout() +plt.savefig("plot.png", dpi=300) diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml new file mode 100644 index 000000000..7b1307331 --- /dev/null +++ b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml @@ -0,0 +1,77 @@ +name: "technology_config" +description: "This hybrid plant produces hydrogen" + +technologies: + wind: + performance_model: + model: "wind_plant_performance" + cost_model: + model: "wind_plant_cost" + dispatch_rule_set: + model: "pyomo_dispatch_generic_converter" + resource: + type: "pysam_wind" + wind_speed: 9. + model_inputs: + shared_parameters: + num_turbines: 100 + turbine_rating_kw: 8300 + performance_parameters: + rotor_diameter: 196. + hub_height: 130. + layout_mode: "basicgrid" + model_name: "pysam" + model_input_file: null + layout_params: + row_D_spacing: 10. + turbine_D_spacing: 10. + rating_range_kw: [1000, 5000] + floris_config: null + operational_losses: 10.0 + timestep: [1, 60] + fin_model: "default" + name: "UtilityScaleWindPlant" + turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use + turbine_group: "onshore" + override_wind_resource_height: False + adjust_air_density_for_elevation: True + cost_parameters: + cost_per_kw: 1500.0 + cost_year: 2024 + dispatch_rule_parameters: + commodity_name: "electricity" + commodity_storage_units: "kW" + battery: + dispatch_rule_set: + model: "pyomo_dispatch_generic_storage" + control_strategy: + model: "heuristic_load_following_controller" + performance_model: + model: "pysam_battery" + cost_model: + model: "atb_battery_cost" + model_inputs: + shared_parameters: + max_charge_rate: 100000 + max_capacity: 500000 + n_control_window: 24 + n_horizon_window: 48 + init_charge_percent: 0.5 + max_charge_percent: 0.9 + min_charge_percent: 0.1 + system_commodity_interface_limit: 1e12 + performance_parameters: + system_model_source: "pysam" + chemistry: "LFPGraphite" + cost_parameters: + cost_year: 2022 + energy_capex: 310 # $/kWh from 2024 ATB year 2025 + power_capex: 311 # $/kW from 2024 ATB year 2025 + opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB + control_parameters: + commodity_name: "electricity" + commodity_storage_units: "kW" + tech_name: "battery" + dispatch_rule_parameters: + commodity_name: "electricity" + commodity_storage_units: "kW" diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml new file mode 100644 index 000000000..e1f648f93 --- /dev/null +++ b/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml @@ -0,0 +1,77 @@ +name: "technology_config" +description: "This hybrid plant produces hydrogen" + +technologies: + wind: + performance_model: + model: "wind_plant_performance" + cost_model: + model: "wind_plant_cost" + dispatch_rule_set: + model: "pyomo_dispatch_generic_converter" + resource: + type: "pysam_wind" + wind_speed: 9. + model_inputs: + shared_parameters: + num_turbines: 100 + turbine_rating_kw: 8300 + performance_parameters: + rotor_diameter: 196. + hub_height: 130. + layout_mode: "basicgrid" + model_name: "pysam" + model_input_file: null + layout_params: + row_D_spacing: 10. + turbine_D_spacing: 10. + rating_range_kw: [1000, 5000] + floris_config: null + operational_losses: 10.0 + timestep: [1, 60] + fin_model: "default" + name: "UtilityScaleWindPlant" + turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use + turbine_group: "onshore" + override_wind_resource_height: False + adjust_air_density_for_elevation: True + cost_parameters: + cost_per_kw: 1500.0 + cost_year: 2024 + dispatch_rule_parameters: + commodity_name: "electricity" + commodity_storage_units: "kW" + battery: + dispatch_rule_set: + model: "pyomo_dispatch_generic_storage" + control_strategy: + model: "heuristic_load_following_controller" + performance_model: + model: "pysam_battery" + cost_model: + model: "atb_battery_cost" + model_inputs: + shared_parameters: + max_charge_rate: 100000 + max_capacity: 500000 + n_control_window: 24 + n_horizon_window: 48 + init_charge_percent: 0.5 + max_charge_percent: 0.9 + min_charge_percent: 0.1 + system_commodity_interface_limit: 1e12 + performance_parameters: + system_model_source: "pysam" + chemistry: "LFPGraphite" + cost_parameters: + cost_year: 2022 + energy_capex: 310 # $/kWh from 2024 ATB year 2025 + power_capex: 311 # $/kW from 2024 ATB year 2025 + opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB + control_parameters: + commodity_name: "electricity" + commodity_storage_units: "kW" + tech_name: "wrong_tech_name" + dispatch_rule_parameters: + commodity_name: "electricity" + commodity_storage_units: "kW" diff --git a/examples/19_wind_battery_dispatch/driver_config.yaml b/examples/19_simple_dispatch/driver_config.yaml similarity index 100% rename from examples/19_wind_battery_dispatch/driver_config.yaml rename to examples/19_simple_dispatch/driver_config.yaml diff --git a/examples/19_wind_battery_dispatch/plant_config.yaml b/examples/19_simple_dispatch/plant_config.yaml similarity index 100% rename from examples/19_wind_battery_dispatch/plant_config.yaml rename to examples/19_simple_dispatch/plant_config.yaml diff --git a/examples/19_wind_battery_dispatch/run_wind_battery.py b/examples/19_simple_dispatch/run_wind_battery.py similarity index 85% rename from examples/19_wind_battery_dispatch/run_wind_battery.py rename to examples/19_simple_dispatch/run_wind_battery.py index f11948668..b9f322991 100644 --- a/examples/19_wind_battery_dispatch/run_wind_battery.py +++ b/examples/19_simple_dispatch/run_wind_battery.py @@ -42,16 +42,16 @@ ) ax[1].plot( range(start_hour, end_hour), - model.prob.get_val("battery.electricity_curtailed", units="MW")[start_hour:end_hour], + model.prob.get_val("battery.electricity_unused_commodity", units="MW")[start_hour:end_hour], linestyle=":", - label="Electricity Curtailed (MW)", + label="Unused Electricity commodity (MW)", linewidth=2, ) ax[1].plot( range(start_hour, end_hour), - model.prob.get_val("battery.electricity_missed_load", units="MW")[start_hour:end_hour], + model.prob.get_val("battery.electricity_unmet_demand", units="MW")[start_hour:end_hour], linestyle=":", - label="Electricity Missed Load (MW)", + label="Electricity Unmet Demand (MW)", linewidth=2, ) ax[1].plot( diff --git a/examples/19_wind_battery_dispatch/tech_config.yaml b/examples/19_simple_dispatch/tech_config.yaml similarity index 89% rename from examples/19_wind_battery_dispatch/tech_config.yaml rename to examples/19_simple_dispatch/tech_config.yaml index 3d29c6a17..d58d76726 100644 --- a/examples/19_wind_battery_dispatch/tech_config.yaml +++ b/examples/19_simple_dispatch/tech_config.yaml @@ -42,18 +42,18 @@ technologies: model: "demand_open_loop_controller" model_inputs: shared_parameters: - resource_name: "electricity" - resource_rate_units: "kW" - max_charge_rate: 5000.0 # kW/time step + commodity_name: "electricity" + commodity_units: "kW" + max_charge_rate: 5000.0 # kW max_capacity: 30000.0 # kWh control_parameters: max_charge_percent: 1.0 # percent as decimal min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal - max_discharge_rate: 5000.0 # kW/time step + max_discharge_rate: 5000.0 # kW charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal - demand_profile: 5000 + demand_profile: 5000 # kW cost_parameters: cost_year: 2022 energy_capex: 300 # $/kWh diff --git a/examples/19_wind_battery_dispatch/wind_battery_dispatch.yaml b/examples/19_simple_dispatch/wind_battery_dispatch.yaml similarity index 100% rename from examples/19_wind_battery_dispatch/wind_battery_dispatch.yaml rename to examples/19_simple_dispatch/wind_battery_dispatch.yaml diff --git a/h2integrate/control/__init__.py b/h2integrate/control/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/control/control_rules/__init__.py b/h2integrate/control/control_rules/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/control/control_rules/converters/__init__.py b/h2integrate/control/control_rules/converters/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/control/control_rules/converters/generic_converter.py b/h2integrate/control/control_rules/converters/generic_converter.py new file mode 100644 index 000000000..b46146c5a --- /dev/null +++ b/h2integrate/control/control_rules/converters/generic_converter.py @@ -0,0 +1,78 @@ +import pyomo.environ as pyo +from pyomo.network import Port + +from h2integrate.control.control_rules.pyomo_rule_baseclass import PyomoRuleBaseClass + + +class PyomoDispatchGenericConverter(PyomoRuleBaseClass): + def _create_variables(self, pyomo_model: pyo.ConcreteModel, tech_name: str): + """Create generic converter variables to add to Pyomo model instance. + + Args: + pyomo_model (pyo.ConcreteModel): pyomo_model the variables should be added to. + tech_name (str): The name or key identifying the technology for which + variables are created. + + """ + setattr( + pyomo_model, + f"{tech_name}_{self.config.commodity_name}", + pyo.Var( + doc=f"{self.config.commodity_name} generation \ + from {tech_name} [{self.config.commodity_storage_units}]", + domain=pyo.NonNegativeReals, + units=eval("pyo.units." + self.config.commodity_storage_units), + initialize=0.0, + ), + ) + + def _create_ports(self, pyomo_model: pyo.ConcreteModel, tech_name: str): + """Create generic converter port to add to pyomo model instance. + + Args: + pyomo_model (pyo.ConcreteModel): pyomo_model the ports should be added to. + tech_name (str): The name or key identifying the technology for which + ports are created. + + """ + setattr( + pyomo_model, + f"{tech_name}_port", + Port( + initialize={ + f"{tech_name}_{self.config.commodity_name}": getattr( + pyomo_model, f"{tech_name}_{self.config.commodity_name}" + ) + } + ), + ) + + def _create_parameters(self, pyomo_model: pyo.ConcreteModel, tech_name: str): + """Create technology Pyomo parameters to add to the Pyomo model instance. + + Method is currently passed but this can serve as a template to add parameters to the Pyomo + model instance. + + Args: + pyomo_model (pyo.ConcreteModel): pyomo_model that parameters are added to. + tech_name (str): The name or key identifying the technology for which + parameters are created. + + """ + + pass + + def _create_constraints(self, pyomo_model: pyo.ConcreteModel, tech_name: str): + """Create technology Pyomo parameters to add to the Pyomo model instance. + + Method is currently passed but this can serve as a template to add constraints to the Pyomo + model instance. + + Args: + pyomo_model (pyo.ConcreteModel): pyomo_model that constraints are added to. + tech_name (str): The name or key identifying the technology for which + constraints are created. + + """ + + pass diff --git a/h2integrate/control/control_rules/pyomo_rule_baseclass.py b/h2integrate/control/control_rules/pyomo_rule_baseclass.py new file mode 100644 index 000000000..60788d151 --- /dev/null +++ b/h2integrate/control/control_rules/pyomo_rule_baseclass.py @@ -0,0 +1,151 @@ +import openmdao.api as om +import pyomo.environ as pyo +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig + + +@define +class PyomoRuleBaseConfig(BaseConfig): + """ + Configuration class for the PyomoRuleBaseConfig. + + This class defines the parameters required to configure the `PyomoRuleBaseConfig`. + + Attributes: + commodity_name (str): Name of the commodity being controlled (e.g., "hydrogen"). + commodity_units (str): Units of the commodity (e.g., "kg/h"). + """ + + commodity_name: str = field() + commodity_storage_units: str = field() + + +class PyomoRuleBaseClass(om.ExplicitComponent): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.config = PyomoRuleBaseConfig.from_dict( + self.options["tech_config"]["model_inputs"]["dispatch_rule_parameters"] + ) + + self.add_discrete_output( + "dispatch_block_rule_function", + val=self.dispatch_block_rule_function, + desc="pyomo port creation function", + ) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + """ + Return the Pyomo model elements for a given technology through the OpenMDAO + infrastructure. + + No computations are required for PyomoRuleClass children. All the work should be done in + setup via the dispatch_block_rule_function() method. + """ + + pass + + def dispatch_block_rule_function(self, pyomo_model: pyo.ConcreteModel, tech_name: str): + """ + Creates and initializes pyomo dispatch model components for a specific technology. + + This method sets up all model elements (parameters, variables, constraints, + and ports) associated with a technology block within the dispatch model. + It is typically called in the setup_pyomo() method of the PyomoControllerBaseClass. + + Args: + pyomo_model (pyo.ConcreteModel): The Pyomo model to which the technology + components will be added. + tech_name (str): The name or key identifying the technology (e.g., "battery", + "electrolyzer") for which model components are created. + """ + # Parameters + self._create_parameters(pyomo_model, tech_name) + # Variables + self._create_variables(pyomo_model, tech_name) + # Constraints + self._create_constraints(pyomo_model, tech_name) + # Ports + self._create_ports(pyomo_model, tech_name) + + def _create_parameters(self, pyomo_model, tech_name: str): + """Defines technology-specific Pyomo parameters for the given model. + + This abstract method should be implemented by subclasses to create and add + technology-specific Pyomo parameters (e.g., efficiencies, limits, or costs) + to the provided model instance. + + Args: + pyomo_model: The Pyomo model instance to which parameters will be added. + tech_name (str): The name or identifier of the technology for which + parameters are defined. + + Raises: + NotImplementedError: If the method is not implemented in a subclass. + """ + + raise NotImplementedError("This method should be implemented in a subclass.") + + def _create_variables(self, pyomo_model, tech_name: str): + """Defines technology-specific Pyomo variables for the given model. + + This abstract method should be implemented by subclasses to create and add + technology-specific Pyomo variables (e.g., efficiencies, limits, or costs) + to the provided model instance. + + Args: + pyomo_model: The Pyomo model instance to which variables will be added. + tech_name (str): The name or identifier of the technology for which + variables are defined. + + Raises: + NotImplementedError: If the method is not implemented in a subclass. + """ + + raise NotImplementedError( + "This method should be implemented in a subclass. \ + If no variables to add, simply use a pass function" + ) + + def _create_constraints(self, pyomo_model, tech_name: str): + """Defines technology-specific Pyomo constraints for the given model. + + This abstract method should be implemented by subclasses to create and add + technology-specific Pyomo constraints (e.g., efficiencies, limits, or costs) + to the provided model instance. + + Args: + pyomo_model: The Pyomo model instance to which constraints will be added. + tech_name (str): The name or identifier of the technology for which + constraints are defined. + + Raises: + NotImplementedError: If the method is not implemented in a subclass. + """ + + raise NotImplementedError( + "This method should be implemented in a subclass. \ + If no constraints to add, simply use a pass function" + ) + + def _create_ports(self, pyomo_model, tech_name: str): + """Defines technology-specific Pyomo ports for the given model. + + This abstract method should be implemented by subclasses to create and add + technology-specific Pyomo ports (e.g., efficiencies, limits, or costs) + to the provided model instance. + + Args: + pyomo_model: The Pyomo model instance to which ports will be added. + tech_name (str): The name or identifier of the technology for which + port are defined. + + Raises: + NotImplementedError: If the method is not implemented in a subclass. + """ + + raise NotImplementedError("This method should be implemented in a subclass.") diff --git a/h2integrate/control/control_rules/storage/__init__.py b/h2integrate/control/control_rules/storage/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/control/control_rules/storage/pyomo_storage_rule_baseclass.py b/h2integrate/control/control_rules/storage/pyomo_storage_rule_baseclass.py new file mode 100644 index 000000000..29e2adbd0 --- /dev/null +++ b/h2integrate/control/control_rules/storage/pyomo_storage_rule_baseclass.py @@ -0,0 +1,232 @@ +import pyomo.environ as pyo +from pyomo.network import Port + +from h2integrate.control.control_rules.pyomo_rule_baseclass import PyomoRuleBaseClass + + +class PyomoRuleStorageBaseclass(PyomoRuleBaseClass): + """Base class defining PYomo rules for generic commodity storage components.""" + + def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): + """Create storage-related parameters in the Pyomo model. + + This method defines key storage parameters such as capacity limits, + state-of-charge (SOC) bounds, efficiencies, and time duration for each + time step. + + Args: + pyomo_model (pyo.ConcreteModel): Pyomo model instance representing + the storage system. + t: Time index or iterable representing time steps (unused in this method). + """ + ################################## + # Storage Parameters # + ################################## + pyomo_model.time_duration = pyo.Param( + doc=pyomo_model.name + " time step [hour]", + default=1.0, + within=pyo.NonNegativeReals, + mutable=True, + units=pyo.units.hr, + ) + pyomo_model.minimum_storage = pyo.Param( + doc=pyomo_model.name + + " minimum storage rating [" + + self.config.commodity_storage_units + + "]", + default=0.0, + within=pyo.NonNegativeReals, + mutable=True, + units=eval("pyo.units." + self.config.commodity_storage_units), + ) + pyomo_model.maximum_storage = pyo.Param( + doc=pyomo_model.name + + " maximum storage rating [" + + self.config.commodity_storage_units + + "]", + within=pyo.NonNegativeReals, + mutable=True, + units=eval("pyo.units." + self.config.commodity_storage_units), + ) + pyomo_model.minimum_soc = pyo.Param( + doc=pyomo_model.name + " minimum state-of-charge [-]", + default=0.1, + within=pyo.PercentFraction, + mutable=True, + units=pyo.units.dimensionless, + ) + pyomo_model.maximum_soc = pyo.Param( + doc=pyomo_model.name + " maximum state-of-charge [-]", + default=0.9, + within=pyo.PercentFraction, + mutable=True, + units=pyo.units.dimensionless, + ) + + ################################## + # Efficiency Parameters # + ################################## + pyomo_model.charge_efficiency = pyo.Param( + doc=pyomo_model.name + " Charging efficiency [-]", + default=0.938, + within=pyo.PercentFraction, + mutable=True, + units=pyo.units.dimensionless, + ) + pyomo_model.discharge_efficiency = pyo.Param( + doc=pyomo_model.name + " discharging efficiency [-]", + default=0.938, + within=pyo.PercentFraction, + mutable=True, + units=pyo.units.dimensionless, + ) + ################################## + # Capacity Parameters # + ################################## + + pyomo_model.capacity = pyo.Param( + doc=pyomo_model.name + " capacity [" + self.config.commodity_storage_units + "]", + within=pyo.NonNegativeReals, + mutable=True, + units=eval("pyo.units." + self.config.commodity_storage_units), + ) + + def _create_variables(self, pyomo_model: pyo.ConcreteModel, t): + """Create storage-related decision variables in the Pyomo model. + + This method defines binary and continuous variables representing + charging/discharging modes, energy flows, and state-of-charge. + + Args: + pyomo_model (pyo.ConcreteModel): Pyomo model instance representing + the storage system. + t: Time index or iterable representing time steps (unused in this method). + """ + ################################## + # Variables # + ################################## + pyomo_model.is_charging = pyo.Var( + doc="1 if " + pyomo_model.name + " is charging; 0 Otherwise [-]", + domain=pyo.Binary, + units=pyo.units.dimensionless, + ) + pyomo_model.is_discharging = pyo.Var( + doc="1 if " + pyomo_model.name + " is discharging; 0 Otherwise [-]", + domain=pyo.Binary, + units=pyo.units.dimensionless, + ) + pyomo_model.soc0 = pyo.Var( + doc=pyomo_model.name + " initial state-of-charge at beginning of period[-]", + domain=pyo.PercentFraction, + bounds=(pyomo_model.minimum_soc, pyomo_model.maximum_soc), + units=pyo.units.dimensionless, + ) + pyomo_model.soc = pyo.Var( + doc=pyomo_model.name + " state-of-charge at end of period [-]", + domain=pyo.PercentFraction, + bounds=(pyomo_model.minimum_soc, pyomo_model.maximum_soc), + units=pyo.units.dimensionless, + ) + pyomo_model.charge_commodity = pyo.Var( + doc=self.config.commodity_name + + " into " + + pyomo_model.name + + " [" + + self.config.commodity_storage_units + + "]", + domain=pyo.NonNegativeReals, + units=eval("pyo.units." + self.config.commodity_storage_units), + ) + pyomo_model.discharge_commodity = pyo.Var( + doc=self.config.commodity_name + + " out of " + + pyomo_model.name + + " [" + + self.config.commodity_storage_units + + "]", + domain=pyo.NonNegativeReals, + units=eval("pyo.units." + self.config.commodity_storage_units), + ) + + def _create_constraints(self, pyomo_model: pyo.ConcreteModel, t): + """Create operational and state-of-charge constraints for storage. + + This method defines constraints that enforce: + - Mutual exclusivity between charging and discharging. + - Upper and lower bounds on charge/discharge flows. + - The state-of-charge balance over time. + + Args: + pyomo_model (pyo.ConcreteModel): Pyomo model instance representing + the storage system. + t: Time index or iterable representing time steps (unused in this method). + """ + ################################## + # Charging Constraints # + ################################## + # Charge commodity bounds + pyomo_model.charge_commodity_ub = pyo.Constraint( + doc=pyomo_model.name + " charging storage upper bound", + expr=pyomo_model.charge_commodity + <= pyomo_model.maximum_storage * pyomo_model.is_charging, + ) + pyomo_model.charge_commodity_lb = pyo.Constraint( + doc=pyomo_model.name + " charging storage lower bound", + expr=pyomo_model.charge_commodity + >= pyomo_model.minimum_storage * pyomo_model.is_charging, + ) + # Discharge commodity bounds + pyomo_model.discharge_commodity_lb = pyo.Constraint( + doc=pyomo_model.name + " Discharging storage lower bound", + expr=pyomo_model.discharge_commodity + >= pyomo_model.minimum_storage * pyomo_model.is_discharging, + ) + pyomo_model.discharge_commodity_ub = pyo.Constraint( + doc=pyomo_model.name + " Discharging storage upper bound", + expr=pyomo_model.discharge_commodity + <= pyomo_model.maximum_storage * pyomo_model.is_discharging, + ) + # Storage packing constraint + pyomo_model.charge_discharge_packing = pyo.Constraint( + doc=pyomo_model.name + " packing constraint for charging and discharging binaries", + expr=pyomo_model.is_charging + pyomo_model.is_discharging <= 1, + ) + + ################################## + # SOC Inventory Constraints # + ################################## + + def soc_inventory_rule(m): + return m.soc == ( + m.soc0 + + m.time_duration + * ( + m.charge_efficiency * m.charge_commodity + - (1 / m.discharge_efficiency) * m.discharge_commodity + ) + / m.capacity + ) + + # Storage State-of-charge balance + pyomo_model.soc_inventory = pyo.Constraint( + doc=pyomo_model.name + " state-of-charge inventory balance", + rule=soc_inventory_rule, + ) + + def _create_ports(self, pyomo_model: pyo.ConcreteModel, t): + """Create Pyomo ports for connecting the storage component. + + Ports are used to connect inflows and outflows of the storage system + (e.g., charging and discharging commodities) to the overall Pyomo model. + + Args: + pyomo_model (pyo.ConcreteModel): Pyomo model instance representing + the storage system. + t: Time index or iterable representing time steps (unused in this method). + """ + ################################## + # Ports # + ################################## + pyomo_model.port = Port() + pyomo_model.port.add(pyomo_model.charge_commodity) + pyomo_model.port.add(pyomo_model.discharge_commodity) diff --git a/h2integrate/control/control_strategies/__init__.py b/h2integrate/control/control_strategies/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/control/control_strategies/controller_baseclass.py b/h2integrate/control/control_strategies/controller_baseclass.py new file mode 100644 index 000000000..1e3a11a84 --- /dev/null +++ b/h2integrate/control/control_strategies/controller_baseclass.py @@ -0,0 +1,52 @@ +import openmdao.api as om + + +class ControllerBaseClass(om.ExplicitComponent): + """ + Base class for open-loop controllers in the H2Integrate system. + + This class provides a template for implementing open-loop controllers. It defines the + basic structure for inputs and outputs and requires subclasses to implement the `compute` + method for specific control logic. + + Attributes: + plant_config (dict): Configuration dictionary for the overall plant. + tech_config (dict): Configuration dictionary for the specific technology being controlled. + """ + + def initialize(self): + """ + Declare options for the component. See "Attributes" section in class doc strings for + details. + """ + + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + """ + Define inputs and outputs for the component. + + This method must be implemented in subclasses to define the specific control inputs + and outputs. + + Raises: + NotImplementedError: If the method is not implemented in a subclass. + """ + raise NotImplementedError("This method should be implemented in a subclass.") + + def compute(self, inputs, outputs): + """ + Perform computations for the component. + + This method must be implemented in subclasses to define the specific control logic. + + Args: + inputs (dict): Dictionary of input values. + outputs (dict): Dictionary of output values. + + Raises: + NotImplementedError: If the method is not implemented in a subclass. + """ + raise NotImplementedError("This method should be implemented in a subclass.") diff --git a/h2integrate/controllers/openloop_controllers.py b/h2integrate/control/control_strategies/openloop_controllers.py similarity index 59% rename from h2integrate/controllers/openloop_controllers.py rename to h2integrate/control/control_strategies/openloop_controllers.py index aa1dfd945..69ba8f5ed 100644 --- a/h2integrate/controllers/openloop_controllers.py +++ b/h2integrate/control/control_strategies/openloop_controllers.py @@ -1,74 +1,24 @@ from copy import deepcopy import numpy as np -import openmdao.api as om from attrs import field, define from h2integrate.core.utilities import BaseConfig, merge_shared_inputs from h2integrate.core.validators import range_val, range_val_or_none - - -class ControllerBaseClass(om.ExplicitComponent): - """ - Base class for open-loop controllers in the H2Integrate system. - - This class provides a template for implementing open-loop controllers. It defines the - basic structure for inputs and outputs and requires subclasses to implement the `compute` - method for specific control logic. - - Attributes: - plant_config (dict): Configuration dictionary for the overall plant. - tech_config (dict): Configuration dictionary for the specific technology being controlled. - """ - - def initialize(self): - """ - Declare options for the component. See "Attributes" section in class doc strings for - details. - """ - - self.options.declare("driver_config", types=dict) - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - - def setup(self): - """ - Define inputs and outputs for the component. - - This method must be implemented in subclasses to define the specific control I/O. - - Raises: - NotImplementedError: If the method is not implemented in a subclass. - """ - raise NotImplementedError("This method should be implemented in a subclass.") - - def compute(self, inputs, outputs): - """ - Perform computations for the component. - - This method must be implemented in subclasses to define the specific control logic. - - Args: - inputs (dict): Dictionary of input values. - outputs (dict): Dictionary of output values. - - Raises: - NotImplementedError: If the method is not implemented in a subclass. - """ - raise NotImplementedError("This method should be implemented in a subclass.") +from h2integrate.control.control_strategies.controller_baseclass import ControllerBaseClass @define class PassThroughOpenLoopControllerConfig(BaseConfig): - resource_name: str = field() - resource_rate_units: str = field() + commodity_name: str = field() + commodity_units: str = field() class PassThroughOpenLoopController(ControllerBaseClass): """ A simple pass-through controller for open-loop systems. - This controller directly passes the input resource flow to the output without any + This controller directly passes the input commodity flow to the output without any modifications. It is useful for testing, as a placeholder for more complex controllers, and for maintaining consistency between controlled and uncontrolled frameworks as this 'controller' does not alter the system output in any way. @@ -80,17 +30,17 @@ def setup(self): ) self.add_input( - f"{self.config.resource_name}_in", + f"{self.config.commodity_name}_in", shape_by_conn=True, - units=self.config.resource_rate_units, - desc=f"{self.config.resource_name} input timeseries from production to storage", + units=self.config.commodity_units, + desc=f"{self.config.commodity_name} input timeseries from production to storage", ) self.add_output( - f"{self.config.resource_name}_out", - copy_shape=f"{self.config.resource_name}_in", - units=self.config.resource_rate_units, - desc=f"{self.config.resource_name} output timeseries from plant after storage", + f"{self.config.commodity_name}_out", + copy_shape=f"{self.config.commodity_name}_in", + units=self.config.commodity_units, + desc=f"{self.config.commodity_name} output timeseries from plant after storage", ) def compute(self, inputs, outputs): @@ -99,13 +49,13 @@ def compute(self, inputs, outputs): Args: inputs (dict): Dictionary of input values. - - {resource_name}_in: Input resource flow. + - {commodity_name}_in: Input commodity flow. outputs (dict): Dictionary of output values. - - {resource_name}_out: Output resource flow, equal to the input flow. + - {commodity_name}_out: Output commodity flow, equal to the input flow. """ # Assign the input to the output - outputs[f"{self.config.resource_name}_out"] = inputs[f"{self.config.resource_name}_in"] + outputs[f"{self.config.commodity_name}_out"] = inputs[f"{self.config.commodity_name}_in"] def setup_partials(self): """ @@ -121,13 +71,13 @@ def setup_partials(self): """ # Get the size of the input/output array - size = self._get_var_meta(f"{self.config.resource_name}_in", "size") + size = self._get_var_meta(f"{self.config.commodity_name}_in", "size") # Declare partials sparsely for all elements as an identity matrix # (diagonal elements are 1.0, others are 0.0) self.declare_partials( - of=f"{self.config.resource_name}_out", - wrt=f"{self.config.resource_name}_in", + of=f"{self.config.commodity_name}_out", + wrt=f"{self.config.commodity_name}_in", rows=np.arange(size), cols=np.arange(size), val=np.ones(size), # Diagonal elements are 1.0 @@ -142,19 +92,19 @@ class DemandOpenLoopControllerConfig(BaseConfig): This class defines the parameters required to configure the `DemandOpenLoopController`. Attributes: - resource_name (str): Name of the resource being controlled (e.g., "hydrogen"). - resource_rate_units (str): Units of the resource (e.g., "kg/h"). - max_capacity (float): Maximum storage capacity of the resource (in non-rate units, - e.g., "kg" if `resource_rate_units` is "kg/h"). + commodity_name (str): Name of the commodity being controlled (e.g., "hydrogen"). + commodity_units (str): Units of the commodity (e.g., "kg/h"). + max_capacity (float): Maximum storage capacity of the commodity (in non-rate units, + e.g., "kg" if `commodity_units` is "kg/h"). max_charge_percent (float): Maximum allowable state of charge (SOC) as a percentage of `max_capacity`, represented as a decimal between 0 and 1. min_charge_percent (float): Minimum allowable SOC as a percentage of `max_capacity`, represented as a decimal between 0 and 1. init_charge_percent (float): Initial SOC as a percentage of `max_capacity`, represented as a decimal between 0 and 1. - max_charge_rate (float): Maximum rate at which the resource can be charged (in units + max_charge_rate (float): Maximum rate at which the commodity can be charged (in units per time step, e.g., "kg/time step"). This rate does not include the charge_efficiency. - max_discharge_rate (float): Maximum rate at which the resource can be discharged (in + max_discharge_rate (float): Maximum rate at which the commodity can be discharged (in units per time step, e.g., "kg/time step"). This rate does not include the discharge_efficiency. charge_efficiency (float | None): Efficiency of charging the storage, represented as a @@ -167,12 +117,11 @@ class DemandOpenLoopControllerConfig(BaseConfig): the storage, represented as a decimal between 0 and 1 (e.g., 0.81 for 81% efficiency). Optional if `charge_efficiency` and `discharge_efficiency` are provided. demand_profile (scalar or list): The demand values for each time step (in the same units - as `resource_rate_units`) or a scalar for a constant demand. - n_time_steps (int): Number of time steps in the simulation. Defaults to 8760. + as `commodity_units`) or a scalar for a constant demand. """ - resource_name: str = field() - resource_rate_units: str = field() + commodity_name: str = field() + commodity_units: str = field() max_capacity: float = field() max_charge_percent: float = field(validator=range_val(0, 1)) min_charge_percent: float = field(validator=range_val(0, 1)) @@ -180,7 +129,6 @@ class DemandOpenLoopControllerConfig(BaseConfig): max_charge_rate: float = field() max_discharge_rate: float = field() demand_profile: int | float | list = field() - n_time_steps: int = field(default=8760) charge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) discharge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) round_trip_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) @@ -215,39 +163,43 @@ def __attrs_post_init__(self): class DemandOpenLoopController(ControllerBaseClass): """ - A controller that manages resource flow based on demand and storage constraints. + A controller that manages commodity flow based on demand and storage constraints. The `DemandOpenLoopController` computes the state of charge (SOC), output flow, curtailment, - and missed load for a resource storage system. It uses a demand profile and storage parameters - to determine how much of the resource to charge, discharge, or curtail at each time step. + and missed load for a commodity storage system. It uses a demand profile and storage parameters + to determine how much of the commodity to charge, discharge, or curtail at each time step. - Note: the units of the outputs are the same as the resource units, which is typically a rate + Note: the units of the outputs are the same as the commodity units, which is typically a rate in H2Integrate (e.g. kg/h) Attributes: config (DemandOpenLoopControllerConfig): Configuration object containing parameters - such as resource name, units, time steps, storage capacity, charge/discharge rates, + such as commodity name, units, time steps, storage capacity, charge/discharge rates, efficiencies, and demand profile. Inputs: - {resource_name}_in (float): Input resource flow timeseries (e.g., hydrogen production). - - Units: Defined in `resource_rate_units` (e.g., "kg/h"). + {commodity_name}_in (float): Input commodity flow timeseries (e.g., hydrogen production). + - Units: Defined in `commodity_units` (e.g., "kg/h"). Outputs: - {resource_name}_out (float): Output resource flow timeseries after storage. - - Units: Defined in `resource_rate_units` (e.g., "kg/h"). - {resource_name}_soc (float): State of charge (SOC) timeseries for the storage system. + {commodity_name}_out (float): Output commodity flow timeseries after storage to meet demand. + - Units: Defined in `commodity_units` (e.g., "kg/h"). + - Note: the may include commodity from commodity_in that was never used to charge the + storage system but was directly dispatched to meet demand. + {commodity_name}_soc (float): State of charge (SOC) timeseries for the storage system. - Units: "unitless" (percentage of maximum capacity given as a ratio between 0 and 1). - {resource_name}_curtailed (float): Curtailment timeseries for unused input resource. - - Units: Defined in `resource_rate_units` (e.g., "kg/h"). + {commodity_name}_unused_commodity (float): Curtailment timeseries for unused + input commodity. + - Units: Defined in `commodity_units` (e.g., "kg/h"). - Note: curtailment in this case does not reduce what the converter produces, but rather the system just does not use it (throws it away) because this controller is specific to the storage technology and has no influence on other technologies in the system. - {resource_name}_missed_load (float): Missed load timeseries when demand exceeds supply. - - Units: Defined in `resource_rate_units` (e.g., "kg/h"). - total_{resource_name}_missed_load (float): Total missed load over the simulation period. - - Units: Defined in `resource_rate_units` (e.g., "kg"). + {commodity_name}_unmet_demand (float): Unmet demand timeseries when demand exceeds supply. + Same meaning as missed load. + - Units: Defined in `commodity_units` (e.g., "kg/h"). + total_{commodity_name}_unmet_demand (float): Total unmet demand over the simulation period. + - Units: Defined in `commodity_units` (e.g., "kg"). """ def setup(self): @@ -255,59 +207,62 @@ def setup(self): merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control") ) - resource_name = self.config.resource_name + self.n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + + commodity_name = self.config.commodity_name self.add_input( - f"{resource_name}_in", + f"{commodity_name}_in", shape_by_conn=True, - units=self.config.resource_rate_units, - desc=f"{resource_name} input timeseries from production to storage", + units=f"{self.config.commodity_units}", + desc=f"{commodity_name} input timeseries from production to storage", ) if isinstance(self.config.demand_profile, int | float): - self.config.demand_profile = [self.config.demand_profile] * self.config.n_time_steps + self.config.demand_profile = [self.config.demand_profile] * self.n_timesteps self.add_input( - f"{resource_name}_demand_profile", - units=f"{self.config.resource_rate_units}/h", + f"{commodity_name}_demand_profile", + units=f"{self.config.commodity_units}", val=self.config.demand_profile, - shape=self.config.n_time_steps, - desc=f"{resource_name} demand profile timeseries", + shape=self.n_timesteps, + desc=f"{commodity_name} demand profile timeseries", ) self.add_output( - f"{resource_name}_out", - copy_shape=f"{resource_name}_in", - units=self.config.resource_rate_units, - desc=f"{resource_name} output timeseries from plant after storage", + f"{commodity_name}_out", + copy_shape=f"{commodity_name}_in", + units=f"{self.config.commodity_units}", + desc=f"{commodity_name} output timeseries from plant after storage including \ + stored and pass-through commodity amounts up to the demand amount", ) self.add_output( - f"{resource_name}_soc", - copy_shape=f"{resource_name}_in", + f"{commodity_name}_soc", + copy_shape=f"{commodity_name}_in", units="unitless", - desc=f"{resource_name} state of charge timeseries for storage", + desc=f"{commodity_name} state of charge timeseries for storage", ) self.add_output( - f"{resource_name}_curtailed", - copy_shape=f"{resource_name}_in", - units=self.config.resource_rate_units, - desc=f"{resource_name} curtailment timeseries for inflow resource at \ + f"{commodity_name}_unused_commodity", + copy_shape=f"{commodity_name}_in", + units=self.config.commodity_units, + desc=f"{commodity_name} curtailment timeseries for inflow commodity at \ storage point", ) self.add_output( - f"{resource_name}_missed_load", - copy_shape=f"{resource_name}_in", - units=self.config.resource_rate_units, - desc=f"{resource_name} missed load timeseries", + f"{commodity_name}_unmet_demand", + copy_shape=f"{commodity_name}_in", + units=self.config.commodity_units, + desc=f"{commodity_name} missed load timeseries", ) self.add_output( - f"total_{resource_name}_missed_load", - units=self.config.resource_rate_units, - desc=f"Total {resource_name} missed load over the simulation period", + f"total_{commodity_name}_unmet_demand", + units=self.config.commodity_units, + desc=f"Total {commodity_name} missed load over the simulation period", ) def compute(self, inputs, outputs): @@ -315,7 +270,7 @@ def compute(self, inputs, outputs): Compute the state of charge (SOC) and output flow based on demand and storage constraints. """ - resource_name = self.config.resource_name + commodity_name = self.config.commodity_name max_capacity = self.config.max_capacity max_charge_percent = self.config.max_charge_percent min_charge_percent = self.config.min_charge_percent @@ -329,25 +284,25 @@ def compute(self, inputs, outputs): # the previous time step's value soc = deepcopy(init_charge_percent) - demand_profile = inputs[f"{resource_name}_demand_profile"] + demand_profile = inputs[f"{commodity_name}_demand_profile"] # initialize outputs - soc_array = outputs[f"{resource_name}_soc"] - curtailment_array = outputs[f"{resource_name}_curtailed"] - output_array = outputs[f"{resource_name}_out"] - missed_load_array = outputs[f"{resource_name}_missed_load"] + soc_array = outputs[f"{commodity_name}_soc"] + unused_commodity_array = outputs[f"{commodity_name}_unused_commodity"] + output_array = outputs[f"{commodity_name}_out"] + unmet_demand_array = outputs[f"{commodity_name}_unmet_demand"] # Loop through each time step for t, demand_t in enumerate(demand_profile): # Get the input flow at the current time step - input_flow = inputs[f"{resource_name}_in"][t] + input_flow = inputs[f"{commodity_name}_in"][t] # Calculate the available charge/discharge capacity available_charge = (max_charge_percent - soc) * max_capacity available_discharge = (soc - min_charge_percent) * max_capacity # Initialize persistent variables for curtailment and missed load - excess_input = 0.0 + unused_input = 0.0 charge = 0.0 # Determine the output flow based on demand_t and SOC @@ -365,14 +320,14 @@ def compute(self, inputs, outputs): # applying `discharge_efficiency`. output_array[t] = input_flow + discharge * discharge_efficiency else: - # Charge storage with excess input - # `excess_input` is as seen outside the storage - excess_input = input_flow - demand_t + # Charge storage with unused input + # `unused_input` is as seen outside the storage + unused_input = input_flow - demand_t # `charge` is as seen by the storage, but the things being compared should all be as # seen outside the storage so we need to adjust `available_charge` outside the # storage view and the final result back into the storage view. charge = ( - min(excess_input, available_charge / charge_efficiency, max_charge_rate) + min(unused_input, available_charge / charge_efficiency, max_charge_rate) * charge_efficiency ) soc += charge / max_capacity # soc is a ratio with value between 0 and 1 @@ -386,9 +341,21 @@ def compute(self, inputs, outputs): # Record the curtailment at the current time step. Adjust `charge` from storage view to # outside view for curtailment - curtailment_array[t] = max(0, float(excess_input - charge / charge_efficiency)) + unused_commodity_array[t] = max(0, float(unused_input - charge / charge_efficiency)) # Record the missed load at the current time step - missed_load_array[t] = max(0, (demand_t - output_array[t])) + unmet_demand_array[t] = max(0, (demand_t - output_array[t])) + + outputs[f"{commodity_name}_out"] = output_array + + # Return the SOC + outputs[f"{commodity_name}_soc"] = soc_array + + # Return the unused commodity + outputs[f"{commodity_name}_unused_commodity"] = unused_commodity_array + + # Return the unmet load demand + outputs[f"{commodity_name}_unmet_demand"] = unmet_demand_array - outputs[f"total_{resource_name}_missed_load"] = np.sum(missed_load_array) + # Calculate and return the total unmet demand over the simulation period + outputs[f"total_{commodity_name}_unmet_demand"] = np.sum(unmet_demand_array) diff --git a/h2integrate/control/control_strategies/pyomo_controllers.py b/h2integrate/control/control_strategies/pyomo_controllers.py new file mode 100644 index 000000000..47ae68af8 --- /dev/null +++ b/h2integrate/control/control_strategies/pyomo_controllers.py @@ -0,0 +1,751 @@ +from typing import TYPE_CHECKING + +import numpy as np +import pyomo.environ as pyomo +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import range_val +from h2integrate.control.control_strategies.controller_baseclass import ControllerBaseClass + + +if TYPE_CHECKING: # to avoid circular imports + pass + + +@define +class PyomoControllerBaseConfig(BaseConfig): + """ + Configuration data container for Pyomo-based storage / dispatch controllers. + + This class groups the fundamental parameters needed by derived controller + implementations. Values are typically populated from the technology + `tech_config.yaml` (merged under the "control" section). + + Attributes: + max_capacity (float): + Physical maximum stored commodity capacity (inventory, not a rate). + Units correspond to the base commodity units (e.g., kg, MWh). + max_charge_percent (float): + Upper bound on state of charge expressed as a fraction in [0, 1]. + 1.0 means the controller may fill to max_capacity. + min_charge_percent (float): + Lower bound on state of charge expressed as a fraction in [0, 1]. + 0.0 allows full depletion; >0 reserves minimum inventory. + init_charge_percent (float): + Initial state of charge at simulation start as a fraction in [0, 1]. + n_control_window (int): + Number of consecutive timesteps processed per control action + (rolling control / dispatch window length). + n_horizon_window (int): + Number of timesteps considered for look ahead / optimization horizon. + May be >= n_control_window (used by predictive strategies). + commodity_name (str): + Base name of the controlled commodity (e.g., "hydrogen", "electricity"). + Used to construct input/output variable names (e.g., f"{commodity_name}_in"). + commodity_storage_units (str): + Units string for stored commodity rates (e.g., "kg/h", "MW"). + Used for unit annotations when creating model variables. + tech_name (str): + Technology identifier used to namespace Pyomo blocks / variables within + the broader OpenMDAO model (e.g., "battery", "h2_storage"). + system_commodity_interface_limit (float | int | str |list[float]): Max interface + (e.g. grid interface) flow used to bound dispatch (scalar or per-timestep list of + length n_control_window). + """ + + max_capacity: float = field() + max_charge_percent: float = field(validator=range_val(0, 1)) + min_charge_percent: float = field(validator=range_val(0, 1)) + init_charge_percent: float = field(validator=range_val(0, 1)) + n_control_window: int = field() + n_horizon_window: int = field() + commodity_name: str = field() + commodity_storage_units: str = field() + tech_name: str = field() + system_commodity_interface_limit: float | int | str | list[float] = field() + + def __attrs_post_init__(self): + if isinstance(self.system_commodity_interface_limit, str): + self.system_commodity_interface_limit = float(self.system_commodity_interface_limit) + if isinstance(self.system_commodity_interface_limit, (float, int)): + self.system_commodity_interface_limit = [ + self.system_commodity_interface_limit + ] * self.n_control_window + + +def dummy_function(): + """Dummy function used for setting OpenMDAO input/output defaults but otherwise unused. + + Returns: + None: empty output + """ + return None + + +class PyomoControllerBaseClass(ControllerBaseClass): + def dummy_method(self, in1, in2): + """Dummy method used for setting OpenMDAO input/output defaults but otherwise unused. + + Args: + in1 (any): dummy input 1 + in2 (any): dummy input 2 + + Returns: + None: empty output + """ + return None + + def setup(self): + """Register per-technology dispatch rule inputs and expose the solver callable. + + Adds discrete inputs named 'dispatch_block_rule_function' (and variants + suffixed with source tech names for cross-tech connections) plus a + discrete output 'pyomo_dispatch_solver' that will hold the assembled + callable after compute(). + """ + + # get technology group name + self.tech_group_name = self.pathname.split(".") + + # create inputs for all pyomo object creation functions from all connected technologies + self.dispatch_connections = self.options["plant_config"]["tech_to_dispatch_connections"] + for connection in self.dispatch_connections: + # get connection definition + source_tech, intended_dispatch_tech = connection + if any(intended_dispatch_tech in name for name in self.tech_group_name): + if source_tech == intended_dispatch_tech: + # When getting rules for the same tech, the tech name is not used in order to + # allow for automatic connections rather than complicating the h2i model set up + self.add_discrete_input("dispatch_block_rule_function", val=self.dummy_method) + else: + self.add_discrete_input( + f"{'dispatch_block_rule_function'}_{source_tech}", val=self.dummy_method + ) + else: + continue + + # create output for the pyomo control model + self.add_discrete_output( + "pyomo_dispatch_solver", + val=dummy_function, + desc="callable: fully formed pyomo model and execution logic to be run \ + by owning technologies performance model", + ) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + """Build Pyomo model blocks and assign the dispatch solver.""" + discrete_outputs["pyomo_dispatch_solver"] = self.pyomo_setup(discrete_inputs) + + def pyomo_setup(self, discrete_inputs): + """Create the Pyomo model, attach per-tech Blocks, and return dispatch solver. + + Returns: + callable: Function(performance_model, performance_model_kwargs, inputs, commodity_name) + executing rolling-window heuristic dispatch and returning: + (total_out, storage_out, unmet_demand, unused_commodity, soc) + """ + # initialize the pyomo model + self.pyomo_model = pyomo.ConcreteModel() + + index_set = pyomo.Set(initialize=range(self.config.n_control_window)) + + # run each pyomo rule set up function for each technology + for connection in self.dispatch_connections: + # get connection definition + source_tech, intended_dispatch_tech = connection + # only add connections to intended dispatch tech + if any(intended_dispatch_tech in name for name in self.tech_group_name): + # names are specified differently if connecting within the tech group vs + # connecting from an external tech group. This facilitates OM connections + if source_tech == intended_dispatch_tech: + dispatch_block_rule_function = discrete_inputs["dispatch_block_rule_function"] + else: + dispatch_block_rule_function = discrete_inputs[ + f"{'dispatch_block_rule_function'}_{source_tech}" + ] + # create pyomo block and set attr + blocks = pyomo.Block(index_set, rule=dispatch_block_rule_function) + setattr(self.pyomo_model, source_tech, blocks) + else: + continue + + # define dispatch solver + def pyomo_dispatch_solver( + performance_model: callable, + performance_model_kwargs, + inputs, + commodity_name: str = self.config.commodity_name, + ): + r""" + Execute rolling-window dispatch for the controlled technology. + + Iterates over the full simulation period in chunks of size + `self.config.n_control_window`, (re)configures per\-window dispatch + parameters, invokes a heuristic control strategy to set fixed + dispatch decisions, and then calls the provided performance_model + over each window to obtain storage output and SOC trajectories. + + Args: + performance_model (callable): + Function implementing the technology performance over a control + window. Signature must accept (storage_dispatch_commands, + **performance_model_kwargs, sim_start_index=) + and return (storage_out_window, soc_window) arrays of length + n_control_window. + performance_model_kwargs (dict): + Extra keyword arguments forwarded unchanged to performance_model + at window (e.g., efficiencies, timestep size). + inputs (dict): + Dictionary of numpy arrays (length = self.n_timesteps) containing at least: + f"{commodity_name}_in" : available generated commodity profile. + f"{commodity_name}_demand" : demanded commodity output profile. + commodity_name (str, optional): + Base commodity name (e.g. "electricity", "hydrogen"). Default: + self.config.commodity_name. + + Returns: + tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray, np.ndarray]: + total_commodity_out : + Net commodity supplied to demand each timestep (min(demand, storage + gen)). + storage_commodity_out : + Commodity supplied (positive) by the storage asset each timestep. + unmet_demand : + Positive shortfall = demand - total_out (0 if fully met). + unused_commodity : + Surplus generation + storage discharge not used to meet demand. + soc : + State of charge trajectory (percent of capacity). + + Raises: + NotImplementedError: + If the configured control strategy is not implemented. + + Notes: + 1. Arrays returned have length self.n_timesteps (full simulation period). + """ + self.initialize_parameters() + + # initialize outputs + unmet_demand = np.zeros(self.n_timesteps) + storage_commodity_out = np.zeros(self.n_timesteps) + total_commodity_out = np.zeros(self.n_timesteps) + unused_commodity = np.zeros(self.n_timesteps) + soc = np.zeros(self.n_timesteps) + + # get the starting index for each control window + window_start_indices = list(range(0, self.n_timesteps, self.config.n_control_window)) + + control_strategy = self.options["tech_config"]["control_strategy"]["model"] + + # loop over all control windows, where t is the starting index of each window + for t in window_start_indices: + self.update_time_series_parameters() + # get the inputs over the current control window + commodity_in = inputs[self.config.commodity_name + "_in"][ + t : t + self.config.n_control_window + ] + demand_in = inputs[f"{commodity_name}_demand"][t : t + self.config.n_control_window] + + if "heuristic" in control_strategy: + # determine dispatch commands for the current control window + # using the heuristic method + self.set_fixed_dispatch( + commodity_in, + self.config.system_commodity_interface_limit, + demand_in, + ) + + else: + raise ( + NotImplementedError( + f"Control strategy '{control_strategy}' was given, \ + but has not been implemented yet." + ) + ) + + # run the performance/simulation model for the current control window + # using the dispatch commands + storage_commodity_out_control_window, soc_control_window = performance_model( + self.storage_dispatch_commands, + **performance_model_kwargs, + sim_start_index=t, + ) + + # get a list of all time indices belonging to the current control window + window_indices = list(range(t, t + self.config.n_control_window)) + + # loop over all time steps in the current control window + for j in window_indices: + # save the output for the control window to the output for the full + # simulation + storage_commodity_out[j] = storage_commodity_out_control_window[j - t] + soc[j] = soc_control_window[j - t] + total_commodity_out[j] = np.minimum( + demand_in[j - t], storage_commodity_out[j] + commodity_in[j - t] + ) + unmet_demand[j] = np.maximum(0, demand_in[j - t] - total_commodity_out[j]) + unused_commodity[j] = np.maximum( + 0, storage_commodity_out[j] + commodity_in[j - t] - demand_in[j - t] + ) + + return total_commodity_out, storage_commodity_out, unmet_demand, unused_commodity, soc + + return pyomo_dispatch_solver + + @staticmethod + def dispatch_block_rule(block, t): + raise NotImplementedError("This function must be overridden for specific dispatch model") + + def initialize_parameters(self): + raise NotImplementedError("This function must be overridden for specific dispatch model") + + def update_time_series_parameters(self, start_time: int): + raise NotImplementedError("This function must be overridden for specific dispatch model") + + @staticmethod + def _check_efficiency_value(efficiency): + """Checks efficiency is between 0 and 1. Returns fractional value""" + if efficiency < 0: + raise ValueError("Efficiency value must greater than 0") + elif efficiency > 1: + raise ValueError("Efficiency value must between 0 and 1") + return efficiency + + @property + def blocks(self) -> pyomo.Block: + return getattr(self.pyomo_model, self.config.tech_name) + + @property + def model(self) -> pyomo.ConcreteModel: + return self._model + + +class SimpleBatteryControllerHeuristic(PyomoControllerBaseClass): + """Fixes battery dispatch operations based on user input. + + Currently, enforces available generation and grid limit assuming no battery charging from grid. + + Enforces: + - Available generation cannot be exceeded for charging. + - Interface (grid / export) limit bounds discharge. + - No grid charging (unless logic extended elsewhere). + """ + + def setup(self): + """Initialize SimpleBatteryControllerHeuristic.""" + super().setup() + + self.round_digits = 4 + + self.max_charge_fraction = [0.0] * self.config.n_control_window + self.max_discharge_fraction = [0.0] * self.config.n_control_window + self._fixed_dispatch = [0.0] * self.config.n_control_window + + def initialize_parameters(self): + """Initializes parameters.""" + + self.minimum_storage = 0.0 + self.maximum_storage = self.config.max_capacity + self.minimum_soc = self.config.min_charge_percent + self.maximum_soc = self.config.max_charge_percent + self.initial_soc = self.config.init_charge_percent + + def update_time_series_parameters(self, start_time: int = 0): + """Updates time series parameters. + + Args: + start_time (int): The start time. + + """ + # TODO: provide more control; currently don't use `start_time` + # see HOPP implementation + self.time_duration = [1.0] * len(self.blocks.index_set()) + + def update_dispatch_initial_soc(self, initial_soc: float | None = None): + """Updates dispatch initial state of charge (SOC). + + Args: + initial_soc (float, optional): Initial state of charge. Defaults to None. + + """ + if initial_soc is not None: + self._system_model.value("initial_SOC", initial_soc) + self._system_model.setup() + self.initial_soc = self._system_model.value("SOC") + + def set_fixed_dispatch( + self, + commodity_in: list, + system_commodity_interface_limit: list, + ): + """Sets charge and discharge amount of storage dispatch using fixed_dispatch attribute + and enforces available generation and charge/discharge limits. + + Args: + commodity_in (list): commodity blocks. + system_commodity_interface_limit (list): Maximum flow rate of commodity through + the system interface (e.g. grid interface) + + Raises: + ValueError: If commodity_in or system_commodity_interface_limit length do not + match fixed_dispatch length. + + """ + self.check_commodity_in_discharge_limit(commodity_in, system_commodity_interface_limit) + self._set_commodity_fraction_limits(commodity_in, system_commodity_interface_limit) + self._heuristic_method(commodity_in) + self._fix_dispatch_model_variables() + + def check_commodity_in_discharge_limit( + self, commodity_in: list, system_commodity_interface_limit: list + ): + """Checks if commodity in and discharge limit lengths match fixed_dispatch length. + + Args: + commodity_in (list): commodity blocks. + system_commodity_interface_limit (list): Maximum flow rate of commodity through + the system interface (e.g. grid interface). + + Raises: + ValueError: If commodity_in or system_commodity_interface_limit length does not + match fixed_dispatch length. + + """ + if len(commodity_in) != len(self.fixed_dispatch): + raise ValueError("commodity_in must be the same length as fixed_dispatch.") + elif len(system_commodity_interface_limit) != len(self.fixed_dispatch): + raise ValueError( + "system_commodity_interface_limit must be the same length as fixed_dispatch." + ) + + def _set_commodity_fraction_limits( + self, commodity_in: list, system_commodity_interface_limit: list + ): + """Set storage charge and discharge fraction limits based on + available generation and system interface capacity, respectively. + + Args: + commodity_in (list): commodity blocks. + system_commodity_interface_limit (list): Maximum flow rate of commodity + through the system interface (e.g. grid interface). + + NOTE: This method assumes that storage cannot be charged by the grid. + + """ + for t in self.blocks.index_set(): + self.max_charge_fraction[t] = self.enforce_power_fraction_simple_bounds( + (commodity_in[t]) / self.maximum_storage, self.minimum_soc, self.maximum_soc + ) + self.max_discharge_fraction[t] = self.enforce_power_fraction_simple_bounds( + (system_commodity_interface_limit[t] - commodity_in[t]) / self.maximum_storage, + self.minimum_soc, + self.maximum_soc, + ) + + @staticmethod + def enforce_power_fraction_simple_bounds( + storage_fraction: float, + minimum_soc: float, + maximum_soc: float, + ) -> float: + """Enforces simple bounds (0, .9) for battery power fractions. + + Args: + storage_fraction (float): Storage fraction from heuristic method. + + Returns: + storage_fraction (float): Bounded storage fraction. + + """ + if storage_fraction > maximum_soc: + storage_fraction = maximum_soc + elif storage_fraction < minimum_soc: + storage_fraction = minimum_soc + return storage_fraction + + def update_soc(self, storage_fraction: float, soc0: float) -> float: + """Updates SOC based on storage fraction threshold. + + Args: + storage_fraction (float): Storage fraction from heuristic method. Below threshold + is charging, above is discharging. + soc0 (float): Initial SOC. + + Returns: + soc (float): Updated SOC. + + """ + if storage_fraction > 0.0: + discharge_commodity = storage_fraction * self.maximum_storage + soc = ( + soc0 + - self.time_duration[0] + * (1 / (self.discharge_efficiency) * discharge_commodity) + / self.maximum_storage + ) + elif storage_fraction < 0.0: + charge_commodity = -storage_fraction * self.maximum_storage + soc = ( + soc0 + + self.time_duration[0] + * (self.charge_efficiency * charge_commodity) + / self.maximum_storage + ) + else: + soc = soc0 + + return max(self.minimum_soc, min(self.maximum_soc, soc)) + + def _heuristic_method(self, _): + """Executes specific heuristic method to fix storage dispatch.""" + self._enforce_power_fraction_limits() + + def _enforce_power_fraction_limits(self): + """Enforces storage fraction limits and sets _fixed_dispatch attribute.""" + for t in self.blocks.index_set(): + fd = self.user_fixed_dispatch[t] + if fd > 0.0: # Discharging + if fd > self.max_discharge_fraction[t]: + fd = self.max_discharge_fraction[t] + elif fd < 0.0: # Charging + if -fd > self.max_charge_fraction[t]: + fd = -self.max_charge_fraction[t] + self._fixed_dispatch[t] = fd + + def _fix_dispatch_model_variables(self): + """Fixes dispatch model variables based on the fixed dispatch values.""" + soc0 = self.pyomo_model.initial_soc + for t in self.blocks.index_set(): + dispatch_factor = self._fixed_dispatch[t] + self.blocks[t].soc.fix(self.update_soc(dispatch_factor, soc0)) + soc0 = self.blocks[t].soc.value + + if dispatch_factor == 0.0: + # Do nothing + self.blocks[t].charge_commodity.fix(0.0) + self.blocks[t].discharge_commodity.fix(0.0) + elif dispatch_factor > 0.0: + # Discharging + self.blocks[t].charge_commodity.fix(0.0) + self.blocks[t].discharge_commodity.fix(dispatch_factor * self.maximum_storage) + elif dispatch_factor < 0.0: + # Charging + self.blocks[t].discharge_commodity.fix(0.0) + self.blocks[t].charge_commodity.fix(-dispatch_factor * self.maximum_storage) + + def _check_initial_soc(self, initial_soc): + """Checks initial state-of-charge. + + Args: + initial_soc: Initial state-of-charge value. + + Returns: + float: Checked initial state-of-charge. + + """ + initial_soc = round(initial_soc, self.round_digits) + if initial_soc > self.maximum_soc: + print( + "Warning: Storage dispatch was initialized with a state-of-charge greater than " + "maximum value!" + ) + print(f"Initial SOC = {initial_soc}") + print("Initial SOC was set to maximum value.") + initial_soc = self.maximum_soc + elif initial_soc < self.minimum_soc: + print( + "Warning: Storage dispatch was initialized with a state-of-charge less than " + "minimum value!" + ) + print(f"Initial SOC = {initial_soc}") + print("Initial SOC was set to minimum value.") + initial_soc = self.minimum_soc + return initial_soc + + @property + def fixed_dispatch(self) -> list: + """list: List of fixed dispatch.""" + return self._fixed_dispatch + + @property + def user_fixed_dispatch(self) -> list: + """list: List of user fixed dispatch.""" + return self._user_fixed_dispatch + + @user_fixed_dispatch.setter + def user_fixed_dispatch(self, fixed_dispatch: list): + if len(fixed_dispatch) != len(self.blocks.index_set()): + raise ValueError("fixed_dispatch must be the same length as dispatch index set.") + elif max(fixed_dispatch) > 1.0 or min(fixed_dispatch) < -1.0: + raise ValueError("fixed_dispatch must be normalized values between -1 and 1.") + else: + self._user_fixed_dispatch = fixed_dispatch + + @property + def storage_dispatch_commands(self) -> list: + """ + Commanded dispatch including available commodity at current time step that has not + been used to charge the battery. + """ + return [ + (self.blocks[t].discharge_commodity.value - self.blocks[t].charge_commodity.value) + for t in self.blocks.index_set() + ] + + @property + def soc(self) -> list: + """State-of-charge.""" + return [self.blocks[t].soc.value for t in self.blocks.index_set()] + + @property + def charge_commodity(self) -> list: + """Charge commodity.""" + return [self.blocks[t].charge_commodity.value for t in self.blocks.index_set()] + + @property + def discharge_commodity(self) -> list: + """Discharge commodity.""" + return [self.blocks[t].discharge_commodity.value for t in self.blocks.index_set()] + + @property + def initial_soc(self) -> float: + """Initial state-of-charge.""" + return self.pyomo_model.initial_soc.value + + @initial_soc.setter + def initial_soc(self, initial_soc: float): + initial_soc = self._check_initial_soc(initial_soc) + self.pyomo_model.initial_soc = round(initial_soc, self.round_digits) + + @property + def minimum_soc(self) -> float: + """Minimum state-of-charge.""" + for t in self.blocks.index_set(): + return self.blocks[t].minimum_soc.value + + @minimum_soc.setter + def minimum_soc(self, minimum_soc: float): + for t in self.blocks.index_set(): + self.blocks[t].minimum_soc = round(minimum_soc, self.round_digits) + + @property + def maximum_soc(self) -> float: + """Maximum state-of-charge.""" + for t in self.blocks.index_set(): + return self.blocks[t].maximum_soc.value + + @maximum_soc.setter + def maximum_soc(self, maximum_soc: float): + for t in self.blocks.index_set(): + self.blocks[t].maximum_soc = round(maximum_soc, self.round_digits) + + @property + def charge_efficiency(self) -> float: + """Charge efficiency.""" + for t in self.blocks.index_set(): + return self.blocks[t].charge_efficiency.value + + @charge_efficiency.setter + def charge_efficiency(self, efficiency: float): + efficiency = self._check_efficiency_value(efficiency) + for t in self.blocks.index_set(): + self.blocks[t].charge_efficiency = round(efficiency, self.round_digits) + + @property + def discharge_efficiency(self) -> float: + """Discharge efficiency.""" + for t in self.blocks.index_set(): + return self.blocks[t].discharge_efficiency.value + + @discharge_efficiency.setter + def discharge_efficiency(self, efficiency: float): + efficiency = self._check_efficiency_value(efficiency) + for t in self.blocks.index_set(): + self.blocks[t].discharge_efficiency = round(efficiency, self.round_digits) + + @property + def round_trip_efficiency(self) -> float: + """Round trip efficiency.""" + return self.charge_efficiency * self.discharge_efficiency + + @round_trip_efficiency.setter + def round_trip_efficiency(self, round_trip_efficiency: float): + round_trip_efficiency = self._check_efficiency_value(round_trip_efficiency) + # Assumes equal charge and discharge efficiencies + efficiency = round_trip_efficiency ** (1 / 2) + self.charge_efficiency = efficiency + self.discharge_efficiency = efficiency + + +@define +class HeuristicLoadFollowingControllerConfig(PyomoControllerBaseConfig): + max_charge_rate: int | float = field() + charge_efficiency: float = field(default=None) + discharge_efficiency: float = field(default=None) + include_lifecycle_count: bool = field(default=False) + + +class HeuristicLoadFollowingController(SimpleBatteryControllerHeuristic): + """Operates the battery based on heuristic rules to meet the demand profile based power + available from power generation profiles and power demand profile. + + Currently, enforces available generation and grid limit assuming no battery charging from grid. + + """ + + def setup(self): + """Initialize HeuristicLoadFollowingController.""" + self.config = HeuristicLoadFollowingControllerConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control") + ) + + self.n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + + super().setup() + + if self.config.charge_efficiency is not None: + self.charge_efficiency = self.config.charge_efficiency + if self.config.discharge_efficiency is not None: + self.discharge_efficiency = self.config.discharge_efficiency + + def set_fixed_dispatch( + self, + commodity_in: list, + system_commodity_interface_limit: list, + commodity_demand: list, + ): + """Sets charge and discharge power of battery dispatch using fixed_dispatch attribute + and enforces available generation and charge/discharge limits. + + Args: + commodity_in (list): List of generated commodity in. + system_commodity_interface_limit (list): List of max flow rates through system + interface (e.g. grid interface). + commodity_demand (list): The demanded commodity. + + """ + + self.check_commodity_in_discharge_limit(commodity_in, system_commodity_interface_limit) + self._set_commodity_fraction_limits(commodity_in, system_commodity_interface_limit) + self._heuristic_method(commodity_in, commodity_demand) + self._fix_dispatch_model_variables() + + def _heuristic_method(self, commodity_in, commodity_demand): + """Enforces storage fraction limits and sets _fixed_dispatch attribute. + Sets the _fixed_dispatch based on commodity_demand and commodity_in. + + Args: + commodity_in: commodity generation profile. + commodity_demand: Goal amount of commodity. + + """ + for t in self.blocks.index_set(): + fd = (commodity_demand[t] - commodity_in[t]) / self.maximum_storage + if fd > 0.0: # Discharging + if fd > self.max_discharge_fraction[t]: + fd = self.max_discharge_fraction[t] + elif fd < 0.0: # Charging + if -fd > self.max_charge_fraction[t]: + fd = -self.max_charge_fraction[t] + self._fixed_dispatch[t] = fd diff --git a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py index 9b57e7bf5..28ddb2035 100644 --- a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py +++ b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py @@ -174,11 +174,11 @@ def setup(self): desc="Mass of RCA tumbler slurry produced (grams)", ) self.add_output( - "excess_energy", + "unused_energy", val=0.0, shape=n_timesteps, units="W", - desc="Excess energy unused by OAE system (W)", + desc="Unused energy unused by OAE system (W)", ) def compute(self, inputs, outputs): @@ -230,7 +230,7 @@ def compute(self, inputs, outputs): outputs["cost_acid_disposal"] = oae_outputs.X_disp outputs["based_added_seawater_max_power"] = oae_outputs.mol_OH_yr_MaxPwr outputs["mass_rca"] = oae_outputs.slurry_mass_max - outputs["excess_energy"] = oae_outputs.OAE_outputs["P_xs"] + outputs["unused_energy"] = oae_outputs.OAE_outputs["P_xs"] @define @@ -370,11 +370,11 @@ def setup(self): desc="Annual energy production in kWac", ) self.add_input( - "excess_energy", + "unused_energy", val=0.0, shape=n_timesteps, units="W", - desc="Excess energy unused by OAE system (W)", + desc="Unused energy unused by OAE system (W)", ) self.add_input( "mass_sellable_product", @@ -428,8 +428,8 @@ def setup(self): def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): annual_energy_cost_usd_yr = inputs["LCOE"] * ( - inputs["annual_energy"] - (sum(inputs["excess_energy"]) / 1000) # Convert W to kW - ) # remove excess power from the annual energy cost only used power considered + inputs["annual_energy"] - (sum(inputs["unused_energy"]) / 1000) # Convert W to kW + ) # remove unused power from the annual energy cost only used power considered costs = echem_oae.OAECosts( mass_product=inputs["mass_sellable_product"], value_product=inputs["value_products"], diff --git a/h2integrate/converters/wind/wind_plant_baseclass.py b/h2integrate/converters/wind/wind_plant_baseclass.py index e127e0d47..eb35ca5b8 100644 --- a/h2integrate/converters/wind/wind_plant_baseclass.py +++ b/h2integrate/converters/wind/wind_plant_baseclass.py @@ -58,6 +58,7 @@ def calculate_bounding_heights_from_resource_data( if len(params_heights) > 0: heights_per_parameter.update({param: params_heights}) allowed_hub_height_meters.update(params_heights) + # Check if any resource height is equal to the hub-height if any(float(hh) == float(hub_height_meters) for hh in allowed_hub_height_meters): return [int(hub_height_meters)] diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index a98d1fd27..273ff2047 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -35,6 +35,9 @@ def __init__(self, config_file): self.prob = om.Problem(reports=create_om_reports) self.model = self.prob.model + # track if setup has been called via boolean + self.setup_has_been_called = False + # create site-level model # this is an OpenMDAO group that contains all the site information self.create_site_model() @@ -230,6 +233,7 @@ def create_technology_models(self): self.tech_names = [] self.performance_models = [] self.control_strategies = [] + self.dispatch_rule_sets = [] self.cost_models = [] self.finance_models = [] @@ -239,6 +243,17 @@ def create_technology_models(self): for tech_name, individual_tech_config in self.technology_config["technologies"].items(): perf_model = individual_tech_config.get("performance_model", {}).get("model") + if "control_parameters" in individual_tech_config["model_inputs"]: + if "tech_name" in individual_tech_config["model_inputs"]["control_parameters"]: + provided_tech_name = individual_tech_config["model_inputs"][ + "control_parameters" + ]["tech_name"] + if tech_name != provided_tech_name: + raise ValueError( + f"tech_name in control_parameters ({provided_tech_name}) must match " + f"the top-level name of the tech group ({tech_name})" + ) + if perf_model is not None and "feedstock" in perf_model: comp = self.supported_models[perf_model]( driver_config=self.driver_config, @@ -260,6 +275,20 @@ def create_technology_models(self): and perf_model == cost_model and perf_model in combined_performance_and_cost_models ): + # Catch dispatch rules for systems that have the same performance & cost models + if "dispatch_rule_set" in individual_tech_config: + control_object = self._process_model( + "dispatch_rule_set", individual_tech_config, tech_group + ) + self.control_strategies.append(control_object) + + # Catch control models for systems that have the same performance & cost models + if "control_strategy" in individual_tech_config: + control_object = self._process_model( + "control_strategy", individual_tech_config, tech_group + ) + self.control_strategies.append(control_object) + comp = self.supported_models[perf_model]( driver_config=self.driver_config, plant_config=self.plant_config, @@ -270,17 +299,17 @@ def create_technology_models(self): self.cost_models.append(comp) self.finance_models.append(comp) - # Catch control models for systems that have the same performance & cost models - if "control_strategy" in individual_tech_config: - control_object = self._process_model( - "control_strategy", individual_tech_config, tech_group - ) - self.control_strategies.append(control_object) continue # Process the models - # TODO: integrate finance_model into the loop below - model_types = ["performance_model", "control_strategy", "cost_model"] + # TODO: integrate financial_model into the loop below + model_types = [ + "dispatch_rule_set", + "control_strategy", + "performance_model", + "cost_model", + ] + for model_type in model_types: if model_type in individual_tech_config: model_object = self._process_model( @@ -542,7 +571,7 @@ def create_finance_model(self): "model_inputs": { "performance_parameters": { "commodity": commodity, - "commodity_units": "kW" if commodity == "electricity" else "kg", + "commodity_units": "kW" if commodity == "electricity" else "kg/h", } } } @@ -951,8 +980,30 @@ def connect_technologies(self): self.plant.linear_solver = om.DirectSolver() break + # initialize dispatch rules connection list + tech_to_dispatch_connections = self.plant_config.get("tech_to_dispatch_connections", []) + + for connection in tech_to_dispatch_connections: + if len(connection) != 2: + err_msg = f"Invalid tech to dispatching_tech_name connection: {connection}" + raise ValueError(err_msg) + + tech_name, dispatching_tech_name = connection + + if tech_name == dispatching_tech_name: + continue + else: + # Connect the dispatch rules output to the dispatching_tech_name input + self.model.connect( + f"{tech_name}.dispatch_block_rule_function", + f"{dispatching_tech_name}.dispatch_block_rule_function_{tech_name}", + ) + if (pyxdsm is not None) and (len(technology_interconnections) > 0): - create_xdsm_from_config(self.plant_config) + try: + create_xdsm_from_config(self.plant_config) + except FileNotFoundError as e: + print(f"Unable to create system XDSM diagram. Error: {e}") def create_driver_model(self): """ @@ -969,10 +1020,19 @@ def create_driver_model(self): if "recorder" in self.driver_config: myopt.set_recorders(self.prob) + def setup(self): + """ + Extremely light wrapper to setup the OpenMDAO problem and track setup status. + """ + self.setup_has_been_called = True + self.prob.setup() + def run(self): # do model setup based on the driver config # might add a recorder, driver, set solver tolerances, etc - self.prob.setup() + if not self.setup_has_been_called: + self.prob.setup() + self.setup_has_been_called = True self.prob.run_driver() diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index 9012456d6..6dc751a56 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -9,6 +9,7 @@ from h2integrate.converters.hopp.hopp_wrapper import HOPPComponent from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel from h2integrate.storage.hydrogen.eco_storage import H2Storage +from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel from h2integrate.transporters.generic_combiner import GenericCombinerPerformanceModel from h2integrate.transporters.generic_splitter import GenericSplitterPerformanceModel from h2integrate.converters.nitrogen.simple_ASU import SimpleASUCostModel, SimpleASUPerformanceModel @@ -17,10 +18,6 @@ HydrogenTankCostModel, HydrogenTankPerformanceModel, ) -from h2integrate.controllers.openloop_controllers import ( - DemandOpenLoopController, - PassThroughOpenLoopController, -) from h2integrate.converters.hydrogen.wombat_model import WOMBATElectrolyzerModel from h2integrate.converters.wind.wind_plant_pysam import PYSAMWindPlantPerformanceModel from h2integrate.storage.battery.atb_battery_cost import ATBBatteryCostModel @@ -60,6 +57,9 @@ ) from h2integrate.converters.hydrogen.singlitico_cost_model import SingliticoCostModel from h2integrate.converters.co2.marine.direct_ocean_capture import DOCCostModel, DOCPerformanceModel +from h2integrate.control.control_strategies.pyomo_controllers import ( + HeuristicLoadFollowingController, +) from h2integrate.resource.solar.nrel_developer_goes_api_models import ( GOESTMYSolarAPI, GOESConusSolarAPI, @@ -69,6 +69,10 @@ from h2integrate.converters.hydrogen.eco_tools_pem_electrolyzer import ( ECOElectrolyzerPerformanceModel, ) +from h2integrate.control.control_strategies.openloop_controllers import ( + DemandOpenLoopController, + PassThroughOpenLoopController, +) from h2integrate.converters.water_power.hydro_plant_run_of_river import ( RunOfRiverHydroCostModel, RunOfRiverHydroPerformanceModel, @@ -78,6 +82,9 @@ NaturalGeoH2FinanceModel, NaturalGeoH2PerformanceModel, ) +from h2integrate.control.control_rules.converters.generic_converter import ( + PyomoDispatchGenericConverter, +) from h2integrate.converters.co2.marine.ocean_alkalinity_enhancement import ( OAECostModel, OAEPerformanceModel, @@ -91,6 +98,9 @@ StimulatedGeoH2FinanceModel, StimulatedGeoH2PerformanceModel, ) +from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( + PyomoRuleStorageBaseclass, +) supported_models = { @@ -155,6 +165,7 @@ # Simple Summers "summer": GenericSummerPerformanceModel, # Storage + "pysam_battery": PySAMBatteryPerformanceModel, "h2_storage": H2Storage, "hydrogen_tank_performance": HydrogenTankPerformanceModel, "hydrogen_tank_cost": HydrogenTankCostModel, @@ -163,6 +174,10 @@ # Control "pass_through_controller": PassThroughOpenLoopController, "demand_open_loop_controller": DemandOpenLoopController, + "heuristic_load_following_controller": HeuristicLoadFollowingController, + # Dispatch + "pyomo_dispatch_generic_converter": PyomoDispatchGenericConverter, + "pyomo_dispatch_generic_storage": PyomoRuleStorageBaseclass, # Feedstock "feedstock_performance": FeedstockPerformanceModel, "feedstock_cost": FeedstockCostModel, diff --git a/h2integrate/core/test/test_recorder.py b/h2integrate/core/test/test_recorder.py index 680357808..2ad2b22a9 100644 --- a/h2integrate/core/test/test_recorder.py +++ b/h2integrate/core/test/test_recorder.py @@ -1,4 +1,6 @@ import os +import shutil +from pathlib import Path from h2integrate import EXAMPLE_DIR from h2integrate.core.h2integrate_model import H2IntegrateModel @@ -11,6 +13,28 @@ TEST_RECORDER_OUTPUT_FILE2 = "testingtesting_filename1.sql" +def test_cleanup_from_past_tests(subtests): + """This function just removes any left over files if they + were not properly cleaned up in the last test run. The other + tests are interdependent via output files, so it is possible + to have tests fail because of previous failures. + """ + + os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") + + dirs_to_remove = [ + "wind_plant_run", + TEST_RECORDER_OUTPUT_DIR, + ] + + for d in dirs_to_remove: + p = Path(d) # relative to cwd set above + if p.exists(): + shutil.rmtree(p) + with subtests.test(f"{d} does not exist"): + assert not p.exists() + + def test_output_folder_creation_first_run(subtests): # Test that the sql file is written to the output folder # with the specified name diff --git a/h2integrate/simulation/technologies/iron/rosner_override/finance_model.py b/h2integrate/simulation/technologies/iron/rosner_override/finance_model.py index 1fb03b8d3..432637cac 100644 --- a/h2integrate/simulation/technologies/iron/rosner_override/finance_model.py +++ b/h2integrate/simulation/technologies/iron/rosner_override/finance_model.py @@ -68,9 +68,9 @@ def main(config): raw_water_unitcost = 0.441167535 slag_disposal_unitcost = 28.0 if config.product_selection in ["ng_eaf", "h2_eaf"]: - excess_oxygen = 0 + unused_oxygen = 0 else: - excess_oxygen = 395 + unused_oxygen = 395 # Get plant performances into data frame/series with performance names as index performance = config.performance @@ -250,7 +250,7 @@ def main(config): pf.add_coproduct( name=f"{module_label}: Oxygen sales", - usage=excess_oxygen, + usage=unused_oxygen, unit="kg O2 per metric tonne of iron", cost=oxygen_market_price, escalation=gen_inflation, diff --git a/h2integrate/simulation/technologies/steel/steel.py b/h2integrate/simulation/technologies/steel/steel.py index 75037af97..37bdb6eae 100644 --- a/h2integrate/simulation/technologies/steel/steel.py +++ b/h2integrate/simulation/technologies/steel/steel.py @@ -17,8 +17,8 @@ class Feedstocks: Attributes: natural_gas_prices (Dict[str, float]): Natural gas costs, indexed by year ($/GJ). - excess_oxygen (float): - Excess oxygen produced (kgO2), default = 395. + unused_oxygen (float): + Unused oxygen produced (kgO2), default = 395. lime_unitcost (float): Cost per metric ton of lime ($/metric ton). lime_transport_cost (float): @@ -61,7 +61,7 @@ class Feedstocks: """ natural_gas_prices: dict[str, float] - excess_oxygen: float = 395 + unused_oxygen: float = 395 lime_unitcost: float = 122.1 lime_transport_cost: float = 0.0 # USD/metric ton lime carbon_unitcost: float = 236.97 @@ -834,7 +834,7 @@ def run_steel_finance_model( pf.add_coproduct( name="Oxygen sales", - usage=feedstocks.excess_oxygen, + usage=feedstocks.unused_oxygen, unit="kg O2 per metric ton of steel", cost=feedstocks.oxygen_market_price, escalation=config.gen_inflation, diff --git a/h2integrate/storage/battery/atb_battery_cost.py b/h2integrate/storage/battery/atb_battery_cost.py index 6fd55027f..9c80a3f42 100644 --- a/h2integrate/storage/battery/atb_battery_cost.py +++ b/h2integrate/storage/battery/atb_battery_cost.py @@ -19,7 +19,9 @@ class ATBBatteryCostConfig(CostModelBaseConfig): energy_capex (float|int): battery energy capital cost in $/kWh power_capex (float|int): battery power capital cost in $/kW opex_fraction (float): annual operating cost as a fraction of the total system cost. - cost_year (int): dollar year corresponding to input costs + max_charge_rate (float): maximum charge rate of battery in kW + max_capacity (float): maximum storage capacity of battery in kWh + """ energy_capex: float | int = field(validator=gt_zero) @@ -54,7 +56,7 @@ def setup(self): super().setup() self.add_input( - "charge_rate", + "max_charge_rate", val=self.config.max_charge_rate, units="kW", desc="Battery charge/discharge rate", @@ -67,13 +69,13 @@ def setup(self): ) def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - storage_duration_hrs = inputs["storage_capacity"] / inputs["charge_rate"] + storage_duration_hrs = inputs["storage_capacity"] / inputs["max_charge_rate"] # CapEx equation from Cell E29 total_system_cost = ( storage_duration_hrs * self.config.energy_capex ) + self.config.power_capex - capex = total_system_cost * inputs["charge_rate"] + capex = total_system_cost * inputs["max_charge_rate"] # OpEx equation from cells in the Fixed Operation and Maintenance Expenses section opex = self.config.opex_fraction * capex outputs["CapEx"] = capex diff --git a/h2integrate/storage/battery/battery_baseclass.py b/h2integrate/storage/battery/battery_baseclass.py new file mode 100644 index 000000000..6affdcaf5 --- /dev/null +++ b/h2integrate/storage/battery/battery_baseclass.py @@ -0,0 +1,50 @@ +import openmdao.api as om + + +class BatteryPerformanceBaseClass(om.ExplicitComponent): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.add_input( + "electricity_in", + val=0.0, + shape_by_conn=True, + units="kW", + desc="Power input to Battery", + ) + + self.add_output( + "electricity_out", + val=0.0, + copy_shape="electricity_in", + units="kW", + desc="Total electricity out of Battery", + ) + + self.add_output( + "SOC", + val=0.0, + copy_shape="electricity_in", + units="percent", + desc="State of charge of Battery", + ) + + self.add_output( + "battery_electricity_discharge", + val=0.0, + copy_shape="electricity_in", + units="kW", + desc="Electricity output from Battery only", + ) + + def compute(self, inputs, outputs): + """ + Computation for the OM component. + + For a template class this is not implemented and raises an error. + """ + + raise NotImplementedError("This method should be implemented in a subclass.") diff --git a/h2integrate/storage/battery/pysam_battery.py b/h2integrate/storage/battery/pysam_battery.py new file mode 100644 index 000000000..eb518517b --- /dev/null +++ b/h2integrate/storage/battery/pysam_battery.py @@ -0,0 +1,590 @@ +from dataclasses import asdict, dataclass +from collections.abc import Sequence + +import numpy as np +import PySAM.BatteryTools as BatteryTools +import PySAM.BatteryStateful as BatteryStateful +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import gt_zero, contains, range_val +from h2integrate.storage.battery.battery_baseclass import BatteryPerformanceBaseClass + + +@dataclass +class BatteryOutputs: + I: Sequence # noqa: E741 + P: Sequence + Q: Sequence + SOC: Sequence + T_batt: Sequence + gen: Sequence + n_cycles: Sequence + P_chargeable: Sequence + P_dischargeable: Sequence + unmet_demand: list[float] + unused_commodity: list[float] + + """ + Container for simulated outputs from the `BatteryStateful` and H2I dispatch models. + + Attributes: + I (Sequence): Battery current [A] per timestep. + P (Sequence): Battery power [kW] per timestep. + Q (Sequence): Battery capacity [Ah] per timestep. + SOC (Sequence): State of charge [%] per timestep. + T_batt (Sequence): Battery temperature [°C] per timestep. + gen (Sequence): Generated power [kW] per timestep. + n_cycles (Sequence): Cumulative rainflow cycles since start of simulation [1]. + P_chargeable (Sequence): Maximum estimated chargeable power [kW] per timestep. + P_dischargeable (Sequence): Maximum estimated dischargeable power [kW] per timestep. + + unmet_demand (list[float]): Unmet demand [kW] per timestep. + unused_commodity (list[float]): Unused available commodity [kW] per timestep. + """ + + def __init__(self, n_timesteps, n_control_window): + """Class for storing stateful battery and dispatch outputs.""" + self.stateful_attributes = [ + "I", + "P", + "Q", + "SOC", + "T_batt", + "n_cycles", + "P_chargeable", + "P_dischargeable", + ] + for attr in self.stateful_attributes: + setattr(self, attr, [0.0] * n_timesteps) + + self.dispatch_lifecycles_per_control_window = [None] * int(n_timesteps / n_control_window) + + self.component_attributes = ["unmet_demand", "unused_commodity"] + for attr in self.component_attributes: + setattr(self, attr, [0.0] * n_timesteps) + + def export(self): + return asdict(self) + + +@define +class PySAMBatteryPerformanceModelConfig(BaseConfig): + """Configuration class for battery performance models. + + This class defines configuration parameters for simulating battery + performance in PySAM system models. It includes + specifications such as capacity, chemistry, state-of-charge limits, + and reference module characteristics. + + Attributes: + max_capacity (float): + Maximum battery energy capacity in kilowatt-hours (kWh). + Must be greater than zero. + max_charge_rate (float): + Rated power capacity of the battery in kilowatts (kW). + Must be greater than zero. + system_model_source (str): + Source software for the system model. "hopp" source has not been brought + over from HOPP yet. Options are: + - "pysam" + chemistry (str): + Battery chemistry option. "LDES" has not been brought over from HOPP yet. + Supported values include: + - PySAM: "LFPGraphite", "LMOLTO", "LeadAcid", "NMCGraphite" + min_charge_percent (float): + Minimum allowable state of charge as a fraction (0 to 1). + max_charge_percent (float): + Maximum allowable state of charge as a fraction (0 to 1). + init_charge_percent (float): + Initial state of charge as a fraction (0 to 1). + n_control_window (int, optional): + Number of timesteps in the control window. Defaults to 24. + n_horizon_window (int, optional): + Number of timesteps in the horizon window. Defaults to 48. + control_variable (str): + Control mode for the PySAM battery, either ``"input_power"`` + or ``"input_current"``. + ref_module_capacity (int | float, optional): + Reference module capacity in kilowatt-hours (kWh). + Defaults to 400. + ref_module_surface_area (int | float, optional): + Reference module surface area in square meters (m²). + Defaults to 30. + """ + + max_capacity: float = field(validator=gt_zero) + max_charge_rate: float = field(validator=gt_zero) + + system_model_source: str = field(validator=contains(["pysam"])) + chemistry: str = field( + validator=contains(["LFPGraphite", "LMOLTO", "LeadAcid", "NMCGraphite"]), + ) + min_charge_percent: float = field(validator=range_val(0, 1)) + max_charge_percent: float = field(validator=range_val(0, 1)) + init_charge_percent: float = field(validator=range_val(0, 1)) + n_control_window: int = field(validator=gt_zero, default=24) + n_horizon_window: int = field(validator=gt_zero, default=48) + control_variable: str = field( + default="input_power", validator=contains(["input_power", "input_current"]) + ) + ref_module_capacity: int | float = field(default=400) + ref_module_surface_area: int | float = field(default=30) + + +class PySAMBatteryPerformanceModel(BatteryPerformanceBaseClass): + """OpenMDAO component wrapping the PySAM Battery Performance model. + + This class integrates the NREL PySAM `BatteryStateful` model into + an OpenMDAO component. It provides inputs and outputs for battery + capacity, charge/discharge power, state of charge, and unmet or unused + demand. + + The PySAM battery simulation does not always respect max and min charge + bounds set by the user. It may exceed the bounds by up to 5% SOC. + + Attributes: + config (PySAMBatteryPerformanceModelConfig): + Configuration parameters for the battery performance model. + system_model (BatteryStateful): + Instance of the PySAM BatteryStateful model, initialized with + the selected chemistry and configuration parameters. + outputs (BatteryOutputs): + Container for simulation outputs such as SOC, chargeable/dischargeable + power, unmet demand, and unused commodities. + unmet_demand (float): + Tracks unmet demand during simulation (kW). + unused_commodity (float): + Tracks unused commodity during simulation (kW). + + Inputs: + max_charge_rate (float): + Battery charge rate in kilowatts per hour (kW). + storage_capacity (float): + Total energy storage capacity in kilowatt-hours (kWh). + electricity_demand (ndarray): + Power demand time series (kW). + electricity_in (ndarray): + Commanded input electricity (kW), typically from dispatch. + + Outputs: + P_chargeable (ndarray): + Maximum chargeable power (kW). + P_dischargeable (ndarray): + Maximum dischargeable power (kW). + unmet_demand_out (ndarray): + Remaining unmet demand after discharge (kW). + unused_commodity_out (ndarray): + Unused energy not absorbed by the battery (kW). + electricity_out (ndarray): + Dispatched electricity to meet demand (kW), including electricity from + electricity_in that was never used to charge the battery and + battery_electricity_discharge. + SOC (ndarray): + Battery state of charge (%). + battery_electricity_discharge (ndarray): + Electricity output from the battery model (kW). + + Methods: + setup(): + Defines model inputs, outputs, configuration, and connections + to plant-level dispatch (if applicable). + compute(inputs, outputs, discrete_inputs, discrete_outputs): + Runs the PySAM BatteryStateful model for a simulation timestep, + updating outputs such as SOC, charge/discharge limits, unmet + demand, and unused commodities. + simulate(electricity_in, electricity_demand, time_step_duration, control_variable, + sim_start_index=0): + Simulates the battery behavior across timesteps using either + input power or input current as control. This method is similar to what is + provided in typical compute methods in H2Integrate for running models, but + needs to be a separate method here to allow the dispatch function to call + and manage the performance model. + _set_control_mode(control_mode=1.0, input_power=0.0, input_current=0.0, + control_variable="input_power"): + Sets the battery control mode (power or current). + + Notes: + - Default timestep is 1 hour (``dt=1.0``). + - State of charge (SOC) bounds are set using the configuration's + ``min_charge_percent`` and ``max_charge_percent``. + - If a Pyomo dispatch solver is provided, the battery will simulate + dispatch decisions using solver inputs. + """ + + def setup(self): + """Set up the PySAM Battery Performance model in OpenMDAO. + + Initializes the configuration, defines inputs/outputs for OpenMDAO, + and creates a `BatteryStateful` instance with the selected chemistry. + If dispatch connections are specified, it also sets up a discrete + input for Pyomo solver integration. + """ + self.config = PySAMBatteryPerformanceModelConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=False, + ) + + self.add_input( + "max_charge_rate", + val=self.config.max_charge_rate, + units="kW", + desc="Battery charge rate", + ) + + self.add_input( + "storage_capacity", + val=self.config.max_capacity, + units="kW*h", + desc="Battery storage capacity", + ) + + BatteryPerformanceBaseClass.setup(self) + + self.add_input( + "electricity_demand", + val=0.0, + copy_shape="electricity_in", + units="kW", + desc="Power demand", + ) + + self.add_output( + "P_chargeable", + val=0.0, + copy_shape="electricity_in", + units="kW", + desc="Estimated max chargeable power", + ) + + self.add_output( + "P_dischargeable", + val=0.0, + copy_shape="electricity_in", + units="kW", + desc="Estimated max dischargeable power", + ) + + self.add_output( + "unmet_electricity_demand_out", + val=0.0, + copy_shape="electricity_in", + units="kW", + desc="Unmet power demand", + ) + + self.add_output( + "unused_electricity_out", + val=0.0, + copy_shape="electricity_in", + units="kW", + desc="Unused generated commodity", + ) + + # Initialize the PySAM BatteryStateful model with defaults + self.system_model = BatteryStateful.default(self.config.chemistry) + + n_timesteps = int( + self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + ) # self.config.n_timesteps + self.dt_hr = int(self.options["plant_config"]["plant"]["simulation"]["dt"]) / ( + 60**2 + ) # convert from seconds to hours + n_control_window = self.config.n_control_window + + # Setup outputs for the battery model to be stored during the compute method + self.outputs = BatteryOutputs(n_timesteps=n_timesteps, n_control_window=n_control_window) + + # create inputs for pyomo control model + if "tech_to_dispatch_connections" in self.options["plant_config"]: + # get technology group name + # TODO: The split below seems brittle + self.tech_group_name = self.pathname.split(".") + for _source_tech, intended_dispatch_tech in self.options["plant_config"][ + "tech_to_dispatch_connections" + ]: + if any(intended_dispatch_tech in name for name in self.tech_group_name): + self.add_discrete_input("pyomo_dispatch_solver", val=dummy_function) + break + + self.unmet_demand = 0.0 + self.unused_commodity = 0.0 + + def compute(self, inputs, outputs, discrete_inputs=[], discrete_outputs=[]): + """Run the PySAM Battery model for one simulation step. + + Configures the battery stateful model parameters (SOC limits, timestep, + thermal properties, etc.), executes the simulation, and stores the + results in OpenMDAO outputs. + + Args: + inputs (dict): + Continuous input values (e.g., electricity_in, electricity_demand). + outputs (dict): + Dictionary where model outputs (SOC, P_chargeable, unmet demand, etc.) + are written. + discrete_inputs (dict): + Discrete inputs such as control mode or Pyomo solver. + discrete_outputs (dict): + Discrete outputs (unused in this component). + """ + # Size the battery based on inputs -> method brought from HOPP + module_specs = { + "capacity": self.config.ref_module_capacity, + "surface_area": self.config.ref_module_surface_area, + } + + BatteryTools.battery_model_sizing( + self.system_model, + self.config.max_charge_rate, + self.config.max_capacity, + self.system_model.ParamsPack.nominal_voltage, + module_specs=module_specs, + ) + self.system_model.ParamsPack.h = 20 + self.system_model.ParamsPack.Cp = 900 + self.system_model.ParamsCell.resistance = 0.001 + self.system_model.ParamsCell.C_rate = ( + inputs["max_charge_rate"][0] / inputs["storage_capacity"][0] + ) + + # Minimum set of parameters to set to get statefulBattery to work + self._set_control_mode() + + self.system_model.value("input_current", 0.0) + self.system_model.value("dt_hr", self.dt_hr) + self.system_model.value("minimum_SOC", self.config.min_charge_percent * 100) + self.system_model.value("maximum_SOC", self.config.max_charge_percent * 100) + self.system_model.value("initial_SOC", self.config.init_charge_percent * 100) + + # Setup PySAM battery model using PySAM method + self.system_model.setup() + + # Run PySAM battery model 1 timestep to initialize values + self.system_model.value("dt_hr", self.dt_hr) + self.system_model.value("input_power", 0.0) + self.system_model.execute(0) + + if "pyomo_dispatch_solver" in discrete_inputs: + # Simulate the battery with provided dispatch inputs + dispatch = discrete_inputs["pyomo_dispatch_solver"] + kwargs = { + "time_step_duration": self.dt_hr, + "control_variable": self.config.control_variable, + } + ( + total_power_out, + battery_power_out, + unmet_demand, + unused_commodity, + soc, + ) = dispatch(self.simulate, kwargs, inputs) + + else: + # Simulate the battery with provided inputs and no controller. + # This essentially asks for discharge when demand exceeds input + # and requests charge when input exceeds demand + + # estimate required dispatch commands + pseudo_commands = inputs["electricity_demand"] - inputs["electricity_in"] + + battery_power, soc = self.simulate( + storage_dispatch_commands=pseudo_commands, + time_step_duration=self.dt_hr, + control_variable=self.config.control_variable, + ) + n_time_steps = len(inputs["electricity_demand"]) + + # determine battery discharge + self.outputs.P = battery_power + battery_power_out = [np.max([0, battery_power[i]]) for i in range(n_time_steps)] + + # calculate combined power out from inflow source and battery (note: battery_power is + # negative when charging) + combined_power_out = inputs["electricity_in"] + battery_power + + # find the total power out to meet demand + total_power_out = np.minimum(inputs["electricity_demand"], combined_power_out) + + # determine how much of the inflow electricity was unused + self.outputs.unused_commodity = [ + np.max([0, combined_power_out[i] - inputs["electricity_demand"][i]]) + for i in range(n_time_steps) + ] + unused_commodity = self.outputs.unused_commodity + + # determine how much demand was not met + self.outputs.unmet_demand = [ + np.max([0, inputs["electricity_demand"][i] - combined_power_out[i]]) + for i in range(n_time_steps) + ] + unmet_demand = self.outputs.unmet_demand + + outputs["unmet_electricity_demand_out"] = unmet_demand + outputs["unused_electricity_out"] = unused_commodity + outputs["battery_electricity_discharge"] = battery_power_out + outputs["electricity_out"] = total_power_out + outputs["SOC"] = soc + outputs["P_chargeable"] = self.outputs.P_chargeable + outputs["P_dischargeable"] = self.outputs.P_dischargeable + + def simulate( + self, + storage_dispatch_commands: list, + time_step_duration: list, + control_variable: str, + sim_start_index: int = 0, + ): + """Run the PySAM BatteryStateful model over a control window. + + Applies a sequence of dispatch commands (positive = discharge, negative = charge) + one timestep at a time. Each command is clipped to allowable instantaneous + charge / discharge limits derived from: + 1. Rated power (config.max_charge_rate) + 2. PySAM internal estimates (P_chargeable / P_dischargeable) + 3. Remaining energy headroom vs. SOC bounds + + The method updates internal rolling arrays in self.outputs in-place using + sim_start_index as an offset (enabling sliding / receding horizon logic). + + The simulate method is much of what would normally be in the compute() method + of a component, but is separated into its own function here to allow the dispatch() + method to manage calls to the performance model. + + Args: + storage_dispatch_commands : Sequence[float] + Commanded power per timestep (kW). Negative = charge, positive = discharge. + Length should be = config.n_control_window. + time_step_duration : float | Sequence[float] + Timestep duration in hours. Scalar applied uniformly or sequence matching + len(storage_dispatch_commands). + control_variable : str + PySAM control input to set each step ("input_power" or "input_current"). + sim_start_index : int, optional + Starting index for writing into persistent output arrays (default 0). + + Returns: + tuple[np.ndarray, np.ndarray] + (battery_power_kW, soc_percent) + battery_power_kW : array of PySAM P values (kW) per timestep + (positive = discharge, negative = charge). + soc_percent : array of SOC values (%) per timestep. + + Notes: + - SOC bounds may still be exceeded slightly due to PySAM internal dynamics. + - self.outputs.stateful_attributes are updated only if the attribute exists + in StatePack or StateCell. + - self.outputs.component_attributes (e.g., unmet_demand) are not modified here; + they are populated in compute(), unless an external dispatcher manages them. + """ + + # Loop through the provided input power/current (decided by control_variable) + self.system_model.value("dt_hr", time_step_duration) + + # initialize outputs + storage_power_out_timesteps = np.zeros(self.config.n_control_window) + soc_timesteps = np.zeros(self.config.n_control_window) + + # get constant battery parameters needed during all time steps + soc_max = self.system_model.value("maximum_SOC") / 100.0 + soc_min = self.system_model.value("minimum_SOC") / 100.0 + + for t, dispatch_command_t in enumerate(storage_dispatch_commands): + # get storage SOC at time t + soc = self.system_model.value("SOC") / 100.0 + + # manually adjust the dispatch command based on SOC + ## for when battery is withing set bounds + # according to specs + max_chargeable_0 = self.config.max_charge_rate + # according to simulation + max_chargeable_1 = np.maximum(0, -self.system_model.value("P_chargeable")) + # according to soc + max_chargeable_2 = np.maximum( + 0, (soc_max - soc) * self.config.max_capacity / self.dt_hr + ) + # compare all versions of max_chargeable + max_chargeable = np.min([max_chargeable_0, max_chargeable_1, max_chargeable_2]) + + # according to specs + max_dischargeable_0 = self.config.max_charge_rate + # according to simulation + max_dischargeable_1 = np.maximum(0, self.system_model.value("P_dischargeable")) + # according to soc + max_dischargeable_2 = np.maximum( + 0, (soc - soc_min) * self.config.max_capacity / self.dt_hr + ) + # compare all versions of max_dischargeable + max_dischargeable = np.min( + [max_dischargeable_0, max_dischargeable_1, max_dischargeable_2] + ) + + if dispatch_command_t < -max_chargeable: + dispatch_command_t = -max_chargeable + if dispatch_command_t > max_dischargeable: + dispatch_command_t = max_dischargeable + + # if battery soc is outside the set bounds, discharge battery down to set bounds + if (soc > soc_max) and dispatch_command_t < 0: # and (dispatch_command_t <= 0): + dispatch_command_t = 0.0 + + # Set the input variable to the desired value + self.system_model.value(control_variable, dispatch_command_t) + + # Simulate the PySAM BatteryStateful model + self.system_model.execute(0) + + # save outputs + storage_power_out_timesteps[t] = self.system_model.value("P") + soc_timesteps[t] = self.system_model.value("SOC") + + # Store outputs based on the outputs defined in `BatteryOutputs` above. The values are + # scraped from the PySAM model modules `StatePack` and `StateCell`. + for attr in self.outputs.stateful_attributes: + if hasattr(self.system_model.StatePack, attr) or hasattr( + self.system_model.StateCell, attr + ): + getattr(self.outputs, attr)[sim_start_index + t] = self.system_model.value(attr) + + for attr in self.outputs.component_attributes: + getattr(self.outputs, attr)[sim_start_index + t] = getattr(self, attr) + + return storage_power_out_timesteps, soc_timesteps + + def _set_control_mode( + self, + control_mode: float = 1.0, + input_power: float = 0.0, + input_current: float = 0.0, + control_variable: str = "input_power", + ): + """Set the control mode for the PySAM BatteryStateful model. + + Configures whether the battery operates in power-control or + current-control mode and initializes input values. + + Args: + control_mode (float, optional): + Mode flag: ``1.0`` for power control, ``0.0`` for current control. + Defaults to 1.0. + input_power (float, optional): + Initial power input (kW). Defaults to 0.0. + input_current (float, optional): + Initial current input (A). Defaults to 0.0. + control_variable (str, optional): + Control variable name, either ``"input_power"`` or ``"input_current"``. + Defaults to "input_power". + """ + if isinstance(self.system_model, BatteryStateful.BatteryStateful): + # Power control = 1.0, current control = 0.0 + self.system_model.value("control_mode", control_mode) + # Need initial values + self.system_model.value("input_power", input_power) + self.system_model.value("input_current", input_current) + # Either `input_power` or `input_current`; need to adjust `control_mode` above + self.control_variable = control_variable + + +def dummy_function(): + # this function is required for initializing the pyomo control input and nothing else + pass diff --git a/h2integrate/storage/battery/test_battery/inputs/tech_config.yaml b/h2integrate/storage/battery/test_battery/inputs/tech_config.yaml new file mode 100644 index 000000000..39114df9d --- /dev/null +++ b/h2integrate/storage/battery/test_battery/inputs/tech_config.yaml @@ -0,0 +1,28 @@ +name: "technology_config" +description: "This hybrid plant stores and discharges electricity" + +technologies: + battery: + dispatch_rule_set: + model: "pyomo_dispatch_generic_storage" + performance_model: + model: "pysam_battery" + cost_model: + model: "pysam_battery" + model_inputs: + shared_parameters: + max_charge_rate: 50000 + max_capacity: 200000 + n_control_window: 24 + n_horizon_window: 48 + dt: 1.0 + n_timesteps: 24 + init_charge_percent: 0.5 + max_charge_percent: 0.9 + min_charge_percent: 0.1 + performance_parameters: + system_model_source: "pysam" + chemistry: "LFPGraphite" + dispatch_rule_parameters: + commodity_name: "electricity" + commodity_storage_units: "kW" diff --git a/h2integrate/storage/battery/test_battery/test_pysam_battery.py b/h2integrate/storage/battery/test_battery/test_pysam_battery.py new file mode 100644 index 000000000..6f6467a0f --- /dev/null +++ b/h2integrate/storage/battery/test_battery/test_pysam_battery.py @@ -0,0 +1,271 @@ +from copy import deepcopy +from pathlib import Path + +import yaml +import numpy as np +import pytest +import openmdao.api as om + +from h2integrate.storage.battery.pysam_battery import ( + PySAMBatteryPerformanceModel, + PySAMBatteryPerformanceModelConfig, +) + + +def test_pysam_battery_performance_model_without_controller(subtests): + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + with tech_config_path.open() as file: + tech_config = yaml.safe_load(file) + + # Set up the OpenMDAO problem + prob = om.Problem() + + n_control_window = tech_config["technologies"]["battery"]["model_inputs"]["shared_parameters"][ + "n_control_window" + ] + + electricity_in = np.concatenate( + (np.ones(int(n_control_window / 2)) * 1000.0, np.zeros(int(n_control_window / 2))) + ) + + electricity_demand = np.ones(int(n_control_window)) * 1000.0 + + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="electricity_in", val=electricity_in, units="kW"), + promotes=["*"], + ) + + prob.model.add_subsystem( + name="IVC2", + subsys=om.IndepVarComp(name="time_step_duration", val=np.ones(n_control_window), units="h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + name="IVC3", + subsys=om.IndepVarComp(name="electricity_demand", val=electricity_demand, units="kW"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "pysam_battery", + PySAMBatteryPerformanceModel( + plant_config={"plant": {"simulation": {"dt": 3600, "n_timesteps": 24}}}, + tech_config=tech_config["technologies"]["battery"], + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + expected_battery_power = np.array( + [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 999.9999999703667, + 998.5371904178584, + 998.5263437993322, + 998.5152383436508, + 998.5038990519837, + 998.4923409910639, + 998.4805728240225, + 998.4685988497556, + 998.4564204119457, + 998.444036724444, + 998.4314456105915, + 998.4186438286721, + ] + ) + + expected_battery_SOC = np.array( + [ + 50.07393113, + 50.07924536, + 50.08359418, + 50.08738059, + 50.09078403, + 50.09390401, + 50.09680279, + 50.0995225, + 50.1020933, + 50.10453765, + 50.10687283, + 50.10911249, + 51.82111663, + 51.35016991, + 50.87907361, + 50.40778871, + 49.93629139, + 49.46456699, + 48.99260672, + 48.52040546, + 48.04796035, + 47.57526987, + 47.10233318, + 46.62914982, + ] + ) + + expected_unment_demand = np.array( + [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.963327006000327e-08, + 1.462809582141631, + 1.4736562006678469, + 1.4847616563491783, + 1.4961009480163057, + 1.5076590089361162, + 1.519427175977512, + 1.5314011502443918, + 1.5435795880542855, + 1.555963275555996, + 1.5685543894085185, + 1.5813561713279114, + ] + ) + expected_unused_electricity = np.zeros(n_control_window) + + with subtests.test("expected_battery_power"): + np.testing.assert_allclose( + prob.get_val("battery_electricity_discharge"), expected_battery_power, rtol=1e-2 + ) + + with subtests.test("expected_battery_SOC"): + np.testing.assert_allclose(prob.get_val("SOC"), expected_battery_SOC, rtol=1e-2) + + with subtests.test("expected_battery_unmet_demand"): + np.testing.assert_allclose( + prob.get_val("unmet_electricity_demand_out"), expected_unment_demand, rtol=1e-2 + ) + + with subtests.test("expected_battery_unused_commodity"): + np.testing.assert_allclose( + prob.get_val("unused_electricity_out"), expected_unused_electricity, rtol=1e-2 + ) + + +def test_battery_config(subtests): + batt_kw = 5e3 + config_data = { + "max_capacity": batt_kw * 4, + "max_charge_rate": batt_kw, + "chemistry": "LFPGraphite", + "init_charge_percent": 0.1, + "max_charge_percent": 0.9, + "min_charge_percent": 0.1, + "system_model_source": "pysam", + } + + config = PySAMBatteryPerformanceModelConfig.from_dict(config_data) + + with subtests.test("with minimal params batt_kw"): + assert config.max_charge_rate == batt_kw + with subtests.test("with minimal params system_capacity_kwh"): + assert config.max_capacity == batt_kw * 4 + with subtests.test("with minimal params minimum_SOC"): + assert ( + config.min_charge_percent == 0.1 + ) # Decimal percent as compared to test_battery.py in HOPP 10% + with subtests.test("with minimal params maximum_SOC"): + assert ( + config.max_charge_percent == 0.9 + ) # Decimal percent as compared to test_battery.py in HOPP 90% + with subtests.test("with minimal params initial_SOC"): + assert ( + config.init_charge_percent == 0.1 + ) # Decimal percent as compared to test_battery.py in HOPP 10% + with subtests.test("with minimal params system_model_source"): + assert config.system_model_source == "pysam" + with subtests.test("with minimal params n_control_window"): + assert config.n_control_window == 24 + with subtests.test("with minimal params n_horizon_window"): + assert config.n_horizon_window == 48 + + with subtests.test("with invalid capacity"): + with pytest.raises(ValueError): + data = deepcopy(config_data) + data["max_charge_rate"] = -1.0 + PySAMBatteryPerformanceModelConfig.from_dict(data) + + with pytest.raises(ValueError): + data = deepcopy(config_data) + data["max_capacity"] = -1.0 + PySAMBatteryPerformanceModelConfig.from_dict(data) + + with subtests.test("with invalid SOC"): + # SOC values must be between 0-100 + with pytest.raises(ValueError): + data = deepcopy(config_data) + data["min_charge_percent"] = -1.0 + PySAMBatteryPerformanceModelConfig.from_dict(data) + + with pytest.raises(ValueError): + data = deepcopy(config_data) + data["max_charge_percent"] = 120.0 + PySAMBatteryPerformanceModelConfig.from_dict(data) + + with pytest.raises(ValueError): + data = deepcopy(config_data) + data["init_charge_percent"] = 120.0 + PySAMBatteryPerformanceModelConfig.from_dict(data) + + +def test_battery_initialization(subtests): + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + with tech_config_path.open() as file: + tech_config = yaml.safe_load(file) + + battery = PySAMBatteryPerformanceModel( + plant_config={"plant": {"simulation": {"dt": 3600, "n_timesteps": 24}}}, + tech_config=tech_config["technologies"]["battery"], + ) + + battery.setup() + + with subtests.test("battery attribute not None system_model"): + assert battery.system_model is not None + with subtests.test("battery attribute not None outputs"): + assert battery.outputs is not None + + with subtests.test("battery mass"): + # this test value does not match the value in test_battery.py in HOPP + # this is because the mass is computed in compute function in H2I + # and in HOPP it's in the attrs_post_init function + # suggest removing this subtest + assert battery.system_model.ParamsPack.mass * 20000 == pytest.approx(3044540.0, 1e-3) diff --git a/h2integrate/storage/hydrogen/eco_storage.py b/h2integrate/storage/hydrogen/eco_storage.py index 69a5a8fa8..59a47c88c 100644 --- a/h2integrate/storage/hydrogen/eco_storage.py +++ b/h2integrate/storage/hydrogen/eco_storage.py @@ -17,9 +17,9 @@ @define class H2StorageModelConfig(BaseConfig): - resource_name: str = field(default="hydrogen") - resource_rate_units: str = field(default="kg/h") - rating: float = field(default=640) + commodity_name: str = field(default="hydrogen") + commodity_units: str = field(default="kg") + electrolyzer_rating_mw_for_h2_storage_sizing: float | None = field(default=None) size_capacity_from_demand: dict = field(default={"flag": True}) capacity_from_max_on_turbine_storage: bool = field(default=False) type: str = field( @@ -77,6 +77,13 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): ##################### get storage capacity from hydrogen storage demand elif self.config.size_capacity_from_demand["flag"]: + if self.config.electrolyzer_rating_mw_for_h2_storage_sizing is None: + raise ( + ValueError( + "h2 storage input battery_electricity_discharge must be specified \ + if size_capacity_from_demand is True." + ) + ) hydrogen_storage_demand = np.mean( inputs["hydrogen_in"] ) # TODO: update demand based on end-use needs @@ -91,7 +98,7 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): hydrogen_storage_soc, ) = hydrogen_storage_capacity( results_dict, - self.config.rating, + self.config.electrolyzer_rating_mw_for_h2_storage_sizing, hydrogen_storage_demand, ) h2_storage_capacity_kg = hydrogen_storage_capacity_kg diff --git a/h2integrate/storage/simple_generic_storage.py b/h2integrate/storage/simple_generic_storage.py index 84c7fe903..9f885d971 100644 --- a/h2integrate/storage/simple_generic_storage.py +++ b/h2integrate/storage/simple_generic_storage.py @@ -6,8 +6,8 @@ @define class SimpleGenericStorageConfig(BaseConfig): - resource_name: str = field() - resource_rate_units: str = field() + commodity_name: str = field() + commodity_units: str = field() class SimpleGenericStorage(om.ExplicitComponent): @@ -26,9 +26,9 @@ def setup(self): merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), strict=False, ) - resource_name = self.config.resource_name - resource_rate_units = self.config.resource_rate_units - self.add_input(f"{resource_name}_in", val=0.0, shape=n_timesteps, units=resource_rate_units) + commodity_name = self.config.commodity_name + commodity_units = self.config.commodity_units + self.add_input(f"{commodity_name}_in", val=0.0, shape=n_timesteps, units=commodity_units) def compute(self, inputs, outputs): pass diff --git a/h2integrate/tools/run_cases.py b/h2integrate/tools/run_cases.py index 65ef7e197..4e2438094 100644 --- a/h2integrate/tools/run_cases.py +++ b/h2integrate/tools/run_cases.py @@ -108,13 +108,16 @@ def load_tech_config_cases(case_file): return tech_config_cases -def modify_tech_config(h2i_model, tech_config_case): +def modify_tech_config(h2i_model, tech_config_case, run_setup=True): """Modify particular tech_config values on an existing H2I model before it is run. Args: h2i_model: H2IntegrateModel that has been set up but not run. tech_config_case (pd.Series): Series that was indexed from tech_config_cases DataFrame containing the parameter values to modify. + run_setup (bool): defaults to True. In case the user wishes to delay calling setup, + run_setup may be set to False, this may be useful to allow multiple calls to + modify_tech_config prior to running a simulation. Returns: H2IntegrateModel: The H2IntegrateModel with modified tech_config values. @@ -128,4 +131,7 @@ def modify_tech_config(h2i_model, tech_config_case): index_list = index_list[:-1] set_in_dict(h2i_model.technology_config, index_list, cast_by_name(data_type, value)) + if run_setup: + h2i_model.setup() + return h2i_model diff --git a/h2integrate/tools/test/test_tools.py b/h2integrate/tools/test/test_tools.py index 1221a84df..cac42f8c7 100644 --- a/h2integrate/tools/test/test_tools.py +++ b/h2integrate/tools/test/test_tools.py @@ -53,3 +53,20 @@ def test_tech_config_modifier(subtests): pytest.approx(model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0], rel=1e-3) == 5.22644320514729 ) + with subtests.test("int repeat without run setup modify_tech_config"): + case = cases["Int Test"] + model = modify_tech_config(model, case, run_setup=False) + model.run() + assert ( + pytest.approx(model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0], rel=1e-3) + == 5.22644320514729 # should still "str" test value + ) + with subtests.test("int repeat with run setup outside modify_tech_config"): + case = cases["Int Test"] + model = modify_tech_config(model, case, run_setup=False) + model.setup() + model.run() + assert ( + pytest.approx(model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0], rel=1e-3) + == 5.4601971211592115 # should still "str" test value + ) diff --git a/h2integrate/transporters/generic_summer.py b/h2integrate/transporters/generic_summer.py index 02e9f7b39..7976b6c5d 100644 --- a/h2integrate/transporters/generic_summer.py +++ b/h2integrate/transporters/generic_summer.py @@ -46,7 +46,7 @@ def setup(self): # and flexible simulation length summed_units = f"{self.config.commodity_units}*h/year" else: - summed_units = f"{self.config.commodity_units}/year" + summed_units = f"{self.config.commodity_units}*h/year" self.add_input( f"{self.config.commodity}_in", diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index 8acc18d83..528dcbec2 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -322,6 +322,7 @@ def test_wind_h2_opt_example(subtests): assert len(cases) > 1, "Not enough cases recorded in SQL file." # Get initial and final LCOH values + initial_lcoh = cases[0].outputs["finance_subgroup_hydrogen.LCOH"][0] final_lcoh = cases[-1].outputs["finance_subgroup_hydrogen.LCOH"][0] @@ -506,19 +507,28 @@ def test_hydrogen_dispatch_example(subtests): with subtests.test("Check LCOE"): assert ( pytest.approx( - model.prob.get_val("finance_subgroup_elec.LCOE", units="USD/MW/h")[0], + model.prob.get_val("finance_subgroup_electricity.LCOE", units="USD/MW/h")[0], rel=1e-5, ) - == 105.75426 + == 59.0962072084844 ) - with subtests.test("Check LCOH"): + with subtests.test("Check all h2 LCOH"): + assert ( + pytest.approx( + model.prob.get_val("finance_subgroup_all_hydrogen.LCOH", units="USD/kg")[0], + rel=1e-5, + ) + == 5.360810057454742 + ) + + with subtests.test("Check dispatched h2 LCOH"): assert ( pytest.approx( - model.prob.get_val("finance_subgroup_h2.LCOH", units="USD/kg")[0], + model.prob.get_val("finance_subgroup_dispatched_hydrogen.LCOH", units="USD/kg")[0], rel=1e-5, ) - == 5.6540332 + == 8.371194137479359 ) @@ -764,9 +774,94 @@ def test_wombat_electrolyzer_example(subtests): assert pytest.approx(lcoe_with_profast_model, rel=1e-5) == 59.0962084 -def test_wind_battery_dispatch_example(subtests): +def test_pyomo_heuristic_dispatch_example(subtests): # Change the current working directory to the example's directory - os.chdir(EXAMPLE_DIR / "19_wind_battery_dispatch") + os.chdir(EXAMPLE_DIR / "18_pyomo_heuristic_dispatch") + + # Create a H2Integrate model + model = H2IntegrateModel(Path.cwd() / "pyomo_heuristic_dispatch.yaml") + + demand_profile = np.ones(8760) * 50.0 + + # TODO: Update with demand module once it is developed + model.setup() + model.prob.set_val("battery.electricity_demand", demand_profile, units="MW") + + # Run the model + model.run() + + model.post_process() + + # Test battery storage functionality + # SOC should stay within configured bounds (10% to 90%) + # Due to pysam simulation, bounds may not be fully respected, + # but should not exceed the upper bound more than 4% SOC + # and the lower bound more than 1% SOC + soc = model.prob.get_val("battery.SOC") + with subtests.test("Check battery SOC lower bound"): + assert all(soc >= 9.0) + with subtests.test("Check battery SOC upper bound"): + assert all(soc <= 94.0) + + with subtests.test("Check wind generation out of the wind plant"): + # Wind should generate some electricity + wind_electricity = model.prob.get_val("wind.electricity_out") + assert wind_electricity.sum() > 0 + # Wind electricity should match battery input (direct connection) + with subtests.test("Check wind generation in to battery"): + battery_electricity_in = model.prob.get_val("battery.electricity_in") + assert wind_electricity.sum() == pytest.approx(battery_electricity_in.sum(), rel=1e-6) + + with subtests.test("Check demand satisfaction"): + electricity_out = model.prob.get_val("battery.electricity_out", units="MW") + # Battery output should try to meet the 50 MW constant demand + # Average output should be close to demand when there's sufficient generation + assert electricity_out.mean() >= 45 # MW + + # Subtest for LCOE + with subtests.test("Check all LCOE value"): + lcoe = model.prob.get_val("finance_subgroup_all_electricity.LCOE")[0] + assert lcoe == pytest.approx(0.07470820840238226, rel=1e-6) + + with subtests.test("Check dispatched LCOE value"): + lcoe = model.prob.get_val("finance_subgroup_dispatched_electricity.LCOE")[0] + assert lcoe == pytest.approx(0.5473068063691052, rel=1e-6) + + # Subtest for total electricity produced + with subtests.test("Check total electricity produced"): + total_electricity = model.prob.get_val( + name="finance_subgroup_all_electricity.electricity_sum.total_electricity_produced", + units="MW*h/year", + )[0] + assert total_electricity == pytest.approx(3125443.1089529935, rel=1e-6) + + # Subtest for electricity unused_commodity + with subtests.test("Check electricity unused commodity"): + electricity_unused_commodity = np.linalg.norm( + model.prob.get_val("battery.unused_electricity_out", units="MW") + ) + assert electricity_unused_commodity == pytest.approx(36590.067573337095, rel=1e-6) + + # Subtest for unmet demand + with subtests.test("Check electricity unmet demand"): + electricity_unmet_demand = np.linalg.norm( + model.prob.get_val("battery.unmet_electricity_demand_out", units="MW") + ) + assert electricity_unmet_demand == pytest.approx(711.1997294551337, rel=1e-6) + + # check that error is raised when incorrect tech_name is given + with subtests.test("Check incorrect tech_name error"): + expected_error = ( + r"tech_name in control_parameters \(wrong_tech_name\) must match " + r"the top-level name of the tech group \(battery\)" + ) + with pytest.raises(ValueError, match=expected_error): + H2IntegrateModel(Path.cwd() / "pyomo_heuristic_dispatch_error_for_testing.yaml") + + +def test_simple_dispatch_example(subtests): + # Change the current working directory to the example's directory + os.chdir(EXAMPLE_DIR / "19_simple_dispatch") # Create a H2Integrate model model = H2IntegrateModel(Path.cwd() / "wind_battery_dispatch.yaml") @@ -809,17 +904,19 @@ def test_wind_battery_dispatch_example(subtests): )[0] assert pytest.approx(total_electricity, rel=1e-6) == 62797265.9296355 - # Subtest for electricity curtailed - with subtests.test("Check electricity curtailed"): - electricity_curtailed = np.linalg.norm(model.prob.get_val("battery.electricity_curtailed")) - assert pytest.approx(electricity_curtailed, rel=1e-6) == 412531.73840450746 + # Subtest for electricity unused_commodity + with subtests.test("Check electricity unused commodity"): + electricity_unused_commodity = np.linalg.norm( + model.prob.get_val("battery.electricity_unused_commodity") + ) + assert pytest.approx(electricity_unused_commodity, rel=1e-6) == 412531.73840450746 - # Subtest for missed load - with subtests.test("Check electricity missed load"): - electricity_missed_load = np.linalg.norm( - model.prob.get_val("battery.electricity_missed_load") + # Subtest for unmet demand + with subtests.test("Check electricity unmet demand"): + electricity_unmet_demand = np.linalg.norm( + model.prob.get_val("battery.electricity_unmet_demand") ) - assert pytest.approx(electricity_missed_load, rel=1e-6) == 165604.70758669 + assert pytest.approx(electricity_unmet_demand, rel=1e-6) == 165604.70758669 # Subtest for total electricity produced from wind, should be equal to total # electricity produced from finance_subgroup_electricity diff --git a/tests/h2integrate/test_controllers/inputs/tech_config.yaml b/tests/h2integrate/test_controllers/inputs/tech_config.yaml index 8513b0b4f..6e0e50031 100644 --- a/tests/h2integrate/test_controllers/inputs/tech_config.yaml +++ b/tests/h2integrate/test_controllers/inputs/tech_config.yaml @@ -11,12 +11,12 @@ technologies: model: "h2_storage" model_inputs: performance_parameters: - rating: 720. + max_charge_rate: 720. size_capacity_from_demand: flag: False # If True, then storage is sized to provide steady-state storage capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] days: 10 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) control_parameters: - resource_name: "hydrogen" - resource_rate_units: "kg/h" + commodity_name: "hydrogen" + commodity_units: "kg/h" diff --git a/tests/h2integrate/test_controllers/test_open_loop_controllers.py b/tests/h2integrate/test_controllers/test_open_loop_controllers.py index e8432b9b1..b2f45ca07 100644 --- a/tests/h2integrate/test_controllers/test_open_loop_controllers.py +++ b/tests/h2integrate/test_controllers/test_open_loop_controllers.py @@ -7,7 +7,7 @@ import openmdao.api as om from openmdao.utils.assert_utils import assert_check_totals -from h2integrate.controllers.openloop_controllers import ( +from h2integrate.control.control_strategies.openloop_controllers import ( DemandOpenLoopController, PassThroughOpenLoopController, ) @@ -79,12 +79,15 @@ def test_demand_controller(subtests): with tech_config_path.open() as file: tech_config = yaml.safe_load(file) + plant_config = {"plant": {"simulation": {"n_timesteps": 10}}} + tech_config["technologies"]["h2_storage"]["control_strategy"]["model"] = ( "demand_openloop_controller" ) + tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "resource_name": "hydrogen", - "resource_rate_units": "kg/h", + "commodity_name": "hydrogen", + "commodity_units": "kg", "max_capacity": 10.0, # kg "max_charge_percent": 1.0, # percent as decimal "min_charge_percent": 0.0, # percent as decimal @@ -94,9 +97,10 @@ def test_demand_controller(subtests): "charge_efficiency": 1.0, "discharge_efficiency": 1.0, "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - "n_time_steps": 10, } + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} + # Set up the OpenMDAO problem prob = om.Problem() @@ -109,7 +113,7 @@ def test_demand_controller(subtests): prob.model.add_subsystem( "demand_openloop_controller", DemandOpenLoopController( - plant_config={}, tech_config=tech_config["technologies"]["h2_storage"] + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] ), promotes=["*"], ) @@ -126,7 +130,7 @@ def test_demand_controller(subtests): with subtests.test("Check curtailment"): assert pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) == prob.get_val( - "hydrogen_curtailed" + "hydrogen_unused_commodity" ) with subtests.test("Check soc"): @@ -136,7 +140,7 @@ def test_demand_controller(subtests): with subtests.test("Check missed load"): assert pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( - "hydrogen_missed_load" + "hydrogen_unmet_demand" ) @@ -151,12 +155,14 @@ def test_demand_controller_round_trip_efficiency(subtests): with tech_config_path.open() as file: tech_config = yaml.safe_load(file) + plant_config = {"plant": {"simulation": {"n_timesteps": 10}}} + tech_config["technologies"]["h2_storage"]["control_strategy"]["model"] = ( "demand_openloop_controller" ) tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "resource_name": "hydrogen", - "resource_rate_units": "kg/h", + "commodity_name": "hydrogen", + "commodity_units": "kg", "max_capacity": 10.0, # kg "max_charge_percent": 1.0, # percent as decimal "min_charge_percent": 0.0, # percent as decimal @@ -166,13 +172,12 @@ def test_demand_controller_round_trip_efficiency(subtests): "charge_efficiency": 1.0, "discharge_efficiency": 1.0, "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - "n_time_steps": 10, } tech_config_rte = deepcopy(tech_config) tech_config_rte["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "resource_name": "hydrogen", - "resource_rate_units": "kg/h", + "commodity_name": "hydrogen", + "commodity_units": "kg", "max_capacity": 10.0, # kg "max_charge_percent": 1.0, # percent as decimal "min_charge_percent": 0.0, # percent as decimal @@ -181,9 +186,10 @@ def test_demand_controller_round_trip_efficiency(subtests): "max_discharge_rate": 0.5, # kg/time step "round_trip_efficiency": 1.0, "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - "n_time_steps": 10, } + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} + def set_up_and_run_problem(config): # Set up the OpenMDAO problem prob = om.Problem() @@ -197,7 +203,7 @@ def set_up_and_run_problem(config): prob.model.add_subsystem( "demand_openloop_controller", DemandOpenLoopController( - plant_config={}, tech_config=config["technologies"]["h2_storage"] + plant_config=plant_config, tech_config=config["technologies"]["h2_storage"] ), promotes=["*"], ) @@ -216,16 +222,16 @@ def set_up_and_run_problem(config): assert pytest.approx(prob_ioe.get_val("hydrogen_out")) == prob_rte.get_val("hydrogen_out") with subtests.test("Check curtailment"): - assert pytest.approx(prob_ioe.get_val("hydrogen_curtailed")) == prob_rte.get_val( - "hydrogen_curtailed" + assert pytest.approx(prob_ioe.get_val("hydrogen_unused_commodity")) == prob_rte.get_val( + "hydrogen_unused_commodity" ) with subtests.test("Check soc"): assert pytest.approx(prob_ioe.get_val("hydrogen_soc")) == prob_rte.get_val("hydrogen_soc") with subtests.test("Check missed load"): - assert pytest.approx(prob_ioe.get_val("hydrogen_missed_load")) == prob_rte.get_val( - "hydrogen_missed_load" + assert pytest.approx(prob_ioe.get_val("hydrogen_unmet_demand")) == prob_rte.get_val( + "hydrogen_unmet_demand" ) @@ -252,8 +258,8 @@ def test_generic_demand_controller(subtests): }, "model_inputs": { "shared_parameters": { - "resource_name": "hydrogen", - "resource_rate_units": "kg/h", + "commodity_name": "hydrogen", + "commodity_units": "kg", "max_capacity": 10.0, # kg "max_charge_rate": 1.0, # percent as decimal }, @@ -265,11 +271,12 @@ def test_generic_demand_controller(subtests): "charge_efficiency": 1.0, "discharge_efficiency": 1.0, "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - "n_time_steps": 10, }, }, } + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} + # Set up OpenMDAO problem prob = om.Problem() @@ -282,7 +289,7 @@ def test_generic_demand_controller(subtests): prob.model.add_subsystem( "demand_openloop_controller", DemandOpenLoopController( - plant_config={}, tech_config=tech_config["technologies"]["h2_storage"] + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] ), promotes=["*"], ) @@ -299,7 +306,7 @@ def test_generic_demand_controller(subtests): with subtests.test("Check curtailment"): assert pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) == prob.get_val( - "hydrogen_curtailed" + "hydrogen_unused_commodity" ) with subtests.test("Check soc"): @@ -309,5 +316,5 @@ def test_generic_demand_controller(subtests): with subtests.test("Check missed load"): assert pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( - "hydrogen_missed_load" + "hydrogen_unmet_demand" ) diff --git a/tests/h2integrate/test_controllers/test_pyomo_controllers.py b/tests/h2integrate/test_controllers/test_pyomo_controllers.py new file mode 100644 index 000000000..995c8f416 --- /dev/null +++ b/tests/h2integrate/test_controllers/test_pyomo_controllers.py @@ -0,0 +1,401 @@ +import numpy as np +import pytest +import openmdao.api as om + +from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel +from h2integrate.control.control_strategies.pyomo_controllers import ( + HeuristicLoadFollowingController, +) +from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( + PyomoRuleStorageBaseclass, +) + + +plant_config = { + "name": "plant_config", + "description": "...", + "plant": { + "plant_life": 30, + "grid_connection": False, + "ppa_price": 0.025, + "hybrid_electricity_estimated_cf": 0.492, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + }, + }, + "tech_to_dispatch_connections": [ + ["battery", "battery"], + ], +} + +tech_config = { + "name": "technology_config", + "description": "...", + "technologies": { + "battery": { + "dispatch_rule_set": {"model": "pyomo_dispatch_generic_storage"}, + "control_strategy": {"model": "heuristic_load_following_controller"}, + "performance_model": {"model": "pysam_battery"}, + "model_inputs": { + "shared_parameters": { + "max_charge_rate": 50000, + "max_capacity": 200000, + "n_control_window": 24, + "n_horizon_window": 48, + "init_charge_percent": 0.5, + "max_charge_percent": 0.9, + "min_charge_percent": 0.1, + }, + "performance_parameters": { + "system_model_source": "pysam", + "chemistry": "LFPGraphite", + "control_variable": "input_power", + }, + "control_parameters": { + "commodity_name": "electricity", + "commodity_storage_units": "kW", + "tech_name": "battery", + "system_commodity_interface_limit": 1e12, + }, + "dispatch_rule_parameters": { + "commodity_name": "electricity", + "commodity_storage_units": "kW", + }, + }, + } + }, +} + + +def test_heuristic_load_following_battery_dispatch(subtests): + # Fabricate some oscillating power generation data: 0 kW for the first 12 hours, 10000 kW for + # the second twelve hours, and repeat that daily cycle over a year. + n_look_ahead_half = int(24 / 2) + + electricity_in = np.concatenate( + (np.ones(n_look_ahead_half) * 0, np.ones(n_look_ahead_half) * 10000) + ) + electricity_in = np.tile(electricity_in, 365) + + demand_in = np.ones(8760) * 6000.0 + + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + "pyomo_dispatch_generic_storage", + PyomoRuleStorageBaseclass( + plant_config=plant_config, tech_config=tech_config["technologies"]["battery"] + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery_heuristic_load_following_controller", + HeuristicLoadFollowingController( + plant_config=plant_config, tech_config=tech_config["technologies"]["battery"] + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery", + PySAMBatteryPerformanceModel( + plant_config=plant_config, tech_config=tech_config["technologies"]["battery"] + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + prob.set_val("battery.electricity_in", electricity_in) + prob.set_val("battery.electricity_demand", demand_in) + + # Run the model + prob.run_model() + + # Test the case where the charging/discharging cycle remains within the max and min SOC limits + # Check the expected outputs to actual outputs + expected_electricity_out = [ + 5999.99995059, + 5990.56676743, + 5990.138959, + 5989.64831176, + 5989.08548217, + 5988.44193888, + 5987.70577962, + 5986.86071125, + 5985.88493352, + 5984.7496388, + 5983.41717191, + 5981.839478, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + ] + + expected_battery_electricity_discharge = [ + 5999.99995059, + 5990.56676743, + 5990.138959, + 5989.64831176, + 5989.08548217, + 5988.44193888, + 5987.70577962, + 5986.86071125, + 5985.88493352, + 5984.7496388, + 5983.41717191, + 5981.839478, + -3988.62235554, + -3989.2357847, + -3989.76832626, + -3990.26170521, + -3990.71676106, + -3991.13573086, + -3991.52143699, + -3991.87684905, + -3992.20485715, + -3992.50815603, + -3992.78920148, + -3993.05020268, + ] + + expected_SOC = [ + 49.39724571, + 46.54631833, + 43.69133882, + 40.83119769, + 37.96394628, + 35.08762294, + 32.20015974, + 29.29919751, + 26.38184809, + 23.44436442, + 20.48162855, + 17.48627159, + 19.47067094, + 21.44466462, + 23.40741401, + 25.36052712, + 27.30530573, + 29.24281439, + 31.17393198, + 33.09939078, + 35.01980641, + 36.93570091, + 38.84752069, + 40.75565055, + ] + + expected_unmet_demand_out = np.array( + [ + 4.93562475e-05, + 9.43323257e00, + 9.86104099e00, + 1.03516883e01, + 1.09145178e01, + 1.15580611e01, + 1.22942204e01, + 1.31392889e01, + 1.41150664e01, + 1.52503612e01, + 1.65828282e01, + 1.81605218e01, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + ] + ) + + expected_unused_commodity_out = np.array( + [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 11.37764445, + 10.76421514, + 10.23167373, + 9.73829458, + 9.28323883, + 8.86426912, + 8.47856327, + 8.12315078, + 7.79514283, + 7.49184426, + 7.21079852, + 6.94979705, + ] + ) + + with subtests.test("Check electricity_out"): + assert ( + pytest.approx(expected_electricity_out) == prob.get_val("battery.electricity_out")[0:24] + ) + + with subtests.test("Check battery_electricity_discharge"): + assert ( + pytest.approx(expected_battery_electricity_discharge) + == prob.get_val("battery.battery_electricity_discharge")[0:24] + ) + + with subtests.test("Check SOC"): + assert pytest.approx(expected_SOC) == prob.get_val("battery.SOC")[0:24] + + with subtests.test("Check unmet_demand"): + assert ( + pytest.approx(expected_unmet_demand_out, abs=1e-4) + == prob.get_val("battery.unmet_electricity_demand_out")[0:24] + ) + + with subtests.test("Check unused_electricity_out"): + assert ( + pytest.approx(expected_unused_commodity_out) + == prob.get_val("battery.unused_electricity_out")[0:24] + ) + + # Test the case where the battery is discharged to its lower SOC limit + electricity_in = np.zeros(8760) + demand_in = np.ones(8760) * 30000 + + # Setup the system and required values + prob.setup() + prob.set_val("battery.electricity_in", electricity_in) + prob.set_val("battery.electricity_demand", demand_in) + + # Run the model + prob.run_model() + + expected_electricity_out = np.array( + [3.00000000e04, 2.99305601e04, 2.48145097e04, 4.97901621e00, 3.04065390e01] + ) + expected_battery_electricity_discharge = expected_electricity_out + expected_SOC = np.array([37.69010284, 22.89921133, 10.00249593, 10.01524461, 10.03556385]) + expected_unmet_demand_out = np.array( + [ + 9.43691703e-09, + 6.94398578e01, + 5.18549025244965e03, + 2.999502098378662e04, + 2.9969593461021406e04, + ] + ) + expected_unused_commodity_out = np.zeros(5) + + with subtests.test("Check electricity_out for min SOC"): + assert ( + pytest.approx(expected_electricity_out) == prob.get_val("battery.electricity_out")[:5] + ) + + with subtests.test("Check battery_electricity_discharge for min SOC"): + assert ( + pytest.approx(expected_battery_electricity_discharge) + == prob.get_val("battery.battery_electricity_discharge")[:5] + ) + + with subtests.test("Check SOC for min SOC"): + assert pytest.approx(expected_SOC) == prob.get_val("battery.SOC")[:5] + + with subtests.test("Check unmet_demand for min SOC"): + assert ( + pytest.approx(expected_unmet_demand_out, abs=1e-6) + == prob.get_val("battery.unmet_electricity_demand_out")[:5] + ) + + with subtests.test("Check unused_commodity_out for min SOC"): + assert ( + pytest.approx(expected_unused_commodity_out) + == prob.get_val("battery.unused_electricity_out")[:5] + ) + + # Test the case where the battery is charged to its upper SOC limit + electricity_in = np.ones(8760) * 30000.0 + demand_in = np.zeros(8760) + + # Setup the system and required values + prob.setup() + prob.set_val("battery.electricity_in", electricity_in) + prob.set_val("battery.electricity_demand", demand_in) + + # Run the model + prob.run_model() + + expected_electricity_out = [-0.008477085, 0.0, 0.0, 0.0, 0.0] + + # TODO reevaluate the output here + expected_battery_electricity_discharge = np.array( + [-30000.00847709, -29973.58679719, -21109.22734423, 0.0, 0.0] + ) + + # expected_SOC = [66.00200558, 79.43840635, 90.0, 90.0, 90.0] + expected_SOC = np.array([66.00200558, 79.43840635, 89.02326413, 89.02326413, 89.02326413]) + expected_unmet_demand_out = np.array([0.00847709, 0.0, 0.0, 0.0, 0.0]) + expected_unused_commodity_out = np.array( + [0.00000000e00, 2.64132028e01, 8.89077266e03, 3.04088135e04, 3.00564087e04] + ) + # I think this is the right expected_electricity_out since the battery won't + # be discharging in this instance + # expected_electricity_out = [0.0, 0.0, 0.0, 0.0, 0.0] + # # expected_electricity_out = [0.0, 0.0, 6150.14483911, 30000.0, 30000.0] + # expected_battery_electricity_discharge = [-30000.00847705, -29973.58679681, + # -23310.54620182, 0.0, 0.0] + # expected_SOC = [66.00200558, 79.43840635, 90.0, 90.0, 90.0] + # expected_unmet_demand_out = np.zeros(5) + # expected_unused_commodity_out = [0.0, 0.0, 6150.14483911, 30000.0, 30000.0] + + abs_tol = 1e-6 + rel_tol = 1e-1 + with subtests.test("Check electricity_out for max SOC"): + assert ( + pytest.approx(expected_electricity_out, abs=abs_tol, rel=rel_tol) + == prob.get_val("battery.electricity_out")[:5] + ) + + with subtests.test("Check battery_electricity_discharge for max SOC"): + assert ( + pytest.approx(expected_battery_electricity_discharge, abs=abs_tol, rel=rel_tol) + == prob.get_val("battery.battery_electricity_discharge")[:5] + ) + + with subtests.test("Check SOC for max SOC"): + assert pytest.approx(expected_SOC, abs=abs_tol) == prob.get_val("battery.SOC")[:5] + + with subtests.test("Check unmet_demand for max SOC"): + assert ( + pytest.approx(expected_unmet_demand_out, abs=abs_tol) + == prob.get_val("battery.unmet_electricity_demand_out")[:5] + ) + + with subtests.test("Check unused_commodity_out for max SOC"): + assert ( + pytest.approx(expected_unused_commodity_out, abs=abs_tol, rel=rel_tol) + == prob.get_val("battery.unused_electricity_out")[:5] + ) From c9a4a50a20cfa5e249862a66902cad35ecbb3a70 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Mon, 27 Oct 2025 11:45:07 -0600 Subject: [PATCH 40/79] added conftest files to prevent clutter (#311) Co-authored-by: John Jasa --- h2integrate/converters/test/__init__.py | 0 h2integrate/converters/test/conftest.py | 20 ++++++++++++++++++++ h2integrate/core/test/conftest.py | 11 +++++++++++ h2integrate/finances/test/__init__.py | 0 h2integrate/finances/test/conftest.py | 20 ++++++++++++++++++++ h2integrate/storage/test/__init__.py | 0 h2integrate/storage/test/conftest.py | 20 ++++++++++++++++++++ h2integrate/test/__init__.py | 0 h2integrate/test/conftest.py | 20 ++++++++++++++++++++ h2integrate/tools/test/conftest.py | 20 ++++++++++++++++++++ h2integrate/transporters/test/conftest.py | 20 ++++++++++++++++++++ tests/conftest.py | 11 +++++++++++ 12 files changed, 142 insertions(+) create mode 100644 h2integrate/converters/test/__init__.py create mode 100644 h2integrate/converters/test/conftest.py create mode 100644 h2integrate/finances/test/__init__.py create mode 100644 h2integrate/finances/test/conftest.py create mode 100644 h2integrate/storage/test/__init__.py create mode 100644 h2integrate/storage/test/conftest.py create mode 100644 h2integrate/test/__init__.py create mode 100644 h2integrate/test/conftest.py create mode 100644 h2integrate/tools/test/conftest.py create mode 100644 h2integrate/transporters/test/conftest.py diff --git a/h2integrate/converters/test/__init__.py b/h2integrate/converters/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/converters/test/conftest.py b/h2integrate/converters/test/conftest.py new file mode 100644 index 000000000..ec036dfa5 --- /dev/null +++ b/h2integrate/converters/test/conftest.py @@ -0,0 +1,20 @@ +""" +Pytest configuration file. +""" + +import os + + +def pytest_sessionstart(session): + initial_om_report_setting = os.getenv("OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["TMP_OPENMDAO_REPORTS"] = initial_om_report_setting + + os.environ["OPENMDAO_REPORTS"] = "none" + + +def pytest_sessionfinish(session, exitstatus): + initial_om_report_setting = os.getenv("TMP_OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["OPENMDAO_REPORTS"] = initial_om_report_setting + os.environ.pop("TMP_OPENMDAO_REPORTS", None) diff --git a/h2integrate/core/test/conftest.py b/h2integrate/core/test/conftest.py index 5e33704d1..2677ca6bd 100644 --- a/h2integrate/core/test/conftest.py +++ b/h2integrate/core/test/conftest.py @@ -8,6 +8,12 @@ def pytest_sessionstart(session): + initial_om_report_setting = os.getenv("OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["TMP_OPENMDAO_REPORTS"] = initial_om_report_setting + + os.environ["OPENMDAO_REPORTS"] = "none" + # set environment variables used for # tests in h2integrate/core/test/test_recorder.py os.environ["TEST_RECORDER_OUTPUT_EXAMPLE"] = "05_wind_h2_opt" @@ -18,6 +24,11 @@ def pytest_sessionstart(session): def pytest_sessionfinish(session, exitstatus): + initial_om_report_setting = os.getenv("TMP_OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["OPENMDAO_REPORTS"] = initial_om_report_setting + os.environ.pop("TMP_OPENMDAO_REPORTS", None) + # remove files that were created in h2integrate/core/test/test_recorder.py if os.getenv("TEST_RECORDER_OUTPUT_EXAMPLE") is not None: test_dir = ( diff --git a/h2integrate/finances/test/__init__.py b/h2integrate/finances/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/finances/test/conftest.py b/h2integrate/finances/test/conftest.py new file mode 100644 index 000000000..ec036dfa5 --- /dev/null +++ b/h2integrate/finances/test/conftest.py @@ -0,0 +1,20 @@ +""" +Pytest configuration file. +""" + +import os + + +def pytest_sessionstart(session): + initial_om_report_setting = os.getenv("OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["TMP_OPENMDAO_REPORTS"] = initial_om_report_setting + + os.environ["OPENMDAO_REPORTS"] = "none" + + +def pytest_sessionfinish(session, exitstatus): + initial_om_report_setting = os.getenv("TMP_OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["OPENMDAO_REPORTS"] = initial_om_report_setting + os.environ.pop("TMP_OPENMDAO_REPORTS", None) diff --git a/h2integrate/storage/test/__init__.py b/h2integrate/storage/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/storage/test/conftest.py b/h2integrate/storage/test/conftest.py new file mode 100644 index 000000000..ec036dfa5 --- /dev/null +++ b/h2integrate/storage/test/conftest.py @@ -0,0 +1,20 @@ +""" +Pytest configuration file. +""" + +import os + + +def pytest_sessionstart(session): + initial_om_report_setting = os.getenv("OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["TMP_OPENMDAO_REPORTS"] = initial_om_report_setting + + os.environ["OPENMDAO_REPORTS"] = "none" + + +def pytest_sessionfinish(session, exitstatus): + initial_om_report_setting = os.getenv("TMP_OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["OPENMDAO_REPORTS"] = initial_om_report_setting + os.environ.pop("TMP_OPENMDAO_REPORTS", None) diff --git a/h2integrate/test/__init__.py b/h2integrate/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/test/conftest.py b/h2integrate/test/conftest.py new file mode 100644 index 000000000..ec036dfa5 --- /dev/null +++ b/h2integrate/test/conftest.py @@ -0,0 +1,20 @@ +""" +Pytest configuration file. +""" + +import os + + +def pytest_sessionstart(session): + initial_om_report_setting = os.getenv("OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["TMP_OPENMDAO_REPORTS"] = initial_om_report_setting + + os.environ["OPENMDAO_REPORTS"] = "none" + + +def pytest_sessionfinish(session, exitstatus): + initial_om_report_setting = os.getenv("TMP_OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["OPENMDAO_REPORTS"] = initial_om_report_setting + os.environ.pop("TMP_OPENMDAO_REPORTS", None) diff --git a/h2integrate/tools/test/conftest.py b/h2integrate/tools/test/conftest.py new file mode 100644 index 000000000..ec036dfa5 --- /dev/null +++ b/h2integrate/tools/test/conftest.py @@ -0,0 +1,20 @@ +""" +Pytest configuration file. +""" + +import os + + +def pytest_sessionstart(session): + initial_om_report_setting = os.getenv("OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["TMP_OPENMDAO_REPORTS"] = initial_om_report_setting + + os.environ["OPENMDAO_REPORTS"] = "none" + + +def pytest_sessionfinish(session, exitstatus): + initial_om_report_setting = os.getenv("TMP_OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["OPENMDAO_REPORTS"] = initial_om_report_setting + os.environ.pop("TMP_OPENMDAO_REPORTS", None) diff --git a/h2integrate/transporters/test/conftest.py b/h2integrate/transporters/test/conftest.py new file mode 100644 index 000000000..ec036dfa5 --- /dev/null +++ b/h2integrate/transporters/test/conftest.py @@ -0,0 +1,20 @@ +""" +Pytest configuration file. +""" + +import os + + +def pytest_sessionstart(session): + initial_om_report_setting = os.getenv("OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["TMP_OPENMDAO_REPORTS"] = initial_om_report_setting + + os.environ["OPENMDAO_REPORTS"] = "none" + + +def pytest_sessionfinish(session, exitstatus): + initial_om_report_setting = os.getenv("TMP_OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["OPENMDAO_REPORTS"] = initial_om_report_setting + os.environ.pop("TMP_OPENMDAO_REPORTS", None) diff --git a/tests/conftest.py b/tests/conftest.py index 8aba40b97..feae18e50 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -8,6 +8,12 @@ def pytest_sessionstart(session): + initial_om_report_setting = os.getenv("OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["TMP_OPENMDAO_REPORTS"] = initial_om_report_setting + + os.environ["OPENMDAO_REPORTS"] = "none" + # Set a dummy API key os.environ["NREL_API_KEY"] = "a" * 40 set_nrel_key_dot_env() @@ -32,3 +38,8 @@ def pytest_sessionfinish(session, exitstatus): if user_dir is not None: os.environ["RESOURCE_DIR"] = user_dir os.environ.pop("TEMP_RESOURCE_DIR", None) + + initial_om_report_setting = os.getenv("TMP_OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["OPENMDAO_REPORTS"] = initial_om_report_setting + os.environ.pop("TMP_OPENMDAO_REPORTS", None) From 9a7859a70834d16b8f12d0e2f65ab989e68b1389 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Mon, 27 Oct 2025 12:01:32 -0600 Subject: [PATCH 41/79] Updated recorder to be attached to driver or model (#295) * updated recorder to be attached to driver or model * Minor cleanup to recorder logic --------- Co-authored-by: John Jasa --- h2integrate/core/pose_optimization.py | 71 ++++++++++++++++++++++----- 1 file changed, 59 insertions(+), 12 deletions(-) diff --git a/h2integrate/core/pose_optimization.py b/h2integrate/core/pose_optimization.py index bfdc7b881..8ac97366f 100644 --- a/h2integrate/core/pose_optimization.py +++ b/h2integrate/core/pose_optimization.py @@ -436,12 +436,15 @@ def set_recorders(self, opt_prob): """ folder_output = self.config["general"]["folder_output"] - # Check that the output folder exists and create it if needed - if not Path(folder_output).exists(): - Path.mkdir(folder_output, parents=True) # Set recorder on the OpenMDAO driver level using the `optimization_log` # filename supplied in the optimization yaml + recorder_options = ["record_inputs", "record_outputs", "record_residuals"] + if self.config["recorder"].get("flag", False): + # Check that the output folder exists and create it if needed + if not Path(folder_output).exists(): + Path.mkdir(folder_output, parents=True, exist_ok=True) + overwrite_recorder = self.config["recorder"].get("overwrite_recorder", False) recorder_path = Path(folder_output) / self.config["recorder"]["file"] @@ -472,19 +475,63 @@ def set_recorders(self, opt_prob): # but do have the same basename, then add a zero to the file basename recorder_path = Path(folder_output) / f"{file_base}0.sql" - # Create recorder and add to model + recorder_attachment = ( + self.config["recorder"].get("recorder_attachment", "driver").lower() + ) + allowed_attachments = ["driver", "model"] + if recorder_attachment not in allowed_attachments: + msg = ( + f"Invalid recorder attachment '{recorder_attachment}'. " + f"Currently supported options are {allowed_attachments}. " + "We recommend using 'driver' if running an optimization or DOE in parallel." + ) + raise ValueError(msg) + + # Create recorder recorder = om.SqliteRecorder(recorder_path) - opt_prob.model.add_recorder(recorder) - opt_prob.model.recording_options["record_inputs"] = True - opt_prob.model.recording_options["record_outputs"] = True - opt_prob.model.recording_options["record_residuals"] = True + if recorder_attachment == "model": + # add the recorder to the model + recorder_options += ["options_excludes"] + + opt_prob.model.add_recorder(recorder) - if self.config["recorder"].get("includes", False): - opt_prob.model.recording_options["includes"] = self.config["recorder"]["includes"] + for recorder_opt in recorder_options: + if recorder_opt in self.config["recorder"]: + opt_prob.model.recording_options[recorder_opt] = self.config[ + "recorder" + ].get(recorder_opt) - if self.config["recorder"].get("excludes", False): - opt_prob.model.recording_options["excludes"] = self.config["recorder"]["excludes"] + opt_prob.model.recording_options["includes"] = self.config["recorder"].get( + "includes", ["*"] + ) + opt_prob.model.recording_options["excludes"] = self.config["recorder"].get( + "excludes", ["*resource_data"] + ) + return + + if recorder_attachment == "driver": + recorder_options += [ + "record_constraints", + "record_derivative", + "record_desvars", + "record_objectives", + ] + # add the recorder to the driver + opt_prob.driver.add_recorder(recorder) + + for recorder_opt in recorder_options: + if recorder_opt in self.config["recorder"]: + opt_prob.driver.recording_options[recorder_opt] = self.config[ + "recorder" + ].get(recorder_opt) + + opt_prob.driver.recording_options["includes"] = self.config["recorder"].get( + "includes", ["*"] + ) + opt_prob.driver.recording_options["excludes"] = self.config["recorder"].get( + "excludes", ["*resource_data"] + ) def set_restart(self, opt_prob): """ From b9a3db27899f730a5e44752ed76829ebbf7662b4 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Wed, 29 Oct 2025 11:20:17 -0600 Subject: [PATCH 42/79] updated api docs to include more useful information (#323) --- docs/api.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 0cf377701..7c4b9fa4e 100644 --- a/docs/api.md +++ b/docs/api.md @@ -7,6 +7,12 @@ :toctree: _autosummary :recursive: - simulation + core + converters + control + finances + resource + storage + transporters tools ``` From cb9b0adcc2897a66a8ccd7ef662338fd733bf5e1 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Thu, 30 Oct 2025 15:16:28 -0600 Subject: [PATCH 43/79] Sync battery cost model and controller inputs (#290) * synced up battery cost model inputs and demand openloop controller inputs * cleaned up battery cost model * updated battery cost model and openloop controller tests * added test for battery cost with demand openloop controller * updated changelog * merging * Renaming resource rate units to commodity units * Updated example 18 * updated demand openloop controller and atb battery cost model * added generic storage cost model * Updating to remove battery mentions in generic cost model comments * updated based on reviewer feedback * added user warning to atb battery cost model * updated failing tests * fixed example 3 input file to prevent failing tests --------- Co-authored-by: John Jasa --- CHANGELOG.md | 1 + .../tech_config_co2h.yaml | 13 +- .../tech_config.yaml | 3 +- .../openloop_controllers.py | 96 ++++++++-- h2integrate/core/supported_models.py | 2 + .../storage/battery/atb_battery_cost.py | 50 +++-- h2integrate/storage/battery/test/__init__.py | 0 .../storage/battery/test/test_battery_cost.py | 176 ++++++++++++++++++ h2integrate/storage/generic_storage_cost.py | 98 ++++++++++ .../test_open_loop_controllers.py | 4 + 10 files changed, 404 insertions(+), 39 deletions(-) create mode 100644 h2integrate/storage/battery/test/__init__.py create mode 100644 h2integrate/storage/battery/test/test_battery_cost.py create mode 100644 h2integrate/storage/generic_storage_cost.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 64988ca86..4d5d74b2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - Added framework to run heuristic load following dispatch for storage technologies - Added PySAM battery model as a storage technology performance model - Added `create_om_reports` option to driver config to enable/disable OpenMDAO reports (N2 diagrams, etc.) +- Updated inputs for the `ATBBatteryCostModel` and `DemandOpenLoopController` so storage capacity and charge rate can be design variables ## 0.4.0 [October 1, 2025] diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index a83cee32a..d21a394c0 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -49,7 +49,7 @@ technologies: performance_model: model: "simple_generic_storage" cost_model: - model: "atb_battery_cost" + model: "generic_storage_cost" control_strategy: model: "demand_open_loop_controller" model_inputs: @@ -63,13 +63,14 @@ technologies: min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal max_discharge_rate: 5000.0 # kg/time step + charge_equals_discharge: False charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal demand_profile: 2108.73919484047 cost_parameters: cost_year: 2022 - energy_capex: 383 # $/kg - based on https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/review22/st235_houchins_2022_p-pdf.pdf?Status=Master - power_capex: .000001 # $/kg/h + capacity_capex: 383 # $/kg - based on https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/review22/st235_houchins_2022_p-pdf.pdf?Status=Master + charge_capex: .000001 # $/kg/h opex_fraction: .000001 # percent of capex doc: performance_model: @@ -101,7 +102,7 @@ technologies: performance_model: model: "simple_generic_storage" cost_model: - model: "atb_battery_cost" + model: "generic_storage_cost" control_strategy: model: "demand_open_loop_controller" model_inputs: @@ -120,8 +121,8 @@ technologies: demand_profile: 15388.3891 cost_parameters: cost_year: 2022 - energy_capex: 5 # $/kg - based on https://www.maritime.dot.gov/sites/marad.dot.gov/files/2024-11/LCE%20MARAD%20CCS%20TEA%20Final%20Report%20-%2031%20May%202024%20%283%29.pdf - power_capex: .000001 # $/kg/h + capacity_capex: 5 # $/kg - based on https://www.maritime.dot.gov/sites/marad.dot.gov/files/2024-11/LCE%20MARAD%20CCS%20TEA%20Final%20Report%20-%2031%20May%202024%20%283%29.pdf + charge_capex: .000001 # $/kg/h opex_fraction: .000001 # percent of capex methanol: performance_model: diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml index 7b1307331..eb851c044 100644 --- a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml +++ b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml @@ -52,6 +52,7 @@ technologies: model: "atb_battery_cost" model_inputs: shared_parameters: + commodity_name: "electricity" max_charge_rate: 100000 max_capacity: 500000 n_control_window: 24 @@ -65,11 +66,11 @@ technologies: chemistry: "LFPGraphite" cost_parameters: cost_year: 2022 + commodity_units: "kW" energy_capex: 310 # $/kWh from 2024 ATB year 2025 power_capex: 311 # $/kW from 2024 ATB year 2025 opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB control_parameters: - commodity_name: "electricity" commodity_storage_units: "kW" tech_name: "battery" dispatch_rule_parameters: diff --git a/h2integrate/control/control_strategies/openloop_controllers.py b/h2integrate/control/control_strategies/openloop_controllers.py index 69ba8f5ed..82122d018 100644 --- a/h2integrate/control/control_strategies/openloop_controllers.py +++ b/h2integrate/control/control_strategies/openloop_controllers.py @@ -4,7 +4,7 @@ from attrs import field, define from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import range_val, range_val_or_none +from h2integrate.core.validators import gt_zero, range_val, range_val_or_none from h2integrate.control.control_strategies.controller_baseclass import ControllerBaseClass @@ -96,6 +96,8 @@ class DemandOpenLoopControllerConfig(BaseConfig): commodity_units (str): Units of the commodity (e.g., "kg/h"). max_capacity (float): Maximum storage capacity of the commodity (in non-rate units, e.g., "kg" if `commodity_units` is "kg/h"). + demand_profile (scalar or list): The demand values for each time step (in the same units + as `commodity_units`) or a scalar for a constant demand. max_charge_percent (float): Maximum allowable state of charge (SOC) as a percentage of `max_capacity`, represented as a decimal between 0 and 1. min_charge_percent (float): Minimum allowable SOC as a percentage of `max_capacity`, @@ -104,31 +106,34 @@ class DemandOpenLoopControllerConfig(BaseConfig): as a decimal between 0 and 1. max_charge_rate (float): Maximum rate at which the commodity can be charged (in units per time step, e.g., "kg/time step"). This rate does not include the charge_efficiency. - max_discharge_rate (float): Maximum rate at which the commodity can be discharged (in - units per time step, e.g., "kg/time step"). This rate does not include the - discharge_efficiency. - charge_efficiency (float | None): Efficiency of charging the storage, represented as a - decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Optional if - `round_trip_efficiency` is provided. - discharge_efficiency (float | None): Efficiency of discharging the storage, represented + charge_equals_discharge (bool, optional): If True, set the max_discharge_rate equal to the + max_charge_rate. If False, specify the max_discharge_rate as a value different than + the max_charge_rate. Defaults to True. + max_discharge_rate (float | None, optional): Maximum rate at which the commodity can be + discharged (in units per time step, e.g., "kg/time step"). This rate does not include + the discharge_efficiency. Only required if `charge_equals_discharge` is False. + charge_efficiency (float | None, optional): Efficiency of charging the storage, represented as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Optional if `round_trip_efficiency` is provided. - round_trip_efficiency (float | None): Combined efficiency of charging and discharging - the storage, represented as a decimal between 0 and 1 (e.g., 0.81 for 81% efficiency). - Optional if `charge_efficiency` and `discharge_efficiency` are provided. - demand_profile (scalar or list): The demand values for each time step (in the same units - as `commodity_units`) or a scalar for a constant demand. + discharge_efficiency (float | None, optional): Efficiency of discharging the storage, + represented as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Optional if + `round_trip_efficiency` is provided. + round_trip_efficiency (float | None, optional): Combined efficiency of charging and + discharging the storage, represented as a decimal between 0 and 1 (e.g., 0.81 for + 81% efficiency). Optional if `charge_efficiency` and `discharge_efficiency` are + provided. """ commodity_name: str = field() commodity_units: str = field() max_capacity: float = field() + demand_profile: int | float | list = field() max_charge_percent: float = field(validator=range_val(0, 1)) min_charge_percent: float = field(validator=range_val(0, 1)) init_charge_percent: float = field(validator=range_val(0, 1)) - max_charge_rate: float = field() - max_discharge_rate: float = field() - demand_profile: int | float | list = field() + max_charge_rate: float = field(validator=gt_zero) + charge_equals_discharge: bool = field(default=True) + max_discharge_rate: float | None = field(default=None) charge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) discharge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) round_trip_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) @@ -160,6 +165,20 @@ def __attrs_post_init__(self): "`charge_efficiency` and `discharge_efficiency`." ) + if self.charge_equals_discharge: + if ( + self.max_discharge_rate is not None + and self.max_discharge_rate != self.max_charge_rate + ): + msg = ( + "Max discharge rate does not equal max charge rate but charge_equals_discharge " + f"is True. Discharge rate is {self.max_discharge_rate} and charge rate " + f"is {self.max_charge_rate}." + ) + raise ValueError(msg) + + self.max_discharge_rate = self.max_charge_rate + class DemandOpenLoopController(ControllerBaseClass): """ @@ -229,6 +248,20 @@ def setup(self): desc=f"{commodity_name} demand profile timeseries", ) + self.add_input( + "max_charge_rate", + val=self.config.max_charge_rate, + units=self.config.commodity_units, + desc="Storage charge/discharge rate", + ) + + self.add_input( + "max_capacity", + val=self.config.max_capacity, + units=self.config.commodity_units + "*h", + desc="Maximum storage capacity", + ) + self.add_output( f"{commodity_name}_out", copy_shape=f"{commodity_name}_in", @@ -265,18 +298,40 @@ def setup(self): desc=f"Total {commodity_name} missed load over the simulation period", ) + self.add_output( + "storage_duration", + units="h", + desc="Estimated storage duration based on max capacity and discharge rate", + ) + def compute(self, inputs, outputs): """ Compute the state of charge (SOC) and output flow based on demand and storage constraints. """ + if inputs["max_charge_rate"][0] < 0: + msg = ( + f"max_charge_rate cannot be less than zero and has value of " + f"{inputs['max_charge_rate']}" + ) + raise UserWarning(msg) + if inputs["max_capacity"][0] < 0: + msg = ( + f"max_capacity cannot be less than zero and has value of " + f"{inputs['max_capacity']}" + ) + raise UserWarning(msg) + commodity_name = self.config.commodity_name - max_capacity = self.config.max_capacity + max_capacity = inputs["max_capacity"] max_charge_percent = self.config.max_charge_percent min_charge_percent = self.config.min_charge_percent init_charge_percent = self.config.init_charge_percent - max_charge_rate = self.config.max_charge_rate - max_discharge_rate = self.config.max_discharge_rate + max_charge_rate = inputs["max_charge_rate"] + if self.config.charge_equals_discharge: + max_discharge_rate = inputs["max_charge_rate"] + else: + max_discharge_rate = self.config.max_discharge_rate charge_efficiency = self.config.charge_efficiency discharge_efficiency = self.config.discharge_efficiency @@ -359,3 +414,6 @@ def compute(self, inputs, outputs): # Calculate and return the total unmet demand over the simulation period outputs[f"total_{commodity_name}_unmet_demand"] = np.sum(unmet_demand_array) + + # Output the storage duration in hours + outputs["storage_duration"] = max_capacity / max_discharge_rate diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index 6dc751a56..5e5ffd1e7 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -8,6 +8,7 @@ from h2integrate.transporters.generic_summer import GenericSummerPerformanceModel from h2integrate.converters.hopp.hopp_wrapper import HOPPComponent from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel +from h2integrate.storage.generic_storage_cost import GenericStorageCostModel from h2integrate.storage.hydrogen.eco_storage import H2Storage from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel from h2integrate.transporters.generic_combiner import GenericCombinerPerformanceModel @@ -170,6 +171,7 @@ "hydrogen_tank_performance": HydrogenTankPerformanceModel, "hydrogen_tank_cost": HydrogenTankCostModel, "atb_battery_cost": ATBBatteryCostModel, + "generic_storage_cost": GenericStorageCostModel, "simple_generic_storage": SimpleGenericStorage, # Control "pass_through_controller": PassThroughOpenLoopController, diff --git a/h2integrate/storage/battery/atb_battery_cost.py b/h2integrate/storage/battery/atb_battery_cost.py index 9c80a3f42..88e68bc28 100644 --- a/h2integrate/storage/battery/atb_battery_cost.py +++ b/h2integrate/storage/battery/atb_battery_cost.py @@ -1,7 +1,8 @@ from attrs import field, define +from openmdao.utils import units from h2integrate.core.utilities import CostModelBaseConfig, merge_shared_inputs -from h2integrate.core.validators import gt_zero, range_val +from h2integrate.core.validators import contains, gte_zero, range_val from h2integrate.core.model_baseclasses import CostModelBaseClass @@ -19,16 +20,21 @@ class ATBBatteryCostConfig(CostModelBaseConfig): energy_capex (float|int): battery energy capital cost in $/kWh power_capex (float|int): battery power capital cost in $/kW opex_fraction (float): annual operating cost as a fraction of the total system cost. - max_charge_rate (float): maximum charge rate of battery in kW - max_capacity (float): maximum storage capacity of battery in kWh - + cost_year (int): dollar year corresponding to input costs + max_capacity (float): Maximum storage capacity of the battery (in non-rate units, + e.g., "kW*h" if `commodity_units` is "kW"). + max_charge_rate (float): Maximum rate at which the battery can be charged (in units + per time step, e.g., "kW/time step"). + commodity_units (str): Units of the electricity resource used to define the + max_capacity and max_charge_rate. Must have a base of Watts ('W'). """ - energy_capex: float | int = field(validator=gt_zero) - power_capex: float | int = field(validator=gt_zero) + energy_capex: float | int = field(validator=gte_zero) + power_capex: float | int = field(validator=gte_zero) opex_fraction: float = field(validator=range_val(0, 1)) - max_charge_rate: float = field(validator=gt_zero) - max_capacity: float = field(validator=gt_zero) + max_capacity: float = field() + max_charge_rate: float = field() + commodity_units: str = field(validator=contains(["W", "kW", "MW", "GW", "TW"])) class ATBBatteryCostModel(CostModelBaseClass): @@ -58,24 +64,42 @@ def setup(self): self.add_input( "max_charge_rate", val=self.config.max_charge_rate, - units="kW", + units=f"{self.config.commodity_units}", desc="Battery charge/discharge rate", ) self.add_input( - "storage_capacity", + "max_capacity", val=self.config.max_capacity, - units="kW*h", + units=f"{self.config.commodity_units}*h", desc="Battery storage capacity", ) def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - storage_duration_hrs = inputs["storage_capacity"] / inputs["max_charge_rate"] + storage_duration_hrs = 0.0 + + # convert the input capacity to units of kW*h + max_capacity_kWh = units.convert_units( + inputs["max_capacity"], f"{self.config.commodity_units}*h", "kW*h" + ) + + # convert the input charge rate to units of kW + max_charge_rate_kW = units.convert_units( + inputs["max_charge_rate"], self.config.commodity_units, "kW" + ) + if max_charge_rate_kW > 0: + storage_duration_hrs = max_capacity_kWh / max_charge_rate_kW + if max_charge_rate_kW < 0: + msg = ( + f"max_charge_rate cannot be less than zero and has value of " + f"{max_charge_rate_kW} kW" + ) + raise UserWarning(msg) # CapEx equation from Cell E29 total_system_cost = ( storage_duration_hrs * self.config.energy_capex ) + self.config.power_capex - capex = total_system_cost * inputs["max_charge_rate"] + capex = total_system_cost * max_charge_rate_kW # OpEx equation from cells in the Fixed Operation and Maintenance Expenses section opex = self.config.opex_fraction * capex outputs["CapEx"] = capex diff --git a/h2integrate/storage/battery/test/__init__.py b/h2integrate/storage/battery/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/storage/battery/test/test_battery_cost.py b/h2integrate/storage/battery/test/test_battery_cost.py new file mode 100644 index 000000000..c829bd709 --- /dev/null +++ b/h2integrate/storage/battery/test/test_battery_cost.py @@ -0,0 +1,176 @@ +import numpy as np +import openmdao.api as om +from pytest import fixture + +from h2integrate.storage.battery.atb_battery_cost import ATBBatteryCostModel +from h2integrate.control.control_strategies.openloop_controllers import DemandOpenLoopController + + +@fixture +def plant_config(): + plant_cnfg = { + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": 8760, + }, + }, + } + return plant_cnfg + + +@fixture +def electricity_profile_kW(): + return np.tile(np.linspace(0, 5000.0, 876), 10) + + +@fixture +def battery_tech_config_kW(): + battery_inputs = { + "performance_model": {"model": "simple_generic_storage"}, + "cost_model": {"model": "atb_battery_cost"}, + "control_strategy": {"model": "demand_open_loop_controller"}, + "model_inputs": { + "shared_parameters": { + "commodity_name": "electricity", + "commodity_units": "kW", + "max_charge_rate": 5000.0, + "max_capacity": 30000.0, + }, + "control_parameters": { + "max_charge_percent": 1.0, + "min_charge_percent": 0.1, + "init_charge_percent": 0.25, + "max_discharge_rate": 5000.0, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "demand_profile": 5000, + }, + "cost_parameters": { + "cost_year": 2022, + "energy_capex": 391, + "power_capex": 363, + "opex_fraction": 0.025, + }, + }, + } + return battery_inputs + + +@fixture +def battery_tech_config_MW(): + battery_inputs = { + "performance_model": {"model": "simple_generic_storage"}, + "cost_model": {"model": "atb_battery_cost"}, + "control_strategy": {"model": "demand_open_loop_controller"}, + "model_inputs": { + "shared_parameters": { + "commodity_name": "electricity", + "commodity_units": "MW", + "max_charge_rate": 5.0, + "max_capacity": 30.0, + }, + "control_parameters": { + "max_charge_percent": 1.0, + "min_charge_percent": 0.1, + "init_charge_percent": 0.25, + "max_discharge_rate": 5.0, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "demand_profile": 5.0, + }, + "cost_parameters": { + "cost_year": 2022, + "energy_capex": 391, + "power_capex": 363, + "opex_fraction": 0.025, + }, + }, + } + return battery_inputs + + +def test_integrated_battery_cost_kW( + plant_config, battery_tech_config_kW, electricity_profile_kW, subtests +): + # Set up the OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="electricity_in", val=electricity_profile_kW), + promotes=["*"], + ) + + controller = DemandOpenLoopController( + plant_config=plant_config, tech_config=battery_tech_config_kW + ) + + cost = ATBBatteryCostModel(plant_config=plant_config, tech_config=battery_tech_config_kW) + + prob.model.add_subsystem( + "demand_openloop_controller", + controller, + promotes=["*"], + ) + + prob.model.add_subsystem( + "cost_model", + cost, + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + expected_capex = ((6 * 391) + 363) * 5000.0 + expected_opex = expected_capex * 0.025 + + with subtests.test("CapEx"): + assert prob.get_val("cost_model.CapEx") == expected_capex + + with subtests.test("OpEx"): + assert prob.get_val("cost_model.OpEx") == expected_opex + + +def test_integrated_battery_cost_MW( + plant_config, battery_tech_config_MW, electricity_profile_kW, subtests +): + # Set up the OpenMDAO problem + prob = om.Problem() + + electricity_profile_MW = electricity_profile_kW / 1e3 + + controller = DemandOpenLoopController( + plant_config=plant_config, tech_config=battery_tech_config_MW + ) + + cost = ATBBatteryCostModel(plant_config=plant_config, tech_config=battery_tech_config_MW) + + prob.model.add_subsystem( + "demand_openloop_controller", + controller, + promotes=["*"], + ) + + prob.model.add_subsystem( + "cost_model", + cost, + promotes=["*"], + ) + + prob.setup() + + prob.set_val("demand_openloop_controller.electricity_in", electricity_profile_MW, units="MW") + + prob.run_model() + + expected_capex = ((6 * 391) + 363) * 5000.0 + expected_opex = expected_capex * 0.025 + + with subtests.test("CapEx"): + assert prob.get_val("cost_model.CapEx") == expected_capex + + with subtests.test("OpEx"): + assert prob.get_val("cost_model.OpEx") == expected_opex diff --git a/h2integrate/storage/generic_storage_cost.py b/h2integrate/storage/generic_storage_cost.py new file mode 100644 index 000000000..2b94b3231 --- /dev/null +++ b/h2integrate/storage/generic_storage_cost.py @@ -0,0 +1,98 @@ +from attrs import field, define + +from h2integrate.core.utilities import CostModelBaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains, gte_zero, range_val +from h2integrate.core.model_baseclasses import CostModelBaseClass + + +@define +class GenericStorageCostConfig(CostModelBaseConfig): + """Configuration class for the GenericStorageCostModel with costs based on storage + capacity and charge rate for any commodity. + + Note: + This could be expanded to allow for different types of commodity units in the future. + Currently only supports electrical, mass, and some thermal units. + + Attributes: + capacity_capex (float|int): storage energy capital cost in $/capacity_units + charge_capex (float|int): storage power capital cost in $/charge_units/h + opex_fraction (float): annual operating cost as a fraction of the total system cost. + cost_year (int): dollar year corresponding to input costs + max_capacity (float): Maximum storage capacity (in non-rate units, + e.g., "kW*h" if `commodity_units` is "kW"). + max_charge_rate (float): Maximum rate at which storage can be charged (in units + per time step, e.g., "kW/time step"). + commodity_units (str): Units of the storage resource used to define the charge rate. + max_capacity and max_charge_rate. Must have a base of Watts ('W') or grams ('g/h') + or heat ('MMBtu/h') + """ + + capacity_capex: float | int = field(validator=gte_zero) + charge_capex: float | int = field(validator=gte_zero) + opex_fraction: float = field(validator=range_val(0, 1)) + max_capacity: float = field() + max_charge_rate: float = field() + commodity_units: str = field( + validator=contains(["W", "kW", "MW", "GW", "TW", "g/h", "kg/h", "t/h", "MMBtu/h"]) + ) + + +class GenericStorageCostModel(CostModelBaseClass): + """Generic storage cost model for any commodity (electricity, hydrogen, etc.). + + This model calculates costs based on storage capacity and charge/discharge rate. + + Total_CapEx = capacity_capex * Storage_Hours + charge_capex + + - Total_CapEx: Total System Cost (USD/charge_units) + - Storage_Hours: Storage Duration (hr) + - capacity_capex: Storage Capacity Cost (USD/capacity_units) + - charge_capex: Storage Charge Cost (USD/charge_units) + + """ + + def setup(self): + self.config = GenericStorageCostConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), strict=False + ) + + super().setup() + + charge_units = self.config.commodity_units + + capacity_units = f"({self.config.commodity_units})*h" + + self.add_input( + "max_charge_rate", + val=self.config.max_charge_rate, + units=charge_units, + desc="Storage charge/discharge rate", + ) + self.add_input( + "max_capacity", + val=self.config.max_capacity, + units=capacity_units, + desc="Storage storage capacity", + ) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + storage_duration_hrs = 0.0 + + if inputs["max_charge_rate"] > 0: + storage_duration_hrs = inputs["max_capacity"] / inputs["max_charge_rate"] + if inputs["max_charge_rate"] < 0: + msg = ( + f"max_charge_rate cannot be less than zero and has value of " + f"{inputs['max_charge_rate']}" + ) + raise UserWarning(msg) + # Calculate total system cost based on capacity and charge components + total_system_cost = ( + storage_duration_hrs * self.config.capacity_capex + ) + self.config.charge_capex + capex = total_system_cost * inputs["max_charge_rate"] + # Calculate operating expenses as a fraction of capital expenses + opex = self.config.opex_fraction * capex + outputs["CapEx"] = capex + outputs["OpEx"] = opex diff --git a/tests/h2integrate/test_controllers/test_open_loop_controllers.py b/tests/h2integrate/test_controllers/test_open_loop_controllers.py index b2f45ca07..dba019b5e 100644 --- a/tests/h2integrate/test_controllers/test_open_loop_controllers.py +++ b/tests/h2integrate/test_controllers/test_open_loop_controllers.py @@ -94,6 +94,7 @@ def test_demand_controller(subtests): "init_charge_percent": 1.0, # percent as decimal "max_charge_rate": 1.0, # kg/time step "max_discharge_rate": 0.5, # kg/time step + "charge_equals_discharge": False, "charge_efficiency": 1.0, "discharge_efficiency": 1.0, "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand @@ -169,6 +170,7 @@ def test_demand_controller_round_trip_efficiency(subtests): "init_charge_percent": 1.0, # percent as decimal "max_charge_rate": 1.0, # kg/time step "max_discharge_rate": 0.5, # kg/time step + "charge_equals_discharge": False, "charge_efficiency": 1.0, "discharge_efficiency": 1.0, "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand @@ -184,6 +186,7 @@ def test_demand_controller_round_trip_efficiency(subtests): "init_charge_percent": 1.0, # percent as decimal "max_charge_rate": 1.0, # kg/time step "max_discharge_rate": 0.5, # kg/time step + "charge_equals_discharge": False, "round_trip_efficiency": 1.0, "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand } @@ -269,6 +272,7 @@ def test_generic_demand_controller(subtests): "init_charge_percent": 1.0, # percent as decimal "max_discharge_rate": 0.5, # kg/time step "charge_efficiency": 1.0, + "charge_equals_discharge": False, "discharge_efficiency": 1.0, "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand }, From c56c82eb593bc039b033e063a36b49a1ae468224 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Mon, 3 Nov 2025 13:53:54 -0600 Subject: [PATCH 44/79] PySAM Wind and Basic Turbine Layout (#306) * added intermediate wind plant refactor with new validator * updated wind plant and added layout method * merged wind_plant_pysam * updated compute method of wind plant pysam * added test for wind plant performance * bugfix in layout and added layout tests * minor additions to docstrings * added example using pysam wind and added tests * updated keyname in pysam wind test * Minor syntax changes * added layout test and added inputs for pysam powercurve recalc function * added atb wind cost model * added wind atb cost model to supported models * update docstrings * update docs * updated example 26 to use wind ATB cost model * Fixing some tests; added example 22 in * WIP; reworking examples * add turbine plotting for pysam wind model * Removing errant examples * pre-commit fixes * remove default turbine spacing for basic grid layout * Added wind plant doc page * Removed natural gas examples test script * Updating example 16 * update examples to run pysam wind converter and use wind atb cost model * remove basic windplant performance and cost models * update docs * update docs tech overview * tests * Fixing test_tools.py * Updated pyomo example due to wind plant changes --------- Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Co-authored-by: John Jasa Co-authored-by: bayc --- CHANGELOG.md | 4 + docs/_toc.yml | 2 + docs/technology_models/atb_costs_wind.md | 41 ++ docs/technology_models/technology_overview.md | 3 +- .../technology_models/windpower_wind_plant.md | 146 +++++ .../05_wind_h2_opt/pysam_options_8300MW.yaml | 413 ++++++++++++++ examples/05_wind_h2_opt/tech_config.yaml | 38 +- .../06_custom_tech/pysam_options_8300MW.yaml | 413 ++++++++++++++ examples/06_custom_tech/tech_config.yaml | 39 +- .../pysam_options_8300MW.yaml | 413 ++++++++++++++ .../08_wind_electrolyzer/tech_config.yaml | 38 +- .../pysam_options_8300MW.yaml | 413 ++++++++++++++ examples/10_electrolyzer_om/tech_config.yaml | 38 +- .../hydrogen_dispatch.ipynb | 18 +- .../inputs/pysam_options_8300MW.yaml | 413 ++++++++++++++ .../inputs/tech_config.yaml | 38 +- .../pysam_options_6000MW.yaml | 413 ++++++++++++++ .../tech_config.yaml | 39 +- .../pysam_options_8300MW.yaml | 413 ++++++++++++++ .../tech_config.yaml | 40 +- .../tech_config_error_for_testing.yaml | 40 +- .../pysam_options_8300MW.yaml | 413 ++++++++++++++ examples/19_simple_dispatch/tech_config.yaml | 38 +- .../openloop_controllers.py | 4 +- h2integrate/converters/solar/solar_pysam.py | 2 +- h2integrate/converters/wind/atb_wind_cost.py | 64 +++ .../converters/wind/layout/__init__.py | 0 .../wind/layout/simple_grid_layout.py | 172 ++++++ .../converters/wind/layout/test/__init__.py | 0 .../layout/test/test_basic_grid_layout.py | 145 +++++ h2integrate/converters/wind/test/__init__.py | 0 h2integrate/converters/wind/test/conftest.py | 27 + .../wind/test/test_atb_wind_with_pysam.py | 138 +++++ .../converters/wind/test/test_pysam_wind.py | 317 +++++++++++ h2integrate/converters/wind/wind_plant.py | 243 -------- .../converters/wind/wind_plant_pysam.py | 170 ------ h2integrate/converters/wind/wind_pysam.py | 532 ++++++++++++++++++ h2integrate/core/h2integrate_model.py | 34 +- h2integrate/core/supported_models.py | 7 +- .../resource/wind/wind_resource_base.py | 2 +- tests/h2integrate/test_all_examples.py | 10 +- 41 files changed, 5097 insertions(+), 636 deletions(-) create mode 100644 docs/technology_models/atb_costs_wind.md create mode 100644 docs/technology_models/windpower_wind_plant.md create mode 100644 examples/05_wind_h2_opt/pysam_options_8300MW.yaml create mode 100644 examples/06_custom_tech/pysam_options_8300MW.yaml create mode 100644 examples/08_wind_electrolyzer/pysam_options_8300MW.yaml create mode 100644 examples/10_electrolyzer_om/pysam_options_8300MW.yaml create mode 100644 examples/14_wind_hydrogen_dispatch/inputs/pysam_options_8300MW.yaml create mode 100644 examples/15_wind_solar_electrolyzer/pysam_options_6000MW.yaml create mode 100644 examples/18_pyomo_heuristic_dispatch/pysam_options_8300MW.yaml create mode 100644 examples/19_simple_dispatch/pysam_options_8300MW.yaml create mode 100644 h2integrate/converters/wind/atb_wind_cost.py create mode 100644 h2integrate/converters/wind/layout/__init__.py create mode 100644 h2integrate/converters/wind/layout/simple_grid_layout.py create mode 100644 h2integrate/converters/wind/layout/test/__init__.py create mode 100644 h2integrate/converters/wind/layout/test/test_basic_grid_layout.py create mode 100644 h2integrate/converters/wind/test/__init__.py create mode 100644 h2integrate/converters/wind/test/conftest.py create mode 100644 h2integrate/converters/wind/test/test_atb_wind_with_pysam.py create mode 100644 h2integrate/converters/wind/test/test_pysam_wind.py delete mode 100644 h2integrate/converters/wind/wind_plant.py delete mode 100644 h2integrate/converters/wind/wind_plant_pysam.py create mode 100644 h2integrate/converters/wind/wind_pysam.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d5d74b2e..78d9cf9cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ - Added framework to run heuristic load following dispatch for storage technologies - Added PySAM battery model as a storage technology performance model - Added `create_om_reports` option to driver config to enable/disable OpenMDAO reports (N2 diagrams, etc.) +- Added PySAM Windpower performance model to simulate wind. +- Added `simple_grid_layout.py` for wind plant layout modeling, can model square or rectangular layouts. +- Added ability to visualize the wind plant layout for PySAM Windpower model using `post_process(show_plots=True)`. +- Added Wind Annual Technology Baseline cost model `atb_wind_cost.py`. - Updated inputs for the `ATBBatteryCostModel` and `DemandOpenLoopController` so storage capacity and charge rate can be design variables ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index b22fab622..dfa58d12d 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -33,7 +33,9 @@ parts: - file: technology_models/natural_gas - file: technology_models/wombat_electrolyzer_om - file: technology_models/pvwattsv8_solar_pv.md + - file: technology_models/windpower_wind_plant.md - file: technology_models/atb_costs_pv.md + - file: technology_models/atb_costs_wind.md - file: technology_models/co2.md - file: technology_models/simple_generic_storage.md - file: technology_models/methanol.md diff --git a/docs/technology_models/atb_costs_wind.md b/docs/technology_models/atb_costs_wind.md new file mode 100644 index 000000000..0db674fbf --- /dev/null +++ b/docs/technology_models/atb_costs_wind.md @@ -0,0 +1,41 @@ +# Wind Cost Model based on ATB-Formatted Cost Data + +NREL's [Annual Technology Baseline (ATB)](https://atb.nrel.gov) is commonly referenced for technology costs such as overnight capital cost, fixed operations and maintenance costs, and capital expenditures. The `atb_wind_cost` cost model available in H2I that is intended to be easily used with cost values pulled from [NREL's ATB Excel workbook](https://atb.nrel.gov/electricity/2024/data). + +```{note} +The Annual Technology Baseline (ATB) is updated annually. While we do our best to update our documentation regularly, be sure that you're using the most recent version of the ATB in case our links are pointing to an older version. +``` + +There are specific costs and performance specifications in the ATB for: +- [Land-Based Wind](https://atb.nrel.gov/electricity/2024/land-based_wind) +- [Offshore Wind](https://atb.nrel.gov/electricity/2024/offshore_wind) +- [Distributed Wind](https://atb.nrel.gov/electricity/2024/distributed_wind) + +Example usage of this cost model in the `tech_config.yaml` file is shown [in the first section below](#atb-wind-cost-model). + +(atb-wind-cost-model)= +## ATB Wind Cost Model + +The inputs for `cost_parameters` are `capex_per_kW` and `opex_per_kW_per_year`. From the ATB workbook, a value for `capex_per_kW` can be found on any of the wind-specific tabs in the Excel Workbook under the "Overnight Capital Cost" section or the "CAPEX" section. The values in the "CAPEX" section include overnight capital costs, construction finance factor, and grid connection costs. A value for `opex_per_kW_per_year` can be found on any of the wind-specific tabs in the Excel Workbook under the "Fixed Operation and Maintenance Expenses" section. + +Here is an example of how to use the `atb_wind_cost` model in the `tech_config.yaml` file: + +```yaml +technologies: + wind: + performance_model: + model: "pysam_wind_plant_performance" + cost_model: + model: "atb_wind_cost" + model_inputs: + shared_parameters: + num_turbines: 20 + turbine_rating_kw: 6000 + performance_parameters: + hub_height: 115 + rotor_diameter: 170 + ... + cost_parameters: + capex_per_kW: 1044 + opex_per_kW_per_year: 18 +``` diff --git a/docs/technology_models/technology_overview.md b/docs/technology_models/technology_overview.md index c22d02fee..84ed34964 100644 --- a/docs/technology_models/technology_overview.md +++ b/docs/technology_models/technology_overview.md @@ -102,10 +102,9 @@ Below summarizes the available performance, cost, and financial models for each ## Converter models - `wind`: wind turbine - performance models: - + `'wind_plant_performance'` + `'pysam_wind_plant_performance'` - cost models: - + `'wind_plant_cost'` + + `'atb_wind_cost'` - `solar`: solar-PV panels - performance models: + `'pysam_solar_plant_performance'` diff --git a/docs/technology_models/windpower_wind_plant.md b/docs/technology_models/windpower_wind_plant.md new file mode 100644 index 000000000..41d47228d --- /dev/null +++ b/docs/technology_models/windpower_wind_plant.md @@ -0,0 +1,146 @@ +# Wind Plant model using Windpower module in PySAM + +This model uses the [Windpower module](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html) available in PySAM to simulate the performance of a wind power plant. + +To use this model, specify `"pysam_wind_plant_performance"` as the performance model. An example of how this may look in the `tech_config` file is shown below and details on the performance parameter inputs can be found [here](#performance-parameters). + +```yaml +technologies: + wind: + performance_model: "pysam_wind_plant_performance" + model_inputs: + performance_parameters: + num_turbines: 10 + hub_height: 100.0 + rotor_diameter: 120.0 + turbine_rating_kw: 2500.0 + create_model_from: new #options are "default" and "new" + config_name: #only used if create_model_from is "default", default is "WindPowerSingleOwner" + layout: + layout_mode: basicgrid #currently only "basicgrid" is supported + layout_options: + row_D_spacing: 7.0 + turbine_D_spacing: 7.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: square #options "square" or "rectangle" + powercurve_calc_config: #optional configuration for power curve calculation + elevation: 0 + wind_default_max_cp: 0.45 + wind_default_cut_in_speed: 4.0 + wind_default_cut_out_speed: 25.0 + run_recalculate_power_curve: True + pysam_options: #user specified pysam inputs + Turbine: + wind_turbine_max_cp: 0.45 + wind_turbine_thrust_coeff: [0.8, 0.8, 0.8] + Farm: + wind_farm_wake_model: 0 + Resource: + Losses: + wind_farm_losses_percent: 8.0 + AdjustmentFactors: +``` + +(performance-parameters)= +## Performance Parameters +- `num_turbines` (required): number of wind turbines in the wind farm +- `hub_height` (required): wind turbine hub height in meters +- `rotor_diameter` (required): wind turbine rotor diameter in meters +- `turbine_rating_kw` (required): rated power of individual wind turbine in kW +- `create_model_from`: this can either be set to `"new"` or `"default"` and defaults to `"new"`. If `create_model_from` is `"new"`, the wind model is initialized using `Windpower.new()` and *populated* with parameters specified in `pysam_options`. If `create_model_from` is `"default"`, the wind model is initialized using `Windpower.default(config_name)` (`config_name` is also an input parameter) then *updated* with parameters specified in `pysam_options`. +- `config_name`: this is only used if `create_model_from` is `"default"`. The default value for this is `"WindPowerSingleOwner"`. The available options and their default parameters are listed below: + - [WindPowerAllEquityPartnershipFlip](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerAllEquityPartnershipFlip.json) + - [WindPowerCommercial](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerCommercial.json) + - [WindPowerLeveragedPartnershipFlip](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerLeveragedPartnershipFlip.json) + - [WindPowerMerchantPlant](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerMerchantPlant.json) + - [WindPowerNone](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerNone.json) + - [WindPowerResidential](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerResidential.json) + - [WindPowerSaleLeaseback](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerSaleLeaseback.json) + - [WindPowerSingleOwner](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerSingleOwner.json) +- `run_recalculate_power_curve` (optional): Flag whether to recalculate the wind turbine + power curve. defaults to True. + +(layout-parameters)= +## Layout Parameters +- `layout` (dict): configuration for wind turbine layout within the wind farm + - `layout_mode` (str): currently only `"basicgrid"` is supported + - `layout_options` (dict): options specific to the layout mode + - For `"basicgrid"` mode: + - `row_D_spacing` (float): rotor diameter multiplier for spacing between rows of + turbines (y direction). + - `rotation_angle_deg` (float, Optional): rotation angle of layout in degrees where 0 is North, increasing counter-clockwise. 90 degrees is East, 180 degrees is South, + 270 degrees is West. Defaults to 0.0. + - `row_phase_offset` (float, Optional): offset of turbines along row from one row to the next. Value must be between 0 and 1. Defaults to 0.0. + - `layout_shape` (str, optional): layout shape with respect to the number of turbines. Must be either 'square' or 'rectangle'. Defaults to 'square'. + - `turbine_aspect_ratio` (float, optional): ratio of number turbines per row / number of rows if using a 'rectangle' layout_shape. Unused for 'square' layout_shape. + +(powercurve-calc-parameters)= +## Power Curve Calculation Parameters +The `powercurve_calc_config` section allows customization of the turbine power curve calculation: + +- `elevation` (float): elevation in meters. Required if using Weibull resource model, otherwise should be zero. Defaults to 0. +- `wind_default_max_cp` (float): maximum power coefficient. Defaults to 0.45. +- `wind_default_max_tip_speed` (float): maximum tip speed in m/s. Defaults to 60. +- `wind_default_max_tip_speed_ratio` (float): maximum tip-speed ratio. Defaults to 8. +- `wind_default_cut_in_speed` (float): cut-in wind speed in m/s. Defaults to 4. +- `wind_default_cut_out_speed` (float): cut-out wind speed in m/s. Defaults to 25. +- `wind_default_drive_train` (int): integer representing wind turbine drive train type. Defaults to 0. The mapping is: + - 0: 3 Stage Planetary + - 1: Single Stage - Low Speed Generator + - 2: Multi-Generator + - 3: Direct Drive + +(pysam-options)= +## PySAM Options +- `pysam_options` (dict): The top-level keys correspond to the Groups available in the [Windpower module](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html). The next level is the individual attributes a user could set and a full list is available through the PySAM documentation of Windpower module. The Groups that users may want to specify specific options for are the: + - [Turbine](#turbine-group) + - [Farm](#farm-group) + - [Resource](#resource-group) + - [Losses](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html#losses-group) + - [AdjustmentFactors](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html#adjustmentfactors-group) + - [Uncertainty](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html#uncertainty-group) + + +(turbine-group)= +### Turbine group +```{note} +Do not include the `wind_turbine_hub_ht` or `wind_turbine_rotor_diameter` parameters in the `Turbine` group. These should be set in the performance parameters with the variables `hub_height` and `rotor_diameter`. +``` + +Some common turbine parameters that a user may want to specify within the [Turbine Group](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html#turbine-group) are: +- `wind_turbine_max_cp` (float): maximum power coefficient. Defaults to 0.45. +- `wind_turbine_thrust_coeff` (list): thrust coefficient as a function of wind speed. Must be same length as wind speed array. +- `wind_turbine_powercurve_windspeeds` (list): wind speeds for power curve in m/s. +- `wind_turbine_powercurve_powerout` (list): power output for power curve in kW. Must be same length as wind speed array. + +(farm-group)= +### Farm group +Some common farm parameters that a user may want to specify within the [Farm Group](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html#farm-group) are: +- `wind_farm_wake_model` (int): wake model selection. + - 0: Original Park model + - 1: Park model with wind speed-dependent wake decay constant + - 2: Eddy-viscosity model + - 3: Constant wake decay constant +- `wind_farm_wake_loss_percent` (float): wake losses as percentage of annual energy. Range (0, 50). + +(resource-group)= +### Resource group +Wind resource data is automatically formatted from the wind resource database and input as the `wind_resource_data` variable in the Windpower Resource Group. Some other common resource parameters that a user may want to specify within the [Resource Group](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html#resource-group) are: +- `wind_resource_shear` (float): shear exponent for wind profile. +- `wind_resource_turbulence_coeff` (float): turbulence coefficient. + +## Model Outputs +The wind plant PySAM model provides the following outputs: +- `electricity_out`: hourly electricity generation in kW +- `total_capacity`: total wind farm capacity in kW +- `annual_energy`: total annual energy production in kWh/year + +## Wind Resource Data Format +The model automatically formats wind resource data from the H2I wind resource database into the format required by PySAM Windpower module. The data includes: +- Ambient temperature in degrees Celsius +- Atmospheric pressure in atmospheres +- Wind speed in meters per second (m/s) +- Wind direction in degrees east of north + +The model handles interpolation between available resource heights to match the specified hub height and uses the closest available data when exact matches are not available. diff --git a/examples/05_wind_h2_opt/pysam_options_8300MW.yaml b/examples/05_wind_h2_opt/pysam_options_8300MW.yaml new file mode 100644 index 000000000..558b24cfb --- /dev/null +++ b/examples/05_wind_h2_opt/pysam_options_8300MW.yaml @@ -0,0 +1,413 @@ +Turbine: + wind_resource_shear: 0.14 + wind_turbine_ct_curve: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.4337 + - 0.4383 + - 0.4637 + - 0.4951 + - 0.5248 + - 0.5486 + - 0.5646 + - 0.5721 + - 0.5721 + - 0.5691 + - 0.5664 + - 0.566 + - 0.5684 + - 0.5715 + - 0.5738 + - 0.5742 + - 0.5726 + - 0.5704 + - 0.569 + - 0.5695 + - 0.5713 + - 0.5711 + - 0.5658 + - 0.5535 + - 0.5342 + - 0.5106 + - 0.4854 + - 0.4603 + - 0.4363 + - 0.413 + - 0.3898 + - 0.3666 + - 0.3432 + - 0.3205 + - 0.299 + - 0.2792 + - 0.2614 + - 0.2452 + - 0.2304 + - 0.2168 + - 0.2041 + - 0.1923 + - 0.1814 + - 0.1714 + - 0.1621 + - 0.1535 + - 0.1455 + - 0.138 + - 0.1311 + - 0.1246 + - 0.1186 + - 0.1129 + - 0.1076 + - 0.1027 + - 0.098 + - 0.0937 + - 0.0896 + - 0.0857 + - 0.082 + - 0.0786 + - 0.0753 + - 0.0723 + - 0.0694 + - 0.0666 + - 0.064 + - 0.0615 + - 0.0592 + - 0.057 + - 0.0548 + - 0.0528 + - 0.0509 + - 0.0491 + - 0.0474 + - 0.0457 + - 0.0441 + - 0.0426 + - 0.0412 + - 0.0398 + - 0.0385 + - 0.0373 + - 0.0361 + - 0.0349 + - 0.0338 + - 0.0328 + - 0.0317 + - 0.0308 + - 0.0298 + - 0.029 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_hub_ht: 130.0 + wind_turbine_max_cp: 0.474457866 + wind_turbine_powercurve_powerout: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 241.0757324 + - 303.7602033 + - 391.3910551 + - 500.8033128 + - 628.8320016 + - 772.3121467 + - 928.0787732 + - 1092.966906 + - 1265.273318 + - 1449.141772 + - 1650.177777 + - 1873.986843 + - 2124.586921 + - 2399.645733 + - 2695.243438 + - 3007.4602 + - 3334.216 + - 3680.790104 + - 4054.301598 + - 4461.869566 + - 4905.067075 + - 5363.283108 + - 5810.360625 + - 6220.142589 + - 6572.96016 + - 6875.097291 + - 7139.326132 + - 7378.418836 + - 7601.367393 + - 7802.043165 + - 7970.537352 + - 8096.941157 + - 8175.407321 + - 8216.334756 + - 8234.183913 + - 8243.415243 + - 8255.567745 + - 8270.494605 + - 8285.127555 + - 8296.398325 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_powercurve_windspeeds: + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 +Farm: + wind_farm_wake_model: 0.0 + wind_resource_turbulence_coeff: 0.1 +Losses: + avail_bop_loss: 0.5 + avail_grid_loss: 1.5 + avail_turb_loss: 3.58 + elec_eff_loss: 1.91 + elec_parasitic_loss: 0.1 + env_degrad_loss: 1.8 + env_env_loss: 0.4 + env_exposure_loss: 0.0 + env_icing_loss: 0.21 + ops_env_loss: 1.0 + ops_grid_loss: 0.84 + ops_load_loss: 0.99 + ops_strategies_loss: 0.0 + turb_generic_loss: 1.7 + turb_hysteresis_loss: 0.4 + turb_perf_loss: 1.1 + turb_specific_loss: 9.964851766642457 + wake_ext_loss: 1.1 + wake_future_loss: 0.0 + wake_int_loss: 0.0 +Resource: + weibull_k_factor: 2.0 + weibull_reference_height: 50.0 + weibull_wind_speed: 7.25 + wind_resource_model_choice: 0.0 +Uncertainty: + total_uncert: 12.085 diff --git a/examples/05_wind_h2_opt/tech_config.yaml b/examples/05_wind_h2_opt/tech_config.yaml index f3481fb92..68cb7bfbe 100644 --- a/examples/05_wind_h2_opt/tech_config.yaml +++ b/examples/05_wind_h2_opt/tech_config.yaml @@ -4,34 +4,30 @@ description: "This plant has wind feeding into an electrolyzer with optimization technologies: wind: performance_model: - model: "wind_plant_performance" + model: "pysam_wind_plant_performance" cost_model: - model: "wind_plant_cost" + model: "atb_wind_cost" model_inputs: - shared_parameters: + performance_parameters: num_turbines: 100 turbine_rating_kw: 8300 - performance_parameters: rotor_diameter: 196. hub_height: 130. - layout_mode: "basicgrid" - model_name: "pysam" - model_input_file: null - layout_params: - row_D_spacing: 10. - turbine_D_spacing: 10. - rating_range_kw: [1000, 9000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: "default" - name: "UtilityScaleWindPlant" - turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use - turbine_group: "onshore" - override_wind_resource_height: False - adjust_air_density_for_elevation: True + create_model_from: "default" + config_name: "WindPowerSingleOwner" + pysam_options: !include pysam_options_8300MW.yaml + run_recalculate_power_curve: False + layout: + layout_mode: "basicgrid" + layout_options: + row_D_spacing: 10.0 + turbine_D_spacing: 10.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: "square" cost_parameters: - cost_per_kw: 1500.0 + capex_per_kW: 1500.0 + opex_per_kW_per_year: 45 cost_year: 2019 electrolyzer: performance_model: diff --git a/examples/06_custom_tech/pysam_options_8300MW.yaml b/examples/06_custom_tech/pysam_options_8300MW.yaml new file mode 100644 index 000000000..558b24cfb --- /dev/null +++ b/examples/06_custom_tech/pysam_options_8300MW.yaml @@ -0,0 +1,413 @@ +Turbine: + wind_resource_shear: 0.14 + wind_turbine_ct_curve: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.4337 + - 0.4383 + - 0.4637 + - 0.4951 + - 0.5248 + - 0.5486 + - 0.5646 + - 0.5721 + - 0.5721 + - 0.5691 + - 0.5664 + - 0.566 + - 0.5684 + - 0.5715 + - 0.5738 + - 0.5742 + - 0.5726 + - 0.5704 + - 0.569 + - 0.5695 + - 0.5713 + - 0.5711 + - 0.5658 + - 0.5535 + - 0.5342 + - 0.5106 + - 0.4854 + - 0.4603 + - 0.4363 + - 0.413 + - 0.3898 + - 0.3666 + - 0.3432 + - 0.3205 + - 0.299 + - 0.2792 + - 0.2614 + - 0.2452 + - 0.2304 + - 0.2168 + - 0.2041 + - 0.1923 + - 0.1814 + - 0.1714 + - 0.1621 + - 0.1535 + - 0.1455 + - 0.138 + - 0.1311 + - 0.1246 + - 0.1186 + - 0.1129 + - 0.1076 + - 0.1027 + - 0.098 + - 0.0937 + - 0.0896 + - 0.0857 + - 0.082 + - 0.0786 + - 0.0753 + - 0.0723 + - 0.0694 + - 0.0666 + - 0.064 + - 0.0615 + - 0.0592 + - 0.057 + - 0.0548 + - 0.0528 + - 0.0509 + - 0.0491 + - 0.0474 + - 0.0457 + - 0.0441 + - 0.0426 + - 0.0412 + - 0.0398 + - 0.0385 + - 0.0373 + - 0.0361 + - 0.0349 + - 0.0338 + - 0.0328 + - 0.0317 + - 0.0308 + - 0.0298 + - 0.029 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_hub_ht: 130.0 + wind_turbine_max_cp: 0.474457866 + wind_turbine_powercurve_powerout: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 241.0757324 + - 303.7602033 + - 391.3910551 + - 500.8033128 + - 628.8320016 + - 772.3121467 + - 928.0787732 + - 1092.966906 + - 1265.273318 + - 1449.141772 + - 1650.177777 + - 1873.986843 + - 2124.586921 + - 2399.645733 + - 2695.243438 + - 3007.4602 + - 3334.216 + - 3680.790104 + - 4054.301598 + - 4461.869566 + - 4905.067075 + - 5363.283108 + - 5810.360625 + - 6220.142589 + - 6572.96016 + - 6875.097291 + - 7139.326132 + - 7378.418836 + - 7601.367393 + - 7802.043165 + - 7970.537352 + - 8096.941157 + - 8175.407321 + - 8216.334756 + - 8234.183913 + - 8243.415243 + - 8255.567745 + - 8270.494605 + - 8285.127555 + - 8296.398325 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_powercurve_windspeeds: + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 +Farm: + wind_farm_wake_model: 0.0 + wind_resource_turbulence_coeff: 0.1 +Losses: + avail_bop_loss: 0.5 + avail_grid_loss: 1.5 + avail_turb_loss: 3.58 + elec_eff_loss: 1.91 + elec_parasitic_loss: 0.1 + env_degrad_loss: 1.8 + env_env_loss: 0.4 + env_exposure_loss: 0.0 + env_icing_loss: 0.21 + ops_env_loss: 1.0 + ops_grid_loss: 0.84 + ops_load_loss: 0.99 + ops_strategies_loss: 0.0 + turb_generic_loss: 1.7 + turb_hysteresis_loss: 0.4 + turb_perf_loss: 1.1 + turb_specific_loss: 9.964851766642457 + wake_ext_loss: 1.1 + wake_future_loss: 0.0 + wake_int_loss: 0.0 +Resource: + weibull_k_factor: 2.0 + weibull_reference_height: 50.0 + weibull_wind_speed: 7.25 + wind_resource_model_choice: 0.0 +Uncertainty: + total_uncert: 12.085 diff --git a/examples/06_custom_tech/tech_config.yaml b/examples/06_custom_tech/tech_config.yaml index 8dac0280a..18b0b1f4c 100644 --- a/examples/06_custom_tech/tech_config.yaml +++ b/examples/06_custom_tech/tech_config.yaml @@ -4,35 +4,32 @@ description: This plant has wind feeding into an electrolyzer with optimization technologies: wind: performance_model: - model: wind_plant_performance + model: "pysam_wind_plant_performance" cost_model: - model: wind_plant_cost + model: "atb_wind_cost" model_inputs: - shared_parameters: + performance_parameters: num_turbines: 4 turbine_rating_kw: 8300 - performance_parameters: rotor_diameter: 196. hub_height: 130. - layout_mode: basicgrid - model_name: pysam - model_input_file: null - layout_params: - row_D_spacing: 10. - turbine_D_spacing: 10. - rating_range_kw: [1000, 5000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: default - name: UtilityScaleWindPlant - turbine_name: 2023NREL_Bespoke_8.3MW_196 #turbine model to use - turbine_group: onshore - override_wind_resource_height: False - adjust_air_density_for_elevation: True + create_model_from: "default" + config_name: "WindPowerSingleOwner" + pysam_options: !include pysam_options_8300MW.yaml + run_recalculate_power_curve: False + layout: + layout_mode: "basicgrid" + layout_options: + row_D_spacing: 10.0 + turbine_D_spacing: 10.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: "square" cost_parameters: - cost_per_kw: 1500.0 + capex_per_kW: 1500.0 + opex_per_kW_per_year: 0 cost_year: 2019 + paper_mill: performance_model: model: paper_mill_performance diff --git a/examples/08_wind_electrolyzer/pysam_options_8300MW.yaml b/examples/08_wind_electrolyzer/pysam_options_8300MW.yaml new file mode 100644 index 000000000..558b24cfb --- /dev/null +++ b/examples/08_wind_electrolyzer/pysam_options_8300MW.yaml @@ -0,0 +1,413 @@ +Turbine: + wind_resource_shear: 0.14 + wind_turbine_ct_curve: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.4337 + - 0.4383 + - 0.4637 + - 0.4951 + - 0.5248 + - 0.5486 + - 0.5646 + - 0.5721 + - 0.5721 + - 0.5691 + - 0.5664 + - 0.566 + - 0.5684 + - 0.5715 + - 0.5738 + - 0.5742 + - 0.5726 + - 0.5704 + - 0.569 + - 0.5695 + - 0.5713 + - 0.5711 + - 0.5658 + - 0.5535 + - 0.5342 + - 0.5106 + - 0.4854 + - 0.4603 + - 0.4363 + - 0.413 + - 0.3898 + - 0.3666 + - 0.3432 + - 0.3205 + - 0.299 + - 0.2792 + - 0.2614 + - 0.2452 + - 0.2304 + - 0.2168 + - 0.2041 + - 0.1923 + - 0.1814 + - 0.1714 + - 0.1621 + - 0.1535 + - 0.1455 + - 0.138 + - 0.1311 + - 0.1246 + - 0.1186 + - 0.1129 + - 0.1076 + - 0.1027 + - 0.098 + - 0.0937 + - 0.0896 + - 0.0857 + - 0.082 + - 0.0786 + - 0.0753 + - 0.0723 + - 0.0694 + - 0.0666 + - 0.064 + - 0.0615 + - 0.0592 + - 0.057 + - 0.0548 + - 0.0528 + - 0.0509 + - 0.0491 + - 0.0474 + - 0.0457 + - 0.0441 + - 0.0426 + - 0.0412 + - 0.0398 + - 0.0385 + - 0.0373 + - 0.0361 + - 0.0349 + - 0.0338 + - 0.0328 + - 0.0317 + - 0.0308 + - 0.0298 + - 0.029 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_hub_ht: 130.0 + wind_turbine_max_cp: 0.474457866 + wind_turbine_powercurve_powerout: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 241.0757324 + - 303.7602033 + - 391.3910551 + - 500.8033128 + - 628.8320016 + - 772.3121467 + - 928.0787732 + - 1092.966906 + - 1265.273318 + - 1449.141772 + - 1650.177777 + - 1873.986843 + - 2124.586921 + - 2399.645733 + - 2695.243438 + - 3007.4602 + - 3334.216 + - 3680.790104 + - 4054.301598 + - 4461.869566 + - 4905.067075 + - 5363.283108 + - 5810.360625 + - 6220.142589 + - 6572.96016 + - 6875.097291 + - 7139.326132 + - 7378.418836 + - 7601.367393 + - 7802.043165 + - 7970.537352 + - 8096.941157 + - 8175.407321 + - 8216.334756 + - 8234.183913 + - 8243.415243 + - 8255.567745 + - 8270.494605 + - 8285.127555 + - 8296.398325 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_powercurve_windspeeds: + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 +Farm: + wind_farm_wake_model: 0.0 + wind_resource_turbulence_coeff: 0.1 +Losses: + avail_bop_loss: 0.5 + avail_grid_loss: 1.5 + avail_turb_loss: 3.58 + elec_eff_loss: 1.91 + elec_parasitic_loss: 0.1 + env_degrad_loss: 1.8 + env_env_loss: 0.4 + env_exposure_loss: 0.0 + env_icing_loss: 0.21 + ops_env_loss: 1.0 + ops_grid_loss: 0.84 + ops_load_loss: 0.99 + ops_strategies_loss: 0.0 + turb_generic_loss: 1.7 + turb_hysteresis_loss: 0.4 + turb_perf_loss: 1.1 + turb_specific_loss: 9.964851766642457 + wake_ext_loss: 1.1 + wake_future_loss: 0.0 + wake_int_loss: 0.0 +Resource: + weibull_k_factor: 2.0 + weibull_reference_height: 50.0 + weibull_wind_speed: 7.25 + wind_resource_model_choice: 0.0 +Uncertainty: + total_uncert: 12.085 diff --git a/examples/08_wind_electrolyzer/tech_config.yaml b/examples/08_wind_electrolyzer/tech_config.yaml index 22dd52a08..cf9eb5149 100644 --- a/examples/08_wind_electrolyzer/tech_config.yaml +++ b/examples/08_wind_electrolyzer/tech_config.yaml @@ -4,34 +4,30 @@ description: "This plant has wind feeding into an electrolyzer without optimizat technologies: wind: performance_model: - model: "wind_plant_performance" + model: "pysam_wind_plant_performance" cost_model: - model: "wind_plant_cost" + model: "atb_wind_cost" model_inputs: - shared_parameters: + performance_parameters: num_turbines: 100 turbine_rating_kw: 8300 - performance_parameters: rotor_diameter: 196. hub_height: 130. - layout_mode: "basicgrid" - model_name: "pysam" - model_input_file: null - layout_params: - row_D_spacing: 10. - turbine_D_spacing: 10. - rating_range_kw: [1000, 5000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: "default" - name: "UtilityScaleWindPlant" - turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use - turbine_group: "onshore" - override_wind_resource_height: True - adjust_air_density_for_elevation: True + create_model_from: "default" + config_name: "WindPowerSingleOwner" + pysam_options: !include pysam_options_8300MW.yaml + run_recalculate_power_curve: False + layout: + layout_mode: "basicgrid" + layout_options: + row_D_spacing: 10.0 + turbine_D_spacing: 10.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: "square" cost_parameters: - cost_per_kw: 1500.0 + capex_per_kW: 1500.0 + opex_per_kW_per_year: 45 cost_year: 2019 electrolyzer: performance_model: diff --git a/examples/10_electrolyzer_om/pysam_options_8300MW.yaml b/examples/10_electrolyzer_om/pysam_options_8300MW.yaml new file mode 100644 index 000000000..558b24cfb --- /dev/null +++ b/examples/10_electrolyzer_om/pysam_options_8300MW.yaml @@ -0,0 +1,413 @@ +Turbine: + wind_resource_shear: 0.14 + wind_turbine_ct_curve: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.4337 + - 0.4383 + - 0.4637 + - 0.4951 + - 0.5248 + - 0.5486 + - 0.5646 + - 0.5721 + - 0.5721 + - 0.5691 + - 0.5664 + - 0.566 + - 0.5684 + - 0.5715 + - 0.5738 + - 0.5742 + - 0.5726 + - 0.5704 + - 0.569 + - 0.5695 + - 0.5713 + - 0.5711 + - 0.5658 + - 0.5535 + - 0.5342 + - 0.5106 + - 0.4854 + - 0.4603 + - 0.4363 + - 0.413 + - 0.3898 + - 0.3666 + - 0.3432 + - 0.3205 + - 0.299 + - 0.2792 + - 0.2614 + - 0.2452 + - 0.2304 + - 0.2168 + - 0.2041 + - 0.1923 + - 0.1814 + - 0.1714 + - 0.1621 + - 0.1535 + - 0.1455 + - 0.138 + - 0.1311 + - 0.1246 + - 0.1186 + - 0.1129 + - 0.1076 + - 0.1027 + - 0.098 + - 0.0937 + - 0.0896 + - 0.0857 + - 0.082 + - 0.0786 + - 0.0753 + - 0.0723 + - 0.0694 + - 0.0666 + - 0.064 + - 0.0615 + - 0.0592 + - 0.057 + - 0.0548 + - 0.0528 + - 0.0509 + - 0.0491 + - 0.0474 + - 0.0457 + - 0.0441 + - 0.0426 + - 0.0412 + - 0.0398 + - 0.0385 + - 0.0373 + - 0.0361 + - 0.0349 + - 0.0338 + - 0.0328 + - 0.0317 + - 0.0308 + - 0.0298 + - 0.029 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_hub_ht: 130.0 + wind_turbine_max_cp: 0.474457866 + wind_turbine_powercurve_powerout: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 241.0757324 + - 303.7602033 + - 391.3910551 + - 500.8033128 + - 628.8320016 + - 772.3121467 + - 928.0787732 + - 1092.966906 + - 1265.273318 + - 1449.141772 + - 1650.177777 + - 1873.986843 + - 2124.586921 + - 2399.645733 + - 2695.243438 + - 3007.4602 + - 3334.216 + - 3680.790104 + - 4054.301598 + - 4461.869566 + - 4905.067075 + - 5363.283108 + - 5810.360625 + - 6220.142589 + - 6572.96016 + - 6875.097291 + - 7139.326132 + - 7378.418836 + - 7601.367393 + - 7802.043165 + - 7970.537352 + - 8096.941157 + - 8175.407321 + - 8216.334756 + - 8234.183913 + - 8243.415243 + - 8255.567745 + - 8270.494605 + - 8285.127555 + - 8296.398325 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_powercurve_windspeeds: + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 +Farm: + wind_farm_wake_model: 0.0 + wind_resource_turbulence_coeff: 0.1 +Losses: + avail_bop_loss: 0.5 + avail_grid_loss: 1.5 + avail_turb_loss: 3.58 + elec_eff_loss: 1.91 + elec_parasitic_loss: 0.1 + env_degrad_loss: 1.8 + env_env_loss: 0.4 + env_exposure_loss: 0.0 + env_icing_loss: 0.21 + ops_env_loss: 1.0 + ops_grid_loss: 0.84 + ops_load_loss: 0.99 + ops_strategies_loss: 0.0 + turb_generic_loss: 1.7 + turb_hysteresis_loss: 0.4 + turb_perf_loss: 1.1 + turb_specific_loss: 9.964851766642457 + wake_ext_loss: 1.1 + wake_future_loss: 0.0 + wake_int_loss: 0.0 +Resource: + weibull_k_factor: 2.0 + weibull_reference_height: 50.0 + weibull_wind_speed: 7.25 + wind_resource_model_choice: 0.0 +Uncertainty: + total_uncert: 12.085 diff --git a/examples/10_electrolyzer_om/tech_config.yaml b/examples/10_electrolyzer_om/tech_config.yaml index 1ab022d4d..903d3848f 100644 --- a/examples/10_electrolyzer_om/tech_config.yaml +++ b/examples/10_electrolyzer_om/tech_config.yaml @@ -4,34 +4,30 @@ description: "This plant has wind feeding into an electrolyzer with optimization technologies: wind: performance_model: - model: "wind_plant_performance" + model: "pysam_wind_plant_performance" cost_model: - model: "wind_plant_cost" + model: "atb_wind_cost" model_inputs: - shared_parameters: + performance_parameters: num_turbines: 2 turbine_rating_kw: 8300 - performance_parameters: rotor_diameter: 196. hub_height: 130. - layout_mode: "basicgrid" - model_name: "pysam" - model_input_file: null - layout_params: - row_D_spacing: 10. - turbine_D_spacing: 10. - rating_range_kw: [1000, 5000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: "default" - name: "UtilityScaleWindPlant" - turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use - turbine_group: "onshore" - override_wind_resource_height: False - adjust_air_density_for_elevation: True + create_model_from: "default" + config_name: "WindPowerSingleOwner" + pysam_options: !include pysam_options_8300MW.yaml + run_recalculate_power_curve: False + layout: + layout_mode: "basicgrid" + layout_options: + row_D_spacing: 10.0 + turbine_D_spacing: 10.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: "square" cost_parameters: - cost_per_kw: 1500.0 + capex_per_kW: 1500.0 + opex_per_kW_per_year: 45 cost_year: 2019 electrolyzer: performance_model: diff --git a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb index 48c6634c6..a6910bdf0 100644 --- a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb +++ b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb @@ -97,10 +97,20 @@ " electricity_in |40580346.11525534| kW electrolyzer.electricity_in 356785.74303116 \n", " n_clusters [18.] unitless electrolyzer.n_clusters 18.0 \n", " singlitico_electrolyzer_cost\n", - " total_hydrogen_produced [58458963.85099926] kg/year electrolyzer.total_hydrogen_produced 58458963.85099926 \n", - " electricity_in |40580346.11525534| kW electrolyzer.electricity_in 356785.74303116 \n", - " electrolyzer_size_mw [720.] MW electrolyzer.electrolyzer_size_mw 720.0 \n", - " finance_subgroup_elec\n", + " total_hydrogen_produced [58145418.05837836] kg/year electrolyzer.total_hydrogen_produced \n", + " electricity_in |40393548.72275606| kW electrolyzer.electricity_in \n", + " electrolyzer_size_mw [720.] MW electrolyzer.electrolyzer_size_mw \n", + " electrolyzer_to_h2_storage_pipe\n", + " hydrogen_in |219.95801082| kg/s electrolyzer_to_h2_storage_pipe.hydrogen_in \n", + " h2_storage\n", + " h2_storage\n", + " hydrogen_in |791848.83895374| kg/h h2_storage.hydrogen_in \n", + " rated_h2_production_kg_pr_hr [0.] kg/h h2_storage.rated_h2_production_kg_pr_hr \n", + " efficiency [0.77728804] None h2_storage.efficiency \n", + " demand_open_loop_controller\n", + " hydrogen_in |791848.83895374| kg/h h2_storage.hydrogen_in \n", + " hydrogen_demand |467974.3582719| kg/h**2 h2_storage.hydrogen_demand \n", + " financials_group_default\n", " electricity_sum\n", " electricity_wind |40580346.11525534| kW finance_subgroup_elec.electricity_sum.electricity_wind 356785.74303116 \n", " adjusted_capex_opex_comp\n", diff --git a/examples/14_wind_hydrogen_dispatch/inputs/pysam_options_8300MW.yaml b/examples/14_wind_hydrogen_dispatch/inputs/pysam_options_8300MW.yaml new file mode 100644 index 000000000..558b24cfb --- /dev/null +++ b/examples/14_wind_hydrogen_dispatch/inputs/pysam_options_8300MW.yaml @@ -0,0 +1,413 @@ +Turbine: + wind_resource_shear: 0.14 + wind_turbine_ct_curve: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.4337 + - 0.4383 + - 0.4637 + - 0.4951 + - 0.5248 + - 0.5486 + - 0.5646 + - 0.5721 + - 0.5721 + - 0.5691 + - 0.5664 + - 0.566 + - 0.5684 + - 0.5715 + - 0.5738 + - 0.5742 + - 0.5726 + - 0.5704 + - 0.569 + - 0.5695 + - 0.5713 + - 0.5711 + - 0.5658 + - 0.5535 + - 0.5342 + - 0.5106 + - 0.4854 + - 0.4603 + - 0.4363 + - 0.413 + - 0.3898 + - 0.3666 + - 0.3432 + - 0.3205 + - 0.299 + - 0.2792 + - 0.2614 + - 0.2452 + - 0.2304 + - 0.2168 + - 0.2041 + - 0.1923 + - 0.1814 + - 0.1714 + - 0.1621 + - 0.1535 + - 0.1455 + - 0.138 + - 0.1311 + - 0.1246 + - 0.1186 + - 0.1129 + - 0.1076 + - 0.1027 + - 0.098 + - 0.0937 + - 0.0896 + - 0.0857 + - 0.082 + - 0.0786 + - 0.0753 + - 0.0723 + - 0.0694 + - 0.0666 + - 0.064 + - 0.0615 + - 0.0592 + - 0.057 + - 0.0548 + - 0.0528 + - 0.0509 + - 0.0491 + - 0.0474 + - 0.0457 + - 0.0441 + - 0.0426 + - 0.0412 + - 0.0398 + - 0.0385 + - 0.0373 + - 0.0361 + - 0.0349 + - 0.0338 + - 0.0328 + - 0.0317 + - 0.0308 + - 0.0298 + - 0.029 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_hub_ht: 130.0 + wind_turbine_max_cp: 0.474457866 + wind_turbine_powercurve_powerout: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 241.0757324 + - 303.7602033 + - 391.3910551 + - 500.8033128 + - 628.8320016 + - 772.3121467 + - 928.0787732 + - 1092.966906 + - 1265.273318 + - 1449.141772 + - 1650.177777 + - 1873.986843 + - 2124.586921 + - 2399.645733 + - 2695.243438 + - 3007.4602 + - 3334.216 + - 3680.790104 + - 4054.301598 + - 4461.869566 + - 4905.067075 + - 5363.283108 + - 5810.360625 + - 6220.142589 + - 6572.96016 + - 6875.097291 + - 7139.326132 + - 7378.418836 + - 7601.367393 + - 7802.043165 + - 7970.537352 + - 8096.941157 + - 8175.407321 + - 8216.334756 + - 8234.183913 + - 8243.415243 + - 8255.567745 + - 8270.494605 + - 8285.127555 + - 8296.398325 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_powercurve_windspeeds: + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 +Farm: + wind_farm_wake_model: 0.0 + wind_resource_turbulence_coeff: 0.1 +Losses: + avail_bop_loss: 0.5 + avail_grid_loss: 1.5 + avail_turb_loss: 3.58 + elec_eff_loss: 1.91 + elec_parasitic_loss: 0.1 + env_degrad_loss: 1.8 + env_env_loss: 0.4 + env_exposure_loss: 0.0 + env_icing_loss: 0.21 + ops_env_loss: 1.0 + ops_grid_loss: 0.84 + ops_load_loss: 0.99 + ops_strategies_loss: 0.0 + turb_generic_loss: 1.7 + turb_hysteresis_loss: 0.4 + turb_perf_loss: 1.1 + turb_specific_loss: 9.964851766642457 + wake_ext_loss: 1.1 + wake_future_loss: 0.0 + wake_int_loss: 0.0 +Resource: + weibull_k_factor: 2.0 + weibull_reference_height: 50.0 + weibull_wind_speed: 7.25 + wind_resource_model_choice: 0.0 +Uncertainty: + total_uncert: 12.085 diff --git a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml index 134d4598b..7a004f03d 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml @@ -4,34 +4,30 @@ description: "This hybrid plant produces hydrogen" technologies: wind: performance_model: - model: "wind_plant_performance" + model: "pysam_wind_plant_performance" cost_model: - model: "wind_plant_cost" + model: "atb_wind_cost" model_inputs: - shared_parameters: + performance_parameters: num_turbines: 100 turbine_rating_kw: 8300 - performance_parameters: rotor_diameter: 196. hub_height: 130. - layout_mode: "basicgrid" - model_name: "pysam" - model_input_file: null - layout_params: - row_D_spacing: 10. - turbine_D_spacing: 10. - rating_range_kw: [1000, 5000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: "default" - name: "UtilityScaleWindPlant" - turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use - turbine_group: "onshore" - override_wind_resource_height: False - adjust_air_density_for_elevation: True + create_model_from: "default" + config_name: "WindPowerSingleOwner" + pysam_options: !include pysam_options_8300MW.yaml + run_recalculate_power_curve: False + layout: + layout_mode: "basicgrid" + layout_options: + row_D_spacing: 10.0 + turbine_D_spacing: 10.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: "square" cost_parameters: - cost_per_kw: 1500.0 + capex_per_kW: 1500.0 + opex_per_kW_per_year: 45 cost_year: 2019 electrolyzer: performance_model: diff --git a/examples/15_wind_solar_electrolyzer/pysam_options_6000MW.yaml b/examples/15_wind_solar_electrolyzer/pysam_options_6000MW.yaml new file mode 100644 index 000000000..8b59bf2b4 --- /dev/null +++ b/examples/15_wind_solar_electrolyzer/pysam_options_6000MW.yaml @@ -0,0 +1,413 @@ +Turbine: + wind_resource_shear: 0.14 + wind_turbine_ct_curve: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.912 + - 0.89325 + - 0.8745 + - 0.8675 + - 0.8605 + - 0.85025 + - 0.84 + - 0.83275 + - 0.8255 + - 0.82175 + - 0.818 + - 0.8175 + - 0.817 + - 0.81425 + - 0.8115 + - 0.8115 + - 0.8115 + - 0.8085 + - 0.8055 + - 0.7985 + - 0.7915 + - 0.7765 + - 0.7615 + - 0.73625 + - 0.711 + - 0.68025 + - 0.6495 + - 0.61525 + - 0.581 + - 0.54625 + - 0.5115 + - 0.47825 + - 0.445 + - 0.41675 + - 0.3885 + - 0.36275 + - 0.337 + - 0.31625 + - 0.2955 + - 0.27675 + - 0.258 + - 0.24325 + - 0.2285 + - 0.21725 + - 0.206 + - 0.19325 + - 0.1805 + - 0.1735 + - 0.1665 + - 0.15775 + - 0.149 + - 0.143 + - 0.137 + - 0.13175 + - 0.1265 + - 0.119 + - 0.1115 + - 0.10925 + - 0.107 + - 0.10275 + - 0.0985 + - 0.09425 + - 0.09 + - 0.086 + - 0.082 + - 0.08075 + - 0.0795 + - 0.076 + - 0.0725 + - 0.06975 + - 0.067 + - 0.06325 + - 0.0595 + - 0.05825 + - 0.057 + - 0.0535 + - 0.05 + - 0.049 + - 0.048 + - 0.04475 + - 0.0415 + - 0.0405 + - 0.0395 + - 0.039 + - 0.0385 + - 0.03525 + - 0.032 + - 0.0315 + - 0.031 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_hub_ht: 115.0 + wind_turbine_max_cp: 0.474457866 + wind_turbine_powercurve_powerout: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 181.0 + - 229.0 + - 294.0 + - 377.0 + - 473.0 + - 581.0 + - 698.0 + - 822.0 + - 952.0 + - 1090.0 + - 1241.0 + - 1410.0 + - 1598.0 + - 1805.0 + - 2027.0 + - 2262.0 + - 2509.0 + - 2769.0 + - 3050.0 + - 3356.0 + - 3687.0 + - 4027.0 + - 4355.0 + - 4650.0 + - 4897.0 + - 5101.0 + - 5275.0 + - 5429.0 + - 5571.0 + - 5699.0 + - 5806.0 + - 5886.0 + - 5934.0 + - 5957.0 + - 5966.0 + - 5970.0 + - 5976.0 + - 5984.0 + - 5992.0 + - 5999.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 6000.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_powercurve_windspeeds: + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 +Farm: + wind_farm_wake_model: 0.0 + wind_resource_turbulence_coeff: 0.1 +Losses: + avail_bop_loss: 0.5 + avail_grid_loss: 1.5 + avail_turb_loss: 3.58 + elec_eff_loss: 1.91 + elec_parasitic_loss: 0.1 + env_degrad_loss: 1.8 + env_env_loss: 0.4 + env_exposure_loss: 0.0 + env_icing_loss: 0.21 + ops_env_loss: 1.0 + ops_grid_loss: 0.84 + ops_load_loss: 0.99 + ops_strategies_loss: 0.0 + turb_generic_loss: 1.7 + turb_hysteresis_loss: 0.4 + turb_perf_loss: 1.1 + turb_specific_loss: 0.81 + wake_ext_loss: 1.1 + wake_future_loss: 0.0 + wake_int_loss: 0.0 +Resource: + weibull_k_factor: 2.0 + weibull_reference_height: 50.0 + weibull_wind_speed: 7.25 + wind_resource_model_choice: 0.0 +Uncertainty: + total_uncert: 12.085 diff --git a/examples/15_wind_solar_electrolyzer/tech_config.yaml b/examples/15_wind_solar_electrolyzer/tech_config.yaml index 4edbe5b98..d8c22e11a 100644 --- a/examples/15_wind_solar_electrolyzer/tech_config.yaml +++ b/examples/15_wind_solar_electrolyzer/tech_config.yaml @@ -1,38 +1,33 @@ name: "technology_config" description: "This hybrid plant produces hydrogen" - technologies: wind: performance_model: - model: "wind_plant_performance" + model: "pysam_wind_plant_performance" cost_model: - model: "wind_plant_cost" + model: "atb_wind_cost" model_inputs: - shared_parameters: + performance_parameters: num_turbines: 100 turbine_rating_kw: 6000 - performance_parameters: rotor_diameter: 170. hub_height: 115. - layout_mode: "basicgrid" - model_name: "pysam" - model_input_file: null - layout_params: - row_D_spacing: 7. - turbine_D_spacing: 7. - rating_range_kw: [1000, 9000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: "default" - name: "UtilityScaleWindPlant" - turbine_name: "2023NREL_Bespoke_6MW_170" #turbine model to use - turbine_group: "onshore" - override_wind_resource_height: False - adjust_air_density_for_elevation: False + create_model_from: "default" + config_name: "WindPowerSingleOwner" + pysam_options: !include pysam_options_6000MW.yaml + run_recalculate_power_curve: False + layout: + layout_mode: "basicgrid" + layout_options: + row_D_spacing: 7.0 + turbine_D_spacing: 7.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: "square" cost_parameters: - cost_per_kw: 1500.0 + capex_per_kW: 1500.0 + opex_per_kW_per_year: 45 cost_year: 2019 solar: performance_model: diff --git a/examples/18_pyomo_heuristic_dispatch/pysam_options_8300MW.yaml b/examples/18_pyomo_heuristic_dispatch/pysam_options_8300MW.yaml new file mode 100644 index 000000000..558b24cfb --- /dev/null +++ b/examples/18_pyomo_heuristic_dispatch/pysam_options_8300MW.yaml @@ -0,0 +1,413 @@ +Turbine: + wind_resource_shear: 0.14 + wind_turbine_ct_curve: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.4337 + - 0.4383 + - 0.4637 + - 0.4951 + - 0.5248 + - 0.5486 + - 0.5646 + - 0.5721 + - 0.5721 + - 0.5691 + - 0.5664 + - 0.566 + - 0.5684 + - 0.5715 + - 0.5738 + - 0.5742 + - 0.5726 + - 0.5704 + - 0.569 + - 0.5695 + - 0.5713 + - 0.5711 + - 0.5658 + - 0.5535 + - 0.5342 + - 0.5106 + - 0.4854 + - 0.4603 + - 0.4363 + - 0.413 + - 0.3898 + - 0.3666 + - 0.3432 + - 0.3205 + - 0.299 + - 0.2792 + - 0.2614 + - 0.2452 + - 0.2304 + - 0.2168 + - 0.2041 + - 0.1923 + - 0.1814 + - 0.1714 + - 0.1621 + - 0.1535 + - 0.1455 + - 0.138 + - 0.1311 + - 0.1246 + - 0.1186 + - 0.1129 + - 0.1076 + - 0.1027 + - 0.098 + - 0.0937 + - 0.0896 + - 0.0857 + - 0.082 + - 0.0786 + - 0.0753 + - 0.0723 + - 0.0694 + - 0.0666 + - 0.064 + - 0.0615 + - 0.0592 + - 0.057 + - 0.0548 + - 0.0528 + - 0.0509 + - 0.0491 + - 0.0474 + - 0.0457 + - 0.0441 + - 0.0426 + - 0.0412 + - 0.0398 + - 0.0385 + - 0.0373 + - 0.0361 + - 0.0349 + - 0.0338 + - 0.0328 + - 0.0317 + - 0.0308 + - 0.0298 + - 0.029 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_hub_ht: 130.0 + wind_turbine_max_cp: 0.474457866 + wind_turbine_powercurve_powerout: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 241.0757324 + - 303.7602033 + - 391.3910551 + - 500.8033128 + - 628.8320016 + - 772.3121467 + - 928.0787732 + - 1092.966906 + - 1265.273318 + - 1449.141772 + - 1650.177777 + - 1873.986843 + - 2124.586921 + - 2399.645733 + - 2695.243438 + - 3007.4602 + - 3334.216 + - 3680.790104 + - 4054.301598 + - 4461.869566 + - 4905.067075 + - 5363.283108 + - 5810.360625 + - 6220.142589 + - 6572.96016 + - 6875.097291 + - 7139.326132 + - 7378.418836 + - 7601.367393 + - 7802.043165 + - 7970.537352 + - 8096.941157 + - 8175.407321 + - 8216.334756 + - 8234.183913 + - 8243.415243 + - 8255.567745 + - 8270.494605 + - 8285.127555 + - 8296.398325 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_powercurve_windspeeds: + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 +Farm: + wind_farm_wake_model: 0.0 + wind_resource_turbulence_coeff: 0.1 +Losses: + avail_bop_loss: 0.5 + avail_grid_loss: 1.5 + avail_turb_loss: 3.58 + elec_eff_loss: 1.91 + elec_parasitic_loss: 0.1 + env_degrad_loss: 1.8 + env_env_loss: 0.4 + env_exposure_loss: 0.0 + env_icing_loss: 0.21 + ops_env_loss: 1.0 + ops_grid_loss: 0.84 + ops_load_loss: 0.99 + ops_strategies_loss: 0.0 + turb_generic_loss: 1.7 + turb_hysteresis_loss: 0.4 + turb_perf_loss: 1.1 + turb_specific_loss: 9.964851766642457 + wake_ext_loss: 1.1 + wake_future_loss: 0.0 + wake_int_loss: 0.0 +Resource: + weibull_k_factor: 2.0 + weibull_reference_height: 50.0 + weibull_wind_speed: 7.25 + wind_resource_model_choice: 0.0 +Uncertainty: + total_uncert: 12.085 diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml index eb851c044..2c41d2aff 100644 --- a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml +++ b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml @@ -4,40 +4,36 @@ description: "This hybrid plant produces hydrogen" technologies: wind: performance_model: - model: "wind_plant_performance" + model: "pysam_wind_plant_performance" cost_model: - model: "wind_plant_cost" + model: "atb_wind_cost" dispatch_rule_set: model: "pyomo_dispatch_generic_converter" resource: type: "pysam_wind" wind_speed: 9. model_inputs: - shared_parameters: + performance_parameters: num_turbines: 100 turbine_rating_kw: 8300 - performance_parameters: rotor_diameter: 196. hub_height: 130. - layout_mode: "basicgrid" - model_name: "pysam" - model_input_file: null - layout_params: - row_D_spacing: 10. - turbine_D_spacing: 10. - rating_range_kw: [1000, 5000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: "default" - name: "UtilityScaleWindPlant" - turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use - turbine_group: "onshore" - override_wind_resource_height: False - adjust_air_density_for_elevation: True + create_model_from: "default" + config_name: "WindPowerSingleOwner" + pysam_options: !include pysam_options_8300MW.yaml + run_recalculate_power_curve: False + layout: + layout_mode: "basicgrid" + layout_options: + row_D_spacing: 10.0 + turbine_D_spacing: 10.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: "square" cost_parameters: - cost_per_kw: 1500.0 - cost_year: 2024 + capex_per_kW: 1500.0 + opex_per_kW_per_year: 45 + cost_year: 2019 dispatch_rule_parameters: commodity_name: "electricity" commodity_storage_units: "kW" diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml index e1f648f93..7478bc13d 100644 --- a/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml +++ b/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml @@ -4,40 +4,36 @@ description: "This hybrid plant produces hydrogen" technologies: wind: performance_model: - model: "wind_plant_performance" + model: "pysam_wind_plant_performance" cost_model: - model: "wind_plant_cost" + model: "atb_wind_cost" dispatch_rule_set: model: "pyomo_dispatch_generic_converter" resource: type: "pysam_wind" wind_speed: 9. model_inputs: - shared_parameters: + performance_parameters: num_turbines: 100 turbine_rating_kw: 8300 - performance_parameters: rotor_diameter: 196. hub_height: 130. - layout_mode: "basicgrid" - model_name: "pysam" - model_input_file: null - layout_params: - row_D_spacing: 10. - turbine_D_spacing: 10. - rating_range_kw: [1000, 5000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: "default" - name: "UtilityScaleWindPlant" - turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use - turbine_group: "onshore" - override_wind_resource_height: False - adjust_air_density_for_elevation: True + create_model_from: "default" + config_name: "WindPowerSingleOwner" + pysam_options: !include pysam_options_8300MW.yaml + run_recalculate_power_curve: False + layout: + layout_mode: "basicgrid" + layout_options: + row_D_spacing: 10.0 + turbine_D_spacing: 10.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: "square" cost_parameters: - cost_per_kw: 1500.0 - cost_year: 2024 + capex_per_kW: 1500.0 + opex_per_kW_per_year: 45 + cost_year: 2019 dispatch_rule_parameters: commodity_name: "electricity" commodity_storage_units: "kW" diff --git a/examples/19_simple_dispatch/pysam_options_8300MW.yaml b/examples/19_simple_dispatch/pysam_options_8300MW.yaml new file mode 100644 index 000000000..558b24cfb --- /dev/null +++ b/examples/19_simple_dispatch/pysam_options_8300MW.yaml @@ -0,0 +1,413 @@ +Turbine: + wind_resource_shear: 0.14 + wind_turbine_ct_curve: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.4337 + - 0.4383 + - 0.4637 + - 0.4951 + - 0.5248 + - 0.5486 + - 0.5646 + - 0.5721 + - 0.5721 + - 0.5691 + - 0.5664 + - 0.566 + - 0.5684 + - 0.5715 + - 0.5738 + - 0.5742 + - 0.5726 + - 0.5704 + - 0.569 + - 0.5695 + - 0.5713 + - 0.5711 + - 0.5658 + - 0.5535 + - 0.5342 + - 0.5106 + - 0.4854 + - 0.4603 + - 0.4363 + - 0.413 + - 0.3898 + - 0.3666 + - 0.3432 + - 0.3205 + - 0.299 + - 0.2792 + - 0.2614 + - 0.2452 + - 0.2304 + - 0.2168 + - 0.2041 + - 0.1923 + - 0.1814 + - 0.1714 + - 0.1621 + - 0.1535 + - 0.1455 + - 0.138 + - 0.1311 + - 0.1246 + - 0.1186 + - 0.1129 + - 0.1076 + - 0.1027 + - 0.098 + - 0.0937 + - 0.0896 + - 0.0857 + - 0.082 + - 0.0786 + - 0.0753 + - 0.0723 + - 0.0694 + - 0.0666 + - 0.064 + - 0.0615 + - 0.0592 + - 0.057 + - 0.0548 + - 0.0528 + - 0.0509 + - 0.0491 + - 0.0474 + - 0.0457 + - 0.0441 + - 0.0426 + - 0.0412 + - 0.0398 + - 0.0385 + - 0.0373 + - 0.0361 + - 0.0349 + - 0.0338 + - 0.0328 + - 0.0317 + - 0.0308 + - 0.0298 + - 0.029 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_hub_ht: 130.0 + wind_turbine_max_cp: 0.474457866 + wind_turbine_powercurve_powerout: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 241.0757324 + - 303.7602033 + - 391.3910551 + - 500.8033128 + - 628.8320016 + - 772.3121467 + - 928.0787732 + - 1092.966906 + - 1265.273318 + - 1449.141772 + - 1650.177777 + - 1873.986843 + - 2124.586921 + - 2399.645733 + - 2695.243438 + - 3007.4602 + - 3334.216 + - 3680.790104 + - 4054.301598 + - 4461.869566 + - 4905.067075 + - 5363.283108 + - 5810.360625 + - 6220.142589 + - 6572.96016 + - 6875.097291 + - 7139.326132 + - 7378.418836 + - 7601.367393 + - 7802.043165 + - 7970.537352 + - 8096.941157 + - 8175.407321 + - 8216.334756 + - 8234.183913 + - 8243.415243 + - 8255.567745 + - 8270.494605 + - 8285.127555 + - 8296.398325 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 8300.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + wind_turbine_powercurve_windspeeds: + - 0.0 + - 0.25 + - 0.5 + - 0.75 + - 1.0 + - 1.25 + - 1.5 + - 1.75 + - 2.0 + - 2.25 + - 2.5 + - 2.75 + - 3.0 + - 3.25 + - 3.5 + - 3.75 + - 4.0 + - 4.25 + - 4.5 + - 4.75 + - 5.0 + - 5.25 + - 5.5 + - 5.75 + - 6.0 + - 6.25 + - 6.5 + - 6.75 + - 7.0 + - 7.25 + - 7.5 + - 7.75 + - 8.0 + - 8.25 + - 8.5 + - 8.75 + - 9.0 + - 9.25 + - 9.5 + - 9.75 + - 10.0 + - 10.25 + - 10.5 + - 10.75 + - 11.0 + - 11.25 + - 11.5 + - 11.75 + - 12.0 + - 12.25 + - 12.5 + - 12.75 + - 13.0 + - 13.25 + - 13.5 + - 13.75 + - 14.0 + - 14.25 + - 14.5 + - 14.75 + - 15.0 + - 15.25 + - 15.5 + - 15.75 + - 16.0 + - 16.25 + - 16.5 + - 16.75 + - 17.0 + - 17.25 + - 17.5 + - 17.75 + - 18.0 + - 18.25 + - 18.5 + - 18.75 + - 19.0 + - 19.25 + - 19.5 + - 19.75 + - 20.0 + - 20.25 + - 20.5 + - 20.75 + - 21.0 + - 21.25 + - 21.5 + - 21.75 + - 22.0 + - 22.25 + - 22.5 + - 22.75 + - 23.0 + - 23.25 + - 23.5 + - 23.75 + - 24.0 + - 24.25 + - 24.5 + - 24.75 + - 25.0 + - 26.0 + - 27.0 + - 28.0 + - 29.0 + - 30.0 + - 31.0 + - 32.0 + - 33.0 + - 34.0 + - 35.0 + - 36.0 + - 37.0 + - 38.0 + - 39.0 + - 40.0 + - 41.0 + - 42.0 + - 43.0 + - 44.0 + - 45.0 + - 46.0 + - 47.0 + - 48.0 + - 49.0 +Farm: + wind_farm_wake_model: 0.0 + wind_resource_turbulence_coeff: 0.1 +Losses: + avail_bop_loss: 0.5 + avail_grid_loss: 1.5 + avail_turb_loss: 3.58 + elec_eff_loss: 1.91 + elec_parasitic_loss: 0.1 + env_degrad_loss: 1.8 + env_env_loss: 0.4 + env_exposure_loss: 0.0 + env_icing_loss: 0.21 + ops_env_loss: 1.0 + ops_grid_loss: 0.84 + ops_load_loss: 0.99 + ops_strategies_loss: 0.0 + turb_generic_loss: 1.7 + turb_hysteresis_loss: 0.4 + turb_perf_loss: 1.1 + turb_specific_loss: 9.964851766642457 + wake_ext_loss: 1.1 + wake_future_loss: 0.0 + wake_int_loss: 0.0 +Resource: + weibull_k_factor: 2.0 + weibull_reference_height: 50.0 + weibull_wind_speed: 7.25 + wind_resource_model_choice: 0.0 +Uncertainty: + total_uncert: 12.085 diff --git a/examples/19_simple_dispatch/tech_config.yaml b/examples/19_simple_dispatch/tech_config.yaml index d58d76726..18e40eef4 100644 --- a/examples/19_simple_dispatch/tech_config.yaml +++ b/examples/19_simple_dispatch/tech_config.yaml @@ -4,34 +4,30 @@ description: "This plant has wind feeding into an electrolyzer with optimization technologies: wind: performance_model: - model: "wind_plant_performance" + model: "pysam_wind_plant_performance" cost_model: - model: "wind_plant_cost" + model: "atb_wind_cost" model_inputs: - shared_parameters: + performance_parameters: num_turbines: 2 turbine_rating_kw: 8300 - performance_parameters: rotor_diameter: 196. hub_height: 130. - layout_mode: "basicgrid" - model_name: "pysam" - model_input_file: null - layout_params: - row_D_spacing: 10. - turbine_D_spacing: 10. - rating_range_kw: [1000, 9000] - floris_config: null - operational_losses: 10.0 - timestep: [1, 60] - fin_model: "default" - name: "UtilityScaleWindPlant" - turbine_name: "2023NREL_Bespoke_8.3MW_196" #turbine model to use - turbine_group: "onshore" - override_wind_resource_height: False - adjust_air_density_for_elevation: True + create_model_from: "default" + config_name: "WindPowerSingleOwner" + pysam_options: !include pysam_options_8300MW.yaml + run_recalculate_power_curve: False + layout: + layout_mode: "basicgrid" + layout_options: + row_D_spacing: 10.0 + turbine_D_spacing: 10.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: "square" cost_parameters: - cost_per_kw: 1500.0 + capex_per_kW: 1500.0 + opex_per_kW_per_year: 45 cost_year: 2019 battery: performance_model: diff --git a/h2integrate/control/control_strategies/openloop_controllers.py b/h2integrate/control/control_strategies/openloop_controllers.py index 82122d018..2b40b1148 100644 --- a/h2integrate/control/control_strategies/openloop_controllers.py +++ b/h2integrate/control/control_strategies/openloop_controllers.py @@ -241,7 +241,7 @@ def setup(self): self.config.demand_profile = [self.config.demand_profile] * self.n_timesteps self.add_input( - f"{commodity_name}_demand_profile", + f"{commodity_name}_demand", units=f"{self.config.commodity_units}", val=self.config.demand_profile, shape=self.n_timesteps, @@ -339,7 +339,7 @@ def compute(self, inputs, outputs): # the previous time step's value soc = deepcopy(init_charge_percent) - demand_profile = inputs[f"{commodity_name}_demand_profile"] + demand_profile = inputs[f"{commodity_name}_demand"] # initialize outputs soc_array = outputs[f"{commodity_name}_soc"] diff --git a/h2integrate/converters/solar/solar_pysam.py b/h2integrate/converters/solar/solar_pysam.py index 1cd3637a9..3ba54b986 100644 --- a/h2integrate/converters/solar/solar_pysam.py +++ b/h2integrate/converters/solar/solar_pysam.py @@ -105,7 +105,7 @@ def check_pysam_options(self): "HybridCosts", ] if bool(self.pysam_options): - invalid_groups = [k for k, v in self.pysam_options.items() if k not in valid_groups] + invalid_groups = [k for k in self.pysam_options if k not in valid_groups] if len(invalid_groups) > 0: msg = ( f"Invalid group(s) found in pysam_options: {invalid_groups}. " diff --git a/h2integrate/converters/wind/atb_wind_cost.py b/h2integrate/converters/wind/atb_wind_cost.py new file mode 100644 index 000000000..447a1b97a --- /dev/null +++ b/h2integrate/converters/wind/atb_wind_cost.py @@ -0,0 +1,64 @@ +from attrs import field, define + +from h2integrate.core.utilities import CostModelBaseConfig, merge_shared_inputs +from h2integrate.core.validators import gte_zero +from h2integrate.core.model_baseclasses import CostModelBaseClass + + +@define +class ATBWindPlantCostModelConfig(CostModelBaseConfig): + """Configuration class for the ATBWindCostModel. + Recommended to use with wind models (Land-Based, Offshore and Distributed + More information on ATB methodology and representative wind technologies can + be found `here `_ + Reference cost values can be found on the `Land-Based Wind`, + `Fixed-Bottom Offshore Wind`, `Floating Offshore Wind` or `Distributed Wind` + sheet of the `NREL ATB workbook `_. + + Attributes: + capex_per_kW (float|int): capital cost of wind system in $/kW + opex_per_kW_per_year (float|int): annual operating cost of wind + system in $/kW/year + """ + + capex_per_kW: float | int = field(validator=gte_zero) + opex_per_kW_per_year: float | int = field(validator=gte_zero) + + +class ATBWindPlantCostModel(CostModelBaseClass): + """ + OpenMDAO component for calculating wind plant capital and operating expenditures. + + This component calculates the capital expenditure (CapEx) and annual operating + expenditure (OpEx) of a wind plant based on its rated capacity and cost model + parameters defined in an `ATBWindPlantCostModelConfig`. + + Attributes: + config (ATBWindPlantCostModelConfig): + Configuration object containing per-kW cost parameters for CapEx and OpEx. + + Inputs: + total_capacity (float): + Rated capacity of the wind farm [kW]. + + Outputs: + CapEx (float): + Total capital expenditure of the wind plant. + OpEx (float): + Annual operating expenditure of the wind plant. + """ + + def setup(self): + self.config = ATBWindPlantCostModelConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") + ) + super().setup() + + self.add_input("total_capacity", val=0.0, units="kW", desc="Wind farm rated capacity in kW") + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + capex = self.config.capex_per_kW * inputs["total_capacity"] + opex = self.config.opex_per_kW_per_year * inputs["total_capacity"] + + outputs["CapEx"] = capex + outputs["OpEx"] = opex diff --git a/h2integrate/converters/wind/layout/__init__.py b/h2integrate/converters/wind/layout/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/converters/wind/layout/simple_grid_layout.py b/h2integrate/converters/wind/layout/simple_grid_layout.py new file mode 100644 index 000000000..6fc44c4ea --- /dev/null +++ b/h2integrate/converters/wind/layout/simple_grid_layout.py @@ -0,0 +1,172 @@ +import numpy as np +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig +from h2integrate.core.validators import contains, gte_zero, range_val + + +@define +class BasicGridLayoutConfig(BaseConfig): + """Configuration class for 'basicgrid' wind layout. + + Args: + row_D_spacing (float): rotor diameter multiplier for spacing between rows of + turbines (y direction). + turbine_D_spacing (float): rotor diameter multiplier for spacing between + turbines in a row (x direction). + rotation_angle_deg (float, Optional): rotation angle of layout in degrees where 0 is North, + increasing counter-clockwise. 90 degrees is East, 180 degrees is South, + 270 degrees is West. Defaults to 0.0. + row_phase_offset (float, Optional): offset of turbines along row from one row to the next. + Value must be between 0 and 1. Defaults to 0.0. + layout_shape (str, optional): layout shape with respect to the number of turbines. + Must be either 'square' or 'rectangle'. Defaults to 'square'. + turbine_aspect_ratio (float, optional): ratio of number turbines per row / number of rows + if using a 'rectangle' layout_shape. Unused for 'square' layout_shape. + """ + + row_D_spacing: float = field() + turbine_D_spacing: float = field() + rotation_angle_deg: float = field(default=0.0) + row_phase_offset: float = field(default=0.0, validator=range_val(0.0, 1.0)) + + layout_shape: str = field( + default="square", + converter=(str.lower, str.strip), + validator=contains(["square", "rectangle"]), + ) + turbine_aspect_ratio: float = field(default=1.0, validator=gte_zero) + + def __attrs_post_init__(self): + if self.layout_shape == "square" and self.turbine_aspect_ratio != 1.0: + raise UserWarning("Turbine aspect ratio is unused for layout_shape 'square'.") + + +def find_square_layout_dimensions_by_nturbs(n_turbs): + """Calculate dimensions of the most-square shaped layout for + a given number of turbines. + + Args: + n_turbs (int): number of wind turbines. + + Returns: + 2-element tuple containing + + - **n_turbs_per_row** (int): number of turbines per row + - **n_rows** (int): number of rows in layout (rows are parallel to x-axis) + """ + n_turbs_per_row = np.floor_divide(n_turbs, np.sqrt(n_turbs)) + n_rows_min = n_turbs // n_turbs_per_row + remainder_turbs = n_turbs % n_turbs_per_row + if remainder_turbs > n_turbs_per_row: + n_extra_rows = np.ceil(remainder_turbs / n_turbs_per_row) + elif remainder_turbs == 0: + n_extra_rows = 0 + else: + n_extra_rows = 1 + + n_rows = n_rows_min + n_extra_rows + + return n_turbs_per_row.astype(int), n_rows.astype(int) + + +def find_rectangular_layout_dimensions_by_nturbs(n_turbs, aspect_ratio): + """Calculate dimensions of a rectangular shaped layout for + a given number of turbines and aspect ratio. + + Args: + n_turbs (int): number of wind turbines. + aspect_ratio (float, Optional): ratio of width/height or + number turbines per row / number of rows. (width corresponds + to x coordinates, height corresponds to y coordinates) + + Returns: + 2-element tuple containing + + - **n_turbs_per_row** (int): number of turbines per row + - **n_rows** (int): number of rows in layout (rows are parallel to x-axis) + """ + + n_turbs_per_row = np.floor_divide(n_turbs, np.sqrt(n_turbs / aspect_ratio)) + n_rows_min = n_turbs // n_turbs_per_row + remainder_turbs = n_turbs % n_turbs_per_row + if remainder_turbs > n_turbs_per_row: + n_extra_rows = np.ceil(remainder_turbs / n_turbs_per_row) + elif remainder_turbs == 0: + n_extra_rows = 0 + else: + n_extra_rows = 1 + + n_rows = n_rows_min + n_extra_rows + + return n_turbs_per_row.astype(int), n_rows.astype(int) + + +def make_basic_grid_turbine_layout( + rotor_diameter, n_turbines, layout_config: BasicGridLayoutConfig +): + """Makes a turbine layout for a basic gridded layout config. + + Args: + rotor_diameter (float): turbine rotor diameter in meters + n_turbines (int): number of turbines to generate layout form + layout_config (BasicGridLayoutConfig): layout configuration. + + Returns: + 2-element tuple containing + + - **x_coords** (array[float]): x coordinates of turbines in layout + - **y_coords** (array[float]): y coordinates of turbines in layout + """ + n_turbs = int(n_turbines) + + if layout_config.layout_shape == "square": + n_turbs_x, n_turbs_y = find_square_layout_dimensions_by_nturbs(n_turbs) + if layout_config.layout_shape == "rectangle": + n_turbs_x, n_turbs_y = find_rectangular_layout_dimensions_by_nturbs( + n_turbs, layout_config.turbine_aspect_ratio + ) + + # distance between rows (y) + y_spacing = layout_config.row_D_spacing * rotor_diameter + + # distance between turbines in a row (x) + x_spacing = layout_config.turbine_D_spacing * rotor_diameter + + # row phase offset in meters + phase_offset = x_spacing * layout_config.row_phase_offset + + x_coords = np.zeros((n_turbs_y, n_turbs_x)) + y_coords = np.zeros((n_turbs_y, n_turbs_x)) + + for row_number in range(n_turbs_y): + # make x0 for each row start + x0 = (phase_offset * row_number) % x_spacing + # get turbine x positions + x_pos_in_row = x0 + np.cumsum(x_spacing * np.ones(n_turbs_x)) - x_spacing + y_pos = row_number * y_spacing * np.ones(n_turbs_x) + x_coords[row_number] = x_pos_in_row[:n_turbs_x] + y_coords[row_number] = y_pos + + # get center points + xc = x_coords.max() - x_coords.min() + yc = y_coords.max() - y_coords.min() + + # translate coordinates to have origin at polygon center + xc_points = x_coords.flatten() - xc + yc_points = y_coords.flatten() - yc + + # calculate rotation angle + theta = np.deg2rad(layout_config.rotation_angle_deg) + + # rotate clockwise about the origin + cos_theta = np.cos(theta) + sin_theta = np.sin(theta) + xr_points = (xc_points * cos_theta) + (yc_points * sin_theta) + yr_points = (-1 * xc_points * sin_theta) + (yc_points * cos_theta) + + # translate points back to original coordinate reference system + x_rotated = xr_points + xc + y_rotated = yr_points + yc + + return x_rotated[:n_turbs], y_rotated[:n_turbs] diff --git a/h2integrate/converters/wind/layout/test/__init__.py b/h2integrate/converters/wind/layout/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/converters/wind/layout/test/test_basic_grid_layout.py b/h2integrate/converters/wind/layout/test/test_basic_grid_layout.py new file mode 100644 index 000000000..f2c734a2f --- /dev/null +++ b/h2integrate/converters/wind/layout/test/test_basic_grid_layout.py @@ -0,0 +1,145 @@ +import numpy as np + +from h2integrate.converters.wind.layout.simple_grid_layout import ( + BasicGridLayoutConfig, + make_basic_grid_turbine_layout, + find_square_layout_dimensions_by_nturbs, + find_rectangular_layout_dimensions_by_nturbs, +) + + +def test_rectangular_layout_dimensions(subtests): + n_turbs_per_row = 10 + n_rows = 5 + aspect_ratio = n_turbs_per_row / n_rows + n_turbs = n_turbs_per_row * n_rows + n_turbs_per_row_out, n_rows_out = find_rectangular_layout_dimensions_by_nturbs( + n_turbs, aspect_ratio + ) + with subtests.test("number of turbines per row"): + assert n_turbs_per_row_out == n_turbs_per_row + with subtests.test("number of rows"): + assert n_rows_out == n_rows + with subtests.test("number of turbines"): + assert int(n_rows_out * n_turbs_per_row_out) == int(n_turbs) + + +def test_square_layout_dimensions(subtests): + n_turbs = 25 + n_turbs_per_row_out, n_rows_out = find_square_layout_dimensions_by_nturbs(n_turbs) + with subtests.test("number of turbines per row"): + assert n_turbs_per_row_out == 5 + with subtests.test("number of rows"): + assert n_rows_out == 5 + with subtests.test("number of turbines"): + assert int(n_rows_out * n_turbs_per_row_out) == n_turbs + + +def test_square_layout_dimensions_uneven_nturbs(subtests): + n_turbs = 50 + n_turbs_per_row_out, n_rows_out = find_square_layout_dimensions_by_nturbs(n_turbs) + with subtests.test("number of turbines per row"): + assert n_turbs_per_row_out == 7 + with subtests.test("number of rows"): + assert n_rows_out == 8 + with subtests.test("number of turbines"): + assert int(n_rows_out * n_turbs_per_row_out) >= n_turbs + + +def test_simple_square_layout_uneven_nturbs(subtests): + layout_config_dict = { + "row_D_spacing": 7.0, + "turbine_D_spacing": 5.0, + "rotation_angle_deg": 0.0, + "row_phase_offset": 0.0, + "layout_shape": "square", + } + layout_config = BasicGridLayoutConfig.from_dict(layout_config_dict) + rotor_diameter = 10 + n_turbs = 50 + x_coords, y_coords = make_basic_grid_turbine_layout(rotor_diameter, n_turbs, layout_config) + + with subtests.test("expected number of turbines in x coordinates"): + assert len(x_coords) == n_turbs + with subtests.test("expected number of turbines in y coordinates"): + assert len(y_coords) == n_turbs + x_positions, x_position_counts = np.unique(x_coords, return_counts=True) + y_positions, y_position_counts = np.unique(y_coords, return_counts=True) + + with subtests.test("number of rows"): + assert len(y_positions) == 8 + + with subtests.test("number of turbines per row"): + assert len(x_positions) == 7 + + with subtests.test("number of unique x positions"): + assert sum(x_position_counts) == n_turbs + + with subtests.test("number of unique y positions"): + assert sum(y_position_counts) == n_turbs + + with subtests.test("x_spacing"): + assert ( + x_positions[1] - x_positions[0] + == rotor_diameter * layout_config_dict["turbine_D_spacing"] + ) + + with subtests.test("y_spacing"): + assert ( + y_positions[1] - y_positions[0] == rotor_diameter * layout_config_dict["row_D_spacing"] + ) + + with subtests.test("unique coordinates"): + coord_list = list(zip(x_coords, y_coords)) + unique_coords = list(set(coord_list)) + assert len(unique_coords) == n_turbs + + +def test_simple_rectangular_layout_uneven_nturbs(subtests): + layout_config_dict = { + "row_D_spacing": 7.0, + "turbine_D_spacing": 5.0, + "rotation_angle_deg": 0.0, + "row_phase_offset": 0.0, + "layout_shape": "rectangle", + "turbine_aspect_ratio": 2.0, + } + layout_config = BasicGridLayoutConfig.from_dict(layout_config_dict) + rotor_diameter = 10 + n_turbs = 50 + x_coords, y_coords = make_basic_grid_turbine_layout(rotor_diameter, n_turbs, layout_config) + + with subtests.test("expected number of turbines in x coordinates"): + assert len(x_coords) == n_turbs + with subtests.test("expected number of turbines in y coordinates"): + assert len(y_coords) == n_turbs + x_positions, x_position_counts = np.unique(x_coords, return_counts=True) + y_positions, y_position_counts = np.unique(y_coords, return_counts=True) + + with subtests.test("number of rows"): + assert len(y_positions) == 5 + + with subtests.test("number of turbines per row"): + assert len(x_positions) == 10 + + with subtests.test("number of unique x positions"): + assert sum(x_position_counts) == n_turbs + + with subtests.test("number of unique y positions"): + assert sum(y_position_counts) == n_turbs + + with subtests.test("x_spacing"): + assert ( + x_positions[1] - x_positions[0] + == rotor_diameter * layout_config_dict["turbine_D_spacing"] + ) + + with subtests.test("y_spacing"): + assert ( + y_positions[1] - y_positions[0] == rotor_diameter * layout_config_dict["row_D_spacing"] + ) + + with subtests.test("unique coordinates"): + coord_list = list(zip(x_coords, y_coords)) + unique_coords = list(set(coord_list)) + assert len(unique_coords) == n_turbs diff --git a/h2integrate/converters/wind/test/__init__.py b/h2integrate/converters/wind/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/converters/wind/test/conftest.py b/h2integrate/converters/wind/test/conftest.py new file mode 100644 index 000000000..84f8d4360 --- /dev/null +++ b/h2integrate/converters/wind/test/conftest.py @@ -0,0 +1,27 @@ +import os + +from hopp import TEST_ENV_VAR + + +def pytest_sessionstart(session): + os.environ["ENV"] = TEST_ENV_VAR + + initial_resource_dir = os.getenv("RESOURCE_DIR") + # if user provided a resource directory, save it to a temp variable + # this allows tests to run as expected while not causing + # unexpected behavior afterwards + if initial_resource_dir is not None: + os.environ["TEMP_RESOURCE_DIR"] = f"{initial_resource_dir}" + + os.environ.pop("RESOURCE_DIR", None) + + +def pytest_sessionfinish(session, exitstatus): + # if user provided a resource directory, load it from the temp variable + # and reset the original environment variable + # this prevents unexpected behavior after running tests + + user_dir = os.getenv("TEMP_RESOURCE_DIR") + if user_dir is not None: + os.environ["RESOURCE_DIR"] = user_dir + os.environ.pop("TEMP_RESOURCE_DIR", None) diff --git a/h2integrate/converters/wind/test/test_atb_wind_with_pysam.py b/h2integrate/converters/wind/test/test_atb_wind_with_pysam.py new file mode 100644 index 000000000..90ab543d0 --- /dev/null +++ b/h2integrate/converters/wind/test/test_atb_wind_with_pysam.py @@ -0,0 +1,138 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.converters.wind.wind_pysam import PYSAMWindPlantPerformanceModel +from h2integrate.converters.wind.atb_wind_cost import ATBWindPlantCostModel +from h2integrate.resource.wind.nrel_developer_wtk_api import WTKNRELDeveloperAPIWindResource + + +@fixture +def wind_resource_config(): + wind_resource_dict = { + "latitude": 35.2018863, + "longitude": -101.945027, + "resource_year": 2012, + } + return wind_resource_dict + + +@fixture +def plant_config(): + site_config = { + "latitude": 35.2018863, + "longitude": -101.945027, + } + plant_dict = { + "plant_life": 30, + "simulation": {"n_timesteps": 8760, "dt": 3600, "start_time": "01/01 00:30:00"}, + } + + d = {"site": site_config, "plant": plant_dict} + return d + + +@fixture +def wind_plant_config(): + layout_config = { + "layout_mode": "basicgrid", + "layout_options": { + "row_D_spacing": 5.0, + "turbine_D_spacing": 5.0, + "rotation_angle_deg": 0.0, + "row_phase_offset": 0.0, + "layout_shape": "square", + }, + } + pysam_config = { + "Farm": { + "wind_farm_wake_model": 0, + }, + "Losses": { + "ops_strategies_loss": 10.0, + }, + } + design_config = { + "num_turbines": 50, + "hub_height": 115, + "rotor_diameter": 170, + "turbine_rating_kw": 6000, + "create_model_from": "default", + "config_name": "WindPowerSingleOwner", + "pysam_options": pysam_config, + "layout": layout_config, + } + return design_config + + +def test_wind_plant_costs_with_pysam( + wind_resource_config, plant_config, wind_plant_config, subtests +): + cost_dict = { + "capex_per_kW": 1000, # overnight capital cost + "opex_per_kW_per_year": 5, # fixed operations and maintenance expenses + "cost_year": 2022, + } + tech_config_dict = { + "model_inputs": { + "performance_parameters": wind_plant_config, + "cost_parameters": cost_dict, + } + } + + prob = om.Problem() + + plant_config["site"].update({"resources": {"wind_resource": wind_resource_config}}) + + wind_resource = WTKNRELDeveloperAPIWindResource( + plant_config=plant_config, + resource_config=wind_resource_config, + driver_config={}, + ) + + wind_plant = PYSAMWindPlantPerformanceModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + + wind_cost = ATBWindPlantCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + + prob.model.add_subsystem("wind_resource", wind_resource, promotes=["*"]) + prob.model.add_subsystem("wind_plant", wind_plant, promotes=["*"]) + prob.model.add_subsystem("wind_cost", wind_cost, promotes=["*"]) + prob.setup() + prob.run_model() + + expected_farm_capacity_MW = ( + wind_plant_config["num_turbines"] * wind_plant_config["turbine_rating_kw"] / 1e3 + ) + + prob.get_val("wind_plant.electricity_out") + prob.get_val("wind_plant.annual_energy") + prob.get_val("wind_plant.total_capacity") + + capex = prob.get_val("wind_cost.CapEx") + opex = prob.get_val("wind_cost.OpEx") + + with subtests.test("wind farm capacity"): + assert ( + pytest.approx(prob.get_val("wind_plant.total_capacity", units="MW")[0], rel=1e-6) + == expected_farm_capacity_MW + ) + + with subtests.test("wind farm capital cost"): + assert ( + pytest.approx(capex[0], rel=1e-6) + == expected_farm_capacity_MW * 1e3 * cost_dict["capex_per_kW"] + ) + + with subtests.test("wind farm operating cost"): + assert ( + pytest.approx(opex[0], rel=1e-6) + == expected_farm_capacity_MW * 1e3 * cost_dict["opex_per_kW_per_year"] + ) diff --git a/h2integrate/converters/wind/test/test_pysam_wind.py b/h2integrate/converters/wind/test/test_pysam_wind.py new file mode 100644 index 000000000..44b78c9ab --- /dev/null +++ b/h2integrate/converters/wind/test/test_pysam_wind.py @@ -0,0 +1,317 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.converters.wind.wind_pysam import PYSAMWindPlantPerformanceModel +from h2integrate.resource.wind.nrel_developer_wtk_api import WTKNRELDeveloperAPIWindResource + + +@fixture +def wind_resource_config(): + wind_resource_dict = { + "latitude": 35.2018863, + "longitude": -101.945027, + "resource_year": 2012, + } + return wind_resource_dict + + +@fixture +def plant_config(): + site_config = { + "latitude": 35.2018863, + "longitude": -101.945027, + } + plant_dict = { + "plant_life": 30, + "simulation": {"n_timesteps": 8760, "dt": 3600, "start_time": "01/01 00:30:00"}, + } + + d = {"site": site_config, "plant": plant_dict} + return d + + +@fixture +def wind_plant_config(): + layout_config = { + "layout_mode": "basicgrid", + "layout_options": { + "row_D_spacing": 5.0, + "turbine_D_spacing": 5.0, + "rotation_angle_deg": 0.0, + "row_phase_offset": 0.0, + "layout_shape": "square", + }, + } + pysam_config = { + "Farm": { + "wind_farm_wake_model": 0, + }, + "Losses": { + "ops_strategies_loss": 10.0, + }, + } + design_config = { + "num_turbines": 50, + "hub_height": 115, + "rotor_diameter": 170, + "turbine_rating_kw": 6000, + "create_model_from": "default", + "config_name": "WindPowerSingleOwner", + "pysam_options": pysam_config, + "layout": layout_config, + } + return design_config + + +def test_wind_plant_pysam_no_changes_from_setup( + wind_resource_config, plant_config, wind_plant_config, subtests +): + prob = om.Problem() + + plant_config["site"].update({"resources": {"wind_resource": wind_resource_config}}) + + wind_resource = WTKNRELDeveloperAPIWindResource( + plant_config=plant_config, + resource_config=wind_resource_config, + driver_config={}, + ) + + wind_plant = PYSAMWindPlantPerformanceModel( + plant_config=plant_config, + tech_config={"model_inputs": {"performance_parameters": wind_plant_config}}, + driver_config={}, + ) + + prob.model.add_subsystem("wind_resource", wind_resource, promotes=["*"]) + prob.model.add_subsystem("wind_plant", wind_plant, promotes=["*"]) + prob.setup() + prob.run_model() + + expected_farm_capacity_MW = ( + wind_plant_config["num_turbines"] * wind_plant_config["turbine_rating_kw"] / 1e3 + ) + + prob.get_val("wind_plant.electricity_out") + prob.get_val("wind_plant.annual_energy") + prob.get_val("wind_plant.total_capacity") + + with subtests.test("wind farm capacity"): + assert ( + pytest.approx(prob.get_val("wind_plant.total_capacity", units="MW")[0], rel=1e-6) + == expected_farm_capacity_MW + ) + + with subtests.test("wind AEP matches electricity out"): + assert pytest.approx( + prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6 + ) == np.sum(prob.get_val("wind_plant.electricity_out", units="MW")) + + with subtests.test("wind AEP value"): + assert ( + pytest.approx(prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6) + == 1014129.048439629 + ) + + +def test_wind_plant_pysam_change_hub_height( + wind_resource_config, plant_config, wind_plant_config, subtests +): + prob = om.Problem() + + plant_config["site"].update({"resources": {"wind_resource": wind_resource_config}}) + + wind_resource = WTKNRELDeveloperAPIWindResource( + plant_config=plant_config, + resource_config=wind_resource_config, + driver_config={}, + ) + + wind_plant = PYSAMWindPlantPerformanceModel( + plant_config=plant_config, + tech_config={"model_inputs": {"performance_parameters": wind_plant_config}}, + driver_config={}, + ) + + prob.model.add_subsystem("wind_resource", wind_resource, promotes=["*"]) + prob.model.add_subsystem("wind_plant", wind_plant, promotes=["*"]) + prob.setup() + prob.set_val("wind_plant.hub_height", 130, units="m") + prob.run_model() + + expected_farm_capacity_MW = ( + wind_plant_config["num_turbines"] * wind_plant_config["turbine_rating_kw"] / 1e3 + ) + + prob.get_val("wind_plant.electricity_out") + prob.get_val("wind_plant.annual_energy") + prob.get_val("wind_plant.total_capacity") + + with subtests.test("wind farm capacity"): + assert ( + pytest.approx(prob.get_val("wind_plant.total_capacity", units="MW")[0], rel=1e-6) + == expected_farm_capacity_MW + ) + + with subtests.test("wind AEP matches electricity out"): + assert pytest.approx( + prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6 + ) == np.sum(prob.get_val("wind_plant.electricity_out", units="MW")) + + with subtests.test("wind AEP value"): + assert ( + pytest.approx(prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6) + == 1037360.7950548842 + ) + + +def test_wind_plant_pysam_change_rotor_diameter( + wind_resource_config, plant_config, wind_plant_config, subtests +): + prob = om.Problem() + + plant_config["site"].update({"resources": {"wind_resource": wind_resource_config}}) + + wind_resource = WTKNRELDeveloperAPIWindResource( + plant_config=plant_config, + resource_config=wind_resource_config, + driver_config={}, + ) + + wind_plant = PYSAMWindPlantPerformanceModel( + plant_config=plant_config, + tech_config={"model_inputs": {"performance_parameters": wind_plant_config}}, + driver_config={}, + ) + + prob.model.add_subsystem("wind_resource", wind_resource, promotes=["*"]) + prob.model.add_subsystem("wind_plant", wind_plant, promotes=["*"]) + prob.setup() + prob.set_val("wind_plant.rotor_diameter", 155, units="m") + prob.run_model() + + expected_farm_capacity_MW = ( + wind_plant_config["num_turbines"] * wind_plant_config["turbine_rating_kw"] / 1e3 + ) + + prob.get_val("wind_plant.electricity_out") + prob.get_val("wind_plant.annual_energy") + prob.get_val("wind_plant.total_capacity") + + with subtests.test("wind farm capacity"): + assert ( + pytest.approx(prob.get_val("wind_plant.total_capacity", units="MW")[0], rel=1e-6) + == expected_farm_capacity_MW + ) + + with subtests.test("wind AEP matches electricity out"): + assert pytest.approx( + prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6 + ) == np.sum(prob.get_val("wind_plant.electricity_out", units="MW")) + + with subtests.test("wind AEP value"): + assert ( + pytest.approx(prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6) + == 916820.0472438652 + ) + + +def test_wind_plant_pysam_change_turbine_rating( + wind_resource_config, plant_config, wind_plant_config, subtests +): + prob = om.Problem() + + plant_config["site"].update({"resources": {"wind_resource": wind_resource_config}}) + + wind_resource = WTKNRELDeveloperAPIWindResource( + plant_config=plant_config, + resource_config=wind_resource_config, + driver_config={}, + ) + + wind_plant = PYSAMWindPlantPerformanceModel( + plant_config=plant_config, + tech_config={"model_inputs": {"performance_parameters": wind_plant_config}}, + driver_config={}, + ) + + prob.model.add_subsystem("wind_resource", wind_resource, promotes=["*"]) + prob.model.add_subsystem("wind_plant", wind_plant, promotes=["*"]) + prob.setup() + new_rating_MW = 5.5 + prob.set_val("wind_plant.wind_turbine_rating", new_rating_MW, units="MW") + prob.run_model() + + expected_farm_capacity_MW = wind_plant_config["num_turbines"] * new_rating_MW + + prob.get_val("wind_plant.electricity_out") + prob.get_val("wind_plant.annual_energy") + prob.get_val("wind_plant.total_capacity") + + with subtests.test("wind farm capacity"): + assert ( + pytest.approx(prob.get_val("wind_plant.total_capacity", units="MW")[0], rel=1e-6) + == expected_farm_capacity_MW + ) + + with subtests.test("wind AEP matches electricity out"): + assert pytest.approx( + prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6 + ) == np.sum(prob.get_val("wind_plant.electricity_out", units="MW")) + + with subtests.test("wind AEP value"): + assert ( + pytest.approx(prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6) + == 968681.3512372728 + ) + + +def test_wind_plant_pysam_change_n_turbines( + wind_resource_config, plant_config, wind_plant_config, subtests +): + prob = om.Problem() + + plant_config["site"].update({"resources": {"wind_resource": wind_resource_config}}) + + wind_resource = WTKNRELDeveloperAPIWindResource( + plant_config=plant_config, + resource_config=wind_resource_config, + driver_config={}, + ) + + wind_plant = PYSAMWindPlantPerformanceModel( + plant_config=plant_config, + tech_config={"model_inputs": {"performance_parameters": wind_plant_config}}, + driver_config={}, + ) + + prob.model.add_subsystem("wind_resource", wind_resource, promotes=["*"]) + prob.model.add_subsystem("wind_plant", wind_plant, promotes=["*"]) + prob.setup() + new_num_turbines = 100 + prob.set_val("wind_plant.num_turbines", new_num_turbines) + prob.run_model() + + expected_farm_capacity_MW = new_num_turbines * wind_plant_config["turbine_rating_kw"] / 1e3 + + prob.get_val("wind_plant.electricity_out") + prob.get_val("wind_plant.annual_energy") + prob.get_val("wind_plant.total_capacity") + + with subtests.test("wind farm capacity"): + assert ( + pytest.approx(prob.get_val("wind_plant.total_capacity", units="MW")[0], rel=1e-6) + == expected_farm_capacity_MW + ) + + with subtests.test("wind AEP matches electricity out"): + assert pytest.approx( + prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6 + ) == np.sum(prob.get_val("wind_plant.electricity_out", units="MW")) + + with subtests.test("wind AEP value"): + assert ( + pytest.approx(prob.get_val("wind_plant.annual_energy", units="MW*h/year")[0], rel=1e-6) + == 2027210.444644157 + ) diff --git a/h2integrate/converters/wind/wind_plant.py b/h2integrate/converters/wind/wind_plant.py deleted file mode 100644 index 7d8c14f41..000000000 --- a/h2integrate/converters/wind/wind_plant.py +++ /dev/null @@ -1,243 +0,0 @@ -import operator -import functools - -import numpy as np -from attrs import field, define -from hopp.simulation.technologies.sites import SiteInfo, flatirons_site -from hopp.simulation.technologies.wind.wind_plant import WindPlant - -from h2integrate.core.utilities import BaseConfig, CostModelBaseConfig, merge_shared_inputs -from h2integrate.core.model_baseclasses import CostModelBaseClass -from h2integrate.converters.wind.wind_plant_baseclass import WindPerformanceBaseClass - - -@define -class WindPlantPerformanceModelConfig(BaseConfig): - num_turbines: int = field() - turbine_rating_kw: float = field() - rotor_diameter: float = field() - hub_height: float = field() - layout_mode: str = field() - model_name: str = field() - model_input_file: str = field() - layout_params: dict = field() - rating_range_kw: list = field() - floris_config: str = field() - operational_losses: float = field() - timestep: list = field() - fin_model: list = field() - name: str = field() - turbine_name: str = field() - turbine_group: str = field() - override_wind_resource_height: bool = field() - adjust_air_density_for_elevation: bool = field() - - -@define -class WindPlantPerformanceModelPlantConfig(BaseConfig): - plant_life: int = field() - - -class WindPlantPerformanceModel(WindPerformanceBaseClass): - """ - An OpenMDAO component that wraps a WindPlant model. - It takes wind parameters as input and outputs power generation data. - """ - - def setup(self): - super().setup() - self.config = WindPlantPerformanceModelConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") - ) - self.plant_config = WindPlantPerformanceModelPlantConfig.from_dict( - self.options["plant_config"]["plant"], strict=False - ) - - self.data_to_field_number = { - "temperature": 1, - "pressure": 2, - "wind_speed": 3, - "wind_direction": 4, - } - - def format_resource_data(self, hub_height, wind_resource_data): - """Format wind resource data into the format required for the - PySAM Windpower module. The data is formatted as: - - - **fields** (*list[int]*): integers corresponding to data type, - ex: [1, 2, 3, 4, 1, 2, 3, 4]. Ror each field (int) the corresponding data is: - - 1: Ambient temperature in degrees Celsius - - 2: Atmospheric pressure in in atmospheres. - - 3: Wind speed in meters per second (m/s) - - 4: Wind direction in degrees east of north (degrees). - - **heights** (*list[int | float]*): floats corresponding to the resource height. - ex: [100, 100, 100, 100, 120, 120, 120, 120] - - **data** (*list[list]*): list of length equal to `n_timesteps` with data of - corresponding field and resource height. - ex. if `data[t]` is [-23.5, 0.65, 7.6, 261.2, -23.7, 0.65, 7.58, 261.1] then: - - 23.5 is temperature at 100m at timestep - - 7.6 is wind speed at 100m at timestep - - 7.58 is wind speed at 120m at timestep - - Args: - hub_height (int | float): turbine hub-height in meters. - wind_resource_data (dict): wind resource data dictionary. - - Returns: - dict: PySAM formatted wind resource data. - """ - - data_to_precision = { - "temperature": 1, - "pressure": 2, - "wind_speed": 2, - "wind_direction": 1, - } - - # find the resource heights that are closest to the hub-height for - # PySAM Windpower resoure data except pressure - bounding_heights = self.calculate_bounding_heights_from_resource_data( - hub_height, - wind_resource_data, - resource_vars=["wind_speed", "wind_direction", "temperature"], - ) - - # create list of resource heights and fields (as numbers) - # heights and fields should be the same length - # heights is a list of resource heights for each data type - heights = np.repeat(bounding_heights, len(self.data_to_field_number)) - field_number_to_data = {v: k for k, v in self.data_to_field_number.items()} - # fields is a list of numbers representing the data type - fields = np.tile(list(field_number_to_data.keys()), len(bounding_heights)) - n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) - - # initialize resource data array - resource_data = np.zeros((n_timesteps, len(fields))) - cnt = 0 - for height, field_num in zip(heights, fields): - # get the rounding precision for the field - rounding_precision = data_to_precision[field_number_to_data[field_num]] - # make the keyname for the field number and resource height to - # pull from the wind_resource_dict - resource_key = f"{field_number_to_data[field_num]}_{int(height)}m" - if resource_key in wind_resource_data: - # the resource data exists! - resource_data[:, cnt] = wind_resource_data[resource_key].round(rounding_precision) - else: - # see if the wind resource data includes any data for the field variable - if any( - field_number_to_data[field_num] in c for c in list(wind_resource_data.keys()) - ): - # get the resource heights for the field variable from wind_resource_data - data_heights = [ - float(c.split("_")[-1].replace("m", "").strip()) - for c in list(wind_resource_data.keys()) - if field_number_to_data[field_num] in c - ] - if len(data_heights) > 1: - # get the nearest resource heights nearest to the wind turbine hub-height - # for all the available resource heights corresponding to the field variable - nearby_heights = [ - self.calculate_bounding_heights_from_resource_data( - hub_ht, - wind_resource_data, - resource_vars=[field_number_to_data[field_num]], - ) - for hub_ht in data_heights - ] - # make nearby_heights a list of unique values - nearby_heights = functools.reduce(operator.iadd, nearby_heights, []) - nearby_heights = list(set(nearby_heights)) - # if theres multiple nearby heights, find the one that is closest - # to the target resource height - if len(nearby_heights) > 1: - height_diff = [ - np.abs(valid_height - height) for valid_height in nearby_heights - ] - closest_height = nearby_heights[np.argmin(height_diff).flatten()[0]] - # make the resource key for the field and closest height to use - resource_key = ( - f"{field_number_to_data[field_num]}_{int(closest_height)}m" - ) - - else: - # make the resource key for the field and closest height to use - resource_key = ( - f"{field_number_to_data[field_num]}_{int(nearby_heights[0])}m" - ) - - else: - # theres only one resource height for the data variable - # make the resource key for the field and closest height to use - resource_key = f"{field_number_to_data[field_num]}_{int(data_heights[0])}m" - if resource_key in wind_resource_data: - # check if new key is in wind_resource_data and add the data if it is - resource_data[:, cnt] = wind_resource_data[resource_key].round( - rounding_precision - ) - cnt += 1 - # format data for compatibility with PySAM WindPower - data = { - "heights": heights.astype(float).tolist(), - "fields": fields.tolist(), - "data": resource_data.tolist(), - } - return data - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - resource_data = self.format_resource_data( - self.config.hub_height, discrete_inputs["wind_resource_data"] - ) - boundaries = flatirons_site["site_boundaries"]["verts"] - site_data = { - "lat": discrete_inputs["wind_resource_data"].get("site_lat", 35.2018863), - "lon": discrete_inputs["wind_resource_data"].get("site_lon", -101.945027), - "tz": discrete_inputs["wind_resource_data"].get("site_tz", -6), - "elev": discrete_inputs["wind_resource_data"].get("elevation", 1099), - "wind_year": 2012, - "site_boundaries": {"verts": boundaries}, - } - site_info = { - "data": site_data, - "hub_height": self.config.hub_height, - "wind_resource": resource_data, - "solar": False, - "wind": True, - } - - self.site = SiteInfo.from_dict(site_info) - self.wind_plant = WindPlant(self.site, self.config) - # Assumes the WindPlant instance has a method to simulate and return power output - self.wind_plant.simulate_power(self.plant_config.plant_life) - outputs["electricity_out"] = self.wind_plant._system_model.value("gen") - - -@define -class WindPlantCostModelConfig(CostModelBaseConfig): - num_turbines: int = field() - turbine_rating_kw: float = field() - cost_per_kw: float = field() - - -class WindPlantCostModel(CostModelBaseClass): - """ - An OpenMDAO component that calculates the capital expenditure (CapEx) for a wind plant. - - Just a placeholder for now, but can be extended with more detailed cost models. - """ - - def setup(self): - self.config = WindPlantCostModelConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") - ) - super().setup() - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - num_turbines = self.config.num_turbines - turbine_rating_kw = self.config.turbine_rating_kw - cost_per_kw = self.config.cost_per_kw - - # Calculate CapEx - total_capacity_kw = num_turbines * turbine_rating_kw - outputs["CapEx"] = total_capacity_kw * cost_per_kw - outputs["OpEx"] = 0.03 * total_capacity_kw * cost_per_kw # placeholder scalar value diff --git a/h2integrate/converters/wind/wind_plant_pysam.py b/h2integrate/converters/wind/wind_plant_pysam.py deleted file mode 100644 index b91119b98..000000000 --- a/h2integrate/converters/wind/wind_plant_pysam.py +++ /dev/null @@ -1,170 +0,0 @@ -import operator -import functools - -import numpy as np -import PySAM.Windpower as Windpower -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.converters.wind.wind_plant_baseclass import WindPerformanceBaseClass - - -@define -class PYSAMWindPlantPerformanceModelConfig(BaseConfig): - hub_height: float = field() - - -class PYSAMWindPlantPerformanceModel(WindPerformanceBaseClass): - """ - An OpenMDAO component that wraps a WindPlant model. - It takes wind parameters as input and outputs power generation data. - """ - - def setup(self): - super().setup() - self.config = PYSAMWindPlantPerformanceModelConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") - ) - - self.config_name = "WindPowerSingleOwner" - self.system_model = Windpower.default(self.config_name) - - self.data_to_field_number = { - "temperature": 1, - "pressure": 2, - "wind_speed": 3, - "wind_direction": 4, - } - - def format_resource_data(self, hub_height, wind_resource_data): - """Format wind resource data into the format required for the - PySAM Windpower module. The data is formatted as: - - - **fields** (*list[int]*): integers corresponding to data type, - ex: [1, 2, 3, 4, 1, 2, 3, 4]. Ror each field (int) the corresponding data is: - - 1: Ambient temperature in degrees Celsius - - 2: Atmospheric pressure in in atmospheres. - - 3: Wind speed in meters per second (m/s) - - 4: Wind direction in degrees east of north (degrees). - - **heights** (*list[int | float]*): floats corresponding to the resource height. - ex: [100, 100, 100, 100, 120, 120, 120, 120] - - **data** (*list[list]*): list of length equal to `n_timesteps` with data of - corresponding field and resource height. - ex. if `data[t]` is [-23.5, 0.65, 7.6, 261.2, -23.7, 0.65, 7.58, 261.1] then: - - 23.5 is temperature at 100m at timestep - - 7.6 is wind speed at 100m at timestep - - 7.58 is wind speed at 120m at timestep - - Args: - hub_height (int | float): turbine hub-height in meters. - wind_resource_data (dict): wind resource data dictionary. - - Returns: - dict: PySAM formatted wind resource data. - """ - - data_to_precision = { - "temperature": 1, - "pressure": 2, - "wind_speed": 2, - "wind_direction": 1, - } - - # find the resource heights that are closest to the hub-height for - # PySAM Windpower resoure data except pressure - bounding_heights = self.calculate_bounding_heights_from_resource_data( - hub_height, - wind_resource_data, - resource_vars=["wind_speed", "wind_direction", "temperature"], - ) - - # create list of resource heights and fields (as numbers) - # heights and fields should be the same length - # heights is a list of resource heights for each data type - heights = np.repeat(bounding_heights, len(self.data_to_field_number)) - field_number_to_data = {v: k for k, v in self.data_to_field_number.items()} - # fields is a list of numbers representing the data type - fields = np.tile(list(field_number_to_data.keys()), len(bounding_heights)) - n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) - - # initialize resource data array - resource_data = np.zeros((n_timesteps, len(fields))) - cnt = 0 - for height, field_num in zip(heights, fields): - # get the rounding precision for the field - rounding_precision = data_to_precision[field_number_to_data[field_num]] - # make the keyname for the field number and resource height to - # pull from the wind_resource_dict - resource_key = f"{field_number_to_data[field_num]}_{int(height)}m" - if resource_key in wind_resource_data: - # the resource data exists! - resource_data[:, cnt] = wind_resource_data[resource_key].round(rounding_precision) - else: - # see if the wind resource data includes any data for the field variable - if any( - field_number_to_data[field_num] in c for c in list(wind_resource_data.keys()) - ): - # get the resource heights for the field variable from wind_resource_data - data_heights = [ - float(c.split("_")[-1].replace("m", "").strip()) - for c in list(wind_resource_data.keys()) - if field_number_to_data[field_num] in c - ] - if len(data_heights) > 1: - # get the nearest resource heights nearest to the wind turbine hub-height - # for all the available resource heights corresponding to the field variable - nearby_heights = [ - self.calculate_bounding_heights_from_resource_data( - hub_ht, - wind_resource_data, - resource_vars=[field_number_to_data[field_num]], - ) - for hub_ht in data_heights - ] - # make nearby_heights a list of unique values - nearby_heights = functools.reduce(operator.iadd, nearby_heights, []) - nearby_heights = list(set(nearby_heights)) - # if theres multiple nearby heights, find the one that is closest - # to the target resource height - if len(nearby_heights) > 1: - height_diff = [ - np.abs(valid_height - height) for valid_height in nearby_heights - ] - closest_height = nearby_heights[np.argmin(height_diff).flatten()[0]] - # make the resource key for the field and closest height to use - resource_key = ( - f"{field_number_to_data[field_num]}_{int(closest_height)}m" - ) - - else: - # make the resource key for the field and closest height to use - resource_key = ( - f"{field_number_to_data[field_num]}_{int(nearby_heights[0])}m" - ) - - else: - # theres only one resource height for the data variable - # make the resource key for the field and closest height to use - resource_key = f"{field_number_to_data[field_num]}_{int(data_heights[0])}m" - if resource_key in wind_resource_data: - # check if new key is in wind_resource_data and add the data if it is - resource_data[:, cnt] = wind_resource_data[resource_key].round( - rounding_precision - ) - cnt += 1 - # format data for compatibility with PySAM WindPower - data = { - "heights": heights.astype(float).tolist(), - "fields": fields.tolist(), - "data": resource_data.tolist(), - } - return data - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - data = self.format_resource_data( - self.config.hub_height, discrete_inputs["wind_resource_data"] - ) - self.system_model.value("wind_resource_data", data) - - self.system_model.execute(0) - outputs["electricity_out"] = self.system_model.Outputs.gen diff --git a/h2integrate/converters/wind/wind_pysam.py b/h2integrate/converters/wind/wind_pysam.py new file mode 100644 index 000000000..9a05b9af3 --- /dev/null +++ b/h2integrate/converters/wind/wind_pysam.py @@ -0,0 +1,532 @@ +import operator +import functools +from typing import Any + +import numpy as np +import PySAM.Windpower as Windpower +import matplotlib.pyplot as plt +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import gt_zero, contains +from h2integrate.converters.wind.wind_plant_baseclass import WindPerformanceBaseClass +from h2integrate.converters.wind.layout.simple_grid_layout import ( + BasicGridLayoutConfig, + make_basic_grid_turbine_layout, +) + + +@define +class PySAMPowerCurveCalculationInputs(BaseConfig): + """Inputs for the ``calculate_powercurve()`` function in the PySAM Windpower module. + The PySAM documentation of the inputs for this function can be found + `here `_ + + + Attributes: + elevation (float): elevation in meters. Required if using Weibull resource model, + otherwise should be zero. Defaults to 0. + wind_default_max_cp (float): max power coefficient. Defaults to 0.45. + wind_default_max_tip_speed (float): max tip speed in m/s. Defaults to 60. + wind_default_max_tip_speed_ratio (float): max tip-speed ratio. Defaults to 8. + wind_default_cut_in_speed (float): cut-in wind speed in m/s. Defaults to 4. + wind_default_cut_out_speed (float): cut-out wind speed in m/s. Defaults to 25. + wind_default_drive_train (int): integer representing wind turbine drive train type. + Defaults to 0. The mapping of drive train number to drive train type is: + - 0: 3 Stage Planetary + - 1: Single Stage - Low Speed Generator + - 2: Multi-Generator + - 3: Direct Drive + """ + + elevation: int | float = field(default=0) + wind_default_max_cp: int | float = field(default=0.45) + wind_default_max_tip_speed: int | float = field(default=60) + wind_default_max_tip_speed_ratio: int | float = field(default=8) + wind_default_cut_in_speed: int | float = field(default=4) + wind_default_cut_out_speed: int | float = field(default=25) + wind_default_drive_train: int = field( + default=0, converter=int, validator=contains([0, 1, 2, 3]) + ) + + +@define +class PYSAMWindPlantPerformanceModelConfig(BaseConfig): + """Configuration class for PYSAMWindPlantPerformanceModel. + + Attributes: + num_turbines (int): number of turbines in farm + hub_height (float): wind turbine hub-height in meters + rotor_diameter (float): wind turbine rotor diameter in meters. + turbine_rating_kw (float): wind turbines rated power in kW + create_model_from (str): + - 'default': instantiate Windpower model from the default config 'config_name' + - 'new': instantiate new Windpower model (default). Requires pysam_options. + config_name (str,optional): PySAM.Windpower configuration name for non-hybrid wind systems. + Defaults to 'WindPowerSingleOwner'. Only used if create_model_from='default'. + pysam_options (dict, optional): dictionary of Windpower input parameters with + top-level keys corresponding to the different Windpower variable groups. + (please refer to Windpower documentation + `here `__ + ) + run_recalculate_power_curve (bool, optional): whether to recalculate the wind turbine + power curve. defaults to True. + """ + + num_turbines: int = field(converter=int, validator=gt_zero) + hub_height: float = field(validator=gt_zero) + rotor_diameter: float = field(validator=gt_zero) + turbine_rating_kw: float = field(validator=gt_zero) + + create_model_from: str = field( + default="new", validator=contains(["default", "new"]), converter=(str.strip, str.lower) + ) + + config_name: str = field( + default="WindPowerSingleOwner", + validator=contains( + [ + "WindPowerAllEquityPartnershipFlip", + "WindPowerCommercial", + "WindPowerLeveragedPartnershipFlip", + "WindPowerMerchantPlant", + "WindPowerNone", + "WindPowerResidential", + "WindPowerSaleLeaseback", + "WindPowerSingleOwner", + ] + ), + ) + pysam_options: dict = field(default={}) + run_recalculate_power_curve: bool = field(default=True) + layout: dict = field(default={}) + powercurve_calc_config: dict = field(default={}) + + def __attrs_post_init__(self): + if self.create_model_from == "new" and not bool(self.pysam_options): + msg = ( + "To create a new Windpower object, please provide a dictionary " + "of Windpower design variables for the 'pysam_options' key." + ) + raise ValueError(msg) + + self.check_pysam_options() + + def check_pysam_options(self): + """Checks that top-level keys of pysam_options dictionary are valid and that + system capacity is not given in pysam_options. + + Raises: + ValueError: if top-level keys of pysam_options are not valid. + ValueError: if wind_turbine_hub_ht is provided in pysam_options["Turbine"] + """ + valid_groups = [ + "Turbine", + "Farm", + "Resource", + "Losses", + "AdjustmentFactors", + "HybridCosts", + "Uncertainty", + ] + if bool(self.pysam_options): + invalid_groups = [k for k in self.pysam_options if k not in valid_groups] + if len(invalid_groups) > 0: + msg = ( + f"Invalid group(s) found in pysam_options: {invalid_groups}. " + f"Valid groups are: {valid_groups}." + ) + raise ValueError(msg) + + if self.pysam_options.get("Turbine", {}).get("hub_height", None) is not None: + msg = ( + "Please do not specify wind_turbine_hub_ht in the pysam_options dictionary. " + "The wind turbine hub height should be set with the 'hub_height' " + "performance parameter." + ) + raise ValueError(msg) + + if ( + self.pysam_options.get("Turbine", {}).get("wind_turbine_rotor_diameter", None) + is not None + ): + msg = ( + "Please do not specify wind_turbine_rotor_diameter in the pysam_options " + "dictionary. The wind turbine rotor diameter should be set with the " + "'rotor_diameter' performance parameter." + ) + raise ValueError(msg) + + return + + def create_input_dict(self): + """Create dictionary of inputs to over-write the default values + associated with the specified Windpower configuration. + + Returns: + dict: dictionary of Turbine group parameters from user-input. + """ + design_dict = { + "Turbine": { + "wind_turbine_hub_ht": self.hub_height, + "wind_turbine_rotor_diameter": self.rotor_diameter, + }, + } + + return design_dict + + +class PYSAMWindPlantPerformanceModel(WindPerformanceBaseClass): + """ + An OpenMDAO component that wraps a WindPlant model. + It takes wind parameters as input and outputs power generation data. + """ + + def setup(self): + super().setup() + + performance_inputs = self.options["tech_config"]["model_inputs"]["performance_parameters"] + + # initialize layout config + layout_options = {} + if "layout" in performance_inputs: + layout_params = self.options["tech_config"]["model_inputs"]["performance_parameters"][ + "layout" + ] + layout_mode = layout_params.get("layout_mode", "basicgrid") + layout_options = layout_params.get("layout_options", {}) + if layout_mode == "basicgrid": + self.layout_config = BasicGridLayoutConfig.from_dict(layout_options) + self.layout_mode = layout_mode + + # initialize power-curve recalc config + powercurveconfig = {} + if "powercurve_calc_config" in performance_inputs: + powercurveconfig = self.options["tech_config"]["model_inputs"][ + "performance_parameters" + ]["powercurve_calc_config"] + self.power_curve_config = PySAMPowerCurveCalculationInputs.from_dict(powercurveconfig) + + # initialize wind turbine config + self.config = PYSAMWindPlantPerformanceModelConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") + ) + + self.add_input( + "num_turbines", + val=self.config.num_turbines, + units="unitless", + desc="number of turbines in farm", + ) + + self.add_input( + "wind_turbine_rating", + val=self.config.turbine_rating_kw, + units="kW", + desc="rating of an individual turbine in kW", + ) + + self.add_input( + "rotor_diameter", + val=self.config.rotor_diameter, + units="m", + desc="turbine rotor diameter", + ) + + self.add_input( + "hub_height", + val=self.config.hub_height, + units="m", + desc="turbine hub-height in meters", + ) + + self.add_output( + "annual_energy", + val=0.0, + units="kW*h/year", + desc="Annual energy production from WindPlant in kW", + ) + self.add_output( + "total_capacity", val=0.0, units="kW", desc="Wind farm rated capacity in kW" + ) + + if self.config.create_model_from == "default": + self.system_model = Windpower.default(self.config.config_name) + elif self.config.create_model_from == "new": + self.system_model = Windpower.new(self.config.config_name) + + design_dict = self.config.create_input_dict() + if bool(self.config.pysam_options): + for group, group_parameters in self.config.pysam_options.items(): + if group in design_dict: + design_dict[group].update(group_parameters) + else: + design_dict.update({group: group_parameters}) + self.system_model.assign(design_dict) + + self.data_to_field_number = { + "temperature": 1, + "pressure": 2, + "wind_speed": 3, + "wind_direction": 4, + } + + def format_resource_data(self, hub_height, wind_resource_data): + """Format wind resource data into the format required for the + PySAM Windpower module. The data is formatted as: + + - **fields** (*list[int]*): integers corresponding to data type, + ex: [1, 2, 3, 4, 1, 2, 3, 4]. Ror each field (int) the corresponding data is: + - 1: Ambient temperature in degrees Celsius + - 2: Atmospheric pressure in in atmospheres. + - 3: Wind speed in meters per second (m/s) + - 4: Wind direction in degrees east of north (degrees). + - **heights** (*list[int | float]*): floats corresponding to the resource height. + ex: [100, 100, 100, 100, 120, 120, 120, 120] + - **data** (*list[list]*): list of length equal to `n_timesteps` with data of + corresponding field and resource height. + ex. if `data[t]` is [-23.5, 0.65, 7.6, 261.2, -23.7, 0.65, 7.58, 261.1] then: + - 23.5 is temperature at 100m at timestep + - 7.6 is wind speed at 100m at timestep + - 7.58 is wind speed at 120m at timestep + + Args: + hub_height (int | float): turbine hub-height in meters. + wind_resource_data (dict): wind resource data dictionary. + + Returns: + dict: PySAM formatted wind resource data. + """ + + data_to_precision = { + "temperature": 1, + "pressure": 2, + "wind_speed": 2, + "wind_direction": 1, + } + + # find the resource heights that are closest to the hub-height for + # PySAM Windpower resource data except pressure + bounding_heights = self.calculate_bounding_heights_from_resource_data( + hub_height, + wind_resource_data, + resource_vars=["wind_speed", "wind_direction", "temperature"], + ) + + # create list of resource heights and fields (as numbers) + # heights and fields should be the same length + # heights is a list of resource heights for each data type + heights = np.repeat(bounding_heights, len(self.data_to_field_number)) + field_number_to_data = {v: k for k, v in self.data_to_field_number.items()} + # fields is a list of numbers representing the data type + fields = np.tile(list(field_number_to_data.keys()), len(bounding_heights)) + n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) + + # initialize resource data array + resource_data = np.zeros((n_timesteps, len(fields))) + cnt = 0 + for height, field_num in zip(heights, fields): + # get the rounding precision for the field + rounding_precision = data_to_precision[field_number_to_data[field_num]] + # make the keyname for the field number and resource height to + # pull from the wind_resource_dict + resource_key = f"{field_number_to_data[field_num]}_{int(height)}m" + if resource_key in wind_resource_data: + # the resource data exists! + resource_data[:, cnt] = wind_resource_data[resource_key].round(rounding_precision) + else: + # see if the wind resource data includes any data for the field variable + if any( + field_number_to_data[field_num] in c for c in list(wind_resource_data.keys()) + ): + # get the resource heights for the field variable from wind_resource_data + data_heights = [ + float(c.split("_")[-1].replace("m", "").strip()) + for c in list(wind_resource_data.keys()) + if field_number_to_data[field_num] in c + ] + if len(data_heights) > 1: + # get the nearest resource heights nearest to the wind turbine hub-height + # for all the available resource heights corresponding to the field variable + nearby_heights = [ + self.calculate_bounding_heights_from_resource_data( + hub_ht, + wind_resource_data, + resource_vars=[field_number_to_data[field_num]], + ) + for hub_ht in data_heights + ] + # make nearby_heights a list of unique values + nearby_heights = functools.reduce(operator.iadd, nearby_heights, []) + nearby_heights = list(set(nearby_heights)) + # if theres multiple nearby heights, find the one that is closest + # to the target resource height + if len(nearby_heights) > 1: + height_diff = [ + np.abs(valid_height - height) for valid_height in nearby_heights + ] + closest_height = nearby_heights[np.argmin(height_diff).flatten()[0]] + # make the resource key for the field and closest height to use + resource_key = ( + f"{field_number_to_data[field_num]}_{int(closest_height)}m" + ) + + else: + # make the resource key for the field and closest height to use + resource_key = ( + f"{field_number_to_data[field_num]}_{int(nearby_heights[0])}m" + ) + + else: + # theres only one resource height for the data variable + # make the resource key for the field and closest height to use + resource_key = f"{field_number_to_data[field_num]}_{int(data_heights[0])}m" + if resource_key in wind_resource_data: + # check if new key is in wind_resource_data and add the data if it is + resource_data[:, cnt] = wind_resource_data[resource_key].round( + rounding_precision + ) + cnt += 1 + # format data for compatibility with PySAM WindPower + data = { + "heights": heights.astype(float).tolist(), + "fields": fields.tolist(), + "data": resource_data.tolist(), + } + return data + + def recalculate_power_curve(self, rotor_diameter, turbine_rating_kw): + """Update the turbine power curve for a given rotor diameter and rated turbine capacity. + + Args: + rotor_diameter (int): turbine rotor diameter in meters. + turbine_rating_kw (float | int): desired turbine rated capacity in kW + + Returns: + bool: True if the new power curve has a maximum value equal to `turbine_rating_kw` + """ + + self.system_model.Turbine.calculate_powercurve( + turbine_rating_kw, + int(rotor_diameter), + self.power_curve_config.elevation, + self.power_curve_config.wind_default_max_cp, + self.power_curve_config.wind_default_max_tip_speed, + self.power_curve_config.wind_default_max_tip_speed_ratio, + self.power_curve_config.wind_default_cut_in_speed, + self.power_curve_config.wind_default_cut_out_speed, + self.power_curve_config.wind_default_drive_train, + ) + success = False + if max(self.system_model.value("wind_turbine_powercurve_powerout")) == float( + turbine_rating_kw + ): + success = True + return success + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + rotor_diameter = inputs["rotor_diameter"][0] + turbine_rating_kw = inputs["wind_turbine_rating"][0] + n_turbs = int(np.round(inputs["num_turbines"][0])) + + # format resource data and input into model + data = self.format_resource_data( + inputs["hub_height"][0], discrete_inputs["wind_resource_data"] + ) + self.system_model.value("wind_resource_data", data) + + # recalculate power curve based on rotor diameter and turbine rating + success = True + if self.config.run_recalculate_power_curve: + success = self.recalculate_power_curve(rotor_diameter, turbine_rating_kw) + + # if power-curve could not be adjusted to match input values + if not success: + msg = ( + "Could not adjust turbine powercurve to match turbine rating of ", + f"{turbine_rating_kw} kW with a rotor diameter of {rotor_diameter} meters", + ) + raise ValueError(msg) + + # assign new turbine specs to the model + turbine_rated_power_kW = max(self.system_model.value("wind_turbine_powercurve_powerout")) + farm_capacity = turbine_rated_power_kW * n_turbs + self.system_model.value("wind_turbine_rotor_diameter", rotor_diameter) + self.system_model.value("wind_turbine_hub_ht", inputs["hub_height"][0]) + self.system_model.value("system_capacity", farm_capacity) + + # make layout for number of turbines + if self.layout_mode == "basicgrid": + x_pos, y_pos = make_basic_grid_turbine_layout( + self.system_model.value("wind_turbine_rotor_diameter"), n_turbs, self.layout_config + ) + + self.system_model.value("wind_farm_xCoordinates", tuple(x_pos)) + self.system_model.value("wind_farm_yCoordinates", tuple(y_pos)) + + # run the model + self.system_model.execute(0) + + outputs["electricity_out"] = self.system_model.Outputs.gen + outputs["total_capacity"] = self.system_model.Farm.system_capacity + outputs["annual_energy"] = self.system_model.Outputs.annual_energy + + def post_process(self, show_plots=False): + def plot_turbine_points( + ax: plt.Axes = None, + plotting_dict: dict[str, Any] = {}, + ) -> plt.Axes: + """ + Plots turbine layout. + + Args: + ax (plt.Axes, optional): An existing axes object to plot on. If None, + a new figure and axes will be created. Defaults to None. + plotting_dict (Dict[str, Any], optional): A dictionary to customize plot + appearance. Valid keys include: + * 'color' (str): Turbine marker color. Defaults to 'black'. + * 'marker' (str): Turbine marker style. Defaults to '.'. + * 'markersize' (int): Turbine marker size. Defaults to 10. + * 'label' (str): Label for the legend. Defaults to None. + + Returns: + plt.Axes: The axes object used for the plot. + + Raises: + IndexError: If any value in `turbine_indices` is an invalid turbine index. + """ + + # Generate axis, if needed + if ax is None: + _, ax = plt.subplots() + + xpos = self.system_model.value("wind_farm_xCoordinates") + ypos = self.system_model.value("wind_farm_yCoordinates") + + # Generate plotting dictionary + default_plotting_dict = { + "color": "black", + "marker": ".", + "markersize": 10, + "label": None, + } + plotting_dict = {**default_plotting_dict, **plotting_dict} + + # Plot + ax.plot( + xpos, + ypos, + linestyle="None", + **plotting_dict, + ) + + # Make sure axis set to equal + ax.axis("equal") + + return ax + + if show_plots is True: + _, ax = plt.subplots(1, 1, figsize=(16, 10)) + plot_turbine_points(ax=ax) + plt.xlabel("x-coordinate") + plt.ylabel("y-coordinate") diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index 273ff2047..e204d0626 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -4,6 +4,7 @@ import yaml import numpy as np import openmdao.api as om +import matplotlib.pyplot as plt from h2integrate.core.utilities import create_xdsm_from_config from h2integrate.finances.finances import AdjustedCapexOpexComp @@ -272,8 +273,8 @@ def create_technology_models(self): individual_tech_config.get("finance_model", {}).get("model") if ( perf_model - and perf_model == cost_model - and perf_model in combined_performance_and_cost_models + and (perf_model == cost_model) + and (perf_model in combined_performance_and_cost_models) ): # Catch dispatch rules for systems that have the same performance & cost models if "dispatch_rule_set" in individual_tech_config: @@ -294,10 +295,10 @@ def create_technology_models(self): plant_config=self.plant_config, tech_config=individual_tech_config, ) - tech_group.add_subsystem(tech_name, comp, promotes=["*"]) - self.performance_models.append(comp) - self.cost_models.append(comp) - self.finance_models.append(comp) + om_model_object = tech_group.add_subsystem(tech_name, comp, promotes=["*"]) + self.performance_models.append(om_model_object) + self.cost_models.append(om_model_object) + self.finance_models.append(om_model_object) continue @@ -312,14 +313,14 @@ def create_technology_models(self): for model_type in model_types: if model_type in individual_tech_config: - model_object = self._process_model( + om_model_object = self._process_model( model_type, individual_tech_config, tech_group ) if "control_strategy" in model_type: plural_model_type_name = "control_strategies" else: plural_model_type_name = model_type + "s" - getattr(self, plural_model_type_name).append(model_object) + getattr(self, plural_model_type_name).append(om_model_object) elif model_type == "performance_model": raise KeyError("Model definition requires 'performance_model'.") @@ -357,7 +358,7 @@ def _process_model(self, model_type, individual_tech_config, tech_group): # Generalized function to process model definitions model_name = individual_tech_config[model_type]["model"] model_object = self.supported_models[model_name] - tech_group.add_subsystem( + om_model_object = tech_group.add_subsystem( model_name, model_object( driver_config=self.driver_config, @@ -366,7 +367,7 @@ def _process_model(self, model_type, individual_tech_config, tech_group): ), promotes=["*"], ) - return model_object + return om_model_object def create_finance_model(self): """ @@ -1036,13 +1037,22 @@ def run(self): self.prob.run_driver() - def post_process(self): + def post_process(self, show_plots=False): """ Post-process the results of the OpenMDAO model. - Right now, this just means printing the inputs and outputs to all systems in the model. + Right now, this means printing the inputs and outputs to all systems in the model. We currently exclude any variables with "resource_data" in the name, since those are large dictionary variables that are not correctly formatted when printing. + + Also, if `show_plots` is set to True, then any performance models with post-processing + plots available will be run and shown. """ self.prob.model.list_inputs(units=True, print_mean=True, excludes=["*resource_data"]) self.prob.model.list_outputs(units=True, print_mean=True, excludes=["*resource_data"]) + + for model in self.performance_models: + if hasattr(model, "post_process") and callable(model.post_process): + model.post_process(show_plots=show_plots) + if show_plots: + plt.show() diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index 5e5ffd1e7..d8c6e6f17 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -3,13 +3,14 @@ from h2integrate.transporters.pipe import PipePerformanceModel from h2integrate.transporters.cable import CablePerformanceModel from h2integrate.converters.steel.steel import SteelPerformanceModel, SteelCostAndFinancialModel -from h2integrate.converters.wind.wind_plant import WindPlantCostModel, WindPlantPerformanceModel +from h2integrate.converters.wind.wind_pysam import PYSAMWindPlantPerformanceModel from h2integrate.finances.profast_financial import ProFastComp from h2integrate.transporters.generic_summer import GenericSummerPerformanceModel from h2integrate.converters.hopp.hopp_wrapper import HOPPComponent from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel from h2integrate.storage.generic_storage_cost import GenericStorageCostModel from h2integrate.storage.hydrogen.eco_storage import H2Storage +from h2integrate.converters.wind.atb_wind_cost import ATBWindPlantCostModel from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel from h2integrate.transporters.generic_combiner import GenericCombinerPerformanceModel from h2integrate.transporters.generic_splitter import GenericSplitterPerformanceModel @@ -20,7 +21,6 @@ HydrogenTankPerformanceModel, ) from h2integrate.converters.hydrogen.wombat_model import WOMBATElectrolyzerModel -from h2integrate.converters.wind.wind_plant_pysam import PYSAMWindPlantPerformanceModel from h2integrate.storage.battery.atb_battery_cost import ATBBatteryCostModel from h2integrate.converters.ammonia.ammonia_synloop import ( AmmoniaSynLoopCostModel, @@ -113,8 +113,7 @@ "goes_fulldisc_solar_v4_api": GOESFullDiscSolarAPI, "goes_tmy_solar_v4_api": GOESTMYSolarAPI, # Converters - "wind_plant_performance": WindPlantPerformanceModel, - "wind_plant_cost": WindPlantCostModel, + "atb_wind_cost": ATBWindPlantCostModel, "pysam_wind_plant_performance": PYSAMWindPlantPerformanceModel, "pysam_solar_plant_performance": PYSAMSolarPlantPerformanceModel, "atb_utility_pv_cost": ATBUtilityPVCostModel, diff --git a/h2integrate/resource/wind/wind_resource_base.py b/h2integrate/resource/wind/wind_resource_base.py index de27b83d8..c6fdb095e 100644 --- a/h2integrate/resource/wind/wind_resource_base.py +++ b/h2integrate/resource/wind/wind_resource_base.py @@ -47,7 +47,7 @@ def compare_units_and_correct(self, data, data_units): - **data_units** (*dict*): updated units of data in ``data``. """ for data_col, orig_units in data_units.items(): - output_var = [k for k, v in self.output_vars_to_units.items() if k in data_col] + output_var = [k for k in self.output_vars_to_units if k in data_col] if len(output_var) == 1: desired_units = self.output_vars_to_units[output_var[0]] if desired_units != orig_units: diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index 528dcbec2..f038431fb 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -734,11 +734,11 @@ def test_electrolyzer_om_example(subtests): "finance_subgroup_hydrogen.LCOH_lcoe_financials", units="USD/kg" )[0] with subtests.test("Check LCOE"): - assert pytest.approx(lcoe, rel=1e-5) == 39.98869 + assert pytest.approx(lcoe, rel=1e-4) == 39.98869 with subtests.test("Check LCOH with lcoh_financials"): - assert pytest.approx(lcoh_with_lcoh_finance, rel=1e-5) == 13.0954678 + assert pytest.approx(lcoh_with_lcoh_finance, rel=1e-4) == 13.0954678 with subtests.test("Check LCOH with lcoe_financials"): - assert pytest.approx(lcoh_with_lcoe_finance, rel=1e-5) == 8.00321771 + assert pytest.approx(lcoh_with_lcoe_finance, rel=1e-4) == 8.00321771 def test_wombat_electrolyzer_example(subtests): @@ -821,11 +821,11 @@ def test_pyomo_heuristic_dispatch_example(subtests): # Subtest for LCOE with subtests.test("Check all LCOE value"): lcoe = model.prob.get_val("finance_subgroup_all_electricity.LCOE")[0] - assert lcoe == pytest.approx(0.07470820840238226, rel=1e-6) + assert lcoe == pytest.approx(0.08157197567200995, rel=1e-6) with subtests.test("Check dispatched LCOE value"): lcoe = model.prob.get_val("finance_subgroup_dispatched_electricity.LCOE")[0] - assert lcoe == pytest.approx(0.5473068063691052, rel=1e-6) + assert lcoe == pytest.approx(0.5975902853904799, rel=1e-6) # Subtest for total electricity produced with subtests.test("Check total electricity produced"): From 50e7659e887292cad35a93513d90c84220ca490d Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:00:28 -0700 Subject: [PATCH 45/79] Added CsvGenerator option for design of experiments (#314) * added example input files * added csv generator as doe option and new methods to check the csv file beforehand * minor bugfixes and updates * added jupyter notebook for example 20 * Added doc page and updated pyproject.toml * added test for unique filename function * updated CHANGELOG.md * updated example 20 jupyter notebook * added test for new example with csv gen * Minor changes during review * added inline comments to utilities function --------- Co-authored-by: John Jasa --- CHANGELOG.md | 2 + docs/_toc.yml | 1 + .../design_of_experiments_in_h2i.md | 138 +++++++ docs/user_guide/design_optimization_in_h2i.md | 8 +- .../how_to_set_up_an_analysis.ipynb | 2 +- docs/user_guide/postprocessing_results.md | 6 +- .../hydrogen_dispatch.ipynb | 2 +- .../20_solar_electrolyzer_doe.yaml | 7 + .../csv_doe_cases.csv | 11 + .../driver_config.yaml | 34 ++ .../plant_config.yaml | 106 +++++ .../run_csv_doe.ipynb | 389 ++++++++++++++++++ .../tech_config.yaml | 59 +++ h2integrate/core/pose_optimization.py | 21 +- h2integrate/core/test/test_utilities.py | 22 +- h2integrate/core/utilities.py | 174 ++++++++ pyproject.toml | 1 + tests/h2integrate/test_all_examples.py | 126 ++++++ 18 files changed, 1097 insertions(+), 12 deletions(-) create mode 100644 docs/user_guide/design_of_experiments_in_h2i.md create mode 100644 examples/20_solar_electrolyzer_doe/20_solar_electrolyzer_doe.yaml create mode 100644 examples/20_solar_electrolyzer_doe/csv_doe_cases.csv create mode 100644 examples/20_solar_electrolyzer_doe/driver_config.yaml create mode 100644 examples/20_solar_electrolyzer_doe/plant_config.yaml create mode 100644 examples/20_solar_electrolyzer_doe/run_csv_doe.ipynb create mode 100644 examples/20_solar_electrolyzer_doe/tech_config.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 78d9cf9cf..66b97c972 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ - Added framework to run heuristic load following dispatch for storage technologies - Added PySAM battery model as a storage technology performance model - Added `create_om_reports` option to driver config to enable/disable OpenMDAO reports (N2 diagrams, etc.) +- Added design of experiment functionality +- Added "csvgen" as generator type for design of experiments - Added PySAM Windpower performance model to simulate wind. - Added `simple_grid_layout.py` for wind plant layout modeling, can model square or rectangular layouts. - Added ability to visualize the wind plant layout for PySAM Windpower model using `post_process(show_plots=True)`. diff --git a/docs/_toc.yml b/docs/_toc.yml index dfa58d12d..45f4ddb79 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -15,6 +15,7 @@ parts: - file: user_guide/how_to_set_up_an_analysis - file: user_guide/connecting_technologies - file: user_guide/design_optimization_in_h2i + - file: user_guide/design_of_experiments_in_h2i - file: user_guide/postprocessing_results - file: user_guide/how_to_interface_with_user_defined_model - file: user_guide/how_to_run_several_cases_in_sequence diff --git a/docs/user_guide/design_of_experiments_in_h2i.md b/docs/user_guide/design_of_experiments_in_h2i.md new file mode 100644 index 000000000..1b4ae340a --- /dev/null +++ b/docs/user_guide/design_of_experiments_in_h2i.md @@ -0,0 +1,138 @@ +# Design of experiments in H2I + +One of the key features of H2Integrate is the ability to perform a design of experiments (DOE) for hybrid energy systems. + +The design of experiments process uses the `driver_config.yaml` file to define the design sweep, including the design variables, constraints, and objective functions. +Detailed information on setting up the `driver_config.yaml` file can be found [here](https://h2integrate.readthedocs.io/en/latest/user_guide/design_optimization_in_h2i.html) + +## Driver config file + +The driver config file defines the analysis type and the optimization or design of experiments settings. +For completeness, here is an example of a driver config file for a design of experiments problem: + +```yaml +name: "driver_config" +description: "Runs a design sweep" + +general: + folder_output: outputs + +driver: + design_of_experiments: + flag: True + generator: "csvgen" #type of generator to use + filename: "" #this input is specific to the "csvgen" generator + debug_print: False + +design_variables: + solar: + capacity_kWdc: + flag: true + lower: 5000.0 + upper: 5000000.0 + units: "kW" + electrolyzer: + n_clusters: + flag: true + lower: 1 + upper: 25 + units: "unitless" + +constraints: #constraints are not used within the design of experiments run +# but are accessible in the recorder file as constraint variables + +objective: #the objective is not used within the design of experiments run +# but is accessible in the recorder file as the objective + name: finance_subgroup_hydrogen.LCOH + +recorder: + file: "cases.sql" + flag: True + includes: ["*"] + excludes: ['*_resource*'] +``` + +## Types of Generators +H2Integrate currently supports the following types of generators: +- ["uniform"](#uniform): uses the `UniformGenerator` generator +- ["fullfact"](#fullfactorial): uses the `FullFactorialGenerator` generator +- ["plackettburman"](#plackettburman): uses the `PlackettBurmanGenerator` generator +- ["boxbehnken"](#boxbehnken): uses the `BoxBehnkenGenerator` generator +- ["latinhypercube"](#latinhypercube): uses the `LatinHypercubeGenerator` generator +- ["csvgen"](#csv): uses the `CSVGenerator` generator + +Documentation for each generator type can be found on [OpenMDAO's documentation page](https://openmdao.org/newdocs/versions/latest/_srcdocs/packages/drivers/doe_generators.html). + +### Uniform + +```yaml +driver: + design_of_experiments: + flag: True + generator: "uniform" #type of generator to use + num_samples: 10 #input is specific to this generator + seed: #input is specific to this generator +``` + +### FullFactorial +```yaml +driver: + design_of_experiments: + flag: True + generator: "fullfact" #type of generator to use + levels: 2 #input is specific to this generator +``` + +The **levels** input is the number of evenly spaced levels between each design variable lower and upper bound. + +You can check the values that will be used for a specific design variable by running: +```python +import numpy as np +design_variable_values = np.linspace(lower_bound,upper_bound,levels) +``` + + +### PlackettBurman +```yaml +driver: + design_of_experiments: + flag: True + generator: "plackettburman" #type of generator to use +``` + +### BoxBehnken +```yaml +driver: + design_of_experiments: + flag: True + generator: "boxbehnken" #type of generator to use +``` + +### LatinHypercube +```yaml +driver: + design_of_experiments: + flag: True + generator: "latinhypercube" #type of generator to use + num_samples: 10 #input is specific to this generator + criterion: "center" #input is specific to this generator + seed: #input is specific to this generator +``` + + +### CSV +This method is useful if there are specific combinations of designs variables that you want to sweep. An example is shown here: + +```yaml +driver: + design_of_experiments: + flag: True + generator: "csvgen" #type of generator to use + filename: "cases_to_run.csv" #input is specific to this generator +``` + +The **filename** input is the filepath to the csv file to read cases from. The first row of the csv file should contain the names of the design variables. The rest of the rows should contain the values of that design variable you want to run (such as `solar.capacity_kWdc` or `electrolyzer.n_clusters`). **The values in the csv file are expected to be in the same units specified for that design variable**. + +```{note} +You should check the csv file for potential formatting issues before running a simulation. This can be done using the `check_file_format_for_csv_generator` method in `h2integrate/core/utilities.py`. Usage of this method is shown in the `20_solar_electrolyzer_doe` example in the `examples` folder. +``` diff --git a/docs/user_guide/design_optimization_in_h2i.md b/docs/user_guide/design_optimization_in_h2i.md index 40d86428e..624105e18 100644 --- a/docs/user_guide/design_optimization_in_h2i.md +++ b/docs/user_guide/design_optimization_in_h2i.md @@ -53,7 +53,7 @@ constraints: units: kg/year objective: - name: financials_group_default.LCOH + name: finance_subgroup_default.LCOH ``` ```{note} @@ -122,7 +122,7 @@ See [this doc page](https://openmdao.org/newdocs/versions/latest/features/core_f Lastly, as you might expect, the `objective` section of the driver config file defines the objective function for the optimization problem. The objective function is the quantity that we are trying to minimize during the optimization process. -In this example, we have a single objective function, `financials_group_default.LCOH`, which is the levelized cost of hydrogen (LCOH) produced by the electrolyzer. +In this example, we have a single objective function, `finance_subgroup_default.LCOH`, which is the levelized cost of hydrogen (LCOH) produced by the electrolyzer. The objective function is defined as a string that specifies the name of the objective function in the analysis. The `promoted_name` of the objective function is used to identify the objective function in the analysis. @@ -135,9 +135,9 @@ varname val units prom_name ------------------------------------ ------------------- --------- ------------------------------------------------------------- <...cut for brevity...> ProFastComp_0 - LCOE [0.09009908] USD/kW/h financials_group_default.LCOE + LCOE [0.09009908] USD/kW/h finance_subgroup_default.LCOE ProFastComp_1 - LCOH [4.63528661] USD/kg financials_group_default.LCOH + LCOH [4.63528661] USD/kg finance_subgroup_default.LCOH ``` This is the name that you will use to reference the objective function in the driver config file and it is useful to refer to this output when you are setting up your optimization problem. diff --git a/docs/user_guide/how_to_set_up_an_analysis.ipynb b/docs/user_guide/how_to_set_up_an_analysis.ipynb index e0145e345..2283bee94 100644 --- a/docs/user_guide/how_to_set_up_an_analysis.ipynb +++ b/docs/user_guide/how_to_set_up_an_analysis.ipynb @@ -142,7 +142,7 @@ " [\"wind\", \"electrolyzer\", \"electricity\", \"cable\"],\n", " [\"electrolyzer\", \"h2_storage\", \"efficiency\"],\n", " [\"electrolyzer\", \"h2_storage\", \"hydrogen\", \"pipe\"],\n", - " [\"financials_group_1\", \"steel\", \"LCOH\"],\n", + " [\"finance_subgroup_1\", \"steel\", \"LCOH\"],\n", " [\"wind\", \"steel\", \"electricity\", \"cable\"],\n", " # etc\n", "]\n", diff --git a/docs/user_guide/postprocessing_results.md b/docs/user_guide/postprocessing_results.md index e2830011d..a56250a55 100644 --- a/docs/user_guide/postprocessing_results.md +++ b/docs/user_guide/postprocessing_results.md @@ -39,11 +39,11 @@ plant CapEx [6.75464089e+08] USD electrolyzer.CapEx OpEx [16541049.81608545] USD/year electrolyzer.OpEx <...> - financials_group_default + finance_subgroup_default ProFastComp_0 - LCOH [7.47944016] USD/kg financials_group_default.LCOH + LCOH [7.47944016] USD/kg finance_subgroup_default.LCOH ProFastComp_1 - LCOE [0.09795931] USD/kW/h financials_group_default.LCOE + LCOE [0.09795931] USD/kW/h finance_subgroup_default.LCOE steel steel_performance steel |9615.91147134| t/year steel.steel diff --git a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb index a6910bdf0..38f2732f9 100644 --- a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb +++ b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb @@ -110,7 +110,7 @@ " demand_open_loop_controller\n", " hydrogen_in |791848.83895374| kg/h h2_storage.hydrogen_in \n", " hydrogen_demand |467974.3582719| kg/h**2 h2_storage.hydrogen_demand \n", - " financials_group_default\n", + " finance_subgroup_default\n", " electricity_sum\n", " electricity_wind |40580346.11525534| kW finance_subgroup_elec.electricity_sum.electricity_wind 356785.74303116 \n", " adjusted_capex_opex_comp\n", diff --git a/examples/20_solar_electrolyzer_doe/20_solar_electrolyzer_doe.yaml b/examples/20_solar_electrolyzer_doe/20_solar_electrolyzer_doe.yaml new file mode 100644 index 000000000..c230e280d --- /dev/null +++ b/examples/20_solar_electrolyzer_doe/20_solar_electrolyzer_doe.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "Run DOE over solar and electrolyzer capacities" + +driver_config: "driver_config.yaml" +technology_config: "tech_config.yaml" +plant_config: "plant_config.yaml" diff --git a/examples/20_solar_electrolyzer_doe/csv_doe_cases.csv b/examples/20_solar_electrolyzer_doe/csv_doe_cases.csv new file mode 100644 index 000000000..5bbfb651c --- /dev/null +++ b/examples/20_solar_electrolyzer_doe/csv_doe_cases.csv @@ -0,0 +1,11 @@ +solar.capacity_kWdc,electrolyzer.n_clusters +25000.0,5.0 +50000.0,5.0 +100000.0,5.0 +200000.0,5.0 +50000.0,10.0 +100000.0,10.0 +200000.0,10.0 +250000.0,10.0 +300000.0,10.0 +500000.0,10.0 diff --git a/examples/20_solar_electrolyzer_doe/driver_config.yaml b/examples/20_solar_electrolyzer_doe/driver_config.yaml new file mode 100644 index 000000000..939a1993f --- /dev/null +++ b/examples/20_solar_electrolyzer_doe/driver_config.yaml @@ -0,0 +1,34 @@ +description: Driver config for CSVGen design of experiments +name: driver_config + +general: + folder_output: ex_20_out + create_om_reports: true +driver: + design_of_experiments: + flag: true + debug_print: true + generator: "csvgen" + filename: "csv_doe_cases.csv" + run_parallel: false +design_variables: + solar: + capacity_kWdc: + flag: true + lower: 5000.0 + upper: 5000000.0 + units: "kW" + electrolyzer: + n_clusters: + flag: true + lower: 1 + upper: 25 + units: "unitless" +objective: + name: finance_subgroup_hydrogen.LCOH_optimistic +recorder: + file: cases.sql + overwrite_recorder: true + flag: true + includes: ['*'] + excludes: ['*_resource*'] diff --git a/examples/20_solar_electrolyzer_doe/plant_config.yaml b/examples/20_solar_electrolyzer_doe/plant_config.yaml new file mode 100644 index 000000000..4994333bc --- /dev/null +++ b/examples/20_solar_electrolyzer_doe/plant_config.yaml @@ -0,0 +1,106 @@ +name: "plant_config" +description: "This plant uses solar resource data from 2012" + +site: + latitude: 34.22 + longitude: -102.75 + year: 2012 + + # array of polygons defining boundaries with x/y coords + boundaries: [ + { + x: [0.0, 1000.0, 1000.0, 0.0], + y: [0.0, 0.0, 100.0, 1000.0], + }, + { + x: [2000.0, 2500.0, 2000.0], + y: [2000.0, 2000.0, 2500.0], + } + ] + + + resources: + solar_resource: + resource_model: "goes_aggregated_solar_v4_api" + resource_parameters: + resource_year: 2012 + resource_filename: "34.22_-102.75_2012_goes_aggregated_v4_60min_utc_tz.csv" + +# array of arrays containing left-to-right technology +technology_interconnections: [ + ["solar", "electrolyzer", "electricity", "cable"], #connect solar power to electrolyzer +] + +resource_to_tech_connections: [ + # connect the solar resource to the solar technology + ['solar_resource', 'solar', 'solar_resource_data'], +] + +plant: + plant_life: 30 + simulation: + n_timesteps: 8760 + dt: 3600 + timezone: 0 + +finance_parameters: + finance_groups: + optimistic: + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.0615 + debt_equity_ratio: 2.82 + property_tax_and_insurance: 0.015 + total_income_tax_rate: 0.2574 + capital_gains_tax_rate: 0.15 + sales_tax_rate: 0.00 + debt_interest_rate: 0.0439 + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan" + loan_period_if_used: 0 # Not used for "Revolving debt" + cash_onhand_months: 1 + admin_expense: 0.00 # percent of sales + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years + refurb: [0.] + conservative: + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.0948 + debt_equity_ratio: 1.72 + property_tax_and_insurance: 0.015 + total_income_tax_rate: 0.2574 + capital_gains_tax_rate: 0.15 + sales_tax_rate: 0.00 + debt_interest_rate: 0.046 + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan" + loan_period_if_used: 0 # Not used for "Revolving debt" + cash_onhand_months: 1 + admin_expense: 0.00 # percent of sales + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 + refurb: [0.] + + finance_subgroups: + electricity: + commodity: "electricity" + commodity_stream: "solar" + finance_groups: ["optimistic", "conservative"] + technologies: ["solar"] + hydrogen: + commodity: "hydrogen" + commodity_stream: "electrolyzer" + finance_groups: ["optimistic", "conservative"] + technologies: ["solar","electrolyzer"] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + target_dollar_year: 2022 diff --git a/examples/20_solar_electrolyzer_doe/run_csv_doe.ipynb b/examples/20_solar_electrolyzer_doe/run_csv_doe.ipynb new file mode 100644 index 000000000..b7fadf922 --- /dev/null +++ b/examples/20_solar_electrolyzer_doe/run_csv_doe.ipynb @@ -0,0 +1,389 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Running Design of Experiments (DOE) using CSVGenerator\n", + "\n", + "In this example, the `driver_config.yaml` file is set-up to run a design of experiments for different combinations of solar and electrolyzer capacities using the \"csvgen\" generator method.\n", + "\n", + "```yaml\n", + "general:\n", + " folder_output: ex_20_out\n", + " create_om_reports: true\n", + "driver:\n", + " design_of_experiments:\n", + " flag: true\n", + " debug_print: true\n", + " generator: \"csvgen\"\n", + " filename: \"csv_doe_cases.csv\"\n", + "design_variables:\n", + " solar:\n", + " capacity_kWdc:\n", + " flag: true\n", + " lower: 5000.0\n", + " upper: 5000000.0\n", + " units: \"kW\"\n", + " electrolyzer:\n", + " n_clusters:\n", + " flag: true\n", + " lower: 1\n", + " upper: 25\n", + " units: \"unitless\"\n", + "```\n", + "\n", + "The different combinations of solar and electrolzyer capacities are listed in the csv file \"csv_doe_cases.csv\":\n", + "\n", + "```text\n", + "solar.capacity_kWdc,electrolyzer.n_clusters\n", + "25000.0,5.0\n", + "50000.0,5.0\n", + "100000.0,5.0\n", + "200000.0,5.0\n", + "50000.0,10.0\n", + "100000.0,10.0\n", + "200000.0,10.0\n", + "250000.0,10.0\n", + "300000.0,10.0\n", + "500000.0,10.0\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/Users/egrant/Documents/projects/GreenHEART/examples/20_solar_electrolyzer_doe/log/hybrid_systems_2025-10-24T17.27.59.955461.log\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/egrant/opt/anaconda3/envs/h2i_env/lib/python3.11/site-packages/fastkml/__init__.py:28: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.\n", + " from pkg_resources import DistributionNotFound\n" + ] + } + ], + "source": [ + "from h2integrate.core.h2integrate_model import H2IntegrateModel" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Model set-up and attempted run\n", + "\n", + "We initialize the H2Integrate model and attempt to run the model. A UserWarning will be thrown saying that something may be wrong with our .csv file." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "ename": "UserWarning", + "evalue": "There may be issues with the csv file csv_doe_cases.csv, which may cause errors within OpenMDAO. To check this csv file or create a new one, run the function h2integrate.core.utilities.check_file_format_for_csv_generator().", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mUserWarning\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[2]\u001b[39m\u001b[32m, line 2\u001b[39m\n\u001b[32m 1\u001b[39m \u001b[38;5;66;03m# Create a H2Integrate model\u001b[39;00m\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m model = \u001b[43mH2IntegrateModel\u001b[49m\u001b[43m(\u001b[49m\u001b[33;43m\"\u001b[39;49m\u001b[33;43m20_solar_electrolyzer_doe.yaml\u001b[39;49m\u001b[33;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[32m 3\u001b[39m \u001b[38;5;66;03m# Run the model\u001b[39;00m\n\u001b[32m 4\u001b[39m model.run()\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Documents/projects/GreenHEART/h2integrate/core/h2integrate_model.py:61\u001b[39m, in \u001b[36mH2IntegrateModel.__init__\u001b[39m\u001b[34m(self, config_file)\u001b[39m\n\u001b[32m 57\u001b[39m \u001b[38;5;28mself\u001b[39m.connect_technologies()\n\u001b[32m 59\u001b[39m \u001b[38;5;66;03m# create driver model\u001b[39;00m\n\u001b[32m 60\u001b[39m \u001b[38;5;66;03m# might be an analysis or optimization\u001b[39;00m\n\u001b[32m---> \u001b[39m\u001b[32m61\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mcreate_driver_model\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Documents/projects/GreenHEART/h2integrate/core/h2integrate_model.py:964\u001b[39m, in \u001b[36mH2IntegrateModel.create_driver_model\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 962\u001b[39m myopt = PoseOptimization(\u001b[38;5;28mself\u001b[39m.driver_config)\n\u001b[32m 963\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[33m\"\u001b[39m\u001b[33mdriver\u001b[39m\u001b[33m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m.driver_config:\n\u001b[32m--> \u001b[39m\u001b[32m964\u001b[39m \u001b[43mmyopt\u001b[49m\u001b[43m.\u001b[49m\u001b[43mset_driver\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mprob\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 965\u001b[39m myopt.set_objective(\u001b[38;5;28mself\u001b[39m.prob)\n\u001b[32m 966\u001b[39m myopt.set_design_variables(\u001b[38;5;28mself\u001b[39m.prob)\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Documents/projects/GreenHEART/h2integrate/core/pose_optimization.py:337\u001b[39m, in \u001b[36mPoseOptimization.set_driver\u001b[39m\u001b[34m(self, opt_prob)\u001b[39m\n\u001b[32m 333\u001b[39m valid_file = check_file_format_for_csv_generator(\n\u001b[32m 334\u001b[39m doe_options[\u001b[33m\"\u001b[39m\u001b[33mfilename\u001b[39m\u001b[33m\"\u001b[39m], \u001b[38;5;28mself\u001b[39m.config, check_only=\u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[32m 335\u001b[39m )\n\u001b[32m 336\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m valid_file:\n\u001b[32m--> \u001b[39m\u001b[32m337\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mUserWarning\u001b[39;00m(\n\u001b[32m 338\u001b[39m \u001b[33mf\u001b[39m\u001b[33m\"\u001b[39m\u001b[33mThere may be issues with the csv file \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mdoe_options[\u001b[33m'\u001b[39m\u001b[33mfilename\u001b[39m\u001b[33m'\u001b[39m]\u001b[38;5;132;01m}\u001b[39;00m\u001b[33m, \u001b[39m\u001b[33m\"\u001b[39m\n\u001b[32m 339\u001b[39m \u001b[33mf\u001b[39m\u001b[33m\"\u001b[39m\u001b[33mwhich may cause errors within OpenMDAO. \u001b[39m\u001b[33m\"\u001b[39m\n\u001b[32m 340\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mTo check this csv file or create a new one, run the function \u001b[39m\u001b[33m\"\u001b[39m\n\u001b[32m 341\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mh2integrate.core.utilities.check_file_format_for_csv_generator().\u001b[39m\u001b[33m\"\u001b[39m\n\u001b[32m 342\u001b[39m )\n\u001b[32m 343\u001b[39m generator = om.CSVGenerator(\n\u001b[32m 344\u001b[39m filename=doe_options[\u001b[33m\"\u001b[39m\u001b[33mfilename\u001b[39m\u001b[33m\"\u001b[39m],\n\u001b[32m 345\u001b[39m )\n\u001b[32m 346\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "\u001b[31mUserWarning\u001b[39m: There may be issues with the csv file csv_doe_cases.csv, which may cause errors within OpenMDAO. To check this csv file or create a new one, run the function h2integrate.core.utilities.check_file_format_for_csv_generator()." + ] + } + ], + "source": [ + "# Create a H2Integrate model\n", + "model = H2IntegrateModel(\"20_solar_electrolyzer_doe.yaml\")\n", + "# Run the model\n", + "model.run()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Fixing the bug\n", + "The UserWarning tells us that there may be an issue with our csv file. We will use the recommended method to create a new csv file that doesn't have formatting issues.\n", + "\n", + "We'll take the following steps to try and fix the bug:\n", + "1. Run the `check_file_format_for_csv_generator` method mentioned in the UserWarning and create a new csv file that is hopefully free of errors\n", + "2. Make a new driver config file that has \"filename\" point to the new csv file created in Step 1.\n", + "3. Make a new top-level config file that points to the updated driver config file created in Step 2." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'csv_doe_cases1.csv'" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Import necessary methods and packages\n", + "from pathlib import Path\n", + "from h2integrate.core.utilities import check_file_format_for_csv_generator\n", + "from h2integrate.core.inputs.validation import load_driver_yaml, write_yaml\n", + "from hopp.utilities.utilities import load_yaml\n", + "from h2integrate.core.dict_utils import update_defaults\n", + "\n", + "# load the driver config file\n", + "driver_config = load_driver_yaml(\"driver_config.yaml\")\n", + "# specify the filepath to the csv file\n", + "csv_fpath = Path(driver_config[\"driver\"][\"design_of_experiments\"][\"filename\"]).absolute()\n", + "# run the csv checker method, we want it to write the csv file to a new filepath so\n", + "# set overwrite_file=False\n", + "new_csv_filename = check_file_format_for_csv_generator(\n", + " csv_fpath, driver_config, check_only=False, overwrite_file=False\n", + ")\n", + "# lets see what the filename of the new csv file is:\n", + "new_csv_filename.name" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# update the csv filename in the driver config dictionary\n", + "updated_driver = update_defaults(driver_config[\"driver\"], \"filename\", new_csv_filename.name)\n", + "driver_config[\"driver\"].update(updated_driver)\n", + "\n", + "# save the updated driver to a new file\n", + "write_yaml(driver_config, \"driver_config_new.yaml\")\n", + "\n", + "# update the driver config filename in the top-level config\n", + "main_config = load_yaml(\"20_solar_electrolyzer_doe.yaml\")\n", + "main_config[\"driver_config\"] = \"driver_config_new.yaml\"\n", + "\n", + "# save the updated top-level config file to a new file\n", + "write_yaml(main_config, \"new_20_solar_electrolyzer_doe.yaml\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Re-running\n", + "\n", + "Now that we've completed the debugging and fixing steps, lets try to run the simulation again but with our new files." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Driver debug print for iter coord: rank0:DOEDriver_CSV|0\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([5.]), 'solar.capacity_kWdc': array([25000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([7.28340669])}\n", + "\n", + "Driver debug print for iter coord: rank0:DOEDriver_CSV|1\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([5.]), 'solar.capacity_kWdc': array([50000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([4.71306895])}\n", + "\n", + "Driver debug print for iter coord: rank0:DOEDriver_CSV|2\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([5.]),\n", + " 'solar.capacity_kWdc': array([100000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([4.46997463])}\n", + "\n", + "Driver debug print for iter coord: rank0:DOEDriver_CSV|3\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([5.]),\n", + " 'solar.capacity_kWdc': array([200000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([6.30803623])}\n", + "\n", + "Driver debug print for iter coord: rank0:DOEDriver_CSV|4\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([10.]),\n", + " 'solar.capacity_kWdc': array([50000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([7.26817165])}\n", + "\n", + "Driver debug print for iter coord: rank0:DOEDriver_CSV|5\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([10.]),\n", + " 'solar.capacity_kWdc': array([100000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([4.71007371])}\n", + "\n", + "Driver debug print for iter coord: rank0:DOEDriver_CSV|6\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([10.]),\n", + " 'solar.capacity_kWdc': array([200000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([4.46825885])}\n", + "\n", + "Driver debug print for iter coord: rank0:DOEDriver_CSV|7\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([10.]),\n", + " 'solar.capacity_kWdc': array([250000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([4.89582656])}\n", + "\n", + "Driver debug print for iter coord: rank0:DOEDriver_CSV|8\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([10.]),\n", + " 'solar.capacity_kWdc': array([300000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([5.35322338])}\n", + "\n", + "Driver debug print for iter coord: rank0:DOEDriver_CSV|9\n", + "--------------------------------------------------------\n", + "Design Vars\n", + "{'electrolyzer.n_clusters': array([10.]),\n", + " 'solar.capacity_kWdc': array([500000.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_hydrogen.LCOH_optimistic': array([7.29072187])}\n", + "\n" + ] + } + ], + "source": [ + "# Create a H2Integrate model\n", + "model = H2IntegrateModel(\"new_20_solar_electrolyzer_doe.yaml\")\n", + "# Run the model\n", + "model.run()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.11.13 ('h2i_env')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.13" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "e55566d5f9cb5003b92ad1d2254e8146f3d62519cfa868f35d73d51fb57327c6" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/examples/20_solar_electrolyzer_doe/tech_config.yaml b/examples/20_solar_electrolyzer_doe/tech_config.yaml new file mode 100644 index 000000000..cef47354f --- /dev/null +++ b/examples/20_solar_electrolyzer_doe/tech_config.yaml @@ -0,0 +1,59 @@ +name: "technology_config" +description: "This plant produces hydrogen using water electrolysis powered by a solar-PV system" + +technologies: + solar: + performance_model: + model: "pysam_solar_plant_performance" + cost_model: + model: "atb_utility_pv_cost" + model_inputs: + performance_parameters: + pv_capacity_kWdc: 400000 + dc_ac_ratio: 1.34 + create_model_from: "new" + tilt_angle_func: "lat-func" + pysam_options: + SystemDesign: + gcr: 0.3 + array_type: 2 + bifaciality: 0.65 + inv_eff: 96.0 + losses: 14.6 + module_type: 1 + azimuth: 180 + rotlim: 45 + SolarResource: + albedo_default: 0.2 + cost_parameters: + capex_per_kWac: 1367 #2022 costs from ATB 2024 v3 + opex_per_kWac_per_year: 24 #2022 costs from ATB 2024 v3 + cost_year: 2022 + electrolyzer: + performance_model: + model: "eco_pem_electrolyzer_performance" + cost_model: + model: "custom_electrolyzer_cost" + model_inputs: + performance_parameters: + sizing: + resize_for_enduse: False + size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) + hydrogen_dmd: + n_clusters: 18 + cluster_rating_MW: 10 + pem_control_type: 'basic' + eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. #number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: True #include degradation + turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + location: "onshore" + electrolyzer_capex: 1295 #unused in the performance model if pem_control_type is 'basic' but required as an input + cost_parameters: + capex_USD_per_kW: 1000.0 + fixed_om_USD_per_kW_per_year: 12.8 + cost_year: 2022 + financial_parameters: + capital_items: + depr_period: 7 + replacement_cost_percent: 0.15 # percent of capex - H2A default case diff --git a/h2integrate/core/pose_optimization.py b/h2integrate/core/pose_optimization.py index 8ac97366f..02b9be545 100644 --- a/h2integrate/core/pose_optimization.py +++ b/h2integrate/core/pose_optimization.py @@ -9,6 +9,8 @@ import openmdao.api as om +from h2integrate.core.utilities import check_file_format_for_csv_generator + class PoseOptimization: """ @@ -163,7 +165,7 @@ def set_driver(self, opt_prob): folder_output = self.config["general"]["folder_output"] - if self.config["driver"]["optimization"]["flag"]: + if self.config["driver"].get("optimization", {}).get("flag", False): opt_options = self.config["driver"]["optimization"] step_size = self._get_step_size() @@ -327,6 +329,20 @@ def set_driver(self, opt_prob): criterion=doe_options["criterion"], seed=doe_options["seed"], ) + elif doe_options["generator"].lower() == "csvgen": + valid_file = check_file_format_for_csv_generator( + doe_options["filename"], self.config, check_only=True + ) + if not valid_file: + raise UserWarning( + f"There may be issues with the csv file {doe_options['filename']}, " + f"which may cause errors within OpenMDAO. " + "To check this csv file or create a new one, run the function " + "h2integrate.core.utilities.check_file_format_for_csv_generator()." + ) + generator = om.CSVGenerator( + filename=doe_options["filename"], + ) else: raise Exception( "The generator type {} is unsupported.".format(doe_options["generator"]) @@ -344,7 +360,8 @@ def set_driver(self, opt_prob): ] # options - opt_prob.driver.options["run_parallel"] = doe_options["run_parallel"] + if "run_parallel" in doe_options: + opt_prob.driver.options["run_parallel"] = doe_options["run_parallel"] else: warnings.warn( diff --git a/h2integrate/core/test/test_utilities.py b/h2integrate/core/test/test_utilities.py index 612a914a5..578d43964 100644 --- a/h2integrate/core/test/test_utilities.py +++ b/h2integrate/core/test/test_utilities.py @@ -5,7 +5,27 @@ import yaml import numpy as np -from h2integrate.core.utilities import dict_to_yaml_formatting +from h2integrate import ROOT_DIR, EXAMPLE_DIR, RESOURCE_DEFAULT_DIR +from h2integrate.core.utilities import make_unique_case_name, dict_to_yaml_formatting + + +def test_make_unique_filename(subtests): + unique_yaml_name = make_unique_case_name(EXAMPLE_DIR, "tech_config.yaml", ".yaml") + unique_py_name = make_unique_case_name(ROOT_DIR.parent, "conftest.py", ".py") + unique_csv_name = make_unique_case_name( + RESOURCE_DEFAULT_DIR, "34.22_-102.75_2013_wtk_v2_60min_local_tz.csv", ".csv" + ) + + yaml_files = list(Path(EXAMPLE_DIR).glob(f"**/{unique_yaml_name}")) + py_files = list(Path(ROOT_DIR.parent).glob(f"**/{unique_py_name}")) + csv_files = list(Path(RESOURCE_DEFAULT_DIR).glob(f"**/{unique_csv_name}")) + + with subtests.test("Uniquely named .yaml file"): + assert len(yaml_files) == 0 + with subtests.test("Uniquely named .py file"): + assert len(py_files) == 0 + with subtests.test("Uniquely named .csv file"): + assert len(csv_files) == 0 class TestDictToYamlFormatting(unittest.TestCase): diff --git a/h2integrate/core/utilities.py b/h2integrate/core/utilities.py index 0343d2938..b1d19823a 100644 --- a/h2integrate/core/utilities.py +++ b/h2integrate/core/utilities.py @@ -1,4 +1,7 @@ +import re +import csv from typing import Any +from pathlib import Path from collections import OrderedDict import attrs @@ -290,3 +293,174 @@ def dict_to_yaml_formatting(orig_dict): else: orig_dict[key] = float(val) return orig_dict + + +def make_unique_case_name(folder, proposed_fname, fext): + """Generate a filename that does not already exist in a user-defined folder. + + Args: + folder (str | Path): directory that a file is expected to be created in. + proposed_fname (str): filename (with extension) to check for existence and + to use as the base file description of a new an unique file name. + fext (str): file extension, such as ".csv", ".sql", ".yaml", etc. + + Returns: + str: unique filename that does not yet exist in folder. + """ + if "." not in fext: + fext = f".{fext}" + + # if file(s) exist with the same base name, make a new unique filename + file_base = proposed_fname.split(fext)[0] + existing_files = [f for f in Path(folder).glob(f"**/*{fext}") if file_base in f.name] + if len(existing_files) == 0: + return proposed_fname + + # get past numbers that were used to make unique files by matching + # filenames against the file base name followed by a number + past_numbers = [ + int(re.findall(f"{file_base}[0-9]+", str(fname))[0].split(file_base)[-1]) + for fname in existing_files + if len(re.findall(f"{file_base}[0-9]+", str(fname))) > 0 + ] + + if len(past_numbers) > 0: + # if multiple files have the same basename followed by a number, + # take the maximum unique number and add one + unique_number = int(max(past_numbers) + 1) + return f"{file_base}{unique_number}{fext}" + else: + # if no files have the same basename followed by a number, + # but do have the same basename, then add a zero to the file basename + return f"{file_base}0{fext}" + + +def check_file_format_for_csv_generator( + csv_fpath, driver_config, check_only=True, overwrite_file=False +): + """Check csv file format for the csv file used for the CSVGenerator generator. + + Note: + Future development could include further checking the values within the rows + of the csv file and more rigorous checking of columns with empty headers. + + Args: + csv_fpath (str | Path): filepath to csv file used for 'csvgen' generator. + driver_config (dict): driver configuration dictionary + check_only (bool, optional): If True, only check if file is error-free and return a boolean. + If False, also create a valid csv file if errors are found in the original csv file. + Defaults to True. + overwrite_file (bool, optional): If True, overwrites the input csv file with possible errors + removed. If False, writes a new csv file with a unique name. Only used if check_only is + False. Defaults to False. + + Raises: + ValueError: If there are errors in the csv file beyond general formatting errors. + + Returns: + bool | Path: returns a boolean if check_only is True, or a Path object is check_only is + False. If check_only is True, returns True if the file appears error-free or False + if errors are found. If check_only is False, returns the filepath of the new csv + file that should not have errors. + """ + design_vars = [] + for technology, variables in driver_config["design_variables"].items(): + for key, value in variables.items(): + if value["flag"]: + design_var = f"{technology}.{key}" + design_vars.append(design_var) + + name_map = {} + + # below is how OpenMDAO loads in the csv file and searches for invalid variables + with Path(csv_fpath).open() as f: + # map header names to absolute names if necessary + names = re.sub(" ", "", f.readline()).strip().split(",") + name_map = {name: name for name in names if name in design_vars} + + # make list of invalid design variables (which may be formatting issues) + invalid_desvars = [name for name in names if name not in name_map] + + if check_only: + if len(invalid_desvars) == 0: + return True # no invalid design variables + else: + return False # found formatting issues/invalid design variables + + if len(invalid_desvars) == 0: # didn't find errors + return csv_fpath + + file_txt_to_remove = [] + remove_index = False + + for invalid_var in invalid_desvars: + if invalid_var != "": + # check if any invalid variables contain a design variable name + # this could occur if "invisible" characters are attached to the column name + contains_dvar = [d for d in design_vars if d in invalid_var] + if len(contains_dvar) == 1: + # only one column contains the design variable, but has formatting issue + txt_to_remove = [ + rm_txt for rm_txt in invalid_var.split(contains_dvar[0]) if rm_txt != "" + ] + file_txt_to_remove.extend(txt_to_remove) + + if len(contains_dvar) > 1: + # duplicate definitions of the design variable + msg = ( + f"{invalid_var} is does not match a unique design variable. The design " + f"variables defined in the driver_config file are {design_vars}." + f" Please check the csv file {csv_fpath} to only have one column per " + "design variable included in the driver config file." + ) + raise ValueError(msg) + + if len(contains_dvar) == 0: + # the invalid_desvar column has a variable that isnt a design variable + msg = ( + f"{invalid_var} is an invalid design variable. The design " + f"variables defined in the driver_config file are {design_vars}." + f" Please check the csv file {csv_fpath} to only have the design " + "variables included in the driver config file." + ) + raise ValueError(msg) + + else: + # theres an empty index column, with a column name of "" + remove_index = True + with Path(csv_fpath).open() as f: + reader = csv.DictReader(f) + index_col = [i for i, n in enumerate(reader.fieldnames) if n == ""] + + original_file = Path(csv_fpath).open() + lines = original_file.readlines() + original_file.close() + for f_remove in file_txt_to_remove: + # remove characters that cause formatting issues + lines = [line.replace(f_remove, "") for line in lines] + if remove_index: + # remove the columns that are index columns + lines = [ + ",".join(lp for li, lp in enumerate(line.split(",")) if li not in index_col) + for line in lines + ] + + if not overwrite_file: + # create a new file name with the same basename as the input csv file + dirname = Path(csv_fpath).absolute().parent + fname = Path(csv_fpath).name + new_fname = make_unique_case_name(dirname, fname, ".csv") + new_fpath = dirname / new_fname + else: + # use the same filepath as the csv file and overwrite it + new_fpath = Path(csv_fpath).absolute() + + # join the separate lines into one string + txt = "".join(line for line in lines) + new_file = Path(new_fpath).open(mode="w+") + + # save the reformatted lines to the file + new_file.write(txt) + new_file.close() + + return new_fpath diff --git a/pyproject.toml b/pyproject.toml index affe71e45..52481985c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,6 +56,7 @@ dependencies = [ "ruamel.yaml", "scipy", "wombat>=0.11", + "pyDOE3", ] keywords = [ "python3", diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index f038431fb..4b483c5bb 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -963,3 +963,129 @@ def test_simple_dispatch_example(subtests): with subtests.test("Check electricity LCOE"): assert pytest.approx(electricity_lcoe, rel=1e-6) == 78.01723 + + +def test_csvgen_design_of_experiments(subtests): + os.chdir(EXAMPLE_DIR / "20_solar_electrolyzer_doe") + + # Create a H2Integrate model + + with pytest.raises(UserWarning) as excinfo: + model = H2IntegrateModel(Path.cwd() / "20_solar_electrolyzer_doe.yaml") + assert "There may be issues with the csv file csv_doe_cases.csv" in str(excinfo.value) + + # Run the model + from hopp.utilities.utilities import load_yaml + + from h2integrate.core.utilities import check_file_format_for_csv_generator + from h2integrate.core.dict_utils import update_defaults + from h2integrate.core.inputs.validation import write_yaml, load_driver_yaml + + # load the driver config file + driver_config = load_driver_yaml("driver_config.yaml") + # specify the filepath to the csv file + csv_fpath = Path(driver_config["driver"]["design_of_experiments"]["filename"]).absolute() + # run the csv checker method, we want it to write the csv file to a new filepath so + # set overwrite_file=False + new_csv_filename = check_file_format_for_csv_generator( + csv_fpath, driver_config, check_only=False, overwrite_file=False + ) + + # update the csv filename in the driver config dictionary + updated_driver = update_defaults(driver_config["driver"], "filename", new_csv_filename.name) + driver_config["driver"].update(updated_driver) + + # save the updated driver to a new file + new_driver_fpath = Path.cwd() / "driver_config_test.yaml" + new_toplevel_fpath = Path.cwd() / "20_solar_electrolyzer_doe_test.yaml" + write_yaml(driver_config, new_driver_fpath) + + # update the driver config filename in the top-level config + main_config = load_yaml("20_solar_electrolyzer_doe.yaml") + main_config["driver_config"] = new_driver_fpath.name + + # save the updated top-level config file to a new file + write_yaml(main_config, new_toplevel_fpath) + + model = H2IntegrateModel(new_toplevel_fpath) + model.run() + + sql_fpath = Path.cwd() / "ex_20_out" / "cases.sql" + cr = om.CaseReader(str(sql_fpath)) + cases = list(cr.get_cases()) + + with subtests.test("Check solar capacity in case 0"): + assert pytest.approx(cases[0].get_val("solar.capacity_kWdc", units="MW"), rel=1e-6) == 25.0 + with subtests.test("Check solar capacity in case 9"): + assert ( + pytest.approx(cases[-1].get_val("solar.capacity_kWdc", units="MW"), rel=1e-6) == 500.0 + ) + + with subtests.test("Check electrolyzer capacity in case 0"): + assert ( + pytest.approx( + cases[0].get_val("electrolyzer.electrolyzer_size_mw", units="MW"), rel=1e-6 + ) + == 10.0 * 5 + ) + + with subtests.test("Check electrolyzer capacity in case 9"): + assert ( + pytest.approx( + cases[-1].get_val("electrolyzer.electrolyzer_size_mw", units="MW"), rel=1e-6 + ) + == 10.0 * 10 + ) + + min_lcoh_val = 100000.0 + min_lcoh_case_num = 0 + for i, case in enumerate(cases): + lcoh = case.get_val("finance_subgroup_hydrogen.LCOH_optimistic", units="USD/kg")[0] + if lcoh < min_lcoh_val: + min_lcoh_val = np.min([lcoh, min_lcoh_val]) + min_lcoh_case_num = i + + with subtests.test("Min LCOH value"): + assert pytest.approx(min_lcoh_val, rel=1e-6) == 4.468258 + + with subtests.test("Min LCOH case number"): + assert min_lcoh_case_num == 6 + + with subtests.test("Min LCOH case LCOH value"): + assert ( + pytest.approx( + cases[min_lcoh_case_num].get_val( + "finance_subgroup_hydrogen.LCOH_optimistic", units="USD/kg" + ), + rel=1e-6, + ) + == min_lcoh_val + ) + + with subtests.test("Min LCOH case has lower LCOH than other cases"): + for i, case in enumerate(cases): + lcoh_case = case.get_val("finance_subgroup_hydrogen.LCOH_optimistic", units="USD/kg") + if i != min_lcoh_case_num: + assert lcoh_case > min_lcoh_val + + with subtests.test("Min LCOH solar capacity"): + assert ( + pytest.approx( + cases[min_lcoh_case_num].get_val("solar.capacity_kWdc", units="MW"), rel=1e-6 + ) + == 200.0 + ) + + with subtests.test("Min LCOH electrolyzer capacity"): + assert ( + pytest.approx( + cases[min_lcoh_case_num].get_val("electrolyzer.electrolyzer_size_mw", units="MW"), + rel=1e-6, + ) + == 100.0 + ) + + # remove files created + new_driver_fpath.unlink() + new_toplevel_fpath.unlink() + new_csv_filename.unlink() From fcef70079f0904c3a0573fe45cf94fecb32cff86 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Wed, 5 Nov 2025 14:57:18 -0600 Subject: [PATCH 46/79] Net Present Value Financial Models (#310) * added ProFAST NPV to supported models and put in example 26 and tests * updated npv calc inputs * added draft version of NPV financial calc * update commodity * example with NPV * fixed cost breakdown column renaming * add var om * update integration test * add npv integration test * Moved commodity sell price to an input * updated finance models so npv has model and commodity specific inputs and outputs to prevent errors and no unused outputs in npv * fixed lco breakdown function and added tests for some profast tools * added lco breakdown output to profast and simple profast test * add integration test for profast npv * added tests for profast npv and moved prexisting finance tests * added test for simple npv model * updating naming convention in simple npv * updated commodity sell price input name for simple npv * update naming to finance * change units for clarity * base ProFAST baseclass and added new finance models to supported models * added coproduct to ProFAST base class * Adding comments and a test from PR reviews * update documentation * reduce naming logic for outputting results * update pathname * remove discount rate comments that were not quite right --------- Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Co-authored-by: John Jasa Co-authored-by: Jared Thomas --- CHANGELOG.md | 4 + docs/_toc.yml | 18 +- docs/finance_models/ProFastBase.md | 193 +++++++++ docs/finance_models/ProFastComp.md | 191 +-------- docs/finance_models/ProFastNPV.md | 34 ++ docs/finance_models/finance_index.md | 4 +- docs/finance_models/financial_analyses.md | 60 +++ docs/finance_models/numpy_financial_npv.md | 74 ++++ .../specifying_finance_parameters.md | 2 +- .../user_finance_model/simple_lco.py | 2 +- examples/19_simple_dispatch/plant_config.yaml | 78 +++- .../marine/ocean_alkalinity_enhancement.py | 2 +- .../methanol/co2h_methanol_plant.py | 2 +- .../natural_gas/natural_gas_cc_ct.py | 6 +- .../converters/steel/steel_baseclass.py | 2 +- h2integrate/core/supported_models.py | 8 +- h2integrate/finances/numpy_financial_npv.py | 339 ++++++++++++++++ .../{profast_financial.py => profast_base.py} | 365 ++++++++++-------- h2integrate/finances/profast_lco.py | 163 ++++++++ h2integrate/finances/profast_npv.py | 77 ++++ .../{core => finances}/test/test_finances.py | 16 +- .../finances/test/test_numpy_financial_npv.py | 134 +++++++ .../finances/test/test_profast_finance.py | 120 ++++++ h2integrate/finances/test/test_profast_npv.py | 256 ++++++++++++ h2integrate/tools/profast_tools.py | 81 +++- h2integrate/tools/test/profast_config.yaml | 119 ++++++ h2integrate/tools/test/test_profast_tools.py | 40 ++ tests/h2integrate/test_all_examples.py | 38 +- 28 files changed, 2029 insertions(+), 399 deletions(-) create mode 100644 docs/finance_models/ProFastBase.md create mode 100644 docs/finance_models/ProFastNPV.md create mode 100644 docs/finance_models/financial_analyses.md create mode 100644 docs/finance_models/numpy_financial_npv.md create mode 100644 h2integrate/finances/numpy_financial_npv.py rename h2integrate/finances/{profast_financial.py => profast_base.py} (67%) create mode 100644 h2integrate/finances/profast_lco.py create mode 100644 h2integrate/finances/profast_npv.py rename h2integrate/{core => finances}/test/test_finances.py (98%) create mode 100644 h2integrate/finances/test/test_numpy_financial_npv.py create mode 100644 h2integrate/finances/test/test_profast_finance.py create mode 100644 h2integrate/finances/test/test_profast_npv.py create mode 100644 h2integrate/tools/test/profast_config.yaml create mode 100644 h2integrate/tools/test/test_profast_tools.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 66b97c972..8d3441a67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ - Added ability to visualize the wind plant layout for PySAM Windpower model using `post_process(show_plots=True)`. - Added Wind Annual Technology Baseline cost model `atb_wind_cost.py`. - Updated inputs for the `ATBBatteryCostModel` and `DemandOpenLoopController` so storage capacity and charge rate can be design variables +- Created `ProFastBase`, a base class for the `ProFastLCO` and `ProFastNPV` models +- Added `ProFastNPV`, a finance model using ProFAST to calculate NPV of the commodity +- Moved `compute()` from `ProFastBase` to `ProFastLCO`. +- Added `NumpyFinancialNPV`, a finance model that uses NumPy Financial npv to calculate the npv from the cash flows ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index 45f4ddb79..b1cead11a 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -19,12 +19,6 @@ parts: - file: user_guide/postprocessing_results - file: user_guide/how_to_interface_with_user_defined_model - file: user_guide/how_to_run_several_cases_in_sequence - - file: user_guide/specifying_finance_parameters - sections: - - file: user_guide/cost_years - - file: finance_models/finance_index - sections: - - file: finance_models/ProFastComp - caption: Technology Models chapters: @@ -56,6 +50,18 @@ parts: chapters: - file: control/control_overview.md +- caption: Finance Models + chapters: + - file: finance_models/financial_analyses + - file: user_guide/specifying_finance_parameters + - file: user_guide/cost_years + - file: finance_models/finance_index + sections: + - file: finance_models/ProFastBase + - file: finance_models/ProFastComp + - file: finance_models/ProFastNPV + - file: finance_models/numpy_financial_npv + - caption: Examples chapters: - file: examples/01-green-hydrogen diff --git a/docs/finance_models/ProFastBase.md b/docs/finance_models/ProFastBase.md new file mode 100644 index 000000000..42fa8563f --- /dev/null +++ b/docs/finance_models/ProFastBase.md @@ -0,0 +1,193 @@ +(profastmodel:profastmodel)= +# ProFAST Financial Model +The Production Financial Analysis Scenario Tool or (ProFAST)[https://www.nrel.gov/hydrogen/profast-access] is a financial modeling tool developed at the NREL based on General Accepted Accounting Principles (GAAP) methodology. The model provides a quick and convenient way to conduct in-depth financial analysis for production system and services. + +Currently there are two ProFAST models that can be used: +- [``ProFastComp``](profastcomp:profastcompmodel): A price-taker model that calculates levelized cost of commodity (or breakeven price) using [ProFAST](https://github.com/NREL/ProFAST). +- [``ProFastNPV``](profastnpv:profastnpvmodel): A price-setter model that calculates the net present value of a commodity using [ProFAST](https://github.com/NREL/ProFAST). + +(profast:overview)= +## Finance parameters overview +To set up the ProFast models correctly there are several financial parameters that need to be set. There are several ways of setting the information both within the `plant_config` and the `tech_config` for technology specific information. + +Here is the information for setting the parameters: +- required: financial parameters (`params` section). These can be input in the `ProFastBase` format or the `ProFAST` format. These two formats are described in the following sections: + - [ProFastBase format](profast:direct_opt) + - [ProFAST format](profast:pf_params_opt) +- required: default capital item parameters (`capital_items` section). These parameters can be overridden for specific technologies if specified in the `tech_config`. Example usage of overriding values in the `tech_config` is outlined [here](profast:tech_specific_finance) + +(profast:direct_opt)= +## Providing Finance Parameters: ProFastBase Format +Below is an example inputting financial parameters directly in the `finance_parameters` section of `plant_config`: + +```yaml +finance_parameters: + finance_model: "ProFastComp" #finance model + model_inputs: #inputs for finance_model + params: #Financing parameters + analysis_start_year: 2032 #year that financial analysis starts + installation_time: 36 #installation period in months + # Inflation parameters + inflation_rate: 0.0 # 0 for nominal analysis + # Finance parameters + discount_rate: 0.09 + debt_equity_ratio: 2.62 + property_tax_and_insurance: 0.03 + total_income_tax_rate: 0.257 + capital_gains_tax_rate: 0.15 + sales_tax_rate: 0.07375 + debt_interest_rate: 0.07 + debt_type: "Revolving debt" #"Revolving debt" or "One time loan" + loan_period_if_used: 0 #loan period if debt_type is 'One time loan' + cash_onhand_months: 1 + admin_expense: 0.00 #administrative expense as a fraction of sales + #default parameters for capital items unless specified in tech_config + capital_items: + depr_type: "MACRS" #depreciation method for capital items, can be "MACRS" or "Straight line" + depr_period: 5 #depreciation period for capital items in years. + refurb: [0.] #refurbishment schedule, values represent the replacement cost as a fraction of the CapEx + + # To adjust costs for technologies to target_dollar_year + cost_adjustment_parameters: + target_dollar_year: 2022 + cost_year_adjustment_inflation: 0.025 +``` + +This approach also relies on data from `plant_config`: +- `plant_life`: used as the `operating life` ProFAST parameter + + +```{note} +`inflation_rate` is used to populate the escalation and inflation rates in ProFAST entries with a value of 0 corresponding to a *nominal analysis*. +``` + +(profast:pf_params_opt)= +## Providing Finance Parameters: ProFAST format + +```{note} +To avoid errors, please check that `plant_config['plant']['plant_life']` is equal to `plant_config['finance_parameters']['model_inputs']['params']['operating life']`. Or remove `operating life` from the finance parameter inputs.` + + +| plant config parameter | equivalent `params` parameter | +| -------- | ------- | +| `plant['plant']['plant_life']` | `operating life` | +``` + +Below is an example of the `finance_parameters` section of `plant_config` if using ProFAST input format to specify financial parameters: + +```yaml +finance_parameters: + finance_model: "ProFastComp" + model_inputs: + params: !include "profast_params.yaml" #Finance information + capital_items: #default parameters for capital items unless specified in tech_config + depr_type: "MACRS" ##depreciation method for capital items, can be "MACRS" or "Straight line" + depr_period: 5 #depreciation period for capital items + refurb: [0.] + cost_adjustment_parameters: + target_dollar_year: 2022 + cost_year_adjustment_inflation: 0.025 # used to adjust costs for technologies to target_dollar_year +``` + +Below is an example of a valid ProFAST params config that may be specified in the `finance_parameters['model_inputs']['params]` section of `plant_config`: +```yaml +# Installation information +maintenance: + value: 0.0 + escalation: 0.0 +non depr assets: 250000 #such as land cost +end of proj sale non depr assets: 250000 #such as land cost +installation cost: + value: 0.0 + depr type: "Straight line" + depr period: 4 + depreciable: False +# Incentives information +incidental revenue: + value: 0.0 + escalation: 0.0 +annual operating incentive: + value: 0.0 + decay: 0.0 + sunset years: 0 + taxable: true +one time cap inct: + value: 0.0 + depr type: "MACRS" + depr period: 5 + depreciable: True +# Sales information +analysis start year: 2032 +operating life: 30 #if included, should equal plant_config['plant']['plant_life'] +installation months: 36 +demand rampup: 0 +# Take or pay specification +TOPC: + unit price: 0.0 + decay: 0.0 + support utilization: 0.0 + sunset years: 0 +# Other operating expenses +credit card fees: 0.0 +sales tax: 0.0 +road tax: + value: 0.0 + escalation: 0.0 +labor: + value: 0.0 + rate: 0.0 + escalation: 0.0 +rent: + value: 0.0 + escalation: 0.0 +license and permit: + value: 0.0 + escalation: 0.0 +admin expense: 0.0 +property tax and insurance: 0.015 +# Financing information +sell undepreciated cap: True +capital gains tax rate: 0.15 +total income tax rate: 0.2574 +leverage after tax nominal discount rate: 0.0948 +debt equity ratio of initial financing: 1.72 +debt interest rate: 0.046 +debt type: "Revolving debt" +general inflation rate: 0.0 +cash onhand: 1 # number of months with cash on-hand +tax loss carry forward years: 0 +tax losses monetized: True +loan period if used: 0 +``` + +(profast:tech_specific_finance)= +## Override defaults for specific technologies + +Capital item entries can be overridden for individual technologies. +This means that specific technologies can have different financial parameters defined in `tech_config` than the defaults set in the `plant_config`. + +### **Override depreciation period:** + +Suppose the default depreciation period for capital items is 5 years (set in the `plant_config['finance_parameters']['model_inputs]['capital_items']['depr_period']`), but we want the depreciation period for the electrolyzer to be 7 years. This can be done in the `tech_config` as shown below: +```yaml +technologies: + electrolyzer: + model_inputs: + finance_parameters: + capital_items: + depr_period: 7 +``` + + +### **Custom refurbishment period:** + +Suppose the default refurbishment schedule for capital items is `[0.]` (set in the `plant_config['finance_parameters']['model_inputs]['capital_items']['refurb']`), but we want our battery to be replaced in 15-years and the replacement cost is equal to the capital cost. This can be accomplished in the tech_config as shown below: +```yaml +technologies: + battery: + model_inputs: + finance_parameters: + capital_items: + refurbishment_period_years: 15 + replacement_cost_percent: 1.0 +``` diff --git a/docs/finance_models/ProFastComp.md b/docs/finance_models/ProFastComp.md index d73040015..1c78d035c 100644 --- a/docs/finance_models/ProFastComp.md +++ b/docs/finance_models/ProFastComp.md @@ -1,7 +1,7 @@ (profastcomp:profastcompmodel)= # ProFastComp -The `ProFastComp` finance model calculates levelized cost of commodity using [ProFAST](https://github.com/NREL/ProFAST). +The `ProFastComp` finance model calculates levelized cost of a commodity using [ProFAST](https://github.com/NREL/ProFAST). The inputs, outputs, and naming convention for the `ProFastComp` model are outlined in this doc page. @@ -9,18 +9,19 @@ The inputs, outputs, and naming convention for the `ProFastComp` model are outli (profastcomp:overview)= ## Finance parameters overview The main inputs for `ProFastComp` model include: -- required: financial parameters (`params` section). These can be input in the `ProFastComp` format or the `ProFAST` format. These two formats are described in the following sections: - - [ProFastComp format](profastcomp:direct_opt) - - [ProFAST format](profastcomp:pf_params_opt) -- required: default capital item parameters (`capital_items` section). These parameters can be overridden for specific technologies if specified in the `tech_config`. Example usage of overriding values in the `tech_config` is outlined [here](profastcomp:tech_specific_finance) -- optional: information to export the ProFAST config to a .yaml file +- required: financial parameters (`params` section). These can be input in the `ProFastBase` format or the `ProFAST` format. These two formats are described in the following sections: + - [ProFastBase format](profast:direct_opt) + - [ProFAST format](profast:pf_params_opt) +- required: default capital item parameters (`capital_items` section). These parameters can be overridden for specific technologies if specified in the `tech_config`. Example usage of overriding values in the `tech_config` is outlined [here](profast:tech_specific_finance) +- optional: information to export the ProFAST config or results to a .yaml file ```yaml finance_parameters: finance_model: "ProFastComp" model_inputs: #inputs for the finance_model - save_profast_to_file: True #optional, will save ProFAST entries to .yaml file in the folder specified in the driver_config (`driver_config["general"]["folder_output"]`) - profast_output_description: "profast_config" #required if `save_profast_to_file` is True, used to name the output file. + save_profast_results: True #optional, will save ProFAST results to .yaml file in the folder specified in the driver_config (`driver_config["general"]["folder_output"]`) + save_profast_config: True #optional, will save ProFAST the profast config to .yaml file in the folder specified in the driver_config (`driver_config["general"]["folder_output"]`) + profast_output_description: "profast_config" #used to name the output file. params: #Financial parameters section capital_items: #Required: section for default parameters for capital items depr_type: "MACRS" #Required: depreciation method for capital items, can be "MACRS" or "Straight line" @@ -33,180 +34,8 @@ finance_parameters: ``` -(profastcomp:direct_opt)= -## Providing Finance Parameters: ProFastComp Format -Below is an example inputting financial parameters directly in the `finance_parameters` section of `plant_config`: - -```yaml -finance_parameters: - finance_model: "ProFastComp" #finance model - model_inputs: #inputs for finance_model - params: #Financing parameters - analysis_start_year: 2032 #year that financial analysis starts - installation_time: 36 #installation period in months - # Inflation parameters - inflation_rate: 0.0 # 0 for nominal analysis - # Finance parameters - discount_rate: 0.09 - debt_equity_ratio: 2.62 - property_tax_and_insurance: 0.03 - total_income_tax_rate: 0.257 - capital_gains_tax_rate: 0.15 - sales_tax_rate: 0.07375 - debt_interest_rate: 0.07 - debt_type: "Revolving debt" #"Revolving debt" or "One time loan" - loan_period_if_used: 0 #loan period if debt_type is 'One time loan' - cash_onhand_months: 1 - admin_expense: 0.00 #administrative expense as a fraction of sales - #default parameters for capital items unless specified in tech_config - capital_items: - depr_type: "MACRS" #depreciation method for capital items, can be "MACRS" or "Straight line" - depr_period: 5 #depreciation period for capital items in years. - refurb: [0.] #refurbishment schedule, values represent the replacement cost as a fraction of the CapEx - - # To adjust costs for technologies to target_dollar_year - cost_adjustment_parameters: - target_dollar_year: 2022 - cost_year_adjustment_inflation: 0.025 -``` - -This approach also relies on data from `plant_config`: -- `plant_life`: used as the `operating life` ProFAST parameter - - ```{note} -`inflation_rate` is used to populate the escalation and inflation rates in ProFAST entries with a value of 0 corresponding to a *nominal analysis*. -``` - -(profastcomp:pf_params_opt)= -## Providing Finance Parameters: ProFAST format - -```{note} -To avoid errors, please check that `plant_config['plant']['plant_life']` is equal to `plant_config['finance_parameters']['model_inputs']['params']['operating life']`. Or remove `operating life` from the finance parameter inputs.` - - -| plant config parameter | equivalent `params` parameter | -| -------- | ------- | -| `plant['plant']['plant_life']` | `operating life` | -``` - -Below is an example of the `finance_parameters` section of `plant_config` if using ProFAST input format to specify financial parameters: - -```yaml -finance_parameters: - finance_model: "ProFastComp" - model_inputs: - params: !include "profast_params.yaml" #Finance information - capital_items: #default parameters for capital items unless specified in tech_config - depr_type: "MACRS" ##depreciation method for capital items, can be "MACRS" or "Straight line" - depr_period: 5 #depreciation period for capital items - refurb: [0.] - cost_adjustment_parameters: - target_dollar_year: 2022 - cost_year_adjustment_inflation: 0.025 # used to adjust costs for technologies to target_dollar_year -``` - -Below is an example of a valid ProFAST params config that may be specified in the `finance_parameters['model_inputs']['params]` section of `plant_config`: -```yaml -# Installation information -maintenance: - value: 0.0 - escalation: 0.0 -non depr assets: 250000 #such as land cost -end of proj sale non depr assets: 250000 #such as land cost -installation cost: - value: 0.0 - depr type: "Straight line" - depr period: 4 - depreciable: False -# Incentives information -incidental revenue: - value: 0.0 - escalation: 0.0 -annual operating incentive: - value: 0.0 - decay: 0.0 - sunset years: 0 - taxable: true -one time cap inct: - value: 0.0 - depr type: "MACRS" - depr period: 5 - depreciable: True -# Sales information -analysis start year: 2032 -operating life: 30 #if included, should equal plant_config['plant']['plant_life'] -installation months: 36 -demand rampup: 0 -# Take or pay specification -TOPC: - unit price: 0.0 - decay: 0.0 - support utilization: 0.0 - sunset years: 0 -# Other operating expenses -credit card fees: 0.0 -sales tax: 0.0 -road tax: - value: 0.0 - escalation: 0.0 -labor: - value: 0.0 - rate: 0.0 - escalation: 0.0 -rent: - value: 0.0 - escalation: 0.0 -license and permit: - value: 0.0 - escalation: 0.0 -admin expense: 0.0 -property tax and insurance: 0.015 -# Financing information -sell undepreciated cap: True -capital gains tax rate: 0.15 -total income tax rate: 0.2574 -leverage after tax nominal discount rate: 0.0948 -debt equity ratio of initial financing: 1.72 -debt interest rate: 0.046 -debt type: "Revolving debt" -general inflation rate: 0.0 -cash onhand: 1 # number of months with cash on-hand -tax loss carry forward years: 0 -tax losses monetized: True -loan period if used: 0 -``` - -(profastcomp:tech_specific_finance)= -## Override defaults for specific technologies - -Capital item entries can be overridden for individual technologies. -This means that specific technologies can have different financial parameters defined in `tech_config` than the defaults set in the `plant_config`. - -### **Override depreciation period:** - -Suppose the default depreciation period for capital items is 5 years (set in the `plant_config['finance_parameters']['model_inputs]['capital_items']['depr_period']`), but we want the depreciation period for the electrolyzer to be 7 years. This can be done in the `tech_config` as shown below: -```yaml -technologies: - electrolyzer: - model_inputs: - finance_parameters: - capital_items: - depr_period: 7 -``` - - -### **Custom refurbishment period:** - -Suppose the default refurbishment schedule for capital items is `[0.]` (set in the `plant_config['finance_parameters']['model_inputs]['capital_items']['refurb']`), but we want our battery to be replaced in 15-years and the replacement cost is equal to the capital cost. This can be accomplished in the tech_config as shown below: -```yaml -technologies: - battery: - model_inputs: - finance_parameters: - capital_items: - refurbishment_period_years: 15 - replacement_cost_percent: 1.0 +If you are setting `save_profast_results` to `True` and are using multiple finance subgroups, use the `commodity_desc` in each unique finance subgroup to ensure the output files get written correctly for each subgroup. See examples/19_simple_dispatch/plant_config.yaml for an example of this. ``` (profastcomp:outputs)= diff --git a/docs/finance_models/ProFastNPV.md b/docs/finance_models/ProFastNPV.md new file mode 100644 index 000000000..ffe645f88 --- /dev/null +++ b/docs/finance_models/ProFastNPV.md @@ -0,0 +1,34 @@ +(profastnpv:profastnpvmodel)= +# ProFastNPV +The `ProFastNPV` finance model calculates the net present value (NPV) of a commodity using [ProFAST](https://github.com/NREL/ProFAST). + +`ProFastNPV` inherits from `ProFastBase` so refer to the [`ProFastBase` documentation](profast:overview) for setting the finance parameters. + +The only additional parameter that's required when using the `ProFastNPV` model is `commodity_sell_price`. + +Below is an example of how to set up the ProFast NPV model in the `plant_config`: + +```yaml +finance_parameters: + finance_model: "ProFastNPV" + model_inputs: + commodity_sell_price: 0.05 # USD/commodity + params: !include "profast_params.yaml" #Finance information + capital_items: #default parameters for capital items unless specified in tech_config + depr_type: "MACRS" ##depreciation method for capital items, can be "MACRS" or "Straight line" + depr_period: 5 #depreciation period for capital items + refurb: [0.] + cost_adjustment_parameters: + target_dollar_year: 2022 + cost_year_adjustment_inflation: 0.025 # used to adjust costs for technologies to target_dollar_year +``` + +(profastnpv:outputs)= +## Output values and naming convention +``ProFastNPV`` outputs the following data following the naming convention detailed below: +- `NPV_`: net present value of commodity in USD. + +**Naming convention**: +- ``: + - if `commodity_desc` is **not** provided, then `` this is just `commodity`. For example, `NPV_hydrogen` if the `commodity` is `"hydrogen"`. + - if `commodity_desc` is provided, then `` is `_`. For example, `NPV_hydrogen_produced` if the `commodity` is `"hydrogen"` and `commodity_desc` is `"produced"` diff --git a/docs/finance_models/finance_index.md b/docs/finance_models/finance_index.md index 043c2e0ae..076936646 100644 --- a/docs/finance_models/finance_index.md +++ b/docs/finance_models/finance_index.md @@ -18,7 +18,9 @@ The `commodity_type` and `description` are used in the finance model naming conv (finance:supportedmodels)= ## Currently supported general finance models -- [``ProFastComp``](profastcomp:profastcompmodel): calculates levelized cost of commodity using ProFAST. +- [``ProFastComp``](profastcomp:profastcompmodel): calculates levelized cost of commodity using [ProFAST](https://github.com/NREL/ProFAST). +- [``ProFastNPV``](profastnpv:profastnpvmodel): calculates the net present value of a commodity using [ProFAST](https://github.com/NREL/ProFAST). +- [``NumpyFinancialNPV``](numpyfinancialnpvfinance:numpyfinancialnpvmodel): calculates the net present value of a commodity using the [NumPy Financial npv](https://numpy.org/numpy-financial/latest/npv.html#numpy_financial.npv) method. ## Custom finance models diff --git a/docs/finance_models/financial_analyses.md b/docs/finance_models/financial_analyses.md new file mode 100644 index 000000000..4adc6f9f2 --- /dev/null +++ b/docs/finance_models/financial_analyses.md @@ -0,0 +1,60 @@ +# Real vs Nominal Analysis + +There can be significant confusion when distinguishing between **real** and **nominal** analyses in financial or techno-economic studies. This distinction matters because it determines whether and how inflation is accounted for when evaluating costs, revenues, or cash flows. + +--- + +## Key Definitions + +* **Real Analysis:** + Presents all monetary values in terms of a **single reference year** (constant dollars). + + * Inflation effects are **removed** so that results reflect true purchasing power. + * Useful for comparing values across time without inflation distortions. + +* **Nominal Analysis:** + Presents values in the **year dollars they occur** (current or actual year dollars). + + * Inflation effects are **included** since each year’s value reflects that year’s prices. + +--- + +## How Inflation Is Applied + +The application of inflation depends on whether the analysis is **historical** or **predictive (forward-looking)**: + +| Type of Analysis | Real Analysis | Nominal Analysis | +| -------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| **Historical** | Must **add inflation** to bring past values to the base year (e.g., convert 2010 dollars to 2025 dollars). | Uses **recorded values as-is**, since historical data are already in their respective year dollars. | +| **Predictive / Forward-looking** | Uses **current-year values directly** — inflation is not added because costs are expressed in today’s dollars (real terms). | Must **add inflation** to project future year costs or revenues in their actual year dollars. | + +--- + +## Example: Five-Year Project with 2% Annual Inflation + +Suppose you are evaluating a project that incurs $1 million in operating costs each year for five years, expressed in **today’s dollars** (Year 0). + +| Year | Real Analysis (constant $) | Nominal Analysis (2% inflation) | +| ---- | -------------------------- | ------------------------------- | +| 1 | $1,000,000 | $1,020,000 | +| 2 | $1,000,000 | $1,040,400 | +| 3 | $1,000,000 | $1,061,208 | +| 4 | $1,000,000 | $1,082,432 | +| 5 | $1,000,000 | $1,104,081 | + +**Interpretation:** + +* The **real analysis** shows the same cost every year because it ignores inflation—values are all in Year 0 (today’s) dollars. +* The **nominal analysis** escalates costs each year to reflect inflation, showing what you’d actually pay in each year’s currency. + +--- + +## Summary + +In short: + +* **Real analysis** removes inflation effects — values are in constant dollars. +* **Nominal analysis** includes inflation effects — values are in actual year dollars. +* The direction of inflation adjustment (adding or not adding) flips depending on whether you’re looking **backward (historical)** or **forward (predictive)**. + +All approaches are useful — what matters most is being **abundantly clear** which one is being applied and consistent across your calculations. diff --git a/docs/finance_models/numpy_financial_npv.md b/docs/finance_models/numpy_financial_npv.md new file mode 100644 index 000000000..e1378c0e3 --- /dev/null +++ b/docs/finance_models/numpy_financial_npv.md @@ -0,0 +1,74 @@ +(numpyfinancialnpvfinance:numpyfinancialnpvmodel)= +# NumPy Financial NPV Finance Model +The `NumpyFinancialNPV` component calculates the Net Present Value (NPV) of a commodity-producing plant or technology over its operational lifetime using the [NumPy Financial npv](https://numpy.org/numpy-financial/latest/npv.html#numpy_financial.npv) method. +It is implemented as an OpenMDAO `ExplicitComponent` and integrates with system-level technoeconomic optimization workflows. + +The component evaluates profitability by discounting future cash flows — including capital expenditures (CAPEX), operating expenses (OPEX), refurbishments, and revenues — based on user-defined financial parameters. + +By convention: +- Investments and costs (CAPEX, OPEX, refurbishments) are negative cash flows. +- Revenues (commodity sales) are positive cash flows. + +## Model Inputs +### `NumpyFinancialNPVFinanceConfig` +**Description** +Configuration class defining financial parameters for the NPV calculation. +Implements validation and default handling using the `attrs` library. +| Attribute | Type | Description | Default | +| --------------------------------- | ---------------- | ----------------------------------------------------- | ----------- | +| `plant_life` | `int` | Operating life of the plant in years. Must be ≥ 0. | — | +| `discount_rate` | `float` | Discount rate (0–1). | — | +| `commodity_sell_price` | `int` or `float` | Sale price of the commodity (USD/unit). | `0.0` | +| `save_cost_breakdown` | `bool` | Whether to save annual cost breakdowns to CSV. | `False` | +| `save_npv_breakdown` | `bool` | Whether to save per-technology NPV breakdowns to CSV. | `False` | +| `cost_breakdown_file_description` | `str` | Descriptor appended to output filenames. | `'default'` | + + +An example of what to include in the `plant_config` to use the `NPVFinance` model. This is included in `["finance_parameters"]["finance_groups"]`, where `npv` is the specific `finance_group` name. + +```yaml +npv: + finance_model: "NumpyFinancialNPV" + model_inputs: + discount_rate: 0.09 # each period is discounted at a rate of `discount_rate` + commodity_sell_price: 0.078 # if commodity is electricity $/kwh + save_cost_breakdown: True + save_npv_breakdown: True +``` + +```{note} +`plant_life` is included in the `plant` section of the `plant_config` yaml. +``` + +## Model Outputs +| Name | Units | Description | +| ----------------- | ----- | -------------------------------------------------- | +| `NPV__` | `USD` | Total discounted Net Present Value for the system. | + +### Output Files (if enabled) + +| File | Description | +| ---------------------- | -------------------------------------------------------- | +| `*_cost_breakdown.csv` | Annual time series of costs and revenues per technology. | +| `*_NPV_breakdown.csv` | Discounted NPV summary by cost/revenue category. | + + + +## Calculation Methodology + +1. Assemble Cash Flows + - CAPEX (negative) at year 0 + - OPEX (negative) and revenue (positive) for years 1–`plant_life` + +2. Refurbishments + - Technologies with `replacement_cost_percent` and a refurbishment period incur periodic capital costs. + +3. Discounting + - Each series of cash flows is discounted using NumPy Financial’s `npf.npv(discount_rate, values)`. + +4. Summation + - Total NPV = sum of all discounted cash flows. + +5. Optional Output Files + - `*_cost_breakdown.csv`: Annual cash flow time series + - `*_NPV_breakdown.csv`: Discounted NPV breakdown per item diff --git a/docs/user_guide/specifying_finance_parameters.md b/docs/user_guide/specifying_finance_parameters.md index 7bae9c756..5ee95c798 100644 --- a/docs/user_guide/specifying_finance_parameters.md +++ b/docs/user_guide/specifying_finance_parameters.md @@ -6,7 +6,7 @@ The `finance_parameters` section of the `plant_config` defines the financial sub The `plant_life` parameter from the `plant` section of the `plant_config` is also used in finance calculations as the operating life of the plant. ``` -At minimum, `finance_parameters` must include: +If a user is computing finances, then at a minimum, `finance_parameters` must include: - `cost_adjustment_parameters`: - `target_dollar_year`: dollar-year to convert costs to. - `cost_year_adjustment_inflation`: used to adjust costs for each technology from its native cost year to the `target_dollar_year` (see [details on cost years and cost models here](cost:cost_years)) diff --git a/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py b/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py index aba42b3a6..d255cb2fb 100644 --- a/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py +++ b/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py @@ -23,7 +23,7 @@ def initialize(self): def setup(self): if self.options["commodity_type"] == "electricity": commodity_units = "kW*h/year" - lco_units = "USD/kW/h" + lco_units = "USD/(kW*h)" else: commodity_units = "kg/year" lco_units = "USD/kg" diff --git a/examples/19_simple_dispatch/plant_config.yaml b/examples/19_simple_dispatch/plant_config.yaml index ee9750cf8..8e6614e05 100644 --- a/examples/19_simple_dispatch/plant_config.yaml +++ b/examples/19_simple_dispatch/plant_config.yaml @@ -42,27 +42,59 @@ resource_to_tech_connections: [ finance_parameters: finance_groups: - finance_model: "ProFastComp" - model_inputs: - params: - analysis_start_year: 2032 - installation_time: 36 # months - inflation_rate: 0.0 # 0 for nominal analysis + profast: + finance_model: "ProFastComp" + model_inputs: + save_profast_results: True + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] + profast_npv: + finance_model: "ProFastNPV" + model_inputs: + commodity_sell_price: 0.10 + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] + npv: + finance_model: "NumpyFinancialNPV" + model_inputs: discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind - debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ - debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period_if_used: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - admin_expense: 0.00 # percent of sales H2FAST default - capital_items: - depr_type: "MACRS" # can be "MACRS" or "Straight line" - depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - refurb: [0.] + commodity_sell_price: 0.078 + save_cost_breakdown: True + save_npv_breakdown: True cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 @@ -70,10 +102,14 @@ finance_parameters: wind: commodity: "electricity" commodity_stream: "wind" #use electricity from wind in finance calc + commodity_desc: "wind_only" + finance_groups: ["profast"] technologies: ["wind"] battery: commodity: "electricity" commodity_stream: "battery" #use electricity from battery in finance calc + commodity_desc: "battery_included" + finance_groups: ["profast"] technologies: ["wind", "battery"] electricity: commodity: "electricity" @@ -81,4 +117,6 @@ finance_parameters: # use the electricity produced from all electricity producing technologies # included in 'technologies'. In this case, it will use the electricity # produced by the wind technology as the commodity stream. + finance_groups: ["profast", "npv", "profast_npv"] + commodity_desc: "all_electricity" technologies: ["wind","battery"] diff --git a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py index 28ddb2035..4e51b330e 100644 --- a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py +++ b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py @@ -360,7 +360,7 @@ def setup(self): self.add_input( "LCOE", val=0.0, - units="USD/kW/h", + units="USD/(kW*h)", desc="Levelized cost of electricity (USD/kWh)", ) self.add_input( diff --git a/h2integrate/converters/methanol/co2h_methanol_plant.py b/h2integrate/converters/methanol/co2h_methanol_plant.py index 53b2afd1a..e8ca0f28a 100644 --- a/h2integrate/converters/methanol/co2h_methanol_plant.py +++ b/h2integrate/converters/methanol/co2h_methanol_plant.py @@ -247,7 +247,7 @@ def setup(self): ) self.add_input( "LCOE", - units="USD/kW/h", + units="USD/(kW*h)", desc="Levelized cost of electricity in USD/kWh", ) self.add_input( diff --git a/h2integrate/converters/natural_gas/natural_gas_cc_ct.py b/h2integrate/converters/natural_gas/natural_gas_cc_ct.py index e7855a82f..aa4a20ddb 100644 --- a/h2integrate/converters/natural_gas/natural_gas_cc_ct.py +++ b/h2integrate/converters/natural_gas/natural_gas_cc_ct.py @@ -215,19 +215,19 @@ def setup(self): self.add_input( "fixed_opex_per_kw_per_year", val=self.config.fixed_opex_per_kw_per_year, - units="USD/kW/year", + units="USD/(kW*year)", desc="Fixed operating expenses per unit capacity per year", ) self.add_input( "variable_opex_per_mwh", val=self.config.variable_opex_per_mwh, - units="USD/MW/h", + units="USD/(MW*h)", desc="Variable operating expenses per unit generation", ) self.add_input( "heat_rate_mmbtu_per_mwh", val=self.config.heat_rate_mmbtu_per_mwh, - units="MMBtu/MW/h", + units="MMBtu/(MW*h)", desc="Plant heat rate", ) diff --git a/h2integrate/converters/steel/steel_baseclass.py b/h2integrate/converters/steel/steel_baseclass.py index a59ff3ab1..956df63b7 100644 --- a/h2integrate/converters/steel/steel_baseclass.py +++ b/h2integrate/converters/steel/steel_baseclass.py @@ -33,7 +33,7 @@ def setup(self): self.add_input("plant_capacity_factor", val=0.0, units=None, desc="Capacity factor") self.add_input("LCOH", val=0.0, units="USD/kg", desc="Levelized cost of hydrogen") self.add_input( - "electricity_cost", val=0.0, units="USD/MW/h", desc="Levelized cost of electricity" + "electricity_cost", val=0.0, units="USD/(MW*h)", desc="Levelized cost of electricity" ) diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index d8c6e6f17..f658ac499 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -2,12 +2,14 @@ from h2integrate.core.feedstocks import FeedstockCostModel, FeedstockPerformanceModel from h2integrate.transporters.pipe import PipePerformanceModel from h2integrate.transporters.cable import CablePerformanceModel +from h2integrate.finances.profast_lco import ProFastLCO +from h2integrate.finances.profast_npv import ProFastNPV from h2integrate.converters.steel.steel import SteelPerformanceModel, SteelCostAndFinancialModel from h2integrate.converters.wind.wind_pysam import PYSAMWindPlantPerformanceModel -from h2integrate.finances.profast_financial import ProFastComp from h2integrate.transporters.generic_summer import GenericSummerPerformanceModel from h2integrate.converters.hopp.hopp_wrapper import HOPPComponent from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel +from h2integrate.finances.numpy_financial_npv import NumpyFinancialNPV from h2integrate.storage.generic_storage_cost import GenericStorageCostModel from h2integrate.storage.hydrogen.eco_storage import H2Storage from h2integrate.converters.wind.atb_wind_cost import ATBWindPlantCostModel @@ -183,7 +185,9 @@ "feedstock_performance": FeedstockPerformanceModel, "feedstock_cost": FeedstockCostModel, # Finance - "ProFastComp": ProFastComp, + "ProFastComp": ProFastLCO, + "ProFastNPV": ProFastNPV, + "NumpyFinancialNPV": NumpyFinancialNPV, } electricity_producing_techs = ["wind", "solar", "pv", "river", "hopp", "natural_gas_plant"] diff --git a/h2integrate/finances/numpy_financial_npv.py b/h2integrate/finances/numpy_financial_npv.py new file mode 100644 index 000000000..f3f50d42b --- /dev/null +++ b/h2integrate/finances/numpy_financial_npv.py @@ -0,0 +1,339 @@ +from pathlib import Path + +import numpy as np +import pandas as pd +import openmdao.api as om +import numpy_financial as npf +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, check_plant_config_and_profast_params +from h2integrate.core.validators import gte_zero, range_val + + +@define +class NumpyFinancialNPVFinanceConfig(BaseConfig): + """Configuration for NumpyFinancialNPVFinance. + + Attributes: + plant_life (int): operating life of plant in years + discount_rate (float): discount rate, expressed as a fraction between 0 and 1. + commodity_sell_price (int | float, optional): sell price of commodity in + USD/unit of commodity. Defaults to 0.0 + save_cost_breakdown (bool, optional): whether to save the cost breakdown per year. + Defaults to False. + save_npv_breakdown (bool, optional): whether to save the npv breakdown per technology. + Defaults to False. + cost_breakdown_file_description (str, optional): description to include in filename of + cost breakdown file or npv breakdown file if either ``save_cost_breakdown`` or + ``save_npv_breakdown`` is True. Defaults to 'default'. + """ + + plant_life: int = field(converter=int, validator=gte_zero) + discount_rate: float = field(validator=range_val(0, 1)) + commodity_sell_price: int | float = field(default=0.0) + save_cost_breakdown: bool = field(default=False) + save_npv_breakdown: bool = field(default=False) + cost_breakdown_file_description: str = field(default="default") + + +class NumpyFinancialNPV(om.ExplicitComponent): + """OpenMDAO component for calculating Net Present Value (NPV) + using the NumPy Financial. + + This component computes the NPV of a given commodity-producing plant over its + operational lifetime, accounting for capital expenditures (CAPEX), operating + expenditures (OPEX), refurbishment/replacement costs, and commodity revenues. + + NPV is calculated using the discount rate and plant life defined in the + `plant_config`. By convention, investments (CAPEX, OPEX, refurbishment) are + treated as negative cash flows, while revenues from commodity sales are + positive. This follows the NumPy Financial convention: + + Reference: + NumpPy Financial NPV documentation: + https://numpy.org/numpy-financial/latest/npv.html#numpy_financial.npv + + By convention: + - Investments or "deposits" are negative. + - Income or "withdrawals" are positive. + - Values typically start with the initial investment, so + ``values[0]`` is often negative. + + Attributes: + NPV_str (str): The dynamically generated name of the NPV output variable, + based on `commodity_type` and optional `description`. + tech_config (dict): Technology-specific configuration dictionary. + config (NumpyFinancialNPVConfig): Parsed financial configuration parameters + (e.g., discount rate, plant life, save options). + """ + + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + self.options.declare("commodity_type", types=str) + self.options.declare("description", types=str, default="") + + def setup(self): + commodity_type = self.options["commodity_type"] + description = self.options["description"].strip() if "description" in self.options else "" + + # Use description only if non-empty + suffix = f"_{description}" if description else "" + + self.NPV_str = f"NPV_{commodity_type}{suffix}" + self.output_txt = f"{commodity_type}{suffix}" + + # TODO: update below with standardized naming + if self.options["commodity_type"] == "electricity": + commodity_units = "kW*h/year" + commodity_price_units = "USD/(kW*h)" + else: + commodity_units = "kg/year" + commodity_price_units = "USD/kg" + + self.add_output(self.NPV_str, val=0.0, units="USD") + + if self.options["commodity_type"] == "co2": + self.add_input("co2_capture_kgpy", val=0.0, units="kg/year") + else: + self.add_input( + f"total_{self.options['commodity_type']}_produced", + val=0.0, + units=commodity_units, + ) + + plant_config = self.options["plant_config"] + finance_params = plant_config["finance_parameters"]["model_inputs"] + if "plant_life" in finance_params: + check_plant_config_and_profast_params( + plant_config["plant"], finance_params, "plant_life", "plant_life" + ) + finance_params.update({"plant_life": plant_config["plant"]["plant_life"]}) + + self.config = NumpyFinancialNPVFinanceConfig.from_dict(finance_params) + + tech_config = self.tech_config = self.options["tech_config"] + for tech in tech_config: + self.add_input(f"capex_adjusted_{tech}", val=0.0, units="USD") + self.add_input(f"opex_adjusted_{tech}", val=0.0, units="USD/year") + self.add_input( + f"varopex_adjusted_{tech}", + val=0.0, + shape=plant_config["plant"]["plant_life"], + units="USD/year", + ) + + # TODO: update below with standardized naming + if "electrolyzer" in tech_config: + self.add_input("electrolyzer_time_until_replacement", units="h") + + self.add_input( + f"sell_price_{self.output_txt}", + val=self.config.commodity_sell_price, + units=commodity_price_units, + ) + + def compute(self, inputs, outputs): + """Compute the Net Present Value (NPV). + + Calculates discounted cash flows over the plant lifetime, accounting for: + * Revenue from annual commodity production and sale. + * CAPEX and OPEX for all technologies. + * Replacement or refurbishment costs if provided. + + Optionally saves cost breakdowns and NPV breakdowns to CSV files if + enabled in configuration. + + NPV that is positive indicates a profitable investment, while negative + NPV indicates a loss. + + Args: + inputs (dict-like): Dictionary of input values, including production, + CAPEX, OPEX, and optional replacement periods. + outputs (dict-like): Dictionary for storing computed outputs, including + the NPV result. + + Produces: + * `outputs[self.NPV_str]`: The total NPV in USD. + + Side Effects: + * Writes annual cost breakdown and NPV breakdown CSVs to the configured + output directory if `save_cost_breakdown` or `save_npv_breakdown` + is enabled. + + Raises: + FileNotFoundError: If the specified output directory cannot be created. + ValueError: If refurbishment schedules cannot be derived from inputs. + """ + # By convention in NPV calculations, investments (capex, opex, refurbishment) are + # negative cash flows while revenues are positive. This follows the numpy_financial + # convention where money going out is negative and money coming in is positive. + sign_of_costs = -1 + + # Extract annual production based on commodity type + # CO2 uses different input naming convention than other commodities + # TODO: update below for standardized naming and also variable simulation lengths + if self.options["commodity_type"] != "co2": + annual_production = float(inputs[f"total_{self.options['commodity_type']}_produced"][0]) + else: + annual_production = float(inputs["co2_capture_kgpy"]) + + # Calculate revenue from selling the commodity at the specified price + # Revenue is only generated during operational years (not during construction year 0) + income = float(inputs[f"sell_price_{self.output_txt}"]) * annual_production + # Create cash inflow array: [0 for year 0 (construction), income for years 1-N] + cash_inflow = np.concatenate(([0], income * np.ones(self.config.plant_life))) + + # Initialize cost breakdown dictionary to track all cash flows by category + # This will be used both for NPV calculation and optional CSV export + cost_breakdown = {f"Cash Inflow of Selling {self.options['commodity_type']}": cash_inflow} + + # Track initial investment for reference (not currently used in calculations) + initial_investment_cost = 0 + + # Loop through each technology (e.g., wind, electrolyzer, etc.) to sum costs + for tech in self.tech_config: + # Extract financial inputs for this technology and apply negative sign convention + capex = sign_of_costs * float(inputs[f"capex_adjusted_{tech}"]) + fixed_om = sign_of_costs * float(inputs[f"opex_adjusted_{tech}"]) + var_om = sign_of_costs * inputs[f"varopex_adjusted_{tech}"] + + # CAPEX occurs only in year 0 (construction phase) + # Array size is plant_life+1 to include year 0 + capex_per_year = np.zeros(int(self.config.plant_life + 1)) + capex_per_year[0] = capex + initial_investment_cost += capex + + # Store technology-specific costs in breakdown dictionary + cost_breakdown[f"{tech}: capital cost"] = capex_per_year + # Fixed O&M is constant each year during operation (years 1 through plant_life) + cost_breakdown[f"{tech}: fixed o&m"] = np.concatenate( + ([0], fixed_om * np.ones(self.config.plant_life)) + ) + # Variable O&M can vary by year based on utilization or other factors + cost_breakdown[f"{tech}: variable o&m"] = np.concatenate(([0], var_om)) + + # Retrieve technology-specific capital item parameters for refurbishment/replacement + tech_capex_info = ( + self.tech_config[tech]["model_inputs"] + .get("financial_parameters", {}) + .get("capital_items", {}) + ) + + # Check if this technology requires periodic refurbishment or replacement + # (e.g., electrolyzer stacks may need replacement every N years) + if "replacement_cost_percent" in tech_capex_info: + # Initialize array to track when replacements occur + refurb_schedule = np.zeros(self.config.plant_life) + + # Find refurbishment period either from explicit config or calculated from hours + if "refurbishment_period_years" in tech_capex_info: + refurb_period = tech_capex_info["refurbishment_period_years"] + else: + # Calculate from hours until replacement (e.g., electrolyzer lifetime hours) + # Convert hours to years: divide by (24 hours/day * 365 days/year) + refurb_period = round( + float(inputs[f"{tech}_time_until_replacement"][0]) / (24 * 365) + ) + + # Set replacement cost at regular intervals (every refurb_period years) + # replacement_cost_percent is fraction of original CAPEX (e.g., 0.15 = 15%) + refurb_schedule[refurb_period : self.config.plant_life : refurb_period] = ( + tech_capex_info["replacement_cost_percent"] + ) + + # Calculate actual replacement costs by multiplying CAPEX by schedule percentages + # capex is negative, so refurb_cost will also be negative (cash outflow) + refurb_cost = capex * refurb_schedule + # Add refurbishment schedule to cost breakdown + cost_breakdown[f"{tech}: replacement cost"] = refurb_cost + + # Convert cost breakdown to list of arrays for aggregation (currently unused) + total_costs = [np.array(v) for k, v in cost_breakdown.items()] + np.array(total_costs).sum(axis=0) + + # Calculate NPV for each cost category and sum to get total NPV + # This iterative approach also builds npv_cost_breakdown for optional reporting + npv_item_check = 0 + npv_cost_breakdown = {} + for cost_type, cost_vals in cost_breakdown.items(): + # Apply NPV formula: NPV = sum(cash_flow[t] / (1 + discount_rate)^t) for all t + npv_item = npf.npv(self.config.discount_rate, cost_vals) + npv_item_check += float(npv_item) + npv_cost_breakdown[cost_type] = float(npv_item) + + # Store final NPV result in outputs + outputs[self.NPV_str] = npv_item_check + + # Optionally save detailed breakdowns to CSV files for analysis + if self.config.save_cost_breakdown or self.config.save_npv_breakdown: + self._save_cost_breakdown_files(cost_breakdown, npv_cost_breakdown, npv_item_check) + + def _save_cost_breakdown_files(self, cost_breakdown, npv_cost_breakdown, total_npv): + """Save cost breakdown and/or NPV breakdown to CSV files. + + Creates CSV files containing detailed breakdowns of costs and NPV calculations + for post-processing analysis and reporting. + + Args: + cost_breakdown (dict): Dictionary mapping cost categories to annual cost arrays. + Keys are category names (e.g., "wind: capital cost"), values are numpy arrays + of costs per year (length = plant_life + 1). + npv_cost_breakdown (dict): Dictionary mapping cost categories to their NPV values. + Keys are category names, values are floats representing discounted present value. + total_npv (float): The total NPV summed across all categories in USD. + + File Formats: + NPV breakdown CSV: Single column with cost category as index and NPV as value. + Cost breakdown CSV: Rows are cost categories, columns are years (Year 0, Year 1, etc.). + """ + # Set up output directory and ensure it exists + output_dir = self.options["driver_config"]["general"]["folder_output"] + output_dir = Path(output_dir) + output_dir.mkdir(parents=True, exist_ok=True) + + # Get file description for naming + fdesc = self.config.cost_breakdown_file_description + + # Build base filename with appropriate commodity and description + if ( + self.options["description"] == "" + or self.options["description"] == self.options["commodity_type"] + ): + filename_base = f"{fdesc}_{self.options['commodity_type']}_NumpyFinancialNPV" + else: + # Extract description by removing NPV prefix and commodity type + desc = ( + self.NPV_str.replace("NPV_", "") + .replace(self.options["commodity_type"], "") + .strip("_") + ) + filename_base = f"{fdesc}_{self.options['commodity_type']}_{desc}_NumpyFinancialNPV" + + # Save NPV breakdown: single value per cost category + if self.config.save_npv_breakdown: + npv_fname = f"{filename_base}_NPV_breakdown.csv" + npv_fpath = Path(output_dir) / npv_fname + npv_breakdown = pd.Series(npv_cost_breakdown) + npv_breakdown.loc["Total"] = total_npv + npv_breakdown.name = "NPV (USD)" + npv_breakdown.to_csv(npv_fpath) + + # Save annual cost breakdown: costs per year for each category + if self.config.save_cost_breakdown: + cost_fname = f"{filename_base}_cost_breakdown.csv" + cost_fpath = Path(output_dir) / cost_fname + + # Create DataFrame with cost categories as rows and years as columns + annual_cost_breakdown = pd.DataFrame(cost_breakdown).T + # Add row totals (sum across all years for each category) + annual_cost_breakdown["Total cost (USD)"] = annual_cost_breakdown.sum(axis=1) + # Add column totals (sum across all categories for each year) + annual_cost_breakdown.loc["Total cost per year (USD/year)"] = annual_cost_breakdown.sum( + axis=0 + ) + # Rename columns to be more readable (0, 1, 2... -> Year 0, Year 1, Year 2...) + new_colnames = {i: f"Year {i}" for i in annual_cost_breakdown.columns.to_list()} + annual_cost_breakdown = annual_cost_breakdown.rename(columns=new_colnames) + annual_cost_breakdown.to_csv(cost_fpath) diff --git a/h2integrate/finances/profast_financial.py b/h2integrate/finances/profast_base.py similarity index 67% rename from h2integrate/finances/profast_financial.py rename to h2integrate/finances/profast_base.py index 79a3c5ac7..9cbd11491 100644 --- a/h2integrate/finances/profast_financial.py +++ b/h2integrate/finances/profast_base.py @@ -1,5 +1,3 @@ -from pathlib import Path - import attrs import numpy as np import openmdao.api as om @@ -9,22 +7,14 @@ BaseConfig, attr_filter, attr_serializer, - dict_to_yaml_formatting, check_plant_config_and_profast_params, ) from h2integrate.core.dict_utils import update_defaults from h2integrate.core.validators import gt_zero, contains, gte_zero, range_val -from h2integrate.tools.profast_tools import ( - run_profast, - make_price_breakdown, - create_years_of_operation, - create_and_populate_profast, - format_profast_price_breakdown_per_year, -) -from h2integrate.core.inputs.validation import write_yaml -from h2integrate.tools.profast_reverse_tools import convert_pf_to_dict +from h2integrate.tools.profast_tools import create_years_of_operation, create_and_populate_profast +# Mapping between user-facing finance parameters and ProFAST internal parameter names finance_to_pf_param_mapper = { # "income tax rate": "total income tax rate", "debt equity ratio": "debt equity ratio of initial financing", @@ -39,21 +29,22 @@ def format_params_for_profast_config(param_dict): - """Replace spaces with underscores for top-level dictionary keys and replace - underscores with spaces for any embedded dictionaries. Create a dictionary that is - formatted for BasicProFASTParameterConfig. + """Format a parameter dictionary for BasicProFASTParameterConfig. + This function standardizes dictionary key names so that top-level keys + use underscores instead of spaces, while nested dictionary keys use spaces. Args: - param_dict (dict): dictionary of financing parameters + param_dict (dict): Input dictionary of financing parameters. Returns: - dict: financing parameters formatted for BasicProFASTParameterConfig + dict: Reformatted dictionary compatible with BasicProFASTParameterConfig. """ param_dict_reformatted = {} for k, v in param_dict.items(): - k_new = k.replace(" ", "_") + k_new = k.replace(" ", "_") # Standardize top-level keys if isinstance(v, dict): + # Convert nested dictionary keys to use spaces v_new = {vk.replace("_", " "): vv for vk, vv in v.items()} param_dict_reformatted[k_new] = v_new else: @@ -62,32 +53,30 @@ def format_params_for_profast_config(param_dict): def check_parameter_inputs(finance_params, plant_config): - """Check and format the input finance parameters. This method checks: + """Validate and format financing parameter inputs for ProFAST. - 1) for duplicated keys that only differ in formatting (spaces or underscores). - Such as 'analysis_start_year' and 'analysis start year'. Throws an error if found. - 2) two keys that map to the same parameter have differing values, - see `finance_to_pf_param_mapper`. Such as 'installation time' and - 'installation months'. Throws an error if values differ. - 3) parameters that are in the ProFAST format are reformatted to be compatible with - BasicProFASTParameterConfig + This function: + 1. Detects duplicated keys that differ only by spaces or underscores. + 2. Ensures that synonymous parameters (e.g., "installation time" and + "installation months") do not have conflicting values. + 3. Reformats the parameters for compatibility with ProFAST. Args: - finance_params (dict): `params` dictionary containing financing information. - plant_config (dict): plant configuration dictionary. + finance_params (dict): Financing parameters provided by the user. + plant_config (dict): Plant configuration dictionary. Raises: ValueError: If duplicated keys are input. ValueError: If two equivalent keys have different values. Returns: - dict: financing parameters formatted for BasicProFASTParameterConfig - validated financing parameters with consistent formatting. + dict: Validated and reformatted financing parameters for ProFAST. """ - # make consistent formatting + # make consistent formatting for keys fin_params = {k.replace("_", " "): v for k, v in finance_params.items()} - # check for duplicated entries (ex. 'analysis_start_year' and 'analysis start year') + # check for duplicated entries differing only by underscores/spaces + # (ex. 'analysis_start_year' and 'analysis start year') if len(fin_params) != len(finance_params): finance_keys = [k.replace("_", " ") for k, v in finance_params.items()] fin_keys = list(fin_params.keys()) @@ -101,6 +90,7 @@ def check_parameter_inputs(finance_params, plant_config): msg = f"Duplicate entries found in ProFastComp params. Duplicated entries are: {err_info}" raise ValueError(msg) + # Check for conflicts between nickname/realname pairs # check if duplicate entries were input, like "installation time" AND "installation months" for nickname, realname in finance_to_pf_param_mapper.items(): has_nickname = any(k == nickname for k, v in fin_params.items()) @@ -109,13 +99,13 @@ def check_parameter_inputs(finance_params, plant_config): if has_nickname and has_realname: check_plant_config_and_profast_params(fin_params, fin_params, nickname, realname) - # check for value mismatch + # Validate consistency between plant life and operating life if "operating life" in fin_params: check_plant_config_and_profast_params( plant_config["plant"], fin_params, "plant_life", "operating life" ) - # if profast params are in profast format + # Re-map ProFAST parameters back to finance-style keys if needed if any(k in list(finance_to_pf_param_mapper.values()) for k, v in fin_params.items()): pf_param_to_finance_mapper = {v: k for k, v in finance_to_pf_param_mapper.items()} pf_params = {} @@ -126,6 +116,7 @@ def check_parameter_inputs(finance_params, plant_config): pf_params[k] = v fin_params = dict(pf_params.items()) + # Final format for ProFAST configuration fin_params = format_params_for_profast_config(fin_params) fin_params.update({"plant_life": plant_config["plant"]["plant_life"]}) @@ -134,7 +125,11 @@ def check_parameter_inputs(finance_params, plant_config): @define class BasicProFASTParameterConfig(BaseConfig): - """Config of financing parameters for ProFAST. + """Configuration class for financial parameters used in ProFAST models. + + This class defines default financing parameters, including discount rate, + tax structure, inflation, and cost categories. Values are validated using + range and type constraints. Attributes: plant_life (int): operating life of plant in years @@ -180,6 +175,7 @@ class BasicProFASTParameterConfig(BaseConfig): one_time_cap_inct (dict, optional): investment tax credit. """ + # --- Primary finance parameters --- plant_life: int = field(converter=int, validator=gte_zero) analysis_start_year: int = field(converter=int, validator=range_val(1000, 4000)) installation_time: int = field(converter=int, validator=gte_zero) @@ -199,6 +195,7 @@ class BasicProFASTParameterConfig(BaseConfig): admin_expense: float = field(validator=range_val(0, 1)) + # --- Optional parameters --- non_depr_assets: float = field(default=0.0, validator=gte_zero) end_of_proj_sale_non_depr_assets: float = field(default=0.0, validator=gte_zero) @@ -209,11 +206,13 @@ class BasicProFASTParameterConfig(BaseConfig): credit_card_fees: float = field(default=0.0) demand_rampup: float = field(default=0.0, validator=gte_zero) + # --- Debt configuration --- debt_type: str = field( default="Revolving debt", validator=contains(["Revolving debt", "One time loan"]) ) loan_period_if_used: int = field(default=0, validator=gte_zero) + # --- Nested dictionaries (financial categories) --- commodity: dict = field( default={ "name": None, @@ -259,21 +258,25 @@ class BasicProFASTParameterConfig(BaseConfig): ) def as_dict(self) -> dict: - """Creates a JSON and YAML friendly dictionary that can be save for future reloading. + """Return a dictionary formatted for ProFAST initialization. + Converts the configuration to a ProFAST-compatible dictionary, replacing + underscores with spaces, applying inflation defaults, and mapping keys + to internal ProFAST parameter names. Returns: - dict: All key, value pairs required for class re-creation. + dict: Formatted parameter dictionary. """ + # Convert attrs object to serializable dict pf_params_init = attrs.asdict(self, filter=attr_filter, value_serializer=attr_serializer) - # rename keys to profast format + # Rename underscores to spaces for ProFAST compatibility pf_params = {k.replace("_", " "): v for k, v in pf_params_init.items()} - # update all instances of "escalation" with the general inflation rate + # Apply inflation rate defaults to escalation fields pf_params = update_defaults(pf_params, "escalation", self.inflation_rate) - # rename keys + # Remap finance keys to ProFAST names where applicable params = {} for keyname, vals in pf_params.copy().items(): if keyname in finance_to_pf_param_mapper: @@ -285,7 +288,10 @@ def as_dict(self) -> dict: @define class ProFASTDefaultCapitalItem(BaseConfig): - """Configuration class of default settings for ProFAST capital items. + """Default configuration for ProFAST capital cost items. + + Represents capital investment items such as equipment or infrastructure, + with associated cost, depreciation, and sales tax options. Attributes: depr_period (int): depreciation period in years if using MACRS depreciation. @@ -304,6 +310,14 @@ class ProFASTDefaultCapitalItem(BaseConfig): replacement_cost_percent: int | float = field(default=0.0, validator=range_val(0, 1)) def create_dict(self): + """Create a ProFAST-compatible dictionary of attributes. + + Excludes attributes not used by the ProFAST configuration file. + + Returns: + dict: Dictionary containing ProFAST-compatible fields. + """ + # Remove attributes not required by ProFAST input schema non_profast_attrs = ["replacement_cost_percent"] full_dict = self.as_dict() d = {k: v for k, v in full_dict.items() if k not in non_profast_attrs} @@ -312,7 +326,10 @@ def create_dict(self): @define class ProFASTDefaultFixedCost(BaseConfig): - """Configuration class of default settings for ProFAST fixed costs. + """Default configuration for ProFAST fixed operating costs. + + Represents recurring annual costs such as maintenance, rent, or insurance + that do not vary with production level. Attributes: escalation (float | int, optional): annual escalation of price. @@ -327,13 +344,21 @@ class ProFASTDefaultFixedCost(BaseConfig): usage: float | int = field(default=1.0) def create_dict(self): + """Return a dictionary representation for ProFAST. + + Returns: + dict: Dictionary of fixed cost attributes. + """ + # Convert attributes to standard dictionary return self.as_dict() @define class ProFASTDefaultVariableCost(BaseConfig): - """Configuration class of default settings for ProFAST variable costs. - The total cost is calculated as ``usage*cost``. + """Default configuration for ProFAST variable costs. + + Represents costs that scale with production or feedstock usage. + The total cost is calculated as ``usage * cost``. Attributes: escalation (float | int, optional): annual escalation of price. @@ -349,12 +374,51 @@ class ProFASTDefaultVariableCost(BaseConfig): usage: float | int = field(default=1.0) def create_dict(self): + """Return a dictionary representation for ProFAST. + + Returns: + dict: Dictionary of variable cost attributes. + """ + # Prepare dictionary for ProFAST configuration input + return self.as_dict() + + +@define +class ProFASTDefaultCoproduct(BaseConfig): + """Default configuration for ProFAST coproduct settings. + + Represents additional revenue sources or byproducts associated with + the primary process. The total value is calculated as ``usage * cost``. + + Attributes: + escalation (float | int, optional): annual escalation of price. + Defaults to 0. + unit (str): unit of the cost, only used for reporting. The cost should be input in + USD/unit of commodity. + usage (float, optional): Usage of feedstock per unit of commodity. + Defaults to 1.0. + """ + + escalation: float | int = field() + unit: str = field() + usage: float | int = field(default=1.0) + + def create_dict(self): + """Return a dictionary representation for ProFAST. + + Returns: + dict: Dictionary of coproduct attributes. + """ + # Prepare dictionary for ProFAST configuration input return self.as_dict() @define class ProFASTDefaultIncentive(BaseConfig): - """Configuration class of default settings for ProFAST production-based incentives. + """Default configuration for ProFAST production-based incentives. + + Represents financial incentives (e.g., tax credits or subsidies) + applied per unit of production over a defined period. Attributes: decay (float): rate of decay of incentive value. @@ -369,25 +433,40 @@ class ProFASTDefaultIncentive(BaseConfig): tax_credit: bool = field(default=True) def create_dict(self): + """Return a dictionary representation for ProFAST. + + Returns: + dict: Dictionary of incentive attributes. + """ + # Prepare dictionary for ProFAST configuration input return self.as_dict() -class ProFastComp(om.ExplicitComponent): +class ProFastBase(om.ExplicitComponent): """ - This component calculates the Levelized Cost of Commodity (LCO) for a user-defined set - of technologies and commodities, including hydrogen (LCOH), electricity (LCOE), - ammonia (LCOA), nitrogen (LCON), and CO2 (LCOC). Only the user-defined technologies specified - in the `tech_config` are included in the LCO stackup (or all if no specific technologies are - defined). + Base component for using the ProFAST financial model within OpenMDAO. + + This component aggregates capital, fixed, variable, and coproduct costs from + user-defined technologies to compute financial metrics using ProFAST. + + Reference: + ProFAST Documentation: + https://www.nrel.gov/hydrogen/profast-access + Attributes: - tech_config (dict): Dictionary specifying the technologies to include in the - LCO calculation. Only these technologies are considered in the stackup. - plant_config (dict): Plant configuration parameters, including financial and - operational settings. + tech_config (dict): Technology-specific model configurations included in the + financial calculation. + plant_config (dict): Plant configuration and financial parameter settings. driver_config (dict): Driver configuration parameters (not directly used in calculations). - commodity_type (str): The type of commodity for which the LCO is calculated. - Supported values are "hydrogen", "electricity", "ammonia", "nitrogen", and "co2". + commodity_type (str): Type of commodity analyzed. Supported: 'hydrogen', 'electricity', + 'ammonia', 'nitrogen', and 'co2'. + params (BasicProFASTParameterConfig): Financial parameters used in the ProFAST analysis. + capital_item_settings (ProFASTDefaultCapitalItem): Default capital cost parameters. + fixed_cost_settings (ProFASTDefaultFixedCost): Default fixed operating cost parameters. + variable_cost_settings (ProFASTDefaultVariableCost): Default variable operating cost + parameters. + coproduct_cost_settings (ProFASTDefaultCoproduct): Default coproduct cost parameters. Inputs: capex_adjusted_{tech} (float): Adjusted capital expenditure for each @@ -401,73 +480,46 @@ class ProFastComp(om.ExplicitComponent): co2_capture_kgpy (float): Total annual CO2 captured, in kg/year (only for commodity_type "co2"). - Outputs: - LCOx (float): Levelized Cost of commodity (where 'x' is the uppercase first letter - of the commodity). For example, LCOH if commodity_type is "hydrogen". - If commodity_type is "hydrogen", "ammonia", "nitrogen", or "co2", the units are USD/kg. - If the commodity type is "electricity", the units are USD/kWh. - wacc_ (float): weighted average cost of capital as a fraction. - crf_ (float): capital recovery factor as a fraction. - irr_ (float): internal rate of return as a fraction. - profit_index_ (float): - investor_payback_period_ (float): time until initial investment costs are - recovered in years. - price_ (float): first year price of commodity in same units as `LCOx` - Methods: initialize(): Declares component options. - setup(): Defines inputs and outputs based on user configuration and validates - required parameters. - compute(inputs, outputs): Assembles financial parameters, adds capital and fixed cost - items for user-defined technologies, runs the ProFAST financial model, - and sets the appropriate LCOx output. - - Notes: - - Only technologies specified by the user in `tech_config` are included in the LCO stackup. - - The component supports flexible configuration for different commodities - and technology mixes. - - Only includes fixed annual operating costs and capital costs at the moment. + setup(): Defines inputs/outputs and initializes ProFAST configuration. + populate_profast(inputs): Builds a ProFAST input dictionary based on user inputs. + compute(inputs, outputs, ...): Must be implemented in a subclass. """ def initialize(self): + """Declare OpenMDAO component options.""" self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) self.options.declare("tech_config", types=dict) self.options.declare("commodity_type", types=str) self.options.declare("description", types=str, default="") + def add_model_specific_outputs(self): + """Placeholder for subclass-defined outputs.""" + raise NotImplementedError("This method should be implemented in a subclass.") + def setup(self): + """Set up component inputs and outputs based on plant and technology configurations.""" + # Determine commodity units if self.options["commodity_type"] == "electricity": commodity_units = "kW*h/year" - lco_units = "USD/kW/h" + self.price_units = "USD/(kW*h)" else: commodity_units = "kg/year" - lco_units = "USD/kg" + self.price_units = "USD/kg" - LCO_base_str = f"LCO{self.options['commodity_type'][0].upper()}" - self.output_txt = self.options["commodity_type"].lower() - if self.options["description"] == "": - self.LCO_str = LCO_base_str - else: - desc_str = self.options["description"].strip().strip("_()-") - if desc_str == "": - self.LCO_str = LCO_base_str - else: - self.output_txt = f"{self.options['commodity_type'].lower()}_{desc_str}" - self.LCO_str = f"{LCO_base_str}_{desc_str}" - - self.add_output(self.LCO_str, val=0.0, units=lco_units) - self.outputs_to_units = { - "wacc": "percent", - "crf": "percent", - "irr": "percent", - "profit_index": "unitless", - "investor_payback_period": "yr", - "price": lco_units, - } - for output_var, units in self.outputs_to_units.items(): - self.add_output(f"{output_var}_{self.output_txt}", val=0.0, units=units) + # Construct output name based on commodity and optional description + # this is necessary to allow for financial subgroups + self.description = ( + self.options["description"].strip() if "description" in self.options else "" + ) + self.output_txt = f"{self.options['commodity_type'].lower()}_{self.description}" + + # Add model-specific outputs defined by subclass + self.add_model_specific_outputs() + # Add production input (CO2 capture or total commodity produced) if self.options["commodity_type"] == "co2": self.add_input("co2_capture_kgpy", val=0.0, units="kg/year") else: @@ -477,6 +529,7 @@ def setup(self): units=commodity_units, ) + # Add inputs for CapEx, OpEx, and variable OpEx for each technology plant_life = int(self.options["plant_config"]["plant"]["plant_life"]) tech_config = self.tech_config = self.options["tech_config"] for tech in tech_config: @@ -484,13 +537,13 @@ def setup(self): self.add_input(f"opex_adjusted_{tech}", val=0.0, units="USD/year") self.add_input(f"varopex_adjusted_{tech}", val=0.0, shape=plant_life, units="USD/year") + # Include electrolyzer replacement time if applicable if "electrolyzer" in tech_config: self.add_input("electrolyzer_time_until_replacement", units="h") + # Load plant configuration and financial parameters plant_config = self.options["plant_config"] - finance_params = plant_config["finance_parameters"]["model_inputs"]["params"] - fin_params = check_parameter_inputs(finance_params, plant_config) # initialize financial parameters @@ -514,9 +567,17 @@ def setup(self): "variable_costs", {} ) variable_cost_params.setdefault("escalation", self.params.inflation_rate) - variable_cost_params.setdefault("unit", lco_units.replace("USD", "$")) + variable_cost_params.setdefault("unit", self.price_units.replace("USD", "$")) self.variable_cost_settings = ProFASTDefaultVariableCost.from_dict(variable_cost_params) + # initialize default coproduct cost parameters (same as feedstocks) + coproduct_cost_params = plant_config["finance_parameters"]["model_inputs"].get( + "coproducts", {} + ) + coproduct_cost_params.setdefault("escalation", self.params.inflation_rate) + coproduct_cost_params.setdefault("unit", self.price_units.replace("USD", "$")) + self.coproduct_cost_settings = ProFASTDefaultCoproduct.from_dict(coproduct_cost_params) + # incentives - unused for now # incentive_params = plant_config["finance_parameters"]["model_inputs"].get( # "incentives", {} @@ -524,9 +585,21 @@ def setup(self): # incentive_params.setdefault("decay", -1 * self.params.inflation_rate) # self.incentive_params_settings = ProFASTDefaultIncentive.from_dict(incentive_params) - def compute(self, inputs, outputs): + def populate_profast(self, inputs): + """Populate and configure the ProFAST financial model for analysis. + + This is called during the `compute` method of the inheriting class. + + Args: + inputs (dict): OpenMDAO input values for technology CapEx, OpEx, and production levels. + + Returns: + ProFAST: A fully configured ProFAST financial model object ready for execution. + """ + # determine commodity units mass_commodities = ["hydrogen", "ammonia", "co2", "nitrogen", "methanol"] + # create years of operation list years_of_operation = create_years_of_operation( self.params.plant_life, self.params.analysis_start_year, @@ -540,6 +613,7 @@ def compute(self, inputs, outputs): {"unit": "kg" if self.options["commodity_type"] in mass_commodities else "kWh"} ) + # calculate capacity and total production based on commodity type if self.options["commodity_type"] != "co2": capacity = float(inputs[f"total_{self.options['commodity_type']}_produced"][0]) / 365.0 total_production = float(inputs[f"total_{self.options['commodity_type']}_produced"][0]) @@ -549,6 +623,7 @@ def compute(self, inputs, outputs): if capacity == 0.0: raise ValueError("Capacity cannot be zero") + # define profast parameters for capacity and utilization profast_params["capacity"] = capacity # TODO: update to actual daily capacity profast_params["long term utilization"] = 1 # TODO: update to capacity factor @@ -559,11 +634,13 @@ def compute(self, inputs, outputs): capital_items = {} fixed_costs = {} variable_costs = {} + coproduct_costs = {} # create default capital item and fixed cost entries capital_item_defaults = self.capital_item_settings.create_dict() fixed_cost_defaults = self.fixed_cost_settings.create_dict() variable_cost_defaults = self.variable_cost_settings.create_dict() + coproduct_cost_defaults = self.coproduct_cost_settings.create_dict() # loop through technologies and create cost entries for tech in self.tech_config: @@ -622,7 +699,9 @@ def compute(self, inputs, outputs): .get("variable_costs", {}) ) - # add CapEx cost to tech-specific variable cost entry + # add VarOpEx cost to tech-specific variable cost entry + + # if VarOpEx is positive, treat as a feedstock varopex_adjusted_tech = inputs[f"varopex_adjusted_{tech}"] if np.any(varopex_adjusted_tech) > 0: varopex_cost_per_unit_commodity = varopex_adjusted_tech / total_production @@ -634,51 +713,33 @@ def compute(self, inputs, outputs): tech_varopex_info.setdefault(var_cost_key, var_cost_val) variable_costs[tech] = tech_varopex_info + # if VarOpEx is negative, treat as a coproduct + else: + tech_coproduct_info = ( + self.tech_config[tech]["model_inputs"] + .get("financial_parameters", {}) + .get("coproducts", {}) + ) + # make it positive + coproduct_cost_per_unit_commodity = -1 * varopex_adjusted_tech / total_production + coproduct_dict = dict(zip(years_of_operation, coproduct_cost_per_unit_commodity)) + tech_coproduct_info.update({"cost": coproduct_dict}) + + # update any unset variable cost parameters with the default values + for coprod_cost_key, coprod_cost_val in coproduct_cost_defaults.items(): + tech_coproduct_info.setdefault(coprod_cost_key, coprod_cost_val) + coproduct_costs[tech] = tech_coproduct_info + # add capital costs and fixed costs to pf_dict pf_dict["capital_items"] = capital_items pf_dict["fixed_costs"] = fixed_costs pf_dict["feedstocks"] = variable_costs - # create ProFAST object + pf_dict["coproducts"] = coproduct_costs + # create ProFAST object pf = create_and_populate_profast(pf_dict) - # simulate ProFAST - sol, summary, price_breakdown = run_profast(pf) - - # Check whether to export profast object to .yaml file - save_results = self.options["plant_config"]["finance_parameters"]["model_inputs"].get( - "save_profast_results", False - ) - save_config = self.options["plant_config"]["finance_parameters"]["model_inputs"].get( - "save_profast_config", False - ) - if save_results or save_config: - pf_config_dict = convert_pf_to_dict(pf) - - output_dir = self.options["driver_config"]["general"]["folder_output"] - fdesc = self.options["plant_config"]["finance_parameters"]["model_inputs"].get( - "profast_output_description", "ProFastComp" - ) + return pf - fbasename = f"{fdesc}_{self.output_txt}" - - output_dir = Path(output_dir) - output_dir.mkdir(parents=True, exist_ok=True) - if save_config: - pf_config_dict = dict_to_yaml_formatting(pf_config_dict) - config_fpath = Path(output_dir) / f"{fbasename}_config.yaml" - write_yaml(pf_config_dict, config_fpath) - if save_results: - lco_breakdown, lco_check = make_price_breakdown(price_breakdown, pf_config_dict) - price_breakdown_formatted = format_profast_price_breakdown_per_year(price_breakdown) - pf_breakdown_fpath = Path(output_dir) / f"{fbasename}_profast_price_breakdown.csv" - lco_breakdown_fpath = Path(output_dir) / f"{fbasename}_LCO_breakdown.yaml" - price_breakdown_formatted.to_csv(pf_breakdown_fpath) - lco_breakdown = dict_to_yaml_formatting(lco_breakdown) - write_yaml(lco_breakdown, lco_breakdown_fpath) - - outputs[self.LCO_str] = sol["lco"] - for output_var in self.outputs_to_units.keys(): - val = sol[output_var.replace("_", " ")] - if isinstance(val, (np.ndarray, list, tuple)): # only for IRR - val = val[-1] - outputs[f"{output_var}_{self.output_txt}"] = val + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + """Placeholder for the OpenMDAO compute step.""" + raise NotImplementedError("This method should be implemented in a subclass.") diff --git a/h2integrate/finances/profast_lco.py b/h2integrate/finances/profast_lco.py new file mode 100644 index 000000000..e18a44530 --- /dev/null +++ b/h2integrate/finances/profast_lco.py @@ -0,0 +1,163 @@ +from pathlib import Path + +import numpy as np + +from h2integrate.core.utilities import dict_to_yaml_formatting +from h2integrate.tools.profast_tools import ( + run_profast, + make_price_breakdown, + format_profast_price_breakdown_per_year, +) +from h2integrate.finances.profast_base import ProFastBase +from h2integrate.core.inputs.validation import write_yaml +from h2integrate.tools.profast_reverse_tools import convert_pf_to_dict + + +class ProFastLCO(ProFastBase): + """Calculates the Levelized Cost of Commodity (LCO) using ProFAST for a given technology + configuration. + + This component estimates the levelized cost of user-defined commodities—such as hydrogen (LCOH), + electricity (LCOE), ammonia (LCOA), nitrogen (LCON), or CO₂ (LCOC)—based on the technologies + included in the configuration. It can output both scalar results (e.g., LCO, IRR, WACC) and + detailed cost breakdowns. Optionally, ProFAST inputs, configurations, and results can be + exported to YAML and CSV files for record-keeping or debugging. + + Attributes: + LCO_str (str): Name of the primary output variable (e.g., "LCOH"). + output_txt (str): Text label used for output naming, typically based on the commodity type. + outputs_to_units (dict): Mapping of output variable names to their physical units. + lco_units (str): Units of the LCO output, dependent on the commodity type (e.g., USD/kg or + USD/kWh). + + Outputs: + LCOx (float): Levelized cost of the commodity, where `x` corresponds to the first letter of + the commodity (e.g., LCOH for hydrogen). Units depend on commodity type. + wacc_ (float): Weighted average cost of capital, as a fraction. + crf_ (float): Capital recovery factor, as a fraction. + irr_ (float): Internal rate of return, as a fraction. + profit_index_ (float): Profitability index, dimensionless. + investor_payback_period_ (float): Time until the initial investment is + recovered (years). + price_ (float): First-year selling price of the commodity in the same units + as LCOx. + _breakdown (dict): Annualized breakdown of LCO costs by category. + + Methods: + add_model_specific_outputs(): + Creates model outputs for the LCO and associated financial metrics, including + cost breakdowns. + + compute(inputs, outputs, discrete_inputs, discrete_outputs): + Runs the ProFAST simulation, calculates the LCO and financial outputs, generates + breakdowns, and optionally exports configuration and results to files. + + Notes: + - The outputs and file exports are governed by user-specified finance parameters in the + plant configuration. + - The computation relies on `run_profast()` for core financial simulation and + `make_price_breakdown()` for cost disaggregation. + """ + + def add_model_specific_outputs(self): + """Define output variables specific to the selected commodity. + + Constructs standardized names for the Levelized Cost of Commodity (LCO) and its + associated financial metrics (WACC, CRF, IRR, etc.), based on the commodity type + and optional user-specified description. + + Returns: + None + """ + # Construct output name based on commodity and optional description + # this is necessary to allow for financial subgroups + desc = self.options["description"].strip().strip("_()-") + base = f"LCO{self.options['commodity_type'][0].upper()}" + self.LCO_str = f"{base}_{desc}" if desc else base + + self.add_output(self.LCO_str, val=0.0, units=self.price_units) + self.outputs_to_units = { + "wacc": "percent", + "crf": "percent", + "irr": "percent", + "profit_index": "unitless", + "investor_payback_period": "yr", + "price": self.price_units, + } + for output_var, units in self.outputs_to_units.items(): + self.add_output(f"{output_var}_{self.output_txt}", val=0.0, units=units) + + self.add_discrete_output(f"{self.LCO_str}_breakdown", val={}, desc="LCO Breakdown of costs") + return + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + """Run ProFAST simulation and populate outputs. + + Executes a ProFAST financial simulation using model inputs to calculate the + Levelized Cost of Commodity (LCO) and related economic metrics. Generates cost + breakdown dictionaries and optionally exports configuration and results to YAML + or CSV files, depending on user options. + + Args: + inputs (dict): Continuous model inputs. + outputs (dict): Continuous model outputs to be populated. + discrete_inputs (dict): Discrete model inputs (e.g., configuration flags). + discrete_outputs (dict): Discrete outputs for structured results. + + Returns: + None + """ + pf = self.populate_profast(inputs) + + # simulate ProFAST + sol, summary, price_breakdown = run_profast(pf) + + # populate outputs + # Output names based on naming convention for finance subgroups + outputs[self.LCO_str] = sol["lco"] + for output_var in self.outputs_to_units.keys(): + val = sol[output_var.replace("_", " ")] + if isinstance(val, (np.ndarray, list, tuple)): # only for IRR + # if len(val)>0: + val = val[-1] + outputs[f"{output_var}_{self.output_txt}"] = val + + # make dictionary of ProFAST config + pf_config_dict = convert_pf_to_dict(pf) + + # make LCO cost breakdown + lco_breakdown, lco_check = make_price_breakdown(price_breakdown, pf_config_dict) + discrete_outputs[f"{self.LCO_str}_breakdown"] = lco_breakdown + + # Check whether to export profast object to .yaml file + save_results = self.options["plant_config"]["finance_parameters"]["model_inputs"].get( + "save_profast_results", False + ) + save_config = self.options["plant_config"]["finance_parameters"]["model_inputs"].get( + "save_profast_config", False + ) + + if save_results or save_config: + output_dir = self.options["driver_config"]["general"]["folder_output"] + fdesc = self.options["plant_config"]["finance_parameters"]["model_inputs"].get( + "profast_output_description", "ProFastComp" + ) + + fbasename = f"{fdesc}_{self.output_txt}" + + output_dir = Path(output_dir) + output_dir.mkdir(parents=True, exist_ok=True) + + pf_config_dict = dict_to_yaml_formatting(pf_config_dict) + + if save_config: + config_fpath = Path(output_dir) / f"{fbasename}config.yaml" + write_yaml(pf_config_dict, config_fpath) + + if save_results: + price_breakdown_formatted = format_profast_price_breakdown_per_year(price_breakdown) + pf_breakdown_fpath = Path(output_dir) / f"{fbasename}_profast_price_breakdown.csv" + lco_breakdown_fpath = Path(output_dir) / f"{fbasename}_LCO_breakdown.yaml" + price_breakdown_formatted.to_csv(pf_breakdown_fpath) + lco_breakdown = dict_to_yaml_formatting(lco_breakdown) + write_yaml(lco_breakdown, lco_breakdown_fpath) diff --git a/h2integrate/finances/profast_npv.py b/h2integrate/finances/profast_npv.py new file mode 100644 index 000000000..148e490f0 --- /dev/null +++ b/h2integrate/finances/profast_npv.py @@ -0,0 +1,77 @@ +from h2integrate.finances.profast_base import ProFastBase + + +class ProFastNPV(ProFastBase): + """Calculates the Net Present Value (NPV) of a commodity using ProFAST. + + This component extends `ProFastBase` to compute the NPV based on the user-defined + commodity and its sell price. The NPV output reflects the present value of future + cash flows, given the financial configuration of the plant. + + Attributes: + output_txt (str): Label used for naming outputs based on commodity type. + lco_units (str): Units for pricing inputs (USD/kg or USD/kWh, depending on commodity). + + Outputs: + NPV_ (float): Net Present Value of the commodity in USD. + """ + + def add_model_specific_outputs(self): + """Define NPV output variable for the model. + + Creates an output variable named `NPV_` in USD. + + Returns: + None + """ + self.add_output( + f"NPV_{self.output_txt}", + val=0.0, + units="USD", + ) + + return + + def setup(self): + """Set up inputs for the NPV calculation. + + Retrieves the commodity sell price from the plant configuration and registers it + as an input for the component. Calls the base `setup()` method to initialize + other ProFAST inputs and outputs. + + Raises: + ValueError: If `commodity_sell_price` is not provided in the configuration. + + Returns: + None + """ + self.commodity_sell_price = self.options["plant_config"]["finance_parameters"][ + "model_inputs" + ].get("commodity_sell_price", None) + + if self.commodity_sell_price is None: + raise ValueError("commodity_sell_price is missing as an input") + + super().setup() + + self.add_input( + f"sell_price_{self.output_txt}", + val=self.commodity_sell_price, + units=self.price_units, + ) + + def compute(self, inputs, outputs): + """Compute the NPV of the commodity using ProFAST cash flows. + + Args: + inputs (dict): Model inputs, including `sell_price_`. + outputs (dict): Model outputs to populate with NPV results. + + Returns: + None + """ + pf = self.populate_profast(inputs) + + outputs[f"NPV_{self.output_txt}"] = pf.cash_flow( + price=inputs[f"sell_price_{self.output_txt}"][0] + ) diff --git a/h2integrate/core/test/test_finances.py b/h2integrate/finances/test/test_finances.py similarity index 98% rename from h2integrate/core/test/test_finances.py rename to h2integrate/finances/test/test_finances.py index 9e4944295..8c6ad251d 100644 --- a/h2integrate/core/test/test_finances.py +++ b/h2integrate/finances/test/test_finances.py @@ -5,8 +5,8 @@ import openmdao.api as om from pytest import approx +from h2integrate.finances.profast_lco import ProFastLCO from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml -from h2integrate.finances.profast_financial import ProFastComp examples_dir = Path(__file__).resolve().parent.parent.parent.parent / "examples/." @@ -74,7 +74,7 @@ def setUp(self): def test_electrolyzer_refurb_results(self): prob = om.Problem() - comp = ProFastComp( + comp = ProFastLCO( plant_config=self.plant_config, tech_config=self.tech_config, driver_config=self.driver_config, @@ -106,7 +106,7 @@ def test_modified_lcoe_calc(self): plant_config_filtered.update({"finance_parameters": finance_inputs}) # Run ProFastComp with loaded configs prob = om.Problem() - comp = ProFastComp( + comp = ProFastLCO( plant_config=plant_config_filtered, tech_config=tech_config["technologies"], driver_config=driver_config, @@ -149,7 +149,7 @@ def test_lcoe_with_selected_technologies(self): plant_config_filtered.update({"finance_parameters": finance_inputs}) prob = om.Problem() - comp = ProFastComp( + comp = ProFastLCO( plant_config=plant_config_filtered, tech_config=tech_config["technologies"], driver_config=driver_config, @@ -278,7 +278,7 @@ def test_profast_config_provided(): driver_config = {"general": {}} prob = om.Problem() - comp = ProFastComp( + comp = ProFastLCO( plant_config=plant_config, tech_config=tech_config, driver_config=driver_config, @@ -361,7 +361,7 @@ def test_parameter_validation_clashing_values(): driver_config = {"general": {}} prob = om.Problem() - comp = ProFastComp( + comp = ProFastLCO( plant_config=plant_config, tech_config=tech_config, driver_config=driver_config, @@ -376,7 +376,7 @@ def test_parameter_validation_clashing_values(): # check that it works for just operating life plant_config["finance_parameters"]["model_inputs"]["params"].pop("installation months") prob = om.Problem() - comp = ProFastComp( + comp = ProFastLCO( plant_config=plant_config, tech_config=tech_config, driver_config=driver_config, @@ -452,7 +452,7 @@ def test_parameter_validation_duplicate_parameters(): driver_config = {"general": {}} prob = om.Problem() - comp = ProFastComp( + comp = ProFastLCO( plant_config=plant_config, tech_config=tech_config, driver_config=driver_config, diff --git a/h2integrate/finances/test/test_numpy_financial_npv.py b/h2integrate/finances/test/test_numpy_financial_npv.py new file mode 100644 index 000000000..ff23ba7b6 --- /dev/null +++ b/h2integrate/finances/test/test_numpy_financial_npv.py @@ -0,0 +1,134 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.finances.numpy_financial_npv import NumpyFinancialNPV + + +@fixture +def npv_finance_inputs(): + npv_dict = { + "discount_rate": 0.09, + "commodity_sell_price": 0.04, + "save_cost_breakdown": False, + "save_npv_breakdown": False, + "cost_breakdown_file_description": False, + } + return npv_dict + + +@fixture +def fake_filtered_tech_config(): + tech_config = { + "wind": {"model_inputs": {}}, + "solar": {"model_inputs": {}}, + "battery": {"model_inputs": {}}, + "natural_gas": {"model_inputs": {}}, + } + return tech_config + + +@fixture +def fake_cost_dict(): + fake_costs = { + "capex_adjusted_wind": 950054634.1, + "opex_adjusted_wind": 21093892.68, + "varopex_adjusted_wind": [0.0] * 30, + "capex_adjusted_solar": 6561339.6, + "opex_adjusted_solar": 88372.77, + "varopex_adjusted_solar": [0.0] * 30, + "capex_adjusted_battery": 3402926, + "opex_adjusted_battery": 779.27, + "varopex_adjusted_battery": [0.0] * 30, + "capex_adjusted_natural_gas": 1170731708.0, + "opex_adjusted_natural_gas": 12783853.58, + "varopex_adjusted_natural_gas": [65458026.9] * 30, + } + return fake_costs + + +def test_simple_npv(npv_finance_inputs, fake_filtered_tech_config, fake_cost_dict, subtests): + mean_hourly_production = 500000.0 + prob = om.Problem() + plant_config = { + "plant": { + "plant_life": 30, + }, + "finance_parameters": {"model_inputs": npv_finance_inputs}, + } + pf = NumpyFinancialNPV( + driver_config={}, + plant_config=plant_config, + tech_config=fake_filtered_tech_config, + commodity_type="electricity", + description="no1", + ) + + prob.model.add_subsystem("npv", pf) + prob.setup() + prob.set_val("npv.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + for variable, cost in fake_cost_dict.items(): + units = "USD" if "capex" in variable else "USD/year" + prob.set_val(f"npv.{variable}", cost, units=units) + + prob.run_model() + + with subtests.test("Sell price"): + assert ( + pytest.approx( + prob.get_val("npv.sell_price_electricity_no1", units="USD/(kW*h)"), rel=1e-6 + ) + == npv_finance_inputs["commodity_sell_price"] + ) + + with subtests.test("NPV"): + assert ( + pytest.approx(prob.get_val("npv.NPV_electricity_no1", units="USD")[0], rel=1e-6) + == -1352263704.120 + ) + + +def test_simple_npv_positive( + npv_finance_inputs, fake_filtered_tech_config, fake_cost_dict, subtests +): + mean_hourly_production = 500000.0 + prob = om.Problem() + + # Increase commodity sell price to get positive NPV + npv_finance_inputs_positive = npv_finance_inputs.copy() + npv_finance_inputs_positive["commodity_sell_price"] = 0.15 + + plant_config = { + "plant": { + "plant_life": 30, + }, + "finance_parameters": {"model_inputs": npv_finance_inputs_positive}, + } + pf = NumpyFinancialNPV( + driver_config={}, + plant_config=plant_config, + tech_config=fake_filtered_tech_config, + commodity_type="electricity", + description="no1", + ) + + prob.model.add_subsystem("npv", pf) + prob.setup() + prob.set_val("npv.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + for variable, cost in fake_cost_dict.items(): + units = "USD" if "capex" in variable else "USD/year" + prob.set_val(f"npv.{variable}", cost, units=units) + + prob.run_model() + + with subtests.test("Sell price"): + assert ( + pytest.approx( + prob.get_val("npv.sell_price_electricity_no1", units="USD/(kW*h)"), rel=1e-6 + ) + == npv_finance_inputs_positive["commodity_sell_price"] + ) + + with subtests.test("NPV positive"): + npv_value = prob.get_val("npv.NPV_electricity_no1", units="USD")[0] + assert pytest.approx(npv_value, rel=1e-6) == 3597582813.8071656 diff --git a/h2integrate/finances/test/test_profast_finance.py b/h2integrate/finances/test/test_profast_finance.py new file mode 100644 index 000000000..d65491b99 --- /dev/null +++ b/h2integrate/finances/test/test_profast_finance.py @@ -0,0 +1,120 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.finances.profast_lco import ProFastLCO + + +@fixture +def profast_inputs_no1(): + params = { + "analysis_start_year": 2032, + "installation_time": 36, + "inflation_rate": 0.0, + "discount_rate": 0.0948, + "debt_equity_ratio": 1.72, + "property_tax_and_insurance": 0.015, + "total_income_tax_rate": 0.2574, + "capital_gains_tax_rate": 0.15, + "sales_tax_rate": 0.00, + "debt_interest_rate": 0.046, + "debt_type": "Revolving debt", + "loan_period_if_used": 0, + "cash_onhand_months": 1, + "admin_expense": 0.00, + } + cap_items = {"depr_type": "MACRS", "depr_period": 5, "refurb": [0.0]} + model_inputs = {"params": params, "capital_items": cap_items} + + return model_inputs + + +@fixture +def fake_filtered_tech_config(): + tech_config = { + "wind": {"model_inputs": {}}, + "solar": {"model_inputs": {}}, + "battery": {"model_inputs": {}}, + "natural_gas": {"model_inputs": {}}, + } + return tech_config + + +@fixture +def fake_cost_dict(): + fake_costs = { + "capex_adjusted_wind": 950054634.1, + "opex_adjusted_wind": 21093892.68, + "varopex_adjusted_wind": [0.0] * 30, + "capex_adjusted_solar": 6561339.6, + "opex_adjusted_solar": 88372.77, + "varopex_adjusted_solar": [0.0] * 30, + "capex_adjusted_battery": 3402926, + "opex_adjusted_battery": 779.27, + "varopex_adjusted_battery": [0.0] * 30, + "capex_adjusted_natural_gas": 1170731708.0, + "opex_adjusted_natural_gas": 12783853.58, + "varopex_adjusted_natural_gas": [65458026.9] * 30, + } + return fake_costs + + +def test_profast_comp(profast_inputs_no1, fake_filtered_tech_config, fake_cost_dict, subtests): + mean_hourly_production = 500000.0 + prob = om.Problem() + plant_config = { + "plant": { + "plant_life": 30, + }, + "finance_parameters": {"model_inputs": profast_inputs_no1}, + } + pf = ProFastLCO( + driver_config={}, + plant_config=plant_config, + tech_config=fake_filtered_tech_config, + commodity_type="electricity", + description="no1", + ) + prob.model.add_subsystem("pf", pf) + prob.setup() + prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + for variable, cost in fake_cost_dict.items(): + units = "USD" if "capex" in variable else "USD/year" + prob.set_val(f"pf.{variable}", cost, units=units) + + prob.run_model() + + lcoe = prob.get_val("pf.LCOE_no1", units="USD/(MW*h)") + price = prob.get_val("pf.price_electricity_no1", units="USD/(MW*h)") + + wacc = prob.get_val("pf.wacc_electricity_no1", units="percent") + crf = prob.get_val("pf.crf_electricity_no1", units="percent") + profit_index = prob.get_val("pf.profit_index_electricity_no1", units="unitless") + irr = prob.get_val("pf.irr_electricity_no1", units="percent") + ipp = prob.get_val("pf.investor_payback_period_electricity_no1", units="yr") + + lcoe_breakdown = prob.get_val("pf.LCOE_no1_breakdown") + + with subtests.test("LCOE"): + assert pytest.approx(lcoe[0], rel=1e-6) == 63.8181779 + + with subtests.test("WACC"): + assert pytest.approx(wacc[0], rel=1e-6) == 0.056453864 + + with subtests.test("CRF"): + assert pytest.approx(crf[0], rel=1e-6) == 0.0674704169 + + with subtests.test("Profit Index"): + assert pytest.approx(profit_index[0], rel=1e-6) == 2.12026237778 + + with subtests.test("IRR"): + assert pytest.approx(irr[0], rel=1e-6) == 0.0948 + + with subtests.test("Investor payback period"): + assert pytest.approx(ipp[0], rel=1e-6) == 8 + + with subtests.test("LCOE == price"): + assert pytest.approx(lcoe, rel=1e-6) == price + + with subtests.test("LCOE breakdown total"): + assert pytest.approx(lcoe_breakdown["LCOE: Total ($/kWh)"] * 1e3, rel=1e-6) == lcoe diff --git a/h2integrate/finances/test/test_profast_npv.py b/h2integrate/finances/test/test_profast_npv.py new file mode 100644 index 000000000..f18cf577d --- /dev/null +++ b/h2integrate/finances/test/test_profast_npv.py @@ -0,0 +1,256 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.finances.profast_npv import ProFastNPV + + +@fixture +def profast_inputs_no1(): + params = { + "analysis_start_year": 2032, + "installation_time": 36, + "inflation_rate": 0.0, + "discount_rate": 0.0948, + "debt_equity_ratio": 1.72, + "property_tax_and_insurance": 0.015, + "total_income_tax_rate": 0.2574, + "capital_gains_tax_rate": 0.15, + "sales_tax_rate": 0.00, + "debt_interest_rate": 0.046, + "debt_type": "Revolving debt", + "loan_period_if_used": 0, + "cash_onhand_months": 1, + "admin_expense": 0.00, + } + cap_items = {"depr_type": "MACRS", "depr_period": 5, "refurb": [0.0]} + model_inputs = { + "commodity_sell_price": 0.04, # USD/kWh for electricity + "params": params, + "capital_items": cap_items, + } + + return model_inputs + + +@fixture +def profast_inputs_no2(): + params = { + "analysis_start_year": 2032, + "installation_time": 36, + "inflation_rate": 0.0, + "discount_rate": 0.0615, + "debt_equity_ratio": 2.82, + "property_tax_and_insurance": 0.015, + "total_income_tax_rate": 0.2574, + "capital_gains_tax_rate": 0.15, + "sales_tax_rate": 0.00, + "debt_interest_rate": 0.0439, + "debt_type": "Revolving debt", + "loan_period_if_used": 0, + "cash_onhand_months": 1, + "admin_expense": 0.00, + } + cap_items = {"depr_type": "MACRS", "depr_period": 5, "refurb": [0.0]} + + model_inputs = { + "commodity_sell_price": 0.07, # USD/kWh for electricity + "params": params, + "capital_items": cap_items, + } + + return model_inputs + + +@fixture +def fake_filtered_tech_config(): + tech_config = { + "wind": {"model_inputs": {}}, + "solar": {"model_inputs": {}}, + "battery": {"model_inputs": {}}, + "natural_gas": {"model_inputs": {}}, + } + return tech_config + + +@fixture +def fake_cost_dict(): + fake_costs = { + "capex_adjusted_wind": 950054634.1, + "opex_adjusted_wind": 21093892.68, + "varopex_adjusted_wind": [0.0] * 30, + "capex_adjusted_solar": 6561339.6, + "opex_adjusted_solar": 88372.77, + "varopex_adjusted_solar": [0.0] * 30, + "capex_adjusted_battery": 3402926, + "opex_adjusted_battery": 779.27, + "varopex_adjusted_battery": [0.0] * 30, + "capex_adjusted_natural_gas": 1170731708.0, + "opex_adjusted_natural_gas": 12783853.58, + "varopex_adjusted_natural_gas": [65458026.9] * 30, + } + return fake_costs + + +def test_profast_npv_no1(profast_inputs_no1, fake_filtered_tech_config, fake_cost_dict, subtests): + mean_hourly_production = 500000.0 + prob = om.Problem() + plant_config = { + "plant": { + "plant_life": 30, + }, + "finance_parameters": {"model_inputs": profast_inputs_no1}, + } + pf = ProFastNPV( + driver_config={}, + plant_config=plant_config, + tech_config=fake_filtered_tech_config, + commodity_type="electricity", + description="no1", + ) + prob.model.add_subsystem("pf", pf) + prob.setup() + prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + for variable, cost in fake_cost_dict.items(): + units = "USD" if "capex" in variable else "USD/year" + prob.set_val(f"pf.{variable}", cost, units=units) + + prob.run_model() + + with subtests.test("Sell price"): + assert ( + pytest.approx( + prob.get_val("pf.sell_price_electricity_no1", units="USD/(kW*h)"), rel=1e-6 + ) + == profast_inputs_no1["commodity_sell_price"] + ) + + with subtests.test("NPV"): + assert ( + pytest.approx(prob.get_val("pf.NPV_electricity_no1", units="USD")[0], rel=1e-6) + == -580179388.883 + ) + + +def test_profast_npv_no1_change_sell_price( + profast_inputs_no1, fake_filtered_tech_config, fake_cost_dict, subtests +): + mean_hourly_production = 500000.0 + prob = om.Problem() + plant_config = { + "plant": { + "plant_life": 30, + }, + "finance_parameters": {"model_inputs": profast_inputs_no1}, + } + pf = ProFastNPV( + driver_config={}, + plant_config=plant_config, + tech_config=fake_filtered_tech_config, + commodity_type="electricity", + description="no1", + ) + prob.model.add_subsystem("pf", pf) + + pf = ProFastNPV( + driver_config={}, + plant_config=plant_config, + tech_config=fake_filtered_tech_config, + commodity_type="electricity", + description="no1_expensive", + ) + + prob.model.add_subsystem("pf2", pf) + prob.setup() + # set inputs for 'pf' with commodity sell price of 0.04 USD/(kW*h) + prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + for variable, cost in fake_cost_dict.items(): + units = "USD" if "capex" in variable else "USD/year" + prob.set_val(f"pf.{variable}", cost, units=units) + + # set inputs for 'pf2' with commodity sell price of 0.07 USD/(kW*h) + new_sell_price = 0.07 + prob.set_val("pf2.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + prob.set_val("pf2.sell_price_electricity_no1_expensive", new_sell_price, units="USD/(kW*h)") + for variable, cost in fake_cost_dict.items(): + units = "USD" if "capex" in variable else "USD/year" + prob.set_val(f"pf2.{variable}", cost, units=units) + + prob.run_model() + + with subtests.test("Sell price for pf"): + assert ( + pytest.approx( + prob.get_val("pf.sell_price_electricity_no1", units="USD/(kW*h)"), rel=1e-6 + ) + == profast_inputs_no1["commodity_sell_price"] + ) + + with subtests.test("NPV with sell price of 0.04 USD/(kW*h)"): + assert ( + pytest.approx(prob.get_val("pf.NPV_electricity_no1", units="USD")[0], rel=1e-6) + == -580179388.883 + ) + + with subtests.test("Sell price for pf2"): + assert ( + pytest.approx( + prob.get_val("pf2.sell_price_electricity_no1_expensive", units="USD/(kW*h)"), + rel=1e-6, + ) + == new_sell_price + ) + + with subtests.test("NPV is higher with higher commodity sell price"): + assert ( + prob.get_val("pf2.NPV_electricity_no1_expensive", units="USD") + > prob.get_val("pf.NPV_electricity_no1", units="USD")[0] + ) + + with subtests.test("NPV with sell price of 0.07 USD/(kW*h)"): + assert ( + pytest.approx( + prob.get_val("pf2.NPV_electricity_no1_expensive", units="USD")[0], rel=1e-6 + ) + == 150581030.887 + ) + + +def test_profast_npv_no2(profast_inputs_no2, fake_filtered_tech_config, fake_cost_dict, subtests): + mean_hourly_production = 500000.0 + prob = om.Problem() + plant_config = { + "plant": { + "plant_life": 30, + }, + "finance_parameters": {"model_inputs": profast_inputs_no2}, + } + pf = ProFastNPV( + driver_config={}, + plant_config=plant_config, + tech_config=fake_filtered_tech_config, + commodity_type="electricity", + description="no2", + ) + prob.model.add_subsystem("pf", pf) + prob.setup() + prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + for variable, cost in fake_cost_dict.items(): + units = "USD" if "capex" in variable else "USD/year" + prob.set_val(f"pf.{variable}", cost, units=units) + + prob.run_model() + + with subtests.test("Sell price"): + assert ( + pytest.approx( + prob.get_val("pf.sell_price_electricity_no2", units="USD/(kW*h)"), rel=1e-6 + ) + == profast_inputs_no2["commodity_sell_price"] + ) + + with subtests.test("NPV"): + assert ( + pytest.approx(prob.get_val("pf.NPV_electricity_no2", units="USD")[0], rel=1e-6) + == 611288384.412 + ) diff --git a/h2integrate/tools/profast_tools.py b/h2integrate/tools/profast_tools.py index b62481a8d..4c01cda10 100644 --- a/h2integrate/tools/profast_tools.py +++ b/h2integrate/tools/profast_tools.py @@ -115,21 +115,28 @@ def make_price_breakdown(price_breakdown, pf_config): price_breakdown_feedstocks = {} price_breakdown_capex = {} price_breakdown_fixed_cost = {} + price_breakdown_coproducts = {} full_price_breakdown = {} + lco_str = "LCO{}".format(pf_config["params"]["commodity"]["name"][0].upper()) lco_units = "$/{}".format(pf_config["params"]["commodity"]["unit"]) config_keys = list(pf_config.keys()) + + operating_expenses = price_breakdown[price_breakdown["Type"] == "Operating expenses"] + cash_outflow_prices = price_breakdown[price_breakdown["Type"] == "Financing cash outflow"] + operating_revenue = price_breakdown[price_breakdown["Type"] == "Operating revenue"] + if "capital_items" in config_keys: capital_items = pf_config["capital_items"] total_price_capex = 0 capex_fraction = {} for item in capital_items: - total_price_capex += price_breakdown.loc[ - price_breakdown["Name"] == item, "NPV" + total_price_capex += cash_outflow_prices.loc[ + cash_outflow_prices["Name"] == item, "NPV" ].tolist()[0] for item in capital_items: capex_fraction[item] = ( - price_breakdown.loc[price_breakdown["Name"] == item, "NPV"].tolist()[0] + cash_outflow_prices.loc[cash_outflow_prices["Name"] == item, "NPV"].tolist()[0] / total_price_capex ) cap_expense = ( @@ -153,33 +160,85 @@ def make_price_breakdown(price_breakdown, pf_config): ) if "capital_items" in config_keys: + # capital_items are of type "Financing cash outflow" capital_items = pf_config["capital_items"] for item in capital_items: - key_name = f"{lco_str}: {item} ({lco_units})" + key_name = f"{lco_str}: {item} CapEx ({lco_units})" + + # Add the CapEx cost in lco_units to the capex breakdown price_breakdown_capex[key_name] = ( - price_breakdown.loc[price_breakdown["Name"] == item, "NPV"].tolist()[0] + cash_outflow_prices.loc[cash_outflow_prices["Name"] == item, "NPV"].tolist()[0] + cap_expense * capex_fraction[item] ) + + # Remove the capital item from the cash outflow prices + i_drop = cash_outflow_prices.loc[ + cash_outflow_prices["Name"] == item, "NPV" + ].index.tolist()[0] + cash_outflow_prices = cash_outflow_prices.drop(labels=i_drop, axis=0) + + # add the capex breakdown to the full price breakdown full_price_breakdown.update(price_breakdown_capex) if "fixed_costs" in config_keys: + # fixed_costs are of type "Operating expenses" fixed_items = pf_config["fixed_costs"] for item in fixed_items: - key_name = f"{lco_str}: {item} ({lco_units})" - price_breakdown_fixed_cost[key_name] = price_breakdown.loc[ - price_breakdown["Name"] == item, "NPV" + key_name = f"{lco_str}: {item} OpEx ({lco_units})" + + # Add the fixed cost in lco_units to the fixed cost breakdown + price_breakdown_fixed_cost[key_name] = operating_expenses.loc[ + operating_expenses["Name"] == item, "NPV" ].tolist()[0] + + # Remove the fixed cost from the cash outflow prices + i_drop = operating_expenses.loc[ + operating_expenses["Name"] == item, "NPV" + ].index.tolist()[0] + operating_expenses = operating_expenses.drop(labels=i_drop, axis=0) + + # add the fixed cost breakdown to the full price breakdown full_price_breakdown.update(price_breakdown_fixed_cost) if "feedstocks" in config_keys: + # feedstocks are of type "Operating expenses" feedstock_items = pf_config["feedstocks"] for item in feedstock_items: - key_name = f"{lco_str}: {item} ({lco_units})" - price_breakdown_feedstocks[key_name] = price_breakdown.loc[ - price_breakdown["Name"] == item, "NPV" + key_name = f"{lco_str}: {item} Feedstock ({lco_units})" + + # Add the feedstock cost in lco_units to the feedstock breakdown + price_breakdown_feedstocks[key_name] = operating_expenses.loc[ + operating_expenses["Name"] == item, "NPV" ].tolist()[0] + + # Remove the feedstock cost from the cash outflow prices + i_drop = operating_expenses.loc[ + operating_expenses["Name"] == item, "NPV" + ].index.tolist()[0] + operating_expenses = operating_expenses.drop(labels=i_drop, axis=0) + + # add the feedstock cost breakdown to the full price breakdown full_price_breakdown.update(price_breakdown_feedstocks) + if "coproducts" in config_keys: + # coproducts are of type "Operating revenue" + coproduct_items = pf_config["coproducts"] + for item in coproduct_items: + key_name = f"{lco_str}: {item} Coproduct ({lco_units})" + coproduct_price = operating_revenue.loc[ + operating_revenue["Name"] == item, "NPV" + ].tolist()[0] + + # Add the coproduct cost in lco_units to the coproduct breakdown + if coproduct_price > 0: + # multiple by -1 since coproducts are revenue + price_breakdown_coproducts[key_name] = -1 * coproduct_price + else: + price_breakdown_coproducts[key_name] = coproduct_price + + # add the coproduct cost breakdown to the full price breakdown + full_price_breakdown.update(price_breakdown_coproducts) + price_breakdown_taxes = ( price_breakdown.loc[price_breakdown["Name"] == "Income taxes payable", "NPV"].tolist()[0] - price_breakdown.loc[price_breakdown["Name"] == "Monetized tax losses", "NPV"].tolist()[0] diff --git a/h2integrate/tools/test/profast_config.yaml b/h2integrate/tools/test/profast_config.yaml new file mode 100644 index 000000000..79917e800 --- /dev/null +++ b/h2integrate/tools/test/profast_config.yaml @@ -0,0 +1,119 @@ +params: + capacity: 12000000.0 + long term utilization: 1 + demand rampup: 0.0 + analysis start year: 2032 + operating life: 30 + installation months: 36 + TOPC: {unit price: 0.0, decay: 0.0, sunset years: 0, support utilization: 0.0} + commodity: {name: electricity, unit: kWh, initial price: 100, escalation: 0.0} + annual operating incentive: {value: 0.0, decay: 0.0, sunset years: 0, taxable: true} + incidental revenue: {value: 0.0, escalation: 0.0} + credit card fees: 0.0 + sales tax: 0.0 + road tax: {value: 0.0, escalation: 0.0} + labor: {value: 0.0, rate: 0.0, escalation: 0.0} + maintenance: {value: 0.0, escalation: 0.0} + rent: {value: 0.0, escalation: 0.0} + license and permit: {value: 0.0, escalation: 0.0} + non depr assets: 0.0 + end of proj sale non depr assets: 0.0 + installation cost: {value: 0.0, depr type: Straight line, depr period: 4, depreciable: false} + one time cap inct: {value: 0.0, depr type: MACRS, depr period: 3, depreciable: false} + property tax and insurance: 0.015 + admin expense: 0.0 + tax loss carry forward years: 0 + capital gains tax rate: 0.15 + tax losses monetized: true + sell undepreciated cap: true + loan period if used: 0 + debt equity ratio of initial financing: 2.82 + debt interest rate: 0.0439 + debt type: Revolving debt + total income tax rate: 0.2574 + cash onhand: 1 + general inflation rate: 0.0 + leverage after tax nominal discount rate: 0.0615 +feedstocks: + ng_feedstock: + name: ng_feedstock + usage: 1.0 + unit: $/kW/h + cost: {'2035': 0.006996177517553415, '2036': 0.006996177517553415, '2037': 0.006996177517553415, '2038': 0.006996177517553415, '2039': 0.006996177517553415, '2040': 0.006996177517553415, '2041': 0.006996177517553415, '2042': 0.006996177517553415, '2043': 0.006996177517553415, '2044': 0.006996177517553415, '2045': 0.006996177517553415, '2046': 0.006996177517553415, '2047': 0.006996177517553415, '2048': 0.006996177517553415, '2049': 0.006996177517553415, '2050': 0.006996177517553415, '2051': 0.006996177517553415, '2052': 0.006996177517553415, '2053': 0.006996177517553415, '2054': 0.006996177517553415, '2055': 0.006996177517553415, '2056': 0.006996177517553415, '2057': 0.006996177517553415, '2058': 0.006996177517553415, '2059': 0.006996177517553415, '2060': 0.006996177517553415, '2061': 0.006996177517553415, '2062': 0.006996177517553415, '2063': 0.006996177517553415, '2064': 0.006996177517553415} + escalation: 0.0 +capital_items: + battery: + name: battery + cost: 3402926.829268293 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + grid_selling: + name: grid_selling + cost: 0.0 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + natural_gas_plant: + name: natural_gas_plant + cost: 1170731707.3170733 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + ng_feedstock: + name: ng_feedstock + cost: 0.0 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + solar: + name: solar + cost: 439609756.097561 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] + wind: + name: wind + cost: 1455588292.682927 + depr_type: MACRS + depr_period: 5 + refurb: [0.0] +fixed_costs: + battery: {name: battery, usage: 1.0, unit: $/year, cost: 779.2702439024391, escalation: 0.0} + grid_selling: {name: grid_selling, usage: 1.0, unit: $/year, cost: 0.0, escalation: 0.0} + natural_gas_plant: {name: natural_gas_plant, usage: 1.0, unit: $/year, cost: 9129065.673328334, escalation: 0.0} + ng_feedstock: {name: ng_feedstock, usage: 1.0, unit: $/year, cost: 0.0, escalation: 0.0} + solar: {name: solar, usage: 1.0, unit: $/year, cost: 5920975.609756098, escalation: 0.0} + wind: {name: wind, usage: 1.0, unit: $/year, cost: 32318165.853658542, escalation: 0.0} +incentives: {} +coproducts: + battery: + name: battery + usage: 1.0 + unit: $/kW/h + cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} + escalation: 0.0 + grid_selling: + name: grid_selling + usage: 1.0 + unit: $/kW/h + cost: {'2035': 0.014281829543690798, '2036': 0.014281829543690798, '2037': 0.014281829543690798, '2038': 0.014281829543690798, '2039': 0.014281829543690798, '2040': 0.014281829543690798, '2041': 0.014281829543690798, '2042': 0.014281829543690798, '2043': 0.014281829543690798, '2044': 0.014281829543690798, '2045': 0.014281829543690798, '2046': 0.014281829543690798, '2047': 0.014281829543690798, '2048': 0.014281829543690798, '2049': 0.014281829543690798, '2050': 0.014281829543690798, '2051': 0.014281829543690798, '2052': 0.014281829543690798, '2053': 0.014281829543690798, '2054': 0.014281829543690798, '2055': 0.014281829543690798, '2056': 0.014281829543690798, '2057': 0.014281829543690798, '2058': 0.014281829543690798, '2059': 0.014281829543690798, '2060': 0.014281829543690798, '2061': 0.014281829543690798, '2062': 0.014281829543690798, '2063': 0.014281829543690798, '2064': 0.014281829543690798} + escalation: 0.0 + natural_gas_plant: + name: natural_gas_plant + usage: 1.0 + unit: $/kW/h + cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} + escalation: 0.0 + solar: + name: solar + usage: 1.0 + unit: $/kW/h + cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} + escalation: 0.0 + wind: + name: wind + usage: 1.0 + unit: $/kW/h + cost: {'2035': -0.0, '2036': -0.0, '2037': -0.0, '2038': -0.0, '2039': -0.0, '2040': -0.0, '2041': -0.0, '2042': -0.0, '2043': -0.0, '2044': -0.0, '2045': -0.0, '2046': -0.0, '2047': -0.0, '2048': -0.0, '2049': -0.0, '2050': -0.0, '2051': -0.0, '2052': -0.0, '2053': -0.0, '2054': -0.0, '2055': -0.0, '2056': -0.0, '2057': -0.0, '2058': -0.0, '2059': -0.0, '2060': -0.0, '2061': -0.0, '2062': -0.0, '2063': -0.0, '2064': -0.0} + escalation: 0.0 diff --git a/h2integrate/tools/test/test_profast_tools.py b/h2integrate/tools/test/test_profast_tools.py new file mode 100644 index 000000000..3f4f92d0f --- /dev/null +++ b/h2integrate/tools/test/test_profast_tools.py @@ -0,0 +1,40 @@ +from pathlib import Path + +import pytest +from pytest import fixture +from hopp.utilities.utilities import load_yaml + +from h2integrate.tools.profast_tools import ( + run_profast, + make_price_breakdown, + create_and_populate_profast, +) +from h2integrate.tools.profast_reverse_tools import convert_pf_to_dict + + +@fixture +def profast_config(): + config_fpath = Path(__file__).parent / "profast_config.yaml" + pf_config = load_yaml(config_fpath) + + return pf_config + + +def test_lco_breakdown(profast_config, subtests): + pf = create_and_populate_profast(profast_config) + sol, summary, price_breakdown = run_profast(pf) + full_price_breakdown, lco_check = make_price_breakdown(price_breakdown, profast_config) + + lcoe_initial = float(sol["price"] * 1e3) + + lco_from_breakdown = lco_check * 1e3 + with subtests.test("Breakdown LCOE matches actual LCOE"): + assert pytest.approx(lco_from_breakdown, rel=1e-6) == lcoe_initial + + with subtests.test( + "Breakdown LCOE with config created from profast object matches actual LCOE" + ): + pf_config_dict = convert_pf_to_dict(pf) + full_price_breakdown, lco_check = make_price_breakdown(price_breakdown, pf_config_dict) + + assert pytest.approx(lco_check * 1e3, rel=1e-6) == lcoe_initial diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index 4b483c5bb..0235f7416 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -467,7 +467,7 @@ def test_hybrid_energy_plant_example(subtests): # Subtests for checking specific values with subtests.test("Check LCOE"): - assert model.prob.get_val("finance_subgroup_default.LCOE", units="USD/MW/h")[0] < 83.2123 + assert model.prob.get_val("finance_subgroup_default.LCOE", units="USD/(MW*h)")[0] < 83.2123 def test_asu_example(subtests): @@ -507,7 +507,7 @@ def test_hydrogen_dispatch_example(subtests): with subtests.test("Check LCOE"): assert ( pytest.approx( - model.prob.get_val("finance_subgroup_electricity.LCOE", units="USD/MW/h")[0], + model.prob.get_val("finance_subgroup_electricity.LCOE", units="USD/(MW*h)")[0], rel=1e-5, ) == 59.0962072084844 @@ -689,7 +689,7 @@ def test_wind_solar_electrolyzer_example(subtests): with subtests.test("Check LCOE"): assert ( pytest.approx( - model.prob.get_val("finance_subgroup_electricity.LCOE", units="USD/MW/h")[0], + model.prob.get_val("finance_subgroup_electricity.LCOE", units="USD/(MW*h)")[0], rel=1e-5, ) == 53.9306558 @@ -726,7 +726,7 @@ def test_electrolyzer_om_example(subtests): model.run() - lcoe = model.prob.get_val("finance_subgroup_electricity.LCOE", units="USD/MW/h")[0] + lcoe = model.prob.get_val("finance_subgroup_electricity.LCOE", units="USD/(MW*h)")[0] lcoh_with_lcoh_finance = model.prob.get_val( "finance_subgroup_hydrogen.LCOH_lcoh_financials", units="USD/kg" )[0] @@ -751,10 +751,10 @@ def test_wombat_electrolyzer_example(subtests): model.run() lcoe_with_profast_model = model.prob.get_val( - "finance_subgroup_electricity_profast.LCOE", units="USD/MW/h" + "finance_subgroup_electricity_profast.LCOE", units="USD/(MW*h)" )[0] lcoe_with_custom_model = model.prob.get_val( - "finance_subgroup_electricity_custom.LCOE", units="USD/MW/h" + "finance_subgroup_electricity_custom.LCOE", units="USD/(MW*h)" )[0] lcoh_with_custom_model = model.prob.get_val( @@ -894,9 +894,23 @@ def test_simple_dispatch_example(subtests): # Subtest for LCOE with subtests.test("Check LCOE value"): - lcoe = model.prob.get_val("finance_subgroup_electricity.LCOE")[0] + lcoe = model.prob.get_val("finance_subgroup_electricity.LCOE_all_electricity_profast")[0] assert pytest.approx(lcoe, rel=1e-6) == 0.07801723344476236 + # Subtest for NPV + with subtests.test("Check NPV value"): + npv = model.prob.get_val( + "finance_subgroup_electricity.NPV_electricity_all_electricity_npv" + )[0] + assert pytest.approx(npv, rel=1e-6) == 3791194.71 + + # Subtest for ProFAST NPV + with subtests.test("Check NPV value"): + npv = model.prob.get_val( + "finance_subgroup_electricity.NPV_electricity_all_electricity_profast_npv" + )[0] + assert pytest.approx(npv, rel=1e-6) == 7518969.18 + # Subtest for total electricity produced with subtests.test("Check total electricity produced"): total_electricity = model.prob.get_val( @@ -945,9 +959,13 @@ def test_simple_dispatch_example(subtests): pytest.approx(battery_electricity_finance, rel=1e-6) == battery_electricity_performance ) - wind_lcoe = model.prob.get_val("finance_subgroup_wind.LCOE", units="USD/MW/h")[0] - battery_lcoe = model.prob.get_val("finance_subgroup_battery.LCOE", units="USD/MW/h")[0] - electricity_lcoe = model.prob.get_val("finance_subgroup_electricity.LCOE", units="USD/MW/h")[0] + wind_lcoe = model.prob.get_val("finance_subgroup_wind.LCOE_wind_only", units="USD/(MW*h)")[0] + battery_lcoe = model.prob.get_val( + "finance_subgroup_battery.LCOE_battery_included", units="USD/(MW*h)" + )[0] + electricity_lcoe = model.prob.get_val( + "finance_subgroup_electricity.LCOE_all_electricity_profast", units="USD/(MW*h)" + )[0] with subtests.test("Check electricity LCOE is greater than wind LCOE"): assert electricity_lcoe > wind_lcoe From 56ddf0174144d09796101ba75d607b2734d19def Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Wed, 5 Nov 2025 17:33:27 -0700 Subject: [PATCH 47/79] Added functionality for loading yamls and finding files (#313) * moved some functions from validation to utilities and added new functions * updated load_yaml import * added tests for new functions * updated load_config and collect_custom_models in H2IntegrateModel * bugfix in yaml dump * updated changelog * attempted bugfix for test_geologic_h2 * updated find_file to fix failing tests * updated find_file() * added error for unexpected situation in find_file * added more detailed error message for debugging * added more detailed value error response * hopefully added bugfix * Adding docstring and comments * minor cleanup to utilities * added docs on file searching * changed title for new doc page * updated logic for handling absolute paths * Docs updates * Minor refactoring and docstring updates for filepath handling * minor clarification in docs and updated config_file to config_input * minor bug fix in find file function --------- Co-authored-by: John Jasa Co-authored-by: Genevieve Starke Co-authored-by: kbrunik --- CHANGELOG.md | 1 + docs/_toc.yml | 1 + docs/misc_resources/defining_filepaths.md | 54 ++++ .../how_to_set_up_an_analysis.ipynb | 17 +- h2integrate/core/h2integrate_model.py | 141 ++++++++-- h2integrate/core/inputs/validation.py | 142 +--------- h2integrate/core/test/test_utilities.py | 92 +++++- h2integrate/core/utilities.py | 265 ++++++++++++++++++ .../simulation/technologies/iron/iron.py | 3 +- .../iron/martin_ore/cost_model.py | 3 +- .../technologies/iron/rosner/cost_model.py | 2 +- h2integrate/tools/eco/utilities.py | 2 +- .../test_hydrogen/test_geologic_h2.py | 10 +- 13 files changed, 561 insertions(+), 172 deletions(-) create mode 100644 docs/misc_resources/defining_filepaths.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d3441a67..19e91ee9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Added `ProFastNPV`, a finance model using ProFAST to calculate NPV of the commodity - Moved `compute()` from `ProFastBase` to `ProFastLCO`. - Added `NumpyFinancialNPV`, a finance model that uses NumPy Financial npv to calculate the npv from the cash flows +- Added `load_yaml()` function and flexibility to input a config dictionary to H2IntegrateModel rather than a filepath ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index b1cead11a..f6425997f 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -80,6 +80,7 @@ parts: chapters: - file: misc_resources/FAQ - file: misc_resources/glossary + - file: misc_resources/defining_filepaths - caption: API Reference maxdepth: 3 diff --git a/docs/misc_resources/defining_filepaths.md b/docs/misc_resources/defining_filepaths.md new file mode 100644 index 000000000..ab12e5391 --- /dev/null +++ b/docs/misc_resources/defining_filepaths.md @@ -0,0 +1,54 @@ +# Specifying Filepaths in H2I + +You can specify filepaths in H2I in several ways. The `find_file()` method used in H2I searches for files in this order: +1. With respect to a specified root folder +2. With respect to the current working directory (cwd) +3. With respect to the H2Integrate package root. This folder includes subdirectories of `examples`, `resource_files`, `docs` and `h2integrate`. +4. As an absolute filepath + +## Main Input Files +The main input files to H2Integrate (`plant_config`, `tech_config` and `driver_config`) are defined in a top-level config file. In many examples, these files live in the same folder as the python run script. + +The main input files are searched for in H2I in the following order (with examples): +1. Relative to the folder containing the top-level config file, e.g.: + ```yaml + plant_config: "plant_config.yaml" + technology_config: "tech_config.yaml" + driver_config: "driver_config.yaml" + ``` +2. Relative to the current working directory (suppose our cwd is `examples/14_wind_hydrogen_dispatch`): + ```yaml + plant_config: "inputs/plant_config.yaml" + technology_config: "inputs/tech_config.yaml" + driver_config: "inputs/driver_config.yaml" + ``` +3. Relative to the H2Integrate root directory: + ```yaml + plant_config: "examples/01_onshore_steel_mn/plant_config.yaml" + technology_config: "examples/01_onshore_steel_mn/tech_config.yaml" + driver_config: "examples/01_onshore_steel_mn/driver_config.yaml" + ``` +4. As an absolute filepath: + ```yaml + plant_config: "/Users/myname/H2Integrate/examples/01_onshore_steel_mn/plant_config.yaml" + technology_config: "/Users/myname/H2Integrate/examples/01_onshore_steel_mn/tech_config.yaml" + driver_config: "/Users/myname/H2Integrate/examples/01_onshore_steel_mn/driver_config.yaml" + ``` + +> **Note:** If none of the search methods find a single matching file (search methods find multiple files with matching names or no files with a matching name), H2I will raise an error. A filepath is only returned if exactly one matching file is found for a given search method. + +## Recommendations +1. Change your current working directory to the folder containing your input files. This is how most examples are setup. + ```bash + cd examples/01_onshore_steel_mn + python run_onshore_steel_mn.py + ``` +2. Specify full filepaths instead of relative filepaths. +3. Use unique filenames if specifying filepaths relative to the H2Integrate package root. +4. Check the filepaths are correct: + ```python + model = H2IntegrateModel(Path.cwd()/"01_onshore_steel_mn.yaml") + print(f"Driver config file: {model.driver_config_path}") + print(f"Tech config file: {model.tech_config_path}") + print(f"Plant config file: {model.plant_config_path}") + ``` diff --git a/docs/user_guide/how_to_set_up_an_analysis.ipynb b/docs/user_guide/how_to_set_up_an_analysis.ipynb index 2283bee94..6f28035c2 100644 --- a/docs/user_guide/how_to_set_up_an_analysis.ipynb +++ b/docs/user_guide/how_to_set_up_an_analysis.ipynb @@ -39,6 +39,16 @@ "For example, if you had different optimization problems, you could have different driver config files for each optimization problem and just change the `driver_config` key in the top-level config file to point to the new file.\n", "This allows you to quickly test different configurations and see how they affect the results.\n", "\n", + "```{note}\n", + "The filepaths for the `plant_config`, `tech_config`, and `driver_config` files specified in the top-level config file can be specified as either:\n", + "1. Filepaths relative to the top-level config file; this is done in most examples\n", + "2. Filepaths relative to the current working directory; this is also done in most examples, which are intended to be run from the folder they're in.\n", + "3. Filepaths relative to the H2Integrate root directory; this works best for unique filenames.\n", + "4. Absolute filepaths.\n", + "\n", + "More information about file handling in H2I can be found [here](https://h2integrate.readthedocs.io/en/latest/misc_resources/defining_filepaths.html)\n", + "```\n", + "\n", "## Driver config file\n", "\n", "The driver config file defines the analysis type and the optimization settings.\n", @@ -354,7 +364,7 @@ ], "metadata": { "kernelspec": { - "display_name": "hopp", + "display_name": "Python 3.11.13 ('h2i_env')", "language": "python", "name": "python3" }, @@ -369,6 +379,11 @@ "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.13" + }, + "vscode": { + "interpreter": { + "hash": "e55566d5f9cb5003b92ad1d2254e8146f3d62519cfa868f35d73d51fb57327c6" + } } }, "nbformat": 4, diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index e204d0626..fa23be8d1 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -1,12 +1,10 @@ import importlib.util -from pathlib import Path -import yaml import numpy as np import openmdao.api as om import matplotlib.pyplot as plt -from h2integrate.core.utilities import create_xdsm_from_config +from h2integrate.core.utilities import get_path, find_file, load_yaml, create_xdsm_from_config from h2integrate.finances.finances import AdjustedCapexOpexComp from h2integrate.core.resource_summer import ElectricitySumComp from h2integrate.core.supported_models import supported_models, electricity_producing_techs @@ -21,9 +19,9 @@ class H2IntegrateModel: - def __init__(self, config_file): + def __init__(self, config_input): # read in config file; it's a yaml dict that looks like this: - self.load_config(config_file) + self.load_config(config_input) # load in supported models self.supported_models = supported_models.copy() @@ -64,20 +62,122 @@ def __init__(self, config_file): # might be an analysis or optimization self.create_driver_model() - def load_config(self, config_file): - config_path = Path(config_file) - with config_path.open() as file: - config = yaml.safe_load(file) + def _load_component_config(self, config_key, config_value, config_path, validator_func): + """Helper method to load and validate a component configuration. + + Args: + config_key (str): Key name for the configuration (e.g., "driver_config") + config_value (dict | str): Configuration value from main config + config_path (Path | None): Path to main config file (None if dict) + validator_func (callable): Validation function to apply + + Returns: + tuple: (validated_config, config_file_path, parent_path) + - validated_config: Validated configuration dictionary + - config_file_path: Path to config file (None if dict) + - parent_path: Parent directory of config file (None if dict) + """ + if isinstance(config_value, dict): + # Config provided as embedded dictionary + return validator_func(config_value), None, None + else: + # Config provided as filepath - resolve location + if config_path is None: + file_path = get_path(config_value) + else: + file_path = find_file(config_value, config_path.parent) + + # Store parent directory for resolving custom model paths later + parent_path = file_path.parent + return validator_func(file_path), file_path, parent_path + + def load_config(self, config_input): + """Load and validate configuration files for the H2I model. + + This method loads the main configuration and the three component configuration files + (driver, technology, and plant configurations). Each configuration can be provided + either as a dictionary object or as a filepath. When filepaths are provided, + the method resolves them using multiple search strategies. + + Args: + config_input (dict | str | Path): Main configuration containing references to + driver, technology, and plant configurations. Can be: + - A dictionary containing the configuration data directly + - A string or Path object pointing to a YAML file containing the configuration + + Behavior: + - If `config_input` is a dict: Uses it directly as the main configuration + - If `config_input` is a path: Uses `get_path()` to resolve and load the YAML file + from multiple search locations (absolute path, relative to CWD, relative to + H2Integrate package) + + For each component config (driver_config, technology_config, plant_config): + - If the config value is a dict: Validates it directly using the appropriate + validation function (`load_driver_yaml`, `load_tech_yaml`, `load_plant_yaml`) + - If the config value is a path string: + - When main config was loaded from file: Uses `find_file()` to search + relative to the main config file's directory first, then falls back + to other search locations (CWD, H2Integrate package, glob patterns) + - When main config was provided as dict: Uses `get_path()` with standard + search strategy (absolute, relative to CWD, relative to H2Integrate package) + + Sets: + self.name (str): Name of the system from main config + self.system_summary (str): Summary description from main config + self.driver_config (dict): Validated driver configuration + self.technology_config (dict): Validated technology configuration + self.plant_config (dict): Validated plant configuration + self.driver_config_path (Path | None): Path to driver config file (None if dict) + self.tech_config_path (Path | None): Path to technology config file (None if dict) + self.plant_config_path (Path | None): Path to plant config file (None if dict) + self.tech_parent_path (Path | None): Parent directory of technology config file + self.plant_parent_path (Path | None): Parent directory of plant config file + + Note: + The parent path attributes (tech_parent_path, plant_parent_path) are used later + for resolving relative paths to custom models and other referenced files within + the technology and plant configurations. + + Example: + >>> # Using filepaths + >>> model = H2IntegrateModel("main_config.yaml") + + >>> # Using mixed dict and filepaths + >>> config = { + ... "name": "my_system", + ... "driver_config": "driver.yaml", + ... "technology_config": {"technologies": {...}}, + ... "plant_config": "plant.yaml", + ... } + >>> model = H2IntegrateModel(config) + """ + # Load main configuration + if isinstance(config_input, dict): + config = config_input + config_path = None + else: + config_path = get_path(config_input) + config = load_yaml(config_path) self.name = config.get("name") self.system_summary = config.get("system_summary") - # Load each config file as yaml and save as dict on this object - self.driver_config = load_driver_yaml(config_path.parent / config.get("driver_config")) - self.tech_config_path = config_path.parent / config.get("technology_config") - self.technology_config = load_tech_yaml(self.tech_config_path) - self.plant_config = load_plant_yaml(config_path.parent / config.get("plant_config")) - self.plant_config_path = config_path.parent / config.get("plant_config") + # Load and validate each component configuration using the helper method + self.driver_config, self.driver_config_path, _ = self._load_component_config( + "driver_config", config.get("driver_config"), config_path, load_driver_yaml + ) + + self.technology_config, self.tech_config_path, self.tech_parent_path = ( + self._load_component_config( + "technology_config", config.get("technology_config"), config_path, load_tech_yaml + ) + ) + + self.plant_config, self.plant_config_path, self.plant_parent_path = ( + self._load_component_config( + "plant_config", config.get("plant_config"), config_path, load_plant_yaml + ) + ) def create_custom_models(self, model_config, config_parent_path, model_types, prefix=""): """This method loads custom models from the specified directory and adds them to the @@ -110,7 +210,10 @@ def create_custom_models(self, model_config, config_parent_path, model_types, pr ) # Resolve the full path of the model location - model_path = config_parent_path / model_location + if config_parent_path is not None: + model_path = find_file(model_location, config_parent_path) + else: + model_path = find_file(model_location) if not model_path.exists(): raise FileNotFoundError( @@ -148,7 +251,7 @@ def collect_custom_models(self): # check for custom technology models self.create_custom_models( self.technology_config["technologies"], - self.tech_config_path.parent, + self.tech_parent_path, ["performance_model", "cost_model", "finance_model"], ) @@ -160,7 +263,7 @@ def collect_custom_models(self): if "model_inputs" in finance_groups: self.create_custom_models( self.plant_config, - self.plant_config_path.parent, + self.plant_parent_path, ["finance_groups"], prefix="finance_", ) @@ -171,7 +274,7 @@ def collect_custom_models(self): finance_groups_config = {"finance_groups": finance_groups} self.create_custom_models( finance_groups_config, - self.plant_config_path.parent, + self.plant_parent_path, finance_model_names, prefix="finance_", ) diff --git a/h2integrate/core/inputs/validation.py b/h2integrate/core/inputs/validation.py index bf3102a58..ac0783dfc 100644 --- a/h2integrate/core/inputs/validation.py +++ b/h2integrate/core/inputs/validation.py @@ -2,15 +2,12 @@ Code adapted from NREL's WISDEM tool. """ -import copy -import operator from pathlib import Path -from functools import reduce import numpy as np import jsonschema as json -import ruamel.yaml as ry -from hopp.utilities import load_yaml + +from h2integrate.core.utilities import load_yaml, write_yaml fschema_tech = Path(__file__).parent / "tech_schema.yaml" @@ -18,29 +15,6 @@ fschema_driver = Path(__file__).parent / "driver_schema.yaml" -def write_yaml(instance: dict, foutput: str) -> None: - """ - Writes a dictionary to a YAML file using the ruamel.yaml library. - - Args: - instance (dict): Dictionary to be written to the YAML file. - foutput (str): Path to the output YAML file. - - Returns: - None - """ - instance = remove_numpy(instance) - - # Write yaml with updated values - yaml = ry.YAML() - yaml.default_flow_style = None - yaml.width = float("inf") - yaml.indent(mapping=4, sequence=6, offset=3) - yaml.allow_unicode = False - with Path(foutput).open("w", encoding="utf-8") as f: - yaml.dump(instance, f) - - # --------------------- # This is for when the defaults are in another file def nested_get(indict, keylist): @@ -194,115 +168,3 @@ def tech_yaml(instance: dict, foutput: str) -> None: foutput += ".yaml" write_yaml(instance, foutput) return foutput - - -def write_plant_yaml(instance: dict, foutput: str) -> None: - _validate(instance, fschema_plant, defaults=False) - - # Ensure the output filename does not end with .yaml or .yml - if foutput.endswith(".yaml"): - foutput = foutput[:-5] - elif foutput.endswith(".yml"): - foutput = foutput[:-4] - sfx_str = "-plant.yaml" - - instance2 = simple_types(instance) - write_yaml(instance2, foutput + sfx_str) - return foutput + sfx_str - - -def write_analysis_yaml(instance: dict, foutput: str) -> None: - _validate(instance, fschema_driver, defaults=False) - - # Ensure the output filename does not end with .yaml or .yml - if foutput.endswith(".yaml"): - foutput = foutput[:-5] - elif foutput.endswith(".yml"): - foutput = foutput[:-4] - - sfx_str = "-analysis.yaml" - write_yaml(instance, foutput + sfx_str) - return foutput + sfx_str - - -def remove_numpy(fst_vt: dict) -> dict: - """ - Recursively converts numpy array elements within a nested dictionary to lists and ensures - all values are simple types (float, int, dict, bool, str) for writing to a YAML file. - - Args: - fst_vt (dict): The dictionary to process. - - Returns: - dict: The processed dictionary with numpy arrays converted to lists - and unsupported types to simple types. - """ - - def get_dict(vartree, branch): - return reduce(operator.getitem, branch, vartree) - - # Define conversion dictionary for numpy types - conversions = { - np.int_: int, - np.intc: int, - np.intp: int, - np.int8: int, - np.int16: int, - np.int32: int, - np.int64: int, - np.uint8: int, - np.uint16: int, - np.uint32: int, - np.uint64: int, - np.single: float, - np.double: float, - np.longdouble: float, - np.csingle: float, - np.cdouble: float, - np.float16: float, - np.float32: float, - np.float64: float, - np.complex64: float, - np.complex128: float, - np.bool_: bool, - np.ndarray: lambda x: x.tolist(), - } - - def loop_dict(vartree, branch): - if not isinstance(vartree, dict): - return fst_vt - for var in vartree.keys(): - branch_i = copy.copy(branch) - branch_i.append(var) - if isinstance(vartree[var], dict): - loop_dict(vartree[var], branch_i) - else: - current_value = get_dict(fst_vt, branch_i[:-1])[branch_i[-1]] - data_type = type(current_value) - if data_type in conversions: - get_dict(fst_vt, branch_i[:-1])[branch_i[-1]] = conversions[data_type]( - current_value - ) - elif isinstance(current_value, (list, tuple)): - for i, item in enumerate(current_value): - current_value[i] = remove_numpy(item) - - # set fast variables to update values - loop_dict(fst_vt, []) - return fst_vt - - -if __name__ == "__main__": - yaml_schema = load_yaml(fschema_driver) - myobj = load_yaml("sample_analysis.yaml") - DefaultValidatingDraft7Validator(yaml_schema).validate(myobj) - # validator.validate( myobj ) - print(list(myobj.keys())) - print(myobj["general"]) - - obj = {} - schema = {"properties": {"foo": {"default": "bar"}}} - # Note jsonschem.validate(obj, schema, cls=DefaultValidatingDraft7Validator) - # will not work because the metaschema contains `default` directives. - DefaultValidatingDraft7Validator(schema).validate(obj) - print(obj) diff --git a/h2integrate/core/test/test_utilities.py b/h2integrate/core/test/test_utilities.py index 578d43964..be591eb70 100644 --- a/h2integrate/core/test/test_utilities.py +++ b/h2integrate/core/test/test_utilities.py @@ -1,3 +1,4 @@ +import os import tempfile import unittest from pathlib import Path @@ -6,7 +7,96 @@ import numpy as np from h2integrate import ROOT_DIR, EXAMPLE_DIR, RESOURCE_DEFAULT_DIR -from h2integrate.core.utilities import make_unique_case_name, dict_to_yaml_formatting +from h2integrate.core.utilities import ( + get_path, + find_file, + make_unique_case_name, + dict_to_yaml_formatting, +) + + +def test_get_path(subtests): + current_cwd = Path.cwd() + + # 1. As an absolute path. + file_abs_path = EXAMPLE_DIR / "01_onshore_steel_mn" / "tech_inputs" / "hopp_config.yaml" + file_abs_out_path = get_path(file_abs_path) + with subtests.test("get_path: absolute filepath for file"): + assert file_abs_out_path == file_abs_path + + # 2. Relative to the current working directory. + os.chdir(EXAMPLE_DIR / "01_onshore_steel_mn") + file_cwd_rel_path = "tech_inputs/hopp_config.yaml" + file_cwd_rel_out_path = get_path(file_cwd_rel_path) + with subtests.test("get_path: filepath relative to cwd for file"): + assert file_cwd_rel_out_path == file_abs_path + + # 3. Relative to the H2Integrate package. + os.chdir(ROOT_DIR) + file_h2i_rel_path = "examples/01_onshore_steel_mn/tech_inputs/hopp_config.yaml" + file_h2i_rel_out_path = get_path(file_h2i_rel_path) + with subtests.test("get_path: filepath relative to H2I package for file"): + assert file_h2i_rel_out_path == file_abs_path + + # 1. As an absolute path. + dir_abs_path = EXAMPLE_DIR / "01_onshore_steel_mn" / "tech_inputs" + dir_abs_out_path = get_path(dir_abs_path) + with subtests.test("get_path: absolute filepath for folder"): + assert dir_abs_out_path == dir_abs_path + + # 2. Relative to the current working directory. + os.chdir(EXAMPLE_DIR / "01_onshore_steel_mn") + dir_cwd_rel_path = "tech_inputs" + dir_cwd_rel_out_path = get_path(dir_cwd_rel_path) + with subtests.test("get_path: filepath relative to cwd for folder"): + assert dir_cwd_rel_out_path == dir_abs_path + + # 3. Relative to the H2Integrate package. + os.chdir(ROOT_DIR) + dir_h2i_rel_path = "examples/01_onshore_steel_mn/tech_inputs" + dir_h2i_rel_out_path = get_path(dir_h2i_rel_path) + with subtests.test("get_path: filepath relative to H2I package for folder"): + assert dir_h2i_rel_out_path == dir_abs_path + + os.chdir(current_cwd) + + +def test_find_file(subtests): + current_cwd = Path.cwd() + + # 1. As an absolute path. + file_abs_path = EXAMPLE_DIR / "01_onshore_steel_mn" / "tech_inputs" / "hopp_config.yaml" + file_abs_out_path = find_file(file_abs_path) + with subtests.test("find_file: absolute filepath"): + assert file_abs_out_path == file_abs_path + + # 2. Relative to the current working directory. + os.chdir(EXAMPLE_DIR / "01_onshore_steel_mn") + file_cwd_rel_path = "tech_inputs/hopp_config.yaml" + file_cwd_rel_out_path = find_file(file_cwd_rel_path) + with subtests.test("find_file: filepath relative to cwd"): + assert file_cwd_rel_out_path == file_abs_path + + # 3. Relative to the H2Integrate package. + os.chdir(ROOT_DIR / "core" / "inputs") + file_h2i_rel_path = "examples/01_onshore_steel_mn/tech_inputs/hopp_config.yaml" + file_h2i_rel_out_path = find_file(file_h2i_rel_path) + with subtests.test("find_file: filepath relative to H2I package"): + assert file_h2i_rel_out_path == file_abs_path + + # 3. Relative to the root_folder (outside of it) + file_root_rel_path = "../examples/01_onshore_steel_mn/tech_inputs/hopp_config.yaml" + file_root_rel_out_path = find_file(file_root_rel_path, root_folder=ROOT_DIR) + with subtests.test("find_file: filepath relative (outside) of root_folder"): + assert file_root_rel_out_path.resolve() == file_abs_path + + # 4. Relative to the root_folder (inside of it) + file_root_in_rel_path = "tech_inputs/hopp_config.yaml" + ex_root = EXAMPLE_DIR / "01_onshore_steel_mn" + file_root_in_rel_out_path = find_file(file_root_in_rel_path, root_folder=ex_root) + with subtests.test("find_file: filepath relative (inside) to root_folder"): + assert file_root_in_rel_out_path.resolve() == file_abs_path + os.chdir(current_cwd) def test_make_unique_filename(subtests): diff --git a/h2integrate/core/utilities.py b/h2integrate/core/utilities.py index b1d19823a..a63324fcb 100644 --- a/h2integrate/core/utilities.py +++ b/h2integrate/core/utilities.py @@ -1,13 +1,20 @@ import re import csv +import copy +import operator from typing import Any from pathlib import Path +from functools import reduce from collections import OrderedDict +import yaml import attrs import numpy as np +import ruamel.yaml as ry from attrs import Attribute, field, define +from h2integrate import ROOT_DIR + try: from pyxdsm.XDSM import FUNC, XDSM @@ -295,6 +302,264 @@ def dict_to_yaml_formatting(orig_dict): return orig_dict +def get_path(path: str | Path) -> Path: + """ + Convert a string or Path object to an absolute Path object, prioritizing different locations. + + This function attempts to find the existence of a path in the following order: + 1. As an absolute path. + 2. Relative to the current working directory. + 3. Relative to the H2Integrate package. + + Args: + path (str | Path): The input path, either as a string or a Path object. + + Raises: + FileNotFoundError: If the path is not found in any of the locations. + + Returns: + Path: The absolute path to the file. + """ + # Store the original path for reference in error messages. + original_path = path + + # If the input is a string, convert it to a Path object. + if isinstance(path, str): + path = Path(path) + + # Check if the path exists as an absolute path. + if path.exists(): + return path.absolute() + + # If not, try finding the path relative to the current working directory. + relative_path = Path.cwd() / path + path = relative_path + + # If the path still doesn't exist, attempt to find it relative to the H2Integrate package. + if path.exists(): + return path.absolute() + + # Determine the path relative to the H2Integrate package. + h2i_based_path = ROOT_DIR.parent / Path(original_path) + + path = h2i_based_path + + if path.exists(): + return path.absolute() + + # If the path still doesn't exist in any of the prioritized locations, raise an error. + raise FileNotFoundError( + f"File not found in absolute path: {original_path}, relative path: " + f"{relative_path}, or H2Integrate-based path: " + f"{h2i_based_path}" + ) + + +def find_file(filename: str | Path, root_folder: str | Path | None = None): + """ + This function attempts to find a filepath matching `filename` from a variety of locations + in the following order: + + 1. Relative to the root_folder (if provided) + 2. Relative to the current working directory. + 3. Relative to the H2Integrate package. + 4. As an absolute path if `filename` is already absolute + + Args: + filename (str | Path): Input filepath + root_folder (str | Path, optional): Root directory to search for filename in. + Defaults to None. + + Raises: + FileNotFoundError: If the path is not found in any of the locations. + + Returns: + Path: The absolute path to the file. + """ + + # 1. check for file in the root directory + files = [] + if root_folder is not None: + root_folder = Path(root_folder) + # if the file exists in the root directory, return full path + if Path(root_folder, filename).exists(): + return Path(root_folder, filename).resolve().absolute() + + # check for files within root directory + files = list(Path(root_folder).glob(f"**/{filename}")) + + if len(files) == 1: + return files[0].absolute() + if len(files) > 1: + raise FileNotFoundError( + f"Found {len(files)} files in the root directory ({root_folder}) that have " + f"filename {filename}" + ) + + filename_no_rel = "/".join( + p + for p in Path(root_folder, filename).resolve(strict=False).parts + if p not in Path(root_folder).parts + ) + files = list(Path(root_folder).glob(f"**/{filename_no_rel}")) + if len(files) == 1: + return files[0].absolute() + + # 2. check for file relative to the current working directory + files_cwd = list(Path.cwd().glob(f"**/{filename}")) + if len(files_cwd) == 1: + return files_cwd[0].absolute() + + # 3. check for file relative to the H2Integrate package root + files_h2i = list(ROOT_DIR.parent.glob(f"**/{filename}")) + files_h2i = [file for file in files_h2i if "build" not in file.parts] + if len(files_h2i) == 1: + return files_h2i[0].absolute() + + # 4. check for as absolute path + if Path(filename).is_absolute(): + return Path(filename) + + if len(files_cwd) == 0 and len(files_h2i) == 0: + raise FileNotFoundError( + f"Did not find any files matching {filename} in the current working directory " + f"{Path.cwd()} or relative to the H2Integrate package {ROOT_DIR.parent}" + ) + if root_folder is not None and len(files) == 0: + raise FileNotFoundError( + f"Did not find any files matching {filename} in the current working directory " + f"{Path.cwd()}, relative to the H2Integrate package {ROOT_DIR.parent}, or relative to " + f"the root directory {root_folder}." + ) + raise ValueError( + f"Cannot find unique file: found {len(files_cwd)} files relative to cwd, " + f"{len(files_h2i)} files relative to H2Integrate root directory, " + f"{len(files)} files relative to the root folder." + ) + + +def remove_numpy(fst_vt: dict) -> dict: + """ + Recursively converts numpy array elements within a nested dictionary to lists and ensures + all values are simple types (float, int, dict, bool, str) for writing to a YAML file. + + Args: + fst_vt (dict): The dictionary to process. + + Returns: + dict: The processed dictionary with numpy arrays converted to lists + and unsupported types to simple types. + """ + + def get_dict(vartree, branch): + return reduce(operator.getitem, branch, vartree) + + # Define conversion dictionary for numpy types + conversions = { + np.int_: int, + np.intc: int, + np.intp: int, + np.int8: int, + np.int16: int, + np.int32: int, + np.int64: int, + np.uint8: int, + np.uint16: int, + np.uint32: int, + np.uint64: int, + np.single: float, + np.double: float, + np.longdouble: float, + np.csingle: float, + np.cdouble: float, + np.float16: float, + np.float32: float, + np.float64: float, + np.complex64: float, + np.complex128: float, + np.bool_: bool, + np.ndarray: lambda x: x.tolist(), + } + + def loop_dict(vartree, branch): + if not isinstance(vartree, dict): + return fst_vt + for var in vartree.keys(): + branch_i = copy.copy(branch) + branch_i.append(var) + if isinstance(vartree[var], dict): + loop_dict(vartree[var], branch_i) + else: + current_value = get_dict(fst_vt, branch_i[:-1])[branch_i[-1]] + data_type = type(current_value) + if data_type in conversions: + get_dict(fst_vt, branch_i[:-1])[branch_i[-1]] = conversions[data_type]( + current_value + ) + elif isinstance(current_value, (list, tuple)): + for i, item in enumerate(current_value): + current_value[i] = remove_numpy(item) + + # set fast variables to update values + loop_dict(fst_vt, []) + return fst_vt + + +class Loader(yaml.SafeLoader): + def __init__(self, stream): + # root is the parent directory of the parent yaml file + self._root = get_path(Path(stream.name).parent) + + super().__init__(stream) + + def include(self, node): + filename = find_file(node.value, self._root) + + with Path.open(filename) as f: + return yaml.load(f, self.__class__) + + +Loader.add_constructor("!include", Loader.include) + + +def load_yaml(filename, loader=Loader) -> dict: + if isinstance(filename, dict): + return filename # filename already yaml dict + with Path.open(filename) as fid: + return yaml.load(fid, loader) + + +def write_yaml( + instance: dict, foutput: str, convert_np: bool = True, check_formatting: bool = False +) -> None: + """ + Writes a dictionary to a YAML file using the ruamel.yaml library. + + Args: + instance (dict): Dictionary to be written to the YAML file. + foutput (str): Path to the output YAML file. + convert_np (bool): Whether to convert numpy objects to simple types. Defaults to True. + check_formatting (bool): Whether to check formatting to convert numpy arrays to lists. + Defaults to False. + + Returns: + None + """ + + if convert_np: + instance = remove_numpy(instance) + if check_formatting: + instance = dict_to_yaml_formatting(instance) + # Write yaml with updated values + yaml = ry.YAML() + yaml.default_flow_style = None + yaml.width = float("inf") + yaml.indent(mapping=4, sequence=6, offset=3) + yaml.allow_unicode = False + with Path(foutput).open("w", encoding="utf-8") as f: + yaml.dump(instance, f) + + def make_unique_case_name(folder, proposed_fname, fext): """Generate a filename that does not already exist in a user-defined folder. diff --git a/h2integrate/simulation/technologies/iron/iron.py b/h2integrate/simulation/technologies/iron/iron.py index c73b90def..6e9cc35ec 100644 --- a/h2integrate/simulation/technologies/iron/iron.py +++ b/h2integrate/simulation/technologies/iron/iron.py @@ -6,7 +6,8 @@ import pandas as pd from attrs import define from pandas import DataFrame -from hopp.utilities import load_yaml + +from h2integrate.core.utilities import load_yaml # Get model locations loaded up to refer to diff --git a/h2integrate/simulation/technologies/iron/martin_ore/cost_model.py b/h2integrate/simulation/technologies/iron/martin_ore/cost_model.py index b289206c5..fac4f4d19 100644 --- a/h2integrate/simulation/technologies/iron/martin_ore/cost_model.py +++ b/h2integrate/simulation/technologies/iron/martin_ore/cost_model.py @@ -7,7 +7,8 @@ import numpy as np import pandas as pd -from hopp.utilities import load_yaml + +from h2integrate.core.utilities import load_yaml CD = Path(__file__).parent diff --git a/h2integrate/simulation/technologies/iron/rosner/cost_model.py b/h2integrate/simulation/technologies/iron/rosner/cost_model.py index 57f41f867..a403a71f0 100644 --- a/h2integrate/simulation/technologies/iron/rosner/cost_model.py +++ b/h2integrate/simulation/technologies/iron/rosner/cost_model.py @@ -8,8 +8,8 @@ import numpy as np import pandas as pd -from hopp.utilities import load_yaml +from h2integrate.core.utilities import load_yaml from h2integrate.simulation.technologies.iron.load_top_down_coeffs import load_top_down_coeffs diff --git a/h2integrate/tools/eco/utilities.py b/h2integrate/tools/eco/utilities.py index 016e54a40..ed17d9d37 100644 --- a/h2integrate/tools/eco/utilities.py +++ b/h2integrate/tools/eco/utilities.py @@ -11,12 +11,12 @@ import matplotlib.pyplot as plt import matplotlib.ticker as ticker import matplotlib.patches as patches -from hopp.utilities import load_yaml from hopp.simulation import HoppInterface from hopp.tools.dispatch import plot_tools from hopp.simulation.technologies.resource.greet_data import GREETData from hopp.simulation.technologies.resource.cambium_data import CambiumData +from h2integrate.core.utilities import load_yaml from h2integrate.tools.h2integrate_sim_file_utils import load_dill_pickle from .finance import adjust_orbit_costs diff --git a/tests/h2integrate/test_hydrogen/test_geologic_h2.py b/tests/h2integrate/test_hydrogen/test_geologic_h2.py index 3a06ed2db..8360015a3 100644 --- a/tests/h2integrate/test_hydrogen/test_geologic_h2.py +++ b/tests/h2integrate/test_hydrogen/test_geologic_h2.py @@ -1,16 +1,12 @@ -from pathlib import Path - import numpy as np from pytest import approx +from h2integrate import EXAMPLE_DIR from h2integrate.core.h2integrate_model import H2IntegrateModel -cd = Path(__file__).resolve().parent - - def test_natural_geoh2(subtests): - h2i_nat = H2IntegrateModel(cd / "../../../examples/04_geo_h2/04_geo_h2_natural.yaml") + h2i_nat = H2IntegrateModel(EXAMPLE_DIR / "04_geo_h2" / "04_geo_h2_natural.yaml") h2i_nat.run() with subtests.test("H2 Production"): @@ -22,7 +18,7 @@ def test_natural_geoh2(subtests): def test_stimulated_geoh2(subtests): - h2i_stim = H2IntegrateModel(cd / "../../../examples/04_geo_h2/04_geo_h2_stimulated.yaml") + h2i_stim = H2IntegrateModel(EXAMPLE_DIR / "04_geo_h2" / "04_geo_h2_stimulated.yaml") h2i_stim.run() with subtests.test("H2 Production"): From b76a769d1618e27fcc8efe85ab29df729ba99b19 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Wed, 5 Nov 2025 17:54:40 -0700 Subject: [PATCH 48/79] Recording and Loading SQL Files: Example and Doc page (#322) * added recorder to example 8 and added docs for sql files * Minor docs edits * Minor docs edits * added clarification to doc --------- Co-authored-by: John Jasa Co-authored-by: kbrunik <102193481+kbrunik@users.noreply.github.com> --- docs/_toc.yml | 1 + docs/build_book.sh | 2 +- docs/technology_models/pysam_battery.md | 2 +- docs/user_guide/recording_and_loading_data.md | 128 ++++++++++++++++++ .../08_wind_electrolyzer/driver_config.yaml | 17 +++ .../run_wind_electrolyzer.py | 38 +++++- 6 files changed, 185 insertions(+), 3 deletions(-) create mode 100644 docs/user_guide/recording_and_loading_data.md diff --git a/docs/_toc.yml b/docs/_toc.yml index f6425997f..39f4885a4 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -17,6 +17,7 @@ parts: - file: user_guide/design_optimization_in_h2i - file: user_guide/design_of_experiments_in_h2i - file: user_guide/postprocessing_results + - file: user_guide/recording_and_loading_data - file: user_guide/how_to_interface_with_user_defined_model - file: user_guide/how_to_run_several_cases_in_sequence diff --git a/docs/build_book.sh b/docs/build_book.sh index d5d0a7cf6..5817e636c 100644 --- a/docs/build_book.sh +++ b/docs/build_book.sh @@ -1,2 +1,2 @@ rm -rf _build -jupyter-book build -W --keep-going . +jupyter-book build --keep-going . diff --git a/docs/technology_models/pysam_battery.md b/docs/technology_models/pysam_battery.md index 0d3c6935b..7548a5a11 100644 --- a/docs/technology_models/pysam_battery.md +++ b/docs/technology_models/pysam_battery.md @@ -5,4 +5,4 @@ an OpenMDAO component. For full documentation see the [PySAM battery model docum The PySAM battery model simulates the response of the battery to control commands. However, the control commands may not be strictly followed. Specifically, the SOC bounds have been seen to be exceeded by nearly 4% SOC for the upper bound and close to 1% SOC on the lower bound. -To use the pysam battery model, specify `"pysam_battery"` as the performance model. The PySAM battery wrapper is designed to be used with the [pyomo control framework](../control/control_overview.md#pyomo-control). If the [open-loop control framework](../control/control_overview.md#open-loop-control) is used with the pysam battery, the pysam battery will not respect the commands and the battery output will be ignored by the controller. +To use the pysam battery model, specify `"pysam_battery"` as the performance model. The PySAM battery wrapper is designed to be used with the [pyomo control framework](pyomo-control). If the [open-loop control framework](open-loop-control) is used with the pysam battery, the pysam battery will not respect the commands and the battery output will be ignored by the controller. diff --git a/docs/user_guide/recording_and_loading_data.md b/docs/user_guide/recording_and_loading_data.md new file mode 100644 index 000000000..1c0b3e78e --- /dev/null +++ b/docs/user_guide/recording_and_loading_data.md @@ -0,0 +1,128 @@ +# Recording and Loading Data From H2I Simulations +Detailed data from H2Integrate simulations can be saved and loaded later. This section covers: +1. [How to record data from a simulation](setting-recorder-parameters) +2. [How to load data and access recorded data](loading-recorder-files) + +(setting-recorder-parameters)= +## Setting Recorder Parameters + +Recording data from a simulation can be enabled in the `driver_config` file with the 'recorder' section. The most simple example is shown below: + +```yaml +name: "driver_config" +description: "example driver config to show recording options" + +general: + folder_output: outputs #folder to save recorded data to + +recorder: + flag: True #set to True to record data + file: "cases.sql" #this is the name of the file to record data to. +``` +In the above example, data will be saved to the file `outputs/cases.sql`. + +The file below would have the same behavior as the above example, but highlights the default behavior: +```yaml +name: "driver_config" +description: "example driver config to show recording options" + +general: + folder_output: outputs #folder to save recorded data to + +recorder: + flag: True #set to True to record data + file: "cases.sql" #this is the name of the file to record data to. + overwrite_recorder: False #create a unique recorder for each simulation + recorder_attachment: "model" # "driver" or "model" + includes: ["*"] # include everything + excludes: ["*resource_data"] # don't include resource data +``` + +- **overwrite_recorder**: If False or not specified, H2I will make a new filename for the recorder that doesn't yet exist in the `outputs` folder. If `cases.sql` exists, it will make a new file named `cases0.sql`. If `cases.sql` and `cases0.sql` exist, it will make a new file named `cases1.sql`, etc. If set to True, it will overwrite an existing `cases.sql` file from previous runs. +- **recorder_attachment**: Must be `model` or `driver`, defaults to `model`. We recommend attaching the recorder to the driver if running an optimization or design of experiments in parallel as model-level recording cannot be performed in parallel due to limitations in OpenMDAO. + +(attaching-a-recorder-to-the-driver)= +### Attaching a recorder to the driver +We recommend attaching the recorder to the driver if running an optimization or design of experiments in parallel as model-level recording cannot be performed in parallel due to limitations in OpenMDAO. +It can be beneficial if running a design of experiments or optimization in serial as well. +Further documentation on driver recording can be found [here](https://openmdao.org/newdocs/versions/latest/features/recording/driver_recording.html). + +```yaml +name: "driver_config" +description: "example driver config to show recording options" + +general: + folder_output: outputs #folder to save recorded data to + +recorder: + flag: True #set to True to record data + file: "cases.sql" #this is the name of the file to record data to. + overwrite_recorder: False #create a unique recorder for each simulation + recorder_attachment: "driver" #"driver" or "model + + # H2I Default recorder options + includes: ["*"] # include everything + excludes: ["*resource_data"] # don't include resource data + + # OpenMDAO default for recording options + record_inputs: True #record inputs + record_outputs: True #record outputs + record_constraints: True #record constraints + record_derivatives: False #record derivatives + record_desvars: True #record design variables + record_objectives: True #record objectives +``` + +(attaching-a-recorder-to-the-model)= +### Attaching a recorder to the model +Further documentation on model recording can be found [here](https://openmdao.org/newdocs/versions/latest/features/recording/system_recording.html). By default, the recorder will be attached to the model unless `recorder_attachment` is set to "driver". + +```yaml +name: "driver_config" +description: "example driver config to show recording options" + +general: + folder_output: outputs #folder to save recorded data to + +recorder: + flag: True #set to True to record data + file: "cases.sql" #this is the name of the file to record data to. + overwrite_recorder: False #create a unique recorder for each simulation + recorder_attachment: "model" #"driver" or "model + + # H2I Default recorder options + includes: ["*"] # include everything + excludes: ["*resource_data"] # don't include resource data + + # OpenMDAO default for recording options + record_inputs: True #record inputs + record_outputs: True #record outputs + record_residuals: True #record residuals +``` + +(loading-recorder-files)= +## Loading Recorder Files +Detailed documentation on OpenMDAO's case read can be found [here](https://openmdao.org/newdocs/versions/latest/features/recording/case_reader.html). + +Example usage of reading and accessing recorded data is shown in Example 8 (`examples/08_wind_electrolyzer/run_wind_electrolyzer.py`). + +Below is an example python script that shows how to load recorded data and to access the data available: + +```python +import openmdao.api as om +from pathlib import Path +# set the path for the recorder from stuff specified in the driver_config.yaml +fpath = Path.cwd() / "outputs" / "cases.sql" + +# load the cases +cr = om.CaseReader(fpath) + +# get the cases as a list +cases = list(cr.get_cases()) +# access a variable from the problem, this can be anything thats an +# input or output from the models that were run and not specified +# as variables to exclude in the driver_config file + +cases[0].get_val("finance_subgroup_default.LCOE",units="USD/kW/h") +cases[0].get_val("solar.capacity_kWdc",units="MW") +``` diff --git a/examples/08_wind_electrolyzer/driver_config.yaml b/examples/08_wind_electrolyzer/driver_config.yaml index 3fc903a1a..2e68b25f3 100644 --- a/examples/08_wind_electrolyzer/driver_config.yaml +++ b/examples/08_wind_electrolyzer/driver_config.yaml @@ -3,3 +3,20 @@ description: "This analysis runs a wind plant hooked up to an electrolyzer and s general: folder_output: wind_electrolyzer + +recorder: + # required inputs + flag: True #record outputs + file: "cases.sql" #this file will be written to the folder `wind_electrolyzer` + + # optional but recommended inputs + overwrite_recorder: True #If True, do not create a unique recorder file for subsequent runs. Defaults to False. + recorder_attachment: "model" #"driver" or "model", defaults to "model". Use "driver" if running a parallel simulation. + includes: ["*"] #include everything + excludes: ["*wind_resource*"] #exclude wind resource data + + # below are optional and defaulted to the OpenMDAO default + # record_inputs: True #defaults to True + # record_outputs: True #defaults to True + # record_residuals: True #defaults to True + # options_excludes: #this is only used if recorder_attachment is "model" diff --git a/examples/08_wind_electrolyzer/run_wind_electrolyzer.py b/examples/08_wind_electrolyzer/run_wind_electrolyzer.py index 6ab21874d..0c5a03835 100644 --- a/examples/08_wind_electrolyzer/run_wind_electrolyzer.py +++ b/examples/08_wind_electrolyzer/run_wind_electrolyzer.py @@ -1,11 +1,47 @@ +import os +from pathlib import Path + +import openmdao.api as om + from h2integrate.core.h2integrate_model import H2IntegrateModel +# change the current working directory to the example folder +os.chdir(Path(__file__).parent) + +top_level_fpath = Path(__file__).parent / "wind_plant_electrolyzer.yaml" + # Create a GreenHEART model -h2i_model = H2IntegrateModel("wind_plant_electrolyzer.yaml") +h2i_model = H2IntegrateModel(top_level_fpath) # Run the model h2i_model.run() # Post-process the results h2i_model.post_process() + +# Specify the filepath to the sql file, the folder and filename are in the driver_config +sql_fpath = Path(__file__).parent / "wind_electrolyzer" / "cases.sql" + +# load the cases +cr = om.CaseReader(sql_fpath) + +cases = list(cr.get_cases()) + +# theres only 1 case since we didnt run an optimization or design of experiments +case = cases[0] + +# access values from a case similar to how we can access values from h2i_model.model +lcoh_custom = case.get_val("finance_subgroup_hydrogen.LCOH_produced_custom_model", units="USD/kg") +lcoh_profast = case.get_val("finance_subgroup_hydrogen.LCOH_produced_profast_model", units="USD/kg") +lcoe_profast = case.get_val("finance_subgroup_electricity_profast.LCOE", units="USD/MW/h") +lcoe_custom = case.get_val("finance_subgroup_electricity_custom.LCOE", units="USD/MW/h") + +print( + f"LCOH (USD/kg): is {lcoh_custom[0]:.2f} with custom model and " + f"{lcoh_profast[0]:.2f} with ProFAST model" +) +print( + f"LCOE (USD/MWh): is {lcoe_custom[0]:.2f} with custom model and " + f"{lcoe_profast[0]:.2f} with ProFAST model" +) From 4820d28e837272bf12ac34a2b1953ef3c36b1df3 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Wed, 5 Nov 2025 19:00:44 -0600 Subject: [PATCH 49/79] Merge Geologic Hydrogen Branch into Develop (#354) * Synced up with spreadsheet model * Fixing test assert values --------- Co-authored-by: jmartin4 Co-authored-by: John Jasa --- examples/04_geo_h2/tech_config_natural.yaml | 11 +- .../04_geo_h2/tech_config_stimulated.yaml | 17 +-- .../hydrogen/geologic/geoh2_baseclass.py | 108 +++++++++++++----- .../hydrogen/geologic/natural_geoh2_plant.py | 34 +++--- .../geologic/stimulated_geoh2_plant.py | 89 +++++++++------ .../test_hydrogen/test_geologic_h2.py | 8 +- 6 files changed, 171 insertions(+), 96 deletions(-) diff --git a/examples/04_geo_h2/tech_config_natural.yaml b/examples/04_geo_h2/tech_config_natural.yaml index fc4467797..074974f4b 100644 --- a/examples/04_geo_h2/tech_config_natural.yaml +++ b/examples/04_geo_h2/tech_config_natural.yaml @@ -12,26 +12,29 @@ technologies: model_inputs: shared_parameters: well_lifetime: 20 + borehole_depth: 2000 + well_diameter: "small" + well_geometry: "vertical" performance_parameters: rock_type: 'peridotite' grain_size: 0.01 - site_prospectivity: 0.7 + site_prospectivity: 1 initial_wellhead_flow: 200 gas_reservoir_size: 35000 cost_parameters: - cost_year: 2020 + cost_year: 2022 + target_dollar_year: 2024 test_drill_cost: 500000 permit_fees: 905 acreage: 500 rights_cost: 3 - completion_cost: 4000000 success_chance: 20 fixed_opex: 200000 variable_opex: 0. contracting_pct: 20 contingency_pct: 50 preprod_time: 6 - as_spent_ratio: 1.10 + as_spent_ratio: 1.1 finance_parameters: eff_tax_rate: 25.74 atwacc: 4.73 diff --git a/examples/04_geo_h2/tech_config_stimulated.yaml b/examples/04_geo_h2/tech_config_stimulated.yaml index 505e3e6d7..5e7dba347 100644 --- a/examples/04_geo_h2/tech_config_stimulated.yaml +++ b/examples/04_geo_h2/tech_config_stimulated.yaml @@ -12,24 +12,27 @@ technologies: model_inputs: shared_parameters: well_lifetime: 20 + borehole_depth: 4000 + well_diameter: "small" + well_geometry: "horizontal" performance_parameters: rock_type: 'peridotite' - grain_size: 0.00125 - serp_rate: 2.0e-10 - caprock_depth: 100 - borehole_depth: 1000 + grain_size: 0.001 + olivine_phase_vol: 50 + olivine_fe_ii_conc: 15 + depth_to_formation: 1000 inj_prod_distance: 100 reaction_zone_width: 50 - iron_II_conc: 15 bulk_density: 2700 water_temp: 90 cost_parameters: - cost_year: 2020 + cost_year: 2022 + target_dollar_year: 2024 test_drill_cost: 500000 + use_cost_curve: True permit_fees: 905 acreage: 500 rights_cost: 3 - completion_cost: 6700000 success_chance: 80 fixed_opex: 200000 variable_opex: 0.298514591393227 diff --git a/h2integrate/converters/hydrogen/geologic/geoh2_baseclass.py b/h2integrate/converters/hydrogen/geologic/geoh2_baseclass.py index 8b48cb000..6cbb4510f 100644 --- a/h2integrate/converters/hydrogen/geologic/geoh2_baseclass.py +++ b/h2integrate/converters/hydrogen/geologic/geoh2_baseclass.py @@ -4,6 +4,7 @@ from h2integrate.core.utilities import BaseConfig from h2integrate.core.validators import contains from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.tools.inflation.inflate import inflate_cepci @define @@ -16,14 +17,22 @@ class GeoH2PerformanceConfig(BaseConfig): technologies/geoh2/model_inputs/performance_parameters all other parameters Parameters: - rock_type: str - The type of rock being drilled into to extract geologic hydrogen - valid options: "peridotite" - *well_lifetime*: float [years] - The length of time in years that the well will operate - grain_size: float [m] - The grain size of the rocks used to extract hydrogen + -*well_lifetime*: float [years] - The length of time in years that the well will operate + -*borehole_depth*: float [m] - Total depth of borehole (potentially including turns) + -*well_diameter*: str - The relative diameter of the well - see excel sheets for examples + valid options: "small" (OSD3500_FY25.xlsx), "large" + -*well_geometry*: str - The shape and structure of the well being drilled + valid options: "vertical", "horizontal" + -rock_type: str - The type of rock formation being drilled into to extract geoH2 + valid options: "peridotite", "bei_troctolite" + -grain_size: float [m] - The grain size of the rocks used to extract hydrogen """ - rock_type: str = field(validator=contains(["peridotite"])) well_lifetime: float = field() + borehole_depth: float = field() + well_diameter: str = field(validator=contains(["small", "large"])) + well_geometry: str = field(validator=contains(["vertical", "horizontal"])) + rock_type: str = field(validator=contains(["peridotite", "bei_troctolite"])) grain_size: float = field() @@ -38,7 +47,7 @@ class GeoH2PerformanceBaseClass(om.ExplicitComponent): well_lifetime: float [years] - The length of time in years that the well will operate grain_size: float [m] - The grain size of the rocks used to extract hydrogen Outputs: - hydrogen: array [kg/h] - The hydrogen production profile over 1 year (8760 hours) + hydrogen_out: array [kg/h] - The hydrogen production profile over 1 year (8760 hours) """ def initialize(self): @@ -48,8 +57,8 @@ def initialize(self): def setup(self): self.add_input("well_lifetime", units="year", val=self.config.well_lifetime) + self.add_input("borehole_depth", units="m", val=self.config.borehole_depth) self.add_input("grain_size", units="m", val=self.config.grain_size) - self.add_output("hydrogen_out", units="kg/h", shape=(8760,)) @@ -62,30 +71,37 @@ class GeoH2CostConfig(BaseConfig): technologies/geoh2/model_inputs/cost_parameters all other parameters Parameters: - *well_lifetime*: float [years] - the length of time that the wells will operate - cost_year: int [year] - The dollar year in which costs are modeled - test_drill_cost: float [USD] - The CAPEX cost of a test drill for a potential geoH2 well - permit_fees: float [USD] - The CAPEX cost required to obtain permits for drilling - acreage: float [acre] - The amount of land needed for the drilling operation - rights_cost: float [USD/acre] - The CAPEX cost to obtain drilling rights - completion_cost: float [USD] - The CAPEX cost per well required to complete a successful - test drill site into a full-bore production well - success_chance: float [pct] - The chance of success at any particular test drill site - fixed_opex: float [USD/year] - The OPEX cost that does not scale with H2 production - variable_opex: float [USD/kg] - The OPEX cost component that scales with H2 production - contracting_pct: float [pct] - contracting costs as % of bare capital cost - contingency_pct: float [pct] - contingency costs as % of bare capital cost - preprod_time: float [months] - time in preproduction (Fixed OPEX is charged) - as_spent_ratio: float [None] - ratio of as-spent costs to overnight costs + -*well_lifetime*: float [years] - the length of time that the wells will operate + -*borehole_depth*: float [m] - Total depth of borehole (potentially including turns) + -*well_diameter*: str - The relative diameter of the well - see excel sheets for examples + valid options: "small" (OSD3500_FY25.xlsx), "large" + -*well_geometry*: str - The shape and structure of the well being drilled + valid options: "vertical", "horizontal" + -cost_year: int [year] - The dollar year in which costs are modeled + -target_dollar_year:int [year] - The dollar year in which costs are modeled + -test_drill_cost: float [USD] - The CAPEX cost of a test drill for a potential geoH2 well + -permit_fees: float [USD] - The CAPEX cost required to obtain permits for drilling + -acreage: float [acre] - The amount of land needed for the drilling operation + -rights_cost: float [USD/acre] - The CAPEX cost to obtain drilling rights + -success_chance: float [pct] - The chance of success at any particular test drill site + -fixed_opex: float [USD/year] - The OPEX cost that does not scale with H2 production + -variable_opex: float [USD/kg] - The OPEX cost component that scales with H2 production + -contracting_pct: float [pct] - contracting costs as % of bare capital cost + -contingency_pct: float [pct] - contingency costs as % of bare capital cost + -preprod_time: float [months] - time in preproduction (Fixed OPEX is charged) + -as_spent_ratio: float [None] - ratio of as-spent costs to overnight costs """ well_lifetime: float = field() + borehole_depth: float = field() + well_diameter: str = field(validator=contains(["small", "large"])) + well_geometry: str = field(validator=contains(["vertical", "horizontal"])) cost_year: int = field() + target_dollar_year: int = field() test_drill_cost: float = field() permit_fees: float = field() acreage: float = field() rights_cost: float = field() - completion_cost: float = field() success_chance: float = field() fixed_opex: float = field() variable_opex: float = field() @@ -105,7 +121,8 @@ class GeoH2CostBaseClass(CostModelBaseClass): Inputs: well_lifetime: float [years] - the length of time that the wells will operate - cost_year: int [year] - The dollar year in which costs are modeled + cost_year: int [year] - The dollar year in which input costs are measured + target_dollar_year:int [year] - The dollar year in which costs are modeled test_drill_cost: float [USD] - The CAPEX cost of a test drill for a potential geoH2 well permit_fees: float [USD] - The CAPEX cost required to obtain permits for drilling acreage: float [acre] - The amount of land needed for the drilling operation @@ -119,7 +136,7 @@ class GeoH2CostBaseClass(CostModelBaseClass): contingency_pct: float [pct] - contingency costs as % of bare capital cost preprod_time: float [months] - time in preproduction (Fixed OPEX is charged) as_spent_ratio: float [None] - ratio of as-spent costs to overnight costs - *hydrogen*: array [kg/h] - The hydrogen production profile over 1 year (8760 hours) + *hydrogen_out*: array [kg/h] - The hydrogen production profile over 1 year (8760 hours) Outputs: bare_capital_cost float [USD] - The raw CAPEX cost without any multipliers applied CapEx float [USD] - The effective CAPEX cost with multipliers applied @@ -133,11 +150,12 @@ def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] self.add_input("well_lifetime", units="year", val=self.config.well_lifetime) + self.add_input("target_dollar_year", units="year", val=self.config.target_dollar_year) + self.add_input("borehole_depth", units="m", val=self.config.borehole_depth) self.add_input("test_drill_cost", units="USD", val=self.config.test_drill_cost) self.add_input("permit_fees", units="USD", val=self.config.permit_fees) self.add_input("acreage", units="acre", val=self.config.acreage) self.add_input("rights_cost", units="USD/acre", val=self.config.rights_cost) - self.add_input("completion_cost", units="USD", val=self.config.completion_cost) self.add_input("success_chance", units="percent", val=self.config.success_chance) self.add_input("fixed_opex", units="USD/year", val=self.config.fixed_opex) self.add_input("variable_opex", units="USD/kg", val=self.config.variable_opex) @@ -156,6 +174,30 @@ def setup(self): self.add_output("Fixed_OpEx", units="USD/year") self.add_output("Variable_OpEx", units="USD/kg") + def calc_drill_cost(self, x): + # Calculates drilling costs from pre-fit polynomial curves + diameter = self.config.well_diameter + geometry = self.config.well_geometry + if geometry == "vertical": + if diameter == "small": + coeffs = [0.224997743, 389.2448848, 745141.2795] + elif diameter == "large": + coeffs = [0.224897254, 869.2069059, 703617.3915] + elif geometry == "horizontal": + if diameter == "small": + coeffs = [0.247604262, 323.277597, 1058263.661] + elif diameter == "large": + coeffs = [0.230514884, 941.8801375, 949091.7254] + a = coeffs[0] + b = coeffs[1] + c = coeffs[2] + drill_cost = a * x**2 + b * x + c + + year = self.config.cost_year + drill_cost = inflate_cepci(drill_cost, 2010, year) + + return drill_cost + @define class GeoH2FinanceConfig(BaseConfig): @@ -166,12 +208,20 @@ class GeoH2FinanceConfig(BaseConfig): technologies/geoh2/model_inputs/finance_parameters all other parameters Parameters: - *well_lifetime*: float [years] - the length of time that the wells will operate - eff_tax_rate: float [percent] - effective tax rate - atwacc: float [percent] - after-tax weighted average cost of capital + -*well_lifetime*: float [years] - the length of time that the wells will operate + -*borehole_depth*: float [m] - Total depth of borehole (potentially including turns) + -*well_diameter*: str - The relative diameter of the well - see excel sheets for examples + valid options: "small" (OSD3500_FY25.xlsx), "large" + -*well_geometry*: str - The shape and structure of the well being drilled + valid options: "vertical", "horizontal" + -eff_tax_rate: float [percent] - effective tax rate + -atwacc: float [percent] - after-tax weighted average cost of capital """ well_lifetime: float = field() + borehole_depth: float = field() + well_diameter: str = field(validator=contains(["small", "large"])) + well_geometry: str = field(validator=contains(["vertical", "horizontal"])) eff_tax_rate: float = field() atwacc: float = field() diff --git a/h2integrate/converters/hydrogen/geologic/natural_geoh2_plant.py b/h2integrate/converters/hydrogen/geologic/natural_geoh2_plant.py index 61b373899..e4ff61300 100644 --- a/h2integrate/converters/hydrogen/geologic/natural_geoh2_plant.py +++ b/h2integrate/converters/hydrogen/geologic/natural_geoh2_plant.py @@ -2,6 +2,7 @@ from attrs import field, define from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci from h2integrate.converters.hydrogen.geologic.geoh2_baseclass import ( GeoH2CostConfig, GeoH2CostBaseClass, @@ -47,8 +48,8 @@ class NaturalGeoH2PerformanceModel(GeoH2PerformanceBaseClass): Outputs (in addition to those in geoh2_baseclass.GeoH2PerformanceBaseClass): wellhead_h2_conc: float [percent] - The mass % of H2 in the wellhead fluid lifetime_wellhead_flow: float [kg/h] - The average gas flow over the well lifetime - hydrogen_accumulated: array [kg/h] - The accumulated hydrogen production profile - over 1 year (8760 hours) + hydrogen_out_natural: array [kg/h] - The hydrogen production profile from natural + accumulations over 1 year (8760 hours) """ def setup(self): @@ -64,7 +65,7 @@ def setup(self): self.add_output("wellhead_h2_conc", units="percent") self.add_output("lifetime_wellhead_flow", units="kg/h") - self.add_output("hydrogen_accumulated", units="kg/h", shape=(n_timesteps,)) + self.add_output("hydrogen_out_natural", units="kg/h", shape=(n_timesteps,)) def compute(self, inputs, outputs): if self.config.rock_type == "peridotite": # TODO: sub-models for different rock types @@ -85,8 +86,8 @@ def compute(self, inputs, outputs): # Parse outputs outputs["wellhead_h2_conc"] = wh_h2_conc outputs["lifetime_wellhead_flow"] = avg_wh_flow - outputs["hydrogen_accumulated"] = np.full(n_timesteps, h2_accum) - outputs["hydrogen_out"] = h2_accum + outputs["hydrogen_out_natural"] = np.full(n_timesteps, h2_accum) + outputs["hydrogen_out"] = np.full(n_timesteps, h2_accum) @define @@ -97,12 +98,10 @@ class NaturalGeoH2CostConfig(GeoH2CostConfig): technologies/geoh2/model_inputs/shared_parameters for parameters marked with *asterisks* technologies/geoh2/model_inputs/cost_parameters all other parameters - Args: - cost_year (int): dollar year corresponding to costs provided in - geoh2_baseclass.GeoH2CostConfig + Currently no arguments other than those in geoh2_baseclass.GeoH2CostConfig """ - cost_year: int = field(converter=int) + pass class NaturalGeoH2CostModel(GeoH2CostBaseClass): @@ -125,22 +124,27 @@ def setup(self): super().setup() def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + # Get cost years + cost_year = self.config.cost_year + dol_year = self.config.target_dollar_year + # Calculate total capital cost per well (successful or unsuccessful) - drill = inputs["test_drill_cost"] - permit = inputs["permit_fees"] + drill = inflate_cepci(inputs["test_drill_cost"], cost_year, dol_year) + permit = inflate_cpi(inputs["permit_fees"], cost_year, dol_year) acreage = inputs["acreage"] - rights_acre = inputs["rights_cost"] + rights_acre = inflate_cpi(inputs["rights_cost"], cost_year, dol_year) cap_well = drill + permit + acreage * rights_acre # Calculate total capital cost per SUCCESSFUL well - completion = inputs["completion_cost"] + completion = self.calc_drill_cost(inputs["borehole_depth"]) + completion = inflate_cepci(completion, cost_year, dol_year) success = inputs["success_chance"] bare_capex = cap_well / success * 100 + completion outputs["bare_capital_cost"] = bare_capex # Parse in opex - fopex = inputs["fixed_opex"] - vopex = inputs["variable_opex"] + fopex = inflate_cpi(inputs["fixed_opex"], cost_year, dol_year) + vopex = inflate_cpi(inputs["variable_opex"], cost_year, dol_year) outputs["Fixed_OpEx"] = fopex outputs["Variable_OpEx"] = vopex production = np.sum(inputs["hydrogen_out"]) diff --git a/h2integrate/converters/hydrogen/geologic/stimulated_geoh2_plant.py b/h2integrate/converters/hydrogen/geologic/stimulated_geoh2_plant.py index 28938a639..26f0db999 100644 --- a/h2integrate/converters/hydrogen/geologic/stimulated_geoh2_plant.py +++ b/h2integrate/converters/hydrogen/geologic/stimulated_geoh2_plant.py @@ -2,6 +2,7 @@ from attrs import field, define from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci from h2integrate.converters.hydrogen.geologic.geoh2_baseclass import ( GeoH2CostConfig, GeoH2CostBaseClass, @@ -26,22 +27,20 @@ class StimulatedGeoH2PerformanceConfig(GeoH2PerformanceConfig): technologies/geoh2/model_inputs/performance_parameters all other parameters Parameters (in addition to those in geoh2_baseclass.GeoH2PerformanceConfig): - -serp_rate: float [1/s] - Rate constant of serpentinization reaction - -caprock_depth: float [m] - Depth below surface of caprock not participating in rxn - -borehole_depth: float [m] - Total depth of borehole (potentially including turns) + -olivine_phase_vol: float [percent] - The volume percent of olivine in the formation + -olivine_fe_ii_conc: float [percent] - The mass percent of iron (II) in the olivine + -depth_to_formation: float [m] - Depth below surface of caprock not participating in rxn -inj_prod_distance: float [m] - Distance between injection and production wells -reaction_zone_width: float [m] - Estimated width of rock volume participating in the rxn - -iron_II_conc: float [percent] - Mass % of iron (II) in the rock -bulk_density: float [kg/m**3] - Bulk density of rock -water_temp: float [C] - Temperature of water being injected """ - serp_rate: float = field() # 1/sec - caprock_depth: float = field() # meters - borehole_depth: float = field() # meters + olivine_phase_vol: float = field() # vol pct + olivine_fe_ii_conc: float = field() # wt pct + depth_to_formation: float = field() # meters inj_prod_distance: float = field() # meters reaction_zone_width: float = field() # meters - iron_II_conc: float = field() # wt_pct bulk_density: float = field() # kg/m^3 water_temp: float = field() # deg C @@ -56,16 +55,15 @@ class StimulatedGeoH2PerformanceModel(GeoH2PerformanceBaseClass): All inputs come from StimulatedGeoH2PerformanceConfig Inputs (in addition to those in geoh2_baseclass.GeoH2PerformanceBaseClass): - -serp_rate: float [1/s] - Rate constant of serpentinization reaction - -caprock_depth: float [m] - Depth below surface of caprock not participating in rxn - -borehole_depth: float [m] - Total depth of borehole (potentially including turns) + -olivine_phase_vol: float [percent] - The volume percent of olivine in the formation + -olivine_fe_ii_conc: float [percent] - The mass percent of iron (II) in the olivine + -depth_to_formation: float [m] - Depth below surface of caprock not participating in rxn -inj_prod_distance: float [m] - Distance between injection and production wells -reaction_zone_width: float [m] - Estimated width of rock volume participating in the rxn - -iron_II_conc: float [percent] - Mass % of iron (II) in the rock -bulk_density: float [kg/m**3] - Bulk density of rock -water_temp: float [C] - Temperature of water being injected Outputs (in addition to those in geoh2_baseclass.GeoH2PerformanceBaseClass): - -hydrogen_produced: array [kg/h] - The hydrogen production profile from stimulation + -hydrogen_out_stim: array [kg/h] - The hydrogen production profile from stimulation over 1 year (8760 hours) """ @@ -76,35 +74,42 @@ def setup(self): ) super().setup() - self.add_input("serp_rate", units="1/s", val=self.config.serp_rate) - self.add_input("caprock_depth", units="m", val=self.config.caprock_depth) - self.add_input("borehole_depth", units="m", val=self.config.borehole_depth) + self.add_input("olivine_phase_vol", units="percent", val=self.config.olivine_phase_vol) + self.add_input("olivine_fe_ii_conc", units="percent", val=self.config.olivine_fe_ii_conc) + self.add_input("depth_to_formation", units="m", val=self.config.depth_to_formation) self.add_input("inj_prod_distance", units="m", val=self.config.inj_prod_distance) self.add_input("reaction_zone_width", units="m", val=self.config.reaction_zone_width) - self.add_input("iron_II_conc", units="percent", val=self.config.iron_II_conc) self.add_input("bulk_density", units="kg/m**3", val=self.config.bulk_density) self.add_input("water_temp", units="C", val=self.config.water_temp) - self.add_output("hydrogen_produced", units="kg/h", shape=n_timesteps) + self.add_output("hydrogen_out_stim", units="kg/h", shape=n_timesteps) def compute(self, inputs, outputs): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] lifetime = int(inputs["well_lifetime"][0]) - if self.config.rock_type == "peridotite": # TODO: sub-models for different rock types - # Calculate serpentinization penetration rate - grain_size = inputs["grain_size"] - serp_rate = inputs["serp_rate"] - pen_rate = grain_size * serp_rate + # Calculate serpentinization penetration rate + grain_size = inputs["grain_size"] + lin_coeff = 1.00e-6 + exp_coeff = -0.000209 + orig_size = 0.0000685 # meters + temp = inputs["water_temp"] + serp_rate = ( + lin_coeff + * np.exp(exp_coeff * (temp - 260) ** 2) + * 10 ** np.log10(orig_size / grain_size) + ) + pen_rate = grain_size * serp_rate # Model rock deposit size - height = inputs["borehole_depth"] - inputs["caprock_depth"] + height = inputs["borehole_depth"] - inputs["depth_to_formation"] length = inputs["inj_prod_distance"] width = inputs["reaction_zone_width"] rock_volume = height * length * width - n_grains = rock_volume / grain_size**3 + v_olivine = inputs["olivine_phase_vol"] / 100 + n_grains = rock_volume / grain_size**3 * v_olivine rho = inputs["bulk_density"] - X_Fe = inputs["iron_II_conc"] + X_Fe = inputs["olivine_fe_ii_conc"] / 100 # Model shrinking reactive particle years = np.linspace(1, lifetime, lifetime) @@ -113,12 +118,12 @@ def compute(self, inputs, outputs): np.zeros(len(sec_elapsed)), grain_size - 2 * pen_rate * sec_elapsed ) reacted_volume = n_grains * (grain_size**3 - core_diameter**3) - reacted_mass = reacted_volume * rho * X_Fe / 100 + reacted_mass = reacted_volume * rho * X_Fe h2_produced = reacted_mass * M_H2 / M_Fe # Parse outputs h2_prod_avg = h2_produced[-1] / lifetime / n_timesteps - outputs["hydrogen_produced"] = h2_prod_avg + outputs["hydrogen_out_stim"] = h2_prod_avg outputs["hydrogen_out"] = h2_prod_avg @@ -131,11 +136,12 @@ class StimulatedGeoH2CostConfig(GeoH2CostConfig): technologies/geoh2/model_inputs/cost_parameters all other parameters Args: - cost_year (int): dollar year corresponding to costs provided in - geoh2_baseclass.GeoH2CostConfig + use_cost_curve (bool): Whether to use the built in drilling cost curve or a manual value + constant_drill_cost (float): If use_cost_curve is False, the constant cost of drilling """ - cost_year: int = field(converter=int) + use_cost_curve: bool = field() + constant_drill_cost: float = field(default=1000000) class StimulatedGeoH2CostModel(GeoH2CostBaseClass): @@ -158,22 +164,31 @@ def setup(self): super().setup() def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + # Get cost years + cost_year = self.config.cost_year + dol_year = self.config.target_dollar_year + # Calculate total capital cost per well (successful or unsuccessful) - drill = inputs["test_drill_cost"] - permit = inputs["permit_fees"] + drill = inflate_cepci(inputs["test_drill_cost"], cost_year, dol_year) + permit = inflate_cpi(inputs["permit_fees"], cost_year, dol_year) acreage = inputs["acreage"] - rights_acre = inputs["rights_cost"] + rights_acre = inflate_cpi(inputs["rights_cost"], cost_year, dol_year) cap_well = drill + permit + acreage * rights_acre # Calculate total capital cost per SUCCESSFUL well - completion = inputs["completion_cost"] + if self.config.use_cost_curve: + completion = self.calc_drill_cost(inputs["borehole_depth"]) + else: + completion = self.config.constant_drill_cost + completion = inflate_cepci(completion, 2010, cost_year) + completion = inflate_cepci(completion, cost_year, dol_year) success = inputs["success_chance"] bare_capex = cap_well / success * 100 + completion outputs["bare_capital_cost"] = bare_capex # Parse in opex - fopex = inputs["fixed_opex"] - vopex = inputs["variable_opex"] + fopex = inflate_cpi(inputs["fixed_opex"], cost_year, dol_year) + vopex = inflate_cpi(inputs["variable_opex"], cost_year, dol_year) outputs["Fixed_OpEx"] = fopex outputs["Variable_OpEx"] = vopex production = np.sum(inputs["hydrogen_out"]) diff --git a/tests/h2integrate/test_hydrogen/test_geologic_h2.py b/tests/h2integrate/test_hydrogen/test_geologic_h2.py index 8360015a3..84f0aa368 100644 --- a/tests/h2integrate/test_hydrogen/test_geologic_h2.py +++ b/tests/h2integrate/test_hydrogen/test_geologic_h2.py @@ -11,10 +11,10 @@ def test_natural_geoh2(subtests): with subtests.test("H2 Production"): h2_prod = h2i_nat.plant.geoh2.natural_geoh2_performance.get_val("hydrogen_out") - assert np.mean(h2_prod) == approx(48.94393478, 1e-6) + assert np.mean(h2_prod) == approx(117.72509205764842, 1e-6) with subtests.test("LCOH"): lcoh = h2i_nat.plant.geoh2.geoh2_finance.get_val("LCOH") - assert lcoh == approx(3.14353262, 1e-6) + assert lcoh == approx(1.2440904, 1e-6) def test_stimulated_geoh2(subtests): @@ -23,7 +23,7 @@ def test_stimulated_geoh2(subtests): with subtests.test("H2 Production"): h2_prod = h2i_stim.plant.geoh2.stimulated_geoh2_performance.get_val("hydrogen_out") - assert np.mean(h2_prod) == approx(108.49331847, 1e-6) + assert np.mean(h2_prod) == approx(155.03934945719536, 1e-6) with subtests.test("LCOH"): lcoh = h2i_stim.plant.geoh2.geoh2_finance.get_val("LCOH") - assert lcoh == approx(1.8666849, 1e-6) + assert lcoh == approx(1.74803827, 1e-6) From 17b485945558b243f6ae868c7f9edf2ac5b81e70 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Thu, 6 Nov 2025 16:54:37 -0600 Subject: [PATCH 50/79] Merge Iron Branch into Develop (#360) * Switching HB cases * Getting through to plot * Fixing hydrogen ratio * Running plots * Changing TX site back to default * Fix plot * Removing methanol * Made iron example files, no code to run them * Creating wrapper * It runs! * Fixes to lca * run_iron reproducing number from old setup * added more inputs to iron wrapper, changed lcoe to be in USD per MWh * minor cleanups to tech config and iron wrapper * added test for baseline case * added more iron tests and added docstring to IronConfig * connected taconite pellet input * added iron ore cost and performance model * iron ore tests are passing * cleaned up iron ore tests * Renaming iron config inputs * added init file * added test init file * added iron electrowinning model * All iron cases being tested * rename files * Added iron to CI * added iron transport model * Updated ammonia synloop example * Reverting changes to 12 example * Fixes for some examples * Reverting some HOPP wrapper changes * updated test value for chicago iron ore transport * added geopy to dependencies * eaf wip * finish testing * Running iron_mine as example * Old and new closely matching * Getting ready to merge * Reverting example * Run all cases in example * Fixing tests * Fixing om test assertions * Merge branch 'iron-dev2' into iron-merge2 (#341) * remove ammonia changes * update example number * Removing h2integrate_simulation --------- Co-authored-by: jmartin4 Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Co-authored-by: Jonathan Martin <94018654+jmartin4nrel@users.noreply.github.com> Co-authored-by: John Jasa --- examples/21_iron_mn_to_il/21_iron.yaml | 7 + .../21_iron_mn_to_il/21_iron_modular.yaml | 7 + examples/21_iron_mn_to_il/driver_config.yaml | 5 + examples/21_iron_mn_to_il/plant_config.yaml | 59 +++ .../plant_config_modular.yaml | 66 +++ examples/21_iron_mn_to_il/run_iron.py | 41 ++ examples/21_iron_mn_to_il/tech_config.yaml | 26 ++ .../21_iron_mn_to_il/tech_config_modular.yaml | 67 +++ examples/21_iron_mn_to_il/test_inputs.csv | 3 + .../21_iron_mn_to_il/test_inputs_modular.csv | 3 + h2integrate/converters/iron/__init__.py | 0 h2integrate/converters/iron/iron_mine.py | 233 ++++++++++ h2integrate/converters/iron/iron_plant.py | 284 ++++++++++++ h2integrate/converters/iron/iron_transport.py | 228 ++++++++++ h2integrate/converters/iron/iron_wrapper.py | 277 ++++++++++++ .../iron/old_input/default_fin_config.yaml | 39 ++ .../old_input/h2integrate_config_modular.yaml | 403 ++++++++++++++++++ .../iron/old_input/hopp_config.yaml | 73 ++++ h2integrate/converters/iron/test/__init__.py | 0 .../converters/iron/test/test_iron_mine.py | 161 +++++++ .../converters/iron/test/test_iron_plant.py | 103 +++++ .../iron/test/test_iron_transport.py | 263 ++++++++++++ .../iron/test/test_iron_wrapper_baseline.py | 334 +++++++++++++++ .../converters/steel/electric_arc_furnance.py | 269 ++++++++++++ .../steel/test/test_electric_arc_furnance.py | 99 +++++ h2integrate/core/h2integrate_model.py | 6 +- h2integrate/core/supported_models.py | 20 + h2integrate/finances/profast_base.py | 10 +- .../iron/martin_ore/variable_om_cost.py | 33 ++ .../technologies/iron/rosner/cost_model.py | 13 + .../technologies/iron/rosner/finance_model.py | 7 + .../iron/rosner_ore/variable_om_cost.py | 33 ++ h2integrate/tools/eco/utilities.py | 8 +- pyproject.toml | 1 + 34 files changed, 3172 insertions(+), 9 deletions(-) create mode 100644 examples/21_iron_mn_to_il/21_iron.yaml create mode 100644 examples/21_iron_mn_to_il/21_iron_modular.yaml create mode 100644 examples/21_iron_mn_to_il/driver_config.yaml create mode 100644 examples/21_iron_mn_to_il/plant_config.yaml create mode 100644 examples/21_iron_mn_to_il/plant_config_modular.yaml create mode 100644 examples/21_iron_mn_to_il/run_iron.py create mode 100644 examples/21_iron_mn_to_il/tech_config.yaml create mode 100644 examples/21_iron_mn_to_il/tech_config_modular.yaml create mode 100644 examples/21_iron_mn_to_il/test_inputs.csv create mode 100644 examples/21_iron_mn_to_il/test_inputs_modular.csv create mode 100644 h2integrate/converters/iron/__init__.py create mode 100644 h2integrate/converters/iron/iron_mine.py create mode 100644 h2integrate/converters/iron/iron_plant.py create mode 100644 h2integrate/converters/iron/iron_transport.py create mode 100644 h2integrate/converters/iron/iron_wrapper.py create mode 100644 h2integrate/converters/iron/old_input/default_fin_config.yaml create mode 100644 h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml create mode 100644 h2integrate/converters/iron/old_input/hopp_config.yaml create mode 100644 h2integrate/converters/iron/test/__init__.py create mode 100644 h2integrate/converters/iron/test/test_iron_mine.py create mode 100644 h2integrate/converters/iron/test/test_iron_plant.py create mode 100644 h2integrate/converters/iron/test/test_iron_transport.py create mode 100644 h2integrate/converters/iron/test/test_iron_wrapper_baseline.py create mode 100644 h2integrate/converters/steel/electric_arc_furnance.py create mode 100644 h2integrate/converters/steel/test/test_electric_arc_furnance.py create mode 100644 h2integrate/simulation/technologies/iron/martin_ore/variable_om_cost.py create mode 100644 h2integrate/simulation/technologies/iron/rosner_ore/variable_om_cost.py diff --git a/examples/21_iron_mn_to_il/21_iron.yaml b/examples/21_iron_mn_to_il/21_iron.yaml new file mode 100644 index 000000000..33588912d --- /dev/null +++ b/examples/21_iron_mn_to_il/21_iron.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "This reference hybrid plant is located in Minnesota and contains wind, solar, and battery storage technologies. The system is designed to produce hydrogen using an electrolyzer and also produce steel using a grid-connected plant." + +driver_config: "driver_config.yaml" +technology_config: "tech_config.yaml" +plant_config: "plant_config.yaml" diff --git a/examples/21_iron_mn_to_il/21_iron_modular.yaml b/examples/21_iron_mn_to_il/21_iron_modular.yaml new file mode 100644 index 000000000..4f47c5d7a --- /dev/null +++ b/examples/21_iron_mn_to_il/21_iron_modular.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "This reference hybrid plant is located in Minnesota and contains wind, solar, and battery storage technologies. The system is designed to produce hydrogen using an electrolyzer and also produce steel using a grid-connected plant." + +driver_config: "driver_config.yaml" +technology_config: "tech_config_modular.yaml" +plant_config: "plant_config_modular.yaml" diff --git a/examples/21_iron_mn_to_il/driver_config.yaml b/examples/21_iron_mn_to_il/driver_config.yaml new file mode 100644 index 000000000..d3b06a03e --- /dev/null +++ b/examples/21_iron_mn_to_il/driver_config.yaml @@ -0,0 +1,5 @@ +name: "driver_config" +description: "This analysis runs a hybrid plant to match the first example in H2Integrate" + +general: + folder_output: outputs diff --git a/examples/21_iron_mn_to_il/plant_config.yaml b/examples/21_iron_mn_to_il/plant_config.yaml new file mode 100644 index 000000000..064db21d1 --- /dev/null +++ b/examples/21_iron_mn_to_il/plant_config.yaml @@ -0,0 +1,59 @@ +name: "plant_config" +description: "This plant is located in MN, USA..." + +site: + latitude: 41.717 + longitude: -88.398 + + # array of polygons defining boundaries with x/y coords + boundaries: [ + { + x: [0.0, 1000.0, 1000.0, 0.0], + y: [0.0, 0.0, 100.0, 1000.0], + }, + { + x: [2000.0, 2500.0, 2000.0], + y: [2000.0, 2000.0, 2500.0], + } + ] + +# array of arrays containing left-to-right technology +# interconnections; can support bidirectional connections +# with the reverse definition. +# this will naturally grow as we mature the interconnected tech +technology_interconnections: [ +] + +plant: + plant_life: 30 +finance_parameters: + finance_groups: + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 + target_dollar_year: 2022 + finance_subgroups: + iron: + commodity: "iron" + commodity_stream: "iron" #use electricity from wind in finance calc + technologies: ["iron"] diff --git a/examples/21_iron_mn_to_il/plant_config_modular.yaml b/examples/21_iron_mn_to_il/plant_config_modular.yaml new file mode 100644 index 000000000..64e4dfdbf --- /dev/null +++ b/examples/21_iron_mn_to_il/plant_config_modular.yaml @@ -0,0 +1,66 @@ +name: "plant_config" +description: "This plant is located in MN, USA..." + +site: + latitude: 41.717 + longitude: -88.398 + + # array of polygons defining boundaries with x/y coords + boundaries: [ + { + x: [0.0, 1000.0, 1000.0, 0.0], + y: [0.0, 0.0, 100.0, 1000.0], + }, + { + x: [2000.0, 2500.0, 2000.0], + y: [2000.0, 2000.0, 2500.0], + } + ] + +# array of arrays containing left-to-right technology +# interconnections; can support bidirectional connections +# with the reverse definition. +# this will naturally grow as we mature the interconnected tech +technology_interconnections: [ + ["iron_mine","iron_transport","total_iron_ore_produced"], + ["iron_transport","iron_plant","iron_transport_cost"], + ["finance_subgroup_iron_ore","iron_plant","price_iron_ore"], +] + +plant: + plant_life: 30 +finance_parameters: + finance_groups: + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 + target_dollar_year: 2022 + finance_subgroups: + iron_ore: + commodity: "iron_ore" + commodity_stream: "iron_mine" + technologies: ["iron_mine"] + pig_iron: + commodity: "pig_iron" + commodity_stream: "iron_plant" + technologies: ["iron_plant"] # diff --git a/examples/21_iron_mn_to_il/run_iron.py b/examples/21_iron_mn_to_il/run_iron.py new file mode 100644 index 000000000..6550b562a --- /dev/null +++ b/examples/21_iron_mn_to_il/run_iron.py @@ -0,0 +1,41 @@ +from pathlib import Path + +from h2integrate.tools.run_cases import modify_tech_config, load_tech_config_cases +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +# Create H2Integrate models - one with iron_wrapper, one with modular iron components +model = H2IntegrateModel("21_iron.yaml") +model_modular = H2IntegrateModel("21_iron_modular.yaml") + +# Load cases +case_file = Path("test_inputs.csv") +case_file_modular = Path("test_inputs_modular.csv") +cases = load_tech_config_cases(case_file) +cases_modular = load_tech_config_cases(case_file_modular) + +# Modify and run the model for different cases +casenames = [ + "Case 1", + "Case 2", + "Case 3", + "Case 4", +] +lcois = [] +lcois_modular = [] + +for casename in casenames: + model = modify_tech_config(model, cases[casename]) + model_modular = modify_tech_config(model_modular, cases_modular[casename]) + model.run() + model_modular.run() + model.post_process() + model_modular.post_process() + lcois.append(float(model.model.get_val("iron.LCOI")[0])) + lcois_modular.append( + float(model_modular.model.get_val("finance_subgroup_pig_iron.price_pig_iron")[0]) + ) + +# Compare the LCOIs from iron_wrapper and modular iron +print(lcois) +print(lcois_modular) diff --git a/examples/21_iron_mn_to_il/tech_config.yaml b/examples/21_iron_mn_to_il/tech_config.yaml new file mode 100644 index 000000000..f62a0317f --- /dev/null +++ b/examples/21_iron_mn_to_il/tech_config.yaml @@ -0,0 +1,26 @@ +name: "technology_config" +description: "This hybrid plant produces iron" + +technologies: + iron: + performance_model: + model: "iron" + model_inputs: + cost_parameters: + # h2_kgpy: 68583942.6460997 #1000000 #68583942.6460997 + LCOE: 58.02 #$/MWh + LCOH: 7.10 #$/kg + ROM_iron_site_name: "Hibbing" #"Hibbing", "Northshore", "United", "Minorca" or "Tilden" + iron_ore_product_selection: "drg_taconite_pellets" #"drg_taconite_pellets" or "std_taconite_pellets" + reduced_iron_product_selection: "ng_dri" #"h2_dri" or "ng_dri" + structural_iron_product_selection: "none" #"eaf_steel" or "none" + cost_year: 2020 + reduced_iron_site_latitude: 41.717 + reduced_iron_site_longitude: -88.398 + transport_cost_included: True + ng_mod: False + ng_price: 4 + capex_mod: False + capex_mod_pct: 0 + +# baseline 843.37604007 diff --git a/examples/21_iron_mn_to_il/tech_config_modular.yaml b/examples/21_iron_mn_to_il/tech_config_modular.yaml new file mode 100644 index 000000000..afe79faf9 --- /dev/null +++ b/examples/21_iron_mn_to_il/tech_config_modular.yaml @@ -0,0 +1,67 @@ +name: "technology_config" +description: "This hybrid plant produces iron" + +technologies: + iron_mine: + performance_model: + model: "iron_mine_performance" + cost_model: + model: "iron_mine_cost" + model_inputs: + shared_parameters: + mine: "Northshore" + taconite_pellet_type: "drg" + performance_parameters: + ore_cf_estimate: 0.9 + model_name: "martin_ore" + cost_parameters: + LCOE: 58.02 + LCOH: 7.10 + model_name: "martin_ore" + varom_model_name: "martin_ore" + installation_years: 3 + operational_year: 2035 + plant_life: 30 + gen_inflation: 0.025 + financial_assumptions: + total income tax rate: 0.2574 + capital gains tax rate: 0.15 + leverage after tax nominal discount rate: 0.10893 + debt equity ratio of initial financing: 0.624788 + debt interest rate: 0.050049 + iron_transport: + performance_model: + model: "iron_transport_performance" + cost_model: + model: "iron_transport_cost" + model_inputs: + performance_parameters: + find_closest_ship_site: False + shipment_site: "Chicago" + cost_parameters: + transport_year: 2022 + cost_year: 2022 + iron_plant: + performance_model: + model: "iron_plant_performance" + cost_model: + model: "iron_plant_cost" + model_inputs: + shared_parameters: + winning_type: "ng" + iron_win_capacity: 1418095 + site_name: "IL" + performance_parameters: + win_capacity_demon: "iron" + model_name: "rosner" + cost_parameters: + LCOE: 58.02 + LCOH: 7.10 + LCOI_ore: 0 #125.25996463784443 + iron_transport_cost: 30.566808424134745 + ore_profit_pct: 6.0 + varom_model_name: "rosner" + installation_years: 3 + operational_year: 2035 + +# baseline 843.37604007 diff --git a/examples/21_iron_mn_to_il/test_inputs.csv b/examples/21_iron_mn_to_il/test_inputs.csv new file mode 100644 index 000000000..5e999eae2 --- /dev/null +++ b/examples/21_iron_mn_to_il/test_inputs.csv @@ -0,0 +1,3 @@ +Index 0,Index 1,Index 2,Index 3,Index 4,Type,Case 1,Case 2,Case 3,Case 4, +technologies,iron,model_inputs,cost_parameters,ROM_iron_site_name,str,Northshore,Hibbing,Northshore,Hibbing, +technologies,iron,model_inputs,cost_parameters,iron_ore_product_selection,str,std_taconite_pellets,std_taconite_pellets,drg_taconite_pellets,drg_taconite_pellets, diff --git a/examples/21_iron_mn_to_il/test_inputs_modular.csv b/examples/21_iron_mn_to_il/test_inputs_modular.csv new file mode 100644 index 000000000..66387f458 --- /dev/null +++ b/examples/21_iron_mn_to_il/test_inputs_modular.csv @@ -0,0 +1,3 @@ +Index 0,Index 1,Index 2,Index 3,Index 4,Type,Case 1,Case 2,Case 3,Case 4, +technologies,iron_mine,model_inputs,shared_parameters,mine,str,Northshore,Hibbing,Northshore,Hibbing, +technologies,iron_mine,model_inputs,shared_parameters,taconite_pellet_type,str,std,std,drg,drg, diff --git a/h2integrate/converters/iron/__init__.py b/h2integrate/converters/iron/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/converters/iron/iron_mine.py b/h2integrate/converters/iron/iron_mine.py new file mode 100644 index 000000000..ec21c1b15 --- /dev/null +++ b/h2integrate/converters/iron/iron_mine.py @@ -0,0 +1,233 @@ +import numpy as np +import pandas as pd +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains, range_val +from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.tools.inflation.inflate import inflate_cpi +from h2integrate.simulation.technologies.iron.iron import ( + IronCostModelConfig, + IronPerformanceModelConfig, + IronPerformanceModelOutputs, + run_iron_cost_model, + run_size_iron_plant_performance, +) +from h2integrate.simulation.technologies.iron.martin_ore.variable_om_cost import ( + martin_ore_variable_om_cost, +) +from h2integrate.simulation.technologies.iron.rosner_ore.variable_om_cost import ( + rosner_ore_variable_om_cost, +) + + +@define +class IronMineBaseConfig(BaseConfig): + mine: str = field(validator=contains(["Hibbing", "Northshore", "United", "Minorca", "Tilden"])) + + # product_selection + taconite_pellet_type: str = field( + converter=(str.lower, str.strip), validator=contains(["std", "drg"]) + ) + + model_name: str = field(default="martine_ore") # only option at the moment + model_fp: str = field(default="") + inputs_fp: str = field(default="") + coeffs_fp: str = field(default="") + refit_coeffs: bool = field(default=False) + + def make_model_dict(self): + keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] + d = self.as_dict() + model_dict = {k: v for k, v in d.items() if k in keys} + model_dict.update({"name": self.model_name}) + return model_dict + + def make_site_dict(self): + return {"name": self.mine} + + +@define +class IronMinePerformanceConfig(IronMineBaseConfig): + ore_cf_estimate: float = field(default=0.9, validator=range_val(0, 1)) # ore + + def make_model_dict(self): + keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] + d = self.as_dict() + model_dict = {k: v for k, v in d.items() if k in keys} + model_dict.update({"name": self.model_name}) + return model_dict + + +class IronMinePerformanceComponent(om.ExplicitComponent): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + self.config = IronMinePerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=False, + ) + self.add_discrete_output( + "iron_mine_performance", val=pd.DataFrame, desc="iron mine performance results" + ) + self.add_output("iron_ore_out", val=0.0, shape=n_timesteps, units="kg/h") + self.add_output("total_iron_ore_produced", val=0.0, units="t/year") + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + ore_performance_inputs = {"input_capacity_factor_estimate": self.config.ore_cf_estimate} + ore_model_inputs = self.config.make_model_dict() + iron_mine_site = self.config.make_site_dict() + performance_config = IronPerformanceModelConfig( + product_selection=f"{self.config.taconite_pellet_type}_taconite_pellets", + site=iron_mine_site, + model=ore_model_inputs, + params=ore_performance_inputs, + ) + iron_mine_performance = run_size_iron_plant_performance(performance_config) + # wltpy = wet long tons per year + ore_produced_wltpy = iron_mine_performance.performances_df.set_index("Name").loc[ + "Ore pellets produced" + ][self.config.mine] + ore_produced_wmtpy = ore_produced_wltpy * 1.016047 # wmtpy = wet metric tonnes per year + ore_produced_mtpy = ore_produced_wmtpy * 0.98 # mtpy = dry metric tonnes per year + discrete_outputs["iron_mine_performance"] = iron_mine_performance.performances_df + outputs["iron_ore_out"] = ore_produced_mtpy * 1000 / n_timesteps + outputs["total_iron_ore_produced"] = ore_produced_mtpy + + +@define +class IronMineCostConfig(IronMineBaseConfig): + LCOE: float = field(kw_only=True) # $/MWh + LCOH: float = field(kw_only=True) # $/kg + varom_model_name: str = field( + default="martin_ore", validator=contains(["martin_ore", "rosner_ore"]) + ) + operational_year: int = field(converter=int, kw_only=True) + installation_years: int | float = field(kw_only=True) + plant_life: int = field(converter=int, kw_only=True) + cost_year: int = field(converter=int, kw_only=True) + + def make_model_dict(self): + keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] + d = self.as_dict() + model_dict = {k: v for k, v in d.items() if k in keys} + model_dict.update({"name": self.model_name}) + return model_dict + + def make_cost_dict(self): + keys = ["operational_year", "installation_years", "plant_life"] + d = self.as_dict() + cost_dict = {k: v for k, v in d.items() if k in keys} + return cost_dict + + +class IronMineCostComponent(CostModelBaseClass): + def setup(self): + self.target_dollar_year = self.options["plant_config"]["finance_parameters"][ + "cost_adjustment_parameters" + ]["target_dollar_year"] + self.plant_life = self.options["plant_config"]["plant"]["plant_life"] + + config_dict = merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") + config_dict.update({"cost_year": self.target_dollar_year}) + config_dict.update({"plant_life": self.plant_life}) + + self.config = IronMineCostConfig.from_dict(config_dict, strict=False) + + super().setup() + self.add_input("LCOE", val=self.config.LCOE, units="USD/MW/h") + self.add_input("LCOH", val=self.config.LCOH, units="USD/kg") + self.add_input("total_iron_ore_produced", val=1.0, units="t/year") + self.add_discrete_input( + "iron_mine_performance", val=pd.DataFrame, desc="iron mine performance results" + ) + self.add_discrete_output("iron_mine_cost", val=pd.DataFrame, desc="iron mine cost results") + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + ore_performance = IronPerformanceModelOutputs(discrete_inputs["iron_mine_performance"]) + + ore_cost_inputs = { + "lcoe": inputs["LCOE"][0] / 1e3, + "lcoh": inputs["LCOH"][0], + } + cost_dict = self.config.make_cost_dict() + ore_cost_inputs.update(cost_dict) + + ore_model_inputs = self.config.make_model_dict() + iron_mine_site = self.config.make_site_dict() + cost_config = IronCostModelConfig( + product_selection=f"{self.config.taconite_pellet_type}_taconite_pellets", + site=iron_mine_site, + model=ore_model_inputs, + params=ore_cost_inputs, + performance=ore_performance, + ) + iron_ore_cost = run_iron_cost_model(cost_config) + + discrete_outputs["iron_mine_cost"] = iron_ore_cost.costs_df + + # Now taking some stuff from finance + cost_df = iron_ore_cost.costs_df.set_index("Name") + cost_ds = cost_df.loc[:, self.config.mine] + cost_names = cost_df.index.values + cost_types = cost_df.loc[:, "Type"].values + cost_units = cost_df.loc[:, "Unit"].values + + capex = 0 + fixed_om = 0 + variable_om = 0 + capital_idxs = np.where(cost_types == "capital")[0] + for idx in capital_idxs: + cost_names[idx] + unit = cost_units[idx] # Units for capital costs should be " $"" + source_year = int(unit[:4]) + source_year_cost = cost_ds.iloc[idx] + cost = inflate_cpi(source_year_cost, source_year, self.config.cost_year) + capex += cost + + # Add fixed opex costs + fixed_idxs = np.where(cost_types == "fixed opex")[0] + for idx in fixed_idxs: + cost_names[idx] + unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" + source_year = int(unit[:4]) + source_year_cost = cost_ds.iloc[idx] + fixed_cost = inflate_cpi(source_year_cost, source_year, self.config.cost_year) + fixed_om += fixed_cost + # NOTE: why are we double counting this cost? + fixed_om * 6 / 12 # TODO: output installation cost? + + var_idxs = np.where(cost_types == "variable opex")[0] + for idx in var_idxs: + unit = cost_units[idx] # Should be " $ per " + source_year = int(unit[:4]) + source_year_cost = cost_ds.iloc[idx] + cost = inflate_cpi(source_year_cost, source_year, self.config.cost_year) + variable_om += cost + + analysis_start = self.config.operational_year - self.config.installation_years + var_om_td = 0 + # below is for rosner finance model + if "rosner" in self.config.varom_model_name: + var_om_td = rosner_ore_variable_om_cost( + self.config.mine, cost_df, analysis_start, self.config.cost_year, self.plant_life + ) + else: + var_om_td = martin_ore_variable_om_cost( + self.config.mine, cost_df, analysis_start, self.config.cost_year, self.plant_life + ) + + variable_om += var_om_td + + total_production = inputs["total_iron_ore_produced"] + variable_om = np.multiply(total_production, variable_om) + + outputs["CapEx"] = capex + outputs["OpEx"] = fixed_om + outputs["VarOpEx"] = variable_om diff --git a/h2integrate/converters/iron/iron_plant.py b/h2integrate/converters/iron/iron_plant.py new file mode 100644 index 000000000..52f4ec3ec --- /dev/null +++ b/h2integrate/converters/iron/iron_plant.py @@ -0,0 +1,284 @@ +import numpy as np +import pandas as pd +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains +from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci +from h2integrate.simulation.technologies.iron.iron import ( + IronCostModelConfig, + IronPerformanceModelConfig, + IronPerformanceModelOutputs, + run_iron_cost_model, + run_size_iron_plant_performance, +) +from h2integrate.simulation.technologies.iron.load_top_down_coeffs import load_top_down_coeffs + + +@define +class IronPlantBaseConfig(BaseConfig): + winning_type: str = field( + kw_only=True, converter=(str.lower, str.strip), validator=contains(["h2", "ng"]) + ) # product selection + iron_win_capacity: float | int = field(default=1418095) # plant_capacity_mtpy + win_capacity_demon: str = field( + default="iron", converter=(str.lower, str.strip), validator=contains(["iron", "steel"]) + ) # capacity_denominator + + model_name: str = field(default="rosner") # only option at the moment + model_fp: str = field(default="") + inputs_fp: str = field(default="") + coeffs_fp: str = field(default="") + refit_coeffs: bool = field(default=False) + site_name: str = field(default="winning_site") + + def make_model_dict(self): + keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] + d = self.as_dict() + model_dict = {k: v for k, v in d.items() if k in keys} + model_dict.update({"name": self.model_name}) + return model_dict + + def make_site_dict(self): + return {"name": self.site_name} + + +@define +class IronPlantPerformanceConfig(IronPlantBaseConfig): + def make_model_dict(self): + keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] + d = self.as_dict() + model_dict = {k: v for k, v in d.items() if k in keys} + model_dict.update({"name": self.model_name}) + return model_dict + + +class IronPlantPerformanceComponent(om.ExplicitComponent): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + self.config = IronPlantPerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=False, + ) + + self.add_discrete_output( + "iron_plant_performance", val=pd.DataFrame, desc="iron plant performance results" + ) + self.add_output("pig_iron_out", val=0.0, shape=n_timesteps, units="kg/h") + self.add_output("total_pig_iron_produced", val=0.0, units="t/year") + # self.add_output("total_steel_produced", val=0.0, units="t/year") + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + iron_plant_performance_inputs = { + "plant_capacity_mtpy": self.config.iron_win_capacity, + "capacity_denominator": self.config.win_capacity_demon, + } + iron_plant_model_inputs = self.config.make_model_dict() + iron_plant_site = self.config.make_site_dict() + performance_config = IronPerformanceModelConfig( + product_selection=f"{self.config.winning_type}_dri", + site=iron_plant_site, + model=iron_plant_model_inputs, + params=iron_plant_performance_inputs, + ) + iron_plant_performance = run_size_iron_plant_performance(performance_config) + # wltpy = wet long tons per year + pig_iron_produced_mtpy = iron_plant_performance.performances_df.set_index("Name").loc[ + "Pig Iron Production" + ]["Model"] + outputs["pig_iron_out"] = pig_iron_produced_mtpy * 1000 / n_timesteps + outputs["total_pig_iron_produced"] = pig_iron_produced_mtpy + discrete_outputs["iron_plant_performance"] = iron_plant_performance.performances_df + + +@define +class IronPlantCostConfig(IronPlantBaseConfig): + LCOE: float = field(kw_only=True) # $/MWh + LCOH: float = field(kw_only=True) # $/kg + LCOI_ore: float = field(kw_only=True) + iron_transport_cost: float = field(kw_only=True) + ore_profit_pct: float = field(kw_only=True) + + # varom_model_name is unused at the moment + varom_model_name: str = field( + default="rosner", validator=contains(["rosner", "rosner_override"]) + ) + operational_year: int = field(converter=int, kw_only=True) + installation_years: int | float = field(kw_only=True) + plant_life: int = field(converter=int, kw_only=True) + cost_year: int = field(converter=int, kw_only=True) + + def make_model_dict(self): + keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] + d = self.as_dict() + model_dict = {k: v for k, v in d.items() if k in keys} + model_dict.update({"name": self.model_name}) + return model_dict + + def make_cost_dict(self): + keys = ["operational_year", "installation_years", "plant_life"] + d = self.as_dict() + cost_dict = {k: v for k, v in d.items() if k in keys} + return cost_dict + + +class IronPlantCostComponent(CostModelBaseClass): + def setup(self): + self.target_dollar_year = self.options["plant_config"]["finance_parameters"][ + "cost_adjustment_parameters" + ]["target_dollar_year"] + self.plant_life = self.options["plant_config"]["plant"]["plant_life"] + + config_dict = merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") + config_dict.update({"cost_year": self.target_dollar_year}) + config_dict.update({"plant_life": self.plant_life}) + + self.config = IronPlantCostConfig.from_dict(config_dict) + + super().setup() + self.add_input("LCOE", val=self.config.LCOE, units="USD/MW/h") + self.add_input("LCOH", val=self.config.LCOH, units="USD/kg") + self.add_input("price_iron_ore", val=self.config.LCOI_ore, units="USD/t") + self.add_input("iron_transport_cost", val=self.config.iron_transport_cost, units="USD/t") + self.add_input("ore_profit_pct", val=self.config.ore_profit_pct, units="USD/t") + self.add_input("total_pig_iron_produced", val=1.0, units="t/year") + self.add_discrete_input( + "iron_plant_performance", val=pd.DataFrame, desc="iron plant performance results" + ) + self.add_discrete_output( + "iron_plant_cost", val=pd.DataFrame, desc="iron plant cost results" + ) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + iron_plant_performance = IronPerformanceModelOutputs( + discrete_inputs["iron_plant_performance"] + ) + + iron_plant_cost_inputs = { + "lcoe": inputs["LCOE"][0] / 1e3, + "lcoh": inputs["LCOH"][0], + "lco_iron_ore_tonne": inputs["price_iron_ore"], + "iron_transport_tonne": inputs["iron_transport_cost"][0], + "plant_capacity_mtpy": self.config.iron_win_capacity, + "capacity_denominator": self.config.win_capacity_demon, + } + cost_dict = self.config.make_cost_dict() + iron_plant_cost_inputs.update(cost_dict) + + iron_plant_model_inputs = self.config.make_model_dict() + iron_ore_site = self.config.make_site_dict() + cost_config = IronCostModelConfig( + product_selection=f"{self.config.winning_type}_dri", + site=iron_ore_site, + model=iron_plant_model_inputs, + params=iron_plant_cost_inputs, + performance=iron_plant_performance, + ) + iron_plant_cost = run_iron_cost_model(cost_config) + + discrete_outputs["iron_plant_cost"] = iron_plant_cost.costs_df + + # Now taking some stuff from finance + cost_df = iron_plant_cost.costs_df.set_index("Name") + cost_ds = cost_df.loc[:, self.config.site_name] + + cost_names = cost_df.index.values + cost_types = cost_df.loc[:, "Type"].values + cost_units = cost_df.loc[:, "Unit"].values + + # add capital items + capex = 0 + fixed_om = 0 + variable_om = 0 + capital_idxs = np.where(cost_types == "capital")[0] + for idx in capital_idxs: + cost_names[idx] + unit = cost_units[idx] # Units for capital costs should be " $"" + source_year = int(unit[:4]) + source_year_cost = cost_ds.iloc[idx] + capex += inflate_cepci(source_year_cost, source_year, self.config.cost_year) + + # add fixed costs + fixed_idxs = np.where(cost_types == "fixed opex")[0] + for idx in fixed_idxs: + cost_names[idx] + unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" + source_year = int(unit[:4]) + source_year_cost = cost_ds.iloc[idx] + fixed_om += inflate_cpi(source_year_cost, source_year, self.config.cost_year) + + # add feedstock costs + perf_df = iron_plant_performance.performances_df.set_index("Name") + perf_ds = perf_df.loc[:, "Model"] + + coeff_dict = load_top_down_coeffs( + [ + "Raw Water", + "Lime", + "Carbon", + "Slag Disposal", + "Hydrogen", + "Natural Gas", + "Electricity", + "Inflation Rate", + ] + ) + + years = list(coeff_dict["years"]) + analysis_start = self.config.operational_year - self.config.installation_years + start_idx = years.index(analysis_start) + if len(years) > (start_idx + self.config.plant_life + self.config.installation_years + 1): + end_idx = years.index( + analysis_start + self.config.plant_life + self.config.installation_years + 1 + ) + indices = list(np.arange(start_idx, end_idx)) + else: + end_idx = len(years) - 1 + indices = list(np.arange(start_idx, end_idx)) + repeats = ( + start_idx + self.config.plant_life + self.config.installation_years + 2 - len(years) + ) + for _i in range(repeats): + indices.append(end_idx) + + raw_water_unitcost_tonne = coeff_dict["Raw Water"]["values"][indices].astype(float) + lime_unitcost_tonne = coeff_dict["Lime"]["values"][indices].astype(float) + carbon_unitcost_tonne = coeff_dict["Carbon"]["values"][indices].astype(float) + slag_disposal_unitcost_tonne = coeff_dict["Slag Disposal"]["values"][indices].astype(float) + + # TODO: make natural gas costs an input + natural_gas_prices_MMBTU = coeff_dict["Natural Gas"]["values"][indices].astype(float) + natural_gas_prices_GJ = natural_gas_prices_MMBTU * 1.05506 # Convert to GJ + + iron_ore_pellet_unitcost_tonne = inputs["price_iron_ore"] + if inputs["iron_transport_cost"] > 0: + iron_transport_cost_tonne = inputs["iron_transport_cost"][0] + ore_profit_pct = inputs["ore_profit_pct"][0] + iron_ore_pellet_unitcost_tonne = ( + iron_ore_pellet_unitcost_tonne + iron_transport_cost_tonne + ) * (1 + ore_profit_pct / 100) + + v_start = years.index(self.config.operational_year) - years.index(analysis_start) + 1 + variable_om += perf_ds["Raw Water Withdrawal"] * raw_water_unitcost_tonne + variable_om += perf_ds["Lime"] * lime_unitcost_tonne + variable_om += perf_ds["Carbon (Coke)"] * carbon_unitcost_tonne + variable_om += perf_ds["Iron Ore"] * iron_ore_pellet_unitcost_tonne + variable_om += perf_ds["Hydrogen"] * inputs["LCOH"][0] * 1000 + variable_om += perf_ds["Natural Gas"] * natural_gas_prices_GJ + variable_om += perf_ds["Electricity"] * inputs["LCOE"][0] + variable_om += perf_ds["Slag"] * slag_disposal_unitcost_tonne + + total_production = inputs["total_pig_iron_produced"] + variable_om = np.multiply(total_production, variable_om) + + outputs["CapEx"] = capex + outputs["OpEx"] = fixed_om + outputs["VarOpEx"] = variable_om[v_start:] diff --git a/h2integrate/converters/iron/iron_transport.py b/h2integrate/converters/iron/iron_transport.py new file mode 100644 index 000000000..45d021f04 --- /dev/null +++ b/h2integrate/converters/iron/iron_transport.py @@ -0,0 +1,228 @@ +import numpy as np +import pandas as pd +import openmdao.api as om +from attrs import field, define +from geopy import distance + +from h2integrate import ROOT_DIR +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains, range_val +from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.simulation.technologies.iron.load_top_down_coeffs import load_top_down_coeffs + + +@define +class IronTransportPerformanceConfig(BaseConfig): + find_closest_ship_site: bool = field() + shipment_site: str = field( + converter=(str.lower, str.capitalize), + validator=contains(["None", "Duluth", "Chicago", "Cleveland", "Buffalo"]), + ) + + # + def __attrs_post_init__(self): + if self.find_closest_ship_site and self.shipment_site != "None": + msg = "Please set shipment_site to 'None' if find_closest_ship_site is True." + raise ValueError(msg) + + +class IronTransportPerformanceComponent(om.ExplicitComponent): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.config = IronTransportPerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=False, + ) + + self.add_output("land_transport_distance", val=0.0, units="km") + self.add_output("water_transport_distance", val=0.0, units="km") + self.add_output("total_transport_distance", val=0.0, units="km") + + def calculate_water_distance(self, waypoints, shipping_sites): + water_transport_distance = 0 + for ii, waypt in enumerate(waypoints): + if ii == 0: + starting_lat = shipping_sites.loc[waypoints[0]]["Lat"] + starting_lon = shipping_sites.loc[waypoints[0]]["Lon"] + starting_location = (starting_lat, starting_lon) + continue + + ending_lat = shipping_sites.loc[waypt]["Lat"] + ending_lon = shipping_sites.loc[waypt]["Lon"] + ending_location = (ending_lat, ending_lon) + + waypoint_distance = distance.geodesic( + starting_location, ending_location, ellipsoid="WGS-84" + ).km + water_transport_distance += waypoint_distance + + starting_lat = shipping_sites.loc[waypt]["Lat"] + starting_lon = shipping_sites.loc[waypt]["Lon"] + starting_location = (starting_lat, starting_lon) + + return water_transport_distance + + def calculate_land_distance(self, ship_site, starting_location, shipping_sites): + ending_lat = shipping_sites.loc[ship_site]["Lat"] + ending_lon = shipping_sites.loc[ship_site]["Lon"] + ending_location = (ending_lat, ending_lon) + land_transport_distance = distance.geodesic( + starting_location, ending_location, ellipsoid="WGS-84" + ).km + return land_transport_distance + + def compute(self, inputs, outputs): + lat = self.options["plant_config"].get("site", {}).get("latitude") + lon = self.options["plant_config"].get("site", {}).get("longitude") + site_location = (lat, lon) + shipping_coord_fpath = ( + ROOT_DIR + / "simulation" + / "technologies" + / "iron" + / "martin_transport" + / "shipping_coords.csv" + ) + shipping_locations = pd.read_csv(shipping_coord_fpath, index_col="Unnamed: 0") + + shipping_waypoints = { + "Duluth": ["Duluth"], + "Chicago": [ + "Duluth", + "Keweenaw", + "Sault St Marie", + "De Tour", + "Mackinaw", + "Manistique", + "Chicago", + ], + "Cleveland": [ + "Duluth", + "Keweenaw", + "Sault St Marie", + "De Tour", + "Lake Huron", + "Port Huron", + "Erie", + "Cleveland", + ], + "Buffalo": [ + "Duluth", + "Keweenaw", + "Sault St Marie", + "De Tour", + "Lake Huron", + "Port Huron", + "Erie", + "Cleveland", + "Buffalo", + ], + } + if self.config.find_closest_ship_site: + min_distance = 1e20 + land_distance_for_min = 0 + water_distance_for_min = 0 + for ship_site, waypoints in shipping_waypoints.items(): + land_distance_km = self.calculate_land_distance( + ship_site, site_location, shipping_locations + ) + water_distance_km = self.calculate_water_distance(waypoints, shipping_locations) + + transport_distance = land_distance_km + water_distance_km + if transport_distance < min_distance: + land_distance_for_min = self.calculate_land_distance( + ship_site, site_location, shipping_locations + ) + water_distance_for_min = self.calculate_water_distance( + waypoints, shipping_locations + ) + min_distance = np.min([min_distance, transport_distance]) + + outputs["total_transport_distance"] = min_distance + outputs["land_transport_distance"] = land_distance_for_min + outputs["water_transport_distance"] = water_distance_for_min + + else: + land_distance_km = self.calculate_land_distance( + self.config.shipment_site, site_location, shipping_locations + ) + water_distance_km = self.calculate_water_distance( + shipping_waypoints[self.config.shipment_site], shipping_locations + ) + transport_distance = land_distance_km + water_distance_km + outputs["total_transport_distance"] = transport_distance + outputs["land_transport_distance"] = land_distance_km + outputs["water_transport_distance"] = water_distance_km + + +@define +class IronTransportCostConfig(BaseConfig): + transport_year: int = field(converter=int, validator=range_val(2022, 2065)) + cost_year: int = field(converter=int, validator=range_val(2010, 2024)) + + +class IronTransportCostComponent(CostModelBaseClass): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + target_dollar_year = self.options["plant_config"]["finance_parameters"][ + "cost_adjustment_parameters" + ]["target_dollar_year"] + + config_dict = merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") + config_dict.update({"cost_year": target_dollar_year}) + + self.config = IronTransportCostConfig.from_dict( + config_dict, + strict=False, + ) + super().setup() + + self.add_input("land_transport_distance", val=0.0, units="mi") + self.add_input("water_transport_distance", val=0.0, units="mi") + self.add_input("total_transport_distance", val=0.0, units="mi") + self.add_input("total_iron_ore_produced", val=0.0, units="t/year") + + self.add_output("iron_transport_cost", val=0.0, units="USD/t") + self.add_output("ore_profit_margin", val=0.0, units="USD/t") + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + water_coeff_dict = load_top_down_coeffs( + ["Barge Shipping Cost"], cost_year=self.config.cost_year + ) + water_year_idx = list(water_coeff_dict["years"]).index(self.config.transport_year) + water_ship_cost_dol_tonne_mi = water_coeff_dict["Barge Shipping Cost"]["values"][ + water_year_idx + ] + + water_ship_cost_dol_per_ton = ( + water_ship_cost_dol_tonne_mi * inputs["water_transport_distance"] + ) + water_ship_cost_USD = inputs["total_iron_ore_produced"] * water_ship_cost_dol_per_ton + + land_coeff_dict = load_top_down_coeffs( + ["Land Shipping Cost"], cost_year=self.config.cost_year + ) + land_year_idx = list(land_coeff_dict["years"]).index(self.config.transport_year) + land_ship_cost_dol_tonne_mi = land_coeff_dict["Land Shipping Cost"]["values"][land_year_idx] + + land_ship_cost_dol_per_ton = land_ship_cost_dol_tonne_mi * inputs["land_transport_distance"] + land_ship_cost_USD = inputs["total_iron_ore_produced"] * land_ship_cost_dol_per_ton + + total_shipment_cost = water_ship_cost_USD + land_ship_cost_USD + + profit_margin_coeffs = load_top_down_coeffs(["Ore Profit Margin"]) + pm_year_idx = list(profit_margin_coeffs["years"]).index(self.config.transport_year) + outputs["ore_profit_margin"] = profit_margin_coeffs["Ore Profit Margin"]["values"][ + pm_year_idx + ] + + outputs["iron_transport_cost"] = total_shipment_cost / inputs["total_iron_ore_produced"] + outputs["VarOpEx"] = total_shipment_cost diff --git a/h2integrate/converters/iron/iron_wrapper.py b/h2integrate/converters/iron/iron_wrapper.py new file mode 100644 index 000000000..2fd32ebc0 --- /dev/null +++ b/h2integrate/converters/iron/iron_wrapper.py @@ -0,0 +1,277 @@ +import copy +from pathlib import Path + +from attrs import field, define +from hopp.utilities import load_yaml + +import h2integrate.tools.profast_reverse_tools as rev_pf_tools +from h2integrate.core.utilities import CostModelBaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains, range_val +from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.simulation.technologies.iron.iron import run_iron_full_model +from h2integrate.simulation.technologies.iron.martin_transport.iron_transport import ( + calc_iron_ship_cost, +) + + +@define +class IronConfig(CostModelBaseConfig): + """Configuration class for IronComponent. + + Attributes: + LCOE (float): cost of electricity in USD/MW/h + LCOH (float): cost of hydrogen in USD/kg + ROM_iron_site_name (str): mine for Iron Ore. + Options are "Hibbing", "Northshore", "United", "Minorca" or "Tilden". + iron_ore_product_selection (str): iron ore pellet type. + Options are "drg_taconite_pellets" or "std_taconite_pellets". + reduced_iron_product_selection (str): material for iron electrwinning process. + Options are "h2_dri" or "ng_dri" + structural_iron_product_selection (str): iron processing method. + Options are "eaf_steel" or "none". + iron_capacity_denom (str): Capacity denominator to use in iron modeling. + Options are "iron" or "steel". + eaf_capacity (float, optional): Capacity of electric arc furnace in + metric tonnes of iron per year. Defaults to 1000000. + dri_capacity (float, optional): Capacity of direct reduced iron plant in + metric tonnes of iron per year. Defaults to 1418095. + iron_ore_cf_estimate (float, optional): Estimated capacity factor of iron ore mine. + Defaults to 0.9. Must be between 0 and 1. + + """ + + # Comments below denote which step each config variable applies to in run_iron_full_model + + LCOE: float = field() # $/MWh + LCOH: float = field() # $/kg + ROM_iron_site_name: str = field( + validator=contains(["Hibbing", "Northshore", "United", "Minorca", "Tilden"]) + ) # ore + iron_ore_product_selection: str = field( + converter=(str.lower, str.strip), + validator=contains(["drg_taconite_pellets", "std_taconite_pellets"]), + ) # ore + reduced_iron_site_latitude: float = field() + reduced_iron_site_longitude: float = field() + reduced_iron_product_selection: str = field( + converter=(str.lower, str.strip), validator=contains(["h2_dri", "ng_dri"]) + ) # win + structural_iron_product_selection: str = field( + converter=(str.lower, str.strip), validator=contains(["eaf_steel", "none"]) + ) # post + iron_capacity_denom: str = field( + default="iron", converter=(str.lower, str.strip), validator=contains(["iron", "steel"]) + ) # win + eaf_capacity: float | int = field(default=1000000) # post + dri_capacity: float | int = field(default=1418095) # win + iron_ore_cf_estimate: float = field(default=0.9, validator=range_val(0, 1)) # ore + transport_cost_included: bool = field(default=True) + ng_mod: bool = field(default=False) + ng_price: float = field(default=4.00) # $/MMBTU + capex_mod: bool = field(default=False) + capex_mod_pct: float = field(default=0.0) # Fraction of orignal capex value to modify by + + +class IronComponent(CostModelBaseClass): + """ + A simple OpenMDAO component that represents an Iron model from old GreenHEART code. + + This component uses caching to store and retrieve results of the iron model + based on the configuration. + """ + + def setup(self): + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + self.config = IronConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), + strict=False, + ) + super().setup() + + CD = Path(__file__).parent + old_input_path = CD / "old_input" + h2i_config_old_fn = "h2integrate_config_modular.yaml" + self.h2i_config_old = load_yaml(old_input_path / h2i_config_old_fn) + + self.add_output("iron_out", val=0.0, shape=n_timesteps, units="kg/h") + + self.add_input("LCOE", val=self.config.LCOE, units="USD/MW/h") + self.add_input("LCOH", val=self.config.LCOH, units="USD/kg") + + self.add_output("total_iron_produced", val=0.0, units="kg/year") + self.add_output("LCOI", val=0.0, units="USD/kg") + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + # Parse in values from config + mine_site = self.config.ROM_iron_site_name + ore_type = self.config.iron_ore_product_selection + red_site_lat = self.config.reduced_iron_site_latitude + red_site_lon = self.config.reduced_iron_site_longitude + red_iron_type = self.config.reduced_iron_product_selection + struct_iron_type = self.config.structural_iron_product_selection + denom = self.config.iron_capacity_denom + eaf_cap = self.config.eaf_capacity + dri_cap = self.config.dri_capacity + ore_cf = self.config.iron_ore_cf_estimate + trans_incl = self.config.transport_cost_included + ng_mod = self.config.ng_mod + ng_price = self.config.ng_price + capex_mod = self.config.capex_mod + capex_pct = self.config.capex_mod_pct + + # BELOW: Copy-pasted from ye olde h2integrate_simulation.py (the 1000+ line monster) + + iron_config = copy.deepcopy(self.h2i_config_old) + + # This is not the most graceful way to do this... but it avoids copied imports + # and copying iron.py + iron_ore_config = copy.deepcopy(iron_config) + iron_win_config = copy.deepcopy(iron_config) + iron_post_config = copy.deepcopy(iron_config) + + iron_ore_config["iron"] = iron_config["iron_ore"] + iron_win_config["iron"] = iron_config["iron_win"] + iron_post_config["iron"] = iron_config["iron_post"] + for sub_iron_config in [ + iron_ore_config, + iron_win_config, + iron_post_config, + ]: # ,iron_post_config]: # iron_pre_config, iron_post_config + sub_iron_config["iron"]["costs"]["lcoe"] = inputs["LCOE"][0] / 1e3 + sub_iron_config["iron"]["finances"]["lcoe"] = inputs["LCOE"][0] / 1e3 + sub_iron_config["iron"]["costs"]["lcoh"] = inputs["LCOH"][0] + sub_iron_config["iron"]["finances"]["lcoh"] = inputs["LCOH"][0] + + # Update ore config + iron_ore_config["iron"]["site"]["name"] = mine_site + iron_ore_config["iron"]["performance"]["input_capacity_factor_estimate"] = ore_cf + iron_ore_config["iron"]["product_selection"] = ore_type + + # Update win config + iron_win_config["iron"]["product_selection"] = red_iron_type + iron_win_config["iron"]["performance"]["plant_capacity_mtpy"] = dri_cap + iron_win_config["iron"]["site"]["lat"] = red_site_lat + iron_win_config["iron"]["site"]["lon"] = red_site_lon + + # Update post config + if struct_iron_type == "none": + iron_post_config["iron"]["product_selection"] = "none" + elif struct_iron_type == "eaf_steel": + if red_iron_type == "ng_dri": + iron_post_config["iron"]["product_selection"] = "ng_eaf" + elif red_iron_type == "h2_dri": + iron_post_config["iron"]["product_selection"] = "h2_eaf" + else: + msg = f"The EAF steel model cannot (yet) use {red_iron_type} as input" + raise NotImplementedError(msg) + iron_post_config["iron"]["performance"]["capacity_denominator"] = denom + iron_post_config["iron"]["performance"]["plant_capacity_mtpy"] = eaf_cap + + # Run iron model for iron ore + iron_ore_config["iron"]["finances"]["ng_mod"] = ng_mod + iron_ore_config["iron"]["finances"]["ng_price"] = ng_price + iron_ore_config["iron"]["costs"]["capex_mod"] = capex_mod + iron_ore_config["iron"]["costs"]["capex_pct"] = capex_pct + iron_ore_performance, iron_ore_costs, iron_ore_finance = run_iron_full_model( + iron_ore_config + ) + + # Run iron transport model + # Determine whether to ship from "Duluth", "Chicago", "Cleveland" or "Buffalo" + # To electrowinning site + if trans_incl: + iron_transport_cost_tonne, ore_profit_pct = calc_iron_ship_cost(iron_win_config) + else: + iron_transport_cost_tonne = 0 + ore_profit_pct = 6 + + ### DRI ---------------------------------------------------------------------------- + ### Electrowinning + + iron_win_config["iron"]["finances"]["ng_mod"] = ng_mod + iron_win_config["iron"]["finances"]["ng_price"] = ng_price + iron_win_config["iron"]["costs"]["capex_mod"] = capex_mod + iron_win_config["iron"]["costs"]["capex_pct"] = capex_pct + iron_win_config["iron"]["finances"]["ore_profit_pct"] = ore_profit_pct + iron_win_config["iron"]["costs"]["iron_transport_tonne"] = iron_transport_cost_tonne + iron_win_config["iron"]["costs"]["lco_iron_ore_tonne"] = iron_ore_finance.sol["lco"] + iron_win_performance, iron_win_costs, iron_win_finance = run_iron_full_model( + iron_win_config + ) + + ### EAF ---------------------------------------------------------------------------- + if iron_post_config["iron"]["product_selection"] == "none": + iron_performance = iron_win_performance + iron_costs = iron_win_costs + iron_finance = iron_win_finance + + else: + if iron_post_config["iron"]["product_selection"] not in ["ng_eaf", "h2_eaf"]: + raise ValueError( + "The product selection for the iron post module must be either \ + 'ng_eaf' or 'h2_eaf'" + ) + pf_config = rev_pf_tools.make_pf_config_from_profast( + iron_win_finance.pf + ) # dictionary of profast objects + pf_dict = rev_pf_tools.convert_pf_res_to_pf_config( + copy.deepcopy(pf_config) + ) # profast dictionary of values + iron_post_config["iron"]["finances"]["pf"] = pf_dict + iron_post_config["iron"]["costs"]["lco_iron_ore_tonne"] = iron_ore_finance.sol["lco"] + iron_post_config["iron"]["finances"]["ng_mod"] = ng_mod + iron_post_config["iron"]["finances"]["ng_price"] = ng_price + iron_post_config["iron"]["costs"]["capex_mod"] = capex_mod + iron_post_config["iron"]["costs"]["capex_pct"] = capex_pct + + iron_post_performance, iron_post_costs, iron_post_finance = run_iron_full_model( + iron_post_config + ) + + iron_performance = iron_post_performance + iron_costs = iron_post_costs + iron_finance = iron_post_finance + + perf_df = iron_performance.performances_df + iron_mtpy = perf_df.loc[perf_df["Name"] == "Pig Iron Production", "Model"].values[0] + + # ABOVE: Copy-pasted from ye olde h2integrate_simulation.py (the 1000+ line monster) + + outputs["iron_out"] = iron_mtpy * 1000 / 8760 + outputs["total_iron_produced"] = iron_mtpy * 1000 + + cost_df = iron_costs.costs_df + capex = 0 + opex = 0 + capex_list = [ + "EAF & Casting", + "Shaft Furnace", + "Reformer", + "Recycle Compressor", + "Oxygen Supply", + "H2 Pre-heating", + "Cooling Tower", + "Piping", + "Electrical & Instrumentation", + "Buildings, Storage, Water Service", + "Other Miscellaneous Cost", + ] + opex_list = [ + "labor_cost_annual_operation", + "labor_cost_maintenance", + "labor_cost_admin_support", + "property_tax_insurance", + "maintenance_materials", + ] + + location = cost_df.columns.values[-1] + for capex_item in capex_list: + capex += cost_df.loc[cost_df["Name"] == capex_item, location].values[0] + for opex_item in opex_list: + opex += cost_df.loc[cost_df["Name"] == opex_item, location].values[0] + + outputs["CapEx"] = capex + outputs["OpEx"] = opex + + lcoi = iron_finance.sol["lco"] + outputs["LCOI"] = lcoi / 1000 diff --git a/h2integrate/converters/iron/old_input/default_fin_config.yaml b/h2integrate/converters/iron/old_input/default_fin_config.yaml new file mode 100644 index 000000000..f86eeea5c --- /dev/null +++ b/h2integrate/converters/iron/old_input/default_fin_config.yaml @@ -0,0 +1,39 @@ +battery_system: + batt_replacement_schedule_percent: [0] + batt_bank_replacement: [0] + batt_replacement_option: 0 + batt_computed_bank_capacity: 0 + batt_meter_position: 0 +system_costs: + om_fixed: [1] + om_production: [2] + om_capacity: [0] + om_batt_fixed_cost: 42.888 + om_batt_variable_cost: [0] + om_batt_capacity_cost: 0 + om_batt_replacement_cost: 0 + om_replacement_cost_escal: 0 +revenue: + ppa_price_input: [0.01] # cents/kWh + ppa_escalation: 1 # % +system_use_lifetime_output: 0 +financial_parameters: + inflation_rate: 2.5 + real_discount_rate: 6.98 + federal_tax_rate: 21.0 + state_tax_rate: 4.74 + property_tax_rate: 1.0 + insurance_rate: 0.5 + debt_percent: 68.5 + term_int_rate: 4.6 + months_working_reserve: 1 + analysis_start_year: 2025 + installation_months: 36 + sales_tax_rate_state: 0.0 + admin_expense_percent_of_sales: 1.0 + capital_gains_tax_rate: 15.0 + debt_type: "Revolving debt" + depreciation_method: "MACRS" + depreciation_period: 5 +cp_capacity_credit_percent: [0] +degradation: [0] diff --git a/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml b/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml new file mode 100644 index 000000000..f616a0f37 --- /dev/null +++ b/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml @@ -0,0 +1,403 @@ +site: + mean_windspeed: False + depth: 0 #m + wind_layout: + row_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. + turbine_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. + grid_angle: 0 # wind layout grid angle in degrees where 0 is north, increasing clockwise + row_phase_offset: 0 # wind layout offset of turbines along row from one row to the next +project_parameters: + project_lifetime: 30 + grid_connection: False # option, can be turned on or off + ppa_price: 0.025 # $/kWh based on 2022 land based wind market report (ERCOT area ppa prices) https://www.energy.gov/sites/default/files/2022-08/land_based_wind_market_report_2202.pdf + hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True + financial_analysis_start_year: 2032 + cost_year: 2022 # to match ATB + installation_time: 36 # months +finance_parameters: + costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year + inflation_rate: 0 # based on 2022 ATB + discount_rate: 0.0948 # nominal return based on 2022 ATB basline workbook + debt_equity_ratio: 1.72 + property_tax: 0.01 # percent of CAPEX # combined with property insurance then between H2A and H2FAST defaults + property_insurance: 0.005 # percent of CAPEX # combined with property tax then between H2A and H2FAST defaults + total_income_tax_rate: 0.2574 # 0.257 tax rate in 2022 atb baseline workbook # current federal income tax rate, but proposed 2023 rate is 0.28. No state income tax in Texas + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.0 #Verify that a different rate shouldn't be used # minimum total sales tax rate in Corpus Christi https://www.cctexas.com/detail/corpus-christi-type-fund-purpose - does this apply to H2? + debt_interest_rate: 0.046 + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + administrative_expense_percent_of_sales: 0.00 #Check this # percent of sales H2FAST default + depreciation_method: "MACRS" # can be "MACRS" or "Straight line" - MACRS may be better and can reduce LCOH by more than $1/kg and is spec'd in the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depreciation_period: 7 # years - as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + depreciation_period_electrolyzer: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + discount_years: + wind: 2020 # Updated for GS + wind_and_electrical: 2020 # Updated for GS + wave: 2020 # confirmed by Kaitlin Brunik 20240103 + solar: 2020 # Updated for GS + battery: 2020 # Updated for GS + platform: 2022 # TODO ask Nick and Charlie + electrical_export_system: 2022 # also from ORBIT, so match wind assumptions. TODO ask Sophie Bradenkamp + desal: 2013 # from code citation: https://www.nrel.gov/docs/fy16osti/66073.pdf + electrolyzer: 2020 # 2020 for singlitico2021, 2016 # for simple h2 cost model in hopp (see https://www.hydrogen.energy.gov/pdfs/19009_h2_production_cost_pem_electrolysis_2019.pdf) ## 2020 # based on IRENA report https://www.irena.org/-/media/Files/IRENA/Agency/Publication/2020/Dec/IRENA_Green_hydrogen_cost_2020.pdf + h2_transport_compressor: 2016 # listed in code header + h2_storage: + pressure_vessel: 2022 # based on readme for Compressed_gas_function + pipe: 2019 # Papadias 2021 + salt_cavern: 2019 # Papadias 2021 + turbine: 2003 # assumed based on Kottenstette 2004 + lined_rock_cavern: 2018 # based on Papadias 2021 and HD SAM + none: 2022 # arbitrary + h2_pipe_array: 2018 # ANL costs + h2_transport_pipeline: 2018 # same model for costs as the h2_pipe_array + wind: + expected_plant_cost: 'none' +electrolyzer: + sizing: + resize_for_enduse: False + size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) + hydrogen_dmd: + rating: 1160 # MW + cluster_rating_MW: 40 + pem_control_type: 'basic' + eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 77600 #number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: True #include degradation + turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + electrolyzer_capex: 1600 # $/kW + time_between_replacement: 62320 # 62320 based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years, 40000 based on current est (see unpublished report), 80000 hours based on OSW atb_year = 2025 + replacement_cost_percent: 0.15 # percent of capex - H2A default case + cost_model: "singlitico2021" # "basic" is a basic cost model based on H2a and HFTO program record for PEM electrolysis. "singlitico2021" uses cost estimates from that paper +h2_transport_compressor: + outlet_pressure: 68 # bar based on HDSAM +h2_storage_compressor: + output_pressure: 100 # bar (1 bar = 100 kPa) + flow_rate: 89 # kg/hr + energy_rating: 802 # kWe (aka 1 kWh) + mean_days_between_failures: 200 # days +h2_transport_pipe: + outlet_pressure: 10 # bar - from example in code from Jamie #TODO check this value +h2_storage: + size_capacity_from_demand: + flag: True # If True, then storage is sized to provide steady-state storage + capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. + type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] + days: 0 #8.57267 # from `hydrogen_storage_duration_hr` = 205.74419987482239 [days] how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) + +policy_parameters: # these should be adjusted for inflation prior to application - order of operations: rate in 1992 $, +#then prevailing wage multiplier if applicable, then inflation + option1: # base # no policy included ---> see files/task1/regulation and policy revue/ page 4 of 13 middle - read this + # and look at assumptions + electricity_itc: 0 + electricity_ptc: 0 + h2_ptc: 0 + h2_storage_itc: 0 + option2: # base credit levels with H2 + electricity_itc: 0 + electricity_ptc: 0.003 # $0.003/kW (this is base, see inflation adjustment in option 3) + h2_ptc: 0.6 # $0.60/kg h2 produced - assumes net zero but not meeting prevailing wage requirements - does this need to be + # adjusted for inflation from 2022 dollars to claim date, probably constant after claim date? + h2_storage_itc: 0.06 + option3: # same as option 5, but assuming prevailing wages are met --> 5x multiplier on both PTCs + electricity_itc: 0 + electricity_ptc: 0.015 # $/kWh 1992 dollars + h2_ptc: 3.00 # $/kg 2022 dollars - do not adjust for inflation + h2_storage_itc: 0.3 + # bonus options, option 5 and 6 but ITC equivalents + option4: # prevailing wages not met + electricity_itc: 0.06 # %/100 capex + electricity_ptc: 0.00 # $/kW 1992 dollars + h2_ptc: 0.6 # $0.60/kg produced 2022 dollars - assumes net zero but not meeting prevailing wage requirements - does this need to be + # do not adjust for inflation, probably constant after claim date? + h2_storage_itc: 0.06 + option5: # prevailing wages met + electricity_itc: 0.30 # %/100 capex + electricity_ptc: 0.0 # $/kWh 1992 dollars + h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year + h2_storage_itc: 0.3 + option6: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron + # and mfg. components from the US) + electricity_itc: 0.40 # %/100 capex + electricity_ptc: 0.0 # $/kWh 1992 dollars + h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year + h2_storage_itc: 0.4 + option7: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron + # and mfg. components from the US) + electricity_itc: 0.0 # %/100 capex + electricity_ptc: 0.0165 # $/kWh 1992 dollars (0.015*1.1) + h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year + h2_storage_itc: 0 + # you can elect itc_for_h2 in leu of the h2_ptc - this choice is independent of the other tech credit selections + # 6% or %50 for itc_for_h2 + h2_storage_itc: 0.5 + +plant_design: + scenario0: + electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] + transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + pv_location: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + scenario1: + electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + transportation: "hvdc" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + pv_location: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + scenario2: + electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + transportation: "hvdc" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + pv_location: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + scenario3: + electrolyzer_location: "turbine" # can be one of ["onshore", "turbine", "platform"] + transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "turbine" # can be one of ["onshore", "turbine", "platform"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + pv_location: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + scenario4: + electrolyzer_location: "turbine" # can be one of ["onshore", "turbine", "platform"] + transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + pv_location: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + scenario5: + electrolyzer_location: "turbine" # can be one of ["onshore", "turbine", "platform"] + transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + pv_location: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + scenario6: + electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] + transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + pv_location: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + scenario7: + electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] + transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + pv_location: "none" # can be one of ["none", "onshore", "platform"] + battery_location: "none" # can be one of ["none", "onshore", "platform"] + scenario8: + electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] + transportation: "hvdc+pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + wind_location: "offshore" # can be one of ["onshore", "offshore"] + scenario9: + electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + transportation: "colocated" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + wind_location: "onshore" # can be one of ["onshore", "offshore"] + pv_location: "onshore" # can be one of ["none", "onshore", "platform"] + battery_location: "onshore" # can be one of ["none", "onshore", "platform"] + scenario10: + electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] + transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] + h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] + pv_location: "platform" # can be one of ["none", "onshore", "platform"] + battery_location: "platform" # can be one of ["none", "onshore", "platform"] + +iron_ore: + site: + lat: 47.29415278 + lon: -91.25649444 + resource_dir: '/../data_library/weather/' + name: 'Northshore' + product_selection: 'drg_taconite_pellets' #'drg_taconite_pellets' # 'std_taconite_pellets' # + performance_model: + name: 'martin_ore' # 'martin_ore' + refit_coeffs: False + cost_model: + name: 'martin_ore' # 'martin_ore' + refit_coeffs: False + finance_model: + name: 'martin_ore' # 'martin_ore', 'rosner_ore' + performance: + input_capacity_factor_estimate: 0.9 + costs: + operational_year: 2035 + installation_years: 3 + plant_life: 30 + o2_heat_integration: false + finances: + gen_inflation: 0.025 + # Additional parameters passed to ProFAST + financial_assumptions: + "total income tax rate": 0.2574 + "capital gains tax rate": 0.15 + "leverage after tax nominal discount rate": 0.10893 + "debt equity ratio of initial financing": 0.624788 + "debt interest rate": 0.050049 +iron_win: + site: + lat: 41.717 + lon: -88.398 + resource_dir: '/../data_library/weather/' + name: 'IL' + product_selection: 'ng_dri' # 'h2_dri' # 'ng_dri' + performance_model: + name: 'rosner' # 'rosner' + refit_coeffs: False + cost_model: + name: 'rosner' # 'rosner' + refit_coeffs: False + finance_model: + name: 'rosner' # 'rosner', 'rosner_override' + performance: + plant_capacity_mtpy: 1418095 + capacity_denominator: 'iron' # steel + costs: + operational_year: 2035 + installation_years: 3 + plant_life: 30 + o2_heat_integration: false + finances: + gen_inflation: 0.025 + # Additional parameters passed to ProFAST + financial_assumptions: + "total income tax rate": 0.2574 + "capital gains tax rate": 0.15 + "leverage after tax nominal discount rate": 0.10893 + "debt equity ratio of initial financing": 0.624788 + "debt interest rate": 0.050049 +iron_post: + site: + lat: 41.717 + lon: -88.398 + resource_dir: '/../data_library/weather/' + name: 'IL' + product_selection: 'ng_eaf' #''h2_eaf' # 'ng_eaf' + performance_model: + name: 'rosner' # 'rosner' + refit_coeffs: False + cost_model: + name: 'rosner' # 'rosner' + refit_coeffs: False + finance_model: + name: 'rosner' # 'rosner', 'rosner_override' + performance: + plant_capacity_mtpy: 1000000 + costs: + operational_year: 2035 + installation_years: 3 + plant_life: 30 + o2_heat_integration: false + finances: + gen_inflation: 0.025 + # Additional parameters passed to ProFAST + financial_assumptions: + "total income tax rate": 0.2574 + "capital gains tax rate": 0.15 + "leverage after tax nominal discount rate": 0.10893 + "debt equity ratio of initial financing": 0.624788 + "debt interest rate": 0.050049 + +lca_config: + run_lca: True #True + electrolyzer_type: pem #alkaline, soec + feedstock_water_type: ground #desal, surface + cambium: #cambium API argument, see cambium_data.py for additional argument options + project_uuid: '0f92fe57-3365-428a-8fe8-0afc326b3b43' + scenario: 'Mid-case with 100% decarbonization by 2035' + location_type: 'GEA Regions 2023' + time_type: 'hourly' + +opt_options: + opt_flag: True + general: + folder_output: "output" + fname_output: "optimization_log" + design_variables: + electrolyzer_rating_kw: + flag: True + lower: 1000.0 + upper: 2000000.0 + units: "kW" + pv_capacity_kw: + flag: False + lower: 1000.0 + upper: 2000000.0 + units: "kW" + wave_capacity_kw: + flag: False + lower: 1000.0 + upper: 2000000.0 + units: "kW*h" + battery_capacity_kw: + flag: False + lower: 1000.0 + upper: 2000000.0 + units: "kW" + battery_capacity_kwh: + flag: False + lower: 1000.0 + upper: 2000000.0 + units: "kW*h" + turbine_x: + flag: False + lower: 0.0 + upper: 20000.0 + units: "m" + turbine_y: + flag: False + lower: 0.0 + upper: 20000.0 + units: "m" + constraints: + turbine_spacing: + flag: False + lower: 0.0 + boundary_distance: + flag: False + lower: 0.0 + pv_to_platform_area_ratio: + flag: False + upper: 1.0 # relative size of solar pv area to platform area + user: {} + merit_figure: "lcoi" + merit_figure_user: + name: "lcoi" + max_flag: False + ref: 1.0 # value of objective that scales to 1.0 + driver: + optimization: + flag: True + solver: "SNOPT" + tol: 1E-6 + gradient_method: "snopt_fd" # can be one of ['pyopt_fd', 'openmdao', 'snopt_fd'] + max_major_iter: 10 + max_minor_iter: 30 + # time_limit: 10 # (sec) optional + # "hist_file_name: "snopt_history.txt", # optional + verify_level: 0 # optional + step_calc: None + form: "forward" # type of finite differences to use, can be one of ["forward", "backward", "central"] + debug_print: False + design_of_experiments: + flag: False + run_parallel: False + generator: FullFact # [Uniform, FullFact, PlackettBurman, BoxBehnken, LatinHypercube] + num_samples: 5 # Number of samples to evaluate model at (Uniform and LatinHypercube only) + seed: 2 + levels: 5 # Number of evenly spaced levels between each design variable lower and upper bound (FullFactorial only) + criterion: None # [None, center, c, maximin, m, centermaximin, cm, correelation, corr] + iterations: 1 + debug_print: False + step_size_study: + flag: False + recorder: + flag: True + file_name: "record.sql" + includes: False diff --git a/h2integrate/converters/iron/old_input/hopp_config.yaml b/h2integrate/converters/iron/old_input/hopp_config.yaml new file mode 100644 index 000000000..687d23cc0 --- /dev/null +++ b/h2integrate/converters/iron/old_input/hopp_config.yaml @@ -0,0 +1,73 @@ +site: #!include flatirons_site.yaml + data: + lat: 47.5233 + lon: -92.5366 + elev: 1099 + year: 2013 + tz: -6 + site_boundaries: + verts: + - [0.0, 0.0] + - [0.0, 20000.0] + - [20000.0, 20000.0] + - [20000.0, 0.0] + verts_simple: + - [0.0, 0.0] + - [0.0, 20000.0] + - [20000.0, 20000.0] + - [20000.0, 0.0] + solar_resource_file: "../../../../resource_files/solar/47.5233_-92.5366_psmv3_60_2013.csv" + wind_resource_file: "../../../../resource_files/wind/47.5233_-92.5366_windtoolkit_2013_60min_100m_120m.srw" + wave_resource_file: "" + grid_resource_file: "" + hub_height: 115.0 + capacity_hours: [] + solar: true + wind: true + wave: false + wind_resource_origin: "WTK" + + +technologies: + wind: + num_turbines: 216 + turbine_rating_kw: 6000.0 + model_name: floris + timestep: [0, 8760] + floris_config: input_files/floris/floris_input_lbw_6MW.yaml + fin_model: !include default_fin_config.yaml + hub_height: 115.0 + pv: + system_capacity_kw: 100000 + dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + fin_model: !include default_fin_config.yaml + battery: + system_capacity_kwh: 100000 + system_capacity_kw: 100000 + minimum_SOC: 20.0 + maximum_SOC: 100.0 + initial_SOC: 90.0 + fin_model: !include default_fin_config.yaml + grid: + interconnect_kw: 2000000 # Set higher than rated generation capacity + fin_model: !include default_fin_config.yaml + +config: + simulation_options: + wind: + skip_financial: false + dispatch_options: + battery_dispatch: load_following_heuristic # load_following_heuristic #heuristic + solver: cbc + n_look_ahead_periods: 48 + grid_charging: false + pv_charging_only: false + include_lifecycle_count: false + cost_info: # Costs from GS Manuscript Supplemental Table S11 + wind_installed_cost_mw: 1098000 # (2020USD) + solar_installed_cost_mw: 991000 # (2020USD) + storage_installed_cost_mwh: 158000 # (2020USD) + storage_installed_cost_mw: 212000 # (2020USD) + wind_om_per_kw: 25.8 # (2020USD) + pv_om_per_kw: 17.2 # (2020USD) + battery_om_per_kw: 9.25 # (2020USD) based on 0.025 percent of battery capex with a 100MW 1hr battery diff --git a/h2integrate/converters/iron/test/__init__.py b/h2integrate/converters/iron/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/converters/iron/test/test_iron_mine.py b/h2integrate/converters/iron/test/test_iron_mine.py new file mode 100644 index 000000000..e01abbdb5 --- /dev/null +++ b/h2integrate/converters/iron/test/test_iron_mine.py @@ -0,0 +1,161 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate import EXAMPLE_DIR +from h2integrate.core.inputs.validation import load_driver_yaml +from h2integrate.converters.iron.iron_mine import ( + IronMineCostComponent, + IronMinePerformanceComponent, +) + + +@fixture +def iron_ore_config_martin_om(): + shared_params = { + "mine": "Northshore", + "taconite_pellet_type": "drg", + } + performance_params = {"ore_cf_estimate": 0.9, "model_name": "martin_ore"} + cost_params = { + "LCOE": 58.02, + "LCOH": 7.10, + "model_name": "martin_ore", + "varom_model_name": "martin_ore", + "installation_years": 3, + "operational_year": 2035, + # 'plant_life': 30, + } + + tech_config = { + "model_inputs": { + "cost_parameters": cost_params, + "performance_parameters": performance_params, + "shared_parameters": shared_params, + } + } + return tech_config + + +@fixture +def iron_ore_config_rosner_om(): + shared_params = { + "mine": "Northshore", + "taconite_pellet_type": "drg", + } + performance_params = {"ore_cf_estimate": 0.9, "model_name": "martin_ore"} + cost_params = { + "LCOE": 58.02, + "LCOH": 7.10, + "model_name": "martin_ore", + "varom_model_name": "rosner_ore", + "installation_years": 3, + "operational_year": 2035, + # 'plant_life': 30, + } + + tech_config = { + "model_inputs": { + "cost_parameters": cost_params, + "performance_parameters": performance_params, + "shared_parameters": shared_params, + } + } + return tech_config + + +@fixture +def plant_config(): + plant_config = { + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": 8760, + "dt": 3600, + }, + }, + "finance_parameters": { + "cost_adjustment_parameters": { + "cost_year_adjustment_inflation": 0.025, + "target_dollar_year": 2022, + } + }, + } + return plant_config + + +@fixture +def driver_config(): + driver_config = load_driver_yaml(EXAMPLE_DIR / "21_iron_mn_to_il" / "driver_config.yaml") + return driver_config + + +# baseline case +def test_baseline_iron_ore_costs_martin( + plant_config, driver_config, iron_ore_config_martin_om, subtests +): + martin_ore_capex = 1221599018.626594 + martin_ore_var_om = 441958721.59532887 + martin_ore_fixed_om = 0.0 + + prob = om.Problem() + iron_ore_perf = IronMinePerformanceComponent( + plant_config=plant_config, + tech_config=iron_ore_config_martin_om, + driver_config=driver_config, + ) + + iron_ore_cost = IronMineCostComponent( + plant_config=plant_config, + tech_config=iron_ore_config_martin_om, + driver_config=driver_config, + ) + + prob.model.add_subsystem("ore_perf", iron_ore_perf, promotes=["*"]) + prob.model.add_subsystem("ore_cost", iron_ore_cost, promotes=["*"]) + prob.setup() + prob.run_model() + + annual_ore = prob.get_val("ore_perf.total_iron_ore_produced", units="t/year") + with subtests.test("Annual Ore"): + assert pytest.approx(annual_ore[0] / 365, rel=1e-6) == 12385.195376438356 + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("ore_cost.CapEx")[0], rel=1e-6) == martin_ore_capex + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("ore_cost.OpEx")[0], rel=1e-6) == martin_ore_fixed_om + with subtests.test("VarOpEx"): + assert pytest.approx(prob.get_val("ore_cost.VarOpEx")[0], rel=1e-6) == martin_ore_var_om + + +def test_baseline_iron_ore_costs_rosner( + plant_config, driver_config, iron_ore_config_rosner_om, subtests +): + rosner_ore_capex = 1221599018.626594 + rosner_ore_var_om = 441958721.59532887 + rosner_ore_fixed_om = 0.0 + prob = om.Problem() + iron_ore_perf = IronMinePerformanceComponent( + plant_config=plant_config, + tech_config=iron_ore_config_rosner_om, + driver_config=driver_config, + ) + + iron_ore_cost = IronMineCostComponent( + plant_config=plant_config, + tech_config=iron_ore_config_rosner_om, + driver_config=driver_config, + ) + + prob.model.add_subsystem("ore_perf", iron_ore_perf, promotes=["*"]) + prob.model.add_subsystem("ore_cost", iron_ore_cost, promotes=["*"]) + prob.setup() + prob.run_model() + annual_ore = prob.get_val("ore_perf.total_iron_ore_produced", units="t/year") + with subtests.test("Annual Ore"): + assert pytest.approx(annual_ore[0] / 365, rel=1e-6) == 12385.195376438356 + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("ore_cost.CapEx")[0], rel=1e-6) == rosner_ore_capex + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("ore_cost.OpEx")[0], rel=1e-6) == rosner_ore_fixed_om + with subtests.test("VarOpEx"): + assert pytest.approx(prob.get_val("ore_cost.VarOpEx")[0], rel=1e-6) == rosner_ore_var_om diff --git a/h2integrate/converters/iron/test/test_iron_plant.py b/h2integrate/converters/iron/test/test_iron_plant.py new file mode 100644 index 000000000..86d87c670 --- /dev/null +++ b/h2integrate/converters/iron/test/test_iron_plant.py @@ -0,0 +1,103 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate import EXAMPLE_DIR +from h2integrate.core.inputs.validation import load_driver_yaml +from h2integrate.converters.iron.iron_plant import ( + IronPlantCostComponent, + IronPlantPerformanceComponent, +) + + +@fixture +def iron_dri_config_rosner_ng(): + shared_params = { + "winning_type": "ng", + "iron_win_capacity": 1418095, + "site_name": "IL", + } + performance_params = {"win_capacity_demon": "iron", "model_name": "rosner"} + cost_params = { + "LCOE": 58.02, + "LCOH": 7.10, + "LCOI_ore": 125.25996463784443, + "iron_transport_cost": 30.566808424134745, + "ore_profit_pct": 6.0, + "varom_model_name": "rosner", + "installation_years": 3, + "operational_year": 2035, + # 'plant_life': 30, + } + + tech_config = { + "model_inputs": { + "cost_parameters": cost_params, + "performance_parameters": performance_params, + "shared_parameters": shared_params, + } + } + return tech_config + + +@fixture +def plant_config(): + plant_config = { + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": 8760, + "dt": 3600, + }, + }, + "finance_parameters": { + "cost_adjustment_parameters": { + "cost_year_adjustment_inflation": 0.025, + "target_dollar_year": 2022, + } + }, + } + return plant_config + + +@fixture +def driver_config(): + driver_config = load_driver_yaml(EXAMPLE_DIR / "21_iron_mn_to_il" / "driver_config.yaml") + return driver_config + + +def test_baseline_iron_dri_costs_rosner_ng( + plant_config, driver_config, iron_dri_config_rosner_ng, subtests +): + expected_capex = 403808062.6981323 + expected_var_om = 373666381.7736174 + expected_fixed_om = 60103761.59958463 + capacity = 3885.1917808219177 + + prob = om.Problem() + iron_dri_perf = IronPlantPerformanceComponent( + plant_config=plant_config, + tech_config=iron_dri_config_rosner_ng, + driver_config=driver_config, + ) + + iron_dri_cost = IronPlantCostComponent( + plant_config=plant_config, + tech_config=iron_dri_config_rosner_ng, + driver_config=driver_config, + ) + + prob.model.add_subsystem("dri_perf", iron_dri_perf, promotes=["*"]) + prob.model.add_subsystem("dri_cost", iron_dri_cost, promotes=["*"]) + prob.setup() + prob.run_model() + + annual_pig_iron = prob.get_val("dri_perf.total_pig_iron_produced", units="t/year") + with subtests.test("Annual Ore"): + assert pytest.approx(annual_pig_iron[0] / 365, rel=1e-3) == capacity + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("dri_cost.CapEx")[0], rel=1e-6) == expected_capex + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("dri_cost.OpEx")[0], rel=1e-6) == expected_fixed_om + with subtests.test("VarOpEx"): + assert pytest.approx(prob.get_val("dri_cost.VarOpEx")[0], rel=1e-6) == expected_var_om diff --git a/h2integrate/converters/iron/test/test_iron_transport.py b/h2integrate/converters/iron/test/test_iron_transport.py new file mode 100644 index 000000000..842747ead --- /dev/null +++ b/h2integrate/converters/iron/test/test_iron_transport.py @@ -0,0 +1,263 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.converters.iron.iron_transport import ( + IronTransportCostComponent, + IronTransportPerformanceComponent, +) + + +@fixture +def plant_config(): + plant_config = { + "site": { + "latitude": 41.717, + "longitude": -88.398, + }, + "plant": { + "plant_life": 30, + }, + "finance_parameters": { + "cost_adjustment_parameters": { + "cost_year_adjustment_inflation": 0.025, + "target_dollar_year": 2022, + } + }, + } + return plant_config + + +def test_iron_transport_performance_chicago(plant_config, subtests): + # Chicago land distance: 68.19490223326876 km + # Chicago has water distance of 1414.8120870922066 km + tech_config_chicago = { + "model_inputs": { + "performance_parameters": { + "find_closest_ship_site": False, + "shipment_site": "Chicago", + } + } + } + prob = om.Problem() + transport = IronTransportPerformanceComponent( + plant_config=plant_config, + tech_config=tech_config_chicago, + driver_config={}, + ) + + prob.model.add_subsystem("transport", transport, promotes=["*"]) + prob.setup() + prob.run_model() + + with subtests.test("Total transport distance equals land + water"): + tot_distance = prob.get_val( + "transport.water_transport_distance", units="km" + ) + prob.get_val("transport.land_transport_distance", units="km") + assert ( + pytest.approx(prob.get_val("transport.total_transport_distance", units="km"), rel=1e-6) + == tot_distance + ) + with subtests.test("Chicago land transport distance"): + assert ( + pytest.approx( + prob.get_val("transport.land_transport_distance", units="km")[0], rel=1e-6 + ) + == 68.19490223326876 + ) + with subtests.test("Chicago water transport distance"): + assert ( + pytest.approx( + prob.get_val("transport.water_transport_distance", units="km")[0], rel=1e-6 + ) + == 1359.70926331 # 1414.8120870922066 + ) + + +def test_iron_transport_performance_buffalo(plant_config, subtests): + # Buffalo land distance: 794.1713773276688 km + # Buffalo has water distance of 1621.9112211308186 km + tech_config_buffalo = { + "model_inputs": { + "performance_parameters": { + "find_closest_ship_site": False, + "shipment_site": "Buffalo", + } + } + } + prob = om.Problem() + transport = IronTransportPerformanceComponent( + plant_config=plant_config, + tech_config=tech_config_buffalo, + driver_config={}, + ) + + prob.model.add_subsystem("transport", transport, promotes=["*"]) + prob.setup() + prob.run_model() + + with subtests.test("Total transport distance equals land + water"): + tot_distance = prob.get_val( + "transport.water_transport_distance", units="km" + ) + prob.get_val("transport.land_transport_distance", units="km") + assert ( + pytest.approx(prob.get_val("transport.total_transport_distance", units="km"), rel=1e-6) + == tot_distance + ) + with subtests.test("Buffalo land transport distance"): + assert ( + pytest.approx( + prob.get_val("transport.land_transport_distance", units="km")[0], rel=1e-6 + ) + == 794.1713773276688 + ) + with subtests.test("Buffalo water transport distance"): + assert ( + pytest.approx( + prob.get_val("transport.water_transport_distance", units="km")[0], rel=1e-6 + ) + == 1621.9112211308186 + ) + + +def test_iron_transport_performance_cleveland(plant_config, subtests): + # Cleveland land distance: 555.2088919541055 km + # Cleveland has water distance of 1341.7141480490504 km + tech_config_cleveland = { + "model_inputs": { + "performance_parameters": { + "find_closest_ship_site": False, + "shipment_site": "Cleveland", + } + } + } + prob = om.Problem() + transport = IronTransportPerformanceComponent( + plant_config=plant_config, + tech_config=tech_config_cleveland, + driver_config={}, + ) + + prob.model.add_subsystem("transport", transport, promotes=["*"]) + prob.setup() + prob.run_model() + + with subtests.test("Total transport distance equals land + water"): + tot_distance = prob.get_val( + "transport.water_transport_distance", units="km" + ) + prob.get_val("transport.land_transport_distance", units="km") + assert ( + pytest.approx(prob.get_val("transport.total_transport_distance", units="km"), rel=1e-6) + == tot_distance + ) + with subtests.test("Cleveland land transport distance"): + assert ( + pytest.approx( + prob.get_val("transport.land_transport_distance", units="km")[0], rel=1e-6 + ) + == 555.2088919541055 + ) + with subtests.test("Cleveland water transport distance"): + assert ( + pytest.approx( + prob.get_val("transport.water_transport_distance", units="km")[0], rel=1e-6 + ) + == 1341.7141480490504 + ) + + +def test_iron_transport_performance_closest_loc(plant_config, subtests): + tech_config_find_closest = { + "model_inputs": { + "performance_parameters": { + "find_closest_ship_site": True, + "shipment_site": "None", + } + } + } + + prob = om.Problem() + transport = IronTransportPerformanceComponent( + plant_config=plant_config, + tech_config=tech_config_find_closest, + driver_config={}, + ) + + prob.model.add_subsystem("transport", transport, promotes=["*"]) + prob.setup() + prob.run_model() + + with subtests.test("Total transport distance equals land + water"): + tot_distance = prob.get_val( + "transport.water_transport_distance", units="km" + ) + prob.get_val("transport.land_transport_distance", units="km") + assert ( + pytest.approx(prob.get_val("transport.total_transport_distance", units="km"), rel=1e-6) + == tot_distance + ) + with subtests.test("Duluth land transport distance"): + assert ( + pytest.approx( + prob.get_val("transport.land_transport_distance", units="km")[0], rel=1e-6 + ) + == 632.4711909045266 + ) + with subtests.test("Duluth water transport distance"): + assert ( + pytest.approx( + prob.get_val("transport.water_transport_distance", units="km")[0], rel=1e-6 + ) + == 0 + ) + + +def test_iron_transport_cost_cleveland(plant_config, subtests): + # total cost: 62.94298688675447 USD/tonne + # land cost: 38.4320718826894 USD/tonne + # water cost: 24.51091500406507 USD/tonne + annual_ore_production = 12385.195376438356 * 365 + + tech_config_chicago = { + "model_inputs": { + "performance_parameters": { + "find_closest_ship_site": False, + "shipment_site": "Cleveland", + }, + "cost_parameters": { + "transport_year": 2022, + "cost_year": 2022, + }, + } + } + prob = om.Problem() + perf = IronTransportPerformanceComponent( + plant_config=plant_config, + tech_config=tech_config_chicago, + driver_config={}, + ) + + cost = IronTransportCostComponent( + plant_config=plant_config, + tech_config=tech_config_chicago, + driver_config={}, + ) + + prob.model.add_subsystem("transport_perf", perf, promotes=["*"]) + prob.model.add_subsystem("transport_cost", cost, promotes=["*"]) + + prob.setup() + + prob.set_val("transport_cost.total_iron_ore_produced", annual_ore_production, units="t/year") + + prob.run_model() + + with subtests.test("Ore profit margin"): + assert ( + pytest.approx(prob.get_val("transport_cost.ore_profit_margin", units="USD/t"), rel=1e-6) + == 6.0 + ) + + with subtests.test("Shipment cost usd/ton"): + varom = prob.get_val("transport_cost.VarOpEx", units="USD/year") + cost_per_unit = varom / annual_ore_production + assert pytest.approx(cost_per_unit[0], abs=1e-3) == 62.94298688675447 diff --git a/h2integrate/converters/iron/test/test_iron_wrapper_baseline.py b/h2integrate/converters/iron/test/test_iron_wrapper_baseline.py new file mode 100644 index 000000000..577e62de6 --- /dev/null +++ b/h2integrate/converters/iron/test/test_iron_wrapper_baseline.py @@ -0,0 +1,334 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate import EXAMPLE_DIR +from h2integrate.core.inputs.validation import load_plant_yaml, load_driver_yaml +from h2integrate.converters.iron.iron_wrapper import IronComponent + + +@fixture +def baseline_iron_tech(): + iron_config = { + "LCOE": 58.02, + "LCOH": 7.10, + "ROM_iron_site_name": "Northshore", + "iron_ore_product_selection": "drg_taconite_pellets", + "reduced_iron_site_latitude": 41.717, + "reduced_iron_site_longitude": -88.398, + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + "win_capacity_denom": "iron", + "iron_post_capacity": 1000000, + "iron_win_capacity": 1418095, + "ore_cf_estimate": 0.9, + "cost_year": 2020, + } + return iron_config + + +@fixture +def mine_iron_tech(): + iron_config = { + "LCOE": 58.02, + "LCOH": 7.10, + "ROM_iron_site_name": "Hibbing", + "iron_ore_product_selection": "drg_taconite_pellets", + "reduced_iron_site_latitude": 41.717, + "reduced_iron_site_longitude": -88.398, + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + "win_capacity_denom": "iron", + "iron_post_capacity": 1000000, + "iron_win_capacity": 1418095, + "ore_cf_estimate": 0.9, + "cost_year": 2020, + } + return iron_config + + +@fixture +def lcoe50_iron_tech(): + iron_config = { + "LCOE": 50.0, + "LCOH": 7.10, + "ROM_iron_site_name": "Northshore", + "iron_ore_product_selection": "drg_taconite_pellets", + "reduced_iron_site_latitude": 41.717, + "reduced_iron_site_longitude": -88.398, + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + "win_capacity_denom": "iron", + "iron_post_capacity": 1000000, + "iron_win_capacity": 1418095, + "ore_cf_estimate": 0.9, + "cost_year": 2020, + } + return iron_config + + +@fixture +def lcoh6_iron_tech(): + iron_config = { + "LCOE": 58.02, + "LCOH": 6.00, + "ROM_iron_site_name": "Northshore", + "iron_ore_product_selection": "drg_taconite_pellets", + "reduced_iron_site_latitude": 41.717, + "reduced_iron_site_longitude": -88.398, + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + "win_capacity_denom": "iron", + "iron_post_capacity": 1000000, + "iron_win_capacity": 1418095, + "ore_cf_estimate": 0.9, + "cost_year": 2020, + } + return iron_config + + +@fixture +def location_iron_tech(): + iron_config = { + "LCOE": 60.48, + "LCOH": 8.86, + "ROM_iron_site_name": "Northshore", + "iron_ore_product_selection": "drg_taconite_pellets", + "reduced_iron_site_latitude": 41.2, + "reduced_iron_site_longitude": -81.7, + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + "win_capacity_denom": "iron", + "iron_post_capacity": 1000000, + "iron_win_capacity": 1418095, + "ore_cf_estimate": 0.9, + "cost_year": 2020, + } + return iron_config + + +@fixture +def plant_config(): + plant_config = load_plant_yaml(EXAMPLE_DIR / "21_iron_mn_to_il" / "plant_config.yaml") + return plant_config + + +@fixture +def driver_config(): + driver_config = load_driver_yaml(EXAMPLE_DIR / "21_iron_mn_to_il" / "driver_config.yaml") + return driver_config + + +def test_baseline_iron(plant_config, driver_config, baseline_iron_tech, subtests): + test_cases = { + "ng/none": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + }, + "ng/eaf": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "eaf_steel", + }, + "h2/none": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "none", + }, + "h2/eaf": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "eaf_steel", + }, + } + expected_lcoi = { + "ng/none": 370.212189551055, # USD/t + "ng/eaf": 513.8574754088993, + "h2/none": 715.1015416039348, + "h2/eaf": 858.9727023405763, + } + + for test_name, test_inputs in test_cases.items(): + baseline_iron_tech.update(test_inputs) + prob = om.Problem() + comp = IronComponent( + plant_config=plant_config, + tech_config={"model_inputs": {"cost_parameters": baseline_iron_tech}}, + driver_config=driver_config, + ) + prob.model.add_subsystem("iron", comp) + prob.setup() + prob.run_model() + + with subtests.test(f"baseline LCOI for {test_name}"): + lcoi = prob.get_val("iron.LCOI", units="USD/t") + assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] + + +def test_changing_mine_iron(plant_config, driver_config, mine_iron_tech, subtests): + test_cases = { + "ng/none": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + }, + "ng/eaf": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "eaf_steel", + }, + "h2/none": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "none", + }, + "h2/eaf": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "eaf_steel", + }, + } + expected_lcoi = { + "ng/none": 354.77730320952014, + "ng/eaf": 498.42258906736447, + "h2/none": 699.666052372724, + "h2/eaf": 843.5372131093657, + } + for test_name, test_inputs in test_cases.items(): + mine_iron_tech.update(test_inputs) + prob = om.Problem() + comp = IronComponent( + plant_config=plant_config, + tech_config={"model_inputs": {"cost_parameters": mine_iron_tech}}, + driver_config=driver_config, + ) + prob.model.add_subsystem("iron", comp) + prob.setup() + prob.run_model() + + with subtests.test(f"Hibbing mine LCOI for {test_name}"): + lcoi = prob.get_val("iron.LCOI", units="USD/t") + assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] + + +def test_lcoe50_iron(plant_config, driver_config, lcoe50_iron_tech, subtests): + test_cases = { + "ng/none": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + }, + "ng/eaf": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "eaf_steel", + }, + "h2/none": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "none", + }, + "h2/eaf": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "eaf_steel", + }, + } + + expected_lcoi = { + "ng/none": 369.07934010565174, + "ng/eaf": 509.8866655496638, + "h2/none": 714.305073437314, + "h2/eaf": 855.2282058088431, + } + for test_name, test_inputs in test_cases.items(): + lcoe50_iron_tech.update(test_inputs) + prob = om.Problem() + comp = IronComponent( + plant_config=plant_config, + tech_config={"model_inputs": {"cost_parameters": lcoe50_iron_tech}}, + driver_config=driver_config, + ) + prob.model.add_subsystem("iron", comp) + prob.setup() + prob.run_model() + + with subtests.test(f"Hibbing mine LCOI for {test_name}"): + lcoi = prob.get_val("iron.LCOI", units="USD/t") + assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] + + +def test_lcoh6_iron(plant_config, driver_config, lcoh6_iron_tech, subtests): + test_cases = { + "ng/none": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + }, + "ng/eaf": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "eaf_steel", + }, + "h2/none": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "none", + }, + "h2/eaf": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "eaf_steel", + }, + } + + expected_lcoi = { + "ng/none": 370.212189551055, + "ng/eaf": 513.8574754088993, + "h2/none": 653.4076529067631, + "h2/eaf": 797.2788136434048, + } + for test_name, test_inputs in test_cases.items(): + lcoh6_iron_tech.update(test_inputs) + prob = om.Problem() + comp = IronComponent( + plant_config=plant_config, + tech_config={"model_inputs": {"cost_parameters": lcoh6_iron_tech}}, + driver_config=driver_config, + ) + prob.model.add_subsystem("iron", comp) + prob.setup() + prob.run_model() + + with subtests.test(f"Hibbing mine LCOI for {test_name}"): + lcoi = prob.get_val("iron.LCOI", units="USD/t") + assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] + + +def test_location_iron(plant_config, driver_config, location_iron_tech, subtests): + test_cases = { + "ng/none": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "none", + }, + "ng/eaf": { + "reduced_iron_product_selection": "ng_dri", + "structural_iron_product_selection": "eaf_steel", + }, + "h2/none": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "none", + }, + "h2/eaf": { + "reduced_iron_product_selection": "h2_dri", + "structural_iron_product_selection": "eaf_steel", + }, + } + + expected_lcoi = { + "ng/none": 365.2571816, + "ng/eaf": 509.7708257, + "h2/none": 808.3401864, + "h2/eaf": 953.1133839, + } + + for test_name, test_inputs in test_cases.items(): + location_iron_tech.update(test_inputs) + prob = om.Problem() + comp = IronComponent( + plant_config=plant_config, + tech_config={"model_inputs": {"cost_parameters": location_iron_tech}}, + driver_config=driver_config, + ) + prob.model.add_subsystem("iron", comp) + prob.setup() + prob.run_model() + + with subtests.test(f"Hibbing mine LCOI for {test_name}"): + lcoi = prob.get_val("iron.LCOI", units="USD/t") + assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] diff --git a/h2integrate/converters/steel/electric_arc_furnance.py b/h2integrate/converters/steel/electric_arc_furnance.py new file mode 100644 index 000000000..b45058592 --- /dev/null +++ b/h2integrate/converters/steel/electric_arc_furnance.py @@ -0,0 +1,269 @@ +import numpy as np +import pandas as pd +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains +from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci +from h2integrate.simulation.technologies.iron.iron import ( + IronCostModelConfig, + IronPerformanceModelConfig, + IronPerformanceModelOutputs, + run_iron_cost_model, + run_size_iron_plant_performance, +) +from h2integrate.simulation.technologies.iron.load_top_down_coeffs import load_top_down_coeffs + + +@define +class EAFPlantBaseConfig(BaseConfig): + eaf_type: str = field( + kw_only=True, converter=(str.lower, str.strip), validator=contains(["h2", "ng"]) + ) # product selection + eaf_capacity: float | int = field(default=1418095) # plant_capacity_mtpy + eaf_capacity_denominator: str = field( + default="iron", converter=(str.lower, str.strip), validator=contains(["iron", "steel"]) + ) # how is this being used for steel? + + model_name: str = field(default="rosner") # only option at the moment + model_fp: str = field(default="") + inputs_fp: str = field(default="") + coeffs_fp: str = field(default="") + refit_coeffs: bool = field(default=False) + site_name: str = field(default="winning_site") + + def make_site_dict(self): + return {"name": self.site_name} + + +@define +class EAFPlantPerformanceConfig(EAFPlantBaseConfig): + def make_model_dict(self): + keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] + d = self.as_dict() + model_dict = {k: v for k, v in d.items() if k in keys} + model_dict.update({"name": self.model_name}) + return model_dict + + +class EAFPlantPerformanceComponent(om.ExplicitComponent): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.config = EAFPlantPerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=False, + ) + + self.add_discrete_output( + "steel_plant_performance", val=pd.DataFrame, desc="steel plant performance results" + ) + + self.add_output("total_steel_produced", val=0.0, units="t/year") + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + steel_plant_performance_inputs = { + "plant_capacity_mtpy": self.config.eaf_capacity, + "capacity_denominator": self.config.eaf_capacity_denominator, + } + steel_plant_model_inputs = self.config.make_model_dict() + steel_plant_site = self.config.make_site_dict() + performance_config = IronPerformanceModelConfig( + product_selection=f"{self.config.eaf_type}_eaf", + site=steel_plant_site, + model=steel_plant_model_inputs, + params=steel_plant_performance_inputs, + ) + iron_post_plant_performance = run_size_iron_plant_performance(performance_config) + # wltpy = wet long tons per year + steel_produced_mtpy = iron_post_plant_performance.performances_df.set_index("Name").loc[ + "Steel Production" + ]["Model"] + outputs["total_steel_produced"] = steel_produced_mtpy + discrete_outputs["steel_plant_performance"] = iron_post_plant_performance.performances_df + + +@define +class EAFPlantCostConfig(EAFPlantBaseConfig): + LCOE: float = field(kw_only=True) # $/MWh + LCOH: float = field(kw_only=True) # $/kg + LCOI_ore: float = field(kw_only=True) + iron_transport_cost: float = field(kw_only=True) + ore_profit_pct: float = field(kw_only=True) + + # varom_model_name is unused at the moment + varom_model_name: str = field( + default="rosner", validator=contains(["rosner", "rosner_override"]) + ) + operational_year: int = field(converter=int, kw_only=True) + installation_years: int | float = field(kw_only=True) + plant_life: int = field(converter=int, kw_only=True) + cost_year: int = field(converter=int, kw_only=True) + + def make_model_dict(self): + keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] + d = self.as_dict() + model_dict = {k: v for k, v in d.items() if k in keys} + model_dict.update({"name": self.model_name}) + return model_dict + + def make_cost_dict(self): + keys = ["operational_year", "installation_years", "plant_life"] + d = self.as_dict() + cost_dict = {k: v for k, v in d.items() if k in keys} + return cost_dict + + +class EAFPlantCostComponent(CostModelBaseClass): + def setup(self): + self.target_dollar_year = self.options["plant_config"]["finance_parameters"][ + "cost_adjustment_parameters" + ]["target_dollar_year"] + self.plant_life = self.options["plant_config"]["plant"]["plant_life"] + + config_dict = merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") + config_dict.update({"cost_year": self.target_dollar_year}) + config_dict.update({"plant_life": self.plant_life}) + + self.config = EAFPlantCostConfig.from_dict(config_dict) + + super().setup() + self.add_input("LCOE", val=self.config.LCOE, units="USD/MW/h") + self.add_input("LCOH", val=self.config.LCOH, units="USD/kg") + self.add_input("LCOI_ore", val=self.config.LCOI_ore, units="USD/t") + self.add_input("iron_transport_cost", val=self.config.iron_transport_cost, units="USD/t") + self.add_input("ore_profit_pct", val=self.config.ore_profit_pct, units="USD/t") + self.add_discrete_input( + "steel_plant_performance", val=pd.DataFrame, desc="steel plant performance results" + ) + self.add_discrete_output( + "steel_plant_cost", val=pd.DataFrame, desc="steel plant cost results" + ) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + steel_plant_performance = IronPerformanceModelOutputs( + discrete_inputs["steel_plant_performance"] + ) + + steel_plant_cost_inputs = { + "lcoe": inputs["LCOE"][0] / 1e3, + "lcoh": inputs["LCOH"][0], + "lco_iron_ore_tonne": inputs["LCOI_ore"][0], + "iron_transport_tonne": inputs["iron_transport_cost"][0], + "plant_capacity_mtpy": self.config.eaf_capacity, + "capacity_denominator": self.config.eaf_capacity_denominator, + } + cost_dict = self.config.make_cost_dict() + steel_plant_cost_inputs.update(cost_dict) + + steel_plant_model_inputs = self.config.make_model_dict() + iron_ore_site = self.config.make_site_dict() + cost_config = IronCostModelConfig( + product_selection=f"{self.config.eaf_type}_eaf", + site=iron_ore_site, + model=steel_plant_model_inputs, + params=steel_plant_cost_inputs, + performance=steel_plant_performance, + ) + steel_plant_cost = run_iron_cost_model(cost_config) + + discrete_outputs["steel_plant_cost"] = steel_plant_cost.costs_df + + # Now taking some stuff from finance + cost_df = steel_plant_cost.costs_df.set_index("Name") + cost_ds = cost_df.loc[:, self.config.site_name] + + cost_names = cost_df.index.values + cost_types = cost_df.loc[:, "Type"].values + cost_units = cost_df.loc[:, "Unit"].values + + # add capital items + capex = 0 + fixed_om = 0 + variable_om = 0 + capital_idxs = np.where(cost_types == "capital")[0] + for idx in capital_idxs: + cost_names[idx] + unit = cost_units[idx] # Units for capital costs should be " $"" + source_year = int(unit[:4]) + source_year_cost = cost_ds.iloc[idx] + capex += inflate_cepci(source_year_cost, source_year, self.config.cost_year) + + # add fixed costs + fixed_idxs = np.where(cost_types == "fixed opex")[0] + for idx in fixed_idxs: + cost_names[idx] + unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" + source_year = int(unit[:4]) + source_year_cost = cost_ds.iloc[idx] + fixed_om += inflate_cpi(source_year_cost, source_year, self.config.cost_year) + + # add feedstock costs + perf_df = steel_plant_performance.performances_df.set_index("Name") + perf_ds = perf_df.loc[:, "Model"] + + coeff_dict = load_top_down_coeffs( + [ + "Raw Water", + "Lime", + "Carbon", + "Slag Disposal", + "Hydrogen", + "Natural Gas", + "Electricity", + "Inflation Rate", + ] + ) + + years = list(coeff_dict["years"]) + analysis_start = self.config.operational_year - self.config.installation_years + start_idx = years.index(analysis_start) + if len(years) > (start_idx + self.config.plant_life + self.config.installation_years + 1): + end_idx = years.index( + analysis_start + self.config.plant_life + self.config.installation_years + 1 + ) + indices = list(np.arange(start_idx, end_idx)) + else: + end_idx = len(years) - 1 + indices = list(np.arange(start_idx, end_idx)) + repeats = ( + start_idx + self.config.plant_life + self.config.installation_years + 2 - len(years) + ) + for _i in range(repeats): + indices.append(end_idx) + + raw_water_unitcost_tonne = coeff_dict["Raw Water"]["values"][indices].astype(float) + lime_unitcost_tonne = coeff_dict["Lime"]["values"][indices].astype(float) + carbon_unitcost_tonne = coeff_dict["Carbon"]["values"][indices].astype(float) + slag_disposal_unitcost_tonne = coeff_dict["Slag Disposal"]["values"][indices].astype(float) + + # TODO: make natural gas costs an input + natural_gas_prices_MMBTU = coeff_dict["Natural Gas"]["values"][indices].astype(float) + natural_gas_prices_GJ = natural_gas_prices_MMBTU * 1.05506 # Convert to GJ + + iron_ore_pellet_unitcost_tonne = inputs["LCOI_ore"][0] + if inputs["iron_transport_cost"] > 0: + iron_transport_cost_tonne = inputs["iron_transport_cost"][0] + ore_profit_pct = inputs["ore_profit_pct"][0] + iron_ore_pellet_unitcost_tonne = ( + iron_ore_pellet_unitcost_tonne + iron_transport_cost_tonne + ) * (1 + ore_profit_pct / 100) + + v_start = years.index(self.config.operational_year) - years.index(analysis_start) + 1 + variable_om += perf_ds["Raw Water Withdrawal"] * raw_water_unitcost_tonne + variable_om += perf_ds["Lime"] * lime_unitcost_tonne + variable_om += perf_ds["Carbon (Coke)"] * carbon_unitcost_tonne + variable_om += perf_ds["Iron Ore"] * iron_ore_pellet_unitcost_tonne + variable_om += perf_ds["Hydrogen"] * inputs["LCOH"][0] * 1000 + variable_om += perf_ds["Natural Gas"] * natural_gas_prices_GJ + variable_om += perf_ds["Electricity"] * inputs["LCOE"][0] + variable_om += perf_ds["Slag"] * slag_disposal_unitcost_tonne + + outputs["CapEx"] = capex + outputs["OpEx"] = fixed_om + outputs["VarOpEx"] = variable_om[v_start:] diff --git a/h2integrate/converters/steel/test/test_electric_arc_furnance.py b/h2integrate/converters/steel/test/test_electric_arc_furnance.py new file mode 100644 index 000000000..2d27aa9c8 --- /dev/null +++ b/h2integrate/converters/steel/test/test_electric_arc_furnance.py @@ -0,0 +1,99 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate import EXAMPLE_DIR +from h2integrate.core.inputs.validation import load_driver_yaml +from h2integrate.converters.steel.electric_arc_furnance import ( + EAFPlantCostComponent, + EAFPlantPerformanceComponent, +) + + +@fixture +def steel_eaf_config_rosner_ng(): + shared_params = { + "eaf_type": "ng", + "eaf_capacity": 1000000, + "site_name": "IL", + } + performance_params = {"model_name": "rosner"} + cost_params = { + "LCOE": 58.02, + "LCOH": 7.10, + "LCOI_ore": 125.25996463784443, + "iron_transport_cost": 30.566808424134745, + "ore_profit_pct": 6.0, + "varom_model_name": "rosner", + "installation_years": 3, + "operational_year": 2035, + # 'plant_life': 30, + } + + tech_config = { + "model_inputs": { + "cost_parameters": cost_params, + "performance_parameters": performance_params, + "shared_parameters": shared_params, + } + } + return tech_config + + +@fixture +def plant_config(): + plant_config = { + "plant": { + "plant_life": 30, + }, + "finance_parameters": { + "cost_adjustment_parameters": { + "cost_year_adjustment_inflation": 0.025, + "target_dollar_year": 2022, + } + }, + } + return plant_config + + +@fixture +def driver_config(): + driver_config = load_driver_yaml(EXAMPLE_DIR / "21_iron_mn_to_il" / "driver_config.yaml") + return driver_config + + +def test_baseline_steel_eaf_costs_rosner_ng( + plant_config, driver_config, steel_eaf_config_rosner_ng, subtests +): + expected_capex = 264034898.3329662 + expected_var_om = 32.09095 + expected_fixed_om = 38298777.651658 + capacity = 1189772 / 365 # t/day + + prob = om.Problem() + steel_eaf_perf = EAFPlantPerformanceComponent( + plant_config=plant_config, + tech_config=steel_eaf_config_rosner_ng, + driver_config=driver_config, + ) + + steel_eaf_cost = EAFPlantCostComponent( + plant_config=plant_config, + tech_config=steel_eaf_config_rosner_ng, + driver_config=driver_config, + ) + + prob.model.add_subsystem("eaf_perf", steel_eaf_perf, promotes=["*"]) + prob.model.add_subsystem("eaf_cost", steel_eaf_cost, promotes=["*"]) + prob.setup() + prob.run_model() + + annual_steel = prob.get_val("eaf_perf.total_steel_produced", units="t/year") + with subtests.test("Annual Steel"): + assert pytest.approx(annual_steel[0] / 365, rel=1e-3) == capacity + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("eaf_cost.CapEx")[0], rel=1e-6) == expected_capex + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("eaf_cost.OpEx")[0], rel=1e-6) == expected_fixed_om + with subtests.test("VarOpEx"): + assert pytest.approx(prob.get_val("eaf_cost.VarOpEx")[0], rel=1e-6) == expected_var_om diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index fa23be8d1..942c81dec 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -341,7 +341,7 @@ def create_technology_models(self): self.cost_models = [] self.finance_models = [] - combined_performance_and_cost_models = ["hopp", "h2_storage", "wombat"] + combined_performance_and_cost_models = ["hopp", "h2_storage", "wombat", "iron"] # Create a technology group for each technology for tech_name, individual_tech_config in self.technology_config["technologies"].items(): @@ -968,9 +968,6 @@ def connect_technologies(self): tech_configs = group_configs.get("tech_configs") primary_commodity_type = group_configs.get("commodity") commodity_stream = group_configs.get("commodity_stream") - # Skip steel finances; it provides its own finances - if any(c in tech_configs for c in ("steel", "geoh2")): - continue if commodity_stream is not None: # connect commodity stream output to summer input @@ -1151,6 +1148,7 @@ def post_process(self, show_plots=False): Also, if `show_plots` is set to True, then any performance models with post-processing plots available will be run and shown. """ + self.prob.model.list_inputs(units=True, print_mean=True, excludes=["*resource_data"]) self.prob.model.list_outputs(units=True, print_mean=True, excludes=["*resource_data"]) diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index f658ac499..b6cd1fed2 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -5,9 +5,18 @@ from h2integrate.finances.profast_lco import ProFastLCO from h2integrate.finances.profast_npv import ProFastNPV from h2integrate.converters.steel.steel import SteelPerformanceModel, SteelCostAndFinancialModel +from h2integrate.converters.iron.iron_mine import ( + IronMineCostComponent, + IronMinePerformanceComponent, +) +from h2integrate.converters.iron.iron_plant import ( + IronPlantCostComponent, + IronPlantPerformanceComponent, +) from h2integrate.converters.wind.wind_pysam import PYSAMWindPlantPerformanceModel from h2integrate.transporters.generic_summer import GenericSummerPerformanceModel from h2integrate.converters.hopp.hopp_wrapper import HOPPComponent +from h2integrate.converters.iron.iron_wrapper import IronComponent from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel from h2integrate.finances.numpy_financial_npv import NumpyFinancialNPV from h2integrate.storage.generic_storage_cost import GenericStorageCostModel @@ -16,6 +25,10 @@ from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel from h2integrate.transporters.generic_combiner import GenericCombinerPerformanceModel from h2integrate.transporters.generic_splitter import GenericSplitterPerformanceModel +from h2integrate.converters.iron.iron_transport import ( + IronTransportCostComponent, + IronTransportPerformanceComponent, +) from h2integrate.converters.nitrogen.simple_ASU import SimpleASUCostModel, SimpleASUPerformanceModel from h2integrate.storage.simple_generic_storage import SimpleGenericStorage from h2integrate.storage.hydrogen.tank_baseclass import ( @@ -132,6 +145,11 @@ "simple_ASU_cost": SimpleASUCostModel, "simple_ASU_performance": SimpleASUPerformanceModel, "hopp": HOPPComponent, + "iron": IronComponent, + "iron_mine_performance": IronMinePerformanceComponent, + "iron_mine_cost": IronMineCostComponent, + "iron_plant_performance": IronPlantPerformanceComponent, + "iron_plant_cost": IronPlantCostComponent, "reverse_osmosis_desalination_performance": ReverseOsmosisPerformanceModel, "reverse_osmosis_desalination_cost": ReverseOsmosisCostModel, "simple_ammonia_performance": SimpleAmmoniaPerformanceModel, @@ -164,6 +182,8 @@ "pipe": PipePerformanceModel, "combiner_performance": GenericCombinerPerformanceModel, "splitter_performance": GenericSplitterPerformanceModel, + "iron_transport_performance": IronTransportPerformanceComponent, + "iron_transport_cost": IronTransportCostComponent, # Simple Summers "summer": GenericSummerPerformanceModel, # Storage diff --git a/h2integrate/finances/profast_base.py b/h2integrate/finances/profast_base.py index 9cbd11491..227d5ffb2 100644 --- a/h2integrate/finances/profast_base.py +++ b/h2integrate/finances/profast_base.py @@ -597,7 +597,15 @@ def populate_profast(self, inputs): ProFAST: A fully configured ProFAST financial model object ready for execution. """ # determine commodity units - mass_commodities = ["hydrogen", "ammonia", "co2", "nitrogen", "methanol"] + mass_commodities = [ + "hydrogen", + "ammonia", + "co2", + "nitrogen", + "methanol", + "iron_ore", + "pig_iron", + ] # create years of operation list years_of_operation = create_years_of_operation( diff --git a/h2integrate/simulation/technologies/iron/martin_ore/variable_om_cost.py b/h2integrate/simulation/technologies/iron/martin_ore/variable_om_cost.py new file mode 100644 index 000000000..b1c0ed102 --- /dev/null +++ b/h2integrate/simulation/technologies/iron/martin_ore/variable_om_cost.py @@ -0,0 +1,33 @@ +import numpy as np + +from h2integrate.simulation.technologies.iron.load_top_down_coeffs import load_top_down_coeffs + + +def martin_ore_variable_om_cost(mine_name, cost_df, analysis_start, cost_year, plant_life): + cost_ds = cost_df.loc[:, mine_name] + cost_names = cost_df.index.values + cost_types = cost_df.loc[:, "Type"].values + cost_units = cost_df.loc[:, "Unit"].values + + var_td_idxs = np.where(cost_types == "variable opex td")[0] + var_td_names = cost_names[var_td_idxs] + var_td_input_costs = load_top_down_coeffs(var_td_names, cost_year) + var_td_years = var_td_input_costs["years"] + year_start_idx = np.where(var_td_years == analysis_start)[0][0] + analysis_end = min(max(var_td_years), analysis_start + plant_life) + year_end_idx = np.where(var_td_years == analysis_end)[0][0] + year_idxs = range(year_start_idx, year_end_idx) + var_om_td = 0 + for idx in var_td_idxs: + name = cost_names[idx] + cost_units[idx] # Should be " per " + var_td_usage = cost_ds.iloc[idx] + + var_td_dict = var_td_input_costs[name] + var_td_dict["unit"] # Should be " $ per (start_idx + plant_life + install_years + 1): diff --git a/h2integrate/simulation/technologies/iron/rosner_ore/variable_om_cost.py b/h2integrate/simulation/technologies/iron/rosner_ore/variable_om_cost.py new file mode 100644 index 000000000..15d8fd442 --- /dev/null +++ b/h2integrate/simulation/technologies/iron/rosner_ore/variable_om_cost.py @@ -0,0 +1,33 @@ +import numpy as np + +from h2integrate.simulation.technologies.iron.load_top_down_coeffs import load_top_down_coeffs + + +def rosner_ore_variable_om_cost(mine_name, cost_df, analysis_start, cost_year, plant_life): + cost_ds = cost_df.loc[:, mine_name] + cost_names = cost_df.index.values + cost_types = cost_df.loc[:, "Type"].values + cost_units = cost_df.loc[:, "Unit"].values + + var_td_idxs = np.where(cost_types == "variable opex td")[0] + var_td_names = cost_names[var_td_idxs] + var_td_input_costs = load_top_down_coeffs(var_td_names, cost_year) + var_td_years = var_td_input_costs["years"] + year_start_idx = np.where(var_td_years == analysis_start)[0][0] + analysis_end = min(max(var_td_years), analysis_start + plant_life) + year_end_idx = np.where(var_td_years == analysis_end)[0][0] + year_idxs = range(year_start_idx, year_end_idx) + var_om_td = 0 + for idx in var_td_idxs: + name = cost_names[idx] + cost_units[idx] # Should be " per " + var_td_usage = cost_ds.iloc[idx] + + var_td_dict = var_td_input_costs[name] + var_td_dict["unit"] # Should be " $ per =0.11", + "geopy", "pyDOE3", ] keywords = [ From 317694f380d86a0961baad8d4e5b997059b01596 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Mon, 10 Nov 2025 15:18:46 -0700 Subject: [PATCH 51/79] Open-Meteo Wind Resource (#332) * changed C to degC in wind resource baseclass * added open-meteo wind resource model and tests * updated pytest skiptest decorator for mcm package --------- Co-authored-by: kbrunik <102193481+kbrunik@users.noreply.github.com> Co-authored-by: kbrunik Co-authored-by: John Jasa Co-authored-by: Jared Thomas --- CHANGELOG.md | 1 + docs/_toc.yml | 1 + docs/resource/openmeteo_wind_archive.md | 40 + docs/resource/wind_index.md | 1 + h2integrate/core/supported_models.py | 3 + .../resource/wind/nrel_developer_wtk_api.py | 2 + h2integrate/resource/wind/openmeteo_wind.py | 341 + .../wind/test/test_openmeteo_wind_api.py | 141 + .../resource/wind/wind_resource_base.py | 2 +- pyproject.toml | 3 + ..._2023_openmeteo_archive_60min_local_tz.csv | 8812 +++++++++++++++++ .../wind/open-meteo-44.04N95.20W438m.csv | 8812 +++++++++++++++++ tests/h2integrate/test_all_examples.py | 11 +- 13 files changed, 18163 insertions(+), 7 deletions(-) create mode 100644 docs/resource/openmeteo_wind_archive.md create mode 100644 h2integrate/resource/wind/openmeteo_wind.py create mode 100644 h2integrate/resource/wind/test/test_openmeteo_wind_api.py create mode 100644 resource_files/wind/44.04218_-95.19757_2023_openmeteo_archive_60min_local_tz.csv create mode 100644 resource_files/wind/open-meteo-44.04N95.20W438m.csv diff --git a/CHANGELOG.md b/CHANGELOG.md index 19e91ee9e..724532ed1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Added `ProFastNPV`, a finance model using ProFAST to calculate NPV of the commodity - Moved `compute()` from `ProFastBase` to `ProFastLCO`. - Added `NumpyFinancialNPV`, a finance model that uses NumPy Financial npv to calculate the npv from the cash flows +- Added wind resource model for API calls to Open-Meteo archive - Added `load_yaml()` function and flexibility to input a config dictionary to H2IntegrateModel rather than a filepath ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index 39f4885a4..f6dd7f9f6 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -44,6 +44,7 @@ parts: sections: - file: resource/wind_index - file: resource/wind_toolkit_v2_api + - file: resource/openmeteo_wind_archive - file: resource/solar_index - file: resource/goes_solar_v4_api diff --git a/docs/resource/openmeteo_wind_archive.md b/docs/resource/openmeteo_wind_archive.md new file mode 100644 index 000000000..fe6ce61b3 --- /dev/null +++ b/docs/resource/openmeteo_wind_archive.md @@ -0,0 +1,40 @@ +(wind_resource:openmeteo_archive)= +# Open-Meteo Wind + +This resource class downloads wind resource data from the [OpenMeteo Archive API](https://open-meteo.com/en/docs/historical-weather-api) + +This dataset allows for resource data to be downloaded for: +- **resource years** from 1940 to year before the current calendar year. +- **locations** across the globe. +- **resource heights** from 10 and 100 meters. +- **time intervals** of 60 minutes. + +## Available Data + +| Resource Data | Resource Heights (m) | +| :---------------- | :---------------: | +| `wind_speed` | 10, 100 | +| `wind_direction` | 10, 100 | +| `temperature` | 2 | +| `pressure` | 0 | +| `relative_humidity` | 2 | +| `precipitation_rate` | 0 | + +| Additional Data | Included | +| :---------------- | :---------------: | +| `site_id` | X | +| `site_lat` | X | +| `site_lon` | X | +| `elevation` | -- | +| `site_tz` | *see note | +| `data_tz` | X | +| `filepath` | X | +| `year` | X | +| `month` | X | +| `day` | X | +| `hour` | X | +| `minute` | X | + +```{note} +`site_tz` (the site timezone) is not output explicitly from this model, but `data_tz` would equal the site timezone (specified in plant_config["plant"]["simulation"]["timezone"]) is set as a non-zero value. Otherwise, the resource data is pulled with timestamps given in UTC (this is the default behavior) +``` diff --git a/docs/resource/wind_index.md b/docs/resource/wind_index.md index 8254e696d..b96065d32 100644 --- a/docs/resource/wind_index.md +++ b/docs/resource/wind_index.md @@ -2,6 +2,7 @@ # Wind Resource: Model Overview - [**"wind_toolkit_v2_api"**](wind_resource:wtk_v2_api): this requires an API key for the NREL developer network +- [**"openmeteo_wind_api"**](wind_resource:openmeteo_archive) ```{note} diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index b6cd1fed2..0d9af96fe 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -19,6 +19,7 @@ from h2integrate.converters.iron.iron_wrapper import IronComponent from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel from h2integrate.finances.numpy_financial_npv import NumpyFinancialNPV +from h2integrate.resource.wind.openmeteo_wind import OpenMeteoHistoricalWindResource from h2integrate.storage.generic_storage_cost import GenericStorageCostModel from h2integrate.storage.hydrogen.eco_storage import H2Storage from h2integrate.converters.wind.atb_wind_cost import ATBWindPlantCostModel @@ -123,6 +124,7 @@ # Resources "river_resource": RiverResource, "wind_toolkit_v2_api": WTKNRELDeveloperAPIWindResource, + "openmeteo_wind_api": OpenMeteoHistoricalWindResource, "goes_aggregated_solar_v4_api": GOESAggregatedSolarAPI, "goes_conus_solar_v4_api": GOESConusSolarAPI, "goes_fulldisc_solar_v4_api": GOESFullDiscSolarAPI, @@ -210,4 +212,5 @@ "NumpyFinancialNPV": NumpyFinancialNPV, } + electricity_producing_techs = ["wind", "solar", "pv", "river", "hopp", "natural_gas_plant"] diff --git a/h2integrate/resource/wind/nrel_developer_wtk_api.py b/h2integrate/resource/wind/nrel_developer_wtk_api.py index 4a813d24b..ddcb7dcf4 100644 --- a/h2integrate/resource/wind/nrel_developer_wtk_api.py +++ b/h2integrate/resource/wind/nrel_developer_wtk_api.py @@ -173,6 +173,8 @@ def load_data(self, fpath): k: v.replace("%", "percent").replace("degrees", "deg").replace("hour", "h") for k, v in data_units.items() } + data_units_temp = {k: "degC" for k, v in data_units.items() if v == "C"} + data_units.update(data_units_temp) # convert data to standardized units data, data_units = self.compare_units_and_correct(data, data_units) diff --git a/h2integrate/resource/wind/openmeteo_wind.py b/h2integrate/resource/wind/openmeteo_wind.py new file mode 100644 index 000000000..0a113135f --- /dev/null +++ b/h2integrate/resource/wind/openmeteo_wind.py @@ -0,0 +1,341 @@ +from pathlib import Path +from datetime import datetime + +import pandas as pd +import requests_cache +import openmeteo_requests +from attrs import field, define +from retry_requests import retry + +from h2integrate.core.validators import range_val +from h2integrate.resource.resource_base import ResourceBaseAPIConfig +from h2integrate.resource.wind.wind_resource_base import WindResourceBaseAPIModel + + +@define +class OpenMeteoHistoricalWindAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download wind resource data from + `Open-Meteo Weather API `_. + + Args: + resource_year (int): Year to use for resource data. + Must been between 1940 the year before the current calendar year. (inclusive). + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "openmeteo_archive". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "wind". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` is 60 minutes. + + """ + + resource_year: int = field(converter=int, validator=range_val(1940, datetime.now().year - 1)) + dataset_desc: str = "openmeteo_archive" + resource_type: str = "wind" + valid_intervals: list[int] = field(factory=lambda: [60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + +class OpenMeteoHistoricalWindResource(WindResourceBaseAPIModel): + def setup(self): + super().setup() + + # create the input dictionary for WTKNRELDeveloperAPIConfig + resource_specs = self.options["resource_config"] + # set the default latitude, longitude, and resource_year from the site_config + resource_specs.setdefault("latitude", self.site_config["latitude"]) + resource_specs.setdefault("longitude", self.site_config["longitude"]) + resource_specs.setdefault("resource_year", self.site_config.get("year", None)) + + # set the default resource_dir from a directory that can be + # specified in site_config['resources']['resource_dir'] + resource_specs.setdefault( + "resource_dir", self.site_config["resources"].get("resource_dir", None) + ) + + # default timezone to UTC because 'timezone' was removed from the plant config schema + resource_specs.setdefault("timezone", self.sim_config.get("timezone", 0)) + + # create the resource config + self.config = OpenMeteoHistoricalWindAPIConfig.from_dict(resource_specs) + + # set UTC variable depending on timezone, used for filenaming + self.utc = False + if float(self.config.timezone) == 0.0: + self.utc = True + + # check interval to use for data download/load based on simulation timestep + interval = self.dt / 60 + if any(float(v) == float(interval) for v in self.config.valid_intervals): + self.interval = int(interval) + else: + if interval > max(self.config.valid_intervals): + self.interval = int(max(self.config.valid_intervals)) + else: + self.interval = int(min(self.config.valid_intervals)) + + self.hourly_wind_data_to_units = { + "wind_speed_10m": "m/s", + "wind_speed_100m": "m/s", + "wind_direction_10m": "deg", + "wind_direction_100m": "deg", + "temperature_2m": "degC", + "surface_pressure": "hPa", + "precipitation": "mm/h", + "relative_humidity_2m": "unitless", + } + # get the data dictionary + data = self.get_data() + + # add resource data dictionary as an out + self.add_discrete_output("wind_resource_data", val=data, desc="Dict of wind resource data") + + def create_filename(self): + """Create default filename to save downloaded data to. Filename is formatted as + "{latitude}_{longitude}_{resource_year}_openmeteo_archive_{interval}min_{tz_desc}_tz.csv" + where "tz_desc" is "utc" if the timezone is zero, or "local" otherwise. + + Returns: + str: filename for resource data to be saved to or loaded from. + """ + # TODO: update to handle multiple years + # TODO: update to handle nonstandard time intervals + if self.utc: + tz_desc = "utc" + else: + tz_desc = "local" + filename = ( + f"{self.config.latitude}_{self.config.longitude}_{self.config.resource_year}_" + f"{self.config.dataset_desc}_{self.interval}min_{tz_desc}_tz.csv" + ) + return filename + + def create_url(self): + """Create url for data download. + + Returns: + str: url to use for API call. + """ + start_year = int(self.config.resource_year - 1) + end_year = int(self.config.resource_year + 1) + + input_data = { + "latitude": self.config.latitude, + "longitude": self.config.longitude, + "start_date": f"{start_year}-12-31", # format is "%Y-%m-%d" + "end_date": f"{end_year}-01-01", # format is "%Y-%m-%d" + "hourly": list(self.hourly_wind_data_to_units.keys()), + "wind_speed_unit": "ms", + "temperature_unit": "celsius", + "precipitation_unit": "mm", + "timezone": "GMT" if self.utc else "auto", + } + + return input_data + + def download_data(self, url, fpath): + """Download data from url to a file. + + Args: + url (dict): input parameters for API call. + fpath (Path | str): filepath to save data to. + + Returns: + bool: True if data was downloaded successfully, False if error was encountered. + """ + + base_url = "https://archive-api.open-meteo.com/v1/archive" + cache_session = requests_cache.CachedSession(".cache", expire_after=3600) + retry_session = retry(cache_session, retries=5, backoff_factor=0.2) + openmeteo = openmeteo_requests.Client(session=retry_session) + responses = openmeteo.weather_api(base_url, params=url, verify=False) + response = responses[0] + hourly_data = response.Hourly() + ts_data = {} + + # Make data + for i, varname in enumerate(url["hourly"]): + ts_data.update( + { + f"{varname} ({self.hourly_wind_data_to_units[varname]})": hourly_data.Variables( + i + ).ValuesAsNumpy() + } + ) + + # Make time column in ISO 8601 format + time_data = pd.date_range( + start=pd.to_datetime(hourly_data.Time(), unit="s"), + end=pd.to_datetime(hourly_data.TimeEnd(), unit="s"), + freq=pd.Timedelta(seconds=hourly_data.Interval()), + inclusive="left", + ) + + # Convert timeseries data to a DataFrame + df = pd.DataFrame(ts_data, index=time_data) + df.index.name = "time" + + # Convert the timeseries data to a string compatible with + # csv formatting + data_str = df.to_csv(None) + + # make header, formatted as if downloading data from OpenMETEO + header_data = { + "latitude": response.Latitude(), + "longitude": response.Longitude(), + "elevation": response.Elevation(), + "utc_offset_seconds": response.UtcOffsetSeconds(), + } + + if response.Timezone() is not None: + header_data.update({"timezone": response.Timezone().decode("utf-8")}) + else: + header_data.update({"timezone": url["timezone"]}) + if response.TimezoneAbbreviation() is not None: + header_data.update( + {"timezone_abbreviation": response.TimezoneAbbreviation().decode("utf-8")} + ) + else: + if response.UtcOffsetSeconds() == 0: + header_data.update({"timezone_abbreviation": "GMT"}) + else: + tz = response.UtcOffsetSeconds() / 3600 + header_data.update({"timezone_abbreviation": f"GMT{tz}"}) + + header1 = ",".join(k for k in header_data.keys()) + header2 = ",".join(str(v) for v in header_data.values()) + header = f"{header1}\n{header2}\n\n" + + # Combine header plus data arrays + txt = header + data_str + + # save data + localfile = Path(fpath).open("w+") + localfile.write(txt) + localfile.close() + if Path(fpath).is_file(): + success = True + + return success + + def load_data(self, fpath): + """Load data from a file and format as a dictionary that: + + 1) follows naming convention described in WindResourceBaseAPIModel. + 2) is converted to standardized units described in WindResourceBaseAPIModel. + + This method does the following steps: + + 1) load the data, separate out scalar data and timeseries data + 2) remove unused data + 3) Rename the data columns to standardized naming convention and create dictionary of + OpenMDAO compatible units for the data. Calls `format_timeseries_data()` method. + 4) Convert data to standardized units. Calls `compare_units_and_correct()` method + + Args: + fpath (str | Path): filepath to file containing the data + + Returns: + dict: dictionary of data in standardized units and naming convention. + Time information is found in the 'time' key. + """ + + header = pd.read_csv(fpath, nrows=2, header=None) + header_dict = dict(zip(header.iloc[0].to_list(), header.iloc[1].to_list())) + + if header_dict["timezone_abbreviation"] == "GMT": + data_tz = 0 + else: + data_tz = float(header_dict["timezone_abbreviation"].replace("GMT", "")) + + data_tz = float(header_dict["utc_offset_seconds"]) / 3600 + site_data = { + "data_tz": data_tz, + "elevation": float(header_dict["elevation"]), + "site_lat": float(header_dict["latitude"]), + "site_lon": float(header_dict["longitude"]), + "filepath": str(fpath), + } + + data = pd.read_csv(fpath, header=2) + + # Make time columns + time = pd.DatetimeIndex(data["time"]) + data["Year"] = time.year + data["Month"] = time.month + data["Day"] = time.day + data["Hour"] = time.hour + data["Minute"] = time.minute + + data = data[data["Year"] == self.config.resource_year] + # TODO: throw error if data isn't proper length + + data, data_units = self.format_timeseries_data(data) + # make units for data in openmdao-compatible units + + # convert data to standardized units + data, data_units = self.compare_units_and_correct(data, data_units) + + # update wind resource data with site data + data.update(site_data) + + return data + + def format_timeseries_data(self, data): + """Convert data to a dictionary with keys that follow the standardized naming convention and + create a dictionary containing the units for the data. + + Args: + data (pd.DataFrame): Dataframe of timeseries data. + + Returns: + 2-element tuple containing + + - **data** (*dict*): data dictionary with keys following the standardized naming + convention. + - **data_units** (*dict*): dictionary with same keys as `data` and values as the + data units in OpenMDAO compatible format. + """ + time_cols = ["Year", "Month", "Day", "Hour", "Minute", "time"] + data_cols_init = [c for c in data.columns.to_list() if c not in time_cols] + data_rename_mapper = {} + data_units = {} + for c in data_cols_init: + units = c.split("(")[-1].strip(")").replace("°", "deg").replace("%", "unitless") + + new_c = c.split("(")[0].replace("air", "").replace("at ", "") + new_c = new_c.replace(f"({units})", "").strip().replace(" ", "_").replace("__", "_") + + old_c = c.split("(")[0].strip() + + # don't include data that isn't relevant for wind data + if old_c not in self.hourly_wind_data_to_units: + continue + + if "surface" in c: + new_c += "_0m" + new_c = new_c.replace("surface", "").replace("__", "").strip("_") + if "precipitation" in c and "mm" in units: + units = "mm/h" + new_c = "precipitation_rate_0m" # TODO: check how others name this + + data_rename_mapper.update({c: new_c}) + data_units.update({new_c: units}) + data = data.rename(columns=data_rename_mapper) + data_dict = {c: data[c].astype(float).values for x, c in data_rename_mapper.items()} + data_time_dict = {c.lower(): data[c].astype(float).values for c in time_cols if c != "time"} + data_dict.update(data_time_dict) + return data_dict, data_units + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + pass diff --git a/h2integrate/resource/wind/test/test_openmeteo_wind_api.py b/h2integrate/resource/wind/test/test_openmeteo_wind_api.py new file mode 100644 index 000000000..313da926e --- /dev/null +++ b/h2integrate/resource/wind/test/test_openmeteo_wind_api.py @@ -0,0 +1,141 @@ +from pathlib import Path + +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.resource.wind.openmeteo_wind import OpenMeteoHistoricalWindResource + + +@fixture +def plant_simulation_utc_start(): + plant = { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + "start_time": "01/01/1900 00:30:00", + "timezone": 0, + }, + } + return plant + + +@fixture +def plant_simulation_nonutc_start(): + plant = { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + "start_time": "01/01/1900 00:30:00", + "timezone": -6, + }, + } + return plant + + +@fixture +def site_config_download_from_web(): + site = { + "latitude": 44.04218, + "longitude": -95.19757, + "resources": { + "wind_resource": { + "resource_model": "openmeteo_wind_api", + "resource_parameters": { + "resource_year": 2023, + "resource_filename": "open-meteo-44.04N95.20W438m.csv", + }, + } + }, + } + return site + + +@fixture +def site_config_download_from_h2i(): + site = { + "latitude": 44.04218, + "longitude": -95.19757, + "resources": { + "wind_resource": { + "resource_model": "openmeteo_wind_api", + "resource_parameters": { + "resource_year": 2023, + }, + } + }, + } + return site + + +def test_wind_resource_web_download( + plant_simulation_utc_start, site_config_download_from_web, subtests +): + plant_config = { + "site": site_config_download_from_web, + "plant": plant_simulation_utc_start, + } + + prob = om.Problem() + comp = OpenMeteoHistoricalWindResource( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["wind_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + wind_data = prob.get_val("resource.wind_resource_data") + + with subtests.test("filepath for data was found where expected"): + assert Path(wind_data["filepath"]).exists() + assert Path(wind_data["filepath"]).name == "open-meteo-44.04N95.20W438m.csv" + + data_keys = [k for k, v in wind_data.items() if not isinstance(v, (float, int, str))] + with subtests.test("Data timezone"): + assert pytest.approx(wind_data["data_tz"], rel=1e-6) == 0 + with subtests.test("Site Elevation"): + assert pytest.approx(wind_data["elevation"], rel=1e-6) == 438 + with subtests.test("resource data is 8760 in length"): + assert all(len(wind_data[k]) == 8760 for k in data_keys) + with subtests.test("theres 12 timeseries data keys"): + assert len(data_keys) == 12 + + +def test_wind_resource_h2i_download( + plant_simulation_nonutc_start, site_config_download_from_h2i, subtests +): + plant_config = { + "site": site_config_download_from_h2i, + "plant": plant_simulation_nonutc_start, + } + + prob = om.Problem() + comp = OpenMeteoHistoricalWindResource( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["wind_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + wind_data = prob.get_val("resource.wind_resource_data") + + with subtests.test("filepath for data was found where expected"): + assert Path(wind_data["filepath"]).exists() + assert ( + Path(wind_data["filepath"]).name + == "44.04218_-95.19757_2023_openmeteo_archive_60min_local_tz.csv" + ) + + data_keys = [k for k, v in wind_data.items() if not isinstance(v, (float, int, str))] + with subtests.test("Data timezone"): + assert pytest.approx(wind_data["data_tz"], rel=1e-6) == -6 + with subtests.test("Site Elevation"): + assert pytest.approx(wind_data["elevation"], rel=1e-6) == 449 + with subtests.test("resource data is 8760 in length"): + assert all(len(wind_data[k]) == 8760 for k in data_keys) + with subtests.test("theres 13 timeseries data keys"): + assert len(data_keys) == 13 diff --git a/h2integrate/resource/wind/wind_resource_base.py b/h2integrate/resource/wind/wind_resource_base.py index c6fdb095e..cd6a7f766 100644 --- a/h2integrate/resource/wind/wind_resource_base.py +++ b/h2integrate/resource/wind/wind_resource_base.py @@ -10,7 +10,7 @@ def setup(self): self.output_vars_to_units = { "wind_direction": "deg", "wind_speed": "m/s", - "temperature": "C", + "temperature": "degC", "pressure": "atm", "precipitation_rate": "mm/h", "relative_humidity": "percent", diff --git a/pyproject.toml b/pyproject.toml index 0af60ef02..0ffbb4209 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,8 +56,11 @@ dependencies = [ "ruamel.yaml", "scipy", "wombat>=0.11", + "openmeteo-requests", "geopy", "pyDOE3", + "requests-cache", + "retry_requests", ] keywords = [ "python3", diff --git a/resource_files/wind/44.04218_-95.19757_2023_openmeteo_archive_60min_local_tz.csv b/resource_files/wind/44.04218_-95.19757_2023_openmeteo_archive_60min_local_tz.csv new file mode 100644 index 000000000..95bb5098f --- /dev/null +++ b/resource_files/wind/44.04218_-95.19757_2023_openmeteo_archive_60min_local_tz.csv @@ -0,0 +1,8812 @@ +latitude,longitude,elevation,utc_offset_seconds,timezone,timezone_abbreviation +44.042179107666016,-95.19757080078125,449.0,-21600,America/Chicago,GMT-6 + +time,wind_speed_10m (m/s),wind_speed_100m (m/s),wind_direction_10m (deg),wind_direction_100m (deg),temperature_2m (degC),surface_pressure (hPa),precipitation (mm/h),relative_humidity_2m (unitless) +2022-12-31 06:00:00,6.264982,11.670903,188.25935,192.36905,-3.0735002,956.2275,0.0,87.70983 +2022-12-31 07:00:00,6.5115285,12.007082,190.6196,194.9622,-2.9235,955.3123,0.0,88.05549 +2022-12-31 08:00:00,6.888396,12.459535,193.43105,198.72588,-2.5235002,954.72986,0.0,88.09286 +2022-12-31 09:00:00,6.9123073,12.39758,194.23732,199.31195,-2.3235002,954.4859,0.0,88.44236 +2022-12-31 10:00:00,7.0405965,12.472369,191.4695,195.81926,-2.3735,954.0034,0.0,89.43749 +2022-12-31 11:00:00,7.5802374,13.179529,188.34381,191.82146,-2.2735002,953.73944,0.0,90.1173 +2022-12-31 12:00:00,8.039901,13.267254,185.7105,189.10725,-0.3735,952.88257,0.0,90.930534 +2022-12-31 13:00:00,8.21523,13.483693,183.48926,186.38702,0.0765,952.3078,0.0,89.31021 +2022-12-31 14:00:00,8.221922,13.384319,184.18483,186.43465,0.22649999,951.86395,0.0,87.377144 +2022-12-31 15:00:00,7.902531,12.739309,181.45018,184.5021,0.47650003,951.72327,0.0,86.44454 +2022-12-31 16:00:00,7.510659,12.24949,183.05283,185.152,0.7765,951.87573,0.1,86.47563 +2022-12-31 17:00:00,7.6164293,12.192621,183.76396,187.06664,0.92649996,951.80975,0.0,86.49116 +2022-12-31 18:00:00,7.156815,11.458621,187.22423,189.54445,1.1765,951.10126,0.0,87.469086 +2022-12-31 19:00:00,6.6483083,10.722406,195.7087,199.61797,1.5765,950.42096,0.0,88.46617 +2022-12-31 20:00:00,6.1326995,10.1965685,204.05734,206.81627,1.6265,949.7684,0.0,90.0885 +2022-12-31 21:00:00,4.9739323,8.798295,210.17343,211.52213,1.4265,949.9194,0.0,91.0578 +2022-12-31 22:00:00,4.080441,7.8873315,216.02747,219.3405,0.8265,950.4666,0.0,92.01442 +2022-12-31 23:00:00,3.9698865,7.9630394,229.08571,234.71317,0.026500002,951.0688,0.0,92.978424 +2023-01-01 00:00:00,3.88973,7.605919,223.95847,230.8696,-0.4235,951.3599,0.0,92.612785 +2023-01-01 01:00:00,3.9824615,7.6550636,231.1155,236.7251,-0.5235,951.9078,0.0,92.6069 +2023-01-01 02:00:00,3.939543,7.81089,246.0375,251.333,-1.7235,952.52435,0.0,91.85147 +2023-01-01 03:00:00,3.7854989,7.532596,257.79956,264.66794,-2.5235002,952.745,0.0,91.45676 +2023-01-01 04:00:00,3.5057096,7.1112585,266.72958,273.22446,-2.9235,952.7605,0.0,90.06633 +2023-01-01 05:00:00,3.3015149,7.0859013,271.73566,278.9305,-3.8735,953.2331,0.0,89.311554 +2023-01-01 06:00:00,3.324154,7.106335,276.91113,283.84073,-4.4235,953.7846,0.0,88.58703 +2023-01-01 07:00:00,3.5128336,7.21734,265.10098,273.9724,-5.2235,954.2849,0.0,88.17529 +2023-01-01 08:00:00,3.4014704,7.4431176,268.31534,276.17007,-5.8234997,954.54144,0.0,87.441025 +2023-01-01 09:00:00,3.4058774,7.5504966,273.3664,281.4587,-6.1735,955.226,0.0,86.395485 +2023-01-01 10:00:00,3.535534,7.5286117,278.13,286.9909,-6.3735,955.75214,0.0,85.70505 +2023-01-01 11:00:00,3.0149627,7.05195,275.7105,288.1781,-6.9235,956.2065,0.0,85.309074 +2023-01-01 12:00:00,3.1016126,7.203471,271.84756,283.65045,-4.9735,956.0358,0.0,84.22496 +2023-01-01 13:00:00,3.3615472,7.940403,292.751,301.08743,-5.2235,955.9852,0.0,83.22452 +2023-01-01 14:00:00,2.8792362,7.0213957,290.3232,305.72748,-5.6735,956.7445,0.0,83.81376 +2023-01-01 15:00:00,2.84605,6.6610813,288.43503,305.83774,-5.2235,957.49664,0.0,84.51992 +2023-01-01 16:00:00,2.657066,5.841233,289.79895,308.0471,-3.6735,958.75366,0.0,83.74177 +2023-01-01 17:00:00,2.745906,4.992995,280.49142,302.7352,-2.2735002,959.6944,0.0,83.91509 +2023-01-01 18:00:00,2.8635643,4.90408,257.90524,290.28265,-1.2235,960.375,0.0,86.91096 +2023-01-01 19:00:00,2.7294688,4.8754487,278.42688,295.51382,-0.5735,960.50275,0.0,86.015594 +2023-01-01 20:00:00,2.3600848,4.750789,306.38446,310.73203,-0.3735,960.54193,0.0,86.9966 +2023-01-01 21:00:00,2.4413111,4.7801676,325.0079,322.65057,-0.77349997,961.1254,0.0,88.58149 +2023-01-01 22:00:00,2.0124612,4.604346,333.43503,325.6196,-1.6735,961.60944,0.0,89.49551 +2023-01-01 23:00:00,1.8384776,4.527693,337.6198,329.47037,-3.3235002,962.226,0.0,90.71611 +2023-01-02 00:00:00,1.9723083,4.837354,329.53452,330.25522,-4.5235,962.0788,0.0,89.25628 +2023-01-02 01:00:00,1.9104972,4.701064,317.1211,321.91116,-4.4735,962.9392,0.0,89.26056 +2023-01-02 02:00:00,2.5495098,5.6797886,334.44006,333.88614,-5.2735,963.6268,0.0,90.570244 +2023-01-02 03:00:00,2.118962,5.249762,340.70987,342.25522,-6.1735,963.6317,0.0,91.55514 +2023-01-02 04:00:00,2.3086793,5.6753855,342.34976,345.71887,-7.0734997,964.10754,0.0,91.13848 +2023-01-02 05:00:00,2.3345234,5.5145264,350.13425,355.84042,-8.4735,964.2889,0.0,91.7556 +2023-01-02 06:00:00,2.4020824,5.6142673,357.6141,4.085537,-8.9735,964.56165,0.0,92.813385 +2023-01-02 07:00:00,2.4186773,4.9030604,7.12493,11.76827,-10.9235,964.33856,0.0,93.44215 +2023-01-02 08:00:00,2.158703,5.3600373,13.392516,14.036275,-10.6235,964.40247,0.0,92.34463 +2023-01-02 09:00:00,1.746425,4.464303,13.240531,15.5928755,-9.6735,965.1697,0.0,92.038635 +2023-01-02 10:00:00,1.3892444,3.443835,30.256361,25.820946,-9.2734995,965.63135,0.0,92.79557 +2023-01-02 11:00:00,1.9026297,3.5171013,3.0127327,14.826528,-8.9735,965.6943,0.0,93.17983 +2023-01-02 12:00:00,1.0049876,1.4560219,354.2895,15.945477,-7.9735,966.3756,0.0,94.702705 +2023-01-02 13:00:00,1.2041595,1.6124516,355.23645,7.12493,-7.8234997,966.02924,0.0,94.70929 +2023-01-02 14:00:00,1.118034,1.3152945,333.43503,351.2539,-7.8735,965.9243,0.0,94.7071 +2023-01-02 15:00:00,1.8027756,2.570992,3.179772,13.495748,-7.6735,965.4939,0.0,94.71586 +2023-01-02 16:00:00,2.2135942,3.1016126,18.435053,20.772345,-7.2735,965.6715,0.0,95.10114 +2023-01-02 17:00:00,2.8231187,3.9357338,22.93213,27.216026,-6.7735,965.39716,0.0,95.85789 +2023-01-02 18:00:00,2.3086793,3.0083218,17.650223,21.44781,-6.3234997,965.0175,0.1,96.24208 +2023-01-02 19:00:00,1.4317821,1.868154,12.094739,15.524177,-6.1235,964.96436,0.3,94.41985 +2023-01-02 20:00:00,2.5079873,3.231099,23.498587,21.801476,-6.0734997,964.12445,0.6,93.34039 +2023-01-02 21:00:00,2.7802877,3.8418746,37.694313,38.65983,-5.7735,963.1471,0.3,94.074905 +2023-01-02 22:00:00,2.5553863,3.6891732,30.579157,32.82854,-5.6235,963.1776,0.1,94.442696 +2023-01-02 23:00:00,3.2449963,4.9406476,33.6901,35.942207,-5.6235,962.61084,0.2,94.80445 +2023-01-03 00:00:00,3.176476,6.325346,28.178495,39.225655,-6.2735,962.6669,0.3,95.14148 +2023-01-03 01:00:00,2.996665,5.9033885,25.709915,38.81139,-6.0734997,962.4244,0.6,94.78519 +2023-01-03 02:00:00,3.1144822,5.9076223,42.397392,56.040897,-5.9735,961.87805,0.8,94.42671 +2023-01-03 03:00:00,4.837354,7.359348,29.744795,42.797382,-6.0235,960.7346,0.9,95.15149 +2023-01-03 04:00:00,4.527693,8.345058,30.529623,44.029083,-6.1735,960.42053,0.7,95.51132 +2023-01-03 05:00:00,4.118252,8.340863,29.054508,52.3057,-6.0734997,960.5354,0.3,95.88182 +2023-01-03 06:00:00,5.080354,8.352844,10.203924,31.787212,-6.1235,959.5809,0.1,96.24831 +2023-01-03 07:00:00,5.0695167,9.021087,22.01134,35.98077,-6.0734997,959.0243,0.1,96.24986 +2023-01-03 08:00:00,5.059644,10.881177,18.435053,36.027473,-6.1735,957.9649,0.3,96.24676 +2023-01-03 09:00:00,5.60803,10.822661,21.991192,35.59932,-6.3735,956.97986,0.3,96.24053 +2023-01-03 10:00:00,5.8591805,11.985408,27.439646,40.601215,-6.6235,955.60657,0.3,95.86303 +2023-01-03 11:00:00,6.2625875,13.22006,19.592375,36.69663,-6.7735,954.06506,0.2,95.85789 +2023-01-03 12:00:00,6.926038,12.287392,17.650223,33.04342,-6.3234997,953.6844,0.0,95.50575 +2023-01-03 13:00:00,7.839005,14.263591,23.294596,35.58447,-6.2735,952.0891,1.7,96.24364 +2023-01-03 14:00:00,7.5166483,15.487092,33.055836,44.215275,-5.8234997,951.2356,1.8,96.25762 +2023-01-03 15:00:00,5.188449,12.234787,27.552727,44.006626,-5.5235,951.48517,2.7,96.26689 +2023-01-03 16:00:00,6.441273,11.741381,27.758451,43.61972,-5.2235,951.6399,2.9,95.54635 +2023-01-03 17:00:00,9.13017,12.61943,28.810698,33.6901,-5.0734997,951.00903,2.3,95.55184 +2023-01-03 18:00:00,9.062008,13.792752,22.036283,29.5387,-5.0734997,949.68646,3.4,96.647064 +2023-01-03 19:00:00,9.2309265,12.937543,22.954124,29.140541,-4.6735,949.0107,1.9,95.92912 +2023-01-03 20:00:00,8.324061,12.747549,16.04002,25.559923,-4.5235,948.6628,0.4,97.02816 +2023-01-03 21:00:00,8.784646,12.165525,22.77042,27.40749,-4.2735,948.71234,0.2,96.3052 +2023-01-03 22:00:00,9.4541,12.879829,23.039474,26.763922,-4.1235,948.93134,0.1,95.947464 +2023-01-03 23:00:00,9.4541,12.836276,23.039474,27.363462,-3.8735,949.07544,0.3,95.59543 +2023-01-04 00:00:00,9.024964,12.390722,21.44781,25.324146,-4.7235,949.00073,0.6,95.927444 +2023-01-04 01:00:00,8.1154175,11.360018,22.456984,27.241653,-4.4735,949.1451,0.1,95.573715 +2023-01-04 02:00:00,7.9246454,10.893117,10.175456,15.439715,-4.1735,949.48846,0.1,95.584595 +2023-01-04 03:00:00,7.8230433,10.787029,4.398633,10.684865,-3.9735,949.7171,0.4,95.95246 +2023-01-04 04:00:00,7.905694,10.737783,357.82532,4.8078704,-3.6735,949.8711,0.5,96.32338 +2023-01-04 05:00:00,8.697701,11.521285,351.40417,356.51678,-3.4235,950.2042,0.4,96.69235 +2023-01-04 06:00:00,9.207063,12.233151,351.2539,355.78098,-3.2235,950.33844,0.4,97.05985 +2023-01-04 07:00:00,9.305912,12.525574,351.34753,356.33813,-3.1235,950.35803,0.2,97.42524 +2023-01-04 08:00:00,9.3771,12.614278,352.6477,357.27374,-3.0735002,950.74603,0.1,97.79032 +2023-01-04 09:00:00,9.141116,12.340584,349.91946,355.3521,-3.0735002,950.93506,0.2,97.79032 +2023-01-04 10:00:00,9.080198,12.218429,343.3611,349.14993,-3.0735002,950.8405,0.3,97.06347 +2023-01-04 11:00:00,8.928606,12.066896,344.40714,350.4597,-3.0235002,951.32294,0.4,97.42736 +2023-01-04 12:00:00,8.45281,11.374533,349.08893,353.4374,-2.8235002,951.17346,0.3,96.7086 +2023-01-04 13:00:00,8.489994,11.34372,344.9816,350.8699,-2.8735,951.7309,0.4,97.0683 +2023-01-04 14:00:00,8.348653,11.303097,341.1309,346.70142,-3.0235002,951.9845,0.6,96.34291 +2023-01-04 15:00:00,7.920227,11.992081,335.37646,343.52948,-3.1235,952.53174,0.7,96.33991 +2023-01-04 16:00:00,7.915807,12.016655,333.7587,341.56494,-3.0735002,952.9197,0.9,96.341415 +2023-01-04 17:00:00,7.769813,11.681181,328.151,338.9272,-3.0235002,953.2131,0.8,97.06468 +2023-01-04 18:00:00,9.078547,11.482595,333.15277,340.14468,-2.8735,953.0541,0.3,95.98874 +2023-01-04 19:00:00,9.303762,12.332883,334.53668,341.56494,-2.5735002,953.01855,0.3,95.64193 +2023-01-04 20:00:00,8.626702,12.56702,325.3888,333.02725,-2.6735,952.999,0.5,97.0731 +2023-01-04 21:00:00,8.937561,13.483322,319.53784,327.72437,-2.9735,953.50665,0.7,97.06587 +2023-01-04 22:00:00,8.438602,14.268847,319.32513,328.76083,-3.3235002,954.09875,0.6,97.05743 +2023-01-04 23:00:00,7.840918,14.447492,322.25314,332.37085,-3.5235002,954.72034,0.4,97.05259 +2023-01-05 00:00:00,8.159657,10.866922,340.67673,345.06854,-3.1735,955.35724,0.3,95.97889 +2023-01-05 01:00:00,8.228001,11.800424,339.36237,343.25415,-3.5235002,956.04333,0.3,95.96736 +2023-01-05 02:00:00,8.53815,11.744361,341.56494,344.18857,-3.8735,956.6348,0.3,95.23629 +2023-01-05 03:00:00,8.731552,12.528367,339.90466,343.3007,-4.0235,956.9828,0.2,95.23044 +2023-01-05 04:00:00,8.523497,12.557468,337.94888,342.86365,-4.1735,957.33075,0.2,95.224594 +2023-01-05 05:00:00,8.931965,12.491998,338.31766,340.83972,-4.3234997,957.6783,0.2,95.21872 +2023-01-05 06:00:00,8.616263,12.427792,338.19852,341.71075,-4.3735,958.2353,0.1,94.49923 +2023-01-05 07:00:00,8.415462,11.829624,339.8423,342.79034,-4.4235,958.60315,0.1,94.13987 +2023-01-05 08:00:00,8.672947,11.66919,339.05728,342.03076,-4.4235,958.8866,0.1,93.07574 +2023-01-05 09:00:00,9.033826,12.133425,333.71866,336.18134,-4.5734997,959.61206,0.1,93.42125 +2023-01-05 10:00:00,8.683317,12.93561,331.07367,335.81265,-5.1235,959.6898,0.1,94.10631 +2023-01-05 11:00:00,9.525755,12.671622,333.16602,336.26703,-5.5734997,959.97644,0.0,91.2453 +2023-01-05 12:00:00,7.8771825,10.948059,339.95465,343.55133,-5.5235,960.08093,0.0,93.728 +2023-01-05 13:00:00,7.829432,11.161541,331.79846,337.3406,-6.3735,960.7575,0.0,92.96508 +2023-01-05 14:00:00,8.46286,11.387713,324.61966,329.38147,-7.2735,961.51685,0.0,90.76999 +2023-01-05 15:00:00,8.591274,11.200446,320.1945,322.61847,-8.7734995,962.05493,0.0,90.29984 +2023-01-05 16:00:00,7.4249578,12.884487,314.4544,321.61795,-10.1735,962.6104,0.0,93.85559 +2023-01-05 17:00:00,8.354639,12.306502,317.91092,321.26746,-9.6235,963.2926,0.0,93.88366 +2023-01-05 18:00:00,8.700575,11.360018,322.4715,323.2309,-9.2235,962.99927,0.0,93.53419 +2023-01-05 19:00:00,8.720092,11.322544,323.39282,324.34457,-8.4735,962.87286,0.0,94.31056 +2023-01-05 20:00:00,8.381527,10.241582,324.22385,324.13705,-8.0235,962.77765,0.0,94.700516 +2023-01-05 21:00:00,7.9195957,9.899495,315.0001,315.0001,-7.7735,963.396,0.0,94.71149 +2023-01-05 22:00:00,6.811754,8.927485,310.2363,311.36694,-7.6235,963.5215,0.0,95.08692 +2023-01-05 23:00:00,6.4350605,9.462558,302.94922,305.53775,-7.5235,963.82556,0.0,95.460846 +2023-01-06 00:00:00,5.5865912,8.772685,315.72513,316.8476,-5.5235,963.76483,0.0,96.26689 +2023-01-06 01:00:00,5.162364,7.7175126,328.46524,328.78165,-6.1235,964.0199,0.0,96.61776 +2023-01-06 02:00:00,4.763402,7.080254,320.96448,323.61554,-6.5734997,964.3052,0.0,96.234276 +2023-01-06 03:00:00,4.8270073,7.1421285,309.9575,314.4328,-6.9235,964.42194,0.0,96.223305 +2023-01-06 04:00:00,4.3011627,6.2289643,305.53775,312.39737,-7.1735,964.7477,0.0,96.21544 +2023-01-06 05:00:00,4.7010636,6.9339743,299.29126,303.23172,-7.3735,965.08417,0.0,95.837166 +2023-01-06 06:00:00,4.527693,6.9065185,300.52963,304.3804,-7.3735,964.9898,0.0,94.728966 +2023-01-06 07:00:00,4.3416586,6.296825,298.92633,302.68054,-7.5235,965.053,0.0,93.9891 +2023-01-06 08:00:00,3.9962482,5.742821,301.7014,305.07382,-7.7735,965.0954,0.0,93.976685 +2023-01-06 09:00:00,4.022437,5.8137765,304.8754,310.81497,-8.0735,965.2219,0.0,94.32939 +2023-01-06 10:00:00,3.847077,5.408327,297.8972,303.6901,-8.4735,965.70483,0.0,93.941734 +2023-01-06 11:00:00,4.2201896,5.140039,306.3269,307.09293,-8.8235,966.10333,0.0,94.294014 +2023-01-06 12:00:00,4.738143,6.5436993,315.855,321.20343,-8.6235,966.3341,0.0,93.9342 +2023-01-06 13:00:00,4.2059484,6.5551505,331.6071,338.52313,-9.1235,966.79553,0.0,92.80449 +2023-01-06 14:00:00,4.4271884,6.139218,341.56494,347.77487,-9.4235,967.20435,0.0,94.26548 +2023-01-06 15:00:00,4.5122056,5.6089215,347.19574,348.6901,-9.5735,967.7391,0.0,94.25831 +2023-01-06 16:00:00,3.9217343,4.7127485,340.6409,342.7184,-9.5735,968.3053,0.0,93.8862 +2023-01-06 17:00:00,3.7696154,4.2720017,338.19852,339.44388,-9.5735,968.8715,0.0,93.8862 +2023-01-06 18:00:00,3.5341196,3.9812057,334.8852,334.72232,-9.6235,968.672,0.0,93.88366 +2023-01-06 19:00:00,3.224903,3.6715121,330.25522,330.64233,-9.6235,968.4832,0.0,93.88366 +2023-01-06 20:00:00,3.1780498,3.49285,335.85446,336.3706,-9.5234995,968.22125,0.0,93.88874 +2023-01-06 21:00:00,3.8275316,4.2720017,340.14468,339.44388,-9.5234995,968.97626,0.0,93.51809 +2023-01-06 22:00:00,3.8832974,4.491102,348.11136,348.4399,-9.7235,969.5946,0.0,93.50732 +2023-01-06 23:00:00,3.8327534,4.539824,352.50424,352.40543,-9.9735,970.10767,0.0,93.12314 +2023-01-07 00:00:00,4.1,5.4,360.0,360.0,-10.9235,970.56555,0.0,90.855316 +2023-01-07 01:00:00,4.2,6.000833,360.0,359.04517,-11.5735,971.08636,0.0,90.80619 +2023-01-07 02:00:00,4.119466,6.1204576,354.4279,355.31418,-11.7235,971.5258,0.0,91.162704 +2023-01-07 03:00:00,4.1773195,6.152235,348.95908,352.52853,-12.0234995,972.0271,0.0,90.77196 +2023-01-07 04:00:00,4.554119,6.648308,351.15826,353.08887,-12.3735,972.3287,0.0,91.11499 +2023-01-07 05:00:00,4.491102,5.770615,348.4399,351.02744,-12.3235,972.9054,0.0,91.861984 +2023-01-07 06:00:00,3.956008,4.609772,343.8556,347.4712,-12.6735,973.3951,0.0,90.72219 +2023-01-07 07:00:00,3.8327534,4.318565,352.50424,354.68555,-12.9735,973.32965,0.0,91.07062 +2023-01-07 08:00:00,3.49285,4.554119,346.75946,351.15826,-13.5234995,973.5866,0.0,89.914246 +2023-01-07 09:00:00,3.4481878,3.8078866,343.1415,346.32867,-13.4735,974.2578,0.0,89.54949 +2023-01-07 10:00:00,3.0083218,3.352611,338.5522,342.64587,-13.7235,973.92004,0.0,89.15957 +2023-01-07 11:00:00,2.8844411,3.3120992,326.3099,331.11353,-13.8235,973.80383,0.0,88.7834 +2023-01-07 12:00:00,2.5806975,2.5495098,324.46225,334.44006,-13.7734995,973.7205,0.0,88.422295 +2023-01-07 13:00:00,3.0232434,2.5553863,325.78424,329.42084,-14.9235,973.74963,0.0,87.944405 +2023-01-07 14:00:00,2.9068882,2.7313,333.43503,336.2505,-14.4235,974.0489,0.0,87.99396 +2023-01-07 15:00:00,2.2472203,1.9646883,339.14545,345.25638,-14.5735,974.29834,0.0,87.61382 +2023-01-07 16:00:00,1.118034,0.60827625,333.43503,9.462248,-14.2734995,974.8361,0.0,88.00875 +2023-01-07 17:00:00,0.94868326,1.0049876,251.56496,185.7105,-14.0234995,974.7026,0.0,88.03337 +2023-01-07 18:00:00,2.1954498,2.302173,239.9315,214.3804,-13.8735,974.45264,0.0,87.68479 +2023-01-07 19:00:00,2.6907248,3.8418746,228.01286,218.65984,-14.0735,974.0317,0.0,88.760254 +2023-01-07 20:00:00,2.2671568,4.5,221.42357,216.86998,-14.4235,973.0119,0.0,87.99396 +2023-01-07 21:00:00,2.1633308,4.1617303,213.6901,215.21768,-14.6735,972.67395,0.0,87.239456 +2023-01-07 22:00:00,3.0870697,4.7010636,204.90474,209.29126,-15.7734995,972.1471,0.0,87.123535 +2023-01-07 23:00:00,4.0249224,5.5470715,206.56499,207.95087,-16.823502,971.34717,0.0,86.64264 +2023-01-08 00:00:00,5.5226803,8.080223,211.67543,216.44453,-15.2734995,970.75024,0.0,83.24118 +2023-01-08 01:00:00,6.1717095,8.904493,206.98015,212.61923,-15.8735,970.05164,0.0,80.72898 +2023-01-08 02:00:00,6.6887965,9.5692215,211.55133,214.35439,-15.9235,969.475,0.0,77.02814 +2023-01-08 03:00:00,7.080254,9.90202,216.38445,218.02728,-15.6235,968.5991,0.0,72.92035 +2023-01-08 04:00:00,7.4094534,10.220078,211.75943,216.64574,-15.2734995,967.8283,0.0,69.338 +2023-01-08 05:00:00,7.975588,11.0385685,210.10121,213.54613,-15.3235,967.53436,0.0,67.85294 +2023-01-08 06:00:00,8.376157,12.20041,213.31064,217.3396,-15.1735,967.75604,0.0,67.887955 +2023-01-08 07:00:00,8.547514,12.624579,208.66386,215.32672,-15.1735,967.1905,0.0,68.47357 +2023-01-08 08:00:00,8.431488,12.868956,213.87857,219.00748,-14.9235,967.3396,0.0,68.53098 +2023-01-08 09:00:00,8.220098,12.731065,216.59119,223.72705,-14.4735,967.0615,0.0,71.0124 +2023-01-08 10:00:00,8.021221,12.306909,215.86992,226.31683,-13.6735,966.4822,0.0,77.74881 +2023-01-08 11:00:00,7.9924965,12.034119,211.70139,222.30566,-13.2734995,965.7204,0.0,78.79558 +2023-01-08 12:00:00,7.746612,12.126417,219.23735,229.34755,-11.9235,966.0116,0.0,80.655716 +2023-01-08 13:00:00,7.8600254,12.101652,216.7242,227.34416,-12.2235,965.4755,0.0,80.61035 +2023-01-08 14:00:00,7.81025,12.202459,219.80553,229.65343,-12.4735,965.2331,0.0,81.9111 +2023-01-08 15:00:00,8.01561,12.408464,220.44615,229.24855,-11.8735,964.79614,0.0,82.33268 +2023-01-08 16:00:00,8.005623,12.343419,221.45514,229.60017,-10.7734995,965.21954,0.0,82.81981 +2023-01-08 17:00:00,8.438602,12.465152,220.67485,228.25203,-9.6735,965.1697,0.0,83.30108 +2023-01-08 18:00:00,8.273452,12.322742,224.51036,231.92107,-8.8735,964.86597,0.0,84.07239 +2023-01-08 19:00:00,8.13941,11.898319,227.4896,236.3099,-8.3235,964.1312,0.0,84.81003 +2023-01-08 20:00:00,7.8243213,11.6297035,231.22581,242.33333,-7.9735,963.449,0.0,85.523865 +2023-01-08 21:00:00,7.44043,10.938465,233.74606,247.42038,-7.7235,963.02875,0.0,85.21639 +2023-01-08 22:00:00,7.1281133,10.499524,235.86401,252.25523,-8.0735,962.6729,0.0,85.512436 +2023-01-08 23:00:00,6.8505473,10.016985,236.3099,255.54753,-8.8235,962.3277,0.0,86.44958 +2023-01-09 00:00:00,7.0724816,9.660745,226.14568,244.23071,-9.2235,962.33856,0.0,86.75086 +2023-01-09 01:00:00,7.2835426,10.03444,224.44382,240.11356,-9.3235,962.12885,0.0,87.08628 +2023-01-09 02:00:00,7.4330344,10.262553,222.27362,236.92932,-9.1235,961.793,0.0,87.45368 +2023-01-09 03:00:00,7.864477,10.780074,221.39143,232.91742,-8.8235,961.47815,0.0,87.83099 +2023-01-09 04:00:00,8.080842,11.92057,220.98573,229.76372,-8.0735,961.35114,0.0,87.214645 +2023-01-09 05:00:00,7.7201037,11.458621,216.57312,223.58565,-7.3234997,961.2232,0.0,87.63288 +2023-01-09 06:00:00,7.6275816,12.061509,214.31514,220.29207,-6.7735,961.1476,0.0,86.66821 +2023-01-09 07:00:00,7.666159,12.280066,210.57915,217.05661,-6.5235,960.8213,0.0,85.023125 +2023-01-09 08:00:00,7.915807,12.762445,206.24129,212.19571,-6.1735,960.2316,0.0,83.425476 +2023-01-09 09:00:00,8.1412525,13.146863,207.824,213.20659,-5.7735,960.03015,0.0,82.1897 +2023-01-09 10:00:00,8.234683,13.073638,204.38637,209.3099,-5.4235,959.3455,0.0,81.9192 +2023-01-09 11:00:00,8.876936,13.776793,202.52061,207.68097,-5.1235,958.8396,0.0,83.559395 +2023-01-09 12:00:00,8.91852,14.076932,197.62239,202.55728,-3.7735002,958.16675,0.0,83.410324 +2023-01-09 13:00:00,8.973851,14.230249,194.19113,198.43504,-3.6235,957.5353,0.0,85.03334 +2023-01-09 14:00:00,8.634812,13.692699,193.39252,198.30272,-3.7235,957.42084,0.0,86.65425 +2023-01-09 15:00:00,8.537564,13.601471,193.54796,199.76726,-3.2235,957.14276,0.0,87.36455 +2023-01-09 16:00:00,8.228001,12.93561,200.63763,204.18735,-2.1235,956.983,0.0,88.13005 +2023-01-09 17:00:00,7.889233,12.231926,210.46547,214.3397,-1.7235,957.2511,0.0,89.15866 +2023-01-09 18:00:00,7.710383,11.525623,213.89621,218.65982,-1.4235,955.9867,0.0,87.867096 +2023-01-09 19:00:00,8.005623,11.737972,221.45514,224.9999,-1.4235,955.23035,0.0,86.89069 +2023-01-09 20:00:00,8.723532,12.215564,241.96623,245.32315,-2.7235,954.9739,0.0,87.08525 +2023-01-09 21:00:00,8.160883,11.649892,252.89719,258.11136,-3.9735,954.8195,0.0,87.29013 +2023-01-09 22:00:00,7.9429216,11.7209215,259.1145,266.5762,-4.5734997,955.07715,0.0,86.565285 +2023-01-09 23:00:00,7.8057675,11.643024,267.79745,274.927,-6.0235,955.351,0.0,87.76 +2023-01-10 00:00:00,6.726812,10.212247,264.88278,272.8063,-6.3234997,955.0066,0.0,86.379395 +2023-01-10 01:00:00,6.9354167,10.478549,275.7927,283.24054,-6.7235,955.1142,0.0,88.03359 +2023-01-10 02:00:00,7.0035706,10.508093,279.86575,286.02036,-6.7235,955.6808,0.1,90.45958 +2023-01-10 03:00:00,6.545991,9.980982,288.71182,294.2539,-6.8234997,955.7545,0.0,90.80355 +2023-01-10 04:00:00,6.618912,10.171037,296.9521,300.09415,-7.3234997,956.3132,0.0,89.71087 +2023-01-10 05:00:00,6.1846585,9.654015,309.09384,309.9575,-7.8234997,956.58795,0.0,91.084335 +2023-01-10 06:00:00,5.9413805,9.265528,313.63614,313.6882,-8.4235,956.6529,0.0,92.48231 +2023-01-10 07:00:00,6.280127,9.542536,307.23492,308.19098,-8.5735,957.0936,0.0,93.20231 +2023-01-10 08:00:00,6.0827627,9.831073,316.33215,316.23633,-8.3235,957.051,0.0,94.6873 +2023-01-10 09:00:00,6.1522355,10.469002,315.65845,316.5481,-8.3735,957.5127,0.0,95.05621 +2023-01-10 10:00:00,5.9816384,10.800463,321.78894,323.66052,-8.4235,957.88007,0.0,95.80059 +2023-01-10 11:00:00,4.8600416,8.683317,323.36578,331.07367,-8.5234995,957.76495,0.0,95.05004 +2023-01-10 12:00:00,2.86007,5.5362444,323.53067,343.20154,-8.5234995,957.3874,0.0,94.678474 +2023-01-10 13:00:00,2.863564,4.6957426,294.77512,333.43503,-8.3735,957.9847,0.0,94.685104 +2023-01-10 14:00:00,2.915476,3.9824615,275.90604,321.1155,-8.3735,958.2679,0.0,94.685104 +2023-01-10 15:00:00,2.6476402,3.4985712,280.88547,329.03632,-8.0735,958.2357,0.0,95.06853 +2023-01-10 16:00:00,1.6278821,2.6476402,280.6196,349.11453,-7.2235,958.5056,0.0,95.47214 +2023-01-10 17:00:00,0.44721362,2.1260293,206.56499,48.814175,-6.6735,957.8627,0.0,95.86131 +2023-01-10 18:00:00,1.9313208,1.421267,201.25058,129.28938,-5.8735,957.4596,0.0,95.52242 +2023-01-10 19:00:00,2.3259406,1.9646883,205.4633,165.2564,-5.2735,957.1088,0.0,95.18132 +2023-01-10 20:00:00,2.0396078,2.0248456,191.30989,159.77505,-4.8735,956.9064,0.0,95.55915 +2023-01-10 21:00:00,2.1213202,2.4596748,171.86998,153.43501,-4.6235,957.05115,0.0,95.206955 +2023-01-10 22:00:00,2.1095023,3.1890438,148.57048,138.81418,-4.5734997,957.06116,0.0,94.848976 +2023-01-10 23:00:00,3.1906114,4.6872168,122.1957,123.690094,-4.6735,956.5687,0.0,95.204994 +2023-01-11 00:00:00,4.494441,6.463745,122.27562,124.91948,-5.4735,956.3126,0.0,94.449524 +2023-01-11 01:00:00,4.763402,7.5006666,129.0355,132.83891,-5.2735,956.542,0.0,94.4586 +2023-01-11 02:00:00,5.481788,7.864477,128.33337,131.39143,-5.0734997,956.2048,0.0,94.467674 +2023-01-11 03:00:00,5.0328918,7.427651,130.97165,133.36346,-4.8234997,956.1605,0.1,94.12073 +2023-01-11 04:00:00,4.4598207,6.8883963,137.72638,140.30096,-4.5734997,956.2108,0.1,93.776375 +2023-01-11 05:00:00,3.4669871,5.660389,146.76828,147.99466,-4.4735,956.1366,0.1,94.13748 +2023-01-11 06:00:00,4.883646,7.3817344,137.4896,144.37201,-4.2235,955.1476,0.1,94.14941 +2023-01-11 07:00:00,4.382921,6.983552,145.22209,150.8658,-3.8735,954.55597,0.0,93.45849 +2023-01-11 08:00:00,4.2520585,6.723095,138.81418,149.62096,-3.4235,953.8898,0.0,91.740105 +2023-01-11 09:00:00,3.3301651,5.635601,138.65233,152.52565,-3.6735,953.8399,0.0,91.37793 +2023-01-11 10:00:00,2.3345237,3.956008,136.73567,163.85559,-5.5734997,954.0256,0.0,92.65527 +2023-01-11 11:00:00,3.0610456,3.5735137,128.36752,162.07199,-5.5734997,953.6477,0.0,93.3675 +2023-01-11 12:00:00,2.1931713,3.354102,223.1524,243.43501,-7.1235,953.71014,0.0,96.58949 +2023-01-11 13:00:00,3.2280025,4.204759,253.81071,272.72626,-7.3234997,953.7638,0.0,94.36443 +2023-01-11 14:00:00,3.383785,5.4037023,288.9705,308.991,-7.4235,953.8377,0.0,91.826 +2023-01-11 15:00:00,3.5846896,5.4037023,300.1413,321.009,-6.4235,954.1364,0.0,88.06213 +2023-01-11 16:00:00,4.2520585,7.017834,318.81415,327.21573,-5.3234997,955.0207,0.0,86.81975 +2023-01-11 17:00:00,4.8826222,8.045496,325.0079,327.6927,-4.9735,956.0358,0.0,88.19866 +2023-01-11 18:00:00,6.742403,9.929753,324.65982,325.66974,-5.1235,956.6669,0.0,91.97713 +2023-01-11 19:00:00,7.742093,10.511898,324.46225,325.85635,-5.4235,956.8896,0.0,97.375786 +2023-01-11 20:00:00,9.192389,11.250777,329.2501,329.56036,-5.3234997,957.38226,0.0,96.27306 +2023-01-11 21:00:00,9.638465,11.884864,329.44412,329.119,-5.6735,958.1614,0.0,96.99972 +2023-01-11 22:00:00,9.004999,12.0440855,330.01843,330.66824,-5.8735,959.0653,0.0,96.62477 +2023-01-11 23:00:00,7.615773,11.624543,336.8014,338.29004,-5.4235,959.62897,0.0,97.375786 +2023-01-12 00:00:00,9.141664,12.870509,340.17746,341.42416,-6.4235,960.74725,0.0,95.86988 +2023-01-12 01:00:00,9.304837,12.87517,339.22766,340.0168,-6.2235,961.63837,0.0,94.77875 +2023-01-12 02:00:00,8.814193,12.133425,335.17947,336.18134,-6.0734997,962.8022,0.0,94.42214 +2023-01-12 03:00:00,8.453402,11.449454,332.52567,334.1064,-6.2735,963.61127,0.0,93.68942 +2023-01-12 04:00:00,8.497058,11.587062,333.43503,334.98312,-6.4735,964.32556,0.0,92.60131 +2023-01-12 05:00:00,8.915716,12.070211,336.88577,338.11038,-6.4735,965.26996,0.0,92.60131 +2023-01-12 06:00:00,9.625487,12.815616,336.09793,337.0362,-6.4735,965.9311,0.0,92.24451 +2023-01-12 07:00:00,10.022475,13.433168,335.22488,336.29733,-6.6235,966.27795,0.0,91.17074 +2023-01-12 08:00:00,9.931767,13.209845,334.98312,336.34576,-6.8234997,966.89764,0.0,90.80355 +2023-01-12 09:00:00,9.841239,13.014223,332.1331,333.04123,-7.0734997,967.6958,0.0,90.432594 +2023-01-12 10:00:00,10.072239,13.241223,330.89023,332.08032,-7.4235,968.0008,0.0,89.7026 +2023-01-12 11:00:00,10.423532,13.819551,331.95993,332.87878,-7.6735,968.32635,0.0,89.331535 +2023-01-12 12:00:00,10.929318,13.705838,327.32776,327.81738,-9.0735,968.694,0.0,89.5643 +2023-01-12 13:00:00,11.788554,14.288807,327.11874,327.86713,-9.0735,969.3546,0.0,89.5643 +2023-01-12 14:00:00,12.170867,14.988329,331.53992,331.72522,-8.9735,969.9418,0.0,87.81634 +2023-01-12 15:00:00,11.539496,13.998929,334.3232,334.16718,-8.9235,970.70776,0.0,87.82123 +2023-01-12 16:00:00,11.182576,14.536162,334.58075,334.3164,-9.1235,971.6092,0.0,88.15085 +2023-01-12 17:00:00,11.901261,14.54132,335.15762,335.19736,-9.2734995,972.6157,0.0,88.487366 +2023-01-12 18:00:00,11.449017,13.954211,332.9874,332.7005,-9.7235,972.70886,0.0,89.50908 +2023-01-12 19:00:00,11.539496,12.971122,334.3232,334.42276,-9.5234995,972.46826,0.0,88.816864 +2023-01-12 20:00:00,10.938465,12.646343,337.42038,337.69376,-9.1235,972.17554,0.0,87.45368 +2023-01-12 21:00:00,10.510947,12.571794,338.80588,338.53705,-8.9235,972.1236,0.0,87.127556 +2023-01-12 22:00:00,10.023972,12.21188,331.38962,332.176,-8.9235,972.87866,0.0,88.16991 +2023-01-12 23:00:00,9.709789,12.8280945,327.61935,329.03632,-8.9735,973.623,0.0,89.218994 +2023-01-13 00:00:00,9.752949,11.988328,331.8585,332.1525,-10.7734995,974.46606,0.0,88.34678 +2023-01-13 01:00:00,9.047099,12.185237,336.5519,336.8014,-11.3735,974.8088,0.0,88.64756 +2023-01-13 02:00:00,8.672947,11.516945,339.05728,339.6768,-11.3735,974.99744,0.0,89.006615 +2023-01-13 03:00:00,7.7833157,11.257886,339.70233,341.88684,-12.3735,975.2525,0.0,88.916306 +2023-01-13 04:00:00,7.02282,10.565037,340.0168,342.93704,-12.7235,975.1762,0.0,88.88442 +2023-01-13 05:00:00,6.315853,9.712363,336.68225,343.24417,-13.2235,974.9726,0.0,88.83867 +2023-01-13 06:00:00,6.296825,9.660745,327.31946,334.2307,-13.2734995,975.6218,0.0,88.83409 +2023-01-13 07:00:00,5.8591805,9.099999,332.56036,337.3801,-13.4235,975.2115,0.0,89.186386 +2023-01-13 08:00:00,5.905929,9.099999,331.69934,337.3801,-13.9735,975.3736,0.0,89.87657 +2023-01-13 09:00:00,5.994164,9.2309265,332.1525,337.04587,-14.4735,975.7347,0.0,90.20766 +2023-01-13 10:00:00,5.936329,9.257429,327.38077,333.7118,-14.7235,975.96216,0.0,89.81326 +2023-01-13 11:00:00,5.011986,8.170679,331.38962,338.45895,-14.8235,975.65704,0.0,89.43193 +2023-01-13 12:00:00,4.2544093,6.706713,336.44772,339.94382,-14.9735,975.247,0.0,89.79203 +2023-01-13 13:00:00,3.176476,5.7280016,331.8215,343.77972,-15.1235,975.21356,0.0,89.033226 +2023-01-13 14:00:00,2.624881,4.0706263,310.36444,332.176,-15.0234995,974.95306,0.0,90.16261 +2023-01-13 15:00:00,2.34094,3.1827662,289.9832,313.72705,-14.5735,975.05255,0.0,89.82596 +2023-01-13 16:00:00,1.8,1.8973665,270.0,288.43503,-13.7734995,975.6063,0.0,90.63704 +2023-01-13 17:00:00,2.2022715,2.2203603,230.52757,234.16226,-12.8735,975.4264,0.0,89.60113 +2023-01-13 18:00:00,3.482815,4.110961,219.17365,221.05472,-11.9735,974.77344,0.0,90.042534 +2023-01-13 19:00:00,4.545327,5.0447993,219.64413,219.3693,-11.1235,973.82495,0.0,90.47539 +2023-01-13 20:00:00,5.3037724,5.728001,224.23619,224.29277,-10.2235,973.35724,0.0,88.753235 +2023-01-13 21:00:00,5.1,5.4589376,208.07239,208.44283,-10.0234995,972.4564,0.0,88.41739 +2023-01-13 22:00:00,5.1662364,6.676077,194.57425,196.53491,-10.2734995,971.93134,0.0,89.104706 +2023-01-13 23:00:00,5.5731497,7.9831076,189.29323,192.29526,-10.9235,971.2261,0.0,89.76638 +2023-01-14 00:00:00,7.2449985,10.031949,200.18588,203.49858,-10.7235,971.2689,0.0,92.33828 +2023-01-14 01:00:00,8.060397,11.428473,191.44931,195.73886,-10.7734995,970.0315,0.0,92.335106 +2023-01-14 02:00:00,8.956003,12.728314,186.41075,190.86848,-10.2235,968.92224,0.0,92.00246 +2023-01-14 03:00:00,9.066973,13.179529,186.96815,191.82146,-9.4735,968.23175,0.0,88.82138 +2023-01-14 04:00:00,9.277931,13.885244,187.43132,191.6336,-9.2734995,967.4246,0.0,84.35839 +2023-01-14 05:00:00,9.960923,14.928161,186.3401,190.03015,-8.9735,966.6381,0.0,81.41858 +2023-01-14 06:00:00,10.439349,15.478049,189.37202,192.6894,-8.6235,966.05096,0.0,79.85967 +2023-01-14 07:00:00,10.707941,15.789237,191.30989,194.30031,-7.9735,964.9595,0.0,79.64251 +2023-01-14 08:00:00,11.042192,16.3487,192.02226,194.8863,-8.1735,963.9738,0.0,79.611435 +2023-01-14 09:00:00,11.258775,16.690416,192.308,195.28528,-8.0235,963.2497,0.0,79.95189 +2023-01-14 10:00:00,11.497826,17.088007,193.06932,196.31393,-7.7235,962.27344,0.0,80.6341 +2023-01-14 11:00:00,11.472576,16.983816,194.64192,197.47487,-7.3735,961.49615,0.0,81.32528 +2023-01-14 12:00:00,12.653063,18.373077,197.00293,198.7309,-5.4735,960.9411,0.0,79.714584 +2023-01-14 13:00:00,12.587296,18.283327,197.57135,199.82256,-5.0235,960.3714,0.0,81.028885 +2023-01-14 14:00:00,12.649111,18.258423,198.43504,200.5194,-4.7235,959.7709,0.0,82.015625 +2023-01-14 15:00:00,12.427792,17.813759,198.28925,200.3679,-4.2235,959.68286,0.0,83.35298 +2023-01-14 16:00:00,12.461942,17.805897,197.27184,199.35088,-3.3735,959.75885,0.0,84.41851 +2023-01-14 17:00:00,12.76127,17.83704,195.45207,197.62239,-2.2735002,959.4108,0.0,85.18835 +2023-01-14 18:00:00,12.873617,17.867569,197.16826,198.94208,-1.1235,958.40906,0.0,85.31854 +2023-01-14 19:00:00,12.884486,18.027758,195.7622,197.42995,-0.3735,957.04315,0.0,85.08688 +2023-01-14 20:00:00,12.95222,18.120155,193.39252,195.03331,0.17650001,955.9208,0.0,84.523415 +2023-01-14 21:00:00,13.023057,18.298906,190.6196,191.9854,0.47650003,955.03345,0.0,83.32165 +2023-01-14 22:00:00,13.355524,18.927494,191.22575,192.20045,0.7765,954.80774,0.0,81.23747 +2023-01-14 23:00:00,13.536616,19.160376,192.80426,193.89122,0.8765,954.73224,0.0,79.766304 +2023-01-15 00:00:00,13.548431,19.301813,188.48886,190.14548,-0.123500004,953.97144,0.0,80.21166 +2023-01-15 01:00:00,13.355524,18.970766,191.22575,192.79088,-0.27350003,953.7529,0.0,79.00252 +2023-01-15 02:00:00,13.2219515,18.777912,192.66982,195.4425,-0.1735,953.67804,0.0,78.430626 +2023-01-15 03:00:00,13.832209,19.511278,195.94547,198.52791,-0.023500003,953.3287,0.0,77.87141 +2023-01-15 04:00:00,14.008925,19.744873,198.30571,200.45424,0.1265,952.9795,0.0,78.186295 +2023-01-15 05:00:00,14.200352,19.944925,199.32822,201.16133,0.0765,952.5915,0.0,78.47007 +2023-01-15 06:00:00,13.984634,19.647392,202.71445,204.34741,0.1265,952.412,0.0,78.77056 +2023-01-15 07:00:00,13.118308,18.607525,203.82945,205.4633,0.17650001,952.5163,0.0,79.071846 +2023-01-15 08:00:00,12.163059,17.413212,201.71399,204.06271,0.17650001,952.89453,0.0,80.55393 +2023-01-15 09:00:00,11.428473,16.47574,195.73886,198.76495,0.22649999,952.9042,0.0,81.7641 +2023-01-15 10:00:00,11.085576,15.9890585,193.03336,195.6009,0.22649999,952.52594,0.0,82.67677 +2023-01-15 11:00:00,10.868303,15.814235,192.75752,194.6514,0.026500002,951.91986,0.0,83.26503 +2023-01-15 12:00:00,10.358572,15.041609,192.82878,195.42223,0.3765,952.0823,0.0,83.30909 +2023-01-15 13:00:00,10.18332,14.928161,187.33429,190.03015,0.2765,951.5901,0.0,82.98939 +2023-01-15 14:00:00,9.75141,14.453374,185.8859,188.35426,0.026500002,951.5416,0.0,84.19407 +2023-01-15 15:00:00,9.625487,14.202113,184.17035,186.87473,-0.22350001,951.7768,0.0,84.78962 +2023-01-15 16:00:00,9.500526,13.829317,180.60307,183.73132,-0.023500003,951.8156,0.0,84.812744 +2023-01-15 17:00:00,9.602083,13.800363,178.80653,180.41518,0.42650002,951.4299,0.0,85.491425 +2023-01-15 18:00:00,9.000556,12.814055,180.63658,182.68372,0.5265,950.7872,0.0,86.13295 +2023-01-15 19:00:00,8.329466,12.110327,175.17932,177.6338,0.6265,949.6714,0.0,87.09631 +2023-01-15 20:00:00,8.28734,12.070211,171.67444,173.81717,0.8265,948.95325,0.0,86.1647 +2023-01-15 21:00:00,7.106335,10.688779,166.15929,169.21574,1.0265,948.51843,0.0,84.933334 +2023-01-15 22:00:00,6.369458,9.992997,157.86446,161.92758,0.7765,948.4707,0.0,83.666336 +2023-01-15 23:00:00,5.800862,9.402127,144.11777,150.70874,-0.22350001,947.8051,0.0,83.54265 +2023-01-16 00:00:00,6.519202,10.462314,138.73149,144.33492,-0.4735,949.0807,0.0,85.0755 +2023-01-16 01:00:00,6.236986,10.068764,138.90059,145.52072,0.2765,949.13116,0.0,84.22397 +2023-01-16 02:00:00,5.658622,9.126335,136.43204,145.26508,0.3765,949.15045,0.0,84.85885 +2023-01-16 03:00:00,5.658622,9.044335,136.43204,144.90411,0.6265,949.0094,0.0,86.4601 +2023-01-16 04:00:00,5.7999997,9.121404,133.60289,142.12495,0.97650003,948.79266,0.0,89.38482 +2023-01-16 05:00:00,6.0207973,9.426027,131.63345,138.87135,0.6765,948.0732,0.0,91.33731 +2023-01-16 06:00:00,5.9816384,9.333809,128.21107,135.0001,0.5765,947.48645,0.0,92.33436 +2023-01-16 07:00:00,5.8249464,9.128527,124.50858,132.78032,0.8265,946.87244,0.0,93.3612 +2023-01-16 08:00:00,5.8051705,9.308598,132.20723,140.6673,1.1265,946.4567,0.0,93.37698 +2023-01-16 09:00:00,5.517246,8.780091,133.53127,142.86899,1.4765,945.956,0.0,93.73305 +2023-01-16 10:00:00,5.060632,8.146779,127.77575,138.48337,1.4265,945.095,0.1,94.750626 +2023-01-16 11:00:00,5.3009434,8.556284,125.78906,134.52655,1.5265,944.64087,0.1,95.43977 +2023-01-16 12:00:00,4.060788,6.5764737,99.926186,118.12364,1.2765,944.8772,0.3,96.12134 +2023-01-16 13:00:00,3.9319208,6.016644,82.694336,105.42222,1.3765,944.518,0.1,96.81904 +2023-01-16 14:00:00,4.110961,6.0207973,71.564964,94.76356,1.2265,944.0166,0.5,97.86666 +2023-01-16 15:00:00,4.472136,6.363961,63.435013,81.86999,1.1265,943.90283,0.8,99.283775 +2023-01-16 16:00:00,4.1617303,5.9481087,54.782326,73.39294,1.1265,943.7137,2.4,99.283775 +2023-01-16 17:00:00,4.2520585,5.903389,48.814175,63.86906,1.1265,943.619,2.6,99.64132 +2023-01-16 18:00:00,4.2801867,5.5605755,37.405437,52.3057,1.1265,942.86237,1.9,99.283775 +2023-01-16 19:00:00,4.5221677,5.95399,18.03438,29.147985,1.0265,942.2757,1.6,99.641014 +2023-01-16 20:00:00,5.2773094,7.1470275,9.819235,17.92802,0.92649996,942.0675,1.3,99.64073 +2023-01-16 21:00:00,6.140033,8.472308,6.5461946,11.575167,0.7765,942.5121,0.4,99.64028 +2023-01-16 22:00:00,6.8,9.4429865,360.0,5.469005,0.5265,943.4101,0.6,99.63955 +2023-01-16 23:00:00,7.1021123,9.80816,350.2725,357.66275,0.2765,944.0243,1.2,99.63881 +2023-01-17 00:00:00,7.1470275,10.492378,342.072,349.01138,-0.123500004,944.70404,0.9,99.276405 +2023-01-17 01:00:00,7.725283,10.881176,338.74942,342.8972,-0.22350001,945.6302,0.4,99.63732 +2023-01-17 02:00:00,7.9624114,11.123399,334.72232,337.81595,-0.3235,946.27295,0.3,99.637024 +2023-01-17 03:00:00,7.9611554,11.452948,327.308,331.86874,-0.5735,946.6975,0.3,99.63628 +2023-01-17 04:00:00,8.527602,11.871394,320.7106,325.64056,-0.9235,947.2916,0.2,99.63522 +2023-01-17 05:00:00,8.909546,12.637247,315.0001,320.13644,-1.4235,947.7617,0.2,98.18046 +2023-01-17 06:00:00,8.570297,13.7,311.68896,320.03384,-1.9735,948.0324,0.2,97.810234 +2023-01-17 07:00:00,8.7045965,14.901342,312.67215,322.36102,-2.3235002,948.2475,0.1,97.80393 +2023-01-17 08:00:00,8.7045965,15.263354,312.67215,324.33133,-2.5235002,948.5862,0.0,97.43792 +2023-01-17 09:00:00,8.861715,14.860013,310.8817,323.20712,-2.6735,949.50195,0.0,96.71264 +2023-01-17 10:00:00,8.70919,14.001429,304.23752,315.57864,-2.8735,950.21875,0.0,95.98874 +2023-01-17 11:00:00,8.930845,12.907362,304.046,310.6012,-3.2235,950.811,0.0,95.97725 +2023-01-17 12:00:00,8.768124,13.780058,315.0001,322.96368,-3.3735,950.9702,0.0,95.97232 +2023-01-17 13:00:00,9.209778,13.480727,318.52155,322.535,-3.7735002,951.74115,0.0,95.59903 +2023-01-17 14:00:00,9.295698,12.700394,319.7999,322.6789,-4.2735,952.3972,0.0,94.50371 +2023-01-17 15:00:00,9.577578,12.76127,319.65833,322.32184,-4.5734997,953.3765,0.0,94.132706 +2023-01-17 16:00:00,9.567131,11.997083,318.81415,320.07217,-4.6235,954.21686,0.0,93.41857 +2023-01-17 17:00:00,9.193476,11.030867,314.11868,315.0001,-4.5235,955.08734,0.0,93.07013 +2023-01-17 18:00:00,9.3236265,11.15213,308.4679,309.54242,-4.4735,955.4753,0.0,92.36919 +2023-01-17 19:00:00,9.372299,11.139569,309.8055,310.26648,-4.5734997,955.54956,0.1,92.36303 +2023-01-17 20:00:00,9.479451,11.1731825,313.29022,314.27487,-4.4735,955.75867,0.1,92.72047 +2023-01-17 21:00:00,9.193476,10.890363,314.11868,314.256,-4.5734997,956.4943,0.0,92.36303 +2023-01-17 22:00:00,9.121404,11.480853,322.12494,322.43134,-4.8735,957.0953,0.0,91.64331 +2023-01-17 23:00:00,8.112336,11.1507845,329.64197,330.4464,-5.5734997,957.7095,0.0,91.94788 +2023-01-18 00:00:00,6.43506,8.993887,314.37048,318.15494,-6.5235,958.9325,0.0,92.59828 +2023-01-18 01:00:00,6.5795135,8.645229,316.8476,318.75183,-6.4735,959.50916,0.0,92.60131 +2023-01-18 02:00:00,6.6468034,8.348653,315.0001,316.94147,-6.7235,960.0248,0.0,92.94493 +2023-01-18 03:00:00,6.506919,7.993122,313.7547,316.52072,-6.6235,960.61176,0.0,92.23503 +2023-01-18 04:00:00,6.3812227,8.732124,327.8043,330.49936,-6.6235,960.61176,0.0,92.59225 +2023-01-18 05:00:00,5.769748,7.7472577,334.3232,336.41296,-6.5734997,960.71655,0.0,92.59527 +2023-01-18 06:00:00,5.5946403,7.4464755,335.72556,337.91278,-6.7235,960.6858,0.0,92.586205 +2023-01-18 07:00:00,4.750789,6.894201,329.65683,336.0375,-7.1735,961.15955,0.0,92.91891 +2023-01-18 08:00:00,4.7423625,6.747592,312.4362,320.4119,-7.8234997,961.6862,0.0,92.51922 +2023-01-18 09:00:00,5.360038,7.6059184,323.34378,331.75034,-8.2734995,962.15936,0.0,92.12969 +2023-01-18 10:00:00,5.5542774,8.20061,336.66592,344.43842,-8.9235,961.74066,0.0,92.0876 +2023-01-18 11:00:00,4.5617976,6.5734315,333.9967,346.8094,-9.1235,962.0762,0.0,91.71156 +2023-01-18 12:00:00,4.215448,5.60803,337.69376,356.93356,-10.1735,961.94995,0.0,91.63971 +2023-01-18 13:00:00,4.2201896,5.813777,346.293,3.9451082,-10.4735,962.0752,0.0,91.61901 +2023-01-18 14:00:00,4.204759,6.4031243,357.27374,14.470333,-10.8235,961.71814,0.0,92.33193 +2023-01-18 15:00:00,4.7095647,7.467262,3.6521478,20.37652,-9.8735,961.3524,0.0,93.12883 +2023-01-18 16:00:00,3.7161808,6.521503,23.805958,35.639904,-7.8735,961.67584,0.0,92.87814 +2023-01-18 17:00:00,5.020956,6.1073728,44.19317,50.31459,-5.3735,962.00055,0.0,93.37831 +2023-01-18 18:00:00,5.162364,5.420332,58.46526,60.124096,-3.4735,961.81775,0.0,92.08303 +2023-01-18 19:00:00,7.184706,8.099383,55.2039,57.094753,-2.5235002,960.02295,0.0,91.11531 +2023-01-18 20:00:00,6.896376,7.741447,60.461315,61.448715,-2.3735,959.8638,0.0,91.80915 +2023-01-18 21:00:00,7.632169,8.883693,58.392544,58.81509,-2.4735,959.27686,0.0,92.49094 +2023-01-18 22:00:00,7.256032,9.482615,60.25522,62.354122,-2.5735002,958.87866,0.0,94.93223 +2023-01-18 23:00:00,7.988116,10.960383,55.713078,58.050068,-2.4235,957.8688,0.0,94.58571 +2023-01-19 00:00:00,7.632169,10.606602,58.392544,61.26031,-2.9235,957.58057,0.0,93.85909 +2023-01-19 01:00:00,7.7006493,10.650822,52.385983,55.713078,-2.8235002,957.2222,0.0,93.51376 +2023-01-19 02:00:00,8.202439,11.194641,44.999897,48.621593,-2.8235002,956.9387,0.0,93.164635 +2023-01-19 03:00:00,8.485281,11.552056,44.999897,48.86084,-2.9735,956.1529,0.1,93.505905 +2023-01-19 04:00:00,8.711487,11.879393,41.74269,44.999897,-3.0235002,955.38684,0.2,93.85413 +2023-01-19 05:00:00,7.50733,10.536128,41.760216,45.38449,-2.9735,955.39685,0.2,93.856606 +2023-01-19 06:00:00,6.8818603,9.718539,35.537766,40.40938,-3.0735002,955.0934,0.5,95.267265 +2023-01-19 07:00:00,6.5863495,9.241754,30.068504,35.75398,-3.1735,954.6957,1.1,96.69914 +2023-01-19 08:00:00,7.071068,9.7908125,28.739704,34.17704,-3.2735002,954.01416,1.4,97.42206 +2023-01-19 09:00:00,7.479305,10.317461,29.649773,33.536083,-3.3235002,953.72076,1.1,97.42099 +2023-01-19 10:00:00,8.041144,10.916501,21.139904,24.921751,-3.4735,953.31274,0.6,97.78303 +2023-01-19 11:00:00,7.874643,10.770329,17.744766,21.801476,-3.5235002,953.1139,0.6,96.689644 +2023-01-19 12:00:00,7.4330344,10.044899,5.403709,9.743584,-3.8235002,952.4871,0.5,96.31884 +2023-01-19 13:00:00,7.045566,10.0044985,353.4803,358.28168,-3.9735,952.6463,0.2,96.3143 +2023-01-19 14:00:00,7.712976,10.554619,346.50424,350.18076,-3.9735,952.92975,0.3,96.3143 +2023-01-19 15:00:00,7.930952,12.016655,336.9911,341.56494,-3.9735,953.2132,0.4,96.67736 +2023-01-19 16:00:00,9.123595,12.349089,333.9967,338.6293,-3.7735002,953.63104,0.2,95.95909 +2023-01-19 17:00:00,9.570789,12.461541,333.97046,337.34473,-3.5235002,954.24786,0.2,95.60803 +2023-01-19 18:00:00,11.007271,13.341664,335.2976,336.12473,-3.0735002,954.14825,0.1,94.5571 +2023-01-19 19:00:00,11.884864,14.094325,337.75092,338.3495,-2.8735,954.1882,0.2,93.861565 +2023-01-19 20:00:00,11.940687,14.089003,333.6496,334.34436,-2.8235002,954.76495,0.2,93.86405 +2023-01-19 21:00:00,11.543396,15.023314,328.09988,329.1671,-2.9735,955.68036,0.1,93.856606 +2023-01-19 22:00:00,11.200446,14.461674,322.61847,324.00165,-3.2735002,957.2273,0.1,93.84169 +2023-01-19 23:00:00,10.511898,13.75936,325.85635,327.46497,-3.7235,958.27124,0.0,94.528275 +2023-01-20 00:00:00,10.183319,13.257451,324.59305,326.07016,-4.3234997,959.2845,0.0,93.78901 +2023-01-20 01:00:00,9.577578,12.822637,319.65833,321.9682,-5.1235,960.1622,0.0,94.10631 +2023-01-20 02:00:00,9.055386,12.126417,316.7899,319.34753,-5.4235,961.1403,0.0,94.09185 +2023-01-20 03:00:00,8.711487,11.562439,318.25732,319.56003,-5.6235,961.76074,0.0,92.65229 +2023-01-20 04:00:00,8.627862,11.536464,315.9391,317.45908,-5.9735,962.44476,0.0,91.92175 +2023-01-20 05:00:00,8.627862,11.469089,315.9391,317.82718,-6.2235,963.1495,0.0,91.55171 +2023-01-20 06:00:00,8.485281,11.248555,315.0001,316.80112,-6.4235,963.95825,0.0,90.83323 +2023-01-20 07:00:00,8.062258,10.688779,316.00497,317.65424,-6.6735,964.6621,0.0,90.46345 +2023-01-20 08:00:00,7.7897367,10.141499,318.12222,319.39877,-6.9235,965.3663,0.0,89.395676 +2023-01-20 09:00:00,6.8767724,9.3236265,319.1277,321.5321,-7.2735,966.0492,0.0,88.671005 +2023-01-20 10:00:00,6.16198,8.324061,318.28934,321.34018,-7.3735,966.12286,0.0,87.62796 +2023-01-20 11:00:00,5.7628117,8.48646,308.65982,314.04523,-8.1235,966.6277,0.0,87.55371 +2023-01-20 12:00:00,5.658622,8.823832,316.43204,321.44156,-9.5234995,966.4281,0.0,88.11261 +2023-01-20 13:00:00,5.1623635,8.060397,315.78473,322.56134,-9.7734995,966.8473,0.0,87.73769 +2023-01-20 14:00:00,4.909175,7.6419888,303.36636,312.8789,-10.0735,967.25543,0.0,87.00838 +2023-01-20 15:00:00,4.652956,7.170077,298.21725,309.90784,-9.3235,967.98047,0.0,86.05189 +2023-01-20 16:00:00,3.733631,7.060453,290.37653,307.5192,-8.5735,968.5157,0.0,87.50884 +2023-01-20 17:00:00,5.162364,6.0207973,301.53473,302.10623,-6.6735,969.1005,0.0,82.388176 +2023-01-20 18:00:00,4.830114,5.5946403,297.09546,298.85556,-5.7735,968.9089,0.0,81.870705 +2023-01-20 19:00:00,4.3324356,4.964876,288.85324,288.8,-5.3234997,968.71783,0.0,83.21159 +2023-01-20 20:00:00,3.7643058,4.3965893,286.9909,287.19864,-4.8735,968.4319,0.0,83.91355 +2023-01-20 21:00:00,3.640055,4.2720017,290.92456,290.55612,-4.4235,968.5236,0.0,84.29188 +2023-01-20 22:00:00,3.0413814,4.248529,297.4075,296.56497,-4.0735,968.5003,0.0,87.28016 +2023-01-20 23:00:00,2.657066,4.1231055,289.79895,292.83368,-4.3735,968.7228,0.0,90.29402 +2023-01-21 00:00:00,1.3152945,1.4,278.74606,270.0,-7.1235,968.3463,0.0,91.13489 +2023-01-21 01:00:00,1.3341664,2.3194828,257.00537,262.5687,-7.1235,968.3463,0.0,91.84594 +2023-01-21 02:00:00,1.4,2.5019991,270.0,272.29056,-6.8735,968.11487,0.0,91.50705 +2023-01-21 03:00:00,1.7088008,2.7294688,249.44386,261.57312,-6.7235,967.95734,0.0,91.16357 +2023-01-21 04:00:00,2.6627054,4.0804415,235.71307,252.89719,-6.6735,967.7785,0.0,90.46345 +2023-01-21 05:00:00,3.6687872,5.5226803,252.55272,264.80566,-6.2235,967.87177,0.0,89.45503 +2023-01-21 06:00:00,3.9,5.9228373,270.0,281.68933,-5.8234997,967.7649,0.0,89.48872 +2023-01-21 07:00:00,3.901282,5.869412,271.46878,283.7995,-5.6735,967.5125,0.0,89.1575 +2023-01-21 08:00:00,3.5902646,5.4,257.125,270.0,-5.5235,967.44867,0.0,89.51389 +2023-01-21 09:00:00,3.577709,5.3150725,243.43501,258.05585,-5.6235,967.1448,0.0,90.19646 +2023-01-21 10:00:00,4.0496917,6.1465435,237.09476,248.02544,-5.4235,966.808,0.0,90.212166 +2023-01-21 11:00:00,4.2544093,6.6483083,246.44772,254.29129,-5.3234997,966.26184,0.0,90.56646 +2023-01-21 12:00:00,3.5846896,5.491812,247.01126,259.50858,-5.5734997,965.92725,0.0,90.200386 +2023-01-21 13:00:00,3.6055512,5.9076223,266.82022,272.91077,-5.6235,965.539,0.0,90.89215 +2023-01-21 14:00:00,3.471311,5.400926,258.3664,271.06088,-5.6735,965.33997,0.0,91.58921 +2023-01-21 15:00:00,3.847077,5.7280016,242.10283,253.77974,-5.5734997,965.36053,0.0,91.596 +2023-01-21 16:00:00,4.876474,7.138627,254.53873,258.6901,-4.9735,965.48285,0.0,90.93962 +2023-01-21 17:00:00,5.223983,6.7067127,264.50778,267.43628,-5.1235,965.1689,0.0,92.32899 +2023-01-21 18:00:00,5.223983,5.830952,275.49222,275.90604,-4.6235,964.70374,0.0,93.06451 +2023-01-21 19:00:00,4.8764744,5.4589376,298.1415,298.4428,-4.1235,963.6713,0.0,93.799095 +2023-01-21 20:00:00,2.109502,2.2022717,264.55975,267.3975,-3.7235,963.37396,0.0,93.11484 +2023-01-21 21:00:00,2.9068882,3.1144822,220.81499,222.39738,-3.7735002,963.2694,0.0,93.81669 +2023-01-21 22:00:00,4.031129,4.7423625,223.99501,227.56381,-4.2235,963.17883,0.0,96.67051 +2023-01-21 23:00:00,4.4553337,5.59017,224.09071,227.17476,-4.9735,962.8377,0.0,97.38557 +2023-01-22 00:00:00,3.4669871,3.9698865,213.23172,220.91429,-6.3735,962.36304,0.0,93.68426 +2023-01-22 01:00:00,3.6400552,4.6690474,217.18478,223.26433,-6.4735,962.059,0.0,95.13347 +2023-01-22 02:00:00,3.4205263,4.494441,232.12495,237.72438,-7.1235,961.642,0.0,95.84581 +2023-01-22 03:00:00,3.640055,4.883646,254.05453,259.3804,-7.2235,961.4328,0.0,95.47214 +2023-01-22 04:00:00,3.6055512,5.001,266.82022,271.14572,-7.3234997,961.31757,0.0,95.46836 +2023-01-22 05:00:00,2.8017852,3.9204593,272.04535,275.85593,-7.3234997,961.31757,0.0,95.46836 +2023-01-22 06:00:00,2.34094,2.9068882,289.9832,296.56497,-7.6735,961.2452,0.0,95.08489 +2023-01-22 07:00:00,2.1213202,2.4041631,315.0001,315.0001,-8.1735,961.14166,0.0,94.69392 +2023-01-22 08:00:00,2.0,2.0615528,323.13,320.90613,-8.5735,960.9639,0.0,94.67627 +2023-01-22 09:00:00,2.5806975,2.7018511,324.46225,321.009,-8.9235,960.70233,0.0,93.9191 +2023-01-22 10:00:00,2.7018511,2.8999999,321.009,316.3971,-9.1735,960.1781,0.0,93.90648 +2023-01-22 11:00:00,3.1400635,3.6124785,322.76508,318.36655,-9.5735,960.0001,0.0,93.14588 +2023-01-22 12:00:00,3.2695565,3.757659,336.5713,334.79892,-9.6735,959.8847,0.0,92.77173 +2023-01-22 13:00:00,2.1954498,2.385372,329.9315,326.97614,-9.9735,959.82153,0.0,92.75376 +2023-01-22 14:00:00,2.147091,2.418677,332.24155,330.25522,-10.2734995,960.13605,0.0,92.36678 +2023-01-22 15:00:00,1.7691805,1.8384775,317.29062,315.0001,-10.2734995,960.4191,0.0,92.735725 +2023-01-22 16:00:00,1.6643317,1.8357561,302.7352,299.35767,-10.0735,960.93286,0.0,93.117424 +2023-01-22 17:00:00,1.7720045,1.9646883,286.38962,284.74362,-9.6235,961.0276,0.0,93.14305 +2023-01-22 18:00:00,1.9646883,2.2561028,284.74362,282.80426,-8.9735,960.9748,0.0,94.286896 +2023-01-22 19:00:00,2.184033,2.4738634,285.94547,284.03625,-8.4235,960.6177,0.0,95.05416 +2023-01-22 20:00:00,2.34094,2.624881,289.9832,287.74475,-7.8735,960.4485,0.0,95.07671 +2023-01-22 21:00:00,2.5019991,2.9017239,272.29056,271.97488,-7.3735,960.55194,0.0,95.837166 +2023-01-22 22:00:00,2.9017239,3.4014704,268.02512,268.31534,-6.9735,960.9176,0.0,95.481514 +2023-01-22 23:00:00,3.2,3.8013155,270.0,271.5074,-7.1235,961.07544,0.0,95.47589 +2023-01-23 00:00:00,2.942788,3.4132097,260.21765,264.95764,-7.1235,960.981,0.0,95.47589 +2023-01-23 01:00:00,3.51141,4.2579336,250.0168,260.53775,-7.7735,961.13007,0.0,93.976685 +2023-01-23 02:00:00,4.365776,5.531727,249.90468,257.4712,-8.6735,961.2263,0.0,93.56355 +2023-01-23 03:00:00,4.428318,5.9464273,244.59233,250.34608,-9.3235,961.46814,0.0,93.89887 +2023-01-23 04:00:00,4.7413077,6.6850576,242.35411,248.03938,-9.2734995,961.5729,0.0,93.5315 +2023-01-23 05:00:00,5.27731,7.8434687,242.94948,250.64091,-9.1235,961.793,0.0,93.909004 +2023-01-23 06:00:00,5.916925,8.523497,239.53453,247.94888,-9.3735,961.9293,0.0,93.526146 +2023-01-23 07:00:00,6.795587,10.2956295,237.01147,245.9245,-9.8235,961.83496,0.0,92.76273 +2023-01-23 08:00:00,7.7006493,11.676472,232.38597,241.89874,-10.2235,961.3731,0.0,92.36994 +2023-01-23 09:00:00,8.29759,13.482581,229.39879,240.2025,-10.0735,961.1216,0.0,92.74776 +2023-01-23 10:00:00,9.241754,14.405902,234.24602,241.83403,-9.7235,961.5729,0.0,93.50732 +2023-01-23 11:00:00,9.956907,14.223924,236.4695,242.35411,-9.0234995,961.3421,0.0,93.54489 +2023-01-23 12:00:00,10.0,14.564684,233.13002,237.61934,-6.9235,960.8336,0.0,95.48339 +2023-01-23 13:00:00,10.016986,14.676852,238.05528,241.51425,-8.0235,960.7951,0.0,93.23306 +2023-01-23 14:00:00,9.798979,14.230249,245.26572,251.56496,-9.7734995,961.18494,0.0,92.76573 +2023-01-23 15:00:00,8.6884985,13.003461,258.04343,271.32196,-8.4735,961.1737,0.0,88.91129 +2023-01-23 16:00:00,7.8160095,12.088011,273.66772,286.33612,-5.2235,961.65314,0.0,90.22784 +2023-01-23 17:00:00,8.246211,12.163059,284.03625,291.714,-2.4235,962.40576,0.0,89.76889 +2023-01-23 18:00:00,8.246211,11.859595,292.83368,298.72604,-0.9735,962.5985,0.0,90.55226 +2023-01-23 19:00:00,8.459906,11.872658,298.9887,302.61923,-0.07350001,962.3028,0.0,90.28701 +2023-01-23 20:00:00,8.820431,12.264175,302.96942,305.37485,-0.023500003,962.31256,0.0,89.96009 +2023-01-23 21:00:00,9.06973,12.182775,304.21576,305.6471,-0.27350003,962.83093,0.0,89.940414 +2023-01-23 22:00:00,8.660831,11.90168,306.0761,307.83282,-0.9735,963.7331,0.0,88.89238 +2023-01-23 23:00:00,7.932213,11.183023,303.6901,305.53775,-1.7235,963.963,0.0,87.83873 +2023-01-24 00:00:00,5.664804,9.082401,290.6745,298.25793,-3.0735002,963.4101,0.0,87.70983 +2023-01-24 01:00:00,6.768308,10.715409,282.80426,292.49652,-4.0235,963.597,0.0,85.63803 +2023-01-24 02:00:00,6.708204,10.628264,280.30478,289.79895,-4.3735,963.6207,0.0,84.62152 +2023-01-24 03:00:00,6.61211,10.404807,273.46817,283.9027,-5.0235,963.6778,0.0,86.51784 +2023-01-24 04:00:00,6.7067127,10.24207,267.43628,279.55423,-5.6235,963.46094,0.0,86.788605 +2023-01-24 05:00:00,6.5,10.043904,270.0,282.65256,-6.2735,963.70575,0.0,84.722145 +2023-01-24 06:00:00,6.0133185,9.425497,273.814,287.2816,-7.0235,963.92896,0.0,84.30153 +2023-01-24 07:00:00,5.9076223,9.002777,267.08923,282.18365,-7.7735,963.86804,0.0,84.87562 +2023-01-24 08:00:00,5.9439044,8.827797,257.36664,274.54794,-8.5234995,963.99524,0.0,87.16865 +2023-01-24 09:00:00,5.531727,8.609298,257.4712,272.66293,-8.7734995,964.22595,0.0,88.184166 +2023-01-24 10:00:00,5.345091,8.0,252.58194,270.0,-9.2235,963.9431,0.0,89.907295 +2023-01-24 11:00:00,4.753946,7.045566,255.37909,276.5197,-9.7235,963.64905,0.0,92.4014 +2023-01-24 12:00:00,4.0816665,4.7169905,239.03632,274.8644,-10.1735,963.0823,0.0,92.37309 +2023-01-24 13:00:00,3.940812,3.4785054,215.70677,251.56496,-11.0735,962.41986,0.0,91.94604 +2023-01-24 14:00:00,4.401136,3.9824615,201.31798,218.8845,-10.6735,962.50464,0.0,91.97266 +2023-01-24 15:00:00,4.7759814,5.903389,199.57321,206.13094,-9.7235,962.98846,0.0,92.035355 +2023-01-24 16:00:00,5.124451,8.236504,197.02061,209.0545,-8.3735,963.3656,0.0,94.315285 +2023-01-24 17:00:00,5.9682493,10.697663,188.6731,200.80687,-7.0734997,963.16327,0.0,95.84754 +2023-01-24 18:00:00,6.140033,12.448293,196.07364,203.6821,-5.2735,962.8711,0.0,97.00966 +2023-01-24 19:00:00,7.03278,10.707007,209.84584,212.79953,-3.6735,962.9115,0.0,93.8217 +2023-01-24 20:00:00,6.7601776,9.679876,209.21915,213.19757,-3.3735,961.8379,0.1,94.54384 +2023-01-24 21:00:00,6.6887965,9.62133,211.55133,217.82281,-3.8235002,961.1805,0.0,96.31884 +2023-01-24 22:00:00,8.811924,11.325192,207.72816,209.0545,-4.5235,961.79535,0.0,97.76367 +2023-01-24 23:00:00,8.937561,12.465152,220.46214,221.74796,-4.9235,962.2811,0.0,97.38665 +2023-01-25 00:00:00,7.155418,10.155294,243.43501,244.94905,-3.1735,961.689,0.0,96.69914 +2023-01-25 01:00:00,6.9339743,9.848858,236.76828,240.83249,-3.8235002,962.0309,0.0,95.23823 +2023-01-25 02:00:00,6.6730804,9.546204,240.36171,247.19542,-4.3234997,961.5521,0.0,93.78901 +2023-01-25 03:00:00,6.1684685,9.433981,253.03377,265.13556,-5.4735,960.2799,0.0,90.90314 +2023-01-25 04:00:00,5.8240876,8.702298,254.05453,271.31686,-6.0734997,959.87427,0.0,89.12282 +2023-01-25 05:00:00,5.707013,8.598837,258.887,278.6954,-6.3735,959.3409,0.0,88.06687 +2023-01-25 06:00:00,5.6008925,8.637709,268.977,290.3232,-6.0734997,958.8354,0.0,86.40619 +2023-01-25 07:00:00,5.4037027,8.160883,267.87894,287.1028,-6.0734997,958.55206,0.0,85.40661 +2023-01-25 08:00:00,6.670832,10.715409,282.99463,292.49652,-6.0734997,958.8354,0.0,87.07834 +2023-01-25 09:00:00,6.103278,9.660228,288.13818,297.09546,-5.9735,958.9501,0.0,89.82191 +2023-01-25 10:00:00,6.35059,10.290287,296.1615,304.30783,-6.3735,958.49097,0.0,91.89552 +2023-01-25 11:00:00,8.345058,11.768601,315.97092,319.13477,-4.4235,958.69763,0.0,95.93748 +2023-01-25 12:00:00,8.832327,12.258875,329.37006,331.76263,-5.2235,958.63025,0.1,97.750626 +2023-01-25 13:00:00,9.730879,14.729901,320.42062,325.231,-6.1235,958.91974,0.3,95.51318 +2023-01-25 14:00:00,9.567131,15.533191,318.81415,325.4914,-7.5734997,958.9999,0.0,93.9866 +2023-01-25 15:00:00,9.915645,18.420097,318.27057,329.67648,-8.6235,959.3488,0.1,93.9342 +2023-01-25 16:00:00,12.467958,14.166157,329.1151,329.4525,-7.3234997,959.8068,0.1,90.76624 +2023-01-25 17:00:00,11.772,14.988329,331.04004,331.72522,-7.1735,960.30963,0.1,90.07347 +2023-01-25 18:00:00,12.264175,15.420766,324.62515,326.1038,-8.4735,960.6073,0.1,90.67962 +2023-01-25 19:00:00,12.621014,15.940201,322.40366,323.41757,-9.9735,960.4821,0.1,90.56482 +2023-01-25 20:00:00,13.0,16.542368,323.13,324.09985,-10.2235,960.6182,0.1,89.46631 +2023-01-25 21:00:00,13.640015,17.321663,323.046,323.9239,-10.7734995,960.8794,0.0,88.34678 +2023-01-25 22:00:00,13.22006,16.682026,323.30338,324.02304,-11.4235,961.87354,0.0,86.866394 +2023-01-25 23:00:00,12.397581,16.282814,326.1817,327.28592,-12.1735,962.1848,0.0,85.730034 +2023-01-26 00:00:00,12.0415945,15.932671,327.89377,328.60458,-14.2734995,962.6742,0.0,84.77707 +2023-01-26 01:00:00,11.353414,15.418496,328.6901,329.6099,-14.8735,963.1087,0.0,83.99637 +2023-01-26 02:00:00,11.387713,15.5794735,329.38147,330.8026,-15.5735,963.3322,0.0,82.8502 +2023-01-26 03:00:00,11.027693,15.395129,329.48184,331.2708,-16.223501,963.2828,0.0,82.40952 +2023-01-26 04:00:00,10.7042055,15.1182,330.3216,332.41806,-16.4235,963.52124,0.0,82.73257 +2023-01-26 05:00:00,9.888376,14.087229,331.62085,333.43503,-16.4235,963.6154,0.0,82.73257 +2023-01-26 06:00:00,9.451454,13.553228,330.18002,332.30063,-16.723501,963.9258,0.0,82.33868 +2023-01-26 07:00:00,9.349332,13.6565,327.66983,330.61948,-17.1735,964.014,0.0,82.62778 +2023-01-26 08:00:00,9.042676,13.346161,327.18863,330.3617,-17.4235,964.42914,0.0,82.23878 +2023-01-26 09:00:00,9.013878,13.360015,326.3099,329.40408,-17.723501,964.8329,0.0,82.19572 +2023-01-26 10:00:00,8.598255,12.899612,326.86438,330.25522,-17.973501,964.96545,0.0,82.87164 +2023-01-26 11:00:00,8.18352,12.403628,327.47513,330.5417,-18.1735,965.01465,0.0,84.65059 +2023-01-26 12:00:00,7.4625735,11.461239,327.5877,330.75128,-17.9235,964.8823,0.0,85.046906 +2023-01-26 13:00:00,6.8505473,10.617438,326.3099,330.0544,-18.1235,964.9315,0.0,86.49816 +2023-01-26 14:00:00,6.5,10.292716,323.13,327.69962,-18.2735,965.08624,0.0,86.48135 +2023-01-26 15:00:00,6.0827627,9.654015,313.66785,320.0425,-17.2735,965.6876,0.0,85.490974 +2023-01-26 16:00:00,4.5188494,8.464632,294.86368,308.76553,-15.9735,965.78864,0.0,85.2838 +2023-01-26 17:00:00,6.203225,6.4195013,290.77234,288.1528,-14.1735,965.7129,0.0,83.04147 +2023-01-26 18:00:00,5.8008623,6.1,270.98773,270.0,-12.6235,964.3518,0.0,83.59279 +2023-01-26 19:00:00,6.628725,6.8883963,258.6901,260.81125,-11.5234995,963.36163,0.0,86.50405 +2023-01-26 20:00:00,7.212489,7.7620873,253.0724,255.06853,-10.5234995,962.3477,0.0,87.66331 +2023-01-26 21:00:00,7.632169,8.415462,248.47733,249.8423,-9.9235,961.6251,0.0,87.02401 +2023-01-26 22:00:00,6.788225,9.135097,224.9999,228.10611,-9.5735,960.3776,0.0,86.71372 +2023-01-26 23:00:00,8.099383,11.520851,212.90524,216.17372,-10.7734995,958.9924,0.0,86.585266 +2023-01-27 00:00:00,7.9924965,11.985408,211.70139,215.14876,-9.9235,957.6616,0.0,87.722885 +2023-01-27 01:00:00,9.075792,13.616534,198.63467,203.36436,-10.0735,956.1202,0.0,86.31369 +2023-01-27 02:00:00,11.350771,16.317476,194.28113,198.21297,-9.5735,954.1488,0.0,85.33934 +2023-01-27 03:00:00,12.903488,18.236227,197.59251,201.21805,-8.3735,951.94305,0.0,85.478065 +2023-01-27 04:00:00,14.063072,19.275372,203.4661,206.16618,-6.0734997,950.1461,0.1,84.41734 +2023-01-27 05:00:00,14.23587,19.525625,211.79202,213.93427,-4.5235,948.85175,0.1,85.910446 +2023-01-27 06:00:00,13.124405,18.038015,220.36446,223.42763,-3.2235,947.88135,0.0,89.029945 +2023-01-27 07:00:00,11.370136,16.032778,230.71062,235.41779,-1.8735,946.91754,0.0,90.48489 +2023-01-27 08:00:00,10.632968,15.079124,238.85149,245.30449,-0.6735,946.0161,0.0,89.90883 +2023-01-27 09:00:00,10.793516,15.542522,256.60748,262.23492,-0.27350003,945.80975,0.0,88.29988 +2023-01-27 10:00:00,11.303982,15.861904,271.52072,275.06354,0.7765,945.63324,0.0,88.718185 +2023-01-27 11:00:00,13.2981205,18.191208,282.1549,284.6474,0.6265,945.8882,0.0,87.41597 +2023-01-27 12:00:00,11.898319,16.260996,303.6901,307.5042,0.0765,946.1608,0.1,91.63111 +2023-01-27 13:00:00,15.143315,19.664434,326.3099,325.98663,-1.6735,948.3745,0.2,89.1629 +2023-01-27 14:00:00,14.375326,20.47071,318.10175,318.36655,-5.2735,950.49634,0.0,86.15897 +2023-01-27 15:00:00,13.293607,19.178373,315.0001,317.3244,-7.7735,952.2551,0.0,83.547485 +2023-01-27 16:00:00,14.957607,18.233212,319.0664,319.67145,-8.2734995,953.56866,0.0,80.55225 +2023-01-27 17:00:00,14.328293,17.605112,319.5289,320.06946,-8.5234995,954.8386,0.0,78.9239 +2023-01-27 18:00:00,14.213022,17.32426,314.71497,315.23386,-8.5234995,955.68823,0.0,78.60909 +2023-01-27 19:00:00,12.445883,14.99133,314.34903,314.45956,-8.2734995,955.6455,0.0,79.27934 +2023-01-27 20:00:00,11.053506,13.048371,318.66788,319.35117,-8.1735,956.23267,0.0,80.56717 +2023-01-27 21:00:00,9.759099,11.667477,314.16977,314.6528,-8.2235,957.26074,0.0,79.60365 +2023-01-27 22:00:00,7.8390055,10.358571,299.83545,300.77396,-8.4735,958.4361,0.0,80.202 +2023-01-27 23:00:00,5.9615436,8.772685,292.69382,294.22772,-9.3235,959.01416,0.0,81.04245 +2023-01-28 00:00:00,5.0249376,7.8568444,317.41956,317.5792,-11.9735,959.5868,0.0,82.9956 +2023-01-28 01:00:00,4.545327,7.2835426,309.64413,315.55618,-12.6235,960.6735,0.0,83.59279 +2023-01-28 02:00:00,4.263801,6.9999995,320.7106,323.13,-12.6735,961.4175,0.0,83.93078 +2023-01-28 03:00:00,4.167733,6.935416,329.74365,331.58743,-12.9235,962.21265,0.0,84.24509 +2023-01-28 04:00:00,3.5510561,6.307139,327.6526,334.65387,-13.4735,963.0367,0.0,84.52459 +2023-01-28 05:00:00,3.1622775,5.60803,325.30478,338.00882,-13.6235,963.5698,0.0,84.156456 +2023-01-28 06:00:00,3.757659,6.456005,334.79892,343.8107,-13.8235,963.715,0.0,83.434906 +2023-01-28 07:00:00,4.295346,7.3824115,347.90527,351.43094,-13.1735,964.0447,0.0,82.150375 +2023-01-28 08:00:00,4.004997,6.5069194,357.13766,357.3575,-12.9735,964.74786,0.1,82.5188 +2023-01-28 09:00:00,4.554119,7.200694,8.841739,9.593073,-13.2734995,965.2489,0.2,83.16282 +2023-01-28 10:00:00,5.748913,7.106335,13.069325,13.840727,-13.7734995,965.706,0.3,83.78879 +2023-01-28 11:00:00,6.334824,7.5927596,11.84205,12.938063,-14.5234995,965.91925,0.4,80.93397 +2023-01-28 12:00:00,6.6753273,7.9429216,8.615564,10.885482,-15.9235,966.0823,0.2,82.45185 +2023-01-28 13:00:00,7.0859013,8.45281,8.930518,10.911081,-16.1235,966.7918,0.1,83.126114 +2023-01-28 14:00:00,7.472616,8.736132,15.524177,15.945477,-16.473501,967.75055,0.1,81.67525 +2023-01-28 15:00:00,7.02282,8.228001,19.983198,20.637625,-16.973501,968.95807,0.1,80.55961 +2023-01-28 16:00:00,6.76757,7.655063,18.970512,19.855309,-17.1235,970.24335,0.1,79.84755 +2023-01-28 17:00:00,6.8308125,7.7794604,17.90454,17.969234,-17.2735,970.68097,0.0,79.48073 +2023-01-28 18:00:00,7.0830784,7.6902537,13.055255,12.771242,-17.1735,970.51483,0.0,79.83952 +2023-01-28 19:00:00,7.7317524,8.646965,5.19435,5.9742346,-17.1735,970.13794,0.0,80.52858 +2023-01-28 20:00:00,8.409518,9.518929,2.7262611,3.6138167,-17.223501,969.56134,0.0,81.21541 +2023-01-28 21:00:00,8.20061,9.000556,359.30133,359.36343,-17.2735,969.92725,0.0,79.8235 +2023-01-28 22:00:00,8.820431,10.212247,356.09958,357.1937,-17.4235,969.8934,0.0,79.45632 +2023-01-28 23:00:00,8.814193,10.412012,356.7481,357.24756,-17.6235,970.22534,0.0,77.38975 +2023-01-29 00:00:00,8.793179,10.728001,342.80136,343.76108,-19.073502,971.87445,0.0,79.18492 +2023-01-29 01:00:00,9.075792,11.484337,341.36533,343.3007,-19.723501,972.2906,0.0,79.42525 +2023-01-29 02:00:00,9.013878,10.656923,340.55988,341.39493,-19.823502,972.9266,0.0,77.33588 +2023-01-29 03:00:00,9.075792,11.067972,341.36533,341.56494,-20.073502,973.33984,0.1,77.29099 +2023-01-29 04:00:00,8.888757,10.756393,342.99197,343.24966,-20.223501,973.4934,0.0,78.297104 +2023-01-29 05:00:00,8.888757,11.38859,342.99197,343.1561,-20.4235,973.4476,0.0,77.22793 +2023-01-29 06:00:00,7.940403,11.401754,343.16245,344.7448,-20.9235,973.2374,0.0,77.8281 +2023-01-29 07:00:00,8.05295,11.384639,335.0261,337.26395,-20.7735,974.1195,0.0,77.16463 +2023-01-29 08:00:00,7.484651,9.693296,337.20343,338.19852,-20.6235,974.34265,0.0,77.53573 +2023-01-29 09:00:00,6.741662,9.457801,339.14545,340.22382,-20.573502,974.26,0.0,79.99013 +2023-01-29 10:00:00,7.151223,10.1242285,339.53763,339.77505,-20.723501,974.1312,0.0,78.55864 +2023-01-29 11:00:00,6.9641943,10.312129,338.9624,340.1592,-21.8735,973.86334,0.0,78.7125 +2023-01-29 12:00:00,6.198387,9.411164,342.1496,345.2254,-22.2735,973.6753,0.0,78.29027 +2023-01-29 13:00:00,5.8180757,9.024964,335.63754,338.5522,-22.723501,974.4167,0.0,78.56606 +2023-01-29 14:00:00,4.909175,7.9177017,326.6336,332.14044,-22.823502,975.2397,0.0,78.19389 +2023-01-29 15:00:00,4.1231055,7.5802374,320.90613,329.03632,-22.0235,976.0867,0.0,77.98241 +2023-01-29 16:00:00,3.828838,6.723095,319.23648,329.62094,-20.973501,976.42645,0.0,77.4731 +2023-01-29 17:00:00,3.9623227,5.940539,317.0454,323.9016,-19.973501,976.564,0.0,75.61707 +2023-01-29 18:00:00,4.5803933,5.5605755,306.11945,307.6943,-18.823502,976.3578,0.0,73.86352 +2023-01-29 19:00:00,5.3823786,6.3820057,305.1665,305.4334,-17.7735,975.7495,0.0,71.84606 +2023-01-29 20:00:00,6.0108232,6.9310894,314.32605,313.83093,-17.0235,974.88245,0.0,69.54393 +2023-01-29 21:00:00,6.236986,7.3,311.0994,311.112,-16.6235,974.97266,0.0,71.778175 +2023-01-29 22:00:00,5.408327,6.7675695,303.6901,304.15976,-16.6735,974.77277,0.0,74.29111 +2023-01-29 23:00:00,4.830114,7.1344237,297.09546,301.23917,-18.2735,974.69385,0.0,76.938286 +2023-01-30 00:00:00,5.4083266,8.1024685,289.44012,294.03427,-17.5235,974.86395,0.0,76.07844 +2023-01-30 01:00:00,5.636488,8.421995,295.20108,299.91354,-18.0235,974.939,0.0,76.64941 +2023-01-30 02:00:00,5.7775426,8.411897,293.45905,298.3929,-18.1235,975.29297,0.0,75.63626 +2023-01-30 03:00:00,5.8309517,8.994443,292.16638,298.5595,-19.5235,975.34985,0.0,74.37711 +2023-01-30 04:00:00,5.9093146,9.192389,293.9625,300.7499,-19.6235,975.6091,0.0,74.02891 +2023-01-30 05:00:00,5.5461698,8.70919,295.64096,304.23752,-20.073502,975.59937,0.0,73.938324 +2023-01-30 06:00:00,5.280152,8.514693,294.62354,303.50345,-20.6235,976.0372,0.0,72.51836 +2023-01-30 07:00:00,5.515433,8.91852,292.3802,300.3026,-20.5235,975.8721,0.0,70.300766 +2023-01-30 08:00:00,5.5785303,9.192389,284.5345,292.3802,-20.723501,975.5433,0.0,69.31438 +2023-01-30 09:00:00,6.4938436,10.340696,279.75235,288.61026,-20.5235,975.4955,0.0,69.36045 +2023-01-30 10:00:00,6.942622,10.722406,281.6336,289.61798,-20.6735,975.64886,0.0,70.5833 +2023-01-30 11:00:00,6.3890533,9.928242,287.3006,296.3069,-21.323502,975.6859,0.0,72.36992 +2023-01-30 12:00:00,5.2201533,8.099383,290.17075,302.90524,-21.823502,975.4749,0.0,73.58177 +2023-01-30 13:00:00,4.5177426,7.3756356,297.69937,310.60123,-22.7735,975.34576,0.0,72.388405 +2023-01-30 14:00:00,4.3462625,6.92026,293.0255,307.36673,-23.473501,975.9328,0.0,70.2721 +2023-01-30 15:00:00,4.1785164,6.8818603,291.03757,305.53775,-22.6235,976.41614,0.0,67.93134 +2023-01-30 16:00:00,3.4525354,6.71193,280.0079,298.4741,-21.6235,977.1216,0.0,69.419945 +2023-01-30 17:00:00,3.9623227,6.2769423,280.17545,292.47946,-20.6235,977.7316,0.0,66.58234 +2023-01-30 18:00:00,4.648656,5.571355,288.8248,291.03757,-19.7735,977.4576,0.0,66.19467 +2023-01-30 19:00:00,4.5122056,5.2392745,282.80426,283.24054,-19.223501,976.7367,0.0,65.447945 +2023-01-30 20:00:00,4.86621,5.5731497,279.46225,279.2932,-18.9235,976.0524,0.0,66.10917 +2023-01-30 21:00:00,4.8259716,5.6435804,275.94678,277.1249,-19.0235,976.0295,0.0,66.97297 +2023-01-30 22:00:00,3.901282,5.7558665,271.46878,277.98923,-19.473501,975.83203,0.0,70.84941 +2023-01-30 23:00:00,4.14367,6.2289643,261.67444,275.52744,-21.073502,975.0852,0.0,72.09826 +2023-01-31 00:00:00,4.609772,7.0,257.4712,270.0,-22.2735,974.8046,0.0,72.825096 +2023-01-31 01:00:00,4.6173587,7.2111025,252.3498,266.82022,-22.473501,974.56946,0.0,72.782875 +2023-01-31 02:00:00,5.283938,8.393451,240.5242,254.80469,-22.7735,974.0285,0.0,71.73057 +2023-01-31 03:00:00,6.4899926,10.215673,236.3099,246.94867,-22.6235,973.78156,0.0,70.78752 +2023-01-31 04:00:00,6.981404,10.927488,231.981,240.38527,-22.6735,973.67566,0.0,71.4257 +2023-01-31 05:00:00,7.3,11.537765,228.888,236.3099,-22.6235,973.40515,0.0,72.09124 +2023-01-31 06:00:00,7.6367536,11.980819,224.9999,232.4605,-22.573502,972.94635,0.0,71.77421 +2023-01-31 07:00:00,8.156592,12.747549,220.52502,228.17992,-22.4235,972.511,0.0,71.1558 +2023-01-31 08:00:00,8.627862,13.431679,224.0609,230.74062,-22.0235,971.5696,0.0,71.8936 +2023-01-31 09:00:00,9.128527,14.160508,227.21968,233.61555,-21.823502,971.3339,0.0,72.919785 +2023-01-31 10:00:00,8.700575,13.569451,232.47148,240.41232,-21.6735,970.52167,0.0,73.61258 +2023-01-31 11:00:00,8.560373,13.106106,232.59457,242.26192,-21.573502,970.16864,0.0,73.63311 +2023-01-31 12:00:00,8.130191,12.293087,238.06935,248.02544,-21.7735,968.8987,0.0,74.93173 +2023-01-31 13:00:00,7.9812284,11.810588,232.12495,244.95383,-22.3735,968.1941,0.0,74.813194 +2023-01-31 14:00:00,8.348653,12.107848,226.94147,239.19862,-22.6735,968.21826,0.0,74.41469 +2023-01-31 15:00:00,8.421994,12.564235,227.406,236.68935,-21.823502,968.69885,0.0,73.91475 +2023-01-31 16:00:00,8.354639,13.231024,227.9109,235.46912,-20.4235,969.3993,0.0,74.52894 +2023-01-31 17:00:00,7.0007143,13.967104,225.57864,240.8658,-19.223501,969.6739,0.0,76.76572 +2023-01-31 18:00:00,7.076722,13.641848,222.70937,242.49585,-18.1235,968.9818,0.0,75.63626 +2023-01-31 19:00:00,6.9296465,13.376472,224.9999,241.9024,-17.0235,968.19293,0.0,75.84312 +2023-01-31 20:00:00,6.8014703,13.148765,228.57643,242.8504,-16.1735,967.7232,0.0,75.03028 +2023-01-31 21:00:00,6.2289643,12.882546,222.39738,242.24155,-16.0235,967.66205,0.0,76.35485 +2023-01-31 22:00:00,7.5742984,11.428036,227.67548,237.14427,-15.8235,967.3295,0.0,70.114426 +2023-01-31 23:00:00,7.5006666,11.6400175,222.83891,233.03157,-16.323502,966.46466,0.0,68.20767 +2023-02-01 00:00:00,7.7801027,11.882761,217.16455,226.36386,-17.223501,966.6407,0.0,68.894684 +2023-02-01 01:00:00,7.840918,12.0216465,217.74687,225.67395,-17.2735,966.44135,0.0,68.8832 +2023-02-01 02:00:00,8.323461,12.6732,215.21768,222.12157,-17.073502,966.2033,0.0,69.53264 +2023-02-01 03:00:00,8.440379,12.955694,216.32692,222.18437,-16.9235,966.04834,0.0,70.78673 +2023-02-01 04:00:00,8.591274,13.296617,219.80553,226.2188,-16.573502,966.12634,0.0,70.862976 +2023-02-01 05:00:00,8.354639,12.842507,222.08908,229.73752,-16.3735,966.171,0.0,70.60058 +2023-02-01 06:00:00,8.1024685,12.5706005,234.54443,242.00804,-16.3735,966.0767,0.0,70.60058 +2023-02-01 07:00:00,8.163333,12.571794,239.03632,248.53705,-16.473501,965.3006,0.0,70.57868 +2023-02-01 08:00:00,7.023532,10.841587,241.97559,255.5792,-16.573502,965.0897,0.0,70.862976 +2023-02-01 09:00:00,5.5946403,8.63713,245.72557,264.68555,-16.823502,964.93994,0.0,71.42545 +2023-02-01 10:00:00,4.830114,6.9007244,242.90453,269.1697,-17.6235,964.9498,0.0,72.192154 +2023-02-01 11:00:00,4.8010416,6.0207973,234.3235,265.23645,-17.9235,964.8823,0.0,72.12893 +2023-02-01 12:00:00,4.118252,3.8832974,240.94548,281.88864,-18.6735,964.90186,0.0,74.21874 +2023-02-01 13:00:00,3.6891732,2.6925821,237.17146,285.06854,-18.8735,964.3857,0.0,74.17894 +2023-02-01 14:00:00,4.2801867,2.1954498,217.40543,239.9315,-18.973501,964.1747,0.0,74.81426 +2023-02-01 15:00:00,4.9193497,4.565085,206.56499,208.8107,-17.723501,964.64453,0.0,76.372 +2023-02-01 16:00:00,5.635601,7.494665,207.47435,211.35703,-15.7734995,965.2671,0.0,75.75111 +2023-02-01 17:00:00,6.140033,8.886507,210.32352,219.06258,-13.7734995,965.32886,0.0,76.1201 +2023-02-01 18:00:00,6.306346,11.317244,207.37762,223.56796,-12.1235,964.93097,0.0,80.95751 +2023-02-01 19:00:00,6.8505473,12.010412,213.6901,230.74417,-10.5234995,964.14044,0.0,80.53816 +2023-02-01 20:00:00,6.7675695,12.020815,214.15974,233.79732,-9.8235,963.7224,0.0,80.96895 +2023-02-01 21:00:00,6.4070277,11.799152,214.18617,238.86975,-9.6235,963.57574,0.0,79.70465 +2023-02-01 22:00:00,7.648529,11.237883,228.17992,240.69789,-9.7235,963.64905,0.0,72.89313 +2023-02-01 23:00:00,6.0008335,9.8234415,246.42528,255.2564,-10.7734995,964.08734,0.0,72.98195 +2023-02-02 00:00:00,4.808326,7.7781744,253.0724,261.87,-11.9235,964.69104,0.0,75.20165 +2023-02-02 01:00:00,5.502726,8.628442,250.9064,265.34674,-11.8735,964.6074,0.0,73.977 +2023-02-02 02:00:00,5.7870545,8.7,251.87805,270.0,-12.0735,964.1873,0.0,74.24523 +2023-02-02 03:00:00,5.661272,7.641989,252.52513,276.0089,-12.3235,963.47345,0.0,75.12673 +2023-02-02 04:00:00,5.6302757,7.1112585,250.27763,273.22446,-12.5735,962.9481,0.0,76.021454 +2023-02-02 05:00:00,5.994164,7.8771825,242.15251,261.97284,-12.6235,962.4655,0.0,76.32869 +2023-02-02 06:00:00,6.5795135,10.097525,245.77226,262.0305,-11.9735,962.41656,0.0,75.81657 +2023-02-02 07:00:00,7.467262,11.907981,249.62347,262.27826,-10.5735,962.0542,0.0,74.8379 +2023-02-02 08:00:00,8.207923,13.184839,247.80966,260.39487,-9.4735,961.62524,0.0,75.653656 +2023-02-02 09:00:00,9.741664,15.245328,252.68097,262.08258,-8.0235,961.456,0.0,74.11497 +2023-02-02 10:00:00,9.8030615,15.420765,251.56496,260.29343,-7.8234997,961.3086,0.0,73.85698 +2023-02-02 11:00:00,10.500476,16.487875,270.54565,275.91797,-7.4235,963.18536,0.0,73.0539 +2023-02-02 12:00:00,12.841339,17.649078,326.43365,328.2011,-7.9735,965.7148,0.0,83.52179 +2023-02-02 13:00:00,13.223085,17.492857,337.31342,337.8336,-11.7734995,967.9304,0.0,85.07997 +2023-02-02 14:00:00,12.869343,17.288725,337.6198,338.6293,-14.2235,969.9448,0.0,81.65918 +2023-02-02 15:00:00,13.333041,17.497713,338.43793,339.59717,-15.4735,971.7427,0.0,78.429245 +2023-02-02 16:00:00,13.555811,16.843395,338.3555,338.76703,-16.9235,973.3033,0.0,71.71445 +2023-02-02 17:00:00,13.483324,16.362457,339.14545,339.23895,-17.8735,974.7846,0.0,69.35128 +2023-02-02 18:00:00,12.944883,15.543809,339.18484,338.88303,-18.323502,975.71844,0.0,71.728714 +2023-02-02 19:00:00,12.85496,15.362943,336.62582,336.6055,-18.573502,976.2267,0.0,71.675156 +2023-02-02 20:00:00,12.076837,14.493102,334.49588,334.67267,-18.723501,976.66327,0.0,72.59566 +2023-02-02 21:00:00,11.761803,13.997857,333.21716,333.25195,-18.7735,977.68774,0.0,74.19885 +2023-02-02 22:00:00,9.929753,12.119819,332.4028,333.01218,-19.2735,978.32623,0.0,71.8418 +2023-02-02 23:00:00,8.64523,11.510429,330.173,330.31696,-19.8735,978.847,0.0,73.32481 +2023-02-03 00:00:00,8.376157,11.650322,326.68936,327.26477,-21.973501,979.957,0.0,73.88418 +2023-02-03 01:00:00,8.15414,11.458621,326.5048,327.83563,-22.573502,980.37994,0.0,73.76147 +2023-02-03 02:00:00,7.8236823,11.207141,324.8879,325.17545,-23.1735,980.614,0.0,74.99537 +2023-02-03 03:00:00,7.494665,10.993179,328.64297,328.76816,-23.6235,980.6949,0.0,73.88297 +2023-02-03 04:00:00,7.4242845,11.001818,332.74475,332.9692,-23.8735,981.0111,0.0,72.819305 +2023-02-03 05:00:00,7.151223,10.568822,339.53763,339.50732,-23.973501,980.8932,0.0,72.463234 +2023-02-03 06:00:00,6.293648,9.712363,342.42865,343.24417,-24.473501,980.6791,0.0,72.69141 +2023-02-03 07:00:00,5.1078367,8.065358,336.94867,340.44165,-24.823502,980.5947,0.0,73.29393 +2023-02-03 08:00:00,4.3829217,6.9079666,332.8504,337.8905,-25.073502,980.81665,0.0,73.92561 +2023-02-03 09:00:00,3.5846896,5.9135437,337.01126,341.25854,-25.323502,980.5683,0.0,74.218765 +2023-02-03 10:00:00,2.7294688,4.7169905,351.57312,355.13556,-25.6235,980.0255,0.0,74.8527 +2023-02-03 11:00:00,1.3341664,3.008322,12.99463,15.42223,-26.1735,979.4216,0.0,75.799995 +2023-02-03 12:00:00,1.360147,2.4020824,107.10281,92.385895,-25.1735,979.758,0.0,72.87993 +2023-02-03 13:00:00,2.2135942,3.51141,108.43504,109.98319,-24.5235,979.7267,0.0,74.0388 +2023-02-03 14:00:00,3.405877,4.8104053,130.23628,133.31535,-23.7735,979.6241,0.0,74.87631 +2023-02-03 15:00:00,4.750789,5.966573,139.26799,140.44037,-23.1735,979.39087,0.0,73.637886 +2023-02-03 16:00:00,5.8309517,7.03278,149.03632,150.15416,-22.223501,979.145,0.0,74.8429 +2023-02-03 17:00:00,6.6309876,7.8924017,156.91484,157.6593,-20.9235,978.79126,0.0,74.42949 +2023-02-03 18:00:00,7.6400266,9.144397,165.59995,166.72359,-19.723501,977.9401,0.0,73.68157 +2023-02-03 19:00:00,8.023092,9.436631,169.95071,170.2383,-18.7735,976.5576,0.0,71.94861 +2023-02-03 20:00:00,8.472308,10.27716,168.42484,169.34615,-17.7735,974.9017,0.0,68.166855 +2023-02-03 21:00:00,8.415462,10.340696,159.8423,161.38974,-17.2735,973.3189,0.0,71.01886 +2023-02-03 22:00:00,8.285529,11.764353,156.52899,162.18102,-17.2735,971.9999,0.0,73.21365 +2023-02-03 23:00:00,9.684008,13.7873125,163.81073,168.2826,-17.573502,970.80164,0.0,69.116234 +2023-02-04 00:00:00,10.097525,14.657763,172.03047,174.91183,-17.4235,969.70496,0.0,67.950455 +2023-02-04 01:00:00,10.40865,15.133077,171.7143,176.21118,-17.1735,968.34796,0.0,69.813774 +2023-02-04 02:00:00,11.403946,16.607529,178.4926,181.72522,-16.473501,966.9967,0.0,70.57868 +2023-02-04 03:00:00,12.340584,17.861973,184.64789,187.72174,-15.5735,965.31146,0.0,69.86871 +2023-02-04 04:00:00,13.25745,19.112562,191.30989,194.54524,-14.4235,963.86725,0.0,68.93863 +2023-02-04 05:00:00,13.756817,19.944925,197.77649,201.16133,-12.7235,962.16125,0.0,68.740654 +2023-02-04 06:00:00,13.473679,19.589792,204.09201,207.3498,-10.7235,961.17316,0.0,69.474396 +2023-02-04 07:00:00,12.801562,18.890472,208.96756,212.68054,-9.6735,960.4509,0.0,72.01792 +2023-02-04 08:00:00,12.397581,18.242807,213.81828,217.87505,-9.1235,959.6222,0.0,74.805855 +2023-02-04 09:00:00,11.166468,16.697306,218.82008,223.05852,-9.0234995,958.79364,0.0,77.899345 +2023-02-04 10:00:00,10.541821,15.738487,223.07805,229.12239,-8.9235,957.7763,0.0,80.45486 +2023-02-04 11:00:00,9.689685,14.450605,226.25438,236.85977,-8.6735,957.16736,0.0,81.461655 +2023-02-04 12:00:00,6.96563,9.726767,230.82635,255.10648,-9.5234995,955.95215,0.0,81.99502 +2023-02-04 13:00:00,6.363961,7.9831076,224.9999,257.70474,-10.1235,954.9776,0.0,81.58078 +2023-02-04 14:00:00,5.9464273,6.8883963,222.27362,260.81125,-10.1235,954.41144,0.0,80.59836 +2023-02-04 15:00:00,6.0,6.5795135,216.86998,245.77226,-9.1735,954.32623,0.0,80.095345 +2023-02-04 16:00:00,6.324555,7.902531,214.69522,231.67984,-7.3234997,954.3303,0.0,80.69333 +2023-02-04 17:00:00,6.670832,9.24554,220.13542,231.14662,-4.5734997,954.79364,0.0,81.09357 +2023-02-04 18:00:00,7.076722,10.121264,222.70937,232.22426,-2.0735002,954.4407,0.0,80.83439 +2023-02-04 19:00:00,7.35527,11.0,223.89838,233.13002,-0.9235,953.8155,0.0,80.99852 +2023-02-04 20:00:00,7.5802374,11.412711,239.0363,245.6807,-0.77349997,953.93945,0.0,81.32302 +2023-02-04 21:00:00,5.714018,9.166243,274.0141,276.89233,-0.6735,954.7151,0.0,81.336975 +2023-02-04 22:00:00,5.821512,9.464143,274.927,285.94547,-0.3735,954.0173,0.0,78.39899 +2023-02-04 23:00:00,6.397656,10.14002,294.96277,306.983,-0.6735,954.526,0.0,76.607185 +2023-02-05 00:00:00,5.948109,9.295698,296.99576,310.2001,-1.1235,955.0999,0.0,77.692825 +2023-02-05 01:00:00,6.352952,10.0657835,298.1785,310.97165,-1.7235,955.3604,0.0,77.009315 +2023-02-05 02:00:00,5.99333,9.38616,295.7099,308.9458,-2.1735,955.4609,0.0,78.111305 +2023-02-05 03:00:00,6.6483083,11.005907,285.7087,298.1949,-1.8735,955.80347,0.0,76.1128 +2023-02-05 04:00:00,8.190848,13.37535,287.7714,295.22388,-0.6235,956.0489,0.0,73.78603 +2023-02-05 05:00:00,8.477028,13.647344,287.1525,294.68713,-0.4735,956.2671,0.0,74.65225 +2023-02-05 06:00:00,8.570298,13.780058,289.06927,294.89127,-0.3735,956.3813,0.0,74.95149 +2023-02-05 07:00:00,9.047651,14.222518,290.0373,295.84433,-0.5735,956.6259,0.0,76.050804 +2023-02-05 08:00:00,9.704638,14.785128,296.30096,300.0332,-0.6735,957.26807,0.0,78.05828 +2023-02-05 09:00:00,9.1268835,13.822083,302.47116,305.8751,-1.3735,957.7926,0.0,80.93455 +2023-02-05 10:00:00,8.542833,12.88177,308.3456,312.48306,-2.4235,958.5304,0.0,85.171234 +2023-02-05 11:00:00,8.061017,12.101652,315.0001,317.34415,-2.8235002,959.396,0.0,89.06449 +2023-02-05 12:00:00,7.366139,11.025879,318.30194,321.259,-4.9235,959.9194,0.0,93.04761 +2023-02-05 13:00:00,8.655634,11.729024,319.68597,320.88245,-5.5734997,961.1099,0.0,93.01079 +2023-02-05 14:00:00,7.7201037,10.381232,323.42688,324.01312,-6.4235,961.88055,0.0,90.83323 +2023-02-05 15:00:00,7.479305,10.208329,330.35022,330.6729,-8.1235,962.5682,0.0,90.70611 +2023-02-05 16:00:00,6.6030297,8.875247,324.86572,326.48895,-8.4235,963.2609,0.0,91.04068 +2023-02-05 17:00:00,6.2128897,7.975588,326.82147,329.89877,-7.7735,964.24567,0.0,90.378265 +2023-02-05 18:00:00,6.080296,7.323933,323.6954,325.0079,-7.0734997,964.6741,0.0,90.432594 +2023-02-05 19:00:00,5.0,6.1032777,323.13,325.0079,-6.1735,964.5762,0.0,90.15308 +2023-02-05 20:00:00,4.560702,5.360038,322.12494,323.34378,-5.5734997,964.60486,0.0,88.823746 +2023-02-05 21:00:00,3.4999998,4.2201896,323.13,323.67307,-5.2735,964.6659,0.0,88.85037 +2023-02-05 22:00:00,2.4758837,3.6619666,316.63654,325.0079,-5.2735,964.6659,0.0,88.50991 +2023-02-05 23:00:00,1.0198039,1.7691805,281.3099,312.70938,-5.6735,964.2065,0.0,89.84634 +2023-02-06 00:00:00,3.1906114,2.7802877,212.19571,217.6943,-8.7734995,963.94275,0.0,91.73531 +2023-02-06 01:00:00,3.640055,4.3081317,200.92458,201.80147,-8.3735,964.0264,0.0,91.40271 +2023-02-06 02:00:00,4.3931766,6.113101,191.82146,195.17297,-8.1735,963.87946,0.0,91.77581 +2023-02-06 03:00:00,4.8259716,7.200694,185.94676,189.59306,-7.9235,963.176,0.0,90.72121 +2023-02-06 04:00:00,5.2086463,8.20975,176.6982,177.20735,-7.3735,962.44037,0.0,90.057434 +2023-02-06 05:00:00,6.139218,9.767292,167.77489,169.3804,-6.8234997,962.176,0.0,87.68201 +2023-02-06 06:00:00,7.227724,11.356496,165.5792,167.79955,-6.5235,962.3323,0.0,88.3951 +2023-02-06 07:00:00,8.065358,12.664912,162.68826,164.4274,-6.2235,961.8273,0.0,89.10978 +2023-02-06 08:00:00,8.276473,12.826535,168.14702,169.21574,-6.0734997,961.291,0.0,87.41616 +2023-02-06 09:00:00,9.167878,14.081193,166.11531,168.5305,-5.7735,960.6913,0.0,86.438225 +2023-02-06 10:00:00,10.096039,15.37693,163.89864,165.69261,-5.4735,959.52423,0.0,86.13725 +2023-02-06 11:00:00,10.473777,15.815183,169.54842,170.53775,-5.2235,959.0081,0.0,85.833244 +2023-02-06 12:00:00,10.621205,16.211725,171.33595,173.2696,-4.6235,958.56274,0.0,85.899445 +2023-02-06 13:00:00,11.237883,17.065754,168.19014,169.8754,-4.2735,957.3104,0.0,85.61009 +2023-02-06 14:00:00,11.52085,17.376997,166.44621,168.04344,-3.9735,956.33136,0.0,85.97069 +2023-02-06 15:00:00,12.596031,18.435835,163.8671,164.90837,-2.7235,955.16284,0.0,85.78202 +2023-02-06 16:00:00,12.51599,17.923447,165.1865,166.11879,-1.3235,954.58826,0.0,85.93475 +2023-02-06 17:00:00,12.54193,17.632357,164.74483,165.88492,0.0765,953.7263,0.0,85.137955 +2023-02-06 18:00:00,11.072489,17.225563,163.20155,164.51144,0.47650003,952.47986,0.0,85.183136 +2023-02-06 19:00:00,10.530432,15.454772,175.64311,175.17487,1.1765,951.5742,1.0,85.26173 +2023-02-06 20:00:00,8.315046,12.120232,183.44731,183.31087,1.3765,949.90985,1.8,85.908775 +2023-02-06 21:00:00,5.661272,8.668333,197.47487,196.76263,1.5265,948.8977,0.2,88.14103 +2023-02-06 22:00:00,4.167733,7.0491138,210.25635,211.6607,1.2765,948.4717,0.5,90.71763 +2023-02-06 23:00:00,4.4102154,7.306162,237.0306,239.5743,1.3265,948.38666,0.6,91.71307 +2023-02-07 00:00:00,5.481788,8.653323,231.66663,236.3099,0.6765,949.4919,0.0,91.33731 +2023-02-07 01:00:00,6.47611,10.0841465,256.60748,262.59317,-0.77349997,949.4955,0.0,91.23774 +2023-02-07 02:00:00,7.91012,12.2,272.8985,280.3888,-1.6735,949.60345,0.0,89.1629 +2023-02-07 03:00:00,10.492378,15.519343,292.40988,297.2254,-0.9235,949.939,0.0,85.02412 +2023-02-07 04:00:00,11.928118,17.04142,304.75598,307.60965,-0.6735,950.8384,0.0,86.32434 +2023-02-07 05:00:00,11.403947,16.322071,305.36255,307.78268,-0.8735,952.21783,0.0,87.59361 +2023-02-07 06:00:00,11.601724,16.445364,305.88223,308.33337,-0.6735,953.4859,0.0,86.644875 +2023-02-07 07:00:00,11.520851,16.288954,306.17374,308.76968,-0.7235,954.5163,0.0,87.60803 +2023-02-07 08:00:00,10.860018,15.493224,306.76447,309.23734,-0.8235,955.7259,0.0,88.90539 +2023-02-07 09:00:00,10.8074045,15.305554,308.991,311.29147,-1.0235,957.01056,0.0,88.55921 +2023-02-07 10:00:00,10.682695,15.262044,308.15726,309.9497,-1.7235,958.0074,0.0,85.57056 +2023-02-07 11:00:00,10.060318,14.340154,307.3256,309.90784,-2.9735,959.0827,0.0,81.94157 +2023-02-07 12:00:00,9.577578,13.93449,310.34167,313.54617,-4.5235,959.81134,0.0,82.04304 +2023-02-07 13:00:00,8.9810915,13.25481,307.76312,311.02316,-5.1735,960.90784,0.0,78.225975 +2023-02-07 14:00:00,8.268011,12.5,302.15228,306.86996,-5.0734997,962.15625,0.0,76.73506 +2023-02-07 15:00:00,7.920227,11.7477665,294.62354,300.71277,-3.8235002,963.3538,0.0,77.24572 +2023-02-07 16:00:00,6.360031,10.742439,286.44046,294.1791,-2.3235002,964.5053,0.0,81.41222 +2023-02-07 17:00:00,5.6142673,10.783784,274.08554,288.9391,-1.0235,965.0471,0.0,83.131836 +2023-02-07 18:00:00,5.5731497,12.495198,260.70676,282.47906,-0.3735,965.3645,0.0,85.08688 +2023-02-07 19:00:00,6.1684685,13.245754,253.03377,274.76355,0.22649999,965.3877,0.0,87.056564 +2023-02-07 20:00:00,5.769748,12.901549,244.32323,269.1118,0.6765,965.47595,0.0,89.36004 +2023-02-07 21:00:00,6.928925,11.672618,249.73422,263.6057,1.0265,965.7333,0.0,84.31319 +2023-02-07 22:00:00,7.368175,11.021797,251.81085,258.4862,1.1265,966.1312,0.0,78.63464 +2023-02-07 23:00:00,7.7369246,11.73925,243.10384,249.55812,0.22649999,966.0497,0.0,79.37389 +2023-02-08 00:00:00,6.6850576,10.577333,248.03938,254.64981,-0.4735,965.62836,0.0,79.861626 +2023-02-08 01:00:00,5.423099,8.70919,264.71002,272.6324,-1.3235,966.21686,0.0,82.16515 +2023-02-08 02:00:00,5.7384667,8.329466,247.4569,265.17932,-1.7235,966.2318,0.0,83.66799 +2023-02-08 03:00:00,6.1220913,8.381527,231.63248,250.48404,-2.0235,966.2667,0.0,84.57915 +2023-02-08 04:00:00,6.519202,9.078547,228.73149,243.15279,-2.3735,966.1967,0.0,86.1438 +2023-02-08 05:00:00,6.280127,9.138927,232.76509,246.80139,-2.5235002,965.9776,0.0,86.12771 +2023-02-08 06:00:00,6.0605283,8.7464285,232.3737,247.8336,-2.6235,965.6739,0.0,85.79301 +2023-02-08 07:00:00,6.5053825,9.278469,224.9999,239.56584,-2.8735,965.6241,0.0,86.41565 +2023-02-08 08:00:00,6.363961,9.689685,224.9999,238.9349,-2.7735002,965.2658,0.0,85.45332 +2023-02-08 09:00:00,6.811754,10.604244,220.23628,231.50893,-2.5235002,964.9379,0.0,84.519936 +2023-02-08 10:00:00,7.140028,11.248555,217.03047,226.80113,-2.4235,964.76874,0.0,83.896645 +2023-02-08 11:00:00,7.6275816,11.960352,214.31514,222.62813,-2.7235,964.70886,0.0,84.816 +2023-02-08 12:00:00,6.4899926,10.323759,213.6901,224.9999,-2.8735,963.4503,0.0,83.20826 +2023-02-08 13:00:00,6.9771056,10.621204,207.29948,217.73311,-3.4235,963.0563,0.0,83.13763 +2023-02-08 14:00:00,7.515318,11.819053,205.2011,212.2109,-3.3735,963.0664,0.0,81.886765 +2023-02-08 15:00:00,8.005623,12.812884,205.92485,209.96666,-1.9235,963.45074,0.0,80.85592 +2023-02-08 16:00:00,7.741447,11.957007,208.5513,212.36092,-0.4235,963.36896,0.0,81.37179 +2023-02-08 17:00:00,7.602631,12.296748,206.56499,211.36325,0.22649999,963.4962,0.0,83.59847 +2023-02-08 18:00:00,8.318654,12.5538845,207.18103,210.65059,1.1265,963.00977,0.0,81.886024 +2023-02-08 19:00:00,9.660228,14.152386,207.09547,209.64435,1.9764999,962.8906,0.0,81.10674 +2023-02-08 20:00:00,9.617692,13.958868,205.23279,208.21725,2.3265,962.29565,0.0,80.56605 +2023-02-08 21:00:00,9.167878,13.433167,206.56499,209.42737,2.4764998,961.3785,0.0,79.131905 +2023-02-08 22:00:00,8.732124,13.059863,203.6294,207.3498,2.3265,960.87646,0.0,79.39861 +2023-02-08 23:00:00,8.44334,12.776933,198.64963,202.55092,1.7765,960.2031,0.0,80.78258 +2023-02-09 00:00:00,7.3736014,11.359577,200.64706,206.11385,0.5265,959.5828,0.0,80.30658 +2023-02-09 01:00:00,7.3054776,11.384639,199.17911,202.73604,-0.123500004,959.7399,0.0,82.02031 +2023-02-09 02:00:00,6.9079666,10.825894,202.1095,205.14474,-0.7235,958.9603,0.0,83.17005 +2023-02-09 03:00:00,7.088018,11.2272,196.38962,199.24197,-0.9235,958.3539,0.0,83.14459 +2023-02-09 04:00:00,6.8308125,10.770329,197.90454,201.80147,-0.9235,957.6921,0.0,81.6066 +2023-02-09 05:00:00,6.5795135,10.018482,204.22774,207.33228,-0.9735,957.2093,0.0,82.21205 +2023-02-09 06:00:00,5.0931325,8.065978,226.5911,227.00955,-2.2235,958.09753,0.0,85.19403 +2023-02-09 07:00:00,2.86007,4.548626,216.46933,236.65927,-4.3735,958.2353,0.0,88.92974 +2023-02-09 08:00:00,4.031129,5.056679,223.99501,245.46228,-3.8235002,957.6842,0.0,88.305336 +2023-02-09 09:00:00,3.901282,4.661545,268.53122,292.71445,-3.9735,957.55975,0.0,89.30308 +2023-02-09 10:00:00,4.743417,6.220129,304.69522,323.49847,-2.9235,957.486,0.0,87.72425 +2023-02-09 11:00:00,6.723095,10.123734,329.62094,336.72708,-3.2235,957.8043,0.0,89.029945 +2023-02-09 12:00:00,8.732124,13.301503,330.49936,336.5186,-4.3234997,957.39484,0.0,91.68023 +2023-02-09 13:00:00,9.588014,14.176742,329.9587,333.61575,-4.3234997,958.33966,0.0,93.78901 +2023-02-09 14:00:00,11.452948,16.05802,331.86874,334.55203,-4.0235,958.87256,0.0,95.9508 +2023-02-09 15:00:00,11.047625,17.272232,332.50723,335.3639,-3.8235002,959.5741,0.0,95.95743 +2023-02-09 16:00:00,13.10458,16.560495,334.21713,335.7565,-2.9235,960.4159,0.0,94.56371 +2023-02-09 17:00:00,15.494515,18.6325,336.41296,336.5995,-1.7235,961.5051,0.0,91.85147 +2023-02-09 18:00:00,15.9890585,19.112822,338.73087,339.47894,-1.0735,962.9573,0.0,93.949905 +2023-02-09 19:00:00,13.81919,17.33032,341.43384,342.19226,-0.6235,963.6133,0.0,88.92269 +2023-02-09 20:00:00,14.402778,18.075397,334.5025,335.13632,-1.0235,964.5744,0.0,90.88392 +2023-02-09 21:00:00,14.82228,18.930662,330.49493,331.26886,-2.1235,965.58484,0.0,88.46045 +2023-02-09 22:00:00,13.6003685,17.59659,328.53055,328.47787,-3.4735,967.10974,0.0,87.671265 +2023-02-09 23:00:00,14.494138,19.31968,332.02063,333.56766,-4.8735,968.5263,0.0,77.068405 +2023-02-10 00:00:00,14.19049,19.277449,330.90628,332.50455,-8.7235,969.7116,0.0,79.20815 +2023-02-10 01:00:00,13.911866,19.096073,332.14563,333.5692,-9.4735,970.87427,0.0,75.653656 +2023-02-10 02:00:00,13.595588,18.788294,333.81195,334.79892,-10.3235,971.9205,0.0,72.7732 +2023-02-10 03:00:00,13.465882,18.753666,334.95743,335.75833,-10.8735,972.4634,0.0,72.66262 +2023-02-10 04:00:00,12.795312,17.951323,335.03723,336.0051,-11.2235,972.9543,0.0,73.495224 +2023-02-10 05:00:00,12.042009,17.161877,335.9892,337.02057,-11.5735,973.16174,0.0,73.42618 +2023-02-10 06:00:00,10.783784,15.769908,335.3362,336.8491,-11.8235,973.2965,0.0,73.98672 +2023-02-10 07:00:00,9.752949,14.716658,331.8585,334.65387,-12.1235,973.4201,0.0,74.85352 +2023-02-10 08:00:00,8.832327,13.685028,329.37006,333.06055,-12.3735,973.6491,0.0,75.429695 +2023-02-10 09:00:00,7.793587,12.394353,326.5138,331.5741,-12.4735,973.53284,0.0,75.098564 +2023-02-10 10:00:00,6.5604877,10.754069,322.43134,329.8587,-12.4735,973.0613,0.0,76.35572 +2023-02-10 11:00:00,6.0876923,10.068764,317.66306,325.52072,-12.3735,973.46045,0.0,78.94292 +2023-02-10 12:00:00,4.6400433,7.5604234,307.11694,322.52374,-13.3735,973.5254,0.0,79.769005 +2023-02-10 13:00:00,4.3011627,6.236986,287.5925,311.0994,-13.5735,973.7644,0.0,79.73737 +2023-02-10 14:00:00,4.7169905,6.296825,265.13556,290.44962,-12.9735,973.98987,0.0,78.84486 +2023-02-10 15:00:00,4.876474,6.9584484,254.53873,277.4313,-10.8735,974.0674,0.0,80.48526 +2023-02-10 16:00:00,5.6797886,8.5,243.88614,261.20267,-8.5234995,974.19025,0.0,83.11999 +2023-02-10 17:00:00,5.240229,10.440307,228.09415,253.30067,-6.2735,974.4724,0.0,88.418205 +2023-02-10 18:00:00,6.453681,11.868025,229.39879,249.27435,-4.3234997,974.30725,0.0,87.5887 +2023-02-10 19:00:00,7.0724816,12.490796,226.14568,240.76727,-3.1735,973.69135,0.0,86.71135 +2023-02-10 20:00:00,8.062258,10.696261,223.99501,228.41104,-2.8735,973.18494,0.0,84.478294 +2023-02-10 21:00:00,7.710383,13.514807,213.89621,227.0989,-2.8235002,972.53326,0.0,84.80433 +2023-02-10 22:00:00,9.208692,13.124405,214.3804,220.36446,-2.9735,972.0305,0.0,78.88008 +2023-02-10 23:00:00,9.596354,14.103191,213.5245,218.08882,-3.8235002,971.2912,0.0,73.463135 +2023-02-11 00:00:00,10.1789,15.383758,213.37785,218.13635,-4.7735,970.71954,0.0,70.46893 +2023-02-11 01:00:00,10.707007,16.120794,212.79953,217.43864,-4.6235,970.1835,0.0,69.13185 +2023-02-11 02:00:00,11.438969,16.949926,211.04959,214.90901,-4.3234997,969.2997,0.0,68.388306 +2023-02-11 03:00:00,12.107848,17.584084,210.80138,213.87085,-4.1735,968.5746,0.0,66.83106 +2023-02-11 04:00:00,12.455521,18.146349,212.54173,215.35423,-3.9735,968.0481,0.0,64.809654 +2023-02-11 05:00:00,13.091983,18.901058,214.41843,217.47626,-3.7235,967.6262,0.0,62.368492 +2023-02-11 06:00:00,13.542895,19.287561,215.68532,218.47426,-3.6735,967.25824,0.0,62.380962 +2023-02-11 07:00:00,13.322536,19.06856,217.98819,220.9597,-3.7735002,966.95465,0.0,63.0972 +2023-02-11 08:00:00,12.98345,18.67244,220.31403,223.69812,-3.9235,966.8298,0.0,63.80982 +2023-02-11 09:00:00,12.822247,18.38532,221.52211,225.44067,-4.1235,966.5059,0.0,64.773926 +2023-02-11 10:00:00,12.6732,18.462122,222.12157,226.53624,-4.2235,966.3913,0.0,65.51938 +2023-02-11 11:00:00,12.589679,18.33712,223.71275,227.8735,-4.3234997,965.9928,0.0,66.27372 +2023-02-11 12:00:00,11.18034,16.648123,227.17476,231.34018,-4.5235,965.7635,0.0,69.425095 +2023-02-11 13:00:00,10.971327,16.36704,227.58585,231.44951,-4.6735,965.9219,0.0,69.939445 +2023-02-11 14:00:00,10.6775465,15.890248,225.3794,229.59433,-4.6735,965.9219,0.0,71.04407 +2023-02-11 15:00:00,10.606602,15.446683,224.9999,228.6746,-3.6735,966.02985,0.0,72.92522 +2023-02-11 16:00:00,10.751744,15.033297,226.50737,229.31612,-2.3235002,966.39575,0.0,74.883255 +2023-02-11 17:00:00,9.972462,16.570152,223.7812,231.12418,-1.1735,966.53015,0.0,78.56684 +2023-02-11 18:00:00,10.253292,14.6102705,224.6049,229.44133,-0.6235,965.8826,0.0,78.35936 +2023-02-11 19:00:00,9.903535,13.300376,223.36346,226.82794,-0.07350001,965.0452,0.0,79.03337 +2023-02-11 20:00:00,8.521151,14.6,215.92859,228.888,0.17650001,964.33765,0.0,82.9766 +2023-02-11 21:00:00,9.2800865,13.013838,217.11694,223.75471,0.47650003,963.7345,0.0,82.70923 +2023-02-11 22:00:00,9.24554,12.8082,218.85338,222.78522,0.47650003,963.7345,0.0,79.41178 +2023-02-11 23:00:00,9.013878,12.944882,220.04967,223.43498,-0.07350001,963.343,0.0,78.73941 +2023-02-12 00:00:00,7.9511003,12.165525,219.89778,223.66785,-0.6235,963.04596,0.0,77.19304 +2023-02-12 01:00:00,7.640026,11.909659,217.01997,220.91429,-0.9235,962.6086,0.0,75.41939 +2023-02-12 02:00:00,7.267049,11.46342,214.34616,218.26956,-1.1235,961.8126,0.0,74.533936 +2023-02-12 03:00:00,7.156116,11.300443,213.02388,216.36296,-1.2735,961.31036,0.0,74.50652 +2023-02-12 04:00:00,7.324616,11.6400175,212.17119,216.96843,-1.3235,961.11163,0.0,74.215614 +2023-02-12 05:00:00,7.200694,11.536464,217.66568,222.54091,-1.3235,960.828,0.0,73.09801 +2023-02-12 06:00:00,7.0092793,11.327842,222.10866,227.86247,-1.6735,960.66406,0.0,73.309525 +2023-02-12 07:00:00,7.0035706,11.21606,223.26433,230.06367,-2.0735002,960.3014,0.0,74.07661 +2023-02-12 08:00:00,6.8410525,10.615084,217.87505,227.29063,-2.6735,959.6151,0.0,75.97334 +2023-02-12 09:00:00,5.220153,8.523497,233.56905,238.92102,-3.6235,959.6142,0.0,78.77771 +2023-02-12 10:00:00,5.2325897,8.17435,243.9247,255.11368,-4.3234997,959.47345,0.0,80.81781 +2023-02-12 11:00:00,5.345091,8.0025,252.58194,268.56793,-4.8234997,959.3726,0.0,82.3188 +2023-02-12 12:00:00,3.9661064,5.742821,303.6901,324.92618,-5.3234997,959.27155,0.0,87.82764 +2023-02-12 13:00:00,4.243819,5.9908266,325.56094,345.4998,-6.1735,959.00385,0.0,91.55514 +2023-02-12 14:00:00,3.3120992,5.3037724,331.11353,2.1610355,-5.7735,958.70776,0.0,92.28848 +2023-02-12 15:00:00,3.8832977,5.4744864,325.4914,350.53775,-4.1235,959.51385,0.0,91.69358 +2023-02-12 16:00:00,4.8826222,6.296825,325.0079,339.55035,-2.7735002,960.06757,0.0,93.86652 +2023-02-12 17:00:00,5.1971145,6.5924196,329.98172,337.71436,-2.2735002,960.167,0.0,97.44317 +2023-02-12 18:00:00,5.333854,6.854196,329.589,336.8014,-1.8735,960.0573,0.0,98.90064 +2023-02-12 19:00:00,5.0447993,6.296825,320.63068,327.31946,-1.1735,959.3447,0.0,97.824554 +2023-02-12 20:00:00,4.1617303,5.8051705,305.21768,312.2072,0.3265,958.78735,0.0,91.98286 +2023-02-12 21:00:00,3.6235344,5.800862,297.97937,305.88223,1.3265,958.22437,0.0,88.12274 +2023-02-12 22:00:00,3.310589,5.6302752,295.01685,303.40784,1.4765,957.875,0.0,86.23314 +2023-02-12 23:00:00,4.1773195,6.708204,281.0409,296.56497,0.6265,957.6161,0.0,84.57612 +2023-02-13 00:00:00,5.1623635,8.1939,278.91486,293.7495,-0.6735,957.45715,0.0,78.05828 +2023-02-13 01:00:00,5.6142673,9.080197,265.91446,281.43365,-0.9235,957.0302,0.0,73.45168 +2023-02-13 02:00:00,7.8313475,12.657014,264.8719,275.44025,-0.3735,956.4758,0.0,69.24132 +2023-02-13 03:00:00,9.108788,14.558159,267.4832,275.12308,-0.22350001,956.50494,0.0,70.06374 +2023-02-13 04:00:00,8.908984,14.204225,272.5733,279.7275,-0.4735,956.8345,0.0,72.98416 +2023-02-13 05:00:00,8.807384,13.82353,282.45822,289.87695,-0.5235,956.9193,0.0,74.924545 +2023-02-13 06:00:00,8.39345,13.152947,291.6747,298.12363,-0.6735,957.1735,0.0,75.180115 +2023-02-13 07:00:00,7.602631,11.981652,296.56497,303.42484,-1.3235,957.32996,0.0,76.4965 +2023-02-13 08:00:00,6.664833,10.580171,297.7184,306.54507,-2.1235,957.5501,0.0,77.528694 +2023-02-13 09:00:00,5.9093146,9.462558,293.9625,305.53775,-2.7735002,957.3267,0.0,77.71714 +2023-02-13 10:00:00,5.1264024,8.241965,290.55612,305.6186,-3.3735,957.0183,0.0,77.91647 +2023-02-13 11:00:00,4.4271884,6.981404,288.43503,308.01898,-3.9235,956.71924,0.0,77.82636 +2023-02-13 12:00:00,3.8327537,5.5226803,285.12405,312.06424,-5.2735,956.2586,0.0,79.12781 +2023-02-13 13:00:00,3.238827,3.3286633,261.11942,302.7352,-6.4235,955.7419,0.0,80.19483 +2023-02-13 14:00:00,4.89183,3.920459,220.85529,232.25313,-5.9735,956.02216,0.0,82.804474 +2023-02-13 15:00:00,4.4418464,5.3823786,211.18492,215.16652,-3.8235002,956.0778,0.0,83.40397 +2023-02-13 16:00:00,5.5946403,8.099383,208.85556,212.90524,-1.3735,956.1855,0.0,83.711395 +2023-02-13 17:00:00,6.4257298,9.931767,200.97357,205.01686,0.026500002,955.8917,0.0,81.43423 +2023-02-13 18:00:00,7.788453,11.95408,195.6423,199.04132,1.2265,955.08374,0.0,80.40807 +2023-02-13 19:00:00,8.551023,13.193938,190.78426,194.03627,2.2765,953.8659,0.0,77.1004 +2023-02-13 20:00:00,9.650907,14.361058,190.14548,192.875,2.9264998,952.85425,0.0,76.36666 +2023-02-13 21:00:00,10.577333,15.463829,195.35019,198.08354,3.7765,951.7848,0.0,74.589645 +2023-02-13 22:00:00,11.406139,16.502728,205.44171,207.03078,4.1265,950.99866,0.0,73.576515 +2023-02-13 23:00:00,10.555094,15.608331,205.8367,207.05746,3.7765,950.1759,0.0,73.78004 +2023-02-14 00:00:00,10.492378,15.840454,202.40988,204.62355,3.6764998,949.49445,0.0,71.63948 +2023-02-14 01:00:00,10.373042,15.877342,199.13374,202.20352,3.3765,948.96484,0.0,72.636734 +2023-02-14 02:00:00,11.1400175,16.951696,196.15741,199.29015,3.5765,948.33984,0.0,72.409744 +2023-02-14 03:00:00,12.301626,18.223612,197.99318,200.22495,3.7765,948.0938,0.0,69.84769 +2023-02-14 04:00:00,13.132023,19.238762,200.50507,202.2992,4.0765,947.4875,0.0,65.92676 +2023-02-14 05:00:00,12.664912,18.553976,201.29742,202.83368,3.6764998,946.75,0.0,67.3087 +2023-02-14 06:00:00,12.969194,18.940962,199.83221,201.68913,3.4264998,946.4193,0.0,67.75179 +2023-02-14 07:00:00,13.157507,19.090572,199.53674,201.18842,3.2765,945.7285,0.0,68.97906 +2023-02-14 08:00:00,13.502963,19.428844,198.56923,200.48709,3.3765,944.9903,0.0,69.76546 +2023-02-14 09:00:00,13.8351,19.761833,201.18625,202.93213,3.4764998,944.72516,0.0,70.04271 +2023-02-14 10:00:00,13.50037,19.302332,202.19551,203.51042,3.7264998,944.20404,0.0,71.12738 +2023-02-14 11:00:00,12.712198,18.313383,192.72435,194.871,3.5265,943.5042,0.1,75.3636 +2023-02-14 12:00:00,9.654015,14.725828,193.17256,195.35754,3.8265,942.42474,0.0,74.05812 +2023-02-14 13:00:00,11.00409,16.34411,181.5622,184.21042,3.5765,941.6208,0.0,73.2073 +2023-02-14 14:00:00,11.6,16.923946,180.0,183.04831,3.8265,942.1408,0.0,73.25394 +2023-02-14 15:00:00,9.513149,14.000357,176.98727,180.40924,3.8265,941.85693,0.1,80.4881 +2023-02-14 16:00:00,8.881442,13.296616,172.23492,173.08887,3.9764998,941.50635,0.7,82.85691 +2023-02-14 17:00:00,7.930952,11.672618,166.13895,170.13426,3.4764998,941.0345,0.1,88.633385 +2023-02-14 18:00:00,7.8771825,11.648175,159.95467,164.05453,3.3765,939.97485,0.8,90.86815 +2023-02-14 19:00:00,7.5166483,11.047625,146.94417,152.50725,3.0265,938.3953,1.5,92.48071 +2023-02-14 20:00:00,7.2801104,10.907796,142.81522,148.49579,3.1764998,937.47736,1.8,93.15104 +2023-02-14 21:00:00,7.657676,11.371895,139.23648,145.75092,3.1764998,935.86865,1.4,92.48954 +2023-02-14 22:00:00,6.0811186,9.481033,135.0001,142.28395,2.9264998,935.0651,1.3,94.13957 +2023-02-14 23:00:00,4.031129,7.017834,136.00499,147.21573,2.5765,934.5267,1.5,95.819145 +2023-02-15 00:00:00,3.324154,4.8414874,111.16133,128.2902,1.3265,933.1573,1.0,100.0 +2023-02-15 01:00:00,1.8248286,3.214032,189.46225,185.35573,0.8765,933.167,1.1,99.64057 +2023-02-15 02:00:00,3.3421547,5.1739736,231.07245,228.91835,1.1765,933.31836,0.8,99.284065 +2023-02-15 03:00:00,5.3009434,7.48131,271.0809,278.45493,0.6765,933.69696,0.8,99.64 +2023-02-15 04:00:00,8.904493,12.601586,302.61923,305.9606,0.1265,934.63293,0.8,98.918564 +2023-02-15 05:00:00,10.429286,14.140015,304.452,306.95102,0.1265,935.5786,0.6,97.49279 +2023-02-15 06:00:00,12.560654,16.85052,310.1559,312.1135,0.026500002,936.97815,0.7,96.432556 +2023-02-15 07:00:00,14.035668,18.47187,310.9554,312.5866,-0.1735,938.64233,0.4,95.72588 +2023-02-15 08:00:00,16.519382,21.16908,310.8269,312.12796,-2.5235002,940.74115,0.5,92.83395 +2023-02-15 09:00:00,16.265915,21.14261,314.00375,315.19162,-4.4735,943.1929,0.5,92.72047 +2023-02-15 10:00:00,16.917742,21.834377,317.63525,319.0857,-5.5235,945.7232,0.2,89.51389 +2023-02-15 11:00:00,16.160446,20.890429,323.55545,324.9405,-6.8234997,947.8222,0.1,88.367294 +2023-02-15 12:00:00,14.393401,18.962332,319.2261,320.3492,-9.0234995,950.7706,0.1,87.46374 +2023-02-15 13:00:00,13.547324,17.041714,319.49054,320.23752,-9.6735,953.56165,0.0,86.01295 +2023-02-15 14:00:00,13.981773,17.976929,319.93216,320.64334,-10.5735,956.67596,0.0,84.879234 +2023-02-15 15:00:00,14.620875,18.280045,322.50302,323.00464,-11.5234995,958.5504,0.0,82.71804 +2023-02-15 16:00:00,14.420125,17.5,322.89163,323.13,-12.0234995,960.1421,0.0,82.311775 +2023-02-15 17:00:00,14.303147,17.167702,329.3111,329.55145,-11.9735,960.7187,0.0,82.65656 +2023-02-15 18:00:00,12.541929,14.541664,322.12494,322.26318,-11.4735,962.146,0.0,84.08361 +2023-02-15 19:00:00,12.043256,13.705838,324.46225,324.8024,-11.0234995,962.8077,0.0,85.514534 +2023-02-15 20:00:00,11.713667,13.325539,328.61685,328.8151,-10.5735,963.09216,0.0,84.53743 +2023-02-15 21:00:00,10.845276,12.677934,327.04257,327.56348,-10.2734995,964.28796,0.0,84.23436 +2023-02-15 22:00:00,10.135581,12.143311,329.13324,329.84552,-10.3735,965.30457,0.0,82.20692 +2023-02-15 23:00:00,8.994443,11.452948,331.4405,331.86874,-11.1235,965.99445,0.0,83.78712 +2023-02-16 00:00:00,8.823832,12.51599,336.63086,337.9435,-13.6235,966.11566,0.0,83.80828 +2023-02-16 01:00:00,8.5,12.539936,334.9424,336.5014,-14.3235,967.4714,0.0,82.33031 +2023-02-16 02:00:00,7.930952,11.810589,336.9911,338.64896,-14.6735,967.96045,0.0,80.911354 +2023-02-16 03:00:00,7.368175,11.168259,341.81085,343.34982,-14.9235,968.2823,0.0,79.85801 +2023-02-16 04:00:00,7.376313,11.303097,344.2679,346.70142,-15.1235,968.5211,0.0,79.82628 +2023-02-16 05:00:00,7.180529,10.965857,347.125,350.02234,-15.1735,968.32166,0.0,80.156166 +2023-02-16 06:00:00,7.35459,11.200893,348.23172,352.30405,-15.2734995,967.92255,0.0,80.14049 +2023-02-16 07:00:00,7.1847057,11.0367565,351.1933,355.32266,-15.1235,967.2957,0.0,79.82628 +2023-02-16 08:00:00,6.9720874,10.547511,351.75375,354.55975,-15.0234995,967.50635,0.0,80.17961 +2023-02-16 09:00:00,6.618912,10.107919,355.66776,357.7321,-14.9735,967.8002,0.0,80.18742 +2023-02-16 10:00:00,6.8007355,10.704205,359.1575,1.6059735,-15.4735,966.8416,0.0,79.77058 +2023-02-16 11:00:00,5.400926,8.657945,1.0608971,6.6324186,-15.2235,967.74493,0.0,78.47134 +2023-02-16 12:00:00,6.618912,9.972462,355.66776,6.9111314,-15.0735,966.9298,0.0,76.5276 +2023-02-16 13:00:00,6.3198104,9.924716,355.4623,4.0444055,-15.2235,967.368,0.0,76.17629 +2023-02-16 14:00:00,3.9115217,7.3082147,4.398633,16.699326,-14.9235,968.65936,0.0,78.19075 +2023-02-16 15:00:00,4.20119,6.964194,1.3638979,15.832451,-14.1735,969.57837,0.0,77.6627 +2023-02-16 16:00:00,5.423099,6.802941,354.71,1.6846573,-13.4235,969.7424,0.0,79.09975 +2023-02-16 17:00:00,5.707889,6.500769,356.98727,359.11862,-12.4235,969.86536,0.0,80.58003 +2023-02-16 18:00:00,6.3788714,7.170077,350.98074,351.983,-11.3235,969.91376,0.0,82.409004 +2023-02-16 19:00:00,6.5924196,7.496666,350.39487,350.78906,-10.5234995,969.70746,0.0,83.5259 +2023-02-16 20:00:00,6.6219335,7.4464755,345.12427,345.21722,-10.0234995,969.62537,0.0,81.92473 +2023-02-16 21:00:00,6.9857,7.970571,336.3706,336.32944,-9.9235,969.64655,0.0,82.601166 +2023-02-16 22:00:00,6.6730804,7.9259067,330.3617,330.5242,-10.2235,969.7714,0.0,80.58333 +2023-02-16 23:00:00,6.074537,8.386298,327.09476,329.15347,-10.9735,969.9887,0.0,82.45733 +2023-02-17 00:00:00,5.905929,9.033826,331.69934,333.71866,-13.5234995,970.2863,0.0,82.100815 +2023-02-17 01:00:00,5.9506307,9.377633,335.15762,338.08508,-14.2734995,970.87646,0.0,82.681984 +2023-02-17 02:00:00,5.6462374,9.013878,337.06787,340.55988,-15.0234995,971.08826,0.0,83.274826 +2023-02-17 03:00:00,5.0328918,8.104321,339.04413,344.24875,-15.8235,970.91077,0.0,82.11742 +2023-02-17 04:00:00,4.1785164,6.9231496,338.9624,349.17703,-16.6735,970.721,0.0,80.9513 +2023-02-17 05:00:00,3.5341196,5.7428217,334.8852,352.9988,-17.473501,970.63605,0.0,79.79142 +2023-02-17 06:00:00,3.3600597,4.8507733,323.47104,351.70294,-18.1735,970.3836,0.0,79.678505 +2023-02-17 07:00:00,2.8319604,3.8118236,317.86246,355.48608,-18.8735,970.4131,0.0,79.21807 +2023-02-17 08:00:00,2.158703,1.5033296,283.39252,356.186,-19.1235,970.07367,0.0,79.17659 +2023-02-17 09:00:00,2.9529645,0.9433981,241.69934,212.00534,-19.1735,969.7799,0.0,79.51562 +2023-02-17 10:00:00,3.6124785,3.352611,221.63345,197.35411,-19.073502,969.5201,0.0,80.23028 +2023-02-17 11:00:00,4.2201896,5.500909,216.32692,207.03078,-19.073502,969.5201,0.0,79.18492 +2023-02-17 12:00:00,5.4120235,8.363014,207.51192,206.25859,-17.8735,968.9441,0.0,78.01926 +2023-02-17 13:00:00,6.2241464,9.811218,203.6821,209.9621,-17.1735,968.2536,0.0,77.13589 +2023-02-17 14:00:00,6.894201,11.063906,203.9625,209.80902,-16.4235,967.8559,0.0,74.982346 +2023-02-17 15:00:00,7.8549347,12.612692,201.66602,207.37762,-14.2235,967.5878,0.0,72.28087 +2023-02-17 16:00:00,7.589466,14.089003,198.43504,205.65562,-11.6735,967.57446,0.0,75.55928 +2023-02-17 17:00:00,8.448077,15.443446,196.50444,204.0755,-9.1235,967.45624,0.0,76.02329 +2023-02-17 18:00:00,8.664871,13.223085,198.85326,202.68657,-6.4735,966.8755,0.0,77.40164 +2023-02-17 19:00:00,9.167878,12.432617,193.88469,196.83176,-4.2735,965.62494,0.0,78.06967 +2023-02-17 20:00:00,8.786353,12.349089,191.82146,195.49933,-2.4735,964.2864,0.0,76.59035 +2023-02-17 21:00:00,8.0062475,15.543809,189.3446,201.11697,-1.2735,963.1067,0.0,80.64555 +2023-02-17 22:00:00,9.76934,13.863622,202.89058,206.56499,-0.4735,962.697,0.0,74.0925 +2023-02-17 23:00:00,9.720083,14.417004,216.6342,219.65288,-1.1735,962.4647,0.0,70.66868 +2023-02-18 00:00:00,9.6208105,14.718696,223.31535,227.20262,-2.5735002,961.80865,0.0,72.30034 +2023-02-18 01:00:00,8.987213,14.320964,235.42574,238.41876,-2.6735,962.0726,0.0,74.53367 +2023-02-18 02:00:00,8.324061,13.669309,241.27977,247.18665,-3.0235002,962.0969,0.0,76.203476 +2023-02-18 03:00:00,7.539231,12.592855,248.19853,257.61926,-3.3735,962.0269,0.0,75.850365 +2023-02-18 04:00:00,6.868042,11.535164,253.93994,265.52518,-3.7235,962.24005,0.0,74.91624 +2023-02-18 05:00:00,6.6940274,11.407015,256.17133,267.99048,-4.0235,962.5576,0.0,74.572174 +2023-02-18 06:00:00,6.207254,10.751744,267.22986,279.63748,-4.2235,963.0843,0.0,74.24656 +2023-02-18 07:00:00,5.9008474,9.848858,269.029,282.9074,-4.2735,963.3573,0.0,74.815704 +2023-02-18 08:00:00,5.10392,8.28734,272.2457,289.74692,-4.7735,963.53955,0.0,77.3852 +2023-02-18 09:00:00,4.3,6.484597,270.0,296.56497,-5.4735,963.3971,0.0,80.02529 +2023-02-18 10:00:00,3.733631,4.7885275,262.30405,298.70584,-6.5235,962.99335,0.0,82.086784 +2023-02-18 11:00:00,3.5341196,3.1320918,244.8852,286.6993,-7.4235,962.9021,0.0,83.5923 +2023-02-18 12:00:00,2.184033,1.5264337,254.05453,328.39255,-7.5734997,962.6821,0.0,85.56948 +2023-02-18 13:00:00,1.3601471,0.72801095,216.02747,74.054535,-3.8235002,963.1648,0.0,78.142845 +2023-02-18 14:00:00,3.748333,3.3941126,170.78905,135.0001,-6.4735,962.53125,0.0,85.02898 +2023-02-18 15:00:00,3.6878178,5.714018,167.4712,147.14429,-4.3735,962.7704,0.0,87.25018 +2023-02-18 16:00:00,4.669047,8.095677,170.13426,162.01257,-1.7735,963.1021,0.0,87.83398 +2023-02-18 17:00:00,5.0,8.602325,163.73972,162.40749,-0.6235,962.5732,0.0,88.26802 +2023-02-18 18:00:00,5.2924476,8.37735,157.79648,156.80139,0.17650001,961.59503,0.0,87.694016 +2023-02-18 19:00:00,4.031129,9.693296,156.61476,158.19853,0.7765,960.199,0.0,90.351425 +2023-02-18 20:00:00,3.9962482,9.347192,148.29861,153.98328,1.8265,958.69916,0.0,88.809425 +2023-02-18 21:00:00,4.90408,8.381527,140.79282,144.22383,2.4764998,957.2155,0.0,82.0667 +2023-02-18 22:00:00,4.9497476,8.655634,135.0001,139.68597,2.3765,956.34485,0.0,79.69648 +2023-02-18 23:00:00,4.6690474,8.2328615,133.26433,139.92717,1.8265,955.48267,0.0,78.74337 +2023-02-19 00:00:00,4.763402,8.249242,140.9645,149.39368,-0.5735,955.0185,0.0,80.14557 +2023-02-19 01:00:00,4.4777226,7.9479556,150.57263,158.60013,-1.7735,954.5941,0.0,79.366394 +2023-02-19 02:00:00,4.2720017,7.1449285,159.44388,173.57135,-2.7235,953.55615,0.0,79.522316 +2023-02-19 03:00:00,4.5,7.615773,180.0,193.67133,-3.0235002,952.64606,0.0,78.2721 +2023-02-19 04:00:00,4.0718546,7.0213957,204.67685,215.7275,-3.7235,952.1291,0.0,79.36888 +2023-02-19 05:00:00,4.5803933,7.582216,216.11943,228.74309,-3.9735,951.79584,0.0,79.9424 +2023-02-19 06:00:00,5.0328918,8.521151,220.97165,234.07141,-3.7735002,951.5522,0.0,79.666306 +2023-02-19 07:00:00,5.060632,9.075792,240.39565,251.36533,-3.8235002,951.8257,0.0,80.5807 +2023-02-19 08:00:00,5.345091,9.552486,252.58194,263.9911,-3.7735002,951.83563,0.0,80.897354 +2023-02-19 09:00:00,5.6008925,10.099999,271.023,281.42114,-3.6735,952.23346,0.0,80.911766 +2023-02-19 10:00:00,5.99333,10.543718,295.7099,305.34827,-3.7235,952.6961,0.0,80.904564 +2023-02-19 11:00:00,6.360031,11.034492,306.68982,313.53125,-3.7235,953.452,0.0,81.21485 +2023-02-19 12:00:00,6.8767724,11.542097,319.1277,322.0379,-3.7735002,954.198,0.0,85.01597 +2023-02-19 13:00:00,6.6843095,11.3811245,321.07245,323.93552,-4.2735,955.0428,0.0,85.937874 +2023-02-19 14:00:00,7.242237,11.7046995,324.5542,326.853,-3.9235,956.2468,0.0,87.96132 +2023-02-19 15:00:00,8.149233,10.917875,330.60403,331.55716,-3.3235002,957.1228,0.0,90.37487 +2023-02-19 16:00:00,8.1412525,10.420173,332.176,333.18912,-3.2235,958.0878,0.0,94.19673 +2023-02-19 17:00:00,7.5802374,9.278469,329.03632,329.56583,-3.2235,958.6549,0.0,93.14257 +2023-02-19 18:00:00,7.017834,8.321658,327.21573,327.26477,-3.0235002,959.1672,0.0,92.111565 +2023-02-19 19:00:00,6.4202805,7.7801027,322.59457,322.83545,-2.7735002,959.31146,0.0,89.068794 +2023-02-19 20:00:00,6.1073728,7.3109503,320.31458,319.9938,-2.7235,959.22705,0.0,84.496155 +2023-02-19 21:00:00,5.8898215,7.017834,319.82083,319.0446,-3.2235,959.5999,0.0,82.53323 +2023-02-19 22:00:00,4.967897,6.0959,319.89914,318.991,-4.1235,959.60834,0.0,82.09767 +2023-02-19 23:00:00,3.720215,5.5803227,323.74606,323.74606,-5.0734997,959.6056,0.0,84.21275 +2023-02-20 00:00:00,3.001666,4.750789,330.01843,329.65683,-8.2734995,959.23285,0.0,86.50874 +2023-02-20 01:00:00,2.5806975,3.9661064,324.46225,326.3099,-9.6235,959.23444,0.0,87.75251 +2023-02-20 02:00:00,2.385372,3.3286633,326.97614,327.26477,-10.6235,958.5525,0.0,88.71665 +2023-02-20 03:00:00,1.6155494,2.1954498,291.80148,300.06848,-10.8235,958.1328,0.0,90.13614 +2023-02-20 04:00:00,0.7,1.2529964,180.0,208.61037,-9.5735,957.64075,0.0,91.31784 +2023-02-20 05:00:00,2.7802877,3.49285,142.3057,166.75948,-12.0234995,956.18036,0.0,91.510826 +2023-02-20 06:00:00,3.3837848,5.1195703,145.84026,167.59259,-11.3735,955.56354,0.0,89.36694 +2023-02-20 07:00:00,3.9115214,6.258594,147.52882,167.074,-10.8735,954.82,0.0,86.225685 +2023-02-20 08:00:00,5.056679,8.434453,155.4623,169.75597,-10.4235,953.688,0.0,86.27531 +2023-02-20 09:00:00,6.0876927,10.4388685,165.73546,175.05412,-8.7235,953.0037,0.0,88.18893 +2023-02-20 10:00:00,6.6753273,11.407015,171.38443,177.9905,-7.2735,952.07446,0.0,89.01781 +2023-02-20 11:00:00,7.802564,12.955693,181.46877,185.31445,-6.0734997,951.27954,0.0,87.755135 +2023-02-20 12:00:00,7.400676,11.761377,180.7742,185.85593,-4.6735,950.8057,0.0,87.88998 +2023-02-20 13:00:00,7.81025,12.808201,193.32454,197.72772,-4.6235,949.9654,0.0,87.89475 +2023-02-20 14:00:00,7.653757,12.287392,208.90909,213.04341,-3.8735,949.8314,0.0,87.96606 +2023-02-20 15:00:00,7.420243,11.66919,217.33327,223.95847,-2.6235,949.60614,0.0,88.74786 +2023-02-20 16:00:00,5.9413805,12.179491,223.63614,237.74532,-1.3735,949.5676,0.0,89.52023 +2023-02-20 17:00:00,7.4886575,12.753431,235.88548,245.44452,-0.7235,949.505,0.0,84.103874 +2023-02-20 18:00:00,6.664083,12.349089,244.20403,254.50066,0.17650001,949.58453,0.0,84.83582 +2023-02-20 19:00:00,6.6490602,12.432618,257.84506,265.8488,1.2765,949.6068,0.0,84.34276 +2023-02-20 20:00:00,8.338465,12.035364,275.50537,278.6013,1.7765,949.6078,0.0,83.17964 +2023-02-20 21:00:00,8.420215,11.985408,285.852,287.9815,1.6265,949.9576,0.0,84.384026 +2023-02-20 22:00:00,7.877182,11.200446,298.84256,299.9986,0.8765,950.38135,0.0,84.6053 +2023-02-20 23:00:00,7.184706,10.962208,304.7961,305.72006,-0.5235,951.1513,0.0,85.06982 +2023-02-21 00:00:00,6.6850576,10.280078,304.641,307.09293,-1.5735,951.60834,0.0,87.200195 +2023-02-21 01:00:00,9.849365,12.955694,318.7047,317.8156,-3.5735002,953.4819,0.1,87.329895 +2023-02-21 02:00:00,9.730879,13.418272,309.57938,309.8602,-6.4235,954.51416,0.0,82.42208 +2023-02-21 03:00:00,10.307764,14.775655,309.09384,309.50766,-9.2734995,955.15485,0.0,80.40214 +2023-02-21 04:00:00,10.198039,15.425304,311.82007,312.89832,-12.0735,955.7924,0.0,78.66703 +2023-02-21 05:00:00,9.78366,14.227087,310.8553,312.4362,-13.7235,956.3821,0.0,76.77 +2023-02-21 06:00:00,9.350936,13.373482,311.53168,312.8789,-14.3735,956.7132,0.0,77.30208 +2023-02-21 07:00:00,8.631338,12.24949,316.87787,317.9781,-14.7235,956.7314,0.0,78.22464 +2023-02-21 08:00:00,6.9310894,10.413933,316.16904,318.50363,-15.3235,956.78925,0.0,79.12197 +2023-02-21 09:00:00,5.841233,8.987213,308.0471,312.7454,-15.8235,956.6798,0.0,80.05404 +2023-02-21 10:00:00,5.660389,9.102198,302.00534,305.61093,-16.1735,956.69745,0.0,79.99875 +2023-02-21 11:00:00,4.816638,8.062258,311.63345,313.995,-16.4235,956.7365,0.0,79.618355 +2023-02-21 12:00:00,3.3600597,5.656854,306.52896,315.0001,-17.6235,956.75385,0.0,80.45851 +2023-02-21 13:00:00,2.7294688,4.924429,331.55716,330.8325,-17.6235,956.18866,0.0,80.80612 +2023-02-21 14:00:00,2.915476,4.440721,354.09393,352.23492,-17.223501,956.1829,0.0,79.83153 +2023-02-21 15:00:00,2.280351,2.4738634,15.255177,14.036275,-16.6235,956.22144,0.0,81.30538 +2023-02-21 16:00:00,2.505993,2.4166093,61.389645,65.55606,-15.9235,955.62134,0.0,82.8019 +2023-02-21 17:00:00,4.204759,4.3104525,92.72626,93.99084,-15.0234995,954.781,0.2,83.274826 +2023-02-21 18:00:00,5.1546097,5.440588,108.08354,107.10281,-14.2235,954.29443,0.7,84.4309 +2023-02-21 19:00:00,5.3225937,5.636488,115.60214,115.20109,-13.5234995,953.87915,1.0,83.4746 +2023-02-21 20:00:00,6.016644,6.4031243,105.42222,104.47034,-12.9235,952.4047,0.6,84.59279 +2023-02-21 21:00:00,6.9584484,7.8771825,97.43131,98.027145,-12.1735,951.33777,0.3,83.99472 +2023-02-21 22:00:00,7.542546,8.920201,83.911575,86.14327,-11.7734995,950.9508,0.1,85.07997 +2023-02-21 23:00:00,7.9246454,9.687621,79.824554,82.2882,-11.4235,950.9303,0.2,85.81578 +2023-02-22 00:00:00,7.291776,10.744765,64.84074,75.446396,-12.1235,951.9143,0.2,88.938965 +2023-02-22 01:00:00,8.100617,12.491998,61.2203,70.83974,-11.6235,952.30316,0.4,88.624405 +2023-02-22 02:00:00,7.9924965,12.738916,58.29862,67.86446,-11.3235,953.02686,0.5,89.01109 +2023-02-22 03:00:00,8.099383,11.98666,57.094753,64.2901,-11.0735,953.36273,0.6,89.393 +2023-02-22 04:00:00,7.8517513,12.480784,46.54811,56.437225,-11.0735,953.9288,0.6,89.7538 +2023-02-22 05:00:00,7.993122,11.682466,46.52072,51.952908,-10.9735,954.4213,0.7,89.40166 +2023-02-22 06:00:00,8.04301,12.731065,38.43733,46.27295,-11.0234995,954.59955,0.6,90.483215 +2023-02-22 07:00:00,8.440379,14.075866,36.326923,43.560776,-11.1235,954.5787,0.6,90.840256 +2023-02-22 08:00:00,8.514693,14.713939,40.236294,46.652256,-11.2235,954.84045,0.5,90.46755 +2023-02-22 09:00:00,9.265528,14.404513,34.89078,40.212933,-11.2734995,955.0186,0.8,89.73699 +2023-02-22 10:00:00,9.580188,14.816545,36.511147,40.894817,-11.4735,954.6933,0.7,89.35824 +2023-02-22 11:00:00,10.448445,14.591093,39.173653,41.666054,-11.7734995,955.0071,0.5,88.61047 +2023-02-22 12:00:00,11.063453,15.069506,40.601215,43.117744,-11.9235,955.54126,0.3,86.46044 +2023-02-22 13:00:00,12.31097,15.512898,46.97493,48.397232,-11.8735,955.92926,0.2,84.721725 +2023-02-22 14:00:00,11.810588,15.062869,43.970943,45.806843,-11.7734995,956.2334,0.1,85.42728 +2023-02-22 15:00:00,12.091733,15.138031,44.664974,46.60596,-11.3735,956.7899,0.2,85.127625 +2023-02-22 16:00:00,12.803515,16.263456,43.417698,44.999897,-11.0735,956.0044,0.2,84.134094 +2023-02-22 17:00:00,13.029965,15.945219,48.110928,48.814175,-10.5735,955.638,0.3,84.19686 +2023-02-22 18:00:00,12.452309,15.22268,46.9525,47.928944,-10.1735,955.1557,0.3,84.92722 +2023-02-22 19:00:00,11.980819,14.867751,37.5395,38.720016,-9.8735,954.18024,0.8,86.33557 +2023-02-22 20:00:00,12.233151,15.273507,44.668854,44.999897,-9.0234995,953.1303,1.2,86.08515 +2023-02-22 21:00:00,12.034119,15.628499,42.30566,44.222378,-8.6735,953.20276,0.9,86.46575 +2023-02-22 22:00:00,12.234787,16.14435,45.993378,48.01287,-8.3235,953.2749,0.8,86.845634 +2023-02-22 23:00:00,12.87012,16.843988,45.629517,47.40601,-8.1735,953.4949,0.7,86.17878 +2023-02-23 00:00:00,12.560654,16.352676,40.15594,42.27363,-9.1235,953.95905,1.2,87.10695 +2023-02-23 01:00:00,12.278843,16.137533,40.044487,42.4886,-9.0234995,954.35736,0.5,87.117256 +2023-02-23 02:00:00,11.985408,15.703503,40.601215,43.451904,-9.0735,954.5358,0.4,87.80655 +2023-02-23 03:00:00,11.186599,14.849242,42.101357,44.999897,-9.0735,954.7246,0.5,87.80655 +2023-02-23 04:00:00,10.448445,13.87732,39.173653,42.079212,-9.0735,955.3854,0.8,88.15562 +2023-02-23 05:00:00,9.93227,13.124405,32.249958,35.38552,-9.2734995,956.0987,1.0,89.19277 +2023-02-23 06:00:00,11.261438,14.775655,37.785812,39.50765,-9.4735,955.3018,1.2,89.53037 +2023-02-23 07:00:00,12.822247,16.76007,48.477886,50.32578,-9.5735,953.205,0.3,89.52186 +2023-02-23 08:00:00,10.280078,13.566504,52.907085,54.90411,-9.5735,954.3375,0.1,88.10781 +2023-02-23 09:00:00,8.910667,11.779643,45.909298,49.820835,-9.8235,954.474,0.6,88.08379 +2023-02-23 10:00:00,7.4060783,9.885848,34.548424,38.840843,-10.1735,955.6275,1.9,88.7578 +2023-02-23 11:00:00,7.66942,10.062305,22.217653,26.564985,-10.6235,956.1936,1.3,89.43191 +2023-02-23 12:00:00,7.5709977,10.096039,12.200457,16.10137,-11.4735,957.42914,0.6,88.99761 +2023-02-23 13:00:00,6.5115285,8.820431,349.3804,356.09958,-11.4235,959.4207,0.3,87.928474 +2023-02-23 14:00:00,8.508819,11.423222,336.44772,339.50256,-11.2734995,960.67914,0.3,89.01557 +2023-02-23 15:00:00,9.381365,12.611503,328.51257,333.63818,-12.2235,962.2686,0.2,88.20845 +2023-02-23 16:00:00,9.4541,11.717507,336.9605,338.47092,-12.0735,963.62134,0.1,85.74149 +2023-02-23 17:00:00,9.441399,11.136426,331.5349,332.74475,-12.0735,965.0362,0.1,84.007454 +2023-02-23 18:00:00,10.095543,11.926861,326.3099,326.97614,-12.3235,966.4916,0.0,82.608505 +2023-02-23 19:00:00,10.700467,12.640016,322.59457,323.03937,-12.8735,967.59875,0.0,81.85397 +2023-02-23 20:00:00,10.060318,12.0,322.6744,323.13004,-13.4235,968.8937,0.0,81.4362 +2023-02-23 21:00:00,9.80816,11.666191,320.79282,321.26346,-13.8735,969.9269,0.0,80.02336 +2023-02-23 22:00:00,10.0005,11.856222,319.46094,320.1326,-14.2734995,971.34784,0.0,79.29289 +2023-02-23 23:00:00,10.282509,12.355566,319.33835,320.25385,-15.0735,972.3969,0.0,78.829056 +2023-02-24 00:00:00,9.343447,11.759252,317.6026,318.44748,-17.1735,974.3776,0.0,79.155785 +2023-02-24 01:00:00,8.280701,11.245,312.5529,313.91916,-18.7735,976.275,0.0,79.23463 +2023-02-24 02:00:00,7.9195957,11.253888,315.0001,317.52087,-19.9235,977.2347,0.0,78.00391 +2023-02-24 03:00:00,7.5927596,11.121151,319.808,322.3057,-20.5235,978.2256,0.0,76.86753 +2023-02-24 04:00:00,6.981404,10.34698,321.981,325.23474,-21.1235,979.12115,0.0,76.41499 +2023-02-24 05:00:00,6.529931,9.7652445,319.9698,325.0079,-21.6735,979.5568,0.0,76.6557 +2023-02-24 06:00:00,5.869412,8.920201,315.6902,322.74463,-22.1735,980.28613,0.0,76.90894 +2023-02-24 07:00:00,5.5226803,8.348653,317.93573,325.73883,-22.6235,980.36816,0.0,77.17454 +2023-02-24 08:00:00,5.390733,8.268011,319.51407,327.84772,-23.0235,980.2734,0.0,77.45232 +2023-02-24 09:00:00,5.0537114,7.3756356,297.072,310.60123,-23.4235,981.1187,0.0,77.73319 +2023-02-24 10:00:00,5.6320515,8.273452,286.50443,296.56497,-23.5235,982.2239,0.0,77.00929 +2023-02-24 11:00:00,4.6647615,7.2801104,300.96368,307.18478,-23.0235,982.43726,0.0,76.403534 +2023-02-24 12:00:00,3.001666,6.762396,330.01843,336.46762,-23.4235,981.8712,0.0,79.16148 +2023-02-24 13:00:00,2.505993,5.8821764,331.38962,342.18103,-23.5235,981.9417,0.0,78.78497 +2023-02-24 14:00:00,2.720294,4.6173587,342.8972,355.03033,-23.6735,981.9057,0.0,78.75913 +2023-02-24 15:00:00,2.6,4.4271884,360.0,18.435053,-23.473501,981.4833,0.0,79.87621 +2023-02-24 16:00:00,1.603122,3.0,356.42374,36.86998,-22.8735,981.7201,0.0,81.06573 +2023-02-24 17:00:00,0.31622776,2.0024984,341.56494,87.13766,-21.5235,982.1334,0.0,82.73511 +2023-02-24 18:00:00,0.31622776,2.1400933,161.56496,127.40543,-20.473501,981.6261,0.0,82.5189 +2023-02-24 19:00:00,0.44721362,1.0816654,26.564985,123.6901,-19.6735,981.059,0.0,81.9121 +2023-02-24 20:00:00,0.5830952,1.0770329,149.03632,158.19853,-19.1235,980.3385,0.0,81.992744 +2023-02-24 21:00:00,1.2083046,1.421267,114.44395,129.28938,-18.573502,979.52313,0.0,81.71743 +2023-02-24 22:00:00,2.8160255,3.0805843,96.11541,103.13403,-18.2735,978.0847,0.0,82.11636 +2023-02-24 23:00:00,3.436568,3.7013512,81.6342,88.45188,-17.9235,977.03394,0.0,80.4116 +2023-02-25 00:00:00,2.751363,3.354102,109.09359,116.56499,-17.723501,976.7968,0.0,82.19572 +2023-02-25 01:00:00,2.4166093,3.4669871,114.44395,123.23173,-17.7735,976.7857,0.0,82.1885 +2023-02-25 02:00:00,0.5,1.3000001,143.13002,157.3801,-17.5235,976.7481,0.0,81.871666 +2023-02-25 03:00:00,3.9357338,5.8523498,152.78398,163.11313,-17.3735,974.9922,0.1,82.95478 +2023-02-25 04:00:00,2.408319,5.632051,184.76355,186.1154,-16.973501,974.61127,0.0,84.080284 +2023-02-25 05:00:00,4.909175,7.668768,183.50346,192.04256,-18.323502,972.5159,0.0,86.10407 +2023-02-25 06:00:00,5.846366,9.398404,192.8477,200.55612,-17.6235,971.3557,0.0,84.719666 +2023-02-25 07:00:00,5.742821,9.440339,215.07384,216.38445,-17.5235,970.53033,0.0,84.008766 +2023-02-25 08:00:00,6.6603303,10.960383,221.34767,225.36961,-17.573502,969.6712,0.0,82.927155 +2023-02-25 09:00:00,7.5663733,12.096694,224.46461,226.67479,-17.1735,968.81903,0.0,78.47729 +2023-02-25 10:00:00,7.9246454,12.457929,222.95459,227.60262,-17.073502,967.89923,0.0,75.18142 +2023-02-25 11:00:00,7.653757,11.9402685,208.90909,216.4861,-16.973501,966.3198,0.0,73.911705 +2023-02-25 12:00:00,8.229217,12.647924,205.94225,213.06186,-16.723501,965.43335,0.0,75.248215 +2023-02-25 13:00:00,8.723532,13.479243,205.09622,213.808,-15.8735,964.6797,0.0,75.08764 +2023-02-25 14:00:00,8.458132,13.035721,204.44394,214.05582,-14.5234995,964.12805,0.0,75.02559 +2023-02-25 15:00:00,8.683317,13.213629,208.92633,219.47243,-12.8735,963.7322,0.0,75.65104 +2023-02-25 16:00:00,8.780091,13.507404,217.13101,225.89977,-10.7734995,963.23816,0.0,75.415276 +2023-02-25 17:00:00,9.055386,13.84052,226.78989,232.63326,-8.9735,963.33453,0.0,75.13634 +2023-02-25 18:00:00,9.552486,14.1014185,227.12111,233.94266,-7.4735,962.7973,0.0,75.11198 +2023-02-25 19:00:00,9.269844,13.68247,227.1858,234.21884,-6.2735,961.9113,0.0,75.33135 +2023-02-25 20:00:00,9.068627,13.4033575,228.57643,234.41254,-5.3234997,961.34973,0.0,75.50308 +2023-02-25 21:00:00,8.70919,13.01768,235.76248,242.05705,-4.9235,961.1475,0.0,75.86984 +2023-02-25 22:00:00,9.404786,13.958868,234.958,241.78275,-4.8234997,960.60077,0.0,75.88756 +2023-02-25 23:00:00,8.868484,13.616534,240.2552,246.63564,-5.1735,960.341,0.0,76.41935 +2023-02-26 00:00:00,5.8549128,9.602083,262.1468,268.80655,-7.1735,960.49854,0.0,79.13878 +2023-02-26 01:00:00,5.141984,8.190848,283.49576,287.7714,-8.5234995,960.69135,0.0,81.15923 +2023-02-26 02:00:00,4.0521603,6.140033,285.75125,300.32352,-10.4235,960.1987,0.0,83.876656 +2023-02-26 03:00:00,4.119466,5.772348,264.4279,284.03625,-10.9235,959.62115,0.0,84.15297 +2023-02-26 04:00:00,4.101219,5.60803,268.60284,291.99118,-11.0234995,959.6943,0.0,83.79994 +2023-02-26 05:00:00,3.5057096,4.7010636,273.27042,299.29126,-12.0234995,959.38745,0.0,84.35799 +2023-02-26 06:00:00,3.352611,4.6669044,287.3541,315.0001,-12.2235,959.53326,0.0,83.98835 +2023-02-26 07:00:00,2.641969,3.8832977,299.4758,325.4914,-11.9235,959.4087,0.0,81.32005 +2023-02-26 08:00:00,1.4560219,3.0066593,344.05453,356.186,-8.1235,959.8304,0.0,71.7528 +2023-02-26 09:00:00,1.7262677,0.42426407,190.00792,135.0001,-8.6235,959.5376,0.0,73.11109 +2023-02-26 10:00:00,2.6076808,1.56205,184.39862,140.19447,-12.9735,958.2407,0.0,83.20299 +2023-02-26 11:00:00,3.51141,3.2649655,160.0168,130.0302,-13.7734995,958.16296,0.0,85.54456 +2023-02-26 12:00:00,5.215362,6.0307546,147.52882,139.70793,-12.6235,957.9385,0.0,84.977974 +2023-02-26 13:00:00,5.6824293,7.8492036,151.63104,145.90497,-12.3735,957.5206,0.0,81.92536 +2023-02-26 14:00:00,5.5946403,8.766413,151.14444,147.57895,-11.9235,957.8052,0.0,80.655716 +2023-02-26 15:00:00,6.155485,9.899495,133.02507,135.0001,-10.2235,957.5986,0.0,78.33044 +2023-02-26 16:00:00,7.262231,11.469089,128.2902,132.1728,-9.2235,957.0531,0.0,78.494965 +2023-02-26 17:00:00,7.7077885,12.734991,135.52557,136.90913,-8.4735,956.26495,0.0,78.61721 +2023-02-26 18:00:00,6.0207973,14.39618,138.36655,147.19304,-8.2235,955.0894,0.0,84.15345 +2023-02-26 19:00:00,5.5,14.406249,126.86999,148.62704,-7.3735,953.56476,0.0,89.70674 +2023-02-26 20:00:00,6.8600287,14.288807,126.70295,147.86714,-4.7235,952.1184,0.0,84.25543 +2023-02-26 21:00:00,8.63713,13.150285,132.18437,140.86388,-1.3735,950.8911,0.0,77.651955 +2023-02-26 22:00:00,8.645229,13.471451,131.24817,139.21428,-1.0235,949.4468,0.0,79.48072 +2023-02-26 23:00:00,8.993887,14.046352,131.84508,139.62,0.22649999,947.8919,0.0,76.75923 +2023-02-27 00:00:00,9.700516,15.21611,127.46063,132.60294,-1.3735,947.5822,0.0,78.83167 +2023-02-27 01:00:00,9.900505,15.438264,134.18164,138.1508,-1.0235,946.9885,0.0,75.97275 +2023-02-27 02:00:00,10.440306,15.784169,143.56905,147.41747,0.72650003,946.56946,0.0,72.6674 +2023-02-27 03:00:00,10.515226,15.541557,147.82137,150.30093,2.2765,945.63477,0.0,71.62819 +2023-02-27 04:00:00,8.955445,13.418271,150.57263,152.4802,1.9265,945.3791,0.0,75.359764 +2023-02-27 05:00:00,7.7006493,11.799152,142.38597,148.86975,1.8765,943.76154,0.0,81.986725 +2023-02-27 06:00:00,8.026207,12.074767,149.28117,153.43501,2.4764998,943.0233,0.0,87.27786 +2023-02-27 07:00:00,6.280127,10.111875,127.23492,135.40062,2.0265,941.4248,0.1,93.08875 +2023-02-27 08:00:00,5.7801385,9.24554,120.113655,128.85338,1.5765,940.6774,0.5,95.44159 +2023-02-27 09:00:00,4.8010416,7.4732857,88.80654,102.36248,1.2265,939.47626,1.0,97.51505 +2023-02-27 10:00:00,5.531727,8.302409,77.4712,88.61968,1.2765,938.72876,3.5,97.867516 +2023-02-27 11:00:00,5.8694124,8.852683,66.929565,76.27769,1.1765,938.3316,2.6,98.927795 +2023-02-27 12:00:00,5.1923018,7.068239,15.642312,25.114815,0.92649996,938.8516,3.1,99.64073 +2023-02-27 13:00:00,5.2201533,7.4706087,20.17074,27.937061,0.72650003,939.003,0.2,99.64013 +2023-02-27 14:00:00,5.001,7.28011,11.5345955,20.924576,0.5765,939.731,0.1,99.639694 +2023-02-27 15:00:00,4.90408,6.9354167,357.66275,5.7927017,0.3765,941.017,0.0,100.0 +2023-02-27 16:00:00,5.056679,6.551336,335.46228,347.66092,0.42650002,941.68866,0.0,99.63926 +2023-02-27 17:00:00,6.185467,8.64523,325.53912,330.173,0.42650002,942.25604,0.0,99.27966 +2023-02-27 18:00:00,7.864477,11.307077,318.60855,321.10275,0.47650003,943.4006,0.0,98.56451 +2023-02-27 19:00:00,8.132035,12.473972,315.49814,318.9006,0.3765,944.2326,0.0,98.92078 +2023-02-27 20:00:00,9.479451,12.549501,316.70978,319.2007,0.47650003,945.29205,0.0,97.14731 +2023-02-27 21:00:00,9.762172,12.452309,316.66025,316.95248,0.6765,946.46533,0.0,95.0633 +2023-02-27 22:00:00,10.044899,12.941793,313.3865,314.06088,-0.123500004,947.541,0.0,87.98894 +2023-02-27 23:00:00,11.186599,15.532225,317.89865,319.43878,-1.1235,948.48175,0.0,85.31854 +2023-02-28 00:00:00,10.845276,15.281688,327.04257,329.74365,-2.1235,950.1771,0.0,83.618164 +2023-02-28 01:00:00,9.486834,13.928389,325.30478,327.90744,-2.4735,951.71533,0.0,84.52586 +2023-02-28 02:00:00,8.848164,13.24009,325.59146,328.591,-2.3235002,952.501,0.0,82.964806 +2023-02-28 03:00:00,7.840918,12.1757965,322.25314,326.04886,-2.6735,953.4716,0.0,82.29377 +2023-02-28 04:00:00,6.9296465,11.2445545,315.0001,321.49933,-2.9735,953.9792,0.0,81.94157 +2023-02-28 05:00:00,5.7982755,9.263369,302.31958,314.56268,-3.3735,953.99426,0.0,80.03251 +2023-02-28 06:00:00,5.636488,8.720665,295.20108,310.81497,-3.8235002,954.0935,0.0,76.948715 +2023-02-28 07:00:00,5.5461698,8.861715,295.64096,310.8817,-4.1235,954.69507,0.0,72.27353 +2023-02-28 08:00:00,4.997999,7.81025,289.88525,309.8055,-4.6735,955.0571,0.0,68.580185 +2023-02-28 09:00:00,5.0159745,7.7833157,293.49857,312.91742,-4.9235,955.47925,0.0,67.45347 +2023-02-28 10:00:00,4.3011627,6.519202,287.5925,311.2685,-5.5734997,955.25354,0.0,69.47278 +2023-02-28 11:00:00,3.5014284,4.7801676,271.63654,307.34943,-6.6235,955.51215,0.0,73.21038 +2023-02-28 12:00:00,2.0024984,2.4413111,267.13766,325.0079,-4.7735,955.88715,0.0,66.16954 +2023-02-28 13:00:00,2.9410884,1.104536,234.6887,275.19434,-6.1735,955.69824,0.0,72.72086 +2023-02-28 14:00:00,1.7691805,0.3,227.29063,90.0,-5.2735,955.7863,0.0,74.33997 +2023-02-28 15:00:00,0.8,2.5961509,90.0,74.3577,-1.8235,956.286,0.0,61.39193 +2023-02-28 16:00:00,1.264911,2.5495098,108.43504,101.3099,-0.9735,957.1147,0.0,70.70962 +2023-02-28 17:00:00,2.9154758,4.5221677,120.96369,125.095894,-0.6235,956.99445,0.0,71.049675 +2023-02-28 18:00:00,4.6010866,6.5795135,132.3574,136.8476,-0.8235,956.38776,0.0,72.6418 +2023-02-28 19:00:00,4.4407206,7.4249578,125.837746,134.4544,-0.6235,955.2924,0.0,74.90655 +2023-02-28 20:00:00,3.8832974,7.03278,101.88863,119.84584,-0.3735,954.58466,0.0,80.77487 +2023-02-28 21:00:00,4.101219,7.17844,91.39715,108.68745,-0.5235,954.2717,0.0,86.020966 +2023-02-28 22:00:00,4.9365983,8.91852,96.980965,107.62239,-0.8235,953.5512,0.0,88.90539 +2023-02-28 23:00:00,6.1983867,9.752948,100.222115,105.46127,-1.0735,952.6517,0.0,81.891785 +2023-03-01 00:00:00,6.0440054,9.6208105,106.33612,110.69553,-1.7235,954.32056,0.1,80.88456 +2023-03-01 01:00:00,7.106335,10.973148,103.84072,108.60017,-1.5735,954.3499,0.1,82.75046 +2023-03-01 02:00:00,8.160883,12.242957,107.10281,110.06316,-1.4235,953.9068,0.1,82.770004 +2023-03-01 03:00:00,8.246211,12.336937,104.03627,106.96623,-1.3735,953.53827,0.0,82.466965 +2023-03-01 04:00:00,8.338465,12.224975,112.56705,113.62939,-1.3735,953.53827,0.0,83.711395 +2023-03-01 05:00:00,7.932213,11.567627,123.6901,124.78921,-1.3235,953.26465,0.0,84.6615 +2023-03-01 06:00:00,8.080223,11.947385,126.444534,128.8845,-1.5735,952.45917,0.0,83.686615 +2023-03-01 07:00:00,8.420214,12.650692,127.27825,129.22566,-2.3735,951.45135,0.0,82.33396 +2023-03-01 08:00:00,8.287943,12.573384,138.42397,140.48619,-2.6235,951.21295,0.0,81.37017 +2023-03-01 09:00:00,8.570297,12.863126,145.93904,149.64746,-2.5235002,950.193,0.0,81.38421 +2023-03-01 10:00:00,8.793179,13.146863,162.80138,166.80939,-2.3235002,949.3818,0.1,82.6522 +2023-03-01 11:00:00,8.459313,12.831991,186.78888,193.06155,-2.5235002,949.9095,0.0,84.83933 +2023-03-01 12:00:00,9.482615,14.124092,207.64589,215.4906,-1.0735,948.4917,0.0,76.539154 +2023-03-01 13:00:00,11.543396,16.62077,221.83955,226.2188,-0.3735,948.15454,0.0,71.36932 +2023-03-01 14:00:00,13.207574,17.786793,237.99466,239.97552,0.22649999,948.45935,0.0,83.29023 +2023-03-01 15:00:00,13.110301,17.267889,248.52315,250.72551,-0.4735,948.89154,0.0,87.956314 +2023-03-01 16:00:00,13.39888,16.209873,260.11594,260.77017,-0.4235,949.65784,0.0,90.26029 +2023-03-01 17:00:00,12.901549,15.700318,269.1118,269.63507,0.026500002,950.9742,0.0,90.95904 +2023-03-01 18:00:00,11.681181,13.389922,291.07278,291.00687,0.47650003,952.1016,0.0,85.81178 +2023-03-01 19:00:00,10.83005,13.160927,298.6948,299.09677,-0.07350001,953.5082,0.0,91.6212 +2023-03-01 20:00:00,11.967038,14.504137,311.95154,313.0443,-0.3235,954.68884,0.1,92.27954 +2023-03-01 21:00:00,13.296617,16.546904,313.7812,314.51038,-3.0235002,956.6154,0.1,92.457756 +2023-03-01 22:00:00,11.395174,14.449914,317.4896,318.36655,-4.2235,957.9822,0.0,91.339836 +2023-03-01 23:00:00,11.0,14.080128,323.13,323.37415,-4.7735,959.0993,0.0,90.60797 +2023-03-02 00:00:00,10.220078,12.764011,323.35425,324.5666,-6.4735,960.64246,0.0,90.478806 +2023-03-02 01:00:00,10.20833,12.794529,327.3997,328.42188,-7.0235,961.6627,0.0,90.08548 +2023-03-02 02:00:00,10.155294,12.448293,334.94904,336.3179,-7.2735,961.98895,0.0,86.95499 +2023-03-02 03:00:00,10.123734,12.924396,336.72708,338.19852,-8.5234995,962.67365,0.0,87.16865 +2023-03-02 04:00:00,9.192389,12.364869,337.6198,341.12537,-9.5234995,963.0305,0.0,87.76236 +2023-03-02 05:00:00,6.5764737,9.8792715,331.87634,338.6293,-10.3735,963.323,0.0,88.73953 +2023-03-02 06:00:00,5.162364,7.7833157,328.46524,339.70233,-10.9235,963.8668,0.0,87.62337 +2023-03-02 07:00:00,4.140048,6.040695,322.85324,340.6651,-11.2734995,963.79236,0.0,87.943146 +2023-03-02 08:00:00,3.9824615,5.565968,321.1155,342.216,-11.8235,963.86346,0.0,87.889145 +2023-03-02 09:00:00,3.6619666,4.9819674,325.0079,349.59235,-12.6735,963.3038,0.0,88.526344 +2023-03-02 10:00:00,3.6769552,5.2038445,337.6198,2.2025495,-13.2734995,962.2313,0.0,88.83409 +2023-03-02 11:00:00,2.745906,4.365776,349.50858,20.095322,-13.7235,961.8509,0.0,88.792625 +2023-03-02 12:00:00,1.360147,3.3615475,17.102825,59.620956,-14.3735,961.33276,0.0,88.36493 +2023-03-02 13:00:00,0.6324555,2.6172504,18.435053,83.41815,-12.8735,961.846,0.0,88.14565 +2023-03-02 14:00:00,0.64031243,1.8601075,231.34016,126.25393,-12.2235,962.07996,0.0,87.84968 +2023-03-02 15:00:00,1.7262677,3.0675724,190.00792,160.9743,-10.6735,962.69336,0.0,88.356224 +2023-03-02 16:00:00,2.886174,2.570992,165.96373,166.50426,-8.9735,962.8626,0.0,87.81634 +2023-03-02 17:00:00,3.6715121,3.6235344,150.64235,152.02061,-7.9735,962.03284,0.0,90.00911 +2023-03-02 18:00:00,4.909175,4.9396353,146.63362,148.24057,-6.9235,961.02246,0.0,91.149254 +2023-03-02 19:00:00,4.8259716,5.115662,174.05324,175.51547,-6.0734997,960.6298,0.0,93.69974 +2023-03-02 20:00:00,4.707441,4.7675986,192.26476,189.65982,-4.8735,959.74054,0.0,92.34449 +2023-03-02 21:00:00,3.0016663,3.6,178.0909,180.0,-3.2735002,958.92834,0.0,86.04681 +2023-03-02 22:00:00,1.6278821,2.1633308,132.5104,146.3099,-2.7235,958.2819,0.0,84.177376 +2023-03-02 23:00:00,3.1780496,3.940812,102.72436,125.70678,-3.6235,957.1573,0.0,89.332695 +2023-03-03 00:00:00,4.802083,6.6483083,121.372955,136.2188,-7.2235,956.80597,0.0,92.91599 +2023-03-03 01:00:00,5.185557,8.156592,129.5226,139.47498,-7.6235,956.7235,0.0,92.17144 +2023-03-03 02:00:00,5.661272,9.394147,144.34459,152.07112,-7.5734997,956.0729,0.0,90.041374 +2023-03-03 03:00:00,6.053924,9.920181,157.6713,165.40338,-6.8234997,955.56573,0.0,82.367805 +2023-03-03 04:00:00,6.477654,10.430723,171.11942,175.60138,-6.1735,955.13153,0.0,78.06249 +2023-03-03 05:00:00,7.3171034,11.701709,176.08183,179.0207,-5.9735,954.6998,0.0,79.32717 +2023-03-03 06:00:00,7.1175838,11.399123,184.02818,187.56134,-5.8735,954.1538,0.0,80.27735 +2023-03-03 07:00:00,7.467262,11.825819,187.69595,191.21487,-6.0734997,953.73517,0.0,81.51047 +2023-03-03 08:00:00,7.3824115,11.649892,188.56906,191.88864,-6.1235,953.53625,0.0,82.78459 +2023-03-03 09:00:00,6.6483083,10.720541,195.7087,197.92801,-6.2235,952.57166,0.0,84.39914 +2023-03-03 10:00:00,5.0249376,7.9812284,211.15924,217.87505,-7.1235,950.97174,0.0,86.29316 +2023-03-03 11:00:00,6.6407833,10.640489,198.43504,201.5015,-6.1735,952.01483,0.0,86.395485 +2023-03-03 12:00:00,5.916925,9.265528,210.46547,214.89078,-6.6235,951.168,0.0,88.72977 +2023-03-03 13:00:00,5.903389,8.958795,206.13094,213.15793,-6.2735,951.23914,0.0,89.79739 +2023-03-03 14:00:00,5.333854,7.939773,210.411,220.91429,-5.5235,951.10736,0.0,89.51389 +2023-03-03 15:00:00,5.080354,6.9526978,216.1933,229.66693,-3.9735,950.5675,0.0,89.30308 +2023-03-03 16:00:00,4.652956,6.3702435,208.21725,222.45515,-2.3735,950.6952,0.0,89.43749 +2023-03-03 17:00:00,4.1231055,6.191123,194.03627,211.1224,-1.7235,950.5392,0.0,91.85147 +2023-03-03 18:00:00,3.8078864,6.296825,209.93143,223.06943,-0.8235,950.1474,0.0,91.90954 +2023-03-03 19:00:00,3.6878178,6.4140472,220.60121,239.03632,-0.023500003,950.01886,0.0,90.95549 +2023-03-03 20:00:00,3.1827662,6.514599,226.27295,252.1212,0.6765,950.24854,0.0,89.68693 +2023-03-03 21:00:00,3.5735137,7.0007143,252.07199,270.81842,1.1765,950.4391,0.0,87.15068 +2023-03-03 22:00:00,4.004997,6.236986,272.86234,282.03058,1.1265,950.5241,0.0,84.01667 +2023-03-03 23:00:00,4.535416,6.9857,284.03625,293.6294,0.5265,950.6926,0.0,85.50247 +2023-03-04 00:00:00,3.6687872,5.5803227,287.44727,306.25394,-0.1735,951.2194,0.0,85.74112 +2023-03-04 01:00:00,4.2720017,6.720863,302.57404,313.19128,0.1265,951.93915,0.0,85.773796 +2023-03-04 02:00:00,5.080354,7.9208584,306.1933,313.97705,-0.123500004,952.6475,0.0,85.11529 +2023-03-04 03:00:00,4.8104053,7.640026,313.31537,322.98004,-0.77349997,952.8048,0.0,83.474045 +2023-03-04 04:00:00,5.185557,8.563293,309.52258,317.36627,-1.0235,953.3232,0.0,80.37988 +2023-03-04 05:00:00,5.2009616,8.772685,307.97165,313.1524,-0.7235,953.7599,0.0,78.05025 +2023-03-04 06:00:00,5.021952,8.280701,305.2725,312.5529,-1.5235,954.1707,0.0,79.4046 +2023-03-04 07:00:00,5.3665633,8.860023,296.56497,306.74066,-2.2735002,954.9682,0.0,78.39228 +2023-03-04 08:00:00,5.5217752,9.0609045,305.4171,312.31616,-2.0235,955.39594,0.0,77.54518 +2023-03-04 09:00:00,5.4405885,9.055386,306.02747,313.2101,-2.1235,955.4705,0.0,77.528694 +2023-03-04 10:00:00,5.0477715,8.504117,303.6901,311.18582,-2.1735,955.9335,0.0,77.22651 +2023-03-04 11:00:00,4.632494,7.864477,302.6609,311.39142,-2.1235,956.60486,0.0,76.94199 +2023-03-04 12:00:00,4.263801,7.0724816,309.28937,316.14566,-1.7235,956.96747,0.0,76.71818 +2023-03-04 13:00:00,4.0,6.720863,306.86996,313.19128,-1.5235,957.7631,0.0,78.51152 +2023-03-04 14:00:00,4.031129,6.9641943,299.74478,302.09256,-1.0735,958.7027,0.1,80.977234 +2023-03-04 15:00:00,3.7696154,7.4249578,291.80148,295.52966,-0.3235,958.9441,0.1,86.0424 +2023-03-04 16:00:00,4.90408,9.353609,290.28265,298.75702,0.1265,959.4102,0.0,88.66115 +2023-03-04 17:00:00,5.4626,10.568822,293.7495,302.63748,0.3765,960.3103,0.0,89.00861 +2023-03-04 18:00:00,5.4626,8.411897,293.7495,298.3929,0.8265,960.96533,0.0,87.75557 +2023-03-04 19:00:00,6.2649817,7.8721027,294.51962,295.58847,1.0265,961.3823,0.0,86.81816 +2023-03-04 20:00:00,6.71193,8.285529,298.4741,299.659,1.0765,961.6758,0.0,85.250534 +2023-03-04 21:00:00,6.5436993,8.105554,308.79657,308.991,0.97650003,962.2239,0.0,84.61695 +2023-03-04 22:00:00,5.456189,7.366139,318.7154,318.30194,0.5765,962.7136,0.0,85.50799 +2023-03-04 23:00:00,4.2520585,6.3702435,318.81415,317.54483,-0.22350001,963.02985,0.0,85.41928 +2023-03-05 00:00:00,3.1906114,5.3,327.8043,328.10925,-3.7235,962.9015,0.0,86.98407 +2023-03-05 01:00:00,1.9209373,3.7443287,308.65982,325.8855,-3.6235,963.39404,0.0,84.0677 +2023-03-05 02:00:00,2.0880613,2.5495098,253.30067,295.5599,-4.2735,963.92426,0.0,84.95786 +2023-03-05 03:00:00,3.0528674,2.6019223,238.39255,272.20255,-5.9735,963.7671,0.0,90.51706 +2023-03-05 04:00:00,3.5805027,2.529822,234.09018,251.56496,-5.8735,964.1657,0.0,93.71004 +2023-03-05 05:00:00,3.8832977,3.3615475,235.49141,239.62096,-5.5734997,964.88824,0.0,93.72544 +2023-03-05 06:00:00,3.6878178,4.140048,220.60121,217.14677,-4.9235,965.3042,0.0,91.63995 +2023-03-05 07:00:00,3.130495,3.3241541,206.56499,195.7087,-5.2235,965.1484,0.0,91.619705 +2023-03-05 08:00:00,3.238827,3.4525354,188.88058,169.99208,-5.6235,965.0667,0.0,92.65229 +2023-03-05 09:00:00,3.6013885,4.8754487,178.40889,154.48618,-5.7235,964.76294,0.0,92.646324 +2023-03-05 10:00:00,3.7161808,6.3126855,156.19405,139.49724,-6.2235,964.09393,0.0,91.90538 +2023-03-05 11:00:00,4.1880784,7.1505246,146.68936,132.16582,-4.7235,964.778,0.0,83.93216 +2023-03-05 12:00:00,4.4553337,7.605919,135.90929,129.1304,-3.6235,965.662,0.0,74.64586 +2023-03-05 13:00:00,4.9497476,8.373769,135.0001,130.15593,-3.6235,966.13446,0.0,73.785965 +2023-03-05 14:00:00,5.6222773,9.340771,128.50069,127.60606,-3.3735,966.2795,0.0,74.97993 +2023-03-05 15:00:00,5.3851647,11.125196,121.328636,125.118675,-2.5735002,966.1565,0.0,81.37719 +2023-03-05 16:00:00,6.844706,12.900387,115.06744,122.334915,-1.6735,965.67444,0.0,83.674194 +2023-03-05 17:00:00,7.111259,13.122881,115.84434,122.23676,-0.5235,964.8621,0.0,80.452675 +2023-03-05 18:00:00,5.700877,11.7477665,105.25517,120.71276,0.42650002,964.103,0.0,81.791306 +2023-03-05 19:00:00,6.5253353,11.412711,105.10115,114.3193,1.1265,962.8206,0.0,81.585594 +2023-03-05 20:00:00,7.937884,11.240107,109.11983,113.600204,1.4265,961.4599,0.2,78.10374 +2023-03-05 21:00:00,8.905054,12.376186,102.319435,105.945465,0.97650003,960.33215,0.8,82.1675 +2023-03-05 22:00:00,9.304837,12.803515,88.15243,91.3426,0.47650003,959.6677,2.5,88.04458 +2023-03-05 23:00:00,8.572631,11.812705,73.0446,76.78725,0.0765,959.96783,2.3,94.69365 +2023-03-06 00:00:00,10.394229,14.089003,78.90632,80.60461,-0.5735,961.25916,2.6,95.3622 +2023-03-06 01:00:00,10.340696,14.029255,80.53775,82.21653,-0.77349997,961.50366,0.9,96.05667 +2023-03-06 02:00:00,10.404807,14.122323,76.09729,77.735245,-0.8735,961.67285,0.7,96.40645 +2023-03-06 03:00:00,10.748954,14.552663,77.64465,79.30784,-0.8735,961.2947,0.5,95.70165 +2023-03-06 04:00:00,10.022474,13.631213,77.90526,79.43204,-0.9235,961.0958,0.2,95.69991 +2023-03-06 05:00:00,8.296988,11.595258,74.623695,77.04243,-0.9235,960.90674,0.0,95.34908 +2023-03-06 06:00:00,8.542833,11.923087,64.334854,67.306175,-0.9735,959.9512,0.0,95.698166 +2023-03-06 07:00:00,7.071068,10.064791,61.26031,64.70802,-1.0235,960.887,0.0,95.69643 +2023-03-06 08:00:00,6.1032777,8.781799,55.0079,59.93151,-1.0735,961.5391,0.0,95.69469 +2023-03-06 09:00:00,6.6603303,9.338095,41.347687,46.73567,-1.2235,961.60406,0.0,96.39622 +2023-03-06 10:00:00,6.2008066,8.84138,37.794006,43.62524,-1.3235,961.39526,0.0,97.46298 +2023-03-06 11:00:00,6.0959,9.193476,41.00899,45.88132,-1.3235,961.77344,0.0,97.821884 +2023-03-06 12:00:00,5.162364,7.632169,21.59538,31.607454,-1.4235,962.60443,0.0,97.46091 +2023-03-06 13:00:00,6.1846585,8.955445,22.833694,29.427368,-1.4735,963.16156,0.0,97.1017 +2023-03-06 14:00:00,6.9231496,9.588014,10.822971,16.355904,-1.4735,964.20154,0.1,97.1017 +2023-03-06 15:00:00,8.429115,11.229425,4.763556,8.7072935,-1.6235,965.30634,0.2,96.02938 +2023-03-06 16:00:00,9.265528,11.313708,6.8181314,8.130019,-1.3735,965.92316,0.1,93.58896 +2023-03-06 17:00:00,9.600521,11.601725,359.4032,0.9877458,-0.9735,966.75867,0.0,91.8999 +2023-03-06 18:00:00,9.702062,11.8,358.81885,360.0,-0.6735,967.1963,0.0,89.90883 +2023-03-06 19:00:00,10.117806,11.910499,356.60034,357.5941,-0.3235,967.8329,0.0,87.323456 +2023-03-06 20:00:00,10.607545,12.010412,2.1610355,2.385899,-0.023500003,968.4594,0.0,83.87728 +2023-03-06 21:00:00,9.6,11.501739,360.0,0.99632454,0.17650001,969.0661,0.0,85.46374 +2023-03-06 22:00:00,7.648529,9.815294,348.6901,351.20953,0.0765,969.80304,0.0,88.98295 +2023-03-06 23:00:00,6.661081,9.113727,352.23492,356.8551,0.17650001,970.39014,0.0,88.66556 +2023-03-07 00:00:00,7.8160095,10.7,356.33228,360.0,-1.0235,971.6654,0.0,89.881065 +2023-03-07 01:00:00,7.912016,11.162885,343.8556,350.20023,-2.7735002,972.44885,0.0,92.81955 +2023-03-07 02:00:00,7.3082147,11.016805,343.3007,351.64932,-5.0235,972.5579,0.0,91.63322 +2023-03-07 03:00:00,6.676077,10.369668,343.4651,353.3548,-5.8735,972.8553,0.0,90.52469 +2023-03-07 04:00:00,5.9481087,9.419129,343.39294,356.34784,-6.3234997,973.51746,0.0,90.1412 +2023-03-07 05:00:00,5.3160133,8.409518,343.61038,2.7262611,-6.4235,973.68567,0.0,89.09234 +2023-03-07 06:00:00,4.9040794,7.467262,343.41257,7.695961,-6.4235,973.7801,0.0,88.747765 +2023-03-07 07:00:00,4.738143,7.2732387,352.72507,18.435053,-6.5235,973.75934,0.0,89.42966 +2023-03-07 08:00:00,4.4553337,6.6730804,350.9606,19.249622,-6.8234997,974.16895,0.0,90.10145 +2023-03-07 09:00:00,4.7296934,6.6483083,346.55136,15.708701,-7.3234997,974.4424,0.0,90.76624 +2023-03-07 10:00:00,5.4708314,7.4431176,341.89615,6.170083,-8.1235,974.6522,0.0,91.06255 +2023-03-07 11:00:00,6.0083275,8.20975,341.56494,2.7926505,-9.0735,975.20654,0.0,90.99302 +2023-03-07 12:00:00,5.2201533,7.510659,343.3007,3.0528262,-10.6735,975.90295,0.0,90.14826 +2023-03-07 13:00:00,4.588028,6.8593006,343.53992,7.5393586,-10.4735,976.41766,0.0,90.526085 +2023-03-07 14:00:00,4.604346,6.281719,357.5105,13.815059,-8.5234995,977.211,0.0,90.31955 +2023-03-07 15:00:00,5.0695167,6.003332,22.01134,29.981556,-6.4735,977.6416,0.0,89.781 +2023-03-07 16:00:00,5.390733,5.4037023,40.485935,38.990997,-4.9735,977.48047,0.0,92.338295 +2023-03-07 17:00:00,4.5221677,4.8548946,54.90411,57.619343,-2.9735,977.5121,0.0,92.46077 +2023-03-07 18:00:00,6.5924196,7.891768,80.39487,81.25392,-1.1735,977.2137,0.0,86.916016 +2023-03-07 19:00:00,7.922752,9.413288,85.656845,86.95529,-1.1735,976.5519,0.1,93.59922 +2023-03-07 20:00:00,7.6164293,9.11976,93.76396,93.77222,-0.8735,975.8554,0.0,90.225784 +2023-03-07 21:00:00,6.8183575,8.505292,85.79472,87.97868,-0.4735,975.4624,0.0,86.34535 +2023-03-07 22:00:00,7.0342026,9.414882,75.17348,77.735245,-0.4235,974.90515,0.0,85.713806 +2023-03-07 23:00:00,6.888396,10.1789,76.56896,79.24209,-0.8735,974.2481,0.0,87.26944 +2023-03-08 00:00:00,6.9354167,10.312129,84.2073,87.220894,-1.7235,974.73987,0.0,85.25082 +2023-03-08 01:00:00,7.3109508,11.228535,93.1363,94.08554,-1.7235,974.3617,0.0,82.42057 +2023-03-08 02:00:00,6.207254,9.850888,92.77016,95.82625,-1.5235,974.4018,0.0,82.447105 +2023-03-08 03:00:00,5.508176,8.980535,93.12207,97.67888,-1.4735,974.78986,0.0,83.074295 +2023-03-08 04:00:00,5.333854,8.6884985,96.458725,101.956566,-1.7735,974.63513,0.0,82.72433 +2023-03-08 05:00:00,4.9819674,8.316851,100.40766,108.217186,-1.6735,974.4662,0.0,83.04862 +2023-03-08 06:00:00,4.8270073,7.839005,103.17256,113.294586,-1.6235,974.47644,0.0,83.3672 +2023-03-08 07:00:00,4.9396358,8.163333,111.3707,120.963684,-1.8235,974.4362,0.0,83.34191 +2023-03-08 08:00:00,5.3,8.720665,121.890755,130.81499,-1.2735,974.2627,0.0,81.86456 +2023-03-08 09:00:00,5.661272,9.068627,125.65542,131.42357,-0.77349997,973.7009,0.0,81.01978 +2023-03-08 10:00:00,5.1739736,8.414867,131.08165,135.4814,-0.8235,973.5015,0.0,81.01269 +2023-03-08 11:00:00,5.1662364,8.309633,137.35333,140.37103,-0.8735,973.8699,0.0,80.70318 +2023-03-08 12:00:00,4.5221677,7.6275816,144.90411,145.68486,-0.6735,973.6259,0.0,76.31986 +2023-03-08 13:00:00,3.6055512,6.296825,160.55988,159.55037,-0.6735,974.0987,0.0,76.607185 +2023-03-08 14:00:00,1.7117243,3.9623227,173.29025,169.82455,-0.6735,974.5715,0.0,80.13084 +2023-03-08 15:00:00,0.86023253,2.529822,234.46223,198.43504,-0.5235,975.1689,0.0,84.75484 +2023-03-08 16:00:00,1.3341664,0.50990194,347.00537,281.3099,-0.4735,975.1788,0.0,80.160286 +2023-03-08 17:00:00,1.746425,1.5231546,13.240531,23.198618,-0.77349997,975.0246,0.0,84.41128 +2023-03-08 18:00:00,1.3892444,1.56205,30.256361,39.805527,-0.77349997,974.93005,0.0,87.60323 +2023-03-08 19:00:00,1.8027756,1.8439089,3.179772,12.528798,-0.6735,975.04425,0.0,89.247444 +2023-03-08 20:00:00,2.5495098,2.7166157,348.6901,353.6599,-0.8235,974.8253,0.0,92.58923 +2023-03-08 21:00:00,3.4014704,3.6055512,358.31534,3.179772,-0.9235,974.33276,0.0,94.30345 +2023-03-08 22:00:00,3.275668,3.640055,12.339083,15.945477,-0.8235,974.258,0.0,93.61714 +2023-03-08 23:00:00,3.0805843,3.5608988,35.75398,38.157276,-0.7235,974.1835,0.0,93.27876 +2023-03-09 00:00:00,4.031129,5.5542774,60.255207,66.66594,-1.2735,974.4517,0.0,97.10643 +2023-03-09 01:00:00,4.3908997,6.1684685,59.93151,70.09616,-1.4235,974.611,0.0,98.542 +2023-03-09 02:00:00,4.2544093,6.0016665,66.44773,79.43904,-1.3735,974.52637,0.0,98.542595 +2023-03-09 03:00:00,4.1773195,6.2,78.95911,90.0,-1.4235,974.5165,0.0,96.39035 +2023-03-09 04:00:00,4.1773195,6.1032777,78.95911,88.12216,-1.5735,974.39166,0.0,93.57866 +2023-03-09 05:00:00,4.2755113,6.312686,79.21575,86.36713,-1.7735,973.87885,0.0,93.22205 +2023-03-09 06:00:00,4.0447497,6.1008196,81.46932,89.06083,-1.9235,973.9436,0.0,93.21389 +2023-03-09 07:00:00,4.031129,6.1032777,82.875084,91.87784,-1.9235,973.75446,0.0,92.86833 +2023-03-09 08:00:00,4.883646,7.202777,79.380394,88.4089,-2.0235,972.7891,0.0,93.20844 +2023-03-09 09:00:00,4.6840153,7.256032,73.88651,82.875084,-1.9735,971.8537,0.0,92.52093 +2023-03-09 10:00:00,4.464303,7.071068,74.407135,81.86999,-2.1235,971.82355,0.0,91.48393 +2023-03-09 11:00:00,5.249762,7.990619,72.25524,81.36295,-2.0735002,971.4555,0.4,91.82873 +2023-03-09 12:00:00,5.8600345,8.823264,64.74687,72.18102,-2.0735002,971.172,0.6,90.469826 +2023-03-09 13:00:00,6.484597,9.459387,70.167786,76.55138,-1.9235,971.2022,0.3,90.14459 +2023-03-09 14:00:00,6.395311,9.2439165,80.09588,84.41286,-1.7235,971.2421,0.2,89.8252 +2023-03-09 15:00:00,6.0016665,9.413288,79.43904,86.95529,-1.6735,971.3465,0.3,92.53884 +2023-03-09 16:00:00,6.841052,8.884255,74.74483,78.31066,-1.4735,970.8193,0.3,93.930435 +2023-03-09 17:00:00,7.595393,8.994442,80.9098,81.68981,-1.3235,970.75494,0.2,93.24644 +2023-03-09 18:00:00,6.7720013,8.367796,73.70589,75.46551,-1.4235,970.2622,0.4,93.93287 +2023-03-09 19:00:00,7.0007143,8.321659,68.19854,69.60504,-1.2735,969.8192,0.4,93.59409 +2023-03-09 20:00:00,7.155418,8.54927,63.435013,65.83338,-1.2235,969.45123,0.5,94.637924 +2023-03-09 21:00:00,7.5591,8.989995,62.418053,64.2901,-1.1235,968.99817,0.6,95.34156 +2023-03-09 22:00:00,7.2897186,8.5906925,63.083534,65.22488,-1.1235,968.7145,0.7,95.69294 +2023-03-09 23:00:00,7.2615423,9.075792,67.319405,71.365326,-1.1735,968.79913,0.7,96.39768 +2023-03-10 00:00:00,7.1309185,9.729337,75.37909,77.53508,-1.4735,969.023,0.7,96.03421 +2023-03-10 01:00:00,6.315853,9.013878,66.682274,70.559875,-1.8735,969.41595,0.5,97.45154 +2023-03-10 02:00:00,6.307139,8.802272,64.65388,68.68202,-2.0235,969.66974,0.5,97.08865 +2023-03-10 03:00:00,5.7454333,8.05295,58.52322,61.84391,-2.3735,969.9775,0.4,96.362305 +2023-03-10 04:00:00,4.7801676,6.6887965,52.650585,58.44866,-2.7235,970.0962,0.3,96.351875 +2023-03-10 05:00:00,4.0360875,5.7489133,41.98714,49.939285,-3.0735002,970.12006,0.3,96.701836 +2023-03-10 06:00:00,4.327817,6.0876923,40.314034,47.66307,-3.3235002,969.69165,0.2,96.333916 +2023-03-10 07:00:00,2.9614186,4.3382025,11.689341,25.974339,-3.6235,969.91437,0.2,97.05015 +2023-03-10 08:00:00,3.5902646,4.504442,347.125,357.45523,-3.2735002,969.7962,0.1,98.15251 +2023-03-10 09:00:00,4.6238513,6.315061,338.42862,349.04596,-3.1735,969.4386,0.0,98.52079 +2023-03-10 10:00:00,5.632051,7.200694,6.1154146,9.593073,-3.0735002,969.175,0.1,98.88968 +2023-03-10 11:00:00,4.304649,6.2128897,357.33707,3.691312,-3.9235,969.57,0.0,97.774765 +2023-03-10 12:00:00,4.6010866,6.8883963,1.2453395,9.188767,-5.2235,969.30475,0.0,97.380135 +2023-03-10 13:00:00,4.0792155,5.9481087,11.3098955,16.607063,-4.6735,969.323,0.0,97.760895 +2023-03-10 14:00:00,3.7,4.401136,18.924751,21.31798,-4.0235,969.92773,0.0,95.9508 +2023-03-10 15:00:00,3.522783,3.940812,34.592358,35.706783,-3.5735002,969.7355,0.0,95.24795 +2023-03-10 16:00:00,2.5806975,2.5806975,35.537766,35.537766,-3.1735,970.0056,0.0,94.55269 +2023-03-10 17:00:00,1.7088008,1.746425,20.556128,23.629398,-2.7735002,970.08606,0.0,92.47286 +2023-03-10 18:00:00,1.8788295,2.0124612,25.201094,26.564985,-2.4235,969.4002,0.0,85.81496 +2023-03-10 19:00:00,2.1023796,2.236068,25.346138,26.564985,-2.1235,969.3659,0.0,81.44017 +2023-03-10 20:00:00,2.6627054,2.8844411,55.713078,56.309914,-2.0235,968.25183,0.0,80.841576 +2023-03-10 21:00:00,4.031129,4.539824,82.875084,82.40546,-1.9735,966.6546,0.0,81.46108 +2023-03-10 22:00:00,2.8160255,3.1144822,83.88459,84.47256,-1.8235,967.53534,0.0,78.16767 +2023-03-10 23:00:00,4.0792155,4.5122056,101.3099,102.80426,-2.0735002,966.2566,0.0,79.32041 +2023-03-11 00:00:00,3.8078866,5.0537114,113.198616,117.072,-2.7235,966.8827,0.0,83.22744 +2023-03-11 01:00:00,5.6515484,7.4999995,103.298584,106.26028,-2.9235,965.70844,0.0,87.06511 +2023-03-11 02:00:00,6.545991,8.825531,108.71183,109.87227,-3.1235,965.00653,0.0,89.374794 +2023-03-11 03:00:00,6.888396,9.4371605,103.431046,105.36168,-3.3235002,964.96655,0.0,88.01795 +2023-03-11 04:00:00,8.374366,11.303097,101.71245,103.298584,-3.4735,964.18024,0.0,87.009476 +2023-03-11 05:00:00,7.291776,10.151848,115.15927,116.312584,-3.6235,963.961,0.0,86.00882 +2023-03-11 06:00:00,7.242237,10.340696,125.44579,127.53488,-3.6735,963.2895,0.0,85.35174 +2023-03-11 07:00:00,7.366139,10.40048,131.69804,133.05193,-3.4735,963.14075,0.0,84.08607 +2023-03-11 08:00:00,8.563293,11.768601,137.36629,139.13477,-3.4235,962.39484,0.0,84.09217 +2023-03-11 09:00:00,8.914034,12.1827755,136.81828,138.3275,-3.5235002,960.8628,0.0,85.04491 +2023-03-11 10:00:00,9.24554,12.621014,141.14662,142.40366,-3.6235,960.0867,0.0,86.00882 +2023-03-11 11:00:00,9.745255,13.140016,141.24837,143.0428,-3.6235,959.6142,0.0,86.00882 +2023-03-11 12:00:00,10.604244,14.360014,141.50893,143.20981,-3.0735002,958.7792,0.0,83.81637 +2023-03-11 13:00:00,9.72471,13.248397,149.74364,151.11351,-2.9235,958.8092,0.0,84.47232 +2023-03-11 14:00:00,10.12571,13.536986,145.05426,147.3665,-2.6735,958.57544,0.0,84.821846 +2023-03-11 15:00:00,10.621204,14.322011,142.26689,144.09018,-2.5735002,957.74445,0.1,87.100334 +2023-03-11 16:00:00,11.485642,14.729901,144.92616,145.23097,-2.4235,956.9236,0.4,88.765526 +2023-03-11 17:00:00,11.384639,13.946325,157.26396,157.6645,-2.1235,957.3611,0.6,89.793076 +2023-03-11 18:00:00,9.2309265,11.200447,157.04588,156.86855,-2.0735002,957.371,1.4,91.48732 +2023-03-11 19:00:00,8.28734,10.151355,160.25307,161.0295,-1.6735,956.9772,1.4,92.19621 +2023-03-11 20:00:00,8.004998,9.708244,167.00539,168.11136,-1.4735,956.733,0.8,92.89397 +2023-03-11 21:00:00,7.653104,9.144398,173.24652,174.35185,-1.0235,957.01056,0.6,92.577415 +2023-03-11 22:00:00,6.7,8.605231,180.0,181.99783,-0.8235,957.14417,0.1,92.24883 +2023-03-11 23:00:00,5.8077536,7.7317524,182.96088,185.19434,-0.5235,957.20294,0.0,91.928764 +2023-03-12 00:00:00,5.813777,7.9,176.05489,180.0,-1.1235,957.65265,0.0,92.9138 +2023-03-12 01:00:00,5.2201533,7.8924017,200.17073,202.3407,-2.2235,958.003,0.0,93.893684 +2023-03-12 02:00:00,5.700877,8.563293,217.87505,222.63371,-2.2735002,958.3711,0.0,93.54244 +2023-03-12 03:00:00,5.8137765,8.58021,220.81499,233.53067,-4.2235,957.9822,0.0,94.50595 +2023-03-12 04:00:00,5.5226803,7.379024,222.06425,243.43501,-4.3735,957.47943,0.0,92.37535 +2023-03-12 05:00:00,5.1224995,7.045566,218.65984,235.40765,-4.5235,956.78796,0.0,92.01588 +2023-03-12 06:00:00,5.5470715,8.354639,213.9766,227.9109,-4.8735,956.434,0.0,90.94689 +2023-03-12 07:00:00,6.981404,11.627553,218.019,229.18501,-5.2235,956.2686,0.0,90.9214 +2023-03-12 08:00:00,9.257429,13.203409,243.7118,248.68202,-3.7235,957.1373,0.0,82.46663 +2023-03-12 09:00:00,9.464143,13.591541,254.05453,258.11136,-5.0235,956.68713,0.0,79.4746 +2023-03-12 10:00:00,9.9408245,13.905754,264.80566,268.35168,-5.6735,956.4611,0.0,82.5232 +2023-03-12 11:00:00,10.143471,13.493702,279.64798,281.9761,-4.7735,956.9264,0.0,84.24934 +2023-03-12 12:00:00,9.752948,13.692699,285.46127,288.3027,-6.4735,956.58154,0.0,82.09367 +2023-03-12 13:00:00,9.79847,13.822083,284.1781,287.2552,-7.4235,957.14246,0.0,81.96218 +2023-03-12 14:00:00,11.406139,13.735356,295.4417,298.24414,-6.7235,957.8528,0.0,82.05921 +2023-03-12 15:00:00,12.116518,14.583552,311.31927,312.22076,-5.5734997,958.4651,0.0,85.46355 +2023-03-12 16:00:00,12.028299,14.431216,312.97864,313.31534,-5.0235,959.3322,0.0,85.52581 +2023-03-12 17:00:00,11.403947,13.741179,305.36255,306.11945,-5.4235,959.91235,0.0,84.82298 +2023-03-12 18:00:00,12.480784,14.182031,307.5127,307.8396,-4.7235,960.14874,0.0,89.92314 +2023-03-12 19:00:00,12.728707,14.849242,314.36346,315.0001,-4.5235,960.4726,0.0,90.62674 +2023-03-12 20:00:00,13.104579,15.446683,318.40286,318.6746,-4.2735,960.7118,0.0,87.593575 +2023-03-12 21:00:00,13.894603,16.736187,319.0857,319.36166,-4.3735,961.2587,0.0,89.60957 +2023-03-12 22:00:00,14.103191,17.602556,321.91116,322.1535,-4.7235,961.9438,0.0,88.22197 +2023-03-12 23:00:00,13.368619,17.226143,321.07245,321.59988,-5.2235,962.6922,0.0,89.53898 +2023-03-13 00:00:00,11.651609,14.603082,320.57224,321.9529,-5.7735,963.9028,0.0,89.14884 +2023-03-13 01:00:00,11.4337225,15.041609,320.32278,322.292,-6.0235,964.7015,0.0,87.08345 +2023-03-13 02:00:00,11.356936,15.261062,320.0007,322.45422,-6.7235,965.59644,0.0,87.35117 +2023-03-13 03:00:00,11.480853,15.065856,322.43134,324.72748,-6.4235,966.4137,0.0,87.72109 +2023-03-13 04:00:00,11.264546,14.756693,324.75787,327.17145,-6.3735,966.89624,0.0,88.40898 +2023-03-13 05:00:00,10.6,14.054537,328.10925,331.06427,-6.3234997,967.37866,0.0,88.75673 +2023-03-13 06:00:00,9.615093,12.85496,333.43503,336.62582,-6.2735,967.7668,0.0,89.45081 +2023-03-13 07:00:00,8.653901,11.637869,337.5838,340.9422,-6.3234997,968.4175,0.0,89.44657 +2023-03-13 08:00:00,7.971198,11.072489,340.20102,343.20154,-6.8735,969.0592,0.0,89.39993 +2023-03-13 09:00:00,7.8434687,10.948059,340.6409,343.55133,-7.4235,969.3227,0.0,89.352974 +2023-03-13 10:00:00,7.66942,10.878419,337.78235,341.23184,-8.1735,969.6382,0.0,89.28846 +2023-03-13 11:00:00,7.3824115,10.826819,335.1707,338.8864,-9.2734995,970.35046,0.0,89.90319 +2023-03-13 12:00:00,6.648308,10.153324,338.83865,342.8142,-10.5735,970.9237,0.0,89.07809 +2023-03-13 13:00:00,6.621178,9.936801,334.98312,339.3764,-11.0735,971.76013,0.0,90.1159 +2023-03-13 14:00:00,5.99333,9.962429,334.2901,340.65558,-10.9235,972.4526,0.0,90.491035 +2023-03-13 15:00:00,6.484597,8.895504,333.43503,338.91617,-10.3735,973.1365,0.0,91.62591 +2023-03-13 16:00:00,6.664083,7.209022,334.204,336.27957,-9.5735,973.59033,0.0,90.95609 +2023-03-13 17:00:00,6.407808,6.6850576,337.0362,338.03937,-8.7235,973.5817,0.0,90.3038 +2023-03-13 18:00:00,5.9506307,6.2241464,335.15762,336.3179,-7.9235,973.65564,0.0,88.960304 +2023-03-13 19:00:00,5.5470715,6.0827627,332.04913,332.5925,-7.2735,973.6031,0.0,86.615364 +2023-03-13 20:00:00,5.3535037,5.936329,327.20047,327.38077,-6.8735,973.3086,0.0,85.31483 +2023-03-13 21:00:00,5.186521,5.6859474,326.0035,325.75092,-6.7735,973.1407,0.0,84.33213 +2023-03-13 22:00:00,4.924429,5.3712196,330.8325,331.0491,-6.7735,972.9519,0.0,83.02256 +2023-03-13 23:00:00,4.3462625,4.88467,336.9745,337.1094,-7.0235,972.7108,0.0,82.34057 +2023-03-14 00:00:00,2.630589,3.4234486,351.2539,353.29025,-8.2734995,972.6382,0.0,85.82808 +2023-03-14 01:00:00,2.0615528,2.7166157,345.9637,353.6599,-10.1235,972.52954,0.0,87.70307 +2023-03-14 02:00:00,1.7691805,2.184033,312.70938,344.05453,-10.4235,972.6542,0.0,89.0914 +2023-03-14 03:00:00,1.7,1.1401755,270.0,307.87503,-11.0234995,972.7141,0.0,91.21366 +2023-03-14 04:00:00,1.5,0.9,216.86998,180.0,-10.9235,972.4526,0.0,92.32556 +2023-03-14 05:00:00,2.9120438,2.9,195.94547,180.0,-12.8235,971.75916,0.0,92.579735 +2023-03-14 06:00:00,4.148494,5.0487623,195.37631,187.96953,-12.0735,971.922,0.0,92.62613 +2023-03-14 07:00:00,4.7434163,6.768308,198.43504,192.80426,-11.8735,972.05945,0.0,89.686356 +2023-03-14 08:00:00,5.0,7.5927596,196.26028,192.93806,-11.5735,972.0297,0.0,90.075226 +2023-03-14 09:00:00,5.2886667,7.981228,195.35019,195.25517,-10.2734995,972.12,0.0,90.180466 +2023-03-14 10:00:00,5.9665737,8.634812,193.57045,193.39252,-9.8235,971.74396,0.0,90.93756 +2023-03-14 11:00:00,6.760177,9.716481,187.65056,188.88058,-9.9235,971.4396,0.0,90.56868 +2023-03-14 12:00:00,7.0,10.012492,180.0,182.86235,-9.3235,971.18945,0.0,90.25632 +2023-03-14 13:00:00,7.8230433,10.807405,175.60138,177.87895,-8.5234995,971.0751,0.0,89.96451 +2023-03-14 14:00:00,9.861542,11.65204,173.59575,174.58307,-8.0235,970.70795,0.0,89.652626 +2023-03-14 15:00:00,10.922453,12.2147455,176.32558,177.18451,-7.1735,970.6021,0.0,89.37435 +2023-03-14 16:00:00,10.922453,12.619431,176.32558,176.82024,-6.4235,970.4747,0.0,89.43813 +2023-03-14 17:00:00,11.264102,12.856128,173.8846,174.64427,-5.6235,969.9785,0.0,88.477936 +2023-03-14 18:00:00,11.795762,13.408206,172.69434,172.71606,-4.5734997,969.0598,0.0,88.91218 +2023-03-14 19:00:00,11.621101,13.824615,164.52861,165.76268,-3.0235002,967.7674,0.0,85.748985 +2023-03-14 20:00:00,12.20041,14.8556385,157.84972,158.27016,-2.2735002,966.2165,0.0,85.50932 +2023-03-14 21:00:00,12.107848,14.948578,157.6713,158.41205,-2.0735002,965.21674,0.0,87.15041 +2023-03-14 22:00:00,12.210241,15.849606,154.27444,156.18433,-2.1735,964.2517,0.0,86.81426 +2023-03-14 23:00:00,12.940248,17.535393,163.3855,165.80524,-2.3235002,963.5601,0.0,83.90894 +2023-03-15 00:00:00,11.375852,15.945219,165.23076,168.05585,-2.5235002,963.7091,0.0,80.76962 +2023-03-15 01:00:00,11.303097,16.029036,166.70142,170.30269,-2.7735002,963.37555,0.0,81.349106 +2023-03-15 02:00:00,11.356496,16.263456,167.79955,171.86998,-2.5735002,962.8484,0.0,81.99614 +2023-03-15 03:00:00,11.399123,16.530275,172.43866,176.53185,-1.9735,962.58984,0.0,80.24049 +2023-03-15 04:00:00,11.615507,16.80119,177.03912,180.68204,-1.4735,962.12164,0.0,78.519424 +2023-03-15 05:00:00,11.706836,16.957888,181.95802,184.73549,-1.1235,961.52905,0.0,77.40082 +2023-03-15 06:00:00,11.584905,16.868906,186.94089,190.24403,-0.8735,961.01105,0.0,77.44204 +2023-03-15 07:00:00,11.313708,16.630693,188.13002,191.44504,-0.6735,960.38837,0.0,78.05828 +2023-03-15 08:00:00,10.948973,16.10745,189.46225,192.91463,-0.6235,960.1148,0.0,79.24435 +2023-03-15 09:00:00,10.965857,16.227446,189.97765,193.17987,-0.6235,959.3583,0.0,80.1382 +2023-03-15 10:00:00,10.867382,16.130096,190.069,193.26086,-0.5735,958.6116,0.0,81.35091 +2023-03-15 11:00:00,10.846659,16.18178,192.24231,195.41045,-0.4735,958.5365,0.0,81.973114 +2023-03-15 12:00:00,10.088112,15.264338,197.89622,201.52266,0.6265,957.1432,0.0,81.81843 +2023-03-15 13:00:00,10.412012,15.748651,196.17223,198.89523,0.7765,956.98315,0.0,82.74806 +2023-03-15 14:00:00,10.720075,15.880806,194.03627,196.83755,1.4265,956.73016,0.0,83.13553 +2023-03-15 15:00:00,10.914211,16.016241,193.78162,195.94547,1.9764999,956.45746,0.0,83.812996 +2023-03-15 16:00:00,11.1198015,16.056152,191.41095,193.69006,2.6265,956.1089,0.0,84.501076 +2023-03-15 17:00:00,11.964113,16.783623,192.0613,193.78787,3.4264998,955.6933,0.0,83.68605 +2023-03-15 18:00:00,12.39758,17.317041,192.57893,194.03627,4.2765,954.5289,0.0,81.71603 +2023-03-15 19:00:00,11.412712,16.1623,188.05902,190.3365,4.9265003,953.32574,0.0,80.64387 +2023-03-15 20:00:00,10.538501,15.231874,184.899,187.54483,5.6265,951.9416,0.0,79.32 +2023-03-15 21:00:00,10.523308,15.1953945,183.814,186.42337,6.1765003,950.8126,0.0,78.56193 +2023-03-15 22:00:00,9.633276,14.303146,175.23645,178.79819,6.1765003,949.77106,0.0,79.68326 +2023-03-15 23:00:00,9.334346,14.300349,175.08353,179.59935,5.9765,949.07135,0.0,80.79091 +2023-03-16 00:00:00,7.0830784,11.2272,149.4525,160.75803,4.5765,949.8524,0.0,84.424515 +2023-03-16 01:00:00,7.694154,12.15648,152.10283,164.24876,4.4765,948.8872,0.0,84.71429 +2023-03-16 02:00:00,7.02282,11.511733,160.0168,172.01076,4.7265,948.7448,0.0,83.84297 +2023-03-16 03:00:00,7.324616,11.7515955,175.3014,185.37091,4.9765,948.6967,0.0,83.575356 +2023-03-16 04:00:00,7.990619,12.95415,188.63705,195.21638,5.0765,948.62067,0.0,83.884865 +2023-03-16 05:00:00,9.330058,14.782761,197.46402,201.00977,5.5265,948.42017,0.0,82.465454 +2023-03-16 06:00:00,9.841239,15.473849,205.26306,206.89616,5.9265003,948.49426,0.0,81.35794 +2023-03-16 07:00:00,10.558883,16.155495,208.2639,211.32863,5.8765,948.2956,0.0,81.63961 +2023-03-16 08:00:00,7.7781744,12.5865,224.9999,224.9999,5.2765,948.7523,0.0,84.2066 +2023-03-16 09:00:00,5.1009803,7.641989,271.1233,263.9911,3.5765,949.1916,0.0,89.596115 +2023-03-16 10:00:00,6.438167,9.0609045,313.11182,312.31616,0.026500002,949.55566,0.2,98.55922 +2023-03-16 11:00:00,7.528612,11.220071,320.38934,323.33426,-0.023500003,950.208,0.7,98.55864 +2023-03-16 12:00:00,10.423532,14.80304,331.95993,333.08884,-0.6235,950.56464,0.9,96.76715 +2023-03-16 13:00:00,10.231813,14.337711,338.19852,339.16324,-0.5735,950.7634,0.4,97.47846 +2023-03-16 14:00:00,9.297312,13.572399,341.1752,343.3007,-0.22350001,951.11487,0.3,98.556274 +2023-03-16 15:00:00,8.732124,12.775759,336.3706,341.2813,-0.023500003,951.8156,0.4,98.917244 +2023-03-16 16:00:00,11.485642,16.757387,324.92618,329.91592,-0.1735,952.3541,0.5,98.55687 +2023-03-16 17:00:00,12.657014,19.556328,328.5705,335.5318,-0.9235,952.87,1.0,98.547966 +2023-03-16 18:00:00,14.800338,21.833002,329.1027,335.07825,-1.4735,953.4241,1.8,97.8192 +2023-03-16 19:00:00,16.329422,21.287556,331.8657,333.19427,-2.2235,954.3165,1.1,95.29987 +2023-03-16 20:00:00,15.764834,20.58276,330.34537,331.56735,-3.1735,954.6957,0.8,94.55269 +2023-03-16 21:00:00,16.823793,21.070597,331.6071,331.9756,-3.5235002,955.66534,0.4,90.70131 +2023-03-16 22:00:00,16.68832,20.535336,331.74585,331.8127,-3.6235,956.7793,0.1,88.65893 +2023-03-16 23:00:00,16.174362,20.144478,329.94763,330.89023,-4.1735,957.42523,0.0,83.679214 +2023-03-17 00:00:00,15.370101,20.048193,327.75757,329.08533,-6.7235,958.32495,0.0,86.33638 +2023-03-17 01:00:00,15.477726,20.616983,327.13132,328.08304,-8.1235,958.88635,0.0,84.16586 +2023-03-17 02:00:00,15.50387,20.692993,326.3099,327.2315,-8.9735,959.2758,0.0,83.72557 +2023-03-17 03:00:00,14.869096,19.886177,325.1342,326.07016,-9.5735,959.90576,0.0,84.32133 +2023-03-17 04:00:00,14.484474,19.416489,324.5542,325.4914,-9.9735,960.38776,0.0,83.93384 +2023-03-17 05:00:00,14.042791,18.94888,324.27252,324.88403,-10.1735,960.72314,0.0,83.23535 +2023-03-17 06:00:00,13.160547,17.78595,323.65244,324.61203,-9.8235,960.89124,0.0,81.952896 +2023-03-17 07:00:00,13.1209755,17.700283,322.43134,322.8063,-10.2235,960.99567,0.0,80.58333 +2023-03-17 08:00:00,12.868956,17.445057,320.99252,321.7505,-11.2235,961.4444,0.0,80.43217 +2023-03-17 09:00:00,12.408464,16.977928,319.24854,320.49692,-11.7734995,961.6103,0.0,80.34831 +2023-03-17 10:00:00,11.562439,15.85213,319.56003,320.8886,-12.3235,961.7757,0.0,81.261375 +2023-03-17 11:00:00,10.729865,14.805405,320.67303,321.5819,-12.7734995,961.9619,0.0,81.53106 +2023-03-17 12:00:00,10.153325,14.165098,320.1945,321.59283,-14.8235,961.98846,0.0,83.301674 +2023-03-17 13:00:00,10.131634,13.981773,318.60138,319.93216,-15.0234995,962.1334,0.0,82.577896 +2023-03-17 14:00:00,10.259142,13.528119,316.9749,318.2962,-14.7235,962.6703,0.0,81.244385 +2023-03-17 15:00:00,10.965857,13.232158,316.8476,317.14377,-14.3235,963.13464,0.0,80.96407 +2023-03-17 16:00:00,10.748953,12.657409,314.24625,314.67993,-13.8735,963.704,0.0,79.35748 +2023-03-17 17:00:00,10.998635,12.701574,310.2057,310.20978,-13.2235,964.12805,0.0,78.47663 +2023-03-17 18:00:00,11.69316,13.602941,311.18582,311.42358,-12.7235,964.33044,0.0,73.810936 +2023-03-17 19:00:00,12.278843,14.263589,310.0445,310.16553,-12.6235,964.16315,0.0,73.83054 +2023-03-17 20:00:00,12.480784,14.620875,307.5127,307.49698,-12.4735,964.0069,0.0,71.73624 +2023-03-17 21:00:00,12.764011,15.123822,305.4334,305.58182,-12.4735,963.9126,0.0,71.73624 +2023-03-17 22:00:00,13.787676,16.507574,304.95804,305.13428,-12.7235,963.9531,0.0,69.90476 +2023-03-17 23:00:00,14.135416,17.323395,309.54605,309.84787,-13.4735,964.3569,0.1,66.00402 +2023-03-18 00:00:00,13.395895,16.509693,311.06512,311.3164,-15.4235,964.5905,0.0,71.11164 +2023-03-18 01:00:00,11.975391,15.646406,311.27585,312.15045,-16.4235,965.02893,0.0,73.38619 +2023-03-18 02:00:00,12.108262,16.20031,311.98712,313.24918,-17.073502,965.4495,0.0,74.534096 +2023-03-18 03:00:00,11.834271,16.058954,311.23135,313.23376,-17.073502,965.5438,0.0,74.857124 +2023-03-18 04:00:00,11.41096,15.707959,311.09134,312.9362,-17.1735,965.70984,0.0,74.83778 +2023-03-18 05:00:00,11.053506,15.345683,311.33212,314.20804,-17.073502,965.8264,0.0,75.83376 +2023-03-18 06:00:00,10.965857,15.415577,313.1524,315.52557,-16.6735,965.8212,0.0,77.22489 +2023-03-18 07:00:00,10.751744,15.206906,313.4926,316.33215,-16.1735,965.9327,0.0,78.98213 +2023-03-18 08:00:00,10.960383,15.438264,315.3696,318.1508,-15.7235,966.2205,0.0,80.4102 +2023-03-18 09:00:00,11.119802,15.55667,318.28098,320.4774,-15.2235,966.4254,0.0,81.85733 +2023-03-18 10:00:00,11.292918,15.700318,320.38934,322.76508,-14.9235,966.8683,0.0,82.9394 +2023-03-18 11:00:00,11.588357,16.0,320.9541,323.13,-14.7235,967.57227,0.0,83.66472 +2023-03-18 12:00:00,11.525623,16.0602,321.34018,322.8446,-15.4735,967.6898,0.0,84.62848 +2023-03-18 13:00:00,11.621101,16.042442,322.34116,324.1301,-15.3735,968.46594,0.0,84.28565 +2023-03-18 14:00:00,11.403947,15.282016,324.63745,326.2059,-14.6235,969.47974,0.0,83.67786 +2023-03-18 15:00:00,12.762445,15.316984,327.8043,328.07394,-13.5234995,970.6635,0.0,82.100815 +2023-03-18 16:00:00,13.122881,15.454773,327.76324,327.95535,-12.7235,971.59235,0.0,82.55338 +2023-03-18 17:00:00,13.140016,15.160475,323.0428,323.58353,-11.9235,972.04865,0.0,82.66341 +2023-03-18 18:00:00,13.200758,15.262044,319.91663,320.05026,-11.2235,972.48254,0.0,83.43456 +2023-03-18 19:00:00,13.341664,15.6205,319.86456,320.1945,-10.6735,972.78925,0.0,83.16924 +2023-03-18 20:00:00,13.245754,15.512898,318.36655,318.39722,-10.2734995,972.87494,0.0,82.88718 +2023-03-18 21:00:00,12.306502,14.664924,321.26746,321.64523,-9.8235,972.9708,0.0,78.713974 +2023-03-18 22:00:00,11.536464,14.092905,317.45908,318.16397,-9.8235,973.0652,0.0,78.08006 +2023-03-18 23:00:00,10.466136,13.87732,315.77414,317.92078,-10.2734995,973.4411,0.0,78.640625 +2023-03-19 00:00:00,10.20049,14.300349,322.56833,323.53067,-11.7734995,973.1186,0.0,77.11397 +2023-03-19 01:00:00,9.963935,14.440223,321.51978,323.44745,-12.6735,973.3951,0.0,76.63731 +2023-03-19 02:00:00,9.14385,13.587127,318.991,321.27432,-13.1735,973.66345,0.0,75.595505 +2023-03-19 03:00:00,8.417245,12.88177,313.55594,317.5169,-13.6735,973.74255,0.0,73.623604 +2023-03-19 04:00:00,7.9812284,12.452309,307.87503,313.04752,-14.0735,973.466,0.0,70.49806 +2023-03-19 05:00:00,7.4886575,11.703418,304.1145,310.495,-14.2235,973.05597,0.0,67.53028 +2023-03-19 06:00:00,6.621178,10.543718,295.01685,305.34827,-14.5234995,972.5183,0.0,66.5996 +2023-03-19 07:00:00,6.1,9.4371605,280.3888,295.75043,-14.9735,971.5707,0.0,67.354004 +2023-03-19 08:00:00,6.1131005,9.217917,266.24835,285.0916,-15.2235,970.85547,0.0,67.294975 +2023-03-19 09:00:00,6.9123073,10.704205,255.76268,271.60596,-15.0234995,970.24,0.0,65.34474 +2023-03-19 10:00:00,7.6844,12.291867,251.80074,262.99072,-14.4235,969.618,0.0,63.827724 +2023-03-19 11:00:00,8.1412525,12.682666,242.176,252.56503,-14.2235,969.19055,0.0,66.67134 +2023-03-19 12:00:00,8.105554,12.529964,231.009,241.38963,-14.4235,969.1466,0.0,68.93863 +2023-03-19 13:00:00,8.280701,12.963024,222.5529,231.89238,-14.1735,968.4469,0.0,68.4106 +2023-03-19 14:00:00,9.340771,14.142136,217.60606,224.9999,-11.9735,968.07623,0.0,67.20285 +2023-03-19 15:00:00,10.234256,15.198026,213.84537,219.66072,-9.3735,967.8753,0.0,66.42862 +2023-03-19 16:00:00,9.305912,17.080105,208.21725,216.66872,-7.2735,967.1823,0.0,75.14873 +2023-03-19 17:00:00,10.555094,18.083418,205.8367,213.95374,-4.9235,965.9655,0.0,72.68108 +2023-03-19 18:00:00,10.7354555,18.665743,205.37152,213.86037,-2.2235,964.8088,0.0,70.99542 +2023-03-19 19:00:00,10.977249,17.835358,210.0685,214.49203,-1.0735,963.43005,0.0,65.74251 +2023-03-19 20:00:00,11.9570055,17.034376,209.56648,212.29059,1.1265,962.0639,0.0,58.235233 +2023-03-19 21:00:00,11.940687,16.9685,206.3504,209.28409,1.9764999,960.2417,0.0,53.96557 +2023-03-19 22:00:00,12.435433,17.700283,207.80136,210.18645,2.6764998,959.14606,0.0,52.33368 +2023-03-19 23:00:00,12.316655,17.649078,209.68709,211.79887,3.0265,958.3612,0.0,52.03428 +2023-03-20 00:00:00,11.449454,16.696407,205.89359,209.02118,1.9764999,958.255,0.0,55.216423 +2023-03-20 01:00:00,11.1507845,16.50515,209.55359,212.63092,1.7765,957.9327,0.0,54.324623 +2023-03-20 02:00:00,11.783463,17.334936,210.04634,213.23172,1.5765,957.32654,0.0,53.854797 +2023-03-20 03:00:00,12.1757965,18.006943,213.95113,215.27884,1.2765,957.0795,0.0,52.949806 +2023-03-20 04:00:00,12.660568,18.287975,216.32692,218.56198,0.97650003,956.9271,0.0,53.07011 +2023-03-20 05:00:00,10.564564,15.945219,229.22232,228.81418,0.2765,957.4536,0.0,54.11835 +2023-03-20 06:00:00,7.9177017,12.382246,242.14044,238.8776,-0.9235,957.5975,0.0,57.470234 +2023-03-20 07:00:00,5.9135437,9.102198,273.87845,268.74097,-2.9235,957.58057,0.0,67.11446 +2023-03-20 08:00:00,5.161395,7.4330344,305.53775,303.47632,-6.2235,957.2939,0.0,87.401215 +2023-03-20 09:00:00,5.307542,7.2718635,317.29062,328.4958,-7.4735,957.41534,0.0,87.61809 +2023-03-20 10:00:00,5.544367,7.826238,320.85602,333.43503,-8.3235,957.523,0.0,87.53379 +2023-03-20 11:00:00,5.8249464,8.263776,325.4914,338.71353,-9.4735,957.94446,0.0,88.82138 +2023-03-20 12:00:00,5.27731,7.180529,332.9495,347.125,-9.3235,958.3536,0.0,88.131744 +2023-03-20 13:00:00,5.5542774,7.7278714,336.66592,349.5626,-9.3735,959.19226,0.0,87.08111 +2023-03-20 14:00:00,4.792703,7.8230433,336.6444,355.60138,-8.8735,959.95764,0.0,88.875465 +2023-03-20 15:00:00,5.440588,8.202438,342.8972,358.60284,-7.6235,960.5946,0.0,88.9869 +2023-03-20 16:00:00,5.921149,7.0007143,355.15607,359.18155,-6.2235,961.26056,0.0,88.76569 +2023-03-20 17:00:00,5.5326304,6.166036,6.2257357,8.392845,-4.9235,961.5254,0.0,87.86606 +2023-03-20 18:00:00,5.0159745,5.5326304,4.5738406,6.2257357,-4.1735,961.6771,0.0,87.93761 +2023-03-20 19:00:00,5.2469034,5.770615,7.666714,8.97255,-3.2235,961.9625,0.0,89.029945 +2023-03-20 20:00:00,5.4120235,5.9774575,16.09089,17.525654,-2.5735002,961.90326,0.0,86.44724 +2023-03-20 21:00:00,5.5542774,6.2241464,23.33406,23.6821,-1.9735,961.64453,0.0,84.90322 +2023-03-20 22:00:00,5.948109,6.664833,26.995766,27.718414,-1.5735,961.6293,0.0,84.00075 +2023-03-20 23:00:00,5.3488317,6.894201,20.806877,23.962492,-1.5735,961.72375,0.0,87.200195 +2023-03-21 00:00:00,4.651881,6.9065185,25.463305,34.3804,-3.3735,962.0269,0.0,86.69063 +2023-03-21 01:00:00,4.7169905,7.7233415,32.005356,41.325405,-4.6735,961.8594,0.0,85.89395 +2023-03-21 02:00:00,4.609772,7.840918,40.601215,52.253136,-4.9235,961.99774,0.0,83.26322 +2023-03-21 03:00:00,4.738143,7.8549347,45.85501,58.53591,-5.2735,962.02094,0.0,82.57679 +2023-03-21 04:00:00,5.360038,8.955445,53.343807,60.572647,-5.3234997,961.72754,0.0,80.985596 +2023-03-21 05:00:00,6.0373836,9.861542,63.435013,67.33541,-5.3735,961.52826,0.0,80.66463 +2023-03-21 06:00:00,5.731492,9.518929,83.99109,86.3862,-5.7735,962.1081,0.0,80.92039 +2023-03-21 07:00:00,5.770615,9.426027,81.02746,85.741234,-5.9735,961.59467,0.0,83.12723 +2023-03-21 08:00:00,5.869412,9.3771,76.20049,82.64771,-6.1235,961.3754,0.0,85.06988 +2023-03-21 09:00:00,5.7567353,9.0094385,72.82401,81.06052,-6.2235,960.6939,0.0,86.72599 +2023-03-21 10:00:00,5.7974133,9.093405,75.004875,81.78088,-6.4235,960.4639,0.0,87.38123 +2023-03-21 11:00:00,5.8523498,8.994442,73.11313,81.68981,-6.2735,960.4946,0.0,88.076355 +2023-03-21 12:00:00,4.8104053,7.496666,69.30447,80.78905,-6.2235,960.4106,0.0,86.39012 +2023-03-21 13:00:00,4.9040794,7.5239615,73.41259,85.42616,-5.8234997,960.3975,0.0,86.76778 +2023-03-21 14:00:00,4.0853395,7.610519,68.45896,86.98728,-4.9735,960.287,0.0,89.559814 +2023-03-21 15:00:00,4.560702,7.3109508,74.74483,93.1363,-3.5735002,960.47473,0.0,88.99959 +2023-03-21 16:00:00,4.554119,6.3505907,81.15827,97.236824,-2.2735002,960.5451,0.0,90.1173 +2023-03-21 17:00:00,4.8259716,7.077429,95.94677,113.30492,-1.0735,959.9318,0.0,87.574356 +2023-03-21 18:00:00,4.464303,7.2201114,105.59287,126.55257,0.6265,959.3185,0.0,85.51351 +2023-03-21 19:00:00,4.244997,7.5,105.01841,126.86999,2.5765,958.2753,0.0,84.18994 +2023-03-21 20:00:00,4.8010416,7.4946647,88.80654,108.676796,2.9764998,956.74316,0.0,83.329636 +2023-03-21 21:00:00,5.080354,7.81025,100.20392,129.80553,4.1765003,955.45636,0.0,81.99611 +2023-03-21 22:00:00,5.8591805,9.741664,152.56036,162.68097,5.9265003,955.31116,0.0,75.50708 +2023-03-21 23:00:00,7.0491138,11.002273,148.3393,154.1337,5.7265,954.51636,0.0,75.472694 +2023-03-22 00:00:00,5.7384667,9.464143,131.4676,141.43471,4.0765,955.24835,0.0,77.954994 +2023-03-22 01:00:00,8.285529,12.844455,156.52899,163.25795,4.6265,954.8784,0.0,77.20468 +2023-03-22 02:00:00,10.339246,14.776332,184.99365,185.82625,4.7765,955.85345,0.4,79.47711 +2023-03-22 03:00:00,9.700516,13.901438,180.59064,180.82433,3.9265,955.59845,0.2,84.34883 +2023-03-22 04:00:00,8.598837,12.473972,188.69542,192.03058,3.4764998,955.7973,0.1,89.26886 +2023-03-22 05:00:00,9.726767,13.947401,194.89352,197.52565,3.3765,955.6837,0.0,91.19272 +2023-03-22 06:00:00,9.377633,13.565028,201.91492,203.9196,2.7765,955.56964,0.0,92.46597 +2023-03-22 07:00:00,8.598255,12.592458,213.13562,214.3211,2.2264998,956.03235,0.0,93.43438 +2023-03-22 08:00:00,7.3348484,10.570241,244.1337,246.58786,2.0265,956.751,0.1,94.43613 +2023-03-22 09:00:00,6.7119293,9.302151,266.58347,268.76804,0.72650003,957.1626,0.0,88.713806 +2023-03-22 10:00:00,8.492938,11.1830225,282.23608,282.91782,-0.5235,958.054,0.0,86.020966 +2023-03-22 11:00:00,8.004998,10.938465,282.99463,284.29034,-3.3235002,958.44586,0.0,85.067986 +2023-03-22 12:00:00,7.800641,11.029053,270.7345,274.15958,-6.1235,958.1642,0.0,85.06988 +2023-03-22 13:00:00,7.8057675,11.175867,272.20255,276.67978,-6.2735,958.51135,0.0,85.38375 +2023-03-22 14:00:00,8.697701,10.846659,278.59583,282.2423,-5.1735,959.3963,0.0,84.85246 +2023-03-22 15:00:00,8.523497,9.861542,292.05112,292.66458,-4.0235,960.1009,0.0,86.29353 +2023-03-22 16:00:00,8.2927685,9.291393,303.6901,304.03217,-2.9235,960.7939,0.0,86.41037 +2023-03-22 17:00:00,8.261961,9.183136,308.11832,308.36752,-2.4235,960.9879,0.0,86.78865 +2023-03-22 18:00:00,7.545197,8.323461,304.74326,305.21768,-2.0735002,961.3411,0.0,86.49966 +2023-03-22 19:00:00,7.5591,8.318654,297.58194,297.18103,-1.5735,961.81836,0.0,85.58719 +2023-03-22 20:00:00,8.363014,9.350936,318.87863,318.46832,-1.5735,960.5893,0.0,86.55178 +2023-03-22 21:00:00,8.028075,9.027181,320.55997,320.84457,-1.3235,961.0171,0.0,86.57774 +2023-03-22 22:00:00,7.9630394,8.962701,324.71317,324.53656,-1.2235,961.32043,0.0,85.30728 +2023-03-22 23:00:00,7.2945185,8.547514,331.32693,331.33615,-1.4735,961.5544,0.0,85.59827 +2023-03-23 00:00:00,6.7720013,7.4330344,343.70587,342.78384,-3.0235002,962.7585,0.0,86.72686 +2023-03-23 01:00:00,5.345091,6.4195013,342.58194,341.8472,-3.7735002,963.4584,0.0,89.999084 +2023-03-23 02:00:00,5.4120235,6.456005,343.90912,343.8107,-3.9235,963.23914,0.0,90.32879 +2023-03-23 03:00:00,6.0827627,8.515867,350.53775,350.53775,-4.4235,963.13824,0.0,90.9795 +2023-03-23 04:00:00,6.676077,9.4371605,343.4651,344.63834,-5.4735,963.3971,0.0,90.208244 +2023-03-23 05:00:00,6.484597,9.070832,342.96216,345.9637,-6.0734997,963.17993,0.0,90.16098 +2023-03-23 06:00:00,5.0990195,7.467262,334.44006,339.62347,-6.3234997,964.07306,0.0,88.75673 +2023-03-23 07:00:00,5.239275,7.655063,336.3706,340.14468,-6.6735,964.0955,0.0,89.070496 +2023-03-23 08:00:00,5.162364,8.077747,338.40463,344.93146,-7.1235,964.0027,0.0,90.42872 +2023-03-23 09:00:00,5.5226803,7.515318,328.3246,334.79892,-7.1235,964.5692,0.0,89.031006 +2023-03-23 10:00:00,6.0373836,7.7999997,333.43503,337.3801,-7.1235,964.66364,0.0,87.652565 +2023-03-23 11:00:00,5.635601,8.616263,332.52567,338.19852,-7.7735,965.28424,0.0,90.02527 +2023-03-23 12:00:00,5.3488317,8.926926,339.1931,347.05347,-8.6735,965.09656,0.0,91.02239 +2023-03-23 13:00:00,4.4944406,8.121576,339.14545,350.07382,-8.7734995,965.8306,0.0,91.01505 +2023-03-23 14:00:00,5.096077,6.0016665,344.05453,349.43903,-8.1735,966.4284,0.0,90.70234 +2023-03-23 15:00:00,4.3081317,4.6840153,338.19852,343.8865,-7.4235,967.15106,0.0,92.54368 +2023-03-23 16:00:00,4.1231055,3.992493,337.1663,337.93204,-6.2735,968.0502,0.0,91.1957 +2023-03-23 17:00:00,2.8017852,3.1,357.95462,360.0,-5.3735,967.6683,0.0,84.82889 +2023-03-23 18:00:00,2.4738634,2.624881,14.036275,17.744766,-4.6735,967.15,0.0,80.76695 +2023-03-23 19:00:00,2.236068,2.2847319,333.43503,336.8014,-4.0235,967.47107,0.0,77.21209 +2023-03-23 20:00:00,3.4205263,3.6400552,322.12497,322.81522,-3.4235,967.21436,0.0,77.312744 +2023-03-23 21:00:00,4.0718546,4.3863425,335.32315,335.77228,-3.0735002,966.43427,0.0,76.48737 +2023-03-23 22:00:00,3.733631,4.1303754,352.30405,353.04715,-2.8235002,965.9174,0.0,76.82351 +2023-03-23 23:00:00,3.622154,3.9319208,6.3401003,7.3056703,-3.0735002,965.30023,0.0,78.563705 +2023-03-24 00:00:00,2.6476402,3.238827,10.885482,8.8805895,-5.0734997,966.0294,0.0,84.53792 +2023-03-24 01:00:00,2.8231187,3.7,22.93213,18.924751,-7.1735,965.50305,0.0,86.625946 +2023-03-24 02:00:00,1.7029386,2.8301945,40.236294,32.005356,-7.3234997,965.6611,0.0,87.29075 +2023-03-24 03:00:00,0.8,1.6552945,90.0,64.98315,-6.1235,966.0978,0.0,85.733055 +2023-03-24 04:00:00,1.029563,1.811077,119.05451,96.340096,-6.1235,965.72,0.0,85.733055 +2023-03-24 05:00:00,1.360147,2.0518284,162.89719,136.97493,-6.5734997,965.344,0.0,86.016975 +2023-03-24 06:00:00,0.53851646,1.2806249,158.19853,128.65984,-6.1235,964.96436,0.0,85.733055 +2023-03-24 07:00:00,0.5830952,1.1661904,149.03632,120.96369,-6.2235,964.47174,0.0,86.39012 +2023-03-24 08:00:00,1.118034,1.6278821,153.43501,132.5104,-6.4235,964.336,0.0,87.38123 +2023-03-24 09:00:00,2.0615528,2.6400757,157.1663,142.69597,-9.0735,963.2195,0.0,92.07784 +2023-03-24 10:00:00,2.2203603,2.8999999,144.16226,133.60289,-10.1235,962.5268,0.0,93.4857 +2023-03-24 11:00:00,3.4999998,4.675468,143.13002,131.53168,-10.1235,962.2437,0.0,92.37624 +2023-03-24 12:00:00,3.231099,5.4405885,158.19853,143.97253,-10.3735,962.6625,0.0,92.36046 +2023-03-24 13:00:00,2.7294688,5.4405885,151.55717,143.97253,-9.4735,962.19147,0.0,92.78367 +2023-03-24 14:00:00,2.8653097,5.714018,150.75127,147.14429,-7.1735,962.48145,0.0,95.10522 +2023-03-24 15:00:00,3.5805027,6.242595,144.09018,144.78232,-4.1735,962.7165,0.0,92.03836 +2023-03-24 16:00:00,3.4655447,6.0,133.83095,143.13002,-2.3735,961.94324,0.0,86.1438 +2023-03-24 17:00:00,3.5468295,5.5605755,130.426,142.3057,-1.1735,961.6138,0.0,82.80251 +2023-03-24 18:00:00,3.4999998,4.2520585,126.86999,131.18582,0.2765,961.2365,0.0,79.67672 +2023-03-24 19:00:00,2.570992,2.8792362,103.49575,110.32322,1.4265,960.6085,0.0,78.10374 +2023-03-24 20:00:00,2.3345234,2.6925824,80.13426,111.801476,1.8265,959.6452,0.0,81.980034 +2023-03-24 21:00:00,2.8844411,2.6076808,56.309914,85.60138,1.6765,958.0082,0.0,87.199814 +2023-03-24 22:00:00,3.3955853,4.3011627,76.37299,88.667816,1.6265,956.7687,0.0,87.83071 +2023-03-24 23:00:00,3.6055512,5.1971145,70.559875,78.90632,1.7265,955.9364,0.0,83.477486 +2023-03-25 00:00:00,4.060788,6.203225,80.07382,88.15243,-0.8235,956.6714,0.0,83.46779 +2023-03-25 01:00:00,4.4,7.542546,90.0,96.08843,-0.5235,956.5411,0.0,78.96386 +2023-03-25 02:00:00,4.00125,7.05762,88.56794,97.32632,-0.5735,955.68036,0.0,77.49136 +2023-03-25 03:00:00,3.710795,6.203225,75.96373,91.84757,-1.6735,954.61383,0.0,79.68166 +2023-03-25 04:00:00,4.118252,6.841052,60.94549,74.74483,-2.2235,953.84393,0.0,79.90049 +2023-03-25 05:00:00,3.613862,6.5924196,75.57919,80.39487,-3.4235,953.6062,0.0,80.02501 +2023-03-25 06:00:00,3.224903,6.0207973,82.875084,85.23644,-3.8735,953.7055,0.0,79.04143 +2023-03-25 07:00:00,3.1256998,5.707889,82.64771,86.98728,-3.4735,953.4073,0.0,77.90012 +2023-03-25 08:00:00,2.5553863,4.6572523,59.420856,75.068535,-1.6235,953.39484,0.0,76.73514 +2023-03-25 09:00:00,2.6400757,4.4777226,37.30404,60.572647,-1.7235,953.0916,0.0,78.47982 +2023-03-25 10:00:00,2.505993,4.080441,28.610369,53.972538,-1.9235,952.9578,0.0,79.945366 +2023-03-25 11:00:00,3.0413814,4.494441,9.462261,32.275623,-2.1735,952.9087,0.0,81.43318 +2023-03-25 12:00:00,4.0804415,5.9008474,342.8972,359.029,-2.3735,952.6802,0.0,81.09772 +2023-03-25 13:00:00,4.7885275,7.3082147,331.29416,343.3007,-3.2235,953.2681,0.0,82.84776 +2023-03-25 14:00:00,3.6249137,7.6118326,335.55606,350.1665,-1.5735,953.97174,0.0,86.55178 +2023-03-25 15:00:00,3.640055,6.902898,344.05453,1.6602461,-0.77349997,954.5067,0.0,85.041275 +2023-03-25 16:00:00,3.905125,7.5059977,346.67545,2.2905633,-0.1735,955.0965,0.0,82.931725 +2023-03-25 17:00:00,4.0521603,7.900633,344.24875,359.27478,0.3765,955.7706,0.0,82.69626 +2023-03-25 18:00:00,4.8270073,6.2968245,346.82742,349.93936,1.5265,956.2763,0.0,70.95014 +2023-03-25 19:00:00,4.964876,6.1684685,341.2,343.03375,1.6265,956.57947,0.0,71.766075 +2023-03-25 20:00:00,5.27731,6.574192,332.9495,333.82477,1.5765,956.56976,0.0,75.57701 +2023-03-25 21:00:00,4.992995,6.2433968,327.26477,328.09195,1.1265,956.9561,0.0,79.21713 +2023-03-25 22:00:00,4.6690474,5.9464273,316.73566,317.72638,0.8265,957.3712,0.0,83.67249 +2023-03-25 23:00:00,4.5254836,6.438167,315.0001,316.88815,0.47650003,957.6816,0.0,86.44454 +2023-03-26 00:00:00,4.263801,6.8600287,320.7106,323.29706,-1.5235,958.7085,0.0,90.17564 +2023-03-26 01:00:00,4.62277,8.070935,321.1466,326.113,-3.2235,958.93835,0.0,92.445625 +2023-03-26 02:00:00,4.967897,8.46286,319.89914,324.61966,-4.0235,959.345,0.0,92.396835 +2023-03-26 03:00:00,5.491812,9.329523,326.88864,329.03632,-4.7235,960.0543,0.0,93.05888 +2023-03-26 04:00:00,5.936329,9.848858,327.38077,330.8325,-5.3735,960.7725,0.0,93.73568 +2023-03-26 05:00:00,5.7982755,9.712878,327.6804,331.0601,-5.8735,960.95435,0.0,94.070045 +2023-03-26 06:00:00,5.905929,9.974467,331.69934,334.46262,-5.9735,961.2169,0.0,92.98797 +2023-03-26 07:00:00,6.041523,9.972463,335.55606,338.83865,-6.6735,961.3568,0.0,91.16716 +2023-03-26 08:00:00,5.8137765,9.693296,333.43503,338.19852,-7.4735,961.66425,0.0,89.69843 +2023-03-26 09:00:00,5.4378304,9.123595,327.77127,333.9967,-8.2235,961.7921,0.0,89.63589 +2023-03-26 10:00:00,5.916925,9.704638,329.53452,333.69904,-8.8235,961.8557,0.0,90.653015 +2023-03-26 11:00:00,7.5769386,12.149074,337.49643,339.77505,-9.2734995,961.5729,0.0,90.97827 +2023-03-26 12:00:00,6.8007355,11.0367565,340.23273,342.05746,-9.6235,962.25446,0.0,89.51761 +2023-03-26 13:00:00,6.053924,9.962429,337.6713,340.65558,-9.7235,963.1772,0.0,89.86615 +2023-03-26 14:00:00,5.948109,7.605919,333.00424,335.11966,-8.8735,964.2052,0.0,89.581215 +2023-03-26 15:00:00,6.5924196,7.2498274,337.71436,335.55606,-7.5734997,964.75934,0.0,87.95219 +2023-03-26 16:00:00,6.315853,7.077429,336.68225,336.69507,-6.3735,964.91296,0.0,89.09671 +2023-03-26 17:00:00,6.5924196,7.31642,337.71436,338.34393,-4.9735,965.1049,0.0,91.287506 +2023-03-26 18:00:00,6.539113,7.392564,336.5713,336.90314,-4.0735,965.3822,0.0,91.004745 +2023-03-26 19:00:00,6.530697,7.515318,334.61212,334.79892,-3.3235002,965.53357,0.0,91.058495 +2023-03-26 20:00:00,6.315853,7.392564,336.68225,336.90314,-2.6735,965.4751,0.0,89.41247 +2023-03-26 21:00:00,6.0926185,7.169379,336.8014,337.01126,-2.2735002,965.4603,0.0,86.47874 +2023-03-26 22:00:00,6.407808,7.7999997,337.0362,337.3801,-2.1235,965.49036,0.0,84.249886 +2023-03-26 23:00:00,6.44748,8.246211,336.21796,337.1663,-2.7235,965.55945,0.0,87.08525 +2023-03-27 00:00:00,5.011986,7.379024,331.38962,333.43503,-4.0235,966.43164,0.0,86.62295 +2023-03-27 01:00:00,4.7010636,8.011242,330.70874,335.67444,-5.7735,966.7364,0.0,87.10891 +2023-03-27 02:00:00,4.7413077,8.207923,332.3541,337.80966,-6.4735,967.06433,0.0,87.37623 +2023-03-27 03:00:00,4.6647615,8.1541395,329.03632,336.89365,-7.0235,967.5173,0.0,86.980835 +2023-03-27 04:00:00,4.6010866,7.803204,317.64258,329.16223,-7.6735,967.7599,0.0,86.91349 +2023-03-27 05:00:00,4.7423625,8.130191,317.5638,328.06937,-8.0735,968.1485,0.0,84.83989 +2023-03-27 06:00:00,4.4598207,7.769813,317.72638,328.151,-8.3735,968.46326,0.0,83.139725 +2023-03-27 07:00:00,4.104875,7.4323616,325.92276,336.19403,-8.8235,968.2744,0.0,82.75001 +2023-03-27 08:00:00,3.8910153,7.0342026,334.09354,345.17346,-9.3735,968.064,0.0,83.00748 +2023-03-27 09:00:00,4.118252,6.992138,330.9455,343.37915,-9.6235,968.1058,0.0,83.97811 +2023-03-27 10:00:00,4.5177426,7.7794604,332.30063,342.03076,-9.9235,968.231,0.0,85.29851 +2023-03-27 11:00:00,4.3382025,7.6844,334.02567,341.80075,-10.4735,968.68024,0.0,86.61755 +2023-03-27 12:00:00,4.031129,6.9857,336.61475,346.75946,-10.1235,969.32104,0.0,86.30823 +2023-03-27 13:00:00,3.324154,6.0406957,338.83865,353.34567,-9.6735,969.69965,0.0,87.05001 +2023-03-27 14:00:00,3.2649658,5.903389,332.6502,349.26114,-8.5234995,970.41437,0.0,88.207886 +2023-03-27 15:00:00,4.3266616,6.2169123,326.3099,334.25934,-7.0734997,971.3784,0.0,89.035416 +2023-03-27 16:00:00,5.3263493,6.5436993,320.33218,321.20343,-5.6235,972.5288,0.0,90.19646 +2023-03-27 17:00:00,5.080354,6.021628,323.8067,324.46225,-4.4735,972.8595,0.0,87.24016 +2023-03-27 18:00:00,4.661545,5.515433,337.28555,337.6198,-3.3735,972.8001,0.0,85.38571 +2023-03-27 19:00:00,4.14367,4.7759814,340.25308,340.4268,-2.7235,972.83716,0.0,83.859665 +2023-03-27 20:00:00,3.939543,4.5694637,336.0375,336.8014,-2.1735,972.6644,0.0,80.21098 +2023-03-27 21:00:00,4.701064,5.5542774,336.16125,336.66592,-1.8735,972.2519,0.0,79.65145 +2023-03-27 22:00:00,5.664804,6.835203,339.3255,339.44388,-2.1235,972.3907,0.0,82.36733 +2023-03-27 23:00:00,6.074537,7.5960517,339.77505,339.17902,-2.9235,972.3243,0.0,85.114 +2023-03-28 00:00:00,5.8694124,8.338465,336.92957,337.43295,-5.2235,973.1778,0.0,86.49668 +2023-03-28 01:00:00,5.60803,8.547514,328.86108,331.33615,-6.1735,973.9263,0.0,89.80558 +2023-03-28 02:00:00,6.6730804,9.305912,330.3617,331.78275,-6.0235,974.80743,0.0,87.08345 +2023-03-28 03:00:00,6.2177167,9.481033,332.19864,333.70526,-7.0235,975.35486,0.0,82.989655 +2023-03-28 04:00:00,6.0827627,9.481033,332.5925,333.70526,-8.1735,975.2081,0.0,84.827965 +2023-03-28 05:00:00,5.5226803,8.906739,328.3246,331.13293,-9.1235,975.10144,0.0,87.10695 +2023-03-28 06:00:00,4.6400433,7.8549347,322.88306,328.5359,-10.2734995,975.42267,0.0,84.57419 +2023-03-28 07:00:00,4.2801867,7.494665,322.59457,328.64297,-11.4235,975.45825,0.0,82.0599 +2023-03-28 08:00:00,4.604346,8.013114,325.6196,330.87604,-12.2235,975.285,0.0,80.61035 +2023-03-28 09:00:00,5.1312766,8.819297,326.92932,330.81927,-12.8235,975.15424,0.0,79.52567 +2023-03-28 10:00:00,4.4102154,7.877182,327.03058,331.15744,-13.2734995,974.67883,0.0,78.79558 +2023-03-28 11:00:00,3.4669871,6.307139,326.76828,334.65387,-13.8235,974.1809,0.0,79.36553 +2023-03-28 12:00:00,2.1095023,3.7121422,301.4295,332.74475,-14.7734995,973.4058,0.0,80.5568 +2023-03-28 13:00:00,2.2472205,1.7088008,237.72438,290.55612,-13.1735,973.09766,0.0,77.834465 +2023-03-28 14:00:00,3.0232434,3.3301651,214.21576,221.34767,-10.7734995,973.14514,0.0,78.23917 +2023-03-28 15:00:00,3.9357338,6.9065185,207.21602,214.3804,-8.3235,973.0995,0.0,82.16207 +2023-03-28 16:00:00,5.4230986,7.379024,202.78244,206.56499,-5.6735,973.2743,0.0,79.064926 +2023-03-28 17:00:00,7.0830784,8.935883,210.5475,211.73347,-3.2235,972.7361,0.0,71.340256 +2023-03-28 18:00:00,7.6844,9.822932,214.93102,215.46996,-1.1735,971.82465,0.0,67.24794 +2023-03-28 19:00:00,7.4330344,9.5692215,213.4763,214.35439,0.47650003,970.6386,0.0,66.09747 +2023-03-28 20:00:00,6.506919,8.7,226.24529,226.39711,1.9265,969.5978,0.0,67.92981 +2023-03-28 21:00:00,5.664804,8.19329,249.3255,250.0168,2.7765,968.72186,0.0,71.46272 +2023-03-28 22:00:00,5.515433,8.170679,292.3802,291.54105,2.6265,968.4092,0.0,75.482155 +2023-03-28 23:00:00,6.5,9.106591,329.48984,328.9284,0.8265,968.1536,0.0,81.84552 +2023-03-29 00:00:00,6.4140472,9.552486,329.03632,329.13916,-2.0735002,969.09235,0.0,84.255905 +2023-03-29 01:00:00,6.7230945,10.400001,337.249,337.3801,-4.8735,969.47107,0.0,82.949356 +2023-03-29 02:00:00,6.9354167,10.336827,335.2826,335.41843,-6.5235,970.07623,0.0,84.36263 +2023-03-29 03:00:00,7.3824115,10.288343,335.1707,334.68036,-8.4735,970.5192,0.0,78.30363 +2023-03-29 04:00:00,7.1309185,10.417773,337.75092,338.60703,-9.6235,970.5595,0.0,78.42936 +2023-03-29 05:00:00,6.964194,10.288342,344.16754,344.20752,-10.1235,970.831,0.0,77.39939 +2023-03-29 06:00:00,5.4424257,7.8434687,339.56708,340.6409,-10.5234995,971.7834,0.0,76.390915 +2023-03-29 07:00:00,5.9774575,8.256513,342.47433,343.10126,-10.9735,971.97,0.0,77.88706 +2023-03-29 08:00:00,5.7384667,7.8924017,337.45688,337.6593,-11.3735,972.7333,0.0,78.45978 +2023-03-29 09:00:00,5.724509,8.065358,340.6154,340.44165,-12.0735,972.5822,0.0,79.64461 +2023-03-29 10:00:00,5.1923018,7.4464755,344.3577,345.21722,-12.7734995,972.8076,0.0,80.86032 +2023-03-29 11:00:00,4.0853395,6.8007355,338.45895,342.8972,-13.7734995,973.43774,0.0,81.72444 +2023-03-29 12:00:00,3.352611,6.0016665,342.64587,349.43903,-15.3735,973.83844,0.0,83.57904 +2023-03-29 13:00:00,2.6476402,5.7035074,349.11453,357.99048,-15.6235,973.8772,0.0,83.899185 +2023-03-29 14:00:00,2.8442926,5.4037027,349.8754,2.1210518,-14.3235,974.63654,0.0,83.717125 +2023-03-29 15:00:00,2.9017239,3.7013512,358.0251,1.5481218,-12.6235,975.1978,0.0,83.249664 +2023-03-29 16:00:00,2.8160257,3.352611,16.504446,17.354122,-10.9735,975.27216,0.0,80.14311 +2023-03-29 17:00:00,2.3600848,2.6400757,36.38445,37.30404,-9.6235,974.9952,0.0,78.42936 +2023-03-29 18:00:00,2.1213202,2.3345237,44.999897,46.73567,-8.5234995,974.4735,0.0,72.54364 +2023-03-29 19:00:00,1.9798989,2.1931713,44.999897,46.8476,-7.5734997,973.91785,0.0,70.72207 +2023-03-29 20:00:00,1.7804494,2.0,51.842735,53.13002,-6.6735,973.35016,0.0,72.33415 +2023-03-29 21:00:00,1.421267,1.56205,50.710617,50.194473,-6.1735,972.6041,0.0,71.57904 +2023-03-29 22:00:00,1.555635,1.6970563,44.999897,44.999897,-5.7735,972.30914,0.0,68.60924 +2023-03-29 23:00:00,2.5495098,2.9068882,48.179924,49.185013,-5.9235,971.33356,0.0,69.12263 +2023-03-30 00:00:00,2.3086793,3.2572994,72.34979,72.12121,-8.6235,971.99786,0.0,76.418945 +2023-03-30 01:00:00,2.5179358,3.6124783,83.15732,85.23644,-10.8735,971.04816,0.0,80.81324 +2023-03-30 02:00:00,2.6019223,3.7054014,87.79745,93.093994,-11.3735,970.9408,0.0,81.068756 +2023-03-30 03:00:00,2.8071337,4.3416586,94.08554,104.67644,-11.3735,970.75214,0.0,80.73846 +2023-03-30 04:00:00,3.231099,5.5946403,111.801476,118.85556,-11.4735,969.8816,0.0,80.39411 +2023-03-30 05:00:00,3.3615472,6.328507,112.751015,121.42951,-10.7734995,968.99365,0.0,78.558685 +2023-03-30 06:00:00,3.4669871,7.1217976,123.23173,128.15727,-9.9735,968.5035,0.0,75.56236 +2023-03-30 07:00:00,3.9115214,7.465253,122.471176,129.0194,-9.1235,968.0225,0.0,72.717155 +2023-03-30 08:00:00,3.8832977,7.5927596,124.50858,130.19199,-8.7734995,967.6241,0.0,70.46848 +2023-03-30 09:00:00,4.103657,7.8568444,133.02507,137.5792,-7.8234997,967.53986,0.0,68.70556 +2023-03-30 10:00:00,4.2520585,7.998125,131.18582,137.53362,-7.3234997,966.6997,0.0,68.54025 +2023-03-30 11:00:00,4.632494,8.438602,122.660904,130.67485,-7.0235,965.62866,0.0,66.70665 +2023-03-30 12:00:00,5.4378304,9.860021,122.22874,126.75377,-6.9235,964.9886,0.0,68.628876 +2023-03-30 13:00:00,5.6938567,10.264989,120.61853,125.08356,-5.9235,964.24976,0.0,68.30441 +2023-03-30 14:00:00,6.0207973,10.429286,122.106224,124.451996,-4.0735,963.49243,0.0,68.17603 +2023-03-30 15:00:00,5.5542774,12.706297,113.33407,125.06599,-1.9235,961.8437,0.0,71.87652 +2023-03-30 16:00:00,6.488451,11.903781,118.539894,125.425865,-0.8235,960.7371,0.0,74.30771 +2023-03-30 17:00:00,6.3411355,10.272779,127.95429,131.44817,0.3265,959.8277,0.0,67.580315 +2023-03-30 18:00:00,4.5793014,8.105554,121.60746,128.991,0.6765,958.94995,0.0,71.044334 +2023-03-30 19:00:00,5.8523498,9.617692,109.98319,117.89718,1.3765,957.09894,0.0,72.2526 +2023-03-30 20:00:00,5.554278,9.433981,103.53587,111.124794,2.0765,955.5305,0.0,75.10902 +2023-03-30 21:00:00,5.5785303,9.693296,104.5345,111.80147,2.2264998,954.42395,0.0,77.659454 +2023-03-30 22:00:00,5.7775426,9.9985,113.459045,120.66885,2.8765,953.69617,0.0,81.52675 +2023-03-30 23:00:00,5.9665737,10.346497,103.57046,110.36169,2.5765,952.3145,0.0,86.97332 +2023-03-31 00:00:00,6.806614,11.344162,79.845795,84.94284,1.7265,952.24695,0.0,92.070786 +2023-03-31 01:00:00,7.119691,12.0415945,79.47927,85.23644,1.2765,951.02563,0.0,92.7116 +2023-03-31 02:00:00,6.2241464,10.623088,66.3179,75.83292,1.4265,950.9599,0.2,92.38561 +2023-03-31 03:00:00,6.2433968,10.438869,58.091934,66.87345,1.3265,950.37317,4.2,92.714485 +2023-03-31 04:00:00,5.7939625,9.786215,68.74943,78.80493,1.2265,949.50287,0.8,93.7206 +2023-03-31 05:00:00,4.318565,7.2718635,42.184383,58.495792,1.0765,948.7172,0.8,94.393906 +2023-03-31 06:00:00,4.6690474,7.545197,43.26433,55.256752,0.8265,947.53455,0.1,95.76016 +2023-03-31 07:00:00,4.313931,7.03278,45.939102,60.15416,0.5765,946.63525,0.0,97.14962 +2023-03-31 08:00:00,4.4687805,7.060453,40.462154,52.480812,0.5265,945.96375,0.1,97.85451 +2023-03-31 09:00:00,5.0635953,7.467262,9.090207,20.37652,0.22649999,945.81134,6.0,97.849266 +2023-03-31 10:00:00,6.3906183,9.841239,20.136398,25.26307,0.0765,945.49884,2.9,97.84664 +2023-03-31 11:00:00,6.621933,10.511898,38.25447,39.59618,-0.07350001,945.09186,0.1,100.0 +2023-03-31 12:00:00,5.661272,8.987213,35.655422,42.745415,-0.3235,945.98926,0.0,96.77502 +2023-03-31 13:00:00,4.89183,8.04301,40.855286,51.56267,-0.22350001,945.81934,0.4,98.19825 +2023-03-31 14:00:00,5.5,8.7,36.86999,46.39712,-0.07350001,945.3755,0.4,98.558044 +2023-03-31 15:00:00,6.2433968,9.526804,31.908066,39.03552,-0.07350001,944.619,0.1,99.63777 +2023-03-31 16:00:00,6.9115844,10.980892,31.390213,37.600483,0.026500002,944.07074,0.1,99.27729 +2023-03-31 17:00:00,7.2862887,11.269872,43.331707,48.95765,0.42650002,943.20184,0.2,99.63926 +2023-03-31 18:00:00,7.35527,11.200446,46.10162,52.61847,0.6765,942.11456,0.2,99.281136 +2023-03-31 19:00:00,7.0434365,11.353414,51.34017,58.69011,1.2765,940.71515,0.8,98.928665 +2023-03-31 20:00:00,6.9971423,11.315917,59.03632,64.34078,1.8265,939.4949,0.4,98.933464 +2023-03-31 21:00:00,6.0440054,9.741663,51.044094,58.43108,2.2264998,938.6241,7.1,98.233765 +2023-03-31 22:00:00,3.748333,4.545327,313.91916,320.35587,1.6265,940.1193,3.6,98.93172 +2023-03-31 23:00:00,5.2924476,8.45281,337.79648,349.08893,1.3765,939.6937,0.2,97.869255 +2023-04-01 00:00:00,5.0039983,7.6118326,2.2905633,9.833496,-0.023500003,941.8861,0.1,97.48973 +2023-04-01 01:00:00,5.0039983,7.7317524,357.70944,5.19435,-0.27350003,942.3109,0.4,98.1975 +2023-04-01 02:00:00,5.1478148,7.8,352.18478,360.0,-0.4235,942.3768,0.6,98.55391 +2023-04-01 03:00:00,7.8549347,11.896217,338.33395,343.39294,-0.7235,942.9808,1.0,98.91101 +2023-04-01 04:00:00,10.18332,15.021318,352.6657,356.94717,-0.9235,944.0769,1.8,97.82899 +2023-04-01 05:00:00,11.443775,16.102795,354.98697,358.93253,-1.3735,945.0296,2.1,97.10407 +2023-04-01 06:00:00,12.766362,17.334934,354.15552,356.36188,-1.9235,946.7189,1.8,94.95884 +2023-04-01 07:00:00,13.606616,18.270195,352.82285,354.976,-2.3735,948.5212,0.9,92.496956 +2023-04-01 08:00:00,14.375326,19.05387,348.76828,350.63663,-2.4235,950.49615,1.1,93.534645 +2023-04-01 09:00:00,11.859595,15.685024,340.80106,341.796,-1.6235,952.4495,1.2,90.84057 +2023-04-01 10:00:00,14.038875,18.317478,337.8196,339.88318,-2.0735002,954.4407,0.0,81.14026 +2023-04-01 11:00:00,12.794139,17.309246,332.033,334.3232,-3.9235,956.71924,0.0,81.18641 +2023-04-01 12:00:00,12.167169,16.531485,334.69864,336.8469,-4.8735,957.18976,0.0,81.050476 +2023-04-01 13:00:00,11.510429,15.742935,330.31696,332.78397,-5.4735,958.76855,0.0,81.59506 +2023-04-01 14:00:00,9.89798,13.641848,330.327,332.49585,-5.2735,960.6984,0.0,81.939926 +2023-04-01 15:00:00,7.7897367,11.046267,330.8026,333.667,-4.6235,961.9639,0.0,83.301765 +2023-04-01 16:00:00,7.2006946,8.633077,332.72333,334.62228,-3.8235002,963.1648,0.0,81.20064 +2023-04-01 17:00:00,6.7201195,7.545197,323.47104,325.25674,-3.1235,964.06146,0.0,80.06988 +2023-04-01 18:00:00,6.296825,7.0724816,313.06943,313.85434,-2.7235,964.42535,0.0,78.61926 +2023-04-01 19:00:00,5.091169,5.5154333,315.0001,315.0001,-2.3735,964.6843,0.0,75.44803 +2023-04-01 20:00:00,6.198387,6.992138,287.8504,286.62082,-1.7735,965.3709,0.0,75.55452 +2023-04-01 21:00:00,3.2695565,3.6769552,293.4287,292.3802,-1.1235,964.2709,0.0,72.85948 +2023-04-01 22:00:00,0.98488575,1.2083046,246.0375,245.55606,-0.9235,963.4596,0.0,72.07426 +2023-04-01 23:00:00,2.3194828,2.7018514,172.56868,177.87895,-1.0235,962.6834,0.0,78.59049 +2023-04-02 00:00:00,3.5057096,4.6270943,176.72958,186.20335,-2.5235002,962.7639,0.0,83.56813 +2023-04-02 01:00:00,4.110961,5.903389,161.56496,178.05856,-4.5734997,961.50165,0.0,86.23456 +2023-04-02 02:00:00,4.924429,7.7369246,150.83249,165.78412,-3.9735,960.86694,0.0,80.250046 +2023-04-02 03:00:00,5.769748,9.604687,154.32323,165.52966,-3.4235,960.3158,0.0,75.550316 +2023-04-02 04:00:00,6.4257298,10.770794,159.02643,167.125,-2.9735,959.3662,0.0,75.34087 +2023-04-02 05:00:00,6.9079666,11.569356,157.8905,165.48326,-2.6735,958.1974,0.0,75.1066 +2023-04-02 06:00:00,8.004998,13.251793,167.00539,171.31967,-1.1735,957.7375,0.0,73.12667 +2023-04-02 07:00:00,8.70919,14.199296,164.68712,168.21527,-0.4735,956.2671,0.0,70.81161 +2023-04-02 08:00:00,9.483143,15.026643,165.96373,170.03625,0.72650003,955.271,0.0,68.436615 +2023-04-02 09:00:00,10.606602,16.070158,171.86998,174.64427,1.7765,953.6756,0.0,66.1433 +2023-04-02 10:00:00,11.610771,17.265284,182.46806,184.98402,2.2765,952.82513,0.0,63.58746 +2023-04-02 11:00:00,12.965338,19.091883,185.75447,188.13002,2.6265,950.9995,0.0,62.491318 +2023-04-02 12:00:00,12.20041,18.5,194.7197,197.94534,4.5265,949.9377,0.0,54.869038 +2023-04-02 13:00:00,11.833005,18.05464,200.27277,203.15695,4.4765,949.3605,0.0,57.36896 +2023-04-02 14:00:00,11.371895,17.44133,203.86018,206.56499,4.8265,949.0474,0.0,60.29435 +2023-04-02 15:00:00,11.1507845,17.088007,209.55359,212.57405,5.5265,948.70416,0.0,62.268246 +2023-04-02 16:00:00,9.881295,15.352524,215.9422,219.18436,6.1765003,948.72955,0.0,64.03292 +2023-04-02 17:00:00,8.563293,13.65174,222.63371,226.48395,6.7265,948.547,0.0,66.996216 +2023-04-02 18:00:00,9.2358,14.549914,250.38782,252.81032,6.5265,949.2676,0.0,72.447464 +2023-04-02 19:00:00,9.202173,14.405554,268.75467,271.5911,5.0765,950.70325,0.0,80.091446 +2023-04-02 20:00:00,8.099382,12.946814,290.22495,293.1986,4.6265,951.5655,0.0,79.17044 +2023-04-02 21:00:00,6.5734315,10.976793,283.1906,286.9493,4.3265,951.50946,0.0,80.55913 +2023-04-02 22:00:00,6.1814237,10.744765,279.30988,284.55362,3.8765,951.8981,0.0,79.917274 +2023-04-02 23:00:00,4.9030604,9.392017,281.76825,288.62796,3.2765,952.25793,0.0,78.39514 +2023-04-03 00:00:00,3.0,6.706713,270.0,290.05618,1.3765,953.2206,0.0,81.0228 +2023-04-03 01:00:00,2.8178005,6.000833,242.52565,269.04517,-0.4735,953.3358,0.0,80.76056 +2023-04-03 02:00:00,3.3120992,6.074537,208.88649,237.09476,-0.023500003,953.5178,0.0,80.52507 +2023-04-03 03:00:00,4.8104053,8.800568,200.69553,216.21893,-0.07350001,953.12994,0.0,78.15439 +2023-04-03 04:00:00,4.548626,9.128527,213.34073,227.21968,0.22649999,952.7151,0.0,76.473495 +2023-04-03 05:00:00,4.9396353,9.338095,211.75943,223.26433,0.5765,952.4991,0.0,76.81799 +2023-04-03 06:00:00,5.140039,10.615084,217.09291,222.70937,0.97650003,952.76526,0.0,74.08232 +2023-04-03 07:00:00,4.6010866,9.982485,222.35739,227.84221,0.92649996,952.8502,0.0,72.97744 +2023-04-03 08:00:00,4.548626,9.811218,236.65927,240.0379,0.92649996,953.2285,0.0,73.250015 +2023-04-03 09:00:00,5.0447993,10.500476,256.2392,269.45435,0.6265,953.36,0.0,73.742134 +2023-04-03 10:00:00,4.4384685,9.900505,284.34937,293.1986,0.2765,953.8598,0.0,69.903465 +2023-04-03 11:00:00,4.167733,9.102198,300.25635,305.61093,0.026500002,954.8515,0.0,72.260315 +2023-04-03 12:00:00,4.2801867,9.055386,307.40543,313.2101,-0.023500003,954.7472,0.0,73.897705 +2023-04-03 13:00:00,4.2801867,8.556284,307.40543,314.52655,0.3265,955.3827,0.0,77.9278 +2023-04-03 14:00:00,4.6010866,8.13941,312.3574,317.4896,0.72650003,956.40594,0.0,81.53075 +2023-04-03 15:00:00,3.88973,6.8014703,313.95847,318.57642,0.6265,956.85944,0.0,84.57612 +2023-04-03 16:00:00,3.538361,6.4031243,317.29062,321.34018,1.0265,957.69336,0.0,86.185814 +2023-04-03 17:00:00,3.2449963,4.770744,326.3099,326.97614,1.3265,958.03516,0.0,84.967545 +2023-04-03 18:00:00,3.3015149,4.4654226,324.86572,325.954,1.5265,958.35736,0.0,83.75822 +2023-04-03 19:00:00,3.324154,4.3081317,338.83865,338.19852,1.6765,958.1974,0.0,81.959946 +2023-04-03 20:00:00,3.49285,4.535416,346.75946,345.9637,1.5265,957.979,0.0,83.75822 +2023-04-03 21:00:00,3.733631,4.9497476,352.30405,351.87,1.3765,957.7611,0.0,84.35457 +2023-04-03 22:00:00,3.622154,5.0358715,353.6599,353.15732,0.92649996,957.8632,0.0,86.17526 +2023-04-03 23:00:00,3.214032,5.0249376,354.64426,354.2895,0.6265,957.9944,0.0,89.02994 +2023-04-04 00:00:00,4.1231055,6.063827,14.036275,13.348748,-0.6235,958.4127,0.0,90.24497 +2023-04-04 01:00:00,3.765634,6.2169123,10.713074,11.129155,-1.3735,958.6435,0.0,93.93532 +2023-04-04 02:00:00,4.0447497,6.609841,8.530692,10.459866,-1.6735,959.1515,0.0,93.22748 +2023-04-04 03:00:00,4.6010866,7.5059977,1.2453395,2.2905633,-1.8235,959.8783,0.0,92.87404 +2023-04-04 04:00:00,4.418144,7.256032,5.19435,7.12493,-1.7735,960.2661,0.0,92.8769 +2023-04-04 05:00:00,4.560702,7.4040527,15.255177,16.476961,-1.8235,959.40564,0.0,92.87404 +2023-04-04 06:00:00,4.110961,7.8924017,18.435053,22.340693,-2.9235,958.5257,0.0,93.50853 +2023-04-04 07:00:00,4.7010636,8.46286,29.29127,35.380356,-2.9235,957.0135,0.0,93.85909 +2023-04-04 08:00:00,4.1785164,7.823043,21.037588,32.471172,-3.2235,956.57574,0.0,93.84418 +2023-04-04 09:00:00,3.8275318,7.5663733,33.27491,44.464615,-3.5235002,956.51587,0.0,93.12595 +2023-04-04 10:00:00,5.3009434,9.552486,35.78906,47.12111,-3.1735,955.35724,0.0,93.14534 +2023-04-04 11:00:00,6.0876923,10.640019,47.66307,53.022324,-2.9735,954.2627,0.9,91.769806 +2023-04-04 12:00:00,5.5865912,9.372299,44.27486,50.194473,-2.2735002,955.2518,0.9,92.84831 +2023-04-04 13:00:00,7.2835426,11.194641,44.443825,48.621593,-1.5235,954.26526,0.0,93.23561 +2023-04-04 14:00:00,7.8517513,11.79237,46.54811,50.50552,-1.2735,952.89606,0.0,96.750015 +2023-04-04 15:00:00,7.8873315,12.626955,50.6595,60.592903,-1.1735,951.87573,0.2,97.46609 +2023-04-04 16:00:00,7.6550636,12.343419,56.725105,63.019848,-0.4235,950.2253,0.5,94.672325 +2023-04-04 17:00:00,8.095677,12.369317,72.01258,75.96373,0.8265,949.3316,1.1,91.01568 +2023-04-04 18:00:00,7.539231,11.6760435,68.19853,73.582695,1.4765,948.32086,0.4,92.38862 +2023-04-04 19:00:00,7.3409805,11.416217,65.87902,71.08883,1.9764999,947.1862,0.6,93.421394 +2023-04-04 20:00:00,6.9354167,10.911004,65.28258,70.73465,2.2765,946.5809,0.3,95.125984 +2023-04-04 21:00:00,7.3736014,11.772,69.352936,73.72025,2.4764998,945.294,0.3,96.15848 +2023-04-04 22:00:00,6.7720013,11.335784,73.70589,78.293594,2.6764998,944.5748,0.2,97.19749 +2023-04-04 23:00:00,5.4341516,9.674709,77.24247,82.875084,2.7765,944.026,0.1,97.89321 +2023-04-05 00:00:00,4.9578223,8.321658,48.270576,57.264786,1.2265,945.2463,0.0,97.16456 +2023-04-05 01:00:00,4.5254836,7.988116,44.999897,55.713078,1.0265,944.92413,0.0,98.2165 +2023-04-05 02:00:00,3.8275318,7.0007143,56.725105,68.19854,0.97650003,945.0092,0.0,98.92605 +2023-04-05 03:00:00,1.360147,3.535534,17.102825,61.26031,0.8265,945.35913,0.0,98.924736 +2023-04-05 04:00:00,1.603122,3.2557642,3.5762644,42.510403,0.7765,944.87665,0.0,99.64028 +2023-04-05 05:00:00,2.3323808,2.624881,300.96368,310.36444,0.47650003,945.00836,0.0,100.0 +2023-04-05 06:00:00,4.1231055,6.664083,292.83368,295.79596,0.1265,944.84644,0.0,99.63836 +2023-04-05 07:00:00,5.9481087,9.080198,286.60706,286.6389,-0.5735,945.56287,0.0,98.912346 +2023-04-05 08:00:00,5.3935146,9.8234415,280.68484,284.74362,-1.3235,946.3631,0.0,97.105255 +2023-04-05 09:00:00,6.5115285,9.75141,280.6196,283.03867,-1.5735,946.976,0.0,95.32458 +2023-04-05 10:00:00,7.864477,11.715374,281.73856,283.32455,-2.0235,947.3611,0.0,92.17439 +2023-04-05 11:00:00,8.558621,12.940248,276.70975,278.4431,-2.7735002,948.44244,0.0,88.73459 +2023-04-05 12:00:00,9.492103,13.905755,281.54666,282.03717,-3.7735002,949.1898,0.0,88.982185 +2023-04-05 13:00:00,9.631718,14.21267,282.59332,283.84073,-4.5235,950.4579,0.0,86.902275 +2023-04-05 14:00:00,11.112605,15.192103,285.66217,286.04907,-4.8735,951.42694,0.0,81.050476 +2023-04-05 15:00:00,12.060266,16.360012,285.88022,286.33032,-5.3735,952.4599,0.0,77.58625 +2023-04-05 16:00:00,12.85496,17.705366,283.49576,283.72232,-5.1235,954.1163,0.0,81.328766 +2023-04-05 17:00:00,12.831991,17.681911,283.06155,283.4075,-4.8234997,955.7827,0.0,81.05767 +2023-04-05 18:00:00,12.39758,17.12688,282.57892,282.8191,-4.5734997,956.8722,0.0,78.93148 +2023-04-05 19:00:00,12.237647,16.826765,281.3099,281.3099,-4.4735,958.12067,0.0,79.55927 +2023-04-05 20:00:00,12.020815,16.560495,278.13,277.98322,-4.4735,958.8766,0.0,79.25272 +2023-04-05 21:00:00,11.374533,15.81455,276.5626,276.90024,-4.4235,959.64246,0.0,79.260506 +2023-04-05 22:00:00,10.929317,14.840822,274.19757,274.25058,-4.6735,960.63116,0.0,77.70263 +2023-04-05 23:00:00,10.100495,14.4,269.43274,270.0,-4.6235,961.586,0.0,78.61884 +2023-04-06 00:00:00,8.809087,13.1034355,267.3975,268.68814,-4.3735,962.5814,0.0,81.12221 +2023-04-06 01:00:00,9.004998,13.829317,271.90912,273.73132,-4.9735,963.87683,0.0,79.79093 +2023-04-06 02:00:00,8.809087,13.652839,272.6025,275.04236,-5.3735,964.8344,0.0,78.49859 +2023-04-06 03:00:00,8.70919,13.852076,272.6324,274.96964,-6.0235,965.64594,0.0,77.781746 +2023-04-06 04:00:00,8.514693,13.671869,273.3664,275.8773,-6.2235,965.98285,0.0,77.74849 +2023-04-06 05:00:00,8.102469,13.345411,271.4144,274.7279,-6.6735,966.36194,0.0,76.45748 +2023-04-06 06:00:00,7.5,12.625372,270.0,273.63287,-7.1235,966.92993,0.0,73.69709 +2023-04-06 07:00:00,7.1175838,12.2,265.9718,270.0,-7.5734997,967.5919,0.0,71.86502 +2023-04-06 08:00:00,7.119691,12.269067,259.47928,263.91776,-8.0235,968.159,0.0,71.77325 +2023-04-06 09:00:00,7.0405965,12.280066,258.5305,263.4538,-8.3235,968.6625,0.0,71.4233 +2023-04-06 10:00:00,6.356099,11.573245,257.27563,263.55057,-8.7235,969.2396,0.0,71.340454 +2023-04-06 11:00:00,6.0876927,11.287161,255.73544,262.8751,-8.8735,969.4911,0.0,71.020905 +2023-04-06 12:00:00,5.557877,10.801852,261.72418,271.06088,-9.2235,969.7949,0.0,70.6595 +2023-04-06 13:00:00,5.5731497,10.4,260.70676,270.0,-8.2235,970.855,0.0,70.87036 +2023-04-06 14:00:00,5.707013,9.419129,258.887,266.34784,-6.3735,971.9961,0.0,73.84076 +2023-04-06 15:00:00,4.7434163,8.649278,251.56496,259.3397,-4.3735,973.3523,0.0,77.752235 +2023-04-06 16:00:00,4.0447497,5.557877,261.46933,261.72418,-2.5735002,974.47406,0.0,76.573235 +2023-04-06 17:00:00,3.2015622,4.295346,284.47034,282.09473,-1.8235,974.53076,0.0,74.40566 +2023-04-06 18:00:00,2.996665,3.8483763,295.7099,294.56717,-1.2735,974.4517,0.0,72.8306 +2023-04-06 19:00:00,2.4698176,3.3120992,301.75943,298.88647,-0.6735,974.5715,0.0,72.12339 +2023-04-06 20:00:00,1.8357561,2.3600848,330.64233,323.61554,-0.07350001,974.4073,0.0,73.33555 +2023-04-06 21:00:00,2.4020824,3.1256998,357.6141,352.6477,0.47650003,973.9488,0.0,76.80122 +2023-04-06 22:00:00,3.0594118,4.1773195,11.3098955,11.04091,0.5765,973.6847,0.0,77.67905 +2023-04-06 23:00:00,3.4205263,5.060632,37.875042,37.775745,0.17650001,973.7946,0.0,76.75083 +2023-04-07 00:00:00,3.3241541,6.3411355,46.2188,52.045715,-1.6735,974.5607,0.0,74.43322 +2023-04-07 01:00:00,3.3970575,7.2945185,47.385983,56.745625,-3.9235,974.2945,0.0,74.590614 +2023-04-07 02:00:00,3.4132097,7.2897186,58.1726,63.083534,-4.5235,974.55,0.7,75.94063 +2023-04-07 03:00:00,3.1384711,6.844706,59.349415,64.93257,-4.5235,975.1168,0.4,78.028854 +2023-04-07 04:00:00,2.657066,6.4031243,70.20104,75.52967,-5.1735,975.26666,0.5,75.825455 +2023-04-07 05:00:00,2.7294688,6.477654,81.57312,81.11942,-5.4735,975.3935,0.5,73.14529 +2023-04-07 06:00:00,3.1064448,7.0028567,86.308685,88.363464,-5.7735,975.23724,0.0,73.375244 +2023-04-07 07:00:00,3.206244,7.416873,93.57626,93.86539,-6.3735,975.20715,0.0,74.13317 +2023-04-07 08:00:00,3.748333,8.121576,99.21095,99.926186,-6.1735,974.7763,0.0,74.46403 +2023-04-07 09:00:00,3.6496572,7.962412,99.46225,101.59215,-5.9735,974.9121,0.0,75.682625 +2023-04-07 10:00:00,3.6687872,7.8434687,107.44727,109.359085,-5.6235,975.0792,0.0,76.34083 +2023-04-07 11:00:00,3.9217343,8.600581,109.359085,113.28609,-5.8234997,974.471,0.0,75.709496 +2023-04-07 12:00:00,3.8078866,8.53815,103.671326,108.43504,-5.3735,974.6585,0.0,74.03062 +2023-04-07 13:00:00,3.5902646,7.5272837,102.87501,109.39791,-4.3735,974.95856,0.0,75.08829 +2023-04-07 14:00:00,4.0261645,7.0007143,104.38144,111.80147,-2.5235002,975.05133,0.0,77.75815 +2023-04-07 15:00:00,3.1780496,5.9093146,102.72436,113.962494,-0.6735,974.66614,0.0,75.748085 +2023-04-07 16:00:00,3.0149627,5.1923018,95.7105,105.64231,0.8765,974.4057,0.0,76.58359 +2023-04-07 17:00:00,2.8160255,5.0289164,96.11541,107.35411,2.7264998,973.91644,0.0,75.49958 +2023-04-07 18:00:00,2.6019223,4.838388,92.20255,108.06056,4.3765,973.19366,0.0,78.002396 +2023-04-07 19:00:00,2.3345234,4.9819674,80.13426,100.40766,5.6765003,972.30597,0.0,74.39133 +2023-04-07 20:00:00,2.3537204,5.261178,77.735245,98.74608,6.5265,971.1409,0.0,72.70645 +2023-04-07 21:00:00,1.9924859,4.060788,72.47434,99.926186,6.7765,970.0517,0.0,73.012695 +2023-04-07 22:00:00,2.2203603,4.0792155,54.16227,78.6901,6.9265003,969.133,0.0,69.48474 +2023-04-07 23:00:00,2.9068882,5.4230986,49.185013,67.21756,6.6765003,968.23376,0.0,67.46878 +2023-04-08 00:00:00,4.632494,9.479451,32.660904,43.29022,4.0265,969.1516,0.0,74.90549 +2023-04-08 01:00:00,4.4553337,9.720083,44.090717,53.3658,2.9264998,968.7509,0.0,77.48906 +2023-04-08 02:00:00,4.3416586,9.534149,61.07368,65.85446,2.3265,969.01306,0.0,79.1091 +2023-04-08 03:00:00,4.88467,10.214206,67.10942,71.74234,2.0265,969.42816,0.0,79.93641 +2023-04-08 04:00:00,4.964876,10.210778,71.20003,75.82764,1.4265,969.5005,0.0,79.847916 +2023-04-08 05:00:00,4.588028,9.394147,73.53991,78.33126,1.1265,968.96893,0.0,79.21713 +2023-04-08 06:00:00,3.8639357,8.547514,79.56258,83.956,0.72650003,968.79614,0.0,78.57216 +2023-04-08 07:00:00,3.6878178,8.030566,77.4712,84.99945,0.47650003,968.8417,0.0,80.89587 +2023-04-08 08:00:00,3.5510561,7.5166483,80.2725,86.186005,0.6265,968.39813,0.0,82.72866 +2023-04-08 09:00:00,2.915476,6.412488,84.093956,93.57626,-1.0735,967.7792,0.0,86.603615 +2023-04-08 10:00:00,2.828427,5.664804,98.13002,110.67451,-1.9735,967.1272,0.0,89.470695 +2023-04-08 11:00:00,2.6925824,5.249762,111.801476,130.36446,-2.2735002,966.97266,0.0,90.1173 +2023-04-08 12:00:00,2.4413111,6.0133185,145.0079,183.814,-1.5735,966.3561,0.0,79.69676 +2023-04-08 13:00:00,2.505993,6.0074954,151.38963,182.86235,1.2265,967.19135,0.0,72.76321 +2023-04-08 14:00:00,2.9154758,6.6370173,149.03632,173.9459,3.3765,967.51263,0.0,68.24214 +2023-04-08 15:00:00,3.1400635,7.300685,142.76509,166.53477,5.4765,967.53436,0.0,65.759674 +2023-04-08 16:00:00,3.4985712,7.615773,149.03632,166.32867,7.6765003,967.3793,0.0,62.78091 +2023-04-08 17:00:00,3.448188,7.8447437,150.46132,162.95088,9.4265,967.0398,0.0,59.69641 +2023-04-08 18:00:00,3.51141,7.766595,160.0168,168.11136,10.8265,966.443,0.0,57.54696 +2023-04-08 19:00:00,4.0792155,8.836288,168.69011,174.80566,12.3765,966.06,0.0,53.816395 +2023-04-08 20:00:00,4.4553337,9.84124,170.9606,174.75294,13.3265,965.37726,0.0,49.51247 +2023-04-08 21:00:00,4.9648767,10.855874,170.72748,174.18446,13.7265005,964.8796,0.0,46.559704 +2023-04-08 22:00:00,5.3935146,11.399123,169.31514,172.43866,13.4765005,964.2661,0.0,46.98767 +2023-04-08 23:00:00,5.707013,11.921829,168.887,171.80202,12.7765,964.04626,0.0,48.316887 +2023-04-09 00:00:00,4.808326,10.748954,163.0724,167.64465,12.8265,963.8658,0.0,41.863956 +2023-04-09 01:00:00,5.8240876,11.708544,164.05453,169.16997,11.9265,963.89374,0.0,41.297745 +2023-04-09 02:00:00,6.8154235,12.808201,165.55592,169.6552,11.2765,964.06055,0.0,40.80555 +2023-04-09 03:00:00,7.808969,14.003571,170.41713,173.02733,10.8765,964.5568,0.0,40.537605 +2023-04-09 04:00:00,8.414867,14.703061,176.59363,178.83089,10.7765,965.1071,0.0,39.182335 +2023-04-09 05:00:00,9.002222,15.301308,178.727,180.7489,10.3265,965.12,0.0,38.185925 +2023-04-09 06:00:00,8.902246,15.121178,181.28731,183.03264,9.8765,965.41693,0.0,36.513863 +2023-04-09 07:00:00,8.509407,14.56743,182.69423,185.51482,9.4765005,966.0067,0.0,35.984276 +2023-04-09 08:00:00,8.130191,13.930183,184.93913,187.83917,9.3265,966.2635,0.0,36.34893 +2023-04-09 09:00:00,7.7414465,13.449535,185.93143,188.55174,9.1265,966.32153,0.0,37.401756 +2023-04-09 10:00:00,7.808969,13.395895,189.58287,192.06487,8.8765,966.4648,0.0,38.037617 +2023-04-09 11:00:00,7.955501,13.572399,194.56032,196.69933,8.8265,966.73975,0.0,37.170883 +2023-04-09 12:00:00,6.2641835,11.95408,196.69933,199.04132,8.8765,967.12787,0.0,36.9058 +2023-04-09 13:00:00,6.1611686,11.0440035,193.13403,196.30177,9.1265,967.83734,0.0,37.969498 +2023-04-09 14:00:00,5.7870545,9.972463,198.12195,201.16133,9.8265,968.72406,0.0,40.225994 +2023-04-09 15:00:00,5.1546097,8.228001,198.08354,200.63763,11.1265,969.1511,0.0,41.062057 +2023-04-09 16:00:00,4.110961,6.815424,198.43504,202.4259,11.8265,969.3732,0.2,44.38351 +2023-04-09 17:00:00,1.5,2.5961509,180.0,195.6423,13.1265,969.9872,0.0,43.335075 +2023-04-09 18:00:00,3.8470767,4.925444,171.02745,174.17375,14.9265,969.4551,0.0,38.1483 +2023-04-09 19:00:00,4.429447,6.1587334,241.69934,237.60017,13.8765,969.6475,3.2,54.213184 +2023-04-09 20:00:00,1.746425,4.2059484,203.6294,208.39293,11.2765,968.7993,3.0,75.364105 +2023-04-09 21:00:00,1.8384776,3.7215588,157.61983,186.17007,10.3765,967.8772,0.4,76.255104 +2023-04-09 22:00:00,1.5264337,0.98488575,31.607454,113.962494,10.9265,967.88293,0.2,86.588135 +2023-04-09 23:00:00,0.9,2.0396078,90.0,191.30989,8.4765005,967.6225,0.5,96.66449 +2023-04-10 00:00:00,3.522783,7.912016,186.5197,196.14441,10.0265,966.96045,0.0,81.34327 +2023-04-10 01:00:00,3.5014284,7.858753,178.36346,194.7436,9.3265,967.0214,0.1,85.83943 +2023-04-10 02:00:00,2.5317976,5.903389,189.0902,181.94144,8.0265,966.97064,0.1,91.18891 +2023-04-10 03:00:00,3.5468295,7.334848,158.4985,168.9965,8.5265,967.4422,2.7,89.98166 +2023-04-10 04:00:00,3.49285,7.7472577,156.3706,156.41296,9.2765,967.29645,0.4,84.66537 +2023-04-10 05:00:00,2.7730849,6.661081,205.64096,187.76508,7.5765,967.17114,0.0,87.45605 +2023-04-10 06:00:00,3.4132097,7.4323616,211.82741,203.80595,7.0265,967.2577,0.0,88.01428 +2023-04-10 07:00:00,3.3241541,7.3109503,223.7812,220.0062,6.6765003,967.38153,0.0,88.597984 +2023-04-10 08:00:00,3.1016126,6.868042,249.22766,253.93994,5.2765,967.21234,0.0,91.96442 +2023-04-10 09:00:00,2.7313,5.8077536,246.25049,267.03912,4.0265,966.7855,0.0,93.19653 +2023-04-10 10:00:00,2.720294,6.080296,287.1028,306.3046,2.3765,967.69836,0.0,94.79018 +2023-04-10 11:00:00,1.6492423,3.6400552,255.96373,307.18478,1.2265,967.75885,0.0,94.4006 +2023-04-10 12:00:00,3.176476,4.1146083,298.1785,334.05774,1.3765,967.5989,0.0,82.522484 +2023-04-10 13:00:00,0.70710677,1.8867962,224.9999,327.99466,5.3765,968.46204,0.0,68.41775 +2023-04-10 14:00:00,2.0615528,1.029563,202.8337,209.0545,7.7265,969.2828,0.0,78.797516 +2023-04-10 15:00:00,1.0816654,1.6970563,236.3099,224.9999,11.9765005,970.25366,0.0,70.97952 +2023-04-10 16:00:00,0.70710677,0.86023253,315.0001,305.53775,15.0265,971.18,0.0,53.39465 +2023-04-10 17:00:00,0.6324555,0.82462114,288.43503,284.03625,17.176498,971.3692,0.0,42.67168 +2023-04-10 18:00:00,0.94868326,1.3000001,251.56496,247.3801,18.776499,971.1733,0.0,35.21552 +2023-04-10 19:00:00,1.7492856,2.3323808,239.03632,239.0363,20.0765,970.7327,0.0,27.862135 +2023-04-10 20:00:00,2.1095023,2.6925824,238.57048,238.67136,20.676498,970.55054,0.0,26.656385 +2023-04-10 21:00:00,2.236068,2.9068882,243.43501,243.43501,20.9765,970.0322,0.0,27.518185 +2023-04-10 22:00:00,2.34094,3.1016126,250.0168,249.22766,20.8265,969.53204,0.0,27.476234 +2023-04-10 23:00:00,1.8027756,3.3286633,236.3099,237.26477,19.8765,969.17957,0.0,37.576115 +2023-04-11 00:00:00,1.6643317,1.2529964,32.73523,28.610369,16.8765,969.03973,0.0,44.566963 +2023-04-11 01:00:00,2.5495098,2.0248456,64.440094,69.775055,13.0265,968.073,0.0,47.87324 +2023-04-11 02:00:00,2.9017239,2.5317976,88.025116,99.090195,10.6265,967.8281,0.0,51.653233 +2023-04-11 03:00:00,3.4,3.7443287,118.072395,124.11452,8.0265,967.4442,0.0,57.447678 +2023-04-11 04:00:00,2.7802877,5.060632,142.3057,150.39565,8.6265,967.2711,0.0,57.601986 +2023-04-11 05:00:00,3.6769552,7.6896033,157.61983,159.44388,8.6765,966.52277,0.0,61.460407 +2023-04-11 06:00:00,3.945884,9.080197,171.25392,168.56636,9.1265,966.2268,0.0,61.131313 +2023-04-11 07:00:00,5.186521,10.778219,199.13374,207.04044,9.0765,966.0282,0.0,65.15763 +2023-04-11 08:00:00,5.59017,11.320778,206.56499,212.00534,9.4765005,966.0067,0.0,67.11299 +2023-04-11 09:00:00,6.3134775,12.1757965,209.40709,213.95113,9.8765,965.7959,0.0,67.67147 +2023-04-11 10:00:00,6.6887965,12.64911,211.55133,214.69522,10.4265,965.80176,0.0,71.91508 +2023-04-11 11:00:00,6.6850576,12.480784,214.641,217.51268,10.2765,965.58466,0.0,77.56216 +2023-04-11 12:00:00,6.5734315,12.160592,213.20659,216.30458,10.7765,965.3914,0.0,80.889946 +2023-04-11 13:00:00,6.860029,12.092974,210.6772,214.21576,11.9265,965.50507,0.0,77.55502 +2023-04-11 14:00:00,6.71193,13.063307,208.4741,213.4468,14.1765,965.52856,0.0,73.34708 +2023-04-11 15:00:00,6.574192,9.984988,206.17523,209.38892,16.676498,965.11505,0.0,65.92186 +2023-04-11 16:00:00,6.9778223,9.794896,205.4633,207.3498,19.276499,964.80536,0.0,55.793377 +2023-04-11 17:00:00,7.5591,10.38316,207.58194,208.78651,21.3265,964.2998,0.0,46.906265 +2023-04-11 18:00:00,8.1412525,11.141365,207.824,208.40515,22.6265,963.47394,0.0,39.022408 +2023-04-11 19:00:00,8.45281,11.5381975,205.95871,206.78705,23.3265,962.6408,0.0,35.660427 +2023-04-11 20:00:00,8.458132,11.6297035,204.44394,205.4633,23.7265,961.8523,0.0,34.103306 +2023-04-11 21:00:00,8.417244,11.859595,203.82426,204.40396,23.926498,961.1255,0.0,34.16015 +2023-04-11 22:00:00,8.39345,12.054045,201.67471,202.94896,23.7265,960.3325,0.0,34.929985 +2023-04-11 23:00:00,7.4946647,11.774549,198.6768,200.89784,22.926498,959.72485,0.0,37.801224 +2023-04-12 00:00:00,6.432729,11.524756,191.65926,195.604,22.526499,958.8986,0.0,35.189102 +2023-04-12 01:00:00,7.495332,13.200378,193.1092,195.82622,20.9765,958.06934,0.0,34.263454 +2023-04-12 02:00:00,8.17435,14.168275,194.8863,197.66772,20.2265,957.848,0.0,33.57232 +2023-04-12 03:00:00,8.664871,14.725827,198.85326,201.51247,19.5765,957.6428,0.0,32.683174 +2023-04-12 04:00:00,9.211407,15.638733,200.99292,202.95808,19.176498,957.00543,0.0,35.08305 +2023-04-12 05:00:00,9.615093,15.929846,206.56499,208.49554,18.9765,956.592,0.0,39.87752 +2023-04-12 06:00:00,9.364828,15.677372,210.12422,211.9666,18.7265,956.26447,0.0,43.41291 +2023-04-12 07:00:00,9.3744335,15.590061,213.6901,214.81145,18.3265,956.00635,0.0,46.39225 +2023-04-12 08:00:00,9.265528,15.4402075,214.89078,216.57312,17.8265,955.731,0.0,50.053764 +2023-04-12 09:00:00,9.121404,15.134398,217.87505,219.3693,17.276499,955.352,0.0,52.893272 +2023-04-12 10:00:00,9.381364,15.524175,215.89276,218.19873,16.8765,955.0933,0.0,54.435116 +2023-04-12 11:00:00,9.208692,15.220053,214.3804,216.7194,16.426498,954.5413,0.0,56.204697 +2023-04-12 12:00:00,8.683317,14.741099,218.45374,221.14926,15.8765,954.25616,0.0,56.83686 +2023-04-12 13:00:00,8.720092,14.43087,216.60716,219.09386,16.5765,954.1878,0.0,56.242752 +2023-04-12 14:00:00,8.160882,15.008331,216.02747,218.77907,18.276499,954.2897,0.0,55.353184 +2023-04-12 15:00:00,8.840815,12.93213,217.64769,219.35173,20.0765,954.40515,0.0,53.44644 +2023-04-12 16:00:00,9.402128,13.228001,218.08882,218.86275,21.8265,954.31854,0.0,51.124825 +2023-04-12 17:00:00,9.219544,12.756175,220.60121,221.18582,23.4765,954.40216,0.0,48.76262 +2023-04-12 18:00:00,9.209778,12.681088,221.47845,221.48335,24.776499,954.2353,0.0,46.304184 +2023-04-12 19:00:00,9.192389,12.587296,224.9999,225.64366,25.676498,953.907,0.0,44.468212 +2023-04-12 20:00:00,8.809086,11.997083,219.47243,219.92781,26.276499,953.529,0.0,43.4822 +2023-04-12 21:00:00,8.309633,11.4337225,219.62897,219.6772,26.426498,953.1729,0.0,43.52358 +2023-04-12 22:00:00,7.582216,10.696261,221.25691,221.58896,26.176498,952.9425,0.0,44.60555 +2023-04-12 23:00:00,5.9548297,9.209778,220.91429,221.47845,25.3765,952.81287,0.0,48.79302 +2023-04-13 00:00:00,2.6627054,6.780118,214.28693,217.208,24.6265,952.31085,0.0,54.25809 +2023-04-13 01:00:00,2.8178005,7.566373,207.47435,209.27516,21.4765,951.98145,0.0,58.79438 +2023-04-13 02:00:00,2.0880613,3.04795,286.6993,228.99101,17.776499,952.40137,0.0,71.59769 +2023-04-13 03:00:00,1.6643317,3.2015622,302.7352,218.65984,15.0265,952.591,0.0,82.80789 +2023-04-13 04:00:00,3.405877,7.206941,229.76372,209.0545,13.0765,952.1542,0.0,84.23762 +2023-04-13 05:00:00,6.0835843,11.950732,205.30135,204.20589,18.8265,952.675,0.0,47.658154 +2023-04-13 06:00:00,7.7491937,13.507405,199.60417,199.91072,20.0765,952.6015,0.0,41.887882 +2023-04-13 07:00:00,7.668768,13.218548,192.04256,194.45679,18.2265,952.09863,0.0,44.48561 +2023-04-13 08:00:00,7.858753,13.476646,194.7436,196.82149,17.176498,951.72925,0.0,45.277557 +2023-04-13 09:00:00,7.4946647,13.074019,198.6768,201.06905,16.926498,951.30676,0.0,44.271156 +2023-04-13 10:00:00,7.2235723,12.621014,201.94876,204.33124,16.426498,951.41077,0.0,44.28367 +2023-04-13 11:00:00,6.9641943,12.306502,201.03758,204.48247,15.926499,951.13464,0.0,44.923355 +2023-04-13 12:00:00,7.0007143,12.348279,201.80147,204.90474,16.0765,951.16046,0.0,47.38642 +2023-04-13 13:00:00,7.28011,12.332883,195.94547,198.43504,16.6265,951.06555,0.0,48.03687 +2023-04-13 14:00:00,7.256721,13.606248,191.9293,194.03627,18.2265,951.1497,0.0,47.65544 +2023-04-13 15:00:00,8.747571,12.453513,190.53912,191.5806,19.426498,951.1629,0.0,45.752487 +2023-04-13 16:00:00,8.7097645,12.127654,192.60016,193.34874,20.776499,951.10504,0.0,44.29137 +2023-04-13 17:00:00,8.45281,11.454257,190.91109,192.09474,22.176498,950.95825,0.0,43.204697 +2023-04-13 18:00:00,8.3600235,11.412712,186.8699,188.05902,23.8265,950.28,0.0,41.67367 +2023-04-13 19:00:00,8.7,11.90168,180.0,180.96284,25.3265,949.28925,0.0,40.72228 +2023-04-13 20:00:00,9.504735,13.201514,178.1913,179.13197,26.4765,948.61945,0.0,38.67689 +2023-04-13 21:00:00,10.301942,14.605478,181.11238,181.56932,27.026499,947.7571,0.0,34.80304 +2023-04-13 22:00:00,10.012492,14.627713,182.86235,183.52739,26.8265,947.2501,0.0,32.819405 +2023-04-13 23:00:00,8.700575,13.409325,180.65852,182.13687,25.676498,947.1605,0.0,34.89037 +2023-04-14 00:00:00,8.039901,13.418271,174.2895,177.00972,24.7265,947.10187,0.0,29.57105 +2023-04-14 01:00:00,8.414867,14.203169,176.59363,178.78973,23.0765,947.2127,0.0,30.04071 +2023-04-14 02:00:00,8.705171,14.5,178.02512,180.0,21.8265,947.4816,0.0,31.296837 +2023-04-14 03:00:00,8.802273,14.727525,181.30193,183.50346,20.776499,947.97205,0.0,32.566975 +2023-04-14 04:00:00,8.945389,14.934524,185.77423,187.69595,19.9765,948.3129,0.0,34.215733 +2023-04-14 05:00:00,9.055386,14.97765,186.3401,188.83333,19.1265,948.265,0.0,36.71032 +2023-04-14 06:00:00,9.079648,14.993332,187.59456,189.21095,18.3765,948.23303,0.0,42.12834 +2023-04-14 07:00:00,8.401191,14.141074,188.90164,190.59471,17.676498,948.4938,0.0,46.370403 +2023-04-14 08:00:00,7.5927596,12.831601,192.93806,194.9027,16.7265,948.7109,0.0,50.444923 +2023-04-14 09:00:00,7.2993145,12.592855,189.46225,192.38075,15.8265,948.2717,0.0,54.161697 +2023-04-14 10:00:00,7.138627,12.345445,191.30989,193.58601,15.4265,948.67706,0.0,56.52892 +2023-04-14 11:00:00,7.119691,12.224974,190.52074,193.24052,15.0765,948.99567,0.0,58.211533 +2023-04-14 12:00:00,6.746851,11.621101,191.9761,195.47139,15.8265,949.41003,0.0,56.82424 +2023-04-14 13:00:00,6.873136,11.414026,188.3658,191.113,16.276499,949.5824,0.0,57.32665 +2023-04-14 14:00:00,5.8549128,10.27716,187.85323,190.65385,17.9765,949.96814,0.0,55.838726 +2023-04-14 15:00:00,6.4536815,8.94986,192.5288,193.57045,19.6265,950.1525,0.0,51.224365 +2023-04-14 16:00:00,6.514599,8.664871,197.87878,198.85326,20.8265,950.2591,0.0,49.186832 +2023-04-14 17:00:00,6.198387,8.159657,197.8504,199.32327,21.8765,950.52875,0.0,47.849613 +2023-04-14 18:00:00,7.083784,9.330059,198.9466,199.40607,23.7265,950.3587,0.0,41.785168 +2023-04-14 19:00:00,5.95399,8.0062475,209.14798,207.52513,24.4765,950.1014,0.0,39.81235 +2023-04-14 20:00:00,4.3931766,5.448853,318.69147,317.2312,21.1265,950.309,0.1,51.10923 +2023-04-14 21:00:00,5.3851643,7.2732387,344.93146,341.56494,18.026499,950.6411,0.0,58.73811 +2023-04-14 22:00:00,6.664083,8.947067,334.204,334.86707,17.5765,951.0386,0.0,56.305077 +2023-04-14 23:00:00,6.514599,8.886506,342.12122,340.95328,15.4765005,951.5309,0.0,56.54161 +2023-04-15 00:00:00,6.2625875,8.9810915,340.40762,341.16147,10.8765,953.08984,1.8,65.55809 +2023-04-15 01:00:00,6.5734315,9.774457,346.8094,346.39023,9.4265,952.9231,0.1,72.98775 +2023-04-15 02:00:00,6.20967,9.79847,345.06854,345.8219,8.3765,953.67944,0.3,76.45589 +2023-04-15 03:00:00,6.708204,10.378824,333.43503,334.9164,7.2265,954.4154,4.3,78.72193 +2023-04-15 04:00:00,6.191123,9.80051,328.8776,331.34296,6.1765003,955.54675,13.5,79.68326 +2023-04-15 05:00:00,5.990826,9.638465,326.57516,329.44412,5.3765,955.8711,8.9,88.4851 +2023-04-15 06:00:00,6.4350605,9.847842,327.05078,327.43958,4.8765,955.7776,0.1,88.441246 +2023-04-15 07:00:00,6.6573267,10.462313,327.26477,328.2849,4.1265,956.10956,0.0,89.00552 +2023-04-15 08:00:00,6.664833,10.420173,332.2816,333.18912,3.7765,956.1381,0.0,88.65946 +2023-04-15 09:00:00,6.530697,10.336827,334.61212,335.41843,3.7264998,956.2231,0.0,88.02478 +2023-04-15 10:00:00,7.155418,10.465179,333.43503,333.92468,3.6764998,956.5922,0.0,87.081825 +2023-04-15 11:00:00,7.4249578,10.783784,334.47034,335.3362,3.3765,956.91394,0.0,86.74088 +2023-04-15 12:00:00,5.544367,8.800568,320.85602,323.78107,3.4264998,956.82886,0.0,94.833374 +2023-04-15 13:00:00,6.8249545,10.220078,320.94687,323.35425,3.4264998,957.4913,1.0,94.833374 +2023-04-15 14:00:00,7.4249578,10.824509,315.5456,316.87173,3.3765,957.67096,0.8,93.82645 +2023-04-15 15:00:00,7.881624,11.264546,324.2932,324.75787,3.3765,957.67096,0.1,89.580086 +2023-04-15 16:00:00,7.4027023,10.480935,321.5819,322.3647,3.3265,958.4186,0.1,87.98816 +2023-04-15 17:00:00,7.44043,10.7415085,323.74606,324.09018,3.0765,959.0333,0.4,92.48366 +2023-04-15 18:00:00,7.8549347,11.301769,328.5359,329.12326,3.0765,959.1279,0.4,89.235794 +2023-04-15 19:00:00,7.9630394,11.150336,324.71317,325.5973,3.4264998,959.384,0.3,85.81772 +2023-04-15 20:00:00,8.287943,11.4769335,318.42398,318.53238,3.8765,960.4158,0.1,79.629684 +2023-04-15 21:00:00,8.354639,11.975391,317.91092,318.72415,2.8265,960.5942,0.4,83.915726 +2023-04-15 22:00:00,8.354639,12.108262,317.91092,318.01285,2.0765,960.7339,0.3,89.47498 +2023-04-15 23:00:00,8.099383,12.264175,327.09476,327.99466,1.4265,960.13556,0.3,96.126015 +2023-04-16 00:00:00,9.013878,13.176495,326.3099,327.39542,1.3265,960.1162,0.1,88.12274 +2023-04-16 01:00:00,8.487638,12.480784,325.56094,326.43723,1.1265,960.36127,0.0,86.82827 +2023-04-16 02:00:00,8.140025,12.020815,322.98923,323.7973,0.8265,959.925,0.0,89.372444 +2023-04-16 03:00:00,8.700575,12.780062,322.4715,322.95068,0.6265,960.16974,0.1,87.73668 +2023-04-16 04:00:00,8.246211,12.244183,320.90613,321.63248,0.3765,960.0265,0.3,87.07149 +2023-04-16 05:00:00,7.50733,11.139569,318.23978,319.7335,0.17650001,960.2711,0.8,87.37228 +2023-04-16 06:00:00,7.291776,10.912378,317.77924,318.7154,-0.07350001,960.0332,1.3,90.28701 +2023-04-16 07:00:00,8.280096,12.300406,322.85324,323.59583,-0.27350003,959.9941,1.3,89.28098 +2023-04-16 08:00:00,8.9810915,13.440239,322.23685,323.47104,-0.6735,959.0646,1.4,89.57759 +2023-04-16 09:00:00,8.840815,13.360015,322.3523,323.2158,-0.9735,958.72205,1.1,91.22387 +2023-04-16 10:00:00,8.60523,12.840561,321.13223,322.59457,-1.2735,958.56866,1.2,91.54124 +2023-04-16 11:00:00,8.1024685,11.985408,324.54443,324.85126,-1.6735,958.67883,1.3,92.53884 +2023-04-16 12:00:00,9.160787,13.68247,323.88055,324.21884,-1.4735,957.67834,1.5,89.512 +2023-04-16 13:00:00,9.319335,13.790576,326.82147,328.0387,-1.3235,958.0863,0.5,86.90083 +2023-04-16 14:00:00,10.462313,15.332318,328.2849,329.42084,-1.4735,957.9619,0.3,84.96096 +2023-04-16 15:00:00,11.12205,16.144659,326.73856,327.3927,-1.4235,958.0665,0.4,84.33386 +2023-04-16 16:00:00,11.0385685,16.03122,326.45386,326.70642,-1.5235,958.7085,0.6,85.91308 +2023-04-16 17:00:00,11.872658,17.034376,327.38077,327.7094,-0.8235,959.2243,0.7,80.40904 +2023-04-16 18:00:00,11.872658,17.226143,327.38077,327.32474,-0.6735,959.53735,1.0,85.052704 +2023-04-16 19:00:00,10.904127,15.950549,324.70657,325.2139,-0.07350001,959.65497,0.9,84.80698 +2023-04-16 20:00:00,11.788978,17.032028,325.36624,325.2835,0.97650003,959.48096,0.4,83.99859 +2023-04-16 21:00:00,8.602325,13.009612,324.46225,325.33264,1.6765,959.1434,0.3,85.00729 +2023-04-16 22:00:00,8.868484,13.705838,330.25522,330.25522,2.8765,958.995,0.1,79.192535 +2023-04-16 23:00:00,9.217917,14.582523,331.48886,332.20496,3.4264998,959.00543,0.0,73.17925 +2023-04-17 00:00:00,9.794896,15.474172,332.6502,333.93176,3.1764998,959.0524,0.0,67.19921 +2023-04-17 01:00:00,9.3744335,15.285614,326.3099,327.55756,2.2264998,959.0599,0.0,66.74067 +2023-04-17 02:00:00,9.32309,15.365221,324.6051,326.41333,1.7265,959.15283,0.0,64.90363 +2023-04-17 03:00:00,9.135097,15.134398,318.1061,320.63068,1.2765,959.066,0.0,66.52827 +2023-04-17 04:00:00,9.14385,15.211838,318.991,320.8696,0.97650003,959.008,0.0,67.97788 +2023-04-17 05:00:00,9.078546,15.086418,319.46722,321.45877,0.6765,958.85535,0.0,70.2496 +2023-04-17 06:00:00,9.202173,15.250246,317.64258,319.52103,0.3765,958.89166,0.0,72.60006 +2023-04-17 07:00:00,8.340863,14.1014185,322.3057,323.94266,0.026500002,959.10706,0.0,74.74274 +2023-04-17 08:00:00,7.7006493,13.0667515,322.38596,324.972,-0.4235,959.1138,0.0,76.36268 +2023-04-17 09:00:00,7.657676,12.980755,319.23648,322.51205,-0.8235,959.31885,0.0,76.87026 +2023-04-17 10:00:00,7.50733,12.791403,318.23978,320.7106,-1.2235,959.335,0.0,76.80285 +2023-04-17 11:00:00,7.3,12.587692,318.888,321.12692,-1.6235,959.4452,0.0,75.58105 +2023-04-17 12:00:00,7.7620873,13.043006,321.80127,324.3601,-1.0735,958.9863,0.0,72.8691 +2023-04-17 13:00:00,7.1610055,12.092974,324.09018,325.78424,-0.7235,959.3385,0.0,71.56968 +2023-04-17 14:00:00,5.9033885,10.020979,321.1886,323.93048,0.3265,959.92224,0.0,70.177505 +2023-04-17 15:00:00,7.427651,10.131634,316.63654,318.60138,2.6265,960.3667,0.0,57.313023 +2023-04-17 16:00:00,7.4249578,9.972462,315.5456,316.21878,4.0765,960.54846,0.0,52.52657 +2023-04-17 17:00:00,7.2180333,9.6208105,312.75424,313.31537,5.5765,960.64215,0.0,47.31062 +2023-04-17 18:00:00,7.1589108,9.417537,311.03525,311.98712,6.9765,960.43024,0.0,41.8381 +2023-04-17 19:00:00,6.8014703,8.927485,311.42358,311.36694,8.1765,960.17865,0.0,38.550392 +2023-04-17 20:00:00,6.6603303,8.852683,311.3477,311.7947,9.1265,959.68994,0.0,35.879177 +2023-04-17 21:00:00,6.3655324,8.417245,316.27295,316.44406,9.7265005,959.13605,0.0,34.461205 +2023-04-17 22:00:00,5.9816384,7.964923,321.78894,321.1155,9.8765,958.8791,0.0,33.73093 +2023-04-17 23:00:00,5.161395,7.1028166,324.46225,324.74356,9.4765005,958.7115,0.0,35.713444 +2023-04-18 00:00:00,3.4885528,6.618912,332.7005,333.04788,7.2265,958.86646,0.0,43.522194 +2023-04-18 01:00:00,3.0675724,7.0213957,340.9743,342.5972,4.9265003,958.5321,0.0,49.124153 +2023-04-18 02:00:00,3.1016126,7.376313,339.22766,344.2679,3.2765,958.882,0.0,53.913773 +2023-04-18 03:00:00,2.5495098,6.428841,334.44006,344.66666,1.9265,959.0967,0.0,59.56149 +2023-04-18 04:00:00,2.1540658,5.5326304,338.19852,353.77426,0.3765,959.2699,0.0,67.33642 +2023-04-18 05:00:00,2.6000001,5.2,337.3801,360.0,-0.7235,959.1495,0.0,72.93631 +2023-04-18 06:00:00,3.1384711,4.7169905,337.5205,4.864438,-1.5235,958.8976,0.0,76.75209 +2023-04-18 07:00:00,3.206244,4.4922156,356.42374,16.82149,-1.8735,958.8284,0.0,77.569885 +2023-04-18 08:00:00,2.376973,4.9406476,22.249071,35.942207,-1.6235,958.78345,0.0,77.02611 +2023-04-18 09:00:00,2.302173,5.189412,55.6196,64.91644,-2.1235,958.5899,0.0,80.21836 +2023-04-18 10:00:00,2.209072,5.9682493,84.805664,81.32691,-1.8735,958.8284,0.0,79.95284 +2023-04-18 11:00:00,3.0016663,6.946222,88.09089,83.386635,-1.2235,959.0514,0.0,75.93794 +2023-04-18 12:00:00,3.214032,7.333485,95.355736,95.47728,-1.3235,959.03174,0.0,76.20802 +2023-04-18 13:00:00,3.420526,6.5802736,105.25517,106.78272,0.6265,960.16974,0.0,72.37695 +2023-04-18 14:00:00,3.1780498,4.9193497,114.14554,116.56499,3.1265,961.1245,0.0,65.71213 +2023-04-18 15:00:00,4.1231055,5.412947,112.833694,115.14475,5.6265,961.12494,0.0,57.668594 +2023-04-18 16:00:00,5.2924476,6.854196,112.20353,113.198616,7.5765,961.015,0.0,48.424763 +2023-04-18 17:00:00,5.635601,7.2945185,117.47435,118.67305,9.2265005,960.75024,0.0,43.142574 +2023-04-18 18:00:00,5.905929,7.566373,118.30067,119.275154,10.7765,960.17926,0.0,40.21002 +2023-04-18 19:00:00,6.328507,8.18352,121.42951,122.52488,12.0765,959.18134,0.0,37.58347 +2023-04-18 20:00:00,6.741661,8.904493,122.27561,122.61923,12.9265,958.1951,0.0,36.072712 +2023-04-18 21:00:00,6.8505473,9.126335,123.6901,124.734924,13.4265,957.3359,0.0,34.78654 +2023-04-18 22:00:00,7.03278,9.552486,119.84584,120.860825,13.4265,956.38776,0.0,35.172573 +2023-04-18 23:00:00,7.155418,10.153324,116.56499,117.57448,13.0765,955.8517,0.0,35.984615 +2023-04-19 00:00:00,6.203225,10.400001,110.77233,112.61991,12.1765,955.7867,0.0,37.751877 +2023-04-19 01:00:00,6.7446275,11.352974,105.4787,107.95626,10.9265,955.3733,0.0,39.226913 +2023-04-19 02:00:00,7.077429,11.943618,113.30492,115.27769,9.9765005,955.6757,0.0,41.63713 +2023-04-19 03:00:00,7.2897186,12.131365,116.91648,119.10039,9.6265,956.0859,0.0,42.78315 +2023-04-19 04:00:00,7.692204,12.676356,116.23188,119.80086,8.9765005,955.7784,0.0,44.53034 +2023-04-19 05:00:00,8.367198,13.550646,114.727295,116.754074,8.2765,954.6085,0.0,47.035957 +2023-04-19 06:00:00,8.588364,13.978912,117.75845,120.04983,7.8265,953.7684,0.1,50.13427 +2023-04-19 07:00:00,8.381527,13.665284,125.77617,128.4634,7.4765,953.041,0.0,52.87783 +2023-04-19 08:00:00,8.309633,13.446933,129.62897,132.58894,7.5265,952.29254,0.0,58.794437 +2023-04-19 09:00:00,9.426027,14.851936,131.12865,133.90887,7.4765,951.24164,0.1,69.845055 +2023-04-19 10:00:00,8.621485,13.74409,127.933334,131.46034,7.3265,950.7404,0.0,74.41992 +2023-04-19 11:00:00,6.8505473,11.401754,123.6901,127.875046,7.0765,950.88403,11.5,80.65966 +2023-04-19 12:00:00,9.404786,15.160475,125.04201,126.41647,4.8265,951.1299,2.0,89.379364 +2023-04-19 13:00:00,7.81025,12.560654,129.80553,130.15593,5.4265003,951.8097,0.0,88.48946 +2023-04-19 14:00:00,6.324555,9.32309,124.69522,125.39488,7.0265,952.95807,0.0,81.79262 +2023-04-19 15:00:00,4.5221677,6.080296,125.095894,126.30459,9.6765,953.72626,0.0,71.52309 +2023-04-19 16:00:00,4.148494,5.2201533,105.376305,106.699326,12.0765,953.9679,0.0,65.367966 +2023-04-19 17:00:00,4.554119,5.707013,98.841736,101.113,14.2765,953.8824,0.0,61.08404 +2023-04-19 18:00:00,4.925444,6.3505907,95.82625,97.236824,16.026499,953.71326,0.0,59.045494 +2023-04-19 19:00:00,5.308484,6.7029843,86.76037,88.29023,17.0765,953.2302,0.0,58.50612 +2023-04-19 20:00:00,5.6035705,7.206247,92.045364,92.385895,18.276499,952.8662,0.0,58.211784 +2023-04-19 21:00:00,6.395311,8.485281,80.09588,81.86999,17.7265,952.1083,0.0,57.687416 +2023-04-19 22:00:00,7.333485,10.02447,84.52272,85.9959,16.176498,952.1266,0.1,60.296013 +2023-04-19 23:00:00,6.3788714,9.3744335,76.399445,78.92985,13.2765,952.75824,1.2,70.98726 +2023-04-20 00:00:00,8.005623,11.813975,41.45514,43.28511,7.4765,954.7457,0.2,89.90166 +2023-04-20 01:00:00,7.066117,10.916501,63.072414,65.07826,6.1265,954.7803,1.3,91.377945 +2023-04-20 02:00:00,7.738863,12.215564,64.759514,65.32315,5.2265,954.32855,0.1,89.09754 +2023-04-20 03:00:00,7.071068,10.912378,61.26031,63.904633,4.7765,954.81226,0.0,88.74575 +2023-04-20 04:00:00,6.021628,9.329523,54.46224,59.03632,4.4265003,955.21954,0.1,90.300964 +2023-04-20 05:00:00,5.249762,7.9202275,49.635548,52.695976,4.0765,955.059,0.2,92.542175 +2023-04-20 06:00:00,5.1107726,8.40238,30.579157,38.23387,3.6764998,954.5102,0.8,96.53561 +2023-04-20 07:00:00,5.2325897,8.544589,26.075302,34.9921,3.3265,954.728,0.2,97.21206 +2023-04-20 08:00:00,5.59017,8.987213,26.564985,34.574257,2.9264998,954.2736,0.1,97.54888 +2023-04-20 09:00:00,6.4070277,10.423532,34.18618,40.720455,2.5765,953.3553,0.2,98.23875 +2023-04-20 10:00:00,5.3851647,9.209778,31.328646,41.47846,2.4764998,953.0524,0.2,98.23733 +2023-04-20 11:00:00,4.8052053,7.484651,12.011466,22.796566,2.4264998,953.3266,0.9,97.88726 +2023-04-20 12:00:00,4.304649,6.449806,2.6629453,7.12493,2.4764998,954.1878,0.4,95.81581 +2023-04-20 13:00:00,4.8373547,6.9720874,7.12493,8.246243,2.3765,953.7903,3.0,96.1554 +2023-04-20 14:00:00,5.3488317,7.7077885,20.806877,22.905807,2.2765,952.7305,2.4,95.80913 +2023-04-20 15:00:00,4.0447497,5.731492,351.4693,353.9911,2.2765,951.9737,3.8,96.49661 +2023-04-20 16:00:00,4.6872168,6.5734315,303.6901,303.20657,1.9265,953.6097,2.7,100.0 +2023-04-20 17:00:00,5.966573,9.360556,309.55963,310.6676,1.5265,953.15454,1.3,100.0 +2023-04-20 18:00:00,6.324555,8.962701,304.69522,305.46344,2.1764998,953.8466,0.4,94.78188 +2023-04-20 19:00:00,7.3824115,10.51903,298.30066,299.0016,2.1764998,954.22504,0.2,94.10468 +2023-04-20 20:00:00,8.184132,11.449017,296.87805,297.01257,3.9265,954.65204,0.1,81.375916 +2023-04-20 21:00:00,8.616263,12.054045,291.80148,292.94897,4.2765,955.1914,0.1,77.426445 +2023-04-20 22:00:00,8.876937,12.612692,284.34937,284.69736,3.5765,956.19464,0.2,77.593925 +2023-04-20 23:00:00,8.485281,12.233152,278.13,278.4612,3.7765,956.9899,0.1,71.921165 +2023-04-21 00:00:00,7.4330344,11.253888,275.4037,275.6092,4.7765,957.084,0.0,60.0595 +2023-04-21 01:00:00,5.414795,8.63713,274.23633,275.31445,4.6765003,957.1599,0.0,59.371418 +2023-04-21 02:00:00,4.4,7.91012,270.0,272.8985,3.7264998,956.9802,0.0,61.602562 +2023-04-21 03:00:00,4.031129,8.1,262.8751,270.0,2.2264998,956.69464,0.0,67.49065 +2023-04-21 04:00:00,4.7675986,9.008884,260.34018,267.45526,1.8265,957.0909,0.0,66.90112 +2023-04-21 05:00:00,5.9439044,10.493807,257.36664,262.33328,1.8765,957.006,0.0,63.016514 +2023-04-21 06:00:00,7.218033,11.894958,259.6242,262.75558,1.7765,957.0813,0.0,59.07361 +2023-04-21 07:00:00,7.083784,11.498261,251.0534,254.87593,1.6265,957.52545,0.0,59.484676 +2023-04-21 08:00:00,6.35059,10.715409,243.8385,247.50348,1.0265,957.4096,0.0,60.932846 +2023-04-21 09:00:00,6.854196,11.388591,246.80139,249.97382,0.6265,956.76483,0.0,60.139786 +2023-04-21 10:00:00,7.1168814,11.666191,252.838,255.60637,0.3765,956.33813,0.0,63.13198 +2023-04-21 11:00:00,7.0604534,11.280514,254.38895,257.19574,0.5765,955.90393,0.0,66.3706 +2023-04-21 12:00:00,6.503076,9.900505,268.23764,270.5787,0.7765,955.46985,0.0,79.16377 +2023-04-21 13:00:00,7.256032,10.340696,277.1249,279.46225,1.1765,956.01996,0.0,73.02492 +2023-04-21 14:00:00,7.5927596,10.5019045,282.93805,283.7716,1.7765,956.1353,0.0,64.42971 +2023-04-21 15:00:00,8.48646,11.587925,291.42535,291.25058,2.2765,956.13654,0.1,56.573193 +2023-04-21 16:00:00,8.876936,12.054045,292.5206,292.94897,2.3265,956.7136,0.0,53.856453 +2023-04-21 17:00:00,8.5615425,11.515642,292.6714,293.00262,2.7264998,957.07416,0.0,52.547726 +2023-04-21 18:00:00,8.28734,11.072488,289.74692,290.07162,2.7264998,957.2634,0.3,51.75177 +2023-04-21 19:00:00,8.516455,11.332254,285.6682,285.876,3.7264998,957.45337,0.2,46.41191 +2023-04-21 20:00:00,8.53815,11.479111,288.43503,288.2772,3.7264998,957.7373,0.2,47.309532 +2023-04-21 21:00:00,8.381527,11.417968,287.3541,287.3242,3.5765,957.70874,0.1,49.29562 +2023-04-21 22:00:00,8.421995,11.423659,299.91354,299.93143,3.1764998,957.8223,0.2,54.090736 +2023-04-21 23:00:00,7.2201114,9.940322,306.55255,306.40884,2.8765,958.23804,0.1,59.80347 +2023-04-22 00:00:00,7.262231,10.244999,308.2902,308.65982,0.8265,958.2224,0.1,66.92972 +2023-04-22 01:00:00,6.8818603,9.881295,305.53775,305.9422,0.17650001,958.2851,0.1,68.06018 +2023-04-22 02:00:00,6.325346,9.577578,309.22565,310.34167,-0.4735,958.8202,0.1,72.7094 +2023-04-22 03:00:00,7.0092793,10.473777,312.10864,312.67844,-0.77349997,959.32886,0.2,76.87868 +2023-04-22 04:00:00,6.726812,10.40048,311.98712,313.05194,-1.1735,959.3447,0.1,79.45792 +2023-04-22 05:00:00,6.3702435,10.0657835,317.54483,319.02835,-1.7735,959.41534,0.0,83.661766 +2023-04-22 06:00:00,6.296825,9.708244,316.93057,318.75864,-1.5735,959.833,0.1,83.686615 +2023-04-22 07:00:00,6.92026,10.241582,322.63324,324.13705,-1.3235,959.88257,0.1,81.24602 +2023-04-22 08:00:00,7.323933,10.872442,325.0079,325.8714,-1.5235,960.03204,0.1,80.60941 +2023-04-22 09:00:00,7.932213,11.734564,326.3099,327.52884,-1.6735,960.0968,0.1,81.19676 +2023-04-22 10:00:00,8.5440035,12.434228,327.42596,328.48312,-1.8235,960.8236,0.0,78.16767 +2023-04-22 11:00:00,7.905694,11.759677,325.30478,326.44504,-2.0735002,961.3411,0.0,78.42417 +2023-04-22 12:00:00,8.631338,12.657409,333.13815,334.24478,-1.5235,961.45013,0.0,68.73264 +2023-04-22 13:00:00,9.4541,13.538464,336.9605,337.41263,-1.3735,962.04694,0.0,68.24086 +2023-04-22 14:00:00,9.972463,13.8351,338.83865,338.81375,-0.77349997,962.5437,0.0,65.06048 +2023-04-22 15:00:00,9.656604,13.296616,338.74942,338.83865,0.47650003,962.8833,0.0,58.064564 +2023-04-22 16:00:00,9.60052,13.092364,337.9769,337.5484,1.2265,963.2185,0.0,56.291687 +2023-04-22 17:00:00,9.484725,12.795312,335.05612,335.03723,2.5765,963.5739,0.0,52.106155 +2023-04-22 18:00:00,9.43663,12.879829,332.89194,333.23608,2.8765,963.53687,0.0,49.851795 +2023-04-22 19:00:00,9.141663,12.229881,329.78876,330.08087,3.7765,963.80396,0.0,49.16568 +2023-04-22 20:00:00,8.266196,11.232987,325.3486,325.8855,3.3765,964.0113,0.0,52.72946 +2023-04-22 21:00:00,7.9630394,10.764757,324.71317,324.8335,3.2264998,964.07715,0.0,54.309624 +2023-04-22 22:00:00,7.8492036,10.789809,325.90497,325.57346,3.3765,963.9166,0.0,51.541897 +2023-04-22 23:00:00,7.5802374,10.495713,329.03632,329.03632,3.3265,964.09644,0.0,48.661858 +2023-04-23 00:00:00,7.1589108,10.111874,331.64514,331.66095,1.9764999,964.40436,0.0,53.554253 +2023-04-23 01:00:00,6.35059,9.213577,333.8385,334.26935,1.3765,964.76105,0.0,55.902687 +2023-04-23 02:00:00,5.2924476,7.9479556,337.79648,338.6001,0.6765,965.47595,0.0,61.077297 +2023-04-23 03:00:00,4.88467,7.4464755,337.1094,337.91278,0.3265,965.8804,0.0,62.879955 +2023-04-23 04:00:00,4.5694637,7.0007143,336.8014,338.19852,-0.22350001,965.96124,0.0,67.2033 +2023-04-23 05:00:00,4.2190046,6.847627,328.5705,331.1893,-0.6235,965.8826,0.0,68.403885 +2023-04-23 06:00:00,3.405877,6.5459914,319.7637,325.58157,-1.8735,965.6347,0.0,70.79527 +2023-04-23 07:00:00,2.828427,6.280127,315.0001,322.76508,-2.7235,965.46497,0.0,73.95528 +2023-04-23 08:00:00,2.4839485,5.7489133,310.10083,319.93927,-3.3735,965.24,0.0,78.515915 +2023-04-23 09:00:00,2.0808651,5.091169,305.21768,315.0001,-4.1235,965.2776,0.0,84.97533 +2023-04-23 10:00:00,2.147091,5.0328918,297.75842,310.97165,-4.3234997,965.5204,0.0,87.25518 +2023-04-23 11:00:00,2.376973,5.325411,292.24908,304.28693,-4.3735,965.6993,0.0,86.91768 +2023-04-23 12:00:00,3.130495,5.940539,296.56497,306.09836,-4.0235,966.1482,0.0,81.79719 +2023-04-23 13:00:00,3.3615475,5.0477715,300.37906,303.6901,-2.2735002,966.8782,0.0,73.75696 +2023-04-23 14:00:00,4.031129,5.3037724,313.995,314.23618,-0.6235,967.30096,0.0,69.18827 +2023-04-23 15:00:00,4.8104053,6.155485,316.68463,316.9749,0.92649996,967.5109,0.0,59.987095 +2023-04-23 16:00:00,5.420332,6.981404,322.4958,321.981,2.1265,967.65,0.0,51.979164 +2023-04-23 17:00:00,5.72014,7.3600273,323.53067,323.2857,3.8265,967.50433,0.0,45.55915 +2023-04-23 18:00:00,5.8898215,7.528612,319.82083,320.38934,4.9765,966.9664,0.0,40.763294 +2023-04-23 19:00:00,5.8051705,7.366139,312.2072,311.69803,5.9265003,966.6726,0.0,38.905033 +2023-04-23 20:00:00,5.325411,6.8505473,304.28693,303.6901,5.7265,966.35077,0.0,40.52144 +2023-04-23 21:00:00,5.060632,6.6730804,299.60434,299.63828,5.9765,965.82965,0.0,39.979893 +2023-04-23 22:00:00,5.269725,7.017834,303.38855,302.78427,6.1265,965.7634,0.0,39.56801 +2023-04-23 23:00:00,4.9819674,6.6400304,308.48022,307.04254,5.8265,965.9909,0.0,42.941963 +2023-04-24 00:00:00,3.482815,5.249762,320.82635,319.63553,5.7265,965.688,0.0,39.44693 +2023-04-24 01:00:00,2.3345234,4.8507733,9.865748,8.297059,4.2265,965.7826,0.0,49.859444 +2023-04-24 02:00:00,1.9209373,4.652956,38.65983,28.217264,1.3765,965.707,0.0,63.852615 +2023-04-24 03:00:00,2.9832866,3.7443287,50.440376,34.114517,-0.8235,965.55927,0.0,74.87051 +2023-04-24 04:00:00,1.9924859,2.3600848,72.47434,36.38445,1.4265,966.09503,0.0,61.964184 +2023-04-24 05:00:00,1.2529964,1.7029386,118.61037,49.76371,1.7265,966.0586,0.0,60.19039 +2023-04-24 06:00:00,1.6,2.184033,180.0,164.05453,-1.5735,965.4107,0.0,78.2078 +2023-04-24 07:00:00,2.6476402,4.4553337,190.88548,189.0394,-1.5235,965.04254,0.0,79.70429 +2023-04-24 08:00:00,2.6683328,5.3600373,192.99461,194.03627,-0.9235,964.97235,0.0,75.41939 +2023-04-24 09:00:00,2.9120438,6.432729,195.94547,191.65926,-1.2235,964.81854,0.0,75.08171 +2023-04-24 10:00:00,2.996665,6.5551505,205.7099,201.47685,-1.4735,965.05237,0.0,73.62671 +2023-04-24 11:00:00,2.3345237,6.080296,223.26433,216.30458,-1.9235,965.3413,0.0,75.81555 +2023-04-24 12:00:00,1.3038405,1.3892444,327.52884,329.74365,-2.4235,965.714,0.0,85.49256 +2023-04-24 13:00:00,2.7,4.472136,360.0,10.304792,0.2765,966.9109,0.0,77.054245 +2023-04-24 14:00:00,2.720294,4.365776,17.102825,20.095322,2.6265,967.7468,0.0,69.35345 +2023-04-24 15:00:00,3.4669871,4.4102154,33.231728,32.96941,4.9265003,967.80884,0.0,58.129547 +2023-04-24 16:00:00,3.0,3.720215,36.86998,36.253937,6.5765,967.74164,0.0,50.90383 +2023-04-24 17:00:00,2.5553863,3.001666,30.579157,29.981556,7.7765,967.6818,0.0,47.06585 +2023-04-24 18:00:00,2.158703,2.4515302,13.392516,11.76827,8.7265005,967.19507,0.0,44.29251 +2023-04-24 19:00:00,2.3323808,2.745906,329.03632,326.88864,9.5765,966.6883,0.0,39.853256 +2023-04-24 20:00:00,2.6832817,3.224903,333.43503,330.25522,9.5265,966.2054,0.0,38.66463 +2023-04-24 21:00:00,3.1953092,3.8999999,339.8636,337.3801,9.7265005,965.8632,0.0,37.300667 +2023-04-24 22:00:00,4.1,5.0447993,347.3196,346.2392,9.4265,965.8081,0.0,37.77464 +2023-04-24 23:00:00,4.4011364,5.60803,358.69806,356.93356,8.9265,965.7162,0.0,39.65916 +2023-04-25 00:00:00,4.4944406,6.109828,20.854538,21.10492,6.9765,965.9227,0.0,41.52255 +2023-04-25 01:00:00,2.9068882,6.0835843,26.564985,25.301346,5.0265,965.8399,0.0,48.96776 +2023-04-25 02:00:00,3.9115214,7.9202275,32.471172,37.304024,3.1764998,966.14954,0.0,52.67363 +2023-04-25 03:00:00,3.9597979,8.146779,44.999897,48.483376,2.1265,966.7039,0.0,54.83766 +2023-04-25 04:00:00,3.720215,8.01561,53.74608,56.706417,1.3265,966.8323,0.0,55.462654 +2023-04-25 05:00:00,3.4985712,7.7369246,59.03632,63.103848,0.5265,966.95996,0.0,58.74966 +2023-04-25 06:00:00,3.2695565,7.467262,66.5713,69.62349,-0.07350001,967.03107,0.0,63.02301 +2023-04-25 07:00:00,3.2893767,7.569016,70.46326,74.67844,-0.6735,967.0072,0.0,68.6537 +2023-04-25 08:00:00,3.1064448,7.300685,86.308685,90.78481,-1.1235,967.29626,0.0,73.97202 +2023-04-25 09:00:00,2.7294688,6.8066144,81.57312,87.47394,-1.7235,967.3662,0.0,78.776886 +2023-04-25 10:00:00,2.8160257,6.747592,73.49557,83.19105,-2.2235,967.5499,0.0,82.97773 +2023-04-25 11:00:00,2.570992,6.428064,76.50425,84.644264,-2.6735,967.93243,0.0,85.14266 +2023-04-25 12:00:00,2.84605,6.0827627,71.564964,80.53775,-1.7735,968.585,0.0,83.03576 +2023-04-25 13:00:00,3.3120992,6.5802736,61.113514,73.21728,0.5265,969.7027,0.0,75.11237 +2023-04-25 14:00:00,4.031129,5.4781384,66.61476,68.58697,2.4264998,970.357,0.0,66.04331 +2023-04-25 15:00:00,4.6173587,6.0440054,72.34979,73.66389,4.6265,970.5912,0.0,55.930683 +2023-04-25 16:00:00,5.1662364,6.6219335,75.42574,75.124275,6.1265,970.7817,0.0,44.693115 +2023-04-25 17:00:00,4.8703184,6.2297673,70.8209,71.27412,7.1765003,970.97925,0.0,38.248997 +2023-04-25 18:00:00,4.701064,6.0008335,66.161255,66.425285,7.8765,970.6367,0.0,36.46518 +2023-04-25 19:00:00,4.609772,5.727128,65.65892,65.22488,8.4765005,970.36957,0.0,36.925285 +2023-04-25 20:00:00,4.2544093,5.4230986,66.44773,67.21756,8.9265,970.16864,0.0,37.76682 +2023-04-25 21:00:00,4.0718546,5.056679,65.32315,65.46229,9.0765,970.10187,0.0,38.38533 +2023-04-25 22:00:00,3.8910153,4.9658837,64.09355,64.98315,8.9265,969.6002,0.0,38.921597 +2023-04-25 23:00:00,3.8078866,4.792703,66.80139,66.64442,8.4765005,969.7065,0.0,39.973095 +2023-04-26 00:00:00,3.448188,4.7885275,60.461315,61.294147,7.6765003,969.747,0.0,39.73319 +2023-04-26 01:00:00,2.302173,5.2478566,55.6196,59.03632,5.5765,969.7308,0.0,49.868904 +2023-04-26 02:00:00,2.4166093,5.9236813,65.55606,68.19853,3.7765,969.95544,0.0,54.460007 +2023-04-26 03:00:00,2.1540658,5.440588,68.19853,72.89719,2.2765,970.0444,0.0,60.102455 +2023-04-26 04:00:00,2.1023796,5.597321,64.65388,71.24126,1.2265,970.2182,0.0,65.52368 +2023-04-26 05:00:00,2.7294688,6.661081,81.57312,82.234924,1.1765,970.2084,0.0,64.04653 +2023-04-26 06:00:00,2.9017239,6.902898,91.97489,91.66025,1.1765,970.30304,0.0,60.970448 +2023-04-26 07:00:00,2.915476,6.9584484,95.906044,97.43131,0.5265,970.08093,0.0,63.650093 +2023-04-26 08:00:00,2.9832869,7.227724,103.57046,104.420815,-0.123500004,969.9529,0.0,68.25292 +2023-04-26 09:00:00,2.8653097,6.894201,119.24873,113.962494,-0.6235,969.66486,0.0,72.68045 +2023-04-26 10:00:00,3.2449963,7.1867933,123.690094,121.920845,-0.3235,970.0078,0.0,72.19197 +2023-04-26 11:00:00,2.9832866,6.940461,129.55963,126.20955,-0.6235,969.85394,0.0,73.23139 +2023-04-26 12:00:00,2.9206164,6.3411355,128.04709,127.95429,-0.4735,970.07263,0.0,74.65225 +2023-04-26 13:00:00,2.9732137,6.296825,132.27362,136.93057,2.0765,970.7622,0.0,68.470184 +2023-04-26 14:00:00,2.9410884,4.494441,144.6887,147.72438,4.2765,970.71375,0.0,61.055347 +2023-04-26 15:00:00,2.5495098,3.6249137,154.44008,155.55606,4.5765,970.2976,0.0,61.35561 +2023-04-26 16:00:00,3.2572994,4.148494,162.12122,164.62369,7.3765,970.16437,0.0,54.424583 +2023-04-26 17:00:00,3.2893767,4.3324356,160.46326,161.14674,8.8265,969.5817,0.0,50.599392 +2023-04-26 18:00:00,3.9217343,5.249762,160.64091,162.25523,9.1765,968.5097,0.0,51.067425 +2023-04-26 19:00:00,4.554119,5.7558665,171.15826,172.01076,12.3765,967.76636,0.0,43.587753 +2023-04-26 20:00:00,5.3,6.902898,180.0,181.66025,13.7265005,966.87085,0.0,43.82138 +2023-04-26 21:00:00,5.656854,7.4148498,188.13002,190.09744,15.5765,965.5863,0.0,42.211346 +2023-04-26 22:00:00,6.664833,9.082401,207.71841,208.25793,16.026499,964.2426,0.0,41.014194 +2023-04-26 23:00:00,6.307139,9.213034,205.34613,207.12122,15.3265,963.55054,0.0,43.969334 +2023-04-27 00:00:00,4.7675986,8.238932,170.34018,174.4279,14.6265,962.1942,0.0,46.814262 +2023-04-27 01:00:00,5.9439044,10.394229,167.36664,168.90631,13.3765,961.1196,0.0,48.82994 +2023-04-27 02:00:00,5.9682493,10.937092,171.3269,175.27995,11.8265,960.27374,0.0,52.72573 +2023-04-27 03:00:00,7.05762,12.53196,187.32631,191.0409,11.5765,960.0393,0.0,55.146053 +2023-04-27 04:00:00,7.981228,13.572399,195.25517,196.69933,11.8265,959.6103,0.0,52.538685 +2023-04-27 05:00:00,8.011242,13.508515,204.32556,205.42683,11.7765,959.22205,0.0,52.33868 +2023-04-27 06:00:00,8.013114,13.360015,209.12396,210.59593,11.7265005,959.11847,0.0,52.511635 +2023-04-27 07:00:00,7.4625735,12.536346,212.4123,213.94363,11.8765,958.5767,0.0,52.179924 +2023-04-27 08:00:00,7.769813,13.009612,211.84901,214.66736,11.3265,958.19354,0.0,54.11069 +2023-04-27 09:00:00,8.184131,13.401493,215.04945,217.72505,11.2765,957.6158,0.0,54.4835 +2023-04-27 10:00:00,8.160882,13.524792,216.02747,218.3952,10.9265,957.55304,0.0,56.560875 +2023-04-27 11:00:00,7.964923,13.25481,218.8845,221.02316,10.6765,957.41315,0.0,56.6975 +2023-04-27 12:00:00,5.7982755,10.332473,224.9999,227.35333,10.8265,956.87146,0.0,54.36411 +2023-04-27 13:00:00,5.5865912,9.192389,224.27486,224.9999,11.7765,957.1368,0.0,53.84715 +2023-04-27 14:00:00,4.6861496,6.9426217,219.80553,221.49637,13.3265,956.8442,0.0,51.837143 +2023-04-27 15:00:00,5.420332,7.543209,217.50421,218.54121,14.9265,956.3672,0.0,49.432728 +2023-04-27 16:00:00,7.060453,9.745255,217.51918,218.75163,16.776499,955.9298,0.0,44.694313 +2023-04-27 17:00:00,8.46286,11.800424,215.38036,216.38445,17.6265,955.6019,0.0,40.756096 +2023-04-27 18:00:00,8.348653,11.403947,214.26115,215.36255,18.8265,955.04767,0.0,38.065544 +2023-04-27 19:00:00,7.793587,10.5948105,213.48619,213.84009,19.3765,954.66644,0.0,35.89036 +2023-04-27 20:00:00,7.4060783,10.183319,214.54843,215.40695,18.926498,954.40015,0.0,34.641212 +2023-04-27 21:00:00,5.0328918,7.798718,220.97165,220.84027,17.8765,953.9368,0.0,39.00802 +2023-04-27 22:00:00,4.244997,6.5795135,223.09087,223.1524,17.776499,953.3502,0.0,41.229923 +2023-04-27 23:00:00,4.356604,6.989278,211.86594,213.91747,17.776499,953.44507,0.0,41.51921 +2023-04-28 00:00:00,3.4132097,6.412488,174.95764,183.57626,16.176498,953.26495,0.0,48.414093 +2023-04-28 01:00:00,2.302173,5.554278,177.5105,193.53587,14.0265,953.4593,0.1,57.55064 +2023-04-28 02:00:00,3.6,7.632169,270.0,264.7377,12.7765,954.28156,0.0,60.515236 +2023-04-28 03:00:00,3.2015622,6.512296,271.78986,266.4786,11.2265005,954.9533,0.3,77.18158 +2023-04-28 04:00:00,2.5019991,6.0033326,267.70944,268.09088,10.5265,955.01715,0.4,87.432335 +2023-04-28 05:00:00,2.3259406,5.724509,244.5367,250.61539,10.5265,955.11194,0.2,87.13689 +2023-04-28 06:00:00,1.2369317,3.623534,194.03627,230.59937,10.1265,955.1344,0.5,89.79743 +2023-04-28 07:00:00,0.9433981,1.9313208,147.99466,201.25058,9.6765,955.337,0.7,91.60868 +2023-04-28 08:00:00,1.6278821,2.2472203,132.5104,159.14546,9.3265,955.08405,0.6,93.47039 +2023-04-28 09:00:00,1.2206556,1.2369317,124.992096,165.96373,9.1765,955.5305,0.6,94.099144 +2023-04-28 10:00:00,0.8062258,1.7029386,330.25522,319.7637,8.7265005,956.2064,0.7,96.343544 +2023-04-28 11:00:00,2.1377556,4.0447497,10.784258,8.530692,8.3765,956.5211,0.4,97.32152 +2023-04-28 12:00:00,4.1617303,6.462198,324.78232,338.19852,8.0765,957.31854,0.5,98.64953 +2023-04-28 13:00:00,6.1846585,9.602604,345.9637,351.61682,7.7265,958.39087,0.4,97.97478 +2023-04-28 14:00:00,6.33877,10.20049,353.6599,359.4383,7.5765,959.2155,0.5,97.30461 +2023-04-28 15:00:00,6.741662,10.309219,339.14545,341.91644,7.1765003,960.0885,0.6,96.298904 +2023-04-28 16:00:00,6.735726,9.904039,341.83395,343.57773,7.1765003,960.94086,0.3,91.44717 +2023-04-28 17:00:00,7.3756356,10.358572,347.4712,347.17123,7.5765,961.29913,0.0,85.655106 +2023-04-28 18:00:00,8.041144,11.335784,349.24908,348.29358,8.2265005,961.41907,0.0,79.424576 +2023-04-28 19:00:00,8.561542,11.860017,345.80142,345.84656,9.4765005,961.45905,0.0,70.0003 +2023-04-28 20:00:00,8.221922,11.194642,341.56494,341.24124,10.2265005,961.4065,0.1,67.982445 +2023-04-28 21:00:00,7.5272837,10.373042,340.60208,340.86627,9.5765,961.5721,0.0,69.04637 +2023-04-28 22:00:00,6.9857,9.76934,336.3706,337.1094,9.2265005,961.7924,0.0,67.29613 +2023-04-28 23:00:00,6.5924196,9.15478,337.71436,338.19852,9.1265,961.9636,0.0,60.913647 +2023-04-29 00:00:00,5.4571056,7.8339005,346.21838,345.9637,9.8265,961.523,0.0,51.619568 +2023-04-29 01:00:00,2.9732137,6.103278,340.3461,341.86182,8.1265,961.1167,0.0,60.451797 +2023-04-29 02:00:00,3.7013512,7.932213,321.5819,326.3099,6.8265,960.9704,0.0,61.90286 +2023-04-29 03:00:00,4.770744,8.781799,326.97614,329.9315,7.1265,961.4996,0.0,55.974255 +2023-04-29 04:00:00,4.110961,8.160882,318.94528,323.97253,5.8765,961.1718,0.0,63.96321 +2023-04-29 05:00:00,4.110961,8.221922,311.05472,318.94528,5.3265,960.5951,0.0,67.42119 +2023-04-29 06:00:00,3.6878178,7.5166483,310.60123,319.3161,4.8765,960.1319,0.0,68.81076 +2023-04-29 07:00:00,2.3600848,5.882177,306.38446,324.6887,3.0765,959.2226,0.0,76.67094 +2023-04-29 08:00:00,3.0675724,6.6610813,289.0257,305.83774,2.3765,958.8994,0.0,79.69648 +2023-04-29 09:00:00,3.733631,7.907591,290.37653,302.08215,2.4264998,958.71954,0.0,78.83592 +2023-04-29 10:00:00,3.6674242,7.8236823,295.8663,305.1121,2.4264998,958.3411,0.0,76.28209 +2023-04-29 11:00:00,3.4985712,7.605919,300.96368,309.1304,2.1764998,957.8202,0.0,75.12669 +2023-04-29 12:00:00,3.940812,7.7077885,305.7068,314.47443,2.8265,957.75555,0.0,69.65188 +2023-04-29 13:00:00,3.8948684,7.7897367,299.1974,311.87778,4.7265,957.8319,0.0,66.31467 +2023-04-29 14:00:00,4.404543,6.0307546,309.47244,310.29205,6.9265003,957.86395,0.0,57.372192 +2023-04-29 15:00:00,5.186521,6.8505473,326.0035,326.3099,8.1265,957.61206,0.0,52.86207 +2023-04-29 16:00:00,6.356886,8.19329,340.70987,340.0168,9.4265,957.4707,0.0,50.215767 +2023-04-29 17:00:00,6.2361846,8.132035,344.18073,343.57062,9.7765,956.96594,0.0,47.814693 +2023-04-29 18:00:00,6.6098413,8.664871,342.38733,341.14676,9.7265005,956.6726,0.0,47.279457 +2023-04-29 19:00:00,7.3409805,9.708244,335.87903,335.0188,10.0265,956.6323,0.1,45.833435 +2023-04-29 20:00:00,8.05295,10.783784,335.0261,335.3362,10.4265,956.5152,0.0,43.97629 +2023-04-29 21:00:00,7.877182,10.694391,331.15744,331.5179,10.8265,956.20807,0.0,40.224834 +2023-04-29 22:00:00,8.469357,11.555085,337.06787,336.54095,10.8265,955.73425,0.0,39.197193 +2023-04-29 23:00:00,8.0062475,11.225417,332.47485,332.9785,10.4265,955.66235,0.1,43.815346 +2023-04-30 00:00:00,8.497058,12.120231,333.43503,334.06924,9.3765,955.7563,0.0,47.700485 +2023-04-30 01:00:00,6.7230945,10.547511,337.249,338.29938,8.2265005,955.9253,0.0,53.08279 +2023-04-30 02:00:00,6.440497,10.610373,334.2307,336.09232,6.9265003,956.1594,0.0,57.792793 +2023-04-30 03:00:00,6.847627,11.182575,331.1893,332.28928,5.8265,956.4285,0.0,66.79979 +2023-04-30 04:00:00,6.71193,11.130589,326.54666,328.59488,4.9765,956.26965,0.0,70.85886 +2023-04-30 05:00:00,6.96563,11.5,320.82635,323.13,4.0765,956.10016,0.0,75.186325 +2023-04-30 06:00:00,7.184706,11.734564,325.2039,327.52884,3.5765,956.19464,0.0,81.328 +2023-04-30 07:00:00,7.156116,11.799152,326.97614,328.86975,3.1265,955.7308,0.0,83.64952 +2023-04-30 08:00:00,7.6275816,12.349089,325.68484,328.24057,2.6764998,955.6452,0.0,86.67022 +2023-04-30 09:00:00,8.070935,12.932131,326.113,328.27643,2.3265,955.57825,0.0,86.63469 +2023-04-30 10:00:00,8.405951,13.360015,327.6334,329.40408,2.0265,955.6157,0.0,83.81906 +2023-04-30 11:00:00,8.883693,14.016062,328.8151,330.50873,1.7765,955.9461,0.0,81.07882 +2023-04-30 12:00:00,9.976472,15.384732,331.89383,332.93536,2.3765,955.58795,0.0,67.27281 +2023-04-30 13:00:00,9.947865,14.773286,329.82657,330.8325,3.5765,956.0054,0.0,64.13196 +2023-04-30 14:00:00,11.763079,16.728718,334.30634,334.50723,4.7265,956.3173,0.0,59.604324 +2023-04-30 15:00:00,13.186736,18.436106,341.42755,341.66324,6.0265,956.27637,0.0,51.51137 +2023-04-30 16:00:00,12.722421,17.720045,339.28574,339.51956,6.7765,956.41565,0.0,49.10164 +2023-04-30 17:00:00,12.478783,17.381887,338.36905,338.74942,7.8765,956.42944,0.0,44.20737 +2023-04-30 18:00:00,12.349089,17.123375,338.6293,339.13058,9.5265,956.54144,0.0,40.891197 +2023-04-30 19:00:00,12.461541,17.34618,337.34473,337.27844,9.6765,956.3792,0.0,39.145924 +2023-04-30 20:00:00,13.167384,18.4808,339.08737,339.4076,10.1265,956.5557,0.0,36.864094 +2023-04-30 21:00:00,12.816006,18.132015,343.68607,343.66388,10.4265,956.7047,0.0,34.932606 +2023-04-30 22:00:00,12.808201,18.278402,340.85764,341.16843,10.2265005,957.04767,0.0,35.938183 +2023-04-30 23:00:00,10.492378,15.078462,337.59012,338.19852,9.5765,957.5927,0.0,38.247433 +2023-05-01 00:00:00,9.706184,14.489997,332.379,333.7887,9.6265,957.0333,0.0,38.985016 +2023-05-01 01:00:00,8.994443,13.865425,331.4405,332.511,8.5765,957.12616,0.0,42.31459 +2023-05-01 02:00:00,8.049845,12.928264,333.43503,334.8225,7.5265,957.4068,0.0,43.61103 +2023-05-01 03:00:00,7.692204,12.621014,333.76813,335.66876,6.8765,957.5708,0.0,45.083424 +2023-05-01 04:00:00,6.8029404,11.515642,335.69547,336.99738,6.1765003,957.7245,0.0,47.12961 +2023-05-01 05:00:00,6.536819,11.18034,330.6901,333.43503,5.4265003,957.58453,0.0,49.82617 +2023-05-01 06:00:00,6.7675695,11.490867,325.84024,328.5232,4.7265,957.54785,0.0,54.108006 +2023-05-01 07:00:00,6.9065185,11.766053,325.6196,328.2011,4.2265,957.45355,0.0,57.51767 +2023-05-01 08:00:00,6.9115844,11.772,328.60977,331.04004,3.7765,957.46313,0.0,59.142284 +2023-05-01 09:00:00,6.5,11.182575,329.48984,332.28928,3.2264998,957.4532,0.0,60.79479 +2023-05-01 10:00:00,6.2433968,10.83005,328.09195,331.30518,2.6265,957.62274,0.0,63.670544 +2023-05-01 11:00:00,6.5802736,11.205802,323.65244,327.01898,2.0765,957.8011,0.0,67.70964 +2023-05-01 12:00:00,7.0491138,11.461239,328.3393,330.75128,2.4764998,957.78314,0.0,66.54822 +2023-05-01 13:00:00,6.8007355,10.53945,323.97253,326.61145,3.7765,958.4095,0.0,63.47025 +2023-05-01 14:00:00,8.045496,11.301769,327.6927,329.12326,5.3765,958.5218,0.0,57.17924 +2023-05-01 15:00:00,8.683317,11.811858,331.07367,331.69934,7.0265,958.4506,0.0,51.59914 +2023-05-01 16:00:00,9.841239,13.29135,334.73694,335.55606,8.3765,958.3209,0.0,44.68546 +2023-05-01 17:00:00,10.288343,13.912944,334.68036,334.90848,9.5265,958.1521,0.0,40.739296 +2023-05-01 18:00:00,10.511898,14.269547,334.65387,334.69205,10.4265,957.84186,0.0,37.09216 +2023-05-01 19:00:00,10.509519,14.176742,333.43503,333.61575,11.1265,957.3993,0.0,33.59565 +2023-05-01 20:00:00,10.336827,14.094325,335.41843,335.25327,11.8265,957.3354,0.0,30.657965 +2023-05-01 21:00:00,10.870603,14.848569,332.02063,332.74475,11.9265,957.1638,0.0,31.15382 +2023-05-01 22:00:00,10.331021,14.310836,332.93896,333.43503,10.8265,957.25055,0.0,33.63276 +2023-05-01 23:00:00,10.215673,14.392359,336.94867,337.5332,10.0265,957.4851,0.0,36.0135 +2023-05-02 00:00:00,8.234683,12.185237,335.61365,336.8014,9.8765,956.79456,0.0,31.257507 +2023-05-02 01:00:00,6.741661,10.927488,327.72437,330.38528,8.3765,956.8053,0.0,33.925533 +2023-05-02 02:00:00,7.9924965,12.763228,328.2986,330.42224,7.1765003,957.34216,0.0,39.432575 +2023-05-02 03:00:00,7.738863,12.605158,327.13132,328.95834,6.5765,957.7044,0.0,40.00811 +2023-05-02 04:00:00,7.291776,12.001667,334.84073,336.42526,5.6765003,958.2942,0.0,44.89924 +2023-05-02 05:00:00,5.6293874,9.73242,347.692,350.53775,4.9765,958.63617,0.0,47.674576 +2023-05-02 06:00:00,4.661545,8.507056,337.28555,342.20392,4.1265,958.9489,0.0,49.830803 +2023-05-02 07:00:00,5.020956,9.219544,314.19315,319.39877,3.6265,959.0434,0.0,54.624615 +2023-05-02 08:00:00,6.0959,10.720076,318.991,323.34378,3.0765,959.2226,0.0,60.30428 +2023-05-02 09:00:00,6.300793,11.013628,324.0394,327.60864,2.8765,959.65735,0.0,61.854446 +2023-05-02 10:00:00,6.4070277,10.993179,325.8138,328.76816,2.5765,960.35693,0.0,62.479195 +2023-05-02 11:00:00,6.521503,11.098198,324.3601,327.8852,2.0765,960.8285,0.0,63.30185 +2023-05-02 12:00:00,7.029225,11.660618,320.1945,323.71964,2.1764998,960.56384,0.0,61.21994 +2023-05-02 13:00:00,6.9426217,11.025879,318.50363,321.259,3.5265,961.2955,0.0,58.418835 +2023-05-02 14:00:00,8.280096,11.682894,322.85324,324.4052,5.2765,961.53235,0.0,53.654682 +2023-05-02 15:00:00,8.746428,11.920151,329.03632,329.77823,7.0265,961.481,0.0,47.376102 +2023-05-02 16:00:00,8.798295,11.970798,328.47787,329.36465,8.7765,961.6151,0.0,41.126995 +2023-05-02 17:00:00,9.2660675,12.394353,330.9455,331.5741,10.4265,961.8218,0.0,34.801422 +2023-05-02 18:00:00,9.391485,12.70118,333.43503,333.8385,11.6765,961.5737,0.0,31.911263 +2023-05-02 19:00:00,9.527329,12.753431,334.51083,335.44452,12.5765,961.16656,0.0,29.738615 +2023-05-02 20:00:00,9.310746,12.539936,335.91254,336.5014,13.2765,961.0068,0.0,27.458918 +2023-05-02 21:00:00,8.969392,12.163059,337.72403,338.286,13.6265,960.78467,0.0,25.645838 +2023-05-02 22:00:00,8.5440035,11.7046995,339.44388,340.0168,13.6265,960.50024,0.0,26.738836 +2023-05-02 23:00:00,7.905694,11.0367565,341.56494,342.05746,13.2765,960.72235,0.0,27.046106 +2023-05-03 00:00:00,6.293648,9.932775,342.42865,343.0244,13.0765,960.4024,0.0,26.886454 +2023-05-03 01:00:00,4.9729266,9.047099,344.84586,346.57816,11.0765,960.518,0.0,31.974518 +2023-05-03 02:00:00,3.5171013,7.9429216,345.17346,349.11453,8.8265,960.6769,0.0,36.89077 +2023-05-03 03:00:00,3.176476,7.7794604,331.8215,342.03076,7.3765,960.9779,0.0,42.434666 +2023-05-03 04:00:00,3.176476,7.940403,331.8215,343.16245,6.7265,961.23596,0.0,45.37912 +2023-05-03 05:00:00,2.9681644,7.368175,327.38077,341.81085,5.9765,961.56903,0.0,49.24025 +2023-05-03 06:00:00,2.5238857,6.428841,326.3099,344.66666,4.7265,961.9021,0.0,55.749134 +2023-05-03 07:00:00,2.2627418,5.4708314,315.0001,341.89615,3.6764998,961.89197,0.0,62.04978 +2023-05-03 08:00:00,2.1260293,4.8104053,311.18582,339.30447,2.8265,961.63495,0.0,67.37151 +2023-05-03 09:00:00,2.2825425,3.939543,298.8107,336.0375,2.1764998,961.03687,0.0,72.14006 +2023-05-03 10:00:00,2.34094,3.4669871,289.9832,326.76828,1.8265,960.9696,0.0,75.06475 +2023-05-03 11:00:00,2.2561028,3.3301651,282.80426,318.6523,1.5265,961.0061,0.0,78.11963 +2023-05-03 12:00:00,2.0808651,3.8013155,305.21768,333.43503,3.7264998,961.8067,0.0,68.56827 +2023-05-03 13:00:00,2.1400933,3.2649658,307.40543,332.6502,7.0765,962.8163,0.0,61.516144 +2023-05-03 14:00:00,1.3892444,2.3345237,300.25635,316.73566,10.3765,963.4235,0.0,53.47229 +2023-05-03 15:00:00,0.9433981,1.1661904,302.00534,300.96368,12.8765,963.685,0.0,40.386993 +2023-05-03 16:00:00,0.9,1.2,270.0,270.0,14.6765,963.53076,0.0,29.793598 +2023-05-03 17:00:00,1.4866068,1.7720045,250.34608,253.61038,15.9765005,963.28516,0.0,28.443264 +2023-05-03 18:00:00,1.8973665,2.34094,251.56496,250.0168,17.026499,962.6142,0.0,28.42947 +2023-05-03 19:00:00,2.1931713,2.6925824,245.77226,248.19853,17.926498,961.8212,0.0,28.58188 +2023-05-03 20:00:00,2.2847319,2.8231187,246.80139,247.06787,18.6265,961.0877,0.0,28.57327 +2023-05-03 21:00:00,2.2472203,2.751363,249.14546,250.9064,19.026499,960.3968,0.0,28.894817 +2023-05-03 22:00:00,1.9697715,2.4698179,246.0375,248.6293,19.1265,959.6544,0.0,29.768665 +2023-05-03 23:00:00,1.9209373,2.3600848,231.34016,233.61555,18.8765,959.23206,0.0,31.566374 +2023-05-04 00:00:00,0.7615773,1.0816654,203.19862,236.3099,19.526499,958.4886,0.0,63.963997 +2023-05-04 01:00:00,1.5811388,1.4,161.56496,180.0,16.776499,958.11194,0.0,46.278584 +2023-05-04 02:00:00,2.9017239,3.1144822,178.02512,185.52745,11.7765,957.4211,0.0,59.434418 +2023-05-04 03:00:00,2.570992,5.162364,193.49574,201.59537,11.2765,957.521,0.0,56.651096 +2023-05-04 04:00:00,3.0083218,6.519202,201.4478,212.47118,10.7265005,957.517,0.0,55.118523 +2023-05-04 05:00:00,3.1780498,6.5,204.14554,216.86998,10.0765,957.3047,0.0,56.94766 +2023-05-04 06:00:00,3.1780498,6.521503,204.14554,215.6399,9.1265,957.0373,0.0,59.622017 +2023-05-04 07:00:00,3.8948684,8.121576,209.19739,217.99878,8.6765,956.7657,0.0,60.15402 +2023-05-04 08:00:00,4.172529,9.1525955,225.97093,236.13628,9.2765,956.68555,0.0,51.28124 +2023-05-04 09:00:00,4.404543,9.433981,230.52757,237.99466,9.2265005,956.5818,0.0,48.716076 +2023-05-04 10:00:00,4.609772,9.708244,229.39879,235.49141,9.1765,956.6674,0.0,47.294964 +2023-05-04 11:00:00,4.7423625,9.683491,227.56381,234.66858,8.8765,956.8967,0.0,47.208786 +2023-05-04 12:00:00,4.596738,9.340771,224.11868,232.39394,10.1765,957.0386,0.0,45.87678 +2023-05-04 13:00:00,4.738143,8.3600235,224.14499,233.26707,12.7765,957.69446,0.0,45.959095 +2023-05-04 14:00:00,2.4698179,4.4102154,291.3707,273.90042,15.3765,958.817,0.0,46.369976 +2023-05-04 15:00:00,2.376973,3.1384711,292.24908,292.47946,17.3265,958.9659,0.0,41.389755 +2023-05-04 16:00:00,2.1954498,2.7784889,300.06848,300.25635,19.676498,959.1785,0.0,36.869244 +2023-05-04 17:00:00,2.059126,2.418677,330.9455,330.25522,21.1265,959.1389,0.0,35.031067 +2023-05-04 18:00:00,1.7,2.0,360.0,360.0,21.9765,958.8067,0.0,34.670006 +2023-05-04 19:00:00,1.264911,1.3928387,18.435053,21.037588,22.7265,958.4569,0.0,33.818577 +2023-05-04 20:00:00,0.86023253,1.029563,54.46224,60.94549,23.276499,957.9782,0.0,33.05191 +2023-05-04 21:00:00,0.36055514,0.53851646,213.6901,201.80147,23.526499,957.54474,0.0,32.33312 +2023-05-04 22:00:00,0.98488575,1.3000001,203.9625,202.6199,23.6265,957.0865,0.0,30.831432 +2023-05-04 23:00:00,2.2847319,2.7730849,203.19861,205.64096,23.026499,956.79736,0.0,32.98082 +2023-05-05 00:00:00,0.8062258,0.70710677,150.2552,135.0001,23.026499,955.5626,0.0,59.739246 +2023-05-05 01:00:00,1.2041595,1.4764823,131.63345,151.69934,21.176498,955.5395,0.0,43.215904 +2023-05-05 02:00:00,1.9849433,2.2022715,130.91429,129.47243,16.026499,955.51556,0.0,61.289127 +2023-05-05 03:00:00,4.1,8.130191,90.0,94.93913,15.7765,955.472,0.0,53.22464 +2023-05-05 04:00:00,3.9115214,8.600581,122.471176,113.28609,15.7265005,955.9375,0.0,44.55195 +2023-05-05 05:00:00,2.5553863,6.3890533,149.42085,129.92033,13.9765005,956.29517,0.0,48.31023 +2023-05-05 06:00:00,2.280351,6.3906183,195.25517,200.13638,12.4765005,956.3139,0.0,72.54548 +2023-05-05 07:00:00,2.7802877,6.041523,217.6943,204.44394,12.6265,956.3405,0.0,77.401886 +2023-05-05 08:00:00,2.0615528,3.8078866,165.96373,203.19861,13.0765,956.2309,0.0,77.733185 +2023-05-05 09:00:00,1.7117243,3.5805027,173.29025,215.90982,13.3265,956.3701,0.0,81.50408 +2023-05-05 10:00:00,3.324154,4.7201695,201.16133,216.38445,10.4765005,956.0505,1.3,92.901215 +2023-05-05 11:00:00,2.6627054,4.110961,235.71307,228.94528,11.8765,956.87054,0.1,89.93017 +2023-05-05 12:00:00,1.6124516,2.302173,150.2552,145.6196,10.0765,956.0729,0.0,86.50393 +2023-05-05 13:00:00,1.9416487,3.9217343,101.88863,109.359085,12.7265005,957.1168,0.0,78.20486 +2023-05-05 14:00:00,1.4317821,2.2022717,77.90526,92.60251,15.2765,958.23035,0.0,63.86943 +2023-05-05 15:00:00,2.1400933,2.6172504,127.40543,133.45189,17.676498,958.2672,0.0,56.33033 +2023-05-05 16:00:00,2.751363,3.352611,160.90642,162.64589,19.426498,958.1868,0.0,60.06267 +2023-05-05 17:00:00,1.3416408,1.6552945,153.43501,154.98314,20.6265,958.10547,0.6,61.54196 +2023-05-05 18:00:00,2.863564,3.4539833,155.22488,157.8905,21.276499,958.1197,0.2,61.89194 +2023-05-05 19:00:00,3.4669871,4.304649,146.76828,149.26459,21.526499,957.782,0.1,60.16353 +2023-05-05 20:00:00,1.118034,1.7204651,153.43501,144.46223,21.276499,957.4551,0.0,60.695393 +2023-05-05 21:00:00,3.9446166,5.283938,329.53452,330.5242,17.526499,957.1028,0.6,81.777374 +2023-05-05 22:00:00,0.56568545,0.781025,315.0001,320.1945,17.426498,957.1805,0.2,81.76466 +2023-05-05 23:00:00,1.7117243,2.0024984,6.70975,2.8623457,17.526499,957.5772,0.2,82.30754 +2023-05-06 00:00:00,2.0615528,2.9732137,104.03627,109.653915,19.026499,957.2647,0.2,73.23902 +2023-05-06 01:00:00,4.219004,6.7911706,95.44024,103.627014,15.4265,957.9722,4.5,90.778984 +2023-05-06 02:00:00,2.4,4.4922156,90.0,106.821495,15.1265,958.204,0.1,92.544205 +2023-05-06 03:00:00,3.544009,6.3245554,106.38962,108.43504,13.8265,958.6391,0.2,98.06895 +2023-05-06 04:00:00,4.7423625,7.993122,132.43619,133.4793,13.8765,958.743,0.1,96.17226 +2023-05-06 05:00:00,2.9732137,6.1073728,132.27362,140.31459,13.8265,958.2598,0.0,95.85761 +2023-05-06 06:00:00,2.641969,5.663921,119.4758,132.13753,13.1265,958.705,0.0,97.10023 +2023-05-06 07:00:00,3.482815,6.9426217,129.17365,138.50363,12.8265,958.462,0.0,97.41274 +2023-05-06 08:00:00,3.6878178,7.045566,139.39879,145.40765,12.6265,958.1417,0.0,97.72938 +2023-05-06 09:00:00,2.7784889,5.672742,120.256355,130.71075,12.3265,957.99365,0.0,98.046394 +2023-05-06 10:00:00,3.9698865,7.2835426,130.91429,134.44382,12.1265,958.337,0.0,98.36713 +2023-05-06 11:00:00,3.522783,6.16198,124.592354,131.71066,12.4265,957.82196,0.0,97.72587 +2023-05-06 12:00:00,5.178803,8.668333,100.00792,106.76264,12.7765,957.22046,0.0,97.09241 +2023-05-06 13:00:00,5.481788,8.886506,104.79681,109.04672,13.2765,956.64545,0.0,95.52659 +2023-05-06 14:00:00,6.5,8.832327,120.51016,120.62992,15.1265,956.6865,0.0,84.19106 +2023-05-06 15:00:00,5.2801514,6.902898,127.30403,128.53021,17.2265,957.0511,0.0,75.34994 +2023-05-06 16:00:00,5.0249376,6.5795135,132.58046,133.1524,19.276499,957.40204,0.1,67.347275 +2023-05-06 17:00:00,4.816638,6.3780875,138.36655,138.81418,20.276499,957.47675,0.0,64.75892 +2023-05-06 18:00:00,3.9824615,5.188449,151.50446,152.44728,21.6265,957.3239,0.0,61.172794 +2023-05-06 19:00:00,4.9030604,6.395311,168.23174,170.09589,19.9765,956.76135,2.6,71.53861 +2023-05-06 20:00:00,4.7169905,6.307139,175.13557,177.27374,19.276499,956.7376,1.4,75.4422 +2023-05-06 21:00:00,5.772348,7.615773,165.96373,166.32867,20.5765,956.19824,0.1,69.157974 +2023-05-06 22:00:00,6.1611686,8.319857,166.86597,166.7989,19.9765,955.62225,0.1,73.64154 +2023-05-06 23:00:00,5.400926,7.3,178.93912,180.0,20.8765,955.394,0.0,68.33123 +2023-05-07 00:00:00,4.5891175,7.242237,191.30989,197.68448,21.3765,955.38306,0.0,58.96269 +2023-05-07 01:00:00,3.231099,6.664833,201.80147,207.71841,19.526499,955.641,0.0,63.75455 +2023-05-07 02:00:00,3.0675724,6.6030297,199.0257,215.13428,16.3765,956.14526,0.0,77.21357 +2023-05-07 03:00:00,2.828427,6.5924196,224.9999,247.71436,15.0265,956.6692,0.0,76.49324 +2023-05-07 04:00:00,2.4515302,6.152235,258.23172,277.47147,13.8265,957.02716,0.0,67.79749 +2023-05-07 05:00:00,2.0615528,5.1623635,255.96373,278.91486,12.6265,956.6249,0.0,69.90072 +2023-05-07 06:00:00,2.5079873,5.5036354,246.50142,267.91748,11.5265,956.9027,0.0,74.89256 +2023-05-07 07:00:00,2.2847319,5.323533,246.80139,264.61078,10.6765,956.4655,0.0,78.42661 +2023-05-07 08:00:00,2.5806975,5.664804,234.46223,249.3255,10.1265,956.3662,0.0,80.249176 +2023-05-07 09:00:00,2.8301945,6.44748,237.99466,246.21796,9.9265,956.5194,0.0,79.67168 +2023-05-07 10:00:00,2.4698179,6.0083275,248.6293,251.56496,9.7765,956.5869,0.0,78.83143 +2023-05-07 11:00:00,2.0223749,4.9365983,278.53067,276.98096,9.0265,956.35596,0.0,82.907486 +2023-05-07 12:00:00,1.4560219,2.7856774,285.94547,291.03757,10.3265,958.4869,0.0,88.60606 +2023-05-07 13:00:00,1.0770329,2.376973,291.80148,284.6209,12.5765,958.9861,0.0,81.40558 +2023-05-07 14:00:00,0.6324555,1.1661904,18.435053,300.96368,14.5265,958.7626,0.0,78.21462 +2023-05-07 15:00:00,1.1401755,1.3152945,15.255177,8.746089,17.176498,958.84515,0.0,69.62447 +2023-05-07 16:00:00,1.7088008,1.9924859,20.556128,17.52567,18.6265,958.81,0.0,64.61187 +2023-05-07 17:00:00,1.0,1.1401755,53.13002,52.124958,19.676498,959.36835,0.0,61.524822 +2023-05-07 18:00:00,1.9646883,2.529822,194.7436,198.43504,20.8765,960.04614,0.7,58.266384 +2023-05-07 19:00:00,2.505993,3.275668,208.61037,211.26367,21.0765,959.795,0.0,53.17399 +2023-05-07 20:00:00,2.302173,2.9410884,235.6196,234.6887,22.4765,959.27,0.0,47.853523 +2023-05-07 21:00:00,1.8788295,2.2847319,244.7989,246.80139,23.276499,958.6431,0.0,45.287704 +2023-05-07 22:00:00,1.8027756,2.302173,273.17978,272.4895,23.526499,957.8298,0.0,42.15035 +2023-05-07 23:00:00,1.431782,1.8384776,294.77512,292.3802,23.1265,957.9534,0.0,41.75656 +2023-05-08 00:00:00,4.3081317,6.964194,68.19853,74.16755,19.9765,958.28015,0.0,65.11737 +2023-05-08 01:00:00,1.811077,4.539824,96.340096,97.59455,18.276499,957.8959,0.0,72.631836 +2023-05-08 02:00:00,2.5495098,3.352611,48.179924,72.64589,15.0265,956.95374,0.0,84.734116 +2023-05-08 03:00:00,2.1023796,4.6872168,357.27374,11.07017,14.5765,957.4437,0.0,87.51346 +2023-05-08 04:00:00,2.302173,5.8694124,2.4894993,8.820306,13.8265,958.7339,0.0,86.01317 +2023-05-08 05:00:00,5.2469034,9.413288,352.33328,356.95526,13.7765,958.5355,0.0,75.27448 +2023-05-08 06:00:00,4.4102154,8.300603,356.09958,0.69026375,12.3765,959.51917,0.0,74.276665 +2023-05-08 07:00:00,4.5891175,8.249242,348.6901,353.7366,11.6765,959.48846,0.0,75.431595 +2023-05-08 08:00:00,4.3416586,7.9429216,345.32355,349.11453,10.9265,958.78503,0.0,78.4644 +2023-05-08 09:00:00,3.6055512,6.9123073,340.55988,345.7627,9.7765,959.2399,0.0,83.5704 +2023-05-08 10:00:00,2.2561028,5.223983,347.19574,354.50775,8.6265,959.2192,0.0,88.15735 +2023-05-08 11:00:00,2.184033,4.9162993,344.05453,355.33322,7.9265003,959.4694,0.0,90.869225 +2023-05-08 12:00:00,3.49285,5.9665737,336.3706,346.42953,8.7265005,960.6587,0.0,85.481995 +2023-05-08 13:00:00,2.2135942,4.539824,341.56494,352.40543,10.7765,960.9374,0.0,77.64036 +2023-05-08 14:00:00,2.236068,2.9614186,349.69522,348.31067,13.4265,961.6973,0.0,69.82087 +2023-05-08 15:00:00,2.0248456,2.4351592,20.224945,19.179106,15.4765005,961.8695,0.0,64.7837 +2023-05-08 16:00:00,2.5079873,3.0066593,355.42615,356.186,17.426498,962.30414,0.0,60.390427 +2023-05-08 17:00:00,2.4738634,3.008322,345.9637,344.57776,19.0765,962.7781,0.0,55.371063 +2023-05-08 18:00:00,1.8384776,2.1931713,337.6198,335.77228,20.3265,962.6113,0.0,50.218685 +2023-05-08 19:00:00,1.5652475,1.8867962,333.43503,327.99466,21.176498,962.37555,0.0,48.30194 +2023-05-08 20:00:00,1.4764823,1.7204651,331.69934,324.46225,21.8765,962.20856,0.0,47.214775 +2023-05-08 21:00:00,1.1661904,1.3453624,329.03632,318.01288,21.9765,962.1303,0.0,48.842983 +2023-05-08 22:00:00,0.6324555,0.7211103,341.56494,326.3099,21.6265,961.78674,0.0,50.734127 +2023-05-08 23:00:00,1.9104973,2.2203605,6.0089183,7.7650824,20.926498,961.9534,0.1,52.086487 +2023-05-09 00:00:00,3.764306,5.3814497,39.61066,41.98713,17.426498,962.1144,6.2,71.76819 +2023-05-09 01:00:00,3.130495,5.5569777,26.564985,30.256361,15.4265,962.0507,0.0,79.389946 +2023-05-09 02:00:00,2.5455844,3.522783,44.999897,55.407658,12.5765,961.7353,0.0,90.882545 +2023-05-09 03:00:00,2.236068,2.9529645,10.304792,61.69934,11.5765,962.2193,0.0,92.342575 +2023-05-09 04:00:00,2.147091,4.4687805,27.758451,49.53785,11.9765005,962.955,0.0,92.98166 +2023-05-09 05:00:00,2.408319,4.661545,41.63345,67.28555,10.8265,962.74713,0.0,94.48912 +2023-05-09 06:00:00,2.3706539,4.609772,62.354122,77.4712,10.4265,962.86414,0.0,94.472176 +2023-05-09 07:00:00,2.059126,2.9,60.94549,90.0,11.3765,963.13104,0.0,90.80019 +2023-05-09 08:00:00,1.264911,0.89442724,341.56494,63.435013,10.9765005,963.1533,0.0,91.998856 +2023-05-09 09:00:00,2.3086793,2.624881,17.650223,40.364468,9.1265,963.2899,0.0,96.354935 +2023-05-09 10:00:00,2.0248458,4.248529,57.094753,63.435013,9.2265005,963.5924,0.0,96.68398 +2023-05-09 11:00:00,2.7294688,3.6496572,98.42689,99.46225,8.4265,963.7293,0.0,96.99238 +2023-05-09 12:00:00,2.8017852,6.2169123,177.95464,191.12915,12.9765005,965.12506,0.0,93.34161 +2023-05-09 13:00:00,2.745906,6.2169123,169.50858,191.12915,15.1265,965.88635,0.0,87.27785 +2023-05-09 14:00:00,2.433105,3.4058774,170.53775,176.6336,17.276499,966.16833,0.0,78.878716 +2023-05-09 15:00:00,2.2472205,2.7730849,147.72438,154.35904,19.426498,966.25476,0.0,71.90116 +2023-05-09 16:00:00,2.302173,2.7784889,145.6196,149.74365,20.926498,966.32074,0.0,67.68389 +2023-05-09 17:00:00,4.119466,5.223983,185.5721,185.49223,20.7265,967.23627,0.3,59.975174 +2023-05-09 18:00:00,2.4166093,3.001666,114.44395,119.98155,20.3765,966.7019,0.0,63.31983 +2023-05-09 19:00:00,4.8104053,6.1351447,159.30447,160.9743,22.426498,966.28937,0.0,54.942837 +2023-05-09 20:00:00,4.6173587,5.9135437,162.3498,161.25856,20.176498,966.0035,0.7,69.75255 +2023-05-09 21:00:00,3.9824615,5.0537114,151.50446,152.92801,22.0765,965.18585,0.1,57.2362 +2023-05-09 22:00:00,4.237924,5.3758717,160.70985,161.56496,22.4765,964.7782,0.0,53.011074 +2023-05-09 23:00:00,3.6674242,5.0159745,154.1337,156.50142,21.5765,964.53186,0.0,59.010555 +2023-05-10 00:00:00,3.538361,5.9413805,132.70937,133.63614,19.0765,964.961,0.0,68.63826 +2023-05-10 01:00:00,3.7121422,6.860029,117.25525,120.67721,18.4765,964.9527,0.0,71.72697 +2023-05-10 02:00:00,3.748333,7.8873315,133.91916,140.6595,17.0765,964.99493,0.0,73.61545 +2023-05-10 03:00:00,3.4205263,7.5742984,127.875046,137.67549,16.176498,965.5021,0.0,74.92793 +2023-05-10 04:00:00,3.7802117,8.065978,127.47626,132.99045,16.276499,965.9937,0.0,75.19223 +2023-05-10 05:00:00,4.5221677,8.930845,144.90411,145.95403,15.8265,966.00977,0.0,77.894264 +2023-05-10 06:00:00,4.5188494,9.047099,155.13632,156.55193,14.8765,965.84235,0.0,82.245895 +2023-05-10 07:00:00,4.4944406,8.91852,159.14546,162.37761,14.3265,965.83966,0.0,84.10043 +2023-05-10 08:00:00,4.648656,9.272,161.1752,163.71501,14.0265,965.502,0.0,84.624214 +2023-05-10 09:00:00,4.6173587,9.217917,162.3498,164.90837,13.3765,965.1966,0.0,87.40357 +2023-05-10 10:00:00,4.7434163,9.368031,161.56496,163.8865,12.8765,965.01227,0.0,89.41052 +2023-05-10 11:00:00,4.632494,9.219544,166.26372,167.4712,12.5265,965.2341,0.0,89.978836 +2023-05-10 12:00:00,4.3462625,8.25409,156.97447,160.90642,13.4765005,965.1195,0.0,86.54918 +2023-05-10 13:00:00,3.9446166,8.143709,149.53453,155.32315,15.5765,966.1554,0.0,79.93572 +2023-05-10 14:00:00,4.792703,6.5551505,156.64442,158.52315,17.6265,966.9883,0.0,71.56987 +2023-05-10 15:00:00,4.6957426,6.2169123,153.43501,154.25934,19.276499,966.8935,0.0,66.03921 +2023-05-10 16:00:00,4.4418464,5.866856,148.81508,150.37634,20.8265,966.77875,0.0,61.99095 +2023-05-10 17:00:00,4.802083,6.140033,148.62704,149.67648,22.4765,966.5825,0.0,57.334084 +2023-05-10 18:00:00,5.5226803,7.0830784,148.32457,149.4525,23.7265,965.7469,0.0,52.6434 +2023-05-10 19:00:00,5.72014,7.4632435,143.53067,144.81921,23.9765,964.8385,0.0,51.353653 +2023-05-10 20:00:00,6.0108232,7.9208584,135.67395,136.02293,24.4765,963.6865,0.0,49.999367 +2023-05-10 21:00:00,6.0,8.0,143.13002,143.13002,24.4765,963.1165,0.0,48.552288 +2023-05-10 22:00:00,5.3712196,7.3824115,151.0491,151.69934,24.6265,962.66614,0.0,46.874577 +2023-05-10 23:00:00,4.8826222,7.1021123,145.0079,147.65259,24.2265,962.12506,0.0,49.284973 +2023-05-11 00:00:00,2.7730849,5.6859474,115.64096,124.24909,22.7265,962.2558,0.0,57.023705 +2023-05-11 01:00:00,3.4014704,6.708204,88.31535,100.30479,20.8265,962.1267,0.0,62.19334 +2023-05-11 02:00:00,4.1773195,7.8057675,78.95911,87.79745,19.426498,961.79364,0.0,71.43714 +2023-05-11 03:00:00,4.401136,8.509407,111.317986,109.925674,18.8765,962.364,0.2,69.72725 +2023-05-11 04:00:00,4.738143,8.626702,135.85501,135.0001,17.776499,962.5545,0.4,77.681114 +2023-05-11 05:00:00,4.101219,7.712976,88.60285,103.49575,16.9765,962.79535,1.0,81.44244 +2023-05-11 06:00:00,4.504442,8.260751,87.45525,96.952866,15.8765,962.50867,4.3,87.34686 +2023-05-11 07:00:00,5.249762,9.617692,130.36446,134.15756,16.1265,962.07825,0.0,85.130066 +2023-05-11 08:00:00,3.6878178,7.494665,139.39879,148.64297,15.6765,961.8097,0.0,84.528534 +2023-05-11 09:00:00,2.1931713,3.8600519,114.22774,143.42688,13.9265,962.07056,0.0,91.87311 +2023-05-11 10:00:00,3.1953092,6.351378,110.13639,123.43989,14.4765005,962.1677,0.0,91.01073 +2023-05-11 11:00:00,3.9446166,7.5802374,120.46546,126.41647,14.3765,962.24493,0.0,91.600746 +2023-05-11 12:00:00,5.011986,8.64523,118.61037,119.826996,14.8765,962.04877,0.1,93.43629 +2023-05-11 13:00:00,4.8010416,9.948869,144.3235,140.7106,15.8265,962.6898,4.0,91.69082 +2023-05-11 14:00:00,4.482187,9.042676,141.34016,141.73598,16.8765,962.68317,0.0,88.003105 +2023-05-11 15:00:00,4.6861496,6.466065,140.19447,140.64827,18.776499,962.91644,0.0,80.89195 +2023-05-11 16:00:00,3.8600519,5.0695167,163.44286,165.14134,21.4765,962.8059,0.0,69.3334 +2023-05-11 17:00:00,1.6155494,1.9924859,158.19853,162.47433,23.2265,962.5291,0.0,65.182304 +2023-05-11 18:00:00,1.5033296,1.7117243,93.814,96.70974,24.3265,962.33154,0.0,62.57915 +2023-05-11 19:00:00,3.3015149,4.004997,91.73567,92.86235,25.3265,962.3062,0.0,61.235855 +2023-05-11 20:00:00,3.8078866,4.808326,103.671326,106.9276,25.3265,961.6411,0.0,61.235855 +2023-05-11 21:00:00,2.7892652,3.4481878,165.4655,163.14153,23.4765,961.431,0.6,66.489586 +2023-05-11 22:00:00,0.31622776,0.3,341.56494,360.0,23.3265,961.12115,0.0,68.59772 +2023-05-11 23:00:00,2.236068,2.7658634,100.30479,102.5288,23.2265,961.0094,0.1,68.36136 +2023-05-12 00:00:00,4.5221677,6.356886,108.03438,109.290146,22.0765,961.0075,0.1,71.92156 +2023-05-12 01:00:00,3.354102,6.1611686,100.30479,103.13403,20.8765,960.80566,0.0,77.404274 +2023-05-12 02:00:00,2.7073975,6.166036,94.23632,98.392845,19.2265,961.0003,0.0,83.84041 +2023-05-12 03:00:00,3.7,7.5059977,90.0,92.29056,18.676498,961.19104,0.0,86.21759 +2023-05-12 04:00:00,3.8626416,7.247069,111.25058,117.979385,17.8765,961.4332,0.0,89.79244 +2023-05-12 05:00:00,3.224903,6.5787535,150.2552,160.46326,18.176498,961.48456,0.0,85.34565 +2023-05-12 06:00:00,3.1016126,6.2641835,159.22766,163.30067,17.926498,961.7263,0.0,80.51905 +2023-05-12 07:00:00,2.640076,5.664804,155.37645,159.3255,16.7265,961.2339,0.0,84.097115 +2023-05-12 08:00:00,2.5612497,5.7384667,128.65984,138.5324,16.176498,961.1384,0.1,88.799835 +2023-05-12 09:00:00,3.231099,6.3134775,111.801476,119.4071,16.2265,961.4315,0.7,92.0111 +2023-05-12 10:00:00,3.4539833,6.5299315,112.109505,117.34979,16.2265,961.71606,1.0,92.90328 +2023-05-12 11:00:00,3.8013155,6.9354167,88.4926,95.79271,16.0765,961.5001,0.4,94.09808 +2023-05-12 12:00:00,3.905125,7.3437047,92.935616,96.253944,16.9765,961.65686,0.0,89.43762 +2023-05-12 13:00:00,6.000833,8.720665,90.95482,93.945114,17.9765,962.30414,0.1,84.5079 +2023-05-12 14:00:00,5.60803,9.027181,93.06642,94.4473,17.026499,962.13983,0.7,92.35319 +2023-05-12 15:00:00,6.5115285,9.4541,100.619606,100.359,17.7265,962.64087,1.2,86.12386 +2023-05-12 16:00:00,5.323533,8.161495,95.38922,97.03785,17.5765,962.6146,0.7,90.923805 +2023-05-12 17:00:00,5.5145264,8.238932,94.15957,95.572105,18.3265,962.4594,0.5,88.12812 +2023-05-12 18:00:00,6.9584484,9.602604,97.43131,98.38316,20.1265,962.67236,0.2,76.798386 +2023-05-12 19:00:00,6.8447056,9.534149,101.802414,102.72435,20.5765,962.2742,0.0,73.745026 +2023-05-12 20:00:00,6.841052,9.340771,105.25517,105.52418,20.8765,961.94495,0.2,73.79657 +2023-05-12 21:00:00,5.10392,7.200694,87.75431,90.79571,20.0765,961.3349,0.3,82.35777 +2023-05-12 22:00:00,6.400781,8.905054,90.89516,91.93055,21.8265,960.7756,0.1,71.648186 +2023-05-12 23:00:00,6.8264194,9.552486,95.04236,96.00892,22.2265,960.74786,0.1,70.1447 +2023-05-13 00:00:00,7.3552704,9.984988,97.0283,97.4808,20.8265,962.0317,0.0,68.76278 +2023-05-13 01:00:00,6.000833,9.404785,89.04518,91.827934,19.026499,962.5797,0.0,77.86947 +2023-05-13 02:00:00,6.312686,10.500476,86.36713,89.45436,18.0765,962.0369,0.0,81.060135 +2023-05-13 03:00:00,6.5069194,10.701869,87.35751,91.07081,17.5765,962.23505,0.0,82.313705 +2023-05-13 04:00:00,6.802941,11.201785,88.31535,91.02301,16.8265,962.2,0.0,84.108406 +2023-05-13 05:00:00,6.328507,10.423532,95.44024,98.829666,16.176498,963.13055,0.0,85.13539 +2023-05-13 06:00:00,7.200694,11.428036,89.2043,94.0141,15.926499,962.61237,0.2,83.188194 +2023-05-13 07:00:00,6.3505907,10.580171,97.236824,97.057755,15.0765,962.5582,0.2,84.462105 +2023-05-13 08:00:00,5.707013,9.656605,101.113,105.61945,14.8265,963.4624,0.0,84.99097 +2023-05-13 09:00:00,6.6068144,10.557462,92.60251,95.98051,15.4265,963.66315,0.0,79.389946 +2023-05-13 10:00:00,6.000833,9.6187315,89.04518,93.57626,15.2765,963.82623,0.0,77.81072 +2023-05-13 11:00:00,6.5069194,10.20049,87.35751,90.5617,14.9765005,964.24774,0.0,78.02317 +2023-05-13 12:00:00,6.315061,10.40865,79.04598,81.714294,14.5265,964.2629,0.0,90.42144 +2023-05-13 13:00:00,7.4330344,11.584905,79.14364,83.05912,15.1765,964.9468,0.6,93.75411 +2023-05-13 14:00:00,9.222798,14.202113,80.639885,83.12528,15.4765005,964.4304,0.5,89.03136 +2023-05-13 15:00:00,8.500588,12.501599,89.32598,90.91663,16.526499,964.70935,0.1,80.329315 +2023-05-13 16:00:00,9.035485,12.5781555,95.07952,96.3904,17.6265,965.28033,0.0,72.04098 +2023-05-13 17:00:00,7.940403,11.029053,84.217705,85.84044,17.926498,965.3322,0.0,71.1578 +2023-05-13 18:00:00,7.368175,10.225947,97.8001,99.00168,18.8765,965.21124,2.0,73.21265 +2023-05-13 19:00:00,6.7446275,9.848858,74.52131,77.09259,18.776499,965.8585,1.3,77.332016 +2023-05-13 20:00:00,7.4,10.948059,71.075264,73.551315,18.526499,965.72046,0.9,77.29371 +2023-05-13 21:00:00,7.964923,11.493477,61.504463,63.65795,18.926498,965.7892,2.3,80.13768 +2023-05-13 22:00:00,7.741447,11.717081,61.448715,63.6537,18.0765,965.7378,1.0,83.70939 +2023-05-13 23:00:00,7.3783464,11.374093,57.17146,60.50514,17.3765,966.1857,1.7,84.17017 +2023-05-14 00:00:00,8.300603,13.024976,58.799557,61.07367,15.6265,967.4922,0.6,83.425 +2023-05-14 01:00:00,8.386298,13.433167,59.153484,60.572647,14.6265,967.6947,1.1,88.38238 +2023-05-14 02:00:00,8.570297,13.67516,55.939045,57.23961,14.2265005,968.28735,1.5,89.51567 +2023-05-14 03:00:00,8.01561,12.863126,56.706417,59.647457,14.0765,969.0194,2.7,90.983986 +2023-05-14 04:00:00,8.062258,12.925169,60.255207,62.840298,13.7765,969.7243,2.5,90.96383 +2023-05-14 05:00:00,8.709191,13.789851,68.44286,70.51378,13.9265,969.9409,0.1,90.08246 +2023-05-14 06:00:00,8.417244,13.203409,66.175735,68.68202,13.2765,970.4879,0.3,92.440125 +2023-05-14 07:00:00,7.566373,11.98666,60.72485,64.2901,12.6765,970.66455,0.2,93.01873 +2023-05-14 08:00:00,7.1281133,11.200446,55.86401,60.00141,12.4765005,971.2919,0.1,91.48055 +2023-05-14 09:00:00,6.9971423,11.047625,59.03632,62.507256,12.4265,971.47266,0.3,90.57112 +2023-05-14 10:00:00,7.066117,11.331813,63.072414,66.60222,12.1765,972.0909,0.2,91.46136 +2023-05-14 11:00:00,7.4330344,11.829624,70.346085,72.79036,11.8265,972.6907,0.2,90.52872 +2023-05-14 12:00:00,7.3389373,11.605602,70.0835,71.40884,11.4765005,973.1958,0.9,90.20152 +2023-05-14 13:00:00,6.670832,10.417773,66.12472,68.60705,11.4765005,974.0487,1.7,92.336784 +2023-05-14 14:00:00,6.621178,10.139033,64.98315,67.98867,11.2265005,974.66656,0.5,92.01396 +2023-05-14 15:00:00,5.770615,8.184132,62.10283,63.121944,10.7765,975.1524,0.5,92.60628 +2023-05-14 16:00:00,5.021952,7.156116,54.727493,56.976128,10.5765,975.6843,0.5,92.59502 +2023-05-14 17:00:00,5.0990195,7.017834,48.179924,49.044586,10.6265,976.26215,0.4,88.93118 +2023-05-14 18:00:00,6.0207973,8.490582,57.89378,57.99466,10.7265005,976.1859,0.4,89.84323 +2023-05-14 19:00:00,6.2625875,8.823832,51.483044,51.441586,10.7765,976.1948,1.7,92.91742 +2023-05-14 20:00:00,6.4899926,9.06973,56.309914,55.78425,10.9265,976.3174,2.7,92.3048 +2023-05-14 21:00:00,6.5734315,9.48736,56.793423,57.482506,10.9765005,976.42126,2.1,92.928185 +2023-05-14 22:00:00,7.1281133,10.290287,55.86401,55.69216,11.3765,976.2104,1.4,91.104546 +2023-05-14 23:00:00,7.3355303,10.470912,62.387074,61.47699,12.2265005,976.555,0.6,85.84962 +2023-05-15 00:00:00,5.905929,9.033826,61.69934,63.71866,11.3765,977.34766,0.2,90.80019 +2023-05-15 01:00:00,5.508176,8.829496,74.197426,76.908104,11.5265,977.7544,0.0,86.93882 +2023-05-15 02:00:00,4.5122056,8.302409,77.19574,80.99158,10.4765005,977.9404,0.0,89.5215 +2023-05-15 03:00:00,4.0447497,7.8230433,81.46932,85.60138,9.9265,978.3123,0.0,91.3152 +2023-05-15 04:00:00,3.324154,6.802941,83.08887,88.31535,9.7265005,978.36993,0.0,91.92262 +2023-05-15 05:00:00,2.7166157,6.3007936,83.659904,90.90936,9.1765,977.88873,0.0,92.51555 +2023-05-15 06:00:00,2.1377556,5.508176,79.21575,86.87794,8.4265,977.74854,0.0,94.0649 +2023-05-15 07:00:00,1.868154,5.223983,74.47583,84.507774,7.8265,977.44684,0.0,95.33449 +2023-05-15 08:00:00,1.8973665,4.8259716,71.564964,84.05324,7.1765003,976.5666,0.0,95.96853 +2023-05-15 09:00:00,2.5455844,3.8327537,44.999897,74.875946,5.9265003,976.0459,0.0,97.26922 +2023-05-15 10:00:00,1.9235384,4.243819,27.897186,55.560955,5.9765,976.0551,0.0,98.28613 +2023-05-15 11:00:00,2.118962,4.313931,19.290138,44.06091,5.3765,976.22485,0.0,99.307976 +2023-05-15 12:00:00,2.886174,4.909175,14.036275,33.366394,7.1765003,977.0401,0.0,97.630516 +2023-05-15 13:00:00,2.529822,5.186521,18.435053,33.996506,9.3265,977.4429,0.0,91.27561 +2023-05-15 14:00:00,2.3706539,3.3015149,27.645891,35.134277,11.8765,977.81836,0.0,78.34095 +2023-05-15 15:00:00,2.280351,2.8319604,37.875053,42.13753,14.1265,977.75226,0.0,63.176414 +2023-05-15 16:00:00,2.1213202,2.5495098,44.999897,48.179924,16.026499,977.2382,0.0,53.290665 +2023-05-15 17:00:00,2.3430748,2.86007,50.194473,53.530666,17.4765,976.4507,0.0,47.940716 +2023-05-15 18:00:00,2.4698176,3.001666,58.240574,60.018444,18.526499,975.78,0.0,44.570343 +2023-05-15 19:00:00,2.0248458,2.5553863,57.094753,59.420856,19.2265,975.04755,0.0,43.255997 +2023-05-15 20:00:00,1.5,1.7804494,53.13002,51.842735,19.676498,974.4608,0.0,42.791958 +2023-05-15 21:00:00,1.2083046,1.3928387,24.443953,21.037588,19.926498,973.36487,0.0,41.41565 +2023-05-15 22:00:00,1.2369317,1.4560219,345.9637,344.05453,19.9765,972.4242,0.0,39.888077 +2023-05-15 23:00:00,1.7,2.059126,331.9276,330.9455,19.776499,971.3456,0.0,39.968796 +2023-05-16 00:00:00,1.3038405,2.0,302.47116,306.86996,18.8265,970.992,0.0,47.333843 +2023-05-16 01:00:00,1.5811388,2.0124612,288.43503,296.56497,17.0765,970.0235,0.0,59.902786 +2023-05-16 02:00:00,1.8357561,2.109502,240.64233,264.55975,14.2765,968.96014,0.0,63.643806 +2023-05-16 03:00:00,2.4758837,2.9154758,223.36346,247.8336,11.7765,968.41614,0.0,73.4148 +2023-05-16 04:00:00,2.1213202,3.939543,224.9999,246.0375,11.7265005,967.83856,0.0,72.15917 +2023-05-16 05:00:00,2.842534,5.4626,230.71062,246.25049,11.5765,967.2427,0.0,71.14656 +2023-05-16 06:00:00,3.3421547,6.797794,231.07245,243.81195,11.3765,966.9222,0.0,72.09374 +2023-05-16 07:00:00,3.9962482,8.228001,238.29861,249.36237,11.2765,966.42993,0.0,70.11459 +2023-05-16 08:00:00,4.159327,8.395236,242.81897,257.61926,10.8265,965.6849,0.0,70.02538 +2023-05-16 09:00:00,4.0521603,8.4053545,254.24875,267.95465,10.5765,965.07086,0.0,69.491234 +2023-05-16 10:00:00,3.9115217,8.237719,265.60138,280.49142,10.4765005,964.57904,0.0,70.19921 +2023-05-16 11:00:00,4.004997,8.602325,272.86234,287.5925,10.6765,964.23627,0.0,69.511375 +2023-05-16 12:00:00,3.7696154,8.045496,291.80148,302.3073,12.8765,964.2538,0.0,63.763206 +2023-05-16 13:00:00,3.939543,7.7006493,293.9625,307.614,15.3765,964.5079,0.0,62.606583 +2023-05-16 14:00:00,3.7215588,5.742821,300.69965,305.07382,17.8765,964.4697,0.0,55.43789 +2023-05-16 15:00:00,4.0,5.4037023,306.86996,308.991,20.026499,964.3641,0.0,50.987465 +2023-05-16 16:00:00,4.4553337,5.7982755,314.0907,315.0001,21.8765,964.2027,0.0,45.660065 +2023-05-16 17:00:00,4.675468,6.0207973,318.46832,318.36655,23.176498,964.0406,0.0,40.79863 +2023-05-16 18:00:00,4.9819674,6.3411355,321.51978,322.04572,24.176498,963.4468,0.0,34.819912 +2023-05-16 19:00:00,4.560702,5.920304,322.12494,322.54935,24.7265,962.9676,0.0,33.577435 +2023-05-16 20:00:00,4.2201896,5.4405885,323.67307,323.97253,25.026499,962.6369,0.0,33.776955 +2023-05-16 21:00:00,4.1617303,5.3823786,324.78232,324.8335,25.2265,962.19476,0.0,34.52865 +2023-05-16 22:00:00,4.4944406,5.8872743,339.14545,339.10217,25.1265,961.6082,0.0,34.61744 +2023-05-16 23:00:00,3.2202482,5.333854,323.8417,329.589,24.026499,961.1419,0.0,44.45247 +2023-05-17 00:00:00,2.4207437,4.7201695,321.70978,323.61554,23.176498,960.7163,0.0,46.479042 +2023-05-17 01:00:00,2.0248458,4.8795495,302.90524,315.83023,20.426498,960.06506,0.0,58.15709 +2023-05-17 02:00:00,2.34094,5.544367,289.9832,309.14398,18.276499,959.8887,0.0,60.18911 +2023-05-17 03:00:00,2.5079873,6.0108232,293.49857,314.32605,17.176498,960.1735,0.0,61.97218 +2023-05-17 04:00:00,2.4596748,6.0307546,296.56497,319.70792,16.3765,960.2245,0.0,63.686386 +2023-05-17 05:00:00,2.2671568,5.60803,318.57642,338.00882,15.0765,960.1872,0.0,70.144684 +2023-05-17 06:00:00,2.0808651,4.237924,305.21768,340.70987,14.2765,960.04626,0.0,75.86398 +2023-05-17 07:00:00,2.0248456,4.675468,20.224945,41.531677,13.2765,960.34314,0.0,82.86877 +2023-05-17 08:00:00,2.7073975,6.477654,85.76369,98.88058,12.8265,960.64246,0.0,85.91128 +2023-05-17 09:00:00,3.352611,7.31642,107.35411,111.65605,12.7265005,961.0037,0.0,81.42535 +2023-05-17 10:00:00,3.1780498,7.2006946,114.14554,117.27668,11.9765005,961.2488,0.0,79.156456 +2023-05-17 11:00:00,3.176476,7.017834,118.1785,122.78428,11.3765,961.33026,0.0,77.20533 +2023-05-17 12:00:00,3.6878178,6.9296465,130.60121,135.0001,12.7265005,961.28815,0.0,73.33531 +2023-05-17 13:00:00,3.3301651,7.140028,138.65233,142.96953,14.5765,961.80615,0.0,69.57678 +2023-05-17 14:00:00,3.2202485,4.428318,154.23073,154.59233,16.676498,962.17413,0.0,63.54036 +2023-05-17 15:00:00,2.9154758,3.8275316,157.8336,160.1447,18.926498,962.08777,0.0,60.94615 +2023-05-17 16:00:00,2.9154758,3.7,157.8336,161.07526,21.1265,962.0822,0.0,57.756073 +2023-05-17 17:00:00,3.0870697,3.7696154,155.09526,158.19853,22.776499,962.07434,0.0,54.67333 +2023-05-17 18:00:00,3.324154,4.049691,158.83867,159.77505,23.9765,961.51373,0.0,51.18654 +2023-05-17 19:00:00,3.471311,4.2755113,168.3664,169.21574,24.776499,961.0757,0.0,46.915314 +2023-05-17 20:00:00,3.5,4.4011364,180.0,181.30193,25.1265,960.6581,0.0,45.19904 +2023-05-17 21:00:00,3.733631,4.8373547,187.69595,187.12492,25.176498,960.0012,0.0,43.177784 +2023-05-17 22:00:00,4.14367,5.4708314,199.74693,198.10385,24.8765,959.287,0.0,43.523804 +2023-05-17 23:00:00,4.438468,6.0926185,202.52061,203.19862,24.5765,958.9529,0.0,44.60444 +2023-05-18 00:00:00,3.2015622,5.60803,141.34016,148.86108,23.676498,958.2345,0.0,50.114426 +2023-05-18 01:00:00,4.080441,7.8492036,143.97253,145.90497,21.9765,958.04706,0.0,54.829025 +2023-05-18 02:00:00,5.661272,10.160708,144.34459,143.8067,20.176498,958.4091,0.0,58.288284 +2023-05-18 03:00:00,6.4884515,11.230761,155.4099,155.26051,19.276499,959.1105,0.0,60.02711 +2023-05-18 04:00:00,6.306346,10.701869,152.62238,156.3093,18.1265,959.0087,0.0,64.07657 +2023-05-18 05:00:00,6.103278,10.824047,161.86183,163.90912,17.0765,958.7331,0.0,68.68967 +2023-05-18 06:00:00,6.4132676,11.42716,169.21574,171.44452,16.7265,958.4826,0.0,70.93158 +2023-05-18 07:00:00,6.6272163,11.615507,174.80566,177.03912,16.776499,958.11194,0.0,71.884766 +2023-05-18 08:00:00,6.5069194,11.253888,182.64249,185.60918,16.7265,957.8185,0.0,72.83053 +2023-05-18 09:00:00,6.477654,11.10045,188.88058,190.90498,16.7265,957.5339,0.0,71.63851 +2023-05-18 10:00:00,6.360031,10.850346,196.44046,199.93808,17.026499,957.58575,0.0,64.259834 +2023-05-18 11:00:00,5.448853,9.687621,222.7688,225.41817,16.0765,958.18005,0.0,59.46007 +2023-05-18 12:00:00,3.352611,6.4536815,252.64589,257.4712,15.8265,958.4213,0.0,65.07935 +2023-05-18 13:00:00,3.4669871,4.8010416,303.23172,305.67648,15.2765,959.084,0.0,75.77562 +2023-05-18 14:00:00,4.8010416,6.3820057,324.3235,324.5666,15.6765,959.5332,0.0,83.15843 +2023-05-18 15:00:00,4.770744,6.2433968,326.97614,328.09195,16.276499,960.2071,0.1,76.69222 +2023-05-18 16:00:00,3.4999998,4.5803933,323.13,323.88055,16.3765,960.6039,8.6,75.20889 +2023-05-18 17:00:00,2.505993,3.3120992,331.38962,331.11353,17.3765,960.9672,3.8,70.355995 +2023-05-18 18:00:00,3.04795,3.828838,318.991,319.23648,20.3765,960.6262,0.0,52.464615 +2023-05-18 19:00:00,3.9597979,5.020956,315.0001,314.19315,21.3265,960.4069,0.0,45.507595 +2023-05-18 20:00:00,4.118252,5.147815,299.0545,299.0545,22.276499,960.37616,0.0,42.224354 +2023-05-18 21:00:00,4.545327,5.8258047,309.64413,309.42776,22.0765,960.0579,0.0,42.025585 +2023-05-18 22:00:00,4.3416586,5.6222773,308.45374,308.50067,21.8265,959.82605,0.0,40.969845 +2023-05-18 23:00:00,4.609772,6.041523,282.5288,282.42593,21.526499,959.9659,0.0,37.401245 +2023-05-19 00:00:00,3.4014702,5.770615,294.30453,297.8972,20.676498,959.8226,0.0,40.642746 +2023-05-19 01:00:00,5.2009616,9.044335,322.02835,324.9041,19.026499,959.82733,0.0,44.557972 +2023-05-19 02:00:00,7.879086,12.001667,336.0375,336.42526,14.6765,961.1599,0.0,62.020447 +2023-05-19 03:00:00,6.797794,10.868762,333.81195,334.37805,12.6765,962.60645,0.0,60.701622 +2023-05-19 04:00:00,6.2649817,10.307764,335.48038,337.1663,11.4265,963.23474,0.0,60.399464 +2023-05-19 05:00:00,7.2498274,10.701869,335.55606,336.3093,11.2765,963.871,0.0,54.4835 +2023-05-19 06:00:00,6.708204,10.151848,333.43503,333.6874,9.4765005,964.7751,0.0,59.496193 +2023-05-19 07:00:00,5.6859474,9.264988,325.75092,327.3391,8.2765,965.02795,0.0,62.473515 +2023-05-19 08:00:00,6.3411355,10.080179,322.04572,323.47104,7.4765,965.44775,0.0,60.729214 +2023-05-19 09:00:00,5.091169,8.421994,315.0001,317.406,6.8765,965.62,0.0,60.361935 +2023-05-19 10:00:00,5.3037724,8.852683,314.23618,318.2053,6.5265,966.1224,0.0,60.275208 +2023-05-19 11:00:00,4.6010866,8.062258,312.3574,313.995,6.0765,966.41675,0.0,62.173306 +2023-05-19 12:00:00,5.5973206,8.203658,311.37842,314.01233,6.4765,966.5867,0.0,62.269344 +2023-05-19 13:00:00,5.685068,7.798718,309.28937,310.84027,7.5765,967.0764,0.0,60.53465 +2023-05-19 14:00:00,8.405355,11.4284725,325.17545,325.3365,8.6765,967.4701,0.0,58.661034 +2023-05-19 15:00:00,8.077747,10.941663,328.67136,329.2159,8.6265,967.83954,0.0,61.448353 +2023-05-19 16:00:00,7.666159,10.358571,329.42084,329.22604,9.2265005,968.42413,0.0,59.64684 +2023-05-19 17:00:00,6.4660654,8.713208,328.27643,328.13406,9.5765,968.86743,0.0,59.73354 +2023-05-19 18:00:00,6.003332,7.975588,330.01843,329.89877,10.0765,969.2438,0.0,61.577877 +2023-05-19 19:00:00,6.191123,8.026207,328.8776,329.28116,10.7765,969.56116,0.0,60.66746 +2023-05-19 20:00:00,6.1326995,8.062258,335.94266,336.61475,10.9265,969.7783,0.0,60.27776 +2023-05-19 21:00:00,5.9808025,7.971198,339.44388,340.20102,11.1765,970.1081,0.0,59.07764 +2023-05-19 22:00:00,5.6044626,7.472616,344.47583,344.47583,11.4765005,970.25757,0.0,57.306366 +2023-05-19 23:00:00,5.3935146,7.218033,349.31512,349.6242,11.9765005,970.44324,0.0,55.446205 +2023-05-20 00:00:00,3.6878178,5.001,347.4712,348.4654,12.9265,969.85614,0.0,53.208485 +2023-05-20 01:00:00,2.184033,4.570558,344.05453,349.91946,11.9265,969.6757,0.0,60.30953 +2023-05-20 02:00:00,2.1931713,4.5891175,335.77228,348.6901,8.9765005,969.42017,0.0,73.16036 +2023-05-20 03:00:00,2.280351,4.8703184,322.12494,340.8209,8.3765,969.8772,0.0,74.34384 +2023-05-20 04:00:00,2.505993,6.0876927,331.38962,345.73544,8.5765,970.1985,0.0,72.06755 +2023-05-20 05:00:00,2.5495098,6.207254,348.6901,2.7701654,7.9765005,970.3713,0.0,75.5899 +2023-05-20 06:00:00,2.1023796,5.531727,357.27374,12.528798,6.9765,970.2788,0.0,80.6457 +2023-05-20 07:00:00,2.433105,4.5,9.462248,36.86999,5.7265,970.1377,0.0,86.974144 +2023-05-20 08:00:00,2.0223749,2.7658632,351.4693,49.398785,5.5765,970.39343,0.0,85.74211 +2023-05-20 09:00:00,1.5811387,1.3453624,325.30478,41.98713,4.8765,970.44977,0.0,88.441246 +2023-05-20 10:00:00,1.0816654,0.56568545,303.6901,44.999897,4.8765,970.73376,0.0,88.441246 +2023-05-20 11:00:00,0.8,0.31622776,270.0,198.43504,4.9765,970.8475,0.0,87.827255 +2023-05-20 12:00:00,0.8062258,1.9104972,187.12492,132.87889,7.7265,971.6506,0.0,85.078674 +2023-05-20 13:00:00,1.3000001,2.3086793,202.6199,175.03035,10.3265,972.606,0.0,72.89963 +2023-05-20 14:00:00,1.7,2.0615528,208.07239,202.8337,12.5765,973.1112,0.0,59.63097 +2023-05-20 15:00:00,1.8027756,2.1954498,213.6901,210.0685,13.8265,973.0518,0.0,55.345177 +2023-05-20 16:00:00,2.0248456,2.5632012,200.22495,200.55612,15.0265,972.69745,0.0,52.29512 +2023-05-20 17:00:00,2.3537204,2.9832869,192.26476,193.57045,16.176498,972.3321,0.0,50.469666 +2023-05-20 18:00:00,3.008322,3.736308,195.42223,195.52417,17.176498,971.55896,0.0,49.87714 +2023-05-20 19:00:00,3.231099,3.992493,201.80147,202.06795,18.1265,970.8706,0.0,48.120186 +2023-05-20 20:00:00,3.176476,3.9824615,208.1785,208.49554,18.776499,970.5089,0.0,47.481945 +2023-05-20 21:00:00,3.3615475,4.1340055,210.37904,212.15227,19.2265,969.73236,0.0,47.768364 +2023-05-20 22:00:00,3.5608988,4.482187,218.15727,218.65984,19.426498,969.19714,0.0,48.149216 +2023-05-20 23:00:00,3.538361,4.596738,222.70937,224.11868,19.2265,968.68823,0.0,48.258068 +2023-05-21 00:00:00,2.624881,4.103657,220.36446,223.02507,19.676498,967.91125,0.0,46.608772 +2023-05-21 01:00:00,1.7029386,4.172529,220.23628,225.97093,17.0765,967.3669,0.0,62.57482 +2023-05-21 02:00:00,2.3430748,4.750789,219.80553,229.26797,13.7265005,966.87085,0.0,68.93826 +2023-05-21 03:00:00,2.3600848,4.8414874,216.38445,231.7098,12.5265,967.13,0.0,71.816666 +2023-05-21 04:00:00,2.385372,4.545327,213.02386,230.35587,11.5265,966.94946,0.0,75.66437 +2023-05-21 05:00:00,2.236068,4.031129,206.56499,226.00499,10.6265,966.8805,0.0,80.59395 +2023-05-21 06:00:00,2.0880613,4.104875,196.69933,214.07724,10.3265,966.7309,0.0,82.784744 +2023-05-21 07:00:00,2.376973,4.924429,194.62091,203.9625,10.1765,966.60895,0.0,82.20243 +2023-05-21 08:00:00,2.7856774,6.1269894,201.03758,206.14677,10.0765,966.30634,0.0,80.24216 +2023-05-21 09:00:00,3.1016126,6.9771056,200.77234,207.29948,9.8265,966.071,0.0,77.75931 +2023-05-21 10:00:00,3.4014702,7.529276,204.30453,210.31113,9.4765005,966.1015,0.0,75.84292 +2023-05-21 11:00:00,3.5468295,7.741447,201.5015,208.5513,9.3765,966.1779,0.0,72.724434 +2023-05-21 12:00:00,4.0804415,7.839005,197.10281,203.29459,11.7765,966.8048,0.0,63.733395 +2023-05-21 13:00:00,4.428318,7.971198,186.48297,199.79897,13.9765005,967.1051,0.0,64.01204 +2023-05-21 14:00:00,4.031129,6.334824,187.12492,191.84206,16.526499,967.3656,0.0,56.80699 +2023-05-21 15:00:00,4.219004,5.6435804,185.44025,187.12492,18.9765,967.4116,0.0,53.87994 +2023-05-21 16:00:00,4.4045434,5.813777,182.60251,183.94511,21.176498,967.31274,0.0,50.614433 +2023-05-21 17:00:00,5.0358715,6.449806,186.84268,187.12492,22.8265,967.306,0.0,42.808384 +2023-05-21 18:00:00,4.8507733,6.1814237,188.29706,189.30986,23.676498,966.9734,0.0,39.320465 +2023-05-21 19:00:00,4.4102154,5.632051,183.90042,186.1154,24.176498,966.5816,0.0,38.935066 +2023-05-21 20:00:00,3.5014284,4.4102154,181.63654,183.90042,24.6265,966.27625,0.0,38.412613 +2023-05-21 21:00:00,3.206244,4.004997,176.42374,177.13765,24.7265,965.81775,0.0,39.090504 +2023-05-21 22:00:00,3.4481878,4.368066,163.14153,164.05453,24.426498,965.1029,0.0,38.87505 +2023-05-21 23:00:00,3.6249137,4.753946,155.55606,157.75093,23.776499,964.9952,0.0,39.882088 +2023-05-22 00:00:00,1.9416488,3.6069376,124.50858,133.87679,24.4765,964.0665,0.0,48.552288 +2023-05-22 01:00:00,2.640076,5.3851647,114.62355,121.328636,21.926498,963.7361,0.0,53.043205 +2023-05-22 02:00:00,3.0528674,6.8,121.60746,118.072395,20.0765,963.51825,0.0,51.00079 +2023-05-22 03:00:00,3.9824615,8.575546,141.1155,148.34877,19.176498,963.8392,0.0,54.112946 +2023-05-22 04:00:00,4.531004,9.139474,157.96371,162.1597,18.5765,964.0208,0.0,51.639275 +2023-05-22 05:00:00,4.652956,9.226592,171.34753,175.649,17.4765,964.0209,0.0,53.12652 +2023-05-22 06:00:00,4.5177426,8.895505,185.07951,188.40329,16.426498,964.12274,0.0,56.975346 +2023-05-22 07:00:00,4.738143,9.121951,187.27492,192.66505,15.4765005,963.9562,0.0,59.720078 +2023-05-22 08:00:00,4.632494,9.047651,193.73628,200.0373,14.8765,963.75586,0.0,59.983784 +2023-05-22 09:00:00,4.6840153,9.024964,196.1135,201.4478,14.4765005,963.68506,0.0,59.887066 +2023-05-22 10:00:00,4.7801676,9.062008,195.78082,202.03629,14.3265,964.03784,0.0,59.23658 +2023-05-22 11:00:00,4.8052053,8.854377,192.01146,198.43504,14.6765,964.0998,0.0,57.51539 +2023-05-22 12:00:00,4.6872168,8.633076,191.07016,198.22517,15.3265,964.499,0.0,60.092216 +2023-05-22 13:00:00,4.6173587,8.956004,184.96965,196.20909,17.276499,964.93494,0.0,61.995293 +2023-05-22 14:00:00,4.6389656,6.708204,187.43132,190.3048,19.3265,965.19366,0.0,57.31379 +2023-05-22 15:00:00,4.570558,6.236986,190.08054,192.03058,21.676498,965.21356,0.0,54.573193 +2023-05-22 16:00:00,5.141984,6.8154235,193.49574,194.44408,23.8765,965.29694,0.0,42.958736 +2023-05-22 17:00:00,5.200961,6.802941,181.10168,181.68465,24.776499,965.446,0.0,36.934666 +2023-05-22 18:00:00,5.0990195,6.5115285,168.69011,169.3804,25.176498,965.32184,0.0,35.22224 +2023-05-22 19:00:00,5.0328918,6.4257298,159.04414,159.02643,25.3265,964.8716,0.0,35.62332 +2023-05-22 20:00:00,4.9193497,6.35059,153.43501,153.8385,25.3765,964.4047,0.0,35.159985 +2023-05-22 21:00:00,4.9396358,6.332456,158.62932,158.70258,25.176498,964.1817,0.0,34.631588 +2023-05-22 22:00:00,4.6572523,6.0876927,165.06853,165.73546,24.8265,963.8392,0.0,34.182354 +2023-05-22 23:00:00,4.753946,6.356099,165.37909,167.27565,24.2265,963.55005,0.0,35.431793 +2023-05-23 00:00:00,3.9357338,6.6309876,152.78398,156.91484,23.8265,963.1986,0.0,40.571777 +2023-05-23 01:00:00,3.8078864,7.7820306,150.06857,154.09355,21.926498,962.9764,0.0,43.134525 +2023-05-23 02:00:00,3.4985712,7.647876,149.03632,152.76494,20.026499,962.8452,0.0,44.534264 +2023-05-23 03:00:00,3.7735925,8.184132,147.99466,153.12193,18.676498,963.0891,0.0,51.143677 +2023-05-23 04:00:00,4.3081317,8.998889,158.19853,165.19157,18.026499,963.16705,0.0,51.49263 +2023-05-23 05:00:00,3.9623227,8.421401,169.82455,175.91446,17.3265,963.2356,0.0,50.781044 +2023-05-23 06:00:00,4.00125,8.40238,178.56793,181.36389,16.2265,963.4236,0.0,56.153843 +2023-05-23 07:00:00,4.5891175,9.368031,191.30989,196.1135,15.9765005,963.56976,0.0,54.949757 +2023-05-23 08:00:00,4.6270943,9.276314,186.20335,191.18877,15.7265005,963.7156,0.0,56.218708 +2023-05-23 09:00:00,4.554119,9.178235,188.84174,191.30989,15.1765,963.9983,0.0,60.673763 +2023-05-23 10:00:00,4.588028,9.141664,196.4601,199.82256,14.7265005,964.1086,0.0,62.88368 +2023-05-23 11:00:00,4.3416586,8.653901,194.67644,202.4162,14.2765,964.2187,0.0,65.4025 +2023-05-23 12:00:00,4.707441,8.728115,192.26476,198.01987,15.7765,964.95746,0.0,65.9496 +2023-05-23 13:00:00,4.341659,8.759566,187.94337,198.64189,17.676498,965.2889,0.0,65.04807 +2023-05-23 14:00:00,4.004997,6.152235,182.86235,187.47147,20.026499,965.69305,0.0,58.637825 +2023-05-23 15:00:00,4.2,5.6035705,180.0,182.04536,22.176498,965.96234,0.0,54.16479 +2023-05-23 16:00:00,4.604346,6.0133185,182.4895,183.814,23.6265,965.8253,0.0,45.83762 +2023-05-23 17:00:00,4.3104525,5.5226803,183.99083,185.19434,24.5765,965.88806,0.0,41.330177 +2023-05-23 18:00:00,3.905125,4.9162993,182.93561,184.66678,25.3265,965.53674,0.0,39.5221 +2023-05-23 19:00:00,3.5014284,4.4045434,181.63654,182.60251,25.8765,965.342,0.0,38.508217 +2023-05-23 20:00:00,3.3015149,4.204759,181.73567,182.72626,26.2265,965.11426,0.0,38.22405 +2023-05-23 21:00:00,3.622154,4.539824,186.3401,187.59456,26.526499,964.87805,0.0,38.30839 +2023-05-23 22:00:00,3.4234486,4.428318,186.70975,186.48297,26.4765,964.585,0.0,38.29433 +2023-05-23 23:00:00,3.0,3.905125,180.0,182.93561,26.176498,964.53595,0.0,39.498566 +2023-05-24 00:00:00,1.2206556,2.3600848,214.9921,216.38445,26.026499,964.32153,0.0,46.643803 +2023-05-24 01:00:00,1.8439089,2.4698176,130.60121,148.24057,23.526499,964.1937,0.0,69.071526 +2023-05-24 02:00:00,2.607681,5.8309517,147.52882,157.8336,21.176498,964.17957,0.0,59.301373 +2023-05-24 03:00:00,2.9732137,7.0604534,160.34608,164.38895,20.426498,964.43207,0.0,52.302956 +2023-05-24 04:00:00,3.1384711,7.2732387,157.52052,161.56496,19.3265,964.43427,0.0,53.97053 +2023-05-24 05:00:00,3.757659,8.228001,154.7989,159.36237,18.5765,964.78,0.0,55.429615 +2023-05-24 06:00:00,4.002499,8.598837,167.00539,171.30458,18.1265,965.5565,0.0,58.175 +2023-05-24 07:00:00,3.905125,8.309633,177.06439,182.75905,17.526499,965.7373,0.0,59.210217 +2023-05-24 08:00:00,3.8470767,8.080842,188.97255,192.14426,16.9765,965.9262,0.0,59.878807 +2023-05-24 09:00:00,3.5171013,7.467262,194.82652,200.37651,16.3765,965.8215,0.0,61.78661 +2023-05-24 10:00:00,3.8327534,7.788453,187.49576,195.6423,16.1265,966.1573,0.0,62.567337 +2023-05-24 11:00:00,3.9319208,7.9075913,187.30566,193.15755,15.7765,966.3803,0.0,63.98154 +2023-05-24 12:00:00,3.5057096,6.519202,183.27042,184.39862,16.7265,967.21075,0.0,64.40846 +2023-05-24 13:00:00,3.306055,6.363961,183.46815,188.13002,19.026499,967.8947,0.0,61.781548 +2023-05-24 14:00:00,1.7117243,2.1954498,96.70974,120.0685,21.2265,969.03033,0.0,60.09302 +2023-05-24 15:00:00,2.209072,2.745906,95.19434,100.491425,22.676498,969.3703,0.0,57.38293 +2023-05-24 16:00:00,2.8231187,3.577709,112.93214,116.56499,24.5765,969.3081,0.0,49.863243 +2023-05-24 17:00:00,3.9623227,5.108816,137.04541,139.76372,26.2265,969.0105,0.0,35.16337 +2023-05-24 18:00:00,4.327817,5.5226803,130.31403,132.06425,26.526499,968.4893,0.0,33.40431 +2023-05-24 19:00:00,4.4418464,5.6859474,121.18491,124.24909,27.5765,967.99554,0.0,30.674093 +2023-05-24 20:00:00,5.9816384,7.81025,128.21107,129.80553,26.676498,967.84894,0.0,32.55691 +2023-05-24 21:00:00,5.2801514,6.8883963,127.30403,129.69904,26.776499,967.58,0.0,31.823727 +2023-05-24 22:00:00,3.8209944,4.9517674,132.87889,133.36346,27.3765,967.0127,0.0,28.607674 +2023-05-24 23:00:00,4.4204073,6.621933,127.64769,128.25447,26.026499,966.69714,0.0,35.941353 +2023-05-25 00:00:00,3.026549,5.9439044,97.59455,102.63336,25.426498,966.21826,0.0,41.293903 +2023-05-25 01:00:00,6.3890533,10.551303,72.69939,75.17347,23.026499,966.29504,0.0,50.603172 +2023-05-25 02:00:00,7.416873,12.306503,86.13462,88.13742,21.026499,966.4329,0.0,56.60425 +2023-05-25 03:00:00,6.9354167,11.723907,95.79271,98.337364,20.3265,966.88324,0.0,57.94134 +2023-05-25 04:00:00,6.8154235,11.543396,104.44408,107.650215,19.426498,966.9192,0.0,60.461006 +2023-05-25 05:00:00,7.023532,11.7477665,118.024414,120.71276,18.9765,967.22174,0.0,60.155075 +2023-05-25 06:00:00,6.6573267,11.1606455,122.73522,126.25393,18.2265,967.4719,0.0,62.21394 +2023-05-25 07:00:00,6.16198,10.610373,131.71066,133.47253,17.3265,967.6001,0.0,64.756004 +2023-05-25 08:00:00,5.9464273,10.230348,137.72638,140.553,16.526499,967.74506,0.0,66.11021 +2023-05-25 09:00:00,5.672742,9.829039,130.71075,134.58786,15.5765,967.8628,0.0,67.475525 +2023-05-25 10:00:00,5.966573,10.117806,129.55963,132.99747,14.7265005,968.4711,0.0,65.50067 +2023-05-25 11:00:00,6.1522355,10.469002,134.34154,136.54811,13.9265,968.51855,0.0,61.210884 +2023-05-25 12:00:00,5.7999997,10.206861,136.39711,138.9726,14.4265,969.27124,0.0,61.11964 +2023-05-25 13:00:00,5.731492,8.414867,132.8789,134.5186,15.3765,969.4399,0.0,55.55376 +2023-05-25 14:00:00,5.661272,7.710383,144.34459,146.10379,16.926498,969.52264,0.0,52.800816 +2023-05-25 15:00:00,5.5973206,7.359348,131.37842,132.79738,18.526499,969.8961,0.0,50.414215 +2023-05-25 16:00:00,5.658622,7.4330344,136.43204,137.72638,20.1265,969.88696,0.0,48.50412 +2023-05-25 17:00:00,5.544367,7.2201114,140.85602,143.44743,21.6265,969.8578,0.0,47.146305 +2023-05-25 18:00:00,5.728001,7.35527,134.29277,136.10162,22.776499,969.4822,0.0,45.90855 +2023-05-25 19:00:00,6.1846585,8.028075,129.09386,129.44003,23.5765,969.2363,0.0,43.887444 +2023-05-25 20:00:00,6.4031243,8.386895,128.65984,129.19327,24.3265,969.0764,0.0,41.536156 +2023-05-25 21:00:00,6.4443774,8.421994,131.85495,132.594,24.7265,968.4779,0.0,40.150043 +2023-05-25 22:00:00,6.2289643,8.348653,132.39738,133.05853,24.9765,968.1392,0.0,39.42354 +2023-05-25 23:00:00,6.3780875,8.63713,131.18582,132.18437,24.5765,967.88306,0.0,39.048153 +2023-05-26 00:00:00,5.879626,8.987213,131.55252,132.7454,24.1265,967.9034,0.0,38.920914 +2023-05-26 01:00:00,5.5317264,9.343447,130.60121,132.39738,22.426498,968.18866,0.0,40.44911 +2023-05-26 02:00:00,5.4671745,9.84124,129.80553,132.11696,20.676498,968.5569,0.0,39.540768 +2023-05-26 03:00:00,5.7999997,10.466136,133.60289,135.77412,19.6265,969.0417,0.0,38.563835 +2023-05-26 04:00:00,6.0307546,10.682695,139.70793,141.84273,18.8765,969.48206,0.0,38.347507 +2023-05-26 05:00:00,5.8830266,10.581588,148.20113,149.31491,18.1265,969.637,0.0,38.670746 +2023-05-26 06:00:00,5.571355,10.218122,158.96242,159.9689,17.276499,969.7738,0.0,39.665363 +2023-05-26 07:00:00,5.1923018,9.677293,164.3577,166.25093,16.3765,969.6161,0.0,40.53789 +2023-05-26 08:00:00,4.7801676,9.167878,164.21918,166.11531,15.4265,969.8283,0.0,40.84006 +2023-05-26 09:00:00,4.7127485,9.121404,162.71841,164.74483,14.7765,969.8077,0.0,38.936966 +2023-05-26 10:00:00,4.7759814,9.080198,160.42679,163.36111,14.1765,970.17505,0.0,37.110916 +2023-05-26 11:00:00,5.1078367,9.492102,156.94867,159.6558,13.6265,970.55084,0.0,35.88351 +2023-05-26 12:00:00,5.6302757,9.771899,160.27763,162.12122,14.0265,971.47595,0.0,36.932068 +2023-05-26 13:00:00,5.3851647,8.792042,158.19853,160.74062,15.1765,972.1549,0.0,39.19436 +2023-05-26 14:00:00,5.3488317,7.4330344,159.19313,160.34608,16.676498,972.51495,0.0,38.522545 +2023-05-26 15:00:00,5.4083266,7.2732387,160.55988,161.56496,18.4765,972.82947,0.0,37.0408 +2023-05-26 16:00:00,5.345091,7.088018,162.58194,163.61038,20.4765,972.9847,0.0,33.762543 +2023-05-26 17:00:00,5.4708314,7.0213957,161.89615,162.59721,22.1265,972.9812,0.0,30.729404 +2023-05-26 18:00:00,5.186521,6.6407833,160.86626,161.56496,23.276499,972.7003,0.0,29.783594 +2023-05-26 19:00:00,5.0695167,6.4257298,157.98866,159.02643,24.0765,972.3595,0.0,28.382854 +2023-05-26 20:00:00,5.0990195,6.621178,154.44008,154.98314,24.5765,971.87317,0.0,26.043673 +2023-05-26 21:00:00,5.3535037,6.9641943,147.20047,147.90744,24.8265,971.24963,0.0,24.59542 +2023-05-26 22:00:00,5.215362,6.87968,147.52882,147.46495,24.676498,970.3697,0.0,23.869135 +2023-05-26 23:00:00,5.0249376,6.774216,148.84076,148.89125,24.1265,969.89825,0.0,23.553799 +2023-05-27 00:00:00,3.3615475,5.905929,149.62096,151.69934,23.926498,969.48474,0.0,27.461718 +2023-05-27 01:00:00,2.5553863,5.994164,149.42085,152.15251,21.1265,969.01324,0.0,37.02976 +2023-05-27 02:00:00,3.1622775,7.306162,145.30478,149.5743,18.4765,968.46405,0.0,38.501083 +2023-05-27 03:00:00,4.080441,8.820431,143.97253,147.0306,17.6265,968.6014,0.0,36.53377 +2023-05-27 04:00:00,4.909175,10.049875,146.63362,148.84076,17.0765,968.79004,0.0,34.597214 +2023-05-27 05:00:00,5.60803,10.604244,158.00882,159.0012,16.676498,969.3842,0.0,32.78176 +2023-05-27 06:00:00,5.531727,10.511898,167.4712,168.47632,16.1265,969.76196,0.0,33.099003 +2023-05-27 07:00:00,5.0487623,9.861542,172.03047,173.59575,15.2265005,969.79266,0.0,36.750793 +2023-05-27 08:00:00,4.6270943,9.319335,173.79665,176.30869,14.1765,969.5113,0.0,41.655838 +2023-05-27 09:00:00,4.318565,9.004998,174.68555,178.0909,13.3765,969.3684,0.0,45.476383 +2023-05-27 10:00:00,4.2426405,8.820431,171.86998,176.09958,12.7265005,969.44104,0.0,48.302845 +2023-05-27 11:00:00,4.1593266,8.836288,170.31128,174.80566,12.2265005,969.4456,0.0,50.810402 +2023-05-27 12:00:00,4.8052053,8.994442,167.98854,171.6898,13.8765,969.7424,0.0,50.724358 +2023-05-27 13:00:00,4.414748,9.305912,166.9081,171.34753,15.8765,970.0023,0.0,51.445324 +2023-05-27 14:00:00,4.1593266,5.9539905,170.31128,172.27826,18.176498,970.49963,0.0,46.191177 +2023-05-27 15:00:00,5.2086463,6.902898,176.6982,178.33975,20.3765,970.5942,0.0,34.090973 +2023-05-27 16:00:00,6.1073728,8.105554,177.18451,177.87895,21.5765,970.51385,0.0,26.714796 +2023-05-27 17:00:00,6.3788714,8.401191,170.98076,171.09836,22.526499,970.29486,0.0,25.302078 +2023-05-27 18:00:00,6.551336,8.6884985,167.66092,168.04344,23.526499,969.79785,0.0,25.21434 +2023-05-27 19:00:00,6.596969,8.634812,165.96373,166.60748,24.2265,969.34485,0.0,24.871042 +2023-05-27 20:00:00,6.236986,8.178631,167.96942,168.00313,24.8265,969.0645,0.0,23.572435 +2023-05-27 21:00:00,5.869412,7.712976,166.20049,166.50426,25.0765,968.6308,0.0,22.652945 +2023-05-27 22:00:00,5.661272,7.4330344,162.52513,162.78384,24.9765,968.04425,0.0,22.707405 +2023-05-27 23:00:00,5.3488317,7.3736014,159.19313,159.35294,24.7265,967.3378,0.0,22.966854 +2023-05-28 00:00:00,4.3324356,7.1470275,161.14674,162.07199,24.3765,967.18463,0.0,25.625427 +2023-05-28 01:00:00,3.0870697,6.7779055,155.09526,158.3555,21.9765,966.87823,0.0,32.341423 +2023-05-28 02:00:00,3.0528674,7.2897186,148.39255,153.08353,19.3765,966.4361,0.0,35.01733 +2023-05-28 03:00:00,3.5805027,8.18352,144.09018,147.47513,18.3265,966.3502,0.0,36.34988 +2023-05-28 04:00:00,4.1880784,9.055386,146.68936,149.47037,17.5765,966.6947,0.0,37.57002 +2023-05-28 05:00:00,4.651881,9.507892,154.5367,157.75093,17.0765,966.9874,0.0,38.36607 +2023-05-28 06:00:00,4.7169905,9.550917,158.87521,162.3238,16.526499,966.8913,0.0,39.728455 +2023-05-28 07:00:00,4.535416,9.317188,165.96373,167.6046,15.7765,966.66486,0.0,42.418903 +2023-05-28 08:00:00,4.414748,9.159148,166.9081,169.30354,15.1765,966.46423,0.0,44.867794 +2023-05-28 09:00:00,4.0792155,8.670064,168.69011,172.71114,14.6265,966.367,0.0,46.814262 +2023-05-28 10:00:00,3.748333,8.139411,170.78905,174.35954,13.9765005,966.25165,0.0,49.51765 +2023-05-28 11:00:00,3.5510561,7.723341,170.27249,175.54448,13.3265,965.8513,0.0,52.756638 +2023-05-28 12:00:00,4.0261645,7.7929454,165.61858,171.14212,14.6265,966.1773,0.0,54.59891 +2023-05-28 13:00:00,3.7643058,8.0062475,163.0091,170.6554,16.676498,966.7279,0.0,54.942734 +2023-05-28 14:00:00,3.3615472,5.249762,157.249,162.25523,19.0765,967.23883,0.0,49.88207 +2023-05-28 15:00:00,3.535534,4.6957426,151.2603,153.43501,21.4765,967.2686,0.0,44.0388 +2023-05-28 16:00:00,4.792703,6.2393913,156.64442,158.36905,23.3265,967.295,0.0,32.276394 +2023-05-28 17:00:00,5.5036354,7.026379,155.29759,155.62355,24.2265,966.97,0.0,29.126022 +2023-05-28 18:00:00,5.636488,7.291776,154.7989,154.84073,24.8265,966.68933,0.0,27.710463 +2023-05-28 19:00:00,5.5946403,7.209022,155.72557,156.2796,25.3265,966.0118,0.0,26.803486 +2023-05-28 20:00:00,5.5542774,7.169379,156.66594,157.01126,25.6265,965.3961,0.0,26.238386 +2023-05-28 21:00:00,5.162364,6.815424,158.40463,157.5741,25.7265,964.65216,0.0,25.542635 +2023-05-28 22:00:00,5.27731,6.9771056,152.94948,152.70052,25.9765,963.7431,0.0,24.81748 +2023-05-28 23:00:00,5.280152,7.2498274,155.37645,155.55606,25.6265,963.2107,0.0,25.249111 +2023-05-29 00:00:00,3.794733,6.360031,161.56496,163.55954,25.426498,962.8927,0.0,28.264997 +2023-05-29 01:00:00,2.641969,6.1326995,150.5242,155.94266,23.0765,962.4091,0.0,37.07872 +2023-05-29 02:00:00,3.6878178,8.20975,139.39879,145.92276,21.1265,961.9873,0.0,36.01816 +2023-05-29 03:00:00,4.3011627,9.211407,144.46223,147.86278,20.676498,962.2909,0.0,32.30995 +2023-05-29 04:00:00,4.4944406,9.492102,159.14546,159.6558,20.026499,962.4656,0.0,32.123573 +2023-05-29 05:00:00,4.8270073,9.982485,166.82744,169.0278,19.4765,962.5616,0.0,33.356277 +2023-05-29 06:00:00,5.1195703,10.143471,167.59259,170.35202,18.926498,962.46735,0.0,36.267662 +2023-05-29 07:00:00,4.8259716,9.613012,174.05324,177.0186,18.026499,962.21814,0.0,40.444824 +2023-05-29 08:00:00,4.609772,9.2,176.26868,180.0,17.2265,961.79504,0.0,44.3564 +2023-05-29 09:00:00,4.6270943,9.400532,173.79665,179.3905,16.776499,961.43243,0.0,47.416916 +2023-05-29 10:00:00,5.0089917,9.9,176.56644,180.0,16.6265,961.2166,0.0,49.55576 +2023-05-29 11:00:00,5.200961,10.11237,181.10168,182.83405,16.6265,961.59607,0.0,51.116936 +2023-05-29 12:00:00,5.178803,9.353609,169.99208,173.86284,17.776499,961.79535,0.0,54.483143 +2023-05-29 13:00:00,5.0921507,10.707941,160.49747,168.69011,19.4765,962.087,0.0,54.00929 +2023-05-29 14:00:00,6.0166435,8.854377,158.5522,161.56496,21.6265,961.9766,0.0,48.58606 +2023-05-29 15:00:00,6.8622155,9.455687,161.30092,162.13982,23.9765,961.7987,0.0,42.843758 +2023-05-29 16:00:00,7.416873,9.924716,183.86539,184.0444,25.0765,962.26514,0.0,42.442963 +2023-05-29 17:00:00,6.7067127,8.908984,182.56372,182.5733,26.026499,962.0409,0.0,39.587425 +2023-05-29 18:00:00,6.2968245,8.203658,190.06062,189.11778,24.8265,961.654,0.2,47.08274 +2023-05-29 19:00:00,7.170077,9.563472,171.983,173.39526,25.8265,960.86774,0.0,43.643276 +2023-05-29 20:00:00,6.8117547,9.11976,183.3664,183.7722,25.5765,960.2569,0.0,45.47077 +2023-05-29 21:00:00,6.519202,8.646965,184.39862,185.97423,26.176498,959.5945,0.0,46.23189 +2023-05-29 22:00:00,5.5145264,7.406079,175.84044,177.67851,27.3265,958.8303,0.0,45.21136 +2023-05-29 23:00:00,6.6219335,9.024965,194.87573,195.42223,26.4765,958.12274,0.0,42.69174 +2023-05-30 00:00:00,4.9819674,9.6208105,128.48022,133.31535,23.2265,958.16,0.0,60.365696 +2023-05-30 01:00:00,6.0811186,10.186265,135.0001,136.5911,22.426498,958.0272,0.0,61.75373 +2023-05-30 02:00:00,6.3812227,11.013628,147.80429,147.60863,21.7265,958.1002,0.0,60.997623 +2023-05-30 03:00:00,5.936329,10.6550455,147.38077,150.7888,21.2265,958.68115,0.0,62.284046 +2023-05-30 04:00:00,6.428841,10.885311,164.66666,169.41273,21.4765,959.1028,0.0,58.98663 +2023-05-30 05:00:00,5.903389,10.369668,169.26115,173.35481,20.8765,958.9068,0.0,61.800587 +2023-05-30 06:00:00,6.363961,10.977249,171.86998,173.19878,20.026499,958.8583,0.0,66.6294 +2023-05-30 07:00:00,6.8183575,11.710679,175.79472,177.55301,19.926498,958.6514,0.0,66.60857 +2023-05-30 08:00:00,7.244308,12.205327,186.3401,187.5325,20.176498,958.599,0.0,64.73725 +2023-05-30 09:00:00,7.0859013,12.0415945,188.93051,191.49654,20.176498,958.4091,0.0,64.52658 +2023-05-30 10:00:00,6.9857,11.936917,193.24052,195.54987,19.9765,958.28015,0.0,65.33003 +2023-05-30 11:00:00,6.868042,11.732434,196.06006,198.89835,19.8265,958.3497,0.0,66.1553 +2023-05-30 12:00:00,5.7280016,9.492102,196.22026,200.3442,19.426498,958.7563,0.0,66.07092 +2023-05-30 13:00:00,6.0207973,9.079648,184.76355,187.59456,20.7265,959.07153,0.0,66.55912 +2023-05-30 14:00:00,6.746851,9.556673,191.9761,193.30919,22.6265,959.20026,0.0,64.02148 +2023-05-30 15:00:00,6.71193,9.170605,204.65588,205.16783,24.9765,959.3984,0.0,55.93829 +2023-05-30 16:00:00,6.6850576,8.876936,201.96062,202.52061,26.776499,959.40674,0.0,49.007263 +2023-05-30 17:00:00,6.5802736,8.633076,196.78273,198.22517,27.776499,959.4732,0.0,46.514694 +2023-05-30 18:00:00,6.20967,8.104321,194.93147,195.75124,28.526499,959.1184,0.0,43.958046 +2023-05-30 19:00:00,5.345091,7.1168814,197.41806,197.162,26.776499,959.12164,0.7,52.580116 +2023-05-30 20:00:00,6.1611686,8.1024685,193.13403,192.8356,25.9765,958.80176,0.3,53.905052 +2023-05-30 21:00:00,5.5443664,7.3824115,187.2531,188.56906,27.176498,958.521,0.0,50.224937 +2023-05-30 22:00:00,7.6791925,10.340696,188.23553,189.46225,25.426498,958.902,0.8,54.809418 +2023-05-30 23:00:00,3.1400635,4.4204073,232.76509,232.35231,23.6265,958.4164,0.0,64.853935 +2023-05-31 00:00:00,5.4708314,8.104321,161.89615,164.24876,24.676498,957.92413,0.0,56.404373 +2023-05-31 01:00:00,4.365776,8.104321,159.90468,164.24876,24.4765,957.7965,0.0,54.9238 +2023-05-31 02:00:00,4.651881,8.915716,154.5367,156.88577,23.026499,957.937,0.0,60.904064 +2023-05-31 03:00:00,6.0827627,10.493807,170.53775,172.33328,21.3265,958.413,0.0,68.64075 +2023-05-31 04:00:00,5.821512,10.34843,184.92702,185.54523,20.8765,958.9068,0.0,71.70363 +2023-05-31 05:00:00,5.707013,10.218121,191.113,191.85976,20.426498,959.1158,0.0,73.013985 +2023-05-31 06:00:00,6.281719,11.060289,193.81505,194.6645,20.2265,959.0821,0.0,73.21341 +2023-05-31 07:00:00,5.9439044,10.454664,192.63336,194.96677,20.0765,958.9617,0.0,72.01946 +2023-05-31 08:00:00,5.6320515,10.183319,196.50444,197.72333,19.9765,958.8497,0.0,71.07853 +2023-05-31 09:00:00,5.60803,10.022475,201.99118,204.77512,19.8265,958.91925,0.0,71.28045 +2023-05-31 10:00:00,5.4230986,9.794896,202.78244,207.3498,19.276499,958.82574,0.0,73.52011 +2023-05-31 11:00:00,5.3851647,9.838699,201.80147,206.56499,18.776499,959.02527,0.0,75.60429 +2023-05-31 12:00:00,5.59017,9.314505,190.3048,194.93147,19.6265,959.0751,0.0,76.474915 +2023-05-31 13:00:00,5.4341516,8.296988,192.75752,195.37631,21.176498,959.43225,0.0,72.21815 +2023-05-31 14:00:00,4.9162993,6.747592,184.66678,186.80896,23.1265,959.85297,0.0,66.20648 +2023-05-31 15:00:00,4.554119,5.9539905,171.15826,172.27826,25.276499,960.2076,0.0,59.50453 +2023-05-31 16:00:00,4.661545,5.9236813,157.28555,158.19853,27.276499,960.34296,0.0,53.549732 +2023-05-31 17:00:00,5.3665633,7.021396,153.43501,153.79994,28.776499,960.20416,0.0,46.93245 +2023-05-31 18:00:00,6.0166435,7.8549347,158.5522,158.33398,29.526499,959.9434,0.0,43.94898 +2023-05-31 19:00:00,4.8703184,6.296825,160.82089,159.55037,29.3265,960.00665,1.0,45.030003 +2023-05-31 20:00:00,5.6515484,7.615773,166.70142,166.32867,29.2265,959.42017,0.0,41.005173 +2023-05-31 21:00:00,5.0039983,6.902898,177.70944,178.33975,28.176498,959.9177,1.3,46.62229 +2023-05-31 22:00:00,5.6797886,7.826238,206.11385,206.56499,24.4765,959.7915,0.0,64.42161 +2023-05-31 23:00:00,2.828427,3.8470767,188.13002,188.97255,25.8765,959.54553,0.0,57.604656 +2023-06-01 00:00:00,1.2206556,1.7492856,124.992096,149.03632,26.0765,960.05316,0.0,53.930294 +2023-06-01 01:00:00,2.5079873,4.4654226,113.49858,124.04598,25.0765,959.5098,0.0,61.957947 +2023-06-01 02:00:00,3.0675724,6.307139,109.025696,115.34614,23.276499,958.92804,0.0,65.60906 +2023-06-01 03:00:00,3.0413814,6.5855904,136.33215,138.07755,22.1265,959.2117,0.0,65.576 +2023-06-01 04:00:00,3.1384711,7.02282,157.52052,160.0168,21.5765,959.6893,0.0,66.30762 +2023-06-01 05:00:00,3.6687872,8.036168,162.55272,163.36897,21.2265,960.20026,0.0,66.44841 +2023-06-01 06:00:00,3.8470767,7.9630394,171.02745,172.78583,20.776499,960.2193,0.0,67.87211 +2023-06-01 07:00:00,3.8327534,7.915807,172.50424,176.37859,19.8265,960.15326,0.0,73.61559 +2023-06-01 08:00:00,4.1,8.20061,180.0,180.69868,19.2265,960.3359,0.0,80.43534 +2023-06-01 09:00:00,4.104875,8.329466,182.79265,184.82068,19.0765,960.5002,0.0,84.62773 +2023-06-01 10:00:00,3.901282,8.01561,178.53123,183.57626,18.926498,960.94885,0.0,86.51652 +2023-06-01 11:00:00,3.4014704,7.256032,181.68465,187.12492,18.676498,961.19104,0.0,87.59974 +2023-06-01 12:00:00,3.1906114,5.60803,147.80429,158.00882,19.5765,961.6294,0.0,84.41377 +2023-06-01 13:00:00,3.1064448,6.441273,146.82147,152.24155,21.5765,962.6328,0.0,78.49376 +2023-06-01 14:00:00,3.5608988,4.8010416,141.84273,144.3235,23.5765,963.25214,0.0,68.43043 +2023-06-01 15:00:00,4.3863425,5.663921,136.8476,137.86247,25.0765,963.5953,0.0,59.64681 +2023-06-01 16:00:00,4.7423625,6.0141497,132.43619,132.97864,26.1265,963.3874,0.0,53.08854 +2023-06-01 17:00:00,4.527693,5.658622,133.21011,133.56796,26.926498,963.1377,0.0,51.787273 +2023-06-01 18:00:00,4.7423625,6.0207973,137.56381,138.36655,27.676498,962.974,0.0,48.931736 +2023-06-01 19:00:00,4.675468,5.9548297,138.46832,139.08571,28.176498,962.5794,0.0,47.829277 +2023-06-01 20:00:00,4.243819,5.3535037,145.56096,147.20047,28.5765,962.0733,0.0,47.028606 +2023-06-01 21:00:00,4.031129,5.0695167,156.61476,157.98866,28.426498,961.76416,0.0,47.743492 +2023-06-01 22:00:00,4.119466,5.135173,174.4279,173.29025,28.1265,961.52563,0.0,47.663586 +2023-06-01 23:00:00,4.4922156,5.8523498,163.17851,163.11313,26.3765,961.5276,0.0,56.999447 +2023-06-02 00:00:00,3.939543,5.6462374,156.0375,157.06787,26.5765,961.84515,0.0,54.400864 +2023-06-02 01:00:00,3.5735137,5.5036354,107.92801,114.70241,21.8765,962.3985,0.0,77.79951 +2023-06-02 02:00:00,3.5846896,6.5802736,112.98875,126.34755,21.6265,962.35645,0.0,80.50109 +2023-06-02 03:00:00,3.764306,7.1217976,129.61066,141.84273,21.7265,963.0379,0.0,79.7596 +2023-06-02 04:00:00,3.9357338,7.6844,152.78398,161.80075,21.3765,963.3588,0.0,80.467834 +2023-06-02 05:00:00,4.5122056,8.584288,167.19574,171.96439,21.0765,963.4978,0.0,81.70475 +2023-06-02 06:00:00,4.491102,8.459313,168.4399,173.21112,20.8265,963.7406,0.0,82.96994 +2023-06-02 07:00:00,4.428318,8.005623,173.51703,177.85246,21.3265,963.7301,0.0,80.46119 +2023-06-02 08:00:00,4.4,7.8160095,180.0,183.66771,21.2265,963.6184,0.0,79.69083 +2023-06-02 09:00:00,4.4,8.01561,180.0,183.57626,20.776499,963.732,0.0,81.15312 +2023-06-02 10:00:00,3.8,7.333485,180.0,185.47728,19.926498,963.9672,0.0,84.71942 +2023-06-02 11:00:00,3.6345563,7.106335,172.09293,177.58054,19.2265,964.32227,0.0,87.92624 +2023-06-02 12:00:00,4.2107005,7.333485,184.08554,185.47728,19.5765,964.6668,0.0,83.88001 +2023-06-02 13:00:00,4.20119,6.312686,181.36389,183.63287,21.026499,965.0087,0.0,79.91518 +2023-06-02 14:00:00,4.101219,5.6035705,181.39716,182.04536,23.3765,965.8784,0.0,71.92871 +2023-06-02 15:00:00,4.341659,5.770615,187.94337,188.97255,25.3265,966.1068,0.0,63.59651 +2023-06-02 16:00:00,4.4102154,5.7218876,183.90042,185.01303,26.3765,965.9941,0.1,58.827614 +2023-06-02 17:00:00,4.341659,5.656854,172.05663,171.86998,27.0765,965.9183,0.1,55.39453 +2023-06-02 18:00:00,4.3931766,5.6089215,168.17854,168.69011,28.0765,965.60516,0.0,51.42798 +2023-06-02 19:00:00,4.6238513,5.8872743,158.42863,159.10216,29.026499,965.2829,0.0,48.51379 +2023-06-02 20:00:00,5.1478148,6.670832,155.9245,156.12471,29.3265,964.57043,0.0,47.228794 +2023-06-02 21:00:00,5.4378304,7.1021123,147.77127,147.65259,29.176498,963.59564,0.0,45.566948 +2023-06-02 22:00:00,5.0089917,6.574192,153.94656,153.82477,28.8765,962.97705,0.0,42.52378 +2023-06-02 23:00:00,4.3382025,5.769748,154.02567,154.32323,28.926498,963.6507,0.0,40.396 +2023-06-03 00:00:00,2.4186773,3.2984846,97.12492,104.03627,26.8265,964.07196,0.0,53.26645 +2023-06-03 01:00:00,3.1384711,4.414748,202.47948,193.0919,23.6265,964.97046,2.7,71.52334 +2023-06-03 02:00:00,1.2165525,0.72801095,279.46225,254.05453,20.3765,964.6134,2.8,86.11189 +2023-06-03 03:00:00,2.2203605,4.7296934,97.76508,103.44863,20.5765,964.36273,0.0,87.49263 +2023-06-03 04:00:00,2.9410882,6.440497,107.818985,115.76928,20.7265,964.57794,0.0,85.33924 +2023-06-03 05:00:00,3.3120992,6.940461,118.88649,126.20955,20.8765,964.50836,0.0,82.19594 +2023-06-03 06:00:00,3.7215588,7.5604234,120.699646,127.47626,20.426498,964.71686,0.0,83.18476 +2023-06-03 07:00:00,3.405877,7.2138753,130.23628,136.12321,19.9765,964.35547,0.0,84.72479 +2023-06-03 08:00:00,2.9732137,6.6068144,132.27362,140.52757,19.4765,964.36505,0.0,87.39411 +2023-06-03 09:00:00,2.7294688,6.080296,118.442825,126.30459,19.026499,964.47797,0.0,89.87745 +2023-06-03 10:00:00,2.751363,6.0827627,109.09359,117.40749,18.526499,964.6765,0.0,93.023384 +2023-06-03 11:00:00,2.6832817,6.105735,116.56499,121.60746,18.3765,964.93524,0.0,94.19861 +2023-06-03 12:00:00,2.745906,5.1078367,100.491425,113.05133,19.176498,965.6426,0.0,92.18311 +2023-06-03 13:00:00,2.4020824,5.0289164,92.385895,107.35411,21.2265,966.3718,0.0,85.124016 +2023-06-03 14:00:00,2.7018514,3.6345563,92.12105,97.907074,22.676498,966.99603,0.0,79.145 +2023-06-03 15:00:00,2.6172504,3.436568,96.581856,98.3658,23.6265,967.34515,0.0,74.72771 +2023-06-03 16:00:00,2.9017239,3.7215588,91.97489,96.17008,24.8765,967.4576,0.0,68.685165 +2023-06-03 17:00:00,3.667424,4.5122056,101.003494,102.80426,26.2265,967.49,1.1,60.863728 +2023-06-03 18:00:00,3.4885528,4.428318,117.29949,115.40768,26.5765,967.4522,0.0,57.95494 +2023-06-03 19:00:00,3.354102,4.2059484,116.56499,118.39293,28.176498,966.7621,0.1,52.7698 +2023-06-03 20:00:00,4.440721,5.6435804,97.76508,97.12492,25.776499,966.84595,2.6,64.29559 +2023-06-03 21:00:00,2.7018514,3.5014284,87.87895,88.363464,25.526499,966.2348,0.7,64.44376 +2023-06-03 22:00:00,3.0066593,3.8013155,86.186005,88.4926,26.8765,966.2657,0.0,58.760418 +2023-06-03 23:00:00,3.3015149,4.304649,91.73567,92.66295,26.926498,965.9889,0.0,52.118347 +2023-06-04 00:00:00,3.5014284,5.7,88.363464,90.0,26.276499,965.6928,0.0,54.325684 +2023-06-04 01:00:00,2.2561028,4.7518415,77.19574,81.528946,25.026499,965.7722,0.0,60.781284 +2023-06-04 02:00:00,1.9,4.8,90.0,90.0,22.8265,965.69147,0.0,67.419754 +2023-06-04 03:00:00,2.0024984,5.0,92.86235,90.0,22.1265,966.04895,0.0,68.57927 +2023-06-04 04:00:00,2.1213202,5.315073,81.86999,85.68405,21.3765,966.01746,0.0,72.94789 +2023-06-04 05:00:00,2.3,5.821512,90.0,94.92702,20.9765,965.8547,0.0,74.99883 +2023-06-04 06:00:00,2.158703,5.748913,103.39252,103.06932,20.276499,965.83075,0.0,75.604935 +2023-06-04 07:00:00,2.147091,5.7384667,117.75845,112.5431,19.9765,965.6844,0.0,74.59349 +2023-06-04 08:00:00,2.059126,5.189412,119.05451,115.083565,19.526499,965.6075,0.0,75.483025 +2023-06-04 09:00:00,2.2135942,4.7434163,108.43504,108.43504,18.9765,965.5134,0.0,77.36257 +2023-06-04 10:00:00,2.109502,5.1088157,95.44024,93.366394,18.8765,965.78064,0.0,76.60307 +2023-06-04 11:00:00,1.868154,4.7675986,74.47583,80.34018,18.426498,966.2728,0.0,80.32739 +2023-06-04 12:00:00,2.0615528,4.738143,75.96373,97.27491,20.7265,966.57166,0.0,69.41038 +2023-06-04 13:00:00,1.3416408,3.0364454,116.56499,107.241554,22.3765,967.4204,0.0,66.899994 +2023-06-04 14:00:00,2.8792362,3.6891732,249.67677,237.17146,22.2265,968.0601,1.2,68.16289 +2023-06-04 15:00:00,0.8062258,0.82462114,277.1249,255.96373,24.776499,968.2011,0.0,59.57665 +2023-06-04 16:00:00,0.8062258,1.0198039,172.87508,168.69011,26.6265,968.2208,0.0,50.402996 +2023-06-04 17:00:00,2.147091,2.5632012,62.24156,69.44388,27.7265,968.1152,0.0,44.73949 +2023-06-04 18:00:00,1.8788295,2.3259406,64.79892,64.5367,26.5765,967.8324,0.2,53.372692 +2023-06-04 19:00:00,0.7615773,0.94868326,113.19862,108.43504,27.9765,967.3951,0.0,45.096947 +2023-06-04 20:00:00,1.7691805,2.2022715,42.709366,50.52757,28.0765,966.84094,0.0,45.707657 +2023-06-04 21:00:00,2.2825425,2.9068882,61.189304,63.435013,28.9765,966.32074,0.0,44.79183 +2023-06-04 22:00:00,1.7088008,2.059126,159.44388,150.9455,25.9765,966.3088,1.0,57.44637 +2023-06-04 23:00:00,1.4866068,1.9235384,19.653913,27.897186,26.026499,966.127,0.0,54.43624 +2023-06-05 00:00:00,1.421267,4.4944406,129.28938,110.854546,25.526499,965.1895,0.0,62.647682 +2023-06-05 01:00:00,2.1,4.7265205,90.0,96.072365,25.926498,965.9204,0.0,57.616673 +2023-06-05 02:00:00,2.158703,4.0718546,103.39252,114.67685,22.7265,965.7698,0.0,68.04573 +2023-06-05 03:00:00,2.1931713,4.384062,136.8476,135.0001,21.3765,965.9225,0.0,70.88374 +2023-06-05 04:00:00,2.1023796,4.750789,154.65387,149.65683,20.776499,966.10547,0.0,68.752914 +2023-06-05 05:00:00,2.9529645,3.9824615,151.69934,151.50446,19.5765,965.90076,0.0,74.04791 +2023-06-05 06:00:00,2.1023796,2.6400757,154.65387,142.69597,20.426498,965.951,0.0,68.90582 +2023-06-05 07:00:00,2.109502,2.5,174.55975,143.13002,19.026499,965.80664,0.0,76.38017 +2023-06-05 08:00:00,2.34094,3.0,160.0168,126.86998,18.776499,965.57385,0.0,77.083084 +2023-06-05 09:00:00,2.0396078,2.5806975,168.69011,125.537766,18.926498,965.6943,0.0,76.85824 +2023-06-05 10:00:00,0.8062258,1.2529964,209.7448,118.61037,20.926498,965.94104,0.0,67.46601 +2023-06-05 11:00:00,0.42426407,0.6324555,224.9999,108.43504,20.1265,966.08984,0.0,71.336044 +2023-06-05 12:00:00,1.2206556,2.4596748,124.992096,116.56499,20.6265,966.6498,0.0,73.28332 +2023-06-05 13:00:00,1.1313709,2.2203603,135.0001,125.837746,22.7265,967.0993,0.0,66.97169 +2023-06-05 14:00:00,0.98994946,1.555635,135.0001,135.0001,25.2265,967.51544,0.0,59.304333 +2023-06-05 15:00:00,1.0,1.2206556,143.13002,145.0079,26.9765,967.80286,0.0,49.0602 +2023-06-05 16:00:00,1.029563,1.2529964,150.9455,151.38963,28.2265,967.81573,0.0,39.940712 +2023-06-05 17:00:00,1.1661904,1.4422206,120.96369,123.690094,28.8765,967.6355,0.0,38.586674 +2023-06-05 18:00:00,1.4764823,1.8357561,118.30067,119.357666,29.3765,967.33575,0.0,38.725742 +2023-06-05 19:00:00,1.4866068,1.8384775,137.72638,135.0001,29.4765,967.06665,0.0,38.753517 +2023-06-05 20:00:00,1.4422206,1.7204651,146.3099,144.46223,29.8765,966.56006,0.0,38.364902 +2023-06-05 21:00:00,1.2041595,1.421267,138.36655,140.71062,29.776499,966.0688,0.0,38.71135 +2023-06-05 22:00:00,1.3601471,1.6401219,126.027466,127.568665,29.176498,965.78235,0.0,39.048794 +2023-06-05 23:00:00,1.0816654,1.2529964,123.6901,118.61037,28.926498,965.36206,0.0,40.658398 +2023-06-06 00:00:00,1.7691805,3.04795,47.290634,48.99101,29.176498,964.9267,0.0,40.07451 +2023-06-06 01:00:00,1.5,2.7018511,36.86998,51.009003,27.1265,964.6909,0.0,55.582047 +2023-06-06 02:00:00,1.9209373,1.9723083,38.65983,59.53454,25.2265,964.47504,0.0,54.23507 +2023-06-06 03:00:00,1.3152945,1.6124516,8.746089,60.255207,24.5765,964.74805,0.0,52.521458 +2023-06-06 04:00:00,2.1931713,2.5495098,65.77226,101.3099,21.676498,964.35895,0.0,67.40176 +2023-06-06 05:00:00,2.6925824,6.726812,121.328636,138.01286,21.8765,964.29767,0.0,60.441406 +2023-06-06 06:00:00,3.0528674,7.111259,148.39255,154.15567,21.776499,963.996,0.0,56.976 +2023-06-06 07:00:00,2.1213202,5.7218876,171.86998,174.98697,20.1265,963.7166,0.0,64.7264 +2023-06-06 08:00:00,2.2825425,5.770615,208.8107,207.89719,19.5765,963.6227,0.0,70.31719 +2023-06-06 09:00:00,2.6627054,6.0108232,214.28693,225.67395,19.3765,963.58856,0.0,73.537506 +2023-06-06 10:00:00,3.2015622,6.360031,218.65984,233.31018,20.3765,963.56915,0.0,66.48622 +2023-06-06 11:00:00,3.6124785,6.742403,221.63345,234.6598,20.9765,963.7659,0.0,63.042236 +2023-06-06 12:00:00,2.1213202,3.4885528,351.87,332.7005,20.1265,963.9065,0.0,69.74289 +2023-06-06 13:00:00,0.86023253,1.9924859,324.46225,342.47433,21.426498,963.9368,0.0,68.4407 +2023-06-06 14:00:00,1.1661904,1.5231546,329.03632,336.8014,23.7265,964.322,0.0,62.844612 +2023-06-06 15:00:00,1.6124516,2.0223749,7.12493,8.530692,25.7265,964.27203,0.0,56.301914 +2023-06-06 16:00:00,2.0124612,2.4596748,26.564985,26.564985,27.1265,964.12067,0.0,52.169678 +2023-06-06 17:00:00,1.6552945,2.0124612,25.016869,26.564985,28.3265,963.8394,0.0,47.71686 +2023-06-06 18:00:00,1.360147,1.6492423,17.102825,14.036275,29.2265,963.4134,0.0,44.290173 +2023-06-06 19:00:00,1.4142135,1.6124516,8.130019,7.12493,29.7265,962.923,0.0,41.408264 +2023-06-06 20:00:00,1.6,1.9,360.0,360.0,30.276499,962.3447,0.0,40.378525 +2023-06-06 21:00:00,1.8027756,2.109502,356.82022,354.55975,30.176498,961.7584,0.0,39.580105 +2023-06-06 22:00:00,1.5,1.8,360.0,360.0,29.926498,961.1481,0.0,38.254757 +2023-06-06 23:00:00,1.9416487,2.3537204,348.11136,347.73523,29.426498,960.6881,0.0,37.015224 +2023-06-07 00:00:00,1.8439089,2.5495098,102.5288,101.3099,28.176498,960.86835,0.0,45.442165 +2023-06-07 01:00:00,1.2,2.8017852,90.0,87.95464,26.776499,960.92737,0.0,57.638527 +2023-06-07 02:00:00,1.8027756,4.20119,93.17977,91.3639,24.3765,960.3448,0.0,63.188526 +2023-06-07 03:00:00,2.9410882,6.20967,107.818985,104.93147,24.0765,960.39026,0.0,64.13199 +2023-06-07 04:00:00,3.0675724,6.6128664,109.025696,110.35332,23.0765,960.5096,0.0,69.20275 +2023-06-07 05:00:00,3.733631,7.6216793,110.37652,109.14823,22.426498,960.30646,0.0,71.5304 +2023-06-07 06:00:00,3.224903,6.723095,119.74479,120.37905,21.676498,960.4658,0.0,71.16608 +2023-06-07 07:00:00,2.6172504,6.0141497,136.54811,137.02136,20.776499,960.4091,0.0,73.30947 +2023-06-07 08:00:00,2.5079873,5.4644303,113.49858,124.56259,20.5765,960.3754,0.0,72.34162 +2023-06-07 09:00:00,3.8052595,6.987131,93.012726,99.05781,20.276499,960.1348,0.0,72.05575 +2023-06-07 10:00:00,4.0249224,7.7369246,116.56499,116.89616,19.3765,959.69696,0.0,76.92815 +2023-06-07 11:00:00,4.3011627,7.640026,125.537766,127.01997,18.776499,960.1642,0.0,82.990234 +2023-06-07 12:00:00,3.3136082,6.8883963,95.19434,99.18877,19.676498,960.69727,0.0,84.69255 +2023-06-07 13:00:00,3.354102,5.141984,100.30479,103.49575,21.276499,960.87317,0.0,79.94928 +2023-06-07 14:00:00,3.1622777,4.14367,108.43504,109.74693,23.3765,961.12933,0.0,73.06671 +2023-06-07 15:00:00,3.5902646,4.535416,102.87501,104.03627,24.9765,961.2986,0.0,67.85097 +2023-06-07 16:00:00,3.6687872,4.6173587,107.44727,107.650215,26.0765,961.1935,0.0,62.769165 +2023-06-07 17:00:00,3.2572994,4.016217,107.87879,108.886185,26.5765,961.0849,0.1,59.995304 +2023-06-07 18:00:00,3.2557642,3.981206,100.619606,101.59215,27.176498,960.80206,0.1,59.015533 +2023-06-07 19:00:00,3.4132097,4.1303754,95.04236,96.952866,27.426498,960.08203,0.0,57.07327 +2023-06-07 20:00:00,2.6019223,3.1,87.79745,90.0,27.926498,959.87775,0.0,54.394142 +2023-06-07 21:00:00,3.6124783,4.4102154,94.76356,93.90042,25.526499,959.58356,3.4,65.25642 +2023-06-07 22:00:00,0.4,0.82462114,90.0,104.03627,24.7265,959.1674,0.3,67.37739 +2023-06-07 23:00:00,0.50990194,0.7211103,168.69011,146.3099,23.426498,959.3329,2.1,72.163994 +2023-06-08 00:00:00,3.0066593,3.9115217,93.814,94.39862,25.0765,959.4148,0.2,63.742573 +2023-06-08 01:00:00,3.4132097,5.4451814,95.04236,97.38595,23.776499,959.4857,0.1,71.77523 +2023-06-08 02:00:00,2.9410882,5.8189344,107.818985,109.0578,22.1265,959.3067,0.0,78.82004 +2023-06-08 03:00:00,2.5961509,5.8872743,105.64231,110.89784,21.176498,959.1474,0.0,81.717316 +2023-06-08 04:00:00,2.9120438,6.2625875,105.945465,109.59237,20.8765,959.19165,0.0,79.89466 +2023-06-08 05:00:00,3.6674242,7.169379,115.8663,120.141304,20.7265,959.6411,0.0,74.00683 +2023-06-08 06:00:00,3.9824615,7.2201114,118.495544,126.55257,20.676498,960.01245,0.0,64.42561 +2023-06-08 07:00:00,5.4571056,8.668333,103.781624,106.76264,19.0765,959.9307,0.0,76.388084 +2023-06-08 08:00:00,5.186521,8.37735,109.133736,113.198616,17.8765,959.82007,0.0,85.58839 +2023-06-08 09:00:00,5.2952805,8.5440035,100.88548,106.31393,16.7265,959.9057,0.0,81.94134 +2023-06-08 10:00:00,5.661272,9.381364,125.65542,125.89275,15.2765,959.93756,0.0,82.025925 +2023-06-08 11:00:00,4.9517674,8.348653,133.36346,136.94148,15.2265005,959.9288,2.2,87.002594 +2023-06-08 12:00:00,4.6669044,7.9246454,135.0001,137.04541,15.3265,960.4206,0.4,90.47791 +2023-06-08 13:00:00,3.6674242,8.134495,115.8663,133.50572,16.0765,960.3619,5.1,92.596794 +2023-06-08 14:00:00,3.4205263,5.315073,127.875046,131.18582,16.3265,960.78503,1.9,92.01704 +2023-06-08 15:00:00,4.5803933,6.242595,143.88057,144.78232,16.8765,961.0703,0.1,87.72018 +2023-06-08 16:00:00,5.147815,6.664833,150.9455,152.28159,19.3265,961.30206,0.0,75.450356 +2023-06-08 17:00:00,5.188449,6.708204,152.44728,153.43501,20.526499,961.60114,0.0,69.14819 +2023-06-08 18:00:00,4.850773,6.1846585,165.67725,165.96373,21.426498,961.37317,0.0,64.17238 +2023-06-08 19:00:00,4.148494,5.1923018,164.62369,164.3577,22.7265,961.0211,0.0,61.03113 +2023-06-08 20:00:00,4.0521603,5.096077,164.24876,164.05453,23.6265,960.886,0.0,57.98629 +2023-06-08 21:00:00,3.5846896,4.438468,157.01126,157.47939,24.0765,960.4852,0.0,55.17868 +2023-06-08 22:00:00,3.522783,4.4654226,145.40765,145.95403,24.276499,959.9483,0.0,52.44404 +2023-06-08 23:00:00,3.753665,4.750789,138.23979,139.26799,24.0765,959.6303,0.0,51.212757 +2023-06-09 00:00:00,3.405877,4.545327,139.76372,140.35587,23.5765,959.3577,0.0,51.753628 +2023-06-09 01:00:00,1.9849433,3.8948684,130.91429,131.87779,22.5765,960.04645,0.0,58.29689 +2023-06-09 02:00:00,1.7804494,4.318565,128.15727,132.18437,20.2265,960.31616,0.0,67.32306 +2023-06-09 03:00:00,2.9529645,6.140033,118.30067,120.32352,19.4765,960.6632,0.0,67.16895 +2023-06-09 04:00:00,3.5510561,7.5716577,122.34742,123.690094,18.926498,960.85394,0.0,58.176594 +2023-06-09 05:00:00,3.679674,7.66942,137.20262,140.29013,18.3765,961.04443,0.0,54.45402 +2023-06-09 06:00:00,3.6359317,7.741447,148.49579,151.4487,17.8765,961.0536,0.0,54.878876 +2023-06-09 07:00:00,3.8600519,8.008121,163.44286,164.05453,17.676498,960.7343,0.0,51.92744 +2023-06-09 08:00:00,3.748333,7.665507,170.78905,172.50424,17.3265,960.67377,0.0,53.449924 +2023-06-09 09:00:00,3.733631,7.6295476,187.69595,190.57347,16.776499,960.7683,0.0,63.13827 +2023-06-09 10:00:00,3.9293766,7.940403,194.7436,196.83755,16.676498,960.5613,0.0,72.34256 +2023-06-09 11:00:00,3.8897302,7.7833157,197.96924,200.29765,16.3765,960.79364,0.0,75.70572 +2023-06-09 12:00:00,4.0718546,7.201389,204.67685,205.49751,17.3765,961.25183,0.0,72.469635 +2023-06-09 13:00:00,3.7,6.6370173,180.0,186.0541,19.026499,960.87134,0.0,69.9839 +2023-06-09 14:00:00,3.6,5.10392,180.0,182.2457,19.8265,961.1974,0.0,67.0226 +2023-06-09 15:00:00,4.2755113,5.6293874,190.78426,192.308,21.676498,961.5103,0.0,60.19872 +2023-06-09 16:00:00,4.588028,5.9481087,196.4601,196.60706,21.5765,961.39844,0.0,62.363197 +2023-06-09 17:00:00,4.2059484,5.502726,198.00426,199.09358,21.6265,961.50183,0.0,63.802692 +2023-06-09 18:00:00,3.981206,5.1195703,191.59215,192.40741,22.1265,961.016,0.0,63.912304 +2023-06-09 19:00:00,4.3416586,5.700877,194.67644,195.25517,22.676498,960.3481,0.0,62.409683 +2023-06-09 20:00:00,4.318565,5.5326304,185.31445,186.22574,23.276499,959.87787,0.0,63.958427 +2023-06-09 21:00:00,4.318565,5.6435804,185.31445,187.12492,22.8265,959.04333,0.1,65.93352 +2023-06-09 22:00:00,3.6345563,4.5891175,187.90707,191.30989,23.5765,958.50287,0.0,62.611202 +2023-06-09 23:00:00,3.214032,4.204759,174.64427,177.27374,23.676498,957.8546,0.0,61.64186 +2023-06-10 00:00:00,3.945884,5.3935146,188.74608,190.68486,22.8265,958.09357,0.1,66.56691 +2023-06-10 01:00:00,2.3345234,3.9115217,170.13426,175.60138,22.2265,957.80396,0.0,69.92203 +2023-06-10 02:00:00,2.7073975,5.60803,175.76369,183.06642,20.8765,957.9574,0.0,73.5614 +2023-06-10 03:00:00,2.5,5.6089215,180.0,191.30989,19.926498,958.1768,0.0,73.632904 +2023-06-10 04:00:00,2.5495098,5.491812,205.55992,213.11136,19.176498,958.0495,0.1,77.14476 +2023-06-10 05:00:00,2.641969,5.661272,209.4758,215.65541,18.6265,957.76605,0.0,82.9724 +2023-06-10 06:00:00,3.679674,6.726812,227.20262,228.01286,18.3765,957.72296,0.0,86.73972 +2023-06-10 07:00:00,4.606517,8.013114,242.87877,240.87604,17.8265,957.5339,0.0,89.502815 +2023-06-10 08:00:00,2.5455844,4.9648767,224.9999,235.66972,17.926498,956.8869,0.0,90.37002 +2023-06-10 09:00:00,1.4422206,3.538361,213.6901,227.29063,17.276499,956.0161,0.0,95.35663 +2023-06-10 10:00:00,1.421267,3.522783,219.28938,235.40765,17.026499,956.1626,0.0,96.87701 +2023-06-10 11:00:00,1.0049876,2.408319,185.7105,221.63345,17.026499,956.1626,0.0,97.49465 +2023-06-10 12:00:00,0.41231057,0.8062258,75.96373,330.25522,17.5765,955.9726,0.0,94.76384 +2023-06-10 13:00:00,0.72801095,0.9055385,105.945465,96.340096,18.776499,956.7475,0.0,91.00319 +2023-06-10 14:00:00,1.3038405,1.5264337,57.528828,58.392544,20.3265,957.0103,0.1,81.09481 +2023-06-10 15:00:00,2.5806975,3.1622775,54.46224,55.304783,21.3265,957.08374,0.1,75.29503 +2023-06-10 16:00:00,3.001666,3.6715121,60.018444,60.64234,21.926498,957.1839,0.1,70.986046 +2023-06-10 17:00:00,3.1384711,3.9446166,59.349415,59.53454,23.2265,957.40015,0.2,67.286865 +2023-06-10 18:00:00,3.176476,4.0249224,61.821507,63.435013,23.8765,956.93774,0.1,64.0887 +2023-06-10 19:00:00,3.4885528,4.3382025,62.70051,64.025665,24.3765,956.5448,0.0,59.48287 +2023-06-10 20:00:00,3.5846896,4.527693,59.8587,59.470375,24.926498,956.1599,0.0,56.10537 +2023-06-10 21:00:00,3.6359317,4.652956,58.495792,61.782738,24.8265,956.3336,0.0,55.365852 +2023-06-10 22:00:00,6.795587,9.06973,32.988533,34.215755,20.8265,956.7151,2.6,72.38645 +2023-06-10 23:00:00,3.6235344,5.1429563,62.02062,63.435013,19.276499,957.02234,0.2,82.522194 +2023-06-11 00:00:00,4.440721,6.4629717,82.234924,81.99536,18.926498,956.678,0.0,84.34239 +2023-06-11 01:00:00,3.6715121,5.769748,60.64234,64.32324,18.2265,957.6976,0.4,91.83675 +2023-06-11 02:00:00,5.936329,9.588014,57.380775,59.95872,18.026499,958.3275,0.0,86.15359 +2023-06-11 03:00:00,6.1220913,9.96243,51.632477,54.395382,17.3265,959.1557,0.0,84.43646 +2023-06-11 04:00:00,6.8593006,10.897706,44.409416,47.231197,16.526499,959.87103,0.0,78.25579 +2023-06-11 05:00:00,7.0035706,11.030867,43.26433,44.999897,15.1765,960.2994,0.0,72.792854 +2023-06-11 06:00:00,6.519202,10.327633,41.268513,43.430702,13.7765,960.6215,0.0,72.050186 +2023-06-11 07:00:00,6.1717095,9.972462,40.399834,43.781216,12.7765,960.9177,0.0,72.354195 +2023-06-11 08:00:00,5.8137765,9.476286,40.814987,44.145004,11.9265,961.4292,0.0,72.69232 +2023-06-11 09:00:00,5.60803,9.334881,39.936325,44.132053,11.3265,961.70026,0.0,72.08439 +2023-06-11 10:00:00,5.5803227,9.295698,36.253937,40.200104,10.7265005,962.1605,0.0,72.47077 +2023-06-11 11:00:00,5.325411,8.886507,34.286938,39.06258,10.1765,962.72394,0.0,74.144844 +2023-06-11 12:00:00,5.8694124,8.497058,23.070442,26.564985,9.7765,963.5984,0.0,76.420006 +2023-06-11 13:00:00,6.7542577,9.167878,25.426844,26.564985,10.4265,964.2856,0.0,72.16466 +2023-06-11 14:00:00,6.844706,9.167878,25.06744,26.564985,11.6265,964.5031,0.0,67.569756 +2023-06-11 15:00:00,7.3409805,9.708244,24.120981,24.981216,13.0765,964.76355,0.0,63.370575 +2023-06-11 16:00:00,7.3539104,9.677293,22.380184,23.120876,14.4765005,964.7282,0.0,58.262653 +2023-06-11 17:00:00,7.4094534,9.8234415,21.370695,22.126389,15.7765,964.6729,0.0,53.22464 +2023-06-11 18:00:00,7.2235723,9.546204,21.948761,22.804585,17.026499,964.5117,0.0,48.14766 +2023-06-11 19:00:00,6.9641943,9.1181135,21.037588,21.21804,18.2265,964.2454,0.0,43.571728 +2023-06-11 20:00:00,6.514599,8.53815,17.87879,18.435053,19.026499,964.09827,0.0,41.732643 +2023-06-11 21:00:00,6.1846585,8.052329,14.036275,14.381432,19.526499,963.7091,0.0,41.017143 +2023-06-11 22:00:00,6.0207973,7.8854294,11.496537,12.449991,19.7265,963.5534,0.0,39.13234 +2023-06-11 23:00:00,5.5108986,7.35459,11.513804,11.76827,19.676498,963.3551,0.0,37.780952 +2023-06-12 00:00:00,4.6872168,6.551336,11.07017,12.339083,18.926498,963.3216,0.0,38.227993 +2023-06-12 01:00:00,3.6496572,6.432729,9.462261,11.659274,17.776499,963.3136,0.0,44.977375 +2023-06-12 02:00:00,2.0880613,5.2924476,16.699326,22.203527,15.0765,962.93756,0.0,55.285572 +2023-06-12 03:00:00,2.1633308,5.7306194,56.3099,60.75127,13.7265005,963.3625,0.0,58.277283 +2023-06-12 04:00:00,2.942788,4.6173587,99.78234,85.03035,12.1265,963.2661,0.0,61.84877 +2023-06-12 05:00:00,2.7802877,3.5846896,142.3057,112.98875,11.4265,963.14,0.0,63.87568 +2023-06-12 06:00:00,2.0615528,2.8442926,202.8337,169.8754,10.9765005,963.1533,0.0,65.124146 +2023-06-12 07:00:00,2.385372,3.88973,236.97612,226.04153,11.1765,962.9053,0.0,65.39609 +2023-06-12 08:00:00,2.8231187,5.1546097,247.06787,251.91646,11.0765,962.603,0.0,66.52228 +2023-06-12 09:00:00,2.8792362,5.7428217,249.67677,262.99884,10.9765005,962.4899,0.0,67.19854 +2023-06-12 10:00:00,2.942788,6.0207973,260.21765,281.49652,10.8765,962.66144,0.0,68.118256 +2023-06-12 11:00:00,2.8635643,6.242595,282.09473,305.21768,10.8265,962.55756,0.0,72.73989 +2023-06-12 12:00:00,3.6359317,7.071068,301.5042,315.0001,13.2265005,963.4631,0.0,65.84571 +2023-06-12 13:00:00,3.8078864,7.2835426,299.93143,314.44382,15.7265005,963.81036,0.0,62.687008 +2023-06-12 14:00:00,4.022437,5.9816384,304.8754,308.21106,18.276499,963.96924,0.0,51.03656 +2023-06-12 15:00:00,4.8795495,6.3655324,315.83023,316.27295,19.8265,963.8553,0.0,39.845066 +2023-06-12 16:00:00,4.263801,5.3413477,320.7106,321.8427,20.8265,963.4558,0.0,35.312176 +2023-06-12 17:00:00,3.764306,4.6861496,320.38934,320.1945,21.5765,962.91766,0.0,33.606926 +2023-06-12 18:00:00,4.2720017,5.3535037,327.42596,327.20047,22.4765,962.21405,0.0,31.591532 +2023-06-12 19:00:00,4.1880784,5.408327,326.68936,326.3099,23.1265,961.3727,0.0,29.950014 +2023-06-12 20:00:00,5.571355,7.2615423,338.9624,337.3194,23.026499,960.7863,0.0,30.662077 +2023-06-12 21:00:00,4.103657,5.6400356,316.9749,322.92685,22.676498,960.15814,0.0,31.869389 +2023-06-12 22:00:00,4.0459857,5.4037023,320.01315,321.009,24.1265,959.54376,0.0,28.396763 +2023-06-12 23:00:00,4.5,6.3820057,323.13,324.5666,23.6265,958.8913,0.0,29.881943 +2023-06-13 00:00:00,3.7735925,6.191123,327.99466,328.8776,22.7265,958.83673,0.0,37.744217 +2023-06-13 01:00:00,3.1241,6.6030297,320.1945,324.86572,21.026499,958.6475,0.0,43.91266 +2023-06-13 02:00:00,2.863564,4.327817,294.77512,319.68597,17.426498,957.7498,0.0,55.322876 +2023-06-13 03:00:00,2.7294688,5.6859474,278.42688,293.86017,17.2265,957.90497,0.0,51.10306 +2023-06-13 04:00:00,3.7696154,8.268011,291.80148,302.15228,17.8265,958.1033,0.0,49.373505 +2023-06-13 05:00:00,2.9068882,6.981404,319.18503,321.981,17.3765,957.93097,0.0,47.58374 +2023-06-13 06:00:00,2.4207437,6.1294374,321.70978,331.76263,15.3765,957.4891,0.0,53.857758 +2023-06-13 07:00:00,2.404163,5.882177,286.92758,305.31128,14.3765,957.1241,0.0,58.03744 +2023-06-13 08:00:00,3.710795,8.417244,284.03625,293.82425,15.1265,956.8762,0.0,53.052452 +2023-06-13 09:00:00,3.794733,8.5,288.43503,298.0724,15.1265,956.5916,0.0,51.06481 +2023-06-13 10:00:00,3.49285,7.7820306,283.24054,295.90643,14.6765,956.4181,0.0,52.93279 +2023-06-13 11:00:00,3.275668,7.4686007,282.33908,296.2219,14.3765,956.46027,0.0,55.873314 +2023-06-13 12:00:00,3.577709,7.106335,296.56497,309.28937,15.7265005,956.69635,0.0,59.984077 +2023-06-13 13:00:00,3.3837848,7.0035706,304.15976,313.26434,18.0765,957.1973,0.0,60.54438 +2023-06-13 14:00:00,3.0610456,4.6010866,308.36752,312.3574,20.4765,957.3205,0.0,56.65433 +2023-06-13 15:00:00,3.0413814,3.9623227,316.33215,317.0454,22.676498,957.5939,0.0,52.37126 +2023-06-13 16:00:00,3.5805027,4.5803933,324.09018,323.88055,24.426498,957.3129,0.0,43.832253 +2023-06-13 17:00:00,4.4418464,5.7454333,328.8151,328.5232,25.276499,956.9772,0.0,37.576866 +2023-06-13 18:00:00,4.4654226,5.7688823,325.954,326.3099,25.676498,956.66254,0.0,36.941063 +2023-06-13 19:00:00,4.244997,5.5865912,313.09085,314.27487,26.526499,956.13495,0.0,35.36606 +2023-06-13 20:00:00,4.313931,5.658622,314.06088,313.56796,27.426498,955.6148,0.0,30.840197 +2023-06-13 21:00:00,4.3081317,5.6859474,338.19852,336.1398,27.526499,955.1556,0.0,30.044138 +2023-06-13 22:00:00,3.49285,4.6840153,346.75946,343.8865,27.6265,954.69635,0.0,29.168118 +2023-06-13 23:00:00,3.3421547,4.9819674,321.07245,321.51978,27.3265,954.1731,0.0,31.126356 +2023-06-14 00:00:00,3.992493,6.8709536,337.93204,338.6631,25.526499,954.35754,0.0,40.241096 +2023-06-14 01:00:00,2.8017852,5.921149,2.0453732,4.84392,23.6265,954.23694,0.0,50.430435 +2023-06-14 02:00:00,2.5632012,5.3488317,20.556128,20.806877,20.276499,953.9643,0.0,60.0658 +2023-06-14 03:00:00,3.3615472,5.162364,22.751022,21.59538,18.6265,954.0648,0.0,63.764645 +2023-06-14 04:00:00,3.324154,4.997999,6.9111314,19.885265,17.8765,953.9368,0.0,62.13358 +2023-06-14 05:00:00,2.7784889,3.8327534,329.74365,7.495768,17.2265,953.92004,0.0,61.776497 +2023-06-14 06:00:00,2.9410884,3.7,324.6887,360.0,16.0765,953.8165,0.0,66.01397 +2023-06-14 07:00:00,2.863564,3.1320918,335.22488,16.699326,15.4765005,953.4279,0.0,67.68165 +2023-06-14 08:00:00,2.2847319,2.1931713,336.8014,43.152412,14.7265005,953.01276,0.0,69.37256 +2023-06-14 09:00:00,1.8357561,1.8384776,330.64233,22.380184,14.0265,952.98517,0.0,71.130585 +2023-06-14 10:00:00,2.3600848,2.5179358,323.61554,6.842679,13.2765,953.13745,0.0,74.43304 +2023-06-14 11:00:00,2.385372,3.1016126,326.97614,1.8475709,13.2765,953.5167,0.0,75.19032 +2023-06-14 12:00:00,2.915476,5.0990195,354.09393,11.3098955,15.6765,954.3163,0.0,69.097275 +2023-06-14 13:00:00,2.0024984,3.939543,357.13766,23.962492,18.176498,954.9367,0.0,63.45373 +2023-06-14 14:00:00,1.5297059,2.6832817,11.3098955,26.564985,20.9765,955.5059,0.0,56.778408 +2023-06-14 15:00:00,1.9313208,2.5079873,21.25058,23.498587,22.9765,955.83905,0.0,49.928368 +2023-06-14 16:00:00,2.6925824,3.3615472,21.801476,22.751022,24.3765,955.8798,0.0,43.241337 +2023-06-14 17:00:00,2.9154758,3.5510561,30.963696,32.347424,25.3265,956.0353,0.0,38.35321 +2023-06-14 18:00:00,2.7802877,3.405877,37.694313,40.236294,25.9765,955.95105,0.0,37.90044 +2023-06-14 19:00:00,2.5495098,3.04795,48.179924,48.99101,26.4765,955.46185,0.0,37.915108 +2023-06-14 20:00:00,1.9416488,2.385372,55.491425,56.976128,26.8265,955.1383,0.0,38.265865 +2023-06-14 21:00:00,1.7029386,2.0,49.76371,53.13002,26.9765,954.97235,0.0,38.18157 +2023-06-14 22:00:00,1.3892444,1.7204651,30.256361,35.537766,26.926498,954.7741,0.0,38.420673 +2023-06-14 23:00:00,1.6763055,1.9924859,17.354122,17.52567,26.676498,954.63885,0.0,39.378036 +2023-06-15 00:00:00,1.8601075,2.4839485,36.253937,40.10085,25.926498,954.61255,0.0,40.35323 +2023-06-15 01:00:00,1.8973665,4.2720017,18.435053,20.556128,23.926498,954.5711,0.0,57.1326 +2023-06-15 02:00:00,1.9313208,4.753946,21.25058,22.249071,21.276499,954.2268,0.0,64.76496 +2023-06-15 03:00:00,3.0,4.360046,36.86998,36.607166,19.3265,954.2784,0.0,71.18749 +2023-06-15 04:00:00,3.1890438,4.20119,41.185825,38.23387,18.7265,954.2715,0.0,71.30724 +2023-06-15 05:00:00,2.640076,3.6619666,65.37646,55.0079,19.026499,954.3225,0.0,66.85681 +2023-06-15 06:00:00,2.0099752,2.9154758,95.7105,67.83361,21.276499,954.9864,0.0,55.37659 +2023-06-15 07:00:00,1.4866068,2.2561028,109.653915,77.19574,21.176498,954.9697,0.0,55.169197 +2023-06-15 08:00:00,1.17047,1.7262677,160.0168,100.00792,20.426498,954.84375,0.0,58.15709 +2023-06-15 09:00:00,1.8248286,1.8439089,189.46225,139.39879,16.2265,953.9373,0.0,77.95473 +2023-06-15 10:00:00,1.9235384,1.9104973,207.89717,173.99109,15.2265005,954.0484,0.0,85.592384 +2023-06-15 11:00:00,1.8867962,1.7,212.00534,180.0,14.9265,954.4704,0.0,86.97429 +2023-06-15 12:00:00,1.118034,2.0518284,169.6952,133.02507,19.176498,955.5818,0.0,73.97939 +2023-06-15 13:00:00,1.3341664,2.2203605,77.00539,97.76508,21.4765,956.44415,0.0,69.77854 +2023-06-15 14:00:00,2.1931713,2.6925824,65.77226,68.19853,22.676498,957.0241,0.0,64.03237 +2023-06-15 15:00:00,1.6278821,1.9026297,79.380394,86.98728,24.1265,957.1689,0.0,59.996727 +2023-06-15 16:00:00,1.4560219,1.7262677,74.054535,79.99209,25.5765,957.2163,0.0,54.497295 +2023-06-15 17:00:00,1.6278821,1.8439089,47.489597,49.398785,26.5765,957.1885,0.0,48.48376 +2023-06-15 18:00:00,2.0615528,2.34094,22.833694,19.983198,27.176498,957.19037,0.0,44.87913 +2023-06-15 19:00:00,2.236068,2.630589,10.304792,8.746089,27.3765,957.12775,0.0,42.247593 +2023-06-15 20:00:00,2.3086793,2.6925821,17.650223,15.068549,27.3265,957.30963,0.0,43.066353 +2023-06-15 21:00:00,2.302173,2.8017852,34.3804,34.82457,27.2265,957.10345,0.0,44.31496 +2023-06-15 22:00:00,2.6400757,3.2015622,52.695976,51.34017,27.1265,956.89734,0.0,45.892776 +2023-06-15 23:00:00,2.9068882,3.6674242,63.435013,64.133705,26.7265,957.1177,0.0,48.367786 +2023-06-16 00:00:00,6.040695,8.316851,70.66511,71.782814,24.3765,957.3998,0.0,51.12482 +2023-06-16 01:00:00,5.4083266,8.286133,70.559875,72.439644,22.676498,957.9738,0.0,55.005905 +2023-06-16 02:00:00,4.8270073,8.178631,76.827446,78.00312,20.8265,958.2341,0.0,56.182835 +2023-06-16 03:00:00,4.1,7.5504966,77.319626,78.54128,19.676498,959.1785,0.0,59.33289 +2023-06-16 04:00:00,4.648656,8.324061,71.1752,73.95999,18.676498,959.8624,0.0,60.484596 +2023-06-16 05:00:00,4.3931766,7.9075913,78.178535,80.53775,17.6265,960.1565,0.0,59.035885 +2023-06-16 06:00:00,4.3,7.905694,90.0,92.1747,16.676498,960.6561,0.0,57.62167 +2023-06-16 07:00:00,4.304649,7.8409185,92.66295,95.85592,15.8765,960.8013,0.0,58.409363 +2023-06-16 08:00:00,4.0261645,7.6243033,104.38144,106.77131,15.0765,960.7562,0.0,60.443333 +2023-06-16 09:00:00,3.4058774,6.726812,93.366394,101.14285,14.2265005,960.98566,0.0,63.63247 +2023-06-16 10:00:00,3.8,7.05762,90.0,97.32632,13.4265,960.844,0.0,66.56844 +2023-06-16 11:00:00,3.6055512,6.5924196,93.17977,99.60514,12.8765,961.2201,0.0,68.765945 +2023-06-16 12:00:00,3.352611,5.8180757,107.35411,114.36244,13.0265,961.9105,0.0,69.74165 +2023-06-16 13:00:00,3.9560082,5.3310413,110.72565,113.198616,14.4265,962.3486,0.0,66.10528 +2023-06-16 14:00:00,3.9849718,5.186521,107.52566,109.133736,16.176498,962.7511,0.0,62.368187 +2023-06-16 15:00:00,3.5171013,4.4922156,104.82652,106.821495,18.1265,963.0893,0.0,57.78627 +2023-06-16 16:00:00,3.2280025,3.9849718,106.18928,107.52566,19.8765,963.29425,0.0,54.65648 +2023-06-16 17:00:00,3.2572994,4.016217,107.87879,108.886185,21.3765,963.3588,0.0,52.551502 +2023-06-16 18:00:00,3.2557642,4.002499,100.619606,102.99462,22.7265,963.2055,0.0,50.69042 +2023-06-16 19:00:00,3.1144822,3.8209946,95.52745,96.00892,23.6265,962.88074,0.0,49.610794 +2023-06-16 20:00:00,3.1064448,3.7121422,93.691315,94.635376,24.3765,962.6247,0.0,48.20888 +2023-06-16 21:00:00,3.275668,4.1231055,102.33907,104.03627,24.776499,962.3108,0.0,47.223522 +2023-06-16 22:00:00,3.49285,4.428318,113.62939,115.40768,24.776499,961.83575,0.0,46.608864 +2023-06-16 23:00:00,3.3615475,4.2190046,120.37905,121.42952,24.7265,961.8276,0.0,46.29054 +2023-06-17 00:00:00,3.238827,4.2755113,98.88058,100.784256,23.026499,961.7361,0.0,45.67254 +2023-06-17 01:00:00,1.8973665,3.640055,108.43504,110.924576,22.1265,962.2505,0.0,51.373478 +2023-06-17 02:00:00,2.0,3.420526,90.0,105.25517,19.3265,962.2512,0.0,63.08492 +2023-06-17 03:00:00,1.8248286,4.2059484,99.46225,108.00426,18.776499,962.4419,0.0,61.51979 +2023-06-17 04:00:00,2.280351,5.1546097,105.25517,108.08354,18.1265,962.425,0.0,61.778706 +2023-06-17 05:00:00,2.6925824,6.1326995,111.801476,114.05735,17.8265,962.2784,0.0,60.68775 +2023-06-17 06:00:00,3.0232434,6.8242216,124.21575,124.85453,17.7265,961.8818,0.0,59.657196 +2023-06-17 07:00:00,3.4999998,7.4886575,143.13002,145.88548,17.4765,961.6488,0.0,61.217033 +2023-06-17 08:00:00,3.7215588,7.826238,149.30035,153.43501,17.2265,960.9411,0.0,62.191578 +2023-06-17 09:00:00,3.8327537,7.9075913,164.87595,166.84245,16.9765,960.99274,0.0,64.03445 +2023-06-17 10:00:00,3.8209946,7.8160095,173.99109,176.33229,16.7265,960.9493,0.0,67.71321 +2023-06-17 11:00:00,3.905125,7.7929454,166.67546,171.14212,16.676498,960.8459,0.0,72.104095 +2023-06-17 12:00:00,5.0289164,8.561542,162.64589,165.80142,18.026499,961.0794,0.0,69.10621 +2023-06-17 13:00:00,5.1546097,8.286133,161.91646,162.43964,19.2265,960.9054,0.0,66.67998 +2023-06-17 14:00:00,5.6515484,7.962412,166.70142,168.40785,20.8765,961.09045,0.0,61.198772 +2023-06-17 15:00:00,5.323533,7.025667,174.61078,175.101,22.6265,961.0997,0.0,58.498184 +2023-06-17 16:00:00,5.4744864,7.218033,189.46225,190.3758,24.176498,961.0719,0.0,58.305202 +2023-06-17 17:00:00,5.661272,7.4,197.47487,198.92474,25.6265,960.5502,0.0,55.919926 +2023-06-17 18:00:00,5.664804,7.484651,200.6745,202.79655,24.676498,960.0142,1.2,59.933647 +2023-06-17 19:00:00,4.0853395,5.3488317,201.54105,200.80687,24.526499,959.1346,0.0,58.575752 +2023-06-17 20:00:00,4.4553337,5.5731497,189.0394,189.29323,26.0765,958.43774,0.0,51.899494 +2023-06-17 21:00:00,4.6010866,5.9,178.75467,180.0,25.9765,957.66144,0.2,51.21166 +2023-06-17 22:00:00,6.016644,7.7369246,195.42223,194.21588,25.526499,957.20807,0.3,51.757236 +2023-06-17 23:00:00,4.808326,6.3890533,196.9276,197.30061,22.776499,957.3257,0.0,68.27227 +2023-06-18 00:00:00,4.1773195,6.1846585,137.91092,140.90614,25.676498,957.2327,0.1,49.670013 +2023-06-18 01:00:00,2.7856774,4.588028,201.03758,196.4601,22.3765,957.7338,0.0,64.58575 +2023-06-18 02:00:00,1.8027756,2.1633308,33.6901,33.6901,20.4765,957.6053,0.0,78.085144 +2023-06-18 03:00:00,3.224903,5.3600373,97.12492,104.03627,19.6265,957.36646,0.0,79.21518 +2023-06-18 04:00:00,3.405877,6.0876923,130.23628,132.33694,18.776499,957.1272,0.1,85.68028 +2023-06-18 05:00:00,3.0413814,5.99333,152.59251,154.2901,18.276499,956.6621,0.1,89.53712 +2023-06-18 06:00:00,3.130495,5.9093146,153.43501,156.0375,18.3265,956.38586,0.0,90.398094 +2023-06-18 07:00:00,2.5079873,5.2201533,156.50142,163.30067,18.026499,955.6705,0.0,93.29279 +2023-06-18 08:00:00,1.5811388,3.8078866,161.56496,166.32867,18.0765,955.48926,0.0,94.18563 +2023-06-18 09:00:00,0.50990194,1.4866068,101.3099,160.34608,18.276499,955.71313,0.0,93.60075 +2023-06-18 10:00:00,0.70710677,0.6324555,8.130019,18.435053,17.676498,955.4206,0.0,96.892334 +2023-06-18 11:00:00,1.3152945,1.2041595,81.25392,85.23644,16.4765,955.2138,0.0,99.049934 +2023-06-18 12:00:00,2.7892652,4.86621,75.46551,80.53775,17.8265,955.0668,0.0,96.59011 +2023-06-18 13:00:00,2.6683328,3.7854989,77.00539,77.79955,18.1265,954.8334,0.2,91.539825 +2023-06-18 14:00:00,4.101219,5.3009434,88.60285,88.919106,18.926498,955.1595,0.2,87.62195 +2023-06-18 15:00:00,4.14367,5.3600373,98.32557,98.58354,20.176498,955.4663,0.2,80.05248 +2023-06-18 16:00:00,3.5128336,4.509989,85.101,86.186005,20.676498,954.9808,0.1,75.42882 +2023-06-18 17:00:00,3.4525354,4.2755113,79.99209,79.21575,22.2265,955.145,0.0,69.92203 +2023-06-18 18:00:00,2.6000001,3.231099,67.3801,68.19853,22.8765,954.968,0.0,65.94398 +2023-06-18 19:00:00,1.9416488,2.385372,55.491425,56.976128,22.8765,954.3982,0.0,64.90033 +2023-06-18 20:00:00,2.0808651,2.5238857,54.782326,56.3099,22.8265,954.0097,0.0,64.476166 +2023-06-18 21:00:00,1.6278821,1.9849433,47.489597,49.085716,23.776499,953.6914,0.0,61.467976 +2023-06-18 22:00:00,1.555635,1.7691805,44.999897,47.290634,24.0765,953.4557,0.1,62.12686 +2023-06-18 23:00:00,1.5,1.8027756,53.13002,56.3099,24.3765,953.3148,0.0,60.24671 +2023-06-19 00:00:00,1.5231546,1.7888545,23.198618,26.564985,23.9765,954.19934,0.0,58.63231 +2023-06-19 01:00:00,1.2806249,1.7691805,38.65983,42.709366,23.176498,954.7326,0.1,65.17169 +2023-06-19 02:00:00,1.4,3.2015622,90.0,91.78987,21.5765,954.7517,0.0,77.02206 +2023-06-19 03:00:00,2.0223749,2.4738634,98.530685,104.03627,19.6265,954.9934,0.0,86.85747 +2023-06-19 04:00:00,2.158703,2.529822,103.39252,108.43504,18.8265,955.1426,0.0,89.57878 +2023-06-19 05:00:00,2.0615528,3.9812057,112.833694,115.277695,18.8265,955.1426,0.0,88.17079 +2023-06-19 06:00:00,2.4413111,5.108816,124.992096,130.23628,18.276499,954.954,0.0,91.259285 +2023-06-19 07:00:00,2.1931713,5.2430906,136.8476,145.09743,17.776499,955.0582,0.0,92.68962 +2023-06-19 08:00:00,2.5495098,5.660389,138.17992,147.99466,17.5765,954.9289,0.0,90.923805 +2023-06-19 09:00:00,2.4596748,6.0083275,153.43501,161.56496,17.276499,955.0673,0.0,90.03551 +2023-06-19 10:00:00,2.5,6.152235,163.73972,172.52853,17.0765,955.6022,0.0,89.158745 +2023-06-19 11:00:00,3.0066593,7.0035706,183.814,189.86574,17.3765,956.12823,0.0,87.76445 +2023-06-19 12:00:00,3.5057096,6.519202,176.72958,184.39862,19.176498,956.8156,0.0,83.03771 +2023-06-19 13:00:00,3.3615472,7.2993145,157.249,170.53775,21.5765,957.6003,0.0,76.5369 +2023-06-19 14:00:00,3.6359317,5.2325897,148.49579,153.9247,23.8765,958.3626,0.0,67.20581 +2023-06-19 15:00:00,4.5617976,6.0008335,153.9967,156.42528,25.7265,958.66583,0.0,58.48859 +2023-06-19 16:00:00,5.4120235,7.155418,152.48808,153.43501,27.1265,958.7982,0.0,53.34245 +2023-06-19 17:00:00,5.7775426,7.484651,156.54095,157.20345,28.3265,958.99115,0.0,50.205685 +2023-06-19 18:00:00,6.074537,7.8434687,159.77505,160.64091,29.2265,958.9448,0.0,48.10793 +2023-06-19 19:00:00,6.20967,8.052329,165.06853,165.61858,29.8765,958.85803,0.0,45.900593 +2023-06-19 20:00:00,6.139218,8.158431,167.77489,168.69011,30.3765,958.55676,0.0,43.900276 +2023-06-19 21:00:00,6.315061,8.336066,169.04597,169.63373,30.526499,958.4854,0.0,43.112045 +2023-06-19 22:00:00,6.281719,8.492938,166.18495,167.7639,30.426498,958.6598,0.0,42.947975 +2023-06-19 23:00:00,6.1846585,8.634812,165.96373,166.60748,30.026499,958.7869,0.0,44.225224 +2023-06-20 00:00:00,5.700877,8.6977005,158.38516,160.52333,29.0765,959.30145,0.0,50.084007 +2023-06-20 01:00:00,5.5758405,9.228218,147.45001,150.1012,27.7265,959.56036,0.0,55.38025 +2023-06-20 02:00:00,5.714018,9.912618,147.14429,149.03632,26.2265,959.79266,0.0,58.05451 +2023-06-20 03:00:00,5.866856,10.288343,150.37634,152.18968,25.3765,960.50916,0.0,58.59119 +2023-06-20 04:00:00,6.1269894,10.742439,153.85323,155.82089,24.8765,960.80707,0.0,58.84614 +2023-06-20 05:00:00,6.2241464,10.900459,156.3179,157.90572,24.176498,960.8819,0.0,61.755146 +2023-06-20 06:00:00,6.1684685,10.846659,160.09616,161.732,23.526499,961.0592,0.0,64.216866 +2023-06-20 07:00:00,6.040695,10.690182,160.6651,162.58194,22.8765,961.4263,0.0,66.78949 +2023-06-20 08:00:00,5.9774575,10.604244,162.47435,164.12875,22.2265,961.60254,0.0,69.47853 +2023-06-20 09:00:00,5.7280016,10.235722,163.77974,165.28488,21.5765,961.87317,0.0,71.60259 +2023-06-20 10:00:00,5.8940644,10.478549,165.2564,166.75948,21.1265,962.1772,0.0,73.136795 +2023-06-20 11:00:00,5.8694124,10.381715,171.1797,172.80663,20.8765,962.89435,0.0,73.32688 +2023-06-20 12:00:00,5.491812,9.305912,169.50858,171.34753,21.6265,963.5908,0.0,72.99178 +2023-06-20 13:00:00,5.124451,8.17435,162.97939,165.1137,22.9765,964.2919,0.0,68.746414 +2023-06-20 14:00:00,5.5542774,7.66942,156.66594,157.78235,24.526499,964.8347,0.0,62.42545 +2023-06-20 15:00:00,5.8591805,7.915807,152.56036,153.75871,26.1265,965.00287,0.0,56.221115 +2023-06-20 16:00:00,6.26099,8.319255,153.43501,154.35904,27.5765,965.04895,0.0,51.13626 +2023-06-20 17:00:00,6.484597,8.676405,153.43501,154.02567,28.526499,964.8224,0.0,47.315926 +2023-06-20 18:00:00,6.400781,8.411897,151.03244,151.60707,29.176498,964.8316,0.0,43.434307 +2023-06-20 19:00:00,5.9682493,7.803204,148.70702,149.16223,29.526499,964.4123,0.0,42.157948 +2023-06-20 20:00:00,6.1611686,8.044874,144.24602,145.1246,29.8265,964.2701,0.0,39.738823 +2023-06-20 21:00:00,6.021628,7.9630394,144.46223,144.71317,29.926498,964.0958,0.0,38.00778 +2023-06-20 22:00:00,5.940539,7.9630394,143.90163,144.71317,29.676498,963.7705,0.0,38.185333 +2023-06-20 23:00:00,5.7489133,7.8873315,139.93929,140.6595,29.2265,963.50854,0.0,37.936462 +2023-06-21 00:00:00,4.8795495,7.4249578,134.16977,135.5456,28.1265,963.9021,0.0,40.83329 +2023-06-21 01:00:00,4.1617303,7.340981,125.21768,127.806595,26.4765,964.01483,0.0,46.163345 +2023-06-21 02:00:00,4.022437,7.902531,124.875404,128.32016,24.676498,963.90936,0.0,48.924103 +2023-06-21 03:00:00,3.6878178,7.8517513,130.60121,133.4519,23.2265,964.2387,0.0,53.55256 +2023-06-21 04:00:00,3.3421547,7.420243,141.07245,142.66673,22.026499,964.4178,0.0,57.786453 +2023-06-21 05:00:00,3.7215588,8.049845,149.30035,153.43501,21.276499,964.4812,0.0,60.301086 +2023-06-21 06:00:00,4.1231055,8.603488,157.1663,160.30128,20.926498,964.42194,0.0,61.61088 +2023-06-21 07:00:00,3.992493,8.411897,157.93205,161.99574,20.526499,964.35425,0.0,63.559982 +2023-06-21 08:00:00,3.8999999,8.19329,157.3801,160.0168,20.0765,964.56244,0.0,65.77845 +2023-06-21 09:00:00,3.3615472,7.6216793,157.249,160.85178,19.526499,964.37354,0.0,66.96058 +2023-06-21 10:00:00,3.757659,8.077747,154.7989,158.19853,19.0765,964.3915,0.0,67.52657 +2023-06-21 11:00:00,3.8626416,8.159657,158.74942,160.67673,18.8265,964.6333,0.0,67.69666 +2023-06-21 12:00:00,4.7169905,8.459906,147.99466,151.01128,19.8265,964.5197,0.0,66.1553 +2023-06-21 13:00:00,3.7161808,6.928925,156.19405,159.73422,21.3265,966.29376,0.0,63.530663 +2023-06-21 14:00:00,3.9812057,5.4626,154.72232,156.2505,23.1265,967.1663,0.0,56.752888 +2023-06-21 15:00:00,4.016217,5.249762,161.11382,162.25523,24.8765,967.3626,0.0,52.939327 +2023-06-21 16:00:00,3.8897302,4.9729266,162.03076,164.84589,26.6265,967.36554,0.0,49.7605 +2023-06-21 17:00:00,4.1,5.2952805,167.31963,169.11452,28.0765,967.2212,0.0,45.707657 +2023-06-21 18:00:00,4.3931766,5.6089215,168.17854,168.69011,29.2265,967.0263,0.0,42.07552 +2023-06-21 19:00:00,4.6840153,6.0440054,163.8865,163.66388,29.676498,966.4329,0.0,39.697315 +2023-06-21 20:00:00,5.27731,6.88767,152.94948,154.17906,29.926498,965.6172,0.0,38.254757 +2023-06-21 21:00:00,5.5542774,7.209022,156.66594,156.2796,30.2265,965.1897,0.0,36.638557 +2023-06-21 22:00:00,4.88467,6.3560996,157.10942,155.85446,29.926498,965.0467,0.0,39.130333 +2023-06-21 23:00:00,4.6647615,6.191123,149.03632,148.8776,29.6265,964.8086,0.0,39.81182 +2023-06-22 00:00:00,3.920459,5.5,142.25313,143.13002,28.426498,965.2815,0.0,43.50853 +2023-06-22 01:00:00,2.4839485,5.0447993,139.89915,140.6307,27.026499,965.24475,0.0,50.346375 +2023-06-22 02:00:00,2.4758837,6.0141497,133.36346,137.02136,24.8265,965.0742,0.0,53.786617 +2023-06-22 03:00:00,2.9410884,6.9641943,144.6887,147.90744,23.9765,965.40845,0.0,52.36644 +2023-06-22 04:00:00,2.751363,6.484597,160.90642,160.16779,23.026499,965.3453,0.0,54.558544 +2023-06-22 05:00:00,3.7696154,7.937884,158.19853,160.88019,22.2265,965.40106,0.0,58.402004 +2023-06-22 06:00:00,3.956008,8.29759,163.85559,167.4712,22.026499,965.74725,0.0,61.46344 +2023-06-22 07:00:00,3.5510561,7.7278714,170.27249,169.56258,21.5765,965.4814,0.0,63.7917 +2023-06-22 08:00:00,3.224903,7.156815,172.87508,172.77577,20.776499,965.6308,0.0,67.653465 +2023-06-22 09:00:00,3.104835,6.8447056,165.06853,168.19759,20.026499,965.2184,0.0,71.54784 +2023-06-22 10:00:00,2.9274564,6.726812,172.14677,174.88278,19.4765,965.1244,0.0,74.269775 +2023-06-22 11:00:00,3.324154,7.106335,173.08887,177.58054,19.3265,965.2885,0.0,75.93761 +2023-06-22 12:00:00,3.622154,6.7067127,173.6599,177.43628,20.4765,965.76965,0.0,73.72781 +2023-06-22 13:00:00,3.214032,6.400781,174.64427,180.89516,22.276499,966.3589,0.0,69.93158 +2023-06-22 14:00:00,3.2,4.3011627,180.0,181.33218,24.276499,966.78815,0.0,62.766968 +2023-06-22 15:00:00,3.6496572,4.7675986,189.46225,189.65982,26.176498,966.72156,0.0,54.996532 +2023-06-22 16:00:00,4.6238513,5.9615436,201.57137,202.69383,27.2265,966.703,0.0,48.036285 +2023-06-22 17:00:00,3.8999999,4.924429,202.6199,203.9625,27.926498,966.5317,0.0,45.37439 +2023-06-22 18:00:00,3.352611,4.2059484,197.35411,198.00426,28.526499,966.0582,0.0,42.840244 +2023-06-22 19:00:00,2.9120438,3.544009,195.94547,196.38962,28.6265,965.5039,0.0,42.45507 +2023-06-22 20:00:00,2.9274564,3.6496572,187.85323,189.46225,28.8765,964.9735,0.0,41.440804 +2023-06-22 21:00:00,2.828427,3.436568,188.13002,188.3658,29.176498,964.26117,0.0,40.5962 +2023-06-22 22:00:00,2.915476,3.7121422,174.09395,175.36462,29.0765,963.6748,0.0,40.046787 +2023-06-22 23:00:00,3.1016126,3.905125,181.84756,182.93561,29.026499,963.2864,0.0,37.880768 +2023-06-23 00:00:00,2.6172504,3.8118236,186.58185,184.5139,28.7265,963.4284,0.0,38.169384 +2023-06-23 01:00:00,1.7,4.2,180.0,180.0,27.0765,963.2571,0.0,49.08666 +2023-06-23 02:00:00,2.6019223,3.8,177.79745,180.0,23.8765,963.1122,0.0,58.98578 +2023-06-23 03:00:00,2.3086793,3.4132097,162.3498,174.95764,22.776499,963.40393,0.0,61.23947 +2023-06-23 04:00:00,2.4186773,4.14367,172.87508,171.67444,21.676498,963.4094,0.0,67.40176 +2023-06-23 05:00:00,3.04795,5.8180757,318.991,335.63754,21.8265,963.7193,0.0,66.146996 +2023-06-23 06:00:00,2.7294688,6.1983867,8.426887,10.22212,21.4765,963.5655,0.0,68.89078 +2023-06-23 07:00:00,2.376973,4.9497476,337.75092,351.87,20.026499,963.4148,0.0,79.77786 +2023-06-23 08:00:00,2.0024984,4.9648767,2.8623457,9.272532,19.5765,963.05316,0.0,83.34922 +2023-06-23 09:00:00,1.6278821,4.060788,349.3804,9.926182,18.9765,962.66614,0.0,87.072296 +2023-06-23 10:00:00,1.7029387,3.7161808,356.6336,23.805958,18.2265,962.7271,0.0,91.546005 +2023-06-23 11:00:00,1.9697715,3.5057096,336.0375,3.2704222,17.8765,962.85657,0.0,92.695 +2023-06-23 12:00:00,2.302173,2.9832869,325.6196,346.42953,19.526499,963.5192,0.0,88.78835 +2023-06-23 13:00:00,1.746425,2.8160255,346.75946,353.88458,21.426498,963.9368,0.0,83.04057 +2023-06-23 14:00:00,1.5033296,1.8027756,356.186,356.82022,23.276499,964.342,0.0,76.0841 +2023-06-23 15:00:00,0.6708204,0.6708204,26.564985,26.564985,25.2265,963.81,0.0,64.98899 +2023-06-23 16:00:00,0.56568545,0.781025,135.0001,140.19447,27.276499,963.66956,0.0,54.92154 +2023-06-23 17:00:00,1.603122,2.0099752,183.57626,185.7105,28.9765,963.46857,0.0,40.9361 +2023-06-23 18:00:00,2.7313,3.4539833,203.7495,202.1095,29.8265,962.9389,0.0,34.440018 +2023-06-23 19:00:00,3.5735137,4.5221677,197.92801,198.03438,29.7265,962.3524,0.0,31.687767 +2023-06-23 20:00:00,3.8600519,4.9729266,196.55714,195.15411,30.0765,961.83765,0.0,30.545345 +2023-06-23 21:00:00,4.365776,5.6302757,200.09532,199.72237,30.526499,961.1481,0.0,30.365934 +2023-06-23 22:00:00,4.8270073,6.356099,193.17256,192.72435,30.1265,960.60944,0.0,32.649048 +2023-06-23 23:00:00,3.8327534,5.0358715,187.49576,186.84268,29.526499,960.0386,0.0,33.684555 +2023-06-24 00:00:00,3.544009,5.502726,196.38962,199.09358,27.426498,960.27216,0.0,41.17347 +2023-06-24 01:00:00,2.2203605,4.6010866,172.23492,181.24533,26.026499,960.1404,0.0,48.493645 +2023-06-24 02:00:00,2.2825425,5.3758717,151.1893,161.56496,24.426498,959.7829,0.0,52.653046 +2023-06-24 03:00:00,1.8439089,4.8259716,130.60121,145.9806,24.4765,959.7915,0.0,50.819595 +2023-06-24 04:00:00,2.720294,5.8872743,107.10281,110.89784,22.8765,959.5268,0.0,56.87566 +2023-06-24 05:00:00,2.6907248,6.3780875,131.98714,131.18582,22.776499,959.7,0.0,54.67333 +2023-06-24 06:00:00,3.8948684,8.280701,131.87779,137.4471,22.426498,959.2618,0.0,54.584652 +2023-06-24 07:00:00,3.3120992,7.116881,151.11351,160.29193,21.6265,958.84314,0.0,59.0225 +2023-06-24 08:00:00,3.420526,6.964194,195.25517,195.83246,21.426498,958.71454,0.0,60.92818 +2023-06-24 09:00:00,3.383785,6.1741395,198.9705,204.90474,21.176498,958.10297,0.1,66.01073 +2023-06-24 10:00:00,4.318565,8.023092,185.31445,190.04929,20.1265,957.9259,0.5,76.55346 +2023-06-24 11:00:00,5.4332314,9.718539,173.6599,176.46051,19.7265,957.85803,0.1,80.24636 +2023-06-24 12:00:00,4.9040794,8.6977005,196.58742,199.47667,19.776499,957.4869,0.0,89.932304 +2023-06-24 13:00:00,5.502726,9.3744335,160.90642,168.92984,19.8265,956.16644,7.2,92.22025 +2023-06-24 14:00:00,7.4632435,11.903782,144.81921,148.04567,19.8265,954.6477,1.7,93.67368 +2023-06-24 15:00:00,6.47611,9.75141,166.60748,166.96133,20.3265,955.4914,0.1,91.38915 +2023-06-24 16:00:00,8.21523,11.328283,183.48926,184.0495,22.8765,955.53784,0.0,76.73843 +2023-06-24 17:00:00,8.458132,11.454256,204.44394,204.77512,24.8265,955.0986,0.1,65.10886 +2023-06-24 18:00:00,7.7201037,10.36002,216.57312,216.75937,25.8765,954.98444,0.0,59.644608 +2023-06-24 19:00:00,7.81025,10.499524,219.80553,220.36446,26.4765,954.6065,0.0,56.843662 +2023-06-24 20:00:00,6.3820057,8.487638,234.56659,235.56094,25.8265,954.2161,0.1,60.964172 +2023-06-24 21:00:00,6.0307546,8.04301,229.70793,231.56267,26.7265,953.9815,0.0,53.92239 +2023-06-24 22:00:00,5.0249376,6.726812,227.41954,228.01286,26.8765,953.6255,0.0,51.281185 +2023-06-24 23:00:00,5.4405885,7.545197,233.97253,235.25674,26.676498,953.2133,0.0,48.043983 +2023-06-25 00:00:00,2.8442926,3.945884,280.1246,278.74606,24.676498,954.029,0.0,56.76707 +2023-06-25 01:00:00,1.6763055,3.6878178,252.64589,257.4712,23.7265,954.0633,0.1,62.24639 +2023-06-25 02:00:00,1.5132746,3.2449963,187.59456,213.6901,21.676498,953.34424,0.0,71.16608 +2023-06-25 03:00:00,1.7720045,3.0,163.61038,180.0,20.2265,952.5319,0.0,77.552376 +2023-06-25 04:00:00,4.90408,8.558621,267.66275,263.29025,18.176498,953.51324,1.8,88.11528 +2023-06-25 05:00:00,2.0518284,4.68188,226.97493,250.0168,18.0765,953.022,0.0,86.15851 +2023-06-25 06:00:00,3.310589,6.198387,244.98314,252.1496,18.176498,952.7541,0.0,83.18533 +2023-06-25 07:00:00,4.4777226,7.920227,240.57263,245.37645,17.026499,951.9881,0.0,81.44893 +2023-06-25 08:00:00,4.7413077,8.246211,242.35411,247.1663,16.2265,951.2812,0.0,80.81514 +2023-06-25 09:00:00,4.9406476,8.472308,234.0578,239.50024,15.9765005,950.4793,0.0,81.5789 +2023-06-25 10:00:00,4.743417,8.1412525,235.30478,242.176,15.8765,950.08246,0.0,83.18225 +2023-06-25 11:00:00,4.197618,6.7896976,257.61926,260.67648,16.4765,950.2807,0.7,84.61648 +2023-06-25 12:00:00,5.800862,8.905055,324.11777,325.0606,15.8765,950.2722,1.8,89.35237 +2023-06-25 13:00:00,6.946222,9.848858,329.74365,330.8325,15.9765005,951.4279,0.4,88.78346 +2023-06-25 14:00:00,6.43506,9.546204,315.62952,315.42435,16.776499,952.3247,0.2,85.75168 +2023-06-25 15:00:00,8.560373,11.822859,322.59457,321.86993,20.176498,953.0931,0.0,64.52658 +2023-06-25 16:00:00,8.028075,10.948059,320.55997,320.93152,20.7265,953.8499,0.3,71.906334 +2023-06-25 17:00:00,8.823264,12.149486,324.6887,325.39426,19.776499,954.7341,1.3,79.48951 +2023-06-25 18:00:00,6.9641943,9.847842,327.90744,327.43958,18.8265,955.1426,0.6,82.731384 +2023-06-25 19:00:00,5.7489133,8.091971,319.93927,320.01315,20.176498,955.5612,0.7,82.89293 +2023-06-25 20:00:00,7.648529,10.347947,318.1799,318.91833,23.026499,955.8476,0.0,64.72555 +2023-06-25 21:00:00,7.517978,10.530908,331.38962,329.7828,21.276499,955.93585,1.2,70.8651 +2023-06-25 22:00:00,6.6573267,9.90202,327.26477,326.95187,20.8265,956.1454,0.3,77.151375 +2023-06-25 23:00:00,7.6609397,10.764757,324.0275,324.8335,22.3265,956.3962,0.2,69.71916 +2023-06-26 00:00:00,7.8492036,11.315917,325.90497,326.16946,20.8765,957.6726,0.1,70.11206 +2023-06-26 01:00:00,6.963476,10.511898,324.9405,325.85635,19.9765,957.9954,0.1,75.073524 +2023-06-26 02:00:00,6.16198,9.948869,318.28934,320.7106,19.176498,958.1444,0.0,75.91349 +2023-06-26 03:00:00,6.0307546,9.8234415,319.70792,321.61343,18.5765,958.5165,0.0,78.30532 +2023-06-26 04:00:00,5.72014,9.5692215,323.53067,325.6456,18.176498,958.63763,0.0,79.0085 +2023-06-26 05:00:00,5.4671745,9.360022,320.1945,323.25244,17.6265,958.7332,0.0,78.92933 +2023-06-26 06:00:00,5.6222773,9.521029,321.49933,323.97253,17.3265,958.9659,0.0,79.14279 +2023-06-26 07:00:00,5.661272,9.679876,324.34457,326.80243,16.8765,959.078,0.0,81.42951 +2023-06-26 08:00:00,5.7801385,9.708244,322.73352,325.4914,16.276499,959.0687,0.0,84.32005 +2023-06-26 09:00:00,5.882177,9.847842,324.6887,327.43958,15.8265,959.27496,0.0,86.213776 +2023-06-26 10:00:00,5.6859474,9.518929,325.75092,328.31366,15.5765,959.3262,0.0,86.75251 +2023-06-26 11:00:00,5.8249464,9.656604,325.4914,328.12042,15.4265,959.58466,0.0,87.59043 +2023-06-26 12:00:00,6.854196,9.916148,336.8014,338.09125,15.8265,960.0338,0.0,86.49469 +2023-06-26 13:00:00,8.20061,11.360017,344.43842,343.63882,16.426498,960.8024,0.1,85.16193 +2023-06-26 14:00:00,7.5186434,10.577333,346.14856,344.6498,17.3765,961.34674,0.1,80.18439 +2023-06-26 15:00:00,7.5026665,10.20784,358.4725,357.7543,19.176498,961.5613,0.1,72.088776 +2023-06-26 16:00:00,5.885576,7.7929454,350.21765,351.14212,20.8765,962.03986,0.0,64.88853 +2023-06-26 17:00:00,6.9720874,9.192389,351.75375,351.87,22.5765,962.61053,0.0,55.160465 +2023-06-26 18:00:00,7.400676,10.0,359.2258,360.0,23.3265,962.26086,0.0,51.68834 +2023-06-26 19:00:00,7.5239615,10.031949,4.5738406,4.5738406,24.1265,962.10864,0.0,48.29972 +2023-06-26 20:00:00,6.9584484,9.277931,7.4313188,7.4313188,24.926498,961.7653,0.0,44.99597 +2023-06-26 21:00:00,5.9008474,7.9,359.029,360.0,25.526499,961.57886,0.0,42.288406 +2023-06-26 22:00:00,5.5326304,7.542546,353.77426,353.91156,25.6265,961.4053,0.0,41.07727 +2023-06-26 23:00:00,5.0249376,6.9354167,354.2895,354.2073,25.4765,961.09564,0.0,41.30787 +2023-06-27 00:00:00,3.4132097,5.3037724,354.95764,357.83896,24.426498,962.2529,0.0,47.594673 +2023-06-27 01:00:00,1.4035668,3.535534,4.085537,8.130019,22.676498,962.05756,0.0,64.65037 +2023-06-27 02:00:00,2.5495098,3.3136082,334.44006,354.80566,19.526499,961.526,0.0,75.96973 +2023-06-27 03:00:00,2.5612497,4.414748,321.34018,346.90808,18.6265,961.752,0.0,72.45856 +2023-06-27 04:00:00,2.1260293,4.68188,311.18582,340.0168,18.426498,962.0023,0.0,65.42603 +2023-06-27 05:00:00,2.1633308,4.9396353,303.6901,328.24057,17.026499,961.8552,0.0,68.9075 +2023-06-27 06:00:00,2.4758837,5.1478148,313.36346,335.9245,16.426498,962.1306,0.0,69.94022 +2023-06-27 07:00:00,2.5455844,4.88467,315.0001,337.1094,15.9765005,961.95715,0.0,71.49867 +2023-06-27 08:00:00,2.624881,4.2059484,310.36444,341.99573,15.2765,961.64484,0.0,74.52763 +2023-06-27 09:00:00,2.5,3.2202485,286.26028,334.2307,14.8265,961.376,0.0,76.71584 +2023-06-27 10:00:00,1.7117243,2.9410884,263.29025,305.31128,15.3765,961.75726,0.0,73.560005 +2023-06-27 11:00:00,2.184033,2.4207437,254.05453,308.2902,14.3765,961.5811,0.0,81.370766 +2023-06-27 12:00:00,1.4764823,3.1384711,298.30066,337.5205,17.926498,962.5804,0.0,70.69282 +2023-06-27 13:00:00,0.94868326,1.7720045,288.43503,343.61038,20.5765,963.0337,0.0,65.034676 +2023-06-27 14:00:00,0.2,0.22360681,270.0,333.43503,22.276499,963.41504,0.0,59.562458 +2023-06-27 15:00:00,0.9055385,1.118034,173.6599,169.6952,23.7265,963.4671,0.0,55.091 +2023-06-27 16:00:00,2.4738634,3.0805843,165.96373,166.86597,24.9765,963.10376,0.0,47.587513 +2023-06-27 17:00:00,3.3015149,4.101219,178.26433,178.60284,25.4765,962.901,0.0,44.705402 +2023-06-27 18:00:00,3.7013512,4.7010636,181.54813,181.21884,26.0765,962.33386,0.0,41.61216 +2023-06-27 19:00:00,4.4045434,5.7035074,177.39749,177.9905,26.8765,961.98895,0.0,39.694626 +2023-06-27 20:00:00,4.7169905,6.1204576,175.13557,175.3142,27.276499,961.57855,0.0,39.806404 +2023-06-27 21:00:00,5.001,6.500769,181.14574,180.88138,27.3765,961.02466,0.0,40.757988 +2023-06-27 22:00:00,5.315073,7.1175838,184.31595,184.02818,27.276499,960.438,0.0,40.59705 +2023-06-27 23:00:00,5.323533,7.125307,174.61078,175.16966,26.926498,959.4311,0.0,41.439713 +2023-06-28 00:00:00,3.5468295,5.2810984,158.4985,161.22188,25.176498,960.3812,0.0,50.67413 +2023-06-28 01:00:00,2.84605,5.3851643,161.56496,164.93146,24.5765,960.5679,0.0,53.723095 +2023-06-28 02:00:00,3.6891732,7.111259,147.17146,154.15567,23.4765,959.6263,0.0,56.108387 +2023-06-28 03:00:00,4.924429,8.709191,156.0375,158.44286,22.8265,959.5182,0.0,56.679054 +2023-06-28 04:00:00,5.8694124,10.373042,156.92957,160.86626,22.276499,959.1416,0.0,58.03561 +2023-06-28 05:00:00,5.8821764,10.440307,162.18102,163.30067,22.3265,958.96027,0.0,56.00492 +2023-06-28 06:00:00,6.419502,10.855874,175.53293,174.18446,22.276499,959.2366,0.0,56.35917 +2023-06-28 07:00:00,5.283938,9.219544,150.5242,155.65892,21.526499,958.2567,0.0,57.101135 +2023-06-28 08:00:00,5.6320515,9.920181,163.49556,165.40338,20.2265,958.2278,0.0,64.74807 +2023-06-28 09:00:00,6.166036,10.507616,171.60716,171.79288,19.9765,958.0903,0.0,68.15098 +2023-06-28 10:00:00,7.116881,11.580155,160.29193,163.44286,20.026499,957.3395,0.0,65.76785 +2023-06-28 11:00:00,1.5264337,3.5510561,238.39255,189.72751,18.3765,959.24133,4.2,81.099434 +2023-06-28 12:00:00,6.7007456,10.900458,179.14493,179.47438,19.4765,957.72076,2.4,77.438774 +2023-06-28 13:00:00,5.5785303,8.884255,165.4655,168.31065,20.9765,957.5946,0.0,74.52279 +2023-06-28 14:00:00,5.6320515,7.884795,163.49556,164.55362,22.676498,957.7838,0.0,70.22987 +2023-06-28 15:00:00,6.8066144,9.200543,177.47394,179.37726,23.8765,957.8877,0.0,68.705475 +2023-06-28 16:00:00,7.138627,9.512624,191.30989,192.13681,25.276499,957.2622,0.0,64.39027 +2023-06-28 17:00:00,6.9778223,9.303762,205.4633,205.4633,27.0765,957.0793,0.1,59.177227 +2023-06-28 18:00:00,6.0141497,7.9208584,227.02136,226.02293,27.9765,957.0338,0.1,57.74413 +2023-06-28 19:00:00,5.186521,6.963476,213.9965,215.05951,25.926498,956.98816,1.2,70.61643 +2023-06-28 20:00:00,5.020956,6.652819,225.80684,227.43669,27.276499,956.54114,0.2,65.419266 +2023-06-28 21:00:00,4.90408,6.4513564,249.71735,251.00325,28.776499,956.21124,0.1,56.687542 +2023-06-28 22:00:00,4.6872168,6.1188235,258.92984,258.6901,29.176498,955.8945,0.0,50.90467 +2023-06-28 23:00:00,4.295346,5.707013,257.90524,258.887,29.026499,955.9657,0.0,51.026268 +2023-06-29 00:00:00,2.2472203,2.9410882,290.85452,287.81897,28.0765,957.24005,0.0,50.299873 +2023-06-29 01:00:00,1.5264337,3.224903,301.60745,299.74478,26.776499,957.411,0.0,61.179886 +2023-06-29 02:00:00,2.3345237,5.2801514,316.73566,322.69595,24.176498,957.557,0.0,68.54834 +2023-06-29 03:00:00,2.7784889,6.2169123,329.74365,334.25934,22.7265,958.26697,0.0,69.134865 +2023-06-29 04:00:00,2.059126,5.2810984,330.9455,341.22186,21.1265,958.5692,0.0,77.44208 +2023-06-29 05:00:00,1.9209373,5.1,321.34018,331.9276,19.9765,958.18524,0.0,82.869125 +2023-06-29 06:00:00,1.9849433,5.2801514,310.91428,322.69595,19.3265,958.6445,0.0,86.0082 +2023-06-29 07:00:00,2.5806975,4.3382025,324.46225,334.02567,18.1265,958.6292,0.0,91.24964 +2023-06-29 08:00:00,1.0770329,2.1954498,248.19853,329.9315,19.8265,958.91925,0.0,81.80601 +2023-06-29 09:00:00,1.2165525,2.236068,260.53775,333.43503,18.926498,958.5761,0.0,85.15198 +2023-06-29 10:00:00,0.6708204,1.7720045,243.43501,343.61038,19.676498,959.1785,0.0,81.78715 +2023-06-29 11:00:00,0.92195445,1.8,282.5288,360.0,19.426498,959.70544,0.0,82.54038 +2023-06-29 12:00:00,1.6,2.6925824,90.0,58.671368,19.426498,959.99023,0.0,86.01813 +2023-06-29 13:00:00,1.5264337,2.2825425,148.39255,118.8107,21.2265,961.0548,0.0,79.69083 +2023-06-29 14:00:00,2.184033,2.8160257,164.05453,163.49556,22.6265,961.2896,0.0,74.09433 +2023-06-29 15:00:00,1.2369317,1.5524175,194.03627,194.93147,24.426498,961.49286,0.0,67.317 +2023-06-29 16:00:00,1.3453624,1.6401219,228.01286,232.43134,25.776499,961.5247,0.0,63.09785 +2023-06-29 17:00:00,1.118034,1.4142135,259.69522,261.87,27.4765,961.421,0.0,54.625515 +2023-06-29 18:00:00,2.2847319,2.8231187,293.1986,292.93213,28.926498,961.46405,0.0,45.354416 +2023-06-29 19:00:00,3.8275318,4.8548946,303.2749,302.38065,27.776499,961.75446,0.4,49.74452 +2023-06-29 20:00:00,2.84605,3.5735137,288.43503,287.928,28.3265,961.6529,0.0,49.10313 +2023-06-29 21:00:00,3.4132097,4.318565,264.95764,264.68555,28.8765,961.55096,0.0,48.167797 +2023-06-29 22:00:00,4.110961,5.315073,274.18484,274.31595,27.6265,961.54004,0.1,52.629974 +2023-06-29 23:00:00,3.522783,4.6389656,263.4803,262.5687,27.8265,961.1924,0.0,52.68086 +2023-06-30 00:00:00,1.5524175,1.9104973,255.06853,263.9911,27.3265,961.3966,0.0,52.720455 +2023-06-30 01:00:00,0.7615773,0.82462114,293.1986,284.03625,25.776499,961.4297,0.0,79.08963 +2023-06-30 02:00:00,2.1213202,2.3086793,351.87,355.03033,23.026499,961.0713,0.0,76.04468 +2023-06-30 03:00:00,1.746425,3.1256998,336.3706,352.6477,22.3765,961.5325,0.0,75.70325 +2023-06-30 04:00:00,1.7691805,3.231099,317.29062,338.19852,21.426498,961.753,0.0,78.71994 +2023-06-30 05:00:00,2.1400933,3.3615472,307.40543,337.249,20.5765,961.79944,0.0,81.641685 +2023-06-30 06:00:00,2.302173,2.6683328,304.3804,347.00537,20.026499,961.70605,0.0,83.930725 +2023-06-30 07:00:00,2.1400933,3.1622777,307.40543,341.56494,19.8265,961.57715,0.0,83.908195 +2023-06-30 08:00:00,2.6832817,5.8821764,333.43503,342.18103,20.176498,961.4469,0.0,81.33282 +2023-06-30 09:00:00,3.306055,7.025667,356.53183,4.8990126,19.1265,961.6476,0.0,84.63317 +2023-06-30 10:00:00,2.5179358,4.2059484,6.842679,18.00426,17.426498,962.01953,0.0,86.64921 +2023-06-30 11:00:00,2.5,4.215448,16.26028,22.306253,16.9765,962.22614,0.0,85.22 +2023-06-30 12:00:00,1.9723083,3.8418746,59.53454,51.34017,19.7265,963.2686,0.0,77.725 +2023-06-30 13:00:00,1.2529964,2.9154758,61.389645,59.03632,21.4765,963.5655,0.0,69.77854 +2023-06-30 14:00:00,1.3416408,1.746425,63.435013,66.37061,23.3765,963.6938,0.0,60.7894 +2023-06-30 15:00:00,0.781025,0.92195445,50.194473,49.398785,24.8265,964.12415,0.0,50.418316 +2023-06-30 16:00:00,1.118034,1.3152945,10.304792,8.746089,25.3265,963.8265,0.0,44.517796 +2023-06-30 17:00:00,0.5,0.6,360.0,360.0,26.0765,963.85425,0.0,41.88694 +2023-06-30 18:00:00,0.9433981,1.1661904,302.00534,300.96368,25.3265,963.5414,0.0,43.64844 +2023-06-30 19:00:00,1.746425,2.1931713,293.6294,294.22772,26.2265,963.3088,0.0,42.06663 +2023-06-30 20:00:00,2.3600848,3.0,306.38446,306.86996,26.3765,962.763,0.0,43.226254 +2023-06-30 21:00:00,2.8301945,3.522783,302.00534,304.59235,27.5765,962.57764,0.0,42.02859 +2023-06-30 22:00:00,2.4839485,3.1827662,310.10083,313.72705,27.526499,962.09424,0.0,42.703465 +2023-06-30 23:00:00,2.7658632,3.5608988,319.39877,321.8427,27.3765,961.59503,0.0,42.66207 +2023-07-01 00:00:00,1.5,1.8867962,323.13004,327.99466,24.8265,962.50903,0.0,53.09755 +2023-07-01 01:00:00,0.6708204,1.8027756,296.56497,303.6901,24.1265,962.48865,0.0,64.960464 +2023-07-01 02:00:00,1.7117243,2.2472205,276.70975,302.27563,21.9765,962.6051,0.0,73.98427 +2023-07-01 03:00:00,1.9209373,2.8653097,308.65982,330.75128,20.5765,962.46405,0.0,78.34833 +2023-07-01 04:00:00,2.1377556,3.324154,349.21573,353.08887,19.8265,962.3365,0.0,78.99111 +2023-07-01 05:00:00,2.5,3.4176016,323.13,339.44388,18.8265,962.54535,0.0,81.67962 +2023-07-01 06:00:00,2.4596748,3.206244,333.43503,356.42374,18.5765,962.50244,0.0,83.4991 +2023-07-01 07:00:00,2.2825425,2.9,331.1893,360.0,18.176498,962.33856,0.0,86.16839 +2023-07-01 08:00:00,1.8027756,3.3136082,340.55988,5.19435,18.1265,962.1403,0.0,86.99343 +2023-07-01 09:00:00,1.6278821,3.420526,312.5104,344.7448,17.526499,962.0368,0.0,90.34182 +2023-07-01 10:00:00,1.8027756,4.1593266,326.3099,350.31128,17.426498,961.73486,0.0,91.49615 +2023-07-01 11:00:00,1.9416487,4.8093657,348.11136,3.5762644,17.3265,961.62256,0.0,92.07589 +2023-07-01 12:00:00,2.5179358,4.876474,353.15732,15.461285,18.8265,961.881,0.0,88.17079 +2023-07-01 13:00:00,2.1023796,4.68188,2.7262611,19.983198,20.3765,961.86035,0.0,82.13434 +2023-07-01 14:00:00,3.104835,4.3011627,14.931467,17.592522,22.3265,962.1891,0.0,69.9411 +2023-07-01 15:00:00,3.2280025,4.2059484,16.189287,18.00426,23.5765,962.3023,0.0,63.213135 +2023-07-01 16:00:00,3.0083218,3.733631,21.44781,20.37652,25.176498,962.85156,0.0,51.333805 +2023-07-01 17:00:00,3.0463092,3.7161808,23.198618,23.805958,25.926498,962.40454,0.0,47.226437 +2023-07-01 18:00:00,2.7730849,3.443835,25.640957,25.820946,26.6265,962.2336,0.0,44.294445 +2023-07-01 19:00:00,2.5079873,3.1780498,23.498587,24.145542,26.6265,961.85345,0.0,42.73327 +2023-07-01 20:00:00,2.5632012,3.1622777,20.556128,18.435053,26.9765,961.24506,0.0,42.27469 +2023-07-01 21:00:00,2.657066,3.2893767,19.798973,19.536749,27.6265,960.8747,0.0,39.904037 +2023-07-01 22:00:00,2.7294688,3.4525354,8.426887,10.007925,27.6265,960.3995,0.0,37.86202 +2023-07-01 23:00:00,2.7658634,3.5510561,347.4712,350.2725,27.426498,959.987,0.0,38.181732 +2023-07-02 00:00:00,2.2847319,4.204759,23.198618,25.346138,25.4765,960.14545,0.0,47.567238 +2023-07-02 01:00:00,2.0223749,4.428318,8.530692,6.482988,24.426498,960.1629,0.0,49.661297 +2023-07-02 02:00:00,2.745906,4.110961,326.88864,341.56494,21.7265,959.7145,0.0,54.22796 +2023-07-02 03:00:00,2.6172504,4.1761227,313.4519,343.3007,20.676498,959.9175,0.0,48.653816 +2023-07-02 04:00:00,2.6832817,4.031129,296.56497,336.61475,19.1265,959.5595,0.0,52.13571 +2023-07-02 05:00:00,2.3345234,3.535534,279.86575,331.26028,18.176498,959.4917,0.0,57.02815 +2023-07-02 06:00:00,2.6000001,3.939543,292.6199,336.0375,17.926498,959.63873,0.0,57.15767 +2023-07-02 07:00:00,2.408319,5.1078367,311.63345,336.94867,17.9765,959.36255,0.0,52.7186 +2023-07-02 08:00:00,2.2472205,5.8872743,327.72437,339.10217,17.8265,959.14703,0.0,53.0381 +2023-07-02 09:00:00,2.4166093,5.3366656,335.55606,347.00537,16.676498,958.6639,0.0,61.029198 +2023-07-02 10:00:00,2.4041631,4.5122056,315.0001,347.19574,16.276499,958.6893,0.0,65.83603 +2023-07-02 11:00:00,2.059126,4.2953463,299.0545,335.22488,16.926498,958.8967,0.0,65.75589 +2023-07-02 12:00:00,1.9235384,3.51141,297.8972,340.0168,18.926498,959.6201,0.0,65.96505 +2023-07-02 13:00:00,1.7,2.5632012,298.0724,339.44388,21.426498,960.0438,0.0,60.7303 +2023-07-02 14:00:00,1.3892444,1.8384775,300.25635,315.0001,24.026499,960.76196,0.0,53.582973 +2023-07-02 15:00:00,1.3453624,1.6970563,311.98712,315.0001,25.8265,961.0578,0.0,43.643276 +2023-07-02 16:00:00,1.029563,1.2529964,299.0545,298.61035,26.8765,961.22864,0.0,38.917355 +2023-07-02 17:00:00,1.3928387,1.6763055,291.03757,287.3541,27.7265,961.2713,0.0,37.14835 +2023-07-02 18:00:00,1.868154,2.280351,285.52417,285.25516,28.3765,961.2809,0.0,35.88541 +2023-07-02 19:00:00,2.109502,2.5079873,275.44025,274.57382,28.9765,960.9016,0.0,35.001976 +2023-07-02 20:00:00,2.5,3.0,270.0,270.0,29.3765,960.49,0.0,35.46092 +2023-07-02 21:00:00,2.408319,2.9068885,265.23645,266.0549,29.5765,959.8563,0.0,36.3389 +2023-07-02 22:00:00,2.2,2.7018514,270.0,272.12103,29.5765,959.3809,0.0,37.056984 +2023-07-02 23:00:00,2.2203605,2.8160255,277.76508,276.11542,29.526499,959.373,0.0,37.650993 +2023-07-03 00:00:00,1.1401755,1.5297059,254.74483,258.6901,28.6265,960.0851,0.0,40.312843 +2023-07-03 01:00:00,0.28284273,0.7211103,135.0001,213.6901,27.526499,959.813,0.0,57.817665 +2023-07-03 02:00:00,1.7888545,2.745906,153.43501,169.50858,24.5765,958.9529,0.0,61.06493 +2023-07-03 03:00:00,1.9235383,4.2720017,188.97255,196.31393,23.6265,959.27124,0.0,61.63051 +2023-07-03 04:00:00,2.624881,5.994164,197.74477,207.84749,23.0765,959.5598,0.0,61.901287 +2023-07-03 05:00:00,3.1575305,6.741662,190.95403,200.85454,22.426498,959.5467,0.0,62.756123 +2023-07-03 06:00:00,3.9849718,8.170679,197.52567,201.54105,22.276499,959.61646,0.0,60.5346 +2023-07-03 07:00:00,3.956008,8.228001,196.14441,200.63763,21.9765,959.47144,0.0,61.253395 +2023-07-03 08:00:00,4.3863425,8.9,204.22774,205.98918,21.676498,959.6112,0.0,62.588028 +2023-07-03 09:00:00,4.651881,9.082401,205.4633,208.25793,21.4765,959.67255,0.0,60.544643 +2023-07-03 10:00:00,4.606517,8.905055,207.12122,214.93938,21.0765,959.51013,0.0,60.057716 +2023-07-03 11:00:00,4.5793014,8.927485,211.60745,221.36694,20.8265,959.7532,0.0,63.83346 +2023-07-03 12:00:00,5.5973206,9.687621,221.37842,224.58183,22.9765,959.73303,0.0,66.17528 +2023-07-03 13:00:00,4.8010416,9.758074,215.6765,224.9999,24.426498,960.3529,0.0,65.229744 +2023-07-03 14:00:00,5.1739736,7.1589108,228.91835,228.96475,25.926498,960.6941,0.0,60.413483 +2023-07-03 15:00:00,5.1224995,6.8410525,231.34016,232.12495,27.2265,960.6202,0.0,57.02506 +2023-07-03 16:00:00,4.3462625,5.515433,246.97447,247.61981,28.526499,960.9246,0.0,54.37277 +2023-07-03 17:00:00,3.8600519,4.9040794,253.44284,253.41258,29.776499,961.02924,0.0,51.37958 +2023-07-03 18:00:00,3.622154,4.527693,263.6599,263.6599,30.7265,960.7045,0.0,49.7303 +2023-07-03 19:00:00,4.204759,5.223983,272.72626,275.49222,30.7265,960.8947,0.0,43.441154 +2023-07-03 20:00:00,1.0198039,1.3341664,281.3099,282.99463,29.3265,960.67224,0.0,46.63343 +2023-07-03 21:00:00,2.2825425,2.745906,208.8107,213.11136,29.426498,960.9734,0.0,47.405293 +2023-07-03 22:00:00,3.939543,5.0695167,203.9625,202.01134,27.176498,960.612,0.0,57.37259 +2023-07-03 23:00:00,2.9832866,3.9698865,219.55963,220.91429,27.776499,960.51874,0.0,55.045383 +2023-07-04 00:00:00,2.942788,3.945884,350.21765,351.2539,28.676498,960.9486,0.0,45.431908 +2023-07-04 01:00:00,1.9026297,3.901282,3.0127327,1.4687687,27.276499,961.10333,0.0,53.88983 +2023-07-04 02:00:00,2.0,4.0199504,360.0,5.7105074,24.4765,960.55145,0.0,64.218346 +2023-07-04 03:00:00,2.8071337,5.9,355.91446,360.0,23.776499,961.1006,0.0,64.47534 +2023-07-04 04:00:00,3.1,7.202777,360.0,1.5911111,23.3765,961.7941,0.0,62.16773 +2023-07-04 05:00:00,3.0413814,6.963476,9.462261,12.439554,22.5765,961.75586,0.0,61.589188 +2023-07-04 06:00:00,2.3086793,5.8523498,4.969664,16.88688,21.276499,961.63275,0.0,58.172493 +2023-07-04 07:00:00,2.408319,3.9446166,4.763556,30.465475,20.276499,961.36896,0.0,59.868736 +2023-07-04 08:00:00,2.3345237,3.4999998,43.26433,53.13002,20.6265,961.23834,0.0,55.947647 +2023-07-04 09:00:00,1.603122,2.5317976,93.57626,80.909805,22.176498,961.30914,0.0,47.29682 +2023-07-04 10:00:00,1.9849433,4.6861496,130.91429,129.80553,19.8765,960.16174,0.0,56.692696 +2023-07-04 11:00:00,2.6832817,6.003332,153.43501,150.01845,19.6265,960.59375,0.0,60.11004 +2023-07-04 12:00:00,3.1953092,5.830952,159.86362,174.09395,21.276499,961.0631,0.0,75.04824 +2023-07-04 13:00:00,2.408319,4.90408,228.36655,219.20718,22.776499,962.07434,0.0,73.65473 +2023-07-04 14:00:00,2.5612497,3.3600597,231.34016,233.47105,23.6265,962.5008,0.0,70.187416 +2023-07-04 15:00:00,2.8231187,3.6674242,202.93213,205.8663,23.1265,961.84753,0.5,73.94621 +2023-07-04 16:00:00,3.5014284,4.609772,181.63654,183.73132,24.0765,961.7202,0.1,72.73259 +2023-07-04 17:00:00,4.101219,5.408327,181.39716,183.17976,25.776499,961.0496,0.0,66.12966 +2023-07-04 18:00:00,3.8832974,5.141984,191.88864,193.49574,27.176498,960.612,0.0,60.889324 +2023-07-04 19:00:00,3.2280025,4.1761227,196.18927,196.69933,27.7265,960.3208,0.0,59.513954 +2023-07-04 20:00:00,3.905125,4.967897,230.19447,229.89915,28.3265,960.227,0.0,57.46821 +2023-07-04 21:00:00,6.6730804,9.213577,240.36171,244.26935,23.776499,961.1956,3.4,76.16267 +2023-07-04 22:00:00,3.4058774,4.909175,266.6336,266.49652,23.026499,960.31146,0.3,81.44086 +2023-07-04 23:00:00,3.2649658,4.294182,297.3498,297.75842,24.2265,960.03516,0.0,76.70709 +2023-07-05 00:00:00,3.5805027,4.8010416,305.9098,305.67648,22.026499,962.2337,0.0,78.31242 +2023-07-05 01:00:00,3.9623227,5.448853,312.9546,312.7688,20.5765,962.36914,0.0,84.257164 +2023-07-05 02:00:00,4.2801867,6.6843095,307.40543,308.92755,19.8265,963.001,0.0,86.60258 +2023-07-05 03:00:00,2.8301945,5.1,327.99466,331.9276,19.676498,963.44995,0.0,88.2428 +2023-07-05 04:00:00,3.0805843,5.5470715,324.24603,332.04913,19.426498,963.7869,0.0,89.06072 +2023-07-05 05:00:00,4.482187,7.4886575,321.34018,325.8855,19.0765,963.8221,1.3,89.31494 +2023-07-05 06:00:00,4.3416586,7.4686007,331.07367,333.7781,18.526499,964.29694,0.0,88.70721 +2023-07-05 07:00:00,4.3829217,7.762087,332.8504,338.06146,17.9765,964.1071,0.0,88.662186 +2023-07-05 08:00:00,3.5846896,6.8949256,337.01126,340.5138,17.5765,964.4175,0.0,89.19811 +2023-07-05 09:00:00,5.283938,9.078547,330.5242,333.15277,17.026499,964.7015,0.0,88.58386 +2023-07-05 10:00:00,5.8600345,9.861542,334.7469,337.33542,16.426498,964.88165,0.0,80.31567 +2023-07-05 11:00:00,5.9093146,9.916148,336.0375,338.09125,15.5765,965.3966,0.0,74.08565 +2023-07-05 12:00:00,5.1078367,8.300602,336.94867,338.07034,16.1265,966.1573,0.0,69.64942 +2023-07-05 13:00:00,5.9135437,8.316851,341.25854,341.7828,16.8265,966.27954,0.0,66.17415 +2023-07-05 14:00:00,5.7584724,7.7491937,339.6768,340.3958,17.676498,966.42755,0.0,62.503086 +2023-07-05 15:00:00,5.8309517,7.725283,337.8336,338.74942,18.4765,966.75586,0.0,58.260742 +2023-07-05 16:00:00,5.818075,7.6059184,331.23245,331.75034,19.0765,967.23883,0.0,56.304554 +2023-07-05 17:00:00,5.3,6.741661,328.10925,327.72437,19.8765,967.376,0.0,54.11246 +2023-07-05 18:00:00,5.4405885,6.940461,323.97253,323.79044,20.8265,967.1585,0.0,49.683502 +2023-07-05 19:00:00,5.5317264,7.2346387,319.39877,319.48468,20.2265,967.1512,0.0,49.189648 +2023-07-05 20:00:00,5.6400356,7.2801104,322.92685,322.81522,20.9765,966.994,0.0,46.65258 +2023-07-05 21:00:00,6.0,7.8600254,323.13004,323.27582,22.026499,966.12714,0.0,41.305862 +2023-07-05 22:00:00,6.2128897,8.237719,326.82147,326.88864,21.3765,966.2073,0.0,42.979813 +2023-07-05 23:00:00,6.664833,8.900562,332.2816,332.57135,20.9765,965.94965,0.0,43.74992 +2023-07-06 00:00:00,5.727128,7.6967525,335.22488,335.43283,18.4765,967.0405,0.0,52.139866 +2023-07-06 01:00:00,5.5036354,7.6967525,335.2976,335.43283,17.5765,967.3589,0.0,53.51539 +2023-07-06 02:00:00,3.8910153,6.1741395,334.09354,335.09525,17.1265,967.6601,0.0,54.130226 +2023-07-06 03:00:00,2.8017852,5.5569777,325.17545,329.74365,16.026499,968.037,0.0,58.247787 +2023-07-06 04:00:00,2.5,5.500909,323.13,332.9692,15.0765,968.15393,0.0,62.325207 +2023-07-06 05:00:00,2.0518284,5.011986,316.9749,331.38962,14.9265,968.22217,0.0,63.574425 +2023-07-06 06:00:00,2.0518284,5.060632,313.0251,330.39563,13.8265,968.216,0.0,68.02829 +2023-07-06 07:00:00,1.9209373,4.614109,308.65982,330.1012,13.0265,967.6938,0.0,71.42337 +2023-07-06 08:00:00,2.1954498,5.1662364,300.06848,317.35333,12.5765,967.518,0.0,73.55803 +2023-07-06 09:00:00,1.7888545,4.080441,296.56497,323.97253,11.7265005,966.98553,0.0,77.523834 +2023-07-06 10:00:00,1.8384776,3.6400552,292.3802,322.81522,11.3265,966.8182,0.0,79.061165 +2023-07-06 11:00:00,1.6492423,3.6069376,284.03625,316.1232,11.1765,967.0754,0.0,80.66961 +2023-07-06 12:00:00,2.4839485,4.204759,319.89914,334.65387,12.2765,967.74835,0.0,79.20023 +2023-07-06 13:00:00,1.5811387,3.0870697,325.30478,335.09525,14.2765,968.5809,0.0,72.14284 +2023-07-06 14:00:00,2.0248456,2.624881,339.77505,342.25522,16.026499,968.8907,0.0,62.544365 +2023-07-06 15:00:00,2.4166093,2.9546573,335.55606,336.0375,17.3265,968.73865,0.0,55.110023 +2023-07-06 16:00:00,3.2649655,4.110961,319.9698,318.94528,18.6265,968.68,0.0,47.92937 +2023-07-06 17:00:00,3.4713109,4.3931766,311.49637,311.30853,19.3265,968.4207,0.0,43.58294 +2023-07-06 18:00:00,3.4999998,4.360046,306.86996,306.60718,20.176498,967.9971,0.0,40.920376 +2023-07-06 19:00:00,3.1064448,3.7735925,303.17853,302.00534,21.2265,967.41626,0.0,38.62287 +2023-07-06 20:00:00,2.8653097,3.6715121,299.24872,299.35767,21.7265,966.8361,0.0,39.299946 +2023-07-06 21:00:00,2.7202942,3.4409301,306.02747,305.53775,22.026499,966.12714,0.0,38.71898 +2023-07-06 22:00:00,2.4413111,3.0,325.0079,323.13004,22.176498,965.6775,0.0,38.105305 +2023-07-06 23:00:00,2.529822,3.1953092,341.56494,339.8636,21.9765,965.169,0.0,38.704704 +2023-07-07 00:00:00,2.4738634,3.0594118,14.036275,11.3098955,20.426498,965.6662,0.0,42.275738 +2023-07-07 01:00:00,0.6708204,1.2083046,26.564985,24.443953,19.7265,965.45184,0.0,51.078945 +2023-07-07 02:00:00,0.1,0.1,180.0,360.0,19.3765,965.10724,0.0,45.117413 +2023-07-07 03:00:00,0.6324555,0.64031243,198.43504,231.34016,18.426498,965.4187,0.0,48.367798 +2023-07-07 04:00:00,1.603122,1.1,176.42374,180.0,14.6765,964.7636,0.0,67.51563 +2023-07-07 05:00:00,1.8439089,2.9410882,167.4712,162.18102,14.6265,964.5651,0.0,65.035965 +2023-07-07 06:00:00,2.3537204,4.368066,167.73524,164.05453,14.7265005,964.3931,0.0,61.610146 +2023-07-07 07:00:00,2.7166157,5.3600373,173.6599,171.41646,14.3765,964.2364,0.0,62.803246 +2023-07-07 08:00:00,3.0016663,6.312686,178.0909,176.36713,13.8765,964.1479,0.0,65.76206 +2023-07-07 09:00:00,3.0016663,6.8007355,181.9091,179.1575,13.6765,963.82776,0.0,66.395004 +2023-07-07 10:00:00,3.0016663,6.5069194,178.0909,182.64249,13.5265,963.3268,0.0,68.89784 +2023-07-07 11:00:00,2.7018514,5.7428217,182.12105,187.00117,12.9765005,963.22894,0.0,76.16168 +2023-07-07 12:00:00,3.5735137,6.735726,162.07199,161.83395,14.3765,962.6242,0.0,74.872475 +2023-07-07 13:00:00,3.2695565,6.2361846,156.57129,164.18074,16.3765,963.4498,0.0,71.81084 +2023-07-07 14:00:00,3.2280025,7.8262377,163.81073,169.6952,17.3265,963.5202,0.0,68.51291 +2023-07-07 15:00:00,3.4785054,5.0,161.56496,163.73972,18.8765,963.7876,0.0,63.820168 +2023-07-07 16:00:00,3.8600519,5.1923018,163.44286,164.3577,19.8765,963.4841,0.0,60.966694 +2023-07-07 17:00:00,4.2296567,5.632051,173.21112,173.8846,19.9765,963.4062,0.0,60.192715 +2023-07-07 18:00:00,4.004997,5.3037724,177.13765,177.83897,19.3765,963.114,0.2,63.93087 +2023-07-07 19:00:00,3.6124783,4.609772,184.76355,183.73132,19.9765,962.6467,0.7,65.11737 +2023-07-07 20:00:00,3.275668,4.0792155,192.33908,191.30989,19.3765,962.4496,0.5,68.25205 +2023-07-07 21:00:00,3.7161808,4.8332186,203.80595,204.44394,18.426498,962.19214,0.8,74.57334 +2023-07-07 22:00:00,3.8600519,5.0,196.55714,196.26028,17.926498,961.53656,0.2,75.46527 +2023-07-07 23:00:00,2.9154758,3.9560082,202.1664,200.72563,17.3265,961.33795,0.0,77.61273 +2023-07-08 00:00:00,1.3341664,1.6763055,192.99461,197.35411,16.6265,963.3986,0.0,64.1711 +2023-07-08 01:00:00,1.0049876,1.3152945,185.7105,188.74608,16.2265,963.0442,0.0,61.336094 +2023-07-08 02:00:00,1.3152945,1.3038404,171.25392,175.60138,14.4265,962.7279,0.0,71.68715 +2023-07-08 03:00:00,1.3892444,1.3453624,210.25635,221.98714,13.2265005,963.0838,0.0,74.676125 +2023-07-08 04:00:00,1.9235384,2.570992,242.10283,256.50424,12.2265005,962.8101,0.0,78.659355 +2023-07-08 05:00:00,1.3453624,2.657066,228.01286,250.20103,13.3765,962.8263,0.0,73.949486 +2023-07-08 06:00:00,1.6124516,2.6683328,240.2552,257.00537,12.0765,962.4042,0.0,80.79252 +2023-07-08 07:00:00,2.376973,3.8639357,247.75093,259.56256,12.2765,962.0607,0.0,78.66681 +2023-07-08 08:00:00,2.8160257,5.7035074,253.49556,267.99048,12.3765,962.2682,0.0,75.03782 +2023-07-08 09:00:00,3.206244,7.0405965,266.42374,281.46948,12.7265005,962.33093,0.0,74.59009 +2023-07-08 10:00:00,3.577709,7.7201037,296.56497,306.57312,13.1265,962.68695,0.0,80.39435 +2023-07-08 11:00:00,3.8183768,7.6216793,315.0001,321.9272,13.3265,963.10175,0.0,87.10996 +2023-07-08 12:00:00,4.6957426,7.093659,333.43503,338.4985,14.4765005,963.77985,0.0,91.30843 +2023-07-08 13:00:00,4.4944406,5.8523498,339.14545,340.0168,15.5265,964.1547,0.0,88.45853 +2023-07-08 14:00:00,4.1785164,5.4424257,338.9624,339.56708,16.9765,964.40826,0.0,78.83519 +2023-07-08 15:00:00,3.9357338,5.0089917,332.78397,333.94656,18.3265,964.642,0.0,70.07759 +2023-07-08 16:00:00,4.6238513,5.8872743,338.42862,339.10217,19.776499,964.701,0.0,57.615578 +2023-07-08 17:00:00,4.6173587,5.9481087,342.34976,343.39294,20.8265,964.4052,0.0,48.858166 +2023-07-08 18:00:00,4.049691,5.0921507,339.77505,340.49747,21.5765,964.05707,0.0,45.730453 +2023-07-08 19:00:00,3.8013155,4.7853947,333.43503,333.97046,22.1265,963.6749,0.0,44.22048 +2023-07-08 20:00:00,3.8948684,4.8764744,330.8026,331.8585,22.5765,963.2753,0.0,43.026657 +2023-07-08 21:00:00,4.294182,5.4120235,332.24155,332.48807,22.776499,962.8341,0.0,42.08096 +2023-07-08 22:00:00,4.248529,5.3665633,333.43503,333.43503,22.8265,962.4624,0.0,39.882225 +2023-07-08 23:00:00,4.1231055,5.3310413,337.1663,336.8014,22.426498,961.9209,0.0,38.700954 +2023-07-09 00:00:00,4.472136,5.903389,333.43503,333.86905,20.7265,962.5843,0.0,42.216408 +2023-07-09 01:00:00,2.9154758,5.1,329.03632,331.9276,19.7265,962.6991,0.0,47.26035 +2023-07-09 02:00:00,2.418677,3.2202482,299.74478,323.8417,16.7265,962.3724,0.0,62.91554 +2023-07-09 03:00:00,2.0615528,2.4596748,255.96373,296.56497,15.4765005,962.53345,0.0,64.7837 +2023-07-09 04:00:00,1.868154,4.110961,285.52417,318.94528,15.5765,962.7408,0.0,61.80914 +2023-07-09 05:00:00,1.9026297,2.842534,273.01273,320.7106,14.1765,962.58887,0.0,69.497406 +2023-07-09 06:00:00,1.8357561,2.6476402,240.64233,259.1145,13.7765,962.42316,0.0,73.27558 +2023-07-09 07:00:00,2.2022715,3.9357338,230.52757,242.78397,13.7265005,962.4143,0.0,71.55569 +2023-07-09 08:00:00,2.6400757,4.614109,232.69597,240.10118,13.3765,961.8781,0.0,72.219894 +2023-07-09 09:00:00,3.2649658,7.156815,242.6502,254.60439,13.7765,961.85425,0.0,65.96502 +2023-07-09 10:00:00,3.0528674,6.9892774,238.39255,250.78723,13.6265,961.63806,0.0,64.59355 +2023-07-09 11:00:00,3.3301651,7.2006946,228.65231,242.72331,13.6265,961.4484,0.0,65.26001 +2023-07-09 12:00:00,4.4687805,8.386298,229.53786,239.15347,14.6765,961.63403,0.0,66.83429 +2023-07-09 13:00:00,5.0249376,9.604166,227.41954,238.62704,16.8265,962.2,0.0,66.395004 +2023-07-09 14:00:00,4.8414874,7.6844,231.7098,235.06898,19.2265,962.70874,0.0,58.83317 +2023-07-09 15:00:00,5.325411,7.2401657,235.71307,237.40742,21.426498,962.89233,0.0,52.56455 +2023-07-09 16:00:00,5.6035705,7.4330344,235.17543,236.5237,22.9765,962.86725,0.0,47.35771 +2023-07-09 17:00:00,5.7489133,7.465253,229.93927,230.9806,24.276499,962.6082,0.0,43.93598 +2023-07-09 18:00:00,6.296825,8.280701,226.93057,227.44708,25.026499,962.35187,0.0,42.710648 +2023-07-09 19:00:00,6.789698,8.987213,226.1934,227.2546,25.6265,961.7854,0.0,41.899643 +2023-07-09 20:00:00,6.9310894,9.128527,226.16905,227.21968,26.1265,961.4869,0.0,41.90086 +2023-07-09 21:00:00,6.6843095,8.902246,231.07245,231.84273,26.526499,960.88666,0.0,41.32843 +2023-07-09 22:00:00,6.3820057,8.570297,234.56659,235.93904,26.676498,960.34106,0.0,41.6424 +2023-07-09 23:00:00,5.8309517,8.062258,239.0363,240.2552,26.6265,959.9527,0.0,42.45468 +2023-07-10 00:00:00,4.909175,7.494665,236.6336,238.64297,25.8265,960.39264,0.0,43.50037 +2023-07-10 01:00:00,4.031129,7.3,223.99501,228.888,24.3765,959.86975,0.0,49.810223 +2023-07-10 02:00:00,3.905125,7.990619,219.80553,225.50697,22.276499,959.1416,0.0,54.904938 +2023-07-10 03:00:00,3.8948684,8.221922,221.87778,228.94528,20.9765,959.30365,0.0,57.530132 +2023-07-10 04:00:00,4.545327,9.055386,219.64413,226.78989,20.276499,959.0906,0.0,57.73827 +2023-07-10 05:00:00,4.750789,9.484725,220.73201,227.56381,19.776499,958.7208,0.0,57.8068 +2023-07-10 06:00:00,5.0328918,9.915645,220.97165,228.27058,19.4765,958.5751,0.0,56.78159 +2023-07-10 07:00:00,5.5,10.480458,216.86998,221.90585,18.9765,958.3003,0.0,58.772655 +2023-07-10 08:00:00,5.9033885,10.960383,218.81139,224.63039,18.5765,957.9471,0.0,65.45826 +2023-07-10 09:00:00,6.506919,11.822859,226.24529,231.86995,18.776499,957.7915,0.0,69.25409 +2023-07-10 10:00:00,6.224147,11.322985,226.30188,231.8143,18.8265,957.8,0.0,69.94533 +2023-07-10 11:00:00,6.155485,11.194641,223.02507,228.62158,18.3265,957.7145,0.0,72.87786 +2023-07-10 12:00:00,5.872819,10.217632,222.92996,229.76372,18.9765,957.73083,0.0,76.372246 +2023-07-10 13:00:00,5.420332,10.696261,217.50421,228.41104,20.676498,958.01874,0.0,73.76223 +2023-07-10 14:00:00,5.481788,7.939773,218.33337,220.91429,22.776499,958.1805,0.0,68.70723 +2023-07-10 15:00:00,5.5605755,7.605919,217.6943,219.1304,24.926498,958.25006,0.0,64.11289 +2023-07-10 16:00:00,5.1739736,6.868042,221.08165,222.04915,26.8765,958.28235,0.0,59.50256 +2023-07-10 17:00:00,5.0931325,6.576473,223.4089,224.38402,28.526499,958.0727,0.0,54.543354 +2023-07-10 18:00:00,5.1224995,6.7007465,231.34016,232.27495,30.0765,957.7488,0.0,44.379543 +2023-07-10 19:00:00,4.8764744,6.306346,241.85849,242.62238,31.1265,957.3435,0.0,34.01772 +2023-07-10 20:00:00,4.1231055,5.4230986,247.1663,247.21756,31.526499,956.74084,0.0,32.39581 +2023-07-10 21:00:00,4.554119,5.9135437,250.76923,251.25856,31.926498,956.4226,0.0,31.565557 +2023-07-10 22:00:00,4.295346,5.80517,257.90524,259.07724,31.3765,956.33673,0.0,32.35447 +2023-07-10 23:00:00,3.6055512,5.3009434,266.82022,271.0809,31.1265,956.7729,0.0,33.250065 +2023-07-11 00:00:00,2.2472203,4.002499,249.14546,257.00537,30.176498,956.8136,0.4,40.480705 +2023-07-11 01:00:00,3.354102,6.5115285,349.69522,349.3804,27.3765,957.508,0.0,46.406845 +2023-07-11 02:00:00,5.481788,9.080198,14.796817,16.638891,24.3265,958.7216,0.0,57.968624 +2023-07-11 03:00:00,2.4698179,5.412947,21.370695,25.144758,22.426498,959.64166,0.0,67.985825 +2023-07-11 04:00:00,3.5128336,6.512296,355.10098,3.5213907,21.5765,960.259,0.0,64.620834 +2023-07-11 05:00:00,4.1303754,7.7025967,353.04715,1.4878385,20.3765,960.4364,0.0,53.88155 +2023-07-11 06:00:00,4.3011627,8.149847,358.66782,6.3401003,19.276499,960.8189,0.0,56.354744 +2023-07-11 07:00:00,4.418144,8.080842,5.19435,12.144272,18.426498,961.1482,0.0,57.28204 +2023-07-11 08:00:00,3.794733,7.2615423,18.435053,22.680603,17.6265,961.86444,0.0,56.50813 +2023-07-11 09:00:00,4.031129,7.4625735,29.744795,32.412296,16.926498,962.21735,0.0,56.90755 +2023-07-11 10:00:00,3.828838,7.1421285,40.763515,44.432816,16.1265,962.268,0.0,55.3662 +2023-07-11 11:00:00,4.110961,7.5663733,41.054726,44.464615,15.3265,962.79175,0.0,54.9703 +2023-07-11 12:00:00,3.7215588,6.9999995,30.699654,36.86999,14.9265,962.91113,0.0,58.977753 +2023-07-11 13:00:00,3.8600519,5.544367,36.573124,39.143982,16.1265,963.40625,0.0,55.936993 +2023-07-11 14:00:00,4.0360875,5.375872,41.98714,43.492626,17.676498,964.05536,0.0,51.049404 +2023-07-11 15:00:00,4.110961,5.315073,48.94529,48.814175,19.1265,964.1153,0.0,42.635696 +2023-07-11 16:00:00,3.7802117,4.7801676,52.523746,52.650585,20.426498,964.3371,0.0,37.996853 +2023-07-11 17:00:00,2.9410884,3.6619666,54.688713,55.0079,21.676498,964.7388,0.0,35.926933 +2023-07-11 18:00:00,2.3345234,2.828427,80.13426,81.86999,22.6265,964.2337,0.0,35.951263 +2023-07-11 19:00:00,1.9104973,2.3194828,96.00892,97.43131,22.926498,963.71387,0.0,35.182346 +2023-07-11 20:00:00,1.8027756,2.302173,123.6901,124.3804,22.276499,963.2251,0.0,36.97698 +2023-07-11 21:00:00,1.7204651,2.1400933,144.46223,142.59457,22.3265,962.75885,0.0,37.759 +2023-07-11 22:00:00,2.6907248,3.3970575,131.98714,132.61403,22.276499,961.99054,0.0,39.055626 +2023-07-11 23:00:00,2.9732137,3.9623227,132.27362,132.95459,22.2265,961.41266,0.0,39.982796 +2023-07-12 00:00:00,2.745906,3.6055512,33.111355,33.6901,19.026499,963.1492,0.2,56.291996 +2023-07-12 01:00:00,2.5942245,4.1231055,62.447273,67.16631,18.8265,962.16565,0.0,56.999134 +2023-07-12 02:00:00,2.5,4.9648767,53.13002,62.402794,18.1265,961.8556,0.0,58.175 +2023-07-12 03:00:00,2.9154758,5.9548297,30.963696,40.9143,17.176498,962.4506,0.0,61.14674 +2023-07-12 04:00:00,2.4351592,5.9135437,70.8209,71.258575,16.426498,962.0357,0.0,62.42574 +2023-07-12 05:00:00,2.7294688,6.239391,81.57312,83.5585,16.176498,962.0871,0.0,62.158184 +2023-07-12 06:00:00,3.1575305,6.760177,79.04598,82.34945,15.7765,962.017,0.0,63.12362 +2023-07-12 07:00:00,3.2,6.902898,90.0,91.66025,15.6765,961.3354,0.0,62.67553 +2023-07-12 08:00:00,3.5014284,6.9180923,88.363464,94.14455,16.0765,960.6464,0.0,61.093895 +2023-07-12 09:00:00,3.901282,7.605919,88.531235,92.26045,15.7765,959.5508,0.0,63.551304 +2023-07-12 10:00:00,3.622154,7.0035706,96.340096,99.865746,15.7765,959.9302,0.0,66.17153 +2023-07-12 11:00:00,4.1,7.4330344,102.680374,107.21616,16.276499,960.01733,0.3,68.528625 +2023-07-12 12:00:00,3.04795,5.660389,131.00899,122.00535,15.2265005,960.11847,0.0,88.14545 +2023-07-12 13:00:00,5.0289164,9.024964,107.35411,111.44781,15.0765,957.7212,2.0,87.84524 +2023-07-12 14:00:00,4.9729266,8.065358,105.15412,107.31174,15.7265005,957.9295,0.2,85.64405 +2023-07-12 15:00:00,4.341659,5.885576,97.94338,99.78234,18.526499,958.2232,0.0,75.563515 +2023-07-12 16:00:00,3.1,3.901282,90.0,91.46877,20.176498,958.599,0.0,70.658806 +2023-07-12 17:00:00,2.158703,2.6925821,103.39252,105.06854,21.776499,958.6784,0.0,67.206314 +2023-07-12 18:00:00,0.6,0.70710677,360.0,351.87,22.926498,958.6802,0.0,65.74458 +2023-07-12 19:00:00,1.8248286,2.2203605,279.46225,277.76508,25.026499,958.36145,0.0,57.399708 +2023-07-12 20:00:00,3.7854989,4.8052053,282.20044,282.01144,26.0765,957.9626,0.0,52.06612 +2023-07-12 21:00:00,4.3416586,5.5946403,298.92633,298.85556,25.3765,957.84863,0.0,55.5025 +2023-07-12 22:00:00,4.652956,6.0827627,298.21725,297.4075,25.776499,957.9139,0.0,54.200027 +2023-07-12 23:00:00,4.318565,5.5865912,317.8156,315.72513,25.676498,957.8028,0.0,54.522392 +2023-07-13 00:00:00,2.9832866,3.9824615,309.55963,308.8845,23.426498,958.95294,0.0,60.218613 +2023-07-13 01:00:00,2.2825425,3.6891732,298.8107,302.82855,22.8265,958.7584,0.0,63.047207 +2023-07-13 02:00:00,2.1,2.657066,270.0,289.79895,20.426498,958.6411,0.0,77.829796 +2023-07-13 03:00:00,1.9849433,2.8178005,319.0857,332.52567,19.926498,958.74634,0.0,79.51046 +2023-07-13 04:00:00,2.1400933,3.176476,307.40543,331.8215,18.8265,958.749,0.0,82.731384 +2023-07-13 05:00:00,1.4142135,1.5811387,261.87,325.30478,18.3265,958.66345,0.0,83.738014 +2023-07-13 06:00:00,1.2041595,1.5811387,221.63345,214.69522,17.8265,958.4828,0.0,86.13378 +2023-07-13 07:00:00,1.8601075,3.6055512,216.25392,213.6901,17.2265,958.0947,0.0,89.45686 +2023-07-13 08:00:00,2.4839485,5.249762,220.10085,220.36446,17.276499,958.1035,0.0,88.889145 +2023-07-13 09:00:00,3.1827662,6.6068144,223.72705,230.52757,17.2265,957.90497,0.0,90.03185 +2023-07-13 10:00:00,3.9115214,7.930952,237.52882,246.9911,17.3265,958.11194,0.0,90.03915 +2023-07-13 11:00:00,3.8275318,7.879086,236.7251,246.0375,17.526499,958.43115,0.0,90.92049 +2023-07-13 12:00:00,3.5341196,6.5115285,244.8852,259.3804,18.426498,958.5859,0.0,87.85667 +2023-07-13 13:00:00,2.9529645,6.363961,241.69934,261.87,20.426498,958.9259,0.0,83.18476 +2023-07-13 14:00:00,3.0413814,4.119466,260.53775,264.4279,22.676498,959.30334,0.0,73.17502 +2023-07-13 15:00:00,3.5902646,4.609772,282.875,282.5288,24.3265,959.4816,0.0,63.37809 +2023-07-13 16:00:00,3.9623227,4.9819674,280.17545,280.40765,25.426498,959.3771,0.0,59.351257 +2023-07-13 17:00:00,4.5,5.7,270.0,270.0,26.526499,959.08105,0.0,55.434055 +2023-07-13 18:00:00,5.622277,7.333485,264.89792,264.5227,27.276499,958.4421,0.1,52.374187 +2023-07-13 19:00:00,5.7428217,7.653104,262.99884,263.24652,28.2265,957.83435,0.0,46.93489 +2023-07-13 20:00:00,6.648308,8.967719,276.91113,277.0457,29.1265,957.5028,0.0,43.699856 +2023-07-13 21:00:00,7.4525166,10.099999,281.61145,281.42114,29.0765,957.495,0.0,40.83163 +2023-07-13 22:00:00,5.1429563,7.1589108,296.56497,294.77512,27.676498,957.1758,0.0,42.88372 +2023-07-13 23:00:00,6.152235,8.448076,262.52853,263.88458,27.776499,957.19183,0.0,42.77237 +2023-07-14 00:00:00,5.6859474,9.398404,246.13982,249.44386,27.7265,956.32855,0.2,44.88403 +2023-07-14 01:00:00,4.997999,8.728115,250.11475,251.98013,25.926498,956.323,0.0,51.694527 +2023-07-14 02:00:00,5.333854,9.60833,263.5413,267.6141,24.926498,956.5399,0.0,55.213333 +2023-07-14 03:00:00,4.509989,8.705171,266.186,271.97488,24.1265,956.78894,0.0,57.734924 +2023-07-14 04:00:00,4.0112343,8.329466,265.71094,274.82068,22.9765,956.9787,0.0,61.08863 +2023-07-14 05:00:00,3.3015149,7.34983,271.73566,284.9817,22.026499,957.2008,0.0,66.40128 +2023-07-14 06:00:00,2.7018514,6.356886,272.12103,289.29013,20.926498,957.20636,0.0,73.57004 +2023-07-14 07:00:00,2.280351,5.3600373,254.74483,284.03625,20.026499,956.9597,0.0,80.032036 +2023-07-14 08:00:00,2.9206164,5.1971145,231.95291,258.9063,19.3765,957.03937,0.0,83.591324 +2023-07-14 09:00:00,3.0610456,5.8523498,231.63248,253.11313,18.926498,956.8678,0.0,84.88136 +2023-07-14 10:00:00,3.2449963,6.8007355,236.3099,252.89719,18.676498,956.7305,0.0,83.51067 +2023-07-14 11:00:00,3.1384711,7.0604534,239.34941,254.38895,18.8265,956.756,0.0,79.101494 +2023-07-14 12:00:00,2.7166157,5.920304,263.6599,285.6796,19.776499,956.6325,0.0,82.58283 +2023-07-14 13:00:00,2.0124612,4.1880784,296.56497,303.31064,22.3765,957.35394,0.0,72.89213 +2023-07-14 14:00:00,1.8027756,2.6172504,250.55988,263.41815,24.2265,958.3252,0.0,66.224785 +2023-07-14 15:00:00,2.7856774,3.5735137,248.96242,252.07199,25.8765,958.59534,0.0,58.524178 +2023-07-14 16:00:00,3.238827,4.1593266,261.11942,260.31128,27.426498,958.6563,0.0,52.91332 +2023-07-14 17:00:00,3.8327534,4.738143,277.49576,277.2749,28.3765,958.9993,0.0,44.200577 +2023-07-14 18:00:00,3.8209946,4.9162993,276.0089,274.66678,28.426498,958.91223,0.0,41.31646 +2023-07-14 19:00:00,4.669047,5.9682493,260.13425,261.3269,28.676498,958.09656,0.0,38.031002 +2023-07-14 20:00:00,5.2038445,6.7007456,267.79745,269.14493,27.9765,957.8894,0.1,45.974895 +2023-07-14 21:00:00,5.0089917,6.500769,266.56644,270.88138,27.8765,957.8733,0.1,45.360825 +2023-07-14 22:00:00,5.0635953,6.6753273,260.9098,261.38443,26.426498,957.8295,1.0,60.338535 +2023-07-14 23:00:00,5.905929,8.236504,298.30066,299.0545,26.4765,957.9327,1.5,46.163345 +2023-07-15 00:00:00,3.5341196,4.9658837,244.8852,244.98314,24.4765,957.8915,0.0,71.45396 +2023-07-15 01:00:00,2.9017239,5.2469034,271.97488,277.66672,23.776499,957.871,0.0,74.7524 +2023-07-15 02:00:00,2.9017239,6.1846585,271.97488,284.03625,22.026499,958.0555,0.0,75.88606 +2023-07-15 03:00:00,2.6400757,6.0207973,307.30402,327.89377,20.776499,958.79517,0.0,72.84217 +2023-07-15 04:00:00,2.2671568,4.3011627,311.42358,342.40747,18.676498,958.9134,0.0,77.06763 +2023-07-15 05:00:00,1.6492423,3.5805027,284.03625,324.09018,18.176498,959.1121,0.0,77.490425 +2023-07-15 06:00:00,2.209072,4.3011627,264.80566,287.5925,18.526499,959.07733,0.0,76.054344 +2023-07-15 07:00:00,3.306055,6.9641943,273.46817,291.03757,18.426498,958.9655,0.0,78.53617 +2023-07-15 08:00:00,3.6249137,7.742093,294.44394,305.53775,18.3765,959.1464,0.0,79.03716 +2023-07-15 09:00:00,3.008322,6.8264194,285.4222,301.8274,17.526499,958.9056,0.0,79.428696 +2023-07-15 10:00:00,2.8071337,6.3560996,274.08554,294.14554,16.776499,958.68115,0.0,80.101974 +2023-07-15 11:00:00,3.1144822,6.8154235,264.47256,284.44406,16.5765,958.9313,0.0,78.26322 +2023-07-15 12:00:00,3.8327534,7.5538073,262.50424,276.84268,18.026499,959.5611,0.0,81.577614 +2023-07-15 13:00:00,4.1231055,7.940403,255.96373,275.7823,20.1265,960.2042,0.0,76.55346 +2023-07-15 14:00:00,3.640055,7.605919,254.05453,267.73953,22.4765,960.50464,0.0,69.08626 +2023-07-15 15:00:00,4.7169905,6.4070277,265.13556,267.31628,24.4765,960.6465,0.0,57.819317 +2023-07-15 16:00:00,4.6957426,6.306346,296.56497,297.37762,24.5765,960.85297,1.4,59.529785 +2023-07-15 17:00:00,6.074537,7.9611554,302.90524,302.692,22.676498,961.3927,2.5,64.44378 +2023-07-15 18:00:00,4.428318,5.8137765,295.40768,296.56497,24.3765,961.29474,0.0,53.153984 +2023-07-15 19:00:00,6.4884515,8.723532,294.5901,295.09622,25.2265,960.86456,0.1,43.47731 +2023-07-15 20:00:00,7.0491138,9.518929,301.6607,301.6863,25.426498,960.42224,0.0,40.750313 +2023-07-15 21:00:00,7.1344237,9.741663,301.23917,301.5689,25.176498,960.3812,0.0,39.743893 +2023-07-15 22:00:00,7.111962,9.752949,297.64587,298.1415,25.026499,960.1666,0.0,40.773487 +2023-07-15 23:00:00,6.5764737,9.712878,298.12363,298.9399,24.5765,960.0929,0.0,42.868694 +2023-07-16 00:00:00,6.22254,8.980535,315.0001,314.54892,22.526499,961.2729,0.0,50.138554 +2023-07-16 01:00:00,4.104875,6.9065185,325.92276,325.6196,21.176498,960.85645,0.0,56.08536 +2023-07-16 02:00:00,3.0413814,6.2289643,313.66785,317.6026,19.8265,960.91266,0.0,59.1731 +2023-07-16 03:00:00,2.86007,6.506919,306.46933,313.7547,19.026499,961.15607,0.0,62.191124 +2023-07-16 04:00:00,3.4205263,7.212489,307.87503,315.0001,18.3765,961.5189,0.0,63.709003 +2023-07-16 05:00:00,2.236068,5.517246,296.56497,313.53125,17.0765,961.2948,0.0,68.23607 +2023-07-16 06:00:00,1.7117243,4.0249224,263.29025,296.56497,15.7265005,960.9648,0.0,74.85201 +2023-07-16 07:00:00,2.1954498,4.101219,239.9315,268.60284,15.3765,960.8088,0.0,78.08355 +2023-07-16 08:00:00,3.1622775,6.1684685,235.30478,250.09616,15.2265005,960.68756,0.0,80.68083 +2023-07-16 09:00:00,3.6055512,7.7781744,250.55988,261.87,15.2765,960.7912,0.0,78.326965 +2023-07-16 10:00:00,4.20119,8.558621,268.6361,276.70975,15.5765,960.84375,0.0,73.10771 +2023-07-16 11:00:00,3.8639357,7.802564,259.56256,271.46878,15.3765,960.8088,0.0,73.31561 +2023-07-16 12:00:00,4.0792155,7.6006575,258.6901,270.75385,15.7765,960.689,0.0,77.12019 +2023-07-16 13:00:00,4.472136,8.845903,243.43501,264.1606,17.7265,961.3124,0.0,75.92544 +2023-07-16 14:00:00,4.8764744,7.66942,241.85849,247.78236,20.176498,961.6368,0.0,66.013985 +2023-07-16 15:00:00,6.2641835,8.683317,253.30067,255.32356,22.3265,961.61926,0.0,51.937035 +2023-07-16 16:00:00,6.139218,8.276473,257.7749,258.147,23.4765,961.14606,0.0,48.12446 +2023-07-16 17:00:00,6.9584484,9.464143,262.5687,263.32562,24.6265,960.9561,0.0,45.359474 +2023-07-16 18:00:00,8.984431,12.349089,286.8215,285.49933,25.2265,960.6745,0.1,41.237938 +2023-07-16 19:00:00,7.930952,10.885311,293.00888,293.26773,25.2265,960.6745,0.0,44.05362 +2023-07-16 20:00:00,7.5584393,10.241582,295.88696,296.0646,24.5765,960.1879,0.4,46.860992 +2023-07-16 21:00:00,7.605919,10.511898,294.88034,295.34613,22.676498,960.3481,0.3,58.13228 +2023-07-16 22:00:00,7.3430243,10.03444,299.35767,299.88644,23.5765,960.3076,0.3,53.991894 +2023-07-16 23:00:00,7.017834,9.915645,310.9554,311.72943,23.426498,959.99774,0.0,49.23275 +2023-07-17 00:00:00,5.5317264,8.01561,319.39877,319.55383,22.276499,960.946,0.0,49.57705 +2023-07-17 01:00:00,4.560702,7.800641,322.12494,323.86453,21.2265,961.1497,0.0,51.306034 +2023-07-17 02:00:00,5.0447993,8.829496,346.2392,346.90808,19.2265,961.47485,0.0,55.780735 +2023-07-17 03:00:00,4.20119,7.802564,358.6361,358.53122,17.926498,961.91614,0.0,58.51723 +2023-07-17 04:00:00,2.7658634,6.166036,347.4712,351.60715,16.6265,962.26013,0.0,59.593075 +2023-07-17 05:00:00,2.0518284,5.27731,313.0251,332.9495,15.2265005,962.3948,0.0,64.29206 +2023-07-17 06:00:00,1.9798989,4.7423625,315.0001,335.05612,14.2765,962.5118,0.0,66.749535 +2023-07-17 07:00:00,1.8867962,3.8078866,302.00534,336.8014,13.0765,962.2038,0.0,71.91974 +2023-07-17 08:00:00,1.7888545,4.031129,296.56497,330.25522,12.7265005,962.23615,0.0,72.83864 +2023-07-17 09:00:00,2.4413111,5.5605755,304.9921,322.3057,12.8765,962.5473,0.0,71.638245 +2023-07-17 10:00:00,2.641969,5.7489133,299.4758,319.93927,12.4765005,962.76013,0.0,73.29038 +2023-07-17 11:00:00,3.522783,7.2835426,304.59235,315.55618,12.3265,963.20734,0.0,74.26793 +2023-07-17 12:00:00,4.060788,7.2718635,322.00122,328.4958,12.8265,963.67615,0.0,75.114235 +2023-07-17 13:00:00,3.8013155,6.6370173,324.63745,329.18436,14.1765,964.3906,0.0,74.58807 +2023-07-17 14:00:00,3.6400552,4.9648767,322.81522,325.66974,15.926499,964.6992,0.0,71.01537 +2023-07-17 15:00:00,4.429447,5.770615,331.69934,332.1028,17.3765,964.8574,0.0,66.51127 +2023-07-17 16:00:00,5.6859474,7.3006845,336.1398,336.59528,18.8765,965.11633,0.0,58.553158 +2023-07-17 17:00:00,5.5461698,7.201389,334.35904,334.5025,19.776499,965.1756,0.0,52.83547 +2023-07-17 18:00:00,5.3665633,7.021396,333.43503,333.79996,19.6265,964.8652,0.0,52.79622 +2023-07-17 19:00:00,5.27731,6.842514,332.9495,333.06055,20.526499,964.5441,0.0,49.936512 +2023-07-17 20:00:00,4.830114,6.3953104,332.90454,333.03436,20.8265,964.0255,0.0,49.02226 +2023-07-17 21:00:00,4.830114,6.306346,332.90454,332.62238,21.3265,963.8251,0.0,46.749012 +2023-07-17 22:00:00,4.5177426,5.8591805,332.30063,332.56036,21.276499,963.7216,0.0,47.20847 +2023-07-17 23:00:00,3.4409301,4.5221677,324.46225,324.9041,21.426498,963.3671,0.0,46.307636 +2023-07-18 00:00:00,3.0364454,3.9849718,342.75845,342.47433,20.5765,964.17285,0.0,48.30067 +2023-07-18 01:00:00,2.1,4.2,360.0,360.0,19.2265,963.8477,0.0,57.671684 +2023-07-18 02:00:00,2.5179358,3.49285,6.842679,13.240531,16.176498,963.4151,0.0,73.457306 +2023-07-18 03:00:00,1.5524175,2.3086793,345.06854,4.969664,17.8265,963.98645,0.0,60.08204 +2023-07-18 04:00:00,1.9646883,2.6832817,14.743609,26.564985,16.176498,963.6997,0.0,68.508415 +2023-07-18 05:00:00,0.41231057,1.2041595,255.96373,41.63345,17.2265,963.9773,0.0,61.56987 +2023-07-18 06:00:00,0.7615773,0.36055514,203.19862,123.690094,15.3765,963.5594,0.0,72.10436 +2023-07-18 07:00:00,1.5297059,1.2165525,191.30989,170.53775,14.0265,963.1314,0.0,77.360306 +2023-07-18 08:00:00,1.9235383,3.1064448,188.97255,176.30869,14.5265,963.1248,0.0,74.398834 +2023-07-18 09:00:00,2.2561028,4.8507733,192.80426,188.29706,13.7265005,963.2677,0.0,78.09389 +2023-07-18 10:00:00,2.0024984,4.8259716,182.86235,185.94676,14.2265005,962.8822,0.0,76.8765 +2023-07-18 11:00:00,2.2203605,4.031129,187.76508,187.12492,12.1265,962.6026,0.0,87.579834 +2023-07-18 12:00:00,1.7492856,3.1400635,120.963684,99.16227,14.5765,962.3751,0.0,78.22216 +2023-07-18 13:00:00,2.2203603,3.847077,125.837746,117.89718,17.2265,963.21826,0.0,70.55948 +2023-07-18 14:00:00,2.7802877,3.6400552,142.3057,142.81522,19.1265,963.83057,0.0,59.792973 +2023-07-18 15:00:00,2.8844411,3.6055512,146.3099,146.3099,20.1265,964.0014,0.0,55.268772 +2023-07-18 16:00:00,2.7856774,3.4785054,158.96242,161.56496,21.3265,964.3948,0.0,52.71277 +2023-07-18 17:00:00,2.9410882,3.6687872,162.18102,162.55272,22.276499,964.3647,0.0,51.753136 +2023-07-18 18:00:00,2.6925821,3.2984846,164.93146,165.96373,23.026499,963.9206,0.0,51.779335 +2023-07-18 19:00:00,2.404163,2.9120438,163.0724,164.05453,23.7265,963.8471,0.0,51.288185 +2023-07-18 20:00:00,2.2203605,2.7073975,172.23492,175.76369,24.2265,963.6451,0.0,51.25202 +2023-07-18 21:00:00,2.3194828,2.9274564,172.56868,172.14677,24.5765,963.228,0.0,51.177162 +2023-07-18 22:00:00,2.8160255,3.522783,173.8846,173.4803,24.676498,962.8643,0.0,51.36963 +2023-07-18 23:00:00,3.2557642,4.0447497,169.3804,171.46931,24.5765,962.373,0.0,51.67768 +2023-07-19 00:00:00,3.2015622,4.609772,165.52966,167.4712,22.9765,962.86725,0.0,58.393063 +2023-07-19 01:00:00,3.0805843,5.4571056,166.86597,166.21838,22.176498,962.54364,0.0,62.096428 +2023-07-19 02:00:00,2.0518284,4.652956,136.97493,151.78275,20.276499,962.69794,0.0,69.54698 +2023-07-19 03:00:00,2.5,5.818075,143.13002,151.23245,19.7265,963.4585,0.0,71.26188 +2023-07-19 04:00:00,3.4669871,6.8883963,146.76828,152.31903,19.526499,963.2345,0.0,72.62006 +2023-07-19 05:00:00,4.0853395,7.905694,158.45895,161.56496,19.4765,962.7514,0.0,72.61111 +2023-07-19 06:00:00,4.1,8.20975,180.0,182.79265,18.8265,962.9249,0.0,76.5952 +2023-07-19 07:00:00,4.7169905,8.895505,184.86443,188.40329,18.676498,962.0452,0.0,79.846596 +2023-07-19 08:00:00,4.1,7.884795,192.68037,195.44638,18.3265,961.70026,0.0,83.738014 +2023-07-19 09:00:00,4.6010866,8.459313,181.24533,186.78888,18.3765,961.3291,0.0,84.281586 +2023-07-19 10:00:00,2.7202942,3.535534,36.027473,44.999897,17.7265,964.53864,9.9,92.39267 +2023-07-19 11:00:00,4.4045434,7.400676,177.39749,180.7742,18.026499,963.07214,2.8,90.95371 +2023-07-19 12:00:00,2.385372,4.9517674,236.97612,226.63654,18.3765,963.2271,0.0,90.40159 +2023-07-19 13:00:00,2.863564,4.2720017,204.77512,212.57405,19.6265,963.53625,0.4,87.40764 +2023-07-19 14:00:00,4.609772,6.306346,204.34108,207.37762,20.8265,963.3609,0.0,85.082245 +2023-07-19 15:00:00,4.031129,5.375872,223.99501,226.50737,22.9765,963.53204,0.0,81.182076 +2023-07-19 16:00:00,3.3120992,4.1146083,241.11351,244.05775,24.926498,963.8555,0.0,77.05126 +2023-07-19 17:00:00,2.641969,3.310589,240.5242,244.98314,26.6265,964.0393,0.0,69.4506 +2023-07-19 18:00:00,1.7888545,2.1931713,243.43501,245.77226,27.776499,963.6555,0.0,59.711243 +2023-07-19 19:00:00,2.3600848,2.8844411,233.61555,236.3099,28.7265,963.52344,0.0,50.62843 +2023-07-19 20:00:00,4.675468,6.0827627,221.53168,223.66785,27.676498,963.4492,0.2,54.847713 +2023-07-19 21:00:00,4.5177426,5.9506307,242.30061,245.15764,26.9765,963.526,0.0,58.050205 +2023-07-19 22:00:00,5.0289164,6.8308125,252.64589,252.09546,25.8765,962.96643,0.0,65.944305 +2023-07-19 23:00:00,4.661545,6.462198,247.28555,248.19853,26.3765,962.763,0.0,66.45903 +2023-07-20 00:00:00,5.7870545,9.024965,251.87805,254.57777,26.4765,962.6843,0.0,67.51757 +2023-07-20 01:00:00,5.700877,9.483143,254.74483,255.96373,25.2265,962.28973,0.0,72.2585 +2023-07-20 02:00:00,5.115662,9.208692,265.51547,267.5105,23.9765,962.6537,0.0,76.66868 +2023-07-20 03:00:00,5.0447993,9.198369,283.7608,281.92072,22.926498,963.42896,0.0,79.67489 +2023-07-20 04:00:00,3.9319208,7.4,277.30566,288.92474,20.926498,963.9472,1.4,81.172516 +2023-07-20 05:00:00,2.8231187,6.5,292.93213,306.86996,19.8765,963.95874,0.0,81.03624 +2023-07-20 06:00:00,3.992493,8.421995,292.06796,299.91354,19.1265,963.9255,0.0,74.932625 +2023-07-20 07:00:00,5.5803227,9.935794,306.25394,310.10083,18.926498,964.2706,0.0,66.617325 +2023-07-20 08:00:00,5.360038,9.642614,306.6562,310.79456,18.276499,964.3489,0.0,68.029884 +2023-07-20 09:00:00,5.5865912,9.84124,314.27487,317.88306,17.5765,964.3225,0.0,72.26846 +2023-07-20 10:00:00,5.020956,9.068627,315.80682,318.57642,16.8765,964.3909,0.0,76.28572 +2023-07-20 11:00:00,4.9517674,8.949861,316.63654,320.44037,16.3765,964.778,0.0,79.265144 +2023-07-20 12:00:00,5.060632,8.405355,322.22424,325.17545,16.776499,965.3222,0.0,81.15212 +2023-07-20 13:00:00,5.860034,8.300602,323.32556,323.82028,17.676498,966.048,0.0,79.19284 +2023-07-20 14:00:00,6.4899926,8.820431,326.3099,327.03058,18.6265,966.3074,0.0,75.579834 +2023-07-20 15:00:00,7.5166483,10.1242285,326.94415,327.09476,19.926498,966.5302,0.0,68.584404 +2023-07-20 16:00:00,7.9624114,10.7354555,334.72232,334.62848,20.9765,966.80414,0.0,62.83765 +2023-07-20 17:00:00,7.8771825,10.568822,339.95465,339.50732,21.5765,967.0007,0.0,59.784794 +2023-07-20 18:00:00,7.116881,9.613532,340.29193,341.18802,21.776499,967.2244,0.0,59.25092 +2023-07-20 19:00:00,6.621178,8.905055,334.98312,335.44955,22.426498,967.334,0.0,56.21281 +2023-07-20 20:00:00,5.9506307,7.970571,335.15762,336.32944,22.676498,967.28094,0.0,54.292168 +2023-07-20 21:00:00,6.264982,8.411897,331.38962,331.6071,22.9765,967.23615,0.0,55.441032 +2023-07-20 22:00:00,5.9093146,7.839005,336.0375,336.7054,23.2265,966.9931,0.0,52.001453 +2023-07-20 23:00:00,5.235456,7.155418,331.477,333.43503,23.0765,966.77814,0.0,54.04039 +2023-07-21 00:00:00,4.0792155,5.80517,348.6901,349.07724,22.276499,967.11865,0.0,60.339066 +2023-07-21 01:00:00,2.5079873,4.7127485,336.5014,342.7184,21.3765,967.3467,0.0,66.26588 +2023-07-21 02:00:00,1.6970563,4.159327,315.0001,332.81897,19.2265,966.88495,0.0,75.677414 +2023-07-21 03:00:00,2.0,4.494441,306.86996,327.72437,18.4765,967.23035,0.0,78.79712 +2023-07-21 04:00:00,1.8601075,4.3908997,306.25394,329.9315,17.5765,967.0742,0.0,82.57983 +2023-07-21 05:00:00,1.9209373,4.5617976,308.65982,333.9967,17.276499,967.1171,0.0,81.745575 +2023-07-21 06:00:00,2.2022715,5.1971145,309.47244,329.98172,17.176498,967.3843,0.0,79.63765 +2023-07-21 07:00:00,2.1633308,4.909175,303.6901,326.6336,16.5765,967.08997,0.0,82.995125 +2023-07-21 08:00:00,2.1954498,4.9819674,300.06848,321.51978,15.926499,967.16547,0.0,86.785965 +2023-07-21 09:00:00,2.1954498,5.1224995,300.06848,321.34018,15.6265,966.82825,0.0,88.46695 +2023-07-21 10:00:00,2.1095023,4.920366,301.4295,322.43134,15.3265,966.58563,0.0,89.30936 +2023-07-21 11:00:00,1.8788295,4.560702,295.20108,322.12494,14.9265,966.79956,0.0,90.15552 +2023-07-21 12:00:00,1.8867962,3.0463092,302.00534,336.8014,16.1265,967.1059,0.0,87.08698 +2023-07-21 13:00:00,2.0,3.4132097,306.86996,328.17258,18.2265,967.7566,0.0,82.658875 +2023-07-21 14:00:00,1.7804494,2.408319,308.15726,311.63345,20.2265,968.29034,0.0,74.87473 +2023-07-21 15:00:00,1.7691805,2.1260293,312.70938,311.18582,21.926498,968.1991,0.0,67.02192 +2023-07-21 16:00:00,2.0518284,2.5455844,313.0251,315.0001,22.8765,967.9795,0.1,58.55814 +2023-07-21 17:00:00,1.8439089,2.3430748,310.60123,309.8055,23.3265,967.5799,0.1,55.348713 +2023-07-21 18:00:00,1.9849433,2.408319,319.0857,318.36655,24.026499,966.9365,0.1,51.033043 +2023-07-21 19:00:00,1.9849433,2.4839485,310.91428,310.10083,24.3765,966.5197,0.1,51.12482 +2023-07-21 20:00:00,1.9235384,2.3706539,297.8972,297.64587,24.8265,966.1193,0.0,51.40875 +2023-07-21 21:00:00,1.9416487,2.3537204,281.88864,282.26477,25.026499,965.7722,0.0,51.129017 +2023-07-21 22:00:00,2.209072,2.6172504,275.19434,276.58185,24.9765,965.194,0.0,52.794456 +2023-07-21 23:00:00,2.9,3.7,270.0,270.0,24.8265,964.5992,0.0,53.269085 +2023-07-22 00:00:00,1.7029386,2.1260293,229.76372,228.81418,22.526499,964.88165,0.2,66.292915 +2023-07-22 01:00:00,1.3601471,2.4698176,233.97253,238.24055,22.026499,964.3229,0.0,72.37032 +2023-07-22 02:00:00,1.8788295,3.0463092,244.7989,246.80138,19.5765,963.81256,0.0,84.950516 +2023-07-22 03:00:00,1.9646883,3.0149627,255.2564,264.2895,18.676498,964.228,0.0,89.00133 +2023-07-22 04:00:00,1.5811387,3.4234486,235.30478,263.29025,18.526499,963.91736,0.0,89.556076 +2023-07-22 05:00:00,1.9416488,3.8327534,235.49141,262.50424,17.8265,963.41705,0.0,90.94042 +2023-07-22 06:00:00,2.1954498,4.1303754,239.9315,263.04712,17.3265,963.0458,0.0,91.48987 +2023-07-22 07:00:00,2.385372,4.8507733,236.97612,261.70294,16.926498,962.6917,0.0,92.05243 +2023-07-22 08:00:00,2.745906,5.375872,236.88864,260.36252,16.676498,962.269,0.0,92.03772 +2023-07-22 09:00:00,3.0413814,6.2968245,242.5925,259.93936,16.5765,962.0619,0.0,91.73683 +2023-07-22 10:00:00,3.2202485,6.7896976,244.23071,260.67648,16.5765,962.0619,0.0,91.44268 +2023-07-22 11:00:00,3.231099,7.045566,248.19853,263.4803,16.526499,962.053,0.0,90.56174 +2023-07-22 12:00:00,3.49285,6.7911706,246.3706,256.373,17.8265,962.0886,0.0,90.36298 +2023-07-22 13:00:00,3.2695565,6.8593006,246.57129,262.46063,19.526499,962.47516,0.0,87.12299 +2023-07-22 14:00:00,2.8635643,5.60803,257.90524,266.93356,21.8265,962.9596,0.0,79.0252 +2023-07-22 15:00:00,3.5,4.7010636,270.0,271.21884,24.026499,963.13684,0.0,66.60276 +2023-07-22 16:00:00,3.7054014,4.8093657,273.094,273.57626,25.6265,962.9256,0.0,53.30177 +2023-07-22 17:00:00,3.8,4.9010205,270.0,271.1691,26.5765,962.5104,0.0,47.24851 +2023-07-22 18:00:00,4.2426405,5.4589376,278.13,278.42688,27.026499,962.10834,0.0,46.014114 +2023-07-22 19:00:00,4.1785164,5.4424257,291.03757,290.43292,27.4765,961.326,0.0,44.67131 +2023-07-22 20:00:00,4.8826222,6.2128897,304.9921,303.17853,25.6265,961.3103,0.9,55.38744 +2023-07-22 21:00:00,4.531004,5.8872743,292.0363,290.89783,26.1265,960.9167,0.9,54.635086 +2023-07-22 22:00:00,2.5,3.352611,286.26028,287.3541,24.9765,960.82355,0.0,58.12454 +2023-07-22 23:00:00,3.4,4.504442,270.0,272.54474,25.7265,960.5662,0.0,55.589165 +2023-07-23 00:00:00,2.1954498,2.9154758,329.9315,329.03632,24.776499,960.5057,0.0,61.110603 +2023-07-23 01:00:00,1.8788295,4.2544093,334.79892,336.44772,23.5765,960.4026,0.0,69.518105 +2023-07-23 02:00:00,1.9209373,4.8754487,321.34018,334.48618,21.026499,959.9767,0.0,75.00708 +2023-07-23 03:00:00,2.1400933,5.5946403,322.59457,335.72556,19.9765,960.5584,0.0,72.93461 +2023-07-23 04:00:00,2.0808651,5.147815,305.21768,330.9455,19.0765,960.69,0.0,70.450485 +2023-07-23 05:00:00,2.147091,5.10392,297.75842,325.37576,18.776499,960.63873,0.0,69.25409 +2023-07-23 06:00:00,2.2472205,5.3535037,302.27563,327.20047,18.3765,960.94946,0.0,70.316864 +2023-07-23 07:00:00,2.8999999,6.723095,313.6029,329.62094,18.6265,960.99274,0.0,69.224594 +2023-07-23 08:00:00,2.4839485,6.0083275,319.89914,341.56494,17.676498,961.3036,0.0,74.93382 +2023-07-23 09:00:00,2.0,4.8703184,306.86996,340.8209,16.526499,961.29407,0.0,80.855194 +2023-07-23 10:00:00,2.0808651,4.792703,305.21768,336.6444,16.0765,961.59503,0.0,82.664856 +2023-07-23 11:00:00,1.9849433,4.68188,310.91428,340.0168,15.5265,961.78345,0.0,84.78863 +2023-07-23 12:00:00,2.6870058,5.2000003,315.0001,337.3801,16.676498,962.269,0.0,80.87517 +2023-07-23 13:00:00,2.6870058,4.8754487,315.0001,334.48618,18.6265,962.9858,0.0,77.80944 +2023-07-23 14:00:00,2.302173,3.6674242,325.6196,334.1337,20.8265,963.5508,0.0,71.92449 +2023-07-23 15:00:00,2.505993,3.2649658,331.38962,332.6502,22.7265,964.1552,0.0,66.33444 +2023-07-23 16:00:00,2.640076,3.2695565,335.37646,336.5713,24.276499,964.2232,0.0,56.487324 +2023-07-23 17:00:00,2.0880613,2.529822,343.3007,341.56494,25.2265,963.99994,0.0,50.85143 +2023-07-23 18:00:00,1.7088008,2.0248456,339.44388,339.77505,25.9765,963.7431,0.0,49.429295 +2023-07-23 19:00:00,1.2529964,1.4764823,331.38962,331.69934,26.6265,963.46906,0.0,46.95754 +2023-07-23 20:00:00,0.92195445,1.0630146,310.60123,311.18582,27.176498,963.1782,0.0,44.445126 +2023-07-23 21:00:00,1.0630146,1.2041595,318.81415,318.36655,27.5765,963.14795,0.0,41.620102 +2023-07-23 22:00:00,1.029563,1.2529964,299.0545,298.61035,27.7265,963.07733,0.0,39.8015 +2023-07-23 23:00:00,1.4035668,1.7029387,274.08554,273.3664,27.3765,962.7356,0.0,40.757988 +2023-07-24 00:00:00,0.8544004,1.029563,249.44386,240.94548,26.4765,962.8744,0.0,44.833427 +2023-07-24 01:00:00,1.1,1.360147,270.0,252.89719,24.926498,962.7154,0.0,66.786835 +2023-07-24 02:00:00,0.86023253,0.8544004,324.46225,290.55612,24.8765,963.0873,0.0,50.59537 +2023-07-24 03:00:00,1.3341664,1.0198039,77.00539,78.6901,23.2265,963.4789,0.0,57.70304 +2023-07-24 04:00:00,2.0808651,1.8601075,125.21768,126.25393,20.426498,963.29285,0.0,71.851776 +2023-07-24 05:00:00,2.408319,2.9410884,138.36655,144.6887,19.4765,963.1311,0.0,75.232475 +2023-07-24 06:00:00,1.9104972,3.6359317,137.12111,148.49579,19.4765,962.8464,0.0,74.269775 +2023-07-24 07:00:00,2.2472203,4.753946,159.14546,157.75093,19.3265,962.82074,0.0,75.69364 +2023-07-24 08:00:00,2.7018514,6.129437,177.87895,174.3825,19.3765,962.92413,0.0,73.064026 +2023-07-24 09:00:00,2.630589,6.0299253,171.25392,174.2895,19.026499,962.6746,0.0,72.5305 +2023-07-24 10:00:00,2.9120438,6.0876927,164.05453,165.73546,18.5765,962.3126,0.0,75.08377 +2023-07-24 11:00:00,2.8071337,6.412488,184.08554,183.57626,18.2265,963.3914,0.0,78.76092 +2023-07-24 12:00:00,2.6925824,5.1478148,158.19853,155.9245,19.026499,963.24414,0.0,79.63922 +2023-07-24 13:00:00,3.383785,6.2649817,161.0295,155.48038,21.5765,963.96216,0.0,72.751335 +2023-07-24 14:00:00,2.7294688,6.063827,171.57312,166.65126,23.9765,965.0285,0.0,67.8649 +2023-07-24 15:00:00,3.206244,4.4102154,176.42374,176.09958,25.926498,965.6354,0.0,62.343624 +2023-07-24 16:00:00,3.901282,5.1009803,178.53123,178.87672,27.4765,965.7933,0.0,54.971115 +2023-07-24 17:00:00,4.004997,5.2038445,182.86235,182.20255,28.426498,965.75684,0.0,50.072945 +2023-07-24 18:00:00,3.7215588,4.7265205,186.17007,186.07236,29.0765,965.8616,0.0,47.16215 +2023-07-24 19:00:00,3.5014284,4.4011364,181.63654,181.30193,29.6265,965.4742,0.0,44.68253 +2023-07-24 20:00:00,3.5014284,4.4045434,178.36346,177.39749,30.1265,965.45905,0.0,42.45779 +2023-07-24 21:00:00,3.2,4.1,180.0,180.0,30.3265,965.0153,0.0,41.839645 +2023-07-24 22:00:00,2.4515302,3.0594118,191.76826,191.30989,30.3265,964.73004,0.0,41.973457 +2023-07-24 23:00:00,2.1023796,2.6,182.72626,180.0,30.026499,964.5874,0.0,42.83882 +2023-07-25 00:00:00,2.2,3.3136082,180.0,174.80566,28.676498,965.4168,0.0,49.82203 +2023-07-25 01:00:00,1.4142135,3.275668,171.86998,167.66092,26.426498,964.8619,0.0,68.34852 +2023-07-25 02:00:00,2.6925824,3.5846896,148.67137,149.8587,23.526499,964.28876,0.0,73.55201 +2023-07-25 03:00:00,2.2825425,4.9739323,151.1893,149.82657,23.6265,964.6855,0.0,70.187416 +2023-07-25 04:00:00,2.607681,5.990826,147.52882,146.57516,23.2265,964.8086,0.0,71.001854 +2023-07-25 05:00:00,2.641969,6.4140472,150.5242,149.03632,22.676498,964.62177,0.0,73.17502 +2023-07-25 06:00:00,2.6925824,6.44748,158.19853,156.21796,22.2265,964.8313,0.0,75.203766 +2023-07-25 07:00:00,3.2015622,6.992138,165.52966,163.37917,21.8765,964.48755,0.0,77.79951 +2023-07-25 08:00:00,3.622154,7.7781744,173.6599,171.86998,21.6265,964.1606,0.0,79.24587 +2023-07-25 09:00:00,3.7013512,7.802564,181.54813,181.46877,21.3265,963.92004,0.0,82.251076 +2023-07-25 10:00:00,3.5,7.5,180.0,180.0,20.9765,963.7659,0.0,85.90134 +2023-07-25 11:00:00,3.5057096,7.5059977,176.72958,177.70944,20.676498,963.4302,0.0,88.326706 +2023-07-25 12:00:00,3.5128336,6.8359346,175.101,174.1227,21.0765,964.0675,0.0,87.26424 +2023-07-25 13:00:00,3.4014704,7.100704,178.31535,180.80692,22.6265,964.3287,0.0,83.958405 +2023-07-25 14:00:00,3.3,4.90408,180.0,182.33725,24.5765,964.653,0.0,78.92181 +2023-07-25 15:00:00,3.2202485,4.3462625,154.23073,156.97447,26.8265,963.88184,0.0,74.108444 +2023-07-25 16:00:00,5.011986,6.5764737,151.38963,151.87636,28.526499,963.49146,0.0,64.87826 +2023-07-25 17:00:00,6.0207973,7.9924965,147.89377,148.29861,29.6265,963.002,0.0,59.401264 +2023-07-25 18:00:00,6.315853,8.338465,156.68227,157.43295,30.3265,962.7331,0.0,56.1877 +2023-07-25 19:00:00,5.9615436,7.7999997,157.30617,157.3801,30.8765,962.1547,0.0,52.46679 +2023-07-25 20:00:00,6.139218,8.080842,167.77489,167.85574,30.8765,961.58405,0.0,52.95591 +2023-07-25 21:00:00,5.7558665,7.665507,172.01076,172.50424,30.6265,960.87897,0.0,57.306072 +2023-07-25 22:00:00,5.1662364,7.0092797,165.42575,165.96373,30.9765,959.8881,0.0,56.690617 +2023-07-25 23:00:00,5.3366656,7.35459,167.00539,168.23174,30.926498,959.59485,0.0,55.13419 +2023-07-26 00:00:00,3.3970575,6.0,137.38599,143.13002,29.5765,959.95135,0.0,64.113976 +2023-07-26 01:00:00,4.2201896,4.2720017,306.3269,302.57404,23.926498,961.41046,7.2,85.66382 +2023-07-26 02:00:00,4.588028,7.8771825,163.5399,159.95467,23.1265,958.9982,0.2,89.34704 +2023-07-26 03:00:00,6.1611686,10.394229,166.86597,168.90631,23.426498,958.858,0.0,86.141754 +2023-07-26 04:00:00,5.481788,9.610411,165.20319,167.98854,23.0765,958.04016,0.0,89.61761 +2023-07-26 05:00:00,6.4,10.900458,180.0,180.52562,23.276499,957.5983,0.0,89.90715 +2023-07-26 06:00:00,7.202777,12.1,178.40889,180.0,23.2265,956.4503,0.0,92.41042 +2023-07-26 07:00:00,6.9892774,11.795338,199.21277,198.28143,23.0765,956.1406,0.0,94.396255 +2023-07-26 08:00:00,4.4407206,8.417245,234.16226,223.55594,23.426498,956.2934,0.0,93.26938 +2023-07-26 09:00:00,3.2202482,6.1717095,216.15828,229.60017,21.176498,955.8243,6.3,96.97293 +2023-07-26 10:00:00,4.491102,8.041144,258.4399,259.24908,22.5765,955.86774,0.0,94.37571 +2023-07-26 11:00:00,3.3837848,6.6370173,304.15976,300.81564,22.0765,956.1645,0.0,96.10668 +2023-07-26 12:00:00,2.2022715,3.176476,39.47243,28.178495,21.7265,958.1002,0.0,94.922714 +2023-07-26 13:00:00,0.8062258,1.0049876,97.12492,84.2895,22.526499,958.1389,0.0,92.65554 +2023-07-26 14:00:00,0.86023253,1.0816654,234.46223,236.3099,24.276499,958.5234,0.0,86.75163 +2023-07-26 15:00:00,2.3086793,2.915476,274.96964,275.90604,26.0765,958.5328,0.0,81.57314 +2023-07-26 16:00:00,2.9068885,3.6124783,273.9451,274.76355,27.9765,958.5548,0.0,73.62654 +2023-07-26 17:00:00,2.6683328,3.3734255,282.99463,281.9761,29.676498,958.92126,0.0,67.12376 +2023-07-26 18:00:00,2.4166093,3.0463092,294.44394,293.1986,31.026499,959.22986,0.0,61.938354 +2023-07-26 19:00:00,2.4698179,3.1016126,291.3707,290.77234,32.0265,959.387,0.0,58.694508 +2023-07-26 20:00:00,2.9732137,3.828838,312.27362,310.76352,32.8765,959.51965,0.0,56.455353 +2023-07-26 21:00:00,3.758989,4.9739323,331.38962,329.82657,33.2765,959.2965,0.0,51.31907 +2023-07-26 22:00:00,3.5846896,4.8332186,337.01126,335.55606,33.226498,959.38403,0.0,48.10799 +2023-07-26 23:00:00,3.0870697,4.4777226,335.09525,336.29733,32.5765,959.0924,0.0,52.570824 +2023-07-27 00:00:00,0.8062258,1.118034,60.255207,63.435013,32.0765,959.29987,0.0,59.06238 +2023-07-27 01:00:00,1.3341664,1.3152945,102.99462,98.74608,29.9765,959.15906,0.0,75.744194 +2023-07-27 02:00:00,0.8062258,0.72801095,60.255207,74.054535,30.176498,959.5712,0.0,62.317875 +2023-07-27 03:00:00,1.9697715,2.0248458,156.0375,147.09476,26.0765,959.48303,0.0,81.07956 +2023-07-27 04:00:00,1.868154,4.1231055,164.47583,165.96373,25.5765,959.40173,0.0,83.77161 +2023-07-27 05:00:00,2.1213202,4.7518415,171.86998,171.52895,25.0765,959.3198,0.0,83.46129 +2023-07-27 06:00:00,3.522783,7.665507,186.5197,187.49576,25.3265,959.3608,0.0,76.63917 +2023-07-27 07:00:00,3.9849718,8.25409,197.52567,199.09358,25.6265,959.6,0.0,72.329124 +2023-07-27 08:00:00,3.9217343,7.8294315,199.35909,204.92845,25.3765,958.7038,0.0,75.70986 +2023-07-27 09:00:00,3.7696154,7.7369246,201.80147,206.89616,24.6265,958.67596,0.0,80.893814 +2023-07-27 10:00:00,3.8275316,7.782673,199.8553,207.55272,24.3265,958.5316,0.0,81.35383 +2023-07-27 11:00:00,2.9732137,6.9354167,199.65392,204.71742,23.926498,959.03564,0.0,82.31132 +2023-07-27 12:00:00,5.6008925,9.651943,181.02301,185.94676,25.176498,959.4311,0.0,80.717445 +2023-07-27 13:00:00,6.6,11.535164,180.0,184.47481,26.276499,959.4208,0.0,79.64163 +2023-07-27 14:00:00,5.0159745,7.9762144,184.57384,187.92683,27.926498,958.73706,0.0,70.33681 +2023-07-27 15:00:00,5.186521,7.7162166,199.13374,198.90466,29.926498,959.2463,0.0,64.188095 +2023-07-27 16:00:00,5.7384667,7.839005,202.5431,203.29459,30.8265,959.7693,0.0,59.495277 +2023-07-27 17:00:00,6.6940274,9.192388,193.82867,194.4898,31.926498,959.6567,0.0,55.886616 +2023-07-27 18:00:00,6.140033,8.256513,196.07364,196.89873,32.6265,959.2906,0.0,60.26672 +2023-07-27 19:00:00,6.2393913,8.430896,201.63095,202.30626,33.5765,959.05774,0.0,61.20536 +2023-07-27 20:00:00,5.5217752,7.323933,215.41714,214.9921,34.1765,958.7696,0.0,56.763718 +2023-07-27 21:00:00,3.8418746,5.2801514,218.65984,217.30403,34.476498,958.05475,0.1,54.33632 +2023-07-27 22:00:00,2.6627054,3.2526913,34.286938,44.999897,28.1265,958.19855,5.4,72.985634 +2023-07-27 23:00:00,3.8118236,5.60803,184.5139,201.99118,24.7265,958.21735,12.2,80.1653 +2023-07-28 00:00:00,3.2557642,5.920304,227.4896,232.54935,33.2765,958.8208,0.0,56.55053 +2023-07-28 01:00:00,5.9665737,10.288342,193.57045,195.79247,30.526499,958.0099,0.0,62.016457 +2023-07-28 02:00:00,5.0477715,9.48736,213.6901,212.51749,29.176498,957.9861,0.0,67.22817 +2023-07-28 03:00:00,8.544589,13.813399,34.9921,32.884754,20.6265,960.7637,2.5,96.66103 +2023-07-28 04:00:00,5.0249376,5.5803227,137.41954,143.74608,21.426498,959.759,0.1,95.4981 +2023-07-28 05:00:00,6.723095,11.264546,149.62096,144.75789,21.526499,959.8709,0.0,92.88834 +2023-07-28 06:00:00,5.6302757,9.507892,160.27763,157.75093,22.1265,959.97144,0.0,90.37979 +2023-07-28 07:00:00,3.667424,6.6753273,191.0035,188.61557,22.2265,959.41833,0.0,90.10847 +2023-07-28 08:00:00,4.049691,7.7491937,200.22495,199.60417,22.176498,959.125,0.0,90.66229 +2023-07-28 09:00:00,2.0024984,2.5079873,2.8623457,355.42615,21.5765,959.4044,0.0,94.33429 +2023-07-28 10:00:00,1.8439089,3.920459,40.601215,37.746864,21.176498,959.71704,0.0,96.97293 +2023-07-28 11:00:00,0.70710677,2.1023796,351.87,25.346138,21.2265,960.2952,0.0,97.27298 +2023-07-28 12:00:00,2.4515302,3.420526,348.23172,344.7448,20.4765,960.928,0.0,98.46822 +2023-07-28 13:00:00,2.6400757,3.0805843,37.30404,35.75398,21.3265,961.8312,0.0,95.20084 +2023-07-28 14:00:00,3.720215,4.661545,36.253937,35.39489,22.276499,962.4654,0.0,91.228966 +2023-07-28 15:00:00,4.2801867,5.420332,37.405437,37.504215,23.2265,962.4341,0.0,88.26556 +2023-07-28 16:00:00,4.103657,5.307542,43.02507,42.709366,24.5765,962.65796,0.0,84.688705 +2023-07-28 17:00:00,3.9962482,5.1107726,58.29862,59.420856,26.276499,963.032,0.0,78.91865 +2023-07-28 18:00:00,3.3615475,4.2544093,59.620956,60.42226,27.3765,963.1157,0.0,75.79353 +2023-07-28 19:00:00,2.842534,3.6400552,50.710617,52.81522,27.9765,963.1175,0.0,73.84993 +2023-07-28 20:00:00,3.1064448,3.9115214,33.178535,32.471172,28.3765,963.1821,0.0,71.713684 +2023-07-28 21:00:00,2.886174,3.5902646,14.036275,12.875007,28.926498,963.17535,0.0,67.79435 +2023-07-28 22:00:00,3.7,4.9040794,18.924751,16.58742,28.276499,963.07086,0.1,68.28921 +2023-07-28 23:00:00,5.1971145,7.256721,11.093693,11.929298,28.1265,963.61694,0.0,65.193855 +2023-07-29 00:00:00,6.26099,9.441399,26.564985,28.465076,24.776499,964.4959,0.0,70.40299 +2023-07-29 01:00:00,4.3908997,7.600658,30.068504,32.644634,23.1265,964.22205,0.0,73.02322 +2023-07-29 02:00:00,4.1761227,7.7491937,16.699326,19.60419,21.676498,964.5489,0.0,76.5525 +2023-07-29 03:00:00,3.5510561,7.0092797,9.727519,14.036275,20.5765,965.4071,0.0,79.60092 +2023-07-29 04:00:00,3.9,7.5538073,360.0,6.842679,19.8765,966.14197,0.0,80.26664 +2023-07-29 05:00:00,3.4234486,6.9123073,6.70975,14.237315,19.276499,966.7985,0.0,83.846115 +2023-07-29 06:00:00,3.4058774,6.8593006,356.6336,7.5393586,18.8765,967.5839,0.0,85.41819 +2023-07-29 07:00:00,3.5014284,7.218033,1.6365454,10.375799,18.6265,967.73096,0.0,84.84929 +2023-07-29 08:00:00,3.3136082,6.802941,354.80566,1.6846573,18.026499,967.5321,0.0,86.70649 +2023-07-29 09:00:00,2.720294,5.9076223,342.8972,357.0892,17.3265,967.6001,0.0,86.084145 +2023-07-29 10:00:00,2.9120438,6.2128897,344.05453,356.3087,16.8265,967.7975,0.0,83.56517 +2023-07-29 11:00:00,3.1384711,6.5115285,337.5205,349.3804,16.276499,968.1756,0.0,81.35156 +2023-07-29 12:00:00,4.022437,7.155418,325.1246,333.43503,16.426498,969.4353,0.0,89.68383 +2023-07-29 13:00:00,4.2059484,8.5615425,331.6071,337.3286,17.2265,969.8598,0.0,88.03346 +2023-07-29 14:00:00,4.0521603,5.869412,344.24875,346.2005,18.7265,969.6461,0.0,87.04918 +2023-07-29 15:00:00,4.535416,5.9439044,345.9637,347.36664,20.4765,969.662,0.0,83.98115 +2023-07-29 16:00:00,4.472136,5.7870545,349.69522,350.04944,21.926498,970.38324,0.0,78.297874 +2023-07-29 17:00:00,4.1773195,5.2952805,348.95908,349.11453,22.926498,970.64703,0.0,71.62142 +2023-07-29 18:00:00,4.002499,5.021952,347.00537,347.34744,23.676498,970.108,0.0,68.2345 +2023-07-29 19:00:00,4.1785164,5.2201533,338.9624,339.82925,24.3265,969.9314,0.0,66.245476 +2023-07-29 20:00:00,4.5188494,5.6859474,335.13632,336.1398,24.4765,969.95654,0.0,65.65303 +2023-07-29 21:00:00,4.304649,5.5569777,329.2646,329.74365,24.4765,969.8616,0.0,64.8298 +2023-07-29 22:00:00,4.565085,5.905929,331.1893,331.69934,24.276499,969.63806,0.0,63.568306 +2023-07-29 23:00:00,4.438468,5.7939625,337.4794,338.74942,23.7265,969.5464,0.0,62.844612 +2023-07-30 00:00:00,3.956008,5.4571056,343.8556,346.21838,22.5765,969.82825,0.0,66.515274 +2023-07-30 01:00:00,3.1384711,5.536244,337.5205,339.92838,21.2265,969.50507,0.0,72.68939 +2023-07-30 02:00:00,2.8178005,5.9464273,332.52567,340.3461,19.4765,969.3008,0.0,74.990776 +2023-07-30 03:00:00,2.84605,6.1188235,341.56494,348.6901,18.3265,969.4819,0.0,76.268936 +2023-07-30 04:00:00,2.0615528,5.323533,345.9637,354.61078,17.276499,969.2994,0.0,78.878716 +2023-07-30 05:00:00,1.8788295,4.8373547,334.79892,352.87506,16.3765,969.4264,0.0,81.63044 +2023-07-30 06:00:00,1.9104972,4.365776,312.8789,339.90466,15.8265,969.804,0.0,82.9049 +2023-07-30 07:00:00,1.6970563,3.8897302,315.0001,342.03076,15.0265,969.47284,0.0,85.291664 +2023-07-30 08:00:00,1.6278821,3.9293766,317.4896,345.25638,14.5265,968.8148,0.0,86.08387 +2023-07-30 09:00:00,1.6492423,3.2015622,284.03625,321.34018,14.8765,968.97205,0.0,83.336525 +2023-07-30 10:00:00,1.8788295,3.3941126,295.20108,315.0001,14.1265,968.8386,0.0,86.6126 +2023-07-30 11:00:00,1.9849433,4.356604,310.91428,328.13406,13.9765005,968.9067,0.0,85.7448 +2023-07-30 12:00:00,2.1023796,3.8209946,334.65387,353.9911,14.7765,969.3335,0.0,84.985565 +2023-07-30 13:00:00,1.7,2.6925824,298.0724,338.19852,16.526499,969.7373,0.0,81.119255 +2023-07-30 14:00:00,1.8027756,2.5317976,3.179772,9.090207,18.2265,969.84436,0.0,76.50057 +2023-07-30 15:00:00,1.9924859,2.5,342.47433,343.73972,19.8765,970.69836,0.0,72.44873 +2023-07-30 16:00:00,1.5811388,1.868154,341.56494,344.47583,21.0765,970.61865,0.0,68.59128 +2023-07-30 17:00:00,1.3038404,1.603122,355.60138,356.42374,22.276499,970.6323,0.0,63.945095 +2023-07-30 18:00:00,0.70710677,0.84852815,315.0001,315.0001,23.176498,970.21423,0.0,61.13458 +2023-07-30 19:00:00,0.7211103,0.8062258,326.3099,330.25522,23.5765,969.8062,0.0,58.53684 +2023-07-30 20:00:00,1.118034,1.3341664,10.304792,12.99463,24.276499,969.44806,0.0,59.0805 +2023-07-30 21:00:00,0.8062258,0.9433981,60.255207,57.99466,24.676498,968.65955,0.0,59.36383 +2023-07-30 22:00:00,1.0770329,1.3000001,68.19853,67.3801,24.9765,968.04425,0.0,58.869793 +2023-07-30 23:00:00,1.4317821,1.746425,77.90526,76.75947,24.8765,967.5526,0.0,59.410786 +2023-07-31 00:00:00,2.2847319,2.8792362,66.80139,69.67678,23.8765,967.95667,0.0,64.70177 +2023-07-31 01:00:00,2.3600848,4.527693,53.61555,59.470375,22.526499,968.0156,0.0,73.611916 +2023-07-31 02:00:00,3.0675724,6.2361846,70.974304,74.18075,20.7265,967.9008,0.0,76.403786 +2023-07-31 03:00:00,3.0149627,6.3505907,84.2895,82.763176,19.8265,968.0319,0.0,77.74001 +2023-07-31 04:00:00,2.6019223,6.1008196,92.20255,90.93917,19.1265,968.1016,0.0,77.884445 +2023-07-31 05:00:00,2.5495098,5.885576,101.3099,99.78234,18.526499,968.09296,0.0,78.80436 +2023-07-31 06:00:00,2.2135942,5.481788,108.43504,104.79681,18.026499,968.1015,0.0,80.79268 +2023-07-31 07:00:00,2.1260293,5.161395,138.81418,125.537766,17.676498,968.1355,0.0,83.126236 +2023-07-31 08:00:00,2.5238857,5.8523498,123.6901,123.14701,17.776499,967.96313,0.0,82.870766 +2023-07-31 09:00:00,2.641969,6.1294374,119.4758,118.23736,17.4765,967.7214,0.0,83.37104 +2023-07-31 10:00:00,2.5806975,6.074537,125.537766,122.90524,17.176498,967.85864,0.0,83.60574 +2023-07-31 11:00:00,2.8319604,6.3702435,132.13753,132.45515,17.3265,968.2643,0.0,81.75194 +2023-07-31 12:00:00,3.2649658,6.0827627,152.6502,152.59251,17.6265,969.1707,0.0,83.38861 +2023-07-31 13:00:00,2.758623,6.8242216,133.53127,145.14548,18.3765,969.20575,0.0,82.9426 +2023-07-31 14:00:00,2.6627054,6.0108232,124.286934,135.67395,19.4765,969.3008,0.0,79.44749 +2023-07-31 15:00:00,3.0413814,4.1773195,136.33215,137.91092,21.276499,969.32355,0.0,74.57298 +2023-07-31 16:00:00,3.764306,4.8600416,140.38934,143.3658,23.1265,969.44586,0.0,67.6948 +2023-07-31 17:00:00,3.2557642,4.172529,132.5104,134.02907,24.3265,969.2664,0.0,66.03695 +2023-07-31 18:00:00,3.0528674,3.8275318,121.60746,123.2749,25.3265,968.76715,0.0,64.80654 +2023-07-31 19:00:00,3.130495,3.8013155,116.56499,116.56499,26.0765,968.2255,0.0,63.5601 +2023-07-31 20:00:00,2.9410882,3.7,107.818985,108.92474,26.4765,968.00616,0.0,63.053787 +2023-07-31 21:00:00,2.8792362,3.5468295,110.32322,111.501495,26.526499,967.82416,0.0,63.261845 +2023-07-31 22:00:00,2.5942245,3.3120992,117.552734,118.88649,26.4765,967.62604,0.0,62.66114 +2023-07-31 23:00:00,3.0528674,3.9115214,121.60746,122.471176,26.276499,967.30835,0.0,61.837513 +2023-08-01 00:00:00,2.1633308,3.5805027,123.6901,125.90981,25.6265,967.58154,0.0,65.89255 +2023-08-01 01:00:00,2.2847319,4.7853947,113.198616,116.02953,24.426498,967.4779,0.0,71.22222 +2023-08-01 02:00:00,3.026549,6.041523,97.59455,102.425934,22.676498,967.6609,0.0,75.276985 +2023-08-01 03:00:00,4.002499,7.569016,102.99462,105.32157,21.8265,967.8974,0.0,72.10516 +2023-08-01 04:00:00,3.7161808,7.602631,113.80595,116.56499,21.3265,967.8129,0.0,70.197716 +2023-08-01 05:00:00,3.4409301,7.2201114,125.537766,126.55257,20.8765,967.7363,0.0,71.24569 +2023-08-01 06:00:00,3.4713109,7.247068,138.50363,140.59937,20.4765,967.66833,0.0,75.63728 +2023-08-01 07:00:00,3.9357338,7.915807,152.78398,153.75871,20.426498,967.4699,0.0,80.851395 +2023-08-01 08:00:00,3.9217343,7.816009,160.64091,163.65175,20.426498,967.5649,0.0,83.447624 +2023-08-01 09:00:00,3.3955853,7.0035706,166.37299,170.13426,20.3265,967.6427,0.0,84.49558 +2023-08-01 10:00:00,2.8442926,6.2289643,169.8754,174.47255,20.026499,967.87634,0.0,87.443535 +2023-08-01 11:00:00,3.3136082,6.8066144,174.80566,177.47394,19.9765,967.8677,0.0,89.10397 +2023-08-01 12:00:00,3.2893767,6.258594,160.46326,167.074,19.9765,967.77277,0.0,91.653595 +2023-08-01 13:00:00,2.84605,5.824946,161.56496,168.11136,21.276499,968.1842,0.0,88.65209 +2023-08-01 14:00:00,3.6055512,5.0289164,160.55988,162.64589,22.676498,968.4206,0.0,84.74793 +2023-08-01 15:00:00,4.0261645,5.3600373,165.61858,165.96373,23.8765,968.24164,0.0,82.05215 +2023-08-01 16:00:00,4.554119,5.9539905,171.15826,172.27826,25.3265,968.1971,0.0,75.00562 +2023-08-01 17:00:00,4.244997,5.554278,164.98158,166.46413,26.026499,967.9325,0.0,70.634895 +2023-08-01 18:00:00,4.2720017,5.6044626,163.68607,164.47583,26.8265,967.5883,0.0,66.14009 +2023-08-01 19:00:00,4.2201896,5.531727,166.29301,167.4712,27.526499,967.32196,0.0,62.30934 +2023-08-01 20:00:00,4.219004,5.5226803,174.55975,174.80566,27.6265,967.05304,0.0,61.37161 +2023-08-01 21:00:00,4.3104525,5.6142673,183.99083,184.08554,28.026499,966.54785,0.0,59.954956 +2023-08-01 22:00:00,3.905125,5.2153616,182.93561,184.39862,28.1265,965.9934,0.0,59.42166 +2023-08-01 23:00:00,3.1256998,4.418144,172.64772,174.80566,27.8765,965.57275,0.0,60.48184 +2023-08-02 00:00:00,2.8319604,4.1773195,132.13753,137.91092,26.2265,965.8746,0.0,67.05027 +2023-08-02 01:00:00,2.5238857,5.220153,123.6901,126.430954,24.9765,965.574,0.0,72.88953 +2023-08-02 02:00:00,3.324154,6.71193,111.16133,114.65588,23.8265,965.1934,0.0,74.76063 +2023-08-02 03:00:00,3.8327537,7.6537576,105.12406,107.48808,23.2265,965.66345,0.0,75.60209 +2023-08-02 04:00:00,3.6674242,7.6157727,115.8663,119.93143,22.6265,965.8482,0.0,77.91056 +2023-08-02 05:00:00,3.2649655,6.9310894,130.0302,136.16905,22.676498,965.95135,0.0,80.13884 +2023-08-02 06:00:00,3.3120992,6.708204,151.11351,153.43501,22.8765,965.70013,0.0,81.67518 +2023-08-02 07:00:00,3.6345563,7.48131,172.09293,171.54506,22.3765,964.95123,0.0,85.507935 +2023-08-02 08:00:00,3.306055,6.906519,176.53185,177.5105,21.8265,964.384,0.0,89.2477 +2023-08-02 09:00:00,4.101219,7.900633,178.60284,180.7252,21.526499,963.7639,0.0,91.74722 +2023-08-02 10:00:00,4.3011627,8.01561,181.33218,183.57626,21.676498,963.69434,0.0,92.324615 +2023-08-02 11:00:00,3.4132097,6.8593006,185.04236,187.53935,21.3265,963.4453,0.0,94.615395 +2023-08-02 12:00:00,2.6925824,4.920366,111.801476,127.568665,20.9765,963.1963,0.0,97.26788 +2023-08-02 13:00:00,3.764306,5.060632,140.38934,142.22426,22.776499,964.3537,0.4,92.66885 +2023-08-02 14:00:00,3.1890438,4.404543,138.81418,140.52757,22.4765,964.3983,0.1,94.371574 +2023-08-02 15:00:00,2.3,2.9,180.0,180.0,24.026499,964.2767,0.0,87.52689 +2023-08-02 16:00:00,1.3928387,1.7262677,68.96242,79.99209,24.676498,964.66943,0.1,84.183876 +2023-08-02 17:00:00,2.624881,3.1016126,17.744766,20.772345,23.426498,964.462,1.3,87.47414 +2023-08-02 18:00:00,6.177378,8.130191,29.054508,31.930645,21.776499,964.47076,0.3,94.63321 +2023-08-02 19:00:00,3.9597979,5.0931325,44.999897,46.5911,23.176498,964.42053,0.0,85.32537 +2023-08-02 20:00:00,2.1213202,2.6172504,81.86999,83.41815,25.676498,964.26416,0.0,75.75731 +2023-08-02 21:00:00,1.8601075,2.302173,143.74608,145.6196,26.7265,963.86536,0.0,73.86573 +2023-08-02 22:00:00,2.1931713,2.6925824,155.77226,158.19853,27.3265,963.5827,0.0,69.15764 +2023-08-02 23:00:00,1.6155494,2.0248456,158.19853,159.77505,27.5765,963.3381,0.0,67.3209 +2023-08-03 00:00:00,2.1,2.7,180.0,180.0,26.8765,963.6046,0.0,69.49802 +2023-08-03 01:00:00,1.0049876,2.4020824,185.7105,182.3859,25.676498,963.599,0.0,81.52335 +2023-08-03 02:00:00,2.0223749,2.7166157,171.46931,173.6599,23.426498,963.6071,0.0,88.55298 +2023-08-03 03:00:00,1.5811388,3.8078866,161.56496,166.32867,23.0765,963.9288,0.0,88.2531 +2023-08-03 04:00:00,1.868154,4.632494,164.47583,166.26372,22.426498,963.91516,0.0,89.5693 +2023-08-03 05:00:00,1.603122,3.9115217,176.42374,175.60138,21.8765,963.8229,0.0,90.642075 +2023-08-03 06:00:00,1.9,4.4045434,180.0,182.60251,21.6265,963.8757,0.0,90.06577 +2023-08-03 07:00:00,1.811077,4.3931766,186.3401,191.82146,21.1265,963.6963,0.0,91.43907 +2023-08-03 08:00:00,1.6763055,3.8483763,197.35411,204.56715,20.676498,963.62006,0.0,92.55585 +2023-08-03 09:00:00,1.7088008,3.6235344,200.55612,207.97939,20.426498,963.8624,0.0,93.7016 +2023-08-03 10:00:00,1.9235383,1.9235384,188.97255,207.89717,19.426498,963.4072,0.0,96.029175 +2023-08-03 11:00:00,1.2041595,1.3928387,184.76355,201.03758,19.9765,963.5011,0.0,96.04544 +2023-08-03 12:00:00,0.98488575,0.1,203.9625,180.0,20.8265,964.0255,0.0,95.77383 +2023-08-03 13:00:00,1.1661904,0.31622776,239.0363,198.43504,23.2265,964.7136,0.0,90.73245 +2023-08-03 14:00:00,0.31622776,0.4,341.56494,360.0,24.8765,965.55743,0.0,81.923 +2023-08-03 15:00:00,0.72801095,0.94868326,105.945465,108.43504,25.9765,965.8336,0.0,74.88069 +2023-08-03 16:00:00,0.98488575,1.2529964,113.962494,118.61037,26.926498,965.70374,0.0,67.81595 +2023-08-03 17:00:00,1.118034,1.3152945,100.30479,98.74608,27.6265,965.43713,0.1,61.945942 +2023-08-03 18:00:00,1.1401755,1.3601471,127.875046,126.027466,28.026499,964.9319,0.0,59.583454 +2023-08-03 19:00:00,0.94868326,1.17047,161.56496,160.0168,28.276499,964.68695,0.1,57.63564 +2023-08-03 20:00:00,0.22360681,0.31622776,153.43501,161.56496,28.526499,964.63226,0.1,56.804 +2023-08-03 21:00:00,0.53851646,0.53851646,338.19852,338.19852,28.676498,964.18097,0.0,56.487225 +2023-08-03 22:00:00,0.9055385,1.104536,353.6599,354.80566,28.676498,963.7056,0.0,57.194916 +2023-08-03 23:00:00,0.8062258,1.0049876,352.87506,354.2895,28.5765,963.8796,0.0,57.349167 +2023-08-04 00:00:00,0.92195445,1.1313709,40.601215,44.999897,27.8765,963.7668,0.0,59.920444 +2023-08-04 01:00:00,1.3601471,1.4866068,36.027473,42.27363,26.2265,963.5938,0.0,78.67188 +2023-08-04 02:00:00,1.431782,1.6278821,24.775122,42.510403,26.0765,963.56915,0.0,65.575836 +2023-08-04 03:00:00,1.3892444,1.56205,59.743652,50.194473,25.8265,964.0035,0.0,64.50781 +2023-08-04 04:00:00,0.53851646,0.70710677,158.19853,44.999897,25.1265,964.07855,0.0,67.45773 +2023-08-04 05:00:00,0.94868326,0.22360681,198.43504,153.43501,22.4765,963.7335,0.0,81.62501 +2023-08-04 06:00:00,1.6401219,0.92195445,217.56866,229.39879,20.776499,963.4472,0.0,90.28573 +2023-08-04 07:00:00,1.17047,0.86023253,250.0168,305.53775,20.5765,963.50836,0.0,91.40479 +2023-08-04 08:00:00,1.118034,1.6124516,280.30478,7.12493,20.676498,963.4302,0.0,88.603294 +2023-08-04 09:00:00,0.9055385,1.0440307,263.6599,16.699326,20.5765,963.4134,0.0,86.13149 +2023-08-04 10:00:00,1.4422206,1.7262677,303.6901,10.007925,20.3765,963.1894,0.0,85.84155 +2023-08-04 11:00:00,1.9104973,3.5735137,353.9911,17.92802,19.3265,963.1055,0.0,90.18318 +2023-08-04 12:00:00,1.4560219,3.920459,15.945477,37.746864,20.1265,962.95715,0.0,91.949646 +2023-08-04 13:00:00,0.9055385,2.1954498,6.3401003,59.93151,21.776499,963.901,0.0,86.786385 +2023-08-04 14:00:00,2.0124612,2.9832866,26.564985,39.55964,23.5765,964.0121,0.0,81.25869 +2023-08-04 15:00:00,2.4207437,3.0805843,51.709793,54.246033,24.926498,964.33057,0.0,77.05126 +2023-08-04 16:00:00,2.5079873,3.1016126,66.50142,69.22767,26.3265,964.65533,0.0,72.008026 +2023-08-04 17:00:00,2.6925821,3.3734255,74.931465,78.02389,27.676498,964.4948,0.0,66.31396 +2023-08-04 18:00:00,2.630589,3.354102,98.74608,100.30479,28.526499,964.1569,0.1,56.98125 +2023-08-04 19:00:00,2.8017852,3.5057096,92.045364,93.270424,28.776499,963.81683,0.0,53.254795 +2023-08-04 20:00:00,3.1064448,3.9115217,93.691315,94.39862,29.026499,963.1913,0.0,51.99749 +2023-08-04 21:00:00,2.9614186,3.6878178,101.68935,102.5288,29.1265,963.11224,0.0,51.53551 +2023-08-04 22:00:00,3.1064448,3.9115217,93.691315,94.39862,28.8265,962.87396,0.0,51.783344 +2023-08-04 23:00:00,3.4058774,4.9010205,86.63361,88.830894,28.1265,962.38116,0.0,55.65273 +2023-08-05 00:00:00,3.8209946,6.2513995,96.00892,97.35229,27.3265,962.5372,0.0,62.45884 +2023-08-05 01:00:00,2.624881,4.7127485,49.635548,72.718414,23.8765,962.6372,0.9,76.41551 +2023-08-05 02:00:00,2.2022717,5.178803,92.60251,100.00792,24.1265,962.3936,0.0,75.51079 +2023-08-05 03:00:00,3.420526,6.8007355,105.25517,107.10281,24.3265,962.71155,0.0,76.72246 +2023-08-05 04:00:00,3.49285,7.068239,113.62939,115.11481,23.8765,962.82715,0.0,78.336266 +2023-08-05 05:00:00,4.1146083,8.013114,115.94224,119.12396,23.3265,962.8308,0.0,79.48244 +2023-08-05 06:00:00,3.7443287,4.8600416,304.1145,306.6342,20.8265,963.4558,6.2,87.78892 +2023-08-05 07:00:00,3.0870697,4.9578223,114.90474,138.27058,19.8265,963.2857,5.0,92.79923 +2023-08-05 08:00:00,3.3301651,6.521503,138.65233,144.3601,20.1265,962.57745,0.6,91.37661 +2023-08-05 09:00:00,3.2449963,6.328507,146.3099,148.5705,19.8765,962.91455,0.8,92.51211 +2023-08-05 10:00:00,3.6069376,6.96563,133.87679,140.82635,19.526499,962.7599,0.1,93.36677 +2023-08-05 11:00:00,2.9732137,5.936329,137.72638,147.38077,19.276499,962.7172,0.0,94.8298 +2023-08-05 12:00:00,2.9832866,6.0307546,129.55963,139.70793,21.176498,962.94525,0.0,93.44676 +2023-08-05 13:00:00,3.5846896,6.6287255,112.98875,123.92984,22.4765,963.25867,0.0,88.74878 +2023-08-05 14:00:00,5.0477715,6.6850576,123.6901,124.641014,23.276499,963.4872,0.0,84.29004 +2023-08-05 15:00:00,5.5317264,7.528612,139.39879,140.38934,24.776499,963.73584,0.0,75.84867 +2023-08-05 16:00:00,6.224147,8.421994,136.30188,137.406,25.026499,963.587,0.1,68.71438 +2023-08-05 17:00:00,6.3411355,8.420214,142.04572,142.72174,25.8765,963.53656,0.0,63.516647 +2023-08-05 18:00:00,6.762396,9.183136,141.6048,141.63248,25.8265,963.2433,0.0,62.714005 +2023-08-05 19:00:00,6.2128897,8.598255,146.82147,146.86438,25.776499,962.6649,0.0,62.702972 +2023-08-05 20:00:00,6.6287255,9.042676,146.07016,147.18864,26.2265,962.8336,0.1,59.350964 +2023-08-05 21:00:00,5.966573,8.246211,140.44037,140.90616,25.6265,962.2605,0.0,59.210423 +2023-08-05 22:00:00,5.5865912,8.132035,135.72514,135.49815,25.176498,962.09143,0.1,59.670177 +2023-08-05 23:00:00,5.5317264,8.504117,139.39879,138.81418,23.0765,961.6493,0.6,69.42203 +2023-08-06 00:00:00,4.2953463,8.095678,114.775116,115.61544,22.926498,961.43445,1.0,64.497734 +2023-08-06 01:00:00,4.2720017,7.605919,110.55613,114.88035,22.276499,961.4208,0.8,70.60129 +2023-08-06 02:00:00,4.527693,8.492938,96.340096,102.2361,21.0765,960.93427,0.6,78.66964 +2023-08-06 03:00:00,5.1,9.353609,90.0,96.13717,20.676498,960.4871,0.8,80.884186 +2023-08-06 04:00:00,4.9497476,9.219544,98.13002,102.5288,20.3765,960.34143,0.5,81.101295 +2023-08-06 05:00:00,5.124451,9.535197,95.59925,99.65983,20.026499,960.18726,0.8,81.055786 +2023-08-06 06:00:00,6.140033,10.688779,96.546196,100.78425,19.426498,959.70544,0.7,81.49547 +2023-08-06 07:00:00,6.412488,10.6794195,93.57626,96.99184,19.2265,959.3867,0.3,79.66704 +2023-08-06 08:00:00,6.1008196,10.1242285,89.06083,93.96458,18.6265,958.6202,0.6,81.132095 +2023-08-06 09:00:00,5.8077536,9.80816,87.03913,92.33726,17.926498,958.6898,6.5,86.69697 +2023-08-06 10:00:00,6.6219335,10.885311,75.124275,79.412735,17.7265,957.8016,8.8,90.64443 +2023-08-06 11:00:00,6.705222,10.938465,72.64589,75.70964,17.526499,957.2926,6.5,92.381424 +2023-08-06 12:00:00,5.2430906,8.723532,55.09743,61.96625,17.776499,959.23334,1.7,90.35944 +2023-08-06 13:00:00,5.269725,8.5,56.611465,61.92762,17.776499,959.518,1.3,92.984566 +2023-08-06 14:00:00,5.1662364,8.246211,47.353336,50.906155,17.8265,959.62146,0.2,91.8127 +2023-08-06 15:00:00,6.5053825,9.343447,44.999897,47.602608,18.8265,959.793,0.0,87.89153 +2023-08-06 16:00:00,6.0959,8.631338,41.00899,43.122143,19.0765,960.02563,0.0,89.31494 +2023-08-06 17:00:00,6.5115285,9.0609045,47.489597,47.683834,19.176498,960.3274,0.9,91.02942 +2023-08-06 18:00:00,4.604346,6.3820057,34.3804,35.4334,19.176498,960.1376,2.2,93.937706 +2023-08-06 19:00:00,5.1107726,7.1344237,30.579157,31.239157,19.3265,959.9733,0.5,93.94444 +2023-08-06 20:00:00,4.909175,6.6287255,33.366394,33.92984,20.2265,960.2213,0.1,87.46141 +2023-08-06 21:00:00,4.770744,6.4350605,33.023872,32.94922,19.776499,960.23956,0.9,88.251236 +2023-08-06 22:00:00,4.464303,6.140033,15.5928755,16.073652,20.1265,960.489,0.7,86.35883 +2023-08-06 23:00:00,4.3908997,6.488451,30.068504,28.539894,19.776499,960.999,0.5,84.97171 +2023-08-07 00:00:00,5.0,7.9699435,16.26028,17.52567,18.8765,961.1302,1.3,90.15107 +2023-08-07 01:00:00,5.1264024,8.099382,20.556128,20.224945,18.776499,961.58777,0.8,92.160126 +2023-08-07 02:00:00,4.317406,7.106335,13.392516,13.840727,18.526499,962.1142,0.3,94.20508 +2023-08-07 03:00:00,4.1,7.1028166,360.0,1.6135141,18.3765,962.5628,0.2,94.79502 +2023-08-07 04:00:00,3.1144822,6.000833,354.47253,359.04517,18.026499,962.5977,0.2,90.37704 +2023-08-07 05:00:00,1.7720045,4.491102,343.61038,348.4399,17.526499,962.4163,0.0,93.86297 +2023-08-07 06:00:00,2.8017852,5.635601,325.17545,332.52567,17.426498,962.30414,0.0,96.57982 +2023-08-07 07:00:00,3.5468295,6.3820057,319.574,324.5666,17.026499,962.4245,0.0,97.80476 +2023-08-07 08:00:00,3.3241541,6.2008066,316.2188,322.206,16.6265,962.1653,0.0,97.798065 +2023-08-07 09:00:00,3.3970575,6.3890533,312.614,320.07965,16.5765,962.1568,0.0,97.79725 +2023-08-07 10:00:00,3.2015622,6.2433968,321.34018,328.09195,16.5765,962.0619,0.0,97.486046 +2023-08-07 11:00:00,3.3421547,6.3812227,321.07245,327.8043,16.676498,962.5536,0.0,97.17794 +2023-08-07 12:00:00,3.7443287,6.574192,325.8855,333.82477,16.926498,962.78656,0.0,98.11433 +2023-08-07 13:00:00,4.4777226,6.26099,330.57263,333.43503,17.426498,963.34784,0.0,95.96914 +2023-08-07 14:00:00,4.7169905,6.2393913,338.8752,338.36905,18.3765,963.7016,0.0,91.26567 +2023-08-07 15:00:00,4.1231055,5.664804,337.1663,339.3255,19.526499,963.99384,0.0,89.63146 +2023-08-07 16:00:00,4.2426405,5.4589376,351.87,351.57312,21.176498,964.36945,0.0,79.182594 +2023-08-07 17:00:00,3.420526,4.317406,344.7448,346.60748,22.4765,964.4932,0.0,76.19664 +2023-08-07 18:00:00,2.942788,3.733631,350.21765,352.30405,23.3265,964.3505,0.0,70.13082 +2023-08-07 19:00:00,3.2984846,4.1,345.9637,347.3196,23.6265,964.11554,0.2,66.942986 +2023-08-07 20:00:00,3.4014702,4.1629314,335.69547,335.89777,23.676498,964.0288,0.1,63.034084 +2023-08-07 21:00:00,3.3615475,4.2190046,329.62094,328.5705,23.7265,963.7521,0.0,59.520454 +2023-08-07 22:00:00,3.6400552,4.6400433,322.81522,322.88306,23.6265,963.4506,0.1,56.69228 +2023-08-07 23:00:00,3.4205263,4.6400433,322.12497,322.88306,23.3265,963.1157,0.0,57.54118 +2023-08-08 00:00:00,2.6925824,4.68188,338.19852,340.0168,22.776499,963.40393,0.0,62.231968 +2023-08-08 01:00:00,2.745906,5.903389,326.88864,333.86905,20.8765,962.89435,0.0,67.892296 +2023-08-08 02:00:00,2.4413111,6.041523,325.0079,335.55606,18.8765,962.45886,0.0,70.41239 +2023-08-08 03:00:00,2.408319,6.1587334,311.63345,327.6002,17.9765,962.7786,0.0,69.32374 +2023-08-08 04:00:00,2.4207437,6.0207973,308.2902,327.89377,17.3265,962.76117,0.0,70.34638 +2023-08-08 05:00:00,2.2671568,5.189412,311.42358,334.9164,16.0765,962.54364,0.0,75.90642 +2023-08-08 06:00:00,2.2561028,3.7443287,282.80426,325.8855,15.4265,962.9992,0.0,77.83356 +2023-08-08 07:00:00,1.7117243,3.2449963,263.29025,303.6901,15.3765,962.80054,0.0,78.60099 +2023-08-08 08:00:00,2.302173,3.1241,272.4895,309.8055,14.5265,962.0817,0.0,83.29498 +2023-08-08 09:00:00,2.3194828,2.9206164,277.4313,321.9529,14.7265005,961.92737,0.0,81.68596 +2023-08-08 10:00:00,2.2,2.758623,270.0,313.53125,14.6265,962.1942,0.0,81.94338 +2023-08-08 11:00:00,2.0396078,2.4413111,258.6901,304.9921,14.3265,962.33093,0.0,83.82321 +2023-08-08 12:00:00,1.0440307,1.3928387,286.6993,21.037588,16.426498,962.41516,0.0,76.21348 +2023-08-08 13:00:00,1.2165525,0.53851646,260.53775,291.80148,18.276499,963.11523,0.0,76.26098 +2023-08-08 14:00:00,1.3038404,1.6124516,265.60138,262.8751,20.426498,963.67255,0.0,69.12859 +2023-08-08 15:00:00,1.2206556,1.6401219,235.0079,232.43134,21.9765,963.6496,0.0,63.46911 +2023-08-08 16:00:00,1.8439089,2.2671568,229.39879,228.57643,23.176498,963.8506,0.0,57.504726 +2023-08-08 17:00:00,2.5553863,3.1906114,239.42085,237.80429,23.8765,963.8721,0.0,53.893158 +2023-08-08 18:00:00,2.9546573,3.7161808,246.0375,246.19405,23.9765,963.12866,0.0,53.051353 +2023-08-08 19:00:00,2.8160257,3.544009,253.49556,253.61038,24.426498,962.6329,0.0,51.8065 +2023-08-08 20:00:00,2.9529645,3.758989,241.69934,241.38963,24.7265,962.0176,0.0,51.716682 +2023-08-08 21:00:00,2.9154758,3.6769552,247.8336,247.61981,24.8265,961.369,0.0,51.910355 +2023-08-08 22:00:00,2.8635643,3.6878178,257.90524,257.4712,24.7265,960.6875,0.0,52.90085 +2023-08-08 23:00:00,2.720294,3.5735137,252.89719,252.07199,24.426498,960.2579,0.0,54.20753 +2023-08-09 00:00:00,1.8384776,3.4785054,247.61981,251.56496,23.776499,960.0557,0.0,63.66101 +2023-08-09 01:00:00,1.9313208,3.3955853,248.74942,256.373,21.426498,959.66406,0.0,77.24286 +2023-08-09 02:00:00,2.5632012,3.1064448,249.44388,266.3087,19.526499,959.91235,0.0,75.96973 +2023-08-09 03:00:00,2.0518284,2.886174,226.97493,255.96373,18.7265,960.2505,0.0,78.57997 +2023-08-09 04:00:00,1.7029386,3.231099,220.23628,248.19853,18.0765,960.0441,0.0,82.64068 +2023-08-09 05:00:00,2.302173,4.5,214.3804,233.13002,17.8765,959.5354,0.0,84.22602 +2023-08-09 06:00:00,1.9697715,4.1773195,203.9625,227.9109,17.1265,958.83636,0.0,88.02481 +2023-08-09 07:00:00,2.147091,4.172529,207.75845,224.02907,16.6265,958.9397,0.0,90.56866 +2023-08-09 08:00:00,1.9723083,3.905125,210.46547,219.80553,16.4765,958.4393,0.0,90.26718 +2023-08-09 09:00:00,2.0248458,3.9597979,212.90524,224.9999,16.3265,958.03406,0.0,89.67625 +2023-08-09 10:00:00,2.5806975,4.6861496,215.53777,230.19447,16.3265,957.93915,0.0,88.812065 +2023-08-09 11:00:00,2.4413111,4.62277,214.9921,231.14662,16.1265,957.90436,0.0,89.08338 +2023-08-09 12:00:00,2.1400933,3.3286633,232.59457,237.26477,16.4765,957.6803,0.0,92.32193 +2023-08-09 13:00:00,2.118962,3.026549,250.70985,262.40546,18.3765,957.72296,0.0,87.01669 +2023-08-09 14:00:00,1.7804494,2.6925824,231.84273,248.19853,20.676498,958.4934,0.0,80.628914 +2023-08-09 15:00:00,1.7492856,2.147091,239.03632,242.24155,22.3265,959.05524,0.0,72.1949 +2023-08-09 16:00:00,1.1401755,1.3341664,285.25516,282.99463,23.426498,958.763,0.0,66.90215 +2023-08-09 17:00:00,0.86023253,0.9433981,305.53775,302.00534,24.3765,958.44476,0.0,59.673027 +2023-08-09 18:00:00,0.8062258,1.0198039,262.8751,258.6901,24.926498,957.87006,0.0,57.01006 +2023-08-09 19:00:00,1.4142135,1.7262677,278.13,280.0079,25.426498,957.47675,0.0,53.938652 +2023-08-09 20:00:00,2.0248456,2.4698179,290.22495,291.3707,25.6265,957.2245,0.0,51.783157 +2023-08-09 21:00:00,2.9832866,3.7802117,309.55963,307.47626,25.776499,956.7736,0.0,50.667732 +2023-08-09 22:00:00,3.6069376,4.8104053,313.87677,313.31537,25.0765,956.7545,0.0,53.677162 +2023-08-09 23:00:00,2.828427,3.748333,315.0001,313.91916,24.926498,956.5399,0.0,55.74705 +2023-08-10 00:00:00,2.34094,4.0853395,340.0168,338.45895,23.9765,957.0491,0.0,65.75588 +2023-08-10 01:00:00,1.2083046,2.4351592,335.55606,340.8209,21.776499,956.87427,0.0,82.30601 +2023-08-10 02:00:00,1.8248286,2.4351592,279.46225,289.1791,20.176498,956.89026,0.0,86.092224 +2023-08-10 03:00:00,2.0223749,2.5495098,278.53067,295.5599,19.926498,957.22754,0.0,86.33948 +2023-08-10 04:00:00,2.109502,3.471311,264.55975,281.6336,19.1265,956.90204,0.0,87.9176 +2023-08-10 05:00:00,1.9026297,3.847077,273.01273,297.8972,18.7265,956.4543,0.0,88.44248 +2023-08-10 06:00:00,2.1954498,5.1623635,300.06848,315.78473,18.5765,956.7133,0.0,87.86977 +2023-08-10 07:00:00,2.1213202,4.8332186,315.0001,335.55606,18.026499,956.8092,0.0,90.664986 +2023-08-10 08:00:00,1.9723083,4.669047,329.53452,350.13425,17.426498,956.80096,0.0,92.37578 +2023-08-10 09:00:00,1.6401219,3.535534,322.43134,351.87,16.526499,956.7404,0.0,94.11795 +2023-08-10 10:00:00,1.6401219,2.109502,307.56866,5.4402504,16.176498,956.5851,0.0,93.4999 +2023-08-10 11:00:00,2.1213202,2.641969,351.87,29.475794,15.7265005,956.88605,0.0,94.690575 +2023-08-10 12:00:00,2.1540658,4.3266616,21.801476,33.6901,16.9765,957.8618,0.0,91.17541 +2023-08-10 13:00:00,2.147091,4.3416586,27.758451,38.453735,17.9765,958.4136,0.0,88.662186 +2023-08-10 14:00:00,2.2671568,3.1241,48.57643,50.194473,19.2265,958.53253,0.0,84.91332 +2023-08-10 15:00:00,2.158703,2.6925821,103.39252,105.06854,20.6265,958.48517,0.0,80.11366 +2023-08-10 16:00:00,2.7802877,3.482815,127.694305,129.17365,22.176498,958.3653,0.0,76.38948 +2023-08-10 17:00:00,3.2015622,4.0,141.34016,143.13002,23.526499,958.01965,0.0,73.55201 +2023-08-10 18:00:00,3.6249137,4.753946,155.55606,157.75093,24.6265,957.251,0.0,70.81566 +2023-08-10 19:00:00,4.110961,5.408327,175.81517,176.82024,25.7265,956.67035,0.0,65.91326 +2023-08-10 20:00:00,4.7169905,6.2128897,175.13557,176.30869,26.526499,956.23004,0.0,65.465775 +2023-08-10 21:00:00,5.1,6.802941,180.0,181.68465,27.026499,955.45544,0.0,60.665417 +2023-08-10 22:00:00,5.5,7.602631,180.0,181.5074,27.026499,954.79016,0.0,59.351234 +2023-08-10 23:00:00,5.423099,8.009994,174.71,177.13765,26.526499,953.8542,0.0,63.459457 +2023-08-11 00:00:00,5.500909,9.300538,181.04161,180.61604,25.5765,953.5106,0.0,70.11553 +2023-08-11 01:00:00,3.6496572,5.1662364,9.462261,345.42575,19.8765,954.37134,11.2,95.14901 +2023-08-11 02:00:00,4.167733,5.3037724,120.256355,134.23619,19.3765,952.6732,0.5,94.537186 +2023-08-11 03:00:00,7.467262,12.490797,159.62349,165.62996,19.776499,953.12036,0.1,90.215195 +2023-08-11 04:00:00,7.764663,12.54472,187.3995,188.71135,20.176498,953.0931,0.0,89.11968 +2023-08-11 05:00:00,5.8694124,9.848858,188.8203,192.90741,20.4765,952.8586,0.0,90.26463 +2023-08-11 06:00:00,6.1741395,10.288343,204.90474,207.81032,20.426498,952.3755,0.0,92.25433 +2023-08-11 07:00:00,5.1662364,9.220087,227.35333,233.37859,20.2265,951.86743,0.0,91.6688 +2023-08-11 08:00:00,5.178803,9.518929,259.9921,266.3862,19.9765,951.8252,0.0,89.38415 +2023-08-11 09:00:00,5.217279,9.521029,282.17145,287.1028,19.5765,951.75775,0.0,88.79236 +2023-08-11 10:00:00,4.9335585,9.192389,287.7005,292.3802,19.026499,952.2345,0.0,89.311104 +2023-08-11 11:00:00,4.2544093,8.407735,293.55228,296.86972,18.526499,953.2883,0.0,89.84062 +2023-08-11 12:00:00,3.0149627,6.1741395,275.7105,294.90472,18.3265,954.2981,0.0,91.5522 +2023-08-11 13:00:00,2.6,4.3416586,270.0,298.92633,19.676498,954.7172,0.0,89.361176 +2023-08-11 14:00:00,2.0099752,3.008322,264.2895,285.4222,21.5765,955.22644,0.0,84.89514 +2023-08-11 15:00:00,1.7029387,2.209072,273.3664,275.19434,23.2265,955.50055,0.0,77.75617 +2023-08-11 16:00:00,1.8027756,2.302173,266.82022,267.5105,24.8765,955.7717,0.0,71.526405 +2023-08-11 17:00:00,2.4351592,3.1622777,250.82089,251.56496,26.3265,956.00757,0.0,66.242744 +2023-08-11 18:00:00,3.3837848,4.3266616,235.84026,236.3099,27.4765,956.00323,0.0,61.528896 +2023-08-11 19:00:00,4.103657,5.234501,223.02507,223.45189,28.526499,955.2207,0.0,54.71439 +2023-08-11 20:00:00,5.4378304,7.306162,237.77127,239.5743,28.526499,955.0306,0.2,52.858524 +2023-08-11 21:00:00,6.6241984,9.402127,331.11353,330.70874,21.776499,956.1146,5.4,81.536804 +2023-08-11 22:00:00,4.3462625,7.2862887,203.02553,223.3317,23.6265,955.3768,1.1,77.5739 +2023-08-11 23:00:00,2.9154758,4.244997,247.8336,254.98158,24.6265,955.7309,0.0,74.42887 +2023-08-12 00:00:00,3.794733,6.293648,288.43503,287.57135,24.2265,956.2353,0.0,75.292656 +2023-08-12 01:00:00,5.5946403,9.124145,331.14444,332.5925,22.3765,957.16406,0.0,78.60913 +2023-08-12 02:00:00,3.758989,7.201389,331.38962,334.5025,21.1265,957.90466,0.0,81.198296 +2023-08-12 03:00:00,2.0808651,5.3712196,324.78232,335.8209,19.5765,958.497,0.0,87.956505 +2023-08-12 04:00:00,1.8027756,4.5793014,303.6901,328.39255,18.526499,958.69775,0.0,90.41208 +2023-08-12 05:00:00,1.9104973,4.382921,276.0089,304.7779,18.026499,958.6122,0.0,90.08992 +2023-08-12 06:00:00,2.4186773,5.345091,262.8751,287.41806,17.8265,958.9572,0.0,88.9334 +2023-08-12 07:00:00,2.6076808,5.9464273,265.60138,289.6539,17.4765,959.1818,0.0,88.05507 +2023-08-12 08:00:00,2.236068,5.2000003,259.69522,292.6199,17.026499,959.19867,0.0,85.5008 +2023-08-12 09:00:00,1.8867962,3.5693135,237.99466,281.3099,16.0765,958.74927,0.0,87.648834 +2023-08-12 10:00:00,3.0870697,5.7035074,245.09526,267.99048,15.926499,959.00775,0.0,86.2237 +2023-08-12 11:00:00,3.577709,7.1847057,243.43501,261.1933,16.026499,959.2151,0.0,82.120514 +2023-08-12 12:00:00,4.0261645,8.4053545,255.61856,267.95465,17.1265,959.78516,0.0,73.38284 +2023-08-12 13:00:00,4.101219,7.8638415,271.39716,277.30566,18.4765,960.6822,0.0,71.96114 +2023-08-12 14:00:00,3.4,7.119691,298.0724,299.44534,20.3265,961.1873,0.0,70.91504 +2023-08-12 15:00:00,4.2720017,6.129437,302.57404,303.6901,21.8765,961.4489,0.0,66.15745 +2023-08-12 16:00:00,4.4598207,5.872819,317.72638,317.07004,22.776499,961.7894,0.0,62.231968 +2023-08-12 17:00:00,3.8183768,4.9497476,315.0001,315.0001,23.5765,962.3023,0.0,60.060604 +2023-08-12 18:00:00,3.8418746,4.90408,308.65982,309.20718,24.276499,962.2283,0.0,57.586163 +2023-08-12 19:00:00,3.8832977,4.9648767,304.50858,304.33026,24.926498,962.3354,0.0,56.465725 +2023-08-12 20:00:00,3.7013512,4.8010416,308.4181,305.67648,25.4765,962.23584,0.0,55.70486 +2023-08-12 21:00:00,3.920459,5.021952,307.74686,305.2725,25.776499,962.09485,0.0,53.68252 +2023-08-12 22:00:00,3.6069376,4.8270073,313.87677,309.9575,25.7265,961.7064,0.0,53.327213 +2023-08-12 23:00:00,3.2202482,4.5343137,323.8417,318.57642,25.6265,961.59534,0.0,54.335808 +2023-08-13 00:00:00,1.9646883,3.352611,345.25638,342.64587,23.8765,962.2572,0.0,64.90726 +2023-08-13 01:00:00,1.603122,3.5128336,3.5762644,355.10098,21.8765,961.9237,0.0,78.0447 +2023-08-13 02:00:00,2.2472203,5.1478148,20.854538,24.075504,20.3265,962.04175,0.0,79.566185 +2023-08-13 03:00:00,2.147091,5.4589376,27.758451,28.442837,19.1265,962.6916,0.0,81.717674 +2023-08-13 04:00:00,1.8384776,4.661545,22.380184,22.714453,17.8265,962.9426,0.0,85.583244 +2023-08-13 05:00:00,2.5495098,3.9115214,48.179924,32.471172,17.176498,962.8301,0.0,87.18441 +2023-08-13 06:00:00,2.0615528,3.1906114,67.16631,32.195713,17.9765,963.1582,0.0,82.09834 +2023-08-13 07:00:00,2.3086793,3.3301651,72.34979,41.347687,17.6265,962.8133,0.0,81.263245 +2023-08-13 08:00:00,1.868154,2.758623,74.47583,43.53127,18.6265,962.79596,0.0,73.1686 +2023-08-13 09:00:00,0.31622776,0.7211103,198.43504,56.309914,18.0765,962.891,0.2,77.2245 +2023-08-13 10:00:00,0.82462114,1.9104973,165.96373,96.00892,18.026499,962.4079,1.1,83.43527 +2023-08-13 11:00:00,3.324154,5.491812,158.83867,146.88864,17.4765,962.7874,1.1,86.93262 +2023-08-13 12:00:00,2.842534,5.456189,140.71062,131.2846,17.426498,962.9684,0.5,83.904816 +2023-08-13 13:00:00,2.8017852,5.4378304,145.17545,147.77127,17.3265,963.33044,0.6,89.17846 +2023-08-13 14:00:00,2.0248458,4.2426405,122.90524,135.0001,17.5765,963.37366,0.4,90.05732 +2023-08-13 15:00:00,2.376973,3.4885528,112.24908,117.29949,18.0765,963.4603,0.2,87.267075 +2023-08-13 16:00:00,3.1144822,4.4598207,132.39738,132.27364,18.4765,963.62415,0.0,85.92344 +2023-08-13 17:00:00,3.6124785,5.0990195,131.63345,131.82008,18.926498,963.70123,0.1,81.17119 +2023-08-13 18:00:00,3.9698865,5.7384667,130.91429,131.4676,19.0765,963.15765,0.1,80.67295 +2023-08-13 19:00:00,4.2201896,6.0,126.32692,126.86998,18.8265,962.83,0.4,82.204025 +2023-08-13 20:00:00,4.294182,6.0415235,117.75845,118.68605,18.926498,962.3725,0.0,80.91171 +2023-08-13 21:00:00,4.294182,5.866856,117.75845,119.62366,19.1265,961.7425,0.6,81.717674 +2023-08-13 22:00:00,4.004997,5.632051,92.86235,96.11541,18.3265,961.1308,11.0,87.84792 +2023-08-13 23:00:00,5.333854,7.769813,120.411,121.849014,18.6265,960.42334,0.5,87.59528 +2023-08-14 00:00:00,4.3416586,7.1175838,151.07367,155.95578,18.676498,960.52673,0.6,89.00133 +2023-08-14 01:00:00,5.0,8.023092,163.73972,169.95071,19.0765,959.9307,0.2,87.08154 +2023-08-14 02:00:00,4.8373547,8.300603,172.87508,180.69026,18.426498,959.6298,0.0,91.55841 +2023-08-14 03:00:00,5.345091,8.947067,197.41806,205.13292,17.9765,959.1727,0.0,88.94541 +2023-08-14 04:00:00,5.325411,9.14385,214.28693,221.00899,16.276499,958.3098,0.0,85.97908 +2023-08-14 05:00:00,4.9648767,8.280096,207.5972,217.14677,15.9765005,957.78345,0.0,88.21003 +2023-08-14 06:00:00,5.408327,8.586617,236.3099,243.73341,16.3265,957.5597,0.0,92.01704 +2023-08-14 07:00:00,5.554278,8.485281,256.46414,261.87,15.926499,957.3952,0.0,94.698586 +2023-08-14 08:00:00,5.557877,8.94986,278.27582,283.57043,15.8265,957.0933,0.3,95.30562 +2023-08-14 09:00:00,5.0089917,8.077747,296.05344,301.32864,15.4765005,957.5064,0.1,97.46487 +2023-08-14 10:00:00,5.2430906,9.037699,325.09744,335.13632,15.4265,957.21344,0.3,99.36059 +2023-08-14 11:00:00,6.0440054,10.768937,343.66388,349.83798,15.7765,957.55884,0.4,94.084785 +2023-08-14 12:00:00,7.21734,12.414508,356.02756,2.7701654,14.9265,958.833,0.4,97.454185 +2023-08-14 13:00:00,7.641989,11.442465,6.0089183,9.050647,15.1265,959.7215,0.2,95.28071 +2023-08-14 14:00:00,8.050466,11.3,6.418702,7.6280556,15.5765,960.65405,0.2,91.67539 +2023-08-14 15:00:00,8.884255,12.809762,11.689341,12.625841,16.2265,961.6212,0.2,87.662254 +2023-08-14 16:00:00,9.100549,12.788276,12.050767,12.188627,17.4765,962.9772,0.2,83.37104 +2023-08-14 17:00:00,8.646965,11.994164,5.9742346,7.184175,17.8265,963.8915,0.3,82.07963 +2023-08-14 18:00:00,8.471717,11.822859,7.4604836,8.267088,18.1265,964.5127,0.1,77.986084 +2023-08-14 19:00:00,8.188407,11.328283,8.426887,8.630727,18.176498,965.1854,0.3,78.24622 +2023-08-14 20:00:00,7.333485,10.040419,5.4772835,5.1426725,19.2265,965.65106,0.0,75.677414 +2023-08-14 21:00:00,7.3552704,9.972462,7.0283103,6.9111314,20.026499,965.8829,0.0,70.858864 +2023-08-14 22:00:00,7.3552704,10.0841465,7.0283103,7.4068255,20.026499,966.16766,0.0,66.197395 +2023-08-14 23:00:00,5.772348,8.149233,14.036275,14.206798,19.7265,966.21124,0.0,66.35021 +2023-08-15 00:00:00,3.736308,5.920304,15.524177,15.679591,18.9765,966.9371,0.0,69.746635 +2023-08-15 01:00:00,2.1377556,5.021952,10.784258,12.652561,17.4765,966.86743,0.0,76.1329 +2023-08-15 02:00:00,1.9026297,4.9010205,356.98727,1.1691146,15.4765005,966.89655,0.0,83.95531 +2023-08-15 03:00:00,2.236068,5.3,349.69522,360.0,14.4765005,967.28864,0.0,82.46777 +2023-08-15 04:00:00,2.4351592,5.1,340.8209,360.0,13.6765,967.2412,0.0,76.53202 +2023-08-15 05:00:00,2.0,4.7853947,306.86996,333.97046,13.0765,967.2286,0.0,78.78547 +2023-08-15 06:00:00,2.0248456,4.0706263,290.22495,332.176,12.7265005,966.97626,0.0,83.07902 +2023-08-15 07:00:00,2.0880613,4.2520585,286.6993,318.81415,12.7765,966.8903,0.0,81.97972 +2023-08-15 08:00:00,2.1213202,4.2520585,278.13,311.18582,12.4265,966.7328,0.0,81.9348 +2023-08-15 09:00:00,2.0,3.940812,270.0,305.7068,12.0265,966.47095,0.0,82.159706 +2023-08-15 10:00:00,2.109502,4.1146083,264.55975,295.94223,11.9765005,966.4621,0.0,81.60112 +2023-08-15 11:00:00,2.3194828,4.838388,262.5687,288.06055,12.1265,966.96295,0.0,79.44651 +2023-08-15 12:00:00,2.9732137,5.323533,250.34608,264.61078,12.6765,967.4413,0.0,77.933975 +2023-08-15 13:00:00,3.4785054,6.1131005,251.56496,266.24835,14.6265,967.9792,0.0,77.196236 +2023-08-15 14:00:00,3.0675724,6.4031243,250.9743,268.2101,17.176498,968.7126,0.0,77.843285 +2023-08-15 15:00:00,2.7658634,4.6173587,257.4712,265.03033,19.776499,969.06744,0.0,70.58329 +2023-08-15 16:00:00,3.206244,4.204759,266.42374,267.27374,21.4765,968.9778,0.0,57.652428 +2023-08-15 17:00:00,3.306055,4.204759,266.53183,267.27374,22.4765,968.7668,0.0,55.315636 +2023-08-15 18:00:00,3.238827,4.0447497,261.11942,261.46933,23.176498,968.0297,0.0,57.504726 +2023-08-15 19:00:00,3.4014704,4.4011364,268.31534,268.6981,24.2265,967.44495,0.0,54.50799 +2023-08-15 20:00:00,3.535534,4.539824,261.87,262.40546,24.776499,966.87103,0.0,52.40337 +2023-08-15 21:00:00,3.5128336,4.509989,265.10098,266.186,25.176498,966.177,0.0,50.347095 +2023-08-15 22:00:00,3.0675724,4.2720017,250.9743,253.68607,24.8765,965.7475,0.0,53.45386 +2023-08-15 23:00:00,3.0463092,4.4944406,246.80138,249.14546,24.7265,964.9627,0.0,55.87651 +2023-08-16 00:00:00,1.9209373,3.748333,218.65984,226.08084,23.4765,965.2304,0.0,66.70067 +2023-08-16 01:00:00,2.0248456,4.6872168,200.22495,213.6901,21.1265,964.64575,0.0,75.2624 +2023-08-16 02:00:00,2.863564,6.300793,204.77512,215.9606,19.676498,964.3992,0.0,78.21627 +2023-08-16 03:00:00,3.275668,7.060453,211.26367,217.51918,19.0765,964.58136,0.0,78.37889 +2023-08-16 04:00:00,3.4176016,7.291776,200.55612,205.15927,18.4765,964.0037,0.0,80.334145 +2023-08-16 05:00:00,4.2720017,8.579627,196.31393,201.18143,18.176498,963.4773,0.0,81.85969 +2023-08-16 06:00:00,4.7169905,9.270383,201.12479,203.52322,17.8265,962.7528,0.0,83.68068 +2023-08-16 07:00:00,4.846648,9.4371605,201.80147,205.75043,17.526499,962.5112,0.0,83.37692 +2023-08-16 08:00:00,5.280152,9.976472,204.62355,208.10617,17.2265,961.8899,0.0,83.88206 +2023-08-16 09:00:00,5.727128,10.51903,204.77512,209.0016,17.026499,961.4757,0.0,83.58839 +2023-08-16 10:00:00,5.9615436,10.912836,202.69383,207.2694,16.8765,960.88055,0.0,83.84213 +2023-08-16 11:00:00,6.545991,11.607756,198.71184,202.80974,16.8265,960.30255,0.0,82.75613 +2023-08-16 12:00:00,7.05195,12.070211,198.17812,201.88962,17.676498,960.2598,0.0,83.126236 +2023-08-16 13:00:00,7.6844,12.442267,198.19925,201.20288,18.676498,959.76746,0.0,80.61963 +2023-08-16 14:00:00,7.42159,12.050311,194.03627,197.38248,20.026499,959.1431,0.0,78.76834 +2023-08-16 15:00:00,8.343262,12.15648,193.8697,195.75124,21.4765,958.2483,0.0,74.84341 +2023-08-16 16:00:00,8.612782,12.212289,195.48856,196.65439,23.1265,957.38354,0.0,71.65773 +2023-08-16 17:00:00,8.780091,12.349089,194.5111,195.49933,24.6265,956.39594,0.0,67.99421 +2023-08-16 18:00:00,9.38616,13.173458,194.18433,195.40776,25.9765,955.09576,0.0,66.170815 +2023-08-16 19:00:00,9.837174,13.787677,197.14563,198.17223,27.1265,953.951,0.0,64.3834 +2023-08-16 20:00:00,10.195097,14.4471445,201.27968,201.94876,27.8765,952.8354,0.0,63.751106 +2023-08-16 21:00:00,10.03444,14.425324,209.88644,209.94185,28.3765,952.0597,0.0,64.44982 +2023-08-16 22:00:00,9.0,13.22006,216.86998,216.69662,28.776499,951.55286,0.0,65.93069 +2023-08-16 23:00:00,5.8591805,9.30215,242.56035,243.15956,28.8765,952.1389,0.0,67.99098 +2023-08-17 00:00:00,5.2773094,8.811923,260.18076,260.85843,28.026499,952.85956,0.0,71.433975 +2023-08-17 01:00:00,6.177378,10.5948105,299.0545,303.8401,27.026499,952.9844,0.0,70.385574 +2023-08-17 02:00:00,8.266196,13.148765,325.3486,325.2221,23.8765,954.088,0.0,57.30458 +2023-08-17 03:00:00,7.0213957,11.624973,324.27252,324.806,21.676498,954.9585,0.0,58.650803 +2023-08-17 04:00:00,6.6468034,11.248555,315.0001,316.80112,21.0765,955.0477,0.0,59.6665 +2023-08-17 05:00:00,6.296825,10.536128,313.06943,315.3845,21.3765,955.1932,0.0,56.505245 +2023-08-17 06:00:00,5.5973206,9.900505,311.37842,314.18164,20.3265,955.5863,0.0,59.880566 +2023-08-17 07:00:00,5.9548297,10.253292,310.91428,314.60492,19.776499,956.25287,0.0,61.75058 +2023-08-17 08:00:00,6.0959,10.394711,311.009,314.6103,19.1265,956.71216,0.0,59.792973 +2023-08-17 09:00:00,6.720863,11.269872,316.80872,318.95764,18.3765,957.1535,0.0,53.543022 +2023-08-17 10:00:00,6.43506,10.837436,315.62952,318.36655,17.426498,957.56,0.0,54.02435 +2023-08-17 11:00:00,6.438167,10.922454,316.88815,319.4557,16.5765,958.36206,0.0,57.401604 +2023-08-17 12:00:00,6.794115,11.204463,317.38596,319.34332,15.0265,959.23,0.0,66.68283 +2023-08-17 13:00:00,7.083784,11.088734,318.43372,320.85602,15.0765,959.8078,0.0,71.09122 +2023-08-17 14:00:00,7.528612,10.823123,320.38934,321.75354,15.926499,960.62036,0.0,70.54418 +2023-08-17 15:00:00,7.9630394,11.067972,324.71317,325.30478,16.8265,961.3461,0.0,68.63946 +2023-08-17 16:00:00,7.5802374,10.32279,323.58353,324.46225,17.8765,961.90765,0.0,66.83689 +2023-08-17 17:00:00,8.319255,11.269872,334.35904,333.66238,19.1265,962.5018,0.0,59.595024 +2023-08-17 18:00:00,6.935416,9.305912,331.58743,331.78275,19.676498,962.59564,0.0,58.747166 +2023-08-17 19:00:00,6.9771056,9.30215,332.7005,333.15958,20.4765,962.92163,0.0,56.281075 +2023-08-17 20:00:00,6.1294374,8.276473,331.76263,331.88687,21.0765,962.92816,0.0,51.437256 +2023-08-17 21:00:00,5.3,7.0491138,328.10925,328.3393,21.1265,962.55695,0.0,51.966084 +2023-08-17 22:00:00,4.8826222,6.463745,325.0079,325.0805,21.026499,962.63513,0.0,53.16102 +2023-08-17 23:00:00,4.2201896,5.882177,323.67307,324.6887,20.676498,962.38586,0.0,55.042507 +2023-08-18 00:00:00,2.9732137,4.967897,317.72638,319.89914,19.426498,963.1225,0.0,61.67001 +2023-08-18 01:00:00,1.6401219,4.1773195,307.56866,317.91092,17.4765,962.7874,0.0,71.77741 +2023-08-18 02:00:00,1.9697715,3.8948684,293.9625,318.12222,15.6765,962.6634,0.0,77.10459 +2023-08-18 03:00:00,2.2671568,2.9410882,311.42358,342.18103,15.1765,962.76526,0.0,77.538345 +2023-08-18 04:00:00,1.7029387,2.4596748,3.3664,26.564985,17.176498,963.20966,0.0,64.507774 +2023-08-18 05:00:00,1.4035668,2.0248458,94.08554,57.094753,17.2265,963.21826,0.0,62.400032 +2023-08-18 06:00:00,1.6763055,1.5652475,162.64589,116.56499,14.0765,962.7609,0.0,77.11003 +2023-08-18 07:00:00,1.7117243,2.9120438,186.70975,164.05453,13.5765,962.7671,0.0,80.72518 +2023-08-18 08:00:00,2.4186773,4.6389656,187.12492,172.56868,13.2765,962.5238,0.0,83.70122 +2023-08-18 09:00:00,3.0,6.152235,180.0,172.52853,13.3265,962.1536,0.0,82.324135 +2023-08-18 10:00:00,3.6124783,7.632169,175.23645,174.7377,13.5765,962.10333,0.0,79.65417 +2023-08-18 11:00:00,3.9623227,8.188407,169.82455,171.57312,13.7765,962.1387,0.0,79.152435 +2023-08-18 12:00:00,4.924429,9.338094,167.09259,170.13426,14.2765,962.5118,0.0,80.284996 +2023-08-18 13:00:00,5.8694124,9.762172,171.1797,173.53027,15.7265005,962.6722,0.0,80.219696 +2023-08-18 14:00:00,5.5326304,9.319335,173.77426,176.30869,17.676498,962.72687,0.0,78.680984 +2023-08-18 15:00:00,6.419502,9.108788,175.53293,177.48318,19.5765,962.48364,0.0,73.57225 +2023-08-18 16:00:00,7.5166483,10.504285,176.186,178.36346,21.0765,962.0736,0.0,68.15153 +2023-08-18 17:00:00,8.01561,11.011357,176.42374,177.39749,22.426498,961.44604,0.0,64.183495 +2023-08-18 18:00:00,8.30542,11.401753,177.93001,178.99493,23.426498,960.94763,0.0,62.577717 +2023-08-18 19:00:00,8.174351,11.275194,172.2665,173.37932,24.3265,960.1466,0.0,60.043304 +2023-08-18 20:00:00,8.434453,11.6559,169.75597,170.61856,24.8265,959.56384,0.0,59.210274 +2023-08-18 21:00:00,8.884255,12.513193,168.31065,169.40852,24.9765,958.35333,0.0,59.623444 +2023-08-18 22:00:00,8.829496,12.788276,166.9081,167.81139,24.8265,957.2837,0.0,60.92842 +2023-08-18 23:00:00,7.8339005,11.964113,165.96373,167.9387,24.4765,956.6565,0.0,63.010628 +2023-08-19 00:00:00,6.545991,10.632027,161.28816,163.61038,23.3765,957.045,0.0,67.1043 +2023-08-19 01:00:00,6.2361846,10.511898,164.18074,168.47632,22.3765,956.9741,0.0,68.41036 +2023-08-19 02:00:00,6.4132676,10.977249,169.21574,173.19878,21.9765,957.00244,0.0,67.032135 +2023-08-19 03:00:00,6.428064,11.00409,174.64427,178.4378,21.676498,957.14246,0.0,66.32846 +2023-08-19 04:00:00,7.300685,12.206555,179.2152,181.87784,21.526499,956.7375,0.0,66.297195 +2023-08-19 05:00:00,8.30542,13.636715,182.06999,184.20528,21.3765,956.2376,0.0,67.12449 +2023-08-19 06:00:00,8.670064,14.156624,187.28886,188.53069,21.1265,956.00574,0.0,67.72436 +2023-08-19 07:00:00,8.910667,14.454411,189.0394,190.7657,21.1265,955.531,0.0,67.28965 +2023-08-19 08:00:00,8.649278,14.143904,190.6603,192.66061,20.8265,955.1011,0.0,67.8822 +2023-08-19 09:00:00,8.590692,14.115594,192.09474,193.93782,20.7265,954.7043,0.0,68.52184 +2023-08-19 10:00:00,8.464632,13.956002,194.36462,196.22743,20.776499,954.6178,0.0,69.64375 +2023-08-19 11:00:00,8.393451,13.852076,195.1953,197.6502,20.676498,954.50604,0.0,72.1281 +2023-08-19 12:00:00,6.797794,11.995416,206.18805,208.91533,21.426498,954.2519,0.0,76.5135 +2023-08-19 13:00:00,3.8078866,6.9462223,193.67133,202.8737,22.0765,955.3098,0.0,79.80754 +2023-08-19 14:00:00,4.7296934,7.8771825,193.44862,200.04533,23.4765,955.92194,0.0,79.750046 +2023-08-19 15:00:00,4.588028,6.539113,200.40997,203.42871,25.426498,956.1465,0.0,76.890274 +2023-08-19 16:00:00,4.3382025,5.770615,205.97433,207.89719,27.2265,956.62823,0.0,74.85479 +2023-08-19 17:00:00,3.676955,4.738143,224.9999,225.85501,28.676498,957.1459,0.0,73.30038 +2023-08-19 18:00:00,3.0610456,3.8600519,231.63248,233.42688,30.1265,957.47144,0.0,69.89539 +2023-08-19 19:00:00,2.4738634,3.104835,255.96373,255.06853,31.2265,957.54944,0.0,66.42739 +2023-08-19 20:00:00,2.9681644,3.6359317,302.61923,301.5042,31.8265,958.1193,0.0,65.75711 +2023-08-19 21:00:00,5.249762,7.029225,310.36444,309.8055,31.926498,959.2762,0.0,65.19027 +2023-08-19 22:00:00,4.3566046,6.4938436,350.75397,350.24762,31.026499,958.65924,0.0,66.18814 +2023-08-19 23:00:00,4.440721,6.9354167,352.23492,354.2073,30.276499,959.1116,0.0,68.67463 +2023-08-20 00:00:00,4.119466,7.0114193,354.4279,356.72958,28.776499,960.9647,0.0,75.104 +2023-08-20 01:00:00,4.20119,7.6006575,358.6361,0.75383914,27.276499,961.19836,0.0,77.16863 +2023-08-20 02:00:00,4.3289723,8.229823,353.36758,355.12082,25.9765,961.93756,0.0,82.05723 +2023-08-20 03:00:00,5.2392745,9.3744335,346.75946,348.92984,25.3765,962.7894,0.0,83.241684 +2023-08-20 04:00:00,5.491812,9.701547,349.50858,351.70294,24.6265,963.5212,0.0,80.39859 +2023-08-20 05:00:00,5.234501,9.525754,353.41815,355.7859,24.0765,964.38,0.0,75.034744 +2023-08-20 06:00:00,4.7169905,8.9,355.13556,360.0,23.526499,964.9536,0.0,72.63605 +2023-08-20 07:00:00,5.1,9.326307,360.0,4.30439,22.9765,965.24164,0.0,67.45008 +2023-08-20 08:00:00,4.9,9.035485,360.0,5.0795207,22.276499,965.7891,0.0,67.09352 +2023-08-20 09:00:00,4.3011627,8.174351,1.3321922,7.7335134,21.3765,966.3972,0.0,70.43208 +2023-08-20 10:00:00,4.501111,8.149847,358.727,6.3401003,20.526499,967.01245,0.0,75.88702 +2023-08-20 11:00:00,4.2579336,7.816009,9.462261,16.348253,19.8265,967.2725,0.0,75.28996 +2023-08-20 12:00:00,4.5891175,7.912016,11.3098955,16.144413,18.4765,968.46405,0.0,70.79699 +2023-08-20 13:00:00,4.4102154,7.4148498,3.9004252,10.097442,18.176498,969.7405,0.0,71.90621 +2023-08-20 14:00:00,4.9162993,6.736468,4.6667724,5.964399,18.5765,970.56915,0.0,69.44151 +2023-08-20 15:00:00,4.6389656,6.166036,7.4313188,8.392845,19.6265,971.22485,0.0,67.63892 +2023-08-20 16:00:00,4.0261645,5.1923018,14.381432,15.642312,20.8765,971.3441,0.0,66.16123 +2023-08-20 17:00:00,4.0706263,5.1971145,27.824009,30.018288,22.3265,970.9259,0.0,62.733746 +2023-08-20 18:00:00,4.215448,5.3712196,22.306253,24.179106,23.6265,970.6697,0.0,59.116066 +2023-08-20 19:00:00,4.428318,5.8137765,25.407679,26.564985,24.6265,970.5514,0.0,55.85179 +2023-08-20 20:00:00,4.5177426,5.95399,27.699385,29.147985,25.2265,970.55585,0.0,54.759335 +2023-08-20 21:00:00,4.651881,6.1269894,25.463305,26.146788,25.3765,970.3907,0.0,53.926 +2023-08-20 22:00:00,4.6647615,6.3812227,30.963696,32.195713,25.0765,970.05597,0.0,54.023388 +2023-08-20 23:00:00,4.060788,6.2625875,37.99879,38.516956,24.6265,969.9814,0.0,57.67072 +2023-08-21 00:00:00,3.7013512,6.220129,51.581917,53.49847,22.526499,970.38983,0.0,65.45079 +2023-08-21 01:00:00,2.9154758,6.177378,59.03632,60.94549,21.1265,970.1526,0.0,68.82195 +2023-08-21 02:00:00,2.5553863,6.0835843,59.420856,64.698654,19.8765,970.50854,0.0,72.44873 +2023-08-21 03:00:00,2.624881,6.281719,72.25524,76.18495,19.276499,970.9748,0.0,72.575325 +2023-08-21 04:00:00,3.5902646,7.6941533,77.125,81.02746,18.7265,970.69006,0.0,71.539764 +2023-08-21 05:00:00,3.214032,7.1112585,84.644264,86.77554,18.276499,970.4223,0.0,73.82429 +2023-08-21 06:00:00,2.9068885,6.33877,93.945114,96.340096,18.8265,970.3277,0.0,73.68007 +2023-08-21 07:00:00,2.886174,5.6320515,104.03627,106.50443,19.4765,970.24994,0.0,72.84605 +2023-08-21 08:00:00,1.9697715,4.118252,113.962494,119.05451,19.526499,970.1636,0.0,74.99909 +2023-08-21 09:00:00,2.505993,4.743417,118.61037,124.69522,19.7265,969.91315,0.0,75.27356 +2023-08-21 10:00:00,1.8601075,4.4553337,126.25393,134.09071,19.0765,969.61163,0.0,79.9018 +2023-08-21 11:00:00,1.7117243,3.9661064,96.70974,123.6901,18.676498,969.44775,0.0,82.978355 +2023-08-21 12:00:00,1.3892444,3.7802117,120.256355,142.52374,18.4765,969.7927,0.0,86.74921 +2023-08-21 13:00:00,1.8384776,3.5805027,112.38018,144.09018,19.8265,970.21515,0.0,84.70867 +2023-08-21 14:00:00,1.9416487,3.001666,101.88863,119.98155,21.676498,970.3411,0.0,81.014534 +2023-08-21 15:00:00,2.2203605,2.7892652,97.76508,104.5345,23.4765,970.4545,0.0,78.2784 +2023-08-21 16:00:00,2.7313,3.4,113.749504,118.072395,25.2265,970.55585,0.0,76.85986 +2023-08-21 17:00:00,3.2202482,4.0459857,126.15828,129.98683,26.9765,970.274,0.0,76.424484 +2023-08-21 18:00:00,4.167733,5.3712196,149.74365,151.0491,29.1265,969.7675,0.0,73.59727 +2023-08-21 19:00:00,4.632494,6.063827,166.26372,166.65126,30.926498,968.915,0.0,67.37089 +2023-08-21 20:00:00,5.096077,6.8154235,164.05453,165.55592,31.426498,968.2335,0.0,65.47903 +2023-08-21 21:00:00,5.3160133,7.156815,163.61038,164.6044,32.1265,967.3931,0.0,63.68927 +2023-08-21 22:00:00,5.8240876,8.077747,164.05453,164.93146,32.0265,966.8065,0.0,65.99439 +2023-08-21 23:00:00,5.1264024,7.874643,159.44388,162.25523,31.7265,966.5689,0.0,68.95007 +2023-08-22 00:00:00,3.8078864,6.440497,150.06857,154.23073,29.5765,967.0826,0.0,77.277756 +2023-08-22 01:00:00,4.060788,7.632169,142.00122,148.39255,28.526499,966.7237,0.0,80.662704 +2023-08-22 02:00:00,4.3863425,8.323461,136.8476,144.78232,27.526499,966.75165,0.0,84.48977 +2023-08-22 03:00:00,4.701064,8.832327,141.91118,149.37007,27.026499,966.9555,0.0,87.00291 +2023-08-22 04:00:00,5.1312766,9.43663,146.92932,152.89195,26.676498,966.80347,0.0,88.282776 +2023-08-22 05:00:00,5.565968,10.04241,162.21602,164.99503,26.3765,966.46924,0.0,89.58953 +2023-08-22 06:00:00,6.419502,11.007271,175.53293,177.91748,26.2265,966.1596,0.0,89.847145 +2023-08-22 07:00:00,6.9354167,11.7098255,185.79271,187.85323,26.176498,965.96136,0.0,89.84358 +2023-08-22 08:00:00,7.0405965,11.91008,191.4695,193.1028,26.1265,965.9531,0.0,90.922356 +2023-08-22 09:00:00,7.376313,12.271105,195.73207,197.54909,26.0765,965.9448,0.0,91.73863 +2023-08-22 10:00:00,7.3054776,12.126417,199.17911,201.27504,25.926498,965.82544,0.0,92.2803 +2023-08-22 11:00:00,7.31642,12.133425,201.65605,203.81865,25.776499,965.5156,0.0,92.54863 +2023-08-22 12:00:00,6.7779055,11.315917,201.6445,205.65923,25.776499,965.9907,0.0,93.94263 +2023-08-22 13:00:00,7.021396,11.337107,206.20006,210.1836,26.8265,965.9727,0.0,89.62249 +2023-08-22 14:00:00,6.3560996,10.878419,204.14554,209.15683,28.1265,966.08844,0.0,86.07416 +2023-08-22 15:00:00,6.762396,9.794387,203.53236,206.04176,29.676498,965.9575,0.0,81.049095 +2023-08-22 16:00:00,6.7542577,9.43663,205.42683,207.10805,31.176498,965.816,0.0,74.81718 +2023-08-22 17:00:00,6.809552,9.329523,209.95352,210.96368,32.5265,965.4582,0.0,67.683556 +2023-08-22 18:00:00,6.6573267,9.097252,212.73521,213.34073,33.5765,964.7664,0.0,61.023228 +2023-08-22 19:00:00,6.3812227,8.820431,212.19571,212.9694,34.3265,964.3121,0.0,56.12298 +2023-08-22 20:00:00,6.3631754,8.883693,210.19153,211.18492,34.7765,963.9058,0.0,52.48217 +2023-08-22 21:00:00,5.9093146,8.367198,203.9625,204.7273,34.9265,963.45306,0.0,52.995365 +2023-08-22 22:00:00,5.4781384,8.600581,201.41304,203.28609,34.7765,962.66864,0.0,54.57265 +2023-08-22 23:00:00,5.412947,9.259049,205.14474,207.67198,33.8265,962.23615,0.0,55.66775 +2023-08-23 00:00:00,5.1429563,9.2660675,206.56499,209.0545,31.8765,962.6928,0.0,61.195896 +2023-08-23 01:00:00,4.9193497,9.415414,206.56499,210.65059,30.6265,962.5907,0.0,60.73182 +2023-08-23 02:00:00,4.5694637,9.082401,203.19861,208.25793,29.6265,962.5266,0.0,62.007263 +2023-08-23 03:00:00,4.8332186,9.588014,204.44394,210.04128,29.026499,962.62085,0.0,63.21801 +2023-08-23 04:00:00,5.5461698,10.394229,205.64096,210.01828,28.776499,962.58093,0.0,64.534294 +2023-08-23 05:00:00,5.6435804,10.484751,209.74478,212.93224,28.6265,962.4618,0.0,66.506874 +2023-08-23 06:00:00,5.964059,10.823123,214.75598,218.24646,28.526499,962.5408,0.0,67.92253 +2023-08-23 07:00:00,6.4031243,11.402192,218.65984,221.80037,28.5765,962.35846,0.0,68.55584 +2023-08-23 08:00:00,6.762396,11.825819,218.3952,221.9151,28.676498,962.2796,0.0,68.993355 +2023-08-23 09:00:00,6.902898,11.759252,218.53021,221.55252,28.3765,962.0414,0.0,69.99303 +2023-08-23 10:00:00,7.017834,12.093386,220.95541,223.99501,28.276499,961.64496,0.0,67.25412 +2023-08-23 11:00:00,6.236986,11.172287,221.09941,224.9999,27.6265,961.445,0.0,66.91836 +2023-08-23 12:00:00,6.940461,12.233151,233.79045,237.3492,28.7265,961.527,0.0,55.973682 +2023-08-23 13:00:00,6.155485,10.885311,226.97493,231.34016,27.926498,961.3987,0.0,61.629673 +2023-08-23 14:00:00,5.7999997,9.708244,223.60289,228.75865,28.776499,961.44006,0.0,60.68643 +2023-08-23 15:00:00,4.0459857,6.5436993,230.01317,231.20343,30.1265,961.4652,0.0,59.33433 +2023-08-23 16:00:00,3.9962482,5.6938567,238.29861,239.38147,31.3765,961.2825,0.0,55.924755 +2023-08-23 17:00:00,5.2325897,7.155418,243.9247,243.43501,32.4265,961.1619,0.0,50.0149 +2023-08-23 18:00:00,5.5542774,7.484651,246.66594,247.20345,33.0765,960.7877,0.0,48.964615 +2023-08-23 19:00:00,5.1264024,6.835203,249.44388,249.44386,33.6765,960.21497,0.0,49.27031 +2023-08-23 20:00:00,4.8764744,6.5299315,241.85849,242.6502,34.2765,959.8319,0.0,49.575443 +2023-08-23 21:00:00,5.5217752,7.6550636,234.58286,236.7251,34.5265,959.48975,0.0,47.27737 +2023-08-23 22:00:00,4.8877397,7.517978,239.23735,241.38963,34.226498,959.06305,0.0,48.962177 +2023-08-23 23:00:00,3.6359317,6.5299315,238.49579,242.6502,33.476498,958.5663,0.0,53.4403 +2023-08-24 00:00:00,1.7,4.2720017,241.92761,249.44386,32.226498,959.0378,0.0,67.42462 +2023-08-24 01:00:00,2.0248458,3.7215588,212.90524,239.30035,29.7265,958.5491,0.0,75.255 +2023-08-24 02:00:00,1.868154,3.8209944,195.52417,222.87889,29.0765,958.63586,0.0,75.37743 +2023-08-24 03:00:00,3.420526,6.449806,195.25517,209.7448,28.5765,958.55585,0.0,77.36143 +2023-08-24 04:00:00,4.167733,8.621485,210.25635,217.93333,28.8265,958.3106,0.0,70.289215 +2023-08-24 05:00:00,4.313931,8.845903,224.0609,227.29063,28.1265,958.0084,0.0,65.79724 +2023-08-24 06:00:00,3.3241541,7.4946647,254.29129,251.3232,26.9765,958.0137,0.0,64.95298 +2023-08-24 07:00:00,3.231099,7.615773,248.19853,256.32867,26.2265,957.7971,0.0,64.794685 +2023-08-24 08:00:00,3.7121422,7.9762144,274.63538,277.92685,25.7265,957.90564,0.0,63.88334 +2023-08-24 09:00:00,2.8160257,5.9682493,286.50443,301.29297,24.4765,957.7965,0.0,76.03631 +2023-08-24 10:00:00,2.745906,5.772348,326.88864,345.9637,24.026499,958.19714,0.0,93.58157 +2023-08-24 11:00:00,1.8027756,4.6,340.55988,360.0,23.676498,958.4245,0.0,94.707466 +2023-08-24 12:00:00,3.130495,6.1684685,333.43503,343.03375,23.1265,959.37805,0.0,96.429245 +2023-08-24 13:00:00,3.3615475,6.3906183,329.62094,339.8636,23.926498,960.27057,0.0,93.86085 +2023-08-24 14:00:00,3.8626416,5.2201533,338.74942,339.82925,25.176498,961.1413,0.0,89.500946 +2023-08-24 15:00:00,2.8442926,3.6496572,349.8754,350.53775,26.526499,961.45685,0.0,84.89287 +2023-08-24 16:00:00,3.214032,4.110961,354.64426,355.81516,27.7265,962.03174,0.0,79.83686 +2023-08-24 17:00:00,3.3136082,4.219004,354.80566,354.55975,28.8765,962.21643,0.0,73.3342 +2023-08-24 18:00:00,3.5171013,4.535416,345.17346,345.9637,29.8765,962.1861,0.0,67.77505 +2023-08-24 19:00:00,3.2572994,4.0804415,342.12122,342.8972,30.3265,961.87726,0.0,65.05567 +2023-08-24 20:00:00,3.0594118,3.8832974,348.6901,348.11136,30.3265,961.87726,0.0,63.690605 +2023-08-24 21:00:00,3.1953092,4.049691,339.8636,339.77505,30.5765,962.0118,0.0,60.535862 +2023-08-24 22:00:00,4.0496917,5.215362,327.09476,327.52884,30.1265,962.0358,0.0,61.364277 +2023-08-24 23:00:00,3.104835,4.4384685,345.06854,345.65063,29.3265,961.62305,0.0,64.06092 +2023-08-25 00:00:00,3.176476,4.8754487,331.8215,334.48618,27.2265,963.2814,0.0,76.0003 +2023-08-25 01:00:00,1.9,4.204759,360.0,357.27374,25.926498,962.6896,0.0,81.5545 +2023-08-25 02:00:00,1.5231546,2.9410882,23.198618,17.818983,25.026499,962.7319,0.2,88.41375 +2023-08-25 03:00:00,2.5942245,5.283938,27.552727,29.475794,24.3765,962.4347,0.0,87.291275 +2023-08-25 04:00:00,2.1931713,5.0990195,46.8476,48.179924,23.676498,962.224,0.0,89.11611 +2023-08-25 05:00:00,1.7804494,4.7201695,51.842735,53.61555,22.9765,962.39233,0.0,92.11465 +2023-08-25 06:00:00,1.7888545,4.2755113,116.56499,100.784256,23.1265,962.32245,0.0,91.28253 +2023-08-25 07:00:00,1.2041595,2.828427,175.23645,135.0001,22.8265,962.4624,0.0,93.23994 +2023-08-25 08:00:00,1.421267,3.538361,140.71062,132.70937,22.5765,961.9458,0.0,94.9544 +2023-08-25 09:00:00,0.92195445,1.5132746,12.528798,82.40546,22.276499,961.8006,0.0,94.36334 +2023-08-25 10:00:00,1.9026297,2.9732137,3.0127327,19.653913,21.526499,962.0548,0.0,97.27911 +2023-08-25 11:00:00,1.2529964,3.0463092,61.389645,66.801384,21.0765,962.26355,0.0,98.47512 +2023-08-25 12:00:00,0.92195445,0.7,49.398785,360.0,21.276499,962.6772,0.0,99.08399 +2023-08-25 13:00:00,0.8,0.8544004,90.0,69.44387,22.7265,963.01556,0.0,95.25012 +2023-08-25 14:00:00,0.28284273,0.44721362,44.999897,63.435013,24.1265,963.81854,0.0,89.42253 +2023-08-25 15:00:00,1.2041595,1.421267,228.36655,230.71062,25.276499,964.2932,0.0,83.230255 +2023-08-25 16:00:00,2.118962,2.6925824,289.29013,291.80148,26.5765,964.221,0.0,77.77038 +2023-08-25 17:00:00,2.6000001,3.2695565,292.6199,293.4287,27.926498,964.3454,0.0,72.50977 +2023-08-25 18:00:00,3.748333,4.6690474,313.91916,313.26434,29.2265,964.26917,0.0,62.2998 +2023-08-25 19:00:00,5.021952,6.521503,324.72748,324.3601,29.8265,964.65045,0.2,49.807873 +2023-08-25 20:00:00,5.636488,7.56439,334.79892,335.8068,28.5765,964.73517,0.1,58.066822 +2023-08-25 21:00:00,5.9464273,7.937884,340.3461,340.8802,28.426498,964.52094,0.0,58.757267 +2023-08-25 22:00:00,6.040695,8.221922,340.6651,341.56494,28.026499,964.5517,0.0,57.03897 +2023-08-25 23:00:00,6.0440054,8.516455,343.66388,344.3318,27.176498,964.7939,0.0,58.097767 +2023-08-26 00:00:00,6.113101,9.483143,344.82703,345.9637,25.4765,965.8465,0.0,63.230473 +2023-08-26 01:00:00,6.4938436,10.606602,350.24762,351.87,23.8265,966.04834,0.0,56.924526 +2023-08-26 02:00:00,6.0016665,10.012991,349.43903,351.38443,22.3265,966.74744,0.0,52.625206 +2023-08-26 03:00:00,5.59017,9.602604,349.69522,351.61682,20.8265,967.2534,0.0,56.368435 +2023-08-26 04:00:00,5.346027,9.353609,352.47626,353.86282,19.8765,967.18616,0.0,61.77356 +2023-08-26 05:00:00,4.472136,8.372574,349.69522,352.45068,19.0765,967.3338,0.0,65.56544 +2023-08-26 06:00:00,4.5891175,8.471717,348.6901,352.53952,18.4765,967.79974,0.0,68.29405 +2023-08-26 07:00:00,4.414748,8.062258,346.90808,352.87506,17.8765,968.2653,0.0,72.086685 +2023-08-26 08:00:00,4.1761227,7.7278714,343.3007,349.5626,17.2265,968.5315,0.0,76.84184 +2023-08-26 09:00:00,4.4384685,8.089499,345.65063,351.4693,16.676498,968.43555,0.0,80.87517 +2023-08-26 10:00:00,4.1773195,7.8160095,348.95908,356.33228,16.176498,968.53766,0.0,84.03497 +2023-08-26 11:00:00,3.5510561,6.902898,350.2725,358.33975,15.7265005,969.02734,0.0,86.76685 +2023-08-26 12:00:00,3.7215588,6.7119293,353.82993,3.4165199,14.9265,969.2654,0.0,91.63508 +2023-08-26 13:00:00,4.3011627,6.428064,358.66782,5.3557334,16.026499,969.8393,0.0,86.795494 +2023-08-26 14:00:00,4.738143,6.2513995,7.274921,7.3522935,17.3265,970.067,0.0,82.282745 +2023-08-26 15:00:00,4.924429,6.3788714,12.907409,13.600564,18.8765,970.526,0.0,75.620575 +2023-08-26 16:00:00,4.9335585,6.514599,17.700521,17.87879,20.3265,970.77545,0.1,66.691795 +2023-08-26 17:00:00,4.588028,5.9808025,20.409975,20.556128,20.7265,970.4642,0.1,65.06694 +2023-08-26 18:00:00,4.429447,5.635601,28.30066,27.474344,21.8265,970.3663,0.1,60.429737 +2023-08-26 19:00:00,4.031129,5.1107726,29.744795,30.579157,21.9765,970.1069,0.0,60.66104 +2023-08-26 20:00:00,3.8587563,4.992995,31.218353,32.73523,22.1265,969.94244,0.0,60.499683 +2023-08-26 21:00:00,3.8948684,4.8877397,29.197395,30.762655,22.8765,969.4041,0.0,57.245827 +2023-08-26 22:00:00,3.9812057,5.1429563,25.277687,26.564985,22.5765,969.06854,0.0,56.986908 +2023-08-26 23:00:00,3.6715121,4.614109,29.357658,29.898815,22.3265,968.7417,0.0,55.27794 +2023-08-27 00:00:00,3.6124785,5.0990195,41.63345,41.82009,20.276499,969.05835,0.0,62.27157 +2023-08-27 01:00:00,2.3345237,4.90408,46.73567,50.792812,18.8265,968.6193,0.0,67.25465 +2023-08-27 02:00:00,2.2671568,5.325411,48.57643,55.713078,17.676498,968.7997,0.0,69.95197 +2023-08-27 03:00:00,2.86007,6.003332,53.530666,60.018444,16.8265,968.936,0.0,71.42089 +2023-08-27 04:00:00,2.5942245,5.7775426,62.447273,66.54096,15.926499,968.9678,0.0,73.90116 +2023-08-27 05:00:00,2.0880613,5.1662364,73.300674,75.42574,15.0265,968.80896,0.0,78.03074 +2023-08-27 06:00:00,1.7,4.504442,90.0,87.45525,14.2765,968.486,0.0,82.17042 +2023-08-27 07:00:00,1.8027756,3.9115217,93.17977,94.39862,13.5765,968.6456,0.0,86.272964 +2023-08-27 08:00:00,1.811077,3.748333,96.340096,99.21095,13.1765,968.4791,0.0,88.55079 +2023-08-27 09:00:00,1.746425,4.2720017,113.62939,110.55613,13.1265,968.18585,0.0,89.134735 +2023-08-27 10:00:00,1.8439089,4.548626,130.60121,123.34073,12.8265,967.7527,0.0,91.502884 +2023-08-27 11:00:00,1.7204651,4.313931,144.46223,135.9391,12.5265,967.6988,0.0,92.70362 +2023-08-27 12:00:00,1.4866068,3.6235344,160.34608,152.02061,12.2765,967.8431,0.0,94.54991 +2023-08-27 13:00:00,1.4142135,2.6683328,171.86998,167.00539,13.9765005,968.43256,0.0,89.79081 +2023-08-27 14:00:00,0.92195445,1.5132746,167.4712,172.40544,16.176498,968.6325,0.0,82.13935 +2023-08-27 15:00:00,1.0198039,1.3152945,168.69011,171.25392,18.276499,968.5243,0.0,74.79062 +2023-08-27 16:00:00,1.0770329,1.3000001,201.80147,202.6199,19.776499,968.30804,0.0,68.55454 +2023-08-27 17:00:00,1.0770329,1.3928387,201.80147,201.03758,21.0765,967.8653,0.0,62.860077 +2023-08-27 18:00:00,1.5132746,1.8248286,187.59456,189.46225,22.276499,967.2136,0.0,55.627872 +2023-08-27 19:00:00,2.109502,2.6172504,185.44025,186.58185,22.776499,966.538,0.0,55.57164 +2023-08-27 20:00:00,2.4738634,3.104835,194.03627,194.93147,23.276499,966.14667,0.0,54.97797 +2023-08-27 21:00:00,2.7892652,3.5171013,194.5345,194.82652,23.5765,965.53186,0.0,53.991894 +2023-08-27 22:00:00,3.0364454,3.8897302,197.24155,197.96924,23.526499,965.14355,0.0,54.15485 +2023-08-27 23:00:00,3.0413814,3.9623227,189.46225,190.17545,23.176498,964.70544,0.0,56.581596 +2023-08-28 00:00:00,2.9068885,4.9010205,176.05489,181.16911,22.426498,964.57996,0.0,60.765453 +2023-08-28 01:00:00,2.7658634,5.8077536,167.4712,177.03912,20.6265,963.8966,0.0,67.187294 +2023-08-28 02:00:00,3.026549,6.500769,172.40544,180.88138,19.5765,963.9075,0.0,71.46486 +2023-08-28 03:00:00,3.206244,6.648308,176.42374,186.91113,18.926498,963.70123,0.0,74.416504 +2023-08-28 04:00:00,3.3015149,6.8264194,178.26433,185.04236,18.426498,963.7105,0.0,76.780205 +2023-08-28 05:00:00,3.6,7.256032,180.0,187.12492,18.026499,963.4517,0.0,80.53251 +2023-08-28 06:00:00,3.9115217,7.9246454,184.39862,190.17545,17.926498,963.71906,0.0,80.51905 +2023-08-28 07:00:00,4.418144,8.515867,185.19434,189.46225,17.776499,963.6931,0.0,78.95095 +2023-08-28 08:00:00,4.6872168,8.80568,191.07016,195.14104,17.526499,963.1754,0.0,78.404015 +2023-08-28 09:00:00,4.997999,9.310746,199.88525,204.08745,17.276499,963.0373,0.0,78.367096 +2023-08-28 10:00:00,5.239275,9.6648855,203.6294,208.42111,17.176498,962.5455,0.0,77.58989 +2023-08-28 11:00:00,5.4120235,9.81835,207.51192,213.36638,17.176498,962.6403,0.0,76.83401 +2023-08-28 12:00:00,4.830114,8.850988,207.09547,212.07396,17.2265,962.8387,0.0,77.344894 +2023-08-28 13:00:00,4.8826222,8.261961,214.9921,218.11832,18.276499,963.30493,0.0,75.52265 +2023-08-28 14:00:00,3.920459,6.6603303,217.74687,221.34767,20.026499,963.6046,0.0,72.24267 +2023-08-28 15:00:00,4.0459857,5.5226803,219.98683,222.06425,21.9765,963.7446,0.0,66.604034 +2023-08-28 16:00:00,3.8209944,4.9578223,227.12111,228.27058,23.8765,963.96704,0.0,62.67806 +2023-08-28 17:00:00,2.7856774,3.51141,248.96242,250.0168,25.3765,963.9296,0.0,59.33953 +2023-08-28 18:00:00,2.3,2.8,270.0,270.0,26.526499,963.5476,0.0,56.497383 +2023-08-28 19:00:00,2.5553863,3.1384711,300.57913,300.65057,27.3765,963.4009,0.0,55.11991 +2023-08-28 20:00:00,3.482815,4.404543,309.17365,309.47244,27.8765,963.1964,0.1,52.196213 +2023-08-28 21:00:00,4.031129,5.23259,313.995,315.0001,27.676498,962.974,0.0,48.931736 +2023-08-28 22:00:00,4.6647615,6.191123,329.03632,328.8776,27.2265,962.80615,0.0,50.238007 +2023-08-28 23:00:00,3.6619666,5.1312766,325.0079,326.92932,26.676498,962.52686,0.0,50.416077 +2023-08-29 00:00:00,2.1095023,4.5177426,328.5705,332.30063,25.8265,962.6731,0.0,57.59264 +2023-08-29 01:00:00,2.0615528,5.147815,320.90613,330.9455,23.3765,962.3641,0.0,63.573452 +2023-08-29 02:00:00,2.1540658,5.3600373,338.19852,351.41644,22.3765,962.6721,0.0,64.37889 +2023-08-29 03:00:00,3.8999999,8.104321,337.3801,344.24875,22.176498,963.3983,0.0,63.51325 +2023-08-29 04:00:00,3.324154,7.156815,338.83865,344.6044,21.776499,963.7111,0.0,67.206314 +2023-08-29 05:00:00,2.5806975,6.053924,324.46225,337.6713,20.776499,963.3523,0.0,70.99905 +2023-08-29 06:00:00,2.2472205,5.325411,302.27563,325.71307,19.3265,963.01056,0.0,76.92039 +2023-08-29 07:00:00,2.236068,5.456189,296.56497,318.7154,18.5765,962.69226,0.0,80.34769 +2023-08-29 08:00:00,2.118962,5.234501,289.29013,313.4519,18.0765,962.4165,0.0,82.110855 +2023-08-29 09:00:00,2.5495098,5.9682493,281.3099,301.29297,17.926498,962.4855,0.0,82.88877 +2023-08-29 10:00:00,3.4,7.224957,298.0724,311.63345,17.9765,962.7786,0.0,77.96361 +2023-08-29 11:00:00,3.905125,7.8517513,309.8055,316.5481,17.776499,963.3136,0.0,75.19523 +2023-08-29 12:00:00,3.6124785,7.156116,318.36655,326.97614,16.9765,963.9339,0.0,82.23929 +2023-08-29 13:00:00,3.6124785,6.551336,318.36655,328.73633,17.8765,964.4697,0.0,82.085884 +2023-08-29 14:00:00,3.1241,4.9648767,320.1945,325.66974,19.7265,965.07214,0.0,77.229164 +2023-08-29 15:00:00,2.8844411,3.8275318,326.3099,326.7251,21.6265,965.39496,0.0,71.61171 +2023-08-29 16:00:00,2.996665,3.757659,334.2901,334.79892,23.276499,965.8617,0.0,65.192924 +2023-08-29 17:00:00,3.443835,4.428318,334.17905,334.59232,24.526499,965.7847,0.0,59.70812 +2023-08-29 18:00:00,4.0706263,5.27731,332.176,332.9495,25.426498,965.5531,0.0,54.111824 +2023-08-29 19:00:00,4.4777226,5.8180757,336.29733,335.63754,26.2265,965.0193,0.0,49.975727 +2023-08-29 20:00:00,4.8104053,6.332456,339.30447,338.70258,27.0765,964.7777,0.0,45.583584 +2023-08-29 21:00:00,4.9396358,6.519202,338.6293,339.341,27.276499,964.2398,0.0,43.75746 +2023-08-29 22:00:00,4.9040794,6.676077,343.41257,343.4651,27.1265,963.93054,0.0,43.433037 +2023-08-29 23:00:00,4.244997,6.1846585,344.9816,345.9637,26.526499,963.92773,0.0,45.58167 +2023-08-30 00:00:00,2.5079873,4.9,355.42615,360.0,24.8765,964.2274,0.0,54.847507 +2023-08-30 01:00:00,2.0880613,5.2469034,343.3007,352.33328,22.426498,964.1051,0.0,62.15298 +2023-08-30 02:00:00,3.2202485,7.17844,334.2307,341.31256,21.5765,964.53186,0.0,62.161438 +2023-08-30 03:00:00,3.231099,6.963476,338.19852,347.56046,20.9765,965.00024,0.0,62.83765 +2023-08-30 04:00:00,2.9410882,6.905071,342.18103,349.99207,19.926498,965.1063,0.0,67.261536 +2023-08-30 05:00:00,2.404163,5.93043,343.0724,354.19336,19.176498,965.2629,0.0,70.46952 +2023-08-30 06:00:00,2.1095023,5.0487623,328.5705,352.0305,17.9765,965.15094,0.0,73.532036 +2023-08-30 07:00:00,1.7804494,4.1773195,321.8427,348.95908,16.926498,965.06354,0.0,75.79558 +2023-08-30 08:00:00,1.8439089,3.9560082,310.60123,339.27435,16.4765,964.79535,0.0,76.723816 +2023-08-30 09:00:00,1.7492856,3.6235344,300.96368,332.02063,15.926499,965.0787,0.0,78.16617 +2023-08-30 10:00:00,1.7204651,3.448188,305.53775,330.4613,15.4765005,965.09436,0.0,80.185265 +2023-08-30 11:00:00,1.8601075,3.104835,323.74606,345.06854,14.8265,965.1695,0.0,83.88084 +2023-08-30 12:00:00,1.264911,1.6552945,18.435053,64.98315,15.6265,965.9746,0.0,80.734726 +2023-08-30 13:00:00,1.5033296,2.720294,93.814,107.10281,16.7265,966.4518,0.0,79.83434 +2023-08-30 14:00:00,1.8973665,3.1906114,108.43504,122.1957,19.026499,966.8507,0.0,74.1932 +2023-08-30 15:00:00,2.842534,3.6619666,140.71062,145.0079,21.176498,967.02795,0.0,71.3011 +2023-08-30 16:00:00,3.4539833,4.4598203,157.8905,160.34608,23.176498,967.17487,0.0,62.722237 +2023-08-30 17:00:00,3.6878178,4.669047,167.4712,170.13426,24.6265,966.9413,0.0,58.226448 +2023-08-30 18:00:00,4.20119,5.4,178.63611,180.0,25.776499,966.2758,0.0,54.027042 +2023-08-30 19:00:00,4.2,5.3009434,180.0,181.0809,26.3265,965.89075,0.0,50.48631 +2023-08-30 20:00:00,4.2296567,5.423099,173.21112,174.71,26.676498,965.56805,0.0,48.510384 +2023-08-30 21:00:00,4.491102,5.7870545,168.4399,170.04944,26.776499,964.8239,0.0,47.608334 +2023-08-30 22:00:00,4.4922156,5.920304,163.17851,164.32042,26.526499,964.30786,0.0,48.00388 +2023-08-30 23:00:00,4.4271884,6.198387,161.56496,162.1496,26.176498,963.9658,0.0,47.755444 +2023-08-31 00:00:00,4.1880784,6.9115844,146.68936,148.60979,24.3265,963.8515,0.0,55.95723 +2023-08-31 01:00:00,4.0459857,7.44043,140.01317,143.74608,22.676498,963.577,0.0,60.6275 +2023-08-31 02:00:00,4.5,8.459906,143.13002,147.06131,21.776499,963.61615,0.0,63.22045 +2023-08-31 03:00:00,4.6400433,8.792042,142.88306,146.12915,21.1265,963.5064,0.0,65.15273 +2023-08-31 04:00:00,4.8414874,8.987213,141.7098,145.42575,20.3765,963.3793,0.0,68.23126 +2023-08-31 05:00:00,5.408327,9.775479,146.3099,149.23735,19.8765,963.19934,0.0,69.9205 +2023-08-31 06:00:00,5.9506307,10.530907,155.15764,157.08714,19.7265,963.2686,0.0,68.32229 +2023-08-31 07:00:00,6.1684685,10.648005,163.03377,165.31117,19.4765,963.41583,0.0,66.9502 +2023-08-31 08:00:00,6.140033,10.599057,163.92636,166.35707,19.1265,963.1662,0.0,66.877594 +2023-08-31 09:00:00,6.5520988,11.1830225,164.05453,167.08218,18.776499,962.82153,0.0,67.68646 +2023-08-31 10:00:00,6.3788714,10.977249,170.98076,173.19878,18.526499,963.0632,0.0,69.2049 +2023-08-31 11:00:00,6.428064,11.016352,174.64427,176.87793,18.2265,963.1067,0.0,70.9815 +2023-08-31 12:00:00,6.618912,11.204017,175.66777,178.4657,17.8265,963.51196,0.0,76.68607 +2023-08-31 13:00:00,7.2835426,11.462984,171.31372,173.99109,18.526499,963.5377,0.0,75.563515 +2023-08-31 14:00:00,7.138627,10.621205,168.69011,171.33595,19.8265,963.4756,0.0,72.673584 +2023-08-31 15:00:00,7.5802374,10.580171,171.65619,172.94225,21.426498,963.557,0.0,68.2215 +2023-08-31 16:00:00,7.1028166,9.712878,181.61351,182.95071,23.0765,964.30865,0.0,62.90099 +2023-08-31 17:00:00,7.802564,10.600472,178.53123,179.4595,24.276499,964.12823,0.0,57.586163 +2023-08-31 18:00:00,8.21523,11.011357,176.51074,177.39749,25.2265,963.5249,0.0,54.409332 +2023-08-31 19:00:00,8.79659,11.921829,171.50153,171.80202,25.8265,962.6731,0.0,53.523674 +2023-08-31 20:00:00,8.336066,11.261439,169.63373,170.28682,26.276499,962.36676,0.0,52.28464 +2023-08-31 21:00:00,7.496666,10.309704,170.78905,171.6342,26.0765,961.95374,0.0,52.73734 +2023-08-31 22:00:00,7.692204,10.6737995,164.15686,164.7919,25.926498,961.64435,0.0,53.207573 +2023-08-31 23:00:00,8.160883,11.6760435,162.89719,163.58269,25.426498,961.1824,0.0,53.59376 +2023-09-01 00:00:00,7.655063,11.66919,160.1447,162.03078,24.026499,961.5219,0.0,56.24436 +2023-09-01 01:00:00,7.28011,11.732434,159.07542,161.10165,22.926498,961.3395,0.0,56.519962 +2023-09-01 02:00:00,6.47611,10.728001,166.60748,168.16638,22.176498,961.87897,0.0,55.602825 +2023-09-01 03:00:00,6.315061,10.720075,169.04597,171.41646,21.5765,962.253,0.0,54.368427 +2023-09-01 04:00:00,5.9076223,10.2,177.08922,180.0,21.0765,962.6433,0.0,53.883015 +2023-09-01 05:00:00,6.4031243,11.00409,178.21013,181.5622,20.776499,962.5928,0.0,53.272766 +2023-09-01 06:00:00,7.0007143,11.715375,180.81844,182.93561,20.426498,962.4384,0.0,57.965763 +2023-09-01 07:00:00,7.306162,12.0415945,182.35324,184.76355,19.9765,962.457,0.0,64.06312 +2023-09-01 08:00:00,7.605919,12.440257,182.26045,184.61057,19.526499,962.09546,0.0,66.09205 +2023-09-01 09:00:00,7.752419,12.757743,186.66656,189.01924,19.176498,962.22565,0.0,66.45175 +2023-09-01 10:00:00,7.9246454,12.886039,190.17545,192.09474,18.926498,962.1827,0.0,65.96505 +2023-09-01 11:00:00,7.9831076,13.000001,192.29526,194.25006,18.8265,962.35547,0.0,65.29688 +2023-09-01 12:00:00,8.17435,13.28533,194.8863,197.0711,19.276499,962.7172,0.0,68.454704 +2023-09-01 13:00:00,8.420215,13.315029,195.85199,197.48247,19.676498,963.07025,0.0,67.86953 +2023-09-01 14:00:00,8.036168,12.301626,196.63103,197.99318,20.9765,963.2912,0.0,64.91007 +2023-09-01 15:00:00,8.286133,11.827087,197.56036,198.74144,22.5765,963.56024,0.0,60.800156 +2023-09-01 16:00:00,7.7491937,10.697663,199.60417,200.80687,24.4765,963.87646,0.0,57.266407 +2023-09-01 17:00:00,7.589466,10.278618,198.43504,199.31645,26.276499,963.8872,0.0,53.808956 +2023-09-01 18:00:00,7.712976,10.429286,193.49574,194.436,27.8265,963.4737,0.0,51.363525 +2023-09-01 19:00:00,7.3979726,10.016985,193.28488,194.45247,29.176498,963.40546,0.0,49.015823 +2023-09-01 20:00:00,7.3756356,10.06628,192.5288,193.20793,30.176498,962.99457,0.0,46.712757 +2023-09-01 21:00:00,7.0830784,9.79847,193.05525,194.1781,30.5765,962.4873,0.0,45.36702 +2023-09-01 22:00:00,6.746851,9.654015,191.9761,193.17256,30.4765,962.0911,0.0,44.487774 +2023-09-01 23:00:00,6.129437,9.674709,185.6175,187.12492,29.7265,961.782,0.0,47.48498 +2023-09-02 00:00:00,5.9539905,10.062305,187.72174,190.3048,28.3265,961.9381,0.0,52.641808 +2023-09-02 01:00:00,6.7742157,11.433722,188.48886,191.60474,27.2265,961.28546,0.0,52.862457 +2023-09-02 02:00:00,6.942622,11.835962,191.6336,193.68404,26.426498,961.7258,0.0,53.84682 +2023-09-02 03:00:00,6.2297673,11.072488,198.72588,200.07161,25.5765,962.2523,0.0,56.265167 +2023-09-02 04:00:00,6.7230945,11.503912,202.751,204.1142,24.8265,962.224,0.0,58.27426 +2023-09-02 05:00:00,6.0901566,10.754069,209.5114,210.1413,24.026499,962.47186,0.0,60.938957 +2023-09-02 06:00:00,5.636488,10.159724,205.2011,208.8354,23.5765,962.3023,0.0,62.811283 +2023-09-02 07:00:00,6.0008335,10.643778,203.57472,206.80571,23.026499,962.02106,0.0,64.3136 +2023-09-02 08:00:00,5.59017,10.121264,206.56499,209.60435,22.5765,961.75586,0.0,65.04394 +2023-09-02 09:00:00,5.188449,9.741663,207.55272,211.56892,22.176498,961.689,0.0,65.167206 +2023-09-02 10:00:00,6.0008335,10.754069,203.57472,210.1413,22.026499,961.1892,0.0,64.303 +2023-09-02 11:00:00,6.8883963,11.936499,207.68097,211.29298,22.0765,960.9126,0.0,62.677788 +2023-09-02 12:00:00,7.640026,12.8144455,217.01997,222.15332,23.1265,960.7078,0.0,61.516743 +2023-09-02 13:00:00,7.017834,11.808894,220.95541,224.65695,23.276499,960.92267,0.0,62.544193 +2023-09-02 14:00:00,0.5,3.0413814,90.0,226.33215,24.5765,962.08795,0.0,63.0327 +2023-09-02 15:00:00,1.9209373,2.4166093,141.34016,155.55606,25.8765,962.2062,0.0,58.15483 +2023-09-02 16:00:00,5.731492,7.6118326,186.00891,189.8335,27.5765,961.53204,0.0,54.30682 +2023-09-02 17:00:00,6.3245554,8.6977005,198.43504,199.47667,29.276499,960.8545,0.0,52.061234 +2023-09-02 18:00:00,5.700877,7.683749,217.87505,218.65984,31.276499,960.79114,0.0,47.005116 +2023-09-02 19:00:00,5.6435804,7.5802374,209.74478,210.96368,32.1265,960.1638,0.0,45.781826 +2023-09-02 20:00:00,5.9506307,8.005623,204.84236,205.92485,33.1265,959.4634,0.0,43.272545 +2023-09-02 21:00:00,5.9615436,8.1939,202.69383,203.7495,33.3765,959.02655,0.0,43.07073 +2023-09-02 22:00:00,5.6921,7.971198,198.43504,199.79897,33.2765,958.6305,0.0,44.82015 +2023-09-02 23:00:00,5.6044626,8.854377,195.52417,198.43504,32.6765,958.15686,0.0,46.93655 +2023-09-03 00:00:00,6.5520988,11.1,195.94547,198.92474,32.1765,958.07874,0.0,46.36955 +2023-09-03 01:00:00,7.66942,12.886039,202.21765,204.77512,31.176498,957.9221,0.0,45.385136 +2023-09-03 02:00:00,8.184132,13.6,206.87807,208.07239,30.276499,958.25574,0.0,47.034893 +2023-09-03 03:00:00,8.184132,13.559498,206.87807,208.64409,29.3265,958.3903,0.0,49.67763 +2023-09-03 04:00:00,8.188406,13.583077,208.44283,210.52963,28.526499,958.0727,0.0,52.197487 +2023-09-03 05:00:00,8.249242,13.645878,210.60632,213.34073,28.1265,958.0084,0.0,51.76718 +2023-09-03 06:00:00,8.099383,13.566504,212.90524,215.09589,27.676498,957.7461,0.0,49.876926 +2023-09-03 07:00:00,7.6216793,12.907362,218.07283,220.60121,27.1265,957.65765,0.0,48.31893 +2023-09-03 08:00:00,7.640026,13.048371,217.01997,220.64883,26.7265,957.78296,0.0,46.38092 +2023-09-03 09:00:00,7.4027023,12.6732,218.41809,222.12157,26.426498,957.63947,0.0,44.52882 +2023-09-03 10:00:00,7.017834,12.162237,220.95541,224.9999,25.926498,957.6533,0.0,43.814194 +2023-09-03 11:00:00,6.8767724,11.950314,220.87231,225.33899,25.4765,957.77,0.0,43.403538 +2023-09-03 12:00:00,6.2625875,11.107205,218.51695,223.17593,24.9765,957.8783,0.0,46.510735 +2023-09-03 13:00:00,6.046487,10.823123,214.21576,218.24646,24.426498,957.6929,0.0,50.476936 +2023-09-03 14:00:00,5.8830266,11.300443,211.79887,216.36296,25.676498,957.8028,0.0,51.298473 +2023-09-03 15:00:00,5.420332,8.40238,217.50421,218.23386,27.4765,958.0943,0.0,48.878853 +2023-09-03 16:00:00,5.0249376,6.9310894,222.58046,223.83095,29.2265,958.2793,0.0,45.43545 +2023-09-03 17:00:00,4.750789,6.236986,220.73201,221.09941,30.6265,958.12103,0.0,43.00248 +2023-09-03 18:00:00,4.1617303,5.4405885,215.21768,216.02747,31.526499,957.78705,0.0,41.37375 +2023-09-03 19:00:00,4.159327,5.3712196,207.18103,208.9509,32.226498,957.42065,0.0,40.39942 +2023-09-03 20:00:00,4.428318,5.7245083,205.40767,207.01259,32.5765,956.9044,0.0,40.49516 +2023-09-03 21:00:00,4.6957426,6.2177167,206.56499,207.80136,32.6265,956.6269,0.0,40.636852 +2023-09-03 22:00:00,4.6957426,6.306346,206.56499,207.37762,32.3765,956.2074,0.0,41.21409 +2023-09-03 23:00:00,4.0853395,6.2241464,201.54105,203.6821,31.776499,955.9237,0.0,44.978756 +2023-09-04 00:00:00,2.8,5.921149,180.0,184.84392,30.4765,956.29016,0.0,49.820786 +2023-09-04 01:00:00,2.8160255,6.512296,173.8846,183.52138,28.426498,955.9652,0.0,54.17772 +2023-09-04 02:00:00,3.8052595,7.8409185,176.98727,185.85593,27.676498,956.3203,0.0,54.847713 +2023-09-04 03:00:00,4.7,9.265528,180.0,186.81812,27.2265,956.34314,0.0,53.706936 +2023-09-04 04:00:00,5.7218876,10.423532,185.01303,188.82967,27.026499,956.4059,0.0,51.483902 +2023-09-04 05:00:00,6.1814237,10.944405,189.30986,192.1313,26.7265,956.2624,0.0,50.753025 +2023-09-04 06:00:00,6.4938436,11.303097,189.75235,193.29858,26.1265,955.9753,0.0,51.746277 +2023-09-04 07:00:00,6.609841,11.423659,190.45985,193.67133,25.4765,955.58466,0.0,52.922585 +2023-09-04 08:00:00,6.551336,11.375852,192.33908,194.76924,25.026499,955.32117,0.0,52.977768 +2023-09-04 09:00:00,6.6490602,11.621101,192.15492,195.47139,24.7265,954.98724,0.0,51.716682 +2023-09-04 10:00:00,6.942622,12.007082,191.6336,194.9622,24.3765,954.64484,0.0,50.95884 +2023-09-04 11:00:00,7.0611615,12.033288,192.26476,195.42223,23.926498,954.3811,0.0,50.67492 +2023-09-04 12:00:00,7.106335,12.271105,193.84071,197.54909,24.3765,954.16986,0.0,47.269993 +2023-09-04 13:00:00,7.4999995,12.5865,196.26028,199.01086,24.3265,954.2567,0.0,48.671043 +2023-09-04 14:00:00,6.718631,13.413426,194.6568,200.05618,25.5765,954.1757,0.0,49.96565 +2023-09-04 15:00:00,8.065358,11.795338,197.31174,198.28143,27.2265,954.25214,0.0,47.728783 +2023-09-04 16:00:00,8.53815,11.926861,198.43504,200.10632,28.7265,954.39685,0.0,47.52018 +2023-09-04 17:00:00,8.6977005,12.020815,199.47667,199.94247,30.526499,954.3962,0.0,45.06791 +2023-09-04 18:00:00,8.640023,11.829624,196.12766,197.20964,32.0765,954.16327,0.0,42.853714 +2023-09-04 19:00:00,8.640023,11.896217,196.12766,196.60706,33.3765,953.6986,0.0,37.747044 +2023-09-04 20:00:00,7.8262377,10.787029,190.3048,190.68486,33.8265,953.4825,0.0,34.540787 +2023-09-04 21:00:00,7.623647,10.4388685,184.5139,184.94588,33.726498,953.08655,0.0,33.212727 +2023-09-04 22:00:00,7.602631,10.707474,181.5074,182.14085,33.3265,952.6445,0.0,31.640717 +2023-09-04 23:00:00,6.7119293,10.304368,176.58348,178.3317,32.2765,952.4821,0.0,36.968826 +2023-09-05 00:00:00,5.5443664,9.533625,172.7469,175.18654,30.776499,952.6288,0.0,41.829525 +2023-09-05 01:00:00,5.885576,10.369668,170.21767,173.35481,29.5765,952.43994,0.0,45.09758 +2023-09-05 02:00:00,6.946222,11.727319,173.38664,176.0885,28.926498,953.0027,0.0,46.972557 +2023-09-05 03:00:00,7.302739,12.2,178.43068,180.0,28.2265,953.3665,0.0,47.995342 +2023-09-05 04:00:00,7.2111025,12.033703,183.17976,184.28908,27.426498,953.42865,0.0,50.61178 +2023-09-05 05:00:00,6.8,11.601725,180.0,180.98773,26.8265,953.3325,0.0,54.290985 +2023-09-05 06:00:00,6.419502,10.922453,175.53293,176.32558,26.276499,953.05383,0.0,55.902092 +2023-09-05 07:00:00,6.419502,11.007271,175.53293,177.91748,25.8265,953.07587,0.0,57.41023 +2023-09-05 08:00:00,6.873136,11.661904,171.6342,174.09395,25.6265,952.6635,0.0,58.464855 +2023-09-05 09:00:00,6.6068144,11.204017,177.39749,178.4657,25.3765,952.6228,0.0,59.15167 +2023-09-05 10:00:00,6.4,10.811568,180.0,182.65063,24.926498,952.54956,0.0,60.182644 +2023-09-05 11:00:00,6.5069194,11.1,177.35751,180.0,24.6265,952.2158,0.0,61.07636 +2023-09-05 12:00:00,5.2086463,9.302151,176.6982,181.23195,23.1265,951.6848,0.0,71.43231 +2023-09-05 13:00:00,5.93043,9.899495,185.80663,188.13002,23.8265,951.9898,0.0,70.44596 +2023-09-05 14:00:00,4.997999,7.2615423,199.88525,202.6806,25.176498,952.1152,0.0,67.04716 +2023-09-05 15:00:00,4.976947,6.670832,202.4428,203.87529,26.676498,952.26294,0.0,62.70524 +2023-09-05 16:00:00,4.838388,6.3245554,198.06056,198.43504,27.9765,952.9464,0.0,60.317062 +2023-09-05 17:00:00,4.8877397,6.328507,210.76265,211.4295,28.526499,953.1293,0.0,58.055016 +2023-09-05 18:00:00,5.080354,6.5802736,216.1933,216.34755,29.3265,952.8758,0.0,54.741337 +2023-09-05 19:00:00,4.816638,6.236986,228.36655,228.90059,29.026499,952.82825,0.0,54.15768 +2023-09-05 20:00:00,3.5510561,4.4418464,237.65257,238.81508,29.176498,952.66187,0.0,53.35539 +2023-09-05 21:00:00,3.7854989,4.785394,257.79956,259.15973,29.3265,952.4955,0.1,50.94333 +2023-09-05 22:00:00,5.7870545,7.6118326,279.95056,279.8335,29.1265,952.55896,0.0,47.929432 +2023-09-05 23:00:00,5.0695167,6.9641943,292.01132,291.03757,26.7265,953.3162,0.1,54.95873 +2023-09-06 00:00:00,5.5317264,7.798718,319.39877,319.15973,23.776499,954.73627,0.2,65.50614 +2023-09-06 01:00:00,6.9065185,10.484751,325.6196,327.06775,21.676498,955.4333,0.0,74.16809 +2023-09-06 02:00:00,7.746612,11.385077,320.76266,321.41876,19.426498,956.5732,0.0,75.22425 +2023-09-06 03:00:00,7.0007143,10.469002,315.57864,316.5481,18.1265,957.11084,0.0,74.76543 +2023-09-06 04:00:00,6.3780875,9.626007,311.18582,312.47385,17.5765,957.4908,0.0,76.6467 +2023-09-06 05:00:00,7.7781744,11.101802,315.0001,315.3649,17.8265,957.91345,0.0,77.94113 +2023-09-06 06:00:00,7.0434365,10.230348,308.65982,309.447,17.426498,958.3191,0.0,79.931595 +2023-09-06 07:00:00,7.582216,11.107205,311.25693,313.17593,17.0765,958.82794,0.2,81.455376 +2023-09-06 08:00:00,7.212489,10.751744,315.0001,316.5074,16.926498,959.0865,0.1,81.70091 +2023-09-06 09:00:00,7.4249578,11.103602,314.4544,316.0946,16.6265,959.41406,0.0,81.132416 +2023-09-06 10:00:00,7.7103825,11.402192,316.5765,318.19962,16.3265,960.2159,0.0,79.257996 +2023-09-06 11:00:00,8.080223,11.846096,323.55545,324.96826,16.3765,960.9834,0.0,74.223854 +2023-09-06 12:00:00,7.6609397,11.593533,324.0275,325.89868,15.5765,961.2232,0.0,73.351135 +2023-09-06 13:00:00,7.6550636,11.1830225,326.7251,328.1576,15.1765,961.81683,0.0,75.50801 +2023-09-06 14:00:00,8.077747,11.268097,328.67136,328.42584,16.026499,962.3454,0.0,73.187996 +2023-09-06 15:00:00,8.683317,11.772,331.07367,331.04004,17.276499,963.0373,0.0,68.72976 +2023-09-06 16:00:00,7.7999997,10.492378,337.3801,337.59012,18.276499,963.5897,0.0,65.17819 +2023-09-06 17:00:00,7.206941,9.577055,330.9455,331.29416,19.776499,964.0365,0.0,59.75003 +2023-09-06 18:00:00,6.847627,8.906739,331.1893,331.13293,21.026499,963.8694,0.0,54.227848 +2023-09-06 19:00:00,6.536819,8.595929,330.6901,330.75128,21.776499,963.806,0.0,49.607563 +2023-09-06 20:00:00,6.5299315,8.676981,332.6502,332.54907,22.0765,963.5715,0.0,45.410034 +2023-09-06 21:00:00,6.618912,8.676405,333.04788,334.02567,22.2265,963.3119,0.0,43.951992 +2023-09-06 22:00:00,6.530697,8.633077,334.61212,334.62228,21.926498,963.07135,0.0,42.411755 +2023-09-06 23:00:00,6.1846585,8.430896,337.1663,337.69376,21.276499,963.152,0.0,41.941902 +2023-09-07 00:00:00,4.876474,7.106335,344.53873,346.15927,18.426498,964.09015,0.0,53.01602 +2023-09-07 01:00:00,3.6055512,6.5802736,340.55988,343.2173,17.026499,963.9425,0.0,57.319466 +2023-09-07 02:00:00,3.0083218,6.140033,338.5522,343.92636,16.026499,964.33746,0.0,61.49678 +2023-09-07 03:00:00,2.9154758,6.2769423,329.03632,337.5205,15.1765,964.3776,0.0,64.93675 +2023-09-07 04:00:00,2.8017852,5.9506307,325.17545,335.15762,14.4265,964.4349,0.0,67.9217 +2023-09-07 05:00:00,2.7202942,5.8600345,323.97253,334.7469,13.7765,964.3195,0.0,71.08292 +2023-09-07 06:00:00,2.5806975,5.727128,324.46225,335.22488,13.1765,964.3075,0.0,74.16465 +2023-09-07 07:00:00,2.3086793,5.346027,342.34976,352.47626,12.5765,964.38965,0.0,77.39407 +2023-09-07 08:00:00,1.746425,4.0792155,346.75946,11.3098955,11.7265005,964.142,0.0,82.67784 +2023-09-07 09:00:00,1.9104973,3.6715121,6.0089183,29.357658,10.8265,964.16864,0.0,88.6484 +2023-09-07 10:00:00,2.0223749,3.51141,351.4693,19.983198,10.3765,964.1816,0.0,91.03726 +2023-09-07 11:00:00,1.6552945,3.4234486,334.98312,6.70975,10.1765,964.33484,0.0,91.64044 +2023-09-07 12:00:00,2.0396078,3.1241,11.3098955,39.805527,9.2265005,964.9188,0.0,94.74129 +2023-09-07 13:00:00,1.431782,2.842534,24.775122,50.710617,10.9765005,965.42786,0.0,89.86223 +2023-09-07 14:00:00,0.7615773,1.2041595,23.198618,41.63345,13.1765,966.2037,0.0,80.13242 +2023-09-07 15:00:00,1.2041595,1.4866068,41.63345,47.72637,15.0265,966.1534,0.0,72.28103 +2023-09-07 16:00:00,1.421267,1.7804494,39.289394,38.157276,16.4765,966.02856,0.0,64.56918 +2023-09-07 17:00:00,1.1313709,1.3453624,44.999897,48.01287,17.8265,965.7893,0.0,58.296757 +2023-09-07 18:00:00,1.0630146,1.3453624,41.185837,41.98713,19.0765,965.34064,0.0,54.268913 +2023-09-07 19:00:00,0.98488575,1.17047,66.037506,70.01681,20.276499,964.8814,0.0,48.38166 +2023-09-07 20:00:00,0.5830952,0.6708204,30.963696,26.564985,21.1265,964.64575,0.0,45.91429 +2023-09-07 21:00:00,0.82462114,1.0440307,345.9637,343.3007,21.6265,964.35046,0.0,43.196106 +2023-09-07 22:00:00,0.9433981,1.1661904,302.00534,300.96368,21.8765,964.01276,0.0,40.56814 +2023-09-07 23:00:00,0.92195445,1.0198039,347.4712,348.6901,21.4765,963.75543,0.0,40.179134 +2023-09-08 00:00:00,2.6172504,4.1303754,83.41815,83.047134,20.4765,963.5862,0.0,49.589207 +2023-09-08 01:00:00,3.0594118,5.869412,101.3099,103.799515,19.0765,963.7272,0.0,53.72512 +2023-09-08 02:00:00,2.9017239,5.60803,88.025116,93.06642,18.0765,964.59906,0.0,56.241543 +2023-09-08 03:00:00,4.0792155,6.432729,101.3099,101.65926,17.8765,965.03906,0.0,57.724525 +2023-09-08 04:00:00,4.2059484,6.536819,118.39293,119.30991,16.9765,965.26215,0.0,63.395332 +2023-09-08 05:00:00,3.1064448,4.920366,123.17853,127.568665,16.526499,965.18365,0.0,66.11021 +2023-09-08 06:00:00,2.657066,4.6957426,109.798965,116.56499,15.8765,965.0698,0.0,69.13717 +2023-09-08 07:00:00,2.4596748,5.1312766,116.56499,123.07069,14.5265,965.1164,0.0,74.89793 +2023-09-08 08:00:00,2.302173,5.140039,124.3804,127.09292,13.7765,965.1729,0.0,77.84066 +2023-09-08 09:00:00,2.4207437,5.315073,128.2902,131.18582,13.3265,965.37726,0.0,79.61858 +2023-09-08 10:00:00,2.6172504,5.59017,136.54811,137.17476,13.0265,965.8924,0.0,80.92107 +2023-09-08 11:00:00,2.6925824,5.8309517,148.67137,149.03632,12.7765,966.03705,0.0,82.254845 +2023-09-08 12:00:00,2.5079873,5.4781384,156.50142,158.58696,12.5765,966.3805,0.0,87.03905 +2023-09-08 13:00:00,3.1384711,5.597321,157.52052,161.24126,13.5765,967.1286,0.0,84.294174 +2023-09-08 14:00:00,2.751363,4.464303,160.90642,164.40714,15.926499,967.6398,0.0,75.13375 +2023-09-08 15:00:00,2.9410882,3.956008,162.18102,163.85559,18.4765,968.1794,0.0,65.652756 +2023-09-08 16:00:00,3.1780496,3.981206,167.27565,168.40785,20.7265,968.47046,0.0,58.421658 +2023-09-08 17:00:00,3.026549,3.8327534,172.40544,172.50424,22.4765,968.38696,0.0,53.535255 +2023-09-08 18:00:00,2.8071337,3.5128336,184.08554,184.899,23.8265,968.0431,0.0,49.990334 +2023-09-08 19:00:00,2.886174,3.613862,194.03627,194.4208,24.8265,967.6394,0.0,47.547028 +2023-09-08 20:00:00,3.4481878,4.3011627,196.85847,197.59251,25.6265,967.2015,0.0,45.18804 +2023-09-08 21:00:00,3.7696154,4.792703,201.80147,203.35558,26.0765,966.8951,0.0,43.85554 +2023-09-08 22:00:00,3.5846896,4.609772,202.98874,204.34108,26.276499,966.8332,0.0,43.340206 +2023-09-08 23:00:00,2.9681644,4.080441,212.61923,216.02747,25.9765,966.7839,0.0,44.550648 +2023-09-09 00:00:00,2.109502,4.652956,174.55975,188.65247,24.676498,966.4745,0.0,51.203316 +2023-09-09 01:00:00,3.1256998,6.428064,172.64772,185.35573,22.6265,966.41797,0.0,55.173058 +2023-09-09 02:00:00,3.7013512,7.35459,181.54813,191.76826,21.7265,966.5513,0.0,58.28141 +2023-09-09 03:00:00,3.748333,7.4999995,189.21095,196.26028,21.176498,966.7431,0.0,59.495506 +2023-09-09 04:00:00,3.3615472,7.4094534,202.751,201.37068,20.276499,966.96985,0.0,62.885387 +2023-09-09 05:00:00,2.8178005,5.700877,242.52565,248.38516,19.176498,967.35095,0.0,68.43469 +2023-09-09 06:00:00,1.7804494,3.2015622,218.15727,268.2101,18.276499,967.006,0.0,72.39541 +2023-09-09 07:00:00,1.6643317,3.1064448,237.26477,273.6913,17.526499,967.1606,0.0,75.89308 +2023-09-09 08:00:00,1.6552945,2.942788,244.98314,279.78235,16.926498,966.96106,0.0,77.55172 +2023-09-09 09:00:00,1.6401219,2.6076808,232.43134,265.60138,16.526499,966.98615,0.0,79.54614 +2023-09-09 10:00:00,1.6970563,2.624881,224.9999,252.25523,15.9765005,966.9847,0.0,83.46607 +2023-09-09 11:00:00,1.56205,2.4698179,219.80553,248.6293,15.7765,967.32886,0.0,85.09279 +2023-09-09 12:00:00,1.2206556,1.2806249,214.9921,308.65982,15.0265,967.57605,0.0,92.53862 +2023-09-09 13:00:00,2.624881,2.5,197.74477,196.26028,16.926498,968.28925,0.0,84.66565 +2023-09-09 14:00:00,2.3086793,4.3324356,197.6502,198.85326,19.5765,968.74835,0.0,73.57225 +2023-09-09 15:00:00,3.6400552,4.404543,322.81522,320.52756,21.6265,969.6679,0.0,65.89286 +2023-09-09 16:00:00,0.89442724,1.0816654,153.43501,146.3099,21.026499,968.71155,0.0,70.8184 +2023-09-09 17:00:00,1.7804494,1.9849433,321.8427,319.0857,22.8265,969.11053,0.0,65.305435 +2023-09-09 18:00:00,1.7029386,1.9798989,319.7637,315.0001,23.0765,969.24756,0.0,67.25643 +2023-09-09 19:00:00,1.8601075,2.408319,233.74606,228.36655,24.7265,968.5729,0.0,58.43658 +2023-09-09 20:00:00,3.4655447,4.2520585,313.83093,311.18582,24.3765,968.70465,0.5,58.91557 +2023-09-09 21:00:00,2.0808651,2.6400757,324.78232,322.69595,21.676498,968.15717,1.4,75.830215 +2023-09-09 22:00:00,2.7294688,3.4885528,331.55716,332.7005,22.4765,968.197,0.0,70.86296 +2023-09-09 23:00:00,3.622154,4.6270943,353.6599,353.79663,22.5765,968.0238,0.0,68.232544 +2023-09-10 00:00:00,3.905125,6.537584,2.93562,6.1465325,19.2265,969.06793,0.0,74.7079 +2023-09-10 01:00:00,2.9,5.9135437,360.0,3.8784592,18.0765,969.154,0.0,71.6532 +2023-09-10 02:00:00,2.570992,5.632051,346.50424,353.88458,17.276499,969.7738,0.0,72.45152 +2023-09-10 03:00:00,2.657066,5.885576,340.20102,350.21765,16.5765,970.0309,0.0,74.74879 +2023-09-10 04:00:00,2.1540658,5.3935146,338.19852,349.31512,15.8765,969.7178,0.0,79.454056 +2023-09-10 05:00:00,2.5806975,6.053924,324.46225,337.6713,15.5265,969.5612,0.0,83.96101 +2023-09-10 06:00:00,2.4698176,5.7939625,328.24057,338.74942,15.2265005,969.6979,0.0,87.57239 +2023-09-10 07:00:00,2.7784889,6.109828,329.74365,338.89508,14.7765,969.61804,0.0,91.03073 +2023-09-10 08:00:00,3.1953092,6.5115285,339.8636,349.3804,14.3765,969.5469,0.0,93.7164 +2023-09-10 09:00:00,2.828427,6.1,351.87,360.0,14.0765,969.4935,0.0,94.93303 +2023-09-10 10:00:00,2.4738634,5.5,345.9637,360.0,13.7765,969.7243,0.0,96.16935 +2023-09-10 11:00:00,3.0364454,6.0074954,342.75845,357.13766,13.5765,969.8783,0.0,97.427666 +2023-09-10 12:00:00,3.306055,6.2289643,356.53183,5.527458,13.8265,970.2073,0.0,99.030334 +2023-09-10 13:00:00,3.8,5.770615,360.0,8.97255,14.4765005,970.7975,0.0,96.18974 +2023-09-10 14:00:00,4.4384685,5.8240876,14.349371,15.945477,15.5765,971.0877,0.0,89.61932 +2023-09-10 15:00:00,3.710795,4.753946,14.036275,14.620926,16.676498,971.6611,0.0,81.40359 +2023-09-10 16:00:00,3.6878178,4.7296934,12.528798,13.448633,17.8765,971.77625,0.0,72.79754 +2023-09-10 17:00:00,4.368066,5.5362444,15.945477,16.798458,19.3765,971.75134,0.0,63.512302 +2023-09-10 18:00:00,4.472136,5.635601,26.564985,27.474344,20.3765,971.25867,0.0,57.19364 +2023-09-10 19:00:00,4.527693,5.7454333,30.529623,31.476793,21.176498,970.63586,0.0,52.325436 +2023-09-10 20:00:00,4.3266616,5.4644303,33.6901,34.56259,21.6265,970.04767,0.0,49.732533 +2023-09-10 21:00:00,3.9357338,4.9648767,27.216026,27.597204,21.7265,969.5898,0.0,47.49028 +2023-09-10 22:00:00,3.9560082,5.0695167,20.72564,22.01134,21.1265,969.39307,0.0,46.851257 +2023-09-10 23:00:00,3.7696154,4.846648,21.801476,21.801476,20.8765,969.44525,0.0,46.15559 +2023-09-11 00:00:00,3.130495,5.188449,26.564985,27.552727,18.7265,970.40533,0.0,54.727806 +2023-09-11 01:00:00,2.4698179,5.4120235,21.370695,27.511923,17.2265,970.1445,0.0,58.345802 +2023-09-11 02:00:00,1.9313208,5.0537114,21.25058,27.072004,16.026499,970.2187,0.0,62.12346 +2023-09-11 03:00:00,2.1213202,5.314132,8.130019,19.798973,14.9765005,970.12787,0.0,65.11284 +2023-09-11 04:00:00,2.7294688,6.519202,8.426887,20.65899,14.5265,969.85803,0.0,61.143356 +2023-09-11 05:00:00,2.2203605,5.9093146,7.7650824,23.962492,13.5265,969.5846,0.0,58.42967 +2023-09-11 06:00:00,2.0099752,5.500909,5.7105074,27.03079,12.6765,969.43207,0.0,59.655453 +2023-09-11 07:00:00,2.0099752,5.27731,5.7105074,27.050516,12.7765,969.35516,0.0,58.039818 +2023-09-11 08:00:00,1.9,4.7853947,360.0,26.029541,12.6265,969.42285,0.0,58.817627 +2023-09-11 09:00:00,1.746425,4.365776,346.75946,20.095322,12.3265,969.36896,0.0,61.04092 +2023-09-11 10:00:00,1.7888545,3.8639357,333.43503,10.437421,11.7765,969.4588,0.0,65.07559 +2023-09-11 11:00:00,2.1095023,4.101219,328.5705,358.60284,11.2765,969.6523,0.0,69.39168 +2023-09-11 12:00:00,2.0808651,4.060788,324.78232,350.07382,11.1265,969.90936,0.0,76.63978 +2023-09-11 13:00:00,3.0413814,4.7518415,332.5925,351.52893,11.7265005,970.1134,0.0,76.73652 +2023-09-11 14:00:00,2.84605,4.8373547,341.56494,352.87506,14.0765,970.72626,0.0,70.42332 +2023-09-11 15:00:00,2.9614186,3.8470767,348.31067,351.02744,16.2265,971.1075,0.0,62.801495 +2023-09-11 16:00:00,2.8017852,3.5128336,2.0453732,4.8990126,18.2265,971.078,0.0,55.902103 +2023-09-11 17:00:00,3.008322,3.8600519,15.42223,16.557161,19.676498,970.7589,0.0,46.135426 +2023-09-11 18:00:00,3.104835,3.8327537,14.931467,15.124064,20.5765,970.34375,0.0,43.78621 +2023-09-11 19:00:00,2.7658634,3.420526,12.528798,15.255177,21.3265,969.9967,0.0,41.247746 +2023-09-11 20:00:00,2.6925824,3.3615472,21.801476,22.751022,21.8265,969.51166,0.0,40.83079 +2023-09-11 21:00:00,2.9154758,3.5846896,30.963696,30.1413,21.526499,969.08124,0.0,39.783558 +2023-09-11 22:00:00,2.4698179,2.9732137,21.370695,19.653913,21.176498,968.73694,0.0,39.819927 +2023-09-11 23:00:00,4.3081317,5.700877,338.19852,338.38516,19.3765,969.0937,0.0,46.68437 +2023-09-12 00:00:00,2.570992,5.0,13.495748,16.26028,18.8265,968.99896,0.0,46.69106 +2023-09-12 01:00:00,2.302173,3.640055,2.4894993,20.924576,15.926499,968.7781,0.0,60.852005 +2023-09-12 02:00:00,1.6278821,2.0024984,317.4896,2.8623457,15.8765,969.24347,0.0,60.63423 +2023-09-12 03:00:00,1.4866068,2.0024984,317.72638,2.8623457,15.2765,969.0428,0.0,63.009617 +2023-09-12 04:00:00,2.1213202,2.9614186,315.0001,348.31067,13.4265,968.80835,0.0,70.296776 +2023-09-12 05:00:00,2.1400933,3.310589,307.40543,334.98312,12.6765,968.5789,0.0,74.58146 +2023-09-12 06:00:00,2.059126,3.448188,299.0545,330.4613,12.0265,968.272,0.0,76.52428 +2023-09-12 07:00:00,2.408319,5.8249464,311.63345,325.4914,12.4265,968.3443,0.0,72.53627 +2023-09-12 08:00:00,1.9,2.8844411,270.0,326.3099,11.6265,967.5362,0.0,78.83705 +2023-09-12 09:00:00,2.1023796,4.738143,295.34613,314.145,11.4765005,967.69855,0.0,80.164955 +2023-09-12 10:00:00,2.5238857,5.8051705,303.6901,317.7928,11.3765,968.249,0.0,84.327385 +2023-09-12 11:00:00,2.4758837,5.5569777,316.63654,329.74365,11.1265,968.4878,0.0,88.6737 +2023-09-12 12:00:00,2.408319,5.3851647,318.36655,328.67136,10.2265005,968.229,0.0,89.199524 +2023-09-12 13:00:00,3.2695565,5.869412,336.5713,346.2005,11.1265,968.8668,0.0,88.972336 +2023-09-12 14:00:00,3.0805843,4.785394,346.86597,349.15973,13.0765,969.4092,0.0,81.199165 +2023-09-12 15:00:00,3.324154,4.3289723,353.08887,353.36758,14.8765,969.4462,0.0,71.53118 +2023-09-12 16:00:00,3.1256998,3.9204593,352.6477,354.14407,16.0765,969.56323,0.0,66.01397 +2023-09-12 17:00:00,3.0364454,3.7643058,342.75845,343.0091,17.2265,969.5752,0.0,58.938717 +2023-09-12 18:00:00,2.84605,3.4785054,341.56494,341.56494,18.026499,969.0504,0.0,53.99721 +2023-09-12 19:00:00,2.8844411,3.6055512,326.3099,326.3099,18.8765,968.4381,0.0,51.19712 +2023-09-12 20:00:00,4.104875,5.186521,325.92276,326.0035,19.276499,967.7477,0.1,48.600677 +2023-09-12 21:00:00,3.9661064,5.0477715,326.3099,326.3099,19.6265,967.42804,0.0,46.59491 +2023-09-12 22:00:00,4.438468,5.7775426,337.4794,336.54095,19.526499,966.84143,0.0,43.939827 +2023-09-12 23:00:00,4.3965893,5.9481087,342.80136,343.39294,18.7265,966.79895,0.0,40.78787 +2023-09-13 00:00:00,2.4020824,4.8,357.6141,360.0,17.1265,966.9959,0.0,45.737667 +2023-09-13 01:00:00,2.2,5.333854,360.0,6.458727,14.6265,966.74634,0.0,51.644997 +2023-09-13 02:00:00,2.109502,5.531727,5.4402504,12.528798,13.3765,967.09283,0.0,54.271053 +2023-09-13 03:00:00,2.0124612,5.3,26.564985,31.890757,12.1765,967.25653,0.0,58.296112 +2023-09-13 04:00:00,3.2649655,7.1281133,49.969803,55.86401,11.8765,967.39185,0.0,55.420097 +2023-09-13 05:00:00,3.905125,7.8447433,76.67546,78.97659,11.4265,967.68933,0.0,66.82917 +2023-09-13 06:00:00,3.4058774,7.017834,86.63361,85.91447,10.6765,967.74255,0.0,77.094185 +2023-09-13 07:00:00,2.915476,6.3505907,95.906044,97.236824,9.9765005,967.7093,0.0,82.17681 +2023-09-13 08:00:00,2.6172504,5.9228373,96.581856,101.68935,9.3765,967.6938,0.0,85.84465 +2023-09-13 09:00:00,2.4515302,5.748913,101.768265,103.06932,9.0265,967.5348,0.0,87.89149 +2023-09-13 10:00:00,2.404163,5.502726,106.9276,109.09359,8.7265005,967.66876,0.0,89.996796 +2023-09-13 11:00:00,2.529822,5.6462374,108.43504,112.93214,8.6765,967.7543,0.0,90.92116 +2023-09-13 12:00:00,3.0083218,5.948109,111.44781,116.99576,8.5265,967.91583,0.0,94.39063 +2023-09-13 13:00:00,3.736308,7.038466,105.52418,112.55729,9.0765,968.1124,0.0,91.88255 +2023-09-13 14:00:00,3.7643058,5.7584724,106.99091,110.32322,10.9765005,968.65,0.0,83.429306 +2023-09-13 15:00:00,4.438468,5.9093146,112.52061,113.962494,13.2765,968.5917,0.0,72.20138 +2023-09-13 16:00:00,4.651881,6.0373836,115.46331,116.56499,15.3265,968.48254,0.0,62.17165 +2023-09-13 17:00:00,4.614109,5.8309517,119.89881,120.96369,16.9765,968.1084,0.0,55.3955 +2023-09-13 18:00:00,4.404543,5.60803,129.47243,129.93633,18.3765,967.7822,0.0,51.237053 +2023-09-13 19:00:00,4.313931,5.448853,134.0609,137.2312,19.5765,966.9449,0.0,49.01321 +2023-09-13 20:00:00,4.263801,5.420332,140.7106,142.49579,20.426498,966.33075,0.0,47.613415 +2023-09-13 21:00:00,3.9962482,5.147815,148.29861,150.9455,21.176498,965.88855,0.0,46.238586 +2023-09-13 22:00:00,3.9812057,5.1078367,154.72232,156.94867,21.426498,965.456,0.0,45.688892 +2023-09-13 23:00:00,3.6769552,4.997999,157.61983,160.11475,21.1265,965.1205,0.0,47.009045 +2023-09-14 00:00:00,2.236068,4.8826222,116.56499,124.992096,19.5765,964.4769,0.0,54.216087 +2023-09-14 01:00:00,3.420526,7.093659,105.25517,111.501495,17.7265,964.06415,0.0,57.88178 +2023-09-14 02:00:00,4.3081317,8.5,111.801476,115.05759,16.8265,964.3821,0.0,58.4448 +2023-09-14 03:00:00,4.632494,8.962701,122.660904,125.46345,15.9765005,964.4235,0.0,59.84078 +2023-09-14 04:00:00,4.5343137,8.982761,131.42357,133.64688,15.4265,964.5168,0.0,60.940212 +2023-09-14 05:00:00,4.6861496,9.220087,140.19447,143.37859,15.0765,964.4551,0.0,63.178066 +2023-09-14 06:00:00,4.7423625,9.247703,155.05612,158.42863,14.9765005,964.3425,0.0,66.672226 +2023-09-14 07:00:00,4.491102,8.782369,168.4399,172.14677,14.7765,964.3071,0.0,70.32211 +2023-09-14 08:00:00,4.304649,8.558621,182.66295,186.70975,14.3265,964.03784,0.0,73.12802 +2023-09-14 09:00:00,4.060788,8.286133,189.92618,197.56036,14.0265,963.79517,0.0,73.8149 +2023-09-14 10:00:00,4.368066,8.823832,195.94547,203.36913,13.9765005,964.07074,0.0,68.9887 +2023-09-14 11:00:00,4.6872168,9.3962755,191.07016,196.69933,14.1265,964.287,0.0,62.960705 +2023-09-14 12:00:00,4.7265205,9.472592,186.07236,190.95403,14.3265,964.6069,0.0,63.872604 +2023-09-14 13:00:00,5.0487623,9.264988,187.96953,193.73628,15.1765,964.9468,0.0,62.13682 +2023-09-14 14:00:00,5.135173,10.307764,186.70975,194.03627,17.776499,965.21136,0.0,57.506046 +2023-09-14 15:00:00,5.557877,8.237719,188.2758,190.49142,19.676498,965.4433,0.0,51.065624 +2023-09-14 16:00:00,6.016644,8.256513,195.42223,196.89873,21.7265,965.5067,0.0,47.80874 +2023-09-14 17:00:00,6.0926185,8.143709,203.19862,204.67685,23.676498,965.3586,0.0,47.70489 +2023-09-14 18:00:00,7.300685,9.780083,216.08516,217.10432,25.176498,965.13184,0.0,42.75238 +2023-09-14 19:00:00,7.881624,10.660676,215.70677,216.22504,25.676498,964.8343,0.0,37.94234 +2023-09-14 20:00:00,7.5166483,10.234256,213.05583,213.84537,26.0765,964.42444,0.0,34.419518 +2023-09-14 21:00:00,7.169379,9.775479,210.1413,210.76265,25.926498,964.01996,0.0,32.89955 +2023-09-14 22:00:00,6.9115844,9.604166,211.39021,211.37296,25.776499,963.33014,0.0,30.484352 +2023-09-14 23:00:00,5.491812,8.626702,213.11136,214.6112,24.926498,963.47546,0.0,33.178913 +2023-09-15 00:00:00,5.3160133,9.330059,196.38962,199.40607,23.526499,964.0038,0.0,34.992607 +2023-09-15 01:00:00,3.2449963,6.4884515,213.6901,204.5901,23.1265,964.22205,0.0,33.5837 +2023-09-15 02:00:00,1.5297059,3.8275318,258.6901,236.7251,21.4765,964.515,0.0,39.633507 +2023-09-15 03:00:00,1.431782,3.522783,294.77512,276.5197,20.026499,964.459,0.0,57.29654 +2023-09-15 04:00:00,1.5033296,3.6235344,183.814,207.97939,18.8265,963.96893,0.0,62.7647 +2023-09-15 05:00:00,4.701064,9.013878,218.08882,220.04967,19.176498,964.1239,0.0,52.855713 +2023-09-15 06:00:00,5.360038,9.577578,216.6562,220.34167,19.0765,964.0119,0.0,50.22112 +2023-09-15 07:00:00,6.3031735,10.748953,221.78442,224.24625,19.2265,964.03754,0.0,45.540592 +2023-09-15 08:00:00,6.466065,10.542295,230.64827,231.9343,18.8765,963.9774,0.0,47.186264 +2023-09-15 09:00:00,6.0207973,9.831073,221.63345,223.76367,16.776499,963.80426,0.2,69.54599 +2023-09-15 10:00:00,6.0,9.871676,216.86998,219.6569,15.8265,963.63837,0.5,77.38269 +2023-09-15 11:00:00,5.108816,8.860023,229.76372,233.25935,15.6265,963.79297,0.3,81.80152 +2023-09-15 12:00:00,3.1622777,5.6435804,251.56496,240.25522,16.3265,964.29504,0.0,91.42686 +2023-09-15 13:00:00,4.2520585,7.44043,228.81418,233.74606,16.426498,963.933,1.2,92.022964 +2023-09-15 14:00:00,3.9962482,6.963476,211.70139,215.05951,16.6265,963.8729,1.0,92.62703 +2023-09-15 15:00:00,1.6552945,2.4351592,244.98314,250.82089,17.3765,964.8574,0.3,89.46839 +2023-09-15 16:00:00,3.6,4.6010866,270.0,268.75467,19.2265,965.1765,0.0,80.95115 +2023-09-15 17:00:00,2.751363,3.4176016,289.0936,290.55612,21.0765,965.1119,0.0,71.511055 +2023-09-15 18:00:00,2.34094,2.8792362,289.9832,290.3232,22.176498,965.10767,0.0,66.64538 +2023-09-15 19:00:00,2.2847319,2.863564,293.1986,294.77512,23.426498,964.9369,0.0,57.565453 +2023-09-15 20:00:00,3.4409301,4.3011627,305.53775,305.53775,23.776499,964.5202,0.1,47.262608 +2023-09-15 21:00:00,3.5608988,4.560702,308.15726,307.87503,23.6265,964.30554,0.0,40.788437 +2023-09-15 22:00:00,4.022437,5.269725,304.8754,303.38855,23.6265,964.11554,0.0,39.43905 +2023-09-15 23:00:00,3.7802117,5.456189,322.52374,318.7154,22.526499,964.12195,0.1,44.929714 +2023-09-16 00:00:00,1.8027756,3.51141,273.17978,289.9832,20.5765,963.98303,0.0,57.431976 +2023-09-16 01:00:00,1.9849433,4.0816665,220.91429,239.03632,19.0765,964.2017,0.0,60.378506 +2023-09-16 02:00:00,3.2649658,5.448853,207.3498,227.23119,17.4765,964.30554,0.0,72.964676 +2023-09-16 03:00:00,3.130495,6.053098,243.43501,262.40546,17.026499,964.7015,0.0,74.579704 +2023-09-16 04:00:00,2.1213202,5.661272,315.0001,342.52515,16.426498,964.88165,0.0,63.27114 +2023-09-16 05:00:00,1.8601075,4.614109,306.25394,330.1012,14.6765,964.4791,0.0,65.48979 +2023-09-16 06:00:00,2.236068,5.3740115,296.56497,315.0001,13.9765005,964.35516,0.0,67.59867 +2023-09-16 07:00:00,2.2135942,5.1739736,288.43503,311.08167,13.4765005,964.0765,0.0,68.88772 +2023-09-16 08:00:00,2.0099752,4.560702,275.7105,307.87503,12.9765005,964.0822,0.0,70.44831 +2023-09-16 09:00:00,2.3345234,4.9406476,279.86575,305.9422,12.5765,963.91565,0.0,72.81129 +2023-09-16 10:00:00,2.505993,6.0108232,298.61035,315.67395,12.5765,964.2001,0.0,72.563866 +2023-09-16 11:00:00,2.5495098,6.1611686,311.82007,324.24603,12.4765005,964.4665,0.0,72.79303 +2023-09-16 12:00:00,3.0805843,6.8,324.24603,331.9276,11.8765,964.9274,0.0,78.60711 +2023-09-16 13:00:00,3.3015149,6.26099,324.86572,333.43503,12.3265,965.4824,0.0,78.408806 +2023-09-16 14:00:00,3.1064448,6.2169123,326.82147,334.25934,14.4265,966.14185,0.0,72.413315 +2023-09-16 15:00:00,3.7161808,4.976947,336.19403,337.5572,16.426498,966.68414,0.0,66.08886 +2023-09-16 16:00:00,4.2720017,5.536244,339.44388,339.92838,18.3265,966.9196,0.0,58.811005 +2023-09-16 17:00:00,5.1,6.618912,331.9276,333.04788,19.3765,966.91064,0.1,51.50367 +2023-09-16 18:00:00,4.830114,6.1717095,332.90454,333.01984,20.026499,966.73724,0.1,47.988026 +2023-09-16 19:00:00,4.609772,5.9093146,335.6589,336.0375,20.5765,966.16656,0.1,44.840347 +2023-09-16 20:00:00,4.7169905,6.109828,338.8752,338.89508,20.926498,965.94104,0.1,42.852917 +2023-09-16 21:00:00,5.1546097,6.6098413,341.91644,342.38733,20.6265,965.5105,0.1,44.09918 +2023-09-16 22:00:00,5.2886667,6.964194,344.6498,344.16754,19.9765,965.5895,0.0,47.81233 +2023-09-16 23:00:00,4.6572523,6.428841,345.06854,344.66666,19.5765,965.5211,0.0,48.84765 +2023-09-17 00:00:00,4.3104525,6.7186303,3.9908433,4.267821,18.2265,966.1434,0.0,53.50388 +2023-09-17 01:00:00,3.0,6.200806,360.0,0.9240338,16.526499,965.8477,0.0,59.770683 +2023-09-17 02:00:00,3.8639357,7.542546,349.5626,353.91156,15.7265005,966.2766,0.0,63.540024 +2023-09-17 03:00:00,3.324154,7.0114193,353.08887,356.72958,14.9765005,966.3342,0.0,65.99992 +2023-09-17 04:00:00,3.0066593,6.6068144,356.186,2.6025116,14.0265,966.1658,0.0,69.467575 +2023-09-17 05:00:00,2.7,6.315061,360.0,10.954029,13.2265005,966.3074,0.0,72.68298 +2023-09-17 06:00:00,2.4186773,5.59017,352.87506,10.304792,12.7765,966.3215,0.0,74.34633 +2023-09-17 07:00:00,2.280351,5.2153616,344.7448,4.398633,12.0765,966.48016,0.0,78.1061 +2023-09-17 08:00:00,2.0248456,4.9010205,339.77505,358.83087,11.1265,966.3079,0.0,83.16502 +2023-09-17 09:00:00,2.1954498,4.9365983,329.9315,353.01904,10.4265,966.1808,0.0,87.42303 +2023-09-17 10:00:00,2.607681,5.440588,327.52884,342.8972,10.0265,966.4867,0.0,90.39983 +2023-09-17 11:00:00,2.3600848,5.0289164,323.61554,342.64587,9.6265,966.69745,0.0,93.16973 +2023-09-17 12:00:00,2.3600848,5.0328918,323.61554,339.04413,9.2765,967.10693,0.0,96.3592 +2023-09-17 13:00:00,2.7658632,4.531004,319.39877,337.9637,9.8765,967.5014,0.0,95.0874 +2023-09-17 14:00:00,2.4207437,4.248529,321.70978,333.43503,12.1765,967.82526,0.0,86.132324 +2023-09-17 15:00:00,2.5079873,3.231099,336.5014,338.19852,14.3765,968.21924,0.0,76.644165 +2023-09-17 16:00:00,2.404163,2.9410882,343.0724,342.18103,16.2265,968.45135,0.0,67.61015 +2023-09-17 17:00:00,2.0024984,2.4020824,357.13766,357.6141,17.5765,968.4026,0.0,59.222305 +2023-09-17 18:00:00,1.118034,1.3892444,26.564985,30.256361,19.0765,967.9032,0.0,50.5622 +2023-09-17 19:00:00,0.31622776,0.36055514,18.435053,33.6901,20.3265,967.263,0.0,43.86513 +2023-09-17 20:00:00,0.36055514,0.36055514,236.3099,236.3099,20.5765,966.8311,0.0,42.17388 +2023-09-17 21:00:00,1.0,1.0630146,233.13002,228.81418,20.926498,965.94104,0.0,41.985737 +2023-09-17 22:00:00,1.3453624,1.56205,221.98714,219.80553,20.776499,965.5359,0.0,42.51969 +2023-09-17 23:00:00,1.6552945,1.9313208,205.01686,201.25058,20.3265,965.0795,0.0,44.01488 +2023-09-18 00:00:00,1.7029387,3.4132097,176.6336,174.95764,18.3765,964.7454,0.0,55.192642 +2023-09-18 01:00:00,2.2022717,3.8,177.39749,180.0,16.176498,964.3637,0.0,57.497093 +2023-09-18 02:00:00,2.0248456,4.031129,159.77505,172.87508,15.8265,964.20746,0.0,56.82424 +2023-09-18 03:00:00,3.0528674,6.2769423,148.39255,149.34941,15.2765,964.1108,0.0,60.49117 +2023-09-18 04:00:00,3.8600519,8.04301,143.42688,141.56267,14.8765,963.75586,0.0,60.395428 +2023-09-18 05:00:00,3.8275318,8.112336,146.7251,149.64197,14.5265,963.40936,0.0,61.77396 +2023-09-18 06:00:00,3.7696154,7.905694,158.19853,161.56496,13.9765005,963.2173,0.0,64.45098 +2023-09-18 07:00:00,3.736308,7.9429216,164.47583,169.11452,13.4265,963.0247,0.0,66.79624 +2023-09-18 08:00:00,3.736308,7.962412,164.47583,168.40785,13.0265,962.669,0.0,69.74165 +2023-09-18 09:00:00,3.7854989,7.9075913,167.79955,170.53775,12.6265,962.21814,0.0,71.34738 +2023-09-18 10:00:00,4.031129,8.338465,172.87508,174.49461,12.3265,961.88025,0.0,72.76562 +2023-09-18 11:00:00,4.440721,8.927485,172.23492,175.50293,12.2765,961.7763,0.0,73.25437 +2023-09-18 12:00:00,4.86621,9.625487,170.53775,175.82965,12.9765005,961.3328,0.0,72.63725 +2023-09-18 13:00:00,5.3600373,9.7252245,171.41646,175.87248,14.0265,961.3297,0.0,69.939186 +2023-09-18 14:00:00,5.261178,10.907336,171.25392,177.89839,16.426498,961.4665,0.0,64.992294 +2023-09-18 15:00:00,5.869412,8.570297,166.20049,168.55899,18.926498,961.2336,0.0,58.565327 +2023-09-18 16:00:00,6.5734315,8.982204,166.80939,168.4399,21.1265,961.3227,0.0,53.186947 +2023-09-18 17:00:00,7.2532754,9.871676,164.81412,166.52682,22.8765,960.95135,0.0,47.017426 +2023-09-18 18:00:00,8.065358,10.815729,160.44165,162.23506,24.176498,960.12195,0.0,41.494076 +2023-09-18 19:00:00,8.1154175,11.049435,157.54301,158.77628,24.7265,959.1674,0.0,41.372227 +2023-09-18 20:00:00,7.7491937,10.530432,160.39583,161.73701,25.2265,958.48926,0.0,40.156868 +2023-09-18 21:00:00,7.0342026,9.483143,165.17348,165.96373,25.176498,958.196,0.0,40.81556 +2023-09-18 22:00:00,5.9774575,8.393451,162.47435,164.8047,24.9765,957.8783,0.0,41.304886 +2023-09-18 23:00:00,5.021952,7.803204,144.7275,149.16223,24.426498,957.6929,0.0,43.68737 +2023-09-19 00:00:00,4.7201695,8.363014,126.384445,131.12138,23.676498,957.18964,0.0,45.097973 +2023-09-19 01:00:00,5.140039,9.128527,127.09292,132.78032,22.3265,957.061,0.0,47.33778 +2023-09-19 02:00:00,5.448853,9.682975,137.2312,141.7098,21.3265,956.8938,0.0,49.32178 +2023-09-19 03:00:00,4.90408,9.013878,140.79282,146.3099,20.4765,956.65594,0.0,52.14185 +2023-09-19 04:00:00,4.6872168,8.900562,146.3099,152.57135,19.6265,956.1325,0.0,55.510635 +2023-09-19 05:00:00,4.924429,9.360556,156.0375,161.95209,18.8265,955.6171,0.0,59.128613 +2023-09-19 06:00:00,4.0718546,8.324061,155.32315,163.95999,18.3265,955.4369,0.0,62.236855 +2023-09-19 07:00:00,2.9832866,6.4884515,140.44037,155.4099,17.426498,955.2828,0.0,66.521805 +2023-09-19 08:00:00,3.3241541,6.741661,133.7812,147.72438,16.5765,955.13654,0.0,69.96941 +2023-09-19 09:00:00,3.9623227,7.6550636,137.04541,146.7251,15.926499,954.7392,0.0,72.68642 +2023-09-19 10:00:00,4.4654226,8.411897,145.95403,151.60707,15.926499,954.7392,0.0,72.92795 +2023-09-19 11:00:00,4.802083,8.944272,148.62704,153.43501,15.8265,954.7219,0.0,73.39543 +2023-09-19 12:00:00,4.5188494,9.300537,155.13632,163.12366,15.6765,954.88544,0.0,78.38654 +2023-09-19 13:00:00,3.5014284,7.368175,178.36346,187.8001,17.026499,955.97284,0.0,73.84891 +2023-09-19 14:00:00,3.613862,7.209022,194.4208,203.7204,19.8265,956.5462,0.0,68.56448 +2023-09-19 15:00:00,3.9217343,5.314132,199.35909,199.79897,22.2265,956.6644,0.0,61.70815 +2023-09-19 16:00:00,3.5014284,4.604346,181.63654,182.4895,24.4765,956.56146,0.0,56.90038 +2023-09-19 17:00:00,4.20119,5.5,178.63611,180.0,26.3765,956.58594,0.0,51.6453 +2023-09-19 18:00:00,4.609772,6.0074954,176.26868,177.13765,27.3765,956.4624,0.0,49.957474 +2023-09-19 19:00:00,4.669047,5.9841456,170.13426,170.38034,27.8765,956.54254,0.0,50.088295 +2023-09-19 20:00:00,4.1231055,5.2924476,157.1663,157.79648,28.4765,956.4483,0.0,47.30255 +2023-09-19 21:00:00,4.652956,6.0827627,151.78275,152.59251,28.526499,956.2665,0.0,44.099564 +2023-09-19 22:00:00,4.204759,5.5036354,154.65387,155.29759,27.9765,956.3684,0.0,43.807663 +2023-09-19 23:00:00,3.5341196,5.0159745,154.8852,156.50142,27.176498,956.6201,0.0,45.463593 +2023-09-20 00:00:00,4.4271884,7.692204,161.56496,164.15686,23.8765,957.1277,0.0,57.67449 +2023-09-20 01:00:00,3.7643058,7.300685,163.0091,166.53477,21.9765,957.3823,0.0,63.061077 +2023-09-20 02:00:00,3.9824615,7.615773,151.50446,156.80139,20.6265,958.0105,0.0,68.06125 +2023-09-20 03:00:00,4.159327,7.970571,152.81897,156.32945,19.7265,958.1429,0.0,70.573814 +2023-09-20 04:00:00,4.365776,8.415462,159.90468,159.8423,18.926498,958.29144,0.0,72.27758 +2023-09-20 05:00:00,3.9560082,8.032434,159.27437,161.11382,18.3765,958.2923,0.0,72.17781 +2023-09-20 06:00:00,4.535416,8.729835,165.96373,170.10614,18.026499,957.853,0.0,72.11409 +2023-09-20 07:00:00,5.2038445,9.908077,177.79745,182.31367,18.2265,957.8874,0.0,71.44709 +2023-09-20 08:00:00,5.234501,9.884331,186.58185,191.08253,18.3765,958.0076,0.0,72.64978 +2023-09-20 09:00:00,5.001,9.4371605,191.53459,195.36168,18.1265,958.0598,0.0,75.25317 +2023-09-20 10:00:00,4.535416,8.956004,194.03627,196.20909,17.7265,958.276,0.0,77.92611 +2023-09-20 11:00:00,4.1231055,8.324061,194.03627,196.04001,17.3265,958.6813,0.0,80.69933 +2023-09-20 12:00:00,3.1016126,6.8183575,178.15244,184.20528,16.276499,959.543,0.0,88.80799 +2023-09-20 13:00:00,2.9120438,5.622277,164.05453,174.89792,16.7265,960.38,0.0,85.74657 +2023-09-20 14:00:00,2.6925821,5.234501,164.93146,173.41815,18.8765,961.2251,0.0,76.11041 +2023-09-20 15:00:00,3.4234486,4.6173587,173.29025,175.03035,21.0765,961.6939,0.0,67.49653 +2023-09-20 16:00:00,4.104875,5.3037724,177.20735,177.83897,22.9765,962.2024,0.0,61.878628 +2023-09-20 17:00:00,3.733631,4.738143,172.30405,172.72508,24.8765,962.2322,0.0,56.997894 +2023-09-20 18:00:00,4.1,5.217279,167.31963,167.82855,26.526499,961.93207,0.0,51.354496 +2023-09-20 19:00:00,4.7759814,6.1351447,160.42679,160.9743,27.526499,961.8091,0.0,46.00109 +2023-09-20 20:00:00,5.571355,7.151223,158.96242,159.53764,27.8265,961.5726,0.0,45.639973 +2023-09-20 21:00:00,5.59017,7.4686007,153.43501,153.77809,26.8265,961.5059,0.0,44.061848 +2023-09-20 22:00:00,5.141984,6.865857,166.50426,167.38068,26.026499,961.6608,0.0,45.002968 +2023-09-20 23:00:00,5.0328918,7.02282,159.04414,160.0168,25.4765,961.9508,0.0,48.503876 +2023-09-21 00:00:00,3.352611,6.8007355,162.64589,162.89719,25.026499,961.9718,0.0,45.32018 +2023-09-21 01:00:00,4.3324356,8.316851,161.14674,161.7828,23.176498,962.52094,0.0,49.65387 +2023-09-21 02:00:00,5.6302757,9.90202,160.27763,159.91794,22.276499,963.2251,0.0,55.992466 +2023-09-21 03:00:00,4.9819674,9.108238,169.59235,171.15826,21.1265,963.6963,0.0,61.857716 +2023-09-21 04:00:00,5.135173,9.4429865,173.29025,174.53099,20.4765,963.871,0.0,62.11372 +2023-09-21 05:00:00,5.5326304,10.049875,173.77426,174.2895,20.176498,963.8201,0.0,62.65762 +2023-09-21 06:00:00,5.714018,10.11237,175.9859,177.16595,19.9765,964.2605,0.0,61.796505 +2023-09-21 07:00:00,4.8,8.905054,180.0,181.93054,19.3265,964.9089,0.0,62.259644 +2023-09-21 08:00:00,4.9010205,9.013878,181.16911,183.17976,18.7265,964.9957,0.0,62.74204 +2023-09-21 09:00:00,4.6270943,8.70919,173.79665,177.36761,18.1265,965.4617,0.0,65.14571 +2023-09-21 10:00:00,4.6389656,8.736704,172.56868,174.74629,17.526499,965.7373,0.0,67.8772 +2023-09-21 11:00:00,4.3737855,8.386298,169.46088,171.77336,16.776499,966.2709,0.0,71.884766 +2023-09-21 12:00:00,4.2201896,8.158431,166.29301,168.69011,16.426498,966.39954,0.0,87.39714 +2023-09-21 13:00:00,4.215448,7.558439,157.69374,162.28412,16.926498,967.5303,0.0,84.392265 +2023-09-21 14:00:00,4.3416586,7.864477,165.32356,168.26146,18.676498,968.4987,0.0,75.832855 +2023-09-21 15:00:00,4.6872168,6.4132676,168.92984,169.21574,20.8765,968.78076,0.0,64.678535 +2023-09-21 16:00:00,4.570558,6.1,169.91946,169.61119,22.5765,968.8786,0.0,55.160465 +2023-09-21 17:00:00,5.2325897,6.931811,153.9247,153.43501,24.426498,968.80786,0.0,45.60417 +2023-09-21 18:00:00,5.60803,7.392564,158.00882,156.90315,25.3765,968.7754,0.0,41.968422 +2023-09-21 19:00:00,5.905929,7.782673,151.69934,152.44728,26.276499,968.1636,0.0,37.858852 +2023-09-21 20:00:00,5.8309517,7.666159,149.03632,149.42085,26.776499,967.58,0.0,36.273285 +2023-09-21 21:00:00,5.660389,7.4094534,147.99466,148.24057,26.7265,966.90656,0.0,35.898453 +2023-09-21 22:00:00,5.249762,7.029225,139.63554,140.19447,26.276499,966.453,0.0,36.863663 +2023-09-21 23:00:00,5.249762,7.50733,130.36446,131.76021,25.526499,966.51984,0.0,38.15407 +2023-09-22 00:00:00,3.8078866,6.931811,113.198616,116.56499,23.176498,966.2251,0.0,44.06942 +2023-09-22 01:00:00,2.6400757,6.360031,127.30403,126.68982,21.1265,966.3548,0.0,50.09746 +2023-09-22 02:00:00,3.828838,8.072175,130.76352,131.98714,20.9765,967.0889,0.0,50.561123 +2023-09-22 03:00:00,3.6878178,7.81025,130.60121,129.80553,20.6265,966.9346,0.0,52.530067 +2023-09-22 04:00:00,4.313931,8.273452,134.0609,134.51036,19.8765,966.80646,0.0,55.20532 +2023-09-22 05:00:00,3.1622777,6.8949256,161.56496,160.51378,18.526499,967.144,0.0,60.248425 +2023-09-22 06:00:00,3.5805027,7.4431176,144.09018,149.30035,17.676498,966.71216,0.0,64.617676 +2023-09-22 07:00:00,3.7802117,7.7336926,127.47626,130.27979,17.176498,966.1509,0.0,70.08585 +2023-09-22 08:00:00,3.4655447,7.1421285,133.83095,135.5672,16.5765,966.0464,0.0,76.48823 +2023-09-22 09:00:00,2.8999999,6.3780875,136.39711,138.81418,15.8765,965.8287,0.0,82.91094 +2023-09-22 10:00:00,2.6172504,5.869412,133.45189,135.6902,15.1765,965.8003,0.0,87.854095 +2023-09-22 11:00:00,2.7802877,5.9464273,127.694305,132.27362,14.6765,966.47064,0.0,90.72765 +2023-09-22 12:00:00,3.001666,6.3134775,119.98155,119.4071,14.5765,965.97876,0.0,92.51348 +2023-09-22 13:00:00,3.956008,5.9615436,106.14441,112.69383,15.5265,965.862,0.0,91.37594 +2023-09-22 14:00:00,4.701064,6.2241464,113.838745,113.682106,16.776499,965.98627,0.0,87.147415 +2023-09-22 15:00:00,5.0695167,6.7230945,112.01134,112.751015,17.276499,965.50415,0.0,86.91383 +2023-09-22 16:00:00,4.88467,6.407808,112.89059,112.963806,19.4765,965.3142,0.1,72.84605 +2023-09-22 17:00:00,5.1,6.71193,118.072395,118.47411,19.8265,965.2792,0.1,70.36479 +2023-09-22 18:00:00,5.481788,7.262231,128.33337,128.2902,20.8265,965.0698,0.1,65.72399 +2023-09-22 19:00:00,5.60803,7.3756356,129.93633,130.60121,21.8765,964.29767,0.0,60.245567 +2023-09-22 20:00:00,5.020956,6.7178864,134.19316,134.39699,21.776499,963.901,0.0,61.605408 +2023-09-22 21:00:00,4.4204073,5.7801385,127.64769,127.26648,22.176498,963.3034,0.1,61.696777 +2023-09-22 22:00:00,4.701064,6.621933,128.08882,128.25447,20.6265,962.6624,0.5,72.11906 +2023-09-22 23:00:00,3.6055512,5.5470715,123.6901,123.976585,19.7265,962.5093,0.4,79.7364 +2023-09-23 00:00:00,3.544009,5.4708314,106.38962,108.10386,19.3265,963.1055,0.8,75.20778 +2023-09-23 01:00:00,2.8231187,5.5542774,112.93214,113.33407,18.2265,963.1067,0.0,81.60317 +2023-09-23 02:00:00,3.443835,6.0827627,115.820946,117.40749,18.276499,963.30493,0.0,83.19711 +2023-09-23 03:00:00,3.0805843,5.360038,125.753975,126.656204,18.1265,963.279,0.0,86.71598 +2023-09-23 04:00:00,2.9832866,5.5865912,129.55963,134.27486,17.3765,962.67505,0.0,93.557816 +2023-09-23 05:00:00,2.1260293,4.8548946,138.81418,147.61934,16.5765,962.25165,0.0,97.486046 +2023-09-23 06:00:00,2.1931713,4.8259716,136.8476,145.9806,16.0765,961.8796,0.0,98.73114 +2023-09-23 07:00:00,2.1023796,4.846648,154.65387,158.19853,16.026499,961.58655,0.0,98.73066 +2023-09-23 08:00:00,2.5238857,5.283938,146.3099,150.5242,16.026499,961.302,0.0,99.04665 +2023-09-23 09:00:00,2.5495098,4.9406476,138.17992,144.0578,16.7265,961.2339,0.0,99.05175 +2023-09-23 10:00:00,2.5238857,4.976947,146.3099,157.5572,16.9765,961.37225,0.1,99.05357 +2023-09-23 11:00:00,3.9115217,5.707013,184.39862,191.113,17.0765,961.1999,0.2,94.744194 +2023-09-23 12:00:00,3.1953092,5.4589376,110.13639,118.442825,16.176498,960.0949,0.0,97.79052 +2023-09-23 13:00:00,3.4409301,5.72014,125.537766,126.46933,16.5765,960.16455,0.0,97.486046 +2023-09-23 14:00:00,4.356604,6.1587334,148.13406,147.60017,17.526499,960.70844,0.0,94.161766 +2023-09-23 15:00:00,4.167733,6.2177167,149.74365,152.19864,17.526499,961.18286,3.4,92.97154 +2023-09-23 16:00:00,3.8948684,5.0990195,138.12222,138.17992,18.2265,960.16486,0.0,88.40072 +2023-09-23 17:00:00,5.1971145,6.860029,120.01828,120.67721,19.526499,958.9632,0.1,82.29035 +2023-09-23 18:00:00,6.742403,9.044335,125.340195,125.095894,22.0765,958.1587,0.0,72.37923 +2023-09-23 19:00:00,6.6400304,9.402128,127.042564,128.08882,22.1265,956.74274,0.1,71.9306 +2023-09-23 20:00:00,9.060353,12.560254,142.62411,142.76509,23.676498,955.5749,0.5,66.530815 +2023-09-23 21:00:00,7.8714676,11.810588,152.78398,154.95383,19.3765,954.7614,3.4,86.01318 +2023-09-23 22:00:00,8.008121,12.252755,164.05453,164.3757,19.776499,953.595,8.1,91.35461 +2023-09-23 23:00:00,6.9115844,11.0367565,183.31772,184.67734,19.8765,953.517,2.8,89.09614 +2023-09-24 00:00:00,3.0066593,5.4332314,183.814,186.3401,17.926498,955.74817,0.3,93.5841 +2023-09-24 01:00:00,3.1827662,5.5317264,133.72705,139.39879,18.1265,955.97217,0.5,94.1878 +2023-09-24 02:00:00,3.6055512,6.441273,146.3099,152.24155,18.2265,955.60986,0.1,93.59835 +2023-09-24 03:00:00,4.1,7.256721,192.68037,191.9293,17.676498,955.23083,0.0,95.06873 +2023-09-24 04:00:00,4.7801676,7.7620873,217.34943,218.19873,17.0765,954.938,0.0,96.2642 +2023-09-24 05:00:00,3.940812,7.083784,215.70677,221.56627,16.3265,954.52405,0.0,95.3233 +2023-09-24 06:00:00,3.4885528,6.6610813,207.29948,215.83774,15.7265005,954.5147,0.0,96.225815 +2023-09-24 07:00:00,4.031129,7.1610055,226.00499,234.09018,15.4265,955.22156,0.0,96.21721 +2023-09-24 08:00:00,3.8013155,7.083784,243.43501,251.0534,14.7765,955.86664,0.0,94.65241 +2023-09-24 09:00:00,3.757659,7.088018,244.7989,253.61038,14.0265,956.1144,0.0,94.31369 +2023-09-24 10:00:00,3.3286633,6.539113,237.26477,246.57129,13.4765005,956.11206,0.0,94.90988 +2023-09-24 11:00:00,2.8844411,5.727128,236.3099,245.22488,13.0765,956.2309,0.0,96.14876 +2023-09-24 12:00:00,2.842534,6.1294374,230.71062,241.76265,12.6765,956.634,0.0,94.87877 +2023-09-24 13:00:00,2.6172504,5.333854,223.45189,239.589,13.0765,957.2738,0.0,93.039795 +2023-09-24 14:00:00,1.9646883,3.0805843,194.7436,215.75398,14.3765,958.0724,0.0,89.527275 +2023-09-24 15:00:00,2.828427,3.5693135,188.13002,191.30989,15.8265,958.4213,0.0,83.72145 +2023-09-24 16:00:00,3.275668,4.1231055,192.33908,194.03627,17.3265,958.6813,0.0,75.61319 +2023-09-24 17:00:00,4.204759,5.59017,205.34613,206.56499,17.3265,958.871,0.0,72.22293 +2023-09-24 18:00:00,4.8010416,6.300793,215.6765,215.9606,18.526499,959.07733,0.0,66.75261 +2023-09-24 19:00:00,5.360038,7.060453,216.6562,217.51918,19.8265,958.91925,0.2,59.368797 +2023-09-24 20:00:00,5.8051705,7.864477,227.79277,228.60857,20.5765,958.76154,0.3,56.120308 +2023-09-24 21:00:00,5.7688823,7.793587,236.3099,236.51381,21.7265,958.85986,0.1,50.76067 +2023-09-24 22:00:00,4.167733,5.905929,239.74365,241.69934,19.3765,959.2224,1.0,67.14834 +2023-09-24 23:00:00,4.20119,6.351378,231.76613,236.5601,17.776499,959.7078,0.3,82.07339 +2023-09-25 00:00:00,1.8384775,2.4698176,224.9999,238.24055,17.776499,960.2771,0.0,73.73755 +2023-09-25 01:00:00,1.5297059,3.3615475,191.30989,210.37904,16.926498,960.3198,0.0,74.07454 +2023-09-25 02:00:00,2.7802877,6.0827627,217.6943,223.66785,16.426498,960.6127,0.0,77.9849 +2023-09-25 03:00:00,3.4,6.574192,241.92761,243.82477,16.676498,961.03564,0.0,80.6121 +2023-09-25 04:00:00,3.4885528,6.332456,242.7005,248.70258,16.426498,961.08704,0.0,86.552956 +2023-09-25 05:00:00,3.6674242,7.116881,244.1337,250.29193,15.1265,961.0493,0.0,93.44857 +2023-09-25 06:00:00,3.352611,6.8447056,252.64589,258.1976,14.7265005,961.07385,0.0,94.34369 +2023-09-25 07:00:00,2.9410882,6.1983867,252.18102,259.7779,14.3765,961.5811,0.0,94.94455 +2023-09-25 08:00:00,2.7892652,6.0299253,255.4655,264.2895,14.0765,961.5282,0.0,95.242966 +2023-09-25 09:00:00,3.0413814,6.3,260.53775,270.0,13.9765005,961.6053,0.0,95.23936 +2023-09-25 10:00:00,2.630589,5.5326304,261.2539,276.22574,13.7765,961.7594,0.0,95.85603 +2023-09-25 11:00:00,2.9,5.824946,270.0,281.88864,14.0765,962.38165,0.0,95.242966 +2023-09-25 12:00:00,2.624881,4.750789,310.36444,310.73203,15.4265,963.1889,0.0,97.463905 +2023-09-25 13:00:00,3.6878178,5.728001,310.60123,314.29276,15.4765005,963.57684,0.1,96.21863 +2023-09-25 14:00:00,4.1012197,5.5865912,315.0001,315.72513,16.176498,964.07916,0.0,90.24574 +2023-09-25 15:00:00,4.140048,5.420332,307.14676,307.5042,17.176498,964.44305,0.0,82.264145 +2023-09-25 16:00:00,4.318565,5.5973206,312.18436,311.37842,18.5765,964.96985,0.0,71.97943 +2023-09-25 17:00:00,4.4553337,5.5865912,314.0907,314.27487,19.7265,965.16705,0.0,62.96777 +2023-09-25 18:00:00,4.1773195,5.240229,312.08908,311.90585,20.7265,964.95776,0.0,57.848297 +2023-09-25 19:00:00,5.0249376,6.519202,328.84076,327.52884,21.176498,964.8442,0.0,53.023987 +2023-09-25 20:00:00,4.9648767,6.400781,332.4028,331.03244,21.0765,964.827,0.0,53.883015 +2023-09-25 21:00:00,4.924429,6.3631754,330.8325,329.80847,21.2265,964.75775,0.0,51.992332 +2023-09-25 22:00:00,5.3712196,7.206941,331.0491,330.9455,20.676498,964.75934,0.1,52.893963 +2023-09-25 23:00:00,5.0990195,7.3348484,334.44006,334.1337,20.1265,965.0456,0.0,53.637974 +2023-09-26 00:00:00,3.0016663,6.0033326,1.9091109,1.9091109,18.276499,965.67737,0.0,58.211784 +2023-09-26 01:00:00,3.231099,6.6098413,338.19852,342.38733,16.926498,965.63275,0.0,64.66826 +2023-09-26 02:00:00,3.3120992,6.762396,331.11353,336.46762,15.926499,965.9324,0.0,71.72735 +2023-09-26 03:00:00,3.3600597,6.946222,323.47104,329.74365,15.2765,965.9129,0.0,77.297485 +2023-09-26 04:00:00,2.7856774,6.113101,338.9624,344.82703,14.4765005,965.961,0.0,82.19561 +2023-09-26 05:00:00,2.1633308,4.8703184,326.3099,340.8209,13.5265,965.792,0.0,87.70684 +2023-09-26 06:00:00,2.5,4.743417,306.86996,325.30478,12.9765005,965.69385,0.0,90.90975 +2023-09-26 07:00:00,2.6870058,5.5217752,315.0001,324.58286,12.7265005,965.9335,0.0,93.02138 +2023-09-26 08:00:00,2.7658632,5.714018,319.39877,327.1443,13.0765,965.9961,0.0,93.34664 +2023-09-26 09:00:00,3.0232434,5.0249376,325.78424,328.84076,14.2265005,966.2012,0.1,90.40013 +2023-09-26 10:00:00,3.736308,5.531727,344.47583,347.4712,14.5765,966.26337,0.2,92.81528 +2023-09-26 11:00:00,3.471311,4.9648767,348.3664,350.72748,14.6765,966.56555,0.0,94.03564 +2023-09-26 12:00:00,3.748333,6.551336,9.210952,12.339083,14.6265,967.2205,0.1,97.44834 +2023-09-26 13:00:00,3.275668,5.0447993,12.339083,13.760814,14.7265005,967.52277,0.1,97.13562 +2023-09-26 14:00:00,3.443835,4.5617976,25.820946,26.003298,15.4765005,967.9399,0.1,91.96651 +2023-09-26 15:00:00,3.2015622,4.060788,38.65983,37.99879,16.4765,968.11566,0.1,83.7963 +2023-09-26 16:00:00,3.2015622,4.0459857,38.65983,39.98684,17.926498,968.17896,0.1,75.46527 +2023-09-26 17:00:00,3.535534,4.384062,44.999897,44.999897,19.276499,968.1273,0.1,66.69042 +2023-09-26 18:00:00,4.1012197,5.1623635,44.999897,45.78474,20.276499,967.9192,0.1,59.868736 +2023-09-26 19:00:00,5.021952,6.521503,54.727493,54.36011,19.3265,967.85126,0.3,66.4832 +2023-09-26 20:00:00,4.118252,5.4589376,60.94549,61.55718,19.8265,967.5573,0.2,67.24098 +2023-09-26 21:00:00,4.909175,6.351378,56.63362,56.560116,20.7265,967.0463,0.0,60.765484 +2023-09-26 22:00:00,5.2801514,6.9999995,52.695976,53.13002,19.8765,966.80646,0.0,64.461205 +2023-09-26 23:00:00,4.7201695,6.6030297,53.61555,54.865723,19.0765,966.9541,0.0,68.862526 +2023-09-27 00:00:00,4.1231055,6.6400304,50.906155,52.95745,17.526499,967.54016,0.0,73.69403 +2023-09-27 01:00:00,3.3600597,6.105735,53.471054,58.392544,16.5765,967.6592,0.0,78.26322 +2023-09-27 02:00:00,3.4409301,6.191123,54.46224,58.877598,15.8765,967.7258,0.0,83.18225 +2023-09-27 03:00:00,3.8948684,5.8600345,60.802605,64.74687,16.026499,967.8472,0.0,84.84287 +2023-09-27 04:00:00,3.3120992,5.239275,61.113514,66.37061,15.7265005,967.6994,0.1,88.18856 +2023-09-27 05:00:00,3.7696154,5.4083266,68.19853,70.559875,15.6765,967.5957,0.0,90.796 +2023-09-27 06:00:00,3.49285,5.3488317,66.37061,69.19314,15.6765,967.5957,0.0,91.09034 +2023-09-27 07:00:00,3.0528674,4.565085,58.392544,61.189304,15.6265,967.3974,0.0,90.79259 +2023-09-27 08:00:00,2.9068882,4.3462625,63.435013,66.97448,15.5765,967.1988,0.0,90.78919 +2023-09-27 09:00:00,2.996665,4.531004,64.2901,67.963715,15.4765005,966.8017,0.0,90.78238 +2023-09-27 10:00:00,3.0413814,4.792703,62.59251,66.64442,15.3265,966.7753,0.0,91.06723 +2023-09-27 11:00:00,3.0675724,4.588028,70.974304,73.53991,15.2265005,966.7576,0.0,91.35674 +2023-09-27 12:00:00,2.6832817,4.964876,63.435013,71.20003,15.0765,967.2055,0.0,93.14369 +2023-09-27 13:00:00,2.996665,4.1629314,64.2901,65.897766,15.6765,967.50085,0.0,89.04739 +2023-09-27 14:00:00,3.3241541,4.317406,74.2913,76.60749,16.426498,967.6328,0.0,81.63685 +2023-09-27 15:00:00,3.8470767,4.9648767,81.02746,80.72748,17.5765,967.64355,0.1,74.91706 +2023-09-27 16:00:00,4.219004,5.5145264,84.55976,85.84044,18.1265,967.6442,0.1,72.84222 +2023-09-27 17:00:00,3.8013155,4.8010416,91.50741,91.19346,19.2265,967.3595,0.1,67.117355 +2023-09-27 18:00:00,3.613862,4.6572523,104.420815,104.93147,20.176498,966.85785,0.0,61.640045 +2023-09-27 19:00:00,4.14367,5.2201533,109.74693,110.17074,21.5765,966.24097,0.0,54.368427 +2023-09-27 20:00:00,3.5341196,4.5188494,115.11481,114.86367,21.426498,965.74084,0.0,54.689465 +2023-09-27 21:00:00,3.2802439,4.2201896,127.568665,126.32692,21.4765,965.1797,0.0,55.79255 +2023-09-27 22:00:00,2.7018511,3.405877,141.009,139.76372,21.2265,965.1375,0.0,57.214718 +2023-09-27 23:00:00,2.5495098,3.4655447,138.17992,136.16905,21.026499,965.1986,0.0,57.542393 +2023-09-28 00:00:00,2.385372,3.1064448,123.02387,123.17853,17.8765,964.7544,0.0,70.68332 +2023-09-28 01:00:00,2.2135942,5.3160133,108.43504,106.38962,17.026499,964.7015,0.0,69.59507 +2023-09-28 02:00:00,3.49285,7.531268,103.24053,100.71308,16.926498,964.8738,0.0,71.20418 +2023-09-28 03:00:00,3.6687872,7.7201037,107.44727,106.55715,16.4765,964.79535,0.0,74.731865 +2023-09-28 04:00:00,3.7121422,7.6157727,117.25525,119.93143,15.6765,964.845,0.0,81.54014 +2023-09-28 05:00:00,3.6359317,7.4632435,121.50421,125.18078,15.0265,964.7308,0.0,87.26861 +2023-09-28 06:00:00,3.6878178,7.5742984,130.60121,132.32452,14.6265,964.5651,0.0,91.02076 +2023-09-28 07:00:00,3.8948684,7.81025,138.12222,140.19447,14.3765,964.5208,0.0,92.80449 +2023-09-28 08:00:00,3.7443287,7.600658,145.88548,147.35538,14.2265005,964.3994,0.0,93.40411 +2023-09-28 09:00:00,3.7735925,7.653757,147.99466,151.09091,14.0265,964.07965,0.0,94.31369 +2023-09-28 10:00:00,4.0496917,7.877182,147.09476,151.15744,13.8765,963.9582,0.0,94.61583 +2023-09-28 11:00:00,4.243819,8.112336,145.56096,149.64197,13.7265005,964.12103,0.0,95.23028 +2023-09-28 12:00:00,4.0496917,7.7025967,147.09476,150.43974,13.5765,964.47375,0.0,96.47815 +2023-09-28 13:00:00,4.2059484,7.515318,151.60707,154.7989,13.7265005,964.7848,0.0,96.4822 +2023-09-28 14:00:00,4.4407206,6.87968,144.16226,147.46495,15.4765005,964.9996,0.0,89.32111 +2023-09-28 15:00:00,4.9648767,6.8505473,145.66972,146.3099,17.526499,964.9782,0.0,81.25023 +2023-09-28 16:00:00,5.507268,7.3355303,150.64235,152.38705,19.6265,964.77026,0.0,72.403824 +2023-09-28 17:00:00,7.5026665,10.0657835,158.9076,159.04414,21.3765,964.4033,0.0,61.513756 +2023-09-28 18:00:00,7.4732857,9.980982,155.49261,155.7461,22.3765,963.62177,0.0,55.290516 +2023-09-28 19:00:00,7.2498274,9.666437,155.55606,155.55606,23.026499,962.7809,0.0,53.85171 +2023-09-28 20:00:00,7.209022,9.585406,156.2796,156.64442,23.526499,962.19904,0.0,52.59171 +2023-09-28 21:00:00,7.068239,9.575489,154.8852,155.30846,23.676498,961.5591,0.0,52.288715 +2023-09-28 22:00:00,7.111962,9.838699,152.35411,153.43501,23.3265,961.2161,0.0,53.752956 +2023-09-28 23:00:00,6.896376,10.470912,150.46132,151.47697,22.526499,961.0829,0.0,56.4211 +2023-09-29 00:00:00,6.6610813,10.928861,144.16226,145.43741,21.176498,960.09686,0.0,60.474594 +2023-09-29 01:00:00,6.71193,11.1830225,146.54666,148.15758,20.3265,960.4279,0.0,63.931248 +2023-09-29 02:00:00,6.5764737,11.002273,151.87636,154.1337,19.7265,960.99054,0.0,67.22042 +2023-09-29 03:00:00,6.618912,11.098199,153.0479,155.51334,19.276499,960.9139,0.0,69.578125 +2023-09-29 04:00:00,6.484597,11.016806,153.43501,156.45995,18.8265,960.64716,0.0,71.09411 +2023-09-29 05:00:00,6.397656,10.900459,155.03725,157.90572,18.6265,960.51825,0.0,69.224594 +2023-09-29 06:00:00,6.6309876,11.072488,156.91484,159.92839,18.776499,960.1642,0.0,68.13113 +2023-09-29 07:00:00,6.6128664,11.131936,159.64668,162.21602,18.4765,959.8281,0.0,69.64945 +2023-09-29 08:00:00,6.9857,11.516945,156.3706,159.67677,18.3765,959.526,0.0,71.009705 +2023-09-29 09:00:00,6.928925,11.552056,159.73422,163.91827,18.276499,959.22437,0.0,73.82429 +2023-09-29 10:00:00,7.05195,11.835962,161.82188,166.31596,18.3765,958.7668,0.0,76.772385 +2023-09-29 11:00:00,6.841052,11.591807,164.74483,169.56258,18.276499,958.84485,0.0,77.75674 +2023-09-29 12:00:00,7.1421285,12.116518,135.5672,138.68073,16.9765,958.9055,0.0,84.671074 +2023-09-29 13:00:00,6.307139,10.850346,154.65387,160.06192,17.6265,959.20764,0.0,85.83795 +2023-09-29 14:00:00,6.1684685,11.803813,163.03377,178.54367,19.8265,959.20404,0.0,81.80601 +2023-09-29 15:00:00,3.4014704,6.280127,178.31535,189.16228,23.1265,960.13794,0.0,71.65773 +2023-09-29 16:00:00,3.992493,5.412947,202.06795,205.14474,24.926498,961.1953,0.6,63.509357 +2023-09-29 17:00:00,4.964876,6.6128664,198.79999,200.35332,26.926498,961.0468,0.0,53.801765 +2023-09-29 18:00:00,5.8940644,7.788453,194.7436,195.6423,28.026499,960.6543,0.0,48.712826 +2023-09-29 19:00:00,5.714018,7.5239615,184.0141,184.57384,28.1265,960.09973,0.0,48.429768 +2023-09-29 20:00:00,5.408327,7.3171034,176.82024,176.08183,27.276499,960.1529,0.0,50.572712 +2023-09-29 21:00:00,4.1303754,5.423099,173.04713,174.71,27.8765,960.0596,0.1,50.890007 +2023-09-29 22:00:00,5.59017,7.808969,169.6952,170.41713,28.2265,959.35535,0.0,51.95663 +2023-09-29 23:00:00,2.5961509,3.1320918,285.6423,253.30067,23.0765,959.74976,5.6,75.341805 +2023-09-30 00:00:00,3.8078866,5.4626,23.198618,23.749514,20.2265,960.8858,12.0,84.218575 +2023-09-30 01:00:00,3.1144822,5.707889,84.47256,86.98728,19.8265,960.53296,0.0,90.50231 +2023-09-30 02:00:00,4.049691,7.877182,110.22495,118.84257,19.9765,960.3685,0.0,88.82457 +2023-09-30 03:00:00,1.868154,3.7215588,74.47583,149.30035,19.426498,960.9394,0.0,85.47485 +2023-09-30 04:00:00,2.745906,4.0853395,79.50858,111.541046,18.3765,961.8036,3.6,95.69586 +2023-09-30 05:00:00,5.345091,9.588535,162.58194,172.20801,19.6265,959.9293,0.1,83.88568 +2023-09-30 06:00:00,4.119466,8.532877,185.5721,190.1246,19.6265,960.309,0.0,83.35507 +2023-09-30 07:00:00,2.3345234,6.7535176,189.86574,207.3238,19.6265,960.97345,0.0,82.56465 +2023-09-30 08:00:00,1.4317821,2.7313,102.09474,156.2505,18.776499,961.96735,0.5,84.32583 +2023-09-30 09:00:00,3.623534,5.8189344,140.59937,160.9422,18.5765,961.45844,0.0,88.99337 +2023-09-30 10:00:00,4.049691,8.125269,159.77505,166.47682,18.5765,961.8381,0.0,87.86977 +2023-09-30 11:00:00,4.4,8.900561,180.0,180.64374,18.8265,962.16565,0.0,85.68534 +2023-09-30 12:00:00,2.745906,5.4589376,303.11136,298.4428,16.776499,962.8555,0.0,95.64381 +2023-09-30 13:00:00,2.6925824,4.4418464,328.67136,328.8151,16.6265,963.7781,0.0,99.36648 +2023-09-30 14:00:00,2.4020824,2.8071337,2.385899,4.085537,17.276499,964.7451,0.0,98.43061 +2023-09-30 15:00:00,2.0248458,2.1633308,32.905247,33.6901,18.3265,965.02167,0.0,95.39303 +2023-09-30 16:00:00,0.9,1.1401755,90.0,105.25517,21.176498,965.69867,0.0,82.750984 +2023-09-30 17:00:00,1.2206556,1.4866068,124.992096,132.27362,23.776499,965.4701,0.0,72.907745 +2023-09-30 18:00:00,2.4207437,3.1144822,128.2902,132.39738,25.9765,965.4535,0.0,65.14723 +2023-09-30 19:00:00,3.4205263,4.5221677,142.12495,144.90411,27.8265,964.89954,0.0,61.990402 +2023-09-30 20:00:00,4.060788,5.3600373,170.07382,171.41646,29.026499,964.33215,0.1,56.046646 +2023-09-30 21:00:00,3.8832974,5.080354,168.11136,169.79608,29.3265,964.0,0.0,54.0635 +2023-09-30 22:00:00,5.3160133,7.472616,163.61038,164.47583,29.3265,963.8098,0.0,53.895187 +2023-09-30 23:00:00,5.940539,9.541488,143.90163,146.97614,27.5765,963.9083,0.0,58.924763 +2023-10-01 00:00:00,3.2015622,7.119691,104.47034,100.52074,24.2265,963.36005,0.0,75.52678 +2023-10-01 01:00:00,3.1890438,7.547185,131.18582,147.99466,24.176498,963.4468,0.0,69.197266 +2023-10-01 02:00:00,4.1146083,8.634812,154.05775,166.60748,25.176498,964.08673,0.0,53.530224 +2023-10-01 03:00:00,4.86621,9.508417,170.53775,177.58902,25.0765,964.5454,0.0,54.023388 +2023-10-01 04:00:00,5.4037027,10.017983,182.12105,183.43356,25.1265,965.1236,0.0,55.440445 +2023-10-01 05:00:00,4.491102,8.728115,168.4399,175.4,24.676498,965.23944,0.0,57.31494 +2023-10-01 06:00:00,5.162364,9.415413,148.46526,157.52052,23.776499,965.2801,0.0,59.723366 +2023-10-01 07:00:00,6.3245554,10.989541,161.56496,164.6991,23.5765,965.15186,0.0,60.253513 +2023-10-01 08:00:00,6.6,11.401753,180.0,181.00507,23.526499,964.7637,0.0,61.019096 +2023-10-01 09:00:00,6.8007355,11.8207445,180.8425,183.39485,23.0765,964.78357,0.0,63.10263 +2023-10-01 10:00:00,6.7,11.615507,180.0,182.96088,22.5765,965.0798,0.0,65.04394 +2023-10-01 11:00:00,6.3007936,11.253888,180.90936,185.60918,22.276499,965.5992,0.0,65.81817 +2023-10-01 12:00:00,5.234501,9.604687,173.41815,181.78987,22.4765,966.3926,0.0,68.86694 +2023-10-01 13:00:00,5.3600373,9.433981,165.96373,175.13557,22.026499,967.2666,0.2,71.00461 +2023-10-01 14:00:00,5.5217752,8.99611,144.58286,155.71419,22.8765,967.5996,1.0,71.61234 +2023-10-01 15:00:00,5.846366,10.071743,167.1523,173.15732,24.676498,967.89954,0.0,67.57901 +2023-10-01 16:00:00,6.9007244,9.712878,180.83029,182.95071,26.9765,967.6128,0.0,58.96863 +2023-10-01 17:00:00,6.9180923,9.4429865,184.14455,185.46901,28.3265,967.3566,0.0,54.49366 +2023-10-01 18:00:00,7.21734,9.732934,183.97241,184.71468,29.276499,967.12964,0.0,51.573936 +2023-10-01 19:00:00,7.4242845,10.14002,184.63538,185.09203,30.026499,966.6794,0.0,47.86513 +2023-10-01 20:00:00,7.532596,10.358571,185.33206,186.09576,30.426498,966.45764,0.0,44.33357 +2023-10-01 21:00:00,7.7781744,11.031772,188.13002,188.86455,30.776499,966.038,0.0,36.79124 +2023-10-01 22:00:00,6.760177,10.423532,187.65056,188.82967,30.1265,965.6493,0.0,37.940346 +2023-10-01 23:00:00,5.903389,9.918165,181.94144,183.46815,28.6265,965.5039,0.0,41.37176 +2023-10-02 00:00:00,4.6173587,9.10055,175.03035,179.37042,27.176498,965.1741,0.0,39.388237 +2023-10-02 01:00:00,5.731492,10.423531,173.99109,176.14944,26.4765,965.3453,0.0,38.549 +2023-10-02 02:00:00,6.3198104,11.311057,175.46231,177.46649,25.7265,965.60236,0.0,43.18809 +2023-10-02 03:00:00,6.8066144,11.727319,182.52606,183.9115,25.276499,965.90845,0.0,45.98702 +2023-10-02 04:00:00,6.4031243,11.328283,181.78987,184.0495,24.7265,966.00775,0.0,47.675694 +2023-10-02 05:00:00,6.207254,11.136427,182.77016,184.63538,24.2265,965.9249,0.0,47.85362 +2023-10-02 06:00:00,6.303174,11.128792,181.81827,184.12222,23.526499,965.8085,0.0,49.09789 +2023-10-02 07:00:00,6.512296,11.452947,183.52138,185.51138,23.176498,965.7502,0.0,50.146206 +2023-10-02 08:00:00,6.4629717,11.395174,188.00464,190.6196,22.8765,965.70013,0.0,49.7375 +2023-10-02 09:00:00,6.449806,11.278742,187.12492,190.21391,22.4765,965.34796,0.0,49.959866 +2023-10-02 10:00:00,6.537584,11.458621,186.14653,189.54445,22.026499,965.27246,0.0,51.51708 +2023-10-02 11:00:00,6.576473,11.414026,188.74608,191.113,21.776499,965.13544,0.0,53.17945 +2023-10-02 12:00:00,6.360031,11.260551,196.44046,199.72237,21.8265,965.52344,0.0,54.075356 +2023-10-02 13:00:00,6.113101,10.720541,195.17297,197.92801,21.676498,965.4035,0.0,55.659718 +2023-10-02 14:00:00,6.3245554,10.640489,198.43504,201.5015,22.9765,965.6216,0.0,53.488487 +2023-10-02 15:00:00,6.0207973,9.264988,191.49654,193.73628,24.426498,965.7679,0.0,51.8065 +2023-10-02 16:00:00,6.2513995,8.895505,187.35228,188.40329,25.8265,965.90393,0.0,48.91289 +2023-10-02 17:00:00,6.5490456,9.093405,187.0164,188.21912,27.3765,965.682,0.0,46.25765 +2023-10-02 18:00:00,7.256032,9.914131,187.12492,188.70215,28.776499,965.33795,0.0,41.413193 +2023-10-02 19:00:00,7.808969,10.590561,189.58287,190.88548,29.426498,964.58636,0.0,37.25735 +2023-10-02 20:00:00,7.746612,10.6099,191.16484,191.4158,29.676498,963.9607,0.0,35.544518 +2023-10-02 21:00:00,7.531268,10.511898,190.71307,191.52368,29.5765,963.1842,0.0,34.939404 +2023-10-02 22:00:00,6.7896976,10.062305,189.32352,190.3048,29.026499,962.62085,0.0,36.54308 +2023-10-02 23:00:00,5.9076223,9.633276,182.91078,184.76355,27.776499,962.13464,0.0,40.339275 +2023-10-03 00:00:00,5.1009803,9.404785,178.87672,181.82793,26.8265,962.17114,0.0,40.33882 +2023-10-03 01:00:00,5.508176,10.0,176.87793,180.0,25.9765,962.1276,0.0,42.553135 +2023-10-03 02:00:00,5.8077536,10.20049,177.03912,179.43831,25.3265,961.9262,0.0,44.371857 +2023-10-03 03:00:00,5.93043,10.607545,174.19337,177.83897,24.3265,961.7616,0.0,48.353504 +2023-10-03 04:00:00,6.8066144,11.7,177.47394,180.0,24.026499,961.6169,0.0,49.070652 +2023-10-03 05:00:00,6.8007355,11.615507,180.8425,182.96088,23.6265,961.5509,0.0,48.642727 +2023-10-03 06:00:00,6.5,11.21606,180.0,183.06642,22.926498,961.43445,0.0,49.587112 +2023-10-03 07:00:00,6.9,11.815245,180.0,182.91078,22.3265,961.1445,0.0,52.452415 +2023-10-03 08:00:00,6.9,11.815245,180.0,182.91078,22.1265,961.016,0.0,54.152023 +2023-10-03 09:00:00,6.6030297,11.303982,178.26433,181.52074,21.776499,960.5775,0.0,57.162594 +2023-10-03 10:00:00,6.6,11.21606,180.0,183.06642,21.4765,960.81195,0.0,60.544643 +2023-10-03 11:00:00,6.6030297,11.201785,178.26433,181.02301,21.0765,960.2697,0.0,63.681606 +2023-10-03 12:00:00,6.3007936,10.816654,179.09064,183.17976,21.776499,960.19775,0.0,61.20737 +2023-10-03 13:00:00,6.537584,11.111256,173.85347,177.42091,21.526499,959.8709,0.0,63.369576 +2023-10-03 14:00:00,6.4629717,10.846198,171.99536,174.71,22.676498,959.6833,0.0,61.019627 +2023-10-03 15:00:00,7.746612,11.146299,168.83516,170.70677,23.8265,959.494,0.0,57.47714 +2023-10-03 16:00:00,7.802564,11.001818,178.53123,178.95839,24.9765,959.58844,0.0,53.651752 +2023-10-03 17:00:00,8.122192,11.315918,175.76369,176.96066,25.426498,958.80695,0.0,52.401894 +2023-10-03 18:00:00,9.914131,13.678084,188.70215,189.25565,27.176498,958.33093,0.0,45.316856 +2023-10-03 19:00:00,9.848858,13.874077,192.90741,193.33511,25.6265,957.79456,0.0,49.81759 +2023-10-03 20:00:00,10.890822,15.255491,193.27066,194.03627,26.0765,957.4874,0.0,48.03862 +2023-10-03 21:00:00,9.786726,13.875518,187.63324,189.12282,25.026499,957.12634,0.0,53.49207 +2023-10-03 22:00:00,6.8622155,10.090094,198.69908,199.69211,22.8765,956.39264,0.1,64.90033 +2023-10-03 23:00:00,6.648308,10.159725,173.08887,173.78445,22.4765,955.94617,0.2,68.648224 +2023-10-04 00:00:00,7.0114193,11.503912,176.72958,178.5057,19.8265,955.9766,0.2,82.58884 +2023-10-04 01:00:00,7.5186434,12.022063,166.14856,168.9705,20.3265,955.2066,0.0,77.56747 +2023-10-04 02:00:00,7.668768,12.237647,167.95744,168.69011,20.3265,954.35223,0.3,76.340805 +2023-10-04 03:00:00,8.032434,12.909686,198.88618,200.4003,18.7265,954.6511,9.2,89.28784 +2023-10-04 04:00:00,7.6295476,12.083046,190.57347,192.42593,18.3765,954.3065,4.5,90.976845 +2023-10-04 05:00:00,8.407735,13.058714,206.86974,206.36877,18.526499,953.8577,3.1,90.69902 +2023-10-04 06:00:00,5.3225937,8.692525,244.39786,246.97447,17.7265,954.1958,6.3,92.6869 +2023-10-04 07:00:00,4.304649,7.155418,239.26459,243.43501,17.526499,954.35114,0.2,90.63075 +2023-10-04 08:00:00,5.5470715,9.433981,236.0234,237.99466,16.4765,954.83435,0.0,88.2528 +2023-10-04 09:00:00,5.325411,9.4667845,235.71307,238.82872,15.4265,954.8422,0.0,83.67515 +2023-10-04 10:00:00,5.2325897,9.398404,243.9247,249.44386,14.8265,955.496,0.0,83.88084 +2023-10-04 11:00:00,5.531727,9.762172,257.4712,263.53027,14.5765,956.4006,0.0,83.02656 +2023-10-04 12:00:00,4.5177426,8.099382,242.30061,249.77505,13.5265,956.9741,0.0,89.16679 +2023-10-04 13:00:00,4.753946,8.104321,247.75093,254.24875,13.3765,957.70636,0.0,85.68273 +2023-10-04 14:00:00,4.6840153,7.0405965,253.8865,258.5305,14.5765,958.48694,0.0,78.22216 +2023-10-04 15:00:00,6.726812,9.080197,281.14285,281.43365,16.276499,958.9739,0.0,70.143745 +2023-10-04 16:00:00,6.041523,8.004998,282.42593,282.99463,17.176498,959.4145,0.0,63.017788 +2023-10-04 17:00:00,5.885576,7.7103825,279.78235,279.70657,17.776499,959.8975,0.0,55.225414 +2023-10-04 18:00:00,6.9231496,9.042676,280.82297,280.19144,18.4765,960.1128,0.0,50.572308 +2023-10-04 19:00:00,6.6940274,8.852683,283.82867,283.72232,18.426498,959.9145,0.0,50.21617 +2023-10-04 20:00:00,6.139218,8.2,282.2251,282.68036,18.6265,960.0437,0.0,48.09332 +2023-10-04 21:00:00,5.661272,7.4330344,287.47485,287.21616,18.8265,960.0777,0.0,45.272907 +2023-10-04 22:00:00,4.838388,6.514599,288.06055,287.87878,18.6265,959.94885,0.0,44.139824 +2023-10-04 23:00:00,3.8626416,6.109828,291.25058,291.10492,17.776499,960.08734,0.0,45.920357 +2023-10-05 00:00:00,1.9646883,4.1,255.2564,270.0,14.2265005,960.51154,0.0,58.00002 +2023-10-05 01:00:00,2.0808651,4.609772,234.78232,257.4712,13.5265,960.3875,0.0,60.070045 +2023-10-05 02:00:00,2.5495098,5.4589376,221.82008,241.55717,12.9265,960.0912,0.0,62.252026 +2023-10-05 03:00:00,3.1384711,6.576473,210.65059,225.61598,12.5265,960.2098,0.0,63.683548 +2023-10-05 04:00:00,3.8078864,7.798718,209.93143,220.84027,12.4265,960.66583,0.0,64.32477 +2023-10-05 05:00:00,4.2544093,8.490582,203.55228,212.00534,12.5265,960.5889,0.0,64.347275 +2023-10-05 06:00:00,5.0328918,9.660228,200.95586,207.09547,12.9265,960.186,0.0,62.467545 +2023-10-05 07:00:00,5.818075,10.377379,208.76755,212.00534,13.6265,959.93134,0.0,59.474663 +2023-10-05 08:00:00,6.8014703,11.313708,221.42357,224.9999,14.5765,960.0991,0.0,56.70272 +2023-10-05 09:00:00,6.7675695,11.268097,235.84026,238.42586,14.1765,960.2182,0.0,56.797226 +2023-10-05 10:00:00,5.903389,10.2956295,243.86905,245.9245,13.7765,960.0526,0.0,59.511326 +2023-10-05 11:00:00,6.041523,10.751744,257.57407,260.36252,13.4765005,960.1891,0.0,62.595345 +2023-10-05 12:00:00,6.20967,10.5948105,284.93146,287.57993,13.1765,961.08405,0.0,67.43136 +2023-10-05 13:00:00,5.162364,9.037699,291.59537,294.86368,12.6265,961.4597,0.0,67.31566 +2023-10-05 14:00:00,5.6044626,9.044335,285.52417,288.03436,13.6765,962.4055,0.0,62.426846 +2023-10-05 15:00:00,7.7491937,10.846659,287.2659,288.268,14.5765,962.75446,0.0,51.8119 +2023-10-05 16:00:00,8.228001,11.168259,286.23242,286.65018,15.1765,962.6705,0.0,44.709656 +2023-10-05 17:00:00,9.070832,12.39395,284.03625,284.48477,15.9765005,962.43146,0.0,41.29138 +2023-10-05 18:00:00,9.771899,13.345411,287.87878,287.89197,16.426498,962.2254,0.0,37.10213 +2023-10-05 19:00:00,10.312129,14.13966,289.8408,289.84473,16.6265,961.7858,0.0,36.89609 +2023-10-05 20:00:00,11.007271,15.170036,294.7024,294.53772,16.3265,961.3543,0.0,35.00365 +2023-10-05 21:00:00,10.151848,14.445068,296.3126,296.74234,15.4765005,961.6798,0.0,36.035667 +2023-10-05 22:00:00,9.757561,13.961733,294.20096,294.54584,15.1265,961.9029,0.0,36.854336 +2023-10-05 23:00:00,8.318654,12.254386,297.18103,297.19226,14.6265,962.1942,0.0,38.89301 +2023-10-06 00:00:00,6.8818603,10.601887,305.53775,305.78906,12.8765,963.3057,0.0,45.987667 +2023-10-06 01:00:00,5.770615,9.315042,297.8972,299.5922,11.9265,963.6093,0.0,50.90902 +2023-10-06 02:00:00,5.770615,9.552486,297.8972,300.8608,11.4765005,963.62305,0.0,51.516514 +2023-10-06 03:00:00,5.6824293,9.415414,298.36896,300.65057,11.0765,963.7403,0.0,51.962185 +2023-10-06 04:00:00,5.189412,9.082401,295.08356,298.25793,10.4765005,963.5366,0.0,51.42664 +2023-10-06 05:00:00,4.472136,8.228001,280.30478,286.23242,9.8765,962.85864,0.0,51.076088 +2023-10-06 06:00:00,5.333854,9.300538,263.5413,269.38394,9.8765,962.4796,0.0,47.322403 +2023-10-06 07:00:00,6.8883963,11.237883,279.18875,281.80984,10.3765,962.2864,0.0,37.77599 +2023-10-06 08:00:00,7.4464755,11.638729,284.78278,287.50095,9.2265005,962.645,0.0,49.79537 +2023-10-06 09:00:00,8.407735,12.705904,296.86972,298.1785,8.0265,962.9925,0.0,57.447678 +2023-10-06 10:00:00,8.184132,12.617845,296.87805,298.3929,7.5765,963.288,0.0,46.65961 +2023-10-06 11:00:00,7.648529,12.030793,295.5599,297.20392,6.6765003,963.9726,0.0,42.708183 +2023-10-06 12:00:00,7.920227,12.432619,294.62354,296.77106,5.5765,963.86096,0.0,53.14012 +2023-10-06 13:00:00,8.459906,12.870509,302.9387,304.55444,4.8765,964.58093,0.8,73.44864 +2023-10-06 14:00:00,11.125196,15.6237,305.11865,305.62302,5.1765003,965.395,0.0,73.5039 +2023-10-06 15:00:00,11.300443,16.34044,306.36295,307.29074,5.5765,966.3225,0.1,70.213974 +2023-10-06 16:00:00,9.449339,13.7,309.41736,309.96616,5.3765,966.9474,0.2,78.159355 +2023-10-06 17:00:00,10.46518,14.708501,315.0001,315.55084,7.2265,967.57916,0.0,72.32208 +2023-10-06 18:00:00,10.8074045,15.148928,321.009,321.163,8.8265,968.3502,0.1,65.33292 +2023-10-06 19:00:00,9.948869,13.93126,320.7106,320.82635,9.9265,968.4581,0.1,59.396236 +2023-10-06 20:00:00,10.206861,14.187318,318.9726,319.574,10.4265,968.7393,0.2,59.52019 +2023-10-06 21:00:00,10.121264,14.120906,322.22424,322.4808,11.4765005,968.93066,0.1,50.967068 +2023-10-06 22:00:00,9.871676,13.93126,320.34308,320.82635,11.1265,969.3407,0.0,53.292103 +2023-10-06 23:00:00,8.481155,12.340584,322.1842,322.57288,10.3265,969.6684,0.0,58.241997 +2023-10-07 00:00:00,7.5166483,11.574541,319.3161,320.25784,8.9265,970.6423,0.0,65.58728 +2023-10-07 01:00:00,7.5006666,11.402192,317.1611,318.19962,8.5765,971.33527,0.0,65.50935 +2023-10-07 02:00:00,7.638063,10.890363,313.93918,314.256,8.7265005,971.9316,0.0,62.357098 +2023-10-07 03:00:00,7.4953322,10.466136,315.0001,315.77414,8.3765,972.2453,0.0,61.168247 +2023-10-07 04:00:00,7.076722,9.982485,317.29062,317.84222,7.8765,972.3415,0.0,60.39027 +2023-10-07 05:00:00,5.731492,9.192389,312.8789,315.0001,6.8265,972.0498,0.0,63.72136 +2023-10-07 06:00:00,4.89183,8.345058,310.8553,314.02905,5.9765,971.88916,0.0,65.633385 +2023-10-07 07:00:00,4.3416586,7.7833157,308.45374,312.91742,5.1765003,971.7376,0.0,68.62412 +2023-10-07 08:00:00,4.1880784,7.6216793,303.31064,308.0728,4.4265003,971.8782,0.0,72.046814 +2023-10-07 09:00:00,4.3011627,7.8243213,305.53775,308.77417,3.9265,971.8769,0.0,73.53962 +2023-10-07 10:00:00,3.940812,7.451845,305.7068,310.10083,3.5265,971.89453,0.0,74.81693 +2023-10-07 11:00:00,3.4669871,6.9526978,303.23172,310.33307,3.1265,971.7227,0.0,76.95907 +2023-10-07 12:00:00,3.0232434,6.3031735,304.21576,311.78442,2.1265,972.0966,0.0,83.831184 +2023-10-07 13:00:00,2.8792362,5.5758405,290.3232,302.55,2.1764998,971.917,0.0,84.7557 +2023-10-07 14:00:00,2.8635643,4.88467,282.09473,292.8906,4.2265,972.4079,0.0,76.86162 +2023-10-07 15:00:00,3.1320918,3.9849718,286.6993,287.52567,6.3265,972.52374,0.0,64.53371 +2023-10-07 16:00:00,2.8160255,3.622154,276.11542,276.3401,8.0765,972.18933,0.0,58.509174 +2023-10-07 17:00:00,3.4014704,4.304649,271.68463,272.66293,9.6265,971.719,0.0,53.269947 +2023-10-07 18:00:00,3.4014704,4.4011364,268.31534,268.6981,11.0265,970.6494,0.0,48.518856 +2023-10-07 19:00:00,3.7054014,4.704253,273.094,272.43658,12.4265,969.6715,0.0,43.444912 +2023-10-07 20:00:00,3.6124783,4.7095647,274.76355,273.65216,12.9265,968.71844,0.0,41.29083 +2023-10-07 21:00:00,3.4014704,4.4011364,271.68463,271.3019,13.4265,967.9551,0.0,40.11047 +2023-10-07 22:00:00,3.354102,4.4553337,259.69522,260.9606,13.2265005,966.8762,0.0,40.636734 +2023-10-07 23:00:00,2.720294,4.464303,252.89719,254.40712,12.7765,966.2267,0.0,43.23349 +2023-10-08 00:00:00,2.2627418,3.758989,224.9999,241.38963,9.6265,965.37103,0.0,54.827694 +2023-10-08 01:00:00,2.0248458,3.5510561,212.90524,237.65257,8.9265,964.95825,0.0,58.51372 +2023-10-08 02:00:00,1.7492856,3.4409301,210.96368,234.46223,8.9765005,964.39923,0.0,58.526367 +2023-10-08 03:00:00,1.6124516,3.4205263,209.7448,232.12495,9.9765005,964.014,0.0,55.117786 +2023-10-08 04:00:00,2.059126,3.753665,209.0545,228.23979,10.7765,963.68567,0.0,52.06667 +2023-10-08 05:00:00,2.5632012,4.7201695,200.55612,216.38445,10.1765,962.81866,0.0,54.385654 +2023-10-08 06:00:00,2.9120438,5.7306194,195.94547,209.24873,8.6765,961.8811,0.0,61.022182 +2023-10-08 07:00:00,3.1016126,6.1587334,200.77234,212.39983,8.6765,961.50214,0.0,61.680565 +2023-10-08 08:00:00,3.3120992,6.5855904,208.88649,221.92245,7.7765,960.8625,0.0,65.56437 +2023-10-08 09:00:00,3.1622775,6.5,214.69522,233.13002,7.4765,960.23883,0.0,65.73235 +2023-10-08 10:00:00,2.842534,6.264982,219.28938,241.38963,7.3265,959.9267,0.0,64.298454 +2023-10-08 11:00:00,2.2671568,5.3851643,228.57643,254.93146,7.2265,959.8135,0.0,63.12818 +2023-10-08 12:00:00,2.236068,5.531727,259.69522,282.5288,6.4265003,959.4756,0.0,66.44997 +2023-10-08 13:00:00,2.1023796,5.0249376,295.34613,317.41956,6.2265,959.9116,0.0,67.61521 +2023-10-08 14:00:00,3.1384711,5.3851647,329.3494,338.19852,8.7765,960.7626,0.0,61.704575 +2023-10-08 15:00:00,3.324154,4.5177426,353.08887,354.92047,10.4765005,961.54663,0.0,55.249596 +2023-10-08 16:00:00,3.1400635,4.060788,9.16228,9.926182,11.9765005,961.9123,0.0,53.9004 +2023-10-08 17:00:00,3.1320918,3.8897302,16.699326,17.969234,13.6765,961.9314,0.0,51.931854 +2023-10-08 18:00:00,3.640055,4.588028,15.945477,16.46009,14.9765005,962.0664,0.0,48.249474 +2023-10-08 19:00:00,3.613862,4.535416,14.4208145,14.036275,15.7265005,961.72363,0.0,44.083847 +2023-10-08 20:00:00,3.5510561,4.3737855,9.727519,10.539137,16.0765,961.40533,0.0,41.028687 +2023-10-08 21:00:00,3.7215588,4.7265205,6.170083,6.0723705,15.926499,961.1895,0.0,40.55109 +2023-10-08 22:00:00,3.901282,5.1009803,1.4687687,1.1232841,15.3765,960.9036,0.0,41.1174 +2023-10-08 23:00:00,3.206244,5.2086463,3.5762644,3.3018,14.3265,961.00336,0.0,44.943012 +2023-10-09 00:00:00,2.5079873,5.948109,23.498587,26.995766,11.9265,960.7657,0.0,49.122616 +2023-10-09 01:00:00,2.5495098,6.0959,41.82009,48.99101,10.6265,960.91034,0.0,53.157436 +2023-10-09 02:00:00,2.607681,6.0926185,57.528828,66.801384,9.5265,961.3734,0.0,53.62873 +2023-10-09 03:00:00,2.118962,5.2201533,70.70986,73.300674,9.3265,962.0002,0.0,52.996605 +2023-10-09 04:00:00,1.746425,3.710795,76.75947,75.96373,8.6765,961.7863,0.0,58.87229 +2023-10-09 05:00:00,1.7804494,2.8178005,51.842735,62.525658,9.1765,961.68854,0.0,52.95583 +2023-10-09 06:00:00,1.9026297,2.6400757,356.98727,37.30404,7.4265003,961.36584,0.0,64.552864 +2023-10-09 07:00:00,1.7,3.5846896,360.0,22.988754,7.3765,961.54614,0.0,62.48426 +2023-10-09 08:00:00,1.6124516,3.5846896,7.12493,30.1413,6.0265,961.4838,0.0,69.80064 +2023-10-09 09:00:00,2.0,3.2649658,360.0,27.349789,4.6265,961.22034,0.0,77.482834 +2023-10-09 10:00:00,2.0223749,3.352611,351.4693,17.354122,4.1765003,961.32446,0.0,79.96101 +2023-10-09 11:00:00,1.9416487,3.471311,348.11136,11.633606,3.9764998,961.6653,0.0,81.09072 +2023-10-09 12:00:00,1.9235383,4.570558,351.02744,10.0805435,3.6764998,962.0812,0.0,83.416245 +2023-10-09 13:00:00,2.0615528,4.609772,337.1663,356.26868,3.4264998,962.4122,0.0,85.81772 +2023-10-09 14:00:00,2.5079873,4.86621,336.5014,350.53775,5.7265,962.9424,0.0,77.10703 +2023-10-09 15:00:00,2.886174,3.8639357,345.9637,349.5626,7.7765,963.41974,0.0,66.03464 +2023-10-09 16:00:00,3.640055,4.6572523,344.05453,345.06854,9.4265,963.25006,0.0,54.57754 +2023-10-09 17:00:00,4.3011627,5.4708314,342.40747,341.89615,10.6765,962.81476,0.0,49.840046 +2023-10-09 18:00:00,5.314132,6.8007355,340.20102,340.23273,12.0265,962.20544,0.0,44.60247 +2023-10-09 19:00:00,5.283938,6.809552,330.5242,330.04648,12.3765,961.5098,0.0,43.43038 +2023-10-09 20:00:00,5.3009434,6.8818603,324.21094,324.46225,12.6265,960.9857,0.0,42.878777 +2023-10-09 21:00:00,5.2430906,6.8242216,325.09744,325.14548,12.8765,960.55646,0.0,41.276184 +2023-10-09 22:00:00,5.5226803,7.2718635,328.3246,328.4958,12.4765005,960.2006,0.0,42.065807 +2023-10-09 23:00:00,4.429447,6.441273,331.69934,332.24155,11.4265,959.9175,0.0,45.406857 +2023-10-10 00:00:00,3.1384711,6.4513564,337.5205,341.00323,9.3265,959.63165,0.0,48.212734 +2023-10-10 01:00:00,2.1931713,5.5362444,335.77228,343.20154,8.0765,959.40234,0.0,53.626106 +2023-10-10 02:00:00,2.059126,5.502726,330.9455,340.9064,7.0265,959.20825,0.0,58.454323 +2023-10-10 03:00:00,2.118962,5.423099,340.70987,354.71,6.3765,959.27673,0.0,61.345974 +2023-10-10 04:00:00,1.8867962,5.080354,327.99466,349.79608,5.5265,959.11804,0.0,65.29401 +2023-10-10 05:00:00,1.9798989,4.9396358,315.0001,338.6293,5.0765,958.93896,0.0,67.612625 +2023-10-10 06:00:00,1.8601075,4.651881,306.25394,334.53668,4.6265,958.57,0.0,69.76716 +2023-10-10 07:00:00,1.9697715,4.5,293.9625,323.13,4.0765,958.5609,0.0,73.03452 +2023-10-10 08:00:00,2.1540658,5.020956,291.80148,314.19315,3.6764998,958.3904,0.0,75.664154 +2023-10-10 09:00:00,2.2472203,5.3814497,290.85452,311.98712,3.3765,958.2387,0.0,78.410736 +2023-10-10 10:00:00,2.2135942,5.1739736,288.43503,311.08167,2.9764998,958.4464,0.0,82.430695 +2023-10-10 11:00:00,2.2135942,5.3263493,288.43503,309.66782,2.6265,958.2851,0.0,85.4226 +2023-10-10 12:00:00,2.2472203,5.456189,290.85452,311.2846,1.9265,958.62366,0.0,88.177475 +2023-10-10 13:00:00,2.236068,5.4451814,296.56497,315.74396,1.7265,958.6798,0.0,88.15927 +2023-10-10 14:00:00,2.7802877,5.185557,307.6943,320.4774,4.7265,959.5357,0.0,74.75861 +2023-10-10 15:00:00,2.624881,3.7013512,319.63553,321.5819,7.2265,959.9082,0.0,63.584904 +2023-10-10 16:00:00,3.1384711,4.0816665,329.3494,329.03632,9.0265,959.7664,0.0,52.53229 +2023-10-10 17:00:00,2.842534,3.623534,320.7106,320.59937,10.1265,959.3984,0.0,48.970627 +2023-10-10 18:00:00,2.6907248,3.405877,311.98712,310.2363,11.1765,958.83,0.0,46.164795 +2023-10-10 19:00:00,2.758623,3.405877,313.53125,310.2363,12.0265,958.22437,0.0,44.60247 +2023-10-10 20:00:00,2.6870058,3.3241541,315.0001,313.7812,12.6765,957.4872,0.0,40.91918 +2023-10-10 21:00:00,2.2022715,2.7658632,320.52756,319.39877,12.8765,957.0487,0.0,39.65902 +2023-10-10 22:00:00,1.7204651,2.2022715,324.46225,320.52756,12.5765,956.61615,0.0,40.298756 +2023-10-10 23:00:00,1.0049876,1.9646883,354.2895,345.25638,11.1765,956.36584,0.0,55.23683 +2023-10-11 00:00:00,2.4186773,2.6019223,7.12493,2.2025495,8.5765,955.7999,0.0,51.46169 +2023-10-11 01:00:00,2.7294688,2.84605,28.442837,18.435053,7.4265003,955.7782,0.0,55.849174 +2023-10-11 02:00:00,3.04795,3.3837848,41.00899,34.159744,6.3265,955.76434,0.0,59.135086 +2023-10-11 03:00:00,3.1890438,3.905125,48.814175,39.805527,5.5265,955.7099,0.0,61.36261 +2023-10-11 04:00:00,3.275668,4.060788,58.736336,52.001225,4.8765,955.68286,0.0,62.8004 +2023-10-11 05:00:00,3.1780496,3.939543,77.27565,66.037506,4.3265,955.48474,0.0,63.60022 +2023-10-11 06:00:00,3.1064448,3.7215588,93.691315,83.829926,3.9265,955.21985,0.0,63.976963 +2023-10-11 07:00:00,2.630589,4.3011627,98.74608,91.33219,4.1265,954.87915,0.0,61.929413 +2023-10-11 08:00:00,2.0124612,4.876474,116.56499,105.46127,4.5265,954.67035,0.0,60.219337 +2023-10-11 09:00:00,2.2472205,5.4626,122.27562,113.749504,4.6765003,954.3202,0.0,60.256866 +2023-10-11 10:00:00,2.4698176,5.95399,121.75944,119.14798,4.7765,954.1496,0.0,60.50495 +2023-10-11 11:00:00,2.640076,6.3953104,114.62355,116.96564,4.8265,954.2536,0.0,60.29435 +2023-10-11 12:00:00,2.9120438,6.926038,105.945465,107.650215,4.7765,954.6229,0.0,65.36233 +2023-10-11 13:00:00,3.2984846,7.3375745,104.03627,107.44727,5.0765,954.96313,0.0,65.43036 +2023-10-11 14:00:00,4.2107005,7.955501,94.08554,104.56032,7.3265,955.3809,0.0,60.9124 +2023-10-11 15:00:00,3.5171013,5.9464273,104.82652,109.653915,9.8265,956.0275,0.0,53.324013 +2023-10-11 16:00:00,4.4922156,6.0083275,106.821495,108.43504,12.2265005,955.89026,0.0,45.309353 +2023-10-11 17:00:00,5.0328918,6.5924196,110.95586,112.28564,14.0765,955.649,0.0,41.180588 +2023-10-11 18:00:00,5.0990195,6.596969,101.3099,104.03627,15.6765,955.07513,0.0,39.48107 +2023-10-11 19:00:00,5.423099,6.946222,95.28999,96.613365,16.526499,954.17896,0.0,38.89146 +2023-10-11 20:00:00,5.7008767,7.406079,91.005066,92.32148,16.8265,953.37683,0.0,38.978733 +2023-10-11 21:00:00,5.8034477,7.7103825,91.97489,92.97367,16.7265,953.2647,0.0,39.645947 +2023-10-11 22:00:00,5.8008623,8.01561,90.98774,93.57626,16.2265,953.17847,0.0,40.494377 +2023-10-11 23:00:00,5.124451,8.205485,84.40076,87.90479,15.0765,953.2636,0.0,43.433414 +2023-10-12 00:00:00,4.7801676,8.807384,74.219185,77.54176,13.3265,953.0517,0.0,47.112617 +2023-10-12 01:00:00,5.3150725,9.633795,78.05585,80.43998,12.4265,953.6509,0.0,47.704037 +2023-10-12 02:00:00,5.5443664,10.031949,82.7469,85.42616,11.8265,954.1127,0.0,48.569523 +2023-10-12 03:00:00,5.6515484,10.111875,76.70142,81.46932,10.9265,953.9517,0.0,52.482105 +2023-10-12 04:00:00,5.10392,9.500526,87.75431,89.39693,10.1265,954.47107,0.0,58.39889 +2023-10-12 05:00:00,5.2038445,9.563472,92.20255,96.604744,9.7765,954.8815,0.0,61.07118 +2023-10-12 06:00:00,5.3037724,9.426027,87.838974,94.258766,9.8265,954.60626,0.0,60.651245 +2023-10-12 07:00:00,5.3150725,9.563472,78.05585,83.39526,9.3265,954.0419,0.0,64.754074 +2023-10-12 08:00:00,5.3150725,9.364828,78.05585,83.25452,8.8265,954.14044,0.0,70.61133 +2023-10-12 09:00:00,5.2038445,9.035485,92.20255,95.07952,8.8765,954.8126,0.0,70.373375 +2023-10-12 10:00:00,5.93043,9.9,84.193375,90.0,8.9265,954.6323,0.0,69.15608 +2023-10-12 11:00:00,6.2289643,10.11237,84.47256,87.165955,8.6765,954.8711,0.0,70.83058 +2023-10-12 12:00:00,6.2169123,9.984988,78.87085,82.51921,8.5265,954.9383,0.0,74.63128 +2023-10-12 13:00:00,5.7974133,9.239589,75.004875,80.02801,8.3765,956.1423,0.1,77.53167 +2023-10-12 14:00:00,6.628725,10.705606,78.6901,81.94568,8.1265,956.38074,1.2,88.416985 +2023-10-12 15:00:00,7.4330344,11.7098255,79.14364,82.14678,8.2265005,956.2094,3.4,91.20233 +2023-10-12 16:00:00,8.229823,12.819127,85.12082,86.86982,8.2265005,956.01996,4.5,92.46092 +2023-10-12 17:00:00,8.702298,13.401491,88.68312,90.85508,8.2265005,955.73584,2.4,92.46092 +2023-10-12 18:00:00,10.304368,14.503103,88.3317,88.814766,9.2765,955.83295,0.3,84.95625 +2023-10-12 19:00:00,7.0007143,9.90202,68.19854,69.91794,8.4765005,955.4029,0.8,93.42758 +2023-10-12 20:00:00,7.2111025,10.5948105,70.559875,72.42006,8.5765,955.70526,3.4,93.751724 +2023-10-12 21:00:00,9.613532,14.645477,71.18803,72.92595,8.5765,955.0421,4.1,93.43264 +2023-10-12 22:00:00,9.616652,14.725828,73.07241,74.642456,8.5765,954.6632,1.8,93.751724 +2023-10-12 23:00:00,9.712363,14.892951,73.24418,75.21723,8.5765,954.85266,2.3,93.11451 +2023-10-13 00:00:00,10.316008,15.849291,78.2544,79.824554,8.0765,955.4242,4.3,91.82034 +2023-10-13 01:00:00,10.099999,15.634896,78.57885,80.05577,8.0765,955.4242,1.5,92.45225 +2023-10-13 02:00:00,10.575916,16.218817,76.88356,78.62083,8.0765,954.95056,1.7,92.13581 +2023-10-13 03:00:00,10.099999,15.536409,78.57885,79.99209,8.0265,954.9415,2.3,93.08532 +2023-10-13 04:00:00,9.610411,14.749237,77.98855,79.45199,8.0265,954.9415,1.0,93.72515 +2023-10-13 05:00:00,9.492103,14.5,78.45335,80.47279,7.8765,954.4404,2.1,94.0396 +2023-10-13 06:00:00,8.634812,13.25745,76.60749,78.6901,7.7265,954.2235,2.6,94.35574 +2023-10-13 07:00:00,8.420215,12.878665,74.14801,76.07163,7.6765003,953.36194,3.9,95.002884 +2023-10-13 08:00:00,7.7794604,11.9105,72.03077,74.9136,7.7765,952.62244,6.3,95.332664 +2023-10-13 09:00:00,8.319255,12.831601,64.35905,68.0327,7.8765,951.78845,5.8,96.31916 +2023-10-13 10:00:00,7.5610843,11.772,69.88733,73.72025,8.1765,951.74854,3.1,96.3278 +2023-10-13 11:00:00,7.3389373,11.401754,70.0835,74.74483,8.7265005,951.7541,1.6,96.671005 +2023-10-13 12:00:00,6.789698,12.402016,46.193405,57.847744,6.8765,951.88904,0.8,98.29835 +2023-10-13 13:00:00,6.280127,11.9,52.765083,61.92762,8.0765,952.109,0.2,97.64727 +2023-10-13 14:00:00,6.9999995,12.149074,53.13002,57.094753,8.6765,952.3134,0.9,97.98988 +2023-10-13 15:00:00,6.9310894,10.688779,43.83095,47.65426,8.8265,952.52997,1.7,97.992256 +2023-10-13 16:00:00,7.465253,11.322544,50.980602,54.344578,9.1265,952.86884,1.0,97.99699 +2023-10-13 17:00:00,9.319335,13.532554,56.82148,59.835083,9.4265,953.2073,0.5,96.36344 +2023-10-13 18:00:00,8.46286,12.647924,54.619644,56.938137,9.6765,953.5368,0.4,93.804375 +2023-10-13 19:00:00,8.780091,12.543125,52.869,54.409138,9.5765,953.7081,0.1,93.4829 +2023-10-13 20:00:00,8.421994,12.408464,47.40601,49.248547,9.9765005,954.15967,0.1,91.93795 +2023-10-13 21:00:00,7.8492036,11.672618,44.483906,46.73567,9.9265,954.9086,0.1,91.3152 +2023-10-13 22:00:00,7.212489,10.897706,44.999897,47.231197,9.2265005,955.82385,0.1,91.89183 +2023-10-13 23:00:00,6.021628,8.902246,35.537766,38.157276,8.8765,956.99146,0.0,92.49837 +2023-10-14 00:00:00,7.029225,11.031773,39.805527,44.26557,8.0265,957.9725,0.1,95.66802 +2023-10-14 01:00:00,6.96563,10.688779,39.173653,42.345757,7.7265,959.05383,0.2,93.71058 +2023-10-14 02:00:00,6.621933,10.191173,38.25447,42.614033,7.6265,960.2666,0.2,93.38435 +2023-10-14 03:00:00,6.264982,9.679876,28.610369,33.19758,7.4265003,961.2712,0.5,94.018776 +2023-10-14 04:00:00,6.6309876,10.24207,23.085169,27.315529,7.1765003,962.2666,0.6,93.03984 +2023-10-14 05:00:00,6.88767,10.567876,25.820946,29.475794,6.8265,962.95905,0.4,93.34328 +2023-10-14 06:00:00,6.8264194,10.568349,31.827414,34.592358,6.8765,963.5367,0.1,90.48141 +2023-10-14 07:00:00,6.1294374,9.709789,28.237358,32.38066,6.8265,964.3795,0.2,92.379326 +2023-10-14 08:00:00,5.9506307,9.394147,24.842371,27.928892,6.8265,965.0423,0.2,92.69967 +2023-10-14 09:00:00,6.0926185,9.570789,23.198618,26.029541,6.9265003,965.5344,0.4,93.026375 +2023-10-14 10:00:00,5.9135437,9.284934,18.741442,22.145239,7.1765003,966.1494,0.1,92.71937 +2023-10-14 11:00:00,5.7870545,9.15478,18.121958,21.801476,7.3765,966.56555,0.2,94.34038 +2023-10-14 12:00:00,6.0440054,9.36376,16.336123,19.983198,7.1265,967.18164,0.2,94.32937 +2023-10-14 13:00:00,5.824946,8.973851,11.888645,14.191129,7.0765,968.11945,0.0,93.03446 +2023-10-14 14:00:00,6.236986,9.217917,12.030577,15.091635,7.0765,968.78235,0.0,90.80985 +2023-10-14 15:00:00,6.519202,9.024964,20.65899,21.44781,7.6265,969.4534,0.0,84.47849 +2023-10-14 16:00:00,6.574192,8.720665,26.175228,26.564985,9.0265,970.09265,0.0,73.68269 +2023-10-14 17:00:00,5.9615436,7.839005,22.69384,23.294596,9.8265,970.3347,0.1,68.375854 +2023-10-14 18:00:00,5.664804,7.5610843,20.67451,20.112684,10.6765,970.2064,0.0,63.704117 +2023-10-14 19:00:00,5.8189344,7.8434687,19.057802,19.359097,11.2265005,970.1173,0.1,60.35084 +2023-10-14 20:00:00,5.9808025,8.041144,20.556128,21.139904,11.5765,970.2757,0.0,58.556103 +2023-10-14 21:00:00,5.8523498,8.005623,19.983198,20.472363,11.1265,970.57275,0.0,62.920773 +2023-10-14 22:00:00,5.440588,7.5286117,17.102825,16.990906,10.9265,970.7261,0.0,65.34071 +2023-10-14 23:00:00,4.3737855,6.6490602,10.539137,12.154927,10.5765,970.8514,0.0,66.6464 +2023-10-15 00:00:00,3.9115217,6.33877,4.398633,6.3401003,8.5265,971.9891,0.0,77.016304 +2023-10-15 01:00:00,3.748333,6.0299253,350.78906,354.2895,8.4265,972.34924,0.0,77.53957 +2023-10-15 02:00:00,3.710795,6.0016665,345.9637,349.43903,8.1765,972.4922,0.0,79.69452 +2023-10-15 03:00:00,3.3955853,5.8694124,346.373,351.1797,7.9265003,972.63495,0.0,81.62643 +2023-10-15 04:00:00,3.0463092,5.249762,336.8014,342.25522,7.8765,972.531,0.0,83.05231 +2023-10-15 05:00:00,3.667424,6.2289643,348.9965,354.47253,7.6265,972.5789,0.0,82.15781 +2023-10-15 06:00:00,3.275668,5.842089,347.66092,353.11835,7.0265,972.6555,0.1,86.49618 +2023-10-15 07:00:00,3.4176016,5.772348,339.44388,345.9637,7.3765,972.8161,0.0,83.57147 +2023-10-15 08:00:00,3.640055,6.041523,344.05453,347.57407,7.3265,973.0907,0.0,80.412254 +2023-10-15 09:00:00,3.1384711,5.748913,337.5205,346.93066,6.6265,972.8645,0.0,82.3164 +2023-10-15 10:00:00,2.9546573,5.8523498,336.0375,343.11313,5.9265003,973.01605,0.0,83.69024 +2023-10-15 11:00:00,3.176476,5.7775426,331.8215,336.54095,6.2765,972.9876,0.0,82.852875 +2023-10-15 12:00:00,3.6496572,6.140033,350.53775,353.4538,6.2265,973.3569,0.0,83.13891 +2023-10-15 13:00:00,3.6249137,5.571355,335.55606,338.9624,6.3765,973.47986,0.0,81.994774 +2023-10-15 14:00:00,4.0718546,5.7384667,335.32315,337.45688,6.7765,973.8395,0.0,80.90186 +2023-10-15 15:00:00,5.9439044,8.004998,347.36664,347.00537,7.9765005,974.06525,0.0,72.97637 +2023-10-15 16:00:00,6.4031243,8.561542,345.52966,345.80142,8.8265,974.22363,0.0,64.64091 +2023-10-15 17:00:00,6.9857,9.144397,346.75946,346.72357,9.5265,974.06915,0.0,60.148304 +2023-10-15 18:00:00,6.4938436,8.614523,350.24762,350.6471,9.7765,973.6418,0.0,58.102833 +2023-10-15 19:00:00,5.481788,7.227724,345.2032,345.5792,10.5765,972.74664,0.0,52.953796 +2023-10-15 20:00:00,5.2630787,6.9123073,345.69968,345.7627,11.5765,972.0765,0.0,50.45049 +2023-10-15 21:00:00,5.3758717,7.17844,341.56494,341.31256,11.6765,971.71545,0.0,51.75544 +2023-10-15 22:00:00,5.6435804,7.7897367,330.25522,330.8026,11.5765,971.6026,0.0,54.75666 +2023-10-15 23:00:00,5.2430906,8.570297,325.09744,325.93903,10.9765005,971.3984,0.0,57.789318 +2023-10-16 00:00:00,5.3823786,9.457801,324.8335,326.64597,9.7265005,971.3585,0.0,61.059086 +2023-10-16 01:00:00,5.5217752,9.7908125,324.58286,325.82297,9.0265,971.7031,0.0,64.686226 +2023-10-16 02:00:00,5.661272,9.90202,324.34457,326.95187,8.4765005,971.69574,0.0,66.897575 +2023-10-16 03:00:00,5.742821,10.154802,324.92618,327.87503,8.1265,971.53577,0.0,68.74761 +2023-10-16 04:00:00,5.408327,9.775479,326.3099,329.23734,7.7265,971.3664,0.0,70.64351 +2023-10-16 05:00:00,4.770744,9.042677,326.97614,330.88394,7.2265,971.0831,0.0,72.32208 +2023-10-16 06:00:00,4.2201896,8.508819,323.67307,330.42227,6.6265,970.78125,0.0,75.09184 +2023-10-16 07:00:00,4.263801,8.405951,320.7106,327.6334,6.1765003,970.7909,0.0,77.454605 +2023-10-16 08:00:00,4.5343137,8.800568,318.57642,323.78107,5.8765,971.113,0.0,79.07585 +2023-10-16 09:00:00,4.327817,8.487638,319.68597,325.56094,5.5765,971.0561,0.0,81.02228 +2023-10-16 10:00:00,3.720215,7.7025967,323.74606,330.43973,5.1765003,970.9802,0.0,83.30344 +2023-10-16 11:00:00,3.764306,7.632169,320.38934,328.39255,4.7765,970.904,0.0,85.35286 +2023-10-16 12:00:00,3.482815,7.0830784,320.82635,329.4525,4.2265,970.60956,0.0,90.60652 +2023-10-16 13:00:00,3.8209944,7.605919,312.8789,320.8696,3.9764998,970.9403,0.0,91.233635 +2023-10-16 14:00:00,3.679674,7.242237,317.2026,324.5542,5.7265,971.1792,0.0,82.78353 +2023-10-16 15:00:00,3.2202482,4.743417,323.8417,325.30478,7.7765,971.1862,0.0,74.499466 +2023-10-16 16:00:00,2.9681644,3.9962482,327.38077,328.2986,9.8265,970.99805,0.0,67.89848 +2023-10-16 17:00:00,3.1241,4.0459857,320.1945,320.01315,11.7765,970.5962,0.0,62.63365 +2023-10-16 18:00:00,3.679674,4.7423625,317.2026,317.5638,13.1765,969.9013,0.0,57.736862 +2023-10-16 19:00:00,3.8948684,4.883646,318.12222,317.4896,14.1265,968.9334,0.0,52.97064 +2023-10-16 20:00:00,3.8209944,4.9517674,317.1211,316.63654,14.6765,968.17773,0.0,49.19101 +2023-10-16 21:00:00,3.6069376,4.738143,313.87677,314.145,14.7765,967.6264,0.0,47.187733 +2023-10-16 22:00:00,3.1144822,4.313931,317.6026,315.9391,14.3765,967.17615,0.0,47.075146 +2023-10-16 23:00:00,1.6278821,4.1773195,317.4896,317.91092,12.1765,966.4034,0.0,60.79273 +2023-10-17 00:00:00,2.9529645,3.7161808,331.69934,336.19403,9.6765,965.4749,0.0,65.29181 +2023-10-17 01:00:00,2.385372,3.2572994,326.97614,342.12122,10.6765,965.4682,0.0,59.371723 +2023-10-17 02:00:00,1.3038404,2.0124612,274.39862,333.43503,11.0765,965.3514,0.0,56.39927 +2023-10-17 03:00:00,1.7088008,1.7720045,249.44386,286.38962,7.4765,964.59534,0.0,75.50472 +2023-10-17 04:00:00,1.5811387,2.5079873,235.30478,265.42615,6.6265,964.24756,0.0,82.89679 +2023-10-17 05:00:00,1.7492856,3.4,239.03632,270.0,5.9765,963.74677,0.0,86.08673 +2023-10-17 06:00:00,1.9416488,3.8052595,235.49141,273.01273,5.8765,963.3494,0.0,85.472694 +2023-10-17 07:00:00,2.0,3.901282,233.13002,268.53122,5.6765003,963.12256,0.0,85.75277 +2023-10-17 08:00:00,2.1400933,4.119466,232.59457,264.4279,5.3265,962.8671,0.0,87.24211 +2023-10-17 09:00:00,2.3345237,4.2720017,223.26433,253.68607,5.1265,962.26166,0.0,88.151665 +2023-10-17 10:00:00,2.4413111,4.527693,214.9921,239.47037,4.9265003,962.03455,0.0,88.75861 +2023-10-17 11:00:00,2.5806975,5.2801514,215.53777,232.69597,4.7765,962.1009,0.0,89.060036 +2023-10-17 12:00:00,2.8178005,5.9464273,207.47435,222.27362,4.5765,961.9681,0.0,89.04331 +2023-10-17 13:00:00,3.1384711,6.4404964,202.47948,216.15828,4.5765,961.77875,0.0,88.10205 +2023-10-17 14:00:00,3.794733,6.6241984,198.43504,208.88649,7.0765,962.0587,0.0,77.87196 +2023-10-17 15:00:00,3.2015622,6.931811,194.47034,206.56499,9.8765,962.2901,0.0,71.31258 +2023-10-17 16:00:00,3.420526,5.0921507,195.25517,199.50253,12.5265,962.2953,0.0,63.025894 +2023-10-17 17:00:00,3.8078866,5.0695167,193.67133,194.85866,14.7765,961.74646,0.0,56.169487 +2023-10-17 18:00:00,4.3416586,5.6320515,194.67644,196.50444,16.426498,960.7076,0.0,52.30782 +2023-10-17 19:00:00,4.4922156,5.8523498,196.82149,196.88687,17.3265,959.7249,0.0,50.261627 +2023-10-17 20:00:00,4.4384685,5.8240876,194.34937,195.94547,17.9765,958.69824,0.0,49.414413 +2023-10-17 21:00:00,4.3931766,5.869412,191.82146,193.79951,18.176498,958.35297,0.0,48.96453 +2023-10-17 22:00:00,4.0112343,6.0406957,184.28908,186.65433,17.6265,957.8792,0.0,53.89318 +2023-10-17 23:00:00,3.5510561,7.006426,170.27249,177.54602,15.6765,957.16187,0.0,61.832462 +2023-10-18 00:00:00,4.016217,8.472308,161.11382,168.42484,14.3765,956.1758,0.0,62.375526 +2023-10-18 01:00:00,4.838388,9.512624,161.93944,167.86319,14.6265,955.6507,0.0,58.90409 +2023-10-18 02:00:00,5.4341516,10.1965685,167.24248,172.10838,14.3265,955.3136,0.0,58.62801 +2023-10-18 03:00:00,5.885576,10.667708,170.21767,173.54128,14.2265005,954.82184,0.0,58.603283 +2023-10-18 04:00:00,6.236986,11.002727,167.96942,172.16457,14.1265,954.14056,0.0,56.39251 +2023-10-18 05:00:00,6.7742157,11.7515955,171.51114,174.62909,13.7265005,953.5013,0.0,55.126823 +2023-10-18 06:00:00,7.2249565,12.306503,175.23645,178.13742,13.2765,952.5686,0.0,54.625927 +2023-10-18 07:00:00,6.61211,11.344162,183.46815,185.05716,13.0765,952.34375,0.0,53.81282 +2023-10-18 08:00:00,7.300685,12.332883,180.7848,184.18483,12.7765,951.0583,0.0,52.981285 +2023-10-18 09:00:00,6.4536815,10.989541,192.5288,195.3009,12.7765,950.77386,0.0,53.922615 +2023-10-18 10:00:00,5.515433,9.841239,202.38017,205.26306,12.1765,950.5731,0.0,56.88201 +2023-10-18 11:00:00,4.2059484,8.160882,208.39293,216.02747,11.3265,950.0427,0.0,62.09249 +2023-10-18 12:00:00,4.9365983,9.202717,276.98096,289.0257,11.9265,950.05475,0.3,77.55502 +2023-10-18 13:00:00,6.3906183,10.701869,290.13638,293.6907,11.8765,950.9938,0.8,81.31296 +2023-10-18 14:00:00,5.7567353,9.269843,287.176,290.19443,11.8765,951.56256,0.0,68.79815 +2023-10-18 15:00:00,5.830952,8.459313,275.90604,276.78888,12.8265,951.92053,0.0,62.660522 +2023-10-18 16:00:00,6.618912,9.1268835,274.3322,274.39862,13.8765,952.0107,0.0,61.621204 +2023-10-18 17:00:00,7.334848,9.865597,281.00348,280.51257,14.6765,952.05566,0.0,58.112164 +2023-10-18 18:00:00,6.6940274,9.070832,283.82867,284.03625,15.2265005,951.8669,0.0,53.632637 +2023-10-18 19:00:00,5.9464273,7.937884,289.6539,289.1198,15.2265005,951.67725,0.0,53.07899 +2023-10-18 20:00:00,4.9193497,6.3953104,296.56497,296.96564,14.6765,951.9608,0.0,56.143913 +2023-10-18 21:00:00,4.883646,6.4443774,312.5104,311.85495,14.8765,952.09064,0.0,50.46607 +2023-10-18 22:00:00,5.59017,7.8517513,312.82523,313.4519,14.2765,952.6496,0.0,54.88738 +2023-10-18 23:00:00,4.110961,6.652819,311.05472,312.56332,12.8765,953.16174,0.0,62.24033 +2023-10-19 00:00:00,2.7018511,4.4598207,308.991,312.27362,11.3265,954.1181,0.0,76.934364 +2023-10-19 01:00:00,3.4999998,5.325411,323.13,325.71307,11.3265,954.59204,0.0,80.14391 +2023-10-19 02:00:00,4.1868844,6.360031,319.84406,323.31018,10.8265,955.26044,0.0,85.70421 +2023-10-19 03:00:00,4.9517674,7.5166483,316.63654,319.3161,10.6265,955.793,0.0,88.93118 +2023-10-19 04:00:00,5.6035705,8.850988,325.17545,327.92603,10.6765,956.1812,0.0,85.10954 +2023-10-19 05:00:00,4.8332186,7.725283,335.55606,338.74942,10.6265,956.1721,0.0,80.59395 +2023-10-19 06:00:00,4.382921,7.877182,325.2221,331.15744,8.9265,956.3375,0.0,88.18389 +2023-10-19 07:00:00,4.6690474,8.40238,316.73566,321.7661,8.2265005,956.68304,0.0,92.77796 +2023-10-19 08:00:00,4.5343137,8.5,318.57642,323.13004,7.9765005,956.9215,0.0,95.339935 +2023-10-19 09:00:00,4.110961,7.940403,318.94528,323.70728,7.7765,956.8845,0.0,96.31628 +2023-10-19 10:00:00,4.313931,8.18352,315.9391,321.4495,7.9265003,956.9121,0.0,96.65009 +2023-10-19 11:00:00,3.88973,7.582216,313.95847,318.74307,8.3265,956.7962,0.0,97.6519 +2023-10-19 12:00:00,3.920459,7.224957,307.74686,311.63345,9.4765005,956.62714,0.0,98.66437 +2023-10-19 13:00:00,3.6400552,6.3126855,307.18478,310.50278,10.5765,956.5421,0.0,96.39579 +2023-10-19 14:00:00,4.1880784,6.220129,303.31064,306.50153,11.4765005,956.70416,0.0,92.02904 +2023-10-19 15:00:00,5.5605755,7.683749,307.6943,308.65982,12.4265,957.06354,0.0,85.298004 +2023-10-19 16:00:00,5.59017,7.5690155,312.82523,313.39404,13.3765,957.2323,0.0,78.30298 +2023-10-19 17:00:00,5.879626,7.7233415,311.55252,311.32538,15.3765,956.82513,0.0,65.20044 +2023-10-19 18:00:00,6.155485,8.065978,313.0251,312.99045,16.176498,956.1108,0.0,58.88187 +2023-10-19 19:00:00,5.872819,7.8568444,317.07004,317.5792,16.526499,955.6969,0.1,55.848343 +2023-10-19 20:00:00,6.0605283,8.20061,322.3737,322.43134,16.7265,955.5416,0.0,53.474922 +2023-10-19 21:00:00,5.714018,7.9611554,327.1443,327.308,16.526499,955.602,0.0,53.789436 +2023-10-19 22:00:00,5.60803,8.130191,328.86108,328.06937,16.2265,955.8346,0.0,54.639084 +2023-10-19 23:00:00,3.9812057,7.068239,334.72232,334.8852,15.1265,955.8329,0.0,59.229 +2023-10-20 00:00:00,2.1377556,5.5443664,349.21573,352.7469,12.4265,955.8312,0.0,71.30928 +2023-10-20 01:00:00,2.118962,5.346027,340.70987,352.47626,11.5765,955.7742,0.0,75.41475 +2023-10-20 02:00:00,2.1260293,5.4083266,318.81415,340.55988,11.1765,956.08154,0.0,77.173645 +2023-10-20 03:00:00,2.302173,5.3851647,304.3804,328.67136,10.7765,956.19904,0.0,79.521645 +2023-10-20 04:00:00,2.376973,5.456189,292.24908,318.7154,9.9765005,956.05475,0.0,83.88029 +2023-10-20 05:00:00,2.5079873,5.7999997,293.49857,316.3971,9.5765,955.98206,0.0,85.57254 +2023-10-20 06:00:00,2.2847319,5.5226803,293.1986,317.93573,9.1265,955.8057,0.0,87.30116 +2023-10-20 07:00:00,2.2561028,5.108816,282.80426,310.23627,8.7265005,955.7327,0.0,88.166214 +2023-10-20 08:00:00,2.2022717,4.837354,267.3975,299.74478,8.4765005,955.4976,0.0,88.75162 +2023-10-20 09:00:00,2.5317976,5.2810984,260.9098,288.77814,8.3265,955.5648,0.0,89.350845 +2023-10-20 10:00:00,2.9274564,6.332456,262.1468,285.5726,8.2265005,955.8305,0.0,89.95889 +2023-10-20 11:00:00,3.0413814,7.023532,279.46225,298.0244,8.2765,956.31354,0.0,89.34683 +2023-10-20 12:00:00,2.7018514,6.041523,267.87894,294.44394,7.9765005,956.0691,0.0,89.63081 +2023-10-20 13:00:00,2.8017852,6.315853,267.95465,293.31772,7.8765,956.0506,0.0,88.700745 +2023-10-20 14:00:00,3.4525354,5.700877,259.9921,285.25516,10.2265005,956.57385,0.0,81.09202 +2023-10-20 15:00:00,3.354102,5.813777,243.43501,273.9451,13.0265,957.17017,0.0,76.16986 +2023-10-20 16:00:00,2.6000001,4.6389656,247.3801,262.5687,15.9765005,957.68854,0.0,63.382427 +2023-10-20 17:00:00,2.640076,3.324154,245.37645,248.83867,18.3265,957.52466,0.0,46.551895 +2023-10-20 18:00:00,2.8017852,3.522783,235.17543,235.40765,19.6265,957.17664,0.0,38.96803 +2023-10-20 19:00:00,3.4713109,4.4598207,221.49637,222.27362,20.276499,956.5274,0.0,36.530087 +2023-10-20 20:00:00,4.1880784,5.5470715,213.31064,213.9766,20.426498,955.4134,0.0,35.81684 +2023-10-20 21:00:00,4.3829217,5.948109,207.1496,206.99576,20.2265,954.9052,0.0,36.64312 +2023-10-20 22:00:00,3.794733,6.332456,198.43504,201.29742,19.3265,954.3733,0.0,42.545742 +2023-10-20 23:00:00,3.6055512,7.3539104,199.44012,202.38017,17.026499,953.5061,0.0,50.18021 +2023-10-21 00:00:00,3.0594118,7.093659,191.30989,201.5015,15.6265,952.97986,0.0,56.9684 +2023-10-21 01:00:00,4.0261645,8.357033,194.38142,201.03758,15.4265,952.75555,0.0,58.298225 +2023-10-21 02:00:00,4.5343137,8.955445,228.57643,240.57263,14.7765,952.73694,0.0,63.540455 +2023-10-21 03:00:00,5.1662364,10.2459755,284.57425,294.81415,15.2765,953.10864,0.0,63.653507 +2023-10-21 04:00:00,5.964059,10.870602,304.75598,309.40063,15.9765005,953.4199,0.0,54.949757 +2023-10-21 05:00:00,6.3702435,11.38464,312.45514,315.35583,15.6765,953.55743,0.0,52.107506 +2023-10-21 06:00:00,6.506919,11.458621,313.7547,316.41437,15.0265,953.72906,0.0,49.460293 +2023-10-21 07:00:00,7.0035706,11.985408,316.73566,319.39877,14.2765,954.26166,0.0,47.2135 +2023-10-21 08:00:00,7.0092793,11.997083,317.89133,320.07217,13.2765,954.55963,0.0,46.1018 +2023-10-21 09:00:00,7.247068,12.261321,320.59937,322.28888,12.4265,955.26245,0.0,46.355778 +2023-10-21 10:00:00,7.060453,11.9402685,322.4808,323.5139,11.6765,956.0763,0.0,48.17991 +2023-10-21 11:00:00,6.5,11.125196,323.13,324.88132,10.9265,956.51056,0.0,50.998203 +2023-10-21 12:00:00,6.4202805,11.125196,322.59457,324.88132,9.7765,957.4397,0.0,54.867493 +2023-10-21 13:00:00,6.236986,10.823123,318.9006,321.75354,9.3265,958.021,0.0,57.574387 +2023-10-21 14:00:00,6.438167,10.358571,316.88815,319.69876,10.1265,958.9246,0.0,57.573086 +2023-10-21 15:00:00,6.652819,9.708244,317.43668,318.75864,11.4765005,959.83185,0.0,55.315487 +2023-10-21 16:00:00,7.44043,10.241582,323.74606,324.13705,12.6765,960.33124,0.0,52.767887 +2023-10-21 17:00:00,7.4094534,10.049875,328.24057,328.84076,13.8765,960.355,0.0,50.902897 +2023-10-21 18:00:00,7.940403,10.855874,328.91257,328.9458,14.7765,960.4188,0.0,47.520985 +2023-10-21 19:00:00,8.062258,10.840664,330.25522,330.12408,15.0765,960.4717,0.0,45.960396 +2023-10-21 20:00:00,8.854942,12.119819,333.14566,333.01218,15.5765,960.46436,0.0,42.965332 +2023-10-21 21:00:00,7.738863,10.783784,334.7595,335.3362,15.0765,961.0407,0.0,45.960396 +2023-10-21 22:00:00,6.9641943,9.936801,338.9624,339.3764,14.6265,961.43555,0.0,45.509632 +2023-10-21 23:00:00,4.838388,8.065358,341.93942,342.68826,13.2765,961.5757,0.0,50.203957 +2023-10-22 00:00:00,3.1016126,6.7,358.15244,360.0,10.5265,962.78766,0.0,57.266613 +2023-10-22 01:00:00,2.7,6.239391,360.0,6.441515,9.5265,963.36304,0.0,61.66465 +2023-10-22 02:00:00,2.3194828,5.9008474,352.5687,0.97099817,8.6265,963.67145,0.0,66.69324 +2023-10-22 03:00:00,2.4515302,6.0133185,348.23172,356.186,8.0265,964.03436,0.0,69.95599 +2023-10-22 04:00:00,1.9416487,5.3009434,348.11136,358.9191,7.0265,964.13257,0.0,75.96322 +2023-10-22 05:00:00,2.3345234,4.7265205,350.13425,6.0723705,5.9765,963.8414,0.0,82.52322 +2023-10-22 06:00:00,2.4758837,3.5128336,313.36346,355.10098,5.1765003,964.1644,0.0,86.61349 +2023-10-22 07:00:00,1.868154,2.6832817,285.52417,333.43503,5.0265,964.3253,0.0,87.52204 +2023-10-22 08:00:00,1.8248286,2.236068,279.46225,333.43503,4.6765003,964.2591,0.0,88.73716 +2023-10-22 09:00:00,1.5132746,1.6278821,262.40546,312.5104,4.4765,964.4102,0.0,89.66782 +2023-10-22 10:00:00,1.4866068,1.2369317,250.34608,284.03625,4.0265,964.51404,0.0,91.56105 +2023-10-22 11:00:00,1.4866068,0.9433981,227.72638,237.99466,3.5765,964.33325,0.0,92.84223 +2023-10-22 12:00:00,1.2206556,1.3341664,214.9921,167.00539,3.2765,964.7491,0.0,93.82159 +2023-10-22 13:00:00,1.5033296,1.9798989,176.186,135.0001,3.4764998,964.6929,0.0,91.19956 +2023-10-22 14:00:00,2.3706539,3.4713109,152.35411,138.50363,6.6265,965.4785,0.0,84.36363 +2023-10-22 15:00:00,2.3430748,4.20119,140.19447,141.76614,9.6765,965.85394,0.0,74.57232 +2023-10-22 16:00:00,3.613862,4.7296934,165.5792,166.55138,11.4765005,965.9925,0.0,67.07193 +2023-10-22 17:00:00,4.318565,5.622277,174.68555,174.89792,12.8265,965.5722,0.0,59.072487 +2023-10-22 18:00:00,4.4011364,5.7008767,178.69807,178.99493,13.5765,965.0426,0.0,54.89586 +2023-10-22 19:00:00,4.1,5.3,180.0,180.0,14.0765,964.27814,0.0,53.32827 +2023-10-22 20:00:00,3.8470767,4.9497476,171.02745,171.86998,14.6265,963.3323,0.0,51.285873 +2023-10-22 21:00:00,4.0521603,5.2886667,164.24876,164.64981,14.5765,962.6596,0.0,51.09356 +2023-10-22 22:00:00,4.4384685,6.258594,165.65063,167.074,14.0265,962.18317,0.0,53.501358 +2023-10-22 23:00:00,3.7121422,6.6309876,152.74475,156.91484,12.9265,961.41846,0.0,58.483433 +2023-10-23 00:00:00,3.7443287,7.479305,145.88548,150.35023,12.8265,961.3061,0.0,59.2784 +2023-10-23 01:00:00,5.3413477,9.347727,141.84273,145.45984,12.8265,960.64246,0.0,59.89997 +2023-10-23 02:00:00,6.105735,10.444616,148.39255,149.50671,12.6265,960.32214,0.0,60.689598 +2023-10-23 03:00:00,5.7384667,9.693296,157.4569,158.19853,12.0765,960.224,0.0,64.91706 +2023-10-23 04:00:00,6.0,9.9,180.0,180.0,11.1765,961.10455,0.0,75.34719 +2023-10-23 05:00:00,5.5785303,9.729337,165.4655,167.53508,10.5265,960.60815,0.8,85.38257 +2023-10-23 06:00:00,6.103278,10.288342,161.86183,164.20753,10.3265,959.90826,1.8,81.1055 +2023-10-23 07:00:00,6.670832,11.161541,156.12471,157.3406,10.2765,959.42535,0.0,77.829285 +2023-10-23 08:00:00,6.1326995,10.36195,155.94266,157.8905,10.0765,959.10504,0.0,74.900665 +2023-10-23 09:00:00,5.6435804,9.525755,150.25522,153.16603,9.9265,958.50916,0.0,73.333534 +2023-10-23 10:00:00,5.5946403,9.708244,151.14444,155.01878,9.3765,957.93536,0.0,74.26099 +2023-10-23 11:00:00,5.4230986,9.563472,157.21756,158.53229,9.0265,957.6823,0.0,75.504 +2023-10-23 12:00:00,4.8754487,8.955445,154.48618,156.29735,8.9265,957.0007,0.0,85.21002 +2023-10-23 13:00:00,4.295346,8.276473,167.90526,168.14702,8.7265005,956.58527,0.0,86.3686 +2023-10-23 14:00:00,3.3615472,6.9857,157.249,166.75948,9.8265,956.97504,0.0,83.29088 +2023-10-23 15:00:00,2.996665,4.215448,154.2901,157.69374,11.4765005,957.27277,0.0,77.221146 +2023-10-23 16:00:00,3.0364454,3.9293766,162.75845,165.2564,13.2265005,957.20557,0.0,72.1921 +2023-10-23 17:00:00,2.745906,3.535534,169.50858,171.86998,14.9765005,956.47076,0.0,67.80615 +2023-10-23 18:00:00,2.3086793,2.915476,184.96965,185.90605,16.426498,955.8694,0.0,63.69761 +2023-10-23 19:00:00,2.0223749,2.630589,188.53069,188.74608,17.526499,955.67957,0.0,61.0242 +2023-10-23 20:00:00,2.0880613,2.624881,196.69933,197.74477,18.2265,955.04047,0.0,59.976818 +2023-10-23 21:00:00,2.0248456,2.657066,200.22495,199.79897,18.526499,955.0915,0.0,60.048256 +2023-10-23 22:00:00,1.3,1.7029387,180.0,183.3664,18.176498,954.84186,0.0,62.202488 +2023-10-23 23:00:00,1.8357561,3.2893767,150.64235,160.46326,15.4765005,954.5661,0.0,77.584465 +2023-10-24 00:00:00,2.0808651,4.6669044,125.21768,135.0001,13.6765,955.3889,0.0,84.86633 +2023-10-24 01:00:00,2.2825425,5.2009616,118.8107,127.971664,13.2265005,955.49896,0.0,87.67978 +2023-10-24 02:00:00,2.236068,5.140039,116.56499,127.09292,12.5765,955.3838,0.0,89.09044 +2023-10-24 03:00:00,2.3259406,5.2430906,115.46331,124.902565,12.1765,954.9336,0.0,90.25265 +2023-10-24 04:00:00,2.7856774,5.9506307,111.03758,114.84236,11.8265,954.68146,0.0,91.43884 +2023-10-24 05:00:00,2.408319,5.80517,85.23644,100.92277,11.8765,953.6478,0.0,92.35993 +2023-10-24 06:00:00,2.640076,5.800862,155.37645,144.11777,11.5765,955.01587,0.0,93.27057 +2023-10-24 07:00:00,1.5811387,3.6055512,124.69522,160.55988,12.9265,954.4977,0.3,91.20737 +2023-10-24 08:00:00,2.7313,6.129437,156.2505,174.3825,12.7765,954.75555,0.0,93.33155 +2023-10-24 09:00:00,3.5510561,7.1028166,170.27249,178.38649,13.9765005,954.4935,0.0,94.31153 +2023-10-24 10:00:00,2.6000001,4.1785164,202.6199,201.03758,13.0765,954.8088,0.0,96.46462 +2023-10-24 11:00:00,1.8384775,2.996665,315.0001,295.7099,12.3765,955.443,0.0,98.69434 +2023-10-24 12:00:00,3.1622775,5.188449,325.30478,332.44727,11.2265005,955.90106,0.0,98.68257 +2023-10-24 13:00:00,3.0413814,5.60803,350.53775,356.93356,10.6265,957.025,0.0,97.368225 +2023-10-24 14:00:00,2.624881,4.816638,342.25522,355.23645,11.2765,957.9949,1.0,96.09507 +2023-10-24 15:00:00,3.5510561,4.5122056,9.727519,12.804273,12.2765,957.6054,0.0,91.467766 +2023-10-24 16:00:00,2.7658634,3.49285,12.528798,13.240531,14.2765,958.2445,0.0,84.09476 +2023-10-24 17:00:00,1.6763055,2.0615528,72.64589,75.96373,14.8765,957.97064,0.2,81.70529 +2023-10-24 18:00:00,1.421267,1.6970563,39.289394,44.999897,15.4265,957.6877,0.2,82.585175 +2023-10-24 19:00:00,3.0016663,3.7,358.09088,360.0,15.926499,957.5849,0.7,82.10795 +2023-10-24 20:00:00,3.4525354,4.609772,10.007925,12.528798,14.6265,956.69385,5.2,85.81157 +2023-10-24 21:00:00,4.2579336,6.4629717,350.53775,351.99536,13.9765005,957.2434,2.9,91.27603 +2023-10-24 22:00:00,3.956008,6.103278,16.144413,18.138186,13.9765005,957.1486,2.8,89.49632 +2023-10-24 23:00:00,3.0364454,5.249762,17.241547,17.744766,13.7765,957.4925,0.0,91.263016 +2023-10-25 00:00:00,3.1144822,5.5865912,42.397392,44.27486,13.8265,958.5443,0.4,93.3842 +2023-10-25 01:00:00,3.5846896,5.905929,22.988754,28.30066,12.3265,959.4155,1.5,95.80977 +2023-10-25 02:00:00,3.6674242,6.0207973,25.866312,32.106224,12.0265,959.36176,1.7,96.43595 +2023-10-25 03:00:00,3.5014284,5.9682493,1.6365454,8.673101,11.5265,960.4096,4.7,97.38657 +2023-10-25 04:00:00,3.4132097,5.7008767,354.95764,1.0050671,11.5265,960.88354,0.2,96.7427 +2023-10-25 05:00:00,3.6496572,5.9076223,350.53775,357.0892,11.3765,960.8564,0.1,95.460976 +2023-10-25 06:00:00,4.0718546,6.9570107,335.32315,341.56494,10.7765,961.31647,0.0,96.40137 +2023-10-25 07:00:00,4.651881,7.5769386,334.53668,337.49643,10.6765,961.96185,0.0,95.7562 +2023-10-25 08:00:00,4.14367,6.661081,351.67444,352.23492,10.5765,962.1331,0.0,95.43293 +2023-10-25 09:00:00,2.7892652,4.4922156,14.534496,16.82149,10.4765005,961.54663,0.0,95.74965 +2023-10-25 10:00:00,2.7313,4.9030604,336.2505,348.23172,9.6765,962.15875,0.0,98.00561 +2023-10-25 11:00:00,3.992493,6.6407833,337.93204,341.56494,9.6765,962.91675,0.0,97.67664 +2023-10-25 12:00:00,3.3615472,5.345091,337.249,342.58194,9.6765,963.3905,0.0,95.40104 +2023-10-25 13:00:00,2.9017239,5.1478148,358.0251,7.8152027,8.8765,963.528,0.0,97.99304 +2023-10-25 14:00:00,3.3376637,4.632494,8.615564,13.736293,9.1265,964.4268,0.0,95.3814 +2023-10-25 15:00:00,3.405877,4.3931766,40.236294,41.30852,10.1765,964.33484,0.0,88.29357 +2023-10-25 16:00:00,2.1540658,2.657066,68.19853,70.20104,11.1265,964.31775,0.0,83.447235 +2023-10-25 17:00:00,1.7262677,2.109502,79.99209,84.55976,12.0265,964.0065,0.0,80.51339 +2023-10-25 18:00:00,1.7888545,2.0615528,63.435013,67.16631,13.1765,963.5491,0.0,77.22741 +2023-10-25 19:00:00,2.184033,2.5495098,74.054535,78.6901,13.8765,963.01,0.0,75.03894 +2023-10-25 20:00:00,2.8635643,3.640055,102.09474,105.945465,14.2765,962.32214,0.0,73.61152 +2023-10-25 21:00:00,3.3015149,4.360046,125.13428,126.60716,14.2265005,962.2184,0.0,74.846985 +2023-10-25 22:00:00,2.9529645,4.0816665,118.30067,120.963684,14.1765,961.83026,0.0,75.34152 +2023-10-25 23:00:00,2.6832817,4.3908997,116.56499,120.0685,13.7265005,961.75055,0.0,78.35555 +2023-10-26 00:00:00,3.1016126,5.3225937,110.77233,115.60214,13.5265,961.24084,0.0,80.44938 +2023-10-26 01:00:00,3.5171013,6.1684685,104.82652,109.90384,11.7765,961.11774,0.0,87.8416 +2023-10-26 02:00:00,3.9357338,6.860029,117.216034,120.67721,12.0265,960.59406,0.0,88.45319 +2023-10-26 03:00:00,4.110961,7.2180333,131.05472,132.75424,12.4265,960.3814,0.0,89.07831 +2023-10-26 04:00:00,4.318565,7.5690155,132.18437,136.60596,12.7765,959.8749,1.7,91.49971 +2023-10-26 05:00:00,2.758623,5.8249464,136.46873,145.49142,12.9265,959.33276,2.3,94.88851 +2023-10-26 06:00:00,3.9849718,7.4732857,162.47433,167.63751,13.4265,958.28406,0.2,95.219376 +2023-10-26 07:00:00,3.8327534,7.510659,172.50424,176.94717,14.0265,957.53674,1.2,95.55209 +2023-10-26 08:00:00,2.7294688,6.0016665,188.42688,190.56096,14.2765,957.10657,1.1,96.183945 +2023-10-26 09:00:00,2.236068,5.1078367,206.56499,203.05133,14.2765,957.0117,0.5,96.183945 +2023-10-26 10:00:00,1.1661904,3.482815,239.0363,219.17365,14.0765,956.7869,0.8,97.12133 +2023-10-26 11:00:00,1.7029386,2.745906,319.7637,303.11136,13.6765,956.8112,0.5,98.70745 +2023-10-26 12:00:00,1.8973665,3.1780498,341.56494,335.85446,13.3765,956.9479,0.3,98.38288 +2023-10-26 13:00:00,1.7029387,3.8013155,3.3664,1.5074003,12.5765,956.9006,0.0,99.672676 +2023-10-26 14:00:00,2.6172504,4.3737855,6.581848,10.539137,13.2265005,957.016,0.0,98.381 +2023-10-26 15:00:00,2.6019223,3.4132097,2.2025495,5.0423646,13.8265,957.2168,0.0,94.61379 +2023-10-26 16:00:00,2.6076808,3.224903,4.398633,7.12493,14.8265,957.39276,0.0,89.561935 +2023-10-26 17:00:00,2.641969,3.3615475,29.475794,30.379045,15.1265,956.6865,0.1,87.84966 +2023-10-26 18:00:00,1.7888545,2.147091,26.564985,27.758451,16.6265,956.37823,0.1,81.132416 +2023-10-26 19:00:00,1.6124516,1.9646883,7.12493,14.743609,16.5765,956.0852,0.4,81.92237 +2023-10-26 20:00:00,2.4738634,3.0413814,345.9637,350.53775,16.3265,956.1367,0.1,82.69536 +2023-10-26 21:00:00,4.62277,6.2008066,321.1466,322.206,15.0265,956.4795,0.1,85.291664 +2023-10-26 22:00:00,5.021952,7.323933,324.72748,325.0079,13.0765,956.6101,0.4,94.58302 +2023-10-26 23:00:00,5.10392,7.6275816,325.37576,325.68484,11.9765005,957.17285,0.2,94.224434 +2023-10-27 00:00:00,5.4708314,8.112336,329.2159,329.64197,10.1765,957.7019,0.0,93.828094 +2023-10-27 01:00:00,4.7885275,7.023532,331.29416,331.9756,9.7765,958.2924,0.0,92.54977 +2023-10-27 02:00:00,3.8078864,5.456189,330.06857,333.90463,9.1265,958.3636,0.0,92.1987 +2023-10-27 03:00:00,3.0610456,4.2201896,321.63248,323.67307,8.5265,958.9168,0.0,92.794586 +2023-10-27 04:00:00,4.0360875,5.658622,311.98712,313.56796,8.2765,959.24994,0.0,91.20569 +2023-10-27 05:00:00,4.5,6.481512,306.86996,308.10764,7.6765003,959.3288,0.2,90.22764 +2023-10-27 06:00:00,5.3488317,7.725283,290.80685,291.25058,7.2765,959.82294,0.5,94.01182 +2023-10-27 07:00:00,5.6435804,8.335466,299.74478,300.25635,6.9765,960.3355,0.8,93.35102 +2023-10-27 08:00:00,6.931811,9.976472,296.56497,298.10617,6.3265,960.97205,0.1,87.032745 +2023-10-27 09:00:00,7.8714676,11.676472,297.21603,298.10126,4.4765,962.0439,0.0,85.01663 +2023-10-27 10:00:00,8.321658,11.981652,302.7352,303.42484,3.5265,963.0935,0.0,79.00413 +2023-10-27 11:00:00,8.683893,12.543125,305.15424,305.59085,2.5765,964.2362,0.0,72.48397 +2023-10-27 12:00:00,8.683317,12.525175,308.45374,308.51697,1.8265,965.2267,0.0,69.96259 +2023-10-27 13:00:00,8.464632,12.073938,308.76553,309.62326,0.6765,965.75964,0.0,68.42585 +2023-10-27 14:00:00,8.241965,11.74138,305.6186,305.99158,0.026500002,966.767,0.0,70.115524 +2023-10-27 15:00:00,8.381527,11.660618,305.77615,306.28033,0.47650003,967.8013,0.0,67.10462 +2023-10-27 16:00:00,8.2927685,11.315917,303.6901,303.83054,0.8765,968.5415,0.0,63.73367 +2023-10-27 17:00:00,8.381527,11.241442,305.77615,305.9525,1.6765,969.07635,0.0,59.27227 +2023-10-27 18:00:00,8.121576,10.823123,307.99878,308.24646,2.0765,969.0593,0.0,56.51975 +2023-10-27 19:00:00,7.9511003,10.716809,309.89777,310.0793,2.9264998,969.22406,0.0,52.603733 +2023-10-27 20:00:00,7.5166483,10.0657835,310.6839,310.97165,3.2765,969.4805,0.0,50.34958 +2023-10-27 21:00:00,6.9310894,9.265528,313.83093,313.6882,2.6265,969.7338,0.0,49.58902 +2023-10-27 22:00:00,6.0811186,8.343861,315.0001,315.0001,1.9265,969.9762,0.0,49.386353 +2023-10-27 23:00:00,5.1623635,7.638063,315.78473,316.06082,0.72650003,970.30945,0.0,51.78204 +2023-10-28 00:00:00,4.609772,7.528612,319.39877,320.38934,-0.1735,970.98334,0.0,54.414547 +2023-10-28 01:00:00,5.448853,7.6419888,312.7688,312.8789,-2.4235,972.8975,0.0,61.240494 +2023-10-28 02:00:00,5.23259,7.35391,315.0001,315.0001,-2.7735002,973.1104,0.0,60.20017 +2023-10-28 03:00:00,5.1623635,7.35527,315.78473,316.10162,-3.2235,973.49207,0.0,60.558956 +2023-10-28 04:00:00,4.1773195,6.8593006,312.08908,314.40942,-3.7735002,974.04175,0.0,63.595657 +2023-10-28 05:00:00,3.8948684,6.6483083,311.87778,316.2188,-4.0735,974.0751,0.0,66.071556 +2023-10-28 06:00:00,3.6124785,6.2625875,318.36655,321.48303,-4.1735,973.8657,0.0,67.357445 +2023-10-28 07:00:00,3.5805027,6.1587334,324.09018,327.6002,-4.2735,973.9396,0.0,67.86525 +2023-10-28 08:00:00,3.1400635,5.6302752,322.76508,326.59216,-4.4735,974.0878,0.0,69.16427 +2023-10-28 09:00:00,2.6400757,5.0249376,307.30402,317.41956,-4.6735,974.70807,0.0,70.76646 +2023-10-28 10:00:00,2.657066,4.6872168,289.79895,303.6901,-4.3234997,975.2521,0.0,69.19664 +2023-10-28 11:00:00,4.1231055,5.9816384,320.90613,321.78894,-4.1235,975.00977,0.0,65.80095 +2023-10-28 12:00:00,4.4418464,6.2769423,328.8151,329.3494,-3.8235002,975.3543,0.0,63.583473 +2023-10-28 13:00:00,3.5735137,4.9335585,342.072,342.29947,-4.5734997,975.6733,0.0,66.47733 +2023-10-28 14:00:00,3.482815,4.6400433,320.82635,322.88306,-4.1735,976.5114,0.0,65.78929 +2023-10-28 15:00:00,3.482815,4.482187,320.82635,321.34018,-3.4735,976.93774,0.0,62.676605 +2023-10-28 16:00:00,3.4,4.294182,331.9276,332.24155,-2.6735,976.34436,0.0,59.990215 +2023-10-28 17:00:00,3.324154,4.215448,338.83865,337.69376,-1.7735,976.0531,0.0,58.83019 +2023-10-28 18:00:00,2.5806975,3.3015149,324.46225,324.86572,-1.4735,976.01886,0.0,59.36908 +2023-10-28 19:00:00,2.624881,3.2649655,319.63553,319.9698,-1.5735,975.148,0.2,62.414642 +2023-10-28 20:00:00,2.2203603,2.7202942,305.83774,306.02747,-0.8735,974.8154,0.2,62.106915 +2023-10-28 21:00:00,2.1400933,2.6400757,307.40543,307.30402,-0.8235,974.258,0.2,63.569027 +2023-10-28 22:00:00,2.2627418,2.828427,315.0001,315.0001,-0.8735,973.8699,0.2,66.29386 +2023-10-28 23:00:00,2.7658632,3.6124785,319.39877,318.36655,-1.1235,973.4418,0.2,69.345726 +2023-10-29 00:00:00,2.9410884,3.8600519,324.6887,323.42688,-1.2235,973.51654,0.1,70.38985 +2023-10-29 01:00:00,2.4351592,3.231099,340.8209,338.19852,-2.2235,974.6392,0.0,73.485 +2023-10-29 02:00:00,3.0675724,4.016217,340.9743,341.1138,-2.0735002,974.2913,0.0,72.95407 +2023-10-29 03:00:00,3.324154,4.4944406,338.83865,339.14545,-2.0235,974.3015,0.0,72.131996 +2023-10-29 04:00:00,4.118252,5.5470715,330.9455,332.04913,-2.0735002,974.2913,0.0,68.613716 +2023-10-29 05:00:00,3.7215588,5.420332,329.30035,330.12408,-2.6735,974.1705,0.0,66.91096 +2023-10-29 06:00:00,2.7658632,5.161395,319.39877,324.46225,-3.7235,973.76843,0.0,72.6336 +2023-10-29 07:00:00,2.6907248,5.0990195,311.98712,318.1799,-4.0235,973.99084,0.0,73.71022 +2023-10-29 08:00:00,2.059126,5.3814497,299.0545,318.01288,-3.7735002,974.1362,0.0,72.62382 +2023-10-29 09:00:00,2.418677,4.6010866,299.74478,312.3574,-3.6735,974.1565,0.0,71.24879 +2023-10-29 10:00:00,2.7658632,4.8795495,310.60123,314.16977,-3.7735002,973.94714,0.0,70.402664 +2023-10-29 11:00:00,2.6400757,4.4598207,307.30402,312.27362,-3.7235,973.95734,0.0,69.596115 +2023-10-29 12:00:00,2.147091,3.6891732,297.75842,302.82855,-3.5735002,973.98785,0.0,68.28623 +2023-10-29 13:00:00,1.6643317,3.3301651,302.7352,311.3477,-4.2235,973.57214,0.0,68.94796 +2023-10-29 14:00:00,2.2472203,3.2202485,290.85452,295.76926,-3.5735002,974.08246,0.0,63.644344 +2023-10-29 15:00:00,2.376973,3.0463092,292.24908,293.1986,-2.2235,974.3558,0.0,57.121246 +2023-10-29 16:00:00,2.376973,2.9120438,284.6209,285.94547,-0.8235,974.35254,0.0,48.58101 +2023-10-29 17:00:00,2.4186773,3.026549,277.1249,277.59454,0.22649999,973.70996,0.0,41.90636 +2023-10-29 18:00:00,2.8071337,3.4058774,265.91446,266.6336,1.1765,973.3299,0.0,36.266823 +2023-10-29 19:00:00,3.5014284,4.4045434,268.36346,267.3975,1.7765,972.5959,0.0,33.50449 +2023-10-29 20:00:00,4.428318,5.6435804,276.48297,277.1249,2.1764998,972.01154,0.0,32.169785 +2023-10-29 21:00:00,5.508176,7.376313,285.80258,285.73206,2.5765,971.7109,0.0,30.641653 +2023-10-29 22:00:00,5.664804,7.8549347,290.6745,291.66602,1.9764999,971.2159,0.0,33.162853 +2023-10-29 23:00:00,4.7853947,7.7369246,296.02954,296.89615,1.0765,971.04,0.0,37.41859 +2023-10-30 00:00:00,5.0159745,8.095678,293.49857,295.61545,0.47650003,971.48975,0.0,39.071854 +2023-10-30 01:00:00,5.3814497,8.29759,318.01288,319.39877,-1.0235,972.51636,0.0,50.478397 +2023-10-30 02:00:00,4.62277,7.840918,321.1466,322.25314,-2.6735,972.46924,0.0,58.59299 +2023-10-30 03:00:00,4.7423625,8.2328615,317.5638,319.92715,-3.5735002,972.665,0.0,64.39791 +2023-10-30 04:00:00,4.384062,7.7897367,315.0001,318.12222,-4.0735,973.03577,0.0,70.34001 +2023-10-30 05:00:00,3.764306,6.438167,309.61066,313.11182,-3.6735,973.21155,0.0,71.52579 +2023-10-30 06:00:00,3.3120992,6.074537,298.88647,302.90524,-4.0235,973.04596,0.0,75.15177 +2023-10-30 07:00:00,3.757659,6.2177167,295.20108,297.80136,-3.6735,972.83356,0.0,75.7974 +2023-10-30 08:00:00,3.9446166,6.2128897,300.46545,303.17853,-3.1735,972.6517,0.0,70.255 +2023-10-30 09:00:00,4.304649,6.4899926,300.7354,303.6901,-3.0235002,972.3984,0.0,64.02745 +2023-10-30 10:00:00,4.6957426,6.8883963,296.56497,297.68097,-3.1235,972.2836,0.0,63.25664 +2023-10-30 11:00:00,4.4271884,6.7779055,288.43503,291.6445,-4.2235,972.0604,0.0,68.94796 +2023-10-30 12:00:00,3.7013512,6.747592,268.45187,276.80896,-5.9235,971.80585,0.0,72.48358 +2023-10-30 13:00:00,3.8999999,7.0213957,247.3801,259.33026,-6.3234997,971.43964,0.0,71.54842 +2023-10-30 14:00:00,4.5,8.792042,233.13002,250.74062,-5.2235,971.47754,0.0,64.76726 +2023-10-30 15:00:00,5.4037023,7.800641,231.009,233.86453,-3.5235002,971.44666,0.0,57.448963 +2023-10-30 16:00:00,6.140033,8.381527,232.94339,234.22383,-1.9235,970.82404,0.0,56.090866 +2023-10-30 17:00:00,6.6610813,9.044335,234.16226,234.90411,-0.3235,969.91315,0.0,52.9098 +2023-10-30 18:00:00,7.080254,9.544108,233.61555,234.81117,0.97650003,969.0341,0.0,49.301373 +2023-10-30 19:00:00,7.451845,10.026465,229.89915,231.07245,1.8765,967.60156,0.0,45.86285 +2023-10-30 20:00:00,7.939773,10.934349,229.08571,230.19447,2.4764998,966.20386,0.0,43.432915 +2023-10-30 21:00:00,8.156592,11.574541,229.47498,230.25786,2.5765,965.08777,0.0,44.66345 +2023-10-30 22:00:00,7.5690155,11.402192,226.60596,228.19963,2.1764998,964.2536,0.0,48.140186 +2023-10-30 23:00:00,7.582216,11.955333,221.25691,223.30539,1.5265,963.2764,0.0,50.03931 +2023-10-31 00:00:00,7.3600273,12.151132,216.7143,219.32257,0.6265,962.34503,0.0,52.766983 +2023-10-31 01:00:00,7.5802374,12.149486,233.58353,235.39426,1.9265,962.0294,0.0,50.933723 +2023-10-31 02:00:00,8.802272,13.261975,291.318,293.08514,1.6265,962.9176,0.2,60.622467 +2023-10-31 03:00:00,9.170605,13.551752,295.16782,295.80865,-0.8735,963.9421,0.0,55.504997 +2023-10-31 04:00:00,8.586617,13.194696,296.26657,297.53598,-2.7235,964.51984,0.0,60.21306 +2023-10-31 05:00:00,9.7652445,14.580123,304.9921,306.6342,-2.2735002,964.79865,0.0,67.00128 +2023-10-31 06:00:00,10.716809,15.804112,310.0793,311.1517,-2.7735002,965.45483,0.1,65.85751 +2023-10-31 07:00:00,11.269872,16.293558,311.04236,311.51663,-3.3735,966.185,0.0,62.455624 +2023-10-31 08:00:00,11.531261,16.47938,313.24304,313.77075,-3.8235002,967.417,0.0,58.752018 +2023-10-31 09:00:00,10.186265,15.065522,313.4089,313.65533,-4.3234997,968.0714,0.0,62.465317 +2023-10-31 10:00:00,9.976472,14.650938,317.0309,317.4896,-4.4735,968.79694,0.0,62.427868 +2023-10-31 11:00:00,9.183136,13.868309,308.36752,308.8534,-4.9235,969.36646,0.0,65.87374 +2023-10-31 12:00:00,11.125196,15.837298,324.88132,325.80817,-4.9235,970.5002,0.0,66.65943 +2023-10-31 13:00:00,9.5692215,13.923003,325.6456,326.42404,-5.1735,971.1101,0.0,69.83324 +2023-10-31 14:00:00,8.324061,12.340584,321.34018,322.57288,-4.3234997,972.3231,0.0,69.19664 +2023-10-31 15:00:00,10.423532,14.582523,331.95993,332.20496,-3.7235,973.48486,0.0,66.41196 +2023-10-31 16:00:00,9.489468,12.976902,331.00415,331.4601,-2.9235,974.40344,0.0,64.5532 +2023-10-31 17:00:00,8.335466,11.250777,329.74365,329.56036,-2.2235,975.0174,0.0,62.740036 +2023-10-31 18:00:00,7.738863,10.430724,327.13132,327.52884,-1.5735,975.33704,0.0,59.806675 +2023-10-31 19:00:00,7.156116,9.541488,326.97614,326.97614,-0.7235,975.4126,0.0,56.637123 +2023-10-31 20:00:00,6.296825,8.321658,327.31946,327.26477,-0.6235,975.1491,0.0,56.22561 +2023-10-31 21:00:00,5.3823786,7.184706,324.8335,325.2039,-0.5735,975.159,0.0,55.587208 +2023-10-31 22:00:00,4.4598207,6.0207973,317.72638,318.36655,-1.0235,975.16376,0.0,55.89842 +2023-10-31 23:00:00,2.6925824,5.481788,301.32864,308.33337,-2.7235,974.7274,0.0,63.60187 +2023-11-01 00:00:00,1.8867962,4.6669044,302.00534,315.0001,-4.3735,974.48615,0.0,71.66286 +2023-11-01 01:00:00,1.4764823,3.5468295,298.30066,319.574,-5.0734997,975.0983,0.0,75.54799 +2023-11-01 02:00:00,1.3,2.2627418,270.0,315.0001,-4.8735,974.856,0.0,77.36841 +2023-11-01 03:00:00,0.98994946,1.5297059,224.9999,258.6901,-4.6735,974.51917,0.0,75.61964 +2023-11-01 04:00:00,1.9697715,3.4409301,203.9625,215.53777,-4.6235,974.1514,0.0,75.92295 +2023-11-01 05:00:00,2.751363,5.1971145,199.09358,210.01828,-4.4735,973.70984,0.0,73.62465 +2023-11-01 06:00:00,3.2695565,6.5,203.42871,210.51016,-4.6735,972.9131,0.0,71.88271 +2023-11-01 07:00:00,3.939543,7.7025967,203.9625,209.56026,-4.9235,972.20056,0.0,69.33909 +2023-11-01 08:00:00,4.531004,8.364807,202.03629,207.79034,-4.8735,971.644,0.0,66.146324 +2023-11-01 09:00:00,5.2924476,9.347192,202.20352,206.01672,-4.7735,970.814,0.0,62.352833 +2023-11-01 10:00:00,5.8309517,10.017983,202.1664,206.05344,-4.6735,969.98425,0.0,60.18421 +2023-11-01 11:00:00,6.332456,10.742439,201.29742,204.17911,-4.5235,969.16473,0.0,57.63725 +2023-11-01 12:00:00,6.8949256,11.438969,199.48622,202.08049,-4.3735,968.53375,0.0,54.971657 +2023-11-01 13:00:00,7.242237,11.903782,197.68448,201.17581,-3.5735002,967.65656,0.0,52.189648 +2023-11-01 14:00:00,6.926038,13.723337,197.6502,202.26663,-2.5235002,967.2063,0.0,47.50013 +2023-11-01 15:00:00,7.937884,11.645599,199.11981,200.61371,-1.0735,966.9283,0.0,41.006634 +2023-11-01 16:00:00,7.3736014,10.547511,200.64706,201.70059,-0.4235,966.4894,0.0,40.38813 +2023-11-01 17:00:00,6.397656,8.810222,204.96275,206.27415,1.1765,966.14105,0.0,39.288235 +2023-11-01 18:00:00,5.700877,7.683749,217.87505,218.65984,3.5765,965.5635,0.0,37.152946 +2023-11-01 19:00:00,5.3263493,7.0434365,230.3322,231.34016,4.9265003,964.7797,0.0,38.15446 +2023-11-01 20:00:00,4.8754487,6.4884515,244.48618,245.4099,5.7265,964.07855,0.0,38.844383 +2023-11-01 21:00:00,4.3931766,5.9228373,258.17853,258.31067,6.0765,963.86035,0.0,41.56833 +2023-11-01 22:00:00,3.214032,5.308484,264.64426,266.76038,5.6265,963.7758,0.0,48.5892 +2023-11-01 23:00:00,2.209072,5.323533,264.80566,275.38922,2.7765,963.42316,0.0,61.82994 +2023-11-02 00:00:00,3.1016126,6.7446275,271.84756,285.4787,1.5765,963.56995,0.0,66.34638 +2023-11-02 01:00:00,2.1633308,3.7161808,303.6901,336.19403,-0.3735,964.04065,0.0,75.80051 +2023-11-02 02:00:00,1.8357561,3.324154,299.35767,338.83865,-1.0735,964.3755,0.0,77.70098 +2023-11-02 03:00:00,2.2472203,4.318565,290.85452,317.8156,-1.4235,964.5898,0.0,78.23183 +2023-11-02 04:00:00,2.5632012,5.5226803,290.55612,312.06424,-1.6235,964.9283,0.0,78.495674 +2023-11-02 05:00:00,2.640076,6.0108232,294.62354,314.32605,-1.6235,965.30634,0.0,78.495674 +2023-11-02 06:00:00,2.5495098,5.7999997,295.5599,313.6029,-1.7735,965.3709,0.0,80.87741 +2023-11-02 07:00:00,2.1023796,5.3037724,295.34613,314.23618,-2.3735,965.53503,0.0,85.498146 +2023-11-02 08:00:00,2.3706539,5.375872,297.64587,313.4926,-2.3235002,965.92316,0.0,87.781685 +2023-11-02 09:00:00,2.0124612,4.8104053,296.56497,313.31537,-2.9235,965.89746,0.0,89.39156 +2023-11-02 10:00:00,1.8384776,4.404543,292.3802,309.47244,-2.6735,965.7586,0.0,90.085976 +2023-11-02 11:00:00,1.8027756,4.360046,289.44012,306.60718,-3.2735002,965.8271,0.0,90.71981 +2023-11-02 12:00:00,1.6492423,4.1617303,284.03625,305.21768,-3.6235,965.85095,0.0,91.38138 +2023-11-02 13:00:00,2.236068,3.3301651,296.56497,318.6523,-4.9735,965.6718,0.0,93.399826 +2023-11-02 14:00:00,1.5652475,2.5612497,296.56497,321.34018,-2.6735,966.32574,0.0,89.0774 +2023-11-02 15:00:00,0.8062258,1.264911,277.1249,288.43503,-0.3235,967.0764,0.0,76.09402 +2023-11-02 16:00:00,0.98994946,1.2727922,224.9999,224.9999,1.6765,966.9005,0.0,64.89203 +2023-11-02 17:00:00,0.92195445,1.2041595,220.60121,221.63345,3.7765,966.54846,0.0,54.665466 +2023-11-02 18:00:00,2.0124612,2.4596748,206.56499,206.56499,5.8265,965.8015,0.0,45.97517 +2023-11-02 19:00:00,2.5079873,3.2202485,203.49858,205.76927,7.4765,964.69006,0.0,39.373226 +2023-11-02 20:00:00,2.6683328,3.5171013,192.99461,194.82652,8.1265,963.5794,0.0,41.552883 +2023-11-02 21:00:00,3.3015149,4.609772,181.73567,183.73132,8.2265005,963.02936,0.0,43.168526 +2023-11-02 22:00:00,2.8635643,5.93043,167.90526,174.19337,6.7265,961.9935,0.0,55.2563 +2023-11-02 23:00:00,3.3376637,7.800641,171.38443,179.2655,3.7264998,960.671,0.0,67.07232 +2023-11-03 00:00:00,4.00125,8.935883,178.56793,185.13629,2.7765,960.30066,0.0,73.59575 +2023-11-03 01:00:00,4.3,9.15478,180.0,186.27098,4.9765,960.0561,0.0,73.99881 +2023-11-03 02:00:00,4.876474,9.962429,195.46127,199.34442,5.0765,959.6016,0.0,73.221054 +2023-11-03 03:00:00,5.7384667,11.002273,202.5431,205.8663,5.3265,958.9857,0.0,69.405945 +2023-11-03 04:00:00,6.1741395,11.5485935,204.90474,209.00632,5.6265,958.5688,0.0,66.75592 +2023-11-03 05:00:00,5.903389,11.164677,206.13094,210.69965,5.6265,958.00073,0.0,67.9767 +2023-11-03 06:00:00,5.5226803,10.580171,211.67543,216.54506,5.5765,957.6126,0.0,68.957115 +2023-11-03 07:00:00,5.2009616,10.041912,217.97166,224.19316,5.9765,957.3085,0.0,67.56148 +2023-11-03 08:00:00,5.185557,9.763708,230.4774,237.12373,6.5765,957.515,0.0,65.29486 +2023-11-03 09:00:00,4.661545,8.676405,234.60512,244.02565,6.9265003,957.1064,0.0,64.43837 +2023-11-03 10:00:00,2.6476402,5.8940644,280.88547,284.74362,6.4265003,957.5818,0.0,67.90207 +2023-11-03 11:00:00,2.607681,5.872819,302.47116,317.07004,6.1265,957.99945,0.0,70.57772 +2023-11-03 12:00:00,2.3430748,5.7245083,320.1945,332.9874,5.4265003,958.53125,0.0,75.963264 +2023-11-03 13:00:00,2.9120438,6.129437,344.05453,354.3825,6.1265,957.81006,0.0,68.57573 +2023-11-03 14:00:00,3.6496572,6.8066144,350.53775,357.47394,6.0765,958.9369,0.0,69.560104 +2023-11-03 15:00:00,3.471311,6.4070277,348.3664,357.31628,6.2765,960.01575,0.0,69.85149 +2023-11-03 16:00:00,4.016217,5.7567353,341.1138,342.824,6.8765,961.4533,0.0,67.51175 +2023-11-03 17:00:00,3.9217343,5.314132,340.6409,340.20102,7.4265003,962.2182,0.0,64.32142 +2023-11-03 18:00:00,4.4777226,5.8694124,336.29733,336.92957,8.9765005,962.69403,0.0,58.94771 +2023-11-03 19:00:00,4.9335585,6.484597,342.29947,342.96216,9.5265,962.7946,0.0,54.801147 +2023-11-03 20:00:00,4.850773,6.281719,345.67725,346.18494,9.7765,963.21936,0.0,53.696033 +2023-11-03 21:00:00,4.804165,6.4031243,357.6141,358.21014,9.3765,963.7146,0.0,54.958973 +2023-11-03 22:00:00,4.104875,5.8034477,357.20734,358.0251,8.5265,964.3163,0.0,58.834515 +2023-11-03 23:00:00,3.0805843,6.0827627,346.86597,350.53775,7.0265,964.9849,0.0,65.396255 +2023-11-04 00:00:00,3.2557642,6.6370173,349.3804,353.9459,5.8765,965.7164,0.0,69.5191 +2023-11-04 01:00:00,3.736308,7.35459,344.47583,348.23172,4.6265,966.8996,0.0,69.26108 +2023-11-04 02:00:00,3.324154,6.6219335,338.83865,345.12427,3.5265,967.7306,0.0,74.27378 +2023-11-04 03:00:00,2.9120438,5.885576,344.05453,350.21765,3.1265,968.1269,0.0,76.40037 +2023-11-04 04:00:00,3.1400635,5.714018,350.8377,355.9859,3.1764998,968.60986,0.0,76.130875 +2023-11-04 05:00:00,2.7073975,4.7675986,4.23632,9.659832,2.7765,968.62726,0.0,77.7479 +2023-11-04 06:00:00,1.9,3.736308,360.0,15.524177,2.1265,968.78534,0.0,80.832085 +2023-11-04 07:00:00,1.746425,3.3015149,336.3706,1.7356651,0.5265,968.66223,0.0,89.02143 +2023-11-04 08:00:00,2.1023796,3.9319208,334.65387,352.69434,-0.22350001,968.7036,0.0,89.94436 +2023-11-04 09:00:00,1.3928387,2.828427,338.9624,8.130019,-1.0735,968.6301,0.0,91.89347 +2023-11-04 10:00:00,1.2041595,1.9235383,318.36655,351.02744,-1.6235,968.6151,0.0,92.199326 +2023-11-04 11:00:00,1.4142135,1.4317821,315.0001,347.90527,-2.1235,968.79877,0.0,92.511955 +2023-11-04 12:00:00,1.5811387,0.781025,304.69522,320.1945,-2.6735,968.9721,0.0,93.172874 +2023-11-04 13:00:00,1.2806249,2.376973,231.34016,202.24907,-2.0735002,968.9978,0.0,92.859764 +2023-11-04 14:00:00,2.1377556,3.4785054,190.78426,198.43504,-0.3235,969.53503,0.0,87.970314 +2023-11-04 15:00:00,2.0024984,4.3324356,182.86235,198.85326,2.8265,970.0562,0.0,78.32477 +2023-11-04 16:00:00,2.4351592,3.49285,199.17911,203.6294,5.6765003,970.22314,0.0,68.97794 +2023-11-04 17:00:00,2.8178005,3.6715121,207.47435,209.35765,7.8765,969.6895,0.0,61.70941 +2023-11-04 18:00:00,2.6925824,3.4132097,211.32863,211.82741,9.5265,968.8582,0.0,58.039383 +2023-11-04 19:00:00,3.354102,4.3416586,206.56499,208.92633,10.7765,967.95013,0.0,55.922478 +2023-11-04 20:00:00,3.8832977,5.080354,214.50858,216.1933,11.6265,967.5362,0.0,54.9642 +2023-11-04 21:00:00,3.8600519,5.1224995,216.57312,218.65984,11.9765005,967.22046,0.0,54.861988 +2023-11-04 22:00:00,3.443835,5.6435804,205.82094,209.74478,11.4265,966.4572,0.0,58.51857 +2023-11-04 23:00:00,3.6249137,7.479305,204.44394,209.64977,9.2265005,965.9609,0.0,67.533676 +2023-11-05 00:00:00,4.428318,8.798295,205.40767,211.52213,8.1765,965.4829,0.0,72.75669 +2023-11-05 01:00:00,4.5617976,9.073588,206.0033,211.93842,8.4765005,965.34906,0.0,69.30829 +2023-11-05 02:00:00,4.802083,9.340771,211.37296,217.60606,8.0265,965.45514,0.0,72.72878 +2023-11-05 03:00:00,4.7169905,9.3236265,212.00534,218.4679,7.8265,965.22876,0.0,75.29913 +2023-11-05 04:00:00,4.992995,9.78366,212.73521,220.85529,7.6265,965.0968,0.0,77.68488 +2023-11-05 05:00:00,4.9406476,9.759099,215.9422,224.16977,7.3765,964.5767,0.0,81.553154 +2023-11-05 06:00:00,4.596738,9.372299,224.11868,230.19447,7.0765,964.4262,0.0,85.90069 +2023-11-05 07:00:00,3.905125,8.405355,230.19447,235.17543,6.7265,964.2662,0.0,89.2212 +2023-11-05 08:00:00,3.6069376,7.800641,226.12321,233.86453,6.4265003,964.02057,0.0,90.44863 +2023-11-05 09:00:00,3.7802117,8.061017,217.47626,224.9999,6.3265,963.6233,0.0,91.70977 +2023-11-05 10:00:00,4.118252,8.220098,209.0545,216.59119,6.0765,962.81885,0.0,92.6572 +2023-11-05 11:00:00,5.27731,9.847842,207.05052,212.56042,6.2265,962.75214,0.0,92.66573 +2023-11-05 12:00:00,5.3712196,9.947865,204.17911,210.17343,6.4265003,962.3162,0.0,92.35577 +2023-11-05 13:00:00,6.0835843,11.027693,205.30135,210.51816,7.1765003,961.7931,0.0,88.333916 +2023-11-05 14:00:00,6.407808,11.094143,202.9638,207.95087,7.9765005,961.6573,0.0,84.22588 +2023-11-05 15:00:00,6.868042,11.354734,196.06006,199.5521,9.1765,961.0254,0.0,78.74153 +2023-11-05 16:00:00,6.5276337,15.500323,185.2738,193.05003,10.0765,959.86304,0.0,75.94309 +2023-11-05 17:00:00,8.21523,12.258874,183.48926,185.6175,12.4765005,958.8735,0.0,66.13634 +2023-11-05 18:00:00,8.602325,12.519585,181.33218,183.20515,13.2265005,957.3004,0.0,65.620445 +2023-11-05 19:00:00,8.20975,13.703283,177.20735,181.25443,13.1265,955.1023,0.0,68.58236 +2023-11-05 20:00:00,10.20784,15.463505,182.2457,185.19434,14.4265,953.52924,0.0,65.657936 +2023-11-05 21:00:00,10.248902,15.542522,185.59924,187.76508,15.6765,952.32434,0.0,62.88788 +2023-11-05 22:00:00,9.848858,15.280053,192.90741,194.40005,15.6265,951.3673,0.0,62.241165 +2023-11-05 23:00:00,9.330058,14.832734,197.46402,199.29015,14.9265,950.8664,0.0,63.790672 +2023-11-06 00:00:00,8.53815,13.951703,198.43504,200.12354,14.1265,950.4423,0.0,66.49132 +2023-11-06 01:00:00,8.633076,13.917615,198.22517,199.73698,14.1265,950.06305,0.0,66.71767 +2023-11-06 02:00:00,8.475848,14.001429,199.29015,201.80147,13.9765005,949.65753,0.0,68.059235 +2023-11-06 03:00:00,7.9120164,13.170042,200.72563,203.25574,13.9765005,948.8989,0.0,68.75529 +2023-11-06 04:00:00,7.529276,12.59365,210.31113,212.68054,13.9265,948.7006,0.0,68.978615 +2023-11-06 05:00:00,5.656854,10.339246,224.9999,228.13644,13.4265,948.32855,0.0,70.05847 +2023-11-06 06:00:00,5.4781384,9.962429,248.58696,252.47433,12.7765,947.83496,0.0,72.354195 +2023-11-06 07:00:00,6.664833,11.4057,297.7184,301.7391,11.2765,949.27545,0.0,81.23305 +2023-11-06 08:00:00,5.565968,10.030454,287.78397,290.42242,10.5265,949.8052,0.0,79.75788 +2023-11-06 09:00:00,6.747592,11.557248,276.80896,279.46225,9.9765005,950.5591,0.0,78.320335 +2023-11-06 10:00:00,6.3505907,11.244999,277.23682,279.21094,9.6765,950.8838,0.0,80.739456 +2023-11-06 11:00:00,6.562012,11.377171,277.88306,280.1246,9.5765,951.3395,0.0,81.28303 +2023-11-06 12:00:00,6.4381676,11.244999,276.24182,279.21094,9.2265005,951.9395,0.0,82.6474 +2023-11-06 13:00:00,6.2128897,10.804628,273.6913,277.98,8.6265,952.20935,0.0,85.76612 +2023-11-06 14:00:00,6.203225,10.458011,271.84756,276.0376,9.0765,952.9545,0.0,81.215775 +2023-11-06 15:00:00,5.8077536,9.302151,267.03912,271.23193,10.5265,953.88,0.0,73.951004 +2023-11-06 16:00:00,7.4431176,10.493807,276.17007,277.66672,11.8265,954.4918,0.0,65.76695 +2023-11-06 17:00:00,7.858753,10.866922,284.74362,284.93146,12.6765,954.8328,0.0,59.8634 +2023-11-06 18:00:00,7.093659,9.656604,291.5015,291.25058,13.4765005,954.5002,0.0,56.81628 +2023-11-06 19:00:00,6.935416,9.259049,298.41257,297.672,13.9765005,954.5884,0.0,55.38407 +2023-11-06 20:00:00,6.795587,9.264988,302.98853,302.6609,13.9265,954.95886,0.0,55.563965 +2023-11-06 21:00:00,6.529931,9.027181,310.0302,309.15543,13.5265,955.5519,0.0,56.238846 +2023-11-06 22:00:00,5.4037023,8.091971,321.009,320.01315,12.4765005,956.02954,0.0,59.60647 +2023-11-06 23:00:00,3.956008,7.242237,343.8556,342.31552,9.8765,956.4156,0.0,68.38625 +2023-11-07 00:00:00,3.5693135,7.0611615,348.6901,347.73523,7.7265,957.1596,0.0,76.34857 +2023-11-07 01:00:00,3.275668,6.063827,347.66092,346.65125,4.9265003,958.8161,0.0,81.80297 +2023-11-07 02:00:00,2.8160255,5.6435804,353.88458,352.87506,4.0265,959.214,0.0,84.966095 +2023-11-07 03:00:00,2.302173,5.10392,357.5105,357.7543,3.1764998,959.6202,0.0,87.974396 +2023-11-07 04:00:00,1.7029387,4.4045434,356.6336,357.3975,2.4264998,959.9495,0.0,91.127365 +2023-11-07 05:00:00,1.6124516,4.0112343,7.12493,4.289077,1.8265,959.92896,0.0,92.40955 +2023-11-07 06:00:00,1.6492423,4.3931766,14.036275,11.821464,1.6765,959.99475,0.0,91.7358 +2023-11-07 07:00:00,1.9723083,4.7413077,30.465475,27.645891,1.3765,959.9367,0.0,92.048935 +2023-11-07 08:00:00,2.1260293,4.9517674,48.814175,43.36347,1.1265,959.983,0.0,91.367874 +2023-11-07 09:00:00,2.1540658,5.011986,68.19853,61.389645,0.8765,960.02893,0.0,90.688545 +2023-11-07 10:00:00,2.6476402,5.700877,79.11452,74.74483,0.7765,959.8206,0.0,90.02265 +2023-11-07 11:00:00,2.6076808,5.6035705,94.39862,92.045364,0.6765,960.4632,0.0,90.01487 +2023-11-07 12:00:00,3.8118236,7.1449285,94.5139,96.42866,0.8765,960.4073,0.0,88.72691 +2023-11-07 13:00:00,3.6496572,8.417244,99.46225,103.04564,1.4765,960.4291,0.0,87.1802 +2023-11-07 14:00:00,4.215448,8.077747,112.30626,111.801476,1.5765,960.73206,0.0,86.24363 +2023-11-07 15:00:00,4.920366,7.060453,127.568665,127.51919,2.9264998,960.8972,0.0,79.488495 +2023-11-07 16:00:00,5.5973206,7.7897367,131.37842,131.87779,4.3765,960.7945,0.0,74.157814 +2023-11-07 17:00:00,5.7999997,7.990619,133.60289,134.49303,6.4265003,960.04376,0.0,67.41494 +2023-11-07 18:00:00,5.9396963,8.062258,135.0001,136.00499,8.1765,959.13666,0.0,62.898823 +2023-11-07 19:00:00,5.315073,7.2862887,131.18582,133.33171,9.0265,958.4402,0.0,61.544678 +2023-11-07 20:00:00,4.8104053,6.935416,136.68465,137.33734,8.8765,957.9388,0.0,63.513554 +2023-11-07 21:00:00,4.738143,6.862215,135.85501,136.77144,9.3265,957.4525,0.0,63.617725 +2023-11-07 22:00:00,5.869412,9.80816,135.6902,140.79282,9.2765,956.40137,0.0,64.286 +2023-11-07 23:00:00,6.652819,10.889444,132.56331,135.0001,9.5265,955.30975,0.0,62.9912 +2023-11-08 00:00:00,5.8051705,9.718539,137.79277,139.59062,9.6765,955.337,0.0,62.581554 +2023-11-08 01:00:00,6.140033,10.121264,142.94339,142.22426,8.9765005,956.0626,0.0,64.21749 +2023-11-08 02:00:00,5.2810984,8.895504,161.22188,158.91617,9.2765,956.21185,0.0,62.932724 +2023-11-08 03:00:00,5.346027,8.910667,172.47627,170.9606,9.2265005,956.29755,0.2,66.58792 +2023-11-08 04:00:00,5.2392745,8.786353,166.75948,168.17854,8.7765,955.9312,0.2,76.25534 +2023-11-08 05:00:00,3.8209946,7.017834,173.99109,175.91446,8.8765,955.66516,0.0,76.537964 +2023-11-08 06:00:00,3.0805843,6.152235,166.86597,172.52853,9.0765,954.94403,0.0,74.98824 +2023-11-08 07:00:00,2.8635643,5.9008474,167.90526,179.029,9.2265005,954.7817,0.0,73.46199 +2023-11-08 08:00:00,1.6124516,4.440721,172.87508,187.76508,8.5765,954.5685,0.0,77.56326 +2023-11-08 09:00:00,1.8357561,3.1256998,150.64235,187.35228,7.4265003,954.3576,0.0,84.75014 +2023-11-08 10:00:00,1.421267,1.9026297,129.28938,183.01273,7.1765003,954.217,0.0,86.21076 +2023-11-08 11:00:00,1.8027756,1.3000001,123.6901,157.3801,6.6265,954.0208,0.2,90.778175 +2023-11-08 12:00:00,0.5,1.2165525,233.13002,279.46225,7.2265,954.4154,0.0,85.32018 +2023-11-08 13:00:00,1.6278821,1.6492423,227.4896,284.03625,5.1765003,954.4139,0.1,90.99433 +2023-11-08 14:00:00,1.1661904,1.264911,239.0363,288.43503,6.5765,954.8637,0.0,84.65407 +2023-11-08 15:00:00,2.2847319,2.2203605,246.80139,262.23492,7.4265003,955.39935,0.0,82.419205 +2023-11-08 16:00:00,3.4176016,6.4660654,290.55612,301.72354,8.6265,955.9985,0.0,79.20743 +2023-11-08 17:00:00,2.7313,3.8483763,293.7495,294.56717,10.9765005,956.4247,0.0,69.09125 +2023-11-08 18:00:00,2.5961509,3.5735137,285.6423,287.928,12.5765,956.04736,0.0,62.81959 +2023-11-08 19:00:00,4.9658837,6.664083,295.01685,295.79596,14.2265005,955.8649,0.0,54.30516 +2023-11-08 20:00:00,7.2346387,10.206861,310.51532,311.0274,13.1265,956.2399,0.0,49.80869 +2023-11-08 21:00:00,7.324616,10.448445,308.90414,309.17365,12.4765005,956.6931,0.0,49.276184 +2023-11-08 22:00:00,7.7336926,11.562439,310.2798,310.43997,10.7765,957.90485,0.0,55.328457 +2023-11-08 23:00:00,7.1217976,11.510864,308.15726,309.35944,9.1765,958.8464,0.0,56.511463 +2023-11-09 00:00:00,7.746612,12.4964,309.23734,309.8055,8.5265,959.8641,0.0,55.33143 +2023-11-09 01:00:00,7.1421285,11.455131,314.4328,315.0001,5.4265003,962.2234,0.0,64.32628 +2023-11-09 02:00:00,6.3890533,10.630146,309.92032,311.18582,4.6765003,962.5553,0.0,60.256866 +2023-11-09 03:00:00,5.8830266,10.068764,301.79886,304.47925,4.2265,962.9432,0.0,56.877186 +2023-11-09 04:00:00,5.903389,10.29563,296.13095,299.0545,4.1265,963.3973,0.0,53.741344 +2023-11-09 05:00:00,5.440588,9.693296,287.1028,291.80145,3.9265,963.54834,0.0,48.465134 +2023-11-09 06:00:00,4.6,8.856636,270.0,276.48297,3.2264998,963.2255,0.0,47.16272 +2023-11-09 07:00:00,5.3600373,9.960923,255.96373,263.6599,2.9764998,962.89374,0.0,47.089146 +2023-11-09 08:00:00,6.2769423,11.264103,247.52052,253.49556,2.9764998,962.51526,0.0,46.72766 +2023-11-09 09:00:00,6.8963757,11.887809,253.14151,257.36664,3.2264998,962.9416,0.0,45.38079 +2023-11-09 10:00:00,6.648308,11.521285,263.08887,266.51678,3.3765,963.3488,0.0,44.902824 +2023-11-09 11:00:00,6.4031243,11.107205,268.2101,272.06378,3.3765,963.7274,0.0,46.130684 +2023-11-09 12:00:00,6.1032777,10.707474,268.12216,272.14084,3.1764998,964.16235,0.0,48.062214 +2023-11-09 13:00:00,5.178803,9.704638,259.9921,268.22858,1.3765,964.1935,0.0,61.484634 +2023-11-09 14:00:00,5.4341516,9.525754,257.24246,265.7859,1.8765,964.6689,0.0,60.228367 +2023-11-09 15:00:00,5.0447993,9.413288,256.2392,266.9553,3.8265,965.1383,0.0,56.13643 +2023-11-09 16:00:00,5.8694124,8.139411,261.1797,264.35953,5.7265,965.21466,0.0,50.098877 +2023-11-09 17:00:00,5.7035074,7.7,267.99048,270.0,7.3765,964.95557,0.0,41.79963 +2023-11-09 18:00:00,6.0133185,8.030566,273.814,275.00055,8.4265,964.5818,0.0,39.50946 +2023-11-09 19:00:00,7.071068,9.503683,278.13,278.47107,9.0765,964.0387,0.0,37.105713 +2023-11-09 20:00:00,7.045566,9.674709,276.5197,277.1249,8.9765005,963.7361,0.0,37.49795 +2023-11-09 21:00:00,8.286133,11.638729,287.56036,287.50095,8.4765005,963.92816,0.0,37.774265 +2023-11-09 22:00:00,6.7446275,10.096039,285.4787,286.10138,7.3265,964.3778,0.0,41.470337 +2023-11-09 23:00:00,5.7870545,9.679876,288.12195,289.93262,5.8765,964.7696,0.0,42.793747 +2023-11-10 00:00:00,5.249762,9.176056,287.74475,290.40997,4.6265,965.29047,0.0,47.033325 +2023-11-10 01:00:00,5.239275,8.944272,293.6294,296.56497,3.2264998,966.2536,0.0,51.49949 +2023-11-10 02:00:00,4.9658837,8.723532,295.01685,298.03375,2.2765,966.7329,0.0,54.670036 +2023-11-10 03:00:00,5.27731,8.955445,297.0505,299.42737,1.5765,967.3539,0.0,56.601387 +2023-11-10 04:00:00,5.235456,8.883693,298.523,301.1849,0.92649996,967.5109,0.0,60.44586 +2023-11-10 05:00:00,5.0089917,8.421995,296.05344,299.91354,1.0265,967.7196,0.0,62.573547 +2023-11-10 06:00:00,4.924429,7.741447,293.9625,298.5513,1.5765,967.82684,0.0,62.00105 +2023-11-10 07:00:00,4.244997,7.66942,285.0184,292.21765,0.1265,967.8269,0.0,70.13621 +2023-11-10 08:00:00,4.295346,7.8434687,282.09473,289.35907,-0.023500003,968.1757,0.0,71.70883 +2023-11-10 09:00:00,4.1,7.4094534,282.68036,291.3707,-0.22350001,968.6091,0.0,73.3072 +2023-11-10 10:00:00,3.8209946,6.8963757,276.0089,286.8585,-0.4235,968.8534,0.0,74.94252 +2023-11-10 11:00:00,3.6055512,6.8154235,273.17978,284.44406,-0.8735,969.1424,0.0,77.44204 +2023-11-10 12:00:00,3.905125,7.42159,272.9356,284.03625,-1.3735,969.6102,0.0,80.02728 +2023-11-10 13:00:00,3.7013512,6.888396,271.54813,283.43103,-0.6735,969.84375,0.0,77.76613 +2023-11-10 14:00:00,4.3416586,6.519202,284.67642,290.659,0.8265,970.6128,0.0,71.07449 +2023-11-10 15:00:00,4.604346,6.300793,304.3804,305.9606,2.1265,971.0559,0.0,64.9963 +2023-11-10 16:00:00,4.5221677,5.882177,305.0959,305.31128,2.6265,971.4369,0.0,62.960655 +2023-11-10 17:00:00,4.4687805,5.7489133,310.46216,310.0607,3.0265,971.7033,0.0,61.430378 +2023-11-10 18:00:00,4.103657,5.3037724,316.9749,315.7638,3.7264998,971.8384,0.0,58.689453 +2023-11-10 19:00:00,3.3941126,4.313931,315.0001,314.06088,4.3265,971.57513,0.0,57.116264 +2023-11-10 20:00:00,2.9698482,3.753665,315.0001,311.7602,4.5765,971.3388,0.0,56.54649 +2023-11-10 21:00:00,2.4413111,3.0610456,325.0079,321.63248,4.6765003,971.26355,0.0,56.36261 +2023-11-10 22:00:00,1.7088008,2.1023796,339.44388,334.65387,4.2265,971.1774,0.0,58.164555 +2023-11-10 23:00:00,1.6124516,1.6278821,29.744795,10.61961,1.7765,970.98773,0.0,71.00034 +2023-11-11 00:00:00,1.8601075,3.2526913,53.74608,44.999897,0.6765,971.05615,0.0,76.26578 +2023-11-11 01:00:00,2.1931713,2.842534,65.77226,50.710617,-1.1735,971.54095,0.0,80.35797 +2023-11-11 02:00:00,2.5,2.9410882,90.0,72.18102,-1.8235,971.7893,0.0,83.65555 +2023-11-11 03:00:00,2.3259406,3.0066593,115.46331,93.814,-2.0235,972.222,0.0,83.945755 +2023-11-11 04:00:00,1.7888545,3.9217343,116.56499,109.359085,-0.22350001,972.7698,0.0,75.260216 +2023-11-11 05:00:00,2.5806975,5.186521,125.537766,123.996506,0.47650003,972.9084,0.0,71.53888 +2023-11-11 06:00:00,2.7802877,6.1073728,127.694305,129.68541,-0.4735,972.5311,0.0,76.35413 +2023-11-11 07:00:00,3.1400635,6.7357254,127.23492,130.78574,-1.0235,972.2328,0.0,79.18298 +2023-11-11 08:00:00,3.5468295,7.212489,130.426,135.0001,-0.9235,971.6853,0.0,78.9018 +2023-11-11 09:00:00,3.6069376,7.2346387,133.87679,139.4847,-0.5735,971.4713,0.0,77.49136 +2023-11-11 10:00:00,3.9698865,7.9611554,139.08571,147.30803,-0.5235,971.3866,0.0,77.7905 +2023-11-11 11:00:00,4.4553337,8.140025,135.90929,142.98924,0.92649996,971.0105,0.0,70.300934 +2023-11-11 12:00:00,4.7423625,8.58021,137.56381,143.53067,1.3265,970.80524,0.0,68.56541 +2023-11-11 13:00:00,5.8898215,10.520931,139.82083,143.89246,1.0265,969.9897,0.0,72.45432 +2023-11-11 14:00:00,6.4070277,10.754069,145.81383,149.8587,1.8265,969.7676,0.0,68.928566 +2023-11-11 15:00:00,5.3823786,11.901261,144.83348,155.15764,3.2264998,969.5656,0.0,65.007965 +2023-11-11 16:00:00,6.762396,9.8792715,156.46764,158.62932,4.8765,969.0299,0.0,57.901546 +2023-11-11 17:00:00,6.7720013,9.677293,163.70589,166.25093,5.5265,968.39594,0.1,56.587334 +2023-11-11 18:00:00,5.8189344,8.296988,160.9422,164.62369,6.3265,967.9788,0.4,63.604683 +2023-11-11 19:00:00,6.0207973,8.485281,168.50346,171.86998,8.1765,966.7143,0.0,55.843754 +2023-11-11 20:00:00,6.129437,8.521151,174.3825,175.96237,9.2265005,965.8662,0.0,54.131763 +2023-11-11 21:00:00,6.139218,8.845902,167.77489,169.57935,9.7265005,964.9157,0.0,53.8763 +2023-11-11 22:00:00,6.618912,10.601887,175.66777,178.9191,9.4765005,964.3961,0.0,55.18375 +2023-11-11 23:00:00,5.93043,10.507616,185.80663,188.20712,8.4765005,964.2124,0.0,56.94325 +2023-11-12 00:00:00,5.9682493,10.630145,188.6731,191.94415,7.7765,964.55634,0.0,61.242615 +2023-11-12 01:00:00,7.017834,11.882761,184.08554,186.76608,8.4765005,964.5913,0.0,56.94325 +2023-11-12 02:00:00,6.9354167,11.754574,185.79271,189.30199,7.9765005,964.4041,0.0,60.63291 +2023-11-12 03:00:00,6.873136,11.825819,188.3658,191.21487,7.3265,963.999,0.0,64.298454 +2023-11-12 04:00:00,7.0213957,12.030378,190.66974,193.4587,6.8265,963.8113,0.0,66.53794 +2023-11-12 05:00:00,6.7911706,11.772,193.62701,196.27974,6.4265003,963.4525,0.0,65.73428 +2023-11-12 06:00:00,6.360031,11.260551,196.44046,199.72237,6.0265,963.37744,0.0,66.843575 +2023-11-12 07:00:00,6.1684685,11.057125,199.90384,204.0151,5.7765,963.23584,0.0,69.74967 +2023-11-12 08:00:00,6.1741395,11.141365,204.90474,208.40515,5.6765003,963.12256,0.0,70.99755 +2023-11-12 09:00:00,6.191123,11.232987,211.1224,214.11452,5.4765,962.80084,0.0,70.95802 +2023-11-12 10:00:00,5.882177,10.793516,215.3113,219.73756,5.0765,962.7255,0.0,73.221054 +2023-11-12 11:00:00,5.220153,10.131634,216.43095,221.39862,4.4765,962.6118,0.0,76.626144 +2023-11-12 12:00:00,4.9406476,9.567131,215.9422,221.18584,3.9764998,962.9903,0.0,79.35797 +2023-11-12 13:00:00,3.9698865,8.421994,220.91429,227.406,2.7264998,962.75134,0.0,86.05247 +2023-11-12 14:00:00,4.1231055,8.062258,219.09384,226.00499,3.3765,963.3488,0.0,82.48266 +2023-11-12 15:00:00,4.4654226,9.269844,214.04597,227.1858,5.8265,964.09735,0.0,73.09728 +2023-11-12 16:00:00,4.604346,7.366139,214.3804,221.69804,8.5265,964.3163,0.0,63.886303 +2023-11-12 17:00:00,5.0931325,7.2862887,223.4089,226.66829,11.2765,964.724,0.0,55.26307 +2023-11-12 18:00:00,6.400781,8.989438,241.03244,242.86494,13.3265,964.9032,0.0,47.957615 +2023-11-12 19:00:00,7.202777,10.100495,268.4089,269.43274,14.2765,965.167,0.0,42.437843 +2023-11-12 20:00:00,7.4,10.440307,288.92474,290.17075,14.1265,965.899,0.0,40.753292 +2023-11-12 21:00:00,6.4629717,9.222798,278.00464,279.3601,13.5265,966.3609,0.0,39.994778 +2023-11-12 22:00:00,5.772348,9.3962755,284.03625,286.6993,12.2265005,967.0758,0.0,42.298965 +2023-11-12 23:00:00,5.080354,9.362159,280.20392,283.59097,10.0765,968.0119,0.0,44.523415 +2023-11-13 00:00:00,5.10392,9.786726,272.2457,277.63324,8.9765005,968.757,0.0,46.71908 +2023-11-13 01:00:00,4.704253,9.732934,267.56342,274.71466,9.2265005,969.46625,0.0,40.954426 +2023-11-13 02:00:00,5.1009803,10.18332,268.8767,277.3343,8.8265,970.0554,0.0,42.38869 +2023-11-13 03:00:00,4.909175,9.972462,266.49652,276.91113,8.1765,970.5031,0.0,44.460953 +2023-11-13 04:00:00,4.7095647,9.786726,266.34784,277.63324,7.4765,971.0355,0.0,45.94054 +2023-11-13 05:00:00,5.0358715,10.1242285,263.15732,273.96457,6.9265003,971.311,0.0,46.819496 +2023-11-13 06:00:00,5.124451,10.223991,264.40076,273.9258,6.7765,971.66144,0.0,46.253296 +2023-11-13 07:00:00,5.6008925,11.076552,268.977,276.73996,6.8265,972.4286,0.0,45.238316 +2023-11-13 08:00:00,5.0635953,10.119288,279.09018,288.43503,6.7765,972.8925,0.0,44.381172 +2023-11-13 09:00:00,4.652956,9.551963,278.65247,289.5732,5.9765,973.6881,0.0,47.071426 +2023-11-13 10:00:00,4.295346,9.087354,282.09473,294.02652,5.2765,973.7443,0.0,49.41027 +2023-11-13 11:00:00,3.6687872,8.19878,287.44727,300.00482,4.6265,974.0933,0.0,51.698673 +2023-11-13 12:00:00,2.84605,7.0213957,288.43503,305.72748,3.6764998,974.57336,0.0,55.676266 +2023-11-13 13:00:00,2.6000001,5.5973206,292.6199,318.62158,1.1265,974.5497,0.0,67.5018 +2023-11-13 14:00:00,2.0,4.3416586,270.0,308.45374,2.6265,975.12695,0.0,63.90874 +2023-11-13 15:00:00,2.657066,3.6878178,250.20103,282.5288,5.8265,976.216,0.0,57.296715 +2023-11-13 16:00:00,1.2206556,2.109502,235.0079,264.55975,8.7265005,976.57336,0.0,52.06956 +2023-11-13 17:00:00,1.0816654,1.3601471,213.6901,216.02747,10.8765,976.59247,0.0,45.083496 +2023-11-13 18:00:00,1.811077,2.2203605,186.3401,187.76508,12.3765,976.2032,0.0,40.23986 +2023-11-13 19:00:00,3.0805843,3.9293766,193.13403,194.7436,13.3765,975.34155,0.0,35.287315 +2023-11-13 20:00:00,3.3955853,4.464303,193.62701,195.59286,13.8265,974.6639,0.0,35.420235 +2023-11-13 21:00:00,3.6013885,4.9010205,178.40889,181.16911,13.8765,974.0093,0.0,39.09537 +2023-11-13 22:00:00,3.324154,6.20967,158.83867,165.06853,12.6265,973.1201,0.0,45.751705 +2023-11-13 23:00:00,4.294182,8.653901,152.24155,157.5838,10.1765,971.9153,0.0,51.902565 +2023-11-14 00:00:00,5.3488317,10.3445635,159.19313,163.14153,9.2765,971.465,0.0,54.145176 +2023-11-14 01:00:00,7.1168814,12.51599,162.838,165.1865,10.8765,970.4325,0.0,46.246292 +2023-11-14 02:00:00,7.8409185,13.529966,174.14407,176.186,11.0765,969.99524,0.0,43.52577 +2023-11-14 03:00:00,8.509407,14.403124,177.30577,178.80653,11.2265005,969.4539,0.0,39.900127 +2023-11-14 04:00:00,8.908984,14.933519,182.5733,183.83952,11.3265,969.09283,0.0,37.084366 +2023-11-14 05:00:00,9.254189,15.34438,186.20335,187.86598,11.4765005,968.4568,0.0,35.114666 +2023-11-14 06:00:00,9.414882,15.352524,192.26476,193.94576,11.6265,968.1049,0.0,33.49261 +2023-11-14 07:00:00,9.580188,15.604166,193.89122,195.9959,11.6765,967.35547,0.0,33.633133 +2023-11-14 08:00:00,9.330058,15.276452,197.46402,199.50253,11.5265,966.7599,0.0,37.420074 +2023-11-14 09:00:00,8.988881,14.838463,200.85454,202.5902,11.3265,966.4391,0.0,42.967205 +2023-11-14 10:00:00,9.211407,15.139683,200.99292,203.34769,11.1265,965.7393,0.0,47.67875 +2023-11-14 11:00:00,9.843272,15.823084,200.82863,202.67561,10.9265,965.0398,0.0,51.181633 +2023-11-14 12:00:00,9.714422,15.692355,200.48709,202.47948,10.5765,964.7865,0.0,54.687077 +2023-11-14 13:00:00,9.36376,15.246311,199.9832,202.35974,11.4265,964.56165,0.0,55.498714 +2023-11-14 14:00:00,9.771899,15.566631,197.87878,200.29765,11.5265,964.29565,0.0,57.11724 +2023-11-14 15:00:00,10.340696,15.976545,198.61026,200.13638,12.2765,963.9566,0.0,56.311104 +2023-11-14 16:00:00,8.807384,13.875157,192.45824,195.03787,13.1265,963.44543,0.0,56.332417 +2023-11-14 17:00:00,10.043904,14.84318,192.65256,194.03627,13.9265,962.5447,0.0,55.37111 +2023-11-14 18:00:00,10.46948,15.242703,197.22353,197.95956,14.8265,961.0915,0.0,52.60599 +2023-11-14 19:00:00,10.346497,14.969636,200.36168,200.73532,15.6765,960.10236,0.0,49.98523 +2023-11-14 20:00:00,9.916148,14.4471445,201.90877,201.94876,15.926499,959.3872,0.0,50.576504 +2023-11-14 21:00:00,9.158603,13.652839,211.60745,211.82741,16.3265,959.3621,0.0,50.860256 +2023-11-14 22:00:00,7.7155685,12.1753845,222.37354,222.33694,15.8265,959.74927,0.0,53.605713 +2023-11-14 23:00:00,7.076722,11.880236,222.70937,224.31802,14.7765,959.56525,0.0,56.94933 +2023-11-15 00:00:00,5.9548297,10.575916,229.08571,229.98639,13.5765,960.01733,0.0,61.975727 +2023-11-15 01:00:00,5.408327,9.90202,236.3099,236.95187,14.2265005,960.227,0.0,59.416264 +2023-11-15 02:00:00,4.204759,8.5906925,244.65387,245.22488,12.7765,960.4437,0.0,67.11668 +2023-11-15 03:00:00,3.8275316,8.17435,250.1447,255.11368,11.2265005,960.54504,0.0,75.097946 +2023-11-15 04:00:00,3.5128336,7.3375745,274.89902,287.44727,9.7265005,961.1258,0.0,81.863335 +2023-11-15 05:00:00,3.828838,8.01561,310.76352,319.55383,8.2265005,961.8927,0.0,75.632324 +2023-11-15 06:00:00,4.1773195,8.300602,317.91092,323.82028,7.0265,962.61743,0.0,68.029594 +2023-11-15 07:00:00,4.494441,8.944272,327.72437,333.43503,6.4265003,963.64185,0.0,66.21064 +2023-11-15 08:00:00,4.2059484,8.523497,331.6071,337.94888,5.7265,964.5519,0.0,68.491615 +2023-11-15 09:00:00,3.354102,7.3375745,333.43503,342.5527,4.9265003,965.06366,0.0,71.36403 +2023-11-15 10:00:00,2.6000001,6.432729,337.3801,348.34073,3.8265,965.233,0.0,76.79554 +2023-11-15 11:00:00,2.3259406,5.885576,334.53668,350.21765,2.9764998,965.5432,0.0,81.245476 +2023-11-15 12:00:00,1.4560219,2.7294688,285.94547,8.426887,3.6265,965.66797,0.0,76.207184 +2023-11-15 13:00:00,1.6643317,2.624881,302.7352,17.744766,2.8265,966.17676,0.0,76.629196 +2023-11-15 14:00:00,0.28284273,1.868154,224.9999,74.47583,4.6265,966.61566,0.0,68.75827 +2023-11-15 15:00:00,1.8788295,3.2695565,154.7989,113.42871,6.6765003,967.0028,0.0,64.38094 +2023-11-15 16:00:00,1.6643317,3.1827662,147.26479,136.27295,9.4765005,968.0911,0.0,52.65513 +2023-11-15 17:00:00,2.6925824,3.4539833,158.19853,157.8905,11.2765,968.23065,0.0,47.549393 +2023-11-15 18:00:00,3.7643058,5.0289164,163.0091,162.64589,12.8265,967.46826,0.0,42.015778 +2023-11-15 19:00:00,3.748333,4.9497476,170.78905,171.86998,14.0765,966.64874,0.0,38.03627 +2023-11-15 20:00:00,4.14367,5.4589376,171.67444,171.57312,14.7765,966.01416,0.0,34.42345 +2023-11-15 21:00:00,4.539824,6.33877,172.40544,173.6599,14.6265,965.22894,0.0,33.880157 +2023-11-15 22:00:00,4.318565,7.7103825,174.68555,177.02634,13.1765,964.68677,0.0,41.66413 +2023-11-15 23:00:00,4.7095647,9.2,176.34785,180.0,10.9765005,963.9115,0.0,49.03262 +2023-11-16 00:00:00,5.5036354,10.401922,177.91748,181.10168,10.0765,963.36896,0.0,56.139767 +2023-11-16 01:00:00,6.1008196,11.401753,179.06084,181.00507,11.1265,962.517,0.0,55.223705 +2023-11-16 02:00:00,6.428064,11.723907,185.35573,188.33736,10.9765005,962.0161,0.0,58.612465 +2023-11-16 03:00:00,7.0035706,12.592855,189.86574,192.38075,10.7265005,961.1181,0.0,60.228943 +2023-11-16 04:00:00,7.5186434,13.200378,193.85144,195.82622,10.6265,960.53125,0.0,60.204506 +2023-11-16 05:00:00,7.4999995,13.124405,196.26028,199.12532,10.5765,959.9536,0.0,63.013695 +2023-11-16 06:00:00,7.589466,13.110301,198.43504,201.47685,11.1265,959.19995,0.0,64.704636 +2023-11-16 07:00:00,7.8549347,13.382451,201.66602,204.26678,11.7765,958.36896,0.0,65.52851 +2023-11-16 08:00:00,7.8549347,13.250283,201.66602,204.0503,12.1265,957.3891,0.0,67.20999 +2023-11-16 09:00:00,7.930952,13.598897,203.0089,205.24594,11.8765,956.7758,0.0,70.47465 +2023-11-16 10:00:00,8.338465,14.011782,202.56705,204.00401,11.7765,956.0941,0.0,72.914024 +2023-11-16 11:00:00,8.19329,13.538464,199.9832,202.58736,11.8765,955.1644,0.0,74.95252 +2023-11-16 12:00:00,8.570298,13.964598,199.06929,201.42053,11.9765005,954.3292,0.0,76.776665 +2023-11-16 13:00:00,8.19329,13.669309,199.9832,202.81335,13.1765,953.0252,0.0,75.17344 +2023-11-16 14:00:00,8.728115,14.2088,198.01987,200.60332,13.0265,951.9558,0.0,76.68532 +2023-11-16 15:00:00,9.693296,14.916433,201.80147,203.29948,14.1265,951.2009,0.0,71.63091 +2023-11-16 16:00:00,9.1181135,13.76154,201.21805,202.65193,14.9765005,950.4958,0.0,68.49465 +2023-11-16 17:00:00,9.89798,14.338758,209.67299,210.1413,15.5765,949.93585,0.0,67.02393 +2023-11-16 18:00:00,10.401923,14.805405,217.97166,218.41809,16.8765,949.87524,0.0,62.529037 +2023-11-16 19:00:00,9.78366,13.829317,229.14471,229.39879,17.526499,949.4171,0.0,57.8324 +2023-11-16 20:00:00,9.202717,13.029198,250.97429,252.1212,17.8765,949.76166,0.0,51.45253 +2023-11-16 21:00:00,8.438009,12.126417,301.4295,301.8551,17.2265,951.1685,0.0,37.869167 +2023-11-16 22:00:00,10.241582,15.426276,324.13705,324.7645,9.8265,953.65875,0.0,53.516434 +2023-11-16 23:00:00,9.571835,14.150971,327.8043,327.99466,7.4265003,955.4941,0.0,57.292652 +2023-11-17 00:00:00,8.09506,12.567418,332.80194,334.04666,5.8765,957.29,0.0,53.420635 +2023-11-17 01:00:00,6.774216,10.51903,328.89127,330.9984,4.2265,958.684,0.0,52.568363 +2023-11-17 02:00:00,7.3430243,11.229425,330.64233,331.83755,3.6764998,959.526,0.0,54.023712 +2023-11-17 03:00:00,7.324616,11.164677,327.8288,329.30035,2.8265,960.9726,0.0,62.073944 +2023-11-17 04:00:00,6.8007355,10.543718,323.97253,324.65173,1.7265,962.3692,0.0,67.63327 +2023-11-17 05:00:00,6.4404964,10.32279,323.8417,324.46225,0.92649996,963.16,0.0,69.77622 +2023-11-17 06:00:00,5.5,9.241754,323.13,324.24603,0.1265,963.4767,0.0,72.27981 +2023-11-17 07:00:00,4.992995,8.713208,327.26477,328.13406,-0.4735,963.45355,0.0,74.3719 +2023-11-17 08:00:00,4.356604,8.026207,328.13406,329.28116,-0.9235,963.4596,0.0,77.4338 +2023-11-17 09:00:00,3.940812,7.5716577,324.2932,326.3099,-1.2735,963.4848,0.0,80.34334 +2023-11-17 10:00:00,3.2802439,6.963476,322.43134,324.9405,-1.5735,963.33093,0.0,82.13153 +2023-11-17 11:00:00,2.3430748,5.6302752,320.1945,326.59216,-1.9235,963.0726,0.0,83.6431 +2023-11-17 12:00:00,2.5,5.663921,306.86996,317.86246,-1.7235,963.963,0.0,81.49589 +2023-11-17 13:00:00,1.5132746,3.577709,262.40546,296.56497,-2.7735002,964.0372,0.0,86.426186 +2023-11-17 14:00:00,1.6643317,1.9416487,212.73521,258.11136,-2.4735,964.19183,0.0,85.80947 +2023-11-17 15:00:00,2.1931713,2.8017852,204.22774,214.82455,0.22649999,964.72565,0.0,74.22136 +2023-11-17 16:00:00,3.088689,4.031129,209.0545,209.7448,2.3765,965.0492,0.0,61.500256 +2023-11-17 17:00:00,4.304649,5.60803,210.73541,211.13892,4.0765,964.9021,0.0,50.57781 +2023-11-17 18:00:00,5.325411,7.045566,214.28693,214.59235,5.4765,964.2209,0.0,40.29077 +2023-11-17 19:00:00,5.920304,7.8243213,217.45065,218.77419,6.3765,963.44305,0.0,35.18455 +2023-11-17 20:00:00,5.869412,7.8492036,224.3098,224.4839,6.8765,963.25256,0.0,35.200153 +2023-11-17 21:00:00,5.5973206,7.657676,228.62158,229.23648,6.9765,962.9871,0.0,36.192993 +2023-11-17 22:00:00,4.9497476,7.7103825,224.9999,226.57649,6.3765,962.68555,0.0,39.041306 +2023-11-17 23:00:00,4.5343137,8.273452,221.42357,225.48964,4.8265,962.3943,0.0,44.647167 +2023-11-18 00:00:00,4.6690474,8.745856,226.73567,231.03325,4.1765003,962.7442,0.0,48.722523 +2023-11-18 01:00:00,4.4687805,8.70919,229.53786,235.76248,4.6265,962.82947,0.0,51.117935 +2023-11-18 02:00:00,4.6861496,9.158603,230.19447,238.39255,4.2765,962.66864,0.0,55.21358 +2023-11-18 03:00:00,4.1617303,8.458132,234.78232,245.55606,3.9764998,962.70636,0.0,59.414246 +2023-11-18 04:00:00,4.1340055,8.25409,237.84773,250.9064,3.6764998,962.5544,0.0,63.68204 +2023-11-18 05:00:00,3.9962482,8.036168,238.29861,253.36897,3.2765,962.19403,0.0,67.969604 +2023-11-18 06:00:00,3.758989,7.648529,241.38963,258.6901,2.9764998,961.94745,0.0,71.23969 +2023-11-18 07:00:00,3.7735925,7.5186434,237.99466,256.14856,2.6764998,961.60614,0.0,73.84793 +2023-11-18 08:00:00,3.847077,7.8447433,242.10283,258.9766,2.5265,961.5775,0.0,75.18842 +2023-11-18 09:00:00,3.733631,7.922752,249.62347,265.65683,2.5265,961.4829,0.0,74.3649 +2023-11-18 10:00:00,3.8999999,7.951101,247.3801,263.50073,2.6265,961.029,0.0,72.76084 +2023-11-18 11:00:00,3.6496572,7.905694,260.53775,272.17468,2.5765,961.3977,0.0,71.68711 +2023-11-18 12:00:00,3.3136082,7.4330344,275.19434,287.21616,2.4264998,961.7472,0.0,71.130325 +2023-11-18 13:00:00,2.6076808,6.0166435,265.60138,291.4478,0.92649996,961.7412,0.0,77.735725 +2023-11-18 14:00:00,2.184033,4.5188494,254.05453,294.86368,1.6265,961.877,0.0,75.02926 +2023-11-18 15:00:00,3.49285,5.200961,246.3706,271.10168,4.5765,962.5361,0.0,65.07773 +2023-11-18 16:00:00,3.3120992,7.641989,241.11351,263.9911,7.5265,962.99457,0.0,58.58155 +2023-11-18 17:00:00,2.9732137,4.8052053,250.34608,257.98856,10.5265,963.2615,0.0,50.70467 +2023-11-18 18:00:00,3.1400635,4.14367,260.83774,261.67444,12.4265,962.9409,0.0,44.879436 +2023-11-18 19:00:00,3.1780496,4.0792155,257.27563,258.6901,13.6265,962.3018,0.0,42.86054 +2023-11-18 20:00:00,2.751363,3.4785054,250.9064,251.56496,14.2765,961.6583,0.0,41.984673 +2023-11-18 21:00:00,2.4351592,3.1953092,250.82089,249.86362,14.1765,961.26135,0.0,42.866394 +2023-11-18 22:00:00,1.9697715,2.9410882,246.0375,252.18102,11.7765,960.92816,0.0,64.850174 +2023-11-18 23:00:00,2.7018511,3.3615472,231.009,247.249,7.9265003,960.41656,0.0,68.7061 +2023-11-19 00:00:00,2.0518284,3.6769552,226.97493,247.61981,7.3765,960.40967,0.0,69.32917 +2023-11-19 01:00:00,1.264911,1.3152945,161.56496,98.74608,9.4765005,960.5116,0.0,57.819393 +2023-11-19 02:00:00,1.603122,1.56205,176.42374,129.80553,7.2765,960.48584,0.0,67.59747 +2023-11-19 03:00:00,1.7029387,1.7804494,183.3664,141.84273,6.1765003,960.28094,0.0,72.64074 +2023-11-19 04:00:00,2.236068,2.505993,153.43501,118.61037,6.0765,960.4518,0.0,72.10347 +2023-11-19 05:00:00,2.9410884,4.2544093,125.311295,113.55228,5.3265,960.3111,0.0,74.32875 +2023-11-19 06:00:00,2.4698176,5.6797886,121.75944,116.11385,5.6265,960.2729,0.0,72.01727 +2023-11-19 07:00:00,2.745906,6.4660654,123.11135,121.72356,5.2765,959.923,0.0,73.25814 +2023-11-19 08:00:00,2.9410884,6.8818603,125.311295,125.537766,4.9765,959.6774,0.0,74.53395 +2023-11-19 09:00:00,3.2449963,7.323933,123.690094,124.992096,4.6765003,959.90485,0.0,76.109375 +2023-11-19 10:00:00,3.3600597,7.683749,126.528946,128.65984,4.4765,959.96155,0.0,78.29925 +2023-11-19 11:00:00,3.2202482,7.5,143.84172,143.13002,4.1265,959.8954,0.0,81.403206 +2023-11-19 12:00:00,3.088689,7.256032,150.9455,150.25522,3.8265,959.74384,0.0,82.2448 +2023-11-19 13:00:00,3.0805843,7.2718635,144.24602,148.49579,3.3765,959.09045,0.0,81.007385 +2023-11-19 14:00:00,3.623534,7.657676,129.40063,139.23648,3.7765,959.4505,0.0,78.757065 +2023-11-19 15:00:00,4.4102154,8.273452,122.969406,135.48964,5.9265003,960.23444,0.0,71.55919 +2023-11-19 16:00:00,3.7802117,9.372299,127.47626,140.19447,7.7265,961.0428,0.0,66.25989 +2023-11-19 17:00:00,4.022437,6.2289643,124.875404,132.39738,10.2265005,961.217,0.0,58.63209 +2023-11-19 18:00:00,4.3416586,5.9464273,128.45374,132.27362,12.2765,960.7336,0.0,51.551655 +2023-11-19 19:00:00,4.89183,6.5436993,139.14471,141.20343,13.5765,960.20703,0.0,46.18722 +2023-11-19 20:00:00,5.2630787,7.200694,141.17017,142.33432,13.8265,959.87177,0.0,43.382168 +2023-11-19 21:00:00,4.404543,6.940461,140.52757,143.79045,12.9265,959.6172,0.0,46.66477 +2023-11-19 22:00:00,4.2201896,7.5166483,143.67308,146.94417,12.0765,959.84485,0.0,48.639763 +2023-11-19 23:00:00,3.828838,7.640026,139.23648,142.98003,10.9765005,959.93115,0.0,51.011993 +2023-11-20 00:00:00,3.748333,7.5927596,136.08084,139.80803,10.2265005,960.2694,0.0,53.431908 +2023-11-20 01:00:00,4.244997,8.062258,133.09087,136.00499,10.4765005,960.12524,0.0,51.42664 +2023-11-20 02:00:00,4.6861496,8.556284,129.80553,134.52655,10.2265005,960.4589,0.0,51.72952 +2023-11-20 03:00:00,4.816638,8.626702,131.63345,135.0001,9.8765,960.7741,0.0,52.954556 +2023-11-20 04:00:00,4.816638,8.414867,131.63345,134.5186,9.0765,961.38605,0.0,58.761883 +2023-11-20 05:00:00,4.967897,8.421994,130.10085,132.594,8.5765,961.9572,0.1,62.3215 +2023-11-20 06:00:00,4.6872168,8.140025,123.690094,127.01076,7.7765,962.37787,0.2,70.90422 +2023-11-20 07:00:00,4.3416586,7.738863,118.92633,122.868675,7.0765,962.6269,0.1,75.703545 +2023-11-20 08:00:00,4.1231055,7.2945185,112.833694,118.67305,6.7265,962.84576,0.0,76.45247 +2023-11-20 09:00:00,4.0521603,7.2235723,105.75124,111.94876,6.5265,963.0923,0.0,75.60986 +2023-11-20 10:00:00,4.3011627,7.4464755,107.592514,112.08723,6.2765,963.42444,0.0,74.49811 +2023-11-20 11:00:00,4.0804415,7.3539104,107.10281,112.38018,5.5765,963.6717,0.0,76.260864 +2023-11-20 12:00:00,3.956008,6.835203,106.14441,110.55613,5.6265,964.3438,0.0,75.45547 +2023-11-20 13:00:00,3.7013512,6.3505907,91.54813,97.236824,5.7765,965.224,0.0,74.675934 +2023-11-20 14:00:00,3.9,6.4381676,90.0,96.24182,5.7265,966.0667,0.0,75.472694 +2023-11-20 15:00:00,3.8052595,5.6008925,86.98728,91.02301,5.7265,966.82416,0.1,77.65873 +2023-11-20 16:00:00,4.00125,5.500909,88.56794,91.0416,5.6765003,967.57227,0.2,81.32399 +2023-11-20 17:00:00,4.00125,5.6008925,88.56794,91.02301,5.5265,967.92255,0.2,85.73679 +2023-11-20 18:00:00,4.0199504,5.346027,95.7105,97.52373,5.6265,968.03613,0.1,86.65869 +2023-11-20 19:00:00,3.4014704,4.509989,91.68465,93.814,5.5765,967.6479,0.0,87.26614 +2023-11-20 20:00:00,3.324154,4.418144,83.08887,84.805664,5.8765,967.7046,0.0,85.472694 +2023-11-20 21:00:00,3.7121422,5.0089917,85.364624,86.56644,6.3765,967.6093,0.0,81.994774 +2023-11-20 22:00:00,2.942788,4.031129,80.21766,82.875084,6.1265,967.94116,0.0,81.96191 +2023-11-20 23:00:00,1.7029386,3.448188,49.76371,60.461315,5.2765,968.3484,0.0,87.237305 +2023-11-21 00:00:00,1.7888545,3.4713109,26.564985,41.49638,4.9265003,968.5661,0.0,89.072556 +2023-11-21 01:00:00,2.0518284,4.060788,43.02507,52.001225,5.2765,968.25366,0.0,78.98547 +2023-11-21 02:00:00,1.4866068,2.9832866,19.653913,39.55964,5.1265,968.50946,0.0,79.24541 +2023-11-21 03:00:00,0.8,2.0248458,360.0,32.905247,5.0265,968.30115,0.0,80.370636 +2023-11-21 04:00:00,0.5,1.0770329,323.13,21.801476,4.9265003,968.18744,0.0,82.38803 +2023-11-21 05:00:00,0.70710677,0.781025,278.13,309.8055,4.7765,967.875,0.0,84.74846 +2023-11-21 06:00:00,0.86023253,1.3000001,215.53777,202.6199,4.7265,967.01355,0.0,86.26144 +2023-11-21 07:00:00,2.34094,3.7696154,250.0168,248.19853,4.8765,966.37946,0.0,84.75983 +2023-11-21 08:00:00,4.440721,7.543209,277.76508,284.58896,5.1765003,966.0577,0.2,88.46759 +2023-11-21 09:00:00,7.9259067,12.258875,330.5242,331.76263,5.2765,966.07635,0.0,84.50542 +2023-11-21 10:00:00,8.318654,12.701574,332.81897,332.8298,4.3765,966.28424,0.2,78.84885 +2023-11-21 11:00:00,8.386298,12.937543,329.15347,330.85947,3.3265,966.46216,0.0,60.14188 +2023-11-21 12:00:00,8.130191,12.965339,328.06937,328.88474,1.3765,967.03125,0.0,55.68911 +2023-11-21 13:00:00,7.9924965,12.8280945,328.2986,329.03632,-0.07350001,966.842,0.0,60.655636 +2023-11-21 14:00:00,8.070935,12.762445,326.113,327.8043,-0.3235,967.36005,0.0,60.359703 +2023-11-21 15:00:00,8.099383,11.819053,327.09476,327.7891,0.2765,968.1403,0.0,57.346138 +2023-11-21 16:00:00,8.682165,12.0415945,327.22513,327.89377,0.92649996,968.6459,0.0,53.674114 +2023-11-21 17:00:00,8.321658,11.320778,327.26477,327.99466,1.6265,968.9719,0.0,50.847847 +2023-11-21 18:00:00,8.381527,11.4284725,324.22385,325.3365,2.2264998,968.6154,0.0,49.093376 +2023-11-21 19:00:00,8.300602,11.322544,323.82028,324.34457,2.6764998,968.04016,0.0,47.731647 +2023-11-21 20:00:00,8.070935,11.0385685,326.113,326.45386,2.8265,968.1639,0.0,47.40904 +2023-11-21 21:00:00,8.241965,11.4284725,324.3814,325.3365,2.4264998,968.2756,0.0,48.39972 +2023-11-21 22:00:00,7.4886575,10.678015,325.8855,326.45874,1.6265,968.4989,0.0,48.72937 +2023-11-21 23:00:00,5.6302752,9.211407,326.59216,327.86276,0.42650002,968.9264,0.0,50.699837 +2023-11-22 00:00:00,5.161395,8.792042,324.46225,326.12915,-0.22350001,969.0819,0.0,49.725597 +2023-11-22 01:00:00,5.6859474,9.625487,325.75092,327.30054,-0.8735,968.9533,0.0,47.42544 +2023-11-22 02:00:00,5.3,9.141663,328.10925,329.78876,-1.1235,968.7145,0.0,48.492268 +2023-11-22 03:00:00,4.6647615,8.324061,329.03632,331.27975,-1.3735,968.57025,0.0,49.38871 +2023-11-22 04:00:00,3.7802117,7.3498297,322.52374,326.0937,-1.7235,968.217,0.0,51.07814 +2023-11-22 05:00:00,3.1144822,6.670832,312.39737,319.86456,-2.0735002,967.769,0.0,52.204937 +2023-11-22 06:00:00,2.5806975,6.0827627,305.53775,316.33215,-2.3235002,967.4355,0.0,52.757675 +2023-11-22 07:00:00,1.9235383,4.8826222,278.97253,304.9921,-2.7235,966.7882,0.0,54.55965 +2023-11-22 08:00:00,1.56205,3.026549,230.19447,277.59454,-3.1235,965.5736,0.0,57.556797 +2023-11-22 09:00:00,2.8999999,4.6957426,223.60289,243.43501,-3.0235002,965.1212,0.0,57.13023 +2023-11-22 10:00:00,3.6400552,7.029225,217.18478,230.19447,-2.7735002,964.2262,0.0,53.261147 +2023-11-22 11:00:00,3.9962482,7.7077885,211.70139,224.47443,-2.5235002,963.6146,0.0,49.245983 +2023-11-22 12:00:00,4.7885275,8.886507,208.70586,219.06258,-2.1735,962.92834,0.0,46.659966 +2023-11-22 13:00:00,5.5036354,10.324728,204.70241,211.53474,-2.5735002,961.52515,0.0,50.6286 +2023-11-22 14:00:00,6.484597,11.512167,206.56499,212.5857,-1.7235,961.127,0.0,46.795517 +2023-11-22 15:00:00,7.937884,14.373587,199.11981,211.92084,0.5265,960.5286,0.0,39.87734 +2023-11-22 16:00:00,7.2111025,12.971122,199.44012,205.57724,3.3265,959.45953,0.0,33.981617 +2023-11-22 17:00:00,7.3054776,11.346365,199.17911,202.27031,5.7265,958.682,0.0,30.135931 +2023-11-22 18:00:00,8.100617,11.610771,208.77971,210.54053,7.8765,957.3766,0.0,27.805843 +2023-11-22 19:00:00,7.864477,11.395174,221.39143,222.5104,8.8265,956.22455,0.0,29.77131 +2023-11-22 20:00:00,7.0092793,10.131634,227.89134,228.60138,9.3765,955.66156,0.0,30.7522 +2023-11-22 21:00:00,6.021628,9.76166,234.46223,240.54642,9.2765,955.35925,0.0,32.29407 +2023-11-22 22:00:00,5.0990195,9.551963,244.44008,250.42677,7.5765,955.23773,0.0,37.503033 +2023-11-22 23:00:00,4.6840153,9.80051,253.8865,261.7873,5.0765,955.0578,0.0,45.92871 +2023-11-23 00:00:00,4.7010636,9.865597,268.78116,280.51257,4.3265,955.2954,0.0,50.267193 +2023-11-23 01:00:00,5.9682493,10.404326,301.29297,305.21768,7.9765005,956.4479,0.0,45.40591 +2023-11-23 02:00:00,6.4899926,10.875661,326.3099,327.77127,6.5765,957.3256,0.0,49.595875 +2023-11-23 03:00:00,6.795587,10.941663,327.01147,329.2159,3.8765,958.52295,0.0,63.025692 +2023-11-23 04:00:00,7.169379,11.500435,329.8587,331.42938,1.8765,959.5603,0.0,68.68284 +2023-11-23 05:00:00,7.066117,11.315917,333.0724,334.3408,0.3765,960.594,0.0,64.09968 +2023-11-23 06:00:00,7.2615423,11.624543,337.3194,338.29004,-0.5235,961.5526,0.0,60.076756 +2023-11-23 07:00:00,7.093659,11.388591,338.4985,339.97382,-1.0735,962.48456,0.0,56.984776 +2023-11-23 08:00:00,6.7230945,10.884851,337.249,339.56708,-1.6735,963.6892,0.0,57.94479 +2023-11-23 09:00:00,6.835203,10.878419,339.44388,341.23184,-2.3235002,964.88336,0.0,58.91595 +2023-11-23 10:00:00,6.926038,11.016352,342.34976,344.19742,-3.2235,965.3647,0.0,61.037365 +2023-11-23 11:00:00,6.2625875,10.088112,340.40762,342.10376,-4.0735,966.61053,0.0,49.783657 +2023-11-23 12:00:00,6.1465435,9.90202,338.02542,339.91794,-4.7735,967.7909,0.0,44.935932 +2023-11-23 13:00:00,6.6309876,9.786215,336.91483,338.416,-5.3735,969.1797,0.0,52.515038 +2023-11-23 14:00:00,6.670832,9.585406,336.12473,336.6444,-5.6735,970.25165,0.0,54.384197 +2023-11-23 15:00:00,6.6850576,9.398404,338.03937,339.44388,-5.6235,971.0175,0.0,50.343235 +2023-11-23 16:00:00,6.8007355,9.108238,340.23273,340.76923,-4.8234997,972.03204,0.0,47.189774 +2023-11-23 17:00:00,6.926038,9.330058,342.34976,342.53598,-4.2735,972.3333,0.0,46.589947 +2023-11-23 18:00:00,6.8007355,9.080198,342.8972,343.3611,-3.6235,972.1823,0.0,43.29962 +2023-11-23 19:00:00,6.6098413,8.728115,342.38733,341.98013,-3.1235,972.3781,0.0,42.92579 +2023-11-23 20:00:00,6.514599,8.602325,342.12122,342.40747,-2.9735,972.40857,0.0,40.748108 +2023-11-23 21:00:00,6.293648,8.477028,342.42865,342.8475,-3.3735,972.7056,0.0,40.790443 +2023-11-23 22:00:00,6.0440054,8.448077,343.66388,343.49554,-4.0735,973.31915,0.0,40.40346 +2023-11-23 23:00:00,5.2201533,8.228001,343.3007,343.76758,-4.8234997,973.827,0.0,38.686024 +2023-11-24 00:00:00,5.3851643,8.586617,344.93146,345.1545,-5.3234997,974.7635,0.0,39.509914 +2023-11-24 01:00:00,6.0876927,9.459387,345.73544,346.55136,-6.6235,976.09937,0.0,41.83094 +2023-11-24 02:00:00,6.139218,9.394147,347.77487,348.33124,-7.0734997,976.76086,0.0,39.11954 +2023-11-24 03:00:00,6.1188235,9.159148,348.6901,349.30353,-7.5235,977.32745,0.0,32.94625 +2023-11-24 04:00:00,5.770615,8.895505,351.02744,351.5967,-8.0235,977.9775,0.0,31.520012 +2023-11-24 05:00:00,5.3935146,8.302409,349.31512,350.99158,-8.2734995,978.7744,0.0,31.578539 +2023-11-24 06:00:00,5.001,7.6118326,348.4654,350.1665,-8.5234995,979.47656,0.0,32.62559 +2023-11-24 07:00:00,4.8270073,7.256721,346.82742,348.0707,-8.6235,979.9271,0.0,33.170403 +2023-11-24 08:00:00,4.4384685,6.865857,345.65063,347.38068,-8.7235,980.18933,0.0,34.1699 +2023-11-24 09:00:00,4.3737855,6.9720874,349.46088,351.75375,-8.8235,980.35657,0.0,36.130253 +2023-11-24 10:00:00,3.945884,6.152235,351.2539,352.52853,-8.8235,980.5454,0.0,37.570183 +2023-11-24 11:00:00,3.765634,5.656854,349.28693,351.87,-8.7734995,981.02795,0.0,38.909153 +2023-11-24 12:00:00,3.5171013,5.217279,345.17346,347.82855,-8.7734995,981.40546,0.0,39.756966 +2023-11-24 13:00:00,3.4234486,5.903389,353.29025,358.05856,-10.3235,982.4889,0.0,52.593567 +2023-11-24 14:00:00,3.354102,6.412488,349.69522,356.42374,-10.3235,982.77203,0.0,53.040802 +2023-11-24 15:00:00,3.8118236,5.2038445,355.48608,357.79745,-9.0234995,983.05133,0.0,46.288452 +2023-11-24 16:00:00,3.5128336,4.527693,4.8990126,6.3401003,-7.4735,983.2864,0.0,40.17285 +2023-11-24 17:00:00,3.0413814,3.8639357,9.462261,10.437421,-6.0235,983.119,0.0,36.405025 +2023-11-24 18:00:00,2.828427,3.4525354,8.130019,10.007925,-4.8234997,982.23505,0.0,33.520714 +2023-11-24 19:00:00,2.6172504,3.224903,6.581848,7.12493,-3.9235,981.47577,0.0,31.460365 +2023-11-24 20:00:00,2.4,3.0,360.0,360.0,-3.4735,980.9067,0.0,30.419342 +2023-11-24 21:00:00,2.184033,2.7892652,344.05453,345.4655,-3.5735002,980.50824,0.0,30.777678 +2023-11-24 22:00:00,2.1540658,2.7856774,338.19852,338.9624,-4.0735,980.3113,0.0,31.951448 +2023-11-24 23:00:00,1.5652475,3.231099,333.43503,338.19852,-6.0734997,979.7084,0.0,37.170242 +2023-11-25 00:00:00,1.4866068,3.5902646,340.3461,347.125,-5.8735,979.65576,0.0,36.144554 +2023-11-25 01:00:00,1.2041595,2.9017239,355.23645,358.0251,-5.8735,979.56134,0.0,39.170185 +2023-11-25 02:00:00,1.2041595,2.6172504,355.23645,6.581848,-5.5235,978.9728,0.0,37.66204 +2023-11-25 03:00:00,0.9055385,1.868154,353.6599,15.524177,-5.3234997,978.542,0.0,36.319756 +2023-11-25 04:00:00,0.31622776,1.0,341.56494,36.86999,-5.3735,977.96466,0.0,36.30385 +2023-11-25 05:00:00,0.36055514,0.31622776,213.6901,161.56496,-5.2235,977.61774,0.0,35.89348 +2023-11-25 06:00:00,0.86023253,1.2083046,215.53777,204.44394,-5.2235,977.05096,0.0,36.351566 +2023-11-25 07:00:00,1.2083046,1.6155494,204.44394,201.80147,-5.1735,976.2113,0.0,37.142582 +2023-11-25 08:00:00,1.6552945,2.4166093,205.01686,204.44394,-5.2235,975.3505,0.0,38.559254 +2023-11-25 09:00:00,1.9697715,3.758989,203.9625,208.61037,-5.4235,974.74274,0.0,41.33784 +2023-11-25 10:00:00,2.7294688,4.031129,208.44283,209.7448,-5.0734997,974.05914,0.0,41.794193 +2023-11-25 11:00:00,2.5553863,3.9962482,210.57915,211.70139,-5.0235,973.40814,0.0,42.334064 +2023-11-25 12:00:00,2.9681644,4.0496917,212.61923,212.90524,-4.6735,973.00757,0.0,41.746254 +2023-11-25 13:00:00,2.7730849,3.9357338,205.64096,207.21602,-5.1235,973.2931,0.1,53.23121 +2023-11-25 14:00:00,2.9529645,4.118252,208.30066,209.0545,-5.1235,972.9152,0.0,57.01417 +2023-11-25 15:00:00,3.0413814,4.2059484,207.40749,208.39293,-4.7235,972.43054,0.0,56.666927 +2023-11-25 16:00:00,3.0,3.8418746,216.86998,218.65984,-4.1735,971.976,0.0,56.59097 +2023-11-25 17:00:00,3.0232434,3.8832977,214.21576,214.50858,-3.3235002,971.2983,0.0,55.26471 +2023-11-25 18:00:00,3.1400635,4.060788,217.23491,217.99878,-3.5735002,970.019,0.1,59.99313 +2023-11-25 19:00:00,3.4205263,4.3416586,217.87505,218.45374,-3.1735,968.6825,0.2,62.01683 +2023-11-25 20:00:00,3.6878178,4.750789,220.60121,220.73201,-3.2735002,967.71716,0.3,66.25634 +2023-11-25 21:00:00,3.6069376,4.8083262,223.87679,224.9999,-3.4735,966.63727,0.2,68.04277 +2023-11-25 22:00:00,3.3421547,4.404543,218.92755,219.47243,-3.7235,965.8308,0.1,68.78759 +2023-11-25 23:00:00,2.8017852,4.920366,214.82455,217.56866,-4.4235,965.2168,0.0,71.93288 +2023-11-26 00:00:00,2.9732137,5.658622,222.27362,226.43204,-5.1235,964.69653,0.0,75.539024 +2023-11-26 01:00:00,3.0805843,5.060632,215.75398,217.77574,-4.1235,964.52167,0.0,73.97773 +2023-11-26 02:00:00,2.842534,4.560702,230.71062,232.12495,-4.2235,963.65125,0.0,73.38656 +2023-11-26 03:00:00,3.0,4.9396353,233.13002,238.24055,-4.2735,963.2629,0.0,71.96292 +2023-11-26 04:00:00,3.940812,5.964059,234.29321,235.24402,-4.1235,963.0099,0.0,67.6332 +2023-11-26 05:00:00,4.0,6.1611686,233.13002,234.24602,-4.3735,962.109,0.0,66.785416 +2023-11-26 06:00:00,3.920459,6.1032777,232.25313,235.0079,-4.5734997,961.2182,0.0,67.532265 +2023-11-26 07:00:00,3.6878178,6.324555,229.39879,235.30478,-5.1735,959.77423,0.0,69.01258 +2023-11-26 08:00:00,4.244997,6.981404,226.90913,231.981,-5.1235,958.8396,0.0,66.613464 +2023-11-26 09:00:00,4.360046,7.7103825,216.60716,223.4235,-5.9735,958.28894,0.0,69.66222 +2023-11-26 10:00:00,4.7201695,8.631338,216.38445,223.12213,-6.4735,957.33704,0.0,71.8022 +2023-11-26 11:00:00,4.8270073,8.7045965,219.95749,227.32785,-6.5235,956.66595,0.0,71.792046 +2023-11-26 12:00:00,5.0,8.858894,233.13002,241.69934,-6.2735,956.4336,0.0,70.43218 +2023-11-26 13:00:00,4.5891175,8.4053545,258.6901,272.04535,-5.5734997,956.1981,0.0,71.419075 +2023-11-26 14:00:00,5.1,8.514693,298.0724,303.50345,-2.7735002,956.28705,0.1,80.73349 +2023-11-26 15:00:00,7.496666,11.314592,313.91916,315.71606,-0.9735,956.7366,0.0,78.01 +2023-11-26 16:00:00,8.207314,11.810588,313.0251,313.97092,0.22649999,957.63275,0.0,64.5532 +2023-11-26 17:00:00,9.970456,13.860014,315.40628,315.58453,1.1265,958.1858,0.0,50.508125 +2023-11-26 18:00:00,9.548298,13.507404,313.72705,314.10025,0.2765,958.30475,0.0,53.078953 +2023-11-26 19:00:00,9.476286,13.435029,314.145,315.0001,-0.1735,958.5954,0.0,50.724754 +2023-11-26 20:00:00,8.9196415,12.8144455,317.72638,317.84668,-1.3235,959.1262,0.0,55.598488 +2023-11-26 21:00:00,8.626702,12.162237,315.0001,315.0001,-1.4235,959.6737,0.0,49.178493 +2023-11-26 22:00:00,8.146779,11.684606,311.51663,311.87778,-2.1235,960.4804,0.0,45.931114 +2023-11-26 23:00:00,6.902898,10.666771,308.5302,308.91147,-2.8735,961.182,0.0,45.334698 +2023-11-27 00:00:00,6.242595,10.160708,305.21768,306.1933,-4.0735,961.60266,0.0,49.182327 +2023-11-27 01:00:00,6.529931,10.555094,310.0302,311.54327,-6.8234997,962.176,0.0,58.420517 +2023-11-27 02:00:00,5.966573,9.849365,309.55963,311.29526,-7.5734997,962.49335,0.0,59.178394 +2023-11-27 03:00:00,5.8258047,9.7,309.42776,312.07495,-8.0735,962.7673,0.0,60.021473 +2023-11-27 04:00:00,5.700877,9.577578,307.87503,310.34167,-8.4735,963.2505,0.0,60.659103 +2023-11-27 05:00:00,5.5605755,9.295698,307.6943,310.2001,-8.8235,963.6492,0.0,61.06831 +2023-11-27 06:00:00,5.544367,9.276314,309.14398,311.94122,-9.1735,964.1423,0.0,61.482513 +2023-11-27 07:00:00,4.8600416,8.373769,306.6342,310.1559,-9.5735,964.1527,0.0,62.40296 +2023-11-27 08:00:00,4.4418464,7.742093,301.1849,305.53775,-9.9235,963.9844,0.0,64.14589 +2023-11-27 09:00:00,4.7853947,8.149233,296.02954,299.39597,-10.0735,964.42444,0.0,65.178154 +2023-11-27 10:00:00,5.0537114,8.523497,297.072,301.07898,-10.1735,964.4034,0.0,66.239784 +2023-11-27 11:00:00,4.7413077,8.130191,297.64587,301.93063,-10.2734995,964.4767,0.0,67.04148 +2023-11-27 12:00:00,4.5177426,7.803204,297.69937,300.83777,-10.3235,964.8434,0.0,68.708755 +2023-11-27 13:00:00,4.3416586,7.5927596,308.45374,310.192,-11.4735,965.07043,0.0,74.05462 +2023-11-27 14:00:00,4.318565,7.2138753,312.18436,313.87677,-11.3735,965.5635,0.0,74.073975 +2023-11-27 15:00:00,5.5973206,7.864477,318.62158,318.60855,-9.7734995,966.1867,0.0,65.520164 +2023-11-27 16:00:00,5.9464273,7.8568444,317.72638,317.5792,-8.8235,966.6697,0.0,60.56722 +2023-11-27 17:00:00,6.224147,8.275868,313.69812,313.53125,-8.0735,966.7324,0.0,55.276524 +2023-11-27 18:00:00,6.0959,7.939773,311.009,310.91428,-7.4235,966.6789,0.0,52.565247 +2023-11-27 19:00:00,5.9816384,7.902531,308.21106,308.32016,-6.8735,966.22626,0.0,50.386112 +2023-11-27 20:00:00,6.0440054,7.964923,308.9559,308.8845,-6.3234997,966.43414,0.0,47.71077 +2023-11-27 21:00:00,6.1073728,8.168843,309.6854,309.5361,-6.2235,966.644,0.0,47.741207 +2023-11-27 22:00:00,6.1846585,8.745856,309.09384,308.96674,-6.3735,967.17957,0.0,49.503937 +2023-11-27 23:00:00,4.8795495,8.132035,314.16977,315.49814,-7.3234997,967.54944,0.0,54.135544 +2023-11-28 00:00:00,4.384062,7.7155685,315.0001,317.62646,-7.8735,968.00146,0.0,54.651596 +2023-11-28 01:00:00,4.384062,7.5006666,315.0001,317.1611,-9.5234995,968.3156,0.0,59.142235 +2023-11-28 02:00:00,3.905125,6.9999995,320.1945,323.13,-9.8235,968.62976,0.0,56.883045 +2023-11-28 03:00:00,3.7802117,6.8242216,322.52374,325.14548,-10.2235,968.92224,0.0,57.249565 +2023-11-28 04:00:00,3.2649655,6.242595,319.9698,324.78232,-10.4735,969.2464,0.0,59.132076 +2023-11-28 05:00:00,2.828427,5.841233,315.0001,321.9529,-10.6235,969.4033,0.0,61.10434 +2023-11-28 06:00:00,2.2022715,5.0447993,309.47244,320.63068,-10.8235,969.4549,0.0,62.86488 +2023-11-28 07:00:00,1.5231546,4.0360875,293.1986,311.98712,-11.1735,969.19135,0.0,65.45395 +2023-11-28 08:00:00,1.3341664,3.1384711,257.00537,292.47946,-11.3235,968.87604,0.0,66.79576 +2023-11-28 09:00:00,1.5,3.206244,233.13002,266.42374,-11.1235,969.0134,0.0,67.12119 +2023-11-28 10:00:00,1.8027756,3.577709,213.6901,243.43501,-10.9735,968.3848,0.0,67.15614 +2023-11-28 11:00:00,2.4698179,4.5343137,201.37068,228.57643,-10.6235,967.8937,0.0,68.0768 +2023-11-28 12:00:00,3.1384711,5.517246,202.47948,223.53127,-9.7734995,967.7911,0.0,71.99747 +2023-11-28 13:00:00,3.7854989,7.021396,192.20045,206.20006,-10.2235,967.12933,0.0,84.24059 +2023-11-28 14:00:00,4.4384685,8.207923,194.34937,202.19034,-9.0234995,967.0054,0.0,83.38597 +2023-11-28 15:00:00,4.652956,10.030454,188.65247,200.42241,-6.9735,966.9611,0.0,72.27405 +2023-11-28 16:00:00,5.0635953,8.973851,189.0902,194.19113,-4.1735,966.5904,0.0,60.79435 +2023-11-28 17:00:00,6.0827627,8.7097645,189.46225,192.60016,-1.4235,965.72424,0.0,53.642952 +2023-11-28 18:00:00,7.300685,10.165136,193.46523,195.40349,0.72650003,964.067,0.0,48.655304 +2023-11-28 19:00:00,8.036168,11.257886,196.63103,198.11316,2.1764998,962.55066,0.0,45.9523 +2023-11-28 20:00:00,8.450444,12.033287,200.79419,201.4478,2.8265,961.25653,0.0,46.503468 +2023-11-28 21:00:00,8.285529,12.083046,203.47101,204.44394,2.7264998,960.0073,0.0,48.48727 +2023-11-28 22:00:00,7.7201037,12.322742,216.57312,218.07893,1.9764999,959.48486,0.0,52.33699 +2023-11-28 23:00:00,6.7178864,11.618089,225.60301,228.48943,0.47650003,959.28937,0.0,59.188515 +2023-11-29 00:00:00,6.021628,10.941663,234.46223,239.21593,-0.22350001,959.2473,0.0,64.20166 +2023-11-29 01:00:00,5.2325897,10.096039,243.9247,253.89862,-0.5735,958.6116,0.0,67.63845 +2023-11-29 02:00:00,5.0,10.02447,253.73972,265.9959,-0.3235,958.0931,0.0,62.962284 +2023-11-29 03:00:00,5.261178,10.500476,261.2539,270.54565,0.22649999,957.63275,0.0,59.57921 +2023-11-29 04:00:00,5.500909,10.850346,268.9584,279.54907,0.7765,957.6452,0.0,58.59019 +2023-11-29 05:00:00,5.124451,10.3580885,275.59924,285.10962,1.0265,957.5042,0.0,60.241474 +2023-11-29 06:00:00,5.261178,10.374005,278.74606,287.38705,1.1765,957.628,0.0,61.434967 +2023-11-29 07:00:00,5.1478148,10.248902,277.81522,287.0206,0.8765,957.47516,0.0,63.01324 +2023-11-29 08:00:00,5.0487623,10.1242285,277.9695,286.6451,0.42650002,957.861,0.0,64.845764 +2023-11-29 09:00:00,4.669047,9.585927,279.86575,290.13638,0.026500002,957.8777,0.0,66.750725 +2023-11-29 10:00:00,4.440721,9.265528,277.76508,288.2395,-0.3735,957.8942,0.0,68.45798 +2023-11-29 11:00:00,4.2296567,8.91852,276.78888,287.62238,-0.8235,957.9006,0.0,69.67366 +2023-11-29 12:00:00,4.0199504,8.602325,275.7105,287.5925,-1.2735,957.9068,0.0,70.111755 +2023-11-29 13:00:00,3.5057096,7.7201037,266.72958,286.55716,-2.5735002,957.5554,0.0,80.15174 +2023-11-29 14:00:00,3.6687872,7.416873,252.55272,273.8654,-2.7735002,957.7047,0.0,79.51468 +2023-11-29 15:00:00,4.609772,7.723341,245.65892,265.5445,-0.7235,958.393,0.0,67.86343 +2023-11-29 16:00:00,4.0718546,8.920201,245.32315,266.14328,1.9265,958.81287,0.0,55.625526 +2023-11-29 17:00:00,3.757659,5.8523498,244.7989,253.11313,4.5765,958.7499,0.0,46.131786 +2023-11-29 18:00:00,3.8910153,5.2924476,244.09354,247.79646,6.7265,957.82697,0.0,39.901005 +2023-11-29 19:00:00,4.167733,5.6824293,239.74365,241.63104,8.1265,957.0438,0.0,36.401707 +2023-11-29 20:00:00,4.743417,6.5734315,235.30478,236.79341,8.3265,956.6068,0.0,35.77452 +2023-11-29 21:00:00,3.9824615,6.989278,231.1155,236.08253,7.2265,955.7413,0.0,38.2641 +2023-11-29 22:00:00,3.905125,7.993122,219.80553,226.5207,4.8765,955.1149,0.0,44.832813 +2023-11-29 23:00:00,4.167733,8.902246,210.25635,218.15727,2.0265,954.10205,0.0,53.773415 +2023-11-30 00:00:00,4.438468,9.364828,202.52061,210.12422,1.0265,953.53156,0.0,56.23781 +2023-11-30 01:00:00,4.808326,9.995998,196.9276,199.88525,1.7265,952.34155,0.0,62.743565 +2023-11-30 02:00:00,5.724509,11.308846,199.38461,201.80147,1.8765,951.992,0.0,60.456455 +2023-11-30 03:00:00,5.9236813,11.269872,201.80147,206.33762,1.4765,951.4425,0.0,59.89931 +2023-11-30 04:00:00,6.1269894,11.543396,206.14677,211.90012,1.2765,951.02563,0.0,58.94442 +2023-11-30 05:00:00,6.328507,11.761377,211.4295,217.74687,1.2765,950.45807,0.0,58.94442 +2023-11-30 06:00:00,5.3740115,10.499524,224.9999,229.63554,0.92649996,950.2018,0.0,62.786854 +2023-11-30 07:00:00,5.0477715,9.928242,236.3099,243.6931,0.2765,950.0769,0.0,67.314285 +2023-11-30 08:00:00,4.4384685,8.927485,255.65063,265.50293,-0.4735,950.4991,0.0,70.81161 +2023-11-30 09:00:00,4.317406,8.989438,283.39252,297.13507,-0.77349997,950.91376,0.0,70.75047 +2023-11-30 10:00:00,5.5865912,10.729865,315.72513,320.67303,-0.5235,951.62415,0.0,66.37343 +2023-11-30 11:00:00,6.521503,11.621101,324.3601,326.5834,-1.0735,952.6517,0.0,72.044716 +2023-11-30 12:00:00,6.536819,11.449017,330.6901,332.9874,-1.5735,953.6881,0.0,79.098175 +2023-11-30 13:00:00,6.2265563,11.001818,330.14108,332.9692,-1.6735,954.8974,0.0,83.98854 +2023-11-30 14:00:00,6.003332,10.6004715,330.01843,332.4681,-2.0235,955.8686,0.0,85.85869 +2023-11-30 15:00:00,5.269725,11.053506,326.61145,331.34827,-0.8735,956.8508,0.0,78.90957 +2023-11-30 16:00:00,6.3631754,9.042677,329.80847,330.88394,0.3765,957.8513,0.0,72.32844 +2023-11-30 17:00:00,6.3560996,8.732124,335.85446,336.3706,1.5265,958.5466,0.0,66.08675 +2023-11-30 18:00:00,5.8600345,7.920227,334.7469,335.37646,2.3265,958.70044,0.0,61.257187 +2023-11-30 19:00:00,5.8180757,7.6967525,335.63754,335.43283,2.8265,958.7963,0.0,56.292667 +2023-11-30 20:00:00,5.7384667,7.7077885,337.45688,337.09418,2.4264998,959.0034,0.0,57.260204 +2023-11-30 21:00:00,5.3851647,7.31642,338.19852,338.34393,1.6765,959.3326,0.0,59.047813 +2023-11-30 22:00:00,4.7169905,7.5960517,338.8752,339.17902,0.5765,959.59247,0.0,62.701763 +2023-11-30 23:00:00,3.9293766,7.615773,345.25638,346.32867,-1.3735,959.778,0.0,71.16805 +2023-12-01 00:00:00,3.214032,7.0114193,354.64426,356.72958,-2.4235,960.2318,0.0,76.598915 +2023-12-01 01:00:00,3.471311,7.05762,348.3664,352.67368,-2.1235,960.76404,0.0,71.83674 +2023-12-01 02:00:00,3.354102,7.2249565,349.69522,355.23645,-2.9235,960.8884,0.0,75.34982 +2023-12-01 03:00:00,3.6124783,7.302739,355.23645,1.5693227,-3.1235,961.0373,0.0,75.89439 +2023-12-01 04:00:00,3.1064448,6.6272163,356.3087,5.19435,-3.2735002,961.29095,0.0,76.15996 +2023-12-01 05:00:00,2.9068885,6.449806,356.0549,7.12493,-3.6235,961.6931,0.0,77.87557 +2023-12-01 06:00:00,2.7018514,6.2169123,2.1210518,11.129155,-4.0235,961.80176,0.0,79.322525 +2023-12-01 07:00:00,2.6172504,6.140033,6.581848,16.073652,-4.5734997,961.50165,0.0,82.03619 +2023-12-01 08:00:00,2.6683328,6.0008335,12.99463,23.57473,-4.9735,961.42065,0.0,84.22496 +2023-12-01 09:00:00,2.236068,5.5803227,26.564985,36.253937,-5.3234997,961.72754,0.0,86.48608 +2023-12-01 10:00:00,2.4698176,5.658622,31.75944,43.567978,-5.3234997,961.25525,0.0,86.15354 +2023-12-01 11:00:00,2.4413111,5.658622,34.9921,46.432037,-5.5734997,961.0155,0.0,86.79379 +2023-12-01 12:00:00,2.1260293,5.0249376,48.814175,58.840755,-5.6235,961.28845,0.0,86.4542 +2023-12-01 13:00:00,1.7804494,4.632494,38.157276,57.3391,-7.5235,961.65393,0.0,88.30204 +2023-12-01 14:00:00,1.7804494,4.8548946,38.157276,57.619343,-7.2735,961.8001,0.0,87.98102 +2023-12-01 15:00:00,2.5942245,5.0,27.552727,53.13002,-4.9735,962.2708,0.0,77.95513 +2023-12-01 16:00:00,2.2022715,3.4669871,50.52757,56.768288,-3.2735002,962.803,0.0,64.722275 +2023-12-01 17:00:00,2.641969,3.443835,60.524208,64.17907,-1.8735,962.6097,0.0,52.677265 +2023-12-01 18:00:00,2.3345237,2.9068882,46.73567,49.185013,-0.6235,962.0059,0.0,45.11111 +2023-12-01 19:00:00,2.418677,3.0232434,29.744795,34.215755,-0.22350001,961.5168,0.0,42.272064 +2023-12-01 20:00:00,2.5553863,3.1622775,30.579157,34.69522,0.17650001,961.02765,0.0,39.293297 +2023-12-01 21:00:00,2.641969,3.3615475,29.475794,30.379045,0.0765,960.9135,0.0,38.63572 +2023-12-01 22:00:00,2.147091,3.9446166,27.758451,30.465475,-0.77349997,960.65265,0.0,41.43157 +2023-12-01 23:00:00,1.8601075,4.5343137,36.253937,41.42357,-2.6235,960.57,0.0,47.661358 +2023-12-02 00:00:00,2.0,4.9406476,53.13002,54.057793,-3.0735002,960.85834,0.0,49.28073 +2023-12-02 01:00:00,2.570992,5.9665737,76.50425,76.42955,-3.1235,961.22626,0.0,50.873997 +2023-12-02 02:00:00,2.7,6.2,90.0,90.0,-3.4235,961.3553,0.0,53.50201 +2023-12-02 03:00:00,2.828427,6.2968245,98.13002,100.06063,-3.4235,961.4498,0.0,54.363285 +2023-12-02 04:00:00,2.6925824,6.074537,111.801476,110.22495,-3.6735,961.3996,0.0,55.38784 +2023-12-02 05:00:00,3.0528674,6.053924,121.60746,120.80138,-2.9735,961.63446,0.0,51.945988 +2023-12-02 06:00:00,3.2015622,6.466065,128.65984,129.35173,-3.3235002,961.56445,0.0,52.89269 +2023-12-02 07:00:00,3.3941126,6.789698,135.0001,136.1934,-3.5235002,961.2408,0.0,53.047386 +2023-12-02 08:00:00,3.1890438,6.6603303,138.81418,138.65233,-4.0735,961.13025,0.0,55.055622 +2023-12-02 09:00:00,3.275668,6.6370173,148.73633,149.18436,-4.0735,961.5082,0.0,55.276485 +2023-12-02 10:00:00,3.5341196,7.077429,154.8852,156.69508,-4.6235,961.4916,0.0,57.84121 +2023-12-02 11:00:00,3.7696154,7.4946647,158.19853,161.3232,-4.7235,961.3769,0.0,58.98222 +2023-12-02 12:00:00,4.049691,7.816009,159.77505,163.65175,-4.7235,961.188,0.0,60.171207 +2023-12-02 13:00:00,4.1629314,8.099382,155.89777,159.77505,-4.9235,960.8641,0.0,65.096306 +2023-12-02 14:00:00,4.3324356,8.393451,161.14674,164.8047,-5.0235,960.74927,0.0,68.23379 +2023-12-02 15:00:00,4.838388,9.159148,161.93944,169.30354,-3.1235,960.84827,0.0,62.029343 +2023-12-02 16:00:00,4.4384685,6.726812,165.65063,168.85715,-0.7235,960.9459,0.0,56.637123 +2023-12-02 17:00:00,4.5891175,6.2968245,168.69011,169.93938,1.3265,960.49457,0.0,53.578957 +2023-12-02 18:00:00,5.5326304,7.4242845,173.77426,175.36462,2.6764998,959.9976,0.0,54.364853 +2023-12-02 19:00:00,4.9497476,6.5490456,171.86998,172.9836,3.0765,959.1279,0.0,52.048347 +2023-12-02 20:00:00,5.141984,6.865857,166.50426,167.38068,3.1764998,958.4847,0.0,51.09459 +2023-12-02 21:00:00,5.096077,7.1309185,164.05453,165.37909,2.8265,958.134,0.0,52.776363 +2023-12-02 22:00:00,3.8999999,7.083784,157.3801,161.0534,1.4265,957.5815,0.0,60.80218 +2023-12-02 23:00:00,3.6715121,7.8294315,150.64235,155.07155,-0.8735,956.9453,0.0,72.63212 +2023-12-03 00:00:00,4.750789,9.261209,149.65683,155.09526,-1.1735,956.79205,0.0,74.80727 +2023-12-03 01:00:00,5.5569777,9.972963,149.74365,153.1781,-1.0235,956.44324,0.0,73.99061 +2023-12-03 02:00:00,5.412947,9.415413,154.85526,157.52052,-0.77349997,956.11414,0.0,74.87953 +2023-12-03 03:00:00,4.8703184,8.640023,160.82089,163.87234,-0.9235,955.9901,0.0,78.31166 +2023-12-03 04:00:00,4.560702,8.417244,164.74483,166.95436,-1.7235,955.64404,0.0,84.614525 +2023-12-03 05:00:00,4.609772,8.485281,167.4712,171.86998,-2.1235,955.2815,0.0,88.46045 +2023-12-03 06:00:00,4.527693,8.202438,173.6599,178.60284,-1.9735,954.933,0.0,88.80512 +2023-12-03 07:00:00,4.7095647,8.309633,176.34785,182.75905,-1.6235,954.43475,0.0,86.87036 +2023-12-03 08:00:00,4.418144,7.6006575,174.80566,180.75383,-1.2235,953.8515,0.0,84.35774 +2023-12-03 09:00:00,3.436568,6.2,171.6342,180.0,-1.2235,953.5678,0.0,84.67322 +2023-12-03 10:00:00,2.7166157,5.6035705,173.6599,182.04536,-1.8735,953.25116,0.0,89.14588 +2023-12-03 11:00:00,2.9732137,6.166036,160.34608,171.60716,-2.8735,952.86505,0.0,92.46683 +2023-12-03 12:00:00,3.2649658,6.5802736,152.6502,163.21727,-3.0235002,952.45703,0.0,92.8051 +2023-12-03 13:00:00,2.8231187,5.920304,157.06787,164.32042,-2.7735002,952.97906,0.0,94.92399 +2023-12-03 14:00:00,2.6832817,5.4120235,153.43501,163.90912,-2.9735,953.3176,0.0,95.271126 +2023-12-03 15:00:00,3.0364454,4.4384685,162.75845,165.65063,-1.5235,954.0762,0.0,88.84451 +2023-12-03 16:00:00,3.1064448,4.00125,176.30869,178.56793,0.1265,954.77625,0.0,80.546715 +2023-12-03 17:00:00,3.324154,4.1303754,173.08887,173.04713,1.6265,954.9713,0.0,73.11009 +2023-12-03 18:00:00,3.1256998,3.8327534,172.64772,172.50424,2.9764998,954.7561,0.0,67.904884 +2023-12-03 19:00:00,3.026549,3.8327534,172.40544,172.50424,4.2765,954.6235,0.0,63.121044 +2023-12-03 20:00:00,3.0066593,3.7054014,176.186,176.906,5.0265,954.57513,0.0,59.900723 +2023-12-03 21:00:00,2.3086793,2.9068885,184.96965,183.94511,4.6765003,954.8881,0.0,61.834637 +2023-12-03 22:00:00,1.6,2.2,180.0,180.0,2.6265,955.0681,0.0,77.72382 +2023-12-03 23:00:00,2.2203605,2.408319,172.23492,175.23645,-0.5735,955.3021,0.0,84.74902 +2023-12-04 00:00:00,1.7117243,1.9235383,186.70975,171.02745,-0.6235,955.95435,0.0,84.429054 +2023-12-04 01:00:00,1.5,1.8439089,270.0,310.60123,-2.1235,956.5104,0.0,86.819374 +2023-12-04 02:00:00,1.7029387,2.7018511,273.3664,308.991,-3.3735,956.92377,0.0,90.71242 +2023-12-04 03:00:00,1.5033296,2.5553863,266.186,300.57913,-3.6235,957.06274,0.0,91.38138 +2023-12-04 04:00:00,1.746425,3.3376637,256.75946,278.61557,-3.6735,957.24176,0.0,91.37793 +2023-12-04 05:00:00,1.5,2.9154758,233.13002,247.8336,-4.0735,957.3507,0.0,91.69692 +2023-12-04 06:00:00,2.1400933,4.1773195,217.40543,222.08908,-4.0235,957.4552,0.0,92.047966 +2023-12-04 07:00:00,2.6870058,5.7628117,224.9999,231.34018,-4.0235,957.6442,0.0,92.047966 +2023-12-04 08:00:00,2.4839485,5.72014,220.10085,233.53067,-3.9735,957.7487,0.0,91.70359 +2023-12-04 09:00:00,3.4409301,6.670832,215.53777,229.86458,-3.8735,957.6742,0.0,91.71025 +2023-12-04 10:00:00,4.0459857,8.091971,219.98683,230.01317,-3.5735002,957.63983,0.0,91.38482 +2023-12-04 11:00:00,4.1773195,8.21523,227.9109,238.43823,-3.2235,957.70984,0.0,90.7235 +2023-12-04 12:00:00,4.3863425,8.490582,226.8476,237.99466,-2.8235002,957.78937,0.0,89.7365 +2023-12-04 13:00:00,4.0718546,7.4632435,204.67685,215.18079,-3.7735002,957.50525,0.0,93.46378 +2023-12-04 14:00:00,4.565085,8.184131,208.8107,215.04945,-3.5235002,958.02783,0.0,94.53717 +2023-12-04 15:00:00,5.1312766,8.542833,213.07068,218.34561,-2.1735,958.9583,0.0,90.46228 +2023-12-04 16:00:00,4.9658837,7.647876,205.01686,207.23506,-0.6735,958.97003,0.0,82.559204 +2023-12-04 17:00:00,5.056679,7.2006946,204.5377,207.27667,0.7765,958.87476,0.0,74.04555 +2023-12-04 18:00:00,4.997999,6.7779055,199.88525,201.6445,2.5765,957.7077,0.0,65.10016 +2023-12-04 19:00:00,4.8104053,6.407808,200.69553,202.9638,3.2765,957.368,0.0,62.18357 +2023-12-04 20:00:00,4.554119,6.203225,199.23076,200.77234,3.4264998,957.0181,0.0,62.68459 +2023-12-04 21:00:00,3.5014284,5.813777,178.36346,183.94511,2.0765,956.57117,0.1,70.79756 +2023-12-04 22:00:00,3.1320918,5.59017,163.30067,169.6952,1.3765,956.7206,0.0,74.707504 +2023-12-04 23:00:00,3.224903,6.207254,172.87508,177.22984,0.5265,957.12384,0.0,78.8327 +2023-12-05 00:00:00,2.6019223,5.707889,182.20255,183.01273,-0.023500003,957.206,0.0,80.82482 +2023-12-05 01:00:00,2.3537204,5.622277,167.73524,174.89792,-2.1735,957.1623,0.0,89.4541 +2023-12-05 02:00:00,2.4,3.613862,180.0,194.4208,-3.6735,957.05273,0.0,91.03348 +2023-12-05 03:00:00,0.60827625,1.360147,279.46225,287.1028,-2.2235,957.6249,0.0,87.46276 +2023-12-05 04:00:00,1.7088008,4.1773195,339.44388,348.95908,-3.7735002,957.9777,0.0,92.76151 +2023-12-05 05:00:00,2.529822,5.308484,341.56494,356.76038,-2.2735002,958.9382,0.0,91.81569 +2023-12-05 06:00:00,3.130495,6.718631,333.43503,345.3432,-2.9235,960.03784,0.0,93.15913 +2023-12-05 07:00:00,4.304649,8.285529,329.2646,336.529,-2.7735002,961.29626,0.0,94.21784 +2023-12-05 08:00:00,4.830114,8.7464285,332.90454,337.8336,-2.1235,962.0874,0.0,96.0132 +2023-12-05 09:00:00,5.280152,8.969392,335.37646,337.72403,-1.6235,963.3211,0.0,95.32268 +2023-12-05 10:00:00,5.1,8.947067,331.9276,334.86707,-2.4235,963.918,0.0,95.29224 +2023-12-05 11:00:00,5.0477715,8.558621,326.3099,329.84003,-2.6235,964.82324,0.0,95.28458 +2023-12-05 12:00:00,5.0477715,8.558621,326.3099,329.84003,-2.9735,965.7929,0.0,95.271126 +2023-12-05 13:00:00,5.080354,8.376157,323.8067,326.68936,-3.7235,966.3978,0.0,95.24212 +2023-12-05 14:00:00,5.456189,8.683317,318.7154,321.54626,-4.0735,967.5554,0.0,94.86997 +2023-12-05 15:00:00,5.080354,6.6850576,323.8067,325.35898,-3.5235002,968.6117,0.0,90.35955 +2023-12-05 16:00:00,5.269725,6.741661,326.61145,327.72437,-2.5735002,969.5592,0.0,85.15409 +2023-12-05 17:00:00,4.632494,6.074537,327.3391,327.09476,-1.1235,970.2272,0.0,75.95536 +2023-12-05 18:00:00,3.6715121,4.7010636,330.64233,330.70874,0.17650001,970.10645,0.0,67.29212 +2023-12-05 19:00:00,3.3241541,4.172529,316.2188,315.97092,1.2765,969.75476,0.0,59.394836 +2023-12-05 20:00:00,3.720215,4.8826222,306.25394,304.9921,2.0265,970.18506,0.0,54.810318 +2023-12-05 21:00:00,2.7802877,3.720215,307.6943,306.25394,2.1265,970.299,0.0,51.58182 +2023-12-05 22:00:00,2.3259406,3.3120992,295.46332,298.88647,-0.4735,969.8834,0.0,61.96742 +2023-12-05 23:00:00,2.8017852,3.544009,267.95465,286.38962,-2.9735,969.2897,0.0,71.94366 +2023-12-06 00:00:00,3.008322,4.0199504,254.57777,275.7105,-3.4235,969.57684,0.0,73.823715 +2023-12-06 01:00:00,1.3000001,2.3194828,202.6199,262.5687,-0.6235,970.51587,0.0,62.168743 +2023-12-06 02:00:00,2.2203603,3.6249137,215.83774,245.55606,-4.0235,970.21124,0.0,76.61836 +2023-12-06 03:00:00,1.9235384,3.8910153,207.89717,244.09354,-4.1235,970.0964,0.0,79.91978 +2023-12-06 04:00:00,2.1954498,4.2544093,210.0685,240.42226,-4.0735,969.9176,0.0,79.01009 +2023-12-06 05:00:00,3.5468295,6.5,201.5015,216.86998,-2.8735,969.4991,0.0,73.07985 +2023-12-06 06:00:00,3.8275318,8.386895,213.2749,219.19325,-3.0735002,969.6475,0.0,77.667786 +2023-12-06 07:00:00,4.3382025,8.800568,205.97433,216.21893,-2.8735,969.4045,0.0,78.89576 +2023-12-06 08:00:00,5.239275,10.121264,203.6294,209.60435,-1.8735,968.47064,0.0,74.11378 +2023-12-06 09:00:00,5.6462374,10.7354555,202.93213,207.75845,-1.3235,967.91864,0.0,73.376 +2023-12-06 10:00:00,6.462198,11.851161,201.80147,206.56499,-1.0735,967.1174,0.0,72.31858 +2023-12-06 11:00:00,7.2615423,12.790621,202.6806,206.96564,-0.4735,966.0066,0.0,65.62965 +2023-12-06 12:00:00,7.839005,13.32704,203.29459,206.75725,0.47650003,964.86945,0.0,58.28782 +2023-12-06 13:00:00,8.469357,14.312582,202.93213,205.66983,0.8765,964.00146,0.0,59.518574 +2023-12-06 14:00:00,8.692525,14.579782,203.02553,206.03775,0.97650003,963.16974,0.0,60.45851 +2023-12-06 15:00:00,9.257429,14.812495,206.2882,208.64124,2.0265,962.23816,0.0,58.69198 +2023-12-06 16:00:00,8.858894,14.937537,208.30066,211.02948,3.5265,962.2418,0.0,54.80368 +2023-12-06 17:00:00,8.681589,13.014607,204.49857,205.97433,5.0265,961.2015,0.0,51.03866 +2023-12-06 18:00:00,8.236504,11.920151,209.0545,210.22176,6.8265,960.02344,0.0,46.44149 +2023-12-06 19:00:00,7.7175126,11.098198,211.21834,212.1148,8.2765,958.87103,0.0,43.344803 +2023-12-06 20:00:00,7.2401657,10.5948105,212.59258,213.84009,8.8765,958.1283,0.0,42.720367 +2023-12-06 21:00:00,6.0959,10.041912,221.00899,224.19316,8.6765,957.8077,0.0,44.44245 +2023-12-06 22:00:00,4.140048,8.514693,232.85323,236.49654,6.7765,957.7414,0.0,51.912323 +2023-12-06 23:00:00,5.1623635,10.160708,225.78473,233.8067,4.6265,957.0555,0.0,61.1417 +2023-12-07 00:00:00,5.5226803,10.650822,227.93575,235.71307,3.9764998,956.64923,0.0,64.9402 +2023-12-07 01:00:00,5.731492,10.840664,227.1211,232.49579,5.5265,956.7513,0.0,64.82018 +2023-12-07 02:00:00,5.080354,10.03444,233.8067,240.11356,5.5765,956.3819,0.0,66.503075 +2023-12-07 03:00:00,4.7169905,9.585406,237.99466,246.64441,5.1765003,955.9285,0.0,70.38745 +2023-12-07 04:00:00,4.4418464,9.141664,238.81508,250.17744,4.8265,955.3895,0.0,74.23898 +2023-12-07 05:00:00,4.2801867,8.709191,232.59457,248.44286,4.2265,954.80347,0.0,78.82595 +2023-12-07 06:00:00,4.140048,8.509407,232.85323,250.07433,3.7765,954.62396,0.0,82.53441 +2023-12-07 07:00:00,3.720215,7.912016,233.74606,253.85559,3.3265,953.78174,0.0,85.807 +2023-12-07 08:00:00,3.0610456,6.4536815,231.63248,257.4712,2.7264998,953.10016,0.0,87.93294 +2023-12-07 09:00:00,2.9832866,5.515433,219.55963,247.61981,2.0765,952.88153,0.0,90.123116 +2023-12-07 10:00:00,2.9206164,5.235456,218.04709,241.47697,1.7265,952.34155,0.0,91.07875 +2023-12-07 11:00:00,2.7202942,4.837354,216.02747,240.2552,1.6265,951.4711,0.0,90.742966 +2023-12-07 12:00:00,2.607681,4.1340055,212.47118,237.84773,1.3265,950.6569,0.0,91.71307 +2023-12-07 13:00:00,3.420526,4.6572523,195.25517,194.93147,1.1765,950.15533,0.0,92.036415 +2023-12-07 14:00:00,4.002499,7.200694,192.99461,189.59306,1.2765,949.9851,0.0,91.70981 +2023-12-07 15:00:00,4.341659,7.7317524,187.94337,185.19434,2.9764998,949.64636,0.0,86.389206 +2023-12-07 16:00:00,4.4102154,7.7103825,176.09958,177.02634,5.6265,949.57477,0.0,76.81606 +2023-12-07 17:00:00,4.2296567,10.500476,173.21112,180.54564,7.2765,949.31085,0.0,69.06188 +2023-12-07 18:00:00,4.2426405,6.9180923,171.86998,175.85545,8.9265,948.7588,0.0,63.7514 +2023-12-07 19:00:00,4.816638,6.8117547,175.23645,176.6336,9.7265005,947.7663,0.0,61.712486 +2023-12-07 20:00:00,4.472136,6.363961,169.6952,171.86998,9.9765005,946.8637,0.0,61.553944 +2023-12-07 21:00:00,4.7518415,7.902531,171.52895,178.54982,9.2765,946.16943,0.0,64.97225 +2023-12-07 22:00:00,4.5891175,8.836288,168.69011,174.80566,7.4765,945.1803,0.0,72.11328 +2023-12-07 23:00:00,4.7296934,9.786726,166.55138,172.36676,5.1265,944.1808,0.0,83.29727 +2023-12-08 00:00:00,6.1032777,11.606895,178.12216,181.97488,4.6265,944.18243,0.0,85.64034 +2023-12-08 01:00:00,6.906519,12.2,177.5105,180.0,8.1265,944.1619,0.0,71.4759 +2023-12-08 02:00:00,6.8264194,12.119819,185.04236,188.06316,7.4765,943.2862,0.0,76.57626 +2023-12-08 03:00:00,7.34983,12.839003,194.98167,198.1528,7.1265,942.5594,0.0,81.23447 +2023-12-08 04:00:00,7.3375745,12.944883,197.44728,200.81514,6.7265,941.5397,0.0,85.265656 +2023-12-08 05:00:00,7.1589108,12.889143,204.77512,208.75227,6.3265,941.4666,0.0,84.62564 +2023-12-08 06:00:00,7.0092793,12.740487,222.10866,227.54485,6.2265,941.54285,0.0,76.9143 +2023-12-08 07:00:00,6.618912,12.114866,243.0479,250.21883,6.2265,941.9216,0.0,68.59671 +2023-12-08 08:00:00,6.363961,11.915116,261.87,267.11365,6.2265,942.77374,0.0,66.88728 +2023-12-08 09:00:00,5.921149,11.1,265.1561,270.0,6.2765,943.8245,0.0,69.351395 +2023-12-08 10:00:00,5.2469034,10.0005,262.33328,269.42706,5.5765,944.54785,0.0,77.358315 +2023-12-08 11:00:00,6.1611686,11.065261,256.86597,263.77426,5.2765,945.15497,0.0,85.10587 +2023-12-08 12:00:00,6.4381676,11.204017,263.75818,268.4657,5.0265,945.7715,0.0,88.45442 +2023-12-08 13:00:00,5.846366,10.381715,257.15228,262.8066,4.2265,946.0959,0.0,88.69841 +2023-12-08 14:00:00,6.0876927,10.538026,255.73544,260.71652,3.7765,946.7689,0.0,84.63412 +2023-12-08 15:00:00,5.8940644,9.749359,255.2564,259.95804,4.5765,947.486,0.0,76.642746 +2023-12-08 16:00:00,6.865857,9.884331,257.38068,258.91748,6.3765,948.2931,0.0,65.249664 +2023-12-08 17:00:00,7.0859013,9.899495,261.0695,261.87,7.3765,948.1927,0.0,60.04899 +2023-12-08 18:00:00,8.471717,11.822859,262.53952,261.7329,8.2765,948.4516,0.0,54.86509 +2023-12-08 19:00:00,7.2835426,10.111875,261.31372,261.46933,8.5765,948.0323,0.0,52.79232 +2023-12-08 20:00:00,7.0213957,9.650907,259.33026,259.85452,8.5265,948.11804,0.0,51.447838 +2023-12-08 21:00:00,6.670832,9.610411,257.00537,257.98856,7.9765005,948.397,0.0,52.053127 +2023-12-08 22:00:00,5.5362444,9.192388,253.20154,255.5102,7.0265,948.7914,0.0,53.734467 +2023-12-08 23:00:00,5.0159745,9.108238,246.50142,250.76923,5.5765,949.3761,0.0,57.231503 +2023-12-09 00:00:00,5.3488317,9.684008,249.19313,253.81071,5.2765,949.50964,0.0,55.895897 +2023-12-09 01:00:00,5.4708314,9.411164,251.89613,255.2254,5.0265,949.93665,0.0,53.786705 +2023-12-09 02:00:00,5.6859474,9.773945,246.13982,250.26723,4.4765,949.6444,0.0,55.890633 +2023-12-09 03:00:00,5.664804,9.712363,249.3255,253.24417,3.5265,949.75006,0.0,60.642963 +2023-12-09 04:00:00,5.565968,9.895453,252.21602,255.96373,2.0765,949.94867,0.0,70.014084 +2023-12-09 05:00:00,6.139218,10.507616,257.7749,261.79288,1.3265,949.9002,0.0,78.08782 +2023-12-09 06:00:00,6.139218,10.127191,257.7749,260.9098,1.6265,949.9576,0.0,78.71237 +2023-12-09 07:00:00,5.700877,9.590098,254.74483,258.57294,1.3765,949.72064,0.0,80.429726 +2023-12-09 08:00:00,5.770615,9.4429865,261.02747,264.531,1.3765,949.8152,0.0,79.54734 +2023-12-09 09:00:00,5.9008474,9.226592,270.971,274.35098,1.3765,950.0044,0.0,78.38419 +2023-12-09 10:00:00,6.0133185,9.3771,273.814,277.3523,1.1265,950.1457,0.0,79.21713 +2023-12-09 11:00:00,6.140033,9.455687,286.07364,287.86017,0.92649996,950.5802,0.0,79.47972 +2023-12-09 12:00:00,6.7542577,10.24207,295.42682,297.31552,0.5265,951.2601,0.1,79.12554 +2023-12-09 13:00:00,8.487638,12.461943,304.43906,305.85843,-0.6235,952.0776,0.1,74.34442 +2023-12-09 14:00:00,8.348653,12.403628,304.26114,305.48407,-1.2235,953.0006,0.1,76.80285 +2023-12-09 15:00:00,9.044335,13.300376,305.0959,306.4392,-1.6235,953.96204,0.3,78.792564 +2023-12-09 16:00:00,11.456002,16.546904,314.29276,315.48962,-1.3235,955.25006,0.2,75.92052 +2023-12-09 17:00:00,8.987213,13.368994,312.7454,313.48465,-1.1735,956.0357,0.2,76.233894 +2023-12-09 18:00:00,10.327633,15.210852,316.5693,316.86478,-0.9735,956.5474,0.2,73.7206 +2023-12-09 19:00:00,11.41096,16.660433,318.90863,319.1377,-1.2235,957.5387,0.1,73.67371 +2023-12-09 20:00:00,11.806777,17.00735,321.1886,321.4454,-1.1235,958.7872,0.0,70.41048 +2023-12-09 21:00:00,12.124768,17.507141,324.7369,324.7666,-1.3235,960.3553,0.0,69.30328 +2023-12-09 22:00:00,11.360018,16.440195,323.2309,323.4088,-1.4735,961.8381,0.0,70.338165 +2023-12-09 23:00:00,9.420191,14.080128,322.76508,323.37415,-1.4735,962.9725,0.0,67.439125 +2023-12-10 00:00:00,9.513149,14.508618,320.11737,321.15515,-2.0735002,963.9879,0.0,67.82599 +2023-12-10 01:00:00,9.0609045,13.9603,317.68384,318.77554,-4.0235,964.7309,0.0,73.99656 +2023-12-10 02:00:00,8.63713,13.678084,317.8156,318.85358,-4.5734997,965.3752,0.0,74.76063 +2023-12-10 03:00:00,8.570297,13.471451,318.31104,319.21426,-4.7735,965.5235,0.0,75.601746 +2023-12-10 04:00:00,8.287943,13.18939,318.42398,319.30457,-4.9735,965.5773,0.0,77.95513 +2023-12-10 05:00:00,7.451845,12.010412,319.89914,320.74417,-5.2235,965.7151,0.0,80.68661 +2023-12-10 06:00:00,6.868042,10.9877205,317.95087,319.05945,-5.1235,966.208,0.0,80.70125 +2023-12-10 07:00:00,6.3655324,10.264989,316.27295,317.76392,-4.9735,966.33307,0.0,80.41137 +2023-12-10 08:00:00,6.296825,10.056838,316.93057,318.2246,-4.8234997,966.6471,0.0,79.81375 +2023-12-10 09:00:00,6.3820057,9.544108,324.5666,324.8112,-4.5734997,966.79236,0.0,78.02069 +2023-12-10 10:00:00,4.770744,7.632169,326.97614,328.39255,-4.8735,966.3536,0.0,79.190384 +2023-12-10 11:00:00,3.9597979,6.7357254,315.0001,319.21426,-5.1735,966.29236,0.0,80.3817 +2023-12-10 12:00:00,2.9154758,5.8258047,300.96368,309.42776,-5.8234997,966.15924,0.0,83.47028 +2023-12-10 13:00:00,2.624881,5.59017,310.36444,317.17474,-6.7235,965.40753,0.0,89.06612 +2023-12-10 14:00:00,2.5495098,5.3263493,295.5599,309.66782,-7.2235,965.4931,0.0,89.71916 +2023-12-10 15:00:00,2.570992,4.909175,283.49576,303.36636,-5.6735,965.9067,0.0,82.20334 +2023-12-10 16:00:00,2.6925824,3.5510561,301.32864,302.3474,-3.8235002,966.5666,0.0,72.614006 +2023-12-10 17:00:00,2.1400933,2.6400757,307.40543,307.30402,-2.5735002,966.1565,0.0,66.416916 +2023-12-10 18:00:00,1.9723083,2.3706539,300.46545,297.64587,-1.5235,965.4207,0.0,61.229515 +2023-12-10 19:00:00,1.5524175,1.9646883,284.93146,284.74362,-0.77349997,964.90753,0.0,57.958218 +2023-12-10 20:00:00,1.2,1.5,270.0,270.0,-0.4235,964.3145,0.0,56.279858 +2023-12-10 21:00:00,1.4035668,1.811077,265.91446,263.6599,-0.27350003,964.2493,0.0,55.66923 +2023-12-10 22:00:00,0.8,1.2041595,270.0,265.23645,-0.7235,964.06616,0.0,57.523613 +2023-12-10 23:00:00,0.8,0.2,90.0,90.0,-1.7235,963.963,0.0,61.89568 +2023-12-11 00:00:00,1.8384776,1.2529964,112.38018,118.61037,-5.2735,963.4379,0.0,78.2097 +2023-12-11 01:00:00,1.8,3.6,90.0,90.0,-5.6735,964.6788,0.0,82.5232 +2023-12-11 02:00:00,1.746425,3.733631,103.24053,97.69597,-6.1735,964.67065,0.0,85.06405 +2023-12-11 03:00:00,1.7492856,3.9357338,120.963684,117.216034,-6.3735,964.5352,0.0,85.70505 +2023-12-11 04:00:00,2.1213202,4.4598207,135.0001,132.27364,-6.4735,964.32556,0.0,86.02797 +2023-12-11 05:00:00,2.2022715,4.763402,140.52757,140.9645,-6.5734997,964.3052,0.0,86.016975 +2023-12-11 06:00:00,2.1260293,4.7801676,138.81418,142.65057,-6.6735,964.1899,0.0,85.67133 +2023-12-11 07:00:00,1.8601075,4.4204073,143.74608,142.35231,-6.7735,964.1695,0.0,85.66007 +2023-12-11 08:00:00,1.9723083,4.527693,149.53453,149.47037,-6.8234997,963.8758,0.0,85.654434 +2023-12-11 09:00:00,2.505993,5.3225937,151.38963,154.39786,-6.7735,963.6973,0.0,84.99379 +2023-12-11 10:00:00,2.9154758,5.7939625,157.8336,158.74942,-6.7235,963.42444,0.0,84.33824 +2023-12-11 11:00:00,3.2557642,6.4938436,169.3804,170.24765,-6.5734997,963.26636,0.0,83.37405 +2023-12-11 12:00:00,3.4058774,6.7,176.6336,180.0,-6.4235,963.3916,0.0,82.74471 +2023-12-11 13:00:00,3.5510561,6.946222,170.27249,173.38664,-7.0235,963.5513,0.0,88.00496 +2023-12-11 14:00:00,4.2,7.8057675,180.0,182.20255,-6.6735,963.5289,0.0,86.341774 +2023-12-11 15:00:00,4.7518415,9.590098,188.47105,191.42706,-4.9235,963.88715,0.0,76.16582 +2023-12-11 16:00:00,4.6572523,7.884795,194.93147,195.44638,-2.5235002,964.3708,0.0,64.89998 +2023-12-11 17:00:00,5.2201533,7.5026665,200.17073,201.0924,-0.123500004,964.0899,0.0,55.710167 +2023-12-11 18:00:00,5.60803,7.839005,201.99118,203.29459,1.9265,963.1647,0.0,49.195896 +2023-12-11 19:00:00,5.95399,8.19878,209.14798,210.00484,3.4764998,962.42163,0.0,44.75968 +2023-12-11 20:00:00,6.0959,8.429116,221.00899,221.63344,4.1765003,962.08167,0.0,42.940643 +2023-12-11 21:00:00,5.59017,8.146779,227.17476,228.48337,4.0765,961.8735,0.0,42.91055 +2023-12-11 22:00:00,4.7423625,8.5440035,245.05612,249.44386,2.8765,962.02295,0.0,47.241394 +2023-12-11 23:00:00,4.4271884,9.0609045,251.56496,259.18616,0.8265,962.19495,0.0,55.53963 +2023-12-12 00:00:00,4.554119,9.202173,261.15826,271.24533,0.5265,962.42017,0.0,58.30094 +2023-12-12 01:00:00,4.8507733,9.425497,278.29706,287.2816,0.6265,963.48,0.0,60.139786 +2023-12-12 02:00:00,5.940539,10.307764,306.09836,309.09384,1.1265,964.99615,0.0,61.890312 +2023-12-12 03:00:00,6.0876923,10.606602,312.33694,315.0001,-0.3235,965.94165,0.0,70.043 +2023-12-12 04:00:00,6.3890533,10.971327,309.92032,312.41415,-1.2235,966.80396,0.0,67.23679 +2023-12-12 05:00:00,6.780118,11.307077,307.208,308.89722,-1.7235,967.83887,0.0,58.38582 +2023-12-12 06:00:00,6.185467,10.640019,304.46088,306.9777,-2.3735,968.46515,0.0,52.953087 +2023-12-12 07:00:00,6.242595,10.621204,305.21768,307.73312,-2.7735002,969.14087,0.0,51.796696 +2023-12-12 08:00:00,6.3890533,10.837436,309.92032,311.63345,-3.1235,969.7319,0.0,54.231323 +2023-12-12 09:00:00,6.652819,11.103602,312.56332,313.9054,-3.3735,970.721,0.0,55.25081 +2023-12-12 10:00:00,6.43506,10.683165,315.62952,316.89648,-3.8235002,971.48016,0.0,54.250603 +2023-12-12 11:00:00,5.9413805,9.903535,313.63614,316.63654,-4.3735,972.31305,0.0,52.591152 +2023-12-12 12:00:00,5.517246,9.265528,313.53125,316.3118,-4.8735,973.24994,0.0,50.771145 +2023-12-12 13:00:00,4.816638,8.626702,311.63345,315.0001,-6.9735,973.949,0.0,55.13326 +2023-12-12 14:00:00,4.2201896,7.939773,306.3269,310.91428,-7.3234997,974.53674,0.0,53.691154 +2023-12-12 15:00:00,3.8948684,7.9202275,299.1974,307.30402,-6.0734997,975.45825,0.0,46.80856 +2023-12-12 16:00:00,4.7169905,6.4070277,302.00534,304.18616,-4.4735,976.54425,0.0,38.31403 +2023-12-12 17:00:00,4.548626,5.9076223,303.34073,303.9591,-3.2735002,976.7895,0.0,31.530956 +2023-12-12 18:00:00,4.031129,5.1478148,293.38525,294.0755,-2.1235,976.739,0.0,26.940582 +2023-12-12 19:00:00,3.8832974,5.021952,281.88864,282.65256,-1.1735,976.74097,0.0,22.966328 +2023-12-12 20:00:00,3.9115217,5.115662,274.39862,274.48453,-0.5235,976.4926,0.0,20.442139 +2023-12-12 21:00:00,3.6055512,4.8093657,273.17978,273.57626,-0.4235,976.70184,0.0,19.264612 +2023-12-12 22:00:00,2.1213202,4.6173587,261.87,265.03033,-1.7235,976.63055,0.0,21.27923 +2023-12-12 23:00:00,2.236068,5.1662364,243.43501,255.42574,-4.3234997,976.29144,0.0,26.156536 +2023-12-13 00:00:00,2.8017852,6.109828,235.17543,248.89508,-4.9235,976.6408,0.0,28.209408 +2023-12-13 01:00:00,3.1384711,6.76757,239.34941,251.0295,-4.9735,977.6695,0.0,32.21372 +2023-12-13 02:00:00,3.4999998,7.201389,233.13002,244.50249,-5.1735,977.5339,0.0,33.98342 +2023-12-13 03:00:00,3.8183768,7.8236823,224.9999,234.88791,-5.3234997,977.5029,0.0,36.319756 +2023-12-13 04:00:00,3.9698865,8.028075,220.91429,230.55997,-5.2735,977.32404,0.0,37.900684 +2023-12-13 05:00:00,4.3863425,8.542833,223.1524,231.65439,-5.0235,977.84814,0.0,38.300156 +2023-12-13 06:00:00,5.3037724,9.859513,224.23619,229.52484,-4.5235,978.14026,0.0,37.192696 +2023-12-13 07:00:00,5.7999997,10.630146,223.60289,228.81418,-4.0235,977.9593,0.0,36.732254 +2023-12-13 08:00:00,5.966573,10.872442,230.44037,235.8714,-3.5235002,978.0615,0.0,36.43232 +2023-12-13 09:00:00,6.280127,11.268097,232.76509,238.42586,-2.9235,978.3728,0.0,36.9263 +2023-12-13 10:00:00,6.5459914,11.646889,235.58157,240.13318,-2.6235,978.4336,0.0,40.359123 +2023-12-13 11:00:00,6.7675695,11.870131,235.84026,240.19534,-2.5735002,978.4437,0.0,41.885883 +2023-12-13 12:00:00,6.463745,11.473883,235.08052,239.6358,-2.6735,978.61273,0.0,40.841766 +2023-12-13 13:00:00,5.742821,10.567876,234.92616,240.5242,-3.1735,979.1726,0.0,53.786983 +2023-12-13 14:00:00,5.2009616,9.775479,232.02834,239.23735,-3.4735,979.30023,0.0,55.443375 +2023-12-13 15:00:00,5.456189,9.3744335,228.7154,236.3099,-2.3235002,979.8179,0.0,51.31076 +2023-12-13 16:00:00,5.1623635,8.809086,224.21526,230.52757,-0.4735,980.6631,0.0,44.977345 +2023-12-13 17:00:00,5.020956,7.1505246,225.80684,227.83418,1.5765,980.6921,0.0,38.6361 +2023-12-13 18:00:00,4.5343137,6.1717095,228.57643,229.60017,3.2264998,980.8265,0.0,34.35885 +2023-12-13 19:00:00,4.313931,5.731492,225.9391,227.1211,4.3765,980.2924,0.0,31.564457 +2023-12-13 20:00:00,4.545327,6.1717095,219.64413,220.39983,4.9765,979.27234,0.0,30.633099 +2023-12-13 21:00:00,4.2201896,6.140033,216.32692,217.05661,4.7265,979.12964,0.0,31.29576 +2023-12-13 22:00:00,4.1340055,8.0,212.15227,216.86998,2.8765,979.14954,0.0,36.213226 +2023-12-13 23:00:00,4.7201695,9.501578,216.38445,220.73201,0.8265,979.1253,0.0,42.425255 +2023-12-14 00:00:00,4.9819674,9.903535,218.48022,223.36346,0.026500002,979.34454,0.0,45.487297 +2023-12-14 01:00:00,4.967897,9.831073,220.10085,226.23633,0.72650003,979.48376,0.0,44.983994 +2023-12-14 02:00:00,5.700877,10.820813,217.87505,223.87679,0.5265,979.255,0.0,46.36202 +2023-12-14 03:00:00,5.2801514,10.186265,217.30403,223.4089,0.3265,979.2153,0.0,48.15861 +2023-12-14 04:00:00,5.161395,10.056838,215.53777,221.77539,0.1265,979.08075,0.0,49.827614 +2023-12-14 05:00:00,5.491812,10.435037,213.11136,219.94612,0.1265,979.08075,0.0,48.860863 +2023-12-14 06:00:00,5.714018,10.744765,212.85571,218.57655,0.1265,978.9861,0.0,48.28887 +2023-12-14 07:00:00,5.882177,11.063453,215.3113,220.60121,0.17650001,978.9015,0.0,49.647495 +2023-12-14 08:00:00,6.1220913,11.389908,218.36752,223.22124,0.2765,978.5433,0.0,51.85516 +2023-12-14 09:00:00,6.2625875,11.458621,218.51695,223.58565,0.17650001,978.5232,0.0,54.5115 +2023-12-14 10:00:00,6.3031735,11.599999,221.78442,226.39711,0.1265,978.32416,0.0,56.646873 +2023-12-14 11:00:00,6.438167,11.825819,223.11183,228.0849,0.2765,978.16504,0.0,58.68448 +2023-12-14 12:00:00,6.224147,11.486514,223.69812,229.23648,0.47650003,977.8264,0.0,61.494648 +2023-12-14 13:00:00,5.5226803,10.630146,222.06425,228.81418,0.3265,978.175,0.0,63.84461 +2023-12-14 14:00:00,5.360038,10.259142,216.6562,223.02507,0.026500002,978.02057,0.0,65.74469 +2023-12-14 15:00:00,5.8309517,10.280078,210.96368,217.09291,1.4265,978.6761,0.0,60.80218 +2023-12-14 16:00:00,5.3851647,11.482595,201.80147,213.2749,3.4264998,978.7836,0.0,53.95504 +2023-12-14 17:00:00,5.0695167,8.497058,202.01134,206.56499,5.5265,978.24176,0.0,47.834293 +2023-12-14 18:00:00,5.4626,7.8721027,203.7495,205.58847,7.1765003,977.41895,0.0,43.835785 +2023-12-14 19:00:00,5.8137765,8.229824,206.56499,207.49905,8.1765,976.9441,0.0,42.038044 +2023-12-14 20:00:00,5.314132,7.5769386,199.79897,202.50357,8.5765,976.07166,0.0,42.472836 +2023-12-14 21:00:00,5.3488317,8.681589,200.80687,204.49857,8.0265,975.49524,0.0,45.759518 +2023-12-14 22:00:00,4.792703,9.078547,203.35558,206.84721,6.3265,975.0804,0.0,52.952435 +2023-12-14 23:00:00,4.88467,9.928242,202.89058,206.3069,4.0765,974.4612,0.0,63.073414 +2023-12-15 00:00:00,5.280152,10.423532,204.62355,208.04005,3.2264998,974.20245,0.0,67.708466 +2023-12-15 01:00:00,5.239275,10.107423,203.6294,207.07199,5.2765,973.9338,0.0,61.98027 +2023-12-15 02:00:00,5.3310413,10.1965685,203.19861,206.81627,4.6765003,973.34607,0.0,64.86232 +2023-12-15 03:00:00,5.664804,10.560304,200.6745,204.62355,4.4765,972.9289,0.0,66.74615 +2023-12-15 04:00:00,5.565968,10.231813,197.78398,201.80147,4.2765,972.5121,0.0,68.93602 +2023-12-15 05:00:00,5.9665737,10.499524,193.57045,197.74477,4.4765,972.4556,0.0,68.72671 +2023-12-15 06:00:00,6.113101,10.846659,195.17297,198.268,4.1765003,972.3035,0.0,69.67474 +2023-12-15 07:00:00,5.554278,10.057833,193.53587,197.35411,3.7765,972.3215,0.0,69.84769 +2023-12-15 08:00:00,6.456005,11.0385685,196.18927,199.58409,4.5265,971.6133,0.0,65.78625 +2023-12-15 09:00:00,6.9892774,11.754573,199.21277,201.9825,4.7765,971.47205,0.0,64.647896 +2023-12-15 10:00:00,6.815424,11.539496,202.4259,205.67677,4.1765003,971.35706,0.0,70.18532 +2023-12-15 11:00:00,5.7384667,10.153324,202.5431,207.57448,3.4764998,970.93866,0.0,74.535965 +2023-12-15 12:00:00,4.565085,8.321658,208.8107,212.73521,3.3265,971.1938,0.3,78.97369 +2023-12-15 13:00:00,4.3965893,8.338465,197.19862,202.56705,3.5765,971.0523,0.0,85.83374 +2023-12-15 14:00:00,4.0521603,7.984986,195.75124,202.06795,3.2264998,970.89044,0.0,88.61158 +2023-12-15 15:00:00,2.9410882,5.635601,197.81898,207.47435,3.7765,971.0911,0.0,87.403206 +2023-12-15 16:00:00,2.942788,5.1264024,189.78233,200.55612,4.4765,971.69836,0.0,85.624176 +2023-12-15 17:00:00,3.0016663,5.2630787,181.9091,194.30031,4.2265,971.3668,0.1,88.07032 +2023-12-15 18:00:00,3.765634,5.7567353,190.71307,197.176,5.1265,970.59216,0.0,84.48812 +2023-12-15 19:00:00,3.6345563,5.8940644,187.90707,194.7436,4.8765,969.88184,0.0,87.198685 +2023-12-15 20:00:00,2.7892652,4.7010636,165.4655,178.78116,4.8265,969.2097,0.0,87.8134 +2023-12-15 21:00:00,2.385372,4.3324356,146.97614,161.14674,4.7265,968.9067,0.0,88.11561 +2023-12-15 22:00:00,2.4698176,4.88467,148.24057,157.10942,4.4765,969.2374,0.0,88.40598 +2023-12-15 23:00:00,2.2022715,4.651881,140.52757,154.5367,3.8765,969.0281,0.3,91.87663 +2023-12-16 00:00:00,2.4413111,5.0537114,145.0079,152.92801,3.5765,968.87573,0.2,92.84223 +2023-12-16 01:00:00,2.6172504,5.3263493,136.54811,140.3322,3.6764998,969.08435,0.2,92.84784 +2023-12-16 02:00:00,2.4041631,4.967897,135.0001,139.89915,3.4264998,968.6579,0.3,93.49615 +2023-12-16 03:00:00,2.1931713,4.701064,133.1524,141.91118,3.1764998,968.42065,0.5,93.81671 +2023-12-16 04:00:00,1.5,3.764306,126.86998,140.38934,2.9264998,968.08856,0.8,94.81287 +2023-12-16 05:00:00,1.4142135,3.6055512,135.0001,146.3099,2.7765,967.9649,1.2,95.48504 +2023-12-16 06:00:00,1.3453624,3.1906114,131.98714,147.80429,2.5765,967.2639,1.2,96.16154 +2023-12-16 07:00:00,1.6643317,3.1622775,122.73522,145.30478,2.4764998,966.67694,1.3,96.50222 +2023-12-16 08:00:00,1.2206556,2.7202942,124.992096,143.97253,2.2264998,965.87177,0.9,97.18733 +2023-12-16 09:00:00,0.82462114,1.4866068,165.96373,160.34608,2.3265,965.32324,1.0,96.49801 +2023-12-16 10:00:00,0.41231057,0.9055385,255.96373,186.3401,1.3265,964.5621,1.5,100.0 +2023-12-16 11:00:00,0.82462114,1.1401755,255.96373,232.12495,0.92649996,964.10583,1.5,99.64073 +2023-12-16 12:00:00,1.3928387,2.0099752,291.03757,275.7105,0.72650003,963.78326,0.9,99.64013 +2023-12-16 13:00:00,1.0198039,1.3341664,11.3098955,12.99463,0.42650002,963.6302,0.3,99.63926 +2023-12-16 14:00:00,1.118034,1.6492423,10.304792,14.036275,0.3265,963.04315,0.2,99.638954 +2023-12-16 15:00:00,1.118034,1.264911,26.564985,18.435053,0.3265,962.66486,0.1,99.638954 +2023-12-16 16:00:00,1.4764823,1.7,331.69934,331.9276,0.8265,962.9516,0.0,98.2136 +2023-12-16 17:00:00,2.280351,2.9410884,322.12494,324.6887,1.3765,962.77454,0.0,95.77883 +2023-12-16 18:00:00,3.2202482,4.022437,323.8417,325.1246,1.7765,962.18976,0.0,94.08595 +2023-12-16 19:00:00,3.7443287,4.770744,325.8855,326.97614,2.0765,961.67993,0.0,92.75744 +2023-12-16 20:00:00,4.661545,6.1032777,324.6051,325.0079,2.2264998,961.2359,0.0,91.44191 +2023-12-16 21:00:00,4.8010416,6.6610813,324.3235,324.16226,2.2765,961.3401,0.0,90.13842 +2023-12-16 22:00:00,4.080441,5.800862,323.97253,324.11777,2.1265,961.2167,0.0,89.156654 +2023-12-16 23:00:00,3.3421547,5.2801514,321.07245,322.69595,1.5765,961.3942,0.0,93.064156 +2023-12-17 00:00:00,2.6870058,4.4598207,315.0001,317.72638,1.3765,961.45026,0.0,94.748535 +2023-12-17 01:00:00,2.505993,4.1617303,298.61035,305.21768,1.0265,961.0985,0.0,96.11354 +2023-12-17 02:00:00,2.8178005,4.7169905,297.47433,302.00534,1.0765,961.2974,0.0,95.42331 +2023-12-17 03:00:00,1.9235383,3.51141,278.97253,289.9832,1.0765,960.7299,0.0,94.73594 +2023-12-17 04:00:00,2.0615528,3.7054014,255.96373,266.906,0.8765,960.21814,0.0,95.41598 +2023-12-17 05:00:00,3.2202485,5.502726,244.23071,250.9064,0.72650003,959.90546,0.0,93.695595 +2023-12-17 06:00:00,4.1340055,6.6241984,237.84773,241.11351,0.2765,959.43964,0.0,91.310005 +2023-12-17 07:00:00,4.3829217,7.1589108,242.8504,245.22488,-0.27350003,958.95386,0.0,91.60795 +2023-12-17 08:00:00,4.7423625,6.9857,245.05612,246.3706,-0.6235,958.8855,0.0,91.248116 +2023-12-17 09:00:00,4.080441,7.03278,233.97253,240.15416,-1.2735,958.3795,0.0,92.562614 +2023-12-17 10:00:00,4.080441,7.964923,233.97253,241.50446,-1.7735,957.6192,0.0,91.84823 +2023-12-17 11:00:00,4.438468,8.352245,247.47939,253.30067,-1.3735,957.69806,0.0,90.187256 +2023-12-17 12:00:00,4.1303754,8.1,263.04712,270.0,-1.5235,957.8577,0.0,89.50787 +2023-12-17 13:00:00,3.8209946,7.712976,276.0089,283.49576,-2.2235,958.1921,0.0,90.4585 +2023-12-17 14:00:00,4.1629314,8.099383,294.10223,302.90524,-2.1235,958.11725,0.0,88.79195 +2023-12-17 15:00:00,4.545327,8.980535,309.64413,314.54892,-0.8235,958.65704,0.0,81.92573 +2023-12-17 16:00:00,5.375872,7.9246454,316.5074,317.0454,0.6765,959.70654,0.0,74.58125 +2023-12-17 17:00:00,5.9548297,8.29759,319.0857,319.39877,1.8765,959.9387,0.0,70.23348 +2023-12-17 18:00:00,6.155485,8.495881,316.9749,317.86246,2.8765,959.9412,0.0,67.133286 +2023-12-17 19:00:00,6.293648,8.627862,315.64368,315.9391,3.6265,959.89514,0.0,64.85964 +2023-12-17 20:00:00,6.9296465,9.6166525,315.0001,315.0001,3.8265,960.12244,0.0,63.247528 +2023-12-17 21:00:00,5.3037724,7.7077885,314.23618,314.47443,3.1764998,960.188,0.0,64.99645 +2023-12-17 22:00:00,5.3823786,8.3600235,305.1665,306.7329,2.7765,960.30066,0.0,63.706078 +2023-12-17 23:00:00,5.5226803,9.042676,301.6754,302.81137,2.3265,960.87646,0.0,56.801556 +2023-12-18 00:00:00,5.9816384,9.730879,308.21106,309.57938,2.1764998,961.60455,0.0,50.614586 +2023-12-18 01:00:00,6.963476,11.480853,305.0595,307.56866,1.7765,962.6627,0.0,45.123077 +2023-12-18 02:00:00,8.207314,12.822247,316.9749,318.47787,2.1764998,963.3075,0.0,48.513714 +2023-12-18 03:00:00,9.404786,14.534098,324.95798,325.65384,-0.07350001,963.9104,0.0,58.81906 +2023-12-18 04:00:00,8.761849,13.940229,321.9529,323.4588,-2.0735002,964.8387,0.0,58.521847 +2023-12-18 05:00:00,8.324061,12.980755,321.34018,322.51205,-3.2735002,965.7326,0.0,56.61177 +2023-12-18 06:00:00,7.746612,12.04201,320.76266,322.08322,-3.9235,965.8849,0.0,59.902115 +2023-12-18 07:00:00,7.6419888,11.975391,317.1211,318.72415,-4.3234997,966.0873,0.0,61.483273 +2023-12-18 08:00:00,7.7155685,12.050726,317.62646,319.0378,-4.5235,966.5193,0.0,62.415375 +2023-12-18 09:00:00,7.7620873,11.9402685,321.80127,323.5139,-4.2735,967.2312,0.0,62.231033 +2023-12-18 10:00:00,7.7665954,11.759677,325.4914,326.44504,-4.2735,967.70355,0.0,60.76865 +2023-12-18 11:00:00,7.889233,12.316655,329.53452,330.3129,-5.1735,968.2761,0.0,62.00469 +2023-12-18 12:00:00,8.077747,14.103191,328.67136,330.70874,-5.9735,968.9618,0.0,58.886375 +2023-12-18 13:00:00,7.3573093,12.665702,328.90274,331.20914,-8.2734995,969.5228,0.0,66.41567 +2023-12-18 14:00:00,6.400781,11.315917,331.03244,334.3408,-8.9235,969.575,0.0,69.02003 +2023-12-18 15:00:00,7.324616,10.547511,327.8288,328.5705,-8.5234995,970.6976,0.0,63.704163 +2023-12-18 16:00:00,6.6730804,9.13017,330.3617,331.1893,-7.6735,971.1588,0.0,56.774616 +2023-12-18 17:00:00,6.003332,8.013114,330.01843,330.87604,-6.6235,971.18866,0.0,48.61721 +2023-12-18 18:00:00,5.742821,7.545197,324.92618,325.25674,-5.5235,971.03815,0.0,43.06468 +2023-12-18 19:00:00,5.161395,6.8242216,324.46225,325.14548,-4.6735,970.45667,0.0,38.733494 +2023-12-18 20:00:00,4.404543,5.700877,320.52756,322.12494,-4.0735,969.9176,0.0,35.955902 +2023-12-18 21:00:00,3.2557642,4.1773195,317.4896,317.91092,-3.9735,969.371,0.0,34.946472 +2023-12-18 22:00:00,2.280351,3.1400635,307.87503,307.23492,-4.4735,969.0803,0.0,35.829155 +2023-12-18 23:00:00,2.158703,2.6925824,283.39252,291.80148,-6.8234997,968.6919,0.0,43.745895 +2023-12-19 00:00:00,1.8601075,2.433105,233.74606,260.53775,-7.0734997,968.2624,0.0,43.851532 +2023-12-19 01:00:00,2.376973,5.060632,194.62091,209.60435,-7.0235,967.5173,0.0,44.610092 +2023-12-19 02:00:00,3.0,6.1188235,180.0,191.30989,-6.5734997,966.76056,0.0,43.45851 +2023-12-19 03:00:00,3.8118236,7.4525166,184.5139,191.61145,-6.3234997,966.1508,0.0,43.17404 +2023-12-19 04:00:00,5.0,9.202717,196.26028,199.0257,-5.9735,965.7505,0.0,43.283657 +2023-12-19 05:00:00,6.103278,10.231813,198.13817,201.80147,-4.9235,965.2098,0.0,40.810383 +2023-12-19 06:00:00,6.4513564,10.900459,198.99675,202.09428,-4.4735,964.45087,0.0,40.277657 +2023-12-19 07:00:00,6.8963757,11.482595,196.85847,199.8553,-3.8735,963.4382,0.0,40.80194 +2023-12-19 08:00:00,7.34983,12.271105,194.98167,197.54909,-3.4735,962.38477,0.0,43.523647 +2023-12-19 09:00:00,7.543209,12.557468,194.58896,197.13635,-3.2235,962.057,0.0,45.596527 +2023-12-19 10:00:00,8.004998,13.200378,192.99461,195.82622,-2.9235,961.07745,0.0,45.688004 +2023-12-19 11:00:00,8.077747,13.219683,195.06854,197.61267,-2.4735,960.4111,0.0,44.728092 +2023-12-19 12:00:00,7.7491937,12.781237,197.2659,200.13638,-2.0735002,960.2068,0.0,44.490234 +2023-12-19 13:00:00,8.28734,13.815933,199.74693,202.1095,-0.9735,959.4784,0.0,47.395596 +2023-12-19 14:00:00,7.4946647,12.646343,198.6768,202.30626,-0.9235,959.394,0.0,48.93716 +2023-12-19 15:00:00,6.8622155,11.401754,198.69908,201.61484,-0.07350001,959.4658,0.0,48.61067 +2023-12-19 16:00:00,4.6872168,9.679876,191.07016,199.93262,1.1765,959.99274,0.0,45.83274 +2023-12-19 17:00:00,5.491812,8.149233,190.49142,194.2068,2.4264998,960.0442,0.0,42.912125 +2023-12-19 18:00:00,5.3150725,7.569016,191.94415,195.32156,3.2765,959.26056,0.0,41.68503 +2023-12-19 19:00:00,4.2296567,5.903389,186.78888,190.73885,3.5765,958.5605,0.0,41.9386 +2023-12-19 20:00:00,3.3,4.8093657,180.0,183.57626,3.9764998,958.2582,0.0,41.25287 +2023-12-19 21:00:00,2.8442926,4.3104525,169.8754,176.00917,4.4765,958.2578,0.0,40.142765 +2023-12-19 22:00:00,2.0880613,4.9,163.30067,180.0,2.8265,958.7017,0.0,46.145565 +2023-12-19 23:00:00,2.3345234,5.423099,170.13426,185.29,-0.6235,958.791,0.0,61.6925 +2023-12-20 00:00:00,2.5079873,5.656854,175.42616,188.13002,-1.0735,959.26996,0.0,65.74251 +2023-12-20 01:00:00,2.0124612,4.7296934,153.43501,166.55138,-1.6235,960.5796,0.0,66.63317 +2023-12-20 02:00:00,2.2135942,4.119466,161.56496,174.4279,-2.8735,960.80396,0.0,71.96356 +2023-12-20 03:00:00,1.9416487,3.7013512,168.11136,178.45187,-2.8235002,960.8137,0.0,71.146515 +2023-12-20 04:00:00,2.0615528,3.733631,165.96373,172.30405,-2.7735002,960.9182,0.0,70.88298 +2023-12-20 05:00:00,2.109502,2.9017239,174.55975,178.02512,-3.6235,961.50415,0.0,75.80624 +2023-12-20 06:00:00,1.7029387,1.4317821,176.6336,167.90526,-3.3235002,961.9425,0.0,74.413826 +2023-12-20 07:00:00,1.6124516,1.555635,150.2552,135.0001,-3.6235,962.1656,0.0,76.09883 +2023-12-20 08:00:00,1.9209373,1.8867962,141.34016,122.00535,-4.2235,962.4229,0.0,79.29154 +2023-12-20 09:00:00,1.0,1.4317821,53.13002,77.90526,-2.7235,963.5747,0.0,70.89322 +2023-12-20 10:00:00,1.5132746,2.86007,7.59456,36.469334,-4.6235,963.94794,0.0,82.029335 +2023-12-20 11:00:00,2.4698179,5.2009616,21.370695,37.97166,-4.8234997,964.6631,0.0,82.95589 +2023-12-20 12:00:00,2.0808651,5.4589376,54.782326,61.55718,-5.0235,965.3783,0.0,82.29173 +2023-12-20 13:00:00,2.7073975,6.203225,94.23632,91.84757,-4.6735,965.6384,0.0,82.022484 +2023-12-20 14:00:00,2.745906,6.356099,100.491425,102.72436,-4.4235,966.3506,0.0,80.18301 +2023-12-20 15:00:00,3.3136082,6.2968245,84.805664,100.06063,-2.9735,967.3995,0.0,72.22145 +2023-12-20 16:00:00,2.5079873,6.1983867,85.42616,100.222115,-0.8735,968.6696,0.0,62.828217 +2023-12-20 17:00:00,2.8071337,3.8013155,85.91447,91.50741,1.1265,969.2526,0.0,56.480732 +2023-12-20 18:00:00,3.0594118,4.031129,78.6901,82.875084,2.7765,968.62726,0.0,51.568626 +2023-12-20 19:00:00,3.214032,4.204759,84.644264,87.27374,3.7264998,968.4314,0.0,48.777885 +2023-12-20 20:00:00,3.4058774,4.5,86.63361,90.0,3.9764998,968.1957,0.0,47.928417 +2023-12-20 21:00:00,3.6124783,5.10392,85.23644,87.75431,3.5265,968.10913,0.0,49.09346 +2023-12-20 22:00:00,3.206244,6.400781,86.423744,90.89516,2.1764998,968.2272,0.0,54.227398 +2023-12-20 23:00:00,3.2,7.2249565,90.0,94.76356,0.47650003,968.3688,0.0,61.965355 +2023-12-21 00:00:00,3.3734255,7.615773,101.97612,103.671326,0.026500002,968.9421,0.0,65.99493 +2023-12-21 01:00:00,3.8275316,8.246211,109.85531,112.833694,0.3765,969.5785,0.0,65.57595 +2023-12-21 02:00:00,3.7121422,7.940403,117.25525,121.08744,0.0765,969.9921,0.0,64.763885 +2023-12-21 03:00:00,3.6891732,7.840918,122.828545,127.74687,-0.1735,969.943,0.0,63.482178 +2023-12-21 04:00:00,3.9661064,7.964923,123.6901,128.8845,-0.3235,969.81866,0.0,62.962284 +2023-12-21 05:00:00,4.2201896,8.363014,126.32692,131.12138,-0.5735,969.8638,0.0,63.62917 +2023-12-21 06:00:00,4.1868844,8.203658,130.15593,134.01233,-0.7235,969.8339,0.0,64.32885 +2023-12-21 07:00:00,4.0360875,7.9246454,131.98714,137.04541,-0.8235,969.62494,0.0,65.29837 +2023-12-21 08:00:00,3.9597979,7.864477,135.0001,138.60857,-1.0235,969.3017,0.0,66.51381 +2023-12-21 09:00:00,3.88973,7.657676,136.04153,139.23648,-1.0735,969.1973,0.0,67.527916 +2023-12-21 10:00:00,3.748333,7.465253,136.08084,140.9806,-1.2235,968.884,0.0,69.324524 +2023-12-21 11:00:00,4.3863425,8.309633,136.8476,140.37103,-1.4235,968.46594,0.0,71.975624 +2023-12-21 12:00:00,3.8275318,7.769813,146.7251,148.15099,-1.6735,968.7941,0.0,75.572205 +2023-12-21 13:00:00,3.623534,7.602631,140.59937,144.63745,-1.8235,968.9533,0.0,77.87239 +2023-12-21 14:00:00,4.318565,8.340863,137.81563,142.3057,-1.8235,968.7643,0.0,79.960304 +2023-12-21 15:00:00,4.6400433,8.487638,142.88306,145.56096,-0.5735,968.82367,0.0,75.48128 +2023-12-21 16:00:00,4.1617303,7.4625735,144.78232,147.5877,1.3765,969.11237,0.0,68.06469 +2023-12-21 17:00:00,4.4418464,6.400781,148.81508,151.03244,3.4264998,968.84717,0.0,62.68459 +2023-12-21 18:00:00,4.3416586,6.26099,151.07367,153.43501,4.6765003,967.6667,0.0,63.448963 +2023-12-21 19:00:00,4.3081317,6.074537,158.19853,159.77505,5.6765003,966.9095,0.0,64.618904 +2023-12-21 20:00:00,4.1761227,5.7974133,163.30067,165.00487,5.8765,966.5685,0.0,68.27619 +2023-12-21 21:00:00,3.51141,5.2886667,160.0168,164.64981,5.7265,966.5401,0.0,74.93477 +2023-12-21 22:00:00,2.8231187,5.7974133,157.06787,165.00487,5.0265,966.21857,0.0,84.17727 +2023-12-21 23:00:00,3.231099,6.6490602,158.19853,167.84508,4.0265,966.123,0.0,93.19653 +2023-12-22 00:00:00,3.9217343,7.5186434,160.64091,166.14856,4.1265,966.14197,0.0,93.862755 +2023-12-22 01:00:00,3.992493,7.692204,157.93205,164.15686,3.4264998,965.91364,0.0,94.49749 +2023-12-22 02:00:00,4.016217,7.5927596,161.11382,167.06194,3.4264998,965.91364,0.0,96.18749 +2023-12-22 03:00:00,4.148494,7.764663,164.62369,172.6005,3.5265,965.7433,0.2,97.90588 +2023-12-22 04:00:00,3.6124783,7.3,175.23645,180.0,3.4764998,965.54456,0.1,98.947624 +2023-12-22 05:00:00,3.3376637,6.9231496,188.61557,190.82297,3.3265,965.3266,0.1,98.946335 +2023-12-22 06:00:00,3.622154,7.180529,186.3401,192.875,3.2264998,964.83417,0.0,99.64739 +2023-12-22 07:00:00,3.5,6.9720874,180.0,188.24623,3.2765,964.2759,0.1,99.29618 +2023-12-22 08:00:00,3.0066593,6.428841,183.814,195.33334,3.1265,964.43646,0.2,99.29532 +2023-12-22 09:00:00,2.2022717,5.3160133,177.39749,196.38962,2.9264998,964.39825,0.1,99.294174 +2023-12-22 10:00:00,1.9026297,4.8754487,183.01273,205.51382,2.8265,964.09515,0.2,99.29361 +2023-12-22 11:00:00,2.0223749,4.770744,188.53069,213.02386,2.8765,964.1046,0.0,99.29389 +2023-12-22 12:00:00,3.0066593,5.769748,183.814,205.67677,3.1265,963.9633,0.0,99.6471 +2023-12-22 13:00:00,1.7720045,3.4058774,163.61038,183.3664,3.2765,963.7081,0.1,99.647545 +2023-12-22 14:00:00,2.184033,3.7,164.05453,180.0,3.3265,963.6233,0.0,99.296455 +2023-12-22 15:00:00,2.7294688,4.5177426,171.57312,185.07951,3.6265,963.7752,0.0,99.64853 +2023-12-22 16:00:00,2.9017239,5.0249376,178.02512,185.7105,4.0265,964.04083,0.0,99.649666 +2023-12-22 17:00:00,2.640076,4.8104053,204.62355,200.69553,4.5765,964.0505,0.0,98.61134 +2023-12-22 18:00:00,1.9235384,3.5510561,207.89717,212.34741,4.9765,963.36926,0.0,98.27239 +2023-12-22 19:00:00,1.3928387,2.5238857,201.03758,213.6901,5.3765,963.1606,0.0,98.27791 +2023-12-22 20:00:00,0.9055385,1.4866068,173.6599,199.65392,6.1265,962.8283,0.0,96.93741 +2023-12-22 21:00:00,1.1401755,1.360147,164.74483,197.10281,6.2765,962.4776,0.0,96.60632 +2023-12-22 22:00:00,1.2369317,1.8867962,194.03627,212.00534,6.1765003,962.6481,0.0,97.61167 +2023-12-22 23:00:00,1.4142135,1.9104972,188.13002,222.87889,5.0765,962.7255,0.0,99.30632 +2023-12-23 00:00:00,1.1661904,2.3323808,210.96368,239.0363,5.1265,962.8296,0.0,99.306595 +2023-12-23 01:00:00,1.3928387,2.302173,158.96242,182.4895,4.4765,962.9904,0.0,97.921776 +2023-12-23 02:00:00,1.4035668,2.745906,184.08554,190.49142,4.1265,963.1133,0.0,98.26058 +2023-12-23 03:00:00,2.059126,4.3908997,209.0545,210.0685,4.0765,963.29315,0.0,98.95269 +2023-12-23 04:00:00,2.0124612,4.8104053,206.56499,200.69553,3.9265,963.07513,0.0,99.299866 +2023-12-23 05:00:00,1.3341664,3.765634,192.99461,190.71307,3.5265,962.80963,0.0,99.2976 +2023-12-23 06:00:00,1.9924859,4.2059484,197.52567,198.00426,3.3265,962.67694,0.0,99.296455 +2023-12-23 07:00:00,2.6000001,5.0921507,202.6199,199.50253,2.9764998,962.51526,0.0,99.64668 +2023-12-23 08:00:00,3.0805843,5.8240876,193.13403,195.94547,2.6764998,962.647,0.0,99.64582 +2023-12-23 09:00:00,3.2984846,5.8821764,194.03627,197.81898,2.3765,962.6839,0.0,99.64496 +2023-12-23 10:00:00,2.9832869,6.203225,193.57045,200.77234,1.2265,962.17804,0.0,99.6416 +2023-12-23 11:00:00,3.0149627,5.824946,185.7105,191.88864,0.1265,961.7744,0.0,99.27789 +2023-12-23 12:00:00,3.5014284,6.618912,181.63654,184.33223,-0.5235,961.64716,0.0,98.91279 +2023-12-23 13:00:00,3.4234486,7.302739,173.29025,181.56932,0.42650002,962.49524,0.0,98.92122 +2023-12-23 14:00:00,3.6687872,8.409518,162.55272,177.27374,-0.27350003,961.69617,0.0,99.27551 +2023-12-23 15:00:00,4.9729266,8.354639,164.84589,168.9591,-0.023500003,961.9343,0.0,99.63792 +2023-12-23 16:00:00,5.5785303,8.374366,165.4655,168.28755,1.4265,962.3112,0.0,97.87011 +2023-12-23 17:00:00,5.4341516,9.124144,167.24248,170.53775,3.2264998,962.27924,0.0,92.82258 +2023-12-23 18:00:00,5.3366656,7.787811,167.00539,167.3914,5.1265,961.599,0.0,85.69404 +2023-12-23 19:00:00,5.4708314,7.7201037,161.89615,163.44286,7.3265,960.8738,0.0,76.282196 +2023-12-23 20:00:00,5.636488,8.05295,154.7989,155.02612,8.4765005,959.94977,0.0,72.3024 +2023-12-23 21:00:00,5.147815,7.694154,150.9455,152.10283,8.7265005,959.80615,0.0,72.858696 +2023-12-23 22:00:00,5.8821764,9.972463,162.18102,164.2913,8.2765,959.913,0.0,73.28902 +2023-12-23 23:00:00,5.948109,10.387012,153.00424,156.14952,7.7265,959.7168,0.0,75.8136 +2023-12-24 00:00:00,6.332456,10.938465,164.4274,165.70964,7.6265,960.07715,0.0,74.736084 +2023-12-24 01:00:00,6.2265563,10.885311,150.14108,156.73227,6.5265,960.6304,0.9,84.648384 +2023-12-24 02:00:00,7.0491138,11.8207445,148.3393,150.61594,6.4765,959.8638,0.0,85.23828 +2023-12-24 03:00:00,7.4323616,12.256019,156.19405,158.45895,6.4265003,959.8544,0.8,87.6532 +2023-12-24 04:00:00,7.1175838,11.868025,155.95578,159.27437,6.4765,959.8638,0.7,93.97447 +2023-12-24 05:00:00,7.741447,12.704723,151.4487,154.84692,7.2765,959.0653,0.0,96.30181 +2023-12-24 06:00:00,8.497058,13.689412,153.43501,154.93257,8.1265,958.654,0.1,96.32636 +2023-12-24 07:00:00,8.417244,13.555811,156.17574,158.3555,8.6765,958.0919,0.2,95.68989 +2023-12-24 08:00:00,8.450444,13.597794,159.20581,161.56496,9.0265,957.6823,1.8,96.352104 +2023-12-24 09:00:00,8.104321,12.878665,164.24876,166.07164,9.4265,957.6602,0.0,96.03871 +2023-12-24 10:00:00,7.787811,12.495199,167.3914,169.85927,9.6265,957.22284,0.4,96.36909 +2023-12-24 11:00:00,7.787811,12.513193,167.3914,169.40852,9.8265,956.6908,0.5,95.72822 +2023-12-24 12:00:00,8.492938,13.551752,167.7639,168.93886,9.7765,956.7764,0.3,94.763565 +2023-12-24 13:00:00,7.543209,12.180721,165.41104,167.6753,10.6265,956.93024,0.1,93.849335 +2023-12-24 14:00:00,7.2732387,11.896217,161.56496,163.39294,10.2265005,957.2372,0.3,94.46368 +2023-12-24 15:00:00,7.368175,11.925183,161.81087,162.93251,10.0265,957.1061,0.4,94.45516 +2023-12-24 16:00:00,7.0007143,11.072488,158.19853,159.92839,10.1265,957.1242,0.2,94.77767 +2023-12-24 17:00:00,7.093659,11.423222,158.4985,159.50258,10.1265,956.65045,0.5,94.77767 +2023-12-24 18:00:00,7.02282,11.0367565,160.0168,162.05746,10.3265,955.5494,0.4,95.10442 +2023-12-24 19:00:00,6.1684685,10.261579,163.03377,164.74483,10.7265005,954.674,0.2,93.85403 +2023-12-24 20:00:00,5.7271285,9.436631,167.90526,170.2383,10.9265,954.1413,1.6,94.177925 +2023-12-24 21:00:00,4.6840153,6.281719,286.1135,283.81503,8.7265005,955.06964,2.3,100.0 +2023-12-24 22:00:00,6.7675695,9.7908125,325.84024,325.82297,2.7264998,955.8441,2.5,97.544945 +2023-12-24 23:00:00,7.653757,11.676472,331.0909,331.89874,2.1764998,956.40106,2.9,95.80578 +2023-12-25 00:00:00,7.18401,10.420173,321.2156,322.8001,1.8765,957.3844,2.4,93.080574 +2023-12-25 01:00:00,6.8593006,10.473777,315.59058,317.32153,1.3265,957.6568,0.0,93.05044 +2023-12-25 02:00:00,7.291776,11.139569,317.77924,319.7335,0.8765,957.94806,0.1,92.35251 +2023-12-25 03:00:00,7.4632435,11.289376,324.8192,325.46527,0.22649999,958.20026,0.2,93.67044 +2023-12-25 04:00:00,6.940461,10.5948105,323.79044,326.1599,0.1265,958.4645,0.2,95.041466 +2023-12-25 05:00:00,7.017834,10.890821,327.21573,329.6679,-0.07350001,958.61475,0.6,95.729324 +2023-12-25 06:00:00,7.1028166,11.098198,324.74356,327.8852,-0.07350001,958.8039,0.5,95.729324 +2023-12-25 07:00:00,7.2945185,11.250777,326.74564,329.56036,-0.22350001,958.6799,0.4,96.42533 +2023-12-25 08:00:00,6.664833,10.868762,332.2816,334.37805,-0.22350001,958.96356,0.9,96.77762 +2023-12-25 09:00:00,6.407808,10.568822,337.0362,339.50732,-0.07350001,958.89844,1.3,96.42967 +2023-12-25 10:00:00,6.074537,11.101802,339.77505,342.70746,0.17650001,958.6634,0.9,95.73792 +2023-12-25 11:00:00,6.198387,10.577333,342.1496,344.6498,-0.023500003,958.1516,0.6,96.78285 +2023-12-25 12:00:00,6.20967,11.414026,345.06854,348.887,0.0765,958.0765,0.6,96.78545 +2023-12-25 13:00:00,6.868042,11.081967,343.93994,349.60272,-0.9235,957.0302,0.9,98.187904 +2023-12-25 14:00:00,6.8249536,12.379419,349.01938,353.50656,-0.4735,955.8889,0.8,98.91324 +2023-12-25 15:00:00,6.6068144,11.535164,357.3975,4.474817,0.1265,955.7219,1.0,98.918564 +2023-12-25 16:00:00,6.5,9.831073,360.0,9.366447,0.72650003,955.1764,1.5,99.281425 +2023-12-25 17:00:00,5.6008925,9.848858,1.0230169,12.907409,1.5265,954.3844,2.0,99.64249 +2023-12-25 18:00:00,4.9162993,8.1541395,355.33322,23.106356,2.3765,952.8442,3.4,100.0 +2023-12-25 19:00:00,3.9115217,6.71193,4.398633,33.453342,3.9265,951.71814,3.7,99.299866 +2023-12-25 20:00:00,4.661545,8.48646,54.605125,68.574646,7.1265,950.89307,3.4,98.63933 +2023-12-25 21:00:00,6.5253353,10.651291,74.89885,77.52956,8.4765005,950.4772,2.9,96.66449 +2023-12-25 22:00:00,6.963476,11.34372,77.560455,80.8699,8.6765,950.51355,2.3,96.34212 +2023-12-25 23:00:00,6.8359346,11.101802,84.1227,88.96778,8.8265,950.54065,1.8,96.3464 +2023-12-26 00:00:00,7.3109508,11.8,86.86371,90.0,9.1765,950.5094,1.0,95.706604 +2023-12-26 01:00:00,6.802941,11.1040535,88.31535,91.54813,8.7765,950.4368,0.5,96.67231 +2023-12-26 02:00:00,5.4129477,9.167878,101.72509,103.8847,8.7765,950.721,0.6,97.32992 +2023-12-26 03:00:00,3.1827662,5.8137765,136.27295,139.18501,8.1265,951.0764,0.3,98.31511 +2023-12-26 04:00:00,3.3136082,5.135173,174.80566,173.29025,6.4265003,951.3324,0.1,97.61641 +2023-12-26 05:00:00,4.110961,6.1131005,184.18483,183.75165,4.3765,951.8974,0.4,96.55485 +2023-12-26 06:00:00,4.197618,6.3788714,192.38075,193.60056,2.8765,952.1822,0.7,95.14919 +2023-12-26 07:00:00,4.5122056,6.5734315,192.80426,193.19061,1.6765,952.5214,0.6,94.76107 +2023-12-26 08:00:00,4.472136,6.432729,190.3048,191.65926,0.92649996,952.5664,0.0,92.02071 +2023-12-26 09:00:00,4.418144,6.3505907,185.19434,187.23683,0.2765,953.1032,0.0,90.3136 +2023-12-26 10:00:00,4.804165,6.9115844,182.3859,183.31772,-0.07350001,953.41364,0.0,85.43598 +2023-12-26 11:00:00,4.119466,5.842089,185.5721,186.88162,-0.8235,953.64575,0.0,81.01269 +2023-12-26 12:00:00,4.101219,5.8034477,178.60284,178.02512,-1.1735,954.3339,0.0,78.86287 +2023-12-26 13:00:00,4.7675986,6.806614,170.34018,169.8458,-2.5235002,955.29706,0.0,82.62587 +2023-12-26 14:00:00,4.002499,5.6515484,167.00539,166.70142,-1.9735,955.6892,0.0,78.73763 +2023-12-26 15:00:00,3.354102,4.701064,153.43501,156.16125,-1.6735,956.3154,0.0,77.89677 +2023-12-26 16:00:00,4.614109,6.0901566,150.1012,150.4886,-0.6735,956.88983,0.0,71.85107 +2023-12-26 17:00:00,5.1478148,6.894201,155.9245,156.0375,0.2765,956.9808,0.0,60.976887 +2023-12-26 18:00:00,4.632494,6.074537,147.3391,147.09476,0.3765,956.7164,0.0,60.76935 +2023-12-26 19:00:00,3.9698865,5.1739736,139.08571,138.91835,0.47650003,956.73584,0.0,61.494648 +2023-12-26 20:00:00,3.6069376,4.596738,133.87679,134.1187,0.42650002,956.9153,0.0,60.31908 +2023-12-26 21:00:00,3.2015622,4.20119,128.65984,128.23387,0.1265,957.42426,0.0,59.553455 +2023-12-26 22:00:00,3.1400635,4.060788,127.23492,127.99879,-0.023500003,958.057,0.0,57.932686 +2023-12-26 23:00:00,2.408319,3.538361,131.63345,132.70937,-0.3735,958.83984,0.0,57.17263 +2023-12-27 00:00:00,1.0440307,2.3323808,106.699326,120.96369,-0.5735,959.36804,0.0,59.372616 +2023-12-27 01:00:00,1.8439089,3.4014702,49.398785,65.695465,-1.3235,959.6935,0.0,62.718063 +2023-12-27 02:00:00,1.7204651,3.522783,35.537766,55.407658,-1.6735,959.9078,0.0,64.84931 +2023-12-27 03:00:00,2.059126,3.9623227,29.054508,42.954597,-1.6735,960.2859,0.0,65.351425 +2023-12-27 04:00:00,2.236068,4.318565,26.564985,42.184383,-2.0235,960.59503,0.0,67.837036 +2023-12-27 05:00:00,2.3259406,4.6400433,25.463305,37.116943,-2.2735002,960.92316,0.0,69.90275 +2023-12-27 06:00:00,2.5495098,4.743417,25.559923,34.69522,-1.9735,961.4555,0.0,69.16477 +2023-12-27 07:00:00,2.3259406,5.249762,25.463305,40.364468,-1.8735,961.759,0.0,69.986595 +2023-12-27 08:00:00,1.9849433,4.356604,49.085716,58.134064,-1.9235,961.8437,0.0,71.05651 +2023-12-27 09:00:00,1.7204651,3.8626416,54.46224,68.74943,-2.3235002,962.04767,0.0,74.03003 +2023-12-27 10:00:00,1.4866068,3.7161808,42.27363,66.19405,-3.3235002,962.1315,0.0,80.346306 +2023-12-27 11:00:00,1.5811388,3.3970575,18.435053,47.385983,-2.9735,962.3905,0.0,79.4841 +2023-12-27 12:00:00,2.236068,3.8470767,349.69522,8.97255,-3.0735002,962.65393,0.0,80.99791 +2023-12-27 13:00:00,2.2203605,4.632494,352.23492,13.736293,-4.1235,962.8209,0.0,87.60819 +2023-12-27 14:00:00,2.3194828,4.924429,352.5687,12.907409,-4.4235,962.9493,0.0,88.58703 +2023-12-27 15:00:00,2.7892652,4.669047,345.4655,9.865748,-3.5235002,963.6033,0.0,84.07995 +2023-12-27 16:00:00,2.3086793,3.9115217,355.03033,4.398633,-1.6735,964.4455,0.0,76.14749 +2023-12-27 17:00:00,2.5,3.3015149,360.0,1.7356651,-0.4235,965.071,0.0,67.4147 +2023-12-27 18:00:00,2.9017239,3.6013885,358.0251,358.40887,0.1265,965.08435,0.0,59.553455 +2023-12-27 19:00:00,2.4186773,3.0149627,352.87506,354.2895,0.1265,964.8952,0.0,59.097824 +2023-12-27 20:00:00,1.6763055,1.9924859,342.64587,342.47433,0.026500002,964.40283,0.0,59.071865 +2023-12-27 21:00:00,1.6401219,1.9209373,322.43134,321.34018,-0.123500004,964.37354,0.0,59.032898 +2023-12-27 22:00:00,1.6401219,2.1260293,322.43134,318.81415,-0.5235,964.7675,0.0,60.77508 +2023-12-27 23:00:00,1.118034,2.302173,333.43503,325.6196,-1.1735,965.20654,0.0,65.97202 +2023-12-28 00:00:00,1.1661904,2.6400757,329.03632,322.69595,-1.3735,965.7341,0.0,67.98014 +2023-12-28 01:00:00,1.7029386,1.8384775,310.2363,315.0001,-3.3235002,966.0061,0.0,81.582054 +2023-12-28 02:00:00,1.6492423,1.7720045,345.9637,343.61038,-3.2735002,966.20514,0.0,78.832924 +2023-12-28 03:00:00,1.603122,1.811077,3.5762644,6.3401003,-2.6735,966.32574,0.0,75.97334 +2023-12-28 04:00:00,1.264911,1.5132746,341.56494,352.40543,-2.4735,966.17676,0.0,74.856026 +2023-12-28 05:00:00,0.70710677,1.0630146,278.13,318.81415,-2.6235,966.24097,0.0,75.69228 +2023-12-28 06:00:00,1.0816654,1.360147,303.6901,342.8972,-2.9735,966.4544,0.0,77.09241 +2023-12-28 07:00:00,0.92195445,1.3038404,319.39877,4.398633,-3.0735002,966.8123,0.0,77.667786 +2023-12-28 08:00:00,1.4142135,2.745906,278.13,303.11136,-4.9235,966.1545,0.0,85.866394 +2023-12-28 09:00:00,2.1954498,3.733631,329.9315,339.62347,-5.4735,966.79767,0.0,87.8132 +2023-12-28 10:00:00,1.9235383,3.8013155,278.97253,305.36255,-4.9235,966.53235,0.0,87.194954 +2023-12-28 11:00:00,2.1954498,5.0990195,300.06848,318.1799,-4.7235,966.8565,0.0,88.5599 +2023-12-28 12:00:00,2.6870058,6.046487,315.0001,325.78424,-4.2735,967.2312,0.0,90.99033 +2023-12-28 13:00:00,3.3941126,6.466065,315.0001,320.64825,-3.9235,967.2077,0.0,93.45584 +2023-12-28 14:00:00,3.2015622,6.074537,321.34018,327.09476,-3.4735,967.39325,0.0,94.18495 +2023-12-28 15:00:00,4.548626,6.7601776,326.65927,330.78085,-1.4235,967.5205,0.0,83.7052 +2023-12-28 16:00:00,5.5470715,7.8714676,332.04913,332.78397,0.22649999,967.75195,0.0,74.22136 +2023-12-28 17:00:00,6.3134775,8.595929,330.5929,330.75128,0.72650003,967.5665,0.0,76.55824 +2023-12-28 18:00:00,6.264982,8.5,331.38962,331.9276,1.0765,966.8782,0.0,75.48959 +2023-12-28 19:00:00,6.5863495,8.955445,329.9315,330.57263,1.4765,966.3886,0.0,72.003845 +2023-12-28 20:00:00,6.842514,9.30215,333.06055,333.15958,1.7265,965.964,0.0,68.65086 +2023-12-28 21:00:00,6.5795135,9.219544,335.77228,335.6589,1.9265,965.9082,0.0,66.425064 +2023-12-28 22:00:00,5.4120235,8.542248,332.48807,332.83508,1.5265,965.6413,0.0,71.21469 +2023-12-28 23:00:00,5.59017,9.884331,333.43503,334.2127,-0.1735,965.5931,0.0,88.63468 +2023-12-29 00:00:00,6.053924,9.953894,337.6713,337.5572,0.2765,965.776,0.0,90.97679 +2023-12-29 01:00:00,5.724509,9.234717,340.6154,342.34976,0.42650002,965.71075,0.0,93.00071 +2023-12-29 02:00:00,5.700877,9.269843,338.38516,339.80557,0.2765,965.3977,0.0,96.09 +2023-12-29 03:00:00,6.0008335,9.693296,336.42526,338.19852,0.026500002,965.0648,0.0,98.55922 +2023-12-29 04:00:00,5.5946403,9.213577,331.14444,334.26935,-0.4235,964.6928,0.0,98.19529 +2023-12-29 05:00:00,5.1312766,8.746428,326.92932,329.03632,-1.2735,964.2412,0.0,97.82277 +2023-12-29 06:00:00,5.077401,8.906739,327.87503,331.13293,-1.8735,963.93317,0.0,95.666664 +2023-12-29 07:00:00,5.077401,9.305912,327.87503,331.78275,-2.2735002,963.75885,0.0,93.89123 +2023-12-29 08:00:00,5.2478566,9.394147,329.03632,332.0711,-2.5735002,963.69904,0.0,94.22719 +2023-12-29 09:00:00,4.924429,8.9,330.8325,334.0108,-2.8735,963.7339,0.0,94.21316 +2023-12-29 10:00:00,4.924429,8.9,330.8325,334.0108,-3.0235002,963.609,0.0,93.85413 +2023-12-29 11:00:00,4.606517,8.5906925,332.87878,335.22488,-3.2235,963.2856,0.0,93.4928 +2023-12-29 12:00:00,4.204759,8.005623,334.65387,339.52765,-3.2235,963.3801,0.0,92.79352 +2023-12-29 13:00:00,4.4102154,8.364807,327.03058,332.20963,-2.8235002,963.08203,0.0,91.77968 +2023-12-29 14:00:00,4.1617303,8.19878,324.78232,329.99518,-2.7235,963.0076,0.0,90.08206 +2023-12-29 15:00:00,4.20119,7.547185,321.7661,327.99466,-1.6735,963.02747,0.0,84.93791 +2023-12-29 16:00:00,3.1890438,6.6573267,318.81418,327.26477,0.3265,963.42145,0.0,75.639435 +2023-12-29 17:00:00,2.9732137,5.020956,312.27362,315.80682,2.4764998,963.46,0.0,63.160603 +2023-12-29 18:00:00,2.3600848,3.4205263,306.38446,307.87503,4.4265003,962.7916,0.0,49.72811 +2023-12-29 19:00:00,2.1954498,2.9529645,300.06848,298.30066,6.1265,961.78674,0.0,39.87229 +2023-12-29 20:00:00,2.4166093,3.2695565,294.44394,293.4287,6.7265,961.0466,0.0,40.978146 +2023-12-29 21:00:00,2.2847319,4.1629314,293.1986,294.10223,6.5265,960.9144,0.0,46.528263 +2023-12-29 22:00:00,1.9924859,4.472136,287.52567,296.56497,3.6265,960.3683,0.0,63.19993 +2023-12-29 23:00:00,2.4186773,5.456189,277.1249,296.09537,0.8265,959.8303,0.0,72.41568 +2023-12-30 00:00:00,3.214032,7.1589108,275.35574,294.77512,0.7765,959.9152,0.0,72.1359 +2023-12-30 01:00:00,3.8078866,8.324061,283.67133,298.7202,0.6765,960.17944,0.0,72.92985 +2023-12-30 02:00:00,3.7,8.070935,288.92474,303.887,0.3265,959.92224,0.0,76.776054 +2023-12-30 03:00:00,3.6055512,7.8492036,289.44012,304.09503,-0.1735,959.541,0.0,80.80344 +2023-12-30 04:00:00,3.8275316,8.268011,289.85532,302.15228,-0.3235,959.41693,0.0,82.60506 +2023-12-30 05:00:00,3.8275316,8.268011,289.85532,302.15228,-0.3735,959.40717,0.0,82.59852 +2023-12-30 06:00:00,3.8897302,8.300603,287.96924,301.20044,-0.4735,959.1984,0.0,82.893105 +2023-12-30 07:00:00,4.1785164,8.746428,291.03757,300.96368,-0.5235,958.9996,0.0,82.88666 +2023-12-30 08:00:00,4.365776,8.91852,290.0953,300.3026,-0.6235,959.07465,0.0,83.4928 +2023-12-30 09:00:00,4.609772,9.349332,294.34106,302.33017,-0.6235,959.2638,0.0,83.182755 +2023-12-30 10:00:00,4.472136,9.097252,296.56497,303.34073,-0.8235,959.2243,0.0,84.405334 +2023-12-30 11:00:00,4.2190046,8.683317,301.4295,308.45374,-1.1735,958.5884,0.0,85.95097 +2023-12-30 12:00:00,4.304649,8.621485,300.7354,307.93332,-1.3235,958.559,0.0,85.61486 +2023-12-30 13:00:00,4.8259716,9.183136,304.01938,308.36752,-1.3735,958.1708,0.0,84.02509 +2023-12-30 14:00:00,5.108816,9.338095,310.23627,313.26434,-1.8735,958.3558,0.0,85.23381 +2023-12-30 15:00:00,5.7982755,9.338095,315.0001,316.73566,-1.5235,958.7085,0.0,81.21789 +2023-12-30 16:00:00,7.247068,10.089599,320.59937,320.63068,-1.0735,959.08093,0.0,73.70186 +2023-12-30 17:00:00,6.96563,9.667471,320.82635,320.8774,-1.3735,959.2107,0.0,73.366516 +2023-12-30 18:00:00,7.1505246,9.84124,317.83417,317.88306,-1.4235,959.10645,0.0,71.70214 +2023-12-30 19:00:00,7.366139,10.206861,318.30194,318.9726,-1.9735,958.99774,0.0,68.109604 +2023-12-30 20:00:00,7.366139,10.272779,318.30194,318.55182,-2.1235,958.77893,0.0,65.499214 +2023-12-30 21:00:00,7.930952,11.128791,318.06656,319.0079,-2.2735002,959.0327,0.0,65.71824 +2023-12-30 22:00:00,7.543209,10.823123,321.45877,321.75354,-2.4235,959.5701,0.0,65.93846 +2023-12-30 23:00:00,7.2201114,10.440306,323.44745,323.56903,-2.7735002,960.06757,0.0,68.461464 +2023-12-31 00:00:00,7.1217976,10.480935,321.8427,322.3647,-3.0735002,960.3858,0.2,74.46001 +2023-12-31 01:00:00,6.43506,9.546204,314.37048,315.42435,-4.0735,960.9412,0.1,77.20368 +2023-12-31 02:00:00,6.9426217,10.0657835,318.50363,319.02835,-4.0735,961.13025,0.1,79.01009 +2023-12-31 03:00:00,7.6850505,11.21606,327.75757,328.86108,-4.0735,961.60266,0.1,78.40382 +2023-12-31 04:00:00,7.529276,11.101802,329.68887,330.89536,-4.2235,961.76154,0.1,78.98656 +2023-12-31 05:00:00,7.1021123,10.547511,327.6526,328.5705,-4.2235,962.3284,0.0,77.77698 +2023-12-31 06:00:00,6.4404964,9.651943,323.8417,325.9806,-4.1735,962.811,0.0,77.48551 +2023-12-31 07:00:00,6.5459914,9.93227,325.58157,327.75003,-4.0735,963.02,0.0,78.40382 +2023-12-31 08:00:00,6.3812227,9.638465,327.8043,329.44412,-4.0235,963.6915,0.0,79.93487 +2023-12-31 09:00:00,6.4140472,9.72471,329.03632,329.74365,-3.9235,964.373,0.0,79.338 +2023-12-31 10:00:00,6.618912,10.017983,333.04788,333.94656,-4.0235,965.01434,0.0,79.322525 +2023-12-31 11:00:00,6.441273,9.615093,332.24155,333.43503,-4.1735,965.36206,0.0,79.60525 +2023-12-31 12:00:00,6.3134775,9.394147,330.5929,332.0711,-4.2735,965.9084,0.0,78.37164 +2023-12-31 13:00:00,6.306346,9.257429,332.62238,333.7118,-4.5235,966.8972,0.0,76.53212 +2023-12-31 14:00:00,6.0901566,8.947066,330.4886,332.00293,-4.6235,967.4436,0.0,75.335175 +2023-12-31 15:00:00,6.530697,9.261209,334.61212,335.09525,-4.5734997,968.02057,0.0,71.34305 +2023-12-31 16:00:00,6.306346,8.658521,345.30264,345.9637,-4.4735,968.8914,0.0,66.76255 +2023-12-31 17:00:00,5.9908266,7.930952,345.4998,346.13895,-3.7235,969.4217,0.0,60.909706 +2023-12-31 18:00:00,5.6044626,7.2532754,344.47583,344.81412,-2.6735,969.5393,0.0,55.007748 +2023-12-31 19:00:00,5.0289164,6.5802736,342.64587,343.2173,-2.1235,969.3659,0.0,54.296898 +2023-12-31 20:00:00,4.6840153,6.0440054,343.8865,343.66388,-1.5735,969.2868,0.0,53.180237 +2023-12-31 21:00:00,4.4944406,5.9808025,339.14545,339.44388,-1.6735,969.64484,0.0,54.637096 +2023-12-31 22:00:00,3.9446166,5.818075,329.53452,331.23245,-2.5735002,970.03174,0.0,58.850178 +2023-12-31 23:00:00,2.86007,6.074537,323.53067,327.09476,-4.6735,969.98425,0.0,67.77598 +2024-01-01 00:00:00,2.8844411,6.26099,326.3099,333.43503,-5.4735,970.4816,0.0,69.76926 +2024-01-01 01:00:00,2.7730849,5.7939625,334.35904,338.74942,-7.5734997,971.55743,0.0,82.590576 +2024-01-01 02:00:00,2.3706539,5.0328918,332.3541,339.04413,-7.9735,971.66254,0.0,83.85254 +2024-01-01 03:00:00,2.3706539,4.997999,332.3541,340.11475,-8.2235,971.61017,0.0,84.15345 +2024-01-01 04:00:00,2.1400933,4.5617976,322.59457,333.9967,-8.4235,971.75696,0.0,84.12857 +2024-01-01 05:00:00,1.7691805,3.8078864,312.70938,330.06857,-8.6235,971.99786,0.0,84.774086 +2024-01-01 06:00:00,1.4764823,3.2202482,298.30066,323.8417,-8.8235,972.1445,0.0,86.10726 +2024-01-01 07:00:00,1.603122,2.9154758,273.57626,300.96368,-8.9735,972.11273,0.0,87.122406 +2024-01-01 08:00:00,1.4560219,2.630589,254.05453,278.74606,-8.9735,971.8295,0.0,87.81634 +2024-01-01 09:00:00,1.4764823,2.5179358,241.69934,263.15732,-9.0234995,971.81915,0.0,88.51056 +2024-01-01 10:00:00,1.6278821,2.863564,227.4896,245.22488,-9.0234995,971.7248,0.0,88.86198 +2024-01-01 11:00:00,1.9798989,3.8078864,224.9999,240.06857,-8.8735,971.28455,0.0,88.524445 +2024-01-01 12:00:00,2.3600848,4.604346,216.38445,235.6196,-8.6735,970.8547,0.0,87.49885 +2024-01-01 13:00:00,2.1023796,4.0360875,205.34613,221.98714,-8.1735,971.8095,0.0,80.24746 +2024-01-01 14:00:00,2.6925824,4.743417,201.80147,214.69522,-7.9235,971.48413,0.0,81.89242 +2024-01-01 15:00:00,3.1622777,6.4350605,198.43504,212.94922,-6.6735,971.367,0.0,76.75987 +2024-01-01 16:00:00,3.8910153,5.4589376,205.90645,208.44283,-4.5235,971.62115,0.0,67.5435 +2024-01-01 17:00:00,4.2953463,5.769748,204.77512,205.67677,-2.4235,971.1016,0.0,58.889656 +2024-01-01 18:00:00,4.438468,5.9506307,202.52061,204.84236,-0.4735,970.2617,0.0,52.04678 +2024-01-01 19:00:00,4.6238513,6.1846585,201.57137,202.8337,1.0265,969.13837,0.0,47.429977 +2024-01-01 20:00:00,5.2000003,7.077429,202.6199,203.30492,1.8765,968.2638,0.0,44.80186 +2024-01-01 21:00:00,5.60803,7.930952,201.99118,203.0089,1.8265,967.6864,0.0,44.091652 +2024-01-01 22:00:00,5.536244,9.099999,200.07161,202.6199,0.8265,967.2078,0.0,47.370728 +2024-01-01 23:00:00,5.9464273,10.623088,199.65392,202.70288,-0.9735,966.47504,0.0,52.72571 +2024-01-02 00:00:00,6.9771056,12.0440855,207.29948,209.33174,-1.9235,966.09753,0.0,56.533028 +2024-01-02 01:00:00,7.3348484,12.435433,205.8663,207.80136,-2.2735002,966.02747,0.0,64.70759 +2024-01-02 02:00:00,7.5166483,12.48519,213.05583,215.21768,-2.5735002,965.58936,0.0,71.47167 +2024-01-02 03:00:00,7.6844,12.90155,214.93102,217.7582,-2.6735,964.8135,0.0,76.26423 +2024-01-02 04:00:00,7.324616,12.465152,218.90414,221.74796,-2.6235,964.4452,0.0,78.33631 +2024-01-02 05:00:00,6.325346,10.963576,230.77434,231.66663,-2.6235,964.25616,0.0,81.06216 diff --git a/resource_files/wind/open-meteo-44.04N95.20W438m.csv b/resource_files/wind/open-meteo-44.04N95.20W438m.csv new file mode 100644 index 000000000..e8242b4a5 --- /dev/null +++ b/resource_files/wind/open-meteo-44.04N95.20W438m.csv @@ -0,0 +1,8812 @@ +latitude,longitude,elevation,utc_offset_seconds,timezone,timezone_abbreviation +44.04218,-95.19757,438.0,0,GMT,GMT + +time,temperature_2m (°C),surface_pressure (hPa),wind_speed_10m (m/s),wind_speed_100m (m/s),wind_direction_10m (°),wind_direction_100m (°),precipitation (mm) +2022-12-31T00:00,-7.4,959.9,5.46,10.15,139,148,0.00 +2022-12-31T01:00,-6.6,959.8,5.83,11.02,149,156,0.00 +2022-12-31T02:00,-5.5,959.6,6.17,11.61,163,169,0.00 +2022-12-31T03:00,-4.2,959.4,6.30,12.02,180,183,0.00 +2022-12-31T04:00,-3.3,958.7,6.35,12.02,187,191,0.00 +2022-12-31T05:00,-3.2,958.0,6.24,11.81,186,191,0.00 +2022-12-31T06:00,-3.0,957.6,6.26,11.67,188,192,0.00 +2022-12-31T07:00,-2.9,956.6,6.51,12.01,191,195,0.00 +2022-12-31T08:00,-2.5,956.1,6.89,12.46,193,199,0.00 +2022-12-31T09:00,-2.3,955.8,6.91,12.40,194,199,0.00 +2022-12-31T10:00,-2.3,955.3,7.04,12.47,191,196,0.00 +2022-12-31T11:00,-2.2,955.1,7.58,13.18,188,192,0.00 +2022-12-31T12:00,-0.3,954.2,8.04,13.27,186,189,0.00 +2022-12-31T13:00,0.1,953.6,8.22,13.48,183,186,0.00 +2022-12-31T14:00,0.3,953.2,8.22,13.38,184,186,0.00 +2022-12-31T15:00,0.5,953.0,7.90,12.74,181,185,0.00 +2022-12-31T16:00,0.8,953.2,7.51,12.25,183,185,0.10 +2022-12-31T17:00,1.0,953.1,7.62,12.19,184,187,0.00 +2022-12-31T18:00,1.2,952.4,7.16,11.46,187,190,0.00 +2022-12-31T19:00,1.6,951.7,6.65,10.72,196,200,0.00 +2022-12-31T20:00,1.7,951.1,6.13,10.20,204,207,0.00 +2022-12-31T21:00,1.5,951.2,4.97,8.80,210,212,0.00 +2022-12-31T22:00,0.9,951.8,4.08,7.89,216,219,0.00 +2022-12-31T23:00,0.1,952.4,3.97,7.96,229,235,0.00 +2023-01-01T00:00,-0.4,952.7,3.89,7.61,224,231,0.00 +2023-01-01T01:00,-0.5,953.2,3.98,7.66,231,237,0.00 +2023-01-01T02:00,-1.7,953.8,3.94,7.81,246,251,0.00 +2023-01-01T03:00,-2.5,954.1,3.79,7.53,258,265,0.00 +2023-01-01T04:00,-2.9,954.1,3.51,7.11,267,273,0.00 +2023-01-01T05:00,-3.8,954.6,3.30,7.09,272,279,0.00 +2023-01-01T06:00,-4.4,955.1,3.32,7.11,277,284,0.00 +2023-01-01T07:00,-5.2,955.6,3.51,7.22,265,274,0.00 +2023-01-01T08:00,-5.8,955.9,3.40,7.44,268,276,0.00 +2023-01-01T09:00,-6.1,956.6,3.41,7.55,273,281,0.00 +2023-01-01T10:00,-6.3,957.1,3.54,7.53,278,287,0.00 +2023-01-01T11:00,-6.9,957.6,3.01,7.05,276,288,0.00 +2023-01-01T12:00,-4.9,957.4,3.10,7.20,272,284,0.00 +2023-01-01T13:00,-5.2,957.3,3.36,7.94,293,301,0.00 +2023-01-01T14:00,-5.6,958.1,2.88,7.02,290,306,0.00 +2023-01-01T15:00,-5.2,958.8,2.85,6.66,288,306,0.00 +2023-01-01T16:00,-3.6,960.1,2.66,5.84,290,308,0.00 +2023-01-01T17:00,-2.2,961.0,2.75,4.99,280,303,0.00 +2023-01-01T18:00,-1.2,961.7,2.86,4.90,258,290,0.00 +2023-01-01T19:00,-0.5,961.8,2.73,4.88,278,296,0.00 +2023-01-01T20:00,-0.3,961.9,2.36,4.75,306,311,0.00 +2023-01-01T21:00,-0.7,962.5,2.44,4.78,325,323,0.00 +2023-01-01T22:00,-1.6,962.9,2.01,4.60,333,326,0.00 +2023-01-01T23:00,-3.3,963.6,1.84,4.53,338,329,0.00 +2023-01-02T00:00,-4.5,963.4,1.97,4.84,330,330,0.00 +2023-01-02T01:00,-4.4,964.3,1.91,4.70,317,322,0.00 +2023-01-02T02:00,-5.2,965.0,2.55,5.68,334,334,0.00 +2023-01-02T03:00,-6.1,965.0,2.12,5.25,341,342,0.00 +2023-01-02T04:00,-7.0,965.5,2.31,5.68,342,346,0.00 +2023-01-02T05:00,-8.4,965.7,2.33,5.51,350,356,0.00 +2023-01-02T06:00,-8.9,965.9,2.40,5.61,358,4,0.00 +2023-01-02T07:00,-10.9,965.7,2.42,4.90,7,12,0.00 +2023-01-02T08:00,-10.6,965.8,2.16,5.36,13,14,0.00 +2023-01-02T09:00,-9.6,966.5,1.75,4.46,13,16,0.00 +2023-01-02T10:00,-9.2,967.0,1.39,3.44,30,26,0.00 +2023-01-02T11:00,-8.9,967.1,1.90,3.52,3,15,0.00 +2023-01-02T12:00,-7.9,967.7,1.00,1.46,354,16,0.00 +2023-01-02T13:00,-7.8,967.4,1.20,1.61,355,7,0.00 +2023-01-02T14:00,-7.8,967.3,1.12,1.32,333,351,0.00 +2023-01-02T15:00,-7.6,966.9,1.80,2.57,3,13,0.00 +2023-01-02T16:00,-7.2,967.0,2.21,3.10,18,21,0.00 +2023-01-02T17:00,-6.7,966.8,2.82,3.94,23,27,0.00 +2023-01-02T18:00,-6.3,966.4,2.31,3.01,18,21,0.10 +2023-01-02T19:00,-6.1,966.3,1.43,1.87,12,16,0.30 +2023-01-02T20:00,-6.0,965.5,2.51,3.23,23,22,0.60 +2023-01-02T21:00,-5.7,964.5,2.78,3.84,38,39,0.30 +2023-01-02T22:00,-5.6,964.5,2.56,3.69,31,33,0.10 +2023-01-02T23:00,-5.6,964.0,3.24,4.94,34,36,0.20 +2023-01-03T00:00,-6.2,964.0,3.18,6.33,28,39,0.30 +2023-01-03T01:00,-6.0,963.8,3.00,5.90,26,39,0.60 +2023-01-03T02:00,-5.9,963.2,3.11,5.91,42,56,0.80 +2023-01-03T03:00,-6.0,962.1,4.84,7.36,30,43,0.90 +2023-01-03T04:00,-6.1,961.8,4.53,8.35,31,44,0.70 +2023-01-03T05:00,-6.0,961.9,4.12,8.34,29,52,0.30 +2023-01-03T06:00,-6.1,960.9,5.08,8.35,10,32,0.10 +2023-01-03T07:00,-6.0,960.4,5.07,9.02,22,36,0.10 +2023-01-03T08:00,-6.1,959.3,5.06,10.88,18,36,0.30 +2023-01-03T09:00,-6.3,958.3,5.61,10.82,22,36,0.30 +2023-01-03T10:00,-6.6,957.0,5.86,11.99,27,41,0.30 +2023-01-03T11:00,-6.7,955.4,6.26,13.22,20,37,0.20 +2023-01-03T12:00,-6.3,955.0,6.93,12.29,18,33,0.00 +2023-01-03T13:00,-6.2,953.4,7.84,14.26,23,36,1.70 +2023-01-03T14:00,-5.8,952.6,7.52,15.49,33,44,1.80 +2023-01-03T15:00,-5.5,952.8,5.19,12.23,28,44,2.70 +2023-01-03T16:00,-5.2,953.0,6.44,11.74,28,44,2.90 +2023-01-03T17:00,-5.0,952.3,9.13,12.62,29,34,2.30 +2023-01-03T18:00,-5.0,951.0,9.06,13.79,22,30,3.40 +2023-01-03T19:00,-4.6,950.3,9.23,12.94,23,29,1.90 +2023-01-03T20:00,-4.5,950.0,8.32,12.75,16,26,0.40 +2023-01-03T21:00,-4.2,950.0,8.78,12.17,23,27,0.20 +2023-01-03T22:00,-4.1,950.3,9.45,12.88,23,27,0.10 +2023-01-03T23:00,-3.8,950.4,9.45,12.84,23,27,0.30 +2023-01-04T00:00,-4.7,950.3,9.02,12.39,21,25,0.60 +2023-01-04T01:00,-4.4,950.5,8.12,11.36,22,27,0.10 +2023-01-04T02:00,-4.1,950.8,7.92,10.89,10,15,0.10 +2023-01-04T03:00,-3.9,951.0,7.82,10.79,4,11,0.40 +2023-01-04T04:00,-3.6,951.2,7.91,10.74,358,5,0.50 +2023-01-04T05:00,-3.4,951.5,8.70,11.52,351,357,0.40 +2023-01-04T06:00,-3.2,951.7,9.21,12.23,351,356,0.40 +2023-01-04T07:00,-3.1,951.7,9.31,12.53,351,356,0.20 +2023-01-04T08:00,-3.0,952.1,9.38,12.61,353,357,0.10 +2023-01-04T09:00,-3.0,952.3,9.14,12.34,350,355,0.20 +2023-01-04T10:00,-3.0,952.2,9.08,12.22,343,349,0.30 +2023-01-04T11:00,-3.0,952.6,8.93,12.07,344,350,0.40 +2023-01-04T12:00,-2.8,952.5,8.45,11.37,349,353,0.30 +2023-01-04T13:00,-2.8,953.1,8.49,11.34,345,351,0.40 +2023-01-04T14:00,-3.0,953.3,8.35,11.30,341,347,0.60 +2023-01-04T15:00,-3.1,953.9,7.92,11.99,335,344,0.70 +2023-01-04T16:00,-3.0,954.2,7.92,12.02,334,342,0.90 +2023-01-04T17:00,-3.0,954.5,7.77,11.68,328,339,0.80 +2023-01-04T18:00,-2.8,954.4,9.08,11.48,333,340,0.30 +2023-01-04T19:00,-2.5,954.3,9.30,12.33,335,342,0.30 +2023-01-04T20:00,-2.6,954.3,8.63,12.57,325,333,0.50 +2023-01-04T21:00,-2.9,954.8,8.94,13.48,320,328,0.70 +2023-01-04T22:00,-3.3,955.4,8.44,14.27,319,329,0.60 +2023-01-04T23:00,-3.5,956.1,7.84,14.45,322,332,0.40 +2023-01-05T00:00,-3.1,956.7,8.16,10.87,341,345,0.30 +2023-01-05T01:00,-3.5,957.4,8.23,11.80,339,343,0.30 +2023-01-05T02:00,-3.8,958.0,8.54,11.74,342,344,0.30 +2023-01-05T03:00,-4.0,958.3,8.73,12.53,340,343,0.20 +2023-01-05T04:00,-4.1,958.7,8.52,12.56,338,343,0.20 +2023-01-05T05:00,-4.3,959.0,8.93,12.49,338,341,0.20 +2023-01-05T06:00,-4.3,959.6,8.62,12.43,338,342,0.10 +2023-01-05T07:00,-4.4,959.9,8.42,11.83,340,343,0.10 +2023-01-05T08:00,-4.4,960.2,8.67,11.67,339,342,0.10 +2023-01-05T09:00,-4.5,961.0,9.03,12.13,334,336,0.10 +2023-01-05T10:00,-5.1,961.0,8.68,12.94,331,336,0.10 +2023-01-05T11:00,-5.5,961.3,9.53,12.67,333,336,0.00 +2023-01-05T12:00,-5.5,961.4,7.88,10.95,340,344,0.00 +2023-01-05T13:00,-6.3,962.1,7.83,11.16,332,337,0.00 +2023-01-05T14:00,-7.2,962.9,8.46,11.39,325,329,0.00 +2023-01-05T15:00,-8.7,963.4,8.59,11.20,320,323,0.00 +2023-01-05T16:00,-10.1,964.0,7.42,12.88,314,322,0.00 +2023-01-05T17:00,-9.6,964.7,8.35,12.31,318,321,0.00 +2023-01-05T18:00,-9.2,964.4,8.70,11.36,322,323,0.00 +2023-01-05T19:00,-8.4,964.2,8.72,11.32,323,324,0.00 +2023-01-05T20:00,-8.0,964.1,8.38,10.24,324,324,0.00 +2023-01-05T21:00,-7.7,964.8,7.92,9.90,315,315,0.00 +2023-01-05T22:00,-7.6,964.9,6.81,8.93,310,311,0.00 +2023-01-05T23:00,-7.5,965.2,6.44,9.46,303,306,0.00 +2023-01-06T00:00,-5.5,965.1,5.59,8.77,316,317,0.00 +2023-01-06T01:00,-6.1,965.4,5.16,7.72,328,329,0.00 +2023-01-06T02:00,-6.5,965.7,4.76,7.08,321,324,0.00 +2023-01-06T03:00,-6.9,965.8,4.83,7.14,310,314,0.00 +2023-01-06T04:00,-7.1,966.1,4.30,6.23,306,312,0.00 +2023-01-06T05:00,-7.3,966.4,4.70,6.93,299,303,0.00 +2023-01-06T06:00,-7.3,966.4,4.53,6.91,301,304,0.00 +2023-01-06T07:00,-7.5,966.4,4.34,6.30,299,303,0.00 +2023-01-06T08:00,-7.7,966.5,4.00,5.74,302,305,0.00 +2023-01-06T09:00,-8.0,966.6,4.02,5.81,305,311,0.00 +2023-01-06T10:00,-8.4,967.1,3.85,5.41,298,304,0.00 +2023-01-06T11:00,-8.8,967.5,4.22,5.14,306,307,0.00 +2023-01-06T12:00,-8.6,967.7,4.74,6.54,316,321,0.00 +2023-01-06T13:00,-9.1,968.2,4.21,6.56,332,339,0.00 +2023-01-06T14:00,-9.4,968.6,4.43,6.14,342,348,0.00 +2023-01-06T15:00,-9.5,969.1,4.51,5.61,347,349,0.00 +2023-01-06T16:00,-9.5,969.7,3.92,4.71,341,343,0.00 +2023-01-06T17:00,-9.5,970.3,3.77,4.27,338,339,0.00 +2023-01-06T18:00,-9.6,970.1,3.53,3.98,335,335,0.00 +2023-01-06T19:00,-9.6,969.9,3.22,3.67,330,331,0.00 +2023-01-06T20:00,-9.5,969.6,3.18,3.49,336,336,0.00 +2023-01-06T21:00,-9.5,970.4,3.83,4.27,340,339,0.00 +2023-01-06T22:00,-9.7,971.0,3.88,4.49,348,348,0.00 +2023-01-06T23:00,-9.9,971.5,3.83,4.54,353,352,0.00 +2023-01-07T00:00,-10.9,972.0,4.10,5.40,360,360,0.00 +2023-01-07T01:00,-11.5,972.5,4.20,6.00,360,359,0.00 +2023-01-07T02:00,-11.7,972.9,4.12,6.12,354,355,0.00 +2023-01-07T03:00,-12.0,973.4,4.18,6.15,349,353,0.00 +2023-01-07T04:00,-12.3,973.7,4.55,6.65,351,353,0.00 +2023-01-07T05:00,-12.3,974.3,4.49,5.77,348,351,0.00 +2023-01-07T06:00,-12.6,974.8,3.96,4.61,344,347,0.00 +2023-01-07T07:00,-12.9,974.7,3.83,4.32,353,355,0.00 +2023-01-07T08:00,-13.5,975.0,3.49,4.55,347,351,0.00 +2023-01-07T09:00,-13.4,975.7,3.45,3.81,343,346,0.00 +2023-01-07T10:00,-13.7,975.3,3.01,3.35,339,343,0.00 +2023-01-07T11:00,-13.8,975.2,2.88,3.31,326,331,0.00 +2023-01-07T12:00,-13.7,975.1,2.58,2.55,324,334,0.00 +2023-01-07T13:00,-14.9,975.2,3.02,2.56,326,329,0.00 +2023-01-07T14:00,-14.4,975.5,2.91,2.73,333,336,0.00 +2023-01-07T15:00,-14.5,975.7,2.25,1.96,339,345,0.00 +2023-01-07T16:00,-14.2,976.3,1.12,0.61,333,9,0.00 +2023-01-07T17:00,-14.0,976.1,0.95,1.00,252,186,0.00 +2023-01-07T18:00,-13.8,975.9,2.20,2.30,240,214,0.00 +2023-01-07T19:00,-14.0,975.4,2.69,3.84,228,219,0.00 +2023-01-07T20:00,-14.4,974.4,2.27,4.50,221,217,0.00 +2023-01-07T21:00,-14.6,974.1,2.16,4.16,214,215,0.00 +2023-01-07T22:00,-15.7,973.6,3.09,4.70,205,209,0.00 +2023-01-07T23:00,-16.8,972.8,4.02,5.55,207,208,0.00 +2023-01-08T00:00,-15.2,972.2,5.52,8.08,212,216,0.00 +2023-01-08T01:00,-15.8,971.5,6.17,8.90,207,213,0.00 +2023-01-08T02:00,-15.9,970.9,6.69,9.57,212,214,0.00 +2023-01-08T03:00,-15.6,970.0,7.08,9.90,216,218,0.00 +2023-01-08T04:00,-15.2,969.2,7.41,10.22,212,217,0.00 +2023-01-08T05:00,-15.3,968.9,7.98,11.04,210,214,0.00 +2023-01-08T06:00,-15.1,969.2,8.38,12.20,213,217,0.00 +2023-01-08T07:00,-15.1,968.6,8.55,12.62,209,215,0.00 +2023-01-08T08:00,-14.9,968.7,8.43,12.87,214,219,0.00 +2023-01-08T09:00,-14.4,968.5,8.22,12.73,217,224,0.00 +2023-01-08T10:00,-13.6,967.9,8.02,12.31,216,226,0.00 +2023-01-08T11:00,-13.2,967.1,7.99,12.03,212,222,0.00 +2023-01-08T12:00,-11.9,967.4,7.75,12.13,219,229,0.00 +2023-01-08T13:00,-12.2,966.9,7.86,12.10,217,227,0.00 +2023-01-08T14:00,-12.4,966.6,7.81,12.20,220,230,0.00 +2023-01-08T15:00,-11.8,966.2,8.02,12.41,220,229,0.00 +2023-01-08T16:00,-10.7,966.6,8.01,12.34,221,230,0.00 +2023-01-08T17:00,-9.6,966.5,8.44,12.47,221,228,0.00 +2023-01-08T18:00,-8.8,966.2,8.27,12.32,225,232,0.00 +2023-01-08T19:00,-8.3,965.5,8.14,11.90,227,236,0.00 +2023-01-08T20:00,-7.9,964.8,7.82,11.63,231,242,0.00 +2023-01-08T21:00,-7.7,964.4,7.44,10.94,234,247,0.00 +2023-01-08T22:00,-8.0,964.0,7.13,10.50,236,252,0.00 +2023-01-08T23:00,-8.8,963.7,6.85,10.02,236,256,0.00 +2023-01-09T00:00,-9.2,963.7,7.07,9.66,226,244,0.00 +2023-01-09T01:00,-9.3,963.5,7.28,10.03,224,240,0.00 +2023-01-09T02:00,-9.1,963.2,7.43,10.26,222,237,0.00 +2023-01-09T03:00,-8.8,962.8,7.86,10.78,221,233,0.00 +2023-01-09T04:00,-8.0,962.7,8.08,11.92,221,230,0.00 +2023-01-09T05:00,-7.3,962.6,7.72,11.46,217,224,0.00 +2023-01-09T06:00,-6.7,962.5,7.63,12.06,214,220,0.00 +2023-01-09T07:00,-6.5,962.2,7.67,12.28,211,217,0.00 +2023-01-09T08:00,-6.1,961.6,7.92,12.76,206,212,0.00 +2023-01-09T09:00,-5.7,961.4,8.14,13.15,208,213,0.00 +2023-01-09T10:00,-5.4,960.7,8.23,13.07,204,209,0.00 +2023-01-09T11:00,-5.1,960.2,8.88,13.78,203,208,0.00 +2023-01-09T12:00,-3.7,959.5,8.92,14.08,198,203,0.00 +2023-01-09T13:00,-3.6,958.9,8.97,14.23,194,198,0.00 +2023-01-09T14:00,-3.7,958.8,8.63,13.69,193,198,0.00 +2023-01-09T15:00,-3.2,958.5,8.54,13.60,194,200,0.00 +2023-01-09T16:00,-2.1,958.3,8.23,12.94,201,204,0.00 +2023-01-09T17:00,-1.7,958.6,7.89,12.23,210,214,0.00 +2023-01-09T18:00,-1.4,957.3,7.71,11.53,214,219,0.00 +2023-01-09T19:00,-1.4,956.6,8.01,11.74,221,225,0.00 +2023-01-09T20:00,-2.7,956.3,8.72,12.22,242,245,0.00 +2023-01-09T21:00,-3.9,956.2,8.16,11.65,253,258,0.00 +2023-01-09T22:00,-4.5,956.4,7.94,11.72,259,267,0.00 +2023-01-09T23:00,-6.0,956.7,7.81,11.64,268,275,0.00 +2023-01-10T00:00,-6.3,956.4,6.73,10.21,265,273,0.00 +2023-01-10T01:00,-6.7,956.5,6.94,10.48,276,283,0.00 +2023-01-10T02:00,-6.7,957.0,7.00,10.51,280,286,0.10 +2023-01-10T03:00,-6.8,957.1,6.55,9.98,289,294,0.00 +2023-01-10T04:00,-7.3,957.7,6.62,10.17,297,300,0.00 +2023-01-10T05:00,-7.8,957.9,6.18,9.65,309,310,0.00 +2023-01-10T06:00,-8.4,958.0,5.94,9.27,314,314,0.00 +2023-01-10T07:00,-8.5,958.5,6.28,9.54,307,308,0.00 +2023-01-10T08:00,-8.3,958.4,6.08,9.83,316,316,0.00 +2023-01-10T09:00,-8.3,958.9,6.15,10.47,316,317,0.00 +2023-01-10T10:00,-8.4,959.2,5.98,10.80,322,324,0.00 +2023-01-10T11:00,-8.5,959.1,4.86,8.68,323,331,0.00 +2023-01-10T12:00,-8.5,958.7,2.86,5.54,324,343,0.00 +2023-01-10T13:00,-8.3,959.3,2.86,4.70,295,333,0.00 +2023-01-10T14:00,-8.3,959.6,2.92,3.98,276,321,0.00 +2023-01-10T15:00,-8.0,959.6,2.65,3.50,281,329,0.00 +2023-01-10T16:00,-7.2,959.9,1.63,2.65,281,349,0.00 +2023-01-10T17:00,-6.6,959.2,0.45,2.13,207,49,0.00 +2023-01-10T18:00,-5.8,958.8,1.93,1.42,201,129,0.00 +2023-01-10T19:00,-5.2,958.5,2.33,1.96,205,165,0.00 +2023-01-10T20:00,-4.8,958.2,2.04,2.02,191,160,0.00 +2023-01-10T21:00,-4.6,958.4,2.12,2.46,172,153,0.00 +2023-01-10T22:00,-4.5,958.4,2.11,3.19,149,139,0.00 +2023-01-10T23:00,-4.6,957.9,3.19,4.69,122,124,0.00 +2023-01-11T00:00,-5.4,957.7,4.49,6.46,122,125,0.00 +2023-01-11T01:00,-5.2,957.9,4.76,7.50,129,133,0.00 +2023-01-11T02:00,-5.0,957.5,5.48,7.86,128,131,0.00 +2023-01-11T03:00,-4.8,957.5,5.03,7.43,131,133,0.10 +2023-01-11T04:00,-4.5,957.5,4.46,6.89,138,140,0.10 +2023-01-11T05:00,-4.4,957.5,3.47,5.66,147,148,0.10 +2023-01-11T06:00,-4.2,956.5,4.88,7.38,137,144,0.10 +2023-01-11T07:00,-3.8,955.9,4.38,6.98,145,151,0.00 +2023-01-11T08:00,-3.4,955.2,4.25,6.72,139,150,0.00 +2023-01-11T09:00,-3.6,955.2,3.33,5.64,139,153,0.00 +2023-01-11T10:00,-5.5,955.4,2.33,3.96,137,164,0.00 +2023-01-11T11:00,-5.5,955.0,3.06,3.57,128,162,0.00 +2023-01-11T12:00,-7.1,955.1,2.19,3.35,223,243,0.00 +2023-01-11T13:00,-7.3,955.1,3.23,4.20,254,273,0.00 +2023-01-11T14:00,-7.4,955.2,3.38,5.40,289,309,0.00 +2023-01-11T15:00,-6.4,955.5,3.58,5.40,300,321,0.00 +2023-01-11T16:00,-5.3,956.4,4.25,7.02,319,327,0.00 +2023-01-11T17:00,-4.9,957.4,4.88,8.05,325,328,0.00 +2023-01-11T18:00,-5.1,958.0,6.74,9.93,325,326,0.00 +2023-01-11T19:00,-5.4,958.2,7.74,10.51,324,326,0.00 +2023-01-11T20:00,-5.3,958.7,9.19,11.25,329,330,0.00 +2023-01-11T21:00,-5.6,959.5,9.64,11.88,329,329,0.00 +2023-01-11T22:00,-5.8,960.4,9.00,12.04,330,331,0.00 +2023-01-11T23:00,-5.4,961.0,7.62,11.62,337,338,0.00 +2023-01-12T00:00,-6.4,962.1,9.14,12.87,340,341,0.00 +2023-01-12T01:00,-6.2,963.0,9.30,12.88,339,340,0.00 +2023-01-12T02:00,-6.0,964.2,8.81,12.13,335,336,0.00 +2023-01-12T03:00,-6.2,965.0,8.45,11.45,333,334,0.00 +2023-01-12T04:00,-6.4,965.7,8.50,11.59,333,335,0.00 +2023-01-12T05:00,-6.4,966.6,8.92,12.07,337,338,0.00 +2023-01-12T06:00,-6.4,967.3,9.63,12.82,336,337,0.00 +2023-01-12T07:00,-6.6,967.6,10.02,13.43,335,336,0.00 +2023-01-12T08:00,-6.8,968.3,9.93,13.21,335,336,0.00 +2023-01-12T09:00,-7.0,969.1,9.84,13.01,332,333,0.00 +2023-01-12T10:00,-7.4,969.4,10.07,13.24,331,332,0.00 +2023-01-12T11:00,-7.6,969.7,10.42,13.82,332,333,0.00 +2023-01-12T12:00,-9.0,970.1,10.93,13.71,327,328,0.00 +2023-01-12T13:00,-9.0,970.7,11.79,14.29,327,328,0.00 +2023-01-12T14:00,-8.9,971.3,12.17,14.99,332,332,0.00 +2023-01-12T15:00,-8.9,972.1,11.54,14.00,334,334,0.00 +2023-01-12T16:00,-9.1,973.0,11.18,14.54,335,334,0.00 +2023-01-12T17:00,-9.2,974.0,11.90,14.54,335,335,0.00 +2023-01-12T18:00,-9.7,974.1,11.45,13.95,333,333,0.00 +2023-01-12T19:00,-9.5,973.9,11.54,12.97,334,334,0.00 +2023-01-12T20:00,-9.1,973.6,10.94,12.65,337,338,0.00 +2023-01-12T21:00,-8.9,973.5,10.51,12.57,339,339,0.00 +2023-01-12T22:00,-8.9,974.3,10.02,12.21,331,332,0.00 +2023-01-12T23:00,-8.9,975.0,9.71,12.83,328,329,0.00 +2023-01-13T00:00,-10.7,975.9,9.75,11.99,332,332,0.00 +2023-01-13T01:00,-11.3,976.2,9.05,12.19,337,337,0.00 +2023-01-13T02:00,-11.3,976.4,8.67,11.52,339,340,0.00 +2023-01-13T03:00,-12.3,976.7,7.78,11.26,340,342,0.00 +2023-01-13T04:00,-12.7,976.6,7.02,10.57,340,343,0.00 +2023-01-13T05:00,-13.2,976.4,6.32,9.71,337,343,0.00 +2023-01-13T06:00,-13.2,977.0,6.30,9.66,327,334,0.00 +2023-01-13T07:00,-13.4,976.6,5.86,9.10,333,337,0.00 +2023-01-13T08:00,-13.9,976.8,5.91,9.10,332,337,0.00 +2023-01-13T09:00,-14.4,977.2,5.99,9.23,332,337,0.00 +2023-01-13T10:00,-14.7,977.4,5.94,9.26,327,334,0.00 +2023-01-13T11:00,-14.8,977.1,5.01,8.17,331,338,0.00 +2023-01-13T12:00,-14.9,976.7,4.25,6.71,336,340,0.00 +2023-01-13T13:00,-15.1,976.6,3.18,5.73,332,344,0.00 +2023-01-13T14:00,-15.0,976.4,2.62,4.07,310,332,0.00 +2023-01-13T15:00,-14.5,976.5,2.34,3.18,290,314,0.00 +2023-01-13T16:00,-13.7,977.0,1.80,1.90,270,288,0.00 +2023-01-13T17:00,-12.8,976.8,2.20,2.22,231,234,0.00 +2023-01-13T18:00,-11.9,976.2,3.48,4.11,219,221,0.00 +2023-01-13T19:00,-11.1,975.2,4.55,5.04,220,219,0.00 +2023-01-13T20:00,-10.2,974.7,5.30,5.73,224,224,0.00 +2023-01-13T21:00,-10.0,973.8,5.10,5.46,208,208,0.00 +2023-01-13T22:00,-10.2,973.3,5.17,6.68,195,197,0.00 +2023-01-13T23:00,-10.9,972.6,5.57,7.98,189,192,0.00 +2023-01-14T00:00,-10.7,972.7,7.24,10.03,200,203,0.00 +2023-01-14T01:00,-10.7,971.4,8.06,11.43,191,196,0.00 +2023-01-14T02:00,-10.2,970.3,8.96,12.73,186,191,0.00 +2023-01-14T03:00,-9.4,969.6,9.07,13.18,187,192,0.00 +2023-01-14T04:00,-9.2,968.8,9.28,13.89,187,192,0.00 +2023-01-14T05:00,-8.9,968.0,9.96,14.93,186,190,0.00 +2023-01-14T06:00,-8.6,967.4,10.44,15.48,189,193,0.00 +2023-01-14T07:00,-7.9,966.3,10.71,15.79,191,194,0.00 +2023-01-14T08:00,-8.1,965.3,11.04,16.35,192,195,0.00 +2023-01-14T09:00,-8.0,964.6,11.26,16.69,192,195,0.00 +2023-01-14T10:00,-7.7,963.6,11.50,17.09,193,196,0.00 +2023-01-14T11:00,-7.3,962.9,11.47,16.98,195,197,0.00 +2023-01-14T12:00,-5.4,962.3,12.65,18.37,197,199,0.00 +2023-01-14T13:00,-5.0,961.7,12.59,18.28,198,200,0.00 +2023-01-14T14:00,-4.7,961.1,12.65,18.26,198,201,0.00 +2023-01-14T15:00,-4.2,961.0,12.43,17.81,198,200,0.00 +2023-01-14T16:00,-3.3,961.1,12.46,17.81,197,199,0.00 +2023-01-14T17:00,-2.2,960.7,12.76,17.84,195,198,0.00 +2023-01-14T18:00,-1.1,959.7,12.87,17.87,197,199,0.00 +2023-01-14T19:00,-0.3,958.4,12.88,18.03,196,197,0.00 +2023-01-14T20:00,0.2,957.2,12.95,18.12,193,195,0.00 +2023-01-14T21:00,0.5,956.3,13.02,18.30,191,192,0.00 +2023-01-14T22:00,0.8,956.1,13.36,18.93,191,192,0.00 +2023-01-14T23:00,0.9,956.0,13.54,19.16,193,194,0.00 +2023-01-15T00:00,-0.1,955.3,13.55,19.30,188,190,0.00 +2023-01-15T01:00,-0.2,955.1,13.36,18.97,191,193,0.00 +2023-01-15T02:00,-0.1,955.0,13.22,18.78,193,195,0.00 +2023-01-15T03:00,0.0,954.6,13.83,19.51,196,199,0.00 +2023-01-15T04:00,0.2,954.3,14.01,19.74,198,200,0.00 +2023-01-15T05:00,0.1,953.9,14.20,19.94,199,201,0.00 +2023-01-15T06:00,0.2,953.7,13.98,19.65,203,204,0.00 +2023-01-15T07:00,0.2,953.8,13.12,18.61,204,205,0.00 +2023-01-15T08:00,0.2,954.2,12.16,17.41,202,204,0.00 +2023-01-15T09:00,0.3,954.2,11.43,16.48,196,199,0.00 +2023-01-15T10:00,0.3,953.8,11.09,15.99,193,196,0.00 +2023-01-15T11:00,0.1,953.2,10.87,15.81,193,195,0.00 +2023-01-15T12:00,0.4,953.4,10.36,15.04,193,195,0.00 +2023-01-15T13:00,0.3,952.9,10.18,14.93,187,190,0.00 +2023-01-15T14:00,0.1,952.9,9.75,14.45,186,188,0.00 +2023-01-15T15:00,-0.2,953.1,9.63,14.20,184,187,0.00 +2023-01-15T16:00,0.0,953.1,9.50,13.83,181,184,0.00 +2023-01-15T17:00,0.5,952.7,9.60,13.80,179,180,0.00 +2023-01-15T18:00,0.6,952.1,9.00,12.81,181,183,0.00 +2023-01-15T19:00,0.7,951.0,8.33,12.11,175,178,0.00 +2023-01-15T20:00,0.9,950.3,8.29,12.07,172,174,0.00 +2023-01-15T21:00,1.1,949.8,7.11,10.69,166,169,0.00 +2023-01-15T22:00,0.8,949.8,6.37,9.99,158,162,0.00 +2023-01-15T23:00,-0.2,949.1,5.80,9.40,144,151,0.00 +2023-01-16T00:00,-0.4,950.4,6.52,10.46,139,144,0.00 +2023-01-16T01:00,0.3,950.4,6.24,10.07,139,146,0.00 +2023-01-16T02:00,0.4,950.5,5.66,9.13,136,145,0.00 +2023-01-16T03:00,0.7,950.3,5.66,9.04,136,145,0.00 +2023-01-16T04:00,1.0,950.1,5.80,9.12,134,142,0.00 +2023-01-16T05:00,0.7,949.4,6.02,9.43,132,139,0.00 +2023-01-16T06:00,0.6,948.8,5.98,9.33,128,135,0.00 +2023-01-16T07:00,0.9,948.2,5.82,9.13,125,133,0.00 +2023-01-16T08:00,1.2,947.8,5.81,9.31,132,141,0.00 +2023-01-16T09:00,1.5,947.3,5.52,8.78,134,143,0.00 +2023-01-16T10:00,1.5,946.4,5.06,8.15,128,138,0.10 +2023-01-16T11:00,1.6,945.9,5.30,8.56,126,135,0.10 +2023-01-16T12:00,1.3,946.2,4.06,6.58,100,118,0.30 +2023-01-16T13:00,1.4,945.8,3.93,6.02,83,105,0.10 +2023-01-16T14:00,1.3,945.3,4.11,6.02,72,95,0.50 +2023-01-16T15:00,1.2,945.2,4.47,6.36,63,82,0.80 +2023-01-16T16:00,1.2,945.0,4.16,5.95,55,73,2.40 +2023-01-16T17:00,1.2,944.9,4.25,5.90,49,64,2.60 +2023-01-16T18:00,1.2,944.2,4.28,5.56,37,52,1.90 +2023-01-16T19:00,1.1,943.6,4.52,5.95,18,29,1.60 +2023-01-16T20:00,1.0,943.4,5.28,7.15,10,18,1.30 +2023-01-16T21:00,0.8,943.8,6.14,8.47,7,12,0.40 +2023-01-16T22:00,0.6,944.7,6.80,9.44,360,5,0.60 +2023-01-16T23:00,0.3,945.3,7.10,9.81,350,358,1.20 +2023-01-17T00:00,-0.1,946.0,7.15,10.49,342,349,0.90 +2023-01-17T01:00,-0.2,946.9,7.73,10.88,339,343,0.40 +2023-01-17T02:00,-0.3,947.6,7.96,11.12,335,338,0.30 +2023-01-17T03:00,-0.5,948.0,7.96,11.45,327,332,0.30 +2023-01-17T04:00,-0.9,948.6,8.53,11.87,321,326,0.20 +2023-01-17T05:00,-1.4,949.1,8.91,12.64,315,320,0.20 +2023-01-17T06:00,-1.9,949.3,8.57,13.70,312,320,0.20 +2023-01-17T07:00,-2.3,949.6,8.70,14.90,313,322,0.10 +2023-01-17T08:00,-2.5,949.9,8.70,15.26,313,324,0.00 +2023-01-17T09:00,-2.6,950.8,8.86,14.86,311,323,0.00 +2023-01-17T10:00,-2.8,951.5,8.71,14.00,304,316,0.00 +2023-01-17T11:00,-3.2,952.1,8.93,12.91,304,311,0.00 +2023-01-17T12:00,-3.3,952.3,8.77,13.78,315,323,0.00 +2023-01-17T13:00,-3.7,953.1,9.21,13.48,319,323,0.00 +2023-01-17T14:00,-4.2,953.7,9.30,12.70,320,323,0.00 +2023-01-17T15:00,-4.5,954.7,9.58,12.76,320,322,0.00 +2023-01-17T16:00,-4.6,955.6,9.57,12.00,319,320,0.00 +2023-01-17T17:00,-4.5,956.4,9.19,11.03,314,315,0.00 +2023-01-17T18:00,-4.4,956.8,9.32,11.15,308,310,0.00 +2023-01-17T19:00,-4.5,956.9,9.37,11.14,310,310,0.10 +2023-01-17T20:00,-4.4,957.1,9.48,11.17,313,314,0.10 +2023-01-17T21:00,-4.5,957.8,9.19,10.89,314,314,0.00 +2023-01-17T22:00,-4.8,958.4,9.12,11.48,322,322,0.00 +2023-01-17T23:00,-5.5,959.1,8.11,11.15,330,330,0.00 +2023-01-18T00:00,-6.5,960.3,6.44,8.99,314,318,0.00 +2023-01-18T01:00,-6.4,960.9,6.58,8.65,317,319,0.00 +2023-01-18T02:00,-6.7,961.4,6.65,8.35,315,317,0.00 +2023-01-18T03:00,-6.6,962.0,6.51,7.99,314,317,0.00 +2023-01-18T04:00,-6.6,962.0,6.38,8.73,328,330,0.00 +2023-01-18T05:00,-6.5,962.1,5.77,7.75,334,336,0.00 +2023-01-18T06:00,-6.7,962.0,5.59,7.45,336,338,0.00 +2023-01-18T07:00,-7.1,962.5,4.75,6.89,330,336,0.00 +2023-01-18T08:00,-7.8,963.0,4.74,6.75,312,320,0.00 +2023-01-18T09:00,-8.2,963.5,5.36,7.61,323,332,0.00 +2023-01-18T10:00,-8.9,963.1,5.55,8.20,337,344,0.00 +2023-01-18T11:00,-9.1,963.4,4.56,6.57,334,347,0.00 +2023-01-18T12:00,-10.1,963.3,4.22,5.61,338,357,0.00 +2023-01-18T13:00,-10.4,963.5,4.22,5.81,346,4,0.00 +2023-01-18T14:00,-10.8,963.1,4.20,6.40,357,14,0.00 +2023-01-18T15:00,-9.8,962.7,4.71,7.47,4,20,0.00 +2023-01-18T16:00,-7.8,963.0,3.72,6.52,24,36,0.00 +2023-01-18T17:00,-5.3,963.4,5.02,6.11,44,50,0.00 +2023-01-18T18:00,-3.4,963.2,5.16,5.42,58,60,0.00 +2023-01-18T19:00,-2.5,961.4,7.18,8.10,55,57,0.00 +2023-01-18T20:00,-2.3,961.2,6.90,7.74,60,61,0.00 +2023-01-18T21:00,-2.4,960.6,7.63,8.88,58,59,0.00 +2023-01-18T22:00,-2.5,960.2,7.26,9.48,60,62,0.00 +2023-01-18T23:00,-2.4,959.2,7.99,10.96,56,58,0.00 +2023-01-19T00:00,-2.9,958.9,7.63,10.61,58,61,0.00 +2023-01-19T01:00,-2.8,958.6,7.70,10.65,52,56,0.00 +2023-01-19T02:00,-2.8,958.3,8.20,11.19,45,49,0.00 +2023-01-19T03:00,-2.9,957.5,8.49,11.55,45,49,0.10 +2023-01-19T04:00,-3.0,956.7,8.71,11.88,42,45,0.20 +2023-01-19T05:00,-2.9,956.7,7.51,10.54,42,45,0.20 +2023-01-19T06:00,-3.0,956.4,6.88,9.72,36,40,0.50 +2023-01-19T07:00,-3.1,956.0,6.59,9.24,30,36,1.10 +2023-01-19T08:00,-3.2,955.3,7.07,9.79,29,34,1.40 +2023-01-19T09:00,-3.3,955.0,7.48,10.32,30,34,1.10 +2023-01-19T10:00,-3.4,954.6,8.04,10.92,21,25,0.60 +2023-01-19T11:00,-3.5,954.4,7.87,10.77,18,22,0.60 +2023-01-19T12:00,-3.8,953.8,7.43,10.04,5,10,0.50 +2023-01-19T13:00,-3.9,954.0,7.05,10.00,353,358,0.20 +2023-01-19T14:00,-3.9,954.3,7.71,10.55,347,350,0.30 +2023-01-19T15:00,-3.9,954.5,7.93,12.02,337,342,0.40 +2023-01-19T16:00,-3.7,955.0,9.12,12.35,334,339,0.20 +2023-01-19T17:00,-3.5,955.6,9.57,12.46,334,337,0.20 +2023-01-19T18:00,-3.0,955.5,11.01,13.34,335,336,0.10 +2023-01-19T19:00,-2.8,955.5,11.88,14.09,338,338,0.20 +2023-01-19T20:00,-2.8,956.1,11.94,14.09,334,334,0.20 +2023-01-19T21:00,-2.9,957.0,11.54,15.02,328,329,0.10 +2023-01-19T22:00,-3.2,958.6,11.20,14.46,323,324,0.10 +2023-01-19T23:00,-3.7,959.6,10.51,13.76,326,327,0.00 +2023-01-20T00:00,-4.3,960.6,10.18,13.26,325,326,0.00 +2023-01-20T01:00,-5.1,961.5,9.58,12.82,320,322,0.00 +2023-01-20T02:00,-5.4,962.5,9.06,12.13,317,319,0.00 +2023-01-20T03:00,-5.6,963.1,8.71,11.56,318,320,0.00 +2023-01-20T04:00,-5.9,963.8,8.63,11.54,316,317,0.00 +2023-01-20T05:00,-6.2,964.5,8.63,11.47,316,318,0.00 +2023-01-20T06:00,-6.4,965.3,8.49,11.25,315,317,0.00 +2023-01-20T07:00,-6.6,966.0,8.06,10.69,316,318,0.00 +2023-01-20T08:00,-6.9,966.7,7.79,10.14,318,319,0.00 +2023-01-20T09:00,-7.2,967.4,6.88,9.32,319,322,0.00 +2023-01-20T10:00,-7.3,967.5,6.16,8.32,318,321,0.00 +2023-01-20T11:00,-8.1,968.0,5.76,8.49,309,314,0.00 +2023-01-20T12:00,-9.5,967.8,5.66,8.82,316,321,0.00 +2023-01-20T13:00,-9.7,968.2,5.16,8.06,316,323,0.00 +2023-01-20T14:00,-10.0,968.6,4.91,7.64,303,313,0.00 +2023-01-20T15:00,-9.3,969.4,4.65,7.17,298,310,0.00 +2023-01-20T16:00,-8.5,969.9,3.73,7.06,290,308,0.00 +2023-01-20T17:00,-6.6,970.5,5.16,6.02,302,302,0.00 +2023-01-20T18:00,-5.7,970.3,4.83,5.59,297,299,0.00 +2023-01-20T19:00,-5.3,970.1,4.33,4.96,289,289,0.00 +2023-01-20T20:00,-4.8,969.8,3.76,4.40,287,287,0.00 +2023-01-20T21:00,-4.4,969.9,3.64,4.27,291,291,0.00 +2023-01-20T22:00,-4.0,969.9,3.04,4.25,297,297,0.00 +2023-01-20T23:00,-4.3,970.1,2.66,4.12,290,293,0.00 +2023-01-21T00:00,-7.1,969.7,1.32,1.40,279,270,0.00 +2023-01-21T01:00,-7.1,969.7,1.33,2.32,257,263,0.00 +2023-01-21T02:00,-6.8,969.5,1.40,2.50,270,272,0.00 +2023-01-21T03:00,-6.7,969.3,1.71,2.73,249,262,0.00 +2023-01-21T04:00,-6.6,969.1,2.66,4.08,236,253,0.00 +2023-01-21T05:00,-6.2,969.2,3.67,5.52,253,265,0.00 +2023-01-21T06:00,-5.8,969.1,3.90,5.92,270,282,0.00 +2023-01-21T07:00,-5.6,968.9,3.90,5.87,271,284,0.00 +2023-01-21T08:00,-5.5,968.8,3.59,5.40,257,270,0.00 +2023-01-21T09:00,-5.6,968.5,3.58,5.32,243,258,0.00 +2023-01-21T10:00,-5.4,968.2,4.05,6.15,237,248,0.00 +2023-01-21T11:00,-5.3,967.6,4.25,6.65,246,254,0.00 +2023-01-21T12:00,-5.5,967.3,3.58,5.49,247,260,0.00 +2023-01-21T13:00,-5.6,966.9,3.61,5.91,267,273,0.00 +2023-01-21T14:00,-5.6,966.7,3.47,5.40,258,271,0.00 +2023-01-21T15:00,-5.5,966.7,3.85,5.73,242,254,0.00 +2023-01-21T16:00,-4.9,966.8,4.88,7.14,255,259,0.00 +2023-01-21T17:00,-5.1,966.5,5.22,6.71,265,267,0.00 +2023-01-21T18:00,-4.6,966.1,5.22,5.83,275,276,0.00 +2023-01-21T19:00,-4.1,965.0,4.88,5.46,298,298,0.00 +2023-01-21T20:00,-3.7,964.7,2.11,2.20,265,267,0.00 +2023-01-21T21:00,-3.7,964.6,2.91,3.11,221,222,0.00 +2023-01-21T22:00,-4.2,964.5,4.03,4.74,224,228,0.00 +2023-01-21T23:00,-4.9,964.2,4.46,5.59,224,227,0.00 +2023-01-22T00:00,-6.3,963.7,3.47,3.97,213,221,0.00 +2023-01-22T01:00,-6.4,963.4,3.64,4.67,217,223,0.00 +2023-01-22T02:00,-7.1,963.0,3.42,4.49,232,238,0.00 +2023-01-22T03:00,-7.2,962.8,3.64,4.88,254,259,0.00 +2023-01-22T04:00,-7.3,962.7,3.61,5.00,267,271,0.00 +2023-01-22T05:00,-7.3,962.7,2.80,3.92,272,276,0.00 +2023-01-22T06:00,-7.6,962.6,2.34,2.91,290,297,0.00 +2023-01-22T07:00,-8.1,962.5,2.12,2.40,315,315,0.00 +2023-01-22T08:00,-8.5,962.3,2.00,2.06,323,321,0.00 +2023-01-22T09:00,-8.9,962.1,2.58,2.70,324,321,0.00 +2023-01-22T10:00,-9.1,961.5,2.70,2.90,321,316,0.00 +2023-01-22T11:00,-9.5,961.4,3.14,3.61,323,318,0.00 +2023-01-22T12:00,-9.6,961.3,3.27,3.76,337,335,0.00 +2023-01-22T13:00,-9.9,961.2,2.20,2.39,330,327,0.00 +2023-01-22T14:00,-10.2,961.5,2.15,2.42,332,330,0.00 +2023-01-22T15:00,-10.2,961.8,1.77,1.84,317,315,0.00 +2023-01-22T16:00,-10.0,962.3,1.66,1.84,303,299,0.00 +2023-01-22T17:00,-9.6,962.4,1.77,1.96,286,285,0.00 +2023-01-22T18:00,-8.9,962.3,1.96,2.26,285,283,0.00 +2023-01-22T19:00,-8.4,962.0,2.18,2.47,286,284,0.00 +2023-01-22T20:00,-7.8,961.8,2.34,2.62,290,288,0.00 +2023-01-22T21:00,-7.3,961.9,2.50,2.90,272,272,0.00 +2023-01-22T22:00,-6.9,962.3,2.90,3.40,268,268,0.00 +2023-01-22T23:00,-7.1,962.4,3.20,3.80,270,272,0.00 +2023-01-23T00:00,-7.1,962.3,2.94,3.41,260,265,0.00 +2023-01-23T01:00,-7.7,962.5,3.51,4.26,250,261,0.00 +2023-01-23T02:00,-8.6,962.6,4.37,5.53,250,257,0.00 +2023-01-23T03:00,-9.3,962.8,4.43,5.95,245,250,0.00 +2023-01-23T04:00,-9.2,962.9,4.74,6.69,242,248,0.00 +2023-01-23T05:00,-9.1,963.2,5.28,7.84,243,251,0.00 +2023-01-23T06:00,-9.3,963.3,5.92,8.52,240,248,0.00 +2023-01-23T07:00,-9.8,963.2,6.80,10.30,237,246,0.00 +2023-01-23T08:00,-10.2,962.7,7.70,11.68,232,242,0.00 +2023-01-23T09:00,-10.0,962.5,8.30,13.48,229,240,0.00 +2023-01-23T10:00,-9.7,962.9,9.24,14.41,234,242,0.00 +2023-01-23T11:00,-9.0,962.7,9.96,14.22,236,242,0.00 +2023-01-23T12:00,-6.9,962.2,10.00,14.56,233,238,0.00 +2023-01-23T13:00,-8.0,962.2,10.02,14.68,238,242,0.00 +2023-01-23T14:00,-9.7,962.6,9.80,14.23,245,252,0.00 +2023-01-23T15:00,-8.4,962.5,8.69,13.00,258,271,0.00 +2023-01-23T16:00,-5.2,963.0,7.82,12.09,274,286,0.00 +2023-01-23T17:00,-2.4,963.7,8.25,12.16,284,292,0.00 +2023-01-23T18:00,-0.9,963.9,8.25,11.86,293,299,0.00 +2023-01-23T19:00,-0.0,963.6,8.46,11.87,299,303,0.00 +2023-01-23T20:00,0.0,963.6,8.82,12.26,303,305,0.00 +2023-01-23T21:00,-0.2,964.2,9.07,12.18,304,306,0.00 +2023-01-23T22:00,-0.9,965.1,8.66,11.90,306,308,0.00 +2023-01-23T23:00,-1.7,965.3,7.93,11.18,304,306,0.00 +2023-01-24T00:00,-3.0,964.8,5.66,9.08,291,298,0.00 +2023-01-24T01:00,-4.0,964.9,6.77,10.72,283,292,0.00 +2023-01-24T02:00,-4.3,965.0,6.71,10.63,280,290,0.00 +2023-01-24T03:00,-5.0,965.0,6.61,10.40,273,284,0.00 +2023-01-24T04:00,-5.6,964.8,6.71,10.24,267,280,0.00 +2023-01-24T05:00,-6.2,965.1,6.50,10.04,270,283,0.00 +2023-01-24T06:00,-7.0,965.3,6.01,9.43,274,287,0.00 +2023-01-24T07:00,-7.7,965.2,5.91,9.00,267,282,0.00 +2023-01-24T08:00,-8.5,965.4,5.94,8.83,257,275,0.00 +2023-01-24T09:00,-8.7,965.6,5.53,8.61,257,273,0.00 +2023-01-24T10:00,-9.2,965.3,5.35,8.00,253,270,0.00 +2023-01-24T11:00,-9.7,965.0,4.75,7.05,255,277,0.00 +2023-01-24T12:00,-10.1,964.5,4.08,4.72,239,275,0.00 +2023-01-24T13:00,-11.0,963.8,3.94,3.48,216,252,0.00 +2023-01-24T14:00,-10.6,963.9,4.40,3.98,201,219,0.00 +2023-01-24T15:00,-9.7,964.4,4.78,5.90,200,206,0.00 +2023-01-24T16:00,-8.3,964.7,5.12,8.24,197,209,0.00 +2023-01-24T17:00,-7.0,964.5,5.97,10.70,189,201,0.00 +2023-01-24T18:00,-5.2,964.2,6.14,12.45,196,204,0.00 +2023-01-24T19:00,-3.6,964.3,7.03,10.71,210,213,0.00 +2023-01-24T20:00,-3.3,963.2,6.76,9.68,209,213,0.10 +2023-01-24T21:00,-3.8,962.5,6.69,9.62,212,218,0.00 +2023-01-24T22:00,-4.5,963.1,8.81,11.33,208,209,0.00 +2023-01-24T23:00,-4.9,963.6,8.94,12.47,220,222,0.00 +2023-01-25T00:00,-3.1,963.0,7.16,10.16,243,245,0.00 +2023-01-25T01:00,-3.8,963.4,6.93,9.85,237,241,0.00 +2023-01-25T02:00,-4.3,962.9,6.67,9.55,240,247,0.00 +2023-01-25T03:00,-5.4,961.6,6.17,9.43,253,265,0.00 +2023-01-25T04:00,-6.0,961.2,5.82,8.70,254,271,0.00 +2023-01-25T05:00,-6.3,960.7,5.71,8.60,259,279,0.00 +2023-01-25T06:00,-6.0,960.2,5.60,8.64,269,290,0.00 +2023-01-25T07:00,-6.0,959.9,5.40,8.16,268,287,0.00 +2023-01-25T08:00,-6.0,960.2,6.67,10.72,283,292,0.00 +2023-01-25T09:00,-5.9,960.3,6.10,9.66,288,297,0.00 +2023-01-25T10:00,-6.3,959.8,6.35,10.29,296,304,0.00 +2023-01-25T11:00,-4.4,960.0,8.35,11.77,316,319,0.00 +2023-01-25T12:00,-5.2,960.0,8.83,12.26,329,332,0.10 +2023-01-25T13:00,-6.1,960.3,9.73,14.73,320,325,0.30 +2023-01-25T14:00,-7.5,960.4,9.57,15.53,319,325,0.00 +2023-01-25T15:00,-8.6,960.7,9.92,18.42,318,330,0.10 +2023-01-25T16:00,-7.3,961.2,12.47,14.17,329,329,0.10 +2023-01-25T17:00,-7.1,961.7,11.77,14.99,331,332,0.10 +2023-01-25T18:00,-8.4,962.0,12.26,15.42,325,326,0.10 +2023-01-25T19:00,-9.9,961.9,12.62,15.94,322,323,0.10 +2023-01-25T20:00,-10.2,962.0,13.00,16.54,323,324,0.10 +2023-01-25T21:00,-10.7,962.3,13.64,17.32,323,324,0.00 +2023-01-25T22:00,-11.4,963.3,13.22,16.68,323,324,0.00 +2023-01-25T23:00,-12.1,963.6,12.40,16.28,326,327,0.00 +2023-01-26T00:00,-14.2,964.1,12.04,15.93,328,329,0.00 +2023-01-26T01:00,-14.8,964.5,11.35,15.42,329,330,0.00 +2023-01-26T02:00,-15.5,964.7,11.39,15.58,329,331,0.00 +2023-01-26T03:00,-16.2,964.7,11.03,15.40,329,331,0.00 +2023-01-26T04:00,-16.4,964.9,10.70,15.12,330,332,0.00 +2023-01-26T05:00,-16.4,965.0,9.89,14.09,332,333,0.00 +2023-01-26T06:00,-16.7,965.3,9.45,13.55,330,332,0.00 +2023-01-26T07:00,-17.1,965.4,9.35,13.66,328,331,0.00 +2023-01-26T08:00,-17.4,965.8,9.04,13.35,327,330,0.00 +2023-01-26T09:00,-17.7,966.3,9.01,13.36,326,329,0.00 +2023-01-26T10:00,-17.9,966.4,8.60,12.90,327,330,0.00 +2023-01-26T11:00,-18.1,966.4,8.18,12.40,327,331,0.00 +2023-01-26T12:00,-17.9,966.3,7.46,11.46,328,331,0.00 +2023-01-26T13:00,-18.1,966.4,6.85,10.62,326,330,0.00 +2023-01-26T14:00,-18.2,966.5,6.50,10.29,323,328,0.00 +2023-01-26T15:00,-17.2,967.1,6.08,9.65,314,320,0.00 +2023-01-26T16:00,-15.9,967.2,4.52,8.46,295,309,0.00 +2023-01-26T17:00,-14.1,967.1,6.20,6.42,291,288,0.00 +2023-01-26T18:00,-12.6,965.7,5.80,6.10,271,270,0.00 +2023-01-26T19:00,-11.5,964.7,6.63,6.89,259,261,0.00 +2023-01-26T20:00,-10.5,963.7,7.21,7.76,253,255,0.00 +2023-01-26T21:00,-9.9,963.0,7.63,8.42,248,250,0.00 +2023-01-26T22:00,-9.5,961.7,6.79,9.14,225,228,0.00 +2023-01-26T23:00,-10.7,960.4,8.10,11.52,213,216,0.00 +2023-01-27T00:00,-9.9,959.0,7.99,11.99,212,215,0.00 +2023-01-27T01:00,-10.0,957.5,9.08,13.62,199,203,0.00 +2023-01-27T02:00,-9.5,955.5,11.35,16.32,194,198,0.00 +2023-01-27T03:00,-8.3,953.3,12.90,18.24,198,201,0.00 +2023-01-27T04:00,-6.0,951.5,14.06,19.28,203,206,0.10 +2023-01-27T05:00,-4.5,950.2,14.24,19.53,212,214,0.10 +2023-01-27T06:00,-3.2,949.2,13.12,18.04,220,223,0.00 +2023-01-27T07:00,-1.8,948.2,11.37,16.03,231,235,0.00 +2023-01-27T08:00,-0.6,947.3,10.63,15.08,239,245,0.00 +2023-01-27T09:00,-0.2,947.1,10.79,15.54,257,262,0.00 +2023-01-27T10:00,0.8,946.9,11.30,15.86,272,275,0.00 +2023-01-27T11:00,0.7,947.2,13.30,18.19,282,285,0.00 +2023-01-27T12:00,0.1,947.5,11.90,16.26,304,308,0.10 +2023-01-27T13:00,-1.6,949.7,15.14,19.66,326,326,0.20 +2023-01-27T14:00,-5.2,951.8,14.38,20.47,318,318,0.00 +2023-01-27T15:00,-7.7,953.6,13.29,19.18,315,317,0.00 +2023-01-27T16:00,-8.2,954.9,14.96,18.23,319,320,0.00 +2023-01-27T17:00,-8.5,956.2,14.33,17.61,320,320,0.00 +2023-01-27T18:00,-8.5,957.0,14.21,17.32,315,315,0.00 +2023-01-27T19:00,-8.2,957.0,12.45,14.99,314,314,0.00 +2023-01-27T20:00,-8.1,957.6,11.05,13.05,319,319,0.00 +2023-01-27T21:00,-8.2,958.6,9.76,11.67,314,315,0.00 +2023-01-27T22:00,-8.4,959.8,7.84,10.36,300,301,0.00 +2023-01-27T23:00,-9.3,960.4,5.96,8.77,293,294,0.00 +2023-01-28T00:00,-11.9,961.0,5.02,7.86,317,318,0.00 +2023-01-28T01:00,-12.6,962.1,4.55,7.28,310,316,0.00 +2023-01-28T02:00,-12.6,962.8,4.26,7.00,321,323,0.00 +2023-01-28T03:00,-12.9,963.6,4.17,6.94,330,332,0.00 +2023-01-28T04:00,-13.4,964.4,3.55,6.31,328,335,0.00 +2023-01-28T05:00,-13.6,965.0,3.16,5.61,325,338,0.00 +2023-01-28T06:00,-13.8,965.1,3.76,6.46,335,344,0.00 +2023-01-28T07:00,-13.1,965.4,4.30,7.38,348,351,0.00 +2023-01-28T08:00,-12.9,966.1,4.00,6.51,357,357,0.10 +2023-01-28T09:00,-13.2,966.6,4.55,7.20,9,10,0.20 +2023-01-28T10:00,-13.7,967.1,5.75,7.11,13,14,0.30 +2023-01-28T11:00,-14.5,967.3,6.33,7.59,12,13,0.40 +2023-01-28T12:00,-15.9,967.5,6.68,7.94,9,11,0.20 +2023-01-28T13:00,-16.1,968.2,7.09,8.45,9,11,0.10 +2023-01-28T14:00,-16.4,969.2,7.47,8.74,16,16,0.10 +2023-01-28T15:00,-16.9,970.4,7.02,8.23,20,21,0.10 +2023-01-28T16:00,-17.1,971.7,6.77,7.66,19,20,0.10 +2023-01-28T17:00,-17.2,972.1,6.83,7.78,18,18,0.00 +2023-01-28T18:00,-17.1,971.9,7.08,7.69,13,13,0.00 +2023-01-28T19:00,-17.1,971.6,7.73,8.65,5,6,0.00 +2023-01-28T20:00,-17.2,971.0,8.41,9.52,3,4,0.00 +2023-01-28T21:00,-17.2,971.4,8.20,9.00,359,359,0.00 +2023-01-28T22:00,-17.4,971.3,8.82,10.21,356,357,0.00 +2023-01-28T23:00,-17.6,971.7,8.81,10.41,357,357,0.00 +2023-01-29T00:00,-19.0,973.3,8.79,10.73,343,344,0.00 +2023-01-29T01:00,-19.7,973.7,9.08,11.48,341,343,0.00 +2023-01-29T02:00,-19.8,974.4,9.01,10.66,341,341,0.00 +2023-01-29T03:00,-20.0,974.8,9.08,11.07,341,342,0.10 +2023-01-29T04:00,-20.2,974.9,8.89,10.76,343,343,0.00 +2023-01-29T05:00,-20.4,974.9,8.89,11.39,343,343,0.00 +2023-01-29T06:00,-20.9,974.7,7.94,11.40,343,345,0.00 +2023-01-29T07:00,-20.7,975.6,8.05,11.38,335,337,0.00 +2023-01-29T08:00,-20.6,975.8,7.48,9.69,337,338,0.00 +2023-01-29T09:00,-20.5,975.7,6.74,9.46,339,340,0.00 +2023-01-29T10:00,-20.7,975.6,7.15,10.12,340,340,0.00 +2023-01-29T11:00,-21.8,975.3,6.96,10.31,339,340,0.00 +2023-01-29T12:00,-22.2,975.1,6.20,9.41,342,345,0.00 +2023-01-29T13:00,-22.7,975.9,5.82,9.02,336,339,0.00 +2023-01-29T14:00,-22.8,976.7,4.91,7.92,327,332,0.00 +2023-01-29T15:00,-22.0,977.5,4.12,7.58,321,329,0.00 +2023-01-29T16:00,-20.9,977.9,3.83,6.72,319,330,0.00 +2023-01-29T17:00,-19.9,978.0,3.96,5.94,317,324,0.00 +2023-01-29T18:00,-18.8,977.8,4.58,5.56,306,308,0.00 +2023-01-29T19:00,-17.7,977.2,5.38,6.38,305,305,0.00 +2023-01-29T20:00,-17.0,976.3,6.01,6.93,314,314,0.00 +2023-01-29T21:00,-16.6,976.4,6.24,7.30,311,311,0.00 +2023-01-29T22:00,-16.6,976.2,5.41,6.77,304,304,0.00 +2023-01-29T23:00,-18.2,976.1,4.83,7.13,297,301,0.00 +2023-01-30T00:00,-17.5,976.3,5.41,8.10,289,294,0.00 +2023-01-30T01:00,-18.0,976.4,5.64,8.42,295,300,0.00 +2023-01-30T02:00,-18.1,976.7,5.78,8.41,293,298,0.00 +2023-01-30T03:00,-19.5,976.8,5.83,8.99,292,299,0.00 +2023-01-30T04:00,-19.6,977.1,5.91,9.19,294,301,0.00 +2023-01-30T05:00,-20.0,977.0,5.55,8.71,296,304,0.00 +2023-01-30T06:00,-20.6,977.5,5.28,8.51,295,304,0.00 +2023-01-30T07:00,-20.5,977.3,5.52,8.92,292,300,0.00 +2023-01-30T08:00,-20.7,977.0,5.58,9.19,285,292,0.00 +2023-01-30T09:00,-20.5,976.9,6.49,10.34,280,289,0.00 +2023-01-30T10:00,-20.6,977.1,6.94,10.72,282,290,0.00 +2023-01-30T11:00,-21.3,977.1,6.39,9.93,287,296,0.00 +2023-01-30T12:00,-21.8,976.9,5.22,8.10,290,303,0.00 +2023-01-30T13:00,-22.7,976.8,4.52,7.38,298,311,0.00 +2023-01-30T14:00,-23.4,977.4,4.35,6.92,293,307,0.00 +2023-01-30T15:00,-22.6,977.9,4.18,6.88,291,306,0.00 +2023-01-30T16:00,-21.6,978.6,3.45,6.71,280,298,0.00 +2023-01-30T17:00,-20.6,979.2,3.96,6.28,280,292,0.00 +2023-01-30T18:00,-19.7,978.9,4.65,5.57,289,291,0.00 +2023-01-30T19:00,-19.2,978.2,4.51,5.24,283,283,0.00 +2023-01-30T20:00,-18.9,977.5,4.87,5.57,279,279,0.00 +2023-01-30T21:00,-19.0,977.5,4.83,5.64,276,277,0.00 +2023-01-30T22:00,-19.4,977.3,3.90,5.76,271,278,0.00 +2023-01-30T23:00,-21.0,976.5,4.14,6.23,262,276,0.00 +2023-01-31T00:00,-22.2,976.3,4.61,7.00,257,270,0.00 +2023-01-31T01:00,-22.4,976.0,4.62,7.21,252,267,0.00 +2023-01-31T02:00,-22.7,975.5,5.28,8.39,241,255,0.00 +2023-01-31T03:00,-22.6,975.2,6.49,10.22,236,247,0.00 +2023-01-31T04:00,-22.6,975.1,6.98,10.93,232,240,0.00 +2023-01-31T05:00,-22.6,974.9,7.30,11.54,229,236,0.00 +2023-01-31T06:00,-22.5,974.4,7.64,11.98,225,232,0.00 +2023-01-31T07:00,-22.4,974.0,8.16,12.75,221,228,0.00 +2023-01-31T08:00,-22.0,973.0,8.63,13.43,224,231,0.00 +2023-01-31T09:00,-21.8,972.8,9.13,14.16,227,234,0.00 +2023-01-31T10:00,-21.6,972.0,8.70,13.57,232,240,0.00 +2023-01-31T11:00,-21.5,971.6,8.56,13.11,233,242,0.00 +2023-01-31T12:00,-21.7,970.3,8.13,12.29,238,248,0.00 +2023-01-31T13:00,-22.3,969.6,7.98,11.81,232,245,0.00 +2023-01-31T14:00,-22.6,969.7,8.35,12.11,227,239,0.00 +2023-01-31T15:00,-21.8,970.1,8.42,12.56,227,237,0.00 +2023-01-31T16:00,-20.4,970.8,8.35,13.23,228,235,0.00 +2023-01-31T17:00,-19.2,971.1,7.00,13.97,226,241,0.00 +2023-01-31T18:00,-18.1,970.4,7.08,13.64,223,242,0.00 +2023-01-31T19:00,-17.0,969.6,6.93,13.38,225,242,0.00 +2023-01-31T20:00,-16.1,969.1,6.80,13.15,229,243,0.00 +2023-01-31T21:00,-16.0,969.1,6.23,12.88,222,242,0.00 +2023-01-31T22:00,-15.8,968.7,7.57,11.43,228,237,0.00 +2023-01-31T23:00,-16.3,967.9,7.50,11.64,223,233,0.00 +2023-02-01T00:00,-17.2,968.1,7.78,11.88,217,226,0.00 +2023-02-01T01:00,-17.2,967.9,7.84,12.02,218,226,0.00 +2023-02-01T02:00,-17.0,967.6,8.32,12.67,215,222,0.00 +2023-02-01T03:00,-16.9,967.5,8.44,12.96,216,222,0.00 +2023-02-01T04:00,-16.5,967.5,8.59,13.30,220,226,0.00 +2023-02-01T05:00,-16.3,967.6,8.35,12.84,222,230,0.00 +2023-02-01T06:00,-16.3,967.5,8.10,12.57,235,242,0.00 +2023-02-01T07:00,-16.4,966.7,8.16,12.57,239,249,0.00 +2023-02-01T08:00,-16.5,966.5,7.02,10.84,242,256,0.00 +2023-02-01T09:00,-16.8,966.4,5.59,8.64,246,265,0.00 +2023-02-01T10:00,-17.6,966.4,4.83,6.90,243,269,0.00 +2023-02-01T11:00,-17.9,966.3,4.80,6.02,234,265,0.00 +2023-02-01T12:00,-18.6,966.3,4.12,3.88,241,282,0.00 +2023-02-01T13:00,-18.8,965.8,3.69,2.69,237,285,0.00 +2023-02-01T14:00,-18.9,965.6,4.28,2.20,217,240,0.00 +2023-02-01T15:00,-17.7,966.1,4.92,4.57,207,209,0.00 +2023-02-01T16:00,-15.7,966.7,5.64,7.49,207,211,0.00 +2023-02-01T17:00,-13.7,966.7,6.14,8.89,210,219,0.00 +2023-02-01T18:00,-12.1,966.3,6.31,11.32,207,224,0.00 +2023-02-01T19:00,-10.5,965.5,6.85,12.01,214,231,0.00 +2023-02-01T20:00,-9.8,965.1,6.77,12.02,214,234,0.00 +2023-02-01T21:00,-9.6,965.0,6.41,11.80,214,239,0.00 +2023-02-01T22:00,-9.7,965.0,7.65,11.24,228,241,0.00 +2023-02-01T23:00,-10.7,965.5,6.00,9.82,246,255,0.00 +2023-02-02T00:00,-11.9,966.1,4.81,7.78,253,262,0.00 +2023-02-02T01:00,-11.8,966.0,5.50,8.63,251,265,0.00 +2023-02-02T02:00,-12.0,965.6,5.79,8.70,252,270,0.00 +2023-02-02T03:00,-12.3,964.9,5.66,7.64,253,276,0.00 +2023-02-02T04:00,-12.5,964.3,5.63,7.11,250,273,0.00 +2023-02-02T05:00,-12.6,963.9,5.99,7.88,242,262,0.00 +2023-02-02T06:00,-11.9,963.8,6.58,10.10,246,262,0.00 +2023-02-02T07:00,-10.5,963.4,7.47,11.91,250,262,0.00 +2023-02-02T08:00,-9.4,963.0,8.21,13.18,248,260,0.00 +2023-02-02T09:00,-8.0,962.8,9.74,15.25,253,262,0.00 +2023-02-02T10:00,-7.8,962.7,9.80,15.42,252,260,0.00 +2023-02-02T11:00,-7.4,964.5,10.50,16.49,271,276,0.00 +2023-02-02T12:00,-7.9,967.1,12.84,17.65,326,328,0.00 +2023-02-02T13:00,-11.7,969.3,13.22,17.49,337,338,0.00 +2023-02-02T14:00,-14.2,971.4,12.87,17.29,338,339,0.00 +2023-02-02T15:00,-15.4,973.2,13.33,17.50,338,340,0.00 +2023-02-02T16:00,-16.9,974.7,13.56,16.84,338,339,0.00 +2023-02-02T17:00,-17.8,976.2,13.48,16.36,339,339,0.00 +2023-02-02T18:00,-18.3,977.2,12.94,15.54,339,339,0.00 +2023-02-02T19:00,-18.5,977.7,12.85,15.36,337,337,0.00 +2023-02-02T20:00,-18.7,978.1,12.08,14.49,334,335,0.00 +2023-02-02T21:00,-18.7,979.1,11.76,14.00,333,333,0.00 +2023-02-02T22:00,-19.2,979.8,9.93,12.12,332,333,0.00 +2023-02-02T23:00,-19.8,980.3,8.65,11.51,330,330,0.00 +2023-02-03T00:00,-21.9,981.4,8.38,11.65,327,327,0.00 +2023-02-03T01:00,-22.5,981.9,8.15,11.46,327,328,0.00 +2023-02-03T02:00,-23.1,982.1,7.82,11.21,325,325,0.00 +2023-02-03T03:00,-23.6,982.2,7.49,10.99,329,329,0.00 +2023-02-03T04:00,-23.8,982.5,7.42,11.00,333,333,0.00 +2023-02-03T05:00,-23.9,982.4,7.15,10.57,340,340,0.00 +2023-02-03T06:00,-24.4,982.2,6.29,9.71,342,343,0.00 +2023-02-03T07:00,-24.8,982.1,5.11,8.07,337,340,0.00 +2023-02-03T08:00,-25.0,982.3,4.38,6.91,333,338,0.00 +2023-02-03T09:00,-25.3,982.1,3.58,5.91,337,341,0.00 +2023-02-03T10:00,-25.6,981.5,2.73,4.72,352,355,0.00 +2023-02-03T11:00,-26.1,980.9,1.33,3.01,13,15,0.00 +2023-02-03T12:00,-25.1,981.2,1.36,2.40,107,92,0.00 +2023-02-03T13:00,-24.5,981.2,2.21,3.51,108,110,0.00 +2023-02-03T14:00,-23.7,981.1,3.41,4.81,130,133,0.00 +2023-02-03T15:00,-23.1,980.9,4.75,5.97,139,140,0.00 +2023-02-03T16:00,-22.2,980.6,5.83,7.03,149,150,0.00 +2023-02-03T17:00,-20.9,980.3,6.63,7.89,157,158,0.00 +2023-02-03T18:00,-19.7,979.4,7.64,9.14,166,167,0.00 +2023-02-03T19:00,-18.7,978.0,8.02,9.44,170,170,0.00 +2023-02-03T20:00,-17.7,976.3,8.47,10.28,168,169,0.00 +2023-02-03T21:00,-17.2,974.7,8.42,10.34,160,161,0.00 +2023-02-03T22:00,-17.2,973.4,8.29,11.76,157,162,0.00 +2023-02-03T23:00,-17.5,972.2,9.68,13.79,164,168,0.00 +2023-02-04T00:00,-17.4,971.1,10.10,14.66,172,175,0.00 +2023-02-04T01:00,-17.1,969.8,10.41,15.13,172,176,0.00 +2023-02-04T02:00,-16.4,968.4,11.40,16.61,178,182,0.00 +2023-02-04T03:00,-15.5,966.7,12.34,17.86,185,188,0.00 +2023-02-04T04:00,-14.4,965.3,13.26,19.11,191,195,0.00 +2023-02-04T05:00,-12.7,963.6,13.76,19.94,198,201,0.00 +2023-02-04T06:00,-10.7,962.6,13.47,19.59,204,207,0.00 +2023-02-04T07:00,-9.6,961.8,12.80,18.89,209,213,0.00 +2023-02-04T08:00,-9.1,961.0,12.40,18.24,214,218,0.00 +2023-02-04T09:00,-9.0,960.2,11.17,16.70,219,223,0.00 +2023-02-04T10:00,-8.9,959.1,10.54,15.74,223,229,0.00 +2023-02-04T11:00,-8.6,958.5,9.69,14.45,226,237,0.00 +2023-02-04T12:00,-9.5,957.3,6.97,9.73,231,255,0.00 +2023-02-04T13:00,-10.1,956.3,6.36,7.98,225,258,0.00 +2023-02-04T14:00,-10.1,955.8,5.95,6.89,222,261,0.00 +2023-02-04T15:00,-9.1,955.7,6.00,6.58,217,246,0.00 +2023-02-04T16:00,-7.3,955.7,6.32,7.90,215,232,0.00 +2023-02-04T17:00,-4.5,956.1,6.67,9.25,220,231,0.00 +2023-02-04T18:00,-2.0,955.8,7.08,10.12,223,232,0.00 +2023-02-04T19:00,-0.9,955.1,7.36,11.00,224,233,0.00 +2023-02-04T20:00,-0.7,955.3,7.58,11.41,239,246,0.00 +2023-02-04T21:00,-0.6,956.0,5.71,9.17,274,277,0.00 +2023-02-04T22:00,-0.3,955.3,5.82,9.46,275,286,0.00 +2023-02-04T23:00,-0.6,955.8,6.40,10.14,295,307,0.00 +2023-02-05T00:00,-1.1,956.4,5.95,9.30,297,310,0.00 +2023-02-05T01:00,-1.7,956.7,6.35,10.07,298,311,0.00 +2023-02-05T02:00,-2.1,956.8,5.99,9.39,296,309,0.00 +2023-02-05T03:00,-1.8,957.1,6.65,11.01,286,298,0.00 +2023-02-05T04:00,-0.6,957.4,8.19,13.38,288,295,0.00 +2023-02-05T05:00,-0.4,957.6,8.48,13.65,287,295,0.00 +2023-02-05T06:00,-0.3,957.7,8.57,13.78,289,295,0.00 +2023-02-05T07:00,-0.5,957.9,9.05,14.22,290,296,0.00 +2023-02-05T08:00,-0.6,958.6,9.70,14.79,296,300,0.00 +2023-02-05T09:00,-1.3,959.1,9.13,13.82,302,306,0.00 +2023-02-05T10:00,-2.4,959.9,8.54,12.88,308,312,0.00 +2023-02-05T11:00,-2.8,960.7,8.06,12.10,315,317,0.00 +2023-02-05T12:00,-4.9,961.3,7.37,11.03,318,321,0.00 +2023-02-05T13:00,-5.5,962.5,8.66,11.73,320,321,0.00 +2023-02-05T14:00,-6.4,963.2,7.72,10.38,323,324,0.00 +2023-02-05T15:00,-8.1,963.9,7.48,10.21,330,331,0.00 +2023-02-05T16:00,-8.4,964.6,6.60,8.88,325,326,0.00 +2023-02-05T17:00,-7.7,965.6,6.21,7.98,327,330,0.00 +2023-02-05T18:00,-7.0,966.0,6.08,7.32,324,325,0.00 +2023-02-05T19:00,-6.1,965.9,5.00,6.10,323,325,0.00 +2023-02-05T20:00,-5.5,966.0,4.56,5.36,322,323,0.00 +2023-02-05T21:00,-5.2,966.0,3.50,4.22,323,324,0.00 +2023-02-05T22:00,-5.2,966.0,2.48,3.66,317,325,0.00 +2023-02-05T23:00,-5.6,965.6,1.02,1.77,281,313,0.00 +2023-02-06T00:00,-8.7,965.3,3.19,2.78,212,218,0.00 +2023-02-06T01:00,-8.3,965.4,3.64,4.31,201,202,0.00 +2023-02-06T02:00,-8.1,965.2,4.39,6.11,192,195,0.00 +2023-02-06T03:00,-7.9,964.5,4.83,7.20,186,190,0.00 +2023-02-06T04:00,-7.3,963.8,5.21,8.21,177,177,0.00 +2023-02-06T05:00,-6.8,963.5,6.14,9.77,168,169,0.00 +2023-02-06T06:00,-6.5,963.7,7.23,11.36,166,168,0.00 +2023-02-06T07:00,-6.2,963.2,8.07,12.66,163,164,0.00 +2023-02-06T08:00,-6.0,962.6,8.28,12.83,168,169,0.00 +2023-02-06T09:00,-5.7,962.0,9.17,14.08,166,169,0.00 +2023-02-06T10:00,-5.4,960.9,10.10,15.38,164,166,0.00 +2023-02-06T11:00,-5.2,960.4,10.47,15.82,170,171,0.00 +2023-02-06T12:00,-4.6,959.9,10.62,16.21,171,173,0.00 +2023-02-06T13:00,-4.2,958.6,11.24,17.07,168,170,0.00 +2023-02-06T14:00,-3.9,957.7,11.52,17.38,166,168,0.00 +2023-02-06T15:00,-2.7,956.5,12.60,18.44,164,165,0.00 +2023-02-06T16:00,-1.3,955.9,12.52,17.92,165,166,0.00 +2023-02-06T17:00,0.1,955.0,12.54,17.63,165,166,0.00 +2023-02-06T18:00,0.5,953.8,11.07,17.23,163,165,0.00 +2023-02-06T19:00,1.2,952.9,10.53,15.45,176,175,1.00 +2023-02-06T20:00,1.4,951.2,8.32,12.12,183,183,1.80 +2023-02-06T21:00,1.6,950.2,5.66,8.67,197,197,0.20 +2023-02-06T22:00,1.3,949.8,4.17,7.05,210,212,0.50 +2023-02-06T23:00,1.4,949.7,4.41,7.31,237,240,0.60 +2023-02-07T00:00,0.7,950.8,5.48,8.65,232,236,0.00 +2023-02-07T01:00,-0.7,950.8,6.48,10.08,257,263,0.00 +2023-02-07T02:00,-1.6,950.9,7.91,12.20,273,280,0.00 +2023-02-07T03:00,-0.9,951.3,10.49,15.52,292,297,0.00 +2023-02-07T04:00,-0.6,952.2,11.93,17.04,305,308,0.00 +2023-02-07T05:00,-0.8,953.5,11.40,16.32,305,308,0.00 +2023-02-07T06:00,-0.6,954.8,11.60,16.45,306,308,0.00 +2023-02-07T07:00,-0.7,955.8,11.52,16.29,306,309,0.00 +2023-02-07T08:00,-0.8,957.0,10.86,15.49,307,309,0.00 +2023-02-07T09:00,-1.0,958.3,10.81,15.31,309,311,0.00 +2023-02-07T10:00,-1.7,959.3,10.68,15.26,308,310,0.00 +2023-02-07T11:00,-2.9,960.4,10.06,14.34,307,310,0.00 +2023-02-07T12:00,-4.5,961.2,9.58,13.93,310,314,0.00 +2023-02-07T13:00,-5.1,962.3,8.98,13.25,308,311,0.00 +2023-02-07T14:00,-5.0,963.5,8.27,12.50,302,307,0.00 +2023-02-07T15:00,-3.8,964.7,7.92,11.75,295,301,0.00 +2023-02-07T16:00,-2.3,965.8,6.36,10.74,286,294,0.00 +2023-02-07T17:00,-1.0,966.4,5.61,10.78,274,289,0.00 +2023-02-07T18:00,-0.3,966.7,5.57,12.50,261,282,0.00 +2023-02-07T19:00,0.3,966.7,6.17,13.25,253,275,0.00 +2023-02-07T20:00,0.7,966.8,5.77,12.90,244,269,0.00 +2023-02-07T21:00,1.1,967.1,6.93,11.67,250,264,0.00 +2023-02-07T22:00,1.2,967.5,7.37,11.02,252,258,0.00 +2023-02-07T23:00,0.3,967.4,7.74,11.74,243,250,0.00 +2023-02-08T00:00,-0.4,967.0,6.69,10.58,248,255,0.00 +2023-02-08T01:00,-1.3,967.6,5.42,8.71,265,273,0.00 +2023-02-08T02:00,-1.7,967.6,5.74,8.33,247,265,0.00 +2023-02-08T03:00,-2.0,967.6,6.12,8.38,232,250,0.00 +2023-02-08T04:00,-2.3,967.5,6.52,9.08,229,243,0.00 +2023-02-08T05:00,-2.5,967.3,6.28,9.14,233,247,0.00 +2023-02-08T06:00,-2.6,967.0,6.06,8.75,232,248,0.00 +2023-02-08T07:00,-2.8,967.0,6.51,9.28,225,240,0.00 +2023-02-08T08:00,-2.7,966.6,6.36,9.69,225,239,0.00 +2023-02-08T09:00,-2.5,966.3,6.81,10.60,220,232,0.00 +2023-02-08T10:00,-2.4,966.1,7.14,11.25,217,227,0.00 +2023-02-08T11:00,-2.7,966.1,7.63,11.96,214,223,0.00 +2023-02-08T12:00,-2.8,964.8,6.49,10.32,214,225,0.00 +2023-02-08T13:00,-3.4,964.4,6.98,10.62,207,218,0.00 +2023-02-08T14:00,-3.3,964.4,7.52,11.82,205,212,0.00 +2023-02-08T15:00,-1.9,964.8,8.01,12.81,206,210,0.00 +2023-02-08T16:00,-0.4,964.7,7.74,11.96,209,212,0.00 +2023-02-08T17:00,0.3,964.8,7.60,12.30,207,211,0.00 +2023-02-08T18:00,1.2,964.3,8.32,12.55,207,211,0.00 +2023-02-08T19:00,2.0,964.2,9.66,14.15,207,210,0.00 +2023-02-08T20:00,2.4,963.6,9.62,13.96,205,208,0.00 +2023-02-08T21:00,2.5,962.7,9.17,13.43,207,209,0.00 +2023-02-08T22:00,2.4,962.2,8.73,13.06,204,207,0.00 +2023-02-08T23:00,1.8,961.5,8.44,12.78,199,203,0.00 +2023-02-09T00:00,0.6,960.9,7.37,11.36,201,206,0.00 +2023-02-09T01:00,-0.1,961.1,7.31,11.38,199,203,0.00 +2023-02-09T02:00,-0.7,960.3,6.91,10.83,202,205,0.00 +2023-02-09T03:00,-0.9,959.7,7.09,11.23,196,199,0.00 +2023-02-09T04:00,-0.9,959.0,6.83,10.77,198,202,0.00 +2023-02-09T05:00,-0.9,958.5,6.58,10.02,204,207,0.00 +2023-02-09T06:00,-2.2,959.4,5.09,8.07,227,227,0.00 +2023-02-09T07:00,-4.3,959.6,2.86,4.55,216,237,0.00 +2023-02-09T08:00,-3.8,959.0,4.03,5.06,224,245,0.00 +2023-02-09T09:00,-3.9,958.9,3.90,4.66,269,293,0.00 +2023-02-09T10:00,-2.9,958.8,4.74,6.22,305,323,0.00 +2023-02-09T11:00,-3.2,959.1,6.72,10.12,330,337,0.00 +2023-02-09T12:00,-4.3,958.7,8.73,13.30,330,337,0.00 +2023-02-09T13:00,-4.3,959.7,9.59,14.18,330,334,0.00 +2023-02-09T14:00,-4.0,960.2,11.45,16.06,332,335,0.00 +2023-02-09T15:00,-3.8,960.9,11.05,17.27,333,335,0.00 +2023-02-09T16:00,-2.9,961.8,13.10,16.56,334,336,0.00 +2023-02-09T17:00,-1.7,962.8,15.49,18.63,336,337,0.00 +2023-02-09T18:00,-1.0,964.3,15.99,19.11,339,339,0.00 +2023-02-09T19:00,-0.6,964.9,13.82,17.33,341,342,0.00 +2023-02-09T20:00,-1.0,965.9,14.40,18.08,335,335,0.00 +2023-02-09T21:00,-2.1,966.9,14.82,18.93,330,331,0.00 +2023-02-09T22:00,-3.4,968.5,13.60,17.60,329,328,0.00 +2023-02-09T23:00,-4.8,969.9,14.49,19.32,332,334,0.00 +2023-02-10T00:00,-8.7,971.1,14.19,19.28,331,333,0.00 +2023-02-10T01:00,-9.4,972.3,13.91,19.10,332,334,0.00 +2023-02-10T02:00,-10.3,973.3,13.60,18.79,334,335,0.00 +2023-02-10T03:00,-10.8,973.9,13.47,18.75,335,336,0.00 +2023-02-10T04:00,-11.2,974.4,12.80,17.95,335,336,0.00 +2023-02-10T05:00,-11.5,974.6,12.04,17.16,336,337,0.00 +2023-02-10T06:00,-11.8,974.7,10.78,15.77,335,337,0.00 +2023-02-10T07:00,-12.1,974.8,9.75,14.72,332,335,0.00 +2023-02-10T08:00,-12.3,975.1,8.83,13.69,329,333,0.00 +2023-02-10T09:00,-12.4,974.9,7.79,12.39,327,332,0.00 +2023-02-10T10:00,-12.4,974.5,6.56,10.75,322,330,0.00 +2023-02-10T11:00,-12.3,974.9,6.09,10.07,318,326,0.00 +2023-02-10T12:00,-13.3,974.9,4.64,7.56,307,323,0.00 +2023-02-10T13:00,-13.5,975.2,4.30,6.24,288,311,0.00 +2023-02-10T14:00,-12.9,975.4,4.72,6.30,265,290,0.00 +2023-02-10T15:00,-10.8,975.5,4.88,6.96,255,277,0.00 +2023-02-10T16:00,-8.5,975.6,5.68,8.50,244,261,0.00 +2023-02-10T17:00,-6.2,975.8,5.24,10.44,228,253,0.00 +2023-02-10T18:00,-4.3,975.7,6.45,11.87,229,249,0.00 +2023-02-10T19:00,-3.1,975.0,7.07,12.49,226,241,0.00 +2023-02-10T20:00,-2.8,974.5,8.06,10.70,224,228,0.00 +2023-02-10T21:00,-2.8,973.9,7.71,13.51,214,227,0.00 +2023-02-10T22:00,-2.9,973.4,9.21,13.12,214,220,0.00 +2023-02-10T23:00,-3.8,972.6,9.60,14.10,214,218,0.00 +2023-02-11T00:00,-4.7,972.1,10.18,15.38,213,218,0.00 +2023-02-11T01:00,-4.6,971.5,10.71,16.12,213,217,0.00 +2023-02-11T02:00,-4.3,970.7,11.44,16.95,211,215,0.00 +2023-02-11T03:00,-4.1,969.9,12.11,17.58,211,214,0.00 +2023-02-11T04:00,-3.9,969.4,12.46,18.15,213,215,0.00 +2023-02-11T05:00,-3.7,969.0,13.09,18.90,214,217,0.00 +2023-02-11T06:00,-3.6,968.6,13.54,19.29,216,218,0.00 +2023-02-11T07:00,-3.7,968.3,13.32,19.07,218,221,0.00 +2023-02-11T08:00,-3.9,968.2,12.98,18.67,220,224,0.00 +2023-02-11T09:00,-4.1,967.9,12.82,18.39,222,225,0.00 +2023-02-11T10:00,-4.2,967.7,12.67,18.46,222,227,0.00 +2023-02-11T11:00,-4.3,967.3,12.59,18.34,224,228,0.00 +2023-02-11T12:00,-4.5,967.1,11.18,16.65,227,231,0.00 +2023-02-11T13:00,-4.6,967.3,10.97,16.37,228,231,0.00 +2023-02-11T14:00,-4.6,967.3,10.68,15.89,225,230,0.00 +2023-02-11T15:00,-3.6,967.4,10.61,15.45,225,229,0.00 +2023-02-11T16:00,-2.3,967.7,10.75,15.03,227,229,0.00 +2023-02-11T17:00,-1.1,967.9,9.97,16.57,224,231,0.00 +2023-02-11T18:00,-0.6,967.2,10.25,14.61,225,229,0.00 +2023-02-11T19:00,-0.0,966.4,9.90,13.30,223,227,0.00 +2023-02-11T20:00,0.2,965.7,8.52,14.60,216,229,0.00 +2023-02-11T21:00,0.5,965.1,9.28,13.01,217,224,0.00 +2023-02-11T22:00,0.5,965.1,9.25,12.81,219,223,0.00 +2023-02-11T23:00,-0.0,964.7,9.01,12.94,220,223,0.00 +2023-02-12T00:00,-0.6,964.4,7.95,12.17,220,224,0.00 +2023-02-12T01:00,-0.9,963.9,7.64,11.91,217,221,0.00 +2023-02-12T02:00,-1.1,963.1,7.27,11.46,214,218,0.00 +2023-02-12T03:00,-1.2,962.6,7.16,11.30,213,216,0.00 +2023-02-12T04:00,-1.3,962.4,7.32,11.64,212,217,0.00 +2023-02-12T05:00,-1.3,962.2,7.20,11.54,218,223,0.00 +2023-02-12T06:00,-1.6,962.0,7.01,11.33,222,228,0.00 +2023-02-12T07:00,-2.0,961.6,7.00,11.22,223,230,0.00 +2023-02-12T08:00,-2.6,960.9,6.84,10.62,218,227,0.00 +2023-02-12T09:00,-3.6,961.0,5.22,8.52,234,239,0.00 +2023-02-12T10:00,-4.3,960.8,5.23,8.17,244,255,0.00 +2023-02-12T11:00,-4.8,960.7,5.35,8.00,253,269,0.00 +2023-02-12T12:00,-5.3,960.6,3.97,5.74,304,325,0.00 +2023-02-12T13:00,-6.1,960.4,4.24,5.99,326,345,0.00 +2023-02-12T14:00,-5.7,960.1,3.31,5.30,331,2,0.00 +2023-02-12T15:00,-4.1,960.9,3.88,5.47,325,351,0.00 +2023-02-12T16:00,-2.7,961.4,4.88,6.30,325,340,0.00 +2023-02-12T17:00,-2.2,961.5,5.20,6.59,330,338,0.00 +2023-02-12T18:00,-1.8,961.4,5.33,6.85,330,337,0.00 +2023-02-12T19:00,-1.1,960.7,5.04,6.30,321,327,0.00 +2023-02-12T20:00,0.4,960.1,4.16,5.81,305,312,0.00 +2023-02-12T21:00,1.4,959.5,3.62,5.80,298,306,0.00 +2023-02-12T22:00,1.5,959.2,3.31,5.63,295,303,0.00 +2023-02-12T23:00,0.7,958.9,4.18,6.71,281,297,0.00 +2023-02-13T00:00,-0.6,958.8,5.16,8.19,279,294,0.00 +2023-02-13T01:00,-0.9,958.4,5.61,9.08,266,281,0.00 +2023-02-13T02:00,-0.3,957.8,7.83,12.66,265,275,0.00 +2023-02-13T03:00,-0.2,957.8,9.11,14.56,267,275,0.00 +2023-02-13T04:00,-0.4,958.2,8.91,14.20,273,280,0.00 +2023-02-13T05:00,-0.5,958.2,8.81,13.82,282,290,0.00 +2023-02-13T06:00,-0.6,958.5,8.39,13.15,292,298,0.00 +2023-02-13T07:00,-1.3,958.7,7.60,11.98,297,303,0.00 +2023-02-13T08:00,-2.1,958.9,6.66,10.58,298,307,0.00 +2023-02-13T09:00,-2.7,958.7,5.91,9.46,294,306,0.00 +2023-02-13T10:00,-3.3,958.4,5.13,8.24,291,306,0.00 +2023-02-13T11:00,-3.9,958.1,4.43,6.98,288,308,0.00 +2023-02-13T12:00,-5.2,957.6,3.83,5.52,285,312,0.00 +2023-02-13T13:00,-6.4,957.1,3.24,3.33,261,303,0.00 +2023-02-13T14:00,-5.9,957.4,4.89,3.92,221,232,0.00 +2023-02-13T15:00,-3.8,957.4,4.44,5.38,211,215,0.00 +2023-02-13T16:00,-1.3,957.5,5.59,8.10,209,213,0.00 +2023-02-13T17:00,0.1,957.2,6.43,9.93,201,205,0.00 +2023-02-13T18:00,1.3,956.4,7.79,11.95,196,199,0.00 +2023-02-13T19:00,2.3,955.2,8.55,13.19,191,194,0.00 +2023-02-13T20:00,3.0,954.2,9.65,14.36,190,193,0.00 +2023-02-13T21:00,3.8,953.1,10.58,15.46,195,198,0.00 +2023-02-13T22:00,4.2,952.3,11.41,16.50,205,207,0.00 +2023-02-13T23:00,3.8,951.5,10.56,15.61,206,207,0.00 +2023-02-14T00:00,3.7,950.8,10.49,15.84,202,205,0.00 +2023-02-14T01:00,3.4,950.3,10.37,15.88,199,202,0.00 +2023-02-14T02:00,3.6,949.6,11.14,16.95,196,199,0.00 +2023-02-14T03:00,3.8,949.4,12.30,18.22,198,200,0.00 +2023-02-14T04:00,4.1,948.8,13.13,19.24,201,202,0.00 +2023-02-14T05:00,3.7,948.0,12.66,18.55,201,203,0.00 +2023-02-14T06:00,3.5,947.7,12.97,18.94,200,202,0.00 +2023-02-14T07:00,3.3,947.0,13.16,19.09,200,201,0.00 +2023-02-14T08:00,3.4,946.3,13.50,19.43,199,200,0.00 +2023-02-14T09:00,3.5,946.0,13.84,19.76,201,203,0.00 +2023-02-14T10:00,3.8,945.5,13.50,19.30,202,204,0.00 +2023-02-14T11:00,3.6,944.8,12.71,18.31,193,195,0.10 +2023-02-14T12:00,3.9,943.7,9.65,14.73,193,195,0.00 +2023-02-14T13:00,3.6,942.9,11.00,16.34,182,184,0.00 +2023-02-14T14:00,3.9,943.4,11.60,16.92,180,183,0.00 +2023-02-14T15:00,3.9,943.1,9.51,14.00,177,180,0.10 +2023-02-14T16:00,4.0,942.8,8.88,13.30,172,173,0.70 +2023-02-14T17:00,3.5,942.3,7.93,11.67,166,170,0.10 +2023-02-14T18:00,3.4,941.3,7.88,11.65,160,164,0.80 +2023-02-14T19:00,3.1,939.7,7.52,11.05,147,153,1.50 +2023-02-14T20:00,3.2,938.8,7.28,10.91,143,148,1.80 +2023-02-14T21:00,3.2,937.1,7.66,11.37,139,146,1.40 +2023-02-14T22:00,3.0,936.3,6.08,9.48,135,142,1.30 +2023-02-14T23:00,2.6,935.8,4.03,7.02,136,147,1.50 +2023-02-15T00:00,1.4,934.4,3.32,4.84,111,128,1.00 +2023-02-15T01:00,0.9,934.4,1.82,3.21,189,185,1.10 +2023-02-15T02:00,1.2,934.6,3.34,5.17,231,229,0.80 +2023-02-15T03:00,0.7,935.0,5.30,7.48,271,278,0.80 +2023-02-15T04:00,0.2,935.9,8.90,12.60,303,306,0.80 +2023-02-15T05:00,0.2,936.9,10.43,14.14,304,307,0.60 +2023-02-15T06:00,0.1,938.3,12.56,16.85,310,312,0.70 +2023-02-15T07:00,-0.1,939.9,14.04,18.47,311,313,0.40 +2023-02-15T08:00,-2.5,942.0,16.52,21.17,311,312,0.50 +2023-02-15T09:00,-4.4,944.5,16.27,21.14,314,315,0.50 +2023-02-15T10:00,-5.5,947.1,16.92,21.83,318,319,0.20 +2023-02-15T11:00,-6.8,949.2,16.16,20.89,324,325,0.10 +2023-02-15T12:00,-9.0,952.1,14.39,18.96,319,320,0.10 +2023-02-15T13:00,-9.6,954.9,13.55,17.04,319,320,0.00 +2023-02-15T14:00,-10.5,958.0,13.98,17.98,320,321,0.00 +2023-02-15T15:00,-11.5,959.9,14.62,18.28,323,323,0.00 +2023-02-15T16:00,-12.0,961.5,14.42,17.50,323,323,0.00 +2023-02-15T17:00,-11.9,962.1,14.30,17.17,329,330,0.00 +2023-02-15T18:00,-11.4,963.5,12.54,14.54,322,322,0.00 +2023-02-15T19:00,-11.0,964.2,12.04,13.71,324,325,0.00 +2023-02-15T20:00,-10.5,964.5,11.71,13.33,329,329,0.00 +2023-02-15T21:00,-10.2,965.7,10.85,12.68,327,328,0.00 +2023-02-15T22:00,-10.3,966.7,10.14,12.14,329,330,0.00 +2023-02-15T23:00,-11.1,967.4,8.99,11.45,331,332,0.00 +2023-02-16T00:00,-13.6,967.5,8.82,12.52,337,338,0.00 +2023-02-16T01:00,-14.3,968.9,8.50,12.54,335,337,0.00 +2023-02-16T02:00,-14.6,969.4,7.93,11.81,337,339,0.00 +2023-02-16T03:00,-14.9,969.7,7.37,11.17,342,343,0.00 +2023-02-16T04:00,-15.1,969.9,7.38,11.30,344,347,0.00 +2023-02-16T05:00,-15.1,969.7,7.18,10.97,347,350,0.00 +2023-02-16T06:00,-15.2,969.3,7.35,11.20,348,352,0.00 +2023-02-16T07:00,-15.1,968.7,7.18,11.04,351,355,0.00 +2023-02-16T08:00,-15.0,968.9,6.97,10.55,352,355,0.00 +2023-02-16T09:00,-14.9,969.2,6.62,10.11,356,358,0.00 +2023-02-16T10:00,-15.4,968.3,6.80,10.70,359,2,0.00 +2023-02-16T11:00,-15.2,969.2,5.40,8.66,1,7,0.00 +2023-02-16T12:00,-15.0,968.3,6.62,9.97,356,7,0.00 +2023-02-16T13:00,-15.2,968.8,6.32,9.92,355,4,0.00 +2023-02-16T14:00,-14.9,970.1,3.91,7.31,4,17,0.00 +2023-02-16T15:00,-14.1,971.0,4.20,6.96,1,16,0.00 +2023-02-16T16:00,-13.4,971.1,5.42,6.80,355,2,0.00 +2023-02-16T17:00,-12.4,971.3,5.71,6.50,357,359,0.00 +2023-02-16T18:00,-11.3,971.3,6.38,7.17,351,352,0.00 +2023-02-16T19:00,-10.5,971.1,6.59,7.50,350,351,0.00 +2023-02-16T20:00,-10.0,971.0,6.62,7.45,345,345,0.00 +2023-02-16T21:00,-9.9,971.0,6.99,7.97,336,336,0.00 +2023-02-16T22:00,-10.2,971.2,6.67,7.93,330,331,0.00 +2023-02-16T23:00,-10.9,971.4,6.07,8.39,327,329,0.00 +2023-02-17T00:00,-13.5,971.7,5.91,9.03,332,334,0.00 +2023-02-17T01:00,-14.2,972.3,5.95,9.38,335,338,0.00 +2023-02-17T02:00,-15.0,972.5,5.65,9.01,337,341,0.00 +2023-02-17T03:00,-15.8,972.3,5.03,8.10,339,344,0.00 +2023-02-17T04:00,-16.6,972.1,4.18,6.92,339,349,0.00 +2023-02-17T05:00,-17.4,972.1,3.53,5.74,335,353,0.00 +2023-02-17T06:00,-18.1,971.8,3.36,4.85,323,352,0.00 +2023-02-17T07:00,-18.8,971.8,2.83,3.81,318,355,0.00 +2023-02-17T08:00,-19.1,971.5,2.16,1.50,283,356,0.00 +2023-02-17T09:00,-19.1,971.2,2.95,0.94,242,212,0.00 +2023-02-17T10:00,-19.0,971.0,3.61,3.35,222,197,0.00 +2023-02-17T11:00,-19.0,971.0,4.22,5.50,216,207,0.00 +2023-02-17T12:00,-17.8,970.4,5.41,8.36,208,206,0.00 +2023-02-17T13:00,-17.1,969.7,6.22,9.81,204,210,0.00 +2023-02-17T14:00,-16.4,969.3,6.89,11.06,204,210,0.00 +2023-02-17T15:00,-14.2,969.0,7.85,12.61,202,207,0.00 +2023-02-17T16:00,-11.6,969.0,7.59,14.09,198,206,0.00 +2023-02-17T17:00,-9.1,968.8,8.45,15.44,197,204,0.00 +2023-02-17T18:00,-6.4,968.2,8.66,13.22,199,203,0.00 +2023-02-17T19:00,-4.2,967.0,9.17,12.43,194,197,0.00 +2023-02-17T20:00,-2.4,965.6,8.79,12.35,192,195,0.00 +2023-02-17T21:00,-1.2,964.4,8.01,15.54,189,201,0.00 +2023-02-17T22:00,-0.4,964.0,9.77,13.86,203,207,0.00 +2023-02-17T23:00,-1.1,963.8,9.72,14.42,217,220,0.00 +2023-02-18T00:00,-2.5,963.1,9.62,14.72,223,227,0.00 +2023-02-18T01:00,-2.6,963.4,8.99,14.32,235,238,0.00 +2023-02-18T02:00,-3.0,963.4,8.32,13.67,241,247,0.00 +2023-02-18T03:00,-3.3,963.4,7.54,12.59,248,258,0.00 +2023-02-18T04:00,-3.7,963.6,6.87,11.54,254,266,0.00 +2023-02-18T05:00,-4.0,963.9,6.69,11.41,256,268,0.00 +2023-02-18T06:00,-4.2,964.4,6.21,10.75,267,280,0.00 +2023-02-18T07:00,-4.2,964.7,5.90,9.85,269,283,0.00 +2023-02-18T08:00,-4.7,964.9,5.10,8.29,272,290,0.00 +2023-02-18T09:00,-5.4,964.8,4.30,6.48,270,297,0.00 +2023-02-18T10:00,-6.5,964.4,3.73,4.79,262,299,0.00 +2023-02-18T11:00,-7.4,964.3,3.53,3.13,245,287,0.00 +2023-02-18T12:00,-7.5,964.0,2.18,1.53,254,328,0.00 +2023-02-18T13:00,-3.8,964.5,1.36,0.73,216,74,0.00 +2023-02-18T14:00,-6.4,963.9,3.75,3.39,171,135,0.00 +2023-02-18T15:00,-4.3,964.1,3.69,5.71,167,147,0.00 +2023-02-18T16:00,-1.7,964.4,4.67,8.10,170,162,0.00 +2023-02-18T17:00,-0.6,963.9,5.00,8.60,164,162,0.00 +2023-02-18T18:00,0.2,962.9,5.29,8.38,158,157,0.00 +2023-02-18T19:00,0.8,961.5,4.03,9.69,157,158,0.00 +2023-02-18T20:00,1.9,960.0,4.00,9.35,148,154,0.00 +2023-02-18T21:00,2.5,958.5,4.90,8.38,141,144,0.00 +2023-02-18T22:00,2.4,957.6,4.95,8.66,135,140,0.00 +2023-02-18T23:00,1.9,956.8,4.67,8.23,133,140,0.00 +2023-02-19T00:00,-0.5,956.3,4.76,8.25,141,149,0.00 +2023-02-19T01:00,-1.7,955.9,4.48,7.95,151,159,0.00 +2023-02-19T02:00,-2.7,954.9,4.27,7.14,159,174,0.00 +2023-02-19T03:00,-3.0,954.0,4.50,7.62,180,194,0.00 +2023-02-19T04:00,-3.7,953.5,4.07,7.02,205,216,0.00 +2023-02-19T05:00,-3.9,953.1,4.58,7.58,216,229,0.00 +2023-02-19T06:00,-3.7,952.9,5.03,8.52,221,234,0.00 +2023-02-19T07:00,-3.8,953.2,5.06,9.08,240,251,0.00 +2023-02-19T08:00,-3.7,953.2,5.35,9.55,253,264,0.00 +2023-02-19T09:00,-3.6,953.6,5.60,10.10,271,281,0.00 +2023-02-19T10:00,-3.7,954.0,5.99,10.54,296,305,0.00 +2023-02-19T11:00,-3.7,954.8,6.36,11.03,307,314,0.00 +2023-02-19T12:00,-3.7,955.5,6.88,11.54,319,322,0.00 +2023-02-19T13:00,-4.2,956.4,6.68,11.38,321,324,0.00 +2023-02-19T14:00,-3.9,957.6,7.24,11.70,325,327,0.00 +2023-02-19T15:00,-3.3,958.5,8.15,10.92,331,332,0.00 +2023-02-19T16:00,-3.2,959.4,8.14,10.42,332,333,0.00 +2023-02-19T17:00,-3.2,960.0,7.58,9.28,329,330,0.00 +2023-02-19T18:00,-3.0,960.5,7.02,8.32,327,327,0.00 +2023-02-19T19:00,-2.7,960.6,6.42,7.78,323,323,0.00 +2023-02-19T20:00,-2.7,960.6,6.11,7.31,320,320,0.00 +2023-02-19T21:00,-3.2,960.9,5.89,7.02,320,319,0.00 +2023-02-19T22:00,-4.1,960.9,4.97,6.10,320,319,0.00 +2023-02-19T23:00,-5.0,961.0,3.72,5.58,324,324,0.00 +2023-02-20T00:00,-8.2,960.6,3.00,4.75,330,330,0.00 +2023-02-20T01:00,-9.6,960.6,2.58,3.97,324,326,0.00 +2023-02-20T02:00,-10.6,959.9,2.39,3.33,327,327,0.00 +2023-02-20T03:00,-10.8,959.5,1.62,2.20,292,300,0.00 +2023-02-20T04:00,-9.5,959.0,0.70,1.25,180,209,0.00 +2023-02-20T05:00,-12.0,957.6,2.78,3.49,142,167,0.00 +2023-02-20T06:00,-11.3,956.9,3.38,5.12,146,168,0.00 +2023-02-20T07:00,-10.8,956.2,3.91,6.26,148,167,0.00 +2023-02-20T08:00,-10.4,955.1,5.06,8.43,155,170,0.00 +2023-02-20T09:00,-8.7,954.4,6.09,10.44,166,175,0.00 +2023-02-20T10:00,-7.2,953.4,6.68,11.41,171,178,0.00 +2023-02-20T11:00,-6.0,952.6,7.80,12.96,181,185,0.00 +2023-02-20T12:00,-4.6,952.1,7.40,11.76,181,186,0.00 +2023-02-20T13:00,-4.6,951.3,7.81,12.81,193,198,0.00 +2023-02-20T14:00,-3.8,951.2,7.65,12.29,209,213,0.00 +2023-02-20T15:00,-2.6,950.9,7.42,11.67,217,224,0.00 +2023-02-20T16:00,-1.3,950.9,5.94,12.18,224,238,0.00 +2023-02-20T17:00,-0.7,950.8,7.49,12.75,236,245,0.00 +2023-02-20T18:00,0.2,950.9,6.66,12.35,244,255,0.00 +2023-02-20T19:00,1.3,950.9,6.65,12.43,258,266,0.00 +2023-02-20T20:00,1.8,950.9,8.34,12.04,276,279,0.00 +2023-02-20T21:00,1.7,951.3,8.42,11.99,286,288,0.00 +2023-02-20T22:00,0.9,951.7,7.88,11.20,299,300,0.00 +2023-02-20T23:00,-0.5,952.5,7.18,10.96,305,306,0.00 +2023-02-21T00:00,-1.5,952.9,6.69,10.28,305,307,0.00 +2023-02-21T01:00,-3.5,954.8,9.85,12.96,319,318,0.10 +2023-02-21T02:00,-6.4,955.9,9.73,13.42,310,310,0.00 +2023-02-21T03:00,-9.2,956.5,10.31,14.78,309,310,0.00 +2023-02-21T04:00,-12.0,957.2,10.20,15.43,312,313,0.00 +2023-02-21T05:00,-13.7,957.8,9.78,14.23,311,312,0.00 +2023-02-21T06:00,-14.3,958.1,9.35,13.37,312,313,0.00 +2023-02-21T07:00,-14.7,958.1,8.63,12.25,317,318,0.00 +2023-02-21T08:00,-15.3,958.2,6.93,10.41,316,319,0.00 +2023-02-21T09:00,-15.8,958.1,5.84,8.99,308,313,0.00 +2023-02-21T10:00,-16.1,958.1,5.66,9.10,302,306,0.00 +2023-02-21T11:00,-16.4,958.1,4.82,8.06,312,314,0.00 +2023-02-21T12:00,-17.6,958.2,3.36,5.66,307,315,0.00 +2023-02-21T13:00,-17.6,957.6,2.73,4.92,332,331,0.00 +2023-02-21T14:00,-17.2,957.6,2.92,4.44,354,352,0.00 +2023-02-21T15:00,-16.6,957.6,2.28,2.47,15,14,0.00 +2023-02-21T16:00,-15.9,957.0,2.51,2.42,61,66,0.00 +2023-02-21T17:00,-15.0,956.2,4.20,4.31,93,94,0.20 +2023-02-21T18:00,-14.2,955.7,5.15,5.44,108,107,0.70 +2023-02-21T19:00,-13.5,955.3,5.32,5.64,116,115,1.00 +2023-02-21T20:00,-12.9,953.8,6.02,6.40,105,104,0.60 +2023-02-21T21:00,-12.1,952.7,6.96,7.88,97,98,0.30 +2023-02-21T22:00,-11.7,952.3,7.54,8.92,84,86,0.10 +2023-02-21T23:00,-11.4,952.3,7.92,9.69,80,82,0.20 +2023-02-22T00:00,-12.1,953.3,7.29,10.74,65,75,0.20 +2023-02-22T01:00,-11.6,953.7,8.10,12.49,61,71,0.40 +2023-02-22T02:00,-11.3,954.4,7.99,12.74,58,68,0.50 +2023-02-22T03:00,-11.0,954.7,8.10,11.99,57,64,0.60 +2023-02-22T04:00,-11.0,955.3,7.85,12.48,47,56,0.60 +2023-02-22T05:00,-10.9,955.8,7.99,11.68,47,52,0.70 +2023-02-22T06:00,-11.0,956.0,8.04,12.73,38,46,0.60 +2023-02-22T07:00,-11.1,955.9,8.44,14.08,36,44,0.60 +2023-02-22T08:00,-11.2,956.2,8.51,14.71,40,47,0.50 +2023-02-22T09:00,-11.2,956.4,9.27,14.40,35,40,0.80 +2023-02-22T10:00,-11.4,956.1,9.58,14.82,37,41,0.70 +2023-02-22T11:00,-11.7,956.4,10.45,14.59,39,42,0.50 +2023-02-22T12:00,-11.9,956.9,11.06,15.07,41,43,0.30 +2023-02-22T13:00,-11.8,957.3,12.31,15.51,47,48,0.20 +2023-02-22T14:00,-11.7,957.6,11.81,15.06,44,46,0.10 +2023-02-22T15:00,-11.3,958.2,12.09,15.14,45,47,0.20 +2023-02-22T16:00,-11.0,957.4,12.80,16.26,43,45,0.20 +2023-02-22T17:00,-10.5,957.0,13.03,15.95,48,49,0.30 +2023-02-22T18:00,-10.1,956.5,12.45,15.22,47,48,0.30 +2023-02-22T19:00,-9.8,955.5,11.98,14.87,38,39,0.80 +2023-02-22T20:00,-9.0,954.5,12.23,15.27,45,45,1.20 +2023-02-22T21:00,-8.6,954.6,12.03,15.63,42,44,0.90 +2023-02-22T22:00,-8.3,954.6,12.23,16.14,46,48,0.80 +2023-02-22T23:00,-8.1,954.8,12.87,16.84,46,47,0.70 +2023-02-23T00:00,-9.1,955.3,12.56,16.35,40,42,1.20 +2023-02-23T01:00,-9.0,955.7,12.28,16.14,40,42,0.50 +2023-02-23T02:00,-9.0,955.9,11.99,15.70,41,43,0.40 +2023-02-23T03:00,-9.0,956.1,11.19,14.85,42,45,0.50 +2023-02-23T04:00,-9.0,956.7,10.45,13.88,39,42,0.80 +2023-02-23T05:00,-9.2,957.5,9.93,13.12,32,35,1.00 +2023-02-23T06:00,-9.4,956.7,11.26,14.78,38,40,1.20 +2023-02-23T07:00,-9.5,954.6,12.82,16.76,48,50,0.30 +2023-02-23T08:00,-9.5,955.7,10.28,13.57,53,55,0.10 +2023-02-23T09:00,-9.8,955.8,8.91,11.78,46,50,0.60 +2023-02-23T10:00,-10.1,957.0,7.41,9.89,35,39,1.90 +2023-02-23T11:00,-10.6,957.6,7.67,10.06,22,27,1.30 +2023-02-23T12:00,-11.4,958.8,7.57,10.10,12,16,0.60 +2023-02-23T13:00,-11.4,960.8,6.51,8.82,349,356,0.30 +2023-02-23T14:00,-11.2,962.1,8.51,11.42,336,340,0.30 +2023-02-23T15:00,-12.2,963.7,9.38,12.61,329,334,0.20 +2023-02-23T16:00,-12.0,965.0,9.45,11.72,337,338,0.10 +2023-02-23T17:00,-12.0,966.4,9.44,11.14,332,333,0.10 +2023-02-23T18:00,-12.3,967.9,10.10,11.93,326,327,0.00 +2023-02-23T19:00,-12.8,969.0,10.70,12.64,323,323,0.00 +2023-02-23T20:00,-13.4,970.3,10.06,12.00,323,323,0.00 +2023-02-23T21:00,-13.8,971.3,9.81,11.67,321,321,0.00 +2023-02-23T22:00,-14.2,972.8,10.00,11.86,319,320,0.00 +2023-02-23T23:00,-15.0,973.8,10.28,12.36,319,320,0.00 +2023-02-24T00:00,-17.1,975.8,9.34,11.76,318,318,0.00 +2023-02-24T01:00,-18.7,977.7,8.28,11.24,313,314,0.00 +2023-02-24T02:00,-19.9,978.7,7.92,11.25,315,318,0.00 +2023-02-24T03:00,-20.5,979.7,7.59,11.12,320,322,0.00 +2023-02-24T04:00,-21.1,980.6,6.98,10.35,322,325,0.00 +2023-02-24T05:00,-21.6,981.0,6.53,9.77,320,325,0.00 +2023-02-24T06:00,-22.1,981.8,5.87,8.92,316,323,0.00 +2023-02-24T07:00,-22.6,981.8,5.52,8.35,318,326,0.00 +2023-02-24T08:00,-23.0,981.7,5.39,8.27,320,328,0.00 +2023-02-24T09:00,-23.4,982.6,5.05,7.38,297,311,0.00 +2023-02-24T10:00,-23.5,983.7,5.63,8.27,287,297,0.00 +2023-02-24T11:00,-23.0,983.9,4.66,7.28,301,307,0.00 +2023-02-24T12:00,-23.4,983.3,3.00,6.76,330,336,0.00 +2023-02-24T13:00,-23.5,983.4,2.51,5.88,331,342,0.00 +2023-02-24T14:00,-23.6,983.4,2.72,4.62,343,355,0.00 +2023-02-24T15:00,-23.4,983.0,2.60,4.43,360,18,0.00 +2023-02-24T16:00,-22.8,983.2,1.60,3.00,356,37,0.00 +2023-02-24T17:00,-21.5,983.6,0.32,2.00,342,87,0.00 +2023-02-24T18:00,-20.4,983.1,0.32,2.14,162,127,0.00 +2023-02-24T19:00,-19.6,982.5,0.45,1.08,27,124,0.00 +2023-02-24T20:00,-19.1,981.8,0.58,1.08,149,158,0.00 +2023-02-24T21:00,-18.5,981.0,1.21,1.42,114,129,0.00 +2023-02-24T22:00,-18.2,979.5,2.82,3.08,96,103,0.00 +2023-02-24T23:00,-17.9,978.5,3.44,3.70,82,88,0.00 +2023-02-25T00:00,-17.7,978.2,2.75,3.35,109,117,0.00 +2023-02-25T01:00,-17.7,978.2,2.42,3.47,114,123,0.00 +2023-02-25T02:00,-17.5,978.2,0.50,1.30,143,157,0.00 +2023-02-25T03:00,-17.3,976.4,3.94,5.85,153,163,0.10 +2023-02-25T04:00,-16.9,976.0,2.41,5.63,185,186,0.00 +2023-02-25T05:00,-18.3,974.0,4.91,7.67,184,192,0.00 +2023-02-25T06:00,-17.6,972.8,5.85,9.40,193,201,0.00 +2023-02-25T07:00,-17.5,972.0,5.74,9.44,215,216,0.00 +2023-02-25T08:00,-17.5,971.1,6.66,10.96,221,225,0.00 +2023-02-25T09:00,-17.1,970.2,7.57,12.10,224,227,0.00 +2023-02-25T10:00,-17.0,969.3,7.92,12.46,223,228,0.00 +2023-02-25T11:00,-16.9,967.7,7.65,11.94,209,216,0.00 +2023-02-25T12:00,-16.7,966.8,8.23,12.65,206,213,0.00 +2023-02-25T13:00,-15.8,966.1,8.72,13.48,205,214,0.00 +2023-02-25T14:00,-14.5,965.5,8.46,13.04,204,214,0.00 +2023-02-25T15:00,-12.8,965.1,8.68,13.21,209,219,0.00 +2023-02-25T16:00,-10.7,964.6,8.78,13.51,217,226,0.00 +2023-02-25T17:00,-8.9,964.7,9.06,13.84,227,233,0.00 +2023-02-25T18:00,-7.4,964.2,9.55,14.10,227,234,0.00 +2023-02-25T19:00,-6.2,963.3,9.27,13.68,227,234,0.00 +2023-02-25T20:00,-5.3,962.7,9.07,13.40,229,234,0.00 +2023-02-25T21:00,-4.9,962.5,8.71,13.02,236,242,0.00 +2023-02-25T22:00,-4.8,961.9,9.40,13.96,235,242,0.00 +2023-02-25T23:00,-5.1,961.7,8.87,13.62,240,247,0.00 +2023-02-26T00:00,-7.1,961.9,5.85,9.60,262,269,0.00 +2023-02-26T01:00,-8.5,962.1,5.14,8.19,283,288,0.00 +2023-02-26T02:00,-10.4,961.6,4.05,6.14,286,300,0.00 +2023-02-26T03:00,-10.9,961.0,4.12,5.77,264,284,0.00 +2023-02-26T04:00,-11.0,961.1,4.10,5.61,269,292,0.00 +2023-02-26T05:00,-12.0,960.8,3.51,4.70,273,299,0.00 +2023-02-26T06:00,-12.2,960.9,3.35,4.67,287,315,0.00 +2023-02-26T07:00,-11.9,960.8,2.64,3.88,299,325,0.00 +2023-02-26T08:00,-8.1,961.2,1.46,3.01,344,356,0.00 +2023-02-26T09:00,-8.6,960.9,1.73,0.42,190,135,0.00 +2023-02-26T10:00,-12.9,959.6,2.61,1.56,184,140,0.00 +2023-02-26T11:00,-13.7,959.6,3.51,3.26,160,130,0.00 +2023-02-26T12:00,-12.6,959.3,5.22,6.03,148,140,0.00 +2023-02-26T13:00,-12.3,958.9,5.68,7.85,152,146,0.00 +2023-02-26T14:00,-11.9,959.2,5.59,8.77,151,148,0.00 +2023-02-26T15:00,-10.2,959.0,6.16,9.90,133,135,0.00 +2023-02-26T16:00,-9.2,958.4,7.26,11.47,128,132,0.00 +2023-02-26T17:00,-8.4,957.6,7.71,12.73,136,137,0.00 +2023-02-26T18:00,-8.2,956.4,6.02,14.40,138,147,0.00 +2023-02-26T19:00,-7.3,954.9,5.50,14.41,127,149,0.00 +2023-02-26T20:00,-4.7,953.5,6.86,14.29,127,148,0.00 +2023-02-26T21:00,-1.3,952.2,8.64,13.15,132,141,0.00 +2023-02-26T22:00,-1.0,950.8,8.65,13.47,131,139,0.00 +2023-02-26T23:00,0.3,949.2,8.99,14.05,132,140,0.00 +2023-02-27T00:00,-1.3,948.9,9.70,15.22,127,133,0.00 +2023-02-27T01:00,-1.0,948.3,9.90,15.44,134,138,0.00 +2023-02-27T02:00,0.8,947.9,10.44,15.78,144,147,0.00 +2023-02-27T03:00,2.3,946.9,10.52,15.54,148,150,0.00 +2023-02-27T04:00,2.0,946.7,8.96,13.42,151,152,0.00 +2023-02-27T05:00,1.9,945.1,7.70,11.80,142,149,0.00 +2023-02-27T06:00,2.5,944.3,8.03,12.07,149,153,0.00 +2023-02-27T07:00,2.1,942.7,6.28,10.11,127,135,0.10 +2023-02-27T08:00,1.6,942.0,5.78,9.25,120,129,0.50 +2023-02-27T09:00,1.3,940.8,4.80,7.47,89,102,1.00 +2023-02-27T10:00,1.3,940.0,5.53,8.30,77,89,3.50 +2023-02-27T11:00,1.2,939.6,5.87,8.85,67,76,2.60 +2023-02-27T12:00,1.0,940.1,5.19,7.07,16,25,3.10 +2023-02-27T13:00,0.8,940.3,5.22,7.47,20,28,0.20 +2023-02-27T14:00,0.6,941.0,5.00,7.28,12,21,0.10 +2023-02-27T15:00,0.4,942.3,4.90,6.94,358,6,0.00 +2023-02-27T16:00,0.5,943.0,5.06,6.55,335,348,0.00 +2023-02-27T17:00,0.5,943.6,6.19,8.65,326,330,0.00 +2023-02-27T18:00,0.5,944.7,7.86,11.31,319,321,0.00 +2023-02-27T19:00,0.4,945.5,8.13,12.47,315,319,0.00 +2023-02-27T20:00,0.5,946.6,9.48,12.55,317,319,0.00 +2023-02-27T21:00,0.7,947.8,9.76,12.45,317,317,0.00 +2023-02-27T22:00,-0.1,948.8,10.04,12.94,313,314,0.00 +2023-02-27T23:00,-1.1,949.8,11.19,15.53,318,319,0.00 +2023-02-28T00:00,-2.1,951.5,10.85,15.28,327,330,0.00 +2023-02-28T01:00,-2.4,953.0,9.49,13.93,325,328,0.00 +2023-02-28T02:00,-2.3,953.8,8.85,13.24,326,329,0.00 +2023-02-28T03:00,-2.6,954.8,7.84,12.18,322,326,0.00 +2023-02-28T04:00,-2.9,955.3,6.93,11.24,315,321,0.00 +2023-02-28T05:00,-3.3,955.3,5.80,9.26,302,315,0.00 +2023-02-28T06:00,-3.8,955.4,5.64,8.72,295,311,0.00 +2023-02-28T07:00,-4.1,956.0,5.55,8.86,296,311,0.00 +2023-02-28T08:00,-4.6,956.4,5.00,7.81,290,310,0.00 +2023-02-28T09:00,-4.9,956.8,5.02,7.78,293,313,0.00 +2023-02-28T10:00,-5.5,956.6,4.30,6.52,288,311,0.00 +2023-02-28T11:00,-6.6,956.9,3.50,4.78,272,307,0.00 +2023-02-28T12:00,-4.7,957.2,2.00,2.44,267,325,0.00 +2023-02-28T13:00,-6.1,957.0,2.94,1.10,235,275,0.00 +2023-02-28T14:00,-5.2,957.1,1.77,0.30,227,90,0.00 +2023-02-28T15:00,-1.8,957.6,0.80,2.60,90,74,0.00 +2023-02-28T16:00,-0.9,958.4,1.26,2.55,108,101,0.00 +2023-02-28T17:00,-0.6,958.3,2.92,4.52,121,125,0.00 +2023-02-28T18:00,-0.8,957.7,4.60,6.58,132,137,0.00 +2023-02-28T19:00,-0.6,956.6,4.44,7.42,126,134,0.00 +2023-02-28T20:00,-0.3,955.9,3.88,7.03,102,120,0.00 +2023-02-28T21:00,-0.5,955.6,4.10,7.18,91,109,0.00 +2023-02-28T22:00,-0.8,954.9,4.94,8.92,97,108,0.00 +2023-02-28T23:00,-1.0,954.0,6.20,9.75,100,105,0.00 +2023-03-01T00:00,-1.7,955.6,6.04,9.62,106,111,0.10 +2023-03-01T01:00,-1.5,955.7,7.11,10.97,104,109,0.10 +2023-03-01T02:00,-1.4,955.2,8.16,12.24,107,110,0.10 +2023-03-01T03:00,-1.3,954.9,8.25,12.34,104,107,0.00 +2023-03-01T04:00,-1.3,954.9,8.34,12.22,113,114,0.00 +2023-03-01T05:00,-1.3,954.6,7.93,11.57,124,125,0.00 +2023-03-01T06:00,-1.5,953.8,8.08,11.95,126,129,0.00 +2023-03-01T07:00,-2.3,952.8,8.42,12.65,127,129,0.00 +2023-03-01T08:00,-2.6,952.5,8.29,12.57,138,140,0.00 +2023-03-01T09:00,-2.5,951.5,8.57,12.86,146,150,0.00 +2023-03-01T10:00,-2.3,950.7,8.79,13.15,163,167,0.10 +2023-03-01T11:00,-2.5,951.2,8.46,12.83,187,193,0.00 +2023-03-01T12:00,-1.0,949.8,9.48,14.12,208,215,0.00 +2023-03-01T13:00,-0.3,949.5,11.54,16.62,222,226,0.00 +2023-03-01T14:00,0.3,949.8,13.21,17.79,238,240,0.00 +2023-03-01T15:00,-0.4,950.2,13.11,17.27,249,251,0.00 +2023-03-01T16:00,-0.4,951.0,13.40,16.21,260,261,0.00 +2023-03-01T17:00,0.1,952.3,12.90,15.70,269,270,0.00 +2023-03-01T18:00,0.5,953.4,11.68,13.39,291,291,0.00 +2023-03-01T19:00,-0.0,954.8,10.83,13.16,299,299,0.00 +2023-03-01T20:00,-0.3,956.0,11.97,14.50,312,313,0.10 +2023-03-01T21:00,-3.0,957.9,13.30,16.55,314,315,0.10 +2023-03-01T22:00,-4.2,959.3,11.40,14.45,317,318,0.00 +2023-03-01T23:00,-4.7,960.4,11.00,14.08,323,323,0.00 +2023-03-02T00:00,-6.4,962.0,10.22,12.76,323,325,0.00 +2023-03-02T01:00,-7.0,963.0,10.21,12.79,327,328,0.00 +2023-03-02T02:00,-7.2,963.3,10.16,12.45,335,336,0.00 +2023-03-02T03:00,-8.5,964.0,10.12,12.92,337,338,0.00 +2023-03-02T04:00,-9.5,964.4,9.19,12.36,338,341,0.00 +2023-03-02T05:00,-10.3,964.7,6.58,9.88,332,339,0.00 +2023-03-02T06:00,-10.9,965.2,5.16,7.78,328,340,0.00 +2023-03-02T07:00,-11.2,965.2,4.14,6.04,323,341,0.00 +2023-03-02T08:00,-11.8,965.3,3.98,5.57,321,342,0.00 +2023-03-02T09:00,-12.6,964.7,3.66,4.98,325,350,0.00 +2023-03-02T10:00,-13.2,963.6,3.68,5.20,338,2,0.00 +2023-03-02T11:00,-13.7,963.2,2.75,4.37,350,20,0.00 +2023-03-02T12:00,-14.3,962.7,1.36,3.36,17,60,0.00 +2023-03-02T13:00,-12.8,963.2,0.63,2.62,18,83,0.00 +2023-03-02T14:00,-12.2,963.5,0.64,1.86,231,126,0.00 +2023-03-02T15:00,-10.6,964.1,1.73,3.07,190,161,0.00 +2023-03-02T16:00,-8.9,964.2,2.89,2.57,166,167,0.00 +2023-03-02T17:00,-7.9,963.4,3.67,3.62,151,152,0.00 +2023-03-02T18:00,-6.9,962.4,4.91,4.94,147,148,0.00 +2023-03-02T19:00,-6.0,962.0,4.83,5.12,174,176,0.00 +2023-03-02T20:00,-4.8,961.1,4.71,4.77,192,190,0.00 +2023-03-02T21:00,-3.2,960.3,3.00,3.60,178,180,0.00 +2023-03-02T22:00,-2.7,959.6,1.63,2.16,133,146,0.00 +2023-03-02T23:00,-3.6,958.5,3.18,3.94,103,126,0.00 +2023-03-03T00:00,-7.2,958.2,4.80,6.65,121,136,0.00 +2023-03-03T01:00,-7.6,958.1,5.19,8.16,130,139,0.00 +2023-03-03T02:00,-7.5,957.4,5.66,9.39,144,152,0.00 +2023-03-03T03:00,-6.8,956.9,6.05,9.92,158,165,0.00 +2023-03-03T04:00,-6.1,956.5,6.48,10.43,171,176,0.00 +2023-03-03T05:00,-5.9,956.0,7.32,11.70,176,179,0.00 +2023-03-03T06:00,-5.8,955.5,7.12,11.40,184,188,0.00 +2023-03-03T07:00,-6.0,955.1,7.47,11.83,188,191,0.00 +2023-03-03T08:00,-6.1,954.9,7.38,11.65,189,192,0.00 +2023-03-03T09:00,-6.2,953.9,6.65,10.72,196,198,0.00 +2023-03-03T10:00,-7.1,952.3,5.02,7.98,211,218,0.00 +2023-03-03T11:00,-6.1,953.4,6.64,10.64,198,202,0.00 +2023-03-03T12:00,-6.6,952.5,5.92,9.27,210,215,0.00 +2023-03-03T13:00,-6.2,952.6,5.90,8.96,206,213,0.00 +2023-03-03T14:00,-5.5,952.4,5.33,7.94,210,221,0.00 +2023-03-03T15:00,-3.9,951.9,5.08,6.95,216,230,0.00 +2023-03-03T16:00,-2.3,952.0,4.65,6.37,208,222,0.00 +2023-03-03T17:00,-1.7,951.9,4.12,6.19,194,211,0.00 +2023-03-03T18:00,-0.8,951.5,3.81,6.30,210,223,0.00 +2023-03-03T19:00,0.0,951.3,3.69,6.41,221,239,0.00 +2023-03-03T20:00,0.7,951.6,3.18,6.51,226,252,0.00 +2023-03-03T21:00,1.2,951.7,3.57,7.00,252,271,0.00 +2023-03-03T22:00,1.2,951.8,4.00,6.24,273,282,0.00 +2023-03-03T23:00,0.6,952.0,4.54,6.99,284,294,0.00 +2023-03-04T00:00,-0.1,952.5,3.67,5.58,287,306,0.00 +2023-03-04T01:00,0.2,953.2,4.27,6.72,303,313,0.00 +2023-03-04T02:00,-0.1,954.0,5.08,7.92,306,314,0.00 +2023-03-04T03:00,-0.7,954.1,4.81,7.64,313,323,0.00 +2023-03-04T04:00,-1.0,954.6,5.19,8.56,310,317,0.00 +2023-03-04T05:00,-0.7,955.1,5.20,8.77,308,313,0.00 +2023-03-04T06:00,-1.5,955.5,5.02,8.28,305,313,0.00 +2023-03-04T07:00,-2.2,956.3,5.37,8.86,297,307,0.00 +2023-03-04T08:00,-2.0,956.7,5.52,9.06,305,312,0.00 +2023-03-04T09:00,-2.1,956.8,5.44,9.06,306,313,0.00 +2023-03-04T10:00,-2.1,957.3,5.05,8.50,304,311,0.00 +2023-03-04T11:00,-2.1,957.9,4.63,7.86,303,311,0.00 +2023-03-04T12:00,-1.7,958.3,4.26,7.07,309,316,0.00 +2023-03-04T13:00,-1.5,959.1,4.00,6.72,307,313,0.00 +2023-03-04T14:00,-1.0,960.0,4.03,6.96,300,302,0.10 +2023-03-04T15:00,-0.3,960.3,3.77,7.42,292,296,0.10 +2023-03-04T16:00,0.2,960.7,4.90,9.35,290,299,0.00 +2023-03-04T17:00,0.4,961.6,5.46,10.57,294,303,0.00 +2023-03-04T18:00,0.9,962.3,5.46,8.41,294,298,0.00 +2023-03-04T19:00,1.1,962.7,6.26,7.87,295,296,0.00 +2023-03-04T20:00,1.1,963.0,6.71,8.29,298,300,0.00 +2023-03-04T21:00,1.0,963.5,6.54,8.11,309,309,0.00 +2023-03-04T22:00,0.6,964.0,5.46,7.37,319,318,0.00 +2023-03-04T23:00,-0.2,964.4,4.25,6.37,319,318,0.00 +2023-03-05T00:00,-3.7,964.2,3.19,5.30,328,328,0.00 +2023-03-05T01:00,-3.6,964.7,1.92,3.74,309,326,0.00 +2023-03-05T02:00,-4.2,965.3,2.09,2.55,253,296,0.00 +2023-03-05T03:00,-5.9,965.1,3.05,2.60,238,272,0.00 +2023-03-05T04:00,-5.8,965.5,3.58,2.53,234,252,0.00 +2023-03-05T05:00,-5.5,966.2,3.88,3.36,235,240,0.00 +2023-03-05T06:00,-4.9,966.7,3.69,4.14,221,217,0.00 +2023-03-05T07:00,-5.2,966.5,3.13,3.32,207,196,0.00 +2023-03-05T08:00,-5.6,966.4,3.24,3.45,189,170,0.00 +2023-03-05T09:00,-5.7,966.1,3.60,4.88,178,154,0.00 +2023-03-05T10:00,-6.2,965.5,3.72,6.31,156,139,0.00 +2023-03-05T11:00,-4.7,966.1,4.19,7.15,147,132,0.00 +2023-03-05T12:00,-3.6,967.0,4.46,7.61,136,129,0.00 +2023-03-05T13:00,-3.6,967.5,4.95,8.37,135,130,0.00 +2023-03-05T14:00,-3.3,967.6,5.62,9.34,129,128,0.00 +2023-03-05T15:00,-2.5,967.5,5.39,11.13,121,125,0.00 +2023-03-05T16:00,-1.6,967.0,6.84,12.90,115,122,0.00 +2023-03-05T17:00,-0.5,966.2,7.11,13.12,116,122,0.00 +2023-03-05T18:00,0.5,965.4,5.70,11.75,105,121,0.00 +2023-03-05T19:00,1.2,964.1,6.53,11.41,105,114,0.00 +2023-03-05T20:00,1.5,962.8,7.94,11.24,109,114,0.20 +2023-03-05T21:00,1.0,961.6,8.91,12.38,102,106,0.80 +2023-03-05T22:00,0.5,961.0,9.30,12.80,88,91,2.50 +2023-03-05T23:00,0.1,961.3,8.57,11.81,73,77,2.30 +2023-03-06T00:00,-0.5,962.6,10.39,14.09,79,81,2.60 +2023-03-06T01:00,-0.7,962.8,10.34,14.03,81,82,0.90 +2023-03-06T02:00,-0.8,963.0,10.40,14.12,76,78,0.70 +2023-03-06T03:00,-0.8,962.6,10.75,14.55,78,79,0.50 +2023-03-06T04:00,-0.9,962.4,10.02,13.63,78,79,0.20 +2023-03-06T05:00,-0.9,962.2,8.30,11.60,75,77,0.00 +2023-03-06T06:00,-0.9,961.3,8.54,11.92,64,67,0.00 +2023-03-06T07:00,-1.0,962.2,7.07,10.06,61,65,0.00 +2023-03-06T08:00,-1.0,962.9,6.10,8.78,55,60,0.00 +2023-03-06T09:00,-1.2,962.9,6.66,9.34,41,47,0.00 +2023-03-06T10:00,-1.3,962.7,6.20,8.84,38,44,0.00 +2023-03-06T11:00,-1.3,963.1,6.10,9.19,41,46,0.00 +2023-03-06T12:00,-1.4,963.9,5.16,7.63,22,32,0.00 +2023-03-06T13:00,-1.4,964.5,6.18,8.96,23,29,0.00 +2023-03-06T14:00,-1.4,965.5,6.92,9.59,11,16,0.10 +2023-03-06T15:00,-1.6,966.6,8.43,11.23,5,9,0.20 +2023-03-06T16:00,-1.3,967.3,9.27,11.31,7,8,0.10 +2023-03-06T17:00,-0.9,968.1,9.60,11.60,359,1,0.00 +2023-03-06T18:00,-0.6,968.5,9.70,11.80,359,360,0.00 +2023-03-06T19:00,-0.3,969.2,10.12,11.91,357,358,0.00 +2023-03-06T20:00,0.0,969.8,10.61,12.01,2,2,0.00 +2023-03-06T21:00,0.2,970.4,9.60,11.50,360,1,0.00 +2023-03-06T22:00,0.1,971.1,7.65,9.82,349,351,0.00 +2023-03-06T23:00,0.2,971.7,6.66,9.11,352,357,0.00 +2023-03-07T00:00,-1.0,973.0,7.82,10.70,356,360,0.00 +2023-03-07T01:00,-2.7,973.8,7.91,11.16,344,350,0.00 +2023-03-07T02:00,-5.0,973.9,7.31,11.02,343,352,0.00 +2023-03-07T03:00,-5.8,974.2,6.68,10.37,343,353,0.00 +2023-03-07T04:00,-6.3,974.9,5.95,9.42,343,356,0.00 +2023-03-07T05:00,-6.4,975.1,5.32,8.41,344,3,0.00 +2023-03-07T06:00,-6.4,975.2,4.90,7.47,343,8,0.00 +2023-03-07T07:00,-6.5,975.1,4.74,7.27,353,18,0.00 +2023-03-07T08:00,-6.8,975.5,4.46,6.67,351,19,0.00 +2023-03-07T09:00,-7.3,975.8,4.73,6.65,347,16,0.00 +2023-03-07T10:00,-8.1,976.0,5.47,7.44,342,6,0.00 +2023-03-07T11:00,-9.0,976.6,6.01,8.21,342,3,0.00 +2023-03-07T12:00,-10.6,977.3,5.22,7.51,343,3,0.00 +2023-03-07T13:00,-10.4,977.8,4.59,6.86,344,8,0.00 +2023-03-07T14:00,-8.5,978.6,4.60,6.28,358,14,0.00 +2023-03-07T15:00,-6.4,979.0,5.07,6.00,22,30,0.00 +2023-03-07T16:00,-4.9,978.9,5.39,5.40,40,39,0.00 +2023-03-07T17:00,-2.9,978.9,4.52,4.85,55,58,0.00 +2023-03-07T18:00,-1.1,978.6,6.59,7.89,80,81,0.00 +2023-03-07T19:00,-1.1,977.9,7.92,9.41,86,87,0.10 +2023-03-07T20:00,-0.8,977.2,7.62,9.12,94,94,0.00 +2023-03-07T21:00,-0.4,976.8,6.82,8.51,86,88,0.00 +2023-03-07T22:00,-0.4,976.2,7.03,9.41,75,78,0.00 +2023-03-07T23:00,-0.8,975.6,6.89,10.18,77,79,0.00 +2023-03-08T00:00,-1.7,976.1,6.94,10.31,84,87,0.00 +2023-03-08T01:00,-1.7,975.7,7.31,11.23,93,94,0.00 +2023-03-08T02:00,-1.5,975.8,6.21,9.85,93,96,0.00 +2023-03-08T03:00,-1.4,976.1,5.51,8.98,93,98,0.00 +2023-03-08T04:00,-1.7,976.0,5.33,8.69,96,102,0.00 +2023-03-08T05:00,-1.6,975.8,4.98,8.32,100,108,0.00 +2023-03-08T06:00,-1.6,975.8,4.83,7.84,103,113,0.00 +2023-03-08T07:00,-1.8,975.8,4.94,8.16,111,121,0.00 +2023-03-08T08:00,-1.2,975.6,5.30,8.72,122,131,0.00 +2023-03-08T09:00,-0.7,975.0,5.66,9.07,126,131,0.00 +2023-03-08T10:00,-0.8,974.8,5.17,8.41,131,135,0.00 +2023-03-08T11:00,-0.8,975.2,5.17,8.31,137,140,0.00 +2023-03-08T12:00,-0.6,975.0,4.52,7.63,145,146,0.00 +2023-03-08T13:00,-0.6,975.4,3.61,6.30,161,160,0.00 +2023-03-08T14:00,-0.6,975.9,1.71,3.96,173,170,0.00 +2023-03-08T15:00,-0.5,976.5,0.86,2.53,234,198,0.00 +2023-03-08T16:00,-0.4,976.5,1.33,0.51,347,281,0.00 +2023-03-08T17:00,-0.7,976.4,1.75,1.52,13,23,0.00 +2023-03-08T18:00,-0.7,976.3,1.39,1.56,30,40,0.00 +2023-03-08T19:00,-0.6,976.4,1.80,1.84,3,13,0.00 +2023-03-08T20:00,-0.8,976.2,2.55,2.72,349,354,0.00 +2023-03-08T21:00,-0.9,975.7,3.40,3.61,358,3,0.00 +2023-03-08T22:00,-0.8,975.6,3.28,3.64,12,16,0.00 +2023-03-08T23:00,-0.7,975.5,3.08,3.56,36,38,0.00 +2023-03-09T00:00,-1.2,975.8,4.03,5.55,60,67,0.00 +2023-03-09T01:00,-1.4,976.0,4.39,6.17,60,70,0.00 +2023-03-09T02:00,-1.3,975.9,4.25,6.00,66,79,0.00 +2023-03-09T03:00,-1.4,975.9,4.18,6.20,79,90,0.00 +2023-03-09T04:00,-1.5,975.7,4.18,6.10,79,88,0.00 +2023-03-09T05:00,-1.7,975.2,4.28,6.31,79,86,0.00 +2023-03-09T06:00,-1.9,975.3,4.04,6.10,81,89,0.00 +2023-03-09T07:00,-1.9,975.1,4.03,6.10,83,92,0.00 +2023-03-09T08:00,-2.0,974.1,4.88,7.20,79,88,0.00 +2023-03-09T09:00,-1.9,973.2,4.68,7.26,74,83,0.00 +2023-03-09T10:00,-2.1,973.2,4.46,7.07,74,82,0.00 +2023-03-09T11:00,-2.0,972.8,5.25,7.99,72,81,0.40 +2023-03-09T12:00,-2.0,972.5,5.86,8.82,65,72,0.60 +2023-03-09T13:00,-1.9,972.5,6.48,9.46,70,77,0.30 +2023-03-09T14:00,-1.7,972.6,6.40,9.24,80,84,0.20 +2023-03-09T15:00,-1.6,972.7,6.00,9.41,79,87,0.30 +2023-03-09T16:00,-1.4,972.2,6.84,8.88,75,78,0.30 +2023-03-09T17:00,-1.3,972.1,7.60,8.99,81,82,0.20 +2023-03-09T18:00,-1.4,971.6,6.77,8.37,74,75,0.40 +2023-03-09T19:00,-1.2,971.2,7.00,8.32,68,70,0.40 +2023-03-09T20:00,-1.2,970.8,7.16,8.55,63,66,0.50 +2023-03-09T21:00,-1.1,970.3,7.56,8.99,62,64,0.60 +2023-03-09T22:00,-1.1,970.1,7.29,8.59,63,65,0.70 +2023-03-09T23:00,-1.1,970.1,7.26,9.08,67,71,0.70 +2023-03-10T00:00,-1.4,970.4,7.13,9.73,75,78,0.70 +2023-03-10T01:00,-1.8,970.8,6.32,9.01,67,71,0.50 +2023-03-10T02:00,-2.0,971.0,6.31,8.80,65,69,0.50 +2023-03-10T03:00,-2.3,971.3,5.75,8.05,59,62,0.40 +2023-03-10T04:00,-2.7,971.4,4.78,6.69,53,58,0.30 +2023-03-10T05:00,-3.0,971.5,4.04,5.75,42,50,0.30 +2023-03-10T06:00,-3.3,971.0,4.33,6.09,40,48,0.20 +2023-03-10T07:00,-3.6,971.3,2.96,4.34,12,26,0.20 +2023-03-10T08:00,-3.2,971.1,3.59,4.50,347,357,0.10 +2023-03-10T09:00,-3.1,970.8,4.62,6.32,338,349,0.00 +2023-03-10T10:00,-3.0,970.5,5.63,7.20,6,10,0.10 +2023-03-10T11:00,-3.9,970.9,4.30,6.21,357,4,0.00 +2023-03-10T12:00,-5.2,970.7,4.60,6.89,1,9,0.00 +2023-03-10T13:00,-4.6,970.7,4.08,5.95,11,17,0.00 +2023-03-10T14:00,-4.0,971.3,3.70,4.40,19,21,0.00 +2023-03-10T15:00,-3.5,971.1,3.52,3.94,35,36,0.00 +2023-03-10T16:00,-3.1,971.4,2.58,2.58,36,36,0.00 +2023-03-10T17:00,-2.7,971.4,1.71,1.75,21,24,0.00 +2023-03-10T18:00,-2.4,970.7,1.88,2.01,25,27,0.00 +2023-03-10T19:00,-2.1,970.7,2.10,2.24,25,27,0.00 +2023-03-10T20:00,-2.0,969.6,2.66,2.88,56,56,0.00 +2023-03-10T21:00,-1.9,968.0,4.03,4.54,83,82,0.00 +2023-03-10T22:00,-1.8,968.9,2.82,3.11,84,84,0.00 +2023-03-10T23:00,-2.0,967.6,4.08,4.51,101,103,0.00 +2023-03-11T00:00,-2.7,968.2,3.81,5.05,113,117,0.00 +2023-03-11T01:00,-2.9,967.1,5.65,7.50,103,106,0.00 +2023-03-11T02:00,-3.1,966.4,6.55,8.83,109,110,0.00 +2023-03-11T03:00,-3.3,966.3,6.89,9.44,103,105,0.00 +2023-03-11T04:00,-3.4,965.5,8.37,11.30,102,103,0.00 +2023-03-11T05:00,-3.6,965.3,7.29,10.15,115,116,0.00 +2023-03-11T06:00,-3.6,964.6,7.24,10.34,125,128,0.00 +2023-03-11T07:00,-3.4,964.5,7.37,10.40,132,133,0.00 +2023-03-11T08:00,-3.4,963.7,8.56,11.77,137,139,0.00 +2023-03-11T09:00,-3.5,962.2,8.91,12.18,137,138,0.00 +2023-03-11T10:00,-3.6,961.4,9.25,12.62,141,142,0.00 +2023-03-11T11:00,-3.6,961.0,9.75,13.14,141,143,0.00 +2023-03-11T12:00,-3.0,960.1,10.60,14.36,142,143,0.00 +2023-03-11T13:00,-2.9,960.1,9.72,13.25,150,151,0.00 +2023-03-11T14:00,-2.6,959.9,10.13,13.54,145,147,0.00 +2023-03-11T15:00,-2.5,959.1,10.62,14.32,142,144,0.10 +2023-03-11T16:00,-2.4,958.3,11.49,14.73,145,145,0.40 +2023-03-11T17:00,-2.1,958.7,11.38,13.95,157,158,0.60 +2023-03-11T18:00,-2.0,958.7,9.23,11.20,157,157,1.40 +2023-03-11T19:00,-1.6,958.3,8.29,10.15,160,161,1.40 +2023-03-11T20:00,-1.4,958.1,8.00,9.71,167,168,0.80 +2023-03-11T21:00,-1.0,958.3,7.65,9.14,173,174,0.60 +2023-03-11T22:00,-0.8,958.5,6.70,8.61,180,182,0.10 +2023-03-11T23:00,-0.5,958.5,5.81,7.73,183,185,0.00 +2023-03-12T00:00,-1.1,959.0,5.81,7.90,176,180,0.00 +2023-03-12T01:00,-2.2,959.3,5.22,7.89,200,202,0.00 +2023-03-12T02:00,-2.2,959.7,5.70,8.56,218,223,0.00 +2023-03-12T03:00,-4.2,959.3,5.81,8.58,221,234,0.00 +2023-03-12T04:00,-4.3,958.8,5.52,7.38,222,243,0.00 +2023-03-12T05:00,-4.5,958.1,5.12,7.05,219,235,0.00 +2023-03-12T06:00,-4.8,957.8,5.55,8.35,214,228,0.00 +2023-03-12T07:00,-5.2,957.6,6.98,11.63,218,229,0.00 +2023-03-12T08:00,-3.7,958.5,9.26,13.20,244,249,0.00 +2023-03-12T09:00,-5.0,958.0,9.46,13.59,254,258,0.00 +2023-03-12T10:00,-5.6,957.8,9.94,13.91,265,268,0.00 +2023-03-12T11:00,-4.7,958.3,10.14,13.49,280,282,0.00 +2023-03-12T12:00,-6.4,957.9,9.75,13.69,285,288,0.00 +2023-03-12T13:00,-7.4,958.5,9.80,13.82,284,287,0.00 +2023-03-12T14:00,-6.7,959.2,11.41,13.74,295,298,0.00 +2023-03-12T15:00,-5.5,959.8,12.12,14.58,311,312,0.00 +2023-03-12T16:00,-5.0,960.7,12.03,14.43,313,313,0.00 +2023-03-12T17:00,-5.4,961.3,11.40,13.74,305,306,0.00 +2023-03-12T18:00,-4.7,961.5,12.48,14.18,308,308,0.00 +2023-03-12T19:00,-4.5,961.8,12.73,14.85,314,315,0.00 +2023-03-12T20:00,-4.2,962.1,13.10,15.45,318,319,0.00 +2023-03-12T21:00,-4.3,962.6,13.89,16.74,319,319,0.00 +2023-03-12T22:00,-4.7,963.3,14.10,17.60,322,322,0.00 +2023-03-12T23:00,-5.2,964.0,13.37,17.23,321,322,0.00 +2023-03-13T00:00,-5.7,965.3,11.65,14.60,321,322,0.00 +2023-03-13T01:00,-6.0,966.1,11.43,15.04,320,322,0.00 +2023-03-13T02:00,-6.7,967.0,11.36,15.26,320,322,0.00 +2023-03-13T03:00,-6.4,967.8,11.48,15.07,322,325,0.00 +2023-03-13T04:00,-6.3,968.3,11.26,14.76,325,327,0.00 +2023-03-13T05:00,-6.3,968.7,10.60,14.05,328,331,0.00 +2023-03-13T06:00,-6.2,969.1,9.62,12.85,333,337,0.00 +2023-03-13T07:00,-6.3,969.8,8.65,11.64,338,341,0.00 +2023-03-13T08:00,-6.8,970.4,7.97,11.07,340,343,0.00 +2023-03-13T09:00,-7.4,970.7,7.84,10.95,341,344,0.00 +2023-03-13T10:00,-8.1,971.0,7.67,10.88,338,341,0.00 +2023-03-13T11:00,-9.2,971.7,7.38,10.83,335,339,0.00 +2023-03-13T12:00,-10.5,972.3,6.65,10.15,339,343,0.00 +2023-03-13T13:00,-11.0,973.2,6.62,9.94,335,339,0.00 +2023-03-13T14:00,-10.9,973.8,5.99,9.96,334,341,0.00 +2023-03-13T15:00,-10.3,974.5,6.48,8.90,333,339,0.00 +2023-03-13T16:00,-9.5,975.0,6.66,7.21,334,336,0.00 +2023-03-13T17:00,-8.7,975.0,6.41,6.69,337,338,0.00 +2023-03-13T18:00,-7.9,975.0,5.95,6.22,335,336,0.00 +2023-03-13T19:00,-7.2,975.0,5.55,6.08,332,333,0.00 +2023-03-13T20:00,-6.8,974.7,5.35,5.94,327,327,0.00 +2023-03-13T21:00,-6.7,974.5,5.19,5.69,326,326,0.00 +2023-03-13T22:00,-6.7,974.3,4.92,5.37,331,331,0.00 +2023-03-13T23:00,-7.0,974.1,4.35,4.88,337,337,0.00 +2023-03-14T00:00,-8.2,974.0,2.63,3.42,351,353,0.00 +2023-03-14T01:00,-10.1,973.9,2.06,2.72,346,354,0.00 +2023-03-14T02:00,-10.4,974.0,1.77,2.18,313,344,0.00 +2023-03-14T03:00,-11.0,974.1,1.70,1.14,270,308,0.00 +2023-03-14T04:00,-10.9,973.8,1.50,0.90,217,180,0.00 +2023-03-14T05:00,-12.8,973.2,2.91,2.90,196,180,0.00 +2023-03-14T06:00,-12.0,973.3,4.15,5.05,195,188,0.00 +2023-03-14T07:00,-11.8,973.5,4.74,6.77,198,193,0.00 +2023-03-14T08:00,-11.5,973.4,5.00,7.59,196,193,0.00 +2023-03-14T09:00,-10.2,973.5,5.29,7.98,195,195,0.00 +2023-03-14T10:00,-9.8,973.1,5.97,8.63,194,193,0.00 +2023-03-14T11:00,-9.9,972.8,6.76,9.72,188,189,0.00 +2023-03-14T12:00,-9.3,972.6,7.00,10.01,180,183,0.00 +2023-03-14T13:00,-8.5,972.5,7.82,10.81,176,178,0.00 +2023-03-14T14:00,-8.0,972.1,9.86,11.65,174,175,0.00 +2023-03-14T15:00,-7.1,972.0,10.92,12.21,176,177,0.00 +2023-03-14T16:00,-6.4,971.8,10.92,12.62,176,177,0.00 +2023-03-14T17:00,-5.6,971.3,11.26,12.86,174,175,0.00 +2023-03-14T18:00,-4.5,970.4,11.80,13.41,173,173,0.00 +2023-03-14T19:00,-3.0,969.1,11.62,13.82,165,166,0.00 +2023-03-14T20:00,-2.2,967.6,12.20,14.86,158,158,0.00 +2023-03-14T21:00,-2.0,966.6,12.11,14.95,158,158,0.00 +2023-03-14T22:00,-2.1,965.6,12.21,15.85,154,156,0.00 +2023-03-14T23:00,-2.3,964.9,12.94,17.54,163,166,0.00 +2023-03-15T00:00,-2.5,965.0,11.38,15.95,165,168,0.00 +2023-03-15T01:00,-2.7,964.7,11.30,16.03,167,170,0.00 +2023-03-15T02:00,-2.5,964.2,11.36,16.26,168,172,0.00 +2023-03-15T03:00,-1.9,963.9,11.40,16.53,172,177,0.00 +2023-03-15T04:00,-1.4,963.5,11.62,16.80,177,181,0.00 +2023-03-15T05:00,-1.1,962.9,11.71,16.96,182,185,0.00 +2023-03-15T06:00,-0.8,962.3,11.58,16.87,187,190,0.00 +2023-03-15T07:00,-0.6,961.7,11.31,16.63,188,191,0.00 +2023-03-15T08:00,-0.6,961.4,10.95,16.11,189,193,0.00 +2023-03-15T09:00,-0.6,960.7,10.97,16.23,190,193,0.00 +2023-03-15T10:00,-0.5,959.9,10.87,16.13,190,193,0.00 +2023-03-15T11:00,-0.4,959.9,10.85,16.18,192,195,0.00 +2023-03-15T12:00,0.7,958.5,10.09,15.26,198,202,0.00 +2023-03-15T13:00,0.8,958.3,10.41,15.75,196,199,0.00 +2023-03-15T14:00,1.5,958.0,10.72,15.88,194,197,0.00 +2023-03-15T15:00,2.0,957.8,10.91,16.02,194,196,0.00 +2023-03-15T16:00,2.7,957.4,11.12,16.06,191,194,0.00 +2023-03-15T17:00,3.5,957.0,11.96,16.78,192,194,0.00 +2023-03-15T18:00,4.3,955.8,12.40,17.32,193,194,0.00 +2023-03-15T19:00,5.0,954.6,11.41,16.16,188,190,0.00 +2023-03-15T20:00,5.7,953.2,10.54,15.23,185,188,0.00 +2023-03-15T21:00,6.2,952.1,10.52,15.20,184,186,0.00 +2023-03-15T22:00,6.2,951.0,9.63,14.30,175,179,0.00 +2023-03-15T23:00,6.0,950.4,9.33,14.30,175,180,0.00 +2023-03-16T00:00,4.6,951.1,7.08,11.23,149,161,0.00 +2023-03-16T01:00,4.5,950.2,7.69,12.16,152,164,0.00 +2023-03-16T02:00,4.8,950.0,7.02,11.51,160,172,0.00 +2023-03-16T03:00,5.0,950.0,7.32,11.75,175,185,0.00 +2023-03-16T04:00,5.1,949.9,7.99,12.95,189,195,0.00 +2023-03-16T05:00,5.6,949.7,9.33,14.78,197,201,0.00 +2023-03-16T06:00,6.0,949.8,9.84,15.47,205,207,0.00 +2023-03-16T07:00,5.9,949.6,10.56,16.16,208,211,0.00 +2023-03-16T08:00,5.3,950.0,7.78,12.59,225,225,0.00 +2023-03-16T09:00,3.6,950.5,5.10,7.64,271,264,0.00 +2023-03-16T10:00,0.1,950.9,6.44,9.06,313,312,0.20 +2023-03-16T11:00,0.0,951.5,7.53,11.22,320,323,0.70 +2023-03-16T12:00,-0.6,951.9,10.42,14.80,332,333,0.90 +2023-03-16T13:00,-0.5,952.1,10.23,14.34,338,339,0.40 +2023-03-16T14:00,-0.2,952.4,9.30,13.57,341,343,0.30 +2023-03-16T15:00,0.0,953.1,8.73,12.78,336,341,0.40 +2023-03-16T16:00,-0.1,953.7,11.49,16.76,325,330,0.50 +2023-03-16T17:00,-0.9,954.2,12.66,19.56,329,336,1.00 +2023-03-16T18:00,-1.4,954.7,14.80,21.83,329,335,1.80 +2023-03-16T19:00,-2.2,955.6,16.33,21.29,332,333,1.10 +2023-03-16T20:00,-3.1,956.0,15.76,20.58,330,332,0.80 +2023-03-16T21:00,-3.5,957.0,16.82,21.07,332,332,0.40 +2023-03-16T22:00,-3.6,958.1,16.69,20.54,332,332,0.10 +2023-03-16T23:00,-4.1,958.8,16.17,20.14,330,331,0.00 +2023-03-17T00:00,-6.7,959.7,15.37,20.05,328,329,0.00 +2023-03-17T01:00,-8.1,960.2,15.48,20.62,327,328,0.00 +2023-03-17T02:00,-8.9,960.6,15.50,20.69,326,327,0.00 +2023-03-17T03:00,-9.5,961.3,14.87,19.89,325,326,0.00 +2023-03-17T04:00,-9.9,961.8,14.48,19.42,325,325,0.00 +2023-03-17T05:00,-10.1,962.1,14.04,18.95,324,325,0.00 +2023-03-17T06:00,-9.8,962.3,13.16,17.79,324,325,0.00 +2023-03-17T07:00,-10.2,962.4,13.12,17.70,322,323,0.00 +2023-03-17T08:00,-11.2,962.8,12.87,17.45,321,322,0.00 +2023-03-17T09:00,-11.7,963.0,12.41,16.98,319,320,0.00 +2023-03-17T10:00,-12.3,963.2,11.56,15.85,320,321,0.00 +2023-03-17T11:00,-12.7,963.4,10.73,14.81,321,322,0.00 +2023-03-17T12:00,-14.8,963.4,10.15,14.17,320,322,0.00 +2023-03-17T13:00,-15.0,963.5,10.13,13.98,319,320,0.00 +2023-03-17T14:00,-14.7,964.1,10.26,13.53,317,318,0.00 +2023-03-17T15:00,-14.3,964.5,10.97,13.23,317,317,0.00 +2023-03-17T16:00,-13.8,965.1,10.75,12.66,314,315,0.00 +2023-03-17T17:00,-13.2,965.5,11.00,12.70,310,310,0.00 +2023-03-17T18:00,-12.7,965.7,11.69,13.60,311,311,0.00 +2023-03-17T19:00,-12.6,965.6,12.28,14.26,310,310,0.00 +2023-03-17T20:00,-12.4,965.4,12.48,14.62,308,307,0.00 +2023-03-17T21:00,-12.4,965.3,12.76,15.12,305,306,0.00 +2023-03-17T22:00,-12.7,965.3,13.79,16.51,305,305,0.00 +2023-03-17T23:00,-13.4,965.8,14.14,17.32,310,310,0.10 +2023-03-18T00:00,-15.4,966.0,13.40,16.51,311,311,0.00 +2023-03-18T01:00,-16.4,966.4,11.98,15.65,311,312,0.00 +2023-03-18T02:00,-17.0,966.9,12.11,16.20,312,313,0.00 +2023-03-18T03:00,-17.0,967.0,11.83,16.06,311,313,0.00 +2023-03-18T04:00,-17.1,967.1,11.41,15.71,311,313,0.00 +2023-03-18T05:00,-17.0,967.2,11.05,15.35,311,314,0.00 +2023-03-18T06:00,-16.6,967.2,10.97,15.42,313,316,0.00 +2023-03-18T07:00,-16.1,967.3,10.75,15.21,313,316,0.00 +2023-03-18T08:00,-15.7,967.6,10.96,15.44,315,318,0.00 +2023-03-18T09:00,-15.2,967.8,11.12,15.56,318,320,0.00 +2023-03-18T10:00,-14.9,968.3,11.29,15.70,320,323,0.00 +2023-03-18T11:00,-14.7,969.0,11.59,16.00,321,323,0.00 +2023-03-18T12:00,-15.4,969.1,11.53,16.06,321,323,0.00 +2023-03-18T13:00,-15.3,969.9,11.62,16.04,322,324,0.00 +2023-03-18T14:00,-14.6,970.9,11.40,15.28,325,326,0.00 +2023-03-18T15:00,-13.5,972.1,12.76,15.32,328,328,0.00 +2023-03-18T16:00,-12.7,973.0,13.12,15.45,328,328,0.00 +2023-03-18T17:00,-11.9,973.4,13.14,15.16,323,324,0.00 +2023-03-18T18:00,-11.2,973.9,13.20,15.26,320,320,0.00 +2023-03-18T19:00,-10.6,974.2,13.34,15.62,320,320,0.00 +2023-03-18T20:00,-10.2,974.3,13.25,15.51,318,318,0.00 +2023-03-18T21:00,-9.8,974.4,12.31,14.66,321,322,0.00 +2023-03-18T22:00,-9.8,974.5,11.54,14.09,317,318,0.00 +2023-03-18T23:00,-10.2,974.8,10.47,13.88,316,318,0.00 +2023-03-19T00:00,-11.7,974.5,10.20,14.30,323,324,0.00 +2023-03-19T01:00,-12.6,974.8,9.96,14.44,322,323,0.00 +2023-03-19T02:00,-13.1,975.1,9.14,13.59,319,321,0.00 +2023-03-19T03:00,-13.6,975.2,8.42,12.88,314,318,0.00 +2023-03-19T04:00,-14.0,974.9,7.98,12.45,308,313,0.00 +2023-03-19T05:00,-14.2,974.5,7.49,11.70,304,310,0.00 +2023-03-19T06:00,-14.5,973.9,6.62,10.54,295,305,0.00 +2023-03-19T07:00,-14.9,973.0,6.10,9.44,280,296,0.00 +2023-03-19T08:00,-15.2,972.3,6.11,9.22,266,285,0.00 +2023-03-19T09:00,-15.0,971.7,6.91,10.70,256,272,0.00 +2023-03-19T10:00,-14.4,971.0,7.68,12.29,252,263,0.00 +2023-03-19T11:00,-14.2,970.6,8.14,12.68,242,253,0.00 +2023-03-19T12:00,-14.4,970.6,8.11,12.53,231,241,0.00 +2023-03-19T13:00,-14.1,969.9,8.28,12.96,223,232,0.00 +2023-03-19T14:00,-11.9,969.5,9.34,14.14,218,225,0.00 +2023-03-19T15:00,-9.3,969.3,10.23,15.20,214,220,0.00 +2023-03-19T16:00,-7.2,968.5,9.31,17.08,208,217,0.00 +2023-03-19T17:00,-4.9,967.3,10.56,18.08,206,214,0.00 +2023-03-19T18:00,-2.2,966.1,10.74,18.67,205,214,0.00 +2023-03-19T19:00,-1.0,964.8,10.98,17.84,210,214,0.00 +2023-03-19T20:00,1.2,963.4,11.96,17.03,210,212,0.00 +2023-03-19T21:00,2.0,961.6,11.94,16.97,206,209,0.00 +2023-03-19T22:00,2.7,960.5,12.44,17.70,208,210,0.00 +2023-03-19T23:00,3.1,959.7,12.32,17.65,210,212,0.00 +2023-03-20T00:00,2.0,959.6,11.45,16.70,206,209,0.00 +2023-03-20T01:00,1.8,959.2,11.15,16.51,210,213,0.00 +2023-03-20T02:00,1.6,958.6,11.78,17.33,210,213,0.00 +2023-03-20T03:00,1.3,958.4,12.18,18.01,214,215,0.00 +2023-03-20T04:00,1.0,958.2,12.66,18.29,216,219,0.00 +2023-03-20T05:00,0.3,958.8,10.56,15.95,229,229,0.00 +2023-03-20T06:00,-0.9,958.9,7.92,12.38,242,239,0.00 +2023-03-20T07:00,-2.9,958.9,5.91,9.10,274,269,0.00 +2023-03-20T08:00,-6.2,958.6,5.16,7.43,306,303,0.00 +2023-03-20T09:00,-7.4,958.8,5.31,7.27,317,328,0.00 +2023-03-20T10:00,-8.3,958.9,5.54,7.83,321,333,0.00 +2023-03-20T11:00,-9.4,959.3,5.82,8.26,325,339,0.00 +2023-03-20T12:00,-9.3,959.7,5.28,7.18,333,347,0.00 +2023-03-20T13:00,-9.3,960.6,5.55,7.73,337,350,0.00 +2023-03-20T14:00,-8.8,961.3,4.79,7.82,337,356,0.00 +2023-03-20T15:00,-7.6,962.0,5.44,8.20,343,359,0.00 +2023-03-20T16:00,-6.2,962.6,5.92,7.00,355,359,0.00 +2023-03-20T17:00,-4.9,962.9,5.53,6.17,6,8,0.00 +2023-03-20T18:00,-4.1,963.0,5.02,5.53,5,6,0.00 +2023-03-20T19:00,-3.2,963.3,5.25,5.77,8,9,0.00 +2023-03-20T20:00,-2.5,963.2,5.41,5.98,16,18,0.00 +2023-03-20T21:00,-1.9,963.0,5.55,6.22,23,24,0.00 +2023-03-20T22:00,-1.5,963.0,5.95,6.66,27,28,0.00 +2023-03-20T23:00,-1.5,963.1,5.35,6.89,21,24,0.00 +2023-03-21T00:00,-3.3,963.4,4.65,6.91,25,34,0.00 +2023-03-21T01:00,-4.6,963.2,4.72,7.72,32,41,0.00 +2023-03-21T02:00,-4.9,963.3,4.61,7.84,41,52,0.00 +2023-03-21T03:00,-5.2,963.4,4.74,7.85,46,59,0.00 +2023-03-21T04:00,-5.3,963.1,5.36,8.96,53,61,0.00 +2023-03-21T05:00,-5.3,962.9,6.04,9.86,63,67,0.00 +2023-03-21T06:00,-5.7,963.5,5.73,9.52,84,86,0.00 +2023-03-21T07:00,-5.9,962.9,5.77,9.43,81,86,0.00 +2023-03-21T08:00,-6.1,962.7,5.87,9.38,76,83,0.00 +2023-03-21T09:00,-6.2,962.0,5.76,9.01,73,81,0.00 +2023-03-21T10:00,-6.4,961.8,5.80,9.09,75,82,0.00 +2023-03-21T11:00,-6.2,961.8,5.85,8.99,73,82,0.00 +2023-03-21T12:00,-6.2,961.8,4.81,7.50,69,81,0.00 +2023-03-21T13:00,-5.8,961.7,4.90,7.52,73,85,0.00 +2023-03-21T14:00,-4.9,961.6,4.09,7.61,68,87,0.00 +2023-03-21T15:00,-3.5,961.8,4.56,7.31,75,93,0.00 +2023-03-21T16:00,-2.2,961.9,4.55,6.35,81,97,0.00 +2023-03-21T17:00,-1.0,961.3,4.83,7.08,96,113,0.00 +2023-03-21T18:00,0.7,960.6,4.46,7.22,106,127,0.00 +2023-03-21T19:00,2.6,959.6,4.24,7.50,105,127,0.00 +2023-03-21T20:00,3.0,958.0,4.80,7.49,89,109,0.00 +2023-03-21T21:00,4.2,956.8,5.08,7.81,100,130,0.00 +2023-03-21T22:00,6.0,956.6,5.86,9.74,153,163,0.00 +2023-03-21T23:00,5.8,955.8,7.05,11.00,148,154,0.00 +2023-03-22T00:00,4.1,956.5,5.74,9.46,131,141,0.00 +2023-03-22T01:00,4.7,956.2,8.29,12.84,157,163,0.00 +2023-03-22T02:00,4.8,957.1,10.34,14.78,185,186,0.40 +2023-03-22T03:00,4.0,956.9,9.70,13.90,181,181,0.20 +2023-03-22T04:00,3.5,957.1,8.60,12.47,189,192,0.10 +2023-03-22T05:00,3.4,957.0,9.73,13.95,195,198,0.00 +2023-03-22T06:00,2.8,956.9,9.38,13.57,202,204,0.00 +2023-03-22T07:00,2.3,957.3,8.60,12.59,213,214,0.00 +2023-03-22T08:00,2.1,958.1,7.33,10.57,244,247,0.10 +2023-03-22T09:00,0.8,958.5,6.71,9.30,267,269,0.00 +2023-03-22T10:00,-0.5,959.4,8.49,11.18,282,283,0.00 +2023-03-22T11:00,-3.3,959.8,8.00,10.94,283,284,0.00 +2023-03-22T12:00,-6.1,959.5,7.80,11.03,271,274,0.00 +2023-03-22T13:00,-6.2,959.9,7.81,11.18,272,277,0.00 +2023-03-22T14:00,-5.1,960.7,8.70,10.85,279,282,0.00 +2023-03-22T15:00,-4.0,961.4,8.52,9.86,292,293,0.00 +2023-03-22T16:00,-2.9,962.1,8.29,9.29,304,304,0.00 +2023-03-22T17:00,-2.4,962.3,8.26,9.18,308,308,0.00 +2023-03-22T18:00,-2.0,962.7,7.55,8.32,305,305,0.00 +2023-03-22T19:00,-1.5,963.1,7.56,8.32,298,297,0.00 +2023-03-22T20:00,-1.5,961.9,8.36,9.35,319,318,0.00 +2023-03-22T21:00,-1.3,962.3,8.03,9.03,321,321,0.00 +2023-03-22T22:00,-1.2,962.6,7.96,8.96,325,325,0.00 +2023-03-22T23:00,-1.4,962.9,7.29,8.55,331,331,0.00 +2023-03-23T00:00,-3.0,964.1,6.77,7.43,344,343,0.00 +2023-03-23T01:00,-3.7,964.8,5.35,6.42,343,342,0.00 +2023-03-23T02:00,-3.9,964.6,5.41,6.46,344,344,0.00 +2023-03-23T03:00,-4.4,964.5,6.08,8.52,351,351,0.00 +2023-03-23T04:00,-5.4,964.8,6.68,9.44,343,345,0.00 +2023-03-23T05:00,-6.0,964.5,6.48,9.07,343,346,0.00 +2023-03-23T06:00,-6.3,965.4,5.10,7.47,334,340,0.00 +2023-03-23T07:00,-6.6,965.5,5.24,7.66,336,340,0.00 +2023-03-23T08:00,-7.1,965.4,5.16,8.08,338,345,0.00 +2023-03-23T09:00,-7.1,965.9,5.52,7.52,328,335,0.00 +2023-03-23T10:00,-7.1,966.0,6.04,7.80,333,337,0.00 +2023-03-23T11:00,-7.7,966.7,5.64,8.62,333,338,0.00 +2023-03-23T12:00,-8.6,966.5,5.35,8.93,339,347,0.00 +2023-03-23T13:00,-8.7,967.2,4.49,8.12,339,350,0.00 +2023-03-23T14:00,-8.1,967.8,5.10,6.00,344,349,0.00 +2023-03-23T15:00,-7.4,968.5,4.31,4.68,338,344,0.00 +2023-03-23T16:00,-6.2,969.4,4.12,3.99,337,338,0.00 +2023-03-23T17:00,-5.3,969.0,2.80,3.10,358,360,0.00 +2023-03-23T18:00,-4.6,968.5,2.47,2.62,14,18,0.00 +2023-03-23T19:00,-4.0,968.8,2.24,2.28,333,337,0.00 +2023-03-23T20:00,-3.4,968.6,3.42,3.64,322,323,0.00 +2023-03-23T21:00,-3.0,967.8,4.07,4.39,335,336,0.00 +2023-03-23T22:00,-2.8,967.3,3.73,4.13,352,353,0.00 +2023-03-23T23:00,-3.0,966.6,3.62,3.93,6,7,0.00 +2023-03-24T00:00,-5.0,967.4,2.65,3.24,11,9,0.00 +2023-03-24T01:00,-7.1,966.9,2.82,3.70,23,19,0.00 +2023-03-24T02:00,-7.3,967.0,1.70,2.83,40,32,0.00 +2023-03-24T03:00,-6.1,967.5,0.80,1.66,90,65,0.00 +2023-03-24T04:00,-6.1,967.1,1.03,1.81,119,96,0.00 +2023-03-24T05:00,-6.5,966.7,1.36,2.05,163,137,0.00 +2023-03-24T06:00,-6.1,966.3,0.54,1.28,158,129,0.00 +2023-03-24T07:00,-6.2,965.8,0.58,1.17,149,121,0.00 +2023-03-24T08:00,-6.4,965.7,1.12,1.63,153,133,0.00 +2023-03-24T09:00,-9.0,964.6,2.06,2.64,157,143,0.00 +2023-03-24T10:00,-10.1,963.9,2.22,2.90,144,134,0.00 +2023-03-24T11:00,-10.1,963.6,3.50,4.68,143,132,0.00 +2023-03-24T12:00,-10.3,964.0,3.23,5.44,158,144,0.00 +2023-03-24T13:00,-9.4,963.6,2.73,5.44,152,144,0.00 +2023-03-24T14:00,-7.1,963.8,2.87,5.71,151,147,0.00 +2023-03-24T15:00,-4.1,964.1,3.58,6.24,144,145,0.00 +2023-03-24T16:00,-2.3,963.3,3.47,6.00,134,143,0.00 +2023-03-24T17:00,-1.1,962.9,3.55,5.56,130,142,0.00 +2023-03-24T18:00,0.3,962.6,3.50,4.25,127,131,0.00 +2023-03-24T19:00,1.5,961.9,2.57,2.88,103,110,0.00 +2023-03-24T20:00,1.9,961.0,2.33,2.69,80,112,0.00 +2023-03-24T21:00,1.7,959.3,2.88,2.61,56,86,0.00 +2023-03-24T22:00,1.7,958.1,3.40,4.30,76,89,0.00 +2023-03-24T23:00,1.8,957.2,3.61,5.20,71,79,0.00 +2023-03-25T00:00,-0.8,958.0,4.06,6.20,80,88,0.00 +2023-03-25T01:00,-0.5,957.9,4.40,7.54,90,96,0.00 +2023-03-25T02:00,-0.5,957.0,4.00,7.06,89,97,0.00 +2023-03-25T03:00,-1.6,955.9,3.71,6.20,76,92,0.00 +2023-03-25T04:00,-2.2,955.2,4.12,6.84,61,75,0.00 +2023-03-25T05:00,-3.4,954.9,3.61,6.59,76,80,0.00 +2023-03-25T06:00,-3.8,955.0,3.22,6.02,83,85,0.00 +2023-03-25T07:00,-3.4,954.7,3.13,5.71,83,87,0.00 +2023-03-25T08:00,-1.6,954.7,2.56,4.66,59,75,0.00 +2023-03-25T09:00,-1.7,954.4,2.64,4.48,37,61,0.00 +2023-03-25T10:00,-1.9,954.3,2.51,4.08,29,54,0.00 +2023-03-25T11:00,-2.1,954.2,3.04,4.49,9,32,0.00 +2023-03-25T12:00,-2.3,954.0,4.08,5.90,343,359,0.00 +2023-03-25T13:00,-3.2,954.6,4.79,7.31,331,343,0.00 +2023-03-25T14:00,-1.5,955.3,3.62,7.61,336,350,0.00 +2023-03-25T15:00,-0.7,955.8,3.64,6.90,344,2,0.00 +2023-03-25T16:00,-0.1,956.4,3.91,7.51,347,2,0.00 +2023-03-25T17:00,0.4,957.1,4.05,7.90,344,359,0.00 +2023-03-25T18:00,1.6,957.6,4.83,6.30,347,350,0.00 +2023-03-25T19:00,1.7,957.9,4.96,6.17,341,343,0.00 +2023-03-25T20:00,1.6,957.9,5.28,6.57,333,334,0.00 +2023-03-25T21:00,1.2,958.3,4.99,6.24,327,328,0.00 +2023-03-25T22:00,0.9,958.7,4.67,5.95,317,318,0.00 +2023-03-25T23:00,0.5,959.0,4.53,6.44,315,317,0.00 +2023-03-26T00:00,-1.5,960.0,4.26,6.86,321,323,0.00 +2023-03-26T01:00,-3.2,960.3,4.62,8.07,321,326,0.00 +2023-03-26T02:00,-4.0,960.7,4.97,8.46,320,325,0.00 +2023-03-26T03:00,-4.7,961.4,5.49,9.33,327,329,0.00 +2023-03-26T04:00,-5.3,962.1,5.94,9.85,327,331,0.00 +2023-03-26T05:00,-5.8,962.3,5.80,9.71,328,331,0.00 +2023-03-26T06:00,-5.9,962.6,5.91,9.97,332,334,0.00 +2023-03-26T07:00,-6.6,962.7,6.04,9.97,336,339,0.00 +2023-03-26T08:00,-7.4,963.0,5.81,9.69,333,338,0.00 +2023-03-26T09:00,-8.2,963.2,5.44,9.12,328,334,0.00 +2023-03-26T10:00,-8.8,963.2,5.92,9.70,330,334,0.00 +2023-03-26T11:00,-9.2,962.9,7.58,12.15,337,340,0.00 +2023-03-26T12:00,-9.6,963.6,6.80,11.04,340,342,0.00 +2023-03-26T13:00,-9.7,964.6,6.05,9.96,338,341,0.00 +2023-03-26T14:00,-8.8,965.6,5.95,7.61,333,335,0.00 +2023-03-26T15:00,-7.5,966.1,6.59,7.25,338,336,0.00 +2023-03-26T16:00,-6.3,966.3,6.32,7.08,337,337,0.00 +2023-03-26T17:00,-4.9,966.5,6.59,7.32,338,338,0.00 +2023-03-26T18:00,-4.0,966.7,6.54,7.39,337,337,0.00 +2023-03-26T19:00,-3.3,966.9,6.53,7.52,335,335,0.00 +2023-03-26T20:00,-2.6,966.8,6.32,7.39,337,337,0.00 +2023-03-26T21:00,-2.2,966.8,6.09,7.17,337,337,0.00 +2023-03-26T22:00,-2.1,966.8,6.41,7.80,337,337,0.00 +2023-03-26T23:00,-2.7,966.9,6.45,8.25,336,337,0.00 +2023-03-27T00:00,-4.0,967.8,5.01,7.38,331,333,0.00 +2023-03-27T01:00,-5.7,968.1,4.70,8.01,331,336,0.00 +2023-03-27T02:00,-6.4,968.4,4.74,8.21,332,338,0.00 +2023-03-27T03:00,-7.0,968.9,4.66,8.15,329,337,0.00 +2023-03-27T04:00,-7.6,969.1,4.60,7.80,318,329,0.00 +2023-03-27T05:00,-8.0,969.5,4.74,8.13,318,328,0.00 +2023-03-27T06:00,-8.3,969.8,4.46,7.77,318,328,0.00 +2023-03-27T07:00,-8.8,969.7,4.10,7.43,326,336,0.00 +2023-03-27T08:00,-9.3,969.4,3.89,7.03,334,345,0.00 +2023-03-27T09:00,-9.6,969.5,4.12,6.99,331,343,0.00 +2023-03-27T10:00,-9.9,969.6,4.52,7.78,332,342,0.00 +2023-03-27T11:00,-10.4,970.1,4.34,7.68,334,342,0.00 +2023-03-27T12:00,-10.1,970.7,4.03,6.99,337,347,0.00 +2023-03-27T13:00,-9.6,971.1,3.32,6.04,339,353,0.00 +2023-03-27T14:00,-8.5,971.8,3.26,5.90,333,349,0.00 +2023-03-27T15:00,-7.0,972.8,4.33,6.22,326,334,0.00 +2023-03-27T16:00,-5.6,973.9,5.33,6.54,320,321,0.00 +2023-03-27T17:00,-4.4,974.2,5.08,6.02,324,324,0.00 +2023-03-27T18:00,-3.3,974.2,4.66,5.52,337,338,0.00 +2023-03-27T19:00,-2.7,974.2,4.14,4.78,340,340,0.00 +2023-03-27T20:00,-2.1,974.0,3.94,4.57,336,337,0.00 +2023-03-27T21:00,-1.8,973.6,4.70,5.55,336,337,0.00 +2023-03-27T22:00,-2.1,973.7,5.66,6.84,339,339,0.00 +2023-03-27T23:00,-2.9,973.7,6.07,7.60,340,339,0.00 +2023-03-28T00:00,-5.2,974.5,5.87,8.34,337,337,0.00 +2023-03-28T01:00,-6.1,975.3,5.61,8.55,329,331,0.00 +2023-03-28T02:00,-6.0,976.2,6.67,9.31,330,332,0.00 +2023-03-28T03:00,-7.0,976.7,6.22,9.48,332,334,0.00 +2023-03-28T04:00,-8.1,976.6,6.08,9.48,333,334,0.00 +2023-03-28T05:00,-9.1,976.5,5.52,8.91,328,331,0.00 +2023-03-28T06:00,-10.2,976.8,4.64,7.85,323,329,0.00 +2023-03-28T07:00,-11.4,976.9,4.28,7.49,323,329,0.00 +2023-03-28T08:00,-12.2,976.7,4.60,8.01,326,331,0.00 +2023-03-28T09:00,-12.8,976.6,5.13,8.82,327,331,0.00 +2023-03-28T10:00,-13.2,976.1,4.41,7.88,327,331,0.00 +2023-03-28T11:00,-13.8,975.6,3.47,6.31,327,335,0.00 +2023-03-28T12:00,-14.7,974.8,2.11,3.71,301,333,0.00 +2023-03-28T13:00,-13.1,974.5,2.25,1.71,238,291,0.00 +2023-03-28T14:00,-10.7,974.5,3.02,3.33,214,221,0.00 +2023-03-28T15:00,-8.3,974.5,3.94,6.91,207,214,0.00 +2023-03-28T16:00,-5.6,974.6,5.42,7.38,203,207,0.00 +2023-03-28T17:00,-3.2,974.1,7.08,8.94,211,212,0.00 +2023-03-28T18:00,-1.1,973.2,7.68,9.82,215,215,0.00 +2023-03-28T19:00,0.5,972.0,7.43,9.57,213,214,0.00 +2023-03-28T20:00,2.0,970.9,6.51,8.70,226,226,0.00 +2023-03-28T21:00,2.8,970.0,5.66,8.19,249,250,0.00 +2023-03-28T22:00,2.7,969.7,5.52,8.17,292,292,0.00 +2023-03-28T23:00,0.9,969.5,6.50,9.11,329,329,0.00 +2023-03-29T00:00,-2.0,970.4,6.41,9.55,329,329,0.00 +2023-03-29T01:00,-4.8,970.8,6.72,10.40,337,337,0.00 +2023-03-29T02:00,-6.5,971.4,6.94,10.34,335,335,0.00 +2023-03-29T03:00,-8.4,971.9,7.38,10.29,335,335,0.00 +2023-03-29T04:00,-9.6,971.9,7.13,10.42,338,339,0.00 +2023-03-29T05:00,-10.1,972.2,6.96,10.29,344,344,0.00 +2023-03-29T06:00,-10.5,973.2,5.44,7.84,340,341,0.00 +2023-03-29T07:00,-10.9,973.4,5.98,8.26,342,343,0.00 +2023-03-29T08:00,-11.3,974.1,5.74,7.89,337,338,0.00 +2023-03-29T09:00,-12.0,974.0,5.72,8.07,341,340,0.00 +2023-03-29T10:00,-12.7,974.2,5.19,7.45,344,345,0.00 +2023-03-29T11:00,-13.7,974.8,4.09,6.80,338,343,0.00 +2023-03-29T12:00,-15.3,975.3,3.35,6.00,343,349,0.00 +2023-03-29T13:00,-15.6,975.3,2.65,5.70,349,358,0.00 +2023-03-29T14:00,-14.3,976.1,2.84,5.40,350,2,0.00 +2023-03-29T15:00,-12.6,976.6,2.90,3.70,358,2,0.00 +2023-03-29T16:00,-10.9,976.7,2.82,3.35,17,17,0.00 +2023-03-29T17:00,-9.6,976.4,2.36,2.64,36,37,0.00 +2023-03-29T18:00,-8.5,975.9,2.12,2.33,45,47,0.00 +2023-03-29T19:00,-7.5,975.3,1.98,2.19,45,47,0.00 +2023-03-29T20:00,-6.6,974.7,1.78,2.00,52,53,0.00 +2023-03-29T21:00,-6.1,974.0,1.42,1.56,51,50,0.00 +2023-03-29T22:00,-5.7,973.7,1.56,1.70,45,45,0.00 +2023-03-29T23:00,-5.9,972.7,2.55,2.91,48,49,0.00 +2023-03-30T00:00,-8.6,973.4,2.31,3.26,72,72,0.00 +2023-03-30T01:00,-10.8,972.4,2.52,3.61,83,85,0.00 +2023-03-30T02:00,-11.3,972.3,2.60,3.71,88,93,0.00 +2023-03-30T03:00,-11.3,972.1,2.81,4.34,94,105,0.00 +2023-03-30T04:00,-11.4,971.3,3.23,5.59,112,119,0.00 +2023-03-30T05:00,-10.7,970.4,3.36,6.33,113,121,0.00 +2023-03-30T06:00,-9.9,969.9,3.47,7.12,123,128,0.00 +2023-03-30T07:00,-9.1,969.4,3.91,7.47,122,129,0.00 +2023-03-30T08:00,-8.7,969.0,3.88,7.59,125,130,0.00 +2023-03-30T09:00,-7.8,968.9,4.10,7.86,133,138,0.00 +2023-03-30T10:00,-7.3,968.1,4.25,8.00,131,138,0.00 +2023-03-30T11:00,-7.0,967.0,4.63,8.44,123,131,0.00 +2023-03-30T12:00,-6.9,966.4,5.44,9.86,122,127,0.00 +2023-03-30T13:00,-5.9,965.6,5.69,10.26,121,125,0.00 +2023-03-30T14:00,-4.0,964.8,6.02,10.43,122,124,0.00 +2023-03-30T15:00,-1.9,963.2,5.55,12.71,113,125,0.00 +2023-03-30T16:00,-0.8,962.1,6.49,11.90,119,125,0.00 +2023-03-30T17:00,0.4,961.1,6.34,10.27,128,131,0.00 +2023-03-30T18:00,0.7,960.3,4.58,8.11,122,129,0.00 +2023-03-30T19:00,1.4,958.4,5.85,9.62,110,118,0.00 +2023-03-30T20:00,2.1,956.8,5.55,9.43,104,111,0.00 +2023-03-30T21:00,2.3,955.7,5.58,9.69,105,112,0.00 +2023-03-30T22:00,2.9,955.0,5.78,10.00,113,121,0.00 +2023-03-30T23:00,2.6,953.6,5.97,10.35,104,110,0.00 +2023-03-31T00:00,1.8,953.5,6.81,11.34,80,85,0.00 +2023-03-31T01:00,1.3,952.3,7.12,12.04,79,85,0.00 +2023-03-31T02:00,1.5,952.3,6.22,10.62,66,76,0.20 +2023-03-31T03:00,1.4,951.7,6.24,10.44,58,67,4.20 +2023-03-31T04:00,1.3,950.8,5.79,9.79,69,79,0.80 +2023-03-31T05:00,1.1,950.0,4.32,7.27,42,58,0.80 +2023-03-31T06:00,0.9,948.8,4.67,7.55,43,55,0.10 +2023-03-31T07:00,0.6,947.9,4.31,7.03,46,60,0.00 +2023-03-31T08:00,0.6,947.3,4.47,7.06,40,52,0.10 +2023-03-31T09:00,0.3,947.1,5.06,7.47,9,20,6.00 +2023-03-31T10:00,0.1,946.8,6.39,9.84,20,25,2.90 +2023-03-31T11:00,-0.0,946.4,6.62,10.51,38,40,0.10 +2023-03-31T12:00,-0.3,947.3,5.66,8.99,36,43,0.00 +2023-03-31T13:00,-0.2,947.1,4.89,8.04,41,52,0.40 +2023-03-31T14:00,-0.0,946.7,5.50,8.70,37,46,0.40 +2023-03-31T15:00,-0.0,945.9,6.24,9.53,32,39,0.10 +2023-03-31T16:00,0.1,945.4,6.91,10.98,31,38,0.10 +2023-03-31T17:00,0.5,944.5,7.29,11.27,43,49,0.20 +2023-03-31T18:00,0.7,943.4,7.36,11.20,46,53,0.20 +2023-03-31T19:00,1.3,942.0,7.04,11.35,51,59,0.80 +2023-03-31T20:00,1.9,940.8,7.00,11.32,59,64,0.40 +2023-03-31T21:00,2.3,939.9,6.04,9.74,51,58,7.10 +2023-03-31T22:00,1.7,941.4,3.75,4.55,314,320,3.60 +2023-03-31T23:00,1.4,941.0,5.29,8.45,338,349,0.20 +2023-04-01T00:00,0.0,943.2,5.00,7.61,2,10,0.10 +2023-04-01T01:00,-0.2,943.6,5.00,7.73,358,5,0.40 +2023-04-01T02:00,-0.4,943.7,5.15,7.80,352,360,0.60 +2023-04-01T03:00,-0.7,944.3,7.85,11.90,338,343,1.00 +2023-04-01T04:00,-0.9,945.4,10.18,15.02,353,357,1.80 +2023-04-01T05:00,-1.3,946.3,11.44,16.10,355,359,2.10 +2023-04-01T06:00,-1.9,948.0,12.77,17.33,354,356,1.80 +2023-04-01T07:00,-2.3,949.8,13.61,18.27,353,355,0.90 +2023-04-01T08:00,-2.4,951.8,14.38,19.05,349,351,1.10 +2023-04-01T09:00,-1.6,953.8,11.86,15.69,341,342,1.20 +2023-04-01T10:00,-2.0,955.8,14.04,18.32,338,340,0.00 +2023-04-01T11:00,-3.9,958.1,12.79,17.31,332,334,0.00 +2023-04-01T12:00,-4.8,958.5,12.17,16.53,335,337,0.00 +2023-04-01T13:00,-5.4,960.1,11.51,15.74,330,333,0.00 +2023-04-01T14:00,-5.2,962.0,9.90,13.64,330,332,0.00 +2023-04-01T15:00,-4.6,963.3,7.79,11.05,331,334,0.00 +2023-04-01T16:00,-3.8,964.5,7.20,8.63,333,335,0.00 +2023-04-01T17:00,-3.1,965.4,6.72,7.55,323,325,0.00 +2023-04-01T18:00,-2.7,965.8,6.30,7.07,313,314,0.00 +2023-04-01T19:00,-2.3,966.0,5.09,5.52,315,315,0.00 +2023-04-01T20:00,-1.7,966.7,6.20,6.99,288,287,0.00 +2023-04-01T21:00,-1.1,965.6,3.27,3.68,293,292,0.00 +2023-04-01T22:00,-0.9,964.8,0.98,1.21,246,246,0.00 +2023-04-01T23:00,-1.0,964.0,2.32,2.70,173,178,0.00 +2023-04-02T00:00,-2.5,964.1,3.51,4.63,177,186,0.00 +2023-04-02T01:00,-4.5,962.8,4.11,5.90,162,178,0.00 +2023-04-02T02:00,-3.9,962.2,4.92,7.74,151,166,0.00 +2023-04-02T03:00,-3.4,961.7,5.77,9.60,154,166,0.00 +2023-04-02T04:00,-2.9,960.7,6.43,10.77,159,167,0.00 +2023-04-02T05:00,-2.6,959.5,6.91,11.57,158,165,0.00 +2023-04-02T06:00,-1.1,959.1,8.00,13.25,167,171,0.00 +2023-04-02T07:00,-0.4,957.6,8.71,14.20,165,168,0.00 +2023-04-02T08:00,0.8,956.6,9.48,15.03,166,170,0.00 +2023-04-02T09:00,1.8,955.0,10.61,16.07,172,175,0.00 +2023-04-02T10:00,2.3,954.1,11.61,17.27,182,185,0.00 +2023-04-02T11:00,2.7,952.3,12.97,19.09,186,188,0.00 +2023-04-02T12:00,4.6,951.2,12.20,18.50,195,198,0.00 +2023-04-02T13:00,4.5,950.6,11.83,18.05,200,203,0.00 +2023-04-02T14:00,4.9,950.3,11.37,17.44,204,207,0.00 +2023-04-02T15:00,5.6,950.0,11.15,17.09,210,213,0.00 +2023-04-02T16:00,6.2,950.0,9.88,15.35,216,219,0.00 +2023-04-02T17:00,6.8,949.8,8.56,13.65,223,226,0.00 +2023-04-02T18:00,6.6,950.5,9.24,14.55,250,253,0.00 +2023-04-02T19:00,5.1,952.0,9.20,14.41,269,272,0.00 +2023-04-02T20:00,4.7,952.9,8.10,12.95,290,293,0.00 +2023-04-02T21:00,4.4,952.8,6.57,10.98,283,287,0.00 +2023-04-02T22:00,3.9,953.2,6.18,10.74,279,285,0.00 +2023-04-02T23:00,3.3,953.6,4.90,9.39,282,289,0.00 +2023-04-03T00:00,1.4,954.5,3.00,6.71,270,290,0.00 +2023-04-03T01:00,-0.4,954.7,2.82,6.00,243,269,0.00 +2023-04-03T02:00,0.0,954.8,3.31,6.07,209,237,0.00 +2023-04-03T03:00,-0.0,954.4,4.81,8.80,201,216,0.00 +2023-04-03T04:00,0.3,954.0,4.55,9.13,213,227,0.00 +2023-04-03T05:00,0.6,953.8,4.94,9.34,212,223,0.00 +2023-04-03T06:00,1.0,954.1,5.14,10.62,217,223,0.00 +2023-04-03T07:00,1.0,954.2,4.60,9.98,222,228,0.00 +2023-04-03T08:00,1.0,954.5,4.55,9.81,237,240,0.00 +2023-04-03T09:00,0.7,954.7,5.04,10.50,256,269,0.00 +2023-04-03T10:00,0.3,955.2,4.44,9.90,284,293,0.00 +2023-04-03T11:00,0.1,956.2,4.17,9.10,300,306,0.00 +2023-04-03T12:00,0.0,956.1,4.28,9.06,307,313,0.00 +2023-04-03T13:00,0.4,956.7,4.28,8.56,307,315,0.00 +2023-04-03T14:00,0.8,957.7,4.60,8.14,312,317,0.00 +2023-04-03T15:00,0.7,958.2,3.89,6.80,314,319,0.00 +2023-04-03T16:00,1.1,959.0,3.54,6.40,317,321,0.00 +2023-04-03T17:00,1.4,959.3,3.24,4.77,326,327,0.00 +2023-04-03T18:00,1.6,959.7,3.30,4.47,325,326,0.00 +2023-04-03T19:00,1.7,959.5,3.32,4.31,339,338,0.00 +2023-04-03T20:00,1.6,959.3,3.49,4.54,347,346,0.00 +2023-04-03T21:00,1.4,959.1,3.73,4.95,352,352,0.00 +2023-04-03T22:00,1.0,959.2,3.62,5.04,354,353,0.00 +2023-04-03T23:00,0.7,959.3,3.21,5.02,355,354,0.00 +2023-04-04T00:00,-0.6,959.7,4.12,6.06,14,13,0.00 +2023-04-04T01:00,-1.3,960.0,3.77,6.22,11,11,0.00 +2023-04-04T02:00,-1.6,960.5,4.04,6.61,9,10,0.00 +2023-04-04T03:00,-1.8,961.2,4.60,7.51,1,2,0.00 +2023-04-04T04:00,-1.7,961.6,4.42,7.26,5,7,0.00 +2023-04-04T05:00,-1.8,960.7,4.56,7.40,15,16,0.00 +2023-04-04T06:00,-2.9,959.9,4.11,7.89,18,22,0.00 +2023-04-04T07:00,-2.9,958.3,4.70,8.46,29,35,0.00 +2023-04-04T08:00,-3.2,957.9,4.18,7.82,21,32,0.00 +2023-04-04T09:00,-3.5,957.8,3.83,7.57,33,44,0.00 +2023-04-04T10:00,-3.1,956.7,5.30,9.55,36,47,0.00 +2023-04-04T11:00,-2.9,955.6,6.09,10.64,48,53,0.90 +2023-04-04T12:00,-2.2,956.6,5.59,9.37,44,50,0.90 +2023-04-04T13:00,-1.5,955.6,7.28,11.19,44,49,0.00 +2023-04-04T14:00,-1.2,954.2,7.85,11.79,47,51,0.00 +2023-04-04T15:00,-1.1,953.2,7.89,12.63,51,61,0.20 +2023-04-04T16:00,-0.4,951.5,7.66,12.34,57,63,0.50 +2023-04-04T17:00,0.9,950.6,8.10,12.37,72,76,1.10 +2023-04-04T18:00,1.5,949.6,7.54,11.68,68,74,0.40 +2023-04-04T19:00,2.0,948.5,7.34,11.42,66,71,0.60 +2023-04-04T20:00,2.3,947.9,6.94,10.91,65,71,0.30 +2023-04-04T21:00,2.5,946.6,7.37,11.77,69,74,0.30 +2023-04-04T22:00,2.7,945.9,6.77,11.34,74,78,0.20 +2023-04-04T23:00,2.8,945.3,5.43,9.67,77,83,0.10 +2023-04-05T00:00,1.3,946.5,4.96,8.32,48,57,0.00 +2023-04-05T01:00,1.1,946.2,4.53,7.99,45,56,0.00 +2023-04-05T02:00,1.0,946.3,3.83,7.00,57,68,0.00 +2023-04-05T03:00,0.9,946.7,1.36,3.54,17,61,0.00 +2023-04-05T04:00,0.8,946.2,1.60,3.26,4,43,0.00 +2023-04-05T05:00,0.5,946.3,2.33,2.62,301,310,0.00 +2023-04-05T06:00,0.2,946.1,4.12,6.66,293,296,0.00 +2023-04-05T07:00,-0.5,946.9,5.95,9.08,287,287,0.00 +2023-04-05T08:00,-1.3,947.7,5.39,9.82,281,285,0.00 +2023-04-05T09:00,-1.5,948.3,6.51,9.75,281,283,0.00 +2023-04-05T10:00,-2.0,948.7,7.86,11.72,282,283,0.00 +2023-04-05T11:00,-2.7,949.8,8.56,12.94,277,278,0.00 +2023-04-05T12:00,-3.7,950.5,9.49,13.91,282,282,0.00 +2023-04-05T13:00,-4.5,951.8,9.63,14.21,283,284,0.00 +2023-04-05T14:00,-4.8,952.8,11.11,15.19,286,286,0.00 +2023-04-05T15:00,-5.3,953.8,12.06,16.36,286,286,0.00 +2023-04-05T16:00,-5.1,955.5,12.85,17.71,283,284,0.00 +2023-04-05T17:00,-4.8,957.1,12.83,17.68,283,283,0.00 +2023-04-05T18:00,-4.5,958.2,12.40,17.13,283,283,0.00 +2023-04-05T19:00,-4.4,959.5,12.24,16.83,281,281,0.00 +2023-04-05T20:00,-4.4,960.2,12.02,16.56,278,278,0.00 +2023-04-05T21:00,-4.4,961.0,11.37,15.81,277,277,0.00 +2023-04-05T22:00,-4.6,962.0,10.93,14.84,274,274,0.00 +2023-04-05T23:00,-4.6,962.9,10.10,14.40,269,270,0.00 +2023-04-06T00:00,-4.3,963.9,8.81,13.10,267,269,0.00 +2023-04-06T01:00,-4.9,965.2,9.00,13.83,272,274,0.00 +2023-04-06T02:00,-5.3,966.2,8.81,13.65,273,275,0.00 +2023-04-06T03:00,-6.0,967.0,8.71,13.85,273,275,0.00 +2023-04-06T04:00,-6.2,967.3,8.51,13.67,273,276,0.00 +2023-04-06T05:00,-6.6,967.7,8.10,13.35,271,275,0.00 +2023-04-06T06:00,-7.1,968.3,7.50,12.63,270,274,0.00 +2023-04-06T07:00,-7.5,969.0,7.12,12.20,266,270,0.00 +2023-04-06T08:00,-8.0,969.5,7.12,12.27,259,264,0.00 +2023-04-06T09:00,-8.3,970.0,7.04,12.28,259,263,0.00 +2023-04-06T10:00,-8.7,970.6,6.36,11.57,257,264,0.00 +2023-04-06T11:00,-8.8,970.9,6.09,11.29,256,263,0.00 +2023-04-06T12:00,-9.2,971.2,5.56,10.80,262,271,0.00 +2023-04-06T13:00,-8.2,972.2,5.57,10.40,261,270,0.00 +2023-04-06T14:00,-6.3,973.4,5.71,9.42,259,266,0.00 +2023-04-06T15:00,-4.3,974.7,4.74,8.65,252,259,0.00 +2023-04-06T16:00,-2.5,975.8,4.04,5.56,261,262,0.00 +2023-04-06T17:00,-1.8,975.9,3.20,4.30,284,282,0.00 +2023-04-06T18:00,-1.2,975.8,3.00,3.85,296,295,0.00 +2023-04-06T19:00,-0.6,975.9,2.47,3.31,302,299,0.00 +2023-04-06T20:00,-0.0,975.7,1.84,2.36,331,324,0.00 +2023-04-06T21:00,0.5,975.3,2.40,3.13,358,353,0.00 +2023-04-06T22:00,0.6,975.0,3.06,4.18,11,11,0.00 +2023-04-06T23:00,0.2,975.1,3.42,5.06,38,38,0.00 +2023-04-07T00:00,-1.6,975.9,3.32,6.34,46,52,0.00 +2023-04-07T01:00,-3.9,975.7,3.40,7.29,47,57,0.00 +2023-04-07T02:00,-4.5,975.9,3.41,7.29,58,63,0.70 +2023-04-07T03:00,-4.5,976.5,3.14,6.84,59,65,0.40 +2023-04-07T04:00,-5.1,976.6,2.66,6.40,70,76,0.50 +2023-04-07T05:00,-5.4,976.8,2.73,6.48,82,81,0.50 +2023-04-07T06:00,-5.7,976.6,3.11,7.00,86,88,0.00 +2023-04-07T07:00,-6.3,976.6,3.21,7.42,94,94,0.00 +2023-04-07T08:00,-6.1,976.1,3.75,8.12,99,100,0.00 +2023-04-07T09:00,-5.9,976.3,3.65,7.96,99,102,0.00 +2023-04-07T10:00,-5.6,976.4,3.67,7.84,107,109,0.00 +2023-04-07T11:00,-5.8,975.8,3.92,8.60,109,113,0.00 +2023-04-07T12:00,-5.3,976.0,3.81,8.54,104,108,0.00 +2023-04-07T13:00,-4.3,976.3,3.59,7.53,103,109,0.00 +2023-04-07T14:00,-2.5,976.4,4.03,7.00,104,112,0.00 +2023-04-07T15:00,-0.6,976.0,3.18,5.91,103,114,0.00 +2023-04-07T16:00,0.9,975.7,3.01,5.19,96,106,0.00 +2023-04-07T17:00,2.8,975.2,2.82,5.03,96,107,0.00 +2023-04-07T18:00,4.4,974.5,2.60,4.84,92,108,0.00 +2023-04-07T19:00,5.7,973.6,2.33,4.98,80,100,0.00 +2023-04-07T20:00,6.6,972.4,2.35,5.26,78,99,0.00 +2023-04-07T21:00,6.8,971.4,1.99,4.06,72,100,0.00 +2023-04-07T22:00,7.0,970.4,2.22,4.08,54,79,0.00 +2023-04-07T23:00,6.7,969.5,2.91,5.42,49,67,0.00 +2023-04-08T00:00,4.1,970.5,4.63,9.48,33,43,0.00 +2023-04-08T01:00,3.0,970.1,4.46,9.72,44,53,0.00 +2023-04-08T02:00,2.4,970.3,4.34,9.53,61,66,0.00 +2023-04-08T03:00,2.1,970.8,4.88,10.21,67,72,0.00 +2023-04-08T04:00,1.5,970.8,4.96,10.21,71,76,0.00 +2023-04-08T05:00,1.2,970.3,4.59,9.39,74,78,0.00 +2023-04-08T06:00,0.8,970.1,3.86,8.55,80,84,0.00 +2023-04-08T07:00,0.5,970.2,3.69,8.03,77,85,0.00 +2023-04-08T08:00,0.7,969.7,3.55,7.52,80,86,0.00 +2023-04-08T09:00,-1.0,969.1,2.92,6.41,84,94,0.00 +2023-04-08T10:00,-1.9,968.5,2.83,5.66,98,111,0.00 +2023-04-08T11:00,-2.2,968.3,2.69,5.25,112,130,0.00 +2023-04-08T12:00,-1.5,967.7,2.44,6.01,145,184,0.00 +2023-04-08T13:00,1.3,968.5,2.51,6.01,151,183,0.00 +2023-04-08T14:00,3.4,968.8,2.92,6.64,149,174,0.00 +2023-04-08T15:00,5.5,968.8,3.14,7.30,143,167,0.00 +2023-04-08T16:00,7.7,968.7,3.50,7.62,149,166,0.00 +2023-04-08T17:00,9.5,968.3,3.45,7.84,150,163,0.00 +2023-04-08T18:00,10.9,967.7,3.51,7.77,160,168,0.00 +2023-04-08T19:00,12.4,967.3,4.08,8.84,169,175,0.00 +2023-04-08T20:00,13.4,966.6,4.46,9.84,171,175,0.00 +2023-04-08T21:00,13.8,966.1,4.96,10.86,171,174,0.00 +2023-04-08T22:00,13.5,965.5,5.39,11.40,169,172,0.00 +2023-04-08T23:00,12.8,965.3,5.71,11.92,169,172,0.00 +2023-04-09T00:00,12.9,965.1,4.81,10.75,163,168,0.00 +2023-04-09T01:00,12.0,965.2,5.82,11.71,164,169,0.00 +2023-04-09T02:00,11.3,965.3,6.82,12.81,166,170,0.00 +2023-04-09T03:00,10.9,965.8,7.81,14.00,170,173,0.00 +2023-04-09T04:00,10.8,966.4,8.41,14.70,177,179,0.00 +2023-04-09T05:00,10.4,966.4,9.00,15.30,179,181,0.00 +2023-04-09T06:00,9.9,966.7,8.90,15.12,181,183,0.00 +2023-04-09T07:00,9.5,967.3,8.51,14.57,183,186,0.00 +2023-04-09T08:00,9.4,967.5,8.13,13.93,185,188,0.00 +2023-04-09T09:00,9.2,967.6,7.74,13.45,186,189,0.00 +2023-04-09T10:00,8.9,967.8,7.81,13.40,190,192,0.00 +2023-04-09T11:00,8.9,968.0,7.96,13.57,195,197,0.00 +2023-04-09T12:00,8.9,968.4,6.26,11.95,197,199,0.00 +2023-04-09T13:00,9.2,969.1,6.16,11.04,193,196,0.00 +2023-04-09T14:00,9.9,970.0,5.79,9.97,198,201,0.00 +2023-04-09T15:00,11.2,970.4,5.15,8.23,198,201,0.00 +2023-04-09T16:00,11.9,970.7,4.11,6.82,198,202,0.20 +2023-04-09T17:00,13.2,971.3,1.50,2.60,180,196,0.00 +2023-04-09T18:00,15.0,970.7,3.85,4.93,171,174,0.00 +2023-04-09T19:00,13.9,970.9,4.43,6.16,242,238,3.20 +2023-04-09T20:00,11.3,970.1,1.75,4.21,204,208,3.00 +2023-04-09T21:00,10.4,969.2,1.84,3.72,158,186,0.40 +2023-04-09T22:00,11.0,969.2,1.53,0.98,32,114,0.20 +2023-04-09T23:00,8.5,968.9,0.90,2.04,90,191,0.50 +2023-04-10T00:00,10.1,968.2,3.52,7.91,187,196,0.00 +2023-04-10T01:00,9.4,968.3,3.50,7.86,178,195,0.10 +2023-04-10T02:00,8.1,968.3,2.53,5.90,189,182,0.10 +2023-04-10T03:00,8.6,968.7,3.55,7.33,158,169,2.70 +2023-04-10T04:00,9.3,968.6,3.49,7.75,156,156,0.40 +2023-04-10T05:00,7.6,968.5,2.77,6.66,206,188,0.00 +2023-04-10T06:00,7.1,968.6,3.41,7.43,212,204,0.00 +2023-04-10T07:00,6.7,968.7,3.32,7.31,224,220,0.00 +2023-04-10T08:00,5.3,968.5,3.10,6.87,249,254,0.00 +2023-04-10T09:00,4.1,968.1,2.73,5.81,246,267,0.00 +2023-04-10T10:00,2.4,969.0,2.72,6.08,287,306,0.00 +2023-04-10T11:00,1.3,969.1,1.65,3.64,256,307,0.00 +2023-04-10T12:00,1.4,968.9,3.18,4.11,298,334,0.00 +2023-04-10T13:00,5.4,969.8,0.71,1.89,225,328,0.00 +2023-04-10T14:00,7.8,970.6,2.06,1.03,203,209,0.00 +2023-04-10T15:00,12.0,971.5,1.08,1.70,236,225,0.00 +2023-04-10T16:00,15.1,972.4,0.71,0.86,315,306,0.00 +2023-04-10T17:00,17.2,972.6,0.63,0.82,288,284,0.00 +2023-04-10T18:00,18.8,972.4,0.95,1.30,252,247,0.00 +2023-04-10T19:00,20.1,972.0,1.75,2.33,239,239,0.00 +2023-04-10T20:00,20.7,971.8,2.11,2.69,239,239,0.00 +2023-04-10T21:00,21.0,971.3,2.24,2.91,243,243,0.00 +2023-04-10T22:00,20.9,970.8,2.34,3.10,250,249,0.00 +2023-04-10T23:00,19.9,970.4,1.80,3.33,236,237,0.00 +2023-04-11T00:00,16.9,970.3,1.66,1.25,33,29,0.00 +2023-04-11T01:00,13.1,969.3,2.55,2.02,64,70,0.00 +2023-04-11T02:00,10.7,969.1,2.90,2.53,88,99,0.00 +2023-04-11T03:00,8.1,968.7,3.40,3.74,118,124,0.00 +2023-04-11T04:00,8.7,968.6,2.78,5.06,142,150,0.00 +2023-04-11T05:00,8.7,967.8,3.68,7.69,158,159,0.00 +2023-04-11T06:00,9.2,967.5,3.95,9.08,171,169,0.00 +2023-04-11T07:00,9.1,967.3,5.19,10.78,199,207,0.00 +2023-04-11T08:00,9.5,967.3,5.59,11.32,207,212,0.00 +2023-04-11T09:00,9.9,967.1,6.31,12.18,209,214,0.00 +2023-04-11T10:00,10.5,967.1,6.69,12.65,212,215,0.00 +2023-04-11T11:00,10.3,966.9,6.69,12.48,215,218,0.00 +2023-04-11T12:00,10.8,966.7,6.57,12.16,213,216,0.00 +2023-04-11T13:00,12.0,966.8,6.86,12.09,211,214,0.00 +2023-04-11T14:00,14.2,966.8,6.71,13.06,208,213,0.00 +2023-04-11T15:00,16.7,966.4,6.57,9.98,206,209,0.00 +2023-04-11T16:00,19.3,966.0,6.98,9.79,205,207,0.00 +2023-04-11T17:00,21.4,965.5,7.56,10.38,208,209,0.00 +2023-04-11T18:00,22.7,964.7,8.14,11.14,208,208,0.00 +2023-04-11T19:00,23.4,963.9,8.45,11.54,206,207,0.00 +2023-04-11T20:00,23.8,963.1,8.46,11.63,204,205,0.00 +2023-04-11T21:00,24.0,962.3,8.42,11.86,204,204,0.00 +2023-04-11T22:00,23.8,961.5,8.39,12.05,202,203,0.00 +2023-04-11T23:00,23.0,960.9,7.49,11.77,199,201,0.00 +2023-04-12T00:00,22.6,960.1,6.43,11.52,192,196,0.00 +2023-04-12T01:00,21.0,959.3,7.50,13.20,193,196,0.00 +2023-04-12T02:00,20.3,959.1,8.17,14.17,195,198,0.00 +2023-04-12T03:00,19.6,958.9,8.66,14.73,199,202,0.00 +2023-04-12T04:00,19.2,958.2,9.21,15.64,201,203,0.00 +2023-04-12T05:00,19.0,957.8,9.62,15.93,207,208,0.00 +2023-04-12T06:00,18.8,957.5,9.36,15.68,210,212,0.00 +2023-04-12T07:00,18.4,957.2,9.37,15.59,214,215,0.00 +2023-04-12T08:00,17.9,957.0,9.27,15.44,215,217,0.00 +2023-04-12T09:00,17.3,956.6,9.12,15.13,218,219,0.00 +2023-04-12T10:00,16.9,956.3,9.38,15.52,216,218,0.00 +2023-04-12T11:00,16.5,955.8,9.21,15.22,214,217,0.00 +2023-04-12T12:00,15.9,955.5,8.68,14.74,218,221,0.00 +2023-04-12T13:00,16.6,955.4,8.72,14.43,217,219,0.00 +2023-04-12T14:00,18.3,955.5,8.16,15.01,216,219,0.00 +2023-04-12T15:00,20.1,955.6,8.84,12.93,218,219,0.00 +2023-04-12T16:00,21.9,955.5,9.40,13.23,218,219,0.00 +2023-04-12T17:00,23.5,955.6,9.22,12.76,221,221,0.00 +2023-04-12T18:00,24.8,955.4,9.21,12.68,221,221,0.00 +2023-04-12T19:00,25.7,955.1,9.19,12.59,225,226,0.00 +2023-04-12T20:00,26.3,954.7,8.81,12.00,219,220,0.00 +2023-04-12T21:00,26.5,954.4,8.31,11.43,220,220,0.00 +2023-04-12T22:00,26.2,954.1,7.58,10.70,221,222,0.00 +2023-04-12T23:00,25.4,954.0,5.95,9.21,221,221,0.00 +2023-04-13T00:00,24.7,953.5,2.66,6.78,214,217,0.00 +2023-04-13T01:00,21.5,953.2,2.82,7.57,207,209,0.00 +2023-04-13T02:00,17.8,953.6,2.09,3.05,287,229,0.00 +2023-04-13T03:00,15.1,953.8,1.66,3.20,303,219,0.00 +2023-04-13T04:00,13.1,953.4,3.41,7.21,230,209,0.00 +2023-04-13T05:00,18.9,953.9,6.08,11.95,205,204,0.00 +2023-04-13T06:00,20.1,953.8,7.75,13.51,200,200,0.00 +2023-04-13T07:00,18.3,953.3,7.67,13.22,192,194,0.00 +2023-04-13T08:00,17.2,953.0,7.86,13.48,195,197,0.00 +2023-04-13T09:00,17.0,952.5,7.49,13.07,199,201,0.00 +2023-04-13T10:00,16.5,952.6,7.22,12.62,202,204,0.00 +2023-04-13T11:00,16.0,952.4,6.96,12.31,201,204,0.00 +2023-04-13T12:00,16.1,952.4,7.00,12.35,202,205,0.00 +2023-04-13T13:00,16.7,952.3,7.28,12.33,196,198,0.00 +2023-04-13T14:00,18.3,952.4,7.26,13.61,192,194,0.00 +2023-04-13T15:00,19.5,952.4,8.75,12.45,191,192,0.00 +2023-04-13T16:00,20.8,952.3,8.71,12.13,193,193,0.00 +2023-04-13T17:00,22.2,952.2,8.45,11.45,191,192,0.00 +2023-04-13T18:00,23.9,951.5,8.36,11.41,187,188,0.00 +2023-04-13T19:00,25.4,950.5,8.70,11.90,180,181,0.00 +2023-04-13T20:00,26.5,949.8,9.50,13.20,178,179,0.00 +2023-04-13T21:00,27.1,948.9,10.30,14.61,181,182,0.00 +2023-04-13T22:00,26.9,948.4,10.01,14.63,183,184,0.00 +2023-04-13T23:00,25.7,948.4,8.70,13.41,181,182,0.00 +2023-04-14T00:00,24.8,948.3,8.04,13.42,174,177,0.00 +2023-04-14T01:00,23.1,948.4,8.41,14.20,177,179,0.00 +2023-04-14T02:00,21.9,948.7,8.71,14.50,178,180,0.00 +2023-04-14T03:00,20.8,949.2,8.80,14.73,181,184,0.00 +2023-04-14T04:00,20.0,949.5,8.95,14.93,186,188,0.00 +2023-04-14T05:00,19.2,949.5,9.06,14.98,186,189,0.00 +2023-04-14T06:00,18.4,949.5,9.08,14.99,188,189,0.00 +2023-04-14T07:00,17.7,949.7,8.40,14.14,189,191,0.00 +2023-04-14T08:00,16.8,949.9,7.59,12.83,193,195,0.00 +2023-04-14T09:00,15.9,949.5,7.30,12.59,189,192,0.00 +2023-04-14T10:00,15.5,949.9,7.14,12.35,191,194,0.00 +2023-04-14T11:00,15.1,950.2,7.12,12.22,191,193,0.00 +2023-04-14T12:00,15.9,950.6,6.75,11.62,192,195,0.00 +2023-04-14T13:00,16.3,950.8,6.87,11.41,188,191,0.00 +2023-04-14T14:00,18.0,951.2,5.85,10.28,188,191,0.00 +2023-04-14T15:00,19.7,951.4,6.45,8.95,193,194,0.00 +2023-04-14T16:00,20.9,951.5,6.51,8.66,198,199,0.00 +2023-04-14T17:00,21.9,951.7,6.20,8.16,198,199,0.00 +2023-04-14T18:00,23.8,951.6,7.08,9.33,199,199,0.00 +2023-04-14T19:00,24.5,951.3,5.95,8.01,209,208,0.00 +2023-04-14T20:00,21.2,951.5,4.39,5.45,319,317,0.10 +2023-04-14T21:00,18.1,951.9,5.39,7.27,345,342,0.00 +2023-04-14T22:00,17.6,952.3,6.66,8.95,334,335,0.00 +2023-04-14T23:00,15.5,952.8,6.51,8.89,342,341,0.00 +2023-04-15T00:00,10.9,954.4,6.26,8.98,340,341,1.80 +2023-04-15T01:00,9.5,954.2,6.57,9.77,347,346,0.10 +2023-04-15T02:00,8.4,955.0,6.21,9.80,345,346,0.30 +2023-04-15T03:00,7.3,955.7,6.71,10.38,333,335,4.30 +2023-04-15T04:00,6.2,956.8,6.19,9.80,329,331,13.50 +2023-04-15T05:00,5.4,957.2,5.99,9.64,327,329,8.90 +2023-04-15T06:00,4.9,957.1,6.44,9.85,327,327,0.10 +2023-04-15T07:00,4.2,957.4,6.66,10.46,327,328,0.00 +2023-04-15T08:00,3.8,957.4,6.66,10.42,332,333,0.00 +2023-04-15T09:00,3.8,957.5,6.53,10.34,335,335,0.00 +2023-04-15T10:00,3.7,957.9,7.16,10.47,333,334,0.00 +2023-04-15T11:00,3.4,958.2,7.42,10.78,334,335,0.00 +2023-04-15T12:00,3.5,958.1,5.54,8.80,321,324,0.00 +2023-04-15T13:00,3.5,958.8,6.82,10.22,321,323,1.00 +2023-04-15T14:00,3.4,959.0,7.42,10.82,316,317,0.80 +2023-04-15T15:00,3.4,959.0,7.88,11.26,324,325,0.10 +2023-04-15T16:00,3.4,959.7,7.40,10.48,322,322,0.10 +2023-04-15T17:00,3.1,960.3,7.44,10.74,324,324,0.40 +2023-04-15T18:00,3.1,960.4,7.85,11.30,329,329,0.40 +2023-04-15T19:00,3.5,960.7,7.96,11.15,325,326,0.30 +2023-04-15T20:00,3.9,961.7,8.29,11.48,318,319,0.10 +2023-04-15T21:00,2.9,961.9,8.35,11.98,318,319,0.40 +2023-04-15T22:00,2.1,962.0,8.35,12.11,318,318,0.30 +2023-04-15T23:00,1.5,961.5,8.10,12.26,327,328,0.30 +2023-04-16T00:00,1.4,961.4,9.01,13.18,326,327,0.10 +2023-04-16T01:00,1.2,961.7,8.49,12.48,326,326,0.00 +2023-04-16T02:00,0.9,961.2,8.14,12.02,323,324,0.00 +2023-04-16T03:00,0.7,961.5,8.70,12.78,322,323,0.10 +2023-04-16T04:00,0.4,961.3,8.25,12.24,321,322,0.30 +2023-04-16T05:00,0.2,961.6,7.51,11.14,318,320,0.80 +2023-04-16T06:00,-0.0,961.4,7.29,10.91,318,319,1.30 +2023-04-16T07:00,-0.2,961.3,8.28,12.30,323,324,1.30 +2023-04-16T08:00,-0.6,960.4,8.98,13.44,322,323,1.40 +2023-04-16T09:00,-0.9,960.0,8.84,13.36,322,323,1.10 +2023-04-16T10:00,-1.2,959.9,8.61,12.84,321,323,1.20 +2023-04-16T11:00,-1.6,960.0,8.10,11.99,325,325,1.30 +2023-04-16T12:00,-1.4,959.0,9.16,13.68,324,324,1.50 +2023-04-16T13:00,-1.3,959.4,9.32,13.79,327,328,0.50 +2023-04-16T14:00,-1.4,959.3,10.46,15.33,328,329,0.30 +2023-04-16T15:00,-1.4,959.4,11.12,16.14,327,327,0.40 +2023-04-16T16:00,-1.5,960.0,11.04,16.03,326,327,0.60 +2023-04-16T17:00,-0.8,960.5,11.87,17.03,327,328,0.70 +2023-04-16T18:00,-0.6,960.9,11.87,17.23,327,327,1.00 +2023-04-16T19:00,-0.0,961.0,10.90,15.95,325,325,0.90 +2023-04-16T20:00,1.0,960.8,11.79,17.03,325,325,0.40 +2023-04-16T21:00,1.7,960.5,8.60,13.01,324,325,0.30 +2023-04-16T22:00,2.9,960.3,8.87,13.71,330,330,0.10 +2023-04-16T23:00,3.5,960.3,9.22,14.58,331,332,0.00 +2023-04-17T00:00,3.2,960.4,9.79,15.47,333,334,0.00 +2023-04-17T01:00,2.3,960.4,9.37,15.29,326,328,0.00 +2023-04-17T02:00,1.8,960.5,9.32,15.37,325,326,0.00 +2023-04-17T03:00,1.3,960.4,9.14,15.13,318,321,0.00 +2023-04-17T04:00,1.0,960.3,9.14,15.21,319,321,0.00 +2023-04-17T05:00,0.7,960.2,9.08,15.09,319,321,0.00 +2023-04-17T06:00,0.4,960.2,9.20,15.25,318,320,0.00 +2023-04-17T07:00,0.1,960.4,8.34,14.10,322,324,0.00 +2023-04-17T08:00,-0.4,960.4,7.70,13.07,322,325,0.00 +2023-04-17T09:00,-0.8,960.6,7.66,12.98,319,323,0.00 +2023-04-17T10:00,-1.2,960.7,7.51,12.79,318,321,0.00 +2023-04-17T11:00,-1.6,960.8,7.30,12.59,319,321,0.00 +2023-04-17T12:00,-1.0,960.3,7.76,13.04,322,324,0.00 +2023-04-17T13:00,-0.7,960.7,7.16,12.09,324,326,0.00 +2023-04-17T14:00,0.4,961.2,5.90,10.02,321,324,0.00 +2023-04-17T15:00,2.7,961.7,7.43,10.13,317,319,0.00 +2023-04-17T16:00,4.1,961.9,7.42,9.97,316,316,0.00 +2023-04-17T17:00,5.6,961.9,7.22,9.62,313,313,0.00 +2023-04-17T18:00,7.0,961.7,7.16,9.42,311,312,0.00 +2023-04-17T19:00,8.2,961.5,6.80,8.93,311,311,0.00 +2023-04-17T20:00,9.2,961.0,6.66,8.85,311,312,0.00 +2023-04-17T21:00,9.8,960.4,6.37,8.42,316,316,0.00 +2023-04-17T22:00,9.9,960.2,5.98,7.96,322,321,0.00 +2023-04-17T23:00,9.5,960.0,5.16,7.10,324,325,0.00 +2023-04-18T00:00,7.3,960.2,3.49,6.62,333,333,0.00 +2023-04-18T01:00,5.0,959.8,3.07,7.02,341,343,0.00 +2023-04-18T02:00,3.3,960.2,3.10,7.38,339,344,0.00 +2023-04-18T03:00,2.0,960.4,2.55,6.43,334,345,0.00 +2023-04-18T04:00,0.4,960.6,2.15,5.53,338,354,0.00 +2023-04-18T05:00,-0.7,960.5,2.60,5.20,337,360,0.00 +2023-04-18T06:00,-1.5,960.2,3.14,4.72,338,5,0.00 +2023-04-18T07:00,-1.8,960.2,3.21,4.49,356,17,0.00 +2023-04-18T08:00,-1.6,960.1,2.38,4.94,22,36,0.00 +2023-04-18T09:00,-2.1,959.9,2.30,5.19,56,65,0.00 +2023-04-18T10:00,-1.8,960.2,2.21,5.97,85,81,0.00 +2023-04-18T11:00,-1.2,960.4,3.00,6.95,88,83,0.00 +2023-04-18T12:00,-1.3,960.4,3.21,7.33,95,95,0.00 +2023-04-18T13:00,0.7,961.5,3.42,6.58,105,107,0.00 +2023-04-18T14:00,3.2,962.4,3.18,4.92,114,117,0.00 +2023-04-18T15:00,5.7,962.4,4.12,5.41,113,115,0.00 +2023-04-18T16:00,7.6,962.3,5.29,6.85,112,113,0.00 +2023-04-18T17:00,9.3,962.0,5.64,7.29,117,119,0.00 +2023-04-18T18:00,10.8,961.5,5.91,7.57,118,119,0.00 +2023-04-18T19:00,12.1,960.4,6.33,8.18,121,123,0.00 +2023-04-18T20:00,13.0,959.5,6.74,8.90,122,123,0.00 +2023-04-18T21:00,13.5,958.6,6.85,9.13,124,125,0.00 +2023-04-18T22:00,13.5,957.6,7.03,9.55,120,121,0.00 +2023-04-18T23:00,13.1,957.1,7.16,10.15,117,118,0.00 +2023-04-19T00:00,12.2,957.0,6.20,10.40,111,113,0.00 +2023-04-19T01:00,11.0,956.6,6.74,11.35,105,108,0.00 +2023-04-19T02:00,10.0,956.9,7.08,11.94,113,115,0.00 +2023-04-19T03:00,9.7,957.4,7.29,12.13,117,119,0.00 +2023-04-19T04:00,9.0,957.1,7.69,12.68,116,120,0.00 +2023-04-19T05:00,8.3,955.9,8.37,13.55,115,117,0.00 +2023-04-19T06:00,7.9,955.0,8.59,13.98,118,120,0.10 +2023-04-19T07:00,7.5,954.3,8.38,13.67,126,128,0.00 +2023-04-19T08:00,7.6,953.6,8.31,13.45,130,133,0.00 +2023-04-19T09:00,7.5,952.5,9.43,14.85,131,134,0.10 +2023-04-19T10:00,7.4,952.0,8.62,13.74,128,131,0.00 +2023-04-19T11:00,7.1,952.2,6.85,11.40,124,128,11.50 +2023-04-19T12:00,4.9,952.4,9.40,15.16,125,126,2.00 +2023-04-19T13:00,5.5,953.1,7.81,12.56,130,130,0.00 +2023-04-19T14:00,7.1,954.2,6.32,9.32,125,125,0.00 +2023-04-19T15:00,9.7,955.0,4.52,6.08,125,126,0.00 +2023-04-19T16:00,12.1,955.2,4.15,5.22,105,107,0.00 +2023-04-19T17:00,14.3,955.1,4.55,5.71,99,101,0.00 +2023-04-19T18:00,16.1,955.0,4.93,6.35,96,97,0.00 +2023-04-19T19:00,17.1,954.5,5.31,6.70,87,88,0.00 +2023-04-19T20:00,18.3,954.1,5.60,7.21,92,92,0.00 +2023-04-19T21:00,17.8,953.3,6.40,8.49,80,82,0.00 +2023-04-19T22:00,16.2,953.4,7.33,10.02,85,86,0.10 +2023-04-19T23:00,13.3,954.0,6.38,9.37,76,79,1.20 +2023-04-20T00:00,7.5,956.0,8.01,11.81,41,43,0.20 +2023-04-20T01:00,6.2,956.1,7.07,10.92,63,65,1.30 +2023-04-20T02:00,5.3,955.6,7.74,12.22,65,65,0.10 +2023-04-20T03:00,4.8,956.1,7.07,10.91,61,64,0.00 +2023-04-20T04:00,4.5,956.5,6.02,9.33,54,59,0.10 +2023-04-20T05:00,4.1,956.4,5.25,7.92,50,53,0.20 +2023-04-20T06:00,3.7,955.8,5.11,8.40,31,38,0.80 +2023-04-20T07:00,3.4,956.0,5.23,8.54,26,35,0.20 +2023-04-20T08:00,3.0,955.6,5.59,8.99,27,35,0.10 +2023-04-20T09:00,2.6,954.7,6.41,10.42,34,41,0.20 +2023-04-20T10:00,2.5,954.4,5.39,9.21,31,41,0.20 +2023-04-20T11:00,2.5,954.6,4.81,7.48,12,23,0.90 +2023-04-20T12:00,2.5,955.5,4.30,6.45,3,7,0.40 +2023-04-20T13:00,2.4,955.1,4.84,6.97,7,8,3.00 +2023-04-20T14:00,2.3,954.0,5.35,7.71,21,23,2.40 +2023-04-20T15:00,2.3,953.3,4.04,5.73,351,354,3.80 +2023-04-20T16:00,2.0,954.9,4.69,6.57,304,303,2.70 +2023-04-20T17:00,1.6,954.5,5.97,9.36,310,311,1.30 +2023-04-20T18:00,2.2,955.1,6.32,8.96,305,305,0.40 +2023-04-20T19:00,2.2,955.5,7.38,10.52,298,299,0.20 +2023-04-20T20:00,4.0,955.9,8.18,11.45,297,297,0.10 +2023-04-20T21:00,4.3,956.5,8.62,12.05,292,293,0.10 +2023-04-20T22:00,3.6,957.5,8.88,12.61,284,285,0.20 +2023-04-20T23:00,3.8,958.3,8.49,12.23,278,278,0.10 +2023-04-21T00:00,4.8,958.4,7.43,11.25,275,276,0.00 +2023-04-21T01:00,4.7,958.5,5.41,8.64,274,275,0.00 +2023-04-21T02:00,3.8,958.3,4.40,7.91,270,273,0.00 +2023-04-21T03:00,2.3,958.0,4.03,8.10,263,270,0.00 +2023-04-21T04:00,1.9,958.4,4.77,9.01,260,267,0.00 +2023-04-21T05:00,1.9,958.3,5.94,10.49,257,262,0.00 +2023-04-21T06:00,1.8,958.4,7.22,11.89,260,263,0.00 +2023-04-21T07:00,1.7,958.8,7.08,11.50,251,255,0.00 +2023-04-21T08:00,1.1,958.7,6.35,10.72,244,248,0.00 +2023-04-21T09:00,0.7,958.1,6.85,11.39,247,250,0.00 +2023-04-21T10:00,0.4,957.7,7.12,11.67,253,256,0.00 +2023-04-21T11:00,0.6,957.2,7.06,11.28,254,257,0.00 +2023-04-21T12:00,0.8,956.8,6.50,9.90,268,271,0.00 +2023-04-21T13:00,1.2,957.3,7.26,10.34,277,279,0.00 +2023-04-21T14:00,1.8,957.4,7.59,10.50,283,284,0.00 +2023-04-21T15:00,2.3,957.4,8.49,11.59,291,291,0.10 +2023-04-21T16:00,2.4,958.0,8.88,12.05,293,293,0.00 +2023-04-21T17:00,2.8,958.4,8.56,11.52,293,293,0.00 +2023-04-21T18:00,2.8,958.6,8.29,11.07,290,290,0.30 +2023-04-21T19:00,3.8,958.8,8.52,11.33,286,286,0.20 +2023-04-21T20:00,3.8,959.0,8.54,11.48,288,288,0.20 +2023-04-21T21:00,3.6,959.0,8.38,11.42,287,287,0.10 +2023-04-21T22:00,3.2,959.1,8.42,11.42,300,300,0.20 +2023-04-21T23:00,2.9,959.5,7.22,9.94,307,306,0.10 +2023-04-22T00:00,0.9,959.5,7.26,10.24,308,309,0.10 +2023-04-22T01:00,0.2,959.6,6.88,9.88,306,306,0.10 +2023-04-22T02:00,-0.4,960.1,6.33,9.58,309,310,0.10 +2023-04-22T03:00,-0.7,960.7,7.01,10.47,312,313,0.20 +2023-04-22T04:00,-1.1,960.7,6.73,10.40,312,313,0.10 +2023-04-22T05:00,-1.7,960.7,6.37,10.07,318,319,0.00 +2023-04-22T06:00,-1.5,961.2,6.30,9.71,317,319,0.10 +2023-04-22T07:00,-1.3,961.2,6.92,10.24,323,324,0.10 +2023-04-22T08:00,-1.5,961.4,7.32,10.87,325,326,0.10 +2023-04-22T09:00,-1.6,961.4,7.93,11.73,326,328,0.10 +2023-04-22T10:00,-1.8,962.2,8.54,12.43,327,328,0.00 +2023-04-22T11:00,-2.0,962.7,7.91,11.76,325,326,0.00 +2023-04-22T12:00,-1.5,962.8,8.63,12.66,333,334,0.00 +2023-04-22T13:00,-1.3,963.4,9.45,13.54,337,337,0.00 +2023-04-22T14:00,-0.7,963.9,9.97,13.84,339,339,0.00 +2023-04-22T15:00,0.5,964.2,9.66,13.30,339,339,0.00 +2023-04-22T16:00,1.3,964.5,9.60,13.09,338,338,0.00 +2023-04-22T17:00,2.6,964.9,9.48,12.80,335,335,0.00 +2023-04-22T18:00,2.9,964.8,9.44,12.88,333,333,0.00 +2023-04-22T19:00,3.8,965.1,9.14,12.23,330,330,0.00 +2023-04-22T20:00,3.4,965.3,8.27,11.23,325,326,0.00 +2023-04-22T21:00,3.3,965.4,7.96,10.76,325,325,0.00 +2023-04-22T22:00,3.4,965.2,7.85,10.79,326,326,0.00 +2023-04-22T23:00,3.4,965.4,7.58,10.50,329,329,0.00 +2023-04-23T00:00,2.0,965.7,7.16,10.11,332,332,0.00 +2023-04-23T01:00,1.4,966.1,6.35,9.21,334,334,0.00 +2023-04-23T02:00,0.7,966.8,5.29,7.95,338,339,0.00 +2023-04-23T03:00,0.4,967.2,4.88,7.45,337,338,0.00 +2023-04-23T04:00,-0.2,967.3,4.57,7.00,337,338,0.00 +2023-04-23T05:00,-0.6,967.2,4.22,6.85,329,331,0.00 +2023-04-23T06:00,-1.8,967.0,3.41,6.55,320,326,0.00 +2023-04-23T07:00,-2.7,966.8,2.83,6.28,315,323,0.00 +2023-04-23T08:00,-3.3,966.6,2.48,5.75,310,320,0.00 +2023-04-23T09:00,-4.1,966.6,2.08,5.09,305,315,0.00 +2023-04-23T10:00,-4.3,966.9,2.15,5.03,298,311,0.00 +2023-04-23T11:00,-4.3,967.1,2.38,5.33,292,304,0.00 +2023-04-23T12:00,-4.0,967.5,3.13,5.94,297,306,0.00 +2023-04-23T13:00,-2.2,968.2,3.36,5.05,300,304,0.00 +2023-04-23T14:00,-0.6,968.6,4.03,5.30,314,314,0.00 +2023-04-23T15:00,1.0,968.8,4.81,6.16,317,317,0.00 +2023-04-23T16:00,2.2,969.0,5.42,6.98,322,322,0.00 +2023-04-23T17:00,3.9,968.8,5.72,7.36,324,323,0.00 +2023-04-23T18:00,5.0,968.3,5.89,7.53,320,320,0.00 +2023-04-23T19:00,6.0,968.0,5.81,7.37,312,312,0.00 +2023-04-23T20:00,5.8,967.7,5.33,6.85,304,304,0.00 +2023-04-23T21:00,6.0,967.1,5.06,6.67,300,300,0.00 +2023-04-23T22:00,6.2,967.1,5.27,7.02,303,303,0.00 +2023-04-23T23:00,5.9,967.3,4.98,6.64,308,307,0.00 +2023-04-24T00:00,5.8,967.0,3.48,5.25,321,320,0.00 +2023-04-24T01:00,4.3,967.1,2.33,4.85,10,8,0.00 +2023-04-24T02:00,1.4,967.0,1.92,4.65,39,28,0.00 +2023-04-24T03:00,-0.8,966.9,2.98,3.74,50,34,0.00 +2023-04-24T04:00,1.5,967.4,1.99,2.36,72,36,0.00 +2023-04-24T05:00,1.8,967.4,1.25,1.70,119,50,0.00 +2023-04-24T06:00,-1.5,966.7,1.60,2.18,180,164,0.00 +2023-04-24T07:00,-1.5,966.4,2.65,4.46,191,189,0.00 +2023-04-24T08:00,-0.9,966.3,2.67,5.36,193,194,0.00 +2023-04-24T09:00,-1.2,966.2,2.91,6.43,196,192,0.00 +2023-04-24T10:00,-1.4,966.4,3.00,6.56,206,201,0.00 +2023-04-24T11:00,-1.9,966.7,2.33,6.08,223,216,0.00 +2023-04-24T12:00,-2.4,967.1,1.30,1.39,328,330,0.00 +2023-04-24T13:00,0.3,968.2,2.70,4.47,360,10,0.00 +2023-04-24T14:00,2.7,969.1,2.72,4.37,17,20,0.00 +2023-04-24T15:00,5.0,969.1,3.47,4.41,33,33,0.00 +2023-04-24T16:00,6.6,969.0,3.00,3.72,37,36,0.00 +2023-04-24T17:00,7.8,969.0,2.56,3.00,31,30,0.00 +2023-04-24T18:00,8.8,968.5,2.16,2.45,13,12,0.00 +2023-04-24T19:00,9.6,968.0,2.33,2.75,329,327,0.00 +2023-04-24T20:00,9.6,967.5,2.68,3.22,333,330,0.00 +2023-04-24T21:00,9.8,967.1,3.20,3.90,340,337,0.00 +2023-04-24T22:00,9.5,967.1,4.10,5.04,347,346,0.00 +2023-04-24T23:00,9.0,967.0,4.40,5.61,359,357,0.00 +2023-04-25T00:00,7.0,967.2,4.49,6.11,21,21,0.00 +2023-04-25T01:00,5.1,967.1,2.91,6.08,27,25,0.00 +2023-04-25T02:00,3.2,967.5,3.91,7.92,32,37,0.00 +2023-04-25T03:00,2.2,968.0,3.96,8.15,45,48,0.00 +2023-04-25T04:00,1.4,968.2,3.72,8.02,54,57,0.00 +2023-04-25T05:00,0.6,968.3,3.50,7.74,59,63,0.00 +2023-04-25T06:00,-0.0,968.4,3.27,7.47,67,70,0.00 +2023-04-25T07:00,-0.6,968.3,3.29,7.57,70,75,0.00 +2023-04-25T08:00,-1.1,968.6,3.11,7.30,86,91,0.00 +2023-04-25T09:00,-1.7,968.7,2.73,6.81,82,87,0.00 +2023-04-25T10:00,-2.2,968.9,2.82,6.75,73,83,0.00 +2023-04-25T11:00,-2.6,969.3,2.57,6.43,77,85,0.00 +2023-04-25T12:00,-1.7,969.9,2.85,6.08,72,81,0.00 +2023-04-25T13:00,0.6,971.0,3.31,6.58,61,73,0.00 +2023-04-25T14:00,2.5,971.7,4.03,5.48,67,69,0.00 +2023-04-25T15:00,4.7,971.9,4.62,6.04,72,74,0.00 +2023-04-25T16:00,6.2,972.1,5.17,6.62,75,75,0.00 +2023-04-25T17:00,7.2,972.3,4.87,6.23,71,71,0.00 +2023-04-25T18:00,7.9,971.9,4.70,6.00,66,66,0.00 +2023-04-25T19:00,8.5,971.7,4.61,5.73,66,65,0.00 +2023-04-25T20:00,9.0,971.5,4.25,5.42,66,67,0.00 +2023-04-25T21:00,9.1,971.4,4.07,5.06,65,65,0.00 +2023-04-25T22:00,9.0,970.9,3.89,4.97,64,65,0.00 +2023-04-25T23:00,8.5,971.0,3.81,4.79,67,67,0.00 +2023-04-26T00:00,7.7,971.0,3.45,4.79,60,61,0.00 +2023-04-26T01:00,5.6,971.0,2.30,5.25,56,59,0.00 +2023-04-26T02:00,3.8,971.3,2.42,5.92,66,68,0.00 +2023-04-26T03:00,2.3,971.4,2.15,5.44,68,73,0.00 +2023-04-26T04:00,1.3,971.5,2.10,5.60,65,71,0.00 +2023-04-26T05:00,1.2,971.5,2.73,6.66,82,82,0.00 +2023-04-26T06:00,1.2,971.6,2.90,6.90,92,92,0.00 +2023-04-26T07:00,0.6,971.4,2.92,6.96,96,97,0.00 +2023-04-26T08:00,-0.1,971.3,2.98,7.23,104,104,0.00 +2023-04-26T09:00,-0.6,971.0,2.87,6.89,119,114,0.00 +2023-04-26T10:00,-0.3,971.3,3.24,7.19,124,122,0.00 +2023-04-26T11:00,-0.6,971.2,2.98,6.94,130,126,0.00 +2023-04-26T12:00,-0.4,971.4,2.92,6.34,128,128,0.00 +2023-04-26T13:00,2.1,972.1,2.97,6.30,132,137,0.00 +2023-04-26T14:00,4.3,972.0,2.94,4.49,145,148,0.00 +2023-04-26T15:00,4.6,971.6,2.55,3.62,154,156,0.00 +2023-04-26T16:00,7.4,971.5,3.26,4.15,162,165,0.00 +2023-04-26T17:00,8.9,970.9,3.29,4.33,160,161,0.00 +2023-04-26T18:00,9.2,969.8,3.92,5.25,161,162,0.00 +2023-04-26T19:00,12.4,969.0,4.55,5.76,171,172,0.00 +2023-04-26T20:00,13.8,968.1,5.30,6.90,180,182,0.00 +2023-04-26T21:00,15.6,966.8,5.66,7.41,188,190,0.00 +2023-04-26T22:00,16.1,965.5,6.66,9.08,208,208,0.00 +2023-04-26T23:00,15.4,964.8,6.31,9.21,205,207,0.00 +2023-04-27T00:00,14.7,963.5,4.77,8.24,170,174,0.00 +2023-04-27T01:00,13.4,962.4,5.94,10.39,167,169,0.00 +2023-04-27T02:00,11.9,961.5,5.97,10.94,171,175,0.00 +2023-04-27T03:00,11.6,961.3,7.06,12.53,187,191,0.00 +2023-04-27T04:00,11.9,960.9,7.98,13.57,195,197,0.00 +2023-04-27T05:00,11.8,960.5,8.01,13.51,204,205,0.00 +2023-04-27T06:00,11.8,960.4,8.01,13.36,209,211,0.00 +2023-04-27T07:00,11.9,959.8,7.46,12.54,212,214,0.00 +2023-04-27T08:00,11.4,959.5,7.77,13.01,212,215,0.00 +2023-04-27T09:00,11.3,958.9,8.18,13.40,215,218,0.00 +2023-04-27T10:00,11.0,958.8,8.16,13.52,216,218,0.00 +2023-04-27T11:00,10.7,958.7,7.96,13.25,219,221,0.00 +2023-04-27T12:00,10.9,958.1,5.80,10.33,225,227,0.00 +2023-04-27T13:00,11.8,958.4,5.59,9.19,224,225,0.00 +2023-04-27T14:00,13.4,958.1,4.69,6.94,220,221,0.00 +2023-04-27T15:00,15.0,957.6,5.42,7.54,218,219,0.00 +2023-04-27T16:00,16.8,957.2,7.06,9.75,218,219,0.00 +2023-04-27T17:00,17.7,956.8,8.46,11.80,215,216,0.00 +2023-04-27T18:00,18.9,956.3,8.35,11.40,214,215,0.00 +2023-04-27T19:00,19.4,955.9,7.79,10.59,213,214,0.00 +2023-04-27T20:00,19.0,955.6,7.41,10.18,215,215,0.00 +2023-04-27T21:00,17.9,955.2,5.03,7.80,221,221,0.00 +2023-04-27T22:00,17.8,954.6,4.24,6.58,223,223,0.00 +2023-04-27T23:00,17.8,954.7,4.36,6.99,212,214,0.00 +2023-04-28T00:00,16.2,954.5,3.41,6.41,175,184,0.00 +2023-04-28T01:00,14.1,954.7,2.30,5.55,178,194,0.10 +2023-04-28T02:00,12.8,955.5,3.60,7.63,270,265,0.00 +2023-04-28T03:00,11.3,956.2,3.20,6.51,272,266,0.30 +2023-04-28T04:00,10.6,956.3,2.50,6.00,268,268,0.40 +2023-04-28T05:00,10.6,956.4,2.33,5.72,245,251,0.20 +2023-04-28T06:00,10.2,956.4,1.24,3.62,194,231,0.50 +2023-04-28T07:00,9.7,956.6,0.94,1.93,148,201,0.70 +2023-04-28T08:00,9.4,956.4,1.63,2.25,133,159,0.60 +2023-04-28T09:00,9.2,956.8,1.22,1.24,125,166,0.60 +2023-04-28T10:00,8.8,957.5,0.81,1.70,330,320,0.70 +2023-04-28T11:00,8.4,957.8,2.14,4.04,11,9,0.40 +2023-04-28T12:00,8.1,958.6,4.16,6.46,325,338,0.50 +2023-04-28T13:00,7.8,959.7,6.18,9.60,346,352,0.40 +2023-04-28T14:00,7.6,960.5,6.34,10.20,354,359,0.50 +2023-04-28T15:00,7.2,961.4,6.74,10.31,339,342,0.60 +2023-04-28T16:00,7.2,962.2,6.74,9.90,342,344,0.30 +2023-04-28T17:00,7.6,962.6,7.38,10.36,347,347,0.00 +2023-04-28T18:00,8.3,962.7,8.04,11.34,349,348,0.00 +2023-04-28T19:00,9.5,962.7,8.56,11.86,346,346,0.00 +2023-04-28T20:00,10.3,962.7,8.22,11.19,342,341,0.10 +2023-04-28T21:00,9.6,962.9,7.53,10.37,341,341,0.00 +2023-04-28T22:00,9.3,963.1,6.99,9.77,336,337,0.00 +2023-04-28T23:00,9.2,963.2,6.59,9.15,338,338,0.00 +2023-04-29T00:00,9.9,962.8,5.46,7.83,346,346,0.00 +2023-04-29T01:00,8.2,962.4,2.97,6.10,340,342,0.00 +2023-04-29T02:00,6.9,962.3,3.70,7.93,322,326,0.00 +2023-04-29T03:00,7.2,962.8,4.77,8.78,327,330,0.00 +2023-04-29T04:00,5.9,962.5,4.11,8.16,319,324,0.00 +2023-04-29T05:00,5.4,961.9,4.11,8.22,311,319,0.00 +2023-04-29T06:00,4.9,961.4,3.69,7.52,311,319,0.00 +2023-04-29T07:00,3.1,960.5,2.36,5.88,306,325,0.00 +2023-04-29T08:00,2.4,960.2,3.07,6.66,289,306,0.00 +2023-04-29T09:00,2.5,960.0,3.73,7.91,290,302,0.00 +2023-04-29T10:00,2.5,959.6,3.67,7.82,296,305,0.00 +2023-04-29T11:00,2.2,959.1,3.50,7.61,301,309,0.00 +2023-04-29T12:00,2.9,959.1,3.94,7.71,306,314,0.00 +2023-04-29T13:00,4.8,959.1,3.89,7.79,299,312,0.00 +2023-04-29T14:00,7.0,959.1,4.40,6.03,309,310,0.00 +2023-04-29T15:00,8.2,958.9,5.19,6.85,326,326,0.00 +2023-04-29T16:00,9.5,958.7,6.36,8.19,341,340,0.00 +2023-04-29T17:00,9.8,958.2,6.24,8.13,344,344,0.00 +2023-04-29T18:00,9.8,957.9,6.61,8.66,342,341,0.00 +2023-04-29T19:00,10.1,957.9,7.34,9.71,336,335,0.10 +2023-04-29T20:00,10.5,957.8,8.05,10.78,335,335,0.00 +2023-04-29T21:00,10.9,957.5,7.88,10.69,331,332,0.00 +2023-04-29T22:00,10.9,957.0,8.47,11.56,337,337,0.00 +2023-04-29T23:00,10.5,956.9,8.01,11.23,332,333,0.10 +2023-04-30T00:00,9.4,957.0,8.50,12.12,333,334,0.00 +2023-04-30T01:00,8.3,957.2,6.72,10.55,337,338,0.00 +2023-04-30T02:00,7.0,957.4,6.44,10.61,334,336,0.00 +2023-04-30T03:00,5.9,957.7,6.85,11.18,331,332,0.00 +2023-04-30T04:00,5.0,957.6,6.71,11.13,327,329,0.00 +2023-04-30T05:00,4.1,957.4,6.97,11.50,321,323,0.00 +2023-04-30T06:00,3.6,957.5,7.18,11.73,325,328,0.00 +2023-04-30T07:00,3.2,957.0,7.16,11.80,327,329,0.00 +2023-04-30T08:00,2.7,956.9,7.63,12.35,326,328,0.00 +2023-04-30T09:00,2.4,956.9,8.07,12.93,326,328,0.00 +2023-04-30T10:00,2.1,956.9,8.41,13.36,328,329,0.00 +2023-04-30T11:00,1.8,957.3,8.88,14.02,329,331,0.00 +2023-04-30T12:00,2.4,956.9,9.98,15.38,332,333,0.00 +2023-04-30T13:00,3.6,957.3,9.95,14.77,330,331,0.00 +2023-04-30T14:00,4.8,957.6,11.76,16.73,334,335,0.00 +2023-04-30T15:00,6.1,957.6,13.19,18.44,341,342,0.00 +2023-04-30T16:00,6.8,957.7,12.72,17.72,339,340,0.00 +2023-04-30T17:00,7.9,957.7,12.48,17.38,338,339,0.00 +2023-04-30T18:00,9.6,957.8,12.35,17.12,339,339,0.00 +2023-04-30T19:00,9.7,957.7,12.46,17.35,337,337,0.00 +2023-04-30T20:00,10.2,957.8,13.17,18.48,339,339,0.00 +2023-04-30T21:00,10.5,958.0,12.82,18.13,344,344,0.00 +2023-04-30T22:00,10.3,958.3,12.81,18.28,341,341,0.00 +2023-04-30T23:00,9.6,958.9,10.49,15.08,338,338,0.00 +2023-05-01T00:00,9.7,958.3,9.71,14.49,332,334,0.00 +2023-05-01T01:00,8.6,958.4,8.99,13.87,331,333,0.00 +2023-05-01T02:00,7.6,958.7,8.05,12.93,333,335,0.00 +2023-05-01T03:00,6.9,958.9,7.69,12.62,334,336,0.00 +2023-05-01T04:00,6.2,959.0,6.80,11.52,336,337,0.00 +2023-05-01T05:00,5.5,958.9,6.54,11.18,331,333,0.00 +2023-05-01T06:00,4.8,958.8,6.77,11.49,326,329,0.00 +2023-05-01T07:00,4.3,958.8,6.91,11.77,326,328,0.00 +2023-05-01T08:00,3.8,958.8,6.91,11.77,329,331,0.00 +2023-05-01T09:00,3.3,958.8,6.50,11.18,329,332,0.00 +2023-05-01T10:00,2.7,958.9,6.24,10.83,328,331,0.00 +2023-05-01T11:00,2.1,959.1,6.58,11.21,324,327,0.00 +2023-05-01T12:00,2.5,959.1,7.05,11.46,328,331,0.00 +2023-05-01T13:00,3.8,959.7,6.80,10.54,324,327,0.00 +2023-05-01T14:00,5.4,959.8,8.05,11.30,328,329,0.00 +2023-05-01T15:00,7.1,959.7,8.68,11.81,331,332,0.00 +2023-05-01T16:00,8.4,959.6,9.84,13.29,335,336,0.00 +2023-05-01T17:00,9.6,959.4,10.29,13.91,335,335,0.00 +2023-05-01T18:00,10.5,959.1,10.51,14.27,335,335,0.00 +2023-05-01T19:00,11.2,958.7,10.51,14.18,333,334,0.00 +2023-05-01T20:00,11.9,958.6,10.34,14.09,335,335,0.00 +2023-05-01T21:00,12.0,958.4,10.87,14.85,332,333,0.00 +2023-05-01T22:00,10.9,958.5,10.33,14.31,333,333,0.00 +2023-05-01T23:00,10.1,958.8,10.22,14.39,337,338,0.00 +2023-05-02T00:00,9.9,958.1,8.23,12.19,336,337,0.00 +2023-05-02T01:00,8.4,958.1,6.74,10.93,328,330,0.00 +2023-05-02T02:00,7.2,958.6,7.99,12.76,328,330,0.00 +2023-05-02T03:00,6.6,959.0,7.74,12.61,327,329,0.00 +2023-05-02T04:00,5.7,959.6,7.29,12.00,335,336,0.00 +2023-05-02T05:00,5.0,959.9,5.63,9.73,348,351,0.00 +2023-05-02T06:00,4.2,960.2,4.66,8.51,337,342,0.00 +2023-05-02T07:00,3.7,960.3,5.02,9.22,314,319,0.00 +2023-05-02T08:00,3.1,960.5,6.10,10.72,319,323,0.00 +2023-05-02T09:00,2.9,961.0,6.30,11.01,324,328,0.00 +2023-05-02T10:00,2.6,961.7,6.41,10.99,326,329,0.00 +2023-05-02T11:00,2.1,962.1,6.52,11.10,324,328,0.00 +2023-05-02T12:00,2.2,961.9,7.03,11.66,320,324,0.00 +2023-05-02T13:00,3.6,962.6,6.94,11.03,319,321,0.00 +2023-05-02T14:00,5.3,962.8,8.28,11.68,323,324,0.00 +2023-05-02T15:00,7.1,962.8,8.75,11.92,329,330,0.00 +2023-05-02T16:00,8.8,962.9,8.80,11.97,328,329,0.00 +2023-05-02T17:00,10.5,963.1,9.27,12.39,331,332,0.00 +2023-05-02T18:00,11.7,962.8,9.39,12.70,333,334,0.00 +2023-05-02T19:00,12.6,962.4,9.53,12.75,335,335,0.00 +2023-05-02T20:00,13.3,962.3,9.31,12.54,336,337,0.00 +2023-05-02T21:00,13.7,962.0,8.97,12.16,338,338,0.00 +2023-05-02T22:00,13.7,961.8,8.54,11.70,339,340,0.00 +2023-05-02T23:00,13.3,962.0,7.91,11.04,342,342,0.00 +2023-05-03T00:00,13.1,961.7,6.29,9.93,342,343,0.00 +2023-05-03T01:00,11.1,961.8,4.97,9.05,345,347,0.00 +2023-05-03T02:00,8.9,962.0,3.52,7.94,345,349,0.00 +2023-05-03T03:00,7.4,962.3,3.18,7.78,332,342,0.00 +2023-05-03T04:00,6.8,962.5,3.18,7.94,332,343,0.00 +2023-05-03T05:00,6.0,962.9,2.97,7.37,327,342,0.00 +2023-05-03T06:00,4.8,963.2,2.52,6.43,326,345,0.00 +2023-05-03T07:00,3.7,963.2,2.26,5.47,315,342,0.00 +2023-05-03T08:00,2.9,962.9,2.13,4.81,311,339,0.00 +2023-05-03T09:00,2.2,962.3,2.28,3.94,299,336,0.00 +2023-05-03T10:00,1.9,962.3,2.34,3.47,290,327,0.00 +2023-05-03T11:00,1.6,962.3,2.26,3.33,283,319,0.00 +2023-05-03T12:00,3.8,963.1,2.08,3.80,305,333,0.00 +2023-05-03T13:00,7.1,964.1,2.14,3.26,307,333,0.00 +2023-05-03T14:00,10.4,964.7,1.39,2.33,300,317,0.00 +2023-05-03T15:00,12.9,965.0,0.94,1.17,302,301,0.00 +2023-05-03T16:00,14.7,964.8,0.90,1.20,270,270,0.00 +2023-05-03T17:00,16.0,964.5,1.49,1.77,250,254,0.00 +2023-05-03T18:00,17.1,963.9,1.90,2.34,252,250,0.00 +2023-05-03T19:00,18.0,963.1,2.19,2.69,246,248,0.00 +2023-05-03T20:00,18.7,962.3,2.28,2.82,247,247,0.00 +2023-05-03T21:00,19.1,961.6,2.25,2.75,249,251,0.00 +2023-05-03T22:00,19.2,960.9,1.97,2.47,246,249,0.00 +2023-05-03T23:00,18.9,960.5,1.92,2.36,231,234,0.00 +2023-05-04T00:00,19.6,959.7,0.76,1.08,203,236,0.00 +2023-05-04T01:00,16.8,959.4,1.58,1.40,162,180,0.00 +2023-05-04T02:00,11.8,958.7,2.90,3.11,178,186,0.00 +2023-05-04T03:00,11.3,958.8,2.57,5.16,193,202,0.00 +2023-05-04T04:00,10.8,958.8,3.01,6.52,201,212,0.00 +2023-05-04T05:00,10.1,958.6,3.18,6.50,204,217,0.00 +2023-05-04T06:00,9.2,958.3,3.18,6.52,204,216,0.00 +2023-05-04T07:00,8.7,958.0,3.89,8.12,209,218,0.00 +2023-05-04T08:00,9.3,958.0,4.17,9.15,226,236,0.00 +2023-05-04T09:00,9.3,957.9,4.40,9.43,231,238,0.00 +2023-05-04T10:00,9.2,957.9,4.61,9.71,229,235,0.00 +2023-05-04T11:00,8.9,958.2,4.74,9.68,228,235,0.00 +2023-05-04T12:00,10.2,958.3,4.60,9.34,224,232,0.00 +2023-05-04T13:00,12.8,959.0,4.74,8.36,224,233,0.00 +2023-05-04T14:00,15.4,960.1,2.47,4.41,291,274,0.00 +2023-05-04T15:00,17.4,960.2,2.38,3.14,292,292,0.00 +2023-05-04T16:00,19.7,960.4,2.20,2.78,300,300,0.00 +2023-05-04T17:00,21.2,960.4,2.06,2.42,331,330,0.00 +2023-05-04T18:00,22.0,960.0,1.70,2.00,360,360,0.00 +2023-05-04T19:00,22.8,959.7,1.26,1.39,18,21,0.00 +2023-05-04T20:00,23.3,959.2,0.86,1.03,54,61,0.00 +2023-05-04T21:00,23.6,958.8,0.36,0.54,214,202,0.00 +2023-05-04T22:00,23.7,958.3,0.98,1.30,204,203,0.00 +2023-05-04T23:00,23.1,958.0,2.28,2.77,203,206,0.00 +2023-05-05T00:00,23.1,956.8,0.81,0.71,150,135,0.00 +2023-05-05T01:00,21.2,956.8,1.20,1.48,132,152,0.00 +2023-05-05T02:00,16.1,956.8,1.98,2.20,131,129,0.00 +2023-05-05T03:00,15.8,956.7,4.10,8.13,90,95,0.00 +2023-05-05T04:00,15.8,957.2,3.91,8.60,122,113,0.00 +2023-05-05T05:00,14.0,957.5,2.56,6.39,149,130,0.00 +2023-05-05T06:00,12.5,957.6,2.28,6.39,195,200,0.00 +2023-05-05T07:00,12.7,957.6,2.78,6.04,218,204,0.00 +2023-05-05T08:00,13.1,957.5,2.06,3.81,166,203,0.00 +2023-05-05T09:00,13.4,957.6,1.71,3.58,173,216,0.00 +2023-05-05T10:00,10.5,957.3,3.32,4.72,201,216,1.30 +2023-05-05T11:00,11.9,958.1,2.66,4.11,236,229,0.10 +2023-05-05T12:00,10.1,957.3,1.61,2.30,150,146,0.00 +2023-05-05T13:00,12.8,958.4,1.94,3.92,102,109,0.00 +2023-05-05T14:00,15.3,959.5,1.43,2.20,78,93,0.00 +2023-05-05T15:00,17.7,959.5,2.14,2.62,127,133,0.00 +2023-05-05T16:00,19.5,959.4,2.75,3.35,161,163,0.00 +2023-05-05T17:00,20.7,959.3,1.34,1.66,153,155,0.60 +2023-05-05T18:00,21.3,959.3,2.86,3.45,155,158,0.20 +2023-05-05T19:00,21.6,959.0,3.47,4.30,147,149,0.10 +2023-05-05T20:00,21.3,958.7,1.12,1.72,153,144,0.00 +2023-05-05T21:00,17.6,958.3,3.94,5.28,330,331,0.60 +2023-05-05T22:00,17.5,958.4,0.57,0.78,315,320,0.20 +2023-05-05T23:00,17.6,958.8,1.71,2.00,7,3,0.20 +2023-05-06T00:00,19.1,958.5,2.06,2.97,104,110,0.20 +2023-05-06T01:00,15.5,959.2,4.22,6.79,95,104,4.50 +2023-05-06T02:00,15.2,959.5,2.40,4.49,90,107,0.10 +2023-05-06T03:00,13.9,959.9,3.54,6.32,106,108,0.20 +2023-05-06T04:00,13.9,960.0,4.74,7.99,132,133,0.10 +2023-05-06T05:00,13.9,959.5,2.97,6.11,132,140,0.00 +2023-05-06T06:00,13.2,960.0,2.64,5.66,119,132,0.00 +2023-05-06T07:00,12.9,959.7,3.48,6.94,129,139,0.00 +2023-05-06T08:00,12.7,959.4,3.69,7.05,139,145,0.00 +2023-05-06T09:00,12.4,959.3,2.78,5.67,120,131,0.00 +2023-05-06T10:00,12.2,959.6,3.97,7.28,131,134,0.00 +2023-05-06T11:00,12.5,959.1,3.52,6.16,125,132,0.00 +2023-05-06T12:00,12.8,958.5,5.18,8.67,100,107,0.00 +2023-05-06T13:00,13.3,957.9,5.48,8.89,105,109,0.00 +2023-05-06T14:00,15.2,957.9,6.50,8.83,121,121,0.00 +2023-05-06T15:00,17.3,958.3,5.28,6.90,127,129,0.00 +2023-05-06T16:00,19.3,958.6,5.02,6.58,133,133,0.10 +2023-05-06T17:00,20.3,958.7,4.82,6.38,138,139,0.00 +2023-05-06T18:00,21.7,958.5,3.98,5.19,152,152,0.00 +2023-05-06T19:00,20.0,958.0,4.90,6.40,168,170,2.60 +2023-05-06T20:00,19.3,958.0,4.72,6.31,175,177,1.40 +2023-05-06T21:00,20.6,957.4,5.77,7.62,166,166,0.10 +2023-05-06T22:00,20.0,956.8,6.16,8.32,167,167,0.10 +2023-05-06T23:00,20.9,956.6,5.40,7.30,179,180,0.00 +2023-05-07T00:00,21.4,956.6,4.59,7.24,191,198,0.00 +2023-05-07T01:00,19.6,956.9,3.23,6.66,202,208,0.00 +2023-05-07T02:00,16.4,957.4,3.07,6.60,199,215,0.00 +2023-05-07T03:00,15.1,957.9,2.83,6.59,225,248,0.00 +2023-05-07T04:00,13.9,958.3,2.45,6.15,258,277,0.00 +2023-05-07T05:00,12.7,957.9,2.06,5.16,256,279,0.00 +2023-05-07T06:00,11.6,958.2,2.51,5.50,247,268,0.00 +2023-05-07T07:00,10.7,957.7,2.28,5.32,247,265,0.00 +2023-05-07T08:00,10.2,957.6,2.58,5.66,234,249,0.00 +2023-05-07T09:00,10.0,957.8,2.83,6.45,238,246,0.00 +2023-05-07T10:00,9.8,957.9,2.47,6.01,249,252,0.00 +2023-05-07T11:00,9.1,957.6,2.02,4.94,279,277,0.00 +2023-05-07T12:00,10.4,959.8,1.46,2.79,286,291,0.00 +2023-05-07T13:00,12.6,960.2,1.08,2.38,292,285,0.00 +2023-05-07T14:00,14.6,960.0,0.63,1.17,18,301,0.00 +2023-05-07T15:00,17.2,960.1,1.14,1.32,15,9,0.00 +2023-05-07T16:00,18.7,960.0,1.71,1.99,21,18,0.00 +2023-05-07T17:00,19.7,960.6,1.00,1.14,53,52,0.00 +2023-05-07T18:00,20.9,961.3,1.96,2.53,195,198,0.70 +2023-05-07T19:00,21.1,961.0,2.51,3.28,209,211,0.00 +2023-05-07T20:00,22.5,960.5,2.30,2.94,236,235,0.00 +2023-05-07T21:00,23.3,959.9,1.88,2.28,245,247,0.00 +2023-05-07T22:00,23.6,959.0,1.80,2.30,273,272,0.00 +2023-05-07T23:00,23.2,959.2,1.43,1.84,295,292,0.00 +2023-05-08T00:00,20.0,959.5,4.31,6.96,68,74,0.00 +2023-05-08T01:00,18.3,959.1,1.81,4.54,96,98,0.00 +2023-05-08T02:00,15.1,958.2,2.55,3.35,48,73,0.00 +2023-05-08T03:00,14.6,958.7,2.10,4.69,357,11,0.00 +2023-05-08T04:00,13.9,960.0,2.30,5.87,2,9,0.00 +2023-05-08T05:00,13.8,959.8,5.25,9.41,352,357,0.00 +2023-05-08T06:00,12.4,960.8,4.41,8.30,356,1,0.00 +2023-05-08T07:00,11.7,960.8,4.59,8.25,349,354,0.00 +2023-05-08T08:00,11.0,960.1,4.34,7.94,345,349,0.00 +2023-05-08T09:00,9.8,960.5,3.61,6.91,341,346,0.00 +2023-05-08T10:00,8.7,960.5,2.26,5.22,347,355,0.00 +2023-05-08T11:00,8.0,960.8,2.18,4.92,344,355,0.00 +2023-05-08T12:00,8.8,961.9,3.49,5.97,336,346,0.00 +2023-05-08T13:00,10.8,962.2,2.21,4.54,342,352,0.00 +2023-05-08T14:00,13.5,963.0,2.24,2.96,350,348,0.00 +2023-05-08T15:00,15.5,963.1,2.02,2.44,20,19,0.00 +2023-05-08T16:00,17.5,963.5,2.51,3.01,355,356,0.00 +2023-05-08T17:00,19.1,964.0,2.47,3.01,346,345,0.00 +2023-05-08T18:00,20.4,963.8,1.84,2.19,338,336,0.00 +2023-05-08T19:00,21.2,963.6,1.57,1.89,333,328,0.00 +2023-05-08T20:00,21.9,963.4,1.48,1.72,332,324,0.00 +2023-05-08T21:00,22.0,963.4,1.17,1.35,329,318,0.00 +2023-05-08T22:00,21.7,963.0,0.63,0.72,342,326,0.00 +2023-05-08T23:00,21.0,963.2,1.91,2.22,6,8,0.10 +2023-05-09T00:00,17.5,963.4,3.76,5.38,40,42,6.20 +2023-05-09T01:00,15.5,963.3,3.13,5.56,27,30,0.00 +2023-05-09T02:00,12.6,963.0,2.55,3.52,45,55,0.00 +2023-05-09T03:00,11.6,963.5,2.24,2.95,10,62,0.00 +2023-05-09T04:00,12.0,964.2,2.15,4.47,28,50,0.00 +2023-05-09T05:00,10.9,964.0,2.41,4.66,42,67,0.00 +2023-05-09T06:00,10.5,964.1,2.37,4.61,62,77,0.00 +2023-05-09T07:00,11.4,964.4,2.06,2.90,61,90,0.00 +2023-05-09T08:00,11.0,964.4,1.26,0.89,342,63,0.00 +2023-05-09T09:00,9.2,964.6,2.31,2.62,18,40,0.00 +2023-05-09T10:00,9.3,964.9,2.02,4.25,57,63,0.00 +2023-05-09T11:00,8.5,965.0,2.73,3.65,98,99,0.00 +2023-05-09T12:00,13.0,966.4,2.80,6.22,178,191,0.00 +2023-05-09T13:00,15.2,967.1,2.75,6.22,170,191,0.00 +2023-05-09T14:00,17.3,967.4,2.43,3.41,171,177,0.00 +2023-05-09T15:00,19.5,967.5,2.25,2.77,148,154,0.00 +2023-05-09T16:00,21.0,967.6,2.30,2.78,146,150,0.00 +2023-05-09T17:00,20.8,968.5,4.12,5.22,186,185,0.30 +2023-05-09T18:00,20.4,967.9,2.42,3.00,114,120,0.00 +2023-05-09T19:00,22.5,967.5,4.81,6.14,159,161,0.00 +2023-05-09T20:00,20.2,967.2,4.62,5.91,162,161,0.70 +2023-05-09T21:00,22.1,966.4,3.98,5.05,152,153,0.10 +2023-05-09T22:00,22.5,966.0,4.24,5.38,161,162,0.00 +2023-05-09T23:00,21.6,965.8,3.67,5.02,154,157,0.00 +2023-05-10T00:00,19.1,966.2,3.54,5.94,133,134,0.00 +2023-05-10T01:00,18.5,966.2,3.71,6.86,117,121,0.00 +2023-05-10T02:00,17.1,966.2,3.75,7.89,134,141,0.00 +2023-05-10T03:00,16.2,966.8,3.42,7.57,128,138,0.00 +2023-05-10T04:00,16.3,967.2,3.78,8.07,127,133,0.00 +2023-05-10T05:00,15.9,967.3,4.52,8.93,145,146,0.00 +2023-05-10T06:00,14.9,967.1,4.52,9.05,155,157,0.00 +2023-05-10T07:00,14.4,967.1,4.49,8.92,159,162,0.00 +2023-05-10T08:00,14.1,966.8,4.65,9.27,161,164,0.00 +2023-05-10T09:00,13.4,966.5,4.62,9.22,162,165,0.00 +2023-05-10T10:00,12.9,966.3,4.74,9.37,162,164,0.00 +2023-05-10T11:00,12.6,966.5,4.63,9.22,166,167,0.00 +2023-05-10T12:00,13.5,966.4,4.35,8.25,157,161,0.00 +2023-05-10T13:00,15.6,967.4,3.94,8.14,150,155,0.00 +2023-05-10T14:00,17.7,968.2,4.79,6.56,157,159,0.00 +2023-05-10T15:00,19.3,968.1,4.70,6.22,153,154,0.00 +2023-05-10T16:00,20.9,968.0,4.44,5.87,149,150,0.00 +2023-05-10T17:00,22.5,967.8,4.80,6.14,149,150,0.00 +2023-05-10T18:00,23.8,967.0,5.52,7.08,148,149,0.00 +2023-05-10T19:00,24.0,966.1,5.72,7.46,144,145,0.00 +2023-05-10T20:00,24.5,964.9,6.01,7.92,136,136,0.00 +2023-05-10T21:00,24.5,964.3,6.00,8.00,143,143,0.00 +2023-05-10T22:00,24.7,963.9,5.37,7.38,151,152,0.00 +2023-05-10T23:00,24.3,963.3,4.88,7.10,145,148,0.00 +2023-05-11T00:00,22.8,963.5,2.77,5.69,116,124,0.00 +2023-05-11T01:00,20.9,963.4,3.40,6.71,88,100,0.00 +2023-05-11T02:00,19.5,963.0,4.18,7.81,79,88,0.00 +2023-05-11T03:00,18.9,963.6,4.40,8.51,111,110,0.20 +2023-05-11T04:00,17.8,963.8,4.74,8.63,136,135,0.40 +2023-05-11T05:00,17.0,964.0,4.10,7.71,89,103,1.00 +2023-05-11T06:00,15.9,963.8,4.50,8.26,87,97,4.30 +2023-05-11T07:00,16.2,963.3,5.25,9.62,130,134,0.00 +2023-05-11T08:00,15.7,963.1,3.69,7.49,139,149,0.00 +2023-05-11T09:00,14.0,963.3,2.19,3.86,114,143,0.00 +2023-05-11T10:00,14.5,963.4,3.20,6.35,110,123,0.00 +2023-05-11T11:00,14.4,963.5,3.94,7.58,120,126,0.00 +2023-05-11T12:00,14.9,963.3,5.01,8.65,119,120,0.10 +2023-05-11T13:00,15.9,963.9,4.80,9.95,144,141,4.00 +2023-05-11T14:00,16.9,963.9,4.48,9.04,141,142,0.00 +2023-05-11T15:00,18.8,964.2,4.69,6.47,140,141,0.00 +2023-05-11T16:00,21.5,964.0,3.86,5.07,163,165,0.00 +2023-05-11T17:00,23.3,963.8,1.62,1.99,158,162,0.00 +2023-05-11T18:00,24.4,963.5,1.50,1.71,94,97,0.00 +2023-05-11T19:00,25.4,963.5,3.30,4.00,92,93,0.00 +2023-05-11T20:00,25.4,962.9,3.81,4.81,104,107,0.00 +2023-05-11T21:00,23.5,962.6,2.79,3.45,165,163,0.60 +2023-05-11T22:00,23.4,962.3,0.32,0.30,342,360,0.00 +2023-05-11T23:00,23.3,962.2,2.24,2.77,100,103,0.10 +2023-05-12T00:00,22.1,962.2,4.52,6.36,108,109,0.10 +2023-05-12T01:00,20.9,962.0,3.35,6.16,100,103,0.00 +2023-05-12T02:00,19.3,962.2,2.71,6.17,94,98,0.00 +2023-05-12T03:00,18.7,962.4,3.70,7.51,90,92,0.00 +2023-05-12T04:00,17.9,962.7,3.86,7.25,111,118,0.00 +2023-05-12T05:00,18.2,962.7,3.22,6.58,150,160,0.00 +2023-05-12T06:00,18.0,963.0,3.10,6.26,159,163,0.00 +2023-05-12T07:00,16.8,962.5,2.64,5.66,155,159,0.00 +2023-05-12T08:00,16.2,962.4,2.56,5.74,129,139,0.10 +2023-05-12T09:00,16.3,962.7,3.23,6.31,112,119,0.70 +2023-05-12T10:00,16.3,963.0,3.45,6.53,112,117,1.00 +2023-05-12T11:00,16.1,962.8,3.80,6.94,88,96,0.40 +2023-05-12T12:00,17.0,962.9,3.91,7.34,93,96,0.00 +2023-05-12T13:00,18.0,963.5,6.00,8.72,91,94,0.10 +2023-05-12T14:00,17.1,963.4,5.61,9.03,93,94,0.70 +2023-05-12T15:00,17.8,963.9,6.51,9.45,101,100,1.20 +2023-05-12T16:00,17.6,963.9,5.32,8.16,95,97,0.70 +2023-05-12T17:00,18.4,963.7,5.51,8.24,94,96,0.50 +2023-05-12T18:00,20.2,963.9,6.96,9.60,97,98,0.20 +2023-05-12T19:00,20.6,963.5,6.84,9.53,102,103,0.00 +2023-05-12T20:00,20.9,963.2,6.84,9.34,105,106,0.20 +2023-05-12T21:00,20.1,962.6,5.10,7.20,88,91,0.30 +2023-05-12T22:00,21.9,962.0,6.40,8.91,91,92,0.10 +2023-05-12T23:00,22.3,962.0,6.83,9.55,95,96,0.10 +2023-05-13T00:00,20.9,963.3,7.36,9.98,97,97,0.00 +2023-05-13T01:00,19.1,963.8,6.00,9.40,89,92,0.00 +2023-05-13T02:00,18.1,963.3,6.31,10.50,86,89,0.00 +2023-05-13T03:00,17.6,963.5,6.51,10.70,87,91,0.00 +2023-05-13T04:00,16.9,963.4,6.80,11.20,88,91,0.00 +2023-05-13T05:00,16.2,964.4,6.33,10.42,95,99,0.00 +2023-05-13T06:00,16.0,963.9,7.20,11.43,89,94,0.20 +2023-05-13T07:00,15.1,963.8,6.35,10.58,97,97,0.20 +2023-05-13T08:00,14.9,964.7,5.71,9.66,101,106,0.00 +2023-05-13T09:00,15.5,964.9,6.61,10.56,93,96,0.00 +2023-05-13T10:00,15.3,965.1,6.00,9.62,89,94,0.00 +2023-05-13T11:00,15.0,965.5,6.51,10.20,87,91,0.00 +2023-05-13T12:00,14.6,965.5,6.32,10.41,79,82,0.00 +2023-05-13T13:00,15.2,966.2,7.43,11.58,79,83,0.60 +2023-05-13T14:00,15.5,965.7,9.22,14.20,81,83,0.50 +2023-05-13T15:00,16.6,966.0,8.50,12.50,89,91,0.10 +2023-05-13T16:00,17.7,966.5,9.04,12.58,95,96,0.00 +2023-05-13T17:00,18.0,966.6,7.94,11.03,84,86,0.00 +2023-05-13T18:00,18.9,966.5,7.37,10.23,98,99,2.00 +2023-05-13T19:00,18.8,967.1,6.74,9.85,75,77,1.30 +2023-05-13T20:00,18.6,967.0,7.40,10.95,71,74,0.90 +2023-05-13T21:00,19.0,967.0,7.96,11.49,62,64,2.30 +2023-05-13T22:00,18.1,967.0,7.74,11.72,61,64,1.00 +2023-05-13T23:00,17.4,967.4,7.38,11.37,57,61,1.70 +2023-05-14T00:00,15.7,968.8,8.30,13.02,59,61,0.60 +2023-05-14T01:00,14.7,969.0,8.39,13.43,59,61,1.10 +2023-05-14T02:00,14.3,969.6,8.57,13.68,56,57,1.50 +2023-05-14T03:00,14.1,970.3,8.02,12.86,57,60,2.70 +2023-05-14T04:00,13.8,971.0,8.06,12.93,60,63,2.50 +2023-05-14T05:00,14.0,971.2,8.71,13.79,68,71,0.10 +2023-05-14T06:00,13.3,971.8,8.42,13.20,66,69,0.30 +2023-05-14T07:00,12.7,971.9,7.57,11.99,61,64,0.20 +2023-05-14T08:00,12.5,972.6,7.13,11.20,56,60,0.10 +2023-05-14T09:00,12.5,972.8,7.00,11.05,59,63,0.30 +2023-05-14T10:00,12.2,973.4,7.07,11.33,63,67,0.20 +2023-05-14T11:00,11.9,974.0,7.43,11.83,70,73,0.20 +2023-05-14T12:00,11.5,974.5,7.34,11.61,70,71,0.90 +2023-05-14T13:00,11.5,975.3,6.67,10.42,66,69,1.70 +2023-05-14T14:00,11.3,976.0,6.62,10.14,65,68,0.50 +2023-05-14T15:00,10.8,976.4,5.77,8.18,62,63,0.50 +2023-05-14T16:00,10.6,977.0,5.02,7.16,55,57,0.50 +2023-05-14T17:00,10.7,977.6,5.10,7.02,48,49,0.40 +2023-05-14T18:00,10.8,977.5,6.02,8.49,58,58,0.40 +2023-05-14T19:00,10.8,977.5,6.26,8.82,51,51,1.70 +2023-05-14T20:00,11.0,977.6,6.49,9.07,56,56,2.70 +2023-05-14T21:00,11.0,977.7,6.57,9.49,57,57,2.10 +2023-05-14T22:00,11.4,977.5,7.13,10.29,56,56,1.40 +2023-05-14T23:00,12.3,977.8,7.34,10.47,62,61,0.60 +2023-05-15T00:00,11.4,978.6,5.91,9.03,62,64,0.20 +2023-05-15T01:00,11.6,979.0,5.51,8.83,74,77,0.00 +2023-05-15T02:00,10.5,979.2,4.51,8.30,77,81,0.00 +2023-05-15T03:00,10.0,979.6,4.04,7.82,81,86,0.00 +2023-05-15T04:00,9.8,979.7,3.32,6.80,83,88,0.00 +2023-05-15T05:00,9.2,979.2,2.72,6.30,84,91,0.00 +2023-05-15T06:00,8.5,979.1,2.14,5.51,79,87,0.00 +2023-05-15T07:00,7.9,978.8,1.87,5.22,74,85,0.00 +2023-05-15T08:00,7.2,977.9,1.90,4.83,72,84,0.00 +2023-05-15T09:00,6.0,977.4,2.55,3.83,45,75,0.00 +2023-05-15T10:00,6.0,977.4,1.92,4.24,28,56,0.00 +2023-05-15T11:00,5.4,977.5,2.12,4.31,19,44,0.00 +2023-05-15T12:00,7.2,978.4,2.89,4.91,14,33,0.00 +2023-05-15T13:00,9.4,978.7,2.53,5.19,18,34,0.00 +2023-05-15T14:00,11.9,979.1,2.37,3.30,28,35,0.00 +2023-05-15T15:00,14.2,979.0,2.28,2.83,38,42,0.00 +2023-05-15T16:00,16.1,978.5,2.12,2.55,45,48,0.00 +2023-05-15T17:00,17.5,977.7,2.34,2.86,50,54,0.00 +2023-05-15T18:00,18.6,977.0,2.47,3.00,58,60,0.00 +2023-05-15T19:00,19.3,976.3,2.02,2.56,57,59,0.00 +2023-05-15T20:00,19.7,975.7,1.50,1.78,53,52,0.00 +2023-05-15T21:00,20.0,974.6,1.21,1.39,24,21,0.00 +2023-05-15T22:00,20.0,973.7,1.24,1.46,346,344,0.00 +2023-05-15T23:00,19.8,972.6,1.70,2.06,332,331,0.00 +2023-05-16T00:00,18.9,972.2,1.30,2.00,302,307,0.00 +2023-05-16T01:00,17.1,971.3,1.58,2.01,288,297,0.00 +2023-05-16T02:00,14.3,970.2,1.84,2.11,241,265,0.00 +2023-05-16T03:00,11.8,969.7,2.48,2.92,223,248,0.00 +2023-05-16T04:00,11.8,969.1,2.12,3.94,225,246,0.00 +2023-05-16T05:00,11.6,968.5,2.84,5.46,231,246,0.00 +2023-05-16T06:00,11.4,968.2,3.34,6.80,231,244,0.00 +2023-05-16T07:00,11.3,967.7,4.00,8.23,238,249,0.00 +2023-05-16T08:00,10.9,967.0,4.16,8.40,243,258,0.00 +2023-05-16T09:00,10.6,966.3,4.05,8.41,254,268,0.00 +2023-05-16T10:00,10.5,965.9,3.91,8.24,266,280,0.00 +2023-05-16T11:00,10.7,965.5,4.00,8.60,273,288,0.00 +2023-05-16T12:00,12.9,965.5,3.77,8.05,292,302,0.00 +2023-05-16T13:00,15.4,965.8,3.94,7.70,294,308,0.00 +2023-05-16T14:00,17.9,965.7,3.72,5.74,301,305,0.00 +2023-05-16T15:00,20.1,965.6,4.00,5.40,307,309,0.00 +2023-05-16T16:00,21.9,965.4,4.46,5.80,314,315,0.00 +2023-05-16T17:00,23.2,965.3,4.68,6.02,318,318,0.00 +2023-05-16T18:00,24.2,964.7,4.98,6.34,322,322,0.00 +2023-05-16T19:00,24.8,964.2,4.56,5.92,322,323,0.00 +2023-05-16T20:00,25.1,963.9,4.22,5.44,324,324,0.00 +2023-05-16T21:00,25.3,963.4,4.16,5.38,325,325,0.00 +2023-05-16T22:00,25.2,962.8,4.49,5.89,339,339,0.00 +2023-05-16T23:00,24.1,962.4,3.22,5.33,324,330,0.00 +2023-05-17T00:00,23.2,961.9,2.42,4.72,322,324,0.00 +2023-05-17T01:00,20.5,961.3,2.02,4.88,303,316,0.00 +2023-05-17T02:00,18.3,961.1,2.34,5.54,290,309,0.00 +2023-05-17T03:00,17.2,961.4,2.51,6.01,293,314,0.00 +2023-05-17T04:00,16.4,961.5,2.46,6.03,297,320,0.00 +2023-05-17T05:00,15.1,961.4,2.27,5.61,319,338,0.00 +2023-05-17T06:00,14.3,961.3,2.08,4.24,305,341,0.00 +2023-05-17T07:00,13.3,961.6,2.02,4.68,20,42,0.00 +2023-05-17T08:00,12.9,961.9,2.71,6.48,86,99,0.00 +2023-05-17T09:00,12.8,962.3,3.35,7.32,107,112,0.00 +2023-05-17T10:00,12.0,962.5,3.18,7.20,114,117,0.00 +2023-05-17T11:00,11.4,962.6,3.18,7.02,118,123,0.00 +2023-05-17T12:00,12.8,962.6,3.69,6.93,131,135,0.00 +2023-05-17T13:00,14.6,963.1,3.33,7.14,139,143,0.00 +2023-05-17T14:00,16.7,963.4,3.22,4.43,154,155,0.00 +2023-05-17T15:00,19.0,963.3,2.92,3.83,158,160,0.00 +2023-05-17T16:00,21.2,963.3,2.92,3.70,158,161,0.00 +2023-05-17T17:00,22.8,963.3,3.09,3.77,155,158,0.00 +2023-05-17T18:00,24.0,962.7,3.32,4.05,159,160,0.00 +2023-05-17T19:00,24.8,962.3,3.47,4.28,168,169,0.00 +2023-05-17T20:00,25.2,961.9,3.50,4.40,180,181,0.00 +2023-05-17T21:00,25.2,961.2,3.73,4.84,188,187,0.00 +2023-05-17T22:00,24.9,960.5,4.14,5.47,200,198,0.00 +2023-05-17T23:00,24.6,960.2,4.44,6.09,203,203,0.00 +2023-05-18T00:00,23.7,959.4,3.20,5.61,141,149,0.00 +2023-05-18T01:00,22.0,959.3,4.08,7.85,144,146,0.00 +2023-05-18T02:00,20.2,959.6,5.66,10.16,144,144,0.00 +2023-05-18T03:00,19.3,960.3,6.49,11.23,155,155,0.00 +2023-05-18T04:00,18.2,960.2,6.31,10.70,153,156,0.00 +2023-05-18T05:00,17.1,960.0,6.10,10.82,162,164,0.00 +2023-05-18T06:00,16.8,959.7,6.41,11.43,169,171,0.00 +2023-05-18T07:00,16.8,959.4,6.63,11.62,175,177,0.00 +2023-05-18T08:00,16.8,959.1,6.51,11.25,183,186,0.00 +2023-05-18T09:00,16.8,958.8,6.48,11.10,189,191,0.00 +2023-05-18T10:00,17.1,958.8,6.36,10.85,196,200,0.00 +2023-05-18T11:00,16.1,959.4,5.45,9.69,223,225,0.00 +2023-05-18T12:00,15.9,959.7,3.35,6.45,253,257,0.00 +2023-05-18T13:00,15.3,960.3,3.47,4.80,303,306,0.00 +2023-05-18T14:00,15.7,960.8,4.80,6.38,324,325,0.00 +2023-05-18T15:00,16.3,961.5,4.77,6.24,327,328,0.10 +2023-05-18T16:00,16.4,961.9,3.50,4.58,323,324,8.60 +2023-05-18T17:00,17.4,962.2,2.51,3.31,331,331,3.80 +2023-05-18T18:00,20.4,961.9,3.05,3.83,319,319,0.00 +2023-05-18T19:00,21.4,961.6,3.96,5.02,315,314,0.00 +2023-05-18T20:00,22.3,961.6,4.12,5.15,299,299,0.00 +2023-05-18T21:00,22.1,961.3,4.55,5.83,310,309,0.00 +2023-05-18T22:00,21.9,961.0,4.34,5.62,308,309,0.00 +2023-05-18T23:00,21.6,961.2,4.61,6.04,283,282,0.00 +2023-05-19T00:00,20.7,961.1,3.40,5.77,294,298,0.00 +2023-05-19T01:00,19.1,961.1,5.20,9.04,322,325,0.00 +2023-05-19T02:00,14.7,962.4,7.88,12.00,336,336,0.00 +2023-05-19T03:00,12.7,963.9,6.80,10.87,334,334,0.00 +2023-05-19T04:00,11.5,964.5,6.26,10.31,335,337,0.00 +2023-05-19T05:00,11.3,965.1,7.25,10.70,336,336,0.00 +2023-05-19T06:00,9.5,966.1,6.71,10.15,333,334,0.00 +2023-05-19T07:00,8.3,966.3,5.69,9.26,326,327,0.00 +2023-05-19T08:00,7.5,966.7,6.34,10.08,322,323,0.00 +2023-05-19T09:00,6.9,966.9,5.09,8.42,315,317,0.00 +2023-05-19T10:00,6.6,967.4,5.30,8.85,314,318,0.00 +2023-05-19T11:00,6.1,967.7,4.60,8.06,312,314,0.00 +2023-05-19T12:00,6.5,967.9,5.60,8.20,311,314,0.00 +2023-05-19T13:00,7.6,968.4,5.69,7.80,309,311,0.00 +2023-05-19T14:00,8.7,968.8,8.41,11.43,325,325,0.00 +2023-05-19T15:00,8.7,969.1,8.08,10.94,329,329,0.00 +2023-05-19T16:00,9.3,969.7,7.67,10.36,329,329,0.00 +2023-05-19T17:00,9.6,970.2,6.47,8.71,328,328,0.00 +2023-05-19T18:00,10.1,970.5,6.00,7.98,330,330,0.00 +2023-05-19T19:00,10.8,970.8,6.19,8.03,329,329,0.00 +2023-05-19T20:00,11.0,971.1,6.13,8.06,336,337,0.00 +2023-05-19T21:00,11.2,971.4,5.98,7.97,339,340,0.00 +2023-05-19T22:00,11.5,971.5,5.60,7.47,344,344,0.00 +2023-05-19T23:00,12.0,971.7,5.39,7.22,349,350,0.00 +2023-05-20T00:00,13.0,971.1,3.69,5.00,347,348,0.00 +2023-05-20T01:00,12.0,971.0,2.18,4.57,344,350,0.00 +2023-05-20T02:00,9.0,970.7,2.19,4.59,336,349,0.00 +2023-05-20T03:00,8.4,971.2,2.28,4.87,322,341,0.00 +2023-05-20T04:00,8.6,971.5,2.51,6.09,331,346,0.00 +2023-05-20T05:00,8.0,971.7,2.55,6.21,349,3,0.00 +2023-05-20T06:00,7.0,971.6,2.10,5.53,357,13,0.00 +2023-05-20T07:00,5.8,971.4,2.43,4.50,9,37,0.00 +2023-05-20T08:00,5.6,971.7,2.02,2.77,351,49,0.00 +2023-05-20T09:00,4.9,971.8,1.58,1.35,325,42,0.00 +2023-05-20T10:00,4.9,972.0,1.08,0.57,304,45,0.00 +2023-05-20T11:00,5.0,972.2,0.80,0.32,270,198,0.00 +2023-05-20T12:00,7.8,973.0,0.81,1.91,187,133,0.00 +2023-05-20T13:00,10.4,973.9,1.30,2.31,203,175,0.00 +2023-05-20T14:00,12.6,974.4,1.70,2.06,208,203,0.00 +2023-05-20T15:00,13.9,974.3,1.80,2.20,214,210,0.00 +2023-05-20T16:00,15.1,974.0,2.02,2.56,200,201,0.00 +2023-05-20T17:00,16.2,973.6,2.35,2.98,192,194,0.00 +2023-05-20T18:00,17.2,972.8,3.01,3.74,195,196,0.00 +2023-05-20T19:00,18.2,972.1,3.23,3.99,202,202,0.00 +2023-05-20T20:00,18.8,971.8,3.18,3.98,208,208,0.00 +2023-05-20T21:00,19.3,971.0,3.36,4.13,210,212,0.00 +2023-05-20T22:00,19.5,970.4,3.56,4.48,218,219,0.00 +2023-05-20T23:00,19.3,969.9,3.54,4.60,223,224,0.00 +2023-05-21T00:00,19.7,969.2,2.62,4.10,220,223,0.00 +2023-05-21T01:00,17.1,968.6,1.70,4.17,220,226,0.00 +2023-05-21T02:00,13.8,968.1,2.34,4.75,220,229,0.00 +2023-05-21T03:00,12.6,968.4,2.36,4.84,216,232,0.00 +2023-05-21T04:00,11.6,968.2,2.39,4.55,213,230,0.00 +2023-05-21T05:00,10.7,968.2,2.24,4.03,207,226,0.00 +2023-05-21T06:00,10.4,968.0,2.09,4.10,197,214,0.00 +2023-05-21T07:00,10.2,967.9,2.38,4.92,195,204,0.00 +2023-05-21T08:00,10.1,967.6,2.79,6.13,201,206,0.00 +2023-05-21T09:00,9.9,967.4,3.10,6.98,201,207,0.00 +2023-05-21T10:00,9.5,967.4,3.40,7.53,204,210,0.00 +2023-05-21T11:00,9.4,967.5,3.55,7.74,202,209,0.00 +2023-05-21T12:00,11.8,968.1,4.08,7.84,197,203,0.00 +2023-05-21T13:00,14.0,968.4,4.43,7.97,186,200,0.00 +2023-05-21T14:00,16.6,968.6,4.03,6.33,187,192,0.00 +2023-05-21T15:00,19.0,968.7,4.22,5.64,185,187,0.00 +2023-05-21T16:00,21.2,968.5,4.40,5.81,183,184,0.00 +2023-05-21T17:00,22.9,968.5,5.04,6.45,187,187,0.00 +2023-05-21T18:00,23.7,968.2,4.85,6.18,188,189,0.00 +2023-05-21T19:00,24.2,967.8,4.41,5.63,184,186,0.00 +2023-05-21T20:00,24.7,967.5,3.50,4.41,182,184,0.00 +2023-05-21T21:00,24.8,967.0,3.21,4.00,176,177,0.00 +2023-05-21T22:00,24.5,966.3,3.45,4.37,163,164,0.00 +2023-05-21T23:00,23.8,966.2,3.62,4.75,156,158,0.00 +2023-05-22T00:00,24.5,965.3,1.94,3.61,125,134,0.00 +2023-05-22T01:00,22.0,965.0,2.64,5.39,115,121,0.00 +2023-05-22T02:00,20.1,964.8,3.05,6.80,122,118,0.00 +2023-05-22T03:00,19.2,965.1,3.98,8.58,141,148,0.00 +2023-05-22T04:00,18.6,965.3,4.53,9.14,158,162,0.00 +2023-05-22T05:00,17.5,965.3,4.65,9.23,171,176,0.00 +2023-05-22T06:00,16.5,965.4,4.52,8.90,185,188,0.00 +2023-05-22T07:00,15.5,965.2,4.74,9.12,187,193,0.00 +2023-05-22T08:00,14.9,965.0,4.63,9.05,194,200,0.00 +2023-05-22T09:00,14.5,964.9,4.68,9.02,196,201,0.00 +2023-05-22T10:00,14.4,965.3,4.78,9.06,196,202,0.00 +2023-05-22T11:00,14.7,965.4,4.81,8.85,192,198,0.00 +2023-05-22T12:00,15.4,965.8,4.69,8.63,191,198,0.00 +2023-05-22T13:00,17.3,966.2,4.62,8.96,185,196,0.00 +2023-05-22T14:00,19.4,966.4,4.64,6.71,187,190,0.00 +2023-05-22T15:00,21.7,966.4,4.57,6.24,190,192,0.00 +2023-05-22T16:00,23.9,966.5,5.14,6.82,193,194,0.00 +2023-05-22T17:00,24.8,966.7,5.20,6.80,181,182,0.00 +2023-05-22T18:00,25.2,966.5,5.10,6.51,169,169,0.00 +2023-05-22T19:00,25.4,966.1,5.03,6.43,159,159,0.00 +2023-05-22T20:00,25.4,965.6,4.92,6.35,153,154,0.00 +2023-05-22T21:00,25.2,965.4,4.94,6.33,159,159,0.00 +2023-05-22T22:00,24.9,965.1,4.66,6.09,165,166,0.00 +2023-05-22T23:00,24.3,964.8,4.75,6.36,165,167,0.00 +2023-05-23T00:00,23.9,964.4,3.94,6.63,153,157,0.00 +2023-05-23T01:00,22.0,964.2,3.81,7.78,150,154,0.00 +2023-05-23T02:00,20.1,964.1,3.50,7.65,149,153,0.00 +2023-05-23T03:00,18.7,964.3,3.77,8.18,148,153,0.00 +2023-05-23T04:00,18.1,964.4,4.31,9.00,158,165,0.00 +2023-05-23T05:00,17.4,964.5,3.96,8.42,170,176,0.00 +2023-05-23T06:00,16.3,964.7,4.00,8.40,179,181,0.00 +2023-05-23T07:00,16.0,964.8,4.59,9.37,191,196,0.00 +2023-05-23T08:00,15.8,965.0,4.63,9.28,186,191,0.00 +2023-05-23T09:00,15.2,965.3,4.55,9.18,189,191,0.00 +2023-05-23T10:00,14.8,965.4,4.59,9.14,196,200,0.00 +2023-05-23T11:00,14.3,965.5,4.34,8.65,195,202,0.00 +2023-05-23T12:00,15.8,966.2,4.71,8.73,192,198,0.00 +2023-05-23T13:00,17.7,966.5,4.34,8.76,188,199,0.00 +2023-05-23T14:00,20.1,966.9,4.00,6.15,183,187,0.00 +2023-05-23T15:00,22.2,967.2,4.20,5.60,180,182,0.00 +2023-05-23T16:00,23.7,967.0,4.60,6.01,182,184,0.00 +2023-05-23T17:00,24.6,967.1,4.31,5.52,184,185,0.00 +2023-05-23T18:00,25.4,966.8,3.91,4.92,183,185,0.00 +2023-05-23T19:00,25.9,966.6,3.50,4.40,182,183,0.00 +2023-05-23T20:00,26.3,966.3,3.30,4.20,182,183,0.00 +2023-05-23T21:00,26.6,966.1,3.62,4.54,186,188,0.00 +2023-05-23T22:00,26.5,965.8,3.42,4.43,187,186,0.00 +2023-05-23T23:00,26.2,965.7,3.00,3.91,180,183,0.00 +2023-05-24T00:00,26.1,965.5,1.22,2.36,215,216,0.00 +2023-05-24T01:00,23.6,965.4,1.84,2.47,131,148,0.00 +2023-05-24T02:00,21.2,965.4,2.61,5.83,148,158,0.00 +2023-05-24T03:00,20.5,965.7,2.97,7.06,160,164,0.00 +2023-05-24T04:00,19.4,965.7,3.14,7.27,158,162,0.00 +2023-05-24T05:00,18.6,966.0,3.76,8.23,155,159,0.00 +2023-05-24T06:00,18.2,966.8,4.00,8.60,167,171,0.00 +2023-05-24T07:00,17.6,967.0,3.91,8.31,177,183,0.00 +2023-05-24T08:00,17.0,967.2,3.85,8.08,189,192,0.00 +2023-05-24T09:00,16.4,967.1,3.52,7.47,195,200,0.00 +2023-05-24T10:00,16.2,967.4,3.83,7.79,187,196,0.00 +2023-05-24T11:00,15.8,967.6,3.93,7.91,187,193,0.00 +2023-05-24T12:00,16.8,968.5,3.51,6.52,183,184,0.00 +2023-05-24T13:00,19.1,969.1,3.31,6.36,183,188,0.00 +2023-05-24T14:00,21.3,970.3,1.71,2.20,97,120,0.00 +2023-05-24T15:00,22.7,970.6,2.21,2.75,95,100,0.00 +2023-05-24T16:00,24.6,970.5,2.82,3.58,113,117,0.00 +2023-05-24T17:00,26.3,970.2,3.96,5.11,137,140,0.00 +2023-05-24T18:00,26.6,969.7,4.33,5.52,130,132,0.00 +2023-05-24T19:00,27.6,969.2,4.44,5.69,121,124,0.00 +2023-05-24T20:00,26.7,969.1,5.98,7.81,128,130,0.00 +2023-05-24T21:00,26.8,968.8,5.28,6.89,127,130,0.00 +2023-05-24T22:00,27.4,968.2,3.82,4.95,133,133,0.00 +2023-05-24T23:00,26.1,967.9,4.42,6.62,128,128,0.00 +2023-05-25T00:00,25.5,967.4,3.03,5.94,98,103,0.00 +2023-05-25T01:00,23.1,967.5,6.39,10.55,73,75,0.00 +2023-05-25T02:00,21.1,967.7,7.42,12.31,86,88,0.00 +2023-05-25T03:00,20.4,968.1,6.94,11.72,96,98,0.00 +2023-05-25T04:00,19.5,968.2,6.82,11.54,104,108,0.00 +2023-05-25T05:00,19.0,968.5,7.02,11.75,118,121,0.00 +2023-05-25T06:00,18.3,968.7,6.66,11.16,123,126,0.00 +2023-05-25T07:00,17.4,968.9,6.16,10.61,132,133,0.00 +2023-05-25T08:00,16.6,969.0,5.95,10.23,138,141,0.00 +2023-05-25T09:00,15.6,969.1,5.67,9.83,131,135,0.00 +2023-05-25T10:00,14.8,969.7,5.97,10.12,130,133,0.00 +2023-05-25T11:00,14.0,969.8,6.15,10.47,134,137,0.00 +2023-05-25T12:00,14.5,970.5,5.80,10.21,136,139,0.00 +2023-05-25T13:00,15.4,970.7,5.73,8.41,133,135,0.00 +2023-05-25T14:00,17.0,970.8,5.66,7.71,144,146,0.00 +2023-05-25T15:00,18.6,971.1,5.60,7.36,131,133,0.00 +2023-05-25T16:00,20.2,971.1,5.66,7.43,136,138,0.00 +2023-05-25T17:00,21.7,971.1,5.54,7.22,141,143,0.00 +2023-05-25T18:00,22.8,970.7,5.73,7.36,134,136,0.00 +2023-05-25T19:00,23.6,970.5,6.18,8.03,129,129,0.00 +2023-05-25T20:00,24.4,970.3,6.40,8.39,129,129,0.00 +2023-05-25T21:00,24.8,969.7,6.44,8.42,132,133,0.00 +2023-05-25T22:00,25.0,969.4,6.23,8.35,132,133,0.00 +2023-05-25T23:00,24.6,969.1,6.38,8.64,131,132,0.00 +2023-05-26T00:00,24.2,969.1,5.88,8.99,132,133,0.00 +2023-05-26T01:00,22.5,969.4,5.53,9.34,131,132,0.00 +2023-05-26T02:00,20.7,969.8,5.47,9.84,130,132,0.00 +2023-05-26T03:00,19.7,970.3,5.80,10.47,134,136,0.00 +2023-05-26T04:00,18.9,970.7,6.03,10.68,140,142,0.00 +2023-05-26T05:00,18.2,970.9,5.88,10.58,148,149,0.00 +2023-05-26T06:00,17.3,971.0,5.57,10.22,159,160,0.00 +2023-05-26T07:00,16.4,970.9,5.19,9.68,164,166,0.00 +2023-05-26T08:00,15.5,971.1,4.78,9.17,164,166,0.00 +2023-05-26T09:00,14.8,971.1,4.71,9.12,163,165,0.00 +2023-05-26T10:00,14.2,971.4,4.78,9.08,160,163,0.00 +2023-05-26T11:00,13.7,971.8,5.11,9.49,157,160,0.00 +2023-05-26T12:00,14.1,972.7,5.63,9.77,160,162,0.00 +2023-05-26T13:00,15.2,973.4,5.39,8.79,158,161,0.00 +2023-05-26T14:00,16.7,973.8,5.35,7.43,159,160,0.00 +2023-05-26T15:00,18.5,974.1,5.41,7.27,161,162,0.00 +2023-05-26T16:00,20.5,974.2,5.35,7.09,163,164,0.00 +2023-05-26T17:00,22.2,974.2,5.47,7.02,162,163,0.00 +2023-05-26T18:00,23.3,973.9,5.19,6.64,161,162,0.00 +2023-05-26T19:00,24.1,973.6,5.07,6.43,158,159,0.00 +2023-05-26T20:00,24.6,973.1,5.10,6.62,154,155,0.00 +2023-05-26T21:00,24.9,972.5,5.35,6.96,147,148,0.00 +2023-05-26T22:00,24.7,971.6,5.22,6.88,148,147,0.00 +2023-05-26T23:00,24.2,971.1,5.02,6.77,149,149,0.00 +2023-05-27T00:00,24.0,970.7,3.36,5.91,150,152,0.00 +2023-05-27T01:00,21.2,970.3,2.56,5.99,149,152,0.00 +2023-05-27T02:00,18.5,969.7,3.16,7.31,145,150,0.00 +2023-05-27T03:00,17.7,969.9,4.08,8.82,144,147,0.00 +2023-05-27T04:00,17.1,970.0,4.91,10.05,147,149,0.00 +2023-05-27T05:00,16.7,970.6,5.61,10.60,158,159,0.00 +2023-05-27T06:00,16.2,971.0,5.53,10.51,167,168,0.00 +2023-05-27T07:00,15.3,971.1,5.05,9.86,172,174,0.00 +2023-05-27T08:00,14.2,970.8,4.63,9.32,174,176,0.00 +2023-05-27T09:00,13.4,970.6,4.32,9.00,175,178,0.00 +2023-05-27T10:00,12.8,970.7,4.24,8.82,172,176,0.00 +2023-05-27T11:00,12.3,970.7,4.16,8.84,170,175,0.00 +2023-05-27T12:00,13.9,971.0,4.81,8.99,168,172,0.00 +2023-05-27T13:00,15.9,971.3,4.41,9.31,167,171,0.00 +2023-05-27T14:00,18.2,971.8,4.16,5.95,170,172,0.00 +2023-05-27T15:00,20.4,971.8,5.21,6.90,177,178,0.00 +2023-05-27T16:00,21.6,971.8,6.11,8.11,177,178,0.00 +2023-05-27T17:00,22.6,971.5,6.38,8.40,171,171,0.00 +2023-05-27T18:00,23.6,971.0,6.55,8.69,168,168,0.00 +2023-05-27T19:00,24.3,970.6,6.60,8.63,166,167,0.00 +2023-05-27T20:00,24.9,970.3,6.24,8.18,168,168,0.00 +2023-05-27T21:00,25.1,969.9,5.87,7.71,166,167,0.00 +2023-05-27T22:00,25.0,969.3,5.66,7.43,163,163,0.00 +2023-05-27T23:00,24.8,968.6,5.35,7.37,159,159,0.00 +2023-05-28T00:00,24.4,968.4,4.33,7.15,161,162,0.00 +2023-05-28T01:00,22.0,968.1,3.09,6.78,155,158,0.00 +2023-05-28T02:00,19.4,967.7,3.05,7.29,148,153,0.00 +2023-05-28T03:00,18.4,967.6,3.58,8.18,144,147,0.00 +2023-05-28T04:00,17.6,967.9,4.19,9.06,147,149,0.00 +2023-05-28T05:00,17.1,968.2,4.65,9.51,155,158,0.00 +2023-05-28T06:00,16.6,968.1,4.72,9.55,159,162,0.00 +2023-05-28T07:00,15.8,967.9,4.54,9.32,166,168,0.00 +2023-05-28T08:00,15.2,967.7,4.41,9.16,167,169,0.00 +2023-05-28T09:00,14.7,967.6,4.08,8.67,169,173,0.00 +2023-05-28T10:00,14.0,967.5,3.75,8.14,171,174,0.00 +2023-05-28T11:00,13.4,967.1,3.55,7.72,170,176,0.00 +2023-05-28T12:00,14.7,967.4,4.03,7.79,166,171,0.00 +2023-05-28T13:00,16.7,968.0,3.76,8.01,163,171,0.00 +2023-05-28T14:00,19.1,968.5,3.36,5.25,157,162,0.00 +2023-05-28T15:00,21.5,968.5,3.54,4.70,151,153,0.00 +2023-05-28T16:00,23.4,968.5,4.79,6.24,157,158,0.00 +2023-05-28T17:00,24.3,968.2,5.50,7.03,155,156,0.00 +2023-05-28T18:00,24.9,967.9,5.64,7.29,155,155,0.00 +2023-05-28T19:00,25.4,967.2,5.59,7.21,156,156,0.00 +2023-05-28T20:00,25.7,966.6,5.55,7.17,157,157,0.00 +2023-05-28T21:00,25.8,965.9,5.16,6.82,158,158,0.00 +2023-05-28T22:00,26.0,965.0,5.28,6.98,153,153,0.00 +2023-05-28T23:00,25.7,964.4,5.28,7.25,155,156,0.00 +2023-05-29T00:00,25.5,964.1,3.79,6.36,162,164,0.00 +2023-05-29T01:00,23.1,963.6,2.64,6.13,151,156,0.00 +2023-05-29T02:00,21.2,963.2,3.69,8.21,139,146,0.00 +2023-05-29T03:00,20.7,963.5,4.30,9.21,144,148,0.00 +2023-05-29T04:00,20.1,963.7,4.49,9.49,159,160,0.00 +2023-05-29T05:00,19.5,963.8,4.83,9.98,167,169,0.00 +2023-05-29T06:00,19.0,963.7,5.12,10.14,168,170,0.00 +2023-05-29T07:00,18.1,963.5,4.83,9.61,174,177,0.00 +2023-05-29T08:00,17.3,963.0,4.61,9.20,176,180,0.00 +2023-05-29T09:00,16.8,962.7,4.63,9.40,174,179,0.00 +2023-05-29T10:00,16.7,962.5,5.01,9.90,177,180,0.00 +2023-05-29T11:00,16.7,962.8,5.20,10.11,181,183,0.00 +2023-05-29T12:00,17.8,963.0,5.18,9.35,170,174,0.00 +2023-05-29T13:00,19.5,963.3,5.09,10.71,160,169,0.00 +2023-05-29T14:00,21.7,963.2,6.02,8.85,159,162,0.00 +2023-05-29T15:00,24.0,963.0,6.86,9.46,161,162,0.00 +2023-05-29T16:00,25.1,963.5,7.42,9.92,184,184,0.00 +2023-05-29T17:00,26.1,963.2,6.71,8.91,183,183,0.00 +2023-05-29T18:00,24.9,962.9,6.30,8.20,190,189,0.20 +2023-05-29T19:00,25.9,962.1,7.17,9.56,172,173,0.00 +2023-05-29T20:00,25.6,961.5,6.81,9.12,183,184,0.00 +2023-05-29T21:00,26.2,960.8,6.52,8.65,184,186,0.00 +2023-05-29T22:00,27.4,960.0,5.51,7.41,176,178,0.00 +2023-05-29T23:00,26.5,959.3,6.62,9.02,195,195,0.00 +2023-05-30T00:00,23.3,959.4,4.98,9.62,128,133,0.00 +2023-05-30T01:00,22.5,959.2,6.08,10.19,135,137,0.00 +2023-05-30T02:00,21.8,959.3,6.38,11.01,148,148,0.00 +2023-05-30T03:00,21.3,959.9,5.94,10.66,147,151,0.00 +2023-05-30T04:00,21.5,960.3,6.43,10.89,165,169,0.00 +2023-05-30T05:00,20.9,960.1,5.90,10.37,169,173,0.00 +2023-05-30T06:00,20.1,960.1,6.36,10.98,172,173,0.00 +2023-05-30T07:00,20.0,959.9,6.82,11.71,176,178,0.00 +2023-05-30T08:00,20.2,959.8,7.24,12.21,186,188,0.00 +2023-05-30T09:00,20.2,959.6,7.09,12.04,189,191,0.00 +2023-05-30T10:00,20.0,959.5,6.99,11.94,193,196,0.00 +2023-05-30T11:00,19.9,959.6,6.87,11.73,196,199,0.00 +2023-05-30T12:00,19.5,960.0,5.73,9.49,196,200,0.00 +2023-05-30T13:00,20.8,960.3,6.02,9.08,185,188,0.00 +2023-05-30T14:00,22.7,960.4,6.75,9.56,192,193,0.00 +2023-05-30T15:00,25.0,960.6,6.71,9.17,205,205,0.00 +2023-05-30T16:00,26.8,960.6,6.69,8.88,202,203,0.00 +2023-05-30T17:00,27.8,960.7,6.58,8.63,197,198,0.00 +2023-05-30T18:00,28.6,960.3,6.21,8.10,195,196,0.00 +2023-05-30T19:00,26.8,960.3,5.35,7.12,197,197,0.70 +2023-05-30T20:00,26.0,960.0,6.16,8.10,193,193,0.30 +2023-05-30T21:00,27.2,959.7,5.54,7.38,187,189,0.00 +2023-05-30T22:00,25.5,960.1,7.68,10.34,188,189,0.80 +2023-05-30T23:00,23.7,959.6,3.14,4.42,233,232,0.00 +2023-05-31T00:00,24.7,959.1,5.47,8.10,162,164,0.00 +2023-05-31T01:00,24.5,959.0,4.37,8.10,160,164,0.00 +2023-05-31T02:00,23.1,959.2,4.65,8.92,155,157,0.00 +2023-05-31T03:00,21.4,959.6,6.08,10.49,171,172,0.00 +2023-05-31T04:00,20.9,960.1,5.82,10.35,185,186,0.00 +2023-05-31T05:00,20.5,960.3,5.71,10.22,191,192,0.00 +2023-05-31T06:00,20.3,960.3,6.28,11.06,194,195,0.00 +2023-05-31T07:00,20.1,960.2,5.94,10.45,193,195,0.00 +2023-05-31T08:00,20.0,960.1,5.63,10.18,197,198,0.00 +2023-05-31T09:00,19.9,960.1,5.61,10.02,202,205,0.00 +2023-05-31T10:00,19.3,960.1,5.42,9.79,203,207,0.00 +2023-05-31T11:00,18.8,960.3,5.39,9.84,202,207,0.00 +2023-05-31T12:00,19.7,960.3,5.59,9.31,190,195,0.00 +2023-05-31T13:00,21.2,960.7,5.43,8.30,193,195,0.00 +2023-05-31T14:00,23.2,961.1,4.92,6.75,185,187,0.00 +2023-05-31T15:00,25.3,961.4,4.55,5.95,171,172,0.00 +2023-05-31T16:00,27.3,961.5,4.66,5.92,157,158,0.00 +2023-05-31T17:00,28.8,961.4,5.37,7.02,153,154,0.00 +2023-05-31T18:00,29.6,961.1,6.02,7.85,159,158,0.00 +2023-05-31T19:00,29.4,961.2,4.87,6.30,161,160,1.00 +2023-05-31T20:00,29.3,960.6,5.65,7.62,167,166,0.00 +2023-05-31T21:00,28.2,961.1,5.00,6.90,178,178,1.30 +2023-05-31T22:00,24.5,961.0,5.68,7.83,206,207,0.00 +2023-05-31T23:00,25.9,960.8,2.83,3.85,188,189,0.00 +2023-06-01T00:00,26.1,961.3,1.22,1.75,125,149,0.00 +2023-06-01T01:00,25.1,960.7,2.51,4.47,113,124,0.00 +2023-06-01T02:00,23.3,960.1,3.07,6.31,109,115,0.00 +2023-06-01T03:00,22.2,960.4,3.04,6.59,136,138,0.00 +2023-06-01T04:00,21.6,960.9,3.14,7.02,158,160,0.00 +2023-06-01T05:00,21.3,961.4,3.67,8.04,163,163,0.00 +2023-06-01T06:00,20.8,961.4,3.85,7.96,171,173,0.00 +2023-06-01T07:00,19.9,961.4,3.83,7.92,173,176,0.00 +2023-06-01T08:00,19.3,961.6,4.10,8.20,180,181,0.00 +2023-06-01T09:00,19.1,961.7,4.10,8.33,183,185,0.00 +2023-06-01T10:00,19.0,962.2,3.90,8.02,179,184,0.00 +2023-06-01T11:00,18.7,962.4,3.40,7.26,182,187,0.00 +2023-06-01T12:00,19.6,962.9,3.19,5.61,148,158,0.00 +2023-06-01T13:00,21.6,963.9,3.11,6.44,147,152,0.00 +2023-06-01T14:00,23.6,964.5,3.56,4.80,142,144,0.00 +2023-06-01T15:00,25.1,964.8,4.39,5.66,137,138,0.00 +2023-06-01T16:00,26.2,964.6,4.74,6.01,132,133,0.00 +2023-06-01T17:00,27.0,964.3,4.53,5.66,133,134,0.00 +2023-06-01T18:00,27.7,964.2,4.74,6.02,138,138,0.00 +2023-06-01T19:00,28.2,963.8,4.68,5.95,138,139,0.00 +2023-06-01T20:00,28.6,963.3,4.24,5.35,146,147,0.00 +2023-06-01T21:00,28.5,963.0,4.03,5.07,157,158,0.00 +2023-06-01T22:00,28.2,962.7,4.12,5.14,174,173,0.00 +2023-06-01T23:00,26.4,962.7,4.49,5.85,163,163,0.00 +2023-06-02T00:00,26.6,963.1,3.94,5.65,156,157,0.00 +2023-06-02T01:00,21.9,963.6,3.57,5.50,108,115,0.00 +2023-06-02T02:00,21.7,963.6,3.58,6.58,113,126,0.00 +2023-06-02T03:00,21.8,964.3,3.76,7.12,130,142,0.00 +2023-06-02T04:00,21.4,964.6,3.94,7.68,153,162,0.00 +2023-06-02T05:00,21.1,964.7,4.51,8.58,167,172,0.00 +2023-06-02T06:00,20.9,965.0,4.49,8.46,168,173,0.00 +2023-06-02T07:00,21.4,965.0,4.43,8.01,174,178,0.00 +2023-06-02T08:00,21.3,964.8,4.40,7.82,180,184,0.00 +2023-06-02T09:00,20.8,965.0,4.40,8.02,180,184,0.00 +2023-06-02T10:00,20.0,965.2,3.80,7.33,180,185,0.00 +2023-06-02T11:00,19.3,965.6,3.63,7.11,172,178,0.00 +2023-06-02T12:00,19.6,965.9,4.21,7.33,184,185,0.00 +2023-06-02T13:00,21.1,966.2,4.20,6.31,181,184,0.00 +2023-06-02T14:00,23.4,967.1,4.10,5.60,181,182,0.00 +2023-06-02T15:00,25.4,967.3,4.34,5.77,188,189,0.00 +2023-06-02T16:00,26.4,967.2,4.41,5.72,184,185,0.10 +2023-06-02T17:00,27.1,967.1,4.34,5.66,172,172,0.10 +2023-06-02T18:00,28.1,966.8,4.39,5.61,168,169,0.00 +2023-06-02T19:00,29.1,966.5,4.62,5.89,158,159,0.00 +2023-06-02T20:00,29.4,965.8,5.15,6.67,156,156,0.00 +2023-06-02T21:00,29.2,964.8,5.44,7.10,148,148,0.00 +2023-06-02T22:00,28.9,964.2,5.01,6.57,154,154,0.00 +2023-06-02T23:00,29.0,964.9,4.34,5.77,154,154,0.00 +2023-06-03T00:00,26.9,965.3,2.42,3.30,97,104,0.00 +2023-06-03T01:00,23.7,966.2,3.14,4.41,202,193,2.70 +2023-06-03T02:00,20.4,965.8,1.22,0.73,279,254,2.80 +2023-06-03T03:00,20.6,965.6,2.22,4.73,98,103,0.00 +2023-06-03T04:00,20.8,965.8,2.94,6.44,108,116,0.00 +2023-06-03T05:00,20.9,965.7,3.31,6.94,119,126,0.00 +2023-06-03T06:00,20.5,966.0,3.72,7.56,121,127,0.00 +2023-06-03T07:00,20.0,965.6,3.41,7.21,130,136,0.00 +2023-06-03T08:00,19.5,965.6,2.97,6.61,132,141,0.00 +2023-06-03T09:00,19.1,965.7,2.73,6.08,118,126,0.00 +2023-06-03T10:00,18.6,965.9,2.75,6.08,109,117,0.00 +2023-06-03T11:00,18.4,966.2,2.68,6.11,117,122,0.00 +2023-06-03T12:00,19.2,966.9,2.75,5.11,100,113,0.00 +2023-06-03T13:00,21.3,967.6,2.40,5.03,92,107,0.00 +2023-06-03T14:00,22.7,968.2,2.70,3.63,92,98,0.00 +2023-06-03T15:00,23.7,968.6,2.62,3.44,97,98,0.00 +2023-06-03T16:00,24.9,968.7,2.90,3.72,92,96,0.00 +2023-06-03T17:00,26.3,968.7,3.67,4.51,101,103,1.10 +2023-06-03T18:00,26.6,968.7,3.49,4.43,117,115,0.00 +2023-06-03T19:00,28.2,968.0,3.35,4.21,117,118,0.10 +2023-06-03T20:00,25.8,968.1,4.44,5.64,98,97,2.60 +2023-06-03T21:00,25.6,967.5,2.70,3.50,88,88,0.70 +2023-06-03T22:00,26.9,967.5,3.01,3.80,86,88,0.00 +2023-06-03T23:00,27.0,967.2,3.30,4.30,92,93,0.00 +2023-06-04T00:00,26.3,966.9,3.50,5.70,88,90,0.00 +2023-06-04T01:00,25.1,967.0,2.26,4.75,77,82,0.00 +2023-06-04T02:00,22.9,966.9,1.90,4.80,90,90,0.00 +2023-06-04T03:00,22.2,967.3,2.00,5.00,93,90,0.00 +2023-06-04T04:00,21.4,967.3,2.12,5.32,82,86,0.00 +2023-06-04T05:00,21.0,967.1,2.30,5.82,90,95,0.00 +2023-06-04T06:00,20.3,967.1,2.16,5.75,103,103,0.00 +2023-06-04T07:00,20.0,966.9,2.15,5.74,118,113,0.00 +2023-06-04T08:00,19.6,966.8,2.06,5.19,119,115,0.00 +2023-06-04T09:00,19.0,966.8,2.21,4.74,108,108,0.00 +2023-06-04T10:00,18.9,967.0,2.11,5.11,95,93,0.00 +2023-06-04T11:00,18.5,967.5,1.87,4.77,74,80,0.00 +2023-06-04T12:00,20.8,967.8,2.06,4.74,76,97,0.00 +2023-06-04T13:00,22.4,968.7,1.34,3.04,117,107,0.00 +2023-06-04T14:00,22.3,969.3,2.88,3.69,250,237,1.20 +2023-06-04T15:00,24.8,969.4,0.81,0.82,277,256,0.00 +2023-06-04T16:00,26.7,969.4,0.81,1.02,173,169,0.00 +2023-06-04T17:00,27.8,969.3,2.15,2.56,62,69,0.00 +2023-06-04T18:00,26.6,969.0,1.88,2.33,65,65,0.20 +2023-06-04T19:00,28.0,968.6,0.76,0.95,113,108,0.00 +2023-06-04T20:00,28.1,968.0,1.77,2.20,43,51,0.00 +2023-06-04T21:00,29.0,967.5,2.28,2.91,61,63,0.00 +2023-06-04T22:00,26.0,967.5,1.71,2.06,159,151,1.00 +2023-06-04T23:00,26.1,967.3,1.49,1.92,20,28,0.00 +2023-06-05T00:00,25.6,966.4,1.42,4.49,129,111,0.00 +2023-06-05T01:00,26.0,967.1,2.10,4.73,90,96,0.00 +2023-06-05T02:00,22.8,967.0,2.16,4.07,103,115,0.00 +2023-06-05T03:00,21.4,967.2,2.19,4.38,137,135,0.00 +2023-06-05T04:00,20.8,967.3,2.10,4.75,155,150,0.00 +2023-06-05T05:00,19.6,967.1,2.95,3.98,152,152,0.00 +2023-06-05T06:00,20.5,967.2,2.10,2.64,155,143,0.00 +2023-06-05T07:00,19.1,967.0,2.11,2.50,175,143,0.00 +2023-06-05T08:00,18.8,966.8,2.34,3.00,160,127,0.00 +2023-06-05T09:00,19.0,966.9,2.04,2.58,169,126,0.00 +2023-06-05T10:00,21.0,967.2,0.81,1.25,210,119,0.00 +2023-06-05T11:00,20.2,967.3,0.42,0.63,225,108,0.00 +2023-06-05T12:00,20.7,967.9,1.22,2.46,125,117,0.00 +2023-06-05T13:00,22.8,968.3,1.13,2.22,135,126,0.00 +2023-06-05T14:00,25.3,968.7,0.99,1.56,135,135,0.00 +2023-06-05T15:00,27.0,969.0,1.00,1.22,143,145,0.00 +2023-06-05T16:00,28.3,969.0,1.03,1.25,151,151,0.00 +2023-06-05T17:00,28.9,968.8,1.17,1.44,121,124,0.00 +2023-06-05T18:00,29.4,968.5,1.48,1.84,118,119,0.00 +2023-06-05T19:00,29.5,968.3,1.49,1.84,138,135,0.00 +2023-06-05T20:00,29.9,967.8,1.44,1.72,146,144,0.00 +2023-06-05T21:00,29.8,967.3,1.20,1.42,138,141,0.00 +2023-06-05T22:00,29.2,967.0,1.36,1.64,126,128,0.00 +2023-06-05T23:00,29.0,966.6,1.08,1.25,124,119,0.00 +2023-06-06T00:00,29.2,966.1,1.77,3.05,47,49,0.00 +2023-06-06T01:00,27.2,965.9,1.50,2.70,37,51,0.00 +2023-06-06T02:00,25.3,965.7,1.92,1.97,39,60,0.00 +2023-06-06T03:00,24.6,966.0,1.32,1.61,9,60,0.00 +2023-06-06T04:00,21.7,965.6,2.19,2.55,66,101,0.00 +2023-06-06T05:00,21.9,965.5,2.69,6.73,121,138,0.00 +2023-06-06T06:00,21.8,965.2,3.05,7.11,148,154,0.00 +2023-06-06T07:00,20.2,965.0,2.12,5.72,172,175,0.00 +2023-06-06T08:00,19.6,964.9,2.28,5.77,209,208,0.00 +2023-06-06T09:00,19.4,964.8,2.66,6.01,214,226,0.00 +2023-06-06T10:00,20.4,964.8,3.20,6.36,219,233,0.00 +2023-06-06T11:00,21.0,965.0,3.61,6.74,222,235,0.00 +2023-06-06T12:00,20.2,965.1,2.12,3.49,352,333,0.00 +2023-06-06T13:00,21.5,965.2,0.86,1.99,324,342,0.00 +2023-06-06T14:00,23.8,965.5,1.17,1.52,329,337,0.00 +2023-06-06T15:00,25.8,965.5,1.61,2.02,7,9,0.00 +2023-06-06T16:00,27.2,965.3,2.01,2.46,27,27,0.00 +2023-06-06T17:00,28.4,965.0,1.66,2.01,25,27,0.00 +2023-06-06T18:00,29.3,964.6,1.36,1.65,17,14,0.00 +2023-06-06T19:00,29.8,964.1,1.41,1.61,8,7,0.00 +2023-06-06T20:00,30.3,963.5,1.60,1.90,360,360,0.00 +2023-06-06T21:00,30.2,963.0,1.80,2.11,357,355,0.00 +2023-06-06T22:00,30.0,962.3,1.50,1.80,360,360,0.00 +2023-06-06T23:00,29.5,961.9,1.94,2.35,348,348,0.00 +2023-06-07T00:00,28.2,962.1,1.84,2.55,103,101,0.00 +2023-06-07T01:00,26.8,962.1,1.20,2.80,90,88,0.00 +2023-06-07T02:00,24.4,961.6,1.80,4.20,93,91,0.00 +2023-06-07T03:00,24.1,961.6,2.94,6.21,108,105,0.00 +2023-06-07T04:00,23.1,961.7,3.07,6.61,109,110,0.00 +2023-06-07T05:00,22.5,961.5,3.73,7.62,110,109,0.00 +2023-06-07T06:00,21.7,961.7,3.22,6.72,120,120,0.00 +2023-06-07T07:00,20.8,961.6,2.62,6.01,137,137,0.00 +2023-06-07T08:00,20.6,961.6,2.51,5.46,113,125,0.00 +2023-06-07T09:00,20.3,961.4,3.81,6.99,93,99,0.00 +2023-06-07T10:00,19.4,960.9,4.02,7.74,117,117,0.00 +2023-06-07T11:00,18.8,961.4,4.30,7.64,126,127,0.00 +2023-06-07T12:00,19.7,961.9,3.31,6.89,95,99,0.00 +2023-06-07T13:00,21.3,962.1,3.35,5.14,100,103,0.00 +2023-06-07T14:00,23.4,962.3,3.16,4.14,108,110,0.00 +2023-06-07T15:00,25.0,962.5,3.59,4.54,103,104,0.00 +2023-06-07T16:00,26.1,962.4,3.67,4.62,107,108,0.00 +2023-06-07T17:00,26.6,962.3,3.26,4.02,108,109,0.10 +2023-06-07T18:00,27.2,962.0,3.26,3.98,101,102,0.10 +2023-06-07T19:00,27.5,961.3,3.41,4.13,95,97,0.00 +2023-06-07T20:00,28.0,961.1,2.60,3.10,88,90,0.00 +2023-06-07T21:00,25.6,960.8,3.61,4.41,95,94,3.40 +2023-06-07T22:00,24.8,960.4,0.40,0.82,90,104,0.30 +2023-06-07T23:00,23.5,960.5,0.51,0.72,169,146,2.10 +2023-06-08T00:00,25.1,960.6,3.01,3.91,94,94,0.20 +2023-06-08T01:00,23.8,960.7,3.41,5.45,95,97,0.10 +2023-06-08T02:00,22.2,960.5,2.94,5.82,108,109,0.00 +2023-06-08T03:00,21.2,960.4,2.60,5.89,106,111,0.00 +2023-06-08T04:00,20.9,960.4,2.91,6.26,106,110,0.00 +2023-06-08T05:00,20.8,960.9,3.67,7.17,116,120,0.00 +2023-06-08T06:00,20.7,961.2,3.98,7.22,118,127,0.00 +2023-06-08T07:00,19.1,961.2,5.46,8.67,104,107,0.00 +2023-06-08T08:00,17.9,961.1,5.19,8.38,109,113,0.00 +2023-06-08T09:00,16.8,961.2,5.30,8.54,101,106,0.00 +2023-06-08T10:00,15.3,961.2,5.66,9.38,126,126,0.00 +2023-06-08T11:00,15.3,961.2,4.95,8.35,133,137,2.20 +2023-06-08T12:00,15.4,961.7,4.67,7.92,135,137,0.40 +2023-06-08T13:00,16.1,961.6,3.67,8.13,116,134,5.10 +2023-06-08T14:00,16.4,962.0,3.42,5.32,128,131,1.90 +2023-06-08T15:00,16.9,962.3,4.58,6.24,144,145,0.10 +2023-06-08T16:00,19.4,962.5,5.15,6.66,151,152,0.00 +2023-06-08T17:00,20.6,962.8,5.19,6.71,152,153,0.00 +2023-06-08T18:00,21.5,962.6,4.85,6.18,166,166,0.00 +2023-06-08T19:00,22.8,962.2,4.15,5.19,165,164,0.00 +2023-06-08T20:00,23.7,962.1,4.05,5.10,164,164,0.00 +2023-06-08T21:00,24.1,961.7,3.58,4.44,157,157,0.00 +2023-06-08T22:00,24.3,961.2,3.52,4.47,145,146,0.00 +2023-06-08T23:00,24.1,960.8,3.75,4.75,138,139,0.00 +2023-06-09T00:00,23.6,960.6,3.41,4.55,140,140,0.00 +2023-06-09T01:00,22.6,961.3,1.98,3.89,131,132,0.00 +2023-06-09T02:00,20.3,961.5,1.78,4.32,128,132,0.00 +2023-06-09T03:00,19.5,961.9,2.95,6.14,118,120,0.00 +2023-06-09T04:00,19.0,962.1,3.55,7.57,122,124,0.00 +2023-06-09T05:00,18.4,962.3,3.68,7.67,137,140,0.00 +2023-06-09T06:00,17.9,962.3,3.64,7.74,148,151,0.00 +2023-06-09T07:00,17.7,962.0,3.86,8.01,163,164,0.00 +2023-06-09T08:00,17.4,961.9,3.75,7.67,171,173,0.00 +2023-06-09T09:00,16.8,962.0,3.73,7.63,188,191,0.00 +2023-06-09T10:00,16.7,961.8,3.93,7.94,195,197,0.00 +2023-06-09T11:00,16.4,962.0,3.89,7.78,198,200,0.00 +2023-06-09T12:00,17.4,962.5,4.07,7.20,205,205,0.00 +2023-06-09T13:00,19.1,962.1,3.70,6.64,180,186,0.00 +2023-06-09T14:00,19.9,962.4,3.60,5.10,180,182,0.00 +2023-06-09T15:00,21.7,962.7,4.28,5.63,191,192,0.00 +2023-06-09T16:00,21.6,962.6,4.59,5.95,196,197,0.00 +2023-06-09T17:00,21.7,962.7,4.21,5.50,198,199,0.00 +2023-06-09T18:00,22.2,962.2,3.98,5.12,192,192,0.00 +2023-06-09T19:00,22.7,961.6,4.34,5.70,195,195,0.00 +2023-06-09T20:00,23.3,961.1,4.32,5.53,185,186,0.00 +2023-06-09T21:00,22.9,960.3,4.32,5.64,185,187,0.10 +2023-06-09T22:00,23.6,959.7,3.63,4.59,188,191,0.00 +2023-06-09T23:00,23.7,959.1,3.21,4.20,175,177,0.00 +2023-06-10T00:00,22.9,959.3,3.95,5.39,189,191,0.10 +2023-06-10T01:00,22.3,959.0,2.33,3.91,170,176,0.00 +2023-06-10T02:00,20.9,959.2,2.71,5.61,176,183,0.00 +2023-06-10T03:00,20.0,959.4,2.50,5.61,180,191,0.00 +2023-06-10T04:00,19.2,959.3,2.55,5.49,206,213,0.10 +2023-06-10T05:00,18.7,959.0,2.64,5.66,209,216,0.00 +2023-06-10T06:00,18.4,959.0,3.68,6.73,227,228,0.00 +2023-06-10T07:00,17.9,958.8,4.61,8.01,243,241,0.00 +2023-06-10T08:00,18.0,958.1,2.55,4.96,225,236,0.00 +2023-06-10T09:00,17.3,957.3,1.44,3.54,214,227,0.00 +2023-06-10T10:00,17.1,957.4,1.42,3.52,219,235,0.00 +2023-06-10T11:00,17.1,957.4,1.00,2.41,186,222,0.00 +2023-06-10T12:00,17.6,957.2,0.41,0.81,76,330,0.00 +2023-06-10T13:00,18.8,958.0,0.73,0.91,106,96,0.00 +2023-06-10T14:00,20.4,958.2,1.30,1.53,58,58,0.10 +2023-06-10T15:00,21.4,958.3,2.58,3.16,54,55,0.10 +2023-06-10T16:00,22.0,958.4,3.00,3.67,60,61,0.10 +2023-06-10T17:00,23.3,958.6,3.14,3.94,59,60,0.20 +2023-06-10T18:00,23.9,958.1,3.18,4.02,62,63,0.10 +2023-06-10T19:00,24.4,957.8,3.49,4.34,63,64,0.00 +2023-06-10T20:00,25.0,957.4,3.58,4.53,60,59,0.00 +2023-06-10T21:00,24.9,957.5,3.64,4.65,58,62,0.00 +2023-06-10T22:00,20.9,957.9,6.80,9.07,33,34,2.60 +2023-06-10T23:00,19.3,958.3,3.62,5.14,62,63,0.20 +2023-06-11T00:00,19.0,957.9,4.44,6.46,82,82,0.00 +2023-06-11T01:00,18.3,958.9,3.67,5.77,61,64,0.40 +2023-06-11T02:00,18.1,959.6,5.94,9.59,57,60,0.00 +2023-06-11T03:00,17.4,960.4,6.12,9.96,52,54,0.00 +2023-06-11T04:00,16.6,961.1,6.86,10.90,44,47,0.00 +2023-06-11T05:00,15.2,961.6,7.00,11.03,43,45,0.00 +2023-06-11T06:00,13.8,961.9,6.52,10.33,41,43,0.00 +2023-06-11T07:00,12.8,962.2,6.17,9.97,40,44,0.00 +2023-06-11T08:00,12.0,962.7,5.81,9.48,41,44,0.00 +2023-06-11T09:00,11.4,963.0,5.61,9.33,40,44,0.00 +2023-06-11T10:00,10.8,963.4,5.58,9.30,36,40,0.00 +2023-06-11T11:00,10.2,964.0,5.33,8.89,34,39,0.00 +2023-06-11T12:00,9.8,964.9,5.87,8.50,23,27,0.00 +2023-06-11T13:00,10.5,965.6,6.75,9.17,25,27,0.00 +2023-06-11T14:00,11.7,965.8,6.84,9.17,25,27,0.00 +2023-06-11T15:00,13.1,966.0,7.34,9.71,24,25,0.00 +2023-06-11T16:00,14.5,966.0,7.35,9.68,22,23,0.00 +2023-06-11T17:00,15.8,965.9,7.41,9.82,21,22,0.00 +2023-06-11T18:00,17.1,965.8,7.22,9.55,22,23,0.00 +2023-06-11T19:00,18.3,965.5,6.96,9.12,21,21,0.00 +2023-06-11T20:00,19.1,965.3,6.51,8.54,18,18,0.00 +2023-06-11T21:00,19.6,964.9,6.18,8.05,14,14,0.00 +2023-06-11T22:00,19.8,964.8,6.02,7.89,11,12,0.00 +2023-06-11T23:00,19.7,964.6,5.51,7.35,12,12,0.00 +2023-06-12T00:00,19.0,964.6,4.69,6.55,11,12,0.00 +2023-06-12T01:00,17.8,964.6,3.65,6.43,9,12,0.00 +2023-06-12T02:00,15.1,964.2,2.09,5.29,17,22,0.00 +2023-06-12T03:00,13.8,964.6,2.16,5.73,56,61,0.00 +2023-06-12T04:00,12.2,964.5,2.94,4.62,100,85,0.00 +2023-06-12T05:00,11.5,964.4,2.78,3.58,142,113,0.00 +2023-06-12T06:00,11.0,964.4,2.06,2.84,203,170,0.00 +2023-06-12T07:00,11.2,964.2,2.39,3.89,237,226,0.00 +2023-06-12T08:00,11.1,963.9,2.82,5.15,247,252,0.00 +2023-06-12T09:00,11.0,963.8,2.88,5.74,250,263,0.00 +2023-06-12T10:00,10.9,963.9,2.94,6.02,260,281,0.00 +2023-06-12T11:00,10.9,963.8,2.86,6.24,282,305,0.00 +2023-06-12T12:00,13.3,964.7,3.64,7.07,302,315,0.00 +2023-06-12T13:00,15.8,965.1,3.81,7.28,300,314,0.00 +2023-06-12T14:00,18.3,965.2,4.02,5.98,305,308,0.00 +2023-06-12T15:00,19.9,965.1,4.88,6.37,316,316,0.00 +2023-06-12T16:00,20.9,964.7,4.26,5.34,321,322,0.00 +2023-06-12T17:00,21.6,964.1,3.76,4.69,320,320,0.00 +2023-06-12T18:00,22.5,963.4,4.27,5.35,327,327,0.00 +2023-06-12T19:00,23.2,962.6,4.19,5.41,327,326,0.00 +2023-06-12T20:00,23.1,962.0,5.57,7.26,339,337,0.00 +2023-06-12T21:00,22.7,961.4,4.10,5.64,317,323,0.00 +2023-06-12T22:00,24.2,960.8,4.05,5.40,320,321,0.00 +2023-06-12T23:00,23.7,960.1,4.50,6.38,323,325,0.00 +2023-06-13T00:00,22.8,960.1,3.77,6.19,328,329,0.00 +2023-06-13T01:00,21.1,959.9,3.12,6.60,320,325,0.00 +2023-06-13T02:00,17.5,959.0,2.86,4.33,295,320,0.00 +2023-06-13T03:00,17.3,959.1,2.73,5.69,278,294,0.00 +2023-06-13T04:00,17.9,959.3,3.77,8.27,292,302,0.00 +2023-06-13T05:00,17.4,959.2,2.91,6.98,319,322,0.00 +2023-06-13T06:00,15.4,958.7,2.42,6.13,322,332,0.00 +2023-06-13T07:00,14.4,958.4,2.40,5.88,287,305,0.00 +2023-06-13T08:00,15.2,958.1,3.71,8.42,284,294,0.00 +2023-06-13T09:00,15.2,957.8,3.79,8.50,288,298,0.00 +2023-06-13T10:00,14.7,957.7,3.49,7.78,283,296,0.00 +2023-06-13T11:00,14.4,957.7,3.28,7.47,282,296,0.00 +2023-06-13T12:00,15.8,957.9,3.58,7.11,297,309,0.00 +2023-06-13T13:00,18.1,958.4,3.38,7.00,304,313,0.00 +2023-06-13T14:00,20.5,958.5,3.06,4.60,308,312,0.00 +2023-06-13T15:00,22.7,958.8,3.04,3.96,316,317,0.00 +2023-06-13T16:00,24.5,958.5,3.58,4.58,324,324,0.00 +2023-06-13T17:00,25.3,958.2,4.44,5.75,329,329,0.00 +2023-06-13T18:00,25.7,957.9,4.47,5.77,326,326,0.00 +2023-06-13T19:00,26.6,957.3,4.24,5.59,313,314,0.00 +2023-06-13T20:00,27.5,956.8,4.31,5.66,314,314,0.00 +2023-06-13T21:00,27.6,956.4,4.31,5.69,338,336,0.00 +2023-06-13T22:00,27.7,955.9,3.49,4.68,347,344,0.00 +2023-06-13T23:00,27.4,955.4,3.34,4.98,321,322,0.00 +2023-06-14T00:00,25.6,955.6,3.99,6.87,338,339,0.00 +2023-06-14T01:00,23.7,955.4,2.80,5.92,2,5,0.00 +2023-06-14T02:00,20.3,955.2,2.56,5.35,21,21,0.00 +2023-06-14T03:00,18.7,955.3,3.36,5.16,23,22,0.00 +2023-06-14T04:00,17.9,955.2,3.32,5.00,7,20,0.00 +2023-06-14T05:00,17.3,955.2,2.78,3.83,330,7,0.00 +2023-06-14T06:00,16.1,955.1,2.94,3.70,325,360,0.00 +2023-06-14T07:00,15.5,954.7,2.86,3.13,335,17,0.00 +2023-06-14T08:00,14.8,954.3,2.28,2.19,337,43,0.00 +2023-06-14T09:00,14.1,954.2,1.84,1.84,331,22,0.00 +2023-06-14T10:00,13.3,954.4,2.36,2.52,324,7,0.00 +2023-06-14T11:00,13.3,954.8,2.39,3.10,327,2,0.00 +2023-06-14T12:00,15.7,955.6,2.92,5.10,354,11,0.00 +2023-06-14T13:00,18.2,956.2,2.00,3.94,357,24,0.00 +2023-06-14T14:00,21.0,956.7,1.53,2.68,11,27,0.00 +2023-06-14T15:00,23.0,957.1,1.93,2.51,21,23,0.00 +2023-06-14T16:00,24.4,957.1,2.69,3.36,22,23,0.00 +2023-06-14T17:00,25.4,957.2,2.92,3.55,31,32,0.00 +2023-06-14T18:00,26.0,957.2,2.78,3.41,38,40,0.00 +2023-06-14T19:00,26.5,956.7,2.55,3.05,48,49,0.00 +2023-06-14T20:00,26.9,956.3,1.94,2.39,55,57,0.00 +2023-06-14T21:00,27.0,956.2,1.70,2.00,50,53,0.00 +2023-06-14T22:00,27.0,956.0,1.39,1.72,30,36,0.00 +2023-06-14T23:00,26.7,955.8,1.68,1.99,17,18,0.00 +2023-06-15T00:00,26.0,955.8,1.86,2.48,36,40,0.00 +2023-06-15T01:00,24.0,955.8,1.90,4.27,18,21,0.00 +2023-06-15T02:00,21.3,955.4,1.93,4.75,21,22,0.00 +2023-06-15T03:00,19.4,955.5,3.00,4.36,37,37,0.00 +2023-06-15T04:00,18.8,955.5,3.19,4.20,41,38,0.00 +2023-06-15T05:00,19.1,955.6,2.64,3.66,65,55,0.00 +2023-06-15T06:00,21.3,956.2,2.01,2.92,96,68,0.00 +2023-06-15T07:00,21.2,956.2,1.49,2.26,110,77,0.00 +2023-06-15T08:00,20.5,956.1,1.17,1.73,160,100,0.00 +2023-06-15T09:00,16.3,955.2,1.82,1.84,189,139,0.00 +2023-06-15T10:00,15.3,955.3,1.92,1.91,208,174,0.00 +2023-06-15T11:00,15.0,955.7,1.89,1.70,212,180,0.00 +2023-06-15T12:00,19.2,956.8,1.12,2.05,170,133,0.00 +2023-06-15T13:00,21.5,957.7,1.33,2.22,77,98,0.00 +2023-06-15T14:00,22.7,958.2,2.19,2.69,66,68,0.00 +2023-06-15T15:00,24.2,958.4,1.63,1.90,79,87,0.00 +2023-06-15T16:00,25.6,958.4,1.46,1.73,74,80,0.00 +2023-06-15T17:00,26.6,958.4,1.63,1.84,47,49,0.00 +2023-06-15T18:00,27.2,958.4,2.06,2.34,23,20,0.00 +2023-06-15T19:00,27.4,958.3,2.24,2.63,10,9,0.00 +2023-06-15T20:00,27.4,958.5,2.31,2.69,18,15,0.00 +2023-06-15T21:00,27.3,958.3,2.30,2.80,34,35,0.00 +2023-06-15T22:00,27.2,958.1,2.64,3.20,53,51,0.00 +2023-06-15T23:00,26.8,958.3,2.91,3.67,63,64,0.00 +2023-06-16T00:00,24.4,958.6,6.04,8.32,71,72,0.00 +2023-06-16T01:00,22.7,959.2,5.41,8.29,71,72,0.00 +2023-06-16T02:00,20.9,959.5,4.83,8.18,77,78,0.00 +2023-06-16T03:00,19.7,960.4,4.10,7.55,77,79,0.00 +2023-06-16T04:00,18.7,961.1,4.65,8.32,71,74,0.00 +2023-06-16T05:00,17.7,961.4,4.39,7.91,78,81,0.00 +2023-06-16T06:00,16.7,961.9,4.30,7.91,90,92,0.00 +2023-06-16T07:00,15.9,962.1,4.30,7.84,93,96,0.00 +2023-06-16T08:00,15.1,962.0,4.03,7.62,104,107,0.00 +2023-06-16T09:00,14.3,962.2,3.41,6.73,93,101,0.00 +2023-06-16T10:00,13.5,962.1,3.80,7.06,90,97,0.00 +2023-06-16T11:00,12.9,962.5,3.61,6.59,93,100,0.00 +2023-06-16T12:00,13.1,963.2,3.35,5.82,107,114,0.00 +2023-06-16T13:00,14.5,963.6,3.96,5.33,111,113,0.00 +2023-06-16T14:00,16.2,964.0,3.98,5.19,108,109,0.00 +2023-06-16T15:00,18.2,964.3,3.52,4.49,105,107,0.00 +2023-06-16T16:00,19.9,964.5,3.23,3.98,106,108,0.00 +2023-06-16T17:00,21.4,964.6,3.26,4.02,108,109,0.00 +2023-06-16T18:00,22.8,964.4,3.26,4.00,101,103,0.00 +2023-06-16T19:00,23.7,964.1,3.11,3.82,96,96,0.00 +2023-06-16T20:00,24.4,963.8,3.11,3.71,94,95,0.00 +2023-06-16T21:00,24.8,963.5,3.28,4.12,102,104,0.00 +2023-06-16T22:00,24.8,963.0,3.49,4.43,114,115,0.00 +2023-06-16T23:00,24.8,963.0,3.36,4.22,120,121,0.00 +2023-06-17T00:00,23.1,963.0,3.24,4.28,99,101,0.00 +2023-06-17T01:00,22.2,963.5,1.90,3.64,108,111,0.00 +2023-06-17T02:00,19.4,963.5,2.00,3.42,90,105,0.00 +2023-06-17T03:00,18.8,963.7,1.82,4.21,99,108,0.00 +2023-06-17T04:00,18.2,963.7,2.28,5.15,105,108,0.00 +2023-06-17T05:00,17.9,963.5,2.69,6.13,112,114,0.00 +2023-06-17T06:00,17.8,963.1,3.02,6.82,124,125,0.00 +2023-06-17T07:00,17.5,962.9,3.50,7.49,143,146,0.00 +2023-06-17T08:00,17.3,962.2,3.72,7.83,149,153,0.00 +2023-06-17T09:00,17.0,962.2,3.83,7.91,165,167,0.00 +2023-06-17T10:00,16.8,962.2,3.82,7.82,174,176,0.00 +2023-06-17T11:00,16.7,962.1,3.91,7.79,167,171,0.00 +2023-06-17T12:00,18.1,962.3,5.03,8.56,163,166,0.00 +2023-06-17T13:00,19.3,962.1,5.15,8.29,162,162,0.00 +2023-06-17T14:00,20.9,962.3,5.65,7.96,167,168,0.00 +2023-06-17T15:00,22.7,962.3,5.32,7.03,175,175,0.00 +2023-06-17T16:00,24.2,962.3,5.47,7.22,189,190,0.00 +2023-06-17T17:00,25.7,961.8,5.66,7.40,197,199,0.00 +2023-06-17T18:00,24.7,961.2,5.66,7.48,201,203,1.20 +2023-06-17T19:00,24.6,960.3,4.09,5.35,202,201,0.00 +2023-06-17T20:00,26.1,959.6,4.46,5.57,189,189,0.00 +2023-06-17T21:00,26.0,958.9,4.60,5.90,179,180,0.20 +2023-06-17T22:00,25.6,958.4,6.02,7.74,195,194,0.30 +2023-06-17T23:00,22.8,958.5,4.81,6.39,197,197,0.00 +2023-06-18T00:00,25.7,958.4,4.18,6.18,138,141,0.10 +2023-06-18T01:00,22.4,959.0,2.79,4.59,201,196,0.00 +2023-06-18T02:00,20.5,958.8,1.80,2.16,34,34,0.00 +2023-06-18T03:00,19.7,958.6,3.22,5.36,97,104,0.00 +2023-06-18T04:00,18.8,958.4,3.41,6.09,130,132,0.10 +2023-06-18T05:00,18.3,957.9,3.04,5.99,153,154,0.10 +2023-06-18T06:00,18.4,957.6,3.13,5.91,153,156,0.00 +2023-06-18T07:00,18.1,956.9,2.51,5.22,157,163,0.00 +2023-06-18T08:00,18.1,956.7,1.58,3.81,162,166,0.00 +2023-06-18T09:00,18.3,956.9,0.51,1.49,101,160,0.00 +2023-06-18T10:00,17.7,956.7,0.71,0.63,8,18,0.00 +2023-06-18T11:00,16.5,956.5,1.32,1.20,81,85,0.00 +2023-06-18T12:00,17.9,956.3,2.79,4.87,75,81,0.00 +2023-06-18T13:00,18.2,956.1,2.67,3.79,77,78,0.20 +2023-06-18T14:00,19.0,956.4,4.10,5.30,89,89,0.20 +2023-06-18T15:00,20.2,956.7,4.14,5.36,98,99,0.20 +2023-06-18T16:00,20.7,956.2,3.51,4.51,85,86,0.10 +2023-06-18T17:00,22.3,956.4,3.45,4.28,80,79,0.00 +2023-06-18T18:00,22.9,956.2,2.60,3.23,67,68,0.00 +2023-06-18T19:00,22.9,955.6,1.94,2.39,55,57,0.00 +2023-06-18T20:00,22.9,955.2,2.08,2.52,55,56,0.00 +2023-06-18T21:00,23.8,954.9,1.63,1.98,47,49,0.00 +2023-06-18T22:00,24.1,954.7,1.56,1.77,45,47,0.10 +2023-06-18T23:00,24.4,954.5,1.50,1.80,53,56,0.00 +2023-06-19T00:00,24.0,955.4,1.52,1.79,23,27,0.00 +2023-06-19T01:00,23.2,955.9,1.28,1.77,39,43,0.10 +2023-06-19T02:00,21.6,956.0,1.40,3.20,90,92,0.00 +2023-06-19T03:00,19.7,956.2,2.02,2.47,99,104,0.00 +2023-06-19T04:00,18.9,956.4,2.16,2.53,103,108,0.00 +2023-06-19T05:00,18.9,956.4,2.06,3.98,113,115,0.00 +2023-06-19T06:00,18.3,956.2,2.44,5.11,125,130,0.00 +2023-06-19T07:00,17.8,956.3,2.19,5.24,137,145,0.00 +2023-06-19T08:00,17.6,956.2,2.55,5.66,138,148,0.00 +2023-06-19T09:00,17.3,956.3,2.46,6.01,153,162,0.00 +2023-06-19T10:00,17.1,956.8,2.50,6.15,164,173,0.00 +2023-06-19T11:00,17.4,957.4,3.01,7.00,184,190,0.00 +2023-06-19T12:00,19.2,958.0,3.51,6.52,177,184,0.00 +2023-06-19T13:00,21.6,958.8,3.36,7.30,157,171,0.00 +2023-06-19T14:00,23.9,959.6,3.64,5.23,148,154,0.00 +2023-06-19T15:00,25.8,959.9,4.56,6.00,154,156,0.00 +2023-06-19T16:00,27.2,960.0,5.41,7.16,152,153,0.00 +2023-06-19T17:00,28.4,960.2,5.78,7.48,157,157,0.00 +2023-06-19T18:00,29.3,960.1,6.07,7.84,160,161,0.00 +2023-06-19T19:00,29.9,960.0,6.21,8.05,165,166,0.00 +2023-06-19T20:00,30.4,959.7,6.14,8.16,168,169,0.00 +2023-06-19T21:00,30.6,959.7,6.32,8.34,169,170,0.00 +2023-06-19T22:00,30.5,959.8,6.28,8.49,166,168,0.00 +2023-06-19T23:00,30.1,960.0,6.18,8.63,166,167,0.00 +2023-06-20T00:00,29.1,960.5,5.70,8.70,158,161,0.00 +2023-06-20T01:00,27.8,960.8,5.58,9.23,147,150,0.00 +2023-06-20T02:00,26.3,961.0,5.71,9.91,147,149,0.00 +2023-06-20T03:00,25.4,961.7,5.87,10.29,150,152,0.00 +2023-06-20T04:00,24.9,962.0,6.13,10.74,154,156,0.00 +2023-06-20T05:00,24.2,962.1,6.22,10.90,156,158,0.00 +2023-06-20T06:00,23.6,962.3,6.17,10.85,160,162,0.00 +2023-06-20T07:00,22.9,962.6,6.04,10.69,161,163,0.00 +2023-06-20T08:00,22.3,962.8,5.98,10.60,162,164,0.00 +2023-06-20T09:00,21.6,963.1,5.73,10.24,164,165,0.00 +2023-06-20T10:00,21.2,963.4,5.89,10.48,165,167,0.00 +2023-06-20T11:00,20.9,964.1,5.87,10.38,171,173,0.00 +2023-06-20T12:00,21.7,964.8,5.49,9.31,170,171,0.00 +2023-06-20T13:00,23.0,965.5,5.12,8.17,163,165,0.00 +2023-06-20T14:00,24.6,966.1,5.55,7.67,157,158,0.00 +2023-06-20T15:00,26.2,966.2,5.86,7.92,153,154,0.00 +2023-06-20T16:00,27.6,966.3,6.26,8.32,153,154,0.00 +2023-06-20T17:00,28.6,966.0,6.48,8.68,153,154,0.00 +2023-06-20T18:00,29.2,966.0,6.40,8.41,151,152,0.00 +2023-06-20T19:00,29.6,965.6,5.97,7.80,149,149,0.00 +2023-06-20T20:00,29.9,965.5,6.16,8.04,144,145,0.00 +2023-06-20T21:00,30.0,965.3,6.02,7.96,144,145,0.00 +2023-06-20T22:00,29.7,965.0,5.94,7.96,144,145,0.00 +2023-06-20T23:00,29.3,964.7,5.75,7.89,140,141,0.00 +2023-06-21T00:00,28.2,965.1,4.88,7.42,134,136,0.00 +2023-06-21T01:00,26.5,965.2,4.16,7.34,125,128,0.00 +2023-06-21T02:00,24.7,965.1,4.02,7.90,125,128,0.00 +2023-06-21T03:00,23.3,965.5,3.69,7.85,131,133,0.00 +2023-06-21T04:00,22.1,965.6,3.34,7.42,141,143,0.00 +2023-06-21T05:00,21.3,965.7,3.72,8.05,149,153,0.00 +2023-06-21T06:00,21.0,965.7,4.12,8.60,157,160,0.00 +2023-06-21T07:00,20.6,965.6,3.99,8.41,158,162,0.00 +2023-06-21T08:00,20.1,965.8,3.90,8.19,157,160,0.00 +2023-06-21T09:00,19.6,965.6,3.36,7.62,157,161,0.00 +2023-06-21T10:00,19.1,965.6,3.76,8.08,155,158,0.00 +2023-06-21T11:00,18.9,965.9,3.86,8.16,159,161,0.00 +2023-06-21T12:00,19.9,965.8,4.72,8.46,148,151,0.00 +2023-06-21T13:00,21.4,967.5,3.72,6.93,156,160,0.00 +2023-06-21T14:00,23.2,968.4,3.98,5.46,155,156,0.00 +2023-06-21T15:00,24.9,968.6,4.02,5.25,161,162,0.00 +2023-06-21T16:00,26.7,968.6,3.89,4.97,162,165,0.00 +2023-06-21T17:00,28.1,968.4,4.10,5.30,167,169,0.00 +2023-06-21T18:00,29.3,968.2,4.39,5.61,168,169,0.00 +2023-06-21T19:00,29.7,967.6,4.68,6.04,164,164,0.00 +2023-06-21T20:00,30.0,966.8,5.28,6.89,153,154,0.00 +2023-06-21T21:00,30.3,966.4,5.55,7.21,157,156,0.00 +2023-06-21T22:00,30.0,966.2,4.88,6.36,157,156,0.00 +2023-06-21T23:00,29.7,966.0,4.66,6.19,149,149,0.00 +2023-06-22T00:00,28.5,966.5,3.92,5.50,142,143,0.00 +2023-06-22T01:00,27.1,966.5,2.48,5.04,140,141,0.00 +2023-06-22T02:00,24.9,966.3,2.48,6.01,133,137,0.00 +2023-06-22T03:00,24.0,966.6,2.94,6.96,145,148,0.00 +2023-06-22T04:00,23.1,966.6,2.75,6.48,161,160,0.00 +2023-06-22T05:00,22.3,966.6,3.77,7.94,158,161,0.00 +2023-06-22T06:00,22.1,967.0,3.96,8.30,164,167,0.00 +2023-06-22T07:00,21.6,966.7,3.55,7.73,170,170,0.00 +2023-06-22T08:00,20.8,966.9,3.22,7.16,173,173,0.00 +2023-06-22T09:00,20.1,966.5,3.10,6.84,165,168,0.00 +2023-06-22T10:00,19.5,966.4,2.93,6.73,172,175,0.00 +2023-06-22T11:00,19.4,966.5,3.32,7.11,173,178,0.00 +2023-06-22T12:00,20.5,967.0,3.62,6.71,174,177,0.00 +2023-06-22T13:00,22.3,967.6,3.21,6.40,175,181,0.00 +2023-06-22T14:00,24.3,968.0,3.20,4.30,180,181,0.00 +2023-06-22T15:00,26.2,967.9,3.65,4.77,189,190,0.00 +2023-06-22T16:00,27.3,967.9,4.62,5.96,202,203,0.00 +2023-06-22T17:00,28.0,967.7,3.90,4.92,203,204,0.00 +2023-06-22T18:00,28.6,967.3,3.35,4.21,197,198,0.00 +2023-06-22T19:00,28.7,966.7,2.91,3.54,196,196,0.00 +2023-06-22T20:00,28.9,966.2,2.93,3.65,188,189,0.00 +2023-06-22T21:00,29.2,965.5,2.83,3.44,188,188,0.00 +2023-06-22T22:00,29.1,964.9,2.92,3.71,174,175,0.00 +2023-06-22T23:00,29.1,964.5,3.10,3.91,182,183,0.00 +2023-06-23T00:00,28.8,964.6,2.62,3.81,187,185,0.00 +2023-06-23T01:00,27.1,964.5,1.70,4.20,180,180,0.00 +2023-06-23T02:00,23.9,964.3,2.60,3.80,178,180,0.00 +2023-06-23T03:00,22.8,964.6,2.31,3.41,162,175,0.00 +2023-06-23T04:00,21.7,964.6,2.42,4.14,173,172,0.00 +2023-06-23T05:00,21.9,964.9,3.05,5.82,319,336,0.00 +2023-06-23T06:00,21.5,964.8,2.73,6.20,8,10,0.00 +2023-06-23T07:00,20.1,964.7,2.38,4.95,338,352,0.00 +2023-06-23T08:00,19.6,964.3,2.00,4.96,3,9,0.00 +2023-06-23T09:00,19.0,963.9,1.63,4.06,349,10,0.00 +2023-06-23T10:00,18.3,964.0,1.70,3.72,357,24,0.00 +2023-06-23T11:00,17.9,964.1,1.97,3.51,336,3,0.00 +2023-06-23T12:00,19.6,964.8,2.30,2.98,326,346,0.00 +2023-06-23T13:00,21.5,965.2,1.75,2.82,347,354,0.00 +2023-06-23T14:00,23.3,965.6,1.50,1.80,356,357,0.00 +2023-06-23T15:00,25.3,965.0,0.67,0.67,27,27,0.00 +2023-06-23T16:00,27.3,964.9,0.57,0.78,135,140,0.00 +2023-06-23T17:00,29.0,964.7,1.60,2.01,184,186,0.00 +2023-06-23T18:00,29.9,964.1,2.73,3.45,204,202,0.00 +2023-06-23T19:00,29.8,963.5,3.57,4.52,198,198,0.00 +2023-06-23T20:00,30.1,963.0,3.86,4.97,197,195,0.00 +2023-06-23T21:00,30.6,962.3,4.37,5.63,200,200,0.00 +2023-06-23T22:00,30.2,961.8,4.83,6.36,193,193,0.00 +2023-06-23T23:00,29.6,961.2,3.83,5.04,187,187,0.00 +2023-06-24T00:00,27.5,961.5,3.54,5.50,196,199,0.00 +2023-06-24T01:00,26.1,961.3,2.22,4.60,172,181,0.00 +2023-06-24T02:00,24.5,961.0,2.28,5.38,151,162,0.00 +2023-06-24T03:00,24.5,961.0,1.84,4.83,131,146,0.00 +2023-06-24T04:00,22.9,960.7,2.72,5.89,107,111,0.00 +2023-06-24T05:00,22.8,960.9,2.69,6.38,132,131,0.00 +2023-06-24T06:00,22.5,960.5,3.89,8.28,132,137,0.00 +2023-06-24T07:00,21.7,960.1,3.31,7.12,151,160,0.00 +2023-06-24T08:00,21.5,959.9,3.42,6.96,195,196,0.00 +2023-06-24T09:00,21.2,959.3,3.38,6.17,199,205,0.10 +2023-06-24T10:00,20.2,959.2,4.32,8.02,185,190,0.50 +2023-06-24T11:00,19.8,959.1,5.43,9.72,174,176,0.10 +2023-06-24T12:00,19.8,958.7,4.90,8.70,197,199,0.00 +2023-06-24T13:00,19.9,957.4,5.50,9.37,161,169,7.20 +2023-06-24T14:00,19.9,955.9,7.46,11.90,145,148,1.70 +2023-06-24T15:00,20.4,956.7,6.48,9.75,167,167,0.10 +2023-06-24T16:00,22.9,956.8,8.22,11.33,183,184,0.00 +2023-06-24T17:00,24.9,956.3,8.46,11.45,204,205,0.10 +2023-06-24T18:00,25.9,956.2,7.72,10.36,217,217,0.00 +2023-06-24T19:00,26.5,955.8,7.81,10.50,220,220,0.00 +2023-06-24T20:00,25.9,955.4,6.38,8.49,235,236,0.10 +2023-06-24T21:00,26.8,955.2,6.03,8.04,230,232,0.00 +2023-06-24T22:00,26.9,954.8,5.02,6.73,227,228,0.00 +2023-06-24T23:00,26.7,954.4,5.44,7.55,234,235,0.00 +2023-06-25T00:00,24.7,955.2,2.84,3.95,280,279,0.00 +2023-06-25T01:00,23.8,955.3,1.68,3.69,253,257,0.10 +2023-06-25T02:00,21.7,954.6,1.51,3.24,188,214,0.00 +2023-06-25T03:00,20.3,953.8,1.77,3.00,164,180,0.00 +2023-06-25T04:00,18.2,954.7,4.90,8.56,268,263,1.80 +2023-06-25T05:00,18.1,954.3,2.05,4.68,227,250,0.00 +2023-06-25T06:00,18.2,954.0,3.31,6.20,245,252,0.00 +2023-06-25T07:00,17.1,953.2,4.48,7.92,241,245,0.00 +2023-06-25T08:00,16.3,952.5,4.74,8.25,242,247,0.00 +2023-06-25T09:00,16.0,951.7,4.94,8.47,234,240,0.00 +2023-06-25T10:00,15.9,951.3,4.74,8.14,235,242,0.00 +2023-06-25T11:00,16.5,951.5,4.20,6.79,258,261,0.70 +2023-06-25T12:00,15.9,951.5,5.80,8.91,324,325,1.80 +2023-06-25T13:00,16.0,952.7,6.95,9.85,330,331,0.40 +2023-06-25T14:00,16.8,953.6,6.44,9.55,316,315,0.20 +2023-06-25T15:00,20.2,954.3,8.56,11.82,323,322,0.00 +2023-06-25T16:00,20.8,955.1,8.03,10.95,321,321,0.30 +2023-06-25T17:00,19.8,956.0,8.82,12.15,325,325,1.30 +2023-06-25T18:00,18.9,956.4,6.96,9.85,328,327,0.60 +2023-06-25T19:00,20.2,956.8,5.75,8.09,320,320,0.70 +2023-06-25T20:00,23.1,957.1,7.65,10.35,318,319,0.00 +2023-06-25T21:00,21.3,957.2,7.52,10.53,331,330,1.20 +2023-06-25T22:00,20.9,957.4,6.66,9.90,327,327,0.30 +2023-06-25T23:00,22.4,957.6,7.66,10.76,324,325,0.20 +2023-06-26T00:00,20.9,958.9,7.85,11.32,326,326,0.10 +2023-06-26T01:00,20.0,959.2,6.96,10.51,325,326,0.10 +2023-06-26T02:00,19.2,959.4,6.16,9.95,318,321,0.00 +2023-06-26T03:00,18.6,959.8,6.03,9.82,320,322,0.00 +2023-06-26T04:00,18.2,959.9,5.72,9.57,324,326,0.00 +2023-06-26T05:00,17.7,960.0,5.47,9.36,320,323,0.00 +2023-06-26T06:00,17.4,960.2,5.62,9.52,321,324,0.00 +2023-06-26T07:00,16.9,960.3,5.66,9.68,324,327,0.00 +2023-06-26T08:00,16.3,960.3,5.78,9.71,323,325,0.00 +2023-06-26T09:00,15.9,960.5,5.88,9.85,325,327,0.00 +2023-06-26T10:00,15.6,960.6,5.69,9.52,326,328,0.00 +2023-06-26T11:00,15.5,960.8,5.82,9.66,325,328,0.00 +2023-06-26T12:00,15.9,961.3,6.85,9.92,337,338,0.00 +2023-06-26T13:00,16.5,962.0,8.20,11.36,344,344,0.10 +2023-06-26T14:00,17.4,962.6,7.52,10.58,346,345,0.10 +2023-06-26T15:00,19.2,962.8,7.50,10.21,358,358,0.10 +2023-06-26T16:00,20.9,963.3,5.89,7.79,350,351,0.00 +2023-06-26T17:00,22.6,963.8,6.97,9.19,352,352,0.00 +2023-06-26T18:00,23.4,963.5,7.40,10.00,359,360,0.00 +2023-06-26T19:00,24.2,963.3,7.52,10.03,5,5,0.00 +2023-06-26T20:00,25.0,963.0,6.96,9.28,7,7,0.00 +2023-06-26T21:00,25.6,962.8,5.90,7.90,359,360,0.00 +2023-06-26T22:00,25.7,962.6,5.53,7.54,354,354,0.00 +2023-06-26T23:00,25.5,962.3,5.02,6.94,354,354,0.00 +2023-06-27T00:00,24.5,963.5,3.41,5.30,355,358,0.00 +2023-06-27T01:00,22.7,963.3,1.40,3.54,4,8,0.00 +2023-06-27T02:00,19.6,962.8,2.55,3.31,334,355,0.00 +2023-06-27T03:00,18.7,963.0,2.56,4.41,321,347,0.00 +2023-06-27T04:00,18.5,963.2,2.13,4.68,311,340,0.00 +2023-06-27T05:00,17.1,963.1,2.16,4.94,304,328,0.00 +2023-06-27T06:00,16.5,963.4,2.48,5.15,313,336,0.00 +2023-06-27T07:00,16.0,963.2,2.55,4.88,315,337,0.00 +2023-06-27T08:00,15.3,962.9,2.62,4.21,310,342,0.00 +2023-06-27T09:00,14.9,962.6,2.50,3.22,286,334,0.00 +2023-06-27T10:00,15.4,963.0,1.71,2.94,263,305,0.00 +2023-06-27T11:00,14.4,962.8,2.18,2.42,254,308,0.00 +2023-06-27T12:00,18.0,963.8,1.48,3.14,298,338,0.00 +2023-06-27T13:00,20.6,964.3,0.95,1.77,288,344,0.00 +2023-06-27T14:00,22.3,964.6,0.20,0.22,270,333,0.00 +2023-06-27T15:00,23.8,964.7,0.91,1.12,174,170,0.00 +2023-06-27T16:00,25.0,964.3,2.47,3.08,166,167,0.00 +2023-06-27T17:00,25.5,964.1,3.30,4.10,178,179,0.00 +2023-06-27T18:00,26.1,963.5,3.70,4.70,182,181,0.00 +2023-06-27T19:00,26.9,963.2,4.40,5.70,177,178,0.00 +2023-06-27T20:00,27.3,962.8,4.72,6.12,175,175,0.00 +2023-06-27T21:00,27.4,962.2,5.00,6.50,181,181,0.00 +2023-06-27T22:00,27.3,961.6,5.32,7.12,184,184,0.00 +2023-06-27T23:00,27.0,960.6,5.32,7.13,175,175,0.00 +2023-06-28T00:00,25.2,961.6,3.55,5.28,158,161,0.00 +2023-06-28T01:00,24.6,961.8,2.85,5.39,162,165,0.00 +2023-06-28T02:00,23.5,960.8,3.69,7.11,147,154,0.00 +2023-06-28T03:00,22.9,960.7,4.92,8.71,156,158,0.00 +2023-06-28T04:00,22.3,960.4,5.87,10.37,157,161,0.00 +2023-06-28T05:00,22.4,960.2,5.88,10.44,162,163,0.00 +2023-06-28T06:00,22.3,960.5,6.42,10.86,176,174,0.00 +2023-06-28T07:00,21.6,959.5,5.28,9.22,151,156,0.00 +2023-06-28T08:00,20.3,959.5,5.63,9.92,163,165,0.00 +2023-06-28T09:00,20.0,959.3,6.17,10.51,172,172,0.00 +2023-06-28T10:00,20.1,958.6,7.12,11.58,160,163,0.00 +2023-06-28T11:00,18.4,960.5,1.53,3.55,238,190,4.20 +2023-06-28T12:00,19.5,959.0,6.70,10.90,179,179,2.40 +2023-06-28T13:00,21.0,958.8,5.58,8.88,165,168,0.00 +2023-06-28T14:00,22.7,959.0,5.63,7.88,163,165,0.00 +2023-06-28T15:00,23.9,959.1,6.81,9.20,177,179,0.00 +2023-06-28T16:00,25.3,958.5,7.14,9.51,191,192,0.00 +2023-06-28T17:00,27.1,958.3,6.98,9.30,205,205,0.10 +2023-06-28T18:00,28.0,958.2,6.01,7.92,227,226,0.10 +2023-06-28T19:00,26.0,958.2,5.19,6.96,214,215,1.20 +2023-06-28T20:00,27.3,957.7,5.02,6.65,226,227,0.20 +2023-06-28T21:00,28.8,957.4,4.90,6.45,250,251,0.10 +2023-06-28T22:00,29.2,957.1,4.69,6.12,259,259,0.00 +2023-06-28T23:00,29.1,957.2,4.30,5.71,258,259,0.00 +2023-06-29T00:00,28.1,958.4,2.25,2.94,291,288,0.00 +2023-06-29T01:00,26.8,958.6,1.53,3.22,302,300,0.00 +2023-06-29T02:00,24.2,958.8,2.33,5.28,317,323,0.00 +2023-06-29T03:00,22.8,959.5,2.78,6.22,330,334,0.00 +2023-06-29T04:00,21.2,959.8,2.06,5.28,331,341,0.00 +2023-06-29T05:00,20.0,959.4,1.92,5.10,321,332,0.00 +2023-06-29T06:00,19.4,959.9,1.98,5.28,311,323,0.00 +2023-06-29T07:00,18.2,959.9,2.58,4.34,324,334,0.00 +2023-06-29T08:00,19.9,960.1,1.08,2.20,248,330,0.00 +2023-06-29T09:00,19.0,959.8,1.22,2.24,261,333,0.00 +2023-06-29T10:00,19.7,960.4,0.67,1.77,243,344,0.00 +2023-06-29T11:00,19.5,960.9,0.92,1.80,283,360,0.00 +2023-06-29T12:00,19.5,961.2,1.60,2.69,90,59,0.00 +2023-06-29T13:00,21.3,962.3,1.53,2.28,148,119,0.00 +2023-06-29T14:00,22.7,962.5,2.18,2.82,164,163,0.00 +2023-06-29T15:00,24.5,962.7,1.24,1.55,194,195,0.00 +2023-06-29T16:00,25.8,962.7,1.35,1.64,228,232,0.00 +2023-06-29T17:00,27.5,962.6,1.12,1.41,260,262,0.00 +2023-06-29T18:00,29.0,962.7,2.28,2.82,293,293,0.00 +2023-06-29T19:00,27.8,963.0,3.83,4.85,303,302,0.40 +2023-06-29T20:00,28.4,962.9,2.85,3.57,288,288,0.00 +2023-06-29T21:00,28.9,962.7,3.41,4.32,265,265,0.00 +2023-06-29T22:00,27.7,962.7,4.11,5.32,274,274,0.10 +2023-06-29T23:00,27.9,962.4,3.52,4.64,263,263,0.00 +2023-06-30T00:00,27.4,962.6,1.55,1.91,255,264,0.00 +2023-06-30T01:00,25.8,962.6,0.76,0.82,293,284,0.00 +2023-06-30T02:00,23.1,962.3,2.12,2.31,352,355,0.00 +2023-06-30T03:00,22.4,962.8,1.75,3.13,336,353,0.00 +2023-06-30T04:00,21.5,963.0,1.77,3.23,317,338,0.00 +2023-06-30T05:00,20.6,963.0,2.14,3.36,307,337,0.00 +2023-06-30T06:00,20.1,962.9,2.30,2.67,304,347,0.00 +2023-06-30T07:00,19.9,962.8,2.14,3.16,307,342,0.00 +2023-06-30T08:00,20.2,962.7,2.68,5.88,333,342,0.00 +2023-06-30T09:00,19.2,962.9,3.31,7.03,357,5,0.00 +2023-06-30T10:00,17.5,963.3,2.52,4.21,7,18,0.00 +2023-06-30T11:00,17.0,963.5,2.50,4.22,16,22,0.00 +2023-06-30T12:00,19.8,964.5,1.97,3.84,60,51,0.00 +2023-06-30T13:00,21.5,964.8,1.25,2.92,61,59,0.00 +2023-06-30T14:00,23.4,964.9,1.34,1.75,63,66,0.00 +2023-06-30T15:00,24.9,965.3,0.78,0.92,50,49,0.00 +2023-06-30T16:00,25.4,965.0,1.12,1.32,10,9,0.00 +2023-06-30T17:00,26.1,965.1,0.50,0.60,360,360,0.00 +2023-06-30T18:00,25.4,964.8,0.94,1.17,302,301,0.00 +2023-06-30T19:00,26.3,964.5,1.75,2.19,294,294,0.00 +2023-06-30T20:00,26.4,964.0,2.36,3.00,306,307,0.00 +2023-06-30T21:00,27.6,963.8,2.83,3.52,302,305,0.00 +2023-06-30T22:00,27.6,963.3,2.48,3.18,310,314,0.00 +2023-06-30T23:00,27.4,962.8,2.77,3.56,319,322,0.00 +2023-07-01T00:00,24.9,963.7,1.50,1.89,323,328,0.00 +2023-07-01T01:00,24.2,963.7,0.67,1.80,297,304,0.00 +2023-07-01T02:00,22.0,963.8,1.71,2.25,277,302,0.00 +2023-07-01T03:00,20.6,963.7,1.92,2.87,309,331,0.00 +2023-07-01T04:00,19.9,963.6,2.14,3.32,349,353,0.00 +2023-07-01T05:00,18.9,963.8,2.50,3.42,323,339,0.00 +2023-07-01T06:00,18.6,963.7,2.46,3.21,333,356,0.00 +2023-07-01T07:00,18.2,963.6,2.28,2.90,331,360,0.00 +2023-07-01T08:00,18.2,963.4,1.80,3.31,341,5,0.00 +2023-07-01T09:00,17.6,963.3,1.63,3.42,313,345,0.00 +2023-07-01T10:00,17.5,963.0,1.80,4.16,326,350,0.00 +2023-07-01T11:00,17.4,962.9,1.94,4.81,348,4,0.00 +2023-07-01T12:00,18.9,963.1,2.52,4.88,353,15,0.00 +2023-07-01T13:00,20.4,963.1,2.10,4.68,3,20,0.00 +2023-07-01T14:00,22.4,963.4,3.10,4.30,15,18,0.00 +2023-07-01T15:00,23.6,963.5,3.23,4.21,16,18,0.00 +2023-07-01T16:00,25.2,964.1,3.01,3.73,21,20,0.00 +2023-07-01T17:00,26.0,963.6,3.05,3.72,23,24,0.00 +2023-07-01T18:00,26.7,963.4,2.77,3.44,26,26,0.00 +2023-07-01T19:00,26.7,963.1,2.51,3.18,23,24,0.00 +2023-07-01T20:00,27.0,962.4,2.56,3.16,21,18,0.00 +2023-07-01T21:00,27.7,962.1,2.66,3.29,20,20,0.00 +2023-07-01T22:00,27.7,961.6,2.73,3.45,8,10,0.00 +2023-07-01T23:00,27.5,961.2,2.77,3.55,347,350,0.00 +2023-07-02T00:00,25.5,961.4,2.28,4.20,23,25,0.00 +2023-07-02T01:00,24.5,961.4,2.02,4.43,9,6,0.00 +2023-07-02T02:00,21.8,960.9,2.75,4.11,327,342,0.00 +2023-07-02T03:00,20.7,961.1,2.62,4.18,313,343,0.00 +2023-07-02T04:00,19.2,960.8,2.68,4.03,297,337,0.00 +2023-07-02T05:00,18.2,960.7,2.33,3.54,280,331,0.00 +2023-07-02T06:00,18.0,960.9,2.60,3.94,293,336,0.00 +2023-07-02T07:00,18.0,960.6,2.41,5.11,312,337,0.00 +2023-07-02T08:00,17.9,960.4,2.25,5.89,328,339,0.00 +2023-07-02T09:00,16.7,959.9,2.42,5.34,336,347,0.00 +2023-07-02T10:00,16.3,959.9,2.40,4.51,315,347,0.00 +2023-07-02T11:00,17.0,960.1,2.06,4.30,299,335,0.00 +2023-07-02T12:00,19.0,960.9,1.92,3.51,298,340,0.00 +2023-07-02T13:00,21.5,961.3,1.70,2.56,298,339,0.00 +2023-07-02T14:00,24.1,962.0,1.39,1.84,300,315,0.00 +2023-07-02T15:00,25.9,962.3,1.35,1.70,312,315,0.00 +2023-07-02T16:00,26.9,962.4,1.03,1.25,299,299,0.00 +2023-07-02T17:00,27.8,962.5,1.39,1.68,291,287,0.00 +2023-07-02T18:00,28.4,962.5,1.87,2.28,286,285,0.00 +2023-07-02T19:00,29.0,962.1,2.11,2.51,275,275,0.00 +2023-07-02T20:00,29.4,961.7,2.50,3.00,270,270,0.00 +2023-07-02T21:00,29.6,961.0,2.41,2.91,265,266,0.00 +2023-07-02T22:00,29.6,960.6,2.20,2.70,270,272,0.00 +2023-07-02T23:00,29.6,960.6,2.22,2.82,278,276,0.00 +2023-07-03T00:00,28.7,961.3,1.14,1.53,255,259,0.00 +2023-07-03T01:00,27.6,961.0,0.28,0.72,135,214,0.00 +2023-07-03T02:00,24.6,960.2,1.79,2.75,153,170,0.00 +2023-07-03T03:00,23.7,960.5,1.92,4.27,189,196,0.00 +2023-07-03T04:00,23.1,960.8,2.62,5.99,198,208,0.00 +2023-07-03T05:00,22.5,960.8,3.16,6.74,191,201,0.00 +2023-07-03T06:00,22.3,960.8,3.98,8.17,198,202,0.00 +2023-07-03T07:00,22.0,960.7,3.96,8.23,196,201,0.00 +2023-07-03T08:00,21.7,960.8,4.39,8.90,204,206,0.00 +2023-07-03T09:00,21.5,960.9,4.65,9.08,205,208,0.00 +2023-07-03T10:00,21.1,960.7,4.61,8.91,207,215,0.00 +2023-07-03T11:00,20.9,961.0,4.58,8.93,212,221,0.00 +2023-07-03T12:00,23.0,961.0,5.60,9.69,221,225,0.00 +2023-07-03T13:00,24.5,961.6,4.80,9.76,216,225,0.00 +2023-07-03T14:00,26.0,961.9,5.17,7.16,229,229,0.00 +2023-07-03T15:00,27.3,961.8,5.12,6.84,231,232,0.00 +2023-07-03T16:00,28.6,962.1,4.35,5.52,247,248,0.00 +2023-07-03T17:00,29.8,962.2,3.86,4.90,253,253,0.00 +2023-07-03T18:00,30.8,961.9,3.62,4.53,264,264,0.00 +2023-07-03T19:00,30.8,962.1,4.20,5.22,273,275,0.00 +2023-07-03T20:00,29.4,961.9,1.02,1.33,281,283,0.00 +2023-07-03T21:00,29.5,962.2,2.28,2.75,209,213,0.00 +2023-07-03T22:00,27.2,961.8,3.94,5.07,204,202,0.00 +2023-07-03T23:00,27.8,961.7,2.98,3.97,220,221,0.00 +2023-07-04T00:00,28.7,962.1,2.94,3.95,350,351,0.00 +2023-07-04T01:00,27.3,962.3,1.90,3.90,3,1,0.00 +2023-07-04T02:00,24.5,961.8,2.00,4.02,360,6,0.00 +2023-07-04T03:00,23.8,962.3,2.81,5.90,356,360,0.00 +2023-07-04T04:00,23.4,963.0,3.10,7.20,360,2,0.00 +2023-07-04T05:00,22.6,963.0,3.04,6.96,9,12,0.00 +2023-07-04T06:00,21.3,962.9,2.31,5.85,5,17,0.00 +2023-07-04T07:00,20.3,962.6,2.41,3.94,5,30,0.00 +2023-07-04T08:00,20.7,962.5,2.33,3.50,43,53,0.00 +2023-07-04T09:00,22.2,962.5,1.60,2.53,94,81,0.00 +2023-07-04T10:00,19.9,961.4,1.98,4.69,131,130,0.00 +2023-07-04T11:00,19.7,961.8,2.68,6.00,153,150,0.00 +2023-07-04T12:00,21.3,962.3,3.20,5.83,160,174,0.00 +2023-07-04T13:00,22.8,963.3,2.41,4.90,228,219,0.00 +2023-07-04T14:00,23.7,963.7,2.56,3.36,231,233,0.00 +2023-07-04T15:00,23.2,963.1,2.82,3.67,203,206,0.50 +2023-07-04T16:00,24.1,962.9,3.50,4.61,182,184,0.10 +2023-07-04T17:00,25.8,962.3,4.10,5.41,181,183,0.00 +2023-07-04T18:00,27.2,961.8,3.88,5.14,192,193,0.00 +2023-07-04T19:00,27.8,961.5,3.23,4.18,196,197,0.00 +2023-07-04T20:00,28.4,961.4,3.91,4.97,230,230,0.00 +2023-07-04T21:00,23.8,962.4,6.67,9.21,240,244,3.40 +2023-07-04T22:00,23.1,961.5,3.41,4.91,267,266,0.30 +2023-07-04T23:00,24.3,961.2,3.26,4.29,297,298,0.00 +2023-07-05T00:00,22.1,963.5,3.58,4.80,306,306,0.00 +2023-07-05T01:00,20.6,963.6,3.96,5.45,313,313,0.00 +2023-07-05T02:00,19.9,964.2,4.28,6.68,307,309,0.00 +2023-07-05T03:00,19.7,964.7,2.83,5.10,328,332,0.00 +2023-07-05T04:00,19.5,965.0,3.08,5.55,324,332,0.00 +2023-07-05T05:00,19.1,965.1,4.48,7.49,321,326,1.30 +2023-07-05T06:00,18.6,965.5,4.34,7.47,331,334,0.00 +2023-07-05T07:00,18.0,965.4,4.38,7.76,333,338,0.00 +2023-07-05T08:00,17.6,965.7,3.58,6.89,337,341,0.00 +2023-07-05T09:00,17.1,966.0,5.28,9.08,331,333,0.00 +2023-07-05T10:00,16.5,966.1,5.86,9.86,335,337,0.00 +2023-07-05T11:00,15.6,966.7,5.91,9.92,336,338,0.00 +2023-07-05T12:00,16.2,967.4,5.11,8.30,337,338,0.00 +2023-07-05T13:00,16.9,967.5,5.91,8.32,341,342,0.00 +2023-07-05T14:00,17.7,967.7,5.76,7.75,340,340,0.00 +2023-07-05T15:00,18.5,968.0,5.83,7.73,338,339,0.00 +2023-07-05T16:00,19.1,968.5,5.82,7.61,331,332,0.00 +2023-07-05T17:00,19.9,968.6,5.30,6.74,328,328,0.00 +2023-07-05T18:00,20.9,968.4,5.44,6.94,324,324,0.00 +2023-07-05T19:00,20.3,968.4,5.53,7.23,319,319,0.00 +2023-07-05T20:00,21.0,968.2,5.64,7.28,323,323,0.00 +2023-07-05T21:00,22.1,967.4,6.00,7.86,323,323,0.00 +2023-07-05T22:00,21.4,967.4,6.21,8.24,327,327,0.00 +2023-07-05T23:00,21.0,967.2,6.66,8.90,332,333,0.00 +2023-07-06T00:00,18.5,968.3,5.73,7.70,335,335,0.00 +2023-07-06T01:00,17.6,968.6,5.50,7.70,335,335,0.00 +2023-07-06T02:00,17.2,968.9,3.89,6.17,334,335,0.00 +2023-07-06T03:00,16.1,969.3,2.80,5.56,325,330,0.00 +2023-07-06T04:00,15.1,969.4,2.50,5.50,323,333,0.00 +2023-07-06T05:00,15.0,969.5,2.05,5.01,317,331,0.00 +2023-07-06T06:00,13.9,969.5,2.05,5.06,313,330,0.00 +2023-07-06T07:00,13.1,969.0,1.92,4.61,309,330,0.00 +2023-07-06T08:00,12.6,968.8,2.20,5.17,300,317,0.00 +2023-07-06T09:00,11.8,968.3,1.79,4.08,297,324,0.00 +2023-07-06T10:00,11.4,968.1,1.84,3.64,292,323,0.00 +2023-07-06T11:00,11.2,968.4,1.65,3.61,284,316,0.00 +2023-07-06T12:00,12.3,969.0,2.48,4.20,320,335,0.00 +2023-07-06T13:00,14.3,969.8,1.58,3.09,325,335,0.00 +2023-07-06T14:00,16.1,970.2,2.02,2.62,340,342,0.00 +2023-07-06T15:00,17.4,970.0,2.42,2.95,336,336,0.00 +2023-07-06T16:00,18.7,969.9,3.26,4.11,320,319,0.00 +2023-07-06T17:00,19.4,969.7,3.47,4.39,311,311,0.00 +2023-07-06T18:00,20.2,969.2,3.50,4.36,307,307,0.00 +2023-07-06T19:00,21.3,968.7,3.11,3.77,303,302,0.00 +2023-07-06T20:00,21.8,968.1,2.87,3.67,299,299,0.00 +2023-07-06T21:00,22.1,967.4,2.72,3.44,306,306,0.00 +2023-07-06T22:00,22.2,966.9,2.44,3.00,325,323,0.00 +2023-07-06T23:00,22.0,966.4,2.53,3.20,342,340,0.00 +2023-07-07T00:00,20.5,966.9,2.47,3.06,14,11,0.00 +2023-07-07T01:00,19.8,966.7,0.67,1.21,27,24,0.00 +2023-07-07T02:00,19.4,966.3,0.10,0.10,180,360,0.00 +2023-07-07T03:00,18.5,966.7,0.63,0.64,198,231,0.00 +2023-07-07T04:00,14.7,966.0,1.60,1.10,176,180,0.00 +2023-07-07T05:00,14.7,965.8,1.84,2.94,167,162,0.00 +2023-07-07T06:00,14.8,965.7,2.35,4.37,168,164,0.00 +2023-07-07T07:00,14.4,965.5,2.72,5.36,174,171,0.00 +2023-07-07T08:00,13.9,965.4,3.00,6.31,178,176,0.00 +2023-07-07T09:00,13.7,965.1,3.00,6.80,182,179,0.00 +2023-07-07T10:00,13.6,964.6,3.00,6.51,178,183,0.00 +2023-07-07T11:00,13.0,964.5,2.70,5.74,182,187,0.00 +2023-07-07T12:00,14.4,963.9,3.57,6.74,162,162,0.00 +2023-07-07T13:00,16.4,964.7,3.27,6.24,157,164,0.00 +2023-07-07T14:00,17.4,964.8,3.23,7.83,164,170,0.00 +2023-07-07T15:00,18.9,965.0,3.48,5.00,162,164,0.00 +2023-07-07T16:00,19.9,964.7,3.86,5.19,163,164,0.00 +2023-07-07T17:00,20.0,964.6,4.23,5.63,173,174,0.00 +2023-07-07T18:00,19.4,964.4,4.00,5.30,177,178,0.20 +2023-07-07T19:00,20.0,963.9,3.61,4.61,185,184,0.70 +2023-07-07T20:00,19.4,963.7,3.28,4.08,192,191,0.50 +2023-07-07T21:00,18.5,963.4,3.72,4.83,204,204,0.80 +2023-07-07T22:00,18.0,962.8,3.86,5.00,197,196,0.20 +2023-07-07T23:00,17.4,962.6,2.92,3.96,202,201,0.00 +2023-07-08T00:00,16.7,964.6,1.33,1.68,193,197,0.00 +2023-07-08T01:00,16.3,964.3,1.00,1.32,186,189,0.00 +2023-07-08T02:00,14.5,964.0,1.32,1.30,171,176,0.00 +2023-07-08T03:00,13.3,964.3,1.39,1.35,210,222,0.00 +2023-07-08T04:00,12.3,964.1,1.92,2.57,242,257,0.00 +2023-07-08T05:00,13.4,964.1,1.35,2.66,228,250,0.00 +2023-07-08T06:00,12.1,963.7,1.61,2.67,240,257,0.00 +2023-07-08T07:00,12.3,963.3,2.38,3.86,248,260,0.00 +2023-07-08T08:00,12.4,963.5,2.82,5.70,253,268,0.00 +2023-07-08T09:00,12.8,963.6,3.21,7.04,266,281,0.00 +2023-07-08T10:00,13.2,964.0,3.58,7.72,297,307,0.00 +2023-07-08T11:00,13.4,964.4,3.82,7.62,315,322,0.00 +2023-07-08T12:00,14.5,965.0,4.70,7.09,333,338,0.00 +2023-07-08T13:00,15.6,965.4,4.49,5.85,339,340,0.00 +2023-07-08T14:00,17.0,965.7,4.18,5.44,339,340,0.00 +2023-07-08T15:00,18.4,965.9,3.94,5.01,333,334,0.00 +2023-07-08T16:00,19.8,965.9,4.62,5.89,338,339,0.00 +2023-07-08T17:00,20.9,965.6,4.62,5.95,342,343,0.00 +2023-07-08T18:00,21.6,965.3,4.05,5.09,340,340,0.00 +2023-07-08T19:00,22.2,964.9,3.80,4.79,333,334,0.00 +2023-07-08T20:00,22.6,964.5,3.89,4.88,331,332,0.00 +2023-07-08T21:00,22.8,964.1,4.29,5.41,332,332,0.00 +2023-07-08T22:00,22.9,963.7,4.25,5.37,333,333,0.00 +2023-07-08T23:00,22.5,963.1,4.12,5.33,337,337,0.00 +2023-07-09T00:00,20.8,963.8,4.47,5.90,333,334,0.00 +2023-07-09T01:00,19.8,963.9,2.92,5.10,329,332,0.00 +2023-07-09T02:00,16.8,963.6,2.42,3.22,300,324,0.00 +2023-07-09T03:00,15.5,963.8,2.06,2.46,256,297,0.00 +2023-07-09T04:00,15.6,964.0,1.87,4.11,286,319,0.00 +2023-07-09T05:00,14.2,963.8,1.90,2.84,273,321,0.00 +2023-07-09T06:00,13.8,963.7,1.84,2.65,241,259,0.00 +2023-07-09T07:00,13.8,963.7,2.20,3.94,231,243,0.00 +2023-07-09T08:00,13.4,963.1,2.64,4.61,233,240,0.00 +2023-07-09T09:00,13.8,963.1,3.26,7.16,243,255,0.00 +2023-07-09T10:00,13.7,962.9,3.05,6.99,238,251,0.00 +2023-07-09T11:00,13.7,962.7,3.33,7.20,229,243,0.00 +2023-07-09T12:00,14.7,962.9,4.47,8.39,230,239,0.00 +2023-07-09T13:00,16.9,963.4,5.02,9.60,227,239,0.00 +2023-07-09T14:00,19.3,963.9,4.84,7.68,232,235,0.00 +2023-07-09T15:00,21.5,964.1,5.33,7.24,236,237,0.00 +2023-07-09T16:00,23.0,964.1,5.60,7.43,235,237,0.00 +2023-07-09T17:00,24.3,963.8,5.75,7.47,230,231,0.00 +2023-07-09T18:00,25.1,963.6,6.30,8.28,227,227,0.00 +2023-07-09T19:00,25.7,963.0,6.79,8.99,226,227,0.00 +2023-07-09T20:00,26.2,962.7,6.93,9.13,226,227,0.00 +2023-07-09T21:00,26.6,962.1,6.68,8.90,231,232,0.00 +2023-07-09T22:00,26.7,961.5,6.38,8.57,235,236,0.00 +2023-07-09T23:00,26.7,961.2,5.83,8.06,239,240,0.00 +2023-07-10T00:00,25.9,961.6,4.91,7.49,237,239,0.00 +2023-07-10T01:00,24.4,961.1,4.03,7.30,224,229,0.00 +2023-07-10T02:00,22.3,960.4,3.91,7.99,220,226,0.00 +2023-07-10T03:00,21.0,960.5,3.89,8.22,222,229,0.00 +2023-07-10T04:00,20.3,960.3,4.55,9.06,220,227,0.00 +2023-07-10T05:00,19.8,960.0,4.75,9.48,221,228,0.00 +2023-07-10T06:00,19.5,959.8,5.03,9.92,221,228,0.00 +2023-07-10T07:00,19.0,959.5,5.50,10.48,217,222,0.00 +2023-07-10T08:00,18.6,959.2,5.90,10.96,219,225,0.00 +2023-07-10T09:00,18.8,959.0,6.51,11.82,226,232,0.00 +2023-07-10T10:00,18.9,959.0,6.22,11.32,226,232,0.00 +2023-07-10T11:00,18.4,959.0,6.16,11.19,223,229,0.00 +2023-07-10T12:00,19.0,959.0,5.87,10.22,223,230,0.00 +2023-07-10T13:00,20.7,959.2,5.42,10.70,218,228,0.00 +2023-07-10T14:00,22.8,959.4,5.48,7.94,218,221,0.00 +2023-07-10T15:00,25.0,959.5,5.56,7.61,218,219,0.00 +2023-07-10T16:00,26.9,959.5,5.17,6.87,221,222,0.00 +2023-07-10T17:00,28.6,959.3,5.09,6.58,223,224,0.00 +2023-07-10T18:00,30.1,958.9,5.12,6.70,231,232,0.00 +2023-07-10T19:00,31.2,958.5,4.88,6.31,242,243,0.00 +2023-07-10T20:00,31.6,957.9,4.12,5.42,247,247,0.00 +2023-07-10T21:00,32.0,957.6,4.55,5.91,251,251,0.00 +2023-07-10T22:00,31.4,957.5,4.30,5.81,258,259,0.00 +2023-07-10T23:00,31.2,958.0,3.61,5.30,267,271,0.00 +2023-07-11T00:00,30.2,958.0,2.25,4.00,249,257,0.40 +2023-07-11T01:00,27.4,958.7,3.35,6.51,350,349,0.00 +2023-07-11T02:00,24.4,959.9,5.48,9.08,15,17,0.00 +2023-07-11T03:00,22.5,960.9,2.47,5.41,21,25,0.00 +2023-07-11T04:00,21.6,961.5,3.51,6.51,355,4,0.00 +2023-07-11T05:00,20.4,961.7,4.13,7.70,353,1,0.00 +2023-07-11T06:00,19.3,962.1,4.30,8.15,359,6,0.00 +2023-07-11T07:00,18.5,962.4,4.42,8.08,5,12,0.00 +2023-07-11T08:00,17.7,963.1,3.79,7.26,18,23,0.00 +2023-07-11T09:00,17.0,963.5,4.03,7.46,30,32,0.00 +2023-07-11T10:00,16.2,963.5,3.83,7.14,41,44,0.00 +2023-07-11T11:00,15.4,964.0,4.11,7.57,41,44,0.00 +2023-07-11T12:00,15.0,964.2,3.72,7.00,31,37,0.00 +2023-07-11T13:00,16.2,964.7,3.86,5.54,37,39,0.00 +2023-07-11T14:00,17.7,965.3,4.04,5.38,42,43,0.00 +2023-07-11T15:00,19.2,965.4,4.11,5.32,49,49,0.00 +2023-07-11T16:00,20.5,965.6,3.78,4.78,53,53,0.00 +2023-07-11T17:00,21.7,966.0,2.94,3.66,55,55,0.00 +2023-07-11T18:00,22.7,965.5,2.33,2.83,80,82,0.00 +2023-07-11T19:00,23.0,964.9,1.91,2.32,96,97,0.00 +2023-07-11T20:00,22.3,964.5,1.80,2.30,124,124,0.00 +2023-07-11T21:00,22.4,964.0,1.72,2.14,144,143,0.00 +2023-07-11T22:00,22.3,963.2,2.69,3.40,132,133,0.00 +2023-07-11T23:00,22.3,962.6,2.97,3.96,132,133,0.00 +2023-07-12T00:00,19.1,964.4,2.75,3.61,33,34,0.20 +2023-07-12T01:00,18.9,963.4,2.59,4.12,62,67,0.00 +2023-07-12T02:00,18.2,963.1,2.50,4.96,53,62,0.00 +2023-07-12T03:00,17.2,963.7,2.92,5.95,31,41,0.00 +2023-07-12T04:00,16.5,963.3,2.44,5.91,71,71,0.00 +2023-07-12T05:00,16.2,963.3,2.73,6.24,82,84,0.00 +2023-07-12T06:00,15.8,963.3,3.16,6.76,79,82,0.00 +2023-07-12T07:00,15.7,962.6,3.20,6.90,90,92,0.00 +2023-07-12T08:00,16.1,961.9,3.50,6.92,88,94,0.00 +2023-07-12T09:00,15.8,960.8,3.90,7.61,89,92,0.00 +2023-07-12T10:00,15.8,961.2,3.62,7.00,96,100,0.00 +2023-07-12T11:00,16.3,961.3,4.10,7.43,103,107,0.30 +2023-07-12T12:00,15.3,961.4,3.05,5.66,131,122,0.00 +2023-07-12T13:00,15.1,959.0,5.03,9.02,107,111,2.00 +2023-07-12T14:00,15.8,959.2,4.97,8.07,105,107,0.20 +2023-07-12T15:00,18.6,959.5,4.34,5.89,98,100,0.00 +2023-07-12T16:00,20.2,959.8,3.10,3.90,90,91,0.00 +2023-07-12T17:00,21.8,959.9,2.16,2.69,103,105,0.00 +2023-07-12T18:00,23.0,959.9,0.60,0.71,360,352,0.00 +2023-07-12T19:00,25.1,959.6,1.82,2.22,279,278,0.00 +2023-07-12T20:00,26.1,959.2,3.79,4.81,282,282,0.00 +2023-07-12T21:00,25.4,959.1,4.34,5.59,299,299,0.00 +2023-07-12T22:00,25.8,959.1,4.65,6.08,298,297,0.00 +2023-07-12T23:00,25.7,959.0,4.32,5.59,318,316,0.00 +2023-07-13T00:00,23.5,960.2,2.98,3.98,310,309,0.00 +2023-07-13T01:00,22.9,960.0,2.28,3.69,299,303,0.00 +2023-07-13T02:00,20.5,959.9,2.10,2.66,270,290,0.00 +2023-07-13T03:00,20.0,960.0,1.98,2.82,319,333,0.00 +2023-07-13T04:00,18.9,960.0,2.14,3.18,307,332,0.00 +2023-07-13T05:00,18.4,959.9,1.41,1.58,262,325,0.00 +2023-07-13T06:00,17.9,959.7,1.20,1.58,222,215,0.00 +2023-07-13T07:00,17.3,959.3,1.86,3.61,216,214,0.00 +2023-07-13T08:00,17.3,959.3,2.48,5.25,220,220,0.00 +2023-07-13T09:00,17.3,959.1,3.18,6.61,224,231,0.00 +2023-07-13T10:00,17.4,959.4,3.91,7.93,238,247,0.00 +2023-07-13T11:00,17.6,959.7,3.83,7.88,237,246,0.00 +2023-07-13T12:00,18.5,959.8,3.53,6.51,245,259,0.00 +2023-07-13T13:00,20.5,960.2,2.95,6.36,242,262,0.00 +2023-07-13T14:00,22.7,960.5,3.04,4.12,261,264,0.00 +2023-07-13T15:00,24.4,960.7,3.59,4.61,283,283,0.00 +2023-07-13T16:00,25.5,960.6,3.96,4.98,280,280,0.00 +2023-07-13T17:00,26.6,960.3,4.50,5.70,270,270,0.00 +2023-07-13T18:00,27.3,959.6,5.62,7.33,265,265,0.10 +2023-07-13T19:00,28.3,959.0,5.74,7.65,263,263,0.00 +2023-07-13T20:00,29.2,958.7,6.65,8.97,277,277,0.00 +2023-07-13T21:00,29.1,958.7,7.45,10.10,282,281,0.00 +2023-07-13T22:00,27.7,958.4,5.14,7.16,297,295,0.00 +2023-07-13T23:00,27.8,958.4,6.15,8.45,263,264,0.00 +2023-07-14T00:00,27.8,957.5,5.69,9.40,246,249,0.20 +2023-07-14T01:00,26.0,957.5,5.00,8.73,250,252,0.00 +2023-07-14T02:00,25.0,957.7,5.33,9.61,264,268,0.00 +2023-07-14T03:00,24.2,958.0,4.51,8.71,266,272,0.00 +2023-07-14T04:00,23.0,958.2,4.01,8.33,266,275,0.00 +2023-07-14T05:00,22.1,958.4,3.30,7.35,272,285,0.00 +2023-07-14T06:00,21.0,958.4,2.70,6.36,272,289,0.00 +2023-07-14T07:00,20.1,958.2,2.28,5.36,255,284,0.00 +2023-07-14T08:00,19.4,958.3,2.92,5.20,232,259,0.00 +2023-07-14T09:00,19.0,958.1,3.06,5.85,232,253,0.00 +2023-07-14T10:00,18.7,958.0,3.24,6.80,236,253,0.00 +2023-07-14T11:00,18.9,958.0,3.14,7.06,239,254,0.00 +2023-07-14T12:00,19.8,957.9,2.72,5.92,264,286,0.00 +2023-07-14T13:00,22.4,958.6,2.01,4.19,297,303,0.00 +2023-07-14T14:00,24.3,959.5,1.80,2.62,251,263,0.00 +2023-07-14T15:00,25.9,959.8,2.79,3.57,249,252,0.00 +2023-07-14T16:00,27.5,959.9,3.24,4.16,261,260,0.00 +2023-07-14T17:00,28.4,960.2,3.83,4.74,277,277,0.00 +2023-07-14T18:00,28.5,960.1,3.82,4.92,276,275,0.00 +2023-07-14T19:00,28.7,959.3,4.67,5.97,260,261,0.00 +2023-07-14T20:00,28.0,959.1,5.20,6.70,268,269,0.10 +2023-07-14T21:00,27.9,959.1,5.01,6.50,267,271,0.10 +2023-07-14T22:00,26.5,959.0,5.06,6.68,261,261,1.00 +2023-07-14T23:00,26.5,959.1,5.91,8.24,298,299,1.50 +2023-07-15T00:00,24.5,959.1,3.53,4.97,245,245,0.00 +2023-07-15T01:00,23.8,959.1,2.90,5.25,272,278,0.00 +2023-07-15T02:00,22.1,959.3,2.90,6.18,272,284,0.00 +2023-07-15T03:00,20.8,960.0,2.64,6.02,307,328,0.00 +2023-07-15T04:00,18.7,960.1,2.27,4.30,311,342,0.00 +2023-07-15T05:00,18.2,960.4,1.65,3.58,284,324,0.00 +2023-07-15T06:00,18.6,960.3,2.21,4.30,265,288,0.00 +2023-07-15T07:00,18.5,960.2,3.31,6.96,273,291,0.00 +2023-07-15T08:00,18.4,960.4,3.62,7.74,294,306,0.00 +2023-07-15T09:00,17.6,960.1,3.01,6.83,285,302,0.00 +2023-07-15T10:00,16.8,959.9,2.81,6.36,274,294,0.00 +2023-07-15T11:00,16.6,960.2,3.11,6.82,264,284,0.00 +2023-07-15T12:00,18.1,960.8,3.83,7.55,263,277,0.00 +2023-07-15T13:00,20.2,961.4,4.12,7.94,256,276,0.00 +2023-07-15T14:00,22.5,961.7,3.64,7.61,254,268,0.00 +2023-07-15T15:00,24.5,961.9,4.72,6.41,265,267,0.00 +2023-07-15T16:00,24.6,962.1,4.70,6.31,297,297,1.40 +2023-07-15T17:00,22.7,962.6,6.07,7.96,303,303,2.50 +2023-07-15T18:00,24.4,962.5,4.43,5.81,295,297,0.00 +2023-07-15T19:00,25.3,962.1,6.49,8.72,295,295,0.10 +2023-07-15T20:00,25.5,961.6,7.05,9.52,302,302,0.00 +2023-07-15T21:00,25.2,961.6,7.13,9.74,301,302,0.00 +2023-07-15T22:00,25.1,961.4,7.11,9.75,298,298,0.00 +2023-07-15T23:00,24.6,961.3,6.58,9.71,298,299,0.00 +2023-07-16T00:00,22.6,962.5,6.22,8.98,315,315,0.00 +2023-07-16T01:00,21.2,962.1,4.10,6.91,326,326,0.00 +2023-07-16T02:00,19.9,962.1,3.04,6.23,314,318,0.00 +2023-07-16T03:00,19.1,962.4,2.86,6.51,306,314,0.00 +2023-07-16T04:00,18.4,962.8,3.42,7.21,308,315,0.00 +2023-07-16T05:00,17.1,962.5,2.24,5.52,297,314,0.00 +2023-07-16T06:00,15.8,962.2,1.71,4.02,263,297,0.00 +2023-07-16T07:00,15.4,962.1,2.20,4.10,240,269,0.00 +2023-07-16T08:00,15.3,961.9,3.16,6.17,235,250,0.00 +2023-07-16T09:00,15.3,962.0,3.61,7.78,251,262,0.00 +2023-07-16T10:00,15.6,962.1,4.20,8.56,269,277,0.00 +2023-07-16T11:00,15.4,962.1,3.86,7.80,260,271,0.00 +2023-07-16T12:00,15.8,961.9,4.08,7.60,259,271,0.00 +2023-07-16T13:00,17.8,962.6,4.47,8.85,243,264,0.00 +2023-07-16T14:00,20.2,962.9,4.88,7.67,242,248,0.00 +2023-07-16T15:00,22.4,962.8,6.26,8.68,253,255,0.00 +2023-07-16T16:00,23.5,962.4,6.14,8.28,258,258,0.00 +2023-07-16T17:00,24.7,962.2,6.96,9.46,263,263,0.00 +2023-07-16T18:00,25.3,961.9,8.98,12.35,287,285,0.10 +2023-07-16T19:00,25.3,961.9,7.93,10.89,293,293,0.00 +2023-07-16T20:00,24.6,961.4,7.56,10.24,296,296,0.40 +2023-07-16T21:00,22.7,961.6,7.61,10.51,295,295,0.30 +2023-07-16T22:00,23.6,961.5,7.34,10.03,299,300,0.30 +2023-07-16T23:00,23.5,961.2,7.02,9.92,311,312,0.00 +2023-07-17T00:00,22.3,962.2,5.53,8.02,319,320,0.00 +2023-07-17T01:00,21.3,962.4,4.56,7.80,322,324,0.00 +2023-07-17T02:00,19.3,962.7,5.04,8.83,346,347,0.00 +2023-07-17T03:00,18.0,963.2,4.20,7.80,359,359,0.00 +2023-07-17T04:00,16.7,963.5,2.77,6.17,347,352,0.00 +2023-07-17T05:00,15.3,963.6,2.05,5.28,313,333,0.00 +2023-07-17T06:00,14.3,963.8,1.98,4.74,315,335,0.00 +2023-07-17T07:00,13.1,963.5,1.89,3.81,302,337,0.00 +2023-07-17T08:00,12.8,963.5,1.79,4.03,297,330,0.00 +2023-07-17T09:00,12.9,963.8,2.44,5.56,305,322,0.00 +2023-07-17T10:00,12.5,964.0,2.64,5.75,299,320,0.00 +2023-07-17T11:00,12.4,964.5,3.52,7.28,305,316,0.00 +2023-07-17T12:00,12.9,964.9,4.06,7.27,322,328,0.00 +2023-07-17T13:00,14.2,965.7,3.80,6.64,325,329,0.00 +2023-07-17T14:00,16.0,966.0,3.64,4.96,323,326,0.00 +2023-07-17T15:00,17.4,966.1,4.43,5.77,332,332,0.00 +2023-07-17T16:00,18.9,966.4,5.69,7.30,336,337,0.00 +2023-07-17T17:00,19.8,966.4,5.55,7.20,334,335,0.00 +2023-07-17T18:00,19.7,966.1,5.37,7.02,333,334,0.00 +2023-07-17T19:00,20.6,965.8,5.28,6.84,333,333,0.00 +2023-07-17T20:00,20.9,965.3,4.83,6.40,333,333,0.00 +2023-07-17T21:00,21.4,965.1,4.83,6.31,333,333,0.00 +2023-07-17T22:00,21.3,965.0,4.52,5.86,332,333,0.00 +2023-07-17T23:00,21.5,964.6,3.44,4.52,324,325,0.00 +2023-07-18T00:00,20.6,965.4,3.04,3.98,343,342,0.00 +2023-07-18T01:00,19.3,965.1,2.10,4.20,360,360,0.00 +2023-07-18T02:00,16.2,964.7,2.52,3.49,7,13,0.00 +2023-07-18T03:00,17.9,965.2,1.55,2.31,345,5,0.00 +2023-07-18T04:00,16.2,965.0,1.96,2.68,15,27,0.00 +2023-07-18T05:00,17.3,965.2,0.41,1.20,256,42,0.00 +2023-07-18T06:00,15.4,964.8,0.76,0.36,203,124,0.00 +2023-07-18T07:00,14.1,964.4,1.53,1.22,191,171,0.00 +2023-07-18T08:00,14.6,964.4,1.92,3.11,189,176,0.00 +2023-07-18T09:00,13.8,964.5,2.26,4.85,193,188,0.00 +2023-07-18T10:00,14.3,964.1,2.00,4.83,183,186,0.00 +2023-07-18T11:00,12.2,963.9,2.22,4.03,188,187,0.00 +2023-07-18T12:00,14.6,963.6,1.75,3.14,121,99,0.00 +2023-07-18T13:00,17.3,964.5,2.22,3.85,126,118,0.00 +2023-07-18T14:00,19.2,965.1,2.78,3.64,142,143,0.00 +2023-07-18T15:00,20.2,965.2,2.88,3.61,146,146,0.00 +2023-07-18T16:00,21.4,965.6,2.79,3.48,159,162,0.00 +2023-07-18T17:00,22.3,965.6,2.94,3.67,162,163,0.00 +2023-07-18T18:00,23.1,965.1,2.69,3.30,165,166,0.00 +2023-07-18T19:00,23.8,965.1,2.40,2.91,163,164,0.00 +2023-07-18T20:00,24.3,964.9,2.22,2.71,172,176,0.00 +2023-07-18T21:00,24.6,964.4,2.32,2.93,173,172,0.00 +2023-07-18T22:00,24.7,964.1,2.82,3.52,174,173,0.00 +2023-07-18T23:00,24.6,963.6,3.26,4.04,169,171,0.00 +2023-07-19T00:00,23.0,964.1,3.20,4.61,166,167,0.00 +2023-07-19T01:00,22.2,963.8,3.08,5.46,167,166,0.00 +2023-07-19T02:00,20.3,963.9,2.05,4.65,137,152,0.00 +2023-07-19T03:00,19.8,964.7,2.50,5.82,143,151,0.00 +2023-07-19T04:00,19.6,964.5,3.47,6.89,147,152,0.00 +2023-07-19T05:00,19.5,964.0,4.09,7.91,158,162,0.00 +2023-07-19T06:00,18.9,964.2,4.10,8.21,180,183,0.00 +2023-07-19T07:00,18.7,963.3,4.72,8.90,185,188,0.00 +2023-07-19T08:00,18.4,962.9,4.10,7.88,193,195,0.00 +2023-07-19T09:00,18.4,962.6,4.60,8.46,181,187,0.00 +2023-07-19T10:00,17.8,965.8,2.72,3.54,36,45,9.90 +2023-07-19T11:00,18.1,964.3,4.40,7.40,177,181,2.80 +2023-07-19T12:00,18.4,964.5,2.39,4.95,237,227,0.00 +2023-07-19T13:00,19.7,964.8,2.86,4.27,205,213,0.40 +2023-07-19T14:00,20.9,964.6,4.61,6.31,204,207,0.00 +2023-07-19T15:00,23.0,964.8,4.03,5.38,224,227,0.00 +2023-07-19T16:00,25.0,965.1,3.31,4.11,241,244,0.00 +2023-07-19T17:00,26.7,965.2,2.64,3.31,241,245,0.00 +2023-07-19T18:00,27.8,964.9,1.79,2.19,243,246,0.00 +2023-07-19T19:00,28.8,964.7,2.36,2.88,234,236,0.00 +2023-07-19T20:00,27.7,964.7,4.68,6.08,222,224,0.20 +2023-07-19T21:00,27.0,964.7,4.52,5.95,242,245,0.00 +2023-07-19T22:00,25.9,964.2,5.03,6.83,253,252,0.00 +2023-07-19T23:00,26.4,964.0,4.66,6.46,247,248,0.00 +2023-07-20T00:00,26.5,963.9,5.79,9.02,252,255,0.00 +2023-07-20T01:00,25.3,963.5,5.70,9.48,255,256,0.00 +2023-07-20T02:00,24.0,963.9,5.12,9.21,266,268,0.00 +2023-07-20T03:00,23.0,964.7,5.04,9.20,284,282,0.00 +2023-07-20T04:00,21.0,965.2,3.93,7.40,277,289,1.40 +2023-07-20T05:00,19.9,965.2,2.82,6.50,293,307,0.00 +2023-07-20T06:00,19.2,965.2,3.99,8.42,292,300,0.00 +2023-07-20T07:00,19.0,965.5,5.58,9.94,306,310,0.00 +2023-07-20T08:00,18.3,965.6,5.36,9.64,307,311,0.00 +2023-07-20T09:00,17.6,965.6,5.59,9.84,314,318,0.00 +2023-07-20T10:00,16.9,965.6,5.02,9.07,316,319,0.00 +2023-07-20T11:00,16.4,966.0,4.95,8.95,317,320,0.00 +2023-07-20T12:00,16.8,966.6,5.06,8.41,322,325,0.00 +2023-07-20T13:00,17.7,967.3,5.86,8.30,323,324,0.00 +2023-07-20T14:00,18.7,967.6,6.49,8.82,326,327,0.00 +2023-07-20T15:00,20.0,967.8,7.52,10.12,327,327,0.00 +2023-07-20T16:00,21.0,968.0,7.96,10.74,335,335,0.00 +2023-07-20T17:00,21.6,968.2,7.88,10.57,340,340,0.00 +2023-07-20T18:00,21.8,968.5,7.12,9.61,340,341,0.00 +2023-07-20T19:00,22.5,968.6,6.62,8.91,335,335,0.00 +2023-07-20T20:00,22.7,968.5,5.95,7.97,335,336,0.00 +2023-07-20T21:00,23.0,968.5,6.26,8.41,331,332,0.00 +2023-07-20T22:00,23.3,968.2,5.91,7.84,336,337,0.00 +2023-07-20T23:00,23.1,968.0,5.24,7.16,331,333,0.00 +2023-07-21T00:00,22.3,968.3,4.08,5.81,349,349,0.00 +2023-07-21T01:00,21.4,968.6,2.51,4.71,337,343,0.00 +2023-07-21T02:00,19.3,968.1,1.70,4.16,315,333,0.00 +2023-07-21T03:00,18.5,968.5,2.00,4.49,307,328,0.00 +2023-07-21T04:00,17.6,968.3,1.86,4.39,306,330,0.00 +2023-07-21T05:00,17.3,968.4,1.92,4.56,309,334,0.00 +2023-07-21T06:00,17.2,968.6,2.20,5.20,309,330,0.00 +2023-07-21T07:00,16.6,968.3,2.16,4.91,304,327,0.00 +2023-07-21T08:00,16.0,968.4,2.20,4.98,300,322,0.00 +2023-07-21T09:00,15.7,968.1,2.20,5.12,300,321,0.00 +2023-07-21T10:00,15.4,967.8,2.11,4.92,301,322,0.00 +2023-07-21T11:00,15.0,968.1,1.88,4.56,295,322,0.00 +2023-07-21T12:00,16.2,968.4,1.89,3.05,302,337,0.00 +2023-07-21T13:00,18.3,969.0,2.00,3.41,307,328,0.00 +2023-07-21T14:00,20.3,969.5,1.78,2.41,308,312,0.00 +2023-07-21T15:00,22.0,969.4,1.77,2.13,313,311,0.00 +2023-07-21T16:00,22.9,969.2,2.05,2.55,313,315,0.10 +2023-07-21T17:00,23.4,968.8,1.84,2.34,311,310,0.10 +2023-07-21T18:00,24.1,968.2,1.98,2.41,319,318,0.10 +2023-07-21T19:00,24.4,967.7,1.98,2.48,311,310,0.10 +2023-07-21T20:00,24.9,967.3,1.92,2.37,298,298,0.00 +2023-07-21T21:00,25.1,967.0,1.94,2.35,282,282,0.00 +2023-07-21T22:00,25.0,966.4,2.21,2.62,275,277,0.00 +2023-07-21T23:00,24.9,965.8,2.90,3.70,270,270,0.00 +2023-07-22T00:00,22.6,966.1,1.70,2.13,230,229,0.20 +2023-07-22T01:00,22.1,965.6,1.36,2.47,234,238,0.00 +2023-07-22T02:00,19.6,965.1,1.88,3.05,245,247,0.00 +2023-07-22T03:00,18.7,965.5,1.96,3.01,255,264,0.00 +2023-07-22T04:00,18.6,965.2,1.58,3.42,235,263,0.00 +2023-07-22T05:00,17.9,964.7,1.94,3.83,235,263,0.00 +2023-07-22T06:00,17.4,964.3,2.20,4.13,240,263,0.00 +2023-07-22T07:00,17.0,963.9,2.39,4.85,237,262,0.00 +2023-07-22T08:00,16.7,963.5,2.75,5.38,237,260,0.00 +2023-07-22T09:00,16.6,963.3,3.04,6.30,243,260,0.00 +2023-07-22T10:00,16.6,963.3,3.22,6.79,244,261,0.00 +2023-07-22T11:00,16.6,963.3,3.23,7.05,248,263,0.00 +2023-07-22T12:00,17.9,963.3,3.49,6.79,246,256,0.00 +2023-07-22T13:00,19.6,963.7,3.27,6.86,247,262,0.00 +2023-07-22T14:00,21.9,964.2,2.86,5.61,258,267,0.00 +2023-07-22T15:00,24.1,964.4,3.50,4.70,270,271,0.00 +2023-07-22T16:00,25.7,964.1,3.71,4.81,273,274,0.00 +2023-07-22T17:00,26.6,963.7,3.80,4.90,270,271,0.00 +2023-07-22T18:00,27.1,963.3,4.24,5.46,278,278,0.00 +2023-07-22T19:00,27.5,962.5,4.18,5.44,291,290,0.00 +2023-07-22T20:00,25.7,962.5,4.88,6.21,305,303,0.90 +2023-07-22T21:00,26.2,962.1,4.53,5.89,292,291,0.90 +2023-07-22T22:00,25.0,962.0,2.50,3.35,286,287,0.00 +2023-07-22T23:00,25.8,961.8,3.40,4.50,270,273,0.00 +2023-07-23T00:00,24.8,961.7,2.20,2.92,330,329,0.00 +2023-07-23T01:00,23.6,961.6,1.88,4.25,335,336,0.00 +2023-07-23T02:00,21.1,961.2,1.92,4.88,321,334,0.00 +2023-07-23T03:00,20.0,961.8,2.14,5.59,323,336,0.00 +2023-07-23T04:00,19.1,961.9,2.08,5.15,305,331,0.00 +2023-07-23T05:00,18.8,961.9,2.15,5.10,298,325,0.00 +2023-07-23T06:00,18.4,962.2,2.25,5.35,302,327,0.00 +2023-07-23T07:00,18.7,962.2,2.90,6.72,314,330,0.00 +2023-07-23T08:00,17.7,962.5,2.48,6.01,320,342,0.00 +2023-07-23T09:00,16.6,962.5,2.00,4.87,307,341,0.00 +2023-07-23T10:00,16.1,962.8,2.08,4.79,305,337,0.00 +2023-07-23T11:00,15.6,963.0,1.98,4.68,311,340,0.00 +2023-07-23T12:00,16.7,963.5,2.69,5.20,315,337,0.00 +2023-07-23T13:00,18.7,964.2,2.69,4.88,315,334,0.00 +2023-07-23T14:00,20.9,964.8,2.30,3.67,326,334,0.00 +2023-07-23T15:00,22.8,965.4,2.51,3.26,331,333,0.00 +2023-07-23T16:00,24.3,965.4,2.64,3.27,335,337,0.00 +2023-07-23T17:00,25.3,965.2,2.09,2.53,343,342,0.00 +2023-07-23T18:00,26.0,965.0,1.71,2.02,339,340,0.00 +2023-07-23T19:00,26.7,964.7,1.25,1.48,331,332,0.00 +2023-07-23T20:00,27.2,964.4,0.92,1.06,311,311,0.00 +2023-07-23T21:00,27.6,964.4,1.06,1.20,319,318,0.00 +2023-07-23T22:00,27.8,964.3,1.03,1.25,299,299,0.00 +2023-07-23T23:00,27.4,963.9,1.40,1.70,274,273,0.00 +2023-07-24T00:00,26.5,964.1,0.85,1.03,249,241,0.00 +2023-07-24T01:00,25.0,963.9,1.10,1.36,270,253,0.00 +2023-07-24T02:00,24.9,964.3,0.86,0.85,324,291,0.00 +2023-07-24T03:00,23.3,964.7,1.33,1.02,77,79,0.00 +2023-07-24T04:00,20.5,964.5,2.08,1.86,125,126,0.00 +2023-07-24T05:00,19.5,964.4,2.41,2.94,138,145,0.00 +2023-07-24T06:00,19.5,964.1,1.91,3.64,137,148,0.00 +2023-07-24T07:00,19.4,964.1,2.25,4.75,159,158,0.00 +2023-07-24T08:00,19.4,964.2,2.70,6.13,178,174,0.00 +2023-07-24T09:00,19.1,963.9,2.63,6.03,171,174,0.00 +2023-07-24T10:00,18.6,963.6,2.91,6.09,164,166,0.00 +2023-07-24T11:00,18.3,964.6,2.81,6.41,184,184,0.00 +2023-07-24T12:00,19.1,964.5,2.69,5.15,158,156,0.00 +2023-07-24T13:00,21.6,965.2,3.38,6.26,161,155,0.00 +2023-07-24T14:00,24.0,966.2,2.73,6.06,172,167,0.00 +2023-07-24T15:00,26.0,966.8,3.21,4.41,176,176,0.00 +2023-07-24T16:00,27.5,967.0,3.90,5.10,179,179,0.00 +2023-07-24T17:00,28.5,967.0,4.00,5.20,183,182,0.00 +2023-07-24T18:00,29.1,967.1,3.72,4.73,186,186,0.00 +2023-07-24T19:00,29.7,966.7,3.50,4.40,182,181,0.00 +2023-07-24T20:00,30.2,966.7,3.50,4.40,178,177,0.00 +2023-07-24T21:00,30.4,966.2,3.20,4.10,180,180,0.00 +2023-07-24T22:00,30.4,965.9,2.45,3.06,192,191,0.00 +2023-07-24T23:00,30.1,965.8,2.10,2.60,183,180,0.00 +2023-07-25T00:00,28.7,966.6,2.20,3.31,180,175,0.00 +2023-07-25T01:00,26.5,966.1,1.41,3.28,172,168,0.00 +2023-07-25T02:00,23.6,965.5,2.69,3.58,149,150,0.00 +2023-07-25T03:00,23.7,965.9,2.28,4.97,151,150,0.00 +2023-07-25T04:00,23.3,966.0,2.61,5.99,148,147,0.00 +2023-07-25T05:00,22.7,965.8,2.64,6.41,151,149,0.00 +2023-07-25T06:00,22.3,966.1,2.69,6.45,158,156,0.00 +2023-07-25T07:00,21.9,965.7,3.20,6.99,166,163,0.00 +2023-07-25T08:00,21.7,965.4,3.62,7.78,174,172,0.00 +2023-07-25T09:00,21.4,965.2,3.70,7.80,182,181,0.00 +2023-07-25T10:00,21.0,965.0,3.50,7.50,180,180,0.00 +2023-07-25T11:00,20.7,964.7,3.51,7.51,177,178,0.00 +2023-07-25T12:00,21.1,965.3,3.51,6.84,175,174,0.00 +2023-07-25T13:00,22.7,965.6,3.40,7.10,178,181,0.00 +2023-07-25T14:00,24.6,965.9,3.30,4.90,180,182,0.00 +2023-07-25T15:00,26.9,965.1,3.22,4.35,154,157,0.00 +2023-07-25T16:00,28.6,964.7,5.01,6.58,151,152,0.00 +2023-07-25T17:00,29.7,964.2,6.02,7.99,148,148,0.00 +2023-07-25T18:00,30.4,963.9,6.32,8.34,157,157,0.00 +2023-07-25T19:00,30.9,963.3,5.96,7.80,157,157,0.00 +2023-07-25T20:00,30.9,962.8,6.14,8.08,168,168,0.00 +2023-07-25T21:00,30.7,962.1,5.76,7.67,172,173,0.00 +2023-07-25T22:00,31.0,961.1,5.17,7.01,165,166,0.00 +2023-07-25T23:00,31.0,960.8,5.34,7.35,167,168,0.00 +2023-07-26T00:00,29.6,961.1,3.40,6.00,137,143,0.00 +2023-07-26T01:00,24.0,962.6,4.22,4.27,306,303,7.20 +2023-07-26T02:00,23.2,960.2,4.59,7.88,164,160,0.20 +2023-07-26T03:00,23.5,960.1,6.16,10.39,167,169,0.00 +2023-07-26T04:00,23.1,959.3,5.48,9.61,165,168,0.00 +2023-07-26T05:00,23.3,958.8,6.40,10.90,180,181,0.00 +2023-07-26T06:00,23.3,957.7,7.20,12.10,178,180,0.00 +2023-07-26T07:00,23.1,957.4,6.99,11.80,199,198,0.00 +2023-07-26T08:00,23.5,957.5,4.44,8.42,234,224,0.00 +2023-07-26T09:00,21.2,957.0,3.22,6.17,216,230,6.30 +2023-07-26T10:00,22.6,957.1,4.49,8.04,258,259,0.00 +2023-07-26T11:00,22.1,957.4,3.38,6.64,304,301,0.00 +2023-07-26T12:00,21.8,959.3,2.20,3.18,39,28,0.00 +2023-07-26T13:00,22.6,959.4,0.81,1.00,97,84,0.00 +2023-07-26T14:00,24.3,959.7,0.86,1.08,234,236,0.00 +2023-07-26T15:00,26.1,959.7,2.31,2.92,275,276,0.00 +2023-07-26T16:00,28.0,959.8,2.91,3.61,274,275,0.00 +2023-07-26T17:00,29.7,960.1,2.67,3.37,283,282,0.00 +2023-07-26T18:00,31.1,960.4,2.42,3.05,294,293,0.00 +2023-07-26T19:00,32.1,960.6,2.47,3.10,291,291,0.00 +2023-07-26T20:00,32.9,960.7,2.97,3.83,312,311,0.00 +2023-07-26T21:00,33.3,960.5,3.76,4.97,331,330,0.00 +2023-07-26T22:00,33.3,960.6,3.58,4.83,337,336,0.00 +2023-07-26T23:00,32.6,960.3,3.09,4.48,335,336,0.00 +2023-07-27T00:00,32.1,960.5,0.81,1.12,60,63,0.00 +2023-07-27T01:00,30.0,960.3,1.33,1.32,103,99,0.00 +2023-07-27T02:00,30.2,960.8,0.81,0.73,60,74,0.00 +2023-07-27T03:00,26.1,960.7,1.97,2.02,156,147,0.00 +2023-07-27T04:00,25.6,960.6,1.87,4.12,164,166,0.00 +2023-07-27T05:00,25.1,960.5,2.12,4.75,172,172,0.00 +2023-07-27T06:00,25.4,960.6,3.52,7.67,187,187,0.00 +2023-07-27T07:00,25.7,960.8,3.98,8.25,198,199,0.00 +2023-07-27T08:00,25.4,959.9,3.92,7.83,199,205,0.00 +2023-07-27T09:00,24.7,959.9,3.77,7.74,202,207,0.00 +2023-07-27T10:00,24.4,959.7,3.83,7.78,200,208,0.00 +2023-07-27T11:00,24.0,960.2,2.97,6.94,200,205,0.00 +2023-07-27T12:00,25.2,960.6,5.60,9.65,181,186,0.00 +2023-07-27T13:00,26.3,960.6,6.60,11.54,180,184,0.00 +2023-07-27T14:00,28.0,959.9,5.02,7.98,185,188,0.00 +2023-07-27T15:00,30.0,960.4,5.19,7.72,199,199,0.00 +2023-07-27T16:00,30.9,961.0,5.74,7.84,203,203,0.00 +2023-07-27T17:00,32.0,960.8,6.69,9.19,194,194,0.00 +2023-07-27T18:00,32.7,960.5,6.14,8.26,196,197,0.00 +2023-07-27T19:00,33.6,960.2,6.24,8.43,202,202,0.00 +2023-07-27T20:00,34.2,959.9,5.52,7.32,215,215,0.00 +2023-07-27T21:00,34.5,959.2,3.84,5.28,219,217,0.10 +2023-07-27T22:00,28.2,959.4,2.66,3.25,34,45,5.40 +2023-07-27T23:00,24.8,959.4,3.81,5.61,185,202,12.20 +2023-07-28T00:00,33.3,960.0,3.26,5.92,227,233,0.00 +2023-07-28T01:00,30.6,959.2,5.97,10.29,194,196,0.00 +2023-07-28T02:00,29.2,959.2,5.05,9.49,214,213,0.00 +2023-07-28T03:00,20.7,962.0,8.54,13.81,35,33,2.50 +2023-07-28T04:00,21.5,961.0,5.02,5.58,137,144,0.10 +2023-07-28T05:00,21.6,961.1,6.72,11.26,150,145,0.00 +2023-07-28T06:00,22.2,961.2,5.63,9.51,160,158,0.00 +2023-07-28T07:00,22.3,960.6,3.67,6.68,191,189,0.00 +2023-07-28T08:00,22.2,960.3,4.05,7.75,200,200,0.00 +2023-07-28T09:00,21.6,960.6,2.00,2.51,3,355,0.00 +2023-07-28T10:00,21.2,960.9,1.84,3.92,41,38,0.00 +2023-07-28T11:00,21.3,961.5,0.71,2.10,352,25,0.00 +2023-07-28T12:00,20.5,962.2,2.45,3.42,348,345,0.00 +2023-07-28T13:00,21.4,963.1,2.64,3.08,37,36,0.00 +2023-07-28T14:00,22.3,963.7,3.72,4.66,36,35,0.00 +2023-07-28T15:00,23.3,963.7,4.28,5.42,37,38,0.00 +2023-07-28T16:00,24.6,963.9,4.10,5.31,43,43,0.00 +2023-07-28T17:00,26.3,964.2,4.00,5.11,58,59,0.00 +2023-07-28T18:00,27.4,964.3,3.36,4.25,60,60,0.00 +2023-07-28T19:00,28.0,964.3,2.84,3.64,51,53,0.00 +2023-07-28T20:00,28.4,964.4,3.11,3.91,33,32,0.00 +2023-07-28T21:00,29.0,964.4,2.89,3.59,14,13,0.00 +2023-07-28T22:00,28.3,964.3,3.70,4.90,19,17,0.10 +2023-07-28T23:00,28.2,964.8,5.20,7.26,11,12,0.00 +2023-07-29T00:00,24.8,965.7,6.26,9.44,27,28,0.00 +2023-07-29T01:00,23.2,965.4,4.39,7.60,30,33,0.00 +2023-07-29T02:00,21.7,965.8,4.18,7.75,17,20,0.00 +2023-07-29T03:00,20.6,966.6,3.55,7.01,10,14,0.00 +2023-07-29T04:00,19.9,967.4,3.90,7.55,360,7,0.00 +2023-07-29T05:00,19.3,968.0,3.42,6.91,7,14,0.00 +2023-07-29T06:00,18.9,968.8,3.41,6.86,357,8,0.00 +2023-07-29T07:00,18.7,969.0,3.50,7.22,2,10,0.00 +2023-07-29T08:00,18.1,968.8,3.31,6.80,355,2,0.00 +2023-07-29T09:00,17.4,968.9,2.72,5.91,343,357,0.00 +2023-07-29T10:00,16.9,969.1,2.91,6.21,344,356,0.00 +2023-07-29T11:00,16.3,969.4,3.14,6.51,338,349,0.00 +2023-07-29T12:00,16.5,970.7,4.02,7.16,325,333,0.00 +2023-07-29T13:00,17.3,971.1,4.21,8.56,332,337,0.00 +2023-07-29T14:00,18.8,970.9,4.05,5.87,344,346,0.00 +2023-07-29T15:00,20.5,970.9,4.54,5.94,346,347,0.00 +2023-07-29T16:00,22.0,971.6,4.47,5.79,350,350,0.00 +2023-07-29T17:00,23.0,971.9,4.18,5.30,349,349,0.00 +2023-07-29T18:00,23.7,971.3,4.00,5.02,347,347,0.00 +2023-07-29T19:00,24.4,971.2,4.18,5.22,339,340,0.00 +2023-07-29T20:00,24.5,971.2,4.52,5.69,335,336,0.00 +2023-07-29T21:00,24.5,971.1,4.30,5.56,329,330,0.00 +2023-07-29T22:00,24.3,970.9,4.57,5.91,331,332,0.00 +2023-07-29T23:00,23.8,970.8,4.44,5.79,337,339,0.00 +2023-07-30T00:00,22.6,971.1,3.96,5.46,344,346,0.00 +2023-07-30T01:00,21.3,970.7,3.14,5.54,338,340,0.00 +2023-07-30T02:00,19.5,970.5,2.82,5.95,333,340,0.00 +2023-07-30T03:00,18.4,970.7,2.85,6.12,342,349,0.00 +2023-07-30T04:00,17.3,970.6,2.06,5.32,346,355,0.00 +2023-07-30T05:00,16.4,970.7,1.88,4.84,335,353,0.00 +2023-07-30T06:00,15.9,971.1,1.91,4.37,313,340,0.00 +2023-07-30T07:00,15.1,970.7,1.70,3.89,315,342,0.00 +2023-07-30T08:00,14.6,970.1,1.63,3.93,317,345,0.00 +2023-07-30T09:00,14.9,970.2,1.65,3.20,284,321,0.00 +2023-07-30T10:00,14.2,970.1,1.88,3.39,295,315,0.00 +2023-07-30T11:00,14.0,970.2,1.98,4.36,311,328,0.00 +2023-07-30T12:00,14.8,970.6,2.10,3.82,335,354,0.00 +2023-07-30T13:00,16.6,971.0,1.70,2.69,298,338,0.00 +2023-07-30T14:00,18.3,971.1,1.80,2.53,3,9,0.00 +2023-07-30T15:00,19.9,971.9,1.99,2.50,342,344,0.00 +2023-07-30T16:00,21.1,971.9,1.58,1.87,342,344,0.00 +2023-07-30T17:00,22.3,971.9,1.30,1.60,356,356,0.00 +2023-07-30T18:00,23.2,971.4,0.71,0.85,315,315,0.00 +2023-07-30T19:00,23.6,971.0,0.72,0.81,326,330,0.00 +2023-07-30T20:00,24.3,970.7,1.12,1.33,10,13,0.00 +2023-07-30T21:00,24.7,969.9,0.81,0.94,60,58,0.00 +2023-07-30T22:00,25.0,969.3,1.08,1.30,68,67,0.00 +2023-07-30T23:00,24.9,968.8,1.43,1.75,78,77,0.00 +2023-07-31T00:00,23.9,969.2,2.28,2.88,67,70,0.00 +2023-07-31T01:00,22.6,969.2,2.36,4.53,54,59,0.00 +2023-07-31T02:00,20.8,969.1,3.07,6.24,71,74,0.00 +2023-07-31T03:00,19.9,969.3,3.01,6.35,84,83,0.00 +2023-07-31T04:00,19.2,969.3,2.60,6.10,92,91,0.00 +2023-07-31T05:00,18.6,969.3,2.55,5.89,101,100,0.00 +2023-07-31T06:00,18.1,969.4,2.21,5.48,108,105,0.00 +2023-07-31T07:00,17.7,969.4,2.13,5.16,139,126,0.00 +2023-07-31T08:00,17.8,969.2,2.52,5.85,124,123,0.00 +2023-07-31T09:00,17.5,969.0,2.64,6.13,119,118,0.00 +2023-07-31T10:00,17.2,969.1,2.58,6.07,126,123,0.00 +2023-07-31T11:00,17.4,969.5,2.83,6.37,132,132,0.00 +2023-07-31T12:00,17.7,970.4,3.26,6.08,153,153,0.00 +2023-07-31T13:00,18.4,970.5,2.76,6.82,134,145,0.00 +2023-07-31T14:00,19.5,970.5,2.66,6.01,124,136,0.00 +2023-07-31T15:00,21.3,970.6,3.04,4.18,136,138,0.00 +2023-07-31T16:00,23.2,970.7,3.76,4.86,140,143,0.00 +2023-07-31T17:00,24.4,970.5,3.26,4.17,133,134,0.00 +2023-07-31T18:00,25.4,970.0,3.05,3.83,122,123,0.00 +2023-07-31T19:00,26.1,969.4,3.13,3.80,117,117,0.00 +2023-07-31T20:00,26.5,969.2,2.94,3.70,108,109,0.00 +2023-07-31T21:00,26.6,969.0,2.88,3.55,110,112,0.00 +2023-07-31T22:00,26.5,968.8,2.59,3.31,118,119,0.00 +2023-07-31T23:00,26.3,968.5,3.05,3.91,122,122,0.00 +2023-08-01T00:00,25.7,968.8,2.16,3.58,124,126,0.00 +2023-08-01T01:00,24.5,968.7,2.28,4.79,113,116,0.00 +2023-08-01T02:00,22.7,968.9,3.03,6.04,98,102,0.00 +2023-08-01T03:00,21.9,969.1,4.00,7.57,103,105,0.00 +2023-08-01T04:00,21.4,969.0,3.72,7.60,114,117,0.00 +2023-08-01T05:00,20.9,969.0,3.44,7.22,126,127,0.00 +2023-08-01T06:00,20.5,968.9,3.47,7.25,139,141,0.00 +2023-08-01T07:00,20.5,968.7,3.94,7.92,153,154,0.00 +2023-08-01T08:00,20.5,968.8,3.92,7.82,161,164,0.00 +2023-08-01T09:00,20.4,968.9,3.40,7.00,166,170,0.00 +2023-08-01T10:00,20.1,969.1,2.84,6.23,170,174,0.00 +2023-08-01T11:00,20.0,969.1,3.31,6.81,175,177,0.00 +2023-08-01T12:00,20.0,969.0,3.29,6.26,160,167,0.00 +2023-08-01T13:00,21.3,969.4,2.85,5.82,162,168,0.00 +2023-08-01T14:00,22.7,969.7,3.61,5.03,161,163,0.00 +2023-08-01T15:00,23.9,969.5,4.03,5.36,166,166,0.00 +2023-08-01T16:00,25.4,969.4,4.55,5.95,171,172,0.00 +2023-08-01T17:00,26.1,969.1,4.24,5.55,165,166,0.00 +2023-08-01T18:00,26.9,968.8,4.27,5.60,164,164,0.00 +2023-08-01T19:00,27.6,968.5,4.22,5.53,166,167,0.00 +2023-08-01T20:00,27.7,968.3,4.22,5.52,175,175,0.00 +2023-08-01T21:00,28.1,967.8,4.31,5.61,184,184,0.00 +2023-08-01T22:00,28.2,967.2,3.91,5.22,183,184,0.00 +2023-08-01T23:00,27.9,966.8,3.13,4.42,173,175,0.00 +2023-08-02T00:00,26.3,967.1,2.83,4.18,132,138,0.00 +2023-08-02T01:00,25.0,966.8,2.52,5.22,124,126,0.00 +2023-08-02T02:00,23.9,966.4,3.32,6.71,111,115,0.00 +2023-08-02T03:00,23.3,966.9,3.83,7.65,105,107,0.00 +2023-08-02T04:00,22.7,967.1,3.67,7.62,116,120,0.00 +2023-08-02T05:00,22.7,967.2,3.26,6.93,130,136,0.00 +2023-08-02T06:00,22.9,966.9,3.31,6.71,151,153,0.00 +2023-08-02T07:00,22.4,966.2,3.63,7.48,172,172,0.00 +2023-08-02T08:00,21.9,965.6,3.31,6.91,177,178,0.00 +2023-08-02T09:00,21.6,965.0,4.10,7.90,179,181,0.00 +2023-08-02T10:00,21.7,964.9,4.30,8.02,181,184,0.00 +2023-08-02T11:00,21.4,964.7,3.41,6.86,185,188,0.00 +2023-08-02T12:00,21.0,964.4,2.69,4.92,112,128,0.00 +2023-08-02T13:00,22.8,965.6,3.76,5.06,140,142,0.40 +2023-08-02T14:00,22.5,965.6,3.19,4.40,139,141,0.10 +2023-08-02T15:00,24.1,965.5,2.30,2.90,180,180,0.00 +2023-08-02T16:00,24.7,965.9,1.39,1.73,69,80,0.10 +2023-08-02T17:00,23.5,965.7,2.62,3.10,18,21,1.30 +2023-08-02T18:00,21.8,965.7,6.18,8.13,29,32,0.30 +2023-08-02T19:00,23.2,965.6,3.96,5.09,45,47,0.00 +2023-08-02T20:00,25.7,965.5,2.12,2.62,82,83,0.00 +2023-08-02T21:00,26.8,965.1,1.86,2.30,144,146,0.00 +2023-08-02T22:00,27.4,964.8,2.19,2.69,156,158,0.00 +2023-08-02T23:00,27.6,964.5,1.62,2.02,158,160,0.00 +2023-08-03T00:00,26.9,964.8,2.10,2.70,180,180,0.00 +2023-08-03T01:00,25.7,964.8,1.00,2.40,186,182,0.00 +2023-08-03T02:00,23.5,964.8,2.02,2.72,171,174,0.00 +2023-08-03T03:00,23.1,965.2,1.58,3.81,162,166,0.00 +2023-08-03T04:00,22.5,965.1,1.87,4.63,164,166,0.00 +2023-08-03T05:00,21.9,965.1,1.60,3.91,176,176,0.00 +2023-08-03T06:00,21.7,965.1,1.90,4.40,180,183,0.00 +2023-08-03T07:00,21.2,964.9,1.81,4.39,186,192,0.00 +2023-08-03T08:00,20.7,964.9,1.68,3.85,197,205,0.00 +2023-08-03T09:00,20.5,965.1,1.71,3.62,201,208,0.00 +2023-08-03T10:00,19.5,964.6,1.92,1.92,189,208,0.00 +2023-08-03T11:00,20.0,964.7,1.20,1.39,185,201,0.00 +2023-08-03T12:00,20.9,965.3,0.98,0.10,204,180,0.00 +2023-08-03T13:00,23.3,965.9,1.17,0.32,239,198,0.00 +2023-08-03T14:00,24.9,966.8,0.32,0.40,342,360,0.00 +2023-08-03T15:00,26.0,967.0,0.73,0.95,106,108,0.00 +2023-08-03T16:00,27.0,966.9,0.98,1.25,114,119,0.00 +2023-08-03T17:00,27.7,966.6,1.12,1.32,100,99,0.10 +2023-08-03T18:00,28.1,966.1,1.14,1.36,128,126,0.00 +2023-08-03T19:00,28.3,965.9,0.95,1.17,162,160,0.10 +2023-08-03T20:00,28.6,965.8,0.22,0.32,153,162,0.10 +2023-08-03T21:00,28.7,965.4,0.54,0.54,338,338,0.00 +2023-08-03T22:00,28.7,964.9,0.91,1.10,354,355,0.00 +2023-08-03T23:00,28.6,965.1,0.81,1.00,353,354,0.00 +2023-08-04T00:00,27.9,965.0,0.92,1.13,41,45,0.00 +2023-08-04T01:00,26.3,964.8,1.36,1.49,36,42,0.00 +2023-08-04T02:00,26.1,964.8,1.43,1.63,25,43,0.00 +2023-08-04T03:00,25.9,965.2,1.39,1.56,60,50,0.00 +2023-08-04T04:00,25.2,965.3,0.54,0.71,158,45,0.00 +2023-08-04T05:00,22.5,965.0,0.95,0.22,198,153,0.00 +2023-08-04T06:00,20.8,964.7,1.64,0.92,218,229,0.00 +2023-08-04T07:00,20.6,964.7,1.17,0.86,250,306,0.00 +2023-08-04T08:00,20.7,964.7,1.12,1.61,280,7,0.00 +2023-08-04T09:00,20.6,964.6,0.91,1.04,264,17,0.00 +2023-08-04T10:00,20.4,964.4,1.44,1.73,304,10,0.00 +2023-08-04T11:00,19.4,964.3,1.91,3.57,354,18,0.00 +2023-08-04T12:00,20.2,964.2,1.46,3.92,16,38,0.00 +2023-08-04T13:00,21.8,965.1,0.91,2.20,6,60,0.00 +2023-08-04T14:00,23.6,965.2,2.01,2.98,27,40,0.00 +2023-08-04T15:00,25.0,965.5,2.42,3.08,52,54,0.00 +2023-08-04T16:00,26.4,965.9,2.51,3.10,67,69,0.00 +2023-08-04T17:00,27.7,965.7,2.69,3.37,75,78,0.00 +2023-08-04T18:00,28.6,965.4,2.63,3.35,99,100,0.10 +2023-08-04T19:00,28.8,965.0,2.80,3.51,92,93,0.00 +2023-08-04T20:00,29.1,964.4,3.11,3.91,94,94,0.00 +2023-08-04T21:00,29.2,964.3,2.96,3.69,102,103,0.00 +2023-08-04T22:00,28.9,964.1,3.11,3.91,94,94,0.00 +2023-08-04T23:00,28.2,963.6,3.41,4.90,87,89,0.00 +2023-08-05T00:00,27.4,963.7,3.82,6.25,96,97,0.00 +2023-08-05T01:00,23.9,963.9,2.62,4.71,50,73,0.90 +2023-08-05T02:00,24.2,963.6,2.20,5.18,93,100,0.00 +2023-08-05T03:00,24.4,963.9,3.42,6.80,105,107,0.00 +2023-08-05T04:00,23.9,964.0,3.49,7.07,114,115,0.00 +2023-08-05T05:00,23.4,964.1,4.11,8.01,116,119,0.00 +2023-08-05T06:00,20.9,964.7,3.74,4.86,304,307,6.20 +2023-08-05T07:00,19.9,964.5,3.09,4.96,115,138,5.00 +2023-08-05T08:00,20.2,963.8,3.33,6.52,139,144,0.60 +2023-08-05T09:00,19.9,964.2,3.24,6.33,146,149,0.80 +2023-08-05T10:00,19.6,964.0,3.61,6.97,134,141,0.10 +2023-08-05T11:00,19.3,964.0,2.97,5.94,138,147,0.00 +2023-08-05T12:00,21.2,964.2,2.98,6.03,130,140,0.00 +2023-08-05T13:00,22.5,964.5,3.58,6.63,113,124,0.00 +2023-08-05T14:00,23.3,964.7,5.05,6.69,124,125,0.00 +2023-08-05T15:00,24.8,965.0,5.53,7.53,139,140,0.00 +2023-08-05T16:00,25.1,964.8,6.22,8.42,136,137,0.10 +2023-08-05T17:00,25.9,964.7,6.34,8.42,142,143,0.00 +2023-08-05T18:00,25.9,964.5,6.76,9.18,142,142,0.00 +2023-08-05T19:00,25.8,963.9,6.21,8.60,147,147,0.00 +2023-08-05T20:00,26.3,964.0,6.63,9.04,146,147,0.10 +2023-08-05T21:00,25.7,963.5,5.97,8.25,140,141,0.00 +2023-08-05T22:00,25.2,963.3,5.59,8.13,136,135,0.10 +2023-08-05T23:00,23.1,962.9,5.53,8.50,139,139,0.60 +2023-08-06T00:00,23.0,962.7,4.30,8.10,115,116,1.00 +2023-08-06T01:00,22.3,962.6,4.27,7.61,111,115,0.80 +2023-08-06T02:00,21.1,962.2,4.53,8.49,96,102,0.60 +2023-08-06T03:00,20.7,961.7,5.10,9.35,90,96,0.80 +2023-08-06T04:00,20.4,961.6,4.95,9.22,98,103,0.50 +2023-08-06T05:00,20.1,961.4,5.12,9.54,96,100,0.80 +2023-08-06T06:00,19.5,960.9,6.14,10.69,97,101,0.70 +2023-08-06T07:00,19.3,960.6,6.41,10.68,94,97,0.30 +2023-08-06T08:00,18.7,959.9,6.10,10.12,89,94,0.60 +2023-08-06T09:00,18.0,959.9,5.81,9.81,87,92,6.50 +2023-08-06T10:00,17.8,959.0,6.62,10.89,75,79,8.80 +2023-08-06T11:00,17.6,958.5,6.71,10.94,73,76,6.50 +2023-08-06T12:00,17.8,960.5,5.24,8.72,55,62,1.70 +2023-08-06T13:00,17.8,960.8,5.27,8.50,57,62,1.30 +2023-08-06T14:00,17.9,960.9,5.17,8.25,47,51,0.20 +2023-08-06T15:00,18.9,961.0,6.51,9.34,45,48,0.00 +2023-08-06T16:00,19.1,961.3,6.10,8.63,41,43,0.00 +2023-08-06T17:00,19.2,961.6,6.51,9.06,47,48,0.90 +2023-08-06T18:00,19.2,961.4,4.60,6.38,34,35,2.20 +2023-08-06T19:00,19.4,961.2,5.11,7.13,31,31,0.50 +2023-08-06T20:00,20.3,961.5,4.91,6.63,33,34,0.10 +2023-08-06T21:00,19.8,961.5,4.77,6.44,33,33,0.90 +2023-08-06T22:00,20.2,961.7,4.46,6.14,16,16,0.70 +2023-08-06T23:00,19.8,962.2,4.39,6.49,30,29,0.50 +2023-08-07T00:00,18.9,962.4,5.00,7.97,16,18,1.30 +2023-08-07T01:00,18.8,962.8,5.13,8.10,21,20,0.80 +2023-08-07T02:00,18.6,963.4,4.32,7.11,13,14,0.30 +2023-08-07T03:00,18.4,963.8,4.10,7.10,360,2,0.20 +2023-08-07T04:00,18.1,963.8,3.11,6.00,354,359,0.20 +2023-08-07T05:00,17.6,963.7,1.77,4.49,344,348,0.00 +2023-08-07T06:00,17.5,963.5,2.80,5.64,325,333,0.00 +2023-08-07T07:00,17.1,963.7,3.55,6.38,320,325,0.00 +2023-08-07T08:00,16.7,963.4,3.32,6.20,316,322,0.00 +2023-08-07T09:00,16.6,963.4,3.40,6.39,313,320,0.00 +2023-08-07T10:00,16.6,963.3,3.20,6.24,321,328,0.00 +2023-08-07T11:00,16.7,963.8,3.34,6.38,321,328,0.00 +2023-08-07T12:00,17.0,964.0,3.74,6.57,326,334,0.00 +2023-08-07T13:00,17.5,964.6,4.48,6.26,331,333,0.00 +2023-08-07T14:00,18.4,964.9,4.72,6.24,339,338,0.00 +2023-08-07T15:00,19.6,965.2,4.12,5.66,337,339,0.00 +2023-08-07T16:00,21.2,965.6,4.24,5.46,352,352,0.00 +2023-08-07T17:00,22.5,965.7,3.42,4.32,345,347,0.00 +2023-08-07T18:00,23.4,965.6,2.94,3.73,350,352,0.00 +2023-08-07T19:00,23.7,965.3,3.30,4.10,346,347,0.20 +2023-08-07T20:00,23.7,965.2,3.40,4.16,336,336,0.10 +2023-08-07T21:00,23.8,965.0,3.36,4.22,330,329,0.00 +2023-08-07T22:00,23.7,964.7,3.64,4.64,323,323,0.10 +2023-08-07T23:00,23.4,964.3,3.42,4.64,322,323,0.00 +2023-08-08T00:00,22.8,964.6,2.69,4.68,338,340,0.00 +2023-08-08T01:00,20.9,964.1,2.75,5.90,327,334,0.00 +2023-08-08T02:00,18.9,963.7,2.44,6.04,325,336,0.00 +2023-08-08T03:00,18.0,964.0,2.41,6.16,312,328,0.00 +2023-08-08T04:00,17.4,964.0,2.42,6.02,308,328,0.00 +2023-08-08T05:00,16.1,963.8,2.27,5.19,311,335,0.00 +2023-08-08T06:00,15.5,964.3,2.26,3.74,283,326,0.00 +2023-08-08T07:00,15.4,964.1,1.71,3.24,263,304,0.00 +2023-08-08T08:00,14.6,963.3,2.30,3.12,272,310,0.00 +2023-08-08T09:00,14.8,963.2,2.32,2.92,277,322,0.00 +2023-08-08T10:00,14.7,963.5,2.20,2.76,270,314,0.00 +2023-08-08T11:00,14.4,963.6,2.04,2.44,259,305,0.00 +2023-08-08T12:00,16.5,963.7,1.04,1.39,287,21,0.00 +2023-08-08T13:00,18.3,964.4,1.22,0.54,261,292,0.00 +2023-08-08T14:00,20.5,964.9,1.30,1.61,266,263,0.00 +2023-08-08T15:00,22.0,964.9,1.22,1.64,235,232,0.00 +2023-08-08T16:00,23.2,965.1,1.84,2.27,229,229,0.00 +2023-08-08T17:00,23.9,965.1,2.56,3.19,239,238,0.00 +2023-08-08T18:00,24.0,964.3,2.95,3.72,246,246,0.00 +2023-08-08T19:00,24.5,963.8,2.82,3.54,253,254,0.00 +2023-08-08T20:00,24.8,963.2,2.95,3.76,242,241,0.00 +2023-08-08T21:00,24.9,962.6,2.92,3.68,248,248,0.00 +2023-08-08T22:00,24.8,961.9,2.86,3.69,258,257,0.00 +2023-08-08T23:00,24.5,961.5,2.72,3.57,253,252,0.00 +2023-08-09T00:00,23.8,961.3,1.84,3.48,248,252,0.00 +2023-08-09T01:00,21.5,960.9,1.93,3.40,249,256,0.00 +2023-08-09T02:00,19.6,961.1,2.56,3.11,249,266,0.00 +2023-08-09T03:00,18.8,961.5,2.05,2.89,227,256,0.00 +2023-08-09T04:00,18.1,961.3,1.70,3.23,220,248,0.00 +2023-08-09T05:00,17.9,960.8,2.30,4.50,214,233,0.00 +2023-08-09T06:00,17.2,960.1,1.97,4.18,204,228,0.00 +2023-08-09T07:00,16.7,960.2,2.15,4.17,208,224,0.00 +2023-08-09T08:00,16.5,959.7,1.97,3.91,210,220,0.00 +2023-08-09T09:00,16.4,959.3,2.02,3.96,213,225,0.00 +2023-08-09T10:00,16.4,959.2,2.58,4.69,216,230,0.00 +2023-08-09T11:00,16.2,959.1,2.44,4.62,215,231,0.00 +2023-08-09T12:00,16.5,958.9,2.14,3.33,233,237,0.00 +2023-08-09T13:00,18.4,959.0,2.12,3.03,251,262,0.00 +2023-08-09T14:00,20.7,959.7,1.78,2.69,232,248,0.00 +2023-08-09T15:00,22.4,960.3,1.75,2.15,239,242,0.00 +2023-08-09T16:00,23.5,960.0,1.14,1.33,285,283,0.00 +2023-08-09T17:00,24.4,959.7,0.86,0.94,306,302,0.00 +2023-08-09T18:00,25.0,959.1,0.81,1.02,263,259,0.00 +2023-08-09T19:00,25.5,958.7,1.41,1.73,278,280,0.00 +2023-08-09T20:00,25.7,958.4,2.02,2.47,290,291,0.00 +2023-08-09T21:00,25.8,958.0,2.98,3.78,310,307,0.00 +2023-08-09T22:00,25.1,958.0,3.61,4.81,314,313,0.00 +2023-08-09T23:00,25.0,957.7,2.83,3.75,315,314,0.00 +2023-08-10T00:00,24.0,958.3,2.34,4.09,340,338,0.00 +2023-08-10T01:00,21.8,958.1,1.21,2.44,336,341,0.00 +2023-08-10T02:00,20.2,958.1,1.82,2.44,279,289,0.00 +2023-08-10T03:00,20.0,958.5,2.02,2.55,279,296,0.00 +2023-08-10T04:00,19.2,958.1,2.11,3.47,265,282,0.00 +2023-08-10T05:00,18.8,957.7,1.90,3.85,273,298,0.00 +2023-08-10T06:00,18.6,957.9,2.20,5.16,300,316,0.00 +2023-08-10T07:00,18.1,958.0,2.12,4.83,315,336,0.00 +2023-08-10T08:00,17.5,958.0,1.97,4.67,330,350,0.00 +2023-08-10T09:00,16.6,958.0,1.64,3.54,322,352,0.00 +2023-08-10T10:00,16.2,957.8,1.64,2.11,308,5,0.00 +2023-08-10T11:00,15.8,958.1,2.12,2.64,352,29,0.00 +2023-08-10T12:00,17.0,959.1,2.15,4.33,22,34,0.00 +2023-08-10T13:00,18.0,959.7,2.15,4.34,28,38,0.00 +2023-08-10T14:00,19.3,959.8,2.27,3.12,49,50,0.00 +2023-08-10T15:00,20.7,959.7,2.16,2.69,103,105,0.00 +2023-08-10T16:00,22.2,959.6,2.78,3.48,128,129,0.00 +2023-08-10T17:00,23.6,959.2,3.20,4.00,141,143,0.00 +2023-08-10T18:00,24.7,958.5,3.62,4.75,156,158,0.00 +2023-08-10T19:00,25.8,957.9,4.11,5.41,176,177,0.00 +2023-08-10T20:00,26.6,957.4,4.72,6.21,175,176,0.00 +2023-08-10T21:00,27.1,956.7,5.10,6.80,180,182,0.00 +2023-08-10T22:00,27.1,956.0,5.50,7.60,180,182,0.00 +2023-08-10T23:00,26.6,955.1,5.42,8.01,175,177,0.00 +2023-08-11T00:00,25.6,954.7,5.50,9.30,181,181,0.00 +2023-08-11T01:00,19.9,955.6,3.65,5.17,9,345,11.20 +2023-08-11T02:00,19.4,953.9,4.17,5.30,120,134,0.50 +2023-08-11T03:00,19.8,954.3,7.47,12.49,160,166,0.10 +2023-08-11T04:00,20.2,954.3,7.76,12.54,187,189,0.00 +2023-08-11T05:00,20.5,954.1,5.87,9.85,189,193,0.00 +2023-08-11T06:00,20.5,953.6,6.17,10.29,205,208,0.00 +2023-08-11T07:00,20.3,953.1,5.17,9.22,227,233,0.00 +2023-08-11T08:00,20.0,953.0,5.18,9.52,260,266,0.00 +2023-08-11T09:00,19.6,953.0,5.22,9.52,282,287,0.00 +2023-08-11T10:00,19.1,953.5,4.93,9.19,288,292,0.00 +2023-08-11T11:00,18.6,954.5,4.25,8.41,294,297,0.00 +2023-08-11T12:00,18.4,955.5,3.01,6.17,276,295,0.00 +2023-08-11T13:00,19.7,955.9,2.60,4.34,270,299,0.00 +2023-08-11T14:00,21.6,956.4,2.01,3.01,264,285,0.00 +2023-08-11T15:00,23.3,956.7,1.70,2.21,273,275,0.00 +2023-08-11T16:00,24.9,957.0,1.80,2.30,267,268,0.00 +2023-08-11T17:00,26.4,957.2,2.44,3.16,251,252,0.00 +2023-08-11T18:00,27.5,957.2,3.38,4.33,236,236,0.00 +2023-08-11T19:00,28.6,956.4,4.10,5.23,223,223,0.00 +2023-08-11T20:00,28.6,956.2,5.44,7.31,238,240,0.20 +2023-08-11T21:00,21.8,957.3,6.62,9.40,331,331,5.40 +2023-08-11T22:00,23.7,956.6,4.35,7.29,203,223,1.10 +2023-08-11T23:00,24.7,956.9,2.92,4.24,248,255,0.00 +2023-08-12T00:00,24.3,957.4,3.79,6.29,288,288,0.00 +2023-08-12T01:00,22.4,958.4,5.59,9.12,331,333,0.00 +2023-08-12T02:00,21.2,959.1,3.76,7.20,331,335,0.00 +2023-08-12T03:00,19.6,959.7,2.08,5.37,325,336,0.00 +2023-08-12T04:00,18.6,959.9,1.80,4.58,304,328,0.00 +2023-08-12T05:00,18.1,959.8,1.91,4.38,276,305,0.00 +2023-08-12T06:00,17.9,960.2,2.42,5.35,263,287,0.00 +2023-08-12T07:00,17.5,960.4,2.61,5.95,266,290,0.00 +2023-08-12T08:00,17.1,960.4,2.24,5.20,260,293,0.00 +2023-08-12T09:00,16.1,960.0,1.89,3.57,238,281,0.00 +2023-08-12T10:00,16.0,960.3,3.09,5.70,245,268,0.00 +2023-08-12T11:00,16.1,960.5,3.58,7.18,243,261,0.00 +2023-08-12T12:00,17.2,961.0,4.03,8.41,256,268,0.00 +2023-08-12T13:00,18.5,961.9,4.10,7.86,271,277,0.00 +2023-08-12T14:00,20.4,962.4,3.40,7.12,298,299,0.00 +2023-08-12T15:00,21.9,962.7,4.27,6.13,303,304,0.00 +2023-08-12T16:00,22.8,963.0,4.46,5.87,318,317,0.00 +2023-08-12T17:00,23.6,963.5,3.82,4.95,315,315,0.00 +2023-08-12T18:00,24.3,963.4,3.84,4.90,309,309,0.00 +2023-08-12T19:00,25.0,963.5,3.88,4.96,305,304,0.00 +2023-08-12T20:00,25.5,963.4,3.70,4.80,308,306,0.00 +2023-08-12T21:00,25.8,963.3,3.92,5.02,308,305,0.00 +2023-08-12T22:00,25.8,962.9,3.61,4.83,314,310,0.00 +2023-08-12T23:00,25.7,962.8,3.22,4.53,324,319,0.00 +2023-08-13T00:00,23.9,963.5,1.96,3.35,345,343,0.00 +2023-08-13T01:00,21.9,963.1,1.60,3.51,4,355,0.00 +2023-08-13T02:00,20.4,963.3,2.25,5.15,21,24,0.00 +2023-08-13T03:00,19.2,963.9,2.15,5.46,28,28,0.00 +2023-08-13T04:00,17.9,964.2,1.84,4.66,22,23,0.00 +2023-08-13T05:00,17.2,964.1,2.55,3.91,48,32,0.00 +2023-08-13T06:00,18.0,964.4,2.06,3.19,67,32,0.00 +2023-08-13T07:00,17.7,964.1,2.31,3.33,72,41,0.00 +2023-08-13T08:00,18.7,964.0,1.87,2.76,74,44,0.00 +2023-08-13T09:00,18.1,964.1,0.32,0.72,198,56,0.20 +2023-08-13T10:00,18.1,963.7,0.82,1.91,166,96,1.10 +2023-08-13T11:00,17.5,964.0,3.32,5.49,159,147,1.10 +2023-08-13T12:00,17.5,964.2,2.84,5.46,141,131,0.50 +2023-08-13T13:00,17.4,964.6,2.80,5.44,145,148,0.60 +2023-08-13T14:00,17.6,964.6,2.02,4.24,123,135,0.40 +2023-08-13T15:00,18.1,964.7,2.38,3.49,112,117,0.20 +2023-08-13T16:00,18.5,964.9,3.11,4.46,132,132,0.00 +2023-08-13T17:00,19.0,964.9,3.61,5.10,132,132,0.10 +2023-08-13T18:00,19.1,964.4,3.97,5.74,131,131,0.10 +2023-08-13T19:00,18.9,964.1,4.22,6.00,126,127,0.40 +2023-08-13T20:00,19.0,963.6,4.29,6.04,118,119,0.00 +2023-08-13T21:00,19.2,963.0,4.29,5.87,118,120,0.60 +2023-08-13T22:00,18.4,962.4,4.00,5.63,93,96,11.00 +2023-08-13T23:00,18.7,961.7,5.33,7.77,120,122,0.50 +2023-08-14T00:00,18.7,961.8,4.34,7.12,151,156,0.60 +2023-08-14T01:00,19.1,961.2,5.00,8.02,164,170,0.20 +2023-08-14T02:00,18.5,960.9,4.84,8.30,173,181,0.00 +2023-08-14T03:00,18.0,960.4,5.35,8.95,197,205,0.00 +2023-08-14T04:00,16.3,959.6,5.33,9.14,214,221,0.00 +2023-08-14T05:00,16.0,959.0,4.96,8.28,208,217,0.00 +2023-08-14T06:00,16.4,958.8,5.41,8.59,236,244,0.00 +2023-08-14T07:00,16.0,958.6,5.55,8.49,256,262,0.00 +2023-08-14T08:00,15.9,958.3,5.56,8.95,278,284,0.30 +2023-08-14T09:00,15.5,958.8,5.01,8.08,296,301,0.10 +2023-08-14T10:00,15.5,958.5,5.24,9.04,325,335,0.30 +2023-08-14T11:00,15.8,958.8,6.04,10.77,344,350,0.40 +2023-08-14T12:00,15.0,960.1,7.22,12.41,356,3,0.40 +2023-08-14T13:00,15.2,961.0,7.64,11.44,6,9,0.20 +2023-08-14T14:00,15.6,961.9,8.05,11.30,6,8,0.20 +2023-08-14T15:00,16.3,962.9,8.88,12.81,12,13,0.20 +2023-08-14T16:00,17.5,964.2,9.10,12.79,12,12,0.20 +2023-08-14T17:00,17.9,965.1,8.65,11.99,6,7,0.30 +2023-08-14T18:00,18.2,965.8,8.47,11.82,7,8,0.10 +2023-08-14T19:00,18.2,966.4,8.19,11.33,8,9,0.30 +2023-08-14T20:00,19.3,966.9,7.33,10.04,5,5,0.00 +2023-08-14T21:00,20.1,967.1,7.36,9.97,7,7,0.00 +2023-08-14T22:00,20.1,967.4,7.36,10.08,7,7,0.00 +2023-08-14T23:00,19.8,967.5,5.77,8.15,14,14,0.00 +2023-08-15T00:00,19.0,968.2,3.74,5.92,16,16,0.00 +2023-08-15T01:00,17.5,968.1,2.14,5.02,11,13,0.00 +2023-08-15T02:00,15.5,968.2,1.90,4.90,357,1,0.00 +2023-08-15T03:00,14.5,968.6,2.24,5.30,350,360,0.00 +2023-08-15T04:00,13.7,968.5,2.44,5.10,341,360,0.00 +2023-08-15T05:00,13.1,968.5,2.00,4.79,307,334,0.00 +2023-08-15T06:00,12.8,968.2,2.02,4.07,290,332,0.00 +2023-08-15T07:00,12.8,968.2,2.09,4.25,287,319,0.00 +2023-08-15T08:00,12.5,968.0,2.12,4.25,278,311,0.00 +2023-08-15T09:00,12.1,967.7,2.00,3.94,270,306,0.00 +2023-08-15T10:00,12.0,967.7,2.11,4.11,265,296,0.00 +2023-08-15T11:00,12.2,968.2,2.32,4.84,263,288,0.00 +2023-08-15T12:00,12.7,968.7,2.97,5.32,250,265,0.00 +2023-08-15T13:00,14.7,969.2,3.48,6.11,252,266,0.00 +2023-08-15T14:00,17.2,970.0,3.07,6.40,251,268,0.00 +2023-08-15T15:00,19.8,970.3,2.77,4.62,257,265,0.00 +2023-08-15T16:00,21.5,970.2,3.21,4.20,266,267,0.00 +2023-08-15T17:00,22.5,970.0,3.31,4.20,267,267,0.00 +2023-08-15T18:00,23.2,969.3,3.24,4.04,261,261,0.00 +2023-08-15T19:00,24.3,968.7,3.40,4.40,268,269,0.00 +2023-08-15T20:00,24.8,968.1,3.54,4.54,262,262,0.00 +2023-08-15T21:00,25.2,967.4,3.51,4.51,265,266,0.00 +2023-08-15T22:00,24.9,967.0,3.07,4.27,251,254,0.00 +2023-08-15T23:00,24.8,966.2,3.05,4.49,247,249,0.00 +2023-08-16T00:00,23.5,966.5,1.92,3.75,219,226,0.00 +2023-08-16T01:00,21.2,965.9,2.02,4.69,200,214,0.00 +2023-08-16T02:00,19.7,965.6,2.86,6.30,205,216,0.00 +2023-08-16T03:00,19.1,965.8,3.28,7.06,211,218,0.00 +2023-08-16T04:00,18.5,965.2,3.42,7.29,201,205,0.00 +2023-08-16T05:00,18.2,964.7,4.27,8.58,196,201,0.00 +2023-08-16T06:00,17.9,964.0,4.72,9.27,201,204,0.00 +2023-08-16T07:00,17.6,963.8,4.85,9.44,202,206,0.00 +2023-08-16T08:00,17.3,963.1,5.28,9.98,205,208,0.00 +2023-08-16T09:00,17.1,962.7,5.73,10.52,205,209,0.00 +2023-08-16T10:00,16.9,962.1,5.96,10.91,203,207,0.00 +2023-08-16T11:00,16.9,961.5,6.55,11.61,199,203,0.00 +2023-08-16T12:00,17.7,961.5,7.05,12.07,198,202,0.00 +2023-08-16T13:00,18.7,961.0,7.68,12.44,198,201,0.00 +2023-08-16T14:00,20.1,960.4,7.42,12.05,194,197,0.00 +2023-08-16T15:00,21.5,959.5,8.34,12.16,194,196,0.00 +2023-08-16T16:00,23.2,958.6,8.61,12.21,195,197,0.00 +2023-08-16T17:00,24.7,957.6,8.78,12.35,195,195,0.00 +2023-08-16T18:00,26.0,956.3,9.39,13.17,194,195,0.00 +2023-08-16T19:00,27.2,955.1,9.84,13.79,197,198,0.00 +2023-08-16T20:00,27.9,954.0,10.20,14.45,201,202,0.00 +2023-08-16T21:00,28.4,953.2,10.03,14.43,210,210,0.00 +2023-08-16T22:00,28.8,952.7,9.00,13.22,217,217,0.00 +2023-08-16T23:00,28.9,953.3,5.86,9.30,243,243,0.00 +2023-08-17T00:00,28.1,954.0,5.28,8.81,260,261,0.00 +2023-08-17T01:00,27.1,954.2,6.18,10.59,299,304,0.00 +2023-08-17T02:00,23.9,955.3,8.27,13.15,325,325,0.00 +2023-08-17T03:00,21.7,956.2,7.02,11.62,324,325,0.00 +2023-08-17T04:00,21.1,956.3,6.65,11.25,315,317,0.00 +2023-08-17T05:00,21.4,956.4,6.30,10.54,313,315,0.00 +2023-08-17T06:00,20.4,956.8,5.60,9.90,311,314,0.00 +2023-08-17T07:00,19.8,957.5,5.95,10.25,311,315,0.00 +2023-08-17T08:00,19.2,957.9,6.10,10.39,311,315,0.00 +2023-08-17T09:00,18.4,958.4,6.72,11.27,317,319,0.00 +2023-08-17T10:00,17.5,958.8,6.44,10.84,316,318,0.00 +2023-08-17T11:00,16.6,959.6,6.44,10.92,317,319,0.00 +2023-08-17T12:00,15.1,960.5,6.79,11.20,317,319,0.00 +2023-08-17T13:00,15.1,961.1,7.08,11.09,318,321,0.00 +2023-08-17T14:00,16.0,961.9,7.53,10.82,320,322,0.00 +2023-08-17T15:00,16.9,962.6,7.96,11.07,325,325,0.00 +2023-08-17T16:00,17.9,963.2,7.58,10.32,324,324,0.00 +2023-08-17T17:00,19.2,963.7,8.32,11.27,334,334,0.00 +2023-08-17T18:00,19.7,963.8,6.94,9.31,332,332,0.00 +2023-08-17T19:00,20.5,964.2,6.98,9.30,333,333,0.00 +2023-08-17T20:00,21.1,964.2,6.13,8.28,332,332,0.00 +2023-08-17T21:00,21.2,963.8,5.30,7.05,328,328,0.00 +2023-08-17T22:00,21.1,963.9,4.88,6.46,325,325,0.00 +2023-08-17T23:00,20.7,963.6,4.22,5.88,324,325,0.00 +2023-08-18T00:00,19.5,964.4,2.97,4.97,318,320,0.00 +2023-08-18T01:00,17.5,964.0,1.64,4.18,308,318,0.00 +2023-08-18T02:00,15.7,963.9,1.97,3.89,294,318,0.00 +2023-08-18T03:00,15.2,964.0,2.27,2.94,311,342,0.00 +2023-08-18T04:00,17.2,964.5,1.70,2.46,3,27,0.00 +2023-08-18T05:00,17.3,964.5,1.40,2.02,94,57,0.00 +2023-08-18T06:00,14.1,964.0,1.68,1.57,163,117,0.00 +2023-08-18T07:00,13.6,964.0,1.71,2.91,187,164,0.00 +2023-08-18T08:00,13.3,963.8,2.42,4.64,187,173,0.00 +2023-08-18T09:00,13.4,963.4,3.00,6.15,180,173,0.00 +2023-08-18T10:00,13.6,963.4,3.61,7.63,175,175,0.00 +2023-08-18T11:00,13.8,963.4,3.96,8.19,170,172,0.00 +2023-08-18T12:00,14.3,963.8,4.92,9.34,167,170,0.00 +2023-08-18T13:00,15.8,963.9,5.87,9.76,171,174,0.00 +2023-08-18T14:00,17.7,964.0,5.53,9.32,174,176,0.00 +2023-08-18T15:00,19.6,963.7,6.42,9.11,176,177,0.00 +2023-08-18T16:00,21.1,963.3,7.52,10.50,176,178,0.00 +2023-08-18T17:00,22.5,962.7,8.02,11.01,176,177,0.00 +2023-08-18T18:00,23.5,962.2,8.31,11.40,178,179,0.00 +2023-08-18T19:00,24.4,961.4,8.17,11.28,172,173,0.00 +2023-08-18T20:00,24.9,960.8,8.43,11.66,170,171,0.00 +2023-08-18T21:00,25.0,959.6,8.88,12.51,168,169,0.00 +2023-08-18T22:00,24.9,958.5,8.83,12.79,167,168,0.00 +2023-08-18T23:00,24.5,957.9,7.83,11.96,166,168,0.00 +2023-08-19T00:00,23.4,958.3,6.55,10.63,161,164,0.00 +2023-08-19T01:00,22.4,958.2,6.24,10.51,164,168,0.00 +2023-08-19T02:00,22.0,958.2,6.41,10.98,169,173,0.00 +2023-08-19T03:00,21.7,958.4,6.43,11.00,175,178,0.00 +2023-08-19T04:00,21.6,958.0,7.30,12.21,179,182,0.00 +2023-08-19T05:00,21.4,957.5,8.31,13.64,182,184,0.00 +2023-08-19T06:00,21.2,957.2,8.67,14.16,187,189,0.00 +2023-08-19T07:00,21.2,956.8,8.91,14.45,189,191,0.00 +2023-08-19T08:00,20.9,956.3,8.65,14.14,191,193,0.00 +2023-08-19T09:00,20.8,955.9,8.59,14.12,192,194,0.00 +2023-08-19T10:00,20.8,955.8,8.46,13.96,194,196,0.00 +2023-08-19T11:00,20.7,955.7,8.39,13.85,195,198,0.00 +2023-08-19T12:00,21.5,955.5,6.80,12.00,206,209,0.00 +2023-08-19T13:00,22.1,956.5,3.81,6.95,194,203,0.00 +2023-08-19T14:00,23.5,957.1,4.73,7.88,193,200,0.00 +2023-08-19T15:00,25.5,957.4,4.59,6.54,200,203,0.00 +2023-08-19T16:00,27.3,957.8,4.34,5.77,206,208,0.00 +2023-08-19T17:00,28.7,958.3,3.68,4.74,225,226,0.00 +2023-08-19T18:00,30.2,958.7,3.06,3.86,232,233,0.00 +2023-08-19T19:00,31.3,958.7,2.47,3.10,256,255,0.00 +2023-08-19T20:00,31.9,959.3,2.97,3.64,303,302,0.00 +2023-08-19T21:00,32.0,960.5,5.25,7.03,310,310,0.00 +2023-08-19T22:00,31.1,959.8,4.36,6.49,351,350,0.00 +2023-08-19T23:00,30.3,960.3,4.44,6.94,352,354,0.00 +2023-08-20T00:00,28.8,962.2,4.12,7.01,354,357,0.00 +2023-08-20T01:00,27.3,962.4,4.20,7.60,359,1,0.00 +2023-08-20T02:00,26.0,963.1,4.33,8.23,353,355,0.00 +2023-08-20T03:00,25.4,964.0,5.24,9.37,347,349,0.00 +2023-08-20T04:00,24.7,964.7,5.49,9.70,350,352,0.00 +2023-08-20T05:00,24.1,965.6,5.23,9.53,353,356,0.00 +2023-08-20T06:00,23.6,966.2,4.72,8.90,355,360,0.00 +2023-08-20T07:00,23.0,966.5,5.10,9.33,360,4,0.00 +2023-08-20T08:00,22.3,967.0,4.90,9.04,360,5,0.00 +2023-08-20T09:00,21.4,967.6,4.30,8.17,1,8,0.00 +2023-08-20T10:00,20.6,968.3,4.50,8.15,359,6,0.00 +2023-08-20T11:00,19.9,968.5,4.26,7.82,9,16,0.00 +2023-08-20T12:00,18.5,969.7,4.59,7.91,11,16,0.00 +2023-08-20T13:00,18.2,971.0,4.41,7.41,4,10,0.00 +2023-08-20T14:00,18.6,971.8,4.92,6.74,5,6,0.00 +2023-08-20T15:00,19.7,972.5,4.64,6.17,7,8,0.00 +2023-08-20T16:00,20.9,972.6,4.03,5.19,14,16,0.00 +2023-08-20T17:00,22.4,972.2,4.07,5.20,28,30,0.00 +2023-08-20T18:00,23.7,971.9,4.22,5.37,22,24,0.00 +2023-08-20T19:00,24.7,971.8,4.43,5.81,25,27,0.00 +2023-08-20T20:00,25.3,971.8,4.52,5.95,28,29,0.00 +2023-08-20T21:00,25.4,971.6,4.65,6.13,25,26,0.00 +2023-08-20T22:00,25.1,971.3,4.66,6.38,31,32,0.00 +2023-08-20T23:00,24.7,971.2,4.06,6.26,38,39,0.00 +2023-08-21T00:00,22.6,971.6,3.70,6.22,52,53,0.00 +2023-08-21T01:00,21.2,971.4,2.92,6.18,59,61,0.00 +2023-08-21T02:00,19.9,971.8,2.56,6.08,59,65,0.00 +2023-08-21T03:00,19.3,972.2,2.62,6.28,72,76,0.00 +2023-08-21T04:00,18.8,971.9,3.59,7.69,77,81,0.00 +2023-08-21T05:00,18.3,971.7,3.21,7.11,85,87,0.00 +2023-08-21T06:00,18.9,971.6,2.91,6.34,94,96,0.00 +2023-08-21T07:00,19.5,971.5,2.89,5.63,104,107,0.00 +2023-08-21T08:00,19.6,971.4,1.97,4.12,114,119,0.00 +2023-08-21T09:00,19.8,971.2,2.51,4.74,119,125,0.00 +2023-08-21T10:00,19.1,970.9,1.86,4.46,126,134,0.00 +2023-08-21T11:00,18.7,970.7,1.71,3.97,97,124,0.00 +2023-08-21T12:00,18.5,971.0,1.39,3.78,120,143,0.00 +2023-08-21T13:00,19.9,971.5,1.84,3.58,112,144,0.00 +2023-08-21T14:00,21.7,971.6,1.94,3.00,102,120,0.00 +2023-08-21T15:00,23.5,971.7,2.22,2.79,98,105,0.00 +2023-08-21T16:00,25.3,971.8,2.73,3.40,114,118,0.00 +2023-08-21T17:00,27.0,971.5,3.22,4.05,126,130,0.00 +2023-08-21T18:00,29.2,971.0,4.17,5.37,150,151,0.00 +2023-08-21T19:00,31.0,970.1,4.63,6.06,166,167,0.00 +2023-08-21T20:00,31.5,969.4,5.10,6.82,164,166,0.00 +2023-08-21T21:00,32.2,968.6,5.32,7.16,164,165,0.00 +2023-08-21T22:00,32.1,968.0,5.82,8.08,164,165,0.00 +2023-08-21T23:00,31.8,967.8,5.13,7.87,159,162,0.00 +2023-08-22T00:00,29.6,968.3,3.81,6.44,150,154,0.00 +2023-08-22T01:00,28.6,967.9,4.06,7.63,142,148,0.00 +2023-08-22T02:00,27.6,968.0,4.39,8.32,137,145,0.00 +2023-08-22T03:00,27.1,968.2,4.70,8.83,142,149,0.00 +2023-08-22T04:00,26.7,968.0,5.13,9.44,147,153,0.00 +2023-08-22T05:00,26.4,967.7,5.57,10.04,162,165,0.00 +2023-08-22T06:00,26.3,967.4,6.42,11.01,176,178,0.00 +2023-08-22T07:00,26.2,967.2,6.94,11.71,186,188,0.00 +2023-08-22T08:00,26.2,967.2,7.04,11.91,191,193,0.00 +2023-08-22T09:00,26.1,967.2,7.38,12.27,196,198,0.00 +2023-08-22T10:00,26.0,967.0,7.31,12.13,199,201,0.00 +2023-08-22T11:00,25.8,966.7,7.32,12.13,202,204,0.00 +2023-08-22T12:00,25.8,967.2,6.78,11.32,202,206,0.00 +2023-08-22T13:00,26.9,967.2,7.02,11.34,206,210,0.00 +2023-08-22T14:00,28.2,967.3,6.36,10.88,204,209,0.00 +2023-08-22T15:00,29.7,967.2,6.76,9.79,204,206,0.00 +2023-08-22T16:00,31.2,967.0,6.75,9.44,205,207,0.00 +2023-08-22T17:00,32.6,966.6,6.81,9.33,210,211,0.00 +2023-08-22T18:00,33.6,965.9,6.66,9.10,213,213,0.00 +2023-08-22T19:00,34.4,965.5,6.38,8.82,212,213,0.00 +2023-08-22T20:00,34.8,965.1,6.36,8.88,210,211,0.00 +2023-08-22T21:00,35.0,964.6,5.91,8.37,204,205,0.00 +2023-08-22T22:00,34.8,963.8,5.48,8.60,201,203,0.00 +2023-08-22T23:00,33.9,963.4,5.41,9.26,205,208,0.00 +2023-08-23T00:00,31.9,963.9,5.14,9.27,207,209,0.00 +2023-08-23T01:00,30.7,963.8,4.92,9.42,207,211,0.00 +2023-08-23T02:00,29.7,963.7,4.57,9.08,203,208,0.00 +2023-08-23T03:00,29.1,963.8,4.83,9.59,204,210,0.00 +2023-08-23T04:00,28.8,963.8,5.55,10.39,206,210,0.00 +2023-08-23T05:00,28.7,963.7,5.64,10.48,210,213,0.00 +2023-08-23T06:00,28.6,963.7,5.96,10.82,215,218,0.00 +2023-08-23T07:00,28.6,963.6,6.40,11.40,219,222,0.00 +2023-08-23T08:00,28.7,963.5,6.76,11.83,218,222,0.00 +2023-08-23T09:00,28.4,963.2,6.90,11.76,219,222,0.00 +2023-08-23T10:00,28.3,962.8,7.02,12.09,221,224,0.00 +2023-08-23T11:00,27.7,962.6,6.24,11.17,221,225,0.00 +2023-08-23T12:00,28.8,962.7,6.94,12.23,234,237,0.00 +2023-08-23T13:00,28.0,962.6,6.16,10.89,227,231,0.00 +2023-08-23T14:00,28.8,962.6,5.80,9.71,224,229,0.00 +2023-08-23T15:00,30.2,962.7,4.05,6.54,230,231,0.00 +2023-08-23T16:00,31.4,962.5,4.00,5.69,238,239,0.00 +2023-08-23T17:00,32.5,962.3,5.23,7.16,244,243,0.00 +2023-08-23T18:00,33.1,962.0,5.55,7.48,247,247,0.00 +2023-08-23T19:00,33.7,961.4,5.13,6.84,249,249,0.00 +2023-08-23T20:00,34.3,961.0,4.88,6.53,242,243,0.00 +2023-08-23T21:00,34.6,960.7,5.52,7.66,235,237,0.00 +2023-08-23T22:00,34.3,960.2,4.89,7.52,239,241,0.00 +2023-08-23T23:00,33.5,959.7,3.64,6.53,238,243,0.00 +2023-08-24T00:00,32.3,960.2,1.70,4.27,242,249,0.00 +2023-08-24T01:00,29.8,959.7,2.02,3.72,213,239,0.00 +2023-08-24T02:00,29.1,959.8,1.87,3.82,196,223,0.00 +2023-08-24T03:00,28.6,959.8,3.42,6.45,195,210,0.00 +2023-08-24T04:00,28.9,959.5,4.17,8.62,210,218,0.00 +2023-08-24T05:00,28.2,959.2,4.31,8.85,224,227,0.00 +2023-08-24T06:00,27.0,959.2,3.32,7.49,254,251,0.00 +2023-08-24T07:00,26.3,959.0,3.23,7.62,248,256,0.00 +2023-08-24T08:00,25.8,959.1,3.71,7.98,275,278,0.00 +2023-08-24T09:00,24.5,959.0,2.82,5.97,287,301,0.00 +2023-08-24T10:00,24.1,959.4,2.75,5.77,327,346,0.00 +2023-08-24T11:00,23.7,959.6,1.80,4.60,341,360,0.00 +2023-08-24T12:00,23.2,960.6,3.13,6.17,333,343,0.00 +2023-08-24T13:00,24.0,961.5,3.36,6.39,330,340,0.00 +2023-08-24T14:00,25.2,962.4,3.86,5.22,339,340,0.00 +2023-08-24T15:00,26.6,962.7,2.84,3.65,350,351,0.00 +2023-08-24T16:00,27.8,963.2,3.21,4.11,355,356,0.00 +2023-08-24T17:00,28.9,963.4,3.31,4.22,355,355,0.00 +2023-08-24T18:00,29.9,963.4,3.52,4.54,345,346,0.00 +2023-08-24T19:00,30.4,963.1,3.26,4.08,342,343,0.00 +2023-08-24T20:00,30.4,963.1,3.06,3.88,349,348,0.00 +2023-08-24T21:00,30.6,963.2,3.20,4.05,340,340,0.00 +2023-08-24T22:00,30.2,963.2,4.05,5.22,327,328,0.00 +2023-08-24T23:00,29.4,962.8,3.10,4.44,345,346,0.00 +2023-08-25T00:00,27.3,964.5,3.18,4.88,332,334,0.00 +2023-08-25T01:00,26.0,963.9,1.90,4.20,360,357,0.00 +2023-08-25T02:00,25.1,963.9,1.52,2.94,23,18,0.20 +2023-08-25T03:00,24.4,963.7,2.59,5.28,28,29,0.00 +2023-08-25T04:00,23.7,963.4,2.19,5.10,47,48,0.00 +2023-08-25T05:00,23.0,963.6,1.78,4.72,52,54,0.00 +2023-08-25T06:00,23.2,963.5,1.79,4.28,117,101,0.00 +2023-08-25T07:00,22.9,963.7,1.20,2.83,175,135,0.00 +2023-08-25T08:00,22.6,963.2,1.42,3.54,141,133,0.00 +2023-08-25T09:00,22.3,963.0,0.92,1.51,13,82,0.00 +2023-08-25T10:00,21.6,963.3,1.90,2.97,3,20,0.00 +2023-08-25T11:00,21.1,963.5,1.25,3.05,61,67,0.00 +2023-08-25T12:00,21.3,963.9,0.92,0.70,49,360,0.00 +2023-08-25T13:00,22.8,964.2,0.80,0.85,90,69,0.00 +2023-08-25T14:00,24.2,965.0,0.28,0.45,45,63,0.00 +2023-08-25T15:00,25.3,965.5,1.20,1.42,228,231,0.00 +2023-08-25T16:00,26.6,965.4,2.12,2.69,289,292,0.00 +2023-08-25T17:00,28.0,965.5,2.60,3.27,293,293,0.00 +2023-08-25T18:00,29.3,965.5,3.75,4.67,314,313,0.00 +2023-08-25T19:00,29.9,965.8,5.02,6.52,325,324,0.20 +2023-08-25T20:00,28.6,965.9,5.64,7.56,335,336,0.10 +2023-08-25T21:00,28.5,965.7,5.95,7.94,340,341,0.00 +2023-08-25T22:00,28.1,965.8,6.04,8.22,341,342,0.00 +2023-08-25T23:00,27.2,966.0,6.04,8.52,344,344,0.00 +2023-08-26T00:00,25.5,967.1,6.11,9.48,345,346,0.00 +2023-08-26T01:00,23.9,967.3,6.49,10.61,350,352,0.00 +2023-08-26T02:00,22.4,968.0,6.00,10.01,349,351,0.00 +2023-08-26T03:00,20.9,968.5,5.59,9.60,350,352,0.00 +2023-08-26T04:00,19.9,968.4,5.35,9.35,352,354,0.00 +2023-08-26T05:00,19.1,968.6,4.47,8.37,350,352,0.00 +2023-08-26T06:00,18.5,969.0,4.59,8.47,349,353,0.00 +2023-08-26T07:00,17.9,969.5,4.41,8.06,347,353,0.00 +2023-08-26T08:00,17.3,969.8,4.18,7.73,343,350,0.00 +2023-08-26T09:00,16.7,969.7,4.44,8.09,346,351,0.00 +2023-08-26T10:00,16.2,969.8,4.18,7.82,349,356,0.00 +2023-08-26T11:00,15.8,970.3,3.55,6.90,350,358,0.00 +2023-08-26T12:00,15.0,970.5,3.72,6.71,354,3,0.00 +2023-08-26T13:00,16.1,971.1,4.30,6.43,359,5,0.00 +2023-08-26T14:00,17.4,971.3,4.74,6.25,7,7,0.00 +2023-08-26T15:00,18.9,971.8,4.92,6.38,13,14,0.00 +2023-08-26T16:00,20.4,972.0,4.93,6.51,18,18,0.10 +2023-08-26T17:00,20.8,971.7,4.59,5.98,20,21,0.10 +2023-08-26T18:00,21.9,971.6,4.43,5.64,28,27,0.10 +2023-08-26T19:00,22.0,971.3,4.03,5.11,30,31,0.00 +2023-08-26T20:00,22.2,971.2,3.86,4.99,31,33,0.00 +2023-08-26T21:00,22.9,970.6,3.89,4.89,29,31,0.00 +2023-08-26T22:00,22.6,970.3,3.98,5.14,25,27,0.00 +2023-08-26T23:00,22.4,970.0,3.67,4.61,29,30,0.00 +2023-08-27T00:00,20.3,970.3,3.61,5.10,42,42,0.00 +2023-08-27T01:00,18.9,969.9,2.33,4.90,47,51,0.00 +2023-08-27T02:00,17.7,970.1,2.27,5.33,49,56,0.00 +2023-08-27T03:00,16.9,970.2,2.86,6.00,54,60,0.00 +2023-08-27T04:00,16.0,970.2,2.59,5.78,62,67,0.00 +2023-08-27T05:00,15.1,970.1,2.09,5.17,73,75,0.00 +2023-08-27T06:00,14.3,969.8,1.70,4.50,90,87,0.00 +2023-08-27T07:00,13.6,969.9,1.80,3.91,93,94,0.00 +2023-08-27T08:00,13.2,969.8,1.81,3.75,96,99,0.00 +2023-08-27T09:00,13.2,969.5,1.75,4.27,114,111,0.00 +2023-08-27T10:00,12.9,969.0,1.84,4.55,131,123,0.00 +2023-08-27T11:00,12.6,969.0,1.72,4.31,144,136,0.00 +2023-08-27T12:00,12.3,969.1,1.49,3.62,160,152,0.00 +2023-08-27T13:00,14.0,969.7,1.41,2.67,172,167,0.00 +2023-08-27T14:00,16.2,969.9,0.92,1.51,167,172,0.00 +2023-08-27T15:00,18.3,969.8,1.02,1.32,169,171,0.00 +2023-08-27T16:00,19.8,969.6,1.08,1.30,202,203,0.00 +2023-08-27T17:00,21.1,969.1,1.08,1.39,202,201,0.00 +2023-08-27T18:00,22.3,968.4,1.51,1.82,188,189,0.00 +2023-08-27T19:00,22.8,967.8,2.11,2.62,185,187,0.00 +2023-08-27T20:00,23.3,967.4,2.47,3.10,194,195,0.00 +2023-08-27T21:00,23.6,966.8,2.79,3.52,195,195,0.00 +2023-08-27T22:00,23.6,966.4,3.04,3.89,197,198,0.00 +2023-08-27T23:00,23.2,965.9,3.04,3.96,189,190,0.00 +2023-08-28T00:00,22.5,965.8,2.91,4.90,176,181,0.00 +2023-08-28T01:00,20.7,965.1,2.77,5.81,167,177,0.00 +2023-08-28T02:00,19.6,965.1,3.03,6.50,172,181,0.00 +2023-08-28T03:00,19.0,964.9,3.21,6.65,176,187,0.00 +2023-08-28T04:00,18.5,965.0,3.30,6.83,178,185,0.00 +2023-08-28T05:00,18.1,964.7,3.60,7.26,180,187,0.00 +2023-08-28T06:00,18.0,965.0,3.91,7.92,184,190,0.00 +2023-08-28T07:00,17.8,964.9,4.42,8.52,185,189,0.00 +2023-08-28T08:00,17.6,964.4,4.69,8.81,191,195,0.00 +2023-08-28T09:00,17.3,964.3,5.00,9.31,200,204,0.00 +2023-08-28T10:00,17.2,963.8,5.24,9.66,204,208,0.00 +2023-08-28T11:00,17.2,963.9,5.41,9.82,208,213,0.00 +2023-08-28T12:00,17.3,964.1,4.83,8.85,207,212,0.00 +2023-08-28T13:00,18.3,964.5,4.88,8.26,215,218,0.00 +2023-08-28T14:00,20.1,964.8,3.92,6.66,218,221,0.00 +2023-08-28T15:00,22.0,965.0,4.05,5.52,220,222,0.00 +2023-08-28T16:00,23.9,965.2,3.82,4.96,227,228,0.00 +2023-08-28T17:00,25.4,965.1,2.79,3.51,249,250,0.00 +2023-08-28T18:00,26.6,964.8,2.30,2.80,270,270,0.00 +2023-08-28T19:00,27.4,964.6,2.56,3.14,301,301,0.00 +2023-08-28T20:00,27.9,964.4,3.48,4.40,309,309,0.10 +2023-08-28T21:00,27.7,964.2,4.03,5.23,314,315,0.00 +2023-08-28T22:00,27.3,964.0,4.66,6.19,329,329,0.00 +2023-08-28T23:00,26.7,963.7,3.66,5.13,325,327,0.00 +2023-08-29T00:00,25.9,963.9,2.11,4.52,329,332,0.00 +2023-08-29T01:00,23.4,963.6,2.06,5.15,321,331,0.00 +2023-08-29T02:00,22.4,963.9,2.15,5.36,338,351,0.00 +2023-08-29T03:00,22.2,964.6,3.90,8.10,337,344,0.00 +2023-08-29T04:00,21.8,964.9,3.32,7.16,339,345,0.00 +2023-08-29T05:00,20.8,964.6,2.58,6.05,324,338,0.00 +2023-08-29T06:00,19.4,964.2,2.25,5.33,302,326,0.00 +2023-08-29T07:00,18.6,963.9,2.24,5.46,297,319,0.00 +2023-08-29T08:00,18.1,963.7,2.12,5.23,289,313,0.00 +2023-08-29T09:00,18.0,963.7,2.55,5.97,281,301,0.00 +2023-08-29T10:00,18.0,964.0,3.40,7.22,298,312,0.00 +2023-08-29T11:00,17.8,964.6,3.91,7.85,310,317,0.00 +2023-08-29T12:00,17.0,965.2,3.61,7.16,318,327,0.00 +2023-08-29T13:00,17.9,965.7,3.61,6.55,318,329,0.00 +2023-08-29T14:00,19.8,966.3,3.12,4.96,320,326,0.00 +2023-08-29T15:00,21.7,966.6,2.88,3.83,326,327,0.00 +2023-08-29T16:00,23.3,967.1,3.00,3.76,334,335,0.00 +2023-08-29T17:00,24.6,967.0,3.44,4.43,334,335,0.00 +2023-08-29T18:00,25.5,966.8,4.07,5.28,332,333,0.00 +2023-08-29T19:00,26.3,966.2,4.48,5.82,336,336,0.00 +2023-08-29T20:00,27.1,966.0,4.81,6.33,339,339,0.00 +2023-08-29T21:00,27.3,965.4,4.94,6.52,339,339,0.00 +2023-08-29T22:00,27.2,965.1,4.90,6.68,343,343,0.00 +2023-08-29T23:00,26.6,965.1,4.24,6.18,345,346,0.00 +2023-08-30T00:00,24.9,965.4,2.51,4.90,355,360,0.00 +2023-08-30T01:00,22.5,965.3,2.09,5.25,343,352,0.00 +2023-08-30T02:00,21.6,965.8,3.22,7.18,334,341,0.00 +2023-08-30T03:00,21.0,966.2,3.23,6.96,338,348,0.00 +2023-08-30T04:00,20.0,966.3,2.94,6.91,342,350,0.00 +2023-08-30T05:00,19.2,966.5,2.40,5.93,343,354,0.00 +2023-08-30T06:00,18.0,966.4,2.11,5.05,329,352,0.00 +2023-08-30T07:00,17.0,966.3,1.78,4.18,322,349,0.00 +2023-08-30T08:00,16.5,966.0,1.84,3.96,311,339,0.00 +2023-08-30T09:00,16.0,966.3,1.75,3.62,301,332,0.00 +2023-08-30T10:00,15.5,966.4,1.72,3.45,306,330,0.00 +2023-08-30T11:00,14.9,966.4,1.86,3.10,324,345,0.00 +2023-08-30T12:00,15.7,967.2,1.26,1.66,18,65,0.00 +2023-08-30T13:00,16.8,967.7,1.50,2.72,94,107,0.00 +2023-08-30T14:00,19.1,968.1,1.90,3.19,108,122,0.00 +2023-08-30T15:00,21.2,968.3,2.84,3.66,141,145,0.00 +2023-08-30T16:00,23.2,968.4,3.45,4.46,158,160,0.00 +2023-08-30T17:00,24.7,968.2,3.69,4.67,167,170,0.00 +2023-08-30T18:00,25.8,967.5,4.20,5.40,179,180,0.00 +2023-08-30T19:00,26.4,967.1,4.20,5.30,180,181,0.00 +2023-08-30T20:00,26.7,966.8,4.23,5.42,173,175,0.00 +2023-08-30T21:00,26.8,966.0,4.49,5.79,168,170,0.00 +2023-08-30T22:00,26.6,965.5,4.49,5.92,163,164,0.00 +2023-08-30T23:00,26.2,965.2,4.43,6.20,162,162,0.00 +2023-08-31T00:00,24.4,965.1,4.19,6.91,147,149,0.00 +2023-08-31T01:00,22.7,964.8,4.05,7.44,140,144,0.00 +2023-08-31T02:00,21.8,964.8,4.50,8.46,143,147,0.00 +2023-08-31T03:00,21.2,964.7,4.64,8.79,143,146,0.00 +2023-08-31T04:00,20.4,964.6,4.84,8.99,142,145,0.00 +2023-08-31T05:00,19.9,964.4,5.41,9.78,146,149,0.00 +2023-08-31T06:00,19.8,964.5,5.95,10.53,155,157,0.00 +2023-08-31T07:00,19.5,964.7,6.17,10.65,163,165,0.00 +2023-08-31T08:00,19.2,964.4,6.14,10.60,164,166,0.00 +2023-08-31T09:00,18.8,964.1,6.55,11.18,164,167,0.00 +2023-08-31T10:00,18.6,964.3,6.38,10.98,171,173,0.00 +2023-08-31T11:00,18.3,964.3,6.43,11.02,175,177,0.00 +2023-08-31T12:00,17.9,964.8,6.62,11.20,176,178,0.00 +2023-08-31T13:00,18.6,964.8,7.28,11.46,171,174,0.00 +2023-08-31T14:00,19.9,964.7,7.14,10.62,169,171,0.00 +2023-08-31T15:00,21.5,964.8,7.58,10.58,172,173,0.00 +2023-08-31T16:00,23.1,965.5,7.10,9.71,182,183,0.00 +2023-08-31T17:00,24.3,965.3,7.80,10.60,179,179,0.00 +2023-08-31T18:00,25.3,964.7,8.22,11.01,177,177,0.00 +2023-08-31T19:00,25.9,963.9,8.80,11.92,172,172,0.00 +2023-08-31T20:00,26.3,963.6,8.34,11.26,170,170,0.00 +2023-08-31T21:00,26.1,963.2,7.50,10.31,171,172,0.00 +2023-08-31T22:00,26.0,962.9,7.69,10.67,164,165,0.00 +2023-08-31T23:00,25.5,962.4,8.16,11.68,163,164,0.00 +2023-09-01T00:00,24.1,962.7,7.66,11.67,160,162,0.00 +2023-09-01T01:00,23.0,962.6,7.28,11.73,159,161,0.00 +2023-09-01T02:00,22.2,963.1,6.48,10.73,167,168,0.00 +2023-09-01T03:00,21.6,963.5,6.32,10.72,169,171,0.00 +2023-09-01T04:00,21.1,963.9,5.91,10.20,177,180,0.00 +2023-09-01T05:00,20.8,963.8,6.40,11.00,178,182,0.00 +2023-09-01T06:00,20.5,963.7,7.00,11.72,181,183,0.00 +2023-09-01T07:00,20.0,963.7,7.31,12.04,182,185,0.00 +2023-09-01T08:00,19.6,963.3,7.61,12.44,182,185,0.00 +2023-09-01T09:00,19.2,963.5,7.75,12.76,187,189,0.00 +2023-09-01T10:00,19.0,963.4,7.92,12.89,190,192,0.00 +2023-09-01T11:00,18.9,963.6,7.98,13.00,192,194,0.00 +2023-09-01T12:00,19.3,964.0,8.17,13.29,195,197,0.00 +2023-09-01T13:00,19.7,964.3,8.42,13.32,196,197,0.00 +2023-09-01T14:00,21.0,964.5,8.04,12.30,197,198,0.00 +2023-09-01T15:00,22.6,964.8,8.29,11.83,198,199,0.00 +2023-09-01T16:00,24.5,965.1,7.75,10.70,200,201,0.00 +2023-09-01T17:00,26.3,965.1,7.59,10.28,198,199,0.00 +2023-09-01T18:00,27.9,964.7,7.71,10.43,193,194,0.00 +2023-09-01T19:00,29.2,964.6,7.40,10.02,193,194,0.00 +2023-09-01T20:00,30.2,964.2,7.38,10.07,193,193,0.00 +2023-09-01T21:00,30.6,963.7,7.08,9.80,193,194,0.00 +2023-09-01T22:00,30.5,963.3,6.75,9.65,192,193,0.00 +2023-09-01T23:00,29.8,963.0,6.13,9.67,186,187,0.00 +2023-09-02T00:00,28.4,963.1,5.95,10.06,188,190,0.00 +2023-09-02T01:00,27.3,962.5,6.77,11.43,188,192,0.00 +2023-09-02T02:00,26.5,962.9,6.94,11.84,192,194,0.00 +2023-09-02T03:00,25.6,963.5,6.23,11.07,199,200,0.00 +2023-09-02T04:00,24.9,963.4,6.72,11.50,203,204,0.00 +2023-09-02T05:00,24.1,963.7,6.09,10.75,210,210,0.00 +2023-09-02T06:00,23.6,963.5,5.64,10.16,205,209,0.00 +2023-09-02T07:00,23.1,963.2,6.00,10.64,204,207,0.00 +2023-09-02T08:00,22.6,963.0,5.59,10.12,207,210,0.00 +2023-09-02T09:00,22.2,962.9,5.19,9.74,208,212,0.00 +2023-09-02T10:00,22.1,962.4,6.00,10.75,204,210,0.00 +2023-09-02T11:00,22.1,962.1,6.89,11.94,208,211,0.00 +2023-09-02T12:00,23.2,961.9,7.64,12.81,217,222,0.00 +2023-09-02T13:00,23.3,962.1,7.02,11.81,221,225,0.00 +2023-09-02T14:00,24.6,963.3,0.50,3.04,90,226,0.00 +2023-09-02T15:00,25.9,963.4,1.92,2.42,141,156,0.00 +2023-09-02T16:00,27.6,962.7,5.73,7.61,186,190,0.00 +2023-09-02T17:00,29.3,962.0,6.32,8.70,198,199,0.00 +2023-09-02T18:00,31.3,962.0,5.70,7.68,218,219,0.00 +2023-09-02T19:00,32.2,961.3,5.64,7.58,210,211,0.00 +2023-09-02T20:00,33.2,960.6,5.95,8.01,205,206,0.00 +2023-09-02T21:00,33.4,960.2,5.96,8.19,203,204,0.00 +2023-09-02T22:00,33.3,959.8,5.69,7.97,198,200,0.00 +2023-09-02T23:00,32.7,959.3,5.60,8.85,196,198,0.00 +2023-09-03T00:00,32.2,959.3,6.55,11.10,196,199,0.00 +2023-09-03T01:00,31.2,959.1,7.67,12.89,202,205,0.00 +2023-09-03T02:00,30.3,959.4,8.18,13.60,207,208,0.00 +2023-09-03T03:00,29.4,959.6,8.18,13.56,207,209,0.00 +2023-09-03T04:00,28.6,959.3,8.19,13.58,208,211,0.00 +2023-09-03T05:00,28.2,959.2,8.25,13.65,211,213,0.00 +2023-09-03T06:00,27.7,958.9,8.10,13.57,213,215,0.00 +2023-09-03T07:00,27.2,958.9,7.62,12.91,218,221,0.00 +2023-09-03T08:00,26.8,959.0,7.64,13.05,217,221,0.00 +2023-09-03T09:00,26.5,958.8,7.40,12.67,218,222,0.00 +2023-09-03T10:00,26.0,958.9,7.02,12.16,221,225,0.00 +2023-09-03T11:00,25.5,959.0,6.88,11.95,221,225,0.00 +2023-09-03T12:00,25.0,959.1,6.26,11.11,219,223,0.00 +2023-09-03T13:00,24.5,958.9,6.05,10.82,214,218,0.00 +2023-09-03T14:00,25.7,959.0,5.88,11.30,212,216,0.00 +2023-09-03T15:00,27.5,959.3,5.42,8.40,218,218,0.00 +2023-09-03T16:00,29.3,959.5,5.02,6.93,223,224,0.00 +2023-09-03T17:00,30.7,959.3,4.75,6.24,221,221,0.00 +2023-09-03T18:00,31.6,959.0,4.16,5.44,215,216,0.00 +2023-09-03T19:00,32.3,958.6,4.16,5.37,207,209,0.00 +2023-09-03T20:00,32.6,958.1,4.43,5.72,205,207,0.00 +2023-09-03T21:00,32.7,957.8,4.70,6.22,207,208,0.00 +2023-09-03T22:00,32.4,957.4,4.70,6.31,207,207,0.00 +2023-09-03T23:00,31.8,957.1,4.09,6.22,202,204,0.00 +2023-09-04T00:00,30.5,957.5,2.80,5.92,180,185,0.00 +2023-09-04T01:00,28.5,957.2,2.82,6.51,174,184,0.00 +2023-09-04T02:00,27.7,957.5,3.81,7.84,177,186,0.00 +2023-09-04T03:00,27.3,957.5,4.70,9.27,180,187,0.00 +2023-09-04T04:00,27.1,957.6,5.72,10.42,185,189,0.00 +2023-09-04T05:00,26.8,957.5,6.18,10.94,189,192,0.00 +2023-09-04T06:00,26.2,957.2,6.49,11.30,190,193,0.00 +2023-09-04T07:00,25.5,956.8,6.61,11.42,190,194,0.00 +2023-09-04T08:00,25.1,956.5,6.55,11.38,192,195,0.00 +2023-09-04T09:00,24.8,956.2,6.65,11.62,192,195,0.00 +2023-09-04T10:00,24.4,955.9,6.94,12.01,192,195,0.00 +2023-09-04T11:00,24.0,955.6,7.06,12.03,192,195,0.00 +2023-09-04T12:00,24.4,955.4,7.11,12.27,194,198,0.00 +2023-09-04T13:00,24.4,955.5,7.50,12.59,196,199,0.00 +2023-09-04T14:00,25.6,955.4,6.72,13.41,195,200,0.00 +2023-09-04T15:00,27.3,955.4,8.07,11.80,197,198,0.00 +2023-09-04T16:00,28.8,955.6,8.54,11.93,198,200,0.00 +2023-09-04T17:00,30.6,955.6,8.70,12.02,199,200,0.00 +2023-09-04T18:00,32.1,955.3,8.64,11.83,196,197,0.00 +2023-09-04T19:00,33.4,954.9,8.64,11.90,196,197,0.00 +2023-09-04T20:00,33.9,954.7,7.83,10.79,190,191,0.00 +2023-09-04T21:00,33.8,954.3,7.62,10.44,185,185,0.00 +2023-09-04T22:00,33.4,953.8,7.60,10.71,182,182,0.00 +2023-09-04T23:00,32.3,953.7,6.71,10.30,177,178,0.00 +2023-09-05T00:00,30.8,953.8,5.54,9.53,173,175,0.00 +2023-09-05T01:00,29.6,953.6,5.89,10.37,170,173,0.00 +2023-09-05T02:00,29.0,954.2,6.95,11.73,173,176,0.00 +2023-09-05T03:00,28.3,954.6,7.30,12.20,178,180,0.00 +2023-09-05T04:00,27.5,954.6,7.21,12.03,183,184,0.00 +2023-09-05T05:00,26.9,954.5,6.80,11.60,180,181,0.00 +2023-09-05T06:00,26.3,954.3,6.42,10.92,176,176,0.00 +2023-09-05T07:00,25.9,954.3,6.42,11.01,176,178,0.00 +2023-09-05T08:00,25.7,953.9,6.87,11.66,172,174,0.00 +2023-09-05T09:00,25.4,953.8,6.61,11.20,177,178,0.00 +2023-09-05T10:00,25.0,953.8,6.40,10.81,180,183,0.00 +2023-09-05T11:00,24.7,953.4,6.51,11.10,177,180,0.00 +2023-09-05T12:00,23.2,952.9,5.21,9.30,177,181,0.00 +2023-09-05T13:00,23.9,953.2,5.93,9.90,186,188,0.00 +2023-09-05T14:00,25.2,953.3,5.00,7.26,200,203,0.00 +2023-09-05T15:00,26.7,953.5,4.98,6.67,202,204,0.00 +2023-09-05T16:00,28.0,954.1,4.84,6.32,198,198,0.00 +2023-09-05T17:00,28.6,954.3,4.89,6.33,211,211,0.00 +2023-09-05T18:00,29.4,954.1,5.08,6.58,216,216,0.00 +2023-09-05T19:00,29.1,954.0,4.82,6.24,228,229,0.00 +2023-09-05T20:00,29.2,953.8,3.55,4.44,238,239,0.00 +2023-09-05T21:00,29.4,953.7,3.79,4.79,258,259,0.10 +2023-09-05T22:00,29.2,953.7,5.79,7.61,280,280,0.00 +2023-09-05T23:00,26.8,954.5,5.07,6.96,292,291,0.10 +2023-09-06T00:00,23.8,955.9,5.53,7.80,319,319,0.20 +2023-09-06T01:00,21.7,956.7,6.91,10.48,326,327,0.00 +2023-09-06T02:00,19.5,957.8,7.75,11.39,321,321,0.00 +2023-09-06T03:00,18.2,958.3,7.00,10.47,316,317,0.00 +2023-09-06T04:00,17.6,958.7,6.38,9.63,311,312,0.00 +2023-09-06T05:00,17.9,959.2,7.78,11.10,315,315,0.00 +2023-09-06T06:00,17.5,959.6,7.04,10.23,309,309,0.00 +2023-09-06T07:00,17.1,960.1,7.58,11.11,311,313,0.20 +2023-09-06T08:00,17.0,960.3,7.21,10.75,315,317,0.10 +2023-09-06T09:00,16.7,960.7,7.42,11.10,314,316,0.00 +2023-09-06T10:00,16.4,961.5,7.71,11.40,317,318,0.00 +2023-09-06T11:00,16.4,962.2,8.08,11.85,324,325,0.00 +2023-09-06T12:00,15.6,962.5,7.66,11.59,324,326,0.00 +2023-09-06T13:00,15.2,963.1,7.66,11.18,327,328,0.00 +2023-09-06T14:00,16.1,963.6,8.08,11.27,329,328,0.00 +2023-09-06T15:00,17.3,964.3,8.68,11.77,331,331,0.00 +2023-09-06T16:00,18.3,964.8,7.80,10.49,337,338,0.00 +2023-09-06T17:00,19.8,965.3,7.21,9.58,331,331,0.00 +2023-09-06T18:00,21.1,965.1,6.85,8.91,331,331,0.00 +2023-09-06T19:00,21.8,965.0,6.54,8.60,331,331,0.00 +2023-09-06T20:00,22.1,964.8,6.53,8.68,333,333,0.00 +2023-09-06T21:00,22.3,964.5,6.62,8.68,333,334,0.00 +2023-09-06T22:00,22.0,964.3,6.53,8.63,335,335,0.00 +2023-09-06T23:00,21.3,964.4,6.18,8.43,337,338,0.00 +2023-09-07T00:00,18.5,965.3,4.88,7.11,345,346,0.00 +2023-09-07T01:00,17.1,965.2,3.61,6.58,341,343,0.00 +2023-09-07T02:00,16.1,965.6,3.01,6.14,339,344,0.00 +2023-09-07T03:00,15.2,965.6,2.92,6.28,329,338,0.00 +2023-09-07T04:00,14.5,965.7,2.80,5.95,325,335,0.00 +2023-09-07T05:00,13.8,965.6,2.72,5.86,324,335,0.00 +2023-09-07T06:00,13.2,965.6,2.58,5.73,324,335,0.00 +2023-09-07T07:00,12.6,965.7,2.31,5.35,342,352,0.00 +2023-09-07T08:00,11.8,965.4,1.75,4.08,347,11,0.00 +2023-09-07T09:00,10.9,965.4,1.91,3.67,6,29,0.00 +2023-09-07T10:00,10.4,965.5,2.02,3.51,351,20,0.00 +2023-09-07T11:00,10.2,965.6,1.66,3.42,335,7,0.00 +2023-09-07T12:00,9.3,966.2,2.04,3.12,11,40,0.00 +2023-09-07T13:00,11.0,966.7,1.43,2.84,25,51,0.00 +2023-09-07T14:00,13.2,967.5,0.76,1.20,23,42,0.00 +2023-09-07T15:00,15.1,967.4,1.20,1.49,42,48,0.00 +2023-09-07T16:00,16.5,967.3,1.42,1.78,39,38,0.00 +2023-09-07T17:00,17.9,967.0,1.13,1.35,45,48,0.00 +2023-09-07T18:00,19.1,966.6,1.06,1.35,41,42,0.00 +2023-09-07T19:00,20.3,966.1,0.98,1.17,66,70,0.00 +2023-09-07T20:00,21.2,965.9,0.58,0.67,31,27,0.00 +2023-09-07T21:00,21.7,965.6,0.82,1.04,346,343,0.00 +2023-09-07T22:00,21.9,965.2,0.94,1.17,302,301,0.00 +2023-09-07T23:00,21.5,965.0,0.92,1.02,347,349,0.00 +2023-09-08T00:00,20.5,964.8,2.62,4.13,83,83,0.00 +2023-09-08T01:00,19.1,965.0,3.06,5.87,101,104,0.00 +2023-09-08T02:00,18.1,965.8,2.90,5.61,88,93,0.00 +2023-09-08T03:00,17.9,966.3,4.08,6.43,101,102,0.00 +2023-09-08T04:00,17.0,966.5,4.21,6.54,118,119,0.00 +2023-09-08T05:00,16.6,966.4,3.11,4.92,123,128,0.00 +2023-09-08T06:00,15.9,966.3,2.66,4.70,110,117,0.00 +2023-09-08T07:00,14.6,966.4,2.46,5.13,117,123,0.00 +2023-09-08T08:00,13.8,966.4,2.30,5.14,124,127,0.00 +2023-09-08T09:00,13.4,966.6,2.42,5.32,128,131,0.00 +2023-09-08T10:00,13.1,967.2,2.62,5.59,137,137,0.00 +2023-09-08T11:00,12.8,967.3,2.69,5.83,149,149,0.00 +2023-09-08T12:00,12.6,967.7,2.51,5.48,157,159,0.00 +2023-09-08T13:00,13.6,968.4,3.14,5.60,158,161,0.00 +2023-09-08T14:00,16.0,968.9,2.75,4.46,161,164,0.00 +2023-09-08T15:00,18.5,969.4,2.94,3.96,162,164,0.00 +2023-09-08T16:00,20.8,969.7,3.18,3.98,167,168,0.00 +2023-09-08T17:00,22.5,969.6,3.03,3.83,172,173,0.00 +2023-09-08T18:00,23.9,969.3,2.81,3.51,184,185,0.00 +2023-09-08T19:00,24.9,968.9,2.89,3.61,194,194,0.00 +2023-09-08T20:00,25.7,968.4,3.45,4.30,197,198,0.00 +2023-09-08T21:00,26.1,968.1,3.77,4.79,202,203,0.00 +2023-09-08T22:00,26.3,968.0,3.58,4.61,203,204,0.00 +2023-09-08T23:00,26.0,968.0,2.97,4.08,213,216,0.00 +2023-09-09T00:00,24.7,967.7,2.11,4.65,175,189,0.00 +2023-09-09T01:00,22.7,967.6,3.13,6.43,173,185,0.00 +2023-09-09T02:00,21.8,967.8,3.70,7.35,182,192,0.00 +2023-09-09T03:00,21.2,968.0,3.75,7.50,189,196,0.00 +2023-09-09T04:00,20.3,968.2,3.36,7.41,203,201,0.00 +2023-09-09T05:00,19.2,968.6,2.82,5.70,243,248,0.00 +2023-09-09T06:00,18.3,968.3,1.78,3.20,218,268,0.00 +2023-09-09T07:00,17.6,968.4,1.66,3.11,237,274,0.00 +2023-09-09T08:00,17.0,968.2,1.66,2.94,245,280,0.00 +2023-09-09T09:00,16.6,968.2,1.64,2.61,232,266,0.00 +2023-09-09T10:00,16.0,968.2,1.70,2.62,225,252,0.00 +2023-09-09T11:00,15.8,968.6,1.56,2.47,220,249,0.00 +2023-09-09T12:00,15.1,968.8,1.22,1.28,215,309,0.00 +2023-09-09T13:00,17.0,969.5,2.62,2.50,198,196,0.00 +2023-09-09T14:00,19.6,970.0,2.31,4.33,198,199,0.00 +2023-09-09T15:00,21.7,970.9,3.64,4.40,323,321,0.00 +2023-09-09T16:00,21.1,969.9,0.89,1.08,153,146,0.00 +2023-09-09T17:00,22.9,970.3,1.78,1.98,322,319,0.00 +2023-09-09T18:00,23.1,970.5,1.70,1.98,320,315,0.00 +2023-09-09T19:00,24.8,969.8,1.86,2.41,234,228,0.00 +2023-09-09T20:00,24.4,969.9,3.47,4.25,314,311,0.50 +2023-09-09T21:00,21.7,969.4,2.08,2.64,325,323,1.40 +2023-09-09T22:00,22.5,969.4,2.73,3.49,332,333,0.00 +2023-09-09T23:00,22.6,969.3,3.62,4.63,354,354,0.00 +2023-09-10T00:00,19.3,970.3,3.91,6.54,3,6,0.00 +2023-09-10T01:00,18.1,970.4,2.90,5.91,360,4,0.00 +2023-09-10T02:00,17.3,971.0,2.57,5.63,347,354,0.00 +2023-09-10T03:00,16.6,971.3,2.66,5.89,340,350,0.00 +2023-09-10T04:00,15.9,971.0,2.15,5.39,338,349,0.00 +2023-09-10T05:00,15.6,970.8,2.58,6.05,324,338,0.00 +2023-09-10T06:00,15.3,971.0,2.47,5.79,328,339,0.00 +2023-09-10T07:00,14.8,970.9,2.78,6.11,330,339,0.00 +2023-09-10T08:00,14.4,970.8,3.20,6.51,340,349,0.00 +2023-09-10T09:00,14.1,970.8,2.83,6.10,352,360,0.00 +2023-09-10T10:00,13.8,971.0,2.47,5.50,346,360,0.00 +2023-09-10T11:00,13.6,971.1,3.04,6.01,343,357,0.00 +2023-09-10T12:00,13.9,971.5,3.31,6.23,357,6,0.00 +2023-09-10T13:00,14.5,972.1,3.80,5.77,360,9,0.00 +2023-09-10T14:00,15.6,972.4,4.44,5.82,14,16,0.00 +2023-09-10T15:00,16.7,972.9,3.71,4.75,14,15,0.00 +2023-09-10T16:00,17.9,973.0,3.69,4.73,13,13,0.00 +2023-09-10T17:00,19.4,973.0,4.37,5.54,16,17,0.00 +2023-09-10T18:00,20.4,972.5,4.47,5.64,27,27,0.00 +2023-09-10T19:00,21.2,971.9,4.53,5.75,31,31,0.00 +2023-09-10T20:00,21.7,971.3,4.33,5.46,34,35,0.00 +2023-09-10T21:00,21.8,970.8,3.94,4.96,27,28,0.00 +2023-09-10T22:00,21.2,970.6,3.96,5.07,21,22,0.00 +2023-09-10T23:00,20.9,970.7,3.77,4.85,22,22,0.00 +2023-09-11T00:00,18.8,971.7,3.13,5.19,27,28,0.00 +2023-09-11T01:00,17.3,971.4,2.47,5.41,21,28,0.00 +2023-09-11T02:00,16.1,971.5,1.93,5.05,21,27,0.00 +2023-09-11T03:00,15.0,971.4,2.12,5.31,8,20,0.00 +2023-09-11T04:00,14.6,971.1,2.73,6.52,8,21,0.00 +2023-09-11T05:00,13.6,970.9,2.22,5.91,8,24,0.00 +2023-09-11T06:00,12.7,970.7,2.01,5.50,6,27,0.00 +2023-09-11T07:00,12.8,970.6,2.01,5.28,6,27,0.00 +2023-09-11T08:00,12.7,970.7,1.90,4.79,360,26,0.00 +2023-09-11T09:00,12.4,970.6,1.75,4.37,347,20,0.00 +2023-09-11T10:00,11.8,970.7,1.79,3.86,333,10,0.00 +2023-09-11T11:00,11.3,970.9,2.11,4.10,329,359,0.00 +2023-09-11T12:00,11.2,971.2,2.08,4.06,325,350,0.00 +2023-09-11T13:00,11.8,971.4,3.04,4.75,333,352,0.00 +2023-09-11T14:00,14.1,972.0,2.85,4.84,342,353,0.00 +2023-09-11T15:00,16.3,972.4,2.96,3.85,348,351,0.00 +2023-09-11T16:00,18.3,972.3,2.80,3.51,2,5,0.00 +2023-09-11T17:00,19.7,972.0,3.01,3.86,15,17,0.00 +2023-09-11T18:00,20.6,971.6,3.10,3.83,15,15,0.00 +2023-09-11T19:00,21.4,971.2,2.77,3.42,13,15,0.00 +2023-09-11T20:00,21.9,970.7,2.69,3.36,22,23,0.00 +2023-09-11T21:00,21.6,970.3,2.92,3.58,31,30,0.00 +2023-09-11T22:00,21.2,970.0,2.47,2.97,21,20,0.00 +2023-09-11T23:00,19.4,970.3,4.31,5.70,338,338,0.00 +2023-09-12T00:00,18.9,970.2,2.57,5.00,13,16,0.00 +2023-09-12T01:00,16.0,970.0,2.30,3.64,2,21,0.00 +2023-09-12T02:00,15.9,970.5,1.63,2.00,317,3,0.00 +2023-09-12T03:00,15.3,970.3,1.49,2.00,318,3,0.00 +2023-09-12T04:00,13.5,970.1,2.12,2.96,315,348,0.00 +2023-09-12T05:00,12.7,969.9,2.14,3.31,307,335,0.00 +2023-09-12T06:00,12.1,969.5,2.06,3.45,299,330,0.00 +2023-09-12T07:00,12.5,969.6,2.41,5.82,312,325,0.00 +2023-09-12T08:00,11.7,968.8,1.90,2.88,270,326,0.00 +2023-09-12T09:00,11.5,969.0,2.10,4.74,295,314,0.00 +2023-09-12T10:00,11.4,969.5,2.52,5.81,304,318,0.00 +2023-09-12T11:00,11.2,969.8,2.48,5.56,317,330,0.00 +2023-09-12T12:00,10.3,969.5,2.41,5.39,318,329,0.00 +2023-09-12T13:00,11.2,970.1,3.27,5.87,337,346,0.00 +2023-09-12T14:00,13.1,970.7,3.08,4.79,347,349,0.00 +2023-09-12T15:00,14.9,970.7,3.32,4.33,353,353,0.00 +2023-09-12T16:00,16.1,970.8,3.13,3.92,353,354,0.00 +2023-09-12T17:00,17.3,970.8,3.04,3.76,343,343,0.00 +2023-09-12T18:00,18.1,970.3,2.85,3.48,342,342,0.00 +2023-09-12T19:00,18.9,969.7,2.88,3.61,326,326,0.00 +2023-09-12T20:00,19.3,969.0,4.10,5.19,326,326,0.10 +2023-09-12T21:00,19.7,968.7,3.97,5.05,326,326,0.00 +2023-09-12T22:00,19.6,968.1,4.44,5.78,337,337,0.00 +2023-09-12T23:00,18.8,968.0,4.40,5.95,343,343,0.00 +2023-09-13T00:00,17.2,968.2,2.40,4.80,358,360,0.00 +2023-09-13T01:00,14.7,968.0,2.20,5.33,360,6,0.00 +2023-09-13T02:00,13.4,968.4,2.11,5.53,5,13,0.00 +2023-09-13T03:00,12.2,968.5,2.01,5.30,27,32,0.00 +2023-09-13T04:00,11.9,968.7,3.26,7.13,50,56,0.00 +2023-09-13T05:00,11.5,969.0,3.91,7.84,77,79,0.00 +2023-09-13T06:00,10.7,969.0,3.41,7.02,87,86,0.00 +2023-09-13T07:00,10.0,969.0,2.92,6.35,96,97,0.00 +2023-09-13T08:00,9.4,969.0,2.62,5.92,97,102,0.00 +2023-09-13T09:00,9.1,968.8,2.45,5.75,102,103,0.00 +2023-09-13T10:00,8.8,969.0,2.40,5.50,107,109,0.00 +2023-09-13T11:00,8.7,969.0,2.53,5.65,108,113,0.00 +2023-09-13T12:00,8.6,969.2,3.01,5.95,111,117,0.00 +2023-09-13T13:00,9.1,969.4,3.74,7.04,106,113,0.00 +2023-09-13T14:00,11.0,969.9,3.76,5.76,107,110,0.00 +2023-09-13T15:00,13.3,969.9,4.44,5.91,113,114,0.00 +2023-09-13T16:00,15.4,969.7,4.65,6.04,115,117,0.00 +2023-09-13T17:00,17.0,969.4,4.61,5.83,120,121,0.00 +2023-09-13T18:00,18.4,969.0,4.40,5.61,129,130,0.00 +2023-09-13T19:00,19.6,968.2,4.31,5.45,134,137,0.00 +2023-09-13T20:00,20.5,967.6,4.26,5.42,141,142,0.00 +2023-09-13T21:00,21.2,967.1,4.00,5.15,148,151,0.00 +2023-09-13T22:00,21.5,966.7,3.98,5.11,155,157,0.00 +2023-09-13T23:00,21.2,966.4,3.68,5.00,158,160,0.00 +2023-09-14T00:00,19.6,965.7,2.24,4.88,117,125,0.00 +2023-09-14T01:00,17.8,965.3,3.42,7.09,105,112,0.00 +2023-09-14T02:00,16.9,965.6,4.31,8.50,112,115,0.00 +2023-09-14T03:00,16.0,965.7,4.63,8.96,123,125,0.00 +2023-09-14T04:00,15.5,965.8,4.53,8.98,131,134,0.00 +2023-09-14T05:00,15.1,965.7,4.69,9.22,140,143,0.00 +2023-09-14T06:00,15.0,965.6,4.74,9.25,155,158,0.00 +2023-09-14T07:00,14.8,965.6,4.49,8.78,168,172,0.00 +2023-09-14T08:00,14.4,965.3,4.30,8.56,183,187,0.00 +2023-09-14T09:00,14.1,965.1,4.06,8.29,190,198,0.00 +2023-09-14T10:00,14.0,965.3,4.37,8.82,196,203,0.00 +2023-09-14T11:00,14.2,965.5,4.69,9.40,191,197,0.00 +2023-09-14T12:00,14.4,965.9,4.73,9.47,186,191,0.00 +2023-09-14T13:00,15.2,966.2,5.05,9.26,188,194,0.00 +2023-09-14T14:00,17.8,966.5,5.14,10.31,187,194,0.00 +2023-09-14T15:00,19.7,966.7,5.56,8.24,188,190,0.00 +2023-09-14T16:00,21.8,966.7,6.02,8.26,195,197,0.00 +2023-09-14T17:00,23.7,966.6,6.09,8.14,203,205,0.00 +2023-09-14T18:00,25.2,966.3,7.30,9.78,216,217,0.00 +2023-09-14T19:00,25.7,966.0,7.88,10.66,216,216,0.00 +2023-09-14T20:00,26.1,965.6,7.52,10.23,213,214,0.00 +2023-09-14T21:00,26.0,965.2,7.17,9.78,210,211,0.00 +2023-09-14T22:00,25.8,964.5,6.91,9.60,211,211,0.00 +2023-09-14T23:00,25.0,964.7,5.49,8.63,213,215,0.00 +2023-09-15T00:00,23.6,965.2,5.32,9.33,196,199,0.00 +2023-09-15T01:00,23.2,965.4,3.24,6.49,214,205,0.00 +2023-09-15T02:00,21.5,965.7,1.53,3.83,259,237,0.00 +2023-09-15T03:00,20.1,965.7,1.43,3.52,295,277,0.00 +2023-09-15T04:00,18.9,965.2,1.50,3.62,184,208,0.00 +2023-09-15T05:00,19.2,965.4,4.70,9.01,218,220,0.00 +2023-09-15T06:00,19.1,965.3,5.36,9.58,217,220,0.00 +2023-09-15T07:00,19.3,965.3,6.30,10.75,222,224,0.00 +2023-09-15T08:00,18.9,965.2,6.47,10.54,231,232,0.00 +2023-09-15T09:00,16.8,965.1,6.02,9.83,222,224,0.20 +2023-09-15T10:00,15.9,964.9,6.00,9.87,217,220,0.50 +2023-09-15T11:00,15.7,965.0,5.11,8.86,230,233,0.30 +2023-09-15T12:00,16.4,965.5,3.16,5.64,252,240,0.00 +2023-09-15T13:00,16.5,965.2,4.25,7.44,229,234,1.20 +2023-09-15T14:00,16.7,965.1,4.00,6.96,212,215,1.00 +2023-09-15T15:00,17.4,966.1,1.66,2.44,245,251,0.30 +2023-09-15T16:00,19.3,966.4,3.60,4.60,270,269,0.00 +2023-09-15T17:00,21.1,966.3,2.75,3.42,289,291,0.00 +2023-09-15T18:00,22.2,966.3,2.34,2.88,290,290,0.00 +2023-09-15T19:00,23.5,966.2,2.28,2.86,293,295,0.00 +2023-09-15T20:00,23.8,965.7,3.44,4.30,306,306,0.10 +2023-09-15T21:00,23.7,965.5,3.56,4.56,308,308,0.00 +2023-09-15T22:00,23.7,965.3,4.02,5.27,305,303,0.00 +2023-09-15T23:00,22.6,965.3,3.78,5.46,323,319,0.10 +2023-09-16T00:00,20.6,965.2,1.80,3.51,273,290,0.00 +2023-09-16T01:00,19.1,965.4,1.98,4.08,221,239,0.00 +2023-09-16T02:00,17.5,965.6,3.26,5.45,207,227,0.00 +2023-09-16T03:00,17.1,966.0,3.13,6.05,243,262,0.00 +2023-09-16T04:00,16.5,966.1,2.12,5.66,315,343,0.00 +2023-09-16T05:00,14.7,965.7,1.86,4.61,306,330,0.00 +2023-09-16T06:00,14.0,965.6,2.24,5.37,297,315,0.00 +2023-09-16T07:00,13.5,965.3,2.21,5.17,288,311,0.00 +2023-09-16T08:00,13.0,965.3,2.01,4.56,276,308,0.00 +2023-09-16T09:00,12.6,965.2,2.33,4.94,280,306,0.00 +2023-09-16T10:00,12.6,965.5,2.51,6.01,299,316,0.00 +2023-09-16T11:00,12.5,965.7,2.55,6.16,312,324,0.00 +2023-09-16T12:00,11.9,966.2,3.08,6.80,324,332,0.00 +2023-09-16T13:00,12.4,966.8,3.30,6.26,325,333,0.00 +2023-09-16T14:00,14.5,967.4,3.11,6.22,327,334,0.00 +2023-09-16T15:00,16.5,967.9,3.72,4.98,336,338,0.00 +2023-09-16T16:00,18.4,968.2,4.27,5.54,339,340,0.00 +2023-09-16T17:00,19.4,968.2,5.10,6.62,332,333,0.10 +2023-09-16T18:00,20.1,968.0,4.83,6.17,333,333,0.10 +2023-09-16T19:00,20.6,967.4,4.61,5.91,336,336,0.10 +2023-09-16T20:00,21.0,967.2,4.72,6.11,339,339,0.10 +2023-09-16T21:00,20.7,966.7,5.15,6.61,342,342,0.10 +2023-09-16T22:00,20.0,966.8,5.29,6.96,345,344,0.00 +2023-09-16T23:00,19.6,966.8,4.66,6.43,345,345,0.00 +2023-09-17T00:00,18.3,967.4,4.31,6.72,4,4,0.00 +2023-09-17T01:00,16.6,967.1,3.00,6.20,360,1,0.00 +2023-09-17T02:00,15.8,967.5,3.86,7.54,350,354,0.00 +2023-09-17T03:00,15.0,967.6,3.32,7.01,353,357,0.00 +2023-09-17T04:00,14.1,967.4,3.01,6.61,356,3,0.00 +2023-09-17T05:00,13.3,967.6,2.70,6.32,360,11,0.00 +2023-09-17T06:00,12.8,967.6,2.42,5.59,353,10,0.00 +2023-09-17T07:00,12.1,967.8,2.28,5.22,345,4,0.00 +2023-09-17T08:00,11.2,967.6,2.02,4.90,340,359,0.00 +2023-09-17T09:00,10.5,967.5,2.20,4.94,330,353,0.00 +2023-09-17T10:00,10.1,967.8,2.61,5.44,328,343,0.00 +2023-09-17T11:00,9.7,968.0,2.36,5.03,324,343,0.00 +2023-09-17T12:00,9.3,968.4,2.36,5.03,324,339,0.00 +2023-09-17T13:00,9.9,968.8,2.77,4.53,319,338,0.00 +2023-09-17T14:00,12.2,969.1,2.42,4.25,322,333,0.00 +2023-09-17T15:00,14.4,969.5,2.51,3.23,337,338,0.00 +2023-09-17T16:00,16.3,969.7,2.40,2.94,343,342,0.00 +2023-09-17T17:00,17.6,969.7,2.00,2.40,357,358,0.00 +2023-09-17T18:00,19.1,969.1,1.12,1.39,27,30,0.00 +2023-09-17T19:00,20.4,968.5,0.32,0.36,18,34,0.00 +2023-09-17T20:00,20.6,968.1,0.36,0.36,236,236,0.00 +2023-09-17T21:00,21.0,967.2,1.00,1.06,233,229,0.00 +2023-09-17T22:00,20.8,966.8,1.35,1.56,222,220,0.00 +2023-09-17T23:00,20.4,966.3,1.66,1.93,205,201,0.00 +2023-09-18T00:00,18.4,966.0,1.70,3.41,177,175,0.00 +2023-09-18T01:00,16.2,965.6,2.20,3.80,177,180,0.00 +2023-09-18T02:00,15.9,965.5,2.02,4.03,160,173,0.00 +2023-09-18T03:00,15.3,965.4,3.05,6.28,148,149,0.00 +2023-09-18T04:00,14.9,965.0,3.86,8.04,143,142,0.00 +2023-09-18T05:00,14.6,964.7,3.83,8.11,147,150,0.00 +2023-09-18T06:00,14.0,964.5,3.77,7.91,158,162,0.00 +2023-09-18T07:00,13.5,964.3,3.74,7.94,164,169,0.00 +2023-09-18T08:00,13.1,963.9,3.74,7.96,164,168,0.00 +2023-09-18T09:00,12.7,963.5,3.79,7.91,168,171,0.00 +2023-09-18T10:00,12.4,963.1,4.03,8.34,173,174,0.00 +2023-09-18T11:00,12.3,963.0,4.44,8.93,172,176,0.00 +2023-09-18T12:00,13.0,962.6,4.87,9.63,171,176,0.00 +2023-09-18T13:00,14.1,962.6,5.36,9.73,171,176,0.00 +2023-09-18T14:00,16.5,962.7,5.26,10.91,171,178,0.00 +2023-09-18T15:00,19.0,962.5,5.87,8.57,166,169,0.00 +2023-09-18T16:00,21.2,962.6,6.57,8.98,167,168,0.00 +2023-09-18T17:00,22.9,962.2,7.25,9.87,165,167,0.00 +2023-09-18T18:00,24.2,961.3,8.07,10.82,160,162,0.00 +2023-09-18T19:00,24.8,960.4,8.12,11.05,158,159,0.00 +2023-09-18T20:00,25.3,959.7,7.75,10.53,160,162,0.00 +2023-09-18T21:00,25.2,959.4,7.03,9.48,165,166,0.00 +2023-09-18T22:00,25.0,959.1,5.98,8.39,162,165,0.00 +2023-09-18T23:00,24.5,958.9,5.02,7.80,145,149,0.00 +2023-09-19T00:00,23.7,958.4,4.72,8.36,126,131,0.00 +2023-09-19T01:00,22.4,958.3,5.14,9.13,127,133,0.00 +2023-09-19T02:00,21.4,958.1,5.45,9.68,137,142,0.00 +2023-09-19T03:00,20.5,957.9,4.90,9.01,141,146,0.00 +2023-09-19T04:00,19.7,957.4,4.69,8.90,146,153,0.00 +2023-09-19T05:00,18.9,956.8,4.92,9.36,156,162,0.00 +2023-09-19T06:00,18.4,956.7,4.07,8.32,155,164,0.00 +2023-09-19T07:00,17.5,956.5,2.98,6.49,140,155,0.00 +2023-09-19T08:00,16.6,956.4,3.32,6.74,134,148,0.00 +2023-09-19T09:00,16.0,956.0,3.96,7.66,137,147,0.00 +2023-09-19T10:00,16.0,956.0,4.47,8.41,146,152,0.00 +2023-09-19T11:00,15.9,956.0,4.80,8.94,149,153,0.00 +2023-09-19T12:00,15.7,956.1,4.52,9.30,155,163,0.00 +2023-09-19T13:00,17.1,957.2,3.50,7.37,178,188,0.00 +2023-09-19T14:00,19.9,957.8,3.61,7.21,194,204,0.00 +2023-09-19T15:00,22.3,957.9,3.92,5.31,199,200,0.00 +2023-09-19T16:00,24.5,957.8,3.50,4.60,182,182,0.00 +2023-09-19T17:00,26.4,957.8,4.20,5.50,179,180,0.00 +2023-09-19T18:00,27.4,957.7,4.61,6.01,176,177,0.00 +2023-09-19T19:00,27.9,957.7,4.67,5.98,170,170,0.00 +2023-09-19T20:00,28.5,957.6,4.12,5.29,157,158,0.00 +2023-09-19T21:00,28.6,957.5,4.65,6.08,152,153,0.00 +2023-09-19T22:00,28.0,957.6,4.20,5.50,155,155,0.00 +2023-09-19T23:00,27.2,957.8,3.53,5.02,155,157,0.00 +2023-09-20T00:00,23.9,958.3,4.43,7.69,162,164,0.00 +2023-09-20T01:00,22.0,958.6,3.76,7.30,163,167,0.00 +2023-09-20T02:00,20.7,959.2,3.98,7.62,152,157,0.00 +2023-09-20T03:00,19.8,959.4,4.16,7.97,153,156,0.00 +2023-09-20T04:00,19.0,959.5,4.37,8.42,160,160,0.00 +2023-09-20T05:00,18.4,959.5,3.96,8.03,159,161,0.00 +2023-09-20T06:00,18.1,959.1,4.54,8.73,166,170,0.00 +2023-09-20T07:00,18.3,959.1,5.20,9.91,178,182,0.00 +2023-09-20T08:00,18.4,959.2,5.23,9.88,187,191,0.00 +2023-09-20T09:00,18.2,959.3,5.00,9.44,192,195,0.00 +2023-09-20T10:00,17.8,959.5,4.54,8.96,194,196,0.00 +2023-09-20T11:00,17.4,959.9,4.12,8.32,194,196,0.00 +2023-09-20T12:00,16.3,960.8,3.10,6.82,178,184,0.00 +2023-09-20T13:00,16.8,961.6,2.91,5.62,164,175,0.00 +2023-09-20T14:00,18.9,962.5,2.69,5.23,165,173,0.00 +2023-09-20T15:00,21.1,962.9,3.42,4.62,173,175,0.00 +2023-09-20T16:00,23.0,963.4,4.10,5.30,177,178,0.00 +2023-09-20T17:00,24.9,963.4,3.73,4.74,172,173,0.00 +2023-09-20T18:00,26.6,963.1,4.10,5.22,167,168,0.00 +2023-09-20T19:00,27.6,963.0,4.78,6.14,160,161,0.00 +2023-09-20T20:00,27.9,962.8,5.57,7.15,159,160,0.00 +2023-09-20T21:00,26.9,962.7,5.59,7.47,153,154,0.00 +2023-09-20T22:00,26.1,962.9,5.14,6.87,167,167,0.00 +2023-09-20T23:00,25.5,963.2,5.03,7.02,159,160,0.00 +2023-09-21T00:00,25.1,963.2,3.35,6.80,163,163,0.00 +2023-09-21T01:00,23.2,963.7,4.33,8.32,161,162,0.00 +2023-09-21T02:00,22.3,964.5,5.63,9.90,160,160,0.00 +2023-09-21T03:00,21.2,964.9,4.98,9.11,170,171,0.00 +2023-09-21T04:00,20.5,965.1,5.14,9.44,173,175,0.00 +2023-09-21T05:00,20.2,965.1,5.53,10.05,174,174,0.00 +2023-09-21T06:00,20.0,965.5,5.71,10.11,176,177,0.00 +2023-09-21T07:00,19.4,966.1,4.80,8.91,180,182,0.00 +2023-09-21T08:00,18.8,966.2,4.90,9.01,181,183,0.00 +2023-09-21T09:00,18.2,966.7,4.63,8.71,174,177,0.00 +2023-09-21T10:00,17.6,967.0,4.64,8.74,173,175,0.00 +2023-09-21T11:00,16.8,967.5,4.37,8.39,169,172,0.00 +2023-09-21T12:00,16.5,967.7,4.22,8.16,166,169,0.00 +2023-09-21T13:00,17.0,968.8,4.22,7.56,158,162,0.00 +2023-09-21T14:00,18.7,969.7,4.34,7.86,165,168,0.00 +2023-09-21T15:00,20.9,970.0,4.69,6.41,169,169,0.00 +2023-09-21T16:00,22.6,970.1,4.57,6.10,170,170,0.00 +2023-09-21T17:00,24.5,970.0,5.23,6.93,154,153,0.00 +2023-09-21T18:00,25.4,970.0,5.61,7.39,158,157,0.00 +2023-09-21T19:00,26.3,969.4,5.91,7.78,152,152,0.00 +2023-09-21T20:00,26.8,968.8,5.83,7.67,149,149,0.00 +2023-09-21T21:00,26.8,968.1,5.66,7.41,148,148,0.00 +2023-09-21T22:00,26.3,967.7,5.25,7.03,140,140,0.00 +2023-09-21T23:00,25.6,967.7,5.25,7.51,130,132,0.00 +2023-09-22T00:00,23.2,967.5,3.81,6.93,113,117,0.00 +2023-09-22T01:00,21.2,967.6,2.64,6.36,127,127,0.00 +2023-09-22T02:00,21.0,968.3,3.83,8.07,131,132,0.00 +2023-09-22T03:00,20.7,968.2,3.69,7.81,131,130,0.00 +2023-09-22T04:00,19.9,968.0,4.31,8.27,134,135,0.00 +2023-09-22T05:00,18.6,968.4,3.16,6.89,162,161,0.00 +2023-09-22T06:00,17.7,968.0,3.58,7.44,144,149,0.00 +2023-09-22T07:00,17.2,967.4,3.78,7.73,127,130,0.00 +2023-09-22T08:00,16.6,967.3,3.47,7.14,134,136,0.00 +2023-09-22T09:00,15.9,967.1,2.90,6.38,136,139,0.00 +2023-09-22T10:00,15.2,967.1,2.62,5.87,133,136,0.00 +2023-09-22T11:00,14.7,967.7,2.78,5.95,128,132,0.00 +2023-09-22T12:00,14.6,967.2,3.00,6.31,120,119,0.00 +2023-09-22T13:00,15.6,967.1,3.96,5.96,106,113,0.00 +2023-09-22T14:00,16.8,967.2,4.70,6.22,114,114,0.00 +2023-09-22T15:00,17.3,966.8,5.07,6.72,112,113,0.00 +2023-09-22T16:00,19.5,966.6,4.88,6.41,113,113,0.10 +2023-09-22T17:00,19.9,966.5,5.10,6.71,118,118,0.10 +2023-09-22T18:00,20.9,966.3,5.48,7.26,128,128,0.10 +2023-09-22T19:00,21.9,965.5,5.61,7.38,130,131,0.00 +2023-09-22T20:00,21.8,965.1,5.02,6.72,134,134,0.00 +2023-09-22T21:00,22.2,964.5,4.42,5.78,128,127,0.10 +2023-09-22T22:00,20.7,963.9,4.70,6.62,128,128,0.50 +2023-09-22T23:00,19.8,963.7,3.61,5.55,124,124,0.40 +2023-09-23T00:00,19.4,964.3,3.54,5.47,106,108,0.80 +2023-09-23T01:00,18.3,964.3,2.82,5.55,113,113,0.00 +2023-09-23T02:00,18.3,964.5,3.44,6.08,116,117,0.00 +2023-09-23T03:00,18.2,964.5,3.08,5.36,126,127,0.00 +2023-09-23T04:00,17.4,963.9,2.98,5.59,130,134,0.00 +2023-09-23T05:00,16.6,963.5,2.13,4.85,139,148,0.00 +2023-09-23T06:00,16.1,963.1,2.19,4.83,137,146,0.00 +2023-09-23T07:00,16.1,962.8,2.10,4.85,155,158,0.00 +2023-09-23T08:00,16.1,962.6,2.52,5.28,146,151,0.00 +2023-09-23T09:00,16.8,962.5,2.55,4.94,138,144,0.00 +2023-09-23T10:00,17.0,962.6,2.52,4.98,146,158,0.10 +2023-09-23T11:00,17.1,962.4,3.91,5.71,184,191,0.20 +2023-09-23T12:00,16.2,961.3,3.20,5.46,110,118,0.00 +2023-09-23T13:00,16.6,961.4,3.44,5.72,126,126,0.00 +2023-09-23T14:00,17.6,962.0,4.36,6.16,148,148,0.00 +2023-09-23T15:00,17.6,962.4,4.17,6.22,150,152,3.40 +2023-09-23T16:00,18.3,961.4,3.89,5.10,138,138,0.00 +2023-09-23T17:00,19.6,960.2,5.20,6.86,120,121,0.10 +2023-09-23T18:00,22.1,959.4,6.74,9.04,125,125,0.00 +2023-09-23T19:00,22.2,958.0,6.64,9.40,127,128,0.10 +2023-09-23T20:00,23.7,956.8,9.06,12.56,143,143,0.50 +2023-09-23T21:00,19.4,956.0,7.87,11.81,153,155,3.40 +2023-09-23T22:00,19.8,954.8,8.01,12.25,164,164,8.10 +2023-09-23T23:00,19.9,954.7,6.91,11.04,183,185,2.80 +2023-09-24T00:00,18.0,957.0,3.01,5.43,184,186,0.30 +2023-09-24T01:00,18.2,957.2,3.18,5.53,134,139,0.50 +2023-09-24T02:00,18.3,956.8,3.61,6.44,146,152,0.10 +2023-09-24T03:00,17.7,956.5,4.10,7.26,193,192,0.00 +2023-09-24T04:00,17.1,956.2,4.78,7.76,217,218,0.00 +2023-09-24T05:00,16.4,955.8,3.94,7.08,216,222,0.00 +2023-09-24T06:00,15.8,955.8,3.49,6.66,207,216,0.00 +2023-09-24T07:00,15.5,956.5,4.03,7.16,226,234,0.00 +2023-09-24T08:00,14.8,957.1,3.80,7.08,243,251,0.00 +2023-09-24T09:00,14.1,957.4,3.76,7.09,245,254,0.00 +2023-09-24T10:00,13.5,957.4,3.33,6.54,237,247,0.00 +2023-09-24T11:00,13.1,957.5,2.88,5.73,236,245,0.00 +2023-09-24T12:00,12.7,957.9,2.84,6.13,231,242,0.00 +2023-09-24T13:00,13.1,958.5,2.62,5.33,223,240,0.00 +2023-09-24T14:00,14.4,959.3,1.96,3.08,195,216,0.00 +2023-09-24T15:00,15.9,959.7,2.83,3.57,188,191,0.00 +2023-09-24T16:00,17.4,959.9,3.28,4.12,192,194,0.00 +2023-09-24T17:00,17.4,960.1,4.20,5.59,205,207,0.00 +2023-09-24T18:00,18.6,960.3,4.80,6.30,216,216,0.00 +2023-09-24T19:00,19.9,960.1,5.36,7.06,217,218,0.20 +2023-09-24T20:00,20.6,960.0,5.81,7.86,228,229,0.30 +2023-09-24T21:00,21.8,960.1,5.77,7.79,236,237,0.10 +2023-09-24T22:00,19.4,960.5,4.17,5.91,240,242,1.00 +2023-09-24T23:00,17.8,960.9,4.20,6.35,232,237,0.30 +2023-09-25T00:00,17.8,961.5,1.84,2.47,225,238,0.00 +2023-09-25T01:00,17.0,961.6,1.53,3.36,191,210,0.00 +2023-09-25T02:00,16.5,961.9,2.78,6.08,218,224,0.00 +2023-09-25T03:00,16.7,962.3,3.40,6.57,242,244,0.00 +2023-09-25T04:00,16.5,962.3,3.49,6.33,243,249,0.00 +2023-09-25T05:00,15.2,962.3,3.67,7.12,244,250,0.00 +2023-09-25T06:00,14.8,962.3,3.35,6.84,253,258,0.00 +2023-09-25T07:00,14.4,962.8,2.94,6.20,252,260,0.00 +2023-09-25T08:00,14.1,962.8,2.79,6.03,255,264,0.00 +2023-09-25T09:00,14.0,962.9,3.04,6.30,261,270,0.00 +2023-09-25T10:00,13.8,963.0,2.63,5.53,261,276,0.00 +2023-09-25T11:00,14.1,963.6,2.90,5.82,270,282,0.00 +2023-09-25T12:00,15.5,964.4,2.62,4.75,310,311,0.00 +2023-09-25T13:00,15.5,964.8,3.69,5.73,311,314,0.10 +2023-09-25T14:00,16.2,965.3,4.10,5.59,315,316,0.00 +2023-09-25T15:00,17.2,965.7,4.14,5.42,307,308,0.00 +2023-09-25T16:00,18.6,966.2,4.32,5.60,312,311,0.00 +2023-09-25T17:00,19.8,966.4,4.46,5.59,314,314,0.00 +2023-09-25T18:00,20.8,966.2,4.18,5.24,312,312,0.00 +2023-09-25T19:00,21.2,966.1,5.02,6.52,329,328,0.00 +2023-09-25T20:00,21.1,966.1,4.96,6.40,332,331,0.00 +2023-09-25T21:00,21.3,966.0,4.92,6.36,331,330,0.00 +2023-09-25T22:00,20.7,966.0,5.37,7.21,331,331,0.10 +2023-09-25T23:00,20.2,966.3,5.10,7.33,334,334,0.00 +2023-09-26T00:00,18.3,966.9,3.00,6.00,2,2,0.00 +2023-09-26T01:00,17.0,966.9,3.23,6.61,338,342,0.00 +2023-09-26T02:00,16.0,967.2,3.31,6.76,331,336,0.00 +2023-09-26T03:00,15.3,967.2,3.36,6.95,323,330,0.00 +2023-09-26T04:00,14.5,967.2,2.79,6.11,339,345,0.00 +2023-09-26T05:00,13.6,967.1,2.16,4.87,326,341,0.00 +2023-09-26T06:00,13.0,967.0,2.50,4.74,307,325,0.00 +2023-09-26T07:00,12.8,967.2,2.69,5.52,315,325,0.00 +2023-09-26T08:00,13.1,967.3,2.77,5.71,319,327,0.00 +2023-09-26T09:00,14.3,967.5,3.02,5.02,326,329,0.10 +2023-09-26T10:00,14.6,967.5,3.74,5.53,344,347,0.20 +2023-09-26T11:00,14.7,967.8,3.47,4.96,348,351,0.00 +2023-09-26T12:00,14.7,968.5,3.75,6.55,9,12,0.10 +2023-09-26T13:00,14.8,968.8,3.28,5.04,12,14,0.10 +2023-09-26T14:00,15.5,969.2,3.44,4.56,26,26,0.10 +2023-09-26T15:00,16.5,969.4,3.20,4.06,39,38,0.10 +2023-09-26T16:00,18.0,969.4,3.20,4.05,39,40,0.10 +2023-09-26T17:00,19.3,969.4,3.54,4.38,45,45,0.10 +2023-09-26T18:00,20.3,969.2,4.10,5.16,45,46,0.10 +2023-09-26T19:00,19.4,969.1,5.02,6.52,55,54,0.30 +2023-09-26T20:00,19.9,968.8,4.12,5.46,61,62,0.20 +2023-09-26T21:00,20.8,968.3,4.91,6.35,57,57,0.00 +2023-09-26T22:00,19.9,968.0,5.28,7.00,53,53,0.00 +2023-09-26T23:00,19.1,968.2,4.72,6.60,54,55,0.00 +2023-09-27T00:00,17.6,968.8,4.12,6.64,51,53,0.00 +2023-09-27T01:00,16.6,968.9,3.36,6.11,53,58,0.00 +2023-09-27T02:00,15.9,969.0,3.44,6.19,54,59,0.00 +2023-09-27T03:00,16.1,969.1,3.89,5.86,61,65,0.00 +2023-09-27T04:00,15.8,969.0,3.31,5.24,61,66,0.10 +2023-09-27T05:00,15.7,968.9,3.77,5.41,68,71,0.00 +2023-09-27T06:00,15.7,968.9,3.49,5.35,66,69,0.00 +2023-09-27T07:00,15.7,968.7,3.05,4.57,58,61,0.00 +2023-09-27T08:00,15.6,968.5,2.91,4.35,63,67,0.00 +2023-09-27T09:00,15.5,968.1,3.00,4.53,64,68,0.00 +2023-09-27T10:00,15.4,968.0,3.04,4.79,63,67,0.00 +2023-09-27T11:00,15.3,968.0,3.07,4.59,71,74,0.00 +2023-09-27T12:00,15.1,968.5,2.68,4.96,63,71,0.00 +2023-09-27T13:00,15.7,968.8,3.00,4.16,64,66,0.00 +2023-09-27T14:00,16.5,968.9,3.32,4.32,74,77,0.00 +2023-09-27T15:00,17.6,968.9,3.85,4.96,81,81,0.10 +2023-09-27T16:00,18.2,968.9,4.22,5.51,85,86,0.10 +2023-09-27T17:00,19.3,968.6,3.80,4.80,92,91,0.10 +2023-09-27T18:00,20.2,968.1,3.61,4.66,104,105,0.00 +2023-09-27T19:00,21.6,967.5,4.14,5.22,110,110,0.00 +2023-09-27T20:00,21.5,967.0,3.53,4.52,115,115,0.00 +2023-09-27T21:00,21.5,966.4,3.28,4.22,128,126,0.00 +2023-09-27T22:00,21.3,966.4,2.70,3.41,141,140,0.00 +2023-09-27T23:00,21.1,966.4,2.55,3.47,138,136,0.00 +2023-09-28T00:00,17.9,966.0,2.39,3.11,123,123,0.00 +2023-09-28T01:00,17.1,966.0,2.21,5.32,108,106,0.00 +2023-09-28T02:00,17.0,966.1,3.49,7.53,103,101,0.00 +2023-09-28T03:00,16.5,966.0,3.67,7.72,107,107,0.00 +2023-09-28T04:00,15.7,966.1,3.71,7.62,117,120,0.00 +2023-09-28T05:00,15.1,966.0,3.64,7.46,122,125,0.00 +2023-09-28T06:00,14.7,965.8,3.69,7.57,131,132,0.00 +2023-09-28T07:00,14.4,965.8,3.89,7.81,138,140,0.00 +2023-09-28T08:00,14.3,965.7,3.74,7.60,146,147,0.00 +2023-09-28T09:00,14.1,965.3,3.77,7.65,148,151,0.00 +2023-09-28T10:00,13.9,965.2,4.05,7.88,147,151,0.00 +2023-09-28T11:00,13.8,965.4,4.24,8.11,146,150,0.00 +2023-09-28T12:00,13.6,965.7,4.05,7.70,147,150,0.00 +2023-09-28T13:00,13.8,966.0,4.21,7.52,152,155,0.00 +2023-09-28T14:00,15.5,966.3,4.44,6.88,144,147,0.00 +2023-09-28T15:00,17.6,966.2,4.96,6.85,146,146,0.00 +2023-09-28T16:00,19.7,966.0,5.51,7.34,151,152,0.00 +2023-09-28T17:00,21.4,965.6,7.50,10.07,159,159,0.00 +2023-09-28T18:00,22.4,964.8,7.47,9.98,155,156,0.00 +2023-09-28T19:00,23.1,964.0,7.25,9.67,156,156,0.00 +2023-09-28T20:00,23.6,963.4,7.21,9.59,156,157,0.00 +2023-09-28T21:00,23.7,962.8,7.07,9.58,155,155,0.00 +2023-09-28T22:00,23.4,962.4,7.11,9.84,152,153,0.00 +2023-09-28T23:00,22.6,962.3,6.90,10.47,150,151,0.00 +2023-09-29T00:00,21.2,961.3,6.66,10.93,144,145,0.00 +2023-09-29T01:00,20.4,961.7,6.71,11.18,147,148,0.00 +2023-09-29T02:00,19.8,962.2,6.58,11.00,152,154,0.00 +2023-09-29T03:00,19.3,962.1,6.62,11.10,153,156,0.00 +2023-09-29T04:00,18.9,961.9,6.48,11.02,153,156,0.00 +2023-09-29T05:00,18.7,961.8,6.40,10.90,155,158,0.00 +2023-09-29T06:00,18.8,961.4,6.63,11.07,157,160,0.00 +2023-09-29T07:00,18.5,961.1,6.61,11.13,160,162,0.00 +2023-09-29T08:00,18.4,960.8,6.99,11.52,156,160,0.00 +2023-09-29T09:00,18.3,960.5,6.93,11.55,160,164,0.00 +2023-09-29T10:00,18.4,960.0,7.05,11.84,162,166,0.00 +2023-09-29T11:00,18.3,960.1,6.84,11.59,165,170,0.00 +2023-09-29T12:00,17.0,960.1,7.14,12.12,136,139,0.00 +2023-09-29T13:00,17.7,960.4,6.31,10.85,155,160,0.00 +2023-09-29T14:00,19.9,960.4,6.17,11.80,163,179,0.00 +2023-09-29T15:00,23.2,961.4,3.40,6.28,178,189,0.00 +2023-09-29T16:00,25.0,962.4,3.99,5.41,202,205,0.60 +2023-09-29T17:00,27.0,962.3,4.96,6.61,199,200,0.00 +2023-09-29T18:00,28.1,961.9,5.89,7.79,195,196,0.00 +2023-09-29T19:00,28.2,961.3,5.71,7.52,184,185,0.00 +2023-09-29T20:00,27.3,961.4,5.41,7.32,177,176,0.00 +2023-09-29T21:00,27.9,961.3,4.13,5.42,173,175,0.10 +2023-09-29T22:00,28.3,960.6,5.59,7.81,170,170,0.00 +2023-09-29T23:00,23.1,961.0,2.60,3.13,286,253,5.60 +2023-09-30T00:00,20.3,962.1,3.81,5.46,23,24,12.00 +2023-09-30T01:00,19.9,961.8,3.11,5.71,84,87,0.00 +2023-09-30T02:00,20.0,961.6,4.05,7.88,110,119,0.00 +2023-09-30T03:00,19.5,962.2,1.87,3.72,74,149,0.00 +2023-09-30T04:00,18.4,963.0,2.75,4.09,80,112,3.60 +2023-09-30T05:00,19.7,961.2,5.35,9.59,163,172,0.10 +2023-09-30T06:00,19.7,961.5,4.12,8.53,186,190,0.00 +2023-09-30T07:00,19.7,962.2,2.33,6.75,190,207,0.00 +2023-09-30T08:00,18.8,963.2,1.43,2.73,102,156,0.50 +2023-09-30T09:00,18.6,962.7,3.62,5.82,141,161,0.00 +2023-09-30T10:00,18.6,963.1,4.05,8.13,160,166,0.00 +2023-09-30T11:00,18.9,963.4,4.40,8.90,180,181,0.00 +2023-09-30T12:00,16.8,964.1,2.75,5.46,303,298,0.00 +2023-09-30T13:00,16.7,965.0,2.69,4.44,329,329,0.00 +2023-09-30T14:00,17.3,966.0,2.40,2.81,2,4,0.00 +2023-09-30T15:00,18.4,966.3,2.02,2.16,33,34,0.00 +2023-09-30T16:00,21.2,966.9,0.90,1.14,90,105,0.00 +2023-09-30T17:00,23.8,966.7,1.22,1.49,125,132,0.00 +2023-09-30T18:00,26.0,966.7,2.42,3.11,128,132,0.00 +2023-09-30T19:00,27.9,966.1,3.42,4.52,142,145,0.00 +2023-09-30T20:00,29.1,965.5,4.06,5.36,170,171,0.10 +2023-09-30T21:00,29.4,965.2,3.88,5.08,168,170,0.00 +2023-09-30T22:00,29.4,965.0,5.32,7.47,164,164,0.00 +2023-09-30T23:00,27.6,965.1,5.94,9.54,144,147,0.00 +2023-10-01T00:00,24.3,964.6,3.20,7.12,104,101,0.00 +2023-10-01T01:00,24.2,964.7,3.19,7.55,131,148,0.00 +2023-10-01T02:00,25.2,965.3,4.11,8.63,154,167,0.00 +2023-10-01T03:00,25.1,965.8,4.87,9.51,171,178,0.00 +2023-10-01T04:00,25.2,966.3,5.40,10.02,182,183,0.00 +2023-10-01T05:00,24.7,966.5,4.49,8.73,168,175,0.00 +2023-10-01T06:00,23.8,966.5,5.16,9.42,148,158,0.00 +2023-10-01T07:00,23.6,966.4,6.32,10.99,162,165,0.00 +2023-10-01T08:00,23.6,966.0,6.60,11.40,180,181,0.00 +2023-10-01T09:00,23.1,966.0,6.80,11.82,181,183,0.00 +2023-10-01T10:00,22.6,966.3,6.70,11.62,180,183,0.00 +2023-10-01T11:00,22.3,966.8,6.30,11.25,181,186,0.00 +2023-10-01T12:00,22.5,967.6,5.23,9.60,173,182,0.00 +2023-10-01T13:00,22.1,968.5,5.36,9.43,166,175,0.20 +2023-10-01T14:00,22.9,968.8,5.52,9.00,145,156,1.00 +2023-10-01T15:00,24.7,969.1,5.85,10.07,167,173,0.00 +2023-10-01T16:00,27.0,968.8,6.90,9.71,181,183,0.00 +2023-10-01T17:00,28.4,968.6,6.92,9.44,184,185,0.00 +2023-10-01T18:00,29.3,968.3,7.22,9.73,184,185,0.00 +2023-10-01T19:00,30.1,967.9,7.42,10.14,185,185,0.00 +2023-10-01T20:00,30.5,967.7,7.53,10.36,185,186,0.00 +2023-10-01T21:00,30.8,967.2,7.78,11.03,188,189,0.00 +2023-10-01T22:00,30.2,966.8,6.76,10.42,188,189,0.00 +2023-10-01T23:00,28.7,966.7,5.90,9.92,182,183,0.00 +2023-10-02T00:00,27.2,966.4,4.62,9.10,175,179,0.00 +2023-10-02T01:00,26.5,966.6,5.73,10.42,174,176,0.00 +2023-10-02T02:00,25.8,966.8,6.32,11.31,175,177,0.00 +2023-10-02T03:00,25.3,967.1,6.81,11.73,183,184,0.00 +2023-10-02T04:00,24.8,967.2,6.40,11.33,182,184,0.00 +2023-10-02T05:00,24.3,967.1,6.21,11.14,183,185,0.00 +2023-10-02T06:00,23.6,967.0,6.30,11.13,182,184,0.00 +2023-10-02T07:00,23.2,967.0,6.51,11.45,184,186,0.00 +2023-10-02T08:00,22.9,966.9,6.46,11.40,188,191,0.00 +2023-10-02T09:00,22.5,966.6,6.45,11.28,187,190,0.00 +2023-10-02T10:00,22.1,966.5,6.54,11.46,186,190,0.00 +2023-10-02T11:00,21.8,966.4,6.58,11.41,189,191,0.00 +2023-10-02T12:00,21.9,966.8,6.36,11.26,196,200,0.00 +2023-10-02T13:00,21.7,966.6,6.11,10.72,195,198,0.00 +2023-10-02T14:00,23.0,966.8,6.32,10.64,198,202,0.00 +2023-10-02T15:00,24.5,967.0,6.02,9.26,191,194,0.00 +2023-10-02T16:00,25.9,967.1,6.25,8.90,187,188,0.00 +2023-10-02T17:00,27.4,966.9,6.55,9.09,187,188,0.00 +2023-10-02T18:00,28.8,966.5,7.26,9.91,187,189,0.00 +2023-10-02T19:00,29.5,965.8,7.81,10.59,190,191,0.00 +2023-10-02T20:00,29.7,965.2,7.75,10.61,191,191,0.00 +2023-10-02T21:00,29.6,964.4,7.53,10.51,191,192,0.00 +2023-10-02T22:00,29.1,963.8,6.79,10.06,189,190,0.00 +2023-10-02T23:00,27.8,963.3,5.91,9.63,183,185,0.00 +2023-10-03T00:00,26.9,963.4,5.10,9.40,179,182,0.00 +2023-10-03T01:00,26.0,963.3,5.51,10.00,177,180,0.00 +2023-10-03T02:00,25.4,963.1,5.81,10.20,177,179,0.00 +2023-10-03T03:00,24.4,963.0,5.93,10.61,174,178,0.00 +2023-10-03T04:00,24.1,962.8,6.81,11.70,177,180,0.00 +2023-10-03T05:00,23.7,962.8,6.80,11.62,181,183,0.00 +2023-10-03T06:00,23.0,962.7,6.50,11.22,180,183,0.00 +2023-10-03T07:00,22.4,962.4,6.90,11.82,180,183,0.00 +2023-10-03T08:00,22.2,962.2,6.90,11.82,180,183,0.00 +2023-10-03T09:00,21.8,961.8,6.60,11.30,178,182,0.00 +2023-10-03T10:00,21.5,962.0,6.60,11.22,180,183,0.00 +2023-10-03T11:00,21.1,961.5,6.60,11.20,178,181,0.00 +2023-10-03T12:00,21.8,961.4,6.30,10.82,179,183,0.00 +2023-10-03T13:00,21.6,961.1,6.54,11.11,174,177,0.00 +2023-10-03T14:00,22.7,960.9,6.46,10.85,172,175,0.00 +2023-10-03T15:00,23.9,960.7,7.75,11.15,169,171,0.00 +2023-10-03T16:00,25.0,960.8,7.80,11.00,179,179,0.00 +2023-10-03T17:00,25.5,960.0,8.12,11.32,176,177,0.00 +2023-10-03T18:00,27.2,959.5,9.91,13.68,189,189,0.00 +2023-10-03T19:00,25.7,959.0,9.85,13.87,193,193,0.00 +2023-10-03T20:00,26.1,958.7,10.89,15.26,193,194,0.00 +2023-10-03T21:00,25.1,958.3,9.79,13.88,188,189,0.00 +2023-10-03T22:00,22.9,957.6,6.86,10.09,199,200,0.10 +2023-10-03T23:00,22.5,957.2,6.65,10.16,173,174,0.20 +2023-10-04T00:00,19.9,957.2,7.01,11.50,177,179,0.20 +2023-10-04T01:00,20.4,956.4,7.52,12.02,166,169,0.00 +2023-10-04T02:00,20.4,955.6,7.67,12.24,168,169,0.30 +2023-10-04T03:00,18.8,955.9,8.03,12.91,199,200,9.20 +2023-10-04T04:00,18.4,955.5,7.63,12.08,191,192,4.50 +2023-10-04T05:00,18.6,955.1,8.41,13.06,207,206,3.10 +2023-10-04T06:00,17.8,955.4,5.32,8.69,244,247,6.30 +2023-10-04T07:00,17.6,955.6,4.30,7.16,239,243,0.20 +2023-10-04T08:00,16.5,956.1,5.55,9.43,236,238,0.00 +2023-10-04T09:00,15.5,956.1,5.33,9.47,236,239,0.00 +2023-10-04T10:00,14.9,956.7,5.23,9.40,244,249,0.00 +2023-10-04T11:00,14.6,957.7,5.53,9.76,257,264,0.00 +2023-10-04T12:00,13.6,958.2,4.52,8.10,242,250,0.00 +2023-10-04T13:00,13.4,959.0,4.75,8.10,248,254,0.00 +2023-10-04T14:00,14.6,959.7,4.68,7.04,254,259,0.00 +2023-10-04T15:00,16.3,960.2,6.73,9.08,281,281,0.00 +2023-10-04T16:00,17.2,960.7,6.04,8.00,282,283,0.00 +2023-10-04T17:00,17.8,961.1,5.89,7.71,280,280,0.00 +2023-10-04T18:00,18.5,961.4,6.92,9.04,281,280,0.00 +2023-10-04T19:00,18.5,961.2,6.69,8.85,284,284,0.00 +2023-10-04T20:00,18.7,961.3,6.14,8.20,282,283,0.00 +2023-10-04T21:00,18.9,961.3,5.66,7.43,287,287,0.00 +2023-10-04T22:00,18.7,961.2,4.84,6.51,288,288,0.00 +2023-10-04T23:00,17.8,961.3,3.86,6.11,291,291,0.00 +2023-10-05T00:00,14.3,961.8,1.96,4.10,255,270,0.00 +2023-10-05T01:00,13.6,961.6,2.08,4.61,235,257,0.00 +2023-10-05T02:00,13.0,961.4,2.55,5.46,222,242,0.00 +2023-10-05T03:00,12.6,961.5,3.14,6.58,211,226,0.00 +2023-10-05T04:00,12.5,961.9,3.81,7.80,210,221,0.00 +2023-10-05T05:00,12.6,961.9,4.25,8.49,204,212,0.00 +2023-10-05T06:00,13.0,961.4,5.03,9.66,201,207,0.00 +2023-10-05T07:00,13.7,961.2,5.82,10.38,209,212,0.00 +2023-10-05T08:00,14.6,961.4,6.80,11.31,221,225,0.00 +2023-10-05T09:00,14.2,961.5,6.77,11.27,236,238,0.00 +2023-10-05T10:00,13.8,961.3,5.90,10.30,244,246,0.00 +2023-10-05T11:00,13.5,961.4,6.04,10.75,258,260,0.00 +2023-10-05T12:00,13.2,962.3,6.21,10.59,285,288,0.00 +2023-10-05T13:00,12.7,962.7,5.16,9.04,292,295,0.00 +2023-10-05T14:00,13.7,963.7,5.60,9.04,286,288,0.00 +2023-10-05T15:00,14.6,964.0,7.75,10.85,287,288,0.00 +2023-10-05T16:00,15.2,963.9,8.23,11.17,286,287,0.00 +2023-10-05T17:00,16.0,963.7,9.07,12.39,284,284,0.00 +2023-10-05T18:00,16.5,963.5,9.77,13.35,288,288,0.00 +2023-10-05T19:00,16.7,963.0,10.31,14.14,290,290,0.00 +2023-10-05T20:00,16.4,962.6,11.01,15.17,295,295,0.00 +2023-10-05T21:00,15.5,962.9,10.15,14.45,296,297,0.00 +2023-10-05T22:00,15.2,963.2,9.76,13.96,294,295,0.00 +2023-10-05T23:00,14.7,963.5,8.32,12.25,297,297,0.00 +2023-10-06T00:00,12.9,964.6,6.88,10.60,306,306,0.00 +2023-10-06T01:00,12.0,964.9,5.77,9.32,298,300,0.00 +2023-10-06T02:00,11.5,964.9,5.77,9.55,298,301,0.00 +2023-10-06T03:00,11.1,965.0,5.68,9.42,298,301,0.00 +2023-10-06T04:00,10.5,964.8,5.19,9.08,295,298,0.00 +2023-10-06T05:00,9.9,964.1,4.47,8.23,280,286,0.00 +2023-10-06T06:00,9.9,963.8,5.33,9.30,264,269,0.00 +2023-10-06T07:00,10.4,963.6,6.89,11.24,279,282,0.00 +2023-10-06T08:00,9.3,963.9,7.45,11.64,285,288,0.00 +2023-10-06T09:00,8.1,964.3,8.41,12.71,297,298,0.00 +2023-10-06T10:00,7.6,964.6,8.18,12.62,297,298,0.00 +2023-10-06T11:00,6.7,965.3,7.65,12.03,296,297,0.00 +2023-10-06T12:00,5.6,965.2,7.92,12.43,295,297,0.00 +2023-10-06T13:00,4.9,965.9,8.46,12.87,303,305,0.80 +2023-10-06T14:00,5.2,966.7,11.13,15.62,305,306,0.00 +2023-10-06T15:00,5.6,967.6,11.30,16.34,306,307,0.10 +2023-10-06T16:00,5.4,968.3,9.45,13.70,309,310,0.20 +2023-10-06T17:00,7.3,968.9,10.47,14.71,315,316,0.00 +2023-10-06T18:00,8.9,969.6,10.81,15.15,321,321,0.10 +2023-10-06T19:00,10.0,969.7,9.95,13.93,321,321,0.10 +2023-10-06T20:00,10.5,970.0,10.21,14.19,319,320,0.20 +2023-10-06T21:00,11.5,970.2,10.12,14.12,322,322,0.10 +2023-10-06T22:00,11.2,970.6,9.87,13.93,320,321,0.00 +2023-10-06T23:00,10.4,971.0,8.48,12.34,322,323,0.00 +2023-10-07T00:00,9.0,971.9,7.52,11.57,319,320,0.00 +2023-10-07T01:00,8.6,972.6,7.50,11.40,317,318,0.00 +2023-10-07T02:00,8.8,973.2,7.64,10.89,314,314,0.00 +2023-10-07T03:00,8.4,973.5,7.50,10.47,315,316,0.00 +2023-10-07T04:00,7.9,973.6,7.08,9.98,317,318,0.00 +2023-10-07T05:00,6.9,973.4,5.73,9.19,313,315,0.00 +2023-10-07T06:00,6.0,973.2,4.89,8.35,311,314,0.00 +2023-10-07T07:00,5.2,973.1,4.34,7.78,308,313,0.00 +2023-10-07T08:00,4.5,973.2,4.19,7.62,303,308,0.00 +2023-10-07T09:00,4.0,973.2,4.30,7.82,306,309,0.00 +2023-10-07T10:00,3.6,973.2,3.94,7.45,306,310,0.00 +2023-10-07T11:00,3.2,973.0,3.47,6.95,303,310,0.00 +2023-10-07T12:00,2.2,973.4,3.02,6.30,304,312,0.00 +2023-10-07T13:00,2.2,973.2,2.88,5.58,290,303,0.00 +2023-10-07T14:00,4.3,973.7,2.86,4.88,282,293,0.00 +2023-10-07T15:00,6.4,973.8,3.13,3.98,287,288,0.00 +2023-10-07T16:00,8.1,973.5,2.82,3.62,276,276,0.00 +2023-10-07T17:00,9.7,973.0,3.40,4.30,272,273,0.00 +2023-10-07T18:00,11.1,971.9,3.40,4.40,268,269,0.00 +2023-10-07T19:00,12.5,970.9,3.71,4.70,273,272,0.00 +2023-10-07T20:00,13.0,970.0,3.61,4.71,275,274,0.00 +2023-10-07T21:00,13.5,969.2,3.40,4.40,272,271,0.00 +2023-10-07T22:00,13.3,968.1,3.35,4.46,260,261,0.00 +2023-10-07T23:00,12.8,967.5,2.72,4.46,253,254,0.00 +2023-10-08T00:00,9.7,966.7,2.26,3.76,225,241,0.00 +2023-10-08T01:00,9.0,966.2,2.02,3.55,213,238,0.00 +2023-10-08T02:00,9.0,965.7,1.75,3.44,211,234,0.00 +2023-10-08T03:00,10.0,965.3,1.61,3.42,210,232,0.00 +2023-10-08T04:00,10.8,965.0,2.06,3.75,209,228,0.00 +2023-10-08T05:00,10.2,964.1,2.56,4.72,201,216,0.00 +2023-10-08T06:00,8.7,963.2,2.91,5.73,196,209,0.00 +2023-10-08T07:00,8.7,962.8,3.10,6.16,201,212,0.00 +2023-10-08T08:00,7.8,962.1,3.31,6.59,209,222,0.00 +2023-10-08T09:00,7.5,961.5,3.16,6.50,215,233,0.00 +2023-10-08T10:00,7.4,961.2,2.84,6.26,219,241,0.00 +2023-10-08T11:00,7.3,961.1,2.27,5.39,229,255,0.00 +2023-10-08T12:00,6.5,960.8,2.24,5.53,260,283,0.00 +2023-10-08T13:00,6.3,961.2,2.10,5.02,295,317,0.00 +2023-10-08T14:00,8.8,962.0,3.14,5.39,329,338,0.00 +2023-10-08T15:00,10.5,962.8,3.32,4.52,353,355,0.00 +2023-10-08T16:00,12.0,963.2,3.14,4.06,9,10,0.00 +2023-10-08T17:00,13.7,963.2,3.13,3.89,17,18,0.00 +2023-10-08T18:00,15.0,963.3,3.64,4.59,16,16,0.00 +2023-10-08T19:00,15.8,963.0,3.61,4.54,14,14,0.00 +2023-10-08T20:00,16.1,962.7,3.55,4.37,10,11,0.00 +2023-10-08T21:00,16.0,962.4,3.72,4.73,6,6,0.00 +2023-10-08T22:00,15.4,962.2,3.90,5.10,1,1,0.00 +2023-10-08T23:00,14.4,962.3,3.21,5.21,4,3,0.00 +2023-10-09T00:00,12.0,962.0,2.51,5.95,23,27,0.00 +2023-10-09T01:00,10.7,962.2,2.55,6.10,42,49,0.00 +2023-10-09T02:00,9.6,962.7,2.61,6.09,58,67,0.00 +2023-10-09T03:00,9.4,963.3,2.12,5.22,71,73,0.00 +2023-10-09T04:00,8.7,963.1,1.75,3.71,77,76,0.00 +2023-10-09T05:00,9.2,963.0,1.78,2.82,52,63,0.00 +2023-10-09T06:00,7.5,962.7,1.90,2.64,357,37,0.00 +2023-10-09T07:00,7.4,962.8,1.70,3.58,360,23,0.00 +2023-10-09T08:00,6.1,962.8,1.61,3.58,7,30,0.00 +2023-10-09T09:00,4.7,962.5,2.00,3.26,360,27,0.00 +2023-10-09T10:00,4.2,962.6,2.02,3.35,351,17,0.00 +2023-10-09T11:00,4.0,963.0,1.94,3.47,348,12,0.00 +2023-10-09T12:00,3.7,963.4,1.92,4.57,351,10,0.00 +2023-10-09T13:00,3.5,963.7,2.06,4.61,337,356,0.00 +2023-10-09T14:00,5.8,964.2,2.51,4.87,337,351,0.00 +2023-10-09T15:00,7.8,964.7,2.89,3.86,346,350,0.00 +2023-10-09T16:00,9.5,964.5,3.64,4.66,344,345,0.00 +2023-10-09T17:00,10.7,964.1,4.30,5.47,342,342,0.00 +2023-10-09T18:00,12.1,963.5,5.31,6.80,340,340,0.00 +2023-10-09T19:00,12.4,962.8,5.28,6.81,331,330,0.00 +2023-10-09T20:00,12.7,962.3,5.30,6.88,324,324,0.00 +2023-10-09T21:00,12.9,961.8,5.24,6.82,325,325,0.00 +2023-10-09T22:00,12.5,961.5,5.52,7.27,328,328,0.00 +2023-10-09T23:00,11.5,961.2,4.43,6.44,332,332,0.00 +2023-10-10T00:00,9.4,960.9,3.14,6.45,338,341,0.00 +2023-10-10T01:00,8.1,960.7,2.19,5.54,336,343,0.00 +2023-10-10T02:00,7.1,960.5,2.06,5.50,331,341,0.00 +2023-10-10T03:00,6.4,960.6,2.12,5.42,341,355,0.00 +2023-10-10T04:00,5.6,960.4,1.89,5.08,328,350,0.00 +2023-10-10T05:00,5.1,960.2,1.98,4.94,315,339,0.00 +2023-10-10T06:00,4.7,959.9,1.86,4.65,306,335,0.00 +2023-10-10T07:00,4.1,959.9,1.97,4.50,294,323,0.00 +2023-10-10T08:00,3.7,959.7,2.15,5.02,292,314,0.00 +2023-10-10T09:00,3.4,959.5,2.25,5.38,291,312,0.00 +2023-10-10T10:00,3.0,959.8,2.21,5.17,288,311,0.00 +2023-10-10T11:00,2.7,959.6,2.21,5.33,288,310,0.00 +2023-10-10T12:00,2.0,959.9,2.25,5.46,291,311,0.00 +2023-10-10T13:00,1.8,960.0,2.24,5.45,297,316,0.00 +2023-10-10T14:00,4.8,960.8,2.78,5.19,308,320,0.00 +2023-10-10T15:00,7.3,961.2,2.62,3.70,320,322,0.00 +2023-10-10T16:00,9.1,961.0,3.14,4.08,329,329,0.00 +2023-10-10T17:00,10.2,960.7,2.84,3.62,321,321,0.00 +2023-10-10T18:00,11.2,960.1,2.69,3.41,312,310,0.00 +2023-10-10T19:00,12.1,959.5,2.76,3.41,314,310,0.00 +2023-10-10T20:00,12.7,958.7,2.69,3.32,315,314,0.00 +2023-10-10T21:00,12.9,958.3,2.20,2.77,321,319,0.00 +2023-10-10T22:00,12.6,957.9,1.72,2.20,324,321,0.00 +2023-10-10T23:00,11.2,957.6,1.00,1.96,354,345,0.00 +2023-10-11T00:00,8.6,957.1,2.42,2.60,7,2,0.00 +2023-10-11T01:00,7.5,957.1,2.73,2.85,28,18,0.00 +2023-10-11T02:00,6.4,957.0,3.05,3.38,41,34,0.00 +2023-10-11T03:00,5.6,957.0,3.19,3.91,49,40,0.00 +2023-10-11T04:00,4.9,957.0,3.28,4.06,59,52,0.00 +2023-10-11T05:00,4.4,956.8,3.18,3.94,77,66,0.00 +2023-10-11T06:00,4.0,956.5,3.11,3.72,94,84,0.00 +2023-10-11T07:00,4.2,956.2,2.63,4.30,99,91,0.00 +2023-10-11T08:00,4.6,956.0,2.01,4.88,117,105,0.00 +2023-10-11T09:00,4.7,955.6,2.25,5.46,122,114,0.00 +2023-10-11T10:00,4.8,955.4,2.47,5.95,122,119,0.00 +2023-10-11T11:00,4.9,955.5,2.64,6.40,115,117,0.00 +2023-10-11T12:00,4.8,955.9,2.91,6.93,106,108,0.00 +2023-10-11T13:00,5.1,956.3,3.30,7.34,104,107,0.00 +2023-10-11T14:00,7.4,956.7,4.21,7.96,94,105,0.00 +2023-10-11T15:00,9.9,957.3,3.52,5.95,105,110,0.00 +2023-10-11T16:00,12.3,957.1,4.49,6.01,107,108,0.00 +2023-10-11T17:00,14.1,956.9,5.03,6.59,111,112,0.00 +2023-10-11T18:00,15.7,956.3,5.10,6.60,101,104,0.00 +2023-10-11T19:00,16.6,955.4,5.42,6.95,95,97,0.00 +2023-10-11T20:00,16.9,954.6,5.70,7.41,91,92,0.00 +2023-10-11T21:00,16.8,954.5,5.80,7.71,92,93,0.00 +2023-10-11T22:00,16.3,954.4,5.80,8.02,91,94,0.00 +2023-10-11T23:00,15.1,954.5,5.12,8.21,84,88,0.00 +2023-10-12T00:00,13.4,954.3,4.78,8.81,74,78,0.00 +2023-10-12T01:00,12.5,954.9,5.32,9.63,78,80,0.00 +2023-10-12T02:00,11.9,955.4,5.54,10.03,83,85,0.00 +2023-10-12T03:00,11.0,955.2,5.65,10.11,77,81,0.00 +2023-10-12T04:00,10.2,955.7,5.10,9.50,88,89,0.00 +2023-10-12T05:00,9.8,956.2,5.20,9.56,92,97,0.00 +2023-10-12T06:00,9.9,955.9,5.30,9.43,88,94,0.00 +2023-10-12T07:00,9.4,955.3,5.32,9.56,78,83,0.00 +2023-10-12T08:00,8.9,955.4,5.32,9.36,78,83,0.00 +2023-10-12T09:00,8.9,956.1,5.20,9.04,92,95,0.00 +2023-10-12T10:00,9.0,955.9,5.93,9.90,84,90,0.00 +2023-10-12T11:00,8.7,956.1,6.23,10.11,84,87,0.00 +2023-10-12T12:00,8.6,956.2,6.22,9.98,79,83,0.00 +2023-10-12T13:00,8.4,957.4,5.80,9.24,75,80,0.10 +2023-10-12T14:00,8.2,957.7,6.63,10.71,79,82,1.20 +2023-10-12T15:00,8.3,957.5,7.43,11.71,79,82,3.40 +2023-10-12T16:00,8.3,957.3,8.23,12.82,85,87,4.50 +2023-10-12T17:00,8.3,957.0,8.70,13.40,89,91,2.40 +2023-10-12T18:00,9.3,957.1,10.30,14.50,88,89,0.30 +2023-10-12T19:00,8.5,956.7,7.00,9.90,68,70,0.80 +2023-10-12T20:00,8.6,957.0,7.21,10.59,71,72,3.40 +2023-10-12T21:00,8.6,956.3,9.61,14.65,71,73,4.10 +2023-10-12T22:00,8.6,955.9,9.62,14.73,73,75,1.80 +2023-10-12T23:00,8.6,956.1,9.71,14.89,73,75,2.30 +2023-10-13T00:00,8.1,956.7,10.32,15.85,78,80,4.30 +2023-10-13T01:00,8.1,956.7,10.10,15.63,79,80,1.50 +2023-10-13T02:00,8.1,956.2,10.58,16.22,77,79,1.70 +2023-10-13T03:00,8.1,956.2,10.10,15.54,79,80,2.30 +2023-10-13T04:00,8.1,956.2,9.61,14.75,78,79,1.00 +2023-10-13T05:00,7.9,955.7,9.49,14.50,78,80,2.10 +2023-10-13T06:00,7.8,955.5,8.63,13.26,77,79,2.60 +2023-10-13T07:00,7.7,954.6,8.42,12.88,74,76,3.90 +2023-10-13T08:00,7.8,953.9,7.78,11.91,72,75,6.30 +2023-10-13T09:00,7.9,953.1,8.32,12.83,64,68,5.80 +2023-10-13T10:00,8.2,953.0,7.56,11.77,70,74,3.10 +2023-10-13T11:00,8.8,953.0,7.34,11.40,70,75,1.60 +2023-10-13T12:00,6.9,953.2,6.79,12.40,46,58,0.80 +2023-10-13T13:00,8.1,953.4,6.28,11.90,53,62,0.20 +2023-10-13T14:00,8.7,953.6,7.00,12.15,53,57,0.90 +2023-10-13T15:00,8.9,953.8,6.93,10.69,44,48,1.70 +2023-10-13T16:00,9.2,954.1,7.47,11.32,51,54,1.00 +2023-10-13T17:00,9.5,954.5,9.32,13.53,57,60,0.50 +2023-10-13T18:00,9.7,954.8,8.46,12.65,55,57,0.40 +2023-10-13T19:00,9.6,955.0,8.78,12.54,53,54,0.10 +2023-10-13T20:00,10.0,955.4,8.42,12.41,47,49,0.10 +2023-10-13T21:00,10.0,956.2,7.85,11.67,44,47,0.10 +2023-10-13T22:00,9.3,957.1,7.21,10.90,45,47,0.10 +2023-10-13T23:00,8.9,958.3,6.02,8.90,36,38,0.00 +2023-10-14T00:00,8.1,959.3,7.03,11.03,40,44,0.10 +2023-10-14T01:00,7.8,960.3,6.97,10.69,39,42,0.20 +2023-10-14T02:00,7.7,961.6,6.62,10.19,38,43,0.20 +2023-10-14T03:00,7.5,962.6,6.26,9.68,29,33,0.50 +2023-10-14T04:00,7.2,963.6,6.63,10.24,23,27,0.60 +2023-10-14T05:00,6.9,964.3,6.89,10.57,26,29,0.40 +2023-10-14T06:00,6.9,964.8,6.83,10.57,32,35,0.10 +2023-10-14T07:00,6.9,965.7,6.13,9.71,28,32,0.20 +2023-10-14T08:00,6.9,966.3,5.95,9.39,25,28,0.20 +2023-10-14T09:00,7.0,966.8,6.09,9.57,23,26,0.40 +2023-10-14T10:00,7.2,967.4,5.91,9.28,19,22,0.10 +2023-10-14T11:00,7.4,967.9,5.79,9.15,18,22,0.20 +2023-10-14T12:00,7.2,968.5,6.04,9.36,16,20,0.20 +2023-10-14T13:00,7.1,969.4,5.82,8.97,12,14,0.00 +2023-10-14T14:00,7.1,970.1,6.24,9.22,12,15,0.00 +2023-10-14T15:00,7.7,970.8,6.52,9.02,21,21,0.00 +2023-10-14T16:00,9.1,971.4,6.57,8.72,26,27,0.00 +2023-10-14T17:00,9.9,971.6,5.96,7.84,23,23,0.10 +2023-10-14T18:00,10.7,971.5,5.66,7.56,21,20,0.00 +2023-10-14T19:00,11.3,971.4,5.82,7.84,19,19,0.10 +2023-10-14T20:00,11.6,971.6,5.98,8.04,21,21,0.00 +2023-10-14T21:00,11.2,971.9,5.85,8.01,20,20,0.00 +2023-10-14T22:00,11.0,972.0,5.44,7.53,17,17,0.00 +2023-10-14T23:00,10.6,972.1,4.37,6.65,11,12,0.00 +2023-10-15T00:00,8.6,973.3,3.91,6.34,4,6,0.00 +2023-10-15T01:00,8.5,973.6,3.75,6.03,351,354,0.00 +2023-10-15T02:00,8.2,973.8,3.71,6.00,346,349,0.00 +2023-10-15T03:00,8.0,973.9,3.40,5.87,346,351,0.00 +2023-10-15T04:00,7.9,973.8,3.05,5.25,337,342,0.00 +2023-10-15T05:00,7.7,973.9,3.67,6.23,349,354,0.00 +2023-10-15T06:00,7.1,974.0,3.28,5.84,348,353,0.10 +2023-10-15T07:00,7.4,974.1,3.42,5.77,339,346,0.00 +2023-10-15T08:00,7.4,974.4,3.64,6.04,344,348,0.00 +2023-10-15T09:00,6.7,974.2,3.14,5.75,338,347,0.00 +2023-10-15T10:00,6.0,974.3,2.95,5.85,336,343,0.00 +2023-10-15T11:00,6.3,974.3,3.18,5.78,332,337,0.00 +2023-10-15T12:00,6.3,974.7,3.65,6.14,351,353,0.00 +2023-10-15T13:00,6.4,974.8,3.62,5.57,336,339,0.00 +2023-10-15T14:00,6.8,975.1,4.07,5.74,335,337,0.00 +2023-10-15T15:00,8.0,975.4,5.94,8.00,347,347,0.00 +2023-10-15T16:00,8.9,975.5,6.40,8.56,346,346,0.00 +2023-10-15T17:00,9.6,975.4,6.99,9.14,347,347,0.00 +2023-10-15T18:00,9.8,974.9,6.49,8.61,350,351,0.00 +2023-10-15T19:00,10.6,974.0,5.48,7.23,345,346,0.00 +2023-10-15T20:00,11.6,973.4,5.26,6.91,346,346,0.00 +2023-10-15T21:00,11.7,973.0,5.38,7.18,342,341,0.00 +2023-10-15T22:00,11.6,972.9,5.64,7.79,330,331,0.00 +2023-10-15T23:00,11.0,972.7,5.24,8.57,325,326,0.00 +2023-10-16T00:00,9.8,972.6,5.38,9.46,325,327,0.00 +2023-10-16T01:00,9.1,973.0,5.52,9.79,325,326,0.00 +2023-10-16T02:00,8.5,973.0,5.66,9.90,324,327,0.00 +2023-10-16T03:00,8.2,972.8,5.74,10.15,325,328,0.00 +2023-10-16T04:00,7.8,972.7,5.41,9.78,326,329,0.00 +2023-10-16T05:00,7.3,972.4,4.77,9.04,327,331,0.00 +2023-10-16T06:00,6.7,972.1,4.22,8.51,324,330,0.00 +2023-10-16T07:00,6.2,972.1,4.26,8.41,321,328,0.00 +2023-10-16T08:00,5.9,972.4,4.53,8.80,319,324,0.00 +2023-10-16T09:00,5.6,972.4,4.33,8.49,320,326,0.00 +2023-10-16T10:00,5.2,972.3,3.72,7.70,324,330,0.00 +2023-10-16T11:00,4.8,972.2,3.76,7.63,320,328,0.00 +2023-10-16T12:00,4.3,971.9,3.48,7.08,321,329,0.00 +2023-10-16T13:00,4.0,972.3,3.82,7.61,313,321,0.00 +2023-10-16T14:00,5.8,972.5,3.68,7.24,317,325,0.00 +2023-10-16T15:00,7.8,972.5,3.22,4.74,324,325,0.00 +2023-10-16T16:00,9.9,972.3,2.97,4.00,327,328,0.00 +2023-10-16T17:00,11.8,971.9,3.12,4.05,320,320,0.00 +2023-10-16T18:00,13.2,971.2,3.68,4.74,317,318,0.00 +2023-10-16T19:00,14.2,970.2,3.89,4.88,318,317,0.00 +2023-10-16T20:00,14.7,969.4,3.82,4.95,317,317,0.00 +2023-10-16T21:00,14.8,968.9,3.61,4.74,314,314,0.00 +2023-10-16T22:00,14.4,968.4,3.11,4.31,318,316,0.00 +2023-10-16T23:00,12.2,967.7,1.63,4.18,317,318,0.00 +2023-10-17T00:00,9.7,966.8,2.95,3.72,332,336,0.00 +2023-10-17T01:00,10.7,966.7,2.39,3.26,327,342,0.00 +2023-10-17T02:00,11.1,966.6,1.30,2.01,274,333,0.00 +2023-10-17T03:00,7.5,965.9,1.71,1.77,249,286,0.00 +2023-10-17T04:00,6.7,965.5,1.58,2.51,235,265,0.00 +2023-10-17T05:00,6.0,965.0,1.75,3.40,239,270,0.00 +2023-10-17T06:00,5.9,964.6,1.94,3.81,235,273,0.00 +2023-10-17T07:00,5.7,964.4,2.00,3.90,233,269,0.00 +2023-10-17T08:00,5.4,964.2,2.14,4.12,233,264,0.00 +2023-10-17T09:00,5.2,963.6,2.33,4.27,223,254,0.00 +2023-10-17T10:00,5.0,963.3,2.44,4.53,215,239,0.00 +2023-10-17T11:00,4.8,963.4,2.58,5.28,216,233,0.00 +2023-10-17T12:00,4.6,963.3,2.82,5.95,207,222,0.00 +2023-10-17T13:00,4.6,963.1,3.14,6.44,202,216,0.00 +2023-10-17T14:00,7.1,963.3,3.79,6.62,198,209,0.00 +2023-10-17T15:00,9.9,963.6,3.20,6.93,194,207,0.00 +2023-10-17T16:00,12.6,963.6,3.42,5.09,195,200,0.00 +2023-10-17T17:00,14.8,963.0,3.81,5.07,194,195,0.00 +2023-10-17T18:00,16.5,962.0,4.34,5.63,195,197,0.00 +2023-10-17T19:00,17.4,961.0,4.49,5.85,197,197,0.00 +2023-10-17T20:00,18.0,959.9,4.44,5.82,194,196,0.00 +2023-10-17T21:00,18.2,959.6,4.39,5.87,192,194,0.00 +2023-10-17T22:00,17.7,959.1,4.01,6.04,184,187,0.00 +2023-10-17T23:00,15.7,958.4,3.55,7.01,170,178,0.00 +2023-10-18T00:00,14.4,957.4,4.02,8.47,161,168,0.00 +2023-10-18T01:00,14.7,956.9,4.84,9.51,162,168,0.00 +2023-10-18T02:00,14.4,956.6,5.43,10.20,167,172,0.00 +2023-10-18T03:00,14.3,956.1,5.89,10.67,170,174,0.00 +2023-10-18T04:00,14.2,955.4,6.24,11.00,168,172,0.00 +2023-10-18T05:00,13.8,954.8,6.77,11.75,172,175,0.00 +2023-10-18T06:00,13.3,953.8,7.22,12.31,175,178,0.00 +2023-10-18T07:00,13.1,953.6,6.61,11.34,183,185,0.00 +2023-10-18T08:00,12.8,952.3,7.30,12.33,181,184,0.00 +2023-10-18T09:00,12.8,952.0,6.45,10.99,193,195,0.00 +2023-10-18T10:00,12.2,951.8,5.52,9.84,202,205,0.00 +2023-10-18T11:00,11.4,951.3,4.21,8.16,208,216,0.00 +2023-10-18T12:00,12.0,951.3,4.94,9.20,277,289,0.30 +2023-10-18T13:00,11.9,952.2,6.39,10.70,290,294,0.80 +2023-10-18T14:00,11.9,952.8,5.76,9.27,287,290,0.00 +2023-10-18T15:00,12.9,953.2,5.83,8.46,276,277,0.00 +2023-10-18T16:00,13.9,953.3,6.62,9.13,274,274,0.00 +2023-10-18T17:00,14.7,953.3,7.33,9.87,281,281,0.00 +2023-10-18T18:00,15.3,953.1,6.69,9.07,284,284,0.00 +2023-10-18T19:00,15.3,952.9,5.95,7.94,290,289,0.00 +2023-10-18T20:00,14.7,953.2,4.92,6.40,297,297,0.00 +2023-10-18T21:00,14.9,953.3,4.88,6.44,313,312,0.00 +2023-10-18T22:00,14.3,953.9,5.59,7.85,313,313,0.00 +2023-10-18T23:00,12.9,954.4,4.11,6.65,311,313,0.00 +2023-10-19T00:00,11.4,955.4,2.70,4.46,309,312,0.00 +2023-10-19T01:00,11.4,955.9,3.50,5.33,323,326,0.00 +2023-10-19T02:00,10.9,956.5,4.19,6.36,320,323,0.00 +2023-10-19T03:00,10.7,957.1,4.95,7.52,317,319,0.00 +2023-10-19T04:00,10.7,957.4,5.60,8.85,325,328,0.00 +2023-10-19T05:00,10.7,957.4,4.83,7.73,336,339,0.00 +2023-10-19T06:00,9.0,957.6,4.38,7.88,325,331,0.00 +2023-10-19T07:00,8.3,958.0,4.67,8.40,317,322,0.00 +2023-10-19T08:00,8.0,958.2,4.53,8.50,319,323,0.00 +2023-10-19T09:00,7.8,958.2,4.11,7.94,319,324,0.00 +2023-10-19T10:00,8.0,958.2,4.31,8.18,316,321,0.00 +2023-10-19T11:00,8.4,958.1,3.89,7.58,314,319,0.00 +2023-10-19T12:00,9.5,957.9,3.92,7.22,308,312,0.00 +2023-10-19T13:00,10.6,957.8,3.64,6.31,307,311,0.00 +2023-10-19T14:00,11.5,958.0,4.19,6.22,303,307,0.00 +2023-10-19T15:00,12.5,958.3,5.56,7.68,308,309,0.00 +2023-10-19T16:00,13.4,958.5,5.59,7.57,313,313,0.00 +2023-10-19T17:00,15.4,958.1,5.88,7.72,312,311,0.00 +2023-10-19T18:00,16.2,957.4,6.16,8.07,313,313,0.00 +2023-10-19T19:00,16.6,956.9,5.87,7.86,317,318,0.10 +2023-10-19T20:00,16.8,956.8,6.06,8.20,322,322,0.00 +2023-10-19T21:00,16.6,956.8,5.71,7.96,327,327,0.00 +2023-10-19T22:00,16.3,957.1,5.61,8.13,329,328,0.00 +2023-10-19T23:00,15.2,957.1,3.98,7.07,335,335,0.00 +2023-10-20T00:00,12.5,957.1,2.14,5.54,349,353,0.00 +2023-10-20T01:00,11.6,957.0,2.12,5.35,341,352,0.00 +2023-10-20T02:00,11.2,957.3,2.13,5.41,319,341,0.00 +2023-10-20T03:00,10.8,957.5,2.30,5.39,304,329,0.00 +2023-10-20T04:00,10.0,957.3,2.38,5.46,292,319,0.00 +2023-10-20T05:00,9.6,957.3,2.51,5.80,293,316,0.00 +2023-10-20T06:00,9.2,957.1,2.28,5.52,293,318,0.00 +2023-10-20T07:00,8.8,957.0,2.26,5.11,283,310,0.00 +2023-10-20T08:00,8.5,956.8,2.20,4.84,267,300,0.00 +2023-10-20T09:00,8.4,956.8,2.53,5.28,261,289,0.00 +2023-10-20T10:00,8.3,957.1,2.93,6.33,262,286,0.00 +2023-10-20T11:00,8.3,957.6,3.04,7.02,279,298,0.00 +2023-10-20T12:00,8.0,957.3,2.70,6.04,268,294,0.00 +2023-10-20T13:00,7.9,957.3,2.80,6.32,268,293,0.00 +2023-10-20T14:00,10.3,957.8,3.45,5.70,260,285,0.00 +2023-10-20T15:00,13.1,958.4,3.35,5.81,243,274,0.00 +2023-10-20T16:00,16.0,958.9,2.60,4.64,247,263,0.00 +2023-10-20T17:00,18.4,958.8,2.64,3.32,245,249,0.00 +2023-10-20T18:00,19.7,958.4,2.80,3.52,235,235,0.00 +2023-10-20T19:00,20.3,957.8,3.47,4.46,221,222,0.00 +2023-10-20T20:00,20.5,956.6,4.19,5.55,213,214,0.00 +2023-10-20T21:00,20.3,956.1,4.38,5.95,207,207,0.00 +2023-10-20T22:00,19.4,955.6,3.79,6.33,198,201,0.00 +2023-10-20T23:00,17.1,954.7,3.61,7.35,199,202,0.00 +2023-10-21T00:00,15.7,954.2,3.06,7.09,191,202,0.00 +2023-10-21T01:00,15.5,954.0,4.03,8.36,194,201,0.00 +2023-10-21T02:00,14.8,954.0,4.53,8.96,229,241,0.00 +2023-10-21T03:00,15.3,954.4,5.17,10.25,285,295,0.00 +2023-10-21T04:00,16.0,954.7,5.96,10.87,305,309,0.00 +2023-10-21T05:00,15.7,954.8,6.37,11.38,312,315,0.00 +2023-10-21T06:00,15.1,955.0,6.51,11.46,314,316,0.00 +2023-10-21T07:00,14.3,955.5,7.00,11.99,317,319,0.00 +2023-10-21T08:00,13.3,955.8,7.01,12.00,318,320,0.00 +2023-10-21T09:00,12.5,956.5,7.25,12.26,321,322,0.00 +2023-10-21T10:00,11.7,957.3,7.06,11.94,322,324,0.00 +2023-10-21T11:00,11.0,957.8,6.50,11.13,323,325,0.00 +2023-10-21T12:00,9.8,958.7,6.42,11.13,323,325,0.00 +2023-10-21T13:00,9.4,959.3,6.24,10.82,319,322,0.00 +2023-10-21T14:00,10.2,960.2,6.44,10.36,317,320,0.00 +2023-10-21T15:00,11.5,961.1,6.65,9.71,317,319,0.00 +2023-10-21T16:00,12.7,961.6,7.44,10.24,324,324,0.00 +2023-10-21T17:00,13.9,961.6,7.41,10.05,328,329,0.00 +2023-10-21T18:00,14.8,961.7,7.94,10.86,329,329,0.00 +2023-10-21T19:00,15.1,961.7,8.06,10.84,330,330,0.00 +2023-10-21T20:00,15.6,961.7,8.85,12.12,333,333,0.00 +2023-10-21T21:00,15.1,962.3,7.74,10.78,335,335,0.00 +2023-10-21T22:00,14.7,962.7,6.96,9.94,339,339,0.00 +2023-10-21T23:00,13.3,962.8,4.84,8.07,342,343,0.00 +2023-10-22T00:00,10.6,964.1,3.10,6.70,358,360,0.00 +2023-10-22T01:00,9.6,964.6,2.70,6.24,360,6,0.00 +2023-10-22T02:00,8.7,965.0,2.32,5.90,353,1,0.00 +2023-10-22T03:00,8.1,965.3,2.45,6.01,348,356,0.00 +2023-10-22T04:00,7.1,965.4,1.94,5.30,348,359,0.00 +2023-10-22T05:00,6.0,965.1,2.33,4.73,350,6,0.00 +2023-10-22T06:00,5.2,965.5,2.48,3.51,313,355,0.00 +2023-10-22T07:00,5.1,965.6,1.87,2.68,286,333,0.00 +2023-10-22T08:00,4.7,965.6,1.82,2.24,279,333,0.00 +2023-10-22T09:00,4.5,965.7,1.51,1.63,262,313,0.00 +2023-10-22T10:00,4.1,965.8,1.49,1.24,250,284,0.00 +2023-10-22T11:00,3.6,965.6,1.49,0.94,228,238,0.00 +2023-10-22T12:00,3.3,966.1,1.22,1.33,215,167,0.00 +2023-10-22T13:00,3.5,966.0,1.50,1.98,176,135,0.00 +2023-10-22T14:00,6.7,966.8,2.37,3.47,152,139,0.00 +2023-10-22T15:00,9.7,967.1,2.34,4.20,140,142,0.00 +2023-10-22T16:00,11.5,967.3,3.61,4.73,166,167,0.00 +2023-10-22T17:00,12.9,966.8,4.32,5.62,175,175,0.00 +2023-10-22T18:00,13.6,966.3,4.40,5.70,179,179,0.00 +2023-10-22T19:00,14.1,965.5,4.10,5.30,180,180,0.00 +2023-10-22T20:00,14.7,964.6,3.85,4.95,171,172,0.00 +2023-10-22T21:00,14.6,963.9,4.05,5.29,164,165,0.00 +2023-10-22T22:00,14.1,963.4,4.44,6.26,166,167,0.00 +2023-10-22T23:00,13.0,962.7,3.71,6.63,153,157,0.00 +2023-10-23T00:00,12.9,962.6,3.74,7.48,146,150,0.00 +2023-10-23T01:00,12.9,961.9,5.34,9.35,142,145,0.00 +2023-10-23T02:00,12.7,961.6,6.11,10.44,148,150,0.00 +2023-10-23T03:00,12.1,961.5,5.74,9.69,157,158,0.00 +2023-10-23T04:00,11.2,962.4,6.00,9.90,180,180,0.00 +2023-10-23T05:00,10.6,961.9,5.58,9.73,165,168,0.80 +2023-10-23T06:00,10.4,961.2,6.10,10.29,162,164,1.80 +2023-10-23T07:00,10.3,960.7,6.67,11.16,156,157,0.00 +2023-10-23T08:00,10.1,960.4,6.13,10.36,156,158,0.00 +2023-10-23T09:00,10.0,959.8,5.64,9.53,150,153,0.00 +2023-10-23T10:00,9.4,959.2,5.59,9.71,151,155,0.00 +2023-10-23T11:00,9.1,959.0,5.42,9.56,157,159,0.00 +2023-10-23T12:00,9.0,958.3,4.88,8.96,154,156,0.00 +2023-10-23T13:00,8.8,957.9,4.30,8.28,168,168,0.00 +2023-10-23T14:00,9.9,958.2,3.36,6.99,157,167,0.00 +2023-10-23T15:00,11.5,958.5,3.00,4.22,154,158,0.00 +2023-10-23T16:00,13.3,958.5,3.04,3.93,163,165,0.00 +2023-10-23T17:00,15.0,957.7,2.75,3.54,170,172,0.00 +2023-10-23T18:00,16.5,957.1,2.31,2.92,185,186,0.00 +2023-10-23T19:00,17.6,956.9,2.02,2.63,189,189,0.00 +2023-10-23T20:00,18.3,956.3,2.09,2.62,197,198,0.00 +2023-10-23T21:00,18.6,956.3,2.02,2.66,200,200,0.00 +2023-10-23T22:00,18.2,956.1,1.30,1.70,180,183,0.00 +2023-10-23T23:00,15.5,955.8,1.84,3.29,151,160,0.00 +2023-10-24T00:00,13.7,956.6,2.08,4.67,125,135,0.00 +2023-10-24T01:00,13.3,956.8,2.28,5.20,119,128,0.00 +2023-10-24T02:00,12.6,956.6,2.24,5.14,117,127,0.00 +2023-10-24T03:00,12.2,956.2,2.33,5.24,115,125,0.00 +2023-10-24T04:00,11.9,955.9,2.79,5.95,111,115,0.00 +2023-10-24T05:00,11.9,954.9,2.41,5.81,85,101,0.00 +2023-10-24T06:00,11.6,956.3,2.64,5.80,155,144,0.00 +2023-10-24T07:00,13.0,955.8,1.58,3.61,125,161,0.30 +2023-10-24T08:00,12.8,956.0,2.73,6.13,156,174,0.00 +2023-10-24T09:00,14.0,955.7,3.55,7.10,170,178,0.00 +2023-10-24T10:00,13.1,956.1,2.60,4.18,203,201,0.00 +2023-10-24T11:00,12.4,956.7,1.84,3.00,315,296,0.00 +2023-10-24T12:00,11.3,957.2,3.16,5.19,325,332,0.00 +2023-10-24T13:00,10.7,958.3,3.04,5.61,351,357,0.00 +2023-10-24T14:00,11.3,959.3,2.62,4.82,342,355,1.00 +2023-10-24T15:00,12.3,958.9,3.55,4.51,10,13,0.00 +2023-10-24T16:00,14.3,959.5,2.77,3.49,13,13,0.00 +2023-10-24T17:00,14.9,959.2,1.68,2.06,73,76,0.20 +2023-10-24T18:00,15.5,958.9,1.42,1.70,39,45,0.20 +2023-10-24T19:00,16.0,958.8,3.00,3.70,358,360,0.70 +2023-10-24T20:00,14.7,957.9,3.45,4.61,10,13,5.20 +2023-10-24T21:00,14.0,958.5,4.26,6.46,351,352,2.90 +2023-10-24T22:00,14.0,958.4,3.96,6.10,16,18,2.80 +2023-10-24T23:00,13.8,958.7,3.04,5.25,17,18,0.00 +2023-10-25T00:00,13.9,959.8,3.11,5.59,42,44,0.40 +2023-10-25T01:00,12.4,960.7,3.58,5.91,23,28,1.50 +2023-10-25T02:00,12.1,960.6,3.67,6.02,26,32,1.70 +2023-10-25T03:00,11.6,961.7,3.50,5.97,2,9,4.70 +2023-10-25T04:00,11.6,962.2,3.41,5.70,355,1,0.20 +2023-10-25T05:00,11.4,962.1,3.65,5.91,351,357,0.10 +2023-10-25T06:00,10.8,962.6,4.07,6.96,335,342,0.00 +2023-10-25T07:00,10.7,963.2,4.65,7.58,335,337,0.00 +2023-10-25T08:00,10.6,963.4,4.14,6.66,352,352,0.00 +2023-10-25T09:00,10.5,962.8,2.79,4.49,15,17,0.00 +2023-10-25T10:00,9.7,963.4,2.73,4.90,336,348,0.00 +2023-10-25T11:00,9.7,964.2,3.99,6.64,338,342,0.00 +2023-10-25T12:00,9.7,964.7,3.36,5.35,337,343,0.00 +2023-10-25T13:00,8.9,964.8,2.90,5.15,358,8,0.00 +2023-10-25T14:00,9.2,965.7,3.34,4.63,9,14,0.00 +2023-10-25T15:00,10.2,965.6,3.41,4.39,40,41,0.00 +2023-10-25T16:00,11.2,965.6,2.15,2.66,68,70,0.00 +2023-10-25T17:00,12.1,965.3,1.73,2.11,80,85,0.00 +2023-10-25T18:00,13.2,964.8,1.79,2.06,63,67,0.00 +2023-10-25T19:00,13.9,964.3,2.18,2.55,74,79,0.00 +2023-10-25T20:00,14.3,963.6,2.86,3.64,102,106,0.00 +2023-10-25T21:00,14.3,963.5,3.30,4.36,125,127,0.00 +2023-10-25T22:00,14.2,963.1,2.95,4.08,118,121,0.00 +2023-10-25T23:00,13.8,963.0,2.68,4.39,117,120,0.00 +2023-10-26T00:00,13.6,962.5,3.10,5.32,111,116,0.00 +2023-10-26T01:00,11.8,962.4,3.52,6.17,105,110,0.00 +2023-10-26T02:00,12.1,961.9,3.94,6.86,117,121,0.00 +2023-10-26T03:00,12.5,961.6,4.11,7.22,131,133,0.00 +2023-10-26T04:00,12.8,961.1,4.32,7.57,132,137,1.70 +2023-10-26T05:00,13.0,960.6,2.76,5.82,136,145,2.30 +2023-10-26T06:00,13.5,959.5,3.98,7.47,162,168,0.20 +2023-10-26T07:00,14.1,958.8,3.83,7.51,173,177,1.20 +2023-10-26T08:00,14.3,958.4,2.73,6.00,188,191,1.10 +2023-10-26T09:00,14.3,958.3,2.24,5.11,207,203,0.50 +2023-10-26T10:00,14.1,958.0,1.17,3.48,239,219,0.80 +2023-10-26T11:00,13.7,958.1,1.70,2.75,320,303,0.50 +2023-10-26T12:00,13.4,958.2,1.90,3.18,342,336,0.30 +2023-10-26T13:00,12.6,958.2,1.70,3.80,3,2,0.00 +2023-10-26T14:00,13.3,958.3,2.62,4.37,7,11,0.00 +2023-10-26T15:00,13.9,958.5,2.60,3.41,2,5,0.00 +2023-10-26T16:00,14.9,958.6,2.61,3.22,4,7,0.00 +2023-10-26T17:00,15.2,957.9,2.64,3.36,29,30,0.10 +2023-10-26T18:00,16.7,957.6,1.79,2.15,27,28,0.10 +2023-10-26T19:00,16.6,957.3,1.61,1.96,7,15,0.40 +2023-10-26T20:00,16.4,957.4,2.47,3.04,346,351,0.10 +2023-10-26T21:00,15.1,957.7,4.62,6.20,321,322,0.10 +2023-10-26T22:00,13.1,957.9,5.02,7.32,325,325,0.40 +2023-10-26T23:00,12.0,958.4,5.10,7.63,325,326,0.20 +2023-10-27T00:00,10.2,959.0,5.47,8.11,329,330,0.00 +2023-10-27T01:00,9.8,959.6,4.79,7.02,331,332,0.00 +2023-10-27T02:00,9.2,959.6,3.81,5.46,330,334,0.00 +2023-10-27T03:00,8.6,960.2,3.06,4.22,322,324,0.00 +2023-10-27T04:00,8.3,960.5,4.04,5.66,312,314,0.00 +2023-10-27T05:00,7.7,960.6,4.50,6.48,307,308,0.20 +2023-10-27T06:00,7.3,961.1,5.35,7.73,291,291,0.50 +2023-10-27T07:00,7.0,961.6,5.64,8.34,300,300,0.80 +2023-10-27T08:00,6.4,962.3,6.93,9.98,297,298,0.10 +2023-10-27T09:00,4.5,963.3,7.87,11.68,297,298,0.00 +2023-10-27T10:00,3.6,964.4,8.32,11.98,303,303,0.00 +2023-10-27T11:00,2.6,965.6,8.68,12.54,305,306,0.00 +2023-10-27T12:00,1.9,966.5,8.68,12.53,308,309,0.00 +2023-10-27T13:00,0.7,967.1,8.46,12.07,309,310,0.00 +2023-10-27T14:00,0.1,968.1,8.24,11.74,306,306,0.00 +2023-10-27T15:00,0.5,969.1,8.38,11.66,306,306,0.00 +2023-10-27T16:00,0.9,969.9,8.29,11.32,304,304,0.00 +2023-10-27T17:00,1.7,970.4,8.38,11.24,306,306,0.00 +2023-10-27T18:00,2.1,970.4,8.12,10.82,308,308,0.00 +2023-10-27T19:00,3.0,970.5,7.95,10.72,310,310,0.00 +2023-10-27T20:00,3.3,970.8,7.52,10.07,311,311,0.00 +2023-10-27T21:00,2.7,971.1,6.93,9.27,314,314,0.00 +2023-10-27T22:00,2.0,971.3,6.08,8.34,315,315,0.00 +2023-10-27T23:00,0.8,971.6,5.16,7.64,316,316,0.00 +2023-10-28T00:00,-0.1,972.3,4.61,7.53,319,320,0.00 +2023-10-28T01:00,-2.4,974.2,5.45,7.64,313,313,0.00 +2023-10-28T02:00,-2.7,974.5,5.23,7.35,315,315,0.00 +2023-10-28T03:00,-3.2,974.8,5.16,7.36,316,316,0.00 +2023-10-28T04:00,-3.7,975.4,4.18,6.86,312,314,0.00 +2023-10-28T05:00,-4.0,975.4,3.89,6.65,312,316,0.00 +2023-10-28T06:00,-4.1,975.2,3.61,6.26,318,321,0.00 +2023-10-28T07:00,-4.2,975.3,3.58,6.16,324,328,0.00 +2023-10-28T08:00,-4.4,975.5,3.14,5.63,323,327,0.00 +2023-10-28T09:00,-4.6,976.1,2.64,5.02,307,317,0.00 +2023-10-28T10:00,-4.3,976.6,2.66,4.69,290,304,0.00 +2023-10-28T11:00,-4.1,976.4,4.12,5.98,321,322,0.00 +2023-10-28T12:00,-3.8,976.7,4.44,6.28,329,329,0.00 +2023-10-28T13:00,-4.5,977.0,3.57,4.93,342,342,0.00 +2023-10-28T14:00,-4.1,977.9,3.48,4.64,321,323,0.00 +2023-10-28T15:00,-3.4,978.3,3.48,4.48,321,321,0.00 +2023-10-28T16:00,-2.6,977.7,3.40,4.29,332,332,0.00 +2023-10-28T17:00,-1.7,977.4,3.32,4.22,339,338,0.00 +2023-10-28T18:00,-1.4,977.4,2.58,3.30,324,325,0.00 +2023-10-28T19:00,-1.5,976.5,2.62,3.26,320,320,0.20 +2023-10-28T20:00,-0.8,976.2,2.22,2.72,306,306,0.20 +2023-10-28T21:00,-0.8,975.6,2.14,2.64,307,307,0.20 +2023-10-28T22:00,-0.8,975.2,2.26,2.83,315,315,0.20 +2023-10-28T23:00,-1.1,974.8,2.77,3.61,319,318,0.20 +2023-10-29T00:00,-1.2,974.9,2.94,3.86,325,323,0.10 +2023-10-29T01:00,-2.2,976.0,2.44,3.23,341,338,0.00 +2023-10-29T02:00,-2.0,975.6,3.07,4.02,341,341,0.00 +2023-10-29T03:00,-2.0,975.7,3.32,4.49,339,339,0.00 +2023-10-29T04:00,-2.0,975.6,4.12,5.55,331,332,0.00 +2023-10-29T05:00,-2.6,975.5,3.72,5.42,329,330,0.00 +2023-10-29T06:00,-3.7,975.1,2.77,5.16,319,324,0.00 +2023-10-29T07:00,-4.0,975.4,2.69,5.10,312,318,0.00 +2023-10-29T08:00,-3.7,975.5,2.06,5.38,299,318,0.00 +2023-10-29T09:00,-3.6,975.5,2.42,4.60,300,312,0.00 +2023-10-29T10:00,-3.7,975.3,2.77,4.88,311,314,0.00 +2023-10-29T11:00,-3.7,975.3,2.64,4.46,307,312,0.00 +2023-10-29T12:00,-3.5,975.3,2.15,3.69,298,303,0.00 +2023-10-29T13:00,-4.2,974.9,1.66,3.33,303,311,0.00 +2023-10-29T14:00,-3.5,975.4,2.25,3.22,291,296,0.00 +2023-10-29T15:00,-2.2,975.7,2.38,3.05,292,293,0.00 +2023-10-29T16:00,-0.8,975.7,2.38,2.91,285,286,0.00 +2023-10-29T17:00,0.3,975.0,2.42,3.03,277,278,0.00 +2023-10-29T18:00,1.2,974.7,2.81,3.41,266,267,0.00 +2023-10-29T19:00,1.8,973.9,3.50,4.40,268,267,0.00 +2023-10-29T20:00,2.2,973.3,4.43,5.64,276,277,0.00 +2023-10-29T21:00,2.6,973.0,5.51,7.38,286,286,0.00 +2023-10-29T22:00,2.0,972.5,5.66,7.85,291,292,0.00 +2023-10-29T23:00,1.1,972.4,4.79,7.74,296,297,0.00 +2023-10-30T00:00,0.5,972.8,5.02,8.10,293,296,0.00 +2023-10-30T01:00,-1.0,973.9,5.38,8.30,318,319,0.00 +2023-10-30T02:00,-2.6,973.8,4.62,7.84,321,322,0.00 +2023-10-30T03:00,-3.5,974.0,4.74,8.23,318,320,0.00 +2023-10-30T04:00,-4.0,974.4,4.38,7.79,315,318,0.00 +2023-10-30T05:00,-3.6,974.6,3.76,6.44,310,313,0.00 +2023-10-30T06:00,-4.0,974.4,3.31,6.07,299,303,0.00 +2023-10-30T07:00,-3.6,974.2,3.76,6.22,295,298,0.00 +2023-10-30T08:00,-3.1,974.0,3.94,6.21,300,303,0.00 +2023-10-30T09:00,-3.0,973.8,4.30,6.49,301,304,0.00 +2023-10-30T10:00,-3.1,973.6,4.70,6.89,297,298,0.00 +2023-10-30T11:00,-4.2,973.4,4.43,6.78,288,292,0.00 +2023-10-30T12:00,-5.9,973.2,3.70,6.75,268,277,0.00 +2023-10-30T13:00,-6.3,972.8,3.90,7.02,247,259,0.00 +2023-10-30T14:00,-5.2,972.8,4.50,8.79,233,251,0.00 +2023-10-30T15:00,-3.5,972.8,5.40,7.80,231,234,0.00 +2023-10-30T16:00,-1.9,972.2,6.14,8.38,233,234,0.00 +2023-10-30T17:00,-0.3,971.2,6.66,9.04,234,235,0.00 +2023-10-30T18:00,1.0,970.4,7.08,9.54,234,235,0.00 +2023-10-30T19:00,1.9,968.9,7.45,10.03,230,231,0.00 +2023-10-30T20:00,2.5,967.5,7.94,10.93,229,230,0.00 +2023-10-30T21:00,2.6,966.4,8.16,11.57,229,230,0.00 +2023-10-30T22:00,2.2,965.6,7.57,11.40,227,228,0.00 +2023-10-30T23:00,1.6,964.6,7.58,11.96,221,223,0.00 +2023-10-31T00:00,0.7,963.7,7.36,12.15,217,219,0.00 +2023-10-31T01:00,2.0,963.3,7.58,12.15,234,235,0.00 +2023-10-31T02:00,1.7,964.2,8.80,13.26,291,293,0.20 +2023-10-31T03:00,-0.8,965.3,9.17,13.55,295,296,0.00 +2023-10-31T04:00,-2.7,965.9,8.59,13.19,296,298,0.00 +2023-10-31T05:00,-2.2,966.1,9.77,14.58,305,307,0.00 +2023-10-31T06:00,-2.7,966.8,10.72,15.80,310,311,0.10 +2023-10-31T07:00,-3.3,967.5,11.27,16.29,311,312,0.00 +2023-10-31T08:00,-3.8,968.8,11.53,16.48,313,314,0.00 +2023-10-31T09:00,-4.3,969.4,10.19,15.07,313,314,0.00 +2023-10-31T10:00,-4.4,970.2,9.98,14.65,317,317,0.00 +2023-10-31T11:00,-4.9,970.7,9.18,13.87,308,309,0.00 +2023-10-31T12:00,-4.9,971.9,11.13,15.84,325,326,0.00 +2023-10-31T13:00,-5.1,972.5,9.57,13.92,326,326,0.00 +2023-10-31T14:00,-4.3,973.7,8.32,12.34,321,323,0.00 +2023-10-31T15:00,-3.7,974.8,10.42,14.58,332,332,0.00 +2023-10-31T16:00,-2.9,975.8,9.49,12.98,331,331,0.00 +2023-10-31T17:00,-2.2,976.4,8.34,11.25,330,330,0.00 +2023-10-31T18:00,-1.5,976.7,7.74,10.43,327,328,0.00 +2023-10-31T19:00,-0.7,976.8,7.16,9.54,327,327,0.00 +2023-10-31T20:00,-0.6,976.5,6.30,8.32,327,327,0.00 +2023-10-31T21:00,-0.5,976.5,5.38,7.18,325,325,0.00 +2023-10-31T22:00,-1.0,976.5,4.46,6.02,318,318,0.00 +2023-10-31T23:00,-2.7,976.1,2.69,5.48,301,308,0.00 +2023-11-01T00:00,-4.3,975.8,1.89,4.67,302,315,0.00 +2023-11-01T01:00,-5.0,976.5,1.48,3.55,298,320,0.00 +2023-11-01T02:00,-4.8,976.2,1.30,2.26,270,315,0.00 +2023-11-01T03:00,-4.6,975.9,0.99,1.53,225,259,0.00 +2023-11-01T04:00,-4.6,975.5,1.97,3.44,204,216,0.00 +2023-11-01T05:00,-4.4,975.1,2.75,5.20,199,210,0.00 +2023-11-01T06:00,-4.6,974.3,3.27,6.50,203,211,0.00 +2023-11-01T07:00,-4.9,973.6,3.94,7.70,204,210,0.00 +2023-11-01T08:00,-4.8,973.0,4.53,8.36,202,208,0.00 +2023-11-01T09:00,-4.7,972.2,5.29,9.35,202,206,0.00 +2023-11-01T10:00,-4.6,971.3,5.83,10.02,202,206,0.00 +2023-11-01T11:00,-4.5,970.5,6.33,10.74,201,204,0.00 +2023-11-01T12:00,-4.3,969.9,6.89,11.44,199,202,0.00 +2023-11-01T13:00,-3.5,969.0,7.24,11.90,198,201,0.00 +2023-11-01T14:00,-2.5,968.6,6.93,13.72,198,202,0.00 +2023-11-01T15:00,-1.0,968.3,7.94,11.65,199,201,0.00 +2023-11-01T16:00,-0.4,967.8,7.37,10.55,201,202,0.00 +2023-11-01T17:00,1.2,967.5,6.40,8.81,205,206,0.00 +2023-11-01T18:00,3.6,966.9,5.70,7.68,218,219,0.00 +2023-11-01T19:00,5.0,966.1,5.33,7.04,230,231,0.00 +2023-11-01T20:00,5.8,965.4,4.88,6.49,244,245,0.00 +2023-11-01T21:00,6.1,965.2,4.39,5.92,258,258,0.00 +2023-11-01T22:00,5.7,965.1,3.21,5.31,265,267,0.00 +2023-11-01T23:00,2.8,964.7,2.21,5.32,265,275,0.00 +2023-11-02T00:00,1.6,964.9,3.10,6.74,272,285,0.00 +2023-11-02T01:00,-0.3,965.4,2.16,3.72,304,336,0.00 +2023-11-02T02:00,-1.0,965.7,1.84,3.32,299,339,0.00 +2023-11-02T03:00,-1.4,965.9,2.25,4.32,291,318,0.00 +2023-11-02T04:00,-1.6,966.3,2.56,5.52,291,312,0.00 +2023-11-02T05:00,-1.6,966.6,2.64,6.01,295,314,0.00 +2023-11-02T06:00,-1.7,966.7,2.55,5.80,296,314,0.00 +2023-11-02T07:00,-2.3,966.9,2.10,5.30,295,314,0.00 +2023-11-02T08:00,-2.3,967.3,2.37,5.38,298,313,0.00 +2023-11-02T09:00,-2.9,967.2,2.01,4.81,297,313,0.00 +2023-11-02T10:00,-2.6,967.1,1.84,4.40,292,309,0.00 +2023-11-02T11:00,-3.2,967.2,1.80,4.36,289,307,0.00 +2023-11-02T12:00,-3.6,967.2,1.65,4.16,284,305,0.00 +2023-11-02T13:00,-4.9,967.0,2.24,3.33,297,319,0.00 +2023-11-02T14:00,-2.6,967.7,1.57,2.56,297,321,0.00 +2023-11-02T15:00,-0.3,968.4,0.81,1.26,277,288,0.00 +2023-11-02T16:00,1.7,968.2,0.99,1.27,225,225,0.00 +2023-11-02T17:00,3.8,967.9,0.92,1.20,221,222,0.00 +2023-11-02T18:00,5.9,967.1,2.01,2.46,207,207,0.00 +2023-11-02T19:00,7.5,966.0,2.51,3.22,203,206,0.00 +2023-11-02T20:00,8.2,964.9,2.67,3.52,193,195,0.00 +2023-11-02T21:00,8.3,964.3,3.30,4.61,182,184,0.00 +2023-11-02T22:00,6.8,963.3,2.86,5.93,168,174,0.00 +2023-11-02T23:00,3.8,962.0,3.34,7.80,171,179,0.00 +2023-11-03T00:00,2.8,961.6,4.00,8.94,179,185,0.00 +2023-11-03T01:00,5.0,961.4,4.30,9.15,180,186,0.00 +2023-11-03T02:00,5.1,960.9,4.88,9.96,195,199,0.00 +2023-11-03T03:00,5.4,960.3,5.74,11.00,203,206,0.00 +2023-11-03T04:00,5.7,959.9,6.17,11.55,205,209,0.00 +2023-11-03T05:00,5.7,959.3,5.90,11.16,206,211,0.00 +2023-11-03T06:00,5.6,958.9,5.52,10.58,212,217,0.00 +2023-11-03T07:00,6.0,958.6,5.20,10.04,218,224,0.00 +2023-11-03T08:00,6.6,958.8,5.19,9.76,230,237,0.00 +2023-11-03T09:00,7.0,958.4,4.66,8.68,235,244,0.00 +2023-11-03T10:00,6.5,958.9,2.65,5.89,281,285,0.00 +2023-11-03T11:00,6.2,959.3,2.61,5.87,302,317,0.00 +2023-11-03T12:00,5.5,959.8,2.34,5.72,320,333,0.00 +2023-11-03T13:00,6.2,959.1,2.91,6.13,344,354,0.00 +2023-11-03T14:00,6.1,960.2,3.65,6.81,351,357,0.00 +2023-11-03T15:00,6.3,961.3,3.47,6.41,348,357,0.00 +2023-11-03T16:00,6.9,962.7,4.02,5.76,341,343,0.00 +2023-11-03T17:00,7.5,963.5,3.92,5.31,341,340,0.00 +2023-11-03T18:00,9.0,964.0,4.48,5.87,336,337,0.00 +2023-11-03T19:00,9.6,964.1,4.93,6.48,342,343,0.00 +2023-11-03T20:00,9.8,964.5,4.85,6.28,346,346,0.00 +2023-11-03T21:00,9.4,965.0,4.80,6.40,358,358,0.00 +2023-11-03T22:00,8.6,965.6,4.10,5.80,357,358,0.00 +2023-11-03T23:00,7.1,966.3,3.08,6.08,347,351,0.00 +2023-11-04T00:00,5.9,967.0,3.26,6.64,349,354,0.00 +2023-11-04T01:00,4.7,968.2,3.74,7.35,344,348,0.00 +2023-11-04T02:00,3.6,969.0,3.32,6.62,339,345,0.00 +2023-11-04T03:00,3.2,969.4,2.91,5.89,344,350,0.00 +2023-11-04T04:00,3.2,969.9,3.14,5.71,351,356,0.00 +2023-11-04T05:00,2.8,969.9,2.71,4.77,4,10,0.00 +2023-11-04T06:00,2.2,970.1,1.90,3.74,360,16,0.00 +2023-11-04T07:00,0.6,970.0,1.75,3.30,336,2,0.00 +2023-11-04T08:00,-0.2,970.0,2.10,3.93,335,353,0.00 +2023-11-04T09:00,-1.0,970.0,1.39,2.83,339,8,0.00 +2023-11-04T10:00,-1.6,970.0,1.20,1.92,318,351,0.00 +2023-11-04T11:00,-2.1,970.1,1.41,1.43,315,348,0.00 +2023-11-04T12:00,-2.6,970.3,1.58,0.78,305,320,0.00 +2023-11-04T13:00,-2.0,970.3,1.28,2.38,231,202,0.00 +2023-11-04T14:00,-0.3,970.9,2.14,3.48,191,198,0.00 +2023-11-04T15:00,2.9,971.4,2.00,4.33,183,199,0.00 +2023-11-04T16:00,5.7,971.5,2.44,3.49,199,204,0.00 +2023-11-04T17:00,7.9,971.0,2.82,3.67,207,209,0.00 +2023-11-04T18:00,9.6,970.1,2.69,3.41,211,212,0.00 +2023-11-04T19:00,10.8,969.2,3.35,4.34,207,209,0.00 +2023-11-04T20:00,11.7,968.8,3.88,5.08,215,216,0.00 +2023-11-04T21:00,12.0,968.5,3.86,5.12,217,219,0.00 +2023-11-04T22:00,11.5,967.7,3.44,5.64,206,210,0.00 +2023-11-04T23:00,9.3,967.2,3.62,7.48,204,210,0.00 +2023-11-05T00:00,8.2,966.8,4.43,8.80,205,212,0.00 +2023-11-05T01:00,8.5,966.6,4.56,9.07,206,212,0.00 +2023-11-05T02:00,8.1,966.7,4.80,9.34,211,218,0.00 +2023-11-05T03:00,7.9,966.5,4.72,9.32,212,218,0.00 +2023-11-05T04:00,7.7,966.4,4.99,9.78,213,221,0.00 +2023-11-05T05:00,7.4,965.9,4.94,9.76,216,224,0.00 +2023-11-05T06:00,7.1,965.7,4.60,9.37,224,230,0.00 +2023-11-05T07:00,6.8,965.6,3.91,8.41,230,235,0.00 +2023-11-05T08:00,6.5,965.3,3.61,7.80,226,234,0.00 +2023-11-05T09:00,6.4,964.9,3.78,8.06,217,225,0.00 +2023-11-05T10:00,6.1,964.1,4.12,8.22,209,217,0.00 +2023-11-05T11:00,6.3,964.0,5.28,9.85,207,213,0.00 +2023-11-05T12:00,6.5,963.6,5.37,9.95,204,210,0.00 +2023-11-05T13:00,7.2,963.1,6.08,11.03,205,211,0.00 +2023-11-05T14:00,8.0,962.9,6.41,11.09,203,208,0.00 +2023-11-05T15:00,9.2,962.3,6.87,11.35,196,200,0.00 +2023-11-05T16:00,10.1,961.1,6.53,15.50,185,193,0.00 +2023-11-05T17:00,12.5,960.1,8.22,12.26,183,186,0.00 +2023-11-05T18:00,13.3,958.6,8.60,12.52,181,183,0.00 +2023-11-05T19:00,13.2,956.4,8.21,13.70,177,181,0.00 +2023-11-05T20:00,14.5,954.8,10.21,15.46,182,185,0.00 +2023-11-05T21:00,15.7,953.6,10.25,15.54,186,188,0.00 +2023-11-05T22:00,15.7,952.6,9.85,15.28,193,194,0.00 +2023-11-05T23:00,15.0,952.1,9.33,14.83,197,199,0.00 +2023-11-06T00:00,14.2,951.7,8.54,13.95,198,200,0.00 +2023-11-06T01:00,14.2,951.3,8.63,13.92,198,200,0.00 +2023-11-06T02:00,14.0,950.9,8.48,14.00,199,202,0.00 +2023-11-06T03:00,14.0,950.1,7.91,13.17,201,203,0.00 +2023-11-06T04:00,14.0,949.9,7.53,12.59,210,213,0.00 +2023-11-06T05:00,13.5,949.6,5.66,10.34,225,228,0.00 +2023-11-06T06:00,12.8,949.1,5.48,9.96,249,252,0.00 +2023-11-06T07:00,11.3,950.5,6.66,11.41,298,302,0.00 +2023-11-06T08:00,10.6,951.1,5.57,10.03,288,290,0.00 +2023-11-06T09:00,10.0,951.8,6.75,11.56,277,279,0.00 +2023-11-06T10:00,9.7,952.1,6.35,11.24,277,279,0.00 +2023-11-06T11:00,9.6,952.6,6.56,11.38,278,280,0.00 +2023-11-06T12:00,9.3,953.2,6.44,11.24,276,279,0.00 +2023-11-06T13:00,8.7,953.5,6.21,10.80,274,278,0.00 +2023-11-06T14:00,9.1,954.2,6.20,10.46,272,276,0.00 +2023-11-06T15:00,10.6,955.1,5.81,9.30,267,271,0.00 +2023-11-06T16:00,11.9,955.8,7.44,10.49,276,278,0.00 +2023-11-06T17:00,12.7,956.1,7.86,10.87,285,285,0.00 +2023-11-06T18:00,13.5,955.8,7.09,9.66,292,291,0.00 +2023-11-06T19:00,14.0,955.8,6.94,9.26,298,298,0.00 +2023-11-06T20:00,14.0,956.2,6.80,9.26,303,303,0.00 +2023-11-06T21:00,13.6,956.8,6.53,9.03,310,309,0.00 +2023-11-06T22:00,12.5,957.3,5.40,8.09,321,320,0.00 +2023-11-06T23:00,9.9,957.7,3.96,7.24,344,342,0.00 +2023-11-07T00:00,7.8,958.4,3.57,7.06,349,348,0.00 +2023-11-07T01:00,5.0,960.1,3.28,6.06,348,347,0.00 +2023-11-07T02:00,4.1,960.5,2.82,5.64,354,353,0.00 +2023-11-07T03:00,3.2,960.9,2.30,5.10,358,358,0.00 +2023-11-07T04:00,2.5,961.3,1.70,4.40,357,357,0.00 +2023-11-07T05:00,1.9,961.2,1.61,4.01,7,4,0.00 +2023-11-07T06:00,1.7,961.3,1.65,4.39,14,12,0.00 +2023-11-07T07:00,1.4,961.3,1.97,4.74,30,28,0.00 +2023-11-07T08:00,1.2,961.3,2.13,4.95,49,43,0.00 +2023-11-07T09:00,0.9,961.3,2.15,5.01,68,61,0.00 +2023-11-07T10:00,0.8,961.1,2.65,5.70,79,75,0.00 +2023-11-07T11:00,0.7,961.8,2.61,5.60,94,92,0.00 +2023-11-07T12:00,0.9,961.7,3.81,7.14,95,96,0.00 +2023-11-07T13:00,1.5,961.7,3.65,8.42,99,103,0.00 +2023-11-07T14:00,1.6,962.0,4.22,8.08,112,112,0.00 +2023-11-07T15:00,3.0,962.2,4.92,7.06,128,128,0.00 +2023-11-07T16:00,4.4,962.1,5.60,7.79,131,132,0.00 +2023-11-07T17:00,6.5,961.3,5.80,7.99,134,134,0.00 +2023-11-07T18:00,8.2,960.4,5.94,8.06,135,136,0.00 +2023-11-07T19:00,9.1,959.7,5.32,7.29,131,133,0.00 +2023-11-07T20:00,8.9,959.2,4.81,6.94,137,137,0.00 +2023-11-07T21:00,9.4,958.7,4.74,6.86,136,137,0.00 +2023-11-07T22:00,9.3,957.7,5.87,9.81,136,141,0.00 +2023-11-07T23:00,9.6,956.6,6.65,10.89,133,135,0.00 +2023-11-08T00:00,9.7,956.6,5.81,9.72,138,140,0.00 +2023-11-08T01:00,9.0,957.3,6.14,10.12,143,142,0.00 +2023-11-08T02:00,9.3,957.5,5.28,8.90,161,159,0.00 +2023-11-08T03:00,9.3,957.6,5.35,8.91,172,171,0.20 +2023-11-08T04:00,8.8,957.2,5.24,8.79,167,168,0.20 +2023-11-08T05:00,8.9,956.9,3.82,7.02,174,176,0.00 +2023-11-08T06:00,9.1,956.2,3.08,6.15,167,173,0.00 +2023-11-08T07:00,9.3,956.1,2.86,5.90,168,179,0.00 +2023-11-08T08:00,8.6,955.8,1.61,4.44,173,188,0.00 +2023-11-08T09:00,7.5,955.6,1.84,3.13,151,187,0.00 +2023-11-08T10:00,7.2,955.5,1.42,1.90,129,183,0.00 +2023-11-08T11:00,6.7,955.3,1.80,1.30,124,157,0.20 +2023-11-08T12:00,7.3,955.7,0.50,1.22,233,279,0.00 +2023-11-08T13:00,5.2,955.7,1.63,1.65,227,284,0.10 +2023-11-08T14:00,6.6,956.1,1.17,1.26,239,288,0.00 +2023-11-08T15:00,7.5,956.7,2.28,2.22,247,262,0.00 +2023-11-08T16:00,8.7,957.3,3.42,6.47,291,302,0.00 +2023-11-08T17:00,11.0,957.7,2.73,3.85,294,295,0.00 +2023-11-08T18:00,12.6,957.3,2.60,3.57,286,288,0.00 +2023-11-08T19:00,14.3,957.1,4.97,6.66,295,296,0.00 +2023-11-08T20:00,13.2,957.5,7.23,10.21,311,311,0.00 +2023-11-08T21:00,12.5,958.0,7.32,10.45,309,309,0.00 +2023-11-08T22:00,10.8,959.2,7.73,11.56,310,310,0.00 +2023-11-08T23:00,9.2,960.1,7.12,11.51,308,309,0.00 +2023-11-09T00:00,8.6,961.1,7.75,12.50,309,310,0.00 +2023-11-09T01:00,5.5,963.5,7.14,11.46,314,315,0.00 +2023-11-09T02:00,4.7,963.9,6.39,10.63,310,311,0.00 +2023-11-09T03:00,4.3,964.2,5.88,10.07,302,304,0.00 +2023-11-09T04:00,4.2,964.7,5.90,10.30,296,299,0.00 +2023-11-09T05:00,4.0,964.9,5.44,9.69,287,292,0.00 +2023-11-09T06:00,3.3,964.5,4.60,8.86,270,276,0.00 +2023-11-09T07:00,3.0,964.2,5.36,9.96,256,264,0.00 +2023-11-09T08:00,3.0,963.8,6.28,11.26,248,253,0.00 +2023-11-09T09:00,3.3,964.3,6.90,11.89,253,257,0.00 +2023-11-09T10:00,3.4,964.7,6.65,11.52,263,267,0.00 +2023-11-09T11:00,3.4,965.0,6.40,11.11,268,272,0.00 +2023-11-09T12:00,3.2,965.5,6.10,10.71,268,272,0.00 +2023-11-09T13:00,1.4,965.5,5.18,9.70,260,268,0.00 +2023-11-09T14:00,1.9,966.0,5.43,9.53,257,266,0.00 +2023-11-09T15:00,3.9,966.4,5.04,9.41,256,267,0.00 +2023-11-09T16:00,5.8,966.5,5.87,8.14,261,264,0.00 +2023-11-09T17:00,7.4,966.2,5.70,7.70,268,270,0.00 +2023-11-09T18:00,8.5,965.9,6.01,8.03,274,275,0.00 +2023-11-09T19:00,9.1,965.3,7.07,9.50,278,278,0.00 +2023-11-09T20:00,9.0,965.0,7.05,9.67,277,277,0.00 +2023-11-09T21:00,8.5,965.2,8.29,11.64,288,288,0.00 +2023-11-09T22:00,7.4,965.7,6.74,10.10,285,286,0.00 +2023-11-09T23:00,5.9,966.1,5.79,9.68,288,290,0.00 +2023-11-10T00:00,4.7,966.6,5.25,9.18,288,290,0.00 +2023-11-10T01:00,3.3,967.6,5.24,8.94,294,297,0.00 +2023-11-10T02:00,2.3,968.1,4.97,8.72,295,298,0.00 +2023-11-10T03:00,1.6,968.7,5.28,8.96,297,299,0.00 +2023-11-10T04:00,1.0,968.8,5.24,8.88,299,301,0.00 +2023-11-10T05:00,1.1,969.0,5.01,8.42,296,300,0.00 +2023-11-10T06:00,1.6,969.2,4.92,7.74,294,299,0.00 +2023-11-10T07:00,0.2,969.2,4.24,7.67,285,292,0.00 +2023-11-10T08:00,0.0,969.5,4.30,7.84,282,289,0.00 +2023-11-10T09:00,-0.2,969.9,4.10,7.41,283,291,0.00 +2023-11-10T10:00,-0.4,970.2,3.82,6.90,276,287,0.00 +2023-11-10T11:00,-0.8,970.5,3.61,6.82,273,284,0.00 +2023-11-10T12:00,-1.3,971.0,3.91,7.42,273,284,0.00 +2023-11-10T13:00,-0.6,971.2,3.70,6.89,272,283,0.00 +2023-11-10T14:00,0.9,971.9,4.34,6.52,285,291,0.00 +2023-11-10T15:00,2.2,972.4,4.60,6.30,304,306,0.00 +2023-11-10T16:00,2.7,972.8,4.52,5.88,305,305,0.00 +2023-11-10T17:00,3.1,973.0,4.47,5.75,310,310,0.00 +2023-11-10T18:00,3.8,973.2,4.10,5.30,317,316,0.00 +2023-11-10T19:00,4.4,972.9,3.39,4.31,315,314,0.00 +2023-11-10T20:00,4.6,972.7,2.97,3.75,315,312,0.00 +2023-11-10T21:00,4.7,972.6,2.44,3.06,325,322,0.00 +2023-11-10T22:00,4.3,972.5,1.71,2.10,339,335,0.00 +2023-11-10T23:00,1.8,972.3,1.61,1.63,30,11,0.00 +2023-11-11T00:00,0.7,972.4,1.86,3.25,54,45,0.00 +2023-11-11T01:00,-1.1,972.9,2.19,2.84,66,51,0.00 +2023-11-11T02:00,-1.8,973.1,2.50,2.94,90,72,0.00 +2023-11-11T03:00,-2.0,973.6,2.33,3.01,115,94,0.00 +2023-11-11T04:00,-0.2,974.1,1.79,3.92,117,109,0.00 +2023-11-11T05:00,0.5,974.2,2.58,5.19,126,124,0.00 +2023-11-11T06:00,-0.4,973.9,2.78,6.11,128,130,0.00 +2023-11-11T07:00,-1.0,973.6,3.14,6.74,127,131,0.00 +2023-11-11T08:00,-0.9,973.0,3.55,7.21,130,135,0.00 +2023-11-11T09:00,-0.5,972.8,3.61,7.23,134,139,0.00 +2023-11-11T10:00,-0.5,972.7,3.97,7.96,139,147,0.00 +2023-11-11T11:00,1.0,972.3,4.46,8.14,136,143,0.00 +2023-11-11T12:00,1.4,972.1,4.74,8.58,138,144,0.00 +2023-11-11T13:00,1.1,971.3,5.89,10.52,140,144,0.00 +2023-11-11T14:00,1.9,971.1,6.41,10.75,146,150,0.00 +2023-11-11T15:00,3.3,970.9,5.38,11.90,145,155,0.00 +2023-11-11T16:00,4.9,970.3,6.76,9.88,156,159,0.00 +2023-11-11T17:00,5.6,969.7,6.77,9.68,164,166,0.10 +2023-11-11T18:00,6.4,969.3,5.82,8.30,161,165,0.40 +2023-11-11T19:00,8.2,968.0,6.02,8.49,169,172,0.00 +2023-11-11T20:00,9.3,967.2,6.13,8.52,174,176,0.00 +2023-11-11T21:00,9.8,966.2,6.14,8.85,168,170,0.00 +2023-11-11T22:00,9.5,965.7,6.62,10.60,176,179,0.00 +2023-11-11T23:00,8.5,965.5,5.93,10.51,186,188,0.00 +2023-11-12T00:00,7.8,965.8,5.97,10.63,189,192,0.00 +2023-11-12T01:00,8.5,965.9,7.02,11.88,184,187,0.00 +2023-11-12T02:00,8.0,965.7,6.94,11.75,186,189,0.00 +2023-11-12T03:00,7.4,965.3,6.87,11.83,188,191,0.00 +2023-11-12T04:00,6.9,965.1,7.02,12.03,191,193,0.00 +2023-11-12T05:00,6.5,964.7,6.79,11.77,194,196,0.00 +2023-11-12T06:00,6.1,964.7,6.36,11.26,196,200,0.00 +2023-11-12T07:00,5.8,964.5,6.17,11.06,200,204,0.00 +2023-11-12T08:00,5.7,964.4,6.17,11.14,205,208,0.00 +2023-11-12T09:00,5.5,964.1,6.19,11.23,211,214,0.00 +2023-11-12T10:00,5.1,964.0,5.88,10.79,215,220,0.00 +2023-11-12T11:00,4.5,963.9,5.22,10.13,216,221,0.00 +2023-11-12T12:00,4.0,964.3,4.94,9.57,216,221,0.00 +2023-11-12T13:00,2.8,964.1,3.97,8.42,221,227,0.00 +2023-11-12T14:00,3.4,964.7,4.12,8.06,219,226,0.00 +2023-11-12T15:00,5.9,965.4,4.47,9.27,214,227,0.00 +2023-11-12T16:00,8.6,965.6,4.60,7.37,214,222,0.00 +2023-11-12T17:00,11.3,966.0,5.09,7.29,223,227,0.00 +2023-11-12T18:00,13.4,966.2,6.40,8.99,241,243,0.00 +2023-11-12T19:00,14.3,966.4,7.20,10.10,268,269,0.00 +2023-11-12T20:00,14.2,967.2,7.40,10.44,289,290,0.00 +2023-11-12T21:00,13.6,967.6,6.46,9.22,278,279,0.00 +2023-11-12T22:00,12.3,968.4,5.77,9.40,284,287,0.00 +2023-11-12T23:00,10.1,969.3,5.08,9.36,280,284,0.00 +2023-11-13T00:00,9.0,970.0,5.10,9.79,272,278,0.00 +2023-11-13T01:00,9.3,970.8,4.70,9.73,268,275,0.00 +2023-11-13T02:00,8.9,971.3,5.10,10.18,269,277,0.00 +2023-11-13T03:00,8.2,971.8,4.91,9.97,266,277,0.00 +2023-11-13T04:00,7.5,972.3,4.71,9.79,266,278,0.00 +2023-11-13T05:00,7.0,972.6,5.04,10.12,263,274,0.00 +2023-11-13T06:00,6.8,973.0,5.12,10.22,264,274,0.00 +2023-11-13T07:00,6.9,973.7,5.60,11.08,269,277,0.00 +2023-11-13T08:00,6.8,974.2,5.06,10.12,279,288,0.00 +2023-11-13T09:00,6.0,975.0,4.65,9.55,279,290,0.00 +2023-11-13T10:00,5.3,975.1,4.30,9.09,282,294,0.00 +2023-11-13T11:00,4.7,975.4,3.67,8.20,287,300,0.00 +2023-11-13T12:00,3.7,975.9,2.85,7.02,288,306,0.00 +2023-11-13T13:00,1.2,975.9,2.60,5.60,293,319,0.00 +2023-11-13T14:00,2.7,976.5,2.00,4.34,270,308,0.00 +2023-11-13T15:00,5.9,977.5,2.66,3.69,250,283,0.00 +2023-11-13T16:00,8.8,977.9,1.22,2.11,235,265,0.00 +2023-11-13T17:00,10.9,977.9,1.08,1.36,214,216,0.00 +2023-11-13T18:00,12.4,977.5,1.81,2.22,186,188,0.00 +2023-11-13T19:00,13.4,976.6,3.08,3.93,193,195,0.00 +2023-11-13T20:00,13.9,975.9,3.40,4.46,194,196,0.00 +2023-11-13T21:00,13.9,975.3,3.60,4.90,178,181,0.00 +2023-11-13T22:00,12.7,974.4,3.32,6.21,159,165,0.00 +2023-11-13T23:00,10.2,973.2,4.29,8.65,152,158,0.00 +2023-11-14T00:00,9.3,972.8,5.35,10.34,159,163,0.00 +2023-11-14T01:00,10.9,971.7,7.12,12.52,163,165,0.00 +2023-11-14T02:00,11.1,971.3,7.84,13.53,174,176,0.00 +2023-11-14T03:00,11.3,970.7,8.51,14.40,177,179,0.00 +2023-11-14T04:00,11.4,970.4,8.91,14.93,183,184,0.00 +2023-11-14T05:00,11.5,969.7,9.25,15.34,186,188,0.00 +2023-11-14T06:00,11.7,969.4,9.41,15.35,192,194,0.00 +2023-11-14T07:00,11.7,968.6,9.58,15.60,194,196,0.00 +2023-11-14T08:00,11.6,968.0,9.33,15.28,197,200,0.00 +2023-11-14T09:00,11.4,967.7,8.99,14.84,201,203,0.00 +2023-11-14T10:00,11.2,967.0,9.21,15.14,201,203,0.00 +2023-11-14T11:00,11.0,966.3,9.84,15.82,201,203,0.00 +2023-11-14T12:00,10.6,966.1,9.71,15.69,200,202,0.00 +2023-11-14T13:00,11.5,965.8,9.36,15.25,200,202,0.00 +2023-11-14T14:00,11.6,965.6,9.77,15.57,198,200,0.00 +2023-11-14T15:00,12.3,965.2,10.34,15.98,199,200,0.00 +2023-11-14T16:00,13.2,964.7,8.81,13.88,192,195,0.00 +2023-11-14T17:00,14.0,963.8,10.04,14.84,193,194,0.00 +2023-11-14T18:00,14.9,962.3,10.47,15.24,197,198,0.00 +2023-11-14T19:00,15.7,961.4,10.35,14.97,200,201,0.00 +2023-11-14T20:00,16.0,960.6,9.92,14.45,202,202,0.00 +2023-11-14T21:00,16.4,960.6,9.16,13.65,212,212,0.00 +2023-11-14T22:00,15.9,961.0,7.72,12.18,222,222,0.00 +2023-11-14T23:00,14.8,960.8,7.08,11.88,223,224,0.00 +2023-11-15T00:00,13.6,961.3,5.95,10.58,229,230,0.00 +2023-11-15T01:00,14.3,961.5,5.41,9.90,236,237,0.00 +2023-11-15T02:00,12.8,961.7,4.20,8.59,245,245,0.00 +2023-11-15T03:00,11.3,961.8,3.83,8.17,250,255,0.00 +2023-11-15T04:00,9.8,962.4,3.51,7.34,275,287,0.00 +2023-11-15T05:00,8.3,963.2,3.83,8.02,311,320,0.00 +2023-11-15T06:00,7.1,963.9,4.18,8.30,318,324,0.00 +2023-11-15T07:00,6.5,964.9,4.49,8.94,328,333,0.00 +2023-11-15T08:00,5.8,965.9,4.21,8.52,332,338,0.00 +2023-11-15T09:00,5.0,966.4,3.35,7.34,333,343,0.00 +2023-11-15T10:00,3.9,966.5,2.60,6.43,337,348,0.00 +2023-11-15T11:00,3.0,966.9,2.33,5.89,335,350,0.00 +2023-11-15T12:00,3.7,967.0,1.46,2.73,286,8,0.00 +2023-11-15T13:00,2.9,967.5,1.66,2.62,303,18,0.00 +2023-11-15T14:00,4.7,967.9,0.28,1.87,225,74,0.00 +2023-11-15T15:00,6.7,968.3,1.88,3.27,155,113,0.00 +2023-11-15T16:00,9.5,969.4,1.66,3.18,147,136,0.00 +2023-11-15T17:00,11.3,969.5,2.69,3.45,158,158,0.00 +2023-11-15T18:00,12.9,968.7,3.76,5.03,163,163,0.00 +2023-11-15T19:00,14.1,967.9,3.75,4.95,171,172,0.00 +2023-11-15T20:00,14.8,967.3,4.14,5.46,172,172,0.00 +2023-11-15T21:00,14.7,966.5,4.54,6.34,172,174,0.00 +2023-11-15T22:00,13.2,966.0,4.32,7.71,175,177,0.00 +2023-11-15T23:00,11.0,965.2,4.71,9.20,176,180,0.00 +2023-11-16T00:00,10.1,964.6,5.50,10.40,178,181,0.00 +2023-11-16T01:00,11.2,963.8,6.10,11.40,179,181,0.00 +2023-11-16T02:00,11.0,963.3,6.43,11.72,185,188,0.00 +2023-11-16T03:00,10.8,962.4,7.00,12.59,190,192,0.00 +2023-11-16T04:00,10.7,961.8,7.52,13.20,194,196,0.00 +2023-11-16T05:00,10.6,961.2,7.50,13.12,196,199,0.00 +2023-11-16T06:00,11.2,960.5,7.59,13.11,198,201,0.00 +2023-11-16T07:00,11.8,959.6,7.85,13.38,202,204,0.00 +2023-11-16T08:00,12.2,958.7,7.85,13.25,202,204,0.00 +2023-11-16T09:00,11.9,958.0,7.93,13.60,203,205,0.00 +2023-11-16T10:00,11.8,957.4,8.34,14.01,203,204,0.00 +2023-11-16T11:00,11.9,956.4,8.19,13.54,200,203,0.00 +2023-11-16T12:00,12.0,955.6,8.57,13.96,199,201,0.00 +2023-11-16T13:00,13.2,954.3,8.19,13.67,200,203,0.00 +2023-11-16T14:00,13.1,953.2,8.73,14.21,198,201,0.00 +2023-11-16T15:00,14.2,952.4,9.69,14.92,202,203,0.00 +2023-11-16T16:00,15.0,951.7,9.12,13.76,201,203,0.00 +2023-11-16T17:00,15.6,951.2,9.90,14.34,210,210,0.00 +2023-11-16T18:00,16.9,951.1,10.40,14.81,218,218,0.00 +2023-11-16T19:00,17.6,950.6,9.78,13.83,229,229,0.00 +2023-11-16T20:00,17.9,951.0,9.20,13.03,251,252,0.00 +2023-11-16T21:00,17.3,952.4,8.44,12.13,301,302,0.00 +2023-11-16T22:00,9.9,954.9,10.24,15.43,324,325,0.00 +2023-11-16T23:00,7.5,956.8,9.57,14.15,328,328,0.00 +2023-11-17T00:00,5.9,958.6,8.10,12.57,333,334,0.00 +2023-11-17T01:00,4.3,960.0,6.77,10.52,329,331,0.00 +2023-11-17T02:00,3.7,960.8,7.34,11.23,331,332,0.00 +2023-11-17T03:00,2.9,962.3,7.32,11.16,328,329,0.00 +2023-11-17T04:00,1.8,963.7,6.80,10.54,324,325,0.00 +2023-11-17T05:00,1.0,964.5,6.44,10.32,324,324,0.00 +2023-11-17T06:00,0.2,964.8,5.50,9.24,323,324,0.00 +2023-11-17T07:00,-0.4,964.8,4.99,8.71,327,328,0.00 +2023-11-17T08:00,-0.9,964.8,4.36,8.03,328,329,0.00 +2023-11-17T09:00,-1.2,964.8,3.94,7.57,324,326,0.00 +2023-11-17T10:00,-1.5,964.7,3.28,6.96,322,325,0.00 +2023-11-17T11:00,-1.9,964.4,2.34,5.63,320,327,0.00 +2023-11-17T12:00,-1.7,965.3,2.50,5.66,307,318,0.00 +2023-11-17T13:00,-2.7,965.4,1.51,3.58,262,297,0.00 +2023-11-17T14:00,-2.4,965.5,1.66,1.94,213,258,0.00 +2023-11-17T15:00,0.3,966.1,2.19,2.80,204,215,0.00 +2023-11-17T16:00,2.4,966.4,3.09,4.03,209,210,0.00 +2023-11-17T17:00,4.1,966.2,4.30,5.61,211,211,0.00 +2023-11-17T18:00,5.5,965.5,5.33,7.05,214,215,0.00 +2023-11-17T19:00,6.4,964.7,5.92,7.82,217,219,0.00 +2023-11-17T20:00,6.9,964.5,5.87,7.85,224,224,0.00 +2023-11-17T21:00,7.0,964.3,5.60,7.66,229,229,0.00 +2023-11-17T22:00,6.4,964.0,4.95,7.71,225,227,0.00 +2023-11-17T23:00,4.9,963.7,4.53,8.27,221,225,0.00 +2023-11-18T00:00,4.2,964.0,4.67,8.75,227,231,0.00 +2023-11-18T01:00,4.7,964.1,4.47,8.71,230,236,0.00 +2023-11-18T02:00,4.3,964.0,4.69,9.16,230,238,0.00 +2023-11-18T03:00,4.0,964.0,4.16,8.46,235,246,0.00 +2023-11-18T04:00,3.7,963.9,4.13,8.25,238,251,0.00 +2023-11-18T05:00,3.3,963.5,4.00,8.04,238,253,0.00 +2023-11-18T06:00,3.0,963.3,3.76,7.65,241,259,0.00 +2023-11-18T07:00,2.7,962.9,3.77,7.52,238,256,0.00 +2023-11-18T08:00,2.6,962.9,3.85,7.84,242,259,0.00 +2023-11-18T09:00,2.6,962.8,3.73,7.92,250,266,0.00 +2023-11-18T10:00,2.7,962.3,3.90,7.95,247,264,0.00 +2023-11-18T11:00,2.6,962.7,3.65,7.91,261,272,0.00 +2023-11-18T12:00,2.5,963.1,3.31,7.43,275,287,0.00 +2023-11-18T13:00,1.0,963.1,2.61,6.02,266,291,0.00 +2023-11-18T14:00,1.7,963.2,2.18,4.52,254,295,0.00 +2023-11-18T15:00,4.6,963.8,3.49,5.20,246,271,0.00 +2023-11-18T16:00,7.6,964.3,3.31,7.64,241,264,0.00 +2023-11-18T17:00,10.6,964.5,2.97,4.81,250,258,0.00 +2023-11-18T18:00,12.5,964.2,3.14,4.14,261,262,0.00 +2023-11-18T19:00,13.7,963.6,3.18,4.08,257,259,0.00 +2023-11-18T20:00,14.3,962.9,2.75,3.48,251,252,0.00 +2023-11-18T21:00,14.2,962.5,2.44,3.20,251,250,0.00 +2023-11-18T22:00,11.8,962.2,1.97,2.94,246,252,0.00 +2023-11-18T23:00,8.0,961.7,2.70,3.36,231,247,0.00 +2023-11-19T00:00,7.4,961.7,2.05,3.68,227,248,0.00 +2023-11-19T01:00,9.5,961.8,1.26,1.32,162,99,0.00 +2023-11-19T02:00,7.3,961.8,1.60,1.56,176,130,0.00 +2023-11-19T03:00,6.2,961.6,1.70,1.78,183,142,0.00 +2023-11-19T04:00,6.1,961.7,2.24,2.51,153,119,0.00 +2023-11-19T05:00,5.4,961.6,2.94,4.25,125,114,0.00 +2023-11-19T06:00,5.7,961.6,2.47,5.68,122,116,0.00 +2023-11-19T07:00,5.3,961.2,2.75,6.47,123,122,0.00 +2023-11-19T08:00,5.0,961.0,2.94,6.88,125,126,0.00 +2023-11-19T09:00,4.7,961.2,3.24,7.32,124,125,0.00 +2023-11-19T10:00,4.5,961.3,3.36,7.68,127,129,0.00 +2023-11-19T11:00,4.2,961.2,3.22,7.50,144,143,0.00 +2023-11-19T12:00,3.9,961.0,3.09,7.26,151,150,0.00 +2023-11-19T13:00,3.4,960.4,3.08,7.27,144,148,0.00 +2023-11-19T14:00,3.8,960.8,3.62,7.66,129,139,0.00 +2023-11-19T15:00,6.0,961.5,4.41,8.27,123,135,0.00 +2023-11-19T16:00,7.8,962.3,3.78,9.37,127,140,0.00 +2023-11-19T17:00,10.3,962.5,4.02,6.23,125,132,0.00 +2023-11-19T18:00,12.3,962.0,4.34,5.95,128,132,0.00 +2023-11-19T19:00,13.6,961.5,4.89,6.54,139,141,0.00 +2023-11-19T20:00,13.9,961.1,5.26,7.20,141,142,0.00 +2023-11-19T21:00,13.0,960.9,4.40,6.94,141,144,0.00 +2023-11-19T22:00,12.1,961.1,4.22,7.52,144,147,0.00 +2023-11-19T23:00,11.0,961.2,3.83,7.64,139,143,0.00 +2023-11-20T00:00,10.3,961.5,3.75,7.59,136,140,0.00 +2023-11-20T01:00,10.5,961.4,4.24,8.06,133,136,0.00 +2023-11-20T02:00,10.3,961.7,4.69,8.56,130,135,0.00 +2023-11-20T03:00,9.9,962.1,4.82,8.63,132,135,0.00 +2023-11-20T04:00,9.1,962.7,4.82,8.41,132,135,0.00 +2023-11-20T05:00,8.6,963.2,4.97,8.42,130,133,0.10 +2023-11-20T06:00,7.8,963.7,4.69,8.14,124,127,0.20 +2023-11-20T07:00,7.1,963.9,4.34,7.74,119,123,0.10 +2023-11-20T08:00,6.8,964.1,4.12,7.29,113,119,0.00 +2023-11-20T09:00,6.6,964.4,4.05,7.22,106,112,0.00 +2023-11-20T10:00,6.3,964.7,4.30,7.45,108,112,0.00 +2023-11-20T11:00,5.6,965.0,4.08,7.35,107,112,0.00 +2023-11-20T12:00,5.7,965.6,3.96,6.84,106,111,0.00 +2023-11-20T13:00,5.8,966.5,3.70,6.35,92,97,0.00 +2023-11-20T14:00,5.8,967.4,3.90,6.44,90,96,0.00 +2023-11-20T15:00,5.8,968.1,3.81,5.60,87,91,0.10 +2023-11-20T16:00,5.7,968.9,4.00,5.50,89,91,0.20 +2023-11-20T17:00,5.6,969.2,4.00,5.60,89,91,0.20 +2023-11-20T18:00,5.7,969.3,4.02,5.35,96,98,0.10 +2023-11-20T19:00,5.6,969.0,3.40,4.51,92,94,0.00 +2023-11-20T20:00,5.9,969.0,3.32,4.42,83,85,0.00 +2023-11-20T21:00,6.4,968.9,3.71,5.01,85,87,0.00 +2023-11-20T22:00,6.2,969.2,2.94,4.03,80,83,0.00 +2023-11-20T23:00,5.3,969.7,1.70,3.45,50,60,0.00 +2023-11-21T00:00,5.0,969.9,1.79,3.47,27,41,0.00 +2023-11-21T01:00,5.3,969.6,2.05,4.06,43,52,0.00 +2023-11-21T02:00,5.2,969.8,1.49,2.98,20,40,0.00 +2023-11-21T03:00,5.1,969.6,0.80,2.02,360,33,0.00 +2023-11-21T04:00,5.0,969.5,0.50,1.08,323,22,0.00 +2023-11-21T05:00,4.8,969.2,0.71,0.78,278,310,0.00 +2023-11-21T06:00,4.8,968.3,0.86,1.30,216,203,0.00 +2023-11-21T07:00,4.9,967.7,2.34,3.77,250,248,0.00 +2023-11-21T08:00,5.2,967.4,4.44,7.54,278,285,0.20 +2023-11-21T09:00,5.3,967.4,7.93,12.26,331,332,0.00 +2023-11-21T10:00,4.4,967.6,8.32,12.70,333,333,0.20 +2023-11-21T11:00,3.4,967.8,8.39,12.94,329,331,0.00 +2023-11-21T12:00,1.4,968.4,8.13,12.97,328,329,0.00 +2023-11-21T13:00,-0.0,968.2,7.99,12.83,328,329,0.00 +2023-11-21T14:00,-0.3,968.7,8.07,12.76,326,328,0.00 +2023-11-21T15:00,0.3,969.5,8.10,11.82,327,328,0.00 +2023-11-21T16:00,1.0,970.0,8.68,12.04,327,328,0.00 +2023-11-21T17:00,1.7,970.3,8.32,11.32,327,328,0.00 +2023-11-21T18:00,2.3,969.9,8.38,11.43,324,325,0.00 +2023-11-21T19:00,2.7,969.4,8.30,11.32,324,324,0.00 +2023-11-21T20:00,2.9,969.5,8.07,11.04,326,326,0.00 +2023-11-21T21:00,2.5,969.6,8.24,11.43,324,325,0.00 +2023-11-21T22:00,1.7,969.8,7.49,10.68,326,326,0.00 +2023-11-21T23:00,0.5,970.3,5.63,9.21,327,328,0.00 +2023-11-22T00:00,-0.2,970.4,5.16,8.79,324,326,0.00 +2023-11-22T01:00,-0.8,970.3,5.69,9.63,326,327,0.00 +2023-11-22T02:00,-1.1,970.1,5.30,9.14,328,330,0.00 +2023-11-22T03:00,-1.3,969.9,4.66,8.32,329,331,0.00 +2023-11-22T04:00,-1.7,969.6,3.78,7.35,323,326,0.00 +2023-11-22T05:00,-2.0,969.1,3.11,6.67,312,320,0.00 +2023-11-22T06:00,-2.3,968.8,2.58,6.08,306,316,0.00 +2023-11-22T07:00,-2.7,968.1,1.92,4.88,279,305,0.00 +2023-11-22T08:00,-3.1,966.9,1.56,3.03,230,278,0.00 +2023-11-22T09:00,-3.0,966.5,2.90,4.70,224,243,0.00 +2023-11-22T10:00,-2.7,965.6,3.64,7.03,217,230,0.00 +2023-11-22T11:00,-2.5,965.0,4.00,7.71,212,224,0.00 +2023-11-22T12:00,-2.1,964.3,4.79,8.89,209,219,0.00 +2023-11-22T13:00,-2.5,962.9,5.50,10.32,205,212,0.00 +2023-11-22T14:00,-1.7,962.5,6.48,11.51,207,213,0.00 +2023-11-22T15:00,0.6,961.8,7.94,14.37,199,212,0.00 +2023-11-22T16:00,3.4,960.8,7.21,12.97,199,206,0.00 +2023-11-22T17:00,5.8,960.0,7.31,11.35,199,202,0.00 +2023-11-22T18:00,7.9,958.7,8.10,11.61,209,211,0.00 +2023-11-22T19:00,8.9,957.5,7.86,11.40,221,223,0.00 +2023-11-22T20:00,9.4,956.9,7.01,10.13,228,229,0.00 +2023-11-22T21:00,9.3,956.6,6.02,9.76,234,241,0.00 +2023-11-22T22:00,7.6,956.5,5.10,9.55,244,250,0.00 +2023-11-22T23:00,5.1,956.3,4.68,9.80,254,262,0.00 +2023-11-23T00:00,4.4,956.6,4.70,9.87,269,281,0.00 +2023-11-23T01:00,8.0,957.7,5.97,10.40,301,305,0.00 +2023-11-23T02:00,6.6,958.6,6.49,10.88,326,328,0.00 +2023-11-23T03:00,3.9,959.8,6.80,10.94,327,329,0.00 +2023-11-23T04:00,1.9,960.9,7.17,11.50,330,331,0.00 +2023-11-23T05:00,0.4,961.9,7.07,11.32,333,334,0.00 +2023-11-23T06:00,-0.5,962.9,7.26,11.62,337,338,0.00 +2023-11-23T07:00,-1.0,963.8,7.09,11.39,338,340,0.00 +2023-11-23T08:00,-1.6,965.0,6.72,10.88,337,340,0.00 +2023-11-23T09:00,-2.3,966.2,6.84,10.88,339,341,0.00 +2023-11-23T10:00,-3.2,966.7,6.93,11.02,342,344,0.00 +2023-11-23T11:00,-4.0,968.0,6.26,10.09,340,342,0.00 +2023-11-23T12:00,-4.7,969.1,6.15,9.90,338,340,0.00 +2023-11-23T13:00,-5.3,970.5,6.63,9.79,337,338,0.00 +2023-11-23T14:00,-5.6,971.6,6.67,9.59,336,337,0.00 +2023-11-23T15:00,-5.6,972.4,6.69,9.40,338,339,0.00 +2023-11-23T16:00,-4.8,973.4,6.80,9.11,340,341,0.00 +2023-11-23T17:00,-4.2,973.7,6.93,9.33,342,343,0.00 +2023-11-23T18:00,-3.6,973.5,6.80,9.08,343,343,0.00 +2023-11-23T19:00,-3.1,973.7,6.61,8.73,342,342,0.00 +2023-11-23T20:00,-2.9,973.8,6.51,8.60,342,342,0.00 +2023-11-23T21:00,-3.3,974.1,6.29,8.48,342,343,0.00 +2023-11-23T22:00,-4.0,974.7,6.04,8.45,344,343,0.00 +2023-11-23T23:00,-4.8,975.2,5.22,8.23,343,344,0.00 +2023-11-24T00:00,-5.3,976.1,5.39,8.59,345,345,0.00 +2023-11-24T01:00,-6.6,977.5,6.09,9.46,346,347,0.00 +2023-11-24T02:00,-7.0,978.1,6.14,9.39,348,348,0.00 +2023-11-24T03:00,-7.5,978.7,6.12,9.16,349,349,0.00 +2023-11-24T04:00,-8.0,979.4,5.77,8.90,351,352,0.00 +2023-11-24T05:00,-8.2,980.2,5.39,8.30,349,351,0.00 +2023-11-24T06:00,-8.5,980.9,5.00,7.61,348,350,0.00 +2023-11-24T07:00,-8.6,981.3,4.83,7.26,347,348,0.00 +2023-11-24T08:00,-8.7,981.6,4.44,6.87,346,347,0.00 +2023-11-24T09:00,-8.8,981.8,4.37,6.97,349,352,0.00 +2023-11-24T10:00,-8.8,981.9,3.95,6.15,351,353,0.00 +2023-11-24T11:00,-8.7,982.4,3.77,5.66,349,352,0.00 +2023-11-24T12:00,-8.7,982.8,3.52,5.22,345,348,0.00 +2023-11-24T13:00,-10.3,983.9,3.42,5.90,353,358,0.00 +2023-11-24T14:00,-10.3,984.2,3.35,6.41,350,356,0.00 +2023-11-24T15:00,-9.0,984.5,3.81,5.20,355,358,0.00 +2023-11-24T16:00,-7.4,984.7,3.51,4.53,5,6,0.00 +2023-11-24T17:00,-6.0,984.5,3.04,3.86,9,10,0.00 +2023-11-24T18:00,-4.8,983.6,2.83,3.45,8,10,0.00 +2023-11-24T19:00,-3.9,982.8,2.62,3.22,7,7,0.00 +2023-11-24T20:00,-3.4,982.3,2.40,3.00,360,360,0.00 +2023-11-24T21:00,-3.5,981.9,2.18,2.79,344,345,0.00 +2023-11-24T22:00,-4.0,981.7,2.15,2.79,338,339,0.00 +2023-11-24T23:00,-6.0,981.1,1.57,3.23,333,338,0.00 +2023-11-25T00:00,-5.8,981.0,1.49,3.59,340,347,0.00 +2023-11-25T01:00,-5.8,980.9,1.20,2.90,355,358,0.00 +2023-11-25T02:00,-5.5,980.3,1.20,2.62,355,7,0.00 +2023-11-25T03:00,-5.3,979.9,0.91,1.87,354,16,0.00 +2023-11-25T04:00,-5.3,979.3,0.32,1.00,342,37,0.00 +2023-11-25T05:00,-5.2,979.0,0.36,0.32,214,162,0.00 +2023-11-25T06:00,-5.2,978.4,0.86,1.21,216,204,0.00 +2023-11-25T07:00,-5.1,977.6,1.21,1.62,204,202,0.00 +2023-11-25T08:00,-5.2,976.7,1.66,2.42,205,204,0.00 +2023-11-25T09:00,-5.4,976.1,1.97,3.76,204,209,0.00 +2023-11-25T10:00,-5.0,975.4,2.73,4.03,208,210,0.00 +2023-11-25T11:00,-5.0,974.8,2.56,4.00,211,212,0.00 +2023-11-25T12:00,-4.6,974.4,2.97,4.05,213,213,0.00 +2023-11-25T13:00,-5.1,974.7,2.77,3.94,206,207,0.10 +2023-11-25T14:00,-5.1,974.3,2.95,4.12,208,209,0.00 +2023-11-25T15:00,-4.7,973.8,3.04,4.21,207,208,0.00 +2023-11-25T16:00,-4.1,973.3,3.00,3.84,217,219,0.00 +2023-11-25T17:00,-3.3,972.7,3.02,3.88,214,215,0.00 +2023-11-25T18:00,-3.5,971.4,3.14,4.06,217,218,0.10 +2023-11-25T19:00,-3.1,970.0,3.42,4.34,218,218,0.20 +2023-11-25T20:00,-3.2,969.1,3.69,4.75,221,221,0.30 +2023-11-25T21:00,-3.4,968.0,3.61,4.81,224,225,0.20 +2023-11-25T22:00,-3.7,967.2,3.34,4.40,219,219,0.10 +2023-11-25T23:00,-4.4,966.6,2.80,4.92,215,218,0.00 +2023-11-26T00:00,-5.1,966.0,2.97,5.66,222,226,0.00 +2023-11-26T01:00,-4.1,965.9,3.08,5.06,216,218,0.00 +2023-11-26T02:00,-4.2,965.0,2.84,4.56,231,232,0.00 +2023-11-26T03:00,-4.2,964.6,3.00,4.94,233,238,0.00 +2023-11-26T04:00,-4.1,964.4,3.94,5.96,234,235,0.00 +2023-11-26T05:00,-4.3,963.5,4.00,6.16,233,234,0.00 +2023-11-26T06:00,-4.5,962.6,3.92,6.10,232,235,0.00 +2023-11-26T07:00,-5.1,961.1,3.69,6.32,229,235,0.00 +2023-11-26T08:00,-5.1,960.2,4.24,6.98,227,232,0.00 +2023-11-26T09:00,-5.9,959.6,4.36,7.71,217,223,0.00 +2023-11-26T10:00,-6.4,958.7,4.72,8.63,216,223,0.00 +2023-11-26T11:00,-6.5,958.0,4.83,8.70,220,227,0.00 +2023-11-26T12:00,-6.2,957.8,5.00,8.86,233,242,0.00 +2023-11-26T13:00,-5.5,957.5,4.59,8.41,259,272,0.00 +2023-11-26T14:00,-2.7,957.6,5.10,8.51,298,304,0.10 +2023-11-26T15:00,-0.9,958.1,7.50,11.31,314,316,0.00 +2023-11-26T16:00,0.3,959.0,8.21,11.81,313,314,0.00 +2023-11-26T17:00,1.2,959.5,9.97,13.86,315,316,0.00 +2023-11-26T18:00,0.3,959.6,9.55,13.51,314,314,0.00 +2023-11-26T19:00,-0.1,959.9,9.48,13.44,314,315,0.00 +2023-11-26T20:00,-1.3,960.5,8.92,12.81,318,318,0.00 +2023-11-26T21:00,-1.4,961.0,8.63,12.16,315,315,0.00 +2023-11-26T22:00,-2.1,961.8,8.15,11.68,312,312,0.00 +2023-11-26T23:00,-2.8,962.5,6.90,10.67,309,309,0.00 +2023-11-27T00:00,-4.0,962.9,6.24,10.16,305,306,0.00 +2023-11-27T01:00,-6.8,963.5,6.53,10.56,310,312,0.00 +2023-11-27T02:00,-7.5,963.9,5.97,9.85,310,311,0.00 +2023-11-27T03:00,-8.0,964.1,5.83,9.70,309,312,0.00 +2023-11-27T04:00,-8.4,964.6,5.70,9.58,308,310,0.00 +2023-11-27T05:00,-8.8,965.0,5.56,9.30,308,310,0.00 +2023-11-27T06:00,-9.1,965.5,5.54,9.28,309,312,0.00 +2023-11-27T07:00,-9.5,965.5,4.86,8.37,307,310,0.00 +2023-11-27T08:00,-9.9,965.4,4.44,7.74,301,306,0.00 +2023-11-27T09:00,-10.0,965.8,4.79,8.15,296,299,0.00 +2023-11-27T10:00,-10.1,965.8,5.05,8.52,297,301,0.00 +2023-11-27T11:00,-10.2,965.9,4.74,8.13,298,302,0.00 +2023-11-27T12:00,-10.3,966.2,4.52,7.80,298,301,0.00 +2023-11-27T13:00,-11.4,966.5,4.34,7.59,308,310,0.00 +2023-11-27T14:00,-11.3,967.0,4.32,7.21,312,314,0.00 +2023-11-27T15:00,-9.7,967.6,5.60,7.86,319,319,0.00 +2023-11-27T16:00,-8.8,968.0,5.95,7.86,318,318,0.00 +2023-11-27T17:00,-8.0,968.1,6.22,8.28,314,314,0.00 +2023-11-27T18:00,-7.4,968.0,6.10,7.94,311,311,0.00 +2023-11-27T19:00,-6.8,967.6,5.98,7.90,308,308,0.00 +2023-11-27T20:00,-6.3,967.8,6.04,7.96,309,309,0.00 +2023-11-27T21:00,-6.2,968.0,6.11,8.17,310,310,0.00 +2023-11-27T22:00,-6.3,968.5,6.18,8.75,309,309,0.00 +2023-11-27T23:00,-7.3,968.9,4.88,8.13,314,315,0.00 +2023-11-28T00:00,-7.8,969.4,4.38,7.72,315,318,0.00 +2023-11-28T01:00,-9.5,969.7,4.38,7.50,315,317,0.00 +2023-11-28T02:00,-9.8,970.0,3.91,7.00,320,323,0.00 +2023-11-28T03:00,-10.2,970.3,3.78,6.82,323,325,0.00 +2023-11-28T04:00,-10.4,970.6,3.26,6.24,320,325,0.00 +2023-11-28T05:00,-10.6,970.8,2.83,5.84,315,322,0.00 +2023-11-28T06:00,-10.8,970.8,2.20,5.04,309,321,0.00 +2023-11-28T07:00,-11.1,970.6,1.52,4.04,293,312,0.00 +2023-11-28T08:00,-11.3,970.3,1.33,3.14,257,292,0.00 +2023-11-28T09:00,-11.1,970.4,1.50,3.21,233,266,0.00 +2023-11-28T10:00,-10.9,969.8,1.80,3.58,214,243,0.00 +2023-11-28T11:00,-10.6,969.3,2.47,4.53,201,229,0.00 +2023-11-28T12:00,-9.7,969.2,3.14,5.52,202,224,0.00 +2023-11-28T13:00,-10.2,968.5,3.79,7.02,192,206,0.00 +2023-11-28T14:00,-9.0,968.4,4.44,8.21,194,202,0.00 +2023-11-28T15:00,-6.9,968.3,4.65,10.03,189,200,0.00 +2023-11-28T16:00,-4.1,967.9,5.06,8.97,189,194,0.00 +2023-11-28T17:00,-1.4,967.1,6.08,8.71,189,193,0.00 +2023-11-28T18:00,0.8,965.4,7.30,10.17,193,195,0.00 +2023-11-28T19:00,2.2,963.9,8.04,11.26,197,198,0.00 +2023-11-28T20:00,2.9,962.6,8.45,12.03,201,201,0.00 +2023-11-28T21:00,2.8,961.3,8.29,12.08,203,204,0.00 +2023-11-28T22:00,2.0,960.8,7.72,12.32,217,218,0.00 +2023-11-28T23:00,0.5,960.6,6.72,11.62,226,228,0.00 +2023-11-29T00:00,-0.2,960.6,6.02,10.94,234,239,0.00 +2023-11-29T01:00,-0.5,959.9,5.23,10.10,244,254,0.00 +2023-11-29T02:00,-0.3,959.4,5.00,10.02,254,266,0.00 +2023-11-29T03:00,0.3,959.0,5.26,10.50,261,271,0.00 +2023-11-29T04:00,0.8,959.0,5.50,10.85,269,280,0.00 +2023-11-29T05:00,1.1,958.8,5.12,10.36,276,285,0.00 +2023-11-29T06:00,1.2,958.9,5.26,10.37,279,287,0.00 +2023-11-29T07:00,0.9,958.8,5.15,10.25,278,287,0.00 +2023-11-29T08:00,0.5,959.2,5.05,10.12,278,287,0.00 +2023-11-29T09:00,0.1,959.2,4.67,9.59,280,290,0.00 +2023-11-29T10:00,-0.3,959.2,4.44,9.27,278,288,0.00 +2023-11-29T11:00,-0.8,959.2,4.23,8.92,277,288,0.00 +2023-11-29T12:00,-1.2,959.2,4.02,8.60,276,288,0.00 +2023-11-29T13:00,-2.5,958.9,3.51,7.72,267,287,0.00 +2023-11-29T14:00,-2.7,959.0,3.67,7.42,253,274,0.00 +2023-11-29T15:00,-0.7,959.7,4.61,7.72,246,266,0.00 +2023-11-29T16:00,2.0,960.1,4.07,8.92,245,266,0.00 +2023-11-29T17:00,4.6,960.0,3.76,5.85,245,253,0.00 +2023-11-29T18:00,6.8,959.1,3.89,5.29,244,248,0.00 +2023-11-29T19:00,8.2,958.3,4.17,5.68,240,242,0.00 +2023-11-29T20:00,8.4,957.9,4.74,6.57,235,237,0.00 +2023-11-29T21:00,7.3,957.0,3.98,6.99,231,236,0.00 +2023-11-29T22:00,4.9,956.4,3.91,7.99,220,227,0.00 +2023-11-29T23:00,2.1,955.4,4.17,8.90,210,218,0.00 +2023-11-30T00:00,1.1,954.8,4.44,9.36,203,210,0.00 +2023-11-30T01:00,1.8,953.6,4.81,10.00,197,200,0.00 +2023-11-30T02:00,1.9,953.3,5.72,11.31,199,202,0.00 +2023-11-30T03:00,1.5,952.7,5.92,11.27,202,206,0.00 +2023-11-30T04:00,1.3,952.3,6.13,11.54,206,212,0.00 +2023-11-30T05:00,1.3,951.8,6.33,11.76,211,218,0.00 +2023-11-30T06:00,1.0,951.5,5.37,10.50,225,230,0.00 +2023-11-30T07:00,0.3,951.4,5.05,9.93,236,244,0.00 +2023-11-30T08:00,-0.4,951.8,4.44,8.93,256,266,0.00 +2023-11-30T09:00,-0.7,952.2,4.32,8.99,283,297,0.00 +2023-11-30T10:00,-0.5,952.9,5.59,10.73,316,321,0.00 +2023-11-30T11:00,-1.0,954.0,6.52,11.62,324,327,0.00 +2023-11-30T12:00,-1.5,955.0,6.54,11.45,331,333,0.00 +2023-11-30T13:00,-1.6,956.2,6.23,11.00,330,333,0.00 +2023-11-30T14:00,-2.0,957.2,6.00,10.60,330,332,0.00 +2023-11-30T15:00,-0.8,958.2,5.27,11.05,327,331,0.00 +2023-11-30T16:00,0.4,959.2,6.36,9.04,330,331,0.00 +2023-11-30T17:00,1.6,959.9,6.36,8.73,336,336,0.00 +2023-11-30T18:00,2.4,960.0,5.86,7.92,335,335,0.00 +2023-11-30T19:00,2.9,960.1,5.82,7.70,336,335,0.00 +2023-11-30T20:00,2.5,960.3,5.74,7.71,337,337,0.00 +2023-11-30T21:00,1.7,960.6,5.39,7.32,338,338,0.00 +2023-11-30T22:00,0.6,960.9,4.72,7.60,339,339,0.00 +2023-11-30T23:00,-1.3,961.1,3.93,7.62,345,346,0.00 +2023-12-01T00:00,-2.4,961.6,3.21,7.01,355,357,0.00 +2023-12-01T01:00,-2.1,962.1,3.47,7.06,348,353,0.00 +2023-12-01T02:00,-2.9,962.2,3.35,7.22,350,355,0.00 +2023-12-01T03:00,-3.1,962.4,3.61,7.30,355,2,0.00 +2023-12-01T04:00,-3.2,962.6,3.11,6.63,356,5,0.00 +2023-12-01T05:00,-3.6,963.0,2.91,6.45,356,7,0.00 +2023-12-01T06:00,-4.0,963.1,2.70,6.22,2,11,0.00 +2023-12-01T07:00,-4.5,962.8,2.62,6.14,7,16,0.00 +2023-12-01T08:00,-4.9,962.8,2.67,6.00,13,24,0.00 +2023-12-01T09:00,-5.3,963.1,2.24,5.58,27,36,0.00 +2023-12-01T10:00,-5.3,962.6,2.47,5.66,32,44,0.00 +2023-12-01T11:00,-5.5,962.4,2.44,5.66,35,46,0.00 +2023-12-01T12:00,-5.6,962.6,2.13,5.02,49,59,0.00 +2023-12-01T13:00,-7.5,963.0,1.78,4.63,38,57,0.00 +2023-12-01T14:00,-7.2,963.2,1.78,4.85,38,58,0.00 +2023-12-01T15:00,-4.9,963.6,2.59,5.00,28,53,0.00 +2023-12-01T16:00,-3.2,964.1,2.20,3.47,51,57,0.00 +2023-12-01T17:00,-1.8,963.9,2.64,3.44,61,64,0.00 +2023-12-01T18:00,-0.6,963.3,2.33,2.91,47,49,0.00 +2023-12-01T19:00,-0.2,962.8,2.42,3.02,30,34,0.00 +2023-12-01T20:00,0.2,962.3,2.56,3.16,31,35,0.00 +2023-12-01T21:00,0.1,962.2,2.64,3.36,29,30,0.00 +2023-12-01T22:00,-0.7,962.0,2.15,3.94,28,30,0.00 +2023-12-01T23:00,-2.6,961.9,1.86,4.53,36,41,0.00 +2023-12-02T00:00,-3.0,962.2,2.00,4.94,53,54,0.00 +2023-12-02T01:00,-3.1,962.6,2.57,5.97,77,76,0.00 +2023-12-02T02:00,-3.4,962.7,2.70,6.20,90,90,0.00 +2023-12-02T03:00,-3.4,962.8,2.83,6.30,98,100,0.00 +2023-12-02T04:00,-3.6,962.7,2.69,6.07,112,110,0.00 +2023-12-02T05:00,-2.9,963.0,3.05,6.05,122,121,0.00 +2023-12-02T06:00,-3.3,962.9,3.20,6.47,129,129,0.00 +2023-12-02T07:00,-3.5,962.6,3.39,6.79,135,136,0.00 +2023-12-02T08:00,-4.0,962.5,3.19,6.66,139,139,0.00 +2023-12-02T09:00,-4.0,962.9,3.28,6.64,149,149,0.00 +2023-12-02T10:00,-4.6,962.8,3.53,7.08,155,157,0.00 +2023-12-02T11:00,-4.7,962.7,3.77,7.49,158,161,0.00 +2023-12-02T12:00,-4.7,962.5,4.05,7.82,160,164,0.00 +2023-12-02T13:00,-4.9,962.2,4.16,8.10,156,160,0.00 +2023-12-02T14:00,-5.0,962.1,4.33,8.39,161,165,0.00 +2023-12-02T15:00,-3.1,962.2,4.84,9.16,162,169,0.00 +2023-12-02T16:00,-0.7,962.3,4.44,6.73,166,169,0.00 +2023-12-02T17:00,1.4,961.8,4.59,6.30,169,170,0.00 +2023-12-02T18:00,2.7,961.3,5.53,7.42,174,175,0.00 +2023-12-02T19:00,3.1,960.4,4.95,6.55,172,173,0.00 +2023-12-02T20:00,3.2,959.8,5.14,6.87,167,167,0.00 +2023-12-02T21:00,2.9,959.4,5.10,7.13,164,165,0.00 +2023-12-02T22:00,1.5,958.9,3.90,7.08,157,161,0.00 +2023-12-02T23:00,-0.8,958.3,3.67,7.83,151,155,0.00 +2023-12-03T00:00,-1.1,958.1,4.75,9.26,150,155,0.00 +2023-12-03T01:00,-1.0,957.8,5.56,9.97,150,153,0.00 +2023-12-03T02:00,-0.7,957.4,5.41,9.42,155,158,0.00 +2023-12-03T03:00,-0.9,957.3,4.87,8.64,161,164,0.00 +2023-12-03T04:00,-1.7,957.0,4.56,8.42,165,167,0.00 +2023-12-03T05:00,-2.1,956.6,4.61,8.49,167,172,0.00 +2023-12-03T06:00,-1.9,956.3,4.53,8.20,174,179,0.00 +2023-12-03T07:00,-1.6,955.8,4.71,8.31,176,183,0.00 +2023-12-03T08:00,-1.2,955.2,4.42,7.60,175,181,0.00 +2023-12-03T09:00,-1.2,954.9,3.44,6.20,172,180,0.00 +2023-12-03T10:00,-1.8,954.6,2.72,5.60,174,182,0.00 +2023-12-03T11:00,-2.8,954.2,2.97,6.17,160,172,0.00 +2023-12-03T12:00,-3.0,953.8,3.26,6.58,153,163,0.00 +2023-12-03T13:00,-2.7,954.3,2.82,5.92,157,164,0.00 +2023-12-03T14:00,-2.9,954.6,2.68,5.41,153,164,0.00 +2023-12-03T15:00,-1.5,955.4,3.04,4.44,163,166,0.00 +2023-12-03T16:00,0.2,956.1,3.11,4.00,176,179,0.00 +2023-12-03T17:00,1.7,956.3,3.32,4.13,173,173,0.00 +2023-12-03T18:00,3.0,956.1,3.13,3.83,173,173,0.00 +2023-12-03T19:00,4.3,955.9,3.03,3.83,172,173,0.00 +2023-12-03T20:00,5.1,955.9,3.01,3.71,176,177,0.00 +2023-12-03T21:00,4.7,956.2,2.31,2.91,185,184,0.00 +2023-12-03T22:00,2.7,956.4,1.60,2.20,180,180,0.00 +2023-12-03T23:00,-0.5,956.6,2.22,2.41,172,175,0.00 +2023-12-04T00:00,-0.6,957.3,1.71,1.92,187,171,0.00 +2023-12-04T01:00,-2.1,957.8,1.50,1.84,270,311,0.00 +2023-12-04T02:00,-3.3,958.3,1.70,2.70,273,309,0.00 +2023-12-04T03:00,-3.6,958.4,1.50,2.56,266,301,0.00 +2023-12-04T04:00,-3.6,958.6,1.75,3.34,257,279,0.00 +2023-12-04T05:00,-4.0,958.7,1.50,2.92,233,248,0.00 +2023-12-04T06:00,-4.0,958.8,2.14,4.18,217,222,0.00 +2023-12-04T07:00,-4.0,959.0,2.69,5.76,225,231,0.00 +2023-12-04T08:00,-3.9,959.1,2.48,5.72,220,234,0.00 +2023-12-04T09:00,-3.8,959.0,3.44,6.67,216,230,0.00 +2023-12-04T10:00,-3.5,959.0,4.05,8.09,220,230,0.00 +2023-12-04T11:00,-3.2,959.0,4.18,8.22,228,238,0.00 +2023-12-04T12:00,-2.8,959.1,4.39,8.49,227,238,0.00 +2023-12-04T13:00,-3.7,958.8,4.07,7.46,205,215,0.00 +2023-12-04T14:00,-3.5,959.4,4.57,8.18,209,215,0.00 +2023-12-04T15:00,-2.1,960.3,5.13,8.54,213,218,0.00 +2023-12-04T16:00,-0.6,960.3,4.97,7.65,205,207,0.00 +2023-12-04T17:00,0.8,960.2,5.06,7.20,205,207,0.00 +2023-12-04T18:00,2.6,959.0,5.00,6.78,200,202,0.00 +2023-12-04T19:00,3.3,958.7,4.81,6.41,201,203,0.00 +2023-12-04T20:00,3.5,958.3,4.55,6.20,199,201,0.00 +2023-12-04T21:00,2.1,957.9,3.50,5.81,178,184,0.10 +2023-12-04T22:00,1.4,958.0,3.13,5.59,163,170,0.00 +2023-12-04T23:00,0.6,958.4,3.22,6.21,173,177,0.00 +2023-12-05T00:00,0.0,958.5,2.60,5.71,182,183,0.00 +2023-12-05T01:00,-2.1,958.5,2.35,5.62,168,175,0.00 +2023-12-05T02:00,-3.6,958.4,2.40,3.61,180,194,0.00 +2023-12-05T03:00,-2.2,959.0,0.61,1.36,279,287,0.00 +2023-12-05T04:00,-3.7,959.3,1.71,4.18,339,349,0.00 +2023-12-05T05:00,-2.2,960.3,2.53,5.31,342,357,0.00 +2023-12-05T06:00,-2.9,961.4,3.13,6.72,333,345,0.00 +2023-12-05T07:00,-2.7,962.6,4.30,8.29,329,337,0.00 +2023-12-05T08:00,-2.1,963.4,4.83,8.75,333,338,0.00 +2023-12-05T09:00,-1.6,964.7,5.28,8.97,335,338,0.00 +2023-12-05T10:00,-2.4,965.3,5.10,8.95,332,335,0.00 +2023-12-05T11:00,-2.6,966.2,5.05,8.56,326,330,0.00 +2023-12-05T12:00,-2.9,967.1,5.05,8.56,326,330,0.00 +2023-12-05T13:00,-3.7,967.7,5.08,8.38,324,327,0.00 +2023-12-05T14:00,-4.0,968.9,5.46,8.68,319,322,0.00 +2023-12-05T15:00,-3.5,970.0,5.08,6.69,324,325,0.00 +2023-12-05T16:00,-2.5,970.9,5.27,6.74,327,328,0.00 +2023-12-05T17:00,-1.1,971.6,4.63,6.07,327,327,0.00 +2023-12-05T18:00,0.2,971.4,3.67,4.70,331,331,0.00 +2023-12-05T19:00,1.3,971.1,3.32,4.17,316,316,0.00 +2023-12-05T20:00,2.1,971.5,3.72,4.88,306,305,0.00 +2023-12-05T21:00,2.2,971.6,2.78,3.72,308,306,0.00 +2023-12-05T22:00,-0.4,971.2,2.33,3.31,295,299,0.00 +2023-12-05T23:00,-2.9,970.6,2.80,3.54,268,286,0.00 +2023-12-06T00:00,-3.4,970.9,3.01,4.02,255,276,0.00 +2023-12-06T01:00,-0.6,971.9,1.30,2.32,203,263,0.00 +2023-12-06T02:00,-4.0,971.6,2.22,3.62,216,246,0.00 +2023-12-06T03:00,-4.1,971.5,1.92,3.89,208,244,0.00 +2023-12-06T04:00,-4.0,971.3,2.20,4.25,210,240,0.00 +2023-12-06T05:00,-2.8,970.8,3.55,6.50,202,217,0.00 +2023-12-06T06:00,-3.0,971.0,3.83,8.39,213,219,0.00 +2023-12-06T07:00,-2.8,970.8,4.34,8.80,206,216,0.00 +2023-12-06T08:00,-1.8,969.8,5.24,10.12,204,210,0.00 +2023-12-06T09:00,-1.3,969.3,5.65,10.74,203,208,0.00 +2023-12-06T10:00,-1.0,968.5,6.46,11.85,202,207,0.00 +2023-12-06T11:00,-0.4,967.3,7.26,12.79,203,207,0.00 +2023-12-06T12:00,0.5,966.2,7.84,13.33,203,207,0.00 +2023-12-06T13:00,0.9,965.3,8.47,14.31,203,206,0.00 +2023-12-06T14:00,1.0,964.5,8.69,14.58,203,206,0.00 +2023-12-06T15:00,2.1,963.6,9.26,14.81,206,209,0.00 +2023-12-06T16:00,3.6,963.5,8.86,14.94,208,211,0.00 +2023-12-06T17:00,5.1,962.5,8.68,13.01,204,206,0.00 +2023-12-06T18:00,6.9,961.3,8.24,11.92,209,210,0.00 +2023-12-06T19:00,8.3,960.2,7.72,11.10,211,212,0.00 +2023-12-06T20:00,8.9,959.4,7.24,10.59,213,214,0.00 +2023-12-06T21:00,8.7,959.1,6.10,10.04,221,224,0.00 +2023-12-06T22:00,6.8,959.0,4.14,8.51,233,236,0.00 +2023-12-06T23:00,4.7,958.4,5.16,10.16,226,234,0.00 +2023-12-07T00:00,4.0,957.9,5.52,10.65,228,236,0.00 +2023-12-07T01:00,5.6,958.0,5.73,10.84,227,232,0.00 +2023-12-07T02:00,5.6,957.7,5.08,10.03,234,240,0.00 +2023-12-07T03:00,5.2,957.2,4.72,9.59,238,247,0.00 +2023-12-07T04:00,4.9,956.7,4.44,9.14,239,250,0.00 +2023-12-07T05:00,4.3,956.1,4.28,8.71,233,248,0.00 +2023-12-07T06:00,3.8,955.9,4.14,8.51,233,250,0.00 +2023-12-07T07:00,3.4,955.1,3.72,7.91,234,254,0.00 +2023-12-07T08:00,2.8,954.4,3.06,6.45,232,257,0.00 +2023-12-07T09:00,2.1,954.2,2.98,5.52,220,248,0.00 +2023-12-07T10:00,1.8,953.6,2.92,5.24,218,241,0.00 +2023-12-07T11:00,1.7,952.8,2.72,4.84,216,240,0.00 +2023-12-07T12:00,1.4,952.0,2.61,4.13,212,238,0.00 +2023-12-07T13:00,1.2,951.5,3.42,4.66,195,195,0.00 +2023-12-07T14:00,1.3,951.3,4.00,7.20,193,190,0.00 +2023-12-07T15:00,3.0,950.9,4.34,7.73,188,185,0.00 +2023-12-07T16:00,5.7,950.9,4.41,7.71,176,177,0.00 +2023-12-07T17:00,7.3,950.6,4.23,10.50,173,181,0.00 +2023-12-07T18:00,9.0,950.0,4.24,6.92,172,176,0.00 +2023-12-07T19:00,9.8,949.0,4.82,6.81,175,177,0.00 +2023-12-07T20:00,10.0,948.1,4.47,6.36,170,172,0.00 +2023-12-07T21:00,9.3,947.4,4.75,7.90,172,179,0.00 +2023-12-07T22:00,7.5,946.4,4.59,8.84,169,175,0.00 +2023-12-07T23:00,5.2,945.5,4.73,9.79,167,172,0.00 +2023-12-08T00:00,4.7,945.5,6.10,11.61,178,182,0.00 +2023-12-08T01:00,8.2,945.4,6.91,12.20,178,180,0.00 +2023-12-08T02:00,7.5,944.5,6.83,12.12,185,188,0.00 +2023-12-08T03:00,7.2,943.8,7.35,12.84,195,198,0.00 +2023-12-08T04:00,6.8,942.8,7.34,12.94,197,201,0.00 +2023-12-08T05:00,6.4,942.7,7.16,12.89,205,209,0.00 +2023-12-08T06:00,6.3,942.8,7.01,12.74,222,228,0.00 +2023-12-08T07:00,6.3,943.2,6.62,12.11,243,250,0.00 +2023-12-08T08:00,6.3,944.0,6.36,11.92,262,267,0.00 +2023-12-08T09:00,6.3,945.1,5.92,11.10,265,270,0.00 +2023-12-08T10:00,5.6,945.8,5.25,10.00,262,269,0.00 +2023-12-08T11:00,5.3,946.4,6.16,11.07,257,264,0.00 +2023-12-08T12:00,5.1,947.0,6.44,11.20,264,268,0.00 +2023-12-08T13:00,4.3,947.4,5.85,10.38,257,263,0.00 +2023-12-08T14:00,3.8,948.1,6.09,10.54,256,261,0.00 +2023-12-08T15:00,4.6,948.8,5.89,9.75,255,260,0.00 +2023-12-08T16:00,6.4,949.6,6.87,9.88,257,259,0.00 +2023-12-08T17:00,7.4,949.5,7.09,9.90,261,262,0.00 +2023-12-08T18:00,8.3,949.7,8.47,11.82,263,262,0.00 +2023-12-08T19:00,8.6,949.3,7.28,10.11,261,261,0.00 +2023-12-08T20:00,8.6,949.4,7.02,9.65,259,260,0.00 +2023-12-08T21:00,8.0,949.7,6.67,9.61,257,258,0.00 +2023-12-08T22:00,7.1,950.1,5.54,9.19,253,256,0.00 +2023-12-08T23:00,5.6,950.7,5.02,9.11,247,251,0.00 +2023-12-09T00:00,5.3,950.8,5.35,9.68,249,254,0.00 +2023-12-09T01:00,5.1,951.2,5.47,9.41,252,255,0.00 +2023-12-09T02:00,4.5,950.9,5.69,9.77,246,250,0.00 +2023-12-09T03:00,3.6,951.0,5.66,9.71,249,253,0.00 +2023-12-09T04:00,2.1,951.2,5.57,9.90,252,256,0.00 +2023-12-09T05:00,1.4,951.2,6.14,10.51,258,262,0.00 +2023-12-09T06:00,1.7,951.3,6.14,10.13,258,261,0.00 +2023-12-09T07:00,1.4,951.0,5.70,9.59,255,259,0.00 +2023-12-09T08:00,1.4,951.1,5.77,9.44,261,265,0.00 +2023-12-09T09:00,1.4,951.3,5.90,9.23,271,274,0.00 +2023-12-09T10:00,1.2,951.4,6.01,9.38,274,277,0.00 +2023-12-09T11:00,1.0,951.9,6.14,9.46,286,288,0.00 +2023-12-09T12:00,0.6,952.6,6.75,10.24,295,297,0.10 +2023-12-09T13:00,-0.6,953.4,8.49,12.46,304,306,0.10 +2023-12-09T14:00,-1.2,954.3,8.35,12.40,304,305,0.10 +2023-12-09T15:00,-1.6,955.3,9.04,13.30,305,306,0.30 +2023-12-09T16:00,-1.3,956.6,11.46,16.55,314,315,0.20 +2023-12-09T17:00,-1.1,957.4,8.99,13.37,313,313,0.20 +2023-12-09T18:00,-0.9,957.9,10.33,15.21,317,317,0.20 +2023-12-09T19:00,-1.2,958.9,11.41,16.66,319,319,0.10 +2023-12-09T20:00,-1.1,960.1,11.81,17.01,321,321,0.00 +2023-12-09T21:00,-1.3,961.7,12.12,17.51,325,325,0.00 +2023-12-09T22:00,-1.4,963.2,11.36,16.44,323,323,0.00 +2023-12-09T23:00,-1.4,964.3,9.42,14.08,323,323,0.00 +2023-12-10T00:00,-2.0,965.3,9.51,14.51,320,321,0.00 +2023-12-10T01:00,-4.0,966.1,9.06,13.96,318,319,0.00 +2023-12-10T02:00,-4.5,966.7,8.64,13.68,318,319,0.00 +2023-12-10T03:00,-4.7,966.9,8.57,13.47,318,319,0.00 +2023-12-10T04:00,-4.9,966.9,8.29,13.19,318,319,0.00 +2023-12-10T05:00,-5.2,967.1,7.45,12.01,320,321,0.00 +2023-12-10T06:00,-5.1,967.6,6.87,10.99,318,319,0.00 +2023-12-10T07:00,-4.9,967.7,6.37,10.26,316,318,0.00 +2023-12-10T08:00,-4.8,968.0,6.30,10.06,317,318,0.00 +2023-12-10T09:00,-4.5,968.1,6.38,9.54,325,325,0.00 +2023-12-10T10:00,-4.8,967.7,4.77,7.63,327,328,0.00 +2023-12-10T11:00,-5.1,967.6,3.96,6.74,315,319,0.00 +2023-12-10T12:00,-5.8,967.5,2.92,5.83,301,309,0.00 +2023-12-10T13:00,-6.7,966.8,2.62,5.59,310,317,0.00 +2023-12-10T14:00,-7.2,966.9,2.55,5.33,296,310,0.00 +2023-12-10T15:00,-5.6,967.3,2.57,4.91,283,303,0.00 +2023-12-10T16:00,-3.8,967.9,2.69,3.55,301,302,0.00 +2023-12-10T17:00,-2.5,967.5,2.14,2.64,307,307,0.00 +2023-12-10T18:00,-1.5,966.8,1.97,2.37,300,298,0.00 +2023-12-10T19:00,-0.7,966.2,1.55,1.96,285,285,0.00 +2023-12-10T20:00,-0.4,965.6,1.20,1.50,270,270,0.00 +2023-12-10T21:00,-0.2,965.6,1.40,1.81,266,264,0.00 +2023-12-10T22:00,-0.7,965.4,0.80,1.20,270,265,0.00 +2023-12-10T23:00,-1.7,965.3,0.80,0.20,90,90,0.00 +2023-12-11T00:00,-5.2,964.8,1.84,1.25,112,119,0.00 +2023-12-11T01:00,-5.6,966.0,1.80,3.60,90,90,0.00 +2023-12-11T02:00,-6.1,966.0,1.75,3.73,103,98,0.00 +2023-12-11T03:00,-6.3,965.9,1.75,3.94,121,117,0.00 +2023-12-11T04:00,-6.4,965.7,2.12,4.46,135,132,0.00 +2023-12-11T05:00,-6.5,965.7,2.20,4.76,141,141,0.00 +2023-12-11T06:00,-6.6,965.6,2.13,4.78,139,143,0.00 +2023-12-11T07:00,-6.7,965.5,1.86,4.42,144,142,0.00 +2023-12-11T08:00,-6.8,965.2,1.97,4.53,150,149,0.00 +2023-12-11T09:00,-6.7,965.1,2.51,5.32,151,154,0.00 +2023-12-11T10:00,-6.7,964.8,2.92,5.79,158,159,0.00 +2023-12-11T11:00,-6.5,964.6,3.26,6.49,169,170,0.00 +2023-12-11T12:00,-6.4,964.7,3.41,6.70,177,180,0.00 +2023-12-11T13:00,-7.0,964.9,3.55,6.95,170,173,0.00 +2023-12-11T14:00,-6.6,964.9,4.20,7.81,180,182,0.00 +2023-12-11T15:00,-4.9,965.2,4.75,9.59,188,191,0.00 +2023-12-11T16:00,-2.5,965.7,4.66,7.88,195,195,0.00 +2023-12-11T17:00,-0.1,965.4,5.22,7.50,200,201,0.00 +2023-12-11T18:00,2.0,964.5,5.61,7.84,202,203,0.00 +2023-12-11T19:00,3.5,963.7,5.95,8.20,209,210,0.00 +2023-12-11T20:00,4.2,963.4,6.10,8.43,221,222,0.00 +2023-12-11T21:00,4.1,963.2,5.59,8.15,227,228,0.00 +2023-12-11T22:00,2.9,963.3,4.74,8.54,245,249,0.00 +2023-12-11T23:00,0.9,963.5,4.43,9.06,252,259,0.00 +2023-12-12T00:00,0.6,963.7,4.55,9.20,261,271,0.00 +2023-12-12T01:00,0.7,964.8,4.85,9.43,278,287,0.00 +2023-12-12T02:00,1.2,966.3,5.94,10.31,306,309,0.00 +2023-12-12T03:00,-0.3,967.3,6.09,10.61,312,315,0.00 +2023-12-12T04:00,-1.2,968.1,6.39,10.97,310,312,0.00 +2023-12-12T05:00,-1.7,969.2,6.78,11.31,307,309,0.00 +2023-12-12T06:00,-2.3,969.8,6.19,10.64,304,307,0.00 +2023-12-12T07:00,-2.7,970.5,6.24,10.62,305,308,0.00 +2023-12-12T08:00,-3.1,971.1,6.39,10.84,310,312,0.00 +2023-12-12T09:00,-3.3,972.1,6.65,11.10,313,314,0.00 +2023-12-12T10:00,-3.8,972.8,6.44,10.68,316,317,0.00 +2023-12-12T11:00,-4.3,973.7,5.94,9.90,314,317,0.00 +2023-12-12T12:00,-4.8,974.6,5.52,9.27,314,316,0.00 +2023-12-12T13:00,-6.9,975.3,4.82,8.63,312,315,0.00 +2023-12-12T14:00,-7.3,975.9,4.22,7.94,306,311,0.00 +2023-12-12T15:00,-6.0,976.8,3.89,7.92,299,307,0.00 +2023-12-12T16:00,-4.4,977.9,4.72,6.41,302,304,0.00 +2023-12-12T17:00,-3.2,978.2,4.55,5.91,303,304,0.00 +2023-12-12T18:00,-2.1,978.1,4.03,5.15,293,294,0.00 +2023-12-12T19:00,-1.1,978.1,3.88,5.02,282,283,0.00 +2023-12-12T20:00,-0.5,977.8,3.91,5.12,274,274,0.00 +2023-12-12T21:00,-0.4,978.0,3.61,4.81,273,274,0.00 +2023-12-12T22:00,-1.7,978.0,2.12,4.62,262,265,0.00 +2023-12-12T23:00,-4.3,977.7,2.24,5.17,243,255,0.00 +2023-12-13T00:00,-4.9,978.0,2.80,6.11,235,249,0.00 +2023-12-13T01:00,-4.9,979.0,3.14,6.77,239,251,0.00 +2023-12-13T02:00,-5.1,978.9,3.50,7.20,233,245,0.00 +2023-12-13T03:00,-5.3,978.9,3.82,7.82,225,235,0.00 +2023-12-13T04:00,-5.2,978.7,3.97,8.03,221,231,0.00 +2023-12-13T05:00,-5.0,979.2,4.39,8.54,223,232,0.00 +2023-12-13T06:00,-4.5,979.5,5.30,9.86,224,230,0.00 +2023-12-13T07:00,-4.0,979.3,5.80,10.63,224,229,0.00 +2023-12-13T08:00,-3.5,979.4,5.97,10.87,230,236,0.00 +2023-12-13T09:00,-2.9,979.7,6.28,11.27,233,238,0.00 +2023-12-13T10:00,-2.6,979.8,6.55,11.65,236,240,0.00 +2023-12-13T11:00,-2.5,979.8,6.77,11.87,236,240,0.00 +2023-12-13T12:00,-2.6,980.0,6.46,11.47,235,240,0.00 +2023-12-13T13:00,-3.1,980.5,5.74,10.57,235,241,0.00 +2023-12-13T14:00,-3.4,980.7,5.20,9.78,232,239,0.00 +2023-12-13T15:00,-2.3,981.2,5.46,9.37,229,236,0.00 +2023-12-13T16:00,-0.4,982.0,5.16,8.81,224,231,0.00 +2023-12-13T17:00,1.6,982.0,5.02,7.15,226,228,0.00 +2023-12-13T18:00,3.3,982.2,4.53,6.17,229,230,0.00 +2023-12-13T19:00,4.4,981.6,4.31,5.73,226,227,0.00 +2023-12-13T20:00,5.0,980.6,4.55,6.17,220,220,0.00 +2023-12-13T21:00,4.8,980.5,4.22,6.14,216,217,0.00 +2023-12-13T22:00,2.9,980.5,4.13,8.00,212,217,0.00 +2023-12-13T23:00,0.9,980.5,4.72,9.50,216,221,0.00 +2023-12-14T00:00,0.1,980.7,4.98,9.90,218,223,0.00 +2023-12-14T01:00,0.8,980.8,4.97,9.83,220,226,0.00 +2023-12-14T02:00,0.6,980.6,5.70,10.82,218,224,0.00 +2023-12-14T03:00,0.4,980.6,5.28,10.19,217,223,0.00 +2023-12-14T04:00,0.2,980.4,5.16,10.06,216,222,0.00 +2023-12-14T05:00,0.2,980.4,5.49,10.44,213,220,0.00 +2023-12-14T06:00,0.2,980.3,5.71,10.74,213,219,0.00 +2023-12-14T07:00,0.2,980.2,5.88,11.06,215,221,0.00 +2023-12-14T08:00,0.3,979.9,6.12,11.39,218,223,0.00 +2023-12-14T09:00,0.2,979.9,6.26,11.46,219,224,0.00 +2023-12-14T10:00,0.2,979.7,6.30,11.60,222,226,0.00 +2023-12-14T11:00,0.3,979.5,6.44,11.83,223,228,0.00 +2023-12-14T12:00,0.5,979.2,6.22,11.49,224,229,0.00 +2023-12-14T13:00,0.4,979.5,5.52,10.63,222,229,0.00 +2023-12-14T14:00,0.1,979.4,5.36,10.26,217,223,0.00 +2023-12-14T15:00,1.5,980.0,5.83,10.28,211,217,0.00 +2023-12-14T16:00,3.5,980.1,5.39,11.48,202,213,0.00 +2023-12-14T17:00,5.6,979.6,5.07,8.50,202,207,0.00 +2023-12-14T18:00,7.2,978.7,5.46,7.87,204,206,0.00 +2023-12-14T19:00,8.2,978.2,5.81,8.23,207,207,0.00 +2023-12-14T20:00,8.6,977.4,5.31,7.58,200,203,0.00 +2023-12-14T21:00,8.1,976.8,5.35,8.68,201,204,0.00 +2023-12-14T22:00,6.4,976.4,4.79,9.08,203,207,0.00 +2023-12-14T23:00,4.1,975.8,4.88,9.93,203,206,0.00 +2023-12-15T00:00,3.3,975.5,5.28,10.42,205,208,0.00 +2023-12-15T01:00,5.3,975.2,5.24,10.11,204,207,0.00 +2023-12-15T02:00,4.7,974.7,5.33,10.20,203,207,0.00 +2023-12-15T03:00,4.5,974.2,5.66,10.56,201,205,0.00 +2023-12-15T04:00,4.3,973.8,5.57,10.23,198,202,0.00 +2023-12-15T05:00,4.5,973.8,5.97,10.50,194,198,0.00 +2023-12-15T06:00,4.2,973.6,6.11,10.85,195,198,0.00 +2023-12-15T07:00,3.8,973.6,5.55,10.06,194,197,0.00 +2023-12-15T08:00,4.6,972.9,6.46,11.04,196,200,0.00 +2023-12-15T09:00,4.8,972.8,6.99,11.75,199,202,0.00 +2023-12-15T10:00,4.2,972.7,6.82,11.54,202,206,0.00 +2023-12-15T11:00,3.5,972.3,5.74,10.15,203,208,0.00 +2023-12-15T12:00,3.4,972.5,4.57,8.32,209,213,0.30 +2023-12-15T13:00,3.6,972.4,4.40,8.34,197,203,0.00 +2023-12-15T14:00,3.3,972.2,4.05,7.98,196,202,0.00 +2023-12-15T15:00,3.8,972.4,2.94,5.64,198,207,0.00 +2023-12-15T16:00,4.5,973.0,2.94,5.13,190,201,0.00 +2023-12-15T17:00,4.3,972.7,3.00,5.26,182,194,0.10 +2023-12-15T18:00,5.2,971.9,3.77,5.76,191,197,0.00 +2023-12-15T19:00,4.9,971.2,3.63,5.89,188,195,0.00 +2023-12-15T20:00,4.9,970.5,2.79,4.70,165,179,0.00 +2023-12-15T21:00,4.8,970.2,2.39,4.33,147,161,0.00 +2023-12-15T22:00,4.5,970.6,2.47,4.88,148,157,0.00 +2023-12-15T23:00,3.9,970.3,2.20,4.65,141,155,0.30 +2023-12-16T00:00,3.6,970.2,2.44,5.05,145,153,0.20 +2023-12-16T01:00,3.7,970.4,2.62,5.33,137,140,0.20 +2023-12-16T02:00,3.5,970.0,2.40,4.97,135,140,0.30 +2023-12-16T03:00,3.2,969.7,2.19,4.70,133,142,0.50 +2023-12-16T04:00,3.0,969.4,1.50,3.76,127,140,0.80 +2023-12-16T05:00,2.8,969.3,1.41,3.61,135,146,1.20 +2023-12-16T06:00,2.6,968.6,1.35,3.19,132,148,1.20 +2023-12-16T07:00,2.5,968.0,1.66,3.16,123,145,1.30 +2023-12-16T08:00,2.3,967.2,1.22,2.72,125,144,0.90 +2023-12-16T09:00,2.4,966.6,0.82,1.49,166,160,1.00 +2023-12-16T10:00,1.4,965.9,0.41,0.91,256,186,1.50 +2023-12-16T11:00,1.0,965.4,0.82,1.14,256,232,1.50 +2023-12-16T12:00,0.8,965.1,1.39,2.01,291,276,0.90 +2023-12-16T13:00,0.5,965.0,1.02,1.33,11,13,0.30 +2023-12-16T14:00,0.4,964.4,1.12,1.65,10,14,0.20 +2023-12-16T15:00,0.4,964.0,1.12,1.26,27,18,0.10 +2023-12-16T16:00,0.9,964.3,1.48,1.70,332,332,0.00 +2023-12-16T17:00,1.4,964.1,2.28,2.94,322,325,0.00 +2023-12-16T18:00,1.8,963.5,3.22,4.02,324,325,0.00 +2023-12-16T19:00,2.1,963.0,3.74,4.77,326,327,0.00 +2023-12-16T20:00,2.3,962.5,4.66,6.10,325,325,0.00 +2023-12-16T21:00,2.3,962.7,4.80,6.66,324,324,0.00 +2023-12-16T22:00,2.2,962.5,4.08,5.80,324,324,0.00 +2023-12-16T23:00,1.6,962.7,3.34,5.28,321,323,0.00 +2023-12-17T00:00,1.4,962.8,2.69,4.46,315,318,0.00 +2023-12-17T01:00,1.1,962.4,2.51,4.16,299,305,0.00 +2023-12-17T02:00,1.1,962.6,2.82,4.72,297,302,0.00 +2023-12-17T03:00,1.1,962.0,1.92,3.51,279,290,0.00 +2023-12-17T04:00,0.9,961.5,2.06,3.71,256,267,0.00 +2023-12-17T05:00,0.8,961.2,3.22,5.50,244,251,0.00 +2023-12-17T06:00,0.3,960.8,4.13,6.62,238,241,0.00 +2023-12-17T07:00,-0.2,960.3,4.38,7.16,243,245,0.00 +2023-12-17T08:00,-0.6,960.2,4.74,6.99,245,246,0.00 +2023-12-17T09:00,-1.2,959.7,4.08,7.03,234,240,0.00 +2023-12-17T10:00,-1.7,958.9,4.08,7.96,234,242,0.00 +2023-12-17T11:00,-1.3,959.0,4.44,8.35,247,253,0.00 +2023-12-17T12:00,-1.5,959.2,4.13,8.10,263,270,0.00 +2023-12-17T13:00,-2.2,959.5,3.82,7.71,276,283,0.00 +2023-12-17T14:00,-2.1,959.4,4.16,8.10,294,303,0.00 +2023-12-17T15:00,-0.8,960.0,4.55,8.98,310,315,0.00 +2023-12-17T16:00,0.7,961.0,5.38,7.92,317,317,0.00 +2023-12-17T17:00,1.9,961.3,5.95,8.30,319,319,0.00 +2023-12-17T18:00,2.9,961.2,6.16,8.50,317,318,0.00 +2023-12-17T19:00,3.7,961.2,6.29,8.63,316,316,0.00 +2023-12-17T20:00,3.9,961.4,6.93,9.62,315,315,0.00 +2023-12-17T21:00,3.2,961.5,5.30,7.71,314,314,0.00 +2023-12-17T22:00,2.8,961.6,5.38,8.36,305,307,0.00 +2023-12-17T23:00,2.4,962.2,5.52,9.04,302,303,0.00 +2023-12-18T00:00,2.2,962.9,5.98,9.73,308,310,0.00 +2023-12-18T01:00,1.8,964.0,6.96,11.48,305,308,0.00 +2023-12-18T02:00,2.2,964.6,8.21,12.82,317,318,0.00 +2023-12-18T03:00,-0.0,965.2,9.40,14.53,325,326,0.00 +2023-12-18T04:00,-2.0,966.2,8.76,13.94,322,323,0.00 +2023-12-18T05:00,-3.2,967.1,8.32,12.98,321,323,0.00 +2023-12-18T06:00,-3.9,967.2,7.75,12.04,321,322,0.00 +2023-12-18T07:00,-4.3,967.4,7.64,11.98,317,319,0.00 +2023-12-18T08:00,-4.5,967.9,7.72,12.05,318,319,0.00 +2023-12-18T09:00,-4.2,968.6,7.76,11.94,322,324,0.00 +2023-12-18T10:00,-4.2,969.1,7.77,11.76,325,326,0.00 +2023-12-18T11:00,-5.1,969.6,7.89,12.32,330,330,0.00 +2023-12-18T12:00,-5.9,970.3,8.08,14.10,329,331,0.00 +2023-12-18T13:00,-8.2,970.9,7.36,12.67,329,331,0.00 +2023-12-18T14:00,-8.9,971.0,6.40,11.32,331,334,0.00 +2023-12-18T15:00,-8.5,972.1,7.32,10.55,328,329,0.00 +2023-12-18T16:00,-7.6,972.5,6.67,9.13,330,331,0.00 +2023-12-18T17:00,-6.6,972.6,6.00,8.01,330,331,0.00 +2023-12-18T18:00,-5.5,972.4,5.74,7.55,325,325,0.00 +2023-12-18T19:00,-4.6,971.8,5.16,6.82,324,325,0.00 +2023-12-18T20:00,-4.0,971.3,4.40,5.70,321,322,0.00 +2023-12-18T21:00,-3.9,970.7,3.26,4.18,317,318,0.00 +2023-12-18T22:00,-4.4,970.4,2.28,3.14,308,307,0.00 +2023-12-18T23:00,-6.8,970.1,2.16,2.69,283,292,0.00 +2023-12-19T00:00,-7.0,969.6,1.86,2.43,234,261,0.00 +2023-12-19T01:00,-7.0,968.9,2.38,5.06,195,210,0.00 +2023-12-19T02:00,-6.5,968.1,3.00,6.12,180,191,0.00 +2023-12-19T03:00,-6.3,967.5,3.81,7.45,185,192,0.00 +2023-12-19T04:00,-5.9,967.1,5.00,9.20,196,199,0.00 +2023-12-19T05:00,-4.9,966.6,6.10,10.23,198,202,0.00 +2023-12-19T06:00,-4.4,965.8,6.45,10.90,199,202,0.00 +2023-12-19T07:00,-3.8,964.8,6.90,11.48,197,200,0.00 +2023-12-19T08:00,-3.4,963.7,7.35,12.27,195,198,0.00 +2023-12-19T09:00,-3.2,963.4,7.54,12.56,195,197,0.00 +2023-12-19T10:00,-2.9,962.4,8.00,13.20,193,196,0.00 +2023-12-19T11:00,-2.4,961.7,8.08,13.22,195,198,0.00 +2023-12-19T12:00,-2.0,961.5,7.75,12.78,197,200,0.00 +2023-12-19T13:00,-0.9,960.8,8.29,13.82,200,202,0.00 +2023-12-19T14:00,-0.9,960.7,7.49,12.65,199,202,0.00 +2023-12-19T15:00,-0.0,960.8,6.86,11.40,199,202,0.00 +2023-12-19T16:00,1.2,961.3,4.69,9.68,191,200,0.00 +2023-12-19T17:00,2.5,961.4,5.49,8.15,190,194,0.00 +2023-12-19T18:00,3.3,960.6,5.32,7.57,192,195,0.00 +2023-12-19T19:00,3.6,959.9,4.23,5.90,187,191,0.00 +2023-12-19T20:00,4.0,959.6,3.30,4.81,180,184,0.00 +2023-12-19T21:00,4.5,959.6,2.84,4.31,170,176,0.00 +2023-12-19T22:00,2.9,960.0,2.09,4.90,163,180,0.00 +2023-12-19T23:00,-0.6,960.1,2.33,5.42,170,185,0.00 +2023-12-20T00:00,-1.0,960.6,2.51,5.66,175,188,0.00 +2023-12-20T01:00,-1.6,961.9,2.01,4.73,153,167,0.00 +2023-12-20T02:00,-2.8,962.1,2.21,4.12,162,174,0.00 +2023-12-20T03:00,-2.8,962.2,1.94,3.70,168,178,0.00 +2023-12-20T04:00,-2.7,962.3,2.06,3.73,166,172,0.00 +2023-12-20T05:00,-3.6,962.8,2.11,2.90,175,178,0.00 +2023-12-20T06:00,-3.3,963.3,1.70,1.43,177,168,0.00 +2023-12-20T07:00,-3.6,963.5,1.61,1.56,150,135,0.00 +2023-12-20T08:00,-4.2,963.8,1.92,1.89,141,122,0.00 +2023-12-20T09:00,-2.7,964.9,1.00,1.43,53,78,0.00 +2023-12-20T10:00,-4.6,965.3,1.51,2.86,8,36,0.00 +2023-12-20T11:00,-4.8,966.0,2.47,5.20,21,38,0.00 +2023-12-20T12:00,-5.0,966.7,2.08,5.46,55,62,0.00 +2023-12-20T13:00,-4.6,967.0,2.71,6.20,94,92,0.00 +2023-12-20T14:00,-4.4,967.7,2.75,6.36,100,103,0.00 +2023-12-20T15:00,-2.9,968.7,3.31,6.30,85,100,0.00 +2023-12-20T16:00,-0.8,970.0,2.51,6.20,85,100,0.00 +2023-12-20T17:00,1.2,970.6,2.81,3.80,86,92,0.00 +2023-12-20T18:00,2.8,969.9,3.06,4.03,79,83,0.00 +2023-12-20T19:00,3.8,969.7,3.21,4.20,85,87,0.00 +2023-12-20T20:00,4.0,969.5,3.41,4.50,87,90,0.00 +2023-12-20T21:00,3.6,969.4,3.61,5.10,85,88,0.00 +2023-12-20T22:00,2.2,969.5,3.21,6.40,86,91,0.00 +2023-12-20T23:00,0.5,969.7,3.20,7.22,90,95,0.00 +2023-12-21T00:00,0.1,970.3,3.37,7.62,102,104,0.00 +2023-12-21T01:00,0.4,970.9,3.83,8.25,110,113,0.00 +2023-12-21T02:00,0.1,971.3,3.71,7.94,117,121,0.00 +2023-12-21T03:00,-0.1,971.3,3.69,7.84,123,128,0.00 +2023-12-21T04:00,-0.3,971.2,3.97,7.96,124,129,0.00 +2023-12-21T05:00,-0.5,971.2,4.22,8.36,126,131,0.00 +2023-12-21T06:00,-0.7,971.2,4.19,8.20,130,134,0.00 +2023-12-21T07:00,-0.8,971.0,4.04,7.92,132,137,0.00 +2023-12-21T08:00,-1.0,970.6,3.96,7.86,135,139,0.00 +2023-12-21T09:00,-1.0,970.5,3.89,7.66,136,139,0.00 +2023-12-21T10:00,-1.2,970.2,3.75,7.47,136,141,0.00 +2023-12-21T11:00,-1.4,969.8,4.39,8.31,137,140,0.00 +2023-12-21T12:00,-1.6,970.1,3.83,7.77,147,148,0.00 +2023-12-21T13:00,-1.8,970.3,3.62,7.60,141,145,0.00 +2023-12-21T14:00,-1.8,970.1,4.32,8.34,138,142,0.00 +2023-12-21T15:00,-0.5,970.2,4.64,8.49,143,146,0.00 +2023-12-21T16:00,1.4,970.4,4.16,7.46,145,148,0.00 +2023-12-21T17:00,3.5,970.2,4.44,6.40,149,151,0.00 +2023-12-21T18:00,4.7,969.0,4.34,6.26,151,153,0.00 +2023-12-21T19:00,5.7,968.2,4.31,6.07,158,160,0.00 +2023-12-21T20:00,5.9,967.9,4.18,5.80,163,165,0.00 +2023-12-21T21:00,5.8,967.8,3.51,5.29,160,165,0.00 +2023-12-21T22:00,5.1,967.5,2.82,5.80,157,165,0.00 +2023-12-21T23:00,4.1,967.4,3.23,6.65,158,168,0.00 +2023-12-22T00:00,4.2,967.5,3.92,7.52,161,166,0.00 +2023-12-22T01:00,3.5,967.2,3.99,7.69,158,164,0.00 +2023-12-22T02:00,3.5,967.2,4.02,7.59,161,167,0.00 +2023-12-22T03:00,3.6,967.1,4.15,7.76,165,173,0.20 +2023-12-22T04:00,3.5,966.9,3.61,7.30,175,180,0.10 +2023-12-22T05:00,3.4,966.6,3.34,6.92,189,191,0.10 +2023-12-22T06:00,3.3,966.1,3.62,7.18,186,193,0.00 +2023-12-22T07:00,3.3,965.6,3.50,6.97,180,188,0.10 +2023-12-22T08:00,3.2,965.7,3.01,6.43,184,195,0.20 +2023-12-22T09:00,3.0,965.7,2.20,5.32,177,196,0.10 +2023-12-22T10:00,2.9,965.4,1.90,4.88,183,206,0.20 +2023-12-22T11:00,2.9,965.4,2.02,4.77,189,213,0.00 +2023-12-22T12:00,3.2,965.3,3.01,5.77,184,206,0.00 +2023-12-22T13:00,3.3,965.0,1.77,3.41,164,183,0.10 +2023-12-22T14:00,3.4,964.9,2.18,3.70,164,180,0.00 +2023-12-22T15:00,3.7,965.1,2.73,4.52,172,185,0.00 +2023-12-22T16:00,4.1,965.3,2.90,5.02,178,186,0.00 +2023-12-22T17:00,4.6,965.4,2.64,4.81,205,201,0.00 +2023-12-22T18:00,5.0,964.7,1.92,3.55,208,212,0.00 +2023-12-22T19:00,5.4,964.5,1.39,2.52,201,214,0.00 +2023-12-22T20:00,6.2,964.1,0.91,1.49,174,200,0.00 +2023-12-22T21:00,6.3,963.8,1.14,1.36,165,197,0.00 +2023-12-22T22:00,6.2,963.9,1.24,1.89,194,212,0.00 +2023-12-22T23:00,5.1,964.0,1.41,1.91,188,223,0.00 +2023-12-23T00:00,5.2,964.1,1.17,2.33,211,239,0.00 +2023-12-23T01:00,4.5,964.3,1.39,2.30,159,182,0.00 +2023-12-23T02:00,4.2,964.4,1.40,2.75,184,190,0.00 +2023-12-23T03:00,4.1,964.6,2.06,4.39,209,210,0.00 +2023-12-23T04:00,4.0,964.4,2.01,4.81,207,201,0.00 +2023-12-23T05:00,3.6,964.1,1.33,3.77,193,191,0.00 +2023-12-23T06:00,3.4,964.0,1.99,4.21,198,198,0.00 +2023-12-23T07:00,3.0,963.8,2.60,5.09,203,200,0.00 +2023-12-23T08:00,2.7,964.0,3.08,5.82,193,196,0.00 +2023-12-23T09:00,2.4,964.0,3.30,5.88,194,198,0.00 +2023-12-23T10:00,1.3,963.5,2.98,6.20,194,201,0.00 +2023-12-23T11:00,0.2,963.1,3.01,5.82,186,192,0.00 +2023-12-23T12:00,-0.5,963.0,3.50,6.62,182,184,0.00 +2023-12-23T13:00,0.5,963.8,3.42,7.30,173,182,0.00 +2023-12-23T14:00,-0.2,963.0,3.67,8.41,163,177,0.00 +2023-12-23T15:00,0.0,963.3,4.97,8.35,165,169,0.00 +2023-12-23T16:00,1.5,963.6,5.58,8.37,165,168,0.00 +2023-12-23T17:00,3.3,963.6,5.43,9.12,167,171,0.00 +2023-12-23T18:00,5.2,962.9,5.34,7.79,167,167,0.00 +2023-12-23T19:00,7.4,962.2,5.47,7.72,162,163,0.00 +2023-12-23T20:00,8.5,961.2,5.64,8.05,155,155,0.00 +2023-12-23T21:00,8.8,961.1,5.15,7.69,151,152,0.00 +2023-12-23T22:00,8.3,961.2,5.88,9.97,162,164,0.00 +2023-12-23T23:00,7.8,961.0,5.95,10.39,153,156,0.00 +2023-12-24T00:00,7.7,961.4,6.33,10.94,164,166,0.00 +2023-12-24T01:00,6.6,961.9,6.23,10.89,150,157,0.90 +2023-12-24T02:00,6.5,961.2,7.05,11.82,148,151,0.00 +2023-12-24T03:00,6.5,961.1,7.43,12.26,156,158,0.80 +2023-12-24T04:00,6.5,961.2,7.12,11.87,156,159,0.70 +2023-12-24T05:00,7.3,960.4,7.74,12.70,151,155,0.00 +2023-12-24T06:00,8.2,959.9,8.50,13.69,153,155,0.10 +2023-12-24T07:00,8.7,959.4,8.42,13.56,156,158,0.20 +2023-12-24T08:00,9.1,959.0,8.45,13.60,159,162,1.80 +2023-12-24T09:00,9.5,958.9,8.10,12.88,164,166,0.00 +2023-12-24T10:00,9.7,958.5,7.79,12.50,167,170,0.40 +2023-12-24T11:00,9.9,958.0,7.79,12.51,167,169,0.50 +2023-12-24T12:00,9.8,958.0,8.49,13.55,168,169,0.30 +2023-12-24T13:00,10.7,958.2,7.54,12.18,165,168,0.10 +2023-12-24T14:00,10.3,958.5,7.27,11.90,162,163,0.30 +2023-12-24T15:00,10.1,958.4,7.37,11.93,162,163,0.40 +2023-12-24T16:00,10.2,958.4,7.00,11.07,158,160,0.20 +2023-12-24T17:00,10.2,957.9,7.09,11.42,158,160,0.50 +2023-12-24T18:00,10.4,956.8,7.02,11.04,160,162,0.40 +2023-12-24T19:00,10.8,955.9,6.17,10.26,163,165,0.20 +2023-12-24T20:00,11.0,955.4,5.73,9.44,168,170,1.60 +2023-12-24T21:00,8.8,956.3,4.68,6.28,286,284,2.30 +2023-12-24T22:00,2.8,957.1,6.77,9.79,326,326,2.50 +2023-12-24T23:00,2.2,957.7,7.65,11.68,331,332,2.90 +2023-12-25T00:00,1.9,958.7,7.18,10.42,321,323,2.40 +2023-12-25T01:00,1.4,959.0,6.86,10.47,316,317,0.00 +2023-12-25T02:00,0.9,959.3,7.29,11.14,318,320,0.10 +2023-12-25T03:00,0.3,959.5,7.46,11.29,325,325,0.20 +2023-12-25T04:00,0.2,959.8,6.94,10.59,324,326,0.20 +2023-12-25T05:00,-0.0,959.9,7.02,10.89,327,330,0.60 +2023-12-25T06:00,-0.0,960.1,7.10,11.10,325,328,0.50 +2023-12-25T07:00,-0.2,960.0,7.29,11.25,327,330,0.40 +2023-12-25T08:00,-0.2,960.3,6.66,10.87,332,334,0.90 +2023-12-25T09:00,-0.0,960.2,6.41,10.57,337,340,1.30 +2023-12-25T10:00,0.2,960.0,6.07,11.10,340,343,0.90 +2023-12-25T11:00,0.0,959.5,6.20,10.58,342,345,0.60 +2023-12-25T12:00,0.1,959.4,6.21,11.41,345,349,0.60 +2023-12-25T13:00,-0.9,958.4,6.87,11.08,344,350,0.90 +2023-12-25T14:00,-0.4,957.2,6.82,12.38,349,354,0.80 +2023-12-25T15:00,0.2,957.0,6.61,11.54,357,4,1.00 +2023-12-25T16:00,0.8,956.5,6.50,9.83,360,9,1.50 +2023-12-25T17:00,1.6,955.7,5.60,9.85,1,13,2.00 +2023-12-25T18:00,2.4,954.1,4.92,8.15,355,23,3.40 +2023-12-25T19:00,4.0,953.0,3.91,6.71,4,33,3.70 +2023-12-25T20:00,7.2,952.2,4.66,8.49,55,69,3.40 +2023-12-25T21:00,8.5,951.7,6.53,10.65,75,78,2.90 +2023-12-25T22:00,8.7,951.8,6.96,11.34,78,81,2.30 +2023-12-25T23:00,8.9,951.8,6.84,11.10,84,89,1.80 +2023-12-26T00:00,9.2,951.8,7.31,11.80,87,90,1.00 +2023-12-26T01:00,8.8,951.7,6.80,11.10,88,92,0.50 +2023-12-26T02:00,8.8,952.0,5.41,9.17,102,104,0.60 +2023-12-26T03:00,8.2,952.3,3.18,5.81,136,139,0.30 +2023-12-26T04:00,6.5,952.6,3.31,5.14,175,173,0.10 +2023-12-26T05:00,4.4,953.2,4.11,6.11,184,184,0.40 +2023-12-26T06:00,2.9,953.5,4.20,6.38,192,194,0.70 +2023-12-26T07:00,1.7,953.8,4.51,6.57,193,193,0.60 +2023-12-26T08:00,1.0,953.9,4.47,6.43,190,192,0.00 +2023-12-26T09:00,0.3,954.4,4.42,6.35,185,187,0.00 +2023-12-26T10:00,-0.0,954.7,4.80,6.91,182,183,0.00 +2023-12-26T11:00,-0.8,955.0,4.12,5.84,186,187,0.00 +2023-12-26T12:00,-1.1,955.7,4.10,5.80,179,178,0.00 +2023-12-26T13:00,-2.5,956.6,4.77,6.81,170,170,0.00 +2023-12-26T14:00,-1.9,957.0,4.00,5.65,167,167,0.00 +2023-12-26T15:00,-1.6,957.6,3.35,4.70,153,156,0.00 +2023-12-26T16:00,-0.6,958.2,4.61,6.09,150,150,0.00 +2023-12-26T17:00,0.3,958.3,5.15,6.89,156,156,0.00 +2023-12-26T18:00,0.4,958.0,4.63,6.07,147,147,0.00 +2023-12-26T19:00,0.5,958.1,3.97,5.17,139,139,0.00 +2023-12-26T20:00,0.5,958.2,3.61,4.60,134,134,0.00 +2023-12-26T21:00,0.2,958.7,3.20,4.20,129,128,0.00 +2023-12-26T22:00,0.0,959.4,3.14,4.06,127,128,0.00 +2023-12-26T23:00,-0.3,960.2,2.41,3.54,132,133,0.00 +2023-12-27T00:00,-0.5,960.7,1.04,2.33,107,121,0.00 +2023-12-27T01:00,-1.3,961.0,1.84,3.40,49,66,0.00 +2023-12-27T02:00,-1.6,961.2,1.72,3.52,36,55,0.00 +2023-12-27T03:00,-1.6,961.6,2.06,3.96,29,43,0.00 +2023-12-27T04:00,-2.0,961.9,2.24,4.32,27,42,0.00 +2023-12-27T05:00,-2.2,962.3,2.33,4.64,25,37,0.00 +2023-12-27T06:00,-1.9,962.8,2.55,4.74,26,35,0.00 +2023-12-27T07:00,-1.8,963.1,2.33,5.25,25,40,0.00 +2023-12-27T08:00,-1.9,963.2,1.98,4.36,49,58,0.00 +2023-12-27T09:00,-2.3,963.4,1.72,3.86,54,69,0.00 +2023-12-27T10:00,-3.3,963.5,1.49,3.72,42,66,0.00 +2023-12-27T11:00,-2.9,963.7,1.58,3.40,18,47,0.00 +2023-12-27T12:00,-3.0,964.0,2.24,3.85,350,9,0.00 +2023-12-27T13:00,-4.1,964.2,2.22,4.63,352,14,0.00 +2023-12-27T14:00,-4.4,964.3,2.32,4.92,353,13,0.00 +2023-12-27T15:00,-3.5,964.9,2.79,4.67,345,10,0.00 +2023-12-27T16:00,-1.6,965.8,2.31,3.91,355,4,0.00 +2023-12-27T17:00,-0.4,966.4,2.50,3.30,360,2,0.00 +2023-12-27T18:00,0.2,966.4,2.90,3.60,358,358,0.00 +2023-12-27T19:00,0.2,966.2,2.42,3.01,353,354,0.00 +2023-12-27T20:00,0.1,965.7,1.68,1.99,343,342,0.00 +2023-12-27T21:00,-0.1,965.7,1.64,1.92,322,321,0.00 +2023-12-27T22:00,-0.5,966.1,1.64,2.13,322,319,0.00 +2023-12-27T23:00,-1.1,966.5,1.12,2.30,333,326,0.00 +2023-12-28T00:00,-1.3,967.1,1.17,2.64,329,323,0.00 +2023-12-28T01:00,-3.3,967.4,1.70,1.84,310,315,0.00 +2023-12-28T02:00,-3.2,967.6,1.65,1.77,346,344,0.00 +2023-12-28T03:00,-2.6,967.7,1.60,1.81,4,6,0.00 +2023-12-28T04:00,-2.4,967.5,1.26,1.51,342,352,0.00 +2023-12-28T05:00,-2.6,967.6,0.71,1.06,278,319,0.00 +2023-12-28T06:00,-2.9,967.8,1.08,1.36,304,343,0.00 +2023-12-28T07:00,-3.0,968.2,0.92,1.30,319,4,0.00 +2023-12-28T08:00,-4.9,967.5,1.41,2.75,278,303,0.00 +2023-12-28T09:00,-5.4,968.2,2.20,3.73,330,340,0.00 +2023-12-28T10:00,-4.9,967.9,1.92,3.80,279,305,0.00 +2023-12-28T11:00,-4.7,968.2,2.20,5.10,300,318,0.00 +2023-12-28T12:00,-4.2,968.6,2.69,6.05,315,326,0.00 +2023-12-28T13:00,-3.9,968.6,3.39,6.47,315,321,0.00 +2023-12-28T14:00,-3.4,968.7,3.20,6.07,321,327,0.00 +2023-12-28T15:00,-1.4,968.9,4.55,6.76,327,331,0.00 +2023-12-28T16:00,0.3,969.1,5.55,7.87,332,333,0.00 +2023-12-28T17:00,0.8,968.9,6.31,8.60,331,331,0.00 +2023-12-28T18:00,1.1,968.2,6.26,8.50,331,332,0.00 +2023-12-28T19:00,1.5,967.7,6.59,8.96,330,331,0.00 +2023-12-28T20:00,1.8,967.3,6.84,9.30,333,333,0.00 +2023-12-28T21:00,2.0,967.2,6.58,9.22,336,336,0.00 +2023-12-28T22:00,1.6,967.0,5.41,8.54,332,333,0.00 +2023-12-28T23:00,-0.1,966.9,5.59,9.88,333,334,0.00 +2023-12-29T00:00,0.3,967.1,6.05,9.95,338,338,0.00 +2023-12-29T01:00,0.5,967.0,5.72,9.23,341,342,0.00 +2023-12-29T02:00,0.3,966.7,5.70,9.27,338,340,0.00 +2023-12-29T03:00,0.1,966.4,6.00,9.69,336,338,0.00 +2023-12-29T04:00,-0.4,966.0,5.59,9.21,331,334,0.00 +2023-12-29T05:00,-1.2,965.6,5.13,8.75,327,329,0.00 +2023-12-29T06:00,-1.8,965.3,5.08,8.91,328,331,0.00 +2023-12-29T07:00,-2.2,965.1,5.08,9.31,328,332,0.00 +2023-12-29T08:00,-2.5,965.0,5.25,9.39,329,332,0.00 +2023-12-29T09:00,-2.8,965.1,4.92,8.90,331,334,0.00 +2023-12-29T10:00,-3.0,965.0,4.92,8.90,331,334,0.00 +2023-12-29T11:00,-3.2,964.6,4.61,8.59,333,335,0.00 +2023-12-29T12:00,-3.2,964.7,4.20,8.01,335,340,0.00 +2023-12-29T13:00,-2.8,964.4,4.41,8.36,327,332,0.00 +2023-12-29T14:00,-2.7,964.3,4.16,8.20,325,330,0.00 +2023-12-29T15:00,-1.6,964.4,4.20,7.55,322,328,0.00 +2023-12-29T16:00,0.4,964.7,3.19,6.66,319,327,0.00 +2023-12-29T17:00,2.5,964.8,2.97,5.02,312,316,0.00 +2023-12-29T18:00,4.5,964.1,2.36,3.42,306,308,0.00 +2023-12-29T19:00,6.2,963.1,2.20,2.95,300,298,0.00 +2023-12-29T20:00,6.8,962.3,2.42,3.27,294,293,0.00 +2023-12-29T21:00,6.6,962.2,2.28,4.16,293,294,0.00 +2023-12-29T22:00,3.7,961.7,1.99,4.47,288,297,0.00 +2023-12-29T23:00,0.9,961.1,2.42,5.46,277,296,0.00 +2023-12-30T00:00,0.8,961.2,3.21,7.16,275,295,0.00 +2023-12-30T01:00,0.7,961.5,3.81,8.32,284,299,0.00 +2023-12-30T02:00,0.4,961.2,3.70,8.07,289,304,0.00 +2023-12-30T03:00,-0.1,960.9,3.61,7.85,289,304,0.00 +2023-12-30T04:00,-0.3,960.7,3.83,8.27,290,302,0.00 +2023-12-30T05:00,-0.3,960.7,3.83,8.27,290,302,0.00 +2023-12-30T06:00,-0.4,960.5,3.89,8.30,288,301,0.00 +2023-12-30T07:00,-0.5,960.3,4.18,8.75,291,301,0.00 +2023-12-30T08:00,-0.6,960.4,4.37,8.92,290,300,0.00 +2023-12-30T09:00,-0.6,960.6,4.61,9.35,294,302,0.00 +2023-12-30T10:00,-0.8,960.5,4.47,9.10,297,303,0.00 +2023-12-30T11:00,-1.1,959.9,4.22,8.68,301,308,0.00 +2023-12-30T12:00,-1.3,959.9,4.30,8.62,301,308,0.00 +2023-12-30T13:00,-1.3,959.5,4.83,9.18,304,308,0.00 +2023-12-30T14:00,-1.8,959.7,5.11,9.34,310,313,0.00 +2023-12-30T15:00,-1.5,960.0,5.80,9.34,315,317,0.00 +2023-12-30T16:00,-1.0,960.4,7.25,10.09,321,321,0.00 +2023-12-30T17:00,-1.3,960.5,6.97,9.67,321,321,0.00 +2023-12-30T18:00,-1.4,960.4,7.15,9.84,318,318,0.00 +2023-12-30T19:00,-1.9,960.3,7.37,10.21,318,319,0.00 +2023-12-30T20:00,-2.1,960.1,7.37,10.27,318,319,0.00 +2023-12-30T21:00,-2.2,960.4,7.93,11.13,318,319,0.00 +2023-12-30T22:00,-2.4,960.9,7.54,10.82,321,322,0.00 +2023-12-30T23:00,-2.7,961.4,7.22,10.44,323,324,0.00 +2023-12-31T00:00,-3.0,961.7,7.12,10.48,322,322,0.20 +2023-12-31T01:00,-4.0,962.3,6.44,9.55,314,315,0.10 +2023-12-31T02:00,-4.0,962.5,6.94,10.07,319,319,0.10 +2023-12-31T03:00,-4.0,962.9,7.69,11.22,328,329,0.10 +2023-12-31T04:00,-4.2,963.1,7.53,11.10,330,331,0.10 +2023-12-31T05:00,-4.2,963.7,7.10,10.55,328,329,0.00 +2023-12-31T06:00,-4.1,964.2,6.44,9.65,324,326,0.00 +2023-12-31T07:00,-4.0,964.4,6.55,9.93,326,328,0.00 +2023-12-31T08:00,-4.0,965.0,6.38,9.64,328,329,0.00 +2023-12-31T09:00,-3.9,965.7,6.41,9.72,329,330,0.00 +2023-12-31T10:00,-4.0,966.4,6.62,10.02,333,334,0.00 +2023-12-31T11:00,-4.1,966.7,6.44,9.62,332,333,0.00 +2023-12-31T12:00,-4.2,967.3,6.31,9.39,331,332,0.00 +2023-12-31T13:00,-4.5,968.3,6.31,9.26,333,334,0.00 +2023-12-31T14:00,-4.6,968.8,6.09,8.95,330,332,0.00 +2023-12-31T15:00,-4.5,969.4,6.53,9.26,335,335,0.00 +2023-12-31T16:00,-4.4,970.2,6.31,8.66,345,346,0.00 +2023-12-31T17:00,-3.7,970.8,5.99,7.93,345,346,0.00 +2023-12-31T18:00,-2.6,970.9,5.60,7.25,344,345,0.00 +2023-12-31T19:00,-2.1,970.7,5.03,6.58,343,343,0.00 +2023-12-31T20:00,-1.5,970.6,4.68,6.04,344,344,0.00 +2023-12-31T21:00,-1.6,971.0,4.49,5.98,339,339,0.00 +2023-12-31T22:00,-2.5,971.4,3.94,5.82,330,331,0.00 +2023-12-31T23:00,-4.6,971.3,2.86,6.07,324,327,0.00 +2024-01-01T00:00,-5.4,971.8,2.88,6.26,326,333,0.00 +2024-01-01T01:00,-7.5,972.9,2.77,5.79,334,339,0.00 +2024-01-01T02:00,-7.9,973.0,2.37,5.03,332,339,0.00 +2024-01-01T03:00,-8.2,973.0,2.37,5.00,332,340,0.00 +2024-01-01T04:00,-8.4,973.1,2.14,4.56,323,334,0.00 +2024-01-01T05:00,-8.6,973.4,1.77,3.81,313,330,0.00 +2024-01-01T06:00,-8.8,973.5,1.48,3.22,298,324,0.00 +2024-01-01T07:00,-8.9,973.5,1.60,2.92,274,301,0.00 +2024-01-01T08:00,-8.9,973.2,1.46,2.63,254,279,0.00 +2024-01-01T09:00,-9.0,973.2,1.48,2.52,242,263,0.00 +2024-01-01T10:00,-9.0,973.1,1.63,2.86,227,245,0.00 +2024-01-01T11:00,-8.8,972.7,1.98,3.81,225,240,0.00 +2024-01-01T12:00,-8.6,972.2,2.36,4.60,216,236,0.00 +2024-01-01T13:00,-8.1,973.2,2.10,4.04,205,222,0.00 +2024-01-01T14:00,-7.9,972.9,2.69,4.74,202,215,0.00 +2024-01-01T15:00,-6.6,972.7,3.16,6.44,198,213,0.00 +2024-01-01T16:00,-4.5,973.0,3.89,5.46,206,208,0.00 +2024-01-01T17:00,-2.4,972.5,4.30,5.77,205,206,0.00 +2024-01-01T18:00,-0.4,971.6,4.44,5.95,203,205,0.00 +2024-01-01T19:00,1.1,970.5,4.62,6.18,202,203,0.00 +2024-01-01T20:00,1.9,969.6,5.20,7.08,203,203,0.00 +2024-01-01T21:00,1.9,969.0,5.61,7.93,202,203,0.00 +2024-01-01T22:00,0.9,968.5,5.54,9.10,200,203,0.00 +2024-01-01T23:00,-0.9,967.8,5.95,10.62,200,203,0.00 diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index 0235f7416..d54e436c2 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -1,5 +1,4 @@ import os -import unittest import importlib from pathlib import Path @@ -248,7 +247,7 @@ def test_co2h_methanol_example(subtests): assert pytest.approx(model.prob.get_val("methanol.LCOM")[0], rel=1e-6) == 1.381162 -@unittest.skipUnless(importlib.util.find_spec("mcm") is not None, "mcm is not installed") +@pytest.mark.skipif(importlib.util.find_spec("mcm") is None, reason="mcm is not installed") def test_doc_methanol_example(subtests): # Change the current working directory to the CO2 Hydrogenation example's directory os.chdir(EXAMPLE_DIR / "03_methanol" / "co2_hydrogenation_doc") @@ -371,7 +370,7 @@ def test_paper_example(subtests): assert pytest.approx(model.prob.get_val("paper_mill.LCOP"), rel=1e-3) == 51.733275 -@unittest.skipUnless(importlib.util.find_spec("mcm") is not None, "mcm is not installed") +@pytest.mark.skipif(importlib.util.find_spec("mcm") is None, reason="mcm is not installed") def test_wind_wave_doc_example(subtests): # Change the current working directory to the example's directory os.chdir(EXAMPLE_DIR / "09_co2/direct_ocean_capture") @@ -398,7 +397,7 @@ def test_wind_wave_doc_example(subtests): ) -@unittest.skipUnless(importlib.util.find_spec("mcm") is not None, "mcm is not installed") +@pytest.mark.skipif(importlib.util.find_spec("mcm") is None, reason="mcm is not installed") def test_splitter_wind_doc_h2_example(subtests): # Change the current working directory to the example's directory os.chdir(EXAMPLE_DIR / "17_splitter_wind_doc_h2") @@ -532,7 +531,7 @@ def test_hydrogen_dispatch_example(subtests): ) -@unittest.skipUnless(importlib.util.find_spec("mcm") is not None, "mcm is not installed") +@pytest.mark.skipif(importlib.util.find_spec("mcm") is None, reason="mcm is not installed") def test_wind_wave_oae_example(subtests): # Change the current working directory to the example's directory os.chdir(EXAMPLE_DIR / "09_co2/ocean_alkalinity_enhancement") @@ -558,7 +557,7 @@ def test_wind_wave_oae_example(subtests): ) -@unittest.skipUnless(importlib.util.find_spec("mcm") is not None, "mcm is not installed") +@pytest.mark.skipif(importlib.util.find_spec("mcm") is None, reason="mcm is not installed") def test_wind_wave_oae_example_with_finance(subtests): # Change the current working directory to the example's directory os.chdir(EXAMPLE_DIR / "09_co2/ocean_alkalinity_enhancement_financials") From 953e4dc4f9487cca444ea3a71aed61c0f6d1e52d Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Tue, 11 Nov 2025 17:34:06 -0600 Subject: [PATCH 52/79] Natural Gas Plant operation with electricity demand (#334) * pull update ng files * updated natural gas example, tests and model * update ng test * update documentation * Correctin NG test values * updated system_capacity to system_capacity_mw --------- Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Co-authored-by: John Jasa --- CHANGELOG.md | 1 + docs/technology_models/natural_gas.md | 13 +- docs/technology_models/technology_overview.md | 6 + examples/16_natural_gas/plant_config.yaml | 76 +++++++--- examples/16_natural_gas/tech_config.yaml | 59 +++++++- .../natural_gas/natural_gas_cc_ct.py | 96 +++++++++---- .../test/test_natural_gas_models.py | 72 ++++++++-- tests/h2integrate/test_all_examples.py | 134 +++++++++++++----- 8 files changed, 359 insertions(+), 98 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 724532ed1..b22b2cdce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Added `ProFastNPV`, a finance model using ProFAST to calculate NPV of the commodity - Moved `compute()` from `ProFastBase` to `ProFastLCO`. - Added `NumpyFinancialNPV`, a finance model that uses NumPy Financial npv to calculate the npv from the cash flows +- Add feature for natural gas plant converter to take electricity demand as an input and added system capacity as an input - Added wind resource model for API calls to Open-Meteo archive - Added `load_yaml()` function and flexibility to input a config dictionary to H2IntegrateModel rather than a filepath diff --git a/docs/technology_models/natural_gas.md b/docs/technology_models/natural_gas.md index 8b3b68baf..92d59866d 100644 --- a/docs/technology_models/natural_gas.md +++ b/docs/technology_models/natural_gas.md @@ -6,18 +6,25 @@ To use this model, specify `"natural_gas_performance"` as the performance model ## Performance Parameters -The performance model requires the following parameter: +The performance model requires the following parameters: +- `system_capacity` (required): Rated capacity of the natural gas plant in MW. - `heat_rate` (required): Heat rate of the natural gas plant in MMBtu/MWh. This represents the amount of fuel energy required to produce one MWh of electricity. Lower values indicate higher efficiency. Typical values: - **NGCC (Combined Cycle)**: 6-8 MMBtu/MWh (high efficiency) - **NGCT (Combustion Turbine)**: 10-14 MMBtu/MWh (lower efficiency, faster response) +Optional parameter: +- `electricity_demand` (optional): Defaults to the `system_capacity` but can be set to a particular demand profile. + - See example `16_natural_gas` to see how missed load from the battery is set as the electricity demand for the natural gas plant. + The model implements the relationship: $$ \text{Electricity Output (MW)} = \frac{\text{Natural Gas Input (MMBtu/h)}}{\text{Heat Rate (MMBtu/MWh)}} $$ +The `electricity_out` is limited by the system capacity and the available natural gas feedstock. + ## Cost Parameters The cost model calculates capital and operating costs based on the following parameters: @@ -32,8 +39,4 @@ The cost model calculates capital and operating costs based on the following par - `heat_rate` (required): Heat rate in MMBtu/MWh, used for fuel cost calculations. -- `ng_price` (required): Natural gas price in $/MMBtu. Can be a numeric value for fixed price or `"variable"` string to indicate external price management. - -- `project_life` (optional): Project lifetime in years for cost calculations. Default is 30 years, typical for power plants. - - `cost_year` (required): Dollar year corresponding to input costs. diff --git a/docs/technology_models/technology_overview.md b/docs/technology_models/technology_overview.md index 84ed34964..9853536cf 100644 --- a/docs/technology_models/technology_overview.md +++ b/docs/technology_models/technology_overview.md @@ -43,6 +43,7 @@ The inputs, outputs, and corresponding technology that are currently available i | `methanol` | methanol | ??? | | `air_separator` | nitrogen | electricity | | `desal` | water | electricity | +| `natural_gas` | electricity | natural gas | (transport)= ## Transport @@ -180,6 +181,11 @@ Below summarizes the available performance, cost, and financial models for each + `'reverse_osmosis_desalination_performance'` - cost models: + `'reverse_osmosis_desalination_cost'` +- `natural_gas`: natural gas combined cycle and combustion turbine + - performance models: + + `'natural_gas_performance'` + - cost_models: + + `'natural_gas_cost'` (transport-models)= ## Transport Models diff --git a/examples/16_natural_gas/plant_config.yaml b/examples/16_natural_gas/plant_config.yaml index 0955376a2..bec757b77 100644 --- a/examples/16_natural_gas/plant_config.yaml +++ b/examples/16_natural_gas/plant_config.yaml @@ -4,6 +4,7 @@ description: "This plant is located in Texas" site: latitude: 32.34 longitude: -98.27 + year: 2013 # array of polygons defining boundaries with x/y coords boundaries: [ @@ -16,6 +17,14 @@ site: y: [2000.0, 2000.0, 2500.0], } ] + resources: + solar_resource: + resource_model: "goes_aggregated_solar_v4_api" + resource_parameters: + resource_year: 2013 + resource_dir: "../11_hybrid_energy_plant/tech_inputs/weather/solar" + resource_filename: "30.6617_-101.7096_psmv3_60_2013.csv" + # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections @@ -24,7 +33,14 @@ site: # and not connected to additional technologies. # hence the empty array. technology_interconnections: [ - ["ng_feedstock", "natural_gas_plant", "natural_gas", "pipe"], + ["solar", "battery", "electricity", "cable"], #connect solar to battery + ["ng_feedstock", "natural_gas_plant", "natural_gas", "pipe"], #connect NG feedstock to NG plant + ["battery", "natural_gas_plant", ["electricity_unmet_demand","electricity_demand"]], #connect electricity demand to NG feedstock +] + +resource_to_tech_connections: [ + # connect the wind resource to the wind technology + ['solar_resource', 'solar', 'solar_resource_data'], ] plant: @@ -34,28 +50,42 @@ plant: finance_parameters: finance_groups: - commodity: "electricity" - finance_model: "ProFastComp" - model_inputs: - params: - analysis_start_year: 2032 - installation_time: 36 - inflation_rate: 0.0 - discount_rate: 0.09 - debt_equity_ratio: 2.62 - property_tax_and_insurance: 0.03 - total_income_tax_rate: 0.308 - capital_gains_tax_rate: 0.15 - sales_tax_rate: 0.07375 - debt_interest_rate: 0.07 - debt_type: "Revolving debt" - loan_period_if_used: 0 - cash_onhand_months: 1 - admin_expense: 0.00 - capital_items: - depr_type: "MACRS" - depr_period: 5 - refurb: [0.] + profast_model: + commodity: "electricity" + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 + inflation_rate: 0.0 + discount_rate: 0.09 + debt_equity_ratio: 2.62 + property_tax_and_insurance: 0.03 + total_income_tax_rate: 0.308 + capital_gains_tax_rate: 0.15 + sales_tax_rate: 0.07375 + debt_interest_rate: 0.07 + debt_type: "Revolving debt" + loan_period_if_used: 0 + cash_onhand_months: 1 + admin_expense: 0.00 + capital_items: + depr_type: "MACRS" + depr_period: 5 + refurb: [0.] cost_adjustment_parameters: cost_year_adjustment_inflation: 0.025 target_dollar_year: 2022 + finance_subgroups: + renewables: + commodity: "electricity" + finance_groups: ["profast_model"] + technologies: ["solar", "battery"] + natural_gas: + commodity: "electricity" + finance_groups: ["profast_model"] + technologies: ["natural_gas_plant", "ng_feedstock"] + electricity: + commodity: "electricity" + finance_groups: ["profast_model"] + technologies: ["solar","battery", "natural_gas_plant", "ng_feedstock"] diff --git a/examples/16_natural_gas/tech_config.yaml b/examples/16_natural_gas/tech_config.yaml index 46c87f430..1eda5611d 100644 --- a/examples/16_natural_gas/tech_config.yaml +++ b/examples/16_natural_gas/tech_config.yaml @@ -2,6 +2,60 @@ name: "technology_config" description: "This plant produces electricity from natural gas using a combined cycle turbine" technologies: + solar: + performance_model: + model: "pysam_solar_plant_performance" + cost_model: + model: "atb_utility_pv_cost" + model_inputs: + performance_parameters: + pv_capacity_kWdc: 200000 #200 MWdc + dc_ac_ratio: 1.34 + create_model_from: "new" + tilt_angle_func: "none" + tilt: 0 + pysam_options: + SystemDesign: + gcr: 0.3 + array_type: 2 + bifaciality: 0.65 + inv_eff: 96.0 + losses: 14.6 + module_type: 1 + azimuth: 180 + rotlim: 45 + SolarResource: + albedo_default: 0.2 + cost_parameters: + capex_per_kWac: 1193 + opex_per_kWac_per_year: 18 + cost_year: 2024 + battery: + performance_model: + model: "simple_generic_storage" + cost_model: + model: "atb_battery_cost" + control_strategy: + model: "demand_open_loop_controller" + model_inputs: + shared_parameters: + commodity_name: "electricity" + commodity_units: "kW" + max_charge_rate: 25000.0 # kW/time step, 25 MW + max_capacity: 200000.0 # kWh, 200 MWh + control_parameters: + max_charge_percent: 1.0 # percent as decimal + min_charge_percent: 0.1 # percent as decimal + init_charge_percent: 0.1 # percent as decimal + max_discharge_rate: 25000.0 # kW/time step + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal + demand_profile: 100000 #kW, 100 MW + cost_parameters: + cost_year: 2022 + energy_capex: 300 # $/kWh + power_capex: 100 # $/kW + opex_fraction: 0.05 # percent of capex ng_feedstock: performance_model: model: "feedstock_performance" @@ -12,7 +66,7 @@ technologies: feedstock_type: "natural_gas" units: "MMBtu" performance_parameters: - rated_capacity: 100. + rated_capacity: 750. #MMBtu cost_parameters: cost_year: 2023 price: 4.2 @@ -26,8 +80,9 @@ technologies: model_inputs: shared_parameters: heat_rate_mmbtu_per_mwh: 7.5 # MMBtu/MWh - typical for NGCC + system_capacity_mw: 100. cost_parameters: - plant_capacity_mw: 100. + capex_per_kw: 1000 # $/kW - typical for NGCC fixed_opex_per_kw_per_year: 10.0 # $/kW/year variable_opex_per_mwh: 2.5 # $/MWh diff --git a/h2integrate/converters/natural_gas/natural_gas_cc_ct.py b/h2integrate/converters/natural_gas/natural_gas_cc_ct.py index aa4a20ddb..efe0d6422 100644 --- a/h2integrate/converters/natural_gas/natural_gas_cc_ct.py +++ b/h2integrate/converters/natural_gas/natural_gas_cc_ct.py @@ -1,3 +1,4 @@ +import numpy as np import openmdao.api as om from attrs import field, define @@ -15,6 +16,7 @@ class NaturalGasPerformanceConfig(BaseConfig): combustion turbines (NGCT) and natural gas combined cycle (NGCC) plants. Attributes: + system_capacity (float): rated capacity of the natural gas plant in MW heat_rate_mmbtu_per_mwh (float): Heat rate of the natural gas plant in MMBtu/MWh. This represents the amount of fuel energy required to produce one MWh of electricity. Lower values indicate higher efficiency. @@ -23,6 +25,7 @@ class NaturalGasPerformanceConfig(BaseConfig): - NGCC: 6-8 MMBtu/MWh """ + system_capacity_mw: float = field(validator=gte_zero) heat_rate_mmbtu_per_mwh: float = field(validator=gt_zero) @@ -39,13 +42,15 @@ class NaturalGasPerformanceModel(om.ExplicitComponent): electricity_out = natural_gas_in / heat_rate Inputs: + system_capacity (float): Natural gas plant rated capacity in MW natural_gas_in (array): Natural gas input energy in MMBtu for each timestep + heat_rate_mmbtu_per_mwh (float): Plant heat rate in MMBtu/MWh + electricity_demand (array): Electricity demand in MW for each timestep Outputs: electricity_out (array): Electricity output in MW for each timestep + natural_gas_consumed (array): Natural gas consumed in MMBtu for each timestep - Parameters (from config): - heat_rate_mmbtu_per_mwh (float): Plant heat rate in MMBtu/MWh """ def initialize(self): @@ -59,15 +64,6 @@ def setup(self): ) n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - # Add natural gas input - self.add_input( - "natural_gas_in", - val=0.0, - shape=n_timesteps, - units="MMBtu", - desc="Natural gas input energy", - ) - # Add natural gas consumed output self.add_output( "natural_gas_consumed", @@ -94,6 +90,32 @@ def setup(self): desc="Plant heat rate in MMBtu/MWh", ) + # Add rated capacity as an input with config value as default + self.add_input( + "system_capacity", + val=self.config.system_capacity_mw, + units="MW", + desc="Natural gas plant rated capacity in MW", + ) + + # Default the electricity demand input as the rated capacity + self.add_input( + "electricity_demand", + val=self.config.system_capacity_mw, + shape=n_timesteps, + units="MW", + desc="Electricity demand for natural gas plant", + ) + + # Add natural gas input, default to 0 --> set using feedstock component + self.add_input( + "natural_gas_in", + val=0.0, + shape=n_timesteps, + units="MMBtu", + desc="Natural gas input energy", + ) + def compute(self, inputs, outputs): """ Compute electricity output from natural gas input. @@ -103,17 +125,39 @@ def compute(self, inputs, outputs): required per unit of electrical energy produced. Args: - inputs: OpenMDAO inputs object containing natural_gas_in and heat_rate - outputs: OpenMDAO outputs object for electricity_out + inputs: OpenMDAO inputs object containing natural_gas_in, heat_rate_mmbtu_per_mwh, + system_capacity, and electricity_demand. + outputs: OpenMDAO outputs object for electricity_out and natural_gas_consumed """ - natural_gas_in = inputs["natural_gas_in"] + + # calculate max input and output + system_capacity = inputs["system_capacity"] # plant capacity in MW heat_rate_mmbtu_per_mwh = inputs["heat_rate_mmbtu_per_mwh"] + max_natural_gas_consumption = system_capacity * heat_rate_mmbtu_per_mwh + + # electrical demand, saturated at maximum rated system capacity + electricity_demand = np.where( + inputs["electricity_demand"] > system_capacity, + system_capacity, + inputs["electricity_demand"], + ) + natural_gas_demand = electricity_demand * heat_rate_mmbtu_per_mwh + + # available feedstock, saturated at maximum system feedstock consumption + natural_gas_available = np.where( + inputs["natural_gas_in"] > max_natural_gas_consumption, + max_natural_gas_consumption, + inputs["natural_gas_in"], + ) + + # natural gas consumed is minimum between available feedstock and output demand + natural_gas_consumed = np.minimum.reduce([natural_gas_demand, natural_gas_available]) - # Convert natural gas input to electricity output using heat rate - electricity_out = natural_gas_in / heat_rate_mmbtu_per_mwh + # Convert natural gas consumption to electricity output using heat rate + electricity_out = natural_gas_consumed / heat_rate_mmbtu_per_mwh outputs["electricity_out"] = electricity_out - outputs["natural_gas_consumed"] = natural_gas_in + outputs["natural_gas_consumed"] = natural_gas_consumed @define @@ -125,7 +169,7 @@ class NaturalGasCostModelConfig(CostModelBaseConfig): turbines (NGCT) and natural gas combined cycle (NGCC) plants. Attributes: - plant_capacity_mw (float | int): Plant capacity in MW. + system_capacity (float | int): Plant capacity in MW. capex_per_kw (float|int): Capital cost per unit capacity in $/kW. This includes all equipment, installation, and construction costs. @@ -147,7 +191,7 @@ class NaturalGasCostModelConfig(CostModelBaseConfig): cost_year (int): Dollar year corresponding to input costs. """ - plant_capacity_mw: float | int = field(validator=gt_zero) + system_capacity_mw: float | int = field(validator=gt_zero) capex_per_kw: float | int = field(validator=gte_zero) fixed_opex_per_kw_per_year: float | int = field(validator=gte_zero) variable_opex_per_mwh: float | int = field(validator=gte_zero) @@ -171,7 +215,7 @@ class NaturalGasCostModel(CostModelBaseClass): 3. Variable O&M: variable_opex_per_mwh * delivered_electricity_MWh Inputs: - plant_capacity_mw (float): Plant capacity in MW + system_capacity (float): Natural gas plant capacity in MW electricity_out (array): Hourly electricity output in MW from performance model capex_per_kw (float): Capital cost per unit capacity in $/kW fixed_opex_per_kw_per_year (float): Fixed operating expenses per unit capacity in $/kW/year @@ -194,8 +238,8 @@ def setup(self): # Add inputs specific to the cost model with config values as defaults self.add_input( - "plant_capacity_mw", - val=self.config.plant_capacity_mw, + "system_capacity", + val=self.config.system_capacity_mw, units="MW", desc="Natural gas plant capacity", ) @@ -235,11 +279,11 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): """ Compute capital and operating costs for the natural gas plant. """ - plant_capacity_kw = inputs["plant_capacity_mw"][0] * 1000 # Convert MW to kW + plant_capacity_kw = inputs["system_capacity"] * 1000 # Convert MW to kW electricity_out = inputs["electricity_out"] # MW hourly profile - capex_per_kw = inputs["capex_per_kw"][0] - fixed_opex_per_kw_per_year = inputs["fixed_opex_per_kw_per_year"][0] - variable_opex_per_mwh = inputs["variable_opex_per_mwh"][0] + capex_per_kw = inputs["capex_per_kw"] + fixed_opex_per_kw_per_year = inputs["fixed_opex_per_kw_per_year"] + variable_opex_per_mwh = inputs["variable_opex_per_mwh"] # Sum hourly electricity output to get annual generation # electricity_out is in MW, so sum gives MWh for hourly data diff --git a/h2integrate/converters/natural_gas/test/test_natural_gas_models.py b/h2integrate/converters/natural_gas/test/test_natural_gas_models.py index 4f10cf834..9246213a1 100644 --- a/h2integrate/converters/natural_gas/test/test_natural_gas_models.py +++ b/h2integrate/converters/natural_gas/test/test_natural_gas_models.py @@ -14,6 +14,7 @@ def ngcc_performance_params(): """Natural Gas Combined Cycle performance parameters.""" tech_params = { "heat_rate_mmbtu_per_mwh": 7.5, # MMBtu/MWh - typical for NGCC + "system_capacity_mw": 100, } return tech_params @@ -23,6 +24,7 @@ def ngct_performance_params(): """Natural Gas Combustion Turbine performance parameters.""" tech_params = { "heat_rate_mmbtu_per_mwh": 11.5, # MMBtu/MWh - typical for NGCT + "system_capacity_mw": 50, } return tech_params @@ -35,7 +37,7 @@ def ngcc_cost_params(): "fixed_opex_per_kw_per_year": 10.0, # $/kW/year "variable_opex_per_mwh": 2.5, # $/MWh "heat_rate_mmbtu_per_mwh": 7.5, # MMBtu/MWh - "plant_capacity_mw": 100, # MW + "system_capacity_mw": 100, # MW "cost_year": 2023, } return cost_params @@ -49,7 +51,7 @@ def ngct_cost_params(): "fixed_opex_per_kw_per_year": 8.0, # $/kW/year "variable_opex_per_mwh": 3.0, # $/MWh "heat_rate_mmbtu_per_mwh": 11.5, # MMBtu/MWh - "plant_capacity_mw": 100, # MW + "system_capacity_mw": 100, # MW "cost_year": 2023, } return cost_params @@ -149,7 +151,7 @@ def test_ngcc_cost(ngcc_cost_params, subtests): } # Plant parameters for a 100 MW NGCC plant - plant_capacity_mw = 100_000 # 100 MW + system_capacity = 100.0 # 100 MW annual_generation_MWh = 700_000 # ~80% capacity factor # Create hourly electricity output that sums to annual generation @@ -165,7 +167,7 @@ def test_ngcc_cost(ngcc_cost_params, subtests): prob.setup() # Set inputs - prob.set_val("plant_capacity_mw", plant_capacity_mw) + prob.set_val("system_capacity", system_capacity) prob.set_val("electricity_out", electricity_out) prob.run_model() @@ -174,8 +176,8 @@ def test_ngcc_cost(ngcc_cost_params, subtests): cost_year = prob.get_val("cost_year") # Calculate expected values - expected_capex = ngcc_cost_params["capex_per_kw"] * plant_capacity_mw * 1000.0 - expected_fixed_om = ngcc_cost_params["fixed_opex_per_kw_per_year"] * plant_capacity_mw * 1000.0 + expected_capex = ngcc_cost_params["capex_per_kw"] * system_capacity * 1000.0 + expected_fixed_om = ngcc_cost_params["fixed_opex_per_kw_per_year"] * system_capacity * 1000.0 expected_variable_om = ngcc_cost_params["variable_opex_per_mwh"] * annual_generation_MWh expected_opex = expected_fixed_om + expected_variable_om @@ -198,7 +200,7 @@ def test_ngct_cost(ngct_cost_params, subtests): } # Plant parameters for a 50 MW NGCT plant - plant_capacity_mw = 50_000 # 50 MW + system_capacity = 50.0 # 50 MW annual_generation_MWh = 100_000 # ~23% capacity factor (peaking plant) # Create hourly electricity output that sums to annual generation @@ -214,7 +216,7 @@ def test_ngct_cost(ngct_cost_params, subtests): prob.setup() # Set inputs - prob.set_val("plant_capacity_mw", plant_capacity_mw) + prob.set_val("system_capacity", system_capacity) prob.set_val("electricity_out", electricity_out) prob.run_model() @@ -223,8 +225,8 @@ def test_ngct_cost(ngct_cost_params, subtests): cost_year = prob.get_val("cost_year") # Calculate expected values - expected_capex = ngct_cost_params["capex_per_kw"] * plant_capacity_mw * 1000.0 - expected_fixed_om = ngct_cost_params["fixed_opex_per_kw_per_year"] * plant_capacity_mw * 1000.0 + expected_capex = ngct_cost_params["capex_per_kw"] * system_capacity * 1000.0 + expected_fixed_om = ngct_cost_params["fixed_opex_per_kw_per_year"] * system_capacity * 1000.0 expected_variable_om = ngct_cost_params["variable_opex_per_mwh"] * annual_generation_MWh expected_opex = expected_fixed_om + expected_variable_om @@ -236,3 +238,53 @@ def test_ngct_cost(ngct_cost_params, subtests): with subtests.test("NGCT Cost Year"): assert cost_year == ngct_cost_params["cost_year"] + + +def test_ngcc_performance_demand(ngcc_performance_params, subtests): + """Test NGCC performance model with typical operating conditions.""" + tech_config_dict = { + "model_inputs": { + "performance_parameters": ngcc_performance_params, + } + } + + # Create a simple natural gas input profile (constant 750 MMBtu/h for 100 MW plant) + natural_gas_input = np.full(8760, 750.0) # MMBtu + electricity_demand_section = np.linspace( + 0, 1.2 * ngcc_performance_params["system_capacity_mw"], 12 + ) + electricity_demand_MW = np.tile(electricity_demand_section, 730) + + prob = om.Problem() + perf_comp = NaturalGasPerformanceModel( + plant_config=get_plant_config(), + tech_config=tech_config_dict, + ) + + prob.model.add_subsystem("ng_perf", perf_comp, promotes=["*"]) + prob.setup() + + # Set the natural gas input + prob.set_val("natural_gas_in", natural_gas_input) + prob.set_val("electricity_demand", electricity_demand_MW) + prob.run_model() + + electricity_out = prob.get_val("electricity_out") + + with subtests.test("NGCC Electricity Output"): + # Expected: 750 MMBtu / 7.5 MMBtu/MWh = 100 MW + expected_output_ng = natural_gas_input / ngcc_performance_params["heat_rate_mmbtu_per_mwh"] + expected_output_elec = np.where( + electricity_demand_MW > ngcc_performance_params["system_capacity_mw"], + ngcc_performance_params["system_capacity_mw"], + electricity_demand_MW, + ) + expected_output = np.minimum.reduce([expected_output_ng, expected_output_elec]) + assert pytest.approx(electricity_out, rel=1e-6) == expected_output + + with subtests.test("NGCC Max Output"): + # Check average output is 100 MW + assert ( + pytest.approx(np.max(electricity_out), rel=1e-6) + == ngcc_performance_params["system_capacity_mw"] + ) diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index d54e436c2..d8e8b1751 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -595,66 +595,117 @@ def test_natural_gas_example(subtests): model.run() model.post_process() + solar_aep = sum(model.prob.get_val("solar.electricity_out", units="kW")) + solar_bat_out_total = sum(model.prob.get_val("battery.electricity_out", units="kW")) + solar_curtailed_total = sum( + model.prob.get_val("battery.electricity_unused_commodity", units="kW") + ) - # Subtests for checking specific values + renewable_subgroup_total_electricity = model.prob.get_val( + "finance_subgroup_renewables.electricity_sum.total_electricity_produced", units="kW*h/year" + )[0] + electricity_subgroup_total_electricity = model.prob.get_val( + "finance_subgroup_electricity.electricity_sum.total_electricity_produced", units="kW*h/year" + )[0] + natural_gas_subgroup_total_electricity = model.prob.get_val( + "finance_subgroup_natural_gas.electricity_sum.total_electricity_produced", units="kW*h/year" + )[0] + + # NOTE: battery output power is not included in any of the financials + + pre_ng_missed_load = model.prob.get_val("battery.electricity_unmet_demand", units="kW") + ng_electricity_demand = model.prob.get_val("natural_gas_plant.electricity_demand", units="kW") + ng_electricity_production = model.prob.get_val("natural_gas_plant.electricity_out", units="kW") + bat_init_charge = 200000.0 * 0.1 # max capacity in kW and initial charge rate percentage + + with subtests.test( + "Check solar AEP is greater than battery output (solar oversized relative to demand" + ): + assert solar_aep > solar_bat_out_total + + with subtests.test( + "Check battery outputs against battery inputs (solar oversized relative to demand" + ): + assert ( + pytest.approx(solar_bat_out_total + solar_curtailed_total, abs=bat_init_charge) + == solar_aep + ) + + with subtests.test("Check solar AEP equals total electricity for renewables subgroup"): + assert pytest.approx(solar_aep, rel=1e-6) == renewable_subgroup_total_electricity + + with subtests.test("Check natural gas AEP equals total electricity for natural_gas subgroup"): + assert ( + pytest.approx(sum(ng_electricity_production), rel=1e-6) + == natural_gas_subgroup_total_electricity + ) + + with subtests.test( + "Check natural gas + solar AEP equals total electricity for electricity subgroup" + ): + assert ( + pytest.approx(electricity_subgroup_total_electricity, rel=1e-6) + == sum(ng_electricity_production) + solar_aep + ) - with subtests.test("Check CapEx"): + with subtests.test("Check missed load is natural gas plant electricity demand"): + assert pytest.approx(ng_electricity_demand, rel=1e-6) == pre_ng_missed_load + + with subtests.test("Check natural_gas_plant electricity out equals demand"): + assert pytest.approx(ng_electricity_demand, rel=1e-6) == ng_electricity_production + + # Subtests for checking specific values + with subtests.test("Check Natural Gas CapEx"): capex = model.prob.get_val("natural_gas_plant.CapEx")[0] assert pytest.approx(capex, rel=1e-6) == 1e8 - with subtests.test("Check OpEx"): - fopex = model.prob.get_val("natural_gas_plant.OpEx")[0] - vopex = model.prob.get_val("natural_gas_plant.VarOpEx")[0] - opex = fopex + vopex - assert pytest.approx(opex, rel=1e-6) == 1292000.0 + with subtests.test("Check Natural Gas OpEx"): + opex = model.prob.get_val("natural_gas_plant.OpEx")[0] + assert pytest.approx(opex, rel=1e-6) == 2243167.24525 with subtests.test("Check total electricity produced"): - total_electricity = model.prob.get_val( - "finance_subgroup_default.electricity_sum.total_electricity_produced" - )[0] - assert pytest.approx(total_electricity, rel=1e-6) == 1.168e8 + assert pytest.approx(natural_gas_subgroup_total_electricity, rel=1e-6) == 497266898.10354495 with subtests.test("Check opex adjusted ng_feedstock"): opex_ng_feedstock = model.prob.get_val( - "finance_subgroup_default.varopex_adjusted_ng_feedstock" + "finance_subgroup_natural_gas.varopex_adjusted_ng_feedstock" + # "finance_subgroup_natural_gas.opex_adjusted_ng_feedstock" )[0] - assert pytest.approx(opex_ng_feedstock, rel=1e-6) == 3589463.41463415 + assert pytest.approx(opex_ng_feedstock, rel=1e-6) == 15281860.770986987 with subtests.test("Check capex adjusted natural_gas_plant"): capex_ng_plant = model.prob.get_val( - "finance_subgroup_default.capex_adjusted_natural_gas_plant" + "finance_subgroup_natural_gas.capex_adjusted_natural_gas_plant" )[0] assert pytest.approx(capex_ng_plant, rel=1e-6) == 97560975.60975611 with subtests.test("Check opex adjusted natural_gas_plant"): - fopex_ng_plant = model.prob.get_val( - "finance_subgroup_default.opex_adjusted_natural_gas_plant" + opex_ng_plant = model.prob.get_val( + "finance_subgroup_natural_gas.opex_adjusted_natural_gas_plant" )[0] - vopex_ng_plant = model.prob.get_val( - "finance_subgroup_default.varopex_adjusted_natural_gas_plant" - )[0] - opex_ng_plant = vopex_ng_plant + fopex_ng_plant - assert pytest.approx(opex_ng_plant, rel=1e-6) == 1260487.80487805 + assert pytest.approx(opex_ng_plant, rel=1e-6) == 2188455.8490330363 - with subtests.test("Check total adjusted CapEx"): - total_capex = model.prob.get_val("finance_subgroup_default.total_capex_adjusted")[0] + with subtests.test("Check total adjusted CapEx for natural gas subgroup"): + total_capex = model.prob.get_val("finance_subgroup_natural_gas.total_capex_adjusted")[0] assert pytest.approx(total_capex, rel=1e-6) == 97658536.58536586 - with subtests.test("Check total adjusted OpEx"): - total_fopex = model.prob.get_val("finance_subgroup_default.total_opex_adjusted")[0] - total_vopex = model.prob.get_val("finance_subgroup_default.total_varopex_adjusted")[0] - total_opex = total_fopex + total_vopex - assert pytest.approx(total_opex, rel=1e-6) == 4849951.2195122 + with subtests.test("Check LCOE (natural gas plant)"): + lcoe_ng = model.prob.get_val("finance_subgroup_natural_gas.LCOE")[0] + assert pytest.approx(lcoe_ng, rel=1e-6) == 0.05811033466 - with subtests.test("Check LCOE"): - lcoe = model.prob.get_val("finance_subgroup_default.LCOE")[0] - assert pytest.approx(lcoe, rel=1e-6) == 0.12959097 + with subtests.test("Check LCOE (renewables plant)"): + lcoe_re = model.prob.get_val("finance_subgroup_renewables.LCOE")[0] + assert pytest.approx(lcoe_re, rel=1e-6) == 0.07102560120 + + with subtests.test("Check LCOE (renewables and natural gas plant)"): + lcoe_tot = model.prob.get_val("finance_subgroup_electricity.LCOE")[0] + assert pytest.approx(lcoe_tot, rel=1e-6) == 0.063997927290 # Test feedstock-specific values with subtests.test("Check feedstock output"): ng_output = model.prob.get_val("ng_feedstock_source.natural_gas_out") # Should be rated capacity (100 MMBtu) for all timesteps - assert all(ng_output == 100.0) + assert all(ng_output == 750.0) with subtests.test("Check feedstock consumption"): ng_consumed = model.prob.get_val("ng_feedstock.natural_gas_consumed") @@ -685,6 +736,16 @@ def test_wind_solar_electrolyzer_example(subtests): model.run() model.post_process() + + wind_aep = sum(model.prob.get_val("wind.electricity_out", units="kW")) + solar_aep = sum(model.prob.get_val("solar.electricity_out", units="kW")) + total_aep = model.prob.get_val( + "finance_subgroup_electricity.electricity_sum.total_electricity_produced", units="kW*h/year" + )[0] + + with subtests.test("Check total energy production"): + assert pytest.approx(wind_aep + solar_aep, rel=1e-6) == total_aep + with subtests.test("Check LCOE"): assert ( pytest.approx( @@ -870,6 +931,15 @@ def test_simple_dispatch_example(subtests): model.post_process() + wind_aep = sum(model.prob.get_val("wind.electricity_out", units="kW")) + aep_for_finance = model.prob.get_val( + "finance_subgroup_electricity.total_electricity_produced", units="kW*h/year" + )[0] + battery_init_energy = 30000.0 * 0.25 # max capacity in kW and initial charge rate percentage + + with subtests.test("Check electricity is not double counted"): + assert aep_for_finance <= wind_aep + battery_init_energy + # Test battery storage functionality with subtests.test("Check battery SOC bounds"): soc = model.prob.get_val("battery.electricity_soc") From b8e02e1d7769a31ecc72c3689117f099c97d7c46 Mon Sep 17 00:00:00 2001 From: John Jasa Date: Tue, 11 Nov 2025 21:15:24 -0600 Subject: [PATCH 53/79] Improving the readability of the `post_process` method (#361) * Removing the need for boundaries * WIP: checkpointing potential print changes * Using rich instead, looks nice * Using rich instead, looks nice * Cleaned up printing a bit * Moved method to function * Removed extra lines from plant_configs * Apply suggestions from code review Co-authored-by: Rob Hammond <13874373+RHammond2@users.noreply.github.com> * Fixes based on input * Added back solar resource after merge * Added back solar resource after merge --------- Co-authored-by: Rob Hammond <13874373+RHammond2@users.noreply.github.com> --- CHANGELOG.md | 2 + .../01_onshore_steel_mn/plant_config.yaml | 12 -- examples/02_texas_ammonia/plant_config.yaml | 12 -- .../co2_hydrogenation/plant_config_co2h.yaml | 12 -- .../plant_config_co2h.yaml | 12 -- .../03_methanol/smr/plant_config_smr.yaml | 12 -- examples/04_geo_h2/plant_config.yaml | 19 --- examples/05_wind_h2_opt/plant_config.yaml | 12 -- examples/06_custom_tech/plant_config.yaml | 12 -- .../07_run_of_river_plant/plant_config.yaml | 12 -- .../08_wind_electrolyzer/plant_config.yaml | 13 -- .../direct_ocean_capture/plant_config.yaml | 12 -- .../plant_config.yaml | 12 -- .../plant_config_financials.yaml | 12 -- examples/10_electrolyzer_om/plant_config.yaml | 11 -- .../11_hybrid_energy_plant/plant_config.yaml | 12 -- examples/12_ammonia_synloop/plant_config.yaml | 12 -- examples/13_air_separator/plant_config.yaml | 12 -- .../inputs/plant_config.yaml | 12 +- .../plant_config.yaml | 12 -- examples/16_natural_gas/plant_config.yaml | 11 -- .../17_splitter_wind_doc_h2/plant_config.yaml | 12 -- .../plant_config.yaml | 12 -- examples/19_simple_dispatch/plant_config.yaml | 12 -- .../plant_config.yaml | 13 -- h2integrate/core/h2integrate_model.py | 14 +- h2integrate/core/inputs/plant_schema.yaml | 2 +- h2integrate/core/utilities.py | 149 ++++++++++++++++++ pyproject.toml | 1 + 29 files changed, 164 insertions(+), 299 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b22b2cdce..3097da93d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,8 @@ - Add feature for natural gas plant converter to take electricity demand as an input and added system capacity as an input - Added wind resource model for API calls to Open-Meteo archive - Added `load_yaml()` function and flexibility to input a config dictionary to H2IntegrateModel rather than a filepath +- Removed `boundaries` from the necessary keys in `plant_config` validation +- Improved the readability of the postprocessing printout ## 0.4.0 [October 1, 2025] diff --git a/examples/01_onshore_steel_mn/plant_config.yaml b/examples/01_onshore_steel_mn/plant_config.yaml index e7fd38ea7..04213bdd0 100644 --- a/examples/01_onshore_steel_mn/plant_config.yaml +++ b/examples/01_onshore_steel_mn/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 47.5233 longitude: -92.5366 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. diff --git a/examples/02_texas_ammonia/plant_config.yaml b/examples/02_texas_ammonia/plant_config.yaml index 937b1e03d..48cbe8620 100644 --- a/examples/02_texas_ammonia/plant_config.yaml +++ b/examples/02_texas_ammonia/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 47.5233 longitude: -92.5366 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. diff --git a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml index f3f766b4d..39c4a7e89 100644 --- a/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml @@ -5,18 +5,6 @@ site: latitude: 32.34 longitude: -98.27 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index 9b83cb92b..a6ff0e07b 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -5,18 +5,6 @@ site: latitude: 29.2 longitude: -94.6 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - # this will naturally grow as we mature the interconnected tech technology_interconnections: [ ["hopp", "electricity_splitter", "electricity", "cable"], diff --git a/examples/03_methanol/smr/plant_config_smr.yaml b/examples/03_methanol/smr/plant_config_smr.yaml index e39c23243..a840aeead 100644 --- a/examples/03_methanol/smr/plant_config_smr.yaml +++ b/examples/03_methanol/smr/plant_config_smr.yaml @@ -5,18 +5,6 @@ site: latitude: 32.34 longitude: -98.27 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. diff --git a/examples/04_geo_h2/plant_config.yaml b/examples/04_geo_h2/plant_config.yaml index 1c2dcc1c3..4ab51d89c 100644 --- a/examples/04_geo_h2/plant_config.yaml +++ b/examples/04_geo_h2/plant_config.yaml @@ -5,24 +5,5 @@ site: latitude: 32.34 longitude: -98.27 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - -# array of arrays containing left-to-right technology -# interconnections; can support bidirectional connections -# with the reverse definition. -# this will naturally grow as we mature the interconnected tech -technology_interconnections: [ -] - plant: plant_life: 30 diff --git a/examples/05_wind_h2_opt/plant_config.yaml b/examples/05_wind_h2_opt/plant_config.yaml index 944d6511e..8242aaa3a 100644 --- a/examples/05_wind_h2_opt/plant_config.yaml +++ b/examples/05_wind_h2_opt/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 35.2018863 longitude: -101.945027 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - resources: wind_resource: resource_model: "wind_toolkit_v2_api" diff --git a/examples/06_custom_tech/plant_config.yaml b/examples/06_custom_tech/plant_config.yaml index 83d2c8fda..eba73ba0f 100644 --- a/examples/06_custom_tech/plant_config.yaml +++ b/examples/06_custom_tech/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 35.2018863 longitude: -101.945027 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - resources: wind_resource: resource_model: "wind_toolkit_v2_api" diff --git a/examples/07_run_of_river_plant/plant_config.yaml b/examples/07_run_of_river_plant/plant_config.yaml index 782024b27..200524f70 100644 --- a/examples/07_run_of_river_plant/plant_config.yaml +++ b/examples/07_run_of_river_plant/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 32.34 longitude: -98.27 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - resources: river_resource: resource_model: "river_resource" diff --git a/examples/08_wind_electrolyzer/plant_config.yaml b/examples/08_wind_electrolyzer/plant_config.yaml index 841d53674..1a95b6d03 100644 --- a/examples/08_wind_electrolyzer/plant_config.yaml +++ b/examples/08_wind_electrolyzer/plant_config.yaml @@ -5,19 +5,6 @@ site: latitude: 35.2018863 longitude: -101.945027 - - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - resources: wind_resource: resource_model: "wind_toolkit_v2_api" diff --git a/examples/09_co2/direct_ocean_capture/plant_config.yaml b/examples/09_co2/direct_ocean_capture/plant_config.yaml index 132897ae2..19e9661d6 100644 --- a/examples/09_co2/direct_ocean_capture/plant_config.yaml +++ b/examples/09_co2/direct_ocean_capture/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 43.807 longitude: -124.816 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - plant: plant_life: 30 diff --git a/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml b/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml index cec912b9b..e579b1b4e 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 43.807 longitude: -124.816 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - plant: plant_life: 30 diff --git a/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml b/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml index fb6d6caa6..8a6cf11e0 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml @@ -5,18 +5,6 @@ site: latitude: 48.153889 longitude: -122.774111 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - plant: plant_life: 20 diff --git a/examples/10_electrolyzer_om/plant_config.yaml b/examples/10_electrolyzer_om/plant_config.yaml index 45e7dcf88..45d1739a0 100644 --- a/examples/10_electrolyzer_om/plant_config.yaml +++ b/examples/10_electrolyzer_om/plant_config.yaml @@ -5,17 +5,6 @@ site: latitude: 35.2018863 longitude: -101.945027 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] resources: wind_resource: resource_model: "wind_toolkit_v2_api" diff --git a/examples/11_hybrid_energy_plant/plant_config.yaml b/examples/11_hybrid_energy_plant/plant_config.yaml index 6112af41c..3e5860f11 100644 --- a/examples/11_hybrid_energy_plant/plant_config.yaml +++ b/examples/11_hybrid_energy_plant/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 30.6617 longitude: -101.7096 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - plant: plant_life: 30 diff --git a/examples/12_ammonia_synloop/plant_config.yaml b/examples/12_ammonia_synloop/plant_config.yaml index 9a3c790b0..c0cf7d229 100644 --- a/examples/12_ammonia_synloop/plant_config.yaml +++ b/examples/12_ammonia_synloop/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 47.5233 longitude: -92.5366 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. diff --git a/examples/13_air_separator/plant_config.yaml b/examples/13_air_separator/plant_config.yaml index 3f87e9cb8..aa2d82924 100644 --- a/examples/13_air_separator/plant_config.yaml +++ b/examples/13_air_separator/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 47.5233 longitude: -92.5366 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. diff --git a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml index 4e5eea316..d2dab7bb4 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml @@ -5,17 +5,7 @@ site: latitude: 35.2018863 longitude: -101.945027 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] + resources: wind_resource: resource_model: "wind_toolkit_v2_api" diff --git a/examples/15_wind_solar_electrolyzer/plant_config.yaml b/examples/15_wind_solar_electrolyzer/plant_config.yaml index 009d59ebf..60e96866e 100644 --- a/examples/15_wind_solar_electrolyzer/plant_config.yaml +++ b/examples/15_wind_solar_electrolyzer/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 30.6617 longitude: -101.7096 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - resources: wind_resource: resource_model: "wind_toolkit_v2_api" diff --git a/examples/16_natural_gas/plant_config.yaml b/examples/16_natural_gas/plant_config.yaml index bec757b77..efeca8c24 100644 --- a/examples/16_natural_gas/plant_config.yaml +++ b/examples/16_natural_gas/plant_config.yaml @@ -6,17 +6,6 @@ site: longitude: -98.27 year: 2013 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] resources: solar_resource: resource_model: "goes_aggregated_solar_v4_api" diff --git a/examples/17_splitter_wind_doc_h2/plant_config.yaml b/examples/17_splitter_wind_doc_h2/plant_config.yaml index c6d23776f..aa556734e 100644 --- a/examples/17_splitter_wind_doc_h2/plant_config.yaml +++ b/examples/17_splitter_wind_doc_h2/plant_config.yaml @@ -6,18 +6,6 @@ site: longitude: -124.816 elevation_m: 439.0 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - plant: plant_life: 30 grid_connection: False # option, can be turned on or off diff --git a/examples/18_pyomo_heuristic_dispatch/plant_config.yaml b/examples/18_pyomo_heuristic_dispatch/plant_config.yaml index 65d70216d..b7c2897f9 100644 --- a/examples/18_pyomo_heuristic_dispatch/plant_config.yaml +++ b/examples/18_pyomo_heuristic_dispatch/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 35.2018863 longitude: -101.945027 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - resources: wind_resource: resource_model: "wind_toolkit_v2_api" diff --git a/examples/19_simple_dispatch/plant_config.yaml b/examples/19_simple_dispatch/plant_config.yaml index 8e6614e05..3e0750376 100644 --- a/examples/19_simple_dispatch/plant_config.yaml +++ b/examples/19_simple_dispatch/plant_config.yaml @@ -5,18 +5,6 @@ site: latitude: 35.2018863 longitude: -101.945027 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - resources: wind_resource: resource_model: "wind_toolkit_v2_api" diff --git a/examples/20_solar_electrolyzer_doe/plant_config.yaml b/examples/20_solar_electrolyzer_doe/plant_config.yaml index 4994333bc..a4dfb69f9 100644 --- a/examples/20_solar_electrolyzer_doe/plant_config.yaml +++ b/examples/20_solar_electrolyzer_doe/plant_config.yaml @@ -6,19 +6,6 @@ site: longitude: -102.75 year: 2012 - # array of polygons defining boundaries with x/y coords - boundaries: [ - { - x: [0.0, 1000.0, 1000.0, 0.0], - y: [0.0, 0.0, 100.0, 1000.0], - }, - { - x: [2000.0, 2500.0, 2000.0], - y: [2000.0, 2000.0, 2500.0], - } - ] - - resources: solar_resource: resource_model: "goes_aggregated_solar_v4_api" diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index 942c81dec..bcc132d93 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -4,7 +4,13 @@ import openmdao.api as om import matplotlib.pyplot as plt -from h2integrate.core.utilities import get_path, find_file, load_yaml, create_xdsm_from_config +from h2integrate.core.utilities import ( + get_path, + find_file, + load_yaml, + print_results, + create_xdsm_from_config, +) from h2integrate.finances.finances import AdjustedCapexOpexComp from h2integrate.core.resource_summer import ElectricitySumComp from h2integrate.core.supported_models import supported_models, electricity_producing_techs @@ -1148,9 +1154,9 @@ def post_process(self, show_plots=False): Also, if `show_plots` is set to True, then any performance models with post-processing plots available will be run and shown. """ - - self.prob.model.list_inputs(units=True, print_mean=True, excludes=["*resource_data"]) - self.prob.model.list_outputs(units=True, print_mean=True, excludes=["*resource_data"]) + # Use custom summary printer instead of OpenMDAO's built-in printing so we can + # suppress internal value printing and display only mean values. + print_results(self.prob.model, excludes=["*resource_data"]) for model in self.performance_models: if hasattr(model, "post_process") and callable(model.post_process): diff --git a/h2integrate/core/inputs/plant_schema.yaml b/h2integrate/core/inputs/plant_schema.yaml index b5616e235..1f91affe1 100644 --- a/h2integrate/core/inputs/plant_schema.yaml +++ b/h2integrate/core/inputs/plant_schema.yaml @@ -44,7 +44,7 @@ properties: type: number description: Y coordinates of the boundary polygon required: ["x", "y"] - required: ["latitude", "longitude", "boundaries"] + required: ["latitude", "longitude"] plant: type: object properties: diff --git a/h2integrate/core/utilities.py b/h2integrate/core/utilities.py index a63324fcb..bff78344b 100644 --- a/h2integrate/core/utilities.py +++ b/h2integrate/core/utilities.py @@ -729,3 +729,152 @@ def check_file_format_for_csv_generator( new_file.close() return new_fpath + + +def print_results(model, includes=None, excludes=None, show_units=True): + """Print hierarchical inputs plus explicit/implicit outputs (means only) using Rich. + + Order of rows preserves OpenMDAO's original ordering from list_inputs/list_outputs. + Group rows are emitted lazily the first time a variable within that path appears. + """ + + def _gather_outputs(explicit=True, implicit=False): + return model.list_outputs( + explicit=explicit, + implicit=implicit, + val=True, + prom_name=True, + units=show_units, + shape=True, + includes=includes, + excludes=excludes, + out_stream=None, + return_format="list", + ) + + explicit_meta = _gather_outputs(explicit=True, implicit=False) + implicit_meta = _gather_outputs(explicit=False, implicit=True) + + # Gather inputs (no explicit/implicit split in OpenMDAO API) + input_meta = model.list_inputs( + val=True, + prom_name=True, + units=show_units, + shape=True, + includes=includes, + excludes=excludes, + out_stream=None, + return_format="list", + ) + + def _mean(val): + if isinstance(val, np.ndarray): + return "nan" if val.size == 0 else f"{np.mean(val)}" + if isinstance(val, (int, float, np.number)): + return f"{val}" + return "n/a" + + from rich import box + from rich.table import Table + from rich.console import Console + + console = Console() + + def _emit_section(title, meta_list, kind_label="outputs"): + if not meta_list: + return + console.print(f"\n{len(meta_list)} {title.lower()} {kind_label}:") + table = Table(show_header=True, header_style="bold", box=box.MINIMAL, pad_edge=False) + table.add_column("Variable", overflow="fold") + table.add_column("Mean", justify="right") + if show_units: + table.add_column("Units") + table.add_column("Shape") + table.add_column("Promoted name", overflow="fold") + + emitted_groups = set() + for abs_name, meta in meta_list: + parts = abs_name.split(".") + # emit group rows + for depth in range(len(parts) - 1): + grp_path = ".".join(parts[: depth + 1]) + if grp_path not in emitted_groups: + emitted_groups.add(grp_path) + indent = " " * depth + grp_name = parts[depth] + if show_units: + table.add_row(f"{indent}{grp_name}", "", "", "", "") + else: + table.add_row(f"{indent}{grp_name}", "", "", "") + var = parts[-1] + indent = " " * (len(parts) - 1) + mean_raw = _mean(meta.get("val")) + try: + val = float(mean_raw) + if abs(val) >= 1e5: + mean_val = f"{val:,.2f}" + else: + mean_val = f"{val:,.4f}" + except (ValueError, TypeError): + mean_val = str(mean_raw) + units_val = ( + "n/a" + if (var == "cost_year" or meta.get("units") is None) + else str(meta.get("units")) + if show_units + else "" + ) + shape_meta = meta.get("shape", "") + if var == "cost_year": + shape_str = "n/a" + elif isinstance(shape_meta, (tuple, list)) and len(shape_meta) > 0: + shape_str = str(shape_meta[0]) + else: + shape_str = "" if shape_meta in (None, "", ()) else str(shape_meta) + promoted = meta.get("prom_name", "") + if show_units: + table.add_row(f"{indent}{var}", mean_val, units_val, shape_str, promoted) + else: + table.add_row(f"{indent}{var}", mean_val, shape_str, promoted) + console.print(table) + + # Emit sections (inside function scope) + _emit_section("Explicit", input_meta, kind_label="inputs") + _emit_section("Explicit", explicit_meta, kind_label="outputs") + _emit_section("Implicit", implicit_meta, kind_label="outputs") + + # structured return + def _structured(meta_list): + return { + name: { + "mean": _mean(meta.get("val")), + **( + { + "units": ( + "n/a" + if name.split(".")[-1] == "cost_year" or meta.get("units") is None + else meta.get("units") + ) + } + if show_units + else {} + ), + "shape": ( + "n/a" + if name.split(".")[-1] == "cost_year" + else meta.get("shape")[0] + if isinstance(meta.get("shape"), (tuple, list)) and len(meta.get("shape")) > 0 + else "" + if meta.get("shape") in (None, "", ()) + else meta.get("shape") + ), + "promoted_name": meta.get("prom_name"), + } + for name, meta in meta_list + } + + return { + "inputs": _structured(input_meta), + "explicit_outputs": _structured(explicit_meta), + "implicit_outputs": _structured(implicit_meta), + } diff --git a/pyproject.toml b/pyproject.toml index 0ffbb4209..fabbfb467 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,6 +59,7 @@ dependencies = [ "openmeteo-requests", "geopy", "pyDOE3", + "rich>=13.7.0", "requests-cache", "retry_requests", ] From ce48da3e839473f754e621e61b4b98130e9d9236 Mon Sep 17 00:00:00 2001 From: Jonathan Martin <94018654+jmartin4nrel@users.noreply.github.com> Date: Wed, 12 Nov 2025 13:08:29 -0700 Subject: [PATCH 54/79] Fixing ammonia stoichiometry (#363) * Fixing ammonia stoichiometry * Updating changelog * Removing size_mode --------- Co-authored-by: John Jasa --- CHANGELOG.md | 1 + .../converters/ammonia/ammonia_synloop.py | 8 ++-- .../test/test_ammonia_synloop_model.py | 37 ++++++++++++------- tests/h2integrate/test_all_examples.py | 6 +-- 4 files changed, 31 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3097da93d..edc4c0109 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ - Add feature for natural gas plant converter to take electricity demand as an input and added system capacity as an input - Added wind resource model for API calls to Open-Meteo archive - Added `load_yaml()` function and flexibility to input a config dictionary to H2IntegrateModel rather than a filepath +- Fixed stoichiometry mistake in ammonia synloop - Removed `boundaries` from the necessary keys in `plant_config` validation - Improved the readability of the postprocessing printout diff --git a/h2integrate/converters/ammonia/ammonia_synloop.py b/h2integrate/converters/ammonia/ammonia_synloop.py index 3a48576e3..f2f53f545 100644 --- a/h2integrate/converters/ammonia/ammonia_synloop.py +++ b/h2integrate/converters/ammonia/ammonia_synloop.py @@ -180,11 +180,11 @@ def compute(self, inputs, outputs): # Calculate max NH3 production for each input feed_mw = x_h2_feed * H_MW * 2 + x_n2_feed * N_MW * 2 # g / mol - w_h2_feed = x_h2_feed * H_MW / feed_mw # kg H2 / kg feed gas + w_h2_feed = x_h2_feed * H_MW * 2 / feed_mw # kg H2 / kg feed gas h2_rate = w_h2_feed * ratio_feed # kg H2 / kg NH3 nh3_from_h2 = h2_in / h2_rate # kg nh3 / hr - w_n2_feed = x_n2_feed * N_MW / feed_mw # kg N2 / kg feed gas + w_n2_feed = x_n2_feed * N_MW * 2 / feed_mw # kg N2 / kg feed gas n2_rate = w_n2_feed * ratio_feed # kg N2 / kg NH3 nh3_from_n2 = n2_in / n2_rate # kg nh3 / hr @@ -210,10 +210,10 @@ def compute(self, inputs, outputs): # Calculate output in purge gas purge_mw = x_h2_purge * H_MW * 2 + x_n2_purge * N_MW * 2 # g / mol - w_h2_purge = x_h2_purge * H_MW / purge_mw # kg H2 / kg purge gas + w_h2_purge = x_h2_purge * H_MW * 2 / purge_mw # kg H2 / kg purge gas h2_purge = w_h2_purge * ratio_purge * nh3_prod # kg H2 / hr - w_n2_purge = x_n2_purge * H_MW / purge_mw # kg N2 / kg purge gas + w_n2_purge = x_n2_purge * H_MW * 2 / purge_mw # kg N2 / kg purge gas n2_purge = w_n2_purge * ratio_purge * nh3_prod # kg N2 / hr # Calculate catalyst mass diff --git a/h2integrate/converters/ammonia/test/test_ammonia_synloop_model.py b/h2integrate/converters/ammonia/test/test_ammonia_synloop_model.py index 418f799a1..61485227d 100644 --- a/h2integrate/converters/ammonia/test/test_ammonia_synloop_model.py +++ b/h2integrate/converters/ammonia/test/test_ammonia_synloop_model.py @@ -34,7 +34,7 @@ def make_synloop_config(): } -def test_ammonia_synloop_limiting_cases(): +def test_ammonia_synloop_limiting_cases(subtests): config = make_synloop_config() plant_info = { "simulation": { @@ -45,17 +45,17 @@ def test_ammonia_synloop_limiting_cases(): # Each test is a single array of 4 hours, each with a different limiting case # Case 1: N2 limiting - cap_mult = 5000 + cap_mult = 10.0e3 n2 = np.array([2.0, 5.0, 5.0, 5.0]) * cap_mult # Only first entry is N2 limiting h2 = np.array([2.0, 1.0, 2.0, 2.0]) * cap_mult # Second entry is H2 limiting - elec = np.array([0.006, 0.006, 0.003, 0.006]) * cap_mult # Third entry is electricity limiting + elec = np.array([0.006, 0.006, 0.001, 0.006]) * cap_mult # Third entry is electricity limiting # Fourth entry is capacity-limited expected_nh3 = np.array( [ 21520.21334466, # N2 limiting 49840.21632252, # H2 limiting - 28267.47285097, # Electricity limiting + 18844.98190065, # Electricity limiting 52777.6, # Capacity limiting ] ) @@ -71,14 +71,23 @@ def test_ammonia_synloop_limiting_cases(): nh3 = prob.get_val("synloop.ammonia_out") total = prob.get_val("synloop.total_ammonia_produced") - # Check NH3 output - assert np.allclose(nh3, expected_nh3, rtol=1e-6) - assert np.allclose(total, np.sum(expected_nh3), rtol=1e-6) + # Check individual NH3 output values + with subtests.test("N2 limiting"): + assert pytest.approx(nh3[0], rel=1e-6) == 21520.21334466 + assert pytest.approx(prob.get_val("synloop.limiting_input")[0]) == 0 - # Check limiting factors - # N2 limiting: index 0, H2 limiting: index 1, Electricity limiting: index 2 - # Capacity limiting: index 3 - assert pytest.approx(prob.get_val("synloop.limiting_input")[0]) == 0 - assert pytest.approx(prob.get_val("synloop.limiting_input")[1]) == 1 - assert pytest.approx(prob.get_val("synloop.limiting_input")[2]) == 2 - assert pytest.approx(prob.get_val("synloop.limiting_input")[3]) == 3 + with subtests.test("H2 limiting"): + assert pytest.approx(nh3[1], rel=1e-6) == 49840.21632252 + assert pytest.approx(prob.get_val("synloop.limiting_input")[1]) == 1 + + with subtests.test("Electricity limiting"): + assert pytest.approx(nh3[2], rel=1e-6) == 18844.98190065 + assert pytest.approx(prob.get_val("synloop.limiting_input")[2]) == 2 + + with subtests.test("Capacity limiting"): + assert pytest.approx(nh3[3], rel=1e-6) == 52777.6 + assert pytest.approx(prob.get_val("synloop.limiting_input")[3]) == 3 + + # Check total NH3 output + with subtests.test("Total ammonia"): + assert np.allclose(total, np.sum(expected_nh3), rtol=1e-6) diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index d8e8b1751..e91ecd742 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -182,7 +182,7 @@ def test_ammonia_synloop_example(subtests): assert pytest.approx(model.prob.get_val("ammonia.CapEx"), rel=1e-6) == 1.15173753e09 with subtests.test("Check ammonia OpEx"): - assert pytest.approx(model.prob.get_val("ammonia.OpEx"), rel=1e-6) == 25318447.90064406 + assert pytest.approx(model.prob.get_val("ammonia.OpEx"), rel=1e-4) == 25712447.0 with subtests.test("Check total adjusted CapEx"): assert ( @@ -197,7 +197,7 @@ def test_ammonia_synloop_example(subtests): pytest.approx( model.prob.get_val("finance_subgroup_nh3.total_opex_adjusted")[0], rel=1e-6 ) - == 78480154.4 + == 78873785.09009656 ) with subtests.test("Check LCOH"): @@ -209,7 +209,7 @@ def test_ammonia_synloop_example(subtests): with subtests.test("Check LCOA"): assert ( pytest.approx(model.prob.get_val("finance_subgroup_nh3.LCOA")[0], rel=1e-6) - == 1.067030996544544 + == 1.21777477635066 ) From eb1b9b357d52db53d3144caa32f768f0f936a186 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Thu, 13 Nov 2025 11:50:22 -0700 Subject: [PATCH 55/79] Minor bugfix to ProFAST output naming (#368) * minor fix to profast output naming * actually fixed output naming and added subtest to check --- h2integrate/finances/profast_base.py | 6 ++++-- h2integrate/finances/profast_lco.py | 2 +- tests/h2integrate/test_all_examples.py | 9 +++++++++ 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/h2integrate/finances/profast_base.py b/h2integrate/finances/profast_base.py index 227d5ffb2..67595b950 100644 --- a/h2integrate/finances/profast_base.py +++ b/h2integrate/finances/profast_base.py @@ -512,9 +512,11 @@ def setup(self): # Construct output name based on commodity and optional description # this is necessary to allow for financial subgroups self.description = ( - self.options["description"].strip() if "description" in self.options else "" + f"_{self.options['description'].strip()}" + if self.options["description"].strip() != "" + else "" ) - self.output_txt = f"{self.options['commodity_type'].lower()}_{self.description}" + self.output_txt = f"{self.options['commodity_type'].lower()}{self.description}" # Add model-specific outputs defined by subclass self.add_model_specific_outputs() diff --git a/h2integrate/finances/profast_lco.py b/h2integrate/finances/profast_lco.py index e18a44530..ccfde666c 100644 --- a/h2integrate/finances/profast_lco.py +++ b/h2integrate/finances/profast_lco.py @@ -151,7 +151,7 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): pf_config_dict = dict_to_yaml_formatting(pf_config_dict) if save_config: - config_fpath = Path(output_dir) / f"{fbasename}config.yaml" + config_fpath = Path(output_dir) / f"{fbasename}_config.yaml" write_yaml(pf_config_dict, config_fpath) if save_results: diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index e91ecd742..b725b9f6e 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -121,6 +121,15 @@ def test_simple_ammonia_example(subtests): pytest.approx(model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0], rel=1e-3) == 3.970 ) + + with subtests.test("Check price of hydrogen"): + assert ( + pytest.approx( + model.prob.get_val("finance_subgroup_hydrogen.price_hydrogen")[0], rel=1e-3 + ) + == 3.970 + ) + # Currently underestimated compared to the Reference Design Doc with subtests.test("Check LCOA"): assert ( From b21c0c0bab33de91a03a434521469ca173665980 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Fri, 14 Nov 2025 09:45:06 -0700 Subject: [PATCH 56/79] Decoupled H2 Storage Performance and Cost Models (#324) * split out h2 storage cost models * updated cost models and made h2 storage auto sizing model * updated h2 storage cost tests * updated example 12 and remaining models using old h2 storage * updated failing tests and removed old h2 storage model from supported models * moved and updated mch tests * added tests for mch wrapper but failing * intermediate change * updated and added tests for mch storage * added doc strings for MCH model * changed h2 storage autosizing and updated example input files * generalized h2 storage auto sizing * moved autosizing storage model * removed h2sam as model option * added docstrings and minor cleanups to h2_storage_cost * added docstrings and updated docs * fixed test_framework failing test * update h2 storage model names * added sizing_mode input to h2 cost models --------- Co-authored-by: John Jasa Co-authored-by: kbrunik <102193481+kbrunik@users.noreply.github.com> --- CHANGELOG.md | 2 + docs/technology_models/technology_overview.md | 11 +- .../01_onshore_steel_mn/plant_config.yaml | 1 - examples/01_onshore_steel_mn/tech_config.yaml | 21 +- examples/02_texas_ammonia/plant_config.yaml | 1 - examples/02_texas_ammonia/tech_config.yaml | 20 +- examples/12_ammonia_synloop/hb_inputs.csv | 1 - examples/12_ammonia_synloop/plant_config.yaml | 1 - examples/12_ammonia_synloop/tech_config.yaml | 19 +- .../inputs/plant_config.yaml | 1 - .../inputs/tech_config.yaml | 19 +- h2integrate/core/supported_models.py | 14 +- h2integrate/core/test/test_framework.py | 4 +- .../lined_rock_cavern/lined_rock_cavern.py | 59 ++-- .../pipe_storage/underground_pipe_storage.py | 62 ++--- .../h2_storage/salt_cavern/salt_cavern.py | 60 ++-- .../storage/hydrogen/h2_storage_cost.py | 205 ++++++++++++++ h2integrate/storage/hydrogen/mch_storage.py | 197 +++++++++++++ h2integrate/storage/hydrogen/test/__init__.py | 0 h2integrate/storage/hydrogen/test/conftest.py | 20 ++ .../hydrogen/test/test_hydrogen_storage.py | 169 +++++++++++ .../hydrogen/test/test_tol_mch_storage.py | 262 ++++++++++++++++++ .../storage/simple_storage_auto_sizing.py | 126 +++++++++ tests/h2integrate/test_all_examples.py | 22 +- .../test_controllers/inputs/tech_config.yaml | 18 +- .../test_open_loop_controllers.py | 6 - .../test_hydrogen/test_lined_rock_storage.py | 2 +- .../test_hydrogen/test_salt_cavern_storage.py | 2 +- .../test_hydrogen/test_tol_mch_storage.py | 93 ------- .../test_underground_pipe_storage.py | 1 - 30 files changed, 1130 insertions(+), 289 deletions(-) create mode 100644 h2integrate/storage/hydrogen/h2_storage_cost.py create mode 100644 h2integrate/storage/hydrogen/mch_storage.py create mode 100644 h2integrate/storage/hydrogen/test/__init__.py create mode 100644 h2integrate/storage/hydrogen/test/conftest.py create mode 100644 h2integrate/storage/hydrogen/test/test_hydrogen_storage.py create mode 100644 h2integrate/storage/hydrogen/test/test_tol_mch_storage.py create mode 100644 h2integrate/storage/simple_storage_auto_sizing.py delete mode 100644 tests/h2integrate/test_hydrogen/test_tol_mch_storage.py diff --git a/CHANGELOG.md b/CHANGELOG.md index edc4c0109..e74246ffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,8 @@ - Fixed stoichiometry mistake in ammonia synloop - Removed `boundaries` from the necessary keys in `plant_config` validation - Improved the readability of the postprocessing printout +- Split out cost models from coupled hydrogen storage performance and cost model +- Added storage auto-sizing performance model based on storage sizing calculations that existed in the coupled hydrogen storage performance and cost model ## 0.4.0 [October 1, 2025] diff --git a/docs/technology_models/technology_overview.md b/docs/technology_models/technology_overview.md index 9853536cf..4ff143fab 100644 --- a/docs/technology_models/technology_overview.md +++ b/docs/technology_models/technology_overview.md @@ -205,13 +205,20 @@ Below summarizes the available performance, cost, and financial models for each (storage-models)= ## Storage Models - `h2_storage`: hydrogen storage - - combined performance and cost - + `'h2_storage'` - performance models: + `'hydrogen_tank_performance'` - cost models: + `'hydrogen_tank_cost'` + + `'lined_rock_cavern_h2_storage_cost'` + + `'salt_cavern_h2_storage_cost'` + + `'mch_tol_h2_storage_cost'` + + `'buried_pipe_h2_storage_cost'` - `generic_storage`: any resource storage + - performance models: + + `'simple_generic_storage'` + + `'storage_auto_sizing'` + - cost models: + + `'generic_storage_cost'` - `battery`: battery storage - performance models: + `'pysam_battery'` diff --git a/examples/01_onshore_steel_mn/plant_config.yaml b/examples/01_onshore_steel_mn/plant_config.yaml index 04213bdd0..933a23391 100644 --- a/examples/01_onshore_steel_mn/plant_config.yaml +++ b/examples/01_onshore_steel_mn/plant_config.yaml @@ -11,7 +11,6 @@ site: # this will naturally grow as we mature the interconnected tech technology_interconnections: [ ["hopp", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "h2_storage", "efficiency"], ["electrolyzer", "h2_storage", "hydrogen", "pipe"], ["finance_subgroup_hydrogen", "steel", ["LCOH_delivered", "LCOH"]], ["hopp", "steel", "electricity", "cable"], diff --git a/examples/01_onshore_steel_mn/tech_config.yaml b/examples/01_onshore_steel_mn/tech_config.yaml index a3bbf4ef5..ca026ff43 100644 --- a/examples/01_onshore_steel_mn/tech_config.yaml +++ b/examples/01_onshore_steel_mn/tech_config.yaml @@ -38,24 +38,25 @@ technologies: capital_items: depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 replacement_cost_percent: 0.15 # percent of capex - H2A default case + h2_storage: performance_model: - model: "h2_storage" + model: "storage_auto_sizing" control_strategy: model: "pass_through_controller" cost_model: - model: "h2_storage" + model: "lined_rock_cavern_h2_storage_cost" model_inputs: - performance_parameters: - electrolyzer_rating_mw_for_h2_storage_sizing: 720. - size_capacity_from_demand: - flag: True # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 0 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - control_parameters: + shared_parameters: commodity_name: "hydrogen" commodity_units: "kg/h" + cost_parameters: + # since the storage is being auto-sized by the performance model, + # we set the sizing mode to 'auto' rather than defining the capacities + # in the input file + sizing_mode: "auto" # set as "auto" so storage capacity doesnt have to be defined + + steel: performance_model: model: "steel_performance" diff --git a/examples/02_texas_ammonia/plant_config.yaml b/examples/02_texas_ammonia/plant_config.yaml index 48cbe8620..a98991e54 100644 --- a/examples/02_texas_ammonia/plant_config.yaml +++ b/examples/02_texas_ammonia/plant_config.yaml @@ -11,7 +11,6 @@ site: # this will naturally grow as we mature the interconnected tech technology_interconnections: [ ["hopp", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "h2_storage", "efficiency"], ["electrolyzer", "h2_storage", "hydrogen", "pipe"], ["h2_storage", "ammonia", "hydrogen", "pipe"], ["finance_subgroup_hydrogen", "ammonia", "LCOH"], diff --git a/examples/02_texas_ammonia/tech_config.yaml b/examples/02_texas_ammonia/tech_config.yaml index e2ccc6b43..5c22caf07 100644 --- a/examples/02_texas_ammonia/tech_config.yaml +++ b/examples/02_texas_ammonia/tech_config.yaml @@ -41,22 +41,22 @@ technologies: h2_storage: performance_model: - model: "h2_storage" + model: "storage_auto_sizing" control_strategy: model: "pass_through_controller" cost_model: - model: "h2_storage" + model: "salt_cavern_h2_storage_cost" model_inputs: - performance_parameters: - electrolyzer_rating_mw_for_h2_storage_sizing: 640 - size_capacity_from_demand: - flag: True # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "salt_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 0 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - control_parameters: + shared_parameters: commodity_name: "hydrogen" commodity_units: "kg/h" + cost_parameters: + # since the storage is being auto-sized by the performance model, + # we set the sizing mode to 'auto' rather than defining the capacities + # in the input file + sizing_mode: "auto" # set as "auto" so storage capacity doesnt have to be defined + + ammonia: performance_model: model: "simple_ammonia_performance" diff --git a/examples/12_ammonia_synloop/hb_inputs.csv b/examples/12_ammonia_synloop/hb_inputs.csv index 20ca4db70..64d8ca180 100644 --- a/examples/12_ammonia_synloop/hb_inputs.csv +++ b/examples/12_ammonia_synloop/hb_inputs.csv @@ -1,6 +1,5 @@ Index 0,Index 1,Index 2,Index 3,Index 4,Index 5,Type,Haber Bosch Big,Haber Bosch Small technologies,ammonia,model_inputs,shared_parameters,production_capacity,,float,100000,10000 -technologies,h2_storage,model_inputs,performance_parameters,type,,str,salt_cavern,lined_rock_cavern technologies,electrolyzer,model_inputs,performance_parameters,n_clusters,,int,16,2 technologies,electrolyzer,model_inputs,performance_parameters,include_degradation_penalty,,bool,TRUE,FALSE technologies,electrolyzer,model_inputs,financial_parameters,capital_items,replacement_cost_percent,float,0.15,0.25 diff --git a/examples/12_ammonia_synloop/plant_config.yaml b/examples/12_ammonia_synloop/plant_config.yaml index c0cf7d229..8ddf89d68 100644 --- a/examples/12_ammonia_synloop/plant_config.yaml +++ b/examples/12_ammonia_synloop/plant_config.yaml @@ -11,7 +11,6 @@ site: # this will naturally grow as we mature the interconnected tech technology_interconnections: [ ["hopp", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "h2_storage", "efficiency"], ["electrolyzer", "h2_storage", "hydrogen", "pipe"], ["h2_storage", "ammonia", "hydrogen", "pipe"], # etc diff --git a/examples/12_ammonia_synloop/tech_config.yaml b/examples/12_ammonia_synloop/tech_config.yaml index 581f84e8d..13b3bc4e9 100644 --- a/examples/12_ammonia_synloop/tech_config.yaml +++ b/examples/12_ammonia_synloop/tech_config.yaml @@ -41,22 +41,21 @@ technologies: h2_storage: performance_model: - model: "h2_storage" + model: "storage_auto_sizing" control_strategy: model: "pass_through_controller" cost_model: - model: "h2_storage" + model: "salt_cavern_h2_storage_cost" model_inputs: - performance_parameters: - electrolyzer_rating_mw_for_h2_storage_sizing: 640 - size_capacity_from_demand: - flag: True # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "salt_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 0 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - control_parameters: + shared_parameters: commodity_name: "hydrogen" commodity_units: "kg/h" + cost_parameters: + # since the storage is being auto-sized by the performance model, + # we set the sizing mode to 'auto' rather than defining the capacities + # in the input file + sizing_mode: "auto" # set as "auto" so storage capacity doesnt have to be defined + ammonia: performance_model: model: "synloop_ammonia_performance" diff --git a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml index d2dab7bb4..ac38c468a 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml @@ -18,7 +18,6 @@ site: # this will naturally grow as we mature the interconnected tech technology_interconnections: [ ["wind", "electrolyzer", "electricity", "cable"], - ["electrolyzer", "h2_storage", "efficiency"], ["electrolyzer", "h2_storage", "hydrogen", "pipe"], ] diff --git a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml index 7a004f03d..4f4423a24 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml @@ -57,29 +57,22 @@ technologies: replacement_cost_percent: 0.15 # percent of capex - H2A default case h2_storage: performance_model: - model: "h2_storage" + model: "simple_generic_storage" cost_model: - model: "h2_storage" + model: "lined_rock_cavern_h2_storage_cost" control_strategy: model: "demand_open_loop_controller" model_inputs: shared_parameters: commodity_name: "hydrogen" - performance_parameters: - electrolyzer_rating_mw_for_h2_storage_sizing: 720. # electrolyzer rating for sizing - size_capacity_from_demand: - flag: False # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 10 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - control_parameters: commodity_units: "kg/h" - max_capacity: 60000.0 # kg + max_charge_rate: 12446.00729773 # kg/time step + max_capacity: 2987042.0 # kg + control_parameters: max_charge_percent: 1.0 # percent as decimal min_charge_percent: 0.1 # percent as decimal init_charge_percent: 0.25 # percent as decimal - max_charge_rate: 10000.0 # kg/time step - max_discharge_rate: 10000.0 # kg/time step + max_discharge_rate: 12446.00729773 # kg/time step charge_efficiency: 1.0 # percent as decimal discharge_efficiency: 1.0 # percent as decimal demand_profile: 5000 # constant demand of 5000 kg per hour (see commodity_units) diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index 0d9af96fe..d95593f58 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -21,7 +21,7 @@ from h2integrate.finances.numpy_financial_npv import NumpyFinancialNPV from h2integrate.resource.wind.openmeteo_wind import OpenMeteoHistoricalWindResource from h2integrate.storage.generic_storage_cost import GenericStorageCostModel -from h2integrate.storage.hydrogen.eco_storage import H2Storage +from h2integrate.storage.hydrogen.mch_storage import MCHTOLStorageCostModel from h2integrate.converters.wind.atb_wind_cost import ATBWindPlantCostModel from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel from h2integrate.transporters.generic_combiner import GenericCombinerPerformanceModel @@ -38,10 +38,16 @@ ) from h2integrate.converters.hydrogen.wombat_model import WOMBATElectrolyzerModel from h2integrate.storage.battery.atb_battery_cost import ATBBatteryCostModel +from h2integrate.storage.hydrogen.h2_storage_cost import ( + PipeStorageCostModel, + SaltCavernStorageCostModel, + LinedRockCavernStorageCostModel, +) from h2integrate.converters.ammonia.ammonia_synloop import ( AmmoniaSynLoopCostModel, AmmoniaSynLoopPerformanceModel, ) +from h2integrate.storage.simple_storage_auto_sizing import StorageAutoSizingModel from h2integrate.converters.water.desal.desalination import ( ReverseOsmosisCostModel, ReverseOsmosisPerformanceModel, @@ -190,9 +196,13 @@ "summer": GenericSummerPerformanceModel, # Storage "pysam_battery": PySAMBatteryPerformanceModel, - "h2_storage": H2Storage, "hydrogen_tank_performance": HydrogenTankPerformanceModel, "hydrogen_tank_cost": HydrogenTankCostModel, + "storage_auto_sizing": StorageAutoSizingModel, + "lined_rock_cavern_h2_storage_cost": LinedRockCavernStorageCostModel, + "salt_cavern_h2_storage_cost": SaltCavernStorageCostModel, + "mch_tol_h2_storage_cost": MCHTOLStorageCostModel, + "buried_pipe_h2_storage_cost": PipeStorageCostModel, "atb_battery_cost": ATBBatteryCostModel, "generic_storage_cost": GenericStorageCostModel, "simple_generic_storage": SimpleGenericStorage, diff --git a/h2integrate/core/test/test_framework.py b/h2integrate/core/test/test_framework.py index 7270db03d..97a9c5404 100644 --- a/h2integrate/core/test/test_framework.py +++ b/h2integrate/core/test/test_framework.py @@ -163,9 +163,9 @@ def test_technology_connections(): new_connection = (["finance_subgroup_electricity", "steel", ("LCOE", "electricity_cost")],) new_tech_interconnections = ( - plant_config_data["technology_interconnections"][0:4] + plant_config_data["technology_interconnections"][0:3] + list(new_connection) - + [plant_config_data["technology_interconnections"][4]] + + [plant_config_data["technology_interconnections"][3]] ) plant_config_data["technology_interconnections"] = new_tech_interconnections diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/lined_rock_cavern/lined_rock_cavern.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/lined_rock_cavern/lined_rock_cavern.py index 550389995..92cc16ea0 100644 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/lined_rock_cavern/lined_rock_cavern.py +++ b/h2integrate/simulation/technologies/hydrogen/h2_storage/lined_rock_cavern/lined_rock_cavern.py @@ -33,7 +33,6 @@ def __init__(self, input_dict): - storage_duration_hrs (float): (optional if h2_storage_kg set) [hrs] - flow_rate_kg_hr (float): (optional if h2_storage_kg set) [kg/hr] - system_flow_rate (float): [kg/day] - - model (str): ('papadias' or 'hdsam') - labor_rate (float): (optional, default: 37.40) [$2018/hr] - insurance (float): (optional, default: 1%) [decimal percent] - property_taxes (float): (optional, default: 1%) [decimal percent] @@ -69,11 +68,6 @@ def __init__(self, input_dict): else: self.system_flow_rate = input_dict["system_flow_rate"] - if "model" in input_dict: - self.model = input_dict["model"] # [papadias, hdsam] - else: - raise Exception("input_dict must contain model type of either `papadias` or `hdsam`") - self.labor_rate = input_dict.get("labor_rate", 37.39817) # $(2018)/hr self.insurance = input_dict.get("insurance", 1 / 100) # % of total capital investment self.property_taxes = input_dict.get( @@ -103,40 +97,35 @@ def lined_rock_cavern_capex(self): - lined_rock_cavern_storage_capex (float): installed capital cost in 2018 [USD] """ - if self.model == "papadias": - # Installed capital cost - a = 0.095803 - b = 1.5868 - c = 10.332 - self.lined_rock_cavern_storage_capex_per_kg = np.exp( - a * (np.log(self.h2_storage_kg / 1000)) ** 2 - - b * np.log(self.h2_storage_kg / 1000) - + c - ) # 2019 [USD] from Papadias [2] - self.installed_capex = self.lined_rock_cavern_storage_capex_per_kg * self.h2_storage_kg - cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 - self.installed_capex = cepci_overall * self.installed_capex - self.output_dict["lined_rock_cavern_storage_capex"] = self.installed_capex - - outlet_pressure = 200 # Max outlet pressure of lined rock cavern in [1] - n_compressors = 2 + # Installed capital cost + a = 0.095803 + b = 1.5868 + c = 10.332 + self.lined_rock_cavern_storage_capex_per_kg = np.exp( + a * (np.log(self.h2_storage_kg / 1000)) ** 2 - b * np.log(self.h2_storage_kg / 1000) + c + ) # 2019 [USD] from Papadias [2] + self.installed_capex = self.lined_rock_cavern_storage_capex_per_kg * self.h2_storage_kg + cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 + self.installed_capex = cepci_overall * self.installed_capex + self.output_dict["lined_rock_cavern_storage_capex"] = self.installed_capex + + outlet_pressure = 200 # Max outlet pressure of lined rock cavern in [1] + n_compressors = 2 + storage_compressor = Compressor( + outlet_pressure, self.system_flow_rate, n_compressors=n_compressors + ) + storage_compressor.compressor_power() + motor_rating, power = storage_compressor.compressor_system_power() + if motor_rating > 1600: + n_compressors += 1 storage_compressor = Compressor( outlet_pressure, self.system_flow_rate, n_compressors=n_compressors ) storage_compressor.compressor_power() motor_rating, power = storage_compressor.compressor_system_power() - if motor_rating > 1600: - n_compressors += 1 - storage_compressor = Compressor( - outlet_pressure, self.system_flow_rate, n_compressors=n_compressors - ) - storage_compressor.compressor_power() - motor_rating, power = storage_compressor.compressor_system_power() - comp_capex, comp_OM = storage_compressor.compressor_costs() - cepci = 1.36 / 1.29 # convert from $2016 to $2018 - self.comp_capex = comp_capex * cepci - elif self.model == "hdsam": - raise NotImplementedError + comp_capex, comp_OM = storage_compressor.compressor_costs() + cepci = 1.36 / 1.29 # convert from $2016 to $2018 + self.comp_capex = comp_capex * cepci return ( self.lined_rock_cavern_storage_capex_per_kg, self.installed_capex, diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/underground_pipe_storage.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/underground_pipe_storage.py index fed241b70..5d9597f59 100644 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/underground_pipe_storage.py +++ b/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/underground_pipe_storage.py @@ -37,7 +37,6 @@ def __init__(self, input_dict): - flow_rate_kg_hr (float): (optional if h2_storage_kg set) [kg/hr] - compressor_output_pressure (float): 100 bar required [bar] - system_flow_rate (float): [kg/day] - - model (str): ('papadias' or 'hdsam') - labor_rate (float): (optional, default: 37.40) [$2018/hr] - insurance (float): (optional, default: 1%) [decimal percent] - property_taxes (float): (optional, default: 1%) [decimal percent] @@ -79,11 +78,6 @@ def __init__(self, input_dict): else: self.system_flow_rate = input_dict["system_flow_rate"] - if "model" in input_dict: - self.model = input_dict["model"] # [papadias, hdsam] - else: - raise Exception("input_dict must contain model type of either `papadias` or `hdsam`") - self.labor_rate = input_dict.get("labor_rate", 37.39817) # $(2018)/hr self.insurance = input_dict.get("insurance", 1 / 100) # % of total capital investment self.property_taxes = input_dict.get( @@ -113,42 +107,38 @@ def pipe_storage_capex(self): - pipe_storage_capex (float): installed capital cost in 2018 [USD] """ - if self.model == "papadias": - # Installed capital cost - a = 0.0041617 - b = 0.060369 - c = 6.4581 - self.pipe_storage_capex_per_kg = np.exp( - a * (np.log(self.h2_storage_kg / 1000)) ** 2 - - b * np.log(self.h2_storage_kg / 1000) - + c - ) # 2019 [USD] from Papadias [2] - self.installed_capex = self.pipe_storage_capex_per_kg * self.h2_storage_kg - cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 - self.installed_capex = cepci_overall * self.installed_capex - self.output_dict["pipe_storage_capex"] = self.installed_capex + # Installed capital cost + a = 0.0041617 + b = 0.060369 + c = 6.4581 + self.pipe_storage_capex_per_kg = np.exp( + a * (np.log(self.h2_storage_kg / 1000)) ** 2 - b * np.log(self.h2_storage_kg / 1000) + c + ) # 2019 [USD] from Papadias [2] + self.installed_capex = self.pipe_storage_capex_per_kg * self.h2_storage_kg + cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 + self.installed_capex = cepci_overall * self.installed_capex + self.output_dict["pipe_storage_capex"] = self.installed_capex - outlet_pressure = ( - self.compressor_output_pressure - ) # Max outlet pressure of underground pipe storage [1] - n_compressors = 2 + outlet_pressure = ( + self.compressor_output_pressure + ) # Max outlet pressure of underground pipe storage [1] + n_compressors = 2 + storage_compressor = Compressor( + outlet_pressure, self.system_flow_rate, n_compressors=n_compressors + ) + storage_compressor.compressor_power() + motor_rating, power = storage_compressor.compressor_system_power() + if motor_rating > 1600: + n_compressors += 1 storage_compressor = Compressor( outlet_pressure, self.system_flow_rate, n_compressors=n_compressors ) storage_compressor.compressor_power() motor_rating, power = storage_compressor.compressor_system_power() - if motor_rating > 1600: - n_compressors += 1 - storage_compressor = Compressor( - outlet_pressure, self.system_flow_rate, n_compressors=n_compressors - ) - storage_compressor.compressor_power() - motor_rating, power = storage_compressor.compressor_system_power() - comp_capex, comp_OM = storage_compressor.compressor_costs() - cepci = 1.36 / 1.29 # convert from $2016 to $2018 - self.comp_capex = comp_capex * cepci - elif self.model == "hdsam": - raise NotImplementedError + comp_capex, comp_OM = storage_compressor.compressor_costs() + cepci = 1.36 / 1.29 # convert from $2016 to $2018 + self.comp_capex = comp_capex * cepci + return self.pipe_storage_capex_per_kg, self.installed_capex, self.comp_capex def pipe_storage_opex(self): diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/salt_cavern/salt_cavern.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/salt_cavern/salt_cavern.py index 9d379cab5..197ba41ef 100644 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/salt_cavern/salt_cavern.py +++ b/h2integrate/simulation/technologies/hydrogen/h2_storage/salt_cavern/salt_cavern.py @@ -33,7 +33,6 @@ def __init__(self, input_dict): - storage_duration_hrs (float): (optional if h2_storage_kg set) [hrs] - flow_rate_kg_hr (float): (optional if h2_storage_kg set) [kg/hr] - system_flow_rate (float): [kg/day] - - model (str): ('papadias' or 'hdsam') - labor_rate (float): (optional, default: 37.40) [$2018/hr] - insurance (float): (optional, default: 1%) [decimal percent] - property_taxes (float): (optional, default: 1%) [decimal percent] @@ -69,11 +68,6 @@ def __init__(self, input_dict): else: self.system_flow_rate = input_dict["system_flow_rate"] - if "model" in input_dict: - self.model = input_dict["model"] # [papadias, hdsam] - else: - raise Exception("input_dict must contain model type of either `papadias` or `hdsam`") - self.labor_rate = input_dict.get("labor_rate", 37.39817) # $(2018)/hr self.insurance = input_dict.get("insurance", 1 / 100) # % of total capital investment self.property_taxes = input_dict.get( @@ -103,40 +97,36 @@ def salt_cavern_capex(self): - salt_cavern_capex (float): installed capital cost in 2018 [USD] """ - if self.model == "papadias": - # Installed capital cost - a = 0.092548 - b = 1.6432 - c = 10.161 - self.salt_cavern_storage_capex_per_kg = np.exp( - a * (np.log(self.h2_storage_kg / 1000)) ** 2 - - b * np.log(self.h2_storage_kg / 1000) - + c - ) # 2019 [USD] from Papadias [2] - self.installed_capex = self.salt_cavern_storage_capex_per_kg * self.h2_storage_kg - cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 - self.installed_capex = cepci_overall * self.installed_capex - self.output_dict["salt_cavern_storage_capex"] = self.installed_capex - - outlet_pressure = 120 # Max outlet pressure of salt cavern in [1] - n_compressors = 2 + # Installed capital cost + a = 0.092548 + b = 1.6432 + c = 10.161 + self.salt_cavern_storage_capex_per_kg = np.exp( + a * (np.log(self.h2_storage_kg / 1000)) ** 2 - b * np.log(self.h2_storage_kg / 1000) + c + ) # 2019 [USD] from Papadias [2] + self.installed_capex = self.salt_cavern_storage_capex_per_kg * self.h2_storage_kg + cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 + self.installed_capex = cepci_overall * self.installed_capex + self.output_dict["salt_cavern_storage_capex"] = self.installed_capex + + outlet_pressure = 120 # Max outlet pressure of salt cavern in [1] + n_compressors = 2 + storage_compressor = Compressor( + outlet_pressure, self.system_flow_rate, n_compressors=n_compressors + ) + storage_compressor.compressor_power() + motor_rating, power = storage_compressor.compressor_system_power() + if motor_rating > 1600: + n_compressors += 1 storage_compressor = Compressor( outlet_pressure, self.system_flow_rate, n_compressors=n_compressors ) storage_compressor.compressor_power() motor_rating, power = storage_compressor.compressor_system_power() - if motor_rating > 1600: - n_compressors += 1 - storage_compressor = Compressor( - outlet_pressure, self.system_flow_rate, n_compressors=n_compressors - ) - storage_compressor.compressor_power() - motor_rating, power = storage_compressor.compressor_system_power() - comp_capex, comp_OM = storage_compressor.compressor_costs() - cepci = 1.36 / 1.29 # convert from $2016 to $2018 - self.comp_capex = comp_capex * cepci - elif self.model == "hdsam": - raise NotImplementedError + comp_capex, comp_OM = storage_compressor.compressor_costs() + cepci = 1.36 / 1.29 # convert from $2016 to $2018 + self.comp_capex = comp_capex * cepci + return ( self.salt_cavern_storage_capex_per_kg, self.installed_capex, diff --git a/h2integrate/storage/hydrogen/h2_storage_cost.py b/h2integrate/storage/hydrogen/h2_storage_cost.py new file mode 100644 index 000000000..20c693cfb --- /dev/null +++ b/h2integrate/storage/hydrogen/h2_storage_cost.py @@ -0,0 +1,205 @@ +from attrs import field, define +from openmdao.utils import units + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains, gte_zero, range_val +from h2integrate.core.model_baseclasses import CostModelBaseClass + + +# TODO: fix import structure in future refactor +from h2integrate.simulation.technologies.hydrogen.h2_storage.lined_rock_cavern.lined_rock_cavern import LinedRockCavernStorage # noqa: E501 # fmt: skip # isort:skip +from h2integrate.simulation.technologies.hydrogen.h2_storage.salt_cavern.salt_cavern import SaltCavernStorage # noqa: E501 # fmt: skip # isort:skip +from h2integrate.simulation.technologies.hydrogen.h2_storage.pipe_storage import UndergroundPipeStorage # noqa: E501 # fmt: skip # isort:skip + + +@define +class HydrogenStorageBaseCostModelConfig(BaseConfig): + """Base config class for HydrogenStorageBaseCostModel + + Attributes: + max_capacity (float): Maximum hydrogen storage capacity (in non-rate units, + e.g., "kg" if `commodity_units` is "kg/h"). + max_charge_rate (float): Maximum rate at which the commodity can be charged (in units + per time step, e.g., "kg/time step"). This is the hydrogenation capacity. + commodity_name (str, optional): Name of the commodity being controlled (e.g., "hydrogen"). + Defaults to "hydrogen" + commodity_units (str, optional): Units of the commodity (e.g., "kg/h"). Defaults to "kg/h" + cost_year (int, optional): Dollar year corresponding to the costs, must be 2018. + labor_rate (float, optional): hourly cost of labor in 2018 USD/hr. Defaults to 37.39817. + insurance_rate (float, optional): insurance cost as a percent (between 0 and 1) of + storage capex. Defaults to 0.01 (or 1.0%). + property_taxes (float, optional): property tax cost as a percent (between 0 and 1) of + storage capex. Defaults to 0.01 (or 1.0%). + licensing_permits (float, optional): licensing and permitting costs as a percent + (between 0 and 1) of storage capex. Defaults to 0.001 (or 0.1%). + compressor_om (float, optional): Compressor fixed operations and maintenance cost as a + percent (between 0 and 1) of compressor capex. Defaults to 0.04 (or 4.0%). + facility_om (float, optional): + """ + + max_capacity: float | None = field(default=None) + max_charge_rate: float | None = field(default=None) + sizing_mode: str = field( + default="set", converter=(str.strip, str.lower), validator=contains(["auto", "set"]) + ) + + commodity_name: str = field(default="hydrogen") + commodity_units: str = field(default="kg/h", validator=contains(["kg/h", "g/h", "t/h"])) + + cost_year: int = field(default=2018, converter=int, validator=contains([2018])) + labor_rate: float = field(default=37.39817, validator=gte_zero) + insurance: float = field(default=0.01, validator=range_val(0, 1)) + property_taxes: float = field(default=0.01, validator=range_val(0, 1)) + licensing_permits: float = field(default=0.001, validator=range_val(0, 1)) + compressor_om: float = field(default=0.04, validator=range_val(0, 1)) + facility_om: float = field(default=0.01, validator=range_val(0, 1)) + + def __attrs_post_init__(self): + undefined_capacities = self.max_capacity is None or self.max_charge_rate is None + if undefined_capacities and self.sizing_mode == "set": + msg = ( + "Missing storage attribute(s): max_capacity and/or max_charge_rate, " + "for the cost_parameters. These attributes are required if `sizing_mode` " + "is 'set'. If storage will be auto-sized by the performance model, set the " + "`sizing_mode` cost parameter to 'auto'." + ) + raise ValueError(msg) + if not undefined_capacities and self.sizing_mode == "auto": + msg = ( + "Extra storage attribute(s) found: max_capacity and/or max_charge_rate, " + "for the cost_parameters. These attributes should not be defined if `sizing_mode` " + "is 'auto'. If storage will be auto-sized by the performance model, set the " + "`sizing_mode` cost parameter to 'auto' and do not include max_capacity or " + "max_charge_rate and a cost parameter. Set `sizing_mode` to 'set' if the storage " + "capacity is fixed." + ) + raise ValueError(msg) + + if undefined_capacities and self.sizing_mode == "auto": + # set to zero for initialization in setup(). + self.max_capacity = 0.0 + self.max_charge_rate = 0.0 + + def make_model_dict(self): + params = self.as_dict() + h2i_params = [ + "max_capacity", + "max_charge_rate", + "commodity_name", + "commodity_units", + "cost_year", + ] + lrc_dict = {k: v for k, v in params.items() if k not in h2i_params} + return lrc_dict + + +class HydrogenStorageBaseCostModel(CostModelBaseClass): + def initialize(self): + super().initialize() + + def setup(self): + self.config = HydrogenStorageBaseCostModelConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), + strict=False, + ) + + super().setup() + + self.add_input( + "max_charge_rate", + val=self.config.max_charge_rate, + units=f"{self.config.commodity_units}", + desc="Hydrogen storage charge rate", + ) + + self.add_input( + "max_capacity", + val=self.config.max_capacity, + units=f"{self.config.commodity_units}*h", + desc="Hydrogen storage capacity", + ) + + def make_storage_input_dict(self, inputs): + storage_input = {} + + storage_input = self.config.make_model_dict() + + # convert capacity to kg + max_capacity_kg = units.convert_units( + inputs["max_capacity"], f"({self.config.commodity_units})*h", "kg" + ) + + # convert charge rate to kg/h + # TODO: update to kg/day as a bug-fix + storage_max_fill_rate = units.convert_units( + inputs["max_charge_rate"], f"{self.config.commodity_units}", "kg/h" + ) + + storage_input["h2_storage_kg"] = max_capacity_kg[0] + + # below should be in kg/day + storage_input["system_flow_rate"] = storage_max_fill_rate[0] + + return storage_input + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + # storage_input = self.make_storage_input_dict(inputs) + + raise NotImplementedError("This method should be implemented in a subclass.") + + +class LinedRockCavernStorageCostModel(HydrogenStorageBaseCostModel): + def initialize(self): + super().initialize() + + def setup(self): + super().setup() + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + storage_input = self.make_storage_input_dict(inputs) + h2_storage = LinedRockCavernStorage(storage_input) + + h2_storage.lined_rock_cavern_capex() + h2_storage.lined_rock_cavern_opex() + + outputs["CapEx"] = h2_storage.output_dict["lined_rock_cavern_storage_capex"] + outputs["OpEx"] = h2_storage.output_dict["lined_rock_cavern_storage_opex"] + + +class SaltCavernStorageCostModel(HydrogenStorageBaseCostModel): + def initialize(self): + super().initialize() + + def setup(self): + super().setup() + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + storage_input = self.make_storage_input_dict(inputs) + h2_storage = SaltCavernStorage(storage_input) + + h2_storage.salt_cavern_capex() + h2_storage.salt_cavern_opex() + + outputs["CapEx"] = h2_storage.output_dict["salt_cavern_storage_capex"] + outputs["OpEx"] = h2_storage.output_dict["salt_cavern_storage_opex"] + + +class PipeStorageCostModel(HydrogenStorageBaseCostModel): + def initialize(self): + super().initialize() + + def setup(self): + super().setup() + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + storage_input = self.make_storage_input_dict(inputs) + + # compressor_output_pressure must be 100 bar or else an error will be thrown + storage_input.update({"compressor_output_pressure": 100}) + h2_storage = UndergroundPipeStorage(storage_input) + + h2_storage.pipe_storage_capex() + h2_storage.pipe_storage_opex() + + outputs["CapEx"] = h2_storage.output_dict["pipe_storage_capex"] + outputs["OpEx"] = h2_storage.output_dict["pipe_storage_opex"] diff --git a/h2integrate/storage/hydrogen/mch_storage.py b/h2integrate/storage/hydrogen/mch_storage.py new file mode 100644 index 000000000..c149f2fba --- /dev/null +++ b/h2integrate/storage/hydrogen/mch_storage.py @@ -0,0 +1,197 @@ +import numpy as np +from attrs import field, define +from openmdao.utils import units + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains +from h2integrate.core.model_baseclasses import CostModelBaseClass + + +@define +class MCHTOLStorageCostModelConfig(BaseConfig): + """Config class for MCHTOLStorageCostModel + + Attributes: + max_capacity (float): Maximum hydrogen storage capacity (in non-rate units, + e.g., "kg" if `commodity_units` is "kg/h"). + max_charge_rate (float): Maximum rate at which the commodity can be charged (in units + per time step, e.g., "kg/time step"). This is the hydrogenation capacity. + charge_equals_discharge (bool, optional): If True, set the max_discharge_rate equal to the + max_charge_rate. If False, specify the max_discharge_rate as a value different than + the max_charge_rate. Defaults to True. This is the dehydrogenation capacity. + max_discharge_rate (float | None, optional): Maximum rate at which the commodity can be + discharged (in units per time step, e.g., "kg/time step"). This rate does not include + the discharge_efficiency. Only required if `charge_equals_discharge` is False. + commodity_name (str, optional): Name of the commodity being controlled (e.g., "hydrogen"). + Defaults to "hydrogen" + commodity_units (str, optional): Units of the commodity (e.g., "kg/h"). Defaults to "kg/h" + cost_year (int, optional): Dollar year corresponding to the costs, must be 2024. + """ + + max_capacity: float = field() + max_charge_rate: float = field() + max_discharge_rate: float = field(default=None) + charge_equals_discharge: bool = field(default=True) + + commodity_name: str = field(default="hydrogen") + commodity_units: str = field(default="kg/h", validator=contains(["kg/h", "g/h", "t/h"])) + + cost_year: int = field(default=2024, converter=int, validator=contains([2024])) + + def __attrs_post_init__(self): + if self.charge_equals_discharge: + if ( + self.max_discharge_rate is not None + and self.max_discharge_rate != self.max_charge_rate + ): + msg = ( + "Max discharge rate does not equal max charge rate but charge_equals_discharge " + f"is True. Discharge rate is {self.max_discharge_rate} and charge rate " + f"is {self.max_charge_rate}." + ) + raise ValueError(msg) + + self.max_discharge_rate = self.max_charge_rate + + +class MCHTOLStorageCostModel(CostModelBaseClass): + """ + Cost model representing a toluene/methylcyclohexane (TOL/MCH) hydrogen storage system. + + Costs are in 2024 USD. + + Sources: + Breunig, H., Rosner, F., Saqline, S. et al. "Achieving gigawatt-scale green hydrogen + production and seasonal storage at industrial locations across the U.S." *Nat Commun* + **15**, 9049 (2024). https://doi.org/10.1038/s41467-024-53189-2 + + """ + + def initialize(self): + super().initialize() + + def setup(self): + self.config = MCHTOLStorageCostModelConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), + strict=False, + ) + + super().setup() + + self.add_input( + "max_charge_rate", + val=self.config.max_charge_rate, + units=f"{self.config.commodity_units}", + desc="Hydrogen storage charge rate", + ) + + if self.config.charge_equals_discharge: + self.add_input( + "max_discharge_rate", + val=self.config.max_charge_rate, + units=f"{self.config.commodity_units}", + desc="Hydrogen storage discharge rate", + ) + else: + self.add_input( + "max_discharge_rate", + val=self.config.max_discharge_rate, + units=f"{self.config.commodity_units}", + desc="Hydrogen storage discharge rate", + ) + + self.add_input( + "max_capacity", + val=self.config.max_capacity, + units=f"{self.config.commodity_units}*h", + desc="Hydrogen storage capacity", + ) + + self.n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + self.add_input( + "hydrogen_soc", + units="unitless", + val=0.0, + shape=self.n_timesteps, + desc="Hydrogen state of charge timeseries for storage", + ) + + def calc_cost_value(self, b0, b1, b2, b3, b4): + """ + Calculate the value of the cost function for the given coefficients. + + Args: + b0 (float): Coefficient representing the base cost. + b1 (float): Coefficient for the Hc (hydrogenation capacity) term. + b2 (float): Coefficient for the Dc (dehydrogenation capacity) term. + b3 (float): Coefficient for the Ms (maximum storage) term. + b4 (float): Coefficient for the As (annual hydrogen into storage) term. + Returns: + float: The calculated cost value based on the provided coefficients and attributes. + + """ + return b0 + (b1 * self.Hc) + (b2 * self.Dc) + (b3 * self.Ms) + b4 * self.As + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + # convert charge rate to kg/d + storage_max_fill_rate_tpd = units.convert_units( + inputs["max_charge_rate"], f"{self.config.commodity_units}", "t/d" + ) + + # convert discharge rate to kg/d + if self.config.charge_equals_discharge: + storage_max_empty_rate_tpd = units.convert_units( + inputs["max_charge_rate"], f"{self.config.commodity_units}", "t/d" + ) + else: + storage_max_empty_rate_tpd = units.convert_units( + inputs["max_discharge_rate"], f"{self.config.commodity_units}", "t/d" + ) + + # convert state of charge profile from fraction to kg + hydrogen_storage_soc_kg = units.convert_units( + inputs["hydrogen_soc"] * inputs["max_capacity"], + f"({self.config.commodity_units})*h", + "kg", + ) + + # calculate the annual amount of hydrogen stored + h2_charge_discharge = np.diff(hydrogen_storage_soc_kg, prepend=False) + h2_charged_idx = np.argwhere(h2_charge_discharge > 0).flatten() + annual_h2_stored_kg = sum([h2_charge_discharge[i] for i in h2_charged_idx]) + + # convert annual hydrogen stored to metric tonnes/day + annual_h2_stored_tpy = units.convert_units( + annual_h2_stored_kg, + "kg/yr", + "t/yr", + ) + + h2_storage_capacity_tons = units.convert_units( + inputs["max_capacity"], f"({self.config.commodity_units})*h", "t" + ) + + # hydrogenation capacity [metric tonnes/day] + self.Hc = storage_max_fill_rate_tpd[0] + + # dehydrogenation capacity [metric tonnes/day] + self.Dc = storage_max_empty_rate_tpd[0] + + # annual hydrogen into storage [metric tonnes] + self.As = annual_h2_stored_tpy # tons/year + + # maximum storage capacity [metric tonnes] + self.Ms = h2_storage_capacity_tons[0] + + # overnight capital cost coefficients + occ_coeff = (54706639.43, 147074.25, 588779.05, 20825.39, 10.31) + + # fixed O&M cost coefficients + foc_coeff = (3419384.73, 3542.79, 13827.02, 61.22, 0.0) + + # variable O&M cost coefficients + voc_coeff = (711326.78, 1698.76, 6844.86, 36.04, 376.31) + + outputs["CapEx"] = self.calc_cost_value(*occ_coeff) + outputs["OpEx"] = self.calc_cost_value(*foc_coeff) + outputs["VarOpEx"] = self.calc_cost_value(*voc_coeff) diff --git a/h2integrate/storage/hydrogen/test/__init__.py b/h2integrate/storage/hydrogen/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/storage/hydrogen/test/conftest.py b/h2integrate/storage/hydrogen/test/conftest.py new file mode 100644 index 000000000..ec036dfa5 --- /dev/null +++ b/h2integrate/storage/hydrogen/test/conftest.py @@ -0,0 +1,20 @@ +""" +Pytest configuration file. +""" + +import os + + +def pytest_sessionstart(session): + initial_om_report_setting = os.getenv("OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["TMP_OPENMDAO_REPORTS"] = initial_om_report_setting + + os.environ["OPENMDAO_REPORTS"] = "none" + + +def pytest_sessionfinish(session, exitstatus): + initial_om_report_setting = os.getenv("TMP_OPENMDAO_REPORTS") + if initial_om_report_setting is not None: + os.environ["OPENMDAO_REPORTS"] = initial_om_report_setting + os.environ.pop("TMP_OPENMDAO_REPORTS", None) diff --git a/h2integrate/storage/hydrogen/test/test_hydrogen_storage.py b/h2integrate/storage/hydrogen/test/test_hydrogen_storage.py new file mode 100644 index 000000000..ffdd91ca1 --- /dev/null +++ b/h2integrate/storage/hydrogen/test/test_hydrogen_storage.py @@ -0,0 +1,169 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.storage.hydrogen.h2_storage_cost import ( + PipeStorageCostModel, + SaltCavernStorageCostModel, + LinedRockCavernStorageCostModel, +) + + +@fixture +def plant_config(): + plant_config_dict = { + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": 8760, # Default number of timesteps for the simulation + }, + }, + } + return plant_config_dict + + +def test_salt_cavern_ex_2(plant_config, subtests): + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 3580383.39133725, + "max_charge_rate": 12549.62622698, + } + } + } + prob = om.Problem() + comp = SaltCavernStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-6) == 65337437.17944019 + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=1e-6) == 2358794.1150327 + with subtests.test("VarOpEx"): + assert pytest.approx(np.sum(prob.get_val("sys.VarOpEx")), rel=1e-6) == 0.0 + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2018 + + +def test_lined_rock_cavern_ex_12_small_case(plant_config, subtests): + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 169320.79994693, + "max_charge_rate": 1568.70894716, + } + } + } + prob = om.Problem() + + comp = LinedRockCavernStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-6) == 18693728.23242369 + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=1e-6) == 767466.36227705 + with subtests.test("VarOpEx"): + assert pytest.approx(np.sum(prob.get_val("sys.VarOpEx")), rel=1e-6) == 0.0 + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2018 + + +def test_lined_rock_cavern_ex_1(plant_config, subtests): + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 2081385.93267781, + "max_charge_rate": 14118.14678877, + } + } + } + prob = om.Problem() + comp = LinedRockCavernStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-6) == 92392496.03198986 + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=1e-6) == 3228373.63748516 + with subtests.test("VarOpEx"): + assert pytest.approx(np.sum(prob.get_val("sys.VarOpEx")), rel=1e-6) == 0.0 + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2018 + + +def test_lined_rock_cavern_ex_14(plant_config, subtests): + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 2987042.0, + "max_charge_rate": 12446.00729773, + } + } + } + prob = om.Problem() + comp = LinedRockCavernStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-6) == 1.28437699 * 1e8 + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=1e-6) == 4330693.49125131 + with subtests.test("VarOpEx"): + assert pytest.approx(np.sum(prob.get_val("sys.VarOpEx")), rel=1e-6) == 0.0 + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2018 + + +def test_buried_pipe_storage(plant_config, subtests): + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 3580383.39133725, + "max_charge_rate": 12549.62622698, + } + } + } + prob = om.Problem() + comp = PipeStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-6) == 1827170156.1390543 + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=1e-6) == 56972128.44322313 + with subtests.test("VarOpEx"): + assert pytest.approx(np.sum(prob.get_val("sys.VarOpEx")), rel=1e-6) == 0.0 + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2018 diff --git a/h2integrate/storage/hydrogen/test/test_tol_mch_storage.py b/h2integrate/storage/hydrogen/test/test_tol_mch_storage.py new file mode 100644 index 000000000..7f703ae93 --- /dev/null +++ b/h2integrate/storage/hydrogen/test/test_tol_mch_storage.py @@ -0,0 +1,262 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import approx, fixture + +from h2integrate.storage.hydrogen.mch_storage import MCHTOLStorageCostModel +from h2integrate.simulation.technologies.hydrogen.h2_storage.mch.mch_cost import MCHStorage + + +@fixture +def tol_mch_storage(): + # Test values are based on Supplementary Table 3 of + # https://doi.org/10.1038/s41467-024-53189-2 + Dc_tpd = 304 + Hc_tpd = 304 + As_tpy = 35000 + Ms_tpy = 16200 + in_dict = { + "max_H2_production_kg_pr_hr": (Hc_tpd + Dc_tpd) * 1e3 / 24, + "hydrogen_storage_capacity_kg": Ms_tpy * 1e3, + "hydrogen_demand_kg_pr_hr": Dc_tpd * 1e3 / 24, + "annual_hydrogen_stored_kg_pr_yr": As_tpy * 1e3, + } + + mch_storage = MCHStorage(**in_dict) + + return mch_storage + + +def test_init(): + # Test values are based on Supplementary Table 3 of + # https://doi.org/10.1038/s41467-024-53189-2 + Dc_tpd = 304 + Hc_tpd = 304 + As_tpy = 35000 + Ms_tpy = 16200 + in_dict = { + "max_H2_production_kg_pr_hr": (Hc_tpd + Dc_tpd) * 1e3 / 24, + "hydrogen_storage_capacity_kg": Ms_tpy * 1e3, + "hydrogen_demand_kg_pr_hr": Dc_tpd * 1e3 / 24, + "annual_hydrogen_stored_kg_pr_yr": As_tpy * 1e3, + } + mch_storage = MCHStorage(**in_dict) + + assert mch_storage.cost_year is not None + assert mch_storage.occ_coeff is not None + + +def test_sizing(tol_mch_storage, subtests): + # Test values are based on Supplementary Table 3 of + # https://doi.org/10.1038/s41467-024-53189-2 + Dc_tpd = 304 + Hc_tpd = 304 + As_tpy = 35000 + Ms_tpy = 16200 + with subtests.test("Dehydrogenation capacity"): + assert tol_mch_storage.Dc == approx(Dc_tpd, rel=1e-6) + with subtests.test("Hydrogenation capacity"): + assert tol_mch_storage.Hc == approx(Hc_tpd, rel=1e-6) + with subtests.test("Annual storage capacity"): + assert tol_mch_storage.As == approx(As_tpy, rel=1e-6) + with subtests.test("Maximum storage capacity"): + assert tol_mch_storage.Ms == approx(Ms_tpy, rel=1e-6) + + +def test_cost_calculation_methods(tol_mch_storage, subtests): + # Supplementary Table 3 + toc_actual = 639375591 + foc_actual = 10239180 + voc_actual = 17332229 + + max_cost_error_rel = 0.06 + capex = tol_mch_storage.calc_cost_value(*tol_mch_storage.occ_coeff) + fixed_om = tol_mch_storage.calc_cost_value(*tol_mch_storage.foc_coeff) + var_om = tol_mch_storage.calc_cost_value(*tol_mch_storage.voc_coeff) + with subtests.test("CapEx"): + assert capex == approx(toc_actual, rel=max_cost_error_rel) + with subtests.test("Fixed O&M"): + assert fixed_om == approx(foc_actual, rel=max_cost_error_rel) + with subtests.test("Variable O&M"): + assert var_om == approx(voc_actual, rel=max_cost_error_rel) + + +def test_run_costs(tol_mch_storage, subtests): + # Supplementary Table 3 + toc_actual = 639375591 + foc_actual = 10239180 + voc_actual = 17332229 + + max_cost_error_rel = 0.06 + cost_res = tol_mch_storage.run_costs() + + with subtests.test("CapEx"): + assert cost_res["mch_capex"] == approx(toc_actual, rel=max_cost_error_rel) + with subtests.test("Fixed O&M"): + assert cost_res["mch_opex"] == approx(foc_actual, rel=max_cost_error_rel) + with subtests.test("Variable O&M"): + assert cost_res["mch_variable_om"] == approx(voc_actual, rel=max_cost_error_rel) + + +def test_run_lcos(tol_mch_storage, subtests): + """ + This test is to highlight the difference between the LCOS when computed + using different methods from the same reference. + Specifically, the estimate_lcos and estimate_lcos_from_costs methods which + use Eq. 7 and Eq. 5 respectively from the source. + + Sources: + Breunig, H., Rosner, F., Saqline, S. et al. "Achieving gigawatt-scale green hydrogen + production and seasonal storage at industrial locations across the U.S." *Nat Commun* + **15**, 9049 (2024). https://doi.org/10.1038/s41467-024-53189-2 + """ + max_cost_error_rel = 0.06 + lcos_est = tol_mch_storage.estimate_lcos() + lcos_est_from_costs = tol_mch_storage.estimate_lcos_from_costs() + + with subtests.test("lcos equation"): + assert lcos_est == approx(2.05, rel=max_cost_error_rel) + with subtests.test("lcos equation from costs"): + assert lcos_est_from_costs == approx(2.05, rel=max_cost_error_rel) + + +@fixture +def plant_config(): + plant_config_dict = { + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": 8760, # Default number of timesteps for the simulation + }, + }, + } + return plant_config_dict + + +def test_mch_wrapper(plant_config, subtests): + Dc_tpd = 304 + Hc_tpd = 304 + As_tpy = 35000 + Ms_tpy = 16200 + + toc_actual = 639375591 + foc_actual = 10239180 + voc_actual = 17332229 + + max_cost_error_rel = 0.06 + + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": Ms_tpy * 1e3, + "max_charge_rate": Hc_tpd * 1e3 / 24, + "max_discharge_rate": Dc_tpd * 1e3 / 24, + "charge_equals_discharge": False, + } + } + } + + target_annual_h2_stored = As_tpy * 1e3 + storage_capacity_kg = Ms_tpy * 1e3 + n_fills = target_annual_h2_stored / storage_capacity_kg + fill_ratio_per_hr = n_fills / (8760 / 2) + fill_per_hr = fill_ratio_per_hr * storage_capacity_kg + soc = np.tile([fill_per_hr / storage_capacity_kg, 0], 4380) + prob = om.Problem() + comp = MCHTOLStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.set_val("sys.hydrogen_soc", soc) + prob.run_model() + + with subtests.test("Dehydrogenation capacity"): + assert comp.Dc == approx(Dc_tpd, rel=1e-6) + with subtests.test("Hydrogenation capacity"): + assert comp.Hc == approx(Hc_tpd, rel=1e-6) + with subtests.test("Annual storage capacity"): + assert comp.As == approx(As_tpy, rel=1e-6) + with subtests.test("Maximum storage capacity"): + assert comp.Ms == approx(Ms_tpy, rel=1e-6) + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=max_cost_error_rel) == toc_actual + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=max_cost_error_rel) == foc_actual + with subtests.test("VarOpEx"): + assert pytest.approx(prob.get_val("sys.VarOpEx"), rel=max_cost_error_rel) == voc_actual + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2024 + + +def test_mch_ex1(subtests): + in_dict = { + "max_H2_production_kg_pr_hr": 14118.146788766157, + "hydrogen_storage_capacity_kg": 2081385.9326778147, + "hydrogen_demand_kg_pr_hr": 10775.824040553021, + "annual_hydrogen_stored_kg_pr_yr": 17878378.49459929, + } + mch_storage = MCHStorage(**in_dict) + cost_res = mch_storage.run_costs() + + with subtests.test("CapEx"): + assert pytest.approx(cost_res["mch_capex"], rel=1e-6) == 2.62304217 * 1e8 + with subtests.test("Fixed O&M"): + assert pytest.approx(cost_res["mch_opex"], rel=1e-6) == 7406935.548022923 + with subtests.test("Variable O&M"): + assert pytest.approx(cost_res["mch_variable_om"], rel=1e-6) == 9420636.00753175 + + +def test_mch_wrapper_ex1(plant_config, subtests): + # Ran Example 1 with MCH storage + # Annual H2 Stored: 17878378.49459929 + + target_annual_h2_stored_kg = 17878378.49459929 + storage_capacity_kg = 2081385.9326778147 + charge_rate_kg_pr_hr = 3342.322748213135 # 14118.146788766157 + discharge_rate_kg_pr_hr = 10775.824040553021 + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": storage_capacity_kg, + "max_charge_rate": charge_rate_kg_pr_hr, + "max_discharge_rate": discharge_rate_kg_pr_hr, + "charge_equals_discharge": False, + } + } + } + + n_fills = target_annual_h2_stored_kg / storage_capacity_kg + fill_ratio_per_hr = n_fills / (8760 / 2) + fill_per_hr = fill_ratio_per_hr * storage_capacity_kg + soc = np.tile([fill_per_hr / storage_capacity_kg, 0], 4380) + prob = om.Problem() + comp = MCHTOLStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.set_val("sys.hydrogen_soc", soc) + prob.run_model() + + with subtests.test("Dehydrogenation capacity"): + assert comp.Dc == approx(discharge_rate_kg_pr_hr * 24 / 1e3, rel=1e-6) + with subtests.test("Hydrogenation capacity"): + assert comp.Hc == approx(charge_rate_kg_pr_hr * 24 / 1e3, rel=1e-6) + with subtests.test("Annual storage capacity"): + assert comp.As == approx(target_annual_h2_stored_kg / 1e3, rel=1e-6) + with subtests.test("Maximum storage capacity"): + assert comp.Ms == approx(storage_capacity_kg / 1e3, rel=1e-6) + + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-6) == 2.62304217 * 1e8 + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=1e-6) == 7406935.548022923 + with subtests.test("VarOpEx"): + assert pytest.approx(prob.get_val("sys.VarOpEx")[0], rel=1e-6) == 9420636.00753175 + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2024 diff --git a/h2integrate/storage/simple_storage_auto_sizing.py b/h2integrate/storage/simple_storage_auto_sizing.py new file mode 100644 index 000000000..675a19e92 --- /dev/null +++ b/h2integrate/storage/simple_storage_auto_sizing.py @@ -0,0 +1,126 @@ +import numpy as np +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs + + +@define +class StorageSizingModelConfig(BaseConfig): + """Configuration class for the StorageAutoSizingModel. + + Attributes: + commodity_name (str, optional): Name of the commodity being controlled (e.g., "hydrogen"). + Defaults to "hydrogen" + commodity_units (str, optional): Units of the commodity (e.g., "kg/h"). Defaults to "kg/h" + demand_profile (scalar or list): The demand values for each time step (in the same units + as `commodity_units`) or a scalar for a constant demand. + """ + + commodity_name: str = field(default="hydrogen") + commodity_units: str = field(default="kg/h") + demand_profile: int | float | list = field(default=0.0) + + +class StorageAutoSizingModel(om.ExplicitComponent): + """Performance model that calculates the storage charge rate and capacity needed + to either: + + 1. supply the comodity at a constant rate based on the commodity production profile or + 2. try to meet the commodity demand with the given commodity production profile. + + Inputs: + {commodity_name}_in (float): Input commodity flow timeseries (e.g., hydrogen production). + - Units: Defined in `commodity_units` (e.g., "kg/h"). + {commodity_name}_demand_profile (float): Demand profile of commodity. + - Units: Defined in `commodity_units` (e.g., "kg/h"). + + Outputs: + max_capacity (float): Maximum storage capacity of the commodity. + - Units: in non-rate units, e.g., "kg" if `commodity_units` is "kg/h" + max_charge_rate (float): Maximum rate at which the commodity can be charged + - Units: Defined in `commodity_units` (e.g., "kg/h"). + """ + + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.config = StorageSizingModelConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=False, + ) + + super().setup() + + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + + commodity_name = self.config.commodity_name + + self.add_input( + f"{commodity_name}_demand_profile", + units=f"{self.config.commodity_units}", + val=self.config.demand_profile, + shape=n_timesteps, + desc=f"{commodity_name} demand profile timeseries", + ) + + self.add_input( + f"{commodity_name}_in", + shape_by_conn=True, + units=f"{self.config.commodity_units}", + desc=f"{commodity_name} input timeseries from production to storage", + ) + + self.add_output( + "max_capacity", + val=0.0, + shape=1, + units=f"({self.config.commodity_units})*h", + ) + + self.add_output( + "max_charge_rate", + val=0.0, + shape=1, + units=f"{self.config.commodity_units}", + ) + + def compute(self, inputs, outputs): + commodity_name = self.config.commodity_name + storage_max_fill_rate = np.max(inputs[f"{commodity_name}_in"]) + + ########### get storage size ########### + if np.sum(inputs[f"{commodity_name}_demand_profile"]) > 0: + commodity_demand = inputs[f"{commodity_name}_demand_profile"] + else: + commodity_demand = np.mean( + inputs[f"{commodity_name}_in"] + ) # TODO: update demand based on end-use needs + + commodity_production = inputs[f"{commodity_name}_in"] + + # TODO: SOC is just an absolute value and is not a percentage. Ideally would calculate as shortfall in future. + commodity_storage_soc = [] + for j in range(len(commodity_production)): + if j == 0: + commodity_storage_soc.append(commodity_production[j] - commodity_demand) + else: + commodity_storage_soc.append( + commodity_storage_soc[j - 1] + commodity_production[j] - commodity_demand + ) + + minimum_soc = np.min(commodity_storage_soc) + + # adjust soc so it's not negative. + if minimum_soc < 0: + commodity_storage_soc = [x + np.abs(minimum_soc) for x in commodity_storage_soc] + + commodity_storage_capacity_kg = np.max(commodity_storage_soc) - np.min( + commodity_storage_soc + ) + + outputs["max_charge_rate"] = storage_max_fill_rate + outputs["max_capacity"] = commodity_storage_capacity_kg diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index b725b9f6e..74e89dc59 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -82,16 +82,10 @@ def test_simple_ammonia_example(subtests): assert pytest.approx(model.prob.get_val("electrolyzer.OpEx"), rel=1e-3) == 14703155.39207595 with subtests.test("Check H2 storage CapEx"): - assert ( - pytest.approx(model.prob.get_val("plant.h2_storage.h2_storage.CapEx"), rel=1e-3) - == 65336874.189441 - ) + assert pytest.approx(model.prob.get_val("h2_storage.CapEx"), rel=1e-3) == 65336874.189441 with subtests.test("Check H2 storage OpEx"): - assert ( - pytest.approx(model.prob.get_val("plant.h2_storage.h2_storage.OpEx"), rel=1e-3) - == 2358776.66234517 - ) + assert pytest.approx(model.prob.get_val("h2_storage.OpEx"), rel=1e-3) == 2358776.66234517 with subtests.test("Check ammonia CapEx"): assert pytest.approx(model.prob.get_val("ammonia.CapEx"), rel=1e-3) == 1.0124126e08 @@ -176,16 +170,10 @@ def test_ammonia_synloop_example(subtests): assert pytest.approx(model.prob.get_val("electrolyzer.OpEx"), rel=1e-6) == 14703155.39207595 with subtests.test("Check H2 storage CapEx"): - assert ( - pytest.approx(model.prob.get_val("plant.h2_storage.h2_storage.CapEx"), rel=1e-6) - == 65337437.18075897 - ) + assert pytest.approx(model.prob.get_val("h2_storage.CapEx"), rel=1e-6) == 65337437.18075897 with subtests.test("Check H2 storage OpEx"): - assert ( - pytest.approx(model.prob.get_val("plant.h2_storage.h2_storage.OpEx"), rel=1e-6) - == 2358794.11507603 - ) + assert pytest.approx(model.prob.get_val("h2_storage.OpEx"), rel=1e-6) == 2358794.11507603 with subtests.test("Check ammonia CapEx"): assert pytest.approx(model.prob.get_val("ammonia.CapEx"), rel=1e-6) == 1.15173753e09 @@ -536,7 +524,7 @@ def test_hydrogen_dispatch_example(subtests): model.prob.get_val("finance_subgroup_dispatched_hydrogen.LCOH", units="USD/kg")[0], rel=1e-5, ) - == 8.371194137479359 + == 7.54632229849164 ) diff --git a/tests/h2integrate/test_controllers/inputs/tech_config.yaml b/tests/h2integrate/test_controllers/inputs/tech_config.yaml index 6e0e50031..6d4864704 100644 --- a/tests/h2integrate/test_controllers/inputs/tech_config.yaml +++ b/tests/h2integrate/test_controllers/inputs/tech_config.yaml @@ -6,17 +6,15 @@ technologies: control_strategy: model: "pass_through_controller" performance_model: - model: "h2_storage" + model: "storage_auto_sizing" cost_model: - model: "h2_storage" + model: "lined_rock_cavern_h2_storage_cost" model_inputs: - performance_parameters: - max_charge_rate: 720. - size_capacity_from_demand: - flag: False # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "lined_rock_cavern" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 10 #how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - control_parameters: + shared_parameters: commodity_name: "hydrogen" commodity_units: "kg/h" + cost_parameters: + # since the storage is being auto-sized by the performance model, + # we set the sizing mode to 'auto' rather than defining the capacities + # in the input file + sizing_mode: "auto" # set as "auto" so storage capacity doesnt have to be defined diff --git a/tests/h2integrate/test_controllers/test_open_loop_controllers.py b/tests/h2integrate/test_controllers/test_open_loop_controllers.py index dba019b5e..6b96c6e23 100644 --- a/tests/h2integrate/test_controllers/test_open_loop_controllers.py +++ b/tests/h2integrate/test_controllers/test_open_loop_controllers.py @@ -86,8 +86,6 @@ def test_demand_controller(subtests): ) tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "commodity_name": "hydrogen", - "commodity_units": "kg", "max_capacity": 10.0, # kg "max_charge_percent": 1.0, # percent as decimal "min_charge_percent": 0.0, # percent as decimal @@ -162,8 +160,6 @@ def test_demand_controller_round_trip_efficiency(subtests): "demand_openloop_controller" ) tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "commodity_name": "hydrogen", - "commodity_units": "kg", "max_capacity": 10.0, # kg "max_charge_percent": 1.0, # percent as decimal "min_charge_percent": 0.0, # percent as decimal @@ -178,8 +174,6 @@ def test_demand_controller_round_trip_efficiency(subtests): tech_config_rte = deepcopy(tech_config) tech_config_rte["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "commodity_name": "hydrogen", - "commodity_units": "kg", "max_capacity": 10.0, # kg "max_charge_percent": 1.0, # percent as decimal "min_charge_percent": 0.0, # percent as decimal diff --git a/tests/h2integrate/test_hydrogen/test_lined_rock_storage.py b/tests/h2integrate/test_hydrogen/test_lined_rock_storage.py index 7ebd24aec..503ce914e 100644 --- a/tests/h2integrate/test_hydrogen/test_lined_rock_storage.py +++ b/tests/h2integrate/test_hydrogen/test_lined_rock_storage.py @@ -7,7 +7,7 @@ # Test values are based on conclusions of Papadias 2021 and are in 2019 USD -in_dict = {"h2_storage_kg": 1000000, "system_flow_rate": 100000, "model": "papadias"} +in_dict = {"h2_storage_kg": 1000000, "system_flow_rate": 100000} @fixture diff --git a/tests/h2integrate/test_hydrogen/test_salt_cavern_storage.py b/tests/h2integrate/test_hydrogen/test_salt_cavern_storage.py index 33ea45d76..821ee33e2 100644 --- a/tests/h2integrate/test_hydrogen/test_salt_cavern_storage.py +++ b/tests/h2integrate/test_hydrogen/test_salt_cavern_storage.py @@ -7,7 +7,7 @@ # Test values are based on conclusions of Papadias 2021 and are in 2019 USD -in_dict = {"h2_storage_kg": 1000000, "system_flow_rate": 100000, "model": "papadias"} +in_dict = {"h2_storage_kg": 1000000, "system_flow_rate": 100000} @fixture diff --git a/tests/h2integrate/test_hydrogen/test_tol_mch_storage.py b/tests/h2integrate/test_hydrogen/test_tol_mch_storage.py deleted file mode 100644 index de38725e5..000000000 --- a/tests/h2integrate/test_hydrogen/test_tol_mch_storage.py +++ /dev/null @@ -1,93 +0,0 @@ -from pytest import approx, fixture - -from h2integrate.simulation.technologies.hydrogen.h2_storage.mch.mch_cost import MCHStorage - - -# Test values are based on Supplementary Table 3 of https://doi.org/10.1038/s41467-024-53189-2 -Dc_tpd = 304 -Hc_tpd = 304 -As_tpy = 35000 -Ms_tpy = 16200 - -# Supplementary Table 3 -toc_actual = 639375591 -foc_actual = 10239180 -voc_actual = 17332229 - -max_cost_error_rel = 0.06 - -in_dict = { - "max_H2_production_kg_pr_hr": (Hc_tpd + Dc_tpd) * 1e3 / 24, - "hydrogen_storage_capacity_kg": Ms_tpy * 1e3, - "hydrogen_demand_kg_pr_hr": Dc_tpd * 1e3 / 24, - "annual_hydrogen_stored_kg_pr_yr": As_tpy * 1e3, -} - - -@fixture -def tol_mch_storage(): - mch_storage = MCHStorage(**in_dict) - - return mch_storage - - -def test_init(): - mch_storage = MCHStorage(**in_dict) - - assert mch_storage.cost_year is not None - assert mch_storage.occ_coeff is not None - - -def test_sizing(tol_mch_storage, subtests): - with subtests.test("Dehydrogenation capacity"): - assert tol_mch_storage.Dc == approx(Dc_tpd, rel=1e-6) - with subtests.test("Hydrogenation capacity"): - assert tol_mch_storage.Hc == approx(Hc_tpd, rel=1e-6) - with subtests.test("Annual storage capacity"): - assert tol_mch_storage.As == approx(As_tpy, rel=1e-6) - with subtests.test("Maximum storage capacity"): - assert tol_mch_storage.Ms == approx(Ms_tpy, rel=1e-6) - - -def test_cost_calculation_methods(tol_mch_storage, subtests): - capex = tol_mch_storage.calc_cost_value(*tol_mch_storage.occ_coeff) - fixed_om = tol_mch_storage.calc_cost_value(*tol_mch_storage.foc_coeff) - var_om = tol_mch_storage.calc_cost_value(*tol_mch_storage.voc_coeff) - with subtests.test("CapEx"): - assert capex == approx(toc_actual, rel=max_cost_error_rel) - with subtests.test("Fixed O&M"): - assert fixed_om == approx(foc_actual, rel=max_cost_error_rel) - with subtests.test("Variable O&M"): - assert var_om == approx(voc_actual, rel=max_cost_error_rel) - - -def test_run_costs(tol_mch_storage, subtests): - cost_res = tol_mch_storage.run_costs() - - with subtests.test("CapEx"): - assert cost_res["mch_capex"] == approx(toc_actual, rel=max_cost_error_rel) - with subtests.test("Fixed O&M"): - assert cost_res["mch_opex"] == approx(foc_actual, rel=max_cost_error_rel) - with subtests.test("Variable O&M"): - assert cost_res["mch_variable_om"] == approx(voc_actual, rel=max_cost_error_rel) - - -def test_run_lcos(tol_mch_storage, subtests): - """ - This test is to highlight the difference between the LCOS when computed - using different methods from the same reference. - Specifically, the estimate_lcos and estimate_lcos_from_costs methods which - use Eq. 7 and Eq. 5 respectively from the source. - - Sources: - Breunig, H., Rosner, F., Saqline, S. et al. "Achieving gigawatt-scale green hydrogen - production and seasonal storage at industrial locations across the U.S." *Nat Commun* - **15**, 9049 (2024). https://doi.org/10.1038/s41467-024-53189-2 - """ - lcos_est = tol_mch_storage.estimate_lcos() - lcos_est_from_costs = tol_mch_storage.estimate_lcos_from_costs() - - with subtests.test("lcos equation"): - assert lcos_est == approx(2.05, rel=max_cost_error_rel) - with subtests.test("lcos equation from costs"): - assert lcos_est_from_costs == approx(2.05, rel=max_cost_error_rel) diff --git a/tests/h2integrate/test_hydrogen/test_underground_pipe_storage.py b/tests/h2integrate/test_hydrogen/test_underground_pipe_storage.py index db84172e6..68ded360f 100644 --- a/tests/h2integrate/test_hydrogen/test_underground_pipe_storage.py +++ b/tests/h2integrate/test_hydrogen/test_underground_pipe_storage.py @@ -11,7 +11,6 @@ in_dict = { "h2_storage_kg": 1000000, "system_flow_rate": 100000, - "model": "papadias", "compressor_output_pressure": 100, } From da6fef89e4cc080702bb96a145c4a375f57c934f Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Mon, 17 Nov 2025 19:11:25 -0700 Subject: [PATCH 57/79] Post-processing: summarize data in .sql file and export to csv (#366) * added methods to summarize data from sql file * added recorder_path as attribute to h2i and added sql summarizing to post_process * updated convert_sql_to_csv_summary to work if run in parallel * added sbutests to example 20 to check csv summarizing * minor fixes --------- Co-authored-by: John Jasa --- h2integrate/core/h2integrate_model.py | 14 ++- h2integrate/core/pose_optimization.py | 2 + h2integrate/postprocess/__init__.py | 0 h2integrate/postprocess/sql_to_csv.py | 141 +++++++++++++++++++++++++ tests/h2integrate/test_all_examples.py | 22 +++- 5 files changed, 174 insertions(+), 5 deletions(-) create mode 100644 h2integrate/postprocess/__init__.py create mode 100644 h2integrate/postprocess/sql_to_csv.py diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index bcc132d93..479b68c41 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -16,6 +16,7 @@ from h2integrate.core.supported_models import supported_models, electricity_producing_techs from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml from h2integrate.core.pose_optimization import PoseOptimization +from h2integrate.postprocess.sql_to_csv import convert_sql_to_csv_summary try: @@ -43,6 +44,9 @@ def __init__(self, config_input): # track if setup has been called via boolean self.setup_has_been_called = False + # initialize recorder_path attribute + self.recorder_path = None + # create site-level model # this is an OpenMDAO group that contains all the site information self.create_site_model() @@ -1125,7 +1129,7 @@ def create_driver_model(self): myopt.set_constraints(self.prob) # Add a recorder if specified in the driver config if "recorder" in self.driver_config: - myopt.set_recorders(self.prob) + self.recorder_path = myopt.set_recorders(self.prob) def setup(self): """ @@ -1143,7 +1147,7 @@ def run(self): self.prob.run_driver() - def post_process(self, show_plots=False): + def post_process(self, summarize_sql=False, show_plots=False): """ Post-process the results of the OpenMDAO model. @@ -1151,6 +1155,9 @@ def post_process(self, show_plots=False): We currently exclude any variables with "resource_data" in the name, since those are large dictionary variables that are not correctly formatted when printing. + If `summarize_sql` is set to True and a recorder file was written, the results + in the recorder file will be summarized and saved as a .csv file. + Also, if `show_plots` is set to True, then any performance models with post-processing plots available will be run and shown. """ @@ -1158,6 +1165,9 @@ def post_process(self, show_plots=False): # suppress internal value printing and display only mean values. print_results(self.prob.model, excludes=["*resource_data"]) + if summarize_sql and self.recorder_path is not None: + convert_sql_to_csv_summary(self.recorder_path, save_to_file=True) + for model in self.performance_models: if hasattr(model, "post_process") and callable(model.post_process): model.post_process(show_plots=show_plots) diff --git a/h2integrate/core/pose_optimization.py b/h2integrate/core/pose_optimization.py index 02b9be545..e2ae0fc5b 100644 --- a/h2integrate/core/pose_optimization.py +++ b/h2integrate/core/pose_optimization.py @@ -549,6 +549,8 @@ def set_recorders(self, opt_prob): opt_prob.driver.recording_options["excludes"] = self.config["recorder"].get( "excludes", ["*resource_data"] ) + return recorder_path + return None def set_restart(self, opt_prob): """ diff --git a/h2integrate/postprocess/__init__.py b/h2integrate/postprocess/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/postprocess/sql_to_csv.py b/h2integrate/postprocess/sql_to_csv.py new file mode 100644 index 000000000..120028b86 --- /dev/null +++ b/h2integrate/postprocess/sql_to_csv.py @@ -0,0 +1,141 @@ +from pathlib import Path + +import numpy as np +import pandas as pd +import openmdao.api as om + + +def summarize_case(case, return_units=False): + """Summarize scalar data from a case. + + Args: + case (om.recorders.case.Case): OpenMDAO case object. + return_units (bool, optional): Whether to return a dictionary of units + corresponding to the variables. Defaults to False. + + Returns: + tuple[dict] or dict: Return dictionary of variable names and the corresponding + values and a dictionary of variable names and the corresponding units + if `return_units` is True. Otherwise, returns dictionary of variable names + and the corresponding values. + """ + + # get list of input and output variable names + design_vars = case.get_design_vars() + output_var_dict = case.list_outputs(val=False, out_stream=None, return_format="dict") + input_var_dict = case.list_inputs(val=False, out_stream=None, return_format="dict") + + # create list of variables to loop through + var_list = [v["prom_name"] for v in output_var_dict.values()] + var_list += [v["prom_name"] for v in input_var_dict.values()] + var_list.sort() + + # have the design variables as the first columns + var_list = list(design_vars.keys()) + var_list + + # initialize output dictionaries + var_to_values = {} # variable to the units + var_to_units = {} # variable to the value + for var in var_list: + if var in var_to_values: + # don't duplicate data + continue + + # get the value + val = case.get_val(var) + + # if discrete variable, don't include units + if isinstance(val, (int, float, str, bool)): + var_to_values.update({var: val}) + continue + + # skip resource data + if isinstance(val, (dict, pd.DataFrame, pd.Series)): + continue + + # save variable om for first year + if "varopex" in var.lower(): + var_to_values.update({var: val[0]}) + var_to_units.update({var: case._get_units(var)}) + + if isinstance(val, np.ndarray): + # dont save information for non-scalar values + if len(val) > 1: + continue + + # save information for scalar values + var_to_values.update({var: val[0]}) + var_to_units.update({var: case._get_units(var)}) + + if return_units: + return var_to_values, var_to_units + + return var_to_values + + +def convert_sql_to_csv_summary(sql_fpath: Path | str, save_to_file: bool = True): + """Summarize scalar data from a sql recorder file (if ran in serial) or set of sql + recorder files (if ran in parallel) to a DataFrame and save to csv file if + `save_to_file` is True. + + The first columns of the output DataFrame are the design variables. + Column names are formatted as: + + - "{promoted variable name} ({units})" for continuous variables + - "{promoted variable name}" for discrete variables. + + Args: + sql_fpath (Path | str): Filepath to sql recorder file. + save_to_file (bool, optional): Whether to save the summary csv file to the same + folder as the sql file(s). Defaults to True. + + Raises: + FileNotFoundError: if sql_fpath does not point to a valid filename. + + Returns: + pd.DataFrame: summary of scalar results from the sql file. + """ + sql_fpath = Path(sql_fpath) + + sql_files = list(Path(sql_fpath.parent).glob(f"{sql_fpath.name}*")) + + # check that file exists + if len(sql_files) == 0: + raise FileNotFoundError(f"{sql_fpath} file does not exist.") + + # initialize results dataframe and counter + results = pd.DataFrame() + ii = 0 + + # loop through the sql files (only multiple if ran in parallel) + for sql_file in sql_files: + if "_meta" in sql_file.suffix: + # don't read meta data file (only created in ran in parallel) + continue + + # load the sql file and extract cases + cr = om.CaseReader(Path(sql_file)) + cases = list(cr.get_cases()) + + # loop through cases + for case in cases: + if ii == 0: + case_results, data_units = summarize_case(case, return_units=True) + else: + case_results = summarize_case(case, return_units=False) + results = pd.concat([results, pd.DataFrame(case_results, index=[ii])], axis=0) + + ii += 1 + + # rename columns to include units + column_rename_mapper = { + col: f"{col} ({data_units[col]})" for col in results.columns.to_list() if col in data_units + } + results = results.rename(columns=column_rename_mapper) + + # save file to csv + if save_to_file: + output_fpath = sql_fpath.parent / f"{sql_fpath.stem}.csv" + results.to_csv(output_fpath) + + return results diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index 74e89dc59..be51e3c29 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -1052,13 +1052,11 @@ def test_simple_dispatch_example(subtests): def test_csvgen_design_of_experiments(subtests): os.chdir(EXAMPLE_DIR / "20_solar_electrolyzer_doe") - # Create a H2Integrate model - with pytest.raises(UserWarning) as excinfo: model = H2IntegrateModel(Path.cwd() / "20_solar_electrolyzer_doe.yaml") assert "There may be issues with the csv file csv_doe_cases.csv" in str(excinfo.value) - # Run the model + import pandas as pd from hopp.utilities.utilities import load_yaml from h2integrate.core.utilities import check_file_format_for_csv_generator @@ -1091,9 +1089,27 @@ def test_csvgen_design_of_experiments(subtests): # save the updated top-level config file to a new file write_yaml(main_config, new_toplevel_fpath) + # Run the model model = H2IntegrateModel(new_toplevel_fpath) model.run() + # summarize sql file + model.post_process(summarize_sql=True) + + with subtests.test("Check that sql file was summarized"): + assert model.recorder_path is not None + summarized_filepath = model.recorder_path.parent / f"{model.recorder_path.stem}.csv" + assert summarized_filepath.is_file() + with subtests.test("Check that sql summary file was written as expected"): + summary = pd.read_csv(summarized_filepath, index_col="Unnamed: 0") + assert len(summary) == 10 + d_var_cols = ["solar.capacity_kWdc (kW)", "electrolyzer.n_clusters (unitless)"] + assert summary.columns.to_list()[0] in d_var_cols + assert summary.columns.to_list()[1] in d_var_cols + assert "finance_subgroup_hydrogen.LCOH_optimistic (USD/kg)" in summary.columns.to_list() + # delete summary file + summarized_filepath.unlink() + sql_fpath = Path.cwd() / "ex_20_out" / "cases.sql" cr = om.CaseReader(str(sql_fpath)) cases = list(cr.get_cases()) From 8600c7c705d58566563d2c343dded3842f6826e9 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Tue, 18 Nov 2025 09:36:42 -0700 Subject: [PATCH 58/79] Added library folder for commonly used inputs (#369) * added library folder for pysam option files * renamed pysam input files * updated filenames in examples --- examples/05_wind_h2_opt/tech_config.yaml | 2 +- .../06_custom_tech/pysam_options_8300MW.yaml | 413 ------------------ examples/06_custom_tech/tech_config.yaml | 2 +- .../pysam_options_8300MW.yaml | 413 ------------------ .../08_wind_electrolyzer/tech_config.yaml | 2 +- .../pysam_options_8300MW.yaml | 413 ------------------ examples/10_electrolyzer_om/tech_config.yaml | 2 +- .../inputs/pysam_options_8300MW.yaml | 413 ------------------ .../inputs/tech_config.yaml | 2 +- .../tech_config.yaml | 2 +- .../pysam_options_8300MW.yaml | 413 ------------------ .../tech_config.yaml | 2 +- .../tech_config_error_for_testing.yaml | 2 +- .../pysam_options_8300MW.yaml | 413 ------------------ examples/19_simple_dispatch/tech_config.yaml | 2 +- h2integrate/__init__.py | 1 + .../pysam_options_6MW.yaml | 0 .../pysam_options_8.3MW.yaml | 0 18 files changed, 10 insertions(+), 2487 deletions(-) delete mode 100644 examples/06_custom_tech/pysam_options_8300MW.yaml delete mode 100644 examples/08_wind_electrolyzer/pysam_options_8300MW.yaml delete mode 100644 examples/10_electrolyzer_om/pysam_options_8300MW.yaml delete mode 100644 examples/14_wind_hydrogen_dispatch/inputs/pysam_options_8300MW.yaml delete mode 100644 examples/18_pyomo_heuristic_dispatch/pysam_options_8300MW.yaml delete mode 100644 examples/19_simple_dispatch/pysam_options_8300MW.yaml rename examples/15_wind_solar_electrolyzer/pysam_options_6000MW.yaml => library/pysam_options_6MW.yaml (100%) rename examples/05_wind_h2_opt/pysam_options_8300MW.yaml => library/pysam_options_8.3MW.yaml (100%) diff --git a/examples/05_wind_h2_opt/tech_config.yaml b/examples/05_wind_h2_opt/tech_config.yaml index 68cb7bfbe..a1226db2e 100644 --- a/examples/05_wind_h2_opt/tech_config.yaml +++ b/examples/05_wind_h2_opt/tech_config.yaml @@ -15,7 +15,7 @@ technologies: hub_height: 130. create_model_from: "default" config_name: "WindPowerSingleOwner" - pysam_options: !include pysam_options_8300MW.yaml + pysam_options: !include "pysam_options_8.3MW.yaml" run_recalculate_power_curve: False layout: layout_mode: "basicgrid" diff --git a/examples/06_custom_tech/pysam_options_8300MW.yaml b/examples/06_custom_tech/pysam_options_8300MW.yaml deleted file mode 100644 index 558b24cfb..000000000 --- a/examples/06_custom_tech/pysam_options_8300MW.yaml +++ /dev/null @@ -1,413 +0,0 @@ -Turbine: - wind_resource_shear: 0.14 - wind_turbine_ct_curve: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.4337 - - 0.4383 - - 0.4637 - - 0.4951 - - 0.5248 - - 0.5486 - - 0.5646 - - 0.5721 - - 0.5721 - - 0.5691 - - 0.5664 - - 0.566 - - 0.5684 - - 0.5715 - - 0.5738 - - 0.5742 - - 0.5726 - - 0.5704 - - 0.569 - - 0.5695 - - 0.5713 - - 0.5711 - - 0.5658 - - 0.5535 - - 0.5342 - - 0.5106 - - 0.4854 - - 0.4603 - - 0.4363 - - 0.413 - - 0.3898 - - 0.3666 - - 0.3432 - - 0.3205 - - 0.299 - - 0.2792 - - 0.2614 - - 0.2452 - - 0.2304 - - 0.2168 - - 0.2041 - - 0.1923 - - 0.1814 - - 0.1714 - - 0.1621 - - 0.1535 - - 0.1455 - - 0.138 - - 0.1311 - - 0.1246 - - 0.1186 - - 0.1129 - - 0.1076 - - 0.1027 - - 0.098 - - 0.0937 - - 0.0896 - - 0.0857 - - 0.082 - - 0.0786 - - 0.0753 - - 0.0723 - - 0.0694 - - 0.0666 - - 0.064 - - 0.0615 - - 0.0592 - - 0.057 - - 0.0548 - - 0.0528 - - 0.0509 - - 0.0491 - - 0.0474 - - 0.0457 - - 0.0441 - - 0.0426 - - 0.0412 - - 0.0398 - - 0.0385 - - 0.0373 - - 0.0361 - - 0.0349 - - 0.0338 - - 0.0328 - - 0.0317 - - 0.0308 - - 0.0298 - - 0.029 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_hub_ht: 130.0 - wind_turbine_max_cp: 0.474457866 - wind_turbine_powercurve_powerout: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 241.0757324 - - 303.7602033 - - 391.3910551 - - 500.8033128 - - 628.8320016 - - 772.3121467 - - 928.0787732 - - 1092.966906 - - 1265.273318 - - 1449.141772 - - 1650.177777 - - 1873.986843 - - 2124.586921 - - 2399.645733 - - 2695.243438 - - 3007.4602 - - 3334.216 - - 3680.790104 - - 4054.301598 - - 4461.869566 - - 4905.067075 - - 5363.283108 - - 5810.360625 - - 6220.142589 - - 6572.96016 - - 6875.097291 - - 7139.326132 - - 7378.418836 - - 7601.367393 - - 7802.043165 - - 7970.537352 - - 8096.941157 - - 8175.407321 - - 8216.334756 - - 8234.183913 - - 8243.415243 - - 8255.567745 - - 8270.494605 - - 8285.127555 - - 8296.398325 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_powercurve_windspeeds: - - 0.0 - - 0.25 - - 0.5 - - 0.75 - - 1.0 - - 1.25 - - 1.5 - - 1.75 - - 2.0 - - 2.25 - - 2.5 - - 2.75 - - 3.0 - - 3.25 - - 3.5 - - 3.75 - - 4.0 - - 4.25 - - 4.5 - - 4.75 - - 5.0 - - 5.25 - - 5.5 - - 5.75 - - 6.0 - - 6.25 - - 6.5 - - 6.75 - - 7.0 - - 7.25 - - 7.5 - - 7.75 - - 8.0 - - 8.25 - - 8.5 - - 8.75 - - 9.0 - - 9.25 - - 9.5 - - 9.75 - - 10.0 - - 10.25 - - 10.5 - - 10.75 - - 11.0 - - 11.25 - - 11.5 - - 11.75 - - 12.0 - - 12.25 - - 12.5 - - 12.75 - - 13.0 - - 13.25 - - 13.5 - - 13.75 - - 14.0 - - 14.25 - - 14.5 - - 14.75 - - 15.0 - - 15.25 - - 15.5 - - 15.75 - - 16.0 - - 16.25 - - 16.5 - - 16.75 - - 17.0 - - 17.25 - - 17.5 - - 17.75 - - 18.0 - - 18.25 - - 18.5 - - 18.75 - - 19.0 - - 19.25 - - 19.5 - - 19.75 - - 20.0 - - 20.25 - - 20.5 - - 20.75 - - 21.0 - - 21.25 - - 21.5 - - 21.75 - - 22.0 - - 22.25 - - 22.5 - - 22.75 - - 23.0 - - 23.25 - - 23.5 - - 23.75 - - 24.0 - - 24.25 - - 24.5 - - 24.75 - - 25.0 - - 26.0 - - 27.0 - - 28.0 - - 29.0 - - 30.0 - - 31.0 - - 32.0 - - 33.0 - - 34.0 - - 35.0 - - 36.0 - - 37.0 - - 38.0 - - 39.0 - - 40.0 - - 41.0 - - 42.0 - - 43.0 - - 44.0 - - 45.0 - - 46.0 - - 47.0 - - 48.0 - - 49.0 -Farm: - wind_farm_wake_model: 0.0 - wind_resource_turbulence_coeff: 0.1 -Losses: - avail_bop_loss: 0.5 - avail_grid_loss: 1.5 - avail_turb_loss: 3.58 - elec_eff_loss: 1.91 - elec_parasitic_loss: 0.1 - env_degrad_loss: 1.8 - env_env_loss: 0.4 - env_exposure_loss: 0.0 - env_icing_loss: 0.21 - ops_env_loss: 1.0 - ops_grid_loss: 0.84 - ops_load_loss: 0.99 - ops_strategies_loss: 0.0 - turb_generic_loss: 1.7 - turb_hysteresis_loss: 0.4 - turb_perf_loss: 1.1 - turb_specific_loss: 9.964851766642457 - wake_ext_loss: 1.1 - wake_future_loss: 0.0 - wake_int_loss: 0.0 -Resource: - weibull_k_factor: 2.0 - weibull_reference_height: 50.0 - weibull_wind_speed: 7.25 - wind_resource_model_choice: 0.0 -Uncertainty: - total_uncert: 12.085 diff --git a/examples/06_custom_tech/tech_config.yaml b/examples/06_custom_tech/tech_config.yaml index 18b0b1f4c..52a8cd06f 100644 --- a/examples/06_custom_tech/tech_config.yaml +++ b/examples/06_custom_tech/tech_config.yaml @@ -15,7 +15,7 @@ technologies: hub_height: 130. create_model_from: "default" config_name: "WindPowerSingleOwner" - pysam_options: !include pysam_options_8300MW.yaml + pysam_options: !include "pysam_options_8.3MW.yaml" run_recalculate_power_curve: False layout: layout_mode: "basicgrid" diff --git a/examples/08_wind_electrolyzer/pysam_options_8300MW.yaml b/examples/08_wind_electrolyzer/pysam_options_8300MW.yaml deleted file mode 100644 index 558b24cfb..000000000 --- a/examples/08_wind_electrolyzer/pysam_options_8300MW.yaml +++ /dev/null @@ -1,413 +0,0 @@ -Turbine: - wind_resource_shear: 0.14 - wind_turbine_ct_curve: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.4337 - - 0.4383 - - 0.4637 - - 0.4951 - - 0.5248 - - 0.5486 - - 0.5646 - - 0.5721 - - 0.5721 - - 0.5691 - - 0.5664 - - 0.566 - - 0.5684 - - 0.5715 - - 0.5738 - - 0.5742 - - 0.5726 - - 0.5704 - - 0.569 - - 0.5695 - - 0.5713 - - 0.5711 - - 0.5658 - - 0.5535 - - 0.5342 - - 0.5106 - - 0.4854 - - 0.4603 - - 0.4363 - - 0.413 - - 0.3898 - - 0.3666 - - 0.3432 - - 0.3205 - - 0.299 - - 0.2792 - - 0.2614 - - 0.2452 - - 0.2304 - - 0.2168 - - 0.2041 - - 0.1923 - - 0.1814 - - 0.1714 - - 0.1621 - - 0.1535 - - 0.1455 - - 0.138 - - 0.1311 - - 0.1246 - - 0.1186 - - 0.1129 - - 0.1076 - - 0.1027 - - 0.098 - - 0.0937 - - 0.0896 - - 0.0857 - - 0.082 - - 0.0786 - - 0.0753 - - 0.0723 - - 0.0694 - - 0.0666 - - 0.064 - - 0.0615 - - 0.0592 - - 0.057 - - 0.0548 - - 0.0528 - - 0.0509 - - 0.0491 - - 0.0474 - - 0.0457 - - 0.0441 - - 0.0426 - - 0.0412 - - 0.0398 - - 0.0385 - - 0.0373 - - 0.0361 - - 0.0349 - - 0.0338 - - 0.0328 - - 0.0317 - - 0.0308 - - 0.0298 - - 0.029 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_hub_ht: 130.0 - wind_turbine_max_cp: 0.474457866 - wind_turbine_powercurve_powerout: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 241.0757324 - - 303.7602033 - - 391.3910551 - - 500.8033128 - - 628.8320016 - - 772.3121467 - - 928.0787732 - - 1092.966906 - - 1265.273318 - - 1449.141772 - - 1650.177777 - - 1873.986843 - - 2124.586921 - - 2399.645733 - - 2695.243438 - - 3007.4602 - - 3334.216 - - 3680.790104 - - 4054.301598 - - 4461.869566 - - 4905.067075 - - 5363.283108 - - 5810.360625 - - 6220.142589 - - 6572.96016 - - 6875.097291 - - 7139.326132 - - 7378.418836 - - 7601.367393 - - 7802.043165 - - 7970.537352 - - 8096.941157 - - 8175.407321 - - 8216.334756 - - 8234.183913 - - 8243.415243 - - 8255.567745 - - 8270.494605 - - 8285.127555 - - 8296.398325 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_powercurve_windspeeds: - - 0.0 - - 0.25 - - 0.5 - - 0.75 - - 1.0 - - 1.25 - - 1.5 - - 1.75 - - 2.0 - - 2.25 - - 2.5 - - 2.75 - - 3.0 - - 3.25 - - 3.5 - - 3.75 - - 4.0 - - 4.25 - - 4.5 - - 4.75 - - 5.0 - - 5.25 - - 5.5 - - 5.75 - - 6.0 - - 6.25 - - 6.5 - - 6.75 - - 7.0 - - 7.25 - - 7.5 - - 7.75 - - 8.0 - - 8.25 - - 8.5 - - 8.75 - - 9.0 - - 9.25 - - 9.5 - - 9.75 - - 10.0 - - 10.25 - - 10.5 - - 10.75 - - 11.0 - - 11.25 - - 11.5 - - 11.75 - - 12.0 - - 12.25 - - 12.5 - - 12.75 - - 13.0 - - 13.25 - - 13.5 - - 13.75 - - 14.0 - - 14.25 - - 14.5 - - 14.75 - - 15.0 - - 15.25 - - 15.5 - - 15.75 - - 16.0 - - 16.25 - - 16.5 - - 16.75 - - 17.0 - - 17.25 - - 17.5 - - 17.75 - - 18.0 - - 18.25 - - 18.5 - - 18.75 - - 19.0 - - 19.25 - - 19.5 - - 19.75 - - 20.0 - - 20.25 - - 20.5 - - 20.75 - - 21.0 - - 21.25 - - 21.5 - - 21.75 - - 22.0 - - 22.25 - - 22.5 - - 22.75 - - 23.0 - - 23.25 - - 23.5 - - 23.75 - - 24.0 - - 24.25 - - 24.5 - - 24.75 - - 25.0 - - 26.0 - - 27.0 - - 28.0 - - 29.0 - - 30.0 - - 31.0 - - 32.0 - - 33.0 - - 34.0 - - 35.0 - - 36.0 - - 37.0 - - 38.0 - - 39.0 - - 40.0 - - 41.0 - - 42.0 - - 43.0 - - 44.0 - - 45.0 - - 46.0 - - 47.0 - - 48.0 - - 49.0 -Farm: - wind_farm_wake_model: 0.0 - wind_resource_turbulence_coeff: 0.1 -Losses: - avail_bop_loss: 0.5 - avail_grid_loss: 1.5 - avail_turb_loss: 3.58 - elec_eff_loss: 1.91 - elec_parasitic_loss: 0.1 - env_degrad_loss: 1.8 - env_env_loss: 0.4 - env_exposure_loss: 0.0 - env_icing_loss: 0.21 - ops_env_loss: 1.0 - ops_grid_loss: 0.84 - ops_load_loss: 0.99 - ops_strategies_loss: 0.0 - turb_generic_loss: 1.7 - turb_hysteresis_loss: 0.4 - turb_perf_loss: 1.1 - turb_specific_loss: 9.964851766642457 - wake_ext_loss: 1.1 - wake_future_loss: 0.0 - wake_int_loss: 0.0 -Resource: - weibull_k_factor: 2.0 - weibull_reference_height: 50.0 - weibull_wind_speed: 7.25 - wind_resource_model_choice: 0.0 -Uncertainty: - total_uncert: 12.085 diff --git a/examples/08_wind_electrolyzer/tech_config.yaml b/examples/08_wind_electrolyzer/tech_config.yaml index cf9eb5149..546554de7 100644 --- a/examples/08_wind_electrolyzer/tech_config.yaml +++ b/examples/08_wind_electrolyzer/tech_config.yaml @@ -15,7 +15,7 @@ technologies: hub_height: 130. create_model_from: "default" config_name: "WindPowerSingleOwner" - pysam_options: !include pysam_options_8300MW.yaml + pysam_options: !include "pysam_options_8.3MW.yaml" run_recalculate_power_curve: False layout: layout_mode: "basicgrid" diff --git a/examples/10_electrolyzer_om/pysam_options_8300MW.yaml b/examples/10_electrolyzer_om/pysam_options_8300MW.yaml deleted file mode 100644 index 558b24cfb..000000000 --- a/examples/10_electrolyzer_om/pysam_options_8300MW.yaml +++ /dev/null @@ -1,413 +0,0 @@ -Turbine: - wind_resource_shear: 0.14 - wind_turbine_ct_curve: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.4337 - - 0.4383 - - 0.4637 - - 0.4951 - - 0.5248 - - 0.5486 - - 0.5646 - - 0.5721 - - 0.5721 - - 0.5691 - - 0.5664 - - 0.566 - - 0.5684 - - 0.5715 - - 0.5738 - - 0.5742 - - 0.5726 - - 0.5704 - - 0.569 - - 0.5695 - - 0.5713 - - 0.5711 - - 0.5658 - - 0.5535 - - 0.5342 - - 0.5106 - - 0.4854 - - 0.4603 - - 0.4363 - - 0.413 - - 0.3898 - - 0.3666 - - 0.3432 - - 0.3205 - - 0.299 - - 0.2792 - - 0.2614 - - 0.2452 - - 0.2304 - - 0.2168 - - 0.2041 - - 0.1923 - - 0.1814 - - 0.1714 - - 0.1621 - - 0.1535 - - 0.1455 - - 0.138 - - 0.1311 - - 0.1246 - - 0.1186 - - 0.1129 - - 0.1076 - - 0.1027 - - 0.098 - - 0.0937 - - 0.0896 - - 0.0857 - - 0.082 - - 0.0786 - - 0.0753 - - 0.0723 - - 0.0694 - - 0.0666 - - 0.064 - - 0.0615 - - 0.0592 - - 0.057 - - 0.0548 - - 0.0528 - - 0.0509 - - 0.0491 - - 0.0474 - - 0.0457 - - 0.0441 - - 0.0426 - - 0.0412 - - 0.0398 - - 0.0385 - - 0.0373 - - 0.0361 - - 0.0349 - - 0.0338 - - 0.0328 - - 0.0317 - - 0.0308 - - 0.0298 - - 0.029 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_hub_ht: 130.0 - wind_turbine_max_cp: 0.474457866 - wind_turbine_powercurve_powerout: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 241.0757324 - - 303.7602033 - - 391.3910551 - - 500.8033128 - - 628.8320016 - - 772.3121467 - - 928.0787732 - - 1092.966906 - - 1265.273318 - - 1449.141772 - - 1650.177777 - - 1873.986843 - - 2124.586921 - - 2399.645733 - - 2695.243438 - - 3007.4602 - - 3334.216 - - 3680.790104 - - 4054.301598 - - 4461.869566 - - 4905.067075 - - 5363.283108 - - 5810.360625 - - 6220.142589 - - 6572.96016 - - 6875.097291 - - 7139.326132 - - 7378.418836 - - 7601.367393 - - 7802.043165 - - 7970.537352 - - 8096.941157 - - 8175.407321 - - 8216.334756 - - 8234.183913 - - 8243.415243 - - 8255.567745 - - 8270.494605 - - 8285.127555 - - 8296.398325 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_powercurve_windspeeds: - - 0.0 - - 0.25 - - 0.5 - - 0.75 - - 1.0 - - 1.25 - - 1.5 - - 1.75 - - 2.0 - - 2.25 - - 2.5 - - 2.75 - - 3.0 - - 3.25 - - 3.5 - - 3.75 - - 4.0 - - 4.25 - - 4.5 - - 4.75 - - 5.0 - - 5.25 - - 5.5 - - 5.75 - - 6.0 - - 6.25 - - 6.5 - - 6.75 - - 7.0 - - 7.25 - - 7.5 - - 7.75 - - 8.0 - - 8.25 - - 8.5 - - 8.75 - - 9.0 - - 9.25 - - 9.5 - - 9.75 - - 10.0 - - 10.25 - - 10.5 - - 10.75 - - 11.0 - - 11.25 - - 11.5 - - 11.75 - - 12.0 - - 12.25 - - 12.5 - - 12.75 - - 13.0 - - 13.25 - - 13.5 - - 13.75 - - 14.0 - - 14.25 - - 14.5 - - 14.75 - - 15.0 - - 15.25 - - 15.5 - - 15.75 - - 16.0 - - 16.25 - - 16.5 - - 16.75 - - 17.0 - - 17.25 - - 17.5 - - 17.75 - - 18.0 - - 18.25 - - 18.5 - - 18.75 - - 19.0 - - 19.25 - - 19.5 - - 19.75 - - 20.0 - - 20.25 - - 20.5 - - 20.75 - - 21.0 - - 21.25 - - 21.5 - - 21.75 - - 22.0 - - 22.25 - - 22.5 - - 22.75 - - 23.0 - - 23.25 - - 23.5 - - 23.75 - - 24.0 - - 24.25 - - 24.5 - - 24.75 - - 25.0 - - 26.0 - - 27.0 - - 28.0 - - 29.0 - - 30.0 - - 31.0 - - 32.0 - - 33.0 - - 34.0 - - 35.0 - - 36.0 - - 37.0 - - 38.0 - - 39.0 - - 40.0 - - 41.0 - - 42.0 - - 43.0 - - 44.0 - - 45.0 - - 46.0 - - 47.0 - - 48.0 - - 49.0 -Farm: - wind_farm_wake_model: 0.0 - wind_resource_turbulence_coeff: 0.1 -Losses: - avail_bop_loss: 0.5 - avail_grid_loss: 1.5 - avail_turb_loss: 3.58 - elec_eff_loss: 1.91 - elec_parasitic_loss: 0.1 - env_degrad_loss: 1.8 - env_env_loss: 0.4 - env_exposure_loss: 0.0 - env_icing_loss: 0.21 - ops_env_loss: 1.0 - ops_grid_loss: 0.84 - ops_load_loss: 0.99 - ops_strategies_loss: 0.0 - turb_generic_loss: 1.7 - turb_hysteresis_loss: 0.4 - turb_perf_loss: 1.1 - turb_specific_loss: 9.964851766642457 - wake_ext_loss: 1.1 - wake_future_loss: 0.0 - wake_int_loss: 0.0 -Resource: - weibull_k_factor: 2.0 - weibull_reference_height: 50.0 - weibull_wind_speed: 7.25 - wind_resource_model_choice: 0.0 -Uncertainty: - total_uncert: 12.085 diff --git a/examples/10_electrolyzer_om/tech_config.yaml b/examples/10_electrolyzer_om/tech_config.yaml index 903d3848f..b699cdfe4 100644 --- a/examples/10_electrolyzer_om/tech_config.yaml +++ b/examples/10_electrolyzer_om/tech_config.yaml @@ -15,7 +15,7 @@ technologies: hub_height: 130. create_model_from: "default" config_name: "WindPowerSingleOwner" - pysam_options: !include pysam_options_8300MW.yaml + pysam_options: !include "pysam_options_8.3MW.yaml" run_recalculate_power_curve: False layout: layout_mode: "basicgrid" diff --git a/examples/14_wind_hydrogen_dispatch/inputs/pysam_options_8300MW.yaml b/examples/14_wind_hydrogen_dispatch/inputs/pysam_options_8300MW.yaml deleted file mode 100644 index 558b24cfb..000000000 --- a/examples/14_wind_hydrogen_dispatch/inputs/pysam_options_8300MW.yaml +++ /dev/null @@ -1,413 +0,0 @@ -Turbine: - wind_resource_shear: 0.14 - wind_turbine_ct_curve: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.4337 - - 0.4383 - - 0.4637 - - 0.4951 - - 0.5248 - - 0.5486 - - 0.5646 - - 0.5721 - - 0.5721 - - 0.5691 - - 0.5664 - - 0.566 - - 0.5684 - - 0.5715 - - 0.5738 - - 0.5742 - - 0.5726 - - 0.5704 - - 0.569 - - 0.5695 - - 0.5713 - - 0.5711 - - 0.5658 - - 0.5535 - - 0.5342 - - 0.5106 - - 0.4854 - - 0.4603 - - 0.4363 - - 0.413 - - 0.3898 - - 0.3666 - - 0.3432 - - 0.3205 - - 0.299 - - 0.2792 - - 0.2614 - - 0.2452 - - 0.2304 - - 0.2168 - - 0.2041 - - 0.1923 - - 0.1814 - - 0.1714 - - 0.1621 - - 0.1535 - - 0.1455 - - 0.138 - - 0.1311 - - 0.1246 - - 0.1186 - - 0.1129 - - 0.1076 - - 0.1027 - - 0.098 - - 0.0937 - - 0.0896 - - 0.0857 - - 0.082 - - 0.0786 - - 0.0753 - - 0.0723 - - 0.0694 - - 0.0666 - - 0.064 - - 0.0615 - - 0.0592 - - 0.057 - - 0.0548 - - 0.0528 - - 0.0509 - - 0.0491 - - 0.0474 - - 0.0457 - - 0.0441 - - 0.0426 - - 0.0412 - - 0.0398 - - 0.0385 - - 0.0373 - - 0.0361 - - 0.0349 - - 0.0338 - - 0.0328 - - 0.0317 - - 0.0308 - - 0.0298 - - 0.029 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_hub_ht: 130.0 - wind_turbine_max_cp: 0.474457866 - wind_turbine_powercurve_powerout: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 241.0757324 - - 303.7602033 - - 391.3910551 - - 500.8033128 - - 628.8320016 - - 772.3121467 - - 928.0787732 - - 1092.966906 - - 1265.273318 - - 1449.141772 - - 1650.177777 - - 1873.986843 - - 2124.586921 - - 2399.645733 - - 2695.243438 - - 3007.4602 - - 3334.216 - - 3680.790104 - - 4054.301598 - - 4461.869566 - - 4905.067075 - - 5363.283108 - - 5810.360625 - - 6220.142589 - - 6572.96016 - - 6875.097291 - - 7139.326132 - - 7378.418836 - - 7601.367393 - - 7802.043165 - - 7970.537352 - - 8096.941157 - - 8175.407321 - - 8216.334756 - - 8234.183913 - - 8243.415243 - - 8255.567745 - - 8270.494605 - - 8285.127555 - - 8296.398325 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_powercurve_windspeeds: - - 0.0 - - 0.25 - - 0.5 - - 0.75 - - 1.0 - - 1.25 - - 1.5 - - 1.75 - - 2.0 - - 2.25 - - 2.5 - - 2.75 - - 3.0 - - 3.25 - - 3.5 - - 3.75 - - 4.0 - - 4.25 - - 4.5 - - 4.75 - - 5.0 - - 5.25 - - 5.5 - - 5.75 - - 6.0 - - 6.25 - - 6.5 - - 6.75 - - 7.0 - - 7.25 - - 7.5 - - 7.75 - - 8.0 - - 8.25 - - 8.5 - - 8.75 - - 9.0 - - 9.25 - - 9.5 - - 9.75 - - 10.0 - - 10.25 - - 10.5 - - 10.75 - - 11.0 - - 11.25 - - 11.5 - - 11.75 - - 12.0 - - 12.25 - - 12.5 - - 12.75 - - 13.0 - - 13.25 - - 13.5 - - 13.75 - - 14.0 - - 14.25 - - 14.5 - - 14.75 - - 15.0 - - 15.25 - - 15.5 - - 15.75 - - 16.0 - - 16.25 - - 16.5 - - 16.75 - - 17.0 - - 17.25 - - 17.5 - - 17.75 - - 18.0 - - 18.25 - - 18.5 - - 18.75 - - 19.0 - - 19.25 - - 19.5 - - 19.75 - - 20.0 - - 20.25 - - 20.5 - - 20.75 - - 21.0 - - 21.25 - - 21.5 - - 21.75 - - 22.0 - - 22.25 - - 22.5 - - 22.75 - - 23.0 - - 23.25 - - 23.5 - - 23.75 - - 24.0 - - 24.25 - - 24.5 - - 24.75 - - 25.0 - - 26.0 - - 27.0 - - 28.0 - - 29.0 - - 30.0 - - 31.0 - - 32.0 - - 33.0 - - 34.0 - - 35.0 - - 36.0 - - 37.0 - - 38.0 - - 39.0 - - 40.0 - - 41.0 - - 42.0 - - 43.0 - - 44.0 - - 45.0 - - 46.0 - - 47.0 - - 48.0 - - 49.0 -Farm: - wind_farm_wake_model: 0.0 - wind_resource_turbulence_coeff: 0.1 -Losses: - avail_bop_loss: 0.5 - avail_grid_loss: 1.5 - avail_turb_loss: 3.58 - elec_eff_loss: 1.91 - elec_parasitic_loss: 0.1 - env_degrad_loss: 1.8 - env_env_loss: 0.4 - env_exposure_loss: 0.0 - env_icing_loss: 0.21 - ops_env_loss: 1.0 - ops_grid_loss: 0.84 - ops_load_loss: 0.99 - ops_strategies_loss: 0.0 - turb_generic_loss: 1.7 - turb_hysteresis_loss: 0.4 - turb_perf_loss: 1.1 - turb_specific_loss: 9.964851766642457 - wake_ext_loss: 1.1 - wake_future_loss: 0.0 - wake_int_loss: 0.0 -Resource: - weibull_k_factor: 2.0 - weibull_reference_height: 50.0 - weibull_wind_speed: 7.25 - wind_resource_model_choice: 0.0 -Uncertainty: - total_uncert: 12.085 diff --git a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml index 4f4423a24..beefd8ba6 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml @@ -15,7 +15,7 @@ technologies: hub_height: 130. create_model_from: "default" config_name: "WindPowerSingleOwner" - pysam_options: !include pysam_options_8300MW.yaml + pysam_options: !include "pysam_options_8.3MW.yaml" run_recalculate_power_curve: False layout: layout_mode: "basicgrid" diff --git a/examples/15_wind_solar_electrolyzer/tech_config.yaml b/examples/15_wind_solar_electrolyzer/tech_config.yaml index d8c22e11a..19ccd1ee2 100644 --- a/examples/15_wind_solar_electrolyzer/tech_config.yaml +++ b/examples/15_wind_solar_electrolyzer/tech_config.yaml @@ -15,7 +15,7 @@ technologies: hub_height: 115. create_model_from: "default" config_name: "WindPowerSingleOwner" - pysam_options: !include pysam_options_6000MW.yaml + pysam_options: !include "pysam_options_6MW.yaml" run_recalculate_power_curve: False layout: layout_mode: "basicgrid" diff --git a/examples/18_pyomo_heuristic_dispatch/pysam_options_8300MW.yaml b/examples/18_pyomo_heuristic_dispatch/pysam_options_8300MW.yaml deleted file mode 100644 index 558b24cfb..000000000 --- a/examples/18_pyomo_heuristic_dispatch/pysam_options_8300MW.yaml +++ /dev/null @@ -1,413 +0,0 @@ -Turbine: - wind_resource_shear: 0.14 - wind_turbine_ct_curve: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.4337 - - 0.4383 - - 0.4637 - - 0.4951 - - 0.5248 - - 0.5486 - - 0.5646 - - 0.5721 - - 0.5721 - - 0.5691 - - 0.5664 - - 0.566 - - 0.5684 - - 0.5715 - - 0.5738 - - 0.5742 - - 0.5726 - - 0.5704 - - 0.569 - - 0.5695 - - 0.5713 - - 0.5711 - - 0.5658 - - 0.5535 - - 0.5342 - - 0.5106 - - 0.4854 - - 0.4603 - - 0.4363 - - 0.413 - - 0.3898 - - 0.3666 - - 0.3432 - - 0.3205 - - 0.299 - - 0.2792 - - 0.2614 - - 0.2452 - - 0.2304 - - 0.2168 - - 0.2041 - - 0.1923 - - 0.1814 - - 0.1714 - - 0.1621 - - 0.1535 - - 0.1455 - - 0.138 - - 0.1311 - - 0.1246 - - 0.1186 - - 0.1129 - - 0.1076 - - 0.1027 - - 0.098 - - 0.0937 - - 0.0896 - - 0.0857 - - 0.082 - - 0.0786 - - 0.0753 - - 0.0723 - - 0.0694 - - 0.0666 - - 0.064 - - 0.0615 - - 0.0592 - - 0.057 - - 0.0548 - - 0.0528 - - 0.0509 - - 0.0491 - - 0.0474 - - 0.0457 - - 0.0441 - - 0.0426 - - 0.0412 - - 0.0398 - - 0.0385 - - 0.0373 - - 0.0361 - - 0.0349 - - 0.0338 - - 0.0328 - - 0.0317 - - 0.0308 - - 0.0298 - - 0.029 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_hub_ht: 130.0 - wind_turbine_max_cp: 0.474457866 - wind_turbine_powercurve_powerout: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 241.0757324 - - 303.7602033 - - 391.3910551 - - 500.8033128 - - 628.8320016 - - 772.3121467 - - 928.0787732 - - 1092.966906 - - 1265.273318 - - 1449.141772 - - 1650.177777 - - 1873.986843 - - 2124.586921 - - 2399.645733 - - 2695.243438 - - 3007.4602 - - 3334.216 - - 3680.790104 - - 4054.301598 - - 4461.869566 - - 4905.067075 - - 5363.283108 - - 5810.360625 - - 6220.142589 - - 6572.96016 - - 6875.097291 - - 7139.326132 - - 7378.418836 - - 7601.367393 - - 7802.043165 - - 7970.537352 - - 8096.941157 - - 8175.407321 - - 8216.334756 - - 8234.183913 - - 8243.415243 - - 8255.567745 - - 8270.494605 - - 8285.127555 - - 8296.398325 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_powercurve_windspeeds: - - 0.0 - - 0.25 - - 0.5 - - 0.75 - - 1.0 - - 1.25 - - 1.5 - - 1.75 - - 2.0 - - 2.25 - - 2.5 - - 2.75 - - 3.0 - - 3.25 - - 3.5 - - 3.75 - - 4.0 - - 4.25 - - 4.5 - - 4.75 - - 5.0 - - 5.25 - - 5.5 - - 5.75 - - 6.0 - - 6.25 - - 6.5 - - 6.75 - - 7.0 - - 7.25 - - 7.5 - - 7.75 - - 8.0 - - 8.25 - - 8.5 - - 8.75 - - 9.0 - - 9.25 - - 9.5 - - 9.75 - - 10.0 - - 10.25 - - 10.5 - - 10.75 - - 11.0 - - 11.25 - - 11.5 - - 11.75 - - 12.0 - - 12.25 - - 12.5 - - 12.75 - - 13.0 - - 13.25 - - 13.5 - - 13.75 - - 14.0 - - 14.25 - - 14.5 - - 14.75 - - 15.0 - - 15.25 - - 15.5 - - 15.75 - - 16.0 - - 16.25 - - 16.5 - - 16.75 - - 17.0 - - 17.25 - - 17.5 - - 17.75 - - 18.0 - - 18.25 - - 18.5 - - 18.75 - - 19.0 - - 19.25 - - 19.5 - - 19.75 - - 20.0 - - 20.25 - - 20.5 - - 20.75 - - 21.0 - - 21.25 - - 21.5 - - 21.75 - - 22.0 - - 22.25 - - 22.5 - - 22.75 - - 23.0 - - 23.25 - - 23.5 - - 23.75 - - 24.0 - - 24.25 - - 24.5 - - 24.75 - - 25.0 - - 26.0 - - 27.0 - - 28.0 - - 29.0 - - 30.0 - - 31.0 - - 32.0 - - 33.0 - - 34.0 - - 35.0 - - 36.0 - - 37.0 - - 38.0 - - 39.0 - - 40.0 - - 41.0 - - 42.0 - - 43.0 - - 44.0 - - 45.0 - - 46.0 - - 47.0 - - 48.0 - - 49.0 -Farm: - wind_farm_wake_model: 0.0 - wind_resource_turbulence_coeff: 0.1 -Losses: - avail_bop_loss: 0.5 - avail_grid_loss: 1.5 - avail_turb_loss: 3.58 - elec_eff_loss: 1.91 - elec_parasitic_loss: 0.1 - env_degrad_loss: 1.8 - env_env_loss: 0.4 - env_exposure_loss: 0.0 - env_icing_loss: 0.21 - ops_env_loss: 1.0 - ops_grid_loss: 0.84 - ops_load_loss: 0.99 - ops_strategies_loss: 0.0 - turb_generic_loss: 1.7 - turb_hysteresis_loss: 0.4 - turb_perf_loss: 1.1 - turb_specific_loss: 9.964851766642457 - wake_ext_loss: 1.1 - wake_future_loss: 0.0 - wake_int_loss: 0.0 -Resource: - weibull_k_factor: 2.0 - weibull_reference_height: 50.0 - weibull_wind_speed: 7.25 - wind_resource_model_choice: 0.0 -Uncertainty: - total_uncert: 12.085 diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml index 2c41d2aff..03faf53b8 100644 --- a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml +++ b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml @@ -20,7 +20,7 @@ technologies: hub_height: 130. create_model_from: "default" config_name: "WindPowerSingleOwner" - pysam_options: !include pysam_options_8300MW.yaml + pysam_options: !include "pysam_options_8.3MW.yaml" run_recalculate_power_curve: False layout: layout_mode: "basicgrid" diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml index 7478bc13d..22d2d88b7 100644 --- a/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml +++ b/examples/18_pyomo_heuristic_dispatch/tech_config_error_for_testing.yaml @@ -20,7 +20,7 @@ technologies: hub_height: 130. create_model_from: "default" config_name: "WindPowerSingleOwner" - pysam_options: !include pysam_options_8300MW.yaml + pysam_options: !include "pysam_options_8.3MW.yaml" run_recalculate_power_curve: False layout: layout_mode: "basicgrid" diff --git a/examples/19_simple_dispatch/pysam_options_8300MW.yaml b/examples/19_simple_dispatch/pysam_options_8300MW.yaml deleted file mode 100644 index 558b24cfb..000000000 --- a/examples/19_simple_dispatch/pysam_options_8300MW.yaml +++ /dev/null @@ -1,413 +0,0 @@ -Turbine: - wind_resource_shear: 0.14 - wind_turbine_ct_curve: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.4337 - - 0.4383 - - 0.4637 - - 0.4951 - - 0.5248 - - 0.5486 - - 0.5646 - - 0.5721 - - 0.5721 - - 0.5691 - - 0.5664 - - 0.566 - - 0.5684 - - 0.5715 - - 0.5738 - - 0.5742 - - 0.5726 - - 0.5704 - - 0.569 - - 0.5695 - - 0.5713 - - 0.5711 - - 0.5658 - - 0.5535 - - 0.5342 - - 0.5106 - - 0.4854 - - 0.4603 - - 0.4363 - - 0.413 - - 0.3898 - - 0.3666 - - 0.3432 - - 0.3205 - - 0.299 - - 0.2792 - - 0.2614 - - 0.2452 - - 0.2304 - - 0.2168 - - 0.2041 - - 0.1923 - - 0.1814 - - 0.1714 - - 0.1621 - - 0.1535 - - 0.1455 - - 0.138 - - 0.1311 - - 0.1246 - - 0.1186 - - 0.1129 - - 0.1076 - - 0.1027 - - 0.098 - - 0.0937 - - 0.0896 - - 0.0857 - - 0.082 - - 0.0786 - - 0.0753 - - 0.0723 - - 0.0694 - - 0.0666 - - 0.064 - - 0.0615 - - 0.0592 - - 0.057 - - 0.0548 - - 0.0528 - - 0.0509 - - 0.0491 - - 0.0474 - - 0.0457 - - 0.0441 - - 0.0426 - - 0.0412 - - 0.0398 - - 0.0385 - - 0.0373 - - 0.0361 - - 0.0349 - - 0.0338 - - 0.0328 - - 0.0317 - - 0.0308 - - 0.0298 - - 0.029 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_hub_ht: 130.0 - wind_turbine_max_cp: 0.474457866 - wind_turbine_powercurve_powerout: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 241.0757324 - - 303.7602033 - - 391.3910551 - - 500.8033128 - - 628.8320016 - - 772.3121467 - - 928.0787732 - - 1092.966906 - - 1265.273318 - - 1449.141772 - - 1650.177777 - - 1873.986843 - - 2124.586921 - - 2399.645733 - - 2695.243438 - - 3007.4602 - - 3334.216 - - 3680.790104 - - 4054.301598 - - 4461.869566 - - 4905.067075 - - 5363.283108 - - 5810.360625 - - 6220.142589 - - 6572.96016 - - 6875.097291 - - 7139.326132 - - 7378.418836 - - 7601.367393 - - 7802.043165 - - 7970.537352 - - 8096.941157 - - 8175.407321 - - 8216.334756 - - 8234.183913 - - 8243.415243 - - 8255.567745 - - 8270.494605 - - 8285.127555 - - 8296.398325 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 8300.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - wind_turbine_powercurve_windspeeds: - - 0.0 - - 0.25 - - 0.5 - - 0.75 - - 1.0 - - 1.25 - - 1.5 - - 1.75 - - 2.0 - - 2.25 - - 2.5 - - 2.75 - - 3.0 - - 3.25 - - 3.5 - - 3.75 - - 4.0 - - 4.25 - - 4.5 - - 4.75 - - 5.0 - - 5.25 - - 5.5 - - 5.75 - - 6.0 - - 6.25 - - 6.5 - - 6.75 - - 7.0 - - 7.25 - - 7.5 - - 7.75 - - 8.0 - - 8.25 - - 8.5 - - 8.75 - - 9.0 - - 9.25 - - 9.5 - - 9.75 - - 10.0 - - 10.25 - - 10.5 - - 10.75 - - 11.0 - - 11.25 - - 11.5 - - 11.75 - - 12.0 - - 12.25 - - 12.5 - - 12.75 - - 13.0 - - 13.25 - - 13.5 - - 13.75 - - 14.0 - - 14.25 - - 14.5 - - 14.75 - - 15.0 - - 15.25 - - 15.5 - - 15.75 - - 16.0 - - 16.25 - - 16.5 - - 16.75 - - 17.0 - - 17.25 - - 17.5 - - 17.75 - - 18.0 - - 18.25 - - 18.5 - - 18.75 - - 19.0 - - 19.25 - - 19.5 - - 19.75 - - 20.0 - - 20.25 - - 20.5 - - 20.75 - - 21.0 - - 21.25 - - 21.5 - - 21.75 - - 22.0 - - 22.25 - - 22.5 - - 22.75 - - 23.0 - - 23.25 - - 23.5 - - 23.75 - - 24.0 - - 24.25 - - 24.5 - - 24.75 - - 25.0 - - 26.0 - - 27.0 - - 28.0 - - 29.0 - - 30.0 - - 31.0 - - 32.0 - - 33.0 - - 34.0 - - 35.0 - - 36.0 - - 37.0 - - 38.0 - - 39.0 - - 40.0 - - 41.0 - - 42.0 - - 43.0 - - 44.0 - - 45.0 - - 46.0 - - 47.0 - - 48.0 - - 49.0 -Farm: - wind_farm_wake_model: 0.0 - wind_resource_turbulence_coeff: 0.1 -Losses: - avail_bop_loss: 0.5 - avail_grid_loss: 1.5 - avail_turb_loss: 3.58 - elec_eff_loss: 1.91 - elec_parasitic_loss: 0.1 - env_degrad_loss: 1.8 - env_env_loss: 0.4 - env_exposure_loss: 0.0 - env_icing_loss: 0.21 - ops_env_loss: 1.0 - ops_grid_loss: 0.84 - ops_load_loss: 0.99 - ops_strategies_loss: 0.0 - turb_generic_loss: 1.7 - turb_hysteresis_loss: 0.4 - turb_perf_loss: 1.1 - turb_specific_loss: 9.964851766642457 - wake_ext_loss: 1.1 - wake_future_loss: 0.0 - wake_int_loss: 0.0 -Resource: - weibull_k_factor: 2.0 - weibull_reference_height: 50.0 - weibull_wind_speed: 7.25 - wind_resource_model_choice: 0.0 -Uncertainty: - total_uncert: 12.085 diff --git a/examples/19_simple_dispatch/tech_config.yaml b/examples/19_simple_dispatch/tech_config.yaml index 18e40eef4..0abee550f 100644 --- a/examples/19_simple_dispatch/tech_config.yaml +++ b/examples/19_simple_dispatch/tech_config.yaml @@ -15,7 +15,7 @@ technologies: hub_height: 130. create_model_from: "default" config_name: "WindPowerSingleOwner" - pysam_options: !include pysam_options_8300MW.yaml + pysam_options: !include "pysam_options_8.3MW.yaml" run_recalculate_power_curve: False layout: layout_mode: "basicgrid" diff --git a/h2integrate/__init__.py b/h2integrate/__init__.py index 3c2f9674d..3cb234e05 100644 --- a/h2integrate/__init__.py +++ b/h2integrate/__init__.py @@ -5,3 +5,4 @@ ROOT_DIR = Path(__file__).resolve().parent EXAMPLE_DIR = ROOT_DIR.parent / "examples" RESOURCE_DEFAULT_DIR = ROOT_DIR.parent / "resource_files" +H2I_LIBRARY_DIR = ROOT_DIR.parent / "library" diff --git a/examples/15_wind_solar_electrolyzer/pysam_options_6000MW.yaml b/library/pysam_options_6MW.yaml similarity index 100% rename from examples/15_wind_solar_electrolyzer/pysam_options_6000MW.yaml rename to library/pysam_options_6MW.yaml diff --git a/examples/05_wind_h2_opt/pysam_options_8300MW.yaml b/library/pysam_options_8.3MW.yaml similarity index 100% rename from examples/05_wind_h2_opt/pysam_options_8300MW.yaml rename to library/pysam_options_8.3MW.yaml From 3fadefc89aa010c53d34035828d27c6b30a51433 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Thu, 20 Nov 2025 12:31:43 -0600 Subject: [PATCH 59/79] Update GeoH2 Subsurface Modeling (#367) * update performance and cost models * small mods * modify outputs to fit h2i framework * integrated finance * remove old test value * add cost tests * change from well_lifetime to plant_life * use cepci and cpi in mathur model * documentation --------- Co-authored-by: John Jasa --- CHANGELOG.md | 1 + docs/_toc.yml | 1 + docs/technology_models/technology_overview.md | 14 +- examples/04_geo_h2/plant_config.yaml | 30 +- examples/04_geo_h2/tech_config_natural.yaml | 23 +- .../04_geo_h2/tech_config_stimulated.yaml | 24 +- .../hydrogen/geologic/geoh2_baseclass.py | 302 ------------------ .../geologic/h2_well_subsurface_baseclass.py | 198 ++++++++++++ .../hydrogen/geologic/mathur_modified.py | 232 ++++++++++++++ .../hydrogen/geologic/natural_geoh2_plant.py | 210 ------------ .../hydrogen/geologic/simple_natural_geoh2.py | 119 +++++++ .../geologic/stimulated_geoh2_plant.py | 253 --------------- .../geologic/templeton_serpentinization.py | 134 ++++++++ .../test/test_geologic_h2_subsurface.py | 70 ++++ h2integrate/core/h2integrate_model.py | 7 + h2integrate/core/supported_models.py | 18 +- h2integrate/tools/inflation/inflate.py | 4 + .../test_hydrogen/test_geologic_h2.py | 29 -- 18 files changed, 822 insertions(+), 847 deletions(-) delete mode 100644 h2integrate/converters/hydrogen/geologic/geoh2_baseclass.py create mode 100644 h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py create mode 100644 h2integrate/converters/hydrogen/geologic/mathur_modified.py delete mode 100644 h2integrate/converters/hydrogen/geologic/natural_geoh2_plant.py create mode 100644 h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py delete mode 100644 h2integrate/converters/hydrogen/geologic/stimulated_geoh2_plant.py create mode 100644 h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py create mode 100644 h2integrate/converters/hydrogen/geologic/test/test_geologic_h2_subsurface.py delete mode 100644 tests/h2integrate/test_hydrogen/test_geologic_h2.py diff --git a/CHANGELOG.md b/CHANGELOG.md index e74246ffe..5136ca62f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ - Improved the readability of the postprocessing printout - Split out cost models from coupled hydrogen storage performance and cost model - Added storage auto-sizing performance model based on storage sizing calculations that existed in the coupled hydrogen storage performance and cost model +- Move geologic hydrogen models into specific geoh2 subsurface converters ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index f6dd7f9f6..7269c9e66 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -37,6 +37,7 @@ parts: - file: technology_models/methanol.md - file: technology_models/ammonia.md - file: technology_models/pysam_battery.md + - file: technology_models/geologic_hydrogen.md - caption: Resource Models chapters: diff --git a/docs/technology_models/technology_overview.md b/docs/technology_models/technology_overview.md index 4ff143fab..da4e5fb5e 100644 --- a/docs/technology_models/technology_overview.md +++ b/docs/technology_models/technology_overview.md @@ -35,7 +35,7 @@ The inputs, outputs, and corresponding technology that are currently available i | `river` | electricity | river resource | | `hopp` | electricity | N/A | | `electrolyzer` | hydrogen | electricity | -| `geoh2` | hydrogen | ??? | +| `geoh2` | hydrogen | rock type | | `steel` | steel | hydrogen | | `ammonia` | ammonia | nitrogen, hydrogen | | `doc` | co2 | electricity | @@ -130,16 +130,12 @@ Below summarizes the available performance, cost, and financial models for each + `'pem_electrolyzer_cost'` + `'singlitico_electrolyzer_cost'` + `'basic_electrolyzer_cost'` -- `geoh2`: geologic hydrogen +- `geoh2_well_subsurface`: geologic hydrogen well subsurface - performance models: - + `'natural_geoh2_performance'` - + `'stimulated_geoh2_performance'` + + `'simple_natural_geoh2_performance'` + + `'templeton_serpentinization_geoh2_performance'` - cost models: - + `'natural_geoh2_cost'` - + `'stimulated_geoh2_cost'` - - finance models: - + `'natural_geoh2'` - + `'stimulated_geoh2'` + + `'mathur_modified_geoh2_cost'` - `steel`: steel production - performance models: + `'steel_performance'` diff --git a/examples/04_geo_h2/plant_config.yaml b/examples/04_geo_h2/plant_config.yaml index 4ab51d89c..c9217a293 100644 --- a/examples/04_geo_h2/plant_config.yaml +++ b/examples/04_geo_h2/plant_config.yaml @@ -6,4 +6,32 @@ site: longitude: -98.27 plant: - plant_life: 30 + plant_life: 20 + +finance_parameters: + finance_groups: + commodity: "hydrogen" + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + target_dollar_year: 2024 diff --git a/examples/04_geo_h2/tech_config_natural.yaml b/examples/04_geo_h2/tech_config_natural.yaml index 074974f4b..b5ad65071 100644 --- a/examples/04_geo_h2/tech_config_natural.yaml +++ b/examples/04_geo_h2/tech_config_natural.yaml @@ -1,20 +1,17 @@ -name: "technology_config" -description: "This hybrid plant produces geologic hydrogen" +name: technology_config +description: This hybrid plant produces geologic hydrogen technologies: - geoh2: + geoh2_well_subsurface: performance_model: - model: "natural_geoh2_performance" + model: simple_natural_geoh2_performance cost_model: - model: "natural_geoh2_cost" - finance_model: - model: "natural_geoh2" + model: mathur_modified_geoh2_cost model_inputs: shared_parameters: - well_lifetime: 20 borehole_depth: 2000 - well_diameter: "small" - well_geometry: "vertical" + well_diameter: small + well_geometry: vertical performance_parameters: rock_type: 'peridotite' grain_size: 0.01 @@ -22,8 +19,7 @@ technologies: initial_wellhead_flow: 200 gas_reservoir_size: 35000 cost_parameters: - cost_year: 2022 - target_dollar_year: 2024 + use_cost_curve: True test_drill_cost: 500000 permit_fees: 905 acreage: 500 @@ -35,6 +31,3 @@ technologies: contingency_pct: 50 preprod_time: 6 as_spent_ratio: 1.1 - finance_parameters: - eff_tax_rate: 25.74 - atwacc: 4.73 diff --git a/examples/04_geo_h2/tech_config_stimulated.yaml b/examples/04_geo_h2/tech_config_stimulated.yaml index 5e7dba347..c2d2a169f 100644 --- a/examples/04_geo_h2/tech_config_stimulated.yaml +++ b/examples/04_geo_h2/tech_config_stimulated.yaml @@ -1,22 +1,19 @@ -name: "technology_config" -description: "This hybrid plant produces geologic hydrogen" +name: technology_config +description: This hybrid plant produces geologic hydrogen technologies: - geoh2: + geoh2_well_subsurface: performance_model: - model: "stimulated_geoh2_performance" + model: templeton_serpentinization_geoh2_performance cost_model: - model: "stimulated_geoh2_cost" - finance_model: - model: "stimulated_geoh2" + model: mathur_modified_geoh2_cost model_inputs: shared_parameters: - well_lifetime: 20 borehole_depth: 4000 - well_diameter: "small" - well_geometry: "horizontal" + well_diameter: small + well_geometry: horizontal performance_parameters: - rock_type: 'peridotite' + rock_type: peridotite grain_size: 0.001 olivine_phase_vol: 50 olivine_fe_ii_conc: 15 @@ -26,8 +23,6 @@ technologies: bulk_density: 2700 water_temp: 90 cost_parameters: - cost_year: 2022 - target_dollar_year: 2024 test_drill_cost: 500000 use_cost_curve: True permit_fees: 905 @@ -40,6 +35,3 @@ technologies: contingency_pct: 50 preprod_time: 6 as_spent_ratio: 1.10 - finance_parameters: - eff_tax_rate: 25.74 - atwacc: 4.73 diff --git a/h2integrate/converters/hydrogen/geologic/geoh2_baseclass.py b/h2integrate/converters/hydrogen/geologic/geoh2_baseclass.py deleted file mode 100644 index 6cbb4510f..000000000 --- a/h2integrate/converters/hydrogen/geologic/geoh2_baseclass.py +++ /dev/null @@ -1,302 +0,0 @@ -import openmdao.api as om -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig -from h2integrate.core.validators import contains -from h2integrate.core.model_baseclasses import CostModelBaseClass -from h2integrate.tools.inflation.inflate import inflate_cepci - - -@define -class GeoH2PerformanceConfig(BaseConfig): - """ - Performance parameters shared across both natural and geologic hydrogen sub-models. - - Values are set in the tech_config.yaml: - technologies/geoh2/model_inputs/shared_parameters for parameters marked with *asterisks* - technologies/geoh2/model_inputs/performance_parameters all other parameters - - Parameters: - -*well_lifetime*: float [years] - The length of time in years that the well will operate - -*borehole_depth*: float [m] - Total depth of borehole (potentially including turns) - -*well_diameter*: str - The relative diameter of the well - see excel sheets for examples - valid options: "small" (OSD3500_FY25.xlsx), "large" - -*well_geometry*: str - The shape and structure of the well being drilled - valid options: "vertical", "horizontal" - -rock_type: str - The type of rock formation being drilled into to extract geoH2 - valid options: "peridotite", "bei_troctolite" - -grain_size: float [m] - The grain size of the rocks used to extract hydrogen - """ - - well_lifetime: float = field() - borehole_depth: float = field() - well_diameter: str = field(validator=contains(["small", "large"])) - well_geometry: str = field(validator=contains(["vertical", "horizontal"])) - rock_type: str = field(validator=contains(["peridotite", "bei_troctolite"])) - grain_size: float = field() - - -class GeoH2PerformanceBaseClass(om.ExplicitComponent): - """ - An OpenMDAO component for modeling the performance of a geologic hydrogen plant. - - Can be either natural or stimulated. - All inputs come from GeoH2PerformanceConfig. - - Inputs: - well_lifetime: float [years] - The length of time in years that the well will operate - grain_size: float [m] - The grain size of the rocks used to extract hydrogen - Outputs: - hydrogen_out: array [kg/h] - The hydrogen production profile over 1 year (8760 hours) - """ - - def initialize(self): - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - self.options.declare("driver_config", types=dict) - - def setup(self): - self.add_input("well_lifetime", units="year", val=self.config.well_lifetime) - self.add_input("borehole_depth", units="m", val=self.config.borehole_depth) - self.add_input("grain_size", units="m", val=self.config.grain_size) - self.add_output("hydrogen_out", units="kg/h", shape=(8760,)) - - -@define -class GeoH2CostConfig(BaseConfig): - """ - Cost parameters shared across both natural and geologic hydrogen sub-models - Values are set in the tech_config.yaml: - technologies/geoh2/model_inputs/shared_parameters for parameters marked with *asterisks* - technologies/geoh2/model_inputs/cost_parameters all other parameters - - Parameters: - -*well_lifetime*: float [years] - the length of time that the wells will operate - -*borehole_depth*: float [m] - Total depth of borehole (potentially including turns) - -*well_diameter*: str - The relative diameter of the well - see excel sheets for examples - valid options: "small" (OSD3500_FY25.xlsx), "large" - -*well_geometry*: str - The shape and structure of the well being drilled - valid options: "vertical", "horizontal" - -cost_year: int [year] - The dollar year in which costs are modeled - -target_dollar_year:int [year] - The dollar year in which costs are modeled - -test_drill_cost: float [USD] - The CAPEX cost of a test drill for a potential geoH2 well - -permit_fees: float [USD] - The CAPEX cost required to obtain permits for drilling - -acreage: float [acre] - The amount of land needed for the drilling operation - -rights_cost: float [USD/acre] - The CAPEX cost to obtain drilling rights - -success_chance: float [pct] - The chance of success at any particular test drill site - -fixed_opex: float [USD/year] - The OPEX cost that does not scale with H2 production - -variable_opex: float [USD/kg] - The OPEX cost component that scales with H2 production - -contracting_pct: float [pct] - contracting costs as % of bare capital cost - -contingency_pct: float [pct] - contingency costs as % of bare capital cost - -preprod_time: float [months] - time in preproduction (Fixed OPEX is charged) - -as_spent_ratio: float [None] - ratio of as-spent costs to overnight costs - """ - - well_lifetime: float = field() - borehole_depth: float = field() - well_diameter: str = field(validator=contains(["small", "large"])) - well_geometry: str = field(validator=contains(["vertical", "horizontal"])) - cost_year: int = field() - target_dollar_year: int = field() - test_drill_cost: float = field() - permit_fees: float = field() - acreage: float = field() - rights_cost: float = field() - success_chance: float = field() - fixed_opex: float = field() - variable_opex: float = field() - contracting_pct: float = field() - contingency_pct: float = field() - preprod_time: float = field() - as_spent_ratio: float = field() - - -class GeoH2CostBaseClass(CostModelBaseClass): - """ - An OpenMDAO component for modeling the cost of a geologic hydrogen plant. - - Can be either natural or stimulated. - All inputs come from GeoH2CostConfig, except for inputs in *asterisks* which come from - GeoH2PerformanceBaseClass outputs. - - Inputs: - well_lifetime: float [years] - the length of time that the wells will operate - cost_year: int [year] - The dollar year in which input costs are measured - target_dollar_year:int [year] - The dollar year in which costs are modeled - test_drill_cost: float [USD] - The CAPEX cost of a test drill for a potential geoH2 well - permit_fees: float [USD] - The CAPEX cost required to obtain permits for drilling - acreage: float [acre] - The amount of land needed for the drilling operation - rights_cost: float [USD/acre] - The CAPEX cost to obtain drilling rights - completion_cost: float [USD] - The CAPEX cost per well required to complete a successful - test drill site into a full-bore production well - success_chance: float [pct] - The chance of success at any particular test drill site - fixed_opex: float [USD/year] - The OPEX cost that does not scale with H2 production - variable_opex: float [USD/kg] - The OPEX cost that scales with H2 production - contracting_pct: float [pct] - contracting costs as % of bare capital cost - contingency_pct: float [pct] - contingency costs as % of bare capital cost - preprod_time: float [months] - time in preproduction (Fixed OPEX is charged) - as_spent_ratio: float [None] - ratio of as-spent costs to overnight costs - *hydrogen_out*: array [kg/h] - The hydrogen production profile over 1 year (8760 hours) - Outputs: - bare_capital_cost float [USD] - The raw CAPEX cost without any multipliers applied - CapEx float [USD] - The effective CAPEX cost with multipliers applied - OpEx float [USD/year] - The total OPEX cost - Fixed_OpEx float [USD/year] - The OPEX cost that does not scale with H2 production - Variable_OpEx float [USD/kg] - The OPEX cost that scales with H2 production - """ - - def setup(self): - super().setup() - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - - self.add_input("well_lifetime", units="year", val=self.config.well_lifetime) - self.add_input("target_dollar_year", units="year", val=self.config.target_dollar_year) - self.add_input("borehole_depth", units="m", val=self.config.borehole_depth) - self.add_input("test_drill_cost", units="USD", val=self.config.test_drill_cost) - self.add_input("permit_fees", units="USD", val=self.config.permit_fees) - self.add_input("acreage", units="acre", val=self.config.acreage) - self.add_input("rights_cost", units="USD/acre", val=self.config.rights_cost) - self.add_input("success_chance", units="percent", val=self.config.success_chance) - self.add_input("fixed_opex", units="USD/year", val=self.config.fixed_opex) - self.add_input("variable_opex", units="USD/kg", val=self.config.variable_opex) - self.add_input("contracting_pct", units="percent", val=self.config.contracting_pct) - self.add_input("contingency_pct", units="percent", val=self.config.contingency_pct) - self.add_input("preprod_time", units="month", val=self.config.preprod_time) - self.add_input("as_spent_ratio", units=None, val=self.config.as_spent_ratio) - self.add_input( - "hydrogen_out", - shape=n_timesteps, - units="kg/h", - desc=f"Hydrogen production rate in kg/h over {n_timesteps} hours.", - ) - - self.add_output("bare_capital_cost", units="USD") - self.add_output("Fixed_OpEx", units="USD/year") - self.add_output("Variable_OpEx", units="USD/kg") - - def calc_drill_cost(self, x): - # Calculates drilling costs from pre-fit polynomial curves - diameter = self.config.well_diameter - geometry = self.config.well_geometry - if geometry == "vertical": - if diameter == "small": - coeffs = [0.224997743, 389.2448848, 745141.2795] - elif diameter == "large": - coeffs = [0.224897254, 869.2069059, 703617.3915] - elif geometry == "horizontal": - if diameter == "small": - coeffs = [0.247604262, 323.277597, 1058263.661] - elif diameter == "large": - coeffs = [0.230514884, 941.8801375, 949091.7254] - a = coeffs[0] - b = coeffs[1] - c = coeffs[2] - drill_cost = a * x**2 + b * x + c - - year = self.config.cost_year - drill_cost = inflate_cepci(drill_cost, 2010, year) - - return drill_cost - - -@define -class GeoH2FinanceConfig(BaseConfig): - """ - Finance parameters shared across both natural and geologic hydrogen sub-models - Values are set in the tech_config.yaml: - technologies/geoh2/model_inputs/shared_parameters for parameters marked with *asterisks* - technologies/geoh2/model_inputs/finance_parameters all other parameters - - Parameters: - -*well_lifetime*: float [years] - the length of time that the wells will operate - -*borehole_depth*: float [m] - Total depth of borehole (potentially including turns) - -*well_diameter*: str - The relative diameter of the well - see excel sheets for examples - valid options: "small" (OSD3500_FY25.xlsx), "large" - -*well_geometry*: str - The shape and structure of the well being drilled - valid options: "vertical", "horizontal" - -eff_tax_rate: float [percent] - effective tax rate - -atwacc: float [percent] - after-tax weighted average cost of capital - """ - - well_lifetime: float = field() - borehole_depth: float = field() - well_diameter: str = field(validator=contains(["small", "large"])) - well_geometry: str = field(validator=contains(["vertical", "horizontal"])) - eff_tax_rate: float = field() - atwacc: float = field() - - -class GeoH2FinanceBaseClass(om.ExplicitComponent): - """ - An OpenMDAO component for modeling the financials of a geologic hydrogen plant. - - Can be either natural or stimulated. - All inputs come from GeoH2FinanceConfig, except for inputs in *asterisks* which come from - GeoH2PerformanceBaseClass or GeoH2CostBaseClass outputs. - - Inputs: - well_lifetime: float [years] - the length of time that the wells will operate - eff_tax_rate: float [percent] - effective tax rate - atwacc: float [percent] - after-tax weighted average cost of capital - *CapEx* float [USD] - The effective CAPEX cost with multipliers applied - *OpEx* float [USD/year] - The total OPEX cost - *Fixed_OpEx* float [USD/year] - The OPEX cost that does not scale with H2 production - *Variable_OpEx* float [USD/kg] - The OPEX cost that scales with H2 production - *hydrogen*: array [kg/h] - The hydrogen production profile over 1 year (8760 hours) - Outputs: - LCOH: float [USD/kg] - the levelized cost of hydrogen (LCOH), per kg H2 - LCOH_capex: float [USD/kg] - the LCOH component attributable to CAPEX - LCOH_fopex: float [USD/kg] - the LCOH component attributable to fixed OPEX - LCOH_vopex: float [USD/kg] - the LCOH component attributable to variable OPEX - """ - - def initialize(self): - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - self.options.declare("driver_config", types=dict) - - def setup(self): - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - - self.add_input("well_lifetime", units="year", val=self.config.well_lifetime) - self.add_input("eff_tax_rate", units="year", val=self.config.eff_tax_rate) - self.add_input("atwacc", units="year", val=self.config.atwacc) - self.add_input("CapEx", units="USD", val=1.0, desc="Total capital expenditure in USD.") - self.add_input( - "OpEx", units="USD/year", val=1.0, desc="Total operational expenditure in USD/year." - ) - self.add_input( - "Fixed_OpEx", - units="USD/year", - val=1.0, - desc="Fixed operational expenditure in USD/year.", - ) - self.add_input( - "Variable_OpEx", - units="USD/kg", - val=1.0, - desc="Variable operational expenditure in USD/kg.", - ) - self.add_input( - "hydrogen_out", - shape=n_timesteps, - units="kg/h", - desc="Hydrogen production rate in kg/h.", - ) - - self.add_output("LCOH", units="USD/kg", desc="Levelized cost of hydrogen in USD/kg.") - self.add_output( - "LCOH_capex", - units="USD/kg", - desc="Levelized cost of hydrogen attributed to CapEx in USD/kg.", - ) - self.add_output( - "LCOH_fopex", - units="USD/kg", - desc="Levelized cost of hydrogen attributed to fixed OpEx in USD/kg.", - ) - self.add_output( - "LCOH_vopex", - units="USD/kg", - desc="Levelized cost of hydrogen attributed to variable OpEx in USD/kg.", - ) diff --git a/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py b/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py new file mode 100644 index 000000000..973e73b91 --- /dev/null +++ b/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py @@ -0,0 +1,198 @@ +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, CostModelBaseConfig +from h2integrate.core.validators import contains +from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.tools.inflation.inflate import inflate_cepci + + +@define +class GeoH2SubsurfacePerformanceConfig(BaseConfig): + """Configuration for performance parameters in natural and geologic hydrogen subsurface + well sub-models. + + This class defines key performance parameters shared across both natural and + stimulated subsurface geologic hydrogen models. + + Attributes: + borehole_depth (float): + Total depth of the borehole in meters, potentially including turns. + + well_diameter (str): + The relative diameter of the well. + Valid options: `"small"` (e.g., from `OSD3500_FY25.xlsx`) or `"large"`. + + well_geometry (str): + The geometric structure of the well. + Valid options: `"vertical"` or `"horizontal"`. + + rock_type (str): + The type of rock formation being drilled to extract geologic hydrogen. + Valid options: `"peridotite"` or `"bei_troctolite"`. + + grain_size (float): + The grain size of the rocks used to extract hydrogen, in meters. + """ + + borehole_depth: float = field() + well_diameter: str = field(validator=contains(["small", "large"])) + well_geometry: str = field(validator=contains(["vertical", "horizontal"])) + rock_type: str = field(validator=contains(["peridotite", "bei_troctolite"])) + grain_size: float = field() + + +class GeoH2SubsurfacePerformanceBaseClass(om.ExplicitComponent): + """OpenMDAO component for modeling the performance of the well subsurface for + geologic hydrogen. + + This component represents the performance model for geologic hydrogen production, + which can describe either natural or stimulated hydrogen generation processes. + All configuration inputs are sourced from a corresponding + :class:`GeoH2PerformanceConfig` instance. + + Attributes: + options (dict): + OpenMDAO options dictionary that must include: + - `plant_config` (dict): Plant-level configuration parameters. + - `tech_config` (dict): Technology-specific configuration parameters. + - `driver_config` (dict): Driver or simulation-level configuration parameters. + config (GeoH2PerformanceConfig): + Parsed configuration object containing performance model inputs. + + Inputs: + borehole_depth (float): + The total borehole depth, in meters (may include directional sections). + + grain_size (float): + The characteristic grain size of the rock formation, in meters. + + Outputs: + hydrogen_out (ndarray): + The hydrogen production rate profile over a one-year period (8760 hours), + in kilograms per hour. + + total_hydrogen_produced (float): + The total hydrogen produced over the plant lifetime, in kilograms per year. + """ + + def initialize(self): + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + self.options.declare("driver_config", types=dict) + + def setup(self): + # inputs + self.add_input("borehole_depth", units="m", val=self.config.borehole_depth) + self.add_input("grain_size", units="m", val=self.config.grain_size) + + # outputs + self.add_output("hydrogen_out", units="kg/h", shape=(8760,)) + self.add_output("total_hydrogen_produced", val=0.0, units="kg/year") + + +@define +class GeoH2SubsurfaceCostConfig(CostModelBaseConfig): + """Configuration for cost parameters in natural and geologic hydrogen well subsurface + sub-models. + + This class defines cost parameters that are shared across both natural and + stimulated (engineered) geologic hydrogen subsurface systems. + + Attributes: + borehole_depth (float): + Total depth of the borehole, in meters (may include horizontal turns). + + well_diameter (str): + Relative diameter of the well. + Valid options: `"small"` (e.g., `OSD3500_FY25.xlsx`) or `"large"`. + + well_geometry (str): + Structural configuration of the well. + Valid options: `"vertical"` or `"horizontal"`. + + """ + + borehole_depth: float = field() + well_diameter: str = field(validator=contains(["small", "large"])) + well_geometry: str = field(validator=contains(["vertical", "horizontal"])) + + +class GeoH2SubsurfaceCostBaseClass(CostModelBaseClass): + """OpenMDAO component for modeling subsurface well costs in a geologic hydrogen plant. + + This component calculates capital and operating costs for subsurface well systems + in a geologic hydrogen plant, applicable to both natural and stimulated hydrogen + production modes. + + Attributes: + config (GeoH2SubsurfaceCostConfig): + Parsed configuration object containing subsurface cost model parameters. + + Inputs: + borehole_depth (float): + Total borehole depth, in meters (may include directional drilling sections). + + hydrogen_out (ndarray): + Hydrogen production rate profile over the simulation period, in kg/h. + + total_hydrogen_produced (float): + Total hydrogen produced over the plant lifetime, in kg/year. + + Outputs: + bare_capital_cost (float): + Raw capital expenditure (CAPEX) without multipliers, in USD. + + CapEx (float): + Total effective CAPEX including contracting and contingency multipliers, in USD. + + OpEx (float): + Total operating expense (OPEX) for the system, in USD/year. + + Fixed_OpEx (float): + Annual fixed OPEX component that does not scale with hydrogen output, in USD/year. + + Variable_OpEx (float): + Variable OPEX per kilogram of hydrogen produced, in USD/kg. + """ + + def setup(self): + super().setup() + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + + # inputs + self.add_input("borehole_depth", units="m", val=self.config.borehole_depth) + self.add_input( + "hydrogen_out", + shape=n_timesteps, + units="kg/h", + desc=f"Hydrogen production rate in kg/h over {n_timesteps} hours.", + ) + self.add_input("total_hydrogen_produced", val=0.0, units="kg/year") + + # outputs + self.add_output("bare_capital_cost", units="USD") + + def calc_drill_cost(self, x): + # Calculates drilling costs from pre-fit polynomial curves + diameter = self.config.well_diameter + geometry = self.config.well_geometry + if geometry == "vertical": + if diameter == "small": + coeffs = [0.224997743, 389.2448848, 745141.2795] + elif diameter == "large": + coeffs = [0.224897254, 869.2069059, 703617.3915] + elif geometry == "horizontal": + if diameter == "small": + coeffs = [0.247604262, 323.277597, 1058263.661] + elif diameter == "large": + coeffs = [0.230514884, 941.8801375, 949091.7254] + a = coeffs[0] + b = coeffs[1] + c = coeffs[2] + drill_cost = a * x**2 + b * x + c + + year = self.config.cost_year + drill_cost = inflate_cepci(drill_cost, 2010, year) + + return drill_cost diff --git a/h2integrate/converters/hydrogen/geologic/mathur_modified.py b/h2integrate/converters/hydrogen/geologic/mathur_modified.py new file mode 100644 index 000000000..985f1e362 --- /dev/null +++ b/h2integrate/converters/hydrogen/geologic/mathur_modified.py @@ -0,0 +1,232 @@ +import copy + +from attrs import field, define + +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.core.validators import range_val +from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci +from h2integrate.converters.hydrogen.geologic.h2_well_subsurface_baseclass import ( + GeoH2SubsurfaceCostConfig, + GeoH2SubsurfaceCostBaseClass, +) + + +@define +class GeoH2SubsurfaceCostConfig(GeoH2SubsurfaceCostConfig): + """Configuration for subsurface well cost parameters in geologic hydrogen models. + + This configuration defines cost parameters specific to subsurface well + components used in geologic hydrogen systems. It supports either the use of + a built-in drilling cost curve or a manually specified constant drilling cost. + + Attributes: + test_drill_cost (float): + Capital cost (CAPEX) of conducting a test drill for a potential GeoH2 well, + in USD. + + permit_fees (float): + Capital cost (CAPEX) associated with obtaining drilling permits, in USD. + + acreage (float): + Land area required for drilling operations, in acres. + + rights_cost (float): + Capital cost (CAPEX) to acquire drilling rights, in USD per acre. + + success_chance (float): + Probability of success at a given test drilling site, expressed as a fraction. + + fixed_opex (float): + Fixed annual operating expense (OPEX) that does not scale with hydrogen + production, in USD/year. + + variable_opex (float): + Variable operating expense (OPEX) that scales with hydrogen production, + in USD/kg. + + contracting_pct (float): + Contracting costs as a percentage of bare capital cost. + + contingency_pct (float): + Contingency allowance as a percentage of bare capital cost. + + preprod_time (float): + Duration of the preproduction period during which fixed OPEX is charged, + in months. + + as_spent_ratio (float): + Ratio of as-spent costs to overnight (instantaneous) costs, dimensionless. + + cost_year (int): Mathur model uses 2022 as the base year for the cost model. + The cost year is updated based on `target_dollar_year` in the plant + config to adjust costs based on CPI/CEPCI within the Mathur model. This value + cannot be user added under `cost_parameters`. + + use_cost_curve (bool): Flag indicating whether to use the built-in drilling + cost curve. If `True`, the drilling cost is computed from the cost curve. + If `False`, a constant drilling cost must be provided. + + constant_drill_cost (float | None): Fixed drilling cost to use when + `use_cost_curve` is `False` [USD]. Defaults to `None`. + + Raises: + ValueError: If `use_cost_curve` is `False` and `constant_drill_cost` is not provided. + """ + + test_drill_cost: float = field() + permit_fees: float = field() + acreage: float = field() + rights_cost: float = field() + success_chance: float = field() + fixed_opex: float = field() + variable_opex: float = field() + contracting_pct: float = field() + contingency_pct: float = field() + preprod_time: float = field() + as_spent_ratio: float = field() + cost_year: int = field(converter=int, validator=range_val(2010, 2024)) + use_cost_curve: bool = field() + constant_drill_cost: float | None = field(default=None) + + def __attrs_post_init__(self): + # if use_cost_curve is False, constant_drill_cost must be provided + if not self.use_cost_curve and self.constant_drill_cost is None: + raise ValueError( + "If 'use_cost_curve' is False, 'constant_drill_cost' must be provided." + ) + # check if cost curve is true and constant_drill_cost is provided + if self.use_cost_curve and self.constant_drill_cost is not None: + raise ValueError( + "If 'use_cost_curve' is True, 'constant_drill_cost' should not be provided." + ) + + +class GeoH2SubsurfaceCostModel(GeoH2SubsurfaceCostBaseClass): + """An OpenMDAO component for modeling subsurface well costs in geologic + hydrogen plants. + + This component estimates the capital and operating costs for subsurface well + systems in geologic hydrogen production. Cost correlations are based on: + + - Mathur et al. (Stanford): https://doi.org/10.31223/X5599G + - NETL Quality Guidelines: https://doi.org/10.2172/1567736 + + Attributes: + config (GeoH2SubsurfaceCostConfig): Configuration object containing cost parameters. + + Inputs: + target_dollar_year (int): The dollar year in which costs are modeled. + borehole_depth (float): Depth of the wellbore [m]. + test_drill_cost (float): Capital cost of a test drill [USD]. + permit_fees (float): Cost of drilling permits [USD]. + acreage (float): Land area required for drilling [acre]. + rights_cost (float): Cost of obtaining drilling rights [USD/acre]. + success_chance (float): Probability of success for a test drill [%]. + fixed_opex (float): Fixed annual operating cost [USD/year]. + variable_opex (float): Variable operating cost per kg of H₂ produced [USD/kg]. + contracting_pct (float): Contracting costs as a percentage of bare capital cost [%]. + contingency_pct (float): Contingency costs as a percentage of bare capital cost [%]. + preprod_time (float): Duration of preproduction phase [months]. + as_spent_ratio (float): Ratio of as-spent costs to overnight costs. + hydrogen_out (ndarray): Hydrogen production rate over time [kg/h]. + + Outputs: + bare_capital_cost (float): Unadjusted capital cost before multipliers [USD]. + CapEx (float): Total as-spent capital expenditure [USD]. + OpEx (float): Total annual operating expenditure [USD/year]. + Fixed_OpEx (float): Annual fixed operating expenditure [USD/year]. + Variable_OpEx (float): Variable operating expenditure per kg of H₂ [USD/kg]. + + Raises: + ValueError: If cost curve settings in the configuration are inconsistent. + """ + + def setup(self): + # merge inputs from performance parameters and cost parameters + config_dict = merge_shared_inputs( + copy.deepcopy(self.options["tech_config"]["model_inputs"]), "cost" + ) + + if "cost_year" in config_dict: + msg = ( + "This cost model is based on 2022 costs and adjusts costs using CPI and CEPCI. " + "The cost year cannot be modified for this cost model. " + ) + raise ValueError(msg) + + target_dollar_year = self.options["plant_config"]["finance_parameters"][ + "cost_adjustment_parameters" + ]["target_dollar_year"] + + if target_dollar_year <= 2024 and target_dollar_year >= 2010: + # adjust costs from 2021 to target dollar year using CPI/CEPCI adjustment + self.target_dollar_year = target_dollar_year + + elif target_dollar_year < 2010: + # adjust costs from 2021 to 2010 using CP/CEPCI adjustment + self.target_dollar_year = 2010 + + elif target_dollar_year > 2024: + # adjust costs from 2021 to 2024 using CPI/CEPCI adjustment + self.target_dollar_year = 2024 + + config_dict.update({"cost_year": self.target_dollar_year}) + self.config = GeoH2SubsurfaceCostConfig.from_dict(config_dict, strict=True) + + super().setup() + + self.add_input("test_drill_cost", units="USD", val=self.config.test_drill_cost) + self.add_input("permit_fees", units="USD", val=self.config.permit_fees) + self.add_input("acreage", units="acre", val=self.config.acreage) + self.add_input("rights_cost", units="USD/acre", val=self.config.rights_cost) + self.add_input("success_chance", units="percent", val=self.config.success_chance) + self.add_input("fixed_opex", units="USD/year", val=self.config.fixed_opex) + self.add_input("variable_opex", units="USD/kg", val=self.config.variable_opex) + self.add_input("contracting_pct", units="percent", val=self.config.contracting_pct) + self.add_input("contingency_pct", units="percent", val=self.config.contingency_pct) + self.add_input("preprod_time", units="month", val=self.config.preprod_time) + self.add_input("as_spent_ratio", units=None, val=self.config.as_spent_ratio) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + # Get cost years + cost_year = self.config.cost_year + + # Calculate total capital cost per well (successful or unsuccessful) + drill = inflate_cepci(inputs["test_drill_cost"], 2022, cost_year) + permit = inflate_cpi(inputs["permit_fees"], 2022, cost_year) + acreage = inputs["acreage"] + rights_acre = inflate_cpi(inputs["rights_cost"], 2022, cost_year) + cap_well = drill + permit + acreage * rights_acre + + # Calculate total capital cost per SUCCESSFUL well + if self.config.use_cost_curve: + completion = self.calc_drill_cost(inputs["borehole_depth"]) + else: + completion = self.config.constant_drill_cost + completion = inflate_cepci( + completion, 2010, cost_year + ) # Is this the correct base year? + success = inputs["success_chance"] + bare_capex = cap_well / success * 100 + completion + outputs["bare_capital_cost"] = bare_capex + + # Parse in opex + fopex = inflate_cpi(inputs["fixed_opex"], 2022, cost_year) + vopex = inflate_cpi(inputs["variable_opex"], 2022, cost_year) + outputs["OpEx"] = fopex + outputs["VarOpEx"] = vopex * inputs["total_hydrogen_produced"] + + # Apply cost multipliers to bare erected cost via NETL-PUB-22580 + contracting = inputs["contracting_pct"] + contingency = inputs["contingency_pct"] + preproduction = inputs["preprod_time"] + as_spent_ratio = inputs["as_spent_ratio"] + contracting_costs = bare_capex * contracting / 100 + epc_cost = bare_capex + contracting_costs + contingency_costs = epc_cost * contingency / 100 + total_plant_cost = epc_cost + contingency_costs + preprod_cost = fopex * preproduction / 12 + total_overnight_cost = total_plant_cost + preprod_cost + tasc_toc_multiplier = as_spent_ratio # simplifying for now - TODO model on well_lifetime + total_as_spent_cost = total_overnight_cost * tasc_toc_multiplier + outputs["CapEx"] = total_as_spent_cost diff --git a/h2integrate/converters/hydrogen/geologic/natural_geoh2_plant.py b/h2integrate/converters/hydrogen/geologic/natural_geoh2_plant.py deleted file mode 100644 index e4ff61300..000000000 --- a/h2integrate/converters/hydrogen/geologic/natural_geoh2_plant.py +++ /dev/null @@ -1,210 +0,0 @@ -import numpy as np -from attrs import field, define - -from h2integrate.core.utilities import merge_shared_inputs -from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci -from h2integrate.converters.hydrogen.geologic.geoh2_baseclass import ( - GeoH2CostConfig, - GeoH2CostBaseClass, - GeoH2FinanceConfig, - GeoH2FinanceBaseClass, - GeoH2PerformanceConfig, - GeoH2PerformanceBaseClass, -) - - -@define -class NaturalGeoH2PerformanceConfig(GeoH2PerformanceConfig): - """ - Performance parameters specific to the natural geologic hydrogen sub-models - Values are set in the tech_config.yaml: - technologies/geoh2/model_inputs/shared_parameters for parameters marked with *asterisks* - technologies/geoh2/model_inputs/performance_parameters all other parameters - - Parameters (in addition to those in geoh2_baseclass.GeoH2PerformanceConfig): - site_prospectivity: float [None] - Site assessment of natural H2 production potential - initial_wellhead_flow: float [kg/h] - The hydrogen flow when the drill is first completed - gas_reservoir_size: float [t] - The total amount of hydrogen in the accumulation - """ - - site_prospectivity: float = field() - initial_wellhead_flow: float = field() - gas_reservoir_size: float = field() - - -class NaturalGeoH2PerformanceModel(GeoH2PerformanceBaseClass): - """ - An OpenMDAO component for modeling the performance of a natural geologic hydrogen plant. - Based on the work of: - - Mathur et al. (Stanford): https://eartharxiv.org/repository/view/8321/ - - Gelman et al. (USGS): https://pubs.usgs.gov/pp/1900/pp1900.pdf - - All inputs come from NaturalGeoH2PerformanceConfig - - Inputs (in addition to those in geoh2_baseclass.GeoH2PerformanceBaseClass): - site_prospectivity: float [None] - Assessment of natural H2 production potential - initial_wellhead_flow: float [kg/h] - The H2 flow when the drill is first completed - gas_reservoir_size: float [t] - The total amount of hydrogen in the accumulation - Outputs (in addition to those in geoh2_baseclass.GeoH2PerformanceBaseClass): - wellhead_h2_conc: float [percent] - The mass % of H2 in the wellhead fluid - lifetime_wellhead_flow: float [kg/h] - The average gas flow over the well lifetime - hydrogen_out_natural: array [kg/h] - The hydrogen production profile from natural - accumulations over 1 year (8760 hours) - """ - - def setup(self): - self.config = NaturalGeoH2PerformanceConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") - ) - super().setup() - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - - self.add_input("site_prospectivity", units=None, val=self.config.site_prospectivity) - self.add_input("initial_wellhead_flow", units="kg/h", val=self.config.initial_wellhead_flow) - self.add_input("gas_reservoir_size", units="t", val=self.config.gas_reservoir_size) - - self.add_output("wellhead_h2_conc", units="percent") - self.add_output("lifetime_wellhead_flow", units="kg/h") - self.add_output("hydrogen_out_natural", units="kg/h", shape=(n_timesteps,)) - - def compute(self, inputs, outputs): - if self.config.rock_type == "peridotite": # TODO: sub-models for different rock types - # Calculate expected wellhead h2 concentration from prospectivity - prospectivity = inputs["site_prospectivity"] - wh_h2_conc = 58.92981751 * prospectivity**2.460718753 # percent - - # Calculated average wellhead gas flow over well lifetime - init_wh_flow = inputs["initial_wellhead_flow"] - lifetime = int(inputs["well_lifetime"][0]) - res_size = inputs["gas_reservoir_size"] - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - avg_wh_flow = min(init_wh_flow, res_size / lifetime * 1000 / n_timesteps) - - # Calculate hydrogen flow out from accumulated gas - h2_accum = wh_h2_conc / 100 * avg_wh_flow - - # Parse outputs - outputs["wellhead_h2_conc"] = wh_h2_conc - outputs["lifetime_wellhead_flow"] = avg_wh_flow - outputs["hydrogen_out_natural"] = np.full(n_timesteps, h2_accum) - outputs["hydrogen_out"] = np.full(n_timesteps, h2_accum) - - -@define -class NaturalGeoH2CostConfig(GeoH2CostConfig): - """ - Cost parameters specific to the natural geologic hydrogen sub-models - Values are set in the tech_config.yaml: - technologies/geoh2/model_inputs/shared_parameters for parameters marked with *asterisks* - technologies/geoh2/model_inputs/cost_parameters all other parameters - - Currently no arguments other than those in geoh2_baseclass.GeoH2CostConfig - """ - - pass - - -class NaturalGeoH2CostModel(GeoH2CostBaseClass): - """ - An OpenMDAO component for modeling the cost of a natural geologic hydrogen plant - Based on the work of: - - Mathur et al. (Stanford): https://eartharxiv.org/repository/view/8321/ - - NETL Quality Guidelines: https://doi.org/10.2172/1567736 - - All inputs come from NaturalGeoH2CostConfig, except for inputs in *asterisks* which come from - NaturalGeoH2PerformanceModel - - Currently no inputs/outputs other than those in geoh2_baseclass.GeoH2CostBaseClass - """ - - def setup(self): - self.config = NaturalGeoH2CostConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") - ) - super().setup() - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - # Get cost years - cost_year = self.config.cost_year - dol_year = self.config.target_dollar_year - - # Calculate total capital cost per well (successful or unsuccessful) - drill = inflate_cepci(inputs["test_drill_cost"], cost_year, dol_year) - permit = inflate_cpi(inputs["permit_fees"], cost_year, dol_year) - acreage = inputs["acreage"] - rights_acre = inflate_cpi(inputs["rights_cost"], cost_year, dol_year) - cap_well = drill + permit + acreage * rights_acre - - # Calculate total capital cost per SUCCESSFUL well - completion = self.calc_drill_cost(inputs["borehole_depth"]) - completion = inflate_cepci(completion, cost_year, dol_year) - success = inputs["success_chance"] - bare_capex = cap_well / success * 100 + completion - outputs["bare_capital_cost"] = bare_capex - - # Parse in opex - fopex = inflate_cpi(inputs["fixed_opex"], cost_year, dol_year) - vopex = inflate_cpi(inputs["variable_opex"], cost_year, dol_year) - outputs["Fixed_OpEx"] = fopex - outputs["Variable_OpEx"] = vopex - production = np.sum(inputs["hydrogen_out"]) - outputs["OpEx"] = fopex + vopex * np.sum(production) - - # Apply cost multipliers to bare erected cost via NETL-PUB-22580 - contracting = inputs["contracting_pct"] - contingency = inputs["contingency_pct"] - preproduction = inputs["preprod_time"] - as_spent_ratio = inputs["as_spent_ratio"] - contracting_costs = bare_capex * contracting / 100 - epc_cost = bare_capex + contracting_costs - contingency_costs = epc_cost * contingency / 100 - total_plant_cost = epc_cost + contingency_costs - preprod_cost = fopex * preproduction / 12 - total_overnight_cost = total_plant_cost + preprod_cost - tasc_toc_multiplier = as_spent_ratio # simplifying for now - TODO model on well_lifetime - total_as_spent_cost = total_overnight_cost * tasc_toc_multiplier - outputs["CapEx"] = total_as_spent_cost - - -class NaturalGeoH2FinanceModel(GeoH2FinanceBaseClass): - """ - An OpenMDAO component for modeling the financing of a natural geologic hydrogen plant - Based on the work of: - - Mathur et al. (Stanford): https://eartharxiv.org/repository/view/8321/ - - NETL Quality Guidelines: https://doi.org/10.2172/1567736 - - - All inputs come from NaturalGeoH2FinanceConfig, except for inputs in *asterisks* which come - from NaturalGeoH2PerformanceModel or NaturalGeoH2CostModel outputs - - Currently no inputs/outputs other than those in geoh2_baseclass.GeoH2FinanceBaseClass - """ - - def setup(self): - self.config = GeoH2FinanceConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "finance") - ) - super().setup() - - def compute(self, inputs, outputs): - # Calculate fixed charge rate - lifetime = int(inputs["well_lifetime"][0]) - etr = inputs["eff_tax_rate"] / 100 - atwacc = inputs["atwacc"] / 100 - dep_n = 1 / lifetime # simplifying the IRS tax depreciation tables to avoid lookup - crf = ( - atwacc * (1 + atwacc) ** lifetime / ((1 + atwacc) ** lifetime - 1) - ) # capital recovery factor - dep = crf * np.sum(dep_n / np.power(1 + atwacc, np.linspace(1, lifetime, lifetime))) - fcr = crf / (1 - etr) - etr * dep / (1 - etr) - - # Calculate levelized cost of geoH2 - capex = inputs["CapEx"] - fopex = inputs["Fixed_OpEx"] - vopex = inputs["Variable_OpEx"] - production = np.sum(inputs["hydrogen_out"]) - lcoh = (capex * fcr + fopex) / production + vopex - outputs["LCOH"] = lcoh - outputs["LCOH_capex"] = (capex * fcr) / production - outputs["LCOH_fopex"] = fopex / production - outputs["LCOH_vopex"] = vopex diff --git a/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py b/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py new file mode 100644 index 000000000..10986f568 --- /dev/null +++ b/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py @@ -0,0 +1,119 @@ +import numpy as np +from attrs import field, define + +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.converters.hydrogen.geologic.h2_well_subsurface_baseclass import ( + GeoH2SubsurfacePerformanceConfig, + GeoH2SubsurfacePerformanceBaseClass, +) + + +@define +class NaturalGeoH2PerformanceConfig(GeoH2SubsurfacePerformanceConfig): + """Configuration for performance parameters for a natural geologic hydrogen subsurface well. + This class defines performance parameters specific to **natural** geologic hydrogen + systems (as opposed to stimulated systems). + + Inherits from: + GeoH2SubsurfacePerformanceConfig + + Attributes: + site_prospectivity (float): + Dimensionless site assessment factor representing the natural hydrogen + production potential of the location. + + initial_wellhead_flow (float): + Hydrogen flow rate measured immediately after well completion, in kilograms + per hour (kg/h). + + gas_reservoir_size (float): + Total amount of hydrogen stored in the geologic accumulation, in tonnes (t). + """ + + site_prospectivity: float = field() + initial_wellhead_flow: float = field() + gas_reservoir_size: float = field() + + +class NaturalGeoH2PerformanceModel(GeoH2SubsurfacePerformanceBaseClass): + """OpenMDAO component for modeling the performance of a subsurface well for a + natural geologic hydrogen plant. + + This component estimates hydrogen production performance for **naturally occurring** + geologic hydrogen systems. + + The modeling approach is informed by the following studies: + - Mathur et al. (Stanford): https://doi.org/10.31223/X5599G + - Gelman et al. (USGS): https://doi.org/10.3133/pp1900 + + Attributes: + config (NaturalGeoH2PerformanceConfig): + Configuration object containing model parameters specific to natural geologic + hydrogen systems. + + Inputs: + site_prospectivity (float): + Dimensionless measure of natural hydrogen production potential at a given site. + + initial_wellhead_flow (float): + Hydrogen flow rate immediately after well completion, in kilograms per hour (kg/h). + + gas_reservoir_size (float): + Total mass of hydrogen stored in the subsurface accumulation, in tonnes (t). + + grain_size (float): + Rock grain size influencing hydrogen diffusion and reaction rates, in meters + (inherited from base class). + + Outputs: + wellhead_h2_conc (float): + Mass percentage of hydrogen in the wellhead gas mixture. + + lifetime_wellhead_flow (float): + Average gas flow rate over the operational lifetime of the well, in kg/h. + + hydrogen_out_natural (ndarray): + Hourly hydrogen production profile from natural accumulations, + covering one simulated year (8760 hours), in kg/h. + + hydrogen_out (ndarray): + Total hydrogen output array used by downstream system models, in kg/h. + """ + + def setup(self): + self.config = NaturalGeoH2PerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") + ) + super().setup() + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + + self.add_input("site_prospectivity", units=None, val=self.config.site_prospectivity) + self.add_input("initial_wellhead_flow", units="kg/h", val=self.config.initial_wellhead_flow) + self.add_input("gas_reservoir_size", units="t", val=self.config.gas_reservoir_size) + + self.add_output("wellhead_h2_conc", units="percent") + self.add_output("lifetime_wellhead_flow", units="kg/h") + self.add_output("hydrogen_out_natural", units="kg/h", shape=(n_timesteps,)) + + def compute(self, inputs, outputs): + if self.config.rock_type == "peridotite": # TODO: sub-models for different rock types + # Calculate expected wellhead h2 concentration from prospectivity + prospectivity = inputs["site_prospectivity"] + wh_h2_conc = 58.92981751 * prospectivity**2.460718753 # percent + + # Calculated average wellhead gas flow over well lifetime + init_wh_flow = inputs["initial_wellhead_flow"] + lifetime = self.options["plant_config"]["plant"]["plant_life"] + res_size = inputs["gas_reservoir_size"] + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + avg_wh_flow = min(init_wh_flow, res_size / lifetime * 1000 / n_timesteps) + + # Calculate hydrogen flow out from accumulated gas + h2_accum = wh_h2_conc / 100 * avg_wh_flow + + # Parse outputs + outputs["wellhead_h2_conc"] = wh_h2_conc + outputs["lifetime_wellhead_flow"] = avg_wh_flow + outputs["hydrogen_out_natural"] = np.full(n_timesteps, h2_accum) + outputs["hydrogen_out"] = np.full(n_timesteps, h2_accum) + outputs["total_hydrogen_produced"] = np.sum(outputs["hydrogen_out"]) diff --git a/h2integrate/converters/hydrogen/geologic/stimulated_geoh2_plant.py b/h2integrate/converters/hydrogen/geologic/stimulated_geoh2_plant.py deleted file mode 100644 index 26f0db999..000000000 --- a/h2integrate/converters/hydrogen/geologic/stimulated_geoh2_plant.py +++ /dev/null @@ -1,253 +0,0 @@ -import numpy as np -from attrs import field, define - -from h2integrate.core.utilities import merge_shared_inputs -from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci -from h2integrate.converters.hydrogen.geologic.geoh2_baseclass import ( - GeoH2CostConfig, - GeoH2CostBaseClass, - GeoH2FinanceConfig, - GeoH2FinanceBaseClass, - GeoH2PerformanceConfig, - GeoH2PerformanceBaseClass, -) - - -# Globals - molecular weights -M_Fe = 55.8 # kg/kmol -M_H2 = 1.00 # kg/kmol - - -@define -class StimulatedGeoH2PerformanceConfig(GeoH2PerformanceConfig): - """ - Performance parameters specific to the stimulated geologic hydrogen sub-models - Values are set in the tech_config.yaml: - technologies/geoh2/model_inputs/shared_parameters for parameters marked with *asterisks* - technologies/geoh2/model_inputs/performance_parameters all other parameters - - Parameters (in addition to those in geoh2_baseclass.GeoH2PerformanceConfig): - -olivine_phase_vol: float [percent] - The volume percent of olivine in the formation - -olivine_fe_ii_conc: float [percent] - The mass percent of iron (II) in the olivine - -depth_to_formation: float [m] - Depth below surface of caprock not participating in rxn - -inj_prod_distance: float [m] - Distance between injection and production wells - -reaction_zone_width: float [m] - Estimated width of rock volume participating in the rxn - -bulk_density: float [kg/m**3] - Bulk density of rock - -water_temp: float [C] - Temperature of water being injected - """ - - olivine_phase_vol: float = field() # vol pct - olivine_fe_ii_conc: float = field() # wt pct - depth_to_formation: float = field() # meters - inj_prod_distance: float = field() # meters - reaction_zone_width: float = field() # meters - bulk_density: float = field() # kg/m^3 - water_temp: float = field() # deg C - - -class StimulatedGeoH2PerformanceModel(GeoH2PerformanceBaseClass): - """ - An OpenMDAO component for modeling the performance of a stimulated geologic hydrogen plant. - Based on the work of: - - Mathur et al. (Stanford): https://eartharxiv.org/repository/view/8321/ - - Templeton et al. (UC Boulder): https://doi.org/10.3389/fgeoc.2024.1366268 - - All inputs come from StimulatedGeoH2PerformanceConfig - - Inputs (in addition to those in geoh2_baseclass.GeoH2PerformanceBaseClass): - -olivine_phase_vol: float [percent] - The volume percent of olivine in the formation - -olivine_fe_ii_conc: float [percent] - The mass percent of iron (II) in the olivine - -depth_to_formation: float [m] - Depth below surface of caprock not participating in rxn - -inj_prod_distance: float [m] - Distance between injection and production wells - -reaction_zone_width: float [m] - Estimated width of rock volume participating in the rxn - -bulk_density: float [kg/m**3] - Bulk density of rock - -water_temp: float [C] - Temperature of water being injected - Outputs (in addition to those in geoh2_baseclass.GeoH2PerformanceBaseClass): - -hydrogen_out_stim: array [kg/h] - The hydrogen production profile from stimulation - over 1 year (8760 hours) - """ - - def setup(self): - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - self.config = StimulatedGeoH2PerformanceConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") - ) - super().setup() - - self.add_input("olivine_phase_vol", units="percent", val=self.config.olivine_phase_vol) - self.add_input("olivine_fe_ii_conc", units="percent", val=self.config.olivine_fe_ii_conc) - self.add_input("depth_to_formation", units="m", val=self.config.depth_to_formation) - self.add_input("inj_prod_distance", units="m", val=self.config.inj_prod_distance) - self.add_input("reaction_zone_width", units="m", val=self.config.reaction_zone_width) - self.add_input("bulk_density", units="kg/m**3", val=self.config.bulk_density) - self.add_input("water_temp", units="C", val=self.config.water_temp) - - self.add_output("hydrogen_out_stim", units="kg/h", shape=n_timesteps) - - def compute(self, inputs, outputs): - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - lifetime = int(inputs["well_lifetime"][0]) - - # Calculate serpentinization penetration rate - grain_size = inputs["grain_size"] - lin_coeff = 1.00e-6 - exp_coeff = -0.000209 - orig_size = 0.0000685 # meters - temp = inputs["water_temp"] - serp_rate = ( - lin_coeff - * np.exp(exp_coeff * (temp - 260) ** 2) - * 10 ** np.log10(orig_size / grain_size) - ) - pen_rate = grain_size * serp_rate - - # Model rock deposit size - height = inputs["borehole_depth"] - inputs["depth_to_formation"] - length = inputs["inj_prod_distance"] - width = inputs["reaction_zone_width"] - rock_volume = height * length * width - v_olivine = inputs["olivine_phase_vol"] / 100 - n_grains = rock_volume / grain_size**3 * v_olivine - rho = inputs["bulk_density"] - X_Fe = inputs["olivine_fe_ii_conc"] / 100 - - # Model shrinking reactive particle - years = np.linspace(1, lifetime, lifetime) - sec_elapsed = years * 3600 * n_timesteps - core_diameter = np.maximum( - np.zeros(len(sec_elapsed)), grain_size - 2 * pen_rate * sec_elapsed - ) - reacted_volume = n_grains * (grain_size**3 - core_diameter**3) - reacted_mass = reacted_volume * rho * X_Fe - h2_produced = reacted_mass * M_H2 / M_Fe - - # Parse outputs - h2_prod_avg = h2_produced[-1] / lifetime / n_timesteps - outputs["hydrogen_out_stim"] = h2_prod_avg - outputs["hydrogen_out"] = h2_prod_avg - - -@define -class StimulatedGeoH2CostConfig(GeoH2CostConfig): - """ - Cost parameters specific to the stimulated geologic hydrogen sub-models - Values are set in the tech_config.yaml: - technologies/geoh2/model_inputs/shared_parameters for parameters marked with *asterisks* - technologies/geoh2/model_inputs/cost_parameters all other parameters - - Args: - use_cost_curve (bool): Whether to use the built in drilling cost curve or a manual value - constant_drill_cost (float): If use_cost_curve is False, the constant cost of drilling - """ - - use_cost_curve: bool = field() - constant_drill_cost: float = field(default=1000000) - - -class StimulatedGeoH2CostModel(GeoH2CostBaseClass): - """ - An OpenMDAO component for modeling the cost of a stimulated geologic hydrogen plant - Based on the work of: - - Mathur et al. (Stanford): https://eartharxiv.org/repository/view/8321/ - - NETL Quality Guidelines: https://doi.org/10.2172/1567736 - - All inputs come from StimulatedGeoH2CostConfig, except for inputs in *asterisks* which come - from StimulatedGeoH2PerformanceModel - - Currently no inputs/outputs other than those in geoh2_baseclass.GeoH2CostBaseClass - """ - - def setup(self): - self.config = StimulatedGeoH2CostConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") - ) - super().setup() - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - # Get cost years - cost_year = self.config.cost_year - dol_year = self.config.target_dollar_year - - # Calculate total capital cost per well (successful or unsuccessful) - drill = inflate_cepci(inputs["test_drill_cost"], cost_year, dol_year) - permit = inflate_cpi(inputs["permit_fees"], cost_year, dol_year) - acreage = inputs["acreage"] - rights_acre = inflate_cpi(inputs["rights_cost"], cost_year, dol_year) - cap_well = drill + permit + acreage * rights_acre - - # Calculate total capital cost per SUCCESSFUL well - if self.config.use_cost_curve: - completion = self.calc_drill_cost(inputs["borehole_depth"]) - else: - completion = self.config.constant_drill_cost - completion = inflate_cepci(completion, 2010, cost_year) - completion = inflate_cepci(completion, cost_year, dol_year) - success = inputs["success_chance"] - bare_capex = cap_well / success * 100 + completion - outputs["bare_capital_cost"] = bare_capex - - # Parse in opex - fopex = inflate_cpi(inputs["fixed_opex"], cost_year, dol_year) - vopex = inflate_cpi(inputs["variable_opex"], cost_year, dol_year) - outputs["Fixed_OpEx"] = fopex - outputs["Variable_OpEx"] = vopex - production = np.sum(inputs["hydrogen_out"]) - outputs["OpEx"] = fopex + vopex * np.sum(production) - - # Apply cost multipliers to bare erected cost via NETL-PUB-22580 - contracting = inputs["contracting_pct"] - contingency = inputs["contingency_pct"] - preproduction = inputs["preprod_time"] - as_spent_ratio = inputs["as_spent_ratio"] - contracting_costs = bare_capex * contracting / 100 - epc_cost = bare_capex + contracting_costs - contingency_costs = epc_cost * contingency / 100 - total_plant_cost = epc_cost + contingency_costs - preprod_cost = fopex * preproduction / 12 - total_overnight_cost = total_plant_cost + preprod_cost - tasc_toc_multiplier = as_spent_ratio # simplifying for now - TODO model on well_lifetime - total_as_spent_cost = total_overnight_cost * tasc_toc_multiplier - outputs["CapEx"] = total_as_spent_cost - - -class StimulatedGeoH2FinanceModel(GeoH2FinanceBaseClass): - """ - An OpenMDAO component for modeling the financing of a stimulated geologic hydrogen plant - Based on the work of: - - Mathur et al. (Stanford): https://eartharxiv.org/repository/view/8321/ - - NETL Quality Guidelines: https://doi.org/10.2172/1567736 - - All inputs come from StimulatedGeoH2FinanceConfig, except for inputs in *asterisks* which come - from StimulatedGeoH2PerformanceModel or StimulatedGeoH2CostModel outputs - - Currently no inputs/outputs other than those in geoh2_baseclass.GeoH2FinanceBaseClass - """ - - def setup(self): - self.config = GeoH2FinanceConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "finance") - ) - super().setup() - - def compute(self, inputs, outputs): - # Calculate fixed charge rate - lifetime = int(inputs["well_lifetime"][0]) - etr = inputs["eff_tax_rate"] / 100 - atwacc = inputs["atwacc"] / 100 - dep_n = 1 / lifetime # simplifying the IRS tax depreciation tables to avoid lookup - crf = ( - atwacc * (1 + atwacc) ** lifetime / ((1 + atwacc) ** lifetime - 1) - ) # capital recovery factor - dep = crf * np.sum(dep_n / np.power(1 + atwacc, np.linspace(1, lifetime, lifetime))) - fcr = crf / (1 - etr) - etr * dep / (1 - etr) - - # Calculate levelized cost of geoH2 - capex = inputs["CapEx"] - fopex = inputs["Fixed_OpEx"] - vopex = inputs["Variable_OpEx"] - production = np.sum(inputs["hydrogen_out"]) - lcoh = (capex * fcr + fopex) / production + vopex - outputs["LCOH"] = lcoh - outputs["LCOH_capex"] = (capex * fcr) / production - outputs["LCOH_fopex"] = fopex / production - outputs["LCOH_vopex"] = vopex diff --git a/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py b/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py new file mode 100644 index 000000000..26303290c --- /dev/null +++ b/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py @@ -0,0 +1,134 @@ +import numpy as np +from attrs import field, define + +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.converters.hydrogen.geologic.h2_well_subsurface_baseclass import ( + GeoH2SubsurfacePerformanceConfig, + GeoH2SubsurfacePerformanceBaseClass, +) + + +# Globals - molecular weights +M_Fe = 55.8 # kg/kmol +M_H2 = 1.00 # kg/kmol + + +@define +class StimulatedGeoH2PerformanceConfig(GeoH2SubsurfacePerformanceConfig): + """Configuration parameters for stimulated geologic hydrogen well subsurface + performance models. + + Defines performance-related parameters specific to *stimulated* geologic hydrogen systems. + + Attributes: + olivine_phase_vol (float): Volume percent of olivine in the formation [%]. + olivine_fe_ii_conc (float): Mass percent of iron (II) in the olivine [%]. + depth_to_formation (float): Depth below the surface of the caprock that does not + participate in the reaction [m]. + inj_prod_distance (float): Distance between the injection and production wells [m]. + reaction_zone_width (float): Estimated width of the rock volume participating + in the reaction [m]. + bulk_density (float): Bulk density of the rock [kg/m³]. + water_temp (float): Temperature of the injected water [°C]. + """ + + olivine_phase_vol: float = field() # vol pct + olivine_fe_ii_conc: float = field() # wt pct + depth_to_formation: float = field() # meters + inj_prod_distance: float = field() # meters + reaction_zone_width: float = field() # meters + bulk_density: float = field() # kg/m^3 + water_temp: float = field() # deg C + + +class StimulatedGeoH2PerformanceModel(GeoH2SubsurfacePerformanceBaseClass): + """OpenMDAO component modeling the performance of a stimulated geologic hydrogen plant. + + This component estimates hydrogen production from artificially stimulated + geologic formations (e.g., serpentinization-based systems). The model follows + methods described in: + + - Mathur et al. (Stanford): https://doi.org/10.31223/X5599G + - Templeton et al. (UC Boulder): https://doi.org/10.3389/fgeoc.2024.1366268 + + All model inputs are provided through :class:`StimulatedGeoH2PerformanceConfig`. + + Attributes: + config (StimulatedGeoH2PerformanceConfig): Configuration object containing model + parameters for the stimulated system. + + Inputs (in addition to those in :class:`GeoH2SubsurfacePerformanceBaseClass`): + olivine_phase_vol (float): Volume percent of olivine in the formation [%]. + olivine_fe_ii_conc (float): Mass percent of iron (II) in the olivine [%]. + depth_to_formation (float): Depth below the surface of the caprock that does not + participate in the reaction [m]. + inj_prod_distance (float): Distance between the injection and production wells [m]. + reaction_zone_width (float): Estimated width of the rock volume participating + in the reaction [m]. + bulk_density (float): Bulk density of the rock [kg/m³]. + water_temp (float): Temperature of the injected water [°C]. + + Outputs (in addition to those in :class:`GeoH2SubsurfacePerformanceBaseClass`): + hydrogen_out_stim (ndarray): Hourly hydrogen production profile from stimulation + over one year (8760 hours) [kg/h]. + """ + + def setup(self): + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + self.config = StimulatedGeoH2PerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") + ) + super().setup() + + self.add_input("olivine_phase_vol", units="percent", val=self.config.olivine_phase_vol) + self.add_input("olivine_fe_ii_conc", units="percent", val=self.config.olivine_fe_ii_conc) + self.add_input("depth_to_formation", units="m", val=self.config.depth_to_formation) + self.add_input("inj_prod_distance", units="m", val=self.config.inj_prod_distance) + self.add_input("reaction_zone_width", units="m", val=self.config.reaction_zone_width) + self.add_input("bulk_density", units="kg/m**3", val=self.config.bulk_density) + self.add_input("water_temp", units="C", val=self.config.water_temp) + + self.add_output("hydrogen_out_stim", units="kg/h", shape=n_timesteps) + + def compute(self, inputs, outputs): + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + lifetime = self.options["plant_config"]["plant"]["plant_life"] + + # Calculate serpentinization penetration rate + grain_size = inputs["grain_size"] + lin_coeff = 1.00e-6 + exp_coeff = -0.000209 + orig_size = 0.0000685 # meters + temp = inputs["water_temp"] + serp_rate = ( + lin_coeff + * np.exp(exp_coeff * (temp - 260) ** 2) + * 10 ** np.log10(orig_size / grain_size) + ) + pen_rate = grain_size * serp_rate + + # Model rock deposit size + height = inputs["borehole_depth"] - inputs["depth_to_formation"] + length = inputs["inj_prod_distance"] + width = inputs["reaction_zone_width"] + rock_volume = height * length * width + v_olivine = inputs["olivine_phase_vol"] / 100 + n_grains = rock_volume / grain_size**3 * v_olivine + rho = inputs["bulk_density"] + X_Fe = inputs["olivine_fe_ii_conc"] / 100 + + # Model shrinking reactive particle + years = np.linspace(1, lifetime, lifetime) + sec_elapsed = years * 3600 * n_timesteps + core_diameter = np.maximum( + np.zeros(len(sec_elapsed)), grain_size - 2 * pen_rate * sec_elapsed + ) + reacted_volume = n_grains * (grain_size**3 - core_diameter**3) + reacted_mass = reacted_volume * rho * X_Fe + h2_produced = reacted_mass * M_H2 / M_Fe + + # Parse outputs + h2_prod_avg = h2_produced[-1] / lifetime / n_timesteps + outputs["hydrogen_out_stim"] = h2_prod_avg + outputs["hydrogen_out"] = h2_prod_avg + outputs["total_hydrogen_produced"] = np.sum(outputs["hydrogen_out"]) diff --git a/h2integrate/converters/hydrogen/geologic/test/test_geologic_h2_subsurface.py b/h2integrate/converters/hydrogen/geologic/test/test_geologic_h2_subsurface.py new file mode 100644 index 000000000..598f39a58 --- /dev/null +++ b/h2integrate/converters/hydrogen/geologic/test/test_geologic_h2_subsurface.py @@ -0,0 +1,70 @@ +import numpy as np +from pytest import approx + +from h2integrate import EXAMPLE_DIR +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +def test_natural_geoh2(subtests): + h2i_nat = H2IntegrateModel(EXAMPLE_DIR / "04_geo_h2" / "04_geo_h2_natural.yaml") + h2i_nat.run() + + with subtests.test("H2 Production"): + h2_prod = h2i_nat.plant.geoh2_well_subsurface.simple_natural_geoh2_performance.get_val( + "hydrogen_out" + ) + assert np.mean(h2_prod) == approx(117.72509205764842, 1e-6) + + with subtests.test("integrate LCOH"): + lcoh = h2i_nat.prob.get_val("finance_subgroup_default.LCOH") + assert lcoh == approx( + 1.67288106, 1e-6 + ) # previous val from custom finance model was 1.2440904 + + # failure is expected because we are inflating using general inflation rather than CPI and CEPCI + with subtests.test("capex"): + capex = h2i_nat.plant.geoh2_well_subsurface.mathur_modified_geoh2_cost.get_val("CapEx") + assert capex == approx(12098681.67169586, 1e-6) + with subtests.test("fixed Opex"): + opex = h2i_nat.plant.geoh2_well_subsurface.mathur_modified_geoh2_cost.get_val("OpEx") + assert opex == approx(215100.7857875, 1e-6) + with subtests.test("variable"): + var = h2i_nat.plant.geoh2_well_subsurface.mathur_modified_geoh2_cost.get_val("VarOpEx") + assert var == approx(0.0, 1e-6) + with subtests.test("adjusted opex"): + op = h2i_nat.prob.get_val("finance_subgroup_default.opex_adjusted_geoh2_well_subsurface") + assert op == approx(215100.7857875, 1e-6) + + +def test_stimulated_geoh2(subtests): + h2i_stim = H2IntegrateModel(EXAMPLE_DIR / "04_geo_h2" / "04_geo_h2_stimulated.yaml") + h2i_stim.run() + prod = ( + h2i_stim.plant.geoh2_well_subsurface.templeton_serpentinization_geoh2_performance.get_val( + "hydrogen_out" + ) + ) + + with subtests.test("H2 Production"): + assert np.mean(prod) == approx(155.03934945719536, 1e-6) + + with subtests.test("integrate LCOH"): + lcoh = h2i_stim.prob.get_val("finance_subgroup_default.LCOH") + assert lcoh == approx( + 2.29337734, 1e-6 + ) # previous val from custom finance model was 1.74903827 + + # failure is expected because we are inflating using general inflation rather than CPI and CEPCI + with subtests.test("capex"): + capex = h2i_stim.plant.geoh2_well_subsurface.mathur_modified_geoh2_cost.get_val("CapEx") + assert capex == approx(19520122.88478073, 1e-6) + with subtests.test("fixed Opex"): + opex = h2i_stim.plant.geoh2_well_subsurface.mathur_modified_geoh2_cost.get_val("OpEx") + assert opex == approx(215100.7857875, 1e-6) + with subtests.test("variable"): + var = h2i_stim.plant.geoh2_well_subsurface.mathur_modified_geoh2_cost.get_val("VarOpEx") + var = var / np.sum(prod) + assert var == approx(0.32105362, 1e-6) + with subtests.test("adjusted opex"): + op = h2i_stim.prob.get_val("finance_subgroup_default.opex_adjusted_geoh2_well_subsurface") + assert op == approx(215100.7857875, 1e-6) diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index 479b68c41..f300665b7 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -1053,6 +1053,13 @@ def connect_technologies(self): f"finance_subgroup_{group_id}.total_hydrogen_produced", ) + if "geoh2" in tech_name: + if primary_commodity_type == "hydrogen": + self.plant.connect( + f"{tech_name}.total_hydrogen_produced", + f"finance_subgroup_{group_id}.total_hydrogen_produced", + ) + if "ammonia" in tech_name and primary_commodity_type == "ammonia": self.plant.connect( f"{tech_name}.total_ammonia_produced", diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index d95593f58..ba7eaa940 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -83,6 +83,7 @@ from h2integrate.control.control_strategies.pyomo_controllers import ( HeuristicLoadFollowingController, ) +from h2integrate.converters.hydrogen.geologic.mathur_modified import GeoH2SubsurfaceCostModel from h2integrate.resource.solar.nrel_developer_goes_api_models import ( GOESTMYSolarAPI, GOESConusSolarAPI, @@ -100,9 +101,7 @@ RunOfRiverHydroCostModel, RunOfRiverHydroPerformanceModel, ) -from h2integrate.converters.hydrogen.geologic.natural_geoh2_plant import ( - NaturalGeoH2CostModel, - NaturalGeoH2FinanceModel, +from h2integrate.converters.hydrogen.geologic.simple_natural_geoh2 import ( NaturalGeoH2PerformanceModel, ) from h2integrate.control.control_rules.converters.generic_converter import ( @@ -116,9 +115,7 @@ from h2integrate.converters.hydrogen.custom_electrolyzer_cost_model import ( CustomElectrolyzerCostModel, ) -from h2integrate.converters.hydrogen.geologic.stimulated_geoh2_plant import ( - StimulatedGeoH2CostModel, - StimulatedGeoH2FinanceModel, +from h2integrate.converters.hydrogen.geologic.templeton_serpentinization import ( StimulatedGeoH2PerformanceModel, ) from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( @@ -177,12 +174,9 @@ "ocean_alkalinity_enhancement_performance": OAEPerformanceModel, "ocean_alkalinity_enhancement_cost": OAECostModel, "ocean_alkalinity_enhancement_cost_financial": OAECostAndFinancialModel, - "natural_geoh2_performance": NaturalGeoH2PerformanceModel, - "natural_geoh2_cost": NaturalGeoH2CostModel, - "natural_geoh2": NaturalGeoH2FinanceModel, - "stimulated_geoh2_performance": StimulatedGeoH2PerformanceModel, - "stimulated_geoh2_cost": StimulatedGeoH2CostModel, - "stimulated_geoh2": StimulatedGeoH2FinanceModel, + "simple_natural_geoh2_performance": NaturalGeoH2PerformanceModel, + "templeton_serpentinization_geoh2_performance": StimulatedGeoH2PerformanceModel, + "mathur_modified_geoh2_cost": GeoH2SubsurfaceCostModel, "natural_gas_performance": NaturalGasPerformanceModel, "natural_gas_cost": NaturalGasCostModel, # Transport diff --git a/h2integrate/tools/inflation/inflate.py b/h2integrate/tools/inflation/inflate.py index 5bfad7c67..f4692564e 100644 --- a/h2integrate/tools/inflation/inflate.py +++ b/h2integrate/tools/inflation/inflate.py @@ -11,6 +11,8 @@ def inflate_cpi(costs, in_year, out_year): CD = Path(__file__).parent.resolve() cpi_df = pd.read_csv(CD / "cpi.csv", index_col=0) + if out_year > 2024: + raise ValueError("CPI data not available for years beyond 2024.") ratio = cpi_df.loc[out_year, "CPI"] / cpi_df.loc[in_year, "CPI"] inflated_costs = np.multiply(costs, ratio) @@ -20,6 +22,8 @@ def inflate_cpi(costs, in_year, out_year): def inflate_cepci(costs, in_year, out_year): CD = Path(__file__).parent.resolve() cpi_df = pd.read_csv(CD / "cepci.csv", index_col=0) + if out_year > 2024: + raise ValueError("CEPCI data not available for years beyond 2024.") ratio = cpi_df.loc[out_year, "CEPCI"] / cpi_df.loc[in_year, "CEPCI"] inflated_costs = np.multiply(costs, ratio) diff --git a/tests/h2integrate/test_hydrogen/test_geologic_h2.py b/tests/h2integrate/test_hydrogen/test_geologic_h2.py deleted file mode 100644 index 84f0aa368..000000000 --- a/tests/h2integrate/test_hydrogen/test_geologic_h2.py +++ /dev/null @@ -1,29 +0,0 @@ -import numpy as np -from pytest import approx - -from h2integrate import EXAMPLE_DIR -from h2integrate.core.h2integrate_model import H2IntegrateModel - - -def test_natural_geoh2(subtests): - h2i_nat = H2IntegrateModel(EXAMPLE_DIR / "04_geo_h2" / "04_geo_h2_natural.yaml") - h2i_nat.run() - - with subtests.test("H2 Production"): - h2_prod = h2i_nat.plant.geoh2.natural_geoh2_performance.get_val("hydrogen_out") - assert np.mean(h2_prod) == approx(117.72509205764842, 1e-6) - with subtests.test("LCOH"): - lcoh = h2i_nat.plant.geoh2.geoh2_finance.get_val("LCOH") - assert lcoh == approx(1.2440904, 1e-6) - - -def test_stimulated_geoh2(subtests): - h2i_stim = H2IntegrateModel(EXAMPLE_DIR / "04_geo_h2" / "04_geo_h2_stimulated.yaml") - h2i_stim.run() - - with subtests.test("H2 Production"): - h2_prod = h2i_stim.plant.geoh2.stimulated_geoh2_performance.get_val("hydrogen_out") - assert np.mean(h2_prod) == approx(155.03934945719536, 1e-6) - with subtests.test("LCOH"): - lcoh = h2i_stim.plant.geoh2.geoh2_finance.get_val("LCOH") - assert lcoh == approx(1.74803827, 1e-6) From 506efdddac38173fa1ca231653fcbb8aec79e4a4 Mon Sep 17 00:00:00 2001 From: John Jasa Date: Thu, 20 Nov 2025 14:52:16 -0600 Subject: [PATCH 60/79] Standalone Iron Mine (#364) * Switching HB cases * Getting through to plot * Fixing hydrogen ratio * Running plots * Changing TX site back to default * Fix plot * Removing methanol * Made iron example files, no code to run them * Creating wrapper * It runs! * Fixes to lca * run_iron reproducing number from old setup * added more inputs to iron wrapper, changed lcoe to be in USD per MWh * minor cleanups to tech config and iron wrapper * added test for baseline case * added more iron tests and added docstring to IronConfig * connected taconite pellet input * added iron ore cost and performance model * iron ore tests are passing * cleaned up iron ore tests * Renaming iron config inputs * added init file * added test init file * added iron electrowinning model * All iron cases being tested * rename files * Added iron to CI * added iron transport model * Updated ammonia synloop example * Reverting changes to 12 example * Fixes for some examples * Reverting some HOPP wrapper changes * updated test value for chicago iron ore transport * added geopy to dependencies * eaf wip * finish testing * Running iron_mine as example * Old and new closely matching * Getting ready to merge * Reverting example * Run all cases in example * Fixing tests * Fixing om test assertions * added performance model for martin ore * added cost model for martin ore * added test for martin ore cost model * added the start of some doc strings and comments * added comments to test * removed duplicate iron example * fixed bug that was introduced in output_txt of profast_base * added standalone iron mine performance models * another profast bugfix to fix failing tests * removed added ammonia example files * removed commented out code and added docstrings * Comparing old and new mine * Adding cpi back in to cost_model * updated handling cost year in martin mine cost model * updated cost model to handle target dollar years outside of cpi range * removed duplicate coefficient files --------- Co-authored-by: jmartin4 Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Co-authored-by: Jonathan Martin <94018654+jmartin4nrel@users.noreply.github.com> Co-authored-by: kbrunik --- CHANGELOG.md | 1 + ...{21_iron_modular.yaml => 21_iron_old.yaml} | 4 +- examples/21_iron_mn_to_il/plant_config.yaml | 21 +- ...fig_modular.yaml => plant_config_old.yaml} | 0 examples/21_iron_mn_to_il/run_iron.py | 22 +- examples/21_iron_mn_to_il/tech_config.yaml | 90 +++++-- ...nfig_modular.yaml => tech_config_old.yaml} | 0 examples/21_iron_mn_to_il/test_inputs.csv | 4 +- .../21_iron_mn_to_il/test_inputs_modular.csv | 3 - .../converters/iron/martin_mine_cost_model.py | 192 +++++++++++++ .../converters/iron/martin_mine_perf_model.py | 252 ++++++++++++++++++ .../converters/iron/test/test_martin_mine.py | 95 +++++++ h2integrate/core/supported_models.py | 4 + h2integrate/transporters/pipe.py | 10 +- pyproject.toml | 1 + 15 files changed, 657 insertions(+), 42 deletions(-) rename examples/21_iron_mn_to_il/{21_iron_modular.yaml => 21_iron_old.yaml} (78%) rename examples/21_iron_mn_to_il/{plant_config_modular.yaml => plant_config_old.yaml} (100%) rename examples/21_iron_mn_to_il/{tech_config_modular.yaml => tech_config_old.yaml} (100%) delete mode 100644 examples/21_iron_mn_to_il/test_inputs_modular.csv create mode 100644 h2integrate/converters/iron/martin_mine_cost_model.py create mode 100644 h2integrate/converters/iron/martin_mine_perf_model.py create mode 100644 h2integrate/converters/iron/test/test_martin_mine.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 5136ca62f..b71df4598 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ - Split out cost models from coupled hydrogen storage performance and cost model - Added storage auto-sizing performance model based on storage sizing calculations that existed in the coupled hydrogen storage performance and cost model - Move geologic hydrogen models into specific geoh2 subsurface converters +- Added standalone iron mine performance and cost model ## 0.4.0 [October 1, 2025] diff --git a/examples/21_iron_mn_to_il/21_iron_modular.yaml b/examples/21_iron_mn_to_il/21_iron_old.yaml similarity index 78% rename from examples/21_iron_mn_to_il/21_iron_modular.yaml rename to examples/21_iron_mn_to_il/21_iron_old.yaml index 4f47c5d7a..96cfa1943 100644 --- a/examples/21_iron_mn_to_il/21_iron_modular.yaml +++ b/examples/21_iron_mn_to_il/21_iron_old.yaml @@ -3,5 +3,5 @@ name: "H2Integrate_config" system_summary: "This reference hybrid plant is located in Minnesota and contains wind, solar, and battery storage technologies. The system is designed to produce hydrogen using an electrolyzer and also produce steel using a grid-connected plant." driver_config: "driver_config.yaml" -technology_config: "tech_config_modular.yaml" -plant_config: "plant_config_modular.yaml" +technology_config: "tech_config_old.yaml" +plant_config: "plant_config_old.yaml" diff --git a/examples/21_iron_mn_to_il/plant_config.yaml b/examples/21_iron_mn_to_il/plant_config.yaml index 064db21d1..f2b237bc4 100644 --- a/examples/21_iron_mn_to_il/plant_config.yaml +++ b/examples/21_iron_mn_to_il/plant_config.yaml @@ -22,10 +22,19 @@ site: # with the reverse definition. # this will naturally grow as we mature the interconnected tech technology_interconnections: [ + ["grid_feedstock","iron_mine","electricity","cable"], + ["mine_feedstock","iron_mine","crude_ore","pipe"], + ["iron_mine","iron_transport","total_iron_ore_produced"], + ["iron_transport","iron_plant","iron_transport_cost"], + ["finance_subgroup_iron_ore","iron_plant","price_iron_ore"], ] plant: plant_life: 30 + simulation: + n_timesteps: 8760 + dt: 3600 + timezone: 0 finance_parameters: finance_groups: finance_model: "ProFastComp" @@ -53,7 +62,11 @@ finance_parameters: cost_year_adjustment_inflation: 0.025 target_dollar_year: 2022 finance_subgroups: - iron: - commodity: "iron" - commodity_stream: "iron" #use electricity from wind in finance calc - technologies: ["iron"] + iron_ore: + commodity: "iron_ore" + commodity_stream: "iron_mine" + technologies: ["iron_mine"] + pig_iron: + commodity: "pig_iron" + commodity_stream: "iron_plant" + technologies: ["iron_plant"] # diff --git a/examples/21_iron_mn_to_il/plant_config_modular.yaml b/examples/21_iron_mn_to_il/plant_config_old.yaml similarity index 100% rename from examples/21_iron_mn_to_il/plant_config_modular.yaml rename to examples/21_iron_mn_to_il/plant_config_old.yaml diff --git a/examples/21_iron_mn_to_il/run_iron.py b/examples/21_iron_mn_to_il/run_iron.py index 6550b562a..70f1f7c38 100644 --- a/examples/21_iron_mn_to_il/run_iron.py +++ b/examples/21_iron_mn_to_il/run_iron.py @@ -4,15 +4,13 @@ from h2integrate.core.h2integrate_model import H2IntegrateModel -# Create H2Integrate models - one with iron_wrapper, one with modular iron components +# Create H2Integrate models - comparing old and new model = H2IntegrateModel("21_iron.yaml") -model_modular = H2IntegrateModel("21_iron_modular.yaml") +model_old = H2IntegrateModel("21_iron_old.yaml") # Load cases case_file = Path("test_inputs.csv") -case_file_modular = Path("test_inputs_modular.csv") cases = load_tech_config_cases(case_file) -cases_modular = load_tech_config_cases(case_file_modular) # Modify and run the model for different cases casenames = [ @@ -22,20 +20,18 @@ "Case 4", ] lcois = [] -lcois_modular = [] +lcois_old = [] for casename in casenames: model = modify_tech_config(model, cases[casename]) - model_modular = modify_tech_config(model_modular, cases_modular[casename]) + model_old = modify_tech_config(model_old, cases[casename]) model.run() - model_modular.run() + model_old.run() model.post_process() - model_modular.post_process() - lcois.append(float(model.model.get_val("iron.LCOI")[0])) - lcois_modular.append( - float(model_modular.model.get_val("finance_subgroup_pig_iron.price_pig_iron")[0]) - ) + model_old.post_process() + lcois.append(float(model_old.model.get_val("finance_subgroup_pig_iron.price_pig_iron")[0])) + lcois_old.append(float(model_old.model.get_val("finance_subgroup_pig_iron.price_pig_iron")[0])) # Compare the LCOIs from iron_wrapper and modular iron print(lcois) -print(lcois_modular) +print(lcois_old) diff --git a/examples/21_iron_mn_to_il/tech_config.yaml b/examples/21_iron_mn_to_il/tech_config.yaml index f62a0317f..919b9fec7 100644 --- a/examples/21_iron_mn_to_il/tech_config.yaml +++ b/examples/21_iron_mn_to_il/tech_config.yaml @@ -2,25 +2,81 @@ name: "technology_config" description: "This hybrid plant produces iron" technologies: - iron: + grid_feedstock: performance_model: - model: "iron" + model: "feedstock_performance" + cost_model: + model: "feedstock_cost" model_inputs: + shared_parameters: + feedstock_type: "electricity" + units: "MW" + performance_parameters: + rated_capacity: 750. # MW cost_parameters: - # h2_kgpy: 68583942.6460997 #1000000 #68583942.6460997 - LCOE: 58.02 #$/MWh - LCOH: 7.10 #$/kg - ROM_iron_site_name: "Hibbing" #"Hibbing", "Northshore", "United", "Minorca" or "Tilden" - iron_ore_product_selection: "drg_taconite_pellets" #"drg_taconite_pellets" or "std_taconite_pellets" - reduced_iron_product_selection: "ng_dri" #"h2_dri" or "ng_dri" - structural_iron_product_selection: "none" #"eaf_steel" or "none" - cost_year: 2020 - reduced_iron_site_latitude: 41.717 - reduced_iron_site_longitude: -88.398 - transport_cost_included: True - ng_mod: False - ng_price: 4 - capex_mod: False - capex_mod_pct: 0 + cost_year: 2022 + price: 0.0 + annual_cost: 0. + start_up_cost: 0. + mine_feedstock: + performance_model: + model: "feedstock_performance" + cost_model: + model: "feedstock_cost" + model_inputs: + shared_parameters: + feedstock_type: "crude_ore" + units: "kg/h" + performance_parameters: + rated_capacity: 2000. # kg/h + cost_parameters: + cost_year: 2022 + price: 0.0 + annual_cost: 0. + start_up_cost: 0. + iron_mine: + performance_model: + model: "iron_mine_performance_martin" + cost_model: + model: "iron_mine_cost_martin" + model_inputs: + shared_parameters: + mine: "Northshore" + taconite_pellet_type: "drg" + max_ore_production_rate_tonnes_per_hr: 516.0497610311598 + iron_transport: + performance_model: + model: "iron_transport_performance" + cost_model: + model: "iron_transport_cost" + model_inputs: + performance_parameters: + find_closest_ship_site: False + shipment_site: "Chicago" + cost_parameters: + transport_year: 2022 + cost_year: 2022 + iron_plant: + performance_model: + model: "iron_plant_performance" + cost_model: + model: "iron_plant_cost" + model_inputs: + shared_parameters: + winning_type: "ng" + iron_win_capacity: 1418095 + site_name: "IL" + performance_parameters: + win_capacity_demon: "iron" + model_name: "rosner" + cost_parameters: + LCOE: 58.02 + LCOH: 7.10 + LCOI_ore: 0 #125.25996463784443 + iron_transport_cost: 30.566808424134745 + ore_profit_pct: 6.0 + varom_model_name: "rosner" + installation_years: 3 + operational_year: 2035 # baseline 843.37604007 diff --git a/examples/21_iron_mn_to_il/tech_config_modular.yaml b/examples/21_iron_mn_to_il/tech_config_old.yaml similarity index 100% rename from examples/21_iron_mn_to_il/tech_config_modular.yaml rename to examples/21_iron_mn_to_il/tech_config_old.yaml diff --git a/examples/21_iron_mn_to_il/test_inputs.csv b/examples/21_iron_mn_to_il/test_inputs.csv index 5e999eae2..66387f458 100644 --- a/examples/21_iron_mn_to_il/test_inputs.csv +++ b/examples/21_iron_mn_to_il/test_inputs.csv @@ -1,3 +1,3 @@ Index 0,Index 1,Index 2,Index 3,Index 4,Type,Case 1,Case 2,Case 3,Case 4, -technologies,iron,model_inputs,cost_parameters,ROM_iron_site_name,str,Northshore,Hibbing,Northshore,Hibbing, -technologies,iron,model_inputs,cost_parameters,iron_ore_product_selection,str,std_taconite_pellets,std_taconite_pellets,drg_taconite_pellets,drg_taconite_pellets, +technologies,iron_mine,model_inputs,shared_parameters,mine,str,Northshore,Hibbing,Northshore,Hibbing, +technologies,iron_mine,model_inputs,shared_parameters,taconite_pellet_type,str,std,std,drg,drg, diff --git a/examples/21_iron_mn_to_il/test_inputs_modular.csv b/examples/21_iron_mn_to_il/test_inputs_modular.csv deleted file mode 100644 index 66387f458..000000000 --- a/examples/21_iron_mn_to_il/test_inputs_modular.csv +++ /dev/null @@ -1,3 +0,0 @@ -Index 0,Index 1,Index 2,Index 3,Index 4,Type,Case 1,Case 2,Case 3,Case 4, -technologies,iron_mine,model_inputs,shared_parameters,mine,str,Northshore,Hibbing,Northshore,Hibbing, -technologies,iron_mine,model_inputs,shared_parameters,taconite_pellet_type,str,std,std,drg,drg, diff --git a/h2integrate/converters/iron/martin_mine_cost_model.py b/h2integrate/converters/iron/martin_mine_cost_model.py new file mode 100644 index 000000000..80df24baf --- /dev/null +++ b/h2integrate/converters/iron/martin_mine_cost_model.py @@ -0,0 +1,192 @@ +import copy + +import pandas as pd +from attrs import field, define +from openmdao.utils import units + +from h2integrate import ROOT_DIR +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains, range_val +from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.tools.inflation.inflate import inflate_cpi + + +@define +class MartinIronMineCostConfig(BaseConfig): + """Configuration class for MartinIronMineCostComponent. + + Attributes: + taconite_pellet_type (str): type of taconite pellets, options are "std" or "drg". + mine (str): name of ore mine. Must be "Hibbing", "Northshore", "United", + "Minorca" or "Tilden" + max_ore_production_rate_tonnes_per_hr (float): capacity of the pellet plant + in units of metric tonnes of pellets produced per hour. + cost_year (int): target dollar year to convert costs to. + Cannot be input under `cost_parameters`. + """ + + max_ore_production_rate_tonnes_per_hr: float = field() + + taconite_pellet_type: str = field( + converter=(str.lower, str.strip), validator=contains(["std", "drg"]) + ) + + mine: str = field(validator=contains(["Hibbing", "Northshore", "United", "Minorca", "Tilden"])) + + # the cost model is based on costs from 2021 and can be adjusted to another cost year + # using CPI adjustment. + cost_year: int = field(converter=int, validator=range_val(2010, 2024)) + + +class MartinIronMineCostComponent(CostModelBaseClass): + def setup(self): + # merge inputs from performance parameters and cost parameters + config_dict = merge_shared_inputs( + copy.deepcopy(self.options["tech_config"]["model_inputs"]), "cost" + ) + + if "cost_year" in config_dict: + if config_dict.get("cost_year", 2021) != 2021: + msg = ( + "This cost model is based on 2021 costs and adjusts costs using CPI. " + "The cost year cannot be modified for this cost model. " + ) + raise ValueError(msg) + + target_dollar_year = self.options["plant_config"]["finance_parameters"][ + "cost_adjustment_parameters" + ]["target_dollar_year"] + + if target_dollar_year <= 2024 and target_dollar_year >= 2010: + # adjust costs from 2021 to target dollar year using CPI adjustment + self.target_dollar_year = target_dollar_year + + elif target_dollar_year < 2010: + # adjust costs from 2021 to 2010 using CPI adjustment + self.target_dollar_year = 2010 + + elif target_dollar_year > 2024: + # adjust costs from 2021 to 2024 using CPI adjustment + self.target_dollar_year = 2024 + + config_dict.update({"cost_year": self.target_dollar_year}) + self.config = MartinIronMineCostConfig.from_dict(config_dict, strict=True) + + super().setup() + + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + + self.add_input( + "system_capacity", + val=self.config.max_ore_production_rate_tonnes_per_hr, + # shape=n_timesteps, + units="t/h", + desc="Annual ore production capacity", + ) + self.add_input( + "iron_ore_out", + val=0.0, + shape=n_timesteps, + units="t/h", + desc="Iron ore pellets produced", + ) + + coeff_fpath = ( + ROOT_DIR / "simulation" / "technologies" / "iron" / "martin_ore" / "cost_coeffs.csv" + ) + # martin ore performance model + coeff_df = pd.read_csv(coeff_fpath, index_col=0) + self.coeff_df = self.format_coeff_df(coeff_df, self.config.mine) + + def format_coeff_df(self, coeff_df, mine): + """Update the coefficient dataframe such that values are adjusted to standard units + and units are compatible with OpenMDAO units. Also filter the dataframe to include + only the data necessary for a given mine and pellet type. + + Args: + coeff_df (pd.DataFrame): cost coefficient dataframe. + mine (str): name of mine that ore is extracted from. + + Returns: + pd.DataFrame: cost coefficient dataframe + """ + + # only include data for the given product + coeff_df = coeff_df[ + coeff_df["Product"] == f"{self.config.taconite_pellet_type}_taconite_pellets" + ] + data_cols = ["Name", "Type", "Coeff", "Unit", mine] + coeff_df = coeff_df[data_cols] + coeff_df = coeff_df.rename(columns={mine: "Value"}) + + # convert wet to dry + moisture_percent = 2.0 + dry_fraction = (100 - moisture_percent) / 100 + + # convert wet long tons per year to dry long tons per year + i_wlt = coeff_df[coeff_df["Unit"] == "wltpy"].index.to_list() + coeff_df.loc[i_wlt, "Value"] = coeff_df.loc[i_wlt, "Value"] * dry_fraction + coeff_df.loc[i_wlt, "Unit"] = "lt/yr" + + # convert kWh/wet long ton to kWh/dry long ton + i_per_wlt = coeff_df[coeff_df["Unit"] == "2021 $ per wlt pellet"].index.to_list() + coeff_df.loc[i_per_wlt, "Value"] = coeff_df.loc[i_per_wlt, "Value"] / dry_fraction + coeff_df.loc[i_per_wlt, "Unit"] = "USD/lt" + coeff_df.loc[i_per_wlt, "Type"] = "variable opex/pellet" + + # convert units to standardized units + unit_rename_mapper = {} + old_units = list(set(coeff_df["Unit"].to_list())) + for ii, old_unit in enumerate(old_units): + if "2021 $" in old_unit: + old_unit = old_unit.replace("2021 $", "USD") + if "mlt" in old_unit: # millon long tons + old_unit = old_unit.replace("mlt", "(2240*Mlb)") + if "lt" in old_unit: # dry long tons + old_unit = old_unit.replace("lt", "(2240*lb)") + if "mt" in old_unit: # metric tonne + old_unit = old_unit.replace("mt", "t") + if "wt %" in old_unit: + old_unit = old_unit.replace("wt %", "unitless") + if "deg N" in old_unit or "deg E" in old_unit: + old_unit = "deg" + unit_rename_mapper.update({old_units[ii]: old_unit}) + coeff_df["Unit"] = coeff_df["Unit"].replace(to_replace=unit_rename_mapper) + + convert_units_dict = { + "USD/(2240*lb)": "USD/t", + "(2240*Mlb)": "t", + "(2240*lb)/yr": "t/yr", + } + for i in coeff_df.index.to_list(): + if coeff_df.loc[i, "Unit"] in convert_units_dict: + current_units = coeff_df.loc[i, "Unit"] + desired_units = convert_units_dict[current_units] + coeff_df.loc[i, "Value"] = units.convert_units( + coeff_df.loc[i, "Value"], current_units, desired_units + ) + coeff_df.loc[i, "Unit"] = desired_units + + return coeff_df + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + ref_Oreproduced = self.coeff_df[self.coeff_df["Name"] == "Ore pellets produced"][ + "Value" + ].values + + # get the capital cost for the reference design + ref_tot_capex = self.coeff_df[self.coeff_df["Type"] == "capital"]["Value"].sum() + ref_capex_per_anual_processed_ore = ref_tot_capex / ref_Oreproduced # USD/t/yr + ref_capex_per_processed_ore = ref_capex_per_anual_processed_ore * 8760 # USD/t/hr + tot_capex_2021USD = inputs["system_capacity"] * ref_capex_per_processed_ore # USD + + # get the variable om cost based on the total pellet production + total_pellets_produced = sum(inputs["iron_ore_out"]) + var_om_2021USD = ( + self.coeff_df[self.coeff_df["Type"] == "variable opex/pellet"]["Value"] + * total_pellets_produced + ).sum() + + # adjust costs to cost year + outputs["CapEx"] = inflate_cpi(tot_capex_2021USD, 2021, self.config.cost_year) + outputs["VarOpEx"] = inflate_cpi(var_om_2021USD, 2021, self.config.cost_year) diff --git a/h2integrate/converters/iron/martin_mine_perf_model.py b/h2integrate/converters/iron/martin_mine_perf_model.py new file mode 100644 index 000000000..8fb48f0af --- /dev/null +++ b/h2integrate/converters/iron/martin_mine_perf_model.py @@ -0,0 +1,252 @@ +import numpy as np +import pandas as pd +import openmdao.api as om +from attrs import field, define +from openmdao.utils import units + +from h2integrate import ROOT_DIR +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import contains + + +@define +class MartinIronMinePerformanceConfig(BaseConfig): + """Configuration class for MartinIronMinePerformanceComponent. + + Attributes: + taconite_pellet_type (str): type of taconite pellets, options are "std" or "drg". + mine (str): name of ore mine. Must be "Hibbing", "Northshore", "United", + "Minorca" or "Tilden" + max_ore_production_rate_tonnes_per_hr (float): capacity of the pellet plant + in units of metric tonnes of pellets produced per hour. + """ + + max_ore_production_rate_tonnes_per_hr: float = field() + + taconite_pellet_type: str = field( + converter=(str.lower, str.strip), validator=contains(["std", "drg"]) + ) + + mine: str = field(validator=contains(["Hibbing", "Northshore", "United", "Minorca", "Tilden"])) + + +class MartinIronMinePerformanceComponent(om.ExplicitComponent): + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + self.config = MartinIronMinePerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=True, + ) + + self.add_input( + "system_capacity", + val=self.config.max_ore_production_rate_tonnes_per_hr, + units="t/h", + desc="Annual ore production capacity", + ) + + # Add electricity input, default to 0 --> set using feedstock component + self.add_input( + "electricity_in", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity available for iron ore processing", + ) + + # Add crude ore input, default to 0 --> set using feedstock component + self.add_input( + "crude_ore_in", + val=0.0, + shape=n_timesteps, + units="t/h", + desc="Crude ore input", + ) + + # Default the ore demand input as the rated capacity + self.add_input( + "iron_ore_demand", + val=self.config.max_ore_production_rate_tonnes_per_hr, + shape=n_timesteps, + units="t/h", + desc="Iron ore demand for iron mine", + ) + + self.add_output( + "crude_ore_consumed", + val=0.0, + shape=n_timesteps, + units="t/h", + desc="Crude ore consumed", + ) + + self.add_output( + "electricity_consumed", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity consumed", + ) + + self.add_output( + "iron_ore_out", + val=0.0, + shape=n_timesteps, + units="t/h", + desc="Iron ore pellets produced", + ) + + self.add_output( + "total_iron_ore_produced", + val=1.0, + units="t/year", + desc="Total iron ore pellets produced anually", + ) + + coeff_fpath = ( + ROOT_DIR / "simulation" / "technologies" / "iron" / "martin_ore" / "perf_coeffs.csv" + ) + # martin ore performance model + coeff_df = pd.read_csv(coeff_fpath, index_col=0) + self.coeff_df = self.format_coeff_df(coeff_df, self.config.mine) + + def format_coeff_df(self, coeff_df, mine): + """Update the coefficient dataframe such that values are adjusted to standard units + and units are compatible with OpenMDAO units. Also filter the dataframe to include + only the data necessary for a given mine and pellet type. + + Args: + coeff_df (pd.DataFrame): cost coefficient dataframe. + mine (str): name of mine that ore is extracted from. + + Returns: + pd.DataFrame: cost coefficient dataframe + """ + # only include data for the given product + coeff_df = coeff_df[ + coeff_df["Product"] == f"{self.config.taconite_pellet_type}_taconite_pellets" + ] + data_cols = ["Name", "Type", "Coeff", "Unit", mine] + coeff_df = coeff_df[data_cols] + coeff_df = coeff_df.rename(columns={mine: "Value"}) + + # convert wet to dry + moisture_percent = 2.0 + dry_fraction = (100 - moisture_percent) / 100 + + # convert wet long tons per year to dry long tons per year + i_wlt = coeff_df[coeff_df["Unit"] == "wltpy"].index.to_list() + coeff_df.loc[i_wlt, "Value"] = coeff_df.loc[i_wlt, "Value"] * dry_fraction + coeff_df.loc[i_wlt, "Unit"] = "lt/yr" + + # convert kWh/wet long ton to kWh/dry long ton + i_per_wlt = coeff_df[coeff_df["Unit"] == "kWh/LT pellet"].index.to_list() + coeff_df.loc[i_per_wlt, "Value"] = coeff_df.loc[i_per_wlt, "Value"] / dry_fraction + coeff_df.loc[i_per_wlt, "Unit"] = "kWh/lt" + coeff_df.loc[i_per_wlt, "Type"] = "energy use/pellet" + + # convert units to standardized units + unit_rename_mapper = {} + old_units = list(set(coeff_df["Unit"].to_list())) + for ii, old_unit in enumerate(old_units): + if "kWh" in old_unit: + old_unit = old_unit.replace("kWh", "(kW*h)") + if "mlt" in old_unit: # millon long tons + old_unit = old_unit.replace("mlt", "(2240*Mlb)") + if "lt" in old_unit: # dry long tons + old_unit = old_unit.replace("lt", "(2240*lb)") + if "mt" in old_unit: # metric tonne + old_unit = old_unit.replace("mt", "t") + if "wt %" in old_unit: + old_unit = old_unit.replace("wt %", "unitless") + if "deg N" in old_unit or "deg E" in old_unit: + old_unit = "deg" + unit_rename_mapper.update({old_units[ii]: old_unit}) + coeff_df["Unit"] = coeff_df["Unit"].replace(to_replace=unit_rename_mapper) + + convert_units_dict = { + "(kW*h)/(2240*lb)": "(kW*h)/t", + "(2240*Mlb)": "t", + "(2240*lb)/yr": "t/yr", + } + for i in coeff_df.index.to_list(): + if coeff_df.loc[i, "Unit"] in convert_units_dict: + current_units = coeff_df.loc[i, "Unit"] + desired_units = convert_units_dict[current_units] + coeff_df.loc[i, "Value"] = units.convert_units( + coeff_df.loc[i, "Value"], current_units, desired_units + ) + coeff_df.loc[i, "Unit"] = desired_units + + return coeff_df + + def compute(self, inputs, outputs): + # calculate crude ore required per amount of ore processed + ref_Orefeedstock = self.coeff_df[self.coeff_df["Name"] == "Crude ore processed"][ + "Value" + ].values + ref_Oreproduced = self.coeff_df[self.coeff_df["Name"] == "Ore pellets produced"][ + "Value" + ].values + crude_ore_usage_per_processed_ore = ref_Orefeedstock / ref_Oreproduced + + # energy consumption based on ore production + energy_usage_per_processed_ore = self.coeff_df[ + self.coeff_df["Type"] == "energy use/pellet" + ]["Value"].sum() + # check that units work out + energy_usage_unit = self.coeff_df[self.coeff_df["Type"] == "energy use/pellet"][ + "Unit" + ].values[0] + energy_usage_per_processed_ore = units.convert_units( + energy_usage_per_processed_ore, f"(t/h)*({energy_usage_unit})", "(kW*h)/h" + ) + + # calculate max inputs/outputs based on rated capacity + max_crude_ore_consumption = inputs["system_capacity"] * crude_ore_usage_per_processed_ore + max_energy_consumption = inputs["system_capacity"] * energy_usage_per_processed_ore + + # iron ore demand, saturated at maximum rated system capacity + processed_ore_demand = np.where( + inputs["iron_ore_demand"] > inputs["system_capacity"], + inputs["system_capacity"], + inputs["iron_ore_demand"], + ) + + # available feedstocks, saturated at maximum system feedstock consumption + crude_ore_available = np.where( + inputs["crude_ore_in"] > max_crude_ore_consumption, + max_crude_ore_consumption, + inputs["crude_ore_in"], + ) + + energy_available = np.where( + inputs["electricity_in"] > max_energy_consumption, + max_energy_consumption, + inputs["electricity_in"], + ) + + # how much output can be produced from each of the feedstocks + processed_ore_from_electricity = energy_available / energy_usage_per_processed_ore + processed_ore_from_crude_ore = crude_ore_available / crude_ore_usage_per_processed_ore + + # output is minimum between available feedstocks and output demand + processed_ore_production = np.minimum.reduce( + [processed_ore_from_crude_ore, processed_ore_from_electricity, processed_ore_demand] + ) + + # energy consumption + energy_consumed = processed_ore_production * energy_usage_per_processed_ore + + # crude ore consumption + crude_ore_consumption = processed_ore_production * crude_ore_usage_per_processed_ore + + outputs["iron_ore_out"] = processed_ore_production + outputs["total_iron_ore_produced"] = np.sum(processed_ore_production) + outputs["electricity_consumed"] = energy_consumed + outputs["crude_ore_consumed"] = crude_ore_consumption diff --git a/h2integrate/converters/iron/test/test_martin_mine.py b/h2integrate/converters/iron/test/test_martin_mine.py new file mode 100644 index 000000000..a69ad025f --- /dev/null +++ b/h2integrate/converters/iron/test/test_martin_mine.py @@ -0,0 +1,95 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate import EXAMPLE_DIR +from h2integrate.core.inputs.validation import load_driver_yaml +from h2integrate.converters.iron.martin_mine_cost_model import MartinIronMineCostComponent +from h2integrate.converters.iron.martin_mine_perf_model import MartinIronMinePerformanceComponent + + +@fixture +def iron_ore_config_martin_om(): + shared_params = { + "mine": "Northshore", + "taconite_pellet_type": "drg", + "max_ore_production_rate_tonnes_per_hr": 516.0497610311598, + } + tech_config = { + "model_inputs": { + "shared_parameters": shared_params, + } + } + return tech_config + + +@fixture +def plant_config(): + plant_config = { + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": 8760, + "dt": 3600, + }, + }, + "finance_parameters": { + "cost_adjustment_parameters": { + "cost_year_adjustment_inflation": 0.025, + "target_dollar_year": 2022, + } + }, + } + return plant_config + + +@fixture +def driver_config(): + driver_config = load_driver_yaml(EXAMPLE_DIR / "21_iron_mn_to_il" / "driver_config.yaml") + return driver_config + + +def test_baseline_iron_ore_costs(plant_config, driver_config, iron_ore_config_martin_om, subtests): + martin_ore_capex = 1221599018.626594 + martin_ore_fixed_om = 0.0 + + prob = om.Problem() + iron_ore_perf = MartinIronMinePerformanceComponent( + plant_config=plant_config, + tech_config=iron_ore_config_martin_om, + driver_config=driver_config, + ) + + iron_ore_cost = MartinIronMineCostComponent( + plant_config=plant_config, + tech_config=iron_ore_config_martin_om, + driver_config=driver_config, + ) + + prob.model.add_subsystem("ore_perf", iron_ore_perf, promotes=["*"]) + prob.model.add_subsystem("ore_cost", iron_ore_cost, promotes=["*"]) + prob.setup() + + ore_annual_production_capacity_tpy = 4520595.90663296 # from old model + + annual_crude_ore = 25.0 * 1e6 + annual_electricity = 1030.0 * 1e6 + ore_rated_capacity = 516.0497610311598 + + prob.set_val("ore_perf.electricity_in", [annual_electricity / 8760] * 8760, units="kW") + prob.set_val("ore_perf.crude_ore_in", [annual_crude_ore / 8760] * 8760, units="t/h") + prob.set_val("ore_perf.iron_ore_demand", [ore_rated_capacity] * 8760, units="t/h") + + prob.run_model() + + with subtests.test("Annual Ore"): + annual_ore_produced = np.sum(prob.get_val("ore_perf.iron_ore_out", units="t/h")) + assert pytest.approx(annual_ore_produced, rel=1e-6) == ore_annual_production_capacity_tpy + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("ore_cost.CapEx")[0], rel=1e-6) == martin_ore_capex + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("ore_cost.OpEx")[0], rel=1e-6) == martin_ore_fixed_om + with subtests.test("VarOpEx"): + varopex_per_t = prob.get_val("ore_cost.VarOpEx")[0] / annual_ore_produced + assert pytest.approx(varopex_per_t, abs=0.5) == 97.76558025830259 diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index ba7eaa940..b84ed2b85 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -60,6 +60,8 @@ from h2integrate.converters.solar.atb_res_com_pv_cost import ATBResComPVCostModel from h2integrate.converters.solar.atb_utility_pv_cost import ATBUtilityPVCostModel from h2integrate.resource.wind.nrel_developer_wtk_api import WTKNRELDeveloperAPIWindResource +from h2integrate.converters.iron.martin_mine_cost_model import MartinIronMineCostComponent +from h2integrate.converters.iron.martin_mine_perf_model import MartinIronMinePerformanceComponent from h2integrate.converters.methanol.smr_methanol_plant import ( SMRMethanolPlantCostModel, SMRMethanolPlantFinanceModel, @@ -155,6 +157,8 @@ "iron_mine_cost": IronMineCostComponent, "iron_plant_performance": IronPlantPerformanceComponent, "iron_plant_cost": IronPlantCostComponent, + "iron_mine_performance_martin": MartinIronMinePerformanceComponent, # standalone model + "iron_mine_cost_martin": MartinIronMineCostComponent, # standalone model "reverse_osmosis_desalination_performance": ReverseOsmosisPerformanceModel, "reverse_osmosis_desalination_cost": ReverseOsmosisCostModel, "simple_ammonia_performance": SimpleAmmoniaPerformanceModel, diff --git a/h2integrate/transporters/pipe.py b/h2integrate/transporters/pipe.py index f0aeb5165..524e68622 100644 --- a/h2integrate/transporters/pipe.py +++ b/h2integrate/transporters/pipe.py @@ -9,7 +9,15 @@ class PipePerformanceModel(om.ExplicitComponent): def initialize(self): self.options.declare( "transport_item", - values=["hydrogen", "co2", "methanol", "ammonia", "nitrogen", "natural_gas"], + values=[ + "hydrogen", + "co2", + "methanol", + "ammonia", + "nitrogen", + "natural_gas", + "crude_ore", + ], ) def setup(self): diff --git a/pyproject.toml b/pyproject.toml index fabbfb467..938309f5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,6 +56,7 @@ dependencies = [ "ruamel.yaml", "scipy", "wombat>=0.11", + "geopy", "openmeteo-requests", "geopy", "pyDOE3", From 229a8c0b6c099db21852979325298bf0884e889b Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Thu, 20 Nov 2025 15:45:44 -0700 Subject: [PATCH 61/79] Ability to sweep sites in design of experiments (DOEs) (#336) * attempted adding latitude and longitude as inputs * made example for lat lon sweep * got sweeping sites to work in example 22 * added test for new example * added solar resource file for example 22 * added lat and lon to river resource to prevent errors * added subtest for example 15 on resource filepaths * added logic on whether or not to change resource location * added new approach for resolving complex logic to handle edge-cases * minor updates * updated openmeteo wind api wrapper to take lat/lon as inputs * updated doc page and changelog [skip ci] * Minor changes * minor changes based on feedback * updated resource variable to determine whether to update resource data * updated example 22 run script to write csv summary of sql file * minor comments added to resource_base * updated docstring in resource base * edgecase bugfix in resource_base * actually fixed edgecase bug --------- Co-authored-by: kbrunik <102193481+kbrunik@users.noreply.github.com> Co-authored-by: John Jasa --- CHANGELOG.md | 1 + .../features_not_currently_implemented.md | 1 + .../plant_config.yaml | 3 +- examples/22_site_doe/22_solar_site_doe.yaml | 7 + examples/22_site_doe/driver_config.yaml | 40 + examples/22_site_doe/plant_config.yaml | 83 + examples/22_site_doe/run_site_doe.py | 34 + examples/22_site_doe/site_solar_doe.csv | 5 + examples/22_site_doe/tech_config.yaml | 31 + .../converters/solar/test/test_pysam_solar.py | 88 + h2integrate/core/h2integrate_model.py | 21 +- h2integrate/resource/resource_base.py | 202 +- h2integrate/resource/river.py | 4 + .../solar/nrel_developer_goes_api_base.py | 56 +- .../resource/wind/nrel_developer_wtk_api.py | 44 +- h2integrate/resource/wind/openmeteo_wind.py | 43 +- ...7_2012_goes_aggregated_v4_60min_utc_tz.csv | 8763 +++++++++++++++++ tests/h2integrate/test_all_examples.py | 65 + 18 files changed, 9332 insertions(+), 159 deletions(-) create mode 100644 examples/22_site_doe/22_solar_site_doe.yaml create mode 100644 examples/22_site_doe/driver_config.yaml create mode 100644 examples/22_site_doe/plant_config.yaml create mode 100644 examples/22_site_doe/run_site_doe.py create mode 100644 examples/22_site_doe/site_solar_doe.csv create mode 100644 examples/22_site_doe/tech_config.yaml create mode 100644 resource_files/solar/35.2018863_-101.945027_2012_goes_aggregated_v4_60min_utc_tz.csv diff --git a/CHANGELOG.md b/CHANGELOG.md index b71df4598..e9c22c45b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ - Improved the readability of the postprocessing printout - Split out cost models from coupled hydrogen storage performance and cost model - Added storage auto-sizing performance model based on storage sizing calculations that existed in the coupled hydrogen storage performance and cost model +- Added ability for latitude and longitude to be design variables in design sweep - Move geologic hydrogen models into specific geoh2 subsurface converters - Added standalone iron mine performance and cost model diff --git a/docs/developer_guide/features_not_currently_implemented.md b/docs/developer_guide/features_not_currently_implemented.md index d64b8ee0b..9f3b87183 100644 --- a/docs/developer_guide/features_not_currently_implemented.md +++ b/docs/developer_guide/features_not_currently_implemented.md @@ -10,3 +10,4 @@ We are listing them here: - detailing the required inputs and outputs for different model types (e.g. electrolyzer) so that users can more easily add their own subsystems - splitters and combiners for when resources are used or produced by multiple components - simulating different timespans than one year at hourly timesteps (8760s) +- specifying resource locations that differ within a given plant (i.e. using one lat/lon pair for solar and another lat/lon for wind) when running a design sweep that includes latitude and longitude as design variables. Currently, sweeping locations can only be done if the location is the same for each resource model. diff --git a/examples/15_wind_solar_electrolyzer/plant_config.yaml b/examples/15_wind_solar_electrolyzer/plant_config.yaml index 60e96866e..eacb0fb2d 100644 --- a/examples/15_wind_solar_electrolyzer/plant_config.yaml +++ b/examples/15_wind_solar_electrolyzer/plant_config.yaml @@ -12,19 +12,18 @@ site: latitude: 35.2018863 longitude: -101.945027 resource_year: 2012 + solar_resource: resource_model: "goes_aggregated_solar_v4_api" resource_parameters: resource_year: 2013 resource_dir: "../11_hybrid_energy_plant/tech_inputs/weather/solar" resource_filename: "30.6617_-101.7096_psmv3_60_2013.csv" - # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. # this will naturally grow as we mature the interconnected tech technology_interconnections: [ - # ["hopp", "electrolyzer", "electricity", "cable"], ["wind", "combiner", "electricity", "cable"], #source_tech, dest_tech, transport_item, transport_type = connection ["solar", "combiner", "electricity", "cable"], ["combiner", "electrolyzer", "electricity", "cable"], diff --git a/examples/22_site_doe/22_solar_site_doe.yaml b/examples/22_site_doe/22_solar_site_doe.yaml new file mode 100644 index 000000000..18a46333b --- /dev/null +++ b/examples/22_site_doe/22_solar_site_doe.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "Run DOE over solar capacities and site locations" + +driver_config: "driver_config.yaml" +technology_config: "tech_config.yaml" +plant_config: "plant_config.yaml" diff --git a/examples/22_site_doe/driver_config.yaml b/examples/22_site_doe/driver_config.yaml new file mode 100644 index 000000000..5a0f8dabb --- /dev/null +++ b/examples/22_site_doe/driver_config.yaml @@ -0,0 +1,40 @@ +description: Driver config for CSVGen design of experiments +name: driver_config + +general: + folder_output: ex_22_out + create_om_reports: false +driver: + design_of_experiments: + flag: true + debug_print: true + generator: "csvgen" + filename: "site_solar_doe.csv" + run_parallel: false +design_variables: + solar: + capacity_kWdc: + flag: true + lower: 5000.0 + upper: 75000.0 + units: "kW" + site: + latitude: + flag: True + units: "deg" + lower: -90.0 + upper: 90.0 + longitude: + flag: True + units: "deg" + lower: -180.0 + upper: 180.0 + +objective: + name: finance_subgroup_electricity.LCOE_optimistic +recorder: + file: cases.sql + overwrite_recorder: true + flag: true + includes: ['*'] + excludes: ['*wind_resource*'] diff --git a/examples/22_site_doe/plant_config.yaml b/examples/22_site_doe/plant_config.yaml new file mode 100644 index 000000000..d7e1fd0c5 --- /dev/null +++ b/examples/22_site_doe/plant_config.yaml @@ -0,0 +1,83 @@ +name: "plant_config" +description: "This plant uses solar resource data from 2012" + +site: + latitude: 34.22 + longitude: -102.75 + year: 2012 + + resources: + solar_resource: + resource_model: "goes_aggregated_solar_v4_api" + resource_parameters: + resource_year: 2012 + use_fixed_resource_location: False #set to False since sweeping sites + +resource_to_tech_connections: [ + # connect the solar resource to the solar technology + ['solar_resource', 'solar', 'solar_resource_data'], +] + +plant: + plant_life: 30 + simulation: + n_timesteps: 8760 + dt: 3600 + timezone: 0 + +finance_parameters: + finance_groups: + optimistic: + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.0615 + debt_equity_ratio: 2.82 + property_tax_and_insurance: 0.015 + total_income_tax_rate: 0.2574 + capital_gains_tax_rate: 0.15 + sales_tax_rate: 0.00 + debt_interest_rate: 0.0439 + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan" + loan_period_if_used: 0 # Not used for "Revolving debt" + cash_onhand_months: 1 + admin_expense: 0.00 # percent of sales + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years + refurb: [0.] + conservative: + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.0948 + debt_equity_ratio: 1.72 + property_tax_and_insurance: 0.015 + total_income_tax_rate: 0.2574 + capital_gains_tax_rate: 0.15 + sales_tax_rate: 0.00 + debt_interest_rate: 0.046 + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan" + loan_period_if_used: 0 # Not used for "Revolving debt" + cash_onhand_months: 1 + admin_expense: 0.00 # percent of sales + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 5 + refurb: [0.] + + finance_subgroups: + electricity: + commodity: "electricity" + commodity_stream: "solar" + finance_groups: ["optimistic", "conservative"] + technologies: ["solar"] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + target_dollar_year: 2022 diff --git a/examples/22_site_doe/run_site_doe.py b/examples/22_site_doe/run_site_doe.py new file mode 100644 index 000000000..e2a7e419b --- /dev/null +++ b/examples/22_site_doe/run_site_doe.py @@ -0,0 +1,34 @@ +import os +from pathlib import Path + +import openmdao.api as om + +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +os.chdir(Path(__file__).parent) + +# Create an H2I model +h2i = H2IntegrateModel("22_solar_site_doe.yaml") + +# Run the model +h2i.run() + +# Post-process the results, save the .sql results to a .csv file +h2i.post_process(summarize_sql=False) + +# Specify the filepath to the sql file, the folder and filename are in the driver_config +sql_fpath = Path(__file__).parent / "ex_22_out" / "cases.sql" + +# load the cases +cr = om.CaseReader(sql_fpath) + +cases = list(cr.get_cases()) + +# iterate through cases and get the design variables and object +for ci, case in enumerate(cases): + design_vars = case.get_design_vars() + objectives = case.get_objectives() + print(f"Case {ci}:") + print(f"\t design variables: {design_vars}") + print(f"\t objectives: {objectives}") diff --git a/examples/22_site_doe/site_solar_doe.csv b/examples/22_site_doe/site_solar_doe.csv new file mode 100644 index 000000000..73dbd0f25 --- /dev/null +++ b/examples/22_site_doe/site_solar_doe.csv @@ -0,0 +1,5 @@ +site.latitude,site.longitude,solar.capacity_kWdc +35.2018863,-101.945027,25000.0 +35.2018863,-101.945027,50000.0 +34.22,-102.75,25000.0 +34.22,-102.75,50000.0 diff --git a/examples/22_site_doe/tech_config.yaml b/examples/22_site_doe/tech_config.yaml new file mode 100644 index 000000000..fe88833af --- /dev/null +++ b/examples/22_site_doe/tech_config.yaml @@ -0,0 +1,31 @@ +name: "technology_config" +description: "This plant produces electricity from a solar-PV system" + +technologies: + solar: + performance_model: + model: "pysam_solar_plant_performance" + cost_model: + model: "atb_utility_pv_cost" + model_inputs: + performance_parameters: + pv_capacity_kWdc: 400000 + dc_ac_ratio: 1.34 + create_model_from: "new" + tilt_angle_func: "lat-func" + pysam_options: + SystemDesign: + gcr: 0.3 + array_type: 2 + bifaciality: 0.65 + inv_eff: 96.0 + losses: 14.6 + module_type: 1 + azimuth: 180 + rotlim: 45 + SolarResource: + albedo_default: 0.2 + cost_parameters: + capex_per_kWac: 1367 #2022 costs from ATB 2024 v3 + opex_per_kWac_per_year: 24 #2022 costs from ATB 2024 v3 + cost_year: 2022 diff --git a/h2integrate/converters/solar/test/test_pysam_solar.py b/h2integrate/converters/solar/test/test_pysam_solar.py index 371b83a51..5f48c1e5c 100644 --- a/h2integrate/converters/solar/test/test_pysam_solar.py +++ b/h2integrate/converters/solar/test/test_pysam_solar.py @@ -112,6 +112,94 @@ def test_pvwatts_singleowner_notilt( assert pytest.approx(capacity_kWdc, rel=1e-6) == pv_design_dict["pv_capacity_kWdc"] +def test_pvwatts_singleowner_notilt_different_site(basic_pysam_options, plant_config, subtests): + """Test `PYSAMSolarPlantPerformanceModel` with a basic input scenario: + + - `pysam_options` is provided + - `create_model_from` is set to 'default' + - `config_name` is 'PVWattsSingleOwner', this is used to create the starting system model + because `create_model_from` is default. + - `tilt_angle_func` is "none" and tilt is provided (in two separate places) as zero. + """ + + driver_config = { + "driver": {"design_of_experiments": {"flag": True}}, + "design_variables": { + "site": { + "latitude": {}, + "longitude": {}, + } + }, + } + plant_config["site"].update({"latitude": 35.2018863, "longitude": -101.945027}) + + basic_pysam_options["SystemDesign"].update({"tilt": 0.0}) + pv_design_dict = { + "pv_capacity_kWdc": 250000.0, + "dc_ac_ratio": 1.23, + "create_model_from": "default", + "config_name": "PVWattsSingleOwner", + "tilt": 0.0, + "tilt_angle_func": "none", # "lat-func", + "pysam_options": basic_pysam_options, + } + + tech_config_dict = { + "model_inputs": { + "performance_parameters": pv_design_dict, + } + } + + solar_resource_dict = { + "resource_year": 2012, + "resource_dir": None, + "resource_filename": "35.2018863_-101.945027_psmv3_60_2012.csv", + "use_fixed_resource_location": False, + } + + prob = om.Problem() + solar_resource = GOESAggregatedSolarAPI( + plant_config=plant_config, + resource_config=solar_resource_dict, + driver_config=driver_config, + ) + comp = PYSAMSolarPlantPerformanceModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("solar_resource", solar_resource, promotes=["*"]) + prob.model.add_subsystem("pv_perf", comp, promotes=["*"]) + prob.setup() + + prob.model.set_val("solar_resource.latitude", 34.22) + prob.model.set_val("solar_resource.longitude", -102.75) + prob.run_model() + + aep = prob.get_val("pv_perf.annual_energy")[0] + capacity_kWac = prob.get_val("pv_perf.capacity_kWac")[0] + capacity_kWdc = prob.get_val("pv_perf.capacity_kWdc")[0] + + with subtests.test("Got updated site lat"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lat", 0) + assert pytest.approx(resource_lat, rel=1e-3) == 34.21 + + with subtests.test("Got updated site lon"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lon", 0) + assert pytest.approx(resource_lat, rel=1e-3) == -102.74 + + with subtests.test("AEP"): + assert pytest.approx(aep, rel=1e-6) == 553283237 + + with subtests.test("Capacity in kW-AC"): + assert ( + pytest.approx(capacity_kWac, rel=1e-6) == capacity_kWdc / pv_design_dict["dc_ac_ratio"] + ) + + with subtests.test("Capacity in kW-DC"): + assert pytest.approx(capacity_kWdc, rel=1e-6) == pv_design_dict["pv_capacity_kWdc"] + + def test_pvwatts_singleowner_withtilt( basic_pysam_options, solar_resource_dict, plant_config, subtests ): diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index f300665b7..f678a20ac 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -295,9 +295,9 @@ def create_site_model(self): # Create a site-level component site_config = self.plant_config.get("site", {}) site_component = om.IndepVarComp() - site_component.add_output("latitude", val=site_config.get("latitude", 0.0)) - site_component.add_output("longitude", val=site_config.get("longitude", 0.0)) - site_component.add_output("elevation_m", val=site_config.get("elevation_m", 0.0)) + site_component.add_output("latitude", val=site_config.get("latitude", 0.0), units="deg") + site_component.add_output("longitude", val=site_config.get("longitude", 0.0), units="deg") + site_component.add_output("elevation_m", val=site_config.get("elevation_m", 0.0), units="m") # Add boundaries if they exist site_config = self.plant_config.get("site", {}) @@ -320,9 +320,11 @@ def create_site_model(self): resource_config=resource_inputs, driver_config=self.driver_config, ) - site_group.add_subsystem(resource_name, resource_component) + site_group.add_subsystem( + resource_name, resource_component, promotes_inputs=["latitude", "longitude"] + ) - self.model.add_subsystem("site", site_group, promotes=["*"]) + self.model.add_subsystem("site", site_group) def create_plant_model(self): """ @@ -353,6 +355,13 @@ def create_technology_models(self): combined_performance_and_cost_models = ["hopp", "h2_storage", "wombat", "iron"] + if any(tech == "site" for tech in self.technology_config["technologies"]): + msg = ( + "'site' is an invalid technology name and is reserved for top-level " + "variables. Please change the technology name to something else." + ) + raise NameError(msg) + # Create a technology group for each technology for tech_name, individual_tech_config in self.technology_config["technologies"].items(): perf_model = individual_tech_config.get("performance_model", {}).get("model") @@ -968,7 +977,7 @@ def connect_technologies(self): resource_name, tech_name, variable = connection # Connect the resource output to the technology input - self.model.connect(f"{resource_name}.{variable}", f"{tech_name}.{variable}") + self.model.connect(f"site.{resource_name}.{variable}", f"{tech_name}.{variable}") # connect outputs of the technology models to the cost and finance models of the # same name if the cost and finance models are not None diff --git a/h2integrate/resource/resource_base.py b/h2integrate/resource/resource_base.py index fc4ca2ed6..fb881bffe 100644 --- a/h2integrate/resource/resource_base.py +++ b/h2integrate/resource/resource_base.py @@ -1,5 +1,6 @@ from pathlib import Path +import numpy as np import openmdao.api as om from attrs import field, define @@ -35,6 +36,12 @@ class ResourceBaseAPIConfig(BaseConfig): timezone (float | int): timezone to output data in. May be used to determine whether to download data in UTC or local timezone. This should be populated by the value in sim_config['timezone'] + use_fixed_resource_location (bool): Whether to update resource data in the `compute()` + method. Set to False if the site location is being swept, set to True if the + resource data should not be updated to the location + (plant_config['site']['latitude'], plant_config['site']['longitude']). Set to True + to reduce computation time during optimizations or design sweeps if site location is + not being swept. Defaults to True. Attributes: dataset_desc (str): description of the dataset, used in file naming. @@ -48,11 +55,28 @@ class ResourceBaseAPIConfig(BaseConfig): timezone: int | float = field() + use_fixed_resource_location: bool = field(default=True, kw_only=True) dataset_desc: str = field(default="default", init=False) resource_type: str = field(default="none", init=False) class ResourceBaseAPIModel(om.ExplicitComponent): + """Base model for downloading resource data from API calls or loading resource + data for a single site from a file. + + Attributes + resource_data (dict | None): resource data that is created in setup() method. + dt (int): timestep in seconds. + config (object): configuration class that inherits ResourceBaseAPIConfig. + + Inputs: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + + Outputs: + dict: dictionary of resource data. + """ + def initialize(self): self.options.declare("plant_config", types=dict) self.options.declare("resource_config", types=dict) @@ -60,27 +84,69 @@ def initialize(self): def setup(self): # create attributes that will be commonly used for resource classes. - self.site_config = self.options["plant_config"]["site"] - self.sim_config = self.options["plant_config"]["plant"]["simulation"] - self.n_timesteps = int(self.sim_config["n_timesteps"]) - self.dt = self.sim_config["dt"] - self.start_time = self.sim_config["start_time"] + self.resource_data = None + self.resource_site = [self.config.latitude, self.config.longitude] + self.dt = self.options["plant_config"]["plant"]["simulation"]["dt"] + self.add_input("latitude", self.config.latitude, units="deg") + self.add_input("longitude", self.config.longitude, units="deg") + + def helper_setup_method(self): + """ + Prepares and configures resource specifications for the resource API based on plant + and site configuration options. - def create_filename(self): + This method extracts relevant configuration details from the `self.options` dictionary, + pulls values for latitude, longitude, resource directory and timezone from the + ``site`` section of ``plant_config`` if these parameters are not specified in the + ``resource_config`` and returns the updated resource specifications dictionary. + + Returns: + dict: The resource specifications dictionary with defaults set for latitude, + longitude, resource_dir, and timezone. + """ + site_config = self.options["plant_config"]["site"] + sim_config = self.options["plant_config"]["plant"]["simulation"] + self.dt = sim_config["dt"] + + # create the input dictionary for the resource API config + resource_specs = self.options["resource_config"] + # set the default latitude, longitude, and resource_year from the site_config + resource_specs.setdefault("latitude", site_config["latitude"]) + resource_specs.setdefault("longitude", site_config["longitude"]) + # set the default resource_dir from a directory that can be + # specified in site_config['resources']['resource_dir'] + resource_specs.setdefault( + "resource_dir", site_config.get("resources", {}).get("resource_dir", None) + ) + + # default timezone to UTC because 'timezone' was removed from the plant config schema + resource_specs.setdefault("timezone", sim_config.get("timezone", 0)) + + return resource_specs + + def create_filename(self, latitude, longitude): """Create default filename to save downloaded data to. Suggested filename formatting is: "{latitude}_{longitude}_{resource_year}_{dataset_desc}_{interval}min_{tz_desc}_tz.csv" where "tz_desc" is "utc" if the timezone is zero, or "local" otherwise. + Args: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + Returns: str: filename for resource data to be saved to or loaded from. """ raise NotImplementedError("This method should be implemented in a subclass.") - def create_url(self): + def create_url(self, latitude, longitude): """Create url for data download. + Args: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + Returns: str: url to use for API call. """ @@ -118,18 +184,16 @@ def load_data(self, fpath): """ raise NotImplementedError("This method should be implemented in a subclass.") - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - # resource data should not be modified after setup(), - # so this method can be empty - pass - - def get_data(self): + def get_data(self, latitude, longitude, first_call=True): """Get resource data to handle any of the expected inputs. This method does the following: + 0) If this is not the first resource call of the simulation, check if latitude and longitude + inputs are different than the previous latitude and longitude values. If resource data + has not been already loaded for the, continue to Step 1. 1) Check if resource data was input. If not, continue to Step 2. 2) Get valid resource_dir with the method `check_resource_dir()` - 3) Create a filename if resource_filename was not input with the method `create_filename()`. - Otherwise, use resource_filename as the filename. + 3) Create a filename if resource_filename was not input or if the site location changed + with the method `create_filename()`. Otherwise, use resource_filename as the filename. 4) If the resulting resource_dir and filename from Steps 2 and 3 make a valid filepath, load data using `load_data()`. Otherwise, continue to Step 5. 5) Create the url to download data using `create_url()` and continue to Step 6. @@ -137,6 +201,12 @@ def get_data(self): resulting resource_dir and filename from Steps 2 and 3. Continue to Step 7. 7) Load data from the file created in Step 6 using `load_data()` + Args: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + first_call (bool): True if called from `setup()` method, False if called from + `compute()` method to prevent unnecessary reloading of data. + Raises: ValueError: If data was not successfully downloaded from the API ValueError: An unexpected case was encountered in handling data @@ -144,59 +214,69 @@ def get_data(self): Returns: Any: resource data in the format expected by the subclass. """ - data = None + site_changed = False - # 1) check if user provided data + site_changed = not np.allclose([latitude, longitude], self.resource_site, atol=1e-6, rtol=0) + + # 0) If site hasn't changed and resource data has already been loaded + # just return the resource data that was loaded in the setup() method + if not site_changed and not first_call: + if self.resource_data is not None: + return self.resource_data + + # 1) check if user provided data, return that if bool(self.config.resource_data): - # check that data has correct interval and timezone - data = self.config.resource_data + return self.config.resource_data + + # check if user provided directory or filename + provided_filename = False if self.config.resource_filename == "" else True + provided_dir = False if self.config.resource_dir is None else True + + # 2) Get valid resource_dir with the method `check_resource_dir()` + if provided_dir and Path(self.config.resource_dir).parts[-1] == self.config.resource_type: + resource_dir = check_resource_dir(resource_dir=self.config.resource_dir) + else: + resource_dir = check_resource_dir( + resource_dir=self.config.resource_dir, resource_subdir=self.config.resource_type + ) + # 3) Create a filename if resource_filename was input + if provided_filename and not site_changed: + # If a filename was input, use resource_filename as the filename. + filepath = resource_dir / self.config.resource_filename + # Otherwise, create a filename with the method `create_filename()`. + else: + filename = self.create_filename(latitude, longitude) + filepath = resource_dir / filename + # 4) If the resulting resource_dir and filename from Steps 2 and 3 make a valid + # filepath, load data using `load_data()` + if filepath.is_file(): + self.filepath = filepath + data = self.load_data(filepath) return data - if data is None: - # check if user provided directory or filename - provided_filename = False if self.config.resource_filename == "" else True - provided_dir = False if self.config.resource_dir is None else True - - # 2) Get valid resource_dir with the method `check_resource_dir()` - if ( - provided_dir - and Path(self.config.resource_dir).parts[-1] == self.config.resource_type - ): - resource_dir = check_resource_dir(resource_dir=self.config.resource_dir) - else: - resource_dir = check_resource_dir( - resource_dir=self.config.resource_dir, resource_subdir=self.config.resource_type - ) - # 3) Create a filename if resource_filename was input - if provided_filename: - # If a filename was input, use resource_filename as the filename. - filepath = resource_dir / self.config.resource_filename - # Otherwise, create a filename with the method `create_filename()`. - else: - filename = self.create_filename() - filepath = resource_dir / filename - # 4) If the resulting resource_dir and filename from Steps 2 and 3 make a valid - # filepath, load data using `load_data()` - if filepath.is_file(): - self.filepath = filepath - data = self.load_data(filepath) - return data - # If the filepath (resource_dir/filename) does not exist, download data - if data is None: - self.filepath = filepath - # 5) Create the url to download data using `create_url()` and continue to Step 6. - url = self.create_url() - # 6) Download data from the url created in Step 5 and save to a filepath created from - # the resulting resource_dir and filename from Steps 2 and 3. - success = self.download_data(url, filepath) - if not success: - raise ValueError("Did not successfully download data") + self.filepath = filepath + # 5) Create the url to download data using `create_url()` and continue to Step 6. + url = self.create_url(latitude, longitude) + # 6) Download data from the url created in Step 5 and save to a filepath created from + # the resulting resource_dir and filename from Steps 2 and 3. + success = self.download_data(url, filepath) + if success: # 7) Load data from the file created in Step 6 using `load_data()` data = self.load_data(filepath) return data + if not success: + raise ValueError("Did not successfully download data") - self.filepath = filepath + raise ValueError("Unexpected situation occurred while trying to load data") - if data is None: - raise ValueError("Unexpected situation occurred while trying to load data") + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + if not self.config.use_fixed_resource_location: + # update the resource data based on the input latitude and longitude + data = self.get_data( + float(inputs["latitude"]), float(inputs["longitude"]), first_call=False + ) + # update the stored resource data and site + self.resource_site = [float(inputs["latitude"]), float(inputs["longitude"])] + self.resource_data = data + discrete_outputs[f"{self.config.resource_type}_resource_data"] = data diff --git a/h2integrate/resource/river.py b/h2integrate/resource/river.py index 6f2e3906d..2a60366a6 100644 --- a/h2integrate/resource/river.py +++ b/h2integrate/resource/river.py @@ -48,6 +48,10 @@ def initialize(self): def setup(self): # Define inputs and outputs self.config = RiverResourceConfig.from_dict(self.options["resource_config"]) + site_config = self.options["plant_config"]["site"] + + self.add_input("latitude", site_config.get("latitude", 0.0), units="deg") + self.add_input("longitude", site_config.get("longitude", 0.0), units="deg") self.add_output("discharge", shape=8760, val=0.0, units="ft**3/s") def compute(self, inputs, outputs): diff --git a/h2integrate/resource/solar/nrel_developer_goes_api_base.py b/h2integrate/resource/solar/nrel_developer_goes_api_base.py index a92f7ca9a..6dc1a0985 100644 --- a/h2integrate/resource/solar/nrel_developer_goes_api_base.py +++ b/h2integrate/resource/solar/nrel_developer_goes_api_base.py @@ -29,52 +29,23 @@ def setup(self): self.interval = int(min(self.config.valid_intervals)) # get the data dictionary - data = self.get_data() + data = self.get_data(self.config.latitude, self.config.longitude) + self.resource_data = data # add resource data dictionary as an out self.add_discrete_output( "solar_resource_data", val=data, desc="Dict of solar resource data" ) - def helper_setup_method(self): - """ - Prepares and configures resource specifications for the GOES API based on plant - and site configuration options. - - This method extracts relevant configuration details from the `self.options` dictionary, - sets default values for latitude, longitude, resource directory, and timezone if they - are not already specified, and returns the updated resource specifications dictionary. - - Returns: - dict: The resource specifications dictionary with defaults set for latitude, - longitude, resource_dir, and timezone. - """ - self.site_config = self.options["plant_config"]["site"] - self.sim_config = self.options["plant_config"]["plant"]["simulation"] - self.n_timesteps = int(self.sim_config["n_timesteps"]) - self.dt = self.sim_config["dt"] - self.start_time = self.sim_config["start_time"] - - # create the input dictionary for GOESAPIConfig - resource_specs = self.options["resource_config"] - # set the default latitude, longitude, and resource_year from the site_config - resource_specs.setdefault("latitude", self.site_config["latitude"]) - resource_specs.setdefault("longitude", self.site_config["longitude"]) - # set the default resource_dir from a directory that can be - # specified in site_config['resources']['resource_dir'] - resource_specs.setdefault( - "resource_dir", self.site_config.get("resources", {}).get("resource_dir", None) - ) - - # default timezone to UTC because 'timezone' was removed from the plant config schema - resource_specs.setdefault("timezone", self.sim_config.get("timezone", 0)) - return resource_specs - - def create_filename(self): + def create_filename(self, latitude, longitude): """Create default filename to save downloaded data to. Filename is formatted as "{latitude}_{longitude}_{resource_year}_{config.dataset_desc}_{interval}min_{tz_desc}_tz.csv" where "tz_desc" is "utc" if the timezone is zero, or "local" otherwise. + Args: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + Returns: str: filename for resource data to be saved to or loaded from. """ @@ -85,19 +56,23 @@ def create_filename(self): else: tz_desc = "local" filename = ( - f"{self.config.latitude}_{self.config.longitude}_{self.config.resource_year}_" + f"{latitude}_{longitude}_{self.config.resource_year}_" f"{self.config.dataset_desc}_{self.interval}min_{tz_desc}_tz.csv" ) return filename - def create_url(self): + def create_url(self, latitude, longitude): """Create url for data download. + Args: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + Returns: str: url to use for API call. """ input_data = { - "wkt": f"POINT({self.config.longitude} {self.config.latitude})", + "wkt": f"POINT({longitude} {latitude})", "names": [str(self.config.resource_year)], # TODO: update to handle multiple years "interval": str(self.interval), "utc": str(self.utc).lower(), @@ -207,6 +182,3 @@ def format_timeseries_data(self, data): data_time_dict = {c.lower(): data[c].astype(float).values for c in time_cols} data_dict.update(data_time_dict) return data_dict, data_units - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - pass diff --git a/h2integrate/resource/wind/nrel_developer_wtk_api.py b/h2integrate/resource/wind/nrel_developer_wtk_api.py index ddcb7dcf4..e2a480cc3 100644 --- a/h2integrate/resource/wind/nrel_developer_wtk_api.py +++ b/h2integrate/resource/wind/nrel_developer_wtk_api.py @@ -49,23 +49,8 @@ class WTKNRELDeveloperAPIConfig(ResourceBaseAPIConfig): class WTKNRELDeveloperAPIWindResource(WindResourceBaseAPIModel): def setup(self): - super().setup() - # create the input dictionary for WTKNRELDeveloperAPIConfig - resource_specs = self.options["resource_config"] - # set the default latitude, longitude, and resource_year from the site_config - resource_specs.setdefault("latitude", self.site_config["latitude"]) - resource_specs.setdefault("longitude", self.site_config["longitude"]) - resource_specs.setdefault("resource_year", self.site_config.get("year", None)) - - # set the default resource_dir from a directory that can be - # specified in site_config['resources']['resource_dir'] - resource_specs.setdefault( - "resource_dir", self.site_config["resources"].get("resource_dir", None) - ) - - # default timezone to UTC because 'timezone' was removed from the plant config schema - resource_specs.setdefault("timezone", self.sim_config.get("timezone", 0)) + resource_specs = self.helper_setup_method() # create the resource config self.config = WTKNRELDeveloperAPIConfig.from_dict(resource_specs) @@ -85,17 +70,25 @@ def setup(self): else: self.interval = int(min(self.config.valid_intervals)) + super().setup() + # get the data dictionary - data = self.get_data() + data = self.get_data(self.config.latitude, self.config.longitude) - # add resource data dictionary as an out + self.resource_data = data + + # add resource data dictionary as an output self.add_discrete_output("wind_resource_data", val=data, desc="Dict of wind resource data") - def create_filename(self): + def create_filename(self, latitude, longitude): """Create default filename to save downloaded data to. Filename is formatted as "{latitude}_{longitude}_{resource_year}_wtk_v2_{interval}min_{tz_desc}_tz.csv" where "tz_desc" is "utc" if the timezone is zero, or "local" otherwise. + Args: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + Returns: str: filename for resource data to be saved to or loaded from. """ @@ -106,19 +99,23 @@ def create_filename(self): else: tz_desc = "local" filename = ( - f"{self.config.latitude}_{self.config.longitude}_{self.config.resource_year}_" + f"{latitude}_{longitude}_{self.config.resource_year}_" f"{self.config.dataset_desc}_{self.interval}min_{tz_desc}_tz.csv" ) return filename - def create_url(self): + def create_url(self, latitude, longitude): """Create url for data download. + Args: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + Returns: str: url to use for API call. """ input_data = { - "wkt": f"POINT({self.config.longitude} {self.config.latitude})", + "wkt": f"POINT({longitude} {latitude})", "names": [str(self.config.resource_year)], # TODO: update to handle multiple years "interval": str(self.interval), "utc": str(self.utc).lower(), @@ -217,6 +214,3 @@ def format_timeseries_data(self, data): data_time_dict = {c.lower(): data[c].astype(float).values for c in time_cols} data_dict.update(data_time_dict) return data_dict, data_units - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - pass diff --git a/h2integrate/resource/wind/openmeteo_wind.py b/h2integrate/resource/wind/openmeteo_wind.py index 0a113135f..16c9a886b 100644 --- a/h2integrate/resource/wind/openmeteo_wind.py +++ b/h2integrate/resource/wind/openmeteo_wind.py @@ -48,23 +48,8 @@ class OpenMeteoHistoricalWindAPIConfig(ResourceBaseAPIConfig): class OpenMeteoHistoricalWindResource(WindResourceBaseAPIModel): def setup(self): - super().setup() - - # create the input dictionary for WTKNRELDeveloperAPIConfig - resource_specs = self.options["resource_config"] - # set the default latitude, longitude, and resource_year from the site_config - resource_specs.setdefault("latitude", self.site_config["latitude"]) - resource_specs.setdefault("longitude", self.site_config["longitude"]) - resource_specs.setdefault("resource_year", self.site_config.get("year", None)) - - # set the default resource_dir from a directory that can be - # specified in site_config['resources']['resource_dir'] - resource_specs.setdefault( - "resource_dir", self.site_config["resources"].get("resource_dir", None) - ) - - # default timezone to UTC because 'timezone' was removed from the plant config schema - resource_specs.setdefault("timezone", self.sim_config.get("timezone", 0)) + # create the input dictionary for OpenMeteoHistoricalWindAPIConfig + resource_specs = self.helper_setup_method() # create the resource config self.config = OpenMeteoHistoricalWindAPIConfig.from_dict(resource_specs) @@ -84,6 +69,8 @@ def setup(self): else: self.interval = int(min(self.config.valid_intervals)) + super().setup() + self.hourly_wind_data_to_units = { "wind_speed_10m": "m/s", "wind_speed_100m": "m/s", @@ -95,16 +82,22 @@ def setup(self): "relative_humidity_2m": "unitless", } # get the data dictionary - data = self.get_data() + data = self.get_data(self.config.latitude, self.config.longitude) + + self.resource_data = data # add resource data dictionary as an out self.add_discrete_output("wind_resource_data", val=data, desc="Dict of wind resource data") - def create_filename(self): + def create_filename(self, latitude, longitude): """Create default filename to save downloaded data to. Filename is formatted as "{latitude}_{longitude}_{resource_year}_openmeteo_archive_{interval}min_{tz_desc}_tz.csv" where "tz_desc" is "utc" if the timezone is zero, or "local" otherwise. + Args: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + Returns: str: filename for resource data to be saved to or loaded from. """ @@ -115,14 +108,18 @@ def create_filename(self): else: tz_desc = "local" filename = ( - f"{self.config.latitude}_{self.config.longitude}_{self.config.resource_year}_" + f"{latitude}_{longitude}_{self.config.resource_year}_" f"{self.config.dataset_desc}_{self.interval}min_{tz_desc}_tz.csv" ) return filename - def create_url(self): + def create_url(self, latitude, longitude): """Create url for data download. + Args: + latitude (float): latitude corresponding to location for resource data + longitude (float): longitude corresponding to location for resource data + Returns: str: url to use for API call. """ @@ -130,8 +127,8 @@ def create_url(self): end_year = int(self.config.resource_year + 1) input_data = { - "latitude": self.config.latitude, - "longitude": self.config.longitude, + "latitude": latitude, + "longitude": longitude, "start_date": f"{start_year}-12-31", # format is "%Y-%m-%d" "end_date": f"{end_year}-01-01", # format is "%Y-%m-%d" "hourly": list(self.hourly_wind_data_to_units.keys()), diff --git a/resource_files/solar/35.2018863_-101.945027_2012_goes_aggregated_v4_60min_utc_tz.csv b/resource_files/solar/35.2018863_-101.945027_2012_goes_aggregated_v4_60min_utc_tz.csv new file mode 100644 index 000000000..f755e6e6e --- /dev/null +++ b/resource_files/solar/35.2018863_-101.945027_2012_goes_aggregated_v4_60min_utc_tz.csv @@ -0,0 +1,8763 @@ +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 Units,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 +NSRDB,564069,-,-,-,35.21,-101.94,0,1133,-6,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,4.0.1 +Year,Month,Day,Hour,Minute,Temperature,Alpha,Aerosol Optical Depth,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Fill Flag,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Ozone,Relative Humidity,Solar Zenith Angle,SSA,Surface Albedo,Pressure,Precipitable Water,Wind Direction,Wind Speed,Global Horizontal UV Irradiance (280-400nm),Global Horizontal UV Irradiance (295-385nm) +2012,1,1,0,30,8.1,0.98,0.019,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.299,24.13,99.07000000000001,0.87,0.2,893,0.30000000000000004,182,7.300000000000001,0.0000,0.0000 +2012,1,1,1,30,5.5,0.98,0.018000000000000002,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.299,25.94,110.71000000000001,0.88,0.2,895,0.30000000000000004,4,7.2,0.0000,0.0000 +2012,1,1,2,30,3.7,1.1300000000000001,0.018000000000000002,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.299,38.69,122.75,0.88,0.2,897,0.30000000000000004,7,6.6000000000000005,0.0000,0.0000 +2012,1,1,3,30,2.3000000000000003,1.28,0.016,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.299,54.92,134.97,0.89,0.2,898,0.30000000000000004,9,5.300000000000001,0.0000,0.0000 +2012,1,1,4,30,0.8,1.34,0.015,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.298,63.9,147.13,0.89,0.2,899,0.30000000000000004,10,3.6,0.0000,0.0000 +2012,1,1,5,30,-0.6000000000000001,1.36,0.015,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.298,68.77,158.61,0.88,0.2,899,0.30000000000000004,9,2.3000000000000003,0.0000,0.0000 +2012,1,1,6,30,-1.7000000000000002,1.37,0.015,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.297,70.49,167.01,0.88,0.2,899,0.30000000000000004,183,1.8,0.0000,0.0000 +2012,1,1,7,30,-2.4000000000000004,1.36,0.015,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.297,69.57000000000001,165.16,0.88,0.2,900,0.30000000000000004,355,1.6,0.0000,0.0000 +2012,1,1,8,30,-3,1.35,0.014,0.62,0,0,0,0,0,-8,0,0,0,0,0.297,68.29,155.29,0.88,0.2,900,0.30000000000000004,348,1.6,0.0000,0.0000 +2012,1,1,9,30,-3.4000000000000004,1.32,0.015,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.298,67.08,143.49,0.88,0.2,901,0.30000000000000004,342,1.8,0.0000,0.0000 +2012,1,1,10,30,-3.8000000000000003,1.29,0.016,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.299,66.72,131.27,0.89,0.2,901,0.30000000000000004,338,2,0.0000,0.0000 +2012,1,1,11,30,-4.1000000000000005,1.28,0.017,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.299,66.1,119.08,0.89,0.2,902,0.30000000000000004,333,2,0.0000,0.0000 +2012,1,1,12,30,-4.5,1.28,0.018000000000000002,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.3,65.92,107.13,0.9,0.2,903,0.4,328,1.9000000000000001,0.0000,0.0000 +2012,1,1,13,30,-3.8000000000000003,1.27,0.019,0.62,0,0,0,0,1,-10.3,0,0,0,0,0.3,60.47,95.65,0.9,0.2,904,0.4,322,2,0.0000,0.0000 +2012,1,1,14,30,-1.2000000000000002,1.27,0.018000000000000002,0.62,24,550,74,0,1,-10.200000000000001,24,550,0,74,0.301,50.52,84.75,0.89,0.2,904,0.4,316,2.6,0.0000,0.0000 +2012,1,1,15,30,2.1,1.27,0.018000000000000002,0.62,42,826,254,0,4,-10.4,150,145,0,187,0.301,39.24,75.16,0.89,0.2,905,0.4,160,2.2,9.1316,7.0156 +2012,1,1,16,30,4.800000000000001,1.28,0.018000000000000002,0.62,51,933,414,0,8,-11.600000000000001,174,342,0,307,0.3,29.28,67.11,0.88,0.2,906,0.4,22,1.3,16.1094,12.5152 +2012,1,1,17,30,6.4,1.29,0.018000000000000002,0.62,56,974,524,0,3,-12.5,253,357,0,424,0.299,24.48,61.29,0.88,0.2,905,0.5,198,0.8,23.1939,18.1015 +2012,1,1,18,30,7.4,1.31,0.019,0.62,59,992,579,0,1,-12.5,59,992,0,579,0.297,22.94,58.410000000000004,0.89,0.2,904,0.5,318,0.6000000000000001,32.2090,25.1775 +2012,1,1,19,30,8.1,1.33,0.021,0.62,60,987,570,0,0,-12.3,60,987,0,570,0.295,22.150000000000002,58.910000000000004,0.89,0.2,904,0.5,269,0.9,31.6212,24.7117 +2012,1,1,20,30,8.4,1.35,0.022,0.62,58,950,493,0,0,-12.200000000000001,58,950,0,493,0.294,21.92,62.71,0.89,0.2,903,0.6000000000000001,251,1.2000000000000002,26.7226,20.8361 +2012,1,1,21,30,8,1.3800000000000001,0.021,0.62,51,888,365,0,0,-12,51,888,0,365,0.294,22.79,69.25,0.89,0.2,903,0.6000000000000001,237,1.1,18.8103,14.5798 +2012,1,1,22,30,6.5,1.3900000000000001,0.021,0.62,39,747,197,0,0,-10,39,747,0,197,0.294,29.62,77.83,0.89,0.2,903,0.6000000000000001,205,0.8,9.4357,7.2138 +2012,1,1,23,30,4.5,1.3800000000000001,0.021,0.62,15,354,30,0,0,-8.8,15,354,0,30,0.294,37.33,87.68,0.89,0.2,903,0.6000000000000001,161,0.8,0.0000,0.0000 +2012,1,2,0,30,2.8000000000000003,1.36,0.021,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.295,38.11,98.93,0.89,0.2,904,0.6000000000000001,135,1.1,0.0000,0.0000 +2012,1,2,1,30,1.2000000000000002,1.36,0.021,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.297,43.32,110.57000000000001,0.89,0.2,904,0.5,130,1.3,0.0000,0.0000 +2012,1,2,2,30,0,1.35,0.021,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.298,47.2,122.61,0.89,0.2,905,0.5,131,1.4000000000000001,0.0000,0.0000 +2012,1,2,3,30,-0.8,1.33,0.021,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.299,49.45,134.84,0.89,0.2,905,0.5,133,1.3,0.0000,0.0000 +2012,1,2,4,30,-1.2000000000000002,1.29,0.022,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.3,50.15,146.99,0.89,0.2,905,0.5,134,1.3,0.0000,0.0000 +2012,1,2,5,30,-1.2000000000000002,1.24,0.022,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.301,49.35,158.48,0.89,0.2,906,0.5,138,1.2000000000000002,0.0000,0.0000 +2012,1,2,6,30,-1.1,1.21,0.022,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.301,48.15,166.89000000000001,0.89,0.2,906,0.5,148,0.9,0.0000,0.0000 +2012,1,2,7,30,-1,1.2,0.022,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.302,47.38,165.15,0.89,0.2,906,0.6000000000000001,154,0.5,0.0000,0.0000 +2012,1,2,8,30,-1.4000000000000001,1.2,0.022,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.303,49.1,155.33,0.89,0.2,906,0.6000000000000001,88,0.5,0.0000,0.0000 +2012,1,2,9,30,-2.3000000000000003,1.19,0.022,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.303,53.160000000000004,143.55,0.89,0.2,907,0.6000000000000001,24,0.9,0.0000,0.0000 +2012,1,2,10,30,-3.1,1.16,0.023,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.304,57.21,131.33,0.9,0.2,907,0.6000000000000001,31,1,0.0000,0.0000 +2012,1,2,11,30,-3.5,1.1300000000000001,0.024,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.305,60.09,119.13,0.9,0.2,907,0.6000000000000001,39,1,0.0000,0.0000 +2012,1,2,12,30,-3.6,1.1,0.025,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.306,61.480000000000004,107.18,0.9,0.2,907,0.6000000000000001,49,0.9,0.0000,0.0000 +2012,1,2,13,30,-3.1,1.08,0.026000000000000002,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.306,59.89,95.69,0.9,0.2,908,0.6000000000000001,67,0.7000000000000001,0.0000,0.0000 +2012,1,2,14,30,-1.5,1.08,0.026000000000000002,0.62,26,498,71,0,0,-9.200000000000001,26,498,0,71,0.307,55.980000000000004,84.77,0.9,0.2,908,0.6000000000000001,119,0.7000000000000001,0.0000,0.0000 +2012,1,2,15,30,1.6,1.09,0.025,0.62,46,797,250,0,0,-9.200000000000001,46,797,0,250,0.307,44.480000000000004,75.17,0.9,0.2,908,0.5,176,1.6,12.2070,9.3782 +2012,1,2,16,30,4.7,1.11,0.024,0.62,55,912,410,0,0,-9.200000000000001,55,912,0,410,0.306,35.67,67.09,0.89,0.2,908,0.5,202,2.7,21.5176,16.7172 +2012,1,2,17,30,7.1000000000000005,1.1500000000000001,0.023,0.62,60,966,525,0,0,-9.3,60,966,0,525,0.305,30.1,61.24,0.89,0.2,907,0.5,219,3.4000000000000004,28.7278,22.4211 +2012,1,2,18,30,8.8,1.22,0.027,0.62,65,981,580,0,0,-9.700000000000001,65,981,0,580,0.303,25.990000000000002,58.33,0.9,0.2,905,0.5,231,3.9000000000000004,32.2786,25.2329 +2012,1,2,19,30,9.9,1.25,0.026000000000000002,0.62,64,980,572,0,0,-9.8,64,980,0,572,0.302,23.84,58.800000000000004,0.9,0.2,904,0.5,238,4.1000000000000005,31.7515,24.8150 +2012,1,2,20,30,10.3,1.27,0.026000000000000002,0.62,61,952,499,0,0,-9.9,61,952,0,499,0.301,23.18,62.59,0.89,0.2,903,0.5,239,3.9000000000000004,27.0694,21.1083 +2012,1,2,21,30,9.700000000000001,1.25,0.02,0.62,51,899,371,0,0,-9.700000000000001,51,899,0,371,0.3,24.43,69.12,0.89,0.2,903,0.5,235,2.9000000000000004,19.1412,14.8386 +2012,1,2,22,30,6.5,1.25,0.02,0.62,39,761,202,0,0,-7.300000000000001,39,761,0,202,0.3,36.51,77.69,0.89,0.2,903,0.5,224,1.8,9.6824,7.4043 +2012,1,2,23,30,3.1,1.25,0.02,0.62,16,372,32,0,0,-6.6000000000000005,16,372,0,32,0.3,48.99,87.55,0.88,0.2,902,0.5,212,1.6,0.0000,0.0000 +2012,1,3,0,30,1.9000000000000001,1.24,0.02,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.3,49.13,98.79,0.88,0.2,902,0.5,209,1.9000000000000001,0.0000,0.0000 +2012,1,3,1,30,1.5,1.24,0.02,0.62,0,0,0,0,0,-8,0,0,0,0,0.3,49.34,110.44,0.88,0.2,902,0.5,212,2.3000000000000003,0.0000,0.0000 +2012,1,3,2,30,1.2000000000000002,1.24,0.02,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.301,49.33,122.48,0.88,0.2,901,0.5,217,2.7,0.0000,0.0000 +2012,1,3,3,30,0.8,1.24,0.02,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.302,49.83,134.7,0.88,0.2,901,0.5,221,3,0.0000,0.0000 +2012,1,3,4,30,0.30000000000000004,1.24,0.019,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.302,50.77,146.85,0.87,0.2,900,0.5,225,3.2,0.0000,0.0000 +2012,1,3,5,30,-0.2,1.24,0.019,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.303,51.95,158.34,0.87,0.2,900,0.5,228,3.5,0.0000,0.0000 +2012,1,3,6,30,-0.6000000000000001,1.26,0.018000000000000002,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.304,52.79,166.77,0.87,0.2,899,0.5,230,3.8000000000000003,0.0000,0.0000 +2012,1,3,7,30,-1,1.27,0.018000000000000002,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.305,53.83,165.13,0.87,0.2,899,0.5,232,4.1000000000000005,0.0000,0.0000 +2012,1,3,8,30,-1.4000000000000001,1.29,0.018000000000000002,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.304,55.050000000000004,155.37,0.87,0.2,898,0.5,233,4.4,0.0000,0.0000 +2012,1,3,9,30,-1.7000000000000002,1.3,0.018000000000000002,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.303,56.32,143.6,0.87,0.2,897,0.5,233,4.6000000000000005,0.0000,0.0000 +2012,1,3,10,30,-2.1,1.3,0.018000000000000002,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.301,58.44,131.39000000000001,0.86,0.2,897,0.5,232,4.800000000000001,0.0000,0.0000 +2012,1,3,11,30,-2.3000000000000003,1.3,0.018000000000000002,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.301,59.69,119.18,0.86,0.2,896,0.5,232,4.9,0.0000,0.0000 +2012,1,3,12,30,-2.5,1.3,0.018000000000000002,0.62,0,0,0,0,0,-9,0,0,0,0,0.3,60.94,107.23,0.86,0.2,895,0.4,232,5,0.0000,0.0000 +2012,1,3,13,30,-2.2,1.3,0.018000000000000002,0.62,0,0,0,0,0,-9,0,0,0,0,0.3,59.82,95.72,0.85,0.2,895,0.4,234,5.1000000000000005,0.0000,0.0000 +2012,1,3,14,30,-0.4,1.3,0.018000000000000002,0.62,24,551,74,0,0,-8.9,24,551,0,74,0.3,52.75,84.79,0.85,0.2,894,0.4,235,5.2,0.0000,0.0000 +2012,1,3,15,30,3.1,1.29,0.018000000000000002,0.62,42,828,254,0,0,-8.6,42,828,0,254,0.3,42.11,75.17,0.85,0.2,894,0.4,236,4.9,12.4023,9.5283 +2012,1,3,16,30,7.5,1.29,0.018000000000000002,0.62,51,936,415,0,0,-7.800000000000001,51,936,0,415,0.299,32.83,67.06,0.85,0.2,893,0.4,238,4.800000000000001,21.7853,16.9256 +2012,1,3,17,30,11.5,1.29,0.018000000000000002,0.62,56,986,531,0,0,-7.1000000000000005,56,986,0,531,0.298,26.46,61.19,0.86,0.2,892,0.4,242,4.9,29.0652,22.6851 +2012,1,3,18,30,14.600000000000001,1.26,0.022,0.62,61,1001,587,0,0,-6.6000000000000005,61,1001,0,587,0.297,22.5,58.25,0.86,0.2,890,0.4,246,4.800000000000001,32.6823,25.5495 +2012,1,3,19,30,16.6,1.27,0.023,0.62,61,997,579,0,0,-6.4,61,997,0,579,0.297,20.150000000000002,58.7,0.87,0.2,889,0.4,250,4.5,32.1579,25.1338 +2012,1,3,20,30,17.6,1.26,0.024,0.62,59,968,507,0,0,-6.300000000000001,59,968,0,507,0.297,19.04,62.46,0.86,0.2,889,0.4,255,3.7,27.5270,21.4670 +2012,1,3,21,30,16.5,1.29,0.017,0.62,48,908,374,0,0,-5.5,48,908,0,374,0.297,21.740000000000002,68.99,0.86,0.2,889,0.5,257,2.2,19.3178,14.9778 +2012,1,3,22,30,14,1.25,0.019,0.62,39,769,204,0,0,-0.4,39,769,0,204,0.298,37.160000000000004,77.56,0.87,0.2,889,0.5,257,1.1,9.7854,7.4848 +2012,1,3,23,30,11.9,1.21,0.023,0.62,16,370,33,7,4,-3.9000000000000004,17,0,7,17,0.298,33.04,87.42,0.88,0.2,889,0.5,261,1,0.0000,0.0000 +2012,1,4,0,30,10.3,1.19,0.027,0.62,0,0,0,0,4,-4.800000000000001,0,0,0,0,0.299,34.31,98.65,0.89,0.2,890,0.5,282,1,0.0000,0.0000 +2012,1,4,1,30,8.5,1.17,0.03,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.299,38.81,110.3,0.89,0.2,890,0.6000000000000001,316,1.2000000000000002,0.0000,0.0000 +2012,1,4,2,30,6.2,1.1400000000000001,0.032,0.62,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.301,45.29,122.34,0.89,0.2,890,0.6000000000000001,345,1.5,0.0000,0.0000 +2012,1,4,3,30,4.6000000000000005,1.11,0.034,0.62,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.303,50.51,134.56,0.9,0.2,891,0.6000000000000001,180,1.8,0.0000,0.0000 +2012,1,4,4,30,4.4,1.1,0.036000000000000004,0.62,0,0,0,0,7,-4.7,0,0,0,0,0.306,51.550000000000004,146.71,0.9,0.2,891,0.6000000000000001,4,2.3000000000000003,0.0000,0.0000 +2012,1,4,5,30,5,1.1,0.038,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.308,50.68,158.19,0.91,0.2,892,0.6000000000000001,3,3.2,0.0000,0.0000 +2012,1,4,6,30,5.2,1.12,0.039,0.62,0,0,0,0,4,-3.9000000000000004,0,0,0,0,0.31,51.88,166.64000000000001,0.91,0.2,893,0.7000000000000001,2,4,0.0000,0.0000 +2012,1,4,7,30,4.9,1.16,0.037,0.62,0,0,0,0,7,-3.5,0,0,0,0,0.31,54.7,165.1,0.91,0.2,894,0.7000000000000001,3,4.4,0.0000,0.0000 +2012,1,4,8,30,4.4,1.2,0.034,0.62,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.311,56.89,155.4,0.92,0.2,895,0.7000000000000001,3,4.5,0.0000,0.0000 +2012,1,4,9,30,3.6,1.24,0.03,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.314,59.06,143.64000000000001,0.92,0.2,896,0.7000000000000001,3,4.5,0.0000,0.0000 +2012,1,4,10,30,3.1,1.24,0.029,0.62,0,0,0,0,6,-4,0,0,0,0,0.315,59.79,131.43,0.92,0.2,896,0.7000000000000001,4,4.3,0.0000,0.0000 +2012,1,4,11,30,2.7,1.22,0.03,0.62,0,0,0,0,7,-4,0,0,0,0,0.316,61.17,119.23,0.92,0.2,897,0.7000000000000001,3,4,0.0000,0.0000 +2012,1,4,12,30,2.3000000000000003,1.19,0.032,0.62,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.316,63.370000000000005,107.26,0.92,0.2,898,0.7000000000000001,180,4,0.0000,0.0000 +2012,1,4,13,30,1.8,1.18,0.031,0.62,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.317,66.11,95.75,0.91,0.2,900,0.7000000000000001,356,4.1000000000000005,0.0000,0.0000 +2012,1,4,14,30,2.6,1.17,0.028,0.62,26,493,70,0,0,-3.9000000000000004,26,493,0,70,0.318,62.33,84.8,0.9,0.2,901,0.6000000000000001,352,4.4,0.0000,0.0000 +2012,1,4,15,30,5.1000000000000005,1.1500000000000001,0.024,0.62,45,801,250,0,1,-3.9000000000000004,45,801,0,250,0.321,52.19,75.16,0.89,0.2,902,0.5,176,4.5,12.2080,9.3792 +2012,1,4,16,30,8,1.1400000000000001,0.022,0.62,54,916,411,0,0,-3.9000000000000004,54,916,0,411,0.322,42.63,67.03,0.88,0.2,902,0.5,3,4.4,21.5806,16.7670 +2012,1,4,17,30,10.4,1.1400000000000001,0.021,0.62,59,979,532,0,0,-4.3,59,979,0,532,0.322,35.21,61.13,0.89,0.2,901,0.4,4,3.9000000000000004,29.1307,22.7371 +2012,1,4,18,30,12.100000000000001,1.2,0.023,0.62,63,997,588,0,0,-5.5,63,997,0,588,0.32,28.76,58.160000000000004,0.89,0.2,900,0.4,178,3.5,32.7539,25.6066 +2012,1,4,19,30,12.9,1.2,0.021,0.62,61,997,581,0,0,-6.2,61,997,0,581,0.318,26.01,58.58,0.89,0.2,899,0.4,347,3.2,32.2902,25.2388 +2012,1,4,20,30,13.200000000000001,1.2,0.02,0.62,57,973,509,0,0,-6.2,57,973,0,509,0.316,25.5,62.33,0.89,0.2,898,0.4,334,2.9000000000000004,27.6592,21.5720 +2012,1,4,21,30,12.4,1.21,0.02,0.62,51,912,380,0,0,-6,51,912,0,380,0.314,27.3,68.84,0.89,0.2,898,0.4,322,2,19.6532,15.2404 +2012,1,4,22,30,10.100000000000001,1.22,0.019,0.62,39,780,209,0,0,-2.7,39,780,0,209,0.31,40.480000000000004,77.41,0.88,0.2,898,0.4,308,1.2000000000000002,10.0341,7.6771 +2012,1,4,23,30,7.6000000000000005,1.23,0.018000000000000002,0.62,16,408,36,0,0,-3.8000000000000003,16,408,0,36,0.307,44.46,87.28,0.88,0.2,898,0.4,290,1.2000000000000002,0.0000,0.0000 +2012,1,5,0,30,6.2,1.24,0.018000000000000002,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.305,43.86,98.51,0.89,0.2,898,0.4,270,1.3,0.0000,0.0000 +2012,1,5,1,30,4.800000000000001,1.25,0.018000000000000002,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.303,47.230000000000004,110.15,0.89,0.2,898,0.4,254,1.5,0.0000,0.0000 +2012,1,5,2,30,3.6,1.26,0.017,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.302,50.4,122.19,0.89,0.2,898,0.4,246,1.6,0.0000,0.0000 +2012,1,5,3,30,2.7,1.28,0.017,0.62,0,0,0,0,0,-6,0,0,0,0,0.301,52.910000000000004,134.42000000000002,0.89,0.2,898,0.4,243,1.7000000000000002,0.0000,0.0000 +2012,1,5,4,30,2,1.29,0.017,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.3,54.92,146.57,0.88,0.2,897,0.4,244,1.9000000000000001,0.0000,0.0000 +2012,1,5,5,30,1.4000000000000001,1.31,0.017,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.299,56.85,158.05,0.88,0.2,897,0.4,246,2.1,0.0000,0.0000 +2012,1,5,6,30,0.9,1.32,0.017,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.298,58.61,166.51,0.88,0.2,897,0.4,249,2.3000000000000003,0.0000,0.0000 +2012,1,5,7,30,0.4,1.33,0.016,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.297,60.52,165.07,0.88,0.2,897,0.4,253,2.4000000000000004,0.0000,0.0000 +2012,1,5,8,30,-0.2,1.34,0.016,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.296,63.08,155.42000000000002,0.88,0.2,896,0.4,257,2.5,0.0000,0.0000 +2012,1,5,9,30,-0.6000000000000001,1.34,0.016,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.295,65.09,143.68,0.87,0.2,896,0.4,261,2.6,0.0000,0.0000 +2012,1,5,10,30,-1,1.34,0.015,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.293,66.68,131.48,0.87,0.2,895,0.4,266,2.5,0.0000,0.0000 +2012,1,5,11,30,-1.3,1.34,0.015,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.292,66.44,119.27,0.87,0.2,895,0.4,270,2.3000000000000003,0.0000,0.0000 +2012,1,5,12,30,-1.5,1.34,0.015,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.291,64.55,107.3,0.87,0.2,894,0.4,272,2.1,0.0000,0.0000 +2012,1,5,13,30,-0.6000000000000001,1.34,0.015,0.62,0,0,0,0,0,-8,0,0,0,0,0.29,57.17,95.77,0.87,0.2,894,0.4,274,2.1,0.0000,0.0000 +2012,1,5,14,30,2.7,1.35,0.015,0.62,23,561,74,0,0,-8,23,561,0,74,0.289,45.07,84.81,0.87,0.2,894,0.4,273,2.8000000000000003,0.0000,0.0000 +2012,1,5,15,30,6.7,1.35,0.015,0.62,40,836,254,0,1,-8.1,40,836,0,254,0.289,33.84,75.15,0.87,0.2,894,0.4,268,3.3000000000000003,12.4044,9.5303 +2012,1,5,16,30,10,1.35,0.015,0.62,48,943,417,0,0,-8,48,943,0,417,0.28800000000000003,27.37,66.99,0.86,0.2,894,0.4,256,3.2,21.9027,17.0180 +2012,1,5,17,30,13.600000000000001,1.36,0.015,0.62,53,993,533,0,0,-6.9,53,993,0,533,0.28800000000000003,23.41,61.06,0.87,0.2,892,0.4,245,3.9000000000000004,29.1981,22.7906 +2012,1,5,18,30,16.3,1.3800000000000001,0.018000000000000002,0.62,58,1008,591,0,0,-7.2,58,1008,0,591,0.28700000000000003,19.240000000000002,58.06,0.87,0.2,891,0.4,241,4.800000000000001,32.9386,25.7523 +2012,1,5,19,30,17.7,1.3800000000000001,0.018000000000000002,0.62,58,1006,584,0,0,-8.4,58,1006,0,584,0.28700000000000003,16.03,58.46,0.87,0.2,890,0.4,239,5,32.4783,25.3873 +2012,1,5,20,30,17.8,1.3800000000000001,0.018000000000000002,0.62,55,980,512,0,0,-9.200000000000001,55,980,0,512,0.28700000000000003,14.98,62.190000000000005,0.87,0.2,889,0.4,237,4.9,27.8477,21.7210 +2012,1,5,21,30,16.2,1.3800000000000001,0.018000000000000002,0.62,49,921,384,0,0,-9.1,49,921,0,384,0.28700000000000003,16.72,68.7,0.87,0.2,888,0.4,233,3.7,19.8841,15.4219 +2012,1,5,22,30,11.9,1.37,0.018000000000000002,0.62,39,790,213,0,0,-5.6000000000000005,39,790,0,213,0.28700000000000003,28.97,77.26,0.87,0.2,888,0.4,226,2.4000000000000004,10.2356,7.8334 +2012,1,5,23,30,8.1,1.37,0.019,0.62,17,420,38,0,0,-5.300000000000001,17,420,0,38,0.28700000000000003,38.26,87.14,0.87,0.2,888,0.4,222,2.4000000000000004,0.0000,0.0000 +2012,1,6,0,30,6.800000000000001,1.36,0.019,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.28700000000000003,38.92,98.36,0.87,0.2,887,0.4,222,2.8000000000000003,0.0000,0.0000 +2012,1,6,1,30,6.1000000000000005,1.35,0.02,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.28700000000000003,39.77,110.01,0.87,0.2,887,0.4,222,3.4000000000000004,0.0000,0.0000 +2012,1,6,2,30,5.5,1.35,0.021,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28700000000000003,40.660000000000004,122.05,0.87,0.2,887,0.4,222,3.9000000000000004,0.0000,0.0000 +2012,1,6,3,30,5,1.36,0.022,0.62,0,0,0,0,0,-7,0,0,0,0,0.28700000000000003,41.52,134.28,0.87,0.2,886,0.4,224,4.5,0.0000,0.0000 +2012,1,6,4,30,4.3,1.36,0.023,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.28700000000000003,43.39,146.43,0.87,0.2,885,0.4,225,4.7,0.0000,0.0000 +2012,1,6,5,30,3.4000000000000004,1.35,0.023,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.28700000000000003,46.24,157.9,0.87,0.2,885,0.4,228,4.7,0.0000,0.0000 +2012,1,6,6,30,2.6,1.33,0.023,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.28700000000000003,48.78,166.37,0.87,0.2,884,0.4,232,4.5,0.0000,0.0000 +2012,1,6,7,30,1.8,1.29,0.024,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.28700000000000003,51.24,165.02,0.87,0.2,884,0.4,238,4.3,0.0000,0.0000 +2012,1,6,8,30,1.1,1.25,0.024,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.28700000000000003,53.480000000000004,155.44,0.87,0.2,883,0.4,244,4,0.0000,0.0000 +2012,1,6,9,30,0.5,1.21,0.025,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.28800000000000003,55.71,143.71,0.88,0.2,883,0.4,250,3.8000000000000003,0.0000,0.0000 +2012,1,6,10,30,0,1.18,0.025,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.289,58.050000000000004,131.51,0.88,0.2,882,0.5,257,3.8000000000000003,0.0000,0.0000 +2012,1,6,11,30,-0.30000000000000004,1.1500000000000001,0.025,0.62,0,0,0,0,0,-7,0,0,0,0,0.29,60.57,119.3,0.88,0.2,882,0.5,265,3.9000000000000004,0.0000,0.0000 +2012,1,6,12,30,-0.4,1.12,0.025,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.292,62.980000000000004,107.32000000000001,0.88,0.2,882,0.6000000000000001,273,3.9000000000000004,0.0000,0.0000 +2012,1,6,13,30,0.5,1.11,0.026000000000000002,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.293,60.45,95.79,0.88,0.2,882,0.6000000000000001,283,4,0.0000,0.0000 +2012,1,6,14,30,3.4000000000000004,1.1,0.027,0.62,25,498,70,0,0,-6,25,498,0,70,0.293,50.19,84.81,0.88,0.2,883,0.6000000000000001,295,4.5,0.0000,0.0000 +2012,1,6,15,30,7.5,1.1,0.028,0.62,46,781,247,0,1,-5.7,46,781,0,247,0.293,38.72,75.13,0.88,0.2,883,0.7000000000000001,317,4.9,12.0647,9.2696 +2012,1,6,16,30,11.100000000000001,1.09,0.028,0.62,57,896,408,0,0,-5.1000000000000005,57,896,0,408,0.293,31.68,66.95,0.88,0.2,884,0.7000000000000001,344,5.5,21.4369,16.6567 +2012,1,6,17,30,13.700000000000001,1.1,0.028,0.62,62,944,520,0,0,-4.1000000000000005,62,944,0,520,0.293,28.900000000000002,60.99,0.88,0.2,883,0.8,179,6.2,28.4983,22.2453 +2012,1,6,18,30,15.200000000000001,1.07,0.026000000000000002,0.62,64,968,577,0,0,-3.4000000000000004,64,968,0,577,0.292,27.560000000000002,57.95,0.87,0.2,883,0.8,5,6.800000000000001,32.1773,25.1583 +2012,1,6,19,30,15.9,1.11,0.026000000000000002,0.62,63,966,570,0,0,-3.2,63,966,0,570,0.291,26.740000000000002,58.33,0.87,0.2,883,0.8,9,7.300000000000001,31.7221,24.7979 +2012,1,6,20,30,15.700000000000001,1.1300000000000001,0.026000000000000002,0.62,60,934,498,0,0,-3.3000000000000003,60,934,0,498,0.291,26.91,62.04,0.87,0.2,883,0.9,13,7.5,27.1126,21.1497 +2012,1,6,21,30,14.5,0.96,0.024,0.62,53,873,372,0,0,-3.7,53,873,0,372,0.291,28.29,68.54,0.88,0.2,884,0.9,15,7.1000000000000005,19.2892,14.9632 +2012,1,6,22,30,11.9,0.93,0.025,0.62,42,739,207,0,0,-4.2,42,739,0,207,0.29,32.33,77.11,0.88,0.2,885,0.8,17,5.9,9.9568,7.6221 +2012,1,6,23,30,8.700000000000001,0.93,0.025,0.62,18,362,37,0,0,-4.5,18,362,0,37,0.29,39.06,86.99,0.89,0.2,887,0.8,18,4.7,0.0000,0.0000 +2012,1,7,0,30,6.300000000000001,0.9500000000000001,0.024,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.292,44.75,98.21000000000001,0.88,0.2,888,0.8,17,4.1000000000000005,0.0000,0.0000 +2012,1,7,1,30,4.7,1,0.023,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.293,48.49,109.86,0.88,0.2,889,0.8,18,3.9000000000000004,0.0000,0.0000 +2012,1,7,2,30,3.4000000000000004,1.08,0.022,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.292,51.72,121.91,0.88,0.2,890,0.8,19,3.6,0.0000,0.0000 +2012,1,7,3,30,2.1,1.16,0.022,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.293,55.660000000000004,134.13,0.88,0.2,890,0.9,18,3.2,0.0000,0.0000 +2012,1,7,4,30,1,1.21,0.022,0.62,0,0,0,0,0,-6,0,0,0,0,0.295,59.56,146.28,0.88,0.2,891,0.8,14,2.7,0.0000,0.0000 +2012,1,7,5,30,0.1,1.25,0.022,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.296,62.9,157.74,0.88,0.2,891,0.8,8,2.5,0.0000,0.0000 +2012,1,7,6,30,-0.6000000000000001,1.27,0.022,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.295,65.82000000000001,166.22,0.88,0.2,891,0.8,182,2.5,0.0000,0.0000 +2012,1,7,7,30,-1.2000000000000002,1.27,0.022,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.294,68.96000000000001,164.97,0.88,0.2,891,0.8,357,2.5,0.0000,0.0000 +2012,1,7,8,30,-1.8,1.26,0.022,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.293,72.69,155.45000000000002,0.88,0.2,891,0.8,356,2.4000000000000004,0.0000,0.0000 +2012,1,7,9,30,-2.5,1.26,0.021,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.293,77.21000000000001,143.74,0.88,0.2,891,0.7000000000000001,356,2.1,0.0000,0.0000 +2012,1,7,10,30,-3,1.26,0.021,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.292,80.67,131.55,0.88,0.2,891,0.7000000000000001,356,1.8,0.0000,0.0000 +2012,1,7,11,30,-3.5,1.26,0.021,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.291,84.05,119.33,0.88,0.2,891,0.7000000000000001,356,1.5,0.0000,0.0000 +2012,1,7,12,30,-3.6,1.26,0.022,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.29,84.68,107.35000000000001,0.88,0.2,891,0.7000000000000001,181,1.3,0.0000,0.0000 +2012,1,7,13,30,-2.7,1.27,0.021,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.289,78.87,95.8,0.88,0.2,891,0.7000000000000001,13,1.1,0.0000,0.0000 +2012,1,7,14,30,-0.5,1.28,0.019,0.62,24,527,72,0,0,-5.9,24,527,0,72,0.289,66.96000000000001,84.8,0.88,0.2,891,0.6000000000000001,46,1.1,0.0000,0.0000 +2012,1,7,15,30,2.6,1.29,0.018000000000000002,0.62,42,811,250,0,0,-5.9,42,811,0,250,0.289,53.51,75.10000000000001,0.87,0.2,891,0.6000000000000001,95,2.1,12.2144,9.3851 +2012,1,7,16,30,5.300000000000001,1.29,0.018000000000000002,0.62,51,921,412,0,0,-6.9,51,921,0,412,0.28800000000000003,40.89,66.9,0.87,0.2,891,0.6000000000000001,129,3,21.6557,16.8276 +2012,1,7,17,30,7.300000000000001,1.28,0.018000000000000002,0.62,56,965,525,0,0,-7.300000000000001,56,965,0,525,0.28600000000000003,34.550000000000004,60.9,0.88,0.2,890,0.7000000000000001,148,3.2,28.7882,22.4728 +2012,1,7,18,30,9.1,1.28,0.022,0.62,61,980,583,0,0,-7.6000000000000005,61,980,0,583,0.28500000000000003,30.07,57.84,0.88,0.2,889,0.7000000000000001,166,3.4000000000000004,32.5308,25.4361 +2012,1,7,19,30,10.3,1.27,0.024,0.62,62,970,573,0,0,-7.5,62,970,0,573,0.28300000000000003,27.84,58.19,0.89,0.2,888,0.8,179,3.7,31.9132,24.9489 +2012,1,7,20,30,11,1.27,0.027,0.62,61,939,504,0,0,-7.300000000000001,61,939,0,504,0.28200000000000003,26.98,61.89,0.89,0.2,887,0.8,186,3.8000000000000003,27.4657,21.4273 +2012,1,7,21,30,10.700000000000001,1.28,0.03,0.62,56,872,378,0,0,-7.1000000000000005,56,872,0,378,0.281,28.02,68.38,0.9,0.2,887,0.8,187,3.4000000000000004,19.6270,15.2279 +2012,1,7,22,30,7.9,1.32,0.033,0.62,45,730,210,0,0,-6.300000000000001,45,730,0,210,0.281,35.79,76.95,0.9,0.2,887,0.8,177,2.2,10.1119,7.7431 +2012,1,7,23,30,4.6000000000000005,1.36,0.035,0.62,19,354,39,0,0,-4.7,19,354,0,39,0.281,50.93,86.84,0.9,0.2,887,0.8,162,1.6,0.0000,0.0000 +2012,1,8,0,30,3.3000000000000003,1.37,0.035,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.28200000000000003,51.79,98.06,0.9,0.2,887,0.8,151,2,0.0000,0.0000 +2012,1,8,1,30,2.8000000000000003,1.36,0.035,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.28300000000000003,51.85,109.71000000000001,0.89,0.2,887,0.8,145,2.5,0.0000,0.0000 +2012,1,8,2,30,2.1,1.33,0.034,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.28300000000000003,53.22,121.76,0.89,0.2,887,0.8,142,2.9000000000000004,0.0000,0.0000 +2012,1,8,3,30,1.3,1.29,0.035,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.28400000000000003,55.75,133.99,0.89,0.2,887,0.8,140,2.9000000000000004,0.0000,0.0000 +2012,1,8,4,30,0.30000000000000004,1.27,0.037,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.28500000000000003,59.78,146.13,0.89,0.2,888,0.8,139,2.6,0.0000,0.0000 +2012,1,8,5,30,-0.6000000000000001,1.25,0.04,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.28500000000000003,63.45,157.59,0.9,0.2,888,0.8,137,2.1,0.0000,0.0000 +2012,1,8,6,30,-1.4000000000000001,1.24,0.044,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28600000000000003,66.93,166.07,0.9,0.2,888,0.9,133,1.7000000000000002,0.0000,0.0000 +2012,1,8,7,30,-2.1,1.24,0.049,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.28700000000000003,70.68,164.91,0.91,0.2,888,0.9,124,1.3,0.0000,0.0000 +2012,1,8,8,30,-2.6,1.24,0.052000000000000005,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.289,74.17,155.45000000000002,0.9,0.2,889,0.9,102,1.1,0.0000,0.0000 +2012,1,8,9,30,-3,1.25,0.052000000000000005,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.29,77.43,143.77,0.9,0.2,889,0.9,70,1.1,0.0000,0.0000 +2012,1,8,10,30,-3.6,1.28,0.051000000000000004,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.292,82.03,131.57,0.9,0.2,889,0.9,45,1.3,0.0000,0.0000 +2012,1,8,11,30,-3.8000000000000003,1.3,0.052000000000000005,0.62,0,0,0,0,0,-6,0,0,0,0,0.295,84.37,119.36,0.89,0.2,890,0.9,35,1.9000000000000001,0.0000,0.0000 +2012,1,8,12,30,-3.9000000000000004,1.33,0.053,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.296,86.01,107.36,0.9,0.2,890,0.9,31,2.6,0.0000,0.0000 +2012,1,8,13,30,-3.7,1.36,0.054,0.62,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.297,85.60000000000001,95.8,0.9,0.2,891,0.9,28,3.3000000000000003,0.0000,0.0000 +2012,1,8,14,30,-2.3000000000000003,1.3800000000000001,0.056,0.62,28,411,65,7,4,-5.7,22,0,7,22,0.298,77.51,84.79,0.9,0.2,891,0.9,27,3.7,0.0000,0.0000 +2012,1,8,15,30,0.30000000000000004,1.3900000000000001,0.057,0.62,54,717,239,0,4,-5.7,148,139,0,184,0.299,63.88,75.07000000000001,0.9,0.2,892,0.9,36,3.8000000000000003,8.9921,6.9096 +2012,1,8,16,30,3.1,1.4000000000000001,0.059000000000000004,0.62,69,839,399,0,4,-5.9,238,171,0,306,0.299,51.77,66.84,0.91,0.2,892,0.9,50,3.9000000000000004,16.0919,12.5049 +2012,1,8,17,30,5.4,1.41,0.061,0.62,77,896,514,0,0,-5.9,77,896,0,514,0.299,43.9,60.81,0.91,0.2,892,0.9,54,3.8000000000000003,28.2005,22.0152 +2012,1,8,18,30,6.800000000000001,1.41,0.07,0.62,85,909,570,0,0,-6.1000000000000005,85,909,0,570,0.299,39.22,57.72,0.92,0.2,891,0.9,48,3.7,31.8256,24.8861 +2012,1,8,19,30,7.300000000000001,1.41,0.07200000000000001,0.62,85,905,564,0,0,-6.2,85,905,0,564,0.3,37.68,58.04,0.92,0.2,891,0.9,40,3.7,31.4372,24.5786 +2012,1,8,20,30,7.2,1.42,0.07100000000000001,0.62,80,876,495,0,1,-6.2,80,876,0,495,0.3,37.82,61.730000000000004,0.92,0.2,891,0.9,36,3.8000000000000003,27.0028,21.0683 +2012,1,8,21,30,6.5,1.43,0.059000000000000004,0.62,67,823,372,0,0,-6.300000000000001,67,823,0,372,0.301,39.38,68.22,0.91,0.2,891,0.9,35,3.9000000000000004,19.3417,15.0092 +2012,1,8,22,30,4.5,1.44,0.056,0.62,51,682,207,0,0,-6.5,51,682,0,207,0.303,44.7,76.78,0.91,0.2,892,0.9,34,3.2,9.9791,7.6439 +2012,1,8,23,30,2,1.44,0.055,0.62,21,311,39,0,0,-6.4,21,311,0,39,0.304,53.9,86.68,0.91,0.2,892,0.9,33,2.8000000000000003,0.0000,0.0000 +2012,1,9,0,30,0.6000000000000001,1.43,0.055,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.306,57.730000000000004,97.9,0.92,0.2,893,0.9,32,3.2,0.0000,0.0000 +2012,1,9,1,30,-0.30000000000000004,1.4000000000000001,0.058,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.309,60.04,109.56,0.92,0.2,894,0.8,29,3.3000000000000003,0.0000,0.0000 +2012,1,9,2,30,-1.2000000000000002,1.3900000000000001,0.06,0.62,0,0,0,0,4,-7.4,0,0,0,0,0.313,62.84,121.61,0.92,0.2,895,0.8,26,3.1,0.0000,0.0000 +2012,1,9,3,30,-2.1,1.3900000000000001,0.06,0.62,0,0,0,0,4,-7.6000000000000005,0,0,0,0,0.316,66.03,133.84,0.92,0.2,895,0.8,26,2.8000000000000003,0.0000,0.0000 +2012,1,9,4,30,-3,1.3900000000000001,0.059000000000000004,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.319,69.89,145.98,0.92,0.2,895,0.8,27,2.4000000000000004,0.0000,0.0000 +2012,1,9,5,30,-3.8000000000000003,1.3900000000000001,0.059000000000000004,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.321,74.01,157.42000000000002,0.92,0.2,895,0.8,27,2,0.0000,0.0000 +2012,1,9,6,30,-4.3,1.3800000000000001,0.061,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.321,77.24,165.91,0.93,0.2,895,0.8,23,1.8,0.0000,0.0000 +2012,1,9,7,30,-4.5,1.3800000000000001,0.063,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.321,79.4,164.84,0.93,0.2,895,0.8,15,2,0.0000,0.0000 +2012,1,9,8,30,-4.5,1.3800000000000001,0.065,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.321,80.78,155.44,0.9400000000000001,0.2,894,0.8,185,2.3000000000000003,0.0000,0.0000 +2012,1,9,9,30,-4.6000000000000005,1.37,0.066,0.62,0,0,0,0,0,-7,0,0,0,0,0.32,83.13,143.78,0.9400000000000001,0.2,894,0.8,354,2.6,0.0000,0.0000 +2012,1,9,10,30,-4.6000000000000005,1.36,0.068,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.32,84.73,131.6,0.9400000000000001,0.2,893,0.8,343,2.6,0.0000,0.0000 +2012,1,9,11,30,-4.7,1.37,0.07,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.319,87.08,119.38,0.9400000000000001,0.2,894,0.8,339,2,0.0000,0.0000 +2012,1,9,12,30,-4.800000000000001,1.3900000000000001,0.07,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.318,89.51,107.37,0.9400000000000001,0.2,895,0.9,344,1.3,0.0000,0.0000 +2012,1,9,13,30,-4.1000000000000005,1.4000000000000001,0.07,0.62,0,0,0,0,0,-6,0,0,0,0,0.317,86.29,95.8,0.9400000000000001,0.2,895,0.9,351,1.2000000000000002,0.0000,0.0000 +2012,1,9,14,30,-2.1,1.41,0.068,0.62,30,386,65,0,1,-5.9,30,386,0,65,0.315,75.19,84.77,0.9400000000000001,0.2,896,0.9,177,1.8,0.0000,0.0000 +2012,1,9,15,30,0.8,1.43,0.063,0.62,57,711,241,0,1,-6.1000000000000005,57,711,0,241,0.315,60.050000000000004,75.03,0.93,0.2,895,0.8,4,2.7,11.7818,9.0539 +2012,1,9,16,30,3.3000000000000003,1.45,0.056,0.62,68,849,403,0,1,-6.5,68,849,0,403,0.315,48.83,66.77,0.93,0.2,895,0.8,9,3.8000000000000003,21.2047,16.4792 +2012,1,9,17,30,5.2,1.46,0.05,0.62,73,915,521,0,1,-6.1000000000000005,73,915,0,521,0.315,43.910000000000004,60.71,0.93,0.2,894,0.8,27,3.7,28.6019,22.3300 +2012,1,9,18,30,6.7,1.45,0.059000000000000004,0.62,81,928,578,0,1,-5.9,81,928,0,578,0.316,40.300000000000004,57.59,0.9400000000000001,0.2,894,0.8,43,2.7,32.2943,25.2542 +2012,1,9,19,30,7.6000000000000005,1.44,0.064,0.62,83,919,571,0,0,-5.800000000000001,83,919,0,571,0.318,37.980000000000004,57.89,0.9400000000000001,0.2,893,0.8,27,2.3000000000000003,31.8528,24.9054 +2012,1,9,20,30,7.9,1.44,0.061,0.62,77,894,503,0,0,-5.800000000000001,77,894,0,503,0.319,37.21,61.56,0.9400000000000001,0.2,892,0.8,179,2.7,27.4688,21.4342 +2012,1,9,21,30,7.6000000000000005,1.46,0.055,0.62,66,835,378,0,0,-6,66,835,0,378,0.321,37.47,68.05,0.93,0.2,892,0.8,344,3,19.6818,15.2759 +2012,1,9,22,30,5.1000000000000005,1.47,0.05,0.62,50,708,214,0,0,-6.300000000000001,50,708,0,214,0.322,43.69,76.62,0.93,0.2,892,0.7000000000000001,340,2.2,10.3284,7.9138 +2012,1,9,23,30,2,1.48,0.046,0.62,21,353,43,0,0,-6,21,353,0,43,0.322,55.550000000000004,86.52,0.93,0.2,892,0.7000000000000001,345,1.4000000000000001,0.0000,0.0000 +2012,1,10,0,30,0.8,1.48,0.045,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.321,53.95,97.74000000000001,0.93,0.2,892,0.6000000000000001,354,1.4000000000000001,0.0000,0.0000 +2012,1,10,1,30,0.7000000000000001,1.47,0.044,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.32,50.660000000000004,109.4,0.93,0.2,892,0.6000000000000001,182,1.3,0.0000,0.0000 +2012,1,10,2,30,0.6000000000000001,1.46,0.043000000000000003,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.32,48.19,121.46000000000001,0.92,0.2,892,0.6000000000000001,179,1.3,0.0000,0.0000 +2012,1,10,3,30,0.1,1.46,0.041,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.322,47.65,133.69,0.92,0.2,892,0.6000000000000001,343,1.3,0.0000,0.0000 +2012,1,10,4,30,-1.1,1.46,0.039,0.62,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.324,50.03,145.82,0.92,0.2,891,0.6000000000000001,325,1.4000000000000001,0.0000,0.0000 +2012,1,10,5,30,-2.2,1.46,0.037,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.326,52.89,157.26,0.91,0.2,891,0.6000000000000001,316,1.7000000000000002,0.0000,0.0000 +2012,1,10,6,30,-2.3000000000000003,1.46,0.035,0.62,0,0,0,0,1,-10.600000000000001,0,0,0,0,0.326,52.99,165.74,0.91,0.2,890,0.5,315,2.3000000000000003,0.0000,0.0000 +2012,1,10,7,30,-2.3000000000000003,1.46,0.032,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.326,54.07,164.76,0.91,0.2,889,0.5,318,2.5,0.0000,0.0000 +2012,1,10,8,30,-3,1.45,0.031,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.324,60.88,155.43,0.9,0.2,889,0.5,323,2,0.0000,0.0000 +2012,1,10,9,30,-3.6,1.44,0.031,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.321,69.08,143.8,0.9,0.2,889,0.6000000000000001,326,1.8,0.0000,0.0000 +2012,1,10,10,30,-3.7,1.43,0.03,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.319,75.15,131.61,0.9,0.2,889,0.6000000000000001,329,1.8,0.0000,0.0000 +2012,1,10,11,30,-3.8000000000000003,1.42,0.028,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.317,80.72,119.39,0.9,0.2,889,0.6000000000000001,331,2,0.0000,0.0000 +2012,1,10,12,30,-3.8000000000000003,1.41,0.025,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.315,85.02,107.38,0.9,0.2,889,0.5,331,2.1,0.0000,0.0000 +2012,1,10,13,30,-2.9000000000000004,1.4000000000000001,0.023,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.313,82.97,95.79,0.89,0.2,889,0.5,329,2.8000000000000003,0.0000,0.0000 +2012,1,10,14,30,-0.6000000000000001,1.3900000000000001,0.021,0.62,24,533,73,0,0,-4.9,24,533,0,73,0.31,72.88,84.75,0.89,0.2,889,0.5,323,3.6,0.0000,0.0000 +2012,1,10,15,30,3,1.3900000000000001,0.018000000000000002,0.62,42,813,252,0,0,-4.3,42,813,0,252,0.306,58.52,74.99,0.88,0.2,889,0.6000000000000001,320,3.8000000000000003,12.3239,9.4711 +2012,1,10,16,30,6.7,1.3900000000000001,0.016,0.62,49,926,415,0,0,-3.7,49,926,0,415,0.301,47.37,66.7,0.88,0.2,888,0.6000000000000001,324,4.1000000000000005,21.8483,16.9805 +2012,1,10,17,30,9.3,1.4000000000000001,0.014,0.62,52,980,533,0,0,-3.6,52,980,0,533,0.297,40.07,60.61,0.88,0.2,887,0.6000000000000001,329,4.4,29.2784,22.8595 +2012,1,10,18,30,10.9,1.45,0.018000000000000002,0.62,58,995,593,0,0,-3.9000000000000004,58,995,0,593,0.293,35.14,57.46,0.88,0.2,886,0.6000000000000001,332,4.2,33.1549,25.9287 +2012,1,10,19,30,12.100000000000001,1.45,0.018000000000000002,0.62,58,987,584,0,0,-4.4,58,987,0,584,0.291,31.27,57.74,0.88,0.2,885,0.7000000000000001,333,3.9000000000000004,32.6039,25.4945 +2012,1,10,20,30,12.700000000000001,1.44,0.018000000000000002,0.62,55,962,516,0,0,-4.7,55,962,0,516,0.29,29.46,61.39,0.87,0.2,885,0.7000000000000001,330,3.6,28.2089,22.0141 +2012,1,10,21,30,12.100000000000001,1.42,0.016,0.62,48,908,390,0,0,-4.5,48,908,0,390,0.291,31.2,67.88,0.87,0.2,884,0.7000000000000001,325,2.6,20.3356,15.7861 +2012,1,10,22,30,9.600000000000001,1.41,0.017,0.62,39,790,224,0,0,-1.9000000000000001,39,790,0,224,0.292,44.53,76.45,0.87,0.2,884,0.6000000000000001,318,1.5,10.8245,8.2966 +2012,1,10,23,30,7.5,1.4000000000000001,0.017,0.62,19,455,48,0,0,-2.5,19,455,0,48,0.293,49.03,86.37,0.87,0.2,884,0.6000000000000001,306,1.2000000000000002,0.0000,0.0000 +2012,1,11,0,30,6.6000000000000005,1.4000000000000001,0.017,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.295,48.99,97.58,0.87,0.2,884,0.6000000000000001,288,1.3,0.0000,0.0000 +2012,1,11,1,30,5.1000000000000005,1.3900000000000001,0.016,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.296,54.84,109.25,0.87,0.2,883,0.6000000000000001,269,1.4000000000000001,0.0000,0.0000 +2012,1,11,2,30,3.4000000000000004,1.3800000000000001,0.017,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.297,62.22,121.3,0.87,0.2,883,0.6000000000000001,258,1.6,0.0000,0.0000 +2012,1,11,3,30,2.4000000000000004,1.37,0.017,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.299,66.8,133.53,0.87,0.2,883,0.5,253,1.8,0.0000,0.0000 +2012,1,11,4,30,1.9000000000000001,1.36,0.018000000000000002,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.299,68.67,145.66,0.87,0.2,882,0.5,250,2.2,0.0000,0.0000 +2012,1,11,5,30,1.5,1.34,0.02,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.299,69.60000000000001,157.09,0.87,0.2,881,0.5,252,2.6,0.0000,0.0000 +2012,1,11,6,30,0.8,1.32,0.021,0.62,0,0,0,0,1,-3.7,0,0,0,0,0.299,72.03,165.57,0.88,0.2,880,0.5,256,2.9000000000000004,0.0000,0.0000 +2012,1,11,7,30,0.2,1.29,0.023,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.298,75.02,164.67000000000002,0.89,0.2,880,0.5,263,3.3000000000000003,0.0000,0.0000 +2012,1,11,8,30,-0.30000000000000004,1.27,0.024,0.62,0,0,0,0,7,-3.7,0,0,0,0,0.298,78.03,155.42000000000002,0.89,0.2,879,0.5,270,3.8000000000000003,0.0000,0.0000 +2012,1,11,9,30,-0.9,1.27,0.024,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.298,81.66,143.8,0.89,0.2,879,0.5,275,3.9000000000000004,0.0000,0.0000 +2012,1,11,10,30,-1.4000000000000001,1.3,0.022,0.62,0,0,0,0,4,-3.8000000000000003,0,0,0,0,0.299,83.95,131.62,0.88,0.2,878,0.5,279,3.9000000000000004,0.0000,0.0000 +2012,1,11,11,30,-1.4000000000000001,1.31,0.02,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.301,82.03,119.4,0.88,0.2,878,0.5,288,4.1000000000000005,0.0000,0.0000 +2012,1,11,12,30,-0.8,1.29,0.021,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.302,74.65,107.38,0.87,0.2,879,0.5,305,4.800000000000001,0.0000,0.0000 +2012,1,11,13,30,0.2,1.25,0.024,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.305,66.94,95.78,0.88,0.2,880,0.6000000000000001,325,5.800000000000001,0.0000,0.0000 +2012,1,11,14,30,1.9000000000000001,1.23,0.03,0.62,26,495,71,7,7,-4.6000000000000005,44,11,7,45,0.308,61.93,84.73,0.9,0.2,881,0.6000000000000001,169,7.6000000000000005,0.0000,0.0000 +2012,1,11,15,30,3.8000000000000003,1.24,0.036000000000000004,0.62,49,763,247,0,7,-2.8000000000000003,138,202,0,191,0.31,61.940000000000005,74.93,0.91,0.2,882,0.8,5,9.1,9.3456,7.1830 +2012,1,11,16,30,4.9,1.24,0.044,0.62,64,863,406,0,7,-2,209,114,0,254,0.312,60.86,66.62,0.92,0.2,883,0.9,7,9.4,13.3807,10.4003 +2012,1,11,17,30,5.6000000000000005,1.25,0.05,0.62,74,907,520,0,6,-2.3000000000000003,178,11,0,183,0.315,56.81,60.5,0.93,0.2,883,1,5,9.600000000000001,10.0591,7.8543 +2012,1,11,18,30,5.7,1.25,0.058,0.62,81,925,580,0,4,-3,175,0,0,176,0.318,53.54,57.32,0.9400000000000001,0.2,883,0.9,4,9.600000000000001,9.8474,7.7016 +2012,1,11,19,30,5.5,1.22,0.057,0.62,80,929,579,0,4,-3.9000000000000004,166,0,0,166,0.32,50.88,57.57,0.9400000000000001,0.2,884,0.8,3,9.5,9.2758,7.2538 +2012,1,11,20,30,4.9,1.21,0.057,0.62,76,901,510,0,4,-4.800000000000001,119,0,0,119,0.322,49.54,61.22,0.9400000000000001,0.2,885,0.8,2,9.3,6.5125,5.0828 +2012,1,11,21,30,3.8000000000000003,1.19,0.054,0.62,67,839,385,0,4,-5.7,101,0,0,101,0.323,50,67.7,0.9400000000000001,0.2,886,0.8,4,8.9,5.2743,4.0951 +2012,1,11,22,30,2.1,1.23,0.055,0.62,53,703,220,0,4,-6.6000000000000005,67,0,0,67,0.325,52.63,76.27,0.9400000000000001,0.2,887,0.7000000000000001,6,8.1,3.2421,2.4858 +2012,1,11,23,30,0.1,1.26,0.049,0.62,23,356,47,7,4,-7.6000000000000005,27,0,7,27,0.325,56.4,86.2,0.9400000000000001,0.2,888,0.7000000000000001,8,7,0.0000,0.0000 +2012,1,12,0,30,-1.4000000000000001,1.25,0.047,0.62,0,0,0,0,1,-8.5,0,0,0,0,0.325,58.5,97.42,0.9400000000000001,0.2,889,0.6000000000000001,9,6.2,0.0000,0.0000 +2012,1,12,1,30,-2.5,1.22,0.044,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.325,59.09,109.09,0.93,0.2,890,0.6000000000000001,10,5.7,0.0000,0.0000 +2012,1,12,2,30,-3.4000000000000004,1.17,0.041,0.62,0,0,0,0,4,-10.3,0,0,0,0,0.325,58.65,121.15,0.93,0.2,890,0.5,12,5.4,0.0000,0.0000 +2012,1,12,3,30,-4.3,1.11,0.04,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.326,57.370000000000005,133.38,0.93,0.2,891,0.5,12,5.1000000000000005,0.0000,0.0000 +2012,1,12,4,30,-5.2,1.05,0.039,0.62,0,0,0,0,1,-12.700000000000001,0,0,0,0,0.327,55.44,145.51,0.93,0.2,892,0.4,12,4.7,0.0000,0.0000 +2012,1,12,5,30,-6,1,0.037,0.62,0,0,0,0,4,-13.8,0,0,0,0,0.327,53.85,156.92000000000002,0.93,0.2,893,0.4,11,4.3,0.0000,0.0000 +2012,1,12,6,30,-6.6000000000000005,0.99,0.035,0.62,0,0,0,0,0,-14.700000000000001,0,0,0,0,0.327,52.410000000000004,165.39000000000001,0.93,0.2,893,0.30000000000000004,9,4,0.0000,0.0000 +2012,1,12,7,30,-7.1000000000000005,1.01,0.033,0.62,0,0,0,0,0,-15.4,0,0,0,0,0.327,51.6,164.57,0.93,0.2,893,0.30000000000000004,5,3.5,0.0000,0.0000 +2012,1,12,8,30,-7.5,1.02,0.03,0.62,0,0,0,0,0,-15.8,0,0,0,0,0.328,51.410000000000004,155.39000000000001,0.92,0.2,894,0.30000000000000004,177,3,0.0000,0.0000 +2012,1,12,9,30,-7.800000000000001,1.04,0.026000000000000002,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.328,52.02,143.8,0.91,0.2,893,0.2,345,2.6,0.0000,0.0000 +2012,1,12,10,30,-7.9,1.06,0.023,0.62,0,0,0,0,0,-15.9,0,0,0,0,0.328,52.78,131.63,0.91,0.2,893,0.2,334,2.6,0.0000,0.0000 +2012,1,12,11,30,-7.800000000000001,1.09,0.021,0.62,0,0,0,0,0,-15.8,0,0,0,0,0.328,52.53,119.4,0.9,0.2,893,0.2,328,2.7,0.0000,0.0000 +2012,1,12,12,30,-7.6000000000000005,1.1,0.02,0.62,0,0,0,0,7,-15.700000000000001,0,0,0,0,0.329,52.32,107.37,0.89,0.2,893,0.2,323,2.9000000000000004,0.0000,0.0000 +2012,1,12,13,30,-7,1.11,0.019,0.62,0,0,0,0,0,-15.4,0,0,0,0,0.33,51.04,95.76,0.89,0.2,893,0.2,313,3.3000000000000003,0.0000,0.0000 +2012,1,12,14,30,-4.9,1.11,0.019,0.62,25,579,78,0,0,-15,25,579,0,78,0.331,44.910000000000004,84.68,0.89,0.2,893,0.2,307,4.2,0.0000,0.0000 +2012,1,12,15,30,-1.9000000000000001,1.11,0.019,0.62,43,857,267,0,1,-14.600000000000001,43,857,0,267,0.33,37.230000000000004,74.87,0.89,0.2,894,0.2,311,5,13.0712,10.0476 +2012,1,12,16,30,0.7000000000000001,1.11,0.019,0.62,53,949,431,0,0,-15.200000000000001,53,949,0,431,0.33,29.28,66.53,0.89,0.2,894,0.30000000000000004,317,5.6000000000000005,22.7213,17.6618 +2012,1,12,17,30,2.6,1.1300000000000001,0.019,0.62,58,1000,552,0,0,-17.400000000000002,58,1000,0,552,0.329,21.3,60.38,0.89,0.2,893,0.30000000000000004,322,5.800000000000001,30.3640,23.7102 +2012,1,12,18,30,3.8000000000000003,1.18,0.022,0.62,62,1016,613,0,0,-18.8,62,1016,0,613,0.328,17.35,57.17,0.89,0.2,892,0.30000000000000004,322,5.7,34.3244,26.8470 +2012,1,12,19,30,4.6000000000000005,1.19,0.023,0.62,63,1014,609,0,0,-19,63,1014,0,609,0.326,16.16,57.4,0.89,0.2,892,0.30000000000000004,322,5.2,34.0600,26.6374 +2012,1,12,20,30,4.9,1.19,0.023,0.62,60,990,540,0,0,-18.6,60,990,0,540,0.325,16.39,61.03,0.89,0.2,891,0.30000000000000004,321,4.6000000000000005,29.5871,23.0947 +2012,1,12,21,30,4.2,1.18,0.023,0.62,54,933,411,0,0,-18,54,933,0,411,0.325,18.16,67.51,0.89,0.2,891,0.30000000000000004,318,3.1,21.4963,16.6936 +2012,1,12,22,30,2,1.18,0.022,0.62,43,813,238,0,0,-13.9,43,813,0,238,0.325,29.830000000000002,76.09,0.89,0.2,891,0.30000000000000004,312,1.6,11.5329,8.8454 +2012,1,12,23,30,0.30000000000000004,1.18,0.023,0.62,21,479,54,0,0,-14.4,21,479,0,54,0.326,32.230000000000004,86.03,0.89,0.2,891,0.30000000000000004,301,1.1,0.0000,0.0000 +2012,1,13,0,30,0.1,1.17,0.024,0.62,0,0,0,0,1,-16,0,0,0,0,0.327,28.62,97.25,0.89,0.2,891,0.30000000000000004,272,0.9,0.0000,0.0000 +2012,1,13,1,30,-0.4,1.16,0.026000000000000002,0.62,0,0,0,0,0,-15.4,0,0,0,0,0.329,31.29,108.93,0.9,0.2,891,0.30000000000000004,235,1,0.0000,0.0000 +2012,1,13,2,30,-1.3,1.1300000000000001,0.029,0.62,0,0,0,0,4,-14.3,0,0,0,0,0.331,36.67,120.99000000000001,0.9,0.2,890,0.30000000000000004,219,1.3,0.0000,0.0000 +2012,1,13,3,30,-1.8,1.11,0.033,0.62,0,0,0,0,4,-13.200000000000001,0,0,0,0,0.332,41.550000000000004,133.22,0.91,0.2,890,0.30000000000000004,222,1.4000000000000001,0.0000,0.0000 +2012,1,13,4,30,-2.1,1.1,0.037,0.62,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.333,44.37,145.35,0.91,0.2,891,0.30000000000000004,232,1.5,0.0000,0.0000 +2012,1,13,5,30,-2.4000000000000004,1.11,0.039,0.62,0,0,0,0,7,-12.200000000000001,0,0,0,0,0.334,46.9,156.75,0.91,0.2,891,0.4,244,1.6,0.0000,0.0000 +2012,1,13,6,30,-2.6,1.1300000000000001,0.04,0.62,0,0,0,0,4,-11.8,0,0,0,0,0.335,49.26,165.20000000000002,0.91,0.2,891,0.4,254,1.6,0.0000,0.0000 +2012,1,13,7,30,-2.8000000000000003,1.1400000000000001,0.042,0.62,0,0,0,0,4,-11.5,0,0,0,0,0.335,51.38,164.47,0.91,0.2,891,0.4,259,1.5,0.0000,0.0000 +2012,1,13,8,30,-3.2,1.1500000000000001,0.043000000000000003,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.336,53.96,155.36,0.91,0.2,891,0.4,259,1.3,0.0000,0.0000 +2012,1,13,9,30,-3.7,1.16,0.042,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.337,55.54,143.79,0.9,0.2,891,0.4,253,1.2000000000000002,0.0000,0.0000 +2012,1,13,10,30,-4.2,1.17,0.04,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.339,56.61,131.63,0.89,0.2,890,0.4,249,1.2000000000000002,0.0000,0.0000 +2012,1,13,11,30,-4.6000000000000005,1.16,0.039,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.341,58.870000000000005,119.4,0.89,0.2,891,0.30000000000000004,255,1.3,0.0000,0.0000 +2012,1,13,12,30,-4.800000000000001,1.16,0.037,0.62,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.34,60.870000000000005,107.36,0.88,0.2,891,0.30000000000000004,265,1.5,0.0000,0.0000 +2012,1,13,13,30,-4.1000000000000005,1.17,0.033,0.62,0,0,0,0,0,-11,0,0,0,0,0.337,58.64,95.74000000000001,0.88,0.2,891,0.30000000000000004,273,2.2,0.0000,0.0000 +2012,1,13,14,30,-2,1.18,0.028,0.62,26,535,76,0,0,-10.600000000000001,26,535,0,76,0.332,51.89,84.64,0.88,0.2,891,0.30000000000000004,280,3.1,0.0000,0.0000 +2012,1,13,15,30,1,1.2,0.023,0.62,45,821,260,0,0,-10.5,45,821,0,260,0.326,41.82,74.81,0.88,0.2,892,0.4,284,3.4000000000000004,12.7352,9.7904 +2012,1,13,16,30,4.2,1.23,0.021,0.62,54,936,428,0,0,-10.5,54,936,0,428,0.322,33.42,66.44,0.88,0.2,892,0.4,288,3.5,22.5792,17.5528 +2012,1,13,17,30,7.2,1.26,0.021,0.62,59,987,549,0,0,-11.200000000000001,59,987,0,549,0.319,25.72,60.26,0.89,0.2,891,0.4,294,3.8000000000000003,30.2206,23.5998 +2012,1,13,18,30,9.4,1.3,0.025,0.62,64,1003,610,0,0,-13,64,1003,0,610,0.318,19.19,57.01,0.89,0.2,891,0.4,299,4.1000000000000005,34.1844,26.7394 +2012,1,13,19,30,10.600000000000001,1.32,0.022,0.62,62,1006,607,0,0,-13.9,62,1006,0,607,0.317,16.41,57.22,0.89,0.2,890,0.4,297,4.1000000000000005,33.9797,26.5768 +2012,1,13,20,30,11,1.36,0.019,0.62,57,986,537,0,0,-14.3,57,986,0,537,0.317,15.530000000000001,60.85,0.88,0.2,890,0.4,293,3.6,29.4552,22.9942 +2012,1,13,21,30,9.4,1.4000000000000001,0.018000000000000002,0.62,50,933,410,0,0,-13.700000000000001,50,933,0,410,0.315,18.05,67.33,0.88,0.2,890,0.4,286,2.2,21.4757,16.6806 +2012,1,13,22,30,5.9,1.41,0.018000000000000002,0.62,41,815,239,0,0,-7.300000000000001,41,815,0,239,0.313,38.04,75.91,0.88,0.2,890,0.4,268,1.4000000000000001,11.5979,8.8983 +2012,1,13,23,30,2.5,1.42,0.017,0.62,21,502,57,0,0,-11,21,502,0,57,0.31,36.26,85.86,0.88,0.2,890,0.4,245,1.7000000000000002,0.0000,0.0000 +2012,1,14,0,30,0.6000000000000001,1.42,0.017,0.62,0,0,0,0,0,-12.5,0,0,0,0,0.309,36.93,97.08,0.88,0.2,891,0.4,233,1.9000000000000001,0.0000,0.0000 +2012,1,14,1,30,-0.1,1.3800000000000001,0.017,0.62,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.309,38.35,108.76,0.88,0.2,891,0.4,231,2.1,0.0000,0.0000 +2012,1,14,2,30,-0.30000000000000004,1.32,0.018000000000000002,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.308,38.46,120.83,0.88,0.2,891,0.30000000000000004,236,2.5,0.0000,0.0000 +2012,1,14,3,30,-0.4,1.28,0.018000000000000002,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.309,38.71,133.07,0.88,0.2,891,0.30000000000000004,245,3,0.0000,0.0000 +2012,1,14,4,30,-0.7000000000000001,1.27,0.017,0.62,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.31,40.27,145.18,0.87,0.2,892,0.30000000000000004,258,3.3000000000000003,0.0000,0.0000 +2012,1,14,5,30,-1.2000000000000002,1.28,0.016,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.311,43.12,156.57,0.87,0.2,892,0.30000000000000004,274,3.1,0.0000,0.0000 +2012,1,14,6,30,-1.6,1.31,0.014,0.62,0,0,0,0,0,-12,0,0,0,0,0.312,45.01,165.01,0.87,0.2,892,0.2,289,2.6,0.0000,0.0000 +2012,1,14,7,30,-2,1.34,0.014,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.312,45.58,164.36,0.86,0.2,893,0.2,300,2.2,0.0000,0.0000 +2012,1,14,8,30,-2.4000000000000004,1.36,0.012,0.62,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.31,45.57,155.32,0.86,0.2,893,0.2,304,2,0.0000,0.0000 +2012,1,14,9,30,-2.6,1.36,0.012,0.62,0,0,0,0,0,-12.9,0,0,0,0,0.308,45.230000000000004,143.78,0.86,0.2,893,0.2,302,1.9000000000000001,0.0000,0.0000 +2012,1,14,10,30,-2.7,1.36,0.011,0.62,0,0,0,0,0,-13,0,0,0,0,0.306,44.87,131.62,0.86,0.2,893,0.2,296,2,0.0000,0.0000 +2012,1,14,11,30,-2.8000000000000003,1.36,0.011,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.304,44.69,119.39,0.86,0.2,893,0.2,293,2.1,0.0000,0.0000 +2012,1,14,12,30,-2.9000000000000004,1.35,0.011,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.303,45.03,107.35000000000001,0.86,0.2,894,0.2,296,2.1,0.0000,0.0000 +2012,1,14,13,30,-2,1.35,0.011,0.62,0,0,0,0,1,-13.100000000000001,0,0,0,0,0.303,42.52,95.71000000000001,0.86,0.2,894,0.2,305,2.3000000000000003,0.0000,0.0000 +2012,1,14,14,30,0.9,1.36,0.012,0.62,23,613,80,0,1,-12.200000000000001,23,613,0,80,0.302,37.03,84.60000000000001,0.87,0.2,895,0.2,315,2.9000000000000004,0.0000,0.0000 +2012,1,14,15,30,4.2,1.36,0.012,0.62,38,861,265,0,1,-12.200000000000001,38,861,0,265,0.301,29.22,74.74,0.87,0.2,896,0.30000000000000004,328,2.9000000000000004,12.9882,9.9861 +2012,1,14,16,30,7.2,1.37,0.012,0.62,46,965,433,0,1,-11.600000000000001,46,965,0,433,0.3,24.93,66.34,0.87,0.2,896,0.30000000000000004,172,2.1,22.8609,17.7735 +2012,1,14,17,30,9.9,1.3800000000000001,0.013000000000000001,0.62,51,1012,556,0,0,-11.4,51,1012,0,556,0.299,21.01,60.120000000000005,0.87,0.2,896,0.30000000000000004,39,1.3,30.6313,23.9225 +2012,1,14,18,30,12.200000000000001,1.37,0.017,0.62,58,1026,619,0,0,-11.8,58,1026,0,619,0.297,17.51,56.85,0.87,0.2,895,0.30000000000000004,128,1.2000000000000002,34.7169,27.1579 +2012,1,14,19,30,13.9,1.36,0.017,0.62,58,1026,616,0,0,-12.600000000000001,58,1026,0,616,0.296,14.76,57.04,0.88,0.2,894,0.30000000000000004,189,2,34.5153,26.9979 +2012,1,14,20,30,14.600000000000001,1.35,0.017,0.62,56,1003,547,0,0,-13.100000000000001,56,1003,0,547,0.295,13.5,60.65,0.88,0.2,893,0.30000000000000004,191,2.5,30.0402,23.4537 +2012,1,14,21,30,13.3,1.34,0.018000000000000002,0.62,51,948,419,0,0,-12.8,51,948,0,419,0.295,15.01,67.14,0.88,0.2,893,0.30000000000000004,184,2,21.9811,17.0764 +2012,1,14,22,30,9.1,1.34,0.02,0.62,42,827,246,0,0,-5.9,42,827,0,246,0.294,34.1,75.72,0.88,0.2,893,0.30000000000000004,175,1.6,11.9561,9.1763 +2012,1,14,23,30,5.1000000000000005,1.33,0.02,0.62,22,514,61,0,0,-7.800000000000001,22,514,0,61,0.294,38.84,85.69,0.88,0.2,893,0.30000000000000004,172,1.9000000000000001,0.0000,0.0000 +2012,1,15,0,30,3.6,1.31,0.022,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.294,38.22,96.91,0.88,0.2,893,0.30000000000000004,176,2.3000000000000003,0.0000,0.0000 +2012,1,15,1,30,3,1.28,0.023,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.293,39.15,108.60000000000001,0.87,0.2,893,0.30000000000000004,182,2.6,0.0000,0.0000 +2012,1,15,2,30,2.4000000000000004,1.26,0.025,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.293,40.33,120.67,0.88,0.2,892,0.30000000000000004,192,2.7,0.0000,0.0000 +2012,1,15,3,30,1.9000000000000001,1.23,0.026000000000000002,0.62,0,0,0,0,0,-10,0,0,0,0,0.293,40.99,132.91,0.88,0.2,892,0.30000000000000004,205,2.8000000000000003,0.0000,0.0000 +2012,1,15,4,30,1.5,1.22,0.027,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.294,40.89,145.02,0.88,0.2,892,0.30000000000000004,220,3.1,0.0000,0.0000 +2012,1,15,5,30,1.2000000000000002,1.22,0.026000000000000002,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.294,40.09,156.39000000000001,0.88,0.2,891,0.30000000000000004,231,3.5,0.0000,0.0000 +2012,1,15,6,30,0.8,1.23,0.025,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.295,39.730000000000004,164.82,0.88,0.2,891,0.2,236,4,0.0000,0.0000 +2012,1,15,7,30,0.30000000000000004,1.22,0.025,0.62,0,0,0,0,4,-11.700000000000001,0,0,0,0,0.296,40.230000000000004,164.23,0.89,0.2,891,0.2,238,4.2,0.0000,0.0000 +2012,1,15,8,30,-0.2,1.22,0.024,0.62,0,0,0,0,4,-11.700000000000001,0,0,0,0,0.297,41.72,155.27,0.89,0.2,890,0.2,241,4.2,0.0000,0.0000 +2012,1,15,9,30,-0.6000000000000001,1.22,0.023,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.298,43.76,143.76,0.89,0.2,889,0.2,242,4.3,0.0000,0.0000 +2012,1,15,10,30,-0.8,1.22,0.023,0.62,0,0,0,0,1,-11.200000000000001,0,0,0,0,0.3,45.27,131.61,0.89,0.2,889,0.2,242,4.5,0.0000,0.0000 +2012,1,15,11,30,-0.9,1.23,0.023,0.62,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.303,46.050000000000004,119.38,0.9,0.2,889,0.2,240,4.7,0.0000,0.0000 +2012,1,15,12,30,-0.8,1.23,0.026000000000000002,0.62,0,0,0,0,7,-11,0,0,0,0,0.306,45.78,107.32000000000001,0.9,0.2,888,0.30000000000000004,240,4.9,0.0000,0.0000 +2012,1,15,13,30,-0.2,1.23,0.027,0.62,0,0,0,0,7,-11,0,0,0,0,0.31,43.87,95.67,0.91,0.2,888,0.30000000000000004,240,5.300000000000001,0.0000,0.0000 +2012,1,15,14,30,1.5,1.24,0.027,0.62,27,545,78,7,4,-11,44,1,7,44,0.313,38.99,84.55,0.91,0.2,888,0.30000000000000004,241,5.6000000000000005,0.0000,0.0000 +2012,1,15,15,30,4.800000000000001,1.25,0.027,0.62,47,817,263,0,1,-10.9,47,817,0,263,0.316,31.14,74.66,0.91,0.2,888,0.4,239,5.7,12.8993,9.9191 +2012,1,15,16,30,9.3,1.27,0.025,0.62,56,932,432,0,1,-10.5,56,932,0,432,0.317,23.53,66.23,0.9,0.2,888,0.4,240,6.1000000000000005,22.8278,17.7495 +2012,1,15,17,30,13.600000000000001,1.28,0.023,0.62,61,987,554,7,2,-10.700000000000001,216,643,7,537,0.317,17.490000000000002,59.99,0.89,0.2,887,0.4,245,7.1000000000000005,29.6072,23.1243 +2012,1,15,18,30,16.400000000000002,1.27,0.021,0.62,61,1011,617,0,1,-11.5,61,1011,0,617,0.313,13.68,56.68,0.88,0.2,885,0.4,248,7.800000000000001,34.6343,27.0953 +2012,1,15,19,30,17.7,1.25,0.022,0.62,62,999,608,0,0,-11.600000000000001,62,999,0,608,0.309,12.46,56.85,0.88,0.2,885,0.5,248,8.200000000000001,34.1000,26.6753 +2012,1,15,20,30,18,1.23,0.023,0.62,60,975,540,0,0,-11.600000000000001,60,975,0,540,0.304,12.290000000000001,60.46,0.88,0.2,884,0.5,248,8.3,29.6897,23.1826 +2012,1,15,21,30,17.5,1.22,0.024,0.62,55,918,414,0,0,-11.5,55,918,0,414,0.302,12.77,66.94,0.88,0.2,883,0.5,247,7.7,21.7539,16.9032 +2012,1,15,22,30,15.5,1.21,0.024,0.62,44,790,241,0,0,-10.8,44,790,0,241,0.3,15.3,75.54,0.88,0.2,883,0.6000000000000001,245,6.7,11.7306,9.0062 +2012,1,15,23,30,13,1.22,0.024,0.62,23,466,59,0,0,-9.700000000000001,23,466,0,59,0.298,19.7,85.52,0.9,0.2,883,0.7000000000000001,246,6.1000000000000005,0.0000,0.0000 +2012,1,16,0,30,11.4,1.24,0.029,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.296,23.580000000000002,96.74000000000001,0.92,0.2,884,0.8,247,5.9,0.0000,0.0000 +2012,1,16,1,30,10.600000000000001,1.25,0.033,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.295,27.19,108.43,0.92,0.2,884,0.9,248,5.6000000000000005,0.0000,0.0000 +2012,1,16,2,30,9.9,1.29,0.033,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.294,30.94,120.51,0.92,0.2,884,0.9,249,5.5,0.0000,0.0000 +2012,1,16,3,30,9.1,1.34,0.026000000000000002,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.293,35.01,132.75,0.91,0.2,884,1,251,5.5,0.0000,0.0000 +2012,1,16,4,30,8.4,1.33,0.026000000000000002,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.292,39.19,144.85,0.92,0.2,884,1.1,251,5.7,0.0000,0.0000 +2012,1,16,5,30,7.6000000000000005,1.33,0.027,0.62,0,0,0,0,4,-3.8000000000000003,0,0,0,0,0.292,44.39,156.21,0.92,0.2,884,1.2000000000000002,250,5.5,0.0000,0.0000 +2012,1,16,6,30,6.800000000000001,1.35,0.028,0.62,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.292,50.02,164.62,0.93,0.2,884,1.2000000000000002,247,5.300000000000001,0.0000,0.0000 +2012,1,16,7,30,6.5,1.36,0.029,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.291,54.25,164.1,0.93,0.2,884,1.2000000000000002,245,5.300000000000001,0.0000,0.0000 +2012,1,16,8,30,6.4,1.35,0.032,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.291,58.07,155.22,0.93,0.2,884,1.3,246,5.300000000000001,0.0000,0.0000 +2012,1,16,9,30,6.2,1.35,0.034,0.62,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.29,61.870000000000005,143.74,0.93,0.2,884,1.3,247,5.2,0.0000,0.0000 +2012,1,16,10,30,6,1.36,0.032,0.62,0,0,0,0,0,-0.1,0,0,0,0,0.29,64.98,131.59,0.93,0.2,883,1.3,249,5.1000000000000005,0.0000,0.0000 +2012,1,16,11,30,5.6000000000000005,1.37,0.028,0.62,0,0,0,0,4,0.30000000000000004,0,0,0,0,0.289,68.76,119.36,0.92,0.2,884,1.3,250,5,0.0000,0.0000 +2012,1,16,12,30,5.2,1.3800000000000001,0.024,0.62,0,0,0,0,7,0.6000000000000001,0,0,0,0,0.289,72.21000000000001,107.29,0.92,0.2,884,1.2000000000000002,249,4.9,0.0000,0.0000 +2012,1,16,13,30,5.5,1.4000000000000001,0.022,0.62,0,0,0,0,7,0.9,0,0,0,0,0.289,72.05,95.63,0.91,0.2,884,1.2000000000000002,248,5.1000000000000005,0.0000,0.0000 +2012,1,16,14,30,7.2,1.42,0.02,0.62,25,507,73,7,8,1.1,48,22,7,50,0.289,65.36,84.49,0.91,0.2,884,1.2000000000000002,247,5.4,0.0000,0.0000 +2012,1,16,15,30,10.600000000000001,1.45,0.019,0.62,43,790,253,0,3,1.6,150,132,0,185,0.28800000000000003,53.82,74.58,0.9,0.2,884,1.1,246,6,9.0802,6.9833 +2012,1,16,16,30,14.4,1.46,0.018000000000000002,0.62,51,902,416,0,0,2.4000000000000004,51,902,0,416,0.28700000000000003,44.38,66.12,0.9,0.2,883,1.1,249,7.300000000000001,22.0011,17.1084 +2012,1,16,17,30,17.1,1.47,0.017,0.62,55,954,535,0,0,2.5,55,954,0,535,0.28600000000000003,37.6,59.84,0.9,0.2,882,1.1,249,8.6,29.5228,23.0603 +2012,1,16,18,30,18.3,1.41,0.018000000000000002,0.62,58,970,594,0,0,1.3,58,970,0,594,0.28500000000000003,31.89,56.51,0.9,0.2,881,1.2000000000000002,246,9.4,33.3716,26.1094 +2012,1,16,19,30,18.6,1.36,0.018000000000000002,0.62,58,965,589,0,0,0.4,58,965,0,589,0.28500000000000003,29.330000000000002,56.65,0.91,0.2,881,1.3,244,9.8,33.0676,25.8699 +2012,1,16,20,30,18.1,1.3,0.022,0.62,59,937,524,0,1,1.6,59,937,0,524,0.28400000000000003,33.04,60.25,0.92,0.2,880,1.3,242,9.600000000000001,28.8461,22.5266 +2012,1,16,21,30,17.5,1.27,0.025,0.62,55,880,403,0,0,2.4000000000000004,55,880,0,403,0.28400000000000003,36.4,66.74,0.92,0.2,880,1.2000000000000002,242,8.8,21.2098,16.4836 +2012,1,16,22,30,16.2,1.24,0.026000000000000002,0.62,45,762,238,0,0,1.8,45,762,0,238,0.28300000000000003,37.72,75.34,0.91,0.2,880,1.1,243,7.5,11.6041,8.9123 +2012,1,16,23,30,14.3,1.21,0.024,0.62,23,460,61,0,0,0.7000000000000001,23,460,0,61,0.28300000000000003,39.51,85.34,0.91,0.2,880,1,245,6.5,0.0000,0.0000 +2012,1,17,0,30,13,1.17,0.023,0.62,0,0,0,0,1,0.2,0,0,0,0,0.28200000000000003,41.32,96.56,0.91,0.2,881,1,247,6.5,0.0000,0.0000 +2012,1,17,1,30,12.100000000000001,1.1500000000000001,0.024,0.62,0,0,0,0,0,0,0,0,0,0,0.281,43.44,108.27,0.91,0.2,882,0.9,252,6.6000000000000005,0.0000,0.0000 +2012,1,17,2,30,11.200000000000001,1.18,0.021,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.281,44.9,120.35000000000001,0.9,0.2,882,0.8,260,6.7,0.0000,0.0000 +2012,1,17,3,30,10.200000000000001,1.22,0.02,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.281,45.12,132.58,0.9,0.2,883,0.7000000000000001,268,6.800000000000001,0.0000,0.0000 +2012,1,17,4,30,9.3,1.24,0.021,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.28200000000000003,46.1,144.68,0.9,0.2,884,0.7000000000000001,271,6.7,0.0000,0.0000 +2012,1,17,5,30,8.3,1.23,0.022,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.28200000000000003,49.51,156.02,0.89,0.2,885,0.6000000000000001,274,6.5,0.0000,0.0000 +2012,1,17,6,30,7.1000000000000005,1.22,0.022,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.28200000000000003,54.54,164.41,0.89,0.2,886,0.6000000000000001,276,5.800000000000001,0.0000,0.0000 +2012,1,17,7,30,5.7,1.22,0.022,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.28200000000000003,60.47,163.96,0.89,0.2,886,0.6000000000000001,280,4.7,0.0000,0.0000 +2012,1,17,8,30,3.9000000000000004,1.22,0.023,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.28200000000000003,68.46000000000001,155.16,0.89,0.2,887,0.6000000000000001,294,3.7,0.0000,0.0000 +2012,1,17,9,30,1.6,1.24,0.026000000000000002,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.28200000000000003,78.25,143.70000000000002,0.9,0.2,889,0.6000000000000001,329,3.8000000000000003,0.0000,0.0000 +2012,1,17,10,30,-1,1.27,0.031,0.62,0,0,0,0,0,-3,0,0,0,0,0.28200000000000003,86.06,131.57,0.92,0.2,890,0.6000000000000001,182,4.9,0.0000,0.0000 +2012,1,17,11,30,-3.5,1.31,0.036000000000000004,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.28200000000000003,85.57000000000001,119.33,0.93,0.2,892,0.6000000000000001,15,5.4,0.0000,0.0000 +2012,1,17,12,30,-5.300000000000001,1.36,0.039,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.28300000000000003,79.33,107.26,0.93,0.2,893,0.5,16,5.1000000000000005,0.0000,0.0000 +2012,1,17,13,30,-5.9,1.3800000000000001,0.042,0.62,0,0,0,0,1,-9.9,0,0,0,0,0.28200000000000003,73.28,95.58,0.93,0.2,894,0.5,17,4.7,0.0000,0.0000 +2012,1,17,14,30,-5.1000000000000005,1.3900000000000001,0.042,0.62,29,489,77,0,0,-10.700000000000001,29,489,0,77,0.28200000000000003,64.76,84.42,0.93,0.2,895,0.5,22,4.6000000000000005,0.0000,0.0000 +2012,1,17,15,30,-3.3000000000000003,1.3900000000000001,0.041,0.62,53,784,262,0,1,-11.3,53,784,0,262,0.281,53.97,74.48,0.93,0.2,896,0.5,31,4.4,12.8710,9.9005 +2012,1,17,16,30,-1.2000000000000002,1.3800000000000001,0.04,0.62,64,902,431,0,1,-11.700000000000001,64,902,0,431,0.281,44.83,66,0.93,0.2,896,0.5,42,4.1000000000000005,22.8156,17.7438 +2012,1,17,17,30,0.8,1.37,0.039,0.62,71,958,554,0,0,-11.9,71,958,0,554,0.28,38.06,59.68,0.93,0.2,896,0.5,53,3.5,30.5996,23.9036 +2012,1,17,18,30,2.4000000000000004,1.3800000000000001,0.038,0.62,73,982,618,0,0,-11.8,73,982,0,618,0.281,34.19,56.32,0.93,0.2,895,0.5,60,2.5,34.7526,27.1921 +2012,1,17,19,30,3.4000000000000004,1.37,0.04,0.62,74,971,610,0,0,-11.4,74,971,0,610,0.281,33.07,56.45,0.93,0.2,895,0.6000000000000001,54,1.3,34.2807,26.8213 +2012,1,17,20,30,4.1000000000000005,1.36,0.044,0.62,72,941,542,0,0,-10.700000000000001,72,941,0,542,0.281,33.27,60.04,0.93,0.2,895,0.6000000000000001,121,0.5,29.8741,23.3321 +2012,1,17,21,30,4.3,1.33,0.032,0.62,60,901,419,0,0,-9.9,60,901,0,419,0.281,34.82,66.53,0.92,0.2,894,0.6000000000000001,166,0.7000000000000001,22.0887,17.1700 +2012,1,17,22,30,3.2,1.34,0.029,0.62,47,787,249,0,0,-9.200000000000001,47,787,0,249,0.281,39.65,75.15,0.92,0.2,894,0.6000000000000001,126,1.3,12.1603,9.3427 +2012,1,17,23,30,1,1.34,0.027,0.62,25,485,66,0,0,-8,25,485,0,66,0.28300000000000003,51.1,85.15,0.92,0.2,894,0.6000000000000001,117,1.7000000000000002,0.0000,0.0000 +2012,1,18,0,30,-0.2,1.31,0.027,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.28500000000000003,50.95,96.39,0.91,0.2,894,0.6000000000000001,125,2.3000000000000003,0.0000,0.0000 +2012,1,18,1,30,-0.7000000000000001,1.29,0.028,0.62,0,0,0,0,0,-10,0,0,0,0,0.28800000000000003,49.38,108.10000000000001,0.91,0.2,894,0.6000000000000001,136,2.7,0.0000,0.0000 +2012,1,18,2,30,-1.3,1.28,0.028,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.29,49.71,120.18,0.91,0.2,894,0.6000000000000001,149,3,0.0000,0.0000 +2012,1,18,3,30,-1.8,1.27,0.026000000000000002,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.291,51.160000000000004,132.42000000000002,0.9,0.2,894,0.5,168,3.2,0.0000,0.0000 +2012,1,18,4,30,-2.2,1.27,0.025,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.292,53.78,144.51,0.9,0.2,894,0.5,188,3.6,0.0000,0.0000 +2012,1,18,5,30,-2.4000000000000004,1.27,0.025,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.293,56.84,155.84,0.9,0.2,893,0.5,200,4.2,0.0000,0.0000 +2012,1,18,6,30,-2.7,1.26,0.024,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.292,60.24,164.20000000000002,0.91,0.2,893,0.5,206,4.5,0.0000,0.0000 +2012,1,18,7,30,-2.9000000000000004,1.26,0.025,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.293,62.04,163.82,0.91,0.2,893,0.6000000000000001,212,4.7,0.0000,0.0000 +2012,1,18,8,30,-3.1,1.26,0.025,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.293,63.410000000000004,155.09,0.91,0.2,893,0.6000000000000001,221,4.800000000000001,0.0000,0.0000 +2012,1,18,9,30,-3.2,1.26,0.025,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.295,65.7,143.67000000000002,0.91,0.2,892,0.6000000000000001,228,4.7,0.0000,0.0000 +2012,1,18,10,30,-3.3000000000000003,1.25,0.024,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.298,70.26,131.54,0.91,0.2,892,0.6000000000000001,231,4.6000000000000005,0.0000,0.0000 +2012,1,18,11,30,-3.4000000000000004,1.21,0.024,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.3,75.11,119.3,0.9,0.2,892,0.6000000000000001,233,4.6000000000000005,0.0000,0.0000 +2012,1,18,12,30,-3.3000000000000003,1.17,0.022,0.62,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.303,77.63,107.22,0.9,0.2,891,0.5,239,4.7,0.0000,0.0000 +2012,1,18,13,30,-2.4000000000000004,1.16,0.021,0.62,0,0,0,0,4,-6.4,0,0,0,0,0.305,74.24,95.53,0.9,0.2,891,0.5,245,4.9,0.0000,0.0000 +2012,1,18,14,30,0,1.1500000000000001,0.019,0.62,25,553,80,7,4,-6.300000000000001,45,1,7,45,0.307,62.39,84.35000000000001,0.9,0.2,891,0.5,251,5,0.0000,0.0000 +2012,1,18,15,30,3.9000000000000004,1.1500000000000001,0.017,0.62,42,831,266,0,8,-6.2,141,124,0,175,0.308,47.75,74.39,0.89,0.2,891,0.5,255,4.800000000000001,8.6040,6.6193 +2012,1,18,16,30,8.8,1.1500000000000001,0.016,0.62,50,939,435,0,7,-5.7,198,276,0,311,0.308,35.29,65.87,0.89,0.2,891,0.5,270,5.2,16.4798,12.8178 +2012,1,18,17,30,12.700000000000001,1.1500000000000001,0.016,0.62,55,981,553,0,7,-7.7,257,216,0,367,0.308,23.38,59.53,0.89,0.2,890,0.6000000000000001,285,5.9,20.2884,15.8500 +2012,1,18,18,30,14.700000000000001,1.18,0.019,0.62,60,998,617,0,7,-9.8,268,335,0,454,0.309,17.48,56.13,0.89,0.2,889,0.6000000000000001,287,5.800000000000001,25.5540,19.9963 +2012,1,18,19,30,15.600000000000001,1.16,0.018000000000000002,0.62,59,992,610,0,7,-10.4,213,477,0,478,0.31,15.75,56.24,0.88,0.2,888,0.7000000000000001,280,5.5,26.8904,21.0411 +2012,1,18,20,30,15.9,1.1400000000000001,0.018000000000000002,0.62,56,970,544,0,4,-10.200000000000001,298,216,0,406,0.309,15.67,59.83,0.88,0.2,887,0.7000000000000001,273,5.5,22.4055,17.5011 +2012,1,18,21,30,15.3,1.1300000000000001,0.017,0.62,50,919,420,0,8,-9.600000000000001,142,561,0,367,0.306,16.990000000000002,66.32000000000001,0.88,0.2,886,0.7000000000000001,265,4.7,19.3794,15.0670 +2012,1,18,22,30,12.200000000000001,1.1300000000000001,0.017,0.62,41,807,251,0,7,-7.800000000000001,134,204,0,187,0.302,24.03,74.95,0.88,0.2,885,0.7000000000000001,256,3.1,9.1483,7.0311 +2012,1,18,23,30,8.5,1.1,0.019,0.62,23,508,68,0,1,-5.800000000000001,23,508,0,68,0.299,35.85,84.97,0.88,0.2,885,0.7000000000000001,250,2.4000000000000004,0.0000,0.0000 +2012,1,19,0,30,7.1000000000000005,1.04,0.023,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.297,37.57,96.21000000000001,0.88,0.2,885,0.8,251,2.8000000000000003,0.0000,0.0000 +2012,1,19,1,30,7.1000000000000005,0.97,0.028,0.62,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.296,36.46,107.93,0.89,0.2,885,0.8,253,3.6,0.0000,0.0000 +2012,1,19,2,30,7.1000000000000005,0.9500000000000001,0.028,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.293,35.45,120.02,0.89,0.2,884,0.9,256,4.5,0.0000,0.0000 +2012,1,19,3,30,7,0.98,0.022,0.62,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.291,35.35,132.25,0.9,0.2,884,0.9,260,5.1000000000000005,0.0000,0.0000 +2012,1,19,4,30,6.6000000000000005,1.03,0.018000000000000002,0.62,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.289,36.480000000000004,144.34,0.9,0.2,883,0.9,264,5.300000000000001,0.0000,0.0000 +2012,1,19,5,30,6.2,1.08,0.016,0.62,0,0,0,0,7,-7.2,0,0,0,0,0.28700000000000003,37.72,155.64000000000001,0.9,0.2,883,0.9,266,5.6000000000000005,0.0000,0.0000 +2012,1,19,6,30,5.7,1.11,0.015,0.62,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.28600000000000003,39.21,163.98,0.9,0.2,883,0.9,270,5.800000000000001,0.0000,0.0000 +2012,1,19,7,30,5.1000000000000005,1.1300000000000001,0.015,0.62,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.28500000000000003,41.03,163.66,0.9,0.2,883,0.8,275,5.7,0.0000,0.0000 +2012,1,19,8,30,4.7,1.1500000000000001,0.014,0.62,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.28400000000000003,42.2,155.01,0.89,0.2,883,0.9,277,5.4,0.0000,0.0000 +2012,1,19,9,30,4.5,1.1500000000000001,0.013000000000000001,0.62,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.28300000000000003,42.67,143.62,0.89,0.2,883,0.9,279,5.2,0.0000,0.0000 +2012,1,19,10,30,4.4,1.1400000000000001,0.013000000000000001,0.62,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.281,42.87,131.51,0.89,0.2,883,0.9,280,5,0.0000,0.0000 +2012,1,19,11,30,4.2,1.12,0.013000000000000001,0.62,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.279,43.550000000000004,119.26,0.89,0.2,884,0.9,282,4.7,0.0000,0.0000 +2012,1,19,12,30,3.9000000000000004,1.1,0.013000000000000001,0.62,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.278,44.63,107.18,0.89,0.2,884,0.9,284,4.3,0.0000,0.0000 +2012,1,19,13,30,4.5,1.09,0.013000000000000001,0.62,0,0,0,0,7,-7,0,0,0,0,0.277,43.11,95.47,0.89,0.2,885,0.9,288,4.2,0.0000,0.0000 +2012,1,19,14,30,6.9,1.09,0.013000000000000001,0.62,23,548,78,7,7,-6.800000000000001,48,17,7,50,0.276,37.01,84.28,0.88,0.2,885,0.9,292,4.5,0.0000,0.0000 +2012,1,19,15,30,10.100000000000001,1.1,0.013000000000000001,0.62,39,811,259,0,7,-6.4,133,50,0,147,0.275,30.8,74.29,0.88,0.2,885,1,296,4,7.2339,5.5662 +2012,1,19,16,30,13.8,1.11,0.013000000000000001,0.62,47,917,424,0,7,-5.5,203,168,0,272,0.275,25.85,65.74,0.88,0.2,885,1,307,2.5,14.4275,11.2229 +2012,1,19,17,30,17.1,1.12,0.014,0.62,53,965,545,0,4,-5.300000000000001,306,177,0,396,0.274,21.2,59.36,0.89,0.2,885,1,255,1.5,21.9128,17.1206 +2012,1,19,18,30,19.1,1.16,0.017,0.62,58,978,606,0,8,-5.1000000000000005,176,573,0,497,0.273,18.96,55.94,0.89,0.2,884,1.1,193,2.1,28.0002,21.9122 +2012,1,19,19,30,20.1,1.16,0.018000000000000002,0.62,59,976,604,0,7,-4.7,247,354,0,445,0.273,18.44,56.03,0.89,0.2,883,1.1,188,3.2,25.0596,19.6103 +2012,1,19,20,30,20.3,1.1500000000000001,0.02,0.62,58,951,539,0,7,-4.1000000000000005,228,345,0,402,0.275,18.94,59.61,0.89,0.2,882,1.1,185,3.7,22.2130,17.3529 +2012,1,19,21,30,19.400000000000002,1.12,0.019,0.62,52,899,416,7,7,-3.6,126,671,7,398,0.277,20.81,66.11,0.89,0.2,882,1.1,178,3.4000000000000004,21.0508,16.3696 +2012,1,19,22,30,16,1.09,0.019,0.62,43,786,249,0,0,-1.8,43,786,0,249,0.279,29.55,74.75,0.89,0.2,882,1.1,166,2.6,12.2029,9.3821 +2012,1,19,23,30,12.200000000000001,1.05,0.02,0.62,24,492,69,0,0,-0.7000000000000001,24,492,0,69,0.281,40.99,84.79,0.89,0.2,882,1.1,154,2.7,0.0000,0.0000 +2012,1,20,0,30,10.600000000000001,1.03,0.021,0.62,0,0,0,0,1,-1.9000000000000001,0,0,0,0,0.28300000000000003,41.52,96.03,0.89,0.2,883,1,152,3.7,0.0000,0.0000 +2012,1,20,1,30,9.4,1.04,0.023,0.62,0,0,0,0,1,-2.4000000000000004,0,0,0,0,0.28300000000000003,43.59,107.76,0.89,0.2,883,1,155,4.2,0.0000,0.0000 +2012,1,20,2,30,8.1,1.07,0.024,0.62,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.28300000000000003,47.89,119.85000000000001,0.88,0.2,883,0.9,164,3.8000000000000003,0.0000,0.0000 +2012,1,20,3,30,7,1.1,0.024,0.62,0,0,0,0,0,-2,0,0,0,0,0.28400000000000003,52.59,132.09,0.88,0.2,882,0.9,175,3.2,0.0000,0.0000 +2012,1,20,4,30,6.1000000000000005,1.11,0.022,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.28400000000000003,56.5,144.17000000000002,0.88,0.2,882,0.8,189,2.9000000000000004,0.0000,0.0000 +2012,1,20,5,30,5.7,1.08,0.019,0.62,0,0,0,0,0,-2,0,0,0,0,0.28400000000000003,57.69,155.45000000000002,0.88,0.2,881,0.7000000000000001,206,2.9000000000000004,0.0000,0.0000 +2012,1,20,6,30,5.5,1.04,0.016,0.62,0,0,0,0,0,-2.2,0,0,0,0,0.28400000000000003,57.6,163.76,0.89,0.2,881,0.7000000000000001,224,3.2,0.0000,0.0000 +2012,1,20,7,30,5.4,1.03,0.015,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.28400000000000003,56.53,163.49,0.89,0.2,880,0.7000000000000001,240,3.9000000000000004,0.0000,0.0000 +2012,1,20,8,30,5.4,1.03,0.014,0.62,0,0,0,0,0,-3,0,0,0,0,0.28500000000000003,54.800000000000004,154.92000000000002,0.89,0.2,879,0.7000000000000001,250,4.5,0.0000,0.0000 +2012,1,20,9,30,5.4,1.04,0.014,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.28600000000000003,53.06,143.57,0.89,0.2,879,0.7000000000000001,258,4.800000000000001,0.0000,0.0000 +2012,1,20,10,30,5.4,1.08,0.015,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.28700000000000003,51.57,131.46,0.89,0.2,878,0.6000000000000001,262,5,0.0000,0.0000 +2012,1,20,11,30,5.4,1.1300000000000001,0.015,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.28800000000000003,50.45,119.22,0.88,0.2,879,0.6000000000000001,264,5.2,0.0000,0.0000 +2012,1,20,12,30,5.300000000000001,1.18,0.015,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.28800000000000003,49.93,107.12,0.87,0.2,879,0.5,265,5.300000000000001,0.0000,0.0000 +2012,1,20,13,30,5.7,1.21,0.014,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.28800000000000003,47.9,95.41,0.86,0.2,880,0.5,268,5.6000000000000005,0.0000,0.0000 +2012,1,20,14,30,7.7,1.2,0.015,0.62,24,577,83,0,0,-4.6000000000000005,24,577,0,83,0.28700000000000003,41.36,84.19,0.86,0.2,880,0.5,269,5.9,0.0000,0.0000 +2012,1,20,15,30,11.200000000000001,1.18,0.016,0.62,42,840,271,0,1,-4.5,42,840,0,271,0.28800000000000003,32.92,74.18,0.87,0.2,880,0.5,269,5.7,13.3493,10.2737 +2012,1,20,16,30,15.600000000000001,1.1500000000000001,0.018000000000000002,0.62,52,951,445,0,0,-4.1000000000000005,52,951,0,445,0.289,25.57,65.6,0.88,0.2,880,0.4,276,5.9,23.6291,18.3829 +2012,1,20,17,30,18.900000000000002,1.12,0.019,0.62,58,999,570,0,0,-5.6000000000000005,58,999,0,570,0.289,18.55,59.19,0.88,0.2,880,0.4,289,6.5,31.5716,24.6693 +2012,1,20,18,30,20.400000000000002,1.08,0.021,0.62,62,1017,635,0,3,-7.6000000000000005,323,320,0,503,0.289,14.42,55.74,0.88,0.2,879,0.4,298,6.2,28.3655,22.2000 +2012,1,20,19,30,20.700000000000003,1.02,0.024,0.62,65,1003,628,0,0,-8.5,65,1003,0,628,0.28700000000000003,13.27,55.81,0.89,0.2,879,0.5,307,5.4,35.4027,27.7067 +2012,1,20,20,30,20,0.98,0.029,0.62,65,959,553,0,8,-8.5,189,551,0,470,0.28500000000000003,13.85,59.38,0.9,0.2,880,0.7000000000000001,323,4.7,26.0047,20.3174 +2012,1,20,21,30,18.400000000000002,0.88,0.03,0.62,60,902,428,0,6,-7.6000000000000005,215,58,0,239,0.28500000000000003,16.43,65.89,0.9,0.2,881,0.7000000000000001,171,3.9000000000000004,12.6626,9.8487 +2012,1,20,22,30,14.700000000000001,0.85,0.03,0.62,48,784,257,0,7,-4.800000000000001,1,621,0,166,0.28600000000000003,25.69,74.54,0.89,0.2,882,0.7000000000000001,22,3,8.1505,6.2688 +2012,1,20,23,30,10.4,0.85,0.03,0.62,27,484,72,7,7,-2.1,50,26,7,52,0.28700000000000003,41.49,84.60000000000001,0.89,0.2,883,0.7000000000000001,44,2.8000000000000003,0.0000,0.0000 +2012,1,21,0,30,8,0.88,0.029,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.289,50.07,95.85000000000001,0.88,0.2,885,0.7000000000000001,51,3,0.0000,0.0000 +2012,1,21,1,30,6.6000000000000005,0.92,0.028,0.62,0,0,0,0,1,-1.6,0,0,0,0,0.29,55.65,107.58,0.88,0.2,886,0.8,53,2.8000000000000003,0.0000,0.0000 +2012,1,21,2,30,5.4,0.96,0.027,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.292,58.44,119.68,0.88,0.2,887,0.8,56,2.7,0.0000,0.0000 +2012,1,21,3,30,4.3,1,0.028,0.62,0,0,0,0,0,-3,0,0,0,0,0.294,59.22,131.92000000000002,0.89,0.2,887,0.8,61,2.8000000000000003,0.0000,0.0000 +2012,1,21,4,30,3,1.03,0.028,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.294,60.870000000000005,143.99,0.89,0.2,888,0.8,63,2.8000000000000003,0.0000,0.0000 +2012,1,21,5,30,1.6,1.05,0.027,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.294,63.97,155.25,0.89,0.2,889,0.8,61,2.5,0.0000,0.0000 +2012,1,21,6,30,0.30000000000000004,1.07,0.027,0.62,0,0,0,0,0,-5,0,0,0,0,0.294,67.65,163.53,0.89,0.2,889,0.8,55,2.1,0.0000,0.0000 +2012,1,21,7,30,-0.8,1.08,0.027,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.293,71.2,163.32,0.89,0.2,890,0.8,48,1.6,0.0000,0.0000 +2012,1,21,8,30,-1.7000000000000002,1.08,0.026000000000000002,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.292,74.12,154.83,0.89,0.2,890,0.8,38,1.1,0.0000,0.0000 +2012,1,21,9,30,-2.4000000000000004,1.09,0.026000000000000002,0.62,0,0,0,0,0,-6,0,0,0,0,0.292,76.22,143.51,0.89,0.2,889,0.8,23,0.8,0.0000,0.0000 +2012,1,21,10,30,-2.8000000000000003,1.11,0.026000000000000002,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.292,77.33,131.42000000000002,0.89,0.2,889,0.8,182,0.6000000000000001,0.0000,0.0000 +2012,1,21,11,30,-3,1.1300000000000001,0.025,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.292,78.09,119.17,0.89,0.2,888,0.8,325,0.6000000000000001,0.0000,0.0000 +2012,1,21,12,30,-3.3000000000000003,1.16,0.023,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.291,80.47,107.07000000000001,0.89,0.2,888,0.8,279,0.6000000000000001,0.0000,0.0000 +2012,1,21,13,30,-2.4000000000000004,1.18,0.021,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.29,76.67,95.33,0.89,0.2,888,0.8,245,1.2000000000000002,0.0000,0.0000 +2012,1,21,14,30,0.1,1.19,0.02,0.62,26,539,81,0,0,-5.6000000000000005,26,539,0,81,0.28800000000000003,65.66,84.10000000000001,0.89,0.2,888,0.8,222,2.3000000000000003,0.0000,0.0000 +2012,1,21,15,30,3.7,1.2,0.019,0.62,44,818,269,0,1,-5,44,818,0,269,0.28500000000000003,53.13,74.06,0.89,0.2,887,0.7000000000000001,206,3.5,13.2653,10.2111 +2012,1,21,16,30,7.7,1.21,0.018000000000000002,0.62,52,927,437,0,1,-4,52,927,0,437,0.28200000000000003,43.18,65.45,0.88,0.2,887,0.7000000000000001,201,4.800000000000001,23.2307,18.0752 +2012,1,21,17,30,11,1.22,0.017,0.62,56,979,560,0,1,-3.5,56,979,0,560,0.279,35.94,59.01,0.88,0.2,886,0.7000000000000001,203,5.9,31.0491,24.2634 +2012,1,21,18,30,13.600000000000001,1.25,0.019,0.62,60,997,625,0,0,-3.4000000000000004,60,997,0,625,0.276,30.55,55.53,0.88,0.2,884,0.7000000000000001,205,6.800000000000001,35.2807,27.6145 +2012,1,21,19,30,15.5,1.25,0.019,0.62,60,997,624,0,0,-3.6,60,997,0,624,0.274,26.6,55.58,0.88,0.2,882,0.7000000000000001,207,7.300000000000001,35.2159,27.5632 +2012,1,21,20,30,16.5,1.23,0.021,0.62,59,973,558,0,0,-4,59,973,0,558,0.272,24.240000000000002,59.160000000000004,0.88,0.2,881,0.7000000000000001,208,7.5,30.9121,24.1545 +2012,1,21,21,30,16.5,1.22,0.024,0.62,56,917,433,0,0,-4.4,56,917,0,433,0.272,23.63,65.67,0.88,0.2,880,0.7000000000000001,208,7.2,22.9797,17.8765 +2012,1,21,22,30,14.9,1.23,0.025,0.62,46,804,263,0,0,-4.5,46,804,0,263,0.271,25.87,74.34,0.88,0.2,879,0.7000000000000001,204,6.1000000000000005,12.9364,9.9532 +2012,1,21,23,30,12.4,1.23,0.025,0.62,26,520,77,0,0,-4.3,26,520,0,77,0.271,30.900000000000002,84.41,0.88,0.2,878,0.7000000000000001,199,5.5,0.0000,0.0000 +2012,1,22,0,30,10.4,1.24,0.025,0.62,0,0,0,0,0,-4.4,0,0,0,0,0.271,35.02,95.66,0.88,0.2,877,0.8,197,5.300000000000001,0.0000,0.0000 +2012,1,22,1,30,9.1,1.22,0.025,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.272,38.07,107.41,0.88,0.2,877,0.8,197,5.1000000000000005,0.0000,0.0000 +2012,1,22,2,30,8.200000000000001,1.2,0.024,0.62,0,0,0,0,4,-4.9,0,0,0,0,0.274,39.29,119.51,0.88,0.2,876,0.9,199,5.4,0.0000,0.0000 +2012,1,22,3,30,7.6000000000000005,1.2,0.023,0.62,0,0,0,0,8,-5.4,0,0,0,0,0.276,39.35,131.75,0.89,0.2,876,1.1,203,5.800000000000001,0.0000,0.0000 +2012,1,22,4,30,7.5,1.19,0.024,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.277,37.6,143.82,0.89,0.2,875,1.1,209,6,0.0000,0.0000 +2012,1,22,5,30,7.6000000000000005,1.19,0.024,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.277,35.43,155.05,0.89,0.2,875,1,216,6.1000000000000005,0.0000,0.0000 +2012,1,22,6,30,7.9,1.1500000000000001,0.025,0.62,0,0,0,0,7,-7,0,0,0,0,0.277,33.97,163.3,0.89,0.2,874,0.9,224,6.300000000000001,0.0000,0.0000 +2012,1,22,7,30,8.1,1.07,0.025,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.276,34.2,163.14000000000001,0.9,0.2,874,0.9,233,6.300000000000001,0.0000,0.0000 +2012,1,22,8,30,7.9,0.98,0.028,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.276,37.37,154.73,0.91,0.2,873,0.8,240,5.800000000000001,0.0000,0.0000 +2012,1,22,9,30,8,0.86,0.029,0.62,0,0,0,0,1,-4.4,0,0,0,0,0.278,41.25,143.45000000000002,0.91,0.2,873,0.8,249,6,0.0000,0.0000 +2012,1,22,10,30,8.1,0.71,0.034,0.62,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.281,43.980000000000004,131.36,0.91,0.2,872,0.8,259,6.7,0.0000,0.0000 +2012,1,22,11,30,7.7,0.65,0.038,0.62,0,0,0,0,1,-2.4000000000000004,0,0,0,0,0.289,48.800000000000004,119.12,0.9,0.2,872,0.6000000000000001,261,6.9,0.0000,0.0000 +2012,1,22,12,30,7.1000000000000005,0.74,0.032,0.62,0,0,0,0,0,-2,0,0,0,0,0.301,52.5,107,0.9,0.2,872,0.5,257,7.1000000000000005,0.0000,0.0000 +2012,1,22,13,30,7.1000000000000005,0.8200000000000001,0.027,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.314,48.99,95.26,0.89,0.2,872,0.5,252,8,0.0000,0.0000 +2012,1,22,14,30,8.4,0.75,0.029,0.62,28,519,82,0,0,-4.2,28,519,0,82,0.32,40.62,84.01,0.9,0.2,871,0.6000000000000001,256,9.700000000000001,0.0000,0.0000 +2012,1,22,15,30,10.4,0.76,0.034,0.62,51,778,266,0,1,-5.300000000000001,51,778,0,266,0.319,32.68,73.94,0.91,0.2,872,0.8,270,11.3,13.1317,10.1104 +2012,1,22,16,30,11.700000000000001,0.91,0.041,0.62,65,878,432,0,1,-5.7,65,878,0,432,0.316,29.04,65.3,0.92,0.2,873,0.9,287,12.100000000000001,22.9908,17.8909 +2012,1,22,17,30,11.9,1.04,0.057,0.62,79,909,549,0,7,-4.5,217,459,0,454,0.313,31.43,58.82,0.93,0.2,874,1,302,12.200000000000001,25.1986,19.6934 +2012,1,22,18,30,12.100000000000001,1.1400000000000001,0.063,0.62,84,927,612,0,4,-3.5,303,30,0,320,0.311,33.62,55.31,0.92,0.2,876,1,313,11.9,18.0825,14.1546 +2012,1,22,19,30,12.3,1.2,0.06,0.62,82,931,611,0,7,-3.5,101,1,0,102,0.31,33.160000000000004,55.35,0.91,0.2,877,1,321,11.4,5.7627,4.5108 +2012,1,22,20,30,12.200000000000001,1.22,0.05,0.62,74,923,550,0,7,-4,220,477,0,466,0.309,32.01,58.92,0.88,0.2,878,0.9,327,10.3,25.8503,20.2017 +2012,1,22,21,30,11.700000000000001,1.22,0.033,0.62,60,897,432,0,7,-5.1000000000000005,147,587,0,391,0.307,30.62,65.45,0.86,0.2,880,0.8,333,8.5,20.7853,16.1726 +2012,1,22,22,30,10,1.2,0.026000000000000002,0.62,46,803,266,0,0,-5.6000000000000005,46,803,0,266,0.303,32.85,74.12,0.86,0.2,881,0.7000000000000001,343,5.7,13.1101,10.0907 +2012,1,22,23,30,6.9,1.16,0.026000000000000002,0.62,27,530,80,0,0,-5.1000000000000005,27,530,0,80,0.299,42.04,84.21000000000001,0.86,0.2,882,0.6000000000000001,177,3,0.0000,0.0000 +2012,1,23,0,30,4.7,1.11,0.026000000000000002,0.62,0,0,0,0,0,-5,0,0,0,0,0.295,49.550000000000004,95.48,0.87,0.2,883,0.6000000000000001,13,1.7000000000000002,0.0000,0.0000 +2012,1,23,1,30,4.2,1.07,0.025,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.291,49.78,107.23,0.88,0.2,884,0.6000000000000001,30,1.2000000000000002,0.0000,0.0000 +2012,1,23,2,30,3.9000000000000004,1.05,0.025,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.289,48.78,119.35000000000001,0.88,0.2,885,0.6000000000000001,80,0.8,0.0000,0.0000 +2012,1,23,3,30,3.3000000000000003,1.04,0.026000000000000002,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.28800000000000003,48.95,131.58,0.89,0.2,886,0.6000000000000001,146,0.7000000000000001,0.0000,0.0000 +2012,1,23,4,30,2.3000000000000003,1.04,0.026000000000000002,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.289,50.89,143.64000000000001,0.89,0.2,887,0.6000000000000001,181,1,0.0000,0.0000 +2012,1,23,5,30,1.1,1.05,0.026000000000000002,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.289,54.32,154.85,0.9,0.2,887,0.5,196,1.2000000000000002,0.0000,0.0000 +2012,1,23,6,30,0.2,1.07,0.026000000000000002,0.62,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.28800000000000003,56.89,163.07,0.9,0.2,887,0.5,210,1.3,0.0000,0.0000 +2012,1,23,7,30,-0.5,1.08,0.027,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.28800000000000003,58.78,162.95000000000002,0.91,0.2,887,0.5,225,1.3,0.0000,0.0000 +2012,1,23,8,30,-1,1.08,0.026000000000000002,0.62,0,0,0,0,1,-7.9,0,0,0,0,0.28800000000000003,59.620000000000005,154.62,0.9,0.2,887,0.6000000000000001,237,1.3,0.0000,0.0000 +2012,1,23,9,30,-1.5,1.07,0.024,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.28800000000000003,60.36,143.37,0.9,0.2,887,0.6000000000000001,245,1.3,0.0000,0.0000 +2012,1,23,10,30,-2.1,1.07,0.023,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.289,61.79,131.3,0.9,0.2,887,0.6000000000000001,247,1.3,0.0000,0.0000 +2012,1,23,11,30,-2.8000000000000003,1.07,0.022,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.29,63.86,119.05,0.89,0.2,887,0.5,247,1.3,0.0000,0.0000 +2012,1,23,12,30,-3.4000000000000004,1.06,0.021,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.292,65.49,106.94,0.89,0.2,887,0.5,246,1.3,0.0000,0.0000 +2012,1,23,13,30,-2.5,1.06,0.02,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.291,60.09,95.17,0.89,0.2,888,0.5,243,1.7000000000000002,0.0000,0.0000 +2012,1,23,14,30,0.2,1.06,0.02,0.62,27,569,87,0,0,-9.1,27,569,0,87,0.29,49.71,83.9,0.89,0.2,888,0.5,231,2.5,0.0000,0.0000 +2012,1,23,15,30,3.6,1.07,0.02,0.62,45,835,278,0,4,-9.1,165,126,0,200,0.289,39.02,73.81,0.89,0.2,888,0.5,208,3.4000000000000004,9.8853,7.6125 +2012,1,23,16,30,7.5,1.08,0.021,0.62,55,938,450,0,0,-9.3,55,938,0,450,0.28800000000000003,29.310000000000002,65.14,0.89,0.2,888,0.5,199,4.4,23.9774,18.6612 +2012,1,23,17,30,11.200000000000001,1.11,0.021,0.62,60,989,575,0,0,-10.5,60,989,0,575,0.28600000000000003,20.740000000000002,58.63,0.89,0.2,887,0.5,212,4.9,31.9480,24.9707 +2012,1,23,18,30,13.8,1.12,0.025,0.62,66,1005,641,0,0,-11.9,66,1005,0,641,0.28300000000000003,15.64,55.09,0.89,0.2,886,0.5,225,5.2,36.2588,28.3850 +2012,1,23,19,30,15.3,1.11,0.027,0.62,67,1002,641,0,7,-13,201,630,0,561,0.28,12.99,55.11,0.9,0.2,885,0.5,233,5.5,31.7306,24.8399 +2012,1,23,20,30,15.9,1.1,0.032,0.62,67,966,570,7,7,-13.700000000000001,165,695,7,526,0.279,11.83,58.68,0.91,0.2,884,0.6000000000000001,237,5.4,29.2174,22.8359 +2012,1,23,21,30,15.4,1.07,0.037,0.62,63,905,443,0,7,-13.700000000000001,235,150,0,298,0.278,12.200000000000001,65.22,0.91,0.2,884,0.6000000000000001,235,4.6000000000000005,15.8689,12.3496 +2012,1,23,22,30,12.200000000000001,1.01,0.039,0.62,53,786,271,0,7,-11.9,114,18,0,119,0.277,17.44,73.91,0.91,0.2,884,0.6000000000000001,227,3,5.8763,4.5245 +2012,1,23,23,30,8.4,0.96,0.038,0.62,30,498,82,0,7,-8.3,58,36,0,62,0.276,29.7,84.02,0.91,0.2,884,0.6000000000000001,218,2.2,0.0000,0.0000 +2012,1,24,0,30,7.2,0.92,0.035,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.275,31.09,95.29,0.91,0.2,884,0.6000000000000001,212,2.5,0.0000,0.0000 +2012,1,24,1,30,6.9,0.92,0.033,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.275,31.03,107.06,0.91,0.2,884,0.7000000000000001,211,2.8000000000000003,0.0000,0.0000 +2012,1,24,2,30,6.4,0.9500000000000001,0.033,0.62,0,0,0,0,0,-9,0,0,0,0,0.275,32.2,119.17,0.91,0.2,884,0.7000000000000001,210,3,0.0000,0.0000 +2012,1,24,3,30,6.300000000000001,0.99,0.033,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.276,32.92,131.41,0.92,0.2,884,0.7000000000000001,210,3.3000000000000003,0.0000,0.0000 +2012,1,24,4,30,6.300000000000001,1.05,0.035,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.278,33.77,143.46,0.92,0.2,885,0.8,211,3.4000000000000004,0.0000,0.0000 +2012,1,24,5,30,5.800000000000001,1.09,0.038,0.62,0,0,0,0,7,-8,0,0,0,0,0.279,36.36,154.65,0.92,0.2,884,0.8,210,3.1,0.0000,0.0000 +2012,1,24,6,30,5.1000000000000005,1.1,0.04,0.62,0,0,0,0,4,-7.6000000000000005,0,0,0,0,0.279,39.52,162.83,0.92,0.2,884,0.8,207,2.8000000000000003,0.0000,0.0000 +2012,1,24,7,30,4.4,1.12,0.042,0.62,0,0,0,0,1,-7.300000000000001,0,0,0,0,0.28,42.42,162.76,0.92,0.2,884,0.8,202,2.6,0.0000,0.0000 +2012,1,24,8,30,3.7,1.1300000000000001,0.04,0.62,0,0,0,0,1,-7.2,0,0,0,0,0.28200000000000003,44.980000000000004,154.51,0.92,0.2,883,0.7000000000000001,201,2.5,0.0000,0.0000 +2012,1,24,9,30,2.8000000000000003,1.12,0.038,0.62,0,0,0,0,7,-7,0,0,0,0,0.28300000000000003,48.44,143.29,0.91,0.2,883,0.7000000000000001,203,2.3000000000000003,0.0000,0.0000 +2012,1,24,10,30,1.7000000000000002,1.12,0.034,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.28500000000000003,52.86,131.23,0.91,0.2,883,0.6000000000000001,211,1.9000000000000001,0.0000,0.0000 +2012,1,24,11,30,1.1,1.1300000000000001,0.032,0.62,0,0,0,0,6,-6.800000000000001,0,0,0,0,0.28600000000000003,55.550000000000004,118.99000000000001,0.91,0.2,883,0.6000000000000001,220,1.5,0.0000,0.0000 +2012,1,24,12,30,1,1.1400000000000001,0.034,0.62,0,0,0,0,1,-6.6000000000000005,0,0,0,0,0.28700000000000003,56.7,106.86,0.92,0.2,883,0.6000000000000001,224,1.2000000000000002,0.0000,0.0000 +2012,1,24,13,30,1.7000000000000002,1.1500000000000001,0.036000000000000004,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.28800000000000003,55.5,95.09,0.92,0.2,883,0.7000000000000001,213,1.1,0.0000,0.0000 +2012,1,24,14,30,2.9000000000000004,1.1500000000000001,0.038,0.62,30,506,85,7,7,-5.6000000000000005,41,3,7,42,0.289,53.65,83.8,0.92,0.2,884,0.7000000000000001,190,1.4000000000000001,0.0000,0.0000 +2012,1,24,15,30,4.4,1.16,0.04,0.62,53,782,273,0,7,-5.9,148,44,0,160,0.291,46.980000000000004,73.68,0.92,0.2,884,0.7000000000000001,171,1.9000000000000001,7.9177,6.0986 +2012,1,24,16,30,6.6000000000000005,1.17,0.047,0.62,68,880,440,0,7,-5.6000000000000005,215,260,0,325,0.292,41.49,64.97,0.93,0.2,884,0.8,167,2.5,17.3389,13.4964 +2012,1,24,17,30,8.8,1.17,0.064,0.62,83,913,561,0,6,-5.5,285,123,0,350,0.294,35.84,58.43,0.9400000000000001,0.2,884,0.8,173,3.2,19.4679,15.2177 +2012,1,24,18,30,10.200000000000001,1.1300000000000001,0.077,0.62,93,917,621,0,7,-4.800000000000001,293,291,0,460,0.296,34.37,54.86,0.9500000000000001,0.2,884,0.9,177,3.4000000000000004,26.0480,20.3934 +2012,1,24,19,30,10.9,1.12,0.093,0.62,100,894,615,0,7,-3.5,304,207,0,424,0.297,36.28,54.86,0.9500000000000001,0.2,884,1,177,3,24.0095,18.7974 +2012,1,24,20,30,11,1.12,0.108,0.62,102,849,547,0,7,-1.9000000000000001,292,110,0,349,0.298,40.56,58.44,0.96,0.2,884,1,172,2.1,19.4112,15.1733 +2012,1,24,21,30,10.5,1.12,0.114,0.62,94,772,420,0,7,0.5,205,339,0,348,0.299,49.81,64.99,0.96,0.2,884,1.1,147,1,18.5632,14.4492 +2012,1,24,22,30,9.4,1.1400000000000001,0.121,0.62,76,623,251,0,6,1.9000000000000001,149,42,0,161,0.3,59.6,73.7,0.9500000000000001,0.2,884,1.2000000000000002,80,0.7000000000000001,7.9657,6.1354 +2012,1,24,23,30,7.800000000000001,1.19,0.108,0.62,39,338,75,0,6,1.5,43,2,0,43,0.301,64.39,83.82000000000001,0.9500000000000001,0.2,884,1.2000000000000002,40,1.1,0.0000,0.0000 +2012,1,25,0,30,6.800000000000001,1.2,0.109,0.62,0,0,0,0,6,0.9,0,0,0,0,0.302,66.03,95.11,0.96,0.2,886,1.2000000000000002,55,1.9000000000000001,0.0000,0.0000 +2012,1,25,1,30,6.7,1.17,0.135,0.62,0,0,0,0,7,1,0,0,0,0,0.304,66.82000000000001,106.88,0.96,0.2,887,1.3,63,2.9000000000000004,0.0000,0.0000 +2012,1,25,2,30,6.300000000000001,1.1500000000000001,0.159,0.62,0,0,0,0,6,1.8,0,0,0,0,0.305,72.7,119,0.97,0.2,888,1.4000000000000001,54,3.6,0.0000,0.0000 +2012,1,25,3,30,5.2,1.1500000000000001,0.169,0.62,0,0,0,0,7,1.9000000000000001,0,0,0,0,0.306,79.5,131.24,0.97,0.2,889,1.4000000000000001,36,4.1000000000000005,0.0000,0.0000 +2012,1,25,4,30,3.8000000000000003,1.18,0.149,0.62,0,0,0,0,4,1.2000000000000002,0,0,0,0,0.307,83.03,143.28,0.96,0.2,889,1.3,18,4.800000000000001,0.0000,0.0000 +2012,1,25,5,30,2.4000000000000004,1.21,0.109,0.62,0,0,0,0,1,-0.30000000000000004,0,0,0,0,0.309,82.37,154.44,0.9500000000000001,0.2,889,1.2000000000000002,7,5.300000000000001,0.0000,0.0000 +2012,1,25,6,30,1.4000000000000001,1.22,0.083,0.62,0,0,0,0,1,-2.2,0,0,0,0,0.31,77.23,162.58,0.9400000000000001,0.2,890,1.1,8,5.800000000000001,0.0000,0.0000 +2012,1,25,7,30,0.6000000000000001,1.2,0.076,0.62,0,0,0,0,4,-3.3000000000000003,0,0,0,0,0.311,75.10000000000001,162.55,0.9400000000000001,0.2,890,1.1,10,6.1000000000000005,0.0000,0.0000 +2012,1,25,8,30,0,1.19,0.07100000000000001,0.62,0,0,0,0,4,-3.8000000000000003,0,0,0,0,0.312,75.48,154.38,0.9400000000000001,0.2,891,1,6,6.1000000000000005,0.0000,0.0000 +2012,1,25,9,30,-0.5,1.19,0.068,0.62,0,0,0,0,1,-4,0,0,0,0,0.312,77.11,143.21,0.9400000000000001,0.2,891,1,3,6.1000000000000005,0.0000,0.0000 +2012,1,25,10,30,-1.1,1.19,0.066,0.62,0,0,0,0,7,-4,0,0,0,0,0.312,80.37,131.16,0.9400000000000001,0.2,891,1,1,5.800000000000001,0.0000,0.0000 +2012,1,25,11,30,-1.7000000000000002,1.2,0.065,0.62,0,0,0,0,0,-4,0,0,0,0,0.312,84.4,118.92,0.9400000000000001,0.2,891,1,177,5.5,0.0000,0.0000 +2012,1,25,12,30,-2.1,1.2,0.066,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.311,88.32000000000001,106.78,0.9400000000000001,0.2,891,1,351,5.5,0.0000,0.0000 +2012,1,25,13,30,-1.8,1.19,0.067,0.62,0,0,0,0,4,-3.4000000000000004,0,0,0,0,0.309,88.68,94.99,0.9400000000000001,0.2,891,0.9,353,5.7,0.0000,0.0000 +2012,1,25,14,30,0,1.2,0.07100000000000001,0.62,35,422,82,7,7,-3.1,43,3,7,43,0.305,79.37,83.68,0.9400000000000001,0.2,891,0.9,183,6.2,0.0000,0.0000 +2012,1,25,15,30,2.7,1.21,0.07200000000000001,0.62,63,711,265,0,4,-3.3000000000000003,170,74,0,191,0.302,64.44,73.53,0.9500000000000001,0.2,892,1,13,6.6000000000000005,9.4648,7.2922 +2012,1,25,16,30,5.2,1.21,0.07100000000000001,0.62,78,841,436,0,0,-3.8000000000000003,78,841,0,436,0.3,52.410000000000004,64.8,0.9500000000000001,0.2,891,0.9,16,6.6000000000000005,23.2899,18.1312 +2012,1,25,17,30,6.9,1.21,0.068,0.62,85,904,561,0,4,-4,302,276,0,447,0.298,45.93,58.22,0.9500000000000001,0.2,891,0.9,15,6.300000000000001,24.8916,19.4594 +2012,1,25,18,30,8.1,1.23,0.075,0.62,92,926,628,0,2,-4.3,311,377,0,530,0.296,41.160000000000004,54.63,0.9400000000000001,0.2,890,0.8,13,5.9,30.0435,23.5236 +2012,1,25,19,30,9.1,1.23,0.064,0.62,87,944,634,0,0,-5.1000000000000005,87,944,0,634,0.294,36.39,54.61,0.9400000000000001,0.2,890,0.7000000000000001,13,5.2,35.9421,28.1423 +2012,1,25,20,30,9.9,1.25,0.051000000000000004,0.62,77,943,574,0,0,-6,77,943,0,574,0.292,32,58.19,0.92,0.2,889,0.6000000000000001,10,4.6000000000000005,31.9689,24.9925 +2012,1,25,21,30,10.100000000000001,1.26,0.04,0.62,65,913,454,0,0,-7,65,913,0,454,0.292,29.26,64.75,0.91,0.2,889,0.5,7,3.7,24.2603,18.8874 +2012,1,25,22,30,8.4,1.26,0.034,0.62,51,813,282,0,0,-7.1000000000000005,51,813,0,282,0.294,32.77,73.48,0.9,0.2,888,0.5,5,2.2,13.9807,10.7723 +2012,1,25,23,30,6.4,1.26,0.03,0.62,30,565,92,0,0,-5.300000000000001,30,565,0,92,0.295,43.01,83.62,0.9,0.2,887,0.4,4,1.1,0.0000,0.0000 +2012,1,26,0,30,5.9,1.27,0.028,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.296,38.24,94.92,0.89,0.2,887,0.4,168,0.9,0.0000,0.0000 +2012,1,26,1,30,5.300000000000001,1.28,0.025,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.295,38.64,106.7,0.89,0.2,887,0.5,320,0.9,0.0000,0.0000 +2012,1,26,2,30,4.3,1.3,0.023,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.293,40.58,118.83,0.89,0.2,886,0.6000000000000001,297,1.1,0.0000,0.0000 +2012,1,26,3,30,3.2,1.31,0.024,0.62,0,0,0,0,0,-8,0,0,0,0,0.29,43.61,131.07,0.89,0.2,886,0.6000000000000001,288,1.3,0.0000,0.0000 +2012,1,26,4,30,2.2,1.31,0.025,0.62,0,0,0,0,0,-8,0,0,0,0,0.28800000000000003,46.730000000000004,143.09,0.89,0.2,887,0.6000000000000001,286,1.4000000000000001,0.0000,0.0000 +2012,1,26,5,30,1.5,1.3,0.025,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.28600000000000003,48.72,154.23,0.89,0.2,886,0.6000000000000001,286,1.5,0.0000,0.0000 +2012,1,26,6,30,0.8,1.3,0.026000000000000002,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.28500000000000003,50.72,162.33,0.89,0.2,886,0.6000000000000001,291,1.5,0.0000,0.0000 +2012,1,26,7,30,0.1,1.31,0.026000000000000002,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.28300000000000003,52.81,162.34,0.89,0.2,886,0.6000000000000001,302,1.6,0.0000,0.0000 +2012,1,26,8,30,-0.30000000000000004,1.32,0.026000000000000002,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.281,54.370000000000005,154.25,0.89,0.2,887,0.6000000000000001,318,1.8,0.0000,0.0000 +2012,1,26,9,30,-0.2,1.34,0.026000000000000002,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.279,54.77,143.11,0.89,0.2,887,0.7000000000000001,331,2.4000000000000004,0.0000,0.0000 +2012,1,26,10,30,0.4,1.34,0.027,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.277,54.01,131.08,0.89,0.2,888,0.8,337,3.4000000000000004,0.0000,0.0000 +2012,1,26,11,30,0.6000000000000001,1.32,0.026000000000000002,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.277,56.050000000000004,118.84,0.88,0.2,889,0.8,339,4.2,0.0000,0.0000 +2012,1,26,12,30,0.6000000000000001,1.29,0.025,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.277,59.58,106.69,0.88,0.2,890,0.8,341,4.5,0.0000,0.0000 +2012,1,26,13,30,1.5,1.25,0.024,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.278,58.82,94.89,0.88,0.2,891,0.8,345,4.9,0.0000,0.0000 +2012,1,26,14,30,3.7,1.23,0.023,0.62,28,553,90,0,0,-5.2,28,553,0,90,0.277,52.04,83.57000000000001,0.88,0.2,891,0.8,345,5.1000000000000005,0.0000,0.0000 +2012,1,26,15,30,6.9,1.22,0.021,0.62,46,824,281,0,0,-4.7,46,824,0,281,0.276,43.29,73.39,0.88,0.2,892,0.7000000000000001,175,5.6000000000000005,13.9428,10.7446 +2012,1,26,16,30,10,1.22,0.019,0.62,54,931,453,0,1,-4,54,931,0,453,0.275,37,64.62,0.88,0.2,892,0.7000000000000001,14,6.2,24.2298,18.8656 +2012,1,26,17,30,12,1.23,0.019,0.62,59,987,582,0,0,-4.6000000000000005,59,987,0,582,0.274,31.04,58.01,0.88,0.2,891,0.6000000000000001,21,5.7,32.4457,25.3675 +2012,1,26,18,30,13.3,1.29,0.023,0.62,65,1003,649,0,0,-5.1000000000000005,65,1003,0,649,0.273,27.48,54.39,0.89,0.2,891,0.6000000000000001,22,4.800000000000001,36.8290,28.8392 +2012,1,26,19,30,14.100000000000001,1.3,0.023,0.62,65,1003,649,0,0,-5.7,65,1003,0,649,0.271,24.92,54.36,0.89,0.2,890,0.6000000000000001,19,3.8000000000000003,36.8340,28.8435 +2012,1,26,20,30,14.200000000000001,1.28,0.025,0.62,64,980,584,0,0,-6.5,64,980,0,584,0.27,23.34,57.94,0.9,0.2,890,0.6000000000000001,18,2.7,32.5693,25.4650 +2012,1,26,21,30,13.700000000000001,1.25,0.023,0.62,57,927,455,0,0,-7.1000000000000005,57,927,0,455,0.27,22.98,64.52,0.9,0.2,889,0.7000000000000001,24,1.4000000000000001,24.3545,18.9642 +2012,1,26,22,30,11.8,1.25,0.024,0.62,48,821,284,0,0,-5.800000000000001,48,821,0,284,0.271,28.84,73.26,0.9,0.2,889,0.7000000000000001,84,0.7000000000000001,14.1086,10.8748 +2012,1,26,23,30,8.700000000000001,1.25,0.026000000000000002,0.62,29,551,92,0,0,-4.5,29,551,0,92,0.272,39.04,83.42,0.91,0.2,889,0.8,148,1.1,0.0000,0.0000 +2012,1,27,0,30,6.9,1.23,0.029,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.272,41.17,94.73,0.92,0.2,888,0.8,163,1.6,0.0000,0.0000 +2012,1,27,1,30,6.9,1.18,0.034,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.273,41.01,106.53,0.92,0.2,888,0.9,171,2.5,0.0000,0.0000 +2012,1,27,2,30,7.4,1.1500000000000001,0.036000000000000004,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.274,37.72,118.66,0.93,0.2,887,0.9,180,4,0.0000,0.0000 +2012,1,27,3,30,7.2,1.12,0.035,0.62,0,0,0,0,6,-6.300000000000001,0,0,0,0,0.275,37.78,130.89000000000001,0.92,0.2,886,0.9,189,5.4,0.0000,0.0000 +2012,1,27,4,30,6.6000000000000005,1.1,0.035,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.275,40.32,142.91,0.92,0.2,885,0.9,198,6.2,0.0000,0.0000 +2012,1,27,5,30,5.9,1.08,0.033,0.62,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.276,43.31,154.02,0.92,0.2,885,0.9,205,6.6000000000000005,0.0000,0.0000 +2012,1,27,6,30,5.4,1.07,0.032,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.276,45.6,162.08,0.92,0.2,884,0.9,211,6.6000000000000005,0.0000,0.0000 +2012,1,27,7,30,5,1.07,0.032,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.276,47.71,162.12,0.92,0.2,883,0.9,216,6,0.0000,0.0000 +2012,1,27,8,30,4.7,1.05,0.034,0.62,0,0,0,0,7,-4.9,0,0,0,0,0.276,49.94,154.11,0.92,0.2,882,0.9,219,5.4,0.0000,0.0000 +2012,1,27,9,30,4.7,1.02,0.038,0.62,0,0,0,0,4,-4.6000000000000005,0,0,0,0,0.276,50.81,143.01,0.92,0.2,882,0.9,226,5.300000000000001,0.0000,0.0000 +2012,1,27,10,30,4.800000000000001,0.99,0.04,0.62,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.276,50.75,131,0.93,0.2,881,1,233,5.2,0.0000,0.0000 +2012,1,27,11,30,4.9,0.98,0.042,0.62,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.276,50.39,118.75,0.93,0.2,881,1,241,5.1000000000000005,0.0000,0.0000 +2012,1,27,12,30,4.6000000000000005,0.98,0.037,0.62,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.276,51.480000000000004,106.60000000000001,0.92,0.2,881,1.1,251,4.7,0.0000,0.0000 +2012,1,27,13,30,5,1.01,0.031,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.276,50.39,94.78,0.92,0.2,882,1.1,264,4.800000000000001,0.0000,0.0000 +2012,1,27,14,30,7.1000000000000005,1.08,0.03,0.62,30,522,89,7,7,-4.2,53,12,7,54,0.277,44.62,83.44,0.91,0.2,883,1.1,279,5.1000000000000005,0.0000,0.0000 +2012,1,27,15,30,10.700000000000001,1.1500000000000001,0.032,0.62,50,784,277,0,8,-3.4000000000000004,145,193,0,201,0.278,36.97,73.24,0.91,0.2,883,1.1,309,5.4,9.9872,7.6983 +2012,1,27,16,30,13.600000000000001,1.18,0.032,0.62,61,893,446,0,1,-2,61,893,0,446,0.279,33.86,64.44,0.91,0.2,884,1.1,165,6,23.8865,18.6010 +2012,1,27,17,30,14.600000000000001,1.18,0.033,0.62,68,940,569,0,0,-0.7000000000000001,68,940,0,569,0.281,34.92,57.79,0.92,0.2,885,1.2000000000000002,1,6.4,31.7580,24.8325 +2012,1,27,18,30,14.3,1.17,0.04,0.62,75,953,633,0,0,-0.4,75,953,0,633,0.28300000000000003,36.49,54.14,0.93,0.2,885,1.2000000000000002,181,6.800000000000001,35.9613,28.1624 +2012,1,27,19,30,13.100000000000001,1.1500000000000001,0.05,0.62,81,941,632,0,0,-0.30000000000000004,81,941,0,632,0.28600000000000003,39.86,54.1,0.9500000000000001,0.2,886,1.2000000000000002,180,7.300000000000001,35.9108,28.1233 +2012,1,27,20,30,11.700000000000001,1.1400000000000001,0.061,0.62,82,904,565,0,1,-0.30000000000000004,82,904,0,565,0.28800000000000003,43.56,57.68,0.9500000000000001,0.2,887,1.2000000000000002,2,7.4,31.5531,24.6735 +2012,1,27,21,30,10.700000000000001,1.1400000000000001,0.047,0.62,69,875,449,7,8,-1.2000000000000002,143,689,7,442,0.29,43.67,64.27,0.9400000000000001,0.2,889,1,6,7,23.7013,18.4592 +2012,1,27,22,30,9.5,1.19,0.04,0.62,54,780,282,0,1,-3.1,54,780,0,282,0.292,41.09,73.04,0.9400000000000001,0.2,890,0.9,11,5.9,14.0380,10.8241 +2012,1,27,23,30,7.300000000000001,1.21,0.032,0.62,31,540,95,0,0,-4.800000000000001,31,540,0,95,0.295,41.82,83.22,0.93,0.2,891,0.8,19,4.3,0.0000,0.0000 +2012,1,28,0,30,5,1.21,0.027,0.62,0,0,0,0,1,-5.5,0,0,0,0,0.297,46.58,94.54,0.92,0.2,892,0.7000000000000001,27,3.2,0.0000,0.0000 +2012,1,28,1,30,3.6,1.21,0.025,0.62,0,0,0,0,1,-5.9,0,0,0,0,0.3,49.71,106.35000000000001,0.91,0.2,893,0.6000000000000001,32,3.2,0.0000,0.0000 +2012,1,28,2,30,2.6,1.21,0.024,0.62,0,0,0,0,1,-6.5,0,0,0,0,0.301,51.25,118.49000000000001,0.91,0.2,895,0.6000000000000001,31,3.4000000000000004,0.0000,0.0000 +2012,1,28,3,30,1.5,1.19,0.025,0.62,0,0,0,0,0,-7.2,0,0,0,0,0.302,52.33,130.72,0.91,0.2,896,0.5,28,3.5,0.0000,0.0000 +2012,1,28,4,30,0.4,1.2,0.026000000000000002,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.302,52.38,142.72,0.91,0.2,896,0.5,28,3.4000000000000004,0.0000,0.0000 +2012,1,28,5,30,-0.6000000000000001,1.19,0.029,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.301,52.370000000000005,153.8,0.92,0.2,897,0.5,28,3.3000000000000003,0.0000,0.0000 +2012,1,28,6,30,-1.5,1.18,0.033,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.301,53.25,161.82,0.92,0.2,898,0.5,27,3.1,0.0000,0.0000 +2012,1,28,7,30,-2.3000000000000003,1.17,0.036000000000000004,0.62,0,0,0,0,4,-10.100000000000001,0,0,0,0,0.301,55.15,161.9,0.93,0.2,898,0.5,26,2.8000000000000003,0.0000,0.0000 +2012,1,28,8,30,-3.1,1.17,0.039,0.62,0,0,0,0,4,-10.200000000000001,0,0,0,0,0.302,58.160000000000004,153.96,0.93,0.2,899,0.6000000000000001,23,2.4000000000000004,0.0000,0.0000 +2012,1,28,9,30,-3.8000000000000003,1.16,0.044,0.62,0,0,0,0,1,-10.3,0,0,0,0,0.303,60.89,142.91,0.9400000000000001,0.2,899,0.6000000000000001,19,1.8,0.0000,0.0000 +2012,1,28,10,30,-4.4,1.1500000000000001,0.048,0.62,0,0,0,0,4,-10.4,0,0,0,0,0.304,63.06,130.9,0.9400000000000001,0.2,899,0.6000000000000001,14,1.3,0.0000,0.0000 +2012,1,28,11,30,-4.6000000000000005,1.1400000000000001,0.05,0.62,0,0,0,0,1,-10.5,0,0,0,0,0.305,63.24,118.66,0.9400000000000001,0.2,899,0.6000000000000001,6,1,0.0000,0.0000 +2012,1,28,12,30,-4.5,1.1400000000000001,0.05,0.62,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.307,62.120000000000005,106.5,0.9400000000000001,0.2,900,0.5,166,0.8,0.0000,0.0000 +2012,1,28,13,30,-3.4000000000000004,1.1400000000000001,0.049,0.62,0,0,0,0,4,-10.8,0,0,0,0,0.309,56.76,94.67,0.9400000000000001,0.2,900,0.5,285,0.9,0.0000,0.0000 +2012,1,28,14,30,-1.1,1.1500000000000001,0.047,0.62,34,515,94,7,7,-10.4,57,13,7,58,0.311,49.36,83.31,0.9400000000000001,0.2,900,0.5,216,1.9000000000000001,0.0000,0.0000 +2012,1,28,15,30,1.5,1.16,0.045,0.62,56,794,287,0,7,-11.100000000000001,153,191,0,209,0.314,38.67,73.08,0.93,0.2,900,0.5,197,3.1,10.4002,8.0186 +2012,1,28,16,30,3.9000000000000004,1.18,0.041,0.62,67,912,463,0,7,-11.600000000000001,184,462,0,385,0.316,31.29,64.25,0.93,0.2,900,0.5,210,3.9000000000000004,20.6477,16.0813 +2012,1,28,17,30,6.1000000000000005,1.2,0.037,0.62,72,970,592,0,2,-11.3,283,386,0,490,0.318,27.490000000000002,57.57,0.93,0.2,900,0.5,227,4.5,27.3804,21.4117 +2012,1,28,18,30,7.9,1.23,0.037,0.62,74,992,659,0,7,-10.5,214,586,0,560,0.321,25.88,53.89,0.92,0.2,899,0.5,240,4.800000000000001,31.8493,24.9444 +2012,1,28,19,30,9.3,1.24,0.036000000000000004,0.62,74,993,660,0,7,-9.600000000000001,204,649,0,586,0.324,25.35,53.84,0.92,0.2,898,0.5,247,4.800000000000001,33.3353,26.1088 +2012,1,28,20,30,10,1.24,0.035,0.62,70,974,594,0,0,-8.9,70,974,0,594,0.325,25.54,57.42,0.91,0.2,897,0.5,249,4.5,33.2177,25.9783 +2012,1,28,21,30,9.9,1.22,0.034,0.62,63,934,472,0,0,-8.6,63,934,0,472,0.325,26.21,64.03,0.91,0.2,897,0.4,247,4,25.3533,19.7495 +2012,1,28,22,30,7.7,1.19,0.033,0.62,52,831,298,0,0,-8.6,52,831,0,298,0.326,30.54,72.81,0.91,0.2,897,0.4,238,2.6,14.8663,11.4669 +2012,1,28,23,30,4.1000000000000005,1.17,0.032,0.62,32,578,102,0,0,-6.4,32,578,0,102,0.324,46.19,83.02,0.91,0.2,897,0.4,224,1.7000000000000002,0.0000,0.0000 +2012,1,29,0,30,2.2,1.1500000000000001,0.03,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.321,49.160000000000004,94.35000000000001,0.91,0.2,897,0.4,213,2,0.0000,0.0000 +2012,1,29,1,30,1.8,1.1300000000000001,0.029,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.318,48.85,106.17,0.91,0.2,897,0.4,212,2.5,0.0000,0.0000 +2012,1,29,2,30,1.3,1.11,0.028,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.317,49.44,118.31,0.9,0.2,897,0.4,215,3,0.0000,0.0000 +2012,1,29,3,30,0.7000000000000001,1.11,0.027,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.316,50.54,130.54,0.9,0.2,897,0.4,218,3.3000000000000003,0.0000,0.0000 +2012,1,29,4,30,0.2,1.11,0.026000000000000002,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.316,51.51,142.54,0.9,0.2,897,0.4,221,3.6,0.0000,0.0000 +2012,1,29,5,30,-0.4,1.11,0.025,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.315,53.15,153.58,0.9,0.2,897,0.4,225,3.9000000000000004,0.0000,0.0000 +2012,1,29,6,30,-0.8,1.1,0.024,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.313,54.17,161.55,0.9,0.2,897,0.4,229,4.1000000000000005,0.0000,0.0000 +2012,1,29,7,30,-1.1,1.09,0.024,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.314,54.68,161.66,0.89,0.2,896,0.4,234,4.4,0.0000,0.0000 +2012,1,29,8,30,-1.5,1.08,0.023,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.319,55.480000000000004,153.81,0.89,0.2,896,0.4,238,4.5,0.0000,0.0000 +2012,1,29,9,30,-2.1,1.07,0.022,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.327,57.34,142.79,0.89,0.2,896,0.4,242,4.5,0.0000,0.0000 +2012,1,29,10,30,-2.8000000000000003,1.06,0.021,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.335,60.07,130.8,0.89,0.2,895,0.4,246,4.3,0.0000,0.0000 +2012,1,29,11,30,-3.4000000000000004,1.05,0.02,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.342,62.82,118.56,0.89,0.2,895,0.4,252,4.1000000000000005,0.0000,0.0000 +2012,1,29,12,30,-4,1.05,0.019,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.34700000000000003,65.36,106.4,0.89,0.2,896,0.4,259,3.9000000000000004,0.0000,0.0000 +2012,1,29,13,30,-3.3000000000000003,1.06,0.018000000000000002,0.62,0,0,0,0,0,-9.9,0,0,0,0,0.34800000000000003,60.43,94.55,0.89,0.2,896,0.4,266,4.1000000000000005,0.0000,0.0000 +2012,1,29,14,30,-0.6000000000000001,1.08,0.018000000000000002,0.62,28,611,100,7,4,-10.200000000000001,63,9,7,64,0.34500000000000003,48.14,83.17,0.88,0.2,896,0.4,270,4.1000000000000005,0.0000,0.0000 +2012,1,29,15,30,3.4000000000000004,1.09,0.017,0.62,44,860,297,0,4,-10.4,171,160,0,218,0.341,35.53,72.91,0.88,0.2,896,0.4,279,3.5,10.8652,8.3794 +2012,1,29,16,30,7.7,1.11,0.017,0.62,53,959,472,0,1,-10.9,53,959,0,472,0.338,25.52,64.05,0.88,0.2,896,0.4,290,2.7,25.3497,19.7464 +2012,1,29,17,30,11.4,1.12,0.016,0.62,57,1008,601,0,1,-11.3,57,1008,0,601,0.337,19.27,57.34,0.89,0.2,895,0.4,300,2.1,33.6231,26.2963 +2012,1,29,18,30,14.3,1.21,0.021,0.62,64,1022,670,0,0,-11.9,64,1022,0,670,0.337,15.13,53.63,0.89,0.2,894,0.4,314,1.5,38.1487,29.8809 +2012,1,29,19,30,15.8,1.22,0.021,0.62,64,1022,671,0,0,-12.700000000000001,64,1022,0,671,0.337,12.950000000000001,53.57,0.89,0.2,894,0.4,328,1,38.2155,29.9340 +2012,1,29,20,30,16.1,1.23,0.022,0.62,62,1001,605,0,0,-12.600000000000001,62,1001,0,605,0.336,12.75,57.160000000000004,0.89,0.2,893,0.4,326,0.7000000000000001,33.8782,26.4981 +2012,1,29,21,30,15.600000000000001,1.24,0.022,0.62,57,954,478,0,0,-12.4,57,954,0,478,0.335,13.42,63.79,0.89,0.2,893,0.4,308,0.4,25.7190,20.0380 +2012,1,29,22,30,13.9,1.24,0.022,0.62,47,856,304,0,0,-8.5,47,856,0,304,0.333,20.3,72.59,0.89,0.2,893,0.4,225,0.30000000000000004,15.1968,11.7258 +2012,1,29,23,30,11.600000000000001,1.23,0.022,0.62,30,616,107,0,0,-8,30,616,0,107,0.331,24.52,82.82000000000001,0.89,0.2,892,0.4,153,0.6000000000000001,0.0000,0.0000 +2012,1,30,0,30,9.600000000000001,1.22,0.022,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.328,23.89,94.16,0.9,0.2,893,0.4,160,1,0.0000,0.0000 +2012,1,30,1,30,7.800000000000001,1.2,0.022,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.326,27.01,105.99000000000001,0.9,0.2,893,0.4,173,1.3,0.0000,0.0000 +2012,1,30,2,30,6.1000000000000005,1.17,0.023,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.324,30.89,118.14,0.9,0.2,892,0.4,189,1.5,0.0000,0.0000 +2012,1,30,3,30,4.5,1.1500000000000001,0.023,0.62,0,0,0,0,1,-9.600000000000001,0,0,0,0,0.323,35.050000000000004,130.37,0.9,0.2,892,0.4,206,1.6,0.0000,0.0000 +2012,1,30,4,30,3.3000000000000003,1.12,0.024,0.62,0,0,0,0,1,-9.8,0,0,0,0,0.322,37.67,142.35,0.9,0.2,892,0.4,222,1.7000000000000002,0.0000,0.0000 +2012,1,30,5,30,2.5,1.11,0.026000000000000002,0.62,0,0,0,0,0,-10,0,0,0,0,0.321,39.18,153.36,0.9,0.2,892,0.4,234,1.9000000000000001,0.0000,0.0000 +2012,1,30,6,30,2.3000000000000003,1.1,0.027,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.321,38.910000000000004,161.29,0.91,0.2,891,0.4,242,2.3000000000000003,0.0000,0.0000 +2012,1,30,7,30,2.2,1.09,0.028,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.321,38.6,161.42000000000002,0.91,0.2,891,0.4,245,2.7,0.0000,0.0000 +2012,1,30,8,30,1.9000000000000001,1.09,0.029,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.321,39.63,153.65,0.91,0.2,890,0.5,246,3.1,0.0000,0.0000 +2012,1,30,9,30,1.5,1.08,0.029,0.62,0,0,0,0,7,-9.9,0,0,0,0,0.32,42.33,142.67000000000002,0.91,0.2,890,0.5,244,3.3000000000000003,0.0000,0.0000 +2012,1,30,10,30,1.2000000000000002,1.08,0.031,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.318,45.56,130.7,0.92,0.2,889,0.5,242,3.5,0.0000,0.0000 +2012,1,30,11,30,0.9,1.09,0.032,0.62,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.315,48.730000000000004,118.46000000000001,0.91,0.2,888,0.5,240,3.8000000000000003,0.0000,0.0000 +2012,1,30,12,30,0.5,1.11,0.031,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.314,51.99,106.29,0.91,0.2,888,0.5,239,4,0.0000,0.0000 +2012,1,30,13,30,1.1,1.12,0.03,0.62,0,0,0,0,7,-8,0,0,0,0,0.312,50.83,94.43,0.91,0.2,888,0.5,238,4.6000000000000005,0.0000,0.0000 +2012,1,30,14,30,3.3000000000000003,1.1300000000000001,0.03,0.62,31,573,101,7,7,-7.800000000000001,64,25,7,67,0.311,44.14,83.03,0.92,0.2,888,0.5,237,5.1000000000000005,0.0000,0.0000 +2012,1,30,15,30,6.6000000000000005,1.1300000000000001,0.029,0.62,51,831,297,0,8,-7.5,140,354,0,245,0.31,35.68,72.74,0.92,0.2,888,0.5,235,5,12.2303,9.4347 +2012,1,30,16,30,10.8,1.1300000000000001,0.029,0.62,61,935,473,0,4,-7.2,276,85,0,313,0.308,27.580000000000002,63.85,0.92,0.2,887,0.5,236,5.300000000000001,16.8340,13.1150 +2012,1,30,17,30,15.100000000000001,1.1400000000000001,0.029,0.62,67,985,602,0,7,-7.300000000000001,236,437,0,473,0.306,20.62,57.1,0.91,0.2,887,0.5,242,6.6000000000000005,26.4947,20.7236 +2012,1,30,18,30,18.1,1.11,0.025,0.62,67,1011,670,0,8,-8.9,211,606,0,573,0.305,15.07,53.370000000000005,0.9,0.2,885,0.5,245,7.6000000000000005,32.6623,25.5860 +2012,1,30,19,30,19.400000000000002,1.12,0.025,0.62,67,1012,671,0,0,-10,67,1012,0,671,0.305,12.73,53.29,0.89,0.2,884,0.5,242,7.800000000000001,38.2616,29.9730 +2012,1,30,20,30,19.6,1.1400000000000001,0.026000000000000002,0.62,65,1000,611,0,0,-10.8,65,1000,0,611,0.304,11.870000000000001,56.89,0.88,0.2,884,0.4,238,7.5,34.2613,26.8010 +2012,1,30,21,30,19,1.17,0.027,0.62,60,952,484,0,0,-11.100000000000001,60,952,0,484,0.301,11.950000000000001,63.54,0.88,0.2,884,0.4,234,6.6000000000000005,26.0872,20.3287 +2012,1,30,22,30,16.2,1.19,0.029,0.62,51,849,308,0,0,-10.700000000000001,51,849,0,308,0.298,14.81,72.36,0.88,0.2,884,0.4,229,4.800000000000001,15.4298,11.9098 +2012,1,30,23,30,12.3,1.2,0.029,0.62,32,607,110,0,0,-8.6,32,607,0,110,0.295,22.400000000000002,82.61,0.89,0.2,884,0.4,223,3.7,0.0000,0.0000 +2012,1,31,0,30,10.3,1.2,0.029,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.292,26.3,93.97,0.89,0.2,884,0.4,220,4,0.0000,0.0000 +2012,1,31,1,30,9.700000000000001,1.19,0.029,0.62,0,0,0,0,0,-8.1,0,0,0,0,0.29,27.73,105.81,0.89,0.2,884,0.4,220,4.5,0.0000,0.0000 +2012,1,31,2,30,8.700000000000001,1.18,0.028,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.28800000000000003,31.17,117.96000000000001,0.89,0.2,884,0.4,223,4.6000000000000005,0.0000,0.0000 +2012,1,31,3,30,7.5,1.18,0.027,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28800000000000003,35.47,130.19,0.88,0.2,885,0.4,230,4.5,0.0000,0.0000 +2012,1,31,4,30,6.4,1.18,0.027,0.62,0,0,0,0,0,-6.9,0,0,0,0,0.29,37.88,142.16,0.88,0.2,885,0.4,240,4.4,0.0000,0.0000 +2012,1,31,5,30,5.6000000000000005,1.17,0.027,0.62,0,0,0,0,0,-7.7,0,0,0,0,0.291,37.72,153.14000000000001,0.87,0.2,885,0.4,249,4.4,0.0000,0.0000 +2012,1,31,6,30,4.800000000000001,1.1500000000000001,0.027,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.294,38.06,161.02,0.87,0.2,885,0.4,255,4.5,0.0000,0.0000 +2012,1,31,7,30,4,1.12,0.027,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.298,39.88,161.18,0.87,0.2,885,0.30000000000000004,259,4.6000000000000005,0.0000,0.0000 +2012,1,31,8,30,3.2,1.1,0.026000000000000002,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.301,42.44,153.48,0.87,0.2,885,0.30000000000000004,263,4.5,0.0000,0.0000 +2012,1,31,9,30,2.5,1.11,0.024,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.304,44.77,142.54,0.87,0.2,885,0.30000000000000004,269,4.4,0.0000,0.0000 +2012,1,31,10,30,1.8,1.1500000000000001,0.024,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.306,46.9,130.59,0.88,0.2,886,0.30000000000000004,276,4.3,0.0000,0.0000 +2012,1,31,11,30,1.3,1.19,0.024,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.308,48,118.35000000000001,0.89,0.2,886,0.30000000000000004,284,4.2,0.0000,0.0000 +2012,1,31,12,30,0.8,1.22,0.025,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.309,48.77,106.17,0.89,0.2,887,0.4,293,3.9000000000000004,0.0000,0.0000 +2012,1,31,13,30,1.9000000000000001,1.21,0.027,0.62,0,0,0,0,0,-9,0,0,0,0,0.309,44.12,94.3,0.89,0.2,888,0.4,304,4,0.0000,0.0000 +2012,1,31,14,30,5.1000000000000005,1.18,0.029,0.62,31,583,103,0,1,-8.9,31,583,0,103,0.309,35.69,82.89,0.9,0.2,889,0.5,315,4.2,0.0000,0.0000 +2012,1,31,15,30,9.1,1.17,0.031,0.62,52,830,300,0,1,-8.4,52,830,0,300,0.307,28.22,72.57000000000001,0.91,0.2,889,0.5,164,4.3,14.9996,11.5741 +2012,1,31,16,30,12.3,1.1500000000000001,0.034,0.62,64,929,476,0,7,-8.8,203,387,0,375,0.305,22.11,63.64,0.92,0.2,889,0.5,18,4.7,20.1982,15.7384 +2012,1,31,17,30,14.100000000000001,1.1400000000000001,0.036000000000000004,0.62,71,977,605,0,7,-9.3,167,670,0,534,0.303,18.8,56.86,0.92,0.2,889,0.5,28,4.3,29.9481,23.4273 +2012,1,31,18,30,15,1.1400000000000001,0.038,0.62,75,988,669,0,0,-9.1,75,988,0,669,0.301,18.02,53.1,0.92,0.2,889,0.6000000000000001,25,3.3000000000000003,38.1784,29.9098 +2012,1,31,19,30,15.5,1.1400000000000001,0.038,0.62,75,989,670,0,0,-9.1,75,989,0,670,0.3,17.580000000000002,53.01,0.92,0.2,888,0.6000000000000001,20,2.3000000000000003,38.2500,29.9669 +2012,1,31,20,30,15.600000000000001,1.16,0.036000000000000004,0.62,71,971,605,0,0,-9,71,971,0,605,0.3,17.55,56.620000000000005,0.91,0.2,888,0.6000000000000001,15,1.5,33.9709,26.5770 +2012,1,31,21,30,15.100000000000001,1.16,0.034,0.62,64,925,480,0,8,-9,205,327,0,352,0.302,18.16,63.29,0.92,0.2,888,0.6000000000000001,25,1.1,19.0052,14.8127 +2012,1,31,22,30,12.8,1.17,0.039,0.62,55,806,302,0,1,-7.300000000000001,55,806,0,302,0.304,23.94,72.14,0.92,0.2,889,0.7000000000000001,48,1,15.1602,11.7056 +2012,1,31,23,30,9.200000000000001,1.2,0.04,0.62,34,556,108,0,8,-3.1,74,117,0,89,0.305,41.88,82.41,0.92,0.2,889,0.7000000000000001,66,1.2000000000000002,0.0000,0.0000 +2012,2,1,0,30,7,1.21,0.042,0.61,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.307,40.43,93.78,0.92,0.2,890,0.7000000000000001,75,1.5,0.0000,0.0000 +2012,2,1,1,30,6.1000000000000005,1.21,0.045,0.61,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.308,41.12,105.63,0.92,0.2,890,0.7000000000000001,83,1.7000000000000002,0.0000,0.0000 +2012,2,1,2,30,5.6000000000000005,1.19,0.05,0.61,0,0,0,0,7,-6.5,0,0,0,0,0.309,41.37,117.79,0.93,0.2,890,0.7000000000000001,91,1.7000000000000002,0.0000,0.0000 +2012,2,1,3,30,5.5,1.17,0.053,0.61,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.309,41.36,130.02,0.93,0.2,890,0.7000000000000001,100,1.8,0.0000,0.0000 +2012,2,1,4,30,5.300000000000001,1.16,0.056,0.61,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.308,41.99,141.97,0.93,0.2,890,0.8,110,1.7000000000000002,0.0000,0.0000 +2012,2,1,5,30,5,1.1500000000000001,0.059000000000000004,0.61,0,0,0,0,7,-6.5,0,0,0,0,0.307,43.12,152.92000000000002,0.9400000000000001,0.2,890,0.8,120,1.7000000000000002,0.0000,0.0000 +2012,2,1,6,30,4.7,1.1500000000000001,0.061,0.61,0,0,0,0,7,-6.4,0,0,0,0,0.307,44.4,160.74,0.9400000000000001,0.2,890,0.8,131,1.6,0.0000,0.0000 +2012,2,1,7,30,4.5,1.1500000000000001,0.066,0.61,0,0,0,0,4,-6.2,0,0,0,0,0.307,45.730000000000004,160.92000000000002,0.9400000000000001,0.2,890,0.8,145,1.4000000000000001,0.0000,0.0000 +2012,2,1,8,30,4.3,1.1400000000000001,0.073,0.61,0,0,0,0,7,-6,0,0,0,0,0.308,47.07,153.3,0.9400000000000001,0.2,890,0.9,169,1.4000000000000001,0.0000,0.0000 +2012,2,1,9,30,4.3,1.1400000000000001,0.082,0.61,0,0,0,0,7,-6,0,0,0,0,0.309,47.28,142.41,0.9500000000000001,0.2,890,0.9,199,1.5,0.0000,0.0000 +2012,2,1,10,30,4.2,1.1300000000000001,0.089,0.61,0,0,0,0,8,-5.800000000000001,0,0,0,0,0.312,48.19,130.47,0.9500000000000001,0.2,890,0.9,224,1.8,0.0000,0.0000 +2012,2,1,11,30,3.7,1.1400000000000001,0.08600000000000001,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.316,50.980000000000004,118.23,0.9500000000000001,0.2,890,0.9,240,2.1,0.0000,0.0000 +2012,2,1,12,30,2.8000000000000003,1.18,0.067,0.61,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.319,55.2,106.05,0.9400000000000001,0.2,891,0.9,250,2.3000000000000003,0.0000,0.0000 +2012,2,1,13,30,3.1,1.22,0.048,0.61,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.32,54.27,94.16,0.92,0.2,891,0.8,261,3.1,0.0000,0.0000 +2012,2,1,14,30,5,1.18,0.039,0.61,33,545,102,0,0,-5.2,33,545,0,102,0.318,47.550000000000004,82.73,0.91,0.2,892,0.7000000000000001,275,3.9000000000000004,0.0000,0.0000 +2012,2,1,15,30,8.200000000000001,1.09,0.036000000000000004,0.61,53,813,299,0,1,-5.5,53,813,0,299,0.314,37.43,72.39,0.9,0.2,892,0.6000000000000001,297,4.1000000000000005,14.9747,11.5580 +2012,2,1,16,30,12,1,0.035,0.61,65,927,479,0,0,-6.5,65,927,0,479,0.311,26.96,63.43,0.9,0.2,893,0.5,326,4.800000000000001,25.8373,20.1356 +2012,2,1,17,30,14.600000000000001,0.9500000000000001,0.034,0.61,70,978,609,0,0,-7.9,70,978,0,609,0.31,20.41,56.61,0.89,0.2,892,0.5,343,5.2,34.1972,26.7542 +2012,2,1,18,30,15.9,1.03,0.035,0.61,74,1008,683,0,0,-8.700000000000001,74,1008,0,683,0.309,17.64,52.83,0.89,0.2,892,0.4,348,4.9,39.0217,30.5733 +2012,2,1,19,30,16.6,1.04,0.034,0.61,73,1010,685,0,0,-9.3,73,1010,0,685,0.309,16.01,52.730000000000004,0.89,0.2,891,0.4,351,4.5,39.1523,30.6767 +2012,2,1,20,30,16.7,1.04,0.033,0.61,70,991,619,0,0,-10,70,991,0,619,0.308,15.120000000000001,56.35,0.89,0.2,891,0.4,354,3.9000000000000004,34.8037,27.2317 +2012,2,1,21,30,16.1,1.01,0.032,0.61,63,945,492,0,0,-10.5,63,945,0,492,0.308,15.14,63.03,0.89,0.2,891,0.4,179,3,26.6111,20.7446 +2012,2,1,22,30,13.5,0.99,0.033,0.61,53,844,315,0,0,-9.5,53,844,0,315,0.307,19.37,71.91,0.89,0.2,891,0.4,13,1.8,15.8467,12.2398 +2012,2,1,23,30,10,1.01,0.034,0.61,34,601,116,0,0,-4.1000000000000005,34,601,0,116,0.308,36.93,82.2,0.89,0.2,891,0.4,36,1.3,0.0000,0.0000 +2012,2,2,0,30,7.800000000000001,1.03,0.036000000000000004,0.61,0,0,0,0,1,-6.9,0,0,0,0,0.308,34.59,93.58,0.9,0.2,892,0.4,58,1.5,0.0000,0.0000 +2012,2,2,1,30,6.4,1.03,0.039,0.61,0,0,0,0,1,-6.800000000000001,0,0,0,0,0.308,38.29,105.45,0.9,0.2,892,0.4,74,1.5,0.0000,0.0000 +2012,2,2,2,30,5.4,1.02,0.041,0.61,0,0,0,0,4,-6.4,0,0,0,0,0.308,42.17,117.61,0.91,0.2,892,0.4,87,1.4000000000000001,0.0000,0.0000 +2012,2,2,3,30,4.7,1.03,0.041,0.61,0,0,0,0,4,-6.1000000000000005,0,0,0,0,0.308,45.33,129.84,0.91,0.2,892,0.4,101,1.4000000000000001,0.0000,0.0000 +2012,2,2,4,30,4.1000000000000005,1.04,0.042,0.61,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.308,48.39,141.78,0.91,0.2,892,0.4,117,1.4000000000000001,0.0000,0.0000 +2012,2,2,5,30,3.7,1.07,0.042,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.308,50.26,152.69,0.91,0.2,892,0.4,132,1.4000000000000001,0.0000,0.0000 +2012,2,2,6,30,3.4000000000000004,1.08,0.043000000000000003,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.309,51.43,160.46,0.92,0.2,891,0.4,141,1.5,0.0000,0.0000 +2012,2,2,7,30,3,1.08,0.044,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.309,53.02,160.66,0.92,0.2,891,0.4,145,1.6,0.0000,0.0000 +2012,2,2,8,30,2.7,1.09,0.046,0.61,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.309,54.31,153.11,0.92,0.2,891,0.5,146,1.8,0.0000,0.0000 +2012,2,2,9,30,2.6,1.09,0.047,0.61,0,0,0,0,7,-5.4,0,0,0,0,0.308,55.42,142.27,0.92,0.2,890,0.5,147,2.1,0.0000,0.0000 +2012,2,2,10,30,2.4000000000000004,1.1,0.045,0.61,0,0,0,0,6,-5.1000000000000005,0,0,0,0,0.307,57.82,130.35,0.91,0.2,890,0.6000000000000001,146,2.6,0.0000,0.0000 +2012,2,2,11,30,2.2,1.1,0.047,0.61,0,0,0,0,7,-4.5,0,0,0,0,0.306,61.31,118.11,0.92,0.2,890,0.7000000000000001,146,3.2,0.0000,0.0000 +2012,2,2,12,30,2.1,1.11,0.051000000000000004,0.61,0,0,0,0,7,-3.7,0,0,0,0,0.305,65.27,105.92,0.92,0.2,890,0.8,147,3.6,0.0000,0.0000 +2012,2,2,13,30,2.2,1.1300000000000001,0.053,0.61,0,0,0,0,7,-3,0,0,0,0,0.305,68.67,94.02,0.92,0.2,890,0.8,147,3.9000000000000004,0.0000,0.0000 +2012,2,2,14,30,3.4000000000000004,1.16,0.053,0.61,36,506,101,7,7,-2.2,55,8,7,56,0.305,66.52,82.57000000000001,0.92,0.2,889,0.9,143,4.1000000000000005,0.0000,0.0000 +2012,2,2,15,30,6,1.19,0.053,0.61,59,769,294,0,7,-1.5,166,165,0,216,0.305,58.46,72.2,0.92,0.2,889,0.9,139,5,10.8370,8.3668 +2012,2,2,16,30,9,1.23,0.055,0.61,73,873,466,0,7,-0.8,145,694,0,457,0.304,50.36,63.21,0.93,0.2,888,1,139,6.4,24.6879,19.2429 +2012,2,2,17,30,11.600000000000001,1.26,0.061,0.61,83,916,590,0,7,-0.7000000000000001,225,477,0,489,0.303,42.58,56.36,0.9400000000000001,0.2,886,1.1,142,7.6000000000000005,27.4930,21.5115 +2012,2,2,18,30,13.200000000000001,1.31,0.089,0.61,99,906,650,0,3,-0.5,339,58,0,374,0.303,38.83,52.550000000000004,0.9500000000000001,0.2,885,1.2000000000000002,146,8.4,21.3925,16.7625 +2012,2,2,19,30,14,1.26,0.11800000000000001,0.61,112,876,646,0,3,0.9,380,109,0,446,0.305,40.92,52.44,0.9500000000000001,0.2,883,1.2000000000000002,152,8.9,25.5225,19.9994 +2012,2,2,20,30,14.100000000000001,1.22,0.125,0.61,111,842,581,0,3,2.9000000000000004,253,5,0,256,0.308,46.79,56.07,0.96,0.2,883,1.2000000000000002,158,8.700000000000001,14.4135,11.2790 +2012,2,2,21,30,13.700000000000001,1.17,0.128,0.61,102,772,455,0,1,4.4,102,772,0,455,0.311,53.53,62.78,0.96,0.2,883,1.3,158,7.9,24.6513,19.2202 +2012,2,2,22,30,12.5,1.1500000000000001,0.157,0.61,91,610,283,0,1,5.4,91,610,0,283,0.313,62.11,71.67,0.96,0.2,883,1.3,152,6.9,14.2686,11.0248 +2012,2,2,23,30,10.600000000000001,1.16,0.15,0.61,51,346,100,0,0,6.2,51,346,0,100,0.315,74.24,81.99,0.96,0.2,883,1.3,146,6.1000000000000005,0.0000,0.0000 +2012,2,3,0,30,8.9,1.17,0.137,0.61,0,0,0,0,0,6.7,0,0,0,0,0.317,85.81,93.39,0.96,0.2,883,1.3,147,5.5,0.0000,0.0000 +2012,2,3,1,30,7.800000000000001,1.16,0.129,0.61,0,0,0,0,3,7.1000000000000005,0,0,0,0,0.319,95.46000000000001,105.26,0.96,0.2,883,1.3,150,4.7,0.0000,0.0000 +2012,2,3,2,30,7.5,1.12,0.133,0.61,0,0,0,0,1,7.300000000000001,0,0,0,0,0.321,98.86,117.44,0.96,0.2,883,1.4000000000000001,160,3.8000000000000003,0.0000,0.0000 +2012,2,3,3,30,7.6000000000000005,1.11,0.14300000000000002,0.61,0,0,0,0,4,7.300000000000001,0,0,0,0,0.321,98.3,129.66,0.96,0.2,883,1.4000000000000001,178,2.9000000000000004,0.0000,0.0000 +2012,2,3,4,30,7.4,1.1,0.139,0.61,0,0,0,0,6,7.2,0,0,0,0,0.319,98.86,141.58,0.96,0.2,883,1.4000000000000001,200,2.4000000000000004,0.0000,0.0000 +2012,2,3,5,30,7,1.11,0.121,0.61,0,0,0,0,7,6.800000000000001,0,0,0,0,0.318,98.8,152.46,0.96,0.2,883,1.3,213,2.3000000000000003,0.0000,0.0000 +2012,2,3,6,30,6,1.11,0.101,0.61,0,0,0,0,7,6,0,0,0,0,0.318,100,160.18,0.9500000000000001,0.2,883,1.1,217,1.8,0.0000,0.0000 +2012,2,3,7,30,4.9,1.11,0.08600000000000001,0.61,0,0,0,0,0,4.9,0,0,0,0,0.319,100,160.39000000000001,0.9500000000000001,0.2,883,1,219,1.4000000000000001,0.0000,0.0000 +2012,2,3,8,30,4,1.1,0.076,0.61,0,0,0,0,0,4,0,0,0,0,0.32,100,152.92000000000002,0.9500000000000001,0.2,883,1,228,1.3,0.0000,0.0000 +2012,2,3,9,30,3.1,1.1,0.073,0.61,0,0,0,0,0,3.1,0,0,0,0,0.319,100,142.12,0.9400000000000001,0.2,883,0.9,250,1.2000000000000002,0.0000,0.0000 +2012,2,3,10,30,2,1.08,0.068,0.61,0,0,0,0,0,2,0,0,0,0,0.319,100,130.21,0.9400000000000001,0.2,883,0.9,283,1.4000000000000001,0.0000,0.0000 +2012,2,3,11,30,1.2000000000000002,1.06,0.062,0.61,0,0,0,0,1,1.2000000000000002,0,0,0,0,0.32,100,117.99000000000001,0.93,0.2,883,0.8,314,1.8,0.0000,0.0000 +2012,2,3,12,30,1.4000000000000001,1.05,0.06,0.61,0,0,0,0,1,1.2000000000000002,0,0,0,0,0.321,98.28,105.79,0.93,0.2,884,0.8,332,2.8000000000000003,0.0000,0.0000 +2012,2,3,13,30,2.3000000000000003,1.05,0.062,0.61,0,0,0,0,0,1.6,0,0,0,0,0.322,95.32000000000001,93.88,0.9400000000000001,0.2,885,0.8,335,3.7,0.0000,0.0000 +2012,2,3,14,30,3.5,1.06,0.066,0.61,39,484,103,0,0,2.2,39,484,0,103,0.322,91.21000000000001,82.41,0.9500000000000001,0.2,885,0.8,331,3.9000000000000004,0.0000,0.0000 +2012,2,3,15,30,4.7,1.07,0.085,0.61,71,721,294,7,4,3.1,86,0,7,86,0.323,89.09,72.01,0.96,0.2,886,0.8,329,4,4.3224,3.3381 +2012,2,3,16,30,5.800000000000001,1.1,0.097,0.61,92,831,469,7,4,3.5,47,0,7,47,0.322,85.2,62.980000000000004,0.97,0.2,886,0.7000000000000001,329,4.1000000000000005,2.5430,1.9824 +2012,2,3,17,30,6.7,1.12,0.094,0.61,99,890,596,7,4,3.5,78,0,7,78,0.32,79.84,56.1,0.97,0.2,886,0.8,326,4.3,4.3910,3.4360 +2012,2,3,18,30,7.300000000000001,1.1500000000000001,0.116,0.61,114,892,660,0,4,2.9000000000000004,80,0,0,80,0.317,73.69,52.26,0.97,0.2,887,0.8,323,4.6000000000000005,4.5814,3.5902 +2012,2,3,19,30,7.7,1.19,0.114,0.61,113,896,662,0,4,2,48,0,0,48,0.314,67.2,52.15,0.96,0.2,887,0.8,324,5.1000000000000005,2.7501,2.1552 +2012,2,3,20,30,7.800000000000001,1.22,0.099,0.61,101,888,601,0,4,1,73,0,0,73,0.313,62.09,55.79,0.9500000000000001,0.2,888,0.8,327,5.6000000000000005,4.1157,3.2210 +2012,2,3,21,30,7.6000000000000005,1.26,0.094,0.61,90,838,476,0,4,0,98,0,0,98,0.312,58.59,62.52,0.9500000000000001,0.2,888,0.8,331,5.800000000000001,5.3187,4.1476 +2012,2,3,22,30,6.7,1.28,0.083,0.61,70,739,305,0,4,-0.9,37,0,0,37,0.312,58.38,71.44,0.9400000000000001,0.2,889,0.8,334,5.4,1.8695,1.4449 +2012,2,3,23,30,4.800000000000001,1.3,0.075,0.61,42,504,114,0,4,-1.7000000000000002,12,0,0,12,0.313,62.88,81.78,0.9400000000000001,0.2,890,0.7000000000000001,337,4.3,0.0000,0.0000 +2012,2,4,0,30,2.9000000000000004,1.31,0.07200000000000001,0.61,0,0,0,0,1,-2.3000000000000003,0,0,0,0,0.313,68.74,93.2,0.9400000000000001,0.2,891,0.7000000000000001,337,3.7,0.0000,0.0000 +2012,2,4,1,30,1.7000000000000002,1.29,0.073,0.61,0,0,0,0,1,-2.9000000000000004,0,0,0,0,0.314,71.74,105.08,0.9400000000000001,0.2,892,0.7000000000000001,333,3.8000000000000003,0.0000,0.0000 +2012,2,4,2,30,0.7000000000000001,1.28,0.07200000000000001,0.61,0,0,0,0,1,-3.3000000000000003,0,0,0,0,0.315,74.46000000000001,117.26,0.9400000000000001,0.2,893,0.7000000000000001,327,3.7,0.0000,0.0000 +2012,2,4,3,30,0,1.26,0.069,0.61,0,0,0,0,1,-3.7,0,0,0,0,0.316,76.02,129.48,0.9400000000000001,0.2,893,0.6000000000000001,323,3.8000000000000003,0.0000,0.0000 +2012,2,4,4,30,-0.6000000000000001,1.25,0.068,0.61,0,0,0,0,1,-4.1000000000000005,0,0,0,0,0.316,77.42,141.39000000000001,0.9400000000000001,0.2,893,0.6000000000000001,321,3.9000000000000004,0.0000,0.0000 +2012,2,4,5,30,-1.2000000000000002,1.25,0.068,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.317,79.41,152.23,0.9400000000000001,0.2,894,0.6000000000000001,321,4.1000000000000005,0.0000,0.0000 +2012,2,4,6,30,-1.8,1.25,0.067,0.61,0,0,0,0,0,-4.5,0,0,0,0,0.318,81.88,159.9,0.9400000000000001,0.2,894,0.6000000000000001,321,4.3,0.0000,0.0000 +2012,2,4,7,30,-2.4000000000000004,1.25,0.064,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.32,85.05,160.12,0.9400000000000001,0.2,894,0.6000000000000001,323,4.6000000000000005,0.0000,0.0000 +2012,2,4,8,30,-2.9000000000000004,1.24,0.062,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.321,87.75,152.72,0.9400000000000001,0.2,894,0.6000000000000001,325,4.7,0.0000,0.0000 +2012,2,4,9,30,-3.1,1.24,0.061,0.61,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.321,88.15,141.96,0.9400000000000001,0.2,894,0.6000000000000001,329,4.7,0.0000,0.0000 +2012,2,4,10,30,-3.1,1.25,0.063,0.61,0,0,0,0,7,-4.9,0,0,0,0,0.32,87.15,130.08,0.9400000000000001,0.2,895,0.6000000000000001,334,4.800000000000001,0.0000,0.0000 +2012,2,4,11,30,-3.2,1.27,0.067,0.61,0,0,0,0,1,-5.1000000000000005,0,0,0,0,0.318,86.8,117.85000000000001,0.9500000000000001,0.2,895,0.6000000000000001,339,4.800000000000001,0.0000,0.0000 +2012,2,4,12,30,-3.2,1.28,0.07,0.61,0,0,0,0,4,-5.2,0,0,0,0,0.317,86.26,105.65,0.9500000000000001,0.2,896,0.6000000000000001,342,4.800000000000001,0.0000,0.0000 +2012,2,4,13,30,-2.3000000000000003,1.28,0.07200000000000001,0.61,0,0,0,0,1,-5.2,0,0,0,0,0.315,80.41,93.72,0.9500000000000001,0.2,896,0.6000000000000001,344,5.2,0.0000,0.0000 +2012,2,4,14,30,-0.2,1.28,0.073,0.61,41,496,108,0,0,-5.2,41,496,0,108,0.314,69.07000000000001,82.23,0.96,0.2,897,0.6000000000000001,351,6.800000000000001,0.0000,0.0000 +2012,2,4,15,30,2.1,1.29,0.075,0.61,68,757,304,7,4,-5.1000000000000005,75,0,7,75,0.312,58.83,71.81,0.96,0.2,897,0.6000000000000001,179,8.1,3.7765,2.9174 +2012,2,4,16,30,4,1.3,0.074,0.61,82,872,482,7,4,-5.300000000000001,158,1,7,158,0.309,50.94,62.75,0.96,0.2,898,0.6000000000000001,3,7.9,8.5620,6.6757 +2012,2,4,17,30,5.6000000000000005,1.32,0.07,0.61,89,933,613,0,4,-5.4,343,77,0,387,0.307,45.14,55.84,0.9500000000000001,0.2,897,0.6000000000000001,6,7.5,21.8135,17.0714 +2012,2,4,18,30,6.800000000000001,1.34,0.07,0.61,93,957,682,7,2,-5.4,391,139,7,477,0.305,41.35,51.97,0.9500000000000001,0.2,897,0.6000000000000001,9,7.1000000000000005,27.3486,21.4336 +2012,2,4,19,30,7.5,1.35,0.07100000000000001,0.61,93,957,684,7,2,-5.5,391,121,7,465,0.303,39.17,51.85,0.9500000000000001,0.2,896,0.6000000000000001,11,6.6000000000000005,26.6734,20.9053 +2012,2,4,20,30,7.5,1.37,0.07200000000000001,0.61,90,934,618,7,2,-5.6000000000000005,282,482,7,555,0.302,38.9,55.51,0.9500000000000001,0.2,896,0.6000000000000001,13,6.2,31.3323,24.5242 +2012,2,4,21,30,6.9,1.34,0.066,0.61,80,888,493,0,1,-5.7,80,888,0,493,0.3,40.36,62.26,0.9500000000000001,0.2,897,0.6000000000000001,14,5.7,26.8020,20.9044 +2012,2,4,22,30,5.4,1.32,0.069,0.61,67,770,315,0,4,-5.6000000000000005,129,2,0,130,0.299,44.87,71.21000000000001,0.9500000000000001,0.2,897,0.7000000000000001,15,4.9,6.5824,5.0892 +2012,2,4,23,30,2.9000000000000004,1.28,0.069,0.61,43,523,119,7,4,-5.4,79,11,7,80,0.297,54.44,81.57000000000001,0.9500000000000001,0.2,897,0.7000000000000001,16,3.4000000000000004,0.0000,0.0000 +2012,2,5,0,30,0.8,1.24,0.068,0.61,0,0,0,0,4,-5.1000000000000005,0,0,0,0,0.297,64.47,93.01,0.9400000000000001,0.2,898,0.7000000000000001,16,2.4000000000000004,0.0000,0.0000 +2012,2,5,1,30,-0.2,1.2,0.064,0.61,0,0,0,0,1,-5.1000000000000005,0,0,0,0,0.296,69.37,104.9,0.9400000000000001,0.2,899,0.7000000000000001,14,2.4000000000000004,0.0000,0.0000 +2012,2,5,2,30,-1,1.17,0.059000000000000004,0.61,0,0,0,0,1,-5.1000000000000005,0,0,0,0,0.296,73.61,117.09,0.9400000000000001,0.2,899,0.7000000000000001,14,2.4000000000000004,0.0000,0.0000 +2012,2,5,3,30,-1.9000000000000001,1.1500000000000001,0.055,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.296,78.22,129.3,0.9400000000000001,0.2,899,0.7000000000000001,13,2.2,0.0000,0.0000 +2012,2,5,4,30,-2.7,1.1500000000000001,0.051000000000000004,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.296,81.98,141.19,0.93,0.2,899,0.7000000000000001,10,1.9000000000000001,0.0000,0.0000 +2012,2,5,5,30,-3.5,1.1400000000000001,0.048,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.297,85.81,151.99,0.93,0.2,899,0.7000000000000001,5,1.8,0.0000,0.0000 +2012,2,5,6,30,-4.1000000000000005,1.1400000000000001,0.046,0.61,0,0,0,0,0,-5.7,0,0,0,0,0.297,88.48,159.61,0.93,0.2,899,0.6000000000000001,179,1.9000000000000001,0.0000,0.0000 +2012,2,5,7,30,-4.5,1.1500000000000001,0.045,0.61,0,0,0,0,0,-5.9,0,0,0,0,0.297,89.92,159.84,0.93,0.2,899,0.6000000000000001,355,2,0.0000,0.0000 +2012,2,5,8,30,-4.800000000000001,1.16,0.045,0.61,0,0,0,0,0,-6,0,0,0,0,0.298,91,152.51,0.93,0.2,899,0.7000000000000001,353,2.2,0.0000,0.0000 +2012,2,5,9,30,-5.1000000000000005,1.18,0.045,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.298,92.55,141.8,0.93,0.2,899,0.7000000000000001,352,2.2,0.0000,0.0000 +2012,2,5,10,30,-5.4,1.18,0.046,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.298,94.54,129.93,0.93,0.2,899,0.7000000000000001,351,2.2,0.0000,0.0000 +2012,2,5,11,30,-5.6000000000000005,1.18,0.047,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.298,96,117.71000000000001,0.93,0.2,899,0.7000000000000001,349,2,0.0000,0.0000 +2012,2,5,12,30,-5.7,1.17,0.048,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.298,96.91,105.51,0.93,0.2,900,0.7000000000000001,347,1.8,0.0000,0.0000 +2012,2,5,13,30,-4.800000000000001,1.17,0.051000000000000004,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.297,90.54,93.57000000000001,0.93,0.2,900,0.7000000000000001,345,2.2,0.0000,0.0000 +2012,2,5,14,30,-2.1,1.17,0.052000000000000005,0.61,38,537,112,0,0,-6.2,38,537,0,112,0.297,73.75,82.06,0.9400000000000001,0.2,900,0.7000000000000001,179,2.9000000000000004,0.0000,0.0000 +2012,2,5,15,30,0.8,1.17,0.054,0.61,62,786,310,0,0,-7.300000000000001,62,786,0,310,0.298,54.89,71.60000000000001,0.9400000000000001,0.2,900,0.7000000000000001,20,3.2,15.6401,12.0856 +2012,2,5,16,30,2.9000000000000004,1.18,0.054,0.61,74,888,484,0,0,-8.200000000000001,74,888,0,484,0.298,43.85,62.51,0.9400000000000001,0.2,900,0.8,29,3.1,26.2696,20.4857 +2012,2,5,17,30,4.7,1.19,0.053,0.61,81,941,613,0,1,-8.8,81,941,0,613,0.298,37.01,55.57,0.9400000000000001,0.2,899,0.8,36,2.8000000000000003,34.5968,27.0787 +2012,2,5,18,30,5.9,1.18,0.051000000000000004,0.61,83,966,683,0,0,-9,83,966,0,683,0.297,33.49,51.68,0.9400000000000001,0.2,898,0.8,45,2.3000000000000003,39.2049,30.7285 +2012,2,5,19,30,6.800000000000001,1.19,0.05,0.61,83,968,685,0,8,-9.1,227,590,0,594,0.297,31.150000000000002,51.550000000000004,0.9400000000000001,0.2,897,0.8,57,1.9000000000000001,34.1138,26.7392 +2012,2,5,20,30,7.1000000000000005,1.19,0.048,0.61,79,950,620,0,7,-9.3,248,409,0,481,0.297,30.060000000000002,55.22,0.93,0.2,897,0.8,71,1.6,27.1917,21.2858 +2012,2,5,21,30,6.9,1.1,0.038,0.61,67,914,497,0,7,-9.600000000000001,200,401,0,388,0.296,29.72,62,0.93,0.2,896,0.8,80,1.4000000000000001,21.1293,16.4828 +2012,2,5,22,30,5.6000000000000005,1.11,0.036000000000000004,0.61,56,820,323,0,8,-9.9,143,352,0,257,0.296,31.73,70.97,0.93,0.2,896,0.8,88,1,13.0416,10.0866 +2012,2,5,23,30,3.3000000000000003,1.11,0.036000000000000004,0.61,37,594,126,0,4,-7,65,1,0,65,0.295,46.79,81.36,0.93,0.2,896,0.8,96,0.9,0.0000,0.0000 +2012,2,6,0,30,1.3,1.11,0.034,0.61,0,0,0,0,0,-8.8,0,0,0,0,0.295,46.980000000000004,92.81,0.93,0.2,896,0.8,103,1.1,0.0000,0.0000 +2012,2,6,1,30,0,1.12,0.031,0.61,0,0,0,0,4,-9.200000000000001,0,0,0,0,0.294,50.120000000000005,104.72,0.92,0.2,896,0.8,112,1.2000000000000002,0.0000,0.0000 +2012,2,6,2,30,-1.1,1.12,0.029,0.61,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.294,52.46,116.91,0.92,0.2,896,0.8,122,1.2000000000000002,0.0000,0.0000 +2012,2,6,3,30,-2,1.1400000000000001,0.028,0.61,0,0,0,0,0,-10,0,0,0,0,0.293,54.25,129.12,0.92,0.2,896,0.8,135,1.2000000000000002,0.0000,0.0000 +2012,2,6,4,30,-2.7,1.1500000000000001,0.029,0.61,0,0,0,0,0,-10.4,0,0,0,0,0.292,55.59,140.99,0.92,0.2,896,0.8,151,1.3,0.0000,0.0000 +2012,2,6,5,30,-3.4000000000000004,1.16,0.029,0.61,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.291,57.22,151.76,0.92,0.2,896,0.8,168,1.3,0.0000,0.0000 +2012,2,6,6,30,-3.8000000000000003,1.17,0.03,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.291,57.9,159.31,0.92,0.2,896,0.8,184,1.4000000000000001,0.0000,0.0000 +2012,2,6,7,30,-4,1.18,0.032,0.61,0,0,0,0,0,-11,0,0,0,0,0.29,58.35,159.56,0.93,0.2,896,0.8,197,1.5,0.0000,0.0000 +2012,2,6,8,30,-4,1.2,0.033,0.61,0,0,0,0,0,-11,0,0,0,0,0.289,58.39,152.29,0.93,0.2,896,0.9,207,1.6,0.0000,0.0000 +2012,2,6,9,30,-4,1.22,0.035,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.28800000000000003,58.92,141.63,0.93,0.2,895,0.9,214,1.7000000000000002,0.0000,0.0000 +2012,2,6,10,30,-3.9000000000000004,1.23,0.037,0.61,0,0,0,0,7,-10.600000000000001,0,0,0,0,0.28700000000000003,59.46,129.78,0.93,0.2,895,0.9,219,1.7000000000000002,0.0000,0.0000 +2012,2,6,11,30,-3.8000000000000003,1.23,0.039,0.61,0,0,0,0,7,-10.4,0,0,0,0,0.28700000000000003,60.03,117.57000000000001,0.93,0.2,895,0.9,221,1.7000000000000002,0.0000,0.0000 +2012,2,6,12,30,-3.5,1.24,0.041,0.61,0,0,0,0,1,-10.200000000000001,0,0,0,0,0.28800000000000003,59.9,105.36,0.9400000000000001,0.2,894,0.9,222,1.8,0.0000,0.0000 +2012,2,6,13,30,-2.1,1.25,0.042,0.61,0,0,0,0,0,-9.9,0,0,0,0,0.28800000000000003,55.1,93.4,0.9400000000000001,0.2,894,0.9,222,2.6,0.0000,0.0000 +2012,2,6,14,30,0.6000000000000001,1.26,0.042,0.61,36,560,115,7,4,-9.5,73,9,7,75,0.28800000000000003,46.61,81.88,0.9400000000000001,0.2,894,0.9,217,3.5,0.0000,0.0000 +2012,2,6,15,30,3.9000000000000004,1.26,0.043000000000000003,0.61,58,799,312,0,1,-9.3,58,799,0,312,0.28800000000000003,37.65,71.4,0.9400000000000001,0.2,894,0.9,207,3.9000000000000004,15.7701,12.1896 +2012,2,6,16,30,6.5,1.26,0.044,0.61,70,900,489,7,4,-9.600000000000001,281,71,7,314,0.28800000000000003,30.650000000000002,62.27,0.9400000000000001,0.2,893,0.9,198,4.4,17.0695,13.3134 +2012,2,6,17,30,8.200000000000001,1.27,0.045,0.61,77,949,617,7,4,-9.600000000000001,351,118,7,419,0.28800000000000003,27.16,55.29,0.9400000000000001,0.2,893,0.9,194,4.800000000000001,23.6790,18.5355 +2012,2,6,18,30,9.5,1.25,0.043000000000000003,0.61,79,974,687,7,4,-9.3,382,197,7,505,0.28800000000000003,25.5,51.38,0.9400000000000001,0.2,891,0.9,196,5.1000000000000005,29.0218,22.7492 +2012,2,6,19,30,10.3,1.24,0.045,0.61,80,972,689,0,0,-8.6,80,972,0,689,0.289,25.52,51.25,0.9400000000000001,0.2,890,0.9,199,5.300000000000001,39.6162,31.0550 +2012,2,6,20,30,10.5,1.23,0.049,0.61,79,947,623,7,7,-7.9,236,443,7,491,0.29,26.580000000000002,54.93,0.9400000000000001,0.2,890,0.9,200,5.300000000000001,27.7945,21.7602 +2012,2,6,21,30,10.100000000000001,1.23,0.054,0.61,74,887,494,0,4,-7.4,261,280,0,394,0.291,28.48,61.730000000000004,0.9400000000000001,0.2,889,1,200,4.800000000000001,21.4932,16.7695 +2012,2,6,22,30,8.700000000000001,1.23,0.059000000000000004,0.61,64,777,320,0,7,-6.800000000000001,171,162,0,224,0.293,32.83,70.74,0.9400000000000001,0.2,889,1,197,3.4000000000000004,11.3910,8.8126 +2012,2,6,23,30,6.2,1.24,0.059000000000000004,0.61,41,543,125,0,7,-5.1000000000000005,77,24,0,81,0.295,44.13,81.15,0.9400000000000001,0.2,889,1,189,2.1,0.0000,0.0000 +2012,2,7,0,30,4.3,1.26,0.055,0.61,0,0,0,0,4,-4.9,0,0,0,0,0.297,51.25,92.62,0.9400000000000001,0.65,889,1,181,2,0.0000,0.0000 +2012,2,7,1,30,3.4000000000000004,1.27,0.052000000000000005,0.61,0,0,0,0,7,-5.2,0,0,0,0,0.3,53.4,104.54,0.9400000000000001,0.65,890,1,177,2.2,0.0000,0.0000 +2012,2,7,2,30,2.8000000000000003,1.27,0.052000000000000005,0.61,0,0,0,0,1,-5.4,0,0,0,0,0.302,54.65,116.73,0.9400000000000001,0.65,890,1,176,2.6,0.0000,0.0000 +2012,2,7,3,30,2.4000000000000004,1.27,0.055,0.61,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.304,55.75,128.94,0.9400000000000001,0.65,890,1,179,2.9000000000000004,0.0000,0.0000 +2012,2,7,4,30,1.9000000000000001,1.26,0.061,0.61,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.307,57.6,140.79,0.9500000000000001,0.65,890,1,184,3,0.0000,0.0000 +2012,2,7,5,30,1.4000000000000001,1.23,0.07,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.309,60.11,151.52,0.9500000000000001,0.65,890,1,191,2.7,0.0000,0.0000 +2012,2,7,6,30,0.8,1.2,0.082,0.61,0,0,0,0,1,-5.2,0,0,0,0,0.311,64.04,159.02,0.9500000000000001,0.65,890,1.1,203,2.2,0.0000,0.0000 +2012,2,7,7,30,0.1,1.18,0.093,0.61,0,0,0,0,4,-4.9,0,0,0,0,0.313,69.26,159.27,0.9500000000000001,0.65,891,1.1,230,1.7000000000000002,0.0000,0.0000 +2012,2,7,8,30,-0.5,1.18,0.101,0.61,0,0,0,0,1,-4.5,0,0,0,0,0.314,74.60000000000001,152.07,0.9500000000000001,0.65,891,1.1,267,1.7000000000000002,0.0000,0.0000 +2012,2,7,9,30,-1.1,1.19,0.10400000000000001,0.61,0,0,0,0,4,-3.9000000000000004,0,0,0,0,0.316,81.18,141.45000000000002,0.9500000000000001,0.65,891,1,297,2,0.0000,0.0000 +2012,2,7,10,30,-1.4000000000000001,1.2,0.106,0.61,0,0,0,0,4,-3.2,0,0,0,0,0.318,87.85000000000001,129.63,0.9500000000000001,0.65,892,1,319,2.5,0.0000,0.0000 +2012,2,7,11,30,-1.4000000000000001,1.17,0.11800000000000001,0.61,0,0,0,0,8,-2.4000000000000004,0,0,0,0,0.32,92.71000000000001,117.42,0.96,0.65,892,1,335,3.6,0.0000,0.0000 +2012,2,7,12,30,-1.2000000000000002,1.12,0.147,0.61,0,0,0,0,4,-2.2,0,0,0,0,0.322,93.2,105.2,0.97,0.65,893,1,345,4.9,0.0000,0.0000 +2012,2,7,13,30,-1.1,1.1,0.154,0.61,0,0,0,0,4,-2.7,0,0,0,0,0.322,89.02,93.24,0.97,0.65,895,1,351,6.2,0.0000,0.0000 +2012,2,7,14,30,-0.8,1.11,0.14200000000000002,0.61,56,374,110,7,4,-3.7,24,0,7,24,0.323,80.94,81.69,0.97,0.65,895,0.9,356,7.2,0.0000,0.0000 +2012,2,7,15,30,0,1.12,0.13,0.61,95,669,310,0,4,-4.4,93,0,0,93,0.323,72.49,71.18,0.97,0.65,896,0.8,180,7.7,4.7103,3.6419 +2012,2,7,16,30,1.2000000000000002,1.12,0.114,0.61,112,812,493,7,4,-4.7,129,0,7,130,0.324,64.65,62.03,0.96,0.65,897,0.8,2,7.9,7.0780,5.5214 +2012,2,7,17,30,2.3000000000000003,1.12,0.101,0.61,120,892,632,0,4,-5,197,0,0,197,0.324,58.53,55.01,0.96,0.65,897,0.7000000000000001,3,7.9,11.1476,8.7272 +2012,2,7,18,30,3,1.09,0.084,0.61,118,942,710,0,4,-5.300000000000001,185,0,0,185,0.324,54.56,51.07,0.96,0.65,897,0.6000000000000001,4,7.7,10.6446,8.3447 +2012,2,7,19,30,3.4000000000000004,1.11,0.082,0.61,117,945,713,0,4,-5.7,173,0,0,173,0.324,51.410000000000004,50.94,0.96,0.65,896,0.6000000000000001,5,7.4,9.9591,7.8076 +2012,2,7,20,30,3.5,1.11,0.079,0.61,110,933,650,0,4,-6.2,239,0,0,240,0.323,48.95,54.64,0.9500000000000001,0.65,897,0.5,7,6.9,13.6040,10.6517 +2012,2,7,21,30,3,1.04,0.073,0.61,96,887,520,0,4,-6.9,131,0,0,131,0.323,48.18,61.47,0.9500000000000001,0.65,897,0.5,9,6.4,7.1580,5.5858 +2012,2,7,22,30,1.8,0.99,0.07100000000000001,0.61,78,784,339,0,4,-7.6000000000000005,88,0,0,88,0.323,49.800000000000004,70.5,0.9500000000000001,0.65,897,0.5,12,5.4,4.4848,3.4708 +2012,2,7,23,30,-0.6000000000000001,0.98,0.067,0.61,48,560,136,0,4,-8,43,0,0,43,0.323,57.15,80.94,0.9500000000000001,0.65,898,0.4,17,3.5,0.0000,0.0000 +2012,2,8,0,30,-2.9000000000000004,0.98,0.062,0.61,0,0,0,0,4,-8.200000000000001,0,0,0,0,0.323,67.07000000000001,92.43,0.9400000000000001,0.2,899,0.4,24,2,0.0000,0.0000 +2012,2,8,1,30,-4.2,0.98,0.058,0.61,0,0,0,0,1,-8.3,0,0,0,0,0.322,73.35000000000001,104.36,0.9400000000000001,0.2,899,0.4,28,1.7000000000000002,0.0000,0.0000 +2012,2,8,2,30,-5.300000000000001,0.98,0.055,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.319,79.84,116.56,0.9400000000000001,0.2,900,0.4,31,1.5,0.0000,0.0000 +2012,2,8,3,30,-6.1000000000000005,0.99,0.052000000000000005,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.317,84.49,128.76,0.9400000000000001,0.2,900,0.4,30,1.3,0.0000,0.0000 +2012,2,8,4,30,-6.4,1,0.051000000000000004,0.61,0,0,0,0,1,-8.4,0,0,0,0,0.315,85.5,140.59,0.9400000000000001,0.2,900,0.4,27,1.1,0.0000,0.0000 +2012,2,8,5,30,-6.6000000000000005,1.01,0.05,0.61,0,0,0,0,0,-8.6,0,0,0,0,0.314,85.83,151.28,0.93,0.2,900,0.4,22,1,0.0000,0.0000 +2012,2,8,6,30,-6.7,1.01,0.049,0.61,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.313,85.49,158.71,0.93,0.2,900,0.4,20,0.9,0.0000,0.0000 +2012,2,8,7,30,-6.7,1.02,0.048,0.61,0,0,0,0,0,-8.9,0,0,0,0,0.312,84.53,158.97,0.93,0.2,899,0.4,17,0.8,0.0000,0.0000 +2012,2,8,8,30,-6.7,1.04,0.047,0.61,0,0,0,0,0,-9,0,0,0,0,0.311,83.82000000000001,151.84,0.93,0.2,899,0.4,8,0.7000000000000001,0.0000,0.0000 +2012,2,8,9,30,-6.6000000000000005,1.06,0.047,0.61,0,0,0,0,1,-9,0,0,0,0,0.312,82.83,141.27,0.93,0.2,899,0.4,171,0.6000000000000001,0.0000,0.0000 +2012,2,8,10,30,-6.4,1.06,0.048,0.61,0,0,0,0,0,-9,0,0,0,0,0.313,81.59,129.47,0.93,0.2,899,0.4,326,0.6000000000000001,0.0000,0.0000 +2012,2,8,11,30,-6.300000000000001,1.06,0.049,0.61,0,0,0,0,0,-9,0,0,0,0,0.314,81.15,117.26,0.93,0.2,899,0.4,288,0.5,0.0000,0.0000 +2012,2,8,12,30,-6.1000000000000005,1.05,0.051000000000000004,0.61,0,0,0,0,1,-8.9,0,0,0,0,0.316,80.29,105.04,0.9400000000000001,0.2,899,0.4,249,0.6000000000000001,0.0000,0.0000 +2012,2,8,13,30,-4.7,1.04,0.054,0.61,0,0,0,0,1,-8.9,0,0,0,0,0.318,72.68,93.06,0.9400000000000001,0.2,899,0.5,223,1.5,0.0000,0.0000 +2012,2,8,14,30,-2.1,1.03,0.056,0.61,41,557,123,0,0,-8.700000000000001,41,557,0,123,0.319,60.42,81.5,0.9400000000000001,0.2,899,0.5,211,2.6,0.0000,0.0000 +2012,2,8,15,30,0.6000000000000001,1.04,0.056,0.61,64,795,323,0,4,-8.6,197,52,0,214,0.321,50.21,70.96000000000001,0.9400000000000001,0.2,898,0.6000000000000001,206,3.2,10.8606,8.3998 +2012,2,8,16,30,3.1,1.06,0.056,0.61,76,894,499,0,4,-8.200000000000001,290,165,0,367,0.322,43.25,61.78,0.9400000000000001,0.2,898,0.7000000000000001,204,3.8000000000000003,20.0139,15.6149 +2012,2,8,17,30,5.4,1.09,0.055,0.61,83,941,626,0,0,-7.9,83,941,0,626,0.323,37.78,54.730000000000004,0.9400000000000001,0.2,897,0.8,204,4.4,35.4691,27.7707 +2012,2,8,18,30,7.2,1.1400000000000001,0.054,0.61,85,966,696,0,0,-7.7,85,966,0,696,0.323,33.84,50.76,0.9400000000000001,0.2,895,0.8,205,4.7,40.0942,31.4343 +2012,2,8,19,30,8.4,1.1400000000000001,0.051000000000000004,0.61,84,965,696,0,0,-7.300000000000001,84,965,0,696,0.323,32.08,50.620000000000005,0.9400000000000001,0.2,894,0.9,207,4.7,40.1154,31.4523 +2012,2,8,20,30,9.1,1.1400000000000001,0.049,0.61,80,947,632,0,0,-6.800000000000001,80,947,0,632,0.324,31.84,54.34,0.9400000000000001,0.2,893,0.9,208,4.5,35.8724,28.0907 +2012,2,8,21,30,9.200000000000001,1.1300000000000001,0.047,0.61,72,901,506,0,0,-6.300000000000001,72,901,0,506,0.325,32.96,61.2,0.9400000000000001,0.2,893,0.9,207,4.2,27.6950,21.6156 +2012,2,8,22,30,7.300000000000001,1.1300000000000001,0.047,0.61,61,804,332,0,0,-5.800000000000001,61,804,0,332,0.326,38.94,70.27,0.9400000000000001,0.2,892,0.9,200,3,16.9551,13.1255 +2012,2,8,23,30,3.8000000000000003,1.1300000000000001,0.047,0.61,40,582,134,0,0,-4.6000000000000005,40,582,0,134,0.327,54.28,80.73,0.9400000000000001,0.2,892,0.9,188,2.2,0.0000,0.0000 +2012,2,9,0,30,2,1.1300000000000001,0.046,0.61,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.328,57.26,92.23,0.9400000000000001,0.2,892,0.9,182,2.8000000000000003,0.0000,0.0000 +2012,2,9,1,30,1.8,1.1400000000000001,0.045,0.61,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.33,57.01,104.18,0.9400000000000001,0.2,892,0.9,182,3.5,0.0000,0.0000 +2012,2,9,2,30,1.2000000000000002,1.16,0.045,0.61,0,0,0,0,7,-5.9,0,0,0,0,0.333,59.160000000000004,116.38,0.9400000000000001,0.2,893,1,185,3.8000000000000003,0.0000,0.0000 +2012,2,9,3,30,0.4,1.18,0.047,0.61,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.336,62.980000000000004,128.58,0.9400000000000001,0.2,893,1,191,3.5,0.0000,0.0000 +2012,2,9,4,30,-0.30000000000000004,1.22,0.049,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.338,67.12,140.39000000000001,0.9400000000000001,0.2,892,1.1,196,3.1,0.0000,0.0000 +2012,2,9,5,30,-0.9,1.24,0.053,0.61,0,0,0,0,7,-5.4,0,0,0,0,0.339,71.56,151.03,0.9400000000000001,0.2,892,1.2000000000000002,199,2.9000000000000004,0.0000,0.0000 +2012,2,9,6,30,-1,1.25,0.058,0.61,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.34,73.75,158.41,0.9400000000000001,0.2,892,1.2000000000000002,202,3.1,0.0000,0.0000 +2012,2,9,7,30,-0.6000000000000001,1.24,0.066,0.61,0,0,0,0,7,-4.7,0,0,0,0,0.34,73.55,158.67000000000002,0.9500000000000001,0.2,892,1.3,208,3.4000000000000004,0.0000,0.0000 +2012,2,9,8,30,-0.30000000000000004,1.23,0.07100000000000001,0.61,0,0,0,0,4,-4.3,0,0,0,0,0.34,74.52,151.61,0.9500000000000001,0.2,891,1.3,216,3.6,0.0000,0.0000 +2012,2,9,9,30,-0.1,1.22,0.07100000000000001,0.61,0,0,0,0,7,-3.7,0,0,0,0,0.339,76.48,141.08,0.9500000000000001,0.2,891,1.3,222,3.4000000000000004,0.0000,0.0000 +2012,2,9,10,30,-0.4,1.22,0.067,0.61,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.338,80.87,129.3,0.9500000000000001,0.2,890,1.3,230,3.1,0.0000,0.0000 +2012,2,9,11,30,-0.8,1.23,0.063,0.61,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.338,85.57000000000001,117.10000000000001,0.9500000000000001,0.2,890,1.3,240,2.8000000000000003,0.0000,0.0000 +2012,2,9,12,30,-1,1.22,0.064,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.338,88.09,104.87,0.9500000000000001,0.2,890,1.3,253,2.6,0.0000,0.0000 +2012,2,9,13,30,0.1,1.2,0.068,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.34,81.57000000000001,92.88,0.9500000000000001,0.2,890,1.3,268,3.2,0.0000,0.0000 +2012,2,9,14,30,1.6,1.17,0.07200000000000001,0.61,43,492,117,7,7,-2.7,24,0,7,24,0.341,73.24,81.31,0.9500000000000001,0.2,891,1.4000000000000001,290,4.1000000000000005,0.0000,0.0000 +2012,2,9,15,30,1.9000000000000001,1.16,0.077,0.61,69,726,309,0,6,-2.7,59,1,0,59,0.342,71.33,70.74,0.9500000000000001,0.2,891,1.5,314,4.3,3.0003,2.3212 +2012,2,9,16,30,1.8,1.17,0.09,0.61,89,820,480,0,7,-2.7,92,1,0,92,0.343,71.8,61.52,0.96,0.2,891,1.5,331,3.8000000000000003,5.0254,3.9215 +2012,2,9,17,30,2,1.19,0.109,0.61,106,856,604,0,7,-2.5,148,3,0,149,0.34500000000000003,71.87,54.44,0.97,0.2,890,1.5,338,3,8.4535,6.6194 +2012,2,9,18,30,2.6,1.29,0.202,0.61,149,801,659,0,7,-2.3000000000000003,167,2,0,169,0.34700000000000003,70.28,50.45,0.97,0.2,889,1.4000000000000001,335,2.4000000000000004,9.7469,7.6424 +2012,2,9,19,30,3.6,1.31,0.203,0.61,150,804,664,0,7,-2,327,55,0,362,0.34900000000000003,66.8,50.31,0.97,0.2,888,1.3,329,2.3000000000000003,20.8889,16.3793 +2012,2,9,20,30,4.800000000000001,1.31,0.19,0.61,139,796,606,0,6,-1.7000000000000002,151,2,0,152,0.35000000000000003,62.730000000000004,54.04,0.96,0.2,888,1.1,330,2.6,8.6391,6.7658 +2012,2,9,21,30,5.4,1.1300000000000001,0.088,0.61,89,841,498,0,7,-1.5,55,0,0,55,0.35100000000000003,61.18,60.93,0.96,0.2,889,1.1,341,3,3.0153,2.3538 +2012,2,9,22,30,4.6000000000000005,1.12,0.084,0.61,73,739,326,0,4,-1.6,66,0,0,66,0.35100000000000003,64.04,70.03,0.9500000000000001,0.2,889,1.1,177,3.2,3.3779,2.6157 +2012,2,9,23,30,2.2,1.1500000000000001,0.082,0.61,47,508,131,0,4,-2,51,0,0,51,0.35100000000000003,73.49,80.52,0.9500000000000001,0.2,890,1.1,13,2.7,0.0000,0.0000 +2012,2,10,0,30,0.1,1.18,0.088,0.61,0,0,0,0,4,-2.6,0,0,0,0,0.35100000000000003,82.11,92.04,0.9500000000000001,0.2,891,1,19,2.7,0.0000,0.0000 +2012,2,10,1,30,-0.7000000000000001,1.18,0.1,0.61,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.35100000000000003,84.88,104,0.96,0.2,891,1,16,3.1,0.0000,0.0000 +2012,2,10,2,30,-1.1,1.17,0.107,0.61,0,0,0,0,7,-3,0,0,0,0,0.35100000000000003,86.63,116.2,0.96,0.2,892,1,7,3,0.0000,0.0000 +2012,2,10,3,30,-1.4000000000000001,1.1400000000000001,0.10400000000000001,0.61,0,0,0,0,4,-3,0,0,0,0,0.35000000000000003,88.55,128.39000000000001,0.96,0.2,892,1,173,2.4000000000000004,0.0000,0.0000 +2012,2,10,4,30,-1.8,1.1,0.089,0.61,0,0,0,0,4,-3,0,0,0,0,0.34800000000000003,91.49,140.19,0.9500000000000001,0.2,892,0.9,339,2.1,0.0000,0.0000 +2012,2,10,5,30,-2.1,1.07,0.073,0.61,0,0,0,0,4,-3,0,0,0,0,0.34700000000000003,93.7,150.79,0.9500000000000001,0.2,892,0.8,326,2.1,0.0000,0.0000 +2012,2,10,6,30,-2.3000000000000003,1.06,0.062,0.61,0,0,0,0,7,-3,0,0,0,0,0.34400000000000003,95.17,158.1,0.9400000000000001,0.2,893,0.8,317,2.4000000000000004,0.0000,0.0000 +2012,2,10,7,30,-2.3000000000000003,1.06,0.056,0.61,0,0,0,0,8,-3,0,0,0,0,0.34,94.93,158.36,0.93,0.2,893,0.7000000000000001,313,2.7,0.0000,0.0000 +2012,2,10,8,30,-2.3000000000000003,1.05,0.054,0.61,0,0,0,0,4,-3.1,0,0,0,0,0.333,94.21000000000001,151.37,0.93,0.2,893,0.7000000000000001,312,3,0.0000,0.0000 +2012,2,10,9,30,-2.4000000000000004,1.02,0.053,0.61,0,0,0,0,4,-3.3000000000000003,0,0,0,0,0.326,93.58,140.89000000000001,0.93,0.2,893,0.7000000000000001,315,3.2,0.0000,0.0000 +2012,2,10,10,30,-2.6,0.97,0.051000000000000004,0.61,0,0,0,0,0,-3.5,0,0,0,0,0.321,93.35000000000001,129.13,0.93,0.2,893,0.7000000000000001,321,3.2,0.0000,0.0000 +2012,2,10,11,30,-2.9000000000000004,0.93,0.05,0.61,0,0,0,0,1,-3.7,0,0,0,0,0.318,93.99,116.93,0.93,0.2,893,0.7000000000000001,329,3.2,0.0000,0.0000 +2012,2,10,12,30,-3.3000000000000003,0.91,0.048,0.61,0,0,0,0,1,-3.9000000000000004,0,0,0,0,0.315,95.49,104.7,0.93,0.2,894,0.6000000000000001,338,3.2,0.0000,0.0000 +2012,2,10,13,30,-2.5,0.92,0.046,0.61,0,0,0,0,1,-4.2,0,0,0,0,0.311,88.18,92.7,0.92,0.2,894,0.6000000000000001,344,3.5,0.0000,0.0000 +2012,2,10,14,30,-0.2,0.96,0.044,0.61,39,590,130,0,0,-4.5,39,590,0,130,0.308,72.81,81.11,0.92,0.2,895,0.6000000000000001,350,3.9000000000000004,0.0000,0.0000 +2012,2,10,15,30,2.7,1,0.042,0.61,59,826,335,0,0,-6.300000000000001,59,826,0,335,0.305,51.36,70.51,0.92,0.2,895,0.6000000000000001,355,3.7,17.0713,13.2112 +2012,2,10,16,30,5.5,1.03,0.043000000000000003,0.61,71,923,515,0,0,-7.4,71,923,0,515,0.302,38.81,61.26,0.92,0.2,895,0.6000000000000001,353,3.3000000000000003,28.1771,21.9910 +2012,2,10,17,30,7.7,1.03,0.046,0.61,79,968,646,0,0,-7.5,79,968,0,646,0.299,33.31,54.15,0.93,0.2,895,0.6000000000000001,347,2.8000000000000003,36.6982,28.7394 +2012,2,10,18,30,9.200000000000001,1.1,0.055,0.61,87,973,711,0,0,-6.9,87,973,0,711,0.296,31.52,50.13,0.93,0.2,894,0.7000000000000001,336,2.1,41.0551,32.1936 +2012,2,10,19,30,10.100000000000001,1.09,0.059000000000000004,0.61,89,970,712,0,0,-6.300000000000001,89,970,0,712,0.295,31,49.99,0.9400000000000001,0.2,893,0.7000000000000001,310,1.5,41.1340,32.2568 +2012,2,10,20,30,10.5,1.09,0.063,0.61,87,939,643,0,0,-5.800000000000001,87,939,0,643,0.294,31.37,53.74,0.9400000000000001,0.2,893,0.8,270,1.3,36.5938,28.6619 +2012,2,10,21,30,10.5,1.09,0.062,0.61,80,891,516,0,0,-5.5,80,891,0,516,0.295,32.07,60.67,0.9400000000000001,0.2,892,0.8,230,1.5,28.3343,22.1215 +2012,2,10,22,30,9.1,1.1,0.063,0.61,67,785,339,0,8,-5.300000000000001,151,348,0,271,0.297,35.660000000000004,69.79,0.9400000000000001,0.2,892,0.9,187,1.2000000000000002,13.8995,10.7665 +2012,2,10,23,30,6,1.12,0.057,0.61,44,574,140,0,0,-3,44,574,0,140,0.299,52.51,80.31,0.9400000000000001,0.2,892,0.9,147,1.3,0.0000,0.0000 +2012,2,11,0,30,3.6,1.1300000000000001,0.052000000000000005,0.61,0,0,0,0,4,-4.800000000000001,0,0,0,0,0.3,54.28,91.85000000000001,0.93,0.2,892,0.9,128,2.1,0.0000,0.0000 +2012,2,11,1,30,2.6,1.1300000000000001,0.047,0.61,0,0,0,0,1,-5.7,0,0,0,0,0.3,54.51,103.81,0.93,0.2,892,0.9,123,3.3000000000000003,0.0000,0.0000 +2012,2,11,2,30,1.1,1.12,0.044,0.61,0,0,0,0,1,-6.1000000000000005,0,0,0,0,0.299,58.63,116.03,0.93,0.2,893,0.9,121,4.4,0.0000,0.0000 +2012,2,11,3,30,-0.9,1.1300000000000001,0.045,0.61,0,0,0,0,1,-6.2,0,0,0,0,0.298,67.46000000000001,128.21,0.92,0.2,894,0.9,117,5,0.0000,0.0000 +2012,2,11,4,30,-2.6,1.16,0.047,0.61,0,0,0,0,1,-6.2,0,0,0,0,0.297,76.4,139.99,0.92,0.2,895,0.9,114,5.2,0.0000,0.0000 +2012,2,11,5,30,-3.9000000000000004,1.18,0.05,0.61,0,0,0,0,1,-6.4,0,0,0,0,0.295,82.49,150.54,0.92,0.2,896,0.9,112,5.2,0.0000,0.0000 +2012,2,11,6,30,-5,1.16,0.052000000000000005,0.61,0,0,0,0,4,-7.2,0,0,0,0,0.293,84.83,157.79,0.93,0.2,897,0.8,112,5,0.0000,0.0000 +2012,2,11,7,30,-6,1.1400000000000001,0.051000000000000004,0.61,0,0,0,0,4,-8.4,0,0,0,0,0.291,83.31,158.05,0.93,0.2,898,0.8,109,4.9,0.0000,0.0000 +2012,2,11,8,30,-6.800000000000001,1.12,0.049,0.61,0,0,0,0,4,-10,0,0,0,0,0.289,78.15,151.12,0.93,0.2,898,0.8,105,4.800000000000001,0.0000,0.0000 +2012,2,11,9,30,-7.4,1.1,0.047,0.61,0,0,0,0,4,-11.600000000000001,0,0,0,0,0.28800000000000003,71.82000000000001,140.68,0.93,0.2,899,0.7000000000000001,99,4.6000000000000005,0.0000,0.0000 +2012,2,11,10,30,-7.800000000000001,1.09,0.045,0.61,0,0,0,0,4,-13.100000000000001,0,0,0,0,0.28600000000000003,65.93,128.95,0.93,0.2,899,0.7000000000000001,92,4.4,0.0000,0.0000 +2012,2,11,11,30,-8.1,1.09,0.043000000000000003,0.61,0,0,0,0,4,-14.100000000000001,0,0,0,0,0.28400000000000003,62.2,116.76,0.93,0.2,900,0.7000000000000001,86,4.1000000000000005,0.0000,0.0000 +2012,2,11,12,30,-8.200000000000001,1.1,0.045,0.61,0,0,0,0,4,-14.600000000000001,0,0,0,0,0.281,60.050000000000004,104.53,0.93,0.2,901,0.7000000000000001,81,4,0.0000,0.0000 +2012,2,11,13,30,-7.7,1.1,0.048,0.61,0,0,0,0,4,-14.8,0,0,0,0,0.279,56.97,92.51,0.93,0.2,901,0.7000000000000001,78,3.9000000000000004,0.0000,0.0000 +2012,2,11,14,30,-6.5,1.1,0.051000000000000004,0.61,41,578,133,7,4,-14.600000000000001,27,0,7,27,0.277,52.78,80.9,0.93,0.2,902,0.7000000000000001,75,3.9000000000000004,0.0000,0.0000 +2012,2,11,15,30,-4.9,1.1,0.053,0.61,64,805,335,0,4,-14.200000000000001,77,0,0,77,0.276,48.04,70.28,0.9400000000000001,0.2,902,0.7000000000000001,72,3.8000000000000003,3.9320,3.0438 +2012,2,11,16,30,-3.2,1.11,0.054,0.61,77,911,518,0,4,-13.700000000000001,225,8,0,229,0.276,44.11,60.99,0.9400000000000001,0.2,902,0.6000000000000001,74,3.4000000000000004,12.5502,9.7965 +2012,2,11,17,30,-1.6,1.12,0.053,0.61,83,962,650,0,4,-13,366,97,0,423,0.275,41.5,53.85,0.93,0.2,901,0.6000000000000001,83,2.9000000000000004,24.0618,18.8455 +2012,2,11,18,30,-0.30000000000000004,1.12,0.055,0.61,87,981,721,0,4,-12.3,398,104,0,465,0.273,39.910000000000004,49.81,0.93,0.2,900,0.6000000000000001,92,2.5,26.8819,21.0816 +2012,2,11,19,30,0.6000000000000001,1.1400000000000001,0.06,0.61,90,977,722,7,4,-11.700000000000001,408,186,7,529,0.271,39.17,49.660000000000004,0.93,0.2,899,0.6000000000000001,96,2.4000000000000004,30.5984,23.9972 +2012,2,11,20,30,1,1.12,0.06,0.61,86,950,652,0,4,-11.3,250,2,0,251,0.269,39.45,53.44,0.92,0.2,899,0.7000000000000001,94,2.6,14.3033,11.2042 +2012,2,11,21,30,0.7000000000000001,0.98,0.044,0.61,72,929,532,0,4,-11.100000000000001,191,1,0,192,0.268,41.050000000000004,60.39,0.92,0.2,898,0.6000000000000001,93,3,10.5608,8.2465 +2012,2,11,22,30,-0.4,0.9500000000000001,0.047,0.61,63,831,353,0,4,-11,160,8,0,163,0.267,44.61,69.55,0.92,0.2,898,0.6000000000000001,97,3.3000000000000003,8.3781,6.4915 +2012,2,11,23,30,-2,0.9500000000000001,0.049,0.61,44,612,149,0,4,-11.100000000000001,28,0,0,28,0.267,49.86,80.10000000000001,0.93,0.2,899,0.6000000000000001,102,3.4000000000000004,0.0000,0.0000 +2012,2,12,0,30,-3.5,0.97,0.048,0.61,0,0,0,0,4,-11.100000000000001,0,0,0,0,0.269,55.51,91.65,0.93,0.79,899,0.6000000000000001,106,3.4000000000000004,0.0000,0.0000 +2012,2,12,1,30,-4.6000000000000005,1.01,0.046,0.61,0,0,0,0,4,-11.200000000000001,0,0,0,0,0.27,59.75,103.63,0.93,0.79,900,0.6000000000000001,112,3.6,0.0000,0.0000 +2012,2,12,2,30,-5.6000000000000005,1.05,0.046,0.61,0,0,0,0,4,-11.4,0,0,0,0,0.272,63.54,115.85000000000001,0.93,0.79,900,0.6000000000000001,118,3.9000000000000004,0.0000,0.0000 +2012,2,12,3,30,-6.2,1.07,0.044,0.61,0,0,0,0,7,-11.700000000000001,0,0,0,0,0.274,64.85,128.03,0.93,0.79,900,0.7000000000000001,123,4.2,0.0000,0.0000 +2012,2,12,4,30,-6.7,1.09,0.043000000000000003,0.61,0,0,0,0,7,-12.3,0,0,0,0,0.275,64.5,139.78,0.93,0.79,900,0.7000000000000001,128,4.1000000000000005,0.0000,0.0000 +2012,2,12,5,30,-7.1000000000000005,1.11,0.044,0.61,0,0,0,0,7,-12.8,0,0,0,0,0.275,64.02,150.29,0.93,0.79,899,0.7000000000000001,136,3.9000000000000004,0.0000,0.0000 +2012,2,12,6,30,-7.300000000000001,1.1300000000000001,0.047,0.61,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.275,62.93,157.48,0.93,0.79,899,0.8,147,3.7,0.0000,0.0000 +2012,2,12,7,30,-7.5,1.1400000000000001,0.05,0.61,0,0,0,0,7,-13.5,0,0,0,0,0.274,62.21,157.73,0.93,0.79,899,0.8,155,3.7,0.0000,0.0000 +2012,2,12,8,30,-7.5,1.1400000000000001,0.053,0.61,0,0,0,0,7,-13.8,0,0,0,0,0.274,60.89,150.86,0.93,0.79,899,0.8,161,3.6,0.0000,0.0000 +2012,2,12,9,30,-7.300000000000001,1.1400000000000001,0.06,0.61,0,0,0,0,1,-13.9,0,0,0,0,0.275,59.14,140.48,0.93,0.79,898,0.8,165,3.6,0.0000,0.0000 +2012,2,12,10,30,-6.9,1.1300000000000001,0.067,0.61,0,0,0,0,0,-14,0,0,0,0,0.275,57.04,128.76,0.9400000000000001,0.79,897,0.9,168,3.8000000000000003,0.0000,0.0000 +2012,2,12,11,30,-6.6000000000000005,1.1400000000000001,0.081,0.61,0,0,0,0,0,-14,0,0,0,0,0.275,55.660000000000004,116.58,0.9500000000000001,0.79,897,0.9,170,4.2,0.0000,0.0000 +2012,2,12,12,30,-6.2,1.17,0.107,0.61,0,0,0,0,4,-14,0,0,0,0,0.274,53.870000000000005,104.34,0.96,0.79,896,1,172,4.6000000000000005,0.0000,0.0000 +2012,2,12,13,30,-5.5,1.19,0.136,0.61,0,0,0,0,4,-14,0,0,0,0,0.274,51.120000000000005,92.32000000000001,0.96,0.79,896,1.1,176,5,0.0000,0.0000 +2012,2,12,14,30,-4.4,1.21,0.162,0.61,64,383,126,7,4,-13.9,62,0,7,62,0.275,47.51,80.69,0.97,0.79,896,1.1,182,5.5,0.0000,0.0000 +2012,2,12,15,30,-3.3000000000000003,1.21,0.199,0.61,121,594,323,0,4,-13.5,98,0,0,98,0.275,45.22,70.04,0.97,0.79,895,1.2000000000000002,188,5.9,5.0152,3.8835 +2012,2,12,16,30,-3,1.19,0.268,0.61,179,653,498,0,4,-12.200000000000001,184,0,0,184,0.276,49.06,60.72,0.98,0.79,894,1.3,193,6.300000000000001,10.1006,7.8857 +2012,2,12,17,30,-3.2,1.17,0.295,0.61,214,697,628,0,7,-10,69,0,0,69,0.278,59.61,53.54,0.98,0.79,893,1.4000000000000001,196,6.5,3.9303,3.0786 +2012,2,12,18,30,-3,1.18,0.255,0.61,209,761,703,0,6,-8.6,118,0,0,119,0.28,65.41,49.480000000000004,0.98,0.79,892,1.4000000000000001,197,6.6000000000000005,6.8877,5.4020 +2012,2,12,19,30,-2.5,1.19,0.224,0.61,195,788,708,0,4,-8.1,59,0,0,59,0.28300000000000003,65.6,49.33,0.97,0.79,890,1.4000000000000001,198,6.800000000000001,3.4167,2.6798 +2012,2,12,20,30,-2.1,1.22,0.186,0.61,168,798,647,0,4,-7.6000000000000005,335,1,0,336,0.28600000000000003,66.05,53.13,0.97,0.79,889,1.3,198,6.9,19.1724,15.0199 +2012,2,12,21,30,-2.1,1.24,0.154,0.61,136,771,520,0,4,-7.300000000000001,188,0,0,188,0.28700000000000003,67.56,60.120000000000005,0.97,0.79,888,1.3,197,6.800000000000001,10.3573,8.0889 +2012,2,12,22,30,-2.2,1.24,0.135,0.61,103,683,344,0,7,-7.2,214,28,0,224,0.28700000000000003,68.53,69.31,0.97,0.79,887,1.2000000000000002,197,6.5,11.5378,8.9423 +2012,2,12,23,30,-2.7,1.23,0.124,0.61,62,461,143,0,7,-7.1000000000000005,103,17,0,106,0.289,71.7,79.89,0.97,0.79,887,1.2000000000000002,196,6,5.0534,3.8515 +2012,2,13,0,30,-3.3000000000000003,1.22,0.124,0.61,0,0,0,0,7,-6.9,0,0,0,0,0.291,75.95,91.46000000000001,0.97,0.2,886,1.2000000000000002,194,5.7,0.0000,0.0000 +2012,2,13,1,30,-3.7,1.2,0.134,0.61,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.295,80.26,103.45,0.97,0.2,886,1.2000000000000002,191,5.9,0.0000,0.0000 +2012,2,13,2,30,-3.7,1.18,0.14200000000000002,0.61,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.3,83.14,115.67,0.97,0.2,885,1.1,191,6.2,0.0000,0.0000 +2012,2,13,3,30,-3.6,1.17,0.14300000000000002,0.61,0,0,0,0,8,-5.7,0,0,0,0,0.306,85.66,127.84,0.97,0.2,885,1.1,194,6.5,0.0000,0.0000 +2012,2,13,4,30,-3.6,1.17,0.129,0.61,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.31,87.92,139.57,0.96,0.2,884,1,199,6.4,0.0000,0.0000 +2012,2,13,5,30,-3.6,1.16,0.12,0.61,0,0,0,0,4,-5.1000000000000005,0,0,0,0,0.313,89.19,150.04,0.96,0.2,884,1,204,6.300000000000001,0.0000,0.0000 +2012,2,13,6,30,-3.5,1.16,0.121,0.61,0,0,0,0,4,-5,0,0,0,0,0.316,89.12,157.16,0.96,0.2,883,1,208,6.4,0.0000,0.0000 +2012,2,13,7,30,-3.3000000000000003,1.17,0.122,0.61,0,0,0,0,4,-4.9,0,0,0,0,0.321,88.39,157.41,0.96,0.2,882,1,212,6.6000000000000005,0.0000,0.0000 +2012,2,13,8,30,-3.1,1.18,0.12,0.61,0,0,0,0,4,-4.800000000000001,0,0,0,0,0.327,88.32000000000001,150.6,0.96,0.2,882,1,216,6.6000000000000005,0.0000,0.0000 +2012,2,13,9,30,-2.8000000000000003,1.17,0.112,0.61,0,0,0,0,1,-4.5,0,0,0,0,0.334,88.27,140.26,0.96,0.2,881,1,221,6.5,0.0000,0.0000 +2012,2,13,10,30,-2.5,1.16,0.095,0.61,0,0,0,0,1,-4.1000000000000005,0,0,0,0,0.34,88.91,128.57,0.9500000000000001,0.2,880,0.9,226,6.4,0.0000,0.0000 +2012,2,13,11,30,-2.3000000000000003,1.1300000000000001,0.077,0.61,0,0,0,0,7,-3.6,0,0,0,0,0.34400000000000003,90.96000000000001,116.4,0.9500000000000001,0.2,879,0.9,229,6.2,0.0000,0.0000 +2012,2,13,12,30,-2,1.11,0.066,0.61,0,0,0,0,8,-3.1,0,0,0,0,0.34600000000000003,92.05,104.16,0.9400000000000001,0.2,879,0.8,232,6.2,0.0000,0.0000 +2012,2,13,13,30,-0.8,1.09,0.062,0.61,0,0,0,0,1,-2.7,0,0,0,0,0.34500000000000003,86.98,92.12,0.9400000000000001,0.2,879,0.8,240,6.5,0.0000,0.0000 +2012,2,13,14,30,1.9000000000000001,1.09,0.058,0.61,43,576,138,0,0,-2.2,43,576,0,138,0.34400000000000003,74.21000000000001,80.48,0.93,0.2,879,0.7000000000000001,250,6.800000000000001,0.0000,0.0000 +2012,2,13,15,30,5.6000000000000005,1.09,0.053,0.61,63,811,343,0,0,-1.7000000000000002,63,811,0,343,0.341,59.480000000000004,69.8,0.92,0.2,879,0.7000000000000001,260,7,17.5909,13.6256 +2012,2,13,16,30,9.200000000000001,1.1,0.049,0.61,73,922,528,0,0,-1.6,73,922,0,528,0.336,46.9,60.45,0.92,0.2,879,0.6000000000000001,271,7.2,29.0317,22.6689 +2012,2,13,17,30,11.9,1.11,0.047,0.61,79,972,661,0,0,-2.5,79,972,0,661,0.329,36.47,53.24,0.92,0.2,879,0.6000000000000001,281,7,37.6994,29.5332 +2012,2,13,18,30,13.5,1.1,0.044,0.61,81,997,732,0,0,-3.8000000000000003,81,997,0,732,0.324,29.810000000000002,49.15,0.92,0.2,878,0.6000000000000001,288,6.5,42.4176,33.2711 +2012,2,13,19,30,14.200000000000001,1.11,0.043000000000000003,0.61,80,992,731,0,0,-4.6000000000000005,80,992,0,731,0.322,26.810000000000002,49,0.92,0.2,878,0.7000000000000001,292,5.7,42.3820,33.2446 +2012,2,13,20,30,14.4,1.12,0.043000000000000003,0.61,77,974,665,0,0,-5.2,77,974,0,665,0.319,25.310000000000002,52.83,0.92,0.2,878,0.7000000000000001,295,4.9,37.9933,29.7676 +2012,2,13,21,30,13.4,1.1300000000000001,0.041,0.61,70,932,538,0,0,-5.4,70,932,0,538,0.316,26.61,59.85,0.92,0.2,878,0.7000000000000001,296,3.1,29.6866,23.1882 +2012,2,13,22,30,10.5,1.1300000000000001,0.039,0.61,59,846,361,0,0,-1.9000000000000001,59,846,0,361,0.31,41.910000000000004,69.08,0.92,0.2,879,0.7000000000000001,309,1.5,18.6318,14.4443 +2012,2,13,23,30,6.9,1.1400000000000001,0.038,0.61,41,649,157,0,0,-2.5,41,649,0,157,0.304,51.03,79.68,0.92,0.2,879,0.7000000000000001,182,0.8,7.4833,5.7048 +2012,2,14,0,30,4.5,1.16,0.04,0.61,0,0,0,0,1,-4.4,0,0,0,0,0.299,52.480000000000004,91.27,0.92,0.2,880,0.7000000000000001,100,0.7000000000000001,0.0000,0.0000 +2012,2,14,1,30,3.2,1.18,0.044,0.61,0,0,0,0,1,-4.1000000000000005,0,0,0,0,0.296,58.9,103.27,0.93,0.2,881,0.8,190,0.8,0.0000,0.0000 +2012,2,14,2,30,2.1,1.19,0.054,0.61,0,0,0,0,1,-3.8000000000000003,0,0,0,0,0.294,65.15,115.49000000000001,0.93,0.2,881,0.8,234,1.1,0.0000,0.0000 +2012,2,14,3,30,0.7000000000000001,1.19,0.056,0.61,0,0,0,0,1,-3.7,0,0,0,0,0.292,72.3,127.66,0.93,0.2,882,0.8,248,1.4000000000000001,0.0000,0.0000 +2012,2,14,4,30,-0.30000000000000004,1.17,0.052000000000000005,0.61,0,0,0,0,4,-3.9000000000000004,0,0,0,0,0.29,76.47,139.36,0.93,0.2,882,0.8,254,1.6,0.0000,0.0000 +2012,2,14,5,30,-0.7000000000000001,1.16,0.045,0.61,0,0,0,0,0,-4.2,0,0,0,0,0.28800000000000003,77.01,149.78,0.92,0.2,882,0.8,262,1.9000000000000001,0.0000,0.0000 +2012,2,14,6,30,-1,1.16,0.037,0.61,0,0,0,0,0,-4.5,0,0,0,0,0.28700000000000003,77.08,156.84,0.91,0.2,882,0.8,271,2.1,0.0000,0.0000 +2012,2,14,7,30,-1.3,1.17,0.034,0.61,0,0,0,0,0,-4.7,0,0,0,0,0.28600000000000003,77.82000000000001,157.08,0.91,0.2,882,0.8,278,2.2,0.0000,0.0000 +2012,2,14,8,30,-1.4000000000000001,1.19,0.038,0.61,0,0,0,0,0,-4.7,0,0,0,0,0.28600000000000003,78.13,150.33,0.92,0.2,882,0.9,284,2.1,0.0000,0.0000 +2012,2,14,9,30,-1.6,1.18,0.041,0.61,0,0,0,0,0,-4.7,0,0,0,0,0.28600000000000003,79.59,140.04,0.92,0.2,882,0.9,287,2,0.0000,0.0000 +2012,2,14,10,30,-1.4000000000000001,1.17,0.042,0.61,0,0,0,0,0,-4.5,0,0,0,0,0.28700000000000003,79.17,128.37,0.92,0.2,882,1,288,1.8,0.0000,0.0000 +2012,2,14,11,30,-1,1.1500000000000001,0.045,0.61,0,0,0,0,0,-4.4,0,0,0,0,0.28700000000000003,77.93,116.21000000000001,0.92,0.2,882,1,286,1.7000000000000002,0.0000,0.0000 +2012,2,14,12,30,-0.6000000000000001,1.1400000000000001,0.048,0.61,0,0,0,0,4,-4.2,0,0,0,0,0.28700000000000003,76.58,103.97,0.93,0.2,882,1,281,1.7000000000000002,0.0000,0.0000 +2012,2,14,13,30,1.2000000000000002,1.1400000000000001,0.052000000000000005,0.61,0,0,0,0,4,-4.1000000000000005,0,0,0,0,0.28600000000000003,67.59,91.92,0.93,0.2,882,1,272,2.2,0.0000,0.0000 +2012,2,14,14,30,4.2,1.1400000000000001,0.052000000000000005,0.61,42,580,140,7,4,-3.6,54,1,7,54,0.28600000000000003,57.06,80.26,0.93,0.2,882,1.1,259,2.7,0.0000,0.0000 +2012,2,14,15,30,7.300000000000001,1.1500000000000001,0.051000000000000004,0.61,62,801,342,7,4,-3,198,33,7,210,0.28600000000000003,47.93,69.55,0.93,0.2,882,1.1,237,2.7,10.7938,8.3633 +2012,2,14,16,30,11.600000000000001,1.16,0.054,0.61,75,894,520,7,8,-2.1,244,105,7,296,0.28700000000000003,38.37,60.17,0.93,0.2,882,1.1,222,3.4000000000000004,16.3025,12.7316 +2012,2,14,17,30,15.200000000000001,1.17,0.058,0.61,84,938,649,0,4,-2.8000000000000003,365,99,0,424,0.28800000000000003,28.86,52.92,0.93,0.2,881,1.1,224,4.4,24.2152,18.9719 +2012,2,14,18,30,16.7,1.22,0.078,0.61,97,938,715,7,2,-3,305,548,7,666,0.289,25.75,48.82,0.9400000000000001,0.2,880,1.1,229,4.6000000000000005,38.6377,30.3090 +2012,2,14,19,30,17.2,1.21,0.092,0.61,105,924,715,0,0,-3,105,924,0,715,0.29,24.95,48.67,0.9500000000000001,0.2,880,1.1,230,4.7,41.5020,32.5572 +2012,2,14,20,30,17,1.18,0.095,0.61,102,899,649,0,0,-3.1,102,899,0,649,0.293,25.23,52.52,0.9400000000000001,0.2,879,1.1,232,4.6000000000000005,37.1270,29.0918 +2012,2,14,21,30,16.1,1.08,0.065,0.61,82,883,529,7,3,-3,308,153,7,385,0.297,26.8,59.58,0.9500000000000001,0.2,879,1.1,238,4,21.2773,16.6222 +2012,2,14,22,30,13.700000000000001,1.06,0.075,0.61,73,771,351,0,4,-2.1,164,9,0,167,0.3,33.53,68.84,0.9500000000000001,0.2,880,1.1,250,2.8000000000000003,8.6371,6.6978 +2012,2,14,23,30,10.700000000000001,1.04,0.07200000000000001,0.61,49,559,151,0,4,-0.30000000000000004,76,2,0,76,0.302,46.410000000000004,79.47,0.9500000000000001,0.2,880,1.1,263,2,3.6224,2.7622 +2012,2,15,0,30,9,1.04,0.07,0.61,0,0,0,0,7,-0.4,0,0,0,0,0.303,51.58,91.07000000000001,0.9500000000000001,0.21,881,1.1,270,1.8,0.0000,0.0000 +2012,2,15,1,30,7.9,1.05,0.059000000000000004,0.61,0,0,0,0,7,-0.5,0,0,0,0,0.304,55.18,103.09,0.93,0.21,881,1,267,1.6,0.0000,0.0000 +2012,2,15,2,30,7,1.02,0.043000000000000003,0.61,0,0,0,0,7,-1.5,0,0,0,0,0.304,54.870000000000005,115.31,0.92,0.21,881,1,252,1.5,0.0000,0.0000 +2012,2,15,3,30,6.300000000000001,0.9400000000000001,0.039,0.61,0,0,0,0,1,-2.2,0,0,0,0,0.305,54.39,127.47,0.92,0.21,881,0.9,226,1.4000000000000001,0.0000,0.0000 +2012,2,15,4,30,5.1000000000000005,0.85,0.04,0.61,0,0,0,0,1,-2.4000000000000004,0,0,0,0,0.305,58.480000000000004,139.15,0.92,0.21,881,0.9,212,1.7000000000000002,0.0000,0.0000 +2012,2,15,5,30,4.3,0.8,0.042,0.61,0,0,0,0,1,-2.4000000000000004,0,0,0,0,0.305,61.78,149.52,0.92,0.21,881,0.8,222,2.5,0.0000,0.0000 +2012,2,15,6,30,4.1000000000000005,0.8,0.044,0.61,0,0,0,0,8,-2.5,0,0,0,0,0.306,62.33,156.52,0.92,0.21,880,0.8,236,3.5,0.0000,0.0000 +2012,2,15,7,30,3.6,0.8300000000000001,0.043000000000000003,0.61,0,0,0,0,0,-2.7,0,0,0,0,0.305,63.6,156.75,0.92,0.21,880,0.7000000000000001,241,4.2,0.0000,0.0000 +2012,2,15,8,30,2.9000000000000004,0.88,0.035,0.61,0,0,0,0,1,-2.7,0,0,0,0,0.305,66.86,150.06,0.91,0.21,880,0.5,241,4.4,0.0000,0.0000 +2012,2,15,9,30,2,0.9,0.033,0.61,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.304,73.28,139.81,0.9,0.21,880,0.5,237,4.1000000000000005,0.0000,0.0000 +2012,2,15,10,30,1.2000000000000002,0.91,0.033,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.303,78.79,128.17000000000002,0.9,0.21,880,0.5,229,4.2,0.0000,0.0000 +2012,2,15,11,30,0.8,0.91,0.035,0.61,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.305,79.9,116.02,0.91,0.21,881,0.5,223,4.6000000000000005,0.0000,0.0000 +2012,2,15,12,30,0.5,0.9,0.037,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.308,77.98,103.77,0.91,0.21,881,0.5,221,5.1000000000000005,0.0000,0.0000 +2012,2,15,13,30,1.3,0.9,0.039,0.61,0,0,0,0,0,-3.6,0,0,0,0,0.313,69.73,91.71000000000001,0.91,0.21,881,0.6000000000000001,223,5.6000000000000005,0.0000,0.0000 +2012,2,15,14,30,3.7,0.96,0.043000000000000003,0.61,41,621,149,0,1,-4.1000000000000005,41,621,0,149,0.317,56.78,80.03,0.92,0.21,881,0.7000000000000001,235,6.4,0.0000,0.0000 +2012,2,15,15,30,6.300000000000001,1.02,0.047,0.61,62,827,354,0,1,-4.2,62,827,0,354,0.316,46.96,69.3,0.92,0.21,881,0.7000000000000001,256,7,18.2354,14.1334 +2012,2,15,16,30,8.200000000000001,1.06,0.052000000000000005,0.61,76,909,532,0,1,-3.5,76,909,0,532,0.312,43.44,59.89,0.93,0.21,882,0.8,275,7.2,29.3487,22.9237 +2012,2,15,17,30,9.200000000000001,1.06,0.053,0.61,83,956,664,0,1,-2.8000000000000003,83,956,0,664,0.308,42.86,52.61,0.93,0.21,883,0.8,293,7.300000000000001,37.9709,29.7523 +2012,2,15,18,30,9.8,1.05,0.051000000000000004,0.61,85,984,738,7,4,-2.2,388,83,7,443,0.305,43,48.480000000000004,0.92,0.21,884,0.7000000000000001,311,7.5,25.7306,20.1860 +2012,2,15,19,30,9.9,1.07,0.052000000000000005,0.61,86,984,741,0,3,-1.8,419,148,0,518,0.302,43.96,48.33,0.93,0.21,884,0.7000000000000001,327,7.7,30.1023,23.6165 +2012,2,15,20,30,9.700000000000001,1.12,0.058,0.61,86,958,673,7,2,-1.6,303,482,7,598,0.3,45.15,52.21,0.93,0.21,885,0.7000000000000001,337,7.5,34.2529,26.8425 +2012,2,15,21,30,9,1.1500000000000001,0.059000000000000004,0.61,79,911,545,7,3,-1.6,317,152,7,395,0.3,47.39,59.300000000000004,0.93,0.21,886,0.7000000000000001,344,6.9,21.8649,17.0838 +2012,2,15,22,30,7.800000000000001,1.1500000000000001,0.058,0.61,67,820,366,0,4,-1.7000000000000002,203,23,0,211,0.299,51.07,68.60000000000001,0.93,0.21,887,0.7000000000000001,349,5.9,10.9353,8.4822 +2012,2,15,23,30,5.300000000000001,1.1400000000000001,0.057,0.61,46,617,161,0,0,-1.8,46,617,0,161,0.299,60.230000000000004,79.26,0.93,0.21,888,0.7000000000000001,354,4,7.6750,5.8541 +2012,2,16,0,30,2.7,1.1400000000000001,0.052000000000000005,0.61,0,0,0,0,0,-2,0,0,0,0,0.299,71.43,90.88,0.93,0.2,889,0.7000000000000001,182,2.4000000000000004,0.0000,0.0000 +2012,2,16,1,30,1.1,1.1500000000000001,0.047,0.61,0,0,0,0,1,-2.2,0,0,0,0,0.298,78.66,102.91,0.93,0.2,890,0.7000000000000001,11,1.8,0.0000,0.0000 +2012,2,16,2,30,0,1.1500000000000001,0.043000000000000003,0.61,0,0,0,0,1,-2.5,0,0,0,0,0.297,83.41,115.14,0.93,0.2,891,0.7000000000000001,20,1.4000000000000001,0.0000,0.0000 +2012,2,16,3,30,-0.8,1.1400000000000001,0.043000000000000003,0.61,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.297,86.19,127.28,0.93,0.2,892,0.6000000000000001,29,1.3,0.0000,0.0000 +2012,2,16,4,30,-1.5,1.12,0.043000000000000003,0.61,0,0,0,0,0,-3.2,0,0,0,0,0.296,87.9,138.94,0.92,0.2,892,0.6000000000000001,35,1.4000000000000001,0.0000,0.0000 +2012,2,16,5,30,-2.1,1.11,0.043000000000000003,0.61,0,0,0,0,0,-3.7,0,0,0,0,0.296,88.57000000000001,149.26,0.92,0.2,892,0.6000000000000001,39,1.5,0.0000,0.0000 +2012,2,16,6,30,-2.7,1.1300000000000001,0.043000000000000003,0.61,0,0,0,0,0,-4.2,0,0,0,0,0.296,89.15,156.19,0.92,0.2,892,0.6000000000000001,39,1.6,0.0000,0.0000 +2012,2,16,7,30,-3.3000000000000003,1.1400000000000001,0.044,0.61,0,0,0,0,1,-4.7,0,0,0,0,0.297,90.28,156.42000000000002,0.92,0.2,893,0.6000000000000001,38,1.5,0.0000,0.0000 +2012,2,16,8,30,-3.9000000000000004,1.1500000000000001,0.045,0.61,0,0,0,0,1,-5,0,0,0,0,0.298,92.02,149.78,0.92,0.2,893,0.6000000000000001,34,1.4000000000000001,0.0000,0.0000 +2012,2,16,9,30,-4.4,1.1500000000000001,0.047,0.61,0,0,0,0,1,-5.2,0,0,0,0,0.298,94.01,139.58,0.92,0.2,893,0.6000000000000001,26,1.3,0.0000,0.0000 +2012,2,16,10,30,-4.6000000000000005,1.1400000000000001,0.047,0.61,0,0,0,0,4,-5.300000000000001,0,0,0,0,0.298,94.73,127.96000000000001,0.92,0.2,894,0.6000000000000001,19,1.3,0.0000,0.0000 +2012,2,16,11,30,-4.800000000000001,1.1400000000000001,0.046,0.61,0,0,0,0,4,-5.4,0,0,0,0,0.298,95.55,115.82000000000001,0.92,0.2,894,0.6000000000000001,20,1.3,0.0000,0.0000 +2012,2,16,12,30,-4.7,1.1300000000000001,0.046,0.61,0,0,0,0,4,-5.5,0,0,0,0,0.298,94.42,103.57000000000001,0.92,0.2,894,0.7000000000000001,29,1.1,0.0000,0.0000 +2012,2,16,13,30,-3.2,1.1300000000000001,0.048,0.61,0,0,0,0,4,-5.5,0,0,0,0,0.296,84.38,91.5,0.93,0.2,895,0.7000000000000001,47,1.4000000000000001,0.0000,0.0000 +2012,2,16,14,30,-0.1,1.1300000000000001,0.052000000000000005,0.61,44,604,151,0,0,-5.4,44,604,0,151,0.295,67.66,79.8,0.93,0.2,895,0.8,78,2,7.1980,5.4865 +2012,2,16,15,30,2.9000000000000004,1.1300000000000001,0.055,0.61,66,812,356,0,0,-5.4,66,812,0,356,0.292,54.53,69.04,0.9400000000000001,0.2,895,0.8,109,2.5,18.3801,14.2499 +2012,2,16,16,30,5.5,1.1300000000000001,0.058,0.61,79,898,533,0,0,-5.4,79,898,0,533,0.29,45.28,59.6,0.9400000000000001,0.2,895,0.9,123,2.8000000000000003,29.4533,23.0091 +2012,2,16,17,30,7.800000000000001,1.1300000000000001,0.058,0.61,86,947,665,0,1,-5.1000000000000005,86,947,0,665,0.28700000000000003,39.57,52.28,0.9400000000000001,0.2,894,0.9,134,2.8000000000000003,38.0797,29.8408 +2012,2,16,18,30,9.600000000000001,1.1500000000000001,0.064,0.61,93,962,735,0,0,-4.6000000000000005,93,962,0,735,0.28400000000000003,36.43,48.13,0.9500000000000001,0.2,893,0.9,147,2.9000000000000004,42.7416,33.5343 +2012,2,16,19,30,10.700000000000001,1.1300000000000001,0.075,0.61,98,946,732,0,1,-4.1000000000000005,98,946,0,732,0.28200000000000003,35.18,47.99,0.9500000000000001,0.2,892,1,159,3.1,42.5872,33.4143 +2012,2,16,20,30,11.100000000000001,1.12,0.085,0.61,100,915,664,7,8,-3.7,197,706,7,633,0.28,35.18,51.89,0.96,0.2,892,1,162,3.2,36.3045,28.4532 +2012,2,16,21,30,11,1.1500000000000001,0.094,0.61,95,855,535,0,7,-3.5,258,320,0,422,0.281,36.09,59.03,0.96,0.2,892,1,155,2.9000000000000004,23.3951,18.2819 +2012,2,16,22,30,9.700000000000001,1.18,0.093,0.61,80,753,357,0,4,-3.3000000000000003,223,91,0,257,0.28200000000000003,39.97,68.36,0.9500000000000001,0.2,892,1.1,142,2.1,13.3466,10.3554 +2012,2,16,23,30,7.1000000000000005,1.2,0.092,0.61,54,539,157,0,0,-1.6,54,539,0,157,0.28400000000000003,53.85,79.05,0.96,0.2,892,1.1,132,1.5,7.4866,5.7121 +2012,2,17,0,30,5.300000000000001,1.19,0.097,0.61,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.28800000000000003,58.11,90.16,0.96,0.21,892,1.1,135,1.9000000000000001,0.0000,0.0000 +2012,2,17,1,30,4.9,1.18,0.10400000000000001,0.61,0,0,0,0,0,-2.5,0,0,0,0,0.292,58.730000000000004,102.73,0.96,0.21,892,1.1,146,2.4000000000000004,0.0000,0.0000 +2012,2,17,2,30,4.4,1.17,0.11,0.61,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.295,61.83,114.96000000000001,0.96,0.21,892,1.2000000000000002,157,2.5,0.0000,0.0000 +2012,2,17,3,30,3.8000000000000003,1.17,0.113,0.61,0,0,0,0,4,-1.9000000000000001,0,0,0,0,0.295,66.18,127.10000000000001,0.96,0.21,892,1.2000000000000002,166,2.2,0.0000,0.0000 +2012,2,17,4,30,3.2,1.17,0.11800000000000001,0.61,0,0,0,0,1,-1.6,0,0,0,0,0.295,70.56,138.73,0.96,0.21,891,1.2000000000000002,169,1.8,0.0000,0.0000 +2012,2,17,5,30,2.4000000000000004,1.18,0.117,0.61,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.295,76.08,149,0.96,0.21,891,1.2000000000000002,169,1.5,0.0000,0.0000 +2012,2,17,6,30,1.6,1.18,0.115,0.61,0,0,0,0,4,-1.2000000000000002,0,0,0,0,0.297,81.4,155.86,0.96,0.21,891,1.2000000000000002,173,1.6,0.0000,0.0000 +2012,2,17,7,30,1.3,1.1500000000000001,0.128,0.61,0,0,0,0,7,-1.1,0,0,0,0,0.301,83.81,156.08,0.96,0.21,890,1.2000000000000002,177,1.6,0.0000,0.0000 +2012,2,17,8,30,1.1,1.1400000000000001,0.14,0.61,0,0,0,0,4,-1,0,0,0,0,0.302,85.61,149.5,0.97,0.21,890,1.2000000000000002,182,1.4000000000000001,0.0000,0.0000 +2012,2,17,9,30,1.1,1.12,0.157,0.61,0,0,0,0,7,-0.9,0,0,0,0,0.301,86.28,139.34,0.97,0.21,890,1.3,191,1.2000000000000002,0.0000,0.0000 +2012,2,17,10,30,1.3,1.11,0.17200000000000001,0.61,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.302,86.41,127.75,0.97,0.21,890,1.3,197,1,0.0000,0.0000 +2012,2,17,11,30,1.3,1.12,0.164,0.61,0,0,0,0,7,-0.6000000000000001,0,0,0,0,0.305,87.38,115.61,0.97,0.21,890,1.3,209,0.6000000000000001,0.0000,0.0000 +2012,2,17,12,30,1.2000000000000002,1.1400000000000001,0.14100000000000001,0.61,0,0,0,0,7,-0.5,0,0,0,0,0.307,88.56,103.36,0.96,0.21,890,1.3,257,0.5,0.0000,0.0000 +2012,2,17,13,30,1.5,1.1300000000000001,0.135,0.61,0,0,0,0,7,-0.30000000000000004,0,0,0,0,0.307,87.99,91.28,0.97,0.21,890,1.3,253,1.2000000000000002,0.0000,0.0000 +2012,2,17,14,30,2.5,1.1,0.155,0.61,64,415,139,7,7,0.2,51,2,7,51,0.306,84.72,79.57000000000001,0.97,0.21,891,1.3,202,2,2.4308,1.8533 +2012,2,17,15,30,4.1000000000000005,1.12,0.149,0.61,97,663,337,0,7,0.4,17,0,0,17,0.305,77.09,68.78,0.97,0.21,891,1.3,195,2.2,0.8797,0.6822 +2012,2,17,16,30,6.4,1.1400000000000001,0.137,0.61,111,792,515,0,4,0.5,34,0,0,34,0.303,66.2,59.31,0.96,0.21,890,1.3,194,2.4000000000000004,1.8819,1.4704 +2012,2,17,17,30,9,1.1400000000000001,0.135,0.61,121,851,646,0,4,0.8,68,0,0,68,0.301,56.29,51.96,0.97,0.21,889,1.3,191,2.7,3.8989,3.0557 +2012,2,17,18,30,10.8,1.12,0.14100000000000001,0.61,130,870,714,0,4,1.1,243,1,0,243,0.298,51.13,47.79,0.97,0.21,888,1.3,193,2.9000000000000004,14.1470,11.1004 +2012,2,17,19,30,11.700000000000001,1.12,0.139,0.61,129,873,717,0,4,1.6,344,19,0,357,0.295,49.83,47.65,0.97,0.21,887,1.3,196,2.8000000000000003,20.7935,16.3161 +2012,2,17,20,30,11.9,1.1300000000000001,0.133,0.61,121,856,653,0,3,1.9000000000000001,389,127,0,468,0.292,50.51,51.58,0.97,0.21,887,1.3,197,2.7,26.8743,21.0645 +2012,2,17,21,30,11.600000000000001,1.12,0.11800000000000001,0.61,105,818,529,0,0,2.1,105,818,0,529,0.291,52.17,58.75,0.97,0.21,886,1.3,197,2.5,29.3727,22.9565 +2012,2,17,22,30,10.5,1.1300000000000001,0.117,0.61,88,715,355,0,4,2.2,73,0,0,73,0.291,56.61,68.12,0.97,0.21,886,1.3,194,1.9000000000000001,3.7988,2.9481 +2012,2,17,23,30,8.1,1.1400000000000001,0.112,0.61,59,503,156,0,4,2.7,48,0,0,48,0.292,68.93,78.84,0.96,0.21,887,1.3,188,1.4000000000000001,2.2900,1.7477 +2012,2,18,0,30,6,1.1500000000000001,0.107,0.61,0,0,0,0,0,2.5,0,0,0,0,0.294,77.98,90,0.96,0.21,887,1.3,184,1.4000000000000001,0.0000,0.0000 +2012,2,18,1,30,5.1000000000000005,1.18,0.099,0.61,0,0,0,0,1,2.5,0,0,0,0,0.295,83.54,102.55,0.96,0.21,887,1.3,186,1.7000000000000002,0.0000,0.0000 +2012,2,18,2,30,4.5,1.19,0.094,0.61,0,0,0,0,1,2.7,0,0,0,0,0.296,87.8,114.78,0.96,0.21,887,1.3,191,1.7000000000000002,0.0000,0.0000 +2012,2,18,3,30,3.8000000000000003,1.19,0.092,0.61,0,0,0,0,1,2.7,0,0,0,0,0.297,92.74,126.91,0.96,0.21,888,1.3,195,1.6,0.0000,0.0000 +2012,2,18,4,30,3.2,1.18,0.096,0.61,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.298,96.88,138.52,0.96,0.21,888,1.3,201,1.4000000000000001,0.0000,0.0000 +2012,2,18,5,30,2.7,1.17,0.10400000000000001,0.61,0,0,0,0,1,2.7,0,0,0,0,0.3,100,148.73,0.96,0.21,888,1.3,218,1.2000000000000002,0.0000,0.0000 +2012,2,18,6,30,2.2,1.1500000000000001,0.112,0.61,0,0,0,0,1,2.2,0,0,0,0,0.301,100,155.53,0.96,0.21,887,1.3,257,1.1,0.0000,0.0000 +2012,2,18,7,30,1.8,1.1300000000000001,0.115,0.61,0,0,0,0,1,1.8,0,0,0,0,0.303,100,155.73,0.96,0.21,887,1.2000000000000002,307,1.7000000000000002,0.0000,0.0000 +2012,2,18,8,30,1.2000000000000002,1.1300000000000001,0.106,0.61,0,0,0,0,4,1.2000000000000002,0,0,0,0,0.304,100,149.21,0.97,0.21,886,1.2000000000000002,340,2.6,0.0000,0.0000 +2012,2,18,9,30,0.4,1.1,0.11,0.61,0,0,0,0,4,-0.1,0,0,0,0,0.305,96.52,139.1,0.97,0.21,886,1.2000000000000002,183,2.7,0.0000,0.0000 +2012,2,18,10,30,0,1.06,0.13,0.61,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.305,91.47,127.53,0.97,0.21,887,1.2000000000000002,15,3.1,0.0000,0.0000 +2012,2,18,11,30,-0.2,1.05,0.145,0.61,0,0,0,0,7,-1.6,0,0,0,0,0.306,90.25,115.41,0.98,0.21,888,1.3,10,3.7,0.0000,0.0000 +2012,2,18,12,30,-0.2,1.04,0.178,0.61,0,0,0,0,7,-1.8,0,0,0,0,0.306,88.86,103.15,0.98,0.21,888,1.3,10,4,0.0000,0.0000 +2012,2,18,13,30,0.1,1.04,0.181,0.61,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.307,87.93,91.07000000000001,0.98,0.21,889,1.2000000000000002,16,4.3,0.0000,0.0000 +2012,2,18,14,30,0.7000000000000001,1.04,0.161,0.61,66,413,142,7,7,-1.2000000000000002,39,0,7,39,0.308,86.95,79.34,0.97,0.21,889,1.2000000000000002,23,4.5,1.8590,1.4178 +2012,2,18,15,30,1.3,1.03,0.153,0.61,99,662,342,0,7,-0.8,65,1,0,65,0.307,85.97,68.52,0.97,0.21,890,1.2000000000000002,28,4.6000000000000005,3.3710,2.6150 +2012,2,18,16,30,2.2,1.02,0.139,0.61,114,795,524,0,7,-0.5,127,3,0,129,0.306,82.15,59.01,0.97,0.21,890,1.1,31,4.5,7.1524,5.5892 +2012,2,18,17,30,3.3000000000000003,1,0.123,0.61,118,869,657,0,8,-0.4,235,15,0,244,0.305,76.5,51.63,0.96,0.21,890,1.1,31,4.2,14.0086,10.9800 +2012,2,18,18,30,4.3,1,0.13,0.61,126,886,726,0,4,-0.5,177,0,0,177,0.305,71.17,47.44,0.96,0.21,889,1.1,26,3.7,10.3165,8.0955 +2012,2,18,19,30,5.1000000000000005,1,0.132,0.61,128,889,730,0,4,-0.5,106,0,0,107,0.305,67.22,47.300000000000004,0.96,0.21,889,1,18,3.3000000000000003,6.2394,4.8963 +2012,2,18,20,30,5.6000000000000005,1,0.127,0.61,120,871,665,0,4,-0.5,149,0,0,150,0.305,64.98,51.26,0.9500000000000001,0.21,889,1,9,3,8.6244,6.7606 +2012,2,18,21,30,5.7,1,0.11,0.61,103,841,543,0,4,-0.5,144,0,0,144,0.305,64.45,58.47,0.9500000000000001,0.21,889,0.9,182,2.6,8.0079,6.2595 +2012,2,18,22,30,5.2,1.01,0.10300000000000001,0.61,85,748,367,0,4,-0.6000000000000001,82,0,0,82,0.307,66.25,67.88,0.9500000000000001,0.21,889,0.9,355,2,4.2757,3.3191 +2012,2,18,23,30,3.6,1.01,0.093,0.61,56,549,165,0,4,-0.7000000000000001,36,0,0,36,0.309,73.57000000000001,78.63,0.9500000000000001,0.21,889,0.9,356,1.1,1.7185,1.3120 +2012,2,19,0,30,2,1.02,0.084,0.61,0,0,0,7,4,-0.9,0,0,7,0,0.312,80.9,89.83,0.9400000000000001,0.21,889,0.8,196,0.6000000000000001,0.0000,0.0000 +2012,2,19,1,30,0.8,1,0.077,0.61,0,0,0,0,4,-1.1,0,0,0,0,0.313,87.05,102.37,0.9400000000000001,0.21,889,0.7000000000000001,76,0.6000000000000001,0.0000,0.0000 +2012,2,19,2,30,-0.6000000000000001,0.99,0.07200000000000001,0.61,0,0,0,0,4,-1.1,0,0,0,0,0.313,96.17,114.60000000000001,0.9400000000000001,0.21,889,0.7000000000000001,136,0.9,0.0000,0.0000 +2012,2,19,3,30,-1.7000000000000002,0.97,0.07,0.61,0,0,0,0,1,-1.7000000000000002,0,0,0,0,0.314,100,126.72,0.93,0.21,889,0.7000000000000001,159,1.1,0.0000,0.0000 +2012,2,19,4,30,-2.4000000000000004,0.97,0.07100000000000001,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.316,100,138.3,0.93,0.21,889,0.7000000000000001,174,1.2000000000000002,0.0000,0.0000 +2012,2,19,5,30,-2.8000000000000003,0.97,0.073,0.61,0,0,0,0,1,-2.8000000000000003,0,0,0,0,0.318,100,148.47,0.93,0.21,889,0.7000000000000001,185,1.4000000000000001,0.0000,0.0000 +2012,2,19,6,30,-2.6,0.97,0.076,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.319,100,155.20000000000002,0.93,0.21,888,0.6000000000000001,192,1.8,0.0000,0.0000 +2012,2,19,7,30,-2,0.96,0.078,0.61,0,0,0,0,0,-2,0,0,0,0,0.317,100,155.39000000000001,0.93,0.21,888,0.6000000000000001,198,2.5,0.0000,0.0000 +2012,2,19,8,30,-1.7000000000000002,0.9400000000000001,0.077,0.61,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.317,100,148.91,0.93,0.21,888,0.6000000000000001,203,3.1,0.0000,0.0000 +2012,2,19,9,30,-1.8,0.93,0.082,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.318,99.95,138.85,0.93,0.21,888,0.5,207,3.1,0.0000,0.0000 +2012,2,19,10,30,-1.9000000000000001,0.91,0.082,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.32,98.28,127.31,0.92,0.21,887,0.5,208,2.9000000000000004,0.0000,0.0000 +2012,2,19,11,30,-1.9000000000000001,0.88,0.074,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.321,98.16,115.19,0.92,0.21,887,0.5,207,3,0.0000,0.0000 +2012,2,19,12,30,-1.9000000000000001,0.87,0.077,0.61,0,0,0,0,0,-2.1,0,0,0,0,0.322,98.43,102.94,0.92,0.21,887,0.5,206,3.4000000000000004,0.0000,0.0000 +2012,2,19,13,30,-1.2000000000000002,0.86,0.081,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.323,93.04,90.84,0.92,0.21,887,0.5,209,4.2,0.0000,0.0000 +2012,2,19,14,30,0.7000000000000001,0.85,0.076,0.61,52,584,162,7,4,-2,68,1,7,68,0.324,82.2,79.10000000000001,0.92,0.21,887,0.5,212,5.1000000000000005,3.2423,2.4736 +2012,2,19,15,30,3.8000000000000003,0.84,0.068,0.61,72,814,374,7,4,-1.7000000000000002,133,1,7,133,0.326,67.47,68.25,0.92,0.21,887,0.5,211,5.5,6.9134,5.3646 +2012,2,19,16,30,7.2,0.85,0.064,0.61,83,916,559,0,3,-1.7000000000000002,262,17,0,271,0.328,53.050000000000004,58.71,0.91,0.21,886,0.5,209,5.6000000000000005,15.0506,11.7631 +2012,2,19,17,30,10.200000000000001,0.84,0.06,0.61,89,968,694,0,2,-2.5,351,359,0,576,0.329,40.93,51.300000000000004,0.91,0.21,886,0.5,209,5.9,33.1125,25.9563 +2012,2,19,18,30,12.200000000000001,0.86,0.059000000000000004,0.61,91,990,766,0,0,-3.9000000000000004,91,990,0,766,0.327,32.28,47.08,0.91,0.21,885,0.5,204,6.1000000000000005,44.6986,35.0788 +2012,2,19,19,30,13.3,0.87,0.057,0.61,90,993,768,0,0,-4.6000000000000005,90,993,0,768,0.326,28.5,46.96,0.91,0.21,883,0.5,197,6.2,44.8326,35.1849 +2012,2,19,20,30,13.600000000000001,0.89,0.058,0.61,88,974,701,0,0,-4.800000000000001,88,974,0,701,0.329,27.52,50.95,0.92,0.21,882,0.5,193,6.4,40.3529,31.6354 +2012,2,19,21,30,13.200000000000001,0.93,0.063,0.61,83,915,565,0,0,-4.7,83,915,0,565,0.333,28.57,58.2,0.92,0.21,882,0.6000000000000001,189,6.7,31.4659,24.5992 +2012,2,19,22,30,11.9,0.96,0.067,0.61,72,819,384,0,0,-4.2,72,819,0,384,0.337,32.15,67.64,0.93,0.21,881,0.6000000000000001,185,6.4,20.0627,15.5782 +2012,2,19,23,30,9.600000000000001,1,0.07200000000000001,0.61,52,603,173,0,4,-3.2,113,19,0,117,0.342,40.480000000000004,78.42,0.93,0.21,881,0.7000000000000001,177,5.800000000000001,5.5892,4.2687 +2012,2,20,0,30,7.6000000000000005,1.03,0.076,0.61,0,0,0,7,7,-2,0,0,7,0,0.34800000000000003,50.480000000000004,89.67,0.93,0.21,881,0.8,172,6.1000000000000005,0.0000,0.0000 +2012,2,20,1,30,6.300000000000001,1.02,0.075,0.61,0,0,0,0,7,-1.1,0,0,0,0,0.352,59.1,102.19,0.93,0.21,881,0.8,170,6.7,0.0000,0.0000 +2012,2,20,2,30,5.2,1.02,0.075,0.61,0,0,0,0,0,-0.4,0,0,0,0,0.352,67.19,114.42,0.93,0.21,881,0.9,173,6.9,0.0000,0.0000 +2012,2,20,3,30,4.6000000000000005,1.02,0.079,0.61,0,0,0,0,7,0,0,0,0,0,0.353,71.98,126.53,0.93,0.21,880,0.9,180,7,0.0000,0.0000 +2012,2,20,4,30,4.2,1.02,0.08600000000000001,0.61,0,0,0,0,0,0.2,0,0,0,0,0.352,75.31,138.08,0.93,0.21,880,0.9,188,6.7,0.0000,0.0000 +2012,2,20,5,30,3.4000000000000004,1.02,0.083,0.61,0,0,0,0,0,0.5,0,0,0,0,0.35000000000000003,81.23,148.20000000000002,0.93,0.21,880,0.9,194,5.7,0.0000,0.0000 +2012,2,20,6,30,2.5,1.01,0.076,0.61,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.35000000000000003,87.12,154.86,0.93,0.21,880,0.8,202,4.9,0.0000,0.0000 +2012,2,20,7,30,2,1.02,0.079,0.61,0,0,0,0,0,0.2,0,0,0,0,0.35000000000000003,87.69,155.04,0.93,0.21,880,0.8,214,4.6000000000000005,0.0000,0.0000 +2012,2,20,8,30,2.1,1.03,0.078,0.61,0,0,0,0,0,-0.9,0,0,0,0,0.35000000000000003,80.76,148.61,0.93,0.21,880,0.8,225,4.6000000000000005,0.0000,0.0000 +2012,2,20,9,30,2.4000000000000004,1.04,0.077,0.61,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.35100000000000003,71.07000000000001,138.6,0.9400000000000001,0.21,879,0.8,233,4.7,0.0000,0.0000 +2012,2,20,10,30,2.9000000000000004,1.05,0.075,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.354,64.27,127.08,0.9400000000000001,0.21,879,0.7000000000000001,240,4.800000000000001,0.0000,0.0000 +2012,2,20,11,30,3.2,1.05,0.075,0.61,0,0,0,0,4,-3.2,0,0,0,0,0.358,62.78,114.97,0.9400000000000001,0.21,880,0.6000000000000001,245,5,0.0000,0.0000 +2012,2,20,12,30,3.2,1.03,0.07100000000000001,0.61,0,0,0,0,7,-3.2,0,0,0,0,0.362,63.01,102.72,0.9400000000000001,0.21,880,0.5,247,5.4,0.0000,0.0000 +2012,2,20,13,30,3.6,0.97,0.058,0.61,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.366,60.38,90.09,0.93,0.21,881,0.30000000000000004,247,6,0.0000,0.0000 +2012,2,20,14,30,5.300000000000001,0.92,0.044,0.61,44,685,177,0,4,-3.8000000000000003,104,221,0,147,0.374,51.76,78.85000000000001,0.91,0.21,881,0.30000000000000004,255,7.5,7.0128,5.3522 +2012,2,20,15,30,7.2,0.89,0.036000000000000004,0.61,60,891,394,0,0,-7.2,60,891,0,394,0.382,35.28,67.98,0.9,0.21,881,0.30000000000000004,267,9,20.5270,15.9330 +2012,2,20,16,30,8.6,0.87,0.03,0.61,67,998,590,0,0,-12.700000000000001,67,998,0,590,0.388,20.68,58.410000000000004,0.9,0.21,881,0.2,273,9.600000000000001,32.8209,25.6558 +2012,2,20,17,30,9.600000000000001,0.86,0.028,0.61,71,1041,727,0,0,-15.700000000000001,71,1041,0,727,0.391,15.16,50.96,0.9,0.21,881,0.2,276,9.8,41.8480,32.8074 +2012,2,20,18,30,10.3,0.9500000000000001,0.037,0.61,79,1034,788,0,0,-16.2,79,1034,0,788,0.392,13.89,46.730000000000004,0.91,0.21,882,0.30000000000000004,284,9.700000000000001,46.0338,36.1296 +2012,2,20,19,30,10.5,1.02,0.054,0.61,89,1005,779,0,8,-14.5,312,394,0,583,0.393,15.780000000000001,46.6,0.92,0.21,882,0.4,297,9.4,34.0720,26.7422 +2012,2,20,20,30,10.4,1.1,0.061,0.61,89,980,710,0,0,-12.100000000000001,89,980,0,710,0.393,19.31,50.63,0.93,0.21,884,0.4,310,8.700000000000001,40.9208,32.0837 +2012,2,20,21,30,10.100000000000001,1.1,0.045,0.61,74,956,582,0,0,-11.3,74,956,0,582,0.392,20.88,57.92,0.92,0.21,885,0.4,317,7.300000000000001,32.4613,25.3808 +2012,2,20,22,30,9,1.04,0.04,0.61,61,880,400,0,4,-11.8,239,101,0,278,0.388,21.68,67.4,0.91,0.21,885,0.4,320,4.9,14.5532,11.3030 +2012,2,20,23,30,6.1000000000000005,1,0.039,0.61,44,714,190,0,0,-10.5,44,714,0,190,0.379,29.3,78.21000000000001,0.9,0.21,886,0.30000000000000004,321,2.4000000000000004,9.0841,6.9403 +2012,2,21,0,30,4.2,0.99,0.038,0.61,0,0,0,0,0,-9,0,0,0,0,0.37,37.72,89.5,0.9,0.21,886,0.30000000000000004,299,1.2000000000000002,0.0000,0.0000 +2012,2,21,1,30,3.1,0.97,0.037,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.365,36.08,102.01,0.9,0.21,887,0.30000000000000004,260,1.3,0.0000,0.0000 +2012,2,21,2,30,1.3,0.9500000000000001,0.037,0.61,0,0,0,0,0,-11,0,0,0,0,0.365,39.38,114.24000000000001,0.9,0.21,888,0.30000000000000004,246,1.8,0.0000,0.0000 +2012,2,21,3,30,0.30000000000000004,0.92,0.037,0.61,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.364,38.86,126.34,0.9,0.21,888,0.2,252,2.3000000000000003,0.0000,0.0000 +2012,2,21,4,30,-0.4,0.91,0.037,0.61,0,0,0,0,0,-13.100000000000001,0,0,0,0,0.361,37.67,137.86,0.91,0.21,888,0.30000000000000004,259,2.7,0.0000,0.0000 +2012,2,21,5,30,-1.1,0.9400000000000001,0.042,0.61,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.358,39.34,147.92000000000002,0.91,0.21,888,0.30000000000000004,265,3,0.0000,0.0000 +2012,2,21,6,30,-1.8,0.98,0.048,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.357,42.54,154.52,0.91,0.21,888,0.30000000000000004,268,3,0.0000,0.0000 +2012,2,21,7,30,-2.5,1,0.051000000000000004,0.61,0,0,0,0,0,-12.5,0,0,0,0,0.356,46.32,154.68,0.91,0.21,888,0.30000000000000004,270,2.9000000000000004,0.0000,0.0000 +2012,2,21,8,30,-3.1,1.01,0.051000000000000004,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.354,48.83,148.31,0.92,0.21,888,0.30000000000000004,270,2.8000000000000003,0.0000,0.0000 +2012,2,21,9,30,-3.5,1.01,0.051000000000000004,0.61,0,0,0,0,4,-12.5,0,0,0,0,0.353,49.79,138.34,0.92,0.21,887,0.30000000000000004,266,2.9000000000000004,0.0000,0.0000 +2012,2,21,10,30,-3.5,1.02,0.051000000000000004,0.61,0,0,0,0,7,-12.8,0,0,0,0,0.353,48.660000000000004,126.85000000000001,0.92,0.21,887,0.30000000000000004,260,3.3000000000000003,0.0000,0.0000 +2012,2,21,11,30,-3.4000000000000004,1.03,0.053,0.61,0,0,0,1,7,-13.100000000000001,0,0,1,0,0.354,46.96,114.75,0.93,0.21,887,0.4,255,3.9000000000000004,0.0000,0.0000 +2012,2,21,12,30,-3.1,1.04,0.054,0.61,0,0,0,1,7,-13.3,0,0,1,0,0.356,45.12,102.5,0.93,0.21,888,0.4,253,4.5,0.0000,0.0000 +2012,2,21,13,30,-1.6,1.04,0.057,0.61,0,0,0,7,7,-13.4,0,0,7,0,0.359,40.31,89.88,0.92,0.21,888,0.4,254,5.2,0.0000,0.0000 +2012,2,21,14,30,1.7000000000000002,1.03,0.056,0.61,48,654,177,0,7,-13,105,242,0,153,0.363,32.56,78.60000000000001,0.92,0.21,889,0.4,255,5.5,7.3043,5.5769 +2012,2,21,15,30,6.4,1.01,0.047,0.61,64,865,392,0,7,-12.4,115,674,0,371,0.367,24.61,67.71000000000001,0.91,0.21,888,0.4,262,6,19.3722,15.0410 +2012,2,21,16,30,11.100000000000001,0.99,0.038,0.61,71,963,580,0,1,-12.5,71,963,0,580,0.369,17.8,58.1,0.9,0.21,888,0.4,274,7.4,32.3186,25.2671 +2012,2,21,17,30,14.100000000000001,0.98,0.034,0.61,74,1010,715,0,0,-12.8,74,1010,0,715,0.37,14.290000000000001,50.620000000000005,0.9,0.21,887,0.4,280,8.200000000000001,41.2105,32.3109 +2012,2,21,18,30,15.5,1.03,0.041,0.61,81,1021,786,0,0,-12.5,81,1021,0,786,0.368,13.33,46.37,0.9,0.21,887,0.4,279,8.200000000000001,45.9689,36.0817 +2012,2,21,19,30,16.3,1.04,0.043000000000000003,0.61,82,1019,787,0,0,-12.3,82,1019,0,787,0.367,12.94,46.25,0.9,0.21,886,0.4,278,8.200000000000001,46.0445,36.1420 +2012,2,21,20,30,16.6,1.05,0.045,0.61,80,991,713,0,0,-12.100000000000001,80,991,0,713,0.364,12.870000000000001,50.31,0.9,0.21,885,0.5,278,8,41.1431,32.2610 +2012,2,21,21,30,16.5,0.99,0.038,0.61,71,958,584,0,0,-12,71,958,0,584,0.36,13.06,57.64,0.91,0.21,884,0.5,278,7.5,32.6210,25.5091 +2012,2,21,22,30,15.100000000000001,0.9400000000000001,0.033,0.61,59,877,399,0,0,-11.700000000000001,59,877,0,399,0.355,14.620000000000001,67.16,0.91,0.21,884,0.6000000000000001,279,6.2,20.9285,16.2583 +2012,2,21,23,30,11.600000000000001,0.86,0.027,0.61,41,715,189,0,0,-10.200000000000001,41,715,0,189,0.35100000000000003,20.75,78,0.9,0.21,884,0.6000000000000001,279,4.2,9.0449,6.9129 +2012,2,22,0,30,8.4,0.8200000000000001,0.024,0.61,0,0,0,0,0,-8.3,0,0,0,0,0.35000000000000003,29.86,89.34,0.9,0.21,885,0.6000000000000001,279,3.2,0.0000,0.0000 +2012,2,22,1,30,7.4,0.85,0.026000000000000002,0.61,0,0,0,0,1,-7.9,0,0,0,0,0.34900000000000003,32.94,101.83,0.9,0.21,885,0.6000000000000001,278,3.3000000000000003,0.0000,0.0000 +2012,2,22,2,30,6.9,0.9,0.028,0.61,0,0,0,0,7,-7.7,0,0,0,0,0.34800000000000003,34.62,114.06,0.9,0.21,885,0.6000000000000001,278,3.7,0.0000,0.0000 +2012,2,22,3,30,6.4,0.97,0.028,0.61,0,0,0,0,1,-7.5,0,0,0,0,0.34700000000000003,36.42,126.15,0.9,0.21,885,0.6000000000000001,280,4.1000000000000005,0.0000,0.0000 +2012,2,22,4,30,5.6000000000000005,1.03,0.026000000000000002,0.61,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.34400000000000003,39.46,137.64000000000001,0.9,0.21,884,0.6000000000000001,279,4.3,0.0000,0.0000 +2012,2,22,5,30,4.7,1.07,0.025,0.61,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.341,43.17,147.65,0.9,0.21,884,0.6000000000000001,279,4.4,0.0000,0.0000 +2012,2,22,6,30,3.8000000000000003,1.08,0.025,0.61,0,0,0,0,0,-6.5,0,0,0,0,0.339,46.88,154.18,0.9,0.21,884,0.6000000000000001,280,4.4,0.0000,0.0000 +2012,2,22,7,30,3,1.1,0.022,0.61,0,0,0,0,0,-6.4,0,0,0,0,0.336,50.08,154.32,0.9,0.21,883,0.6000000000000001,281,4.3,0.0000,0.0000 +2012,2,22,8,30,2.4000000000000004,1.11,0.02,0.61,0,0,0,0,0,-6.4,0,0,0,0,0.333,52.24,147.99,0.91,0.21,883,0.6000000000000001,281,4.3,0.0000,0.0000 +2012,2,22,9,30,1.9000000000000001,1.12,0.02,0.61,0,0,0,0,7,-6.5,0,0,0,0,0.332,53.730000000000004,138.07,0.91,0.21,882,0.7000000000000001,281,4.2,0.0000,0.0000 +2012,2,22,10,30,1.5,1.11,0.02,0.61,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.331,54.94,126.61,0.91,0.21,882,0.7000000000000001,280,4.2,0.0000,0.0000 +2012,2,22,11,30,1.3,1.1,0.02,0.61,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.329,55.68,114.53,0.92,0.21,882,0.8,281,4.3,0.0000,0.0000 +2012,2,22,12,30,1.5,1.1,0.02,0.61,0,0,0,0,7,-6.5,0,0,0,0,0.325,55.31,102.27,0.92,0.21,882,0.8,282,4.4,0.0000,0.0000 +2012,2,22,13,30,3.2,1.09,0.019,0.61,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.319,49.82,89.69,0.92,0.21,882,0.8,284,4.9,0.0000,0.0000 +2012,2,22,14,30,6.800000000000001,1.06,0.016,0.61,36,724,182,0,4,-5.800000000000001,114,114,0,137,0.317,40.34,78.35000000000001,0.92,0.21,883,0.8,289,5.2,6.5463,5.0003 +2012,2,22,15,30,11.200000000000001,1.03,0.015,0.61,48,895,391,0,1,-4.9,48,895,0,391,0.317,32,67.43,0.92,0.21,883,0.8,299,5,20.4637,15.8930 +2012,2,22,16,30,15.8,1.01,0.016,0.61,56,970,573,0,1,-4.1000000000000005,56,970,0,573,0.317,25.26,57.79,0.92,0.21,882,0.8,313,4.5,31.9813,25.0071 +2012,2,22,17,30,19.3,0.98,0.015,0.61,60,1015,708,7,7,-4.5,161,810,7,679,0.316,19.64,50.28,0.92,0.21,882,0.7000000000000001,317,3.7,39.1855,30.7263 +2012,2,22,18,30,21.1,1.02,0.019,0.61,66,1022,776,0,7,-4.4,227,625,0,662,0.314,17.68,46,0.92,0.21,881,0.8,302,3.3000000000000003,38.7611,30.4267 +2012,2,22,19,30,21.900000000000002,1.03,0.018000000000000002,0.61,65,1023,777,0,4,-4.1000000000000005,343,468,0,668,0.312,17.16,45.9,0.91,0.21,880,0.8,280,3.6,39.1243,30.7125 +2012,2,22,20,30,22.400000000000002,1.02,0.018000000000000002,0.61,63,1008,711,0,0,-4.1000000000000005,63,1008,0,711,0.31,16.65,49.99,0.91,0.21,878,0.8,265,4.3,41.0762,32.2115 +2012,2,22,21,30,22.3,0.99,0.019,0.61,59,969,582,0,0,-4.3,59,969,0,582,0.306,16.53,57.370000000000005,0.91,0.21,877,0.8,255,4.800000000000001,32.5550,25.4607 +2012,2,22,22,30,20.5,0.96,0.018000000000000002,0.61,51,897,402,0,8,-4.5,129,533,0,338,0.302,18.25,66.92,0.91,0.21,876,0.8,248,3.9000000000000004,17.7633,13.8027 +2012,2,22,23,30,16.6,0.9500000000000001,0.017,0.61,37,736,193,0,8,-2.1,98,344,0,171,0.3,27.72,77.79,0.9,0.21,876,0.8,245,3,8.1921,6.2635 +2012,2,23,0,30,14.4,0.92,0.015,0.61,0,0,0,7,7,-2.2,0,0,7,0,0.299,31.73,89.18,0.9,0.21,875,0.8,247,4.2,0.0000,0.0000 +2012,2,23,1,30,14.3,0.9,0.013000000000000001,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.298,31.310000000000002,101.65,0.91,0.21,875,0.8,250,5.9,0.0000,0.0000 +2012,2,23,2,30,13.4,0.9500000000000001,0.014,0.61,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.298,35.07,113.88,0.91,0.21,875,0.9,253,6.5,0.0000,0.0000 +2012,2,23,3,30,12.3,1.01,0.015,0.61,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.297,39.12,125.96000000000001,0.91,0.21,874,0.9,258,6.7,0.0000,0.0000 +2012,2,23,4,30,11.4,1.02,0.017,0.61,0,0,0,0,7,-1,0,0,0,0,0.298,42.29,137.42000000000002,0.91,0.21,874,0.9,264,6.9,0.0000,0.0000 +2012,2,23,5,30,10.600000000000001,1,0.018000000000000002,0.61,0,0,0,0,7,-0.8,0,0,0,0,0.298,45.18,147.37,0.91,0.21,873,0.9,268,6.9,0.0000,0.0000 +2012,2,23,6,30,9.700000000000001,0.98,0.018000000000000002,0.61,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.297,48.300000000000004,153.83,0.91,0.21,873,0.8,270,6.7,0.0000,0.0000 +2012,2,23,7,30,8.9,0.9400000000000001,0.018000000000000002,0.61,0,0,0,0,6,-0.8,0,0,0,0,0.297,50.72,153.96,0.91,0.21,873,0.8,270,6.5,0.0000,0.0000 +2012,2,23,8,30,8.200000000000001,0.87,0.019,0.61,0,0,0,0,7,-1,0,0,0,0,0.296,52.25,147.68,0.91,0.21,872,0.8,270,6.4,0.0000,0.0000 +2012,2,23,9,30,7.7,0.8,0.021,0.61,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.296,52.63,137.8,0.91,0.21,872,0.8,273,6.4,0.0000,0.0000 +2012,2,23,10,30,7.300000000000001,0.78,0.022,0.61,0,0,0,0,7,-1.8,0,0,0,0,0.295,52.46,126.37,0.91,0.21,872,0.8,276,6.300000000000001,0.0000,0.0000 +2012,2,23,11,30,7.1000000000000005,0.78,0.023,0.61,0,0,0,0,7,-2.2,0,0,0,0,0.295,51.78,114.29,0.91,0.21,872,0.8,279,6.1000000000000005,0.0000,0.0000 +2012,2,23,12,30,7.1000000000000005,0.81,0.024,0.61,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.294,50.97,102.04,0.91,0.21,873,0.9,281,6,0.0000,0.0000 +2012,2,23,13,30,8.4,0.84,0.024,0.61,0,0,0,7,4,-2.4000000000000004,0,0,7,0,0.293,46.45,89.5,0.91,0.21,874,0.9,285,6,0.0000,0.0000 +2012,2,23,14,30,11.3,0.85,0.023,0.61,39,708,185,0,7,-2.2,111,110,0,134,0.294,38.77,78.10000000000001,0.91,0.21,874,0.9,300,6.6000000000000005,6.4098,4.8981 +2012,2,23,15,30,13.3,0.86,0.024,0.61,54,878,395,0,4,-2.6,230,143,0,286,0.296,33.17,67.15,0.91,0.21,876,0.9,327,7.9,15.0026,11.6549 +2012,2,23,16,30,13.3,0.9,0.024,0.61,63,952,574,0,8,-3.8000000000000003,187,516,0,465,0.296,30.240000000000002,57.480000000000004,0.91,0.21,877,1,347,8.8,25.9956,20.3297 +2012,2,23,17,30,13.100000000000001,0.97,0.023,0.61,67,993,706,0,4,-4.4,366,297,0,557,0.295,29.26,49.94,0.92,0.21,878,1,353,8.6,32.1852,25.2396 +2012,2,23,18,30,13.200000000000001,1.07,0.024,0.61,70,1009,776,7,8,-5,183,772,7,722,0.295,27.96,45.64,0.92,0.21,878,1,354,8.3,42.3204,33.2234 +2012,2,23,19,30,13.100000000000001,1.09,0.024,0.61,70,1009,777,0,3,-5.4,324,521,0,689,0.295,27.28,45.54,0.92,0.21,879,1,356,8,40.3983,31.7151 +2012,2,23,20,30,12.3,1.1400000000000001,0.028,0.61,71,993,713,0,0,-5.9,71,993,0,713,0.297,27.51,49.67,0.92,0.21,879,0.9,179,7.800000000000001,41.2398,32.3427 +2012,2,23,21,30,10.8,1.1300000000000001,0.034,0.61,69,941,580,0,0,-6.7,69,941,0,580,0.299,28.66,57.09,0.93,0.21,880,1,4,7.7,32.4899,25.4130 +2012,2,23,22,30,8.700000000000001,1.09,0.038,0.61,61,856,400,0,0,-7.4,61,856,0,400,0.3,31.35,66.68,0.93,0.21,881,1,8,7.7,21.0620,16.3696 +2012,2,23,23,30,6.5,1.07,0.044,0.61,47,669,190,0,0,-7.7,47,669,0,190,0.303,35.410000000000004,77.59,0.9400000000000001,0.21,882,1,11,7.6000000000000005,9.1123,6.9695 +2012,2,24,0,30,5.300000000000001,1.03,0.051000000000000004,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.308,37.03,89,0.9400000000000001,0.21,884,0.9,12,7.6000000000000005,0.0000,0.0000 +2012,2,24,1,30,4.800000000000001,1.01,0.053,0.61,0,0,0,0,1,-9.5,0,0,0,0,0.315,34.63,101.47,0.9400000000000001,0.21,885,0.8,12,7.6000000000000005,0.0000,0.0000 +2012,2,24,2,30,4.6000000000000005,0.98,0.053,0.61,0,0,0,0,4,-11.700000000000001,0,0,0,0,0.321,29.52,113.71000000000001,0.9400000000000001,0.21,886,0.7000000000000001,13,7.2,0.0000,0.0000 +2012,2,24,3,30,4.1000000000000005,0.99,0.052000000000000005,0.61,0,0,0,0,4,-13,0,0,0,0,0.324,27.490000000000002,125.77,0.93,0.21,887,0.6000000000000001,16,6.6000000000000005,0.0000,0.0000 +2012,2,24,4,30,3.3000000000000003,1.01,0.048,0.61,0,0,0,0,4,-12.700000000000001,0,0,0,0,0.327,29.84,137.20000000000002,0.93,0.21,888,0.5,18,5.7,0.0000,0.0000 +2012,2,24,5,30,2,1.03,0.043000000000000003,0.61,0,0,0,0,1,-11.700000000000001,0,0,0,0,0.329,35.410000000000004,147.1,0.92,0.21,889,0.4,18,4.5,0.0000,0.0000 +2012,2,24,6,30,0.6000000000000001,1.04,0.039,0.61,0,0,0,0,4,-10.9,0,0,0,0,0.331,41.800000000000004,153.49,0.92,0.21,890,0.4,14,3.4000000000000004,0.0000,0.0000 +2012,2,24,7,30,-0.5,1.04,0.037,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.331,46.67,153.6,0.92,0.21,891,0.30000000000000004,8,2.9000000000000004,0.0000,0.0000 +2012,2,24,8,30,-1.3,1.02,0.035,0.61,0,0,0,0,0,-10.5,0,0,0,0,0.331,49.59,147.36,0.91,0.21,891,0.30000000000000004,182,2.9000000000000004,0.0000,0.0000 +2012,2,24,9,30,-2.3000000000000003,0.99,0.033,0.61,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.329,53.08,137.53,0.91,0.21,892,0.30000000000000004,359,2.8000000000000003,0.0000,0.0000 +2012,2,24,10,30,-3.4000000000000004,0.96,0.033,0.61,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.327,57.24,126.12,0.91,0.21,892,0.30000000000000004,181,2.4000000000000004,0.0000,0.0000 +2012,2,24,11,30,-4.3,0.91,0.032,0.61,0,0,0,0,0,-10.9,0,0,0,0,0.325,60.06,114.06,0.91,0.21,892,0.30000000000000004,5,1.9000000000000001,0.0000,0.0000 +2012,2,24,12,30,-4.7,0.87,0.031,0.61,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.322,60.36,101.81,0.91,0.21,893,0.30000000000000004,5,1.4000000000000001,0.0000,0.0000 +2012,2,24,13,30,-3,0.84,0.03,0.61,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.318,53.22,89.26,0.91,0.21,894,0.30000000000000004,177,1.6,0.0000,0.0000 +2012,2,24,14,30,0.7000000000000001,0.8300000000000001,0.029,0.61,43,744,200,0,1,-11.100000000000001,43,744,0,200,0.316,40.81,77.84,0.9,0.21,895,0.30000000000000004,352,2,9.5789,7.3231 +2012,2,24,15,30,4.3,0.8300000000000001,0.027,0.61,58,918,418,0,4,-14,216,289,0,330,0.314,25.150000000000002,66.87,0.9,0.21,895,0.30000000000000004,354,2.4000000000000004,17.3498,13.4820 +2012,2,24,16,30,6.7,0.84,0.027,0.61,67,995,606,0,7,-15.9,223,504,0,496,0.312,18.11,57.160000000000004,0.91,0.21,896,0.30000000000000004,346,2.7,27.7745,21.7241 +2012,2,24,17,30,8.3,0.85,0.027,0.61,72,1034,742,0,0,-16,72,1034,0,742,0.311,16.080000000000002,49.59,0.91,0.21,895,0.30000000000000004,331,2.7,42.9296,33.6687 +2012,2,24,18,30,9.5,0.8200000000000001,0.027,0.61,75,1050,814,0,0,-15.700000000000001,75,1050,0,814,0.31,15.27,45.27,0.91,0.21,895,0.30000000000000004,314,2.7,47.7659,37.5013 +2012,2,24,19,30,10.3,0.89,0.028,0.61,75,1050,815,0,0,-15.3,75,1050,0,815,0.309,14.950000000000001,45.18,0.91,0.21,894,0.30000000000000004,300,2.7,47.8373,37.5581 +2012,2,24,20,30,10.700000000000001,0.9400000000000001,0.028,0.61,73,1034,747,0,0,-14.9,73,1034,0,747,0.309,15.030000000000001,49.34,0.91,0.21,894,0.30000000000000004,291,2.7,43.2576,33.9283 +2012,2,24,21,30,10.600000000000001,0.9500000000000001,0.028,0.61,67,997,613,0,0,-14.700000000000001,67,997,0,613,0.308,15.44,56.81,0.9,0.21,894,0.30000000000000004,284,2.5,34.3873,26.9005 +2012,2,24,22,30,9.600000000000001,0.93,0.028,0.61,58,922,427,0,0,-14.5,58,922,0,427,0.307,16.69,66.45,0.9,0.21,894,0.30000000000000004,271,1.8,22.5247,17.5102 +2012,2,24,23,30,7,0.92,0.029,0.61,44,757,209,0,0,-10.600000000000001,44,757,0,209,0.305,27.37,77.38,0.9,0.21,894,0.30000000000000004,234,1.2000000000000002,10.0359,7.6789 +2012,2,25,0,30,4.3,0.91,0.03,0.61,12,229,17,0,0,-9.9,12,229,0,17,0.304,34.800000000000004,88.83,0.9,0.21,894,0.30000000000000004,195,1.2000000000000002,0.0000,0.0000 +2012,2,25,1,30,2.6,0.91,0.03,0.61,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.303,36.99,101.29,0.9,0.21,895,0.30000000000000004,181,1.4000000000000001,0.0000,0.0000 +2012,2,25,2,30,1.5,0.92,0.03,0.61,0,0,0,0,0,-11,0,0,0,0,0.303,38.980000000000004,113.53,0.9,0.21,895,0.30000000000000004,181,1.6,0.0000,0.0000 +2012,2,25,3,30,0.8,0.93,0.03,0.61,0,0,0,0,0,-11.600000000000001,0,0,0,0,0.301,39.03,125.57000000000001,0.9,0.21,896,0.30000000000000004,186,1.8,0.0000,0.0000 +2012,2,25,4,30,0.1,0.9400000000000001,0.03,0.61,0,0,0,0,0,-12.100000000000001,0,0,0,0,0.298,39.36,136.97,0.9,0.21,896,0.30000000000000004,194,2,0.0000,0.0000 +2012,2,25,5,30,-0.5,0.9500000000000001,0.03,0.61,0,0,0,0,0,-12.4,0,0,0,0,0.297,40.11,146.81,0.9,0.21,896,0.4,202,2.2,0.0000,0.0000 +2012,2,25,6,30,-1,0.96,0.031,0.61,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.296,40.93,153.14000000000001,0.9,0.21,896,0.4,208,2.3000000000000003,0.0000,0.0000 +2012,2,25,7,30,-1.4000000000000001,0.97,0.031,0.61,0,0,0,0,0,-12.8,0,0,0,0,0.296,41.49,153.23,0.9,0.21,895,0.4,214,2.6,0.0000,0.0000 +2012,2,25,8,30,-1.7000000000000002,0.98,0.032,0.61,0,0,0,0,0,-13,0,0,0,0,0.296,41.93,147.04,0.89,0.21,895,0.30000000000000004,218,2.9000000000000004,0.0000,0.0000 +2012,2,25,9,30,-2,0.97,0.032,0.61,0,0,0,0,1,-13,0,0,0,0,0.296,42.84,137.25,0.89,0.21,894,0.30000000000000004,219,3.2,0.0000,0.0000 +2012,2,25,10,30,-2.2,0.96,0.031,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.297,43.75,125.87,0.89,0.21,894,0.4,217,3.6,0.0000,0.0000 +2012,2,25,11,30,-2.3000000000000003,0.9400000000000001,0.03,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.297,44.09,113.82000000000001,0.89,0.21,893,0.4,214,4.1000000000000005,0.0000,0.0000 +2012,2,25,12,30,-2.2,0.93,0.029,0.61,0,0,0,0,0,-12.9,0,0,0,0,0.296,43.89,101.57000000000001,0.89,0.21,893,0.4,213,4.5,0.0000,0.0000 +2012,2,25,13,30,-0.6000000000000001,0.91,0.028,0.61,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.295,39.42,89.04,0.9,0.21,893,0.4,213,5.1000000000000005,0.0000,0.0000 +2012,2,25,14,30,3.1,0.88,0.028,0.61,43,742,203,0,1,-12.3,43,742,0,203,0.294,31.330000000000002,77.58,0.9,0.21,893,0.4,211,6.1000000000000005,9.7363,7.4470 +2012,2,25,15,30,7.5,0.86,0.029,0.61,59,908,419,0,0,-11.9,59,908,0,419,0.294,23.900000000000002,66.58,0.9,0.21,892,0.4,210,7.800000000000001,22.0800,17.1624 +2012,2,25,16,30,11,0.84,0.029,0.61,67,975,601,0,0,-11.9,67,975,0,601,0.293,18.78,56.84,0.9,0.21,891,0.5,209,9.1,33.7091,26.3696 +2012,2,25,17,30,13.3,0.84,0.029,0.61,73,1014,735,0,0,-11.5,73,1014,0,735,0.292,16.64,49.230000000000004,0.9,0.21,890,0.5,207,9.5,42.5793,33.3973 +2012,2,25,18,30,14.9,0.96,0.032,0.61,77,1028,806,0,0,-11.200000000000001,77,1028,0,806,0.29,15.4,44.9,0.9,0.21,889,0.5,206,9.8,47.3479,37.1761 +2012,2,25,19,30,16,0.97,0.031,0.61,76,1030,807,0,0,-10.9,76,1030,0,807,0.289,14.66,44.82,0.9,0.21,887,0.5,206,9.9,47.4177,37.2315 +2012,2,25,20,30,16.5,0.99,0.031,0.61,74,1014,739,0,0,-10.700000000000001,74,1014,0,739,0.28800000000000003,14.5,49.02,0.9,0.21,886,0.5,207,9.9,42.8428,33.6059 +2012,2,25,21,30,16.400000000000002,1,0.03,0.61,68,978,607,0,0,-10.5,68,978,0,607,0.28800000000000003,14.84,56.54,0.9,0.21,885,0.5,209,9.600000000000001,34.0968,26.6765 +2012,2,25,22,30,15.4,1.01,0.034,0.61,61,896,422,0,0,-10.200000000000001,61,896,0,422,0.289,16.11,66.21000000000001,0.9,0.21,885,0.5,209,8.6,22.3028,17.3416 +2012,2,25,23,30,13.3,1.01,0.039,0.61,46,720,206,0,0,-9.700000000000001,46,720,0,206,0.291,19.27,77.17,0.9,0.21,885,0.5,206,7.300000000000001,9.9048,7.5815 +2012,2,26,0,30,11,1.01,0.042,0.61,12,194,17,0,0,-8.9,12,194,0,17,0.292,23.91,88.67,0.9,0.21,884,0.5,201,6.5,0.0000,0.0000 +2012,2,26,1,30,9.200000000000001,1.01,0.041,0.61,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.293,28.5,101.11,0.9,0.21,884,0.5,198,6.2,0.0000,0.0000 +2012,2,26,2,30,7.9,1.01,0.04,0.61,0,0,0,0,0,-7.4,0,0,0,0,0.295,32.910000000000004,113.35000000000001,0.9,0.21,884,0.5,198,6.2,0.0000,0.0000 +2012,2,26,3,30,7,1,0.039,0.61,0,0,0,0,0,-6.9,0,0,0,0,0.296,36.550000000000004,125.38000000000001,0.9,0.21,884,0.5,203,6.4,0.0000,0.0000 +2012,2,26,4,30,6.1000000000000005,0.98,0.04,0.61,0,0,0,0,0,-6.4,0,0,0,0,0.298,40.26,136.75,0.9,0.21,884,0.5,209,6.300000000000001,0.0000,0.0000 +2012,2,26,5,30,5.300000000000001,0.9400000000000001,0.043000000000000003,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.299,43.75,146.53,0.91,0.21,884,0.6000000000000001,214,5.9,0.0000,0.0000 +2012,2,26,6,30,4.6000000000000005,0.9,0.045,0.61,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.3,46.82,152.78,0.91,0.21,884,0.6000000000000001,217,5.6000000000000005,0.0000,0.0000 +2012,2,26,7,30,3.9000000000000004,0.88,0.045,0.61,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.301,49.800000000000004,152.86,0.91,0.21,883,0.6000000000000001,219,5.300000000000001,0.0000,0.0000 +2012,2,26,8,30,3.3000000000000003,0.86,0.044,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.303,52.56,146.71,0.9,0.21,883,0.5,226,4.9,0.0000,0.0000 +2012,2,26,9,30,2.7,0.85,0.043000000000000003,0.61,0,0,0,0,1,-5.4,0,0,0,0,0.306,55.27,136.97,0.9,0.21,883,0.5,237,4.5,0.0000,0.0000 +2012,2,26,10,30,2.2,0.84,0.042,0.61,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.309,57.84,125.61,0.9,0.21,883,0.5,248,4.2,0.0000,0.0000 +2012,2,26,11,30,1.7000000000000002,0.8300000000000001,0.041,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.312,60.22,113.58,0.9,0.21,883,0.5,258,3.9000000000000004,0.0000,0.0000 +2012,2,26,12,30,1.5,0.84,0.039,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.315,61.17,101.33,0.9,0.21,884,0.5,269,3.7,0.0000,0.0000 +2012,2,26,13,30,3,0.84,0.038,0.61,12,187,16,0,0,-5.300000000000001,12,187,0,16,0.317,54.480000000000004,88.83,0.89,0.21,885,0.4,283,3.9000000000000004,0.0000,0.0000 +2012,2,26,14,30,6.300000000000001,0.85,0.038,0.61,46,724,205,0,3,-5.4,126,128,0,154,0.318,42.81,77.31,0.89,0.21,885,0.4,304,4,7.3980,5.6613 +2012,2,26,15,30,9.9,0.85,0.038,0.61,62,885,418,0,0,-5.6000000000000005,62,885,0,418,0.32,33.2,66.29,0.9,0.21,886,0.5,332,3.6,22.0776,17.1653 +2012,2,26,16,30,12.9,0.86,0.038,0.61,72,964,604,0,0,-6.300000000000001,72,964,0,604,0.32,25.650000000000002,56.52,0.9,0.21,886,0.5,353,3.1,33.9317,26.5475 +2012,2,26,17,30,15.3,0.87,0.038,0.61,79,1004,739,0,0,-7,79,1004,0,739,0.32,20.87,48.88,0.91,0.21,886,0.5,344,2,42.8638,33.6236 +2012,2,26,18,30,17.6,1.05,0.045,0.61,84,1008,803,0,0,-7.6000000000000005,84,1008,0,803,0.32,17.21,44.52,0.91,0.21,886,0.6000000000000001,305,1.4000000000000001,47.2235,37.0814 +2012,2,26,19,30,19.3,1.07,0.045,0.61,84,1008,804,0,0,-8.700000000000001,84,1008,0,804,0.32,14.200000000000001,44.46,0.91,0.21,885,0.6000000000000001,273,1.6,47.2905,37.1344 +2012,2,26,20,30,19.900000000000002,1.08,0.045,0.61,81,991,735,0,0,-9.1,81,991,0,735,0.321,13.25,48.7,0.91,0.21,884,0.6000000000000001,257,1.6,42.6585,33.4641 +2012,2,26,21,30,19.900000000000002,1.06,0.042,0.61,74,955,604,0,0,-9.3,74,955,0,604,0.321,13.06,56.26,0.91,0.21,884,0.6000000000000001,233,1.3,33.9753,26.5846 +2012,2,26,22,30,18.2,1.03,0.041,0.61,63,871,418,0,0,-9.1,63,871,0,418,0.32,14.72,65.98,0.91,0.21,884,0.7000000000000001,164,1.1,22.1309,17.2115 +2012,2,26,23,30,14.200000000000001,1,0.041,0.61,47,702,205,0,0,-2.2,47,702,0,205,0.318,32.08,76.97,0.91,0.21,885,0.7000000000000001,103,1.8,9.8698,7.5575 +2012,2,27,0,30,10.600000000000001,0.98,0.042,0.61,13,197,18,0,0,-4.6000000000000005,13,197,0,18,0.316,33.99,88.49,0.91,0.21,886,0.7000000000000001,95,3.7,0.0000,0.0000 +2012,2,27,1,30,8.3,0.97,0.045,0.61,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.314,38.42,100.94,0.91,0.21,887,0.8,95,5.300000000000001,0.0000,0.0000 +2012,2,27,2,30,6.300000000000001,0.97,0.046,0.61,0,0,0,0,0,-4.5,0,0,0,0,0.31,46,113.17,0.91,0.21,888,0.9,95,5.5,0.0000,0.0000 +2012,2,27,3,30,5.1000000000000005,0.98,0.05,0.61,0,0,0,0,0,-4.3,0,0,0,0,0.308,50.800000000000004,125.19,0.92,0.21,890,0.9,91,5.1000000000000005,0.0000,0.0000 +2012,2,27,4,30,4.3,0.98,0.057,0.61,0,0,0,0,4,-4.5,0,0,0,0,0.305,52.67,136.52,0.93,0.21,891,1,82,4.800000000000001,0.0000,0.0000 +2012,2,27,5,30,3.7,0.98,0.065,0.61,0,0,0,0,4,-5.2,0,0,0,0,0.303,52.050000000000004,146.25,0.93,0.21,892,1,73,4.7,0.0000,0.0000 +2012,2,27,6,30,2.9000000000000004,0.99,0.067,0.61,0,0,0,0,1,-6.2,0,0,0,0,0.302,51.32,152.43,0.9400000000000001,0.21,892,1,67,4.4,0.0000,0.0000 +2012,2,27,7,30,2.1,1,0.07,0.61,0,0,0,0,1,-7.1000000000000005,0,0,0,0,0.302,50.75,152.48,0.9400000000000001,0.21,893,1.1,64,4.2,0.0000,0.0000 +2012,2,27,8,30,1.7000000000000002,1.02,0.078,0.61,0,0,0,0,4,-7.7,0,0,0,0,0.303,49.52,146.38,0.9500000000000001,0.21,893,1.1,63,4,0.0000,0.0000 +2012,2,27,9,30,1.9000000000000001,1.04,0.094,0.61,0,0,0,0,8,-8.3,0,0,0,0,0.304,46.76,136.68,0.96,0.21,893,1.1,64,4.1000000000000005,0.0000,0.0000 +2012,2,27,10,30,2.6,1.05,0.107,0.61,0,0,0,0,4,-9,0,0,0,0,0.303,41.99,125.35000000000001,0.96,0.21,894,1.1,70,4.5,0.0000,0.0000 +2012,2,27,11,30,3.1,1.05,0.11900000000000001,0.61,0,0,0,0,4,-9.9,0,0,0,0,0.302,37.81,113.33,0.96,0.21,894,1.1,76,4.9,0.0000,0.0000 +2012,2,27,12,30,3.4000000000000004,1.06,0.123,0.61,0,0,0,0,4,-10.700000000000001,0,0,0,0,0.302,34.93,101.08,0.96,0.21,895,1.1,79,5,0.0000,0.0000 +2012,2,27,13,30,4,1.08,0.117,0.61,13,70,15,7,4,-10.600000000000001,4,0,7,4,0.302,33.77,88.59,0.96,0.21,895,1.1,82,5,0.0000,0.0000 +2012,2,27,14,30,5.4,1.08,0.111,0.61,65,554,189,7,7,-10.600000000000001,22,0,7,22,0.301,30.580000000000002,77.05,0.96,0.21,895,1.1,87,5.6000000000000005,1.0586,0.8105 +2012,2,27,15,30,7,1.09,0.109,0.61,90,755,397,0,8,-11,7,0,0,7,0.299,26.57,66,0.96,0.21,895,1.1,97,6.300000000000001,0.3706,0.2882 +2012,2,27,16,30,8.4,1.11,0.108,0.61,104,852,578,0,4,-8.4,127,0,0,127,0.298,29.560000000000002,56.2,0.96,0.21,895,1.1,106,6.5,7.1459,5.5916 +2012,2,27,17,30,9.8,1.1500000000000001,0.10400000000000001,0.61,111,901,708,0,4,-4.800000000000001,292,3,0,294,0.297,35.42,48.52,0.96,0.21,894,1.2000000000000002,114,6.4,17.0740,13.3946 +2012,2,27,18,30,10.9,1.17,0.11,0.61,118,917,776,0,4,-1.8,142,0,0,142,0.295,41.17,44.14,0.96,0.21,894,1.2000000000000002,122,6.300000000000001,8.3599,6.5649 +2012,2,27,19,30,11.5,1.17,0.123,0.61,124,902,772,0,4,0.6000000000000001,281,1,0,282,0.292,47.15,44.09,0.96,0.21,893,1.3,130,6,16.6044,13.0394 +2012,2,27,20,30,11.4,1.16,0.134,0.61,125,870,703,0,4,2.5,188,0,0,188,0.29,54.46,48.370000000000005,0.97,0.21,892,1.3,138,5.7,10.9237,8.5700 +2012,2,27,21,30,10.9,1.1500000000000001,0.151,0.61,122,799,569,0,4,4,154,0,0,155,0.28800000000000003,62.42,55.980000000000004,0.97,0.21,892,1.4000000000000001,142,5.4,8.7308,6.8324 +2012,2,27,22,30,10.100000000000001,1.1400000000000001,0.153,0.61,104,697,391,0,4,5,71,0,0,71,0.28600000000000003,70.8,65.74,0.97,0.21,891,1.4000000000000001,144,4.9,3.7660,2.9295 +2012,2,27,23,30,9.200000000000001,1.12,0.149,0.61,73,500,188,0,4,5.9,27,0,0,27,0.28400000000000003,79.61,76.76,0.97,0.21,891,1.4000000000000001,142,4.3,1.3018,0.9972 +2012,2,28,0,30,8.4,1.1,0.147,0.61,15,60,17,0,0,6.5,15,60,0,17,0.28200000000000003,88.04,88.32000000000001,0.97,0.21,891,1.4000000000000001,142,4,0.0000,0.0000 +2012,2,28,1,30,8,1.08,0.135,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.281,93.73,100.76,0.97,0.21,891,1.4000000000000001,144,4,0.0000,0.0000 +2012,2,28,2,30,7.800000000000001,1.06,0.112,0.61,0,0,0,0,0,7.4,0,0,0,0,0.28,97.26,112.99000000000001,0.97,0.21,891,1.4000000000000001,148,4.2,0.0000,0.0000 +2012,2,28,3,30,7.800000000000001,1.05,0.106,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.281,98.88,124.99000000000001,0.96,0.21,891,1.4000000000000001,151,4.5,0.0000,0.0000 +2012,2,28,4,30,8,1.07,0.094,0.61,0,0,0,0,0,7.9,0,0,0,0,0.281,99.16,136.29,0.96,0.21,890,1.5,153,4.800000000000001,0.0000,0.0000 +2012,2,28,5,30,8.200000000000001,1.09,0.085,0.61,0,0,0,0,1,8.1,0,0,0,0,0.28,99.51,145.96,0.96,0.21,889,1.5,154,5.1000000000000005,0.0000,0.0000 +2012,2,28,6,30,8.4,1.12,0.097,0.61,0,0,0,0,0,8.4,0,0,0,0,0.28,100,152.08,0.96,0.21,888,1.6,156,5.300000000000001,0.0000,0.0000 +2012,2,28,7,30,8.700000000000001,1.1300000000000001,0.097,0.61,0,0,0,0,1,8.700000000000001,0,0,0,0,0.278,99.71000000000001,152.11,0.9500000000000001,0.21,887,1.6,159,5.5,0.0000,0.0000 +2012,2,28,8,30,9.1,1.1300000000000001,0.08700000000000001,0.61,0,0,0,0,1,8.9,0,0,0,0,0.277,98.55,146.04,0.9500000000000001,0.21,886,1.6,162,5.7,0.0000,0.0000 +2012,2,28,9,30,9.5,1.12,0.09,0.61,0,0,0,0,1,9.200000000000001,0,0,0,0,0.275,97.91,136.39000000000001,0.96,0.21,885,1.6,165,5.9,0.0000,0.0000 +2012,2,28,10,30,10,1.1,0.088,0.61,0,0,0,0,1,9.600000000000001,0,0,0,0,0.274,97.55,125.09,0.9500000000000001,0.21,885,1.5,169,6.2,0.0000,0.0000 +2012,2,28,11,30,10.200000000000001,1.09,0.083,0.61,0,0,0,0,0,10,0,0,0,0,0.274,98.86,113.08,0.9500000000000001,0.21,884,1.4000000000000001,175,6.2,0.0000,0.0000 +2012,2,28,12,30,10.3,1.07,0.082,0.61,0,0,0,0,1,10.3,0,0,0,0,0.274,99.82000000000001,100.83,0.9500000000000001,0.21,884,1.4000000000000001,182,6.2,0.0000,0.0000 +2012,2,28,13,30,11.100000000000001,1.04,0.079,0.61,15,120,18,0,1,10.4,15,120,0,18,0.275,95.35000000000001,88.37,0.9500000000000001,0.21,883,1.3,190,6.300000000000001,0.0000,0.0000 +2012,2,28,14,30,13,1,0.07100000000000001,0.61,56,629,199,0,3,10.600000000000001,124,8,0,125,0.276,85.27,76.78,0.9400000000000001,0.21,883,1.1,199,6.9,6.0260,4.6159 +2012,2,28,15,30,15.9,0.9400000000000001,0.061,0.61,72,828,413,0,0,9.3,72,828,0,413,0.278,64.97,65.7,0.93,0.21,883,1,213,7.9,21.9132,17.0465 +2012,2,28,16,30,18.400000000000002,0.84,0.054,0.61,81,929,602,0,0,4.9,81,929,0,602,0.279,40.87,55.870000000000005,0.92,0.21,882,0.8,223,9,33.9272,26.5513 +2012,2,28,17,30,19.900000000000002,0.74,0.051000000000000004,0.61,86,978,739,0,0,0.6000000000000001,86,978,0,739,0.278,27.6,48.160000000000004,0.91,0.21,881,0.7000000000000001,226,10,42.9699,33.7131 +2012,2,28,18,30,20.8,0.68,0.053,0.61,91,994,808,0,0,-1.5,91,994,0,808,0.277,22.27,43.77,0.91,0.21,880,0.7000000000000001,229,10.700000000000001,47.6181,37.3969 +2012,2,28,19,30,21.200000000000003,0.63,0.055,0.61,92,991,808,0,1,-2.9000000000000004,92,991,0,808,0.277,19.63,43.730000000000004,0.91,0.21,879,0.7000000000000001,233,11.100000000000001,47.6234,37.4013 +2012,2,28,20,30,21,0.6,0.057,0.61,91,976,743,0,1,-4.4,91,976,0,743,0.278,17.82,48.050000000000004,0.91,0.21,879,0.6000000000000001,241,11.3,43.2185,33.9091 +2012,2,28,21,30,19.8,0.5700000000000001,0.06,0.61,85,930,609,0,0,-6.300000000000001,85,930,0,609,0.281,16.62,55.71,0.91,0.21,879,0.6000000000000001,252,11.4,34.3481,26.8825 +2012,2,28,22,30,17.5,0.5700000000000001,0.062,0.61,75,850,427,0,1,-8.1,75,850,0,427,0.28300000000000003,16.62,65.51,0.91,0.21,880,0.5,264,11.200000000000001,22.6888,17.6527 +2012,2,28,23,30,14.200000000000001,0.51,0.062,0.61,56,676,213,0,0,-9.5,56,676,0,213,0.28700000000000003,18.5,76.56,0.91,0.21,882,0.4,276,10.700000000000001,10.2846,7.8811 +2012,3,1,0,30,11.4,0.5,0.107,0.62,17,86,20,0,0,-9.4,17,86,0,20,0.294,22.28,87.98,0.9,0.21,884,0.30000000000000004,237,3.7,0.0000,0.0000 +2012,3,1,1,30,10.3,0.51,0.10200000000000001,0.62,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.296,22.55,100.41,0.9,0.21,884,0.30000000000000004,243,4.1000000000000005,0.0000,0.0000 +2012,3,1,2,30,9,0.53,0.093,0.62,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.298,24.71,112.63,0.9,0.21,885,0.30000000000000004,248,4,0.0000,0.0000 +2012,3,1,3,30,7.9,0.55,0.079,0.62,0,0,0,0,0,-10.100000000000001,0,0,0,0,0.299,26.66,124.60000000000001,0.9,0.21,884,0.30000000000000004,253,3.7,0.0000,0.0000 +2012,3,1,4,30,7,0.56,0.068,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.299,27.93,135.83,0.9,0.21,884,0.30000000000000004,258,3.6,0.0000,0.0000 +2012,3,1,5,30,6.300000000000001,0.56,0.063,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.299,28.89,145.38,0.9,0.21,884,0.30000000000000004,260,3.7,0.0000,0.0000 +2012,3,1,6,30,5.7,0.55,0.069,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.298,29.51,151.36,0.9,0.21,883,0.30000000000000004,259,3.9000000000000004,0.0000,0.0000 +2012,3,1,7,30,5.2,0.53,0.081,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.298,30.18,151.35,0.9,0.21,883,0.30000000000000004,257,4.2,0.0000,0.0000 +2012,3,1,8,30,4.7,0.51,0.08700000000000001,0.62,0,0,0,0,0,-11,0,0,0,0,0.299,31.14,145.36,0.91,0.21,882,0.30000000000000004,255,4.6000000000000005,0.0000,0.0000 +2012,3,1,9,30,4.2,0.5,0.085,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.298,32.57,135.79,0.91,0.21,882,0.30000000000000004,257,4.9,0.0000,0.0000 +2012,3,1,10,30,3.8000000000000003,0.5,0.08600000000000001,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.298,34.15,124.55,0.91,0.21,882,0.30000000000000004,260,5,0.0000,0.0000 +2012,3,1,11,30,3.5,0.5,0.091,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.298,35.27,112.57000000000001,0.91,0.21,881,0.30000000000000004,262,4.9,0.0000,0.0000 +2012,3,1,12,30,3.6,0.51,0.095,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.297,35.050000000000004,100.32000000000001,0.91,0.21,881,0.30000000000000004,263,5.1000000000000005,0.0000,0.0000 +2012,3,1,13,30,5.300000000000001,0.53,0.092,0.62,18,116,23,0,0,-10.5,18,116,0,23,0.297,31.080000000000002,87.88,0.91,0.21,882,0.30000000000000004,264,5.5,0.0000,0.0000 +2012,3,1,14,30,9.1,0.53,0.084,0.62,63,648,218,0,1,-10.200000000000001,63,648,0,218,0.298,24.38,76.23,0.91,0.21,882,0.30000000000000004,267,5.5,10.4824,8.0336 +2012,3,1,15,30,13.9,0.53,0.077,0.62,82,837,434,0,0,-9.4,82,837,0,434,0.299,18.96,65.1,0.9,0.21,881,0.4,277,6.6000000000000005,23.2926,18.1242 +2012,3,1,16,30,17.8,0.53,0.074,0.62,93,927,622,0,0,-10.3,93,927,0,622,0.299,13.8,55.21,0.9,0.21,881,0.4,284,8.1,35.3920,27.7014 +2012,3,1,17,30,19.700000000000003,0.53,0.07100000000000001,0.62,100,975,759,0,0,-11.100000000000001,100,975,0,759,0.3,11.5,47.43,0.91,0.21,880,0.4,279,8,44.4189,34.8532 +2012,3,1,18,30,20.900000000000002,0.73,0.073,0.62,103,995,830,0,0,-11.4,103,995,0,830,0.301,10.44,43,0.91,0.21,879,0.4,271,7.6000000000000005,49.2031,38.6446 +2012,3,1,19,30,21.700000000000003,0.6900000000000001,0.07200000000000001,0.62,102,996,830,0,0,-11.5,102,996,0,830,0.302,9.85,42.99,0.91,0.21,877,0.4,263,7.4,49.1468,38.6005 +2012,3,1,20,30,22.1,0.64,0.07200000000000001,0.62,99,968,754,0,0,-11.600000000000001,99,968,0,754,0.305,9.51,47.4,0.91,0.21,876,0.5,255,7.4,44.3128,34.7705 +2012,3,1,21,30,21.900000000000002,0.51,0.068,0.62,90,927,620,0,0,-11.8,90,927,0,620,0.309,9.5,55.160000000000004,0.91,0.21,875,0.5,252,7.6000000000000005,35.1828,27.5389 +2012,3,1,22,30,20.6,0.49,0.062,0.62,75,852,434,0,0,-11.9,75,852,0,434,0.313,10.22,65.05,0.9,0.21,875,0.5,255,6.6000000000000005,22.9410,17.8525 +2012,3,1,23,30,16.900000000000002,0.48,0.062,0.62,56,674,217,0,0,-10.8,56,674,0,217,0.318,13.97,76.16,0.9,0.21,875,0.5,260,4.5,10.2032,7.8217 +2012,3,2,0,30,13.100000000000001,0.49,0.064,0.62,17,165,24,0,0,-8.200000000000001,17,165,0,24,0.323,21.900000000000002,87.81,0.9,0.21,875,0.5,263,3.2,0.0000,0.0000 +2012,3,2,1,30,11.9,0.51,0.066,0.62,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.326,24.5,100.23,0.91,0.21,875,0.5,267,3.8000000000000003,0.0000,0.0000 +2012,3,2,2,30,11.200000000000001,0.54,0.066,0.62,0,0,0,0,0,-8.3,0,0,0,0,0.327,24.650000000000002,112.45,0.91,0.21,875,0.5,277,4.9,0.0000,0.0000 +2012,3,2,3,30,9.8,0.59,0.061,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.327,26.88,124.4,0.9,0.21,876,0.5,288,4.800000000000001,0.0000,0.0000 +2012,3,2,4,30,8.4,0.65,0.057,0.62,0,0,0,0,0,-7.9,0,0,0,0,0.328,30.64,135.6,0.9,0.21,877,0.5,295,4.7,0.0000,0.0000 +2012,3,2,5,30,7.4,0.6900000000000001,0.06,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.328,33.63,145.09,0.9,0.21,877,0.6000000000000001,301,5.2,0.0000,0.0000 +2012,3,2,6,30,6.1000000000000005,0.73,0.061,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.329,39.07,151,0.91,0.21,878,0.6000000000000001,306,4.9,0.0000,0.0000 +2012,3,2,7,30,4.800000000000001,0.77,0.06,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.33,44.84,150.96,0.91,0.21,879,0.6000000000000001,309,4.5,0.0000,0.0000 +2012,3,2,8,30,3.5,0.79,0.058,0.62,0,0,0,0,0,-6,0,0,0,0,0.331,49.75,145.01,0.91,0.21,879,0.6000000000000001,312,4.1000000000000005,0.0000,0.0000 +2012,3,2,9,30,2.2,0.81,0.062,0.62,0,0,0,0,0,-6,0,0,0,0,0.333,54.620000000000005,135.49,0.92,0.21,880,0.6000000000000001,321,3.9000000000000004,0.0000,0.0000 +2012,3,2,10,30,1,0.84,0.065,0.62,0,0,0,0,0,-6,0,0,0,0,0.337,59.660000000000004,124.27,0.92,0.21,880,0.6000000000000001,335,3.6,0.0000,0.0000 +2012,3,2,11,30,-0.30000000000000004,0.85,0.06,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.34,66.04,112.3,0.92,0.21,881,0.5,351,2.9000000000000004,0.0000,0.0000 +2012,3,2,12,30,-1.2000000000000002,0.85,0.058,0.62,0,0,0,0,1,-5.9,0,0,0,0,0.343,70.48,100.07000000000001,0.91,0.21,882,0.5,184,2.3000000000000003,0.0000,0.0000 +2012,3,2,13,30,-0.30000000000000004,0.8300000000000001,0.056,0.62,18,225,27,0,0,-6,18,225,0,27,0.34400000000000003,65.35,87.62,0.91,0.21,883,0.5,18,2.3000000000000003,0.0000,0.0000 +2012,3,2,14,30,2.2,0.8200000000000001,0.056,0.62,54,701,224,0,0,-6.6000000000000005,54,701,0,224,0.34500000000000003,52.15,75.95,0.91,0.21,883,0.5,30,2.3000000000000003,10.5522,8.0912 +2012,3,2,15,30,5,0.8200000000000001,0.058,0.62,73,857,437,0,0,-6.7,73,857,0,437,0.34600000000000003,42.5,64.8,0.92,0.21,884,0.6000000000000001,35,2.1,23.1318,18.0036 +2012,3,2,16,30,7.4,0.8300000000000001,0.066,0.62,88,927,621,0,0,-7,88,927,0,621,0.34700000000000003,35.32,54.870000000000005,0.93,0.21,884,0.6000000000000001,21,1.8,35.1644,27.5269 +2012,3,2,17,30,9,0.88,0.08600000000000001,0.62,105,942,746,0,0,-8,105,942,0,746,0.34900000000000003,29.27,47.06,0.93,0.21,884,0.7000000000000001,169,1.3,44.2399,34.7159 +2012,3,2,18,30,10,0.91,0.098,0.62,115,950,814,0,8,-8.3,334,357,0,597,0.35000000000000003,26.82,42.62,0.9400000000000001,0.21,883,0.7000000000000001,337,1.2000000000000002,49.0174,38.5016 +2012,3,2,19,30,10.3,0.9,0.092,0.62,112,956,815,0,4,-7.6000000000000005,365,8,0,370,0.35000000000000003,27.69,42.62,0.9400000000000001,0.21,882,0.7000000000000001,172,1.3,49.0188,38.5027 +2012,3,2,20,30,10.100000000000001,0.88,0.083,0.62,103,940,743,0,4,-6.6000000000000005,329,6,0,333,0.35000000000000003,30.32,47.08,0.9400000000000001,0.21,882,0.8,6,1.5,43.9528,34.4908 +2012,3,2,21,30,9.1,0.86,0.083,0.62,96,895,611,0,4,-5.5,254,3,0,256,0.35000000000000003,35.1,54.89,0.9500000000000001,0.21,882,0.8,12,1.9000000000000001,35.0595,27.4454 +2012,3,2,22,30,7.6000000000000005,0.8300000000000001,0.084,0.62,84,807,427,0,8,-5.2,130,4,0,132,0.35100000000000003,39.86,64.81,0.9500000000000001,0.21,883,0.8,22,2.7,23.1404,18.0110 +2012,3,2,23,30,5.4,0.8200000000000001,0.085,0.62,62,629,215,0,7,-5.5,26,0,0,26,0.355,45.4,75.96000000000001,0.9500000000000001,0.21,885,0.7000000000000001,31,3.8000000000000003,10.5095,8.0595 +2012,3,3,0,30,3.4000000000000004,0.87,0.088,0.62,19,152,25,7,7,-5.2,11,0,7,11,0.359,53.17,87.63,0.9500000000000001,0.21,886,0.7000000000000001,33,4.6000000000000005,0.0000,0.0000 +2012,3,3,1,30,2.3000000000000003,0.92,0.093,0.62,0,0,0,0,7,-5.5,0,0,0,0,0.361,56.49,100.06,0.9500000000000001,0.21,888,0.7000000000000001,25,4.7,0.0000,0.0000 +2012,3,3,2,30,1.7000000000000002,0.98,0.095,0.62,0,0,0,0,7,-5.7,0,0,0,0,0.361,57.74,112.27,0.9500000000000001,0.21,889,0.7000000000000001,13,4.1000000000000005,0.0000,0.0000 +2012,3,3,3,30,1.2000000000000002,1.03,0.095,0.62,0,0,0,0,1,-6,0,0,0,0,0.36,58.800000000000004,124.21000000000001,0.9500000000000001,0.21,889,0.6000000000000001,179,3.1,0.0000,0.0000 +2012,3,3,4,30,0.8,1.04,0.094,0.62,0,0,0,0,1,-6,0,0,0,0,0.358,60.59,135.37,0.9500000000000001,0.21,889,0.6000000000000001,345,2.5,0.0000,0.0000 +2012,3,3,5,30,-0.1,1.05,0.085,0.62,0,0,0,0,1,-6,0,0,0,0,0.355,64.6,144.8,0.9400000000000001,0.21,889,0.6000000000000001,335,2,0.0000,0.0000 +2012,3,3,6,30,-1.2000000000000002,1.06,0.07200000000000001,0.62,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.354,68.22,150.63,0.9400000000000001,0.21,889,0.5,329,1.7000000000000002,0.0000,0.0000 +2012,3,3,7,30,-1.9000000000000001,1.06,0.065,0.62,0,0,0,0,1,-6.7,0,0,0,0,0.353,69.98,150.58,0.93,0.21,889,0.5,324,1.9000000000000001,0.0000,0.0000 +2012,3,3,8,30,-2.4000000000000004,1.06,0.064,0.62,0,0,0,0,1,-6.9,0,0,0,0,0.353,71,144.66,0.93,0.21,890,0.5,324,2.3000000000000003,0.0000,0.0000 +2012,3,3,9,30,-3,1.06,0.065,0.62,0,0,0,0,4,-7.300000000000001,0,0,0,0,0.354,72.37,135.18,0.93,0.21,890,0.5,326,2.6,0.0000,0.0000 +2012,3,3,10,30,-3.7,1.06,0.067,0.62,0,0,0,0,1,-7.7,0,0,0,0,0.354,73.82000000000001,123.99000000000001,0.93,0.21,890,0.5,329,2.4000000000000004,0.0000,0.0000 +2012,3,3,11,30,-4.1000000000000005,1.05,0.068,0.62,0,0,0,0,1,-8.200000000000001,0,0,0,0,0.355,73.32000000000001,112.04,0.9400000000000001,0.21,891,0.5,333,2.2,0.0000,0.0000 +2012,3,3,12,30,-4.1000000000000005,1.05,0.066,0.62,0,0,0,0,1,-8.6,0,0,0,0,0.356,70.63,99.8,0.9400000000000001,0.21,891,0.5,335,2,0.0000,0.0000 +2012,3,3,13,30,-2.5,1.06,0.059000000000000004,0.62,19,250,30,7,4,-8.9,13,0,7,13,0.357,61.25,87.37,0.93,0.21,892,0.5,332,2.2,0.0000,0.0000 +2012,3,3,14,30,1,1.06,0.053,0.62,53,727,233,0,1,-9.5,53,727,0,233,0.359,45.47,75.67,0.93,0.21,892,0.4,323,2.5,10.8666,8.3365 +2012,3,3,15,30,4.5,1.02,0.05,0.62,70,890,453,0,0,-10.8,70,890,0,453,0.356,32.01,64.49,0.93,0.21,892,0.4,307,2.7,23.3433,18.1728 +2012,3,3,16,30,6.6000000000000005,0.97,0.049,0.62,80,966,640,0,0,-11,80,966,0,640,0.35100000000000003,27.26,54.54,0.92,0.21,892,0.4,298,3.3000000000000003,35.1632,27.5298 +2012,3,3,17,30,8,0.93,0.048,0.62,86,1006,776,0,0,-11.4,86,1006,0,776,0.34600000000000003,23.89,46.69,0.92,0.21,892,0.4,302,4.1000000000000005,43.5344,34.1653 +2012,3,3,18,30,9.1,0.88,0.047,0.62,88,1023,846,0,0,-12.600000000000001,88,1023,0,846,0.342,20.2,42.230000000000004,0.92,0.21,891,0.4,310,4.9,35.2927,27.7232 +2012,3,3,19,30,9.700000000000001,0.8,0.049,0.62,90,1031,853,0,2,-14.4,446,106,0,524,0.339,16.72,42.25,0.91,0.21,891,0.30000000000000004,315,5.4,21.8732,17.1819 +2012,3,3,20,30,10.100000000000001,0.67,0.059000000000000004,0.62,93,1001,779,0,0,-16.6,93,1001,0,779,0.337,13.58,46.75,0.91,0.21,890,0.30000000000000004,319,5.6000000000000005,19.4316,15.2497 +2012,3,3,21,30,10.100000000000001,0.75,0.043000000000000003,0.62,77,983,647,0,0,-18.5,77,983,0,647,0.335,11.61,54.620000000000005,0.9,0.21,890,0.30000000000000004,321,5.5,14.4943,11.3477 +2012,3,3,22,30,9.5,0.8200000000000001,0.041,0.62,66,913,458,0,0,-19.200000000000003,66,913,0,458,0.332,11.39,64.59,0.91,0.21,890,0.30000000000000004,321,4.6000000000000005,7.0506,5.4888 +2012,3,3,23,30,6.6000000000000005,0.76,0.052000000000000005,0.62,54,721,231,0,0,-17.400000000000002,54,721,0,231,0.328,16.14,75.76,0.91,0.21,890,0.4,321,2.6,1.2612,0.9675 +2012,3,4,0,30,3.9000000000000004,0.72,0.057,0.62,19,232,29,0,0,-11.200000000000001,19,232,0,29,0.326,32.28,87.46000000000001,0.91,0.22,890,0.4,321,1.4000000000000001,0.0000,0.0000 +2012,3,4,1,30,3.5,0.73,0.055,0.62,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.324,32.03,99.88,0.91,0.22,891,0.4,322,1.4000000000000001,0.0000,0.0000 +2012,3,4,2,30,3.7,0.76,0.052000000000000005,0.62,0,0,0,0,0,-12.200000000000001,0,0,0,0,0.321,30.21,112.09,0.91,0.22,891,0.4,320,1.2000000000000002,0.0000,0.0000 +2012,3,4,3,30,3.9000000000000004,0.78,0.048,0.62,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.317,27.61,124.01,0.91,0.22,891,0.5,302,1,0.0000,0.0000 +2012,3,4,4,30,3.1,0.78,0.041,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.314,27.72,135.13,0.91,0.22,891,0.5,269,1.1,0.0000,0.0000 +2012,3,4,5,30,1.2000000000000002,0.78,0.037,0.62,0,0,0,0,0,-13.4,0,0,0,0,0.312,32.69,144.5,0.9,0.22,891,0.5,247,1.4000000000000001,0.0000,0.0000 +2012,3,4,6,30,-0.4,0.76,0.035,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.31,38.57,150.27,0.9,0.22,891,0.5,245,1.7000000000000002,0.0000,0.0000 +2012,3,4,7,30,-1,0.73,0.035,0.62,0,0,0,0,7,-12.600000000000001,0,0,0,0,0.308,40.97,150.19,0.91,0.22,891,0.5,252,1.9000000000000001,0.0000,0.0000 +2012,3,4,8,30,-1.3,0.71,0.034,0.62,0,0,0,0,4,-12.100000000000001,0,0,0,0,0.306,43.81,144.31,0.91,0.22,890,0.5,264,2.1,0.0000,0.0000 +2012,3,4,9,30,-1.7000000000000002,0.68,0.033,0.62,0,0,0,0,0,-10.9,0,0,0,0,0.305,49.54,134.87,0.91,0.22,890,0.5,281,2.1,0.0000,0.0000 +2012,3,4,10,30,-2,0.64,0.033,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.305,55.42,123.71000000000001,0.91,0.22,890,0.6000000000000001,295,2.2,0.0000,0.0000 +2012,3,4,11,30,-2.3000000000000003,0.6,0.036000000000000004,0.62,0,0,0,0,0,-9,0,0,0,0,0.303,59.89,111.77,0.91,0.22,890,0.6000000000000001,305,2.2,0.0000,0.0000 +2012,3,4,12,30,-1.8,0.58,0.041,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.301,59.300000000000004,99.54,0.91,0.22,890,0.6000000000000001,310,2.4000000000000004,0.0000,0.0000 +2012,3,4,13,30,0.9,0.5700000000000001,0.046,0.62,20,267,33,0,0,-8.4,20,267,0,33,0.3,49.72,87.11,0.91,0.22,890,0.6000000000000001,312,3.2,0.0000,0.0000 +2012,3,4,14,30,5,0.58,0.048,0.62,54,716,234,0,0,-8.1,54,716,0,234,0.298,38.19,75.38,0.91,0.22,891,0.6000000000000001,313,3.4000000000000004,11.3289,8.6957 +2012,3,4,15,30,10.200000000000001,0.5700000000000001,0.047,0.62,70,877,452,0,0,-7.300000000000001,70,877,0,452,0.297,28.53,64.19,0.91,0.22,891,0.6000000000000001,157,2.8000000000000003,24.2527,18.8854 +2012,3,4,16,30,15.3,0.58,0.046,0.62,80,954,638,0,0,-7.800000000000001,80,954,0,638,0.295,19.68,54.2,0.91,0.22,891,0.6000000000000001,20,3.1,36.2937,28.4184 +2012,3,4,17,30,17.900000000000002,0.6,0.045,0.62,86,994,772,0,0,-8.6,86,994,0,772,0.294,15.620000000000001,46.32,0.91,0.22,891,0.6000000000000001,44,3.6,45.3385,35.5842 +2012,3,4,18,30,18.900000000000002,0.66,0.06,0.62,97,988,833,0,0,-7.9,97,988,0,833,0.294,15.5,41.84,0.91,0.22,891,0.7000000000000001,52,3.5,50.0638,39.3290 +2012,3,4,19,30,19.400000000000002,0.66,0.059000000000000004,0.62,96,989,833,0,0,-7.4,96,989,0,833,0.294,15.63,41.88,0.91,0.22,891,0.7000000000000001,56,3.2,31.0072,24.3585 +2012,3,4,20,30,19.5,0.65,0.059000000000000004,0.62,93,971,762,0,0,-7.1000000000000005,93,971,0,762,0.293,15.9,46.43,0.91,0.22,891,0.7000000000000001,57,2.9000000000000004,45.5051,35.7145 +2012,3,4,21,30,19.1,0.66,0.046,0.62,79,948,632,0,0,-6.9,79,948,0,632,0.293,16.5,54.35,0.91,0.22,891,0.7000000000000001,59,2.6,36.6774,28.7180 +2012,3,4,22,30,17.6,0.66,0.042,0.62,67,878,447,0,0,-6.800000000000001,67,878,0,447,0.291,18.31,64.36,0.91,0.22,891,0.7000000000000001,66,1.9000000000000001,24.5026,19.0785 +2012,3,4,23,30,14,0.6900000000000001,0.038,0.62,50,730,232,0,0,-1.9000000000000001,50,730,0,232,0.289,33.36,75.56,0.91,0.22,892,0.7000000000000001,80,1.3,11.2234,8.6133 +2012,3,5,0,30,10.3,0.7000000000000001,0.036000000000000004,0.62,18,290,32,0,0,-2.2,18,290,0,32,0.28700000000000003,41.51,87.29,0.91,0.22,892,0.7000000000000001,98,1.4000000000000001,0.0000,0.0000 +2012,3,5,1,30,8.6,0.6900000000000001,0.038,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.28400000000000003,42.44,99.71000000000001,0.91,0.22,893,0.7000000000000001,113,1.6,0.0000,0.0000 +2012,3,5,2,30,7.5,0.67,0.042,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.28200000000000003,44.24,111.91,0.91,0.22,893,0.7000000000000001,128,1.7000000000000002,0.0000,0.0000 +2012,3,5,3,30,6.6000000000000005,0.65,0.044,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.28,45.79,123.81,0.91,0.22,893,0.6000000000000001,142,1.8,0.0000,0.0000 +2012,3,5,4,30,5.800000000000001,0.64,0.045,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.279,47.04,134.9,0.91,0.22,894,0.6000000000000001,157,1.9000000000000001,0.0000,0.0000 +2012,3,5,5,30,5,0.63,0.046,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.278,47.58,144.21,0.9,0.22,894,0.6000000000000001,171,2,0.0000,0.0000 +2012,3,5,6,30,4.4,0.63,0.047,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.277,46.53,149.9,0.9,0.22,894,0.6000000000000001,183,2.1,0.0000,0.0000 +2012,3,5,7,30,3.8000000000000003,0.63,0.049,0.62,0,0,0,0,0,-7,0,0,0,0,0.277,45.13,149.8,0.9,0.22,894,0.6000000000000001,193,2.1,0.0000,0.0000 +2012,3,5,8,30,3.2,0.63,0.05,0.62,0,0,0,0,1,-7.800000000000001,0,0,0,0,0.277,44.49,143.95000000000002,0.9,0.22,894,0.5,201,2.1,0.0000,0.0000 +2012,3,5,9,30,2.6,0.64,0.051000000000000004,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.277,44.92,134.56,0.9,0.22,894,0.5,207,2,0.0000,0.0000 +2012,3,5,10,30,2,0.65,0.052000000000000005,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.276,46.050000000000004,123.42,0.9,0.22,894,0.5,212,2,0.0000,0.0000 +2012,3,5,11,30,1.6,0.65,0.052000000000000005,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.277,46.81,111.5,0.9,0.22,894,0.5,216,1.9000000000000001,0.0000,0.0000 +2012,3,5,12,30,2.1,0.65,0.051000000000000004,0.62,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.277,44.68,99.27,0.9,0.22,894,0.5,219,2.1,0.0000,0.0000 +2012,3,5,13,30,5.1000000000000005,0.65,0.05,0.62,21,284,37,0,0,-8.4,21,284,0,37,0.278,37.050000000000004,86.85000000000001,0.9,0.22,894,0.5,219,2.9000000000000004,0.0000,0.0000 +2012,3,5,14,30,9.4,0.65,0.049,0.62,54,730,242,0,0,-8.6,54,730,0,242,0.278,27.21,75.10000000000001,0.9,0.22,894,0.5,215,3.5,11.4052,8.7589 +2012,3,5,15,30,14.200000000000001,0.66,0.048,0.62,71,887,461,0,0,-7.7,71,887,0,461,0.278,21.19,63.88,0.9,0.22,893,0.5,202,4.3,24.2514,18.8888 +2012,3,5,16,30,18.400000000000002,0.67,0.048,0.62,81,962,648,0,0,-8,81,962,0,648,0.277,15.89,53.86,0.9,0.22,893,0.5,192,5.7,36.2356,28.3766 +2012,3,5,17,30,20.700000000000003,0.6900000000000001,0.049,0.62,88,999,782,0,0,-8.5,88,999,0,782,0.275,13.22,45.95,0.9,0.22,892,0.5,193,6.5,45.1571,35.4449 +2012,3,5,18,30,21.900000000000002,0.71,0.053,0.62,93,1011,851,0,0,-8.6,93,1011,0,851,0.273,12.18,41.45,0.9,0.22,891,0.5,197,6.9,49.3438,38.7661 +2012,3,5,19,30,22.6,0.72,0.057,0.62,95,1007,849,0,0,-8.8,95,1007,0,849,0.271,11.49,41.51,0.9,0.22,890,0.5,202,7.1000000000000005,49.3388,38.7619 +2012,3,5,20,30,22.900000000000002,0.72,0.059000000000000004,0.62,93,987,777,0,0,-9.1,93,987,0,777,0.271,11.02,46.11,0.9,0.22,889,0.5,207,7,44.5569,34.9729 +2012,3,5,21,30,22.700000000000003,0.73,0.042,0.62,78,970,646,0,0,-9.5,78,970,0,646,0.272,10.84,54.08,0.91,0.22,888,0.5,211,6.7,35.8708,28.0893 +2012,3,5,22,30,21.400000000000002,0.6900000000000001,0.043000000000000003,0.62,68,895,459,0,0,-9.700000000000001,68,895,0,459,0.273,11.56,64.13,0.91,0.22,887,0.5,213,5.5,23.9539,18.6547 +2012,3,5,23,30,17.7,0.66,0.048,0.62,54,728,237,0,0,-8.4,54,728,0,237,0.275,16.07,75.37,0.91,0.22,887,0.5,211,3.8000000000000003,11.2906,8.6681 +2012,3,6,0,30,14.200000000000001,0.66,0.055,0.62,20,252,33,0,0,-6.2,20,252,0,33,0.278,23.82,87.12,0.91,0.21,887,0.5,209,3.3000000000000003,0.0000,0.0000 +2012,3,6,1,30,13.3,0.65,0.056,0.62,0,0,0,0,1,-6.6000000000000005,0,0,0,0,0.28,24.46,99.53,0.91,0.21,887,0.5,209,4,0.0000,0.0000 +2012,3,6,2,30,12.600000000000001,0.63,0.052000000000000005,0.62,0,0,0,0,0,-7,0,0,0,0,0.28200000000000003,24.900000000000002,111.73,0.91,0.21,887,0.5,214,4.7,0.0000,0.0000 +2012,3,6,3,30,11.4,0.64,0.051000000000000004,0.62,0,0,0,0,8,-7.2,0,0,0,0,0.28500000000000003,26.59,123.61,0.91,0.21,887,0.5,218,4.9,0.0000,0.0000 +2012,3,6,4,30,10.3,0.67,0.057,0.62,0,0,0,0,7,-7.1000000000000005,0,0,0,0,0.28600000000000003,28.810000000000002,134.66,0.91,0.21,887,0.4,220,4.800000000000001,0.0000,0.0000 +2012,3,6,5,30,9.600000000000001,0.7000000000000001,0.063,0.62,0,0,0,0,7,-6.9,0,0,0,0,0.28800000000000003,30.55,143.91,0.92,0.21,887,0.4,221,4.800000000000001,0.0000,0.0000 +2012,3,6,6,30,9,0.75,0.068,0.62,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.28800000000000003,32.52,149.54,0.92,0.21,887,0.5,222,4.800000000000001,0.0000,0.0000 +2012,3,6,7,30,8,0.77,0.069,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.28800000000000003,35.910000000000004,149.41,0.92,0.21,886,0.5,223,4.9,0.0000,0.0000 +2012,3,6,8,30,7,0.77,0.068,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.28700000000000003,39.800000000000004,143.59,0.92,0.21,885,0.5,225,5,0.0000,0.0000 +2012,3,6,9,30,6.5,0.76,0.069,0.62,0,0,0,0,7,-5.4,0,0,0,0,0.28700000000000003,42.300000000000004,134.24,0.92,0.21,885,0.5,228,5,0.0000,0.0000 +2012,3,6,10,30,6.2,0.76,0.07,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.28500000000000003,43.87,123.14,0.92,0.21,884,0.5,232,4.800000000000001,0.0000,0.0000 +2012,3,6,11,30,6,0.77,0.07200000000000001,0.62,0,0,0,0,6,-5.1000000000000005,0,0,0,0,0.28200000000000003,44.76,111.23,0.92,0.21,884,0.5,235,4.5,0.0000,0.0000 +2012,3,6,12,30,6.2,0.79,0.075,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.278,43.77,99,0.92,0.21,884,0.5,237,4.4,0.0000,0.0000 +2012,3,6,13,30,7.5,0.8,0.077,0.62,24,244,39,0,0,-5.4,24,244,0,39,0.276,39.4,86.59,0.92,0.21,884,0.5,236,4.6000000000000005,0.0000,0.0000 +2012,3,6,14,30,9.9,0.81,0.077,0.62,63,686,243,0,7,-5.5,116,379,0,215,0.277,33.230000000000004,74.81,0.92,0.21,884,0.5,231,4.6000000000000005,11.8235,9.0848 +2012,3,6,15,30,13.600000000000001,0.8200000000000001,0.077,0.62,82,851,461,0,8,-5.300000000000001,152,581,0,411,0.277,26.44,63.57,0.91,0.21,883,0.5,223,4.5,24.7886,19.3119 +2012,3,6,16,30,18.5,0.84,0.076,0.62,94,932,648,0,3,-5.1000000000000005,327,374,0,549,0.278,19.72,53.52,0.91,0.21,883,0.5,222,5.300000000000001,36.8590,28.8684 +2012,3,6,17,30,22.900000000000002,0.86,0.074,0.62,99,975,782,0,1,-7.5,99,975,0,782,0.278,12.52,45.57,0.9,0.21,882,0.5,225,6.300000000000001,45.7942,35.9480 +2012,3,6,18,30,25.1,0.9,0.068,0.62,99,999,853,0,8,-9.4,257,654,0,750,0.278,9.44,41.06,0.9,0.21,881,0.5,221,6.9,50.4597,39.6455 +2012,3,6,19,30,26.1,0.96,0.064,0.62,97,1004,853,0,0,-10.5,97,1004,0,853,0.279,8.17,41.13,0.9,0.21,880,0.5,216,7.300000000000001,50.3335,39.5460 +2012,3,6,20,30,26.3,1,0.061,0.62,91,983,777,0,0,-11.4,91,983,0,777,0.281,7.49,45.78,0.9,0.21,879,0.6000000000000001,211,7.6000000000000005,45.4791,35.6994 +2012,3,6,21,30,25.900000000000002,1.05,0.055,0.62,82,951,643,0,0,-11.8,82,951,0,643,0.28400000000000003,7.45,53.81,0.9,0.21,878,0.6000000000000001,204,7.6000000000000005,36.7096,28.7490 +2012,3,6,22,30,24.5,1.05,0.054,0.62,71,878,457,0,0,-11.200000000000001,71,878,0,457,0.28600000000000003,8.47,63.910000000000004,0.9,0.21,878,0.6000000000000001,193,7.300000000000001,24.6375,19.1904 +2012,3,6,23,30,21.5,1.03,0.054,0.62,54,721,238,0,1,-8.9,54,721,0,238,0.29,12.19,75.17,0.91,0.21,878,0.6000000000000001,184,7.4,11.5524,8.8721 +2012,3,7,0,30,18.400000000000002,0.98,0.058,0.62,20,267,35,0,0,-5.7,20,267,0,35,0.293,19,86.95,0.91,0.21,878,0.7000000000000001,180,8,0.0000,0.0000 +2012,3,7,1,30,16.2,0.9500000000000001,0.065,0.62,0,0,0,0,0,-2.5,0,0,0,0,0.295,27.77,99.36,0.91,0.21,878,0.8,180,8.6,0.0000,0.0000 +2012,3,7,2,30,14.4,0.9500000000000001,0.074,0.62,0,0,0,0,0,0.4,0,0,0,0,0.295,38.54,111.55,0.92,0.21,878,0.8,182,8.6,0.0000,0.0000 +2012,3,7,3,30,12.8,0.9500000000000001,0.085,0.62,0,0,0,0,0,3.1,0,0,0,0,0.296,51.54,123.41,0.93,0.21,879,0.8,186,8.3,0.0000,0.0000 +2012,3,7,4,30,11.700000000000001,0.92,0.092,0.62,0,0,0,0,0,4.7,0,0,0,0,0.297,62.27,134.42000000000002,0.93,0.21,879,0.7000000000000001,192,7.9,0.0000,0.0000 +2012,3,7,5,30,11.100000000000001,0.88,0.088,0.62,0,0,0,0,0,5.2,0,0,0,0,0.297,66.85,143.61,0.93,0.21,879,0.7000000000000001,198,7.800000000000001,0.0000,0.0000 +2012,3,7,6,30,10.600000000000001,0.85,0.081,0.62,0,0,0,0,0,4.800000000000001,0,0,0,0,0.295,67.55,149.17000000000002,0.93,0.21,879,0.7000000000000001,201,7.4,0.0000,0.0000 +2012,3,7,7,30,10.100000000000001,0.85,0.077,0.62,0,0,0,0,0,4.5,0,0,0,0,0.292,68.28,149.02,0.93,0.21,879,0.7000000000000001,202,6.9,0.0000,0.0000 +2012,3,7,8,30,9.5,0.86,0.078,0.62,0,0,0,0,1,4.4,0,0,0,0,0.292,70.34,143.23,0.93,0.21,879,0.7000000000000001,204,6.7,0.0000,0.0000 +2012,3,7,9,30,9.1,0.86,0.074,0.62,0,0,0,0,0,4,0,0,0,0,0.293,70.32000000000001,133.92000000000002,0.93,0.21,878,0.6000000000000001,210,6.7,0.0000,0.0000 +2012,3,7,10,30,8.6,0.87,0.066,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.294,66.76,122.84,0.93,0.21,879,0.6000000000000001,216,6.5,0.0000,0.0000 +2012,3,7,11,30,8,0.91,0.063,0.62,0,0,0,0,8,0.7000000000000001,0,0,0,0,0.293,60.01,110.95,0.93,0.21,879,0.5,223,5.7,0.0000,0.0000 +2012,3,7,12,30,7.7,0.9400000000000001,0.061,0.62,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.289,51.300000000000004,98.73,0.92,0.21,880,0.5,228,5,0.0000,0.0000 +2012,3,7,13,30,8.6,0.9500000000000001,0.059000000000000004,0.62,24,314,44,7,6,-3.5,27,2,7,27,0.28600000000000003,42.4,86.33,0.92,0.21,880,0.5,229,4.9,0.0000,0.0000 +2012,3,7,14,30,11.700000000000001,0.9500000000000001,0.058,0.62,57,732,253,0,8,-4.2,130,307,0,212,0.28400000000000003,32.6,74.52,0.92,0.21,881,0.5,226,4.800000000000001,10.5311,8.0959 +2012,3,7,15,30,16.3,0.93,0.051000000000000004,0.62,71,886,470,0,8,-4.5,157,577,0,417,0.28300000000000003,23.75,63.26,0.92,0.21,881,0.6000000000000001,228,5.4,22.1480,17.2586 +2012,3,7,16,30,20.400000000000002,0.91,0.047,0.62,79,963,656,7,2,-6.5,254,653,7,645,0.28200000000000003,15.68,53.17,0.91,0.21,881,0.6000000000000001,234,6.300000000000001,31.2740,24.4972 +2012,3,7,17,30,22.700000000000003,0.91,0.045,0.62,84,1001,790,7,8,-8.6,196,791,7,753,0.28200000000000003,11.6,45.2,0.91,0.21,880,0.6000000000000001,234,6.4,45.8470,35.9925 +2012,3,7,18,30,23.900000000000002,0.92,0.049,0.62,90,1013,858,0,7,-9.600000000000001,244,670,0,752,0.28200000000000003,10,40.660000000000004,0.92,0.21,880,0.6000000000000001,228,6.300000000000001,44.5140,34.9764 +2012,3,7,19,30,24.5,0.93,0.053,0.62,92,1009,856,0,7,-10,385,314,0,622,0.28300000000000003,9.35,40.76,0.92,0.21,879,0.6000000000000001,220,6.4,50.6185,39.7725 +2012,3,7,20,30,24.6,0.9400000000000001,0.055,0.62,89,990,784,7,7,-10.200000000000001,212,731,7,725,0.28300000000000003,9.120000000000001,45.46,0.92,0.21,878,0.6000000000000001,213,6.5,45.5250,35.7380 +2012,3,7,21,30,24.400000000000002,0.9400000000000001,0.055,0.62,83,951,648,0,8,-10.4,225,566,0,561,0.28300000000000003,9.08,53.54,0.92,0.21,878,0.6000000000000001,206,6.4,36.5826,28.6524 +2012,3,7,22,30,23.200000000000003,0.9400000000000001,0.052000000000000005,0.62,71,889,465,0,1,-10.5,71,889,0,465,0.28300000000000003,9.69,63.68,0.91,0.21,878,0.5,198,5.4,24.5684,19.1398 +2012,3,7,23,30,19.5,0.96,0.052000000000000005,0.62,54,735,245,0,0,-8.9,54,735,0,245,0.28300000000000003,13.84,74.98,0.91,0.21,879,0.5,188,3.7,11.6211,8.9281 +2012,3,8,0,30,15.8,0.97,0.054,0.62,21,300,38,0,0,-5.9,21,300,0,38,0.28300000000000003,21.94,86.78,0.91,0.21,879,0.5,181,3.1,0.0000,0.0000 +2012,3,8,1,30,14.3,0.97,0.055,0.62,0,0,0,0,0,-6,0,0,0,0,0.28400000000000003,24.060000000000002,99.19,0.91,0.21,880,0.5,183,3.5,0.0000,0.0000 +2012,3,8,2,30,12.9,0.97,0.061,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.28400000000000003,26.79,111.37,0.92,0.21,881,0.5,185,3.3000000000000003,0.0000,0.0000 +2012,3,8,3,30,11.3,0.92,0.068,0.62,0,0,0,0,1,-4.800000000000001,0,0,0,0,0.28500000000000003,32.1,123.21000000000001,0.92,0.21,881,0.6000000000000001,181,2.5,0.0000,0.0000 +2012,3,8,4,30,10.200000000000001,0.86,0.08,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.28500000000000003,38.660000000000004,134.18,0.93,0.21,882,0.7000000000000001,177,1.9000000000000001,0.0000,0.0000 +2012,3,8,5,30,9.5,0.8300000000000001,0.099,0.62,0,0,0,0,4,-1.7000000000000002,0,0,0,0,0.28400000000000003,45.62,143.31,0.9400000000000001,0.21,883,0.9,186,1.6,0.0000,0.0000 +2012,3,8,6,30,8.200000000000001,0.8200000000000001,0.121,0.62,0,0,0,0,4,-0.4,0,0,0,0,0.281,54.56,148.8,0.9500000000000001,0.21,885,1,102,3,0.0000,0.0000 +2012,3,8,7,30,5.9,0.84,0.129,0.62,0,0,0,0,4,-0.6000000000000001,0,0,0,0,0.279,63.13,148.63,0.9500000000000001,0.21,886,1.1,12,5.9,0.0000,0.0000 +2012,3,8,8,30,3.6,0.86,0.131,0.62,0,0,0,0,4,-0.9,0,0,0,0,0.278,72.16,142.87,0.9500000000000001,0.21,887,1.1,15,7.800000000000001,0.0000,0.0000 +2012,3,8,9,30,2.4000000000000004,0.89,0.154,0.62,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.278,76.2,133.59,0.96,0.21,888,1.1,18,8.700000000000001,0.0000,0.0000 +2012,3,8,10,30,1.9000000000000001,0.92,0.15,0.62,0,0,0,0,4,-2.1,0,0,0,0,0.279,75.03,122.55,0.96,0.21,890,1.1,22,9.1,0.0000,0.0000 +2012,3,8,11,30,1.6,0.93,0.125,0.62,0,0,0,0,4,-2.8000000000000003,0,0,0,0,0.28,72.8,110.67,0.96,0.21,891,1.2000000000000002,26,9.200000000000001,0.0000,0.0000 +2012,3,8,12,30,1.3,0.9500000000000001,0.11900000000000001,0.62,0,0,0,0,4,-3.4000000000000004,0,0,0,0,0.281,71.08,98.46000000000001,0.96,0.21,893,1.2000000000000002,29,9.200000000000001,0.0000,0.0000 +2012,3,8,13,30,1.3,0.9500000000000001,0.11900000000000001,0.62,29,193,42,7,4,-4.3,13,0,7,13,0.28200000000000003,66.3,86.05,0.96,0.21,894,1.1,31,9.4,0.0000,0.0000 +2012,3,8,14,30,2,0.9500000000000001,0.111,0.62,73,612,239,7,4,-5.2,63,0,7,63,0.28400000000000003,58.88,74.23,0.9500000000000001,0.21,895,1.1,34,9.700000000000001,10.4110,8.0076 +2012,3,8,15,30,3.3000000000000003,0.96,0.099,0.62,91,796,454,0,4,-6.4,54,0,0,54,0.28600000000000003,49.03,62.940000000000005,0.9500000000000001,0.21,896,1.1,36,10,22.5193,17.5520 +2012,3,8,16,30,4.800000000000001,0.97,0.089,0.62,100,893,639,7,2,-8.5,303,444,7,571,0.28700000000000003,37.480000000000004,52.83,0.9400000000000001,0.21,897,1,37,9.9,36.7979,28.8276 +2012,3,8,17,30,6.1000000000000005,0.98,0.085,0.62,106,939,771,0,2,-10.700000000000001,424,109,0,501,0.289,28.810000000000002,44.82,0.9400000000000001,0.21,897,1,36,9.600000000000001,44.1955,34.6987 +2012,3,8,18,30,7.300000000000001,0.98,0.084,0.62,109,961,842,0,7,-11.8,332,421,0,653,0.292,24.32,40.27,0.9400000000000001,0.21,897,0.9,35,9.1,44.6762,35.1062 +2012,3,8,19,30,8.1,0.98,0.084,0.62,109,961,841,0,7,-12.200000000000001,397,129,0,496,0.295,22.29,40.39,0.9400000000000001,0.21,897,0.9,34,8.6,36.9440,29.0298 +2012,3,8,20,30,8.5,0.99,0.083,0.62,105,943,770,0,7,-12.600000000000001,372,111,0,450,0.298,21.01,45.14,0.9400000000000001,0.21,897,0.9,35,8.1,42.5192,33.3808 +2012,3,8,21,30,8.5,0.97,0.082,0.62,96,906,638,0,7,-13.200000000000001,276,38,0,298,0.302,20.06,53.28,0.93,0.21,897,0.8,37,7.6000000000000005,31.9549,25.0303 +2012,3,8,22,30,7.800000000000001,0.96,0.081,0.62,84,826,453,0,7,-13.700000000000001,175,461,0,381,0.305,20.13,63.46,0.9400000000000001,0.21,898,0.8,38,7,25.0388,19.5097 +2012,3,8,23,30,6.5,0.9500000000000001,0.083,0.62,64,657,236,0,7,-14.100000000000001,130,128,0,163,0.308,21.32,74.78,0.9400000000000001,0.21,899,0.8,38,5.800000000000001,11.9826,9.2090 +2012,3,9,0,30,5.1000000000000005,0.9400000000000001,0.08700000000000001,0.62,24,219,37,7,4,-13.9,24,0,7,24,0.31,23.98,86.60000000000001,0.9400000000000001,0.21,900,0.8,38,4.5,0.0000,0.0000 +2012,3,9,1,30,4.2,0.9400000000000001,0.093,0.62,0,0,0,0,4,-13.100000000000001,0,0,0,0,0.312,27.14,99.01,0.9400000000000001,0.21,901,0.7000000000000001,39,3.8000000000000003,0.0000,0.0000 +2012,3,9,2,30,3.4000000000000004,0.9400000000000001,0.097,0.62,0,0,0,0,7,-12.4,0,0,0,0,0.315,30.400000000000002,111.19,0.9400000000000001,0.21,901,0.7000000000000001,42,3.1,0.0000,0.0000 +2012,3,9,3,30,2.7,0.9400000000000001,0.098,0.62,0,0,0,0,8,-11.5,0,0,0,0,0.317,34.42,123.01,0.9400000000000001,0.21,902,0.7000000000000001,47,2.6,0.0000,0.0000 +2012,3,9,4,30,2.2,0.93,0.098,0.62,0,0,0,0,4,-10.9,0,0,0,0,0.318,37.44,133.94,0.9400000000000001,0.21,902,0.8,54,2.4000000000000004,0.0000,0.0000 +2012,3,9,5,30,1.9000000000000001,0.93,0.101,0.62,0,0,0,0,8,-10.4,0,0,0,0,0.319,39.56,143,0.9400000000000001,0.21,902,0.8,61,2.4000000000000004,0.0000,0.0000 +2012,3,9,6,30,1.4000000000000001,0.9400000000000001,0.10200000000000001,0.62,0,0,0,0,4,-10,0,0,0,0,0.319,42.4,148.43,0.9500000000000001,0.21,902,0.8,64,2.3000000000000003,0.0000,0.0000 +2012,3,9,7,30,0.8,0.9400000000000001,0.10400000000000001,0.62,0,0,0,0,4,-9.200000000000001,0,0,0,0,0.317,47.1,148.23,0.9500000000000001,0.21,902,0.9,60,2.2,0.0000,0.0000 +2012,3,9,8,30,0.2,0.9400000000000001,0.11,0.62,0,0,0,0,4,-8.200000000000001,0,0,0,0,0.316,53.45,142.5,0.9500000000000001,0.21,903,0.9,47,2.1,0.0000,0.0000 +2012,3,9,9,30,0.1,0.9500000000000001,0.117,0.62,0,0,0,0,4,-7,0,0,0,0,0.315,58.85,133.27,0.9500000000000001,0.21,903,0.9,28,1.9000000000000001,0.0000,0.0000 +2012,3,9,10,30,0,0.9400000000000001,0.113,0.62,0,0,0,0,4,-6.4,0,0,0,0,0.314,62.07,122.25,0.9400000000000001,0.21,903,0.9,12,1.5,0.0000,0.0000 +2012,3,9,11,30,-0.30000000000000004,0.92,0.10200000000000001,0.62,0,0,0,0,4,-6.4,0,0,0,0,0.314,63.43,110.39,0.93,0.21,903,0.8,13,1.3,0.0000,0.0000 +2012,3,9,12,30,0.1,0.89,0.088,0.62,0,0,0,0,4,-7,0,0,0,0,0.313,58.800000000000004,98.18,0.93,0.21,903,0.7000000000000001,25,1.8,0.0000,0.0000 +2012,3,9,13,30,2,0.87,0.077,0.62,28,290,49,7,4,-7.300000000000001,13,0,7,13,0.313,50.19,85.78,0.93,0.21,903,0.6000000000000001,39,2.9000000000000004,0.0000,0.0000 +2012,3,9,14,30,5,0.86,0.075,0.62,64,696,256,0,4,-8.5,138,5,0,140,0.311,37.07,73.94,0.93,0.21,903,0.6000000000000001,57,4.4,3.1019,2.3871 +2012,3,9,15,30,7.4,0.86,0.077,0.62,84,842,471,7,4,-12.200000000000001,250,29,7,263,0.309,23.400000000000002,62.620000000000005,0.93,0.21,902,0.7000000000000001,70,5.2,2.9225,2.2784 +2012,3,9,16,30,9.200000000000001,0.87,0.078,0.62,97,918,656,7,4,-15.100000000000001,380,120,7,454,0.307,16.42,52.480000000000004,0.9400000000000001,0.21,902,0.7000000000000001,77,5.1000000000000005,32.6228,25.5598 +2012,3,9,17,30,10.600000000000001,0.86,0.08,0.62,105,956,787,0,0,-16.400000000000002,105,956,0,787,0.306,13.35,44.44,0.9400000000000001,0.21,902,0.7000000000000001,86,4.9,29.4377,23.1140 +2012,3,9,18,30,11.700000000000001,0.85,0.08,0.62,109,973,855,7,3,-16.900000000000002,303,709,7,847,0.305,11.96,39.87,0.9400000000000001,0.21,901,0.7000000000000001,94,4.9,38.8308,30.5149 +2012,3,9,19,30,12.3,0.85,0.079,0.62,108,969,850,7,3,-16.5,353,573,7,792,0.303,11.81,40.01,0.9400000000000001,0.21,900,0.8,97,4.800000000000001,29.4864,23.1712 +2012,3,9,20,30,12.5,0.86,0.076,0.62,102,953,778,7,3,-15.700000000000001,102,953,5,778,0.301,12.47,44.82,0.93,0.21,900,0.8,100,4.5,26.4163,20.7402 +2012,3,9,21,30,12.200000000000001,0.88,0.074,0.62,93,910,641,7,3,-14.700000000000001,333,323,7,527,0.3,13.8,53.01,0.93,0.21,899,0.9,104,4.3,16.9932,13.3120 +2012,3,9,22,30,11.200000000000001,0.9,0.07100000000000001,0.62,79,831,454,0,0,-14,79,831,0,454,0.3,15.67,63.24,0.93,0.21,898,1,108,3.9000000000000004,20.5470,16.0123 +2012,3,9,23,30,9.200000000000001,0.92,0.07100000000000001,0.62,60,672,239,0,3,-13.4,155,63,0,172,0.299,18.87,74.59,0.93,0.21,898,1,113,2.9000000000000004,7.9861,6.1398 +2012,3,10,0,30,7,0.9400000000000001,0.07,0.62,23,257,39,7,4,-10,26,0,7,26,0.299,28.63,86.43,0.93,0.21,898,1,118,1.9000000000000001,0.0000,0.0000 +2012,3,10,1,30,5.9,0.97,0.069,0.62,0,0,0,0,4,-8.9,0,0,0,0,0.298,33.57,98.84,0.93,0.21,898,1,123,1.8,0.0000,0.0000 +2012,3,10,2,30,5.1000000000000005,0.98,0.067,0.62,0,0,0,0,4,-8.9,0,0,0,0,0.297,35.53,111.01,0.92,0.21,898,0.9,127,1.9000000000000001,0.0000,0.0000 +2012,3,10,3,30,4.2,1,0.064,0.62,0,0,0,0,4,-8.700000000000001,0,0,0,0,0.297,38.38,122.81,0.92,0.21,898,0.9,129,1.9000000000000001,0.0000,0.0000 +2012,3,10,4,30,3.3000000000000003,1.02,0.062,0.62,0,0,0,0,4,-8.6,0,0,0,0,0.296,41.39,133.69,0.92,0.21,898,0.9,132,1.8,0.0000,0.0000 +2012,3,10,5,30,2.7,1.03,0.062,0.62,0,0,0,0,4,-8.200000000000001,0,0,0,0,0.295,44.5,142.70000000000002,0.92,0.21,898,0.9,137,1.5,0.0000,0.0000 +2012,3,10,6,30,2.2,1.05,0.062,0.62,0,0,0,0,1,-7.7,0,0,0,0,0.293,48.02,148.05,0.92,0.21,897,1,141,1.2000000000000002,0.0000,0.0000 +2012,3,10,7,30,1.7000000000000002,1.06,0.062,0.62,0,0,0,0,8,-7.2,0,0,0,0,0.292,51.74,147.83,0.93,0.21,897,1.1,145,1,0.0000,0.0000 +2012,3,10,8,30,1.2000000000000002,1.08,0.06,0.62,0,0,0,0,4,-7.1000000000000005,0,0,0,0,0.291,53.910000000000004,142.13,0.93,0.21,896,1.2000000000000002,154,1.1,0.0000,0.0000 +2012,3,10,9,30,0.8,1.09,0.062,0.62,0,0,0,0,4,-6.7,0,0,0,0,0.29,57.13,132.94,0.9400000000000001,0.21,896,1.4000000000000001,170,1.5,0.0000,0.0000 +2012,3,10,10,30,0.2,1.11,0.069,0.62,0,0,0,0,4,-5.6000000000000005,0,0,0,0,0.29,65.19,121.95,0.9500000000000001,0.21,896,1.6,181,1.7000000000000002,0.0000,0.0000 +2012,3,10,11,30,-0.1,1.1300000000000001,0.079,0.62,0,0,0,0,4,-3.6,0,0,0,0,0.292,77.05,110.11,0.9500000000000001,0.21,896,1.7000000000000002,162,1.2000000000000002,0.0000,0.0000 +2012,3,10,12,30,0.2,1.1300000000000001,0.08600000000000001,0.62,0,0,0,0,4,-2.3000000000000003,0,0,0,0,0.293,83,97.9,0.9500000000000001,0.21,895,1.6,119,1.1,0.0000,0.0000 +2012,3,10,13,30,1.4000000000000001,1.1300000000000001,0.09,0.62,29,272,50,7,4,-1.8,9,0,7,9,0.294,79.55,85.51,0.9500000000000001,0.21,895,1.4000000000000001,106,1.8,0.0000,0.0000 +2012,3,10,14,30,3.3000000000000003,1.1300000000000001,0.092,0.62,68,651,251,7,4,-1.4000000000000001,94,1,7,94,0.295,71.24,73.64,0.9500000000000001,0.21,895,1.3,123,2.7,6.9114,5.3213 +2012,3,10,15,30,5.2,1.12,0.098,0.62,91,799,462,0,4,-1.1,82,0,0,82,0.296,63.83,62.31,0.96,0.21,894,1.3,132,3.2,14.2642,11.1228 +2012,3,10,16,30,6.6000000000000005,1.12,0.106,0.62,107,870,641,0,4,-0.8,186,0,0,186,0.298,59.42,52.13,0.96,0.21,894,1.3,135,3.5,25.9760,20.3545 +2012,3,10,17,30,7.5,1.12,0.112,0.62,118,903,767,0,4,-0.30000000000000004,59,0,0,59,0.3,57.78,44.06,0.96,0.21,893,1.4000000000000001,137,4,46.2932,36.3514 +2012,3,10,18,30,7.800000000000001,1.1400000000000001,0.129,0.62,130,904,828,0,4,0.30000000000000004,165,0,0,165,0.302,59.07,39.47,0.97,0.21,892,1.5,139,4.5,50.4145,39.6204 +2012,3,10,19,30,7.6000000000000005,1.1400000000000001,0.131,0.62,131,902,825,0,4,0.9,175,0,0,175,0.304,62.43,39.64,0.97,0.21,891,1.5,140,4.7,47.1254,37.0347 +2012,3,10,20,30,7.300000000000001,1.1300000000000001,0.133,0.62,128,879,754,0,4,1.3,135,0,0,135,0.306,65.79,44.5,0.97,0.21,890,1.5,142,4.6000000000000005,45.7137,35.8936 +2012,3,10,21,30,6.9,1.11,0.14200000000000002,0.62,122,826,622,0,4,1.6,237,1,0,238,0.307,68.86,52.75,0.97,0.21,889,1.4000000000000001,146,4.3,30.0862,23.5710 +2012,3,10,22,30,6.4,1.09,0.147,0.62,107,730,439,0,4,1.7000000000000002,36,0,0,36,0.307,72.11,63.02,0.97,0.21,889,1.4000000000000001,153,3.9000000000000004,24.5208,19.1122 +2012,3,10,23,30,5.5,1.08,0.149,0.62,80,552,229,0,4,1.9000000000000001,14,0,0,14,0.308,77.42,74.4,0.97,0.21,889,1.3,162,3.5,8.4413,6.4919 +2012,3,11,0,30,4.6000000000000005,1.08,0.165,0.62,28,138,37,7,4,2,9,0,7,9,0.309,83.09,86.26,0.97,0.21,889,1.3,169,3,0.0000,0.0000 +2012,3,11,1,30,3.9000000000000004,1.08,0.17500000000000002,0.62,0,0,0,0,4,2.1,0,0,0,0,0.311,88.28,98.67,0.97,0.21,889,1.2000000000000002,174,2.6,0.0000,0.0000 +2012,3,11,2,30,3.3000000000000003,1.08,0.176,0.62,0,0,0,0,4,2.2,0,0,0,0,0.315,92.43,110.83,0.97,0.21,889,1.1,178,2.2,0.0000,0.0000 +2012,3,11,3,30,2.7,1.08,0.181,0.62,0,0,0,0,4,2.2,0,0,0,0,0.319,96.25,122.60000000000001,0.97,0.21,889,0.9,182,1.8,0.0000,0.0000 +2012,3,11,4,30,2,1.09,0.177,0.62,0,0,0,0,4,2,0,0,0,0,0.324,100,133.45,0.97,0.21,888,0.9,189,1.3,0.0000,0.0000 +2012,3,11,5,30,1.5,1.1,0.166,0.62,0,0,0,0,4,1.5,0,0,0,0,0.327,100,142.39000000000001,0.96,0.21,888,0.9,197,1.3,0.0000,0.0000 +2012,3,11,6,30,1.2000000000000002,1.1,0.167,0.62,0,0,0,0,8,1.2000000000000002,0,0,0,0,0.329,100,147.68,0.96,0.21,887,0.9,206,2.1,0.0000,0.0000 +2012,3,11,7,30,1,1.1,0.165,0.62,0,0,0,0,8,1,0,0,0,0,0.33,100,147.44,0.96,0.21,887,0.9,216,2.9000000000000004,0.0000,0.0000 +2012,3,11,8,30,0.7000000000000001,1.09,0.153,0.62,0,0,0,0,4,0.4,0,0,0,0,0.329,97.99000000000001,141.76,0.96,0.21,886,0.9,225,3.3000000000000003,0.0000,0.0000 +2012,3,11,9,30,0.4,1.07,0.145,0.62,0,0,0,0,4,-0.1,0,0,0,0,0.327,96.64,132.61,0.96,0.21,885,0.9,228,3.3000000000000003,0.0000,0.0000 +2012,3,11,10,30,0.1,1.05,0.134,0.62,0,0,0,0,4,-0.4,0,0,0,0,0.323,96.4,121.65,0.9500000000000001,0.21,885,0.9,228,3.1,0.0000,0.0000 +2012,3,11,11,30,-0.5,1.03,0.121,0.62,0,0,0,0,4,-0.6000000000000001,0,0,0,0,0.32,98.93,109.82000000000001,0.9500000000000001,0.21,884,0.9,225,2.7,0.0000,0.0000 +2012,3,11,12,30,-0.6000000000000001,1.03,0.108,0.62,0,0,0,0,1,-0.9,0,0,0,0,0.318,97.9,97.63,0.9500000000000001,0.21,884,0.9,220,2.9000000000000004,0.0000,0.0000 +2012,3,11,13,30,1.2000000000000002,1.04,0.095,0.62,31,285,55,7,4,-0.9,27,0,7,27,0.316,86.05,85.23,0.9500000000000001,0.21,884,0.9,214,4.1000000000000005,0.0000,0.0000 +2012,3,11,14,30,4.3,1.08,0.089,0.62,67,675,261,0,4,-0.30000000000000004,37,0,0,37,0.314,71.88,73.35000000000001,0.9400000000000001,0.21,884,0.9,209,5.1000000000000005,4.6534,3.5845 +2012,3,11,15,30,7.7,1.12,0.092,0.62,89,821,474,7,4,-0.4,78,0,7,78,0.312,56.65,61.99,0.9500000000000001,0.21,883,1,210,6.1000000000000005,4.4565,3.4758 +2012,3,11,16,30,10.9,1.1300000000000001,0.088,0.62,99,898,654,0,4,-1.3,347,63,0,386,0.31,42.59,51.79,0.9400000000000001,0.21,882,1.1,219,6.9,10.6574,8.3519 +2012,3,11,17,30,13.9,1.11,0.078,0.62,101,948,787,7,2,-1.9000000000000001,402,344,7,651,0.306,33.55,43.68,0.9400000000000001,0.21,881,1.1,231,7.4,3.4743,2.7283 +2012,3,11,18,30,16.5,1.09,0.069,0.62,100,977,858,0,0,-2.7,100,977,0,858,0.302,26.66,39.07,0.93,0.21,880,1,243,7.6000000000000005,9.8301,7.7259 +2012,3,11,19,30,18.400000000000002,1.04,0.066,0.62,98,983,859,0,0,-3.8000000000000003,98,983,0,859,0.298,21.87,39.26,0.92,0.21,879,0.9,255,7.800000000000001,10.4218,8.1907 +2012,3,11,20,30,19.3,1.02,0.069,0.62,96,962,786,0,0,-4.5,96,962,0,786,0.296,19.55,44.18,0.92,0.21,879,0.9,264,7.800000000000001,7.9397,6.2345 +2012,3,11,21,30,19.6,1,0.073,0.62,91,918,650,0,0,-4.9,91,918,0,650,0.296,18.64,52.49,0.92,0.21,879,0.9,267,7.300000000000001,13.6021,10.6575 +2012,3,11,22,30,19,0.98,0.075,0.62,81,843,466,0,0,-5.300000000000001,81,843,0,466,0.295,18.82,62.800000000000004,0.92,0.21,879,0.8,266,5.9,1.9473,1.5180 +2012,3,11,23,30,16,0.96,0.074,0.62,61,687,248,0,0,-4.3,61,687,0,248,0.296,24.54,74.21000000000001,0.92,0.21,880,0.8,262,3.9000000000000004,0.6883,0.5295 +2012,3,12,0,30,12.600000000000001,0.9400000000000001,0.07100000000000001,0.62,25,286,45,0,1,-3.1,25,286,0,45,0.298,33.32,86.10000000000001,0.92,0.21,880,0.7000000000000001,257,3,0.0000,0.0000 +2012,3,12,1,30,11.200000000000001,0.89,0.066,0.62,0,0,0,0,8,-4.3,0,0,0,0,0.301,33.47,98.5,0.91,0.21,881,0.7000000000000001,256,3.6,0.0000,0.0000 +2012,3,12,2,30,10.600000000000001,0.84,0.063,0.62,0,0,0,0,8,-5,0,0,0,0,0.303,33.07,110.65,0.91,0.21,882,0.6000000000000001,257,4.5,0.0000,0.0000 +2012,3,12,3,30,10.4,0.78,0.062,0.62,0,0,0,0,1,-5.7,0,0,0,0,0.305,31.7,122.4,0.91,0.21,882,0.6000000000000001,258,5.4,0.0000,0.0000 +2012,3,12,4,30,9.9,0.74,0.061,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.306,31.82,133.2,0.9,0.21,882,0.5,261,5.9,0.0000,0.0000 +2012,3,12,5,30,9.1,0.71,0.06,0.62,0,0,0,0,0,-6,0,0,0,0,0.304,33.82,142.08,0.9,0.21,882,0.5,263,5.9,0.0000,0.0000 +2012,3,12,6,30,8.200000000000001,0.6900000000000001,0.06,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.302,36.27,147.31,0.9,0.21,882,0.5,265,5.9,0.0000,0.0000 +2012,3,12,7,30,7.4,0.68,0.059000000000000004,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.301,38.4,147.04,0.9,0.21,883,0.5,267,5.9,0.0000,0.0000 +2012,3,12,8,30,6.6000000000000005,0.67,0.059000000000000004,0.62,0,0,0,0,1,-5.9,0,0,0,0,0.301,40.53,141.39000000000001,0.9,0.21,883,0.5,266,5.6000000000000005,0.0000,0.0000 +2012,3,12,9,30,5.800000000000001,0.67,0.06,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.3,42.94,132.28,0.9,0.21,883,0.5,265,5.1000000000000005,0.0000,0.0000 +2012,3,12,10,30,5.1000000000000005,0.67,0.06,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.299,45.04,121.35000000000001,0.9,0.21,883,0.5,266,4.9,0.0000,0.0000 +2012,3,12,11,30,4.6000000000000005,0.67,0.062,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.298,46.32,109.53,0.9,0.21,884,0.5,268,4.800000000000001,0.0000,0.0000 +2012,3,12,12,30,4.7,0.66,0.065,0.62,0,0,0,0,0,-6,0,0,0,0,0.299,45.88,97.34,0.9,0.21,885,0.5,270,4.9,0.0000,0.0000 +2012,3,12,13,30,6.5,0.66,0.067,0.62,30,352,61,0,0,-5.9,30,352,0,61,0.3,40.71,84.96000000000001,0.9,0.21,886,0.5,271,5.300000000000001,0.0000,0.0000 +2012,3,12,14,30,10.4,0.65,0.067,0.62,63,729,276,0,0,-5.6000000000000005,63,729,0,276,0.301,31.95,73.06,0.9,0.21,887,0.5,273,5.2,1.8366,1.4154 +2012,3,12,15,30,15.3,0.65,0.067,0.62,81,875,496,0,0,-5.300000000000001,81,875,0,496,0.302,23.86,61.67,0.9,0.21,887,0.5,283,5,4.2479,3.3138 +2012,3,12,16,30,19.8,0.65,0.065,0.62,91,949,682,0,0,-6,91,949,0,682,0.302,16.91,51.44,0.9,0.21,888,0.5,297,4.4,22.1471,17.3581 +2012,3,12,17,30,22.6,0.66,0.063,0.62,96,989,816,0,0,-8,96,989,0,816,0.302,12.27,43.300000000000004,0.9,0.21,887,0.5,298,3.4000000000000004,38.3752,30.1385 +2012,3,12,18,30,23.900000000000002,0.63,0.057,0.62,96,1010,884,0,0,-8.1,96,1010,0,884,0.304,11.21,38.68,0.89,0.21,887,0.5,284,3,51.1629,40.2135 +2012,3,12,19,30,24.6,0.63,0.056,0.62,95,1011,882,0,0,-8.200000000000001,95,1011,0,882,0.306,10.68,38.89,0.89,0.21,886,0.5,272,3,51.2005,40.2420 +2012,3,12,20,30,24.8,0.64,0.057,0.62,93,993,808,0,0,-8.4,93,993,0,808,0.309,10.370000000000001,43.86,0.9,0.21,886,0.5,262,3.1,46.2685,36.3340 +2012,3,12,21,30,24.6,0.64,0.058,0.62,87,953,670,0,0,-8.8,87,953,0,670,0.31,10.21,52.230000000000004,0.9,0.21,886,0.5,255,3.3000000000000003,37.1888,29.1406 +2012,3,12,22,30,23,0.64,0.057,0.62,76,890,485,0,0,-9.1,76,890,0,485,0.311,10.97,62.59,0.9,0.21,886,0.4,249,2.6,25.2439,19.6819 +2012,3,12,23,30,18.900000000000002,0.64,0.055,0.62,58,744,262,0,0,-2.4000000000000004,58,744,0,262,0.311,23.51,74.03,0.9,0.21,886,0.4,243,1.7000000000000002,12.2130,9.3987 +2012,3,13,0,30,14.8,0.65,0.052000000000000005,0.62,25,345,49,0,0,-1.7000000000000002,25,345,0,49,0.311,32.05,85.93,0.89,0.21,886,0.4,238,1.7000000000000002,0.0000,0.0000 +2012,3,13,1,30,13,0.66,0.051000000000000004,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.312,31.17,98.33,0.89,0.21,887,0.4,237,2,0.0000,0.0000 +2012,3,13,2,30,12.100000000000001,0.67,0.053,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.313,30.84,110.47,0.89,0.21,887,0.4,241,2.6,0.0000,0.0000 +2012,3,13,3,30,11.600000000000001,0.68,0.055,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.313,29.95,122.2,0.9,0.21,888,0.5,247,3.5,0.0000,0.0000 +2012,3,13,4,30,11,0.7000000000000001,0.057,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.312,29.6,132.96,0.9,0.21,888,0.5,254,4.5,0.0000,0.0000 +2012,3,13,5,30,10.200000000000001,0.71,0.058,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.31,30.39,141.77,0.9,0.21,888,0.4,261,4.7,0.0000,0.0000 +2012,3,13,6,30,9.1,0.7000000000000001,0.058,0.62,0,0,0,0,0,-6.4,0,0,0,0,0.308,32.79,146.93,0.9,0.21,888,0.4,268,4.2,0.0000,0.0000 +2012,3,13,7,30,7.800000000000001,0.6900000000000001,0.058,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.306,36.69,146.64000000000001,0.9,0.21,888,0.4,273,3.4000000000000004,0.0000,0.0000 +2012,3,13,8,30,6.6000000000000005,0.6900000000000001,0.059000000000000004,0.62,0,0,0,0,1,-5.9,0,0,0,0,0.305,40.6,141.02,0.9,0.21,888,0.4,275,2.9000000000000004,0.0000,0.0000 +2012,3,13,9,30,5.7,0.71,0.062,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.303,43.71,131.94,0.9,0.21,888,0.4,274,2.5,0.0000,0.0000 +2012,3,13,10,30,4.9,0.74,0.066,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.301,46.44,121.04,0.91,0.21,888,0.4,275,2.3000000000000003,0.0000,0.0000 +2012,3,13,11,30,4.4,0.76,0.067,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.299,47.81,109.25,0.91,0.21,888,0.4,275,2.1,0.0000,0.0000 +2012,3,13,12,30,5.1000000000000005,0.8,0.066,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.297,44.9,97.06,0.92,0.21,889,0.5,274,2.2,0.0000,0.0000 +2012,3,13,13,30,8.3,0.84,0.062,0.62,31,391,67,0,1,-5.800000000000001,31,391,0,67,0.294,36.21,84.68,0.91,0.21,889,0.5,270,3.1,0.0000,0.0000 +2012,3,13,14,30,12.600000000000001,0.86,0.056,0.62,60,761,285,0,1,-6.7,60,761,0,285,0.291,25.52,72.76,0.91,0.21,890,0.5,263,3.6,13.7367,10.5915 +2012,3,13,15,30,17.3,0.88,0.052000000000000005,0.62,74,903,507,0,1,-6.2,74,903,0,507,0.289,19.57,61.36,0.91,0.21,890,0.5,253,3.4000000000000004,27.0677,21.1198 +2012,3,13,16,30,21.900000000000002,0.9,0.05,0.62,82,972,693,0,1,-7.1000000000000005,82,972,0,693,0.28800000000000003,13.73,51.09,0.9,0.21,889,0.5,245,4.1000000000000005,39.1846,30.7149 +2012,3,13,17,30,24.6,0.9,0.047,0.62,87,1010,826,7,2,-9.9,279,739,7,820,0.28700000000000003,9.34,42.910000000000004,0.9,0.21,888,0.5,240,4.800000000000001,48.1517,37.8194 +2012,3,13,18,30,25.8,0.92,0.052000000000000005,0.62,92,1020,893,0,8,-10.4,271,636,0,770,0.28500000000000003,8.35,38.28,0.91,0.21,887,0.5,235,5.300000000000001,52.7591,41.4706 +2012,3,13,19,30,26.5,0.92,0.049,0.62,90,1022,890,0,0,-10.700000000000001,90,1022,0,890,0.28200000000000003,7.84,38.52,0.9,0.21,886,0.5,232,5.7,52.6152,41.3562 +2012,3,13,20,30,26.700000000000003,0.91,0.045,0.62,85,1010,817,0,0,-10.8,85,1010,0,817,0.281,7.68,43.550000000000004,0.89,0.21,886,0.5,230,5.800000000000001,47.6062,37.3869 +2012,3,13,21,30,26.400000000000002,0.88,0.041,0.62,77,980,680,0,0,-10.8,77,980,0,680,0.28,7.82,51.97,0.88,0.21,885,0.5,228,5.7,38.3738,30.0718 +2012,3,13,22,30,24.900000000000002,0.87,0.04,0.62,67,913,490,0,0,-10.700000000000001,67,913,0,490,0.28,8.67,62.370000000000005,0.88,0.21,885,0.5,226,4.800000000000001,26.3099,20.5161 +2012,3,13,23,30,20.6,0.85,0.039,0.62,52,777,268,0,0,-8.200000000000001,52,777,0,268,0.279,13.620000000000001,73.84,0.88,0.21,885,0.5,220,3.1,12.9236,9.9486 +2012,3,14,0,30,16.2,0.84,0.039,0.62,24,398,53,0,0,-4.3,24,398,0,53,0.28,24.17,85.76,0.88,0.22,885,0.5,211,2.3000000000000003,0.0000,0.0000 +2012,3,14,1,30,14.4,0.85,0.039,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.28,26.36,98.15,0.87,0.22,886,0.5,204,2.5,0.0000,0.0000 +2012,3,14,2,30,13.600000000000001,0.87,0.04,0.62,0,0,0,0,0,-5,0,0,0,0,0.28,27.13,110.29,0.88,0.22,886,0.5,201,2.9000000000000004,0.0000,0.0000 +2012,3,14,3,30,13,0.89,0.042,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.28,28.51,121.99000000000001,0.88,0.22,887,0.5,202,3.4000000000000004,0.0000,0.0000 +2012,3,14,4,30,12.200000000000001,0.91,0.046,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.28,32.5,132.71,0.89,0.22,887,0.6000000000000001,206,3.8000000000000003,0.0000,0.0000 +2012,3,14,5,30,11.3,0.93,0.051000000000000004,0.62,0,0,0,0,0,-2,0,0,0,0,0.279,39.46,141.46,0.9,0.22,887,0.7000000000000001,212,4.1000000000000005,0.0000,0.0000 +2012,3,14,6,30,10.600000000000001,0.96,0.059000000000000004,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.279,46.72,146.55,0.92,0.22,887,0.8,220,4.4,0.0000,0.0000 +2012,3,14,7,30,9.9,0.98,0.069,0.62,0,0,0,0,0,1,0,0,0,0,0.278,53.76,146.24,0.93,0.22,887,0.9,228,4.4,0.0000,0.0000 +2012,3,14,8,30,9.5,1,0.078,0.62,0,0,0,0,1,2,0,0,0,0,0.278,59.6,140.64000000000001,0.93,0.22,887,0.9,234,4.3,0.0000,0.0000 +2012,3,14,9,30,9.1,1.02,0.082,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.279,64.87,131.6,0.9400000000000001,0.22,887,0.8,238,4,0.0000,0.0000 +2012,3,14,10,30,8.700000000000001,1.03,0.082,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.279,68.63,120.73,0.9400000000000001,0.22,887,0.8,240,3.6,0.0000,0.0000 +2012,3,14,11,30,8.1,1.03,0.081,0.62,0,0,0,0,4,3.3000000000000003,0,0,0,0,0.28,71.49,108.95,0.9400000000000001,0.22,887,0.8,243,3.1,0.0000,0.0000 +2012,3,14,12,30,8.3,1.03,0.077,0.62,0,0,0,0,0,3,0,0,0,0,0.279,69.38,96.78,0.9400000000000001,0.22,888,0.7000000000000001,245,3.2,0.0000,0.0000 +2012,3,14,13,30,10.100000000000001,1.03,0.073,0.62,33,378,70,0,0,2.6,33,378,0,70,0.278,59.68,84.4,0.9400000000000001,0.22,888,0.7000000000000001,245,3.5,0.0000,0.0000 +2012,3,14,14,30,12.600000000000001,1.03,0.07200000000000001,0.62,65,723,283,0,3,2.3000000000000003,180,66,0,200,0.278,49.63,72.46000000000001,0.9400000000000001,0.22,888,0.8,240,3.4000000000000004,14.2244,10.9727 +2012,3,14,15,30,15.600000000000001,1.04,0.077,0.62,85,856,499,7,3,2.6,271,277,7,405,0.279,41.72,61.04,0.9400000000000001,0.22,888,0.8,235,3.2,27.7221,21.6346 +2012,3,14,16,30,18.6,1.04,0.085,0.62,100,918,681,0,1,2.6,100,918,0,681,0.279,34.38,50.74,0.9400000000000001,0.22,888,0.8,230,3.4000000000000004,39.8709,31.2562 +2012,3,14,17,30,20.900000000000002,1.04,0.093,0.62,112,948,810,0,0,1.4000000000000001,112,948,0,810,0.279,27.44,42.53,0.9400000000000001,0.22,888,0.8,224,3.5,48.4385,38.0475 +2012,3,14,18,30,22.900000000000002,1.02,0.092,0.62,115,965,877,0,0,-0.8,115,965,0,877,0.279,20.740000000000002,37.88,0.9400000000000001,0.22,887,0.8,219,3.6,45.9956,36.1564 +2012,3,14,19,30,24.6,0.99,0.078,0.62,107,977,875,0,1,-2.5,107,977,0,875,0.279,16.51,38.14,0.93,0.22,887,0.8,216,3.9000000000000004,53.1359,41.7678 +2012,3,14,20,30,25.900000000000002,0.9400000000000001,0.061,0.62,94,981,809,0,0,-4.2,94,981,0,809,0.279,13.46,43.230000000000004,0.91,0.22,886,0.7000000000000001,215,4.2,48.1778,37.8380 +2012,3,14,21,30,26.200000000000003,0.89,0.049,0.62,81,963,678,0,0,-6.300000000000001,81,963,0,678,0.28,11.290000000000001,51.71,0.89,0.22,885,0.6000000000000001,216,4.4,38.9876,30.5553 +2012,3,14,22,30,24.900000000000002,0.88,0.047,0.62,70,904,493,0,0,-8.1,70,904,0,493,0.28200000000000003,10.59,62.160000000000004,0.89,0.22,885,0.5,215,3.5,26.6198,20.7607 +2012,3,14,23,30,20.6,0.87,0.045,0.62,54,768,270,0,0,-4.6000000000000005,54,768,0,270,0.28300000000000003,18.02,73.65,0.88,0.22,885,0.5,211,2.3000000000000003,13.2426,10.1975 +2012,3,15,0,30,16.5,0.88,0.044,0.62,25,394,55,0,0,-2.7,25,394,0,55,0.28400000000000003,26.85,85.59,0.88,0.22,886,0.5,207,2.2,0.0000,0.0000 +2012,3,15,1,30,14.9,0.89,0.044,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.28500000000000003,27.61,97.98,0.88,0.22,886,0.5,205,2.7,0.0000,0.0000 +2012,3,15,2,30,14.100000000000001,0.91,0.045,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.28600000000000003,29.96,110.11,0.88,0.22,887,0.5,207,3.1,0.0000,0.0000 +2012,3,15,3,30,13,0.93,0.046,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.28800000000000003,34.160000000000004,121.78,0.89,0.22,887,0.5,212,3.4000000000000004,0.0000,0.0000 +2012,3,15,4,30,11.700000000000001,0.96,0.049,0.62,0,0,0,0,0,-2,0,0,0,0,0.289,38.36,132.46,0.89,0.22,887,0.5,221,3.4000000000000004,0.0000,0.0000 +2012,3,15,5,30,10.3,0.97,0.051000000000000004,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.289,40.87,141.15,0.89,0.22,888,0.5,230,3.2,0.0000,0.0000 +2012,3,15,6,30,8.9,0.97,0.053,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.28800000000000003,41.410000000000004,146.18,0.89,0.22,888,0.5,236,2.9000000000000004,0.0000,0.0000 +2012,3,15,7,30,7.7,0.96,0.053,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.28800000000000003,41.14,145.84,0.89,0.22,888,0.5,241,2.5,0.0000,0.0000 +2012,3,15,8,30,6.6000000000000005,0.9500000000000001,0.052000000000000005,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.28800000000000003,41.18,140.27,0.89,0.22,888,0.5,253,2.2,0.0000,0.0000 +2012,3,15,9,30,5.9,0.93,0.051000000000000004,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.289,40.49,131.27,0.89,0.22,888,0.4,270,2,0.0000,0.0000 +2012,3,15,10,30,5.4,0.91,0.05,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.289,39.25,120.42,0.89,0.22,888,0.4,286,2.1,0.0000,0.0000 +2012,3,15,11,30,5,0.88,0.049,0.62,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.289,37.94,108.66,0.89,0.22,889,0.4,293,2.3000000000000003,0.0000,0.0000 +2012,3,15,12,30,5.9,0.87,0.047,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.289,33.78,96.49000000000001,0.89,0.22,889,0.30000000000000004,292,2.9000000000000004,0.0000,0.0000 +2012,3,15,13,30,8.8,0.88,0.046,0.62,31,485,80,0,0,-9.4,31,485,0,80,0.289,26.5,84.12,0.89,0.22,889,0.30000000000000004,286,3.9000000000000004,0.0000,0.0000 +2012,3,15,14,30,12.8,0.89,0.045,0.62,57,813,306,0,0,-9.8,57,813,0,306,0.289,19.77,72.16,0.89,0.22,890,0.30000000000000004,279,4,10.0100,7.7253 +2012,3,15,15,30,17.8,0.92,0.045,0.62,72,938,530,0,0,-8.5,72,938,0,530,0.289,15.85,60.72,0.89,0.22,890,0.30000000000000004,283,3.3000000000000003,22.1889,17.3198 +2012,3,15,16,30,22.900000000000002,0.9500000000000001,0.044,0.62,80,991,711,0,0,-9.200000000000001,80,991,0,711,0.29,10.98,50.39,0.88,0.22,889,0.4,292,3,39.2330,30.7594 +2012,3,15,17,30,25.900000000000002,0.98,0.045,0.62,86,1022,844,0,0,-11.700000000000001,86,1022,0,844,0.29,7.48,42.14,0.89,0.22,889,0.4,283,3.1,47.8959,37.6239 +2012,3,15,18,30,27.1,1.01,0.048,0.62,91,1033,911,0,0,-11.8,91,1033,0,911,0.29,6.95,37.47,0.9,0.22,889,0.4,267,3.1,52.4324,41.2186 +2012,3,15,19,30,27.700000000000003,1.03,0.05,0.62,91,1031,906,0,0,-11.700000000000001,91,1031,0,906,0.289,6.74,37.77,0.9,0.22,888,0.4,257,3.1,52.2836,41.1001 +2012,3,15,20,30,27.6,1.05,0.056,0.62,91,1001,824,0,0,-11.700000000000001,91,1001,0,824,0.28800000000000003,6.79,42.92,0.91,0.22,887,0.5,248,3.1,47.7477,37.5025 +2012,3,15,21,30,26.900000000000002,1.05,0.061,0.62,88,959,685,0,0,-11.700000000000001,88,959,0,685,0.28600000000000003,7.07,51.46,0.92,0.22,887,0.5,237,2.9000000000000004,38.9133,30.4996 +2012,3,15,22,30,24.6,1.04,0.063,0.62,78,885,494,0,0,-10.700000000000001,78,885,0,494,0.28600000000000003,8.82,61.940000000000005,0.92,0.22,887,0.5,222,2,26.8195,20.9194 +2012,3,15,23,30,21,1.03,0.063,0.62,60,740,271,0,0,0.2,60,740,0,271,0.28700000000000003,25.05,73.47,0.92,0.22,887,0.5,202,1.3,13.3648,10.2948 +2012,3,16,0,30,18.1,1.02,0.065,0.62,28,355,56,0,0,-0.4,28,355,0,56,0.28700000000000003,28.63,85.43,0.92,0.22,887,0.5,185,1.5,0.0000,0.0000 +2012,3,16,1,30,16.5,1.02,0.069,0.62,0,0,0,0,1,-2,0,0,0,0,0.28800000000000003,28.18,97.81,0.93,0.22,888,0.5,181,1.8,0.0000,0.0000 +2012,3,16,2,30,15.200000000000001,1.03,0.07100000000000001,0.62,0,0,0,0,0,-2.6,0,0,0,0,0.289,29.37,109.93,0.93,0.22,888,0.5,190,2.1,0.0000,0.0000 +2012,3,16,3,30,14.100000000000001,1.02,0.07100000000000001,0.62,0,0,0,0,1,-3.1,0,0,0,0,0.29,30.38,121.58,0.92,0.22,888,0.5,205,2.2,0.0000,0.0000 +2012,3,16,4,30,13.100000000000001,1.01,0.07,0.62,0,0,0,0,3,-3.8000000000000003,0,0,0,0,0.291,30.8,132.21,0.92,0.22,888,0.5,221,2.4000000000000004,0.0000,0.0000 +2012,3,16,5,30,12.3,0.97,0.069,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.293,29.990000000000002,140.84,0.92,0.22,888,0.5,231,2.5,0.0000,0.0000 +2012,3,16,6,30,11.3,0.93,0.066,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.294,29.96,145.8,0.91,0.22,888,0.4,237,2.6,0.0000,0.0000 +2012,3,16,7,30,10.100000000000001,0.89,0.059000000000000004,0.62,0,0,0,0,7,-6.1000000000000005,0,0,0,0,0.295,31.52,145.44,0.9,0.22,888,0.4,239,2.5,0.0000,0.0000 +2012,3,16,8,30,8.9,0.84,0.053,0.62,0,0,0,0,4,-5.9,0,0,0,0,0.295,34.51,139.89000000000001,0.9,0.22,888,0.4,240,2.5,0.0000,0.0000 +2012,3,16,9,30,7.800000000000001,0.79,0.049,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.294,38.46,130.93,0.89,0.22,887,0.4,239,2.7,0.0000,0.0000 +2012,3,16,10,30,7.1000000000000005,0.75,0.047,0.62,0,0,0,0,0,-5,0,0,0,0,0.294,41.95,120.11,0.89,0.22,887,0.4,240,3,0.0000,0.0000 +2012,3,16,11,30,6.7,0.75,0.049,0.62,0,0,0,0,0,-5,0,0,0,0,0.296,43.06,108.37,0.9,0.22,887,0.4,243,3.3000000000000003,0.0000,0.0000 +2012,3,16,12,30,7.300000000000001,0.77,0.053,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.297,39.660000000000004,96.21000000000001,0.9,0.22,887,0.5,246,3.8000000000000003,0.0000,0.0000 +2012,3,16,13,30,9.9,0.79,0.054,0.62,32,451,81,7,3,-5.9,52,3,7,52,0.299,32.42,83.83,0.9,0.22,887,0.5,247,4.4,0.0000,0.0000 +2012,3,16,14,30,13.9,0.81,0.054,0.62,60,777,302,0,1,-5.800000000000001,60,777,0,302,0.301,25.02,71.86,0.9,0.22,887,0.5,244,4.2,15.3582,11.8581 +2012,3,16,15,30,18.8,0.8200000000000001,0.054,0.62,76,906,523,0,0,-5.5,76,906,0,523,0.302,18.82,60.4,0.9,0.22,887,0.5,241,4.4,29.0942,22.7142 +2012,3,16,16,30,23.3,0.8300000000000001,0.054,0.62,86,970,709,0,0,-7.2,86,970,0,709,0.302,12.48,50.04,0.9,0.22,887,0.5,239,5,41.0154,32.1601 +2012,3,16,17,30,26,0.84,0.055,0.62,93,1003,841,0,0,-9.4,93,1003,0,841,0.303,8.99,41.76,0.91,0.22,886,0.5,235,5.2,49.9570,39.2458 +2012,3,16,18,30,27.400000000000002,0.8300000000000001,0.055,0.62,95,1010,901,0,0,-9.8,95,1010,0,901,0.304,7.97,37.07,0.91,0.22,885,0.6000000000000001,231,5.300000000000001,54.5123,42.8562 +2012,3,16,19,30,28.200000000000003,0.88,0.058,0.62,96,1001,891,0,0,-9.600000000000001,96,1001,0,891,0.305,7.76,37.39,0.91,0.22,885,0.7000000000000001,227,5.5,54.1788,42.5922 +2012,3,16,20,30,28.3,0.92,0.06,0.62,94,977,813,0,0,-8.9,94,977,0,813,0.306,8.15,42.6,0.92,0.22,884,0.8,223,5.7,48.6735,38.2320 +2012,3,16,21,30,28,0.9400000000000001,0.062,0.62,88,938,676,0,0,-7.9,88,938,0,676,0.307,8.96,51.2,0.92,0.22,883,0.8,221,5.9,39.3539,30.8474 +2012,3,16,22,30,26.8,0.9500000000000001,0.063,0.62,77,865,487,0,1,-7,77,865,0,487,0.307,10.3,61.730000000000004,0.92,0.22,883,0.8,220,5.300000000000001,26.9121,20.9947 +2012,3,16,23,30,23.200000000000003,0.96,0.064,0.62,60,719,267,0,0,-5.4,60,719,0,267,0.305,14.47,73.28,0.92,0.22,883,0.8,215,3.7,13.4366,10.3532 +2012,3,17,0,30,19.200000000000003,0.97,0.064,0.62,28,346,56,0,0,-1.8,28,346,0,56,0.303,24.2,85.26,0.92,0.21,883,0.8,205,2.8000000000000003,0.0000,0.0000 +2012,3,17,1,30,17.5,0.98,0.065,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.301,29.87,97.64,0.92,0.21,883,0.9,196,3.5,0.0000,0.0000 +2012,3,17,2,30,16.7,0.99,0.067,0.62,0,0,0,0,0,2,0,0,0,0,0.299,37.28,109.75,0.93,0.21,884,1.1,190,4.4,0.0000,0.0000 +2012,3,17,3,30,15.700000000000001,1,0.07100000000000001,0.62,0,0,0,0,0,5.2,0,0,0,0,0.297,49.54,121.37,0.93,0.21,884,1.2000000000000002,189,4.7,0.0000,0.0000 +2012,3,17,4,30,14.700000000000001,1.02,0.077,0.62,0,0,0,0,0,7.9,0,0,0,0,0.296,63.910000000000004,131.96,0.9400000000000001,0.21,884,1.4000000000000001,193,4.5,0.0000,0.0000 +2012,3,17,5,30,14,1.02,0.083,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.294,77.24,140.52,0.9400000000000001,0.21,884,1.5,200,4.5,0.0000,0.0000 +2012,3,17,6,30,13.4,1.02,0.089,0.62,0,0,0,0,0,11.600000000000001,0,0,0,0,0.293,89.01,145.42000000000002,0.9500000000000001,0.21,884,1.5,204,4.6000000000000005,0.0000,0.0000 +2012,3,17,7,30,12.9,1,0.096,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.293,98.27,145.03,0.9500000000000001,0.21,884,1.4000000000000001,204,4.6000000000000005,0.0000,0.0000 +2012,3,17,8,30,12.5,0.98,0.093,0.62,0,0,0,0,1,12.5,0,0,0,0,0.292,100,139.51,0.9500000000000001,0.21,883,1.2000000000000002,205,4.5,0.0000,0.0000 +2012,3,17,9,30,12.100000000000001,0.97,0.09,0.62,0,0,0,0,0,12.100000000000001,0,0,0,0,0.291,100,130.58,0.9400000000000001,0.21,883,1,209,4.2,0.0000,0.0000 +2012,3,17,10,30,11.4,0.97,0.085,0.62,0,0,0,0,0,11.4,0,0,0,0,0.291,100,119.8,0.9400000000000001,0.21,883,0.8,215,4.1000000000000005,0.0000,0.0000 +2012,3,17,11,30,10.5,0.97,0.076,0.62,0,0,0,0,0,10.5,0,0,0,0,0.292,100,108.07000000000001,0.93,0.21,883,0.7000000000000001,221,3.9000000000000004,0.0000,0.0000 +2012,3,17,12,30,10,0.98,0.067,0.62,0,0,0,0,0,10,0,0,0,0,0.292,100,95.92,0.92,0.21,883,0.6000000000000001,225,4.1000000000000005,0.0000,0.0000 +2012,3,17,13,30,11.200000000000001,1,0.058,0.62,33,456,85,0,0,8.1,33,456,0,85,0.294,81.16,83.55,0.91,0.21,883,0.6000000000000001,227,4.5,0.0000,0.0000 +2012,3,17,14,30,14.8,1,0.049,0.62,58,795,310,0,0,5.7,58,795,0,310,0.295,54.42,71.57000000000001,0.9,0.21,884,0.5,225,4.5,15.1998,11.7410 +2012,3,17,15,30,19.900000000000002,1,0.045,0.62,71,923,532,0,0,2.5,71,923,0,532,0.295,31.51,60.08,0.9,0.21,883,0.5,222,4.800000000000001,28.7654,22.4616 +2012,3,17,16,30,24.5,1,0.042,0.62,79,988,718,0,0,-2.4000000000000004,79,988,0,718,0.294,16.64,49.68,0.9,0.21,883,0.5,224,5.6000000000000005,40.9532,32.1146 +2012,3,17,17,30,27.200000000000003,1,0.04,0.62,83,1021,849,0,0,-8.5,83,1021,0,849,0.293,8.93,41.37,0.9,0.21,882,0.5,223,6.300000000000001,49.8278,39.1470 +2012,3,17,18,30,28.200000000000003,1,0.039,0.62,84,1036,915,0,0,-9.200000000000001,84,1036,0,915,0.292,7.97,36.67,0.89,0.21,882,0.5,218,6.6000000000000005,53.9587,42.4233 +2012,3,17,19,30,28.6,0.99,0.037,0.62,83,1037,911,0,0,-9.4,83,1037,0,911,0.291,7.7,37.02,0.89,0.21,881,0.5,213,6.9,53.3245,41.9228 +2012,3,17,20,30,28.700000000000003,0.98,0.036000000000000004,0.62,80,1031,843,0,0,-10.5,80,1031,0,843,0.29,7.0200000000000005,42.29,0.89,0.21,880,0.4,212,7.2,48.0645,37.7559 +2012,3,17,21,30,28.1,0.97,0.036000000000000004,0.62,75,998,703,0,0,-12.5,75,998,0,703,0.28800000000000003,6.19,50.95,0.9,0.21,880,0.4,213,7.2,38.8763,30.4754 +2012,3,17,22,30,26.900000000000002,0.96,0.036000000000000004,0.62,66,935,511,0,0,-13.8,66,935,0,511,0.28600000000000003,6,61.53,0.9,0.21,880,0.4,214,6.5,26.5664,20.7278 +2012,3,17,23,30,23.700000000000003,0.9500000000000001,0.036000000000000004,0.62,52,806,286,0,0,-12.3,52,806,0,286,0.28500000000000003,8.17,73.10000000000001,0.9,0.21,880,0.4,212,5,13.2617,10.2216 +2012,3,18,0,30,20.1,0.92,0.036000000000000004,0.62,26,447,64,0,0,-8.200000000000001,26,447,0,64,0.28500000000000003,14.040000000000001,85.10000000000001,0.9,0.21,880,0.5,209,4.2,0.0000,0.0000 +2012,3,18,1,30,18.5,0.89,0.035,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.28400000000000003,17.26,97.47,0.9,0.21,881,0.5,208,4.800000000000001,0.0000,0.0000 +2012,3,18,2,30,17.5,0.89,0.037,0.62,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.28400000000000003,19.1,109.57000000000001,0.9,0.21,881,0.6000000000000001,205,5.4,0.0000,0.0000 +2012,3,18,3,30,16.3,0.9400000000000001,0.043000000000000003,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.28300000000000003,22.05,121.16,0.91,0.21,881,0.7000000000000001,200,5.6000000000000005,0.0000,0.0000 +2012,3,18,4,30,15,1,0.051000000000000004,0.62,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.28300000000000003,27.14,131.71,0.92,0.21,882,0.8,196,5.5,0.0000,0.0000 +2012,3,18,5,30,14,1.04,0.058,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.28200000000000003,35.300000000000004,140.21,0.92,0.21,882,1,195,5.7,0.0000,0.0000 +2012,3,18,6,30,13.4,1.07,0.064,0.62,0,0,0,0,0,2.5,0,0,0,0,0.281,47.74,145.04,0.93,0.21,882,1.1,194,5.800000000000001,0.0000,0.0000 +2012,3,18,7,30,12.9,1.09,0.074,0.62,0,0,0,0,0,6.300000000000001,0,0,0,0,0.281,64.21000000000001,144.63,0.9400000000000001,0.21,881,1.4000000000000001,193,5.6000000000000005,0.0000,0.0000 +2012,3,18,8,30,12.700000000000001,1.09,0.089,0.62,0,0,0,0,1,9.600000000000001,0,0,0,0,0.28,81.46000000000001,139.14000000000001,0.9500000000000001,0.21,881,1.6,193,5.2,0.0000,0.0000 +2012,3,18,9,30,12.700000000000001,1.11,0.106,0.62,0,0,0,0,0,11.700000000000001,0,0,0,0,0.28,93.45,130.24,0.96,0.21,880,1.7000000000000002,194,4.9,0.0000,0.0000 +2012,3,18,10,30,12.8,1.11,0.122,0.62,0,0,0,0,3,12.600000000000001,0,0,0,0,0.279,98.75,119.49000000000001,0.96,0.21,880,1.7000000000000002,199,4.9,0.0000,0.0000 +2012,3,18,11,30,13.100000000000001,1.08,0.14,0.62,0,0,0,0,1,12.600000000000001,0,0,0,0,0.28,96.86,107.78,0.96,0.21,880,1.7000000000000002,203,5.2,0.0000,0.0000 +2012,3,18,12,30,13.5,1.06,0.157,0.62,0,0,0,0,7,11.600000000000001,0,0,0,0,0.28,88.29,95.63,0.96,0.21,880,1.7000000000000002,201,5,0.0000,0.0000 +2012,3,18,13,30,14.700000000000001,1.07,0.145,0.62,44,283,77,7,7,10.3,56,10,7,57,0.28,74.87,83.27,0.96,0.21,880,1.7000000000000002,191,4.800000000000001,0.0000,0.0000 +2012,3,18,14,30,17,1.07,0.117,0.62,80,647,287,0,4,9.8,189,109,0,224,0.28,62.51,71.27,0.9500000000000001,0.21,880,1.6,186,5.4,15.6444,12.0895 +2012,3,18,15,30,19.5,1.1,0.1,0.62,94,812,503,0,7,9.1,203,484,0,447,0.279,50.92,59.76,0.9500000000000001,0.21,880,1.5,191,6.2,29.3160,22.8958 +2012,3,18,16,30,21.6,1.1400000000000001,0.10300000000000001,0.62,108,884,684,7,2,7.2,281,615,7,682,0.279,39.480000000000004,49.33,0.9500000000000001,0.21,880,1.4000000000000001,197,6.6000000000000005,41.5275,32.5683 +2012,3,18,17,30,23.3,1.16,0.107,0.62,117,922,813,7,3,5,310,653,7,803,0.279,30.560000000000002,40.99,0.9400000000000001,0.21,879,1.3,197,7,50.3512,39.5608 +2012,3,18,18,30,24.900000000000002,1.1,0.083,0.62,108,962,884,0,8,3,242,631,0,751,0.281,24.150000000000002,36.27,0.93,0.21,878,1.2000000000000002,193,7.6000000000000005,54.8419,43.1200 +2012,3,18,19,30,26.3,1.1,0.075,0.62,104,968,881,0,8,1.4000000000000001,234,693,0,790,0.28200000000000003,19.76,36.65,0.93,0.21,877,1.2000000000000002,190,8.200000000000001,54.5632,42.8989 +2012,3,18,20,30,27.1,1.12,0.075,0.62,100,948,804,0,6,0,341,324,0,582,0.28300000000000003,17.11,41.980000000000004,0.93,0.21,876,1.3,191,8.6,49.8785,39.1830 +2012,3,18,21,30,27.200000000000003,1.1300000000000001,0.083,0.62,97,901,667,0,6,-1.1,298,306,0,492,0.28600000000000003,15.64,50.7,0.9400000000000001,0.21,875,1.3,193,8.700000000000001,40.4680,31.7257 +2012,3,18,22,30,26.400000000000002,1.1,0.093,0.62,89,813,479,0,8,-2.1,235,334,0,395,0.29,15.26,61.32,0.9400000000000001,0.21,874,1.3,195,8.4,27.9110,21.7797 +2012,3,18,23,30,24.5,1.07,0.10300000000000001,0.62,71,646,261,0,8,-2.3000000000000003,59,501,0,206,0.293,16.82,72.92,0.9400000000000001,0.21,875,1.3,196,7.4,14.2292,10.9705 +2012,3,19,0,30,22.200000000000003,1.05,0.10200000000000001,0.62,32,281,57,7,7,-1.6,45,14,7,47,0.295,20.42,84.93,0.9400000000000001,0.21,875,1.2000000000000002,195,6.5,0.0000,0.0000 +2012,3,19,1,30,20,1.01,0.099,0.62,0,0,0,0,7,-0.6000000000000001,0,0,0,0,0.297,25.01,97.3,0.9400000000000001,0.21,876,1.3,192,5.7,0.0000,0.0000 +2012,3,19,2,30,18.1,0.92,0.112,0.62,0,0,0,0,7,1,0,0,0,0,0.297,31.720000000000002,109.38,0.9500000000000001,0.21,877,1.4000000000000001,193,5.2,0.0000,0.0000 +2012,3,19,3,30,16.5,0.8300000000000001,0.126,0.62,0,0,0,0,6,2.8000000000000003,0,0,0,0,0.297,39.82,120.95,0.9500000000000001,0.21,878,1.5,198,4.800000000000001,0.0000,0.0000 +2012,3,19,4,30,15.3,0.8,0.117,0.62,0,0,0,0,9,3.8000000000000003,0,0,0,0,0.296,46.28,131.45,0.9500000000000001,0.21,878,1.6,200,4.3,0.0000,0.0000 +2012,3,19,5,30,14.4,0.84,0.113,0.62,0,0,0,0,9,4.7,0,0,0,0,0.298,51.980000000000004,139.89000000000001,0.9500000000000001,0.21,878,1.6,203,3.9000000000000004,0.0000,0.0000 +2012,3,19,6,30,13.700000000000001,0.9,0.114,0.62,0,0,0,0,9,5.4,0,0,0,0,0.302,57.2,144.66,0.9500000000000001,0.21,878,1.6,214,3.8000000000000003,0.0000,0.0000 +2012,3,19,7,30,13.100000000000001,0.97,0.125,0.62,0,0,0,0,9,5.2,0,0,0,0,0.305,58.71,144.23,0.96,0.21,878,1.7000000000000002,232,4.3,0.0000,0.0000 +2012,3,19,8,30,12.200000000000001,1.03,0.14300000000000002,0.62,0,0,0,0,6,4.1000000000000005,0,0,0,0,0.308,57.76,138.76,0.96,0.21,878,1.7000000000000002,247,4.5,0.0000,0.0000 +2012,3,19,9,30,11.100000000000001,1.08,0.14200000000000002,0.62,0,0,0,0,9,2.9000000000000004,0,0,0,0,0.311,56.910000000000004,129.9,0.96,0.21,877,1.6,257,3.3000000000000003,0.0000,0.0000 +2012,3,19,10,30,10.100000000000001,1.1,0.14200000000000002,0.62,0,0,0,0,7,2.3000000000000003,0,0,0,0,0.314,58.56,119.17,0.96,0.21,877,1.4000000000000001,258,1.9000000000000001,0.0000,0.0000 +2012,3,19,11,30,9.600000000000001,1.09,0.148,0.62,0,0,0,0,6,2.2,0,0,0,0,0.318,60.050000000000004,107.48,0.96,0.21,877,1.3,253,1.4000000000000001,0.0000,0.0000 +2012,3,19,12,30,9.700000000000001,1.07,0.153,0.62,0,0,0,0,6,1.6,0,0,0,0,0.322,56.95,95.34,0.96,0.21,878,1.2000000000000002,253,1.9000000000000001,0.0000,0.0000 +2012,3,19,13,30,10.5,1.05,0.14400000000000002,0.62,46,303,83,7,6,-0.1,47,3,7,48,0.324,47.94,82.98,0.96,0.21,878,1.2000000000000002,257,3.3000000000000003,0.0000,0.0000 +2012,3,19,14,30,11,1.03,0.131,0.62,85,641,294,0,4,-2.3000000000000003,107,1,0,107,0.326,39.36,70.97,0.96,0.21,879,1.2000000000000002,256,4.800000000000001,11.3357,8.7636 +2012,3,19,15,30,10.9,1.02,0.11800000000000001,0.62,103,803,511,0,7,-3.8000000000000003,165,8,0,169,0.33,35.54,59.44,0.96,0.21,879,1.1,253,5.5,24.6781,19.2770 +2012,3,19,16,30,11.8,1.03,0.10400000000000001,0.62,110,895,697,0,4,-4.1000000000000005,406,180,0,525,0.336,32.72,48.980000000000004,0.9500000000000001,0.21,878,1,251,5.7,39.4950,30.9772 +2012,3,19,17,30,13.600000000000001,1,0.073,0.62,101,966,834,0,4,-5.2,302,1,0,303,0.338,26.8,40.6,0.9400000000000001,0.21,878,0.9,249,6,47.6678,37.4549 +2012,3,19,18,30,15,0.9500000000000001,0.067,0.62,101,990,904,0,4,-6.1000000000000005,201,0,0,201,0.338,22.85,35.87,0.9400000000000001,0.21,877,0.8,245,6.300000000000001,45.0484,35.4216 +2012,3,19,19,30,15.5,0.9400000000000001,0.069,0.62,102,987,898,0,4,-6.5,402,9,0,409,0.338,21.490000000000002,36.28,0.9400000000000001,0.21,876,0.8,242,6.4,47.3517,37.2309 +2012,3,19,20,30,15.3,0.9400000000000001,0.07100000000000001,0.62,100,968,823,0,4,-6.7,380,13,0,389,0.339,21.31,41.67,0.9400000000000001,0.21,875,0.8,239,6.4,34.4632,27.0748 +2012,3,19,21,30,14.700000000000001,0.96,0.078,0.62,97,922,684,0,7,-7.1000000000000005,341,204,0,471,0.341,21.57,50.45,0.9500000000000001,0.21,875,0.8,237,6.2,28.3489,22.2263 +2012,3,19,22,30,13.600000000000001,0.9500000000000001,0.084,0.62,87,841,493,0,7,-7.4,254,135,0,319,0.343,22.57,61.11,0.9500000000000001,0.21,876,0.8,238,5.9,21.6035,16.8600 +2012,3,19,23,30,12.100000000000001,0.9500000000000001,0.088,0.62,69,685,272,0,0,-7.6000000000000005,69,685,0,272,0.34700000000000003,24.47,72.74,0.9500000000000001,0.21,876,0.8,240,4.9,10.2662,7.9173 +2012,3,20,0,30,10.3,0.93,0.08,0.62,32,337,62,0,1,-7.300000000000001,32,337,0,62,0.352,28.38,84.76,0.9400000000000001,0.21,877,0.7000000000000001,241,3.6,0.0000,0.0000 +2012,3,20,1,30,8.3,0.9,0.067,0.62,0,0,0,0,4,-6.300000000000001,0,0,0,0,0.357,34.85,97.13,0.9400000000000001,0.21,877,0.7000000000000001,242,2.6,0.0000,0.0000 +2012,3,20,2,30,7,0.89,0.068,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.361,39.58,109.2,0.9500000000000001,0.21,878,0.6000000000000001,241,2.5,0.0000,0.0000 +2012,3,20,3,30,6.6000000000000005,0.88,0.088,0.62,0,0,0,0,1,-6.2,0,0,0,0,0.365,39.44,120.74000000000001,0.9500000000000001,0.21,878,0.6000000000000001,240,3,0.0000,0.0000 +2012,3,20,4,30,5.800000000000001,0.87,0.067,0.62,0,0,0,0,4,-6.800000000000001,0,0,0,0,0.367,40.050000000000004,131.2,0.93,0.21,878,0.5,246,3.2,0.0000,0.0000 +2012,3,20,5,30,4.6000000000000005,0.86,0.053,0.62,0,0,0,0,1,-7.1000000000000005,0,0,0,0,0.366,42.39,139.57,0.92,0.21,877,0.5,260,3.3000000000000003,0.0000,0.0000 +2012,3,20,6,30,3.8000000000000003,0.89,0.053,0.62,0,0,0,0,1,-8.1,0,0,0,0,0.363,41.53,144.28,0.92,0.21,876,0.5,267,3.7,0.0000,0.0000 +2012,3,20,7,30,2.6,0.93,0.055,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.36,42.39,143.83,0.93,0.21,876,0.5,259,3,0.0000,0.0000 +2012,3,20,8,30,1.4000000000000001,0.9500000000000001,0.063,0.62,0,0,0,0,7,-8.4,0,0,0,0,0.36,47.93,138.38,0.93,0.21,877,0.5,253,2.1,0.0000,0.0000 +2012,3,20,9,30,0.6000000000000001,0.9400000000000001,0.062,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.362,50.65,129.55,0.93,0.21,877,0.4,253,2,0.0000,0.0000 +2012,3,20,10,30,-0.2,0.93,0.06,0.62,0,0,0,0,0,-8.5,0,0,0,0,0.367,53.370000000000005,118.86,0.92,0.21,877,0.4,255,2,0.0000,0.0000 +2012,3,20,11,30,-0.8,0.9,0.053,0.62,0,0,0,0,1,-8.8,0,0,0,0,0.371,54.46,107.19,0.91,0.21,877,0.4,262,2,0.0000,0.0000 +2012,3,20,12,30,-0.30000000000000004,0.87,0.046,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.374,51.1,95.05,0.91,0.21,877,0.4,272,2.3000000000000003,0.0000,0.0000 +2012,3,20,13,30,2.2,0.84,0.043000000000000003,0.62,34,538,102,0,0,-9.600000000000001,34,538,0,102,0.376,41.52,82.69,0.91,0.21,877,0.4,286,2.4000000000000004,0.0000,0.0000 +2012,3,20,14,30,6.300000000000001,0.84,0.042,0.62,57,822,330,0,0,-9.8,57,822,0,330,0.379,30.46,70.67,0.91,0.21,878,0.4,241,1.3,5.4298,4.1995 +2012,3,20,15,30,10,0.85,0.042,0.62,71,937,552,0,0,-11.700000000000001,71,937,0,552,0.38,20.36,59.120000000000005,0.91,0.21,878,0.4,174,1.1,9.3474,7.3029 +2012,3,20,16,30,11.9,0.86,0.042,0.62,79,987,731,0,1,-11.700000000000001,79,987,0,731,0.38,17.96,48.63,0.91,0.21,878,0.5,166,1.3,30.4406,23.8779 +2012,3,20,17,30,13,0.88,0.042,0.62,85,1017,862,0,7,-11.100000000000001,308,489,0,682,0.379,17.53,40.22,0.92,0.21,878,0.5,99,0.8,18.0038,14.1474 +2012,3,20,18,30,13.9,0.93,0.049,0.62,92,1024,926,0,7,-10.9,358,447,0,723,0.379,16.88,35.47,0.93,0.21,878,0.5,25,1.2000000000000002,12.0664,9.4883 +2012,3,20,19,30,13.9,0.9400000000000001,0.065,0.62,101,1001,912,0,6,-10.8,433,176,0,576,0.38,16.98,35.910000000000004,0.9500000000000001,0.21,878,0.6000000000000001,25,2.5,24.5332,19.2905 +2012,3,20,20,30,13.100000000000001,0.9400000000000001,0.081,0.62,106,968,833,0,6,-10.3,406,163,0,529,0.38,18.54,41.37,0.96,0.21,878,0.6000000000000001,30,3.5,23.0528,18.1116 +2012,3,20,21,30,12.100000000000001,0.9400000000000001,0.091,0.62,103,912,687,0,6,-9.200000000000001,332,89,0,389,0.379,21.59,50.2,0.96,0.21,879,0.7000000000000001,36,4.3,27.1645,21.2992 +2012,3,20,22,30,11,0.9500000000000001,0.101,0.62,94,819,492,0,6,-7.6000000000000005,225,25,0,237,0.378,26.46,60.910000000000004,0.96,0.21,879,0.8,40,4.9,17.4697,13.6356 +2012,3,20,23,30,9.8,0.96,0.10400000000000001,0.62,74,657,271,0,6,-5.5,123,13,0,126,0.377,33.55,72.56,0.96,0.21,880,0.9,41,5.1000000000000005,13.5781,10.4744 +2012,3,21,0,30,8.5,0.98,0.1,0.62,34,301,62,0,4,-3.5,51,13,0,52,0.377,42.7,84.59,0.96,0.21,881,0.9,39,4.9,0.0000,0.0000 +2012,3,21,1,30,7.4,0.99,0.094,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.377,52.94,96.96000000000001,0.9500000000000001,0.21,882,1,35,4.3,0.0000,0.0000 +2012,3,21,2,30,6.300000000000001,0.99,0.089,0.62,0,0,0,0,6,0,0,0,0,0,0.378,64.19,109.02,0.9500000000000001,0.21,883,1,32,3.4000000000000004,0.0000,0.0000 +2012,3,21,3,30,5.2,0.99,0.084,0.62,0,0,0,0,9,1.1,0,0,0,0,0.379,74.77,120.53,0.9500000000000001,0.21,883,1,29,2.5,0.0000,0.0000 +2012,3,21,4,30,4.5,0.97,0.083,0.62,0,0,0,0,6,1.7000000000000002,0,0,0,0,0.379,81.93,130.94,0.9500000000000001,0.21,883,1.1,24,2.3000000000000003,0.0000,0.0000 +2012,3,21,5,30,4.4,0.96,0.091,0.62,0,0,0,0,6,2,0,0,0,0,0.38,84.11,139.26,0.9500000000000001,0.21,883,1.1,17,2.3000000000000003,0.0000,0.0000 +2012,3,21,6,30,4.2,0.9500000000000001,0.091,0.62,0,0,0,0,7,2,0,0,0,0,0.38,85.83,143.91,0.9500000000000001,0.21,883,1.1,7,2.3000000000000003,0.0000,0.0000 +2012,3,21,7,30,4.2,0.9400000000000001,0.088,0.62,0,0,0,0,4,2,0,0,0,0,0.378,85.67,143.43,0.9500000000000001,0.21,883,1.1,169,2.7,0.0000,0.0000 +2012,3,21,8,30,4.3,0.92,0.088,0.62,0,0,0,0,4,1.8,0,0,0,0,0.377,83.53,138,0.9500000000000001,0.21,882,1.1,333,3.8000000000000003,0.0000,0.0000 +2012,3,21,9,30,4.3,0.9,0.09,0.62,0,0,0,0,7,1.5,0,0,0,0,0.377,82.15,129.21,0.9500000000000001,0.21,882,1.1,327,4.9,0.0000,0.0000 +2012,3,21,10,30,4,0.88,0.091,0.62,0,0,0,0,4,1.4000000000000001,0,0,0,0,0.376,82.93,118.54,0.9400000000000001,0.21,882,1,327,5.5,0.0000,0.0000 +2012,3,21,11,30,3.8000000000000003,0.87,0.09,0.62,0,0,0,0,4,1.1,0,0,0,0,0.374,82.54,106.89,0.9400000000000001,0.21,882,1,332,5.5,0.0000,0.0000 +2012,3,21,12,30,4,0.89,0.092,0.62,0,0,0,0,4,0.9,0,0,0,0,0.372,80.24,94.76,0.9500000000000001,0.21,882,1.1,339,5.4,0.0000,0.0000 +2012,3,21,13,30,5,0.92,0.10300000000000001,0.62,44,381,94,7,4,1,24,0,7,24,0.371,75.61,82.41,0.9500000000000001,0.21,883,1.1,347,5.6000000000000005,0.0000,0.0000 +2012,3,21,14,30,5.9,0.93,0.111,0.62,80,672,306,0,4,1.4000000000000001,12,0,0,12,0.37,72.82000000000001,70.37,0.9500000000000001,0.21,883,1.2000000000000002,353,6.2,16.7920,12.9924 +2012,3,21,15,30,6.1000000000000005,0.93,0.115,0.62,103,804,519,0,4,1.7000000000000002,44,0,0,44,0.372,73.23,58.800000000000004,0.96,0.21,883,1.2000000000000002,353,6.5,30.5866,23.9006 +2012,3,21,16,30,6.300000000000001,0.93,0.10200000000000001,0.62,109,889,701,0,7,1.8,69,0,0,69,0.376,73.04,48.28,0.9500000000000001,0.21,882,1.2000000000000002,349,6.7,42.4366,33.2907 +2012,3,21,17,30,6.7,0.93,0.093,0.62,112,934,830,0,6,1.8,185,1,0,186,0.378,70.85000000000001,39.83,0.9500000000000001,0.21,882,1.2000000000000002,350,6.800000000000001,40.5601,31.8741 +2012,3,21,18,30,6.9,0.96,0.095,0.62,117,948,893,0,7,1.7000000000000002,313,10,0,321,0.379,69.36,35.06,0.9500000000000001,0.21,882,1.2000000000000002,355,6.6000000000000005,43.4365,34.1577 +2012,3,21,19,30,6.9,0.97,0.08700000000000001,0.62,111,954,888,0,6,1.6,185,2,0,187,0.379,68.97,35.54,0.9400000000000001,0.21,881,1.2000000000000002,181,6.1000000000000005,34.5756,27.1881 +2012,3,21,20,30,6.800000000000001,0.98,0.083,0.62,105,940,814,0,7,1.6,290,12,0,299,0.378,69.65,41.06,0.9400000000000001,0.21,881,1.2000000000000002,4,5.5,31.3731,24.6498 +2012,3,21,21,30,6.800000000000001,1.01,0.089,0.62,101,894,676,0,7,1.7000000000000002,302,124,0,382,0.376,70.07000000000001,49.96,0.9500000000000001,0.21,881,1.2000000000000002,5,4.7,22.4561,17.6088 +2012,3,21,22,30,6.7,1.03,0.092,0.62,90,816,489,0,6,1.8,149,5,0,151,0.374,71.05,60.7,0.9500000000000001,0.21,882,1.2000000000000002,181,3.9000000000000004,12.9950,10.1442 +2012,3,21,23,30,6.2,1.06,0.083,0.62,67,687,274,0,7,2,105,9,0,108,0.373,74.25,72.38,0.9400000000000001,0.21,882,1.1,352,2.8000000000000003,6.3004,4.8616 +2012,3,22,0,30,5.1000000000000005,1.08,0.076,0.62,31,350,65,0,7,2.6,29,1,0,29,0.37,83.97,84.43,0.9400000000000001,0.21,882,1.2000000000000002,332,1.6,0.0000,0.0000 +2012,3,22,1,30,4.3,1.07,0.07100000000000001,0.62,0,0,0,0,7,2.8000000000000003,0,0,0,0,0.367,89.84,96.79,0.9400000000000001,0.21,882,1.3,308,1.2000000000000002,0.0000,0.0000 +2012,3,22,2,30,4.2,1.07,0.067,0.62,0,0,0,0,4,3,0,0,0,0,0.363,91.66,108.83,0.93,0.21,882,1.4000000000000001,288,1.7000000000000002,0.0000,0.0000 +2012,3,22,3,30,4.7,1.05,0.083,0.62,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.358,90.46000000000001,120.32000000000001,0.9400000000000001,0.21,881,1.5,278,2.6,0.0000,0.0000 +2012,3,22,4,30,5.2,1.04,0.097,0.62,0,0,0,0,7,3.6,0,0,0,0,0.354,89.22,130.68,0.9400000000000001,0.21,881,1.6,276,3.6,0.0000,0.0000 +2012,3,22,5,30,5.7,1.05,0.098,0.62,0,0,0,0,7,3.7,0,0,0,0,0.34900000000000003,86.87,138.94,0.9400000000000001,0.21,880,1.7000000000000002,280,4.2,0.0000,0.0000 +2012,3,22,6,30,6.2,1.08,0.1,0.62,0,0,0,0,6,3.8000000000000003,0,0,0,0,0.34500000000000003,84.78,143.53,0.9400000000000001,0.21,879,1.7000000000000002,288,4.6000000000000005,0.0000,0.0000 +2012,3,22,7,30,6.4,1.1,0.094,0.62,0,0,0,0,7,3.9000000000000004,0,0,0,0,0.34,84.23,143.02,0.9400000000000001,0.21,878,1.7000000000000002,294,5,0.0000,0.0000 +2012,3,22,8,30,6.4,1.12,0.08700000000000001,0.62,0,0,0,0,4,3.8000000000000003,0,0,0,0,0.335,83.72,137.62,0.9400000000000001,0.21,878,1.7000000000000002,297,5.6000000000000005,0.0000,0.0000 +2012,3,22,9,30,6.300000000000001,1.1400000000000001,0.088,0.62,0,0,0,0,6,3.5,0,0,0,0,0.331,82.31,128.86,0.93,0.21,877,1.7000000000000002,298,6.4,0.0000,0.0000 +2012,3,22,10,30,6.300000000000001,1.1400000000000001,0.083,0.62,0,0,0,0,8,2.9000000000000004,0,0,0,0,0.327,78.63,118.22,0.93,0.21,877,1.7000000000000002,301,6.800000000000001,0.0000,0.0000 +2012,3,22,11,30,6.300000000000001,1.1400000000000001,0.073,0.62,0,0,0,0,4,2,0,0,0,0,0.325,73.98,106.59,0.92,0.21,878,1.7000000000000002,308,6.800000000000001,0.0000,0.0000 +2012,3,22,12,30,6.5,1.1300000000000001,0.068,0.62,0,0,0,0,4,1.7000000000000002,0,0,0,0,0.322,71.34,94.48,0.92,0.21,879,1.6,317,6.9,0.0000,0.0000 +2012,3,22,13,30,6.800000000000001,1.12,0.073,0.62,39,449,100,7,4,2.6,40,0,7,40,0.32,74.59,82.12,0.93,0.21,880,1.5,328,7,0.0000,0.0000 +2012,3,22,14,30,7.1000000000000005,1.11,0.078,0.62,69,728,317,0,4,3.6,148,7,0,151,0.319,78.47,70.07000000000001,0.9400000000000001,0.21,882,1.3,341,6.9,0.6123,0.4739 +2012,3,22,15,30,7.7,1.09,0.08,0.62,87,856,535,0,4,3.6,88,0,0,88,0.318,75.25,58.480000000000004,0.9400000000000001,0.21,883,1.1,353,6.6000000000000005,2.4424,1.9088 +2012,3,22,16,30,8.9,1.07,0.066,0.62,91,938,720,0,4,2.6,231,1,0,232,0.316,64.86,47.93,0.93,0.21,884,1,357,6.2,4.0104,3.1464 +2012,3,22,17,30,10.5,1.06,0.054,0.62,91,987,853,7,4,1.7000000000000002,358,4,7,361,0.315,54.300000000000004,39.45,0.92,0.21,885,0.9,357,5.7,11.0720,8.7014 +2012,3,22,18,30,11.9,1.06,0.045,0.62,88,1009,918,7,2,1.1,479,303,7,728,0.314,47.54,34.660000000000004,0.91,0.21,885,0.9,353,5.1000000000000005,19.3001,15.1780 +2012,3,22,19,30,13.100000000000001,1.05,0.04,0.62,85,1017,916,7,3,0.6000000000000001,499,203,7,665,0.313,42.39,35.17,0.91,0.21,885,0.8,347,4.7,11.2331,8.8334 +2012,3,22,20,30,14,1.04,0.036000000000000004,0.62,80,1005,842,0,0,-0.1,80,1005,0,842,0.311,38.04,40.76,0.91,0.21,884,0.8,340,4.4,17.7462,13.9439 +2012,3,22,21,30,14.3,1.06,0.042,0.62,78,971,706,0,0,-1,78,971,0,706,0.308,35.04,49.72,0.91,0.21,884,0.7000000000000001,334,4.1000000000000005,22.0715,17.3084 +2012,3,22,22,30,14,1.08,0.037,0.62,66,909,514,0,4,-1.7000000000000002,295,157,0,372,0.303,33.76,60.5,0.9,0.21,884,0.8,331,3.6,8.2901,6.4723 +2012,3,22,23,30,12.200000000000001,1.11,0.035,0.62,52,783,291,0,4,-2,73,0,0,73,0.299,37.11,72.2,0.9,0.21,885,0.9,336,2.2,5.4094,4.1753 +2012,3,23,0,30,10.200000000000001,1.1500000000000001,0.033,0.62,27,470,74,0,8,0.7000000000000001,39,4,0,39,0.296,51.77,84.26,0.9,0.21,885,1,179,0.9,0.0000,0.0000 +2012,3,23,1,30,9.4,1.19,0.032,0.62,0,0,0,0,4,-0.6000000000000001,0,0,0,0,0.294,49.730000000000004,96.62,0.9,0.21,886,1.2000000000000002,52,0.7000000000000001,0.0000,0.0000 +2012,3,23,2,30,8.8,1.23,0.032,0.62,0,0,0,0,8,-0.6000000000000001,0,0,0,0,0.292,51.85,108.65,0.9,0.21,886,1.3,112,0.8,0.0000,0.0000 +2012,3,23,3,30,8,1.25,0.035,0.62,0,0,0,0,8,-0.6000000000000001,0,0,0,0,0.291,54.51,120.11,0.9,0.21,886,1.3,157,0.9,0.0000,0.0000 +2012,3,23,4,30,7.1000000000000005,1.22,0.037,0.62,0,0,0,0,7,-1,0,0,0,0,0.29,56.550000000000004,130.43,0.9,0.21,887,1.3,191,1,0.0000,0.0000 +2012,3,23,5,30,6.1000000000000005,1.18,0.039,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.29,59.04,138.62,0.9,0.21,887,1.2000000000000002,214,1.2000000000000002,0.0000,0.0000 +2012,3,23,6,30,5,1.1400000000000001,0.039,0.62,0,0,0,0,0,-1.6,0,0,0,0,0.29,62.56,143.15,0.9,0.21,887,1.2000000000000002,228,1.3,0.0000,0.0000 +2012,3,23,7,30,4.3,1.11,0.039,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.289,64.93,142.62,0.89,0.21,887,1.1,236,1.4000000000000001,0.0000,0.0000 +2012,3,23,8,30,3.9000000000000004,1.1,0.038,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.28800000000000003,66.1,137.24,0.89,0.21,887,1.1,242,1.7000000000000002,0.0000,0.0000 +2012,3,23,9,30,3.6,1.1,0.038,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.28800000000000003,67.35,128.52,0.89,0.21,887,1.1,247,1.9000000000000001,0.0000,0.0000 +2012,3,23,10,30,3.3000000000000003,1.1,0.037,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.28600000000000003,69.35000000000001,117.9,0.89,0.21,888,1.1,250,2,0.0000,0.0000 +2012,3,23,11,30,3,1.11,0.037,0.62,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.28500000000000003,71.45,106.29,0.89,0.21,888,1,252,2,0.0000,0.0000 +2012,3,23,12,30,4,1.12,0.038,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.28300000000000003,67.4,94.19,0.9,0.21,888,1,254,2.6,0.0000,0.0000 +2012,3,23,13,30,6.7,1.12,0.039,0.62,35,550,113,0,0,-0.9,35,550,0,113,0.28200000000000003,58.32,81.83,0.9,0.21,889,1,255,3.3000000000000003,0.0000,0.0000 +2012,3,23,14,30,10.700000000000001,1.12,0.039,0.62,57,810,337,0,0,0,57,810,0,337,0.28200000000000003,47.47,69.77,0.9,0.21,889,0.9,246,3.2,7.7254,5.9820 +2012,3,23,15,30,15.100000000000001,1.12,0.039,0.62,69,918,554,0,0,1.4000000000000001,69,918,0,554,0.28200000000000003,39.59,58.160000000000004,0.9,0.21,889,0.9,235,3.2,4.8935,3.8250 +2012,3,23,16,30,18.1,1.1,0.039,0.62,77,974,734,0,0,2.1,77,974,0,734,0.28200000000000003,34.36,47.59,0.9,0.21,889,0.9,232,3.1,13.5003,10.5926 +2012,3,23,17,30,20.1,1.09,0.038,0.62,82,1009,865,0,0,2,82,1009,0,865,0.28200000000000003,30.01,39.06,0.9,0.21,888,0.8,235,2.7,21.5080,16.9041 +2012,3,23,18,30,21.700000000000003,1.11,0.043000000000000003,0.62,87,1017,927,0,0,1.6,87,1017,0,927,0.281,26.39,34.26,0.9,0.21,888,0.8,240,2.3000000000000003,43.8036,34.4498 +2012,3,23,19,30,22.900000000000002,1.12,0.042,0.62,86,1016,921,0,0,1,86,1016,0,921,0.28,23.59,34.800000000000004,0.9,0.21,887,0.8,245,2,39.9748,31.4366 +2012,3,23,20,30,23.6,1.1300000000000001,0.042,0.62,83,1001,845,0,0,0.4,83,1001,0,845,0.279,21.7,40.46,0.9,0.21,886,0.8,245,1.7000000000000002,50.0109,39.2976 +2012,3,23,21,30,23.700000000000003,1.22,0.037,0.62,75,974,707,0,0,-0.1,75,974,0,707,0.279,20.77,49.480000000000004,0.9,0.21,886,0.8,236,1.3,40.8276,32.0190 +2012,3,23,22,30,23.200000000000003,1.22,0.036000000000000004,0.62,66,919,521,0,0,-0.5,66,919,0,521,0.279,20.69,60.300000000000004,0.9,0.21,886,0.7000000000000001,209,1,20.4480,15.9660 +2012,3,23,23,30,20.400000000000002,1.21,0.036000000000000004,0.62,53,797,298,0,0,0.9,53,797,0,298,0.279,27.23,72.03,0.9,0.21,886,0.7000000000000001,167,1,3.6625,2.8277 +2012,3,24,0,30,16.2,1.2,0.036000000000000004,0.62,28,487,78,0,0,4.6000000000000005,28,487,0,78,0.279,46.08,84.10000000000001,0.9,0.21,886,0.7000000000000001,141,1.3,0.0000,0.0000 +2012,3,24,1,30,13.600000000000001,1.19,0.036000000000000004,0.62,0,0,0,0,0,2.2,0,0,0,0,0.28,45.95,96.46000000000001,0.9,0.21,887,0.7000000000000001,144,1.7000000000000002,0.0000,0.0000 +2012,3,24,2,30,12.5,1.18,0.036000000000000004,0.62,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.281,47.61,108.47,0.89,0.21,887,0.7000000000000001,151,2.1,0.0000,0.0000 +2012,3,24,3,30,11.600000000000001,1.17,0.036000000000000004,0.62,0,0,0,0,0,1.5,0,0,0,0,0.281,49.99,119.9,0.89,0.21,887,0.7000000000000001,160,2.4000000000000004,0.0000,0.0000 +2012,3,24,4,30,10.600000000000001,1.18,0.036000000000000004,0.62,0,0,0,0,0,1.6,0,0,0,0,0.281,53.550000000000004,130.17000000000002,0.89,0.21,888,0.7000000000000001,169,2.5,0.0000,0.0000 +2012,3,24,5,30,9.5,1.18,0.036000000000000004,0.62,0,0,0,0,0,1.5,0,0,0,0,0.281,57.39,138.3,0.89,0.21,888,0.7000000000000001,178,2.4000000000000004,0.0000,0.0000 +2012,3,24,6,30,8.5,1.19,0.036000000000000004,0.62,0,0,0,0,0,1.3,0,0,0,0,0.281,60.64,142.77,0.89,0.21,888,0.7000000000000001,187,2.3000000000000003,0.0000,0.0000 +2012,3,24,7,30,7.5,1.2,0.037,0.62,0,0,0,0,0,1.1,0,0,0,0,0.281,63.89,142.22,0.89,0.21,888,0.7000000000000001,196,2.1,0.0000,0.0000 +2012,3,24,8,30,6.6000000000000005,1.2,0.037,0.62,0,0,0,0,0,0.9,0,0,0,0,0.28,66.86,136.85,0.89,0.21,888,0.6000000000000001,206,2,0.0000,0.0000 +2012,3,24,9,30,5.9,1.2,0.037,0.62,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.279,69.51,128.17000000000002,0.89,0.21,888,0.6000000000000001,219,1.9000000000000001,0.0000,0.0000 +2012,3,24,10,30,5.300000000000001,1.21,0.037,0.62,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.279,72.36,117.59,0.89,0.21,888,0.6000000000000001,233,1.9000000000000001,0.0000,0.0000 +2012,3,24,11,30,4.800000000000001,1.22,0.037,0.62,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.278,74.2,105.99000000000001,0.89,0.21,888,0.6000000000000001,245,1.9000000000000001,0.0000,0.0000 +2012,3,24,12,30,6.1000000000000005,1.24,0.038,0.62,0,0,0,0,0,0.2,0,0,0,0,0.277,66.11,93.9,0.88,0.21,888,0.6000000000000001,253,2.5,0.0000,0.0000 +2012,3,24,13,30,9.5,1.26,0.038,0.62,35,588,122,0,0,0.1,35,588,0,122,0.276,51.75,81.55,0.88,0.21,888,0.6000000000000001,256,3.1,0.0000,0.0000 +2012,3,24,14,30,13.8,1.29,0.037,0.62,56,837,349,0,0,-0.30000000000000004,56,837,0,349,0.275,37.97,69.48,0.88,0.21,888,0.6000000000000001,250,2.8000000000000003,17.2878,13.3913 +2012,3,24,15,30,18.7,1.31,0.036000000000000004,0.62,67,942,569,0,0,0.5,67,942,0,569,0.275,29.37,57.84,0.87,0.21,888,0.6000000000000001,233,2.3000000000000003,30.8599,24.1259 +2012,3,24,16,30,23.700000000000003,1.34,0.036000000000000004,0.62,75,996,751,0,0,-0.1,75,996,0,751,0.275,20.740000000000002,47.24,0.87,0.21,888,0.6000000000000001,214,2.6,42.7603,33.5535 +2012,3,24,17,30,27.200000000000003,1.37,0.036000000000000004,0.62,80,1024,879,0,0,-2.3000000000000003,80,1024,0,879,0.275,14.36,38.68,0.88,0.21,888,0.6000000000000001,203,3,51.5814,40.5426 +2012,3,24,18,30,28.900000000000002,1.2,0.048,0.62,90,1024,940,0,0,-3.8000000000000003,90,1024,0,940,0.274,11.61,33.86,0.89,0.21,887,0.6000000000000001,196,3.4000000000000004,55.8182,43.9009 +2012,3,24,19,30,29.6,1.2,0.051000000000000004,0.62,91,1020,933,0,0,-4.2,91,1020,0,933,0.274,10.790000000000001,34.43,0.89,0.21,887,0.6000000000000001,194,3.7,55.4020,43.5707 +2012,3,24,20,30,29.700000000000003,1.2,0.053,0.62,89,1003,855,0,0,-4.6000000000000005,89,1003,0,855,0.273,10.46,40.160000000000004,0.89,0.21,886,0.6000000000000001,193,3.9000000000000004,50.2254,39.4680 +2012,3,24,21,30,29.400000000000002,1.22,0.058,0.62,85,957,710,0,0,-4.800000000000001,85,957,0,710,0.272,10.48,49.24,0.88,0.21,886,0.7000000000000001,190,3.9000000000000004,40.9208,32.0942 +2012,3,24,22,30,27.8,1.26,0.064,0.62,76,884,517,0,0,-4.7,76,884,0,517,0.271,11.57,60.11,0.87,0.21,885,0.7000000000000001,183,3.1,28.6725,22.3904 +2012,3,24,23,30,23.700000000000003,1.32,0.07200000000000001,0.62,62,741,293,0,0,0.9,62,741,0,293,0.27,22.36,71.86,0.86,0.21,886,0.7000000000000001,169,2.2,14.9748,11.5643 +2012,3,25,0,30,19.3,1.37,0.08,0.62,32,401,74,0,0,2.8000000000000003,32,401,0,74,0.27,33.31,83.94,0.85,0.21,886,0.7000000000000001,159,2.4000000000000004,0.0000,0.0000 +2012,3,25,1,30,17.400000000000002,1.4000000000000001,0.085,0.62,0,0,0,0,0,0.9,0,0,0,0,0.27,32.79,96.29,0.85,0.21,886,0.7000000000000001,157,3.2,0.0000,0.0000 +2012,3,25,2,30,16.5,1.4000000000000001,0.08600000000000001,0.62,0,0,0,0,0,1,0,0,0,0,0.27,34.96,108.28,0.86,0.21,887,0.7000000000000001,158,4,0.0000,0.0000 +2012,3,25,3,30,15.200000000000001,1.36,0.083,0.62,0,0,0,0,0,1.6,0,0,0,0,0.27,39.81,119.68,0.86,0.21,887,0.7000000000000001,161,4.5,0.0000,0.0000 +2012,3,25,4,30,13.9,1.29,0.077,0.62,0,0,0,0,0,2.5,0,0,0,0,0.27,45.96,129.91,0.88,0.21,888,0.7000000000000001,164,4.6000000000000005,0.0000,0.0000 +2012,3,25,5,30,12.600000000000001,1.21,0.07100000000000001,0.62,0,0,0,0,0,3.2,0,0,0,0,0.27,52.61,137.98,0.89,0.21,888,0.8,170,4.3,0.0000,0.0000 +2012,3,25,6,30,11.5,1.1400000000000001,0.067,0.62,0,0,0,0,0,3.7,0,0,0,0,0.27,58.77,142.39000000000001,0.9,0.21,888,0.8,177,3.9000000000000004,0.0000,0.0000 +2012,3,25,7,30,10.4,1.1,0.066,0.62,0,0,0,0,0,4,0,0,0,0,0.27,64.53,141.82,0.91,0.21,888,0.9,187,3.3000000000000003,0.0000,0.0000 +2012,3,25,8,30,9.200000000000001,1.09,0.066,0.62,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.271,69.64,136.47,0.91,0.21,888,0.9,199,2.5,0.0000,0.0000 +2012,3,25,9,30,8.3,1.09,0.067,0.62,0,0,0,0,0,3.5,0,0,0,0,0.271,71.75,127.82000000000001,0.91,0.21,888,0.9,210,2,0.0000,0.0000 +2012,3,25,10,30,7.800000000000001,1.09,0.066,0.62,0,0,0,0,0,2.5,0,0,0,0,0.272,69.23,117.27,0.91,0.21,888,0.9,218,1.7000000000000002,0.0000,0.0000 +2012,3,25,11,30,7.4,1.1,0.063,0.62,0,0,0,0,1,1.2000000000000002,0,0,0,0,0.273,64.78,105.69,0.91,0.21,888,0.8,225,1.7000000000000002,0.0000,0.0000 +2012,3,25,12,30,8.8,1.12,0.061,0.62,0,0,0,0,0,0,0,0,0,0,0.273,54.02,93.61,0.91,0.21,889,0.8,231,2,0.0000,0.0000 +2012,3,25,13,30,12.200000000000001,1.1300000000000001,0.062,0.62,41,527,121,0,1,-0.30000000000000004,41,527,0,121,0.274,42.19,81.26,0.91,0.21,889,0.8,233,2.9000000000000004,0.0000,0.0000 +2012,3,25,14,30,16.3,1.1400000000000001,0.063,0.62,66,784,345,0,0,-0.8,66,784,0,345,0.274,31.17,69.18,0.91,0.21,889,0.8,225,3.2,17.9494,13.9088 +2012,3,25,15,30,21,1.1400000000000001,0.062,0.62,80,898,562,0,0,0.30000000000000004,80,898,0,562,0.274,25.16,57.53,0.91,0.21,889,0.8,213,3.7,31.7497,24.8253 +2012,3,25,16,30,25.5,1.1400000000000001,0.063,0.62,90,951,740,0,1,0.7000000000000001,90,951,0,740,0.274,19.79,46.89,0.92,0.21,889,0.9,206,4.800000000000001,43.8007,34.3728 +2012,3,25,17,30,28.400000000000002,1.12,0.065,0.62,97,980,866,0,0,1,97,980,0,866,0.273,16.98,38.300000000000004,0.92,0.21,888,0.9,200,5.5,52.4607,41.2361 +2012,3,25,18,30,29.8,1.07,0.058,0.62,97,995,927,0,0,1.3,97,995,0,927,0.272,16.06,33.46,0.93,0.21,888,1,195,5.800000000000001,56.6417,44.5507 +2012,3,25,19,30,30.400000000000002,1.06,0.061,0.62,98,987,916,0,0,1.7000000000000002,98,987,0,916,0.271,15.950000000000001,34.07,0.93,0.21,887,1.1,190,6.2,56.1621,44.1705 +2012,3,25,20,30,30.3,1.08,0.065,0.62,97,963,836,0,0,1.9000000000000001,97,963,0,836,0.27,16.29,39.86,0.93,0.21,886,1.2000000000000002,186,6.300000000000001,50.8560,39.9656 +2012,3,25,21,30,29.8,1.09,0.07100000000000001,0.62,93,921,697,0,0,2.1,93,921,0,697,0.271,16.95,49,0.9400000000000001,0.21,886,1.2000000000000002,181,6.4,41.1296,32.2601 +2012,3,25,22,30,28.5,1.11,0.076,0.62,84,842,506,0,0,2.3000000000000003,84,842,0,506,0.273,18.5,59.910000000000004,0.9400000000000001,0.21,886,1.3,175,6.1000000000000005,28.4844,22.2459 +2012,3,25,23,30,25.900000000000002,1.11,0.078,0.62,67,703,288,0,0,2.8000000000000003,67,703,0,288,0.274,22.36,71.68,0.9400000000000001,0.21,886,1.3,168,5.2,14.7468,11.3911 +2012,3,26,0,30,22.400000000000002,1.11,0.079,0.62,34,375,75,0,0,3.8000000000000003,34,375,0,75,0.275,29.73,83.78,0.93,0.21,886,1.3,160,4.4,0.0000,0.0000 +2012,3,26,1,30,20,1.11,0.08,0.62,0,0,0,0,0,4.3,0,0,0,0,0.275,35.69,96.12,0.93,0.21,887,1.3,156,4.6000000000000005,0.0000,0.0000 +2012,3,26,2,30,18.6,1.12,0.081,0.62,0,0,0,0,0,4.4,0,0,0,0,0.275,39.2,108.10000000000001,0.93,0.21,887,1.2000000000000002,157,4.9,0.0000,0.0000 +2012,3,26,3,30,17.2,1.12,0.082,0.62,0,0,0,0,0,4.4,0,0,0,0,0.276,42.67,119.47,0.93,0.21,888,1.2000000000000002,161,5,0.0000,0.0000 +2012,3,26,4,30,16,1.1400000000000001,0.084,0.62,0,0,0,0,0,4.2,0,0,0,0,0.276,45.46,129.65,0.93,0.21,888,1.2000000000000002,166,5,0.0000,0.0000 +2012,3,26,5,30,15.100000000000001,1.16,0.08700000000000001,0.62,0,0,0,0,0,4.2,0,0,0,0,0.277,48.02,137.66,0.93,0.21,888,1.2000000000000002,171,4.9,0.0000,0.0000 +2012,3,26,6,30,14.200000000000001,1.18,0.092,0.62,0,0,0,0,0,4.4,0,0,0,0,0.279,51.82,142.01,0.93,0.21,888,1.3,176,4.7,0.0000,0.0000 +2012,3,26,7,30,13.5,1.19,0.098,0.62,0,0,0,0,7,4.9,0,0,0,0,0.279,56.1,141.42000000000002,0.9400000000000001,0.21,887,1.4000000000000001,182,4.5,0.0000,0.0000 +2012,3,26,8,30,12.8,1.19,0.108,0.62,0,0,0,0,7,5.4,0,0,0,0,0.28,60.75,136.09,0.9400000000000001,0.21,887,1.4000000000000001,189,4.2,0.0000,0.0000 +2012,3,26,9,30,12.3,1.17,0.117,0.62,0,0,0,0,0,5.7,0,0,0,0,0.281,64.25,127.48,0.9400000000000001,0.21,887,1.4000000000000001,195,3.8000000000000003,0.0000,0.0000 +2012,3,26,10,30,11.9,1.16,0.121,0.62,0,0,0,0,0,5.9,0,0,0,0,0.28300000000000003,66.83,116.95,0.9500000000000001,0.21,887,1.4000000000000001,200,3.6,0.0000,0.0000 +2012,3,26,11,30,11.700000000000001,1.16,0.124,0.62,0,0,0,0,7,6.1000000000000005,0,0,0,0,0.28400000000000003,68.36,105.39,0.9500000000000001,0.21,888,1.4000000000000001,200,3.6,0.0000,0.0000 +2012,3,26,12,30,12.3,1.16,0.122,0.62,0,0,0,0,7,6.2,0,0,0,0,0.28500000000000003,66.28,93.32000000000001,0.9500000000000001,0.21,888,1.4000000000000001,197,4.1000000000000005,0.0000,0.0000 +2012,3,26,13,30,14.3,1.17,0.11800000000000001,0.62,51,416,116,7,7,6.4,83,32,7,88,0.28600000000000003,58.97,80.98,0.9500000000000001,0.21,888,1.4000000000000001,192,5.1000000000000005,0.0000,0.0000 +2012,3,26,14,30,17.5,1.18,0.113,0.62,83,694,333,0,4,6.7,214,104,0,251,0.28600000000000003,49.160000000000004,68.88,0.9500000000000001,0.21,888,1.4000000000000001,190,6.300000000000001,17.7905,13.7905 +2012,3,26,15,30,20.6,1.18,0.111,0.62,101,821,546,0,8,7,202,476,0,459,0.28600000000000003,41.45,57.21,0.9500000000000001,0.21,887,1.4000000000000001,191,7.1000000000000005,31.4102,24.5635 +2012,3,26,16,30,23.1,1.18,0.116,0.62,116,879,720,0,8,7.300000000000001,262,484,0,595,0.28500000000000003,36.27,46.550000000000004,0.9500000000000001,0.21,887,1.5,191,7.2,43.2077,33.9103 +2012,3,26,17,30,25.200000000000003,1.19,0.123,0.62,127,906,841,0,8,7.300000000000001,255,618,0,743,0.28400000000000003,31.93,37.92,0.9500000000000001,0.21,886,1.6,190,7.1000000000000005,51.7279,40.6623 +2012,3,26,18,30,26.700000000000003,1.21,0.126,0.62,131,916,899,0,7,7.1000000000000005,297,524,0,736,0.28300000000000003,28.810000000000002,33.06,0.9500000000000001,0.21,885,1.7000000000000002,188,7,55.8978,43.9676 +2012,3,26,19,30,27.200000000000003,1.19,0.136,0.62,136,903,887,0,8,6.800000000000001,269,608,0,775,0.28200000000000003,27.43,33.7,0.96,0.21,884,1.8,187,7,55.1748,43.3958 +2012,3,26,20,30,26.700000000000003,1.16,0.149,0.62,137,869,808,0,7,6.7,370,360,0,648,0.28200000000000003,28.03,39.57,0.96,0.21,884,1.9000000000000001,185,6.9,49.7609,39.1068 +2012,3,26,21,30,25.700000000000003,1.1300000000000001,0.153,0.62,129,821,671,0,7,6.800000000000001,330,348,0,559,0.28300000000000003,30.01,48.77,0.96,0.21,883,1.9000000000000001,182,6.9,40.4107,31.6983 +2012,3,26,22,30,24.700000000000003,1.1,0.148,0.62,112,744,487,0,8,7.2,189,558,0,470,0.28400000000000003,32.660000000000004,59.72,0.96,0.21,883,1.9000000000000001,179,6.7,27.9111,21.8006 +2012,3,26,23,30,23.3,1.08,0.151,0.62,88,590,275,0,1,7.800000000000001,88,590,0,275,0.28500000000000003,37,71.51,0.96,0.21,883,1.8,175,6.1000000000000005,14.5194,11.2184 +2012,3,27,0,30,21.400000000000002,1.06,0.153,0.62,42,256,71,0,8,8.6,24,0,0,24,0.28700000000000003,43.9,83.62,0.9500000000000001,0.21,883,1.7000000000000002,171,5.800000000000001,0.0000,0.0000 +2012,3,27,1,30,19.900000000000002,1.03,0.147,0.62,0,0,0,0,0,9.200000000000001,0,0,0,0,0.29,50.22,95.95,0.9500000000000001,0.21,883,1.5,169,6.1000000000000005,0.0000,0.0000 +2012,3,27,2,30,18.900000000000002,1.01,0.137,0.62,0,0,0,0,0,9.700000000000001,0,0,0,0,0.293,55.230000000000004,107.91,0.9400000000000001,0.21,884,1.5,170,6.6000000000000005,0.0000,0.0000 +2012,3,27,3,30,18.2,0.99,0.128,0.62,0,0,0,0,0,10.200000000000001,0,0,0,0,0.295,59.38,119.25,0.9400000000000001,0.21,884,1.4000000000000001,174,6.9,0.0000,0.0000 +2012,3,27,4,30,17.400000000000002,0.98,0.123,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.296,64.68,129.39000000000001,0.9400000000000001,0.21,884,1.4000000000000001,181,6.800000000000001,0.0000,0.0000 +2012,3,27,5,30,16.5,0.99,0.128,0.62,0,0,0,0,0,11.3,0,0,0,0,0.296,71.15,137.33,0.9400000000000001,0.21,884,1.3,187,6.4,0.0000,0.0000 +2012,3,27,6,30,15.5,1,0.139,0.62,0,0,0,0,0,11.8,0,0,0,0,0.295,78.57000000000001,141.63,0.9500000000000001,0.21,884,1.1,194,6.1000000000000005,0.0000,0.0000 +2012,3,27,7,30,14.4,0.99,0.14,0.62,0,0,0,0,0,11.8,0,0,0,0,0.293,84.61,141.02,0.9400000000000001,0.21,884,0.9,203,5.7,0.0000,0.0000 +2012,3,27,8,30,13.100000000000001,0.9500000000000001,0.13,0.62,0,0,0,0,1,11,0,0,0,0,0.291,87,135.72,0.9400000000000001,0.21,884,0.7000000000000001,213,5.1000000000000005,0.0000,0.0000 +2012,3,27,9,30,11.600000000000001,0.89,0.117,0.62,0,0,0,0,1,9.1,0,0,0,0,0.29,84.74,127.13000000000001,0.93,0.21,884,0.6000000000000001,225,4.4,0.0000,0.0000 +2012,3,27,10,30,10.3,0.84,0.10400000000000001,0.62,0,0,0,0,0,6,0,0,0,0,0.29,74.58,116.63,0.92,0.21,884,0.5,239,3.8000000000000003,0.0000,0.0000 +2012,3,27,11,30,9.200000000000001,0.78,0.094,0.62,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.289,60.34,105.09,0.91,0.21,885,0.4,253,3.3000000000000003,0.0000,0.0000 +2012,3,27,12,30,9.8,0.75,0.088,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.28700000000000003,46.4,93.03,0.9,0.21,885,0.4,265,3.5,0.0000,0.0000 +2012,3,27,13,30,12.8,0.73,0.08600000000000001,0.62,48,505,130,0,0,-2.8000000000000003,48,505,0,130,0.28500000000000003,33.8,80.69,0.9,0.21,886,0.4,273,4,0.0000,0.0000 +2012,3,27,14,30,17,0.71,0.08600000000000001,0.62,77,773,359,0,0,-3.1,77,773,0,359,0.28300000000000003,25.21,68.59,0.9,0.21,887,0.4,283,4,12.9770,10.0628 +2012,3,27,15,30,21.5,0.7000000000000001,0.08600000000000001,0.62,94,891,581,0,0,-3.6,94,891,0,581,0.281,18.37,56.9,0.9,0.21,887,0.4,293,3.9000000000000004,25.6961,20.0979 +2012,3,27,16,30,25,0.68,0.085,0.62,104,954,764,0,0,-5.4,104,954,0,764,0.28,12.91,46.21,0.89,0.21,886,0.4,294,3.5,34.7787,27.2972 +2012,3,27,17,30,27.1,0.66,0.085,0.62,111,986,893,0,0,-6.6000000000000005,111,986,0,893,0.279,10.42,37.54,0.89,0.21,886,0.4,282,3,44.4172,34.9175 +2012,3,27,18,30,28.400000000000002,0.63,0.084,0.62,114,1000,956,0,0,-7.1000000000000005,114,1000,0,956,0.279,9.34,32.67,0.89,0.21,885,0.4,264,2.8000000000000003,44.4113,34.9342 +2012,3,27,19,30,29.3,0.62,0.085,0.62,115,997,948,0,0,-7.7,115,997,0,948,0.278,8.43,33.34,0.9,0.21,885,0.4,248,3.1,46.7125,36.7417 +2012,3,27,20,30,29.6,0.61,0.084,0.62,110,981,870,0,0,-8.6,110,981,0,870,0.278,7.74,39.28,0.9,0.21,884,0.4,239,3.4000000000000004,38.5966,30.3342 +2012,3,27,21,30,29.3,0.65,0.084,0.62,102,944,727,0,0,-9.600000000000001,102,944,0,727,0.278,7.3,48.54,0.9,0.21,884,0.4,234,3.5,32.4358,25.4443 +2012,3,27,22,30,28,0.62,0.083,0.62,90,873,533,0,0,-10.3,90,873,0,533,0.277,7.44,59.52,0.9,0.21,884,0.4,229,2.9000000000000004,25.9539,20.2741 +2012,3,27,23,30,24.1,0.6,0.083,0.62,72,743,310,0,0,-4.5,72,743,0,310,0.277,14.67,71.34,0.89,0.21,884,0.30000000000000004,219,1.8,13.8858,10.7314 +2012,3,28,0,30,19.3,0.58,0.083,0.62,39,398,84,0,0,1.2000000000000002,39,398,0,84,0.278,29.77,83.46000000000001,0.89,0.21,884,0.30000000000000004,210,1.6,0.0000,0.0000 +2012,3,28,1,30,16.900000000000002,0.56,0.083,0.62,0,0,0,0,0,-2.1,0,0,0,0,0.279,27.36,95.78,0.89,0.21,885,0.30000000000000004,208,1.9000000000000001,0.0000,0.0000 +2012,3,28,2,30,15.8,0.56,0.084,0.62,0,0,0,0,0,-3.6,0,0,0,0,0.279,26.25,107.73,0.89,0.21,885,0.30000000000000004,211,2.3000000000000003,0.0000,0.0000 +2012,3,28,3,30,15,0.56,0.083,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28,25.23,119.04,0.89,0.21,885,0.30000000000000004,216,2.6,0.0000,0.0000 +2012,3,28,4,30,14.200000000000001,0.5700000000000001,0.082,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.281,25.14,129.13,0.89,0.21,885,0.30000000000000004,223,2.8000000000000003,0.0000,0.0000 +2012,3,28,5,30,13.200000000000001,0.58,0.082,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.281,26.14,137.01,0.89,0.21,886,0.30000000000000004,229,2.9000000000000004,0.0000,0.0000 +2012,3,28,6,30,12.3,0.6,0.082,0.62,0,0,0,0,7,-6,0,0,0,0,0.28200000000000003,27.48,141.25,0.89,0.21,886,0.4,235,3.1,0.0000,0.0000 +2012,3,28,7,30,11.5,0.62,0.082,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.28300000000000003,29.02,140.63,0.89,0.21,886,0.4,241,3.3000000000000003,0.0000,0.0000 +2012,3,28,8,30,10.700000000000001,0.64,0.083,0.62,0,0,0,0,7,-5.800000000000001,0,0,0,0,0.28300000000000003,30.990000000000002,135.34,0.89,0.21,886,0.4,246,3.2,0.0000,0.0000 +2012,3,28,9,30,9.700000000000001,0.64,0.083,0.62,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.28200000000000003,34.89,126.78,0.89,0.21,886,0.5,253,2.8000000000000003,0.0000,0.0000 +2012,3,28,10,30,8.700000000000001,0.63,0.082,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.281,38.980000000000004,116.31,0.89,0.21,886,0.4,262,2.4000000000000004,0.0000,0.0000 +2012,3,28,11,30,7.800000000000001,0.62,0.081,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.28,41.79,104.8,0.89,0.21,887,0.4,271,2.2,0.0000,0.0000 +2012,3,28,12,30,8.9,0.61,0.079,0.62,0,0,0,0,4,-4.7,0,0,0,0,0.279,37.88,92.74,0.89,0.21,887,0.4,281,2.5,0.0000,0.0000 +2012,3,28,13,30,12.200000000000001,0.61,0.077,0.62,48,527,136,7,4,-5,94,19,7,97,0.278,29.67,80.41,0.89,0.21,888,0.4,288,3.2,0.0000,0.0000 +2012,3,28,14,30,16.2,0.61,0.077,0.62,75,788,366,0,3,-5.9,192,356,0,324,0.279,21.44,68.3,0.89,0.21,888,0.4,290,3,18.6071,14.4333 +2012,3,28,15,30,21,0.62,0.076,0.62,90,904,588,0,1,-5,90,904,0,588,0.28,16.990000000000002,56.59,0.89,0.21,888,0.4,294,2.2,32.5774,25.4837 +2012,3,28,16,30,25.400000000000002,0.62,0.074,0.62,100,966,772,7,2,-7.2,294,681,7,768,0.281,11.03,45.86,0.89,0.21,887,0.4,283,1.5,44.7044,35.0905 +2012,3,28,17,30,27.900000000000002,0.64,0.074,0.62,106,997,900,0,0,-8.6,106,997,0,900,0.281,8.53,37.160000000000004,0.89,0.21,887,0.4,236,1.3,53.4274,42.0028 +2012,3,28,18,30,29.200000000000003,0.64,0.077,0.62,110,1007,961,0,1,-8.6,110,1007,0,961,0.28200000000000003,7.890000000000001,32.27,0.88,0.21,886,0.4,201,2.1,57.7247,45.4085 +2012,3,28,19,30,29.900000000000002,0.66,0.079,0.62,110,1004,952,0,0,-8.700000000000001,110,1004,0,952,0.28300000000000003,7.55,32.980000000000004,0.88,0.21,885,0.4,200,3,57.1760,44.9736 +2012,3,28,20,30,30.200000000000003,0.6900000000000001,0.081,0.62,107,985,873,0,0,-8.9,107,985,0,873,0.28400000000000003,7.28,38.99,0.88,0.21,884,0.4,205,3.6,51.8538,40.7553 +2012,3,28,21,30,29.900000000000002,0.72,0.083,0.62,100,946,730,0,0,-9.4,100,946,0,730,0.28600000000000003,7.140000000000001,48.31,0.88,0.21,883,0.4,211,3.8000000000000003,42.2174,33.1195 +2012,3,28,22,30,28.6,0.71,0.082,0.62,89,877,536,0,0,-9.700000000000001,89,877,0,536,0.28800000000000003,7.51,59.33,0.89,0.21,883,0.4,213,3.3000000000000003,29.4668,23.0207 +2012,3,28,23,30,24.700000000000003,0.6900000000000001,0.079,0.62,70,745,310,0,0,-5.6000000000000005,70,745,0,310,0.28800000000000003,12.99,71.17,0.89,0.21,882,0.4,211,2.1,15.6777,12.1192 +2012,3,29,0,30,20,0.67,0.077,0.62,38,416,86,0,0,0.9,38,416,0,86,0.28800000000000003,27.97,83.3,0.9,0.21,883,0.4,206,1.7000000000000002,0.0000,0.0000 +2012,3,29,1,30,17.5,0.66,0.074,0.62,0,0,0,0,0,-1.3,0,0,0,0,0.28800000000000003,27.89,95.61,0.9,0.21,883,0.4,202,2,0.0000,0.0000 +2012,3,29,2,30,16.6,0.66,0.073,0.62,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.28800000000000003,28.240000000000002,107.54,0.9,0.21,883,0.4,196,2.8000000000000003,0.0000,0.0000 +2012,3,29,3,30,15.9,0.68,0.075,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.28800000000000003,30.96,118.82000000000001,0.9,0.21,884,0.5,193,3.9000000000000004,0.0000,0.0000 +2012,3,29,4,30,15.200000000000001,0.73,0.077,0.62,0,0,0,0,0,1.1,0,0,0,0,0.28800000000000003,38.32,128.86,0.91,0.21,884,0.6000000000000001,194,4.7,0.0000,0.0000 +2012,3,29,5,30,14.3,0.78,0.081,0.62,0,0,0,0,0,4,0,0,0,0,0.28800000000000003,49.83,136.69,0.91,0.21,884,0.7000000000000001,198,4.7,0.0000,0.0000 +2012,3,29,6,30,13.600000000000001,0.8200000000000001,0.082,0.62,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.28700000000000003,60.33,140.88,0.91,0.21,884,0.7000000000000001,203,4.7,0.0000,0.0000 +2012,3,29,7,30,13.100000000000001,0.85,0.084,0.62,0,0,0,0,0,7.300000000000001,0,0,0,0,0.28600000000000003,68.03,140.23,0.91,0.21,884,0.8,210,4.800000000000001,0.0000,0.0000 +2012,3,29,8,30,12.600000000000001,0.88,0.08600000000000001,0.62,0,0,0,0,1,7.9,0,0,0,0,0.28600000000000003,73.23,134.96,0.91,0.21,884,0.9,216,4.800000000000001,0.0000,0.0000 +2012,3,29,9,30,11.9,0.88,0.08700000000000001,0.62,0,0,0,0,1,8,0,0,0,0,0.28500000000000003,77.01,126.44,0.92,0.21,884,0.9,220,4.4,0.0000,0.0000 +2012,3,29,10,30,11.200000000000001,0.89,0.08700000000000001,0.62,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28500000000000003,79.55,116,0.92,0.21,884,0.9,224,3.9000000000000004,0.0000,0.0000 +2012,3,29,11,30,10.5,0.88,0.085,0.62,0,0,0,0,0,7.5,0,0,0,0,0.28500000000000003,81.56,104.5,0.91,0.21,884,0.9,229,3.5,0.0000,0.0000 +2012,3,29,12,30,10.9,0.85,0.083,0.62,0,0,0,0,0,7,0,0,0,0,0.28500000000000003,76.89,92.45,0.91,0.21,884,0.8,237,3.8000000000000003,0.0000,0.0000 +2012,3,29,13,30,13.3,0.81,0.079,0.62,48,521,137,0,0,6,48,521,0,137,0.28400000000000003,61.46,80.13,0.91,0.21,884,0.7000000000000001,245,4.2,0.0000,0.0000 +2012,3,29,14,30,17.1,0.75,0.074,0.62,73,785,367,0,0,4.4,73,785,0,367,0.28300000000000003,42.94,68,0.9,0.21,884,0.6000000000000001,256,4.2,16.8346,13.0625 +2012,3,29,15,30,21.6,0.71,0.07200000000000001,0.62,88,898,586,0,0,0.4,88,898,0,586,0.28200000000000003,24.47,56.28,0.9,0.21,884,0.6000000000000001,272,4.1000000000000005,33.0213,25.8344 +2012,3,29,16,30,25.6,0.67,0.07100000000000001,0.62,98,956,767,0,0,-4.2,98,956,0,767,0.281,13.66,45.52,0.9,0.21,884,0.6000000000000001,289,3.8000000000000003,44.9867,35.3149 +2012,3,29,17,30,28.1,0.65,0.07100000000000001,0.62,104,993,900,0,0,-8.1,104,993,0,900,0.28,8.78,36.78,0.9,0.21,883,0.5,295,3.4000000000000004,53.8888,42.3678 +2012,3,29,18,30,29.200000000000003,0.67,0.07200000000000001,0.62,107,1006,961,0,0,-8.5,107,1006,0,961,0.279,7.95,31.87,0.9,0.21,882,0.5,289,3,58.0654,45.6785 +2012,3,29,19,30,29.700000000000003,0.65,0.073,0.62,108,1003,952,0,0,-8.700000000000001,108,1003,0,952,0.278,7.63,32.62,0.9,0.21,882,0.5,279,2.7,57.4529,45.1932 +2012,3,29,20,30,29.8,0.63,0.074,0.62,105,985,874,0,0,-9,105,985,0,874,0.278,7.42,38.7,0.91,0.21,881,0.5,269,2.7,52.0667,40.9244 +2012,3,29,21,30,29.5,0.61,0.076,0.62,99,945,731,0,0,-9.4,99,945,0,731,0.279,7.28,48.08,0.91,0.21,881,0.5,263,2.7,42.4250,33.2843 +2012,3,29,22,30,28.400000000000002,0.61,0.08,0.62,89,871,536,0,0,-9.9,89,871,0,536,0.279,7.48,59.15,0.91,0.21,880,0.5,261,2.3000000000000003,29.6648,23.1777 +2012,3,29,23,30,25.6,0.61,0.084,0.62,73,728,310,0,0,-4.3,73,728,0,310,0.28,13.540000000000001,71,0.91,0.21,880,0.5,262,1.4000000000000001,15.7023,12.1410 +2012,3,30,0,30,22.8,0.59,0.083,0.62,40,397,87,0,0,1.8,40,397,0,87,0.281,25.14,83.14,0.91,0.21,880,0.5,263,1.1,0.0000,0.0000 +2012,3,30,1,30,20.900000000000002,0.5700000000000001,0.08,0.62,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.28200000000000003,19.47,95.45,0.91,0.21,881,0.5,266,1.1,0.0000,0.0000 +2012,3,30,2,30,18.6,0.58,0.077,0.62,0,0,0,0,1,-3.2,0,0,0,0,0.28400000000000003,22.5,107.36,0.9,0.21,881,0.5,280,1.3,0.0000,0.0000 +2012,3,30,3,30,16.2,0.62,0.074,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.28500000000000003,26.93,118.61,0.9,0.21,881,0.5,300,1.4000000000000001,0.0000,0.0000 +2012,3,30,4,30,14,0.66,0.07200000000000001,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.28800000000000003,34.44,128.6,0.89,0.21,881,0.5,313,1.6,0.0000,0.0000 +2012,3,30,5,30,12.3,0.68,0.07,0.62,0,0,0,0,0,0.1,0,0,0,0,0.291,43.19,136.37,0.89,0.21,882,0.6000000000000001,323,1.7000000000000002,0.0000,0.0000 +2012,3,30,6,30,11.200000000000001,0.6900000000000001,0.069,0.62,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.294,52.160000000000004,140.5,0.89,0.21,882,0.6000000000000001,334,1.7000000000000002,0.0000,0.0000 +2012,3,30,7,30,10.200000000000001,0.6900000000000001,0.067,0.62,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.296,62.370000000000005,139.83,0.89,0.21,882,0.6000000000000001,343,1.4000000000000001,0.0000,0.0000 +2012,3,30,8,30,9.700000000000001,0.68,0.065,0.62,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.298,70.75,134.58,0.89,0.21,881,0.7000000000000001,344,1.3,0.0000,0.0000 +2012,3,30,9,30,9.1,0.65,0.066,0.62,0,0,0,0,1,5.6000000000000005,0,0,0,0,0.299,78.93,126.09,0.9,0.21,881,0.7000000000000001,329,1.2000000000000002,0.0000,0.0000 +2012,3,30,10,30,8.3,0.62,0.068,0.62,0,0,0,0,0,6.4,0,0,0,0,0.299,87.71000000000001,115.68,0.91,0.21,882,0.7000000000000001,310,1.2000000000000002,0.0000,0.0000 +2012,3,30,11,30,7.7,0.6,0.07200000000000001,0.62,0,0,0,0,0,6.9,0,0,0,0,0.3,94.88,104.2,0.91,0.21,882,0.8,305,1.5,0.0000,0.0000 +2012,3,30,12,30,8.8,0.59,0.076,0.62,0,0,0,0,0,7.5,0,0,0,0,0.301,91.76,92.17,0.92,0.21,883,0.9,311,2.6,0.0000,0.0000 +2012,3,30,13,30,11.700000000000001,0.62,0.082,0.62,50,503,139,7,3,8.3,96,18,7,99,0.302,79.47,79.84,0.92,0.21,884,0.9,322,3.6,0.0000,0.0000 +2012,3,30,14,30,15.3,0.65,0.085,0.62,78,746,361,7,3,9.1,226,110,7,268,0.303,66.51,67.71000000000001,0.92,0.21,884,1,334,3.6,19.1171,14.8384 +2012,3,30,15,30,18.900000000000002,0.66,0.08600000000000001,0.62,94,860,575,7,3,9.5,339,170,7,434,0.305,54.43,55.97,0.92,0.21,884,1,343,3.5,32.9596,25.7896 +2012,3,30,16,30,22,0.64,0.09,0.62,107,912,750,0,1,8.1,107,912,0,750,0.306,41.01,45.18,0.92,0.21,884,1.1,346,3.4000000000000004,44.9743,35.3078 +2012,3,30,17,30,24.400000000000002,0.59,0.095,0.62,117,939,873,0,0,5.9,117,939,0,873,0.306,30.400000000000002,36.410000000000004,0.92,0.21,884,1.1,348,3.4000000000000004,53.9308,42.4030 +2012,3,30,18,30,26,0.45,0.095,0.62,122,950,932,0,0,3.9000000000000004,122,950,0,932,0.305,24.07,31.48,0.92,0.21,883,1.1,352,3.1,58.1036,45.7104 +2012,3,30,19,30,27,0.42,0.095,0.62,122,948,923,0,0,2.6,122,948,0,923,0.304,20.63,32.27,0.92,0.21,883,1.1,356,2.7,57.4880,45.2226 +2012,3,30,20,30,27.400000000000002,0.42,0.092,0.62,116,932,846,0,0,1.4000000000000001,116,932,0,846,0.303,18.57,38.410000000000004,0.92,0.21,882,1.1,357,2.3000000000000003,52.1600,40.9996 +2012,3,30,21,30,27.3,0.44,0.088,0.62,106,897,708,0,0,0.5,106,897,0,708,0.301,17.47,47.86,0.92,0.21,882,1.1,179,1.8,42.5162,33.3578 +2012,3,30,22,30,26.6,0.45,0.08600000000000001,0.62,93,831,521,0,0,-0.30000000000000004,93,831,0,521,0.299,17.240000000000002,58.96,0.92,0.21,882,1,9,1.3,29.6950,23.2036 +2012,3,30,23,30,24.200000000000003,0.42,0.08600000000000001,0.62,74,695,302,0,0,-0.2,74,695,0,302,0.296,19.96,70.84,0.92,0.21,882,0.9,48,1,15.7268,12.1628 +2012,3,31,0,30,20.400000000000002,0.39,0.084,0.62,41,366,85,0,1,5.300000000000001,41,366,0,85,0.293,37.12,82.98,0.92,0.21,882,0.9,91,1.1,0.0000,0.0000 +2012,3,31,1,30,17.5,0.37,0.078,0.62,0,0,0,0,7,3.7,0,0,0,0,0.29,39.980000000000004,95.28,0.92,0.21,883,0.8,106,1.5,0.0000,0.0000 +2012,3,31,2,30,16.1,0.38,0.074,0.62,0,0,0,0,7,3.8000000000000003,0,0,0,0,0.28800000000000003,43.81,107.17,0.93,0.21,884,0.8,113,1.6,0.0000,0.0000 +2012,3,31,3,30,15,0.4,0.075,0.62,0,0,0,0,1,4,0,0,0,0,0.28700000000000003,47.63,118.39,0.93,0.21,884,0.8,123,1.8,0.0000,0.0000 +2012,3,31,4,30,14.100000000000001,0.43,0.077,0.62,0,0,0,0,1,4.2,0,0,0,0,0.28700000000000003,51.4,128.34,0.93,0.21,884,0.8,137,1.9000000000000001,0.0000,0.0000 +2012,3,31,5,30,13.200000000000001,0.45,0.077,0.62,0,0,0,0,0,4.4,0,0,0,0,0.28700000000000003,55.31,136.05,0.93,0.21,884,0.8,150,1.9000000000000001,0.0000,0.0000 +2012,3,31,6,30,12.200000000000001,0.43,0.074,0.62,0,0,0,0,0,4.4,0,0,0,0,0.28700000000000003,59.02,140.13,0.93,0.21,884,0.8,162,1.8,0.0000,0.0000 +2012,3,31,7,30,11.100000000000001,0.41000000000000003,0.069,0.62,0,0,0,0,1,4.2,0,0,0,0,0.28600000000000003,62.64,139.44,0.93,0.21,884,0.8,174,1.7000000000000002,0.0000,0.0000 +2012,3,31,8,30,10.200000000000001,0.4,0.065,0.62,0,0,0,0,7,4,0,0,0,0,0.28600000000000003,65.36,134.2,0.92,0.21,884,0.8,188,1.5,0.0000,0.0000 +2012,3,31,9,30,9.600000000000001,0.41000000000000003,0.063,0.62,0,0,0,0,1,3.8000000000000003,0,0,0,0,0.28500000000000003,67.02,125.75,0.92,0.21,884,0.8,205,1.4000000000000001,0.0000,0.0000 +2012,3,31,10,30,9.3,0.42,0.061,0.62,0,0,0,0,0,3.5,0,0,0,0,0.28500000000000003,66.92,115.36,0.92,0.21,884,0.8,222,1.3,0.0000,0.0000 +2012,3,31,11,30,9,0.42,0.06,0.62,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.28600000000000003,65,103.9,0.92,0.21,884,0.9,234,1.3,0.0000,0.0000 +2012,3,31,12,30,10.700000000000001,0.44,0.06,0.62,0,0,0,0,0,2,0,0,0,0,0.28600000000000003,54.75,91.88,0.92,0.21,885,0.9,240,1.5,0.0000,0.0000 +2012,3,31,13,30,14.3,0.46,0.06,0.62,47,553,147,0,0,2.2,47,553,0,147,0.28600000000000003,44.14,79.56,0.92,0.21,885,0.9,240,2,4.7194,3.5971 +2012,3,31,14,30,18.6,0.49,0.059000000000000004,0.62,70,787,372,7,3,1.7000000000000002,179,451,7,352,0.28600000000000003,32.33,67.42,0.92,0.21,885,1,219,2.5,13.9940,10.8652 +2012,3,31,15,30,23.5,0.54,0.06,0.62,84,892,587,0,1,2.2,84,892,0,587,0.28500000000000003,24.71,55.660000000000004,0.92,0.21,885,1,199,2.9000000000000004,24.4473,19.1316 +2012,3,31,16,30,27.200000000000003,0.6,0.062,0.62,94,943,762,0,0,0.5,94,943,0,762,0.28400000000000003,17.62,44.85,0.92,0.21,884,1.1,199,3.4000000000000004,44.0220,34.5627 +2012,3,31,17,30,29.200000000000003,0.66,0.062,0.62,99,973,886,0,1,-0.5,99,973,0,886,0.28400000000000003,14.540000000000001,36.03,0.92,0.21,884,1.1,201,3.7,52.3519,41.1636 +2012,3,31,18,30,30.400000000000002,0.72,0.063,0.62,102,986,946,0,0,-1.1,102,986,0,946,0.28300000000000003,13,31.080000000000002,0.92,0.21,883,1.1,203,4,56.3856,44.3607 +2012,3,31,19,30,31.200000000000003,0.74,0.062,0.62,100,985,937,0,0,-1.6,100,985,0,937,0.28300000000000003,11.96,31.91,0.92,0.21,882,1.1,205,4.4,55.7694,43.8723 +2012,3,31,20,30,31.5,0.72,0.061,0.62,97,969,859,0,0,-2.2,97,969,0,859,0.28300000000000003,11.28,38.13,0.92,0.21,881,1.1,209,4.6000000000000005,50.5212,39.7131 +2012,3,31,21,30,31.3,0.75,0.07,0.62,94,925,717,0,0,-2.8000000000000003,94,925,0,717,0.28300000000000003,10.870000000000001,47.63,0.92,0.21,880,1.1,215,4.7,41.2088,32.3339 +2012,3,31,22,30,30.3,0.73,0.07100000000000001,0.62,84,860,530,0,0,-3.5,84,860,0,530,0.28200000000000003,10.99,58.77,0.92,0.21,880,1,219,4.2,28.8948,22.5805 +2012,3,31,23,30,27,0.7000000000000001,0.07100000000000001,0.62,67,729,309,0,0,-2.5,67,729,0,309,0.28200000000000003,14.3,70.67,0.92,0.21,880,1,218,2.7,15.3434,11.8689 +2012,4,1,0,30,22.6,0.8,0.074,0.63,38,419,90,0,0,2.5,38,419,0,90,0.28200000000000003,26.64,82.82000000000001,0.92,0.21,880,1,215,1.9000000000000001,0.0000,0.0000 +2012,4,1,1,30,20.3,0.79,0.069,0.63,0,0,0,0,0,1.6,0,0,0,0,0.28200000000000003,28.8,95.11,0.92,0.21,880,1,213,2.1,0.0000,0.0000 +2012,4,1,2,30,19.400000000000002,0.79,0.063,0.63,0,0,0,0,0,0.8,0,0,0,0,0.28200000000000003,28.78,106.99000000000001,0.91,0.21,880,1,213,2.4000000000000004,0.0000,0.0000 +2012,4,1,3,30,18.6,0.79,0.058,0.63,0,0,0,0,0,0,0,0,0,0,0.281,28.57,118.17,0.91,0.21,880,1,215,2.7,0.0000,0.0000 +2012,4,1,4,30,17.7,0.78,0.054,0.63,0,0,0,0,0,-0.8,0,0,0,0,0.281,28.560000000000002,128.08,0.91,0.21,880,1,218,3,0.0000,0.0000 +2012,4,1,5,30,16.7,0.74,0.049,0.63,0,0,0,0,0,-1.5,0,0,0,0,0.281,28.88,135.73,0.91,0.21,880,0.9,222,3.3000000000000003,0.0000,0.0000 +2012,4,1,6,30,15.700000000000001,0.68,0.046,0.63,0,0,0,0,0,-2,0,0,0,0,0.28,29.560000000000002,139.75,0.91,0.21,879,0.9,227,3.5,0.0000,0.0000 +2012,4,1,7,30,14.700000000000001,0.64,0.045,0.63,0,0,0,0,0,-2.5,0,0,0,0,0.28,30.560000000000002,139.05,0.91,0.21,879,0.9,234,3.5,0.0000,0.0000 +2012,4,1,8,30,13.8,0.64,0.045,0.63,0,0,0,0,0,-2.7,0,0,0,0,0.28,31.88,133.83,0.91,0.21,878,0.9,242,3.4000000000000004,0.0000,0.0000 +2012,4,1,9,30,13.3,0.64,0.045,0.63,0,0,0,0,1,-2.8000000000000003,0,0,0,0,0.279,32.53,125.4,0.91,0.21,878,0.8,249,3.5,0.0000,0.0000 +2012,4,1,10,30,12.8,0.63,0.044,0.63,0,0,0,0,0,-3,0,0,0,0,0.279,33.18,115.05,0.91,0.21,878,0.8,252,3.7,0.0000,0.0000 +2012,4,1,11,30,12.3,0.62,0.044,0.63,0,0,0,0,0,-3.2,0,0,0,0,0.279,33.79,103.61,0.91,0.21,878,0.8,254,3.8000000000000003,0.0000,0.0000 +2012,4,1,12,30,13,0.61,0.044,0.63,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.278,31.95,91.60000000000001,0.9,0.21,879,0.8,258,4.4,0.0000,0.0000 +2012,4,1,13,30,15.8,0.62,0.044,0.63,43,607,156,0,0,-3.4000000000000004,43,607,0,156,0.277,26.6,79.28,0.9,0.21,879,0.9,263,4.6000000000000005,7.0064,5.3420 +2012,4,1,14,30,20.3,0.63,0.046,0.63,64,826,385,0,0,-2.9000000000000004,64,826,0,385,0.276,20.77,67.14,0.9,0.21,879,0.8,269,4.2,18.4241,14.3091 +2012,4,1,15,30,25.3,0.66,0.047,0.63,77,923,601,0,0,-3.5,77,923,0,601,0.275,14.66,55.36,0.9,0.21,878,0.8,270,4.2,33.1152,25.9181 +2012,4,1,16,30,28.6,0.7000000000000001,0.049,0.63,86,973,780,0,0,-6.5,86,973,0,780,0.274,9.64,44.51,0.9,0.21,878,0.8,253,4.7,44.7697,35.1521 +2012,4,1,17,30,30.200000000000003,0.73,0.05,0.63,92,1005,908,0,0,-7.4,92,1005,0,908,0.273,8.21,35.660000000000004,0.9,0.21,877,0.7000000000000001,237,5.6000000000000005,53.1715,41.8101 +2012,4,1,18,30,31.200000000000003,0.66,0.048,0.63,93,1024,974,0,0,-8.3,93,1024,0,974,0.273,7.24,30.69,0.9,0.21,876,0.6000000000000001,232,6.4,57.2688,45.0573 +2012,4,1,19,30,31.700000000000003,0.59,0.049,0.63,94,1020,964,0,0,-9.200000000000001,94,1020,0,964,0.272,6.55,31.560000000000002,0.9,0.21,876,0.6000000000000001,230,7,56.6488,44.5658 +2012,4,1,20,30,31.700000000000003,0.53,0.05,0.63,92,1010,890,0,0,-9.9,92,1010,0,890,0.271,6.2,37.85,0.9,0.21,875,0.5,229,7.300000000000001,51.3287,40.3495 +2012,4,1,21,30,31.1,0.5,0.05,0.63,86,977,747,0,0,-10,86,977,0,747,0.272,6.36,47.410000000000004,0.91,0.21,874,0.5,227,7.4,41.7645,32.7717 +2012,4,1,22,30,30,0.51,0.052000000000000005,0.63,78,912,553,0,0,-9.8,78,912,0,553,0.272,6.88,58.59,0.91,0.21,874,0.5,224,6.800000000000001,29.4250,22.9971 +2012,4,1,23,30,27.200000000000003,0.53,0.053,0.63,63,789,326,0,0,-9.3,63,789,0,326,0.272,8.41,70.51,0.91,0.21,873,0.5,218,5,15.7234,12.1656 +2012,4,2,0,30,22.900000000000002,0.55,0.053,0.63,37,491,99,0,0,-6.300000000000001,37,491,0,99,0.273,13.72,82.66,0.91,0.21,873,0.5,211,3.5,0.0000,0.0000 +2012,4,2,1,30,20.400000000000002,0.54,0.053,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.274,17.53,94.95,0.91,0.21,873,0.5,206,3.8000000000000003,0.0000,0.0000 +2012,4,2,2,30,19.6,0.5,0.053,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.275,16.8,106.8,0.91,0.21,873,0.5,208,4.800000000000001,0.0000,0.0000 +2012,4,2,3,30,18.5,0.47000000000000003,0.054,0.63,0,0,0,0,0,-7.7,0,0,0,0,0.276,16.09,117.96000000000001,0.91,0.21,873,0.4,213,5.5,0.0000,0.0000 +2012,4,2,4,30,17.400000000000002,0.49,0.055,0.63,0,0,0,0,0,-8.9,0,0,0,0,0.279,15.81,127.81,0.91,0.21,873,0.5,219,5.7,0.0000,0.0000 +2012,4,2,5,30,16.400000000000002,0.53,0.057,0.63,0,0,0,0,0,-9.3,0,0,0,0,0.281,16.31,135.4,0.91,0.21,873,0.5,224,5.5,0.0000,0.0000 +2012,4,2,6,30,15.5,0.54,0.058,0.63,0,0,0,0,0,-9,0,0,0,0,0.28400000000000003,17.6,139.38,0.91,0.21,873,0.5,230,5.2,0.0000,0.0000 +2012,4,2,7,30,14.600000000000001,0.56,0.06,0.63,0,0,0,0,0,-8.4,0,0,0,0,0.28600000000000003,19.53,138.66,0.91,0.21,873,0.6000000000000001,234,4.9,0.0000,0.0000 +2012,4,2,8,30,13.5,0.58,0.062,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.289,22.48,133.46,0.91,0.21,873,0.6000000000000001,237,4.2,0.0000,0.0000 +2012,4,2,9,30,12.100000000000001,0.62,0.064,0.63,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.291,27.09,125.06,0.91,0.21,873,0.6000000000000001,240,3.2,0.0000,0.0000 +2012,4,2,10,30,10.8,0.66,0.064,0.63,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.292,33.07,114.73,0.91,0.21,873,0.6000000000000001,243,2.4000000000000004,0.0000,0.0000 +2012,4,2,11,30,9.9,0.67,0.063,0.63,0,0,0,0,0,-3.7,0,0,0,0,0.293,38.19,103.31,0.91,0.21,874,0.6000000000000001,243,2,0.0000,0.0000 +2012,4,2,12,30,11.100000000000001,0.6900000000000001,0.064,0.63,0,0,0,0,0,-3.1,0,0,0,0,0.293,36.83,91.31,0.91,0.21,874,0.6000000000000001,241,2.5,0.0000,0.0000 +2012,4,2,13,30,14.200000000000001,0.6900000000000001,0.066,0.63,49,591,162,0,0,-3.3000000000000003,49,591,0,162,0.293,29.650000000000002,79,0.91,0.21,874,0.5,236,3.3000000000000003,7.4365,5.6720 +2012,4,2,14,30,18.400000000000002,0.6900000000000001,0.067,0.63,72,808,390,0,0,-3.3000000000000003,72,808,0,390,0.293,22.73,66.85,0.91,0.21,874,0.6000000000000001,230,3.9000000000000004,20.1974,15.6907 +2012,4,2,15,30,22.400000000000002,0.68,0.068,0.63,87,909,608,0,0,-4.3,87,909,0,608,0.293,16.43,55.050000000000004,0.91,0.21,874,0.6000000000000001,224,4.1000000000000005,33.9532,26.5773 +2012,4,2,16,30,24.5,0.66,0.069,0.63,97,956,783,0,0,-5.5,97,956,0,783,0.293,13.24,44.18,0.91,0.21,874,0.7000000000000001,213,3.9000000000000004,45.8722,36.0204 +2012,4,2,17,30,25.8,0.68,0.073,0.63,106,982,907,0,0,-6.2,106,982,0,907,0.292,11.59,35.29,0.92,0.21,874,0.7000000000000001,193,3.8000000000000003,54.5310,42.8812 +2012,4,2,18,30,26.700000000000003,0.85,0.085,0.63,113,981,960,0,0,-6.7,113,981,0,960,0.29,10.61,30.3,0.92,0.21,873,0.8,174,4.4,58.9996,46.4208 +2012,4,2,19,30,27.200000000000003,0.86,0.08700000000000001,0.63,114,977,950,0,0,-7,114,977,0,950,0.289,10.03,31.21,0.92,0.21,873,0.8,165,5.2,58.3141,45.8775 +2012,4,2,20,30,27,0.86,0.089,0.63,110,958,870,0,0,-7.5,110,958,0,870,0.291,9.8,37.57,0.91,0.21,872,0.8,168,6.1000000000000005,53.2130,41.8324 +2012,4,2,21,30,26.200000000000003,0.8300000000000001,0.089,0.63,103,925,732,0,8,-8.1,330,349,0,567,0.295,9.8,47.2,0.91,0.21,872,0.7000000000000001,178,6.9,43.5433,34.1694 +2012,4,2,22,30,24.400000000000002,0.78,0.094,0.63,94,848,538,0,7,-9,231,25,0,244,0.3,10.18,58.410000000000004,0.91,0.21,873,0.7000000000000001,190,7.2,30.7324,24.0211 +2012,4,2,23,30,21.700000000000003,0.74,0.096,0.63,76,715,316,0,7,-10.100000000000001,143,17,0,148,0.304,11.01,70.34,0.91,0.21,874,0.6000000000000001,201,6.5,16.6126,12.8563 +2012,4,3,0,30,18,0.68,0.08600000000000001,0.63,42,423,97,0,4,-10.4,65,3,0,66,0.309,13.49,82.5,0.91,0.21,875,0.5,210,4.5,0.0000,0.0000 +2012,4,3,1,30,14.700000000000001,0.63,0.07100000000000001,0.63,0,0,0,0,6,-8.3,0,0,0,0,0.313,19.56,94.78,0.91,0.21,876,0.5,219,2.9000000000000004,0.0000,0.0000 +2012,4,3,2,30,12.9,0.65,0.059000000000000004,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.312,23.42,106.62,0.9,0.21,877,0.4,232,2.7,0.0000,0.0000 +2012,4,3,3,30,11.5,0.7000000000000001,0.05,0.63,0,0,0,0,0,-7,0,0,0,0,0.309,26.650000000000002,117.74000000000001,0.9,0.21,878,0.5,246,2.6,0.0000,0.0000 +2012,4,3,4,30,10.3,0.74,0.044,0.63,0,0,0,0,0,-5.9,0,0,0,0,0.306,31.490000000000002,127.55,0.91,0.21,878,0.5,261,2.5,0.0000,0.0000 +2012,4,3,5,30,9.3,0.8,0.045,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.305,38.35,135.08,0.91,0.21,879,0.6000000000000001,278,2.5,0.0000,0.0000 +2012,4,3,6,30,8.4,0.88,0.057,0.63,0,0,0,0,7,-2,0,0,0,0,0.304,47.84,139.01,0.93,0.21,879,0.8,298,2.6,0.0000,0.0000 +2012,4,3,7,30,7.7,0.98,0.084,0.63,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.304,59.29,138.27,0.9400000000000001,0.21,880,0.9,323,3.1,0.0000,0.0000 +2012,4,3,8,30,7.300000000000001,1.04,0.114,0.63,0,0,0,0,7,2.2,0,0,0,0,0.304,70.08,133.08,0.9500000000000001,0.21,880,0.9,344,3.2,0.0000,0.0000 +2012,4,3,9,30,6.9,1.07,0.128,0.63,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.303,78.67,124.72,0.9500000000000001,0.21,880,0.9,355,2.7,0.0000,0.0000 +2012,4,3,10,30,6.5,1.07,0.13,0.63,0,0,0,0,7,4,0,0,0,0,0.301,84.24,114.42,0.9500000000000001,0.21,881,0.9,353,1.9000000000000001,0.0000,0.0000 +2012,4,3,11,30,6.2,1.08,0.125,0.63,0,0,0,0,8,4.4,0,0,0,0,0.3,88.18,103.02,0.9500000000000001,0.21,881,0.9,339,1.4000000000000001,0.0000,0.0000 +2012,4,3,12,30,6.7,1.09,0.11800000000000001,0.63,0,0,0,0,7,4.7,0,0,0,0,0.3,86.92,91.03,0.9400000000000001,0.21,882,0.9,329,1.6,0.0000,0.0000 +2012,4,3,13,30,8.700000000000001,1.11,0.11800000000000001,0.63,59,498,156,0,1,5.2,59,498,0,156,0.301,78.4,78.73,0.9400000000000001,0.21,883,0.9,334,1.8,7.7258,5.8951 +2012,4,3,14,30,11.8,1.12,0.117,0.63,88,729,378,0,4,5.5,163,3,0,164,0.305,65.44,66.56,0.9400000000000001,0.21,883,1,273,1.5,20.5076,15.9362 +2012,4,3,15,30,14.600000000000001,1.12,0.111,0.63,104,847,593,0,3,3.5,175,0,0,175,0.309,47.25,54.75,0.9400000000000001,0.21,884,1,212,1.5,34.3985,26.9291 +2012,4,3,16,30,16.400000000000002,1.11,0.106,0.63,113,911,770,7,3,1.2000000000000002,370,24,7,388,0.316,35.75,43.85,0.93,0.21,884,1,225,1.7000000000000002,46.0919,36.1953 +2012,4,3,17,30,17.400000000000002,1.09,0.106,0.63,120,943,893,0,3,0,368,2,0,369,0.323,30.75,34.92,0.93,0.21,884,1,240,1.8,54.5096,42.8664 +2012,4,3,18,30,18,1.12,0.12,0.63,130,945,949,7,2,-0.9,416,528,7,874,0.328,27.72,29.91,0.93,0.21,883,1,263,2.1,58.1861,45.7825 +2012,4,3,19,30,17.900000000000002,1.12,0.122,0.63,130,941,938,0,2,-1.5,527,182,0,683,0.328,26.830000000000002,30.86,0.93,0.21,884,1,290,2.9000000000000004,57.4992,45.2380 +2012,4,3,20,30,17,1.1300000000000001,0.13,0.63,130,911,855,0,7,-1.2000000000000002,328,493,0,720,0.325,28.92,37.300000000000004,0.9400000000000001,0.21,884,1.1,313,4,52.0480,40.9182 +2012,4,3,21,30,15.200000000000001,1.17,0.149,0.63,130,851,710,0,4,-0.2,202,0,0,203,0.321,34.85,46.980000000000004,0.9500000000000001,0.21,884,1.2000000000000002,325,5.2,33.0735,25.9549 +2012,4,3,22,30,13,1.21,0.153,0.63,115,767,519,0,0,1,115,767,0,519,0.319,44.03,58.230000000000004,0.9500000000000001,0.21,885,1.3,332,6,13.5734,10.6102 +2012,4,3,23,30,11.100000000000001,1.23,0.146,0.63,89,636,304,0,8,2.1,136,14,0,141,0.319,53.75,70.18,0.9500000000000001,0.21,886,1.2000000000000002,337,6,7.5535,5.8469 +2012,4,4,0,30,9.600000000000001,1.24,0.126,0.63,45,362,94,0,0,2.4000000000000004,45,362,0,94,0.321,60.69,82.34,0.9500000000000001,0.21,886,1.2000000000000002,339,5.1000000000000005,0.0000,0.0000 +2012,4,4,1,30,8.5,1.22,0.107,0.63,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.322,65.16,94.61,0.9400000000000001,0.21,887,1.1,341,4.1000000000000005,0.0000,0.0000 +2012,4,4,2,30,7.7,1.19,0.093,0.63,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.323,68.54,106.43,0.9400000000000001,0.21,887,1.1,343,3.6,0.0000,0.0000 +2012,4,4,3,30,6.9,1.17,0.085,0.63,0,0,0,0,0,2.2,0,0,0,0,0.325,72.14,117.52,0.9400000000000001,0.21,887,1.1,342,3.2,0.0000,0.0000 +2012,4,4,4,30,6.1000000000000005,1.1500000000000001,0.08,0.63,0,0,0,0,0,2.2,0,0,0,0,0.328,76.15,127.28,0.93,0.21,887,1,338,2.7,0.0000,0.0000 +2012,4,4,5,30,5.300000000000001,1.1400000000000001,0.077,0.63,0,0,0,0,0,2.2,0,0,0,0,0.332,80.52,134.76,0.93,0.21,887,1,329,2.2,0.0000,0.0000 +2012,4,4,6,30,4.6000000000000005,1.11,0.074,0.63,0,0,0,0,1,2.2,0,0,0,0,0.335,84.51,138.64000000000001,0.93,0.21,887,1,317,1.9000000000000001,0.0000,0.0000 +2012,4,4,7,30,4,1.09,0.07200000000000001,0.63,0,0,0,0,8,2.2,0,0,0,0,0.337,87.85000000000001,137.88,0.93,0.21,886,0.9,308,1.8,0.0000,0.0000 +2012,4,4,8,30,3.7,1.07,0.07200000000000001,0.63,0,0,0,0,7,2.1,0,0,0,0,0.335,89.28,132.71,0.93,0.21,886,0.9,301,1.9000000000000001,0.0000,0.0000 +2012,4,4,9,30,3.7,1.07,0.076,0.63,0,0,0,0,0,2,0,0,0,0,0.331,88.39,124.38000000000001,0.93,0.21,886,1,297,2.3000000000000003,0.0000,0.0000 +2012,4,4,10,30,3.9000000000000004,1.09,0.092,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.327,85.54,114.11,0.9400000000000001,0.21,885,1.1,294,2.9000000000000004,0.0000,0.0000 +2012,4,4,11,30,4,1.12,0.107,0.63,0,0,0,0,0,1.3,0,0,0,0,0.326,82.85000000000001,102.73,0.9400000000000001,0.21,885,1.1,289,3.1,0.0000,0.0000 +2012,4,4,12,30,4.5,1.1500000000000001,0.105,0.63,0,0,0,0,7,0.9,0,0,0,0,0.327,77.66,90.21000000000001,0.9400000000000001,0.21,885,1.1,285,3.4000000000000004,0.0000,0.0000 +2012,4,4,13,30,6.4,1.17,0.094,0.63,54,537,161,7,4,0.5,79,1,7,79,0.329,65.74,78.45,0.93,0.21,885,1.1,289,4.4,7.4446,5.6828 +2012,4,4,14,30,9,1.1500000000000001,0.08700000000000001,0.63,78,766,386,0,4,-0.4,102,0,0,103,0.332,51.78,66.28,0.93,0.21,885,1.1,293,5.2,8.6436,6.7187 +2012,4,4,15,30,11,1.12,0.088,0.63,94,868,599,0,4,-1,346,90,0,398,0.334,43.4,54.45,0.93,0.21,885,1.1,291,5.4,9.9146,7.7626 +2012,4,4,16,30,12.8,1.1,0.088,0.63,104,924,775,0,4,-1.1,276,1,0,277,0.335,38.300000000000004,43.52,0.93,0.21,885,1.1,291,5.300000000000001,22.8611,17.9536 +2012,4,4,17,30,14.4,1.08,0.082,0.63,107,963,901,7,4,-0.8,426,21,7,443,0.333,35.2,34.550000000000004,0.92,0.21,885,1,294,5.2,22.1919,17.4525 +2012,4,4,18,30,15.5,1.01,0.07,0.63,104,986,961,0,3,-0.4,499,326,0,783,0.328,33.67,29.53,0.91,0.21,884,1,300,5.300000000000001,53.0046,41.7071 +2012,4,4,19,30,16.2,0.99,0.07100000000000001,0.63,104,983,950,7,2,-0.2,468,388,7,802,0.322,32.87,30.51,0.91,0.21,884,1,307,5.6000000000000005,41.3615,32.5427 +2012,4,4,20,30,16.6,0.9500000000000001,0.07,0.63,100,963,868,0,0,0,100,963,0,868,0.315,32.39,37.03,0.91,0.21,883,1.1,313,5.7,43.0986,33.8838 +2012,4,4,21,30,16.8,1.1,0.093,0.63,103,907,724,0,0,0,103,907,0,724,0.307,32.11,46.77,0.92,0.21,883,1.1,315,5.7,11.8495,9.2995 +2012,4,4,22,30,16.7,1.11,0.089,0.63,89,843,536,0,0,0,89,843,0,536,0.298,32.31,58.050000000000004,0.91,0.21,883,1.1,316,5.300000000000001,28.8994,22.5924 +2012,4,4,23,30,15.600000000000001,1.11,0.08600000000000001,0.63,71,720,317,0,0,0.1,71,720,0,317,0.292,34.83,70.02,0.91,0.21,883,1.1,320,4,7.2067,5.5795 +2012,4,5,0,30,12.8,1.09,0.083,0.63,40,435,99,0,0,1,40,435,0,99,0.28800000000000003,44.37,82.19,0.91,0.21,883,1.1,335,2.2,0.0000,0.0000 +2012,4,5,1,30,10.3,1.07,0.083,0.63,0,0,0,0,0,1.6,0,0,0,0,0.28500000000000003,54.99,94.45,0.91,0.21,883,1.1,179,1.4000000000000001,0.0000,0.0000 +2012,4,5,2,30,9.200000000000001,1.09,0.083,0.63,0,0,0,0,0,1.5,0,0,0,0,0.28400000000000003,58.52,106.25,0.91,0.21,884,1.2000000000000002,23,1.4000000000000001,0.0000,0.0000 +2012,4,5,3,30,8.1,1.1300000000000001,0.084,0.63,0,0,0,0,0,1.5,0,0,0,0,0.28200000000000003,63.11,117.3,0.91,0.21,884,1.2000000000000002,42,1.3,0.0000,0.0000 +2012,4,5,4,30,7.1000000000000005,1.18,0.084,0.63,0,0,0,0,1,1.7000000000000002,0,0,0,0,0.281,68.73,127.02,0.91,0.21,884,1.3,54,1.2000000000000002,0.0000,0.0000 +2012,4,5,5,30,6.2,1.2,0.081,0.63,0,0,0,0,0,2.2,0,0,0,0,0.281,75.5,134.44,0.91,0.21,884,1.3,63,1,0.0000,0.0000 +2012,4,5,6,30,5.6000000000000005,1.17,0.076,0.63,0,0,0,0,0,2.6,0,0,0,0,0.28200000000000003,81.14,138.27,0.91,0.21,884,1.2000000000000002,76,0.9,0.0000,0.0000 +2012,4,5,7,30,5.5,1.1300000000000001,0.07200000000000001,0.63,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28200000000000003,83.38,137.49,0.91,0.21,884,1.2000000000000002,106,0.7000000000000001,0.0000,0.0000 +2012,4,5,8,30,5.300000000000001,1.08,0.069,0.63,0,0,0,0,0,3,0,0,0,0,0.28300000000000003,85.13,132.34,0.91,0.21,884,1.2000000000000002,157,0.6000000000000001,0.0000,0.0000 +2012,4,5,9,30,4.800000000000001,1.03,0.068,0.63,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28300000000000003,87.79,124.04,0.91,0.21,884,1.2000000000000002,199,0.6000000000000001,0.0000,0.0000 +2012,4,5,10,30,4.4,0.99,0.069,0.63,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.28300000000000003,89.48,113.8,0.92,0.21,884,1.1,210,0.6000000000000001,0.0000,0.0000 +2012,4,5,11,30,4.2,0.97,0.07200000000000001,0.63,0,0,0,0,0,2.7,0,0,0,0,0.28300000000000003,90.11,102.44,0.92,0.21,885,1.1,197,0.5,0.0000,0.0000 +2012,4,5,12,30,5,0.96,0.074,0.63,0,0,0,0,0,2.7,0,0,0,0,0.28300000000000003,84.81,89.98,0.92,0.21,885,1.1,178,0.6000000000000001,0.0000,0.0000 +2012,4,5,13,30,7.5,0.9500000000000001,0.076,0.63,52,574,169,0,0,2.6,52,574,0,169,0.28400000000000003,71.23,78.18,0.92,0.21,885,1,170,1,3.7735,2.8818 +2012,4,5,14,30,11.100000000000001,0.92,0.076,0.63,75,786,395,0,0,2.6,75,786,0,395,0.28500000000000003,55.78,66,0.91,0.21,886,1,171,1.7000000000000002,5.4406,4.2301 +2012,4,5,15,30,14.9,0.89,0.075,0.63,89,887,609,0,0,2.3000000000000003,89,887,0,609,0.28500000000000003,42.49,54.160000000000004,0.91,0.21,886,1,176,1.9000000000000001,22.5793,17.6805 +2012,4,5,16,30,18.3,0.87,0.075,0.63,99,940,785,0,0,1.8,99,940,0,785,0.28500000000000003,33.11,43.2,0.91,0.21,886,1,189,1.5,16.3358,12.8299 +2012,4,5,17,30,21.400000000000002,0.86,0.075,0.63,105,969,907,0,0,0.9,105,969,0,907,0.28500000000000003,25.71,34.19,0.91,0.21,885,1,219,0.9,26.6606,20.9678 +2012,4,5,18,30,23.6,0.84,0.074,0.63,107,982,965,0,0,0.1,107,982,0,965,0.28600000000000003,21.13,29.14,0.91,0.21,885,1,284,0.5,47.5123,37.3868 +2012,4,5,19,30,25,0.85,0.073,0.63,106,981,954,0,0,-0.5,106,981,0,954,0.28600000000000003,18.580000000000002,30.17,0.91,0.21,884,1,167,0.5,48.5942,38.2345 +2012,4,5,20,30,25.900000000000002,0.87,0.07200000000000001,0.63,102,965,875,0,0,-1.2000000000000002,102,965,0,875,0.28600000000000003,16.79,36.76,0.91,0.21,883,1,39,0.6000000000000001,51.9867,40.8731 +2012,4,5,21,30,26,0.89,0.07,0.63,94,932,735,7,2,-1.6,276,658,7,728,0.28600000000000003,16.15,46.56,0.91,0.21,883,1,88,1.2000000000000002,42.2896,33.1907 +2012,4,5,22,30,25.400000000000002,0.93,0.068,0.63,82,871,545,0,8,-2,170,599,0,489,0.28600000000000003,16.34,57.870000000000005,0.91,0.21,883,1,106,2.3000000000000003,29.8749,23.3571 +2012,4,5,23,30,23.1,0.9400000000000001,0.065,0.63,66,754,325,0,8,-1.9000000000000001,170,295,0,271,0.28600000000000003,18.86,69.86,0.92,0.21,883,1,110,3.1,16.2255,12.5646 +2012,4,6,0,30,19.6,0.96,0.064,0.63,38,473,104,0,8,0.5,69,174,0,94,0.28600000000000003,27.740000000000002,82.04,0.92,0.21,883,1.1,112,4,0.0000,0.0000 +2012,4,6,1,30,16.900000000000002,1,0.066,0.63,0,0,0,0,8,1.4000000000000001,0,0,0,0,0.28600000000000003,35.11,94.28,0.93,0.21,884,1.1,117,5.2,0.0000,0.0000 +2012,4,6,2,30,15.200000000000001,1.02,0.067,0.63,0,0,0,0,7,2.8000000000000003,0,0,0,0,0.28700000000000003,43.37,106.06,0.93,0.21,885,1.2000000000000002,122,5.7,0.0000,0.0000 +2012,4,6,3,30,13.8,1.02,0.067,0.63,0,0,0,0,7,4,0,0,0,0,0.28700000000000003,51.56,117.09,0.93,0.21,886,1.3,125,5.4,0.0000,0.0000 +2012,4,6,4,30,12.5,1.01,0.066,0.63,0,0,0,0,7,4.800000000000001,0,0,0,0,0.28600000000000003,59.33,126.76,0.93,0.21,886,1.3,126,4.6000000000000005,0.0000,0.0000 +2012,4,6,5,30,11.4,0.99,0.073,0.63,0,0,0,0,6,5.4,0,0,0,0,0.28500000000000003,66.44,134.12,0.92,0.21,886,1.3,128,4.3,0.0000,0.0000 +2012,4,6,6,30,10.5,1,0.082,0.63,0,0,0,0,7,5.800000000000001,0,0,0,0,0.28300000000000003,72.89,137.9,0.92,0.21,886,1.3,131,4.3,0.0000,0.0000 +2012,4,6,7,30,9.600000000000001,1.02,0.089,0.63,0,0,0,0,1,6.300000000000001,0,0,0,0,0.281,79.71000000000001,137.11,0.92,0.21,886,1.2000000000000002,135,4.3,0.0000,0.0000 +2012,4,6,8,30,8.700000000000001,1.02,0.089,0.63,0,0,0,0,0,6.7,0,0,0,0,0.279,87.15,131.98,0.92,0.21,886,1.2000000000000002,139,4.1000000000000005,0.0000,0.0000 +2012,4,6,9,30,8.1,1.05,0.09,0.63,0,0,0,0,1,7.1000000000000005,0,0,0,0,0.278,93.28,123.7,0.92,0.21,886,1.2000000000000002,142,4,0.0000,0.0000 +2012,4,6,10,30,7.800000000000001,1.1,0.10200000000000001,0.63,0,0,0,0,0,7.4,0,0,0,0,0.277,97.13,113.49000000000001,0.92,0.21,887,1.2000000000000002,145,4.1000000000000005,0.0000,0.0000 +2012,4,6,11,30,7.9,1.12,0.115,0.63,0,0,0,0,0,7.5,0,0,0,0,0.276,97.18,102.15,0.93,0.21,887,1.2000000000000002,148,4.4,0.0000,0.0000 +2012,4,6,12,30,8.4,1.1300000000000001,0.127,0.63,0,0,0,0,0,7.5,0,0,0,0,0.275,94.3,89.74,0.93,0.21,887,1.2000000000000002,152,4.800000000000001,0.0000,0.0000 +2012,4,6,13,30,9.8,1.1400000000000001,0.13,0.63,62,490,165,0,3,7.7,6,0,0,6,0.274,86.99,77.91,0.93,0.21,888,1.3,157,5.4,8.0811,6.1744 +2012,4,6,14,30,12,1.1500000000000001,0.128,0.63,92,716,387,0,3,8.1,58,0,0,58,0.274,77.10000000000001,65.73,0.93,0.21,888,1.3,162,5.800000000000001,20.9099,16.2617 +2012,4,6,15,30,15.200000000000001,1.17,0.135,0.63,114,816,595,0,3,8.3,133,0,0,133,0.275,63.42,53.86,0.9400000000000001,0.21,887,1.4000000000000001,165,6,34.5947,27.0920 +2012,4,6,16,30,18.8,1.19,0.135,0.63,126,874,767,0,3,8.5,238,0,0,239,0.276,51.07,42.87,0.9400000000000001,0.21,887,1.5,170,6.1000000000000005,46.3349,36.3931 +2012,4,6,17,30,22.1,1.22,0.133,0.63,132,909,887,0,3,8.9,367,3,0,369,0.276,42.88,33.83,0.93,0.21,886,1.5,175,6.2,54.6208,42.9595 +2012,4,6,18,30,24.700000000000003,1.1500000000000001,0.109,0.63,123,937,945,7,3,9,469,390,7,811,0.276,36.85,28.76,0.92,0.21,885,1.6,179,6.300000000000001,58.5890,46.1045 +2012,4,6,19,30,26.5,1.16,0.098,0.63,117,944,936,7,3,8.3,494,309,7,762,0.276,31.740000000000002,29.830000000000002,0.92,0.21,884,1.6,180,6.300000000000001,57.8338,45.5059 +2012,4,6,20,30,27.6,1.16,0.093,0.63,110,930,858,7,2,7.300000000000001,373,509,7,783,0.275,27.79,36.49,0.92,0.21,883,1.6,182,6.300000000000001,52.4349,41.2269 +2012,4,6,21,30,28.1,1.18,0.115,0.63,113,873,716,0,0,6.1000000000000005,113,873,0,716,0.274,24.84,46.35,0.93,0.21,883,1.6,185,6,42.5515,33.3978 +2012,4,6,22,30,27.700000000000003,1.1500000000000001,0.113,0.63,99,807,531,0,0,4.6000000000000005,99,807,0,531,0.274,22.92,57.7,0.93,0.21,882,1.5,189,5.4,27.2814,21.3313 +2012,4,6,23,30,25.200000000000003,1.1,0.113,0.63,80,680,316,0,3,2.9000000000000004,184,247,0,270,0.273,23.56,69.7,0.93,0.21,882,1.3,188,3.6,13.8909,10.7589 +2012,4,7,0,30,20.900000000000002,1.06,0.11,0.63,45,398,101,0,3,4.5,77,80,0,88,0.274,34.04,81.88,0.92,0.21,883,1.1,179,2.1,0.0000,0.0000 +2012,4,7,1,30,18.1,1.01,0.101,0.63,0,0,0,0,4,4.3,0,0,0,0,0.274,39.97,94.12,0.92,0.21,883,1,170,2.1,0.0000,0.0000 +2012,4,7,2,30,16.8,0.99,0.098,0.63,0,0,0,0,7,4,0,0,0,0,0.275,42.6,105.88,0.92,0.21,884,0.9,167,2.2,0.0000,0.0000 +2012,4,7,3,30,15.700000000000001,0.99,0.10400000000000001,0.63,0,0,0,0,7,3.7,0,0,0,0,0.275,44.69,116.87,0.92,0.21,884,0.8,172,2.5,0.0000,0.0000 +2012,4,7,4,30,14.600000000000001,0.99,0.112,0.63,0,0,0,0,7,2.8000000000000003,0,0,0,0,0.274,44.94,126.49000000000001,0.93,0.21,884,0.8,183,2.5,0.0000,0.0000 +2012,4,7,5,30,13.5,0.97,0.116,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.273,43.06,133.8,0.93,0.21,885,0.7000000000000001,194,2.2,0.0000,0.0000 +2012,4,7,6,30,12.5,0.9400000000000001,0.114,0.63,0,0,0,0,7,0.1,0,0,0,0,0.273,42.46,137.53,0.93,0.21,885,0.7000000000000001,205,1.9000000000000001,0.0000,0.0000 +2012,4,7,7,30,11.8,0.9,0.109,0.63,0,0,0,0,7,-0.5,0,0,0,0,0.272,42.74,136.73,0.93,0.21,885,0.7000000000000001,217,1.7000000000000002,0.0000,0.0000 +2012,4,7,8,30,11.100000000000001,0.85,0.105,0.63,0,0,0,0,6,-1,0,0,0,0,0.272,43.11,131.61,0.93,0.21,885,0.7000000000000001,233,1.6,0.0000,0.0000 +2012,4,7,9,30,10.5,0.8200000000000001,0.10400000000000001,0.63,0,0,0,0,7,-1.3,0,0,0,0,0.272,43.86,123.37,0.93,0.21,886,0.8,255,1.8,0.0000,0.0000 +2012,4,7,10,30,10.4,0.79,0.109,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.271,43.04,113.18,0.9400000000000001,0.21,887,0.8,290,2.7,0.0000,0.0000 +2012,4,7,11,30,10.3,0.78,0.114,0.63,0,0,0,0,4,-2.6,0,0,0,0,0.271,40.410000000000004,101.86,0.9400000000000001,0.21,888,0.7000000000000001,321,3.9000000000000004,0.0000,0.0000 +2012,4,7,12,30,10.4,0.77,0.112,0.63,0,0,0,7,7,-4.1000000000000005,0,0,7,0,0.271,35.79,89.51,0.93,0.21,890,0.7000000000000001,335,5.1000000000000005,0.0000,0.0000 +2012,4,7,13,30,11.5,0.78,0.107,0.63,62,537,177,0,7,-5.6000000000000005,67,4,0,67,0.271,29.8,77.64,0.93,0.21,891,0.7000000000000001,173,7.1000000000000005,0.2873,0.2196 +2012,4,7,14,30,13.200000000000001,0.81,0.11,0.63,91,755,405,0,4,-6.4,194,13,0,199,0.271,25.080000000000002,65.45,0.93,0.21,892,0.7000000000000001,13,8.9,3.0767,2.3933 +2012,4,7,15,30,14.9,0.84,0.112,0.63,109,860,620,0,4,-5.9,314,44,0,340,0.271,23.330000000000002,53.57,0.93,0.21,894,0.7000000000000001,24,9.3,7.5652,5.9251 +2012,4,7,16,30,16.6,0.84,0.11,0.63,119,920,797,0,8,-6.7,283,574,0,706,0.27,19.64,42.56,0.93,0.21,894,0.7000000000000001,29,8.8,14.1196,11.0907 +2012,4,7,17,30,18,0.85,0.11,0.63,126,951,920,0,8,-8.200000000000001,293,621,0,811,0.27,16.02,33.47,0.93,0.21,895,0.7000000000000001,32,8.1,22.2361,17.4895 +2012,4,7,18,30,18.900000000000002,0.86,0.113,0.63,131,962,977,7,2,-8.9,327,718,7,958,0.271,14.38,28.38,0.93,0.21,895,0.7000000000000001,36,7.4,49.2656,38.7691 +2012,4,7,19,30,19.400000000000002,0.86,0.113,0.63,130,959,965,0,1,-8.8,130,959,0,965,0.273,13.96,29.490000000000002,0.93,0.21,895,0.7000000000000001,40,6.9,46.2177,36.3670 +2012,4,7,20,30,19.5,0.84,0.106,0.63,122,946,886,0,8,-8.4,244,708,0,815,0.276,14.34,36.230000000000004,0.93,0.21,895,0.7000000000000001,45,6.5,46.9473,36.9137 +2012,4,7,21,30,19.3,0.81,0.1,0.63,111,913,744,0,7,-7.9,298,450,0,610,0.278,15.11,46.14,0.93,0.21,895,0.7000000000000001,50,6.2,41.8776,32.8705 +2012,4,7,22,30,18.400000000000002,0.78,0.096,0.63,97,843,550,0,8,-7.5,194,561,0,495,0.279,16.52,57.53,0.93,0.21,895,0.8,55,5.800000000000001,29.6512,23.1861 +2012,4,7,23,30,16.7,0.77,0.095,0.63,78,714,328,0,4,-7.1000000000000005,209,109,0,247,0.279,18.95,69.54,0.93,0.21,896,0.8,60,5,13.8593,10.7366 +2012,4,8,0,30,14.100000000000001,0.78,0.097,0.63,46,418,106,0,3,-6.2,79,104,0,93,0.281,23.96,81.72,0.93,0.21,897,0.8,65,3.6,0.0000,0.0000 +2012,4,8,1,30,12.200000000000001,0.78,0.099,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.28300000000000003,31.2,93.95,0.9400000000000001,0.21,897,0.8,69,2.9000000000000004,0.0000,0.0000 +2012,4,8,2,30,11.4,0.8,0.106,0.63,0,0,0,0,4,-3.9000000000000004,0,0,0,0,0.28500000000000003,33.99,105.69,0.9400000000000001,0.21,898,0.8,71,3,0.0000,0.0000 +2012,4,8,3,30,10.600000000000001,0.84,0.114,0.63,0,0,0,0,7,-3.6,0,0,0,0,0.28700000000000003,36.85,116.65,0.9400000000000001,0.21,898,0.8,73,2.9000000000000004,0.0000,0.0000 +2012,4,8,4,30,9.600000000000001,0.88,0.124,0.63,0,0,0,0,0,-3.2,0,0,0,0,0.28800000000000003,40.59,126.23,0.9500000000000001,0.21,898,0.8,76,2.5,0.0000,0.0000 +2012,4,8,5,30,8.5,0.9,0.128,0.63,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.289,44.69,133.48,0.9500000000000001,0.21,898,0.9,82,2,0.0000,0.0000 +2012,4,8,6,30,7.6000000000000005,0.87,0.117,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.29,48.28,137.17000000000002,0.9400000000000001,0.21,898,0.9,88,1.8,0.0000,0.0000 +2012,4,8,7,30,7.2,0.9,0.125,0.63,0,0,0,0,4,-2.7,0,0,0,0,0.291,49.300000000000004,136.35,0.9400000000000001,0.21,898,0.9,90,1.9000000000000001,0.0000,0.0000 +2012,4,8,8,30,6.9,0.91,0.127,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.293,50.64,131.25,0.9400000000000001,0.21,898,1,86,1.6,0.0000,0.0000 +2012,4,8,9,30,6.7,0.89,0.123,0.63,0,0,0,0,4,-2,0,0,0,0,0.295,53.71,123.03,0.9400000000000001,0.21,898,1,79,1.2000000000000002,0.0000,0.0000 +2012,4,8,10,30,6.5,0.88,0.122,0.63,0,0,0,0,7,-1.6,0,0,0,0,0.295,56.25,112.87,0.9400000000000001,0.21,898,1.1,67,1.1,0.0000,0.0000 +2012,4,8,11,30,6.4,0.88,0.12,0.63,0,0,0,0,7,-1.3,0,0,0,0,0.295,57.79,101.58,0.9400000000000001,0.21,898,1.1,59,1,0.0000,0.0000 +2012,4,8,12,30,7.2,0.86,0.113,0.63,0,0,0,7,4,-1.1,0,0,7,0,0.295,55.550000000000004,89.26,0.9400000000000001,0.21,898,1.1,60,1.2000000000000002,0.0000,0.0000 +2012,4,8,13,30,9.600000000000001,0.8300000000000001,0.105,0.63,61,535,178,7,4,-0.9,107,5,7,108,0.296,48.06,77.37,0.93,0.21,898,1,77,1.4000000000000001,3.2124,2.4568 +2012,4,8,14,30,12.4,0.81,0.099,0.63,86,757,404,7,3,-0.9,186,7,7,189,0.298,39.77,65.18,0.93,0.21,898,1,98,1,10.5787,8.2311 +2012,4,8,15,30,14.9,0.79,0.094,0.63,101,865,618,7,3,-0.2,245,2,7,246,0.298,35.54,53.29,0.93,0.21,898,1,128,0.9,19.3641,15.1677 +2012,4,8,16,30,17.1,0.78,0.089,0.63,108,922,791,7,3,0.6000000000000001,435,258,7,626,0.297,32.69,42.24,0.93,0.21,898,1.1,168,1.3,41.7430,32.7905 +2012,4,8,17,30,19.400000000000002,0.78,0.08600000000000001,0.63,113,954,912,0,1,1.3,113,954,0,912,0.293,29.86,33.11,0.92,0.21,897,1.1,196,1.8,48.9022,38.4650 +2012,4,8,18,30,21.6,0.73,0.081,0.63,113,970,970,0,0,1.6,113,970,0,970,0.289,26.67,28,0.92,0.21,896,1.1,213,2.2,58.2262,45.8220 +2012,4,8,19,30,23.200000000000003,0.74,0.08,0.63,112,969,958,0,0,1.1,112,969,0,958,0.28600000000000003,23.31,29.150000000000002,0.92,0.21,895,1.1,221,2.5,58.5595,46.0798 +2012,4,8,20,30,24.200000000000003,0.74,0.08,0.63,108,952,878,0,0,0.2,108,952,0,878,0.28500000000000003,20.57,35.97,0.92,0.21,894,1.1,221,2.5,48.8913,38.4435 +2012,4,8,21,30,24.6,0.76,0.079,0.63,100,917,738,0,0,-0.5,100,917,0,738,0.28300000000000003,19.080000000000002,45.94,0.92,0.21,893,1.1,217,2.4000000000000004,35.7010,28.0237 +2012,4,8,22,30,24.200000000000003,0.74,0.077,0.63,88,854,549,0,0,-1,88,854,0,549,0.28200000000000003,18.89,57.35,0.92,0.21,892,1.1,208,2.3000000000000003,27.6656,21.6351 +2012,4,8,23,30,22.400000000000002,0.73,0.076,0.63,71,732,329,0,0,-1,71,732,0,329,0.281,20.98,69.39,0.92,0.21,892,1.1,190,1.6,12.6967,9.8378 +2012,4,9,0,30,18.900000000000002,0.73,0.076,0.63,43,452,109,0,0,3.8000000000000003,43,452,0,109,0.281,36.79,81.57000000000001,0.92,0.21,892,1.1,169,1.3,0.0000,0.0000 +2012,4,9,1,30,16.2,0.74,0.076,0.63,0,0,0,0,0,3.1,0,0,0,0,0.281,41.550000000000004,93.79,0.92,0.21,892,1.1,161,1.8,0.0000,0.0000 +2012,4,9,2,30,15.3,0.77,0.077,0.63,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.281,47.28,105.5,0.92,0.21,892,1.2000000000000002,165,2.6,0.0000,0.0000 +2012,4,9,3,30,14.9,0.8200000000000001,0.079,0.63,0,0,0,0,0,5.7,0,0,0,0,0.281,54.06,116.43,0.92,0.21,893,1.3,171,3.4000000000000004,0.0000,0.0000 +2012,4,9,4,30,14.200000000000001,0.88,0.082,0.63,0,0,0,0,0,6.800000000000001,0,0,0,0,0.281,61.21,125.96000000000001,0.92,0.21,893,1.4000000000000001,179,3.9000000000000004,0.0000,0.0000 +2012,4,9,5,30,13.5,0.93,0.08700000000000001,0.63,0,0,0,0,0,7.2,0,0,0,0,0.28,65.81,133.17000000000002,0.92,0.21,893,1.5,186,3.9000000000000004,0.0000,0.0000 +2012,4,9,6,30,12.600000000000001,0.99,0.092,0.63,0,0,0,0,0,7.300000000000001,0,0,0,0,0.279,70.36,136.8,0.93,0.21,893,1.5,193,3.5,0.0000,0.0000 +2012,4,9,7,30,11.600000000000001,1.05,0.098,0.63,0,0,0,0,0,7.4,0,0,0,0,0.277,75.5,135.97,0.93,0.21,893,1.6,199,2.9000000000000004,0.0000,0.0000 +2012,4,9,8,30,10.9,1.11,0.107,0.63,0,0,0,0,0,7.5,0,0,0,0,0.276,79.75,130.89000000000001,0.93,0.21,892,1.6,206,2.5,0.0000,0.0000 +2012,4,9,9,30,10.4,1.1500000000000001,0.115,0.63,0,0,0,0,0,7.800000000000001,0,0,0,0,0.276,84.15,122.7,0.9400000000000001,0.21,892,1.7000000000000002,213,2.3000000000000003,0.0000,0.0000 +2012,4,9,10,30,10,1.18,0.123,0.63,0,0,0,0,0,8.3,0,0,0,0,0.276,89.43,112.57000000000001,0.9400000000000001,0.21,892,1.7000000000000002,218,2.3000000000000003,0.0000,0.0000 +2012,4,9,11,30,9.9,1.2,0.131,0.63,0,0,0,0,0,9,0,0,0,0,0.277,94.19,101.29,0.9400000000000001,0.21,892,1.8,222,2.5,0.0000,0.0000 +2012,4,9,12,30,11.3,1.22,0.139,0.63,0,0,0,0,0,9.700000000000001,0,0,0,0,0.279,90.15,89.02,0.9500000000000001,0.21,892,1.8,224,3.4000000000000004,0.0000,0.0000 +2012,4,9,13,30,14.5,1.24,0.14400000000000002,0.63,67,480,174,0,7,10.700000000000001,115,182,0,156,0.28,77.78,77.11,0.9500000000000001,0.21,893,1.9000000000000001,226,4.7,5.1863,3.9684 +2012,4,9,14,30,18.400000000000002,1.27,0.145,0.63,99,688,390,0,8,11.700000000000001,188,342,0,333,0.28200000000000003,65.18,64.91,0.9500000000000001,0.21,893,2,228,5.300000000000001,10.0675,7.8351 +2012,4,9,15,30,21.400000000000002,1.29,0.147,0.63,119,789,593,0,7,11.8,289,313,0,477,0.28400000000000003,54.410000000000004,53,0.9500000000000001,0.21,892,2.2,230,5.300000000000001,14.0274,10.9886 +2012,4,9,16,30,23.400000000000002,1.31,0.154,0.63,134,841,760,0,4,10.700000000000001,444,181,0,579,0.28500000000000003,44.82,41.93,0.9500000000000001,0.21,892,2.3000000000000003,231,4.6000000000000005,37.0439,29.1008 +2012,4,9,17,30,25,1.32,0.159,0.63,144,870,876,0,8,9.9,279,598,0,782,0.28600000000000003,38.4,32.76,0.9500000000000001,0.21,891,2.3000000000000003,228,3.8000000000000003,55.0267,43.2841 +2012,4,9,18,30,26.3,1.36,0.178,0.63,156,869,926,0,8,9.4,301,589,0,823,0.28700000000000003,34.37,27.62,0.96,0.21,890,2.4000000000000004,220,3.2,58.9861,46.4216 +2012,4,9,19,30,26.400000000000002,1.33,0.227,0.63,178,830,905,0,6,9,150,0,0,150,0.28800000000000003,33.45,28.82,0.97,0.21,889,2.5,213,3,58.1632,45.7694 +2012,4,9,20,30,25,1.29,0.298,0.63,201,755,813,0,7,9.200000000000001,401,198,0,562,0.289,36.63,35.71,0.97,0.21,889,2.7,212,3,52.6976,41.4378 +2012,4,9,21,30,23.5,1.28,0.385,0.63,215,647,667,0,7,9.9,343,328,0,572,0.289,42.27,45.730000000000004,0.98,0.21,889,2.8000000000000003,224,2.9000000000000004,43.2189,33.9265 +2012,4,9,22,30,22,1.28,0.47300000000000003,0.63,207,501,479,0,8,10.9,309,227,0,432,0.28800000000000003,49.27,57.18,0.98,0.21,889,2.9000000000000004,263,2.3000000000000003,30.7123,24.0198 +2012,4,9,23,30,20.3,1.29,0.532,0.63,160,322,274,0,6,12.100000000000001,157,9,0,160,0.289,59.22,69.23,0.98,0.21,889,2.9000000000000004,156,1.9000000000000001,16.9342,13.1235 +2012,4,10,0,30,18.7,1.34,0.511,0.63,65,119,83,0,6,13,3,0,0,3,0.289,69.66,81.42,0.98,0.21,889,2.7,55,2.5,0.0000,0.0000 +2012,4,10,1,30,17.5,1.37,0.417,0.63,0,0,0,0,7,13.600000000000001,0,0,0,0,0.29,77.73,93.62,0.98,0.21,889,2.6,100,3.8000000000000003,0.0000,0.0000 +2012,4,10,2,30,16.900000000000002,1.42,0.306,0.63,0,0,0,0,7,13.9,0,0,0,0,0.291,82.25,105.32000000000001,0.97,0.21,889,2.5,119,4.7,0.0000,0.0000 +2012,4,10,3,30,16.2,1.45,0.265,0.63,0,0,0,0,3,13.8,0,0,0,0,0.293,85.96000000000001,116.21000000000001,0.97,0.21,889,2.4000000000000004,132,4.800000000000001,0.0000,0.0000 +2012,4,10,4,30,15.5,1.45,0.253,0.63,0,0,0,0,1,13.8,0,0,0,0,0.294,89.66,125.7,0.96,0.21,889,2.4000000000000004,140,4.5,0.0000,0.0000 +2012,4,10,5,30,14.9,1.44,0.245,0.63,0,0,0,1,0,14,0,0,1,0,0.294,94.24,132.85,0.96,0.21,889,2.3000000000000003,145,4.1000000000000005,0.0000,0.0000 +2012,4,10,6,30,14.5,1.44,0.23,0.63,0,0,0,0,0,14.100000000000001,0,0,0,0,0.293,97.68,136.44,0.96,0.21,889,2.3000000000000003,153,3.8000000000000003,0.0000,0.0000 +2012,4,10,7,30,14.200000000000001,1.43,0.218,0.63,0,0,0,0,0,14.100000000000001,0,0,0,0,0.292,99.65,135.59,0.9500000000000001,0.21,889,2.2,164,3.7,0.0000,0.0000 +2012,4,10,8,30,13.8,1.41,0.20600000000000002,0.63,0,0,0,0,0,13.8,0,0,0,0,0.29,100,130.53,0.9500000000000001,0.21,889,2.2,177,3.5,0.0000,0.0000 +2012,4,10,9,30,13.4,1.4000000000000001,0.198,0.63,0,0,0,0,0,13.4,0,0,0,0,0.28800000000000003,100,122.37,0.9500000000000001,0.21,890,2.1,189,3.3000000000000003,0.0000,0.0000 +2012,4,10,10,30,13,1.3900000000000001,0.19,0.63,0,0,0,0,0,13,0,0,0,0,0.28700000000000003,100,112.26,0.9500000000000001,0.21,890,2,198,3.1,0.0000,0.0000 +2012,4,10,11,30,12.600000000000001,1.3800000000000001,0.18,0.63,0,0,0,0,0,12.600000000000001,0,0,0,0,0.28500000000000003,100,101.01,0.9500000000000001,0.21,890,2,204,2.8000000000000003,0.0000,0.0000 +2012,4,10,12,30,13.100000000000001,1.3800000000000001,0.17300000000000001,0.63,11,42,11,0,0,12.700000000000001,11,42,0,11,0.28400000000000003,97.43,88.78,0.9500000000000001,0.21,890,1.9000000000000001,213,2.9000000000000004,0.0000,0.0000 +2012,4,10,13,30,15.3,1.3900000000000001,0.169,0.63,72,463,177,0,0,12.700000000000001,72,463,0,177,0.28200000000000003,84.41,76.84,0.9500000000000001,0.21,891,1.9000000000000001,224,3.5,7.5037,5.7442 +2012,4,10,14,30,18.8,1.42,0.158,0.63,102,683,395,0,0,12.9,102,683,0,395,0.28200000000000003,68.73,64.64,0.9500000000000001,0.21,891,1.9000000000000001,232,3.5,17.7735,13.8354 +2012,4,10,15,30,22.400000000000002,1.43,0.146,0.63,117,801,602,0,0,12.4,117,801,0,602,0.28200000000000003,53.02,52.72,0.9400000000000001,0.21,891,1.9000000000000001,225,2.9000000000000004,27.2329,21.3356 +2012,4,10,16,30,25.3,1.43,0.137,0.63,126,867,774,0,0,10.9,126,867,0,774,0.28200000000000003,40.410000000000004,41.62,0.9400000000000001,0.21,891,1.9000000000000001,197,2.6,34.2899,26.9389 +2012,4,10,17,30,27.1,1.41,0.133,0.63,132,904,895,0,0,9.700000000000001,132,904,0,895,0.28200000000000003,33.67,32.410000000000004,0.9400000000000001,0.21,890,1.8,171,3.1,47.2112,37.1378 +2012,4,10,18,30,28.3,1.37,0.11,0.63,124,934,954,0,0,8.700000000000001,124,934,0,954,0.28200000000000003,29.16,27.25,0.9400000000000001,0.21,890,1.8,160,3.8000000000000003,50.0725,39.4079 +2012,4,10,19,30,28.8,1.34,0.109,0.63,123,932,941,0,1,7.6000000000000005,123,932,0,941,0.28300000000000003,26.28,28.490000000000002,0.9400000000000001,0.21,889,1.8,156,4.4,9.1112,7.1700 +2012,4,10,20,30,28.700000000000003,1.33,0.113,0.63,121,910,863,0,0,6.4,121,910,0,863,0.28200000000000003,24.490000000000002,35.45,0.9500000000000001,0.21,888,1.8,155,4.800000000000001,33.7483,26.5383 +2012,4,10,21,30,28,1.33,0.111,0.63,111,874,724,0,0,5.7,111,874,0,724,0.28,24.25,45.54,0.9400000000000001,0.21,888,1.8,153,5,33.5190,26.3133 +2012,4,10,22,30,26.900000000000002,1.32,0.10400000000000001,0.63,96,813,539,0,0,5.4,96,813,0,539,0.279,25.37,57.02,0.9400000000000001,0.21,888,1.8,152,5.1000000000000005,24.1882,18.9188 +2012,4,10,23,30,24.900000000000002,1.32,0.094,0.63,74,699,324,0,1,5.800000000000001,74,699,0,324,0.279,29.25,69.08,0.9400000000000001,0.21,888,1.9000000000000001,150,4.7,8.2470,6.3924 +2012,4,11,0,30,22.1,1.31,0.082,0.63,42,454,111,0,8,7.4,80,42,0,86,0.279,38.81,81.27,0.93,0.22,888,1.9000000000000001,147,4.1000000000000005,0.0000,0.0000 +2012,4,11,1,30,20,1.31,0.075,0.63,0,0,0,0,7,9.1,0,0,0,0,0.279,49.58,93.46000000000001,0.93,0.22,889,2,145,4.2,0.0000,0.0000 +2012,4,11,2,30,18.8,1.32,0.079,0.63,0,0,0,0,7,10.100000000000001,0,0,0,0,0.279,57.01,105.13,0.9400000000000001,0.22,889,2,148,4.4,0.0000,0.0000 +2012,4,11,3,30,17.8,1.34,0.08700000000000001,0.63,0,0,0,0,7,10.5,0,0,0,0,0.278,62.410000000000004,115.99000000000001,0.9400000000000001,0.22,889,2,153,4.1000000000000005,0.0000,0.0000 +2012,4,11,4,30,17,1.35,0.095,0.63,0,0,0,0,6,10.5,0,0,0,0,0.278,65.46000000000001,125.43,0.9500000000000001,0.22,889,2,161,3.7,0.0000,0.0000 +2012,4,11,5,30,16.3,1.36,0.101,0.63,0,0,0,1,7,10.3,0,0,1,0,0.278,67.83,132.53,0.9500000000000001,0.22,889,2,168,3.4000000000000004,0.0000,0.0000 +2012,4,11,6,30,15.700000000000001,1.3800000000000001,0.10300000000000001,0.63,0,0,0,0,7,10.200000000000001,0,0,0,0,0.278,69.99,136.08,0.9500000000000001,0.22,889,2,177,3.2,0.0000,0.0000 +2012,4,11,7,30,15,1.41,0.106,0.63,0,0,0,0,7,10.200000000000001,0,0,0,0,0.278,73.06,135.22,0.9500000000000001,0.22,889,2,186,3,0.0000,0.0000 +2012,4,11,8,30,14.3,1.43,0.11,0.63,0,0,0,0,8,10.3,0,0,0,0,0.277,76.73,130.17000000000002,0.9500000000000001,0.22,889,2.1,197,2.7,0.0000,0.0000 +2012,4,11,9,30,13.5,1.45,0.11,0.63,0,0,0,0,7,10.4,0,0,0,0,0.275,81.69,122.04,0.9500000000000001,0.22,889,2.2,208,2.4000000000000004,0.0000,0.0000 +2012,4,11,10,30,12.700000000000001,1.46,0.106,0.63,0,0,0,0,7,10.600000000000001,0,0,0,0,0.274,87.08,111.96000000000001,0.9500000000000001,0.22,889,2.2,216,2.1,0.0000,0.0000 +2012,4,11,11,30,12.200000000000001,1.45,0.107,0.63,0,0,0,0,7,10.8,0,0,0,0,0.273,90.93,100.73,0.9500000000000001,0.22,890,2.2,218,1.7000000000000002,0.0000,0.0000 +2012,4,11,12,30,13.5,1.44,0.112,0.63,12,85,15,7,4,10.9,6,0,7,6,0.273,84.35000000000001,88.54,0.9500000000000001,0.22,890,2.3000000000000003,212,2.2,0.0000,0.0000 +2012,4,11,13,30,16.3,1.44,0.11800000000000001,0.63,63,525,185,0,0,11.200000000000001,63,525,0,185,0.274,71.68,76.58,0.9500000000000001,0.22,890,2.3000000000000003,207,3.3000000000000003,8.5293,6.5326 +2012,4,11,14,30,19.1,1.44,0.12,0.63,91,717,401,0,4,11.700000000000001,131,0,0,131,0.275,62.300000000000004,64.38,0.9500000000000001,0.22,890,2.3000000000000003,202,3.9000000000000004,21.1245,16.4475 +2012,4,11,15,30,21.8,1.45,0.115,0.63,106,824,608,0,4,11.700000000000001,250,3,0,251,0.276,52.800000000000004,52.44,0.9500000000000001,0.22,890,2.2,189,4.1000000000000005,34.4097,26.9609 +2012,4,11,16,30,24,1.45,0.108,0.63,114,885,778,0,4,11.200000000000001,207,0,0,207,0.277,44.52,41.31,0.9500000000000001,0.22,890,2.2,177,4.2,45.8744,36.0419 +2012,4,11,17,30,25.400000000000002,1.45,0.10400000000000001,0.63,118,917,895,0,7,10.600000000000001,241,663,0,803,0.278,39.29,32.06,0.9400000000000001,0.22,889,2.2,167,4.4,54.0650,42.5309 +2012,4,11,18,30,26.200000000000003,1.46,0.105,0.63,121,929,949,7,2,9.9,384,556,7,879,0.278,35.86,26.88,0.9400000000000001,0.22,888,2.2,161,4.7,58.0711,45.7042 +2012,4,11,19,30,26.6,1.46,0.115,0.63,125,919,935,7,2,9.200000000000001,393,532,7,862,0.279,33.46,28.16,0.9400000000000001,0.22,887,2.2,159,5,57.1842,45.0016 +2012,4,11,20,30,26.200000000000003,1.45,0.139,0.63,133,879,851,0,4,8.700000000000001,448,111,0,539,0.278,33.03,35.2,0.9500000000000001,0.22,887,2.3000000000000003,159,5.300000000000001,51.8494,40.7736 +2012,4,11,21,30,25,1.49,0.222,0.63,157,772,700,0,3,8.5,423,181,0,550,0.278,35.08,45.34,0.96,0.22,886,2.4000000000000004,160,5.300000000000001,42.4504,33.3262 +2012,4,11,22,30,23.200000000000003,1.46,0.247,0.63,145,670,512,0,7,9.4,239,53,0,268,0.278,41.37,56.85,0.96,0.22,886,2.5,160,4.9,30.2040,23.6258 +2012,4,11,23,30,21.200000000000003,1.45,0.246,0.63,113,527,302,0,4,11.200000000000001,36,0,0,36,0.279,53.02,68.92,0.96,0.22,886,2.6,159,4.7,16.7221,12.9639 +2012,4,12,0,30,19.5,1.42,0.265,0.63,61,245,99,0,9,12.3,33,0,0,33,0.281,63.01,81.11,0.97,0.22,886,2.8000000000000003,164,4.800000000000001,0.0000,0.0000 +2012,4,12,1,30,18.2,1.37,0.319,0.63,0,0,0,0,9,13.100000000000001,0,0,0,0,0.28200000000000003,71.91,93.29,0.98,0.22,887,2.9000000000000004,167,4.800000000000001,0.0000,0.0000 +2012,4,12,2,30,17.3,1.36,0.31,0.63,0,0,0,0,9,14.200000000000001,0,0,0,0,0.28400000000000003,81.78,104.95,0.97,0.22,887,2.9000000000000004,160,4.800000000000001,0.0000,0.0000 +2012,4,12,3,30,16.7,1.3800000000000001,0.22,0.63,0,0,0,0,7,14.5,0,0,0,0,0.28800000000000003,87.07000000000001,115.77,0.96,0.22,887,2.7,153,4.800000000000001,0.0000,0.0000 +2012,4,12,4,30,16.2,1.3800000000000001,0.165,0.63,0,0,0,0,6,14.3,0,0,0,0,0.291,88.5,125.17,0.96,0.22,887,2.6,153,4.800000000000001,0.0000,0.0000 +2012,4,12,5,30,15.8,1.3800000000000001,0.17,0.63,0,0,0,1,6,13.8,0,0,1,0,0.293,87.94,132.22,0.96,0.22,886,2.5,153,5.1000000000000005,0.0000,0.0000 +2012,4,12,6,30,15.5,1.4000000000000001,0.195,0.63,0,0,0,0,7,13.3,0,0,0,0,0.296,86.65,135.73,0.96,0.22,886,2.5,158,5.2,0.0000,0.0000 +2012,4,12,7,30,15.200000000000001,1.42,0.228,0.63,0,0,0,0,4,12.9,0,0,0,0,0.299,86.14,134.85,0.96,0.22,886,2.4000000000000004,166,5.300000000000001,0.0000,0.0000 +2012,4,12,8,30,14.8,1.45,0.23800000000000002,0.63,0,0,0,0,1,12.8,0,0,0,0,0.303,87.57000000000001,129.82,0.96,0.22,885,2.3000000000000003,174,5.4,0.0000,0.0000 +2012,4,12,9,30,14.200000000000001,1.44,0.245,0.63,0,0,0,0,0,13,0,0,0,0,0.305,92.44,121.72,0.96,0.22,885,2.2,175,4.9,0.0000,0.0000 +2012,4,12,10,30,13.600000000000001,1.4000000000000001,0.262,0.63,0,0,0,0,0,13.200000000000001,0,0,0,0,0.305,97.15,111.67,0.96,0.22,885,2,172,4.4,0.0000,0.0000 +2012,4,12,11,30,13.4,1.36,0.24,0.63,0,0,0,0,0,13.100000000000001,0,0,0,0,0.304,98.10000000000001,100.45,0.96,0.22,885,1.8,171,4.2,0.0000,0.0000 +2012,4,12,12,30,13.9,1.34,0.20700000000000002,0.63,13,46,15,0,0,13,13,46,0,15,0.303,94.56,88.3,0.96,0.22,885,1.6,175,4.5,0.0000,0.0000 +2012,4,12,13,30,15.700000000000001,1.32,0.184,0.63,77,464,187,0,0,13.200000000000001,77,464,0,187,0.304,85.18,76.33,0.96,0.22,884,1.5,186,5.5,8.9313,6.8439 +2012,4,12,14,30,18.400000000000002,1.29,0.162,0.63,106,692,408,0,3,13.4,60,0,0,60,0.305,72.61,64.12,0.9500000000000001,0.22,884,1.5,199,6.2,7.0190,5.4662 +2012,4,12,15,30,21.200000000000003,1.29,0.131,0.63,114,829,623,7,3,12.8,180,0,7,180,0.305,58.79,52.17,0.9500000000000001,0.22,884,1.4000000000000001,206,6.300000000000001,14.3635,11.2552 +2012,4,12,16,30,23.700000000000003,1.27,0.111,0.63,116,902,797,0,3,11.200000000000001,379,434,0,707,0.305,45.480000000000004,41.01,0.9400000000000001,0.22,884,1.4000000000000001,209,6.1000000000000005,12.2783,9.6471 +2012,4,12,17,30,25.6,1.24,0.101,0.63,118,943,920,0,3,8.9,510,235,0,710,0.305,34.81,31.720000000000002,0.9400000000000001,0.22,883,1.3,211,6.2,48.5356,38.1825 +2012,4,12,18,30,27,1.21,0.093,0.63,117,960,976,0,8,6.300000000000001,247,726,0,897,0.306,26.78,26.51,0.93,0.22,882,1.3,213,6.5,53.5313,42.1325 +2012,4,12,19,30,27.700000000000003,1.1500000000000001,0.081,0.63,110,970,967,0,1,3.7,110,970,0,967,0.308,21.490000000000002,27.84,0.92,0.22,881,1.2000000000000002,214,6.800000000000001,52.4072,41.2435 +2012,4,12,20,30,28,1.08,0.07200000000000001,0.63,101,964,892,0,0,1.4000000000000001,101,964,0,892,0.308,17.85,34.95,0.91,0.22,880,1.1,217,7,32.3988,25.4787 +2012,4,12,21,30,27.8,1.05,0.073,0.63,95,929,751,0,0,-0.8,95,929,0,751,0.309,15.47,45.14,0.92,0.22,879,1.1,221,7,32.2675,25.3331 +2012,4,12,22,30,26.8,1.07,0.08700000000000001,0.63,91,851,559,0,3,-2.3000000000000003,284,353,0,478,0.311,14.71,56.68,0.93,0.22,879,1.1,223,6.300000000000001,15.0309,11.7582 +2012,4,12,23,30,24.8,1.03,0.09,0.63,75,730,339,0,8,-2.4000000000000004,196,98,0,231,0.312,16.45,68.77,0.93,0.22,879,1,221,4.7,1.8606,1.4427 +2012,4,13,0,30,21.400000000000002,0.92,0.076,0.63,44,486,120,0,7,-0.2,68,7,0,69,0.313,23.61,80.96000000000001,0.92,0.22,879,1,221,3.2,0.0000,0.0000 +2012,4,13,1,30,18.7,0.81,0.066,0.63,0,0,0,0,7,0.8,0,0,0,0,0.315,30.07,93.13,0.92,0.22,880,1,230,3,0.0000,0.0000 +2012,4,13,2,30,17.6,0.8,0.073,0.63,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.316,31.1,104.76,0.92,0.22,881,1,246,3.3000000000000003,0.0000,0.0000 +2012,4,13,3,30,16.2,0.8,0.078,0.63,0,0,0,0,0,0.1,0,0,0,0,0.318,33.43,115.55,0.92,0.22,881,0.9,257,3.2,0.0000,0.0000 +2012,4,13,4,30,14.600000000000001,0.65,0.068,0.63,0,0,0,0,0,0.4,0,0,0,0,0.32,37.800000000000004,124.91,0.91,0.22,882,0.8,261,2.9000000000000004,0.0000,0.0000 +2012,4,13,5,30,13.4,0.58,0.07,0.63,0,0,0,1,6,0.1,0,0,1,0,0.32,40.14,131.9,0.91,0.22,882,0.8,265,3.3000000000000003,0.0000,0.0000 +2012,4,13,6,30,12.5,0.5700000000000001,0.074,0.63,0,0,0,0,6,-0.6000000000000001,0,0,0,0,0.319,40.49,135.37,0.91,0.22,882,0.7000000000000001,274,4,0.0000,0.0000 +2012,4,13,7,30,11.5,0.61,0.082,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.319,39.84,134.48,0.92,0.22,883,0.6000000000000001,283,3.8000000000000003,0.0000,0.0000 +2012,4,13,8,30,10.700000000000001,0.6900000000000001,0.095,0.63,0,0,0,0,7,-2.7,0,0,0,0,0.32,38.88,129.47,0.93,0.22,883,0.5,284,3,0.0000,0.0000 +2012,4,13,9,30,10.200000000000001,0.73,0.10200000000000001,0.63,0,0,0,0,7,-3.1,0,0,0,0,0.323,39.14,121.39,0.93,0.22,883,0.5,277,2.4000000000000004,0.0000,0.0000 +2012,4,13,10,30,9.600000000000001,0.77,0.10200000000000001,0.63,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.326,41.51,111.37,0.93,0.22,883,0.5,270,2.1,0.0000,0.0000 +2012,4,13,11,30,8.9,0.78,0.098,0.63,0,0,0,0,4,-2.8000000000000003,0,0,0,0,0.328,43.56,100.18,0.93,0.22,883,0.5,266,2,0.0000,0.0000 +2012,4,13,12,30,9.9,0.8,0.097,0.63,16,110,20,7,7,-2.7,14,0,7,14,0.331,41.050000000000004,88.05,0.92,0.22,884,0.5,265,2.5,0.0000,0.0000 +2012,4,13,13,30,13,0.79,0.082,0.63,60,631,212,0,0,-3.5,60,631,0,212,0.332,31.5,76.07000000000001,0.92,0.22,885,0.5,269,3,9.0447,6.9340 +2012,4,13,14,30,17,0.79,0.08,0.63,81,822,444,0,8,-4.2,231,100,0,275,0.332,23.12,63.86,0.92,0.22,885,0.5,296,2.7,3.2208,2.5088 +2012,4,13,15,30,20.5,0.8200000000000001,0.08600000000000001,0.63,98,907,658,0,7,-8.8,215,615,0,594,0.329,13.120000000000001,51.9,0.92,0.22,885,0.5,316,1.9000000000000001,10.3119,8.0811 +2012,4,13,16,30,22.1,0.84,0.088,0.63,109,950,830,0,8,-9.8,252,670,0,760,0.324,10.950000000000001,40.71,0.93,0.22,885,0.6000000000000001,273,1.4000000000000001,41.9670,32.9754 +2012,4,13,17,30,22.900000000000002,0.87,0.09,0.63,116,971,945,7,2,-9.8,303,736,7,931,0.32,10.450000000000001,31.38,0.93,0.22,884,0.7000000000000001,221,1.9000000000000001,42.9381,33.7802 +2012,4,13,18,30,23.6,0.8300000000000001,0.08700000000000001,0.63,117,984,1001,0,8,-10,304,675,0,910,0.318,9.870000000000001,26.14,0.93,0.22,883,0.7000000000000001,203,2.9000000000000004,54.6532,43.0168 +2012,4,13,19,30,24.6,0.86,0.085,0.63,115,984,988,7,2,-10,320,724,7,962,0.316,9.290000000000001,27.51,0.93,0.22,882,0.7000000000000001,199,3.7,58.8164,46.2886 +2012,4,13,20,30,25.400000000000002,0.89,0.083,0.63,110,964,903,0,8,-9.700000000000001,239,739,0,847,0.315,9.05,34.7,0.93,0.22,881,0.8,200,4.4,53.6425,42.1862 +2012,4,13,21,30,25.6,1.22,0.101,0.63,109,916,758,0,3,-9.600000000000001,357,456,0,680,0.315,9.06,44.95,0.93,0.22,880,0.8,199,4.800000000000001,44.0859,34.6131 +2012,4,13,22,30,25.1,1.2,0.09,0.63,92,863,568,0,7,-9.3,292,180,0,392,0.315,9.52,56.52,0.92,0.22,880,0.8,197,4.7,26.8318,20.9912 +2012,4,13,23,30,23,1.16,0.082,0.63,72,755,347,0,7,-8.5,193,142,0,245,0.314,11.47,68.62,0.92,0.22,880,0.8,192,3.5,11.9543,9.2709 +2012,4,14,0,30,19.400000000000002,1.11,0.077,0.63,44,501,124,0,8,-2.5,86,48,0,94,0.314,22.57,80.81,0.92,0.21,880,0.9,186,2.1,0.0000,0.0000 +2012,4,14,1,30,17.3,1.05,0.073,0.63,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.315,29.44,92.96000000000001,0.92,0.21,880,0.9,180,2,0.0000,0.0000 +2012,4,14,2,30,17.2,1.01,0.069,0.63,0,0,0,0,4,-1,0,0,0,0,0.315,29.060000000000002,104.57000000000001,0.93,0.21,880,0.9,180,2.5,0.0000,0.0000 +2012,4,14,3,30,17,0.99,0.068,0.63,0,0,0,0,7,-1.3,0,0,0,0,0.315,28.69,115.33,0.93,0.21,879,1,184,3,0.0000,0.0000 +2012,4,14,4,30,16.400000000000002,1.03,0.069,0.63,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.314,30.1,124.64,0.93,0.21,879,1,186,3.6,0.0000,0.0000 +2012,4,14,5,30,15.600000000000001,1.1400000000000001,0.082,0.63,0,0,0,1,1,-0.7000000000000001,0,0,1,0,0.313,32.71,131.59,0.9500000000000001,0.21,879,1.2000000000000002,185,4.3,0.0000,0.0000 +2012,4,14,6,30,15.100000000000001,1.29,0.14100000000000001,0.63,0,0,0,0,0,1.5,0,0,0,0,0.312,39.83,135.02,0.97,0.21,879,1.7000000000000002,185,5.1000000000000005,0.0000,0.0000 +2012,4,14,7,30,15.200000000000001,1.32,0.245,0.63,0,0,0,0,0,7.4,0,0,0,0,0.311,59.79,134.12,0.97,0.21,879,2.1,183,5.7,0.0000,0.0000 +2012,4,14,8,30,15.5,1.31,0.271,0.63,0,0,0,0,0,12.4,0,0,0,0,0.311,81.65,129.12,0.97,0.21,878,2.2,181,5.9,0.0000,0.0000 +2012,4,14,9,30,15.8,1.3,0.246,0.63,0,0,0,0,3,14.700000000000001,0,0,0,0,0.311,92.94,121.07000000000001,0.96,0.21,877,2.1,181,6.300000000000001,0.0000,0.0000 +2012,4,14,10,30,15.9,1.3,0.223,0.63,0,0,0,0,0,15.3,0,0,0,0,0.313,96.41,111.08,0.96,0.21,877,1.8,183,6.5,0.0000,0.0000 +2012,4,14,11,30,15.5,1.26,0.17500000000000002,0.63,0,0,0,0,0,15.200000000000001,0,0,0,0,0.314,98.26,99.91,0.9500000000000001,0.21,877,1.5,186,5.9,0.0000,0.0000 +2012,4,14,12,30,15.700000000000001,1.1500000000000001,0.133,0.63,17,97,21,0,0,14.9,17,97,0,21,0.316,95.16,87.82000000000001,0.9400000000000001,0.21,877,1.2000000000000002,187,5.5,0.0000,0.0000 +2012,4,14,13,30,17.6,1.06,0.106,0.63,64,578,205,0,1,14.4,64,578,0,205,0.316,81.3,75.82000000000001,0.93,0.21,877,1.1,192,5.800000000000001,10.2746,7.8807 +2012,4,14,14,30,20.8,1,0.09,0.63,83,786,432,0,3,11.3,265,114,0,316,0.317,54.61,63.61,0.92,0.21,877,1.1,203,6.2,14.7892,11.5219 +2012,4,14,15,30,23.900000000000002,0.9400000000000001,0.08,0.63,93,892,646,0,0,3.9000000000000004,93,892,0,646,0.317,27.25,51.63,0.91,0.21,876,1,213,6.7,34.0664,26.6990 +2012,4,14,16,30,26,0.88,0.076,0.63,101,949,823,0,0,-2,101,949,0,823,0.319,15.69,40.410000000000004,0.91,0.21,876,0.9,218,7.300000000000001,45.1460,35.4751 +2012,4,14,17,30,27.400000000000002,0.8300000000000001,0.07200000000000001,0.63,105,983,947,0,0,-4.4,105,983,0,947,0.322,12.14,31.04,0.91,0.21,875,0.8,216,7.800000000000001,56.3341,44.3206 +2012,4,14,18,30,28.400000000000002,0.85,0.07200000000000001,0.63,107,993,1001,0,0,-5.2,107,993,0,1001,0.325,10.78,25.78,0.91,0.21,874,0.8,210,8.3,55.4709,43.6616 +2012,4,14,19,30,29,0.85,0.07,0.63,105,993,988,0,0,-5.2,105,993,0,988,0.326,10.42,27.19,0.91,0.21,873,0.8,203,8.8,58.5380,46.0708 +2012,4,14,20,30,29.200000000000003,0.87,0.069,0.63,101,978,907,0,0,-4.9,101,978,0,907,0.327,10.540000000000001,34.46,0.91,0.21,872,0.8,200,9.3,50.9600,40.0779 +2012,4,14,21,30,29.1,0.87,0.07,0.63,94,939,761,0,0,-4.7,94,939,0,761,0.328,10.71,44.76,0.91,0.21,871,0.9,201,9.600000000000001,39.9403,31.3595 +2012,4,14,22,30,28.400000000000002,0.89,0.07200000000000001,0.63,85,875,570,0,0,-5,85,875,0,570,0.331,10.96,56.36,0.91,0.21,871,0.9,207,9.4,22.0219,17.2295 +2012,4,14,23,30,26.700000000000003,0.9,0.075,0.63,70,756,348,7,3,-5.300000000000001,174,420,7,328,0.333,11.78,68.47,0.91,0.21,871,0.9,219,8.5,12.6952,9.8471 +2012,4,15,0,30,23.900000000000002,0.87,0.078,0.63,44,493,124,0,0,-5.300000000000001,44,493,0,124,0.335,13.93,80.66,0.91,0.21,872,0.9,238,7.800000000000001,0.0000,0.0000 +2012,4,15,1,30,20.700000000000003,0.79,0.079,0.63,0,0,0,0,1,-5,0,0,0,0,0.335,17.31,92.8,0.92,0.21,873,0.9,257,7.800000000000001,0.0000,0.0000 +2012,4,15,2,30,18.2,0.72,0.078,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.336,20.91,104.39,0.92,0.21,875,1,267,7.9,0.0000,0.0000 +2012,4,15,3,30,16,0.71,0.079,0.63,0,0,0,0,3,-3.9000000000000004,0,0,0,0,0.336,25.21,115.11,0.92,0.21,876,1,271,7.6000000000000005,0.0000,0.0000 +2012,4,15,4,30,13.8,0.8200000000000001,0.08600000000000001,0.63,0,0,0,0,3,-4.800000000000001,0,0,0,0,0.337,27.29,124.38000000000001,0.93,0.21,876,1,273,7.300000000000001,0.0000,0.0000 +2012,4,15,5,30,11.8,0.9400000000000001,0.091,0.63,0,0,0,1,3,-7.4,0,0,1,0,0.338,25.39,131.28,0.93,0.21,877,0.9,273,7.300000000000001,0.0000,0.0000 +2012,4,15,6,30,10.100000000000001,1.04,0.09,0.63,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.34,24.78,134.67000000000002,0.92,0.21,877,0.8,269,7.1000000000000005,0.0000,0.0000 +2012,4,15,7,30,8.6,1.09,0.077,0.63,0,0,0,0,0,-9.4,0,0,0,0,0.342,26.990000000000002,133.75,0.91,0.21,877,0.7000000000000001,265,6.7,0.0000,0.0000 +2012,4,15,8,30,7.5,1.08,0.067,0.63,0,0,0,0,0,-9.3,0,0,0,0,0.343,29.37,128.77,0.91,0.21,877,0.5,262,6.5,0.0000,0.0000 +2012,4,15,9,30,6.7,1.02,0.06,0.63,0,0,0,0,0,-9,0,0,0,0,0.34500000000000003,31.63,120.76,0.9,0.21,877,0.5,261,6.5,0.0000,0.0000 +2012,4,15,10,30,6.1000000000000005,0.96,0.056,0.63,0,0,0,0,0,-8.4,0,0,0,0,0.34700000000000003,34.57,110.79,0.9,0.21,877,0.4,259,6.800000000000001,0.0000,0.0000 +2012,4,15,11,30,5.7,0.91,0.054,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.34900000000000003,38.12,99.64,0.9,0.21,877,0.4,257,7,0.0000,0.0000 +2012,4,15,12,30,6.300000000000001,0.85,0.055,0.63,17,234,27,0,0,-6.7,17,234,0,27,0.35100000000000003,38.82,87.57000000000001,0.9,0.21,878,0.4,256,7.5,0.0000,0.0000 +2012,4,15,13,30,8.4,0.79,0.058,0.63,53,697,227,0,0,-6.2,53,697,0,227,0.354,34.97,75.57000000000001,0.9,0.21,878,0.4,259,8.3,9.9553,7.6393 +2012,4,15,14,30,11.100000000000001,0.77,0.06,0.63,73,863,460,0,0,-6.4,73,863,0,460,0.357,28.72,63.35,0.9,0.21,878,0.4,263,8.8,17.0239,13.2653 +2012,4,15,15,30,13.700000000000001,0.78,0.062,0.63,86,936,671,0,0,-7.2,86,936,0,671,0.36,22.82,51.36,0.9,0.21,878,0.5,268,8.6,37.0884,29.0701 +2012,4,15,16,30,15.9,0.84,0.065,0.63,96,973,840,0,0,-7.5,96,973,0,840,0.364,19.400000000000002,40.12,0.91,0.21,879,0.6000000000000001,274,8,48.9236,38.4454 +2012,4,15,17,30,17.5,0.9400000000000001,0.07200000000000001,0.63,105,987,953,0,0,-6.800000000000001,105,987,0,953,0.367,18.38,30.71,0.92,0.21,879,0.7000000000000001,280,7.300000000000001,57.3329,45.1080 +2012,4,15,18,30,18.6,1.06,0.081,0.63,111,986,1002,0,3,-6,457,475,0,886,0.369,18.31,25.42,0.93,0.21,879,0.8,288,6.7,61.0449,48.0502 +2012,4,15,19,30,19.200000000000003,1.1,0.084,0.63,112,977,983,7,3,-5.300000000000001,417,536,7,895,0.37,18.6,26.88,0.93,0.21,879,0.9,296,6.4,60.1454,47.3370 +2012,4,15,20,30,19.3,1.12,0.082,0.63,107,962,903,0,4,-4.6000000000000005,260,0,0,260,0.37,19.400000000000002,34.22,0.9400000000000001,0.21,880,0.9,303,6.2,54.5940,42.9371 +2012,4,15,21,30,19.1,1.16,0.082,0.63,100,928,760,0,4,-4.2,380,49,0,415,0.37,20.38,44.57,0.93,0.21,881,0.9,310,5.9,44.7226,35.1158 +2012,4,15,22,30,18.5,1.1500000000000001,0.077,0.63,87,871,571,0,4,-4,303,295,0,467,0.37,21.35,56.2,0.93,0.21,882,0.9,317,5.4,32.0470,25.0747 +2012,4,15,23,30,17.2,1.1400000000000001,0.076,0.63,70,754,349,0,4,-4,54,0,0,54,0.37,23.26,68.32000000000001,0.93,0.21,883,1,328,4.3,17.0178,13.2022 +2012,4,16,0,30,14.3,1.1400000000000001,0.08,0.63,45,499,127,0,0,-3,45,499,0,127,0.369,30.16,80.5,0.93,0.21,884,1,168,2.6,0.0000,0.0000 +2012,4,16,1,30,11.600000000000001,1.1300000000000001,0.083,0.63,0,0,0,0,1,-0.4,0,0,0,0,0.369,43.54,92.63,0.93,0.21,885,1,12,1.7000000000000002,0.0000,0.0000 +2012,4,16,2,30,10.4,1.12,0.084,0.63,0,0,0,0,1,-0.2,0,0,0,0,0.367,47.83,104.2,0.93,0.21,887,1,26,2,0.0000,0.0000 +2012,4,16,3,30,9.4,1.11,0.08600000000000001,0.63,0,0,0,0,0,0,0,0,0,0,0.365,51.910000000000004,114.9,0.93,0.21,888,1,32,2,0.0000,0.0000 +2012,4,16,4,30,8.5,1.11,0.089,0.63,0,0,0,0,1,0.2,0,0,0,0,0.364,55.89,124.12,0.93,0.21,889,1,31,1.9000000000000001,0.0000,0.0000 +2012,4,16,5,30,7.6000000000000005,1.12,0.092,0.63,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.362,59.84,130.97,0.93,0.21,889,1,25,1.8,0.0000,0.0000 +2012,4,16,6,30,7,1.1400000000000001,0.094,0.63,0,0,0,0,1,0.4,0,0,0,0,0.362,62.84,134.32,0.9400000000000001,0.21,890,1,16,1.7000000000000002,0.0000,0.0000 +2012,4,16,7,30,6.4,1.17,0.097,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.362,66.48,133.4,0.9400000000000001,0.21,890,1.1,185,1.9000000000000001,0.0000,0.0000 +2012,4,16,8,30,5.800000000000001,1.19,0.096,0.63,0,0,0,0,0,0.9,0,0,0,0,0.362,71.01,128.43,0.9400000000000001,0.21,891,1.1,356,1.9000000000000001,0.0000,0.0000 +2012,4,16,9,30,5,1.21,0.092,0.63,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.361,77.5,120.44,0.9400000000000001,0.21,891,1,353,1.6,0.0000,0.0000 +2012,4,16,10,30,4.3,1.21,0.08700000000000001,0.63,0,0,0,0,0,1.8,0,0,0,0,0.359,83.86,110.5,0.9400000000000001,0.21,891,1,356,1.2000000000000002,0.0000,0.0000 +2012,4,16,11,30,4.3,1.2,0.083,0.63,0,0,0,0,0,2.1,0,0,0,0,0.357,85.5,99.37,0.9400000000000001,0.21,892,1,184,0.8,0.0000,0.0000 +2012,4,16,12,30,5.800000000000001,1.2,0.08,0.63,19,195,28,0,0,2.2,19,195,0,28,0.354,77.63,87.33,0.9400000000000001,0.21,892,1,48,0.7000000000000001,0.0000,0.0000 +2012,4,16,13,30,9.200000000000001,1.2,0.077,0.63,57,643,220,0,0,2.3000000000000003,57,643,0,220,0.352,61.84,75.33,0.93,0.21,892,0.9,112,1.8,11.0464,8.4804 +2012,4,16,14,30,12.9,1.2,0.076,0.63,78,812,445,0,0,0.8,78,812,0,445,0.35100000000000003,43.69,63.11,0.93,0.21,893,1,145,3.3000000000000003,24.8261,19.3487 +2012,4,16,15,30,15.600000000000001,1.2,0.078,0.63,93,896,655,0,0,-0.1,93,896,0,655,0.35000000000000003,34.29,51.1,0.9400000000000001,0.21,893,1,157,3.8000000000000003,38.5647,30.2297 +2012,4,16,16,30,17.7,1.19,0.08,0.63,103,942,826,0,0,-0.30000000000000004,103,942,0,826,0.35100000000000003,29.5,39.83,0.9400000000000001,0.21,893,1,169,3.9000000000000004,49.9686,39.2684 +2012,4,16,17,30,19.3,1.18,0.082,0.63,110,967,943,0,0,-0.5,110,967,0,943,0.352,26.28,30.38,0.9400000000000001,0.21,892,1,180,3.9000000000000004,57.7258,45.4185 +2012,4,16,18,30,20.6,1.17,0.08700000000000001,0.63,115,970,993,0,0,-0.8,115,970,0,993,0.352,23.72,25.060000000000002,0.9400000000000001,0.21,892,1.1,188,4,54.0551,42.5495 +2012,4,16,19,30,21.3,1.1500000000000001,0.094,0.63,118,961,977,0,8,-1.2000000000000002,290,650,0,872,0.352,22.080000000000002,26.560000000000002,0.9400000000000001,0.21,891,1.1,195,4.1000000000000005,54.5057,42.8995 +2012,4,16,20,30,21.6,1.1400000000000001,0.101,0.63,118,938,895,0,8,-1.7000000000000002,407,201,0,573,0.354,20.91,33.980000000000004,0.9500000000000001,0.21,891,1.1,202,4,15.6567,12.3140 +2012,4,16,21,30,21.1,1.1400000000000001,0.107,0.63,113,896,753,7,8,-2.3000000000000003,258,548,7,650,0.357,20.7,44.38,0.96,0.21,890,1.1,206,3.8000000000000003,24.4022,19.1611 +2012,4,16,22,30,20.200000000000003,1.16,0.117,0.63,104,819,562,0,7,-2.7,41,0,0,41,0.36,21.28,56.04,0.96,0.21,891,1.1,205,3.4000000000000004,26.2767,20.5612 +2012,4,16,23,30,18.6,1.17,0.113,0.63,83,702,344,0,7,-2.7,208,99,0,245,0.36,23.48,68.17,0.96,0.21,891,1.1,192,2.4000000000000004,2.8053,2.1767 +2012,4,17,0,30,15.9,1.16,0.1,0.63,49,469,128,0,7,1,50,3,0,51,0.356,36.39,80.35000000000001,0.9500000000000001,0.21,891,1,167,1.8,0.0000,0.0000 +2012,4,17,1,30,13.5,1.1400000000000001,0.089,0.63,0,0,0,0,1,1.8,0,0,0,0,0.352,45.13,92.47,0.9400000000000001,0.21,892,1,152,2.5,0.0000,0.0000 +2012,4,17,2,30,12.4,1.11,0.083,0.63,0,0,0,0,0,1,0,0,0,0,0.35000000000000003,45.58,104.01,0.9400000000000001,0.21,892,1,152,3.6,0.0000,0.0000 +2012,4,17,3,30,11.4,1.07,0.079,0.63,0,0,0,0,0,1.1,0,0,0,0,0.34800000000000003,49.27,114.68,0.93,0.21,892,1,156,4.2,0.0000,0.0000 +2012,4,17,4,30,10.3,1.02,0.075,0.63,0,0,0,0,0,1.6,0,0,0,0,0.34500000000000003,54.67,123.86,0.93,0.21,893,0.9,160,4.1000000000000005,0.0000,0.0000 +2012,4,17,5,30,9.4,0.96,0.073,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.342,58.78,130.66,0.92,0.21,893,0.9,165,3.8000000000000003,0.0000,0.0000 +2012,4,17,6,30,8.6,0.91,0.07200000000000001,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.338,62.09,133.97,0.92,0.21,893,0.9,171,3.6,0.0000,0.0000 +2012,4,17,7,30,7.9,0.87,0.07200000000000001,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.334,64.96000000000001,133.04,0.92,0.21,894,0.8,175,3.5,0.0000,0.0000 +2012,4,17,8,30,7.300000000000001,0.85,0.07200000000000001,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.328,67.55,128.09,0.91,0.21,894,0.8,179,3.7,0.0000,0.0000 +2012,4,17,9,30,6.800000000000001,0.85,0.07100000000000001,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.323,70.07000000000001,120.13,0.91,0.21,894,0.8,183,3.8000000000000003,0.0000,0.0000 +2012,4,17,10,30,6.4,0.86,0.07100000000000001,0.63,0,0,0,0,0,1.8,0,0,0,0,0.319,72.61,110.22,0.91,0.21,894,0.8,187,3.8000000000000003,0.0000,0.0000 +2012,4,17,11,30,6.2,0.86,0.07100000000000001,0.63,0,0,0,0,0,2,0,0,0,0,0.316,74.73,99.11,0.91,0.21,895,0.8,192,3.8000000000000003,0.0000,0.0000 +2012,4,17,12,30,7.300000000000001,0.88,0.069,0.63,20,215,31,0,0,2.3000000000000003,20,215,0,31,0.314,70.45,87.09,0.91,0.21,895,0.8,197,4.2,0.0000,0.0000 +2012,4,17,13,30,10.5,0.91,0.068,0.63,57,661,227,0,0,2.6,57,661,0,227,0.312,57.89,75.09,0.91,0.21,895,0.8,200,4.7,10.7274,8.2391 +2012,4,17,14,30,14.8,0.9400000000000001,0.067,0.63,76,832,455,0,0,2.5,76,832,0,455,0.311,43.54,62.86,0.91,0.21,895,0.8,201,5,24.0560,18.7517 +2012,4,17,15,30,18.6,0.9500000000000001,0.067,0.63,88,916,667,0,0,1.6,88,916,0,667,0.31,32.02,50.85,0.91,0.21,895,0.8,202,5.300000000000001,37.6832,29.5411 +2012,4,17,16,30,21.400000000000002,0.96,0.068,0.63,97,961,839,0,0,0.2,97,961,0,839,0.309,24.44,39.550000000000004,0.91,0.21,895,0.8,205,5.300000000000001,49.1691,38.6419 +2012,4,17,17,30,23.400000000000002,0.9500000000000001,0.069,0.63,103,981,952,0,0,-1,103,981,0,952,0.308,19.75,30.05,0.91,0.21,894,0.9,207,5.300000000000001,57.1488,44.9660 +2012,4,17,18,30,24.8,0.9,0.066,0.63,104,994,1007,0,0,-2.1,104,994,0,1007,0.307,16.78,24.7,0.92,0.21,893,0.9,209,5.4,60.6090,47.7096 +2012,4,17,19,30,25.6,0.92,0.067,0.63,104,990,992,0,0,-2.8000000000000003,104,990,0,992,0.306,15.24,26.25,0.92,0.21,892,0.9,209,5.5,53.1267,41.8151 +2012,4,17,20,30,26,0.97,0.066,0.63,100,976,911,0,0,-3.1,100,976,0,911,0.305,14.48,33.75,0.92,0.21,891,0.9,208,5.6000000000000005,34.5199,27.1507 +2012,4,17,21,30,25.900000000000002,1.05,0.065,0.63,92,945,770,0,0,-3.3000000000000003,92,945,0,770,0.305,14.33,44.2,0.92,0.21,890,0.9,206,5.6000000000000005,38.2411,30.0289 +2012,4,17,22,30,25.3,1.09,0.067,0.63,83,885,579,0,0,-3.4000000000000004,83,885,0,579,0.305,14.780000000000001,55.88,0.92,0.21,889,0.9,203,5.6000000000000005,2.3088,1.8067 +2012,4,17,23,30,23.700000000000003,1.1,0.07,0.63,69,771,358,0,0,-3.2,69,771,0,358,0.305,16.5,68.02,0.92,0.21,889,0.9,198,4.800000000000001,12.7439,9.8898 +2012,4,18,0,30,20.3,1.1,0.076,0.63,45,516,133,0,0,-1.8,45,516,0,133,0.305,22.51,80.2,0.92,0.21,889,1,190,3.7,0.0000,0.0000 +2012,4,18,1,30,17.8,1.08,0.082,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.306,29.150000000000002,92.3,0.92,0.21,889,1,183,3.9000000000000004,0.0000,0.0000 +2012,4,18,2,30,17,1.08,0.084,0.63,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.307,30.12,103.83,0.92,0.21,890,1,182,4.9,0.0000,0.0000 +2012,4,18,3,30,15.9,1.1,0.084,0.63,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.307,32.52,114.46000000000001,0.92,0.21,890,1,183,5.1000000000000005,0.0000,0.0000 +2012,4,18,4,30,14.5,1.12,0.083,0.63,0,0,0,0,0,-0.2,0,0,0,0,0.306,36.49,123.60000000000001,0.91,0.21,890,1,185,4.9,0.0000,0.0000 +2012,4,18,5,30,13.4,1.1300000000000001,0.08,0.63,0,0,0,0,0,0,0,0,0,0,0.306,39.95,130.35,0.92,0.21,890,1,187,4.800000000000001,0.0000,0.0000 +2012,4,18,6,30,12.4,1.1400000000000001,0.078,0.63,0,0,0,0,0,0.2,0,0,0,0,0.307,43.01,133.63,0.92,0.21,889,1,192,4.6000000000000005,0.0000,0.0000 +2012,4,18,7,30,11.600000000000001,1.12,0.075,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.309,45.71,132.69,0.92,0.21,889,1,198,4.5,0.0000,0.0000 +2012,4,18,8,30,10.8,1.09,0.074,0.63,0,0,0,0,0,0.4,0,0,0,0,0.312,48.57,127.75,0.92,0.21,889,1,205,4.3,0.0000,0.0000 +2012,4,18,9,30,10.100000000000001,1.04,0.074,0.63,0,0,0,0,0,0.5,0,0,0,0,0.316,51.370000000000005,119.82000000000001,0.92,0.21,889,1,210,4.2,0.0000,0.0000 +2012,4,18,10,30,9.600000000000001,1,0.076,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.319,53.550000000000004,109.93,0.92,0.21,889,0.9,213,4.2,0.0000,0.0000 +2012,4,18,11,30,9.3,0.96,0.077,0.63,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.319,54.81,98.85000000000001,0.92,0.21,889,0.9,214,4.2,0.0000,0.0000 +2012,4,18,12,30,10.5,0.93,0.075,0.63,21,218,33,0,0,0.7000000000000001,21,218,0,33,0.318,50.58,86.86,0.92,0.21,889,0.9,213,4.5,0.0000,0.0000 +2012,4,18,13,30,13.8,0.9,0.074,0.63,59,655,230,0,0,0.8,59,655,0,230,0.314,41.07,74.85000000000001,0.92,0.21,889,0.8,212,5.6000000000000005,11.0916,8.5226 +2012,4,18,14,30,18,0.88,0.074,0.63,79,824,458,0,0,0.9,79,824,0,458,0.312,31.59,62.620000000000005,0.91,0.21,889,0.8,217,6.7,24.6381,19.2088 +2012,4,18,15,30,21.6,0.87,0.07100000000000001,0.63,91,917,673,0,0,0.4,91,917,0,673,0.311,24.42,50.6,0.91,0.21,889,0.7000000000000001,229,6.4,38.4104,30.1134 +2012,4,18,16,30,24.8,0.87,0.068,0.63,98,967,846,0,0,-1,98,967,0,846,0.309,18.12,39.27,0.91,0.21,888,0.7000000000000001,240,5.5,49.9753,39.2772 +2012,4,18,17,30,27.3,0.84,0.066,0.63,102,993,965,0,0,-3,102,993,0,965,0.309,13.51,29.73,0.91,0.21,887,0.7000000000000001,246,4.9,57.7229,45.4191 +2012,4,18,18,30,29,0.88,0.066,0.63,104,1003,1018,0,0,-4.7,104,1003,0,1018,0.309,10.81,24.35,0.91,0.21,886,0.7000000000000001,247,4.7,61.4891,48.4037 +2012,4,18,19,30,29.900000000000002,0.86,0.063,0.63,102,1003,1004,0,0,-5.800000000000001,102,1003,0,1004,0.309,9.43,25.94,0.91,0.21,885,0.7000000000000001,246,4.800000000000001,60.4611,47.5891 +2012,4,18,20,30,30.200000000000003,0.85,0.06,0.63,97,990,923,0,0,-6.6000000000000005,97,990,0,923,0.309,8.73,33.51,0.91,0.21,885,0.7000000000000001,245,4.9,54.9049,43.1852 +2012,4,18,21,30,30.1,1.1400000000000001,0.08600000000000001,0.63,101,936,774,0,0,-7.2,101,936,0,774,0.309,8.38,44.02,0.9,0.21,884,0.7000000000000001,245,5,45.3241,35.5922 +2012,4,18,22,30,29.5,1.1,0.082,0.63,89,879,584,0,0,-7.7,89,879,0,584,0.309,8.35,55.72,0.91,0.21,883,0.7000000000000001,243,4.7,32.6294,25.5356 +2012,4,18,23,30,26.900000000000002,1.04,0.076,0.63,71,774,363,0,0,-7.6000000000000005,71,774,0,363,0.308,9.78,67.87,0.91,0.21,883,0.7000000000000001,238,3.2,18.6452,14.4717 +2012,4,19,0,30,22.3,0.96,0.07200000000000001,0.63,45,537,138,0,0,-0.9,45,537,0,138,0.307,21.32,80.06,0.91,0.21,883,0.7000000000000001,225,1.8,0.0000,0.0000 +2012,4,19,1,30,19.1,0.9,0.069,0.63,0,0,0,0,7,-0.4,0,0,0,0,0.306,26.82,92.14,0.91,0.21,883,0.7000000000000001,207,1.9000000000000001,0.0000,0.0000 +2012,4,19,2,30,18.3,0.88,0.069,0.63,0,0,0,0,7,-1.1,0,0,0,0,0.306,26.8,103.64,0.91,0.21,882,0.8,195,2.6,0.0000,0.0000 +2012,4,19,3,30,18.3,0.91,0.077,0.63,0,0,0,0,7,-0.9,0,0,0,0,0.305,27.23,114.24000000000001,0.92,0.21,882,0.9,191,4,0.0000,0.0000 +2012,4,19,4,30,17.900000000000002,0.97,0.093,0.63,0,0,0,0,7,0.5,0,0,0,0,0.305,31.060000000000002,123.34,0.92,0.21,882,0.9,190,5.2,0.0000,0.0000 +2012,4,19,5,30,16.900000000000002,1.03,0.10400000000000001,0.63,0,0,0,0,7,2.4000000000000004,0,0,0,0,0.304,37.7,130.05,0.92,0.21,882,0.9,191,5.4,0.0000,0.0000 +2012,4,19,6,30,15.9,1.08,0.10300000000000001,0.63,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.304,43.02,133.29,0.92,0.21,881,0.8,194,5.5,0.0000,0.0000 +2012,4,19,7,30,15.100000000000001,1.1400000000000001,0.10300000000000001,0.63,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.303,45.35,132.34,0.92,0.21,881,0.8,199,5.300000000000001,0.0000,0.0000 +2012,4,19,8,30,14.4,1.1400000000000001,0.101,0.63,0,0,0,0,0,2.6,0,0,0,0,0.304,45,127.42,0.92,0.21,881,0.8,208,5.1000000000000005,0.0000,0.0000 +2012,4,19,9,30,13.9,1.07,0.091,0.63,0,0,0,0,8,1.5,0,0,0,0,0.305,42.94,119.52,0.92,0.21,881,0.8,225,4.800000000000001,0.0000,0.0000 +2012,4,19,10,30,13.600000000000001,1.01,0.081,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.307,38.15,109.66,0.92,0.21,881,0.9,249,4.5,0.0000,0.0000 +2012,4,19,11,30,13.4,1.01,0.079,0.63,0,0,0,0,0,-2.1,0,0,0,0,0.308,34.160000000000004,98.59,0.91,0.21,882,0.9,270,4.2,0.0000,0.0000 +2012,4,19,12,30,14.5,1.04,0.08,0.63,22,227,35,7,3,-2.5,22,0,7,22,0.31,30.87,86.63,0.91,0.21,882,1,275,4.4,0.0000,0.0000 +2012,4,19,13,30,17.400000000000002,1.06,0.08,0.63,60,642,230,0,7,-2.2,106,400,0,212,0.311,26.16,74.62,0.92,0.21,882,1.1,274,4.6000000000000005,11.2618,8.6570 +2012,4,19,14,30,21.400000000000002,1.08,0.08,0.63,80,806,453,0,1,-0.9,80,806,0,453,0.312,22.42,62.39,0.92,0.21,883,1.2000000000000002,290,5.1000000000000005,24.8403,19.3697 +2012,4,19,15,30,24.5,1.12,0.08700000000000001,0.63,96,877,656,7,2,1.1,264,609,7,653,0.311,21.580000000000002,50.35,0.93,0.21,883,1.4000000000000001,315,5.4,38.7927,30.4154 +2012,4,19,16,30,25.700000000000003,1.1500000000000001,0.098,0.63,111,910,818,7,2,2.4000000000000004,288,674,7,813,0.311,22.07,39,0.9400000000000001,0.21,883,1.6,329,4.800000000000001,50.4245,39.6320 +2012,4,19,17,30,25.700000000000003,1.16,0.11,0.63,123,924,928,0,8,3.2,247,689,0,847,0.311,23.240000000000002,29.41,0.9400000000000001,0.21,883,1.7000000000000002,335,4.2,58.5389,46.0626 +2012,4,19,18,30,25,1.16,0.11,0.63,125,930,975,0,7,3.6,467,126,0,583,0.311,24.990000000000002,24,0.9400000000000001,0.21,883,1.9000000000000001,338,4,62.1856,48.9531 +2012,4,19,19,30,23.900000000000002,1.2,0.107,0.63,123,930,961,0,4,4.3,489,98,0,577,0.312,27.990000000000002,25.64,0.9400000000000001,0.21,883,1.9000000000000001,342,3.6,61.2159,48.1843 +2012,4,19,20,30,23.1,1.23,0.096,0.63,113,921,883,0,6,5,414,77,0,478,0.313,30.96,33.28,0.9400000000000001,0.21,883,1.9000000000000001,345,2.9000000000000004,55.6517,43.7738 +2012,4,19,21,30,22.6,1.2,0.083,0.63,100,898,747,0,6,5.5,345,61,0,389,0.314,32.910000000000004,43.84,0.9400000000000001,0.21,882,1.9000000000000001,338,1.9000000000000001,45.5826,35.7965 +2012,4,19,22,30,22,1.16,0.081,0.63,88,841,564,0,6,5.5,230,26,0,245,0.316,34.11,55.57,0.9400000000000001,0.21,882,1.8,288,1,32.9365,25.7776 +2012,4,19,23,30,20.8,1.18,0.099,0.63,78,706,346,0,7,5.2,184,49,0,203,0.318,36.02,67.73,0.9400000000000001,0.21,882,1.8,290,0.8,18.9293,14.6946 +2012,4,20,0,30,18.3,1.24,0.14300000000000002,0.63,56,399,126,0,8,6.800000000000001,94,45,0,102,0.32,47.13,79.91,0.96,0.21,883,2,169,2.2,0.0000,0.0000 +2012,4,20,1,30,15.3,1.29,0.216,0.63,0,0,0,0,4,7.1000000000000005,0,0,0,0,0.323,58.230000000000004,91.98,0.96,0.21,884,2,6,5.1000000000000005,0.0000,0.0000 +2012,4,20,2,30,12.8,1.34,0.234,0.63,0,0,0,0,6,7.300000000000001,0,0,0,0,0.328,69.05,103.46000000000001,0.96,0.21,886,2,13,6.9,0.0000,0.0000 +2012,4,20,3,30,11,1.34,0.209,0.63,0,0,0,0,4,7.2,0,0,0,0,0.332,77.48,114.02,0.96,0.21,886,1.9000000000000001,18,6.6000000000000005,0.0000,0.0000 +2012,4,20,4,30,10.200000000000001,1.3,0.185,0.63,0,0,0,0,7,7,0,0,0,0,0.335,80.55,123.08,0.96,0.21,887,1.8,22,5.300000000000001,0.0000,0.0000 +2012,4,20,5,30,10,1.27,0.168,0.63,0,0,0,0,4,6.800000000000001,0,0,0,0,0.337,80.45,129.74,0.96,0.21,887,1.8,21,3.9000000000000004,0.0000,0.0000 +2012,4,20,6,30,10,1.25,0.163,0.63,0,0,0,0,7,6.7,0,0,0,0,0.338,80.09,132.95,0.96,0.21,887,1.8,11,3,0.0000,0.0000 +2012,4,20,7,30,9.9,1.23,0.158,0.63,0,0,0,0,8,6.800000000000001,0,0,0,0,0.339,81.03,131.99,0.96,0.21,888,1.8,178,2.6,0.0000,0.0000 +2012,4,20,8,30,9.700000000000001,1.2,0.152,0.63,0,0,0,0,0,6.9,0,0,0,0,0.341,82.58,127.09,0.9500000000000001,0.21,888,1.8,346,2.6,0.0000,0.0000 +2012,4,20,9,30,9.3,1.1500000000000001,0.136,0.63,0,0,0,0,7,7,0,0,0,0,0.34400000000000003,85.3,119.21000000000001,0.9500000000000001,0.21,888,1.7000000000000002,341,2.6,0.0000,0.0000 +2012,4,20,10,30,8.8,1.08,0.113,0.63,0,0,0,0,8,7,0,0,0,0,0.34700000000000003,88.60000000000001,109.38,0.9400000000000001,0.21,889,1.5,343,2.7,0.0000,0.0000 +2012,4,20,11,30,8.4,1.01,0.098,0.63,0,0,0,0,0,7,0,0,0,0,0.34700000000000003,91,98.34,0.93,0.21,889,1.4000000000000001,345,3.2,0.0000,0.0000 +2012,4,20,12,30,9.3,0.9500000000000001,0.096,0.63,24,198,36,0,0,7.1000000000000005,24,198,0,36,0.34400000000000003,85.86,86.39,0.93,0.21,890,1.4000000000000001,352,4.2,0.0000,0.0000 +2012,4,20,13,30,11.700000000000001,0.91,0.096,0.63,65,607,228,0,0,6.9,65,607,0,228,0.34,72.53,74.38,0.93,0.21,891,1.3,182,5.2,10.4017,7.9991 +2012,4,20,14,30,14.3,0.9,0.098,0.63,88,776,451,7,3,6,264,49,7,287,0.336,57.51,62.160000000000004,0.93,0.21,892,1.3,8,5.6000000000000005,24.6065,19.1903 +2012,4,20,15,30,16.400000000000002,0.9,0.1,0.63,104,863,657,0,3,5.300000000000001,385,150,0,481,0.332,47.81,50.1,0.93,0.21,892,1.3,8,5.6000000000000005,37.6752,29.5414 +2012,4,20,16,30,18.1,0.91,0.1,0.63,114,913,826,0,3,4.7,462,137,0,568,0.329,41.300000000000004,38.730000000000004,0.93,0.21,892,1.3,9,5.5,48.4871,38.1108 +2012,4,20,17,30,19.400000000000002,0.89,0.097,0.63,119,942,942,0,0,4.1000000000000005,119,942,0,942,0.326,36.49,29.1,0.93,0.21,892,1.3,10,5.5,51.4048,40.4501 +2012,4,20,18,30,20.3,0.76,0.084,0.63,115,962,996,0,0,3.3000000000000003,115,962,0,996,0.324,32.63,23.66,0.92,0.21,892,1.3,9,5.5,35.6271,28.0467 +2012,4,20,19,30,21,0.78,0.078,0.63,111,968,986,0,0,2.3000000000000003,111,968,0,986,0.322,29.04,25.34,0.92,0.21,891,1.2000000000000002,8,5.300000000000001,35.1937,27.7023 +2012,4,20,20,30,21.3,0.8,0.074,0.63,105,955,905,0,0,1.3,105,955,0,905,0.32,26.51,33.06,0.92,0.21,891,1.2000000000000002,5,5.1000000000000005,28.8323,22.6791 +2012,4,20,21,30,21.200000000000003,0.89,0.08,0.63,100,917,764,0,0,0.5,100,917,0,764,0.317,25.25,43.660000000000004,0.92,0.21,890,1.2000000000000002,2,4.800000000000001,22.9206,18.0004 +2012,4,20,22,30,20.6,0.84,0.076,0.63,88,863,578,0,0,0,88,863,0,578,0.315,25.26,55.410000000000004,0.92,0.21,890,1.1,1,4.3,13.8274,10.8226 +2012,4,20,23,30,19.400000000000002,0.81,0.076,0.63,73,752,359,0,0,-0.4,73,752,0,359,0.313,26.490000000000002,67.58,0.92,0.21,890,1.1,4,3.3000000000000003,10.5981,8.2284 +2012,4,21,0,30,16.5,0.77,0.078,0.63,48,507,138,0,0,0.4,48,507,0,138,0.311,33.54,79.76,0.92,0.21,890,1.1,19,1.9000000000000001,4.8629,3.7062 +2012,4,21,1,30,13.600000000000001,0.75,0.077,0.63,0,0,0,0,3,2.6,0,0,0,0,0.31,47.35,91.81,0.92,0.21,890,1.2000000000000002,46,1.2000000000000002,0.0000,0.0000 +2012,4,21,2,30,12.3,0.76,0.075,0.63,0,0,0,0,0,1.8,0,0,0,0,0.309,48.79,103.27,0.92,0.21,891,1.2000000000000002,73,1.2000000000000002,0.0000,0.0000 +2012,4,21,3,30,11.3,0.77,0.074,0.63,0,0,0,0,0,1.3,0,0,0,0,0.308,50.160000000000004,113.81,0.92,0.21,891,1.2000000000000002,94,1.3,0.0000,0.0000 +2012,4,21,4,30,10.5,0.76,0.073,0.63,0,0,0,0,0,0.9,0,0,0,0,0.307,51.38,122.82000000000001,0.92,0.21,891,1.3,113,1.4000000000000001,0.0000,0.0000 +2012,4,21,5,30,9.8,0.79,0.067,0.63,0,0,0,0,0,0.5,0,0,0,0,0.307,52.550000000000004,129.44,0.92,0.21,891,1.3,129,1.6,0.0000,0.0000 +2012,4,21,6,30,9.200000000000001,0.85,0.062,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.306,53.870000000000005,132.62,0.91,0.21,891,1.3,144,2,0.0000,0.0000 +2012,4,21,7,30,8.700000000000001,0.93,0.06,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.305,55.52,131.65,0.91,0.21,890,1.3,157,2.3000000000000003,0.0000,0.0000 +2012,4,21,8,30,8.200000000000001,0.97,0.059000000000000004,0.63,0,0,0,0,0,0.4,0,0,0,0,0.303,57.85,126.76,0.91,0.21,890,1.3,170,2.7,0.0000,0.0000 +2012,4,21,9,30,7.7,0.9500000000000001,0.059000000000000004,0.63,0,0,0,0,0,0.5,0,0,0,0,0.302,60.47,118.92,0.91,0.21,890,1.3,184,2.9000000000000004,0.0000,0.0000 +2012,4,21,10,30,7.2,0.92,0.06,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.301,63,109.11,0.91,0.21,890,1.2000000000000002,197,3.2,0.0000,0.0000 +2012,4,21,11,30,7,0.92,0.059000000000000004,0.63,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.3,64,98.09,0.91,0.21,890,1.2000000000000002,209,3.5,0.0000,0.0000 +2012,4,21,12,30,8.200000000000001,0.9400000000000001,0.057,0.63,23,290,42,0,0,0.7000000000000001,23,290,0,42,0.299,59.300000000000004,86.16,0.91,0.21,890,1.2000000000000002,219,4,0.0000,0.0000 +2012,4,21,13,30,11.600000000000001,0.9500000000000001,0.056,0.63,54,688,242,0,0,1,54,688,0,242,0.299,48.11,74.16,0.9,0.21,890,1.1,225,4.7,11.2108,8.6249 +2012,4,21,14,30,16,0.9500000000000001,0.054,0.63,71,844,468,0,0,1.2000000000000002,71,844,0,468,0.298,36.78,61.93,0.9,0.21,890,1.1,229,5.300000000000001,15.6130,12.1782 +2012,4,21,15,30,20.200000000000003,0.9500000000000001,0.051000000000000004,0.63,81,925,677,0,0,1.2000000000000002,81,925,0,677,0.297,28.150000000000002,49.86,0.9,0.21,890,1.1,235,5.5,27.7773,21.7820 +2012,4,21,16,30,23.900000000000002,0.9500000000000001,0.049,0.63,87,969,846,0,0,0.8,87,969,0,846,0.297,21.89,38.46,0.9,0.21,890,1.1,246,4.6000000000000005,33.8958,26.6431 +2012,4,21,17,30,26.6,0.97,0.048,0.63,91,993,961,0,0,0.5,91,993,0,961,0.297,18.26,28.79,0.9,0.21,889,1.1,268,3.1,57.1959,45.0084 +2012,4,21,18,30,28.200000000000003,0.9500000000000001,0.057,0.63,98,998,1015,0,0,0.5,98,998,0,1015,0.297,16.62,23.32,0.9,0.21,888,1,308,2.4000000000000004,60.8882,47.9340 +2012,4,21,19,30,29,0.96,0.057,0.63,97,992,996,0,0,0.4,97,992,0,996,0.297,15.780000000000001,25.04,0.9,0.21,888,1.1,167,2.7,60.1619,47.3567 +2012,4,21,20,30,29.1,1,0.057,0.63,94,977,915,0,0,0.30000000000000004,94,977,0,915,0.297,15.47,32.84,0.9,0.21,888,1.1,7,3.5,54.6090,42.9558 +2012,4,21,21,30,28.700000000000003,0.98,0.063,0.63,91,936,770,0,0,0.1,91,936,0,770,0.297,15.71,43.480000000000004,0.9,0.21,888,1.2000000000000002,17,4,45.0388,35.3720 +2012,4,21,22,30,27.700000000000003,0.99,0.063,0.63,81,879,582,0,0,0.2,81,879,0,582,0.296,16.76,55.26,0.9,0.21,888,1.2000000000000002,25,4.2,32.6462,25.5536 +2012,4,21,23,30,25.700000000000003,1.02,0.062,0.63,66,775,364,0,0,0.6000000000000001,66,775,0,364,0.296,19.34,67.43,0.9,0.21,888,1.2000000000000002,33,3.6,18.7658,14.5721 +2012,4,22,0,30,22,1.07,0.06,0.63,43,555,143,0,0,2.2,43,555,0,143,0.295,27.14,79.61,0.89,0.21,889,1.2000000000000002,44,2.6,6.5780,5.0142 +2012,4,22,1,30,18.900000000000002,1.1300000000000001,0.056,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.295,37.02,91.65,0.89,0.21,889,1.2000000000000002,54,2.4000000000000004,0.0000,0.0000 +2012,4,22,2,30,17.5,1.19,0.051000000000000004,0.63,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.295,40.15,103.09,0.88,0.21,890,1.2000000000000002,64,2.9000000000000004,0.0000,0.0000 +2012,4,22,3,30,16.3,1.23,0.048,0.63,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.295,44.11,113.59,0.88,0.21,891,1.2000000000000002,74,3.1,0.0000,0.0000 +2012,4,22,4,30,14.9,1.23,0.048,0.63,0,0,0,0,0,4.5,0,0,0,0,0.296,49.61,122.57000000000001,0.88,0.21,891,1.3,82,2.8000000000000003,0.0000,0.0000 +2012,4,22,5,30,13.700000000000001,1.2,0.052000000000000005,0.63,0,0,0,0,0,4.7,0,0,0,0,0.297,54.67,129.14000000000001,0.89,0.21,891,1.4000000000000001,89,2.4000000000000004,0.0000,0.0000 +2012,4,22,6,30,12.600000000000001,1.18,0.056,0.63,0,0,0,0,0,4.800000000000001,0,0,0,0,0.298,58.980000000000004,132.29,0.89,0.21,891,1.5,95,2,0.0000,0.0000 +2012,4,22,7,30,11.700000000000001,1.17,0.057,0.63,0,0,0,0,0,4.7,0,0,0,0,0.298,62.35,131.31,0.89,0.21,892,1.5,101,1.7000000000000002,0.0000,0.0000 +2012,4,22,8,30,10.9,1.16,0.056,0.63,0,0,0,0,0,4.7,0,0,0,0,0.299,65.61,126.44,0.9,0.21,892,1.5,104,1.5,0.0000,0.0000 +2012,4,22,9,30,10.200000000000001,1.1500000000000001,0.056,0.63,0,0,0,0,0,4.800000000000001,0,0,0,0,0.299,68.98,118.62,0.9,0.21,892,1.5,102,1.3,0.0000,0.0000 +2012,4,22,10,30,9.600000000000001,1.1400000000000001,0.056,0.63,0,0,0,0,0,4.9,0,0,0,0,0.299,72.34,108.84,0.9,0.21,892,1.5,94,1.1,0.0000,0.0000 +2012,4,22,11,30,9.4,1.1300000000000001,0.057,0.63,0,0,0,0,0,5,0,0,0,0,0.299,74.15,97.84,0.9,0.21,893,1.5,75,1.3,0.0000,0.0000 +2012,4,22,12,30,11.100000000000001,1.12,0.057,0.63,23,303,44,0,0,5.2,23,303,0,44,0.299,67.16,85.94,0.9,0.21,894,1.5,58,2.4000000000000004,0.0000,0.0000 +2012,4,22,13,30,14.5,1.11,0.059000000000000004,0.63,55,676,242,0,0,5.4,55,676,0,242,0.298,54.5,73.93,0.9,0.21,894,1.5,59,4,11.9229,9.1763 +2012,4,22,14,30,17.8,1.09,0.06,0.63,73,825,464,0,0,4.9,73,825,0,464,0.298,42.56,61.7,0.9,0.21,895,1.5,71,4.9,25.4973,19.8911 +2012,4,22,15,30,20.3,1.06,0.061,0.63,85,901,668,0,0,4,85,901,0,668,0.299,34.17,49.63,0.9,0.21,895,1.5,81,5,39.1306,30.6869 +2012,4,22,16,30,22.1,1.04,0.061,0.63,93,945,835,0,0,3.6,93,945,0,835,0.299,29.73,38.2,0.9,0.21,895,1.5,88,4.5,50.5156,39.7085 +2012,4,22,17,30,23.6,1.04,0.061,0.63,98,966,947,0,0,3.5,98,966,0,947,0.299,26.900000000000002,28.490000000000002,0.91,0.21,895,1.6,95,3.9000000000000004,58.3752,45.9376 +2012,4,22,18,30,24.8,1.04,0.059000000000000004,0.63,99,977,998,0,0,3.4000000000000004,99,977,0,998,0.3,25.02,22.98,0.91,0.21,894,1.6,99,3.3000000000000003,62.0725,48.8674 +2012,4,22,19,30,25.700000000000003,1.06,0.059000000000000004,0.63,98,974,983,0,0,3.5,98,974,0,983,0.3,23.79,24.75,0.91,0.21,894,1.6,99,2.9000000000000004,60.7935,47.8550 +2012,4,22,20,30,26.1,1.07,0.058,0.63,94,960,903,0,0,3.5,94,960,0,903,0.301,23.22,32.61,0.91,0.21,893,1.6,95,2.8000000000000003,55.2332,43.4478 +2012,4,22,21,30,26,1.31,0.13,0.63,119,866,749,0,0,3.4000000000000004,119,866,0,749,0.302,23.2,43.31,0.91,0.21,892,1.6,92,3.1,45.4149,35.6686 +2012,4,22,22,30,25.200000000000003,1.32,0.129,0.63,105,800,563,0,0,3.3000000000000003,105,800,0,563,0.303,24.12,55.11,0.91,0.21,892,1.6,92,3.5,32.8953,25.7502 +2012,4,22,23,30,23.700000000000003,1.33,0.124,0.63,84,688,350,0,0,3.1,84,688,0,350,0.305,26.14,67.29,0.91,0.21,892,1.6,93,3.9000000000000004,19.0506,14.7955 +2012,4,23,0,30,20.900000000000002,1.33,0.11800000000000001,0.63,52,461,137,0,0,3.1,52,461,0,137,0.306,31.02,79.46000000000001,0.91,0.21,893,1.5,95,3.8000000000000003,6.8158,5.1964 +2012,4,23,1,30,18.3,1.34,0.112,0.63,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.307,36.88,91.49,0.91,0.21,893,1.5,98,4,0.0000,0.0000 +2012,4,23,2,30,16.5,1.35,0.108,0.63,0,0,0,0,0,3,0,0,0,0,0.307,40.31,102.9,0.91,0.21,894,1.5,102,4.3,0.0000,0.0000 +2012,4,23,3,30,14.9,1.37,0.107,0.63,0,0,0,0,0,3,0,0,0,0,0.308,44.660000000000004,113.37,0.91,0.21,895,1.6,106,4,0.0000,0.0000 +2012,4,23,4,30,13.600000000000001,1.3800000000000001,0.112,0.63,0,0,0,0,0,3,0,0,0,0,0.308,48.77,122.31,0.91,0.21,895,1.7000000000000002,110,3.5,0.0000,0.0000 +2012,4,23,5,30,12.5,1.3900000000000001,0.121,0.63,0,0,0,0,0,3.1,0,0,0,0,0.307,52.64,128.85,0.92,0.21,895,1.8,116,3,0.0000,0.0000 +2012,4,23,6,30,11.9,1.3800000000000001,0.137,0.63,0,0,0,0,0,3.1,0,0,0,0,0.307,54.72,131.96,0.93,0.21,895,1.9000000000000001,124,2.8000000000000003,0.0000,0.0000 +2012,4,23,7,30,11.600000000000001,1.3800000000000001,0.161,0.63,0,0,0,0,7,2.9000000000000004,0,0,0,0,0.306,55.26,130.97,0.9400000000000001,0.21,895,2,133,2.7,0.0000,0.0000 +2012,4,23,8,30,11.3,1.3900000000000001,0.193,0.63,0,0,0,0,7,2.7,0,0,0,0,0.306,55.65,126.12,0.9500000000000001,0.21,896,2.1,141,2.7,0.0000,0.0000 +2012,4,23,9,30,10.8,1.3900000000000001,0.225,0.63,0,0,0,0,6,2.6,0,0,0,0,0.305,57.09,118.33,0.96,0.21,896,2.1,143,2.8000000000000003,0.0000,0.0000 +2012,4,23,10,30,10.100000000000001,1.41,0.243,0.63,0,0,0,0,7,3.2,0,0,0,0,0.305,62.14,108.58,0.96,0.21,896,2.2,143,2.9000000000000004,0.0000,0.0000 +2012,4,23,11,30,9.700000000000001,1.43,0.23700000000000002,0.63,0,0,0,0,7,3.6,0,0,0,0,0.305,65.74,97.60000000000001,0.9500000000000001,0.21,896,2.1,148,3.2,0.0000,0.0000 +2012,4,23,12,30,10.3,1.45,0.216,0.63,29,138,40,7,7,3.7,22,0,7,23,0.305,63.78,85.72,0.9500000000000001,0.21,895,2,161,3.5,0.0000,0.0000 +2012,4,23,13,30,12.3,1.48,0.182,0.63,83,516,227,0,0,3.5,83,516,0,227,0.305,54.97,73.71000000000001,0.9400000000000001,0.21,895,1.9000000000000001,179,4,11.9480,9.1992 +2012,4,23,14,30,15.3,1.49,0.152,0.63,104,721,448,0,8,3.3000000000000003,207,365,0,382,0.306,44.45,61.480000000000004,0.93,0.21,895,1.8,195,4.6000000000000005,25.3166,19.7531 +2012,4,23,15,30,18.5,1.49,0.13,0.63,113,835,656,0,1,3.2,113,835,0,656,0.306,36.1,49.4,0.93,0.21,894,1.7000000000000002,203,5,38.6426,30.3062 +2012,4,23,16,30,21.5,1.48,0.115,0.63,117,900,826,7,3,3.2,462,225,7,639,0.307,30.01,37.94,0.92,0.21,894,1.6,204,5.300000000000001,49.8870,39.2158 +2012,4,23,17,30,23.700000000000003,1.47,0.10400000000000001,0.63,117,935,941,0,0,3,117,935,0,941,0.308,25.84,28.19,0.91,0.21,893,1.6,206,5.2,57.5489,45.2885 +2012,4,23,18,30,25.400000000000002,1.41,0.084,0.63,110,963,999,0,0,2.5,110,963,0,999,0.309,22.53,22.64,0.91,0.21,892,1.5,209,5.1000000000000005,61.0548,48.0673 +2012,4,23,19,30,26.6,1.41,0.08,0.63,108,966,987,0,0,2,108,966,0,987,0.31,20.29,24.46,0.91,0.21,891,1.4000000000000001,212,5,60.0202,47.2472 +2012,4,23,20,30,27.3,1.4000000000000001,0.076,0.63,101,953,906,0,0,1.6,101,953,0,906,0.31,18.95,32.4,0.9,0.21,890,1.4000000000000001,214,4.800000000000001,54.5300,42.8957 +2012,4,23,21,30,27.5,1.3800000000000001,0.07200000000000001,0.63,93,927,770,0,0,1.3,93,927,0,770,0.31,18.36,43.14,0.9,0.21,889,1.3,213,4.5,44.1968,34.7131 +2012,4,23,22,30,27.1,1.36,0.07,0.63,83,875,585,0,0,1.2000000000000002,83,875,0,585,0.31,18.55,54.96,0.9,0.21,888,1.2000000000000002,209,4.2,31.8437,24.9285 +2012,4,23,23,30,25.6,1.34,0.067,0.63,67,775,368,0,0,1.1,67,775,0,368,0.309,20.18,67.15,0.89,0.21,888,1.2000000000000002,201,3.2,18.3389,14.2448 +2012,4,24,0,30,21.900000000000002,1.33,0.065,0.63,44,560,148,0,1,3.1,44,560,0,148,0.31,29.17,79.31,0.89,0.21,888,1.2000000000000002,189,2.3000000000000003,6.5299,4.9793 +2012,4,24,1,30,19,1.32,0.064,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.31,36.86,91.33,0.89,0.21,888,1.1,181,2.5,0.0000,0.0000 +2012,4,24,2,30,18,1.29,0.064,0.63,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.31,36.59,102.72,0.89,0.21,888,1.2000000000000002,183,3.1,0.0000,0.0000 +2012,4,24,3,30,17.1,1.24,0.066,0.63,0,0,0,0,0,2.6,0,0,0,0,0.311,37.75,113.16,0.89,0.21,888,1.2000000000000002,188,3.5,0.0000,0.0000 +2012,4,24,4,30,16.2,1.19,0.069,0.63,0,0,0,0,0,2.5,0,0,0,0,0.311,39.75,122.06,0.89,0.21,888,1.2000000000000002,192,3.6,0.0000,0.0000 +2012,4,24,5,30,15.3,1.16,0.07100000000000001,0.63,0,0,0,0,0,2.5,0,0,0,0,0.311,42.25,128.55,0.9,0.21,888,1.2000000000000002,197,3.7,0.0000,0.0000 +2012,4,24,6,30,14.5,1.16,0.07200000000000001,0.63,0,0,0,0,0,2.6,0,0,0,0,0.31,44.81,131.63,0.9,0.21,888,1.2000000000000002,201,3.8000000000000003,0.0000,0.0000 +2012,4,24,7,30,13.9,1.2,0.073,0.63,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.31,47.13,130.64000000000001,0.9,0.21,888,1.2000000000000002,205,3.8000000000000003,0.0000,0.0000 +2012,4,24,8,30,13.3,1.26,0.076,0.63,0,0,0,0,0,3.1,0,0,0,0,0.31,49.86,125.81,0.91,0.21,888,1.3,210,3.8000000000000003,0.0000,0.0000 +2012,4,24,9,30,12.700000000000001,1.32,0.079,0.63,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.31,52.93,118.04,0.91,0.21,888,1.4000000000000001,216,3.6,0.0000,0.0000 +2012,4,24,10,30,12.3,1.37,0.083,0.63,0,0,0,0,0,3.5,0,0,0,0,0.31,54.95,108.31,0.91,0.21,888,1.4000000000000001,222,3.4000000000000004,0.0000,0.0000 +2012,4,24,11,30,12.3,1.3900000000000001,0.083,0.63,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.31,54.56,97.36,0.91,0.21,888,1.4000000000000001,229,3.5,0.0000,0.0000 +2012,4,24,12,30,13.9,1.3900000000000001,0.08,0.63,26,297,49,0,0,3.2,26,297,0,49,0.31,48.4,85.5,0.91,0.21,888,1.4000000000000001,232,4,0.0000,0.0000 +2012,4,24,13,30,17.3,1.3800000000000001,0.076,0.63,59,664,248,0,0,3.2,59,664,0,248,0.31,38.85,73.5,0.91,0.21,887,1.4000000000000001,233,4.4,11.2301,8.6496 +2012,4,24,14,30,21.900000000000002,1.37,0.07200000000000001,0.63,77,820,471,0,0,3.4000000000000004,77,820,0,471,0.309,29.78,61.27,0.91,0.21,887,1.4000000000000001,231,4.6000000000000005,20.8716,16.2871 +2012,4,24,15,30,26.5,1.34,0.068,0.63,87,902,677,0,0,3.1,87,902,0,677,0.308,22.1,49.17,0.91,0.21,887,1.4000000000000001,227,4.9,37.9798,29.7883 +2012,4,24,16,30,29.8,1.32,0.067,0.63,95,946,843,0,0,1.9000000000000001,95,946,0,843,0.306,16.71,37.69,0.91,0.21,886,1.4000000000000001,225,5,38.1984,30.0286 +2012,4,24,17,30,31.900000000000002,1.28,0.066,0.63,99,973,960,0,0,1.4000000000000001,99,973,0,960,0.305,14.26,27.89,0.91,0.21,885,1.3,228,5.1000000000000005,57.2079,45.0213 +2012,4,24,18,30,33.4,1.25,0.064,0.63,101,984,1011,0,0,1.1,101,984,0,1011,0.303,12.85,22.31,0.91,0.21,884,1.3,233,5.1000000000000005,61.1376,48.1335 +2012,4,24,19,30,34.4,1.23,0.064,0.63,100,981,995,0,0,0.8,100,981,0,995,0.302,11.88,24.17,0.91,0.21,883,1.3,238,5,60.2844,47.4561 +2012,4,24,20,30,34.9,1.24,0.062,0.63,96,971,918,0,0,0.4,96,971,0,918,0.301,11.25,32.18,0.91,0.21,882,1.2000000000000002,241,4.800000000000001,54.7304,43.0543 +2012,4,24,21,30,34.800000000000004,1.27,0.07200000000000001,0.63,94,931,775,0,1,0,94,931,0,775,0.3,10.98,42.97,0.9,0.21,881,1.2000000000000002,245,4.6000000000000005,45.4569,35.7039 +2012,4,24,22,30,34.1,1.29,0.07200000000000001,0.63,84,871,585,7,8,-0.5,246,347,7,446,0.299,10.99,54.81,0.9,0.21,881,1.3,247,4.2,33.1110,25.9222 +2012,4,24,23,30,31.6,1.33,0.074,0.63,70,765,368,0,8,-0.9,156,399,0,312,0.298,12.31,67.01,0.91,0.21,880,1.3,243,2.9000000000000004,19.3040,14.9965 +2012,4,25,0,30,27.1,1.36,0.08,0.63,47,533,148,0,8,4.6000000000000005,24,0,0,24,0.299,23.6,79.17,0.92,0.21,880,1.4000000000000001,233,1.7000000000000002,7.0549,5.3807 +2012,4,25,1,30,24.200000000000003,1.3800000000000001,0.095,0.63,0,0,0,0,6,4.5,0,0,0,0,0.299,27.87,91.17,0.93,0.21,880,1.4000000000000001,229,1.9000000000000001,0.0000,0.0000 +2012,4,25,2,30,23.5,1.3800000000000001,0.111,0.63,0,0,0,0,7,3.4000000000000004,0,0,0,0,0.299,26.93,102.53,0.9400000000000001,0.21,881,1.4000000000000001,232,2.4000000000000004,0.0000,0.0000 +2012,4,25,3,30,23,1.41,0.107,0.63,0,0,0,0,8,2.7,0,0,0,0,0.3,26.41,112.94,0.9400000000000001,0.21,881,1.4000000000000001,237,3,0.0000,0.0000 +2012,4,25,4,30,21.8,1.48,0.083,0.63,0,0,0,0,7,2.1,0,0,0,0,0.3,27.23,121.8,0.93,0.21,881,1.4000000000000001,241,3.5,0.0000,0.0000 +2012,4,25,5,30,20.6,1.51,0.07,0.63,0,0,0,0,1,1.7000000000000002,0,0,0,0,0.302,28.5,128.26,0.92,0.21,881,1.3,244,3.8000000000000003,0.0000,0.0000 +2012,4,25,6,30,19.8,1.53,0.068,0.63,0,0,0,0,0,1.3,0,0,0,0,0.301,29.11,131.31,0.92,0.21,882,1.3,250,4.3,0.0000,0.0000 +2012,4,25,7,30,19.1,1.56,0.067,0.63,0,0,0,0,0,1,0,0,0,0,0.299,29.830000000000002,130.32,0.92,0.21,882,1.3,257,4.6000000000000005,0.0000,0.0000 +2012,4,25,8,30,18.1,1.58,0.061,0.63,0,0,0,0,0,1.1,0,0,0,0,0.299,31.82,125.5,0.91,0.21,882,1.2000000000000002,266,4.5,0.0000,0.0000 +2012,4,25,9,30,16.900000000000002,1.58,0.057,0.63,0,0,0,0,0,1.1,0,0,0,0,0.3,34.300000000000004,117.76,0.9,0.21,882,1,274,3.9000000000000004,0.0000,0.0000 +2012,4,25,10,30,15.9,1.56,0.057,0.63,0,0,0,0,0,0.9,0,0,0,0,0.301,36.25,108.06,0.9,0.21,882,1,280,3.3000000000000003,0.0000,0.0000 +2012,4,25,11,30,15.700000000000001,1.52,0.062,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.3,35.96,97.12,0.9,0.21,882,1,284,3.2,0.0000,0.0000 +2012,4,25,12,30,17.8,1.5,0.066,0.63,25,349,54,0,0,0.30000000000000004,25,349,0,54,0.3,30.72,85.29,0.9,0.21,883,1,285,3.8000000000000003,0.0000,0.0000 +2012,4,25,13,30,21.5,1.48,0.07,0.63,58,690,256,0,0,-0.1,58,690,0,256,0.3,23.740000000000002,73.29,0.9,0.21,883,1.1,283,4.1000000000000005,12.2928,9.4715 +2012,4,25,14,30,26.1,1.5,0.068,0.63,75,839,481,0,0,0.5,75,839,0,481,0.3,18.72,61.06,0.9,0.21,883,1.1,283,4,25.7682,20.1108 +2012,4,25,15,30,31.200000000000003,1.53,0.062,0.63,84,921,689,0,0,0.4,84,921,0,689,0.299,13.81,48.95,0.9,0.21,883,1.1,289,4.4,39.2277,30.7689 +2012,4,25,16,30,34.4,1.57,0.054,0.63,87,973,860,0,0,-2.6,87,973,0,860,0.298,9.27,37.45,0.89,0.21,883,1,294,4.7,50.4200,39.6377 +2012,4,25,17,30,35.7,1.59,0.044,0.63,87,1008,980,0,0,-4.6000000000000005,87,1008,0,980,0.297,7.47,27.6,0.89,0.21,882,0.9,295,4.5,58.3867,45.9502 +2012,4,25,18,30,36.6,1.47,0.052000000000000005,0.63,93,1014,1034,0,0,-6.5,93,1014,0,1034,0.295,6.13,21.990000000000002,0.89,0.21,882,0.8,293,4.3,61.8928,48.7291 +2012,4,25,19,30,37.1,1.46,0.051000000000000004,0.63,92,1008,1014,0,0,-7.9,92,1008,0,1014,0.294,5.34,23.89,0.9,0.21,881,0.9,289,4.1000000000000005,60.7929,47.8574 +2012,4,25,20,30,37.1,1.46,0.051000000000000004,0.63,89,993,932,7,2,-8.5,270,758,7,913,0.293,5.12,31.970000000000002,0.9,0.21,881,0.9,286,3.9000000000000004,55.4756,43.6415 +2012,4,25,21,30,36.7,1.49,0.048,0.63,82,963,788,7,2,-8.4,268,694,7,777,0.292,5.29,42.800000000000004,0.9,0.21,880,1,284,3.6,45.7730,35.9533 +2012,4,25,22,30,35.800000000000004,1.49,0.048,0.63,74,910,600,0,3,-7.800000000000001,340,92,0,394,0.291,5.8,54.67,0.9,0.21,880,1,285,2.9000000000000004,25.2611,19.7777 +2012,4,25,23,30,33.4,1.48,0.049,0.63,62,809,380,0,0,-6.7,62,809,0,380,0.291,7.21,66.86,0.9,0.21,880,1.1,289,1.8,16.3850,12.7306 +2012,4,26,0,30,29.6,1.47,0.052000000000000005,0.63,42,600,156,0,7,5,91,213,0,131,0.291,21.12,79.02,0.9,0.21,880,1.1,309,1,1.1442,0.8729 +2012,4,26,1,30,26.6,1.44,0.062,0.63,0,0,0,0,3,2.7,0,0,0,0,0.291,21.27,91.01,0.91,0.21,881,1.2000000000000002,166,1.2000000000000002,0.0000,0.0000 +2012,4,26,2,30,24.3,1.42,0.07,0.63,0,0,0,0,7,2.9000000000000004,0,0,0,0,0.291,24.85,102.35000000000001,0.92,0.21,881,1.3,15,1.5,0.0000,0.0000 +2012,4,26,3,30,22.3,1.43,0.07,0.63,0,0,0,0,7,3.7,0,0,0,0,0.291,29.55,112.73,0.92,0.21,882,1.4000000000000001,27,1.7000000000000002,0.0000,0.0000 +2012,4,26,4,30,20.5,1.45,0.065,0.63,0,0,0,0,0,4.7,0,0,0,0,0.291,35.51,121.55,0.91,0.21,883,1.5,33,1.8,0.0000,0.0000 +2012,4,26,5,30,18.8,1.47,0.059000000000000004,0.63,0,0,0,0,0,6.300000000000001,0,0,0,0,0.289,44,127.97,0.91,0.21,883,1.6,35,1.8,0.0000,0.0000 +2012,4,26,6,30,17.6,1.47,0.054,0.63,0,0,0,0,0,8,0,0,0,0,0.28800000000000003,53.44,130.99,0.91,0.21,883,1.7000000000000002,35,1.6,0.0000,0.0000 +2012,4,26,7,30,16.6,1.48,0.053,0.63,0,0,0,0,0,9.600000000000001,0,0,0,0,0.28700000000000003,63.18,129.99,0.91,0.21,883,1.7000000000000002,36,1.4000000000000001,0.0000,0.0000 +2012,4,26,8,30,15.8,1.49,0.053,0.63,0,0,0,0,4,10.8,0,0,0,0,0.28800000000000003,72.15,125.19,0.91,0.21,883,1.8,38,1.3,0.0000,0.0000 +2012,4,26,9,30,15.100000000000001,1.5,0.057,0.63,0,0,0,0,0,11.700000000000001,0,0,0,0,0.28800000000000003,80.38,117.48,0.92,0.21,884,1.8,40,1.3,0.0000,0.0000 +2012,4,26,10,30,14.5,1.5,0.063,0.63,0,0,0,0,0,12.4,0,0,0,0,0.28800000000000003,87.38,107.8,0.92,0.21,884,1.9000000000000001,44,1.3,0.0000,0.0000 +2012,4,26,11,30,14.600000000000001,1.51,0.07200000000000001,0.63,0,0,0,0,1,12.9,0,0,0,0,0.289,89.51,96.89,0.92,0.21,885,1.9000000000000001,53,1.5,0.0000,0.0000 +2012,4,26,12,30,16.2,1.51,0.085,0.63,28,301,53,7,7,13.200000000000001,34,3,7,35,0.291,82.60000000000001,85.08,0.93,0.21,885,2,67,2.2,0.0000,0.0000 +2012,4,26,13,30,19.400000000000002,1.51,0.094,0.63,64,632,248,0,4,13.600000000000001,158,34,0,168,0.293,69.37,73.08,0.93,0.21,886,2,83,2.7,12.7141,9.7994 +2012,4,26,14,30,23.400000000000002,1.51,0.10200000000000001,0.63,88,771,463,0,4,14.200000000000001,276,154,0,351,0.294,56.17,60.85,0.93,0.21,886,2.1,96,3.1,26.3495,20.5672 +2012,4,26,15,30,26.400000000000002,1.5,0.112,0.63,106,844,663,0,7,13.600000000000001,351,124,0,433,0.294,45.25,48.74,0.9400000000000001,0.21,886,2.1,105,3.6,39.9539,31.3404 +2012,4,26,16,30,27.700000000000003,1.49,0.124,0.63,122,882,824,0,7,12.4,315,469,0,689,0.293,38.79,37.21,0.9400000000000001,0.21,886,2.1,114,3.7,51.4627,40.4588 +2012,4,26,17,30,28.200000000000003,1.51,0.136,0.63,133,898,931,0,8,11.3,350,457,0,756,0.291,35.07,27.32,0.9400000000000001,0.21,885,2.2,124,3.9000000000000004,59.6262,46.9269 +2012,4,26,18,30,29.1,1.53,0.128,0.63,133,915,983,0,7,10.600000000000001,438,371,0,783,0.29,31.75,21.66,0.9500000000000001,0.21,884,2.2,132,4.4,63.3211,49.8546 +2012,4,26,19,30,30.700000000000003,1.57,0.131,0.63,133,909,966,0,1,10,133,909,0,966,0.29,27.71,23.61,0.9400000000000001,0.21,883,2.2,137,5.1000000000000005,61.9730,48.7873 +2012,4,26,20,30,31.6,1.59,0.131,0.63,128,889,884,7,2,9.3,305,662,7,868,0.29,25.16,31.76,0.9400000000000001,0.21,883,2.3000000000000003,141,5.5,55.1924,43.4198 +2012,4,26,21,30,31.3,1.59,0.147,0.63,127,840,745,0,6,8.700000000000001,282,15,0,293,0.29,24.560000000000002,42.64,0.9500000000000001,0.21,882,2.3000000000000003,146,5.7,45.9119,36.0636 +2012,4,26,22,30,30.200000000000003,1.58,0.17300000000000001,0.63,122,751,558,0,6,8.3,216,18,0,226,0.29,25.46,54.52,0.9500000000000001,0.21,881,2.3000000000000003,147,5.7,22.3301,17.4839 +2012,4,26,23,30,28.5,1.57,0.184,0.63,101,621,347,0,6,8.3,46,0,0,46,0.292,28.16,66.72,0.9400000000000001,0.21,881,2.3000000000000003,141,5.5,19.9802,15.5262 +2012,4,27,0,30,26,1.53,0.176,0.63,63,397,139,0,7,9.200000000000001,63,397,5,139,0.294,34.57,78.88,0.9500000000000001,0.21,881,2.3000000000000003,133,5.5,6.2472,4.7667 +2012,4,27,1,30,23.6,1.49,0.203,0.63,0,0,0,0,3,10.3,0,0,0,0,0.295,43,90.85000000000001,0.9500000000000001,0.21,881,2.2,131,6.1000000000000005,0.0000,0.0000 +2012,4,27,2,30,21.8,1.53,0.20800000000000002,0.63,0,0,0,0,3,11.200000000000001,0,0,0,0,0.296,51.08,102.17,0.9400000000000001,0.21,880,2,132,6.800000000000001,0.0000,0.0000 +2012,4,27,3,30,20.3,1.55,0.187,0.63,0,0,0,0,3,12,0,0,0,0,0.296,59.050000000000004,112.52,0.93,0.21,880,1.9000000000000001,136,6.9,0.0000,0.0000 +2012,4,27,4,30,19.200000000000003,1.51,0.20400000000000001,0.63,0,0,0,0,1,12.4,0,0,0,0,0.297,64.77,121.3,0.9400000000000001,0.21,880,1.8,143,6.5,0.0000,0.0000 +2012,4,27,5,30,18.3,1.44,0.21,0.63,0,0,0,0,0,12,0,0,0,0,0.3,66.69,127.68,0.9400000000000001,0.21,880,1.8,154,5.6000000000000005,0.0000,0.0000 +2012,4,27,6,30,17.2,1.32,0.152,0.63,0,0,0,0,0,11.100000000000001,0,0,0,0,0.304,67.57000000000001,130.68,0.92,0.21,880,1.6,165,4,0.0000,0.0000 +2012,4,27,7,30,15.9,1.16,0.08600000000000001,0.63,0,0,0,0,7,9.8,0,0,0,0,0.308,67.19,129.67000000000002,0.91,0.21,879,1.2000000000000002,195,2.6,0.0000,0.0000 +2012,4,27,8,30,14.9,1,0.061,0.63,0,0,0,0,0,8.1,0,0,0,0,0.313,63.72,124.89,0.9,0.21,879,0.9,240,2.7,0.0000,0.0000 +2012,4,27,9,30,14.4,0.8300000000000001,0.05,0.63,0,0,0,0,0,5.9,0,0,0,0,0.316,56.64,117.2,0.91,0.21,879,0.7000000000000001,265,4.2,0.0000,0.0000 +2012,4,27,10,30,13.8,0.75,0.047,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.316,51.11,107.55,0.91,0.21,879,0.7000000000000001,269,5.1000000000000005,0.0000,0.0000 +2012,4,27,11,30,13.200000000000001,0.8,0.049,0.63,0,0,0,0,0,2.5,0,0,0,0,0.314,48.36,96.66,0.9,0.21,879,0.7000000000000001,268,5.300000000000001,0.0000,0.0000 +2012,4,27,12,30,14,0.86,0.049,0.63,27,400,63,0,0,1.1,27,400,0,63,0.312,41.33,84.87,0.9,0.21,879,0.6000000000000001,267,6.1000000000000005,0.0000,0.0000 +2012,4,27,13,30,16.400000000000002,0.85,0.047,0.63,54,743,273,0,0,-0.4,54,743,0,273,0.308,31.79,72.88,0.9,0.21,879,0.7000000000000001,270,7.6000000000000005,8.3599,6.4456 +2012,4,27,14,30,19.5,0.8,0.042,0.63,68,887,502,0,0,-0.8,68,887,0,502,0.305,25.46,60.65,0.9,0.21,879,0.7000000000000001,274,8.6,19.2528,15.0297 +2012,4,27,15,30,22.700000000000003,0.78,0.039,0.63,76,954,708,0,0,0.2,76,954,0,708,0.305,22.490000000000002,48.52,0.91,0.21,879,0.8,277,8.700000000000001,25.1273,19.7113 +2012,4,27,16,30,25.5,0.78,0.038,0.63,82,989,872,0,0,0.7000000000000001,82,989,0,872,0.306,19.68,36.97,0.9,0.21,879,0.9,279,8.1,41.2506,32.4314 +2012,4,27,17,30,27.700000000000003,0.77,0.037,0.63,85,1010,985,0,0,0.4,85,1010,0,985,0.307,16.98,27.04,0.9,0.21,879,0.9,278,7.300000000000001,46.0144,36.2149 +2012,4,27,18,30,29.1,0.8300000000000001,0.041,0.63,90,1016,1036,0,0,-0.30000000000000004,90,1016,0,1036,0.308,14.84,21.35,0.91,0.21,878,0.9,274,6.6000000000000005,47.9657,37.7656 +2012,4,27,19,30,30,0.8300000000000001,0.041,0.63,89,1013,1019,0,0,-1,89,1013,0,1019,0.308,13.370000000000001,23.330000000000002,0.91,0.21,878,0.9,267,6.300000000000001,59.0574,46.4929 +2012,4,27,20,30,30.200000000000003,0.84,0.043000000000000003,0.63,87,997,937,0,0,-1.7000000000000002,87,997,0,937,0.308,12.6,31.560000000000002,0.91,0.21,878,0.9,263,6.2,52.4900,41.2947 +2012,4,27,21,30,30,1.28,0.091,0.63,103,925,786,0,0,-2.3000000000000003,103,925,0,786,0.309,12.22,42.480000000000004,0.91,0.21,878,0.9,259,6,17.3203,13.6054 +2012,4,27,22,30,29.400000000000002,1.22,0.091,0.63,93,866,597,0,0,-2.7,93,866,0,597,0.31,12.26,54.38,0.91,0.21,877,0.9,256,5.6000000000000005,12.8174,10.0362 +2012,4,27,23,30,27.900000000000002,1.1400000000000001,0.084,0.63,75,767,380,0,0,-2.8000000000000003,75,767,0,380,0.311,13.21,66.58,0.91,0.21,877,0.9,253,4.3,2.4214,1.8818 +2012,4,28,0,30,24.200000000000003,1.07,0.077,0.63,49,558,158,0,0,-0.7000000000000001,49,558,0,158,0.312,19.240000000000002,78.73,0.91,0.21,878,0.9,247,2.7,6.6307,5.0604 +2012,4,28,1,30,21.1,0.98,0.07100000000000001,0.63,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.313,27.03,90.19,0.91,0.21,878,0.9,243,2.4000000000000004,0.0000,0.0000 +2012,4,28,2,30,20.3,0.88,0.064,0.63,0,0,0,0,0,0,0,0,0,0,0.313,25.73,101.99000000000001,0.91,0.21,879,0.9,246,3.2,0.0000,0.0000 +2012,4,28,3,30,19.700000000000003,0.8,0.059000000000000004,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.313,24.28,112.31,0.91,0.21,879,0.9,252,3.9000000000000004,0.0000,0.0000 +2012,4,28,4,30,18.7,0.79,0.057,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.314,24.87,121.05,0.91,0.21,880,0.9,262,4.1000000000000005,0.0000,0.0000 +2012,4,28,5,30,17.6,0.79,0.056,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.315,26.62,127.39,0.91,0.21,880,0.9,275,4.1000000000000005,0.0000,0.0000 +2012,4,28,6,30,16.5,0.79,0.057,0.63,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.315,28.72,130.36,0.91,0.21,881,0.9,289,4,0.0000,0.0000 +2012,4,28,7,30,15.3,0.8,0.06,0.63,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.316,31.91,129.36,0.91,0.21,881,0.9,306,4,0.0000,0.0000 +2012,4,28,8,30,13.8,0.81,0.068,0.63,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.318,37.11,124.59,0.91,0.21,882,0.9,329,4.4,0.0000,0.0000 +2012,4,28,9,30,12.100000000000001,0.81,0.077,0.63,0,0,0,0,0,0.9,0,0,0,0,0.32,46.43,116.93,0.91,0.21,883,0.9,173,4.6000000000000005,0.0000,0.0000 +2012,4,28,10,30,10.700000000000001,0.8,0.081,0.63,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.321,56.410000000000004,107.31,0.91,0.21,883,0.8,8,4.6000000000000005,0.0000,0.0000 +2012,4,28,11,30,10,0.81,0.08600000000000001,0.63,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.32,58.96,96.44,0.91,0.21,884,0.8,16,4.6000000000000005,0.0000,0.0000 +2012,4,28,12,30,10.8,0.87,0.097,0.63,32,294,60,0,0,1,32,294,0,60,0.318,50.84,84.66,0.92,0.21,885,0.8,23,5.4,0.0000,0.0000 +2012,4,28,13,30,12.9,0.9400000000000001,0.108,0.63,73,641,263,0,0,-2.6,73,641,0,263,0.316,34.01,72.68,0.93,0.21,886,0.8,30,6.4,13.6102,10.4969 +2012,4,28,14,30,15.100000000000001,0.98,0.105,0.63,93,798,487,0,0,-6.800000000000001,93,798,0,487,0.314,21.48,60.45,0.93,0.21,886,0.9,35,6.4,27.5689,21.5242 +2012,4,28,15,30,17.2,1.01,0.101,0.63,106,885,695,0,8,-7.5,231,626,0,647,0.312,17.85,48.32,0.93,0.21,886,0.9,36,5.7,41.1169,32.2564 +2012,4,28,16,30,19.1,1.04,0.10200000000000001,0.63,116,927,858,0,8,-6.9,263,649,0,783,0.311,16.56,36.74,0.93,0.21,886,1,38,5,52.2327,41.0668 +2012,4,28,17,30,20.8,1.06,0.109,0.63,126,947,971,0,8,-6,306,639,0,876,0.31,16.01,26.76,0.9400000000000001,0.21,886,1,40,4.1000000000000005,59.9744,47.2030 +2012,4,28,18,30,22.1,1.06,0.117,0.63,132,947,1016,0,4,-5.1000000000000005,484,443,0,898,0.31,15.74,21.03,0.9400000000000001,0.21,885,1.1,38,3,63.4833,49.9841 +2012,4,28,19,30,23,1.06,0.11900000000000001,0.63,132,943,999,0,8,-4.5,296,647,0,891,0.31,15.66,23.06,0.9400000000000001,0.21,885,1.1,30,2.1,62.3164,49.0595 +2012,4,28,20,30,23.6,1.09,0.122,0.63,128,923,916,0,8,-4,320,509,0,755,0.311,15.66,31.36,0.93,0.21,884,1.1,18,1.6,56.6808,44.5926 +2012,4,28,21,30,23.700000000000003,1.08,0.121,0.63,120,887,776,0,8,-3.7,206,638,0,677,0.311,15.96,42.32,0.93,0.21,884,1.1,13,1.5,46.4829,36.5143 +2012,4,28,22,30,23.3,1.05,0.116,0.63,105,829,589,0,8,-3.4000000000000004,238,426,0,487,0.311,16.62,54.230000000000004,0.93,0.21,884,1.1,23,1.9000000000000001,33.8797,26.5298 +2012,4,28,23,30,22.200000000000003,1.03,0.108,0.63,84,725,374,0,7,-3.2,84,725,5,374,0.311,18.07,66.44,0.93,0.21,884,1.1,37,2.6,20.0248,15.5650 +2012,4,29,0,30,19.8,1.02,0.108,0.63,56,495,154,0,7,-2.3000000000000003,56,495,5,154,0.311,22.34,78.59,0.93,0.21,884,1.2000000000000002,46,2.9000000000000004,7.5400,5.7557 +2012,4,29,1,30,17.6,1.03,0.112,0.63,0,0,0,0,7,-0.6000000000000001,0,0,0,0,0.311,29.080000000000002,90.04,0.92,0.21,884,1.4000000000000001,56,3.4000000000000004,0.0000,0.0000 +2012,4,29,2,30,16.400000000000002,1.04,0.11900000000000001,0.63,0,0,0,0,7,0.2,0,0,0,0,0.313,33.28,101.81,0.93,0.21,884,1.5,67,4,0.0000,0.0000 +2012,4,29,3,30,15.5,1.06,0.132,0.63,0,0,0,0,1,1.9000000000000001,0,0,0,0,0.315,39.800000000000004,112.10000000000001,0.93,0.21,885,1.7000000000000002,77,4,0.0000,0.0000 +2012,4,29,4,30,14.8,1.1,0.154,0.63,0,0,0,0,0,3.6,0,0,0,0,0.317,47.15,120.81,0.9400000000000001,0.21,885,2,78,3.7,0.0000,0.0000 +2012,4,29,5,30,14.100000000000001,1.16,0.185,0.63,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.318,54.74,127.11,0.9500000000000001,0.21,885,2.2,68,3.4000000000000004,0.0000,0.0000 +2012,4,29,6,30,13.4,1.2,0.276,0.63,0,0,0,0,4,6.4,0,0,0,0,0.319,62.45,130.06,0.96,0.21,885,2.5,54,3.4000000000000004,0.0000,0.0000 +2012,4,29,7,30,12.700000000000001,1.22,0.355,0.63,0,0,0,0,6,7.5,0,0,0,0,0.32,70.49,129.05,0.97,0.21,885,2.6,43,3.4000000000000004,0.0000,0.0000 +2012,4,29,8,30,12,1.22,0.366,0.63,0,0,0,0,4,8.3,0,0,0,0,0.32,78.25,124.3,0.97,0.21,885,2.5,35,3.7,0.0000,0.0000 +2012,4,29,9,30,11.5,1.24,0.361,0.63,0,0,0,0,4,8.9,0,0,0,0,0.319,83.79,116.66,0.97,0.21,885,2.4000000000000004,30,4,0.0000,0.0000 +2012,4,29,10,30,11.100000000000001,1.26,0.334,0.63,0,0,0,0,4,9.200000000000001,0,0,0,0,0.319,87.94,107.07000000000001,0.96,0.21,886,2.2,26,4.2,0.0000,0.0000 +2012,4,29,11,30,11,1.26,0.311,0.63,0,0,0,0,4,9.3,0,0,0,0,0.319,89.55,96.21000000000001,0.96,0.21,886,2.2,25,4.2,0.0000,0.0000 +2012,4,29,12,30,11.600000000000001,1.27,0.292,0.63,39,124,51,0,1,9.5,39,124,0,51,0.32,86.76,84.46000000000001,0.96,0.21,887,2.1,28,4.3,0.0000,0.0000 +2012,4,29,13,30,13.3,1.27,0.264,0.63,105,448,239,0,3,9.4,165,19,0,170,0.322,77.44,72.48,0.96,0.21,887,2,38,4.5,13.1362,10.1345 +2012,4,29,14,30,15.700000000000001,1.27,0.23700000000000002,0.63,135,643,455,0,3,9.200000000000001,297,95,0,345,0.323,65.16,60.25,0.96,0.21,887,2,52,4.5,26.7773,20.9087 +2012,4,29,15,30,18,1.26,0.22,0.63,153,755,657,0,3,9.1,289,3,0,291,0.324,55.870000000000005,48.11,0.96,0.21,887,1.9000000000000001,69,4.2,37.6000,29.4989 +2012,4,29,16,30,20,1.26,0.212,0.63,164,817,821,0,3,9.5,464,114,0,555,0.324,50.96,36.52,0.96,0.21,887,1.9000000000000001,89,3.6,46.9236,36.8938 +2012,4,29,17,30,21.8,1.26,0.212,0.63,172,845,929,0,0,10.200000000000001,172,845,0,929,0.323,47.65,26.490000000000002,0.96,0.21,887,2,113,3.2,53.3568,41.9956 +2012,4,29,18,30,23.200000000000003,1.24,0.176,0.63,159,882,984,0,0,10.700000000000001,159,882,0,984,0.321,45.160000000000004,20.72,0.9500000000000001,0.21,886,2,136,3.1,55.0437,43.3400 +2012,4,29,19,30,24,1.25,0.176,0.63,158,876,965,0,0,10.8,158,876,0,965,0.32,43.53,22.79,0.9500000000000001,0.21,886,2.1,150,3.3000000000000003,54.5042,42.9100 +2012,4,29,20,30,24.5,1.27,0.17300000000000001,0.63,151,858,885,0,0,10.8,151,858,0,885,0.32,42.21,31.16,0.9500000000000001,0.21,885,2.1,156,3.4000000000000004,45.6859,35.9432 +2012,4,29,21,30,24.700000000000003,1.27,0.17200000000000001,0.63,140,817,746,0,0,10.8,140,817,0,746,0.32,41.53,42.160000000000004,0.9500000000000001,0.21,885,2.2,159,3.4000000000000004,40.0535,31.4646 +2012,4,29,22,30,24.400000000000002,1.25,0.176,0.63,126,745,563,0,0,10.600000000000001,126,745,0,563,0.32,41.85,54.09,0.9500000000000001,0.21,884,2.2,156,3.5,27.6558,21.6574 +2012,4,29,23,30,23.400000000000002,1.24,0.183,0.63,105,615,352,0,7,10.600000000000001,175,390,0,332,0.322,44.47,66.31,0.9500000000000001,0.21,884,2.3000000000000003,149,3.3000000000000003,19.7304,15.3382 +2012,4,30,0,30,21.200000000000003,1.23,0.189,0.63,67,378,143,0,3,11.5,110,33,0,116,0.322,53.74,78.44,0.9400000000000001,0.22,885,2.3000000000000003,139,2.6,7.3523,5.6136 +2012,4,30,1,30,19.3,1.22,0.193,0.63,0,0,0,0,0,12.3,0,0,0,0,0.322,64.02,89.91,0.9400000000000001,0.22,885,2.3000000000000003,132,2.7,0.0000,0.0000 +2012,4,30,2,30,18.6,1.2,0.193,0.63,0,0,0,0,0,12.3,0,0,0,0,0.321,66.77,101.63,0.9400000000000001,0.22,885,2.4000000000000004,133,3.5,0.0000,0.0000 +2012,4,30,3,30,18.1,1.19,0.197,0.63,0,0,0,0,0,12.8,0,0,0,0,0.32,71.39,111.89,0.9400000000000001,0.22,886,2.4000000000000004,139,4.1000000000000005,0.0000,0.0000 +2012,4,30,4,30,17.6,1.19,0.216,0.63,0,0,0,0,0,13.8,0,0,0,0,0.32,78.23,120.56,0.9500000000000001,0.22,886,2.4000000000000004,148,4.2,0.0000,0.0000 +2012,4,30,5,30,17.2,1.21,0.243,0.63,0,0,0,0,1,14.700000000000001,0,0,0,0,0.32,85.27,126.83,0.9500000000000001,0.22,886,2.4000000000000004,160,4,0.0000,0.0000 +2012,4,30,6,30,16.900000000000002,1.23,0.26,0.63,0,0,0,0,7,15.200000000000001,0,0,0,0,0.32,89.97,129.75,0.9500000000000001,0.22,885,2.4000000000000004,173,3.7,0.0000,0.0000 +2012,4,30,7,30,16.3,1.24,0.258,0.63,0,0,0,0,7,15.3,0,0,0,0,0.321,94.07000000000001,128.74,0.9400000000000001,0.22,885,2.3000000000000003,185,3.4000000000000004,0.0000,0.0000 +2012,4,30,8,30,15.600000000000001,1.24,0.243,0.63,0,0,0,0,0,15.200000000000001,0,0,0,0,0.322,97.58,124.01,0.9400000000000001,0.22,885,2.1,192,3.3000000000000003,0.0000,0.0000 +2012,4,30,9,30,14.9,1.2,0.225,0.63,0,0,0,0,0,14.9,0,0,0,0,0.323,100,116.4,0.9400000000000001,0.22,885,2,193,3.1,0.0000,0.0000 +2012,4,30,10,30,14.4,1.1400000000000001,0.211,0.63,0,0,0,0,0,14.4,0,0,0,0,0.324,100,106.83,0.9500000000000001,0.22,885,1.8,192,2.8000000000000003,0.0000,0.0000 +2012,4,30,11,30,14.4,1.1,0.20800000000000002,0.63,0,0,0,0,0,14.4,0,0,0,0,0.323,100,96,0.9500000000000001,0.22,885,1.8,189,2.5,0.0000,0.0000 +2012,4,30,12,30,15.200000000000001,1.1,0.223,0.63,40,162,57,0,0,14.600000000000001,40,162,0,57,0.321,96.22,84.26,0.9500000000000001,0.22,886,1.8,189,2.7,0.0000,0.0000 +2012,4,30,13,30,17.1,1.11,0.222,0.63,99,486,247,7,3,14.8,97,1,7,97,0.32,86.2,72.29,0.9500000000000001,0.22,886,1.8,198,3,8.5069,6.5651 +2012,4,30,14,30,19.900000000000002,1.12,0.194,0.63,123,680,463,0,3,14.600000000000001,168,0,0,169,0.318,71.37,60.06,0.9400000000000001,0.22,887,1.9000000000000001,204,3,18.9922,14.8315 +2012,4,30,15,30,22.8,1.11,0.166,0.63,131,797,666,0,3,13.5,399,116,0,477,0.316,55.86,47.92,0.93,0.22,887,1.9000000000000001,202,2.7,16.9233,13.2778 +2012,4,30,16,30,25.5,1.09,0.148,0.63,136,863,831,0,1,11.600000000000001,136,863,0,831,0.315,41.730000000000004,36.300000000000004,0.93,0.22,886,1.9000000000000001,204,2.8000000000000003,33.2748,26.1632 +2012,4,30,17,30,27.6,1.07,0.138,0.63,138,901,946,0,1,9.8,138,901,0,946,0.313,32.76,26.23,0.93,0.22,886,1.8,206,3.1,56.6044,44.5526 +2012,4,30,18,30,29.200000000000003,1.21,0.147,0.63,143,907,993,0,3,8.4,518,352,0,848,0.311,27.13,20.42,0.92,0.22,885,1.8,210,3.5,60.3326,47.5052 +2012,4,30,19,30,30.200000000000003,1.18,0.137,0.63,138,913,981,0,0,6.9,138,913,0,981,0.311,23.240000000000002,22.53,0.92,0.22,884,1.7000000000000002,216,3.9000000000000004,59.0476,46.4877 +2012,4,30,20,30,30.700000000000003,1.1300000000000001,0.126,0.63,129,905,905,0,0,5.4,129,905,0,905,0.312,20.35,30.96,0.92,0.22,883,1.6,223,4.2,53.5693,42.1463 +2012,4,30,21,30,30.6,1.08,0.113,0.63,115,882,771,0,6,3.9000000000000004,224,4,0,227,0.314,18.41,42,0.92,0.22,882,1.5,228,4.4,44.1541,34.6869 +2012,4,30,22,30,29.900000000000002,1.02,0.10200000000000001,0.63,99,834,589,0,6,2.4000000000000004,155,3,0,157,0.318,17.28,53.95,0.92,0.22,882,1.4000000000000001,231,4.2,31.9916,25.0541 +2012,4,30,23,30,28,0.9500000000000001,0.093,0.63,79,738,377,0,3,1.4000000000000001,201,322,0,332,0.323,17.88,66.17,0.91,0.22,882,1.3,226,2.9000000000000004,17.5326,13.6313 +2012,5,1,0,30,24.200000000000003,0.87,0.088,0.63,53,532,160,0,0,6.2,53,532,0,160,0.326,31.36,78.3,0.91,0.21,882,1.1,209,1.6,5.5410,4.2317 +2012,5,1,1,30,20.700000000000003,0.79,0.082,0.63,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.329,41.4,89.78,0.91,0.21,882,1.1,187,1.6,0.0000,0.0000 +2012,5,1,2,30,19.200000000000003,0.77,0.08,0.63,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.328,42.26,101.45,0.92,0.21,882,1.1,175,2.3000000000000003,0.0000,0.0000 +2012,5,1,3,30,18.7,0.84,0.08700000000000001,0.63,0,0,0,0,0,6.7,0,0,0,0,0.326,45.7,111.68,0.92,0.21,883,1.3,175,3.5,0.0000,0.0000 +2012,5,1,4,30,18.5,0.99,0.108,0.63,0,0,0,0,0,9.5,0,0,0,0,0.323,55.93,120.32000000000001,0.93,0.21,883,1.6,177,4.4,0.0000,0.0000 +2012,5,1,5,30,18,1.12,0.13,0.63,0,0,0,0,0,12.200000000000001,0,0,0,0,0.32,69.05,126.56,0.93,0.21,882,1.7000000000000002,180,4.6000000000000005,0.0000,0.0000 +2012,5,1,6,30,17.400000000000002,1.18,0.14200000000000002,0.63,0,0,0,0,0,13.9,0,0,0,0,0.318,79.68,129.45,0.93,0.21,882,1.6,184,4.6000000000000005,0.0000,0.0000 +2012,5,1,7,30,16.5,1.19,0.14400000000000002,0.63,0,0,0,0,0,14.600000000000001,0,0,0,0,0.317,88.3,128.44,0.93,0.21,882,1.5,189,4.2,0.0000,0.0000 +2012,5,1,8,30,15.4,1.1400000000000001,0.138,0.63,0,0,0,0,0,14.8,0,0,0,0,0.316,96.02,123.72,0.93,0.21,881,1.4000000000000001,198,3.7,0.0000,0.0000 +2012,5,1,9,30,14.3,1.07,0.124,0.63,0,0,0,0,0,14.3,0,0,0,0,0.315,100,116.14,0.93,0.21,881,1.2000000000000002,211,3.2,0.0000,0.0000 +2012,5,1,10,30,13.4,1.01,0.111,0.63,0,0,0,0,0,13.4,0,0,0,0,0.314,99.7,106.59,0.92,0.21,881,1.1,226,3,0.0000,0.0000 +2012,5,1,11,30,12.9,0.96,0.097,0.63,0,0,0,0,0,11.4,0,0,0,0,0.313,90.77,95.79,0.92,0.21,881,1,238,3.2,0.0000,0.0000 +2012,5,1,12,30,14.200000000000001,0.93,0.08600000000000001,0.63,33,343,69,0,0,8.4,33,343,0,69,0.311,68.29,84.07000000000001,0.91,0.21,882,0.9,247,3.7,0.0000,0.0000 +2012,5,1,13,30,17.5,0.92,0.078,0.63,64,692,277,0,0,4.7,64,692,0,277,0.31,42.730000000000004,72.10000000000001,0.9,0.21,882,0.9,250,3.8000000000000003,4.8625,3.7537 +2012,5,1,14,30,22.5,0.91,0.076,0.63,82,837,501,0,0,2,82,837,0,501,0.309,25.95,59.88,0.9,0.21,882,0.9,260,4.1000000000000005,9.3139,7.2742 +2012,5,1,15,30,27.1,0.9,0.075,0.63,94,917,710,0,0,-2.8000000000000003,94,917,0,710,0.307,13.86,47.72,0.9,0.21,882,0.8,270,4.7,27.7580,21.7796 +2012,5,1,16,30,29.8,0.87,0.074,0.63,101,960,877,0,0,-4.5,101,960,0,877,0.306,10.48,36.08,0.9,0.21,881,0.8,265,5,49.8442,39.1924 +2012,5,1,17,30,31.5,0.8200000000000001,0.07100000000000001,0.63,105,985,991,0,0,-4.2,105,985,0,991,0.304,9.72,25.97,0.9,0.21,881,0.8,255,5.300000000000001,57.6589,45.3835 +2012,5,1,18,30,32.7,0.6900000000000001,0.065,0.63,105,998,1042,0,0,-3.7,105,998,0,1042,0.303,9.39,20.11,0.9,0.21,880,0.8,246,5.800000000000001,52.0083,40.9514 +2012,5,1,19,30,33.4,0.66,0.063,0.63,103,996,1025,0,0,-3.5,103,996,0,1025,0.302,9.200000000000001,22.27,0.9,0.21,879,0.8,241,6.2,60.0428,47.2719 +2012,5,1,20,30,33.6,0.65,0.062,0.63,99,982,943,0,0,-3.6,99,982,0,943,0.3,9.03,30.77,0.9,0.21,878,0.8,239,6.6000000000000005,54.7970,43.1131 +2012,5,1,21,30,33.4,0.91,0.078,0.63,99,939,798,0,0,-3.8000000000000003,99,939,0,798,0.3,8.96,41.85,0.9,0.21,878,0.8,239,6.7,13.4411,10.5595 +2012,5,1,22,30,32.7,0.93,0.078,0.63,89,878,607,0,0,-4.1000000000000005,89,878,0,607,0.3,9.16,53.82,0.9,0.21,877,0.9,239,6.4,8.9268,6.9913 +2012,5,1,23,30,30.900000000000002,0.97,0.079,0.63,74,776,389,0,0,-4,74,776,0,389,0.3,10.21,66.03,0.9,0.21,878,0.9,238,4.800000000000001,17.5518,13.6479 +2012,5,2,0,30,26.700000000000003,1.01,0.082,0.63,51,562,167,0,0,-1.3,51,562,0,167,0.301,15.860000000000001,78.16,0.9,0.22,878,0.9,235,2.8000000000000003,7.6469,5.8414 +2012,5,2,1,30,22.8,1.05,0.084,0.63,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.301,24.43,89.65,0.9,0.22,878,0.9,232,2,0.0000,0.0000 +2012,5,2,2,30,21.1,1.06,0.085,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.301,26.75,101.27,0.9,0.22,879,0.9,233,2,0.0000,0.0000 +2012,5,2,3,30,20,1.05,0.084,0.63,0,0,0,0,0,1,0,0,0,0,0.301,28.07,111.47,0.9,0.22,879,0.9,237,2,0.0000,0.0000 +2012,5,2,4,30,18.900000000000002,1.03,0.081,0.63,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.301,29.22,120.08,0.9,0.22,879,0.9,239,2.1,0.0000,0.0000 +2012,5,2,5,30,18.1,1.01,0.078,0.63,0,0,0,0,0,0.1,0,0,0,0,0.3,29.79,126.28,0.9,0.22,879,1,237,2.4000000000000004,0.0000,0.0000 +2012,5,2,6,30,17.400000000000002,1.02,0.076,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.298,29.64,129.16,0.9,0.22,879,1,234,3,0.0000,0.0000 +2012,5,2,7,30,16.6,1.04,0.078,0.63,0,0,0,0,0,-1.5,0,0,0,0,0.297,29.14,128.14000000000001,0.9,0.22,880,1,234,3.8000000000000003,0.0000,0.0000 +2012,5,2,8,30,15.700000000000001,1.07,0.081,0.63,0,0,0,0,0,-2,0,0,0,0,0.296,29.68,123.44,0.89,0.22,880,1,237,4,0.0000,0.0000 +2012,5,2,9,30,14.700000000000001,1.08,0.084,0.63,0,0,0,0,0,-1.8,0,0,0,0,0.295,32,115.89,0.89,0.22,880,1,238,3.7,0.0000,0.0000 +2012,5,2,10,30,13.8,1.07,0.085,0.63,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.295,34.96,106.37,0.89,0.22,881,1,241,3.4000000000000004,0.0000,0.0000 +2012,5,2,11,30,13.8,1.05,0.084,0.63,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.295,35.57,95.58,0.89,0.22,881,0.9,246,3.4000000000000004,0.0000,0.0000 +2012,5,2,12,30,15.5,1.04,0.083,0.63,33,364,72,0,0,-0.9,33,364,0,72,0.296,32.49,83.88,0.89,0.22,882,0.9,252,4,0.0000,0.0000 +2012,5,2,13,30,19.1,1.03,0.081,0.63,64,693,280,0,0,-0.5,64,693,0,280,0.297,26.67,71.92,0.89,0.22,882,0.9,258,4.1000000000000005,13.9104,10.7413 +2012,5,2,14,30,24,1.05,0.076,0.63,81,845,507,0,0,0.5,81,845,0,507,0.299,21.22,59.7,0.89,0.22,883,0.8,267,4.3,27.6401,21.5893 +2012,5,2,15,30,28.5,1.09,0.07100000000000001,0.63,91,924,714,0,0,-0.9,91,924,0,714,0.301,14.71,47.54,0.89,0.22,883,0.8,271,4.9,41.3444,32.4414 +2012,5,2,16,30,30.900000000000002,1.17,0.064,0.63,95,977,887,0,0,-3,95,977,0,887,0.302,11.02,35.87,0.89,0.22,883,0.7000000000000001,263,5.1000000000000005,52.6262,41.3811 +2012,5,2,17,30,32.300000000000004,1.25,0.059000000000000004,0.63,96,1003,1000,0,0,-3.8000000000000003,96,1003,0,1000,0.303,9.540000000000001,25.72,0.88,0.22,882,0.7000000000000001,251,5.2,60.4210,47.5585 +2012,5,2,18,30,33.4,1.35,0.062,0.63,99,1010,1049,0,0,-5.1000000000000005,99,1010,0,1049,0.304,8.14,19.82,0.88,0.22,881,0.7000000000000001,242,5.5,63.9243,50.3348 +2012,5,2,19,30,34.2,1.41,0.057,0.63,96,1011,1033,0,0,-6.4,96,1011,0,1033,0.303,7.04,22.01,0.88,0.22,881,0.7000000000000001,235,5.7,62.7524,49.4060 +2012,5,2,20,30,34.4,1.44,0.054,0.63,91,1005,957,0,0,-7.300000000000001,91,1005,0,957,0.302,6.5200000000000005,30.580000000000002,0.88,0.22,880,0.6000000000000001,229,6,57.1147,44.9375 +2012,5,2,21,30,34.2,1.44,0.06,0.63,88,971,814,0,0,-7.6000000000000005,88,971,0,814,0.3,6.45,41.69,0.88,0.22,880,0.6000000000000001,223,6.1000000000000005,47.2694,37.1363 +2012,5,2,22,30,33.4,1.43,0.061,0.63,80,912,620,0,0,-7.6000000000000005,80,912,0,620,0.299,6.75,53.68,0.88,0.22,880,0.7000000000000001,218,5.800000000000001,34.5329,27.0470 +2012,5,2,23,30,31.400000000000002,1.43,0.062,0.63,67,817,401,0,0,-7.2,67,817,0,401,0.298,7.76,65.9,0.88,0.22,880,0.7000000000000001,213,4.5,20.5875,16.0105 +2012,5,3,0,30,27,1.43,0.064,0.63,47,619,175,0,0,-3.5,47,619,0,175,0.298,13.24,78.02,0.88,0.22,880,0.7000000000000001,204,2.7,7.9862,6.1020 +2012,5,3,1,30,23.1,1.43,0.064,0.63,0,0,0,0,0,-0.1,0,0,0,0,0.3,21.43,89.51,0.88,0.22,880,0.7000000000000001,195,2.1,0.0000,0.0000 +2012,5,3,2,30,21.700000000000003,1.4000000000000001,0.064,0.63,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.301,22.580000000000002,101.09,0.89,0.22,880,0.7000000000000001,196,2.4000000000000004,0.0000,0.0000 +2012,5,3,3,30,20.8,1.35,0.061,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.301,22.62,111.27,0.88,0.22,881,0.7000000000000001,212,3,0.0000,0.0000 +2012,5,3,4,30,20,1.25,0.052000000000000005,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.299,20.21,119.84,0.88,0.22,881,0.5,232,3.7,0.0000,0.0000 +2012,5,3,5,30,18.8,1.18,0.044,0.63,0,0,0,0,0,-7.5,0,0,0,0,0.298,16.05,126.01,0.88,0.22,881,0.5,244,4.3,0.0000,0.0000 +2012,5,3,6,30,17.400000000000002,1.19,0.042,0.63,0,0,0,0,0,-9.8,0,0,0,0,0.295,14.65,128.87,0.88,0.22,881,0.4,251,4.3,0.0000,0.0000 +2012,5,3,7,30,16.2,1.23,0.043000000000000003,0.63,0,0,0,0,0,-9.4,0,0,0,0,0.293,16.34,127.85000000000001,0.89,0.22,882,0.4,256,4,0.0000,0.0000 +2012,5,3,8,30,15.5,1.26,0.047,0.63,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.292,18.81,123.17,0.89,0.22,882,0.5,259,3.9000000000000004,0.0000,0.0000 +2012,5,3,9,30,14.8,1.26,0.052000000000000005,0.63,0,0,0,0,0,-7,0,0,0,0,0.291,21.580000000000002,115.64,0.9,0.22,883,0.5,261,3.5,0.0000,0.0000 +2012,5,3,10,30,13.8,1.28,0.055,0.63,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.29,25.23,106.14,0.9,0.22,883,0.6000000000000001,265,2.9000000000000004,0.0000,0.0000 +2012,5,3,11,30,13.3,1.3,0.057,0.63,0,0,0,0,7,-4.4,0,0,0,0,0.29,28.86,95.38,0.9,0.22,884,0.6000000000000001,269,2.4000000000000004,0.0000,0.0000 +2012,5,3,12,30,14.9,1.32,0.058,0.63,31,444,80,7,7,-3.3000000000000003,48,6,7,49,0.289,28.29,83.7,0.91,0.22,885,0.7000000000000001,271,2.9000000000000004,0.0000,0.0000 +2012,5,3,13,30,18.3,1.37,0.061,0.63,59,738,290,0,8,-3.5,145,230,0,218,0.289,22.56,71.74,0.91,0.22,885,0.8,273,3.1,14.0846,10.8787 +2012,5,3,14,30,22.200000000000003,1.41,0.069,0.63,79,854,512,0,7,-0.9,177,545,0,454,0.28800000000000003,21.35,59.52,0.92,0.22,885,0.9,272,2.8000000000000003,28.0004,21.8729 +2012,5,3,15,30,26.3,1.44,0.075,0.63,93,919,715,0,0,0.9,93,919,0,715,0.28700000000000003,19.04,47.35,0.92,0.22,885,0.9,255,2.9000000000000004,41.6020,32.6450 +2012,5,3,16,30,29.6,1.5,0.078,0.63,102,954,877,0,0,-1.1,102,954,0,877,0.28600000000000003,13.66,35.67,0.92,0.22,885,1,237,3.5,53.2482,41.8713 +2012,5,3,17,30,31.700000000000003,1.54,0.082,0.63,109,973,987,7,3,-3.6,313,709,7,954,0.28600000000000003,10.01,25.47,0.92,0.22,885,1,229,4.3,60.9883,48.0059 +2012,5,3,18,30,32.9,1.55,0.08600000000000001,0.63,113,979,1036,7,3,-5.4,272,774,7,1001,0.28600000000000003,8.16,19.53,0.92,0.22,884,1,224,4.9,64.3702,50.6868 +2012,5,3,19,30,33.5,1.56,0.093,0.63,116,975,1021,0,0,-6.7,116,975,0,1021,0.28600000000000003,7.16,21.76,0.92,0.22,884,0.9,221,5.5,63.2586,49.8054 +2012,5,3,20,30,33.9,1.57,0.094,0.63,112,959,938,0,0,-7.5,112,959,0,938,0.28700000000000003,6.62,30.39,0.91,0.22,883,0.9,220,5.800000000000001,57.9796,45.6188 +2012,5,3,21,30,34,1.59,0.085,0.63,100,934,799,7,3,-7.5,286,678,7,793,0.289,6.55,41.54,0.9,0.22,883,0.9,221,5.9,48.2367,37.8973 +2012,5,3,22,30,33.5,1.59,0.081,0.63,88,883,612,7,3,-7.300000000000001,253,593,7,605,0.29,6.87,53.54,0.89,0.22,882,0.9,225,5.800000000000001,35.2941,27.6445 +2012,5,3,23,30,31.6,1.59,0.082,0.63,73,784,395,0,0,-6.800000000000001,73,784,0,395,0.292,7.91,65.77,0.89,0.22,882,0.9,228,4.800000000000001,21.2439,16.5229 +2012,5,4,0,30,27.400000000000002,1.6,0.083,0.63,50,584,173,0,0,-3.9000000000000004,50,584,0,173,0.294,12.620000000000001,77.88,0.89,0.22,883,0.9,228,3,8.3741,6.4000 +2012,5,4,1,30,23.3,1.6,0.083,0.63,0,0,0,0,0,-0.8,0,0,0,0,0.298,20.26,89.37,0.89,0.22,883,0.9,228,2.2,0.0000,0.0000 +2012,5,4,2,30,21.5,1.6,0.082,0.63,0,0,0,0,0,-1.1,0,0,0,0,0.301,22.1,100.92,0.9,0.22,884,0.9,229,2.2,0.0000,0.0000 +2012,5,4,3,30,20.400000000000002,1.59,0.082,0.63,0,0,0,0,0,-1.6,0,0,0,0,0.304,22.66,111.06,0.9,0.22,884,0.9,233,2.3000000000000003,0.0000,0.0000 +2012,5,4,4,30,19.700000000000003,1.59,0.088,0.63,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.305,21.79,119.61,0.91,0.22,884,0.9,241,2.8000000000000003,0.0000,0.0000 +2012,5,4,5,30,19.200000000000003,1.58,0.095,0.63,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.307,19.6,125.75,0.91,0.22,884,0.9,252,3.6,0.0000,0.0000 +2012,5,4,6,30,18.5,1.57,0.08700000000000001,0.63,0,0,0,0,1,-6.5,0,0,0,0,0.308,17.73,128.58,0.91,0.22,885,1,259,4.1000000000000005,0.0000,0.0000 +2012,5,4,7,30,17.5,1.52,0.075,0.63,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.309,17.71,127.56,0.9,0.22,884,0.9,262,3.9000000000000004,0.0000,0.0000 +2012,5,4,8,30,16.2,1.41,0.066,0.63,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.31,19.27,122.9,0.9,0.22,884,0.8,262,3.5,0.0000,0.0000 +2012,5,4,9,30,15.100000000000001,1.31,0.06,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.309,21.48,115.39,0.9,0.22,885,0.8,260,3.1,0.0000,0.0000 +2012,5,4,10,30,14.100000000000001,1.26,0.056,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.306,23.48,105.92,0.9,0.22,885,0.7000000000000001,258,2.9000000000000004,0.0000,0.0000 +2012,5,4,11,30,14.100000000000001,1.22,0.054,0.63,0,0,0,0,0,-6.5,0,0,0,0,0.304,23.48,95.18,0.89,0.22,885,0.7000000000000001,257,3.1,0.0000,0.0000 +2012,5,4,12,30,16,1.18,0.053,0.63,31,457,83,0,0,-7,31,457,0,83,0.302,20.02,83.52,0.89,0.22,885,0.7000000000000001,255,3.9000000000000004,0.0000,0.0000 +2012,5,4,13,30,19.6,1.1400000000000001,0.053,0.63,57,755,296,0,0,-7.6000000000000005,57,755,0,296,0.3,15.25,71.57000000000001,0.89,0.22,885,0.7000000000000001,252,4.1000000000000005,10.9842,8.4862 +2012,5,4,14,30,24.200000000000003,1.12,0.054,0.63,73,880,522,0,0,-6.6000000000000005,73,880,0,522,0.299,12.41,59.35,0.89,0.22,886,0.7000000000000001,250,4,25.0993,19.6086 +2012,5,4,15,30,28.6,1.12,0.057,0.63,85,944,726,0,0,-5.5,85,944,0,726,0.298,10.42,47.18,0.89,0.22,885,0.7000000000000001,250,4.1000000000000005,41.6862,32.7126 +2012,5,4,16,30,31.5,1.1400000000000001,0.061,0.63,94,974,887,0,0,-5.4,94,974,0,887,0.297,8.870000000000001,35.47,0.89,0.22,885,0.8,250,4.3,52.6683,41.4164 +2012,5,4,17,30,33.1,1.16,0.063,0.63,100,994,999,0,0,-5.300000000000001,100,994,0,999,0.296,8.18,25.23,0.9,0.22,884,0.8,252,4.5,58.2003,45.8123 +2012,5,4,18,30,34.2,1.22,0.067,0.63,103,996,1043,0,0,-5,103,996,0,1043,0.294,7.87,19.240000000000002,0.9,0.22,884,0.9,253,4.6000000000000005,61.4403,48.3804 +2012,5,4,19,30,34.9,1.18,0.064,0.63,101,995,1027,0,0,-4.800000000000001,101,995,0,1027,0.294,7.68,21.51,0.9,0.22,883,0.9,253,4.7,62.5392,49.2397 +2012,5,4,20,30,35.2,1.1400000000000001,0.061,0.63,97,982,945,0,0,-4.7,97,982,0,945,0.294,7.57,30.21,0.9,0.22,883,0.9,251,4.800000000000001,56.8450,44.7269 +2012,5,4,21,30,35,1.26,0.069,0.63,93,946,803,0,0,-5,93,946,0,803,0.294,7.49,41.39,0.89,0.22,882,0.9,248,4.9,47.0100,36.9346 +2012,5,4,22,30,34.300000000000004,1.23,0.066,0.63,83,896,617,0,0,-5.6000000000000005,83,896,0,617,0.295,7.46,53.410000000000004,0.89,0.22,882,0.9,244,4.800000000000001,34.4611,26.9934 +2012,5,4,23,30,32.300000000000004,1.21,0.063,0.63,68,810,402,0,0,-6.2,68,810,0,402,0.295,7.99,65.63,0.89,0.22,882,0.8,240,3.8000000000000003,20.9470,16.2938 +2012,5,5,0,30,27.900000000000002,1.2,0.059000000000000004,0.63,47,624,179,0,0,-2.8000000000000003,47,624,0,179,0.295,13.24,77.74,0.89,0.22,882,0.8,234,2.4000000000000004,8.2841,6.3328 +2012,5,5,1,30,23.900000000000002,1.19,0.057,0.63,0,0,0,0,0,-0.5,0,0,0,0,0.296,19.86,89.23,0.89,0.22,882,0.7000000000000001,229,2,0.0000,0.0000 +2012,5,5,2,30,22.200000000000003,1.19,0.055,0.63,0,0,0,0,0,-1.6,0,0,0,0,0.296,20.34,100.74000000000001,0.89,0.22,883,0.7000000000000001,226,2.1,0.0000,0.0000 +2012,5,5,3,30,21.200000000000003,1.17,0.054,0.63,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.297,20.400000000000002,110.86,0.89,0.22,883,0.7000000000000001,225,2.3000000000000003,0.0000,0.0000 +2012,5,5,4,30,20.3,1.1500000000000001,0.052000000000000005,0.63,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.297,20.22,119.38,0.89,0.22,883,0.7000000000000001,227,2.6,0.0000,0.0000 +2012,5,5,5,30,19.6,1.12,0.051000000000000004,0.63,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.297,19.830000000000002,125.48,0.89,0.22,883,0.7000000000000001,232,2.9000000000000004,0.0000,0.0000 +2012,5,5,6,30,18.8,1.1,0.051000000000000004,0.63,0,0,0,0,0,-5,0,0,0,0,0.298,19.54,128.29,0.89,0.22,882,0.7000000000000001,238,3.3000000000000003,0.0000,0.0000 +2012,5,5,7,30,18,1.09,0.05,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.299,19.42,127.28,0.89,0.22,882,0.7000000000000001,244,3.7,0.0000,0.0000 +2012,5,5,8,30,17,1.08,0.05,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.299,19.75,122.63,0.89,0.22,882,0.6000000000000001,251,3.8000000000000003,0.0000,0.0000 +2012,5,5,9,30,15.9,1.09,0.051000000000000004,0.63,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.3,20.73,115.15,0.89,0.22,882,0.6000000000000001,257,3.5,0.0000,0.0000 +2012,5,5,10,30,14.8,1.1,0.053,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.299,22.67,105.7,0.89,0.22,882,0.6000000000000001,260,3,0.0000,0.0000 +2012,5,5,11,30,14.700000000000001,1.11,0.054,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.298,24.03,94.98,0.89,0.22,883,0.6000000000000001,259,2.7,0.0000,0.0000 +2012,5,5,12,30,16.8,1.12,0.058,0.63,33,458,86,0,0,-5.2,33,458,0,86,0.298,21.740000000000002,83.34,0.9,0.22,883,0.6000000000000001,256,3.3000000000000003,0.0000,0.0000 +2012,5,5,13,30,20.6,1.12,0.059000000000000004,0.63,60,754,300,0,0,-5.9,60,754,0,300,0.298,16.29,71.4,0.9,0.22,883,0.6000000000000001,250,3.6,14.9379,11.5435 +2012,5,5,14,30,25.200000000000003,1.12,0.057,0.63,74,884,527,0,0,-4.800000000000001,74,884,0,527,0.298,13.370000000000001,59.19,0.89,0.22,883,0.6000000000000001,244,3.4000000000000004,28.8867,22.5695 +2012,5,5,15,30,30.1,1.1300000000000001,0.054,0.63,84,954,734,0,0,-5.2,84,954,0,734,0.298,9.76,47.01,0.89,0.22,883,0.6000000000000001,242,3.6,42.3508,33.2355 +2012,5,5,16,30,33.4,1.1500000000000001,0.054,0.63,90,986,895,0,1,-7.7,90,986,0,895,0.296,6.7,35.28,0.89,0.22,883,0.7000000000000001,240,3.8000000000000003,53.2893,41.9058 +2012,5,5,17,30,34.9,1.2,0.058,0.63,97,1004,1006,0,0,-7.9,97,1004,0,1006,0.294,6.04,24.990000000000002,0.89,0.22,882,0.7000000000000001,239,3.9000000000000004,60.9630,47.9877 +2012,5,5,18,30,35.800000000000004,1.43,0.08,0.63,109,996,1051,0,0,-7.6000000000000005,109,996,0,1051,0.291,5.88,18.96,0.89,0.22,881,0.7000000000000001,238,4.2,64.0341,50.4236 +2012,5,5,19,30,36.300000000000004,1.47,0.08700000000000001,0.63,112,988,1033,0,0,-7.5,112,988,0,1033,0.28800000000000003,5.78,21.26,0.89,0.22,881,0.7000000000000001,238,4.6000000000000005,62.9221,49.5418 +2012,5,5,20,30,36.300000000000004,1.49,0.09,0.63,110,971,950,0,0,-7.6000000000000005,110,971,0,950,0.28600000000000003,5.72,30.03,0.9,0.22,880,0.7000000000000001,238,5,57.2848,45.0737 +2012,5,5,21,30,35.800000000000004,1.46,0.084,0.63,100,944,810,0,0,-8.1,100,944,0,810,0.28500000000000003,5.65,41.25,0.9,0.22,880,0.7000000000000001,238,5.4,47.6207,37.4153 +2012,5,5,22,30,34.800000000000004,1.43,0.079,0.63,88,901,627,0,1,-9,88,901,0,627,0.28500000000000003,5.6000000000000005,53.28,0.9,0.22,879,0.6000000000000001,238,5.6000000000000005,35.1643,27.5456 +2012,5,5,23,30,32.800000000000004,1.3800000000000001,0.069,0.63,71,817,410,0,3,-9.700000000000001,199,400,0,365,0.28600000000000003,5.93,65.5,0.9,0.22,879,0.6000000000000001,238,4.800000000000001,21.3410,16.6023 +2012,5,6,0,30,28.400000000000002,1.34,0.067,0.63,50,629,185,0,7,-7.9,110,29,0,116,0.28600000000000003,8.78,77.60000000000001,0.92,0.22,880,0.6000000000000001,238,3,8.5776,6.5588 +2012,5,6,1,30,24.3,1.35,0.08600000000000001,0.63,0,0,0,7,7,-3.3000000000000003,0,0,7,0,0.28600000000000003,15.81,89.10000000000001,0.93,0.22,880,0.6000000000000001,239,1.9000000000000001,0.0000,0.0000 +2012,5,6,2,30,22.900000000000002,1.3800000000000001,0.10300000000000001,0.63,0,0,0,0,7,-3,0,0,0,0,0.28700000000000003,17.64,100.57000000000001,0.9400000000000001,0.22,880,0.6000000000000001,238,2,0.0000,0.0000 +2012,5,6,3,30,22.400000000000002,1.41,0.12,0.63,0,0,0,0,7,-3.7,0,0,0,0,0.28800000000000003,17.22,110.66,0.9400000000000001,0.22,880,0.6000000000000001,238,2.5,0.0000,0.0000 +2012,5,6,4,30,21.700000000000003,1.44,0.136,0.63,0,0,0,0,8,-5.2,0,0,0,0,0.29,16,119.15,0.9500000000000001,0.22,881,0.7000000000000001,239,2.9000000000000004,0.0000,0.0000 +2012,5,6,5,30,20.900000000000002,1.45,0.14100000000000001,0.63,0,0,0,0,3,-6.2,0,0,0,0,0.292,15.66,125.22,0.9400000000000001,0.22,881,0.7000000000000001,241,3.1,0.0000,0.0000 +2012,5,6,6,30,19.900000000000002,1.45,0.136,0.63,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.295,16.07,128.02,0.9400000000000001,0.22,881,0.8,243,3.2,0.0000,0.0000 +2012,5,6,7,30,18.7,1.45,0.117,0.63,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.298,17.080000000000002,127,0.92,0.22,881,0.8,248,3.2,0.0000,0.0000 +2012,5,6,8,30,17.3,1.46,0.10300000000000001,0.63,0,0,0,0,1,-6.6000000000000005,0,0,0,0,0.3,18.93,122.37,0.92,0.22,881,0.8,254,3.2,0.0000,0.0000 +2012,5,6,9,30,16.6,1.48,0.123,0.63,0,0,0,0,3,-6.2,0,0,0,0,0.3,20.38,114.91,0.9400000000000001,0.22,881,0.8,264,3.3000000000000003,0.0000,0.0000 +2012,5,6,10,30,16.400000000000002,1.48,0.171,0.63,0,0,0,0,0,-5.7,0,0,0,0,0.3,21.47,105.49000000000001,0.9500000000000001,0.22,882,0.9,283,3.7,0.0000,0.0000 +2012,5,6,11,30,16.5,1.47,0.17500000000000002,0.63,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.3,26.61,94.79,0.9500000000000001,0.22,883,1,310,4.7,0.0000,0.0000 +2012,5,6,12,30,17.1,1.46,0.165,0.63,43,291,77,7,3,4.4,58,4,7,58,0.301,43.07,83.17,0.9400000000000001,0.22,884,1.2000000000000002,335,6.4,0.0000,0.0000 +2012,5,6,13,30,18.5,1.47,0.152,0.63,84,604,278,0,8,10,156,233,0,231,0.302,57.64,71.24,0.9400000000000001,0.22,885,1.4000000000000001,350,7.7,15.1636,11.7208 +2012,5,6,14,30,20.1,1.47,0.147,0.63,107,753,495,0,7,11.200000000000001,263,125,0,327,0.302,56.64,59.03,0.9400000000000001,0.22,886,1.5,354,8,29.1899,22.8083 +2012,5,6,15,30,21.400000000000002,1.46,0.145,0.63,123,833,692,0,7,10.8,340,231,0,498,0.303,50.97,46.84,0.9400000000000001,0.22,887,1.6,356,8,42.8409,33.6215 +2012,5,6,16,30,22.200000000000003,1.43,0.14200000000000002,0.63,132,882,853,0,3,10.100000000000001,317,1,0,317,0.302,46.11,35.09,0.93,0.22,887,1.6,357,7.9,53.7894,42.3001 +2012,5,6,17,30,22.900000000000002,1.4000000000000001,0.135,0.63,135,913,964,0,3,8.9,486,126,0,600,0.301,40.84,24.76,0.93,0.22,887,1.6,357,7.5,61.4075,48.3384 +2012,5,6,18,30,23.700000000000003,1.43,0.131,0.63,136,926,1013,7,3,7.7,545,295,7,825,0.3,35.89,18.68,0.93,0.22,887,1.6,355,6.800000000000001,64.5404,50.8230 +2012,5,6,19,30,24.5,1.42,0.11900000000000001,0.63,128,931,997,0,3,6.9,393,2,0,395,0.3,32.35,21.02,0.92,0.22,887,1.6,354,6.2,63.3049,49.8440 +2012,5,6,20,30,25,1.41,0.107,0.63,118,926,921,0,3,6.5,405,6,0,411,0.3,30.490000000000002,29.85,0.92,0.22,887,1.5,354,5.7,57.6034,45.3252 +2012,5,6,21,30,24.8,1.51,0.111,0.63,111,890,782,0,3,6.300000000000001,390,44,0,423,0.301,30.59,41.1,0.91,0.22,886,1.5,179,5.300000000000001,48.0525,37.7555 +2012,5,6,22,30,24,1.5,0.105,0.63,98,837,600,0,3,6.4,297,27,0,314,0.302,32.27,53.14,0.91,0.22,886,1.5,5,4.800000000000001,35.7542,28.0089 +2012,5,6,23,30,22.6,1.5,0.10300000000000001,0.63,80,738,388,0,3,6.5,205,18,0,213,0.302,35.45,65.37,0.91,0.22,887,1.5,10,4.4,19.3959,15.0908 +2012,5,7,0,30,20.400000000000002,1.5,0.10300000000000001,0.63,55,536,171,0,1,6.800000000000001,55,536,0,171,0.304,41.19,77.46000000000001,0.91,0.22,887,1.6,15,3.8000000000000003,5.5630,4.2548 +2012,5,7,1,30,18.1,1.5,0.105,0.63,9,78,11,0,1,7.2,9,78,0,11,0.306,48.94,88.95,0.91,0.22,888,1.6,18,3.4000000000000004,0.0000,0.0000 +2012,5,7,2,30,16.400000000000002,1.48,0.106,0.63,0,0,0,0,3,7.7,0,0,0,0,0.307,56.22,100.39,0.91,0.22,889,1.6,20,3.5,0.0000,0.0000 +2012,5,7,3,30,15.200000000000001,1.44,0.10400000000000001,0.63,0,0,0,0,1,8,0,0,0,0,0.308,61.96,110.46000000000001,0.91,0.22,889,1.6,19,3.8000000000000003,0.0000,0.0000 +2012,5,7,4,30,14.200000000000001,1.3900000000000001,0.10200000000000001,0.63,0,0,0,0,0,8.1,0,0,0,0,0.309,66.86,118.92,0.91,0.22,889,1.6,19,3.9000000000000004,0.0000,0.0000 +2012,5,7,5,30,13.4,1.35,0.10200000000000001,0.63,0,0,0,0,0,8.3,0,0,0,0,0.31,71.3,124.96000000000001,0.91,0.22,889,1.7000000000000002,19,4.1000000000000005,0.0000,0.0000 +2012,5,7,6,30,12.700000000000001,1.33,0.108,0.63,0,0,0,0,0,8.4,0,0,0,0,0.31,75.31,127.74000000000001,0.92,0.22,888,1.8,19,4.2,0.0000,0.0000 +2012,5,7,7,30,12,1.33,0.117,0.63,0,0,0,0,0,8.4,0,0,0,0,0.309,78.73,126.72,0.92,0.22,888,1.8,20,4.3,0.0000,0.0000 +2012,5,7,8,30,11.600000000000001,1.35,0.13,0.63,0,0,0,0,0,8.1,0,0,0,0,0.309,79.10000000000001,122.12,0.93,0.22,889,1.9000000000000001,21,4.5,0.0000,0.0000 +2012,5,7,9,30,11.5,1.37,0.14200000000000002,0.63,0,0,0,0,0,7.5,0,0,0,0,0.31,76.37,114.68,0.93,0.22,889,1.9000000000000001,25,4.7,0.0000,0.0000 +2012,5,7,10,30,11.3,1.3800000000000001,0.148,0.63,0,0,0,0,0,6.800000000000001,0,0,0,0,0.311,73.7,105.29,0.93,0.22,890,1.9000000000000001,28,4.800000000000001,0.0000,0.0000 +2012,5,7,11,30,11.3,1.3900000000000001,0.147,0.63,0,0,0,0,4,6,0,0,0,0,0.312,70.01,94.61,0.93,0.22,890,1.9000000000000001,28,4.9,0.0000,0.0000 +2012,5,7,12,30,11.9,1.4000000000000001,0.14300000000000002,0.63,41,303,78,7,4,5.300000000000001,42,0,7,42,0.313,64.15,83,0.93,0.22,891,1.9000000000000001,28,5.2,0.0000,0.0000 +2012,5,7,13,30,13.4,1.4000000000000001,0.14200000000000002,0.63,81,603,276,0,3,4.6000000000000005,23,0,0,23,0.315,55.38,71.08,0.93,0.22,891,1.8,30,5.6000000000000005,11.6932,9.0403 +2012,5,7,14,30,15.100000000000001,1.41,0.14200000000000002,0.63,105,748,492,0,3,4.3,246,17,0,255,0.316,48.38,58.870000000000005,0.93,0.22,891,1.8,33,5.800000000000001,18.1284,14.1663 +2012,5,7,15,30,17.1,1.43,0.14,0.63,120,831,690,0,3,4.3,406,144,0,505,0.316,42.67,46.68,0.93,0.22,891,1.8,34,5.800000000000001,29.0823,22.8246 +2012,5,7,16,30,19.3,1.45,0.14200000000000002,0.63,131,876,850,0,3,4.4,443,75,0,505,0.316,37.43,34.910000000000004,0.93,0.22,891,1.8,36,5.7,19.0585,14.9880 +2012,5,7,17,30,21.200000000000003,1.47,0.152,0.63,143,895,958,0,3,4.5,466,27,0,491,0.315,33.53,24.54,0.9400000000000001,0.22,891,1.8,38,5.5,36.6345,28.8382 +2012,5,7,18,30,22.6,1.54,0.20400000000000001,0.63,171,873,999,7,7,4.6000000000000005,435,37,7,470,0.313,30.87,18.41,0.9500000000000001,0.22,890,1.8,41,5.2,50.6738,39.9042 +2012,5,7,19,30,23.3,1.54,0.244,0.63,187,843,976,0,4,4.5,391,2,0,393,0.312,29.53,20.79,0.9500000000000001,0.22,890,1.8,46,4.800000000000001,24.2121,19.0640 +2012,5,7,20,30,23.400000000000002,1.54,0.266,0.63,190,806,890,0,4,4.4,294,0,0,294,0.312,29.18,29.68,0.9500000000000001,0.22,889,1.9000000000000001,50,4.7,24.9277,19.6147 +2012,5,7,21,30,22.8,1.54,0.253,0.63,172,773,756,0,3,4.4,458,138,0,562,0.313,30.14,40.96,0.9500000000000001,0.22,889,1.9000000000000001,54,4.800000000000001,25.1034,19.7246 +2012,5,7,22,30,21.5,1.53,0.23500000000000001,0.63,146,715,576,0,3,4.4,357,84,0,408,0.314,32.63,53.01,0.9400000000000001,0.22,889,1.9000000000000001,57,5,17.9163,14.0358 +2012,5,7,23,30,20,1.52,0.211,0.63,112,617,371,0,4,4.4,172,4,0,173,0.314,35.9,65.24,0.9400000000000001,0.22,890,1.9000000000000001,60,5,11.3298,8.8160 +2012,5,8,0,30,18,1.49,0.188,0.63,70,430,165,0,4,4.4,112,10,0,114,0.315,40.6,77.32000000000001,0.9400000000000001,0.22,890,1.8,58,4.7,8.2073,6.2788 +2012,5,8,1,30,15.9,1.45,0.17,0.63,10,46,11,7,6,4.3,6,0,7,6,0.316,46.08,88.81,0.93,0.22,890,1.7000000000000002,51,4.3,0.0000,0.0000 +2012,5,8,2,30,14.4,1.41,0.155,0.63,0,0,0,0,6,4.2,0,0,0,0,0.317,50.36,100.22,0.93,0.22,891,1.7000000000000002,49,3.8000000000000003,0.0000,0.0000 +2012,5,8,3,30,13.3,1.4000000000000001,0.155,0.63,0,0,0,0,6,4,0,0,0,0,0.317,53.28,110.27,0.9400000000000001,0.22,892,1.8,55,3,0.0000,0.0000 +2012,5,8,4,30,12.4,1.4000000000000001,0.17400000000000002,0.63,0,0,0,0,6,3.8000000000000003,0,0,0,0,0.317,55.83,118.69,0.9400000000000001,0.22,892,1.8,56,2.4000000000000004,0.0000,0.0000 +2012,5,8,5,30,11.600000000000001,1.3900000000000001,0.17300000000000001,0.63,0,0,0,0,6,3.5,0,0,0,0,0.317,57.68,124.71000000000001,0.9400000000000001,0.22,892,1.8,52,2.4000000000000004,0.0000,0.0000 +2012,5,8,6,30,10.700000000000001,1.37,0.155,0.63,0,0,0,0,6,3.1,0,0,0,0,0.315,59.33,127.47,0.9400000000000001,0.22,892,1.8,55,2,0.0000,0.0000 +2012,5,8,7,30,10,1.3800000000000001,0.166,0.63,0,0,0,0,7,2.7,0,0,0,0,0.312,60.64,126.46000000000001,0.9500000000000001,0.22,892,1.8,53,1.5,0.0000,0.0000 +2012,5,8,8,30,9.8,1.42,0.24,0.63,0,0,0,0,7,2.4000000000000004,0,0,0,0,0.31,60.14,121.86,0.96,0.22,893,1.8,40,1.8,0.0000,0.0000 +2012,5,8,9,30,9.9,1.44,0.29,0.63,0,0,0,0,6,2.1,0,0,0,0,0.31,58.230000000000004,114.46000000000001,0.96,0.22,893,1.8,29,2.4000000000000004,0.0000,0.0000 +2012,5,8,10,30,9.8,1.45,0.319,0.63,0,0,0,0,6,1.7000000000000002,0,0,0,0,0.311,57.27,105.09,0.96,0.22,893,1.8,29,2.7,0.0000,0.0000 +2012,5,8,11,30,9.700000000000001,1.45,0.302,0.63,0,0,0,0,6,1.5,0,0,0,0,0.314,56.67,94.43,0.96,0.22,893,1.7000000000000002,32,3,0.0000,0.0000 +2012,5,8,12,30,10.4,1.44,0.234,0.63,48,228,77,7,6,1.3,32,0,7,32,0.317,53.45,82.83,0.9500000000000001,0.22,893,1.7000000000000002,42,3.3000000000000003,0.0000,0.0000 +2012,5,8,13,30,12.100000000000001,1.43,0.203,0.63,97,546,275,0,7,0.7000000000000001,125,12,0,129,0.319,45.64,70.92,0.9500000000000001,0.22,893,1.6,53,3.6,1.1660,0.9016 +2012,5,8,14,30,13.8,1.42,0.18,0.63,119,719,492,0,4,0.1,270,33,0,287,0.32,38.95,58.72,0.9400000000000001,0.22,893,1.6,53,3.7,14.1495,11.0579 +2012,5,8,15,30,15.3,1.4000000000000001,0.163,0.63,131,817,693,0,4,0.2,376,72,0,426,0.321,35.69,46.52,0.9400000000000001,0.22,893,1.6,46,3.7,29.5060,23.1581 +2012,5,8,16,30,16.7,1.37,0.161,0.63,142,866,853,0,7,0.8,422,128,0,528,0.323,34.04,34.730000000000004,0.9400000000000001,0.22,893,1.6,45,3.6,30.3716,23.8854 +2012,5,8,17,30,18.2,1.35,0.171,0.63,155,885,962,0,4,1.4000000000000001,527,154,0,668,0.325,32.47,24.32,0.9500000000000001,0.22,893,1.6,52,3.4000000000000004,29.9868,23.6056 +2012,5,8,18,30,19.6,1.45,0.216,0.63,178,868,1003,0,4,2,359,1,0,360,0.328,30.94,18.14,0.9500000000000001,0.22,892,1.6,56,3.2,28.8750,22.7386 +2012,5,8,19,30,20.700000000000003,1.45,0.209,0.63,173,869,987,7,3,2.4000000000000004,545,309,7,834,0.33,29.88,20.55,0.9500000000000001,0.22,891,1.6,54,2.8000000000000003,24.0947,18.9718 +2012,5,8,20,30,21.200000000000003,1.44,0.2,0.63,163,855,907,0,8,2.9000000000000004,434,225,0,629,0.332,29.85,29.5,0.9500000000000001,0.22,890,1.6,49,2.4000000000000004,17.8360,14.0347 +2012,5,8,21,30,21.1,1.5,0.21,0.63,156,809,769,0,4,3.1,348,6,0,352,0.334,30.63,40.82,0.9500000000000001,0.22,890,1.6,47,2.2,33.3640,26.2158 +2012,5,8,22,30,20.6,1.49,0.193,0.63,132,755,588,0,6,3.2,311,118,0,383,0.335,31.78,52.88,0.9400000000000001,0.22,890,1.6,52,2.2,23.2926,18.2485 +2012,5,8,23,30,19.700000000000003,1.48,0.186,0.63,107,650,381,0,6,3.3000000000000003,213,44,0,231,0.335,33.7,65.11,0.9400000000000001,0.22,890,1.5,57,2.4000000000000004,9.2111,7.1682 +2012,5,9,0,30,17.7,1.46,0.165,0.63,68,463,170,0,8,3.3000000000000003,121,58,0,134,0.335,38.24,77.19,0.9400000000000001,0.22,890,1.5,63,1.9000000000000001,5.4761,4.1905 +2012,5,9,1,30,15.4,1.44,0.155,0.63,11,58,12,7,7,4.4,9,0,7,9,0.335,47.78,88.67,0.9400000000000001,0.22,891,1.5,89,1,0.0000,0.0000 +2012,5,9,2,30,14,1.42,0.151,0.63,0,0,0,0,0,4.3,0,0,0,0,0.336,51.92,100.05,0.9400000000000001,0.22,892,1.5,120,1,0.0000,0.0000 +2012,5,9,3,30,13.200000000000001,1.41,0.147,0.63,0,0,0,0,0,4,0,0,0,0,0.336,53.54,110.07000000000001,0.9400000000000001,0.22,892,1.5,139,1,0.0000,0.0000 +2012,5,9,4,30,12.600000000000001,1.4000000000000001,0.146,0.63,0,0,0,0,3,3.8000000000000003,0,0,0,0,0.336,54.9,118.47,0.9400000000000001,0.22,892,1.5,151,1,0.0000,0.0000 +2012,5,9,5,30,12.100000000000001,1.36,0.139,0.63,0,0,0,0,0,3.7,0,0,0,0,0.337,56.31,124.46000000000001,0.9400000000000001,0.22,892,1.4000000000000001,164,0.9,0.0000,0.0000 +2012,5,9,6,30,11.5,1.34,0.13,0.63,0,0,0,0,0,3.5,0,0,0,0,0.338,57.81,127.21000000000001,0.9400000000000001,0.22,891,1.4000000000000001,182,1,0.0000,0.0000 +2012,5,9,7,30,10.8,1.32,0.126,0.63,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.339,59.64,126.19,0.93,0.22,891,1.4000000000000001,203,1,0.0000,0.0000 +2012,5,9,8,30,10.100000000000001,1.31,0.122,0.63,0,0,0,0,0,3.1,0,0,0,0,0.34,61.78,121.62,0.93,0.22,891,1.3,223,1.1,0.0000,0.0000 +2012,5,9,9,30,9.600000000000001,1.3,0.117,0.63,0,0,0,0,0,3,0,0,0,0,0.341,63.61,114.24000000000001,0.93,0.22,891,1.3,242,1.1,0.0000,0.0000 +2012,5,9,10,30,9,1.3,0.111,0.63,0,0,0,0,0,3.1,0,0,0,0,0.343,66.44,104.89,0.93,0.22,892,1.2000000000000002,257,1.1,0.0000,0.0000 +2012,5,9,11,30,9.4,1.29,0.107,0.63,0,0,0,0,0,3.1,0,0,0,0,0.34400000000000003,64.93,94.25,0.93,0.22,892,1.2000000000000002,265,1.3,0.0000,0.0000 +2012,5,9,12,30,11.8,1.29,0.105,0.63,39,375,87,0,0,3.3000000000000003,39,375,0,87,0.34500000000000003,55.82,82.68,0.92,0.22,892,1.2000000000000002,267,1.9000000000000001,0.0000,0.0000 +2012,5,9,13,30,15.700000000000001,1.28,0.10200000000000001,0.63,72,673,294,0,0,3.4000000000000004,72,673,0,294,0.34700000000000003,43.9,70.77,0.92,0.22,893,1.1,254,1.6,6.5492,5.0656 +2012,5,9,14,30,19,1.27,0.099,0.63,91,812,514,0,0,3.2,91,812,0,514,0.34800000000000003,35.1,58.57,0.92,0.22,893,1.1,191,0.8,15.9383,12.4569 +2012,5,9,15,30,21.200000000000003,1.26,0.096,0.63,103,888,716,0,0,2.8000000000000003,103,888,0,716,0.34900000000000003,29.810000000000002,46.37,0.92,0.22,892,1.1,145,0.8,24.9028,19.5459 +2012,5,9,16,30,23,1.24,0.093,0.63,110,937,882,0,0,2.1,110,937,0,882,0.34900000000000003,25.38,34.57,0.92,0.22,892,1,152,1.1,31.7655,24.9821 +2012,5,9,17,30,24.6,1.23,0.09,0.63,114,962,992,0,0,1.3,114,962,0,992,0.34800000000000003,21.69,24.11,0.92,0.22,891,1,158,1.4000000000000001,40.8068,32.1236 +2012,5,9,18,30,25.8,1.1500000000000001,0.082,0.63,113,976,1042,0,0,0.5,113,976,0,1042,0.34500000000000003,19.11,17.88,0.92,0.22,890,1,159,1.7000000000000002,22.1218,17.4208 +2012,5,9,19,30,26.6,1.1400000000000001,0.081,0.63,112,974,1025,0,0,-0.2,112,974,0,1025,0.342,17.34,20.32,0.92,0.22,889,1,160,1.9000000000000001,51.1436,40.2702 +2012,5,9,20,30,27,1.1300000000000001,0.08,0.63,107,960,944,0,0,-0.8,107,960,0,944,0.34,16.23,29.330000000000002,0.92,0.22,888,1,160,2.2,38.1693,30.0349 +2012,5,9,21,30,26.8,1.1500000000000001,0.082,0.63,101,927,805,0,0,-1.2000000000000002,101,927,0,805,0.338,15.88,40.68,0.92,0.22,887,1,161,2.3000000000000003,20.9041,16.4259 +2012,5,9,22,30,26.1,1.1500000000000001,0.082,0.63,91,873,620,0,0,-1.5,91,873,0,620,0.337,16.21,52.75,0.92,0.22,886,1,159,2.5,21.8773,17.1405 +2012,5,9,23,30,24.900000000000002,1.16,0.082,0.63,76,777,405,0,0,-1.6,76,777,0,405,0.337,17.25,64.98,0.92,0.22,886,1,157,2.6,12.3112,9.5818 +2012,5,10,0,30,22,1.17,0.085,0.63,54,576,183,0,0,-1.4000000000000001,54,576,0,183,0.338,20.98,77.05,0.92,0.22,887,1.1,155,2.1,6.4421,4.9309 +2012,5,10,1,30,18.900000000000002,1.18,0.088,0.63,12,104,15,0,0,1.4000000000000001,12,104,0,15,0.338,31.1,88.54,0.92,0.22,887,1.1,155,1.8,0.0000,0.0000 +2012,5,10,2,30,17.6,1.19,0.092,0.63,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.338,31.990000000000002,99.88,0.92,0.22,887,1.1,159,2.6,0.0000,0.0000 +2012,5,10,3,30,17.1,1.21,0.096,0.63,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.338,32.08,109.88,0.93,0.22,888,1.1,164,3.4000000000000004,0.0000,0.0000 +2012,5,10,4,30,16.400000000000002,1.21,0.099,0.63,0,0,0,0,1,0.30000000000000004,0,0,0,0,0.337,33.56,118.25,0.93,0.22,888,1.1,168,3.8000000000000003,0.0000,0.0000 +2012,5,10,5,30,15.600000000000001,1.22,0.10200000000000001,0.63,0,0,0,0,0,0.5,0,0,0,0,0.338,35.92,124.22,0.93,0.22,887,1.1,173,3.9000000000000004,0.0000,0.0000 +2012,5,10,6,30,15,1.22,0.10400000000000001,0.63,0,0,0,0,0,0.9,0,0,0,0,0.338,38.44,126.95,0.93,0.22,887,1.2000000000000002,179,3.9000000000000004,0.0000,0.0000 +2012,5,10,7,30,14.5,1.23,0.105,0.63,0,0,0,0,1,1.6,0,0,0,0,0.339,41.6,125.93,0.93,0.22,887,1.2000000000000002,185,4,0.0000,0.0000 +2012,5,10,8,30,14,1.24,0.107,0.63,0,0,0,0,7,2.5,0,0,0,0,0.34,45.7,121.38,0.93,0.22,887,1.3,191,3.7,0.0000,0.0000 +2012,5,10,9,30,13.3,1.27,0.109,0.63,0,0,0,0,7,3.3000000000000003,0,0,0,0,0.341,50.910000000000004,114.02,0.92,0.22,887,1.3,197,3.1,0.0000,0.0000 +2012,5,10,10,30,12.4,1.29,0.111,0.63,0,0,0,0,7,4.1000000000000005,0,0,0,0,0.343,56.77,104.7,0.93,0.22,886,1.3,203,2.6,0.0000,0.0000 +2012,5,10,11,30,12.4,1.31,0.115,0.63,0,0,0,0,7,4.6000000000000005,0,0,0,0,0.34400000000000003,59.06,94.08,0.93,0.22,886,1.4000000000000001,209,2.7,0.0000,0.0000 +2012,5,10,12,30,14,1.34,0.117,0.63,41,361,88,7,3,5.1000000000000005,60,3,7,60,0.34400000000000003,55.2,82.52,0.93,0.22,886,1.4000000000000001,210,3.2,0.0000,0.0000 +2012,5,10,13,30,17.3,1.36,0.11900000000000001,0.63,76,646,291,7,3,5.800000000000001,167,283,7,261,0.34400000000000003,46.910000000000004,70.63,0.93,0.22,886,1.4000000000000001,205,3.4000000000000004,14.9465,11.5630 +2012,5,10,14,30,20.6,1.3800000000000001,0.11800000000000001,0.63,97,785,508,0,4,6.1000000000000005,283,263,0,421,0.342,38.82,58.43,0.93,0.22,886,1.4000000000000001,183,3.3000000000000003,28.5681,22.3297 +2012,5,10,15,30,22.8,1.4000000000000001,0.12,0.63,112,860,707,0,6,5.2,357,241,0,524,0.338,31.900000000000002,46.230000000000004,0.93,0.22,885,1.4000000000000001,160,3.6,41.8750,32.8683 +2012,5,10,16,30,23.700000000000003,1.42,0.134,0.63,129,891,864,0,6,4.5,377,362,0,676,0.332,28.82,34.4,0.9400000000000001,0.22,885,1.5,150,4.2,53.0785,41.7446 +2012,5,10,17,30,23.900000000000002,1.42,0.138,0.63,136,913,971,0,7,4.3,340,508,0,804,0.327,27.95,23.91,0.93,0.22,884,1.5,145,4.5,60.6136,47.7165 +2012,5,10,18,30,23.700000000000003,1.6,0.159,0.63,148,908,1013,0,7,4.3,310,576,0,860,0.324,28.39,17.62,0.93,0.22,884,1.6,143,4.7,64.0435,50.4343 +2012,5,10,19,30,23.200000000000003,1.6400000000000001,0.167,0.63,151,899,996,0,7,4.7,454,383,0,814,0.321,30.02,20.1,0.9400000000000001,0.22,884,1.6,141,4.800000000000001,62.8695,49.5037 +2012,5,10,20,30,22.3,1.68,0.185,0.63,153,867,910,0,6,5.300000000000001,424,311,0,696,0.319,33.02,29.17,0.9400000000000001,0.22,883,1.7000000000000002,139,4.800000000000001,57.2984,45.0881 +2012,5,10,21,30,21.3,1.67,0.19,0.63,145,823,771,0,6,5.9,385,108,0,467,0.318,36.76,40.54,0.9400000000000001,0.22,883,1.8,138,4.5,47.8226,37.5785 +2012,5,10,22,30,20.1,1.74,0.20800000000000002,0.63,135,743,586,0,6,6.5,293,65,0,333,0.318,41.07,52.63,0.9400000000000001,0.22,883,1.9000000000000001,140,4,35.4342,27.7633 +2012,5,10,23,30,19,1.78,0.225,0.63,115,615,376,0,6,6.800000000000001,199,32,0,212,0.319,45.04,64.85,0.9400000000000001,0.22,883,2,141,3.7,21.6053,16.8172 +2012,5,11,0,30,17.900000000000002,1.77,0.256,0.63,78,385,165,0,6,7.1000000000000005,96,8,0,98,0.321,49.24,76.92,0.9400000000000001,0.22,884,2.1,141,3.7,8.8059,6.7418 +2012,5,11,1,30,16.6,1.77,0.269,0.63,10,44,12,7,6,7.5,7,0,7,7,0.322,54.84,88.4,0.9400000000000001,0.22,884,2.2,142,3.3000000000000003,0.0000,0.0000 +2012,5,11,2,30,15.600000000000001,1.8,0.248,0.63,0,0,0,0,6,8,0,0,0,0,0.322,60.52,99.72,0.9400000000000001,0.22,884,2.1,140,2.4000000000000004,0.0000,0.0000 +2012,5,11,3,30,14.700000000000001,1.84,0.23500000000000001,0.63,0,0,0,0,7,8.6,0,0,0,0,0.322,67,109.69,0.93,0.22,884,2.1,136,1.6,0.0000,0.0000 +2012,5,11,4,30,14.100000000000001,1.86,0.247,0.63,0,0,0,0,7,9.3,0,0,0,0,0.323,72.83,118.03,0.93,0.22,885,2.1,144,1.2000000000000002,0.0000,0.0000 +2012,5,11,5,30,13.600000000000001,1.86,0.28600000000000003,0.63,0,0,0,0,7,9.9,0,0,0,0,0.325,78.48,123.97,0.9400000000000001,0.22,885,2.2,162,1,0.0000,0.0000 +2012,5,11,6,30,13.200000000000001,1.85,0.314,0.63,0,0,0,0,6,10.5,0,0,0,0,0.326,83.62,126.69,0.9500000000000001,0.22,885,2.2,181,0.6000000000000001,0.0000,0.0000 +2012,5,11,7,30,12.9,1.8,0.338,0.63,0,0,0,0,6,10.8,0,0,0,0,0.327,87.03,125.68,0.9500000000000001,0.22,884,2.3000000000000003,257,0.4,0.0000,0.0000 +2012,5,11,8,30,12.700000000000001,1.75,0.329,0.63,0,0,0,0,6,10.9,0,0,0,0,0.327,89.05,121.14,0.9500000000000001,0.22,884,2.3000000000000003,333,0.7000000000000001,0.0000,0.0000 +2012,5,11,9,30,12.4,1.73,0.278,0.63,0,0,0,0,6,11,0,0,0,0,0.326,91.09,113.81,0.9500000000000001,0.22,884,2.3000000000000003,349,1.2000000000000002,0.0000,0.0000 +2012,5,11,10,30,12.200000000000001,1.73,0.245,0.63,0,0,0,0,6,10.9,0,0,0,0,0.324,91.99,104.51,0.9500000000000001,0.22,884,2.2,180,1.6,0.0000,0.0000 +2012,5,11,11,30,12.3,1.72,0.252,0.63,0,0,0,0,6,10.8,0,0,0,0,0.322,90.8,93.91,0.96,0.22,885,2.2,9,2.2,0.0000,0.0000 +2012,5,11,12,30,12.9,1.7,0.29,0.63,51,214,80,7,6,10.8,19,0,7,19,0.322,86.95,82.38,0.96,0.22,886,2.3000000000000003,23,2.7,0.0000,0.0000 +2012,5,11,13,30,13.9,1.68,0.343,0.63,121,436,267,0,6,10.8,82,2,0,83,0.323,81.56,70.49,0.97,0.22,887,2.3000000000000003,35,3.1,13.2858,10.2801 +2012,5,11,14,30,15,1.6600000000000001,0.39,0.63,175,556,468,0,6,10.4,63,0,0,63,0.323,74.17,58.300000000000004,0.97,0.22,887,2.4000000000000004,42,3.5,23.4171,18.3048 +2012,5,11,15,30,15.9,1.6300000000000001,0.427,0.63,218,629,655,0,6,10,164,1,0,165,0.322,68.2,46.09,0.97,0.22,888,2.4000000000000004,45,3.9000000000000004,30.6592,24.0657 +2012,5,11,16,30,16.400000000000002,1.6,0.431,0.63,243,686,810,0,7,10.100000000000001,312,8,0,319,0.32,66.4,34.24,0.97,0.22,889,2.4000000000000004,48,4.3,40.6942,32.0054 +2012,5,11,17,30,16.7,1.58,0.41500000000000004,0.63,251,727,917,0,7,10,427,19,0,445,0.318,64.83,23.71,0.97,0.22,889,2.4000000000000004,48,4.7,49.1373,38.6825 +2012,5,11,18,30,16.8,1.58,0.372,0.63,240,765,970,0,6,9.700000000000001,281,2,0,284,0.317,62.93,17.37,0.97,0.22,889,2.3000000000000003,42,4.9,52.8680,41.6341 +2012,5,11,19,30,17,1.62,0.308,0.63,212,796,961,0,6,9.3,371,9,0,379,0.316,60.52,19.88,0.96,0.22,889,2.3000000000000003,36,5,49.9374,39.3214 +2012,5,11,20,30,17.1,1.6400000000000001,0.273,0.63,191,798,889,0,8,9,337,8,0,344,0.315,58.72,29,0.96,0.22,889,2.2,38,5,42.2552,33.2511 +2012,5,11,21,30,16.900000000000002,1.62,0.265,0.63,176,761,755,0,4,8.700000000000001,373,16,0,386,0.315,58.4,40.410000000000004,0.96,0.22,889,2.2,45,5,27.7524,21.8080 +2012,5,11,22,30,16.5,1.62,0.259,0.63,154,697,579,0,4,8.6,164,0,0,164,0.315,59.660000000000004,52.5,0.96,0.22,889,2.1,53,4.9,19.0411,14.9196 +2012,5,11,23,30,15.9,1.62,0.234,0.63,120,606,378,0,0,8.700000000000001,120,606,0,378,0.315,62.2,64.73,0.9500000000000001,0.22,890,1.9000000000000001,61,4.7,11.3203,8.8125 +2012,5,12,0,30,14.5,1.61,0.20700000000000002,0.63,75,429,173,0,1,8.6,75,429,0,173,0.315,67.9,76.78,0.9500000000000001,0.22,890,1.8,68,3.8000000000000003,4.7198,3.6144 +2012,5,12,1,30,12.700000000000001,1.59,0.187,0.63,13,68,15,0,0,8.700000000000001,13,68,0,15,0.317,76.63,88.25,0.9400000000000001,0.22,891,1.6,72,2.4000000000000004,0.0000,0.0000 +2012,5,12,2,30,11.100000000000001,1.58,0.17,0.63,0,0,0,0,0,8.6,0,0,0,0,0.319,84.79,99.55,0.9400000000000001,0.22,892,1.6,69,1.5,0.0000,0.0000 +2012,5,12,3,30,10.3,1.58,0.153,0.63,0,0,0,0,0,8.4,0,0,0,0,0.321,88.29,109.5,0.93,0.22,893,1.5,58,1,0.0000,0.0000 +2012,5,12,4,30,9.700000000000001,1.56,0.135,0.63,0,0,0,0,0,8.3,0,0,0,0,0.323,90.72,117.82000000000001,0.93,0.22,894,1.5,41,0.9,0.0000,0.0000 +2012,5,12,5,30,9.200000000000001,1.52,0.12,0.63,0,0,0,0,0,8.1,0,0,0,0,0.325,92.61,123.74000000000001,0.93,0.22,894,1.5,29,0.9,0.0000,0.0000 +2012,5,12,6,30,8.6,1.47,0.111,0.63,0,0,0,0,0,7.9,0,0,0,0,0.326,95.28,126.44,0.93,0.22,894,1.5,25,1.1,0.0000,0.0000 +2012,5,12,7,30,8.200000000000001,1.43,0.111,0.63,0,0,0,0,0,7.800000000000001,0,0,0,0,0.327,97.01,125.43,0.93,0.22,894,1.5,21,1.2000000000000002,0.0000,0.0000 +2012,5,12,8,30,7.7,1.41,0.117,0.63,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.329,99.63,120.91,0.93,0.22,894,1.6,15,1.4000000000000001,0.0000,0.0000 +2012,5,12,9,30,7.300000000000001,1.4000000000000001,0.126,0.63,0,0,0,0,0,7.300000000000001,0,0,0,0,0.33,100,113.61,0.93,0.22,895,1.7000000000000002,13,1.6,0.0000,0.0000 +2012,5,12,10,30,7,1.4000000000000001,0.132,0.63,0,0,0,0,0,7,0,0,0,0,0.331,100,104.33,0.9400000000000001,0.22,895,1.7000000000000002,12,1.8,0.0000,0.0000 +2012,5,12,11,30,7.6000000000000005,1.4000000000000001,0.136,0.63,0,0,0,0,0,7.4,0,0,0,0,0.331,98.37,93.75,0.9400000000000001,0.22,895,1.8,12,2.2,0.0000,0.0000 +2012,5,12,12,30,9.700000000000001,1.3900000000000001,0.14,0.63,44,334,90,0,0,7.300000000000001,44,334,0,90,0.332,85.05,82.23,0.9400000000000001,0.22,896,1.8,19,3.2,0.0000,0.0000 +2012,5,12,13,30,12.700000000000001,1.3900000000000001,0.14100000000000001,0.63,83,613,289,0,0,7,83,613,0,289,0.333,68.38,70.35000000000001,0.9400000000000001,0.22,896,1.8,32,3.9000000000000004,4.2304,3.2739 +2012,5,12,14,30,15.3,1.3900000000000001,0.14300000000000002,0.63,107,747,501,0,0,6.6000000000000005,107,747,0,501,0.333,56.07,58.17,0.9400000000000001,0.22,897,1.9000000000000001,42,4.2,3.5067,2.7413 +2012,5,12,15,30,17.6,1.4000000000000001,0.148,0.63,124,822,696,7,3,6.2,380,288,7,580,0.333,47.1,45.95,0.9400000000000001,0.22,897,1.9000000000000001,47,4.1000000000000005,9.6583,7.5814 +2012,5,12,16,30,19.400000000000002,1.4000000000000001,0.155,0.63,139,863,854,0,3,6.1000000000000005,489,181,0,639,0.332,41.72,34.09,0.9500000000000001,0.22,897,1.9000000000000001,49,3.7,19.2089,15.1078 +2012,5,12,17,30,20.8,1.4000000000000001,0.16,0.63,149,886,961,0,4,6,505,99,0,595,0.332,38.1,23.52,0.9500000000000001,0.22,896,1.9000000000000001,49,3.4000000000000004,27.2026,21.4151 +2012,5,12,18,30,21.6,1.42,0.176,0.63,159,885,1005,0,4,6,496,38,0,533,0.331,36.29,17.12,0.9500000000000001,0.22,896,1.9000000000000001,51,3.1,17.4621,13.7517 +2012,5,12,19,30,22,1.4000000000000001,0.176,0.63,158,882,988,0,3,6.1000000000000005,548,179,0,717,0.331,35.64,19.66,0.9500000000000001,0.22,895,1.9000000000000001,53,2.9000000000000004,23.2555,18.3119 +2012,5,12,20,30,22,1.3800000000000001,0.167,0.63,149,869,910,0,4,6.300000000000001,285,0,0,286,0.332,36.1,28.84,0.9500000000000001,0.22,895,1.9000000000000001,56,2.6,20.8898,16.4387 +2012,5,12,21,30,21.5,1.37,0.161,0.63,137,836,775,0,4,6.300000000000001,350,7,0,355,0.334,37.39,40.27,0.9500000000000001,0.22,895,1.9000000000000001,58,2.3000000000000003,22.9459,18.0315 +2012,5,12,22,30,20.6,1.37,0.159,0.63,122,775,595,0,0,6.300000000000001,122,775,0,595,0.336,39.43,52.38,0.9500000000000001,0.22,895,1.9000000000000001,60,2.2,9.3826,7.3521 +2012,5,12,23,30,19.5,1.3800000000000001,0.155,0.63,100,672,388,0,0,6.300000000000001,100,672,0,388,0.338,42.11,64.6,0.9500000000000001,0.22,895,1.9000000000000001,66,2.2,20.2020,15.7282 +2012,5,13,0,30,17.7,1.4000000000000001,0.152,0.63,67,475,177,0,1,6.300000000000001,67,475,0,177,0.341,47.03,76.65,0.9500000000000001,0.21,895,2,76,1.8,8.3400,6.3884 +2012,5,13,1,30,15.600000000000001,1.41,0.145,0.63,14,81,17,0,1,7.4,14,81,0,17,0.343,58.2,88.12,0.9500000000000001,0.21,896,2,86,1.4000000000000001,0.0000,0.0000 +2012,5,13,2,30,14.3,1.4000000000000001,0.148,0.63,0,0,0,0,1,7.1000000000000005,0,0,0,0,0.34600000000000003,61.83,99.39,0.9500000000000001,0.21,896,2,93,1.5,0.0000,0.0000 +2012,5,13,3,30,13.5,1.3900000000000001,0.155,0.63,0,0,0,0,3,6.7,0,0,0,0,0.34900000000000003,63.68,109.31,0.9500000000000001,0.21,896,2.1,96,1.6,0.0000,0.0000 +2012,5,13,4,30,12.8,1.4000000000000001,0.164,0.63,0,0,0,0,4,6.6000000000000005,0,0,0,0,0.35100000000000003,65.98,117.60000000000001,0.9500000000000001,0.21,896,2.1,100,1.4000000000000001,0.0000,0.0000 +2012,5,13,5,30,12.100000000000001,1.3900000000000001,0.181,0.63,0,0,0,0,6,6.6000000000000005,0,0,0,0,0.352,69.02,123.5,0.9500000000000001,0.21,897,2.1,102,1.2000000000000002,0.0000,0.0000 +2012,5,13,6,30,11.8,1.3800000000000001,0.203,0.63,0,0,0,0,6,6.7,0,0,0,0,0.352,71.11,126.19,0.96,0.21,897,2.2,103,0.9,0.0000,0.0000 +2012,5,13,7,30,11.600000000000001,1.37,0.218,0.63,0,0,0,0,6,7,0,0,0,0,0.35100000000000003,73.24,125.19,0.96,0.21,896,2.2,106,0.7000000000000001,0.0000,0.0000 +2012,5,13,8,30,11.4,1.3800000000000001,0.232,0.63,0,0,0,0,7,7.2,0,0,0,0,0.35000000000000003,75.36,120.69,0.96,0.21,896,2.2,111,0.5,0.0000,0.0000 +2012,5,13,9,30,11,1.3900000000000001,0.234,0.63,0,0,0,0,7,7.4,0,0,0,0,0.34900000000000003,78.43,113.41,0.96,0.21,896,2.2,114,0.4,0.0000,0.0000 +2012,5,13,10,30,10.4,1.42,0.22,0.63,0,0,0,0,4,7.5,0,0,0,0,0.34900000000000003,82.33,104.15,0.9500000000000001,0.21,896,2.1,137,0.30000000000000004,0.0000,0.0000 +2012,5,13,11,30,10.4,1.43,0.20400000000000001,0.63,0,0,0,0,4,7.6000000000000005,0,0,0,0,0.34800000000000003,83.04,93.59,0.9500000000000001,0.21,897,2.1,182,0.4,0.0000,0.0000 +2012,5,13,12,30,11.9,1.44,0.195,0.63,49,279,88,7,4,7.800000000000001,30,0,7,30,0.34900000000000003,76.16,82.09,0.9500000000000001,0.21,897,2,204,1,0.0000,0.0000 +2012,5,13,13,30,14.700000000000001,1.44,0.191,0.63,95,557,283,0,4,8.5,179,21,0,186,0.35000000000000003,66.17,70.22,0.9500000000000001,0.21,897,2,202,1.8,14.7485,11.4160 +2012,5,13,14,30,17.2,1.43,0.191,0.63,123,702,494,7,3,8.700000000000001,238,12,7,244,0.352,57.52,58.04,0.9500000000000001,0.21,897,2,198,1.9000000000000001,27.9061,21.8166 +2012,5,13,15,30,19.1,1.43,0.198,0.63,144,777,686,0,0,9,144,777,0,686,0.355,51.79,45.82,0.9500000000000001,0.21,897,2.1,194,1.9000000000000001,33.9650,26.6622 +2012,5,13,16,30,20.3,1.42,0.213,0.63,164,817,841,0,0,9.1,164,817,0,841,0.357,48.69,33.95,0.96,0.21,896,2.1,189,1.8,38.4884,30.2717 +2012,5,13,17,30,20.6,1.4000000000000001,0.23500000000000001,0.63,181,828,942,7,2,9.4,517,314,7,805,0.359,48.730000000000004,23.330000000000002,0.96,0.21,896,2.2,183,1.8,36.3795,28.6399 +2012,5,13,18,30,20.3,1.4000000000000001,0.28400000000000003,0.63,206,808,980,0,4,9.8,348,1,0,349,0.36,50.85,16.88,0.97,0.21,895,2.3000000000000003,178,1.9000000000000001,32.7782,25.8138 +2012,5,13,19,30,19.8,1.3900000000000001,0.314,0.63,217,784,957,0,4,10.3,558,167,0,716,0.36,54.18,19.45,0.97,0.21,894,2.4000000000000004,173,2,44.0037,34.6500 +2012,5,13,20,30,19,1.3800000000000001,0.334,0.63,218,750,876,0,6,10.9,420,35,0,451,0.358,59.22,28.68,0.97,0.21,894,2.4000000000000004,168,2,17.3716,13.6703 +2012,5,13,21,30,18.1,1.3800000000000001,0.341,0.63,205,700,740,0,9,11.3,249,5,0,252,0.358,64.55,40.14,0.97,0.21,894,2.5,161,2.1,21.1102,16.5893 +2012,5,13,22,30,17.3,1.3900000000000001,0.334,0.63,180,632,566,0,9,11.600000000000001,95,0,0,96,0.357,69.15,52.25,0.97,0.21,894,2.4000000000000004,150,2.4000000000000004,34.0574,26.6878 +2012,5,13,23,30,16.6,1.42,0.296,0.63,136,539,369,0,9,11.700000000000001,68,0,0,68,0.356,73.03,64.48,0.97,0.21,893,2.4000000000000004,139,2.7,20.7562,16.1613 +2012,5,14,0,30,15.5,1.42,0.28800000000000003,0.63,87,343,167,0,9,12,38,0,0,38,0.354,79.54,76.52,0.97,0.21,893,2.4000000000000004,132,2.3000000000000003,8.5408,6.5437 +2012,5,14,1,30,14.4,1.4000000000000001,0.328,0.63,12,27,13,7,6,12.5,10,0,7,10,0.352,88.16,87.98,0.97,0.21,894,2.4000000000000004,125,1.8,0.0000,0.0000 +2012,5,14,2,30,13.9,1.3900000000000001,0.401,0.63,0,0,0,0,6,12.4,0,0,0,0,0.35100000000000003,90.8,99.22,0.97,0.21,894,2.5,120,1.5,0.0000,0.0000 +2012,5,14,3,30,13.5,1.3800000000000001,0.436,0.63,0,0,0,0,7,12.5,0,0,0,0,0.35100000000000003,93.46000000000001,109.13,0.97,0.21,895,2.5,133,0.9,0.0000,0.0000 +2012,5,14,4,30,13,1.3900000000000001,0.34,0.63,0,0,0,0,7,12.4,0,0,0,0,0.354,96.12,117.4,0.97,0.21,895,2.5,160,0.8,0.0000,0.0000 +2012,5,14,5,30,12.8,1.37,0.271,0.63,0,0,0,0,7,12.200000000000001,0,0,0,0,0.357,96.39,123.27,0.97,0.21,894,2.4000000000000004,168,1.1,0.0000,0.0000 +2012,5,14,6,30,12.8,1.35,0.28300000000000003,0.63,0,0,0,0,7,12.200000000000001,0,0,0,0,0.36,95.87,125.95,0.97,0.21,894,2.4000000000000004,162,1.4000000000000001,0.0000,0.0000 +2012,5,14,7,30,12.600000000000001,1.36,0.28500000000000003,0.63,0,0,0,0,7,12.100000000000001,0,0,0,0,0.361,96.74000000000001,124.96000000000001,0.96,0.21,893,2.4000000000000004,165,1.5,0.0000,0.0000 +2012,5,14,8,30,12.4,1.36,0.281,0.63,0,0,0,0,7,12,0,0,0,0,0.361,97.49000000000001,120.47,0.97,0.21,893,2.4000000000000004,173,1.3,0.0000,0.0000 +2012,5,14,9,30,12.200000000000001,1.37,0.299,0.63,0,0,0,0,7,11.9,0,0,0,0,0.361,98.14,113.21000000000001,0.97,0.21,893,2.4000000000000004,175,1,0.0000,0.0000 +2012,5,14,10,30,12.100000000000001,1.3800000000000001,0.325,0.63,0,0,0,0,7,11.8,0,0,0,0,0.361,98.16,103.98,0.97,0.21,893,2.4000000000000004,163,0.7000000000000001,0.0000,0.0000 +2012,5,14,11,30,12.200000000000001,1.3800000000000001,0.342,0.63,0,0,0,0,7,11.700000000000001,0,0,0,0,0.362,97.03,93.44,0.97,0.21,894,2.4000000000000004,138,0.6000000000000001,0.0000,0.0000 +2012,5,14,12,30,12.8,1.3800000000000001,0.343,0.63,57,174,82,7,6,11.700000000000001,44,1,7,44,0.363,92.99,81.96000000000001,0.97,0.21,894,2.3000000000000003,113,0.9,0.0000,0.0000 +2012,5,14,13,30,13.8,1.3900000000000001,0.32,0.63,121,441,271,0,6,11.600000000000001,22,0,0,22,0.364,86.7,70.10000000000001,0.97,0.21,894,2.3000000000000003,100,1.6,9.5032,7.3572 +2012,5,14,14,30,15,1.4000000000000001,0.28800000000000003,0.63,153,619,482,0,6,11.5,44,0,0,44,0.365,79.67,57.92,0.97,0.21,894,2.2,97,2.4000000000000004,13.6005,10.6333 +2012,5,14,15,30,16.1,1.3900000000000001,0.28600000000000003,0.63,177,711,674,0,6,11.200000000000001,74,0,0,74,0.366,72.76,45.7,0.97,0.21,894,2.2,100,3.1,40.1884,31.5484 +2012,5,14,16,30,16.7,1.3800000000000001,0.272,0.63,188,775,832,0,6,10.8,176,1,0,176,0.365,68.33,33.81,0.96,0.21,894,2.2,105,3.4000000000000004,50.6681,39.8518 +2012,5,14,17,30,17,1.3900000000000001,0.257,0.63,191,814,940,0,6,10.600000000000001,385,11,0,395,0.363,65.98,23.150000000000002,0.96,0.21,894,2.2,108,3.4000000000000004,49.2294,38.7565 +2012,5,14,18,30,17.1,1.4000000000000001,0.263,0.63,198,823,986,0,6,10.5,492,90,0,578,0.358,65.34,16.64,0.97,0.21,894,2.2,108,3.3000000000000003,21.4664,16.9056 +2012,5,14,19,30,17.2,1.4000000000000001,0.263,0.63,196,819,969,0,6,10.600000000000001,487,126,0,605,0.354,65.03,19.240000000000002,0.97,0.21,893,2.2,111,3.2,43.9503,34.6083 +2012,5,14,20,30,17.3,1.41,0.243,0.63,181,811,893,0,6,10.5,471,116,0,573,0.35100000000000003,64.42,28.53,0.96,0.21,893,2.2,118,2.9000000000000004,27.3999,21.5622 +2012,5,14,21,30,17.5,1.4000000000000001,0.20500000000000002,0.63,154,797,764,0,7,10.4,291,473,0,653,0.34900000000000003,62.910000000000004,40.01,0.96,0.21,893,2.2,124,2.3000000000000003,14.9899,11.7799 +2012,5,14,22,30,17.6,1.41,0.168,0.63,124,764,593,0,7,10,175,629,0,561,0.34800000000000003,60.95,52.13,0.9500000000000001,0.21,893,2.1,132,1.6,5.4979,4.3084 +2012,5,14,23,30,17.2,1.3900000000000001,0.14400000000000002,0.63,96,686,392,0,0,9.5,96,686,0,392,0.34800000000000003,60.72,64.35,0.9400000000000001,0.21,893,1.9000000000000001,148,1,3.6408,2.8351 +2012,5,15,0,30,15.9,1.34,0.135,0.63,65,503,183,0,0,9.5,65,503,0,183,0.34700000000000003,65.58,76.39,0.9400000000000001,0.21,893,1.8,186,0.7000000000000001,1.8354,1.4065 +2012,5,15,1,30,13.8,1.29,0.132,0.63,15,99,19,0,0,10.100000000000001,15,99,0,19,0.34600000000000003,78.25,87.85000000000001,0.93,0.21,893,1.6,226,0.7000000000000001,0.0000,0.0000 +2012,5,15,2,30,12.200000000000001,1.25,0.129,0.63,0,0,0,0,0,9.1,0,0,0,0,0.34500000000000003,81.42,99.06,0.93,0.21,894,1.5,244,1,0.0000,0.0000 +2012,5,15,3,30,11.3,1.21,0.126,0.63,0,0,0,0,0,8.9,0,0,0,0,0.34400000000000003,85.2,108.95,0.93,0.21,894,1.4000000000000001,251,1.2000000000000002,0.0000,0.0000 +2012,5,15,4,30,10.600000000000001,1.19,0.122,0.63,0,0,0,0,0,8.9,0,0,0,0,0.34400000000000003,89.49,117.19,0.93,0.21,894,1.4000000000000001,254,1.4000000000000001,0.0000,0.0000 +2012,5,15,5,30,10.100000000000001,1.18,0.117,0.63,0,0,0,0,0,9,0,0,0,0,0.343,92.79,123.05,0.93,0.21,893,1.3,258,1.5,0.0000,0.0000 +2012,5,15,6,30,9.600000000000001,1.19,0.111,0.63,0,0,0,0,0,9,0,0,0,0,0.343,96.2,125.72,0.93,0.21,893,1.3,262,1.7000000000000002,0.0000,0.0000 +2012,5,15,7,30,9.3,1.21,0.107,0.63,0,0,0,0,0,9.1,0,0,0,0,0.342,98.45,124.72,0.93,0.21,893,1.3,268,1.9000000000000001,0.0000,0.0000 +2012,5,15,8,30,8.9,1.24,0.10300000000000001,0.63,0,0,0,0,0,8.9,0,0,0,0,0.342,100,120.26,0.93,0.21,892,1.2000000000000002,274,2.1,0.0000,0.0000 +2012,5,15,9,30,8.6,1.27,0.10200000000000001,0.63,0,0,0,0,0,8.6,0,0,0,0,0.34,100,113.02,0.93,0.21,892,1.2000000000000002,280,2.3000000000000003,0.0000,0.0000 +2012,5,15,10,30,8.3,1.31,0.101,0.63,0,0,0,0,0,8.3,0,0,0,0,0.338,100,103.82000000000001,0.9400000000000001,0.21,893,1.2000000000000002,284,2.3000000000000003,0.0000,0.0000 +2012,5,15,11,30,8.9,1.33,0.10200000000000001,0.63,0,0,0,0,0,8.9,0,0,0,0,0.336,99.99000000000001,93.3,0.9400000000000001,0.21,893,1.2000000000000002,285,2.7,0.0000,0.0000 +2012,5,15,12,30,11.200000000000001,1.35,0.10200000000000001,0.63,43,412,101,0,0,8.6,43,412,0,101,0.334,84.10000000000001,81.83,0.9400000000000001,0.21,893,1.2000000000000002,284,3.2,0.0000,0.0000 +2012,5,15,13,30,14.9,1.34,0.101,0.63,73,683,307,0,0,8.5,73,683,0,307,0.334,65.49,69.98,0.93,0.21,893,1.2000000000000002,278,3,1.1253,0.8713 +2012,5,15,14,30,19.3,1.32,0.101,0.63,92,811,525,0,0,7.800000000000001,92,811,0,525,0.333,47.18,57.800000000000004,0.93,0.21,893,1.2000000000000002,268,2.3000000000000003,2.4541,1.9188 +2012,5,15,15,30,22.3,1.29,0.10300000000000001,0.63,106,880,722,0,0,5.7,106,880,0,722,0.331,34.11,45.58,0.93,0.21,893,1.2000000000000002,252,1.4000000000000001,4.3368,3.4045 +2012,5,15,16,30,24,1.28,0.106,0.63,117,920,882,0,0,5.300000000000001,117,920,0,882,0.329,29.79,33.67,0.93,0.21,893,1.2000000000000002,239,0.8,10.6062,8.3422 +2012,5,15,17,30,25.3,1.26,0.109,0.63,124,937,986,0,0,5.1000000000000005,124,937,0,986,0.328,27.310000000000002,22.98,0.93,0.21,893,1.3,234,0.5,24.1606,19.0210 +2012,5,15,18,30,26.3,1.1500000000000001,0.10300000000000001,0.63,124,950,1035,0,0,4.9,124,950,0,1035,0.327,25.42,16.42,0.93,0.21,892,1.3,255,0.30000000000000004,35.5581,28.0036 +2012,5,15,19,30,27,1.1500000000000001,0.10400000000000001,0.63,123,946,1018,0,0,4.7,123,946,0,1018,0.326,24.03,19.03,0.93,0.21,892,1.3,284,0.30000000000000004,37.1434,29.2486 +2012,5,15,20,30,27.3,1.1500000000000001,0.10400000000000001,0.63,119,930,937,0,0,4.5,119,930,0,937,0.327,23.16,28.37,0.93,0.21,891,1.3,293,0.30000000000000004,34.8191,27.4011 +2012,5,15,21,30,27.200000000000003,1.27,0.11,0.63,114,897,803,0,0,4.1000000000000005,114,897,0,803,0.328,22.78,39.88,0.93,0.21,891,1.2000000000000002,292,0.30000000000000004,38.8546,30.5349 +2012,5,15,22,30,26.6,1.29,0.109,0.63,102,842,621,0,0,3.7,102,842,0,621,0.329,22.91,52.01,0.93,0.21,890,1.2000000000000002,284,0.4,32.1440,25.1905 +2012,5,15,23,30,25.6,1.33,0.109,0.63,85,745,409,0,0,3.4000000000000004,85,745,0,409,0.329,23.7,64.23,0.92,0.21,890,1.2000000000000002,262,0.5,21.0081,16.3606 +2012,5,16,0,30,23.3,1.37,0.11,0.63,60,558,193,0,0,4.800000000000001,60,558,0,193,0.327,30.080000000000002,76.26,0.92,0.21,891,1.2000000000000002,236,0.7000000000000001,8.8472,6.7818 +2012,5,16,1,30,20.200000000000003,1.4000000000000001,0.111,0.63,16,139,21,0,0,7.6000000000000005,16,139,0,21,0.325,43.99,87.72,0.91,0.21,891,1.1,227,1,0.0000,0.0000 +2012,5,16,2,30,17.8,1.43,0.113,0.63,0,0,0,0,0,6.300000000000001,0,0,0,0,0.323,46.87,98.9,0.91,0.21,892,1.1,233,1.3,0.0000,0.0000 +2012,5,16,3,30,16.3,1.43,0.115,0.63,0,0,0,0,0,5.9,0,0,0,0,0.322,50.160000000000004,108.77,0.91,0.21,892,1.1,240,1.4000000000000001,0.0000,0.0000 +2012,5,16,4,30,15.3,1.43,0.114,0.63,0,0,0,0,0,5.4,0,0,0,0,0.323,51.67,116.99000000000001,0.91,0.21,892,1.1,246,1.5,0.0000,0.0000 +2012,5,16,5,30,14.4,1.41,0.113,0.63,0,0,0,0,0,5,0,0,0,0,0.323,53.08,122.83,0.91,0.21,892,1.1,253,1.6,0.0000,0.0000 +2012,5,16,6,30,13.600000000000001,1.3900000000000001,0.112,0.63,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.323,54.39,125.48,0.91,0.21,892,1,259,1.6,0.0000,0.0000 +2012,5,16,7,30,12.9,1.37,0.111,0.63,0,0,0,0,0,4.2,0,0,0,0,0.323,55.53,124.5,0.91,0.21,892,1,266,1.6,0.0000,0.0000 +2012,5,16,8,30,12.3,1.35,0.111,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.323,56.6,120.05,0.91,0.21,891,1,272,1.7000000000000002,0.0000,0.0000 +2012,5,16,9,30,11.700000000000001,1.34,0.11,0.63,0,0,0,0,0,3.7,0,0,0,0,0.324,58.15,112.84,0.91,0.21,892,1,277,1.7000000000000002,0.0000,0.0000 +2012,5,16,10,30,11,1.32,0.108,0.63,0,0,0,0,0,3.6,0,0,0,0,0.324,60.19,103.66,0.91,0.21,892,1,281,1.7000000000000002,0.0000,0.0000 +2012,5,16,11,30,11.5,1.3,0.107,0.63,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.324,57.370000000000005,93.16,0.91,0.21,892,0.9,285,1.8,0.0000,0.0000 +2012,5,16,12,30,13.9,1.28,0.106,0.63,43,418,103,0,0,3.9000000000000004,43,418,0,103,0.323,50.79,81.7,0.91,0.21,892,0.9,286,2.6,0.0000,0.0000 +2012,5,16,13,30,17.400000000000002,1.26,0.105,0.63,74,690,312,0,0,3.5,74,690,0,312,0.323,39.51,69.86,0.91,0.21,892,0.9,285,2.9000000000000004,15.7193,12.1732 +2012,5,16,14,30,21.900000000000002,1.24,0.10400000000000001,0.63,93,819,531,0,0,4.2,93,819,0,531,0.322,31.37,57.69,0.91,0.21,892,0.9,270,1.7000000000000002,29.3007,22.9109 +2012,5,16,15,30,25.6,1.23,0.10300000000000001,0.63,106,892,731,0,0,2.6,106,892,0,731,0.32,22.41,45.47,0.91,0.21,892,0.9,213,1,42.3281,33.2298 +2012,5,16,16,30,27.200000000000003,1.23,0.10300000000000001,0.63,115,933,892,0,0,2.3000000000000003,115,933,0,892,0.317,19.96,33.55,0.91,0.21,892,0.9,171,1.5,53.1647,41.8168 +2012,5,16,17,30,28.3,1.24,0.10300000000000001,0.63,120,952,998,0,0,2,120,952,0,998,0.315,18.39,22.81,0.91,0.21,891,1,175,2,60.3207,47.4893 +2012,5,16,18,30,29.1,1.2,0.099,0.63,120,964,1046,0,0,1.9000000000000001,120,964,0,1046,0.313,17.43,16.19,0.91,0.21,891,1,179,2.4000000000000004,63.6823,50.1531 +2012,5,16,19,30,29.6,1.21,0.099,0.63,120,961,1029,0,0,1.8,120,961,0,1029,0.312,16.85,18.830000000000002,0.91,0.21,890,1,181,2.8000000000000003,62.5103,49.2242 +2012,5,16,20,30,29.700000000000003,1.22,0.099,0.63,116,945,949,0,0,1.8,116,945,0,949,0.311,16.68,28.22,0.91,0.21,889,1,182,3,56.9506,44.8182 +2012,5,16,21,30,29.5,1.1500000000000001,0.091,0.63,105,920,813,0,0,1.7000000000000002,105,920,0,813,0.309,16.830000000000002,39.76,0.91,0.21,889,1,181,3.1,47.7944,37.5613 +2012,5,16,22,30,28.8,1.16,0.091,0.63,95,867,630,0,0,1.5,95,867,0,630,0.307,17.240000000000002,51.89,0.91,0.21,888,1,179,3.1,35.5991,27.8993 +2012,5,16,23,30,27.3,1.19,0.089,0.63,79,776,418,0,0,1.4000000000000001,79,776,0,418,0.306,18.64,64.11,0.91,0.21,888,1,175,2.6,21.9380,17.0865 +2012,5,17,0,30,23.900000000000002,1.21,0.088,0.63,57,597,200,0,0,4.7,57,597,0,200,0.305,28.84,76.13,0.91,0.21,888,1,168,1.7000000000000002,9.3399,7.1612 +2012,5,17,1,30,20.3,1.23,0.088,0.63,17,166,24,0,0,6.9,17,166,0,24,0.304,41.800000000000004,87.59,0.9,0.21,888,1,159,1.5,0.0000,0.0000 +2012,5,17,2,30,18.6,1.25,0.089,0.63,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.303,41.13,98.75,0.9,0.21,889,1,154,2,0.0000,0.0000 +2012,5,17,3,30,17.8,1.25,0.092,0.63,0,0,0,0,0,4.4,0,0,0,0,0.303,41.01,108.59,0.9,0.21,889,0.9,156,2.4000000000000004,0.0000,0.0000 +2012,5,17,4,30,16.900000000000002,1.25,0.097,0.63,0,0,0,0,0,4,0,0,0,0,0.303,42.31,116.79,0.9,0.21,889,0.9,165,2.8000000000000003,0.0000,0.0000 +2012,5,17,5,30,15.9,1.24,0.101,0.63,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.303,44.83,122.61,0.91,0.21,889,0.9,181,2.8000000000000003,0.0000,0.0000 +2012,5,17,6,30,15,1.22,0.10300000000000001,0.63,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.304,47.19,125.26,0.91,0.21,888,0.9,200,2.8000000000000003,0.0000,0.0000 +2012,5,17,7,30,14.4,1.2,0.10200000000000001,0.63,0,0,0,0,0,3.5,0,0,0,0,0.306,47.99,124.28,0.91,0.21,888,0.9,215,3.1,0.0000,0.0000 +2012,5,17,8,30,13.9,1.18,0.1,0.63,0,0,0,0,1,3,0,0,0,0,0.307,47.75,119.85000000000001,0.91,0.21,888,0.9,223,3.5,0.0000,0.0000 +2012,5,17,9,30,13.5,1.16,0.1,0.63,0,0,0,0,7,2.5,0,0,0,0,0.307,47.31,112.66,0.92,0.21,888,0.9,227,3.6,0.0000,0.0000 +2012,5,17,10,30,13,1.1500000000000001,0.101,0.63,0,0,0,0,4,2.3000000000000003,0,0,0,0,0.307,48.13,103.5,0.92,0.21,888,0.9,230,3.5,0.0000,0.0000 +2012,5,17,11,30,13.200000000000001,1.17,0.105,0.63,0,0,0,0,7,2.4000000000000004,0,0,0,0,0.307,47.800000000000004,93.02,0.93,0.21,888,1,231,3.7,0.0000,0.0000 +2012,5,17,12,30,14.700000000000001,1.21,0.112,0.63,45,403,104,7,7,2.7,76,30,7,80,0.308,44.51,81.59,0.93,0.21,888,1.1,229,4.1000000000000005,0.0000,0.0000 +2012,5,17,13,30,17.900000000000002,1.27,0.127,0.63,82,653,308,0,0,3.5,82,653,0,308,0.309,38.33,69.75,0.9400000000000001,0.21,888,1.2000000000000002,223,4.6000000000000005,15.9925,12.3866 +2012,5,17,14,30,21.900000000000002,1.31,0.15,0.63,111,761,519,0,3,4.4,286,297,0,446,0.31,31.88,57.59,0.9400000000000001,0.21,888,1.3,218,5.800000000000001,29.6527,23.1874 +2012,5,17,15,30,25.1,1.34,0.167,0.63,134,822,712,7,3,3.2,315,556,7,705,0.31,24.21,45.36,0.9500000000000001,0.21,887,1.4000000000000001,213,6.7,42.8698,33.6560 +2012,5,17,16,30,27.3,1.37,0.16,0.63,141,874,871,0,0,2.2,141,874,0,871,0.312,19.69,33.42,0.9400000000000001,0.21,887,1.4000000000000001,209,6.7,53.7788,42.3004 +2012,5,17,17,30,29.200000000000003,1.41,0.147,0.63,141,912,983,7,2,1.7000000000000002,324,685,7,956,0.313,17.02,22.650000000000002,0.93,0.21,886,1.3,206,6.7,61.0656,48.0764 +2012,5,17,18,30,30.6,1.3800000000000001,0.115,0.63,128,944,1036,0,7,1.5,235,769,0,974,0.314,15.47,15.97,0.93,0.21,885,1.3,203,6.6000000000000005,64.3695,50.6948 +2012,5,17,19,30,31.6,1.36,0.107,0.63,123,946,1019,0,0,1.3,123,946,0,1019,0.314,14.49,18.64,0.92,0.21,884,1.3,201,6.6000000000000005,63.1962,49.7649 +2012,5,17,20,30,32,1.31,0.097,0.63,114,938,942,0,0,1.3,114,938,0,942,0.313,14.14,28.080000000000002,0.92,0.21,883,1.3,199,6.6000000000000005,57.6918,45.4021 +2012,5,17,21,30,31.8,1.49,0.137,0.63,123,873,796,0,0,1.3,123,873,0,796,0.314,14.280000000000001,39.63,0.92,0.21,882,1.4000000000000001,197,6.6000000000000005,48.4031,38.0404 +2012,5,17,22,30,31.1,1.51,0.147,0.63,114,803,612,0,0,1.3,114,803,0,612,0.314,14.85,51.77,0.92,0.21,881,1.5,193,6.5,36.1324,28.3184 +2012,5,17,23,30,29.5,1.54,0.189,0.63,108,659,397,0,7,1.4000000000000001,179,408,0,358,0.313,16.47,63.99,0.93,0.21,881,1.6,185,6.1000000000000005,22.4399,17.4790 +2012,5,18,0,30,27,1.54,0.24,0.63,81,415,181,0,3,2.1,133,192,0,180,0.311,20,76.01,0.93,0.21,881,1.7000000000000002,177,5.800000000000001,9.6885,7.4302 +2012,5,18,1,30,24.400000000000002,1.52,0.259,0.63,17,65,20,0,0,2.4000000000000004,17,65,0,20,0.309,23.76,87.46000000000001,0.9400000000000001,0.21,881,1.6,172,5.800000000000001,0.0000,0.0000 +2012,5,18,2,30,22.5,1.51,0.226,0.63,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.307,26.45,98.59,0.93,0.21,882,1.6,172,6,0.0000,0.0000 +2012,5,18,3,30,21.200000000000003,1.49,0.2,0.63,0,0,0,0,1,2.1,0,0,0,0,0.305,28.28,108.42,0.93,0.21,882,1.5,176,6,0.0000,0.0000 +2012,5,18,4,30,20.1,1.49,0.17,0.63,0,0,0,0,7,2.3000000000000003,0,0,0,0,0.303,30.64,116.60000000000001,0.92,0.21,882,1.5,181,6,0.0000,0.0000 +2012,5,18,5,30,19.1,1.47,0.153,0.63,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.302,33.96,122.4,0.92,0.21,881,1.5,185,6.1000000000000005,0.0000,0.0000 +2012,5,18,6,30,18.3,1.45,0.147,0.63,0,0,0,0,0,3.6,0,0,0,0,0.301,37.78,125.04,0.92,0.21,881,1.4000000000000001,190,6.2,0.0000,0.0000 +2012,5,18,7,30,17.400000000000002,1.44,0.147,0.63,0,0,0,0,0,4.4,0,0,0,0,0.301,42.2,124.07000000000001,0.92,0.21,881,1.4000000000000001,196,6.2,0.0000,0.0000 +2012,5,18,8,30,16.6,1.44,0.147,0.63,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.301,46.62,119.66,0.91,0.21,880,1.3,202,6.2,0.0000,0.0000 +2012,5,18,9,30,15.8,1.47,0.146,0.63,0,0,0,0,0,5.7,0,0,0,0,0.301,51.230000000000004,112.49000000000001,0.91,0.21,880,1.3,206,6,0.0000,0.0000 +2012,5,18,10,30,14.8,1.5,0.14200000000000002,0.63,0,0,0,0,0,6.5,0,0,0,0,0.301,57.370000000000005,103.35000000000001,0.91,0.21,880,1.2000000000000002,209,5.7,0.0000,0.0000 +2012,5,18,11,30,14.4,1.5,0.134,0.63,0,0,0,0,0,6.9,0,0,0,0,0.301,60.83,92.89,0.91,0.21,880,1.1,212,5.5,0.0000,0.0000 +2012,5,18,12,30,15.700000000000001,1.49,0.129,0.63,46,397,104,0,0,7,46,397,0,104,0.3,56.18,81.47,0.91,0.21,880,1.1,217,5.5,0.0000,0.0000 +2012,5,18,13,30,19,1.49,0.13,0.63,80,661,310,0,0,6.5,80,661,0,310,0.3,44.15,69.65,0.91,0.21,881,1.1,222,5.300000000000001,15.8029,12.2414 +2012,5,18,14,30,23.5,1.51,0.137,0.63,103,786,525,0,0,5.1000000000000005,103,786,0,525,0.299,30.45,57.49,0.91,0.21,881,1.1,226,5.2,24.9191,19.4868 +2012,5,18,15,30,28,1.53,0.14400000000000002,0.63,121,854,722,0,0,3.4000000000000004,121,854,0,722,0.298,20.69,45.26,0.91,0.21,880,1.1,235,5.1000000000000005,41.3586,32.4703 +2012,5,18,16,30,31.3,1.54,0.147,0.63,132,896,881,0,0,0.30000000000000004,132,896,0,881,0.298,13.64,33.31,0.91,0.21,880,1.1,239,5.1000000000000005,52.5247,41.3145 +2012,5,18,17,30,33.1,1.51,0.137,0.63,134,928,991,0,0,-1.3,134,928,0,991,0.297,11.03,22.5,0.91,0.21,880,1.1,232,5.4,58.5054,46.0612 +2012,5,18,18,30,34.300000000000004,1.28,0.101,0.63,121,964,1049,0,0,-1.9000000000000001,121,964,0,1049,0.297,9.85,15.76,0.91,0.21,879,1,224,5.9,59.9478,47.2129 +2012,5,18,19,30,35,1.04,0.078,0.63,109,977,1036,7,3,-2.4000000000000004,345,673,7,983,0.297,9.14,18.45,0.91,0.21,879,1,221,6.2,62.5919,49.2894 +2012,5,18,20,30,35.1,0.87,0.067,0.63,101,966,955,0,8,-2.6,213,772,0,895,0.297,8.94,27.93,0.92,0.21,878,1.1,220,6.2,57.2772,45.0764 +2012,5,18,21,30,34.800000000000004,0.99,0.08,0.63,101,926,816,0,0,-2.6,101,926,0,816,0.297,9.1,39.51,0.92,0.21,878,1.1,220,6.1000000000000005,47.4053,37.2569 +2012,5,18,22,30,34,0.9400000000000001,0.082,0.63,92,868,631,0,7,-2.5,295,284,0,471,0.298,9.58,51.660000000000004,0.92,0.21,877,1.2000000000000002,218,5.7,35.1169,27.5235 +2012,5,18,23,30,32.1,0.85,0.079,0.63,78,779,421,0,8,-1.8,215,220,0,312,0.299,11.24,63.870000000000005,0.93,0.21,877,1.2000000000000002,213,4.5,19.2352,14.9842 +2012,5,19,0,30,29,0.74,0.073,0.63,56,611,205,0,7,1.3,102,349,0,187,0.301,16.75,75.88,0.93,0.21,877,1.1,205,3.6,8.7279,6.6950 +2012,5,19,1,30,26.200000000000003,0.67,0.065,0.63,19,187,28,0,0,2.1,19,187,0,28,0.303,20.89,87.33,0.9400000000000001,0.21,878,1,198,3.8000000000000003,0.0000,0.0000 +2012,5,19,2,30,24.1,0.68,0.061,0.63,0,0,0,0,6,1.3,0,0,0,0,0.305,22.46,98.44,0.93,0.21,878,0.9,188,4,0.0000,0.0000 +2012,5,19,3,30,22.3,0.77,0.065,0.63,0,0,0,0,7,2.1,0,0,0,0,0.307,26.400000000000002,108.24000000000001,0.93,0.21,879,0.9,177,4.5,0.0000,0.0000 +2012,5,19,4,30,21,0.92,0.077,0.63,0,0,0,0,4,4,0,0,0,0,0.309,32.82,116.41,0.92,0.21,879,1.1,177,5.7,0.0000,0.0000 +2012,5,19,5,30,20.1,1.1400000000000001,0.10400000000000001,0.63,0,0,0,0,0,7.4,0,0,0,0,0.311,43.72,122.19,0.92,0.21,879,1.2000000000000002,185,6.5,0.0000,0.0000 +2012,5,19,6,30,19.3,1.27,0.124,0.63,0,0,0,0,0,10.100000000000001,0,0,0,0,0.311,55.160000000000004,124.82000000000001,0.92,0.21,879,1.3,193,6.800000000000001,0.0000,0.0000 +2012,5,19,7,30,18.6,1.32,0.133,0.63,0,0,0,0,0,11.200000000000001,0,0,0,0,0.312,62.300000000000004,123.86,0.92,0.21,880,1.3,202,6.7,0.0000,0.0000 +2012,5,19,8,30,17.8,1.28,0.129,0.63,0,0,0,0,0,11.600000000000001,0,0,0,0,0.311,66.96000000000001,119.47,0.92,0.21,880,1.3,210,6.4,0.0000,0.0000 +2012,5,19,9,30,16.900000000000002,1.19,0.115,0.63,0,0,0,0,0,11.5,0,0,0,0,0.31,70.58,112.32000000000001,0.92,0.21,880,1.2000000000000002,216,5.6000000000000005,0.0000,0.0000 +2012,5,19,10,30,16,1.1,0.101,0.63,0,0,0,0,0,11.200000000000001,0,0,0,0,0.308,73.25,103.21000000000001,0.92,0.21,881,1.1,226,4.9,0.0000,0.0000 +2012,5,19,11,30,15.700000000000001,1.08,0.095,0.63,0,0,0,0,0,10,0,0,0,0,0.306,69.10000000000001,92.76,0.91,0.21,881,1,240,4.6000000000000005,0.0000,0.0000 +2012,5,19,12,30,17,1.1400000000000001,0.1,0.63,44,434,109,0,0,7.800000000000001,44,434,0,109,0.305,54.660000000000004,81.36,0.91,0.21,882,0.9,255,4.6000000000000005,0.0000,0.0000 +2012,5,19,13,30,20.3,1.24,0.11,0.63,76,693,318,0,0,4.9,76,693,0,318,0.304,36.49,69.55,0.9,0.21,882,0.8,267,4.4,15.9196,12.3334 +2012,5,19,14,30,24.700000000000003,1.35,0.12,0.63,98,812,536,0,0,1.7000000000000002,98,812,0,536,0.303,22.28,57.39,0.9,0.21,883,0.8,278,4.7,29.3484,22.9515 +2012,5,19,15,30,28.3,1.4000000000000001,0.124,0.63,113,886,738,0,0,-3.4000000000000004,113,886,0,738,0.303,12.43,45.160000000000004,0.89,0.21,883,0.7000000000000001,283,5.1000000000000005,42.3685,33.2639 +2012,5,19,16,30,30.1,1.4000000000000001,0.123,0.63,122,935,904,0,0,-6.2,122,935,0,904,0.303,9.06,33.2,0.89,0.21,883,0.6000000000000001,278,5,53.1379,41.7974 +2012,5,19,17,30,31.200000000000003,1.3800000000000001,0.121,0.63,127,959,1014,0,0,-6.4,127,959,0,1014,0.302,8.370000000000001,22.35,0.89,0.21,883,0.6000000000000001,269,4.7,60.6567,47.7553 +2012,5,19,18,30,32,1.37,0.12,0.63,129,969,1062,0,0,-6.2,129,969,0,1062,0.302,8.1,15.56,0.89,0.21,883,0.6000000000000001,261,4.4,64.5732,50.8561 +2012,5,19,19,30,32.4,1.36,0.12,0.63,128,965,1045,0,0,-6,128,965,0,1045,0.301,8.02,18.26,0.89,0.21,883,0.6000000000000001,257,4.1000000000000005,60.3899,47.5558 +2012,5,19,20,30,32.4,1.36,0.123,0.63,126,942,959,0,0,-5.800000000000001,126,942,0,959,0.3,8.15,27.79,0.9,0.21,883,0.7000000000000001,257,3.7,54.4305,42.8366 +2012,5,19,21,30,32.1,1.36,0.124,0.63,119,909,821,0,0,-5.5,119,909,0,821,0.299,8.51,39.39,0.9,0.21,883,0.7000000000000001,260,3.1,48.6098,38.2042 +2012,5,19,22,30,31.3,1.36,0.126,0.63,108,846,634,0,0,-5,108,846,0,634,0.299,9.21,51.54,0.9,0.21,883,0.8,270,2.4000000000000004,27.0381,21.1923 +2012,5,19,23,30,29.700000000000003,1.36,0.128,0.63,91,742,419,0,0,-4,91,742,0,419,0.299,10.96,63.76,0.9,0.21,883,0.9,307,1.9000000000000001,16.7779,13.0711 +2012,5,20,0,30,26.200000000000003,1.36,0.13,0.63,65,554,201,0,0,1.9000000000000001,65,554,0,201,0.3,20.580000000000002,75.76,0.9,0.21,884,0.9,179,2,9.0767,6.9643 +2012,5,20,1,30,22.700000000000003,1.36,0.133,0.63,19,141,25,0,0,5.2,19,141,0,25,0.301,32.15,87.2,0.9,0.21,885,1.1,27,3.3000000000000003,0.0000,0.0000 +2012,5,20,2,30,20.900000000000002,1.34,0.136,0.63,0,0,0,0,0,5.300000000000001,0,0,0,0,0.302,36.04,98.29,0.91,0.21,886,1.2000000000000002,33,4.7,0.0000,0.0000 +2012,5,20,3,30,19.3,1.33,0.14200000000000002,0.63,0,0,0,0,0,6.800000000000001,0,0,0,0,0.303,44.25,108.08,0.91,0.21,888,1.3,36,5.300000000000001,0.0000,0.0000 +2012,5,20,4,30,17.900000000000002,1.33,0.152,0.63,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.305,50.79,116.22,0.92,0.21,888,1.5,37,5.300000000000001,0.0000,0.0000 +2012,5,20,5,30,16.6,1.33,0.161,0.63,0,0,0,0,1,7.7,0,0,0,0,0.308,55.58,121.99000000000001,0.92,0.21,889,1.6,37,5.4,0.0000,0.0000 +2012,5,20,6,30,15.5,1.34,0.166,0.63,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.31,59.14,124.61,0.92,0.21,889,1.7000000000000002,35,5.300000000000001,0.0000,0.0000 +2012,5,20,7,30,14.4,1.35,0.17300000000000001,0.63,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.312,63.52,123.66,0.93,0.21,890,1.8,30,5.2,0.0000,0.0000 +2012,5,20,8,30,13.5,1.36,0.187,0.63,0,0,0,0,1,7.7,0,0,0,0,0.313,67.78,119.28,0.93,0.21,891,1.8,24,5.1000000000000005,0.0000,0.0000 +2012,5,20,9,30,13,1.36,0.20500000000000002,0.63,0,0,0,0,0,7.800000000000001,0,0,0,0,0.313,70.60000000000001,112.16,0.9400000000000001,0.21,892,1.9000000000000001,22,4.9,0.0000,0.0000 +2012,5,20,10,30,12.8,1.36,0.214,0.63,0,0,0,0,0,7.800000000000001,0,0,0,0,0.31,71.72,103.07000000000001,0.9400000000000001,0.21,892,1.9000000000000001,22,4.7,0.0000,0.0000 +2012,5,20,11,30,13,1.34,0.215,0.63,0,0,0,0,0,7.800000000000001,0,0,0,0,0.306,70.87,92.64,0.9400000000000001,0.21,893,1.9000000000000001,25,4.800000000000001,0.0000,0.0000 +2012,5,20,12,30,14,1.32,0.214,0.63,56,282,98,0,0,7.800000000000001,56,282,0,98,0.303,66.36,81.26,0.9400000000000001,0.21,893,1.9000000000000001,33,5.2,0.0000,0.0000 +2012,5,20,13,30,15.9,1.31,0.209,0.63,102,550,295,0,3,7.9,47,0,0,47,0.302,58.93,69.45,0.9400000000000001,0.21,894,1.9000000000000001,45,5.4,16.3449,12.6644 +2012,5,20,14,30,18,1.3,0.20500000000000002,0.63,129,695,505,0,3,8.200000000000001,143,0,0,143,0.303,52.89,57.300000000000004,0.9400000000000001,0.21,894,1.9000000000000001,56,5.1000000000000005,29.9789,23.4457 +2012,5,20,15,30,20.1,1.3,0.20600000000000002,0.63,150,774,696,0,3,9.1,306,4,0,308,0.304,49.2,45.07,0.9500000000000001,0.21,894,2,64,4.7,43.3202,34.0118 +2012,5,20,16,30,21.900000000000002,1.31,0.21,0.63,164,821,852,0,3,10.100000000000001,268,0,0,268,0.304,47.19,33.09,0.9500000000000001,0.21,894,2,70,4.3,54.5355,42.8973 +2012,5,20,17,30,23.400000000000002,1.32,0.21,0.63,172,847,955,0,3,10.8,186,0,0,186,0.305,44.9,22.21,0.9500000000000001,0.21,894,2.1,76,4,62.0739,48.8716 +2012,5,20,18,30,24.8,1.4000000000000001,0.312,0.63,218,798,988,0,3,11,284,0,0,285,0.305,41.99,15.36,0.9500000000000001,0.21,893,2.1,83,3.6,65.3822,51.4937 +2012,5,20,19,30,25.700000000000003,1.41,0.307,0.63,214,794,970,0,3,11.100000000000001,474,18,0,491,0.306,40.07,18.080000000000002,0.9500000000000001,0.21,893,2.2,89,3.3000000000000003,64.2086,50.5635 +2012,5,20,20,30,26.1,1.43,0.299,0.63,204,778,893,7,2,11.100000000000001,508,306,7,779,0.308,39.09,27.650000000000002,0.9500000000000001,0.21,893,2.2,94,2.9000000000000004,58.3337,45.9089 +2012,5,20,21,30,26,1.43,0.294,0.63,189,740,761,0,0,11,189,740,0,761,0.308,39.09,39.26,0.9500000000000001,0.21,892,2.2,97,2.6,48.9211,38.4496 +2012,5,20,22,30,25.400000000000002,1.43,0.289,0.63,167,673,587,0,0,11,167,673,0,587,0.308,40.44,51.43,0.9500000000000001,0.21,892,2.2,98,2.4000000000000004,36.4124,28.5410 +2012,5,20,23,30,24.400000000000002,1.42,0.297,0.63,139,551,384,0,0,11,139,551,0,384,0.306,42.95,63.64,0.96,0.21,892,2.3000000000000003,96,2.5,22.5492,17.5688 +2012,5,21,0,30,22.8,1.42,0.318,0.63,95,342,180,0,0,11.100000000000001,95,342,0,180,0.306,47.78,75.63,0.96,0.21,893,2.3000000000000003,92,2.5,9.7658,7.4947 +2012,5,21,1,30,20.900000000000002,1.41,0.327,0.63,19,48,21,0,0,11.700000000000001,19,48,0,21,0.305,55.550000000000004,87.06,0.96,0.21,893,2.4000000000000004,90,2.6,0.0000,0.0000 +2012,5,21,2,30,19.6,1.41,0.32,0.63,0,0,0,0,0,12.100000000000001,0,0,0,0,0.306,62.07,98.14,0.96,0.21,894,2.5,94,3,0.0000,0.0000 +2012,5,21,3,30,18.7,1.4000000000000001,0.31,0.63,0,0,0,0,0,12.600000000000001,0,0,0,0,0.306,67.59,107.91,0.96,0.21,894,2.6,101,3.2,0.0000,0.0000 +2012,5,21,4,30,17.900000000000002,1.3900000000000001,0.303,0.63,0,0,0,0,0,13.100000000000001,0,0,0,0,0.305,73.63,116.03,0.96,0.21,895,2.7,108,3.1,0.0000,0.0000 +2012,5,21,5,30,17.2,1.37,0.28700000000000003,0.63,0,0,0,0,0,13.600000000000001,0,0,0,0,0.304,79.58,121.79,0.96,0.21,895,2.7,115,2.9000000000000004,0.0000,0.0000 +2012,5,21,6,30,16.400000000000002,1.36,0.261,0.63,0,0,0,0,0,14.100000000000001,0,0,0,0,0.305,86.12,124.41,0.96,0.21,895,2.7,120,2.5,0.0000,0.0000 +2012,5,21,7,30,15.700000000000001,1.34,0.23600000000000002,0.63,0,0,0,0,0,14.4,0,0,0,0,0.305,91.94,123.46000000000001,0.96,0.21,895,2.7,125,2.1,0.0000,0.0000 +2012,5,21,8,30,15.200000000000001,1.32,0.22,0.63,0,0,0,0,0,14.600000000000001,0,0,0,0,0.304,96.23,119.11,0.96,0.21,895,2.8000000000000003,129,1.8,0.0000,0.0000 +2012,5,21,9,30,14.9,1.3,0.214,0.63,0,0,0,0,1,14.700000000000001,0,0,0,0,0.303,98.79,112.01,0.96,0.21,895,2.8000000000000003,129,1.7000000000000002,0.0000,0.0000 +2012,5,21,10,30,14.8,1.3,0.209,0.63,0,0,0,0,7,14.8,0,0,0,0,0.302,99.75,102.94,0.96,0.21,895,2.8000000000000003,128,1.7000000000000002,0.0000,0.0000 +2012,5,21,11,30,15.100000000000001,1.29,0.203,0.63,0,0,0,0,6,14.8,0,0,0,0,0.301,97.87,92.53,0.96,0.21,895,2.8000000000000003,128,2.2,0.0000,0.0000 +2012,5,21,12,30,16.400000000000002,1.3,0.199,0.63,55,283,98,7,7,14.8,23,0,7,23,0.3,90.10000000000001,81.16,0.96,0.21,896,2.8000000000000003,136,2.9000000000000004,0.0000,0.0000 +2012,5,21,13,30,18.8,1.3,0.183,0.63,95,557,292,0,7,14.600000000000001,112,7,0,115,0.3,76.73,69.36,0.9500000000000001,0.21,896,2.8000000000000003,151,3.2,2.4179,1.8737 +2012,5,21,14,30,21.700000000000003,1.3,0.169,0.63,117,710,501,0,7,14.100000000000001,111,1,0,111,0.3,62.160000000000004,57.22,0.9500000000000001,0.21,896,2.7,161,3.2,8.0018,6.2583 +2012,5,21,15,30,23.900000000000002,1.3,0.163,0.63,131,793,692,0,3,13.700000000000001,402,194,0,539,0.299,52.82,44.980000000000004,0.9500000000000001,0.21,895,2.7,160,3.1,18.0842,14.1987 +2012,5,21,16,30,25.3,1.3,0.163,0.63,143,841,848,0,2,13.600000000000001,482,199,0,649,0.298,48.17,33,0.9500000000000001,0.21,895,2.6,156,3.2,16.1707,12.7199 +2012,5,21,17,30,26.1,1.31,0.16,0.63,147,869,952,0,0,13.5,147,869,0,952,0.297,45.82,22.080000000000002,0.9400000000000001,0.21,895,2.6,154,3.4000000000000004,11.3880,8.9660 +2012,5,21,18,30,26.400000000000002,1.23,0.122,0.63,132,903,1003,0,0,13.4,132,903,0,1003,0.295,44.6,15.17,0.9400000000000001,0.21,894,2.7,156,3.6,17.5484,13.8209 +2012,5,21,19,30,26.400000000000002,1.23,0.11900000000000001,0.63,129,902,987,0,0,13.3,129,902,0,987,0.294,44.24,17.900000000000002,0.9400000000000001,0.21,894,2.7,160,3.8000000000000003,30.1731,23.7612 +2012,5,21,20,30,26.400000000000002,1.24,0.11800000000000001,0.63,124,884,908,0,0,13.200000000000001,124,884,0,908,0.293,44,27.51,0.9400000000000001,0.21,893,2.8000000000000003,163,4,47.3936,37.2994 +2012,5,21,21,30,26.5,1.27,0.11900000000000001,0.63,117,853,779,0,1,12.9,117,853,0,779,0.292,43.03,39.15,0.9400000000000001,0.21,892,2.7,165,4.2,45.3592,35.6509 +2012,5,21,22,30,26.200000000000003,1.3,0.122,0.63,107,794,603,0,0,12.600000000000001,107,794,0,603,0.292,42.94,51.31,0.9400000000000001,0.21,892,2.7,165,4.4,33.7277,26.4375 +2012,5,21,23,30,25.5,1.32,0.127,0.63,91,691,399,0,1,12.4,91,691,0,399,0.291,44.02,63.53,0.9400000000000001,0.21,891,2.8000000000000003,163,4.3,20.6829,16.1162 +2012,5,22,0,30,23.900000000000002,1.36,0.134,0.63,67,504,193,0,8,12.4,108,319,0,188,0.291,48.47,75.51,0.9400000000000001,0.21,891,2.8000000000000003,157,3.9000000000000004,8.7549,6.7205 +2012,5,22,1,30,22,1.3900000000000001,0.14200000000000002,0.63,20,127,27,7,9,12.8,17,0,7,17,0.291,56.050000000000004,86.94,0.9400000000000001,0.21,891,2.8000000000000003,152,3.8000000000000003,0.0000,0.0000 +2012,5,22,2,30,20.700000000000003,1.41,0.149,0.63,0,0,0,0,9,12.9,0,0,0,0,0.291,60.980000000000004,97.99000000000001,0.9500000000000001,0.21,891,2.8000000000000003,153,4.2,0.0000,0.0000 +2012,5,22,3,30,19.8,1.42,0.154,0.63,0,0,0,0,9,13,0,0,0,0,0.292,64.76,107.75,0.9500000000000001,0.21,891,2.8000000000000003,157,4.4,0.0000,0.0000 +2012,5,22,4,30,19,1.43,0.158,0.63,0,0,0,0,9,13,0,0,0,0,0.293,68.13,115.85000000000001,0.9500000000000001,0.21,891,2.8000000000000003,162,4.4,0.0000,0.0000 +2012,5,22,5,30,18.400000000000002,1.43,0.163,0.63,0,0,0,0,9,12.9,0,0,0,0,0.295,70.4,121.59,0.9500000000000001,0.21,891,2.9000000000000004,168,4.3,0.0000,0.0000 +2012,5,22,6,30,17.900000000000002,1.44,0.171,0.63,0,0,0,0,6,12.8,0,0,0,0,0.297,72.07000000000001,124.21000000000001,0.9500000000000001,0.21,890,2.9000000000000004,174,4.2,0.0000,0.0000 +2012,5,22,7,30,17.7,1.44,0.181,0.63,0,0,0,0,6,12.700000000000001,0,0,0,0,0.299,72.4,123.27,0.9500000000000001,0.21,890,2.9000000000000004,181,4.1000000000000005,0.0000,0.0000 +2012,5,22,8,30,17.400000000000002,1.44,0.19,0.63,0,0,0,0,6,12.5,0,0,0,0,0.299,73.13,118.93,0.9500000000000001,0.21,890,2.9000000000000004,188,4,0.0000,0.0000 +2012,5,22,9,30,17.1,1.44,0.194,0.63,0,0,0,0,7,12.4,0,0,0,0,0.299,73.8,111.86,0.9500000000000001,0.21,890,2.9000000000000004,197,3.8000000000000003,0.0000,0.0000 +2012,5,22,10,30,16.7,1.44,0.189,0.63,0,0,0,0,7,12.200000000000001,0,0,0,0,0.299,74.85000000000001,102.81,0.9500000000000001,0.21,889,2.8000000000000003,203,3.4000000000000004,0.0000,0.0000 +2012,5,22,11,30,16.6,1.44,0.176,0.63,0,0,0,0,6,12.100000000000001,0,0,0,0,0.299,74.73,92.42,0.9400000000000001,0.21,889,2.6,206,3.3000000000000003,0.0000,0.0000 +2012,5,22,12,30,17.8,1.45,0.163,0.63,51,337,103,7,4,12.100000000000001,58,1,7,58,0.3,69.12,81.06,0.9400000000000001,0.21,889,2.4000000000000004,205,3.6,0.0000,0.0000 +2012,5,22,13,30,20.700000000000003,1.47,0.154,0.63,86,607,301,0,7,12.100000000000001,67,561,0,265,0.301,57.67,69.28,0.93,0.21,888,2.2,208,4.5,5.9208,4.5886 +2012,5,22,14,30,24.3,1.51,0.149,0.63,108,746,513,0,7,11.5,213,467,0,467,0.302,44.53,57.14,0.93,0.21,888,2.1,212,5.4,6.2138,4.8600 +2012,5,22,15,30,27.3,1.54,0.148,0.63,122,822,705,0,0,10.9,122,822,0,705,0.303,35.85,44.9,0.93,0.21,887,2.1,213,5.7,31.6558,24.8547 +2012,5,22,16,30,29.8,1.56,0.147,0.63,132,868,861,0,0,10.3,132,868,0,861,0.304,29.85,32.9,0.93,0.21,886,2.1,214,5.800000000000001,39.1656,30.8081 +2012,5,22,17,30,31.8,1.55,0.14400000000000002,0.63,137,892,964,0,0,9.8,137,892,0,964,0.304,25.830000000000002,21.95,0.93,0.21,885,2.2,217,5.800000000000001,58.2943,45.8966 +2012,5,22,18,30,33.300000000000004,1.46,0.122,0.63,129,914,1012,0,0,9.700000000000001,129,914,0,1012,0.305,23.44,14.98,0.93,0.21,884,2.3000000000000003,219,5.800000000000001,61.7657,48.6461 +2012,5,22,19,30,34.300000000000004,1.43,0.117,0.63,126,914,997,0,0,9.600000000000001,126,914,0,997,0.305,22.07,17.72,0.93,0.21,883,2.3000000000000003,218,5.800000000000001,60.6621,47.7714 +2012,5,22,20,30,34.7,1.3900000000000001,0.112,0.63,120,901,920,0,0,9.5,120,901,0,920,0.306,21.44,27.38,0.93,0.21,882,2.3000000000000003,215,5.800000000000001,55.2521,43.4847 +2012,5,22,21,30,34.6,1.43,0.121,0.63,117,865,788,0,0,9.200000000000001,117,865,0,788,0.306,21.1,39.03,0.93,0.21,881,2.2,211,5.7,46.4437,36.5039 +2012,5,22,22,30,33.9,1.4000000000000001,0.111,0.63,101,823,617,0,0,8.6,101,823,0,617,0.306,21.09,51.2,0.92,0.21,880,2,206,5.7,34.6633,27.1719 +2012,5,22,23,30,32.5,1.37,0.10400000000000001,0.63,83,740,414,0,6,8.1,224,208,0,317,0.306,22.04,63.410000000000004,0.92,0.21,880,1.9000000000000001,199,5.300000000000001,21.5073,16.7599 +2012,5,23,0,30,29.900000000000002,1.36,0.099,0.63,60,576,205,0,8,8.200000000000001,114,348,0,202,0.305,25.76,75.39,0.92,0.21,880,1.8,189,4.6000000000000005,9.1531,7.0277 +2012,5,23,1,30,27,1.3800000000000001,0.101,0.63,20,187,31,7,7,8.700000000000001,24,3,7,24,0.303,31.63,86.82000000000001,0.92,0.21,880,1.8,180,4.5,0.0000,0.0000 +2012,5,23,2,30,24.900000000000002,1.44,0.11,0.63,0,0,0,0,7,8.6,0,0,0,0,0.303,35.550000000000004,97.85000000000001,0.92,0.21,880,1.8,175,4.800000000000001,0.0000,0.0000 +2012,5,23,3,30,23.400000000000002,1.51,0.126,0.63,0,0,0,0,8,8.8,0,0,0,0,0.304,39.36,107.59,0.92,0.21,880,1.8,175,4.9,0.0000,0.0000 +2012,5,23,4,30,22.200000000000003,1.57,0.139,0.63,0,0,0,0,7,8.8,0,0,0,0,0.305,42.480000000000004,115.68,0.92,0.21,879,1.8,179,4.800000000000001,0.0000,0.0000 +2012,5,23,5,30,21.200000000000003,1.62,0.145,0.63,0,0,0,0,7,8.9,0,0,0,0,0.305,45.29,121.41,0.91,0.21,879,1.7000000000000002,187,4.6000000000000005,0.0000,0.0000 +2012,5,23,6,30,20.400000000000002,1.6500000000000001,0.148,0.63,0,0,0,0,7,9,0,0,0,0,0.303,47.85,124.02,0.91,0.21,878,1.6,196,4.6000000000000005,0.0000,0.0000 +2012,5,23,7,30,19.6,1.6500000000000001,0.14300000000000002,0.63,0,0,0,0,3,9.3,0,0,0,0,0.301,51.28,123.09,0.91,0.21,878,1.5,201,4.7,0.0000,0.0000 +2012,5,23,8,30,19,1.6300000000000001,0.135,0.63,0,0,0,0,0,9.8,0,0,0,0,0.3,55.120000000000005,118.77,0.91,0.21,877,1.4000000000000001,204,4.800000000000001,0.0000,0.0000 +2012,5,23,9,30,18.3,1.6,0.128,0.63,0,0,0,0,0,10.4,0,0,0,0,0.299,59.95,111.71000000000001,0.91,0.21,877,1.3,208,4.7,0.0000,0.0000 +2012,5,23,10,30,17.400000000000002,1.56,0.123,0.63,0,0,0,0,0,10.8,0,0,0,0,0.299,65.18,102.69,0.91,0.21,877,1.2000000000000002,216,4.4,0.0000,0.0000 +2012,5,23,11,30,17.1,1.51,0.123,0.63,0,0,0,0,0,10.5,0,0,0,0,0.298,65.07000000000001,92.32000000000001,0.91,0.21,877,1.1,234,4.3,0.0000,0.0000 +2012,5,23,12,30,19,1.48,0.123,0.63,47,421,113,0,0,8.8,47,421,0,113,0.298,51.47,80.97,0.91,0.21,877,1.1,261,4.800000000000001,0.0000,0.0000 +2012,5,23,13,30,23.1,1.49,0.122,0.63,79,680,320,0,0,4.9,79,680,0,320,0.299,30.63,69.2,0.91,0.21,877,1,282,5.2,13.6532,10.5822 +2012,5,23,14,30,28,1.56,0.129,0.63,100,804,537,0,0,1.6,100,804,0,537,0.299,18.11,57.07,0.9,0.21,877,0.9,289,5.6000000000000005,26.1533,20.4562 +2012,5,23,15,30,31.6,1.6400000000000001,0.136,0.63,117,875,738,0,0,-2.2,117,875,0,738,0.298,11.19,44.83,0.9,0.21,876,0.8,284,6.1000000000000005,41.4147,32.5175 +2012,5,23,16,30,33.5,1.67,0.133,0.63,125,925,902,0,1,-3.6,125,925,0,902,0.297,9.06,32.82,0.89,0.21,876,0.7000000000000001,273,6.1000000000000005,51.9682,40.8792 +2012,5,23,17,30,34.800000000000004,1.67,0.127,0.63,128,952,1012,0,8,-4.3,212,796,0,951,0.295,8.03,21.830000000000002,0.89,0.21,875,0.7000000000000001,262,6.300000000000001,59.0368,46.4815 +2012,5,23,18,30,35.9,1.6500000000000001,0.124,0.63,129,963,1060,0,1,-4.800000000000001,129,963,0,1060,0.294,7.24,14.8,0.89,0.21,874,0.7000000000000001,256,6.4,62.3275,49.0890 +2012,5,23,19,30,36.7,1.57,0.115,0.63,125,966,1046,0,0,-5.300000000000001,125,966,0,1046,0.293,6.71,17.55,0.9,0.21,874,0.7000000000000001,252,6.6000000000000005,61.2853,48.2626 +2012,5,23,20,30,37.1,1.45,0.097,0.63,113,964,970,0,0,-5.800000000000001,113,964,0,970,0.293,6.3,27.25,0.9,0.21,873,0.7000000000000001,248,6.7,55.9919,44.0674 +2012,5,23,21,30,37.1,1.22,0.07200000000000001,0.63,96,954,838,0,0,-6.6000000000000005,96,954,0,838,0.293,5.93,38.92,0.91,0.21,872,0.7000000000000001,242,6.7,46.9930,36.9363 +2012,5,23,22,30,36.5,1.1300000000000001,0.07100000000000001,0.63,87,906,656,0,0,-7.4,87,906,0,656,0.293,5.75,51.09,0.91,0.21,871,0.7000000000000001,235,6.4,35.4832,27.8156 +2012,5,23,23,30,34.800000000000004,1.21,0.081,0.63,77,810,441,0,0,-7.300000000000001,77,810,0,441,0.292,6.37,63.300000000000004,0.9,0.21,871,0.7000000000000001,224,5.1000000000000005,17.1014,13.3277 +2012,5,24,0,30,31,1.47,0.109,0.63,62,607,216,0,0,-4,62,607,0,216,0.292,10.16,75.28,0.89,0.21,871,0.7000000000000001,210,3.8000000000000003,9.8447,7.5604 +2012,5,24,1,30,27.6,1.72,0.148,0.63,21,186,32,0,0,-1.3,21,186,0,32,0.293,15.040000000000001,86.7,0.89,0.21,871,0.7000000000000001,201,3.9000000000000004,0.0000,0.0000 +2012,5,24,2,30,26.3,1.8,0.17400000000000002,0.63,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.293,15.780000000000001,97.71000000000001,0.89,0.21,871,0.8,202,5,0.0000,0.0000 +2012,5,24,3,30,25.3,1.77,0.186,0.63,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.293,16.81,107.43,0.89,0.21,871,0.7000000000000001,211,5.7,0.0000,0.0000 +2012,5,24,4,30,23.8,1.9000000000000001,0.271,0.63,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.294,18.13,115.51,0.88,0.21,871,0.7000000000000001,221,5.6000000000000005,0.0000,0.0000 +2012,5,24,5,30,22.1,2.12,0.528,0.63,0,0,0,0,0,-2,0,0,0,0,0.294,19.900000000000002,121.22,0.88,0.21,871,0.7000000000000001,231,5.300000000000001,0.0000,0.0000 +2012,5,24,6,30,21,2.16,0.613,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.293,21.01,123.83,0.87,0.21,871,0.7000000000000001,244,5.4,0.0000,0.0000 +2012,5,24,7,30,20.3,2.05,0.428,0.63,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.292,20.78,122.91,0.88,0.21,872,0.8,253,5.300000000000001,0.0000,0.0000 +2012,5,24,8,30,19.5,1.78,0.229,0.63,0,0,0,0,0,-3.2,0,0,0,0,0.291,21.27,118.61,0.88,0.21,872,0.9,255,4.800000000000001,0.0000,0.0000 +2012,5,24,9,30,18,1.53,0.136,0.63,0,0,0,0,0,-2.6,0,0,0,0,0.29,24.51,111.58,0.89,0.21,873,1,258,3.9000000000000004,0.0000,0.0000 +2012,5,24,10,30,16.400000000000002,1.53,0.13,0.63,0,0,0,0,0,-1,0,0,0,0,0.29,30.41,102.57000000000001,0.89,0.21,874,1.1,275,3.1,0.0000,0.0000 +2012,5,24,11,30,15.5,1.6,0.147,0.63,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.291,38.51,92.22,0.89,0.21,876,1.2000000000000002,312,3.4000000000000004,0.0000,0.0000 +2012,5,24,12,30,15.700000000000001,1.6300000000000001,0.156,0.63,49,384,110,0,0,4,49,384,0,110,0.291,45.62,80.89,0.9,0.21,878,1.3,347,4.4,0.0000,0.0000 +2012,5,24,13,30,16.8,1.61,0.156,0.63,85,636,312,0,0,6.5,85,636,0,312,0.292,50.78,69.12,0.9,0.21,878,1.3,182,4.6000000000000005,16.4984,12.7887 +2012,5,24,14,30,18.7,1.56,0.152,0.63,107,768,526,0,0,7.6000000000000005,107,768,0,526,0.292,48.47,56.99,0.9,0.21,879,1.3,5,3.7,30.0843,23.5316 +2012,5,24,15,30,21.400000000000002,1.48,0.14200000000000002,0.63,119,846,720,0,0,7.9,119,846,0,720,0.291,41.78,44.76,0.9,0.21,879,1.4000000000000001,177,2.4000000000000004,43.3621,34.0471 +2012,5,24,16,30,24.400000000000002,1.41,0.133,0.63,125,896,879,0,0,7.800000000000001,125,896,0,879,0.29,34.71,32.730000000000004,0.9,0.21,879,1.4000000000000001,323,1.5,54.4503,42.8321 +2012,5,24,17,30,27.400000000000002,1.37,0.127,0.63,130,923,988,0,0,7.2,130,923,0,988,0.29,27.91,21.72,0.91,0.21,879,1.4000000000000001,282,1.5,58.2475,45.8604 +2012,5,24,18,30,30,1.25,0.111,0.63,125,943,1038,0,0,5.7,125,943,0,1038,0.289,21.59,14.620000000000001,0.91,0.21,878,1.4000000000000001,256,1.8,65.2912,51.4235 +2012,5,24,19,30,31.900000000000002,1.18,0.116,0.63,127,936,1020,0,0,4.3,127,936,0,1020,0.289,17.59,17.39,0.91,0.21,877,1.4000000000000001,229,2.1,64.3057,50.6416 +2012,5,24,20,30,33.4,1.1,0.125,0.63,128,912,940,0,0,3.2,128,912,0,940,0.29,14.91,27.12,0.91,0.21,876,1.4000000000000001,207,2.6,59.0450,46.4708 +2012,5,24,21,30,34.1,1.1400000000000001,0.14300000000000002,0.63,128,865,802,0,0,1.9000000000000001,128,865,0,802,0.29,13.15,38.800000000000004,0.91,0.21,875,1.4000000000000001,200,3.4000000000000004,49.9871,39.2903 +2012,5,24,22,30,34.1,1.17,0.152,0.63,119,803,624,0,0,0.7000000000000001,119,803,0,624,0.289,12.07,50.99,0.91,0.21,875,1.3,200,4.1000000000000005,37.7421,29.5874 +2012,5,24,23,30,32.800000000000004,1.28,0.159,0.63,101,699,416,0,0,-0.1,101,699,0,416,0.28800000000000003,12.200000000000001,63.190000000000005,0.9,0.21,875,1.3,197,3.8000000000000003,23.8089,18.5565 +2012,5,25,0,30,29.3,1.43,0.162,0.63,71,517,204,0,0,1.2000000000000002,71,517,0,204,0.28800000000000003,16.32,75.16,0.9,0.21,875,1.3,181,2.8000000000000003,10.5369,8.0935 +2012,5,25,1,30,25.700000000000003,1.54,0.162,0.63,22,156,31,0,1,3.8000000000000003,22,156,0,31,0.28700000000000003,24.28,86.57000000000001,0.9,0.21,876,1.2000000000000002,162,2.7,0.0000,0.0000 +2012,5,25,2,30,24.200000000000003,1.57,0.158,0.63,0,0,0,0,0,3.1,0,0,0,0,0.28700000000000003,25.28,97.57000000000001,0.9,0.21,877,1.2000000000000002,152,3.6,0.0000,0.0000 +2012,5,25,3,30,23.1,1.54,0.149,0.63,0,0,0,0,0,3.1,0,0,0,0,0.28600000000000003,27.060000000000002,107.28,0.9,0.21,877,1.3,152,4.2,0.0000,0.0000 +2012,5,25,4,30,21.8,1.47,0.134,0.63,0,0,0,0,0,3.7,0,0,0,0,0.28500000000000003,30.46,115.34,0.9,0.21,878,1.3,161,4,0.0000,0.0000 +2012,5,25,5,30,20.700000000000003,1.4000000000000001,0.116,0.63,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28400000000000003,32.89,121.04,0.9,0.21,877,1.2000000000000002,178,3.7,0.0000,0.0000 +2012,5,25,6,30,19.900000000000002,1.36,0.10400000000000001,0.63,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.28400000000000003,33.5,123.65,0.9,0.21,877,1.2000000000000002,198,3.7,0.0000,0.0000 +2012,5,25,7,30,19.3,1.37,0.101,0.63,0,0,0,0,0,2.5,0,0,0,0,0.28400000000000003,32.71,122.74000000000001,0.9,0.21,877,1.2000000000000002,213,4.3,0.0000,0.0000 +2012,5,25,8,30,18.7,1.43,0.106,0.63,0,0,0,0,0,1.8,0,0,0,0,0.28400000000000003,32.37,118.46000000000001,0.9,0.21,878,1.1,218,4.800000000000001,0.0000,0.0000 +2012,5,25,9,30,18,1.51,0.12,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.28400000000000003,33.480000000000004,111.44,0.9,0.21,878,1.2000000000000002,219,4.7,0.0000,0.0000 +2012,5,25,10,30,17.1,1.6300000000000001,0.14400000000000002,0.63,0,0,0,0,0,2.1,0,0,0,0,0.28400000000000003,36.42,102.46000000000001,0.9,0.21,879,1.2000000000000002,222,4,0.0000,0.0000 +2012,5,25,11,30,17,1.78,0.18,0.63,0,0,0,0,0,2.5,0,0,0,0,0.28400000000000003,37.93,92.12,0.9,0.21,880,1.3,227,3.7,0.0000,0.0000 +2012,5,25,12,30,18.8,1.87,0.216,0.63,52,339,107,0,0,2.9000000000000004,52,339,0,107,0.28400000000000003,34.77,80.81,0.89,0.21,881,1.3,235,3.8000000000000003,0.0000,0.0000 +2012,5,25,13,30,22.200000000000003,1.8900000000000001,0.233,0.63,100,571,304,0,0,3.1,100,571,0,304,0.28500000000000003,28.560000000000002,69.05,0.9,0.21,881,1.3,247,3.7,16.0972,12.4788 +2012,5,25,14,30,26.3,1.8900000000000001,0.23700000000000002,0.63,130,701,513,0,0,3.1,130,701,0,513,0.28500000000000003,22.330000000000002,56.93,0.9,0.21,882,1.4000000000000001,260,3.5,29.4800,23.0598 +2012,5,25,15,30,30.3,1.8800000000000001,0.23500000000000001,0.63,150,782,706,0,0,2.7,150,782,0,706,0.28600000000000003,17.23,44.69,0.9,0.21,882,1.4000000000000001,260,3.5,42.3131,33.2239 +2012,5,25,16,30,33.4,1.87,0.232,0.63,162,833,863,0,0,2,162,833,0,863,0.28700000000000003,13.77,32.660000000000004,0.9,0.21,881,1.4000000000000001,240,3.6,53.0700,41.7467 +2012,5,25,17,30,35.5,1.8800000000000001,0.228,0.63,169,862,970,0,0,1.8,169,862,0,970,0.28800000000000003,12.030000000000001,21.61,0.9,0.21,881,1.4000000000000001,218,4,60.5203,47.6502 +2012,5,25,18,30,36.9,1.87,0.224,0.63,171,872,1016,0,0,1.3,171,872,0,1016,0.28800000000000003,10.76,14.46,0.91,0.21,881,1.5,204,4.800000000000001,63.9433,50.3623 +2012,5,25,19,30,37.7,1.85,0.227,0.63,172,867,1000,0,0,0.8,172,867,0,1000,0.28700000000000003,9.9,17.22,0.91,0.21,880,1.5,197,5.6000000000000005,62.7149,49.3891 +2012,5,25,20,30,38,1.83,0.22,0.63,163,852,923,0,0,0.2,163,852,0,923,0.28600000000000003,9.370000000000001,26.990000000000002,0.91,0.21,880,1.5,194,6.300000000000001,57.2285,45.0416 +2012,5,25,21,30,37.7,1.82,0.227,0.63,157,811,790,0,0,-0.4,157,811,0,790,0.28600000000000003,9.1,38.69,0.92,0.21,879,1.5,192,7,47.8524,37.6131 +2012,5,25,22,30,36.9,1.78,0.214,0.63,137,758,615,7,3,-1,137,758,5,615,0.28600000000000003,9.09,50.88,0.92,0.21,879,1.5,190,7.5,35.9149,28.1558 +2012,5,25,23,30,35.300000000000004,1.73,0.201,0.63,112,665,413,7,3,-1.3,243,275,7,367,0.28700000000000003,9.72,63.08,0.93,0.21,879,1.5,188,7.5,22.4761,17.5191 +2012,5,26,0,30,32.800000000000004,1.68,0.209,0.63,81,474,204,0,0,-0.9,81,474,0,204,0.28800000000000003,11.52,75.04,0.9400000000000001,0.21,880,1.5,186,6.9,9.9618,7.6534 +2012,5,26,1,30,29.900000000000002,1.6400000000000001,0.264,0.63,24,102,30,0,0,0.30000000000000004,24,102,0,30,0.289,14.780000000000001,86.45,0.9400000000000001,0.21,881,1.7000000000000002,186,6.1000000000000005,0.0000,0.0000 +2012,5,26,2,30,27.5,1.6600000000000001,0.353,0.63,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.289,18.18,97.43,0.9400000000000001,0.21,882,1.8,186,5.300000000000001,0.0000,0.0000 +2012,5,26,3,30,25.700000000000003,1.71,0.382,0.63,0,0,0,0,0,2.2,0,0,0,0,0.289,21.68,107.13,0.9400000000000001,0.21,883,1.8,184,4.9,0.0000,0.0000 +2012,5,26,4,30,24.200000000000003,1.75,0.34900000000000003,0.63,0,0,0,0,0,3.2,0,0,0,0,0.289,25.52,115.18,0.93,0.21,883,1.9000000000000001,184,4.800000000000001,0.0000,0.0000 +2012,5,26,5,30,22.900000000000002,1.78,0.32,0.63,0,0,0,0,0,4.4,0,0,0,0,0.29,30.03,120.87,0.92,0.21,884,2.1,185,4.9,0.0000,0.0000 +2012,5,26,6,30,22,1.82,0.301,0.63,0,0,0,0,0,5.9,0,0,0,0,0.291,35.17,123.48,0.92,0.21,884,2.3000000000000003,186,4.9,0.0000,0.0000 +2012,5,26,7,30,21.200000000000003,1.84,0.297,0.63,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.29,41.56,122.57000000000001,0.92,0.21,884,2.4000000000000004,187,4.9,0.0000,0.0000 +2012,5,26,8,30,20.5,1.83,0.308,0.63,0,0,0,0,0,9.4,0,0,0,0,0.29,48.800000000000004,118.31,0.93,0.21,884,2.4000000000000004,187,5.2,0.0000,0.0000 +2012,5,26,9,30,20,1.83,0.322,0.63,0,0,0,0,0,11.100000000000001,0,0,0,0,0.289,56.59,111.32000000000001,0.92,0.21,884,2.4000000000000004,187,5.6000000000000005,0.0000,0.0000 +2012,5,26,10,30,19.6,1.84,0.317,0.63,0,0,0,0,0,12.8,0,0,0,0,0.28800000000000003,65.03,102.35000000000001,0.92,0.21,885,2.2,187,5.800000000000001,0.0000,0.0000 +2012,5,26,11,30,19.700000000000003,1.84,0.305,0.63,0,0,0,0,0,14.100000000000001,0,0,0,0,0.28700000000000003,70.33,92.03,0.92,0.21,885,2.2,186,6,0.0000,0.0000 +2012,5,26,12,30,21.400000000000002,1.84,0.292,0.63,59,267,102,0,0,15,59,267,0,102,0.28600000000000003,66.9,80.73,0.93,0.21,886,2.2,186,6.4,0.0000,0.0000 +2012,5,26,13,30,24.6,1.84,0.276,0.63,110,514,295,0,8,15,192,252,0,282,0.28400000000000003,55.17,68.99,0.93,0.21,886,2.2,188,7.300000000000001,15.6940,12.1673 +2012,5,26,14,30,27.900000000000002,1.83,0.263,0.63,140,658,500,0,1,13.100000000000001,140,658,0,500,0.28300000000000003,40.160000000000004,56.870000000000005,0.93,0.21,886,2.3000000000000003,191,8.1,28.7602,22.4973 +2012,5,26,15,30,30.1,1.82,0.268,0.63,164,735,686,0,0,11,164,735,0,686,0.281,30.79,44.63,0.93,0.21,885,2.4000000000000004,190,8.5,41.4988,32.5850 +2012,5,26,16,30,31.900000000000002,1.79,0.28400000000000003,0.63,186,775,839,0,0,10.3,186,775,0,839,0.28,26.5,32.59,0.9400000000000001,0.21,885,2.4000000000000004,189,8.6,52.1101,40.9919 +2012,5,26,17,30,33.4,1.77,0.294,0.63,198,796,938,0,0,10.100000000000001,198,796,0,938,0.279,24.04,21.51,0.93,0.21,884,2.5,187,8.8,59.4240,46.7874 +2012,5,26,18,30,34.5,1.6300000000000001,0.176,0.63,154,878,1004,0,0,9.9,154,878,0,1004,0.278,22.36,14.3,0.93,0.21,884,2.4000000000000004,185,8.9,62.5943,49.3000 +2012,5,26,19,30,35.2,1.67,0.193,0.63,160,862,984,0,0,9.700000000000001,160,862,0,984,0.277,21.22,17.07,0.93,0.21,883,2.5,183,9.1,61.4930,48.4273 +2012,5,26,20,30,35.300000000000004,1.69,0.20400000000000001,0.63,159,837,906,0,0,9.5,159,837,0,906,0.277,20.82,26.87,0.93,0.21,882,2.5,180,9.3,56.2030,44.2349 +2012,5,26,21,30,34.800000000000004,1.75,0.272,0.63,174,757,766,0,0,9.4,174,757,0,766,0.277,21.13,38.59,0.93,0.21,882,2.5,178,9.3,47.1479,37.0600 +2012,5,26,22,30,33.800000000000004,1.71,0.28400000000000003,0.63,159,681,590,0,3,9.3,339,324,0,544,0.278,22.2,50.77,0.93,0.21,881,2.6,177,9.3,35.4118,27.7623 +2012,5,26,23,30,32.5,1.6600000000000001,0.28400000000000003,0.63,133,572,393,0,3,9.4,251,224,0,353,0.279,24.1,62.980000000000004,0.9400000000000001,0.21,881,2.6,176,9.1,19.8435,15.4683 +2012,5,27,0,30,30.700000000000003,1.6400000000000001,0.273,0.63,89,396,192,0,0,9.8,89,396,0,192,0.279,27.51,74.93,0.9400000000000001,0.21,881,2.7,173,8.6,9.9721,7.6631 +2012,5,27,1,30,28.8,1.62,0.267,0.63,23,95,30,7,7,10.4,26,1,7,26,0.279,31.95,86.33,0.9400000000000001,0.21,882,2.7,170,8.200000000000001,0.0000,0.0000 +2012,5,27,2,30,27.3,1.6,0.261,0.63,0,0,0,0,0,10.8,0,0,0,0,0.279,35.81,97.3,0.9400000000000001,0.21,882,2.7,170,8.3,0.0000,0.0000 +2012,5,27,3,30,26,1.57,0.254,0.63,0,0,0,0,0,10.9,0,0,0,0,0.279,38.84,106.98,0.9400000000000001,0.21,883,2.6,171,8.6,0.0000,0.0000 +2012,5,27,4,30,24.8,1.57,0.249,0.63,0,0,0,0,0,10.9,0,0,0,0,0.278,41.61,115.02,0.9400000000000001,0.21,883,2.6,174,8.5,0.0000,0.0000 +2012,5,27,5,30,23.6,1.6,0.243,0.63,0,0,0,0,0,11.100000000000001,0,0,0,0,0.278,45.49,120.7,0.93,0.21,883,2.6,178,8.1,0.0000,0.0000 +2012,5,27,6,30,22.5,1.6400000000000001,0.23700000000000002,0.63,0,0,0,0,0,11.700000000000001,0,0,0,0,0.278,50.47,123.31,0.93,0.21,883,2.6,182,7.6000000000000005,0.0000,0.0000 +2012,5,27,7,30,21.6,1.68,0.242,0.63,0,0,0,0,7,12.3,0,0,0,0,0.278,55.410000000000004,122.41,0.93,0.21,883,2.6,188,7.2,0.0000,0.0000 +2012,5,27,8,30,21,1.69,0.257,0.63,0,0,0,0,7,12.8,0,0,0,0,0.278,59.63,118.17,0.9400000000000001,0.21,883,2.7,193,6.800000000000001,0.0000,0.0000 +2012,5,27,9,30,20.5,1.68,0.251,0.63,0,0,0,0,8,13.3,0,0,0,0,0.278,63.17,111.2,0.93,0.21,883,2.6,195,6.300000000000001,0.0000,0.0000 +2012,5,27,10,30,20.1,1.67,0.226,0.63,0,0,0,0,1,13.5,0,0,0,0,0.278,65.92,102.25,0.93,0.21,883,2.4000000000000004,197,5.7,0.0000,0.0000 +2012,5,27,11,30,20,1.6500000000000001,0.20500000000000002,0.63,0,0,0,0,0,13.700000000000001,0,0,0,0,0.277,67.26,91.95,0.93,0.21,883,2.3000000000000003,200,5.2,0.0000,0.0000 +2012,5,27,12,30,21.3,1.6500000000000001,0.193,0.63,54,335,108,0,0,13.9,54,335,0,108,0.277,62.870000000000005,80.66,0.92,0.21,883,2.1,206,5.4,0.0000,0.0000 +2012,5,27,13,30,23.700000000000003,1.6400000000000001,0.176,0.63,91,604,309,0,0,13.8,91,604,0,309,0.277,53.83,68.92,0.92,0.21,883,1.8,215,5.7,14.5658,11.2934 +2012,5,27,14,30,26.400000000000002,1.61,0.15,0.63,107,766,526,0,0,11.5,107,766,0,526,0.278,39.53,56.81,0.91,0.21,883,1.5,221,5.5,28.0399,21.9345 +2012,5,27,15,30,29,1.6,0.134,0.63,116,858,727,0,0,8.1,116,858,0,727,0.279,26.94,44.57,0.9,0.21,883,1.3,222,5.4,40.3301,31.6677 +2012,5,27,16,30,31.200000000000003,1.61,0.128,0.63,123,907,888,0,0,5.1000000000000005,123,907,0,888,0.281,19.37,32.52,0.9,0.21,883,1.2000000000000002,222,5.6000000000000005,50.6669,39.8569 +2012,5,27,17,30,32.9,1.6,0.123,0.63,126,937,999,0,0,2.2,126,937,0,999,0.28300000000000003,14.370000000000001,21.41,0.9,0.21,882,1.1,224,6.1000000000000005,57.4692,45.2485 +2012,5,27,18,30,34,1.57,0.11900000000000001,0.63,127,952,1051,0,0,-0.30000000000000004,127,952,0,1051,0.28400000000000003,11.26,14.14,0.9,0.21,882,1,225,6.6000000000000005,61.8610,48.7228 +2012,5,27,19,30,34.6,1.48,0.10400000000000001,0.63,119,963,1041,0,0,-2.2,119,963,0,1041,0.28500000000000003,9.46,16.91,0.89,0.21,881,0.9,227,7,60.5159,47.6581 +2012,5,27,20,30,34.800000000000004,1.3800000000000001,0.09,0.63,110,963,969,0,0,-3.9000000000000004,110,963,0,969,0.28600000000000003,8.23,26.75,0.89,0.21,880,0.8,228,7.2,55.1764,43.4273 +2012,5,27,21,30,34.5,1.24,0.076,0.63,98,950,841,0,0,-5.300000000000001,98,950,0,841,0.28800000000000003,7.55,38.480000000000004,0.89,0.21,880,0.7000000000000001,230,7.300000000000001,45.7257,35.9426 +2012,5,27,22,30,33.9,1.07,0.068,0.63,86,908,661,0,0,-6.300000000000001,86,908,0,661,0.291,7.25,50.67,0.89,0.21,880,0.7000000000000001,233,7,31.3368,24.5684 +2012,5,27,23,30,32.5,0.85,0.065,0.63,74,826,450,0,0,-7.1000000000000005,74,826,0,450,0.294,7.36,62.870000000000005,0.9,0.21,880,0.7000000000000001,239,6.1000000000000005,19.0994,14.8894 +2012,5,28,0,30,29.1,0.75,0.068,0.63,57,664,231,0,0,-7.300000000000001,57,664,0,231,0.296,8.77,74.82000000000001,0.9,0.21,880,0.6000000000000001,251,4,9.3946,7.2206 +2012,5,28,1,30,24.6,0.88,0.079,0.63,23,252,40,0,0,-4.1000000000000005,23,252,0,40,0.297,14.63,86.22,0.89,0.21,881,0.6000000000000001,266,2.4000000000000004,0.0000,0.0000 +2012,5,28,2,30,21.700000000000003,1.09,0.099,0.63,0,0,0,0,0,-3.6,0,0,0,0,0.298,18.04,97.17,0.89,0.21,882,0.5,279,2,0.0000,0.0000 +2012,5,28,3,30,20.1,1.21,0.116,0.63,0,0,0,0,0,-4.2,0,0,0,0,0.298,19.03,106.84,0.89,0.21,883,0.5,288,2.1,0.0000,0.0000 +2012,5,28,4,30,18.900000000000002,1.21,0.11900000000000001,0.63,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.298,19.150000000000002,114.86,0.89,0.21,883,0.5,297,2.5,0.0000,0.0000 +2012,5,28,5,30,18,1.1300000000000001,0.11,0.63,0,0,0,0,0,-6.7,0,0,0,0,0.298,18.02,120.54,0.89,0.21,884,0.4,311,3.3000000000000003,0.0000,0.0000 +2012,5,28,6,30,17,1.04,0.098,0.63,0,0,0,0,0,-8.4,0,0,0,0,0.297,16.87,123.15,0.9,0.21,885,0.4,322,3.7,0.0000,0.0000 +2012,5,28,7,30,15.8,0.98,0.089,0.63,0,0,0,0,0,-9,0,0,0,0,0.297,17.37,122.26,0.9,0.21,885,0.4,331,3.4000000000000004,0.0000,0.0000 +2012,5,28,8,30,14.600000000000001,0.97,0.08700000000000001,0.63,0,0,0,0,0,-8.8,0,0,0,0,0.297,18.94,118.03,0.9,0.21,886,0.4,342,3,0.0000,0.0000 +2012,5,28,9,30,13.3,1,0.089,0.63,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.297,21.67,111.08,0.9,0.21,886,0.4,177,2.5,0.0000,0.0000 +2012,5,28,10,30,12.200000000000001,1.06,0.091,0.63,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.298,24.97,102.16,0.9,0.21,887,0.5,11,2.2,0.0000,0.0000 +2012,5,28,11,30,12.600000000000001,1.1300000000000001,0.091,0.63,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.298,26.21,91.87,0.9,0.21,887,0.5,20,2.4000000000000004,0.0000,0.0000 +2012,5,28,12,30,15,1.18,0.08700000000000001,0.63,45,504,127,0,0,-6.1000000000000005,45,504,0,127,0.298,22.81,80.60000000000001,0.9,0.21,888,0.5,27,2.9000000000000004,0.0000,0.0000 +2012,5,28,13,30,18.7,1.2,0.084,0.63,70,745,339,0,0,-6,70,745,0,339,0.298,18.16,68.87,0.9,0.21,888,0.6000000000000001,38,3.5,15.9701,12.3832 +2012,5,28,14,30,22.400000000000002,1.2,0.084,0.63,87,861,559,0,0,-5.2,87,861,0,559,0.297,15.4,56.76,0.9,0.21,888,0.6000000000000001,51,3.5,29.5069,23.0827 +2012,5,28,15,30,25.200000000000003,1.2,0.084,0.63,98,925,758,0,0,-4.9,98,925,0,758,0.297,13.280000000000001,44.52,0.9,0.21,888,0.6000000000000001,59,2.7,42.7479,33.5666 +2012,5,28,16,30,27.400000000000002,1.21,0.084,0.63,106,963,919,0,0,-5.300000000000001,106,963,0,919,0.296,11.32,32.46,0.9,0.21,888,0.6000000000000001,90,1.4000000000000001,53.6323,42.1900 +2012,5,28,17,30,29.400000000000002,1.23,0.083,0.63,110,985,1028,0,0,-6,110,985,0,1028,0.295,9.56,21.330000000000002,0.9,0.21,887,0.6000000000000001,163,1.2000000000000002,61.2125,48.1961 +2012,5,28,18,30,31.1,1.28,0.088,0.63,115,990,1075,0,0,-6.800000000000001,115,990,0,1075,0.295,8.13,13.99,0.9,0.21,886,0.6000000000000001,216,2.1,64.7632,51.0088 +2012,5,28,19,30,32.2,1.27,0.08600000000000001,0.63,113,989,1059,0,0,-7.7,113,989,0,1059,0.295,7.16,16.77,0.9,0.21,885,0.6000000000000001,226,2.9000000000000004,64.0289,50.4250 +2012,5,28,20,30,32.800000000000004,1.28,0.085,0.63,109,982,987,0,0,-8.6,109,982,0,987,0.294,6.47,26.63,0.9,0.21,884,0.5,232,3.5,59.0222,46.4546 +2012,5,28,21,30,32.9,1.28,0.083,0.63,102,955,851,0,0,-9.4,102,955,0,851,0.295,6.01,38.38,0.9,0.21,884,0.5,238,3.8000000000000003,50.2149,39.4719 +2012,5,28,22,30,32.4,1.28,0.083,0.63,92,907,669,0,0,-10.100000000000001,92,907,0,669,0.295,5.8500000000000005,50.57,0.9,0.21,884,0.5,245,3.8000000000000003,38.0909,29.8646 +2012,5,28,23,30,31,1.26,0.082,0.63,79,824,456,0,0,-10.5,79,824,0,456,0.296,6.15,62.77,0.9,0.21,883,0.5,252,3.1,24.3657,18.9963 +2012,5,29,0,30,27.5,1.21,0.082,0.63,59,663,234,0,0,-7,59,663,0,234,0.297,9.92,74.71000000000001,0.9,0.21,884,0.5,265,1.8,11.3138,8.6974 +2012,5,29,1,30,24.700000000000003,1.16,0.084,0.63,24,274,43,0,0,0.8,24,274,0,43,0.297,20.91,86.10000000000001,0.9,0.21,884,0.5,282,1.1,0.0000,0.0000 +2012,5,29,2,30,24.3,1.1300000000000001,0.085,0.63,0,0,0,0,0,-2,0,0,0,0,0.297,17.38,97.04,0.9,0.21,884,0.5,316,0.8,0.0000,0.0000 +2012,5,29,3,30,23.1,1.1400000000000001,0.088,0.63,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.296,16.240000000000002,106.7,0.9,0.21,884,0.5,207,0.7000000000000001,0.0000,0.0000 +2012,5,29,4,30,21.1,1.1500000000000001,0.09,0.63,0,0,0,0,0,-3.5,0,0,0,0,0.296,18.93,114.71000000000001,0.9,0.21,884,0.4,86,1,0.0000,0.0000 +2012,5,29,5,30,19.6,1.17,0.093,0.63,0,0,0,0,0,-3.2,0,0,0,0,0.297,21.25,120.38,0.9,0.21,884,0.4,115,1.1,0.0000,0.0000 +2012,5,29,6,30,18.3,1.2,0.096,0.63,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.298,24.44,122.99000000000001,0.9,0.21,884,0.4,166,1,0.0000,0.0000 +2012,5,29,7,30,16.5,1.24,0.098,0.63,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.299,29.79,122.11,0.9,0.21,884,0.4,227,1,0.0000,0.0000 +2012,5,29,8,30,14.4,1.26,0.099,0.63,0,0,0,0,0,-0.4,0,0,0,0,0.3,36.31,117.9,0.89,0.21,885,0.4,264,1.2000000000000002,0.0000,0.0000 +2012,5,29,9,30,13,1.25,0.097,0.63,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.3,39.18,110.98,0.89,0.21,885,0.5,278,1.4000000000000001,0.0000,0.0000 +2012,5,29,10,30,12.200000000000001,1.23,0.094,0.63,0,0,0,0,0,-1.3,0,0,0,0,0.3,39.08,102.07000000000001,0.89,0.21,885,0.5,286,1.7000000000000002,0.0000,0.0000 +2012,5,29,11,30,12.8,1.22,0.092,0.63,0,0,0,0,0,-2.2,0,0,0,0,0.3,35.17,91.8,0.89,0.21,885,0.5,293,2.5,0.0000,0.0000 +2012,5,29,12,30,15.4,1.23,0.092,0.63,45,500,127,0,0,-3.2,45,500,0,127,0.299,27.69,80.54,0.89,0.21,886,0.5,299,3.5,0.0000,0.0000 +2012,5,29,13,30,19.200000000000003,1.25,0.092,0.63,72,743,341,0,0,-3.3000000000000003,72,743,0,341,0.299,21.580000000000002,68.82000000000001,0.89,0.21,887,0.5,307,3.7,17.5282,13.5921 +2012,5,29,14,30,23.6,1.28,0.091,0.63,89,861,562,0,0,-3,89,861,0,562,0.299,16.81,56.72,0.89,0.21,887,0.5,316,3.6,31.3660,24.5376 +2012,5,29,15,30,27.8,1.32,0.091,0.63,100,920,757,0,0,-3.4000000000000004,100,920,0,757,0.298,12.76,44.480000000000004,0.89,0.21,887,0.6000000000000001,319,3.5,44.5771,35.0033 +2012,5,29,16,30,31.200000000000003,1.3800000000000001,0.094,0.63,109,956,917,0,0,-4.6000000000000005,109,956,0,917,0.297,9.620000000000001,32.410000000000004,0.89,0.21,887,0.6000000000000001,314,3.4000000000000004,55.5102,43.6675 +2012,5,29,17,30,33.300000000000004,1.46,0.099,0.63,116,974,1024,0,0,-5.6000000000000005,116,974,0,1024,0.296,7.91,21.240000000000002,0.88,0.21,886,0.6000000000000001,313,3.4000000000000004,62.9943,49.5992 +2012,5,29,18,30,34.300000000000004,1.61,0.112,0.63,124,975,1070,0,0,-5.9,124,975,0,1070,0.295,7.2700000000000005,13.85,0.89,0.21,886,0.6000000000000001,314,3.2,66.2480,52.1786 +2012,5,29,19,30,34.9,1.62,0.11,0.63,122,968,1050,0,0,-6.2,122,968,0,1050,0.294,6.9,16.62,0.89,0.21,886,0.7000000000000001,312,3.1,65.1427,51.3025 +2012,5,29,20,30,35,1.6,0.105,0.63,116,957,972,0,0,-6.4,116,957,0,972,0.293,6.76,26.51,0.89,0.21,885,0.7000000000000001,309,2.8000000000000003,60.1277,47.3252 +2012,5,29,21,30,34.7,1.58,0.113,0.63,113,921,836,0,0,-6.6000000000000005,113,921,0,836,0.293,6.7700000000000005,38.27,0.89,0.21,885,0.7000000000000001,306,2.5,50.8231,39.9506 +2012,5,29,22,30,34,1.56,0.11800000000000001,0.63,104,864,654,0,0,-6.800000000000001,104,864,0,654,0.294,6.94,50.47,0.89,0.21,884,0.7000000000000001,306,2.1,38.5665,30.2383 +2012,5,29,23,30,32.6,1.59,0.122,0.63,89,771,443,0,0,-6.800000000000001,89,771,0,443,0.295,7.49,62.67,0.89,0.21,884,0.7000000000000001,317,1.5,24.7071,19.2638 +2012,5,30,0,30,29.5,1.6500000000000001,0.128,0.63,66,598,225,0,0,-2.6,66,598,0,225,0.296,12.25,74.60000000000001,0.89,0.21,884,0.7000000000000001,177,1.1,11.4719,8.8207 +2012,5,30,1,30,25.3,1.7,0.136,0.63,24,230,41,0,0,2.6,24,230,0,41,0.298,22.82,85.99,0.89,0.21,884,0.7000000000000001,38,1.3,0.0000,0.0000 +2012,5,30,2,30,22.5,1.74,0.148,0.63,0,0,0,0,0,0.8,0,0,0,0,0.299,23.77,96.92,0.89,0.21,885,0.7000000000000001,54,1.6,0.0000,0.0000 +2012,5,30,3,30,20.900000000000002,1.78,0.159,0.63,0,0,0,0,0,0.9,0,0,0,0,0.3,26.5,106.57000000000001,0.89,0.21,885,0.8,65,1.8,0.0000,0.0000 +2012,5,30,4,30,19.700000000000003,1.82,0.17,0.63,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.3,30.19,114.57000000000001,0.89,0.21,885,0.8,75,1.8,0.0000,0.0000 +2012,5,30,5,30,18.6,1.86,0.181,0.63,0,0,0,0,0,2.7,0,0,0,0,0.301,34.77,120.23,0.89,0.21,885,0.8,86,1.8,0.0000,0.0000 +2012,5,30,6,30,17.6,1.8900000000000001,0.194,0.63,0,0,0,0,0,3.6,0,0,0,0,0.301,39.24,122.84,0.89,0.21,884,0.8,98,1.7000000000000002,0.0000,0.0000 +2012,5,30,7,30,16.6,1.93,0.213,0.63,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.3,43.42,121.98,0.89,0.21,884,0.8,109,1.6,0.0000,0.0000 +2012,5,30,8,30,15.700000000000001,1.97,0.23700000000000002,0.63,0,0,0,0,0,4.4,0,0,0,0,0.301,46.88,117.78,0.89,0.21,884,0.8,121,1.4000000000000001,0.0000,0.0000 +2012,5,30,9,30,15.100000000000001,2.02,0.266,0.63,0,0,0,0,0,4.800000000000001,0,0,0,0,0.301,50.28,110.87,0.89,0.21,884,0.8,136,1.2000000000000002,0.0000,0.0000 +2012,5,30,10,30,15,2.07,0.299,0.63,0,0,0,0,0,5.4,0,0,0,0,0.301,52.77,101.98,0.89,0.21,884,0.8,160,1,0.0000,0.0000 +2012,5,30,11,30,15.200000000000001,2.12,0.341,0.63,0,0,0,0,0,5.9,0,0,0,0,0.3,53.79,91.73,0.89,0.21,884,0.7000000000000001,201,0.9,0.0000,0.0000 +2012,5,30,12,30,16.5,2.16,0.388,0.63,59,275,105,0,0,6.4,59,275,0,105,0.3,51.33,80.48,0.88,0.21,884,0.7000000000000001,252,1.3,0.0000,0.0000 +2012,5,30,13,30,19.1,2.18,0.433,0.63,125,470,295,0,0,6.4,125,470,0,295,0.299,43.57,68.77,0.88,0.21,884,0.8,294,1.8,17.6393,13.6790 +2012,5,30,14,30,22.5,2.2,0.463,0.63,175,591,500,0,0,6.4,175,591,0,500,0.299,35.2,56.67,0.88,0.21,884,0.8,323,1.8,31.5407,24.6746 +2012,5,30,15,30,26,2.2,0.47200000000000003,0.63,209,674,690,0,0,5.7,209,674,0,690,0.298,27.330000000000002,44.44,0.88,0.21,884,0.8,347,1.8,44.5234,34.9614 +2012,5,30,16,30,29.1,2.2,0.461,0.63,228,729,844,0,0,4.4,228,729,0,844,0.298,20.79,32.36,0.88,0.21,883,0.9,182,1.6,55.3940,43.5763 +2012,5,30,17,30,31.400000000000002,2.18,0.439,0.63,235,770,953,0,0,1.9000000000000001,235,770,0,953,0.298,15.290000000000001,21.17,0.88,0.21,883,0.9,16,1.4000000000000001,62.7545,49.4107 +2012,5,30,18,30,32.7,2.29,0.7020000000000001,0.63,311,677,969,0,0,0.30000000000000004,311,677,0,969,0.299,12.65,13.72,0.89,0.21,882,1,32,1.3,65.9453,51.9404 +2012,5,30,19,30,33.4,2.2600000000000002,0.651,0.63,297,690,959,0,0,-0.30000000000000004,297,690,0,959,0.3,11.6,16.48,0.89,0.21,882,1,31,1.1,64.5960,50.8723 +2012,5,30,20,30,33.800000000000004,2.2,0.546,0.63,261,707,894,0,0,-0.8,261,707,0,894,0.301,10.97,26.400000000000002,0.89,0.21,881,1,12,1.1,59.2229,46.6135 +2012,5,30,21,30,33.9,2.04,0.333,0.63,187,766,789,0,0,-1.2000000000000002,187,766,0,789,0.303,10.56,38.17,0.89,0.21,881,1,178,1.2000000000000002,49.9392,39.2564 +2012,5,30,22,30,33.5,1.92,0.24,0.63,142,759,626,0,0,-1.8,142,759,0,626,0.305,10.35,50.370000000000005,0.89,0.21,880,1,184,1.5,37.7160,29.5723 +2012,5,30,23,30,32.4,1.78,0.187,0.63,106,698,427,0,0,-2.3000000000000003,106,698,0,427,0.309,10.64,62.57,0.89,0.21,880,1,24,1.5,24.0188,18.7284 +2012,5,31,0,30,29.1,1.6600000000000001,0.163,0.63,73,545,218,0,0,0.2,73,545,0,218,0.314,15.370000000000001,74.5,0.9,0.21,880,1,51,1.4000000000000001,11.0415,8.4914 +2012,5,31,1,30,25.1,1.57,0.154,0.63,25,197,39,0,0,4.4,25,197,0,39,0.319,26.27,85.88,0.9,0.21,881,1.1,70,1.5,0.0000,0.0000 +2012,5,31,2,30,23.200000000000003,1.5,0.153,0.63,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.321,29.88,96.8,0.91,0.21,881,1.3,77,2,0.0000,0.0000 +2012,5,31,3,30,22.3,1.44,0.151,0.63,0,0,0,0,0,7.9,0,0,0,0,0.32,39.58,106.43,0.91,0.21,882,1.5,87,2.3000000000000003,0.0000,0.0000 +2012,5,31,4,30,21.1,1.37,0.146,0.63,0,0,0,0,3,12.200000000000001,0,0,0,0,0.319,56.96,114.43,0.92,0.21,883,1.6,98,2.5,0.0000,0.0000 +2012,5,31,5,30,19.900000000000002,1.28,0.138,0.63,0,0,0,0,6,15.5,0,0,0,0,0.316,75.7,120.09,0.93,0.21,883,1.7000000000000002,107,2.2,0.0000,0.0000 +2012,5,31,6,30,18.7,1.2,0.134,0.63,0,0,0,0,7,16.900000000000002,0,0,0,0,0.314,89.34,122.7,0.93,0.21,883,1.7000000000000002,106,1.6,0.0000,0.0000 +2012,5,31,7,30,17.8,1.19,0.133,0.63,0,0,0,0,7,17.3,0,0,0,0,0.311,96.72,121.84,0.9400000000000001,0.21,884,1.8,76,1.2000000000000002,0.0000,0.0000 +2012,5,31,8,30,17.5,1.23,0.136,0.63,0,0,0,0,7,17,0,0,0,0,0.309,96.75,117.67,0.9400000000000001,0.21,885,1.9000000000000001,31,2.5,0.0000,0.0000 +2012,5,31,9,30,17.1,1.27,0.146,0.63,0,0,0,0,7,15.9,0,0,0,0,0.309,92.75,110.78,0.9400000000000001,0.21,886,2.1,12,4.2,0.0000,0.0000 +2012,5,31,10,30,16.1,1.29,0.158,0.63,0,0,0,0,7,14.200000000000001,0,0,0,0,0.31,88.52,101.9,0.9500000000000001,0.21,887,2.1,13,5.2,0.0000,0.0000 +2012,5,31,11,30,15.200000000000001,1.27,0.159,0.63,0,0,0,0,7,11.8,0,0,0,0,0.311,80.22,91.66,0.9500000000000001,0.21,888,2,18,5.800000000000001,0.0000,0.0000 +2012,5,31,12,30,15.4,1.24,0.148,0.63,53,370,114,7,7,9.200000000000001,82,40,7,89,0.313,66.35,80.43,0.9400000000000001,0.21,889,2,24,6,0.0000,0.0000 +2012,5,31,13,30,17,1.2,0.133,0.63,84,633,314,0,7,7,154,403,0,301,0.314,51.69,68.73,0.9400000000000001,0.21,889,2,31,5.7,15.2663,11.8395 +2012,5,31,14,30,19.6,1.16,0.124,0.63,101,767,523,7,3,5.6000000000000005,258,413,7,485,0.314,40.04,56.64,0.93,0.21,890,2,41,5.4,28.0681,21.9585 +2012,5,31,15,30,22.3,1.1400000000000001,0.11800000000000001,0.63,113,844,715,0,3,5.4,371,74,0,424,0.314,33.44,44.4,0.93,0.21,890,2,48,5.1000000000000005,40.5874,31.8710 +2012,5,31,16,30,24.700000000000003,1.11,0.112,0.63,119,890,872,0,1,5.7,119,890,0,872,0.313,29.45,32.31,0.93,0.21,889,2,54,4.800000000000001,50.9885,40.1109 +2012,5,31,17,30,26.700000000000003,1.09,0.106,0.63,122,920,980,0,0,5.7,122,920,0,980,0.313,26.150000000000002,21.1,0.93,0.21,889,1.9000000000000001,58,4.5,58.4073,45.9880 +2012,5,31,18,30,28.1,1.2,0.117,0.63,129,922,1026,0,0,5.4,129,922,0,1026,0.312,23.61,13.59,0.93,0.21,889,1.9000000000000001,62,4.2,59.7251,47.0414 +2012,5,31,19,30,29,1.18,0.115,0.63,128,920,1011,0,0,5,128,920,0,1011,0.312,21.830000000000002,16.35,0.93,0.21,888,1.9000000000000001,66,3.8000000000000003,59.0036,46.4683 +2012,5,31,20,30,29.400000000000002,1.1400000000000001,0.112,0.63,123,907,936,0,0,4.7,123,907,0,936,0.312,20.830000000000002,26.29,0.93,0.21,888,1.9000000000000001,72,3.4000000000000004,54.4780,42.8792 +2012,5,31,21,30,29.3,1.47,0.166,0.63,137,838,796,0,0,4.4,137,838,0,796,0.313,20.52,38.07,0.93,0.21,888,1.9000000000000001,78,3.1,47.1418,37.0580 +2012,5,31,22,30,28.6,1.45,0.163,0.63,122,782,622,0,0,4.2,122,782,0,622,0.314,21.06,50.28,0.93,0.21,887,1.9000000000000001,85,3.1,36.1147,28.3177 +2012,5,31,23,30,27.5,1.4000000000000001,0.156,0.63,102,694,423,0,0,4.1000000000000005,102,694,0,423,0.314,22.29,62.47,0.93,0.21,887,1.8,94,3.1,23.1667,18.0652 +2012,6,1,0,30,25.400000000000002,1.35,0.156,0.61,74,520,214,0,0,4.1000000000000005,74,520,0,214,0.315,25.25,74.4,0.93,0.22,888,1.8,104,2.7,10.7075,8.2360 +2012,6,1,1,30,22.700000000000003,1.32,0.14200000000000002,0.61,27,184,40,0,0,4.800000000000001,27,184,0,40,0.314,31.310000000000002,85.77,0.93,0.22,888,1.9000000000000001,113,2.3000000000000003,0.0000,0.0000 +2012,6,1,2,30,21,1.32,0.133,0.61,0,0,0,0,0,5,0,0,0,0,0.315,35.07,96.68,0.93,0.22,889,2,118,2.9000000000000004,0.0000,0.0000 +2012,6,1,3,30,20.1,1.32,0.132,0.61,0,0,0,0,0,4.9,0,0,0,0,0.317,36.95,106.31,0.93,0.22,889,2.1,122,3.7,0.0000,0.0000 +2012,6,1,4,30,19,1.33,0.134,0.61,0,0,0,0,0,5.2,0,0,0,0,0.318,40.25,114.29,0.93,0.22,890,2.3000000000000003,128,4.2,0.0000,0.0000 +2012,6,1,5,30,17.8,1.33,0.133,0.61,0,0,0,0,7,5.5,0,0,0,0,0.319,44.27,119.95,0.9400000000000001,0.22,890,2.4000000000000004,135,4.4,0.0000,0.0000 +2012,6,1,6,30,16.8,1.33,0.129,0.61,0,0,0,0,6,5.9,0,0,0,0,0.321,48.46,122.56,0.9400000000000001,0.22,890,2.4000000000000004,138,4.2,0.0000,0.0000 +2012,6,1,7,30,15.700000000000001,1.32,0.127,0.61,0,0,0,0,7,6.300000000000001,0,0,0,0,0.323,53.53,121.72,0.9400000000000001,0.22,890,2.5,139,3.9000000000000004,0.0000,0.0000 +2012,6,1,8,30,15,1.32,0.127,0.61,0,0,0,0,8,6.4,0,0,0,0,0.323,56.51,117.56,0.9400000000000001,0.22,890,2.5,142,3.8000000000000003,0.0000,0.0000 +2012,6,1,9,30,14.5,1.33,0.128,0.61,0,0,0,0,8,6.2,0,0,0,0,0.324,57.660000000000004,110.69,0.9400000000000001,0.22,889,2.5,148,3.6,0.0000,0.0000 +2012,6,1,10,30,14.200000000000001,1.34,0.132,0.61,0,0,0,0,4,6,0,0,0,0,0.325,57.99,101.83,0.9400000000000001,0.22,889,2.5,156,3.5,0.0000,0.0000 +2012,6,1,11,30,14.600000000000001,1.35,0.14300000000000002,0.61,0,0,0,0,3,5.9,0,0,0,0,0.325,56.02,91.61,0.9400000000000001,0.22,889,2.6,165,3.8000000000000003,0.0000,0.0000 +2012,6,1,12,30,16.5,1.36,0.164,0.61,54,347,112,7,3,5.800000000000001,78,5,7,79,0.325,49.29,80.38,0.9400000000000001,0.22,889,2.6,175,4.9,0.0000,0.0000 +2012,6,1,13,30,19.400000000000002,1.3800000000000001,0.193,0.61,99,560,302,0,0,5.9,99,560,0,302,0.325,41.300000000000004,68.69,0.9500000000000001,0.22,889,2.7,186,6.1000000000000005,15.5822,12.0850 +2012,6,1,14,30,22.5,1.37,0.214,0.61,132,673,503,0,0,8,132,673,0,503,0.325,39.45,56.6,0.9500000000000001,0.22,889,2.8000000000000003,198,6.7,27.2302,21.3032 +2012,6,1,15,30,25.1,1.35,0.213,0.61,151,754,690,0,0,10.700000000000001,151,754,0,690,0.324,40.42,44.37,0.9500000000000001,0.22,888,2.8000000000000003,206,6.9,24.9435,19.5869 +2012,6,1,16,30,27.400000000000002,1.32,0.20500000000000002,0.61,161,806,842,0,0,12.3,161,806,0,842,0.322,39.1,32.27,0.9500000000000001,0.22,888,2.9000000000000004,213,7,52.6844,41.4452 +2012,6,1,17,30,29.200000000000003,1.31,0.203,0.61,166,834,945,7,3,13,509,318,7,805,0.321,36.980000000000004,21.03,0.9400000000000001,0.22,887,2.9000000000000004,218,6.9,60.0660,47.2942 +2012,6,1,18,30,30.700000000000003,1.32,0.20700000000000002,0.61,171,843,991,7,3,13.4,554,256,7,802,0.32,34.7,13.47,0.9400000000000001,0.22,886,2.9000000000000004,221,6.800000000000001,63.2431,49.8125 +2012,6,1,19,30,32.1,1.33,0.211,0.61,172,837,975,0,0,13.4,172,837,0,975,0.32,32.08,16.22,0.9400000000000001,0.22,885,2.9000000000000004,223,6.7,62.2087,48.9927 +2012,6,1,20,30,33,1.33,0.21,0.61,166,819,901,7,2,13.100000000000001,372,556,7,871,0.321,29.95,26.19,0.9400000000000001,0.22,884,2.9000000000000004,222,6.5,57.0452,44.9002 +2012,6,1,21,30,33.300000000000004,1.18,0.152,0.61,133,825,783,0,6,12.600000000000001,345,336,0,610,0.322,28.42,37.980000000000004,0.9400000000000001,0.22,883,2.8000000000000003,219,6.300000000000001,47.5703,37.3954 +2012,6,1,22,30,33.1,1.19,0.149,0.61,119,771,612,0,9,11.9,151,2,0,152,0.323,27.560000000000002,50.18,0.9400000000000001,0.22,882,2.8000000000000003,215,5.9,35.8960,28.1469 +2012,6,1,23,30,32.1,1.2,0.154,0.61,102,670,413,0,9,11.3,147,9,0,152,0.323,28.060000000000002,62.370000000000005,0.9400000000000001,0.22,882,2.8000000000000003,207,5.2,22.9648,17.9090 +2012,6,2,0,30,29.700000000000003,1.22,0.17400000000000002,0.61,78,476,207,0,9,11.100000000000001,86,7,0,88,0.323,31.63,74.3,0.9400000000000001,0.21,882,2.8000000000000003,195,3.8000000000000003,10.5205,8.0936 +2012,6,2,1,30,26.5,1.25,0.21,0.61,29,118,38,7,9,11.8,15,0,7,15,0.324,40.11,85.67,0.9500000000000001,0.21,882,3,184,2.7,0.0000,0.0000 +2012,6,2,2,30,24.5,1.27,0.277,0.61,0,0,0,0,9,12.200000000000001,0,0,0,0,0.323,46.28,96.56,0.96,0.21,883,3.2,180,2,0.0000,0.0000 +2012,6,2,3,30,23.1,1.27,0.298,0.61,0,0,0,0,9,13,0,0,0,0,0.322,52.83,106.18,0.97,0.21,885,3.4000000000000004,169,1.3,0.0000,0.0000 +2012,6,2,4,30,21.8,1.26,0.29,0.61,0,0,0,0,9,14,0,0,0,0,0.322,61.18,114.16,0.97,0.21,885,3.5,136,1.4000000000000001,0.0000,0.0000 +2012,6,2,5,30,21,1.24,0.28300000000000003,0.61,0,0,0,0,9,14.4,0,0,0,0,0.323,65.88,119.81,0.97,0.21,886,3.5,116,2.3000000000000003,0.0000,0.0000 +2012,6,2,6,30,20.400000000000002,1.23,0.264,0.61,0,0,0,0,9,14.600000000000001,0,0,0,0,0.323,69.42,122.43,0.97,0.21,886,3.4000000000000004,126,3,0.0000,0.0000 +2012,6,2,7,30,20.1,1.23,0.246,0.61,0,0,0,0,6,14.5,0,0,0,0,0.322,70.31,121.59,0.97,0.21,886,3.3000000000000003,140,3.6,0.0000,0.0000 +2012,6,2,8,30,19.700000000000003,1.23,0.222,0.61,0,0,0,0,6,14.5,0,0,0,0,0.321,71.82000000000001,117.45,0.96,0.21,885,3.2,148,4,0.0000,0.0000 +2012,6,2,9,30,19.400000000000002,1.24,0.193,0.61,0,0,0,0,6,14.5,0,0,0,0,0.321,73.46000000000001,110.60000000000001,0.9500000000000001,0.21,885,3,152,3.8000000000000003,0.0000,0.0000 +2012,6,2,10,30,19.1,1.25,0.17500000000000002,0.61,0,0,0,0,7,14.5,0,0,0,0,0.32,74.69,101.76,0.9500000000000001,0.21,885,2.9000000000000004,154,3.2,0.0000,0.0000 +2012,6,2,11,30,19.200000000000003,1.26,0.166,0.61,0,0,0,0,7,14.5,0,0,0,0,0.321,73.99,91.55,0.9500000000000001,0.21,886,2.8000000000000003,158,2.8000000000000003,0.0000,0.0000 +2012,6,2,12,30,20.6,1.27,0.165,0.61,55,339,112,7,6,14.4,67,7,7,69,0.321,67.69,80.34,0.9500000000000001,0.21,886,2.8000000000000003,167,2.7,0.0000,0.0000 +2012,6,2,13,30,23.5,1.29,0.166,0.61,92,585,304,0,6,14.200000000000001,142,16,0,148,0.322,55.980000000000004,68.66,0.9400000000000001,0.21,887,2.7,184,2.9000000000000004,15.6394,12.1299 +2012,6,2,14,30,26.900000000000002,1.31,0.164,0.61,114,717,509,0,4,13.8,297,226,0,421,0.323,44.6,56.58,0.9400000000000001,0.21,887,2.7,197,3.1,28.2464,22.0987 +2012,6,2,15,30,29.8,1.33,0.163,0.61,130,794,698,0,3,13.3,334,433,0,644,0.322,36.49,44.34,0.9400000000000001,0.21,887,2.7,198,3.4000000000000004,40.5955,31.8778 +2012,6,2,16,30,31.8,1.36,0.164,0.61,141,837,849,0,4,12.9,423,379,0,744,0.321,31.6,32.24,0.9400000000000001,0.21,886,2.8000000000000003,196,3.7,50.8752,40.0222 +2012,6,2,17,30,33.2,1.3800000000000001,0.168,0.61,149,858,950,7,3,12.9,368,573,7,904,0.319,29.18,20.98,0.9400000000000001,0.21,886,2.9000000000000004,194,4.1000000000000005,49.3432,38.8516 +2012,6,2,18,30,34.1,1.29,0.14400000000000002,0.61,141,883,1001,7,2,13.100000000000001,299,678,7,958,0.318,28.17,13.36,0.9400000000000001,0.21,885,2.9000000000000004,192,4.3,49.4390,38.9401 +2012,6,2,19,30,34.7,1.26,0.14,0.61,140,881,986,0,0,13.200000000000001,140,881,0,986,0.316,27.490000000000002,16.09,0.9500000000000001,0.21,884,3,189,4.4,59.9990,47.2527 +2012,6,2,20,30,35,1.23,0.14,0.61,135,866,913,0,0,13,135,866,0,913,0.315,26.64,26.080000000000002,0.9400000000000001,0.21,883,2.9000000000000004,184,4.5,53.0903,41.7876 +2012,6,2,21,30,35,1.3800000000000001,0.176,0.61,141,808,779,0,0,12.4,141,808,0,779,0.314,25.67,37.89,0.9400000000000001,0.21,882,2.9000000000000004,178,4.800000000000001,36.4617,28.6632 +2012,6,2,22,30,34.6,1.4000000000000001,0.179,0.61,127,750,609,0,1,11.700000000000001,127,750,0,609,0.313,24.95,50.09,0.93,0.21,882,2.8000000000000003,173,5.1000000000000005,8.7753,6.8811 +2012,6,2,23,30,33.5,1.45,0.182,0.61,108,653,412,0,6,10.8,234,194,0,324,0.313,25.060000000000002,62.28,0.93,0.21,881,2.7,168,5.2,8.2576,6.4401 +2012,6,3,0,30,31.1,1.51,0.201,0.61,81,466,208,0,9,10.5,50,376,0,152,0.313,28.07,74.2,0.93,0.21,881,2.6,163,4.4,4.3301,3.3318 +2012,6,3,1,30,28.3,1.58,0.246,0.61,28,127,38,7,9,11,24,0,7,24,0.312,34.14,85.57000000000001,0.93,0.21,882,2.6,160,4.1000000000000005,0.0000,0.0000 +2012,6,3,2,30,26.3,1.6,0.298,0.61,0,0,0,0,9,10.600000000000001,0,0,0,0,0.311,37.27,96.45,0.93,0.21,882,2.5,162,4.2,0.0000,0.0000 +2012,6,3,3,30,24.6,1.6,0.373,0.61,0,0,0,0,9,11.100000000000001,0,0,0,0,0.31,42.69,106.07000000000001,0.93,0.21,883,2.6,168,3.2,0.0000,0.0000 +2012,6,3,4,30,23,1.6,0.433,0.61,0,0,0,0,9,11.600000000000001,0,0,0,0,0.309,48.54,114.04,0.9400000000000001,0.21,883,2.6,171,2.1,0.0000,0.0000 +2012,6,3,5,30,21.900000000000002,1.62,0.432,0.61,0,0,0,0,6,11.9,0,0,0,0,0.308,53.050000000000004,119.68,0.9400000000000001,0.21,884,2.6,160,1.8,0.0000,0.0000 +2012,6,3,6,30,21.1,1.6500000000000001,0.388,0.61,0,0,0,0,7,12,0,0,0,0,0.308,56.04,122.3,0.9400000000000001,0.21,884,2.5,145,1.7000000000000002,0.0000,0.0000 +2012,6,3,7,30,20.400000000000002,1.67,0.38,0.61,0,0,0,0,6,12,0,0,0,0,0.308,58.51,121.48,0.93,0.21,884,2.5,145,1.7000000000000002,0.0000,0.0000 +2012,6,3,8,30,19.8,1.72,0.371,0.61,0,0,0,0,6,12,0,0,0,0,0.308,60.92,117.36,0.93,0.21,884,2.5,158,1.8,0.0000,0.0000 +2012,6,3,9,30,19.200000000000003,1.76,0.365,0.61,0,0,0,0,7,12.200000000000001,0,0,0,0,0.308,63.870000000000005,110.52,0.93,0.21,884,2.4000000000000004,172,1.8,0.0000,0.0000 +2012,6,3,10,30,18.6,1.79,0.367,0.61,0,0,0,0,7,12.5,0,0,0,0,0.308,67.77,101.7,0.93,0.21,884,2.3000000000000003,183,1.8,0.0000,0.0000 +2012,6,3,11,30,19.200000000000003,1.81,0.37,0.61,0,0,0,0,7,12.9,0,0,0,0,0.308,66.94,91.51,0.93,0.21,884,2.2,188,2.3000000000000003,0.0000,0.0000 +2012,6,3,12,30,21.3,1.84,0.375,0.61,63,234,103,7,3,13.200000000000001,83,5,7,84,0.309,60.09,80.31,0.92,0.21,884,2.1,194,3.3000000000000003,0.0000,0.0000 +2012,6,3,13,30,24.3,1.87,0.383,0.61,127,452,291,0,3,13.600000000000001,216,109,0,256,0.31,51.19,68.63,0.92,0.21,884,2,207,4,7.6663,5.9462 +2012,6,3,14,30,27.700000000000003,1.9000000000000001,0.397,0.61,171,582,492,0,0,13.5,171,582,0,492,0.311,41.54,56.550000000000004,0.92,0.21,884,2,219,4.3,23.6440,18.4981 +2012,6,3,15,30,30.8,1.92,0.423,0.61,205,657,675,0,0,12.3,205,657,0,675,0.31,32.27,44.32,0.91,0.21,884,1.9000000000000001,225,4.3,37.8924,29.7554 +2012,6,3,16,30,33.2,1.94,0.448,0.61,233,700,825,0,0,10,233,700,0,825,0.309,24.17,32.21,0.91,0.21,884,1.9000000000000001,228,4.1000000000000005,44.9561,35.3659 +2012,6,3,17,30,34.9,1.94,0.459,0.61,249,729,930,0,0,8.3,249,729,0,930,0.309,19.62,20.92,0.91,0.21,884,1.8,231,3.7,55.4141,43.6317 +2012,6,3,18,30,36.1,1.8800000000000001,0.371,0.61,226,783,989,0,0,7.1000000000000005,226,783,0,989,0.309,16.85,13.25,0.91,0.21,883,1.8,237,3.2,59.0593,46.5176 +2012,6,3,19,30,36.7,1.8800000000000001,0.37,0.61,225,782,977,0,0,5.9,225,782,0,977,0.309,15.030000000000001,15.97,0.91,0.21,883,1.7000000000000002,246,2.6,60.6814,47.7904 +2012,6,3,20,30,36.9,1.87,0.357,0.61,213,771,906,0,0,4.7,213,771,0,906,0.31,13.700000000000001,25.98,0.91,0.21,882,1.6,261,2.1,55.6579,43.8090 +2012,6,3,21,30,36.6,1.82,0.309,0.61,184,757,783,0,0,3.9000000000000004,184,757,0,783,0.31,13.11,37.79,0.91,0.21,882,1.6,282,1.7000000000000002,46.5723,36.6118 +2012,6,3,22,30,35.800000000000004,1.8,0.293,0.61,161,705,614,0,0,3.3000000000000003,161,705,0,614,0.31,13.13,50,0.91,0.21,882,1.5,310,1.7000000000000002,35.1705,27.5795 +2012,6,3,23,30,34.2,1.76,0.275,0.61,129,613,415,0,0,2.9000000000000004,129,613,0,415,0.31,14.040000000000001,62.190000000000005,0.91,0.21,882,1.5,338,1.5,17.6120,13.7364 +2012,6,4,0,30,30.900000000000002,1.72,0.256,0.61,88,452,211,0,0,6.5,88,452,0,211,0.311,21.71,74.11,0.91,0.21,882,1.5,181,1.1,7.4861,5.7611 +2012,6,4,1,30,27.200000000000003,1.6600000000000001,0.232,0.61,28,154,40,7,3,10.600000000000001,32,0,7,32,0.311,35.43,85.47,0.91,0.21,883,1.6,19,1.1,0.0000,0.0000 +2012,6,4,2,30,25.3,1.59,0.20700000000000002,0.61,0,0,0,0,7,9.1,0,0,0,0,0.311,35.86,96.34,0.91,0.21,883,1.6,29,1.2000000000000002,0.0000,0.0000 +2012,6,4,3,30,24.6,1.52,0.188,0.61,0,0,0,0,7,9,0,0,0,0,0.311,37.09,105.95,0.91,0.21,884,1.7000000000000002,37,1.1,0.0000,0.0000 +2012,6,4,4,30,24.1,1.47,0.17200000000000001,0.61,0,0,0,0,7,8.9,0,0,0,0,0.311,37.9,113.91,0.91,0.21,884,1.7000000000000002,47,0.9,0.0000,0.0000 +2012,6,4,5,30,23.400000000000002,1.42,0.161,0.61,0,0,0,0,7,8.700000000000001,0,0,0,0,0.31,39.06,119.56,0.92,0.21,884,1.7000000000000002,195,0.6000000000000001,0.0000,0.0000 +2012,6,4,6,30,22.3,1.4000000000000001,0.154,0.61,0,0,0,0,7,8.5,0,0,0,0,0.31,41.22,122.18,0.92,0.21,884,1.8,309,0.7000000000000001,0.0000,0.0000 +2012,6,4,7,30,21.1,1.3900000000000001,0.151,0.61,0,0,0,0,6,8.6,0,0,0,0,0.31,44.78,121.37,0.92,0.21,885,1.8,280,1.1,0.0000,0.0000 +2012,6,4,8,30,19.900000000000002,1.3800000000000001,0.149,0.61,0,0,0,0,7,9.1,0,0,0,0,0.31,49.85,117.27,0.92,0.21,885,1.8,284,1.3,0.0000,0.0000 +2012,6,4,9,30,18.900000000000002,1.37,0.147,0.61,0,0,0,0,7,9.5,0,0,0,0,0.309,54.56,110.45,0.92,0.21,885,1.9000000000000001,297,1.3,0.0000,0.0000 +2012,6,4,10,30,18,1.34,0.145,0.61,0,0,0,0,7,9.700000000000001,0,0,0,0,0.309,58.480000000000004,101.65,0.92,0.21,886,1.9000000000000001,314,1.3,0.0000,0.0000 +2012,6,4,11,30,18.6,1.31,0.14,0.61,0,0,0,0,7,9.600000000000001,0,0,0,0,0.308,55.74,91.46000000000001,0.92,0.21,886,1.9000000000000001,331,1.7000000000000002,0.0000,0.0000 +2012,6,4,12,30,20.900000000000002,1.27,0.135,0.61,51,394,117,7,7,9.5,81,32,7,86,0.307,48.03,80.28,0.92,0.21,886,1.9000000000000001,346,2.4000000000000004,0.0000,0.0000 +2012,6,4,13,30,24.3,1.25,0.13,0.61,82,642,317,0,8,9.4,187,57,0,208,0.306,38.74,68.60000000000001,0.92,0.21,887,1.9000000000000001,190,3,13.2640,10.2883 +2012,6,4,14,30,28.1,1.23,0.126,0.61,101,767,524,0,7,10.3,200,533,0,494,0.305,32.93,56.53,0.92,0.21,887,2,42,3.9000000000000004,27.6356,21.6213 +2012,6,4,15,30,30.8,1.22,0.127,0.61,116,832,712,7,3,12,300,551,7,694,0.303,31.61,44.300000000000004,0.93,0.21,887,2.2,61,4.5,39.7186,31.1896 +2012,6,4,16,30,32.2,1.23,0.13,0.61,127,868,861,0,7,13.5,248,657,0,804,0.301,32.14,32.19,0.93,0.21,887,2.4000000000000004,71,4.5,49.8530,39.2183 +2012,6,4,17,30,32.800000000000004,1.23,0.134,0.61,134,885,961,0,8,14.700000000000001,302,585,0,849,0.299,33.52,20.88,0.93,0.21,887,2.6,77,4.6000000000000005,57.0111,44.8893 +2012,6,4,18,30,32.800000000000004,1.42,0.181,0.61,157,862,997,0,8,15.600000000000001,247,626,0,857,0.297,35.65,13.15,0.93,0.21,886,2.8000000000000003,82,4.6000000000000005,60.9741,48.0260 +2012,6,4,19,30,32.5,1.41,0.184,0.61,157,855,980,0,1,16.3,157,855,0,980,0.295,37.75,15.860000000000001,0.93,0.21,886,2.9000000000000004,86,4.5,60.1325,47.3583 +2012,6,4,20,30,32,1.3900000000000001,0.185,0.61,153,835,904,7,3,16.6,321,627,7,885,0.295,39.68,25.89,0.93,0.21,886,3,88,4.4,55.2379,43.4788 +2012,6,4,21,30,31.400000000000002,1.3800000000000001,0.179,0.61,141,805,778,0,1,16.400000000000002,141,805,0,778,0.295,40.64,37.7,0.93,0.21,885,3,90,4.4,46.8214,36.8082 +2012,6,4,22,30,30.6,1.37,0.176,0.61,127,751,610,7,3,15.8,289,484,7,601,0.296,40.92,49.92,0.93,0.21,885,2.9000000000000004,94,4.3,35.4710,27.8159 +2012,6,4,23,30,29.3,1.36,0.17400000000000002,0.61,107,658,414,0,6,15.5,231,228,0,337,0.298,43.19,62.1,0.93,0.21,885,2.8000000000000003,101,4.1000000000000005,22.5718,17.6059 +2012,6,5,0,30,27.3,1.34,0.17,0.61,78,491,213,0,6,15.9,141,60,0,158,0.299,49.93,74.01,0.9400000000000001,0.2,885,2.8000000000000003,108,3.7,10.4003,8.0051 +2012,6,5,1,30,25.400000000000002,1.32,0.171,0.61,29,163,43,7,9,16.8,26,1,7,26,0.301,58.96,85.38,0.9400000000000001,0.2,885,2.8000000000000003,111,3.5,0.0000,0.0000 +2012,6,5,2,30,24.200000000000003,1.33,0.177,0.61,0,0,0,0,9,17.2,0,0,0,0,0.302,64.89,96.24000000000001,0.9400000000000001,0.2,886,2.9000000000000004,108,3.6,0.0000,0.0000 +2012,6,5,3,30,23.200000000000003,1.34,0.17300000000000001,0.61,0,0,0,0,9,17.6,0,0,0,0,0.302,70.88,105.84,0.9400000000000001,0.2,887,3,105,3.7,0.0000,0.0000 +2012,6,5,4,30,22.3,1.34,0.17200000000000001,0.61,0,0,0,0,9,18.1,0,0,0,0,0.302,77.23,113.8,0.9400000000000001,0.2,887,3,108,3.6,0.0000,0.0000 +2012,6,5,5,30,21.5,1.33,0.177,0.61,0,0,0,0,9,18.5,0,0,0,0,0.302,82.85000000000001,119.44,0.9400000000000001,0.2,887,3.1,116,3.3000000000000003,0.0000,0.0000 +2012,6,5,6,30,20.900000000000002,1.32,0.187,0.61,0,0,0,0,9,18.7,0,0,0,0,0.302,87,122.07000000000001,0.9500000000000001,0.2,887,3.1,126,2.7,0.0000,0.0000 +2012,6,5,7,30,20.3,1.32,0.199,0.61,0,0,0,0,6,18.8,0,0,0,0,0.303,91.13,121.27,0.9500000000000001,0.2,887,3.1,136,2.2,0.0000,0.0000 +2012,6,5,8,30,19.900000000000002,1.3,0.198,0.61,0,0,0,0,9,18.8,0,0,0,0,0.304,93.65,117.18,0.9500000000000001,0.2,887,3.1,146,1.9000000000000001,0.0000,0.0000 +2012,6,5,9,30,19.5,1.29,0.189,0.61,0,0,0,0,6,18.8,0,0,0,0,0.305,95.66,110.38,0.9500000000000001,0.2,886,3,152,1.6,0.0000,0.0000 +2012,6,5,10,30,18.900000000000002,1.28,0.17500000000000002,0.61,0,0,0,0,7,18.6,0,0,0,0,0.306,98.13,101.59,0.9500000000000001,0.2,886,2.9000000000000004,157,1.1,0.0000,0.0000 +2012,6,5,11,30,18.900000000000002,1.28,0.17,0.61,0,0,0,0,7,18.400000000000002,0,0,0,0,0.307,96.74000000000001,91.43,0.9500000000000001,0.2,887,3,179,0.7000000000000001,0.0000,0.0000 +2012,6,5,12,30,19.900000000000002,1.29,0.171,0.61,56,334,112,7,4,18.2,32,0,7,32,0.308,89.92,80.25,0.9500000000000001,0.2,887,3,243,0.7000000000000001,0.0000,0.0000 +2012,6,5,13,30,21.6,1.31,0.166,0.61,92,581,304,0,4,17.2,12,0,0,12,0.308,76.22,68.58,0.9500000000000001,0.2,887,3,314,1,10.7798,8.3616 +2012,6,5,14,30,23.200000000000003,1.31,0.16,0.61,113,715,508,0,4,15.600000000000001,105,0,0,105,0.307,62.5,56.52,0.9500000000000001,0.2,887,3,346,1.5,27.7507,21.7115 +2012,6,5,15,30,24.6,1.32,0.155,0.61,127,793,694,0,4,14.700000000000001,302,5,0,306,0.306,54.01,44.28,0.9500000000000001,0.2,887,3.1,180,1.6,40.8390,32.0695 +2012,6,5,16,30,25.700000000000003,1.33,0.159,0.61,139,833,844,0,3,14.200000000000001,434,334,0,717,0.306,48.910000000000004,32.17,0.9500000000000001,0.2,887,3.2,32,1.3,48.5856,38.2213 +2012,6,5,17,30,26.3,1.34,0.184,0.61,157,840,942,0,4,13.9,195,0,0,195,0.305,46.31,20.84,0.96,0.2,887,3.3000000000000003,75,1.3,52.0476,40.9812 +2012,6,5,18,30,26,1.48,0.381,0.61,242,741,963,0,4,13.700000000000001,442,7,0,449,0.304,46.59,13.06,0.97,0.2,887,3.3000000000000003,105,1.4000000000000001,52.8390,41.6185 +2012,6,5,19,30,25.400000000000002,1.45,0.419,0.61,255,716,944,0,4,13.700000000000001,134,0,0,134,0.302,48.27,15.75,0.97,0.2,886,3.4000000000000004,126,1.3,60.3217,47.5075 +2012,6,5,20,30,24.900000000000002,1.45,0.421,0.61,247,693,871,0,4,14,229,0,0,229,0.301,50.6,25.79,0.97,0.2,885,3.4000000000000004,155,1.1,53.9635,42.4759 +2012,6,5,21,30,24.400000000000002,1.42,0.34,0.61,204,695,755,0,4,14.200000000000001,243,0,0,244,0.3,53.13,37.62,0.97,0.2,885,3.4000000000000004,193,1,46.5313,36.5806 +2012,6,5,22,30,23.8,1.42,0.329,0.61,180,634,589,0,4,14.4,293,14,0,302,0.299,55.800000000000004,49.83,0.97,0.2,885,3.4000000000000004,228,1.1,34.7302,27.2356 +2012,6,5,23,30,23.200000000000003,1.43,0.311,0.61,145,540,398,0,4,14.600000000000001,119,0,0,119,0.298,58.57,62.01,0.97,0.2,885,3.4000000000000004,246,1.2000000000000002,18.3401,14.3060 +2012,6,6,0,30,22.400000000000002,1.43,0.296,0.61,99,376,203,0,4,15.200000000000001,85,1,0,85,0.297,63.57,73.92,0.97,0.22,885,3.4000000000000004,251,1,7.7951,6.0009 +2012,6,6,1,30,21.5,1.43,0.28200000000000003,0.61,31,104,40,7,4,16.3,17,0,7,17,0.298,72.47,85.28,0.97,0.22,885,3.3000000000000003,249,0.6000000000000001,0.0000,0.0000 +2012,6,6,2,30,21,1.43,0.274,0.61,0,0,0,0,4,16.1,0,0,0,0,0.298,73.46000000000001,96.14,0.96,0.22,885,3.3000000000000003,246,0.5,0.0000,0.0000 +2012,6,6,3,30,20.8,1.44,0.271,0.61,0,0,0,0,8,15.9,0,0,0,0,0.299,73.46000000000001,105.73,0.96,0.22,885,3.3000000000000003,274,0.4,0.0000,0.0000 +2012,6,6,4,30,20.400000000000002,1.45,0.269,0.61,0,0,0,0,4,15.700000000000001,0,0,0,0,0.3,74.35000000000001,113.69,0.96,0.22,885,3.3000000000000003,163,0.5,0.0000,0.0000 +2012,6,6,5,30,19.8,1.46,0.269,0.61,0,0,0,0,4,15.5,0,0,0,0,0.3,76.27,119.33,0.96,0.22,885,3.3000000000000003,32,0.7000000000000001,0.0000,0.0000 +2012,6,6,6,30,19.200000000000003,1.47,0.289,0.61,0,0,0,0,7,15.5,0,0,0,0,0.301,79.12,121.96000000000001,0.96,0.22,885,3.3000000000000003,47,0.9,0.0000,0.0000 +2012,6,6,7,30,18.8,1.48,0.327,0.61,0,0,0,0,3,15.8,0,0,0,0,0.302,82.52,121.18,0.97,0.22,885,3.3000000000000003,65,1.1,0.0000,0.0000 +2012,6,6,8,30,18.5,1.5,0.357,0.61,0,0,0,0,0,16.1,0,0,0,0,0.303,85.91,117.10000000000001,0.97,0.22,885,3.3000000000000003,86,1.2000000000000002,0.0000,0.0000 +2012,6,6,9,30,18,1.52,0.368,0.61,0,0,0,0,0,16.400000000000002,0,0,0,0,0.304,90.58,110.32000000000001,0.97,0.22,885,3.3000000000000003,106,1.1,0.0000,0.0000 +2012,6,6,10,30,17.7,1.53,0.403,0.61,0,0,0,0,7,16.7,0,0,0,0,0.305,93.68,101.55,0.97,0.22,885,3.4000000000000004,128,0.9,0.0000,0.0000 +2012,6,6,11,30,17.8,1.5,0.467,0.61,0,0,0,0,7,16.8,0,0,0,0,0.305,94.08,91.39,0.97,0.22,886,3.4000000000000004,157,1,0.0000,0.0000 +2012,6,6,12,30,18.3,1.47,0.515,0.61,72,142,96,7,7,16.8,52,1,7,52,0.305,91.12,80.23,0.97,0.22,886,3.5,184,1.3,0.0000,0.0000 +2012,6,6,13,30,19.3,1.45,0.521,0.61,154,333,276,0,6,16.6,34,0,0,34,0.306,84.44,68.57000000000001,0.97,0.22,886,3.5,204,1.3,0.6220,0.4825 +2012,6,6,14,30,20.400000000000002,1.45,0.493,0.61,204,486,472,0,6,15.9,227,18,0,236,0.306,75.56,56.5,0.97,0.22,886,3.5,233,1.3,5.8987,4.6150 +2012,6,6,15,30,21.8,1.45,0.445,0.61,227,603,659,0,7,15.4,330,91,0,395,0.305,67.15,44.27,0.97,0.22,886,3.4000000000000004,266,1.3,18.0078,14.1410 +2012,6,6,16,30,23.200000000000003,1.45,0.392,0.61,231,688,813,0,7,15.200000000000001,424,228,0,616,0.305,60.800000000000004,32.15,0.97,0.22,886,3.4000000000000004,282,1.4000000000000001,43.3297,34.0866 +2012,6,6,17,30,24.400000000000002,1.46,0.34400000000000003,0.61,225,747,923,0,8,15.200000000000001,512,171,0,671,0.306,56.51,20.8,0.97,0.22,886,3.3000000000000003,268,1.2000000000000002,11.9548,9.4130 +2012,6,6,18,30,25.3,1.47,0.333,0.61,224,766,971,0,8,15.200000000000001,430,400,0,820,0.306,53.52,12.97,0.96,0.22,885,3.3000000000000003,231,1.1,27.6848,21.8059 +2012,6,6,19,30,25.700000000000003,1.47,0.3,0.61,210,782,963,0,4,15.200000000000001,425,5,0,430,0.305,52.21,15.64,0.96,0.22,885,3.2,206,1.4000000000000001,8.2487,6.4964 +2012,6,6,20,30,26,1.45,0.281,0.61,196,774,894,0,8,15.100000000000001,454,216,0,649,0.305,51,25.7,0.96,0.22,884,3.1,197,1.7000000000000002,13.9651,10.9924 +2012,6,6,21,30,26.3,1.41,0.251,0.61,173,756,773,0,8,14.9,387,131,0,491,0.304,49.6,37.53,0.96,0.22,884,3,182,1.8,14.5958,11.4746 +2012,6,6,22,30,26.5,1.3900000000000001,0.23800000000000002,0.61,152,704,607,0,8,14.700000000000001,301,125,0,382,0.304,48.42,49.75,0.96,0.22,884,2.9000000000000004,161,1.9000000000000001,17.4575,13.6906 +2012,6,6,23,30,26.200000000000003,1.3800000000000001,0.22,0.61,123,618,414,0,3,14.600000000000001,241,315,0,389,0.304,48.94,61.93,0.96,0.22,884,2.8000000000000003,144,2.1,6.4800,5.0549 +2012,6,7,0,30,24.8,1.3900000000000001,0.202,0.61,85,465,214,0,0,15,85,465,0,214,0.304,54.51,73.83,0.9500000000000001,0.22,884,2.7,138,1.8,4.1970,3.2315 +2012,6,7,1,30,22.900000000000002,1.4000000000000001,0.184,0.61,31,167,45,7,8,15.700000000000001,26,1,7,26,0.305,63.7,85.19,0.9500000000000001,0.22,885,2.6,138,1.8,0.0000,0.0000 +2012,6,7,2,30,21.8,1.41,0.176,0.61,0,0,0,0,7,15.5,0,0,0,0,0.306,67.5,96.04,0.9500000000000001,0.22,885,2.7,137,2.1,0.0000,0.0000 +2012,6,7,3,30,21,1.42,0.18,0.61,0,0,0,0,7,15.9,0,0,0,0,0.307,72.87,105.63,0.9500000000000001,0.22,886,2.8000000000000003,134,2.4000000000000004,0.0000,0.0000 +2012,6,7,4,30,20.200000000000003,1.44,0.189,0.61,0,0,0,0,7,16.5,0,0,0,0,0.308,79.47,113.58,0.9500000000000001,0.22,886,2.9000000000000004,129,2.7,0.0000,0.0000 +2012,6,7,5,30,19.400000000000002,1.46,0.199,0.61,0,0,0,0,3,17,0,0,0,0,0.309,86.11,119.22,0.9500000000000001,0.22,886,2.9000000000000004,126,3,0.0000,0.0000 +2012,6,7,6,30,18.7,1.48,0.21,0.61,0,0,0,0,7,17.3,0,0,0,0,0.31,91.62,121.86,0.9500000000000001,0.22,886,3,126,3.1,0.0000,0.0000 +2012,6,7,7,30,18.1,1.49,0.228,0.61,0,0,0,0,7,17.5,0,0,0,0,0.312,96.32000000000001,121.09,0.9500000000000001,0.22,886,3.1,125,3,0.0000,0.0000 +2012,6,7,8,30,17.8,1.51,0.25,0.61,0,0,0,0,1,17.6,0,0,0,0,0.313,98.83,117.03,0.9500000000000001,0.22,887,3.1,125,3.1,0.0000,0.0000 +2012,6,7,9,30,17.6,1.52,0.271,0.61,0,0,0,0,1,17.5,0,0,0,0,0.313,99.35000000000001,110.27,0.9500000000000001,0.22,887,3.1,124,3,0.0000,0.0000 +2012,6,7,10,30,17.5,1.53,0.28,0.61,0,0,0,0,7,17.3,0,0,0,0,0.313,98.96000000000001,101.51,0.9500000000000001,0.22,888,3.1,121,2.9000000000000004,0.0000,0.0000 +2012,6,7,11,30,17.6,1.53,0.272,0.61,0,0,0,0,8,17.2,0,0,0,0,0.314,97.38,91.37,0.9500000000000001,0.22,888,3,120,3.1,0.0000,0.0000 +2012,6,7,12,30,18.5,1.52,0.273,0.61,64,262,108,0,1,16.900000000000002,64,262,0,108,0.314,90.42,80.21000000000001,0.9500000000000001,0.22,889,2.9000000000000004,121,3.6,0.0000,0.0000 +2012,6,7,13,30,20.3,1.51,0.261,0.61,113,505,297,0,1,16.400000000000002,113,505,0,297,0.314,78.43,68.56,0.9500000000000001,0.22,889,2.8000000000000003,121,3.7,1.7625,1.3672 +2012,6,7,14,30,22.3,1.51,0.24,0.61,139,657,501,0,3,16.1,106,0,0,106,0.313,68.02,56.5,0.9500000000000001,0.22,889,2.8000000000000003,122,3.4000000000000004,13.2594,10.3740 +2012,6,7,15,30,23.900000000000002,1.5,0.229,0.61,156,747,691,0,3,15.9,202,0,0,202,0.313,61,44.27,0.9500000000000001,0.22,889,2.7,125,3.2,23.2461,18.2545 +2012,6,7,16,30,25.3,1.5,0.225,0.61,168,798,844,0,3,15.9,188,0,0,188,0.312,55.870000000000005,32.14,0.9500000000000001,0.22,889,2.7,128,3.2,37.2273,29.2861 +2012,6,7,17,30,26.5,1.5,0.222,0.61,174,826,946,0,3,15.8,316,1,0,316,0.311,51.75,20.77,0.9500000000000001,0.22,889,2.8000000000000003,130,3.4000000000000004,41.1384,32.3917 +2012,6,7,18,30,27.3,1.6600000000000001,0.335,0.61,223,776,980,0,3,15.700000000000001,239,0,0,239,0.311,49.27,12.89,0.9500000000000001,0.22,889,2.8000000000000003,133,3.6,50.5627,39.8258 +2012,6,7,19,30,27.700000000000003,1.6400000000000001,0.339,0.61,224,768,964,0,3,15.700000000000001,228,0,0,228,0.31,48.160000000000004,15.540000000000001,0.96,0.22,889,2.9000000000000004,136,3.8000000000000003,26.4716,20.8484 +2012,6,7,20,30,27.8,1.62,0.34600000000000003,0.61,220,744,890,0,3,15.8,213,0,0,213,0.31,47.910000000000004,25.61,0.96,0.22,888,2.9000000000000004,138,4,39.5824,31.1566 +2012,6,7,21,30,27.5,1.6400000000000001,0.402,0.61,224,674,759,0,3,15.5,299,1,0,300,0.311,47.82,37.45,0.96,0.22,888,2.9000000000000004,141,4.2,29.3767,23.0950 +2012,6,7,22,30,26.700000000000003,1.62,0.395,0.61,198,610,593,0,3,15.100000000000001,161,0,0,161,0.312,49.01,49.67,0.96,0.22,888,2.8000000000000003,141,4.4,22.0884,17.3227 +2012,6,7,23,30,25.400000000000002,1.61,0.376,0.61,159,516,403,0,3,14.9,142,0,0,142,0.313,52.370000000000005,61.84,0.96,0.22,888,2.7,139,4.6000000000000005,21.1933,16.5334 +2012,6,8,0,30,23.6,1.59,0.357,0.61,106,357,206,0,1,15,106,357,0,206,0.315,58.46,73.75,0.96,0.2,888,2.6,137,4.6000000000000005,10.5753,8.1436 +2012,6,8,1,30,21.5,1.56,0.34500000000000003,0.61,32,100,41,0,0,15.200000000000001,32,100,0,41,0.318,67.16,85.10000000000001,0.9500000000000001,0.2,889,2.6,134,4.6000000000000005,0.0000,0.0000 +2012,6,8,2,30,19.700000000000003,1.53,0.327,0.61,0,0,0,0,0,15.3,0,0,0,0,0.319,75.91,95.95,0.9500000000000001,0.2,889,2.5,132,4.7,0.0000,0.0000 +2012,6,8,3,30,18.5,1.51,0.311,0.61,0,0,0,0,0,15.5,0,0,0,0,0.319,82.77,105.53,0.9500000000000001,0.2,890,2.5,132,4.800000000000001,0.0000,0.0000 +2012,6,8,4,30,17.8,1.48,0.296,0.61,0,0,0,0,0,15.5,0,0,0,0,0.318,86.53,113.48,0.9500000000000001,0.2,890,2.5,133,4.800000000000001,0.0000,0.0000 +2012,6,8,5,30,17.1,1.45,0.279,0.61,0,0,0,0,0,15.200000000000001,0,0,0,0,0.318,88.55,119.13,0.9500000000000001,0.2,889,2.5,136,4.6000000000000005,0.0000,0.0000 +2012,6,8,6,30,16.5,1.42,0.274,0.61,0,0,0,0,0,14.700000000000001,0,0,0,0,0.318,89.21000000000001,121.77,0.9500000000000001,0.2,889,2.6,139,4.3,0.0000,0.0000 +2012,6,8,7,30,16,1.41,0.278,0.61,0,0,0,0,1,14.4,0,0,0,0,0.318,90,121.01,0.96,0.2,889,2.7,143,4,0.0000,0.0000 +2012,6,8,8,30,15.600000000000001,1.3900000000000001,0.281,0.61,0,0,0,0,0,14.200000000000001,0,0,0,0,0.317,91.39,116.97,0.96,0.2,889,2.8000000000000003,145,3.6,0.0000,0.0000 +2012,6,8,9,30,15.4,1.3800000000000001,0.29,0.61,0,0,0,0,0,14.200000000000001,0,0,0,0,0.317,92.51,110.22,0.96,0.2,889,2.9000000000000004,144,3.1,0.0000,0.0000 +2012,6,8,10,30,15.3,1.37,0.296,0.61,0,0,0,0,0,14.3,0,0,0,0,0.316,93.5,101.48,0.96,0.2,890,3,142,2.7,0.0000,0.0000 +2012,6,8,11,30,15.600000000000001,1.36,0.297,0.61,0,0,0,0,7,14.3,0,0,0,0,0.315,91.9,91.34,0.96,0.2,890,3.1,146,2.9000000000000004,0.0000,0.0000 +2012,6,8,12,30,16.8,1.35,0.298,0.61,66,231,105,7,7,14.200000000000001,25,0,7,25,0.315,84.4,80.19,0.96,0.2,890,3.2,153,3.6,0.0000,0.0000 +2012,6,8,13,30,18.900000000000002,1.34,0.28500000000000003,0.61,119,472,291,0,8,13.9,39,0,0,39,0.315,72.65,68.55,0.96,0.2,890,3.2,158,3.9000000000000004,15.3976,11.9441 +2012,6,8,14,30,21.3,1.33,0.267,0.61,148,625,493,0,8,14,250,291,0,411,0.315,63.03,56.5,0.96,0.2,890,3.1,165,4,5.9555,4.6595 +2012,6,8,15,30,23.8,1.33,0.254,0.61,165,720,681,7,3,14.5,395,258,7,580,0.313,55.85,44.27,0.96,0.2,890,3,174,4,11.8879,9.3352 +2012,6,8,16,30,25.8,1.34,0.242,0.61,175,781,836,0,3,14.8,460,110,0,553,0.311,50.7,32.13,0.9500000000000001,0.2,889,2.9000000000000004,180,4,11.3618,8.9381 +2012,6,8,17,30,27.5,1.36,0.23500000000000001,0.61,180,817,944,0,3,14.9,452,17,0,468,0.309,46.230000000000004,20.75,0.9500000000000001,0.2,888,2.7,183,4.1000000000000005,19.3742,15.2550 +2012,6,8,18,30,28.700000000000003,1.41,0.251,0.61,190,822,992,7,3,15,438,509,7,935,0.307,43.230000000000004,12.82,0.9500000000000001,0.2,888,2.6,183,4.2,14.7378,11.6083 +2012,6,8,19,30,29.400000000000002,1.46,0.254,0.61,190,820,981,0,0,14.9,190,820,0,981,0.305,41.39,15.44,0.9500000000000001,0.2,887,2.5,183,4.5,14.0370,11.0553 +2012,6,8,20,30,29.700000000000003,1.51,0.253,0.61,184,805,910,0,0,14.8,184,805,0,910,0.303,40.39,25.53,0.9500000000000001,0.2,886,2.4000000000000004,181,4.7,12.9922,10.2267 +2012,6,8,21,30,29.6,1.55,0.247,0.61,169,775,784,0,0,14.5,169,775,0,784,0.302,39.9,37.37,0.9400000000000001,0.2,885,2.3000000000000003,179,5,17.9521,14.1135 +2012,6,8,22,30,28.900000000000002,1.56,0.23500000000000001,0.61,148,724,618,0,0,14.3,148,724,0,618,0.302,40.86,49.59,0.9400000000000001,0.2,885,2.2,177,5.2,9.3122,7.3032 +2012,6,8,23,30,27.6,1.54,0.219,0.61,120,638,422,0,1,14.200000000000001,120,638,0,422,0.301,43.79,61.76,0.9400000000000001,0.2,884,2.2,174,5.2,7.7408,6.0392 +2012,6,9,0,30,25.700000000000003,1.5,0.2,0.61,84,486,221,0,3,14.4,148,198,0,204,0.301,49.6,73.67,0.9400000000000001,0.2,884,2.1,170,5,10.1874,7.8460 +2012,6,9,1,30,23.5,1.46,0.181,0.61,33,186,49,0,1,14.9,33,186,0,49,0.301,58.35,85.02,0.9500000000000001,0.2,884,2.1,164,4.7,0.0000,0.0000 +2012,6,9,2,30,21.6,1.43,0.169,0.61,0,0,0,0,1,15.4,0,0,0,0,0.302,67.79,95.86,0.9500000000000001,0.2,884,2.2,161,4.6000000000000005,0.0000,0.0000 +2012,6,9,3,30,20.400000000000002,1.41,0.163,0.61,0,0,0,0,0,15.8,0,0,0,0,0.302,75.08,105.44,0.9500000000000001,0.2,885,2.3000000000000003,161,4.5,0.0000,0.0000 +2012,6,9,4,30,19.5,1.4000000000000001,0.161,0.61,0,0,0,0,0,16.1,0,0,0,0,0.302,80.77,113.39,0.9400000000000001,0.2,885,2.4000000000000004,164,4.5,0.0000,0.0000 +2012,6,9,5,30,18.8,1.4000000000000001,0.16,0.61,0,0,0,0,0,16.2,0,0,0,0,0.302,84.79,119.03,0.9400000000000001,0.2,885,2.5,167,4.4,0.0000,0.0000 +2012,6,9,6,30,18.3,1.4000000000000001,0.158,0.61,0,0,0,0,0,16,0,0,0,0,0.302,86.57000000000001,121.69,0.9400000000000001,0.2,884,2.5,172,4.3,0.0000,0.0000 +2012,6,9,7,30,17.8,1.4000000000000001,0.154,0.61,0,0,0,0,0,15.700000000000001,0,0,0,0,0.302,87.26,120.94,0.9400000000000001,0.2,884,2.5,176,4.4,0.0000,0.0000 +2012,6,9,8,30,17.400000000000002,1.4000000000000001,0.153,0.61,0,0,0,0,0,15.3,0,0,0,0,0.302,87.24,116.91,0.9400000000000001,0.2,884,2.4000000000000004,179,4.4,0.0000,0.0000 +2012,6,9,9,30,17,1.44,0.16,0.61,0,0,0,0,0,15,0,0,0,0,0.302,87.92,110.18,0.9400000000000001,0.2,883,2.4000000000000004,183,4.3,0.0000,0.0000 +2012,6,9,10,30,16.6,1.53,0.183,0.61,0,0,0,0,0,14.9,0,0,0,0,0.303,89.63,101.45,0.93,0.2,883,2.2,187,4.1000000000000005,0.0000,0.0000 +2012,6,9,11,30,16.7,1.6400000000000001,0.218,0.61,0,0,0,0,0,14.9,0,0,0,0,0.304,89.09,91.33,0.92,0.2,883,2.1,190,4.2,0.0000,0.0000 +2012,6,9,12,30,18.400000000000002,1.73,0.25,0.61,59,308,111,0,0,15,59,308,0,111,0.304,80.36,80.19,0.91,0.2,883,1.9000000000000001,196,5.1000000000000005,0.0000,0.0000 +2012,6,9,13,30,21.400000000000002,1.78,0.265,0.61,107,535,302,0,0,15,107,535,0,302,0.305,66.78,68.55,0.9,0.2,882,1.7000000000000002,205,5.9,2.0221,1.5686 +2012,6,9,14,30,25,1.8,0.263,0.61,138,677,511,0,0,14.9,138,677,0,511,0.305,53.63,56.5,0.9,0.2,882,1.5,215,5.800000000000001,23.0916,18.0666 +2012,6,9,15,30,28.8,1.8,0.249,0.61,155,773,708,0,0,13.8,155,773,0,708,0.304,39.730000000000004,44.27,0.9,0.2,881,1.3,225,5,34.1335,26.8040 +2012,6,9,16,30,32.300000000000004,1.78,0.231,0.61,161,836,868,0,0,10.3,161,836,0,868,0.304,25.87,32.13,0.89,0.2,881,1.2000000000000002,235,4.2,33.4210,26.2918 +2012,6,9,17,30,34.9,1.74,0.213,0.61,162,880,985,0,0,5.6000000000000005,162,880,0,985,0.304,16.32,20.73,0.89,0.2,880,1,239,3.9000000000000004,28.6940,22.5933 +2012,6,9,18,30,36.7,1.79,0.24,0.61,176,879,1034,0,0,1.5,176,879,0,1034,0.303,11.01,12.76,0.89,0.2,879,0.9,237,3.9000000000000004,57.6585,45.4151 +2012,6,9,19,30,37.6,1.79,0.227,0.61,171,888,1027,0,0,-1.7000000000000002,171,888,0,1027,0.303,8.31,15.35,0.89,0.2,878,0.8,232,4.2,60.4002,47.5702 +2012,6,9,20,30,37.800000000000004,1.71,0.196,0.61,154,894,961,0,1,-3.9000000000000004,154,894,0,961,0.303,6.98,25.45,0.89,0.2,878,0.7000000000000001,228,4.5,55.5121,43.6960 +2012,6,9,21,30,37.300000000000004,2.02,0.459,0.61,225,717,796,7,3,-5.4,225,717,5,796,0.304,6.41,37.29,0.89,0.2,877,0.6000000000000001,224,4.800000000000001,46.9227,36.8899 +2012,6,9,22,30,36.4,2.02,0.47200000000000003,0.61,200,643,617,0,0,-6.300000000000001,200,643,0,617,0.306,6.3100000000000005,49.51,0.88,0.2,877,0.6000000000000001,217,4.5,35.7554,28.0421 +2012,6,9,23,30,34,2.02,0.492,0.61,164,527,414,0,0,-5,164,527,0,414,0.307,7.95,61.690000000000005,0.88,0.2,877,0.6000000000000001,200,3.5,23.0162,17.9575 +2012,6,10,0,30,29.8,1.99,0.49,0.61,107,362,209,0,0,1.3,107,362,0,209,0.308,16,73.59,0.88,0.2,877,0.6000000000000001,181,2.9000000000000004,10.0960,7.7766 +2012,6,10,1,30,26.400000000000002,2,0.484,0.61,28,116,38,0,0,4.2,28,116,0,38,0.31,23.93,84.94,0.88,0.2,877,0.7000000000000001,172,3.9000000000000004,0.0000,0.0000 +2012,6,10,2,30,24.8,2.04,0.47700000000000004,0.61,0,0,0,0,0,7.2,0,0,0,0,0.31,32.44,95.77,0.88,0.2,877,0.8,169,5.2,0.0000,0.0000 +2012,6,10,3,30,23.5,2.0300000000000002,0.443,0.61,0,0,0,0,0,11,0,0,0,0,0.31,45.42,105.35000000000001,0.89,0.2,878,1,165,5.6000000000000005,0.0000,0.0000 +2012,6,10,4,30,22.3,1.98,0.38,0.61,0,0,0,0,0,13.600000000000001,0,0,0,0,0.31,57.910000000000004,113.3,0.89,0.2,878,1.1,162,5.4,0.0000,0.0000 +2012,6,10,5,30,21.3,1.92,0.334,0.61,0,0,0,0,0,14.8,0,0,0,0,0.31,66.63,118.94,0.89,0.2,877,1.1,166,4.9,0.0000,0.0000 +2012,6,10,6,30,20,1.92,0.33,0.61,0,0,0,0,0,14.700000000000001,0,0,0,0,0.31,71.69,121.61,0.88,0.2,877,0.9,178,4.1000000000000005,0.0000,0.0000 +2012,6,10,7,30,18.6,1.9000000000000001,0.321,0.61,0,0,0,0,0,13.100000000000001,0,0,0,0,0.309,70.44,120.87,0.88,0.2,877,0.8,199,3.4000000000000004,0.0000,0.0000 +2012,6,10,8,30,17.400000000000002,1.75,0.246,0.61,0,0,0,0,0,9.4,0,0,0,0,0.308,59.410000000000004,116.86,0.88,0.2,877,0.7000000000000001,227,3,0.0000,0.0000 +2012,6,10,9,30,16.8,1.45,0.152,0.61,0,0,0,0,0,4.3,0,0,0,0,0.308,43.59,110.14,0.89,0.2,877,0.8,248,3.2,0.0000,0.0000 +2012,6,10,10,30,17,1.19,0.10300000000000001,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.309,32.21,101.42,0.89,0.2,878,0.8,258,3.5,0.0000,0.0000 +2012,6,10,11,30,18.3,1.1400000000000001,0.095,0.61,0,0,0,0,0,-1.6,0,0,0,0,0.31,25.96,91.31,0.89,0.2,879,0.7000000000000001,265,4.1000000000000005,0.0000,0.0000 +2012,6,10,12,30,20.900000000000002,1.26,0.11,0.61,48,468,128,0,0,-2.2,48,468,0,128,0.31,21.05,80.18,0.89,0.2,880,0.7000000000000001,271,4.800000000000001,0.0000,0.0000 +2012,6,10,13,30,24.700000000000003,1.4000000000000001,0.129,0.61,81,688,333,0,0,-1.9000000000000001,81,688,0,333,0.311,17.12,68.55,0.89,0.2,880,0.7000000000000001,275,5.1000000000000005,15.6581,12.1463 +2012,6,10,14,30,29.1,1.32,0.12,0.61,98,818,550,0,0,-1,98,818,0,550,0.312,14.13,56.5,0.89,0.2,881,0.7000000000000001,286,5.7,28.7100,22.4623 +2012,6,10,15,30,32.5,1.05,0.092,0.61,101,903,748,0,0,-0.8,101,903,0,748,0.313,11.83,44.27,0.9,0.2,881,0.8,294,6,41.6664,32.7194 +2012,6,10,16,30,34.4,0.92,0.081,0.61,105,950,909,0,0,-0.7000000000000001,105,950,0,909,0.314,10.68,32.14,0.9,0.2,881,0.8,292,5.5,52.4583,41.2682 +2012,6,10,17,30,35.800000000000004,0.86,0.078,0.61,109,968,1015,0,0,-0.8,109,968,0,1015,0.314,9.790000000000001,20.72,0.91,0.2,881,0.9,287,5,60.3934,47.5530 +2012,6,10,18,30,36.9,0.84,0.079,0.61,112,976,1064,0,0,-1,112,976,0,1064,0.314,9.09,12.700000000000001,0.91,0.2,880,0.9,282,4.6000000000000005,63.7656,50.2255 +2012,6,10,19,30,37.5,0.75,0.074,0.61,109,973,1047,0,0,-1.3,109,973,0,1047,0.313,8.65,15.27,0.91,0.2,880,1,277,4.2,63.2362,49.8039 +2012,6,10,20,30,37.7,0.73,0.073,0.61,105,960,973,0,0,-1.6,105,960,0,973,0.313,8.34,25.37,0.91,0.2,880,1,272,3.7,58.6288,46.1496 +2012,6,10,21,30,37.300000000000004,0.66,0.068,0.61,97,937,843,0,0,-1.9000000000000001,97,937,0,843,0.313,8.34,37.22,0.91,0.2,880,1,269,3.2,47.6488,37.4612 +2012,6,10,22,30,36.4,0.72,0.07200000000000001,0.61,90,887,667,0,0,-1.9000000000000001,90,887,0,667,0.314,8.75,49.44,0.91,0.2,880,1,267,2.8000000000000003,35.7078,28.0054 +2012,6,10,23,30,34.800000000000004,0.78,0.077,0.61,79,802,461,0,0,-1.5,79,802,0,461,0.315,9.88,61.61,0.91,0.2,880,1,276,2,22.5899,17.6257 +2012,6,11,0,30,31.5,0.85,0.083,0.61,62,639,243,0,0,2.7,62,639,0,243,0.315,16.12,73.51,0.91,0.2,880,1.1,148,1.4000000000000001,10.3511,7.9742 +2012,6,11,1,30,27.6,0.92,0.091,0.61,30,285,55,0,0,8.5,30,285,0,55,0.315,30.05,84.86,0.91,0.2,881,1.1,26,1.5,0.0000,0.0000 +2012,6,11,2,30,24.900000000000002,1.01,0.099,0.61,0,0,0,0,0,7.2,0,0,0,0,0.315,32.31,95.69,0.9,0.2,882,1.1,50,1.8,0.0000,0.0000 +2012,6,11,3,30,22.900000000000002,1.07,0.106,0.61,0,0,0,0,0,8.3,0,0,0,0,0.314,39.35,105.27,0.9,0.2,883,1.2000000000000002,62,1.8,0.0000,0.0000 +2012,6,11,4,30,21.3,1.07,0.11,0.61,0,0,0,0,0,9.4,0,0,0,0,0.313,46.59,113.21000000000001,0.9,0.2,883,1.2000000000000002,65,1.7000000000000002,0.0000,0.0000 +2012,6,11,5,30,20,1.02,0.11,0.61,0,0,0,0,0,10.100000000000001,0,0,0,0,0.313,52.83,118.86,0.91,0.2,883,1.2000000000000002,60,1.6,0.0000,0.0000 +2012,6,11,6,30,18.900000000000002,0.96,0.109,0.61,0,0,0,0,0,10.600000000000001,0,0,0,0,0.313,58.74,121.53,0.91,0.2,883,1.3,47,1.6,0.0000,0.0000 +2012,6,11,7,30,17.900000000000002,0.97,0.114,0.61,0,0,0,0,0,11.100000000000001,0,0,0,0,0.313,64.49,120.81,0.91,0.2,883,1.4000000000000001,30,1.7000000000000002,0.0000,0.0000 +2012,6,11,8,30,17.1,1.08,0.13,0.61,0,0,0,0,0,11.4,0,0,0,0,0.313,69.10000000000001,116.81,0.91,0.2,884,1.5,13,2,0.0000,0.0000 +2012,6,11,9,30,16.6,1.28,0.168,0.61,0,0,0,0,0,11.4,0,0,0,0,0.312,71.36,110.11,0.91,0.2,885,1.6,183,2.6,0.0000,0.0000 +2012,6,11,10,30,16.3,1.53,0.23800000000000002,0.61,0,0,0,0,0,11.100000000000001,0,0,0,0,0.311,71.49,101.41,0.9,0.2,886,1.6,181,3.4000000000000004,0.0000,0.0000 +2012,6,11,11,30,16.6,1.76,0.335,0.61,0,0,0,0,0,10.600000000000001,0,0,0,0,0.31,67.61,91.31,0.9,0.2,887,1.7000000000000002,6,4.2,0.0000,0.0000 +2012,6,11,12,30,18.3,1.92,0.436,0.61,63,222,101,0,0,9.8,63,222,0,101,0.309,57.800000000000004,80.18,0.9,0.2,888,1.7000000000000002,13,4.800000000000001,0.0000,0.0000 +2012,6,11,13,30,21.200000000000003,2.02,0.51,0.61,134,401,280,0,0,9,134,401,0,280,0.308,45.71,68.55,0.89,0.2,888,1.7000000000000002,23,5.4,17.2654,13.3931 +2012,6,11,14,30,24.1,2.06,0.532,0.61,188,528,479,0,0,7.800000000000001,188,528,0,479,0.306,35.21,56.51,0.89,0.2,889,1.6,36,6,30.9011,24.1767 +2012,6,11,15,30,26.6,2.07,0.508,0.61,221,629,671,0,0,5.5,221,629,0,671,0.304,25.95,44.29,0.9,0.2,890,1.5,44,6.300000000000001,44.0204,34.5679 +2012,6,11,16,30,28.700000000000003,2.04,0.448,0.61,229,714,834,0,0,3,229,714,0,834,0.302,19.28,32.14,0.9,0.2,890,1.4000000000000001,48,6.1000000000000005,54.9353,43.2167 +2012,6,11,17,30,30.400000000000002,2,0.375,0.61,219,780,949,0,0,1.4000000000000001,219,780,0,949,0.3,15.620000000000001,20.71,0.9,0.2,890,1.4000000000000001,49,5.9,62.2334,49.0018 +2012,6,11,18,30,31.700000000000003,1.61,0.124,0.61,129,936,1042,0,0,0.7000000000000001,129,936,0,1042,0.297,13.780000000000001,12.65,0.91,0.2,890,1.3,50,5.5,65.6178,51.6844 +2012,6,11,19,30,32.5,1.6300000000000001,0.129,0.61,131,930,1028,0,0,0.5,131,930,0,1028,0.295,12.92,15.19,0.91,0.2,890,1.3,52,5.1000000000000005,64.4710,50.7766 +2012,6,11,20,30,32.800000000000004,1.6300000000000001,0.134,0.61,129,909,951,0,0,0.30000000000000004,129,909,0,951,0.293,12.55,25.29,0.91,0.2,889,1.4000000000000001,56,4.9,59.3665,46.7306 +2012,6,11,21,30,32.5,1.6300000000000001,0.137,0.61,123,876,821,0,0,0.2,123,876,0,821,0.292,12.72,37.14,0.91,0.2,889,1.4000000000000001,61,4.800000000000001,50.4696,39.6793 +2012,6,11,22,30,31.6,1.62,0.14100000000000001,0.61,113,821,648,0,0,0.30000000000000004,113,821,0,648,0.292,13.42,49.36,0.91,0.2,889,1.4000000000000001,68,4.7,38.6111,30.2831 +2012,6,11,23,30,30.1,1.61,0.14400000000000002,0.61,98,729,445,0,8,0.4,212,421,0,413,0.292,14.790000000000001,61.54,0.91,0.2,889,1.4000000000000001,75,4.3,25.1673,19.6377 +2012,6,12,0,30,27.700000000000003,1.6,0.14100000000000001,0.61,72,574,235,0,7,1.1,134,27,0,142,0.293,17.830000000000002,73.44,0.91,0.2,889,1.4000000000000001,82,3.5,12.0439,9.2795 +2012,6,12,1,30,25,1.58,0.137,0.61,31,256,54,7,8,3,43,7,7,44,0.293,23.93,84.79,0.91,0.2,890,1.4000000000000001,87,3.2,0.0000,0.0000 +2012,6,12,2,30,23.400000000000002,1.55,0.133,0.61,0,0,0,0,7,3.6,0,0,0,0,0.294,27.6,95.61,0.91,0.2,891,1.4000000000000001,91,3.6,0.0000,0.0000 +2012,6,12,3,30,22.400000000000002,1.54,0.134,0.61,0,0,0,0,7,4.1000000000000005,0,0,0,0,0.294,30.25,105.19,0.92,0.2,891,1.5,94,3.7,0.0000,0.0000 +2012,6,12,4,30,21.3,1.54,0.14,0.61,0,0,0,0,8,4.800000000000001,0,0,0,0,0.295,33.88,113.13,0.92,0.2,892,1.7000000000000002,96,3.6,0.0000,0.0000 +2012,6,12,5,30,20.200000000000003,1.58,0.152,0.61,0,0,0,0,1,5.300000000000001,0,0,0,0,0.295,37.65,118.79,0.92,0.2,892,1.8,99,3.3000000000000003,0.0000,0.0000 +2012,6,12,6,30,19.3,1.6300000000000001,0.176,0.61,0,0,0,0,3,5.7,0,0,0,0,0.295,40.97,121.47,0.93,0.2,892,2,101,3.1,0.0000,0.0000 +2012,6,12,7,30,18.400000000000002,1.68,0.215,0.61,0,0,0,0,6,6,0,0,0,0,0.295,44.13,120.76,0.9400000000000001,0.2,892,2.2,100,3,0.0000,0.0000 +2012,6,12,8,30,17.7,1.68,0.278,0.61,0,0,0,0,6,6.6000000000000005,0,0,0,0,0.295,48.01,116.78,0.9500000000000001,0.2,892,2.4000000000000004,97,2.8000000000000003,0.0000,0.0000 +2012,6,12,9,30,17.2,1.6600000000000001,0.336,0.61,0,0,0,0,6,7.4,0,0,0,0,0.296,52.53,110.09,0.9500000000000001,0.2,892,2.6,93,2.5,0.0000,0.0000 +2012,6,12,10,30,16.8,1.6500000000000001,0.357,0.61,0,0,0,0,6,8.5,0,0,0,0,0.297,57.99,101.39,0.9500000000000001,0.2,892,2.7,88,2.1,0.0000,0.0000 +2012,6,12,11,30,17,1.67,0.341,0.61,0,0,0,0,6,9.5,0,0,0,0,0.298,61.46,91.3,0.9400000000000001,0.2,893,2.7,82,2.2,0.0000,0.0000 +2012,6,12,12,30,18.6,1.7,0.32,0.61,64,247,106,7,6,10.200000000000001,25,0,7,25,0.299,58.15,80.19,0.9400000000000001,0.2,893,2.7,80,3,0.0000,0.0000 +2012,6,12,13,30,21.5,1.74,0.305,0.61,118,484,295,0,6,10.600000000000001,27,0,0,27,0.299,49.97,68.56,0.9400000000000001,0.2,894,2.6,91,4.3,14.5175,11.2615 +2012,6,12,14,30,24.200000000000003,1.75,0.311,0.61,155,615,494,0,7,10.4,213,488,0,482,0.299,41.79,56.53,0.9400000000000001,0.2,894,2.6,104,5,26.9107,21.0545 +2012,6,12,15,30,25.700000000000003,1.74,0.333,0.61,186,684,675,0,0,12.100000000000001,186,684,0,675,0.299,42.89,44.300000000000004,0.9400000000000001,0.2,893,2.7,111,4.9,39.4866,31.0076 +2012,6,12,16,30,26.6,1.7,0.361,0.61,215,719,824,0,0,14.200000000000001,215,719,0,824,0.298,46.62,32.15,0.9500000000000001,0.2,893,2.8000000000000003,116,5,50.4027,39.6510 +2012,6,12,17,30,27.1,1.6500000000000001,0.384,0.61,235,734,921,0,3,15.9,457,458,0,885,0.297,50.29,20.71,0.9500000000000001,0.2,892,3,121,5.2,58.1872,45.8159 +2012,6,12,18,30,27,1.53,0.261,0.61,192,807,980,0,3,17.1,459,455,0,903,0.296,54.58,12.61,0.9500000000000001,0.2,892,3.2,125,5.4,64.2628,50.6172 +2012,6,12,19,30,26.700000000000003,1.5,0.292,0.61,204,783,961,0,3,18.1,457,455,0,896,0.296,59.2,15.11,0.96,0.2,891,3.4000000000000004,130,5.5,63.3044,49.8579 +2012,6,12,20,30,26.200000000000003,1.49,0.307,0.61,204,754,886,0,0,18.900000000000002,204,754,0,886,0.296,64.37,25.22,0.96,0.2,890,3.5,133,5.5,58.0297,45.6786 +2012,6,12,21,30,25.900000000000002,1.48,0.28300000000000003,0.61,183,730,765,0,0,19.400000000000002,183,730,0,765,0.296,67.57000000000001,37.07,0.9500000000000001,0.2,890,3.5,136,5.5,49.1606,38.6506 +2012,6,12,22,30,25.6,1.49,0.242,0.61,151,697,605,0,0,19.3,151,697,0,605,0.297,68.37,49.29,0.9500000000000001,0.2,889,3.4000000000000004,136,5.4,37.5220,29.4295 +2012,6,12,23,30,25,1.49,0.217,0.61,121,621,417,0,0,18.900000000000002,121,621,0,417,0.297,68.98,61.47,0.9500000000000001,0.2,888,3.2,131,4.800000000000001,22.5568,17.6015 +2012,6,13,0,30,23.6,1.46,0.258,0.61,95,417,214,0,2,18.8,95,417,5,214,0.297,74.35000000000001,73.36,0.96,0.2,888,3.3000000000000003,136,4.2,7.0426,5.4267 +2012,6,13,1,30,22.200000000000003,1.45,0.397,0.61,35,82,42,7,7,19,41,2,7,41,0.296,82.3,84.71000000000001,0.97,0.2,889,3.5,146,4.3,0.0000,0.0000 +2012,6,13,2,30,21.3,1.44,0.453,0.61,0,0,0,0,7,19.200000000000003,0,0,0,0,0.297,87.98,95.54,0.97,0.2,889,3.5,147,4.6000000000000005,0.0000,0.0000 +2012,6,13,3,30,20.8,1.46,0.41600000000000004,0.61,0,0,0,0,6,19.5,0,0,0,0,0.298,92.43,105.11,0.97,0.2,889,3.5,148,5.2,0.0000,0.0000 +2012,6,13,4,30,20.3,1.49,0.342,0.61,0,0,0,0,6,19.700000000000003,0,0,0,0,0.299,96.26,113.06,0.96,0.2,889,3.3000000000000003,150,5.800000000000001,0.0000,0.0000 +2012,6,13,5,30,19.8,1.51,0.267,0.61,0,0,0,0,6,19.200000000000003,0,0,0,0,0.3,96.54,118.72,0.9500000000000001,0.2,888,3.2,156,5.7,0.0000,0.0000 +2012,6,13,6,30,19.3,1.51,0.228,0.61,0,0,0,0,6,18.6,0,0,0,0,0.301,95.66,121.41,0.9400000000000001,0.2,888,3.2,165,5,0.0000,0.0000 +2012,6,13,7,30,18.900000000000002,1.5,0.226,0.61,0,0,0,0,6,18.400000000000002,0,0,0,0,0.302,96.67,120.71000000000001,0.9400000000000001,0.2,887,3.2,175,4.1000000000000005,0.0000,0.0000 +2012,6,13,8,30,18.5,1.51,0.25,0.61,0,0,0,0,6,18.3,0,0,0,0,0.302,98.95,116.74000000000001,0.9400000000000001,0.2,887,3.3000000000000003,180,2.8000000000000003,0.0000,0.0000 +2012,6,13,9,30,18,1.52,0.298,0.61,0,0,0,0,6,18,0,0,0,0,0.303,100,110.07000000000001,0.9500000000000001,0.2,888,3.3000000000000003,164,1.7000000000000002,0.0000,0.0000 +2012,6,13,10,30,17.7,1.5,0.332,0.61,0,0,0,0,7,17.7,0,0,0,0,0.303,100,101.39,0.9500000000000001,0.2,888,3.3000000000000003,132,1.6,0.0000,0.0000 +2012,6,13,11,30,17.8,1.48,0.324,0.61,0,0,0,0,1,17.6,0,0,0,0,0.303,98.67,91.3,0.9500000000000001,0.2,888,3.2,113,2.2,0.0000,0.0000 +2012,6,13,12,30,18.6,1.47,0.315,0.61,66,230,105,0,1,17.3,66,230,0,105,0.304,92.11,80.19,0.9500000000000001,0.2,888,3.1,127,2.9000000000000004,0.0000,0.0000 +2012,6,13,13,30,20.200000000000003,1.46,0.306,0.61,121,464,291,0,0,16.7,121,464,0,291,0.303,80.18,68.58,0.9500000000000001,0.2,889,3,148,3.6,1.3998,1.0858 +2012,6,13,14,30,22.3,1.45,0.295,0.61,153,612,490,0,0,16.2,153,612,0,490,0.303,68.38,56.54,0.9400000000000001,0.2,889,2.9000000000000004,162,4.2,27.0766,21.1841 +2012,6,13,15,30,24.5,1.46,0.28700000000000003,0.61,174,704,677,0,3,16.2,371,63,0,416,0.302,59.97,44.32,0.9400000000000001,0.2,888,2.8000000000000003,173,4.5,39.7209,31.1915 +2012,6,13,16,30,26.700000000000003,1.48,0.278,0.61,185,762,830,0,3,16.400000000000002,471,287,0,715,0.301,53.370000000000005,32.17,0.9400000000000001,0.2,888,2.8000000000000003,181,4.7,49.7975,39.1749 +2012,6,13,17,30,28.6,1.49,0.265,0.61,189,801,939,0,0,16.5,189,801,0,939,0.3,47.83,20.72,0.9400000000000001,0.2,887,2.7,185,4.7,54.2631,42.7261 +2012,6,13,18,30,30.1,1.3800000000000001,0.14400000000000002,0.61,139,886,1005,0,0,16.400000000000002,139,886,0,1005,0.299,43.57,12.57,0.93,0.2,886,2.7,185,4.800000000000001,55.6915,43.8660 +2012,6,13,19,30,31.1,1.3900000000000001,0.14,0.61,137,889,995,0,3,16.1,541,231,0,764,0.297,40.53,15.040000000000001,0.93,0.2,885,2.6,184,4.9,55.1787,43.4583 +2012,6,13,20,30,31.700000000000003,1.41,0.138,0.61,132,875,924,0,0,15.8,132,875,0,924,0.296,38.480000000000004,25.150000000000002,0.93,0.2,885,2.6,181,5.1000000000000005,54.0679,42.5602 +2012,6,13,21,30,31.8,1.47,0.147,0.61,128,838,797,0,0,15.5,128,838,0,797,0.295,37.42,37.01,0.93,0.2,884,2.6,178,5.2,45.8140,36.0198 +2012,6,13,22,30,31.200000000000003,1.5,0.156,0.61,119,776,626,0,0,15.3,119,776,0,626,0.295,38.14,49.230000000000004,0.93,0.2,883,2.7,174,5.300000000000001,35.0408,27.4840 +2012,6,13,23,30,30.200000000000003,1.53,0.176,0.61,108,667,428,0,1,15.3,108,667,0,428,0.296,40.37,61.4,0.9400000000000001,0.2,883,2.7,170,5.1000000000000005,22.7853,17.7806 +2012,6,14,0,30,28.400000000000002,1.54,0.199,0.61,84,482,222,0,0,15.5,84,482,0,222,0.297,45.37,73.3,0.9400000000000001,0.2,883,2.8000000000000003,162,4.3,10.6213,8.1854 +2012,6,14,1,30,26.3,1.54,0.215,0.61,34,170,50,7,7,16,44,6,7,44,0.298,53.13,84.65,0.9400000000000001,0.2,884,2.8000000000000003,151,4,0.0000,0.0000 +2012,6,14,2,30,24.700000000000003,1.52,0.219,0.61,0,0,0,0,7,16.400000000000002,0,0,0,0,0.299,59.76,95.47,0.9400000000000001,0.2,884,2.8000000000000003,143,4.6000000000000005,0.0000,0.0000 +2012,6,14,3,30,23.3,1.5,0.221,0.61,0,0,0,0,7,16.900000000000002,0,0,0,0,0.3,67.18,105.04,0.9400000000000001,0.2,884,2.9000000000000004,138,5.2,0.0000,0.0000 +2012,6,14,4,30,22.1,1.49,0.226,0.61,0,0,0,0,7,17.400000000000002,0,0,0,0,0.299,74.79,112.99000000000001,0.9400000000000001,0.2,885,3.1,138,5.4,0.0000,0.0000 +2012,6,14,5,30,21.200000000000003,1.5,0.23600000000000002,0.61,0,0,0,0,3,17.8,0,0,0,0,0.299,81.18,118.66,0.9400000000000001,0.2,885,3.2,141,5.2,0.0000,0.0000 +2012,6,14,6,30,20.700000000000003,1.5,0.254,0.61,0,0,0,0,7,18.1,0,0,0,0,0.299,85.19,121.35000000000001,0.9400000000000001,0.2,885,3.3000000000000003,149,4.800000000000001,0.0000,0.0000 +2012,6,14,7,30,20.5,1.52,0.272,0.61,0,0,0,0,7,18.2,0,0,0,0,0.298,86.78,120.67,0.9400000000000001,0.2,884,3.3000000000000003,160,4.5,0.0000,0.0000 +2012,6,14,8,30,20.3,1.56,0.28200000000000003,0.61,0,0,0,0,7,18.2,0,0,0,0,0.299,87.9,116.72,0.9400000000000001,0.2,884,3.2,169,4.2,0.0000,0.0000 +2012,6,14,9,30,20,1.6,0.275,0.61,0,0,0,0,8,18.2,0,0,0,0,0.3,89.12,110.06,0.9400000000000001,0.2,884,2.9000000000000004,175,3.9000000000000004,0.0000,0.0000 +2012,6,14,10,30,19.5,1.61,0.26,0.61,0,0,0,0,0,18,0,0,0,0,0.301,91,101.39,0.9400000000000001,0.2,884,2.7,178,3.4000000000000004,0.0000,0.0000 +2012,6,14,11,30,19.6,1.59,0.23900000000000002,0.61,0,0,0,0,0,17.8,0,0,0,0,0.302,89.42,91.31,0.93,0.2,884,2.6,180,3.4000000000000004,0.0000,0.0000 +2012,6,14,12,30,21.1,1.57,0.20800000000000002,0.61,57,321,112,0,0,17.7,57,321,0,112,0.304,80.92,80.21000000000001,0.93,0.2,884,2.5,184,3.9000000000000004,0.0000,0.0000 +2012,6,14,13,30,23.8,1.55,0.181,0.61,93,583,306,0,0,17.2,93,583,0,306,0.306,66.66,68.60000000000001,0.93,0.2,884,2.4000000000000004,194,4.7,15.0839,11.7005 +2012,6,14,14,30,26.700000000000003,1.53,0.165,0.61,112,727,512,0,0,16.400000000000002,112,727,0,512,0.308,53.08,56.56,0.92,0.2,884,2.3000000000000003,204,5,27.5246,21.5345 +2012,6,14,15,30,29.3,1.52,0.158,0.61,125,809,704,0,0,15.8,125,809,0,704,0.309,44.04,44.34,0.92,0.2,884,2.2,210,4.5,24.4785,19.2220 +2012,6,14,16,30,31.6,1.53,0.157,0.61,135,854,858,0,0,15.200000000000001,135,854,0,858,0.309,37.19,32.19,0.92,0.2,884,2.2,210,4,43.2088,33.9916 +2012,6,14,17,30,33.800000000000004,1.55,0.16,0.61,142,877,963,0,0,14.4,142,877,0,963,0.31,31.150000000000002,20.72,0.92,0.2,884,2.2,203,3.7,57.5735,45.3327 +2012,6,14,18,30,35.4,1.55,0.155,0.61,143,889,1011,0,0,13.3,143,889,0,1011,0.31,26.55,12.540000000000001,0.92,0.2,883,2.3000000000000003,194,3.7,61.9835,48.8220 +2012,6,14,19,30,36.4,1.56,0.159,0.61,144,884,998,0,0,12.4,144,884,0,998,0.31,23.62,14.97,0.92,0.2,883,2.3000000000000003,184,3.9000000000000004,47.0518,37.0578 +2012,6,14,20,30,36.7,1.57,0.161,0.61,140,865,923,0,0,11.700000000000001,140,865,0,923,0.311,22.27,25.080000000000002,0.92,0.2,882,2.4000000000000004,177,4.3,56.3915,44.3895 +2012,6,14,21,30,36.4,1.59,0.166,0.61,134,829,797,0,0,11.3,134,829,0,797,0.31,21.990000000000002,36.94,0.92,0.2,882,2.4000000000000004,171,4.9,47.7363,37.5314 +2012,6,14,22,30,35.5,1.6,0.167,0.61,122,772,627,0,9,11,262,22,0,276,0.31,22.62,49.160000000000004,0.92,0.2,882,2.5,167,5.300000000000001,36.2649,28.4445 +2012,6,14,23,30,33.9,1.6,0.169,0.61,105,679,431,0,9,11,95,2,0,96,0.309,24.77,61.34,0.93,0.2,882,2.5,161,5.5,23.3966,18.2585 +2012,6,15,0,30,31.400000000000002,1.59,0.168,0.61,77,521,228,0,9,12.100000000000001,68,2,0,69,0.309,30.79,73.23,0.93,0.2,882,2.5,156,5.6000000000000005,11.0245,8.4970 +2012,6,15,1,30,28.700000000000003,1.56,0.161,0.61,32,220,53,0,9,13.9,25,0,0,25,0.309,40.300000000000004,84.58,0.93,0.2,883,2.5,154,5.9,0.0000,0.0000 +2012,6,15,2,30,26.700000000000003,1.54,0.153,0.61,0,0,0,0,6,15.3,0,0,0,0,0.308,49.480000000000004,95.4,0.93,0.2,883,2.5,154,5.6000000000000005,0.0000,0.0000 +2012,6,15,3,30,25.200000000000003,1.52,0.151,0.61,0,0,0,0,6,16.3,0,0,0,0,0.307,57.96,104.98,0.92,0.2,884,2.4000000000000004,154,4.800000000000001,0.0000,0.0000 +2012,6,15,4,30,23.900000000000002,1.5,0.153,0.61,0,0,0,0,6,16.7,0,0,0,0,0.306,64.29,112.93,0.92,0.2,884,2.4000000000000004,154,4.1000000000000005,0.0000,0.0000 +2012,6,15,5,30,22.5,1.48,0.155,0.61,0,0,0,0,6,16.8,0,0,0,0,0.306,70.4,118.60000000000001,0.92,0.2,884,2.2,156,3.6,0.0000,0.0000 +2012,6,15,6,30,21.400000000000002,1.47,0.152,0.61,0,0,0,0,6,16.7,0,0,0,0,0.305,74.64,121.31,0.92,0.2,884,2.1,161,3.3000000000000003,0.0000,0.0000 +2012,6,15,7,30,20.3,1.47,0.147,0.61,0,0,0,0,6,16.5,0,0,0,0,0.304,78.82000000000001,120.64,0.92,0.2,884,2,166,3,0.0000,0.0000 +2012,6,15,8,30,19.400000000000002,1.47,0.146,0.61,0,0,0,0,7,16.3,0,0,0,0,0.304,82.25,116.7,0.92,0.2,884,2,168,3.1,0.0000,0.0000 +2012,6,15,9,30,18.6,1.46,0.147,0.61,0,0,0,0,7,16.1,0,0,0,0,0.304,85.15,110.05,0.92,0.2,885,2,165,3.4000000000000004,0.0000,0.0000 +2012,6,15,10,30,17.8,1.46,0.148,0.61,0,0,0,0,0,15.700000000000001,0,0,0,0,0.304,87.79,101.39,0.92,0.2,885,2,159,3.5,0.0000,0.0000 +2012,6,15,11,30,17.6,1.46,0.15,0.61,0,0,0,0,0,15.5,0,0,0,0,0.304,87.42,91.32000000000001,0.92,0.2,886,2,151,3.6,0.0000,0.0000 +2012,6,15,12,30,19,1.47,0.149,0.61,52,385,117,0,0,15.3,52,385,0,117,0.303,79.37,80.23,0.92,0.2,886,2,142,3.9000000000000004,0.0000,0.0000 +2012,6,15,13,30,21.700000000000003,1.47,0.145,0.61,85,627,313,0,0,15.100000000000001,85,627,0,313,0.303,66.04,68.62,0.92,0.2,887,2,139,4.3,15.8587,12.3013 +2012,6,15,14,30,24.6,1.46,0.14200000000000002,0.61,105,754,520,0,0,14.5,105,754,0,520,0.303,53.27,56.59,0.92,0.2,887,2,139,4.6000000000000005,28.7576,22.4990 +2012,6,15,15,30,27.1,1.46,0.14200000000000002,0.61,120,823,708,0,0,14.3,120,823,0,708,0.302,45.53,44.37,0.93,0.2,887,2.1,140,4.6000000000000005,41.4227,32.5276 +2012,6,15,16,30,29.200000000000003,1.45,0.14300000000000002,0.61,130,863,861,0,0,14.5,130,863,0,861,0.301,40.82,32.21,0.93,0.2,887,2.2,141,4.6000000000000005,51.8488,40.7884 +2012,6,15,17,30,30.5,1.44,0.148,0.61,139,880,961,0,0,14.8,139,880,0,961,0.301,38.5,20.740000000000002,0.93,0.2,887,2.4000000000000004,144,4.800000000000001,59.0451,46.4913 +2012,6,15,18,30,31.3,1.3900000000000001,0.146,0.61,141,887,1007,0,0,15.100000000000001,141,887,0,1007,0.3,37.58,12.52,0.9400000000000001,0.2,887,2.6,147,5,62.3545,49.1143 +2012,6,15,19,30,31.6,1.3900000000000001,0.156,0.61,145,874,990,0,0,15.5,145,874,0,990,0.299,37.96,14.91,0.9400000000000001,0.2,887,2.8000000000000003,150,5.1000000000000005,61.4657,48.4102 +2012,6,15,20,30,31.5,1.4000000000000001,0.166,0.61,145,850,915,0,0,16,145,850,0,915,0.298,39.27,25.02,0.9400000000000001,0.2,886,2.9000000000000004,152,5.2,56.3351,44.3453 +2012,6,15,21,30,31.200000000000003,1.26,0.128,0.61,121,844,797,0,0,16.3,121,844,0,797,0.298,40.800000000000004,36.88,0.9400000000000001,0.2,886,2.9000000000000004,152,5.2,47.7431,37.5372 +2012,6,15,22,30,30.5,1.26,0.122,0.61,108,797,630,0,0,16.400000000000002,108,797,0,630,0.297,42.730000000000004,49.1,0.9400000000000001,0.2,886,2.9000000000000004,152,5.300000000000001,15.9929,12.5444 +2012,6,15,23,30,29.400000000000002,1.26,0.11800000000000001,0.61,91,715,435,0,0,16.6,91,715,0,435,0.297,45.99,61.28,0.9400000000000001,0.2,886,2.9000000000000004,150,5.4,5.2498,4.0970 +2012,6,16,0,30,27.900000000000002,1.28,0.116,0.61,69,564,232,0,8,16.900000000000002,69,564,5,232,0.297,51.230000000000004,73.17,0.9400000000000001,0.2,886,2.9000000000000004,143,5.1000000000000005,3.4288,2.6430 +2012,6,16,1,30,26,1.31,0.111,0.61,31,259,56,0,6,17.5,37,22,0,39,0.297,59.58,84.52,0.93,0.2,887,2.8000000000000003,138,4.800000000000001,0.0000,0.0000 +2012,6,16,2,30,24.400000000000002,1.32,0.112,0.61,0,0,0,0,6,17.900000000000002,0,0,0,0,0.298,67.21000000000001,95.34,0.93,0.2,887,2.8000000000000003,142,4.800000000000001,0.0000,0.0000 +2012,6,16,3,30,23.200000000000003,1.32,0.128,0.61,0,0,0,0,6,18.2,0,0,0,0,0.299,73.47,104.92,0.9400000000000001,0.2,887,2.9000000000000004,156,4.3,0.0000,0.0000 +2012,6,16,4,30,22.200000000000003,1.33,0.165,0.61,0,0,0,0,6,18.5,0,0,0,0,0.3,79.54,112.88,0.9500000000000001,0.2,888,3,170,3.6,0.0000,0.0000 +2012,6,16,5,30,21.400000000000002,1.35,0.215,0.61,0,0,0,0,6,18.6,0,0,0,0,0.3,84.29,118.55,0.96,0.2,887,2.8000000000000003,173,3.3000000000000003,0.0000,0.0000 +2012,6,16,6,30,20.8,1.35,0.23700000000000002,0.61,0,0,0,0,6,18.6,0,0,0,0,0.3,87.13,121.27,0.96,0.2,887,2.6,173,3.3000000000000003,0.0000,0.0000 +2012,6,16,7,30,20.3,1.35,0.216,0.61,0,0,0,0,6,18.400000000000002,0,0,0,0,0.3,88.86,120.61,0.9500000000000001,0.2,887,2.6,182,3,0.0000,0.0000 +2012,6,16,8,30,19.8,1.35,0.187,0.61,0,0,0,0,6,18.1,0,0,0,0,0.3,89.85000000000001,116.69,0.9500000000000001,0.2,888,2.7,193,2.4000000000000004,0.0000,0.0000 +2012,6,16,9,30,19.3,1.37,0.17,0.61,0,0,0,0,6,17.6,0,0,0,0,0.298,90.03,110.05,0.9500000000000001,0.2,888,2.8000000000000003,202,1.5,0.0000,0.0000 +2012,6,16,10,30,18.8,1.3900000000000001,0.161,0.61,0,0,0,0,6,17.1,0,0,0,0,0.296,90.05,101.4,0.9400000000000001,0.2,889,2.7,210,1.1,0.0000,0.0000 +2012,6,16,11,30,19.400000000000002,1.42,0.15,0.61,0,0,0,0,7,16.7,0,0,0,0,0.295,84.16,91.34,0.9400000000000001,0.2,889,2.6,221,1.5,0.0000,0.0000 +2012,6,16,12,30,21.8,1.44,0.135,0.61,51,389,117,7,4,16.3,74,3,7,74,0.295,71.18,80.25,0.9400000000000001,0.2,889,2.5,227,2.4000000000000004,0.0000,0.0000 +2012,6,16,13,30,25.3,1.45,0.127,0.61,80,634,311,0,4,15.600000000000001,158,8,0,161,0.294,54.97,68.64,0.93,0.2,889,2.5,225,3.2,16.2187,12.5802 +2012,6,16,14,30,28.400000000000002,1.46,0.127,0.61,101,756,516,0,3,13.3,281,274,0,432,0.293,39.42,56.620000000000005,0.9400000000000001,0.2,889,2.5,219,3.4000000000000004,29.2025,22.8468 +2012,6,16,15,30,30.1,1.46,0.134,0.61,117,818,702,0,1,12.700000000000001,117,818,0,702,0.292,34.46,44.39,0.9400000000000001,0.2,890,2.6,210,2.9000000000000004,41.6545,32.7094 +2012,6,16,16,30,31.200000000000003,1.47,0.14400000000000002,0.61,131,852,851,0,7,13.100000000000001,254,632,0,789,0.291,33.25,32.24,0.9400000000000001,0.2,890,2.7,196,2.4000000000000004,52.0284,40.9296 +2012,6,16,17,30,32,1.47,0.152,0.61,141,867,952,0,0,13.600000000000001,141,867,0,952,0.291,32.77,20.76,0.9400000000000001,0.2,890,2.9000000000000004,181,2.2,58.9213,46.3939 +2012,6,16,18,30,32.2,1.48,0.16,0.61,148,871,998,0,0,14.100000000000001,148,871,0,998,0.291,33.49,12.5,0.9500000000000001,0.2,890,3,170,2.3000000000000003,62.1085,48.9206 +2012,6,16,19,30,31.700000000000003,1.45,0.177,0.61,155,854,981,0,0,14.600000000000001,155,854,0,981,0.291,35.5,14.86,0.96,0.2,890,3.2,165,2.8000000000000003,60.9753,48.0241 +2012,6,16,20,30,30.700000000000003,1.41,0.20700000000000002,0.61,164,816,904,0,0,15,164,816,0,904,0.291,38.7,24.96,0.96,0.2,890,3.3000000000000003,166,3.3000000000000003,55.8508,43.9642 +2012,6,16,21,30,29.5,1.3800000000000001,0.19,0.61,148,793,783,0,7,15.600000000000001,257,606,0,741,0.292,42.89,36.82,0.96,0.2,889,3.3000000000000003,169,3.6,47.7490,37.5421 +2012,6,16,22,30,28.3,1.3900000000000001,0.17400000000000002,0.61,128,749,619,7,3,16.1,128,749,5,619,0.293,47.43,49.04,0.9500000000000001,0.2,889,3.3000000000000003,170,3.5,36.5134,28.6404 +2012,6,16,23,30,27.1,1.3900000000000001,0.156,0.61,104,676,429,0,7,16.900000000000002,104,676,5,429,0.294,53.7,61.22,0.9500000000000001,0.2,889,3.1,164,2.9000000000000004,23.7971,18.5724 +2012,6,17,0,30,25.6,1.3900000000000001,0.138,0.61,74,542,231,0,7,18,145,169,0,194,0.296,62.870000000000005,73.11,0.9500000000000001,0.2,889,2.9000000000000004,155,2.3000000000000003,11.5350,8.8923 +2012,6,17,1,30,24.200000000000003,1.3800000000000001,0.127,0.61,33,245,56,0,6,18.400000000000002,40,40,0,44,0.297,69.95,84.46000000000001,0.9500000000000001,0.2,889,2.8000000000000003,152,2.2,0.0000,0.0000 +2012,6,17,2,30,23.1,1.36,0.123,0.61,0,0,0,0,6,18,0,0,0,0,0.298,73.21000000000001,95.28,0.9500000000000001,0.2,890,2.8000000000000003,160,2,0.0000,0.0000 +2012,6,17,3,30,22.3,1.35,0.133,0.61,0,0,0,0,6,18.1,0,0,0,0,0.298,77.21000000000001,104.86,0.9500000000000001,0.2,891,2.9000000000000004,174,1.4000000000000001,0.0000,0.0000 +2012,6,17,4,30,21.700000000000003,1.32,0.151,0.61,0,0,0,0,6,18.1,0,0,0,0,0.298,80.25,112.82000000000001,0.9500000000000001,0.2,891,3,188,1,0.0000,0.0000 +2012,6,17,5,30,21.200000000000003,1.31,0.156,0.61,0,0,0,0,6,17.900000000000002,0,0,0,0,0.299,81.62,118.51,0.9500000000000001,0.2,891,2.9000000000000004,198,1,0.0000,0.0000 +2012,6,17,6,30,20.700000000000003,1.29,0.155,0.61,0,0,0,0,7,17.7,0,0,0,0,0.3,82.72,121.24000000000001,0.9500000000000001,0.2,891,2.8000000000000003,205,1.1,0.0000,0.0000 +2012,6,17,7,30,20.200000000000003,1.28,0.153,0.61,0,0,0,0,4,17.400000000000002,0,0,0,0,0.3,84.07000000000001,120.59,0.9500000000000001,0.2,891,2.8000000000000003,210,1.4000000000000001,0.0000,0.0000 +2012,6,17,8,30,19.6,1.28,0.15,0.61,0,0,0,0,7,17.2,0,0,0,0,0.3,86.19,116.68,0.9500000000000001,0.2,890,2.7,214,1.6,0.0000,0.0000 +2012,6,17,9,30,19,1.29,0.153,0.61,0,0,0,0,7,17.1,0,0,0,0,0.3,88.61,110.05,0.9500000000000001,0.2,890,2.6,221,1.6,0.0000,0.0000 +2012,6,17,10,30,18.5,1.31,0.155,0.61,0,0,0,0,7,16.900000000000002,0,0,0,0,0.301,90.56,101.41,0.9500000000000001,0.2,890,2.6,228,1.6,0.0000,0.0000 +2012,6,17,11,30,18.8,1.31,0.153,0.61,0,0,0,0,7,16.8,0,0,0,0,0.303,88.14,91.36,0.9500000000000001,0.2,890,2.6,235,2.4000000000000004,0.0000,0.0000 +2012,6,17,12,30,20.5,1.32,0.146,0.61,53,368,115,7,7,16.7,65,8,7,66,0.304,78.96000000000001,80.27,0.9500000000000001,0.2,890,2.6,239,3.3000000000000003,0.0000,0.0000 +2012,6,17,13,30,23.5,1.33,0.135,0.61,84,619,309,0,0,16,84,619,0,309,0.306,62.690000000000005,68.67,0.9500000000000001,0.2,890,2.6,243,4.3,8.3411,6.4697 +2012,6,17,14,30,26.5,1.34,0.127,0.61,101,751,514,0,0,14.4,101,751,0,514,0.309,47.31,56.65,0.9400000000000001,0.2,889,2.6,245,5.2,24.2569,18.9773 +2012,6,17,15,30,28.700000000000003,1.36,0.122,0.61,112,828,704,0,0,13.4,112,828,0,704,0.311,38.96,44.43,0.9400000000000001,0.2,889,2.5,240,5.7,41.2992,32.4302 +2012,6,17,16,30,30.400000000000002,1.3800000000000001,0.121,0.61,121,871,858,0,0,13,121,871,0,858,0.313,34.43,32.27,0.9400000000000001,0.2,888,2.5,234,5.9,47.6752,37.5049 +2012,6,17,17,30,31.900000000000002,1.3900000000000001,0.122,0.61,127,894,963,0,0,12.9,127,894,0,963,0.315,31.37,20.78,0.9400000000000001,0.2,887,2.5,230,5.9,58.3684,45.9585 +2012,6,17,18,30,33.2,1.3900000000000001,0.114,0.61,125,912,1015,0,0,12.600000000000001,125,912,0,1015,0.317,28.71,12.49,0.93,0.2,886,2.4000000000000004,226,5.9,61.5540,48.4839 +2012,6,17,19,30,34.2,1.3800000000000001,0.114,0.61,125,912,1006,0,0,12.200000000000001,125,912,0,1006,0.318,26.490000000000002,14.81,0.93,0.2,885,2.3000000000000003,222,5.800000000000001,60.4229,47.5891 +2012,6,17,20,30,34.7,1.37,0.111,0.61,120,899,936,0,0,11.9,120,899,0,936,0.319,25.14,24.900000000000002,0.93,0.2,884,2.3000000000000003,218,5.7,55.1832,43.4389 +2012,6,17,21,30,34.7,1.34,0.105,0.61,111,877,813,0,0,11.5,111,877,0,813,0.319,24.55,36.77,0.93,0.2,883,2.2,213,5.6000000000000005,44.3994,34.9088 +2012,6,17,22,30,34.300000000000004,1.32,0.105,0.61,101,828,644,0,0,11.100000000000001,101,828,0,644,0.317,24.48,48.99,0.93,0.2,882,2.2,207,5.4,35.8834,28.1468 +2012,6,17,23,30,33.1,1.33,0.11,0.61,88,738,444,0,0,10.9,88,738,0,444,0.314,25.810000000000002,61.160000000000004,0.93,0.2,881,2.3000000000000003,198,5.2,23.4777,18.3237 +2012,6,18,0,30,30.900000000000002,1.36,0.11900000000000001,0.61,69,575,236,0,0,11.4,69,575,0,236,0.311,30.19,73.06,0.93,0.2,881,2.4000000000000004,188,5,9.6510,7.4407 +2012,6,18,1,30,28.400000000000002,1.4000000000000001,0.122,0.61,32,261,57,0,0,12.4,32,261,0,57,0.308,37.14,84.41,0.93,0.2,881,2.4000000000000004,181,5.1000000000000005,0.0000,0.0000 +2012,6,18,2,30,26.5,1.41,0.11800000000000001,0.61,0,0,0,0,1,12.8,0,0,0,0,0.305,42.75,95.23,0.93,0.2,881,2.3000000000000003,179,5.2,0.0000,0.0000 +2012,6,18,3,30,25.3,1.42,0.112,0.61,0,0,0,0,0,13.200000000000001,0,0,0,0,0.302,46.9,104.81,0.93,0.2,881,2.3000000000000003,182,5.1000000000000005,0.0000,0.0000 +2012,6,18,4,30,24.400000000000002,1.41,0.107,0.61,0,0,0,0,0,13,0,0,0,0,0.299,49.14,112.78,0.93,0.2,881,2.2,189,5.1000000000000005,0.0000,0.0000 +2012,6,18,5,30,23.6,1.42,0.101,0.61,0,0,0,0,0,12.700000000000001,0,0,0,0,0.298,50.31,118.47,0.93,0.2,881,2.1,196,5.1000000000000005,0.0000,0.0000 +2012,6,18,6,30,22.900000000000002,1.42,0.094,0.61,0,0,0,0,0,12.200000000000001,0,0,0,0,0.296,50.83,121.21000000000001,0.92,0.2,881,2,201,5.1000000000000005,0.0000,0.0000 +2012,6,18,7,30,22.200000000000003,1.41,0.08600000000000001,0.61,0,0,0,0,0,11.700000000000001,0,0,0,0,0.296,51.26,120.58,0.92,0.2,880,1.9000000000000001,204,5,0.0000,0.0000 +2012,6,18,8,30,21.700000000000003,1.3900000000000001,0.08,0.61,0,0,0,0,0,11.3,0,0,0,0,0.296,51.730000000000004,116.68,0.92,0.2,880,1.9000000000000001,207,5.2,0.0000,0.0000 +2012,6,18,9,30,21.200000000000003,1.35,0.077,0.61,0,0,0,0,0,11.4,0,0,0,0,0.296,53.59,110.06,0.91,0.2,880,1.8,210,5.300000000000001,0.0000,0.0000 +2012,6,18,10,30,20.5,1.31,0.074,0.61,0,0,0,0,0,12,0,0,0,0,0.296,58.06,101.43,0.91,0.2,879,1.7000000000000002,214,5,0.0000,0.0000 +2012,6,18,11,30,20.200000000000003,1.27,0.07200000000000001,0.61,0,0,0,0,0,12.5,0,0,0,0,0.297,61.42,91.39,0.91,0.2,879,1.6,216,4.7,0.0000,0.0000 +2012,6,18,12,30,21.700000000000003,1.25,0.069,0.61,41,504,126,0,0,12.9,41,504,0,126,0.297,57.410000000000004,80.3,0.91,0.2,879,1.5,220,4.9,0.0000,0.0000 +2012,6,18,13,30,24.900000000000002,1.24,0.066,0.61,63,736,330,0,0,12.700000000000001,63,736,0,330,0.297,46.57,68.71000000000001,0.9,0.2,879,1.4000000000000001,230,4.9,16.0046,12.4134 +2012,6,18,14,30,28.700000000000003,1.25,0.064,0.61,77,847,542,0,0,10.600000000000001,77,847,0,542,0.297,32.46,56.69,0.9,0.2,879,1.4000000000000001,242,4,28.8569,22.5758 +2012,6,18,15,30,32.300000000000004,1.26,0.062,0.61,86,910,735,0,0,7.7,86,910,0,735,0.297,21.8,44.46,0.9,0.2,879,1.4000000000000001,242,2.6,41.4121,32.5187 +2012,6,18,16,30,35.300000000000004,1.28,0.062,0.61,92,946,892,0,0,5.9,92,946,0,892,0.296,16.26,32.31,0.9,0.2,879,1.4000000000000001,210,1.9000000000000001,51.8420,40.7827 +2012,6,18,17,30,37.6,1.29,0.062,0.61,97,963,997,0,0,5,97,963,0,997,0.296,13.46,20.81,0.9,0.2,879,1.5,178,2.5,59.0418,46.4886 +2012,6,18,18,30,39,1.34,0.07100000000000001,0.61,103,965,1046,0,0,4.6000000000000005,103,965,0,1046,0.295,12.09,12.49,0.9,0.2,878,1.5,172,3.5,62.6029,49.3100 +2012,6,18,19,30,39.7,1.35,0.07100000000000001,0.61,102,964,1034,0,0,4.3,102,964,0,1034,0.295,11.41,14.77,0.9,0.2,877,1.5,171,4.3,61.9647,48.8035 +2012,6,18,20,30,39.900000000000006,1.36,0.07100000000000001,0.61,100,951,963,0,0,4,100,951,0,963,0.294,11.120000000000001,24.85,0.9,0.2,877,1.5,170,4.9,57.1406,44.9799 +2012,6,18,21,30,39.5,1.3800000000000001,0.081,0.61,99,917,834,0,0,4.1000000000000005,99,917,0,834,0.295,11.4,36.71,0.9,0.2,877,1.5,168,5.300000000000001,48.7185,38.3049 +2012,6,18,22,30,38.5,1.3900000000000001,0.082,0.61,90,867,660,0,0,4.3,90,867,0,660,0.296,12.23,48.94,0.9,0.2,876,1.6,164,5.7,37.3392,29.2891 +2012,6,18,23,30,36.6,1.3900000000000001,0.084,0.61,79,787,459,0,0,5.2,79,787,0,459,0.297,14.39,61.11,0.91,0.2,876,1.6,158,6,24.3076,18.9722 +2012,6,19,0,30,33.7,1.3900000000000001,0.088,0.61,61,636,247,0,0,7.5,61,636,0,247,0.298,19.78,73.01,0.91,0.2,877,1.7000000000000002,153,6.2,11.7459,9.0565 +2012,6,19,1,30,30.5,1.3800000000000001,0.092,0.61,30,315,61,0,0,10.100000000000001,30,315,0,61,0.3,28.32,84.37,0.91,0.2,878,1.8,152,6.5,0.0000,0.0000 +2012,6,19,2,30,28.400000000000002,1.35,0.098,0.61,0,0,0,0,0,12,0,0,0,0,0.301,36.300000000000004,95.18,0.92,0.2,878,1.9000000000000001,153,6.7,0.0000,0.0000 +2012,6,19,3,30,27.3,1.31,0.11,0.61,0,0,0,0,0,13.3,0,0,0,0,0.302,42.08,104.77,0.92,0.2,879,2,156,6.800000000000001,0.0000,0.0000 +2012,6,19,4,30,26.5,1.26,0.129,0.61,0,0,0,0,0,13.8,0,0,0,0,0.302,45.5,112.74000000000001,0.93,0.2,880,2.1,161,7.1000000000000005,0.0000,0.0000 +2012,6,19,5,30,25.700000000000003,1.22,0.15,0.61,0,0,0,0,0,14,0,0,0,0,0.301,48.480000000000004,118.44,0.93,0.2,880,2.2,167,7.5,0.0000,0.0000 +2012,6,19,6,30,24.700000000000003,1.2,0.162,0.61,0,0,0,0,0,14.200000000000001,0,0,0,0,0.301,51.9,121.19,0.9400000000000001,0.2,879,2.2,176,7.6000000000000005,0.0000,0.0000 +2012,6,19,7,30,23.700000000000003,1.19,0.162,0.61,0,0,0,0,0,14.100000000000001,0,0,0,0,0.301,54.95,120.57000000000001,0.9400000000000001,0.2,879,2.1,184,7.300000000000001,0.0000,0.0000 +2012,6,19,8,30,23,1.2,0.151,0.61,0,0,0,0,0,14,0,0,0,0,0.301,56.93,116.69,0.93,0.2,879,2.1,190,6.7,0.0000,0.0000 +2012,6,19,9,30,22.3,1.22,0.135,0.61,0,0,0,0,0,14,0,0,0,0,0.302,59.22,110.08,0.93,0.2,879,1.9000000000000001,192,6.1000000000000005,0.0000,0.0000 +2012,6,19,10,30,21.5,1.23,0.11900000000000001,0.61,0,0,0,0,0,14,0,0,0,0,0.304,62.24,101.46000000000001,0.92,0.2,879,1.8,188,5.300000000000001,0.0000,0.0000 +2012,6,19,11,30,21.200000000000003,1.21,0.108,0.61,0,0,0,0,0,14,0,0,0,0,0.306,63.61,91.42,0.92,0.2,880,1.6,182,4.9,0.0000,0.0000 +2012,6,19,12,30,22.5,1.21,0.10300000000000001,0.61,46,444,121,0,0,14.200000000000001,46,444,0,121,0.307,59.25,80.34,0.91,0.2,880,1.5,184,5.6000000000000005,0.0000,0.0000 +2012,6,19,13,30,25.1,1.22,0.10200000000000001,0.61,74,683,322,0,0,14.4,74,683,0,322,0.308,51.44,68.74,0.91,0.2,880,1.5,191,6.1000000000000005,17.0864,13.2519 +2012,6,19,14,30,28.200000000000003,1.24,0.10300000000000001,0.61,92,798,530,0,0,14.3,92,798,0,530,0.309,42.67,56.72,0.92,0.2,880,1.6,192,6,30.4228,23.8004 +2012,6,19,15,30,31.1,1.26,0.105,0.61,105,864,722,0,0,13.5,105,864,0,722,0.309,34.22,44.5,0.92,0.2,880,1.6,188,5.9,43.2319,33.9475 +2012,6,19,16,30,33.5,1.27,0.109,0.61,116,899,875,0,0,12.3,116,899,0,875,0.31,27.67,32.34,0.92,0.2,880,1.7000000000000002,182,5.9,53.8928,42.3958 +2012,6,19,17,30,35.2,1.28,0.114,0.61,123,913,976,0,0,11.5,123,913,0,976,0.31,23.830000000000002,20.84,0.92,0.2,880,1.9000000000000001,177,6.2,61.1246,48.1285 +2012,6,19,18,30,36.2,1.26,0.11,0.61,124,923,1025,0,0,11.200000000000001,124,923,0,1025,0.31,22.14,12.5,0.92,0.2,879,2,173,6.7,64.5149,50.8161 +2012,6,19,19,30,36.6,1.26,0.11,0.61,123,919,1011,0,0,11.3,123,919,0,1011,0.31,21.81,14.73,0.92,0.2,879,2.1,172,7.1000000000000005,63.6910,50.1632 +2012,6,19,20,30,36.7,1.27,0.109,0.61,119,903,938,0,0,11.4,119,903,0,938,0.31,21.78,24.810000000000002,0.92,0.2,878,2.2,172,7.4,58.7922,46.2802 +2012,6,19,21,30,36.4,1.27,0.106,0.61,111,877,814,0,0,11.4,111,877,0,814,0.31,22.14,36.67,0.92,0.2,878,2.2,171,7.6000000000000005,49.9830,39.2994 +2012,6,19,22,30,35.6,1.28,0.107,0.61,101,824,643,0,0,11.3,101,824,0,643,0.31,23.080000000000002,48.89,0.92,0.2,878,2.3000000000000003,170,7.7,38.2736,30.0224 +2012,6,19,23,30,34.300000000000004,1.25,0.108,0.61,87,740,446,0,0,11.4,87,740,0,446,0.31,24.84,61.06,0.92,0.2,878,2.3000000000000003,167,7.7,25.1366,19.6198 +2012,6,20,0,30,32.4,1.19,0.111,0.61,67,585,239,0,0,11.700000000000001,67,585,0,239,0.309,28.25,72.96000000000001,0.92,0.2,878,2.3000000000000003,162,7.4,12.2991,9.4838 +2012,6,20,1,30,30.200000000000003,1.1400000000000001,0.114,0.61,32,261,58,0,0,12.3,32,261,0,58,0.309,33.33,84.32000000000001,0.92,0.2,879,2.4000000000000004,158,7.2,0.0000,0.0000 +2012,6,20,2,30,28.3,1.12,0.116,0.61,0,0,0,0,0,12.8,0,0,0,0,0.309,38.31,95.14,0.93,0.2,879,2.4000000000000004,156,7.4,0.0000,0.0000 +2012,6,20,3,30,27.1,1.12,0.11900000000000001,0.61,0,0,0,0,0,13.200000000000001,0,0,0,0,0.309,42.18,104.73,0.93,0.2,880,2.5,157,7.4,0.0000,0.0000 +2012,6,20,4,30,26.1,1.1,0.122,0.61,0,0,0,0,0,13.5,0,0,0,0,0.308,45.78,112.71000000000001,0.93,0.2,880,2.5,161,7,0.0000,0.0000 +2012,6,20,5,30,25.3,1.09,0.128,0.61,0,0,0,0,0,13.9,0,0,0,0,0.308,49.2,118.42,0.93,0.2,881,2.5,167,6.7,0.0000,0.0000 +2012,6,20,6,30,24.6,1.09,0.135,0.61,0,0,0,0,0,14.200000000000001,0,0,0,0,0.307,52.21,121.18,0.93,0.2,881,2.5,174,6.5,0.0000,0.0000 +2012,6,20,7,30,23.900000000000002,1.11,0.14,0.61,0,0,0,0,0,14.3,0,0,0,0,0.307,55.06,120.57000000000001,0.93,0.2,881,2.4000000000000004,176,6.2,0.0000,0.0000 +2012,6,20,8,30,23.1,1.1400000000000001,0.14200000000000002,0.61,0,0,0,0,0,14.4,0,0,0,0,0.307,58.11,116.7,0.93,0.2,881,2.4000000000000004,177,5.9,0.0000,0.0000 +2012,6,20,9,30,22.3,1.17,0.146,0.61,0,0,0,0,0,14.5,0,0,0,0,0.307,61.33,110.10000000000001,0.93,0.2,881,2.3000000000000003,178,5.800000000000001,0.0000,0.0000 +2012,6,20,10,30,21.5,1.18,0.147,0.61,0,0,0,0,0,14.700000000000001,0,0,0,0,0.307,65.05,101.48,0.93,0.2,881,2.3000000000000003,180,5.6000000000000005,0.0000,0.0000 +2012,6,20,11,30,21.400000000000002,1.17,0.146,0.61,0,0,0,0,0,15,0,0,0,0,0.307,66.85,91.45,0.93,0.2,882,2.2,179,5.7,0.0000,0.0000 +2012,6,20,12,30,22.5,1.1500000000000001,0.145,0.61,52,365,113,0,0,15.5,52,365,0,113,0.307,64.73,80.38,0.93,0.2,882,2.2,181,6.300000000000001,0.0000,0.0000 +2012,6,20,13,30,24.5,1.12,0.146,0.61,87,608,307,0,0,16.2,87,608,0,307,0.308,60,68.78,0.93,0.2,883,2.2,187,6.7,16.6679,12.9269 +2012,6,20,14,30,26.8,1.08,0.148,0.61,109,734,512,0,3,16.6,303,62,0,337,0.308,53.5,56.77,0.93,0.2,883,2.2,191,6.300000000000001,29.7448,23.2697 +2012,6,20,15,30,29.200000000000003,1.06,0.152,0.61,126,803,699,0,0,16.5,126,803,0,699,0.306,46.18,44.54,0.93,0.2,883,2.3000000000000003,192,5.7,42.4624,33.3430 +2012,6,20,16,30,31.200000000000003,1.04,0.155,0.61,138,843,850,0,0,16.2,138,843,0,850,0.304,40.37,32.38,0.93,0.2,884,2.4000000000000004,190,5.1000000000000005,52.8630,41.5856 +2012,6,20,17,30,32.9,1.04,0.158,0.61,146,865,954,0,1,15.9,146,865,0,954,0.301,36.06,20.87,0.93,0.2,884,2.5,186,4.800000000000001,59.8355,47.1134 +2012,6,20,18,30,34.1,1.05,0.151,0.61,145,879,1004,0,0,15.600000000000001,145,879,0,1004,0.299,33.2,12.51,0.93,0.2,883,2.6,181,4.7,63.2193,49.7956 +2012,6,20,19,30,34.800000000000004,1.07,0.155,0.61,146,872,990,0,1,15.5,146,872,0,990,0.297,31.580000000000002,14.69,0.93,0.2,883,2.7,176,4.6000000000000005,62.2758,49.0487 +2012,6,20,20,30,35.2,1.08,0.159,0.61,145,852,919,0,0,15.3,145,852,0,919,0.296,30.62,24.76,0.9400000000000001,0.2,883,2.8000000000000003,170,4.6000000000000005,57.2686,45.0810 +2012,6,20,21,30,35,1.09,0.158,0.61,136,819,793,0,0,15.100000000000001,136,819,0,793,0.295,30.52,36.62,0.9400000000000001,0.2,883,2.9000000000000004,165,4.6000000000000005,48.7883,38.3603 +2012,6,20,22,30,34.300000000000004,1.1,0.163,0.61,126,760,626,0,0,14.8,126,760,0,626,0.293,31.01,48.84,0.9400000000000001,0.2,883,2.9000000000000004,161,4.6000000000000005,37.2943,29.2546 +2012,6,20,23,30,33.1,1.1,0.165,0.61,108,665,430,0,0,14.5,108,665,0,430,0.293,32.54,61.01,0.9400000000000001,0.2,883,3,155,4.4,24.4322,19.0706 +2012,6,21,0,30,31,1.1,0.167,0.61,81,501,229,0,0,14.700000000000001,81,501,0,229,0.293,37.24,72.91,0.9400000000000001,0.2,884,3,146,3.8000000000000003,11.9063,9.1816 +2012,6,21,1,30,28.5,1.07,0.161,0.61,36,196,55,0,0,15.3,36,196,0,55,0.294,44.78,84.28,0.9400000000000001,0.2,885,2.9000000000000004,135,3.4000000000000004,0.0000,0.0000 +2012,6,21,2,30,26.6,1.03,0.153,0.61,0,0,0,0,0,15.3,0,0,0,0,0.296,49.77,95.10000000000001,0.9400000000000001,0.2,886,3,126,3.5,0.0000,0.0000 +2012,6,21,3,30,25.400000000000002,0.99,0.148,0.61,0,0,0,0,0,15.3,0,0,0,0,0.297,53.45,104.7,0.9400000000000001,0.2,887,3,121,3.5,0.0000,0.0000 +2012,6,21,4,30,24.200000000000003,0.96,0.15,0.61,0,0,0,0,7,15.5,0,0,0,0,0.297,58.47,112.68,0.9400000000000001,0.2,888,3.1,118,3.2,0.0000,0.0000 +2012,6,21,5,30,23.200000000000003,0.97,0.158,0.61,0,0,0,0,6,15.9,0,0,0,0,0.296,63.660000000000004,118.4,0.9400000000000001,0.2,888,3.2,113,2.8000000000000003,0.0000,0.0000 +2012,6,21,6,30,22.400000000000002,0.97,0.166,0.61,0,0,0,0,6,16.400000000000002,0,0,0,0,0.294,68.9,121.17,0.9400000000000001,0.2,889,3.4000000000000004,103,2.5,0.0000,0.0000 +2012,6,21,7,30,21.6,0.97,0.17300000000000001,0.61,0,0,0,0,6,16.8,0,0,0,0,0.293,74.36,120.58,0.9400000000000001,0.2,889,3.4000000000000004,87,2.4000000000000004,0.0000,0.0000 +2012,6,21,8,30,20.900000000000002,0.97,0.178,0.61,0,0,0,0,6,17.2,0,0,0,0,0.291,79.3,116.72,0.9500000000000001,0.2,890,3.5,76,2.3000000000000003,0.0000,0.0000 +2012,6,21,9,30,20.3,0.97,0.18,0.61,0,0,0,0,6,17.400000000000002,0,0,0,0,0.289,83.47,110.13,0.9500000000000001,0.2,890,3.5,69,2.5,0.0000,0.0000 +2012,6,21,10,30,19.700000000000003,0.97,0.183,0.61,0,0,0,0,7,17.5,0,0,0,0,0.28800000000000003,87.26,101.52,0.9500000000000001,0.2,891,3.6,64,2.9000000000000004,0.0000,0.0000 +2012,6,21,11,30,19.5,0.98,0.195,0.61,0,0,0,0,7,17.5,0,0,0,0,0.28700000000000003,88.12,91.49,0.9500000000000001,0.2,892,3.6,63,3.6,0.0000,0.0000 +2012,6,21,12,30,20.400000000000002,1,0.23,0.61,62,247,103,7,7,17.2,68,7,7,69,0.28600000000000003,81.99,80.42,0.96,0.2,892,3.6,62,4,0.0000,0.0000 +2012,6,21,13,30,21.900000000000002,1.04,0.267,0.61,117,462,284,0,7,16.8,139,19,0,146,0.28500000000000003,73,68.83,0.96,0.2,893,3.6,58,4.2,15.8860,12.3199 +2012,6,21,14,30,23.700000000000003,1.07,0.279,0.61,153,597,480,0,8,16.5,222,24,0,235,0.28400000000000003,63.85,56.81,0.96,0.2,893,3.6,55,4.4,18.9084,14.7920 +2012,6,21,15,30,25.400000000000002,1.09,0.28,0.61,177,685,665,7,7,16.1,241,7,7,246,0.28300000000000003,56.25,44.59,0.96,0.2,893,3.5,54,4.3,41.1050,32.2768 +2012,6,21,16,30,27,1.11,0.279,0.61,192,740,816,0,3,15.700000000000001,230,0,0,230,0.28300000000000003,50.06,32.43,0.96,0.2,893,3.5,55,4.1000000000000005,51.3492,40.3946 +2012,6,21,17,30,28.400000000000002,1.12,0.281,0.61,202,770,921,0,3,15.5,341,1,0,342,0.28300000000000003,45.4,20.91,0.96,0.2,892,3.5,56,3.8000000000000003,58.4851,46.0500 +2012,6,21,18,30,29.200000000000003,1.18,0.234,0.61,184,812,977,0,3,15.3,481,35,0,515,0.28200000000000003,42.85,12.530000000000001,0.96,0.2,892,3.5,59,3.6,61.9238,48.7751 +2012,6,21,19,30,29.6,1.18,0.246,0.61,189,802,965,0,0,15.100000000000001,189,802,0,965,0.28200000000000003,41.43,14.67,0.97,0.2,891,3.5,63,3.5,60.9838,48.0311 +2012,6,21,20,30,29.700000000000003,1.18,0.253,0.61,187,780,895,0,1,15.100000000000001,187,780,0,895,0.28200000000000003,41.11,24.72,0.97,0.2,891,3.5,71,3.4000000000000004,56.1118,44.1705 +2012,6,21,21,30,29.5,1.19,0.257,0.61,178,741,773,0,1,15.100000000000001,178,741,0,773,0.28200000000000003,41.61,36.58,0.97,0.2,890,3.5,81,3.3000000000000003,47.5344,37.3747 +2012,6,21,22,30,29.1,1.19,0.261,0.61,162,678,609,0,0,15.200000000000001,162,678,0,609,0.28200000000000003,42.83,48.800000000000004,0.97,0.2,890,3.4000000000000004,94,3.2,36.3146,28.4865 +2012,6,21,23,30,28.3,1.19,0.257,0.61,136,581,418,0,0,15.4,136,581,0,418,0.28300000000000003,45.39,60.97,0.97,0.2,890,3.4000000000000004,107,3.2,23.5630,18.3927 +2012,6,22,0,30,27.200000000000003,1.18,0.248,0.61,98,419,221,0,0,15.700000000000001,98,419,0,221,0.28300000000000003,49.29,72.87,0.97,0.2,890,3.4000000000000004,118,3,11.4135,8.8022 +2012,6,22,1,30,25.8,1.17,0.243,0.61,39,137,53,0,0,16.2,39,137,0,53,0.28300000000000003,55.29,84.24,0.97,0.2,890,3.3000000000000003,124,2.8000000000000003,0.0000,0.0000 +2012,6,22,2,30,24.700000000000003,1.1500000000000001,0.232,0.61,0,0,0,0,0,16.7,0,0,0,0,0.28200000000000003,61.03,95.06,0.97,0.2,891,3.3000000000000003,127,2.9000000000000004,0.0000,0.0000 +2012,6,22,3,30,23.8,1.1400000000000001,0.212,0.61,0,0,0,0,0,17.1,0,0,0,0,0.281,66.03,104.67,0.96,0.2,891,3.2,130,3.2,0.0000,0.0000 +2012,6,22,4,30,22.8,1.11,0.194,0.61,0,0,0,0,0,17.5,0,0,0,0,0.28,72.13,112.66,0.96,0.2,891,3.2,133,3.2,0.0000,0.0000 +2012,6,22,5,30,21.900000000000002,1.08,0.177,0.61,0,0,0,0,0,17.900000000000002,0,0,0,0,0.279,77.97,118.39,0.96,0.2,891,3.2,137,3.1,0.0000,0.0000 +2012,6,22,6,30,21.200000000000003,1.04,0.162,0.61,0,0,0,0,0,18.1,0,0,0,0,0.279,82.67,121.17,0.96,0.2,890,3.1,141,3.1,0.0000,0.0000 +2012,6,22,7,30,20.5,1,0.152,0.61,0,0,0,0,0,18.3,0,0,0,0,0.278,87.35000000000001,120.59,0.96,0.2,890,3.1,145,3.2,0.0000,0.0000 +2012,6,22,8,30,20,0.97,0.148,0.61,0,0,0,0,0,18.5,0,0,0,0,0.278,90.9,116.74000000000001,0.97,0.2,890,3.1,148,3.3000000000000003,0.0000,0.0000 +2012,6,22,9,30,19.6,0.97,0.148,0.61,0,0,0,0,0,18.5,0,0,0,0,0.277,93.66,110.16,0.97,0.2,890,3.1,151,3.5,0.0000,0.0000 +2012,6,22,10,30,19.400000000000002,0.99,0.147,0.61,0,0,0,0,0,18.5,0,0,0,0,0.277,94.44,101.56,0.97,0.2,890,3.1,153,3.5,0.0000,0.0000 +2012,6,22,11,30,19.8,1.02,0.14,0.61,0,0,0,0,0,18.3,0,0,0,0,0.276,91.05,91.53,0.96,0.2,890,3,159,3.7,0.0000,0.0000 +2012,6,22,12,30,21.400000000000002,1.05,0.125,0.61,51,370,112,0,0,17.900000000000002,51,370,0,112,0.275,80.45,80.46000000000001,0.96,0.2,890,3,168,4.3,0.0000,0.0000 +2012,6,22,13,30,24.200000000000003,1.08,0.109,0.61,77,636,306,0,0,16.8,77,636,0,306,0.274,63.29,68.88,0.9500000000000001,0.2,890,2.9000000000000004,177,4.800000000000001,7.5516,5.8561 +2012,6,22,14,30,27,1.09,0.099,0.61,92,768,512,0,0,15.600000000000001,92,768,0,512,0.274,49.81,56.86,0.9500000000000001,0.2,890,2.9000000000000004,183,5,13.1827,10.3126 +2012,6,22,15,30,29.6,1.1,0.094,0.61,102,843,702,0,0,14.9,102,843,0,702,0.274,40.87,44.64,0.9500000000000001,0.2,890,2.8000000000000003,186,5.1000000000000005,14.4641,11.3575 +2012,6,22,16,30,31.8,1.11,0.09,0.61,108,887,856,0,0,14.4,108,887,0,856,0.275,34.94,32.480000000000004,0.9500000000000001,0.2,889,2.8000000000000003,187,5.2,13.8933,10.9293 +2012,6,22,17,30,33.6,1.12,0.088,0.61,112,911,963,0,0,14.100000000000001,112,911,0,963,0.275,30.830000000000002,20.96,0.9500000000000001,0.2,889,2.8000000000000003,186,5.2,20.9656,16.5078 +2012,6,22,18,30,34.9,1.08,0.083,0.61,112,924,1014,0,0,13.8,112,924,0,1014,0.276,28.22,12.55,0.9500000000000001,0.2,888,2.8000000000000003,185,5.2,31.7634,25.0188 +2012,6,22,19,30,35.6,1.08,0.082,0.61,111,923,1004,0,0,13.700000000000001,111,923,0,1004,0.276,26.89,14.65,0.9500000000000001,0.2,887,2.8000000000000003,183,5.300000000000001,59.4445,46.8189 +2012,6,22,20,30,35.800000000000004,1.1,0.08,0.61,107,913,936,0,0,13.5,107,913,0,936,0.277,26.3,24.69,0.9500000000000001,0.2,886,2.7,180,5.300000000000001,54.6490,43.0191 +2012,6,22,21,30,35.6,1.17,0.082,0.61,101,887,814,0,0,13.200000000000001,101,887,0,814,0.277,26.1,36.54,0.9400000000000001,0.2,886,2.6,177,5.4,46.3393,36.4352 +2012,6,22,22,30,34.9,1.19,0.079,0.61,91,846,649,0,0,12.8,91,846,0,649,0.276,26.35,48.76,0.9400000000000001,0.2,885,2.5,176,5.5,35.3333,27.7171 +2012,6,22,23,30,33.6,1.19,0.076,0.61,78,774,454,0,0,12.4,78,774,0,454,0.276,27.67,60.93,0.9400000000000001,0.2,885,2.4000000000000004,174,5.5,22.9110,17.8842 +2012,6,23,0,30,31.700000000000003,1.2,0.075,0.61,60,638,248,0,0,12.200000000000001,60,638,0,248,0.276,30.37,72.84,0.9400000000000001,0.2,885,2.3000000000000003,172,4.9,11.0188,8.4984 +2012,6,23,1,30,29.200000000000003,1.2,0.074,0.61,30,335,64,0,0,12.4,30,335,0,64,0.276,35.57,84.21000000000001,0.9400000000000001,0.2,886,2.2,167,4.2,0.0000,0.0000 +2012,6,23,2,30,27.1,1.2,0.074,0.61,0,0,0,0,0,12.9,0,0,0,0,0.276,41.46,95.03,0.93,0.2,886,2.2,163,4,0.0000,0.0000 +2012,6,23,3,30,25.8,1.22,0.074,0.61,0,0,0,0,0,13.3,0,0,0,0,0.277,46.13,104.64,0.93,0.2,886,2.1,164,4.3,0.0000,0.0000 +2012,6,23,4,30,24.8,1.24,0.074,0.61,0,0,0,0,0,13.8,0,0,0,0,0.277,50.35,112.64,0.93,0.2,886,2.1,168,4.5,0.0000,0.0000 +2012,6,23,5,30,23.8,1.26,0.075,0.61,0,0,0,0,0,14.100000000000001,0,0,0,0,0.278,54.47,118.38,0.93,0.2,886,2,173,4.5,0.0000,0.0000 +2012,6,23,6,30,23,1.27,0.077,0.61,0,0,0,0,0,14.200000000000001,0,0,0,0,0.278,57.57,121.18,0.93,0.2,886,2,179,4.6000000000000005,0.0000,0.0000 +2012,6,23,7,30,22.3,1.28,0.079,0.61,0,0,0,0,0,14.100000000000001,0,0,0,0,0.279,59.61,120.61,0.93,0.2,885,2,185,4.5,0.0000,0.0000 +2012,6,23,8,30,21.6,1.3,0.081,0.61,0,0,0,0,0,13.8,0,0,0,0,0.28,61.06,116.77,0.93,0.2,885,2,192,4.4,0.0000,0.0000 +2012,6,23,9,30,20.900000000000002,1.31,0.083,0.61,0,0,0,0,0,13.4,0,0,0,0,0.28,62.39,110.2,0.93,0.2,885,1.9000000000000001,198,4.1000000000000005,0.0000,0.0000 +2012,6,23,10,30,20.400000000000002,1.32,0.084,0.61,0,0,0,0,0,13.200000000000001,0,0,0,0,0.281,63.370000000000005,101.60000000000001,0.93,0.2,886,1.9000000000000001,204,3.9000000000000004,0.0000,0.0000 +2012,6,23,11,30,20.6,1.33,0.08600000000000001,0.61,0,0,0,0,0,13.100000000000001,0,0,0,0,0.28200000000000003,62.07,91.58,0.93,0.2,886,1.9000000000000001,209,4.1000000000000005,0.0000,0.0000 +2012,6,23,12,30,22.6,1.35,0.08700000000000001,0.61,44,459,119,0,0,13.200000000000001,44,459,0,119,0.28300000000000003,55.2,80.51,0.92,0.2,886,1.9000000000000001,214,4.7,0.0000,0.0000 +2012,6,23,13,30,26,1.36,0.088,0.61,70,690,318,0,0,13.5,70,690,0,318,0.28400000000000003,46.050000000000004,68.93,0.92,0.2,887,1.9000000000000001,218,5.7,15.8206,12.2678 +2012,6,23,14,30,29.3,1.3800000000000001,0.089,0.61,86,804,525,0,0,13.600000000000001,86,804,0,525,0.28400000000000003,38.230000000000004,56.910000000000004,0.92,0.2,887,1.9000000000000001,217,6.1000000000000005,28.7143,22.4621 +2012,6,23,15,30,31.8,1.3900000000000001,0.089,0.61,98,870,716,0,0,12.8,98,870,0,716,0.28400000000000003,31.35,44.69,0.92,0.2,887,1.9000000000000001,212,5.9,41.2696,32.4053 +2012,6,23,16,30,33.800000000000004,1.4000000000000001,0.088,0.61,105,910,873,0,0,11.9,105,910,0,873,0.28300000000000003,26.44,32.53,0.92,0.2,886,1.9000000000000001,208,5.7,51.7031,40.6725 +2012,6,23,17,30,35.4,1.4000000000000001,0.08600000000000001,0.61,109,934,981,0,0,11.100000000000001,109,934,0,981,0.28300000000000003,22.990000000000002,21.01,0.92,0.2,886,1.9000000000000001,203,5.5,59.0319,46.4803 +2012,6,23,18,30,36.5,1.3900000000000001,0.082,0.61,109,949,1035,0,0,10.3,109,949,0,1035,0.28200000000000003,20.48,12.58,0.92,0.2,886,1.8,199,5.5,62.5392,49.2598 +2012,6,23,19,30,37.2,1.4000000000000001,0.078,0.61,107,953,1029,0,0,9.3,107,953,0,1029,0.28200000000000003,18.5,14.63,0.92,0.2,885,1.7000000000000002,196,5.6000000000000005,61.8477,48.7117 +2012,6,23,20,30,37.4,1.4000000000000001,0.074,0.61,102,946,961,0,0,8.3,102,946,0,961,0.28200000000000003,17.05,24.650000000000002,0.91,0.2,884,1.6,194,5.6000000000000005,57.1544,44.9915 +2012,6,23,21,30,37.1,1.51,0.08700000000000001,0.61,102,913,835,0,0,7.300000000000001,102,913,0,835,0.28300000000000003,16.22,36.5,0.91,0.2,884,1.5,193,5.7,48.8011,38.3710 +2012,6,23,22,30,36.2,1.51,0.084,0.61,92,873,667,0,0,6.5,92,873,0,667,0.28400000000000003,16.12,48.72,0.91,0.2,884,1.4000000000000001,192,5.7,37.6593,29.5420 +2012,6,23,23,30,34.9,1.51,0.083,0.61,79,797,466,0,0,6,79,797,0,466,0.28600000000000003,16.69,60.9,0.91,0.2,884,1.4000000000000001,191,5.4,24.8903,19.4297 +2012,6,24,0,30,32.300000000000004,1.51,0.083,0.61,61,659,256,0,0,6.1000000000000005,61,659,0,256,0.28700000000000003,19.45,72.8,0.91,0.2,885,1.3,189,4.4,12.3685,9.5398 +2012,6,24,1,30,29,1.52,0.085,0.61,31,351,66,0,0,7.300000000000001,31,351,0,66,0.28800000000000003,25.490000000000002,84.18,0.91,0.2,885,1.3,186,3.5,0.0000,0.0000 +2012,6,24,2,30,26.700000000000003,1.53,0.08600000000000001,0.61,0,0,0,0,0,8,0,0,0,0,0.289,30.62,95.01,0.91,0.2,886,1.3,186,3.6,0.0000,0.0000 +2012,6,24,3,30,25.5,1.55,0.088,0.61,0,0,0,0,0,8,0,0,0,0,0.29,32.8,104.63,0.91,0.2,887,1.2000000000000002,189,3.9000000000000004,0.0000,0.0000 +2012,6,24,4,30,24.200000000000003,1.56,0.09,0.61,0,0,0,0,0,7.9,0,0,0,0,0.291,35.300000000000004,112.64,0.91,0.2,887,1.2000000000000002,194,3.9000000000000004,0.0000,0.0000 +2012,6,24,5,30,23,1.57,0.09,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.291,37.78,118.39,0.91,0.2,887,1.2000000000000002,199,3.8000000000000003,0.0000,0.0000 +2012,6,24,6,30,22,1.57,0.091,0.61,0,0,0,0,0,7.9,0,0,0,0,0.291,40.26,121.2,0.91,0.2,887,1.2000000000000002,204,3.6,0.0000,0.0000 +2012,6,24,7,30,21,1.56,0.091,0.61,0,0,0,0,0,8,0,0,0,0,0.292,43.160000000000004,120.64,0.91,0.2,887,1.2000000000000002,209,3.3000000000000003,0.0000,0.0000 +2012,6,24,8,30,20.200000000000003,1.55,0.09,0.61,0,0,0,0,0,8.1,0,0,0,0,0.292,45.81,116.81,0.91,0.2,888,1.2000000000000002,214,3.1,0.0000,0.0000 +2012,6,24,9,30,19.400000000000002,1.53,0.088,0.61,0,0,0,0,0,8.3,0,0,0,0,0.293,48.7,110.25,0.91,0.2,888,1.3,221,3,0.0000,0.0000 +2012,6,24,10,30,18.8,1.52,0.08600000000000001,0.61,0,0,0,0,0,8.5,0,0,0,0,0.293,51.14,101.65,0.91,0.2,888,1.3,230,2.8000000000000003,0.0000,0.0000 +2012,6,24,11,30,19.3,1.51,0.084,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.293,50.15,91.63,0.91,0.2,889,1.3,238,3.3000000000000003,0.0000,0.0000 +2012,6,24,12,30,21.5,1.5,0.082,0.61,43,488,123,0,0,8.9,43,488,0,123,0.294,44.44,80.56,0.91,0.2,889,1.2000000000000002,242,3.6,0.0000,0.0000 +2012,6,24,13,30,25.400000000000002,1.5,0.08,0.61,67,722,326,0,0,9.4,67,722,0,326,0.295,36.47,68.98,0.91,0.2,890,1.2000000000000002,243,3.9000000000000004,16.4339,12.7426 +2012,6,24,14,30,29.6,1.5,0.078,0.61,82,837,538,0,0,9.9,82,837,0,538,0.295,29.39,56.96,0.91,0.2,890,1.2000000000000002,240,4.4,29.4359,23.0261 +2012,6,24,15,30,32.6,1.5,0.077,0.61,92,901,733,0,0,9.200000000000001,92,901,0,733,0.296,23.64,44.74,0.91,0.2,890,1.2000000000000002,231,4.2,42.0866,33.0465 +2012,6,24,16,30,34.6,1.5,0.077,0.61,100,939,891,0,0,8.200000000000001,100,939,0,891,0.296,19.77,32.58,0.91,0.2,890,1.2000000000000002,216,3.8000000000000003,52.7255,41.4766 +2012,6,24,17,30,36.2,1.5,0.077,0.61,105,960,1001,0,0,7.300000000000001,105,960,0,1001,0.296,17,21.06,0.92,0.2,889,1.2000000000000002,202,3.8000000000000003,60.1324,47.3468 +2012,6,24,18,30,37.300000000000004,1.46,0.07200000000000001,0.61,105,973,1054,0,0,6.5,105,973,0,1054,0.296,15.17,12.620000000000001,0.92,0.2,889,1.2000000000000002,192,3.9000000000000004,63.8334,50.2791 +2012,6,24,19,30,38.1,1.48,0.075,0.61,106,969,1043,0,0,5.9,106,969,0,1043,0.296,13.93,14.63,0.92,0.2,888,1.2000000000000002,187,4.1000000000000005,63.3885,49.9253 +2012,6,24,20,30,38.300000000000004,1.5,0.079,0.61,105,953,972,0,0,5.5,105,953,0,972,0.296,13.370000000000001,24.63,0.93,0.2,888,1.2000000000000002,182,4.1000000000000005,58.6837,46.1954 +2012,6,24,21,30,38.1,1.47,0.077,0.61,99,926,843,0,0,5.300000000000001,99,926,0,843,0.295,13.39,36.47,0.93,0.2,887,1.3,179,4.1000000000000005,50.0641,39.3643 +2012,6,24,22,30,37.300000000000004,1.5,0.082,0.61,92,877,671,0,0,5.300000000000001,92,877,0,671,0.295,13.99,48.69,0.93,0.2,887,1.3,176,4,38.7092,30.3659 +2012,6,24,23,30,35.800000000000004,1.53,0.08700000000000001,0.61,81,795,468,0,0,5.4,81,795,0,468,0.295,15.26,60.870000000000005,0.93,0.2,887,1.3,173,3.6,25.5529,19.9473 +2012,6,25,0,30,32.7,1.56,0.092,0.61,64,648,256,0,0,6,64,648,0,256,0.295,18.95,72.77,0.93,0.2,888,1.3,170,2.5,12.7722,9.8519 +2012,6,25,1,30,28.700000000000003,1.59,0.097,0.61,32,336,66,0,0,9.5,32,336,0,66,0.295,30.14,84.15,0.93,0.2,888,1.3,170,1.8,0.0000,0.0000 +2012,6,25,2,30,26.5,1.61,0.1,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.295,34.46,94.99,0.93,0.2,889,1.3,173,1.9000000000000001,0.0000,0.0000 +2012,6,25,3,30,25.5,1.6300000000000001,0.10200000000000001,0.61,0,0,0,0,0,9.5,0,0,0,0,0.294,36.5,104.61,0.93,0.2,889,1.3,179,2,0.0000,0.0000 +2012,6,25,4,30,24.5,1.6400000000000001,0.10300000000000001,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.294,38.9,112.63,0.93,0.2,889,1.4000000000000001,188,2.1,0.0000,0.0000 +2012,6,25,5,30,23.5,1.6500000000000001,0.10300000000000001,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.293,41.35,118.4,0.92,0.2,889,1.4000000000000001,197,2.2,0.0000,0.0000 +2012,6,25,6,30,22.6,1.6500000000000001,0.101,0.61,0,0,0,0,0,9.5,0,0,0,0,0.293,43.46,121.22,0.92,0.2,889,1.4000000000000001,208,2.2,0.0000,0.0000 +2012,6,25,7,30,21.8,1.6400000000000001,0.098,0.61,0,0,0,0,0,9.4,0,0,0,0,0.292,45.2,120.68,0.92,0.2,889,1.3,218,2.2,0.0000,0.0000 +2012,6,25,8,30,21,1.62,0.095,0.61,0,0,0,0,0,9.200000000000001,0,0,0,0,0.292,46.95,116.85000000000001,0.92,0.2,890,1.3,228,2.1,0.0000,0.0000 +2012,6,25,9,30,20.400000000000002,1.61,0.092,0.61,0,0,0,0,0,9.1,0,0,0,0,0.292,48.18,110.3,0.92,0.2,890,1.3,238,2.1,0.0000,0.0000 +2012,6,25,10,30,19.900000000000002,1.59,0.088,0.61,0,0,0,0,0,8.9,0,0,0,0,0.291,49.22,101.7,0.92,0.2,890,1.3,248,2.1,0.0000,0.0000 +2012,6,25,11,30,20.8,1.57,0.085,0.61,0,0,0,0,0,8.8,0,0,0,0,0.29,46.11,91.69,0.92,0.2,890,1.3,257,2.5,0.0000,0.0000 +2012,6,25,12,30,23.400000000000002,1.55,0.083,0.61,43,483,121,0,0,8.700000000000001,43,483,0,121,0.289,39.02,80.62,0.92,0.2,890,1.3,263,3.1,0.0000,0.0000 +2012,6,25,13,30,27.200000000000003,1.54,0.08,0.61,67,718,324,0,0,8.700000000000001,67,718,0,324,0.289,31.220000000000002,69.04,0.92,0.2,890,1.3,263,3,16.8400,13.0568 +2012,6,25,14,30,31.400000000000002,1.53,0.078,0.61,82,834,536,0,0,9.200000000000001,82,834,0,536,0.289,25.240000000000002,57.02,0.92,0.2,890,1.3,247,2.4000000000000004,30.1572,23.5898 +2012,6,25,15,30,34.2,1.53,0.076,0.61,92,899,730,0,0,8.8,92,899,0,730,0.28800000000000003,21.080000000000002,44.800000000000004,0.92,0.2,890,1.3,216,2.1,43.0796,33.8259 +2012,6,25,16,30,36,1.53,0.074,0.61,99,938,889,0,0,8,99,938,0,889,0.28700000000000003,18.09,32.64,0.92,0.2,890,1.3,188,2.2,53.8081,42.3280 +2012,6,25,17,30,37.5,1.54,0.073,0.61,103,960,999,0,0,6.9,103,960,0,999,0.28600000000000003,15.4,21.11,0.92,0.2,889,1.3,173,2.6,61.3555,48.3096 +2012,6,25,18,30,38.5,1.58,0.079,0.61,108,965,1050,0,0,5.7,108,965,0,1050,0.28500000000000003,13.5,12.66,0.92,0.2,889,1.3,168,3.1,65.0039,51.2010 +2012,6,25,19,30,39.2,1.58,0.076,0.61,106,966,1040,0,0,4.800000000000001,106,966,0,1040,0.28400000000000003,12.15,14.620000000000001,0.92,0.2,888,1.3,167,3.4000000000000004,64.2510,50.6045 +2012,6,25,20,30,39.300000000000004,1.58,0.074,0.61,101,955,970,0,0,4,101,955,0,970,0.28300000000000003,11.41,24.6,0.91,0.2,887,1.3,166,3.7,59.3567,46.7253 +2012,6,25,21,30,39,1.6500000000000001,0.094,0.61,105,914,840,0,0,3.4000000000000004,105,914,0,840,0.28300000000000003,11.13,36.44,0.91,0.2,887,1.3,167,4,50.5468,39.7440 +2012,6,25,22,30,38.2,1.6400000000000001,0.09,0.61,94,871,669,0,0,3,94,871,0,669,0.28300000000000003,11.33,48.660000000000004,0.91,0.2,887,1.3,168,4.1000000000000005,38.9453,30.5514 +2012,6,25,23,30,36.800000000000004,1.6300000000000001,0.08600000000000001,0.61,80,798,469,0,0,2.9000000000000004,80,798,0,469,0.28300000000000003,12.11,60.84,0.91,0.2,887,1.3,169,3.9000000000000004,25.6673,20.0370 +2012,6,26,0,30,33.7,1.62,0.082,0.61,61,663,257,0,0,3.4000000000000004,61,663,0,257,0.28400000000000003,14.9,72.75,0.91,0.21,887,1.3,169,2.9000000000000004,12.7758,9.8551 +2012,6,26,1,30,29.8,1.61,0.079,0.61,30,366,68,0,0,6.7,30,366,0,68,0.28500000000000003,23.39,84.13,0.91,0.21,887,1.3,171,2.1,0.0000,0.0000 +2012,6,26,2,30,27.700000000000003,1.61,0.077,0.61,0,0,0,0,0,6.9,0,0,0,0,0.28600000000000003,26.830000000000002,94.98,0.91,0.21,887,1.3,173,2.4000000000000004,0.0000,0.0000 +2012,6,26,3,30,26.8,1.61,0.076,0.61,0,0,0,0,0,6.9,0,0,0,0,0.28600000000000003,28.21,104.61,0.91,0.21,887,1.3,176,2.7,0.0000,0.0000 +2012,6,26,4,30,25.900000000000002,1.61,0.076,0.61,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.28700000000000003,30.22,112.64,0.91,0.21,887,1.3,180,3.1,0.0000,0.0000 +2012,6,26,5,30,25,1.62,0.076,0.61,0,0,0,0,0,7.4,0,0,0,0,0.28800000000000003,32.62,118.41,0.91,0.21,887,1.3,185,3.3000000000000003,0.0000,0.0000 +2012,6,26,6,30,24,1.62,0.077,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.289,35.550000000000004,121.25,0.91,0.21,887,1.2000000000000002,190,3.4000000000000004,0.0000,0.0000 +2012,6,26,7,30,23.1,1.6300000000000001,0.079,0.61,0,0,0,0,0,8.200000000000001,0,0,0,0,0.289,38.52,120.72,0.9,0.21,887,1.3,195,3.3000000000000003,0.0000,0.0000 +2012,6,26,8,30,22.3,1.6400000000000001,0.082,0.61,0,0,0,0,0,8.5,0,0,0,0,0.29,41.34,116.9,0.91,0.21,887,1.3,201,3.2,0.0000,0.0000 +2012,6,26,9,30,21.5,1.6500000000000001,0.085,0.61,0,0,0,0,0,8.8,0,0,0,0,0.292,44.12,110.35000000000001,0.91,0.21,887,1.3,209,3,0.0000,0.0000 +2012,6,26,10,30,20.900000000000002,1.6600000000000001,0.089,0.61,0,0,0,0,0,8.9,0,0,0,0,0.292,46.27,101.76,0.91,0.21,887,1.4000000000000001,218,2.9000000000000004,0.0000,0.0000 +2012,6,26,11,30,21.400000000000002,1.67,0.093,0.61,0,0,0,0,0,8.9,0,0,0,0,0.293,44.87,91.74,0.91,0.21,887,1.4000000000000001,227,3.3000000000000003,0.0000,0.0000 +2012,6,26,12,30,23.6,1.68,0.096,0.61,44,462,118,0,0,8.8,44,462,0,118,0.293,38.83,80.68,0.91,0.21,888,1.4000000000000001,233,3.8000000000000003,0.0000,0.0000 +2012,6,26,13,30,27.5,1.68,0.099,0.61,71,693,319,0,0,8.700000000000001,71,693,0,319,0.294,30.6,69.09,0.91,0.21,888,1.4000000000000001,236,3.8000000000000003,16.7280,12.9690 +2012,6,26,14,30,32.300000000000004,1.69,0.10200000000000001,0.61,90,807,529,0,0,8.4,90,807,0,529,0.294,22.72,57.08,0.91,0.21,888,1.4000000000000001,234,4.1000000000000005,30.0359,23.4943 +2012,6,26,15,30,35.7,1.7,0.105,0.61,103,869,719,0,0,6.6000000000000005,103,869,0,719,0.294,16.72,44.86,0.91,0.21,888,1.5,230,4.4,42.8958,33.6812 +2012,6,26,16,30,37.6,1.71,0.108,0.61,113,907,876,0,0,5.800000000000001,113,907,0,876,0.293,14.22,32.7,0.91,0.21,887,1.5,223,4.6000000000000005,53.6819,42.2284 +2012,6,26,17,30,39.1,1.71,0.11,0.61,120,931,988,0,0,5,120,931,0,988,0.293,12.38,21.18,0.91,0.21,886,1.4000000000000001,216,4.9,61.2300,48.2107 +2012,6,26,18,30,40.1,1.72,0.109,0.61,122,942,1041,0,0,4.3,122,942,0,1041,0.293,11.16,12.71,0.91,0.21,886,1.4000000000000001,209,5.1000000000000005,64.7558,51.0055 +2012,6,26,19,30,40.7,1.71,0.106,0.61,120,942,1032,0,0,3.7,120,942,0,1032,0.293,10.42,14.63,0.91,0.21,885,1.4000000000000001,204,5.300000000000001,64.0666,50.4593 +2012,6,26,20,30,40.800000000000004,1.71,0.10400000000000001,0.61,116,930,962,0,0,3.5,116,930,0,962,0.292,10.17,24.580000000000002,0.91,0.21,884,1.4000000000000001,199,5.4,59.2366,46.6309 +2012,6,26,21,30,40.5,1.69,0.096,0.61,106,906,835,0,0,3.3000000000000003,106,906,0,835,0.292,10.19,36.42,0.91,0.21,884,1.5,194,5.4,50.3699,39.6051 +2012,6,26,22,30,39.6,1.69,0.095,0.61,96,861,665,0,0,3.1,96,861,0,665,0.292,10.55,48.63,0.91,0.21,884,1.5,190,5.2,38.8333,30.4637 +2012,6,26,23,30,38.300000000000004,1.69,0.095,0.61,83,783,464,0,0,2.9000000000000004,83,783,0,464,0.292,11.18,60.82,0.91,0.21,883,1.5,185,4.800000000000001,25.7269,20.0838 +2012,6,27,0,30,35.300000000000004,1.69,0.095,0.61,63,641,254,0,0,3.4000000000000004,63,641,0,254,0.293,13.61,72.73,0.91,0.21,884,1.5,179,3.6,12.8281,9.8957 +2012,6,27,1,30,31.8,1.69,0.095,0.61,31,337,66,0,0,5.7,31,337,0,66,0.293,19.48,84.12,0.91,0.21,884,1.6,173,2.9000000000000004,0.0000,0.0000 +2012,6,27,2,30,29.900000000000002,1.69,0.095,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.293,22.66,94.97,0.91,0.21,885,1.6,171,3.5,0.0000,0.0000 +2012,6,27,3,30,29,1.68,0.095,0.61,0,0,0,0,0,6.300000000000001,0,0,0,0,0.293,23.91,104.61,0.91,0.21,885,1.6,172,4.3,0.0000,0.0000 +2012,6,27,4,30,27.900000000000002,1.68,0.094,0.61,0,0,0,0,0,6.5,0,0,0,0,0.294,25.82,112.65,0.92,0.21,885,1.6,174,4.6000000000000005,0.0000,0.0000 +2012,6,27,5,30,26.700000000000003,1.67,0.094,0.61,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.294,27.89,118.43,0.92,0.21,885,1.6,177,4.7,0.0000,0.0000 +2012,6,27,6,30,25.700000000000003,1.6600000000000001,0.095,0.61,0,0,0,0,0,6.7,0,0,0,0,0.294,29.79,121.28,0.92,0.21,886,1.6,181,4.7,0.0000,0.0000 +2012,6,27,7,30,24.8,1.6600000000000001,0.096,0.61,0,0,0,0,0,6.9,0,0,0,0,0.295,31.87,120.76,0.92,0.21,886,1.7000000000000002,186,4.7,0.0000,0.0000 +2012,6,27,8,30,23.900000000000002,1.6600000000000001,0.098,0.61,0,0,0,0,0,7.300000000000001,0,0,0,0,0.295,34.53,116.96000000000001,0.92,0.21,886,1.7000000000000002,191,4.5,0.0000,0.0000 +2012,6,27,9,30,23.1,1.6600000000000001,0.101,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.296,37.35,110.41,0.92,0.21,886,1.7000000000000002,197,4.2,0.0000,0.0000 +2012,6,27,10,30,22.400000000000002,1.67,0.105,0.61,0,0,0,0,0,8,0,0,0,0,0.296,39.75,101.82000000000001,0.91,0.21,886,1.7000000000000002,204,3.8000000000000003,0.0000,0.0000 +2012,6,27,11,30,22.700000000000003,1.68,0.109,0.61,0,0,0,0,0,8.200000000000001,0,0,0,0,0.296,39.44,91.81,0.91,0.21,887,1.7000000000000002,210,3.8000000000000003,0.0000,0.0000 +2012,6,27,12,30,24.700000000000003,1.7,0.115,0.61,45,427,114,0,0,8.3,45,427,0,114,0.296,35.12,80.74,0.91,0.21,887,1.7000000000000002,215,4,0.0000,0.0000 +2012,6,27,13,30,28.400000000000002,1.72,0.122,0.61,77,654,309,0,0,8.5,77,654,0,309,0.296,28.69,69.16,0.91,0.21,888,1.8,217,3.8000000000000003,16.4626,12.7626 +2012,6,27,14,30,33,1.75,0.129,0.61,98,770,516,0,0,8.6,98,770,0,516,0.296,22.22,57.14,0.91,0.21,888,1.8,214,3.8000000000000003,29.6346,23.1797 +2012,6,27,15,30,36.9,1.77,0.135,0.61,114,836,706,0,0,7,114,836,0,706,0.296,16.06,44.92,0.91,0.21,888,1.8,206,3.7,42.2421,33.1674 +2012,6,27,16,30,39.1,1.8,0.14200000000000002,0.61,127,874,862,0,0,5.6000000000000005,127,874,0,862,0.296,12.9,32.76,0.91,0.21,887,1.8,193,3.5,52.8915,41.6064 +2012,6,27,17,30,40.5,1.82,0.149,0.61,136,894,970,0,0,4.9,136,894,0,970,0.296,11.4,21.240000000000002,0.91,0.21,887,1.8,178,3.6,60.5518,47.6765 +2012,6,27,18,30,41.400000000000006,1.79,0.14,0.61,135,911,1023,0,0,4.4,135,911,0,1023,0.296,10.51,12.77,0.91,0.21,886,1.8,166,3.9000000000000004,64.1990,50.5669 +2012,6,27,19,30,41.800000000000004,1.79,0.14,0.61,135,909,1014,0,0,4.2,135,909,0,1014,0.296,10.120000000000001,14.64,0.91,0.21,886,1.8,158,4.5,63.5733,50.0708 +2012,6,27,20,30,41.6,1.79,0.14,0.61,132,892,943,0,0,4.1000000000000005,132,892,0,943,0.296,10.19,24.57,0.92,0.21,886,1.9000000000000001,154,5,58.7494,46.2474 +2012,6,27,21,30,40.900000000000006,1.86,0.17400000000000002,0.61,137,837,811,0,0,4.2,137,837,0,811,0.296,10.66,36.39,0.92,0.21,885,2,152,5.5,50.0721,39.3710 +2012,6,27,22,30,39.800000000000004,1.84,0.17400000000000002,0.61,125,783,643,0,0,4.4,125,783,0,643,0.297,11.48,48.61,0.92,0.21,885,2,152,5.7,38.6051,30.2849 +2012,6,27,23,30,38.2,1.83,0.17200000000000001,0.61,106,694,444,0,0,4.7,106,694,0,444,0.297,12.76,60.800000000000004,0.92,0.21,886,2.1,153,5.7,25.4557,19.8724 +2012,6,28,0,30,35.800000000000004,1.82,0.169,0.61,78,543,240,0,0,5.2,78,543,0,240,0.297,15.06,72.71000000000001,0.92,0.21,886,2.1,152,5,12.6807,9.7823 +2012,6,28,1,30,32.800000000000004,1.82,0.167,0.61,34,252,60,0,0,6.5,34,252,0,60,0.297,19.43,84.11,0.92,0.21,887,2.1,151,4.1000000000000005,0.0000,0.0000 +2012,6,28,2,30,30.6,1.82,0.167,0.61,0,0,0,0,0,7.9,0,0,0,0,0.298,24.23,94.96000000000001,0.92,0.21,887,2.2,152,4.1000000000000005,0.0000,0.0000 +2012,6,28,3,30,29.200000000000003,1.83,0.17,0.61,0,0,0,0,0,8.9,0,0,0,0,0.297,28.2,104.61,0.92,0.21,888,2.2,154,4.3,0.0000,0.0000 +2012,6,28,4,30,28,1.83,0.178,0.61,0,0,0,0,0,9.8,0,0,0,0,0.296,31.98,112.66,0.92,0.21,888,2.3000000000000003,158,4.1000000000000005,0.0000,0.0000 +2012,6,28,5,30,26.900000000000002,1.83,0.188,0.61,0,0,0,0,0,10.3,0,0,0,0,0.295,35.42,118.46000000000001,0.93,0.21,888,2.3000000000000003,165,3.9000000000000004,0.0000,0.0000 +2012,6,28,6,30,26,1.83,0.196,0.61,0,0,0,0,0,10.700000000000001,0,0,0,0,0.295,38.18,121.33,0.93,0.21,888,2.3000000000000003,171,3.6,0.0000,0.0000 +2012,6,28,7,30,25.200000000000003,1.83,0.203,0.61,0,0,0,0,0,10.9,0,0,0,0,0.294,40.56,120.82000000000001,0.93,0.21,888,2.4000000000000004,177,3.3000000000000003,0.0000,0.0000 +2012,6,28,8,30,24.5,1.83,0.21,0.61,0,0,0,0,0,11,0,0,0,0,0.293,42.69,117.02,0.93,0.21,888,2.4000000000000004,184,3.1,0.0000,0.0000 +2012,6,28,9,30,23.700000000000003,1.83,0.217,0.61,0,0,0,0,0,11.3,0,0,0,0,0.293,45.57,110.48,0.93,0.21,888,2.4000000000000004,192,2.8000000000000003,0.0000,0.0000 +2012,6,28,10,30,22.8,1.83,0.224,0.61,0,0,0,0,0,11.600000000000001,0,0,0,0,0.293,49.27,101.89,0.93,0.21,889,2.4000000000000004,203,2.6,0.0000,0.0000 +2012,6,28,11,30,23,1.83,0.232,0.61,0,0,0,0,0,11.8,0,0,0,0,0.293,49.29,91.87,0.93,0.21,889,2.4000000000000004,217,2.8000000000000003,0.0000,0.0000 +2012,6,28,12,30,24.700000000000003,1.82,0.24,0.61,55,293,102,0,0,11.9,55,293,0,102,0.293,44.64,80.81,0.93,0.21,890,2.4000000000000004,228,3.1,0.0000,0.0000 +2012,6,28,13,30,28.200000000000003,1.82,0.244,0.61,104,526,291,0,0,11.8,104,526,0,291,0.293,36.22,69.22,0.9400000000000001,0.21,890,2.4000000000000004,238,3.5,15.9368,12.3539 +2012,6,28,14,30,32.4,1.81,0.245,0.61,135,660,493,0,0,11.100000000000001,135,660,0,493,0.293,27.240000000000002,57.2,0.9400000000000001,0.21,890,2.4000000000000004,246,4,28.8974,22.6025 +2012,6,28,15,30,35.800000000000004,1.81,0.243,0.61,156,743,681,0,0,9.8,156,743,0,681,0.293,20.6,44.980000000000004,0.9400000000000001,0.21,890,2.4000000000000004,241,3.2,41.4710,32.5616 +2012,6,28,16,30,38.2,1.81,0.23700000000000002,0.61,166,799,838,0,0,8.5,166,799,0,838,0.293,16.57,32.82,0.93,0.21,889,2.3000000000000003,210,2.2,52.0410,40.9371 +2012,6,28,17,30,39.7,1.83,0.229,0.61,171,833,947,0,0,7.800000000000001,171,833,0,947,0.294,14.6,21.31,0.93,0.21,889,2.3000000000000003,171,2.3000000000000003,59.4452,46.8050 +2012,6,28,18,30,40.6,1.82,0.20800000000000002,0.61,166,857,1002,0,0,7.6000000000000005,166,857,0,1002,0.294,13.65,12.83,0.93,0.21,888,2.3000000000000003,155,3,63.0869,49.6909 +2012,6,28,19,30,41,1.82,0.20400000000000001,0.61,164,857,993,0,0,7.5,164,857,0,993,0.294,13.32,14.65,0.93,0.21,888,2.3000000000000003,152,3.6,62.4641,49.1972 +2012,6,28,20,30,40.900000000000006,1.82,0.201,0.61,158,843,925,0,0,7.5,158,843,0,925,0.294,13.34,24.560000000000002,0.93,0.21,887,2.3000000000000003,153,4,57.5897,45.3346 +2012,6,28,21,30,40.5,1.8,0.177,0.61,140,829,807,0,0,7.300000000000001,140,829,0,807,0.293,13.5,36.38,0.93,0.21,887,2.2,156,4.3,48.6358,38.2418 +2012,6,28,22,30,39.5,1.8,0.17400000000000002,0.61,126,778,640,0,0,7.2,126,778,0,640,0.293,14.09,48.59,0.93,0.21,886,2.2,158,4.6000000000000005,37.3305,29.2852 +2012,6,28,23,30,38.1,1.8,0.171,0.61,106,692,444,0,0,7.1000000000000005,106,692,0,444,0.293,15.19,60.78,0.93,0.21,886,2.2,160,4.7,24.3614,19.0183 +2012,6,29,0,30,35.800000000000004,1.8,0.167,0.61,79,543,240,0,0,7.4,79,543,0,240,0.293,17.48,72.7,0.93,0.21,886,2.2,161,4.2,11.9840,9.2452 +2012,6,29,1,30,32.9,1.8,0.164,0.61,35,252,61,0,0,8.3,35,252,0,61,0.293,21.85,84.10000000000001,0.93,0.21,887,2.2,160,3.6,0.0000,0.0000 +2012,6,29,2,30,30.700000000000003,1.8,0.162,0.61,0,0,0,0,0,9.1,0,0,0,0,0.293,26.150000000000002,94.96000000000001,0.93,0.21,887,2.3000000000000003,162,3.7,0.0000,0.0000 +2012,6,29,3,30,29.400000000000002,1.79,0.164,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.293,29.38,104.62,0.93,0.21,888,2.4000000000000004,163,4,0.0000,0.0000 +2012,6,29,4,30,28.3,1.77,0.17200000000000001,0.61,0,0,0,0,0,10.5,0,0,0,0,0.293,33.02,112.68,0.93,0.21,888,2.6,165,4.3,0.0000,0.0000 +2012,6,29,5,30,27.3,1.76,0.184,0.61,0,0,0,0,4,11.200000000000001,0,0,0,0,0.292,36.75,118.5,0.9400000000000001,0.21,888,2.7,169,4.3,0.0000,0.0000 +2012,6,29,6,30,26.400000000000002,1.74,0.20600000000000002,0.61,0,0,0,0,3,11.700000000000001,0,0,0,0,0.291,39.87,121.38,0.9400000000000001,0.21,888,2.9000000000000004,175,4,0.0000,0.0000 +2012,6,29,7,30,25.8,1.69,0.252,0.61,0,0,0,0,3,11.8,0,0,0,0,0.29,41.78,120.88,0.9500000000000001,0.21,889,3,182,3.6,0.0000,0.0000 +2012,6,29,8,30,25.5,1.6400000000000001,0.301,0.61,0,0,0,0,8,11.9,0,0,0,0,0.289,42.61,117.09,0.96,0.21,889,3.1,188,3.2,0.0000,0.0000 +2012,6,29,9,30,25,1.6500000000000001,0.315,0.61,0,0,0,0,7,11.8,0,0,0,0,0.289,43.71,110.55,0.96,0.21,888,3.1,196,2.9000000000000004,0.0000,0.0000 +2012,6,29,10,30,24.5,1.67,0.306,0.61,0,0,0,0,7,11.700000000000001,0,0,0,0,0.289,44.730000000000004,101.96000000000001,0.96,0.21,888,3,204,2.8000000000000003,0.0000,0.0000 +2012,6,29,11,30,24.6,1.69,0.28600000000000003,0.61,0,0,0,0,0,11.5,0,0,0,0,0.28800000000000003,43.980000000000004,91.95,0.96,0.21,888,3,211,3.4000000000000004,0.0000,0.0000 +2012,6,29,12,30,26.1,1.68,0.272,0.61,59,254,99,0,0,11.3,59,254,0,99,0.28800000000000003,39.63,80.87,0.96,0.21,888,2.9000000000000004,219,4.4,0.0000,0.0000 +2012,6,29,13,30,28.6,1.6600000000000001,0.267,0.61,110,492,284,7,3,10.9,200,91,7,232,0.28800000000000003,33.25,69.29,0.96,0.21,888,2.9000000000000004,227,5.2,15.0006,11.6274 +2012,6,29,14,30,31.3,1.6500000000000001,0.263,0.61,142,633,485,0,3,10.200000000000001,267,29,0,283,0.28700000000000003,27.240000000000002,57.27,0.96,0.21,888,2.9000000000000004,231,5.2,27.6009,21.5878 +2012,6,29,15,30,33.9,1.6400000000000001,0.265,0.61,165,716,671,0,3,9.600000000000001,410,122,0,496,0.28700000000000003,22.59,45.050000000000004,0.96,0.21,887,2.9000000000000004,231,4.4,39.9955,31.4027 +2012,6,29,16,30,36.2,1.6500000000000001,0.259,0.61,178,772,826,7,3,9,380,500,7,800,0.28700000000000003,19.12,32.89,0.96,0.21,887,2.9000000000000004,224,3.4000000000000004,50.5869,39.7930 +2012,6,29,17,30,38,1.6600000000000001,0.245,0.61,181,809,935,7,3,8.5,441,459,7,868,0.28700000000000003,16.75,21.38,0.96,0.21,887,2.9000000000000004,209,2.9000000000000004,58.0318,45.6920 +2012,6,29,18,30,39.2,1.7,0.203,0.61,166,847,992,0,1,8.200000000000001,166,847,0,992,0.28600000000000003,15.36,12.9,0.9500000000000001,0.21,886,2.9000000000000004,193,3.2,61.7899,48.6691 +2012,6,29,19,30,39.900000000000006,1.73,0.184,0.61,157,859,988,0,0,8.1,157,859,0,988,0.28600000000000003,14.74,14.68,0.9500000000000001,0.21,885,2.8000000000000003,187,3.8000000000000003,61.1701,48.1780 +2012,6,29,20,30,40,1.75,0.17200000000000001,0.61,146,851,921,0,0,8.200000000000001,146,851,0,921,0.28600000000000003,14.77,24.560000000000002,0.9400000000000001,0.21,885,2.8000000000000003,186,4.2,56.4911,44.4697 +2012,6,29,21,30,39.7,1.76,0.167,0.61,136,826,801,0,0,8.200000000000001,136,826,0,801,0.28600000000000003,14.99,36.37,0.9400000000000001,0.21,884,2.7,187,4.5,48.3969,38.0540 +2012,6,29,22,30,38.900000000000006,1.78,0.17,0.61,125,772,636,0,0,8.1,125,772,0,636,0.28700000000000003,15.48,48.58,0.9400000000000001,0.21,884,2.6,187,4.6000000000000005,37.1589,29.1507 +2012,6,29,23,30,37.7,1.78,0.178,0.61,109,678,440,0,0,7.9,109,678,0,440,0.28800000000000003,16.330000000000002,60.77,0.9400000000000001,0.21,883,2.6,185,4.6000000000000005,24.3644,19.0209 +2012,6,30,0,30,35.5,1.78,0.193,0.61,84,509,235,0,3,7.9,84,509,5,235,0.28800000000000003,18.38,72.69,0.9400000000000001,0.21,883,2.6,179,4,11.9851,9.2462 +2012,6,30,1,30,32.800000000000004,1.77,0.21,0.61,37,208,58,0,6,8.5,28,0,0,28,0.289,22.27,84.10000000000001,0.9400000000000001,0.21,884,2.6,172,3.6,0.0000,0.0000 +2012,6,30,2,30,30.900000000000002,1.75,0.22,0.61,0,0,0,0,6,9,0,0,0,0,0.289,25.64,94.97,0.9400000000000001,0.21,884,2.7,167,4.3,0.0000,0.0000 +2012,6,30,3,30,29.400000000000002,1.74,0.218,0.61,0,0,0,0,7,9.5,0,0,0,0,0.289,28.87,104.63,0.9500000000000001,0.21,885,2.7,165,4.7,0.0000,0.0000 +2012,6,30,4,30,28,1.73,0.20600000000000002,0.61,0,0,0,0,7,9.9,0,0,0,0,0.289,32.26,112.71000000000001,0.9500000000000001,0.21,885,2.6,168,4.5,0.0000,0.0000 +2012,6,30,5,30,26.8,1.73,0.192,0.61,0,0,0,0,8,10,0,0,0,0,0.28800000000000003,34.800000000000004,118.54,0.9500000000000001,0.21,885,2.6,174,4.2,0.0000,0.0000 +2012,6,30,6,30,25.8,1.72,0.183,0.61,0,0,0,0,0,9.9,0,0,0,0,0.28700000000000003,36.63,121.43,0.9500000000000001,0.21,885,2.6,181,3.9000000000000004,0.0000,0.0000 +2012,6,30,7,30,25,1.71,0.178,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.28600000000000003,37.97,120.95,0.9500000000000001,0.21,885,2.6,188,3.6,0.0000,0.0000 +2012,6,30,8,30,24.3,1.7,0.179,0.61,0,0,0,0,3,9.600000000000001,0,0,0,0,0.28500000000000003,39.32,117.16,0.9500000000000001,0.21,885,2.6,194,3.3000000000000003,0.0000,0.0000 +2012,6,30,9,30,23.6,1.68,0.184,0.61,0,0,0,0,3,9.600000000000001,0,0,0,0,0.28300000000000003,41.1,110.63,0.9500000000000001,0.21,885,2.6,202,3,0.0000,0.0000 +2012,6,30,10,30,23.1,1.67,0.193,0.61,0,0,0,0,0,9.700000000000001,0,0,0,0,0.28200000000000003,42.730000000000004,102.04,0.9500000000000001,0.21,885,2.6,213,2.5,0.0000,0.0000 +2012,6,30,11,30,23.400000000000002,1.6600000000000001,0.209,0.61,0,0,0,0,0,9.9,0,0,0,0,0.28,42.38,92.02,0.9500000000000001,0.21,886,2.6,222,2.5,0.0000,0.0000 +2012,6,30,12,30,25.3,1.6500000000000001,0.224,0.61,56,289,102,0,0,10,56,289,0,102,0.279,38.1,80.95,0.9500000000000001,0.21,886,2.6,227,3,0.0000,0.0000 +2012,6,30,13,30,28.400000000000002,1.6600000000000001,0.229,0.61,103,528,289,0,1,10.4,103,528,0,289,0.278,32.62,69.36,0.9500000000000001,0.21,886,2.6,230,3.5,11.9519,9.2635 +2012,6,30,14,30,31.900000000000002,1.67,0.226,0.61,132,667,492,0,0,10.5,132,667,0,492,0.277,26.91,57.34,0.9500000000000001,0.21,886,2.6,232,3.1,15.8382,12.3873 +2012,6,30,15,30,34.9,1.67,0.228,0.61,152,747,679,0,0,9.8,152,747,0,679,0.277,21.66,45.12,0.9500000000000001,0.21,886,2.6,208,1.9000000000000001,29.1244,22.8668 +2012,6,30,16,30,37.1,1.67,0.233,0.61,168,792,832,0,0,9.200000000000001,168,792,0,832,0.277,18.48,32.96,0.9500000000000001,0.21,885,2.7,158,1.6,48.2872,37.9837 +2012,6,30,17,30,38.6,1.6600000000000001,0.23600000000000002,0.61,177,817,938,0,0,9.1,177,817,0,938,0.277,16.87,21.45,0.9500000000000001,0.21,885,2.8000000000000003,132,2.4000000000000004,53.1872,41.8773 +2012,6,30,18,30,39.5,1.67,0.26,0.61,191,814,984,0,0,9.3,191,814,0,984,0.278,16.240000000000002,12.98,0.9500000000000001,0.21,885,2.9000000000000004,136,3.3000000000000003,61.1709,48.1815 +2012,6,30,19,30,39.7,1.6600000000000001,0.271,0.61,195,804,973,0,0,9.5,195,804,0,973,0.279,16.38,14.71,0.96,0.21,884,3,143,3.8000000000000003,60.8609,47.9344 +2012,6,30,20,30,39.5,1.6300000000000001,0.29,0.61,197,773,900,0,1,9.9,197,773,0,900,0.28,16.93,24.560000000000002,0.96,0.21,883,3.1,149,4.2,56.2468,44.2774 +2012,6,30,21,30,38.800000000000004,1.6,0.3,0.61,189,729,776,0,3,10.200000000000001,459,109,0,547,0.281,17.93,36.36,0.96,0.21,883,3.2,152,4.5,48.0380,37.7719 +2012,6,30,22,30,37.800000000000004,1.59,0.307,0.61,173,663,612,0,0,10.4,173,663,0,612,0.281,19.21,48.57,0.96,0.21,883,3.2,154,4.800000000000001,36.9279,28.9696 +2012,6,30,23,30,36.5,1.58,0.292,0.61,142,573,422,0,8,10.600000000000001,247,114,0,303,0.28200000000000003,20.95,60.76,0.96,0.21,883,3.2,155,5.1000000000000005,24.1464,18.8508 +2012,7,1,0,30,34.7,1.6400000000000001,0.256,0.62,96,442,227,0,8,10.8,82,3,0,83,0.28200000000000003,23.48,72.69,0.9500000000000001,0.21,883,3.1,155,5.1000000000000005,11.7365,9.0545 +2012,7,1,1,30,32.4,1.67,0.22,0.62,38,191,57,0,6,11,30,1,0,30,0.28300000000000003,27.060000000000002,84.10000000000001,0.9500000000000001,0.21,884,3,155,4.6000000000000005,0.0000,0.0000 +2012,7,1,2,30,30.3,1.7,0.19,0.62,0,0,0,0,6,11,0,0,0,0,0.28400000000000003,30.400000000000002,94.98,0.9500000000000001,0.21,885,2.9000000000000004,156,4.1000000000000005,0.0000,0.0000 +2012,7,1,3,30,28.8,1.72,0.17300000000000001,0.62,0,0,0,0,8,10.700000000000001,0,0,0,0,0.28400000000000003,32.42,104.66,0.9500000000000001,0.21,885,2.9000000000000004,158,3.7,0.0000,0.0000 +2012,7,1,4,30,27.5,1.72,0.17200000000000001,0.62,0,0,0,0,8,10.5,0,0,0,0,0.28500000000000003,34.7,112.75,0.9500000000000001,0.21,886,2.9000000000000004,160,3.4000000000000004,0.0000,0.0000 +2012,7,1,5,30,26.400000000000002,1.7,0.187,0.62,0,0,0,0,7,10.700000000000001,0,0,0,0,0.28500000000000003,37.37,118.59,0.9500000000000001,0.21,886,2.9000000000000004,162,3.3000000000000003,0.0000,0.0000 +2012,7,1,6,30,25.5,1.6600000000000001,0.20400000000000001,0.62,0,0,0,0,1,11.200000000000001,0,0,0,0,0.28400000000000003,40.82,121.49000000000001,0.9500000000000001,0.21,886,2.9000000000000004,166,3.3000000000000003,0.0000,0.0000 +2012,7,1,7,30,24.400000000000002,1.6500000000000001,0.202,0.62,0,0,0,0,8,12.3,0,0,0,0,0.28300000000000003,46.92,121.02,0.9500000000000001,0.21,886,2.9000000000000004,170,3.4000000000000004,0.0000,0.0000 +2012,7,1,8,30,23.400000000000002,1.6500000000000001,0.19,0.62,0,0,0,0,4,13.8,0,0,0,0,0.28300000000000003,54.910000000000004,117.24000000000001,0.9500000000000001,0.21,887,2.9000000000000004,173,3.4000000000000004,0.0000,0.0000 +2012,7,1,9,30,22.6,1.6500000000000001,0.18,0.62,0,0,0,0,4,14.9,0,0,0,0,0.28300000000000003,61.63,110.71000000000001,0.9500000000000001,0.21,887,2.9000000000000004,173,3.5,0.0000,0.0000 +2012,7,1,10,30,22.1,1.6500000000000001,0.17400000000000002,0.62,0,0,0,0,7,15.4,0,0,0,0,0.28400000000000003,65.98,102.12,0.9400000000000001,0.21,887,2.9000000000000004,174,3.5,0.0000,0.0000 +2012,7,1,11,30,22.200000000000003,1.6500000000000001,0.17400000000000002,0.62,0,0,0,0,4,15.700000000000001,0,0,0,0,0.28500000000000003,66.68,92.10000000000001,0.9400000000000001,0.21,887,2.9000000000000004,177,3.9000000000000004,0.0000,0.0000 +2012,7,1,12,30,23.900000000000002,1.6400000000000001,0.176,0.62,51,323,102,0,0,15.9,51,323,0,102,0.28600000000000003,60.910000000000004,81.02,0.9500000000000001,0.21,888,2.9000000000000004,186,4.7,0.0000,0.0000 +2012,7,1,13,30,26.700000000000003,1.6400000000000001,0.178,0.62,91,566,290,0,4,15.9,76,0,0,76,0.28700000000000003,51.54,69.43,0.9500000000000001,0.21,888,2.9000000000000004,193,5.300000000000001,14.8792,11.5314 +2012,7,1,14,30,29.400000000000002,1.6500000000000001,0.181,0.62,117,694,491,0,0,15.700000000000001,117,694,0,491,0.28700000000000003,43.36,57.410000000000004,0.9500000000000001,0.21,888,3,189,5.1000000000000005,27.5250,21.5271 +2012,7,1,15,30,31.6,1.6500000000000001,0.184,0.62,135,768,677,0,0,15.200000000000001,135,768,0,677,0.28800000000000003,37.1,45.19,0.9500000000000001,0.21,888,3.1,180,4.800000000000001,39.8617,31.2967 +2012,7,1,16,30,33.300000000000004,1.6500000000000001,0.192,0.62,150,810,830,0,0,14.700000000000001,150,810,0,830,0.28700000000000003,32.62,33.03,0.9500000000000001,0.21,888,3.1,172,4.6000000000000005,50.2127,39.4980 +2012,7,1,17,30,34.6,1.6400000000000001,0.20400000000000001,0.62,163,828,934,0,0,14,163,828,0,934,0.28700000000000003,28.990000000000002,21.53,0.9500000000000001,0.21,888,3.2,165,4.6000000000000005,57.4726,45.2513 +2012,7,1,18,30,35.4,1.6300000000000001,0.211,0.62,170,836,984,0,0,13.200000000000001,170,836,0,984,0.28700000000000003,26.3,13.06,0.9500000000000001,0.21,887,3.2,159,4.6000000000000005,60.6749,47.7907 +2012,7,1,19,30,35.800000000000004,1.6400000000000001,0.219,0.62,173,830,975,0,0,12.3,173,830,0,975,0.28700000000000003,24.36,14.74,0.96,0.21,886,3.2,155,4.7,59.9358,47.2057 +2012,7,1,20,30,36.1,1.6600000000000001,0.215,0.62,166,818,910,0,0,11.5,166,818,0,910,0.28600000000000003,22.68,24.560000000000002,0.96,0.21,886,3.1,150,4.7,54.9643,43.2679 +2012,7,1,21,30,36,1.68,0.163,0.62,136,822,797,0,1,10.700000000000001,136,822,0,797,0.28600000000000003,21.6,36.35,0.9500000000000001,0.21,885,3,147,4.800000000000001,32.8057,25.7948 +2012,7,1,22,30,35.300000000000004,1.74,0.147,0.62,116,786,637,0,0,9.9,116,786,0,637,0.28600000000000003,21.36,48.56,0.9400000000000001,0.21,885,2.8000000000000003,145,4.9,35.5356,27.8775 +2012,7,1,23,30,34,1.8,0.138,0.62,97,711,444,0,0,9.5,97,711,0,444,0.28600000000000003,22.25,60.76,0.9400000000000001,0.21,885,2.7,145,5,16.6291,12.9822 +2012,7,2,0,30,32.2,1.85,0.134,0.62,72,572,242,0,0,9.3,72,572,0,242,0.28700000000000003,24.330000000000002,72.69,0.93,0.21,886,2.5,145,4.7,4.1452,3.1980 +2012,7,2,1,30,29.8,1.8900000000000001,0.132,0.62,32,281,61,0,1,9.600000000000001,32,281,0,61,0.28700000000000003,28.44,84.11,0.92,0.21,886,2.5,145,4.1000000000000005,0.0000,0.0000 +2012,7,2,2,30,27.900000000000002,1.92,0.132,0.62,0,0,0,0,0,10.3,0,0,0,0,0.28800000000000003,33.42,94.99,0.92,0.21,887,2.4000000000000004,148,3.9000000000000004,0.0000,0.0000 +2012,7,2,3,30,26.700000000000003,1.93,0.132,0.62,0,0,0,0,3,11.200000000000001,0,0,0,0,0.289,37.910000000000004,104.68,0.92,0.21,887,2.5,155,4,0.0000,0.0000 +2012,7,2,4,30,25.700000000000003,1.93,0.132,0.62,0,0,0,0,3,12.200000000000001,0,0,0,0,0.289,43.07,112.79,0.92,0.21,888,2.6,163,4.2,0.0000,0.0000 +2012,7,2,5,30,24.8,1.9100000000000001,0.132,0.62,0,0,0,0,8,13.200000000000001,0,0,0,0,0.29,48.38,118.64,0.92,0.21,888,2.6,171,4.1000000000000005,0.0000,0.0000 +2012,7,2,6,30,24,1.8900000000000001,0.133,0.62,0,0,0,0,7,13.8,0,0,0,0,0.291,52.97,121.56,0.92,0.21,888,2.7,178,3.8000000000000003,0.0000,0.0000 +2012,7,2,7,30,23.3,1.8800000000000001,0.137,0.62,0,0,0,0,7,14.100000000000001,0,0,0,0,0.291,56.33,121.10000000000001,0.92,0.21,888,2.7,184,3.4000000000000004,0.0000,0.0000 +2012,7,2,8,30,22.6,1.87,0.14400000000000002,0.62,0,0,0,0,7,14.200000000000001,0,0,0,0,0.292,59.050000000000004,117.33,0.93,0.21,888,2.8000000000000003,190,3.1,0.0000,0.0000 +2012,7,2,9,30,22,1.84,0.151,0.62,0,0,0,0,3,14.100000000000001,0,0,0,0,0.292,61.06,110.79,0.93,0.21,888,2.8000000000000003,195,2.9000000000000004,0.0000,0.0000 +2012,7,2,10,30,21.5,1.8,0.157,0.62,0,0,0,0,7,14.100000000000001,0,0,0,0,0.293,62.58,102.2,0.93,0.21,888,2.8000000000000003,200,2.9000000000000004,0.0000,0.0000 +2012,7,2,11,30,21.700000000000003,1.77,0.163,0.62,0,0,0,0,1,14,0,0,0,0,0.294,61.5,92.18,0.93,0.21,888,2.8000000000000003,203,3.4000000000000004,0.0000,0.0000 +2012,7,2,12,30,23.3,1.75,0.167,0.62,49,336,101,7,3,14,73,6,7,74,0.294,55.86,81.10000000000001,0.93,0.21,889,2.8000000000000003,211,4.6000000000000005,0.0000,0.0000 +2012,7,2,13,30,25.900000000000002,1.75,0.166,0.62,86,582,290,0,0,14.200000000000001,86,582,0,290,0.295,48.57,69.51,0.93,0.21,889,2.7,214,5.2,3.9105,3.0304 +2012,7,2,14,30,28.5,1.74,0.162,0.62,109,718,495,0,0,14.200000000000001,109,718,0,495,0.296,41.51,57.480000000000004,0.93,0.21,889,2.6,204,5.1000000000000005,27.4591,21.4749 +2012,7,2,15,30,30.6,1.72,0.16,0.62,123,796,683,0,0,13.8,123,796,0,683,0.296,36.02,45.26,0.92,0.21,889,2.6,191,5.1000000000000005,39.7360,31.1976 +2012,7,2,16,30,32.300000000000004,1.69,0.159,0.62,134,842,839,0,0,13.3,134,842,0,839,0.297,31.61,33.11,0.92,0.21,888,2.6,183,5.2,50.0860,39.3981 +2012,7,2,17,30,33.6,1.6600000000000001,0.159,0.62,141,868,947,0,0,12.8,141,868,0,947,0.297,28.36,21.61,0.92,0.21,888,2.6,179,5.4,57.2231,45.0546 +2012,7,2,18,30,34.6,1.6300000000000001,0.159,0.62,144,879,1000,0,0,12.4,144,879,0,1000,0.297,26.18,13.15,0.92,0.21,887,2.6,177,5.5,60.6723,47.7885 +2012,7,2,19,30,35.2,1.59,0.16,0.62,144,874,989,0,0,12.3,144,874,0,989,0.297,25.2,14.790000000000001,0.92,0.21,887,2.7,175,5.5,60.0579,47.3018 +2012,7,2,20,30,35.4,1.55,0.161,0.62,142,858,922,0,0,12.5,142,858,0,922,0.296,25.27,24.57,0.93,0.21,886,2.7,174,5.6000000000000005,55.5750,43.7486 +2012,7,2,21,30,35,1.53,0.166,0.62,136,823,799,0,0,12.700000000000001,136,823,0,799,0.295,26.12,36.35,0.93,0.21,886,2.7,174,5.6000000000000005,47.8000,37.5849 +2012,7,2,22,30,34.2,1.49,0.169,0.62,125,767,632,0,0,12.8,125,767,0,632,0.294,27.39,48.56,0.93,0.21,886,2.7,174,5.6000000000000005,36.9885,29.0173 +2012,7,2,23,30,32.9,1.47,0.171,0.62,107,675,437,0,0,12.8,107,675,0,437,0.294,29.57,60.76,0.93,0.21,886,2.7,175,5.5,24.3674,19.0234 +2012,7,3,0,30,31.1,1.46,0.17300000000000001,0.62,81,518,235,0,0,12.9,81,518,0,235,0.294,32.84,72.69,0.93,0.21,886,2.6,175,5.2,12.0861,9.3242 +2012,7,3,1,30,29.200000000000003,1.47,0.17500000000000002,0.62,36,218,58,0,0,13,36,218,0,58,0.294,36.83,84.12,0.93,0.21,886,2.6,174,4.7,0.0000,0.0000 +2012,7,3,2,30,27.6,1.48,0.177,0.62,0,0,0,0,0,13.100000000000001,0,0,0,0,0.294,40.81,95.02,0.93,0.21,887,2.6,170,4.2,0.0000,0.0000 +2012,7,3,3,30,26.5,1.48,0.181,0.62,0,0,0,0,0,13.3,0,0,0,0,0.294,43.99,104.72,0.93,0.21,887,2.6,167,4,0.0000,0.0000 +2012,7,3,4,30,25.700000000000003,1.47,0.189,0.62,0,0,0,0,0,13.5,0,0,0,0,0.295,46.800000000000004,112.83,0.93,0.21,888,2.7,167,3.9000000000000004,0.0000,0.0000 +2012,7,3,5,30,25.1,1.43,0.199,0.62,0,0,0,0,0,13.700000000000001,0,0,0,0,0.295,49.15,118.71000000000001,0.93,0.21,888,2.8000000000000003,172,3.9000000000000004,0.0000,0.0000 +2012,7,3,6,30,24.6,1.3800000000000001,0.20800000000000002,0.62,0,0,0,0,0,13.8,0,0,0,0,0.294,51.07,121.64,0.9400000000000001,0.21,888,2.9000000000000004,178,4,0.0000,0.0000 +2012,7,3,7,30,24.1,1.35,0.213,0.62,0,0,0,0,0,13.9,0,0,0,0,0.294,52.81,121.19,0.9400000000000001,0.21,888,3,183,3.9000000000000004,0.0000,0.0000 +2012,7,3,8,30,23.6,1.34,0.213,0.62,0,0,0,0,0,13.9,0,0,0,0,0.295,54.480000000000004,117.42,0.9400000000000001,0.21,888,3,186,3.8000000000000003,0.0000,0.0000 +2012,7,3,9,30,23.1,1.35,0.20600000000000002,0.62,0,0,0,0,0,13.9,0,0,0,0,0.295,56.32,110.88,0.9400000000000001,0.21,888,2.9000000000000004,188,3.7,0.0000,0.0000 +2012,7,3,10,30,22.5,1.36,0.199,0.62,0,0,0,0,0,14,0,0,0,0,0.295,58.72,102.29,0.9400000000000001,0.21,888,2.9000000000000004,190,3.5,0.0000,0.0000 +2012,7,3,11,30,22.5,1.37,0.196,0.62,0,0,0,0,0,14.100000000000001,0,0,0,0,0.295,59.120000000000005,92.26,0.9400000000000001,0.21,888,2.9000000000000004,190,3.8000000000000003,0.0000,0.0000 +2012,7,3,12,30,23.900000000000002,1.35,0.195,0.62,53,286,97,0,0,14.4,53,286,0,97,0.294,55.14,81.18,0.9400000000000001,0.21,889,2.9000000000000004,197,4.9,0.0000,0.0000 +2012,7,3,13,30,26.1,1.32,0.195,0.62,96,537,283,0,0,15.200000000000001,96,537,0,283,0.294,51.14,69.58,0.9400000000000001,0.21,889,2.9000000000000004,204,5.4,14.9110,11.5539 +2012,7,3,14,30,28.400000000000002,1.29,0.192,0.62,122,677,485,0,0,15.700000000000001,122,677,0,485,0.293,46.1,57.56,0.9400000000000001,0.21,889,2.9000000000000004,203,4.9,27.6728,21.6413 +2012,7,3,15,30,30.5,1.26,0.189,0.62,140,759,673,0,0,15.8,140,759,0,673,0.293,41,45.34,0.9500000000000001,0.21,888,3,194,4.4,40.0799,31.4671 +2012,7,3,16,30,32.2,1.21,0.189,0.62,153,807,828,0,0,15.600000000000001,153,807,0,828,0.293,36.84,33.19,0.9500000000000001,0.21,888,3,183,4.4,50.6221,39.8194 +2012,7,3,17,30,33.5,1.17,0.194,0.62,163,831,935,0,0,15.3,163,831,0,935,0.292,33.61,21.7,0.9500000000000001,0.21,887,3,176,4.7,58.0150,45.6780 +2012,7,3,18,30,34.300000000000004,1.16,0.217,0.62,178,827,983,0,0,15.200000000000001,178,827,0,983,0.292,31.98,13.24,0.96,0.21,887,3.1,175,5.1000000000000005,61.6558,48.5630 +2012,7,3,19,30,34.7,1.11,0.232,0.62,184,813,971,0,0,15.3,184,813,0,971,0.291,31.490000000000002,14.84,0.96,0.21,886,3.2,175,5.300000000000001,60.9183,47.9794 +2012,7,3,20,30,34.7,1.08,0.24,0.62,183,789,900,7,2,15.5,333,610,7,888,0.29,31.71,24.59,0.96,0.21,885,3.3000000000000003,176,5.5,56.3073,44.3250 +2012,7,3,21,30,34.2,1.05,0.228,0.62,168,761,781,0,0,15.4,168,761,0,781,0.29,32.52,36.36,0.96,0.21,885,3.3000000000000003,176,5.7,47.9200,37.6792 +2012,7,3,22,30,33.4,1.03,0.224,0.62,151,704,617,0,0,15.4,151,704,0,617,0.29,33.88,48.56,0.96,0.21,885,3.3000000000000003,177,5.800000000000001,36.6982,28.7895 +2012,7,3,23,30,32.5,1.02,0.21,0.62,125,618,426,0,0,15.3,125,618,0,426,0.29,35.53,60.76,0.96,0.21,885,3.3000000000000003,178,5.7,23.9832,18.7235 +2012,7,4,0,30,31.200000000000003,1.03,0.195,0.62,89,468,228,0,1,15.100000000000001,89,468,0,228,0.291,37.85,72.7,0.9500000000000001,0.21,885,3.2,178,5.2,11.7365,9.0545 +2012,7,4,1,30,29.700000000000003,1.06,0.178,0.62,38,183,57,0,2,14.9,52,37,0,55,0.291,40.72,84.13,0.9500000000000001,0.21,885,3.1,175,4.4,0.0000,0.0000 +2012,7,4,2,30,28.5,1.09,0.163,0.62,0,0,0,0,0,14.8,0,0,0,0,0.292,43.22,95.04,0.9500000000000001,0.21,885,3.1,172,3.9000000000000004,0.0000,0.0000 +2012,7,4,3,30,27.700000000000003,1.1,0.157,0.62,0,0,0,0,0,14.600000000000001,0,0,0,0,0.292,44.6,104.75,0.9500000000000001,0.21,886,3.1,175,3.9000000000000004,0.0000,0.0000 +2012,7,4,4,30,26.900000000000002,1.1,0.162,0.62,0,0,0,0,1,14.3,0,0,0,0,0.293,46.04,112.89,0.9500000000000001,0.21,886,3.2,179,3.9000000000000004,0.0000,0.0000 +2012,7,4,5,30,26.3,1.1,0.171,0.62,0,0,0,0,1,14.3,0,0,0,0,0.293,47.5,118.77,0.9500000000000001,0.21,886,3.2,182,4.2,0.0000,0.0000 +2012,7,4,6,30,25.6,1.1300000000000001,0.17,0.62,0,0,0,0,0,14.4,0,0,0,0,0.293,49.93,121.72,0.9500000000000001,0.21,886,3.2,184,4.5,0.0000,0.0000 +2012,7,4,7,30,25,1.16,0.164,0.62,0,0,0,0,0,14.700000000000001,0,0,0,0,0.293,52.800000000000004,121.28,0.9500000000000001,0.21,886,3.1,187,4.800000000000001,0.0000,0.0000 +2012,7,4,8,30,24.400000000000002,1.19,0.159,0.62,0,0,0,0,0,15.100000000000001,0,0,0,0,0.294,56.13,117.51,0.9500000000000001,0.21,886,3.1,190,4.800000000000001,0.0000,0.0000 +2012,7,4,9,30,23.700000000000003,1.23,0.16,0.62,0,0,0,0,1,15.4,0,0,0,0,0.295,59.730000000000004,110.98,0.9500000000000001,0.21,886,3.1,194,4.5,0.0000,0.0000 +2012,7,4,10,30,23.1,1.25,0.165,0.62,0,0,0,0,0,15.600000000000001,0,0,0,0,0.295,62.620000000000005,102.38,0.9500000000000001,0.21,886,3.1,195,4.1000000000000005,0.0000,0.0000 +2012,7,4,11,30,23.1,1.27,0.17,0.62,0,0,0,0,0,15.700000000000001,0,0,0,0,0.294,62.980000000000004,92.35000000000001,0.9500000000000001,0.21,887,3.2,195,4.1000000000000005,0.0000,0.0000 +2012,7,4,12,30,24.6,1.28,0.17,0.62,51,301,97,0,0,15.700000000000001,51,301,0,97,0.294,57.620000000000005,81.26,0.9500000000000001,0.21,887,3.1,198,5,0.0000,0.0000 +2012,7,4,13,30,27,1.28,0.161,0.62,88,566,285,0,0,15.8,88,566,0,285,0.294,50.24,69.67,0.9500000000000001,0.21,887,3.1,202,5.5,14.5421,11.2671 +2012,7,4,14,30,29.5,1.29,0.14400000000000002,0.62,106,718,491,0,0,15.8,106,718,0,491,0.295,43.550000000000004,57.64,0.9500000000000001,0.21,887,3,198,5.2,27.1024,21.1944 +2012,7,4,15,30,31.6,1.3,0.128,0.62,114,808,681,0,0,15.600000000000001,114,808,0,681,0.295,38.14,45.42,0.9400000000000001,0.21,887,3,188,5.1000000000000005,39.4837,30.9985 +2012,7,4,16,30,33.4,1.31,0.117,0.62,119,861,838,0,0,15.100000000000001,119,861,0,838,0.296,33.43,33.27,0.9400000000000001,0.21,887,3,180,5.300000000000001,49.9515,39.2916 +2012,7,4,17,30,34.800000000000004,1.32,0.11,0.62,121,891,948,0,0,14.5,121,891,0,948,0.296,29.75,21.78,0.9400000000000001,0.21,886,3,175,5.7,57.2748,45.0950 +2012,7,4,18,30,35.9,1.31,0.10300000000000001,0.62,120,906,1002,0,0,14,120,906,0,1002,0.296,27.09,13.34,0.9400000000000001,0.21,886,3,174,6,60.6046,47.7349 +2012,7,4,19,30,36.6,1.29,0.099,0.62,118,907,995,0,0,13.700000000000001,118,907,0,995,0.297,25.44,14.89,0.9400000000000001,0.21,885,3,173,6.2,59.8077,47.1046 +2012,7,4,20,30,36.800000000000004,1.26,0.098,0.62,114,894,927,0,0,13.4,114,894,0,927,0.297,24.810000000000002,24.61,0.9400000000000001,0.21,885,3,173,6.300000000000001,54.2296,42.6894 +2012,7,4,21,30,36.5,1.43,0.14400000000000002,0.62,128,831,797,0,0,13.4,128,831,0,797,0.297,25.14,36.37,0.9400000000000001,0.21,884,3.1,173,6.300000000000001,46.8395,36.8296 +2012,7,4,22,30,35.6,1.37,0.154,0.62,121,768,629,0,0,13.4,121,768,0,629,0.297,26.48,48.57,0.9500000000000001,0.21,884,3.2,174,6.2,35.8272,28.1063 +2012,7,4,23,30,34.2,1.34,0.165,0.62,107,667,433,0,0,13.600000000000001,107,667,0,433,0.297,28.93,60.77,0.9500000000000001,0.21,884,3.3000000000000003,175,6,23.3795,18.2522 +2012,7,5,0,30,32.7,1.33,0.17400000000000002,0.62,82,499,231,0,0,13.9,82,499,0,231,0.297,32.17,72.72,0.9500000000000001,0.22,885,3.4000000000000004,175,5.7,11.3859,8.7839 +2012,7,5,1,30,31.1,1.34,0.182,0.62,37,193,56,0,1,14.3,37,193,0,56,0.298,36.06,84.16,0.9500000000000001,0.22,885,3.4000000000000004,174,5.2,0.0000,0.0000 +2012,7,5,2,30,29.8,1.36,0.19,0.62,0,0,0,0,2,14.700000000000001,0,0,0,0,0.298,39.730000000000004,95.07000000000001,0.9500000000000001,0.22,886,3.4000000000000004,173,4.6000000000000005,0.0000,0.0000 +2012,7,5,3,30,28.700000000000003,1.36,0.203,0.62,0,0,0,0,3,14.9,0,0,0,0,0.299,42.910000000000004,104.8,0.9500000000000001,0.22,886,3.4000000000000004,174,4.1000000000000005,0.0000,0.0000 +2012,7,5,4,30,27.6,1.34,0.214,0.62,0,0,0,0,3,15,0,0,0,0,0.299,46.2,112.94,0.9500000000000001,0.22,887,3.4000000000000004,177,3.6,0.0000,0.0000 +2012,7,5,5,30,26.700000000000003,1.31,0.221,0.62,0,0,0,0,4,15.200000000000001,0,0,0,0,0.299,49.28,118.85000000000001,0.9500000000000001,0.22,887,3.4000000000000004,182,3.4000000000000004,0.0000,0.0000 +2012,7,5,6,30,25.900000000000002,1.29,0.22,0.62,0,0,0,0,3,15.5,0,0,0,0,0.298,52.61,121.81,0.9500000000000001,0.22,887,3.3000000000000003,188,3.3000000000000003,0.0000,0.0000 +2012,7,5,7,30,25.200000000000003,1.3,0.212,0.62,0,0,0,0,0,15.8,0,0,0,0,0.298,55.93,121.38,0.9500000000000001,0.22,887,3.3000000000000003,193,3,0.0000,0.0000 +2012,7,5,8,30,24.5,1.33,0.2,0.62,0,0,0,0,0,16,0,0,0,0,0.298,59.25,117.62,0.96,0.22,887,3.2,196,2.8000000000000003,0.0000,0.0000 +2012,7,5,9,30,23.700000000000003,1.3900000000000001,0.189,0.62,0,0,0,0,0,16.2,0,0,0,0,0.299,62.72,111.08,0.96,0.22,887,3.2,194,2.7,0.0000,0.0000 +2012,7,5,10,30,23,1.44,0.18,0.62,0,0,0,0,0,16.2,0,0,0,0,0.299,65.51,102.48,0.96,0.22,888,3.2,192,2.7,0.0000,0.0000 +2012,7,5,11,30,22.900000000000002,1.49,0.17400000000000002,0.62,0,0,0,0,0,16.2,0,0,0,0,0.298,65.76,92.44,0.96,0.22,888,3.1,192,3.3000000000000003,0.0000,0.0000 +2012,7,5,12,30,24.3,1.53,0.171,0.62,50,311,97,0,0,16.2,50,311,0,97,0.298,60.44,81.35000000000001,0.96,0.22,889,3,197,4.4,0.0000,0.0000 +2012,7,5,13,30,26.6,1.55,0.165,0.62,88,569,285,0,0,15.8,88,569,0,285,0.298,51.68,69.75,0.9500000000000001,0.22,889,3,201,5.1000000000000005,14.6332,11.3365 +2012,7,5,14,30,29.1,1.59,0.153,0.62,108,716,490,0,0,15.100000000000001,108,716,0,490,0.298,42.68,57.72,0.9500000000000001,0.22,889,2.9000000000000004,195,5,27.4262,21.4468 +2012,7,5,15,30,31.400000000000002,1.61,0.138,0.62,117,806,682,0,0,14.4,117,806,0,682,0.298,35.57,45.49,0.9400000000000001,0.22,889,2.8000000000000003,185,5,39.9435,31.3589 +2012,7,5,16,30,33.4,1.6300000000000001,0.123,0.62,121,864,843,0,0,13.4,121,864,0,843,0.298,29.8,33.35,0.9400000000000001,0.22,888,2.7,175,5.4,50.5478,39.7603 +2012,7,5,17,30,34.9,1.6300000000000001,0.111,0.62,121,899,956,0,0,12.3,121,899,0,956,0.299,25.5,21.88,0.9400000000000001,0.22,888,2.6,170,5.800000000000001,58.0666,45.7182 +2012,7,5,18,30,35.9,1.6400000000000001,0.114,0.62,125,908,1008,0,0,11.200000000000001,125,908,0,1008,0.3,22.53,13.44,0.9400000000000001,0.22,887,2.6,170,6.2,61.7725,48.6546 +2012,7,5,19,30,36.4,1.6400000000000001,0.11,0.62,123,909,1001,0,0,10.5,123,909,0,1001,0.3,20.84,14.96,0.9400000000000001,0.22,887,2.6,171,6.4,61.2840,48.2673 +2012,7,5,20,30,36.4,1.62,0.109,0.62,119,894,932,0,0,10,119,894,0,932,0.301,20.26,24.63,0.9400000000000001,0.22,887,2.7,173,6.6000000000000005,56.6100,44.5632 +2012,7,5,21,30,35.9,1.61,0.11,0.62,114,865,810,0,0,9.9,114,865,0,810,0.301,20.650000000000002,36.38,0.9500000000000001,0.22,886,2.7,174,6.7,47.7981,37.5833 +2012,7,5,22,30,34.9,1.58,0.111,0.62,104,814,642,0,0,10,104,814,0,642,0.301,21.97,48.58,0.9500000000000001,0.22,886,2.8000000000000003,175,6.800000000000001,36.5227,28.6518 +2012,7,5,23,30,33.4,1.55,0.112,0.62,90,731,446,0,0,10.3,90,731,0,446,0.301,24.28,60.78,0.9500000000000001,0.22,887,2.8000000000000003,176,6.6000000000000005,23.7622,18.5509 +2012,7,6,0,30,31.6,1.52,0.11,0.62,68,586,242,0,0,10.5,68,586,0,242,0.302,27.28,72.74,0.9500000000000001,0.22,887,2.8000000000000003,177,6.1000000000000005,11.5335,8.8975 +2012,7,6,1,30,29.700000000000003,1.5,0.10400000000000001,0.62,32,292,62,0,0,10.8,32,292,0,62,0.303,31,84.18,0.9500000000000001,0.22,888,2.7,177,5.1000000000000005,0.0000,0.0000 +2012,7,6,2,30,27.900000000000002,1.49,0.098,0.62,0,0,0,0,0,11.3,0,0,0,0,0.303,35.57,95.11,0.9400000000000001,0.22,888,2.7,176,4.3,0.0000,0.0000 +2012,7,6,3,30,26.6,1.49,0.093,0.62,0,0,0,0,0,11.9,0,0,0,0,0.303,40.11,104.85000000000001,0.9400000000000001,0.22,889,2.7,178,4,0.0000,0.0000 +2012,7,6,4,30,25.5,1.51,0.09,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.302,44.71,113.01,0.9400000000000001,0.22,889,2.7,183,3.8000000000000003,0.0000,0.0000 +2012,7,6,5,30,24.6,1.52,0.089,0.62,0,0,0,0,0,13.100000000000001,0,0,0,0,0.3,48.67,118.93,0.9400000000000001,0.22,889,2.8000000000000003,189,3.6,0.0000,0.0000 +2012,7,6,6,30,23.700000000000003,1.55,0.088,0.62,0,0,0,0,0,13.4,0,0,0,0,0.299,52.36,121.91,0.9400000000000001,0.22,890,2.8000000000000003,196,3.2,0.0000,0.0000 +2012,7,6,7,30,22.8,1.56,0.08700000000000001,0.62,0,0,0,0,0,13.4,0,0,0,0,0.298,55.53,121.48,0.9400000000000001,0.22,890,2.8000000000000003,201,2.7,0.0000,0.0000 +2012,7,6,8,30,22,1.58,0.08600000000000001,0.62,0,0,0,0,0,13.4,0,0,0,0,0.297,58.11,117.72,0.9400000000000001,0.22,890,2.8000000000000003,206,2.3000000000000003,0.0000,0.0000 +2012,7,6,9,30,21.200000000000003,1.59,0.085,0.62,0,0,0,0,0,13.200000000000001,0,0,0,0,0.297,60.45,111.18,0.9400000000000001,0.22,890,2.8000000000000003,210,1.9000000000000001,0.0000,0.0000 +2012,7,6,10,30,20.6,1.6,0.084,0.62,0,0,0,0,0,13.100000000000001,0,0,0,0,0.297,61.96,102.58,0.9400000000000001,0.22,890,2.7,212,1.6,0.0000,0.0000 +2012,7,6,11,30,21,1.61,0.084,0.62,0,0,0,0,0,12.9,0,0,0,0,0.297,59.81,92.54,0.9400000000000001,0.22,891,2.7,212,2,0.0000,0.0000 +2012,7,6,12,30,23.3,1.6300000000000001,0.084,0.62,40,425,103,0,0,12.700000000000001,40,425,0,103,0.298,51.44,81.43,0.9400000000000001,0.22,891,2.6,209,2.9000000000000004,0.0000,0.0000 +2012,7,6,13,30,26.400000000000002,1.6400000000000001,0.084,0.62,67,668,297,0,0,12.3,67,668,0,297,0.298,41.68,69.83,0.9400000000000001,0.22,891,2.6,202,3.8000000000000003,14.6228,11.3273 +2012,7,6,14,30,29.200000000000003,1.6500000000000001,0.084,0.62,83,790,504,0,0,12.200000000000001,83,790,0,504,0.299,35.07,57.800000000000004,0.9400000000000001,0.22,891,2.5,196,4.5,27.3589,21.3933 +2012,7,6,15,30,31.400000000000002,1.6600000000000001,0.084,0.62,95,855,693,0,0,12.100000000000001,95,855,0,693,0.299,30.650000000000002,45.58,0.9400000000000001,0.22,891,2.6,191,4.7,39.9938,31.3979 +2012,7,6,16,30,33.1,1.6600000000000001,0.084,0.62,103,895,850,0,0,11.700000000000001,103,895,0,850,0.299,27.25,33.43,0.9400000000000001,0.22,891,2.6,185,4.9,50.8424,39.9916 +2012,7,6,17,30,34.4,1.6600000000000001,0.084,0.62,109,916,958,0,0,11.4,109,916,0,958,0.3,24.71,21.97,0.9500000000000001,0.22,890,2.7,181,5.1000000000000005,58.5509,46.0992 +2012,7,6,18,30,35.4,1.6400000000000001,0.074,0.62,106,931,1011,0,0,11.100000000000001,106,931,0,1011,0.3,23.01,13.55,0.9500000000000001,0.22,890,2.8000000000000003,179,5.300000000000001,62.1389,48.9431 +2012,7,6,19,30,35.9,1.62,0.076,0.62,106,926,1001,0,0,11,106,926,0,1001,0.301,22.16,15.02,0.9500000000000001,0.22,889,2.9000000000000004,178,5.300000000000001,61.6508,48.5560 +2012,7,6,20,30,36,1.6,0.079,0.62,105,911,933,0,0,10.9,105,911,0,933,0.301,21.96,24.66,0.9500000000000001,0.22,889,2.9000000000000004,176,5.300000000000001,56.9141,44.8025 +2012,7,6,21,30,35.6,1.58,0.084,0.62,102,881,811,0,0,10.8,102,881,0,811,0.302,22.22,36.4,0.9500000000000001,0.22,888,2.9000000000000004,174,5.2,48.5768,38.1955 +2012,7,6,22,30,34.800000000000004,1.58,0.08600000000000001,0.62,94,833,645,0,0,10.600000000000001,94,833,0,645,0.302,22.990000000000002,48.6,0.9500000000000001,0.22,888,2.9000000000000004,173,5,37.2763,29.2429 +2012,7,6,23,30,33.6,1.57,0.09,0.62,82,753,450,0,0,10.5,82,753,0,450,0.302,24.400000000000002,60.800000000000004,0.9500000000000001,0.22,889,2.8000000000000003,172,4.7,24.4742,19.1066 +2012,7,7,0,30,32.1,1.57,0.094,0.62,64,606,244,0,0,10.4,64,606,0,244,0.302,26.42,72.76,0.9500000000000001,0.22,889,2.8000000000000003,171,4,12.0805,9.3192 +2012,7,7,1,30,30.3,1.55,0.096,0.62,31,303,62,0,0,10.600000000000001,31,303,0,62,0.302,29.6,84.21000000000001,0.9500000000000001,0.22,890,2.7,170,2.9000000000000004,0.0000,0.0000 +2012,7,7,2,30,28.8,1.55,0.096,0.62,0,0,0,0,0,11,0,0,0,0,0.302,33.11,95.15,0.9500000000000001,0.22,890,2.7,169,2.5,0.0000,0.0000 +2012,7,7,3,30,28,1.53,0.097,0.62,0,0,0,0,0,11.100000000000001,0,0,0,0,0.301,34.99,104.9,0.9500000000000001,0.22,891,2.6,171,2.6,0.0000,0.0000 +2012,7,7,4,30,27.3,1.51,0.1,0.62,0,0,0,0,0,11.200000000000001,0,0,0,0,0.3,36.74,113.08,0.96,0.22,891,2.6,174,2.7,0.0000,0.0000 +2012,7,7,5,30,26.5,1.49,0.10400000000000001,0.62,0,0,0,0,0,11.4,0,0,0,0,0.299,38.83,119.02,0.96,0.22,891,2.6,178,2.8000000000000003,0.0000,0.0000 +2012,7,7,6,30,25.8,1.46,0.109,0.62,0,0,0,0,1,11.5,0,0,0,0,0.298,40.800000000000004,122.01,0.96,0.22,891,2.6,184,2.7,0.0000,0.0000 +2012,7,7,7,30,25.200000000000003,1.44,0.114,0.62,0,0,0,0,1,11.600000000000001,0,0,0,0,0.297,42.61,121.59,0.96,0.22,892,2.6,192,2.5,0.0000,0.0000 +2012,7,7,8,30,24.5,1.42,0.117,0.62,0,0,0,0,0,11.700000000000001,0,0,0,0,0.297,44.65,117.84,0.9500000000000001,0.22,892,2.6,204,2.3000000000000003,0.0000,0.0000 +2012,7,7,9,30,23.6,1.41,0.11900000000000001,0.62,0,0,0,0,0,11.600000000000001,0,0,0,0,0.296,47.02,111.29,0.9500000000000001,0.22,892,2.6,218,2,0.0000,0.0000 +2012,7,7,10,30,22.700000000000003,1.41,0.11800000000000001,0.62,0,0,0,0,0,11.5,0,0,0,0,0.295,49.24,102.68,0.9500000000000001,0.22,892,2.6,234,1.8,0.0000,0.0000 +2012,7,7,11,30,22.8,1.42,0.116,0.62,0,0,0,0,0,11.4,0,0,0,0,0.294,48.52,92.63,0.9500000000000001,0.22,892,2.6,249,2.2,0.0000,0.0000 +2012,7,7,12,30,24.8,1.43,0.114,0.62,44,375,99,0,0,11.3,44,375,0,99,0.294,42.800000000000004,81.53,0.9500000000000001,0.22,893,2.5,257,2.7,0.0000,0.0000 +2012,7,7,13,30,28.1,1.45,0.112,0.62,75,632,292,0,0,11.3,75,632,0,292,0.294,35.19,69.92,0.9400000000000001,0.22,893,2.5,256,2.4000000000000004,15.2277,11.7947 +2012,7,7,14,30,30.900000000000002,1.46,0.112,0.62,94,759,498,0,0,11.3,94,759,0,498,0.294,29.900000000000002,57.88,0.9400000000000001,0.22,893,2.5,236,1.5,28.1287,21.9945 +2012,7,7,15,30,32.9,1.47,0.114,0.62,108,830,688,0,0,11.100000000000001,108,830,0,688,0.295,26.330000000000002,45.660000000000004,0.9400000000000001,0.22,893,2.5,176,0.9,40.6279,31.8951 +2012,7,7,16,30,34.4,1.48,0.117,0.62,119,871,845,0,0,10.700000000000001,119,871,0,845,0.296,23.64,33.52,0.9400000000000001,0.22,893,2.5,124,1.2000000000000002,51.2574,40.3177 +2012,7,7,17,30,35.7,1.49,0.11900000000000001,0.62,127,892,953,0,1,10.3,127,892,0,953,0.297,21.42,22.07,0.9500000000000001,0.22,892,2.6,113,1.7000000000000002,58.6681,46.1912 +2012,7,7,18,30,36.6,1.55,0.139,0.62,139,890,1004,7,3,9.9,542,258,7,793,0.298,19.89,13.67,0.9500000000000001,0.22,892,2.6,111,2,62.3199,49.0855 +2012,7,7,19,30,37.1,1.54,0.147,0.62,142,883,995,0,4,9.600000000000001,501,97,0,594,0.299,18.92,15.1,0.9500000000000001,0.22,891,2.6,110,2.3000000000000003,61.6485,48.5541 +2012,7,7,20,30,37.1,1.52,0.158,0.62,143,859,924,7,7,9.3,421,273,7,669,0.3,18.54,24.7,0.96,0.22,890,2.7,111,2.5,56.9732,44.8489 +2012,7,7,21,30,36.6,1.48,0.155,0.62,134,830,802,7,2,9,357,489,7,750,0.3,18.740000000000002,36.42,0.96,0.22,890,2.7,114,2.7,48.6348,38.2410 +2012,7,7,22,30,35.800000000000004,1.47,0.158,0.62,123,773,634,0,0,9,123,773,0,634,0.3,19.5,48.620000000000005,0.96,0.22,890,2.8000000000000003,118,2.9000000000000004,37.4479,29.3774 +2012,7,7,23,30,34.6,1.47,0.158,0.62,105,682,438,0,7,9.1,233,147,0,305,0.301,21.04,60.82,0.96,0.22,890,2.9000000000000004,121,2.9000000000000004,24.6906,19.2753 +2012,7,8,0,30,33.1,1.47,0.16,0.62,79,524,234,0,3,9.4,79,524,5,234,0.301,23.35,72.79,0.96,0.22,890,2.9000000000000004,124,2.3000000000000003,12.1781,9.3941 +2012,7,8,1,30,31.200000000000003,1.47,0.162,0.62,35,219,57,0,3,10.5,35,219,5,57,0.301,27.91,84.25,0.96,0.22,890,3,129,1.6,0.0000,0.0000 +2012,7,8,2,30,29.8,1.47,0.164,0.62,0,0,0,0,3,11.4,0,0,0,0,0.301,32.18,95.2,0.96,0.22,891,3.1,134,1.7000000000000002,0.0000,0.0000 +2012,7,8,3,30,29.1,1.48,0.168,0.62,0,0,0,0,1,11.700000000000001,0,0,0,0,0.301,34.21,104.97,0.96,0.22,891,3.1,140,2.3000000000000003,0.0000,0.0000 +2012,7,8,4,30,28.400000000000002,1.49,0.17,0.62,0,0,0,0,3,12,0,0,0,0,0.301,36.22,113.16,0.96,0.22,892,3.1,146,2.9000000000000004,0.0000,0.0000 +2012,7,8,5,30,27.6,1.51,0.168,0.62,0,0,0,0,3,12.100000000000001,0,0,0,0,0.301,38.28,119.11,0.9500000000000001,0.22,892,3.1,153,3.3000000000000003,0.0000,0.0000 +2012,7,8,6,30,26.700000000000003,1.55,0.16,0.62,0,0,0,0,3,12.3,0,0,0,0,0.3,40.78,122.12,0.9500000000000001,0.22,892,3.1,160,3.2,0.0000,0.0000 +2012,7,8,7,30,25.8,1.58,0.153,0.62,0,0,0,0,1,12.4,0,0,0,0,0.3,43.35,121.71000000000001,0.9500000000000001,0.22,891,3,168,2.8000000000000003,0.0000,0.0000 +2012,7,8,8,30,24.8,1.6,0.146,0.62,0,0,0,0,1,12.5,0,0,0,0,0.3,46.25,117.96000000000001,0.9500000000000001,0.22,891,3,177,2.2,0.0000,0.0000 +2012,7,8,9,30,23.8,1.62,0.14100000000000001,0.62,0,0,0,0,3,12.5,0,0,0,0,0.3,49.300000000000004,111.41,0.9400000000000001,0.22,891,3,188,1.6,0.0000,0.0000 +2012,7,8,10,30,22.900000000000002,1.6400000000000001,0.136,0.62,0,0,0,0,4,12.600000000000001,0,0,0,0,0.3,52.22,102.79,0.9400000000000001,0.22,891,3,202,1.3,0.0000,0.0000 +2012,7,8,11,30,23.3,1.6500000000000001,0.133,0.62,0,0,0,0,1,12.600000000000001,0,0,0,0,0.3,50.97,92.73,0.9400000000000001,0.22,891,3,217,1.5,0.0000,0.0000 +2012,7,8,12,30,25.6,1.67,0.133,0.62,44,349,95,7,3,12.600000000000001,66,4,7,66,0.3,44.4,81.62,0.9400000000000001,0.22,892,3,235,1.6,0.0000,0.0000 +2012,7,8,13,30,29.3,1.67,0.135,0.62,79,599,284,0,0,12.5,79,599,0,284,0.3,35.51,70.01,0.9400000000000001,0.22,892,3,139,1,14.9593,11.5855 +2012,7,8,14,30,32.9,1.6600000000000001,0.14100000000000001,0.62,103,723,487,0,0,11.5,103,723,0,487,0.3,27.2,57.97,0.9500000000000001,0.22,892,3,50,1.3,27.7820,21.7226 +2012,7,8,15,30,34.7,1.6400000000000001,0.149,0.62,122,791,674,0,1,11.100000000000001,122,791,0,674,0.3,23.900000000000002,45.74,0.9500000000000001,0.22,892,3.1,72,2.4000000000000004,40.3251,31.6568 +2012,7,8,16,30,35.6,1.61,0.163,0.62,139,827,828,0,1,11.100000000000001,139,827,0,828,0.299,22.75,33.61,0.96,0.22,891,3.1,81,3,50.9479,40.0738 +2012,7,8,17,30,35.800000000000004,1.58,0.184,0.62,155,839,932,0,3,11.200000000000001,493,135,0,619,0.298,22.67,22.17,0.96,0.22,891,3.2,88,3.3000000000000003,58.3561,45.9453 +2012,7,8,18,30,35.9,1.56,0.17,0.62,153,858,986,0,0,11.5,153,858,0,986,0.298,22.89,13.790000000000001,0.96,0.22,890,3.3000000000000003,94,3.4000000000000004,48.8786,38.4984 +2012,7,8,19,30,35.9,1.56,0.183,0.62,158,848,977,0,4,11.8,541,198,0,732,0.298,23.39,15.18,0.96,0.22,890,3.3000000000000003,97,3.4000000000000004,36.5807,28.8107 +2012,7,8,20,30,35.4,1.55,0.199,0.62,161,821,906,0,4,12.200000000000001,202,0,0,202,0.298,24.62,24.740000000000002,0.96,0.22,890,3.4000000000000004,97,3.3000000000000003,40.8503,32.1570 +2012,7,8,21,30,34.4,1.53,0.219,0.62,159,773,781,0,1,12.5,159,773,0,781,0.298,26.580000000000002,36.45,0.96,0.22,890,3.5,94,3.3000000000000003,44.9749,35.3632 +2012,7,8,22,30,33,1.49,0.247,0.62,155,693,613,7,2,12.8,155,693,5,613,0.297,29.28,48.64,0.97,0.22,890,3.6,87,3.1,36.8067,28.8742 +2012,7,8,23,30,31.400000000000002,1.46,0.281,0.62,140,567,416,0,0,13.100000000000001,140,567,0,416,0.297,32.87,60.85,0.97,0.22,890,3.8000000000000003,76,2.7,16.7327,13.0626 +2012,7,9,0,30,29.6,1.46,0.29,0.62,101,394,218,0,2,13.700000000000001,101,394,5,218,0.297,37.9,72.82000000000001,0.97,0.22,891,4,61,2.4000000000000004,11.6757,9.0062 +2012,7,9,1,30,27.700000000000003,1.47,0.273,0.62,37,134,51,0,4,14.700000000000001,43,1,0,43,0.296,45.12,84.29,0.97,0.22,892,4.2,45,2.2,0.0000,0.0000 +2012,7,9,2,30,25.900000000000002,1.47,0.281,0.62,0,0,0,0,4,15.600000000000001,0,0,0,0,0.296,53.050000000000004,95.25,0.97,0.22,892,4.3,29,2.4000000000000004,0.0000,0.0000 +2012,7,9,3,30,24.200000000000003,1.49,0.274,0.62,0,0,0,0,6,16.5,0,0,0,0,0.296,62.31,105.03,0.97,0.22,893,4.4,16,2.6,0.0000,0.0000 +2012,7,9,4,30,23,1.51,0.254,0.62,0,0,0,0,7,17.400000000000002,0,0,0,0,0.296,70.7,113.24000000000001,0.97,0.22,893,4.4,9,2.7,0.0000,0.0000 +2012,7,9,5,30,22.3,1.54,0.231,0.62,0,0,0,0,7,18,0,0,0,0,0.296,76.42,119.22,0.97,0.22,893,4.4,8,2.6,0.0000,0.0000 +2012,7,9,6,30,21.8,1.57,0.214,0.62,0,0,0,0,8,18.2,0,0,0,0,0.296,80.22,122.24000000000001,0.97,0.22,893,4.4,6,2.5,0.0000,0.0000 +2012,7,9,7,30,21.400000000000002,1.58,0.20700000000000002,0.62,0,0,0,0,4,18.400000000000002,0,0,0,0,0.296,83.09,121.83,0.97,0.22,893,4.3,3,2.4000000000000004,0.0000,0.0000 +2012,7,9,8,30,21.1,1.58,0.201,0.62,0,0,0,0,4,18.6,0,0,0,0,0.296,85.66,118.08,0.97,0.22,893,4.3,179,2.5,0.0000,0.0000 +2012,7,9,9,30,20.8,1.59,0.198,0.62,0,0,0,0,4,18.7,0,0,0,0,0.296,87.83,111.53,0.97,0.22,893,4.3,357,2.5,0.0000,0.0000 +2012,7,9,10,30,20.400000000000002,1.58,0.199,0.62,0,0,0,0,4,18.7,0,0,0,0,0.297,89.98,102.9,0.97,0.22,893,4.3,355,2.6,0.0000,0.0000 +2012,7,9,11,30,20.3,1.58,0.2,0.62,0,0,0,0,4,18.6,0,0,0,0,0.297,90.14,92.84,0.97,0.22,893,4.2,353,2.7,0.0000,0.0000 +2012,7,9,12,30,20.6,1.58,0.196,0.62,49,267,88,7,4,18.5,35,0,7,35,0.297,87.57000000000001,81.71000000000001,0.97,0.22,893,4.2,353,2.9000000000000004,0.0000,0.0000 +2012,7,9,13,30,21.8,1.6,0.186,0.62,91,529,271,0,4,18.2,35,0,0,35,0.298,79.79,70.10000000000001,0.96,0.22,893,4.1000000000000005,355,3,14.5377,11.2578 +2012,7,9,14,30,23.6,1.62,0.17200000000000001,0.62,113,679,472,0,4,17.7,235,24,0,248,0.298,69.68,58.06,0.96,0.22,893,4.1000000000000005,182,2.9000000000000004,27.1554,21.2317 +2012,7,9,15,30,25.5,1.62,0.164,0.62,127,765,660,0,4,17.400000000000002,103,0,0,103,0.298,61.02,45.83,0.96,0.22,893,4.1000000000000005,11,2.8000000000000003,39.4949,31.0046 +2012,7,9,16,30,26.6,1.59,0.17,0.62,141,808,813,0,4,17.400000000000002,107,0,0,107,0.298,56.89,33.7,0.97,0.22,892,4.1000000000000005,19,2.7,49.9150,39.2610 +2012,7,9,17,30,27.200000000000003,1.56,0.181,0.62,153,827,918,0,4,17.400000000000002,155,0,0,155,0.298,55.03,22.27,0.97,0.22,892,4.2,23,2.5,37.9001,29.8396 +2012,7,9,18,30,27.3,1.54,0.215,0.62,172,818,966,0,4,17.2,129,0,0,129,0.298,54.050000000000004,13.92,0.97,0.22,892,4.2,25,2.5,60.7704,47.8646 +2012,7,9,19,30,27,1.53,0.224,0.62,176,810,957,0,4,16.900000000000002,218,0,0,218,0.297,53.92,15.27,0.97,0.22,891,4.3,26,2.5,45.0770,35.5022 +2012,7,9,20,30,26.5,1.54,0.218,0.62,168,797,892,0,1,17,168,797,0,892,0.297,56.01,24.79,0.97,0.22,891,4.3,29,2.6,12.3339,9.7091 +2012,7,9,21,30,26.1,1.56,0.211,0.62,155,768,773,0,4,17.2,349,7,0,354,0.297,58.160000000000004,36.480000000000004,0.97,0.22,891,4.3,33,2.6,46.8311,36.8225 +2012,7,9,22,30,25.6,1.58,0.189,0.62,133,728,614,0,3,17.400000000000002,357,210,0,496,0.297,60.52,48.67,0.97,0.22,891,4.3,36,2.6,35.5851,27.9158 +2012,7,9,23,30,24.900000000000002,1.6,0.166,0.62,106,657,425,0,0,17.6,106,657,0,425,0.297,63.72,60.88,0.96,0.22,891,4.3,37,2.6,22.8182,17.8130 +2012,7,10,0,30,24,1.62,0.155,0.62,76,513,227,0,4,17.8,9,0,0,9,0.298,68.1,72.86,0.96,0.21,891,4.3,37,2.2,10.8743,8.3877 +2012,7,10,1,30,23,1.6300000000000001,0.152,0.62,33,220,55,0,2,18.2,47,29,0,50,0.298,74.56,84.33,0.96,0.21,892,4.3,36,1.9000000000000001,0.0000,0.0000 +2012,7,10,2,30,22.3,1.6400000000000001,0.157,0.62,0,0,0,0,3,18.5,0,0,0,0,0.298,79.28,95.31,0.96,0.21,892,4.4,33,2,0.0000,0.0000 +2012,7,10,3,30,21.8,1.6400000000000001,0.17,0.62,0,0,0,0,3,18.7,0,0,0,0,0.298,82.51,105.11,0.96,0.21,893,4.4,32,2.1,0.0000,0.0000 +2012,7,10,4,30,21.3,1.6300000000000001,0.199,0.62,0,0,0,0,3,18.8,0,0,0,0,0.298,85.9,113.33,0.96,0.21,892,4.4,34,2.1,0.0000,0.0000 +2012,7,10,5,30,21,1.6300000000000001,0.246,0.62,0,0,0,0,4,19,0,0,0,0,0.297,88.42,119.32000000000001,0.97,0.21,892,4.4,39,2,0.0000,0.0000 +2012,7,10,6,30,20.8,1.62,0.308,0.62,0,0,0,0,3,19.200000000000003,0,0,0,0,0.296,90.60000000000001,122.36,0.97,0.21,892,4.5,48,2,0.0000,0.0000 +2012,7,10,7,30,20.6,1.61,0.386,0.62,0,0,0,0,1,19.400000000000002,0,0,0,0,0.295,92.77,121.96000000000001,0.97,0.21,892,4.5,58,2.1,0.0000,0.0000 +2012,7,10,8,30,20.3,1.61,0.461,0.62,0,0,0,0,3,19.5,0,0,0,0,0.295,95.03,118.21000000000001,0.97,0.21,891,4.5,66,2.3000000000000003,0.0000,0.0000 +2012,7,10,9,30,20.1,1.61,0.516,0.62,0,0,0,0,3,19.5,0,0,0,0,0.295,96.44,111.65,0.97,0.21,891,4.4,68,2.4000000000000004,0.0000,0.0000 +2012,7,10,10,30,19.8,1.62,0.512,0.62,0,0,0,0,4,19.5,0,0,0,0,0.295,97.91,103.02,0.97,0.21,891,4.4,66,2.7,0.0000,0.0000 +2012,7,10,11,30,19.6,1.6400000000000001,0.466,0.62,0,0,0,0,4,19.3,0,0,0,0,0.295,98.11,92.95,0.97,0.21,892,4.3,62,3.3000000000000003,0.0000,0.0000 +2012,7,10,12,30,19.8,1.6500000000000001,0.436,0.62,56,143,77,7,3,19,30,0,7,30,0.295,95.17,81.81,0.97,0.21,892,4.2,55,4.1000000000000005,0.0000,0.0000 +2012,7,10,13,30,20.400000000000002,1.67,0.379,0.62,123,389,255,0,3,18.7,64,0,0,64,0.294,89.71000000000001,70.19,0.96,0.21,893,4.1000000000000005,49,4.5,1.7902,1.3861 +2012,7,10,14,30,21.200000000000003,1.7,0.297,0.62,148,588,458,0,3,18.3,209,4,0,211,0.293,83.64,58.15,0.96,0.21,893,3.9000000000000004,44,4.5,13.8220,10.8064 +2012,7,10,15,30,22,1.71,0.248,0.62,156,709,649,0,3,18.1,340,38,0,366,0.293,78.32000000000001,45.92,0.96,0.21,893,3.9000000000000004,40,4.3,6.0339,4.7367 +2012,7,10,16,30,22.8,1.71,0.221,0.62,161,779,808,0,3,17.7,237,0,0,237,0.294,72.77,33.79,0.96,0.21,893,3.8000000000000003,38,4.2,6.4493,5.0727 +2012,7,10,17,30,23.8,1.72,0.20400000000000001,0.62,162,819,919,0,3,17.1,447,30,0,474,0.294,66.05,22.38,0.96,0.21,893,3.8000000000000003,39,4.1000000000000005,9.4894,7.4711 +2012,7,10,18,30,24.700000000000003,1.73,0.199,0.62,163,835,974,0,3,16.5,218,0,0,219,0.295,60.28,14.05,0.96,0.21,893,3.7,43,3.9000000000000004,7.9501,6.2617 +2012,7,10,19,30,25.6,1.73,0.202,0.62,164,832,967,0,3,16,479,54,0,532,0.295,55.480000000000004,15.370000000000001,0.96,0.21,892,3.7,50,3.7,13.4238,10.5724 +2012,7,10,20,30,26.400000000000002,1.72,0.209,0.62,162,812,899,0,3,15.700000000000001,500,155,0,641,0.296,51.92,24.84,0.96,0.21,892,3.7,59,3.7,54.4614,42.8713 +2012,7,10,21,30,26.8,1.72,0.212,0.62,154,778,780,0,3,15.5,377,21,0,394,0.296,49.94,36.52,0.96,0.21,891,3.6,68,3.9000000000000004,21.2256,16.6893 +2012,7,10,22,30,26.8,1.73,0.212,0.62,140,722,616,0,3,15.3,365,90,0,424,0.296,49.45,48.7,0.96,0.21,891,3.6,75,4,28.7902,22.5851 +2012,7,10,23,30,26,1.74,0.214,0.62,119,629,425,7,3,15.3,261,192,7,354,0.296,51.6,60.92,0.96,0.21,891,3.5,80,4,23.3076,18.1947 +2012,7,11,0,30,24.8,1.74,0.213,0.62,87,470,225,0,0,15.3,87,470,0,225,0.296,55.57,72.9,0.96,0.21,892,3.5,86,3.3000000000000003,0.4488,0.3461 +2012,7,11,1,30,23.1,1.76,0.201,0.62,35,194,54,0,3,15.5,45,3,0,45,0.296,62.34,84.38,0.96,0.21,892,3.4000000000000004,92,2,0.0000,0.0000 +2012,7,11,2,30,21.8,1.78,0.184,0.62,0,0,0,0,0,15.8,0,0,0,0,0.296,68.79,95.38,0.9500000000000001,0.21,893,3.3000000000000003,98,1.1,0.0000,0.0000 +2012,7,11,3,30,21.1,1.79,0.17,0.62,0,0,0,0,1,15.8,0,0,0,0,0.295,71.95,105.19,0.9500000000000001,0.21,893,3.2,100,0.8,0.0000,0.0000 +2012,7,11,4,30,20.6,1.79,0.16,0.62,0,0,0,0,0,15.9,0,0,0,0,0.295,74.31,113.43,0.9500000000000001,0.21,893,3.1,92,0.7000000000000001,0.0000,0.0000 +2012,7,11,5,30,20.3,1.8,0.148,0.62,0,0,0,0,0,15.8,0,0,0,0,0.295,75.37,119.44,0.9500000000000001,0.21,893,3,57,0.6000000000000001,0.0000,0.0000 +2012,7,11,6,30,19.8,1.81,0.137,0.62,0,0,0,0,3,15.600000000000001,0,0,0,0,0.294,76.79,122.49000000000001,0.9500000000000001,0.21,893,3,16,0.6000000000000001,0.0000,0.0000 +2012,7,11,7,30,19.200000000000003,1.81,0.127,0.62,0,0,0,0,3,15.4,0,0,0,0,0.294,78.76,122.10000000000001,0.9500000000000001,0.21,893,2.9000000000000004,180,0.8,0.0000,0.0000 +2012,7,11,8,30,18.5,1.8,0.12,0.62,0,0,0,0,3,15.200000000000001,0,0,0,0,0.293,81.04,118.34,0.9500000000000001,0.21,893,2.8000000000000003,358,0.9,0.0000,0.0000 +2012,7,11,9,30,18,1.8,0.115,0.62,0,0,0,0,1,14.9,0,0,0,0,0.294,82.33,111.78,0.9400000000000001,0.21,893,2.8000000000000003,357,1,0.0000,0.0000 +2012,7,11,10,30,17.7,1.78,0.112,0.62,0,0,0,0,0,14.700000000000001,0,0,0,0,0.294,82.82000000000001,103.14,0.9400000000000001,0.21,893,2.7,358,1.1,0.0000,0.0000 +2012,7,11,11,30,18.5,1.77,0.111,0.62,0,0,0,0,3,14.5,0,0,0,0,0.295,77.68,93.06,0.9400000000000001,0.21,893,2.7,184,1.6,0.0000,0.0000 +2012,7,11,12,30,21,1.76,0.109,0.62,41,379,94,7,3,14.4,59,2,7,59,0.296,65.82000000000001,81.91,0.9400000000000001,0.21,893,2.6,17,2.2,0.0000,0.0000 +2012,7,11,13,30,24.1,1.76,0.108,0.62,72,634,286,0,3,13.9,177,21,0,184,0.297,52.85,70.29,0.9400000000000001,0.21,893,2.6,41,2.6,3.2708,2.5323 +2012,7,11,14,30,26.6,1.76,0.105,0.62,90,764,492,0,0,12.8,90,764,0,492,0.297,42.550000000000004,58.24,0.9400000000000001,0.21,893,2.6,61,3,11.7541,9.1893 +2012,7,11,15,30,28.200000000000003,1.74,0.113,0.62,107,829,683,0,0,12.5,107,829,0,683,0.297,38.01,46.01,0.9500000000000001,0.21,893,2.6,68,3.1,21.4351,16.8264 +2012,7,11,16,30,29.400000000000002,1.69,0.127,0.62,123,862,838,0,0,12.5,123,862,0,838,0.296,35.34,33.89,0.9500000000000001,0.21,893,2.6,74,3,14.2827,11.2339 +2012,7,11,17,30,30.5,1.67,0.135,0.62,133,882,948,0,1,12.5,133,882,0,948,0.296,33.11,22.490000000000002,0.96,0.21,892,2.6,79,2.9000000000000004,29.0159,22.8446 +2012,7,11,18,30,31.3,1.58,0.159,0.62,148,877,998,0,0,12.4,148,877,0,998,0.295,31.470000000000002,14.19,0.96,0.21,892,2.6,83,2.8000000000000003,13.4956,10.6295 +2012,7,11,19,30,31.900000000000002,1.58,0.16,0.62,148,875,991,0,1,12.200000000000001,148,875,0,991,0.295,30.02,15.47,0.96,0.21,891,2.6,86,2.7,32.7568,25.7988 +2012,7,11,20,30,32.1,1.57,0.159,0.62,143,861,924,0,0,12,143,861,0,924,0.295,29.26,24.900000000000002,0.96,0.21,890,2.6,88,2.7,39.1342,30.8058 +2012,7,11,21,30,31.900000000000002,1.53,0.171,0.62,141,823,801,0,0,11.600000000000001,141,823,0,801,0.296,28.91,36.56,0.96,0.21,890,2.5,88,2.8000000000000003,23.6221,18.5735 +2012,7,11,22,30,31.3,1.53,0.17200000000000001,0.62,128,768,635,0,0,11.200000000000001,128,768,0,635,0.296,29.19,48.74,0.96,0.21,890,2.5,89,3,24.6084,19.3045 +2012,7,11,23,30,30.3,1.53,0.168,0.62,108,681,439,0,0,11,108,681,0,439,0.296,30.44,60.96,0.96,0.21,890,2.5,93,3.1,19.4091,15.1511 +2012,7,12,0,30,28.6,1.52,0.167,0.62,80,523,234,0,1,10.9,80,523,0,234,0.296,33.39,72.95,0.96,0.21,890,2.5,100,2.6,11.2151,8.6494 +2012,7,12,1,30,26.3,1.51,0.166,0.62,35,217,56,0,1,11.9,35,217,0,56,0.296,40.81,84.44,0.96,0.21,890,2.5,109,1.9000000000000001,0.0000,0.0000 +2012,7,12,2,30,24.8,1.51,0.161,0.62,0,0,0,0,3,12.200000000000001,0,0,0,0,0.296,45.46,95.44,0.9500000000000001,0.21,891,2.5,117,2,0.0000,0.0000 +2012,7,12,3,30,24,1.5,0.158,0.62,0,0,0,0,1,11.9,0,0,0,0,0.296,46.67,105.27,0.9500000000000001,0.21,891,2.5,124,2.2,0.0000,0.0000 +2012,7,12,4,30,23.200000000000003,1.49,0.159,0.62,0,0,0,0,1,11.8,0,0,0,0,0.295,48.71,113.53,0.9500000000000001,0.21,891,2.5,129,2.2,0.0000,0.0000 +2012,7,12,5,30,22.6,1.48,0.165,0.62,0,0,0,0,1,11.9,0,0,0,0,0.295,50.77,119.56,0.96,0.21,892,2.5,135,1.9000000000000001,0.0000,0.0000 +2012,7,12,6,30,22,1.47,0.17400000000000002,0.62,0,0,0,0,3,12,0,0,0,0,0.294,53.19,122.62,0.96,0.21,892,2.5,143,1.7000000000000002,0.0000,0.0000 +2012,7,12,7,30,21.400000000000002,1.48,0.178,0.62,0,0,0,0,0,12.200000000000001,0,0,0,0,0.294,55.72,122.24000000000001,0.96,0.21,891,2.5,154,1.4000000000000001,0.0000,0.0000 +2012,7,12,8,30,20.700000000000003,1.5,0.17400000000000002,0.62,0,0,0,0,0,12.3,0,0,0,0,0.294,58.480000000000004,118.48,0.9500000000000001,0.21,891,2.5,165,1.3,0.0000,0.0000 +2012,7,12,9,30,20,1.51,0.17,0.62,0,0,0,0,0,12.200000000000001,0,0,0,0,0.294,60.95,111.91,0.9500000000000001,0.21,891,2.5,177,1.2000000000000002,0.0000,0.0000 +2012,7,12,10,30,19.6,1.51,0.17200000000000001,0.62,0,0,0,0,0,12.3,0,0,0,0,0.294,62.82,103.26,0.9500000000000001,0.21,891,2.5,189,1.2000000000000002,0.0000,0.0000 +2012,7,12,11,30,20.200000000000003,1.5,0.177,0.62,0,0,0,0,0,12.5,0,0,0,0,0.294,61.370000000000005,93.17,0.9500000000000001,0.21,891,2.5,202,1.6,0.0000,0.0000 +2012,7,12,12,30,22.200000000000003,1.5,0.178,0.62,48,290,88,0,0,12.9,48,290,0,88,0.294,55.63,82.02,0.9500000000000001,0.21,891,2.5,210,2.1,0.0000,0.0000 +2012,7,12,13,30,25.400000000000002,1.51,0.168,0.62,88,567,278,0,0,13.200000000000001,88,567,0,278,0.294,46.79,70.39,0.9500000000000001,0.21,891,2.4000000000000004,207,2.3000000000000003,9.3951,7.2728 +2012,7,12,14,30,28.5,1.51,0.158,0.62,110,715,485,0,0,12.600000000000001,110,715,0,485,0.294,37.59,58.33,0.9500000000000001,0.21,891,2.4000000000000004,199,1.9000000000000001,27.3945,21.4158 +2012,7,12,15,30,30.6,1.5,0.154,0.62,124,798,678,0,0,12.200000000000001,124,798,0,678,0.294,32.29,46.1,0.9500000000000001,0.21,891,2.4000000000000004,185,1.4000000000000001,39.9894,31.3909 +2012,7,12,16,30,31.900000000000002,1.47,0.163,0.62,140,838,835,0,0,12.100000000000001,140,838,0,835,0.294,29.92,33.99,0.96,0.21,891,2.4000000000000004,155,1.1,50.4928,39.7142 +2012,7,12,17,30,32.9,1.46,0.17300000000000001,0.62,152,859,944,0,1,11.9,152,859,0,944,0.294,27.89,22.61,0.96,0.21,891,2.4000000000000004,132,1.2000000000000002,58.0253,45.6837 +2012,7,12,18,30,33.6,1.49,0.162,0.62,150,876,999,7,2,11.600000000000001,337,639,7,955,0.293,26.28,14.33,0.96,0.21,890,2.5,129,1.5,61.4954,48.4350 +2012,7,12,19,30,34.1,1.49,0.166,0.62,151,872,991,0,0,11.3,151,872,0,991,0.292,24.97,15.59,0.9500000000000001,0.21,889,2.5,132,1.7000000000000002,61.0147,48.0541 +2012,7,12,20,30,34.4,1.52,0.157,0.62,142,864,925,0,3,11,474,49,0,518,0.291,24.12,24.96,0.9500000000000001,0.21,889,2.5,133,1.9000000000000001,56.4080,44.4032 +2012,7,12,21,30,34.5,1.55,0.139,0.62,127,846,806,0,0,10.700000000000001,127,846,0,806,0.29,23.44,36.61,0.9500000000000001,0.21,888,2.5,133,2.1,48.0198,37.7566 +2012,7,12,22,30,33.9,1.56,0.135,0.62,114,799,640,0,3,10.3,363,86,0,420,0.289,23.63,48.79,0.9500000000000001,0.21,888,2.5,133,2.4000000000000004,36.8495,28.9069 +2012,7,12,23,30,32.9,1.56,0.135,0.62,97,715,444,0,0,10,97,715,0,444,0.289,24.580000000000002,61,0.9500000000000001,0.21,888,2.4000000000000004,134,2.6,24.0635,18.7840 +2012,7,13,0,30,30.700000000000003,1.57,0.134,0.62,73,563,238,0,1,10,73,563,0,238,0.289,27.77,73,0.9500000000000001,0.21,888,2.4000000000000004,137,2.3000000000000003,11.6583,8.9905 +2012,7,13,1,30,28,1.59,0.128,0.62,32,259,57,0,3,11.700000000000001,47,45,0,51,0.289,36.300000000000004,84.5,0.9500000000000001,0.21,889,2.4000000000000004,142,2.2,0.0000,0.0000 +2012,7,13,2,30,26.3,1.6,0.121,0.62,0,0,0,0,0,11.4,0,0,0,0,0.289,39.44,95.52,0.9400000000000001,0.21,889,2.4000000000000004,149,2.9000000000000004,0.0000,0.0000 +2012,7,13,3,30,25.400000000000002,1.61,0.11800000000000001,0.62,0,0,0,0,0,11,0,0,0,0,0.29,40.480000000000004,105.36,0.9400000000000001,0.21,890,2.4000000000000004,156,3.5,0.0000,0.0000 +2012,7,13,4,30,24.400000000000002,1.61,0.11800000000000001,0.62,0,0,0,0,0,10.9,0,0,0,0,0.291,42.660000000000004,113.64,0.9400000000000001,0.21,890,2.5,164,3.5,0.0000,0.0000 +2012,7,13,5,30,23.5,1.61,0.121,0.62,0,0,0,0,0,10.8,0,0,0,0,0.291,44.84,119.69,0.9400000000000001,0.21,890,2.5,173,3.2,0.0000,0.0000 +2012,7,13,6,30,22.700000000000003,1.61,0.127,0.62,0,0,0,0,0,10.8,0,0,0,0,0.292,47.01,122.76,0.9400000000000001,0.21,890,2.5,180,3,0.0000,0.0000 +2012,7,13,7,30,22.200000000000003,1.6,0.139,0.62,0,0,0,0,0,10.9,0,0,0,0,0.293,48.660000000000004,122.39,0.9500000000000001,0.21,891,2.6,186,2.8000000000000003,0.0000,0.0000 +2012,7,13,8,30,22,1.59,0.154,0.62,0,0,0,0,0,11,0,0,0,0,0.294,49.58,118.63,0.9500000000000001,0.21,891,2.6,191,2.7,0.0000,0.0000 +2012,7,13,9,30,21.6,1.59,0.161,0.62,0,0,0,0,1,11.100000000000001,0,0,0,0,0.295,51.34,112.05,0.9500000000000001,0.21,891,2.6,197,2.6,0.0000,0.0000 +2012,7,13,10,30,21.1,1.6,0.158,0.62,0,0,0,0,3,11.3,0,0,0,0,0.296,53.620000000000005,103.38,0.9500000000000001,0.21,891,2.6,204,2.4000000000000004,0.0000,0.0000 +2012,7,13,11,30,21.200000000000003,1.62,0.153,0.62,0,0,0,0,1,11.5,0,0,0,0,0.297,53.910000000000004,93.28,0.9500000000000001,0.21,891,2.6,212,2.7,0.0000,0.0000 +2012,7,13,12,30,22.8,1.6300000000000001,0.15,0.62,45,319,88,0,0,11.700000000000001,45,319,0,88,0.297,49.45,82.12,0.9500000000000001,0.21,892,2.6,218,3.1,0.0000,0.0000 +2012,7,13,13,30,26.1,1.6400000000000001,0.14300000000000002,0.62,81,593,279,0,8,11.9,164,124,0,206,0.298,41.2,70.48,0.9500000000000001,0.21,892,2.5,219,3.2,14.1820,10.9770 +2012,7,13,14,30,29.5,1.6500000000000001,0.137,0.62,102,734,486,0,0,11.5,102,734,0,486,0.298,32.92,58.43,0.9500000000000001,0.21,892,2.5,218,3.2,26.9916,21.0999 +2012,7,13,15,30,32,1.6600000000000001,0.134,0.62,115,811,676,0,0,11,115,811,0,676,0.298,27.54,46.2,0.9500000000000001,0.21,891,2.6,217,2.8000000000000003,39.6857,31.1518 +2012,7,13,16,30,33.9,1.67,0.132,0.62,125,858,835,0,0,10.9,125,858,0,835,0.299,24.68,34.09,0.9500000000000001,0.21,891,2.6,211,2.4000000000000004,50.3030,39.5645 +2012,7,13,17,30,35.300000000000004,1.68,0.13,0.62,130,885,946,0,0,11.100000000000001,130,885,0,946,0.299,23.080000000000002,22.72,0.9500000000000001,0.21,890,2.6,197,2,57.7734,45.4850 +2012,7,13,18,30,36.300000000000004,1.67,0.121,0.62,128,900,1000,0,0,11.200000000000001,128,900,0,1000,0.3,22.04,14.48,0.9500000000000001,0.21,889,2.7,179,1.9000000000000001,58.8408,46.3440 +2012,7,13,19,30,37,1.67,0.125,0.62,130,896,993,0,0,11.200000000000001,130,896,0,993,0.3,21.240000000000002,15.700000000000001,0.9500000000000001,0.21,889,2.7,163,2,61.0098,48.0500 +2012,7,13,20,30,37.1,1.6600000000000001,0.133,0.62,130,875,923,0,0,11.200000000000001,130,875,0,923,0.301,21.05,25.04,0.96,0.21,888,2.8000000000000003,151,2.4000000000000004,31.6205,24.8909 +2012,7,13,21,30,36.7,1.6300000000000001,0.179,0.62,143,812,794,0,0,10.9,143,812,0,794,0.301,21.14,36.660000000000004,0.96,0.21,888,2.8000000000000003,145,2.8000000000000003,48.3146,37.9882 +2012,7,13,22,30,35.9,1.62,0.188,0.62,133,751,627,0,0,10.5,133,751,0,627,0.301,21.48,48.83,0.96,0.21,887,2.8000000000000003,144,3.3000000000000003,24.3687,19.1159 +2012,7,13,23,30,34.5,1.62,0.191,0.62,114,656,431,7,2,10.4,236,367,7,413,0.301,22.990000000000002,61.050000000000004,0.96,0.21,887,2.8000000000000003,146,3.8000000000000003,24.3316,18.9928 +2012,7,14,0,30,32.5,1.6400000000000001,0.186,0.62,83,501,229,0,3,10.5,146,14,0,150,0.3,25.95,73.05,0.96,0.21,888,2.8000000000000003,148,3.8000000000000003,11.8521,9.1392 +2012,7,14,1,30,30.1,1.67,0.17400000000000002,0.62,34,212,54,7,2,11.3,45,7,7,45,0.301,31.28,84.57000000000001,0.9500000000000001,0.21,888,2.7,149,3.7,0.0000,0.0000 +2012,7,14,2,30,28.3,1.68,0.162,0.62,0,0,0,0,0,11.4,0,0,0,0,0.301,34.980000000000004,95.60000000000001,0.9500000000000001,0.21,889,2.7,152,4.1000000000000005,0.0000,0.0000 +2012,7,14,3,30,27,1.69,0.153,0.62,0,0,0,0,1,11.200000000000001,0,0,0,0,0.301,37.410000000000004,105.46000000000001,0.9500000000000001,0.21,889,2.6,158,4.3,0.0000,0.0000 +2012,7,14,4,30,25.8,1.68,0.149,0.62,0,0,0,0,0,11.200000000000001,0,0,0,0,0.3,40.1,113.76,0.9500000000000001,0.21,890,2.6,164,4.4,0.0000,0.0000 +2012,7,14,5,30,24.900000000000002,1.67,0.15,0.62,0,0,0,0,7,11.200000000000001,0,0,0,0,0.3,42.28,119.82000000000001,0.9500000000000001,0.21,890,2.6,170,4.2,0.0000,0.0000 +2012,7,14,6,30,24.200000000000003,1.6600000000000001,0.153,0.62,0,0,0,0,7,11.200000000000001,0,0,0,0,0.299,44.14,122.91,0.96,0.21,890,2.6,176,4,0.0000,0.0000 +2012,7,14,7,30,23.700000000000003,1.6400000000000001,0.159,0.62,0,0,0,0,7,11.3,0,0,0,0,0.298,45.61,122.54,0.96,0.21,890,2.6,182,3.8000000000000003,0.0000,0.0000 +2012,7,14,8,30,23.200000000000003,1.62,0.162,0.62,0,0,0,0,7,11.3,0,0,0,0,0.298,47.24,118.78,0.96,0.21,890,2.7,187,3.6,0.0000,0.0000 +2012,7,14,9,30,22.700000000000003,1.61,0.162,0.62,0,0,0,0,7,11.4,0,0,0,0,0.298,48.910000000000004,112.19,0.96,0.21,890,2.7,193,3.3000000000000003,0.0000,0.0000 +2012,7,14,10,30,22.200000000000003,1.61,0.162,0.62,0,0,0,0,8,11.5,0,0,0,0,0.298,50.59,103.51,0.96,0.21,890,2.7,199,3,0.0000,0.0000 +2012,7,14,11,30,22,1.6,0.166,0.62,0,0,0,0,7,11.5,0,0,0,0,0.297,51.4,93.4,0.96,0.21,891,2.7,205,2.9000000000000004,0.0000,0.0000 +2012,7,14,12,30,22.900000000000002,1.58,0.178,0.62,46,284,85,7,7,11.5,71,42,7,76,0.297,48.69,82.23,0.96,0.21,891,2.7,207,2.9000000000000004,0.0000,0.0000 +2012,7,14,13,30,25,1.56,0.192,0.62,92,536,270,0,7,11.600000000000001,162,61,0,182,0.297,43.08,70.58,0.97,0.21,892,2.7,204,3,10.5004,8.1265 +2012,7,14,14,30,27.5,1.55,0.198,0.62,122,674,474,0,8,11.100000000000001,247,223,0,364,0.297,35.89,58.52,0.97,0.21,892,2.7,199,3.3000000000000003,27.0326,21.1309 +2012,7,14,15,30,29.900000000000002,1.55,0.20400000000000001,0.62,143,751,662,0,7,10.4,228,570,0,621,0.298,29.82,46.29,0.97,0.21,892,2.8000000000000003,192,3.5,39.5564,31.0497 +2012,7,14,16,30,31.8,1.57,0.20800000000000002,0.62,157,800,819,0,7,9.9,269,518,0,698,0.299,25.93,34.19,0.96,0.21,892,2.8000000000000003,185,3.6,50.2940,39.5569 +2012,7,14,17,30,33.2,1.59,0.20400000000000001,0.62,164,832,931,0,8,10,280,612,0,844,0.299,24.150000000000002,22.85,0.97,0.21,891,2.8000000000000003,180,3.7,57.8892,45.5759 +2012,7,14,18,30,34.6,1.6400000000000001,0.268,0.62,195,808,976,7,3,10.5,449,480,7,914,0.299,23.12,14.63,0.96,0.21,891,2.8000000000000003,178,3.8000000000000003,61.6078,48.5230 +2012,7,14,19,30,35.6,1.69,0.23900000000000002,0.62,181,824,974,7,3,11.100000000000001,354,610,7,941,0.3,22.67,15.83,0.96,0.21,890,2.8000000000000003,175,3.8000000000000003,61.1285,48.1432 +2012,7,14,20,30,36,1.71,0.222,0.62,169,818,909,0,8,11.4,296,577,0,818,0.3,22.73,25.11,0.96,0.21,889,2.8000000000000003,171,3.7,56.3378,44.3475 +2012,7,14,21,30,35.800000000000004,1.73,0.228,0.62,161,780,787,0,8,11.5,343,369,0,639,0.299,23.150000000000002,36.72,0.96,0.21,889,2.8000000000000003,166,3.7,47.5905,37.4186 +2012,7,14,22,30,35.2,1.74,0.213,0.62,141,736,624,0,1,11.4,141,736,0,624,0.299,23.64,48.89,0.9500000000000001,0.21,888,2.7,160,3.8000000000000003,36.3739,28.5331 +2012,7,14,23,30,34,1.74,0.202,0.62,116,651,430,0,3,11.100000000000001,239,353,0,409,0.298,24.830000000000002,61.11,0.9500000000000001,0.21,888,2.7,156,3.8000000000000003,22.6258,17.6607 +2012,7,15,0,30,32,1.73,0.195,0.62,84,496,228,0,8,10.9,142,153,0,187,0.298,27.44,73.12,0.9500000000000001,0.21,889,2.7,152,3.2,7.4663,5.7569 +2012,7,15,1,30,29.700000000000003,1.72,0.189,0.62,34,200,52,0,7,11.5,28,1,0,28,0.297,32.49,84.64,0.9500000000000001,0.21,889,2.7,152,3.2,0.0000,0.0000 +2012,7,15,2,30,28.3,1.71,0.186,0.62,0,0,0,0,3,11.4,0,0,0,0,0.296,35.06,95.68,0.9500000000000001,0.21,890,2.8000000000000003,154,4,0.0000,0.0000 +2012,7,15,3,30,27.200000000000003,1.69,0.184,0.62,0,0,0,0,0,11.5,0,0,0,0,0.296,37.51,105.56,0.9500000000000001,0.21,890,2.8000000000000003,158,4.4,0.0000,0.0000 +2012,7,15,4,30,26,1.68,0.181,0.62,0,0,0,0,0,11.8,0,0,0,0,0.295,41.300000000000004,113.88,0.9500000000000001,0.21,890,2.9000000000000004,163,4.2,0.0000,0.0000 +2012,7,15,5,30,25,1.67,0.18,0.62,0,0,0,0,0,12.100000000000001,0,0,0,0,0.294,44.68,119.96000000000001,0.9500000000000001,0.21,891,2.9000000000000004,170,4.1000000000000005,0.0000,0.0000 +2012,7,15,6,30,24.3,1.6500000000000001,0.184,0.62,0,0,0,0,0,12.3,0,0,0,0,0.294,47.01,123.07000000000001,0.9500000000000001,0.21,891,2.9000000000000004,177,3.8000000000000003,0.0000,0.0000 +2012,7,15,7,30,23.6,1.6300000000000001,0.192,0.62,0,0,0,0,0,12.3,0,0,0,0,0.294,49.26,122.7,0.96,0.21,891,2.9000000000000004,185,3.6,0.0000,0.0000 +2012,7,15,8,30,23.1,1.61,0.201,0.62,0,0,0,0,1,12.4,0,0,0,0,0.294,50.92,118.93,0.96,0.21,891,3,191,3.3000000000000003,0.0000,0.0000 +2012,7,15,9,30,22.700000000000003,1.59,0.20800000000000002,0.62,0,0,0,0,3,12.4,0,0,0,0,0.294,52.25,112.33,0.96,0.21,891,3,198,3.1,0.0000,0.0000 +2012,7,15,10,30,22.400000000000002,1.58,0.218,0.62,0,0,0,0,8,12.4,0,0,0,0,0.295,53.25,103.65,0.96,0.21,891,3,204,2.9000000000000004,0.0000,0.0000 +2012,7,15,11,30,22.5,1.56,0.23,0.62,0,0,0,0,4,12.4,0,0,0,0,0.295,53,93.52,0.96,0.21,891,3,209,2.9000000000000004,0.0000,0.0000 +2012,7,15,12,30,23.5,1.56,0.242,0.62,49,223,79,7,7,12.5,62,10,7,63,0.295,49.99,82.34,0.96,0.21,891,3.1,215,3.1,0.0000,0.0000 +2012,7,15,13,30,25.400000000000002,1.56,0.256,0.62,104,472,260,0,4,12.5,36,0,0,36,0.296,44.83,70.69,0.96,0.21,891,3.1,221,3.5,9.2686,7.1722 +2012,7,15,14,30,27.3,1.57,0.265,0.62,140,612,459,0,4,12.5,64,0,0,64,0.297,40.03,58.620000000000005,0.96,0.21,892,3.2,228,3.8000000000000003,20.2367,15.8180 +2012,7,15,15,30,28.900000000000002,1.6,0.244,0.62,156,716,650,0,4,12.5,147,0,0,147,0.298,36.34,46.39,0.96,0.21,892,3.2,236,3.7,36.3280,28.5149 +2012,7,15,16,30,30.8,1.6500000000000001,0.202,0.62,153,798,812,0,4,12.3,225,0,0,225,0.298,32.29,34.29,0.9500000000000001,0.21,891,3.2,240,3.5,42.0346,33.0604 +2012,7,15,17,30,32.6,1.68,0.164,0.62,144,853,929,0,4,12.4,204,0,0,205,0.299,29.19,22.97,0.9400000000000001,0.21,891,3.1,239,3.2,51.6405,40.6560 +2012,7,15,18,30,33.800000000000004,1.67,0.14100000000000001,0.62,137,881,989,0,8,12.3,344,7,0,350,0.3,27.21,14.790000000000001,0.9400000000000001,0.21,890,3,237,2.9000000000000004,56.3043,44.3457 +2012,7,15,19,30,34.5,1.6600000000000001,0.136,0.62,135,885,986,0,8,12.100000000000001,314,5,0,318,0.301,25.78,15.96,0.9500000000000001,0.21,889,2.9000000000000004,229,2.5,57.9223,45.6179 +2012,7,15,20,30,34.7,1.6400000000000001,0.134,0.62,130,872,920,0,8,11.8,422,109,0,521,0.303,24.96,25.19,0.9500000000000001,0.21,888,2.9000000000000004,212,2.1,49.9247,39.2991 +2012,7,15,21,30,34.5,1.6300000000000001,0.134,0.62,123,842,798,0,8,11.3,345,37,0,374,0.304,24.54,36.78,0.9500000000000001,0.21,888,2.9000000000000004,190,2,38.2955,30.1100 +2012,7,15,22,30,33.7,1.6300000000000001,0.135,0.62,112,790,631,0,8,10.9,322,99,0,387,0.306,24.93,48.94,0.9500000000000001,0.21,888,2.9000000000000004,173,2.2,36.1923,28.3902 +2012,7,15,23,30,32.6,1.6300000000000001,0.131,0.62,95,707,436,0,8,10.600000000000001,228,100,0,277,0.308,26.03,61.17,0.9500000000000001,0.21,887,2.9000000000000004,165,2.5,22.3984,17.4826 +2012,7,16,0,30,30.700000000000003,1.6500000000000001,0.125,0.62,70,563,233,0,8,10.600000000000001,141,118,0,176,0.31,28.990000000000002,73.18,0.9500000000000001,0.21,888,2.8000000000000003,161,2.1,9.3019,7.1714 +2012,7,16,1,30,28.200000000000003,1.6600000000000001,0.121,0.62,30,255,54,0,8,12.5,38,4,0,39,0.312,37.79,84.71000000000001,0.9400000000000001,0.21,888,2.8000000000000003,158,1.7000000000000002,0.0000,0.0000 +2012,7,16,2,30,26.5,1.6600000000000001,0.122,0.62,0,0,0,0,8,12.600000000000001,0,0,0,0,0.312,42.03,95.77,0.9500000000000001,0.21,888,2.8000000000000003,159,2,0.0000,0.0000 +2012,7,16,3,30,25.700000000000003,1.6600000000000001,0.125,0.62,0,0,0,0,3,12.3,0,0,0,0,0.312,43.45,105.67,0.9500000000000001,0.21,889,2.8000000000000003,162,2.6,0.0000,0.0000 +2012,7,16,4,30,25,1.67,0.126,0.62,0,0,0,0,0,12.5,0,0,0,0,0.31,45.67,114,0.9500000000000001,0.21,889,2.8000000000000003,166,2.9000000000000004,0.0000,0.0000 +2012,7,16,5,30,24.200000000000003,1.68,0.124,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.309,48.44,120.11,0.9500000000000001,0.21,889,2.8000000000000003,171,3,0.0000,0.0000 +2012,7,16,6,30,23.400000000000002,1.68,0.121,0.62,0,0,0,0,1,12.700000000000001,0,0,0,0,0.308,51.01,123.23,0.9500000000000001,0.21,888,2.8000000000000003,176,2.9000000000000004,0.0000,0.0000 +2012,7,16,7,30,22.700000000000003,1.69,0.11800000000000001,0.62,0,0,0,0,1,12.700000000000001,0,0,0,0,0.307,53.17,122.87,0.9500000000000001,0.21,888,2.7,184,2.9000000000000004,0.0000,0.0000 +2012,7,16,8,30,22.1,1.69,0.114,0.62,0,0,0,0,4,12.600000000000001,0,0,0,0,0.307,54.7,119.09,0.9400000000000001,0.21,888,2.7,192,3,0.0000,0.0000 +2012,7,16,9,30,21.400000000000002,1.67,0.112,0.62,0,0,0,0,3,12.4,0,0,0,0,0.307,56.6,112.48,0.9400000000000001,0.21,888,2.6,199,2.8000000000000003,0.0000,0.0000 +2012,7,16,10,30,20.5,1.6500000000000001,0.109,0.62,0,0,0,0,3,12.3,0,0,0,0,0.307,59.51,103.78,0.9400000000000001,0.21,888,2.6,203,2.5,0.0000,0.0000 +2012,7,16,11,30,20.400000000000002,1.6300000000000001,0.107,0.62,0,0,0,0,7,12.3,0,0,0,0,0.307,59.67,93.64,0.9400000000000001,0.21,888,2.6,205,2.7,0.0000,0.0000 +2012,7,16,12,30,21.900000000000002,1.6,0.106,0.62,39,360,86,7,7,12.3,57,13,7,58,0.306,54.38,82.45,0.9400000000000001,0.21,888,2.6,205,3.2,0.0000,0.0000 +2012,7,16,13,30,25,1.59,0.106,0.62,70,627,277,0,8,12.100000000000001,134,318,0,239,0.304,44.49,70.79,0.9400000000000001,0.21,888,2.6,207,3.4000000000000004,1.8315,1.4171 +2012,7,16,14,30,28.5,1.57,0.107,0.62,90,757,483,0,0,11.200000000000001,90,757,0,483,0.302,34.11,58.72,0.9400000000000001,0.21,887,2.6,208,3.4000000000000004,3.5561,2.7795 +2012,7,16,15,30,31.6,1.56,0.109,0.62,104,830,676,0,0,9.9,104,830,0,676,0.301,26.310000000000002,46.49,0.9400000000000001,0.21,887,2.6,204,3.4000000000000004,8.5967,6.7476 +2012,7,16,16,30,33.9,1.54,0.111,0.62,115,870,832,0,0,9.4,115,870,0,832,0.3,22.21,34.4,0.9400000000000001,0.21,887,2.7,197,3.4000000000000004,13.5474,10.6549 +2012,7,16,17,30,35.5,1.52,0.115,0.62,123,892,944,0,0,9.200000000000001,123,892,0,944,0.3,20.14,23.1,0.9500000000000001,0.21,886,2.7,191,3.6,12.5414,9.8737 +2012,7,16,18,30,36.5,1.36,0.145,0.62,141,880,992,0,0,9.3,141,880,0,992,0.3,19.13,14.96,0.9500000000000001,0.21,885,2.8000000000000003,187,3.9000000000000004,21.5586,16.9796 +2012,7,16,19,30,36.800000000000004,1.32,0.17200000000000001,0.62,154,859,979,0,0,9.4,154,859,0,979,0.3,18.95,16.1,0.96,0.21,884,2.9000000000000004,187,4.2,19.5724,15.4146 +2012,7,16,20,30,36.300000000000004,1.28,0.2,0.62,163,822,907,0,4,9.5,211,0,0,211,0.3,19.63,25.28,0.97,0.21,884,3,187,4.6000000000000005,31.7950,25.0279 +2012,7,16,21,30,35.1,1.24,0.23500000000000001,0.62,169,762,778,0,4,9.8,459,206,0,623,0.3,21.45,36.85,0.97,0.21,883,3.1,186,5.2,22.4112,17.6208 +2012,7,16,22,30,33.800000000000004,1.24,0.245,0.62,156,694,612,7,3,10.3,339,333,7,558,0.3,23.830000000000002,49.01,0.97,0.21,883,3.1,182,5.7,22.4422,17.6041 +2012,7,16,23,30,32.300000000000004,1.27,0.217,0.62,123,618,421,0,0,10.700000000000001,123,618,0,421,0.3,26.61,61.230000000000004,0.96,0.21,883,3.1,177,6.300000000000001,15.1639,11.8354 +2012,7,17,0,30,30.3,1.3,0.181,0.62,83,487,223,0,3,11.100000000000001,135,8,0,137,0.301,30.68,73.25,0.96,0.21,884,3,173,6.300000000000001,8.7499,6.7452 +2012,7,17,1,30,28,1.33,0.162,0.62,33,191,50,7,7,11.600000000000001,46,21,7,48,0.302,36.17,84.79,0.9500000000000001,0.21,884,3,174,5.7,0.0000,0.0000 +2012,7,17,2,30,26.3,1.35,0.159,0.62,0,0,0,0,7,12,0,0,0,0,0.302,41.02,95.87,0.96,0.21,885,3.1,181,5.1000000000000005,0.0000,0.0000 +2012,7,17,3,30,25.3,1.35,0.17300000000000001,0.62,0,0,0,0,3,12.200000000000001,0,0,0,0,0.303,44.14,105.78,0.96,0.21,886,3.2,193,4.6000000000000005,0.0000,0.0000 +2012,7,17,4,30,24.6,1.33,0.185,0.62,0,0,0,0,3,12.4,0,0,0,0,0.302,46.69,114.14,0.96,0.21,887,3.3000000000000003,203,4.4,0.0000,0.0000 +2012,7,17,5,30,24,1.3,0.179,0.62,0,0,0,0,1,12.700000000000001,0,0,0,0,0.302,49.25,120.26,0.96,0.21,887,3.3000000000000003,208,4.3,0.0000,0.0000 +2012,7,17,6,30,23.3,1.24,0.168,0.62,0,0,0,0,8,13,0,0,0,0,0.302,52.22,123.39,0.96,0.21,887,3.2,211,4.1000000000000005,0.0000,0.0000 +2012,7,17,7,30,22.6,1.1500000000000001,0.165,0.62,0,0,0,0,0,13,0,0,0,0,0.301,54.71,123.04,0.9500000000000001,0.21,886,3.2,213,3.8000000000000003,0.0000,0.0000 +2012,7,17,8,30,22,1.09,0.165,0.62,0,0,0,0,0,13.100000000000001,0,0,0,0,0.302,56.86,119.26,0.9500000000000001,0.21,886,3.1,217,3.4000000000000004,0.0000,0.0000 +2012,7,17,9,30,21.400000000000002,1.07,0.161,0.62,0,0,0,0,3,13.100000000000001,0,0,0,0,0.302,59.04,112.63,0.9500000000000001,0.21,886,3.1,222,3.1,0.0000,0.0000 +2012,7,17,10,30,20.900000000000002,1.08,0.156,0.62,0,0,0,0,0,13,0,0,0,0,0.302,60.69,103.92,0.9500000000000001,0.21,886,3.1,226,2.9000000000000004,0.0000,0.0000 +2012,7,17,11,30,21.1,1.06,0.156,0.62,0,0,0,0,0,12.9,0,0,0,0,0.301,59.59,93.77,0.9500000000000001,0.21,887,3,229,3.1,0.0000,0.0000 +2012,7,17,12,30,22.8,1.03,0.156,0.62,45,261,79,0,0,12.8,45,261,0,79,0.301,53.17,82.56,0.9500000000000001,0.21,887,3,230,3.9000000000000004,0.0000,0.0000 +2012,7,17,13,30,25.900000000000002,0.99,0.156,0.62,86,544,264,0,0,12.200000000000001,86,544,0,264,0.301,42.63,70.9,0.9500000000000001,0.21,887,3,231,4.9,12.1482,9.3979 +2012,7,17,14,30,29,0.96,0.154,0.62,110,693,469,0,0,11.3,110,693,0,469,0.301,33.44,58.82,0.9500000000000001,0.21,887,2.9000000000000004,235,5.1000000000000005,26.8230,20.9640 +2012,7,17,15,30,31.400000000000002,0.96,0.153,0.62,127,778,661,0,0,10.8,127,778,0,661,0.302,28.23,46.59,0.9500000000000001,0.21,887,2.9000000000000004,232,4.6000000000000005,39.5208,31.0196 +2012,7,17,16,30,33.2,0.98,0.152,0.62,137,826,818,0,0,10.9,137,826,0,818,0.302,25.580000000000002,34.5,0.9500000000000001,0.21,887,3,221,4.2,50.0851,39.3912 +2012,7,17,17,30,34.6,0.99,0.152,0.62,144,855,930,0,0,10.9,144,855,0,930,0.303,23.63,23.22,0.9500000000000001,0.21,886,3,210,4.3,57.7439,45.4604 +2012,7,17,18,30,35.6,1.17,0.11800000000000001,0.62,129,893,991,0,0,10.8,129,893,0,991,0.304,22.23,15.120000000000001,0.9500000000000001,0.21,886,3,203,4.6000000000000005,61.0965,48.1195 +2012,7,17,19,30,36.1,1.18,0.117,0.62,128,892,985,0,0,10.700000000000001,128,892,0,985,0.304,21.47,16.240000000000002,0.9500000000000001,0.21,885,3,199,4.7,60.2502,47.4508 +2012,7,17,20,30,36.300000000000004,1.18,0.117,0.62,125,878,918,0,0,10.600000000000001,125,878,0,918,0.305,21.14,25.38,0.9500000000000001,0.21,885,3,196,4.800000000000001,12.8753,10.1349 +2012,7,17,21,30,36.2,1.16,0.11900000000000001,0.62,119,849,798,0,0,10.4,119,849,0,798,0.304,20.92,36.92,0.9500000000000001,0.21,884,2.9000000000000004,192,4.7,37.3268,29.3479 +2012,7,17,22,30,35.5,1.1400000000000001,0.121,0.62,109,796,631,0,0,10,109,796,0,631,0.304,21.25,49.07,0.9500000000000001,0.21,884,2.9000000000000004,189,4.5,32.3506,25.3759 +2012,7,17,23,30,34.4,1.1,0.125,0.62,95,706,434,0,0,9.700000000000001,95,706,0,434,0.304,22.18,61.300000000000004,0.9500000000000001,0.21,884,2.8000000000000003,184,4.3,23.0384,17.9808 +2012,7,18,0,30,32.300000000000004,1.06,0.128,0.62,73,541,228,0,3,9.700000000000001,140,275,0,218,0.304,24.84,73.33,0.9500000000000001,0.21,885,2.8000000000000003,176,3.6,6.8066,5.2465 +2012,7,18,1,30,29.700000000000003,1.01,0.13,0.62,32,205,50,0,1,10.3,32,205,0,50,0.304,30.080000000000002,84.88,0.9500000000000001,0.21,885,2.7,168,3.2,0.0000,0.0000 +2012,7,18,2,30,28.1,0.9500000000000001,0.133,0.62,0,0,0,0,3,10.600000000000001,0,0,0,0,0.305,33.55,95.97,0.9500000000000001,0.21,886,2.7,164,3.8000000000000003,0.0000,0.0000 +2012,7,18,3,30,27.1,0.9,0.136,0.62,0,0,0,0,7,10.9,0,0,0,0,0.305,36.28,105.9,0.9500000000000001,0.21,886,2.7,166,4.3,0.0000,0.0000 +2012,7,18,4,30,26,0.85,0.14,0.62,0,0,0,0,7,11.4,0,0,0,0,0.305,40.15,114.28,0.9500000000000001,0.21,887,2.8000000000000003,170,4.2,0.0000,0.0000 +2012,7,18,5,30,25,0.8,0.145,0.62,0,0,0,0,3,11.8,0,0,0,0,0.304,43.62,120.42,0.9500000000000001,0.21,887,2.8000000000000003,176,4.1000000000000005,0.0000,0.0000 +2012,7,18,6,30,24.200000000000003,0.76,0.152,0.62,0,0,0,0,3,12,0,0,0,0,0.304,46.38,123.57000000000001,0.9500000000000001,0.21,887,2.8000000000000003,183,3.9000000000000004,0.0000,0.0000 +2012,7,18,7,30,23.400000000000002,0.72,0.162,0.62,0,0,0,0,1,12.3,0,0,0,0,0.303,49.57,123.22,0.9500000000000001,0.21,887,2.9000000000000004,193,3.7,0.0000,0.0000 +2012,7,18,8,30,22.700000000000003,0.6900000000000001,0.17300000000000001,0.62,0,0,0,0,1,12.700000000000001,0,0,0,0,0.303,53.36,119.43,0.9500000000000001,0.21,887,3,203,3.6,0.0000,0.0000 +2012,7,18,9,30,22.200000000000003,0.68,0.183,0.62,0,0,0,0,7,13.200000000000001,0,0,0,0,0.303,56.77,112.79,0.9500000000000001,0.21,888,3,211,3.4000000000000004,0.0000,0.0000 +2012,7,18,10,30,21.8,0.68,0.189,0.62,0,0,0,0,7,13.700000000000001,0,0,0,0,0.303,59.88,104.06,0.9500000000000001,0.21,888,3,218,3.2,0.0000,0.0000 +2012,7,18,11,30,22,0.7000000000000001,0.19,0.62,0,0,0,0,1,14,0,0,0,0,0.303,60.65,93.9,0.9500000000000001,0.21,889,3,223,3.4000000000000004,0.0000,0.0000 +2012,7,18,12,30,23.6,0.71,0.192,0.62,48,197,73,0,0,14.4,48,197,0,73,0.303,56.49,82.68,0.9500000000000001,0.21,889,3,226,4.3,0.0000,0.0000 +2012,7,18,13,30,26.400000000000002,0.72,0.193,0.62,97,489,257,0,0,14.9,97,489,0,257,0.302,49.33,71,0.9500000000000001,0.21,890,2.9000000000000004,228,4.9,13.4054,10.3689 +2012,7,18,14,30,29.5,0.73,0.193,0.62,127,647,460,0,0,14.700000000000001,127,647,0,460,0.302,40.65,58.92,0.9500000000000001,0.21,890,2.9000000000000004,226,4.5,26.0311,20.3441 +2012,7,18,15,30,32.2,0.73,0.193,0.62,146,735,650,0,0,13.9,146,735,0,650,0.302,32.910000000000004,46.69,0.9500000000000001,0.21,890,3,214,3.8000000000000003,38.6317,30.3211 +2012,7,18,16,30,34.2,0.74,0.19,0.62,158,792,809,0,0,13,158,792,0,809,0.303,27.740000000000002,34.61,0.9500000000000001,0.21,890,3,197,3.5,49.2333,38.7208 +2012,7,18,17,30,35.5,0.75,0.184,0.62,163,827,922,0,0,12.4,163,827,0,922,0.303,24.84,23.36,0.9500000000000001,0.21,889,3,183,3.6,56.8803,44.7801 +2012,7,18,18,30,36.4,0.92,0.129,0.62,137,882,987,0,1,12.100000000000001,137,882,0,987,0.304,23.17,15.3,0.9500000000000001,0.21,889,3,176,3.7,61.0287,48.0657 +2012,7,18,19,30,36.800000000000004,0.92,0.127,0.62,135,882,982,7,2,11.8,332,627,7,934,0.304,22.3,16.39,0.9500000000000001,0.21,888,3,173,3.9000000000000004,60.6135,47.7367 +2012,7,18,20,30,36.9,0.92,0.125,0.62,131,869,915,0,0,11.600000000000001,131,869,0,915,0.304,21.84,25.48,0.9500000000000001,0.21,888,3,171,3.9000000000000004,56.0101,44.0885 +2012,7,18,21,30,36.5,0.97,0.107,0.62,115,856,798,0,0,11.3,115,856,0,798,0.304,21.85,37,0.9500000000000001,0.21,888,2.9000000000000004,170,3.9000000000000004,47.8050,37.5859 +2012,7,18,22,30,35.800000000000004,0.96,0.10200000000000001,0.62,102,812,633,0,0,10.8,102,812,0,633,0.304,22.03,49.15,0.9500000000000001,0.21,888,2.8000000000000003,170,3.8000000000000003,36.5752,28.6892 +2012,7,18,23,30,34.6,0.9500000000000001,0.097,0.62,86,734,438,0,0,10.4,86,734,0,438,0.304,22.87,61.38,0.9500000000000001,0.21,888,2.7,171,3.7,23.7395,18.5272 +2012,7,19,0,30,32.4,0.9500000000000001,0.093,0.62,64,585,231,0,0,10,64,585,0,231,0.303,25.310000000000002,73.41,0.9500000000000001,0.21,888,2.7,172,2.9000000000000004,10.8228,8.3412 +2012,7,19,1,30,29.700000000000003,0.9500000000000001,0.09,0.62,29,254,51,0,0,10.8,29,254,0,51,0.303,31.01,84.97,0.9500000000000001,0.21,889,2.6,172,2.3000000000000003,0.0000,0.0000 +2012,7,19,2,30,28.200000000000003,0.96,0.08700000000000001,0.62,0,0,0,0,0,10.8,0,0,0,0,0.303,33.97,96.08,0.9400000000000001,0.21,889,2.6,175,3,0.0000,0.0000 +2012,7,19,3,30,27.400000000000002,0.97,0.08600000000000001,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.302,35.160000000000004,106.02,0.9400000000000001,0.21,890,2.6,181,3.8000000000000003,0.0000,0.0000 +2012,7,19,4,30,26.400000000000002,0.99,0.08600000000000001,0.62,0,0,0,0,0,10.700000000000001,0,0,0,0,0.301,37.46,114.42,0.9400000000000001,0.21,890,2.6,186,4.1000000000000005,0.0000,0.0000 +2012,7,19,5,30,25.400000000000002,0.99,0.089,0.62,0,0,0,0,0,10.8,0,0,0,0,0.3,39.910000000000004,120.58,0.9500000000000001,0.21,890,2.6,192,4.1000000000000005,0.0000,0.0000 +2012,7,19,6,30,24.700000000000003,0.97,0.094,0.62,0,0,0,0,0,10.9,0,0,0,0,0.299,41.87,123.75,0.9500000000000001,0.21,891,2.7,197,3.9000000000000004,0.0000,0.0000 +2012,7,19,7,30,24,0.9500000000000001,0.1,0.62,0,0,0,0,0,11.100000000000001,0,0,0,0,0.297,44.17,123.4,0.9500000000000001,0.21,891,2.7,203,3.7,0.0000,0.0000 +2012,7,19,8,30,23.3,0.92,0.108,0.62,0,0,0,0,0,11.3,0,0,0,0,0.296,46.910000000000004,119.60000000000001,0.9500000000000001,0.21,891,2.8000000000000003,210,3.6,0.0000,0.0000 +2012,7,19,9,30,22.700000000000003,0.9,0.114,0.62,0,0,0,0,0,11.600000000000001,0,0,0,0,0.294,49.69,112.95,0.9500000000000001,0.21,892,2.7,218,3.6,0.0000,0.0000 +2012,7,19,10,30,22.1,0.89,0.11800000000000001,0.62,0,0,0,0,0,11.9,0,0,0,0,0.293,52.46,104.21000000000001,0.9500000000000001,0.21,892,2.7,227,3.5,0.0000,0.0000 +2012,7,19,11,30,22.1,0.89,0.11900000000000001,0.62,0,0,0,0,0,12.100000000000001,0,0,0,0,0.292,53.21,94.03,0.9500000000000001,0.21,892,2.6,235,3.6,0.0000,0.0000 +2012,7,19,12,30,23.8,0.89,0.11800000000000001,0.62,41,299,79,0,0,12.4,41,299,0,79,0.291,48.94,82.79,0.9500000000000001,0.21,893,2.5,240,3.9000000000000004,0.0000,0.0000 +2012,7,19,13,30,27,0.89,0.116,0.62,77,597,270,0,0,13.200000000000001,77,597,0,270,0.291,42.51,71.11,0.9500000000000001,0.21,893,2.4000000000000004,241,3.8000000000000003,13.0380,10.0834 +2012,7,19,14,30,30.400000000000002,0.9,0.111,0.62,96,747,480,0,0,13.5,96,747,0,480,0.291,35.550000000000004,59.03,0.9500000000000001,0.21,893,2.3000000000000003,231,3.1,25.5174,19.9416 +2012,7,19,15,30,33,0.9,0.106,0.62,108,829,676,0,0,11.9,108,829,0,676,0.292,27.68,46.79,0.9500000000000001,0.21,893,2.3000000000000003,205,2.2,37.9768,29.8064 +2012,7,19,16,30,34.7,0.92,0.10400000000000001,0.62,116,877,837,0,0,10.8,116,877,0,837,0.293,23.34,34.72,0.9500000000000001,0.21,893,2.3000000000000003,183,2.1,48.6818,38.2866 +2012,7,19,17,30,36,0.9400000000000001,0.10300000000000001,0.62,121,903,950,0,0,10.100000000000001,121,903,0,950,0.294,20.8,23.490000000000002,0.9500000000000001,0.21,892,2.3000000000000003,176,2.3000000000000003,56.3826,44.3879 +2012,7,19,18,30,36.9,0.97,0.098,0.62,121,916,1004,0,0,9.700000000000001,121,916,0,1004,0.295,19.25,15.48,0.9500000000000001,0.21,892,2.4000000000000004,176,2.7,60.7752,47.8658 +2012,7,19,19,30,37.4,0.98,0.098,0.62,121,915,998,0,0,9.4,121,915,0,998,0.296,18.43,16.55,0.9500000000000001,0.21,891,2.4000000000000004,177,3,57.4691,45.2600 +2012,7,19,20,30,37.5,1,0.098,0.62,117,902,931,0,0,9.3,117,902,0,931,0.297,18.2,25.580000000000002,0.9500000000000001,0.21,891,2.4000000000000004,178,3.2,55.8204,43.9389 +2012,7,19,21,30,37.2,1,0.083,0.62,103,886,811,0,0,9.3,103,886,0,811,0.297,18.41,37.08,0.9500000000000001,0.21,890,2.4000000000000004,178,3.4000000000000004,47.7972,37.5793 +2012,7,19,22,30,36.4,1.01,0.081,0.62,93,841,643,0,0,9.200000000000001,93,841,0,643,0.297,19.13,49.22,0.9500000000000001,0.21,890,2.4000000000000004,177,3.4000000000000004,36.6808,28.7714 +2012,7,19,23,30,35.2,1.03,0.08,0.62,80,762,444,0,0,9.1,80,762,0,444,0.296,20.330000000000002,61.45,0.9500000000000001,0.21,890,2.4000000000000004,177,3.3000000000000003,23.9463,18.6876 +2012,7,20,0,30,32.9,1.05,0.077,0.62,60,616,235,0,0,9.1,60,616,0,235,0.296,23.080000000000002,73.5,0.9400000000000001,0.21,890,2.4000000000000004,178,2.7,11.4597,8.8309 +2012,7,20,1,30,30,1.07,0.075,0.62,27,285,52,0,0,10.100000000000001,27,285,0,52,0.296,29.05,85.06,0.9400000000000001,0.21,891,2.4000000000000004,182,2.2,0.0000,0.0000 +2012,7,20,2,30,28.400000000000002,1.1,0.07100000000000001,0.62,0,0,0,0,0,10.3,0,0,0,0,0.296,32.28,96.19,0.9400000000000001,0.21,891,2.4000000000000004,189,2.8000000000000003,0.0000,0.0000 +2012,7,20,3,30,27.6,1.1300000000000001,0.068,0.62,0,0,0,0,0,10.3,0,0,0,0,0.296,33.86,106.15,0.9400000000000001,0.21,892,2.4000000000000004,196,3.5,0.0000,0.0000 +2012,7,20,4,30,26.700000000000003,1.1500000000000001,0.067,0.62,0,0,0,0,0,10.600000000000001,0,0,0,0,0.296,36.44,114.57000000000001,0.9400000000000001,0.21,892,2.4000000000000004,204,3.7,0.0000,0.0000 +2012,7,20,5,30,26,1.16,0.066,0.62,0,0,0,0,0,11,0,0,0,0,0.297,39.11,120.75,0.9400000000000001,0.21,892,2.5,211,3.8000000000000003,0.0000,0.0000 +2012,7,20,6,30,25.3,1.17,0.066,0.62,0,0,0,0,0,11.5,0,0,0,0,0.297,42.19,123.93,0.9400000000000001,0.21,892,2.6,218,3.7,0.0000,0.0000 +2012,7,20,7,30,24.700000000000003,1.18,0.065,0.62,0,0,0,0,0,12,0,0,0,0,0.297,45.17,123.59,0.9400000000000001,0.21,892,2.6,226,3.6,0.0000,0.0000 +2012,7,20,8,30,24.1,1.19,0.064,0.62,0,0,0,0,0,12.4,0,0,0,0,0.296,47.94,119.78,0.9400000000000001,0.21,892,2.7,234,3.5,0.0000,0.0000 +2012,7,20,9,30,23.5,1.19,0.063,0.62,0,0,0,0,0,12.600000000000001,0,0,0,0,0.296,50.53,113.11,0.9400000000000001,0.21,892,2.6,241,3.4000000000000004,0.0000,0.0000 +2012,7,20,10,30,22.900000000000002,1.19,0.062,0.62,0,0,0,0,0,12.8,0,0,0,0,0.295,53.11,104.35000000000001,0.93,0.21,892,2.6,246,3.3000000000000003,0.0000,0.0000 +2012,7,20,11,30,23,1.19,0.061,0.62,0,0,0,0,0,13.100000000000001,0,0,0,0,0.295,53.6,94.16,0.93,0.21,893,2.5,250,3.5,0.0000,0.0000 +2012,7,20,12,30,24.8,1.18,0.06,0.62,33,407,83,0,0,13.3,33,407,0,83,0.294,48.910000000000004,82.91,0.93,0.21,893,2.4000000000000004,253,4,0.0000,0.0000 +2012,7,20,13,30,27.900000000000002,1.18,0.06,0.62,58,680,277,0,0,13.9,58,680,0,277,0.294,42.2,71.22,0.93,0.21,893,2.4000000000000004,254,4,13.6837,10.5812 +2012,7,20,14,30,30.8,1.18,0.059000000000000004,0.62,73,808,488,7,3,13.9,217,458,7,452,0.294,35.76,59.13,0.93,0.21,894,2.3000000000000003,246,3.3000000000000003,26.6105,20.7946 +2012,7,20,15,30,33.1,1.18,0.059000000000000004,0.62,84,874,681,0,0,13.200000000000001,84,874,0,681,0.293,29.89,46.9,0.93,0.21,894,2.4000000000000004,224,2.4000000000000004,39.4834,30.9881 +2012,7,20,16,30,34.800000000000004,1.2,0.06,0.62,92,914,841,0,0,12.5,92,914,0,841,0.293,26.060000000000002,34.84,0.93,0.21,894,2.4000000000000004,194,2.1,50.3565,39.6031 +2012,7,20,17,30,36.2,1.22,0.061,0.62,97,934,952,0,0,12,97,934,0,952,0.293,23.29,23.63,0.9400000000000001,0.21,893,2.5,174,2.4000000000000004,58.0868,45.7291 +2012,7,20,18,30,37.1,1.23,0.06,0.62,99,942,1006,0,0,11.600000000000001,99,942,0,1006,0.292,21.61,15.66,0.9400000000000001,0.21,893,2.6,167,2.8000000000000003,61.8147,48.6841 +2012,7,20,19,30,37.6,1.26,0.062,0.62,99,938,998,0,0,11.3,99,938,0,998,0.292,20.62,16.71,0.9400000000000001,0.21,892,2.7,165,3,61.4001,48.3555 +2012,7,20,20,30,37.7,1.27,0.065,0.62,98,923,930,0,0,11.100000000000001,98,923,0,930,0.292,20.2,25.69,0.9400000000000001,0.21,891,2.7,164,3.1,56.7897,44.7015 +2012,7,20,21,30,37.4,1.28,0.069,0.62,95,894,807,0,0,10.8,95,894,0,807,0.292,20.17,37.17,0.9400000000000001,0.21,891,2.7,163,3.2,48.5678,38.1848 +2012,7,20,22,30,36.7,1.29,0.069,0.62,86,849,639,0,0,10.4,86,849,0,639,0.293,20.43,49.31,0.9400000000000001,0.21,890,2.7,163,3.1,37.2510,29.2181 +2012,7,20,23,30,35.5,1.29,0.068,0.62,74,774,443,0,0,10.200000000000001,74,774,0,443,0.293,21.46,61.54,0.9400000000000001,0.21,890,2.6,165,3,24.2637,18.9345 +2012,7,21,0,30,33.4,1.29,0.066,0.62,56,631,234,0,0,10,56,631,0,234,0.293,23.89,73.59,0.9400000000000001,0.2,891,2.6,170,2.2,11.6485,8.9750 +2012,7,21,1,30,30.5,1.3,0.064,0.62,26,306,51,0,0,11.100000000000001,26,306,0,51,0.293,30.25,85.16,0.9400000000000001,0.2,891,2.6,177,1.4000000000000001,0.0000,0.0000 +2012,7,21,2,30,28.700000000000003,1.3,0.063,0.62,0,0,0,0,0,11.100000000000001,0,0,0,0,0.294,33.65,96.31,0.9400000000000001,0.2,891,2.5,186,1.5,0.0000,0.0000 +2012,7,21,3,30,27.900000000000002,1.3,0.063,0.62,0,0,0,0,0,10.9,0,0,0,0,0.293,34.6,106.29,0.9400000000000001,0.2,892,2.6,194,1.7000000000000002,0.0000,0.0000 +2012,7,21,4,30,27.200000000000003,1.3,0.064,0.62,0,0,0,0,4,10.8,0,0,0,0,0.293,35.87,114.73,0.9400000000000001,0.2,892,2.6,201,2,0.0000,0.0000 +2012,7,21,5,30,26.6,1.3,0.065,0.62,0,0,0,0,4,10.9,0,0,0,0,0.292,37.46,120.93,0.9400000000000001,0.2,892,2.6,207,2.2,0.0000,0.0000 +2012,7,21,6,30,26,1.29,0.066,0.62,0,0,0,0,1,11.100000000000001,0,0,0,0,0.292,39.38,124.12,0.9400000000000001,0.2,892,2.6,213,2.4000000000000004,0.0000,0.0000 +2012,7,21,7,30,25.400000000000002,1.29,0.066,0.62,0,0,0,0,0,11.3,0,0,0,0,0.292,41.4,123.78,0.9400000000000001,0.2,892,2.6,219,2.5,0.0000,0.0000 +2012,7,21,8,30,24.700000000000003,1.28,0.067,0.62,0,0,0,0,0,11.5,0,0,0,0,0.292,43.68,119.97,0.9400000000000001,0.2,892,2.5,228,2.5,0.0000,0.0000 +2012,7,21,9,30,23.900000000000002,1.27,0.067,0.62,0,0,0,0,0,11.700000000000001,0,0,0,0,0.292,46.480000000000004,113.28,0.9400000000000001,0.2,892,2.5,238,2.3000000000000003,0.0000,0.0000 +2012,7,21,10,30,23.200000000000003,1.26,0.066,0.62,0,0,0,0,0,12,0,0,0,0,0.292,49.47,104.5,0.9400000000000001,0.2,892,2.4000000000000004,249,2.1,0.0000,0.0000 +2012,7,21,11,30,23.5,1.26,0.064,0.62,0,0,0,0,0,12.5,0,0,0,0,0.292,49.94,94.29,0.9400000000000001,0.2,892,2.3000000000000003,259,2.4000000000000004,0.0000,0.0000 +2012,7,21,12,30,25.6,1.26,0.063,0.62,33,404,82,0,0,13,33,404,0,82,0.292,45.49,83.03,0.93,0.2,893,2.2,269,2.8000000000000003,0.0000,0.0000 +2012,7,21,13,30,29.3,1.27,0.062,0.62,59,685,278,0,0,13.3,59,685,0,278,0.293,37.550000000000004,71.33,0.93,0.2,893,2.1,266,2.2,14.0243,10.8429 +2012,7,21,14,30,33.1,1.29,0.061,0.62,74,814,490,0,0,11.8,74,814,0,490,0.293,27.310000000000002,59.24,0.93,0.2,893,2,209,1.3,25.0442,19.5696 +2012,7,21,15,30,35.300000000000004,1.31,0.062,0.62,85,882,686,0,0,9.8,85,882,0,686,0.294,21.22,47.01,0.93,0.2,893,2,146,1.2000000000000002,39.7615,31.2056 +2012,7,21,16,30,36.800000000000004,1.33,0.064,0.62,93,920,848,0,0,8.9,93,920,0,848,0.295,18.31,34.95,0.93,0.2,892,2,130,1.7000000000000002,50.5859,39.7829 +2012,7,21,17,30,38,1.34,0.066,0.62,99,939,959,0,1,8.200000000000001,99,939,0,959,0.296,16.38,23.77,0.9400000000000001,0.2,892,2.1,128,2.1,58.2002,45.8181 +2012,7,21,18,30,38.800000000000004,1.34,0.07,0.62,103,946,1014,0,0,7.7,103,946,0,1014,0.297,15.14,15.85,0.9400000000000001,0.2,891,2.1,128,2.7,61.9304,48.7749 +2012,7,21,19,30,39.300000000000004,1.33,0.074,0.62,105,940,1005,0,1,7.300000000000001,105,940,0,1005,0.297,14.43,16.89,0.9400000000000001,0.2,890,2.2,129,3.1,61.3930,48.3496 +2012,7,21,20,30,39.400000000000006,1.33,0.078,0.62,104,922,934,0,0,7.2,104,922,0,934,0.297,14.24,25.810000000000002,0.9400000000000001,0.2,890,2.3000000000000003,130,3.4000000000000004,56.7212,44.6472 +2012,7,21,21,30,39.1,1.29,0.088,0.62,103,887,809,0,0,7.2,103,887,0,809,0.297,14.450000000000001,37.27,0.9400000000000001,0.2,889,2.3000000000000003,131,3.5,48.3193,37.9890 +2012,7,21,22,30,38.300000000000004,1.28,0.095,0.62,98,830,638,7,2,7.2,334,287,7,521,0.296,15.11,49.39,0.9500000000000001,0.2,889,2.4000000000000004,132,3.5,37.0074,29.0263 +2012,7,21,23,30,37,1.27,0.10400000000000001,0.62,87,732,435,7,8,7.4,175,446,7,387,0.296,16.4,61.63,0.9500000000000001,0.2,889,2.6,133,3.4000000000000004,24.1953,18.8801 +2012,7,22,0,30,34.7,1.26,0.114,0.62,68,561,225,0,8,7.800000000000001,117,308,0,203,0.295,19.12,73.68,0.96,0.21,889,2.7,136,2.7,11.5892,8.9280 +2012,7,22,1,30,32.300000000000004,1.27,0.124,0.62,29,209,46,7,3,9.1,32,0,7,32,0.295,23.97,85.27,0.96,0.21,889,2.8000000000000003,139,2,0.0000,0.0000 +2012,7,22,2,30,30.900000000000002,1.28,0.124,0.62,0,0,0,0,8,9.600000000000001,0,0,0,0,0.296,26.78,96.43,0.9500000000000001,0.21,890,2.8000000000000003,140,2.2,0.0000,0.0000 +2012,7,22,3,30,29.900000000000002,1.3,0.117,0.62,0,0,0,0,8,9.700000000000001,0,0,0,0,0.296,28.48,106.43,0.9500000000000001,0.21,890,2.8000000000000003,137,2.4000000000000004,0.0000,0.0000 +2012,7,22,4,30,28.8,1.32,0.111,0.62,0,0,0,0,3,9.700000000000001,0,0,0,0,0.296,30.32,114.89,0.9500000000000001,0.21,890,2.8000000000000003,133,2.5,0.0000,0.0000 +2012,7,22,5,30,27.8,1.34,0.105,0.62,0,0,0,0,1,9.600000000000001,0,0,0,0,0.296,31.92,121.11,0.9400000000000001,0.21,891,2.7,129,2.6,0.0000,0.0000 +2012,7,22,6,30,26.700000000000003,1.36,0.099,0.62,0,0,0,0,1,9.4,0,0,0,0,0.295,33.78,124.32000000000001,0.9400000000000001,0.21,891,2.6,126,2.3000000000000003,0.0000,0.0000 +2012,7,22,7,30,25.5,1.3800000000000001,0.095,0.62,0,0,0,0,0,9.200000000000001,0,0,0,0,0.295,35.61,123.98,0.9400000000000001,0.21,891,2.5,123,2,0.0000,0.0000 +2012,7,22,8,30,24.5,1.3900000000000001,0.092,0.62,0,0,0,0,0,8.9,0,0,0,0,0.294,37.07,120.15,0.93,0.21,891,2.4000000000000004,121,1.7000000000000002,0.0000,0.0000 +2012,7,22,9,30,23.5,1.4000000000000001,0.089,0.62,0,0,0,0,0,8.700000000000001,0,0,0,0,0.294,38.910000000000004,113.45,0.93,0.21,891,2.4000000000000004,120,1.4000000000000001,0.0000,0.0000 +2012,7,22,10,30,22.5,1.41,0.08700000000000001,0.62,0,0,0,0,0,8.6,0,0,0,0,0.293,41.15,104.65,0.93,0.21,891,2.4000000000000004,118,1.2000000000000002,0.0000,0.0000 +2012,7,22,11,30,22.700000000000003,1.41,0.08600000000000001,0.62,0,0,0,0,0,8.6,0,0,0,0,0.292,40.62,94.43,0.93,0.21,891,2.3000000000000003,117,1.5,0.0000,0.0000 +2012,7,22,12,30,24.5,1.41,0.08600000000000001,0.62,35,363,78,7,3,8.700000000000001,55,5,7,55,0.291,36.63,83.15,0.93,0.21,891,2.3000000000000003,115,2,0.0000,0.0000 +2012,7,22,13,30,27.900000000000002,1.43,0.083,0.62,64,654,272,7,3,8.9,160,195,7,222,0.291,30.330000000000002,71.45,0.93,0.21,892,2.2,113,2.2,14.0607,10.8693 +2012,7,22,14,30,31.900000000000002,1.46,0.077,0.62,79,792,483,0,0,8.4,79,792,0,483,0.292,23.240000000000002,59.34,0.92,0.21,892,2.2,107,2.3000000000000003,27.1328,21.2004 +2012,7,22,15,30,34.6,1.49,0.074,0.62,89,869,681,0,0,7.5,89,869,0,681,0.292,18.81,47.11,0.92,0.21,892,2.1,96,2.5,40.0394,31.4228 +2012,7,22,16,30,36.300000000000004,1.52,0.07200000000000001,0.62,96,915,845,0,0,7.1000000000000005,96,915,0,845,0.293,16.67,35.07,0.91,0.21,891,2,88,2.8000000000000003,50.9965,40.1053 +2012,7,22,17,30,37.4,1.56,0.07100000000000001,0.62,100,939,958,0,0,6.800000000000001,100,939,0,958,0.294,15.39,23.92,0.91,0.21,891,2,87,3,58.6192,46.1475 +2012,7,22,18,30,38.2,1.58,0.07100000000000001,0.62,103,949,1015,0,0,6.4,103,949,0,1015,0.295,14.31,16.05,0.92,0.21,891,2,89,3.2,62.4149,49.1561 +2012,7,22,19,30,38.5,1.57,0.07200000000000001,0.62,103,950,1011,0,0,5.9,103,950,0,1011,0.296,13.61,17.06,0.92,0.21,890,1.9000000000000001,92,3.2,61.8155,48.6820 +2012,7,22,20,30,38.5,1.56,0.074,0.62,101,936,943,0,0,5.5,101,936,0,943,0.297,13.25,25.94,0.92,0.21,890,1.9000000000000001,97,3.3000000000000003,56.9569,44.8323 +2012,7,22,21,30,37.9,1.55,0.077,0.62,98,907,819,0,0,5.1000000000000005,98,907,0,819,0.298,13.35,37.37,0.93,0.21,889,1.9000000000000001,102,3.5,48.4290,38.0747 +2012,7,22,22,30,36.800000000000004,1.53,0.078,0.62,90,863,650,0,0,4.800000000000001,90,863,0,650,0.298,13.86,49.49,0.93,0.21,889,1.8,107,3.7,30.1649,23.6590 +2012,7,22,23,30,35.300000000000004,1.53,0.078,0.62,77,783,448,0,0,4.7,77,783,0,448,0.299,14.97,61.72,0.93,0.21,889,1.8,112,3.8000000000000003,21.1247,16.4831 +2012,7,23,0,30,33.300000000000004,1.53,0.079,0.62,58,633,235,0,0,5.1000000000000005,58,633,0,235,0.299,17.18,73.78,0.93,0.21,889,1.8,116,3.5,10.0456,7.7377 +2012,7,23,1,30,31.3,1.52,0.081,0.62,26,290,49,0,0,6.2,26,290,0,49,0.299,20.82,85.38,0.93,0.21,890,1.9000000000000001,121,3.3000000000000003,0.0000,0.0000 +2012,7,23,2,30,29.900000000000002,1.52,0.083,0.62,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.3,24.73,96.56,0.93,0.21,890,2,125,3.6,0.0000,0.0000 +2012,7,23,3,30,28.900000000000002,1.51,0.08600000000000001,0.62,0,0,0,0,1,9.1,0,0,0,0,0.299,28.94,106.58,0.93,0.21,891,2.1,130,3.9000000000000004,0.0000,0.0000 +2012,7,23,4,30,27.900000000000002,1.51,0.09,0.62,0,0,0,0,8,10.5,0,0,0,0,0.299,33.77,115.06,0.93,0.21,891,2.2,134,4,0.0000,0.0000 +2012,7,23,5,30,26.900000000000002,1.5,0.093,0.62,0,0,0,0,3,11.8,0,0,0,0,0.299,38.95,121.3,0.93,0.21,891,2.3000000000000003,138,3.8000000000000003,0.0000,0.0000 +2012,7,23,6,30,25.900000000000002,1.49,0.094,0.62,0,0,0,0,7,12.8,0,0,0,0,0.298,44.36,124.52,0.93,0.21,891,2.4000000000000004,140,3.3000000000000003,0.0000,0.0000 +2012,7,23,7,30,25,1.46,0.096,0.62,0,0,0,0,0,13.700000000000001,0,0,0,0,0.298,49.480000000000004,124.18,0.93,0.21,891,2.5,140,2.8000000000000003,0.0000,0.0000 +2012,7,23,8,30,24.1,1.44,0.097,0.62,0,0,0,0,0,14.3,0,0,0,0,0.297,54.35,120.34,0.93,0.21,891,2.6,140,2.2,0.0000,0.0000 +2012,7,23,9,30,23.3,1.42,0.097,0.62,0,0,0,0,0,14.8,0,0,0,0,0.296,58.79,113.63,0.93,0.21,891,2.6,143,1.6,0.0000,0.0000 +2012,7,23,10,30,22.6,1.42,0.097,0.62,0,0,0,0,1,15.200000000000001,0,0,0,0,0.295,62.800000000000004,104.81,0.93,0.21,891,2.6,150,1.2000000000000002,0.0000,0.0000 +2012,7,23,11,30,22.900000000000002,1.41,0.097,0.62,0,0,0,0,3,15.4,0,0,0,0,0.294,62.65,94.57000000000001,0.93,0.21,891,2.6,161,1.4000000000000001,0.0000,0.0000 +2012,7,23,12,30,25,1.4000000000000001,0.098,0.62,35,334,74,0,1,15.600000000000001,35,334,0,74,0.293,55.77,83.27,0.93,0.21,891,2.6,176,2,0.0000,0.0000 +2012,7,23,13,30,28.5,1.3800000000000001,0.098,0.62,67,620,263,0,0,15.4,67,620,0,263,0.293,44.83,71.56,0.93,0.21,891,2.7,191,2.1,11.2159,8.6687 +2012,7,23,14,30,32,1.36,0.098,0.62,87,757,472,0,0,14.5,87,757,0,472,0.293,34.74,59.45,0.9400000000000001,0.21,891,2.7,192,1.9000000000000001,26.7300,20.8846 +2012,7,23,15,30,34.4,1.34,0.101,0.62,101,828,664,0,0,13.700000000000001,101,828,0,664,0.294,28.86,47.22,0.9400000000000001,0.21,891,2.8000000000000003,180,1.7000000000000002,39.7348,31.1830 +2012,7,23,16,30,36.1,1.32,0.10300000000000001,0.62,112,871,823,0,0,13.200000000000001,112,871,0,823,0.295,25.310000000000002,35.19,0.9400000000000001,0.21,890,2.8000000000000003,172,1.7000000000000002,50.8046,39.9538 +2012,7,23,17,30,37.5,1.3,0.106,0.62,119,894,936,0,0,12.700000000000001,119,894,0,936,0.296,22.81,24.060000000000002,0.9400000000000001,0.21,889,2.8000000000000003,172,1.9000000000000001,58.5485,46.0913 +2012,7,23,18,30,38.5,1.26,0.117,0.62,128,896,988,0,0,12.4,128,896,0,988,0.296,21.080000000000002,16.240000000000002,0.9500000000000001,0.21,889,2.9000000000000004,174,2.1,62.4679,49.1974 +2012,7,23,19,30,39,1.25,0.124,0.62,131,889,981,7,2,11.8,351,601,7,925,0.297,19.81,17.25,0.9500000000000001,0.21,888,2.9000000000000004,179,2.3000000000000003,62.1768,48.9661 +2012,7,23,20,30,39.1,1.23,0.13,0.62,131,869,911,0,0,11.3,131,869,0,911,0.297,18.98,26.07,0.96,0.21,887,3,183,2.7,57.4966,45.2567 +2012,7,23,21,30,38.5,1.25,0.13,0.62,123,839,789,0,0,10.700000000000001,123,839,0,789,0.296,18.94,37.47,0.96,0.21,887,3,185,3.1,49.0175,38.5368 +2012,7,23,22,30,37.300000000000004,1.24,0.14200000000000002,0.62,117,773,618,0,0,10.4,117,773,0,618,0.296,19.81,49.59,0.96,0.21,887,3.1,184,3.8000000000000003,37.6203,29.5056 +2012,7,23,23,30,35.7,1.23,0.152,0.62,103,670,419,0,0,10.600000000000001,103,670,0,419,0.296,21.82,61.82,0.96,0.21,887,3.2,183,4.5,24.4405,19.0692 +2012,7,24,0,30,33.800000000000004,1.21,0.169,0.62,79,480,212,0,1,11.200000000000001,79,480,0,212,0.295,25.2,73.89,0.97,0.21,887,3.3000000000000003,181,5.300000000000001,11.6184,8.9477 +2012,7,24,1,30,32,1.2,0.176,0.62,29,141,40,7,2,12.100000000000001,32,0,7,32,0.295,29.580000000000002,85.5,0.96,0.21,888,3.4000000000000004,180,6.1000000000000005,0.0000,0.0000 +2012,7,24,2,30,30.3,1.19,0.17300000000000001,0.62,0,0,0,0,3,12.9,0,0,0,0,0.294,34.38,96.69,0.96,0.21,889,3.4000000000000004,179,6.5,0.0000,0.0000 +2012,7,24,3,30,28.900000000000002,1.17,0.171,0.62,0,0,0,0,1,13.4,0,0,0,0,0.293,38.62,106.73,0.96,0.21,889,3.5,180,6.300000000000001,0.0000,0.0000 +2012,7,24,4,30,27.900000000000002,1.1400000000000001,0.17200000000000001,0.62,0,0,0,0,1,13.8,0,0,0,0,0.293,41.910000000000004,115.24000000000001,0.96,0.21,889,3.5,183,5.9,0.0000,0.0000 +2012,7,24,5,30,27.200000000000003,1.1300000000000001,0.178,0.62,0,0,0,0,1,14,0,0,0,0,0.293,44.32,121.5,0.96,0.21,890,3.6,187,5.7,0.0000,0.0000 +2012,7,24,6,30,26.700000000000003,1.12,0.182,0.62,0,0,0,0,1,14.100000000000001,0,0,0,0,0.293,45.94,124.73,0.97,0.21,889,3.6,188,5.5,0.0000,0.0000 +2012,7,24,7,30,26,1.12,0.181,0.62,0,0,0,0,1,14.200000000000001,0,0,0,0,0.293,48.08,124.39,0.97,0.21,889,3.7,188,5.300000000000001,0.0000,0.0000 +2012,7,24,8,30,25.3,1.12,0.17500000000000002,0.62,0,0,0,0,3,14.3,0,0,0,0,0.293,50.5,120.54,0.97,0.21,889,3.8000000000000003,185,5.1000000000000005,0.0000,0.0000 +2012,7,24,9,30,24.400000000000002,1.12,0.171,0.62,0,0,0,0,7,14.600000000000001,0,0,0,0,0.293,54.35,113.8,0.97,0.21,890,3.8000000000000003,184,5,0.0000,0.0000 +2012,7,24,10,30,23.400000000000002,1.12,0.171,0.62,0,0,0,0,3,15.100000000000001,0,0,0,0,0.292,59.56,104.97,0.97,0.21,890,3.9000000000000004,188,5.2,0.0000,0.0000 +2012,7,24,11,30,22.6,1.12,0.17,0.62,0,0,0,0,3,15.600000000000001,0,0,0,0,0.291,64.52,94.7,0.97,0.21,891,3.8000000000000003,196,5.4,0.0000,0.0000 +2012,7,24,12,30,22.8,1.12,0.16,0.62,40,224,66,7,3,15.8,41,0,7,41,0.291,64.73,83.4,0.96,0.21,891,3.8000000000000003,203,5.7,0.0000,0.0000 +2012,7,24,13,30,23.700000000000003,1.12,0.14400000000000002,0.62,80,539,249,0,8,15.700000000000001,40,439,0,178,0.291,60.97,71.67,0.96,0.21,891,3.7,201,5.7,13.2738,10.2577 +2012,7,24,14,30,25.200000000000003,1.11,0.127,0.62,98,708,457,0,4,15.3,272,59,0,302,0.291,54.370000000000005,59.56,0.96,0.21,890,3.5,188,5.5,26.1049,20.3950 +2012,7,24,15,30,27.1,1.11,0.114,0.62,108,803,652,0,4,14.700000000000001,332,43,0,361,0.292,46.59,47.33,0.96,0.21,890,3.4000000000000004,174,5.7,38.7291,30.3930 +2012,7,24,16,30,29.3,1.12,0.108,0.62,115,856,814,7,3,14,440,244,7,639,0.293,39.17,35.31,0.96,0.21,889,3.3000000000000003,170,6.1000000000000005,49.4707,38.9042 +2012,7,24,17,30,31.200000000000003,1.12,0.11,0.62,122,879,924,0,0,13.4,122,879,0,924,0.294,33.92,24.22,0.96,0.21,889,3.4000000000000004,173,6.300000000000001,57.1951,45.0254 +2012,7,24,18,30,32.800000000000004,1.1500000000000001,0.115,0.62,127,888,979,0,1,13,127,888,0,979,0.294,30.07,16.45,0.96,0.21,888,3.4000000000000004,176,6.2,60.7981,47.8820 +2012,7,24,19,30,34.2,1.17,0.116,0.62,127,886,973,0,8,12.5,347,422,0,749,0.295,26.900000000000002,17.44,0.96,0.21,887,3.4000000000000004,177,6.1000000000000005,56.8798,44.7942 +2012,7,24,20,30,35.2,1.19,0.12,0.62,126,869,905,7,8,12,229,700,7,858,0.296,24.61,26.21,0.96,0.21,886,3.4000000000000004,178,5.9,55.5366,43.7136 +2012,7,24,21,30,35.6,1.2,0.131,0.62,123,829,780,0,0,11.700000000000001,123,829,0,780,0.296,23.580000000000002,37.58,0.96,0.21,885,3.5,181,5.9,47.2121,37.1169 +2012,7,24,22,30,35.1,1.18,0.154,0.62,122,755,610,0,0,11.600000000000001,122,755,0,610,0.296,24.07,49.69,0.97,0.21,885,3.5,182,5.800000000000001,35.7554,28.0421 +2012,7,24,23,30,34.1,1.16,0.177,0.62,111,638,411,0,0,11.5,111,638,0,411,0.296,25.330000000000002,61.93,0.97,0.21,885,3.5,180,5.6000000000000005,22.8438,17.8223 +2012,7,25,0,30,32.7,1.1300000000000001,0.188,0.62,83,453,208,0,0,11.5,83,453,0,208,0.296,27.34,74,0.97,0.22,885,3.4000000000000004,173,5.2,10.4707,8.0623 +2012,7,25,1,30,31.1,1.1,0.191,0.62,29,119,38,7,7,11.600000000000001,31,2,7,32,0.297,30.3,85.62,0.97,0.22,885,3.4000000000000004,166,5.1000000000000005,0.0000,0.0000 +2012,7,25,2,30,29.900000000000002,1.08,0.193,0.62,0,0,0,0,6,12,0,0,0,0,0.297,33.33,96.83,0.97,0.22,885,3.4000000000000004,165,5.4,0.0000,0.0000 +2012,7,25,3,30,29,1.06,0.195,0.62,0,0,0,0,7,12.5,0,0,0,0,0.297,36.12,106.89,0.96,0.22,886,3.4000000000000004,169,5.6000000000000005,0.0000,0.0000 +2012,7,25,4,30,28.3,1.06,0.193,0.62,0,0,0,0,7,12.8,0,0,0,0,0.297,38.33,115.42,0.96,0.22,886,3.4000000000000004,175,5.5,0.0000,0.0000 +2012,7,25,5,30,27.6,1.08,0.184,0.62,0,0,0,0,8,12.8,0,0,0,0,0.297,40.050000000000004,121.7,0.96,0.22,886,3.4000000000000004,184,5.300000000000001,0.0000,0.0000 +2012,7,25,6,30,26.900000000000002,1.1,0.164,0.62,0,0,0,0,7,12.600000000000001,0,0,0,0,0.297,41.25,124.94,0.96,0.22,885,3.3000000000000003,192,5.2,0.0000,0.0000 +2012,7,25,7,30,26.1,1.1400000000000001,0.14,0.62,0,0,0,0,1,12.4,0,0,0,0,0.296,42.57,124.60000000000001,0.96,0.22,885,3.3000000000000003,196,5,0.0000,0.0000 +2012,7,25,8,30,25.400000000000002,1.18,0.11800000000000001,0.62,0,0,0,0,4,12.3,0,0,0,0,0.296,44.08,120.74000000000001,0.9500000000000001,0.22,885,3.3000000000000003,198,4.9,0.0000,0.0000 +2012,7,25,9,30,24.900000000000002,1.23,0.101,0.62,0,0,0,0,3,12.4,0,0,0,0,0.297,45.62,113.98,0.9500000000000001,0.22,885,3.2,201,5,0.0000,0.0000 +2012,7,25,10,30,24.400000000000002,1.27,0.08700000000000001,0.62,0,0,0,0,3,12.600000000000001,0,0,0,0,0.297,47.64,105.13,0.9500000000000001,0.22,885,3.2,202,5,0.0000,0.0000 +2012,7,25,11,30,24.400000000000002,1.3,0.076,0.62,0,0,0,0,7,12.700000000000001,0,0,0,0,0.298,48.2,94.85000000000001,0.9500000000000001,0.22,885,3.2,202,5,0.0000,0.0000 +2012,7,25,12,30,25.700000000000003,1.31,0.068,0.62,32,359,72,7,4,12.8,40,0,7,40,0.298,44.89,83.52,0.9500000000000001,0.22,885,3.2,205,5.6000000000000005,0.0000,0.0000 +2012,7,25,13,30,28.5,1.33,0.064,0.62,58,653,262,0,3,12.9,158,164,0,209,0.298,38.29,71.79,0.9500000000000001,0.22,885,3.2,213,6.2,8.9746,6.9343 +2012,7,25,14,30,31.5,1.35,0.061,0.62,73,786,470,0,4,12.9,223,24,0,235,0.298,32.08,59.67,0.9400000000000001,0.22,885,3.2,220,6.2,16.6922,13.0403 +2012,7,25,15,30,33.9,1.37,0.06,0.62,83,858,663,0,3,12.5,344,45,0,374,0.298,27.3,47.44,0.9400000000000001,0.22,885,3.2,222,5.9,21.0485,16.5176 +2012,7,25,16,30,35.800000000000004,1.4000000000000001,0.061,0.62,91,896,822,7,3,12.4,354,453,7,723,0.297,24.41,35.43,0.9500000000000001,0.22,885,3.3000000000000003,221,5.5,38.4017,30.1990 +2012,7,25,17,30,37.2,1.43,0.062,0.62,97,919,934,0,3,12.3,461,129,0,578,0.297,22.55,24.37,0.9500000000000001,0.22,884,3.3000000000000003,216,5.300000000000001,56.4517,44.4398 +2012,7,25,18,30,38.2,1.41,0.069,0.62,103,922,986,0,4,12.3,510,186,0,688,0.297,21.36,16.66,0.9500000000000001,0.22,884,3.4000000000000004,212,5.1000000000000005,60.2354,47.4384 +2012,7,25,19,30,38.7,1.4000000000000001,0.074,0.62,105,916,978,7,3,12.3,384,524,7,884,0.297,20.77,17.64,0.9500000000000001,0.22,883,3.5,209,5,46.0507,36.2657 +2012,7,25,20,30,38.6,1.3800000000000001,0.08,0.62,105,899,911,0,0,12.200000000000001,105,899,0,911,0.297,20.77,26.35,0.96,0.22,882,3.5,207,4.800000000000001,52.2966,41.1629 +2012,7,25,21,30,38,1.36,0.095,0.62,106,859,786,0,0,12,106,859,0,786,0.297,21.13,37.7,0.96,0.22,882,3.5,206,4.5,46.6628,36.6845 +2012,7,25,22,30,37.4,1.35,0.099,0.62,98,807,620,0,7,11.600000000000001,283,261,0,452,0.297,21.32,49.800000000000004,0.96,0.22,882,3.4000000000000004,206,4.3,35.2798,27.6684 +2012,7,25,23,30,36.2,1.33,0.10200000000000001,0.62,85,718,422,0,6,11.3,94,1,0,94,0.297,22.29,62.04,0.96,0.22,882,3.4000000000000004,203,3.8000000000000003,22.3919,17.4685 +2012,7,26,0,30,33.800000000000004,1.33,0.10400000000000001,0.62,64,556,216,0,8,11.3,15,0,0,15,0.297,25.42,74.12,0.96,0.22,882,3.4000000000000004,195,2.8000000000000003,10.2628,7.9007 +2012,7,26,1,30,31,1.32,0.10400000000000001,0.62,25,210,41,7,4,12.600000000000001,15,0,7,15,0.297,32.52,85.74,0.96,0.22,883,3.3000000000000003,186,2.1,0.0000,0.0000 +2012,7,26,2,30,29.1,1.31,0.10200000000000001,0.62,0,0,0,0,4,13.600000000000001,0,0,0,0,0.297,38.71,96.98,0.96,0.22,883,3.3000000000000003,183,2.2,0.0000,0.0000 +2012,7,26,3,30,28,1.3,0.1,0.62,0,0,0,0,8,14,0,0,0,0,0.297,42.35,107.06,0.9500000000000001,0.22,884,3.2,185,1.9000000000000001,0.0000,0.0000 +2012,7,26,4,30,27.1,1.28,0.1,0.62,0,0,0,0,7,14.4,0,0,0,0,0.296,45.81,115.60000000000001,0.9500000000000001,0.22,884,3.3000000000000003,194,1.4000000000000001,0.0000,0.0000 +2012,7,26,5,30,26.1,1.27,0.10200000000000001,0.62,0,0,0,0,7,14.8,0,0,0,0,0.296,49.81,121.9,0.9500000000000001,0.22,884,3.3000000000000003,227,1,0.0000,0.0000 +2012,7,26,6,30,25.1,1.28,0.098,0.62,0,0,0,0,7,15.100000000000001,0,0,0,0,0.295,53.84,125.16,0.9500000000000001,0.22,885,3.3000000000000003,284,1.2000000000000002,0.0000,0.0000 +2012,7,26,7,30,24.400000000000002,1.32,0.08700000000000001,0.62,0,0,0,0,7,15.3,0,0,0,0,0.295,56.99,124.82000000000001,0.9500000000000001,0.22,885,3.3000000000000003,330,1.7000000000000002,0.0000,0.0000 +2012,7,26,8,30,23.900000000000002,1.37,0.078,0.62,0,0,0,0,7,15.600000000000001,0,0,0,0,0.296,59.76,120.94,0.9500000000000001,0.22,885,3.3000000000000003,349,1.9000000000000001,0.0000,0.0000 +2012,7,26,9,30,23.400000000000002,1.41,0.074,0.62,0,0,0,0,7,15.9,0,0,0,0,0.297,62.65,114.17,0.9500000000000001,0.22,885,3.3000000000000003,353,1.7000000000000002,0.0000,0.0000 +2012,7,26,10,30,23,1.45,0.075,0.62,0,0,0,0,8,16,0,0,0,0,0.297,64.82000000000001,105.29,0.9500000000000001,0.22,885,3.4000000000000004,350,1.4000000000000001,0.0000,0.0000 +2012,7,26,11,30,23,1.48,0.077,0.62,0,0,0,0,7,16.1,0,0,0,0,0.298,65.15,94.99,0.9500000000000001,0.22,886,3.4000000000000004,347,1.8,0.0000,0.0000 +2012,7,26,12,30,24.400000000000002,1.5,0.078,0.62,32,340,69,7,7,16.2,44,8,7,45,0.298,60.07,83.65,0.9500000000000001,0.22,887,3.4000000000000004,177,2.4000000000000004,0.0000,0.0000 +2012,7,26,13,30,27,1.52,0.08,0.62,62,628,257,0,1,15.700000000000001,62,628,0,257,0.298,50.13,71.91,0.9500000000000001,0.22,887,3.4000000000000004,15,2.3000000000000003,10.5259,8.1315 +2012,7,26,14,30,29.900000000000002,1.54,0.082,0.62,80,760,463,0,7,14.8,185,427,0,400,0.298,39.94,59.78,0.9500000000000001,0.22,888,3.4000000000000004,29,2.2,12.9807,10.1402 +2012,7,26,15,30,32.2,1.56,0.082,0.62,93,835,656,0,8,14.200000000000001,180,620,0,598,0.298,33.730000000000004,47.550000000000004,0.9500000000000001,0.22,888,3.4000000000000004,39,2.6,21.7987,17.1058 +2012,7,26,16,30,34,1.58,0.082,0.62,101,880,817,0,8,14.100000000000001,158,749,0,767,0.297,30.13,35.56,0.9500000000000001,0.22,888,3.3000000000000003,49,3.2,43.4398,34.1605 +2012,7,26,17,30,35.300000000000004,1.59,0.082,0.62,106,904,929,0,0,13.9,106,904,0,929,0.297,27.77,24.53,0.9500000000000001,0.22,888,3.3000000000000003,57,3.6,35.3069,27.7939 +2012,7,26,18,30,36.2,1.62,0.08,0.62,108,918,987,0,0,13.700000000000001,108,918,0,987,0.296,26.150000000000002,16.87,0.9500000000000001,0.22,887,3.2,64,3.8000000000000003,42.3246,33.3324 +2012,7,26,19,30,36.6,1.55,0.084,0.62,110,916,982,0,0,13.600000000000001,110,916,0,982,0.295,25.37,17.84,0.9500000000000001,0.22,887,3.1,69,4,54.3425,42.7953 +2012,7,26,20,30,36.5,1.48,0.09,0.62,110,900,916,0,1,13.4,110,900,0,916,0.295,25.14,26.5,0.96,0.22,886,3,76,4.1000000000000005,55.5174,43.6975 +2012,7,26,21,30,36,1.6,0.083,0.62,100,880,795,0,0,13.100000000000001,100,880,0,795,0.295,25.34,37.83,0.9500000000000001,0.22,886,2.9000000000000004,84,4.2,47.0098,36.9567 +2012,7,26,22,30,35.1,1.58,0.083,0.62,91,832,627,0,1,12.8,91,832,0,627,0.295,26.080000000000002,49.910000000000004,0.9500000000000001,0.22,886,2.9000000000000004,93,4.2,26.1313,20.4930 +2012,7,26,23,30,33.800000000000004,1.55,0.08600000000000001,0.62,79,746,427,0,3,12.700000000000001,202,430,0,403,0.296,27.87,62.15,0.9500000000000001,0.22,887,2.9000000000000004,103,4.1000000000000005,5.1176,3.9921 +2012,7,27,0,30,31.8,1.53,0.091,0.62,60,583,219,0,8,12.9,60,583,5,219,0.297,31.55,74.24,0.9500000000000001,0.22,887,2.9000000000000004,114,3.5,0.7393,0.5690 +2012,7,27,1,30,29.700000000000003,1.51,0.093,0.62,24,230,41,7,7,13.600000000000001,33,7,7,33,0.297,37.410000000000004,85.87,0.9500000000000001,0.22,888,3,129,3.1,0.0000,0.0000 +2012,7,27,2,30,28.1,1.49,0.091,0.62,0,0,0,0,7,14.3,0,0,0,0,0.298,42.85,97.13,0.9500000000000001,0.22,888,3,143,3.1,0.0000,0.0000 +2012,7,27,3,30,27,1.46,0.089,0.62,0,0,0,0,7,14.8,0,0,0,0,0.298,47.21,107.23,0.9500000000000001,0.22,889,3,157,3.1,0.0000,0.0000 +2012,7,27,4,30,26,1.44,0.089,0.62,0,0,0,0,7,15.3,0,0,0,0,0.298,51.85,115.79,0.9500000000000001,0.22,889,2.9000000000000004,171,3,0.0000,0.0000 +2012,7,27,5,30,25,1.42,0.08700000000000001,0.62,0,0,0,0,6,16,0,0,0,0,0.298,57.550000000000004,122.12,0.9500000000000001,0.22,890,2.8000000000000003,185,2.6,0.0000,0.0000 +2012,7,27,6,30,24,1.42,0.085,0.62,0,0,0,0,6,16.6,0,0,0,0,0.297,63.5,125.39,0.9400000000000001,0.22,890,2.6,197,2.2,0.0000,0.0000 +2012,7,27,7,30,23.1,1.41,0.084,0.62,0,0,0,0,7,17,0,0,0,0,0.297,68.73,125.04,0.9400000000000001,0.22,890,2.5,211,1.7000000000000002,0.0000,0.0000 +2012,7,27,8,30,22.3,1.41,0.083,0.62,0,0,0,0,7,17.2,0,0,0,0,0.296,72.98,121.15,0.9400000000000001,0.22,890,2.5,228,1.3,0.0000,0.0000 +2012,7,27,9,30,21.700000000000003,1.42,0.083,0.62,0,0,0,0,1,17.3,0,0,0,0,0.295,76.07000000000001,114.35000000000001,0.9400000000000001,0.22,891,2.4000000000000004,244,1.1,0.0000,0.0000 +2012,7,27,10,30,21.200000000000003,1.43,0.083,0.62,0,0,0,0,7,17.3,0,0,0,0,0.295,78.46000000000001,105.45,0.9400000000000001,0.22,891,2.4000000000000004,255,1,0.0000,0.0000 +2012,7,27,11,30,21.6,1.44,0.083,0.62,0,0,0,0,1,17.3,0,0,0,0,0.294,76.41,95.13,0.9400000000000001,0.22,891,2.4000000000000004,264,1.3,0.0000,0.0000 +2012,7,27,12,30,23.900000000000002,1.46,0.083,0.62,32,344,70,7,3,17.2,47,2,7,47,0.293,66.28,83.77,0.9400000000000001,0.22,891,2.4000000000000004,281,1.5,0.0000,0.0000 +2012,7,27,13,30,27.200000000000003,1.47,0.082,0.62,63,643,261,0,0,16.8,63,643,0,261,0.292,52.95,72.02,0.9400000000000001,0.22,892,2.4000000000000004,178,1.4000000000000001,12.9289,9.9861 +2012,7,27,14,30,30.1,1.47,0.081,0.62,81,780,472,0,0,15.200000000000001,81,780,0,472,0.292,40.52,59.89,0.9400000000000001,0.22,892,2.4000000000000004,76,1.9000000000000001,22.0808,17.2480 +2012,7,27,15,30,32.2,1.48,0.08,0.62,92,853,666,0,0,14.200000000000001,92,853,0,666,0.292,33.72,47.67,0.9400000000000001,0.22,892,2.5,94,2.7,34.8420,27.3404 +2012,7,27,16,30,33.7,1.48,0.079,0.62,101,897,829,0,0,13.700000000000001,101,897,0,829,0.292,29.94,35.68,0.9500000000000001,0.22,892,2.5,102,3.1,46.0720,36.2298 +2012,7,27,17,30,35,1.48,0.08,0.62,107,918,941,0,0,13.3,107,918,0,941,0.292,27.1,24.68,0.9500000000000001,0.22,891,2.6,111,3.5,56.7373,44.6637 +2012,7,27,18,30,35.7,1.75,0.07,0.62,103,933,995,0,0,13.100000000000001,103,933,0,995,0.292,25.73,17.09,0.9500000000000001,0.22,891,2.8000000000000003,120,3.9000000000000004,60.7093,47.8108 +2012,7,27,19,30,36,1.75,0.074,0.62,104,925,984,0,1,13.100000000000001,104,925,0,984,0.292,25.29,18.05,0.9500000000000001,0.22,890,3,128,4.1000000000000005,60.3576,47.5318 +2012,7,27,20,30,35.6,1.73,0.084,0.62,107,903,914,7,2,13.200000000000001,338,576,7,853,0.292,26.11,26.66,0.96,0.22,890,3.1,136,4.3,55.8116,43.9285 +2012,7,27,21,30,34.9,1.46,0.105,0.62,111,856,786,7,2,13.5,282,623,7,773,0.292,27.57,37.95,0.96,0.22,889,3.2,143,4.5,47.5350,37.3689 +2012,7,27,22,30,34,1.56,0.10200000000000001,0.62,99,807,617,0,0,13.8,99,807,0,617,0.292,29.580000000000002,50.03,0.9500000000000001,0.22,889,3.3000000000000003,149,4.6000000000000005,36.2340,28.4149 +2012,7,27,23,30,32.800000000000004,1.67,0.094,0.62,81,728,420,7,2,14.100000000000001,206,380,7,383,0.292,32.35,62.27,0.9500000000000001,0.22,890,3.4000000000000004,153,4.5,21.9249,17.1017 +2012,7,28,0,30,31.1,1.76,0.08600000000000001,0.62,58,582,214,0,3,14.3,58,582,5,214,0.292,36.11,74.37,0.9400000000000001,0.22,890,3.4000000000000004,155,3.9000000000000004,10.7819,8.2970 +2012,7,28,1,30,29.200000000000003,1.81,0.079,0.62,22,249,40,7,7,14.600000000000001,28,3,7,28,0.292,40.980000000000004,86,0.9400000000000001,0.22,891,3.3000000000000003,156,3,0.0000,0.0000 +2012,7,28,2,30,27.900000000000002,1.82,0.074,0.62,0,0,0,0,3,14.700000000000001,0,0,0,0,0.292,44.59,97.28,0.9400000000000001,0.22,892,3.3000000000000003,158,2.9000000000000004,0.0000,0.0000 +2012,7,28,3,30,27,1.78,0.07200000000000001,0.62,0,0,0,0,8,14.700000000000001,0,0,0,0,0.291,46.92,107.4,0.9400000000000001,0.22,892,3.3000000000000003,162,3.1,0.0000,0.0000 +2012,7,28,4,30,26.1,1.71,0.07200000000000001,0.62,0,0,0,0,4,14.8,0,0,0,0,0.29,49.83,115.99000000000001,0.9400000000000001,0.22,892,3.3000000000000003,167,3.2,0.0000,0.0000 +2012,7,28,5,30,25.3,1.57,0.076,0.62,0,0,0,0,3,14.9,0,0,0,0,0.29,52.61,122.34,0.9400000000000001,0.22,892,3.3000000000000003,172,3.2,0.0000,0.0000 +2012,7,28,6,30,24.6,1.37,0.083,0.62,0,0,0,0,1,15,0,0,0,0,0.289,55.14,125.62,0.9500000000000001,0.22,892,3.3000000000000003,178,3.1,0.0000,0.0000 +2012,7,28,7,30,23.900000000000002,1.16,0.094,0.62,0,0,0,0,0,15.100000000000001,0,0,0,0,0.289,57.74,125.27,0.9500000000000001,0.22,892,3.3000000000000003,185,2.9000000000000004,0.0000,0.0000 +2012,7,28,8,30,23.3,1.02,0.105,0.62,0,0,0,0,0,15.100000000000001,0,0,0,0,0.289,60.160000000000004,121.36,0.9500000000000001,0.22,892,3.3000000000000003,196,2.6,0.0000,0.0000 +2012,7,28,9,30,22.8,0.9400000000000001,0.113,0.62,0,0,0,0,0,15.3,0,0,0,0,0.289,62.56,114.54,0.9500000000000001,0.22,893,3.2,208,2.3000000000000003,0.0000,0.0000 +2012,7,28,10,30,22.3,0.89,0.11800000000000001,0.62,0,0,0,0,0,15.4,0,0,0,0,0.289,65.09,105.62,0.9500000000000001,0.22,893,3.2,221,2,0.0000,0.0000 +2012,7,28,11,30,22.5,0.85,0.122,0.62,0,0,0,0,0,15.600000000000001,0,0,0,0,0.28800000000000003,64.98,95.28,0.9500000000000001,0.22,894,3.2,232,2.2,0.0000,0.0000 +2012,7,28,12,30,24.400000000000002,0.8200000000000001,0.125,0.62,37,234,62,0,0,15.700000000000001,37,234,0,62,0.28800000000000003,58.54,83.9,0.9500000000000001,0.22,894,3.1,238,2.8000000000000003,0.0000,0.0000 +2012,7,28,13,30,27.3,0.78,0.126,0.62,77,550,246,0,0,16.2,77,550,0,246,0.28800000000000003,50.870000000000005,72.14,0.96,0.22,894,3.1,231,3.1,13.1167,10.1296 +2012,7,28,14,30,29.8,0.75,0.126,0.62,101,705,453,0,0,16.5,101,705,0,453,0.289,44.59,60.01,0.9500000000000001,0.22,894,3,212,3.2,26.0387,20.3383 +2012,7,28,15,30,31.700000000000003,0.72,0.123,0.62,116,794,650,0,0,15.8,116,794,0,650,0.289,38.410000000000004,47.78,0.9500000000000001,0.22,894,2.9000000000000004,196,3.4000000000000004,38.7886,30.4364 +2012,7,28,16,30,33.300000000000004,0.71,0.121,0.62,126,845,811,0,0,14.8,126,845,0,811,0.289,32.94,35.81,0.9500000000000001,0.22,894,2.9000000000000004,187,3.7,49.7847,39.1488 +2012,7,28,17,30,34.800000000000004,0.71,0.11900000000000001,0.62,131,875,925,0,0,13.9,131,875,0,925,0.289,28.51,24.85,0.9500000000000001,0.22,893,2.9000000000000004,183,4.2,57.4604,45.2324 +2012,7,28,18,30,35.9,0.89,0.089,0.62,117,912,987,0,0,13.200000000000001,117,912,0,987,0.28800000000000003,25.62,17.31,0.9500000000000001,0.22,892,2.9000000000000004,183,4.5,61.1915,48.1901 +2012,7,28,19,30,36.5,0.91,0.089,0.62,116,911,981,0,0,12.8,116,911,0,981,0.28700000000000003,24.12,18.27,0.9500000000000001,0.22,891,2.9000000000000004,184,4.9,60.4706,47.6203 +2012,7,28,20,30,36.7,0.9500000000000001,0.089,0.62,113,896,912,0,1,12.700000000000001,113,896,0,912,0.28600000000000003,23.72,26.82,0.9500000000000001,0.22,891,3,186,5.1000000000000005,51.9625,40.8985 +2012,7,28,21,30,36.300000000000004,1.04,0.081,0.62,102,875,791,0,0,12.9,102,875,0,791,0.28600000000000003,24.55,38.09,0.96,0.22,890,3,189,5.2,46.2077,36.3248 +2012,7,28,22,30,35.5,1.1400000000000001,0.08,0.62,92,826,621,0,0,13,92,826,0,621,0.28500000000000003,25.97,50.160000000000004,0.96,0.22,890,3.1,192,5.2,35.6404,27.9485 +2012,7,28,23,30,34.2,1.22,0.079,0.62,77,744,422,0,0,13.100000000000001,77,744,0,422,0.28500000000000003,27.990000000000002,62.4,0.9500000000000001,0.22,890,3.1,194,5,20.8205,16.2390 +2012,7,29,0,30,32.4,1.26,0.08,0.62,58,587,215,0,0,12.9,58,587,0,215,0.28600000000000003,30.61,74.5,0.9500000000000001,0.22,890,3,192,4.2,10.5234,8.0962 +2012,7,29,1,30,30.3,1.24,0.082,0.62,23,222,38,0,0,12.700000000000001,23,222,0,38,0.28600000000000003,33.9,86.14,0.9500000000000001,0.22,891,2.9000000000000004,189,3.4000000000000004,0.0000,0.0000 +2012,7,29,2,30,28.8,1.17,0.08600000000000001,0.62,0,0,0,0,0,12.3,0,0,0,0,0.28700000000000003,36.06,97.44,0.9500000000000001,0.22,891,2.8000000000000003,188,3.4000000000000004,0.0000,0.0000 +2012,7,29,3,30,27.700000000000003,1.09,0.09,0.62,0,0,0,0,0,11.700000000000001,0,0,0,0,0.28700000000000003,37,107.58,0.9500000000000001,0.22,892,2.7,192,3.6,0.0000,0.0000 +2012,7,29,4,30,26.700000000000003,1.03,0.092,0.62,0,0,0,0,0,11.200000000000001,0,0,0,0,0.28700000000000003,37.92,116.2,0.9500000000000001,0.22,892,2.6,199,3.7,0.0000,0.0000 +2012,7,29,5,30,25.8,0.99,0.091,0.62,0,0,0,0,0,10.8,0,0,0,0,0.28700000000000003,39,122.56,0.9400000000000001,0.22,892,2.5,205,3.7,0.0000,0.0000 +2012,7,29,6,30,25,0.96,0.089,0.62,0,0,0,0,0,10.5,0,0,0,0,0.28700000000000003,40.18,125.85000000000001,0.9400000000000001,0.22,892,2.5,210,3.5,0.0000,0.0000 +2012,7,29,7,30,24.200000000000003,0.93,0.088,0.62,0,0,0,0,0,10.3,0,0,0,0,0.28600000000000003,41.51,125.5,0.9400000000000001,0.22,892,2.4000000000000004,215,3.3000000000000003,0.0000,0.0000 +2012,7,29,8,30,23.6,0.89,0.08700000000000001,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28600000000000003,42.45,121.58,0.9400000000000001,0.22,892,2.4000000000000004,222,3.3000000000000003,0.0000,0.0000 +2012,7,29,9,30,23,0.86,0.08600000000000001,0.62,0,0,0,0,0,9.9,0,0,0,0,0.28600000000000003,43.52,114.73,0.9400000000000001,0.22,892,2.3000000000000003,229,3.4000000000000004,0.0000,0.0000 +2012,7,29,10,30,22.400000000000002,0.8300000000000001,0.08600000000000001,0.62,0,0,0,0,0,9.9,0,0,0,0,0.28600000000000003,44.97,105.78,0.9400000000000001,0.22,892,2.3000000000000003,235,3.5,0.0000,0.0000 +2012,7,29,11,30,22.5,0.8200000000000001,0.085,0.62,0,0,0,0,0,10.100000000000001,0,0,0,0,0.28600000000000003,45.37,95.42,0.9400000000000001,0.22,893,2.2,238,3.7,0.0000,0.0000 +2012,7,29,12,30,24.200000000000003,0.8200000000000001,0.084,0.62,33,307,65,0,0,10.700000000000001,33,307,0,65,0.28600000000000003,42.52,84.03,0.9400000000000001,0.22,893,2.2,240,4.3,0.0000,0.0000 +2012,7,29,13,30,27.3,0.84,0.081,0.62,65,632,257,0,0,12.3,65,632,0,257,0.28600000000000003,39.46,72.26,0.9400000000000001,0.22,893,2.2,239,5.300000000000001,12.3491,9.5351 +2012,7,29,14,30,30.400000000000002,0.86,0.077,0.62,82,782,471,0,0,14.100000000000001,82,782,0,471,0.28600000000000003,37.01,60.120000000000005,0.9400000000000001,0.22,893,2.1,238,5.6000000000000005,24.9729,19.5046 +2012,7,29,15,30,33,0.89,0.074,0.62,92,862,670,0,0,13.4,92,862,0,670,0.28600000000000003,30.48,47.9,0.9400000000000001,0.22,892,2.1,233,5.1000000000000005,37.8430,29.6935 +2012,7,29,16,30,35.1,0.9,0.07200000000000001,0.62,100,907,834,0,0,12.100000000000001,100,907,0,834,0.28700000000000003,24.87,35.94,0.9400000000000001,0.22,892,2.1,225,4.800000000000001,48.6914,38.2884 +2012,7,29,17,30,36.7,0.92,0.07200000000000001,0.62,105,932,949,0,0,10.700000000000001,105,932,0,949,0.28700000000000003,20.87,25.01,0.9400000000000001,0.22,891,2.1,216,4.7,56.4723,44.4540 +2012,7,29,18,30,37.800000000000004,0.85,0.061,0.62,102,948,1006,0,0,9.700000000000001,102,948,0,1006,0.28600000000000003,18.330000000000002,17.53,0.9500000000000001,0.22,891,2.2,209,4.800000000000001,60.6895,47.7943 +2012,7,29,19,30,38.400000000000006,0.87,0.062,0.62,102,946,1000,0,0,9,102,946,0,1000,0.28600000000000003,16.990000000000002,18.490000000000002,0.9500000000000001,0.22,890,2.2,205,4.800000000000001,60.2757,47.4663 +2012,7,29,20,30,38.6,0.9,0.063,0.62,100,931,929,0,0,8.700000000000001,100,931,0,929,0.28600000000000003,16.41,26.990000000000002,0.9500000000000001,0.22,889,2.3000000000000003,201,4.9,55.5453,43.7179 +2012,7,29,21,30,38.300000000000004,0.89,0.06,0.62,93,909,807,0,0,8.5,93,909,0,807,0.28500000000000003,16.43,38.230000000000004,0.9500000000000001,0.22,889,2.2,198,4.9,47.2695,37.1588 +2012,7,29,22,30,37.5,0.9,0.06,0.62,84,863,635,0,0,8.3,84,863,0,635,0.28500000000000003,16.94,50.29,0.9500000000000001,0.22,888,2.2,195,4.9,35.8542,28.1151 +2012,7,29,23,30,36.2,0.91,0.059000000000000004,0.62,72,783,433,0,0,8.200000000000001,72,783,0,433,0.28600000000000003,18.14,62.53,0.9500000000000001,0.22,888,2.2,192,4.800000000000001,22.9211,17.8758 +2012,7,30,0,30,33.800000000000004,0.91,0.059000000000000004,0.62,54,629,220,0,0,8.4,54,629,0,220,0.28600000000000003,21.01,74.63,0.9400000000000001,0.22,888,2.2,188,4.1000000000000005,10.5602,8.1227 +2012,7,30,1,30,31.200000000000003,0.9,0.059000000000000004,0.62,22,251,38,0,0,9.200000000000001,22,251,0,38,0.28700000000000003,25.67,86.29,0.9400000000000001,0.22,889,2.2,184,3.6,0.0000,0.0000 +2012,7,30,2,30,29.6,0.89,0.059000000000000004,0.62,0,0,0,0,0,9.9,0,0,0,0,0.28800000000000003,29.47,97.61,0.9400000000000001,0.22,889,2.3000000000000003,184,4,0.0000,0.0000 +2012,7,30,3,30,28.5,0.88,0.06,0.62,0,0,0,0,0,10.5,0,0,0,0,0.28800000000000003,32.55,107.77,0.9400000000000001,0.22,889,2.3000000000000003,188,4.3,0.0000,0.0000 +2012,7,30,4,30,27.6,0.88,0.061,0.62,0,0,0,0,0,10.8,0,0,0,0,0.28800000000000003,35.19,116.4,0.9400000000000001,0.22,889,2.3000000000000003,193,4.3,0.0000,0.0000 +2012,7,30,5,30,26.8,0.89,0.061,0.62,0,0,0,0,0,11,0,0,0,0,0.28800000000000003,37.32,122.79,0.9400000000000001,0.22,889,2.3000000000000003,198,4.2,0.0000,0.0000 +2012,7,30,6,30,26,0.91,0.061,0.62,0,0,0,0,0,11.100000000000001,0,0,0,0,0.28800000000000003,39.31,126.09,0.9400000000000001,0.22,889,2.3000000000000003,204,4.1000000000000005,0.0000,0.0000 +2012,7,30,7,30,25.3,0.93,0.062,0.62,0,0,0,0,0,11.100000000000001,0,0,0,0,0.28800000000000003,41.07,125.74000000000001,0.9400000000000001,0.22,889,2.3000000000000003,209,3.8000000000000003,0.0000,0.0000 +2012,7,30,8,30,24.6,0.96,0.064,0.62,0,0,0,0,0,11.100000000000001,0,0,0,0,0.28800000000000003,42.86,121.8,0.9400000000000001,0.22,890,2.3000000000000003,214,3.6,0.0000,0.0000 +2012,7,30,9,30,23.700000000000003,0.99,0.066,0.62,0,0,0,0,0,11.200000000000001,0,0,0,0,0.28800000000000003,45.300000000000004,114.92,0.9400000000000001,0.22,890,2.3000000000000003,221,3.4000000000000004,0.0000,0.0000 +2012,7,30,10,30,22.900000000000002,1,0.069,0.62,0,0,0,0,0,11.200000000000001,0,0,0,0,0.28800000000000003,47.57,105.95,0.9400000000000001,0.22,890,2.3000000000000003,229,3.2,0.0000,0.0000 +2012,7,30,11,30,22.700000000000003,1.02,0.074,0.62,0,0,0,0,0,11.100000000000001,0,0,0,0,0.28800000000000003,48.01,95.57000000000001,0.9400000000000001,0.22,891,2.4000000000000004,239,3.3000000000000003,0.0000,0.0000 +2012,7,30,12,30,24.1,1.03,0.079,0.62,31,317,64,0,0,11,31,317,0,64,0.28700000000000003,43.89,84.16,0.9400000000000001,0.22,891,2.4000000000000004,247,3.5,0.0000,0.0000 +2012,7,30,13,30,27.6,1.03,0.085,0.62,65,627,255,0,0,11.100000000000001,65,627,0,255,0.28600000000000003,35.78,72.38,0.9500000000000001,0.22,891,2.3000000000000003,249,3.9000000000000004,12.8868,9.9485 +2012,7,30,14,30,31.700000000000003,1.03,0.08700000000000001,0.62,85,768,466,0,0,10.8,85,768,0,466,0.28600000000000003,27.76,60.24,0.9500000000000001,0.22,891,2.3000000000000003,246,4.2,25.9484,20.2653 +2012,7,30,15,30,34.7,1.03,0.08700000000000001,0.62,97,846,663,0,0,10,97,846,0,663,0.28500000000000003,22.16,48.01,0.9400000000000001,0.22,891,2.3000000000000003,239,3.7,38.9918,30.5940 +2012,7,30,16,30,36.7,1.03,0.08600000000000001,0.62,106,892,827,0,0,9.5,106,892,0,827,0.28500000000000003,19.17,36.07,0.9400000000000001,0.22,890,2.3000000000000003,225,3,50.0596,39.3637 +2012,7,30,17,30,38.2,1.03,0.084,0.62,111,921,944,0,0,9.200000000000001,111,921,0,944,0.28500000000000003,17.32,25.18,0.9400000000000001,0.22,890,2.2,204,2.6,57.9268,45.5984 +2012,7,30,18,30,39.2,1,0.078,0.62,111,936,1002,0,0,8.9,111,936,0,1002,0.28500000000000003,16.06,17.76,0.9500000000000001,0.22,889,2.2,187,2.6,61.8475,48.7058 +2012,7,30,19,30,39.7,1,0.078,0.62,110,935,996,0,0,8.4,110,935,0,996,0.28500000000000003,15.200000000000001,18.72,0.9500000000000001,0.22,888,2.2,179,2.8000000000000003,61.4323,48.3766 +2012,7,30,20,30,39.800000000000004,1,0.078,0.62,107,922,927,0,0,8,107,922,0,927,0.28500000000000003,14.65,27.17,0.9500000000000001,0.22,888,2.2,176,2.9000000000000004,56.5684,44.5225 +2012,7,30,21,30,39.5,0.93,0.07,0.62,97,900,803,0,0,7.4,97,900,0,803,0.28600000000000003,14.35,38.38,0.9500000000000001,0.22,887,2.2,175,3,48.2110,37.8982 +2012,7,30,22,30,38.7,0.9400000000000001,0.069,0.62,88,856,633,0,0,6.800000000000001,88,856,0,633,0.28600000000000003,14.36,50.42,0.9500000000000001,0.22,887,2.1,174,3,36.6449,28.7340 +2012,7,30,23,30,37.4,0.9400000000000001,0.07,0.62,76,772,430,0,0,6.2,76,772,0,430,0.28600000000000003,14.790000000000001,62.660000000000004,0.9500000000000001,0.22,887,2.1,174,3,23.4984,18.3244 +2012,7,31,0,30,34.4,0.9400000000000001,0.07,0.62,57,611,217,0,0,5.800000000000001,57,611,0,217,0.28600000000000003,16.94,74.78,0.9500000000000001,0.22,887,2.1,175,2.3000000000000003,10.7932,8.3000 +2012,7,31,1,30,31.200000000000003,0.9400000000000001,0.07100000000000001,0.62,22,224,36,0,0,6.9,22,224,0,36,0.28600000000000003,21.88,86.44,0.9500000000000001,0.22,887,2,179,2.1,0.0000,0.0000 +2012,7,31,2,30,29.900000000000002,0.93,0.073,0.62,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.28700000000000003,22.38,97.78,0.9500000000000001,0.22,888,2,185,2.9000000000000004,0.0000,0.0000 +2012,7,31,3,30,29.1,0.93,0.076,0.62,0,0,0,0,0,5.5,0,0,0,0,0.28800000000000003,22.43,107.96000000000001,0.9500000000000001,0.22,888,2,190,3.7,0.0000,0.0000 +2012,7,31,4,30,28,0.93,0.079,0.62,0,0,0,0,0,5.4,0,0,0,0,0.28800000000000003,23.72,116.62,0.9500000000000001,0.22,889,2,195,4.1000000000000005,0.0000,0.0000 +2012,7,31,5,30,26.900000000000002,0.9400000000000001,0.081,0.62,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28800000000000003,25.71,123.02,0.9400000000000001,0.22,889,2.1,201,4.1000000000000005,0.0000,0.0000 +2012,7,31,6,30,25.900000000000002,0.9400000000000001,0.084,0.62,0,0,0,0,0,6.2,0,0,0,0,0.28700000000000003,28.36,126.34,0.9400000000000001,0.22,889,2.1,208,3.9000000000000004,0.0000,0.0000 +2012,7,31,7,30,25.1,0.9500000000000001,0.08700000000000001,0.62,0,0,0,0,0,6.9,0,0,0,0,0.28600000000000003,31.32,125.98,0.9400000000000001,0.22,889,2.2,218,3.7,0.0000,0.0000 +2012,7,31,8,30,24.3,0.97,0.092,0.62,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.28600000000000003,34.42,122.02,0.9400000000000001,0.22,889,2.2,230,3.4000000000000004,0.0000,0.0000 +2012,7,31,9,30,23.8,0.98,0.096,0.62,0,0,0,0,0,8.1,0,0,0,0,0.28600000000000003,36.6,115.12,0.9500000000000001,0.22,889,2.3000000000000003,246,3.2,0.0000,0.0000 +2012,7,31,10,30,23.400000000000002,0.99,0.101,0.62,0,0,0,0,0,8.4,0,0,0,0,0.28600000000000003,38.27,106.12,0.9500000000000001,0.22,890,2.3000000000000003,262,3.1,0.0000,0.0000 +2012,7,31,11,30,23.6,1,0.10400000000000001,0.62,0,0,0,0,0,8.700000000000001,0,0,0,0,0.28600000000000003,38.550000000000004,95.72,0.9500000000000001,0.22,890,2.4000000000000004,275,3.4000000000000004,0.0000,0.0000 +2012,7,31,12,30,25.6,1.02,0.10400000000000001,0.62,33,270,60,0,0,9.200000000000001,33,270,0,60,0.28600000000000003,35.52,84.29,0.9500000000000001,0.22,891,2.4000000000000004,284,3.9000000000000004,0.0000,0.0000 +2012,7,31,13,30,28.900000000000002,1.04,0.101,0.62,69,601,250,0,0,10,69,601,0,250,0.28700000000000003,30.91,72.5,0.9500000000000001,0.22,891,2.4000000000000004,288,4.2,12.7723,9.8583 +2012,7,31,14,30,32.2,1.06,0.096,0.62,87,755,461,0,0,10.4,87,755,0,461,0.28700000000000003,26.26,60.35,0.9400000000000001,0.22,891,2.4000000000000004,289,4.3,25.6548,20.0345 +2012,7,31,15,30,34.7,1.08,0.091,0.62,99,840,659,0,0,10.100000000000001,99,840,0,659,0.28800000000000003,22.330000000000002,48.13,0.9400000000000001,0.22,891,2.4000000000000004,291,3.8000000000000003,38.5702,30.2624 +2012,7,31,16,30,36.6,1.1,0.08600000000000001,0.62,105,890,823,0,0,9.600000000000001,105,890,0,823,0.289,19.490000000000002,36.2,0.9400000000000001,0.22,891,2.4000000000000004,294,2.8000000000000003,49.6268,39.0227 +2012,7,31,17,30,38.1,1.11,0.083,0.62,109,918,938,0,0,9.3,109,918,0,938,0.29,17.55,25.35,0.9400000000000001,0.22,890,2.4000000000000004,293,1.7000000000000002,57.6101,45.3486 +2012,7,31,18,30,39.2,1.11,0.069,0.62,105,939,998,0,0,9.200000000000001,105,939,0,998,0.29,16.46,18,0.9500000000000001,0.22,889,2.4000000000000004,235,0.7000000000000001,61.5907,48.5030 +2012,7,31,19,30,39.800000000000004,1.1300000000000001,0.07,0.62,105,937,992,0,0,9.200000000000001,105,937,0,992,0.291,15.98,18.95,0.9500000000000001,0.22,889,2.4000000000000004,167,0.8,61.1751,48.1735 +2012,7,31,20,30,40,1.1400000000000001,0.07100000000000001,0.62,102,924,923,0,0,9.200000000000001,102,924,0,923,0.291,15.780000000000001,27.35,0.9500000000000001,0.22,888,2.4000000000000004,157,1.5,56.4334,44.4156 +2012,7,31,21,30,39.800000000000004,1.1400000000000001,0.07,0.62,96,897,798,0,0,9,96,897,0,798,0.291,15.68,38.53,0.9500000000000001,0.22,888,2.4000000000000004,163,2.1,47.9564,37.6972 +2012,7,31,22,30,39.1,1.1400000000000001,0.069,0.62,87,852,628,0,0,8.4,87,852,0,628,0.292,15.620000000000001,50.56,0.9500000000000001,0.22,887,2.3000000000000003,170,2.5,36.5117,28.6286 +2012,7,31,23,30,37.800000000000004,1.1400000000000001,0.069,0.62,74,772,427,0,0,7.800000000000001,74,772,0,427,0.293,16.09,62.800000000000004,0.9500000000000001,0.22,887,2.2,176,2.8000000000000003,23.3155,18.1802 +2012,8,1,0,30,35,1.11,0.069,0.58,56,613,215,0,0,7.300000000000001,56,613,0,215,0.294,18.19,74.92,0.9500000000000001,0.22,887,2.1,183,2.2,10.6319,8.1738 +2012,8,1,1,30,31.900000000000002,1.1,0.068,0.58,21,230,35,0,0,8.200000000000001,21,230,0,35,0.294,23.07,86.59,0.9400000000000001,0.22,888,2,191,2,0.0000,0.0000 +2012,8,1,2,30,30.5,1.09,0.066,0.58,0,0,0,0,0,7.9,0,0,0,0,0.295,24.400000000000002,97.95,0.9400000000000001,0.22,888,1.9000000000000001,198,2.8000000000000003,0.0000,0.0000 +2012,8,1,3,30,29.700000000000003,1.09,0.065,0.58,0,0,0,0,0,7.800000000000001,0,0,0,0,0.295,25.43,108.15,0.9400000000000001,0.22,889,2,205,3.4000000000000004,0.0000,0.0000 +2012,8,1,4,30,28.8,1.09,0.066,0.58,0,0,0,0,0,8.1,0,0,0,0,0.294,27.21,116.84,0.9400000000000001,0.22,889,2,210,3.6,0.0000,0.0000 +2012,8,1,5,30,27.900000000000002,1.11,0.065,0.58,0,0,0,0,0,8.200000000000001,0,0,0,0,0.294,28.93,123.26,0.9400000000000001,0.22,889,2,215,3.5,0.0000,0.0000 +2012,8,1,6,30,27.1,1.12,0.065,0.58,0,0,0,0,0,8.3,0,0,0,0,0.293,30.46,126.59,0.9400000000000001,0.22,889,2,218,3.3000000000000003,0.0000,0.0000 +2012,8,1,7,30,26.3,1.1400000000000001,0.064,0.58,0,0,0,0,0,8.3,0,0,0,0,0.293,32.08,126.23,0.9400000000000001,0.22,889,2,222,3.1,0.0000,0.0000 +2012,8,1,8,30,25.6,1.1500000000000001,0.063,0.58,0,0,0,0,0,8.4,0,0,0,0,0.293,33.69,122.25,0.9400000000000001,0.22,889,1.9000000000000001,226,2.9000000000000004,0.0000,0.0000 +2012,8,1,9,30,24.900000000000002,1.16,0.062,0.58,0,0,0,0,0,8.700000000000001,0,0,0,0,0.293,35.75,115.32000000000001,0.9400000000000001,0.22,889,1.9000000000000001,231,2.9000000000000004,0.0000,0.0000 +2012,8,1,10,30,24.1,1.18,0.061,0.58,0,0,0,0,0,9.200000000000001,0,0,0,0,0.292,38.660000000000004,106.3,0.9400000000000001,0.22,889,1.9000000000000001,237,2.8000000000000003,0.0000,0.0000 +2012,8,1,11,30,23.900000000000002,1.19,0.061,0.58,0,0,0,0,0,9.600000000000001,0,0,0,0,0.292,40.34,95.87,0.9400000000000001,0.22,889,2,243,3,0.0000,0.0000 +2012,8,1,12,30,25.3,1.2,0.06,0.58,29,357,63,0,0,10,29,357,0,63,0.292,38.2,84.42,0.9400000000000001,0.22,890,2,249,3.4000000000000004,0.0000,0.0000 +2012,8,1,13,30,28.8,1.21,0.059000000000000004,0.58,57,674,258,0,0,10.4,57,674,0,258,0.291,31.82,72.62,0.9400000000000001,0.22,890,2,252,3.4000000000000004,12.5078,9.6524 +2012,8,1,14,30,33.1,1.22,0.059000000000000004,0.58,73,809,472,0,0,10.100000000000001,73,809,0,472,0.291,24.42,60.47,0.9400000000000001,0.22,890,2,249,3.1,25.3629,19.8054 +2012,8,1,15,30,36.2,1.22,0.058,0.58,84,882,671,0,0,8.700000000000001,84,882,0,671,0.29,18.7,48.25,0.9400000000000001,0.22,890,2,233,2.5,38.3221,30.0668 +2012,8,1,16,30,38.2,1.23,0.058,0.58,91,924,836,0,0,7.800000000000001,91,924,0,836,0.291,15.73,36.34,0.9400000000000001,0.22,889,2,208,2.4000000000000004,49.3741,38.8233 +2012,8,1,17,30,39.6,1.24,0.059000000000000004,0.58,97,947,951,0,0,7.2,97,947,0,951,0.291,14.05,25.53,0.9400000000000001,0.22,889,2,193,2.8000000000000003,57.2324,45.0508 +2012,8,1,18,30,40.5,1.25,0.064,0.58,102,953,1007,0,0,6.9,102,953,0,1007,0.291,13.08,18.240000000000002,0.9400000000000001,0.22,888,2,190,3.4000000000000004,61.3334,48.2998 +2012,8,1,19,30,41.1,1.25,0.065,0.58,102,951,1000,0,0,6.6000000000000005,102,951,0,1000,0.291,12.44,19.19,0.9400000000000001,0.22,887,2,191,3.8000000000000003,60.9178,47.9704 +2012,8,1,20,30,41.2,1.23,0.067,0.58,100,934,929,0,0,6.4,100,934,0,929,0.291,12.21,27.54,0.9400000000000001,0.22,886,2.1,192,4,56.1767,44.2129 +2012,8,1,21,30,40.800000000000004,1.22,0.077,0.58,99,899,801,0,0,6.2,99,899,0,801,0.291,12.34,38.69,0.9400000000000001,0.22,886,2.1,191,4,47.6422,37.4494 +2012,8,1,22,30,40,1.21,0.08,0.58,91,847,628,0,0,6.1000000000000005,91,847,0,628,0.29,12.76,50.71,0.9400000000000001,0.22,885,2.1,189,3.9000000000000004,36.2043,28.3863 +2012,8,1,23,30,38.6,1.19,0.084,0.58,79,756,423,0,0,6.1000000000000005,79,756,0,423,0.29,13.74,62.95,0.9400000000000001,0.22,885,2.1,186,3.6,23.1312,18.0347 +2012,8,2,0,30,35.6,1.18,0.08700000000000001,0.58,59,585,210,0,0,6.2,59,585,0,210,0.29,16.36,75.07000000000001,0.9400000000000001,0.22,885,2.1,179,2.6,10.5209,8.0865 +2012,8,2,1,30,32.4,1.17,0.09,0.58,21,188,32,0,0,7.6000000000000005,21,188,0,32,0.29,21.45,86.75,0.9400000000000001,0.22,885,2.1,174,2.1,0.0000,0.0000 +2012,8,2,2,30,31.1,1.16,0.092,0.58,0,0,0,0,3,7.9,0,0,0,0,0.289,23.61,98.13,0.9400000000000001,0.22,886,2.1,175,2.8000000000000003,0.0000,0.0000 +2012,8,2,3,30,30.5,1.1500000000000001,0.096,0.58,0,0,0,0,3,8.200000000000001,0,0,0,0,0.28800000000000003,24.87,108.35000000000001,0.9400000000000001,0.22,886,2.2,182,3.6,0.0000,0.0000 +2012,8,2,4,30,29.700000000000003,1.1500000000000001,0.101,0.58,0,0,0,0,0,8.5,0,0,0,0,0.28700000000000003,26.57,117.06,0.9400000000000001,0.22,886,2.3000000000000003,190,4.1000000000000005,0.0000,0.0000 +2012,8,2,5,30,28.8,1.1400000000000001,0.10400000000000001,0.58,0,0,0,0,0,8.8,0,0,0,0,0.28700000000000003,28.52,123.51,0.9400000000000001,0.22,886,2.4000000000000004,196,4.4,0.0000,0.0000 +2012,8,2,6,30,28.1,1.1400000000000001,0.106,0.58,0,0,0,0,0,9,0,0,0,0,0.28600000000000003,30.27,126.85000000000001,0.9400000000000001,0.22,886,2.5,202,4.6000000000000005,0.0000,0.0000 +2012,8,2,7,30,27.400000000000002,1.1500000000000001,0.106,0.58,0,0,0,0,0,9.3,0,0,0,0,0.28600000000000003,32.15,126.48,0.9400000000000001,0.22,886,2.6,208,4.800000000000001,0.0000,0.0000 +2012,8,2,8,30,26.8,1.17,0.105,0.58,0,0,0,0,0,9.5,0,0,0,0,0.28600000000000003,33.75,122.47,0.9400000000000001,0.22,885,2.7,215,4.800000000000001,0.0000,0.0000 +2012,8,2,9,30,26.200000000000003,1.19,0.10300000000000001,0.58,0,0,0,0,0,9.600000000000001,0,0,0,0,0.28600000000000003,35.27,115.52,0.9400000000000001,0.22,885,2.7,222,4.800000000000001,0.0000,0.0000 +2012,8,2,10,30,25.6,1.23,0.098,0.58,0,0,0,0,0,9.700000000000001,0,0,0,0,0.28600000000000003,36.68,106.47,0.9400000000000001,0.22,886,2.7,230,4.5,0.0000,0.0000 +2012,8,2,11,30,25.400000000000002,1.28,0.092,0.58,0,0,0,0,0,9.600000000000001,0,0,0,0,0.28700000000000003,36.980000000000004,96.02,0.9500000000000001,0.22,886,2.7,242,4.2,0.0000,0.0000 +2012,8,2,12,30,26.6,1.34,0.084,0.58,30,301,58,0,0,9.700000000000001,30,301,0,58,0.28800000000000003,34.53,84.55,0.9500000000000001,0.22,886,2.7,257,4.2,0.0000,0.0000 +2012,8,2,13,30,28.900000000000002,1.41,0.077,0.58,60,632,248,0,0,10.600000000000001,60,632,0,248,0.28800000000000003,32.02,72.75,0.9400000000000001,0.22,887,2.7,275,4.1000000000000005,12.8936,9.9483 +2012,8,2,14,30,31.400000000000002,1.46,0.07200000000000001,0.58,77,779,459,0,0,11.700000000000001,77,779,0,459,0.289,29.97,60.58,0.9400000000000001,0.22,887,2.7,295,3.9000000000000004,25.9495,20.2620 +2012,8,2,15,30,34,1.49,0.069,0.58,87,857,657,0,0,12.3,87,857,0,657,0.289,26.88,48.370000000000005,0.9400000000000001,0.22,887,2.7,313,3.6,39.0041,30.6009 +2012,8,2,16,30,36.300000000000004,1.52,0.067,0.58,94,900,818,0,0,12.3,94,900,0,818,0.29,23.72,36.47,0.9400000000000001,0.22,887,2.8000000000000003,325,3.3000000000000003,50.1401,39.4249 +2012,8,2,17,30,38.2,1.53,0.066,0.58,98,925,932,0,0,12.200000000000001,98,925,0,932,0.29,21.13,25.7,0.9400000000000001,0.22,886,2.8000000000000003,334,3,58.0132,45.6647 +2012,8,2,18,30,39.7,1.58,0.06,0.58,97,940,989,0,0,11.8,97,940,0,989,0.29,19.080000000000002,18.48,0.9400000000000001,0.22,885,2.8000000000000003,341,2.6,61.8747,48.7256 +2012,8,2,19,30,40.6,1.59,0.06,0.58,97,939,983,0,0,11.4,97,939,0,983,0.291,17.68,19.44,0.9400000000000001,0.22,884,2.8000000000000003,347,2.2,61.3967,48.3469 +2012,8,2,20,30,41,1.59,0.06,0.58,94,926,914,0,0,11,94,926,0,914,0.291,16.85,27.73,0.9400000000000001,0.22,884,2.8000000000000003,350,1.8,56.5277,44.4885 +2012,8,2,21,30,40.800000000000004,1.6300000000000001,0.057,0.58,87,902,790,0,0,10.600000000000001,87,902,0,790,0.291,16.53,38.85,0.9400000000000001,0.22,883,2.8000000000000003,349,1.4000000000000001,47.8044,37.5760 +2012,8,2,22,30,40.2,1.6400000000000001,0.058,0.58,80,855,619,0,0,10,80,855,0,619,0.291,16.490000000000002,50.86,0.9400000000000001,0.22,883,2.8000000000000003,350,1,36.1838,28.3690 +2012,8,2,23,30,39.1,1.6400000000000001,0.059000000000000004,0.58,69,775,419,0,0,9.5,69,775,0,419,0.291,16.86,63.1,0.9400000000000001,0.22,883,2.7,195,0.6000000000000001,22.8915,17.8459 +2012,8,3,0,30,37,1.6400000000000001,0.061,0.58,51,615,208,0,0,9.200000000000001,51,615,0,208,0.291,18.53,75.23,0.9500000000000001,0.22,883,2.7,74,0.5,10.2628,7.8860 +2012,8,3,1,30,34.5,1.6300000000000001,0.062,0.58,18,233,31,0,1,11.100000000000001,18,233,0,31,0.292,24.13,86.92,0.9500000000000001,0.22,883,2.7,124,0.7000000000000001,0.0000,0.0000 +2012,8,3,2,30,32.7,1.62,0.064,0.58,0,0,0,0,0,10.3,0,0,0,0,0.292,25.32,98.32000000000001,0.9500000000000001,0.22,883,2.7,150,1.1,0.0000,0.0000 +2012,8,3,3,30,31.1,1.59,0.07,0.58,0,0,0,0,3,10.200000000000001,0,0,0,0,0.292,27.45,108.56,0.9500000000000001,0.22,884,2.8000000000000003,173,1.5,0.0000,0.0000 +2012,8,3,4,30,29.900000000000002,1.54,0.078,0.58,0,0,0,0,4,10.100000000000001,0,0,0,0,0.291,29.38,117.29,0.9500000000000001,0.22,884,2.8000000000000003,191,1.7000000000000002,0.0000,0.0000 +2012,8,3,5,30,29.1,1.48,0.088,0.58,0,0,0,0,0,10.200000000000001,0,0,0,0,0.291,30.900000000000002,123.76,0.9500000000000001,0.22,884,2.9000000000000004,203,1.9000000000000001,0.0000,0.0000 +2012,8,3,6,30,28.400000000000002,1.45,0.096,0.58,0,0,0,0,1,10.3,0,0,0,0,0.29,32.3,127.11,0.9500000000000001,0.22,884,2.9000000000000004,214,2,0.0000,0.0000 +2012,8,3,7,30,27.6,1.42,0.10300000000000001,0.58,0,0,0,0,3,10.5,0,0,0,0,0.29,34.34,126.73,0.9500000000000001,0.22,884,2.9000000000000004,233,1.8,0.0000,0.0000 +2012,8,3,8,30,26.5,1.3900000000000001,0.11,0.58,0,0,0,0,3,11,0,0,0,0,0.289,37.980000000000004,122.71000000000001,0.9500000000000001,0.22,884,2.9000000000000004,251,1.6,0.0000,0.0000 +2012,8,3,9,30,25.400000000000002,1.37,0.115,0.58,0,0,0,0,1,12,0,0,0,0,0.289,43.12,115.72,0.9500000000000001,0.22,885,2.9000000000000004,260,1.3,0.0000,0.0000 +2012,8,3,10,30,24.5,1.36,0.11800000000000001,0.58,0,0,0,0,0,12.9,0,0,0,0,0.289,48.33,106.64,0.9500000000000001,0.22,885,2.9000000000000004,265,1.1,0.0000,0.0000 +2012,8,3,11,30,24.200000000000003,1.35,0.115,0.58,0,0,0,0,0,13.4,0,0,0,0,0.289,50.94,96.18,0.9500000000000001,0.22,885,2.9000000000000004,267,1.1,0.0000,0.0000 +2012,8,3,12,30,25.5,1.36,0.11,0.58,31,255,55,0,0,13.8,31,255,0,55,0.29,48.49,84.69,0.9500000000000001,0.22,886,2.9000000000000004,254,1.6,0.0000,0.0000 +2012,8,3,13,30,28.5,1.37,0.10400000000000001,0.58,67,589,241,0,0,13.4,67,589,0,241,0.29,39.59,72.87,0.9500000000000001,0.22,886,2.9000000000000004,243,2.4000000000000004,12.3789,9.5492 +2012,8,3,14,30,32.2,1.3800000000000001,0.099,0.58,87,742,450,0,0,12.600000000000001,87,742,0,450,0.29,30.38,60.7,0.9500000000000001,0.22,886,3,247,3.2,25.2181,19.6896 +2012,8,3,15,30,35.5,1.3900000000000001,0.098,0.58,100,824,646,0,0,11.600000000000001,100,824,0,646,0.291,23.59,48.49,0.9500000000000001,0.22,886,3,250,3.6,38.1747,29.9493 +2012,8,3,16,30,37.9,1.3800000000000001,0.1,0.58,110,869,808,0,0,11,110,869,0,808,0.291,19.89,36.61,0.9500000000000001,0.22,885,3,244,3.5,49.0478,38.5653 +2012,8,3,17,30,39.800000000000004,1.37,0.10300000000000001,0.58,118,893,921,0,0,10.600000000000001,118,893,0,921,0.291,17.490000000000002,25.89,0.9500000000000001,0.22,885,3,229,3.3000000000000003,56.8425,44.7427 +2012,8,3,18,30,41.1,1.36,0.085,0.58,112,917,980,0,0,10.200000000000001,112,917,0,980,0.291,15.91,18.73,0.9500000000000001,0.22,884,3,211,3.5,60.7570,47.8449 +2012,8,3,19,30,41.900000000000006,1.34,0.088,0.58,113,914,973,0,0,9.8,113,914,0,973,0.291,14.84,19.69,0.9500000000000001,0.22,883,3,197,3.9000000000000004,60.3401,47.5143 +2012,8,3,20,30,41.800000000000004,1.3,0.099,0.58,115,891,903,0,0,9.3,115,891,0,903,0.29,14.4,27.93,0.96,0.22,882,3,189,4.4,55.6010,43.7584 +2012,8,3,21,30,41.2,1.26,0.10400000000000001,0.58,111,859,779,0,0,8.6,111,859,0,779,0.29,14.200000000000001,39.02,0.96,0.22,882,2.9000000000000004,185,4.7,47.1312,37.0459 +2012,8,3,22,30,40.300000000000004,1.27,0.114,0.58,105,799,607,0,0,7.800000000000001,105,799,0,607,0.29,14.1,51.02,0.96,0.22,881,2.8000000000000003,182,4.9,35.6449,27.9452 +2012,8,3,23,30,39.1,1.29,0.115,0.58,89,707,407,0,0,6.9,89,707,0,407,0.29,14.120000000000001,63.25,0.9500000000000001,0.22,881,2.7,180,4.9,22.6520,17.6574 +2012,8,4,0,30,36.800000000000004,1.31,0.106,0.58,62,546,200,0,1,5.9,62,546,0,200,0.29,14.99,75.39,0.9500000000000001,0.22,882,2.5,177,4.4,10.1510,7.7978 +2012,8,4,1,30,34.1,1.32,0.1,0.58,19,162,28,7,7,5.6000000000000005,21,2,7,21,0.29,17.01,87.08,0.9400000000000001,0.22,882,2.4000000000000004,175,3.9000000000000004,0.0000,0.0000 +2012,8,4,2,30,32.2,1.3,0.099,0.58,0,0,0,0,8,5,0,0,0,0,0.29,18.2,98.51,0.9400000000000001,0.22,883,2.3000000000000003,178,3.9000000000000004,0.0000,0.0000 +2012,8,4,3,30,30.900000000000002,1.27,0.105,0.58,0,0,0,0,7,4.9,0,0,0,0,0.29,19.45,108.77,0.9400000000000001,0.22,884,2.4000000000000004,185,3.7,0.0000,0.0000 +2012,8,4,4,30,29.700000000000003,1.24,0.117,0.58,0,0,0,0,7,5.6000000000000005,0,0,0,0,0.29,21.81,117.53,0.9500000000000001,0.22,884,2.6,200,3.1,0.0000,0.0000 +2012,8,4,5,30,28.900000000000002,1.22,0.135,0.58,0,0,0,0,8,6.7,0,0,0,0,0.289,24.67,124.02,0.9500000000000001,0.22,885,2.7,223,2.6,0.0000,0.0000 +2012,8,4,6,30,28.1,1.22,0.136,0.58,0,0,0,0,8,8.200000000000001,0,0,0,0,0.289,28.6,127.38000000000001,0.9500000000000001,0.22,885,2.8000000000000003,239,2.1,0.0000,0.0000 +2012,8,4,7,30,27,1.23,0.125,0.58,0,0,0,0,0,9.700000000000001,0,0,0,0,0.289,33.87,126.99000000000001,0.9400000000000001,0.22,885,2.9000000000000004,238,1.7000000000000002,0.0000,0.0000 +2012,8,4,8,30,26.3,1.24,0.11800000000000001,0.58,0,0,0,0,0,11,0,0,0,0,0.289,38.39,122.94,0.9400000000000001,0.22,885,2.8000000000000003,230,1.8,0.0000,0.0000 +2012,8,4,9,30,25.700000000000003,1.23,0.111,0.58,0,0,0,0,0,12,0,0,0,0,0.289,42.34,115.93,0.9400000000000001,0.22,885,2.7,222,2.2,0.0000,0.0000 +2012,8,4,10,30,25.1,1.24,0.10300000000000001,0.58,0,0,0,0,0,12.600000000000001,0,0,0,0,0.29,45.76,106.82000000000001,0.9400000000000001,0.22,886,2.5,218,2.6,0.0000,0.0000 +2012,8,4,11,30,25,1.24,0.096,0.58,0,0,0,0,0,12.9,0,0,0,0,0.29,47.13,96.33,0.9400000000000001,0.22,886,2.4000000000000004,215,3.1,0.0000,0.0000 +2012,8,4,12,30,26.6,1.24,0.093,0.58,30,278,55,0,0,13,30,278,0,55,0.29,43.08,84.82000000000001,0.9400000000000001,0.22,887,2.3000000000000003,215,4,0.0000,0.0000 +2012,8,4,13,30,29.5,1.22,0.093,0.58,65,611,244,0,0,12.8,65,611,0,244,0.29,35.81,72.99,0.9400000000000001,0.22,887,2.3000000000000003,220,4.7,12.0160,9.2675 +2012,8,4,14,30,32.4,1.21,0.096,0.58,86,757,455,0,0,12.100000000000001,86,757,0,455,0.29,28.95,60.82,0.9400000000000001,0.22,888,2.3000000000000003,226,4.7,24.7057,19.2882 +2012,8,4,15,30,34.7,1.2,0.10200000000000001,0.58,103,830,651,0,0,11.5,103,830,0,651,0.291,24.57,48.620000000000005,0.9400000000000001,0.22,888,2.4000000000000004,228,3.7,37.5201,29.4349 +2012,8,4,16,30,36.4,1.19,0.11,0.58,116,866,810,0,0,11.3,116,866,0,810,0.291,21.98,36.75,0.9400000000000001,0.22,888,2.6,224,2.5,48.4345,38.0825 +2012,8,4,17,30,37.7,1.19,0.11900000000000001,0.58,127,885,922,0,0,11,127,885,0,922,0.291,20.150000000000002,26.07,0.9500000000000001,0.22,888,2.7,212,1.6,56.1586,44.2038 +2012,8,4,18,30,38.5,1.1500000000000001,0.112,0.58,127,899,977,0,0,10.9,127,899,0,977,0.292,19.09,18.98,0.9500000000000001,0.22,888,2.8000000000000003,180,1.2000000000000002,60.1919,47.3992 +2012,8,4,19,30,38.7,1.1400000000000001,0.124,0.58,133,887,967,0,0,10.8,133,887,0,967,0.292,18.82,19.95,0.9500000000000001,0.22,888,2.9000000000000004,131,1.4000000000000001,59.7134,47.0202 +2012,8,4,20,30,38.400000000000006,1.12,0.146,0.58,140,856,894,0,0,10.8,140,856,0,894,0.292,19.1,28.14,0.96,0.22,887,2.9000000000000004,95,2,54.9170,43.2195 +2012,8,4,21,30,37.5,1.12,0.18,0.58,146,794,762,0,0,10.8,146,794,0,762,0.293,20.02,39.19,0.96,0.22,887,3,76,2.7,46.4573,36.5153 +2012,8,4,22,30,36.2,1.1500000000000001,0.181,0.58,132,733,591,0,0,11,132,733,0,591,0.293,21.78,51.18,0.96,0.22,888,3,62,3.5,34.9324,27.3853 +2012,8,4,23,30,34.300000000000004,1.2,0.17,0.58,107,640,393,0,0,11.4,107,640,0,393,0.293,24.990000000000002,63.410000000000004,0.96,0.22,888,3,52,4.2,21.9808,17.1323 +2012,8,5,0,30,31.700000000000003,1.25,0.161,0.58,73,460,187,0,0,12.3,73,460,0,187,0.294,30.6,75.56,0.9500000000000001,0.22,889,3.1,44,4.7,9.7472,7.4855 +2012,8,5,1,30,29.1,1.3,0.157,0.58,19,95,23,0,1,13.5,19,95,0,23,0.294,38.33,87.25,0.9500000000000001,0.22,890,3.1,41,4.9,0.0000,0.0000 +2012,8,5,2,30,27.200000000000003,1.34,0.159,0.58,0,0,0,0,7,14.200000000000001,0,0,0,0,0.294,44.85,98.7,0.9500000000000001,0.22,891,3.2,45,4.9,0.0000,0.0000 +2012,8,5,3,30,26,1.34,0.162,0.58,0,0,0,0,7,14.4,0,0,0,0,0.293,48.96,108.99000000000001,0.9500000000000001,0.22,892,3.4000000000000004,47,4.800000000000001,0.0000,0.0000 +2012,8,5,4,30,25,1.3,0.169,0.58,0,0,0,0,7,14.4,0,0,0,0,0.293,51.910000000000004,117.77,0.9500000000000001,0.22,893,3.5,43,5,0.0000,0.0000 +2012,8,5,5,30,24.1,1.25,0.184,0.58,0,0,0,0,7,14.200000000000001,0,0,0,0,0.292,53.79,124.28,0.96,0.22,894,3.6,39,5.2,0.0000,0.0000 +2012,8,5,6,30,23.400000000000002,1.22,0.201,0.58,0,0,0,0,7,13.8,0,0,0,0,0.291,54.660000000000004,127.65,0.96,0.22,895,3.6,37,5.2,0.0000,0.0000 +2012,8,5,7,30,22.8,1.22,0.20800000000000002,0.58,0,0,0,0,7,13.3,0,0,0,0,0.29,55.19,127.25,0.96,0.22,895,3.6,38,5,0.0000,0.0000 +2012,8,5,8,30,22.200000000000003,1.23,0.203,0.58,0,0,0,0,7,13,0,0,0,0,0.289,56.02,123.18,0.96,0.22,895,3.6,40,4.7,0.0000,0.0000 +2012,8,5,9,30,21.6,1.25,0.187,0.58,0,0,0,0,8,12.9,0,0,0,0,0.28800000000000003,57.77,116.14,0.96,0.22,895,3.5,41,4.3,0.0000,0.0000 +2012,8,5,10,30,21,1.3,0.166,0.58,0,0,0,0,7,13,0,0,0,0,0.28800000000000003,60.14,107,0.9500000000000001,0.22,895,3.4000000000000004,41,4,0.0000,0.0000 +2012,8,5,11,30,20.6,1.34,0.149,0.58,0,0,0,0,3,13.100000000000001,0,0,0,0,0.28800000000000003,62.03,96.48,0.9500000000000001,0.22,896,3.2,42,3.9000000000000004,0.0000,0.0000 +2012,8,5,12,30,20.900000000000002,1.37,0.138,0.58,31,209,50,7,3,13.200000000000001,34,0,7,34,0.28700000000000003,61.39,84.95,0.9500000000000001,0.22,896,3.1,46,4.1000000000000005,0.0000,0.0000 +2012,8,5,13,30,22.5,1.4000000000000001,0.129,0.58,72,550,232,0,0,13.3,72,550,0,232,0.28800000000000003,56,73.12,0.9500000000000001,0.22,897,3.1,55,4.1000000000000005,12.1520,9.3706 +2012,8,5,14,30,25.200000000000003,1.43,0.122,0.58,94,714,441,0,0,13.200000000000001,94,714,0,441,0.28800000000000003,47.25,60.94,0.9400000000000001,0.22,897,3.1,63,4,24.9619,19.4869 +2012,8,5,15,30,28.1,1.45,0.117,0.58,107,804,637,0,0,13,107,804,0,637,0.28800000000000003,39.37,48.74,0.9400000000000001,0.22,897,3.1,70,3.6,37.7937,29.6485 +2012,8,5,16,30,30.700000000000003,1.47,0.113,0.58,115,856,800,0,0,12.9,115,856,0,800,0.28800000000000003,33.660000000000004,36.9,0.9400000000000001,0.22,896,3.1,77,3.1,48.5407,38.1652 +2012,8,5,17,30,32.7,1.48,0.112,0.58,121,884,914,0,0,12.8,121,884,0,914,0.28800000000000003,29.82,26.26,0.9400000000000001,0.22,896,3.1,85,2.8000000000000003,56.2072,44.2414 +2012,8,5,18,30,34.2,1.57,0.091,0.58,113,911,974,0,0,12.600000000000001,113,911,0,974,0.289,27.060000000000002,19.240000000000002,0.9400000000000001,0.22,895,3.1,95,2.8000000000000003,59.9952,47.2438 +2012,8,5,19,30,35.2,1.58,0.094,0.58,115,908,966,0,0,12.3,115,908,0,966,0.289,25.13,20.21,0.9400000000000001,0.22,894,3.1,105,2.9000000000000004,59.3316,46.7189 +2012,8,5,20,30,35.6,1.58,0.1,0.58,114,889,897,0,0,12,114,889,0,897,0.289,24.060000000000002,28.35,0.9400000000000001,0.22,893,3.1,113,3.2,54.3542,42.7758 +2012,8,5,21,30,35.4,1.59,0.101,0.58,108,858,771,7,2,11.700000000000001,283,612,7,756,0.289,23.93,39.37,0.9400000000000001,0.22,893,3.1,119,3.4000000000000004,45.4261,35.7038 +2012,8,5,22,30,34.6,1.58,0.11,0.58,101,797,599,0,0,11.600000000000001,101,797,0,599,0.289,24.8,51.34,0.9400000000000001,0.22,893,3.1,124,3.4000000000000004,33.9906,26.6457 +2012,8,5,23,30,33.4,1.57,0.114,0.58,86,700,398,0,0,11.600000000000001,86,700,0,398,0.289,26.59,63.58,0.9400000000000001,0.22,893,3.1,128,3.4000000000000004,21.2014,16.5230 +2012,8,6,0,30,31.900000000000002,1.57,0.11800000000000001,0.58,62,515,189,7,2,11.9,119,206,7,170,0.289,29.37,75.73,0.9400000000000001,0.22,893,3.2,132,2.9000000000000004,9.1006,6.9868 +2012,8,6,1,30,30.5,1.58,0.11900000000000001,0.58,17,130,23,7,2,12.600000000000001,15,0,7,15,0.29,33.33,87.42,0.9400000000000001,0.22,894,3.2,135,2.7,0.0000,0.0000 +2012,8,6,2,30,29.5,1.6,0.11800000000000001,0.58,0,0,0,0,1,12.8,0,0,0,0,0.29,35.800000000000004,98.9,0.93,0.22,894,3.3000000000000003,138,3,0.0000,0.0000 +2012,8,6,3,30,28.700000000000003,1.61,0.117,0.58,0,0,0,0,3,12.9,0,0,0,0,0.29,37.88,109.21000000000001,0.93,0.22,895,3.4000000000000004,140,3.5,0.0000,0.0000 +2012,8,6,4,30,27.900000000000002,1.61,0.12,0.58,0,0,0,0,3,13.200000000000001,0,0,0,0,0.29,40.300000000000004,118.01,0.93,0.22,895,3.4000000000000004,143,3.7,0.0000,0.0000 +2012,8,6,5,30,27.1,1.62,0.123,0.58,0,0,0,0,1,13.5,0,0,0,0,0.289,43.09,124.54,0.93,0.22,895,3.5,145,3.7,0.0000,0.0000 +2012,8,6,6,30,26.5,1.61,0.13,0.58,0,0,0,0,1,13.700000000000001,0,0,0,0,0.289,45.300000000000004,127.92,0.9400000000000001,0.22,894,3.6,147,3.6,0.0000,0.0000 +2012,8,6,7,30,26,1.58,0.14100000000000001,0.58,0,0,0,0,1,13.9,0,0,0,0,0.28800000000000003,47.11,127.52,0.9400000000000001,0.22,894,3.6,149,3.5,0.0000,0.0000 +2012,8,6,8,30,25.6,1.54,0.154,0.58,0,0,0,0,4,13.9,0,0,0,0,0.28700000000000003,48.47,123.42,0.9500000000000001,0.22,894,3.7,153,3.4000000000000004,0.0000,0.0000 +2012,8,6,9,30,25.200000000000003,1.51,0.163,0.58,0,0,0,0,3,14,0,0,0,0,0.28500000000000003,49.86,116.35000000000001,0.9500000000000001,0.22,894,3.7,161,3.1,0.0000,0.0000 +2012,8,6,10,30,24.8,1.48,0.163,0.58,0,0,0,0,3,14.100000000000001,0,0,0,0,0.28400000000000003,51.4,107.18,0.9500000000000001,0.22,894,3.7,173,2.9000000000000004,0.0000,0.0000 +2012,8,6,11,30,24.700000000000003,1.45,0.157,0.58,0,0,0,0,3,14.200000000000001,0,0,0,0,0.28300000000000003,51.94,96.64,0.9500000000000001,0.22,894,3.7,187,2.8000000000000003,0.0000,0.0000 +2012,8,6,12,30,25.6,1.43,0.15,0.58,30,190,47,7,7,14.200000000000001,35,3,7,35,0.28200000000000003,49.42,85.09,0.96,0.22,894,3.7,203,3.1,0.0000,0.0000 +2012,8,6,13,30,27.8,1.4000000000000001,0.14200000000000002,0.58,75,526,226,7,7,14.3,132,162,7,179,0.281,43.57,73.24,0.96,0.22,894,3.6,217,3.7,11.5404,8.8972 +2012,8,6,14,30,30.6,1.3800000000000001,0.136,0.58,99,691,433,0,4,14.200000000000001,235,28,0,248,0.281,36.75,61.06,0.96,0.22,894,3.6,228,4.1000000000000005,24.1761,18.8721 +2012,8,6,15,30,33.300000000000004,1.35,0.131,0.58,113,783,628,0,4,14,365,110,0,437,0.28200000000000003,31.18,48.870000000000005,0.96,0.22,893,3.6,231,4.2,36.9655,28.9979 +2012,8,6,16,30,35.4,1.31,0.128,0.58,123,835,790,0,0,13.9,123,835,0,790,0.28200000000000003,27.64,37.04,0.96,0.22,893,3.6,228,4.1000000000000005,47.9268,37.6818 +2012,8,6,17,30,36.800000000000004,1.27,0.132,0.58,132,860,903,0,1,13.9,132,860,0,903,0.28300000000000003,25.490000000000002,26.45,0.96,0.22,892,3.6,224,4.1000000000000005,55.7064,43.8466 +2012,8,6,18,30,37.4,1.23,0.14,0.58,140,867,957,0,0,13.8,140,867,0,957,0.28300000000000003,24.5,19.5,0.96,0.22,891,3.6,222,4.2,59.7979,47.0878 +2012,8,6,19,30,37.4,1.21,0.14,0.58,140,867,951,0,3,13.5,338,1,0,339,0.28300000000000003,24.13,20.48,0.96,0.22,890,3.5,220,4.2,59.2565,46.6592 +2012,8,6,20,30,37.4,1.21,0.133,0.58,132,856,884,0,4,13.3,217,0,0,218,0.28300000000000003,23.8,28.560000000000002,0.96,0.22,890,3.5,215,4.2,54.5209,42.9062 +2012,8,6,21,30,37.2,1.21,0.114,0.58,116,840,763,0,6,13.100000000000001,161,1,0,162,0.28300000000000003,23.66,39.56,0.96,0.22,889,3.4000000000000004,209,4.1000000000000005,45.0499,35.4072 +2012,8,6,22,30,36.7,1.22,0.10400000000000001,0.58,100,796,595,0,7,12.700000000000001,45,731,0,500,0.28200000000000003,23.69,51.52,0.96,0.22,889,3.3000000000000003,204,3.9000000000000004,34.4293,26.9883 +2012,8,6,23,30,35.6,1.23,0.096,0.58,82,710,396,0,7,12.3,150,458,0,352,0.28200000000000003,24.51,63.75,0.96,0.22,889,3.3000000000000003,199,3.5,21.4459,16.7114 +2012,8,7,0,30,33.1,1.26,0.092,0.58,58,538,189,0,1,12,58,538,0,189,0.28200000000000003,27.76,75.9,0.96,0.22,889,3.3000000000000003,187,2.4000000000000004,8.2617,6.3407 +2012,8,7,1,30,30.400000000000002,1.28,0.09,0.58,16,135,22,0,1,13.100000000000001,16,135,0,22,0.28200000000000003,34.81,87.60000000000001,0.9500000000000001,0.22,889,3.3000000000000003,172,1.9000000000000001,0.0000,0.0000 +2012,8,7,2,30,29.200000000000003,1.31,0.089,0.58,0,0,0,0,3,12.9,0,0,0,0,0.28300000000000003,36.76,99.11,0.9500000000000001,0.22,889,3.2,167,2.7,0.0000,0.0000 +2012,8,7,3,30,28.6,1.35,0.089,0.58,0,0,0,0,3,12.200000000000001,0,0,0,0,0.28200000000000003,36.31,109.44,0.9500000000000001,0.22,890,3.1,171,3.2,0.0000,0.0000 +2012,8,7,4,30,27.8,1.37,0.089,0.58,0,0,0,0,7,11.700000000000001,0,0,0,0,0.28200000000000003,36.83,118.26,0.9500000000000001,0.22,890,3.1,178,3.3000000000000003,0.0000,0.0000 +2012,8,7,5,30,27.200000000000003,1.3800000000000001,0.092,0.58,0,0,0,0,7,11.200000000000001,0,0,0,0,0.28200000000000003,36.99,124.82000000000001,0.9500000000000001,0.22,890,3,187,3.2,0.0000,0.0000 +2012,8,7,6,30,26.6,1.3800000000000001,0.095,0.58,0,0,0,0,7,10.8,0,0,0,0,0.28200000000000003,37.12,128.2,0.9500000000000001,0.22,889,2.9000000000000004,196,3.2,0.0000,0.0000 +2012,8,7,7,30,26.1,1.3900000000000001,0.096,0.58,0,0,0,0,8,10.3,0,0,0,0,0.28200000000000003,37.11,127.79,0.9500000000000001,0.22,889,2.8000000000000003,205,3.3000000000000003,0.0000,0.0000 +2012,8,7,8,30,25.5,1.3900000000000001,0.096,0.58,0,0,0,0,8,10,0,0,0,0,0.28200000000000003,37.56,123.67,0.9500000000000001,0.22,889,2.8000000000000003,215,3.3000000000000003,0.0000,0.0000 +2012,8,7,9,30,24.8,1.4000000000000001,0.093,0.58,0,0,0,0,7,9.9,0,0,0,0,0.28200000000000003,39.09,116.56,0.9500000000000001,0.22,889,2.7,225,3.2,0.0000,0.0000 +2012,8,7,10,30,24.1,1.4000000000000001,0.091,0.58,0,0,0,0,7,10.200000000000001,0,0,0,0,0.28200000000000003,41.57,107.36,0.9500000000000001,0.22,889,2.7,236,3.2,0.0000,0.0000 +2012,8,7,11,30,23.900000000000002,1.4000000000000001,0.088,0.58,0,0,0,0,7,10.4,0,0,0,0,0.28200000000000003,42.660000000000004,96.8,0.9500000000000001,0.22,889,2.7,248,3.2,0.0000,0.0000 +2012,8,7,12,30,24.8,1.4000000000000001,0.088,0.58,27,268,50,7,8,10.600000000000001,34,4,7,35,0.28200000000000003,40.9,85.22,0.9500000000000001,0.22,890,2.7,258,3.4000000000000004,0.0000,0.0000 +2012,8,7,13,30,27.3,1.4000000000000001,0.089,0.58,63,603,235,0,3,10.8,158,56,0,174,0.28200000000000003,35.69,73.37,0.9500000000000001,0.22,890,2.8000000000000003,263,3.5,8.8941,6.8557 +2012,8,7,14,30,30.3,1.4000000000000001,0.093,0.58,84,749,445,0,0,11.100000000000001,84,749,0,445,0.28200000000000003,30.67,61.18,0.9500000000000001,0.22,890,2.8000000000000003,263,3.6,13.5856,10.6043 +2012,8,7,15,30,32.7,1.4000000000000001,0.095,0.58,99,827,641,0,0,11,99,827,0,641,0.28200000000000003,26.53,48.99,0.9500000000000001,0.22,890,2.9000000000000004,256,3,25.3480,19.8837 +2012,8,7,16,30,34.5,1.4000000000000001,0.096,0.58,108,871,802,0,1,10.700000000000001,108,871,0,802,0.28200000000000003,23.580000000000002,37.19,0.9500000000000001,0.22,890,3,237,2.1,47.3141,37.1994 +2012,8,7,17,30,36,1.41,0.096,0.58,114,898,917,0,1,10.5,114,898,0,917,0.281,21.330000000000002,26.64,0.9500000000000001,0.22,890,3,201,1.7000000000000002,55.0229,43.3080 +2012,8,7,18,30,37.2,1.34,0.079,0.58,109,919,974,0,0,10.200000000000001,109,919,0,974,0.281,19.64,19.77,0.96,0.22,889,3.1,169,2,58.7411,46.2550 +2012,8,7,19,30,38.1,1.35,0.079,0.58,108,916,965,0,1,10.100000000000001,108,916,0,965,0.281,18.54,20.75,0.96,0.22,888,3.2,156,2.6,20.7899,16.3699 +2012,8,7,20,30,38.5,1.35,0.081,0.58,106,901,895,7,3,10.100000000000001,318,605,7,848,0.281,18.150000000000002,28.79,0.96,0.22,888,3.2,151,3,13.2465,10.4244 +2012,8,7,21,30,38.2,1.35,0.08600000000000001,0.58,102,864,766,0,3,10.3,250,1,0,250,0.281,18.7,39.75,0.96,0.22,887,3.4000000000000004,150,3.1,9.6494,7.5837 +2012,8,7,22,30,37,1.34,0.099,0.58,98,798,592,0,3,10.600000000000001,112,0,0,112,0.28200000000000003,20.41,51.69,0.97,0.22,887,3.5,151,3,28.7187,22.5106 +2012,8,7,23,30,34.5,1.31,0.112,0.58,86,686,388,0,6,11.600000000000001,35,555,0,279,0.28300000000000003,24.91,63.92,0.97,0.22,887,3.7,151,2.3000000000000003,18.9448,14.7606 +2012,8,8,0,30,31.200000000000003,1.3,0.131,0.58,65,476,179,0,8,16.8,40,0,0,40,0.28300000000000003,42.19,76.08,0.97,0.22,888,3.9000000000000004,149,1.6,9.1723,7.0374 +2012,8,8,1,30,28.900000000000002,1.31,0.14,0.58,16,80,19,7,3,20.200000000000003,12,0,7,12,0.28400000000000003,59.39,87.78,0.97,0.22,889,4,149,1.7000000000000002,0.0000,0.0000 +2012,8,8,2,30,27.400000000000002,1.37,0.133,0.58,0,0,0,0,3,19.900000000000002,0,0,0,0,0.28500000000000003,63.72,99.32000000000001,0.97,0.22,889,3.9000000000000004,152,2.6,0.0000,0.0000 +2012,8,8,3,30,26.1,1.44,0.113,0.58,0,0,0,0,1,19,0,0,0,0,0.28600000000000003,64.85,109.67,0.96,0.22,890,3.7,156,3.9000000000000004,0.0000,0.0000 +2012,8,8,4,30,24.900000000000002,1.49,0.10400000000000001,0.58,0,0,0,0,3,18.5,0,0,0,0,0.28700000000000003,67.62,118.52,0.96,0.22,890,3.5,162,4.5,0.0000,0.0000 +2012,8,8,5,30,24.1,1.51,0.107,0.58,0,0,0,0,3,18.1,0,0,0,0,0.28700000000000003,69.10000000000001,125.09,0.9500000000000001,0.22,890,3.5,170,4.4,0.0000,0.0000 +2012,8,8,6,30,23.6,1.51,0.117,0.58,0,0,0,0,4,17.7,0,0,0,0,0.28700000000000003,69.49,128.49,0.96,0.22,890,3.4000000000000004,180,4,0.0000,0.0000 +2012,8,8,7,30,23.200000000000003,1.51,0.129,0.58,0,0,0,0,4,17.400000000000002,0,0,0,0,0.28600000000000003,69.71000000000001,128.07,0.96,0.22,890,3.4000000000000004,188,3.6,0.0000,0.0000 +2012,8,8,8,30,22.700000000000003,1.52,0.136,0.58,0,0,0,0,4,17.1,0,0,0,0,0.28500000000000003,70.76,123.91,0.9500000000000001,0.22,890,3.4000000000000004,195,3.4000000000000004,0.0000,0.0000 +2012,8,8,9,30,22.1,1.54,0.132,0.58,0,0,0,0,8,17,0,0,0,0,0.28500000000000003,72.7,116.77,0.9500000000000001,0.22,890,3.4000000000000004,200,3.1,0.0000,0.0000 +2012,8,8,10,30,21.5,1.55,0.125,0.58,0,0,0,0,8,16.900000000000002,0,0,0,0,0.28400000000000003,75.26,107.55,0.9500000000000001,0.22,891,3.4000000000000004,207,2.8000000000000003,0.0000,0.0000 +2012,8,8,11,30,21.3,1.56,0.12,0.58,0,0,0,0,4,16.900000000000002,0,0,0,0,0.28300000000000003,76.13,96.95,0.9500000000000001,0.22,891,3.4000000000000004,216,2.8000000000000003,0.0000,0.0000 +2012,8,8,12,30,22.400000000000002,1.56,0.114,0.58,28,226,46,7,3,16.900000000000002,28,0,7,28,0.28200000000000003,70.94,85.36,0.9500000000000001,0.22,891,3.3000000000000003,224,3.2,0.0000,0.0000 +2012,8,8,13,30,25,1.56,0.109,0.58,66,569,228,0,0,16.5,66,569,0,228,0.28200000000000003,59.11,73.5,0.9500000000000001,0.22,892,3.3000000000000003,232,3.7,8.6352,6.6547 +2012,8,8,14,30,27.900000000000002,1.57,0.108,0.58,88,727,437,0,0,15.3,88,727,0,437,0.28300000000000003,46.160000000000004,61.31,0.9500000000000001,0.22,892,3.2,246,3.6,24.3593,19.0123 +2012,8,8,15,30,30.5,1.57,0.112,0.58,105,809,634,0,3,14.4,327,313,0,532,0.28400000000000003,37.64,49.120000000000005,0.9500000000000001,0.22,892,3.1,267,3,37.1653,29.1526 +2012,8,8,16,30,32.300000000000004,1.56,0.12,0.58,119,853,797,0,0,14,119,853,0,797,0.28600000000000003,32.93,37.34,0.9500000000000001,0.22,892,3,297,2.5,48.0180,37.7520 +2012,8,8,17,30,33.5,1.57,0.126,0.58,128,880,914,0,0,13.5,128,880,0,914,0.28700000000000003,29.82,26.84,0.9500000000000001,0.22,892,2.8000000000000003,330,2.3000000000000003,55.8626,43.9682 +2012,8,8,18,30,34.5,1.6300000000000001,0.148,0.58,142,882,970,0,0,12.9,142,882,0,970,0.28800000000000003,27.2,20.04,0.9500000000000001,0.22,891,2.6,178,2.5,59.7706,47.0650 +2012,8,8,19,30,35.300000000000004,1.67,0.135,0.58,135,896,971,0,0,12.200000000000001,135,896,0,971,0.28800000000000003,24.900000000000002,21.03,0.9400000000000001,0.22,891,2.3000000000000003,14,2.9000000000000004,59.1660,46.5865 +2012,8,8,20,30,35.6,1.7,0.123,0.58,124,894,906,0,1,11.600000000000001,124,894,0,906,0.28800000000000003,23.41,29.02,0.93,0.22,890,2.1,23,3.2,51.5111,40.5360 +2012,8,8,21,30,35.4,1.71,0.105,0.58,109,879,783,0,1,10.9,109,879,0,783,0.28700000000000003,22.740000000000002,39.94,0.93,0.22,890,2,30,3.4000000000000004,14.8845,11.6978 +2012,8,8,22,30,34.6,1.72,0.098,0.58,96,834,611,0,0,10.3,96,834,0,611,0.28600000000000003,22.75,51.88,0.93,0.22,889,1.9000000000000001,37,3.4000000000000004,6.4287,5.0387 +2012,8,8,23,30,33.2,1.72,0.094,0.58,79,746,405,0,0,9.8,79,746,0,405,0.28500000000000003,23.81,64.1,0.92,0.22,890,1.9000000000000001,45,2.8000000000000003,14.9980,11.6840 +2012,8,9,0,30,30.200000000000003,1.72,0.093,0.58,56,569,191,0,0,10.8,56,569,0,191,0.28400000000000003,30.23,76.26,0.92,0.22,890,1.9000000000000001,62,1.7000000000000002,1.9385,1.4868 +2012,8,9,1,30,27.200000000000003,1.72,0.093,0.58,14,150,20,0,0,14.3,14,150,0,20,0.28400000000000003,45.11,87.97,0.92,0.22,890,1.9000000000000001,89,1.1,0.0000,0.0000 +2012,8,9,2,30,25.8,1.72,0.094,0.58,0,0,0,0,0,14,0,0,0,0,0.28400000000000003,48.230000000000004,99.53,0.92,0.22,891,1.9000000000000001,116,1.1,0.0000,0.0000 +2012,8,9,3,30,24.900000000000002,1.71,0.094,0.58,0,0,0,0,0,13.9,0,0,0,0,0.28300000000000003,50.51,109.9,0.92,0.22,891,2,138,1.2000000000000002,0.0000,0.0000 +2012,8,9,4,30,24.1,1.69,0.094,0.58,0,0,0,0,0,13.9,0,0,0,0,0.281,52.83,118.78,0.92,0.22,891,2,157,1.2000000000000002,0.0000,0.0000 +2012,8,9,5,30,23.5,1.68,0.094,0.58,0,0,0,0,0,13.9,0,0,0,0,0.281,54.730000000000004,125.37,0.92,0.22,891,2.1,173,1.2000000000000002,0.0000,0.0000 +2012,8,9,6,30,22.900000000000002,1.68,0.096,0.58,0,0,0,0,0,13.8,0,0,0,0,0.28,56.57,128.78,0.92,0.22,891,2.1,188,1.2000000000000002,0.0000,0.0000 +2012,8,9,7,30,22.3,1.68,0.10200000000000001,0.58,0,0,0,0,0,13.8,0,0,0,0,0.28,58.42,128.35,0.92,0.22,891,2.2,202,1.2000000000000002,0.0000,0.0000 +2012,8,9,8,30,21.8,1.69,0.109,0.58,0,0,0,0,0,13.700000000000001,0,0,0,0,0.28,60.19,124.16,0.92,0.22,891,2.2,215,1.3,0.0000,0.0000 +2012,8,9,9,30,21.3,1.71,0.111,0.58,0,0,0,0,0,13.8,0,0,0,0,0.28,62.11,116.99000000000001,0.92,0.22,891,2.1,230,1.3,0.0000,0.0000 +2012,8,9,10,30,20.8,1.71,0.108,0.58,0,0,0,0,0,13.8,0,0,0,0,0.28,64.08,107.73,0.91,0.22,891,2,245,1.3,0.0000,0.0000 +2012,8,9,11,30,21.1,1.72,0.106,0.58,0,0,0,0,0,13.700000000000001,0,0,0,0,0.28,62.83,97.11,0.91,0.22,892,2,261,1.7000000000000002,0.0000,0.0000 +2012,8,9,12,30,22.8,1.73,0.107,0.58,26,257,46,0,0,13.8,26,257,0,46,0.28,56.870000000000005,85.49,0.91,0.22,892,2,275,2.8000000000000003,0.0000,0.0000 +2012,8,9,13,30,26.1,1.73,0.108,0.58,65,599,233,0,0,13.700000000000001,65,599,0,233,0.281,46.44,73.62,0.91,0.22,892,2,288,3.4000000000000004,11.3015,8.7076 +2012,8,9,14,30,29.900000000000002,1.74,0.106,0.58,86,756,448,0,0,12.8,86,756,0,448,0.28200000000000003,34.95,61.43,0.91,0.22,892,2,301,3.2,23.9021,18.6539 +2012,8,9,15,30,32.800000000000004,1.74,0.10300000000000001,0.58,99,841,649,0,0,11.200000000000001,99,841,0,649,0.28200000000000003,26.71,49.25,0.91,0.22,892,2,314,3,30.8313,24.1834 +2012,8,9,16,30,34.800000000000004,1.74,0.1,0.58,108,891,815,0,0,10.100000000000001,108,891,0,815,0.28200000000000003,22.22,37.49,0.92,0.22,892,2,329,2.7,47.7037,37.5041 +2012,8,9,17,30,36.300000000000004,1.74,0.098,0.58,113,919,932,0,0,9.3,113,919,0,932,0.28200000000000003,19.39,27.04,0.92,0.22,891,2,345,2.7,55.6657,43.8126 +2012,8,9,18,30,37.4,1.74,0.092,0.58,113,935,989,0,0,8.700000000000001,113,935,0,989,0.28200000000000003,17.57,20.31,0.92,0.22,891,2,182,2.9000000000000004,59.5109,46.8599 +2012,8,9,19,30,38,1.74,0.092,0.58,112,933,981,0,0,8.4,112,933,0,981,0.28200000000000003,16.59,21.31,0.91,0.22,890,2,15,3.2,59.5183,46.8632 +2012,8,9,20,30,38.1,1.75,0.092,0.58,109,919,911,0,0,8.1,109,919,0,911,0.28200000000000003,16.22,29.25,0.91,0.22,889,2,26,3.6,55.0163,43.2935 +2012,8,9,21,30,37.6,1.72,0.081,0.58,98,901,786,0,0,7.800000000000001,98,901,0,786,0.28200000000000003,16.31,40.15,0.91,0.22,889,1.9000000000000001,36,3.8000000000000003,46.5975,36.6203 +2012,8,9,22,30,36.5,1.72,0.078,0.58,87,855,613,0,0,7.4,87,855,0,613,0.28300000000000003,16.87,52.06,0.91,0.22,889,1.8,45,3.8000000000000003,35.0441,27.4655 +2012,8,9,23,30,34.800000000000004,1.73,0.075,0.58,72,769,406,0,0,7.2,72,769,0,406,0.28300000000000003,18.3,64.28,0.9,0.22,889,1.8,53,3.3000000000000003,21.7436,16.9367 +2012,8,10,0,30,31.400000000000002,1.73,0.07200000000000001,0.58,51,601,192,0,0,7.9,51,601,0,192,0.28300000000000003,23.23,76.45,0.9,0.22,889,1.7000000000000002,64,2.3000000000000003,9.2432,7.0870 +2012,8,10,1,30,28.200000000000003,1.75,0.07200000000000001,0.58,13,171,19,0,0,10.600000000000001,13,171,0,19,0.28300000000000003,33.33,88.16,0.9,0.22,890,1.6,75,1.8,0.0000,0.0000 +2012,8,10,2,30,26.700000000000003,1.77,0.075,0.58,0,0,0,0,0,10.4,0,0,0,0,0.28400000000000003,35.96,99.75,0.89,0.22,890,1.6,83,2.1,0.0000,0.0000 +2012,8,10,3,30,25.8,1.8,0.082,0.58,0,0,0,0,0,10.200000000000001,0,0,0,0,0.28500000000000003,37.42,110.14,0.89,0.22,891,1.6,87,2.6,0.0000,0.0000 +2012,8,10,4,30,24.8,1.82,0.089,0.58,0,0,0,0,0,10,0,0,0,0,0.28500000000000003,39.12,119.04,0.89,0.22,891,1.7000000000000002,87,3.1,0.0000,0.0000 +2012,8,10,5,30,23.6,1.84,0.094,0.58,0,0,0,0,0,9.5,0,0,0,0,0.28600000000000003,40.92,125.66,0.89,0.22,891,1.7000000000000002,87,3.4000000000000004,0.0000,0.0000 +2012,8,10,6,30,22.400000000000002,1.85,0.098,0.58,0,0,0,0,0,8.9,0,0,0,0,0.28600000000000003,42.18,129.07,0.89,0.22,892,1.7000000000000002,86,3.5,0.0000,0.0000 +2012,8,10,7,30,21.400000000000002,1.86,0.101,0.58,0,0,0,0,0,8.3,0,0,0,0,0.28600000000000003,42.96,128.63,0.89,0.22,892,1.7000000000000002,86,3.4000000000000004,0.0000,0.0000 +2012,8,10,8,30,20.5,1.86,0.10300000000000001,0.58,0,0,0,0,0,8,0,0,0,0,0.28600000000000003,44.65,124.42,0.89,0.22,892,1.8,87,3.3000000000000003,0.0000,0.0000 +2012,8,10,9,30,19.6,1.86,0.10300000000000001,0.58,0,0,0,0,0,8.200000000000001,0,0,0,0,0.28600000000000003,47.82,117.21000000000001,0.9,0.22,893,1.8,89,2.9000000000000004,0.0000,0.0000 +2012,8,10,10,30,18.8,1.86,0.10200000000000001,0.58,0,0,0,0,0,8.6,0,0,0,0,0.28600000000000003,51.49,107.91,0.9,0.22,893,1.9000000000000001,89,2.5,0.0000,0.0000 +2012,8,10,11,30,18.400000000000002,1.86,0.105,0.58,0,0,0,0,0,9,0,0,0,0,0.28600000000000003,54.300000000000004,97.27,0.9,0.22,893,1.9000000000000001,90,2.3000000000000003,0.0000,0.0000 +2012,8,10,12,30,19.700000000000003,1.86,0.112,0.58,25,250,44,0,0,9.4,25,250,0,44,0.28600000000000003,51.550000000000004,85.63,0.9,0.22,894,2,94,2.7,0.0000,0.0000 +2012,8,10,13,30,22.200000000000003,1.86,0.125,0.58,67,573,227,0,0,9.8,67,573,0,227,0.28600000000000003,45.410000000000004,73.75,0.9,0.22,894,2.2,101,3,11.5365,8.8870 +2012,8,10,14,30,25,1.87,0.14,0.58,95,715,436,0,0,9.8,95,715,0,436,0.28600000000000003,38.33,61.550000000000004,0.91,0.22,894,2.3000000000000003,105,2.9000000000000004,24.4853,19.1077 +2012,8,10,15,30,27.6,1.87,0.153,0.58,117,790,631,0,0,9.5,117,790,0,631,0.28600000000000003,32.18,49.38,0.91,0.22,893,2.4000000000000004,106,2.5,37.5946,29.4874 +2012,8,10,16,30,30,1.87,0.163,0.58,132,831,790,0,0,9.1,132,831,0,790,0.28600000000000003,27.26,37.64,0.91,0.22,893,2.6,106,2,48.7658,38.3383 +2012,8,10,17,30,32,1.86,0.167,0.58,142,858,906,0,0,8.9,142,858,0,906,0.28500000000000003,23.98,27.240000000000002,0.92,0.22,892,2.6,102,1.6,56.7474,44.6632 +2012,8,10,18,30,33.6,1.9000000000000001,0.28300000000000003,0.58,192,801,942,0,0,8.8,192,801,0,942,0.28500000000000003,21.79,20.59,0.92,0.22,891,2.7,92,1.5,60.6619,47.7655 +2012,8,10,19,30,34.800000000000004,1.9000000000000001,0.265,0.58,185,809,937,0,0,8.8,185,809,0,937,0.28500000000000003,20.31,21.6,0.92,0.22,891,2.7,85,1.8,60.1153,47.3325 +2012,8,10,20,30,35.4,1.9000000000000001,0.248,0.58,173,800,869,0,0,8.700000000000001,173,800,0,869,0.28600000000000003,19.51,29.490000000000002,0.92,0.22,890,2.7,88,2.2,55.3018,43.5173 +2012,8,10,21,30,35.5,1.72,0.109,0.58,110,861,766,0,0,8.5,110,861,0,766,0.28600000000000003,19.16,40.35,0.93,0.22,889,2.6,96,2.8000000000000003,46.7530,36.7412 +2012,8,10,22,30,34.9,1.72,0.101,0.58,95,813,593,0,0,8.1,95,813,0,593,0.28500000000000003,19.36,52.25,0.92,0.22,889,2.6,105,3.4000000000000004,35.1334,27.5339 +2012,8,10,23,30,33.4,1.72,0.094,0.58,78,728,392,0,0,7.800000000000001,78,728,0,392,0.28500000000000003,20.53,64.47,0.92,0.22,888,2.5,114,4,21.7693,16.9544 +2012,8,11,0,30,30.8,1.71,0.089,0.58,54,554,182,0,0,7.6000000000000005,54,554,0,182,0.28500000000000003,23.53,76.65,0.92,0.22,888,2.4000000000000004,121,4.1000000000000005,9.2782,7.1114 +2012,8,11,1,30,27.900000000000002,1.71,0.08600000000000001,0.58,12,130,16,0,0,7.800000000000001,12,130,0,16,0.28600000000000003,28.21,88.35000000000001,0.92,0.22,889,2.3000000000000003,127,4.2,0.0000,0.0000 +2012,8,11,2,30,25.8,1.71,0.083,0.58,0,0,0,0,0,7.4,0,0,0,0,0.28700000000000003,31.1,99.97,0.92,0.22,889,2.3000000000000003,133,4.2,0.0000,0.0000 +2012,8,11,3,30,24.3,1.7,0.085,0.58,0,0,0,0,0,7,0,0,0,0,0.28800000000000003,32.910000000000004,110.38,0.92,0.22,890,2.3000000000000003,138,3.7,0.0000,0.0000 +2012,8,11,4,30,23.1,1.69,0.093,0.58,0,0,0,0,1,6.6000000000000005,0,0,0,0,0.28800000000000003,34.62,119.31,0.93,0.22,890,2.4000000000000004,144,3.1,0.0000,0.0000 +2012,8,11,5,30,22.3,1.6600000000000001,0.107,0.58,0,0,0,0,4,6.5,0,0,0,0,0.28700000000000003,36.01,125.95,0.9400000000000001,0.22,890,2.4000000000000004,150,2.6,0.0000,0.0000 +2012,8,11,6,30,21.8,1.6500000000000001,0.11800000000000001,0.58,0,0,0,0,4,6.5,0,0,0,0,0.28700000000000003,37.17,129.37,0.9400000000000001,0.22,891,2.5,158,2.1,0.0000,0.0000 +2012,8,11,7,30,21.400000000000002,1.67,0.12,0.58,0,0,0,0,4,6.7,0,0,0,0,0.28700000000000003,38.550000000000004,128.91,0.9400000000000001,0.22,891,2.5,165,1.6,0.0000,0.0000 +2012,8,11,8,30,21.1,1.68,0.124,0.58,0,0,0,0,1,7.2,0,0,0,0,0.28700000000000003,40.550000000000004,124.67,0.93,0.22,891,2.6,172,1.2000000000000002,0.0000,0.0000 +2012,8,11,9,30,20.900000000000002,1.69,0.126,0.58,0,0,0,0,1,7.300000000000001,0,0,0,0,0.28700000000000003,41.550000000000004,117.43,0.93,0.22,891,2.6,174,1.2000000000000002,0.0000,0.0000 +2012,8,11,10,30,20.700000000000003,1.7,0.121,0.58,0,0,0,0,3,7.1000000000000005,0,0,0,0,0.28700000000000003,41.4,108.10000000000001,0.93,0.22,891,2.6,170,1.6,0.0000,0.0000 +2012,8,11,11,30,20.700000000000003,1.71,0.116,0.58,0,0,0,0,4,6.5,0,0,0,0,0.28700000000000003,39.77,97.43,0.93,0.22,891,2.6,167,2.4000000000000004,0.0000,0.0000 +2012,8,11,12,30,21.200000000000003,1.72,0.114,0.58,25,227,42,7,4,6.1000000000000005,17,0,7,17,0.28700000000000003,37.38,85.77,0.93,0.22,891,2.5,168,3.2,0.0000,0.0000 +2012,8,11,13,30,22.6,1.73,0.117,0.58,66,571,225,0,3,5.800000000000001,145,140,0,184,0.28700000000000003,33.660000000000004,73.88,0.93,0.22,891,2.5,171,3.8000000000000003,11.2260,8.6459 +2012,8,11,14,30,25.1,1.75,0.126,0.58,92,722,434,0,0,5.7,92,722,0,434,0.28600000000000003,28.76,61.68,0.92,0.22,891,2.5,179,4.5,23.8115,18.5805 +2012,8,11,15,30,28.400000000000002,1.76,0.136,0.58,112,801,632,0,0,5.300000000000001,112,801,0,632,0.28600000000000003,23.02,49.51,0.93,0.22,890,2.5,192,5.2,36.5350,28.6552 +2012,8,11,16,30,31.700000000000003,1.77,0.14100000000000001,0.58,126,848,796,0,0,5.4,126,848,0,796,0.28600000000000003,19.22,37.800000000000004,0.93,0.22,889,2.5,204,5.6000000000000005,47.2550,37.1498 +2012,8,11,17,30,34.800000000000004,1.77,0.138,0.58,131,877,910,0,0,6,131,877,0,910,0.28600000000000003,16.76,27.45,0.93,0.22,888,2.6,211,5.6000000000000005,55.1500,43.4053 +2012,8,11,18,30,37.300000000000004,1.78,0.108,0.58,120,910,971,0,0,6.2,120,910,0,971,0.28700000000000003,14.91,20.87,0.93,0.22,887,2.6,215,5.2,57.7644,45.4833 +2012,8,11,19,30,38.900000000000006,1.77,0.12,0.58,126,900,962,0,0,6.2,126,900,0,962,0.28600000000000003,13.63,21.89,0.9400000000000001,0.22,886,2.6,218,4.800000000000001,57.4030,45.1961 +2012,8,11,20,30,39.6,1.75,0.137,0.58,130,873,888,0,0,6,130,873,0,888,0.28600000000000003,12.96,29.740000000000002,0.9400000000000001,0.22,885,2.6,218,4.6000000000000005,52.7339,41.4957 +2012,8,11,21,30,39.5,1.74,0.161,0.58,132,822,756,0,0,5.800000000000001,132,822,0,756,0.28500000000000003,12.83,40.56,0.9400000000000001,0.22,884,2.6,214,4.6000000000000005,45.5417,35.7882 +2012,8,11,22,30,38.900000000000006,1.75,0.16,0.58,118,762,582,0,0,5.6000000000000005,118,762,0,582,0.28500000000000003,13.1,52.45,0.9400000000000001,0.22,884,2.6,205,4.6000000000000005,33.9610,26.6134 +2012,8,11,23,30,37.300000000000004,1.75,0.157,0.58,96,662,379,0,0,5.5,96,662,0,379,0.28500000000000003,14.120000000000001,64.67,0.93,0.22,884,2.5,192,4.4,20.9899,16.3450 +2012,8,12,0,30,34.1,1.74,0.161,0.58,65,462,171,0,3,6.4,124,64,0,139,0.28500000000000003,17.92,76.84,0.93,0.22,884,2.5,182,4,8.7820,6.7286 +2012,8,12,1,30,31.200000000000003,1.74,0.169,0.58,11,64,12,7,3,6.9,7,0,7,7,0.28600000000000003,21.97,88.55,0.93,0.22,885,2.5,180,4.2,0.0000,0.0000 +2012,8,12,2,30,29.5,1.74,0.17,0.58,0,0,0,0,3,6.300000000000001,0,0,0,0,0.28700000000000003,23.23,100.2,0.93,0.22,885,2.6,183,4.4,0.0000,0.0000 +2012,8,12,3,30,28.3,1.74,0.159,0.58,0,0,0,0,4,6.1000000000000005,0,0,0,0,0.28700000000000003,24.490000000000002,110.63,0.93,0.22,886,2.6,187,4.5,0.0000,0.0000 +2012,8,12,4,30,27.400000000000002,1.72,0.156,0.58,0,0,0,0,4,5.9,0,0,0,0,0.28800000000000003,25.45,119.58,0.9400000000000001,0.22,886,2.6,193,4.5,0.0000,0.0000 +2012,8,12,5,30,26.6,1.68,0.167,0.58,0,0,0,0,4,5.7,0,0,0,0,0.28800000000000003,26.26,126.24000000000001,0.9400000000000001,0.22,886,2.6,201,4.3,0.0000,0.0000 +2012,8,12,6,30,26.200000000000003,1.6500000000000001,0.182,0.58,0,0,0,0,8,5.6000000000000005,0,0,0,0,0.28800000000000003,26.810000000000002,129.68,0.9500000000000001,0.22,886,2.6,214,4.1000000000000005,0.0000,0.0000 +2012,8,12,7,30,25.700000000000003,1.6400000000000001,0.18,0.58,0,0,0,0,4,5.7,0,0,0,0,0.28800000000000003,27.7,129.2,0.9500000000000001,0.22,886,2.6,229,3.8000000000000003,0.0000,0.0000 +2012,8,12,8,30,25,1.6500000000000001,0.17400000000000002,0.58,0,0,0,0,4,6,0,0,0,0,0.28800000000000003,29.62,124.93,0.9400000000000001,0.22,887,2.6,246,3.1,0.0000,0.0000 +2012,8,12,9,30,23.8,1.69,0.152,0.58,0,0,0,0,1,6.800000000000001,0,0,0,0,0.28800000000000003,33.46,117.65,0.9400000000000001,0.22,887,2.6,264,2.4000000000000004,0.0000,0.0000 +2012,8,12,10,30,22.700000000000003,1.72,0.128,0.58,0,0,0,0,4,7.800000000000001,0,0,0,0,0.28700000000000003,38.35,108.29,0.93,0.22,887,2.7,288,1.9000000000000001,0.0000,0.0000 +2012,8,12,11,30,22.6,1.74,0.117,0.58,0,0,0,0,3,8.700000000000001,0,0,0,0,0.28700000000000003,40.93,97.59,0.93,0.22,888,2.7,317,2.3000000000000003,0.0000,0.0000 +2012,8,12,12,30,24.200000000000003,1.77,0.117,0.58,24,216,40,7,3,9.1,26,0,7,26,0.28700000000000003,38.42,85.91,0.93,0.22,889,2.7,343,3.6,0.0000,0.0000 +2012,8,12,13,30,27.1,1.82,0.124,0.58,67,556,220,0,3,9.1,138,182,0,188,0.28600000000000003,32.35,74.01,0.93,0.22,889,2.8000000000000003,185,5.7,9.0886,6.9982 +2012,8,12,14,30,29.6,1.86,0.132,0.58,94,710,429,0,4,9.8,245,35,0,261,0.28600000000000003,29.23,61.81,0.93,0.22,890,2.8000000000000003,21,7.2,23.6828,18.4785 +2012,8,12,15,30,31.3,1.8900000000000001,0.14100000000000001,0.58,113,791,625,0,4,10.600000000000001,344,262,0,513,0.28600000000000003,27.900000000000002,49.65,0.93,0.22,890,2.8000000000000003,27,7.2,36.5759,28.6863 +2012,8,12,16,30,32.800000000000004,1.9000000000000001,0.151,0.58,129,836,788,0,4,10.4,445,219,0,617,0.28600000000000003,25.37,37.96,0.93,0.22,890,2.8000000000000003,30,6.800000000000001,47.5978,37.4184 +2012,8,12,17,30,34.1,1.9000000000000001,0.158,0.58,139,860,901,0,1,9.8,139,860,0,901,0.28600000000000003,22.62,27.66,0.93,0.22,890,2.8000000000000003,34,6.5,55.3782,43.5841 +2012,8,12,18,30,35,1.8,0.192,0.58,158,849,949,0,1,8.9,158,849,0,949,0.28600000000000003,20.330000000000002,21.150000000000002,0.93,0.22,890,2.9000000000000004,37,6.1000000000000005,59.5273,46.8706 +2012,8,12,19,30,35.5,1.78,0.188,0.58,156,851,944,0,4,8.1,507,307,0,791,0.28600000000000003,18.69,22.19,0.93,0.22,890,2.8000000000000003,40,5.6000000000000005,58.9178,46.3880 +2012,8,12,20,30,35.6,1.78,0.182,0.58,148,838,874,0,4,7.4,347,2,0,348,0.28600000000000003,17.7,29.990000000000002,0.93,0.22,889,2.8000000000000003,44,5.2,53.8672,42.3865 +2012,8,12,21,30,35.2,1.81,0.158,0.58,128,821,750,0,1,6.800000000000001,128,821,0,750,0.28600000000000003,17.39,40.78,0.92,0.22,889,2.7,47,4.800000000000001,44.9246,35.3020 +2012,8,12,22,30,34.300000000000004,1.81,0.159,0.58,115,762,578,0,4,6.2,251,4,0,253,0.28600000000000003,17.59,52.65,0.92,0.22,889,2.6,54,4.5,33.3037,26.0967 +2012,8,12,23,30,32.9,1.83,0.157,0.58,95,661,376,0,4,5.800000000000001,152,2,0,152,0.28600000000000003,18.44,64.86,0.92,0.22,889,2.5,63,3.9000000000000004,20.2644,15.7775 +2012,8,13,0,30,30.1,1.86,0.15,0.58,62,474,168,0,3,5.800000000000001,118,119,0,145,0.28700000000000003,21.64,77.05,0.91,0.22,889,2.4000000000000004,69,2.6,6.6981,5.1301 +2012,8,13,1,30,27.200000000000003,1.86,0.155,0.58,9,69,11,7,7,7.6000000000000005,7,0,7,7,0.28800000000000003,29.01,88.74,0.91,0.22,890,2.4000000000000004,64,1.6,0.0000,0.0000 +2012,8,13,2,30,26.1,1.83,0.169,0.58,0,0,0,0,3,8,0,0,0,0,0.289,31.73,100.43,0.92,0.22,891,2.4000000000000004,55,1.6,0.0000,0.0000 +2012,8,13,3,30,25.6,1.81,0.168,0.58,0,0,0,0,4,7.800000000000001,0,0,0,0,0.28800000000000003,32.29,110.89,0.92,0.22,892,2.4000000000000004,53,1.6,0.0000,0.0000 +2012,8,13,4,30,25,1.8,0.158,0.58,0,0,0,0,8,7.800000000000001,0,0,0,0,0.28800000000000003,33.53,119.86,0.92,0.22,892,2.4000000000000004,57,1.7000000000000002,0.0000,0.0000 +2012,8,13,5,30,24.200000000000003,1.82,0.148,0.58,0,0,0,0,8,7.9,0,0,0,0,0.28700000000000003,35.34,126.54,0.92,0.22,892,2.3000000000000003,58,1.5,0.0000,0.0000 +2012,8,13,6,30,23.400000000000002,1.85,0.151,0.58,0,0,0,0,4,8.4,0,0,0,0,0.28700000000000003,38.2,129.98,0.92,0.22,892,2.3000000000000003,51,1.3,0.0000,0.0000 +2012,8,13,7,30,22.700000000000003,1.8900000000000001,0.148,0.58,0,0,0,0,4,8.700000000000001,0,0,0,0,0.28700000000000003,40.660000000000004,129.5,0.91,0.22,892,2.2,43,1.1,0.0000,0.0000 +2012,8,13,8,30,22.1,1.93,0.147,0.58,0,0,0,0,3,8.9,0,0,0,0,0.28700000000000003,42.99,125.19,0.91,0.22,893,2.2,24,1,0.0000,0.0000 +2012,8,13,9,30,21.3,1.96,0.152,0.58,0,0,0,0,3,9.3,0,0,0,0,0.28700000000000003,46.2,117.87,0.91,0.22,893,2.1,174,1,0.0000,0.0000 +2012,8,13,10,30,20.3,1.98,0.154,0.58,0,0,0,0,0,9.5,0,0,0,0,0.28600000000000003,49.93,108.47,0.91,0.22,894,2.1,328,1,0.0000,0.0000 +2012,8,13,11,30,20,2.0100000000000002,0.154,0.58,0,0,0,0,0,9.8,0,0,0,0,0.28500000000000003,51.870000000000005,97.75,0.91,0.22,894,2.1,311,1.1,0.0000,0.0000 +2012,8,13,12,30,21.6,2.02,0.151,0.58,23,202,37,0,0,10.4,23,202,0,37,0.28500000000000003,48.9,86.04,0.9,0.22,894,2,301,1.6,0.0000,0.0000 +2012,8,13,13,30,24.700000000000003,2.02,0.148,0.58,70,549,220,0,0,10.600000000000001,70,549,0,220,0.28500000000000003,40.97,74.14,0.9,0.22,894,2,266,1.6,9.2751,7.1403 +2012,8,13,14,30,27.900000000000002,2.02,0.14300000000000002,0.58,95,719,433,0,0,9.5,95,719,0,433,0.28400000000000003,31.66,61.93,0.9,0.22,894,2,217,1.5,14.2306,11.1025 +2012,8,13,15,30,30.5,2.02,0.136,0.58,110,816,637,0,0,8.8,110,816,0,637,0.28400000000000003,25.87,49.78,0.9,0.22,894,1.9000000000000001,197,2,29.6740,23.2723 +2012,8,13,16,30,32.6,2.0100000000000002,0.131,0.58,119,871,804,0,0,8.3,119,871,0,804,0.28400000000000003,22.3,38.12,0.9,0.22,893,1.9000000000000001,193,2.3000000000000003,36.8817,28.9934 +2012,8,13,17,30,34.300000000000004,2.0100000000000002,0.125,0.58,123,903,921,0,0,7.9,123,903,0,921,0.28400000000000003,19.740000000000002,27.87,0.9,0.22,892,1.9000000000000001,184,2.6,54.8152,43.1403 +2012,8,13,18,30,35.6,2.1,0.111,0.58,119,925,980,0,0,7.300000000000001,119,925,0,980,0.28400000000000003,17.580000000000002,21.44,0.89,0.22,891,1.9000000000000001,175,3.1,58.1632,45.7959 +2012,8,13,19,30,36.300000000000004,2.08,0.108,0.58,117,923,970,0,0,6.5,117,923,0,970,0.28300000000000003,16.04,22.490000000000002,0.89,0.22,890,2,170,3.7,48.4304,38.1302 +2012,8,13,20,30,36.5,2.06,0.106,0.58,112,909,898,0,0,5.800000000000001,112,909,0,898,0.28300000000000003,15.08,30.25,0.89,0.22,890,2,168,4.2,21.1023,16.6044 +2012,8,13,21,30,36,2.09,0.092,0.58,100,889,771,0,0,5.1000000000000005,100,889,0,771,0.28200000000000003,14.74,41,0.89,0.22,889,2,167,4.4,44.5444,35.0019 +2012,8,13,22,30,34.9,2.08,0.09,0.58,89,837,594,0,0,4.4,89,837,0,594,0.28200000000000003,14.91,52.86,0.89,0.22,889,2,165,4.6000000000000005,14.4654,11.3343 +2012,8,13,23,30,33.4,2.06,0.091,0.58,75,741,387,0,0,3.9000000000000004,75,741,0,387,0.281,15.73,65.07000000000001,0.89,0.22,889,2,164,4.5,8.1158,6.3179 +2012,8,14,0,30,30.900000000000002,2.05,0.091,0.58,52,552,173,0,0,4.4,52,552,0,173,0.281,18.73,77.25,0.9,0.22,888,2.1,163,3.9000000000000004,6.9773,5.3419 +2012,8,14,1,30,28.400000000000002,2.04,0.09,0.58,9,110,11,0,0,5.7,9,110,0,11,0.281,23.64,88.94,0.9,0.22,889,2.1,164,3.5,0.0000,0.0000 +2012,8,14,2,30,26.8,2.0300000000000002,0.093,0.58,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.281,26.82,100.66,0.9,0.22,889,2.2,168,3.5,0.0000,0.0000 +2012,8,14,3,30,25.5,2,0.097,0.58,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.281,29.92,111.14,0.91,0.22,889,2.3000000000000003,173,3.5,0.0000,0.0000 +2012,8,14,4,30,24.400000000000002,2,0.096,0.58,0,0,0,0,0,6.9,0,0,0,0,0.281,32.58,120.14,0.9,0.22,889,2.3000000000000003,180,3.4000000000000004,0.0000,0.0000 +2012,8,14,5,30,23.400000000000002,1.97,0.093,0.58,0,0,0,0,3,7.5,0,0,0,0,0.281,36.15,126.85000000000001,0.9,0.22,889,2.3000000000000003,188,3.3000000000000003,0.0000,0.0000 +2012,8,14,6,30,22.8,1.94,0.094,0.58,0,0,0,0,7,8.200000000000001,0,0,0,0,0.281,39.300000000000004,130.29,0.9,0.22,889,2.3000000000000003,195,3.3000000000000003,0.0000,0.0000 +2012,8,14,7,30,22.1,1.9000000000000001,0.099,0.58,0,0,0,0,6,8.9,0,0,0,0,0.28,42.910000000000004,129.79,0.91,0.22,889,2.4000000000000004,201,3.3000000000000003,0.0000,0.0000 +2012,8,14,8,30,21.400000000000002,1.84,0.114,0.58,0,0,0,0,6,10.100000000000001,0,0,0,0,0.279,48.370000000000005,125.45,0.92,0.22,889,2.6,206,3.2,0.0000,0.0000 +2012,8,14,9,30,20.900000000000002,1.75,0.14400000000000002,0.58,0,0,0,0,6,10.9,0,0,0,0,0.279,52.82,118.09,0.93,0.22,889,2.8000000000000003,210,3,0.0000,0.0000 +2012,8,14,10,30,20.700000000000003,1.67,0.179,0.58,0,0,0,0,4,11.4,0,0,0,0,0.279,55.4,108.66,0.9400000000000001,0.22,888,3.1,212,2.9000000000000004,0.0000,0.0000 +2012,8,14,11,30,21.1,1.62,0.201,0.58,0,0,0,0,4,11.600000000000001,0,0,0,0,0.279,54.61,97.91,0.9500000000000001,0.22,888,3.2,213,3.1,0.0000,0.0000 +2012,8,14,12,30,22.700000000000003,1.61,0.201,0.58,24,126,33,7,7,11.5,19,0,7,19,0.28,49.31,86.18,0.9400000000000001,0.22,888,3.2,212,3.5,0.0000,0.0000 +2012,8,14,13,30,25.900000000000002,1.6,0.19,0.58,80,470,207,0,0,11.5,80,470,0,207,0.28,40.71,74.27,0.9400000000000001,0.22,888,3.2,214,4.5,10.8410,8.3439 +2012,8,14,14,30,29.5,1.59,0.183,0.58,110,650,414,0,0,12.700000000000001,110,650,0,414,0.281,35.59,62.06,0.9400000000000001,0.22,888,3.2,222,5.6000000000000005,23.5905,18.4035 +2012,8,14,15,30,31.900000000000002,1.58,0.181,0.58,130,746,611,0,0,13.8,130,746,0,611,0.28200000000000003,33.29,49.92,0.9500000000000001,0.22,888,3.3000000000000003,229,5.7,36.8293,28.8829 +2012,8,14,16,30,33.6,1.57,0.185,0.58,145,798,771,0,0,14,145,798,0,771,0.28200000000000003,30.66,38.28,0.9500000000000001,0.22,887,3.4000000000000004,235,5.4,48.0432,37.7669 +2012,8,14,17,30,35,1.57,0.191,0.58,156,825,884,0,0,14,156,825,0,884,0.28200000000000003,28.400000000000002,28.09,0.96,0.22,887,3.4000000000000004,239,5.1000000000000005,56.0163,44.0848 +2012,8,14,18,30,35.9,1.3800000000000001,0.127,0.58,132,878,948,0,0,13.8,132,878,0,948,0.28200000000000003,26.62,21.73,0.97,0.22,886,3.5,242,4.7,60.0465,47.2780 +2012,8,14,19,30,36.300000000000004,1.37,0.138,0.58,137,869,938,0,1,13.4,137,869,0,938,0.281,25.37,22.8,0.97,0.22,885,3.5,244,4.1000000000000005,59.3719,46.7439 +2012,8,14,20,30,36.4,1.37,0.146,0.58,136,846,865,7,2,13,293,648,7,852,0.281,24.61,30.51,0.97,0.22,885,3.5,245,3.3000000000000003,54.4324,42.8292 +2012,8,14,21,30,36.1,1.33,0.132,0.58,122,823,741,0,0,12.5,122,823,0,741,0.28200000000000003,24.310000000000002,41.230000000000004,0.98,0.22,884,3.4000000000000004,240,2.2,45.7671,35.9614 +2012,8,14,22,30,35.4,1.34,0.139,0.58,112,757,567,0,0,12.200000000000001,112,757,0,567,0.28200000000000003,24.77,53.07,0.97,0.22,884,3.4000000000000004,199,1.4000000000000001,33.9326,26.5858 +2012,8,14,23,30,33.7,1.35,0.151,0.58,96,636,362,0,0,12.4,96,636,0,362,0.28300000000000003,27.43,65.27,0.97,0.22,884,3.5,147,1.4000000000000001,20.6313,16.0579 +2012,8,15,0,30,31,1.36,0.169,0.58,67,407,155,0,0,14.600000000000001,67,407,0,155,0.28400000000000003,36.92,77.46000000000001,0.98,0.22,884,3.6,129,2.2,8.3139,6.3628 +2012,8,15,1,30,28.700000000000003,1.36,0.184,0.58,0,0,0,7,3,16.1,0,0,7,0,0.28500000000000003,46.44,89.14,0.98,0.22,885,3.8000000000000003,128,3.1,0.0000,0.0000 +2012,8,15,2,30,27.1,1.35,0.19,0.58,0,0,0,0,1,16.6,0,0,0,0,0.28600000000000003,52.59,100.9,0.98,0.22,886,3.9000000000000004,132,3,0.0000,0.0000 +2012,8,15,3,30,25.700000000000003,1.34,0.193,0.58,0,0,0,0,8,16.900000000000002,0,0,0,0,0.28600000000000003,58.46,111.4,0.98,0.22,886,4,151,2.2,0.0000,0.0000 +2012,8,15,4,30,24.5,1.3800000000000001,0.176,0.58,0,0,0,0,7,17.1,0,0,0,0,0.28700000000000003,63.57,120.43,0.98,0.22,887,3.8000000000000003,174,2.1,0.0000,0.0000 +2012,8,15,5,30,23.5,1.46,0.158,0.58,0,0,0,0,8,17.3,0,0,0,0,0.28700000000000003,68.16,127.15,0.97,0.22,886,3.5,169,2.7,0.0000,0.0000 +2012,8,15,6,30,22.8,1.56,0.14,0.58,0,0,0,0,1,17.3,0,0,0,0,0.28800000000000003,70.99,130.61,0.96,0.22,886,3.1,153,2.9000000000000004,0.0000,0.0000 +2012,8,15,7,30,21.900000000000002,1.6600000000000001,0.129,0.58,0,0,0,0,1,17.1,0,0,0,0,0.28800000000000003,74.05,130.09,0.9400000000000001,0.22,886,2.8000000000000003,151,2.3000000000000003,0.0000,0.0000 +2012,8,15,8,30,21,1.71,0.126,0.58,0,0,0,0,7,16.900000000000002,0,0,0,0,0.28800000000000003,77.4,125.72,0.9400000000000001,0.22,886,2.6,157,1.4000000000000001,0.0000,0.0000 +2012,8,15,9,30,20.200000000000003,1.72,0.128,0.58,0,0,0,0,7,16.900000000000002,0,0,0,0,0.28800000000000003,81.18,118.32000000000001,0.93,0.22,886,2.5,161,1,0.0000,0.0000 +2012,8,15,10,30,19.700000000000003,1.71,0.133,0.58,0,0,0,0,1,16.900000000000002,0,0,0,0,0.28800000000000003,83.98,108.85000000000001,0.93,0.22,886,2.5,161,0.9,0.0000,0.0000 +2012,8,15,11,30,19.6,1.69,0.137,0.58,0,0,0,0,0,17,0,0,0,0,0.28800000000000003,84.87,98.08,0.93,0.22,886,2.5,164,1,0.0000,0.0000 +2012,8,15,12,30,21.1,1.68,0.139,0.58,23,176,34,0,0,17.1,23,176,0,34,0.28800000000000003,77.82000000000001,86.32000000000001,0.93,0.22,886,2.5,175,1.7000000000000002,0.0000,0.0000 +2012,8,15,13,30,24.1,1.68,0.137,0.58,69,540,215,0,0,17,69,540,0,215,0.28800000000000003,64.37,74.4,0.93,0.22,886,2.4000000000000004,194,2.5,10.1884,7.8398 +2012,8,15,14,30,27.5,1.7,0.133,0.58,94,713,427,0,0,16,94,713,0,427,0.28700000000000003,49.370000000000005,62.190000000000005,0.93,0.22,886,2.4000000000000004,212,2.7,22.5364,17.5798 +2012,8,15,15,30,30.200000000000003,1.71,0.132,0.58,110,804,627,0,0,14.9,110,804,0,627,0.28800000000000003,39.4,50.06,0.93,0.22,886,2.4000000000000004,217,2.3000000000000003,35.3080,27.6887 +2012,8,15,16,30,32,1.73,0.134,0.58,122,855,792,0,0,14.3,122,855,0,792,0.28800000000000003,34.24,38.45,0.93,0.22,886,2.4000000000000004,211,2.1,46.0554,36.2034 +2012,8,15,17,30,33.5,1.75,0.138,0.58,132,879,905,0,0,13.8,132,879,0,905,0.28800000000000003,30.490000000000002,28.310000000000002,0.9400000000000001,0.22,886,2.5,204,2.3000000000000003,53.7499,42.3004 +2012,8,15,18,30,34.5,1.73,0.137,0.58,135,892,961,0,0,13.200000000000001,135,892,0,961,0.28800000000000003,27.810000000000002,22.03,0.9400000000000001,0.22,885,2.5,198,2.7,58.0695,45.7205 +2012,8,15,19,30,35.1,1.73,0.14300000000000002,0.58,137,884,949,0,0,12.9,137,884,0,949,0.28800000000000003,26.25,23.11,0.9400000000000001,0.22,884,2.6,194,3,57.3949,45.1865 +2012,8,15,20,30,35.4,1.73,0.15,0.58,135,860,874,0,0,12.600000000000001,135,860,0,874,0.28800000000000003,25.36,30.78,0.9400000000000001,0.22,884,2.7,190,3.2,51.6237,40.6182 +2012,8,15,21,30,35.4,1.6500000000000001,0.117,0.58,113,850,750,0,0,12.3,113,850,0,750,0.28700000000000003,24.94,41.46,0.9400000000000001,0.22,883,2.7,187,3.3000000000000003,43.9613,34.5412 +2012,8,15,22,30,34.9,1.6600000000000001,0.121,0.58,103,788,574,0,0,12.100000000000001,103,788,0,574,0.28700000000000003,25.22,53.28,0.9400000000000001,0.22,883,2.7,183,3.2,32.3616,25.3531 +2012,8,15,23,30,33.5,1.68,0.125,0.58,86,683,369,0,0,12,86,683,0,369,0.28700000000000003,27.09,65.48,0.93,0.22,883,2.6,176,2.6,19.2698,14.9957 +2012,8,16,0,30,30.5,1.7,0.131,0.58,58,471,159,0,0,13.600000000000001,58,471,0,159,0.28700000000000003,35.76,77.68,0.93,0.22,884,2.7,161,1.7000000000000002,7.4393,5.6913 +2012,8,16,1,30,27.900000000000002,1.71,0.138,0.58,0,0,0,0,0,15.4,0,0,0,0,0.28800000000000003,46.62,89.34,0.93,0.22,884,2.7,148,1.6,0.0000,0.0000 +2012,8,16,2,30,26.900000000000002,1.72,0.149,0.58,0,0,0,0,3,14.8,0,0,0,0,0.28800000000000003,47.54,101.14,0.93,0.22,885,2.8000000000000003,146,2.2,0.0000,0.0000 +2012,8,16,3,30,26.3,1.71,0.163,0.58,0,0,0,0,8,14.600000000000001,0,0,0,0,0.28800000000000003,48.550000000000004,111.67,0.93,0.22,885,3,152,3.1,0.0000,0.0000 +2012,8,16,4,30,25.5,1.67,0.18,0.58,0,0,0,0,7,14.600000000000001,0,0,0,0,0.28700000000000003,50.83,120.72,0.93,0.22,886,3.1,160,3.5,0.0000,0.0000 +2012,8,16,5,30,24.8,1.6400000000000001,0.197,0.58,0,0,0,0,7,14.600000000000001,0,0,0,0,0.28700000000000003,53.15,127.47,0.93,0.22,886,3.2,167,3.2,0.0000,0.0000 +2012,8,16,6,30,24.3,1.62,0.22,0.58,0,0,0,0,6,14.600000000000001,0,0,0,0,0.28700000000000003,54.7,130.93,0.9400000000000001,0.22,887,3.3000000000000003,178,3,0.0000,0.0000 +2012,8,16,7,30,24.400000000000002,1.6300000000000001,0.255,0.58,0,0,0,0,6,14.5,0,0,0,0,0.28600000000000003,53.99,130.39000000000001,0.9400000000000001,0.22,887,3.4000000000000004,196,3.4000000000000004,0.0000,0.0000 +2012,8,16,8,30,24.5,1.68,0.3,0.58,0,0,0,0,7,14.200000000000001,0,0,0,0,0.28600000000000003,52.52,125.98,0.9400000000000001,0.22,887,3.3000000000000003,212,3.5,0.0000,0.0000 +2012,8,16,9,30,23.900000000000002,1.77,0.339,0.58,0,0,0,0,7,14.100000000000001,0,0,0,0,0.28700000000000003,54.34,118.54,0.93,0.22,887,3.2,219,3.1,0.0000,0.0000 +2012,8,16,10,30,23.1,1.86,0.375,0.58,0,0,0,0,0,14.3,0,0,0,0,0.28700000000000003,57.69,109.04,0.93,0.22,887,3.2,223,2.4000000000000004,0.0000,0.0000 +2012,8,16,11,30,22.6,1.9100000000000001,0.40900000000000003,0.58,0,0,0,0,0,14.600000000000001,0,0,0,0,0.28700000000000003,60.480000000000004,98.24000000000001,0.93,0.22,888,3.1,233,1.8,0.0000,0.0000 +2012,8,16,12,30,23.3,1.8800000000000001,0.445,0.58,20,61,23,0,0,14.8,20,61,0,23,0.28700000000000003,58.67,86.46000000000001,0.9400000000000001,0.22,889,3.1,274,2.2,0.0000,0.0000 +2012,8,16,13,30,24.6,1.84,0.446,0.58,106,307,188,0,0,14.4,106,307,0,188,0.28600000000000003,53.07,74.53,0.9400000000000001,0.22,890,3,328,3.4000000000000004,10.5697,8.1314 +2012,8,16,14,30,25.700000000000003,1.86,0.418,0.58,161,495,391,0,0,13.600000000000001,161,495,0,391,0.28600000000000003,47.21,62.32,0.9400000000000001,0.22,891,3,180,4.5,23.2245,18.1150 +2012,8,16,15,30,26.8,1.8800000000000001,0.397,0.58,190,614,583,0,0,12.9,190,614,0,583,0.28600000000000003,42.2,50.2,0.93,0.22,891,3,17,5.2,36.2140,28.3981 +2012,8,16,16,30,28.1,1.8900000000000001,0.39,0.58,211,684,745,7,8,12.600000000000001,355,387,7,658,0.28600000000000003,38.27,38.61,0.93,0.22,891,3,27,5.2,47.2923,37.1747 +2012,8,16,17,30,29.5,1.9000000000000001,0.39,0.58,227,720,859,7,3,12.5,436,457,7,837,0.28600000000000003,35.07,28.53,0.9400000000000001,0.22,891,3.1,36,4.9,55.0102,43.2914 +2012,8,16,18,30,30.700000000000003,1.74,0.264,0.58,188,800,929,0,1,12.5,188,800,0,929,0.28600000000000003,32.9,22.330000000000002,0.9400000000000001,0.22,891,3.1,46,4.6000000000000005,58.8484,46.3329 +2012,8,16,19,30,31.6,1.76,0.28300000000000003,0.58,195,786,916,0,1,12.700000000000001,195,786,0,916,0.28500000000000003,31.57,23.43,0.9400000000000001,0.22,890,3.2,56,4.2,58.0492,45.7007 +2012,8,16,20,30,32.1,1.79,0.31,0.58,198,751,841,0,1,12.9,198,751,0,841,0.28500000000000003,31.1,31.05,0.9400000000000001,0.22,890,3.2,66,3.9000000000000004,52.9348,41.6487 +2012,8,16,21,30,32,1.82,0.326,0.58,187,700,710,0,0,12.9,187,700,0,710,0.28500000000000003,31.3,41.7,0.93,0.22,889,3.2,77,3.7,44.4698,34.9393 +2012,8,16,22,30,31.3,1.82,0.326,0.58,166,627,539,7,3,12.8,310,381,7,537,0.28600000000000003,32.33,53.5,0.9400000000000001,0.22,889,3.2,87,3.5,32.7319,25.6413 +2012,8,16,23,30,30.200000000000003,1.81,0.319,0.58,131,510,340,0,3,12.700000000000001,238,95,0,277,0.28600000000000003,34.26,65.7,0.9400000000000001,0.22,889,3.2,97,3.2,19.6114,15.2588 +2012,8,17,0,30,28.3,1.78,0.305,0.58,76,309,141,0,8,12.8,117,69,0,132,0.28700000000000003,38.47,77.89,0.9400000000000001,0.22,890,3.3000000000000003,106,2.3000000000000003,7.6217,5.8285 +2012,8,17,1,30,26.400000000000002,1.74,0.297,0.58,0,0,0,7,3,13.700000000000001,0,0,7,0,0.28800000000000003,45.51,89.54,0.9400000000000001,0.22,890,3.3000000000000003,110,1.5,0.0000,0.0000 +2012,8,17,2,30,25.5,1.7,0.301,0.58,0,0,0,0,0,13.700000000000001,0,0,0,0,0.28800000000000003,48.1,101.39,0.9500000000000001,0.22,891,3.4000000000000004,106,1.5,0.0000,0.0000 +2012,8,17,3,30,24.900000000000002,1.67,0.325,0.58,0,0,0,0,1,13.700000000000001,0,0,0,0,0.28800000000000003,49.7,111.94,0.9500000000000001,0.22,892,3.5,93,1.9000000000000001,0.0000,0.0000 +2012,8,17,4,30,24.200000000000003,1.6400000000000001,0.352,0.58,0,0,0,0,1,13.600000000000001,0,0,0,0,0.28800000000000003,51.46,121.01,0.9500000000000001,0.22,892,3.6,83,2.5,0.0000,0.0000 +2012,8,17,5,30,23.5,1.6300000000000001,0.367,0.58,0,0,0,0,1,13.4,0,0,0,0,0.28800000000000003,53.02,127.78,0.96,0.22,892,3.6,80,3.2,0.0000,0.0000 +2012,8,17,6,30,22.6,1.62,0.36,0.58,0,0,0,0,7,13.100000000000001,0,0,0,0,0.28700000000000003,54.870000000000005,131.25,0.96,0.22,892,3.5,80,3.7,0.0000,0.0000 +2012,8,17,7,30,21.8,1.61,0.337,0.58,0,0,0,0,7,12.5,0,0,0,0,0.28700000000000003,55.57,130.7,0.96,0.22,892,3.5,84,3.9000000000000004,0.0000,0.0000 +2012,8,17,8,30,21,1.59,0.341,0.58,0,0,0,0,7,11.8,0,0,0,0,0.28700000000000003,55.74,126.25,0.96,0.22,892,3.6,88,3.9000000000000004,0.0000,0.0000 +2012,8,17,9,30,20.3,1.57,0.341,0.58,0,0,0,0,7,11.100000000000001,0,0,0,0,0.28700000000000003,55.59,118.77,0.96,0.22,892,3.6,94,3.7,0.0000,0.0000 +2012,8,17,10,30,19.5,1.55,0.33,0.58,0,0,0,0,7,10.5,0,0,0,0,0.28800000000000003,56.13,109.23,0.96,0.22,892,3.5,98,3.5,0.0000,0.0000 +2012,8,17,11,30,18.8,1.52,0.319,0.58,0,0,0,0,0,10,0,0,0,0,0.28800000000000003,56.45,98.4,0.96,0.22,892,3.5,100,3.2,0.0000,0.0000 +2012,8,17,12,30,18.8,1.49,0.328,0.58,21,58,25,0,0,9.200000000000001,21,58,0,25,0.289,53.76,86.59,0.96,0.22,893,3.5,106,3.1,0.0000,0.0000 +2012,8,17,13,30,19.5,1.46,0.383,0.58,106,307,187,0,1,8.700000000000001,106,307,0,187,0.29,49.58,74.66,0.97,0.22,893,3.5,119,2.8000000000000003,9.2315,7.1004 +2012,8,17,14,30,19.900000000000002,1.42,0.489,0.58,182,425,378,0,7,8.9,182,425,5,378,0.29,49.06,62.45,0.97,0.22,893,3.7,135,2.5,21.2484,16.5722 +2012,8,17,15,30,20.200000000000003,1.41,0.527,0.58,235,517,565,0,8,9.9,328,348,0,551,0.29,51.61,50.34,0.97,0.22,893,3.8000000000000003,146,2.5,33.6553,26.3905 +2012,8,17,16,30,20.900000000000002,1.42,0.492,0.58,254,605,726,0,1,11.3,254,605,0,726,0.29,54.35,38.78,0.97,0.22,893,3.8000000000000003,151,2.5,39.2770,30.8735 +2012,8,17,17,30,21.900000000000002,1.43,0.441,0.58,254,671,843,7,2,12.600000000000001,254,671,5,843,0.29,55.480000000000004,28.76,0.97,0.22,892,3.8000000000000003,158,2.6,50.8614,40.0256 +2012,8,17,18,30,22.900000000000002,1.48,0.34900000000000003,0.58,226,738,907,7,2,13.700000000000001,383,555,7,896,0.29,56.01,22.63,0.97,0.22,891,3.8000000000000003,164,2.8000000000000003,56.8716,44.7758 +2012,8,17,19,30,23.5,1.5,0.322,0.58,214,750,901,0,8,14.5,345,512,0,814,0.289,56.95,23.75,0.97,0.22,891,3.8000000000000003,167,3,56.0115,44.0955 +2012,8,17,20,30,24,1.53,0.302,0.58,199,741,832,0,8,14.9,350,457,0,740,0.289,56.97,31.330000000000002,0.96,0.22,890,3.8000000000000003,169,3.2,50.9147,40.0583 +2012,8,17,21,30,24.5,1.53,0.231,0.58,160,746,714,0,8,15.100000000000001,283,487,0,645,0.289,55.88,41.94,0.96,0.22,889,3.7,171,3.3000000000000003,42.0727,33.0545 +2012,8,17,22,30,24.900000000000002,1.54,0.20600000000000002,0.58,133,697,545,0,1,15.100000000000001,133,697,0,545,0.289,54.49,53.730000000000004,0.9500000000000001,0.22,889,3.6,172,3.3000000000000003,30.5931,23.9640 +2012,8,17,23,30,24.700000000000003,1.56,0.191,0.58,103,596,347,7,7,15,174,401,7,337,0.289,54.730000000000004,65.92,0.9400000000000001,0.22,888,3.4000000000000004,169,3.3000000000000003,14.6972,11.4331 +2012,8,18,0,30,23.8,1.57,0.185,0.58,65,388,145,0,8,14.9,102,169,0,137,0.289,57.34,78.11,0.9400000000000001,0.22,888,3.3000000000000003,159,3,6.3205,4.8316 +2012,8,18,1,30,22.700000000000003,1.56,0.191,0.58,0,0,0,7,7,14.8,0,0,7,0,0.29,60.94,89.74,0.9400000000000001,0.22,888,3.2,150,2.9000000000000004,0.0000,0.0000 +2012,8,18,2,30,21.900000000000002,1.53,0.20800000000000002,0.58,0,0,0,0,7,14.700000000000001,0,0,0,0,0.29,63.6,101.64,0.9400000000000001,0.22,889,3.3000000000000003,149,2.8000000000000003,0.0000,0.0000 +2012,8,18,3,30,21.3,1.5,0.23700000000000002,0.58,0,0,0,0,7,14.600000000000001,0,0,0,0,0.289,65.82000000000001,112.21000000000001,0.9400000000000001,0.22,889,3.4000000000000004,157,2.3000000000000003,0.0000,0.0000 +2012,8,18,4,30,21,1.5,0.273,0.58,0,0,0,0,6,14.700000000000001,0,0,0,0,0.28800000000000003,67.38,121.31,0.9400000000000001,0.22,889,3.4000000000000004,168,2.2,0.0000,0.0000 +2012,8,18,5,30,20.900000000000002,1.49,0.297,0.58,0,0,0,0,6,15,0,0,0,0,0.28800000000000003,68.92,128.1,0.9500000000000001,0.22,889,3.4000000000000004,177,2.5,0.0000,0.0000 +2012,8,18,6,30,21,1.47,0.308,0.58,0,0,0,0,7,15.5,0,0,0,0,0.28700000000000003,70.59,131.58,0.9500000000000001,0.22,889,3.4000000000000004,186,2.9000000000000004,0.0000,0.0000 +2012,8,18,7,30,21.1,1.45,0.313,0.58,0,0,0,0,6,16.1,0,0,0,0,0.28600000000000003,73.22,131.01,0.9500000000000001,0.22,888,3.5,195,3.1,0.0000,0.0000 +2012,8,18,8,30,21,1.43,0.307,0.58,0,0,0,0,7,16.900000000000002,0,0,0,0,0.28600000000000003,77.27,126.52,0.9500000000000001,0.22,888,3.5,203,2.8000000000000003,0.0000,0.0000 +2012,8,18,9,30,20.700000000000003,1.45,0.291,0.58,0,0,0,0,7,17.400000000000002,0,0,0,0,0.28600000000000003,81.59,119,0.9500000000000001,0.22,888,3.4000000000000004,214,2.4000000000000004,0.0000,0.0000 +2012,8,18,10,30,20.400000000000002,1.49,0.271,0.58,0,0,0,0,8,17.7,0,0,0,0,0.28600000000000003,84.5,109.42,0.9500000000000001,0.22,888,3.4000000000000004,227,2.1,0.0000,0.0000 +2012,8,18,11,30,20.200000000000003,1.55,0.24,0.58,0,0,0,0,3,17.7,0,0,0,0,0.28600000000000003,85.42,98.56,0.9400000000000001,0.22,888,3.3000000000000003,243,2.2,0.0000,0.0000 +2012,8,18,12,30,21.400000000000002,1.6,0.214,0.58,21,100,27,0,0,17.6,21,100,0,27,0.28600000000000003,78.79,86.73,0.9400000000000001,0.22,888,3.2,258,2.8000000000000003,0.0000,0.0000 +2012,8,18,13,30,24.400000000000002,1.6600000000000001,0.198,0.58,79,456,198,0,0,17.3,79,456,0,198,0.28600000000000003,64.7,74.8,0.9400000000000001,0.22,887,3.1,271,3.4000000000000004,9.1718,7.0528 +2012,8,18,14,30,27.900000000000002,1.72,0.188,0.58,109,647,407,0,0,16.7,109,647,0,407,0.28700000000000003,50.49,62.58,0.93,0.22,887,3,275,3.2,20.5245,16.0062 +2012,8,18,15,30,30.6,1.75,0.182,0.58,127,751,605,0,4,15.5,358,195,0,482,0.28700000000000003,40.12,50.480000000000004,0.93,0.22,887,3,264,2.2,31.7914,24.9280 +2012,8,18,16,30,32.5,1.77,0.179,0.58,139,809,769,7,2,14.5,307,592,7,768,0.28600000000000003,33.7,38.96,0.93,0.22,887,3,234,1.3,43.3197,34.0504 +2012,8,18,17,30,33.800000000000004,1.78,0.178,0.58,147,841,883,7,3,14,454,353,7,763,0.28600000000000003,30.310000000000002,28.990000000000002,0.93,0.22,886,3,201,1,51.2095,40.2988 +2012,8,18,18,30,34.7,1.78,0.163,0.58,144,864,940,0,0,13.600000000000001,144,864,0,940,0.28500000000000003,28.16,22.94,0.93,0.22,886,3,172,0.7000000000000001,54.8347,43.1713 +2012,8,18,19,30,35.1,1.79,0.196,0.58,159,840,925,0,0,13.3,159,840,0,925,0.28400000000000003,26.990000000000002,24.07,0.9400000000000001,0.22,885,3.1,115,0.7000000000000001,49.7572,39.1709 +2012,8,18,20,30,34.9,1.73,0.26,0.58,181,780,845,0,0,13,181,780,0,845,0.28400000000000003,26.740000000000002,31.61,0.9500000000000001,0.22,884,3.1,70,1.3,44.7804,35.2309 +2012,8,18,21,30,34.1,1.6500000000000001,0.198,0.58,146,780,724,0,0,12.700000000000001,146,780,0,724,0.28400000000000003,27.42,42.19,0.96,0.22,884,3.1,72,2.1,38.1977,30.0088 +2012,8,18,22,30,32.800000000000004,1.6,0.23500000000000001,0.58,143,683,544,0,8,12.4,73,0,0,73,0.28400000000000003,29.01,53.96,0.96,0.22,884,3.1,82,2.9000000000000004,31.0179,24.2947 +2012,8,18,23,30,31.200000000000003,1.58,0.267,0.58,122,534,338,0,1,12.600000000000001,122,534,0,338,0.28400000000000003,32.11,66.14,0.96,0.22,885,3.2,86,3.5,17.8506,13.8834 +2012,8,19,0,30,29.5,1.57,0.28700000000000003,0.58,76,299,136,0,3,13.3,108,15,0,111,0.28400000000000003,36.95,78.34,0.97,0.22,886,3.3000000000000003,87,3.7,6.5530,5.0074 +2012,8,19,1,30,27.900000000000002,1.56,0.29,0.58,0,0,0,7,3,14,0,0,7,0,0.28400000000000003,42.65,89.96000000000001,0.97,0.22,887,3.3000000000000003,85,3.9000000000000004,0.0000,0.0000 +2012,8,19,2,30,26.700000000000003,1.56,0.29,0.58,0,0,0,0,0,14.600000000000001,0,0,0,0,0.28400000000000003,47.34,101.9,0.97,0.22,888,3.3000000000000003,83,4.1000000000000005,0.0000,0.0000 +2012,8,19,3,30,25.5,1.54,0.28800000000000003,0.58,0,0,0,0,0,15.100000000000001,0,0,0,0,0.28500000000000003,52.49,112.49000000000001,0.96,0.22,888,3.3000000000000003,82,4.1000000000000005,0.0000,0.0000 +2012,8,19,4,30,24.5,1.53,0.28800000000000003,0.58,0,0,0,0,0,15.700000000000001,0,0,0,0,0.28500000000000003,57.92,121.61,0.96,0.22,889,3.3000000000000003,83,4,0.0000,0.0000 +2012,8,19,5,30,23.400000000000002,1.57,0.272,0.58,0,0,0,0,0,16.400000000000002,0,0,0,0,0.28500000000000003,64.69,128.43,0.96,0.22,889,3.2,83,3.6,0.0000,0.0000 +2012,8,19,6,30,22.3,1.6500000000000001,0.245,0.58,0,0,0,0,1,17,0,0,0,0,0.28500000000000003,71.89,131.91,0.9500000000000001,0.22,890,3.1,83,2.7,0.0000,0.0000 +2012,8,19,7,30,21.200000000000003,1.73,0.23900000000000002,0.58,0,0,0,0,1,17.400000000000002,0,0,0,0,0.28500000000000003,78.85000000000001,131.32,0.9500000000000001,0.22,890,3,82,1.7000000000000002,0.0000,0.0000 +2012,8,19,8,30,20.6,1.75,0.27,0.58,0,0,0,0,4,17.6,0,0,0,0,0.28600000000000003,83.07000000000001,126.79,0.9500000000000001,0.22,890,2.8000000000000003,79,1.2000000000000002,0.0000,0.0000 +2012,8,19,9,30,20.200000000000003,1.74,0.28800000000000003,0.58,0,0,0,0,0,17.7,0,0,0,0,0.28600000000000003,85.69,119.23,0.9500000000000001,0.22,890,2.6,74,1.2000000000000002,0.0000,0.0000 +2012,8,19,10,30,19.8,1.76,0.26,0.58,0,0,0,0,3,17.7,0,0,0,0,0.28700000000000003,87.48,109.62,0.9500000000000001,0.22,890,2.6,68,1.5,0.0000,0.0000 +2012,8,19,11,30,19.400000000000002,1.78,0.23,0.58,0,0,0,0,0,17.400000000000002,0,0,0,0,0.28700000000000003,88.34,98.73,0.9500000000000001,0.22,891,2.5,62,2,0.0000,0.0000 +2012,8,19,12,30,19.8,1.79,0.213,0.58,21,111,27,7,4,16.900000000000002,9,0,7,9,0.28700000000000003,83.29,86.87,0.9500000000000001,0.22,891,2.5,58,2.7,0.0000,0.0000 +2012,8,19,13,30,21.5,1.79,0.197,0.58,78,471,201,0,3,15,147,44,0,159,0.28700000000000003,66.58,74.93,0.9400000000000001,0.22,892,2.4000000000000004,58,3.1,9.6992,7.4565 +2012,8,19,14,30,24,1.82,0.168,0.58,104,680,416,7,3,11.700000000000001,261,132,7,322,0.28700000000000003,46.22,62.71,0.9400000000000001,0.22,892,2.3000000000000003,62,3.2,22.0801,17.2178 +2012,8,19,15,30,26.3,1.85,0.139,0.58,112,802,621,7,3,9,293,451,7,579,0.28700000000000003,33.56,50.63,0.93,0.22,892,2.2,66,2.8000000000000003,27.7957,21.7940 +2012,8,19,16,30,28.3,1.87,0.11900000000000001,0.58,116,872,792,0,3,7.7,367,13,0,377,0.28700000000000003,27.35,39.13,0.93,0.22,892,2.1,70,2.3000000000000003,45.8074,36.0048 +2012,8,19,17,30,29.8,1.8800000000000001,0.111,0.58,119,906,910,0,0,7.2,119,906,0,910,0.28600000000000003,24.21,29.22,0.93,0.22,891,2.1,76,1.9000000000000001,46.3347,36.4619 +2012,8,19,18,30,31.1,1.75,0.17500000000000002,0.58,152,874,955,0,1,7.1000000000000005,152,874,0,955,0.28600000000000003,22.25,23.25,0.9400000000000001,0.22,890,2.1,85,1.6,57.5089,45.2758 +2012,8,19,19,30,31.8,1.73,0.184,0.58,156,866,944,7,3,7.1000000000000005,473,395,7,833,0.28600000000000003,21.52,24.400000000000002,0.9400000000000001,0.22,890,2.1,100,1.4000000000000001,56.5223,44.4958 +2012,8,19,20,30,32,1.69,0.197,0.58,157,836,867,0,1,7.4,157,836,0,867,0.28600000000000003,21.6,31.89,0.9500000000000001,0.22,889,2.2,121,1.3,51.1115,40.2108 +2012,8,19,21,30,31.6,1.6600000000000001,0.137,0.58,123,842,744,0,0,7.6000000000000005,123,842,0,744,0.28600000000000003,22.5,42.44,0.9500000000000001,0.22,888,2.2,138,1.4000000000000001,42.8486,33.6612 +2012,8,19,22,30,30.8,1.6500000000000001,0.14,0.58,111,775,564,0,0,7.9,111,775,0,564,0.28600000000000003,23.92,54.19,0.9500000000000001,0.22,888,2.3000000000000003,149,1.6,4.1505,3.2506 +2012,8,19,23,30,29.6,1.6500000000000001,0.139,0.58,90,664,357,0,0,8.1,90,664,0,357,0.28600000000000003,26.01,66.37,0.9500000000000001,0.22,888,2.3000000000000003,152,1.7000000000000002,17.8731,13.8982 +2012,8,20,0,30,27.6,1.6400000000000001,0.145,0.58,59,439,146,0,1,8.4,59,439,0,146,0.28700000000000003,29.95,78.57000000000001,0.9500000000000001,0.22,889,2.3000000000000003,144,1.5,5.3042,4.0515 +2012,8,20,1,30,25.6,1.6300000000000001,0.154,0.58,0,0,0,0,0,10.3,0,0,0,0,0.28700000000000003,38.11,90.16,0.9500000000000001,0.22,890,2.3000000000000003,130,1.5,0.0000,0.0000 +2012,8,20,2,30,24.400000000000002,1.62,0.157,0.58,0,0,0,0,0,9.3,0,0,0,0,0.28700000000000003,38.4,102.15,0.9500000000000001,0.22,890,2.3000000000000003,121,2.1,0.0000,0.0000 +2012,8,20,3,30,23.200000000000003,1.6300000000000001,0.158,0.58,0,0,0,0,0,8.3,0,0,0,0,0.28700000000000003,38.6,112.77,0.9500000000000001,0.22,891,2.2,118,2.8000000000000003,0.0000,0.0000 +2012,8,20,4,30,21.900000000000002,1.6400000000000001,0.155,0.58,0,0,0,0,0,7.4,0,0,0,0,0.28600000000000003,39.18,121.92,0.9500000000000001,0.22,891,2.1,116,3.2,0.0000,0.0000 +2012,8,20,5,30,20.6,1.6600000000000001,0.148,0.58,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.28500000000000003,40.11,128.76,0.9400000000000001,0.22,892,2.1,117,3.2,0.0000,0.0000 +2012,8,20,6,30,19.400000000000002,1.69,0.14,0.58,0,0,0,0,0,5.800000000000001,0,0,0,0,0.28400000000000003,40.9,132.24,0.9400000000000001,0.22,892,2.1,119,2.9000000000000004,0.0000,0.0000 +2012,8,20,7,30,18.400000000000002,1.71,0.138,0.58,0,0,0,0,0,5.2,0,0,0,0,0.28300000000000003,41.92,131.63,0.9400000000000001,0.22,892,2.2,122,2.7,0.0000,0.0000 +2012,8,20,8,30,17.6,1.72,0.14300000000000002,0.58,0,0,0,0,0,4.9,0,0,0,0,0.28200000000000003,43.08,127.07000000000001,0.9400000000000001,0.22,892,2.2,125,2.5,0.0000,0.0000 +2012,8,20,9,30,17,1.71,0.154,0.58,0,0,0,0,0,4.800000000000001,0,0,0,0,0.28200000000000003,44.34,119.46000000000001,0.9400000000000001,0.22,892,2.4000000000000004,129,2.4000000000000004,0.0000,0.0000 +2012,8,20,10,30,16.7,1.69,0.17300000000000001,0.58,0,0,0,0,0,4.800000000000001,0,0,0,0,0.28200000000000003,45.22,109.81,0.9500000000000001,0.22,892,2.5,134,2.4000000000000004,0.0000,0.0000 +2012,8,20,11,30,16.7,1.67,0.194,0.58,0,0,0,0,0,4.800000000000001,0,0,0,0,0.28200000000000003,45.25,98.89,0.9500000000000001,0.22,892,2.6,138,2.6,0.0000,0.0000 +2012,8,20,12,30,17.7,1.67,0.20800000000000002,0.58,20,100,25,0,0,4.800000000000001,20,100,0,25,0.28200000000000003,42.51,87.01,0.9500000000000001,0.22,892,2.7,144,3,0.0000,0.0000 +2012,8,20,13,30,20,1.67,0.217,0.58,82,437,195,0,0,4.7,82,437,0,195,0.28200000000000003,36.61,75.06,0.9500000000000001,0.22,892,2.9000000000000004,152,3.8000000000000003,7.7799,5.9796 +2012,8,20,14,30,22.8,1.68,0.22,0.58,119,619,402,0,0,4.9,119,619,0,402,0.28300000000000003,31.220000000000002,62.85,0.9500000000000001,0.22,892,2.9000000000000004,163,4.4,17.4537,13.6090 +2012,8,20,15,30,25.5,1.7,0.224,0.58,144,717,597,0,1,6.9,144,717,0,597,0.28300000000000003,30.54,50.77,0.9500000000000001,0.22,891,3,175,4.6000000000000005,33.3706,26.1640 +2012,8,20,16,30,27.6,1.72,0.226,0.58,160,772,757,7,3,9.700000000000001,382,406,7,696,0.28200000000000003,32.7,39.31,0.9500000000000001,0.22,890,3.2,184,4.6000000000000005,22.4776,17.6670 +2012,8,20,17,30,29.3,1.74,0.233,0.58,172,800,869,7,2,11.600000000000001,336,600,7,859,0.28200000000000003,33.6,29.46,0.9500000000000001,0.22,889,3.3000000000000003,189,4.5,55.2434,43.4715 +2012,8,20,18,30,30.6,1.72,0.212,0.58,167,824,923,0,8,12.9,279,611,0,839,0.28200000000000003,33.87,23.57,0.9500000000000001,0.22,888,3.5,192,4.3,58.4075,45.9824 +2012,8,20,19,30,30.900000000000002,1.68,0.23,0.58,175,807,908,0,1,13.9,175,807,0,908,0.281,35.63,24.73,0.96,0.22,888,3.7,194,4.2,50.8818,40.0545 +2012,8,20,20,30,30.6,1.6500000000000001,0.248,0.58,176,775,832,0,4,14.700000000000001,485,153,0,615,0.281,38.18,32.19,0.96,0.22,887,3.8000000000000003,193,4,52.4185,41.2378 +2012,8,20,21,30,30.200000000000003,1.6400000000000001,0.274,0.58,173,716,699,0,0,15.200000000000001,173,716,0,699,0.281,40.28,42.7,0.96,0.22,887,3.8000000000000003,187,4,44.0037,34.5670 +2012,8,20,22,30,29.8,1.6500000000000001,0.262,0.58,149,651,528,7,2,15.4,149,651,5,528,0.281,41.72,54.43,0.96,0.22,886,3.8000000000000003,178,4.3,32.0342,25.0865 +2012,8,20,23,30,28.900000000000002,1.69,0.249,0.58,116,538,329,0,6,15.600000000000001,175,24,0,184,0.281,44.49,66.6,0.96,0.22,885,3.8000000000000003,169,4.5,18.8439,14.6500 +2012,8,21,0,30,26.900000000000002,1.69,0.278,0.58,71,294,128,0,9,15.9,41,1,0,41,0.28200000000000003,51.06,78.8,0.96,0.22,885,4,163,4.4,6.9708,5.3225 +2012,8,21,1,30,24.700000000000003,1.58,0.48,0.58,0,0,0,0,9,16.1,0,0,0,0,0.28400000000000003,58.93,90.89,0.97,0.22,885,4.2,165,3.4000000000000004,0.0000,0.0000 +2012,8,21,2,30,22.5,1.47,0.594,0.58,0,0,0,0,4,17,0,0,0,0,0.28400000000000003,70.97,102.41,0.98,0.22,887,4.4,152,2.4000000000000004,0.0000,0.0000 +2012,8,21,3,30,20.6,1.45,0.578,0.58,0,0,0,0,4,17.5,0,0,0,0,0.28400000000000003,82.3,113.05,0.98,0.22,888,4.4,111,3.1,0.0000,0.0000 +2012,8,21,4,30,18.7,1.51,0.55,0.58,0,0,0,0,4,16.900000000000002,0,0,0,0,0.28400000000000003,89.38,122.23,0.98,0.22,889,4.3,91,4.7,0.0000,0.0000 +2012,8,21,5,30,17.2,1.58,0.595,0.58,0,0,0,0,4,15.4,0,0,0,0,0.28400000000000003,89.43,129.09,0.97,0.22,890,4.1000000000000005,105,5.6000000000000005,0.0000,0.0000 +2012,8,21,6,30,16.1,1.6500000000000001,0.614,0.58,0,0,0,0,8,14.200000000000001,0,0,0,0,0.28400000000000003,88.41,132.58,0.97,0.22,890,3.9000000000000004,120,5.5,0.0000,0.0000 +2012,8,21,7,30,15.4,1.73,0.545,0.58,0,0,0,0,4,13.700000000000001,0,0,0,0,0.28400000000000003,89.9,131.95,0.97,0.22,890,3.7,132,5,0.0000,0.0000 +2012,8,21,8,30,15,1.77,0.456,0.58,0,0,0,0,3,13.8,0,0,0,0,0.28500000000000003,92.25,127.34,0.96,0.22,890,3.4000000000000004,137,4.2,0.0000,0.0000 +2012,8,21,9,30,15,1.79,0.379,0.58,0,0,0,0,0,14,0,0,0,0,0.28700000000000003,93.77,119.69,0.96,0.22,890,3.2,134,3.3000000000000003,0.0000,0.0000 +2012,8,21,10,30,15,1.78,0.342,0.58,0,0,0,0,1,14.3,0,0,0,0,0.28800000000000003,95.39,110,0.96,0.22,890,3.2,122,2.6,0.0000,0.0000 +2012,8,21,11,30,15.100000000000001,1.76,0.333,0.58,0,0,0,0,0,14.4,0,0,0,0,0.289,95.53,99.05,0.96,0.22,890,3.1,111,2.4000000000000004,0.0000,0.0000 +2012,8,21,12,30,15.9,1.74,0.338,0.58,17,57,20,0,0,14.5,17,57,0,20,0.289,91.19,87.14,0.96,0.22,891,3.1,116,2.6,0.0000,0.0000 +2012,8,21,13,30,17.7,1.74,0.33,0.58,95,352,185,0,0,14.700000000000001,95,352,0,185,0.29,82.33,75.19,0.96,0.22,891,3,134,2.8000000000000003,9.5305,7.3234 +2012,8,21,14,30,20.200000000000003,1.76,0.309,0.58,140,553,392,0,3,15,124,0,0,124,0.291,72.03,62.980000000000004,0.96,0.22,891,2.9000000000000004,149,2.6,21.7696,16.9726 +2012,8,21,15,30,22.400000000000002,1.74,0.315,0.58,173,656,586,0,3,15.5,285,10,0,291,0.292,64.91,50.92,0.96,0.22,892,2.9000000000000004,156,2,34.3898,26.9620 +2012,8,21,16,30,24.3,1.7,0.327,0.58,197,713,747,0,3,15.9,355,8,0,361,0.292,59.28,39.49,0.96,0.22,892,2.9000000000000004,147,1.5,41.4802,32.6019 +2012,8,21,17,30,25.900000000000002,1.7,0.307,0.58,202,761,863,7,3,15.9,518,193,7,685,0.293,54.1,29.7,0.96,0.22,891,2.9000000000000004,127,1.4000000000000001,52.1293,41.0201 +2012,8,21,18,30,27,1.72,0.326,0.58,214,767,915,0,3,15.8,361,1,0,362,0.293,50.35,23.88,0.96,0.22,891,2.9000000000000004,115,1.7000000000000002,51.2954,40.3824 +2012,8,21,19,30,27.6,1.74,0.321,0.58,211,767,906,0,3,15.600000000000001,256,0,0,256,0.293,48,25.07,0.96,0.22,890,2.9000000000000004,112,2.1,55.4421,43.6434 +2012,8,21,20,30,27.700000000000003,1.75,0.312,0.58,200,751,834,0,3,15.4,240,0,0,240,0.293,47.17,32.480000000000004,0.96,0.22,890,2.9000000000000004,112,2.5,37.1644,29.2365 +2012,8,21,21,30,27.400000000000002,1.79,0.359,0.58,201,680,699,0,3,15.200000000000001,348,15,0,359,0.292,47.43,42.96,0.96,0.22,890,2.9000000000000004,115,3,41.3139,32.4525 +2012,8,21,22,30,26.5,1.84,0.343,0.58,171,613,525,0,3,15.100000000000001,341,169,0,439,0.292,49.52,54.67,0.9500000000000001,0.22,890,2.9000000000000004,119,3.5,29.9572,23.4579 +2012,8,21,23,30,24.8,1.8800000000000001,0.326,0.58,130,500,327,0,0,15.100000000000001,130,500,0,327,0.293,54.86,66.83,0.9500000000000001,0.22,890,2.8000000000000003,125,3.8000000000000003,9.6947,7.5354 +2012,8,22,0,30,22.8,1.9000000000000001,0.317,0.58,71,290,126,0,0,15.3,71,290,0,126,0.293,62.620000000000005,79.04,0.9400000000000001,0.22,891,2.7,130,4,1.9562,1.4931 +2012,8,22,1,30,20.8,1.9000000000000001,0.311,0.58,0,0,0,0,0,15.5,0,0,0,0,0.293,71.86,91.14,0.9400000000000001,0.22,892,2.7,134,4,0.0000,0.0000 +2012,8,22,2,30,19.5,1.8800000000000001,0.298,0.58,0,0,0,0,0,15.8,0,0,0,0,0.293,79.01,102.68,0.9400000000000001,0.22,892,2.6,139,4,0.0000,0.0000 +2012,8,22,3,30,18.7,1.87,0.277,0.58,0,0,0,0,0,15.8,0,0,0,0,0.292,83.5,113.34,0.9400000000000001,0.22,893,2.5,144,3.7,0.0000,0.0000 +2012,8,22,4,30,18.3,1.86,0.254,0.58,0,0,0,0,0,15.8,0,0,0,0,0.29,85.18,122.54,0.9400000000000001,0.22,893,2.5,148,3.3000000000000003,0.0000,0.0000 +2012,8,22,5,30,17.900000000000002,1.85,0.233,0.58,0,0,0,0,0,15.700000000000001,0,0,0,0,0.289,86.87,129.42000000000002,0.9400000000000001,0.22,893,2.5,152,2.9000000000000004,0.0000,0.0000 +2012,8,22,6,30,17.5,1.84,0.222,0.58,0,0,0,0,3,15.600000000000001,0,0,0,0,0.28800000000000003,88.68,132.92000000000002,0.9400000000000001,0.22,892,2.4000000000000004,156,2.5,0.0000,0.0000 +2012,8,22,7,30,17,1.83,0.216,0.58,0,0,0,0,1,15.600000000000001,0,0,0,0,0.28700000000000003,91.33,132.26,0.9400000000000001,0.22,892,2.4000000000000004,161,2.2,0.0000,0.0000 +2012,8,22,8,30,16.7,1.82,0.215,0.58,0,0,0,0,0,15.600000000000001,0,0,0,0,0.28700000000000003,92.98,127.62,0.9500000000000001,0.22,892,2.4000000000000004,168,2.1,0.0000,0.0000 +2012,8,22,9,30,16.400000000000002,1.81,0.217,0.58,0,0,0,0,3,15.5,0,0,0,0,0.28600000000000003,94.72,119.92,0.9500000000000001,0.22,892,2.4000000000000004,174,2,0.0000,0.0000 +2012,8,22,10,30,16.1,1.8,0.222,0.58,0,0,0,0,3,15.5,0,0,0,0,0.28500000000000003,96.48,110.19,0.9500000000000001,0.22,892,2.4000000000000004,179,1.9000000000000001,0.0000,0.0000 +2012,8,22,11,30,16.2,1.8,0.227,0.58,0,0,0,0,1,15.5,0,0,0,0,0.28400000000000003,95.75,99.22,0.9500000000000001,0.22,892,2.4000000000000004,184,2.1,0.0000,0.0000 +2012,8,22,12,30,17.1,1.8,0.233,0.58,18,90,22,7,7,15.5,9,0,7,9,0.28300000000000003,90.24,87.28,0.9500000000000001,0.22,892,2.4000000000000004,190,2.7,0.0000,0.0000 +2012,8,22,13,30,19.400000000000002,1.81,0.23500000000000001,0.58,84,431,193,0,8,15.4,110,15,0,114,0.28300000000000003,77.57000000000001,75.33,0.9500000000000001,0.22,892,2.4000000000000004,194,3.3000000000000003,9.0316,6.9384 +2012,8,22,14,30,22,1.83,0.23500000000000001,0.58,122,615,401,0,7,15.4,231,179,0,312,0.28400000000000003,66.17,63.120000000000005,0.9500000000000001,0.22,892,2.5,195,3.6,6.7091,5.2303 +2012,8,22,15,30,24.200000000000003,1.83,0.244,0.58,150,713,598,7,7,15.700000000000001,228,15,7,238,0.28500000000000003,59,51.07,0.9500000000000001,0.22,892,2.5,196,3.7,16.7533,13.1342 +2012,8,22,16,30,25.8,1.81,0.259,0.58,172,762,759,0,7,16,313,462,0,668,0.28600000000000003,54.550000000000004,39.67,0.9500000000000001,0.22,891,2.6,196,3.7,21.5060,16.9025 +2012,8,22,17,30,27,1.82,0.257,0.58,182,798,873,0,7,16,403,350,0,706,0.28600000000000003,51.050000000000004,29.94,0.9500000000000001,0.22,891,2.6,195,3.6,41.5554,32.6988 +2012,8,22,18,30,27.900000000000002,1.87,0.281,0.58,195,798,923,0,3,15.9,535,246,0,759,0.28700000000000003,47.980000000000004,24.2,0.9500000000000001,0.22,890,2.7,194,3.5,22.1247,17.4174 +2012,8,22,19,30,28.5,1.8900000000000001,0.272,0.58,191,798,912,0,0,15.600000000000001,191,798,0,912,0.28700000000000003,45.550000000000004,25.400000000000002,0.9500000000000001,0.22,890,2.8000000000000003,192,3.4000000000000004,15.6251,12.2996 +2012,8,22,20,30,28.6,1.9000000000000001,0.268,0.58,180,778,835,0,0,15.200000000000001,180,778,0,835,0.28800000000000003,44.160000000000004,32.78,0.9400000000000001,0.22,889,2.9000000000000004,189,3.3000000000000003,14.4962,11.4035 +2012,8,22,21,30,28.5,1.85,0.182,0.58,137,791,714,0,0,14.700000000000001,137,791,0,714,0.28700000000000003,43.03,43.22,0.9400000000000001,0.22,888,3,182,3.2,21.2038,16.6550 +2012,8,22,22,30,28.1,1.84,0.17300000000000001,0.58,119,730,539,0,0,14.3,119,730,0,539,0.28700000000000003,42.9,54.92,0.9500000000000001,0.22,888,3,172,3.2,24.8805,19.4808 +2012,8,22,23,30,27.3,1.85,0.161,0.58,93,624,336,0,8,14.3,164,426,0,330,0.28700000000000003,44.78,67.07000000000001,0.9500000000000001,0.22,888,3,160,3.2,17.1976,13.3643 +2012,8,23,0,30,25.6,1.8800000000000001,0.151,0.58,55,407,131,0,4,14.8,69,1,0,69,0.28700000000000003,51.17,79.28,0.9400000000000001,0.22,888,3.1,152,3.1,6.0085,4.5844 +2012,8,23,1,30,23.900000000000002,1.8800000000000001,0.149,0.58,0,0,0,0,7,15.3,0,0,0,0,0.28700000000000003,58.44,91.39,0.9500000000000001,0.22,888,3.1,151,3.3000000000000003,0.0000,0.0000 +2012,8,23,2,30,23,1.86,0.153,0.58,0,0,0,0,7,15.600000000000001,0,0,0,0,0.28800000000000003,62.940000000000005,102.95,0.9500000000000001,0.22,888,3.1,154,3.8000000000000003,0.0000,0.0000 +2012,8,23,3,30,22.400000000000002,1.83,0.162,0.58,0,0,0,0,7,15.9,0,0,0,0,0.28800000000000003,66.58,113.63,0.9500000000000001,0.22,889,3.2,159,4.1000000000000005,0.0000,0.0000 +2012,8,23,4,30,22,1.8,0.17300000000000001,0.58,0,0,0,0,4,16,0,0,0,0,0.28800000000000003,68.81,122.86,0.96,0.22,888,3.2,164,4.3,0.0000,0.0000 +2012,8,23,5,30,21.700000000000003,1.77,0.183,0.58,0,0,0,0,4,16.1,0,0,0,0,0.28800000000000003,70.38,129.76,0.96,0.22,888,3.3000000000000003,169,4.4,0.0000,0.0000 +2012,8,23,6,30,21.5,1.74,0.187,0.58,0,0,0,0,4,16.1,0,0,0,0,0.28800000000000003,71.5,133.26,0.96,0.22,888,3.3000000000000003,173,4.4,0.0000,0.0000 +2012,8,23,7,30,21.200000000000003,1.7,0.187,0.58,0,0,0,0,4,16.2,0,0,0,0,0.28800000000000003,73.21000000000001,132.59,0.96,0.22,888,3.4000000000000004,175,4.3,0.0000,0.0000 +2012,8,23,8,30,20.900000000000002,1.6600000000000001,0.186,0.58,0,0,0,0,4,16.3,0,0,0,0,0.289,75.16,127.9,0.96,0.22,888,3.5,179,4.2,0.0000,0.0000 +2012,8,23,9,30,20.6,1.6300000000000001,0.181,0.58,0,0,0,0,4,16.5,0,0,0,0,0.289,77.37,120.15,0.96,0.22,888,3.5,183,3.9000000000000004,0.0000,0.0000 +2012,8,23,10,30,20.400000000000002,1.61,0.169,0.58,0,0,0,0,1,16.6,0,0,0,0,0.29,78.98,110.38,0.96,0.22,888,3.5,186,3.6,0.0000,0.0000 +2012,8,23,11,30,20.400000000000002,1.59,0.156,0.58,0,0,0,0,7,16.6,0,0,0,0,0.29,79.03,99.38,0.96,0.22,888,3.6,189,3.4000000000000004,0.0000,0.0000 +2012,8,23,12,30,21.1,1.59,0.14300000000000002,0.58,17,110,22,7,7,16.5,16,0,7,16,0.291,75.21000000000001,87.42,0.96,0.22,888,3.6,192,3.6,0.0000,0.0000 +2012,8,23,13,30,23.1,1.6,0.133,0.58,66,501,192,0,7,16.400000000000002,50,457,0,164,0.291,66.08,75.47,0.96,0.22,888,3.6,203,4.2,5.5588,4.2694 +2012,8,23,14,30,25.5,1.61,0.124,0.58,91,690,401,0,4,16.2,176,5,0,178,0.291,56.56,63.25,0.96,0.22,888,3.6,218,4.800000000000001,16.8651,13.1462 +2012,8,23,15,30,27.400000000000002,1.6300000000000001,0.11800000000000001,0.58,105,787,598,0,4,16.2,283,18,0,294,0.29,50.410000000000004,51.22,0.96,0.22,888,3.7,226,4.7,13.6941,10.7353 +2012,8,23,16,30,28.6,1.6400000000000001,0.116,0.58,115,840,760,0,7,16.2,227,585,0,676,0.289,46.99,39.85,0.96,0.22,887,3.8000000000000003,226,4.7,39.7786,31.2627 +2012,8,23,17,30,29.3,1.6500000000000001,0.11800000000000001,0.58,122,867,871,0,4,16.3,441,84,0,514,0.28700000000000003,45.42,30.19,0.96,0.22,887,3.9000000000000004,223,4.800000000000001,42.8142,33.6886 +2012,8,23,18,30,29.900000000000002,1.6500000000000001,0.124,0.58,128,873,922,0,4,16.400000000000002,307,1,0,307,0.28600000000000003,44.26,24.53,0.96,0.22,887,4,218,5,46.3721,36.5050 +2012,8,23,19,30,30.400000000000002,1.6600000000000001,0.137,0.58,133,861,909,0,4,16.5,476,139,0,602,0.28500000000000003,43.27,25.75,0.96,0.22,886,4.1000000000000005,210,5.2,55.6427,43.7993 +2012,8,23,20,30,30.700000000000003,1.67,0.152,0.58,135,833,833,0,4,16.6,411,46,0,450,0.28500000000000003,42.63,33.09,0.97,0.22,886,4.1000000000000005,202,5.2,50.4092,39.6534 +2012,8,23,21,30,30.400000000000002,1.67,0.169,0.58,133,782,701,0,7,16.3,231,607,0,672,0.28600000000000003,42.65,43.49,0.97,0.22,885,4.1000000000000005,195,5.2,42.1418,33.0996 +2012,8,23,22,30,29.8,1.67,0.188,0.58,124,699,523,0,4,15.9,219,2,0,220,0.28700000000000003,43.02,55.17,0.97,0.22,885,4.1000000000000005,188,5.1000000000000005,30.5131,23.8886 +2012,8,23,23,30,28.6,1.6500000000000001,0.201,0.58,103,564,320,0,8,15.700000000000001,103,564,5,320,0.28800000000000003,45.68,67.32000000000001,0.97,0.22,886,4.1000000000000005,182,4.7,17.3219,13.4577 +2012,8,24,0,30,27.1,1.68,0.183,0.58,59,349,122,0,8,15.9,92,34,0,98,0.28800000000000003,50.32,79.52,0.96,0.22,886,4.1000000000000005,175,4.1000000000000005,3.2892,2.5088 +2012,8,24,1,30,25.700000000000003,1.71,0.153,0.58,0,0,0,0,7,16.2,0,0,0,0,0.289,55.75,91.65,0.96,0.22,886,4,172,4.1000000000000005,0.0000,0.0000 +2012,8,24,2,30,24.8,1.72,0.131,0.58,0,0,0,0,6,16.400000000000002,0,0,0,0,0.289,59.63,103.22,0.96,0.22,886,3.9000000000000004,177,4.3,0.0000,0.0000 +2012,8,24,3,30,24.200000000000003,1.71,0.11900000000000001,0.58,0,0,0,0,6,16.6,0,0,0,0,0.28800000000000003,62.46,113.92,0.96,0.22,887,3.8000000000000003,182,4.3,0.0000,0.0000 +2012,8,24,4,30,23.6,1.68,0.117,0.58,0,0,0,0,6,16.7,0,0,0,0,0.28700000000000003,65.23,123.18,0.96,0.22,886,3.8000000000000003,185,4.2,0.0000,0.0000 +2012,8,24,5,30,23.1,1.6500000000000001,0.124,0.58,0,0,0,0,8,16.900000000000002,0,0,0,0,0.28700000000000003,67.98,130.1,0.96,0.22,886,3.9000000000000004,188,4,0.0000,0.0000 +2012,8,24,6,30,22.700000000000003,1.6400000000000001,0.136,0.58,0,0,0,0,3,17,0,0,0,0,0.28700000000000003,70.37,133.61,0.96,0.22,886,3.9000000000000004,193,3.9000000000000004,0.0000,0.0000 +2012,8,24,7,30,22.3,1.6400000000000001,0.146,0.58,0,0,0,0,3,17.1,0,0,0,0,0.28600000000000003,72.55,132.91,0.96,0.22,886,4,198,3.7,0.0000,0.0000 +2012,8,24,8,30,21.900000000000002,1.6600000000000001,0.152,0.58,0,0,0,0,4,17.1,0,0,0,0,0.28700000000000003,74.42,128.18,0.96,0.22,886,4,205,3.6,0.0000,0.0000 +2012,8,24,9,30,21.6,1.67,0.167,0.58,0,0,0,0,0,17.1,0,0,0,0,0.28700000000000003,75.49,120.38,0.96,0.22,885,4.1000000000000005,214,3.6,0.0000,0.0000 +2012,8,24,10,30,21.400000000000002,1.6300000000000001,0.198,0.58,0,0,0,0,4,17,0,0,0,0,0.28700000000000003,75.93,110.58,0.97,0.22,885,4.1000000000000005,218,3.5,0.0000,0.0000 +2012,8,24,11,30,21.3,1.61,0.215,0.58,0,0,0,0,8,16.900000000000002,0,0,0,0,0.28600000000000003,75.83,99.54,0.97,0.22,885,4,219,3.6,0.0000,0.0000 +2012,8,24,12,30,21.900000000000002,1.6300000000000001,0.193,0.58,16,78,20,7,8,16.6,10,0,7,10,0.28500000000000003,71.98,87.56,0.96,0.22,885,3.9000000000000004,219,3.9000000000000004,0.0000,0.0000 +2012,8,24,13,30,23.700000000000003,1.6600000000000001,0.153,0.58,69,477,188,0,4,16.2,133,46,0,144,0.28500000000000003,62.730000000000004,75.60000000000001,0.96,0.22,885,3.7,221,4.9,7.9873,6.1331 +2012,8,24,14,30,26.3,1.68,0.123,0.58,90,692,399,0,4,15.5,182,7,0,185,0.28400000000000003,51.44,63.39,0.9500000000000001,0.22,885,3.6,227,5.5,9.6132,7.4928 +2012,8,24,15,30,28.900000000000002,1.69,0.105,0.58,99,804,601,0,0,14.8,99,804,0,601,0.28500000000000003,42.160000000000004,51.370000000000005,0.9500000000000001,0.22,885,3.4000000000000004,231,5.1000000000000005,16.9064,13.2530 +2012,8,24,16,30,31.1,1.69,0.095,0.58,105,865,767,0,0,14.100000000000001,105,865,0,767,0.28500000000000003,35.56,40.04,0.9500000000000001,0.22,884,3.3000000000000003,230,4.4,40.2382,31.6230 +2012,8,24,17,30,32.7,1.7,0.089,0.58,108,901,885,0,0,13.5,108,901,0,885,0.28500000000000003,31.2,30.43,0.9500000000000001,0.22,884,3.1,224,3.9000000000000004,31.1590,24.5171 +2012,8,24,18,30,34,1.67,0.077,0.58,105,924,944,0,0,13,105,924,0,944,0.28500000000000003,28.13,24.85,0.9500000000000001,0.22,883,2.9000000000000004,218,3.7,18.7496,14.7597 +2012,8,24,19,30,34.7,1.6600000000000001,0.077,0.58,105,926,937,0,0,12.600000000000001,105,926,0,937,0.28500000000000003,26.400000000000002,26.09,0.9500000000000001,0.22,882,2.7,213,3.7,36.7136,28.8985 +2012,8,24,20,30,34.9,1.6500000000000001,0.08,0.58,103,910,863,0,0,12.200000000000001,103,910,0,863,0.28500000000000003,25.38,33.4,0.9500000000000001,0.22,881,2.6,211,3.6,27.1523,21.3581 +2012,8,24,21,30,34.7,1.6600000000000001,0.075,0.58,94,884,732,0,0,11.600000000000001,94,884,0,732,0.28500000000000003,24.6,43.77,0.9400000000000001,0.22,881,2.5,210,3.7,39.6338,31.1281 +2012,8,24,22,30,33.800000000000004,1.67,0.076,0.58,84,825,552,0,0,10.8,84,825,0,552,0.28500000000000003,24.53,55.42,0.9400000000000001,0.22,881,2.5,206,3.6,12.4399,9.7382 +2012,8,24,23,30,31.8,1.68,0.077,0.58,69,718,343,0,0,10.4,69,718,0,343,0.28500000000000003,26.79,67.56,0.9400000000000001,0.22,881,2.5,197,2.9000000000000004,16.7629,13.0202 +2012,8,25,0,30,28.700000000000003,1.68,0.081,0.58,45,487,131,0,0,12.600000000000001,45,487,0,131,0.28500000000000003,36.94,79.77,0.9400000000000001,0.22,881,2.6,185,2.3000000000000003,4.6710,3.5615 +2012,8,25,1,30,26.200000000000003,1.68,0.083,0.58,0,0,0,0,1,13.9,0,0,0,0,0.28600000000000003,46.56,91.91,0.9400000000000001,0.22,881,2.7,178,2.6,0.0000,0.0000 +2012,8,25,2,30,25.200000000000003,1.68,0.085,0.58,0,0,0,0,7,14.3,0,0,0,0,0.28700000000000003,50.910000000000004,103.49000000000001,0.9400000000000001,0.22,882,2.8000000000000003,174,3.2,0.0000,0.0000 +2012,8,25,3,30,24.3,1.6600000000000001,0.09,0.58,0,0,0,0,4,15,0,0,0,0,0.28800000000000003,56.31,114.22,0.9400000000000001,0.22,883,3,171,3.6,0.0000,0.0000 +2012,8,25,4,30,23.5,1.6400000000000001,0.093,0.58,0,0,0,0,4,15.9,0,0,0,0,0.28700000000000003,62.53,123.5,0.9400000000000001,0.22,883,3.1,171,3.9000000000000004,0.0000,0.0000 +2012,8,25,5,30,22.8,1.6400000000000001,0.089,0.58,0,0,0,0,4,16.6,0,0,0,0,0.28700000000000003,68.2,130.45,0.93,0.22,883,3.2,175,3.8000000000000003,0.0000,0.0000 +2012,8,25,6,30,22.1,1.6500000000000001,0.083,0.58,0,0,0,0,4,16.900000000000002,0,0,0,0,0.28600000000000003,72.53,133.96,0.93,0.22,882,3.2,180,3.4000000000000004,0.0000,0.0000 +2012,8,25,7,30,21.200000000000003,1.6600000000000001,0.078,0.58,0,0,0,0,3,17,0,0,0,0,0.28500000000000003,77.18,133.23,0.93,0.22,882,3.2,185,2.7,0.0000,0.0000 +2012,8,25,8,30,20.400000000000002,1.6600000000000001,0.076,0.58,0,0,0,0,4,17.1,0,0,0,0,0.28400000000000003,81.36,128.45,0.93,0.22,882,3.2,191,1.9000000000000001,0.0000,0.0000 +2012,8,25,9,30,19.6,1.6600000000000001,0.074,0.58,0,0,0,0,0,17.1,0,0,0,0,0.28400000000000003,85.73,120.61,0.93,0.22,882,3.2,201,1.4000000000000001,0.0000,0.0000 +2012,8,25,10,30,19,1.68,0.07100000000000001,0.58,0,0,0,0,0,17.1,0,0,0,0,0.28400000000000003,88.63,110.77,0.93,0.22,882,3.2,215,1.1,0.0000,0.0000 +2012,8,25,11,30,18.6,1.71,0.066,0.58,0,0,0,0,0,17,0,0,0,0,0.28400000000000003,90.18,99.71000000000001,0.93,0.22,883,3.2,230,1.1,0.0000,0.0000 +2012,8,25,12,30,19.5,1.75,0.062,0.58,15,190,22,0,0,16.900000000000002,15,190,0,22,0.28400000000000003,84.81,87.7,0.93,0.22,883,3.1,244,1.5,0.0000,0.0000 +2012,8,25,13,30,22.200000000000003,1.78,0.059000000000000004,0.58,50,606,199,0,0,16.8,50,606,0,199,0.28400000000000003,71.5,75.74,0.93,0.22,883,3.1,267,1.8,7.0056,5.3780 +2012,8,25,14,30,25.6,1.82,0.057,0.58,67,774,412,0,0,15.5,67,774,0,412,0.28500000000000003,53.68,63.53,0.93,0.22,884,3,304,2,9.9817,7.7792 +2012,8,25,15,30,28.5,1.84,0.056,0.58,78,857,612,0,0,13.9,78,857,0,612,0.28500000000000003,40.68,51.52,0.93,0.22,884,3,331,2.3000000000000003,34.5402,27.0749 +2012,8,25,16,30,30.700000000000003,1.86,0.058,0.58,87,903,777,0,0,13,87,903,0,777,0.28500000000000003,33.86,40.22,0.93,0.22,884,2.9000000000000004,346,2.5,45.6346,35.8630 +2012,8,25,17,30,32.300000000000004,1.8800000000000001,0.061,0.58,93,928,892,0,0,12.700000000000001,93,928,0,892,0.28400000000000003,30.400000000000002,30.69,0.93,0.22,884,2.8000000000000003,179,2.7,53.6298,42.1969 +2012,8,25,18,30,33.300000000000004,1.95,0.06,0.58,95,940,945,0,0,12.4,95,940,0,945,0.28400000000000003,28.14,25.18,0.93,0.22,884,2.8000000000000003,12,3,57.6323,45.3671 +2012,8,25,19,30,33.9,1.97,0.061,0.58,95,939,936,0,0,11.9,95,939,0,936,0.28300000000000003,26.41,26.44,0.93,0.22,884,2.7,21,3.3000000000000003,57.1202,44.9600 +2012,8,25,20,30,33.9,1.98,0.061,0.58,92,926,862,0,0,11.4,92,926,0,862,0.28300000000000003,25.53,33.71,0.93,0.22,884,2.6,26,3.5,52.0441,40.9366 +2012,8,25,21,30,33.5,1.99,0.059000000000000004,0.58,85,900,732,0,0,11,85,900,0,732,0.28200000000000003,25.310000000000002,44.050000000000004,0.92,0.22,884,2.4000000000000004,30,3.7,43.1392,33.8794 +2012,8,25,22,30,32.6,1.99,0.058,0.58,76,848,554,0,0,10.600000000000001,76,848,0,554,0.281,26.01,55.68,0.92,0.22,884,2.3000000000000003,34,3.9000000000000004,31.1762,24.4029 +2012,8,25,23,30,30.900000000000002,1.99,0.058,0.58,62,746,344,0,0,10.5,62,746,0,344,0.281,28.45,67.81,0.92,0.22,885,2.3000000000000003,38,3.5,17.9324,13.9252 +2012,8,26,0,30,27.900000000000002,1.98,0.059000000000000004,0.58,40,527,131,0,0,11.4,40,527,0,131,0.281,35.82,80.02,0.92,0.22,885,2.3000000000000003,43,2.6,6.2444,4.7598 +2012,8,26,1,30,25.6,1.98,0.06,0.58,0,0,0,0,0,12.700000000000001,0,0,0,0,0.281,44.79,92.17,0.92,0.22,886,2.2,49,2.4000000000000004,0.0000,0.0000 +2012,8,26,2,30,24.6,1.96,0.061,0.58,0,0,0,0,0,13.100000000000001,0,0,0,0,0.28200000000000003,48.64,103.77,0.92,0.22,887,2.3000000000000003,57,2.9000000000000004,0.0000,0.0000 +2012,8,26,3,30,23.6,1.9100000000000001,0.062,0.58,0,0,0,0,0,13.9,0,0,0,0,0.28200000000000003,54.54,114.52,0.93,0.22,887,2.3000000000000003,63,2.7,0.0000,0.0000 +2012,8,26,4,30,22.400000000000002,1.85,0.063,0.58,0,0,0,0,0,15,0,0,0,0,0.28200000000000003,62.77,123.82000000000001,0.93,0.22,887,2.4000000000000004,65,2.2,0.0000,0.0000 +2012,8,26,5,30,21.5,1.78,0.064,0.58,0,0,0,0,0,15.9,0,0,0,0,0.28200000000000003,70.34,130.8,0.93,0.22,887,2.4000000000000004,62,1.9000000000000001,0.0000,0.0000 +2012,8,26,6,30,20.6,1.71,0.066,0.58,0,0,0,0,0,16.6,0,0,0,0,0.28300000000000003,77.75,134.31,0.93,0.22,888,2.4000000000000004,55,1.7000000000000002,0.0000,0.0000 +2012,8,26,7,30,19.900000000000002,1.67,0.068,0.58,0,0,0,0,0,17,0,0,0,0,0.28300000000000003,83.28,133.56,0.9400000000000001,0.22,888,2.4000000000000004,42,1.7000000000000002,0.0000,0.0000 +2012,8,26,8,30,19.200000000000003,1.6400000000000001,0.07,0.58,0,0,0,0,0,17.1,0,0,0,0,0.28300000000000003,87.77,128.74,0.9400000000000001,0.22,888,2.4000000000000004,29,2,0.0000,0.0000 +2012,8,26,9,30,18.6,1.6300000000000001,0.073,0.58,0,0,0,0,0,17.1,0,0,0,0,0.28400000000000003,90.87,120.84,0.9400000000000001,0.22,888,2.4000000000000004,23,2.1,0.0000,0.0000 +2012,8,26,10,30,18.1,1.6400000000000001,0.075,0.58,0,0,0,0,0,17,0,0,0,0,0.28500000000000003,93.17,110.96000000000001,0.9400000000000001,0.22,889,2.4000000000000004,22,2.2,0.0000,0.0000 +2012,8,26,11,30,17.8,1.6400000000000001,0.08,0.58,0,0,0,0,0,16.900000000000002,0,0,0,0,0.28500000000000003,94.61,99.87,0.9500000000000001,0.22,890,2.4000000000000004,22,2.3000000000000003,0.0000,0.0000 +2012,8,26,12,30,18.8,1.6500000000000001,0.091,0.58,16,152,21,0,0,17,16,152,0,21,0.28500000000000003,89.09,87.83,0.9500000000000001,0.22,891,2.3000000000000003,27,2.5,0.0000,0.0000 +2012,8,26,13,30,21.5,1.68,0.095,0.58,59,567,197,0,0,17.400000000000002,59,567,0,197,0.28600000000000003,77.5,75.87,0.9500000000000001,0.22,891,2.3000000000000003,40,2.8000000000000003,9.6702,7.4216 +2012,8,26,14,30,24.700000000000003,1.74,0.088,0.58,79,754,413,0,0,17.6,79,754,0,413,0.28600000000000003,64.75,63.67,0.9400000000000001,0.22,892,2.2,52,3,22.2080,17.3059 +2012,8,26,15,30,27.3,1.78,0.082,0.58,91,851,618,7,3,17.1,322,292,7,503,0.28500000000000003,53.57,51.68,0.9400000000000001,0.22,892,2.1,58,2.9000000000000004,35.1517,27.5530 +2012,8,26,16,30,29.5,1.81,0.076,0.58,96,905,785,0,0,16,96,905,0,785,0.28400000000000003,44.18,40.410000000000004,0.93,0.22,892,2.1,65,3,46.2100,36.3141 +2012,8,26,17,30,31.200000000000003,1.83,0.07100000000000001,0.58,99,938,903,0,0,14.8,99,938,0,903,0.28300000000000003,36.97,30.94,0.93,0.22,891,2,73,3.2,54.0325,42.5127 +2012,8,26,18,30,32.5,1.56,0.08,0.58,107,943,958,0,0,13.600000000000001,107,943,0,958,0.28300000000000003,31.84,25.52,0.93,0.22,891,1.9000000000000001,81,3.4000000000000004,57.6711,45.3966 +2012,8,26,19,30,33.300000000000004,1.58,0.078,0.58,105,942,947,0,0,12.600000000000001,105,942,0,947,0.28200000000000003,28.560000000000002,26.8,0.93,0.22,890,1.9000000000000001,87,3.6,57.0345,44.8913 +2012,8,26,20,30,33.5,1.6,0.077,0.58,101,927,870,0,0,11.9,101,927,0,870,0.28200000000000003,26.95,34.02,0.93,0.22,890,1.9000000000000001,93,3.8000000000000003,51.9555,40.8655 +2012,8,26,21,30,33.2,1.58,0.079,0.58,96,892,734,0,0,11.4,96,892,0,734,0.28200000000000003,26.53,44.33,0.93,0.22,890,1.9000000000000001,99,4,43.1055,33.8510 +2012,8,26,22,30,32.300000000000004,1.59,0.077,0.58,84,835,552,0,0,11.100000000000001,84,835,0,552,0.28200000000000003,27.400000000000002,55.94,0.93,0.22,890,1.9000000000000001,106,4.1000000000000005,31.2505,24.4585 +2012,8,26,23,30,30.700000000000003,1.59,0.076,0.58,69,725,339,0,0,11.3,69,725,0,339,0.28200000000000003,30.330000000000002,68.07000000000001,0.93,0.22,890,2,114,3.9000000000000004,17.9475,13.9333 +2012,8,27,0,30,28,1.6,0.075,0.58,43,495,127,0,0,12.4,43,495,0,127,0.28300000000000003,38.14,80.27,0.93,0.22,890,2,125,3.2,0.0000,0.0000 +2012,8,27,1,30,25.8,1.61,0.074,0.58,0,0,0,0,0,14.100000000000001,0,0,0,0,0.28300000000000003,48.480000000000004,92.43,0.93,0.22,891,2,136,3,0.0000,0.0000 +2012,8,27,2,30,24.700000000000003,1.61,0.07100000000000001,0.58,0,0,0,0,0,15.200000000000001,0,0,0,0,0.28300000000000003,55.61,104.05,0.92,0.22,892,2,145,3.2,0.0000,0.0000 +2012,8,27,3,30,23.5,1.6300000000000001,0.068,0.58,0,0,0,0,0,16.1,0,0,0,0,0.28300000000000003,63.24,114.82000000000001,0.92,0.22,893,1.9000000000000001,154,2.9000000000000004,0.0000,0.0000 +2012,8,27,4,30,22.3,1.6500000000000001,0.066,0.58,0,0,0,0,0,16.6,0,0,0,0,0.28200000000000003,70.3,124.15,0.92,0.22,893,1.8,165,2.3000000000000003,0.0000,0.0000 +2012,8,27,5,30,21.200000000000003,1.67,0.065,0.58,0,0,0,0,0,16.900000000000002,0,0,0,0,0.281,76.48,131.15,0.92,0.22,893,1.7000000000000002,178,1.8,0.0000,0.0000 +2012,8,27,6,30,20.1,1.69,0.065,0.58,0,0,0,0,0,17.1,0,0,0,0,0.281,82.68,134.67000000000002,0.92,0.22,893,1.6,193,1.4000000000000001,0.0000,0.0000 +2012,8,27,7,30,19.200000000000003,1.72,0.066,0.58,0,0,0,0,0,17.2,0,0,0,0,0.28,88.05,133.89000000000001,0.92,0.22,893,1.6,207,1.2000000000000002,0.0000,0.0000 +2012,8,27,8,30,18.5,1.74,0.067,0.58,0,0,0,0,0,17.3,0,0,0,0,0.279,92.54,129.02,0.92,0.22,894,1.6,222,1.1,0.0000,0.0000 +2012,8,27,9,30,17.900000000000002,1.76,0.069,0.58,0,0,0,0,0,17.3,0,0,0,0,0.279,96.31,121.08,0.92,0.22,894,1.6,235,1,0.0000,0.0000 +2012,8,27,10,30,17.400000000000002,1.77,0.07,0.58,0,0,0,0,0,17.3,0,0,0,0,0.279,99.36,111.15,0.92,0.22,894,1.6,248,1,0.0000,0.0000 +2012,8,27,11,30,17.2,1.78,0.07100000000000001,0.58,0,0,0,0,0,17.2,0,0,0,0,0.279,100,100.03,0.92,0.22,894,1.6,260,1.1,0.0000,0.0000 +2012,8,27,12,30,18.7,1.78,0.073,0.58,14,183,21,0,0,17.2,14,183,0,21,0.279,91.09,87.97,0.92,0.22,895,1.6,271,1.7000000000000002,0.0000,0.0000 +2012,8,27,13,30,22.3,1.78,0.074,0.58,53,612,201,0,0,17.1,53,612,0,201,0.279,72.62,76.01,0.92,0.22,895,1.7000000000000002,264,1.4000000000000001,9.5629,7.3375 +2012,8,27,14,30,26.3,1.8,0.073,0.58,73,784,419,0,0,15.9,73,784,0,419,0.279,52.65,63.81,0.92,0.22,895,1.7000000000000002,173,0.9,22.2403,17.3293 +2012,8,27,15,30,29.3,1.81,0.07200000000000001,0.58,86,874,626,0,0,12.9,86,874,0,626,0.279,36.410000000000004,51.83,0.92,0.22,895,1.6,89,1.4000000000000001,28.8727,22.6302 +2012,8,27,16,30,31.1,1.82,0.07100000000000001,0.58,94,922,794,0,0,11.100000000000001,94,922,0,794,0.28,29.17,40.61,0.92,0.22,895,1.6,86,2,46.6647,36.6703 +2012,8,27,17,30,32.5,1.82,0.07,0.58,99,949,910,0,0,9.8,99,949,0,910,0.28,24.76,31.2,0.92,0.22,894,1.6,92,2.5,54.6776,43.0193 +2012,8,27,18,30,33.5,1.74,0.076,0.58,104,954,963,0,0,8.8,104,954,0,963,0.281,21.93,25.85,0.92,0.22,894,1.6,97,2.9000000000000004,58.4409,46.0014 +2012,8,27,19,30,34.1,1.76,0.075,0.58,103,950,949,0,0,8.200000000000001,103,950,0,949,0.28200000000000003,20.28,27.150000000000002,0.92,0.22,893,1.7000000000000002,101,3.2,57.6785,45.3969 +2012,8,27,20,30,34.2,1.77,0.074,0.58,99,935,871,0,0,7.800000000000001,99,935,0,871,0.28200000000000003,19.67,34.35,0.92,0.22,893,1.7000000000000002,102,3.4000000000000004,52.4087,41.2205 +2012,8,27,21,30,33.800000000000004,1.81,0.069,0.58,90,904,734,0,0,7.800000000000001,90,904,0,734,0.28200000000000003,20.06,44.61,0.92,0.22,892,1.8,101,3.5,43.1891,33.9148 +2012,8,27,22,30,32.9,1.81,0.07,0.58,81,842,549,0,0,8,81,842,0,549,0.28200000000000003,21.490000000000002,56.21,0.92,0.22,892,1.9000000000000001,101,3.6,31.0988,24.3371 +2012,8,27,23,30,31.1,1.8,0.073,0.58,67,728,335,0,0,8.5,67,728,0,335,0.281,24.560000000000002,68.32000000000001,0.92,0.22,892,2,103,3.1,17.6482,13.6972 +2012,8,28,0,30,27.900000000000002,1.8,0.077,0.58,42,488,122,0,0,10,42,488,0,122,0.28200000000000003,32.730000000000004,80.53,0.92,0.22,892,2,110,2.2,0.0000,0.0000 +2012,8,28,1,30,25.400000000000002,1.81,0.084,0.58,0,0,0,0,0,11.8,0,0,0,0,0.28200000000000003,42.57,92.7,0.92,0.22,893,2.1,118,2,0.0000,0.0000 +2012,8,28,2,30,24.400000000000002,1.83,0.091,0.58,0,0,0,0,0,12,0,0,0,0,0.28200000000000003,45.96,104.33,0.91,0.22,893,2.1,124,2.3000000000000003,0.0000,0.0000 +2012,8,28,3,30,23.400000000000002,1.84,0.099,0.58,0,0,0,0,0,12.5,0,0,0,0,0.28300000000000003,50.42,115.13,0.91,0.22,894,2,129,2.2,0.0000,0.0000 +2012,8,28,4,30,22.3,1.85,0.106,0.58,0,0,0,0,0,12.9,0,0,0,0,0.28300000000000003,55.38,124.49000000000001,0.91,0.22,894,2,132,1.8,0.0000,0.0000 +2012,8,28,5,30,21.3,1.86,0.112,0.58,0,0,0,0,0,13.100000000000001,0,0,0,0,0.28300000000000003,59.65,131.5,0.91,0.22,894,2,134,1.5,0.0000,0.0000 +2012,8,28,6,30,20.3,1.86,0.117,0.58,0,0,0,0,0,13.200000000000001,0,0,0,0,0.28300000000000003,63.71,135.02,0.91,0.22,894,2,135,1.3,0.0000,0.0000 +2012,8,28,7,30,19.6,1.86,0.121,0.58,0,0,0,0,0,13.3,0,0,0,0,0.28300000000000003,66.82000000000001,134.22,0.91,0.22,894,2,136,1,0.0000,0.0000 +2012,8,28,8,30,19,1.85,0.123,0.58,0,0,0,0,0,13.3,0,0,0,0,0.28200000000000003,69.63,129.3,0.91,0.22,894,1.9000000000000001,134,0.9,0.0000,0.0000 +2012,8,28,9,30,18.7,1.85,0.124,0.58,0,0,0,0,0,13.4,0,0,0,0,0.28200000000000003,71.17,121.31,0.91,0.22,894,1.9000000000000001,132,0.8,0.0000,0.0000 +2012,8,28,10,30,18.5,1.84,0.123,0.58,0,0,0,0,0,13.4,0,0,0,0,0.28200000000000003,72.29,111.35000000000001,0.91,0.22,894,1.9000000000000001,127,0.7000000000000001,0.0000,0.0000 +2012,8,28,11,30,18.3,1.84,0.123,0.58,0,0,0,0,0,13.5,0,0,0,0,0.281,73.43,100.2,0.91,0.22,894,1.8,116,0.6000000000000001,0.0000,0.0000 +2012,8,28,12,30,19.400000000000002,1.83,0.123,0.58,13,123,17,0,0,13.600000000000001,13,123,0,17,0.281,69.01,88.10000000000001,0.91,0.22,895,1.8,95,0.6000000000000001,0.0000,0.0000 +2012,8,28,13,30,22.3,1.84,0.123,0.58,62,545,192,0,0,13.700000000000001,62,545,0,192,0.28,58.26,76.14,0.91,0.22,895,1.7000000000000002,87,1.3,9.7461,7.4761 +2012,8,28,14,30,25.3,1.85,0.123,0.58,88,732,409,0,0,13,88,732,0,409,0.28,46.49,63.95,0.91,0.22,895,1.6,90,2.1,22.5413,17.5620 +2012,8,28,15,30,27.8,1.8800000000000001,0.126,0.58,106,827,615,0,0,11.5,106,827,0,615,0.28,36.37,51.99,0.91,0.22,895,1.5,84,2.5,35.9116,28.1459 +2012,8,28,16,30,30,1.92,0.132,0.58,119,879,784,0,0,9,119,879,0,784,0.279,27.09,40.800000000000004,0.9,0.22,895,1.4000000000000001,81,3,47.1771,37.0717 +2012,8,28,17,30,31.6,1.96,0.14,0.58,129,906,902,0,0,6.7,129,906,0,902,0.279,21.14,31.46,0.9,0.22,894,1.3,81,3.4000000000000004,55.0791,43.3340 +2012,8,28,18,30,32.7,1.98,0.13,0.58,128,929,961,0,0,5.1000000000000005,128,929,0,961,0.279,17.73,26.19,0.9,0.22,893,1.2000000000000002,81,3.7,58.7225,46.2220 +2012,8,28,19,30,33.300000000000004,1.99,0.126,0.58,126,929,949,0,0,3.9000000000000004,126,929,0,949,0.279,15.790000000000001,27.51,0.9,0.22,893,1.2000000000000002,82,4,57.7742,45.4710 +2012,8,28,20,30,33.300000000000004,2.0100000000000002,0.125,0.58,121,916,874,0,0,3,121,916,0,874,0.279,14.82,34.67,0.9,0.22,892,1.1,83,4.2,52.4376,41.2417 +2012,8,28,21,30,32.800000000000004,2.02,0.11900000000000001,0.58,110,884,736,0,0,2.3000000000000003,110,884,0,736,0.279,14.5,44.9,0.9,0.22,891,1.1,85,4.3,43.1545,33.8857 +2012,8,28,22,30,31.700000000000003,2.0300000000000002,0.12,0.58,98,822,552,0,0,1.8,98,822,0,552,0.279,14.85,56.47,0.9,0.22,891,1,87,4.3,30.8891,24.1703 +2012,8,28,23,30,29.5,2.02,0.12,0.58,78,704,335,0,0,1.5,78,704,0,335,0.279,16.57,68.58,0.89,0.22,891,1,92,3.4000000000000004,17.4032,13.5034 +2012,8,29,0,30,25.700000000000003,2.0100000000000002,0.121,0.58,46,454,118,0,0,3.6,46,454,0,118,0.279,24.05,80.79,0.89,0.22,891,1,100,2.2,0.0000,0.0000 +2012,8,29,1,30,22.700000000000003,2,0.11900000000000001,0.58,0,0,0,0,0,5.7,0,0,0,0,0.28,33.230000000000004,92.97,0.89,0.22,892,0.9,108,1.8,0.0000,0.0000 +2012,8,29,2,30,21.400000000000002,1.98,0.117,0.58,0,0,0,0,0,5.9,0,0,0,0,0.28,36.46,104.62,0.89,0.22,892,0.9,114,1.8,0.0000,0.0000 +2012,8,29,3,30,20.3,1.95,0.115,0.58,0,0,0,0,0,6.4,0,0,0,0,0.28,40.53,115.44,0.89,0.22,892,0.9,118,1.7000000000000002,0.0000,0.0000 +2012,8,29,4,30,19.3,1.92,0.114,0.58,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.28,44.96,124.82000000000001,0.89,0.22,892,0.9,121,1.5,0.0000,0.0000 +2012,8,29,5,30,18.400000000000002,1.9100000000000001,0.116,0.58,0,0,0,0,0,7.5,0,0,0,0,0.28,49.18,131.86,0.89,0.22,892,0.9,125,1.3,0.0000,0.0000 +2012,8,29,6,30,17.7,1.8900000000000001,0.12,0.58,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28,52.43,135.39000000000001,0.89,0.22,892,0.9,127,1.2000000000000002,0.0000,0.0000 +2012,8,29,7,30,17.1,1.8900000000000001,0.125,0.58,0,0,0,0,0,7.9,0,0,0,0,0.279,54.76,134.55,0.89,0.22,892,0.9,127,1.1,0.0000,0.0000 +2012,8,29,8,30,16.7,1.8800000000000001,0.131,0.58,0,0,0,0,0,7.9,0,0,0,0,0.279,56.050000000000004,129.58,0.89,0.22,892,0.9,126,1.1,0.0000,0.0000 +2012,8,29,9,30,16.5,1.8800000000000001,0.138,0.58,0,0,0,0,0,7.9,0,0,0,0,0.28,56.72,121.54,0.9,0.22,892,0.9,127,1,0.0000,0.0000 +2012,8,29,10,30,16.400000000000002,1.8800000000000001,0.145,0.58,0,0,0,0,0,7.9,0,0,0,0,0.28,57.24,111.54,0.9,0.22,892,0.9,130,0.9,0.0000,0.0000 +2012,8,29,11,30,16.3,1.8800000000000001,0.153,0.58,0,0,0,0,0,7.9,0,0,0,0,0.28,57.63,100.36,0.9,0.22,892,0.9,140,0.7000000000000001,0.0000,0.0000 +2012,8,29,12,30,17.6,1.8900000000000001,0.162,0.58,12,105,16,0,0,7.9,12,105,0,16,0.28,53.1,88.24,0.9,0.22,892,0.9,182,0.5,0.0000,0.0000 +2012,8,29,13,30,20.400000000000002,1.8900000000000001,0.17,0.58,69,516,191,0,0,8.6,69,516,0,191,0.281,46.58,76.28,0.9,0.22,892,0.9,189,0.5,9.3002,7.1323 +2012,8,29,14,30,23.8,1.8900000000000001,0.17300000000000001,0.58,102,702,408,0,0,8.1,102,702,0,408,0.28,36.67,64.09,0.9,0.22,892,1,131,0.9,21.9817,17.1242 +2012,8,29,15,30,26.8,1.9000000000000001,0.17200000000000001,0.58,122,805,616,0,0,5.800000000000001,122,805,0,616,0.28,26.28,52.15,0.9,0.22,892,1,85,1.3,35.2580,27.6322 +2012,8,29,16,30,28.900000000000002,1.8900000000000001,0.162,0.58,131,869,787,0,0,3.7,131,869,0,787,0.279,20.02,41,0.9,0.22,892,1,67,1.6,46.5615,36.5868 +2012,8,29,17,30,30.700000000000003,1.8800000000000001,0.152,0.58,135,907,907,0,0,2.4000000000000004,135,907,0,907,0.278,16.48,31.720000000000002,0.9,0.22,891,1,65,2.1,54.5724,42.9342 +2012,8,29,18,30,32.1,1.86,0.13,0.58,129,935,965,0,0,1.6,129,935,0,965,0.278,14.4,26.53,0.9,0.22,890,1,68,2.5,58.5761,46.1055 +2012,8,29,19,30,33,1.85,0.128,0.58,127,934,952,0,0,1.2000000000000002,127,934,0,952,0.277,13.27,27.87,0.9,0.22,889,1,74,3,57.7470,45.4482 +2012,8,29,20,30,33.300000000000004,1.83,0.125,0.58,121,918,873,0,0,1,121,918,0,873,0.276,12.85,35,0.9,0.22,889,1,81,3.3000000000000003,52.5874,41.3579 +2012,8,29,21,30,33,1.79,0.1,0.58,103,902,738,0,0,0.8,103,902,0,738,0.276,12.91,45.2,0.9,0.22,888,1,90,3.6,43.2358,33.9474 +2012,8,29,22,30,32,1.77,0.094,0.58,89,844,552,0,0,0.9,89,844,0,552,0.276,13.75,56.75,0.9,0.22,888,1,98,3.7,31.0181,24.2685 +2012,8,29,23,30,29.700000000000003,1.75,0.088,0.58,70,731,334,0,0,1.4000000000000001,70,731,0,334,0.276,16.240000000000002,68.85000000000001,0.9,0.22,888,1.1,105,2.9000000000000004,17.3647,13.4697 +2012,8,30,0,30,25.8,1.74,0.083,0.58,41,489,117,0,0,4.4,41,489,0,117,0.276,25.22,81.05,0.9,0.22,888,1.1,114,1.9000000000000001,0.0000,0.0000 +2012,8,30,1,30,22.8,1.75,0.079,0.58,0,0,0,0,0,6.300000000000001,0,0,0,0,0.276,34.38,93.24,0.9,0.22,889,1.2000000000000002,123,1.6,0.0000,0.0000 +2012,8,30,2,30,21.6,1.77,0.076,0.58,0,0,0,0,0,6.5,0,0,0,0,0.276,37.51,104.91,0.9,0.22,889,1.2000000000000002,129,1.5,0.0000,0.0000 +2012,8,30,3,30,20.5,1.77,0.074,0.58,0,0,0,0,0,6.9,0,0,0,0,0.277,41.25,115.75,0.9,0.22,889,1.2000000000000002,131,1.4000000000000001,0.0000,0.0000 +2012,8,30,4,30,19.5,1.77,0.073,0.58,0,0,0,0,0,7.2,0,0,0,0,0.277,44.800000000000004,125.16,0.9,0.22,889,1.2000000000000002,132,1.2000000000000002,0.0000,0.0000 +2012,8,30,5,30,18.8,1.76,0.073,0.58,0,0,0,0,0,7.300000000000001,0,0,0,0,0.278,47.14,132.22,0.9,0.22,889,1.2000000000000002,133,1.1,0.0000,0.0000 +2012,8,30,6,30,18.2,1.76,0.075,0.58,0,0,0,0,0,7.2,0,0,0,0,0.278,48.730000000000004,135.75,0.9,0.22,889,1.2000000000000002,134,1.1,0.0000,0.0000 +2012,8,30,7,30,17.8,1.76,0.077,0.58,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.279,49.43,134.89000000000001,0.9,0.22,889,1.2000000000000002,137,1,0.0000,0.0000 +2012,8,30,8,30,17.7,1.76,0.078,0.58,0,0,0,0,0,6.9,0,0,0,0,0.279,49.050000000000004,129.87,0.9,0.22,889,1.2000000000000002,142,1,0.0000,0.0000 +2012,8,30,9,30,17.6,1.76,0.079,0.58,0,0,0,0,0,6.7,0,0,0,0,0.279,48.72,121.78,0.9,0.22,889,1.2000000000000002,151,0.8,0.0000,0.0000 +2012,8,30,10,30,17.5,1.77,0.078,0.58,0,0,0,0,0,6.5,0,0,0,0,0.279,48.47,111.73,0.9,0.22,889,1.2000000000000002,173,0.6000000000000001,0.0000,0.0000 +2012,8,30,11,30,17.3,1.77,0.076,0.58,0,0,0,0,0,6.300000000000001,0,0,0,0,0.279,48.230000000000004,100.52,0.9,0.22,889,1.1,224,0.5,0.0000,0.0000 +2012,8,30,12,30,18.3,1.78,0.073,0.58,12,166,17,0,0,6.300000000000001,12,166,0,17,0.28,45.49,88.38,0.9,0.22,890,1.2000000000000002,275,0.7000000000000001,0.0000,0.0000 +2012,8,30,13,30,21,1.79,0.07100000000000001,0.58,51,625,198,0,0,7,51,625,0,198,0.28,40.45,76.42,0.9,0.22,890,1.2000000000000002,294,0.9,9.2417,7.0857 +2012,8,30,14,30,24.8,1.79,0.07100000000000001,0.58,72,797,418,0,0,6.4,72,797,0,418,0.279,30.77,64.23,0.9,0.22,890,1.3,187,0.9,21.9062,17.0635 +2012,8,30,15,30,28.3,1.8,0.074,0.58,86,877,623,0,0,4.7,86,877,0,623,0.278,22.18,52.31,0.91,0.22,890,1.4000000000000001,75,1.5,35.2925,27.6578 +2012,8,30,16,30,30.700000000000003,1.79,0.077,0.58,96,923,791,0,0,3.8000000000000003,96,923,0,791,0.276,18.150000000000002,41.2,0.91,0.22,890,1.4000000000000001,78,2.2,46.7169,36.7076 +2012,8,30,17,30,32.4,1.79,0.08,0.58,103,947,906,0,0,3.6,103,947,0,906,0.275,16.23,31.990000000000002,0.91,0.22,889,1.4000000000000001,83,2.9000000000000004,54.8520,43.1530 +2012,8,30,18,30,33.5,1.77,0.074,0.58,103,962,961,0,1,3.7,103,962,0,961,0.274,15.370000000000001,26.88,0.91,0.22,888,1.4000000000000001,85,3.3000000000000003,58.7949,46.2766 +2012,8,30,19,30,34,1.77,0.075,0.58,103,959,947,0,1,3.9000000000000004,103,959,0,947,0.273,15.200000000000001,28.240000000000002,0.91,0.22,888,1.4000000000000001,86,3.6,57.9017,45.5686 +2012,8,30,20,30,34,1.78,0.075,0.58,99,943,868,0,0,4.1000000000000005,99,943,0,868,0.273,15.38,35.33,0.91,0.22,887,1.4000000000000001,86,3.8000000000000003,52.4950,41.2835 +2012,8,30,21,30,33.6,1.79,0.079,0.58,94,906,729,0,0,4,94,906,0,729,0.273,15.65,45.49,0.91,0.22,886,1.4000000000000001,87,3.9000000000000004,43.3151,34.0075 +2012,8,30,22,30,32.6,1.8,0.077,0.58,83,846,543,0,8,3.8000000000000003,162,628,0,504,0.274,16.35,57.02,0.91,0.22,886,1.4000000000000001,89,3.8000000000000003,30.9748,24.2316 +2012,8,30,23,30,30.400000000000002,1.79,0.077,0.58,67,732,328,0,8,3.8000000000000003,152,369,0,284,0.274,18.48,69.11,0.91,0.22,886,1.4000000000000001,94,2.9000000000000004,17.2727,13.3942 +2012,8,31,0,30,26.900000000000002,1.79,0.076,0.58,40,483,113,0,8,5.9,46,2,0,46,0.275,26.27,81.32000000000001,0.91,0.22,887,1.4000000000000001,103,1.9000000000000001,0.0000,0.0000 +2012,8,31,1,30,24.400000000000002,1.79,0.075,0.58,0,0,0,0,0,7.2,0,0,0,0,0.277,33.18,93.52,0.91,0.22,887,1.4000000000000001,112,1.8,0.0000,0.0000 +2012,8,31,2,30,23.200000000000003,1.8,0.074,0.58,0,0,0,0,0,6.9,0,0,0,0,0.278,35.14,105.2,0.91,0.22,888,1.4000000000000001,118,2,0.0000,0.0000 +2012,8,31,3,30,22.1,1.81,0.073,0.58,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.279,37.99,116.06,0.91,0.22,889,1.4000000000000001,120,2,0.0000,0.0000 +2012,8,31,4,30,21,1.82,0.073,0.58,0,0,0,0,1,7.6000000000000005,0,0,0,0,0.279,41.87,125.5,0.91,0.22,889,1.4000000000000001,120,1.7000000000000002,0.0000,0.0000 +2012,8,31,5,30,20,1.82,0.073,0.58,0,0,0,0,0,8.1,0,0,0,0,0.279,46.1,132.58,0.91,0.22,889,1.4000000000000001,120,1.4000000000000001,0.0000,0.0000 +2012,8,31,6,30,19.200000000000003,1.82,0.073,0.58,0,0,0,0,0,8.5,0,0,0,0,0.279,49.78,136.11,0.91,0.22,889,1.4000000000000001,119,1.2000000000000002,0.0000,0.0000 +2012,8,31,7,30,18.7,1.82,0.073,0.58,0,0,0,0,0,8.6,0,0,0,0,0.28,51.910000000000004,135.22,0.91,0.22,889,1.4000000000000001,120,1,0.0000,0.0000 +2012,8,31,8,30,18.8,1.82,0.07100000000000001,0.58,0,0,0,0,0,8.5,0,0,0,0,0.28,51.32,130.15,0.91,0.22,889,1.4000000000000001,127,0.8,0.0000,0.0000 +2012,8,31,9,30,19,1.82,0.07,0.58,0,0,0,0,0,8.5,0,0,0,0,0.281,50.65,122.01,0.91,0.22,889,1.4000000000000001,175,0.6000000000000001,0.0000,0.0000 +2012,8,31,10,30,18.6,1.82,0.07,0.58,0,0,0,0,0,8.700000000000001,0,0,0,0,0.28200000000000003,52.36,111.92,0.91,0.22,889,1.3,238,0.7000000000000001,0.0000,0.0000 +2012,8,31,11,30,17.8,1.83,0.07,0.58,0,0,0,0,0,8.700000000000001,0,0,0,0,0.28200000000000003,55.31,100.69,0.91,0.22,890,1.3,266,1,0.0000,0.0000 +2012,8,31,12,30,19,1.84,0.07200000000000001,0.58,12,160,16,0,0,8.8,12,160,0,16,0.28300000000000003,51.44,88.51,0.91,0.22,890,1.3,275,1.4000000000000001,0.0000,0.0000 +2012,8,31,13,30,22.400000000000002,1.85,0.074,0.58,52,615,195,0,0,9.200000000000001,52,615,0,195,0.28300000000000003,43.04,76.56,0.91,0.22,891,1.3,282,1.9000000000000001,9.5703,7.3357 +2012,8,31,14,30,26.200000000000003,1.86,0.077,0.58,74,789,415,0,0,8.9,74,789,0,415,0.28400000000000003,33.55,64.37,0.91,0.22,891,1.3,314,1.6,22.4207,17.4624 +2012,8,31,15,30,29.200000000000003,1.87,0.078,0.58,88,873,619,0,0,7.4,88,873,0,619,0.28400000000000003,25.41,52.47,0.91,0.22,891,1.4000000000000001,186,1.2000000000000002,35.6703,27.9524 +2012,8,31,16,30,31,1.8800000000000001,0.078,0.58,96,922,788,0,0,6.4,96,922,0,788,0.28400000000000003,21.47,41.4,0.91,0.22,891,1.4000000000000001,39,1.4000000000000001,46.9312,36.8748 +2012,8,31,17,30,32.300000000000004,1.8800000000000001,0.078,0.58,102,948,904,0,0,5.7,102,948,0,904,0.28300000000000003,18.95,32.26,0.91,0.22,890,1.4000000000000001,58,1.5,54.7675,43.0854 +2012,8,31,18,30,33.300000000000004,1.82,0.088,0.58,109,951,955,0,0,5.1000000000000005,109,951,0,955,0.28200000000000003,17.17,27.22,0.91,0.22,890,1.4000000000000001,74,1.6,58.5252,46.0630 +2012,8,31,19,30,33.800000000000004,1.82,0.088,0.58,109,949,942,0,0,4.5,109,949,0,942,0.281,16.06,28.61,0.92,0.22,889,1.4000000000000001,91,1.5,57.5687,45.3051 +2012,8,31,20,30,34,1.82,0.088,0.58,105,932,862,0,0,4,105,932,0,862,0.28,15.33,35.660000000000004,0.92,0.22,889,1.4000000000000001,106,1.6,52.1618,41.0198 +2012,8,31,21,30,33.7,1.82,0.08700000000000001,0.58,98,897,723,0,0,3.6,98,897,0,723,0.279,15.120000000000001,45.79,0.92,0.22,888,1.4000000000000001,117,1.6,42.7500,33.5617 +2012,8,31,22,30,32.9,1.82,0.08600000000000001,0.58,86,835,537,0,0,3.2,86,835,0,537,0.279,15.4,57.300000000000004,0.92,0.22,888,1.4000000000000001,125,1.7000000000000002,28.2427,22.0916 +2012,8,31,23,30,30.8,1.82,0.085,0.58,69,719,322,0,0,3,69,719,0,322,0.278,17.1,69.38,0.92,0.22,888,1.4000000000000001,133,1.4000000000000001,14.6538,11.3600 +2012,9,1,0,30,27.3,1.81,0.079,0.59,40,470,108,0,0,8.200000000000001,40,470,0,108,0.278,29.92,81.58,0.92,0.22,889,1.4000000000000001,142,1,0.0000,0.0000 +2012,9,1,1,30,24.5,1.81,0.078,0.59,0,0,0,0,0,7.7,0,0,0,0,0.278,34.230000000000004,93.79,0.92,0.22,889,1.4000000000000001,152,1.2000000000000002,0.0000,0.0000 +2012,9,1,2,30,23.200000000000003,1.81,0.076,0.59,0,0,0,0,0,6.800000000000001,0,0,0,0,0.278,34.77,105.49000000000001,0.92,0.22,890,1.3,162,1.4000000000000001,0.0000,0.0000 +2012,9,1,3,30,22.3,1.8,0.075,0.59,0,0,0,0,0,6.300000000000001,0,0,0,0,0.278,35.59,116.37,0.92,0.22,890,1.3,171,1.5,0.0000,0.0000 +2012,9,1,4,30,21.400000000000002,1.8,0.074,0.59,0,0,0,0,0,6.2,0,0,0,0,0.278,37.13,125.84,0.92,0.22,890,1.3,179,1.5,0.0000,0.0000 +2012,9,1,5,30,20.5,1.8,0.073,0.59,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.278,38.980000000000004,132.95,0.92,0.22,890,1.3,186,1.5,0.0000,0.0000 +2012,9,1,6,30,19.8,1.8,0.07200000000000001,0.59,0,0,0,0,0,6,0,0,0,0,0.278,40.49,136.48,0.92,0.22,891,1.3,192,1.4000000000000001,0.0000,0.0000 +2012,9,1,7,30,19.1,1.79,0.07100000000000001,0.59,0,0,0,0,0,5.800000000000001,0,0,0,0,0.278,41.88,135.56,0.92,0.22,890,1.3,197,1.4000000000000001,0.0000,0.0000 +2012,9,1,8,30,18.5,1.79,0.07,0.59,0,0,0,0,0,5.7,0,0,0,0,0.278,43.04,130.44,0.92,0.22,890,1.3,203,1.3,0.0000,0.0000 +2012,9,1,9,30,17.900000000000002,1.79,0.069,0.59,0,0,0,0,0,5.5,0,0,0,0,0.278,44.21,122.24000000000001,0.92,0.22,890,1.2000000000000002,209,1.3,0.0000,0.0000 +2012,9,1,10,30,17.400000000000002,1.79,0.068,0.59,0,0,0,0,0,5.4,0,0,0,0,0.278,45.12,112.12,0.91,0.22,891,1.2000000000000002,213,1.3,0.0000,0.0000 +2012,9,1,11,30,17.1,1.79,0.066,0.59,0,0,0,0,0,5.2,0,0,0,0,0.278,45.42,100.85000000000001,0.91,0.22,891,1.2000000000000002,217,1.3,0.0000,0.0000 +2012,9,1,12,30,19,1.79,0.064,0.59,11,162,15,0,0,5.2,11,162,0,15,0.278,40.31,88.65,0.91,0.22,891,1.2000000000000002,222,1.6,0.0000,0.0000 +2012,9,1,13,30,22.6,1.79,0.063,0.59,50,636,196,0,0,5.5,50,636,0,196,0.278,33.05,76.7,0.91,0.22,892,1.1,225,2,9.4155,7.2151 +2012,9,1,14,30,26.900000000000002,1.79,0.062,0.59,69,813,419,0,0,5.1000000000000005,69,813,0,419,0.278,24.75,64.52,0.91,0.22,892,1.1,216,2.1,22.2375,17.3178 +2012,9,1,15,30,30.8,1.79,0.061,0.59,81,896,624,0,0,3.3000000000000003,81,896,0,624,0.278,17.5,52.64,0.91,0.22,892,1.2000000000000002,202,2.1,35.4181,27.7532 +2012,9,1,16,30,33,1.79,0.062,0.59,90,942,794,0,0,1.4000000000000001,90,942,0,794,0.278,13.47,41.61,0.92,0.22,892,1.2000000000000002,200,2.1,46.7300,36.7154 +2012,9,1,17,30,34.300000000000004,1.79,0.062,0.59,95,967,910,0,0,1.4000000000000001,95,967,0,910,0.278,12.49,32.53,0.92,0.22,891,1.2000000000000002,202,2.2,54.6223,42.9699 +2012,9,1,18,30,35.2,1.77,0.065,0.59,98,972,960,0,0,1.4000000000000001,98,972,0,960,0.278,11.92,27.57,0.92,0.22,891,1.3,203,2.2,58.1342,45.7540 +2012,9,1,19,30,35.800000000000004,1.77,0.066,0.59,98,968,945,0,0,1.5,98,968,0,945,0.278,11.61,28.98,0.92,0.22,890,1.3,202,2.3000000000000003,57.2355,45.0414 +2012,9,1,20,30,35.9,1.77,0.066,0.59,95,949,863,0,0,1.6,95,949,0,863,0.278,11.65,36,0.93,0.22,889,1.4000000000000001,199,2.4000000000000004,51.7685,40.7088 +2012,9,1,21,30,35.7,1.76,0.066,0.59,89,915,723,0,0,1.8,89,915,0,723,0.278,11.870000000000001,46.1,0.93,0.22,889,1.4000000000000001,193,2.6,42.3598,33.2532 +2012,9,1,22,30,34.800000000000004,1.76,0.066,0.59,79,854,537,0,0,1.9000000000000001,79,854,0,537,0.278,12.57,57.58,0.93,0.22,888,1.4000000000000001,188,2.9000000000000004,30.0488,23.5014 +2012,9,1,23,30,32.5,1.75,0.066,0.59,63,736,319,0,0,2.2,63,736,0,319,0.278,14.66,69.65,0.93,0.22,888,1.5,183,2.3000000000000003,16.5753,12.8456 +2012,9,2,0,30,28.700000000000003,1.73,0.067,0.59,37,474,105,0,0,5.800000000000001,37,474,0,105,0.279,23.44,81.85000000000001,0.93,0.22,889,1.6,180,1.7000000000000002,0.0000,0.0000 +2012,9,2,1,30,26.1,1.72,0.07,0.59,0,0,0,0,0,6.7,0,0,0,0,0.28,28.95,94.07000000000001,0.9400000000000001,0.22,889,1.6,179,1.9000000000000001,0.0000,0.0000 +2012,9,2,2,30,25.400000000000002,1.7,0.073,0.59,0,0,0,0,0,7,0,0,0,0,0.28,31.01,105.79,0.9400000000000001,0.22,889,1.7000000000000002,181,2.3000000000000003,0.0000,0.0000 +2012,9,2,3,30,24.900000000000002,1.68,0.079,0.59,0,0,0,0,0,8,0,0,0,0,0.28,34.17,116.69,0.9400000000000001,0.22,890,1.9000000000000001,185,2.7,0.0000,0.0000 +2012,9,2,4,30,24.400000000000002,1.6500000000000001,0.08600000000000001,0.59,0,0,0,0,0,9,0,0,0,0,0.28,37.660000000000004,126.19,0.9500000000000001,0.22,890,1.9000000000000001,191,3.1,0.0000,0.0000 +2012,9,2,5,30,23.900000000000002,1.6300000000000001,0.094,0.59,0,0,0,0,0,9.8,0,0,0,0,0.279,40.97,133.32,0.9500000000000001,0.22,889,2,198,3.5,0.0000,0.0000 +2012,9,2,6,30,23.400000000000002,1.6,0.10200000000000001,0.59,0,0,0,0,0,10.4,0,0,0,0,0.279,43.94,136.85,0.9500000000000001,0.22,889,2.1,205,3.8000000000000003,0.0000,0.0000 +2012,9,2,7,30,22.900000000000002,1.57,0.109,0.59,0,0,0,0,0,10.8,0,0,0,0,0.278,46.52,135.9,0.96,0.22,889,2.2,210,3.8000000000000003,0.0000,0.0000 +2012,9,2,8,30,22.3,1.56,0.115,0.59,0,0,0,0,0,11.100000000000001,0,0,0,0,0.278,49.15,130.72,0.96,0.22,889,2.2,215,3.9000000000000004,0.0000,0.0000 +2012,9,2,9,30,21.700000000000003,1.55,0.11800000000000001,0.59,0,0,0,0,0,11.3,0,0,0,0,0.277,51.65,122.47,0.96,0.22,889,2.2,219,3.9000000000000004,0.0000,0.0000 +2012,9,2,10,30,21,1.55,0.11800000000000001,0.59,0,0,0,0,0,11.5,0,0,0,0,0.276,54.4,112.31,0.96,0.22,889,2.2,222,3.9000000000000004,0.0000,0.0000 +2012,9,2,11,30,20.3,1.54,0.11800000000000001,0.59,0,0,0,0,0,11.600000000000001,0,0,0,0,0.276,57.370000000000005,101.01,0.96,0.22,890,2.1,224,3.9000000000000004,0.0000,0.0000 +2012,9,2,12,30,20.700000000000003,1.54,0.117,0.59,11,75,13,0,0,11.8,11,75,0,13,0.275,56.71,88.78,0.96,0.22,890,2.1,226,4.3,0.0000,0.0000 +2012,9,2,13,30,23.400000000000002,1.54,0.115,0.59,61,523,180,0,0,12.100000000000001,61,523,0,180,0.275,49.050000000000004,76.84,0.96,0.22,890,2.1,225,4.6000000000000005,9.4542,7.2429 +2012,9,2,14,30,27.6,1.54,0.113,0.59,87,719,395,0,0,12.600000000000001,87,719,0,395,0.275,39.53,64.66,0.96,0.22,891,2.1,222,4.9,22.4275,17.4637 +2012,9,2,15,30,31.8,1.53,0.11,0.59,102,819,598,0,0,11.9,102,819,0,598,0.275,29.66,52.800000000000004,0.9500000000000001,0.22,890,2.1,216,5.1000000000000005,35.6791,27.9562 +2012,9,2,16,30,34.4,1.53,0.108,0.59,112,875,764,0,0,9.5,112,875,0,764,0.275,21.84,41.82,0.9500000000000001,0.22,890,2.1,209,4.9,47.0610,36.9742 +2012,9,2,17,30,35.800000000000004,1.52,0.106,0.59,118,905,878,0,0,8.4,118,905,0,878,0.276,18.75,32.81,0.9500000000000001,0.22,889,2.1,202,4.7,54.9601,43.2344 +2012,9,2,18,30,36.7,1.53,0.134,0.59,134,896,926,0,0,7.800000000000001,134,896,0,926,0.276,17.17,27.92,0.96,0.22,889,2.1,196,4.5,58.4117,45.9711 +2012,9,2,19,30,37.1,1.53,0.13,0.59,131,896,912,0,0,7.4,131,896,0,912,0.277,16.36,29.35,0.9500000000000001,0.22,888,2.1,191,4.3,57.3879,45.1599 +2012,9,2,20,30,37.1,1.52,0.125,0.59,124,878,831,0,0,7.2,124,878,0,831,0.278,16.09,36.34,0.9500000000000001,0.22,887,2.2,188,4.2,51.7942,40.7273 +2012,9,2,21,30,36.7,1.5,0.088,0.59,99,871,700,0,0,7.300000000000001,99,871,0,700,0.278,16.52,46.4,0.9500000000000001,0.22,887,2.2,186,4.1000000000000005,42.3197,33.2194 +2012,9,2,22,30,35.7,1.5,0.089,0.59,88,804,515,0,0,7.5,88,804,0,515,0.278,17.7,57.870000000000005,0.9500000000000001,0.22,887,2.2,184,3.9000000000000004,30.0051,23.4641 +2012,9,2,23,30,33.7,1.49,0.089,0.59,70,680,304,0,0,7.800000000000001,70,680,0,304,0.278,20.16,69.93,0.9500000000000001,0.22,887,2.2,181,3.1,16.3818,12.6915 +2012,9,3,0,30,30.400000000000002,1.49,0.088,0.59,40,406,95,0,0,9.1,40,406,0,95,0.279,26.55,82.13,0.9500000000000001,0.22,887,2.3000000000000003,179,2.1,0.0000,0.0000 +2012,9,3,1,30,28,1.49,0.08600000000000001,0.59,0,0,0,0,0,10.200000000000001,0,0,0,0,0.279,32.96,94.36,0.9500000000000001,0.22,887,2.4000000000000004,178,2.1,0.0000,0.0000 +2012,9,3,2,30,27.3,1.49,0.083,0.59,0,0,0,0,0,10.700000000000001,0,0,0,0,0.279,35.43,106.08,0.9500000000000001,0.22,888,2.4000000000000004,180,2.6,0.0000,0.0000 +2012,9,3,3,30,26.700000000000003,1.49,0.079,0.59,0,0,0,0,0,11.3,0,0,0,0,0.279,38.22,117.01,0.9500000000000001,0.22,888,2.4000000000000004,184,3.1,0.0000,0.0000 +2012,9,3,4,30,26.1,1.48,0.076,0.59,0,0,0,0,0,11.8,0,0,0,0,0.28,41.02,126.53,0.9500000000000001,0.22,888,2.4000000000000004,189,3.5,0.0000,0.0000 +2012,9,3,5,30,25.3,1.48,0.073,0.59,0,0,0,0,0,12.200000000000001,0,0,0,0,0.28,43.97,133.69,0.9400000000000001,0.22,888,2.4000000000000004,193,3.7,0.0000,0.0000 +2012,9,3,6,30,24.5,1.49,0.07100000000000001,0.59,0,0,0,0,0,12.3,0,0,0,0,0.279,46.5,137.22,0.9400000000000001,0.22,888,2.4000000000000004,198,3.7,0.0000,0.0000 +2012,9,3,7,30,23.8,1.49,0.07100000000000001,0.59,0,0,0,0,0,12.3,0,0,0,0,0.279,48.550000000000004,136.24,0.9400000000000001,0.22,888,2.3000000000000003,202,3.7,0.0000,0.0000 +2012,9,3,8,30,23.1,1.49,0.07200000000000001,0.59,0,0,0,0,0,12.3,0,0,0,0,0.279,50.730000000000004,131.01,0.9400000000000001,0.22,888,2.3000000000000003,207,3.6,0.0000,0.0000 +2012,9,3,9,30,22.400000000000002,1.49,0.074,0.59,0,0,0,0,0,12.5,0,0,0,0,0.279,53.5,122.71000000000001,0.9400000000000001,0.22,888,2.3000000000000003,211,3.6,0.0000,0.0000 +2012,9,3,10,30,21.8,1.47,0.079,0.59,0,0,0,0,0,12.8,0,0,0,0,0.28,56.72,112.5,0.9500000000000001,0.22,889,2.3000000000000003,216,3.5,0.0000,0.0000 +2012,9,3,11,30,21.3,1.45,0.085,0.59,0,0,0,0,0,13.200000000000001,0,0,0,0,0.279,60.01,101.18,0.9500000000000001,0.22,889,2.4000000000000004,220,3.5,0.0000,0.0000 +2012,9,3,12,30,22,1.43,0.091,0.59,10,80,12,0,0,13.700000000000001,10,80,0,12,0.279,59.22,88.92,0.9500000000000001,0.22,890,2.5,225,3.7,0.0000,0.0000 +2012,9,3,13,30,24.8,1.41,0.094,0.59,56,537,177,0,0,14.100000000000001,56,537,0,177,0.278,51.480000000000004,76.98,0.9500000000000001,0.22,890,2.5,226,3.8000000000000003,8.6739,6.6434 +2012,9,3,14,30,28.700000000000003,1.41,0.095,0.59,81,727,390,0,0,14.600000000000001,81,727,0,390,0.278,42.24,64.81,0.9500000000000001,0.22,890,2.5,222,3.4000000000000004,21.1214,16.4449 +2012,9,3,15,30,32,1.42,0.093,0.59,95,824,592,0,0,13.8,95,824,0,592,0.277,33.230000000000004,52.97,0.9500000000000001,0.22,890,2.5,206,2.8000000000000003,34.1697,26.7721 +2012,9,3,16,30,34.1,1.42,0.092,0.59,105,878,757,0,0,12.100000000000001,105,878,0,757,0.277,26.43,42.03,0.9500000000000001,0.22,890,2.5,180,2.4000000000000004,45.2588,35.5570 +2012,9,3,17,30,35.6,1.42,0.091,0.59,110,905,868,0,1,11.100000000000001,110,905,0,868,0.276,22.78,33.09,0.9500000000000001,0.22,889,2.6,160,2.4000000000000004,53.0024,41.6932 +2012,9,3,18,30,36.5,1.42,0.08700000000000001,0.59,111,919,920,0,0,10.700000000000001,111,919,0,920,0.276,21.05,28.28,0.9500000000000001,0.22,888,2.6,152,2.7,56.3166,44.3209 +2012,9,3,19,30,37,1.42,0.08700000000000001,0.59,110,916,905,0,0,10.4,110,916,0,905,0.275,20.14,29.72,0.9500000000000001,0.22,888,2.6,150,2.8000000000000003,55.3545,43.5584 +2012,9,3,20,30,37.1,1.42,0.088,0.59,106,895,824,0,0,10.200000000000001,106,895,0,824,0.274,19.73,36.69,0.9500000000000001,0.22,887,2.7,150,2.9000000000000004,49.8402,39.1891 +2012,9,3,21,30,36.7,1.42,0.08700000000000001,0.59,98,861,689,0,0,10,98,861,0,689,0.274,19.830000000000002,46.71,0.9500000000000001,0.22,886,2.6,151,2.9000000000000004,40.9354,32.1306 +2012,9,3,22,30,35.9,1.42,0.08600000000000001,0.59,86,795,506,0,0,9.600000000000001,86,795,0,506,0.274,20.2,58.15,0.9500000000000001,0.22,886,2.6,151,2.8000000000000003,28.7319,22.4654 +2012,9,3,23,30,34.1,1.42,0.084,0.59,68,675,297,0,0,9.3,68,675,0,297,0.274,21.88,70.2,0.9500000000000001,0.22,886,2.5,150,2.2,15.5727,12.0604 +2012,9,4,0,30,30.8,1.41,0.084,0.59,38,397,91,0,0,10.600000000000001,38,397,0,91,0.274,28.75,82.4,0.9500000000000001,0.22,886,2.5,148,1.5,0.0000,0.0000 +2012,9,4,1,30,28.3,1.4000000000000001,0.085,0.59,0,0,0,0,0,11.200000000000001,0,0,0,0,0.274,34.59,94.64,0.9500000000000001,0.22,887,2.6,149,1.5,0.0000,0.0000 +2012,9,4,2,30,27.5,1.3900000000000001,0.088,0.59,0,0,0,0,0,11.3,0,0,0,0,0.273,36.56,106.38,0.9500000000000001,0.22,887,2.6,154,1.8,0.0000,0.0000 +2012,9,4,3,30,26.700000000000003,1.3800000000000001,0.091,0.59,0,0,0,0,0,12,0,0,0,0,0.273,40.06,117.33,0.9500000000000001,0.22,888,2.7,160,2,0.0000,0.0000 +2012,9,4,4,30,26,1.3800000000000001,0.093,0.59,0,0,0,0,0,12.8,0,0,0,0,0.273,43.980000000000004,126.88000000000001,0.9500000000000001,0.22,888,2.8000000000000003,165,2.2,0.0000,0.0000 +2012,9,4,5,30,25.3,1.3800000000000001,0.094,0.59,0,0,0,0,0,13.4,0,0,0,0,0.272,47.76,134.06,0.9500000000000001,0.22,888,2.8000000000000003,170,2.2,0.0000,0.0000 +2012,9,4,6,30,24.6,1.3800000000000001,0.094,0.59,0,0,0,0,0,13.8,0,0,0,0,0.272,51.04,137.6,0.9500000000000001,0.22,888,2.8000000000000003,174,2.1,0.0000,0.0000 +2012,9,4,7,30,23.900000000000002,1.3800000000000001,0.095,0.59,0,0,0,0,0,14,0,0,0,0,0.272,54.02,136.58,0.9500000000000001,0.22,888,2.9000000000000004,180,1.9000000000000001,0.0000,0.0000 +2012,9,4,8,30,23.200000000000003,1.3800000000000001,0.097,0.59,0,0,0,0,0,14.200000000000001,0,0,0,0,0.272,57.04,131.29,0.96,0.22,888,2.9000000000000004,189,1.8,0.0000,0.0000 +2012,9,4,9,30,22.6,1.37,0.101,0.59,0,0,0,0,0,14.4,0,0,0,0,0.273,59.97,122.94,0.96,0.22,888,3,201,1.8,0.0000,0.0000 +2012,9,4,10,30,22,1.37,0.106,0.59,0,0,0,0,0,14.700000000000001,0,0,0,0,0.274,63.07,112.69,0.96,0.22,888,3.1,213,1.7000000000000002,0.0000,0.0000 +2012,9,4,11,30,21.6,1.36,0.112,0.59,0,0,0,0,0,14.8,0,0,0,0,0.274,65.17,101.34,0.96,0.22,888,3.1,225,1.5,0.0000,0.0000 +2012,9,4,12,30,22.6,1.36,0.116,0.59,0,0,0,0,0,14.700000000000001,0,0,0,0,0.275,61.17,89.05,0.96,0.22,889,3.2,241,1.9000000000000001,0.0000,0.0000 +2012,9,4,13,30,25.400000000000002,1.36,0.11900000000000001,0.59,60,484,168,0,0,14.5,60,484,0,168,0.275,50.910000000000004,77.12,0.96,0.22,889,3.2,251,2.2,8.5211,6.5247 +2012,9,4,14,30,29.3,1.36,0.11800000000000001,0.59,88,683,377,0,0,14.700000000000001,88,683,0,377,0.275,40.910000000000004,64.96000000000001,0.96,0.22,889,3.3000000000000003,233,1.5,20.8312,16.2169 +2012,9,4,15,30,32.7,1.37,0.117,0.59,104,785,575,0,0,14.5,104,785,0,575,0.275,33.29,53.14,0.96,0.22,889,3.3000000000000003,175,1.1,33.8027,26.4830 +2012,9,4,16,30,34.9,1.3800000000000001,0.115,0.59,114,842,738,0,0,13.600000000000001,114,842,0,738,0.275,27.88,42.24,0.96,0.22,889,3.3000000000000003,130,1.4000000000000001,44.8201,35.2110 +2012,9,4,17,30,36.2,1.3800000000000001,0.115,0.59,121,872,850,0,0,13.200000000000001,121,872,0,850,0.275,25.23,33.37,0.96,0.22,888,3.3000000000000003,126,1.9000000000000001,52.3737,41.1973 +2012,9,4,18,30,37.1,1.3800000000000001,0.113,0.59,123,884,899,0,0,13.100000000000001,123,884,0,899,0.274,23.81,28.63,0.96,0.22,887,3.4000000000000004,129,2.1,55.9243,44.0109 +2012,9,4,19,30,37.5,1.37,0.115,0.59,123,879,884,0,0,13,123,879,0,884,0.274,23.25,30.1,0.96,0.22,886,3.4000000000000004,134,2.3000000000000003,54.9000,43.1993 +2012,9,4,20,30,37.5,1.36,0.12,0.59,121,854,803,0,0,13,121,854,0,803,0.274,23.21,37.03,0.96,0.22,886,3.5,141,2.3000000000000003,49.3857,38.8299 +2012,9,4,21,30,37,1.37,0.11,0.59,108,823,669,0,0,12.9,108,823,0,669,0.273,23.650000000000002,47.02,0.96,0.22,885,3.5,148,2.4000000000000004,40.2529,31.5926 +2012,9,4,22,30,36.1,1.3800000000000001,0.111,0.59,95,750,488,0,0,12.8,95,750,0,488,0.273,24.7,58.44,0.96,0.22,885,3.5,154,2.5,28.1877,22.0369 +2012,9,4,23,30,34.300000000000004,1.3900000000000001,0.109,0.59,74,620,281,0,8,12.9,39,576,0,232,0.273,27.51,70.48,0.96,0.22,885,3.5,158,2.1,15.1773,11.7502 +2012,9,5,0,30,31.6,1.4000000000000001,0.109,0.59,40,332,82,0,6,15.4,23,0,0,23,0.273,37.59,82.68,0.96,0.22,885,3.5,161,1.6,0.0000,0.0000 +2012,9,5,1,30,29.8,1.4000000000000001,0.11,0.59,0,0,0,0,8,16.3,0,0,0,0,0.273,44.050000000000004,94.93,0.96,0.22,885,3.5,167,1.9000000000000001,0.0000,0.0000 +2012,9,5,2,30,29,1.4000000000000001,0.113,0.59,0,0,0,0,8,16,0,0,0,0,0.273,45.52,106.69,0.96,0.22,886,3.5,173,2.2,0.0000,0.0000 +2012,9,5,3,30,28.1,1.3900000000000001,0.12,0.59,0,0,0,0,3,15.9,0,0,0,0,0.273,47.64,117.66,0.96,0.22,886,3.6,177,2.3000000000000003,0.0000,0.0000 +2012,9,5,4,30,27,1.4000000000000001,0.123,0.59,0,0,0,0,3,15.9,0,0,0,0,0.273,50.79,127.23,0.96,0.22,886,3.5,176,2.3000000000000003,0.0000,0.0000 +2012,9,5,5,30,26,1.43,0.117,0.59,0,0,0,0,4,16,0,0,0,0,0.273,54.17,134.43,0.96,0.22,886,3.5,175,2.3000000000000003,0.0000,0.0000 +2012,9,5,6,30,25.1,1.43,0.114,0.59,0,0,0,0,0,16.1,0,0,0,0,0.273,57.33,137.98,0.96,0.22,886,3.4000000000000004,179,2.5,0.0000,0.0000 +2012,9,5,7,30,24.6,1.41,0.11900000000000001,0.59,0,0,0,0,0,15.9,0,0,0,0,0.273,58.550000000000004,136.92000000000002,0.96,0.22,886,3.2,187,2.7,0.0000,0.0000 +2012,9,5,8,30,24.200000000000003,1.3800000000000001,0.128,0.59,0,0,0,0,0,15.600000000000001,0,0,0,0,0.273,58.84,131.58,0.96,0.22,886,3.2,194,3,0.0000,0.0000 +2012,9,5,9,30,23.700000000000003,1.35,0.14300000000000002,0.59,0,0,0,0,0,15.4,0,0,0,0,0.273,59.88,123.17,0.96,0.22,886,3.2,200,3,0.0000,0.0000 +2012,9,5,10,30,23.200000000000003,1.33,0.161,0.59,0,0,0,0,0,15.5,0,0,0,0,0.274,62.01,112.88,0.96,0.22,886,3.2,205,2.7,0.0000,0.0000 +2012,9,5,11,30,22.700000000000003,1.33,0.171,0.59,0,0,0,0,0,15.700000000000001,0,0,0,0,0.274,64.77,101.5,0.96,0.22,886,3.2,209,2.2,0.0000,0.0000 +2012,9,5,12,30,23.200000000000003,1.34,0.17200000000000001,0.59,0,0,0,0,0,15.9,0,0,0,0,0.274,63.68,89.19,0.96,0.22,886,3.2,216,2.3000000000000003,0.0000,0.0000 +2012,9,5,13,30,25.5,1.35,0.168,0.59,68,422,162,0,0,16.2,68,422,0,162,0.274,56.36,77.26,0.96,0.22,887,3.2,221,2.5,8.0803,6.1856 +2012,9,5,14,30,28.700000000000003,1.36,0.163,0.59,101,637,369,0,0,16.5,101,637,0,369,0.274,47.61,65.11,0.96,0.22,887,3.2,227,2.2,20.1146,15.6571 +2012,9,5,15,30,32,1.3800000000000001,0.157,0.59,119,750,568,0,0,16.3,119,750,0,568,0.273,38.96,53.31,0.96,0.22,887,3.2,229,1.5,32.8085,25.7025 +2012,9,5,16,30,34.300000000000004,1.3800000000000001,0.156,0.59,132,809,729,0,0,15.5,132,809,0,729,0.273,32.59,42.46,0.96,0.22,887,3.3000000000000003,197,0.9,43.6715,34.3073 +2012,9,5,17,30,35.4,1.3800000000000001,0.164,0.59,143,834,837,0,0,15.3,143,834,0,837,0.273,30.18,33.65,0.9500000000000001,0.22,887,3.4000000000000004,141,1.1,51.2628,40.3222 +2012,9,5,18,30,35.9,1.5,0.08700000000000001,0.59,109,903,899,0,0,15.5,109,903,0,899,0.273,29.77,28.990000000000002,0.9500000000000001,0.22,886,3.5,112,1.8,54.6213,42.9841 +2012,9,5,19,30,35.6,1.46,0.10200000000000001,0.59,116,885,879,0,0,16,116,885,0,879,0.273,31.16,30.48,0.96,0.22,886,3.7,109,2.4000000000000004,53.5959,42.1716 +2012,9,5,20,30,34.300000000000004,1.3900000000000001,0.13,0.59,125,841,793,7,2,16.3,354,466,7,725,0.273,34.13,37.38,0.97,0.22,886,3.9000000000000004,107,2.9000000000000004,48.0937,37.8123 +2012,9,5,21,30,32.300000000000004,1.35,0.151,0.59,124,778,652,0,6,17.1,149,1,0,150,0.273,40.4,47.34,0.97,0.22,886,4.1000000000000005,102,2.9000000000000004,39.0459,30.6431 +2012,9,5,22,30,30.200000000000003,1.33,0.17500000000000002,0.59,117,676,468,0,6,18.8,114,1,0,115,0.273,50.550000000000004,58.74,0.97,0.22,886,4.3,99,2.5,27.1423,21.2166 +2012,9,5,23,30,28.200000000000003,1.32,0.187,0.59,92,516,262,0,6,20.1,110,8,0,113,0.272,61.35,70.77,0.97,0.22,887,4.5,93,2.1,11.8257,9.1521 +2012,9,6,0,30,26.200000000000003,1.33,0.215,0.59,46,202,70,0,6,20.8,30,0,0,30,0.273,72.13,82.95,0.97,0.22,888,4.6000000000000005,82,2,0.0000,0.0000 +2012,9,6,1,30,24.6,1.36,0.218,0.59,0,0,0,0,6,21,0,0,0,0,0.273,80.44,95.22,0.97,0.22,889,4.5,72,2.3000000000000003,0.0000,0.0000 +2012,9,6,2,30,23.400000000000002,1.42,0.181,0.59,0,0,0,0,6,20.900000000000002,0,0,0,0,0.273,86.05,106.99000000000001,0.97,0.22,889,4.2,70,2.5,0.0000,0.0000 +2012,9,6,3,30,22.5,1.46,0.156,0.59,0,0,0,0,6,20.700000000000003,0,0,0,0,0.272,89.38,117.98,0.96,0.22,889,3.9000000000000004,72,2.5,0.0000,0.0000 +2012,9,6,4,30,21.700000000000003,1.47,0.148,0.59,0,0,0,0,7,20.400000000000002,0,0,0,0,0.272,92.44,127.58,0.96,0.22,889,3.8000000000000003,78,2.5,0.0000,0.0000 +2012,9,6,5,30,21.3,1.46,0.149,0.59,0,0,0,0,0,20.400000000000002,0,0,0,0,0.272,94.73,134.81,0.96,0.22,890,3.7,93,2.5,0.0000,0.0000 +2012,9,6,6,30,21,1.45,0.158,0.59,0,0,0,0,0,20.5,0,0,0,0,0.272,96.95,138.35,0.97,0.22,890,3.5,106,2.5,0.0000,0.0000 +2012,9,6,7,30,20.8,1.44,0.164,0.59,0,0,0,0,7,20.5,0,0,0,0,0.272,98.38,137.27,0.97,0.22,890,3.4000000000000004,114,2.4000000000000004,0.0000,0.0000 +2012,9,6,8,30,20.6,1.44,0.163,0.59,0,0,0,0,1,20.5,0,0,0,0,0.272,99.10000000000001,131.87,0.97,0.22,890,3.2,121,2.2,0.0000,0.0000 +2012,9,6,9,30,20.400000000000002,1.44,0.158,0.59,0,0,0,0,0,20.3,0,0,0,0,0.272,99.25,123.4,0.96,0.22,890,3.2,124,1.8,0.0000,0.0000 +2012,9,6,10,30,20.1,1.44,0.147,0.59,0,0,0,0,0,20.1,0,0,0,0,0.272,99.72,113.07000000000001,0.96,0.22,889,3.1,127,1.5,0.0000,0.0000 +2012,9,6,11,30,19.8,1.44,0.135,0.59,0,0,0,0,0,19.8,0,0,0,0,0.273,100,101.67,0.96,0.22,889,3,134,1.4000000000000001,0.0000,0.0000 +2012,9,6,12,30,20.3,1.43,0.122,0.59,0,0,0,0,0,19.5,0,0,0,0,0.273,95.4,89.31,0.96,0.22,890,3,144,1.8,0.0000,0.0000 +2012,9,6,13,30,22.3,1.44,0.109,0.59,58,499,167,0,0,19,58,499,0,167,0.273,81.77,77.4,0.96,0.22,890,2.9000000000000004,158,2.5,7.7848,5.9578 +2012,9,6,14,30,25.6,1.44,0.099,0.59,81,710,379,0,0,18.1,81,710,0,379,0.274,63.29,65.26,0.96,0.22,890,2.9000000000000004,175,3.1,19.6659,15.3060 +2012,9,6,15,30,29,1.44,0.094,0.59,95,813,579,0,0,16.8,95,813,0,579,0.273,47.85,53.49,0.96,0.22,890,2.9000000000000004,189,3.4000000000000004,32.3856,25.3698 +2012,9,6,16,30,31.5,1.45,0.091,0.59,103,868,741,0,0,15.9,103,868,0,741,0.273,39.04,42.67,0.96,0.22,889,3,193,3.6,43.1142,33.8682 +2012,9,6,17,30,33.2,1.46,0.09,0.59,109,897,853,0,0,15.4,109,897,0,853,0.273,34.38,33.94,0.96,0.22,889,3,191,3.6,50.4540,39.6848 +2012,9,6,18,30,34.300000000000004,1.57,0.068,0.59,100,924,905,0,0,15,100,924,0,905,0.273,31.59,29.35,0.96,0.22,888,3.1,187,3.7,54.5936,42.9610 +2012,9,6,19,30,34.800000000000004,1.58,0.07100000000000001,0.59,100,919,889,0,0,14.8,100,919,0,889,0.273,30.18,30.86,0.96,0.22,887,3.1,185,3.8000000000000003,53.2621,41.9075 +2012,9,6,20,30,34.9,1.58,0.075,0.59,99,896,807,0,0,14.5,99,896,0,807,0.273,29.47,37.730000000000004,0.96,0.22,886,3.2,182,4.1000000000000005,43.3906,34.1130 +2012,9,6,21,30,34.4,1.56,0.068,0.59,88,863,670,0,0,14.4,88,863,0,670,0.273,30.09,47.660000000000004,0.97,0.22,886,3.3000000000000003,180,4.4,8.7456,6.8630 +2012,9,6,22,30,33.4,1.59,0.07100000000000001,0.59,79,794,487,0,0,14.3,79,794,0,487,0.274,31.7,59.03,0.96,0.22,885,3.3000000000000003,179,4.7,6.3857,4.9908 +2012,9,6,23,30,31.5,1.6400000000000001,0.073,0.59,63,663,278,0,0,14.3,63,663,0,278,0.275,35.33,71.05,0.96,0.22,886,3.4000000000000004,178,4.4,5.7448,4.4443 +2012,9,7,0,30,28.900000000000002,1.69,0.075,0.59,33,372,77,0,0,14.8,33,372,0,77,0.276,42.21,83.23,0.96,0.22,886,3.4000000000000004,176,3.6,0.0000,0.0000 +2012,9,7,1,30,26.8,1.73,0.078,0.59,0,0,0,0,7,15.100000000000001,0,0,0,0,0.276,48.67,95.51,0.96,0.22,886,3.4000000000000004,177,3.1,0.0000,0.0000 +2012,9,7,2,30,25.700000000000003,1.74,0.081,0.59,0,0,0,0,6,14.9,0,0,0,0,0.277,51.15,107.29,0.96,0.22,887,3.3000000000000003,179,3.1,0.0000,0.0000 +2012,9,7,3,30,24.8,1.73,0.085,0.59,0,0,0,0,6,14.4,0,0,0,0,0.277,52.480000000000004,118.31,0.96,0.22,887,3.3000000000000003,184,3.1,0.0000,0.0000 +2012,9,7,4,30,24.3,1.68,0.092,0.59,0,0,0,0,6,13.8,0,0,0,0,0.278,52.04,127.94,0.96,0.22,887,3.3000000000000003,189,3.1,0.0000,0.0000 +2012,9,7,5,30,23.8,1.6300000000000001,0.097,0.59,0,0,0,0,8,13.3,0,0,0,0,0.278,51.83,135.19,0.96,0.22,887,3.2,195,3.1,0.0000,0.0000 +2012,9,7,6,30,23.3,1.59,0.099,0.59,0,0,0,0,8,12.9,0,0,0,0,0.278,52.050000000000004,138.73,0.96,0.22,887,3.1,201,3,0.0000,0.0000 +2012,9,7,7,30,22.8,1.54,0.1,0.59,0,0,0,0,7,12.600000000000001,0,0,0,0,0.278,52.65,137.61,0.96,0.22,886,3,210,3,0.0000,0.0000 +2012,9,7,8,30,22.200000000000003,1.5,0.1,0.59,0,0,0,0,0,12.4,0,0,0,0,0.278,53.92,132.15,0.9500000000000001,0.22,886,3,219,3,0.0000,0.0000 +2012,9,7,9,30,21.8,1.47,0.1,0.59,0,0,0,0,0,12.4,0,0,0,0,0.278,55.04,123.64,0.9500000000000001,0.22,886,3,226,3.1,0.0000,0.0000 +2012,9,7,10,30,21.5,1.46,0.098,0.59,0,0,0,0,0,12.4,0,0,0,0,0.278,56.120000000000005,113.26,0.9500000000000001,0.22,886,3,229,3.4000000000000004,0.0000,0.0000 +2012,9,7,11,30,21.400000000000002,1.47,0.095,0.59,0,0,0,0,0,12.4,0,0,0,0,0.279,56.370000000000005,101.83,0.9500000000000001,0.22,886,3,231,3.6,0.0000,0.0000 +2012,9,7,12,30,22.1,1.48,0.091,0.59,0,0,0,0,0,12.3,0,0,0,0,0.28,53.85,89.45,0.9500000000000001,0.22,886,3,234,3.9000000000000004,0.0000,0.0000 +2012,9,7,13,30,24.400000000000002,1.49,0.091,0.59,54,520,166,0,0,12.5,54,520,0,166,0.28,47.300000000000004,77.55,0.9500000000000001,0.22,887,3,248,4.3,8.0181,6.1348 +2012,9,7,14,30,27.1,1.52,0.09,0.59,78,721,377,0,3,12.3,78,721,5,377,0.281,39.78,65.41,0.9500000000000001,0.22,887,2.9000000000000004,278,5,20.1762,15.7012 +2012,9,7,15,30,28.6,1.57,0.08700000000000001,0.59,91,820,577,0,4,10.600000000000001,291,45,0,317,0.281,32.56,53.660000000000004,0.9400000000000001,0.22,888,2.9000000000000004,310,5.9,32.9873,25.8394 +2012,9,7,16,30,29.1,1.62,0.085,0.59,99,877,742,0,0,9.1,99,877,0,742,0.28200000000000003,28.67,42.89,0.9400000000000001,0.22,889,2.8000000000000003,331,6.300000000000001,43.7998,34.4054 +2012,9,7,17,30,29.6,1.6500000000000001,0.085,0.59,105,903,852,0,4,8.8,458,146,0,579,0.281,27.330000000000002,34.230000000000004,0.9400000000000001,0.22,889,2.9000000000000004,344,6.5,51.3920,40.4212 +2012,9,7,18,30,29.8,1.67,0.079,0.59,104,919,902,0,4,9,487,188,0,650,0.281,27.46,29.71,0.93,0.22,889,2.9000000000000004,353,6.6000000000000005,54.9296,43.2240 +2012,9,7,19,30,29.700000000000003,1.7,0.08,0.59,103,913,884,0,4,9.4,433,59,0,484,0.28,28.21,31.240000000000002,0.93,0.22,889,3,182,6.7,53.8366,42.3579 +2012,9,7,20,30,29,1.7,0.085,0.59,102,889,801,0,4,9.4,433,133,0,538,0.28,29.54,38.09,0.93,0.22,889,3.1,11,7,48.2627,37.9415 +2012,9,7,21,30,27.5,1.71,0.088,0.59,96,847,663,0,3,9.5,350,274,0,533,0.28,32.28,47.980000000000004,0.9400000000000001,0.22,890,3.1,18,7.300000000000001,39.0229,30.6203 +2012,9,7,22,30,25.5,1.73,0.096,0.59,87,769,479,0,4,9.5,27,0,0,27,0.28,36.29,59.33,0.9400000000000001,0.22,890,3.1,23,7.4,26.9986,21.0979 +2012,9,7,23,30,23,1.76,0.106,0.59,70,621,269,0,3,9.5,159,209,0,226,0.279,42.24,71.33,0.9400000000000001,0.22,891,3.2,28,7.300000000000001,14.0969,10.9016 +2012,9,8,0,30,20.700000000000003,1.77,0.12,0.59,36,306,71,0,4,9.600000000000001,53,5,0,54,0.279,48.86,83.51,0.9500000000000001,0.22,892,3.2,31,6.9,0.0000,0.0000 +2012,9,8,1,30,19,1.78,0.14100000000000001,0.59,0,0,0,0,4,9.700000000000001,0,0,0,0,0.28,54.78,95.8,0.9500000000000001,0.22,894,3.2,34,6.5,0.0000,0.0000 +2012,9,8,2,30,17.900000000000002,1.79,0.159,0.59,0,0,0,0,4,9.8,0,0,0,0,0.28,59.21,107.60000000000001,0.9500000000000001,0.22,895,3.3000000000000003,35,6.1000000000000005,0.0000,0.0000 +2012,9,8,3,30,17.2,1.76,0.168,0.59,0,0,0,0,4,9.9,0,0,0,0,0.28,62.120000000000005,118.64,0.96,0.22,895,3.3000000000000003,35,5.9,0.0000,0.0000 +2012,9,8,4,30,16.7,1.69,0.16,0.59,0,0,0,0,4,10,0,0,0,0,0.28,64.58,128.29,0.96,0.22,896,3.3000000000000003,36,5.6000000000000005,0.0000,0.0000 +2012,9,8,5,30,16.2,1.6500000000000001,0.14200000000000002,0.59,0,0,0,0,1,10.200000000000001,0,0,0,0,0.279,67.66,135.57,0.96,0.22,896,3.3000000000000003,38,5.300000000000001,0.0000,0.0000 +2012,9,8,6,30,15.700000000000001,1.6400000000000001,0.138,0.59,0,0,0,0,4,10.4,0,0,0,0,0.279,70.82000000000001,139.11,0.97,0.22,897,3.2,38,4.7,0.0000,0.0000 +2012,9,8,7,30,15.3,1.68,0.133,0.59,0,0,0,0,4,10.5,0,0,0,0,0.279,72.86,137.96,0.96,0.22,897,3,38,4,0.0000,0.0000 +2012,9,8,8,30,14.9,1.75,0.121,0.59,0,0,0,0,4,10.3,0,0,0,0,0.279,73.89,132.44,0.96,0.22,897,2.8000000000000003,38,3.1,0.0000,0.0000 +2012,9,8,9,30,14.600000000000001,1.8,0.11,0.59,0,0,0,0,4,10,0,0,0,0,0.279,74.07000000000001,123.87,0.9500000000000001,0.22,897,2.6,34,2,0.0000,0.0000 +2012,9,8,10,30,14,1.83,0.10200000000000001,0.59,0,0,0,0,4,10,0,0,0,0,0.28,76.96000000000001,113.45,0.9400000000000001,0.22,898,2.4000000000000004,27,1.1,0.0000,0.0000 +2012,9,8,11,30,13.3,1.83,0.093,0.59,0,0,0,0,4,10,0,0,0,0,0.28,80.64,101.99000000000001,0.9400000000000001,0.22,898,2.2,16,1,0.0000,0.0000 +2012,9,8,12,30,13.9,1.78,0.081,0.59,0,0,0,7,4,10,0,0,7,0,0.281,77.4,89.56,0.93,0.22,898,1.9000000000000001,6,1.8,0.0000,0.0000 +2012,9,8,13,30,16.1,1.73,0.068,0.59,49,586,174,7,4,9.8,114,28,7,120,0.281,66.27,77.69,0.93,0.22,898,1.7000000000000002,18,2.8000000000000003,7.9631,6.0910 +2012,9,8,14,30,18.8,1.7,0.059000000000000004,0.59,67,790,394,0,4,7.5,158,2,0,159,0.28200000000000003,47.71,65.56,0.92,0.22,898,1.6,35,3.4000000000000004,20.0472,15.5988 +2012,9,8,15,30,21,1.69,0.054,0.59,78,891,603,7,4,5.4,343,158,7,436,0.28200000000000003,36.14,53.84,0.92,0.22,898,1.4000000000000001,31,3.6,18.0471,14.1357 +2012,9,8,16,30,22.700000000000003,1.69,0.05,0.59,84,943,772,0,0,4.5,84,943,0,772,0.28200000000000003,30.51,43.12,0.92,0.22,898,1.4000000000000001,23,3.3000000000000003,43.8333,34.4303 +2012,9,8,17,30,24.3,1.7,0.047,0.59,87,974,889,0,0,3.6,87,974,0,889,0.28200000000000003,26.09,34.52,0.92,0.22,897,1.3,18,3,34.8657,27.4219 +2012,9,8,18,30,25.6,1.69,0.052000000000000005,0.59,91,983,942,0,0,2.9000000000000004,91,983,0,942,0.28300000000000003,22.95,30.080000000000002,0.92,0.22,896,1.2000000000000002,17,2.6,39.4315,31.0276 +2012,9,8,19,30,26.5,1.7,0.05,0.59,89,981,925,0,0,2.3000000000000003,89,981,0,925,0.28300000000000003,20.86,31.63,0.91,0.22,896,1.2000000000000002,18,2.3000000000000003,29.2930,23.0464 +2012,9,8,20,30,26.900000000000002,1.71,0.048,0.59,85,966,842,0,0,1.8,85,966,0,842,0.28400000000000003,19.63,38.44,0.91,0.22,895,1.2000000000000002,19,1.9000000000000001,32.1504,25.2736 +2012,9,8,21,30,26.8,1.71,0.048,0.59,79,932,699,0,0,1.4000000000000001,79,932,0,699,0.28500000000000003,19.16,48.300000000000004,0.91,0.22,894,1.2000000000000002,21,1.7000000000000002,31.0106,24.3313 +2012,9,8,22,30,26.1,1.71,0.047,0.59,69,874,511,0,0,0.9,69,874,0,511,0.28600000000000003,19.38,59.63,0.91,0.22,894,1.1,26,1.5,1.4943,1.1675 +2012,9,8,23,30,24.400000000000002,1.7,0.047,0.59,55,751,292,0,0,0.7000000000000001,55,751,0,292,0.28700000000000003,21.03,71.62,0.91,0.22,894,1.1,38,1.1,11.4306,8.8362 +2012,9,9,0,30,21.900000000000002,1.7,0.046,0.59,29,461,79,0,0,4.9,29,461,0,79,0.28800000000000003,32.97,83.79,0.9,0.22,894,1,66,0.8,0.0000,0.0000 +2012,9,9,1,30,20,1.69,0.045,0.59,0,0,0,0,0,4.4,0,0,0,0,0.29,35.79,96.09,0.9,0.22,894,1,97,0.9,0.0000,0.0000 +2012,9,9,2,30,18.8,1.68,0.045,0.59,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.291,37.730000000000004,107.91,0.9,0.22,895,0.9,121,1,0.0000,0.0000 +2012,9,9,3,30,18,1.67,0.045,0.59,0,0,0,0,0,3.7,0,0,0,0,0.292,38.77,118.97,0.9,0.22,895,0.9,145,1.1,0.0000,0.0000 +2012,9,9,4,30,17.2,1.6600000000000001,0.045,0.59,0,0,0,0,0,3.6,0,0,0,0,0.292,40.33,128.65,0.9,0.22,895,0.9,170,1.1,0.0000,0.0000 +2012,9,9,5,30,16.3,1.6500000000000001,0.045,0.59,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.292,42.13,135.95,0.89,0.22,895,0.9,193,1.2000000000000002,0.0000,0.0000 +2012,9,9,6,30,15.4,1.6400000000000001,0.045,0.59,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.292,44.49,139.5,0.89,0.22,895,0.9,211,1.2000000000000002,0.0000,0.0000 +2012,9,9,7,30,14.700000000000001,1.6400000000000001,0.046,0.59,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.292,46.550000000000004,138.3,0.89,0.22,895,0.9,224,1.2000000000000002,0.0000,0.0000 +2012,9,9,8,30,14,1.6300000000000001,0.046,0.59,0,0,0,0,0,3.5,0,0,0,0,0.292,49.21,132.73,0.89,0.22,895,0.9,236,1.3,0.0000,0.0000 +2012,9,9,9,30,13.3,1.62,0.047,0.59,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.292,52.54,124.10000000000001,0.89,0.22,895,0.9,248,1.3,0.0000,0.0000 +2012,9,9,10,30,12.8,1.62,0.048,0.59,0,0,0,0,0,4.2,0,0,0,0,0.292,55.97,113.64,0.89,0.22,895,0.9,260,1.3,0.0000,0.0000 +2012,9,9,11,30,12.4,1.62,0.05,0.59,0,0,0,0,0,4.800000000000001,0,0,0,0,0.291,59.85,102.15,0.89,0.22,895,0.9,271,1.4000000000000001,0.0000,0.0000 +2012,9,9,12,30,14,1.62,0.052000000000000005,0.59,0,0,0,0,0,5.5,0,0,0,0,0.291,56.65,89.69,0.89,0.22,896,0.9,279,2.1,0.0000,0.0000 +2012,9,9,13,30,17.5,1.62,0.053,0.59,45,635,179,0,0,6.4,45,635,0,179,0.291,48.15,77.83,0.89,0.22,896,0.9,283,2.6,5.7519,4.3986 +2012,9,9,14,30,21.5,1.62,0.053,0.59,65,822,403,0,0,6.7,65,822,0,403,0.29,38.36,65.72,0.89,0.22,896,0.9,294,1.7000000000000002,8.4453,6.5705 +2012,9,9,15,30,24.900000000000002,1.62,0.052000000000000005,0.59,76,911,612,0,0,3.4000000000000004,76,911,0,612,0.29,24.75,54.02,0.89,0.22,896,0.9,190,0.9,24.8024,19.4256 +2012,9,9,16,30,26.900000000000002,1.6300000000000001,0.051000000000000004,0.59,83,955,778,0,0,2.3000000000000003,83,955,0,778,0.29,20.330000000000002,43.34,0.89,0.22,896,1,84,1.4000000000000001,45.5774,35.7987 +2012,9,9,17,30,28.200000000000003,1.6300000000000001,0.051000000000000004,0.59,88,981,893,0,0,1.8,88,981,0,893,0.289,18.18,34.82,0.9,0.22,895,1,97,1.8,53.5047,42.0800 +2012,9,9,18,30,29.3,1.6300000000000001,0.062,0.59,96,981,943,0,0,1.4000000000000001,96,981,0,943,0.28800000000000003,16.56,30.45,0.91,0.22,894,1,105,2.1,57.1140,44.9399 +2012,9,9,19,30,29.900000000000002,1.6300000000000001,0.061,0.59,95,979,925,0,0,1,95,979,0,925,0.28700000000000003,15.56,32.01,0.91,0.22,894,1,112,2.3000000000000003,55.9487,44.0162 +2012,9,9,20,30,30.1,1.6400000000000001,0.06,0.59,91,962,841,0,0,0.6000000000000001,91,962,0,841,0.28600000000000003,15,38.800000000000004,0.91,0.22,893,1,117,2.5,50.2790,39.5226 +2012,9,9,21,30,29.8,1.59,0.07200000000000001,0.59,90,915,695,0,0,0.4,90,915,0,695,0.28600000000000003,15.030000000000001,48.620000000000005,0.92,0.22,893,1,122,2.6,40.6248,31.8721 +2012,9,9,22,30,28.900000000000002,1.59,0.07,0.59,79,849,504,0,0,0.2,79,849,0,504,0.28500000000000003,15.63,59.93,0.92,0.22,892,1,128,2.7,28.2327,22.0552 +2012,9,9,23,30,26.400000000000002,1.59,0.067,0.59,61,721,285,0,0,0.30000000000000004,61,721,0,285,0.28500000000000003,18.12,71.91,0.92,0.22,892,1,134,2,14.7292,11.3815 +2012,9,10,0,30,22.700000000000003,1.58,0.065,0.59,30,413,73,0,0,4.800000000000001,30,413,0,73,0.28500000000000003,31.2,84.08,0.91,0.22,892,0.9,142,1.4000000000000001,0.0000,0.0000 +2012,9,10,1,30,20.200000000000003,1.57,0.062,0.59,0,0,0,0,0,4.5,0,0,0,0,0.28400000000000003,35.72,96.38,0.91,0.22,893,0.9,151,1.6,0.0000,0.0000 +2012,9,10,2,30,19.200000000000003,1.57,0.058,0.59,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28400000000000003,35.980000000000004,108.21000000000001,0.91,0.22,893,0.9,160,1.9000000000000001,0.0000,0.0000 +2012,9,10,3,30,18.400000000000002,1.56,0.056,0.59,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28300000000000003,36.51,119.3,0.91,0.22,893,0.9,168,2.1,0.0000,0.0000 +2012,9,10,4,30,17.7,1.56,0.054,0.59,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28300000000000003,37.32,129.01,0.9,0.22,893,0.9,178,2.2,0.0000,0.0000 +2012,9,10,5,30,17,1.56,0.053,0.59,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.28200000000000003,38.69,136.33,0.9,0.22,893,0.9,188,2.3000000000000003,0.0000,0.0000 +2012,9,10,6,30,16.3,1.56,0.052000000000000005,0.59,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.281,40.5,139.88,0.9,0.22,894,0.9,198,2.4000000000000004,0.0000,0.0000 +2012,9,10,7,30,15.700000000000001,1.56,0.051000000000000004,0.59,0,0,0,0,1,2.9000000000000004,0,0,0,0,0.281,42.4,138.65,0.9,0.22,894,0.9,206,2.4000000000000004,0.0000,0.0000 +2012,9,10,8,30,15.100000000000001,1.57,0.052000000000000005,0.59,0,0,0,0,0,3.2,0,0,0,0,0.281,44.81,133.01,0.91,0.22,893,0.9,214,2.4000000000000004,0.0000,0.0000 +2012,9,10,9,30,14.4,1.58,0.052000000000000005,0.59,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28200000000000003,48.82,124.33,0.91,0.22,893,0.9,219,2.2,0.0000,0.0000 +2012,9,10,10,30,13.8,1.59,0.052000000000000005,0.59,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.28300000000000003,53.800000000000004,113.83,0.91,0.22,893,1,224,1.9000000000000001,0.0000,0.0000 +2012,9,10,11,30,13.3,1.6,0.052000000000000005,0.59,0,0,0,0,0,5.4,0,0,0,0,0.28300000000000003,58.81,102.32000000000001,0.91,0.22,893,1.1,225,1.8,0.0000,0.0000 +2012,9,10,12,30,14.600000000000001,1.61,0.053,0.59,0,0,0,0,0,6.2,0,0,0,0,0.28400000000000003,56.99,89.82000000000001,0.91,0.22,893,1.2000000000000002,224,2.4000000000000004,0.0000,0.0000 +2012,9,10,13,30,17.7,1.62,0.053,0.59,45,620,174,0,0,6.9,45,620,0,174,0.28400000000000003,49.24,77.98,0.92,0.22,893,1.2000000000000002,217,3.1,8.5736,6.5547 +2012,9,10,14,30,21.700000000000003,1.6300000000000001,0.054,0.59,65,801,392,0,0,7.1000000000000005,65,801,0,392,0.28400000000000003,38.79,65.88,0.92,0.22,893,1.4000000000000001,208,4.1000000000000005,21.3794,16.6309 +2012,9,10,15,30,25.400000000000002,1.6400000000000001,0.056,0.59,78,885,596,0,0,4.5,78,885,0,596,0.28400000000000003,25.98,54.2,0.92,0.22,893,1.5,204,5,34.7867,27.2438 +2012,9,10,16,30,27.700000000000003,1.6500000000000001,0.059000000000000004,0.59,88,925,758,0,0,4.3,88,925,0,758,0.28300000000000003,22.38,43.57,0.93,0.22,892,1.7000000000000002,203,5.1000000000000005,45.9043,36.0540 +2012,9,10,17,30,29.400000000000002,1.6600000000000001,0.062,0.59,94,943,866,0,0,5.1000000000000005,94,943,0,866,0.28300000000000003,21.47,35.12,0.93,0.22,892,1.9000000000000001,202,5.1000000000000005,53.7157,42.2444 +2012,9,10,18,30,30.700000000000003,1.6500000000000001,0.062,0.59,96,951,913,0,0,6,96,951,0,913,0.28200000000000003,21.19,30.810000000000002,0.93,0.22,890,2,199,5.1000000000000005,57.1428,44.9609 +2012,9,10,19,30,31.6,1.6500000000000001,0.063,0.59,95,942,891,0,0,6.7,95,942,0,891,0.28200000000000003,21.17,32.4,0.93,0.22,889,2.2,197,5.2,55.9142,43.9874 +2012,9,10,20,30,32,1.6400000000000001,0.065,0.59,93,922,808,0,0,7.2,93,922,0,808,0.281,21.34,39.160000000000004,0.93,0.22,888,2.2,195,5.300000000000001,50.1794,39.4422 +2012,9,10,21,30,31.8,1.6300000000000001,0.065,0.59,86,884,667,0,0,7.4,86,884,0,667,0.281,21.84,48.95,0.93,0.22,888,2.2,192,5.300000000000001,40.3481,31.6524 +2012,9,10,22,30,31,1.6300000000000001,0.065,0.59,75,816,480,0,0,7.300000000000001,75,816,0,480,0.28,22.72,60.230000000000004,0.93,0.22,887,2.2,189,5.2,27.7975,21.7116 +2012,9,10,23,30,29.1,1.62,0.065,0.59,59,683,268,0,0,7.1000000000000005,59,683,0,268,0.28,25.11,72.2,0.93,0.22,887,2.2,184,4.4,14.3375,11.0741 +2012,9,11,0,30,26.1,1.62,0.065,0.59,29,368,65,0,0,7.5,29,368,0,65,0.28,30.7,84.36,0.93,0.22,888,2.1,176,3.4000000000000004,0.0000,0.0000 +2012,9,11,1,30,24,1.61,0.065,0.59,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28,35.410000000000004,96.68,0.93,0.22,888,2.2,170,3.5,0.0000,0.0000 +2012,9,11,2,30,22.900000000000002,1.61,0.066,0.59,0,0,0,0,1,7.300000000000001,0,0,0,0,0.28,36.730000000000004,108.52,0.92,0.22,888,2.2,170,4,0.0000,0.0000 +2012,9,11,3,30,21.8,1.62,0.068,0.59,0,0,0,0,3,7,0,0,0,0,0.28,38.4,119.63,0.93,0.22,889,2.2,172,4.2,0.0000,0.0000 +2012,9,11,4,30,20.900000000000002,1.62,0.073,0.59,0,0,0,0,4,6.6000000000000005,0,0,0,0,0.28,39.49,129.37,0.93,0.22,889,2.3000000000000003,175,4.3,0.0000,0.0000 +2012,9,11,5,30,20.1,1.61,0.078,0.59,0,0,0,0,4,6.2,0,0,0,0,0.28,40.42,136.72,0.93,0.22,889,2.4000000000000004,179,4.4,0.0000,0.0000 +2012,9,11,6,30,19.700000000000003,1.6,0.08600000000000001,0.59,0,0,0,0,4,5.9,0,0,0,0,0.28,40.45,140.27,0.9400000000000001,0.22,889,2.5,184,4.5,0.0000,0.0000 +2012,9,11,7,30,19.3,1.58,0.095,0.59,0,0,0,0,3,5.5,0,0,0,0,0.279,40.51,139,0.9400000000000001,0.22,888,2.6,188,4.5,0.0000,0.0000 +2012,9,11,8,30,19,1.56,0.10300000000000001,0.59,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28,40.44,133.3,0.9500000000000001,0.22,888,2.6,193,4.4,0.0000,0.0000 +2012,9,11,9,30,18.7,1.55,0.106,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.28,40.75,124.56,0.9500000000000001,0.22,888,2.5,198,4.3,0.0000,0.0000 +2012,9,11,10,30,18.400000000000002,1.56,0.106,0.59,0,0,0,0,1,5,0,0,0,0,0.28,41.15,114.02,0.9500000000000001,0.22,888,2.5,200,4.1000000000000005,0.0000,0.0000 +2012,9,11,11,30,18.1,1.58,0.10200000000000001,0.59,0,0,0,0,0,4.9,0,0,0,0,0.28,41.63,102.48,0.9400000000000001,0.22,888,2.4000000000000004,203,4.1000000000000005,0.0000,0.0000 +2012,9,11,12,30,18.6,1.6,0.096,0.59,0,0,0,0,0,4.800000000000001,0,0,0,0,0.28,40.21,89.96000000000001,0.9400000000000001,0.22,888,2.4000000000000004,206,4.4,0.0000,0.0000 +2012,9,11,13,30,21.1,1.62,0.09,0.59,52,522,159,0,0,4.9,52,522,0,159,0.281,34.69,78.13,0.9400000000000001,0.22,888,2.5,208,5.1000000000000005,8.3278,6.3651 +2012,9,11,14,30,25,1.6400000000000001,0.084,0.59,74,732,372,0,0,5.2,74,732,0,372,0.281,28.03,66.03,0.9400000000000001,0.22,888,2.5,211,6.1000000000000005,20.7703,16.1548 +2012,9,11,15,30,28.700000000000003,1.6500000000000001,0.079,0.59,87,835,573,0,0,6,87,835,0,573,0.28,23.76,54.39,0.9400000000000001,0.22,888,2.5,214,6.5,33.8502,26.5086 +2012,9,11,16,30,31.6,1.6600000000000001,0.075,0.59,95,893,739,0,0,7.1000000000000005,95,893,0,739,0.28,21.73,43.800000000000004,0.9400000000000001,0.22,887,2.4000000000000004,213,6.300000000000001,44.6961,35.1035 +2012,9,11,17,30,33.6,1.6600000000000001,0.073,0.59,99,922,851,0,0,7.800000000000001,99,922,0,851,0.279,20.31,35.42,0.9400000000000001,0.22,887,2.4000000000000004,208,6.1000000000000005,52.0623,40.9427 +2012,9,11,18,30,34.800000000000004,1.6600000000000001,0.07100000000000001,0.59,100,937,901,0,0,7.7,100,937,0,901,0.279,18.830000000000002,31.18,0.93,0.22,886,2.3000000000000003,203,6.1000000000000005,55.2943,43.5050 +2012,9,11,19,30,35.4,1.6500000000000001,0.07100000000000001,0.59,100,936,886,0,0,6.9,100,936,0,886,0.278,17.330000000000002,32.79,0.9400000000000001,0.22,885,2.2,198,6.2,53.8243,42.3415 +2012,9,11,20,30,35.5,1.6400000000000001,0.07200000000000001,0.59,96,916,803,0,0,6.2,96,916,0,803,0.278,16.38,39.53,0.9400000000000001,0.22,885,2.2,195,6.2,48.1716,37.8619 +2012,9,11,21,30,35.1,1.62,0.07100000000000001,0.59,89,881,663,0,0,5.7,89,881,0,663,0.277,16.21,49.28,0.9400000000000001,0.22,884,2.1,192,6.2,38.6782,30.3397 +2012,9,11,22,30,34.1,1.61,0.073,0.59,78,808,476,0,0,5.6000000000000005,78,808,0,476,0.277,17.04,60.54,0.9400000000000001,0.22,884,2.1,188,6,26.4271,20.6378 +2012,9,11,23,30,32.2,1.6,0.076,0.59,62,663,261,0,0,5.800000000000001,62,663,0,261,0.277,19.21,72.5,0.9500000000000001,0.22,884,2.2,182,5.300000000000001,13.4459,10.3810 +2012,9,12,0,30,29.3,1.6,0.081,0.59,30,326,60,0,0,6.5,30,326,0,60,0.278,23.8,84.65,0.9500000000000001,0.21,885,2.2,173,4.6000000000000005,0.0000,0.0000 +2012,9,12,1,30,27.200000000000003,1.59,0.08600000000000001,0.59,0,0,0,0,7,7.1000000000000005,0,0,0,0,0.279,28.07,96.97,0.9500000000000001,0.21,885,2.3000000000000003,168,4.7,0.0000,0.0000 +2012,9,12,2,30,26,1.57,0.093,0.59,0,0,0,0,3,7.5,0,0,0,0,0.279,30.79,108.83,0.9500000000000001,0.21,886,2.3000000000000003,168,4.800000000000001,0.0000,0.0000 +2012,9,12,3,30,25.1,1.56,0.10200000000000001,0.59,0,0,0,0,8,7.800000000000001,0,0,0,0,0.279,33.14,119.96000000000001,0.9500000000000001,0.21,886,2.5,173,4.9,0.0000,0.0000 +2012,9,12,4,30,24.3,1.56,0.109,0.59,0,0,0,0,1,8.1,0,0,0,0,0.279,35.61,129.73,0.9500000000000001,0.21,886,2.6,178,4.7,0.0000,0.0000 +2012,9,12,5,30,23.5,1.59,0.111,0.59,0,0,0,0,0,8.5,0,0,0,0,0.279,38.45,137.11,0.9500000000000001,0.21,887,2.7,182,4.5,0.0000,0.0000 +2012,9,12,6,30,22.8,1.61,0.109,0.59,0,0,0,0,0,8.8,0,0,0,0,0.279,40.97,140.66,0.9500000000000001,0.21,887,2.7,186,4.4,0.0000,0.0000 +2012,9,12,7,30,22.200000000000003,1.61,0.106,0.59,0,0,0,0,0,9,0,0,0,0,0.279,43,139.34,0.9500000000000001,0.21,887,2.7,192,4.5,0.0000,0.0000 +2012,9,12,8,30,21.700000000000003,1.61,0.107,0.59,0,0,0,0,0,9,0,0,0,0,0.278,44.27,133.59,0.9500000000000001,0.21,887,2.7,198,4.5,0.0000,0.0000 +2012,9,12,9,30,21.200000000000003,1.6,0.107,0.59,0,0,0,0,0,8.6,0,0,0,0,0.279,44.54,124.79,0.9500000000000001,0.21,887,2.7,204,4.4,0.0000,0.0000 +2012,9,12,10,30,20.700000000000003,1.61,0.107,0.59,0,0,0,0,0,8,0,0,0,0,0.279,44,114.21000000000001,0.9500000000000001,0.21,887,2.8000000000000003,210,4.1000000000000005,0.0000,0.0000 +2012,9,12,11,30,20.1,1.61,0.109,0.59,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.279,44.27,102.64,0.9500000000000001,0.21,887,2.9000000000000004,218,3.8000000000000003,0.0000,0.0000 +2012,9,12,12,30,20.400000000000002,1.61,0.116,0.59,0,0,0,0,4,7.7,0,0,0,0,0.279,43.910000000000004,90.09,0.9500000000000001,0.21,887,3.1,228,3.8000000000000003,0.0000,0.0000 +2012,9,12,13,30,22.6,1.6,0.128,0.59,58,454,150,7,4,8.700000000000001,58,0,7,58,0.279,40.93,78.27,0.9500000000000001,0.21,888,3.2,239,4.4,7.6046,5.8108 +2012,9,12,14,30,25.400000000000002,1.58,0.136,0.59,90,658,355,0,4,11,31,0,0,31,0.28,40.39,66.19,0.9500000000000001,0.21,889,3.2,247,4.800000000000001,19.6878,15.3108 +2012,9,12,15,30,27.3,1.58,0.133,0.59,107,766,552,0,3,11.9,329,110,0,392,0.28,38.44,54.57,0.9500000000000001,0.21,889,3.3000000000000003,250,4.5,32.5162,25.4621 +2012,9,12,16,30,28.1,1.58,0.123,0.59,115,833,714,7,7,12.200000000000001,329,120,7,415,0.281,37.49,44.03,0.9500000000000001,0.21,889,3.3000000000000003,245,3.7,43.5481,34.2003 +2012,9,12,17,30,28.5,1.57,0.11800000000000001,0.59,120,868,824,7,3,12.5,390,406,7,719,0.281,37.25,35.72,0.9500000000000001,0.21,889,3.3000000000000003,227,2.8000000000000003,51.1314,40.2091 +2012,9,12,18,30,28.700000000000003,1.53,0.105,0.59,117,888,873,0,8,12.8,332,421,0,691,0.281,37.43,31.560000000000002,0.96,0.21,888,3.4000000000000004,205,2.4000000000000004,54.5360,42.9068 +2012,9,12,19,30,28.200000000000003,1.48,0.126,0.59,125,864,849,0,7,13.200000000000001,278,557,0,745,0.281,39.72,33.18,0.96,0.21,888,3.6,197,2.1,53.4872,42.0746 +2012,9,12,20,30,26.6,1.42,0.153,0.59,133,819,761,0,6,14,124,0,0,124,0.281,45.96,39.89,0.97,0.21,888,3.7,209,1.7000000000000002,47.8332,37.5938 +2012,9,12,21,30,24.700000000000003,1.3900000000000001,0.17500000000000002,0.59,131,752,618,0,8,15.5,307,97,0,370,0.28,56.59,49.61,0.97,0.21,889,3.8000000000000003,251,1.5,38.4015,30.1200 +2012,9,12,22,30,22.8,1.3900000000000001,0.191,0.59,118,650,434,0,7,16.1,65,569,0,342,0.279,65.78,60.85,0.97,0.21,889,3.9000000000000004,306,2,26.1584,20.4243 +2012,9,12,23,30,21.1,1.4000000000000001,0.20400000000000001,0.59,90,474,230,0,7,16.2,72,2,0,73,0.279,73.65,72.79,0.97,0.21,890,3.9000000000000004,166,2.8000000000000003,13.0582,10.0771 +2012,9,13,0,30,19.700000000000003,1.42,0.22,0.59,34,145,47,7,8,16,25,0,7,25,0.28,79.14,84.93,0.97,0.21,890,3.8000000000000003,11,3.5,0.0000,0.0000 +2012,9,13,1,30,18.5,1.43,0.234,0.59,0,0,0,0,8,15.4,0,0,0,0,0.28,82.19,97.27,0.97,0.21,891,3.7,25,4.1000000000000005,0.0000,0.0000 +2012,9,13,2,30,17.5,1.43,0.244,0.59,0,0,0,0,6,14.700000000000001,0,0,0,0,0.281,83.62,109.14,0.97,0.21,892,3.6,28,4.7,0.0000,0.0000 +2012,9,13,3,30,16.6,1.41,0.267,0.59,0,0,0,0,6,13.9,0,0,0,0,0.281,84,120.29,0.97,0.21,893,3.5,26,5,0.0000,0.0000 +2012,9,13,4,30,15.8,1.4000000000000001,0.28400000000000003,0.59,0,0,0,0,6,13,0,0,0,0,0.28200000000000003,83.5,130.09,0.97,0.21,893,3.5,22,5.300000000000001,0.0000,0.0000 +2012,9,13,5,30,15,1.3900000000000001,0.292,0.59,0,0,0,0,6,12.3,0,0,0,0,0.28200000000000003,83.87,137.49,0.97,0.21,894,3.6,19,5.6000000000000005,0.0000,0.0000 +2012,9,13,6,30,14.4,1.3900000000000001,0.32,0.59,0,0,0,0,7,11.8,0,0,0,0,0.28200000000000003,84.55,141.04,0.97,0.21,894,3.6,18,5.9,0.0000,0.0000 +2012,9,13,7,30,13.8,1.4000000000000001,0.34,0.59,0,0,0,0,7,11.5,0,0,0,0,0.281,86.23,139.69,0.97,0.21,894,3.7,17,6.2,0.0000,0.0000 +2012,9,13,8,30,13.100000000000001,1.4000000000000001,0.317,0.59,0,0,0,0,6,11.3,0,0,0,0,0.281,88.7,133.87,0.97,0.21,894,3.6,12,6.1000000000000005,0.0000,0.0000 +2012,9,13,9,30,12.4,1.42,0.313,0.59,0,0,0,0,6,10.9,0,0,0,0,0.281,90.84,125.02,0.97,0.21,895,3.5,184,5.800000000000001,0.0000,0.0000 +2012,9,13,10,30,11.700000000000001,1.44,0.341,0.59,0,0,0,0,8,10.600000000000001,0,0,0,0,0.281,92.94,114.4,0.97,0.21,896,3.3000000000000003,358,5.7,0.0000,0.0000 +2012,9,13,11,30,11.100000000000001,1.47,0.277,0.59,0,0,0,0,7,10.200000000000001,0,0,0,0,0.28200000000000003,94.19,102.8,0.97,0.21,896,3.1,179,5.800000000000001,0.0000,0.0000 +2012,9,13,12,30,10.9,1.5,0.228,0.59,0,0,0,0,7,9.8,0,0,0,0,0.28300000000000003,92.81,90.2,0.97,0.21,897,3,6,5.800000000000001,0.0000,0.0000 +2012,9,13,13,30,11,1.52,0.20500000000000002,0.59,68,367,142,0,8,9.5,81,7,0,82,0.28300000000000003,90.36,78.42,0.96,0.21,897,3,15,6,2.7723,2.1179 +2012,9,13,14,30,11.700000000000001,1.52,0.194,0.59,106,602,348,0,4,9.3,29,0,0,29,0.28300000000000003,85.47,66.35,0.96,0.21,898,2.9000000000000004,23,6.300000000000001,1.6386,1.2741 +2012,9,13,15,30,12.8,1.5,0.189,0.59,129,723,546,0,4,9.4,34,0,0,34,0.28200000000000003,79.61,54.76,0.96,0.21,898,2.8000000000000003,28,6.6000000000000005,22.2269,17.4037 +2012,9,13,16,30,14.200000000000001,1.49,0.176,0.59,138,798,710,0,4,9.4,74,0,0,74,0.281,72.77,44.27,0.96,0.21,898,2.8000000000000003,26,6.7,24.4396,19.1926 +2012,9,13,17,30,15.100000000000001,1.49,0.157,0.59,139,845,822,0,4,9.3,101,0,0,101,0.28,68.4,36.03,0.96,0.21,898,2.8000000000000003,22,6.7,43.1754,33.9513 +2012,9,13,18,30,15.3,1.48,0.14300000000000002,0.59,135,868,872,0,4,9.1,104,0,0,104,0.279,66.55,31.93,0.96,0.21,898,2.8000000000000003,17,6.6000000000000005,41.7999,32.8852 +2012,9,13,19,30,15.3,1.48,0.123,0.59,125,878,857,0,4,8.8,118,0,0,118,0.277,65.24,33.57,0.96,0.21,898,2.8000000000000003,15,6.5,44.9451,35.3536 +2012,9,13,20,30,15.3,1.51,0.105,0.59,112,873,778,0,4,8.5,379,39,0,409,0.275,63.7,40.25,0.9500000000000001,0.21,898,2.7,16,6.300000000000001,7.3803,5.8001 +2012,9,13,21,30,15.700000000000001,1.53,0.092,0.59,98,845,641,0,4,8,351,80,0,403,0.275,60.39,49.94,0.9500000000000001,0.21,897,2.6,19,6.2,21.4054,16.7877 +2012,9,13,22,30,15.8,1.56,0.082,0.59,81,781,458,0,3,7.6000000000000005,98,0,0,98,0.275,58.39,61.15,0.9400000000000001,0.21,898,2.5,23,5.9,18.7592,14.6444 +2012,9,13,23,30,15.100000000000001,1.58,0.078,0.59,61,644,249,0,3,7.300000000000001,66,0,0,66,0.276,59.800000000000004,73.08,0.9400000000000001,0.21,898,2.4000000000000004,27,5.4,3.6424,2.8096 +2012,9,14,0,30,14,1.59,0.077,0.59,27,302,52,0,1,7.2,27,302,0,52,0.277,63.440000000000005,85.21000000000001,0.9400000000000001,0.22,899,2.4000000000000004,29,4.5,0.0000,0.0000 +2012,9,14,1,30,13,1.62,0.075,0.59,0,0,0,0,1,7.2,0,0,0,0,0.278,67.68,97.57000000000001,0.93,0.22,899,2.3000000000000003,30,3.8000000000000003,0.0000,0.0000 +2012,9,14,2,30,12.3,1.6400000000000001,0.07200000000000001,0.59,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.279,70.79,109.45,0.93,0.22,899,2.2,28,3.5,0.0000,0.0000 +2012,9,14,3,30,11.5,1.6600000000000001,0.07100000000000001,0.59,0,0,0,0,0,7,0,0,0,0,0.279,73.94,120.63,0.93,0.22,900,2.2,24,3.4000000000000004,0.0000,0.0000 +2012,9,14,4,30,10.9,1.6600000000000001,0.07100000000000001,0.59,0,0,0,0,1,6.800000000000001,0,0,0,0,0.279,75.93,130.45,0.93,0.22,900,2.1,20,3.3000000000000003,0.0000,0.0000 +2012,9,14,5,30,10.4,1.6600000000000001,0.07200000000000001,0.59,0,0,0,0,1,6.6000000000000005,0,0,0,0,0.278,77.34,137.88,0.93,0.22,900,2.1,18,3.2,0.0000,0.0000 +2012,9,14,6,30,9.9,1.6600000000000001,0.07100000000000001,0.59,0,0,0,0,1,6.4,0,0,0,0,0.278,78.61,141.43,0.93,0.22,900,2,15,3.2,0.0000,0.0000 +2012,9,14,7,30,9.4,1.6500000000000001,0.069,0.59,0,0,0,0,3,6.1000000000000005,0,0,0,0,0.278,79.62,140.04,0.93,0.22,899,1.9000000000000001,10,3.2,0.0000,0.0000 +2012,9,14,8,30,8.9,1.6500000000000001,0.066,0.59,0,0,0,0,7,5.7,0,0,0,0,0.278,80.55,134.16,0.93,0.22,899,1.8,3,3.3000000000000003,0.0000,0.0000 +2012,9,14,9,30,8.5,1.6300000000000001,0.062,0.59,0,0,0,0,4,5.4,0,0,0,0,0.279,80.89,125.25,0.92,0.22,899,1.7000000000000002,178,3.4000000000000004,0.0000,0.0000 +2012,9,14,10,30,8,1.62,0.058,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.28,81.71000000000001,114.58,0.92,0.22,899,1.6,354,3.4000000000000004,0.0000,0.0000 +2012,9,14,11,30,7.6000000000000005,1.6,0.055,0.59,0,0,0,0,1,4.7,0,0,0,0,0.281,81.84,102.97,0.92,0.22,899,1.5,352,3.4000000000000004,0.0000,0.0000 +2012,9,14,12,30,8,1.59,0.054,0.59,0,0,0,0,0,4.3,0,0,0,0,0.281,77.43,90.88,0.91,0.22,899,1.5,352,3.7,0.0000,0.0000 +2012,9,14,13,30,10.200000000000001,1.59,0.053,0.59,44,596,162,0,0,3.8000000000000003,44,596,0,162,0.28200000000000003,64.58,78.57000000000001,0.92,0.22,899,1.5,181,4.5,3.9172,2.9917 +2012,9,14,14,30,13.3,1.6,0.052000000000000005,0.59,64,791,379,0,4,2.3000000000000003,201,20,0,209,0.28300000000000003,47.42,66.51,0.92,0.22,900,1.6,16,5.1000000000000005,1.5310,1.1903 +2012,9,14,15,30,16,1.61,0.053,0.59,76,879,581,0,4,1.4000000000000001,158,0,0,158,0.28200000000000003,37.160000000000004,54.95,0.92,0.22,899,1.7000000000000002,26,5.4,1.9262,1.5081 +2012,9,14,16,30,18.1,1.62,0.054,0.59,85,924,744,0,4,0.7000000000000001,379,87,0,441,0.28200000000000003,31.060000000000002,44.51,0.92,0.22,899,1.8,32,5.5,4.3550,3.4198 +2012,9,14,17,30,19.6,1.62,0.055,0.59,90,947,853,0,4,0.7000000000000001,432,115,0,525,0.281,28.310000000000002,36.33,0.93,0.22,899,1.9000000000000001,36,5.4,6.0613,4.7662 +2012,9,14,18,30,20.3,1.67,0.074,0.59,102,940,896,0,4,1.3,454,88,0,529,0.28,28.150000000000002,32.3,0.9400000000000001,0.22,898,2,39,5.2,6.2874,4.9463 +2012,9,14,19,30,20.3,1.6600000000000001,0.076,0.59,102,934,877,0,4,1.8,427,40,0,460,0.28,29.17,33.97,0.9400000000000001,0.22,898,2,41,5,7.1140,5.5956 +2012,9,14,20,30,20.200000000000003,1.6500000000000001,0.074,0.59,97,916,792,0,4,2,415,107,0,496,0.28,29.900000000000002,40.62,0.9400000000000001,0.22,897,2,41,4.800000000000001,24.3225,19.1137 +2012,9,14,21,30,20.200000000000003,1.6500000000000001,0.069,0.59,88,883,652,0,3,2.1,367,107,0,435,0.28,30.04,50.28,0.9400000000000001,0.22,897,1.9000000000000001,41,4.6000000000000005,23.2866,18.2613 +2012,9,14,22,30,19.900000000000002,1.67,0.064,0.59,74,816,464,0,3,2,266,59,0,294,0.28,30.34,61.46,0.93,0.22,896,1.9000000000000001,42,4.4,5.3655,4.1878 +2012,9,14,23,30,18.400000000000002,1.68,0.059000000000000004,0.59,56,685,251,0,3,1.8,136,9,0,138,0.28,32.81,73.38,0.93,0.22,896,1.8,45,3.4000000000000004,3.2843,2.5322 +2012,9,15,0,30,15.700000000000001,1.68,0.056,0.59,24,341,51,7,3,2.6,33,1,7,33,0.28,41.37,85.5,0.92,0.22,897,1.8,53,2,0.0000,0.0000 +2012,9,15,1,30,13.600000000000001,1.68,0.055,0.59,0,0,0,0,0,3.7,0,0,0,0,0.281,51.18,97.87,0.92,0.22,897,1.8,60,1.4000000000000001,0.0000,0.0000 +2012,9,15,2,30,12.700000000000001,1.68,0.054,0.59,0,0,0,0,0,3.7,0,0,0,0,0.281,54.27,109.77,0.92,0.22,897,1.8,65,1.3,0.0000,0.0000 +2012,9,15,3,30,11.9,1.67,0.053,0.59,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.281,57.69,120.96000000000001,0.92,0.22,898,1.8,67,1.1,0.0000,0.0000 +2012,9,15,4,30,11.3,1.6600000000000001,0.053,0.59,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.281,60.54,130.82,0.92,0.22,898,1.8,66,1,0.0000,0.0000 +2012,9,15,5,30,11,1.6600000000000001,0.052000000000000005,0.59,0,0,0,0,0,4,0,0,0,0,0.281,61.86,138.27,0.92,0.22,897,1.8,60,0.9,0.0000,0.0000 +2012,9,15,6,30,11.100000000000001,1.6500000000000001,0.051000000000000004,0.59,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.281,60.56,141.82,0.92,0.22,897,1.8,42,0.8,0.0000,0.0000 +2012,9,15,7,30,11.100000000000001,1.6500000000000001,0.049,0.59,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.28200000000000003,58.97,140.39000000000001,0.91,0.22,897,1.8,180,0.7000000000000001,0.0000,0.0000 +2012,9,15,8,30,10.200000000000001,1.6400000000000001,0.048,0.59,0,0,0,0,0,3,0,0,0,0,0.28200000000000003,61.160000000000004,134.44,0.91,0.22,897,1.7000000000000002,325,0.9,0.0000,0.0000 +2012,9,15,9,30,9.1,1.6400000000000001,0.048,0.59,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.28300000000000003,64.96000000000001,125.47,0.91,0.22,896,1.7000000000000002,314,1,0.0000,0.0000 +2012,9,15,10,30,8.4,1.6400000000000001,0.048,0.59,0,0,0,0,0,2.6,0,0,0,0,0.28400000000000003,66.96000000000001,114.77,0.91,0.22,896,1.7000000000000002,312,1.1,0.0000,0.0000 +2012,9,15,11,30,8.1,1.6400000000000001,0.048,0.59,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.28500000000000003,66.72,103.13,0.91,0.22,897,1.6,313,1.3,0.0000,0.0000 +2012,9,15,12,30,9.200000000000001,1.6400000000000001,0.049,0.59,0,0,0,0,0,2,0,0,0,0,0.28500000000000003,60.79,91.03,0.91,0.22,897,1.6,316,1.9000000000000001,0.0000,0.0000 +2012,9,15,13,30,12,1.6500000000000001,0.048,0.59,42,599,159,0,0,2.1,42,599,0,159,0.28500000000000003,50.93,78.72,0.91,0.22,897,1.6,317,2.3000000000000003,7.7347,5.9058 +2012,9,15,14,30,15.600000000000001,1.6500000000000001,0.048,0.59,62,796,377,0,0,2.6,62,796,0,377,0.28500000000000003,41.480000000000004,66.68,0.91,0.22,897,1.6,326,1.8,11.0197,8.5660 +2012,9,15,15,30,18.900000000000002,1.6500000000000001,0.048,0.59,74,887,581,0,0,2.4000000000000004,74,887,0,581,0.28400000000000003,33.42,55.14,0.91,0.22,896,1.6,341,1.2000000000000002,8.9432,7.0015 +2012,9,15,16,30,21.1,1.6400000000000001,0.047,0.59,81,940,748,0,0,2.8000000000000003,81,940,0,748,0.28300000000000003,30,44.75,0.91,0.22,896,1.5,350,0.9,25.9355,20.3654 +2012,9,15,17,30,22.8,1.6400000000000001,0.046,0.59,85,966,860,0,8,3.3000000000000003,240,651,0,762,0.28200000000000003,27.85,36.64,0.91,0.22,895,1.5,354,0.7000000000000001,31.4881,24.7590 +2012,9,15,18,30,24.200000000000003,1.6500000000000001,0.047,0.59,87,978,911,0,7,3.4000000000000004,322,492,0,736,0.28200000000000003,25.82,32.68,0.91,0.22,894,1.4000000000000001,182,0.5,31.9616,25.1432 +2012,9,15,19,30,25.1,1.6500000000000001,0.046,0.59,86,976,892,0,7,3.3000000000000003,234,714,0,824,0.281,24.38,34.36,0.92,0.22,893,1.4000000000000001,25,0.4,27.7128,21.7968 +2012,9,15,20,30,25.5,1.6400000000000001,0.046,0.59,83,961,808,0,7,3.2,353,282,0,566,0.28,23.56,40.99,0.92,0.22,893,1.3,58,0.4,29.4701,23.1575 +2012,9,15,21,30,25.3,1.73,0.054,0.59,81,919,664,0,7,3,300,328,0,508,0.281,23.56,50.61,0.92,0.22,892,1.2000000000000002,78,0.6000000000000001,25.1041,19.6847 +2012,9,15,22,30,24.400000000000002,1.72,0.053,0.59,70,850,472,0,7,2.9000000000000004,241,98,0,287,0.281,24.6,61.78,0.92,0.22,892,1.2000000000000002,90,0.8,16.0655,12.5368 +2012,9,15,23,30,22.3,1.71,0.052000000000000005,0.59,53,715,254,0,7,2.9000000000000004,10,559,0,167,0.28200000000000003,27.95,73.68,0.92,0.22,892,1.1,111,0.8,6.8480,5.2773 +2012,9,16,0,30,19.200000000000003,1.7,0.052000000000000005,0.59,23,355,49,7,7,7.2,33,4,7,33,0.28200000000000003,45.65,85.79,0.91,0.22,892,1.1,134,0.9,0.0000,0.0000 +2012,9,16,1,30,16.7,1.69,0.051000000000000004,0.59,0,0,0,0,7,6,0,0,0,0,0.28300000000000003,49.18,98.17,0.91,0.22,892,1,154,1.1,0.0000,0.0000 +2012,9,16,2,30,15.200000000000001,1.69,0.05,0.59,0,0,0,0,7,5.9,0,0,0,0,0.28300000000000003,53.85,110.08,0.91,0.22,892,1,172,1.2000000000000002,0.0000,0.0000 +2012,9,16,3,30,14.3,1.69,0.049,0.59,0,0,0,0,7,5.800000000000001,0,0,0,0,0.28300000000000003,56.82,121.29,0.91,0.22,892,0.9,188,1.4000000000000001,0.0000,0.0000 +2012,9,16,4,30,13.5,1.7,0.049,0.59,0,0,0,0,7,6,0,0,0,0,0.28200000000000003,60.32,131.18,0.91,0.22,892,0.9,204,1.5,0.0000,0.0000 +2012,9,16,5,30,12.8,1.71,0.049,0.59,0,0,0,0,7,6.1000000000000005,0,0,0,0,0.281,63.730000000000004,138.66,0.9,0.22,892,0.9,219,1.6,0.0000,0.0000 +2012,9,16,6,30,12.200000000000001,1.71,0.048,0.59,0,0,0,0,7,6.1000000000000005,0,0,0,0,0.28,66.46000000000001,142.22,0.9,0.22,892,0.9,231,1.7000000000000002,0.0000,0.0000 +2012,9,16,7,30,11.700000000000001,1.72,0.048,0.59,0,0,0,0,8,6,0,0,0,0,0.279,67.91,140.74,0.9,0.22,891,0.8,241,1.8,0.0000,0.0000 +2012,9,16,8,30,11,1.72,0.047,0.59,0,0,0,0,7,5.5,0,0,0,0,0.279,68.99,134.73,0.9,0.22,891,0.8,249,1.7000000000000002,0.0000,0.0000 +2012,9,16,9,30,10.4,1.73,0.047,0.59,0,0,0,0,8,4.9,0,0,0,0,0.278,68.85000000000001,125.7,0.9,0.22,891,0.8,259,1.6,0.0000,0.0000 +2012,9,16,10,30,9.8,1.73,0.046,0.59,0,0,0,0,1,4.2,0,0,0,0,0.278,68.34,114.96000000000001,0.89,0.22,891,0.7000000000000001,268,1.5,0.0000,0.0000 +2012,9,16,11,30,9.3,1.73,0.046,0.59,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.278,66.84,103.29,0.89,0.22,891,0.7000000000000001,277,1.4000000000000001,0.0000,0.0000 +2012,9,16,12,30,10.600000000000001,1.74,0.046,0.59,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.278,58.54,91.18,0.89,0.22,891,0.7000000000000001,285,1.7000000000000002,0.0000,0.0000 +2012,9,16,13,30,13.700000000000001,1.75,0.047,0.59,42,637,165,0,0,3.2,42,637,0,165,0.277,49.22,78.87,0.89,0.22,891,0.7000000000000001,290,2.1,7.5879,5.7924 +2012,9,16,14,30,17.6,1.76,0.049,0.59,62,832,389,0,0,3.3000000000000003,62,832,0,389,0.278,38.42,66.84,0.89,0.22,891,0.7000000000000001,294,1.6,19.8509,15.4284 +2012,9,16,15,30,21.900000000000002,1.78,0.051000000000000004,0.59,75,920,599,0,0,3.2,75,920,0,599,0.278,29.32,55.33,0.89,0.22,891,0.7000000000000001,163,0.8,32.8572,25.7216 +2012,9,16,16,30,24.700000000000003,1.81,0.054,0.59,84,966,767,0,0,0.6000000000000001,84,966,0,767,0.278,20.48,44.99,0.89,0.22,891,0.7000000000000001,36,0.7000000000000001,43.9599,34.5170 +2012,9,16,17,30,26.200000000000003,1.84,0.059000000000000004,0.59,91,987,880,0,0,0.1,91,987,0,880,0.279,18.080000000000002,36.95,0.89,0.22,890,0.7000000000000001,46,0.7000000000000001,45.6744,35.9121 +2012,9,16,18,30,27.3,1.98,0.082,0.59,104,979,924,0,0,-0.2,104,979,0,924,0.28,16.63,33.06,0.89,0.22,889,0.7000000000000001,54,0.8,44.4400,34.9583 +2012,9,16,19,30,28,2.02,0.092,0.59,107,967,902,0,0,-0.5,107,967,0,902,0.281,15.64,34.76,0.89,0.22,888,0.7000000000000001,60,0.9,49.6072,39.0155 +2012,9,16,20,30,28.3,2.05,0.10200000000000001,0.59,107,939,811,0,0,-0.8,107,939,0,811,0.28200000000000003,15.05,41.36,0.89,0.22,887,0.7000000000000001,62,1.1,33.5990,26.4003 +2012,9,16,21,30,28.200000000000003,2.0100000000000002,0.08700000000000001,0.59,93,910,666,0,0,-1,93,910,0,666,0.28200000000000003,14.93,50.95,0.89,0.22,887,0.7000000000000001,65,1.2000000000000002,29.2808,22.9575 +2012,9,16,22,30,27.3,2.0100000000000002,0.08700000000000001,0.59,80,828,468,0,0,-1.1,80,828,0,468,0.28300000000000003,15.530000000000001,62.09,0.89,0.22,887,0.8,76,1.3,15.6512,12.2111 +2012,9,16,23,30,24.3,2.0100000000000002,0.085,0.59,60,679,247,0,0,0.4,60,679,0,247,0.28300000000000003,20.78,73.98,0.89,0.22,887,0.8,101,1.1,8.2641,6.3655 +2012,9,17,0,30,20.3,2,0.082,0.59,23,310,44,0,0,6.300000000000001,23,310,0,44,0.28300000000000003,40.15,86.08,0.89,0.22,887,0.8,127,1.2000000000000002,0.0000,0.0000 +2012,9,17,1,30,18,1.99,0.078,0.59,0,0,0,0,0,4.3,0,0,0,0,0.28400000000000003,40.33,98.47,0.89,0.22,887,0.8,143,1.6,0.0000,0.0000 +2012,9,17,2,30,17.1,1.97,0.075,0.59,0,0,0,0,0,4.3,0,0,0,0,0.28500000000000003,42.56,110.39,0.89,0.22,887,0.9,154,2,0.0000,0.0000 +2012,9,17,3,30,16.400000000000002,1.95,0.07200000000000001,0.59,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28600000000000003,47.7,121.63,0.89,0.22,887,0.9,164,2.4000000000000004,0.0000,0.0000 +2012,9,17,4,30,15.700000000000001,1.92,0.068,0.59,0,0,0,0,0,6.4,0,0,0,0,0.28800000000000003,54.03,131.54,0.9,0.22,887,1,173,2.5,0.0000,0.0000 +2012,9,17,5,30,14.9,1.9000000000000001,0.066,0.59,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.28800000000000003,59.72,139.05,0.9,0.22,887,1,184,2.5,0.0000,0.0000 +2012,9,17,6,30,14.200000000000001,1.8800000000000001,0.065,0.59,0,0,0,0,0,7.300000000000001,0,0,0,0,0.289,63.09,142.61,0.9,0.22,887,1,195,2.3000000000000003,0.0000,0.0000 +2012,9,17,7,30,13.5,1.86,0.066,0.59,0,0,0,0,0,6.9,0,0,0,0,0.289,64.24,141.09,0.9,0.22,887,1,206,2.2,0.0000,0.0000 +2012,9,17,8,30,12.9,1.86,0.068,0.59,0,0,0,0,0,6,0,0,0,0,0.289,62.89,135.01,0.9,0.22,886,1,219,2.1,0.0000,0.0000 +2012,9,17,9,30,12.3,1.87,0.07,0.59,0,0,0,0,0,4.800000000000001,0,0,0,0,0.29,60.21,125.93,0.9,0.22,886,1,230,2,0.0000,0.0000 +2012,9,17,10,30,11.700000000000001,1.8800000000000001,0.07100000000000001,0.59,0,0,0,0,0,3.6,0,0,0,0,0.291,57.39,115.14,0.9,0.22,886,1,238,1.9000000000000001,0.0000,0.0000 +2012,9,17,11,30,11.3,1.8800000000000001,0.073,0.59,0,0,0,0,0,2.6,0,0,0,0,0.291,55.18,103.45,0.9,0.22,886,1,243,1.8,0.0000,0.0000 +2012,9,17,12,30,12.4,1.8900000000000001,0.075,0.59,0,0,0,0,0,2.2,0,0,0,0,0.291,49.72,91.33,0.9,0.22,886,1,248,2.2,0.0000,0.0000 +2012,9,17,13,30,15.3,1.8900000000000001,0.079,0.59,47,562,154,0,0,2.3000000000000003,47,562,0,154,0.291,41.54,79.02,0.9,0.22,887,1.1,262,3,7.8711,6.0071 +2012,9,17,14,30,18.900000000000002,1.8800000000000001,0.088,0.59,74,762,371,0,0,2.6,74,762,0,371,0.29,33.87,67.01,0.91,0.22,887,1.1,289,3.4000000000000004,20.4566,15.8967 +2012,9,17,15,30,22.1,1.87,0.097,0.59,92,850,573,0,0,2.6,92,850,0,573,0.289,27.740000000000002,55.53,0.91,0.22,888,1.2000000000000002,318,3.7,33.8450,26.4929 +2012,9,17,16,30,23.900000000000002,1.86,0.1,0.59,104,899,738,0,0,2.3000000000000003,104,899,0,738,0.28700000000000003,24.35,45.230000000000004,0.92,0.22,888,1.3,340,3.7,45.0450,35.3673 +2012,9,17,17,30,24.900000000000002,1.86,0.1,0.59,111,929,849,0,3,2.7,428,362,0,716,0.28600000000000003,23.66,37.27,0.92,0.22,888,1.3,175,3.6,52.7141,41.4454 +2012,9,17,18,30,25.700000000000003,1.8900000000000001,0.105,0.59,115,933,893,0,7,3.1,275,627,0,799,0.28500000000000003,23.22,33.44,0.92,0.22,887,1.4000000000000001,1,3.5,55.7555,43.8576 +2012,9,17,19,30,26,1.9100000000000001,0.10300000000000001,0.59,113,930,873,0,7,3.5,237,707,0,816,0.28400000000000003,23.41,35.15,0.92,0.22,887,1.4000000000000001,1,3.7,54.2631,42.6753 +2012,9,17,20,30,25.900000000000002,1.92,0.10300000000000001,0.59,108,905,784,0,8,3.8000000000000003,200,711,0,731,0.28400000000000003,24.080000000000002,41.730000000000004,0.92,0.22,886,1.5,1,4,48.0987,37.7911 +2012,9,17,21,30,25.3,1.9100000000000001,0.10200000000000001,0.59,99,862,638,0,7,4,236,468,0,529,0.28600000000000003,25.34,51.29,0.92,0.22,886,1.5,5,4.4,38.3381,30.0559 +2012,9,17,22,30,24.200000000000003,1.92,0.10200000000000001,0.59,85,778,446,0,8,4.3,161,527,0,405,0.29,27.53,62.4,0.92,0.22,887,1.6,12,4.800000000000001,25.4710,19.8685 +2012,9,17,23,30,22.3,1.93,0.105,0.59,64,613,230,0,0,4.800000000000001,64,613,0,230,0.293,31.91,74.28,0.92,0.22,887,1.7000000000000002,20,4.7,12.1893,9.3841 +2012,9,18,0,30,19.900000000000002,1.93,0.113,0.59,22,226,37,0,0,5.7,22,226,0,37,0.297,39.410000000000004,86.36,0.92,0.22,888,1.8,23,4.1000000000000005,0.0000,0.0000 +2012,9,18,1,30,18.2,1.8900000000000001,0.14300000000000002,0.59,0,0,0,0,1,6.6000000000000005,0,0,0,0,0.3,46.76,98.77,0.93,0.22,890,2,23,4,0.0000,0.0000 +2012,9,18,2,30,17.400000000000002,1.79,0.201,0.59,0,0,0,0,7,7.2,0,0,0,0,0.302,51.300000000000004,110.7,0.9400000000000001,0.22,891,2.1,22,4,0.0000,0.0000 +2012,9,18,3,30,16.7,1.73,0.253,0.59,0,0,0,0,7,7.7,0,0,0,0,0.304,55.46,121.96000000000001,0.9500000000000001,0.22,891,2.2,23,3.8000000000000003,0.0000,0.0000 +2012,9,18,4,30,15.8,1.75,0.253,0.59,0,0,0,0,6,8.3,0,0,0,0,0.306,60.92,131.91,0.9500000000000001,0.22,892,2.1,27,3.6,0.0000,0.0000 +2012,9,18,5,30,14.8,1.83,0.212,0.59,0,0,0,0,6,8.4,0,0,0,0,0.309,65.68,139.44,0.9400000000000001,0.22,892,2,28,3.6,0.0000,0.0000 +2012,9,18,6,30,13.600000000000001,1.9100000000000001,0.19,0.59,0,0,0,0,7,8.200000000000001,0,0,0,0,0.311,69.95,143,0.9400000000000001,0.22,893,1.8,26,3.6,0.0000,0.0000 +2012,9,18,7,30,12.5,1.96,0.182,0.59,0,0,0,0,7,7.6000000000000005,0,0,0,0,0.311,72.18,141.43,0.93,0.22,893,1.7000000000000002,27,3.4000000000000004,0.0000,0.0000 +2012,9,18,8,30,11.600000000000001,1.98,0.17500000000000002,0.59,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.31,73.8,135.29,0.93,0.22,893,1.6,27,3,0.0000,0.0000 +2012,9,18,9,30,10.700000000000001,1.99,0.17,0.59,0,0,0,0,0,6.9,0,0,0,0,0.307,77.3,126.15,0.93,0.22,894,1.6,28,2.3000000000000003,0.0000,0.0000 +2012,9,18,10,30,9.9,2,0.162,0.59,0,0,0,0,0,6.9,0,0,0,0,0.305,81.34,115.33,0.93,0.22,894,1.6,31,1.6,0.0000,0.0000 +2012,9,18,11,30,9.3,2,0.155,0.59,0,0,0,1,0,6.9,0,0,1,0,0.303,84.68,103.61,0.93,0.22,894,1.5,32,1.1,0.0000,0.0000 +2012,9,18,12,30,9.9,1.99,0.149,0.59,0,0,0,0,0,6.9,0,0,0,0,0.301,81.47,91.48,0.93,0.22,895,1.5,38,1.1,0.0000,0.0000 +2012,9,18,13,30,12.200000000000001,1.99,0.14100000000000001,0.59,56,464,143,0,0,6.7,56,464,0,143,0.301,68.88,79.17,0.93,0.22,895,1.5,64,1.7000000000000002,7.3440,5.6035 +2012,9,18,14,30,14.9,1.98,0.131,0.59,86,698,357,0,0,4.800000000000001,86,698,0,357,0.302,50.95,67.17,0.93,0.22,895,1.5,96,2.2,19.4834,15.1380 +2012,9,18,15,30,17.5,1.98,0.121,0.59,102,816,561,0,0,3.9000000000000004,102,816,0,561,0.302,40.33,55.730000000000004,0.93,0.22,895,1.5,118,2.1,32.3454,25.3170 +2012,9,18,16,30,20,1.98,0.111,0.59,108,883,727,0,0,3.6,108,883,0,727,0.3,33.84,45.480000000000004,0.92,0.22,895,1.5,141,2.1,43.3113,34.0043 +2012,9,18,17,30,22.400000000000002,1.99,0.101,0.59,110,924,842,0,0,3.6,110,924,0,842,0.299,29.240000000000002,37.58,0.92,0.22,894,1.4000000000000001,169,2.1,42.8618,33.6978 +2012,9,18,18,30,24.400000000000002,2.0300000000000002,0.133,0.59,127,911,884,0,0,3.9000000000000004,127,911,0,884,0.298,26.37,33.82,0.92,0.22,893,1.4000000000000001,195,2.2,48.1811,37.8979 +2012,9,18,19,30,25.700000000000003,2.0300000000000002,0.13,0.59,124,908,863,0,0,4,124,908,0,863,0.297,24.66,35.550000000000004,0.92,0.22,892,1.4000000000000001,211,2.3000000000000003,49.0536,38.5764 +2012,9,18,20,30,26.5,2.02,0.129,0.59,119,886,776,0,0,4,119,886,0,776,0.296,23.45,42.1,0.92,0.22,891,1.4000000000000001,222,2.4000000000000004,43.3138,34.0294 +2012,9,18,21,30,26.6,1.99,0.11800000000000001,0.59,105,849,632,0,0,3.8000000000000003,105,849,0,632,0.295,23.11,51.63,0.92,0.22,890,1.4000000000000001,229,2.4000000000000004,30.4118,23.8394 +2012,9,18,22,30,26.1,1.97,0.115,0.59,89,768,441,0,0,3.7,89,768,0,441,0.294,23.61,62.72,0.92,0.22,890,1.4000000000000001,229,2.2,21.9977,17.1557 +2012,9,18,23,30,23.5,1.95,0.11,0.59,64,610,227,0,0,4.2,64,610,0,227,0.294,28.51,74.57000000000001,0.92,0.22,890,1.4000000000000001,210,1.5,11.3194,8.7100 +2012,9,19,0,30,20,1.94,0.105,0.59,21,229,34,0,0,8.3,21,229,0,34,0.295,46.95,86.65,0.91,0.22,890,1.4000000000000001,189,1.3,0.0000,0.0000 +2012,9,19,1,30,18.3,1.94,0.1,0.59,0,0,0,0,0,6.4,0,0,0,0,0.296,45.64,99.07000000000001,0.91,0.22,890,1.4000000000000001,185,1.9000000000000001,0.0000,0.0000 +2012,9,19,2,30,17.8,1.92,0.097,0.59,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.297,44.6,111.02,0.91,0.22,891,1.4000000000000001,189,2.6,0.0000,0.0000 +2012,9,19,3,30,17.3,1.9000000000000001,0.095,0.59,0,0,0,0,0,5.2,0,0,0,0,0.298,44.84,122.3,0.91,0.22,891,1.4000000000000001,195,3.2,0.0000,0.0000 +2012,9,19,4,30,16.6,1.9000000000000001,0.093,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.298,46.43,132.27,0.91,0.22,891,1.4000000000000001,203,3.6,0.0000,0.0000 +2012,9,19,5,30,15.8,1.93,0.093,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.298,48.85,139.83,0.91,0.22,891,1.4000000000000001,210,3.7,0.0000,0.0000 +2012,9,19,6,30,15.200000000000001,1.95,0.094,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.297,50.89,143.39000000000001,0.91,0.22,891,1.4000000000000001,216,3.8000000000000003,0.0000,0.0000 +2012,9,19,7,30,14.8,1.95,0.094,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.295,52.32,141.78,0.91,0.22,891,1.5,222,3.8000000000000003,0.0000,0.0000 +2012,9,19,8,30,14.4,1.96,0.093,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.294,53.72,135.57,0.91,0.22,890,1.5,226,3.8000000000000003,0.0000,0.0000 +2012,9,19,9,30,14,1.96,0.091,0.59,0,0,0,0,0,5.300000000000001,0,0,0,0,0.294,55.72,126.38000000000001,0.91,0.22,890,1.5,229,3.5,0.0000,0.0000 +2012,9,19,10,30,13.600000000000001,1.96,0.089,0.59,0,0,0,0,0,5.7,0,0,0,0,0.293,58.660000000000004,115.51,0.91,0.22,890,1.5,231,3.3000000000000003,0.0000,0.0000 +2012,9,19,11,30,13.3,1.96,0.08700000000000001,0.59,0,0,0,0,0,6.2,0,0,0,0,0.293,61.92,103.78,0.91,0.22,890,1.5,233,3.2,0.0000,0.0000 +2012,9,19,12,30,14,1.95,0.085,0.59,0,0,0,0,0,6.800000000000001,0,0,0,0,0.293,61.72,91.63,0.91,0.22,890,1.5,233,3.6,0.0000,0.0000 +2012,9,19,13,30,16.5,1.94,0.084,0.59,47,533,145,0,0,7.5,47,533,0,145,0.293,55.39,79.33,0.91,0.22,891,1.5,231,4.1000000000000005,6.8177,5.2008 +2012,9,19,14,30,20.400000000000002,1.93,0.083,0.59,72,754,362,0,0,8.3,72,754,0,362,0.293,45.84,67.34,0.91,0.22,891,1.4000000000000001,230,4.4,18.7240,14.5456 +2012,9,19,15,30,24.400000000000002,1.9100000000000001,0.083,0.59,87,855,566,0,0,8.5,87,855,0,566,0.293,36.34,55.93,0.91,0.22,890,1.4000000000000001,230,4.800000000000001,31.6378,24.7611 +2012,9,19,16,30,27.6,1.9000000000000001,0.082,0.59,96,911,731,0,1,7.300000000000001,96,911,0,731,0.292,27.72,45.730000000000004,0.91,0.22,890,1.4000000000000001,230,4.7,42.6340,33.4707 +2012,9,19,17,30,29.900000000000002,1.9000000000000001,0.081,0.59,101,943,845,0,0,5.9,101,943,0,845,0.292,22.01,37.9,0.91,0.22,890,1.3,229,4.1000000000000005,50.3719,39.6005 +2012,9,19,18,30,31.700000000000003,1.98,0.112,0.59,117,930,886,0,0,4.7,117,930,0,886,0.291,18.3,34.2,0.91,0.22,889,1.3,229,3.5,53.2711,41.8997 +2012,9,19,19,30,32.7,1.99,0.112,0.59,116,925,865,0,0,3.6,116,925,0,865,0.29,16.03,35.95,0.91,0.22,888,1.3,231,2.9000000000000004,51.8395,40.7653 +2012,9,19,20,30,33,1.99,0.112,0.59,111,902,777,0,0,2.7,111,902,0,777,0.29,14.8,42.47,0.91,0.22,888,1.3,238,2.2,45.9368,36.0878 +2012,9,19,21,30,32.800000000000004,1.97,0.10400000000000001,0.59,99,864,631,0,0,2,99,864,0,631,0.29,14.22,51.97,0.91,0.22,887,1.3,250,1.6,36.2847,28.4401 +2012,9,19,22,30,31.700000000000003,1.97,0.101,0.59,84,784,439,0,0,1.6,84,784,0,439,0.29,14.700000000000001,63.03,0.91,0.22,887,1.3,277,1,23.9024,18.6370 +2012,9,19,23,30,28.700000000000003,1.97,0.1,0.59,61,625,224,0,0,5.5,61,625,0,224,0.29,22.93,74.88,0.91,0.22,887,1.2000000000000002,172,0.6000000000000001,11.1426,8.5696 +2012,9,20,0,30,25,1.97,0.1,0.59,19,226,31,0,0,9.1,19,226,0,31,0.291,36.480000000000004,86.94,0.91,0.22,888,1.2000000000000002,67,0.7000000000000001,0.0000,0.0000 +2012,9,20,1,30,23,1.98,0.1,0.59,0,0,0,0,1,6.7,0,0,0,0,0.292,35.03,99.37,0.9,0.22,888,1.2000000000000002,101,0.9,0.0000,0.0000 +2012,9,20,2,30,21.900000000000002,1.98,0.1,0.59,0,0,0,0,0,6.7,0,0,0,0,0.293,37.36,111.33,0.9,0.22,888,1.2000000000000002,134,1.1,0.0000,0.0000 +2012,9,20,3,30,21.1,1.97,0.1,0.59,0,0,0,0,0,6.800000000000001,0,0,0,0,0.293,39.480000000000004,122.63,0.9,0.22,889,1.2000000000000002,162,1.2000000000000002,0.0000,0.0000 +2012,9,20,4,30,20.700000000000003,1.97,0.10300000000000001,0.59,0,0,0,0,0,6.5,0,0,0,0,0.293,39.77,132.63,0.9,0.22,889,1.2000000000000002,180,1.1,0.0000,0.0000 +2012,9,20,5,30,20.8,1.98,0.109,0.59,0,0,0,0,0,6.2,0,0,0,0,0.293,38.53,140.23,0.9,0.22,889,1.2000000000000002,194,1,0.0000,0.0000 +2012,9,20,6,30,21.1,1.99,0.12,0.59,0,0,0,0,0,5.5,0,0,0,0,0.293,36.07,143.79,0.9,0.22,889,1.2000000000000002,216,0.9,0.0000,0.0000 +2012,9,20,7,30,20.900000000000002,2.0100000000000002,0.132,0.59,0,0,0,0,0,5,0,0,0,0,0.293,35.31,142.13,0.9,0.22,889,1.2000000000000002,243,0.8,0.0000,0.0000 +2012,9,20,8,30,19.400000000000002,2.0300000000000002,0.14100000000000001,0.59,0,0,0,0,0,4.7,0,0,0,0,0.293,37.910000000000004,135.85,0.9,0.22,889,1.2000000000000002,271,1,0.0000,0.0000 +2012,9,20,9,30,17.1,2.05,0.148,0.59,0,0,0,0,0,4.7,0,0,0,0,0.293,43.99,126.60000000000001,0.9,0.22,889,1.3,299,1.3,0.0000,0.0000 +2012,9,20,10,30,15.3,2.05,0.154,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.294,50.63,115.7,0.9,0.22,889,1.3,323,1.5,0.0000,0.0000 +2012,9,20,11,30,13.8,2.05,0.162,0.59,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.294,57.58,103.94,0.9,0.22,890,1.4000000000000001,341,1.5,0.0000,0.0000 +2012,9,20,12,30,13.9,2.05,0.17,0.59,0,0,0,0,1,5.800000000000001,0,0,0,0,0.294,58.300000000000004,91.78,0.9,0.22,890,1.4000000000000001,176,1.7000000000000002,0.0000,0.0000 +2012,9,20,13,30,16,2.0300000000000002,0.178,0.59,57,422,134,0,1,6.300000000000001,57,422,0,134,0.293,52.7,79.48,0.91,0.22,890,1.4000000000000001,5,2,6.9118,5.2714 +2012,9,20,14,30,19.200000000000003,2.02,0.183,0.59,97,647,344,0,7,6.4,163,456,0,337,0.293,43.160000000000004,67.51,0.91,0.22,890,1.4000000000000001,19,1.9000000000000001,18.9599,14.7264 +2012,9,20,15,30,22.8,2.0100000000000002,0.184,0.59,120,763,545,0,0,6.5,120,763,0,545,0.294,34.84,56.13,0.91,0.22,890,1.4000000000000001,50,1.7000000000000002,31.8891,24.9557 +2012,9,20,16,30,26.1,2,0.181,0.59,134,830,710,0,0,6.7,134,830,0,710,0.294,28.97,45.980000000000004,0.91,0.22,890,1.4000000000000001,90,1.9000000000000001,42.8363,33.6277 +2012,9,20,17,30,29.200000000000003,2,0.176,0.59,140,864,819,7,2,6.6000000000000005,140,864,5,819,0.294,24.14,38.22,0.91,0.22,889,1.5,125,2.1,50.5171,39.7128 +2012,9,20,18,30,31.8,1.96,0.146,0.59,131,898,870,0,0,5.2,131,898,0,870,0.295,18.84,34.58,0.91,0.22,888,1.5,145,2.3000000000000003,53.3552,41.9641 +2012,9,20,19,30,33.1,1.95,0.14100000000000001,0.59,129,896,850,0,0,3.6,129,896,0,850,0.295,15.59,36.34,0.92,0.22,888,1.5,153,2.2,51.9193,40.8260 +2012,9,20,20,30,33.4,1.95,0.134,0.59,120,877,763,0,0,2.7,120,877,0,763,0.296,14.4,42.85,0.92,0.22,887,1.5,157,2.1,45.9518,36.0972 +2012,9,20,21,30,33.1,1.95,0.115,0.59,103,846,620,0,0,2.1,103,846,0,620,0.296,14.05,52.31,0.92,0.22,886,1.5,162,2.2,36.1782,28.3535 +2012,9,20,22,30,31.900000000000002,1.96,0.107,0.59,85,771,431,0,0,1.7000000000000002,85,771,0,431,0.296,14.61,63.35,0.92,0.22,886,1.4000000000000001,164,2,23.7445,18.5099 +2012,9,20,23,30,28.400000000000002,1.95,0.099,0.59,61,613,217,0,0,5.300000000000001,61,613,0,217,0.296,22.990000000000002,75.18,0.92,0.22,886,1.4000000000000001,159,1.5,10.9651,8.4285 +2012,9,21,0,30,24.3,1.93,0.092,0.59,18,217,29,0,0,8.3,18,217,0,29,0.297,35.980000000000004,87.22,0.92,0.22,886,1.3,157,1.5,0.0000,0.0000 +2012,9,21,1,30,22.200000000000003,1.9100000000000001,0.08600000000000001,0.59,0,0,0,0,0,6.5,0,0,0,0,0.299,36.160000000000004,99.67,0.92,0.22,886,1.3,165,1.8,0.0000,0.0000 +2012,9,21,2,30,20.900000000000002,1.8900000000000001,0.081,0.59,0,0,0,0,0,6.4,0,0,0,0,0.299,38.93,111.64,0.91,0.22,886,1.2000000000000002,176,2.1,0.0000,0.0000 +2012,9,21,3,30,19.700000000000003,1.87,0.078,0.59,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.299,42.42,122.96000000000001,0.91,0.22,887,1.2000000000000002,188,2.2,0.0000,0.0000 +2012,9,21,4,30,18.7,1.86,0.078,0.59,0,0,0,0,0,6.5,0,0,0,0,0.3,45.08,133,0.92,0.22,887,1.2000000000000002,199,2.3000000000000003,0.0000,0.0000 +2012,9,21,5,30,17.900000000000002,1.85,0.079,0.59,0,0,0,0,0,6.2,0,0,0,0,0.3,46.24,140.62,0.91,0.22,886,1.2000000000000002,212,2.1,0.0000,0.0000 +2012,9,21,6,30,17.2,1.86,0.081,0.59,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.3,46.29,144.18,0.91,0.22,887,1.2000000000000002,227,2,0.0000,0.0000 +2012,9,21,7,30,16.3,1.87,0.085,0.59,0,0,0,0,0,5,0,0,0,0,0.3,46.980000000000004,142.48,0.91,0.22,887,1.1,245,1.8,0.0000,0.0000 +2012,9,21,8,30,15.3,1.8900000000000001,0.091,0.59,0,0,0,0,0,4.7,0,0,0,0,0.299,49.050000000000004,136.13,0.91,0.22,887,1.1,268,1.6,0.0000,0.0000 +2012,9,21,9,30,14.600000000000001,1.92,0.098,0.59,0,0,0,0,0,5,0,0,0,0,0.298,52.39,126.82000000000001,0.91,0.22,888,1.1,295,1.5,0.0000,0.0000 +2012,9,21,10,30,13.9,1.94,0.10400000000000001,0.59,0,0,0,0,0,5.7,0,0,0,0,0.298,57.69,115.88,0.91,0.22,888,1.2000000000000002,320,1.5,0.0000,0.0000 +2012,9,21,11,30,13.3,1.96,0.111,0.59,0,0,0,0,0,6.5,0,0,0,0,0.299,63.54,104.10000000000001,0.91,0.22,888,1.2000000000000002,340,1.6,0.0000,0.0000 +2012,9,21,12,30,13.9,1.96,0.11900000000000001,0.59,0,0,0,0,0,7.4,0,0,0,0,0.299,64.88,91.94,0.91,0.22,889,1.3,176,2.1,0.0000,0.0000 +2012,9,21,13,30,16.400000000000002,1.97,0.128,0.59,52,473,137,0,0,8,52,473,0,137,0.299,57.51,79.63,0.91,0.22,889,1.3,6,2.7,6.3869,4.8701 +2012,9,21,14,30,20.200000000000003,1.98,0.138,0.59,86,689,347,0,0,8.3,86,689,0,347,0.298,46.38,67.68,0.91,0.22,890,1.4000000000000001,16,2.6,17.6260,13.6879 +2012,9,21,15,30,24.700000000000003,1.98,0.149,0.59,109,792,548,0,0,8.6,109,792,0,548,0.296,35.82,56.33,0.91,0.22,890,1.4000000000000001,42,3.1,30.6761,24.0044 +2012,9,21,16,30,28.1,1.99,0.159,0.59,125,843,708,0,0,7.2,125,843,0,708,0.294,26.73,46.230000000000004,0.91,0.22,890,1.5,66,3.7,41.5741,32.6350 +2012,9,21,17,30,30.1,2,0.171,0.59,138,864,814,0,0,6.2,138,864,0,814,0.292,22.17,38.54,0.91,0.22,890,1.6,75,3.8000000000000003,48.9290,38.4626 +2012,9,21,18,30,31.400000000000002,1.93,0.13,0.59,124,906,866,0,0,5.5,124,906,0,866,0.291,19.71,34.96,0.91,0.22,889,1.6,78,3.9000000000000004,52.3554,41.1759 +2012,9,21,19,30,32,1.94,0.133,0.59,124,895,841,0,8,5.1000000000000005,198,746,0,796,0.29,18.51,36.74,0.91,0.22,889,1.7000000000000002,81,3.8000000000000003,50.9797,40.0851 +2012,9,21,20,30,32.2,1.96,0.136,0.59,120,869,753,0,8,4.800000000000001,216,709,0,733,0.29,17.87,43.22,0.91,0.22,888,1.7000000000000002,83,3.7,45.0787,35.4088 +2012,9,21,21,30,31.8,1.98,0.14400000000000002,0.59,112,813,605,7,3,4.6000000000000005,278,520,7,593,0.289,18.01,52.65,0.91,0.22,888,1.7000000000000002,85,3.6,35.4985,27.8178 +2012,9,21,22,30,30.700000000000003,1.99,0.14200000000000002,0.59,94,724,416,0,0,4.5,94,724,0,416,0.29,19.09,63.660000000000004,0.91,0.22,888,1.7000000000000002,88,3.3000000000000003,23.2610,18.1289 +2012,9,21,23,30,27.400000000000002,1.99,0.138,0.59,66,552,204,0,3,5.300000000000001,138,110,0,166,0.29,24.41,75.48,0.91,0.22,888,1.7000000000000002,91,2.3000000000000003,10.5948,8.1395 +2012,9,22,0,30,23.700000000000003,1.99,0.134,0.59,17,157,23,0,0,8.1,17,157,0,23,0.29,36.96,87.5,0.91,0.22,888,1.6,93,1.9000000000000001,0.0000,0.0000 +2012,9,22,1,30,21.900000000000002,1.99,0.129,0.59,0,0,0,0,0,7.7,0,0,0,0,0.29,39.95,99.96000000000001,0.91,0.22,889,1.6,97,2.1,0.0000,0.0000 +2012,9,22,2,30,20.900000000000002,1.98,0.124,0.59,0,0,0,0,0,7.7,0,0,0,0,0.29,42.480000000000004,111.95,0.9,0.22,889,1.6,101,2.3000000000000003,0.0000,0.0000 +2012,9,22,3,30,19.900000000000002,1.98,0.122,0.59,0,0,0,0,0,7.9,0,0,0,0,0.29,45.77,123.3,0.91,0.22,890,1.6,106,2.2,0.0000,0.0000 +2012,9,22,4,30,18.8,1.98,0.123,0.59,0,0,0,0,0,8,0,0,0,0,0.29,49.42,133.36,0.91,0.22,890,1.6,110,2,0.0000,0.0000 +2012,9,22,5,30,17.900000000000002,1.97,0.127,0.59,0,0,0,0,0,8,0,0,0,0,0.29,52.38,141.01,0.91,0.22,890,1.7000000000000002,112,1.7000000000000002,0.0000,0.0000 +2012,9,22,6,30,17.1,1.97,0.132,0.59,0,0,0,0,0,7.9,0,0,0,0,0.29,54.79,144.57,0.91,0.22,890,1.7000000000000002,113,1.5,0.0000,0.0000 +2012,9,22,7,30,16.5,1.97,0.138,0.59,0,0,0,0,0,7.800000000000001,0,0,0,0,0.29,56.370000000000005,142.83,0.91,0.22,891,1.7000000000000002,110,1.4000000000000001,0.0000,0.0000 +2012,9,22,8,30,16,1.98,0.146,0.59,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.29,57.35,136.41,0.91,0.22,891,1.8,107,1.3,0.0000,0.0000 +2012,9,22,9,30,15.700000000000001,1.98,0.153,0.59,0,0,0,0,0,7.300000000000001,0,0,0,0,0.29,57.49,127.04,0.91,0.22,891,1.8,104,1.2000000000000002,0.0000,0.0000 +2012,9,22,10,30,15.5,1.98,0.158,0.59,0,0,0,0,0,7.1000000000000005,0,0,0,0,0.29,57.25,116.06,0.91,0.22,892,1.8,102,1.1,0.0000,0.0000 +2012,9,22,11,30,15.600000000000001,1.98,0.163,0.59,0,0,0,0,0,6.800000000000001,0,0,0,0,0.29,55.9,104.26,0.92,0.22,892,1.8,104,1,0.0000,0.0000 +2012,9,22,12,30,16.5,1.98,0.167,0.59,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.29,52.08,92.09,0.92,0.22,893,1.9000000000000001,114,0.8,0.0000,0.0000 +2012,9,22,13,30,18.6,1.98,0.171,0.59,56,406,128,0,0,7.800000000000001,56,406,0,128,0.29,49.38,79.79,0.92,0.22,893,1.9000000000000001,136,0.6000000000000001,6.5299,4.9782 +2012,9,22,14,30,22,1.97,0.17300000000000001,0.59,94,637,334,0,4,7.1000000000000005,177,6,0,179,0.289,38.11,67.86,0.92,0.22,893,1.9000000000000001,140,0.9,18.1235,14.0719 +2012,9,22,15,30,26.400000000000002,1.97,0.171,0.59,116,757,533,0,1,6.9,116,757,0,533,0.289,28.98,56.53,0.92,0.22,894,1.9000000000000001,126,1.8,30.8147,24.1108 +2012,9,22,16,30,29.900000000000002,1.97,0.165,0.59,128,828,698,0,0,5.9,128,828,0,698,0.28800000000000003,21.95,46.49,0.92,0.22,893,1.8,128,2.5,41.4251,32.5162 +2012,9,22,17,30,31.8,1.97,0.158,0.59,133,867,808,0,0,5.4,133,867,0,808,0.28700000000000003,19.080000000000002,38.86,0.92,0.22,893,1.8,137,2.7,48.5964,38.1993 +2012,9,22,18,30,33,1.99,0.191,0.59,150,856,848,0,0,5,150,856,0,848,0.28700000000000003,17.34,35.34,0.92,0.22,892,1.8,144,2.8000000000000003,52.0779,40.9558 +2012,9,22,19,30,33.7,1.98,0.185,0.59,146,854,827,0,0,4.6000000000000005,146,854,0,827,0.28600000000000003,16.23,37.14,0.92,0.22,892,1.8,150,2.9000000000000004,47.7027,37.5064 +2012,9,22,20,30,33.9,1.96,0.181,0.59,137,831,739,0,0,4.2,137,831,0,739,0.28600000000000003,15.56,43.59,0.92,0.22,891,1.8,155,2.9000000000000004,43.2633,33.9804 +2012,9,22,21,30,33.4,1.97,0.21,0.59,134,755,589,0,0,3.7,134,755,0,589,0.28600000000000003,15.530000000000001,52.99,0.92,0.22,890,1.8,159,3,33.9052,26.5662 +2012,9,22,22,30,32.2,1.95,0.20800000000000002,0.59,113,657,401,0,0,3.4000000000000004,113,657,0,401,0.28600000000000003,16.26,63.980000000000004,0.93,0.22,890,1.8,158,2.8000000000000003,22.4034,17.4565 +2012,9,22,23,30,28.8,1.93,0.20800000000000002,0.59,77,470,193,0,0,4.9,77,470,0,193,0.28700000000000003,21.900000000000002,75.78,0.93,0.22,890,1.8,152,2.2,8.0841,6.2072 +2012,9,23,0,30,25.3,1.9100000000000001,0.211,0.59,15,93,19,0,0,7.2,15,93,0,19,0.28700000000000003,31.42,87.78,0.93,0.22,890,1.8,149,2.4000000000000004,0.0000,0.0000 +2012,9,23,1,30,24,1.87,0.219,0.59,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.28800000000000003,31.51,100.26,0.93,0.22,891,1.8,151,3.2,0.0000,0.0000 +2012,9,23,2,30,23,1.86,0.22,0.59,0,0,0,0,0,5.9,0,0,0,0,0.28800000000000003,33.13,112.26,0.93,0.22,891,1.8,154,3.6,0.0000,0.0000 +2012,9,23,3,30,21.8,1.85,0.218,0.59,0,0,0,0,0,6.2,0,0,0,0,0.289,36.34,123.63000000000001,0.9400000000000001,0.22,892,1.8,158,3.5,0.0000,0.0000 +2012,9,23,4,30,20.6,1.85,0.211,0.59,0,0,0,0,0,6.5,0,0,0,0,0.289,39.85,133.72,0.9400000000000001,0.22,892,1.8,164,3.2,0.0000,0.0000 +2012,9,23,5,30,19.5,1.86,0.2,0.59,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.28800000000000003,42.96,141.4,0.9400000000000001,0.22,892,1.8,171,3,0.0000,0.0000 +2012,9,23,6,30,18.400000000000002,1.87,0.191,0.59,0,0,0,0,0,6.4,0,0,0,0,0.28800000000000003,45.52,144.97,0.93,0.22,893,1.8,175,2.7,0.0000,0.0000 +2012,9,23,7,30,17.400000000000002,1.8800000000000001,0.183,0.59,0,0,0,0,0,6,0,0,0,0,0.28800000000000003,47.01,143.17000000000002,0.93,0.22,893,1.7000000000000002,173,2.4000000000000004,0.0000,0.0000 +2012,9,23,8,30,16.3,1.9000000000000001,0.177,0.59,0,0,0,0,0,5.6000000000000005,0,0,0,0,0.28800000000000003,49.03,136.69,0.93,0.22,894,1.7000000000000002,163,2.1,0.0000,0.0000 +2012,9,23,9,30,15.200000000000001,1.92,0.171,0.59,0,0,0,0,0,5.300000000000001,0,0,0,0,0.28800000000000003,51.58,127.26,0.92,0.22,894,1.7000000000000002,155,1.8,0.0000,0.0000 +2012,9,23,10,30,14.100000000000001,1.94,0.165,0.59,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.289,54.7,116.25,0.92,0.22,894,1.6,155,1.5,0.0000,0.0000 +2012,9,23,11,30,13.200000000000001,1.95,0.159,0.59,0,0,0,0,0,4.9,0,0,0,0,0.289,57.29,104.42,0.92,0.22,894,1.6,164,1.2000000000000002,0.0000,0.0000 +2012,9,23,12,30,13.600000000000001,1.96,0.156,0.59,0,0,0,0,1,4.7,0,0,0,0,0.28800000000000003,54.96,92.24,0.92,0.22,894,1.6,176,1.5,0.0000,0.0000 +2012,9,23,13,30,15.9,1.97,0.154,0.59,54,426,128,7,3,4.6000000000000005,94,22,7,98,0.28800000000000003,47,79.94,0.92,0.22,895,1.6,185,2.1,6.1015,4.6508 +2012,9,23,14,30,19.700000000000003,1.97,0.152,0.59,89,664,338,0,1,4.3,89,664,0,338,0.28800000000000003,36.34,68.03,0.92,0.22,895,1.6,199,2.8000000000000003,9.3351,7.2468 +2012,9,23,15,30,24.5,1.97,0.151,0.59,110,781,538,0,1,4.5,110,781,0,538,0.28700000000000003,27.45,56.74,0.92,0.22,894,1.6,215,3.9000000000000004,29.9415,23.4256 +2012,9,23,16,30,28.900000000000002,1.96,0.152,0.59,123,843,701,0,1,4.1000000000000005,123,843,0,701,0.28700000000000003,20.52,46.75,0.92,0.22,894,1.6,222,5.1000000000000005,40.8069,32.0291 +2012,9,23,17,30,31.700000000000003,1.95,0.153,0.59,132,878,812,0,0,2.4000000000000004,132,878,0,812,0.28600000000000003,15.55,39.19,0.92,0.22,893,1.5,222,5.800000000000001,48.2040,37.8891 +2012,9,23,18,30,33.300000000000004,1.94,0.154,0.59,135,889,857,0,0,1.2000000000000002,135,889,0,857,0.28600000000000003,13,35.730000000000004,0.92,0.22,892,1.5,221,6.1000000000000005,50.9589,40.0739 +2012,9,23,19,30,33.9,1.94,0.152,0.59,133,885,834,0,0,0.6000000000000001,133,885,0,834,0.28400000000000003,12.09,37.54,0.92,0.22,891,1.5,219,6.2,49.5199,38.9330 +2012,9,23,20,30,34,1.93,0.147,0.59,125,863,746,0,0,0.30000000000000004,125,863,0,746,0.28300000000000003,11.78,43.97,0.92,0.22,891,1.5,216,6,43.5734,34.2216 +2012,9,23,21,30,33.4,1.93,0.136,0.59,110,825,603,1,0,0,110,825,1,603,0.28200000000000003,11.92,53.33,0.92,0.22,890,1.4000000000000001,210,5.800000000000001,33.6286,26.3464 +2012,9,23,22,30,32.1,1.94,0.127,0.59,90,742,412,1,0,-0.2,90,742,1,412,0.281,12.6,64.3,0.92,0.22,890,1.4000000000000001,204,5.300000000000001,21.5471,16.7853 +2012,9,23,23,30,29.1,1.93,0.11800000000000001,0.59,62,574,200,1,0,0.1,62,574,1,200,0.281,15.33,76.08,0.92,0.22,890,1.3,196,4.3,9.3756,7.1950 +2012,9,24,0,30,25.6,1.92,0.11,0.59,14,150,19,0,0,1.7000000000000002,14,150,0,19,0.281,21,88.06,0.92,0.21,890,1.3,192,4,0.0000,0.0000 +2012,9,24,1,30,23.700000000000003,1.9000000000000001,0.10200000000000001,0.59,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.281,23.92,100.56,0.92,0.21,891,1.2000000000000002,193,4.5,0.0000,0.0000 +2012,9,24,2,30,22.5,1.8800000000000001,0.095,0.59,0,0,0,0,1,1.7000000000000002,0,0,0,0,0.281,25.45,112.57000000000001,0.92,0.21,891,1.2000000000000002,198,4.800000000000001,0.0000,0.0000 +2012,9,24,3,30,21.5,1.86,0.091,0.59,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.281,26.98,123.96000000000001,0.92,0.21,891,1.2000000000000002,202,5,0.0000,0.0000 +2012,9,24,4,30,20.700000000000003,1.84,0.09,0.59,0,0,0,0,3,1.9000000000000001,0,0,0,0,0.28,28.7,134.09,0.92,0.21,891,1.2000000000000002,206,5,0.0000,0.0000 +2012,9,24,5,30,20.1,1.82,0.092,0.59,0,0,0,0,3,2.5,0,0,0,0,0.28,31.05,141.8,0.92,0.21,891,1.3,209,5.1000000000000005,0.0000,0.0000 +2012,9,24,6,30,19.700000000000003,1.8,0.095,0.59,0,0,0,0,1,3.3000000000000003,0,0,0,0,0.28,33.730000000000004,145.36,0.92,0.21,891,1.3,213,5.2,0.0000,0.0000 +2012,9,24,7,30,19.6,1.8,0.099,0.59,0,0,0,0,1,4.1000000000000005,0,0,0,0,0.28,36.03,143.52,0.92,0.21,891,1.4000000000000001,216,5.4,0.0000,0.0000 +2012,9,24,8,30,19.400000000000002,1.8,0.10300000000000001,0.59,0,0,0,0,0,5,0,0,0,0,0.28,38.79,136.97,0.92,0.21,891,1.4000000000000001,218,5.5,0.0000,0.0000 +2012,9,24,9,30,19,1.8,0.10400000000000001,0.59,0,0,0,0,0,5.800000000000001,0,0,0,0,0.28,42.12,127.48,0.92,0.21,891,1.4000000000000001,219,5.300000000000001,0.0000,0.0000 +2012,9,24,10,30,18.6,1.81,0.10200000000000001,0.59,0,0,0,0,0,6.6000000000000005,0,0,0,0,0.281,45.59,116.43,0.92,0.21,891,1.4000000000000001,221,4.9,0.0000,0.0000 +2012,9,24,11,30,18.1,1.81,0.1,0.59,0,0,0,0,7,7.300000000000001,0,0,0,0,0.28200000000000003,49.36,104.58,0.92,0.21,891,1.3,223,4.5,0.0000,0.0000 +2012,9,24,12,30,17.900000000000002,1.82,0.098,0.59,0,0,0,0,7,7.9,0,0,0,0,0.28200000000000003,52.06,92.39,0.92,0.21,891,1.3,225,4.4,0.0000,0.0000 +2012,9,24,13,30,19,1.83,0.098,0.59,47,497,133,0,7,8.5,94,75,0,107,0.28300000000000003,50.49,80.10000000000001,0.92,0.21,891,1.3,225,4.3,4.6724,3.5609 +2012,9,24,14,30,21.5,1.85,0.098,0.59,75,734,348,0,7,9.200000000000001,157,21,0,164,0.28400000000000003,45.4,68.21000000000001,0.92,0.21,891,1.2000000000000002,225,4.800000000000001,17.6020,13.6620 +2012,9,24,15,30,24.700000000000003,1.86,0.099,0.59,92,841,551,0,6,10,259,42,0,282,0.28200000000000003,39.56,56.95,0.92,0.21,891,1.2000000000000002,224,5.5,30.1907,23.6183 +2012,9,24,16,30,27.1,1.87,0.1,0.59,103,895,713,0,7,8.700000000000001,333,321,0,552,0.28,31.42,47.01,0.92,0.21,890,1.3,224,5.300000000000001,40.9488,32.1385 +2012,9,24,17,30,28.900000000000002,1.87,0.101,0.59,109,924,823,0,6,7.300000000000001,399,262,0,601,0.279,25.61,39.51,0.92,0.21,889,1.3,221,4.9,48.4068,38.0466 +2012,9,24,18,30,30.1,1.87,0.105,0.59,113,929,864,0,7,6.5,302,501,0,706,0.276,22.68,36.11,0.92,0.21,888,1.4000000000000001,217,4.6000000000000005,51.4612,40.4669 +2012,9,24,19,30,30.8,1.87,0.1,0.59,110,928,842,7,3,6,302,666,7,827,0.274,21.09,37.93,0.92,0.21,887,1.4000000000000001,212,4.3,49.8975,39.2277 +2012,9,24,20,30,31,1.87,0.097,0.59,104,904,750,0,6,5.7,365,159,0,479,0.273,20.39,44.34,0.92,0.21,886,1.5,207,4.2,43.9398,34.5067 +2012,9,24,21,30,30.900000000000002,1.86,0.097,0.59,95,856,602,0,7,5.4,308,195,0,424,0.274,20.080000000000002,53.67,0.92,0.21,886,1.5,207,4.2,34.3782,26.9305 +2012,9,24,22,30,30,1.85,0.098,0.59,81,767,410,0,6,5,226,83,0,261,0.276,20.580000000000002,64.62,0.92,0.21,885,1.5,206,3.5,22.0878,17.2022 +2012,9,24,23,30,27.1,1.85,0.1,0.59,58,584,196,0,6,5.800000000000001,107,15,0,110,0.277,25.69,76.38,0.92,0.21,885,1.5,203,2.4000000000000004,9.6923,7.4339 +2012,9,25,0,30,24.200000000000003,1.85,0.10200000000000001,0.59,13,134,17,7,6,7.7,9,0,7,9,0.278,34.85,88.34,0.92,0.21,885,1.6,199,2,0.0000,0.0000 +2012,9,25,1,30,23.1,1.84,0.107,0.59,0,0,0,0,7,7.2,0,0,0,0,0.279,35.93,100.86,0.92,0.21,885,1.6,199,2.4000000000000004,0.0000,0.0000 +2012,9,25,2,30,22.700000000000003,1.82,0.117,0.59,0,0,0,0,7,6.800000000000001,0,0,0,0,0.28,35.97,112.88,0.92,0.21,885,1.6,201,3.1,0.0000,0.0000 +2012,9,25,3,30,22.3,1.8,0.134,0.59,0,0,0,0,7,6.6000000000000005,0,0,0,0,0.281,36.34,124.29,0.93,0.21,885,1.7000000000000002,204,3.7,0.0000,0.0000 +2012,9,25,4,30,21.6,1.79,0.156,0.59,0,0,0,0,0,6.7,0,0,0,0,0.281,38.19,134.45,0.93,0.21,885,1.7000000000000002,206,4.1000000000000005,0.0000,0.0000 +2012,9,25,5,30,20.6,1.79,0.17500000000000002,0.59,0,0,0,0,1,7,0,0,0,0,0.28200000000000003,41.300000000000004,142.19,0.9400000000000001,0.21,885,1.8,206,4.1000000000000005,0.0000,0.0000 +2012,9,25,6,30,19.6,1.78,0.19,0.59,0,0,0,0,4,7.4,0,0,0,0,0.28200000000000003,45.160000000000004,145.76,0.9400000000000001,0.21,885,1.8,204,4.2,0.0000,0.0000 +2012,9,25,7,30,18.8,1.79,0.186,0.59,0,0,0,0,3,8,0,0,0,0,0.28300000000000003,49.38,143.86,0.9500000000000001,0.21,885,1.8,204,4.3,0.0000,0.0000 +2012,9,25,8,30,18.1,1.74,0.20500000000000002,0.59,0,0,0,0,1,8.5,0,0,0,0,0.28400000000000003,53.35,137.24,0.9500000000000001,0.21,885,1.8,213,4.1000000000000005,0.0000,0.0000 +2012,9,25,9,30,17.400000000000002,1.7,0.232,0.59,0,0,0,0,0,8.4,0,0,0,0,0.28500000000000003,55.33,127.7,0.9500000000000001,0.21,885,1.9000000000000001,230,3.6,0.0000,0.0000 +2012,9,25,10,30,16.7,1.76,0.223,0.59,0,0,0,0,4,7.7,0,0,0,0,0.28600000000000003,55.36,116.61,0.9500000000000001,0.21,885,1.9000000000000001,247,3,0.0000,0.0000 +2012,9,25,11,30,16,1.84,0.197,0.59,0,0,0,0,3,7.4,0,0,0,0,0.28700000000000003,56.54,104.74000000000001,0.9400000000000001,0.21,885,2,258,2.2,0.0000,0.0000 +2012,9,25,12,30,16.5,1.8900000000000001,0.178,0.59,0,0,0,0,0,7.5,0,0,0,0,0.28800000000000003,55.39,92.55,0.93,0.21,885,2,264,2.2,0.0000,0.0000 +2012,9,25,13,30,19.1,1.9100000000000001,0.166,0.59,54,394,121,7,7,8.1,84,32,7,89,0.29,48.78,80.26,0.93,0.21,885,2,263,2.7,0.0000,0.0000 +2012,9,25,14,30,23,1.9100000000000001,0.152,0.59,89,649,328,0,7,8.700000000000001,148,415,0,301,0.291,40.04,68.38,0.93,0.21,886,2,267,3.1,8.5277,6.6176 +2012,9,25,15,30,26.900000000000002,1.9000000000000001,0.135,0.59,105,785,530,0,8,8.700000000000001,273,138,0,347,0.291,31.67,57.160000000000004,0.9400000000000001,0.21,886,1.9000000000000001,273,3.3000000000000003,15.8081,12.3656 +2012,9,25,16,30,29.700000000000003,1.8800000000000001,0.114,0.59,108,867,697,0,1,7.4,108,867,0,697,0.291,24.7,47.27,0.93,0.21,885,1.8,271,3.6,32.2183,25.2848 +2012,9,25,17,30,31.3,1.85,0.092,0.59,105,919,811,0,0,6.1000000000000005,105,919,0,811,0.291,20.56,39.84,0.93,0.21,885,1.7000000000000002,265,4.1000000000000005,35.8021,28.1382 +2012,9,25,18,30,32.2,1.83,0.082,0.59,102,941,859,0,0,4.6000000000000005,102,941,0,859,0.29,17.61,36.49,0.92,0.21,884,1.6,261,4.5,42.3625,33.3104 +2012,9,25,19,30,32.6,1.82,0.079,0.59,100,941,838,0,0,3.2,100,941,0,838,0.28800000000000003,15.67,38.33,0.92,0.21,883,1.5,258,4.9,49.4378,38.8642 +2012,9,25,20,30,32.4,1.81,0.08,0.59,96,917,748,0,1,2.3000000000000003,96,917,0,748,0.28700000000000003,14.8,44.71,0.92,0.21,883,1.5,255,5,28.1839,22.1317 +2012,9,25,21,30,31.900000000000002,1.77,0.077,0.59,87,874,600,0,1,1.6,87,874,0,600,0.28600000000000003,14.55,54.02,0.92,0.21,883,1.5,253,5,24.1376,18.9062 +2012,9,25,22,30,30.8,1.74,0.079,0.59,75,785,407,0,0,1.2000000000000002,75,785,0,407,0.28500000000000003,14.98,64.93,0.92,0.21,883,1.5,252,4.5,13.9602,10.8696 +2012,9,25,23,30,27.8,1.72,0.08,0.59,54,604,193,0,0,1.3,54,604,0,193,0.28400000000000003,17.95,76.68,0.92,0.21,883,1.5,252,3.1,5.3184,4.0769 +2012,9,26,0,30,24.1,1.69,0.079,0.59,12,136,15,0,0,3.8000000000000003,12,136,0,15,0.28300000000000003,26.68,88.61,0.92,0.2,883,1.5,250,2,0.0000,0.0000 +2012,9,26,1,30,22.3,1.67,0.077,0.59,0,0,0,0,0,4,0,0,0,0,0.28200000000000003,30.18,101.16,0.91,0.2,884,1.6,248,2.1,0.0000,0.0000 +2012,9,26,2,30,21.5,1.6300000000000001,0.074,0.59,0,0,0,0,0,3.7,0,0,0,0,0.28200000000000003,31.13,113.19,0.91,0.2,884,1.6,246,2.1,0.0000,0.0000 +2012,9,26,3,30,20.700000000000003,1.59,0.073,0.59,0,0,0,0,0,3.6,0,0,0,0,0.28200000000000003,32.5,124.62,0.92,0.2,885,1.7000000000000002,244,2.1,0.0000,0.0000 +2012,9,26,4,30,19.700000000000003,1.56,0.074,0.59,0,0,0,0,0,3.7,0,0,0,0,0.28200000000000003,34.72,134.81,0.92,0.2,885,1.7000000000000002,243,2,0.0000,0.0000 +2012,9,26,5,30,18.8,1.55,0.079,0.59,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28200000000000003,37.09,142.58,0.93,0.2,885,1.8,244,1.9000000000000001,0.0000,0.0000 +2012,9,26,6,30,18.2,1.53,0.09,0.59,0,0,0,0,4,4,0,0,0,0,0.281,38.83,146.15,0.9400000000000001,0.2,885,2,247,1.9000000000000001,0.0000,0.0000 +2012,9,26,7,30,17.8,1.52,0.107,0.59,0,0,0,0,4,4.1000000000000005,0,0,0,0,0.281,40.35,144.21,0.9500000000000001,0.2,886,2.1,253,1.9000000000000001,0.0000,0.0000 +2012,9,26,8,30,17.400000000000002,1.54,0.11900000000000001,0.59,0,0,0,0,0,4.5,0,0,0,0,0.281,42.550000000000004,137.52,0.9500000000000001,0.2,886,2.2,271,1.6,0.0000,0.0000 +2012,9,26,9,30,16.900000000000002,1.57,0.12,0.59,0,0,0,0,4,5,0,0,0,0,0.281,45.38,127.92,0.9500000000000001,0.2,886,2.3000000000000003,300,1.3,0.0000,0.0000 +2012,9,26,10,30,16.5,1.59,0.116,0.59,0,0,0,0,3,5.300000000000001,0,0,0,0,0.28200000000000003,47.37,116.79,0.9400000000000001,0.2,887,2.3000000000000003,331,1.2000000000000002,0.0000,0.0000 +2012,9,26,11,30,16.1,1.59,0.108,0.59,0,0,0,0,4,5.300000000000001,0,0,0,0,0.28200000000000003,48.76,104.9,0.9400000000000001,0.2,887,2.2,178,1.1,0.0000,0.0000 +2012,9,26,12,30,16.2,1.59,0.101,0.59,0,0,0,0,4,5.4,0,0,0,0,0.28200000000000003,48.65,92.7,0.9400000000000001,0.2,887,2.2,19,1.4000000000000001,0.0000,0.0000 +2012,9,26,13,30,17.8,1.59,0.094,0.59,46,466,124,7,3,5.7,78,5,7,79,0.281,44.910000000000004,80.42,0.9400000000000001,0.2,888,2.1,29,2,0.0000,0.0000 +2012,9,26,14,30,21,1.58,0.091,0.59,73,708,332,0,1,6,73,708,0,332,0.281,37.58,68.56,0.9400000000000001,0.2,888,2.1,35,2.2,15.6289,12.1259 +2012,9,26,15,30,24.8,1.57,0.09,0.59,89,819,531,0,0,6.5,89,819,0,531,0.28,31.03,57.370000000000005,0.9400000000000001,0.2,889,2.1,39,2.2,19.4310,15.1981 +2012,9,26,16,30,27.3,1.56,0.091,0.59,99,877,691,0,0,6.6000000000000005,99,877,0,691,0.278,26.96,47.53,0.9400000000000001,0.2,889,2.1,42,2.2,40.6473,31.8979 +2012,9,26,17,30,28.900000000000002,1.55,0.096,0.59,108,900,796,0,0,6.800000000000001,108,900,0,796,0.277,24.82,40.17,0.9500000000000001,0.2,888,2.2,51,2.1,48.2751,37.9392 +2012,9,26,18,30,29.900000000000002,1.55,0.10300000000000001,0.59,114,903,836,0,3,7,449,263,0,660,0.276,23.78,36.88,0.9500000000000001,0.2,888,2.3000000000000003,66,1.9000000000000001,51.5041,40.4966 +2012,9,26,19,30,30.400000000000002,1.54,0.115,0.59,118,887,810,0,8,7.2,360,212,0,525,0.276,23.36,38.730000000000004,0.9500000000000001,0.2,887,2.3000000000000003,87,1.8,50.0521,39.3449 +2012,9,26,20,30,30.400000000000002,1.53,0.122,0.59,116,854,718,7,7,7.300000000000001,294,392,7,571,0.275,23.61,45.09,0.96,0.2,887,2.4000000000000004,105,1.9000000000000001,43.9650,34.5213 +2012,9,26,21,30,30.1,1.54,0.125,0.59,107,799,572,0,1,7.4,107,799,0,572,0.275,24.080000000000002,54.36,0.96,0.2,887,2.4000000000000004,114,2.2,34.1047,26.7096 +2012,9,26,22,30,29.3,1.55,0.13,0.59,91,697,383,0,1,7.300000000000001,91,697,0,383,0.275,25.03,65.25,0.96,0.2,887,2.4000000000000004,117,2.5,21.7200,16.9072 +2012,9,26,23,30,26.900000000000002,1.56,0.133,0.59,64,498,176,0,0,7.6000000000000005,64,498,0,176,0.275,29.55,76.98,0.96,0.2,888,2.4000000000000004,120,2,9.3108,7.1333 +2012,9,27,0,30,24.1,1.57,0.133,0.59,10,61,12,0,0,9.8,10,61,0,12,0.275,40.46,88.88,0.96,0.2,888,2.4000000000000004,127,1.9000000000000001,0.0000,0.0000 +2012,9,27,1,30,22.6,1.6,0.12,0.59,0,0,0,0,0,10.4,0,0,0,0,0.274,46.050000000000004,101.45,0.96,0.2,889,2.4000000000000004,137,2.6,0.0000,0.0000 +2012,9,27,2,30,21.5,1.6,0.107,0.59,0,0,0,0,0,12.4,0,0,0,0,0.273,56.03,113.5,0.9500000000000001,0.2,889,2.4000000000000004,145,3.2,0.0000,0.0000 +2012,9,27,3,30,20.1,1.56,0.099,0.59,0,0,0,0,0,14.9,0,0,0,0,0.273,72.13,124.95,0.9500000000000001,0.2,889,2.5,150,3.4000000000000004,0.0000,0.0000 +2012,9,27,4,30,18.900000000000002,1.51,0.098,0.59,0,0,0,0,0,16.8,0,0,0,0,0.273,87.66,135.17000000000002,0.9500000000000001,0.2,889,2.6,152,3.4000000000000004,0.0000,0.0000 +2012,9,27,5,30,18.3,1.47,0.113,0.59,0,0,0,0,0,17.7,0,0,0,0,0.273,96.55,142.97,0.9500000000000001,0.2,890,2.8000000000000003,150,2.8000000000000003,0.0000,0.0000 +2012,9,27,6,30,18,1.44,0.14200000000000002,0.59,0,0,0,0,0,17.900000000000002,0,0,0,0,0.274,99.21000000000001,146.54,0.96,0.2,890,3.1,146,2,0.0000,0.0000 +2012,9,27,7,30,17.8,1.41,0.179,0.59,0,0,0,0,4,17.6,0,0,0,0,0.274,98.97,144.55,0.96,0.2,891,3.2,150,1.4000000000000001,0.0000,0.0000 +2012,9,27,8,30,17.6,1.36,0.23700000000000002,0.59,0,0,0,0,6,17.400000000000002,0,0,0,0,0.274,98.54,137.79,0.97,0.2,891,3.4000000000000004,167,1,0.0000,0.0000 +2012,9,27,9,30,17.400000000000002,1.35,0.293,0.59,0,0,0,0,6,17.2,0,0,0,0,0.273,98.75,128.13,0.97,0.2,891,3.4000000000000004,174,0.7000000000000001,0.0000,0.0000 +2012,9,27,10,30,17.1,1.3800000000000001,0.274,0.59,0,0,0,0,6,17.1,0,0,0,0,0.272,100,116.97,0.97,0.2,891,3.3000000000000003,160,0.6000000000000001,0.0000,0.0000 +2012,9,27,11,30,16.900000000000002,1.43,0.228,0.59,0,0,0,0,6,16.900000000000002,0,0,0,0,0.271,100,105.06,0.97,0.2,891,3.1,154,0.8,0.0000,0.0000 +2012,9,27,12,30,17,1.44,0.217,0.59,0,0,0,0,6,16.900000000000002,0,0,0,0,0.27,99.65,92.86,0.97,0.2,892,3,163,1.5,0.0000,0.0000 +2012,9,27,13,30,17.6,1.43,0.212,0.59,60,302,109,7,6,17,41,1,7,41,0.269,96.17,80.58,0.97,0.2,892,2.9000000000000004,177,2.2,0.0000,0.0000 +2012,9,27,14,30,18.6,1.43,0.203,0.59,104,563,308,0,7,17.2,108,5,0,110,0.269,91.53,68.74,0.97,0.2,892,2.9000000000000004,192,2.4000000000000004,17.2121,13.3516 +2012,9,27,15,30,19.700000000000003,1.45,0.193,0.59,126,703,503,0,6,17.2,140,3,0,142,0.268,85.68,57.58,0.97,0.2,892,2.8000000000000003,205,2.4000000000000004,29.7023,23.2296 +2012,9,27,16,30,20.700000000000003,1.47,0.18,0.59,137,783,663,0,6,17,288,29,0,308,0.266,79.4,47.79,0.97,0.2,892,2.8000000000000003,214,2.1,40.2632,31.5945 +2012,9,27,17,30,21.700000000000003,1.49,0.169,0.59,141,829,771,0,7,16.8,343,326,0,591,0.265,73.55,40.5,0.97,0.2,892,2.7,216,1.8,47.3456,37.2068 +2012,9,27,18,30,22.6,1.51,0.165,0.59,142,845,814,0,7,16.400000000000002,254,595,0,727,0.264,67.98,37.26,0.97,0.2,891,2.7,207,1.5,39.5412,31.0888 +2012,9,27,19,30,23.1,1.53,0.164,0.59,139,837,789,0,7,16,298,483,0,672,0.263,64.34,39.13,0.97,0.2,891,2.8000000000000003,185,1.4000000000000001,31.3297,24.6261 +2012,9,27,20,30,23.200000000000003,1.53,0.165,0.59,133,809,700,0,1,15.5,133,809,0,700,0.262,62.09,45.46,0.97,0.2,890,2.8000000000000003,168,1.7000000000000002,33.5243,26.3212 +2012,9,27,21,30,22.900000000000002,1.52,0.161,0.59,120,756,556,0,8,15.200000000000001,232,447,0,490,0.262,61.81,54.7,0.97,0.2,890,2.8000000000000003,164,2.1,32.4639,25.4214 +2012,9,27,22,30,22.1,1.52,0.17,0.59,103,643,369,0,4,15,238,77,0,270,0.261,64.08,65.56,0.97,0.2,890,2.8000000000000003,161,2.2,20.3907,15.8682 +2012,9,27,23,30,20.700000000000003,1.53,0.17500000000000002,0.59,70,434,165,0,7,15.4,116,46,0,126,0.261,71.49,77.28,0.97,0.2,890,2.8000000000000003,158,2,8.4730,6.4878 +2012,9,28,0,30,19.3,1.55,0.17200000000000001,0.59,0,0,0,7,7,16.3,0,0,7,0,0.261,82.91,89.14,0.97,0.2,891,2.8000000000000003,159,1.8,0.0000,0.0000 +2012,9,28,1,30,18.6,1.57,0.171,0.59,0,0,0,0,7,16.2,0,0,0,0,0.262,85.75,101.75,0.96,0.2,891,2.8000000000000003,162,2.1,0.0000,0.0000 +2012,9,28,2,30,18.1,1.58,0.17300000000000001,0.59,0,0,0,0,7,16,0,0,0,0,0.262,87.7,113.8,0.96,0.2,892,2.8000000000000003,164,2.4000000000000004,0.0000,0.0000 +2012,9,28,3,30,17.6,1.59,0.18,0.59,0,0,0,0,4,15.9,0,0,0,0,0.262,89.66,125.28,0.96,0.2,892,2.8000000000000003,165,2.5,0.0000,0.0000 +2012,9,28,4,30,17.1,1.58,0.19,0.59,0,0,0,0,4,15.700000000000001,0,0,0,0,0.262,91.43,135.52,0.97,0.2,892,2.8000000000000003,165,2.5,0.0000,0.0000 +2012,9,28,5,30,16.8,1.57,0.202,0.59,0,0,0,0,7,15.5,0,0,0,0,0.262,92.01,143.36,0.97,0.2,892,2.9000000000000004,168,2.5,0.0000,0.0000 +2012,9,28,6,30,16.6,1.54,0.216,0.59,0,0,0,0,7,15.3,0,0,0,0,0.262,92.2,146.94,0.97,0.2,892,2.9000000000000004,171,2.5,0.0000,0.0000 +2012,9,28,7,30,16.5,1.51,0.231,0.59,0,0,0,0,7,15.3,0,0,0,0,0.262,92.65,144.89000000000001,0.97,0.2,892,3,170,2.3000000000000003,0.0000,0.0000 +2012,9,28,8,30,16.400000000000002,1.48,0.244,0.59,0,0,0,0,1,15.4,0,0,0,0,0.262,93.93,138.06,0.97,0.2,892,3,163,2,0.0000,0.0000 +2012,9,28,9,30,16.3,1.47,0.255,0.59,0,0,0,0,8,15.600000000000001,0,0,0,0,0.263,95.64,128.35,0.97,0.2,892,3.1,149,1.7000000000000002,0.0000,0.0000 +2012,9,28,10,30,16.2,1.46,0.261,0.59,0,0,0,0,7,15.700000000000001,0,0,0,0,0.264,97.02,117.15,0.97,0.2,892,3.1,134,1.5,0.0000,0.0000 +2012,9,28,11,30,16.1,1.45,0.251,0.59,0,0,0,0,7,15.8,0,0,0,0,0.265,98.19,105.22,0.97,0.2,892,3.1,127,1.5,0.0000,0.0000 +2012,9,28,12,30,16.3,1.45,0.249,0.59,0,0,0,0,8,15.9,0,0,0,0,0.265,97.52,93.01,0.97,0.2,892,3.1,126,1.7000000000000002,0.0000,0.0000 +2012,9,28,13,30,16.900000000000002,1.46,0.23700000000000002,0.59,61,275,105,7,8,16.1,18,0,7,18,0.265,94.98,80.74,0.97,0.2,893,3.1,130,2.1,0.0000,0.0000 +2012,9,28,14,30,17.8,1.48,0.21,0.59,104,552,303,0,4,16.400000000000002,138,3,0,140,0.266,91.5,68.92,0.97,0.2,893,3.1,138,2.3000000000000003,5.6940,4.4160 +2012,9,28,15,30,18.900000000000002,1.5,0.191,0.59,125,698,497,0,8,16.5,196,474,0,449,0.264,85.8,57.800000000000004,0.97,0.2,893,3.1,146,2.1,7.9343,6.2047 +2012,9,28,16,30,19.900000000000002,1.53,0.17200000000000001,0.59,132,786,657,0,8,16.400000000000002,321,166,0,432,0.263,80.18,48.06,0.96,0.2,893,3,147,1.7000000000000002,17.9312,14.0697 +2012,9,28,17,30,20.5,1.54,0.158,0.59,135,832,764,0,8,16.2,308,387,0,601,0.261,76.29,40.83,0.96,0.2,892,3,143,1.5,35.1247,27.6014 +2012,9,28,18,30,20.8,1.55,0.152,0.59,135,849,807,0,7,16,397,249,0,594,0.259,74.12,37.64,0.96,0.2,892,3,140,1.6,43.5212,34.2162 +2012,9,28,19,30,20.900000000000002,1.55,0.145,0.59,130,847,784,0,7,15.9,394,142,0,503,0.257,72.94,39.52,0.96,0.2,892,3,141,1.9000000000000001,40.0662,31.4914 +2012,9,28,20,30,20.8,1.55,0.137,0.59,121,828,698,0,7,15.700000000000001,357,150,0,462,0.256,72.72,45.83,0.96,0.2,891,2.9000000000000004,142,2,41.0531,32.2297 +2012,9,28,21,30,20.400000000000002,1.55,0.126,0.59,106,784,555,0,7,15.700000000000001,253,38,0,275,0.255,74.36,55.04,0.96,0.2,891,2.9000000000000004,143,2,27.7672,21.7407 +2012,9,28,22,30,19.8,1.55,0.117,0.59,86,694,370,0,6,15.9,94,2,0,95,0.254,78.08,65.88,0.96,0.2,891,2.9000000000000004,144,1.7000000000000002,14.3411,11.1574 +2012,9,28,23,30,18.8,1.55,0.11,0.59,58,503,166,0,7,16.5,76,5,0,77,0.254,86.44,77.58,0.9500000000000001,0.2,891,2.9000000000000004,141,1.2000000000000002,6.0541,4.6331 +2012,9,29,0,30,17.8,1.55,0.108,0.59,0,0,0,7,6,16.7,0,0,7,0,0.254,93.24,89.4,0.9500000000000001,0.2,891,2.8000000000000003,138,0.9,0.0000,0.0000 +2012,9,29,1,30,17.3,1.56,0.1,0.59,0,0,0,0,7,16.3,0,0,0,0,0.255,93.89,102.04,0.9500000000000001,0.2,891,2.8000000000000003,139,0.9,0.0000,0.0000 +2012,9,29,2,30,16.900000000000002,1.55,0.097,0.59,0,0,0,0,6,16.2,0,0,0,0,0.255,95.93,114.11,0.96,0.2,891,2.9000000000000004,144,1,0.0000,0.0000 +2012,9,29,3,30,16.6,1.55,0.098,0.59,0,0,0,0,6,16.3,0,0,0,0,0.256,98.22,125.60000000000001,0.96,0.2,892,2.9000000000000004,152,1.2000000000000002,0.0000,0.0000 +2012,9,29,4,30,16.5,1.55,0.096,0.59,0,0,0,0,6,16.400000000000002,0,0,0,0,0.257,99.06,135.88,0.96,0.2,892,2.9000000000000004,163,1.2000000000000002,0.0000,0.0000 +2012,9,29,5,30,16.3,1.55,0.09,0.59,0,0,0,0,6,16.3,0,0,0,0,0.258,99.97,143.75,0.96,0.2,892,2.9000000000000004,177,1,0.0000,0.0000 +2012,9,29,6,30,16,1.55,0.08600000000000001,0.59,0,0,0,0,7,16,0,0,0,0,0.259,100,147.33,0.96,0.2,892,2.8000000000000003,200,0.7000000000000001,0.0000,0.0000 +2012,9,29,7,30,15.8,1.55,0.084,0.59,0,0,0,0,6,15.8,0,0,0,0,0.261,100,145.23,0.96,0.2,892,2.8000000000000003,229,0.7000000000000001,0.0000,0.0000 +2012,9,29,8,30,15.600000000000001,1.54,0.083,0.59,0,0,0,0,6,15.600000000000001,0,0,0,0,0.262,100,138.33,0.96,0.2,891,2.8000000000000003,261,0.7000000000000001,0.0000,0.0000 +2012,9,29,9,30,15.4,1.53,0.083,0.59,0,0,0,0,7,15.4,0,0,0,0,0.263,100,128.56,0.96,0.2,891,2.8000000000000003,296,0.6000000000000001,0.0000,0.0000 +2012,9,29,10,30,15.200000000000001,1.53,0.084,0.59,0,0,0,0,7,15.200000000000001,0,0,0,0,0.264,100,117.33,0.96,0.2,891,2.9000000000000004,323,0.7000000000000001,0.0000,0.0000 +2012,9,29,11,30,15.100000000000001,1.53,0.084,0.59,0,0,0,0,7,15.100000000000001,0,0,0,0,0.265,100,105.38,0.96,0.2,891,2.9000000000000004,336,0.8,0.0000,0.0000 +2012,9,29,12,30,15.200000000000001,1.53,0.089,0.59,0,0,0,0,7,15.200000000000001,0,0,0,0,0.265,99.74000000000001,93.17,0.96,0.2,891,2.9000000000000004,341,1.2000000000000002,0.0000,0.0000 +2012,9,29,13,30,15.9,1.51,0.105,0.59,46,414,112,7,7,15.3,20,0,7,20,0.265,96.05,80.9,0.96,0.2,892,3,347,1.4000000000000001,0.0000,0.0000 +2012,9,29,14,30,16.7,1.5,0.117,0.59,80,647,311,0,7,15.200000000000001,80,2,0,81,0.265,91.12,69.10000000000001,0.97,0.2,892,3.1,178,1.5,7.2357,5.6105 +2012,9,29,15,30,17.3,1.5,0.131,0.59,104,752,502,0,7,14.5,248,65,0,283,0.265,83.61,58.01,0.97,0.2,892,3.1,8,1.6,25.0591,19.5943 +2012,9,29,16,30,18,1.5,0.14,0.59,120,811,659,0,7,14.200000000000001,298,69,0,344,0.264,78.53,48.33,0.97,0.2,892,3,12,1.6,25.1275,19.7149 +2012,9,29,17,30,18.6,1.53,0.133,0.59,124,852,766,0,8,14.200000000000001,314,34,0,339,0.263,75.7,41.160000000000004,0.97,0.2,892,2.9000000000000004,13,1.8,35.6906,28.0446 +2012,9,29,18,30,19.200000000000003,1.55,0.108,0.59,115,886,813,0,4,14.200000000000001,311,2,0,312,0.262,72.63,38.03,0.96,0.2,891,2.8000000000000003,15,2,35.5310,27.9329 +2012,9,29,19,30,19.6,1.58,0.101,0.59,111,888,791,0,4,13.9,244,1,0,245,0.261,69.7,39.92,0.96,0.2,891,2.7,21,2.1,29.9634,23.5493 +2012,9,29,20,30,20,1.6,0.094,0.59,102,873,706,0,4,13.3,396,123,0,481,0.261,65.51,46.21,0.9500000000000001,0.2,890,2.5,29,2.4000000000000004,27.0648,21.2462 +2012,9,29,21,30,20.200000000000003,1.62,0.091,0.59,92,827,562,0,4,12.9,313,67,0,351,0.262,63.050000000000004,55.38,0.9500000000000001,0.2,890,2.4000000000000004,35,2.6,15.5593,12.1807 +2012,9,29,22,30,20,1.6400000000000001,0.098,0.59,80,727,373,0,4,12.8,230,96,0,269,0.263,63.43,66.2,0.9500000000000001,0.2,890,2.3000000000000003,39,2.7,5.0336,3.9151 +2012,9,29,23,30,18.7,1.6500000000000001,0.107,0.59,57,518,165,0,8,12.9,106,218,0,152,0.264,69.14,77.87,0.9500000000000001,0.2,890,2.2,45,1.9000000000000001,3.6931,2.8247 +2012,9,30,0,30,17,1.6500000000000001,0.11800000000000001,0.59,0,0,0,7,7,13.5,0,0,7,0,0.265,79.89,89.65,0.96,0.2,890,2.1,56,1.2000000000000002,0.0000,0.0000 +2012,9,30,1,30,16,1.6500000000000001,0.124,0.59,0,0,0,0,0,13.5,0,0,0,0,0.265,85.07000000000001,102.34,0.9500000000000001,0.2,891,2,68,1.1,0.0000,0.0000 +2012,9,30,2,30,15.4,1.6500000000000001,0.124,0.59,0,0,0,0,0,13.8,0,0,0,0,0.266,90.47,114.41,0.9500000000000001,0.2,891,2,77,1.1,0.0000,0.0000 +2012,9,30,3,30,14.9,1.6500000000000001,0.126,0.59,0,0,0,0,0,14.200000000000001,0,0,0,0,0.267,95.5,125.92,0.9500000000000001,0.2,891,1.9000000000000001,82,1.1,0.0000,0.0000 +2012,9,30,4,30,14.4,1.6500000000000001,0.131,0.59,0,0,0,0,0,14.4,0,0,0,0,0.268,99.99000000000001,136.24,0.9500000000000001,0.2,891,1.9000000000000001,83,1,0.0000,0.0000 +2012,9,30,5,30,13.9,1.6400000000000001,0.136,0.59,0,0,0,0,0,13.9,0,0,0,0,0.27,100,144.14000000000001,0.9500000000000001,0.2,891,1.9000000000000001,82,0.9,0.0000,0.0000 +2012,9,30,6,30,13.600000000000001,1.6500000000000001,0.14300000000000002,0.59,0,0,0,0,0,13.600000000000001,0,0,0,0,0.271,100,147.72,0.9500000000000001,0.2,891,2,79,0.8,0.0000,0.0000 +2012,9,30,7,30,13.4,1.6500000000000001,0.147,0.59,0,0,0,0,0,13.4,0,0,0,0,0.272,100,145.58,0.9500000000000001,0.2,891,1.9000000000000001,77,0.7000000000000001,0.0000,0.0000 +2012,9,30,8,30,13.3,1.67,0.147,0.59,0,0,0,0,0,13.3,0,0,0,0,0.272,100,138.6,0.9500000000000001,0.2,890,1.9000000000000001,76,0.6000000000000001,0.0000,0.0000 +2012,9,30,9,30,13.200000000000001,1.67,0.148,0.59,0,0,0,0,0,13.200000000000001,0,0,0,0,0.273,100,128.78,0.9500000000000001,0.2,890,1.9000000000000001,175,0.4,0.0000,0.0000 +2012,9,30,10,30,12.8,1.6600000000000001,0.146,0.59,0,0,0,0,3,12.8,0,0,0,0,0.273,100,117.51,0.9500000000000001,0.2,890,1.9000000000000001,275,0.6000000000000001,0.0000,0.0000 +2012,9,30,11,30,12.5,1.67,0.14100000000000001,0.59,0,0,0,0,7,12.5,0,0,0,0,0.273,100,105.55,0.9500000000000001,0.2,890,1.9000000000000001,277,1.4000000000000001,0.0000,0.0000 +2012,9,30,12,30,12.700000000000001,1.6600000000000001,0.14300000000000002,0.59,0,0,0,0,0,12.700000000000001,0,0,0,0,0.274,100,93.32000000000001,0.9500000000000001,0.2,890,1.9000000000000001,280,2.3000000000000003,0.0000,0.0000 +2012,9,30,13,30,14.100000000000001,1.6400000000000001,0.147,0.59,51,381,110,0,0,12.700000000000001,51,381,0,110,0.274,91.42,81.06,0.96,0.2,890,2,283,2.8000000000000003,0.0000,0.0000 +2012,9,30,14,30,16.8,1.6400000000000001,0.14300000000000002,0.59,87,642,314,0,0,13.4,87,642,0,314,0.275,80.62,69.29,0.9500000000000001,0.2,890,2,288,2.8000000000000003,4.1798,3.2403 +2012,9,30,15,30,19.8,1.6600000000000001,0.124,0.59,101,786,515,0,0,13.600000000000001,101,786,0,515,0.275,67.56,58.230000000000004,0.9500000000000001,0.2,890,1.9000000000000001,301,2.6,15.7769,12.3351 +2012,9,30,16,30,22.1,1.69,0.109,0.59,107,861,676,0,0,13.200000000000001,107,861,0,676,0.275,57.08,48.6,0.9500000000000001,0.2,889,2,325,2.3000000000000003,19.9907,15.6835 +2012,9,30,17,30,23.6,1.74,0.101,0.59,109,900,783,0,0,12.8,109,900,0,783,0.274,50.64,41.49,0.9500000000000001,0.2,889,2,171,2.3000000000000003,20.1154,15.8052 +2012,9,30,18,30,24.5,1.75,0.085,0.59,103,921,825,0,0,12.3,103,921,0,825,0.274,46.5,38.410000000000004,0.9400000000000001,0.2,888,2.1,8,2.5,18.6473,14.6588 +2012,9,30,19,30,24.700000000000003,1.78,0.09,0.59,104,908,797,0,0,11.9,104,908,0,797,0.274,44.660000000000004,40.31,0.9400000000000001,0.2,887,2.2,15,2.7,14.5810,11.4590 +2012,9,30,20,30,24.5,1.79,0.097,0.59,103,875,704,0,0,11.600000000000001,103,875,0,704,0.276,44.5,46.58,0.9500000000000001,0.2,887,2.3000000000000003,17,2.8000000000000003,28.1451,22.0923 +2012,9,30,21,30,24,1.82,0.10200000000000001,0.59,95,818,556,0,0,11.5,95,818,0,556,0.278,45.53,55.72,0.9500000000000001,0.2,887,2.3000000000000003,19,2.7,19.8277,15.5202 +2012,9,30,22,30,22.900000000000002,1.83,0.112,0.59,83,707,365,0,6,11.700000000000001,61,0,0,61,0.279,49.34,66.51,0.9500000000000001,0.2,887,2.4000000000000004,25,2.1,14.2178,11.0552 +2012,9,30,23,30,20.8,1.81,0.124,0.59,58,485,157,0,6,13.700000000000001,44,1,0,45,0.28,63.63,78.17,0.9500000000000001,0.2,887,2.5,37,1.3,7.2789,5.5644 +2012,10,1,0,30,19,1.54,0.10400000000000001,0.61,0,0,0,7,6,14.8,0,0,7,0,0.28200000000000003,76.51,89.91,0.9500000000000001,0.2,887,2.4000000000000004,51,0.9,0.0000,0.0000 +2012,10,1,1,30,18.400000000000002,1.54,0.101,0.61,0,0,0,0,7,13.3,0,0,0,0,0.28400000000000003,72.04,102.63,0.9500000000000001,0.2,887,2.4000000000000004,69,0.9,0.0000,0.0000 +2012,10,1,2,30,18.2,1.54,0.107,0.61,0,0,0,0,3,12.5,0,0,0,0,0.28500000000000003,69.59,114.71000000000001,0.9400000000000001,0.2,888,2.4000000000000004,97,0.7000000000000001,0.0000,0.0000 +2012,10,1,3,30,17.8,1.51,0.125,0.61,0,0,0,0,7,12.100000000000001,0,0,0,0,0.28700000000000003,69.32000000000001,126.25,0.9500000000000001,0.2,888,2.4000000000000004,172,0.5,0.0000,0.0000 +2012,10,1,4,30,16.8,1.49,0.132,0.61,0,0,0,0,6,12,0,0,0,0,0.28700000000000003,73.56,136.59,0.9500000000000001,0.2,888,2.3000000000000003,244,0.7000000000000001,0.0000,0.0000 +2012,10,1,5,30,15.9,1.51,0.111,0.61,0,0,0,0,6,12,0,0,0,0,0.28700000000000003,77.69,144.52,0.9400000000000001,0.2,888,2.2,266,1,0.0000,0.0000 +2012,10,1,6,30,15,1.51,0.093,0.61,0,0,0,0,7,11.700000000000001,0,0,0,0,0.28600000000000003,80.5,148.11,0.93,0.2,888,2.1,283,1.1,0.0000,0.0000 +2012,10,1,7,30,14.4,1.5,0.08600000000000001,0.61,0,0,0,0,0,11.4,0,0,0,0,0.28600000000000003,82.05,145.91,0.93,0.2,888,2.1,303,1.3,0.0000,0.0000 +2012,10,1,8,30,14,1.5,0.085,0.61,0,0,0,0,0,11.200000000000001,0,0,0,0,0.28700000000000003,83.11,138.87,0.93,0.2,888,2.1,324,1.8,0.0000,0.0000 +2012,10,1,9,30,13.8,1.5,0.089,0.61,0,0,0,0,0,11.200000000000001,0,0,0,0,0.289,84.05,128.99,0.9400000000000001,0.2,888,2.2,341,2.7,0.0000,0.0000 +2012,10,1,10,30,13.5,1.49,0.095,0.61,0,0,0,0,0,11.3,0,0,0,0,0.29,86.76,117.68,0.9400000000000001,0.2,888,2.2,352,3.3000000000000003,0.0000,0.0000 +2012,10,1,11,30,12.9,1.47,0.097,0.61,0,0,0,0,0,11.600000000000001,0,0,0,0,0.292,91.71000000000001,105.71000000000001,0.9400000000000001,0.2,889,2.2,353,3.3000000000000003,0.0000,0.0000 +2012,10,1,12,30,12.8,1.46,0.091,0.61,0,0,0,0,0,11.600000000000001,0,0,0,0,0.293,92.65,93.48,0.9400000000000001,0.2,889,2.1,346,3.4000000000000004,0.0000,0.0000 +2012,10,1,13,30,14.100000000000001,1.48,0.089,0.61,43,445,111,0,0,11.5,43,445,0,111,0.294,84.51,81.23,0.93,0.2,890,2.1,339,3.8000000000000003,0.0000,0.0000 +2012,10,1,14,30,17,1.5,0.093,0.61,72,691,314,0,0,11.600000000000001,72,691,0,314,0.294,70.43,69.47,0.93,0.2,891,2.2,347,4.7,16.1763,12.5377 +2012,10,1,15,30,20,1.5,0.10200000000000001,0.61,92,797,509,0,0,11.200000000000001,92,797,0,509,0.294,56.95,58.45,0.9400000000000001,0.2,891,2.2,182,6,28.6767,22.4183 +2012,10,1,16,30,21.700000000000003,1.48,0.109,0.61,106,852,666,0,0,10.200000000000001,106,852,0,666,0.292,47.93,48.870000000000005,0.9400000000000001,0.2,891,2.2,8,6.800000000000001,39.2477,30.7893 +2012,10,1,17,30,22.6,1.46,0.112,0.61,114,884,773,0,0,9.4,114,884,0,773,0.29,43.03,41.83,0.9400000000000001,0.2,891,2.1,8,7.2,46.4230,36.4737 +2012,10,1,18,30,23.1,1.44,0.079,0.61,101,928,824,0,0,8.700000000000001,101,928,0,824,0.28800000000000003,39.95,38.800000000000004,0.93,0.2,891,1.9000000000000001,7,7.4,49.2671,38.7273 +2012,10,1,19,30,23.1,1.41,0.079,0.61,100,922,798,0,1,8.1,100,922,0,798,0.28500000000000003,38.28,40.71,0.93,0.2,890,1.9000000000000001,8,7.5,47.3893,37.2403 +2012,10,1,20,30,22.700000000000003,1.4000000000000001,0.085,0.61,98,894,708,0,0,7.7,98,894,0,708,0.28400000000000003,38.04,46.95,0.93,0.2,890,1.8,9,7.4,41.1461,32.2946 +2012,10,1,21,30,22,1.42,0.115,0.61,101,812,554,0,0,7.4,101,812,0,554,0.28300000000000003,38.85,56.06,0.9400000000000001,0.2,890,1.8,10,7,31.3573,24.5417 +2012,10,1,22,30,21,1.4000000000000001,0.124,0.61,87,698,362,0,0,7.1000000000000005,87,698,0,362,0.28300000000000003,40.62,66.82000000000001,0.9400000000000001,0.2,890,1.8,11,6.2,3.2163,2.5001 +2012,10,1,23,30,19.200000000000003,1.3800000000000001,0.122,0.61,58,485,155,0,0,7.1000000000000005,58,485,0,155,0.28500000000000003,45.26,78.47,0.9400000000000001,0.2,891,1.7000000000000002,14,4.5,2.1519,1.6442 +2012,10,2,0,30,16.900000000000002,1.37,0.11,0.61,0,0,0,0,7,7.5,0,0,0,0,0.28600000000000003,53.75,90.15,0.9400000000000001,0.2,891,1.6,22,2.9000000000000004,0.0000,0.0000 +2012,10,2,1,30,15.100000000000001,1.3800000000000001,0.093,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28700000000000003,61.7,102.92,0.93,0.2,892,1.5,30,2.2,0.0000,0.0000 +2012,10,2,2,30,14,1.43,0.08,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28700000000000003,66.23,115.01,0.93,0.2,892,1.4000000000000001,34,2,0.0000,0.0000 +2012,10,2,3,30,13.100000000000001,1.46,0.074,0.61,0,0,0,0,0,7.7,0,0,0,0,0.28700000000000003,69.86,126.57000000000001,0.93,0.2,892,1.3,34,1.9000000000000001,0.0000,0.0000 +2012,10,2,4,30,12.200000000000001,1.48,0.07200000000000001,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.28700000000000003,73.26,136.94,0.93,0.2,892,1.2000000000000002,28,1.8,0.0000,0.0000 +2012,10,2,5,30,11.4,1.48,0.066,0.61,0,0,0,0,0,7.300000000000001,0,0,0,0,0.28700000000000003,75.77,144.91,0.93,0.2,892,1.2000000000000002,19,1.8,0.0000,0.0000 +2012,10,2,6,30,10.8,1.46,0.056,0.61,0,0,0,0,0,6.9,0,0,0,0,0.28700000000000003,76.87,148.5,0.92,0.2,892,1.1,14,2,0.0000,0.0000 +2012,10,2,7,30,10,1.43,0.047,0.61,0,0,0,0,0,6.4,0,0,0,0,0.28700000000000003,78.16,146.25,0.91,0.2,893,1.1,14,2.1,0.0000,0.0000 +2012,10,2,8,30,9,1.41,0.042,0.61,0,0,0,0,0,5.7,0,0,0,0,0.28700000000000003,79.82000000000001,139.13,0.91,0.2,893,1,15,1.9000000000000001,0.0000,0.0000 +2012,10,2,9,30,8,1.3900000000000001,0.038,0.61,0,0,0,0,0,5,0,0,0,0,0.28700000000000003,81.43,129.2,0.91,0.2,893,1,16,1.5,0.0000,0.0000 +2012,10,2,10,30,7.4,1.3800000000000001,0.036000000000000004,0.61,0,0,0,0,0,4.4,0,0,0,0,0.28800000000000003,81.37,117.86,0.9,0.2,892,1,11,1.1,0.0000,0.0000 +2012,10,2,11,30,7.2,1.3800000000000001,0.035,0.61,0,0,0,0,0,4,0,0,0,0,0.28800000000000003,80.21000000000001,105.87,0.9,0.2,892,1,176,1,0.0000,0.0000 +2012,10,2,12,30,7.7,1.3900000000000001,0.035,0.61,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.28800000000000003,76.58,93.64,0.9,0.2,892,1,329,1.1,0.0000,0.0000 +2012,10,2,13,30,9.9,1.4000000000000001,0.036000000000000004,0.61,35,568,120,0,0,4.2,35,568,0,120,0.28800000000000003,67.53,81.39,0.91,0.2,892,1.1,307,1.6,0.0000,0.0000 +2012,10,2,14,30,13.600000000000001,1.42,0.038,0.61,55,796,332,0,0,4.4,55,796,0,332,0.289,53.870000000000005,69.66,0.91,0.2,892,1.2000000000000002,296,1.8,16.1507,12.5151 +2012,10,2,15,30,17,1.43,0.041,0.61,68,890,531,0,0,2.3000000000000003,68,890,0,531,0.28800000000000003,37.21,58.67,0.91,0.2,892,1.3,292,1.8,28.3088,22.1283 +2012,10,2,16,30,19.3,1.45,0.045,0.61,78,939,692,0,0,2.8000000000000003,78,939,0,692,0.28800000000000003,33.35,49.14,0.92,0.2,891,1.3,285,2.2,38.6310,30.3033 +2012,10,2,17,30,21.3,1.46,0.048,0.61,84,960,795,0,0,4.1000000000000005,84,960,0,795,0.28700000000000003,32.28,42.160000000000004,0.92,0.2,890,1.4000000000000001,276,2.3000000000000003,45.7908,35.9748 +2012,10,2,18,30,22.8,1.47,0.058,0.61,90,958,833,0,0,5.2,90,958,0,833,0.28600000000000003,31.87,39.18,0.92,0.2,888,1.5,265,2.4000000000000004,49.1651,38.6449 +2012,10,2,19,30,24,1.47,0.061,0.61,91,949,806,0,0,6,91,949,0,806,0.28600000000000003,31.35,41.1,0.92,0.2,887,1.5,252,2.4000000000000004,47.4033,37.2488 +2012,10,2,20,30,24.700000000000003,1.46,0.063,0.61,87,923,713,0,0,6.5,87,923,0,713,0.28500000000000003,31.05,47.32,0.92,0.2,886,1.5,240,2.3000000000000003,41.3314,32.4372 +2012,10,2,21,30,24.900000000000002,1.44,0.058,0.61,77,880,564,0,0,6.7,77,880,0,564,0.28500000000000003,31.14,56.4,0.92,0.2,885,1.5,229,2.3000000000000003,31.1933,24.4098 +2012,10,2,22,30,24.1,1.43,0.058,0.61,65,788,371,0,0,6.7,65,788,0,371,0.28400000000000003,32.660000000000004,67.14,0.92,0.2,885,1.5,212,1.9000000000000001,19.0398,14.7960 +2012,10,2,23,30,21.200000000000003,1.42,0.057,0.61,45,589,159,0,0,8.9,45,589,0,159,0.28400000000000003,45.44,78.76,0.92,0.2,885,1.5,185,1.4000000000000001,7.4031,5.6535 +2012,10,3,0,30,18.1,1.42,0.055,0.61,0,0,0,0,0,9.600000000000001,0,0,0,0,0.28400000000000003,57.410000000000004,90.95,0.92,0.2,885,1.5,167,1.7000000000000002,0.0000,0.0000 +2012,10,3,1,30,17.1,1.42,0.054,0.61,0,0,0,0,0,8,0,0,0,0,0.28500000000000003,55.03,103.2,0.91,0.2,885,1.5,165,2.6,0.0000,0.0000 +2012,10,3,2,30,16.5,1.42,0.053,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.28500000000000003,55.6,115.31,0.91,0.2,885,1.5,168,3.5,0.0000,0.0000 +2012,10,3,3,30,15.600000000000001,1.42,0.052000000000000005,0.61,0,0,0,0,0,7.5,0,0,0,0,0.28600000000000003,58.57,126.88000000000001,0.91,0.2,885,1.5,172,3.9000000000000004,0.0000,0.0000 +2012,10,3,4,30,14.5,1.42,0.052000000000000005,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.28600000000000003,63.09,137.29,0.91,0.2,885,1.5,177,3.9000000000000004,0.0000,0.0000 +2012,10,3,5,30,13.700000000000001,1.41,0.052000000000000005,0.61,0,0,0,0,0,7.6000000000000005,0,0,0,0,0.28600000000000003,66.72,145.29,0.91,0.2,885,1.5,183,3.9000000000000004,0.0000,0.0000 +2012,10,3,6,30,13.100000000000001,1.41,0.052000000000000005,0.61,0,0,0,0,0,7.7,0,0,0,0,0.28600000000000003,69.8,148.89000000000001,0.91,0.2,885,1.5,188,3.8000000000000003,0.0000,0.0000 +2012,10,3,7,30,12.600000000000001,1.4000000000000001,0.052000000000000005,0.61,0,0,0,0,0,7.800000000000001,0,0,0,0,0.28600000000000003,72.79,146.59,0.91,0.2,885,1.5,192,3.8000000000000003,0.0000,0.0000 +2012,10,3,8,30,12.200000000000001,1.3900000000000001,0.051000000000000004,0.61,0,0,0,0,0,8,0,0,0,0,0.28600000000000003,75.76,139.4,0.91,0.2,885,1.5,196,3.8000000000000003,0.0000,0.0000 +2012,10,3,9,30,11.700000000000001,1.3800000000000001,0.051000000000000004,0.61,0,0,0,0,0,8.3,0,0,0,0,0.28600000000000003,79.59,129.41,0.91,0.2,885,1.4000000000000001,198,3.6,0.0000,0.0000 +2012,10,3,10,30,11.3,1.3800000000000001,0.051000000000000004,0.61,0,0,0,0,0,8.5,0,0,0,0,0.28600000000000003,83.02,118.04,0.91,0.2,885,1.4000000000000001,200,3.5,0.0000,0.0000 +2012,10,3,11,30,10.8,1.3800000000000001,0.051000000000000004,0.61,0,0,0,0,0,8.700000000000001,0,0,0,0,0.28600000000000003,86.96000000000001,106.03,0.9,0.2,885,1.3,203,3.3000000000000003,0.0000,0.0000 +2012,10,3,12,30,11,1.3900000000000001,0.051000000000000004,0.61,0,0,0,0,0,8.8,0,0,0,0,0.28600000000000003,86.56,93.8,0.9,0.2,885,1.3,206,3.3000000000000003,0.0000,0.0000 +2012,10,3,13,30,12.700000000000001,1.4000000000000001,0.05,0.61,36,530,114,0,0,8.9,36,530,0,114,0.28500000000000003,77.67,81.56,0.9,0.2,885,1.2000000000000002,207,3.5,0.0000,0.0000 +2012,10,3,14,30,16.3,1.41,0.048,0.61,58,780,327,0,0,9.1,58,780,0,327,0.28500000000000003,62.230000000000004,69.84,0.9,0.2,885,1.2000000000000002,205,3.6,17.0479,13.2073 +2012,10,3,15,30,20.200000000000003,1.42,0.046,0.61,70,888,528,0,0,9.1,70,888,0,528,0.28500000000000003,48.870000000000005,58.9,0.89,0.2,885,1.2000000000000002,201,3.8000000000000003,29.4968,23.0544 +2012,10,3,16,30,23.6,1.43,0.044,0.61,76,944,690,0,0,8.9,76,944,0,690,0.28500000000000003,39.17,49.42,0.89,0.2,885,1.2000000000000002,199,4,40.1011,31.4542 +2012,10,3,17,30,26.400000000000002,1.43,0.043000000000000003,0.61,80,972,797,0,0,8.3,80,972,0,797,0.28400000000000003,31.85,42.49,0.89,0.2,884,1.2000000000000002,198,3.9000000000000004,47.0543,36.9653 +2012,10,3,18,30,28.5,1.43,0.044,0.61,82,980,838,0,0,7.2,82,980,0,838,0.28300000000000003,26.18,39.56,0.89,0.2,884,1.2000000000000002,199,3.7,49.6598,39.0315 +2012,10,3,19,30,29.8,1.42,0.045,0.61,82,970,808,0,0,6.2,82,970,0,808,0.28200000000000003,22.56,41.49,0.89,0.2,883,1.3,196,3.4000000000000004,47.8330,37.5840 +2012,10,3,20,30,30.200000000000003,1.42,0.045,0.61,78,947,715,0,0,5.300000000000001,78,947,0,715,0.28200000000000003,20.82,47.69,0.89,0.2,883,1.3,190,3.3000000000000003,41.5736,32.6245 +2012,10,3,21,30,29.900000000000002,1.42,0.043000000000000003,0.61,70,907,568,0,0,4.7,70,907,0,568,0.28200000000000003,20.25,56.74,0.9,0.2,882,1.2000000000000002,181,3.3000000000000003,31.7034,24.8054 +2012,10,3,22,30,28.200000000000003,1.42,0.044,0.61,60,815,373,0,0,4.7,60,815,0,373,0.28300000000000003,22.41,67.45,0.9,0.2,883,1.2000000000000002,168,3.1,19.4630,15.1201 +2012,10,3,23,30,24.6,1.42,0.044,0.61,41,617,158,0,0,8.200000000000001,41,617,0,158,0.28300000000000003,35.28,79.06,0.9,0.2,883,1.2000000000000002,157,3,7.5871,5.7913 +2012,10,4,0,30,21.5,1.4000000000000001,0.043000000000000003,0.61,0,0,0,0,3,8.4,0,0,0,0,0.28200000000000003,43.15,91.23,0.89,0.19,883,1.2000000000000002,155,3.9000000000000004,0.0000,0.0000 +2012,10,4,1,30,19.8,1.3800000000000001,0.041,0.61,0,0,0,0,1,8.700000000000001,0,0,0,0,0.28200000000000003,48.660000000000004,103.49000000000001,0.89,0.19,884,1.1,159,4.6000000000000005,0.0000,0.0000 +2012,10,4,2,30,18.400000000000002,1.34,0.04,0.61,0,0,0,0,1,9.4,0,0,0,0,0.28200000000000003,55.71,115.60000000000001,0.89,0.19,885,1.1,164,4.7,0.0000,0.0000 +2012,10,4,3,30,17.2,1.31,0.039,0.61,0,0,0,0,1,9.8,0,0,0,0,0.28300000000000003,61.76,127.2,0.89,0.19,885,1.1,170,4.5,0.0000,0.0000 +2012,10,4,4,30,16.1,1.29,0.038,0.61,0,0,0,0,1,9.9,0,0,0,0,0.28300000000000003,66.87,137.64000000000001,0.89,0.19,885,1.1,178,4.2,0.0000,0.0000 +2012,10,4,5,30,15.200000000000001,1.28,0.038,0.61,0,0,0,0,1,9.700000000000001,0,0,0,0,0.28300000000000003,69.72,145.68,0.89,0.19,885,1.2000000000000002,188,3.6,0.0000,0.0000 +2012,10,4,6,30,14.4,1.28,0.038,0.61,0,0,0,0,1,8.8,0,0,0,0,0.28400000000000003,69.01,149.28,0.89,0.19,886,1.2000000000000002,204,2.6,0.0000,0.0000 +2012,10,4,7,30,13.700000000000001,1.26,0.037,0.61,0,0,0,0,1,7.2,0,0,0,0,0.28300000000000003,64.92,146.92000000000002,0.89,0.19,886,1.2000000000000002,239,1.9000000000000001,0.0000,0.0000 +2012,10,4,8,30,13.8,1.24,0.036000000000000004,0.61,0,0,0,0,1,5.6000000000000005,0,0,0,0,0.28300000000000003,57.51,139.66,0.89,0.19,887,1.2000000000000002,298,3.6,0.0000,0.0000 +2012,10,4,9,30,12.9,1.25,0.037,0.61,0,0,0,0,1,4.3,0,0,0,0,0.28300000000000003,56.01,129.62,0.9,0.19,890,1.3,344,7.2,0.0000,0.0000 +2012,10,4,10,30,10.3,1.31,0.048,0.61,0,0,0,0,1,4.7,0,0,0,0,0.28300000000000003,68.32000000000001,118.21000000000001,0.93,0.19,892,1.4000000000000001,181,9,0.0000,0.0000 +2012,10,4,11,30,8.200000000000001,1.33,0.067,0.61,0,0,0,0,3,4.2,0,0,0,0,0.28300000000000003,75.92,106.19,0.9400000000000001,0.19,893,1.4000000000000001,6,8.700000000000001,0.0000,0.0000 +2012,10,4,12,30,7.300000000000001,1.33,0.075,0.61,0,0,0,0,3,1.9000000000000001,0,0,0,0,0.28200000000000003,68.39,93.96000000000001,0.9500000000000001,0.19,894,1.3,9,8,0.0000,0.0000 +2012,10,4,13,30,7.5,1.34,0.07200000000000001,0.61,40,475,109,0,1,0.1,40,475,0,109,0.28200000000000003,59.6,81.72,0.9400000000000001,0.19,895,1.3,12,7.6000000000000005,0.0000,0.0000 +2012,10,4,14,30,8.8,1.32,0.069,0.61,66,740,319,0,3,-0.4,174,16,0,179,0.28200000000000003,52.6,70.03,0.9400000000000001,0.19,896,1.3,15,7.300000000000001,16.7643,12.9848 +2012,10,4,15,30,10.700000000000001,1.33,0.061,0.61,77,863,520,0,3,-0.4,299,81,0,340,0.281,46.08,59.120000000000005,0.93,0.19,896,1.3,16,6.800000000000001,29.2928,22.8922 +2012,10,4,16,30,12.9,1.33,0.055,0.61,83,926,682,0,3,-0.2,371,95,0,432,0.281,40.550000000000004,49.69,0.93,0.19,896,1.3,17,6.1000000000000005,39.9454,31.3298 +2012,10,4,17,30,14.9,1.32,0.054,0.61,87,956,788,7,2,0.2,326,528,7,713,0.28,36.65,42.83,0.92,0.19,896,1.3,20,5.300000000000001,47.1322,37.0243 +2012,10,4,18,30,16.3,1.37,0.069,0.61,96,949,823,7,2,0.6000000000000001,311,617,7,783,0.279,34.58,39.94,0.92,0.19,895,1.4000000000000001,26,4.5,49.9146,39.2295 +2012,10,4,19,30,17.3,1.37,0.069,0.61,94,942,796,7,2,1,275,686,7,786,0.277,33.39,41.88,0.92,0.19,895,1.4000000000000001,31,3.8000000000000003,47.9052,37.6382 +2012,10,4,20,30,17.8,1.3800000000000001,0.069,0.61,90,917,703,0,0,1.3,90,917,0,703,0.276,32.89,48.06,0.92,0.19,894,1.4000000000000001,36,3.1,41.6397,32.6734 +2012,10,4,21,30,17.8,1.42,0.076,0.61,84,862,553,0,0,1.4000000000000001,84,862,0,553,0.275,33.26,57.07,0.92,0.19,894,1.3,40,2.5,31.8742,24.9353 +2012,10,4,22,30,17.1,1.43,0.077,0.61,71,761,359,0,1,1.6,71,761,0,359,0.275,35.27,67.76,0.92,0.19,893,1.3,47,2,19.5185,15.1585 +2012,10,4,23,30,15,1.43,0.076,0.61,47,546,148,0,0,1.9000000000000001,47,546,0,148,0.274,41.04,79.34,0.92,0.19,893,1.3,61,1.4000000000000001,7.5342,5.7483 +2012,10,5,0,30,12.5,1.42,0.076,0.61,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.274,55.910000000000004,91.52,0.92,0.19,893,1.3,76,1.1,0.0000,0.0000 +2012,10,5,1,30,11.3,1.4000000000000001,0.077,0.61,0,0,0,0,1,3.3000000000000003,0,0,0,0,0.274,57.86,103.77,0.92,0.19,893,1.3,86,1.5,0.0000,0.0000 +2012,10,5,2,30,10.600000000000001,1.4000000000000001,0.081,0.61,0,0,0,0,0,3.1,0,0,0,0,0.274,59.69,115.89,0.92,0.19,894,1.4000000000000001,92,1.6,0.0000,0.0000 +2012,10,5,3,30,9.9,1.4000000000000001,0.083,0.61,0,0,0,0,0,3.2,0,0,0,0,0.274,63.09,127.51,0.92,0.19,894,1.5,92,1.6,0.0000,0.0000 +2012,10,5,4,30,9.1,1.4000000000000001,0.083,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.274,67.02,137.98,0.92,0.19,894,1.5,85,1.6,0.0000,0.0000 +2012,10,5,5,30,8.5,1.3900000000000001,0.082,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.275,69.86,146.06,0.93,0.19,894,1.5,77,1.7000000000000002,0.0000,0.0000 +2012,10,5,6,30,7.9,1.3800000000000001,0.085,0.61,0,0,0,0,7,3.2,0,0,0,0,0.275,72.44,149.67000000000002,0.93,0.19,893,1.5,75,1.7000000000000002,0.0000,0.0000 +2012,10,5,7,30,7.300000000000001,1.36,0.088,0.61,0,0,0,0,7,3.1,0,0,0,0,0.275,74.91,147.26,0.93,0.19,893,1.6,80,1.6,0.0000,0.0000 +2012,10,5,8,30,6.6000000000000005,1.35,0.089,0.61,0,0,0,0,7,3,0,0,0,0,0.276,77.97,139.92000000000002,0.93,0.19,893,1.6,87,1.3,0.0000,0.0000 +2012,10,5,9,30,5.9,1.34,0.08700000000000001,0.61,0,0,0,0,7,2.9000000000000004,0,0,0,0,0.276,81.21000000000001,129.83,0.93,0.19,892,1.6,91,1,0.0000,0.0000 +2012,10,5,10,30,5.5,1.35,0.08600000000000001,0.61,0,0,0,0,7,2.8000000000000003,0,0,0,0,0.276,82.83,118.39,0.93,0.19,892,1.5,88,1.1,0.0000,0.0000 +2012,10,5,11,30,5.1000000000000005,1.36,0.08600000000000001,0.61,0,0,0,0,7,2.6,0,0,0,0,0.276,83.9,106.35000000000001,0.93,0.19,893,1.5,81,1.2000000000000002,0.0000,0.0000 +2012,10,5,12,30,5.4,1.36,0.08600000000000001,0.61,0,0,0,0,7,2.2,0,0,0,0,0.276,79.94,94.11,0.93,0.19,893,1.4000000000000001,79,1.7000000000000002,0.0000,0.0000 +2012,10,5,13,30,7.1000000000000005,1.35,0.085,0.61,41,444,104,0,0,1.7000000000000002,41,444,0,104,0.277,68.4,81.89,0.93,0.19,893,1.4000000000000001,87,2.6,0.0000,0.0000 +2012,10,5,14,30,9.9,1.33,0.083,0.61,69,719,313,0,0,1.2000000000000002,69,719,0,313,0.277,54.74,70.22,0.93,0.19,893,1.3,105,2.6,9.1612,7.0941 +2012,10,5,15,30,12.600000000000001,1.32,0.08,0.61,84,840,512,0,0,2.7,84,840,0,512,0.277,50.81,59.35,0.93,0.19,893,1.3,127,2,18.8396,14.7214 +2012,10,5,16,30,15,1.32,0.078,0.61,93,902,673,0,0,4.2,93,902,0,673,0.277,48.550000000000004,49.97,0.93,0.19,893,1.3,142,1.4000000000000001,24.9850,19.5946 +2012,10,5,17,30,17.2,1.32,0.075,0.61,97,936,780,7,2,5.4,296,627,7,753,0.276,45.82,43.160000000000004,0.93,0.19,892,1.3,144,1.3,42.1269,33.0903 +2012,10,5,18,30,19,1.33,0.076,0.61,99,945,820,0,3,6.1000000000000005,404,90,0,473,0.276,43,40.32,0.93,0.19,892,1.3,135,1.2000000000000002,46.5975,36.6203 +2012,10,5,19,30,20.3,1.34,0.079,0.61,99,932,789,0,1,6.300000000000001,99,932,0,789,0.275,40.25,42.27,0.93,0.19,891,1.4000000000000001,121,1.4000000000000001,46.5550,36.5749 +2012,10,5,20,30,21.1,1.34,0.082,0.61,96,900,694,0,0,6.2,96,900,0,694,0.275,38.04,48.42,0.9400000000000001,0.19,890,1.5,105,1.9000000000000001,40.8904,32.0824 +2012,10,5,21,30,21,1.34,0.084,0.61,88,845,543,0,0,6,88,845,0,543,0.275,37.68,57.410000000000004,0.9400000000000001,0.19,890,1.5,97,2.9000000000000004,30.9806,24.2327 +2012,10,5,22,30,19.6,1.33,0.08600000000000001,0.61,74,738,350,0,0,5.800000000000001,74,738,0,350,0.274,40.51,68.07000000000001,0.9400000000000001,0.19,890,1.5,95,4.2,18.7379,14.5477 +2012,10,5,23,30,16.900000000000002,1.33,0.084,0.61,48,516,141,0,8,5.6000000000000005,86,235,0,128,0.274,47.39,79.63,0.93,0.19,890,1.5,93,5,7.0547,5.3804 +2012,10,6,0,30,14.100000000000001,1.31,0.084,0.61,0,0,0,0,7,5.2,0,0,0,0,0.274,54.88,91.8,0.93,0.2,890,1.5,93,5.300000000000001,0.0000,0.0000 +2012,10,6,1,30,11.9,1.29,0.084,0.61,0,0,0,0,7,4.2,0,0,0,0,0.274,59.39,104.05,0.93,0.2,891,1.5,93,5,0.0000,0.0000 +2012,10,6,2,30,10.200000000000001,1.29,0.08600000000000001,0.61,0,0,0,0,1,3.4000000000000004,0,0,0,0,0.274,62.88,116.18,0.93,0.2,892,1.5,89,4.6000000000000005,0.0000,0.0000 +2012,10,6,3,30,8.9,1.28,0.091,0.61,0,0,0,0,0,2.6,0,0,0,0,0.275,64.86,127.82000000000001,0.9400000000000001,0.2,893,1.5,83,5,0.0000,0.0000 +2012,10,6,4,30,7.7,1.27,0.10300000000000001,0.61,0,0,0,0,0,1.6,0,0,0,0,0.275,65.18,138.32,0.9400000000000001,0.2,894,1.6,80,5.6000000000000005,0.0000,0.0000 +2012,10,6,5,30,6.6000000000000005,1.26,0.115,0.61,0,0,0,0,0,0.4,0,0,0,0,0.276,64.67,146.44,0.9500000000000001,0.2,895,1.6,77,5.7,0.0000,0.0000 +2012,10,6,6,30,5.800000000000001,1.24,0.127,0.61,0,0,0,0,0,-0.5,0,0,0,0,0.277,64.08,150.05,0.96,0.2,895,1.6,76,5.6000000000000005,0.0000,0.0000 +2012,10,6,7,30,5.300000000000001,1.22,0.14400000000000002,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.279,62.99,147.59,0.96,0.2,895,1.7000000000000002,77,5.300000000000001,0.0000,0.0000 +2012,10,6,8,30,4.800000000000001,1.2,0.163,0.61,0,0,0,0,7,-1.5,0,0,0,0,0.281,63.53,140.18,0.96,0.2,895,1.7000000000000002,79,4.9,0.0000,0.0000 +2012,10,6,9,30,4.6000000000000005,1.22,0.163,0.61,0,0,0,0,7,-1.7000000000000002,0,0,0,0,0.28400000000000003,63.56,130.03,0.96,0.2,895,1.6,82,4.4,0.0000,0.0000 +2012,10,6,10,30,4.5,1.23,0.156,0.61,0,0,0,0,7,-2,0,0,0,0,0.28600000000000003,62.86,118.57000000000001,0.96,0.2,895,1.6,85,4,0.0000,0.0000 +2012,10,6,11,30,4.5,1.24,0.152,0.61,0,0,0,0,7,-2.2,0,0,0,0,0.28800000000000003,61.77,106.51,0.96,0.2,895,1.6,88,3.7,0.0000,0.0000 +2012,10,6,12,30,4.5,1.25,0.147,0.61,0,0,0,0,7,-2.4000000000000004,0,0,0,0,0.29,60.75,94.27,0.96,0.2,895,1.7000000000000002,93,3.5,0.0000,0.0000 +2012,10,6,13,30,4.9,1.26,0.14100000000000001,0.61,48,342,95,7,7,-2.6,41,2,7,42,0.291,58.29,82.05,0.96,0.2,895,1.7000000000000002,98,3.5,0.0000,0.0000 +2012,10,6,14,30,5.4,1.28,0.136,0.61,85,633,297,0,7,-2.7,39,0,0,39,0.291,55.83,70.41,0.96,0.2,895,1.7000000000000002,103,3.5,15.9920,12.3807 +2012,10,6,15,30,6,1.28,0.127,0.61,103,773,494,0,7,-2.8000000000000003,88,1,0,88,0.292,53.39,59.58,0.96,0.2,895,1.7000000000000002,107,3.5,28.3333,22.1372 +2012,10,6,16,30,6.9,1.28,0.121,0.61,113,846,654,0,6,-2.7,189,4,0,192,0.292,50.38,50.24,0.96,0.2,894,1.7000000000000002,107,3.2,38.8837,30.4924 +2012,10,6,17,30,8,1.28,0.116,0.61,117,887,761,0,7,-2.5,358,73,0,410,0.292,47.63,43.5,0.96,0.2,894,1.6,99,2.8000000000000003,44.4509,34.9136 +2012,10,6,18,30,9.1,1.25,0.101,0.61,113,914,806,0,7,-2,322,23,0,340,0.292,45.68,40.7,0.96,0.2,894,1.5,85,2.3000000000000003,28.1237,22.1006 +2012,10,6,19,30,9.9,1.25,0.095,0.61,109,915,782,0,4,-1.5,153,0,0,153,0.291,44.94,42.660000000000004,0.96,0.2,893,1.4000000000000001,69,1.9000000000000001,46.6858,36.6751 +2012,10,6,20,30,10.3,1.26,0.089,0.61,101,893,689,0,7,-1,248,15,0,259,0.291,45.31,48.79,0.96,0.2,893,1.4000000000000001,54,2,40.3177,31.6302 +2012,10,6,21,30,10.200000000000001,1.27,0.091,0.61,92,836,538,0,4,-0.8,243,10,0,248,0.291,46.39,57.74,0.96,0.2,892,1.4000000000000001,47,2.3000000000000003,30.3672,23.7492 +2012,10,6,22,30,9.3,1.28,0.098,0.61,79,720,344,0,4,-0.8,145,3,0,146,0.291,49.29,68.37,0.96,0.2,893,1.4000000000000001,50,2.6,18.2208,14.1417 +2012,10,6,23,30,8,1.3,0.10300000000000001,0.61,51,477,135,0,4,-1,41,0,0,41,0.292,53.050000000000004,79.92,0.96,0.2,893,1.4000000000000001,56,3.1,6.1009,4.6512 +2012,10,7,0,30,6.9,1.31,0.106,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.294,56.11,92.08,0.96,0.2,894,1.4000000000000001,61,3.5,0.0000,0.0000 +2012,10,7,1,30,5.9,1.31,0.101,0.61,0,0,0,0,8,-1.6,0,0,0,0,0.296,58.75,104.33,0.9500000000000001,0.2,895,1.4000000000000001,67,3.7,0.0000,0.0000 +2012,10,7,2,30,4.800000000000001,1.32,0.092,0.61,0,0,0,0,1,-1.9000000000000001,0,0,0,0,0.296,61.72,116.47,0.9500000000000001,0.2,895,1.4000000000000001,73,3.3000000000000003,0.0000,0.0000 +2012,10,7,3,30,3.8000000000000003,1.33,0.08600000000000001,0.61,0,0,0,0,1,-2.2,0,0,0,0,0.296,64.79,128.13,0.9500000000000001,0.2,896,1.5,81,2.8000000000000003,0.0000,0.0000 +2012,10,7,4,30,3.1,1.32,0.088,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.296,67.05,138.66,0.9500000000000001,0.2,896,1.5,88,2,0.0000,0.0000 +2012,10,7,5,30,2.5,1.3,0.10400000000000001,0.61,0,0,0,0,0,-2.5,0,0,0,0,0.296,69.36,146.82,0.9500000000000001,0.2,897,1.6,93,1.5,0.0000,0.0000 +2012,10,7,6,30,2.4000000000000004,1.23,0.14300000000000002,0.61,0,0,0,0,4,-2.7,0,0,0,0,0.295,69.25,150.44,0.96,0.2,897,1.6,98,1.9000000000000001,0.0000,0.0000 +2012,10,7,7,30,2.4000000000000004,1.2,0.17400000000000002,0.61,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.295,68.35000000000001,147.92000000000002,0.97,0.2,897,1.6,101,2.4000000000000004,0.0000,0.0000 +2012,10,7,8,30,2.2,1.19,0.182,0.61,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.295,69.10000000000001,140.44,0.97,0.2,897,1.6,103,2.3000000000000003,0.0000,0.0000 +2012,10,7,9,30,2.1,1.2,0.18,0.61,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.295,70.08,130.24,0.96,0.2,896,1.6,108,2.1,0.0000,0.0000 +2012,10,7,10,30,2.1,1.21,0.17400000000000002,0.61,0,0,0,0,7,-2.7,0,0,0,0,0.295,70.7,118.74000000000001,0.96,0.2,896,1.6,116,2,0.0000,0.0000 +2012,10,7,11,30,2.1,1.22,0.166,0.61,0,0,0,0,1,-2.6,0,0,0,0,0.295,71.24,106.67,0.96,0.2,896,1.6,126,2.1,0.0000,0.0000 +2012,10,7,12,30,2.1,1.21,0.169,0.61,0,0,0,0,7,-2.5,0,0,0,0,0.294,71.79,94.44,0.97,0.2,896,1.6,137,2.3000000000000003,0.0000,0.0000 +2012,10,7,13,30,2.7,1.21,0.17200000000000001,0.61,51,298,91,7,7,-2.3000000000000003,50,3,7,51,0.294,69.51,82.22,0.97,0.2,896,1.6,146,2.6,0.0000,0.0000 +2012,10,7,14,30,3.7,1.21,0.17500000000000002,0.61,96,584,289,0,7,-2.2,167,35,0,179,0.295,65.29,70.61,0.97,0.2,896,1.6,152,2.9000000000000004,1.9892,1.5396 +2012,10,7,15,30,5,1.21,0.188,0.61,125,710,482,0,4,-2.1,189,1,0,189,0.296,60.09,59.81,0.97,0.2,896,1.6,157,2.8000000000000003,4.8634,3.7994 +2012,10,7,16,30,6.2,1.21,0.191,0.61,142,783,640,0,4,-2,334,35,0,356,0.297,55.77,50.52,0.97,0.2,895,1.6,161,2.4000000000000004,11.0821,8.6898 +2012,10,7,17,30,7.5,1.22,0.186,0.61,149,825,744,0,4,-1.9000000000000001,195,0,0,195,0.299,51.52,43.84,0.97,0.2,895,1.6,172,1.9000000000000001,24.1807,18.9913 +2012,10,7,18,30,9,1.24,0.168,0.61,144,856,789,0,4,-1.7000000000000002,346,5,0,350,0.3,47.09,41.08,0.96,0.2,894,1.5,198,1.6,20.1974,15.8708 +2012,10,7,19,30,10.600000000000001,1.27,0.14300000000000002,0.61,131,875,770,7,8,-1.4000000000000001,275,14,7,285,0.301,43.300000000000004,43.04,0.96,0.2,893,1.3,232,1.7000000000000002,9.0439,7.1041 +2012,10,7,20,30,11.700000000000001,1.29,0.115,0.61,112,877,686,0,4,-1,187,0,0,187,0.303,41.43,49.15,0.96,0.2,892,1.1,253,1.9000000000000001,15.0273,11.7882 +2012,10,7,21,30,12.200000000000001,1.31,0.09,0.61,91,850,541,0,4,-0.7000000000000001,207,2,0,208,0.304,40.84,58.07,0.9500000000000001,0.2,892,1,265,1.8,13.8455,10.8264 +2012,10,7,22,30,11.9,1.36,0.069,0.61,68,776,350,0,4,-0.7000000000000001,141,2,0,142,0.305,41.89,68.68,0.9400000000000001,0.2,891,0.9,259,1.3,7.5815,5.8823 +2012,10,7,23,30,9.9,1.4000000000000001,0.056,0.61,42,572,139,0,0,-0.6000000000000001,42,572,0,139,0.304,48.06,80.2,0.9400000000000001,0.2,891,0.9,198,0.9,1.9547,1.4897 +2012,10,8,0,30,7.300000000000001,1.42,0.05,0.61,0,0,0,0,0,0.5,0,0,0,0,0.304,62.2,92.36,0.93,0.2,891,0.9,146,1.1,0.0000,0.0000 +2012,10,8,1,30,6,1.43,0.046,0.61,0,0,0,0,0,-0.2,0,0,0,0,0.304,64.35,104.61,0.93,0.2,892,0.9,146,1.8,0.0000,0.0000 +2012,10,8,2,30,5.4,1.43,0.044,0.61,0,0,0,0,1,-0.4,0,0,0,0,0.303,66.45,116.76,0.93,0.2,892,0.9,154,2.5,0.0000,0.0000 +2012,10,8,3,30,4.6000000000000005,1.42,0.042,0.61,0,0,0,0,1,-0.4,0,0,0,0,0.302,70.26,128.43,0.93,0.2,892,0.9,164,2.7,0.0000,0.0000 +2012,10,8,4,30,3.9000000000000004,1.41,0.042,0.61,0,0,0,0,1,-0.30000000000000004,0,0,0,0,0.301,73.81,139,0.93,0.2,893,0.9,177,2.7,0.0000,0.0000 +2012,10,8,5,30,3.4000000000000004,1.4000000000000001,0.043000000000000003,0.61,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.301,76.45,147.19,0.93,0.2,893,0.9,189,2.7,0.0000,0.0000 +2012,10,8,6,30,3,1.4000000000000001,0.044,0.61,0,0,0,0,1,-0.4,0,0,0,0,0.3,78.57000000000001,150.82,0.93,0.2,893,0.9,199,2.7,0.0000,0.0000 +2012,10,8,7,30,2.8000000000000003,1.4000000000000001,0.044,0.61,0,0,0,0,1,-0.4,0,0,0,0,0.299,79.65,148.25,0.93,0.2,893,0.9,208,2.8000000000000003,0.0000,0.0000 +2012,10,8,8,30,2.5,1.4000000000000001,0.044,0.61,0,0,0,0,1,-0.4,0,0,0,0,0.299,81.35000000000001,140.70000000000002,0.93,0.2,892,0.9,215,2.9000000000000004,0.0000,0.0000 +2012,10,8,9,30,2.3000000000000003,1.3800000000000001,0.043000000000000003,0.61,0,0,0,0,1,-0.30000000000000004,0,0,0,0,0.299,82.92,130.44,0.92,0.2,892,0.9,220,2.9000000000000004,0.0000,0.0000 +2012,10,8,10,30,2.1,1.36,0.042,0.61,0,0,0,0,1,-0.2,0,0,0,0,0.299,84.79,118.92,0.92,0.2,892,0.8,224,3,0.0000,0.0000 +2012,10,8,11,30,2,1.33,0.041,0.61,0,0,0,0,1,-0.1,0,0,0,0,0.299,86.17,106.83,0.92,0.2,891,0.8,228,3.1,0.0000,0.0000 +2012,10,8,12,30,2.3000000000000003,1.31,0.04,0.61,0,0,0,0,1,0.1,0,0,0,0,0.299,85.31,94.60000000000001,0.92,0.2,891,0.8,231,3.4000000000000004,0.0000,0.0000 +2012,10,8,13,30,4.1000000000000005,1.29,0.041,0.61,34,535,104,0,1,0.30000000000000004,34,535,0,104,0.299,76.05,82.39,0.92,0.2,891,0.8,230,3.9000000000000004,0.0000,0.0000 +2012,10,8,14,30,7.800000000000001,1.27,0.041,0.61,56,795,317,0,1,0.6000000000000001,56,795,0,317,0.298,60.17,70.8,0.92,0.2,891,0.8,226,4.4,9.1134,7.0518 +2012,10,8,15,30,11.9,1.26,0.041,0.61,68,904,520,0,3,1.4000000000000001,242,403,0,443,0.296,48.480000000000004,60.04,0.93,0.2,891,0.8,220,5.1000000000000005,10.4314,8.1481 +2012,10,8,16,30,15.3,1.26,0.042,0.61,77,952,679,0,3,2.4000000000000004,285,522,0,615,0.294,41.85,50.800000000000004,0.93,0.2,890,0.9,217,5.5,20.5265,16.0942 +2012,10,8,17,30,17.900000000000002,1.25,0.042,0.61,81,980,784,0,4,3,398,322,0,629,0.291,37.04,44.17,0.93,0.2,889,0.9,217,5.6000000000000005,11.4898,9.0234 +2012,10,8,18,30,20,1.35,0.056,0.61,90,972,819,0,8,3.2,285,528,0,681,0.28800000000000003,32.980000000000004,41.46,0.9400000000000001,0.2,888,1,221,5.4,20.7722,16.3214 +2012,10,8,19,30,21.6,1.33,0.056,0.61,88,966,790,0,6,3,357,252,0,539,0.28600000000000003,29.34,43.43,0.93,0.2,887,1,227,5.1000000000000005,16.8295,13.2189 +2012,10,8,20,30,22.6,1.29,0.054,0.61,83,938,692,0,8,2.4000000000000004,265,450,0,557,0.28400000000000003,26.46,49.51,0.93,0.2,886,1.1,231,4.6000000000000005,10.8362,8.4996 +2012,10,8,21,30,23.1,1.24,0.049,0.61,73,893,541,0,7,1.6,253,266,0,393,0.28400000000000003,24.26,58.410000000000004,0.93,0.2,885,1.1,231,4.1000000000000005,11.5920,9.0629 +2012,10,8,22,30,22,1.22,0.045,0.61,59,800,346,0,7,1.1,155,273,0,253,0.28500000000000003,25.05,68.98,0.92,0.2,885,1.1,220,2.9000000000000004,7.3542,5.7040 +2012,10,8,23,30,18.7,1.21,0.044,0.61,39,578,134,0,7,4.1000000000000005,50,285,0,98,0.28700000000000003,38,80.49,0.92,0.2,884,1.1,203,2.1,0.0000,0.0000 +2012,10,9,0,30,16.2,1.21,0.044,0.61,0,0,0,0,7,3.6,0,0,0,0,0.28800000000000003,43.04,92.63,0.92,0.21,884,1.2000000000000002,196,2.9000000000000004,0.0000,0.0000 +2012,10,9,1,30,15.600000000000001,1.23,0.045,0.61,0,0,0,0,7,3.7,0,0,0,0,0.28800000000000003,45.01,104.88,0.92,0.21,884,1.2000000000000002,201,4.1000000000000005,0.0000,0.0000 +2012,10,9,2,30,15,1.25,0.048,0.61,0,0,0,0,7,4.6000000000000005,0,0,0,0,0.28700000000000003,49.83,117.04,0.92,0.21,885,1.3,208,4.800000000000001,0.0000,0.0000 +2012,10,9,3,30,14.200000000000001,1.27,0.05,0.61,0,0,0,0,7,5.4,0,0,0,0,0.28700000000000003,55.29,128.73,0.92,0.21,885,1.3,213,4.800000000000001,0.0000,0.0000 +2012,10,9,4,30,13.200000000000001,1.28,0.048,0.61,0,0,0,0,7,5.800000000000001,0,0,0,0,0.28600000000000003,60.85,139.33,0.92,0.21,885,1.3,218,4.7,0.0000,0.0000 +2012,10,9,5,30,12.200000000000001,1.27,0.047,0.61,0,0,0,0,0,6,0,0,0,0,0.28500000000000003,65.96000000000001,147.56,0.92,0.21,885,1.3,225,4.4,0.0000,0.0000 +2012,10,9,6,30,11.5,1.25,0.046,0.61,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.28400000000000003,69.57000000000001,151.21,0.92,0.21,885,1.3,233,4.2,0.0000,0.0000 +2012,10,9,7,30,10.9,1.23,0.044,0.61,0,0,0,0,0,6,0,0,0,0,0.28400000000000003,71.8,148.58,0.92,0.21,884,1.3,242,3.8000000000000003,0.0000,0.0000 +2012,10,9,8,30,10.4,1.21,0.041,0.61,0,0,0,0,0,5.5,0,0,0,0,0.28400000000000003,71.46000000000001,140.95000000000002,0.91,0.21,884,1.2000000000000002,249,3.5,0.0000,0.0000 +2012,10,9,9,30,10,1.17,0.036000000000000004,0.61,0,0,0,0,0,4.3,0,0,0,0,0.28500000000000003,67.86,130.65,0.91,0.21,884,1.1,258,3.4000000000000004,0.0000,0.0000 +2012,10,9,10,30,9.600000000000001,1.1400000000000001,0.033,0.61,0,0,0,0,0,2.5,0,0,0,0,0.28500000000000003,61.43,119.09,0.91,0.21,884,1,266,3.5,0.0000,0.0000 +2012,10,9,11,30,9.200000000000001,1.12,0.031,0.61,0,0,0,0,0,0.4,0,0,0,0,0.28600000000000003,54,107,0.91,0.21,884,0.9,272,3.6,0.0000,0.0000 +2012,10,9,12,30,9.200000000000001,1.1,0.031,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.28600000000000003,47.160000000000004,94.76,0.91,0.21,884,0.8,278,3.9000000000000004,0.0000,0.0000 +2012,10,9,13,30,10.9,1.08,0.032,0.61,32,549,103,0,0,-2.3000000000000003,32,549,0,103,0.28600000000000003,39.52,82.57000000000001,0.91,0.21,885,0.8,281,4.4,0.0000,0.0000 +2012,10,9,14,30,14.4,1.05,0.033,0.61,53,806,316,0,0,-2.2,53,806,0,316,0.28700000000000003,31.78,71,0.92,0.21,885,0.8,281,4.3,16.1114,12.4636 +2012,10,9,15,30,19.200000000000003,1.04,0.033,0.61,65,913,518,0,3,-1.2000000000000002,251,351,0,425,0.289,25.13,60.27,0.92,0.21,886,0.8,287,4,24.4174,19.0704 +2012,10,9,16,30,24.1,1.05,0.033,0.61,72,966,679,0,4,-1.2000000000000002,279,536,0,616,0.291,18.63,51.09,0.91,0.21,886,0.8,307,4.2,35.4226,27.7715 +2012,10,9,17,30,27.1,1.08,0.033,0.61,76,988,781,0,8,-3,194,706,0,697,0.292,13.700000000000001,44.51,0.91,0.21,885,0.9,325,3.9000000000000004,37.0276,29.0773 +2012,10,9,18,30,28.200000000000003,1.1500000000000001,0.036000000000000004,0.61,79,995,820,7,3,-3.1,277,704,7,801,0.292,12.790000000000001,41.84,0.91,0.21,885,0.9,336,3.4000000000000004,40.3786,31.7249 +2012,10,9,19,30,28.6,1.17,0.038,0.61,79,982,787,0,1,-2.8000000000000003,79,982,0,787,0.291,12.71,43.81,0.91,0.21,885,1,350,3,31.7948,24.9717 +2012,10,9,20,30,28.3,1.2,0.04,0.61,76,952,689,0,0,-2.5,76,952,0,689,0.29,13.290000000000001,49.870000000000005,0.92,0.21,885,1.1,190,3.1,32.2354,25.2821 +2012,10,9,21,30,27.1,1.18,0.04,0.61,69,898,535,0,0,-1.8,69,898,0,535,0.289,14.91,58.730000000000004,0.91,0.21,885,1.2000000000000002,32,3.8000000000000003,21.8620,17.0894 +2012,10,9,22,30,24.5,1.23,0.044,0.61,58,794,339,0,0,-0.8,58,794,0,339,0.28800000000000003,18.830000000000002,69.28,0.91,0.21,885,1.2000000000000002,48,4.6000000000000005,13.0691,10.1330 +2012,10,9,23,30,20.6,1.29,0.047,0.61,38,557,127,0,0,1.6,38,557,0,127,0.28800000000000003,28.21,80.77,0.9,0.21,886,1.3,55,4.800000000000001,0.0000,0.0000 +2012,10,10,0,30,17.1,1.35,0.049,0.61,0,0,0,0,1,2.6,0,0,0,0,0.28800000000000003,37.9,92.9,0.9,0.2,888,1.4000000000000001,57,4.5,0.0000,0.0000 +2012,10,10,1,30,14.8,1.3800000000000001,0.05,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.28800000000000003,46.2,105.15,0.9,0.2,889,1.4000000000000001,60,4,0.0000,0.0000 +2012,10,10,2,30,13.200000000000001,1.3900000000000001,0.05,0.61,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.28700000000000003,53.11,117.32000000000001,0.91,0.2,890,1.5,62,3.7,0.0000,0.0000 +2012,10,10,3,30,11.8,1.4000000000000001,0.05,0.61,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.28600000000000003,59.25,129.03,0.91,0.2,891,1.5,61,3.7,0.0000,0.0000 +2012,10,10,4,30,10.5,1.42,0.05,0.61,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.28500000000000003,64.6,139.66,0.91,0.2,892,1.5,57,3.7,0.0000,0.0000 +2012,10,10,5,30,9.4,1.42,0.051000000000000004,0.61,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.28300000000000003,68.32000000000001,147.94,0.91,0.2,893,1.5,54,3.7,0.0000,0.0000 +2012,10,10,6,30,8.4,1.42,0.052000000000000005,0.61,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.28200000000000003,70.77,151.59,0.91,0.2,894,1.5,52,3.5,0.0000,0.0000 +2012,10,10,7,30,7.6000000000000005,1.41,0.054,0.61,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.281,71.84,148.91,0.92,0.2,894,1.5,50,3.3000000000000003,0.0000,0.0000 +2012,10,10,8,30,6.800000000000001,1.4000000000000001,0.055,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.28,73.28,141.21,0.92,0.2,894,1.5,45,2.8000000000000003,0.0000,0.0000 +2012,10,10,9,30,6.1000000000000005,1.3900000000000001,0.056,0.61,0,0,0,0,0,2,0,0,0,0,0.279,75.06,130.85,0.92,0.2,895,1.5,39,2.3000000000000003,0.0000,0.0000 +2012,10,10,10,30,5.6000000000000005,1.3800000000000001,0.057,0.61,0,0,0,0,0,1.8,0,0,0,0,0.279,76.34,119.26,0.92,0.2,895,1.5,35,1.8,0.0000,0.0000 +2012,10,10,11,30,5.2,1.37,0.06,0.61,0,0,0,0,0,1.6,0,0,0,0,0.278,77.35000000000001,107.16,0.92,0.2,895,1.5,36,1.4000000000000001,0.0000,0.0000 +2012,10,10,12,30,5.2,1.35,0.062,0.61,0,0,0,0,7,1.4000000000000001,0,0,0,0,0.277,76.27,94.92,0.93,0.2,895,1.5,47,1.3,0.0000,0.0000 +2012,10,10,13,30,6.6000000000000005,1.34,0.064,0.61,36,446,92,0,1,1.2000000000000002,36,446,0,92,0.276,68.28,82.74,0.93,0.2,896,1.6,76,1.9000000000000001,0.0000,0.0000 +2012,10,10,14,30,9.200000000000001,1.33,0.063,0.61,62,725,296,0,0,0.2,62,725,0,296,0.276,53.410000000000004,71.2,0.93,0.2,896,1.6,103,2.8000000000000003,16.0312,12.3983 +2012,10,10,15,30,12,1.33,0.061,0.61,75,846,492,0,0,-0.5,75,846,0,492,0.277,41.95,60.5,0.92,0.2,896,1.6,117,3.2,23.3934,18.2683 +2012,10,10,16,30,14.600000000000001,1.33,0.058,0.61,83,908,650,0,7,-0.6000000000000001,197,609,0,577,0.278,35.19,51.370000000000005,0.92,0.2,895,1.6,129,3.1,35.4408,27.7833 +2012,10,10,17,30,16.8,1.33,0.055,0.61,87,944,756,0,3,-0.1,395,96,0,463,0.278,31.66,44.85,0.93,0.2,894,1.5,141,3,40.9910,32.1874 +2012,10,10,18,30,18.6,1.37,0.065,0.61,93,945,793,0,3,0.6000000000000001,404,95,0,475,0.276,29.76,42.22,0.93,0.2,893,1.5,152,3,47.4483,37.2769 +2012,10,10,19,30,19.900000000000002,1.37,0.062,0.61,90,944,767,0,3,1.2000000000000002,408,104,0,483,0.274,28.8,44.19,0.93,0.2,892,1.4000000000000001,159,3.2,46.3754,36.4206 +2012,10,10,20,30,20.6,1.37,0.06,0.61,85,920,673,0,0,1.7000000000000002,85,920,0,673,0.273,28.59,50.230000000000004,0.93,0.2,891,1.4000000000000001,163,3.4000000000000004,39.8227,31.2296 +2012,10,10,21,30,20.6,1.37,0.057,0.61,76,873,524,0,0,2.1,76,873,0,524,0.273,29.44,59.06,0.93,0.2,890,1.3,166,3.5,29.7092,23.2196 +2012,10,10,22,30,19.6,1.3800000000000001,0.055,0.61,62,772,331,0,0,2.5,62,772,0,331,0.272,32.12,69.58,0.93,0.2,890,1.3,166,3.5,17.4658,13.5372 +2012,10,10,23,30,16.8,1.3900000000000001,0.054,0.61,39,540,123,0,0,3.1,39,540,0,123,0.272,39.94,81.05,0.93,0.2,890,1.2000000000000002,161,2.7,0.0000,0.0000 +2012,10,11,0,30,14.100000000000001,1.3900000000000001,0.054,0.61,0,0,0,0,0,4.2,0,0,0,0,0.272,51.160000000000004,93.17,0.93,0.21,890,1.2000000000000002,159,2.7,0.0000,0.0000 +2012,10,11,1,30,12.9,1.4000000000000001,0.055,0.61,0,0,0,0,0,4.3,0,0,0,0,0.272,55.88,105.42,0.93,0.21,890,1.2000000000000002,164,3.5,0.0000,0.0000 +2012,10,11,2,30,11.9,1.41,0.056,0.61,0,0,0,0,0,4.9,0,0,0,0,0.271,62.120000000000005,117.59,0.93,0.21,891,1.2000000000000002,172,3.8000000000000003,0.0000,0.0000 +2012,10,11,3,30,11.100000000000001,1.42,0.058,0.61,0,0,0,0,0,5.5,0,0,0,0,0.27,68.27,129.32,0.93,0.21,890,1.2000000000000002,180,3.9000000000000004,0.0000,0.0000 +2012,10,11,4,30,10.4,1.42,0.061,0.61,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.27,74.56,139.99,0.93,0.21,890,1.2000000000000002,188,3.7,0.0000,0.0000 +2012,10,11,5,30,10,1.42,0.067,0.61,0,0,0,0,0,6.7,0,0,0,0,0.27,79.78,148.3,0.9400000000000001,0.21,890,1.3,198,3.6,0.0000,0.0000 +2012,10,11,6,30,9.700000000000001,1.42,0.08,0.61,0,0,0,0,0,7.300000000000001,0,0,0,0,0.27,84.94,151.97,0.9500000000000001,0.21,890,1.4000000000000001,207,3.6,0.0000,0.0000 +2012,10,11,7,30,9.8,1.4000000000000001,0.097,0.61,0,0,0,0,0,8,0,0,0,0,0.27,88.62,149.23,0.9500000000000001,0.21,890,1.6,214,3.8000000000000003,0.0000,0.0000 +2012,10,11,8,30,10.200000000000001,1.3800000000000001,0.11900000000000001,0.61,0,0,0,0,0,8.9,0,0,0,0,0.27,91.94,141.46,0.96,0.21,889,1.8,220,4.1000000000000005,0.0000,0.0000 +2012,10,11,9,30,10.9,1.35,0.14100000000000001,0.61,0,0,0,0,0,10,0,0,0,0,0.271,94.34,131.05,0.97,0.21,889,1.9000000000000001,224,4.3,0.0000,0.0000 +2012,10,11,10,30,11.5,1.32,0.154,0.61,0,0,0,0,0,11.200000000000001,0,0,0,0,0.271,97.81,119.44,0.97,0.21,890,2.1,227,4.2,0.0000,0.0000 +2012,10,11,11,30,11.9,1.29,0.154,0.61,0,0,0,0,0,11.9,0,0,0,0,0.272,100,107.32000000000001,0.97,0.21,890,2.2,226,3.8000000000000003,0.0000,0.0000 +2012,10,11,12,30,12.5,1.28,0.151,0.61,0,0,0,0,7,12.5,0,0,0,0,0.272,100,95.09,0.97,0.21,890,2.3000000000000003,224,3.6,0.0000,0.0000 +2012,10,11,13,30,14.200000000000001,1.28,0.147,0.61,44,292,80,0,0,13,44,292,0,80,0.271,92.72,82.92,0.97,0.21,890,2.4000000000000004,223,4.1000000000000005,0.0000,0.0000 +2012,10,11,14,30,17.6,1.29,0.145,0.61,84,589,272,0,0,13.9,84,589,0,272,0.271,78.99,71.4,0.97,0.21,891,2.5,223,5.1000000000000005,14.9890,11.5891 +2012,10,11,15,30,20.900000000000002,1.33,0.137,0.61,104,734,463,0,0,15,104,734,0,463,0.27,68.84,60.74,0.97,0.21,891,2.6,223,5.9,27.0441,21.1164 +2012,10,11,16,30,23,1.36,0.127,0.61,113,812,617,0,1,15,113,812,0,617,0.269,60.76,51.65,0.97,0.21,890,2.7,223,5.800000000000001,33.1609,25.9937 +2012,10,11,17,30,24.5,1.3800000000000001,0.124,0.61,118,848,716,0,0,14.5,118,848,0,716,0.268,53.800000000000004,45.18,0.96,0.21,890,2.8000000000000003,221,5.4,27.2026,21.3588 +2012,10,11,18,30,25.8,1.3900000000000001,0.12,0.61,118,862,753,0,1,14.100000000000001,118,862,0,753,0.267,48.36,42.59,0.96,0.21,889,2.9000000000000004,216,5,28.1098,22.0825 +2012,10,11,19,30,26.900000000000002,1.41,0.109,0.61,112,865,728,0,8,13.600000000000001,237,594,0,660,0.266,44.01,44.57,0.96,0.21,888,2.8000000000000003,207,4.800000000000001,28.4314,22.3267 +2012,10,11,20,30,27.200000000000003,1.42,0.095,0.61,100,850,640,0,7,13.3,209,565,0,568,0.264,42.21,50.58,0.96,0.21,888,2.7,199,4.800000000000001,38.8465,30.4609 +2012,10,11,21,30,26.900000000000002,1.41,0.079,0.61,84,808,495,0,1,13.100000000000001,84,808,0,495,0.264,42.62,59.38,0.96,0.21,888,2.7,196,4.9,29.0449,22.6966 +2012,10,11,22,30,25.900000000000002,1.3900000000000001,0.074,0.61,67,703,309,0,0,13.3,67,703,0,309,0.263,45.69,69.88,0.96,0.21,888,2.7,197,4.3,17.0086,13.1782 +2012,10,11,23,30,23.400000000000002,1.3800000000000001,0.07100000000000001,0.61,41,457,110,0,3,13.8,73,8,0,74,0.262,54.78,81.33,0.96,0.21,888,2.8000000000000003,194,3,0.0000,0.0000 +2012,10,12,0,30,21,1.37,0.069,0.61,0,0,0,0,7,14.200000000000001,0,0,0,0,0.262,65.03,93.44,0.96,0.21,889,2.9000000000000004,191,2.3000000000000003,0.0000,0.0000 +2012,10,12,1,30,20.1,1.36,0.07,0.61,0,0,0,0,7,14.3,0,0,0,0,0.262,69.38,105.69,0.96,0.21,889,3,190,2.6,0.0000,0.0000 +2012,10,12,2,30,19.6,1.35,0.07200000000000001,0.61,0,0,0,0,7,14.700000000000001,0,0,0,0,0.261,73.24,117.86,0.97,0.21,890,3.1,191,3,0.0000,0.0000 +2012,10,12,3,30,18.900000000000002,1.34,0.073,0.61,0,0,0,0,7,15,0,0,0,0,0.261,78.12,129.61,0.97,0.21,890,3.1,191,3.1,0.0000,0.0000 +2012,10,12,4,30,18.2,1.34,0.075,0.61,0,0,0,0,7,15.3,0,0,0,0,0.26,83.34,140.31,0.97,0.21,891,3.2,193,3,0.0000,0.0000 +2012,10,12,5,30,17.400000000000002,1.33,0.078,0.61,0,0,0,0,7,15.600000000000001,0,0,0,0,0.26,89.19,148.67000000000002,0.96,0.21,891,3.2,198,2.6,0.0000,0.0000 +2012,10,12,6,30,16.7,1.33,0.08,0.61,0,0,0,0,0,15.8,0,0,0,0,0.26,94.43,152.34,0.96,0.21,891,3.1,206,2.1,0.0000,0.0000 +2012,10,12,7,30,16.2,1.33,0.084,0.61,0,0,0,0,0,15.9,0,0,0,0,0.26,98.18,149.55,0.96,0.21,891,3.1,214,1.8,0.0000,0.0000 +2012,10,12,8,30,15.8,1.32,0.089,0.61,0,0,0,0,0,15.8,0,0,0,0,0.26,100,141.71,0.96,0.21,891,3,223,1.4000000000000001,0.0000,0.0000 +2012,10,12,9,30,15.4,1.29,0.098,0.61,0,0,0,0,8,15.4,0,0,0,0,0.261,100,131.25,0.96,0.21,892,3,240,1.1,0.0000,0.0000 +2012,10,12,10,30,14.9,1.25,0.113,0.61,0,0,0,0,6,14.9,0,0,0,0,0.262,100,119.61,0.97,0.21,892,3.1,286,0.9,0.0000,0.0000 +2012,10,12,11,30,14.600000000000001,1.18,0.132,0.61,0,0,0,0,6,14.4,0,0,0,0,0.263,98.48,107.48,0.97,0.21,892,3.1,170,1.3,0.0000,0.0000 +2012,10,12,12,30,14.200000000000001,1.16,0.164,0.61,0,0,0,0,6,13.4,0,0,0,0,0.263,94.76,95.25,0.98,0.21,892,3.3000000000000003,51,1.3,0.0000,0.0000 +2012,10,12,13,30,14.100000000000001,1.1400000000000001,0.168,0.61,44,238,73,7,6,12.600000000000001,14,0,7,14,0.263,90.89,83.09,0.98,0.21,893,3.6,107,1.1,0.0000,0.0000 +2012,10,12,14,30,14.200000000000001,1.16,0.17200000000000001,0.61,90,533,259,0,6,12.600000000000001,46,0,0,46,0.263,89.89,71.60000000000001,0.97,0.21,893,3.5,111,1.6,13.7483,10.6268 +2012,10,12,15,30,14.600000000000001,1.21,0.209,0.61,127,647,441,0,7,12.9,127,4,0,129,0.262,89.71000000000001,60.97,0.97,0.21,893,3.3000000000000003,84,2.2,25.4132,19.8401 +2012,10,12,16,30,16.1,1.25,0.20400000000000001,0.61,143,736,596,0,4,13.4,84,0,0,84,0.261,83.98,51.93,0.97,0.21,892,3,92,2.8000000000000003,35.4207,27.7627 +2012,10,12,17,30,18.7,1.29,0.156,0.61,132,817,704,0,3,13.600000000000001,413,154,0,521,0.26,72.4,45.52,0.96,0.21,892,2.9000000000000004,125,3.7,42.0264,32.9958 +2012,10,12,18,30,21.200000000000003,1.25,0.114,0.61,116,862,747,0,4,14,398,92,0,465,0.259,63.57,42.96,0.96,0.21,891,3,142,4.5,44.5185,34.9704 +2012,10,12,19,30,22.700000000000003,1.21,0.123,0.61,119,843,716,0,0,14.9,119,843,0,716,0.258,61.61,44.95,0.97,0.21,890,3.1,151,4.9,38.8083,30.4731 +2012,10,12,20,30,23.5,1.17,0.129,0.61,115,802,620,0,1,15.8,115,802,0,620,0.257,61.82,50.94,0.97,0.21,889,3.3000000000000003,158,5.2,32.7428,25.6722 +2012,10,12,21,30,23.6,1.1400000000000001,0.132,0.61,104,733,474,7,2,16.3,285,164,7,368,0.258,63.54,59.71,0.97,0.21,888,3.3000000000000003,159,5.300000000000001,27.3879,21.3981 +2012,10,12,22,30,22.900000000000002,1.1300000000000001,0.136,0.61,85,600,289,0,0,16.8,85,600,0,289,0.258,68.42,70.17,0.97,0.21,888,3.4000000000000004,153,5,15.8359,12.2650 +2012,10,12,23,30,21.5,1.16,0.135,0.61,49,334,97,0,0,17.3,49,334,0,97,0.258,76.89,81.60000000000001,0.96,0.21,887,3.4000000000000004,148,4.9,0.0000,0.0000 +2012,10,13,0,30,20.200000000000003,1.2,0.13,0.61,0,0,0,0,0,17.2,0,0,0,0,0.259,83.05,93.71000000000001,0.96,0.21,887,3.3000000000000003,148,5.5,0.0000,0.0000 +2012,10,13,1,30,19.3,1.23,0.13,0.61,0,0,0,0,1,16.900000000000002,0,0,0,0,0.26,85.8,105.95,0.96,0.21,887,3.3000000000000003,150,6.1000000000000005,0.0000,0.0000 +2012,10,13,2,30,18.900000000000002,1.19,0.149,0.61,0,0,0,0,1,16.5,0,0,0,0,0.261,85.9,118.13,0.96,0.21,887,3.4000000000000004,156,6.300000000000001,0.0000,0.0000 +2012,10,13,3,30,18.8,1.11,0.17400000000000002,0.61,0,0,0,0,7,16.2,0,0,0,0,0.262,84.99,129.9,0.97,0.21,887,3.5,163,6.4,0.0000,0.0000 +2012,10,13,4,30,18.8,1.07,0.17400000000000002,0.61,0,0,0,0,0,16.1,0,0,0,0,0.264,84.45,140.63,0.97,0.21,887,3.5,170,6.4,0.0000,0.0000 +2012,10,13,5,30,18.6,1.05,0.193,0.61,0,0,0,0,1,16,0,0,0,0,0.266,85.08,149.03,0.98,0.21,886,3.7,178,6.300000000000001,0.0000,0.0000 +2012,10,13,6,30,18.3,1.02,0.23500000000000001,0.61,0,0,0,0,7,16.3,0,0,0,0,0.268,88.21000000000001,152.72,0.98,0.21,886,3.8000000000000003,186,6.2,0.0000,0.0000 +2012,10,13,7,30,18.1,1.02,0.23700000000000002,0.61,0,0,0,0,7,16.7,0,0,0,0,0.269,91.25,149.87,0.98,0.21,886,3.6,192,6.300000000000001,0.0000,0.0000 +2012,10,13,8,30,17.900000000000002,1.03,0.17300000000000001,0.61,0,0,0,0,1,16.900000000000002,0,0,0,0,0.269,94.09,141.96,0.97,0.21,885,3.2,199,6,0.0000,0.0000 +2012,10,13,9,30,17.6,1.05,0.126,0.61,0,0,0,0,0,17.2,0,0,0,0,0.27,97.35000000000001,131.45,0.97,0.21,885,2.9000000000000004,206,5.4,0.0000,0.0000 +2012,10,13,10,30,17,1.07,0.105,0.61,0,0,0,0,0,17,0,0,0,0,0.27,100,119.79,0.97,0.21,885,2.5,215,4.5,0.0000,0.0000 +2012,10,13,11,30,16,1.08,0.082,0.61,0,0,0,0,0,16,0,0,0,0,0.271,100,107.65,0.96,0.21,885,2,228,3.5,0.0000,0.0000 +2012,10,13,12,30,14.8,1.1,0.064,0.61,0,0,0,0,0,14.8,0,0,0,0,0.272,100,95.41,0.9500000000000001,0.21,885,1.6,243,3.2,0.0000,0.0000 +2012,10,13,13,30,14.3,1.1400000000000001,0.048,0.61,32,467,87,0,0,14,32,467,0,87,0.273,98.18,83.27,0.93,0.21,885,1.2000000000000002,257,3.7,0.0000,0.0000 +2012,10,13,14,30,15.700000000000001,1.2,0.033,0.61,52,789,298,0,0,11.3,52,789,0,298,0.274,75.01,71.8,0.91,0.21,885,1,265,4.1000000000000005,2.3208,1.7934 +2012,10,13,15,30,18.8,1.21,0.025,0.61,59,921,503,0,0,7.1000000000000005,59,921,0,503,0.275,46.44,61.21,0.89,0.21,885,0.8,264,5,7.0706,5.5193 +2012,10,13,16,30,21.400000000000002,1.18,0.023,0.61,64,976,662,0,0,1.9000000000000001,64,976,0,662,0.274,27.54,52.22,0.89,0.21,885,0.8,259,6.1000000000000005,4.8169,3.7751 +2012,10,13,17,30,22.5,1.16,0.022,0.61,67,1004,766,0,0,-1.2000000000000002,67,1004,0,766,0.274,20.55,45.85,0.89,0.21,885,0.8,259,6.9,30.5497,23.9835 +2012,10,13,18,30,23,1.16,0.022,0.61,68,1012,804,0,0,-2.6,68,1012,0,804,0.274,18.02,43.34,0.89,0.21,884,0.8,261,7.300000000000001,27.4645,21.5726 +2012,10,13,19,30,23.1,1.17,0.021,0.61,66,1007,774,0,0,-3.6,66,1007,0,774,0.273,16.64,45.32,0.89,0.21,884,0.8,265,7.4,42.0548,33.0197 +2012,10,13,20,30,22.900000000000002,1.19,0.022,0.61,64,982,678,0,0,-4.6000000000000005,64,982,0,678,0.274,15.610000000000001,51.29,0.89,0.21,883,0.8,269,7.300000000000001,35.6915,27.9811 +2012,10,13,21,30,22.6,1.21,0.023,0.61,59,933,525,0,0,-5.2,59,933,0,525,0.275,15.16,60.02,0.89,0.21,883,0.8,274,6.800000000000001,20.3226,15.8752 +2012,10,13,22,30,21.6,1.17,0.022,0.61,48,831,326,0,0,-4.7,48,831,0,326,0.277,16.76,70.47,0.89,0.21,884,0.9,276,5.7,14.7724,11.4372 +2012,10,13,23,30,18.8,1.1300000000000001,0.024,0.61,31,587,115,0,0,-2.4000000000000004,31,587,0,115,0.277,23.62,81.87,0.9,0.21,884,1,274,3.8000000000000003,0.0000,0.0000 +2012,10,14,0,30,16.1,1.1500000000000001,0.028,0.61,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.276,34.84,93.97,0.91,0.21,885,1.1,273,3,0.0000,0.0000 +2012,10,14,1,30,15.3,1.2,0.031,0.61,0,0,0,0,0,1.1,0,0,0,0,0.275,38.09,106.2,0.91,0.21,886,1.2000000000000002,280,3.4000000000000004,0.0000,0.0000 +2012,10,14,2,30,14.600000000000001,1.24,0.034,0.61,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.273,40.14,118.4,0.91,0.21,887,1.2000000000000002,297,3.8000000000000003,0.0000,0.0000 +2012,10,14,3,30,13.600000000000001,1.34,0.046,0.61,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.273,42.99,130.18,0.92,0.21,888,1.2000000000000002,316,3.7,0.0000,0.0000 +2012,10,14,4,30,12.4,1.45,0.053,0.61,0,0,0,0,0,1.5,0,0,0,0,0.272,47.33,140.95000000000002,0.92,0.21,889,1.1,324,3.3000000000000003,0.0000,0.0000 +2012,10,14,5,30,11.700000000000001,1.47,0.056,0.61,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.272,50.33,149.39000000000001,0.91,0.21,889,1,319,3.3000000000000003,0.0000,0.0000 +2012,10,14,6,30,11.4,1.51,0.059000000000000004,0.61,0,0,0,0,0,1.8,0,0,0,0,0.271,51.77,153.09,0.91,0.21,889,1,311,3.7,0.0000,0.0000 +2012,10,14,7,30,11.100000000000001,1.54,0.059000000000000004,0.61,0,0,0,0,0,2,0,0,0,0,0.27,53.51,150.19,0.9,0.21,889,1,308,3.8000000000000003,0.0000,0.0000 +2012,10,14,8,30,10.700000000000001,1.56,0.061,0.61,0,0,0,0,0,2.2,0,0,0,0,0.269,55.620000000000005,142.21,0.9,0.21,890,1,310,3.6,0.0000,0.0000 +2012,10,14,9,30,10,1.55,0.065,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.268,58.800000000000004,131.65,0.91,0.21,891,1.1,314,3.3000000000000003,0.0000,0.0000 +2012,10,14,10,30,9.5,1.53,0.068,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.268,61.32,119.96000000000001,0.91,0.21,892,1.2000000000000002,319,2.9000000000000004,0.0000,0.0000 +2012,10,14,11,30,9.1,1.53,0.069,0.61,0,0,0,0,0,2.5,0,0,0,0,0.267,63.27,107.81,0.92,0.21,892,1.3,325,2.7,0.0000,0.0000 +2012,10,14,12,30,9.200000000000001,1.52,0.07,0.61,0,0,0,0,0,2.5,0,0,0,0,0.267,63.01,95.58,0.92,0.21,893,1.4000000000000001,330,2.8000000000000003,0.0000,0.0000 +2012,10,14,13,30,10.8,1.52,0.069,0.61,34,422,82,0,0,2.6,34,422,0,82,0.266,57.03,83.44,0.92,0.21,894,1.4000000000000001,333,3.4000000000000004,0.0000,0.0000 +2012,10,14,14,30,14,1.52,0.066,0.61,61,720,284,0,0,2.9000000000000004,61,720,0,284,0.267,47.22,72,0.92,0.21,895,1.4000000000000001,169,3.9000000000000004,15.0068,11.5930 +2012,10,14,15,30,17.6,1.52,0.063,0.61,75,843,478,0,0,2.4000000000000004,75,843,0,478,0.267,36.13,61.45,0.92,0.21,895,1.5,14,4.1000000000000005,27.5291,21.4859 +2012,10,14,16,30,20.200000000000003,1.52,0.062,0.61,84,905,635,0,0,1.6,84,905,0,635,0.268,28.95,52.5,0.92,0.21,895,1.5,23,4,37.9172,29.7140 +2012,10,14,17,30,22,1.51,0.062,0.61,89,935,736,0,0,2.1,89,935,0,736,0.269,26.94,46.19,0.92,0.21,895,1.5,17,3.6,44.8710,35.2240 +2012,10,14,18,30,23.200000000000003,1.51,0.062,0.61,91,945,774,0,0,2.8000000000000003,91,945,0,774,0.271,26.36,43.71,0.92,0.21,894,1.5,8,3.1,47.4384,37.2588 +2012,10,14,19,30,23.900000000000002,1.5,0.061,0.61,89,938,744,0,0,3.3000000000000003,89,938,0,744,0.272,26.1,45.69,0.92,0.21,894,1.5,174,2.3000000000000003,45.4119,35.6528 +2012,10,14,20,30,24.1,1.49,0.06,0.61,84,915,652,0,0,3.5,84,915,0,652,0.274,26.16,51.63,0.92,0.21,893,1.4000000000000001,337,1.8,38.9776,30.5541 +2012,10,14,21,30,23.8,1.45,0.061,0.61,76,857,500,0,0,3.5,76,857,0,500,0.275,26.650000000000002,60.34,0.92,0.21,892,1.4000000000000001,326,1.6,28.9405,22.6032 +2012,10,14,22,30,22.700000000000003,1.44,0.061,0.61,62,745,307,0,0,3.4000000000000004,62,745,0,307,0.277,28.310000000000002,70.76,0.92,0.21,892,1.4000000000000001,327,1.1,16.6187,12.8616 +2012,10,14,23,30,20.900000000000002,1.44,0.062,0.61,37,485,103,0,0,6,37,485,0,103,0.278,37.79,82.14,0.92,0.21,893,1.3,182,0.6000000000000001,0.0000,0.0000 +2012,10,15,0,30,18.8,1.45,0.061,0.61,0,0,0,0,0,4.800000000000001,0,0,0,0,0.278,39.81,94.23,0.92,0.21,893,1.3,63,0.7000000000000001,0.0000,0.0000 +2012,10,15,1,30,16.8,1.46,0.058,0.61,0,0,0,0,0,4.4,0,0,0,0,0.277,43.800000000000004,106.46000000000001,0.92,0.21,893,1.3,106,1,0.0000,0.0000 +2012,10,15,2,30,15.100000000000001,1.47,0.056,0.61,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.276,49.36,118.66,0.92,0.21,894,1.3,125,1.2000000000000002,0.0000,0.0000 +2012,10,15,3,30,13.8,1.46,0.054,0.61,0,0,0,0,0,4.4,0,0,0,0,0.276,53.1,130.46,0.92,0.21,894,1.3,140,1.3,0.0000,0.0000 +2012,10,15,4,30,13.100000000000001,1.46,0.054,0.61,0,0,0,0,0,4.2,0,0,0,0,0.275,54.82,141.26,0.92,0.21,894,1.3,155,1.4000000000000001,0.0000,0.0000 +2012,10,15,5,30,12.5,1.45,0.053,0.61,0,0,0,1,0,4,0,0,1,0,0.275,56.2,149.75,0.92,0.21,894,1.3,169,1.6,0.0000,0.0000 +2012,10,15,6,30,12,1.44,0.054,0.61,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.275,57.25,153.46,0.92,0.21,894,1.2000000000000002,182,1.8,0.0000,0.0000 +2012,10,15,7,30,11.700000000000001,1.43,0.054,0.61,0,0,0,0,0,3.6,0,0,0,0,0.275,57.42,150.51,0.92,0.21,894,1.2000000000000002,194,2.1,0.0000,0.0000 +2012,10,15,8,30,11.3,1.43,0.054,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.275,57.67,142.45000000000002,0.92,0.21,893,1.2000000000000002,205,2.6,0.0000,0.0000 +2012,10,15,9,30,10.9,1.42,0.053,0.61,0,0,0,0,0,3,0,0,0,0,0.275,58.160000000000004,131.85,0.92,0.21,893,1.2000000000000002,217,3,0.0000,0.0000 +2012,10,15,10,30,10.3,1.42,0.052000000000000005,0.61,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.275,59.97,120.13,0.92,0.21,893,1.1,227,3.3000000000000003,0.0000,0.0000 +2012,10,15,11,30,9.700000000000001,1.41,0.049,0.61,0,0,0,0,0,2.8000000000000003,0,0,0,0,0.275,62.160000000000004,107.97,0.92,0.21,893,1.1,234,3.3000000000000003,0.0000,0.0000 +2012,10,15,12,30,9.700000000000001,1.41,0.047,0.61,0,0,0,0,0,2.7,0,0,0,0,0.274,61.800000000000004,95.75,0.92,0.21,892,1.1,238,3.6,0.0000,0.0000 +2012,10,15,13,30,11.100000000000001,1.4000000000000001,0.044,0.61,30,472,83,0,0,2.6,30,472,0,83,0.273,55.97,83.62,0.91,0.21,892,1.1,238,4.2,0.0000,0.0000 +2012,10,15,14,30,14.600000000000001,1.37,0.042,0.61,54,769,289,0,0,2.8000000000000003,54,769,0,289,0.272,44.92,72.2,0.91,0.21,892,1,235,4.5,14.2752,11.0246 +2012,10,15,15,30,19.1,1.35,0.039,0.61,66,889,487,0,0,3.2,66,889,0,487,0.271,34.71,61.690000000000005,0.91,0.21,892,1,232,5.6000000000000005,26.1217,20.3844 +2012,10,15,16,30,22.900000000000002,1.34,0.038,0.61,73,948,646,0,0,2.5,73,948,0,646,0.27,26.310000000000002,52.79,0.91,0.21,891,1,231,6.7,36.3291,28.4668 +2012,10,15,17,30,25,1.32,0.036000000000000004,0.61,76,978,749,0,0,2.2,76,978,0,749,0.269,22.63,46.52,0.91,0.21,890,1,229,6.6000000000000005,43.0687,33.8067 +2012,10,15,18,30,26.3,1.3,0.038,0.61,79,985,787,0,0,2,79,985,0,787,0.267,20.68,44.07,0.92,0.21,889,1,227,6.5,45.6220,35.8296 +2012,10,15,19,30,26.8,1.3,0.04,0.61,79,976,756,0,0,1.8,79,976,0,756,0.266,19.77,46.06,0.92,0.21,888,1,226,6.5,43.6034,34.2302 +2012,10,15,20,30,26.6,1.28,0.042,0.61,76,948,660,0,0,1.6,76,948,0,660,0.264,19.71,51.980000000000004,0.92,0.21,887,1,226,6.300000000000001,37.4329,29.3401 +2012,10,15,21,30,26,1.3,0.04,0.61,67,897,507,0,0,1.5,67,897,0,507,0.264,20.34,60.660000000000004,0.92,0.21,886,1,225,5.9,27.5102,21.4823 +2012,10,15,22,30,24.6,1.28,0.041,0.61,56,788,312,0,0,1.7000000000000002,56,788,0,312,0.265,22.39,71.04,0.92,0.21,885,1,221,5,15.6089,12.0755 +2012,10,15,23,30,21.8,1.26,0.042,0.61,34,527,104,0,0,2.6,34,527,0,104,0.266,28.22,82.4,0.92,0.21,885,1,213,4,0.0000,0.0000 +2012,10,16,0,30,19.6,1.23,0.043000000000000003,0.61,0,0,0,0,1,3.4000000000000004,0,0,0,0,0.268,34.28,94.48,0.92,0.21,885,1,206,4.1000000000000005,0.0000,0.0000 +2012,10,16,1,30,18.7,1.22,0.044,0.61,0,0,0,0,1,3.5,0,0,0,0,0.27,36.39,106.71000000000001,0.92,0.21,885,1,202,4.800000000000001,0.0000,0.0000 +2012,10,16,2,30,17.7,1.22,0.042,0.61,0,0,0,0,0,3.7,0,0,0,0,0.272,39.25,118.91,0.92,0.21,885,1,201,5,0.0000,0.0000 +2012,10,16,3,30,16.7,1.23,0.042,0.61,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.273,42.39,130.74,0.92,0.21,885,1,203,5,0.0000,0.0000 +2012,10,16,4,30,15.600000000000001,1.25,0.04,0.61,0,0,0,0,0,4,0,0,0,0,0.274,45.85,141.57,0.91,0.21,884,1,205,4.9,0.0000,0.0000 +2012,10,16,5,30,14.5,1.26,0.038,0.61,0,0,0,1,0,4,0,0,1,0,0.275,49.38,150.1,0.91,0.21,884,1,208,4.800000000000001,0.0000,0.0000 +2012,10,16,6,30,13.600000000000001,1.26,0.036000000000000004,0.61,0,0,0,0,1,4,0,0,0,0,0.276,52.25,153.83,0.91,0.21,883,0.9,214,4.7,0.0000,0.0000 +2012,10,16,7,30,12.9,1.27,0.034,0.61,0,0,0,0,0,4,0,0,0,0,0.277,54.550000000000004,150.82,0.91,0.21,883,0.9,221,4.6000000000000005,0.0000,0.0000 +2012,10,16,8,30,12.100000000000001,1.29,0.031,0.61,0,0,0,0,1,3.8000000000000003,0,0,0,0,0.277,56.92,142.69,0.9,0.21,882,0.8,228,4.4,0.0000,0.0000 +2012,10,16,9,30,11.3,1.3,0.028,0.61,0,0,0,0,0,3.5,0,0,0,0,0.277,58.83,132.04,0.9,0.21,882,0.8,237,4,0.0000,0.0000 +2012,10,16,10,30,10.5,1.29,0.026000000000000002,0.61,0,0,0,0,0,3.1,0,0,0,0,0.275,60.14,120.3,0.89,0.21,882,0.8,248,3.8000000000000003,0.0000,0.0000 +2012,10,16,11,30,9.9,1.28,0.025,0.61,0,0,0,0,0,2.5,0,0,0,0,0.273,60.04,108.14,0.89,0.21,882,0.8,260,3.7,0.0000,0.0000 +2012,10,16,12,30,9.700000000000001,1.27,0.025,0.61,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.272,58.24,95.91,0.89,0.21,882,0.8,273,3.7,0.0000,0.0000 +2012,10,16,13,30,11.200000000000001,1.28,0.026000000000000002,0.61,27,519,83,0,0,1.5,27,519,0,83,0.273,51.1,83.8,0.89,0.21,882,0.9,282,4,0.0000,0.0000 +2012,10,16,14,30,14.600000000000001,1.29,0.027,0.61,48,798,289,0,0,1.5,48,798,0,289,0.276,40.99,72.41,0.89,0.21,882,0.9,292,3.9000000000000004,14.4995,11.1945 +2012,10,16,15,30,18.7,1.29,0.027,0.61,59,905,485,0,0,1.9000000000000001,59,905,0,485,0.278,32.51,61.93,0.89,0.21,881,1,311,3.6,26.5732,20.7336 +2012,10,16,16,30,22.1,1.3,0.027,0.61,66,960,643,0,0,2.1,66,960,0,643,0.279,26.85,53.07,0.89,0.21,881,1,324,3.5,36.9140,28.9223 +2012,10,16,17,30,24.6,1.3,0.027,0.61,70,988,745,0,0,2.3000000000000003,70,988,0,745,0.278,23.29,46.86,0.89,0.21,880,1,322,3.3000000000000003,43.7844,34.3659 +2012,10,16,18,30,26.5,1.29,0.031,0.61,74,993,783,0,0,2.1,74,993,0,783,0.276,20.55,44.44,0.9,0.21,880,1,316,3.2,46.3417,36.3923 +2012,10,16,19,30,27.6,1.3,0.03,0.61,72,987,752,0,0,1.7000000000000002,72,987,0,752,0.274,18.76,46.43,0.89,0.21,879,1,316,3.5,44.2568,34.7402 +2012,10,16,20,30,27.900000000000002,1.31,0.029,0.61,68,963,656,0,0,1.3,68,963,0,656,0.271,17.89,52.32,0.89,0.21,879,1,322,3.6,37.8393,29.6553 +2012,10,16,21,30,27.5,1.31,0.029,0.61,61,916,505,0,0,1,61,916,0,505,0.269,17.900000000000002,60.97,0.89,0.21,878,0.9,322,3,27.8418,21.7371 +2012,10,16,22,30,25.900000000000002,1.31,0.028,0.61,50,813,310,0,0,1,50,813,0,310,0.268,19.69,71.33,0.88,0.21,877,0.9,313,1.7000000000000002,15.8225,12.2362 +2012,10,16,23,30,23.1,1.31,0.026000000000000002,0.61,30,565,102,0,0,7.300000000000001,30,565,0,102,0.267,36.160000000000004,82.66,0.88,0.21,877,0.9,284,0.9,0.0000,0.0000 +2012,10,17,0,30,20.200000000000003,1.3,0.024,0.61,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.267,34.26,94.73,0.88,0.21,877,0.9,242,1.2000000000000002,0.0000,0.0000 +2012,10,17,1,30,18.3,1.27,0.023,0.61,0,0,0,0,0,3.5,0,0,0,0,0.268,37.27,106.96000000000001,0.88,0.21,876,0.9,218,1.8,0.0000,0.0000 +2012,10,17,2,30,18.2,1.2,0.023,0.61,0,0,0,0,1,2.6,0,0,0,0,0.268,35.21,119.17,0.88,0.21,876,0.9,221,3.2,0.0000,0.0000 +2012,10,17,3,30,18.2,1.09,0.023,0.61,0,0,0,0,1,1.2000000000000002,0,0,0,0,0.269,31.91,131.01,0.88,0.21,876,0.9,233,4.800000000000001,0.0000,0.0000 +2012,10,17,4,30,17.2,1.01,0.022,0.61,0,0,0,0,1,0.30000000000000004,0,0,0,0,0.271,31.98,141.87,0.88,0.21,876,0.9,243,5.2,0.0000,0.0000 +2012,10,17,5,30,16.3,1.09,0.021,0.61,0,0,0,1,1,-0.1,0,0,1,0,0.271,32.72,150.45000000000002,0.88,0.21,875,0.9,252,5.300000000000001,0.0000,0.0000 +2012,10,17,6,30,15.700000000000001,1.22,0.019,0.61,0,0,0,0,3,-0.4,0,0,0,0,0.271,33.37,154.20000000000002,0.88,0.21,875,0.9,256,5.6000000000000005,0.0000,0.0000 +2012,10,17,7,30,15.200000000000001,1.28,0.019,0.61,0,0,0,0,1,-0.5,0,0,0,0,0.271,34.21,151.14000000000001,0.88,0.21,875,1,259,5.7,0.0000,0.0000 +2012,10,17,8,30,14.600000000000001,1.24,0.019,0.61,0,0,0,0,0,-0.5,0,0,0,0,0.272,35.44,142.94,0.88,0.21,875,1.1,264,5.300000000000001,0.0000,0.0000 +2012,10,17,9,30,13.700000000000001,1.1400000000000001,0.021,0.61,0,0,0,0,1,-0.4,0,0,0,0,0.272,37.84,132.24,0.89,0.21,876,1.1,273,4.5,0.0000,0.0000 +2012,10,17,10,30,12.700000000000001,1.09,0.024,0.61,0,0,0,0,3,-0.1,0,0,0,0,0.272,41.52,120.47,0.89,0.21,877,1.1,289,3.6,0.0000,0.0000 +2012,10,17,11,30,11.8,1.11,0.027,0.61,0,0,0,0,3,0.4,0,0,0,0,0.273,45.62,108.3,0.89,0.21,878,1.2000000000000002,308,3.1,0.0000,0.0000 +2012,10,17,12,30,11.600000000000001,1.12,0.028,0.61,0,0,0,0,3,0.9,0,0,0,0,0.272,47.74,96.08,0.89,0.21,879,1.2000000000000002,322,3,0.0000,0.0000 +2012,10,17,13,30,13.4,1.11,0.029,0.61,27,487,78,7,3,1.5,50,4,7,50,0.272,44.5,83.98,0.9,0.21,880,1.2000000000000002,333,3.7,0.0000,0.0000 +2012,10,17,14,30,16.1,1.12,0.029,0.61,49,782,283,0,0,2.4000000000000004,49,782,0,283,0.273,39.82,72.61,0.9,0.21,881,1.1,170,5.4,14.4712,11.1691 +2012,10,17,15,30,18,1.1300000000000001,0.028,0.61,60,902,481,0,0,1.6,60,902,0,481,0.273,33.33,62.17,0.89,0.21,882,1,3,6.4,26.4235,20.6137 +2012,10,17,16,30,19.5,1.1500000000000001,0.026000000000000002,0.61,66,965,641,0,0,0.4,66,965,0,641,0.273,27.76,53.36,0.89,0.21,882,0.9,4,6.2,36.6993,28.7514 +2012,10,17,17,30,20.900000000000002,1.18,0.025,0.61,69,993,744,0,0,-0.1,69,993,0,744,0.272,24.6,47.19,0.9,0.21,883,0.9,178,5.800000000000001,43.5038,34.1429 +2012,10,17,18,30,21.8,1.2,0.029,0.61,73,1003,785,0,0,-0.4,73,1003,0,785,0.27,22.75,44.800000000000004,0.9,0.21,882,0.8,355,5.4,46.0579,36.1667 +2012,10,17,19,30,22.3,1.21,0.028,0.61,71,997,754,0,0,-0.9,71,997,0,754,0.268,21.36,46.79,0.9,0.21,882,0.8,178,4.9,43.9722,34.5140 +2012,10,17,20,30,22.3,1.2,0.028,0.61,67,971,657,0,0,-1.6,67,971,0,657,0.269,20.240000000000002,52.660000000000004,0.89,0.21,882,0.8,4,4.3,37.5582,29.4317 +2012,10,17,21,30,21.700000000000003,1.19,0.026000000000000002,0.61,60,922,503,0,0,-2.7,60,922,0,503,0.269,19.400000000000002,61.27,0.89,0.21,882,0.8,12,3.9000000000000004,27.6796,21.6065 +2012,10,17,22,30,20.1,1.17,0.027,0.61,50,821,309,0,0,-3.8000000000000003,50,821,0,309,0.268,19.61,71.61,0.89,0.21,882,0.7000000000000001,25,3.3000000000000003,15.6792,12.1205 +2012,10,17,23,30,16.5,1.16,0.027,0.61,30,561,99,0,0,-3.8000000000000003,30,561,0,99,0.267,24.650000000000002,82.92,0.89,0.21,883,0.7000000000000001,43,2.4000000000000004,0.0000,0.0000 +2012,10,18,0,30,13.200000000000001,1.16,0.027,0.61,0,0,0,0,1,-2.1,0,0,0,0,0.266,34.69,94.98,0.89,0.21,883,0.7000000000000001,58,2,0.0000,0.0000 +2012,10,18,1,30,11.700000000000001,1.16,0.027,0.61,0,0,0,0,3,-2.9000000000000004,0,0,0,0,0.266,36.01,107.2,0.89,0.21,884,0.8,67,2.2,0.0000,0.0000 +2012,10,18,2,30,10.5,1.17,0.028,0.61,0,0,0,0,0,-3.2,0,0,0,0,0.265,38.230000000000004,119.42,0.89,0.21,884,0.8,73,2.3000000000000003,0.0000,0.0000 +2012,10,18,3,30,9.3,1.18,0.028,0.61,0,0,0,0,0,-3.1,0,0,0,0,0.266,41.730000000000004,131.28,0.89,0.21,885,0.8,78,2.3000000000000003,0.0000,0.0000 +2012,10,18,4,30,8.3,1.19,0.028,0.61,0,0,0,0,0,-3.1,0,0,0,0,0.266,44.54,142.17000000000002,0.89,0.21,885,0.8,81,2.2,0.0000,0.0000 +2012,10,18,5,30,7.4,1.21,0.029,0.61,0,0,0,0,0,-3.2,0,0,0,0,0.266,46.97,150.8,0.89,0.21,886,0.8,80,1.9000000000000001,0.0000,0.0000 +2012,10,18,6,30,6.6000000000000005,1.23,0.028,0.61,0,0,0,0,0,-3.5,0,0,0,0,0.266,48.34,154.56,0.89,0.21,887,0.7000000000000001,81,1.7000000000000002,0.0000,0.0000 +2012,10,18,7,30,5.9,1.25,0.027,0.61,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.266,48.65,151.45000000000002,0.89,0.21,887,0.7000000000000001,86,1.4000000000000001,0.0000,0.0000 +2012,10,18,8,30,5.5,1.25,0.025,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.265,48.14,143.18,0.89,0.21,888,0.7000000000000001,96,1.1,0.0000,0.0000 +2012,10,18,9,30,5.300000000000001,1.25,0.023,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.266,46.69,132.43,0.89,0.21,888,0.6000000000000001,112,1,0.0000,0.0000 +2012,10,18,10,30,5.2,1.25,0.022,0.61,0,0,0,0,0,-5.7,0,0,0,0,0.267,45.11,120.65,0.89,0.21,888,0.6000000000000001,126,0.9,0.0000,0.0000 +2012,10,18,11,30,5.1000000000000005,1.25,0.022,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.268,44.25,108.46000000000001,0.89,0.21,888,0.6000000000000001,146,0.6000000000000001,0.0000,0.0000 +2012,10,18,12,30,4.9,1.25,0.022,0.61,0,0,0,0,0,-6.2,0,0,0,0,0.268,44.37,96.25,0.89,0.21,889,0.6000000000000001,230,0.5,0.0000,0.0000 +2012,10,18,13,30,6.2,1.26,0.022,0.61,26,534,80,0,0,-5.4,26,534,0,80,0.269,43.160000000000004,84.15,0.89,0.21,890,0.6000000000000001,301,0.9,0.0000,0.0000 +2012,10,18,14,30,9.5,1.27,0.022,0.61,46,813,286,0,0,-5.4,46,813,0,286,0.269,34.5,72.82000000000001,0.9,0.21,890,0.7000000000000001,248,1.1,14.1443,10.9135 +2012,10,18,15,30,13.200000000000001,1.28,0.023,0.61,57,923,485,0,0,-6.4,57,923,0,485,0.269,25.12,62.410000000000004,0.9,0.21,890,0.7000000000000001,188,1.6,26.1650,20.4088 +2012,10,18,16,30,15.9,1.29,0.023,0.61,64,978,643,0,0,-5.9,64,978,0,643,0.269,21.79,53.64,0.9,0.21,890,0.7000000000000001,190,2.3000000000000003,36.5400,28.6237 +2012,10,18,17,30,17.6,1.31,0.023,0.61,67,1005,746,0,0,-5.300000000000001,67,1005,0,746,0.268,20.580000000000002,47.52,0.9,0.21,890,0.7000000000000001,209,2.5,43.3995,34.0583 +2012,10,18,18,30,19,1.32,0.023,0.61,69,1013,783,0,0,-5,69,1013,0,783,0.268,19.25,45.160000000000004,0.9,0.21,889,0.7000000000000001,230,2.5,46.1277,36.2188 +2012,10,18,19,30,19.900000000000002,1.34,0.024,0.61,68,1005,752,0,0,-4.9,68,1005,0,752,0.268,18.32,47.160000000000004,0.9,0.21,889,0.7000000000000001,252,2.5,44.0392,34.5637 +2012,10,18,20,30,20.400000000000002,1.35,0.024,0.61,65,980,655,0,0,-5,65,980,0,655,0.268,17.68,53,0.9,0.21,888,0.7000000000000001,269,2.5,37.5628,29.4320 +2012,10,18,21,30,20.400000000000002,1.34,0.031,0.61,62,919,500,0,0,-5.1000000000000005,62,919,0,500,0.268,17.55,61.58,0.9,0.21,888,0.7000000000000001,282,2.3000000000000003,27.5189,21.4771 +2012,10,18,22,30,19.3,1.34,0.029,0.61,50,815,304,0,0,-5.2,50,815,0,304,0.268,18.57,71.88,0.9,0.21,887,0.7000000000000001,297,1.5,15.5882,12.0454 +2012,10,18,23,30,17,1.34,0.027,0.61,29,554,95,0,0,0.2,29,554,0,95,0.268,32.09,83.17,0.9,0.21,888,0.7000000000000001,169,0.7000000000000001,0.0000,0.0000 +2012,10,19,0,30,14.100000000000001,1.35,0.026000000000000002,0.61,0,0,0,0,0,-2,0,0,0,0,0.268,32.97,95.22,0.9,0.21,888,0.7000000000000001,55,0.9,0.0000,0.0000 +2012,10,19,1,30,11.9,1.37,0.025,0.61,0,0,0,0,0,-1.8,0,0,0,0,0.268,38.56,107.44,0.89,0.21,888,0.8,83,1.2000000000000002,0.0000,0.0000 +2012,10,19,2,30,10.4,1.3800000000000001,0.025,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.268,42.08,119.66,0.89,0.21,889,0.8,89,1.3,0.0000,0.0000 +2012,10,19,3,30,9.4,1.4000000000000001,0.025,0.61,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.269,43.68,131.54,0.89,0.21,889,0.8,90,1.3,0.0000,0.0000 +2012,10,19,4,30,8.5,1.41,0.025,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.269,45.480000000000004,142.47,0.89,0.21,889,0.8,89,1.2000000000000002,0.0000,0.0000 +2012,10,19,5,30,7.9,1.42,0.025,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.268,46.38,151.14000000000001,0.89,0.21,890,0.8,90,1.2000000000000002,0.0000,0.0000 +2012,10,19,6,30,7.7,1.43,0.025,0.61,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.267,45.62,154.93,0.89,0.21,890,0.8,95,1.1,0.0000,0.0000 +2012,10,19,7,30,7.800000000000001,1.44,0.025,0.61,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.267,43.31,151.75,0.89,0.21,890,0.8,106,0.9,0.0000,0.0000 +2012,10,19,8,30,7.800000000000001,1.45,0.026000000000000002,0.61,0,0,0,0,0,-4.5,0,0,0,0,0.266,41.45,143.41,0.89,0.21,890,0.8,120,0.8,0.0000,0.0000 +2012,10,19,9,30,7.7,1.46,0.028,0.61,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.265,40.96,132.63,0.89,0.21,890,0.8,136,0.6000000000000001,0.0000,0.0000 +2012,10,19,10,30,7.2,1.45,0.029,0.61,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.265,42.11,120.82000000000001,0.89,0.21,890,0.8,158,0.7000000000000001,0.0000,0.0000 +2012,10,19,11,30,6.800000000000001,1.44,0.031,0.61,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.265,43.480000000000004,108.63,0.9,0.21,890,0.8,179,0.8,0.0000,0.0000 +2012,10,19,12,30,6.6000000000000005,1.43,0.034,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.265,44.68,96.42,0.9,0.21,890,0.8,193,0.9,0.0000,0.0000 +2012,10,19,13,30,8.1,1.42,0.037,0.61,27,469,74,0,0,-3.8000000000000003,27,469,0,74,0.265,42.65,84.33,0.9,0.21,890,0.9,200,1.3,0.0000,0.0000 +2012,10,19,14,30,11.600000000000001,1.42,0.039,0.61,52,769,276,0,0,-3,52,769,0,276,0.265,35.92,73.02,0.9,0.21,890,0.9,202,2.2,14.2663,11.0040 +2012,10,19,15,30,15.600000000000001,1.44,0.041,0.61,65,882,471,0,0,-2.3000000000000003,65,882,0,471,0.265,29.23,62.65,0.9,0.21,890,1,208,3.4000000000000004,26.3412,20.5430 +2012,10,19,16,30,19.1,1.46,0.042,0.61,74,940,627,0,0,0.1,74,940,0,627,0.264,27.830000000000002,53.93,0.9,0.21,889,1,217,4.3,36.6097,28.6754 +2012,10,19,17,30,21.400000000000002,1.47,0.043000000000000003,0.61,79,969,729,0,0,1,79,969,0,729,0.263,25.77,47.85,0.9,0.21,888,1,221,4.3,43.4694,34.1105 +2012,10,19,18,30,23.200000000000003,1.5,0.036000000000000004,0.61,76,986,767,0,0,1,76,986,0,767,0.263,23.1,45.52,0.9,0.21,887,1,224,4.3,45.9617,36.0857 +2012,10,19,19,30,24.5,1.53,0.035,0.61,74,979,736,0,0,0.6000000000000001,74,979,0,736,0.262,20.84,47.51,0.89,0.21,886,1,227,4.1000000000000005,43.8704,34.4281 +2012,10,19,20,30,25.1,1.55,0.036000000000000004,0.61,71,956,642,0,0,0.2,71,956,0,642,0.262,19.5,53.33,0.89,0.21,885,0.9,227,4,37.3953,29.2973 +2012,10,19,21,30,25,1.56,0.037,0.61,64,900,488,0,0,-0.2,64,900,0,488,0.262,19.03,61.88,0.89,0.21,884,0.9,225,3.7,27.3016,21.3034 +2012,10,19,22,30,22.900000000000002,1.56,0.038,0.61,52,792,295,0,0,-0.4,52,792,0,295,0.264,21.34,72.16,0.89,0.21,884,0.8,217,2.6,15.2976,11.8162 +2012,10,19,23,30,18.7,1.56,0.038,0.61,30,515,89,0,0,3.5,30,515,0,89,0.264,36.44,83.42,0.89,0.21,883,0.8,204,1.6,0.0000,0.0000 +2012,10,20,0,30,15.700000000000001,1.55,0.037,0.61,0,0,0,0,0,2.6,0,0,0,0,0.265,41.31,95.47,0.89,0.21,883,0.8,195,1.9000000000000001,0.0000,0.0000 +2012,10,20,1,30,14.9,1.53,0.034,0.61,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.265,40.92,107.68,0.89,0.21,883,0.8,193,2.4000000000000004,0.0000,0.0000 +2012,10,20,2,30,14.4,1.5,0.03,0.61,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.266,41.17,119.9,0.89,0.21,883,0.8,196,2.9000000000000004,0.0000,0.0000 +2012,10,20,3,30,13.700000000000001,1.47,0.027,0.61,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.265,42.72,131.79,0.88,0.21,883,0.7000000000000001,202,3.2,0.0000,0.0000 +2012,10,20,4,30,12.9,1.46,0.025,0.61,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.264,44.72,142.76,0.88,0.21,883,0.7000000000000001,208,3.5,0.0000,0.0000 +2012,10,20,5,30,12.200000000000001,1.48,0.023,0.61,0,0,0,0,0,0.8,0,0,0,0,0.263,45.53,151.48,0.87,0.21,882,0.7000000000000001,214,3.8000000000000003,0.0000,0.0000 +2012,10,20,6,30,11.3,1.49,0.021,0.61,0,0,0,0,0,0.2,0,0,0,0,0.262,46.33,155.29,0.87,0.21,882,0.7000000000000001,220,4.1000000000000005,0.0000,0.0000 +2012,10,20,7,30,10.4,1.46,0.02,0.61,0,0,0,0,0,-0.4,0,0,0,0,0.261,47.13,152.06,0.88,0.21,882,0.6000000000000001,228,4,0.0000,0.0000 +2012,10,20,8,30,9.5,1.43,0.018000000000000002,0.61,0,0,0,0,0,-0.8,0,0,0,0,0.261,48.550000000000004,143.65,0.88,0.21,881,0.6000000000000001,241,3.7,0.0000,0.0000 +2012,10,20,9,30,8.8,1.42,0.016,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.261,49.36,132.82,0.87,0.21,881,0.6000000000000001,258,3.6,0.0000,0.0000 +2012,10,20,10,30,8.4,1.41,0.015,0.61,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.261,48.28,120.99000000000001,0.87,0.21,881,0.6000000000000001,275,3.6,0.0000,0.0000 +2012,10,20,11,30,8.200000000000001,1.4000000000000001,0.015,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.261,46.34,108.79,0.87,0.21,881,0.6000000000000001,287,3.6,0.0000,0.0000 +2012,10,20,12,30,8.3,1.4000000000000001,0.016,0.61,0,0,0,0,0,-3.2,0,0,0,0,0.261,44.27,96.59,0.86,0.21,881,0.6000000000000001,293,3.7,0.0000,0.0000 +2012,10,20,13,30,10,1.4000000000000001,0.016,0.61,23,541,75,0,0,-3.4000000000000004,23,541,0,75,0.261,38.78,84.51,0.86,0.21,882,0.6000000000000001,295,4.1000000000000005,0.0000,0.0000 +2012,10,20,14,30,13.5,1.4000000000000001,0.017,0.61,42,836,283,0,0,-3.6,42,836,0,283,0.262,30.45,73.23,0.86,0.21,882,0.5,295,4.3,13.7419,10.5961 +2012,10,20,15,30,17.7,1.41,0.017,0.61,52,946,483,0,0,-3,52,946,0,483,0.261,24.22,62.89,0.87,0.21,882,0.5,301,3.8000000000000003,25.5403,19.9151 +2012,10,20,16,30,21.8,1.42,0.017,0.61,58,999,642,0,0,-2.5,58,999,0,642,0.261,19.57,54.22,0.87,0.21,882,0.5,307,3.3000000000000003,35.6535,27.9235 +2012,10,20,17,30,25.3,1.42,0.017,0.61,61,1025,745,0,0,-2.2,61,1025,0,745,0.259,16.2,48.18,0.87,0.21,882,0.5,304,3.1,42.4325,33.2941 +2012,10,20,18,30,27.700000000000003,1.4000000000000001,0.02,0.61,65,1030,783,0,0,-3,65,1030,0,783,0.258,13.23,45.88,0.88,0.21,881,0.5,298,3.1,44.9743,35.3078 +2012,10,20,19,30,28.900000000000002,1.4000000000000001,0.02,0.61,64,1024,751,0,0,-3.8000000000000003,64,1024,0,751,0.256,11.6,47.870000000000005,0.88,0.21,880,0.5,293,3,42.8881,33.6544 +2012,10,20,20,30,29.200000000000003,1.41,0.02,0.61,61,999,653,0,0,-4.1000000000000005,61,999,0,653,0.255,11.14,53.660000000000004,0.88,0.21,880,0.5,287,2.7,36.6017,28.6723 +2012,10,20,21,30,28.700000000000003,1.3800000000000001,0.024,0.61,58,934,494,0,0,-4.3,58,934,0,494,0.255,11.33,62.18,0.89,0.21,879,0.6000000000000001,277,2.1,26.5955,20.7485 +2012,10,20,22,30,26.700000000000003,1.3800000000000001,0.024,0.61,47,827,297,0,0,-2.3000000000000003,47,827,0,297,0.254,14.81,72.43,0.89,0.21,879,0.6000000000000001,261,1.2000000000000002,14.8061,11.4318 +2012,10,20,23,30,23.6,1.37,0.025,0.61,28,551,89,0,0,4.1000000000000005,28,551,0,89,0.254,28.16,83.67,0.9,0.21,879,0.6000000000000001,227,0.9,0.0000,0.0000 +2012,10,21,0,30,20.3,1.37,0.025,0.61,0,0,0,0,0,0.1,0,0,0,0,0.254,25.94,95.7,0.9,0.22,879,0.6000000000000001,196,1.3,0.0000,0.0000 +2012,10,21,1,30,17.5,1.36,0.026000000000000002,0.61,0,0,0,0,0,0.1,0,0,0,0,0.255,30.93,107.91,0.9,0.22,880,0.7000000000000001,190,1.5,0.0000,0.0000 +2012,10,21,2,30,15.8,1.34,0.028,0.61,0,0,0,0,0,-0.1,0,0,0,0,0.256,33.83,120.14,0.9,0.22,880,0.7000000000000001,201,1.7000000000000002,0.0000,0.0000 +2012,10,21,3,30,15.100000000000001,1.34,0.031,0.61,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.256,33.84,132.05,0.9,0.22,880,0.8,221,2,0.0000,0.0000 +2012,10,21,4,30,14.9,1.35,0.034,0.61,0,0,0,0,0,-1.1,0,0,0,0,0.256,33.35,143.05,0.9,0.22,880,0.9,238,2.5,0.0000,0.0000 +2012,10,21,5,30,14.700000000000001,1.37,0.036000000000000004,0.61,0,0,0,0,0,-1.3,0,0,0,0,0.256,33.19,151.81,0.91,0.22,880,1,248,2.8000000000000003,0.0000,0.0000 +2012,10,21,6,30,14.3,1.3900000000000001,0.038,0.61,0,0,0,0,0,-1.5,0,0,0,0,0.256,33.660000000000004,155.64000000000001,0.91,0.22,880,1.1,252,3,0.0000,0.0000 +2012,10,21,7,30,13.9,1.41,0.04,0.61,0,0,0,0,7,-1.5,0,0,0,0,0.256,34.65,152.36,0.91,0.22,880,1.3,254,3,0.0000,0.0000 +2012,10,21,8,30,13.3,1.42,0.042,0.61,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.256,36.82,143.89000000000001,0.91,0.22,880,1.4000000000000001,255,3,0.0000,0.0000 +2012,10,21,9,30,12.9,1.41,0.043000000000000003,0.61,0,0,0,0,0,-0.5,0,0,0,0,0.256,39.7,133.01,0.91,0.22,880,1.4000000000000001,254,2.9000000000000004,0.0000,0.0000 +2012,10,21,10,30,12.600000000000001,1.41,0.044,0.61,0,0,0,0,0,0.4,0,0,0,0,0.256,43.33,121.16,0.9,0.22,880,1.4000000000000001,253,2.9000000000000004,0.0000,0.0000 +2012,10,21,11,30,12.3,1.41,0.044,0.61,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.257,46.76,108.96000000000001,0.9,0.22,880,1.3,254,3,0.0000,0.0000 +2012,10,21,12,30,12.200000000000001,1.41,0.041,0.61,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.256,48.63,96.76,0.9,0.22,881,1.2000000000000002,255,3.3000000000000003,0.0000,0.0000 +2012,10,21,13,30,13.5,1.41,0.037,0.61,26,442,67,0,0,1.7000000000000002,26,442,0,67,0.256,44.61,84.7,0.89,0.22,881,1.2000000000000002,257,4.2,0.0000,0.0000 +2012,10,21,14,30,16.6,1.41,0.035,0.61,50,759,266,0,0,1.2000000000000002,50,759,0,266,0.256,35.46,73.44,0.89,0.22,881,1.2000000000000002,260,4.6000000000000005,14.0629,10.8400 +2012,10,21,15,30,21,1.4000000000000001,0.034,0.61,62,886,462,0,0,1.2000000000000002,62,886,0,462,0.255,26.87,63.14,0.89,0.22,882,1.1,263,4.800000000000001,26.1490,20.3864 +2012,10,21,16,30,25.5,1.3900000000000001,0.033,0.61,68,946,618,0,0,1.2000000000000002,68,946,0,618,0.254,20.42,54.5,0.88,0.22,882,1.1,266,5.5,36.4596,28.5518 +2012,10,21,17,30,28.3,1.37,0.032,0.61,72,976,719,0,0,1.4000000000000001,72,976,0,719,0.253,17.56,48.51,0.88,0.22,881,1.1,262,6,43.3158,33.9844 +2012,10,21,18,30,29.200000000000003,1.35,0.03,0.61,73,991,758,0,0,1.7000000000000002,73,991,0,758,0.252,17.04,46.24,0.89,0.22,881,1,255,6.300000000000001,45.8626,36.0022 +2012,10,21,19,30,29.3,1.33,0.027,0.61,70,987,727,0,0,1,70,987,0,727,0.25,16.17,48.22,0.89,0.22,880,1,250,6.7,43.7101,34.2964 +2012,10,21,20,30,29.1,1.28,0.026000000000000002,0.61,65,966,633,0,0,-0.1,65,966,0,633,0.249,15.08,53.99,0.89,0.22,880,0.9,248,6.9,37.1759,29.1187 +2012,10,21,21,30,28.400000000000002,1.22,0.027,0.61,60,910,480,0,0,-0.4,60,910,0,480,0.248,15.31,62.480000000000004,0.9,0.22,880,0.9,246,6.9,26.8704,20.9589 +2012,10,21,22,30,26.900000000000002,1.17,0.031,0.61,50,785,284,0,0,0.30000000000000004,50,785,0,284,0.247,17.67,72.69,0.9,0.22,880,1,242,6.1000000000000005,14.8690,11.4758 +2012,10,21,23,30,24.1,1.1400000000000001,0.034,0.61,29,488,80,0,0,1.6,29,488,0,80,0.247,22.87,83.91,0.9,0.22,880,1,238,4.800000000000001,0.0000,0.0000 +2012,10,22,0,30,21.6,1.12,0.032,0.61,0,0,0,0,0,2.5,0,0,0,0,0.247,28.44,95.94,0.9,0.22,881,1,235,4.4,0.0000,0.0000 +2012,10,22,1,30,20.200000000000003,1.08,0.028,0.61,0,0,0,0,0,2.6,0,0,0,0,0.247,31.080000000000002,108.14,0.89,0.22,881,1,234,4.4,0.0000,0.0000 +2012,10,22,2,30,19.1,1.05,0.025,0.61,0,0,0,0,0,2.5,0,0,0,0,0.247,33.15,120.37,0.89,0.22,882,1.1,235,4.3,0.0000,0.0000 +2012,10,22,3,30,18.1,1.05,0.023,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.247,35.08,132.3,0.9,0.22,882,1.1,237,4.1000000000000005,0.0000,0.0000 +2012,10,22,4,30,17.3,1.06,0.022,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.248,36.800000000000004,143.33,0.9,0.22,882,1.2000000000000002,240,3.9000000000000004,0.0000,0.0000 +2012,10,22,5,30,16.400000000000002,1.08,0.022,0.61,0,0,0,0,1,2.4000000000000004,0,0,0,0,0.248,38.86,152.14000000000001,0.91,0.22,882,1.3,242,3.8000000000000003,0.0000,0.0000 +2012,10,22,6,30,15.700000000000001,1.09,0.023,0.61,0,0,0,0,7,2.4000000000000004,0,0,0,0,0.249,40.9,156,0.92,0.22,883,1.3,244,4,0.0000,0.0000 +2012,10,22,7,30,15.700000000000001,1.09,0.026000000000000002,0.61,0,0,0,0,7,2.5,0,0,0,0,0.249,41.21,152.66,0.93,0.22,883,1.5,248,4.7,0.0000,0.0000 +2012,10,22,8,30,16.2,1.09,0.033,0.61,0,0,0,0,1,2.6,0,0,0,0,0.249,39.94,144.12,0.9400000000000001,0.22,883,1.6,253,5,0.0000,0.0000 +2012,10,22,9,30,16.400000000000002,1.1300000000000001,0.038,0.61,0,0,0,0,7,2.5,0,0,0,0,0.249,39.24,133.2,0.9500000000000001,0.22,883,1.7000000000000002,251,4.6000000000000005,0.0000,0.0000 +2012,10,22,10,30,15.9,1.17,0.042,0.61,0,0,0,0,7,2.8000000000000003,0,0,0,0,0.249,41.45,121.33,0.9500000000000001,0.22,884,1.9000000000000001,236,4.3,0.0000,0.0000 +2012,10,22,11,30,15.3,1.1500000000000001,0.051000000000000004,0.61,0,0,0,0,7,3.7,0,0,0,0,0.25,45.800000000000004,109.12,0.96,0.22,884,2,215,3.8000000000000003,0.0000,0.0000 +2012,10,22,12,30,14.700000000000001,1.23,0.047,0.61,0,0,0,0,7,5,0,0,0,0,0.25,52.34,96.93,0.9400000000000001,0.22,884,1.9000000000000001,203,3,0.0000,0.0000 +2012,10,22,13,30,15.200000000000001,1.3,0.036000000000000004,0.61,26,416,63,7,7,6.2,22,0,7,22,0.252,54.9,84.88,0.93,0.22,884,1.8,207,3.2,0.0000,0.0000 +2012,10,22,14,30,17.8,1.33,0.031,0.61,48,745,258,0,7,7.1000000000000005,102,458,0,231,0.252,49.43,73.65,0.92,0.22,885,1.7000000000000002,218,4,13.1924,10.1655 +2012,10,22,15,30,21.400000000000002,1.33,0.029,0.61,59,873,450,0,0,7,59,873,0,450,0.252,39.37,63.38,0.91,0.22,885,1.6,228,4.6000000000000005,24.9699,19.4636 +2012,10,22,16,30,24.400000000000002,1.29,0.027,0.61,65,934,604,0,0,5.5,65,934,0,604,0.249,29.57,54.79,0.91,0.22,885,1.6,236,5.2,35.0525,27.4470 +2012,10,22,17,30,26.400000000000002,1.26,0.026000000000000002,0.61,69,964,703,0,0,3.9000000000000004,69,964,0,703,0.247,23.55,48.84,0.91,0.22,884,1.6,238,5.300000000000001,41.7572,32.7587 +2012,10,22,18,30,27.700000000000003,1.25,0.03,0.61,73,972,741,0,0,2.7,73,972,0,741,0.245,19.96,46.59,0.91,0.22,883,1.5,240,5.300000000000001,44.3492,34.8114 +2012,10,22,19,30,28.5,1.25,0.03,0.61,72,964,710,0,0,1.7000000000000002,72,964,0,710,0.243,17.830000000000002,48.57,0.91,0.22,882,1.5,241,5.2,42.2635,33.1584 +2012,10,22,20,30,28.700000000000003,1.25,0.029,0.61,67,941,616,0,0,1.1,67,941,0,616,0.242,16.78,54.31,0.91,0.22,882,1.4000000000000001,241,5,35.9852,28.1827 +2012,10,22,21,30,28.200000000000003,1.25,0.028,0.61,60,890,467,0,0,0.6000000000000001,60,890,0,467,0.241,16.67,62.77,0.9,0.22,882,1.3,238,4.7,26.0576,20.3208 +2012,10,22,22,30,26.200000000000003,1.25,0.027,0.61,48,782,277,0,0,0.4,48,782,0,277,0.24,18.47,72.96000000000001,0.9,0.22,882,1.2000000000000002,231,3.6,14.1837,10.9425 +2012,10,22,23,30,22.200000000000003,1.25,0.027,0.61,27,495,77,0,0,2.6,27,495,0,77,0.241,27.51,84.15,0.9,0.22,882,1.1,222,2.4000000000000004,0.0000,0.0000 +2012,10,23,0,30,19.5,1.26,0.027,0.61,0,0,0,0,0,3.1,0,0,0,0,0.241,33.83,96.16,0.9,0.22,883,1.1,215,2.5,0.0000,0.0000 +2012,10,23,1,30,18.8,1.26,0.027,0.61,0,0,0,0,0,2.7,0,0,0,0,0.242,34.26,108.36,0.9,0.22,883,1.1,213,3,0.0000,0.0000 +2012,10,23,2,30,18.2,1.26,0.026000000000000002,0.61,0,0,0,0,0,2.5,0,0,0,0,0.242,35.160000000000004,120.60000000000001,0.9,0.22,883,1,214,3.5,0.0000,0.0000 +2012,10,23,3,30,17.5,1.25,0.026000000000000002,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.243,36.32,132.54,0.9,0.22,883,1,216,4,0.0000,0.0000 +2012,10,23,4,30,16.5,1.25,0.025,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.243,38.36,143.6,0.9,0.22,883,1.1,218,4.3,0.0000,0.0000 +2012,10,23,5,30,15.5,1.24,0.025,0.61,0,0,0,0,0,2.1,0,0,0,0,0.243,40.410000000000004,152.47,0.9,0.22,883,1.1,221,4.4,0.0000,0.0000 +2012,10,23,6,30,14.5,1.24,0.024,0.61,0,0,0,0,0,1.8,0,0,0,0,0.243,42.33,156.35,0.89,0.22,883,1.1,226,4.2,0.0000,0.0000 +2012,10,23,7,30,13.600000000000001,1.24,0.024,0.61,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.242,44.34,152.96,0.89,0.22,883,1.2000000000000002,233,4,0.0000,0.0000 +2012,10,23,8,30,12.9,1.23,0.024,0.61,0,0,0,0,0,1.6,0,0,0,0,0.242,46.12,144.35,0.9,0.22,883,1.2000000000000002,239,3.8000000000000003,0.0000,0.0000 +2012,10,23,9,30,12.5,1.22,0.024,0.61,0,0,0,0,0,1.6,0,0,0,0,0.242,47.53,133.39000000000001,0.9,0.22,883,1.2000000000000002,245,3.5,0.0000,0.0000 +2012,10,23,10,30,12.200000000000001,1.22,0.024,0.61,0,0,0,0,0,1.8,0,0,0,0,0.243,48.980000000000004,121.5,0.9,0.22,883,1.2000000000000002,248,3.3000000000000003,0.0000,0.0000 +2012,10,23,11,30,11.9,1.24,0.024,0.61,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.244,50.33,109.29,0.89,0.22,884,1.1,251,3.1,0.0000,0.0000 +2012,10,23,12,30,11.8,1.28,0.024,0.61,0,0,0,0,0,1.9000000000000001,0,0,0,0,0.245,50.550000000000004,97.10000000000001,0.89,0.22,884,1.1,254,3,0.0000,0.0000 +2012,10,23,13,30,13.3,1.32,0.024,0.61,24,463,63,0,0,1.7000000000000002,24,463,0,63,0.246,45.45,85.06,0.89,0.22,885,1.1,254,3.6,0.0000,0.0000 +2012,10,23,14,30,16.5,1.34,0.023,0.61,45,779,261,0,1,1.7000000000000002,45,779,0,261,0.248,36.89,73.86,0.89,0.22,885,1.1,248,3.8000000000000003,11.4343,8.8078 +2012,10,23,15,30,20.6,1.34,0.022,0.61,55,904,457,7,3,2.2,186,567,7,438,0.249,29.61,63.620000000000005,0.89,0.22,885,1,249,3.6,24.2814,18.9237 +2012,10,23,16,30,24.900000000000002,1.32,0.023,0.61,63,960,612,0,0,2.4000000000000004,63,960,0,612,0.249,23.150000000000002,55.07,0.9,0.22,885,1,257,4,34.2132,26.7868 +2012,10,23,17,30,27.8,1.29,0.024,0.61,68,991,716,0,0,0.4,68,991,0,716,0.249,16.85,49.160000000000004,0.91,0.22,885,0.9,255,4.4,40.7814,31.9904 +2012,10,23,18,30,29.1,1.24,0.031,0.61,74,992,751,0,0,-0.30000000000000004,74,992,0,751,0.248,14.88,46.94,0.91,0.22,884,0.9,244,4.5,43.3072,33.9908 +2012,10,23,19,30,29.900000000000002,1.23,0.03,0.61,72,985,720,0,0,-0.30000000000000004,72,985,0,720,0.248,14.22,48.910000000000004,0.91,0.22,883,0.9,235,4.6000000000000005,41.2260,32.3415 +2012,10,23,20,30,30.200000000000003,1.23,0.027,0.61,66,962,623,0,0,-0.30000000000000004,66,962,0,623,0.248,13.99,54.63,0.91,0.22,883,0.9,228,4.6000000000000005,34.9689,27.3835 +2012,10,23,21,30,29.8,1.24,0.026000000000000002,0.61,59,903,468,0,0,-0.30000000000000004,59,903,0,468,0.248,14.27,63.050000000000004,0.9,0.22,882,1,221,4.5,25.3032,19.7285 +2012,10,23,22,30,27.6,1.24,0.025,0.61,47,790,275,0,0,0,47,790,0,275,0.248,16.53,73.22,0.9,0.22,882,1,212,3.4000000000000004,13.7994,10.6415 +2012,10,23,23,30,23.6,1.24,0.024,0.61,26,497,74,0,0,2.7,26,497,0,74,0.248,25.48,84.39,0.91,0.22,883,1,203,2.6,0.0000,0.0000 +2012,10,24,0,30,21.1,1.23,0.025,0.61,0,0,0,0,0,3.1,0,0,0,0,0.248,30.52,96.39,0.91,0.22,883,1,198,2.9000000000000004,0.0000,0.0000 +2012,10,24,1,30,20.5,1.22,0.024,0.61,0,0,0,0,3,3,0,0,0,0,0.248,31.38,108.58,0.91,0.22,883,1,197,3.7,0.0000,0.0000 +2012,10,24,2,30,19.700000000000003,1.22,0.024,0.61,0,0,0,0,3,3.1,0,0,0,0,0.247,33.24,120.82000000000001,0.91,0.22,883,1,199,4.4,0.0000,0.0000 +2012,10,24,3,30,18.7,1.21,0.025,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.248,35.83,132.78,0.91,0.22,883,1,203,4.800000000000001,0.0000,0.0000 +2012,10,24,4,30,17.7,1.2,0.026000000000000002,0.61,0,0,0,0,0,3.3000000000000003,0,0,0,0,0.249,38.17,143.87,0.92,0.22,883,1,207,5,0.0000,0.0000 +2012,10,24,5,30,17.1,1.21,0.027,0.61,0,0,0,0,3,3,0,0,0,0,0.25,39.01,152.79,0.92,0.22,883,1,212,5.1000000000000005,0.0000,0.0000 +2012,10,24,6,30,16.6,1.22,0.028,0.61,0,0,0,0,0,2.7,0,0,0,0,0.251,39.26,156.70000000000002,0.92,0.22,883,1,215,4.9,0.0000,0.0000 +2012,10,24,7,30,16,1.23,0.029,0.61,0,0,0,0,0,2.5,0,0,0,0,0.251,40.26,153.26,0.92,0.22,883,1,217,4.4,0.0000,0.0000 +2012,10,24,8,30,15.4,1.24,0.031,0.61,0,0,0,0,0,2.6,0,0,0,0,0.251,42.1,144.58,0.93,0.22,883,1,220,4.1000000000000005,0.0000,0.0000 +2012,10,24,9,30,15,1.25,0.034,0.61,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.251,44.34,133.58,0.93,0.22,883,1.1,222,4,0.0000,0.0000 +2012,10,24,10,30,14.600000000000001,1.26,0.037,0.61,0,0,0,0,8,3.6,0,0,0,0,0.251,47.49,121.67,0.9400000000000001,0.22,884,1.1,224,4,0.0000,0.0000 +2012,10,24,11,30,14.3,1.25,0.04,0.61,0,0,0,0,4,4.3,0,0,0,0,0.251,51,109.45,0.9400000000000001,0.22,884,1.2000000000000002,226,4,0.0000,0.0000 +2012,10,24,12,30,14,1.25,0.039,0.61,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.25,54.980000000000004,97.27,0.9400000000000001,0.22,884,1.2000000000000002,228,3.9000000000000004,0.0000,0.0000 +2012,10,24,13,30,14.4,1.25,0.037,0.61,25,413,59,7,7,5.7,37,6,7,37,0.249,55.84,85.24,0.9400000000000001,0.22,884,1.2000000000000002,229,4,0.0000,0.0000 +2012,10,24,14,30,16,1.24,0.038,0.61,51,743,255,0,7,6.1000000000000005,125,21,0,131,0.248,51.95,74.07000000000001,0.9400000000000001,0.22,884,1.2000000000000002,227,3.7,12.8943,9.9290 +2012,10,24,15,30,18.3,1.24,0.039,0.61,65,865,446,0,7,6.6000000000000005,225,189,0,308,0.247,46.29,63.86,0.9400000000000001,0.22,884,1.3,222,3.3000000000000003,23.5947,18.3853 +2012,10,24,16,30,20.900000000000002,1.25,0.042,0.61,74,921,597,0,7,7,273,129,0,347,0.245,40.69,55.35,0.9400000000000001,0.22,883,1.4000000000000001,215,3.4000000000000004,34.6216,27.1036 +2012,10,24,17,30,23.200000000000003,1.25,0.045,0.61,80,948,696,0,8,7.300000000000001,293,379,0,539,0.243,36.02,49.480000000000004,0.9400000000000001,0.22,883,1.4000000000000001,209,3.7,41.4889,32.5427 +2012,10,24,18,30,25.5,1.26,0.048,0.61,83,952,729,0,7,7.4,347,179,0,469,0.241,31.51,47.28,0.9400000000000001,0.22,882,1.5,205,4.2,43.8430,34.4085 +2012,10,24,19,30,27,1.27,0.049,0.61,82,939,695,0,7,6.7,350,161,0,455,0.24,27.48,49.25,0.9400000000000001,0.22,881,1.6,204,4.800000000000001,41.7574,32.7554 +2012,10,24,20,30,27.5,1.28,0.051000000000000004,0.61,78,904,597,0,1,6.300000000000001,78,904,0,597,0.23900000000000002,25.93,54.95,0.9400000000000001,0.22,880,1.7000000000000002,205,5.300000000000001,35.3152,27.6513 +2012,10,24,21,30,27.1,1.29,0.048,0.61,69,849,449,0,7,6.2,226,244,0,336,0.23900000000000002,26.54,63.34,0.9400000000000001,0.22,880,1.6,205,5.5,25.3096,19.7297 +2012,10,24,22,30,26,1.29,0.044,0.61,53,737,263,0,7,6,6,677,0,198,0.241,27.76,73.47,0.93,0.22,879,1.4000000000000001,204,5.2,13.6666,10.5347 +2012,10,24,23,30,23.6,1.29,0.037,0.61,27,445,69,0,7,5.5,49,117,0,60,0.242,31.11,84.62,0.92,0.22,879,1.2000000000000002,201,4.7,0.0000,0.0000 +2012,10,25,0,30,21.5,1.28,0.032,0.61,0,0,0,0,0,5.1000000000000005,0,0,0,0,0.243,34.27,96.61,0.92,0.22,879,1.1,200,4.7,0.0000,0.0000 +2012,10,25,1,30,20.400000000000002,1.25,0.03,0.61,0,0,0,0,0,4.7,0,0,0,0,0.244,35.68,108.8,0.91,0.22,879,1,199,5.2,0.0000,0.0000 +2012,10,25,2,30,19.3,1.2,0.029,0.61,0,0,0,0,0,4.800000000000001,0,0,0,0,0.244,38.35,121.04,0.91,0.22,879,1,199,5.300000000000001,0.0000,0.0000 +2012,10,25,3,30,18,1.1500000000000001,0.028,0.61,0,0,0,0,0,4.9,0,0,0,0,0.244,42.04,133.01,0.91,0.22,879,0.9,200,5.2,0.0000,0.0000 +2012,10,25,4,30,16.8,1.08,0.027,0.61,0,0,0,0,0,4.9,0,0,0,0,0.244,45.26,144.14000000000001,0.91,0.22,879,0.9,204,5.2,0.0000,0.0000 +2012,10,25,5,30,15.600000000000001,0.97,0.029,0.61,0,0,0,0,0,4.6000000000000005,0,0,0,0,0.244,47.79,153.11,0.91,0.22,879,1,214,4.800000000000001,0.0000,0.0000 +2012,10,25,6,30,14.4,0.88,0.031,0.61,0,0,0,0,0,3.6,0,0,0,0,0.244,48.18,157.04,0.9,0.22,880,1,235,4.3,0.0000,0.0000 +2012,10,25,7,30,13.3,0.89,0.031,0.61,0,0,0,0,0,2.1,0,0,0,0,0.244,46.7,153.55,0.9,0.22,881,0.9,263,3.9000000000000004,0.0000,0.0000 +2012,10,25,8,30,12.3,0.96,0.031,0.61,0,0,0,0,0,0.8,0,0,0,0,0.245,45.33,144.8,0.9,0.22,883,0.9,297,4,0.0000,0.0000 +2012,10,25,9,30,11.200000000000001,1.08,0.032,0.61,0,0,0,0,0,0.8,0,0,0,0,0.246,48.69,133.77,0.91,0.22,884,0.9,330,5.1000000000000005,0.0000,0.0000 +2012,10,25,10,30,9.700000000000001,1.21,0.041,0.61,0,0,0,0,1,3.2,0,0,0,0,0.247,63.75,121.84,0.93,0.22,885,0.8,348,6.1000000000000005,0.0000,0.0000 +2012,10,25,11,30,8.3,1.26,0.064,0.61,0,0,0,0,1,4.6000000000000005,0,0,0,0,0.248,77.27,109.62,0.9500000000000001,0.22,887,0.8,353,6.6000000000000005,0.0000,0.0000 +2012,10,25,12,30,7.2,1.25,0.082,0.61,0,0,0,0,1,3.8000000000000003,0,0,0,0,0.248,78.73,97.44,0.96,0.22,888,0.8,357,6.9,0.0000,0.0000 +2012,10,25,13,30,6.5,1.24,0.07200000000000001,0.61,29,341,56,0,0,1.3,29,341,0,56,0.248,69.18,85.42,0.9500000000000001,0.22,889,0.7000000000000001,180,7.1000000000000005,0.0000,0.0000 +2012,10,25,14,30,6.6000000000000005,1.22,0.056,0.61,57,729,254,0,3,-1.3,138,280,0,214,0.249,56.980000000000004,74.28,0.9400000000000001,0.22,891,0.7000000000000001,3,7.300000000000001,6.4594,4.9722 +2012,10,25,15,30,7.4,1.19,0.046,0.61,68,879,452,0,4,-2.8000000000000003,244,32,0,258,0.249,48.31,64.11,0.93,0.22,891,0.7000000000000001,6,7.2,16.5639,12.9045 +2012,10,25,16,30,8.700000000000001,1.19,0.04,0.61,74,950,610,0,3,-3.3000000000000003,345,183,0,448,0.249,42.78,55.63,0.92,0.22,892,0.7000000000000001,8,6.9,19.6045,15.3457 +2012,10,25,17,30,10.200000000000001,1.2,0.034,0.61,75,987,712,7,2,-3.4000000000000004,254,696,7,704,0.25,38.27,49.800000000000004,0.92,0.22,892,0.7000000000000001,10,6.300000000000001,31.1970,24.4679 +2012,10,25,18,30,11.5,1.22,0.031,0.61,74,994,744,0,0,-3.5,74,994,0,744,0.251,34.76,47.62,0.92,0.22,891,0.8,12,5.800000000000001,27.3500,21.4629 +2012,10,25,19,30,12.3,1.23,0.03,0.61,72,987,712,0,0,-3.6,72,987,0,712,0.251,32.7,49.59,0.91,0.22,891,0.8,14,5.300000000000001,26.3568,20.6730 +2012,10,25,20,30,12.5,1.23,0.03,0.61,68,959,615,0,0,-3.8000000000000003,68,959,0,615,0.25,32.01,55.26,0.92,0.22,891,0.8,16,4.9,33.7918,26.4552 +2012,10,25,21,30,12,1.22,0.032,0.61,62,893,459,0,0,-3.9000000000000004,62,893,0,459,0.249,32.75,63.620000000000005,0.92,0.22,891,0.9,18,4.6000000000000005,18.1351,14.1340 +2012,10,25,22,30,10.9,1.21,0.032,0.61,50,772,266,0,0,-4,50,772,0,266,0.249,34.92,73.72,0.92,0.22,892,0.9,24,4.3,9.8172,7.5644 +2012,10,25,23,30,9.1,1.22,0.032,0.61,26,456,67,0,7,-4,49,97,0,58,0.249,39.56,84.84,0.92,0.22,892,0.9,34,3.7,0.0000,0.0000 +2012,10,26,0,30,7.4,1.23,0.032,0.61,0,0,0,0,0,-3.5,0,0,0,0,0.25,45.910000000000004,96.83,0.92,0.22,893,0.9,47,3.4000000000000004,0.0000,0.0000 +2012,10,26,1,30,6.2,1.23,0.031,0.61,0,0,0,0,0,-3.2,0,0,0,0,0.25,51.14,109.01,0.92,0.22,893,0.9,57,3.4000000000000004,0.0000,0.0000 +2012,10,26,2,30,5.2,1.22,0.03,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.252,55.88,121.25,0.91,0.22,893,0.8,63,3.3000000000000003,0.0000,0.0000 +2012,10,26,3,30,4.3,1.19,0.03,0.61,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.253,59.93,133.24,0.9,0.22,894,0.8,63,3,0.0000,0.0000 +2012,10,26,4,30,3.5,1.18,0.031,0.61,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.253,63.22,144.4,0.9,0.22,894,0.8,61,2.6,0.0000,0.0000 +2012,10,26,5,30,2.7,1.19,0.031,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.254,66.49,153.42000000000002,0.9,0.22,895,0.8,59,2.1,0.0000,0.0000 +2012,10,26,6,30,1.9000000000000001,1.21,0.032,0.61,0,0,0,0,0,-3.1,0,0,0,0,0.255,69.63,157.38,0.9,0.22,895,0.8,60,1.8,0.0000,0.0000 +2012,10,26,7,30,1.3,1.23,0.033,0.61,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.257,71.60000000000001,153.84,0.9,0.22,895,0.8,61,1.6,0.0000,0.0000 +2012,10,26,8,30,0.7000000000000001,1.25,0.034,0.61,0,0,0,0,0,-3.5,0,0,0,0,0.258,73.43,145.03,0.9,0.22,896,0.9,58,1.4000000000000001,0.0000,0.0000 +2012,10,26,9,30,0.2,1.27,0.036000000000000004,0.61,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.259,74.55,133.95,0.9,0.22,896,0.9,53,1.4000000000000001,0.0000,0.0000 +2012,10,26,10,30,-0.2,1.28,0.037,0.61,0,0,0,0,1,-4.1000000000000005,0,0,0,0,0.26,75.06,122.01,0.9,0.22,896,0.8,49,1.6,0.0000,0.0000 +2012,10,26,11,30,-0.5,1.29,0.039,0.61,0,0,0,0,0,-4.4,0,0,0,0,0.261,75.14,109.78,0.9,0.22,897,0.8,42,2,0.0000,0.0000 +2012,10,26,12,30,-0.7000000000000001,1.3,0.04,0.61,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.262,74.77,97.61,0.9,0.22,898,0.8,36,2.5,0.0000,0.0000 +2012,10,26,13,30,-0.2,1.31,0.041,0.61,24,399,55,0,0,-4.800000000000001,24,399,0,55,0.262,70.92,85.60000000000001,0.9,0.22,899,0.8,39,3.5,0.0000,0.0000 +2012,10,26,14,30,1.5,1.32,0.041,0.61,51,746,250,0,0,-5.300000000000001,51,746,0,250,0.263,60.53,74.49,0.9,0.22,900,0.8,43,4.5,10.5319,8.1041 +2012,10,26,15,30,3.7,1.33,0.041,0.61,65,884,447,7,3,-5.800000000000001,213,385,7,380,0.264,49.89,64.35,0.9,0.22,900,0.7000000000000001,39,4.6000000000000005,13.8505,10.7885 +2012,10,26,16,30,5.9,1.35,0.041,0.61,73,947,604,7,2,-6.2,244,591,7,575,0.264,41.4,55.92,0.9,0.22,900,0.7000000000000001,33,4.5,25.2772,19.7838 +2012,10,26,17,30,7.7,1.36,0.041,0.61,77,978,704,0,0,-6.5,77,978,0,704,0.265,35.92,50.120000000000005,0.89,0.22,899,0.7000000000000001,28,4.4,40.7001,31.9183 +2012,10,26,18,30,9,1.37,0.042,0.61,80,992,744,0,0,-6.4,80,992,0,744,0.266,33.02,47.96,0.89,0.22,899,0.6000000000000001,25,4.4,43.3386,34.0070 +2012,10,26,19,30,9.8,1.3900000000000001,0.042,0.61,78,984,711,0,0,-6.300000000000001,78,984,0,711,0.265,31.66,49.92,0.88,0.22,898,0.6000000000000001,24,4.3,41.1939,32.3074 +2012,10,26,20,30,10,1.4000000000000001,0.043000000000000003,0.61,74,954,613,0,0,-6.2,74,954,0,613,0.264,31.310000000000002,55.56,0.88,0.22,897,0.6000000000000001,24,4.2,34.7605,27.2102 +2012,10,26,21,30,9.600000000000001,1.4000000000000001,0.043000000000000003,0.61,66,893,459,0,0,-6.4,66,893,0,459,0.263,31.8,63.89,0.89,0.22,897,0.6000000000000001,25,4,24.7260,19.2668 +2012,10,26,22,30,8.4,1.4000000000000001,0.043000000000000003,0.61,52,766,264,0,0,-6.5,52,766,0,264,0.263,34.14,73.97,0.89,0.22,897,0.6000000000000001,27,3.7,13.1583,10.1346 +2012,10,26,23,30,6,1.35,0.042,0.61,26,439,64,0,0,-6.4,26,439,0,64,0.264,40.62,85.06,0.9,0.22,898,0.6000000000000001,32,2.5,0.0000,0.0000 +2012,10,27,0,30,3.8000000000000003,1.27,0.04,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.265,50.96,97.04,0.9,0.22,898,0.6000000000000001,41,1.8,0.0000,0.0000 +2012,10,27,1,30,2.8000000000000003,1.27,0.039,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.266,54.7,109.21000000000001,0.9,0.22,898,0.6000000000000001,52,1.8,0.0000,0.0000 +2012,10,27,2,30,1.9000000000000001,1.3,0.038,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.267,58.29,121.46000000000001,0.9,0.22,898,0.6000000000000001,62,1.8,0.0000,0.0000 +2012,10,27,3,30,1.1,1.32,0.038,0.61,0,0,0,0,0,-5.4,0,0,0,0,0.269,61.71,133.46,0.9,0.22,898,0.6000000000000001,72,1.6,0.0000,0.0000 +2012,10,27,4,30,0.30000000000000004,1.32,0.038,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.27,65.17,144.65,0.9,0.22,898,0.6000000000000001,81,1.4000000000000001,0.0000,0.0000 +2012,10,27,5,30,-0.4,1.31,0.038,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.271,68.27,153.72,0.9,0.22,897,0.6000000000000001,90,1.2000000000000002,0.0000,0.0000 +2012,10,27,6,30,-1,1.3,0.038,0.61,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.273,71.08,157.72,0.9,0.22,897,0.7000000000000001,101,1.1,0.0000,0.0000 +2012,10,27,7,30,-1.6,1.3,0.039,0.61,0,0,0,0,0,-5.7,0,0,0,0,0.275,73.83,154.13,0.9,0.22,897,0.7000000000000001,114,1,0.0000,0.0000 +2012,10,27,8,30,-2,1.3,0.039,0.61,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.277,75.43,145.25,0.89,0.22,897,0.7000000000000001,129,1.1,0.0000,0.0000 +2012,10,27,9,30,-2.4000000000000004,1.31,0.038,0.61,0,0,0,0,0,-5.9,0,0,0,0,0.278,77.01,134.14000000000001,0.89,0.22,896,0.7000000000000001,143,1.1,0.0000,0.0000 +2012,10,27,10,30,-2.7,1.32,0.037,0.61,0,0,0,0,1,-6,0,0,0,0,0.281,78.23,122.18,0.89,0.22,896,0.7000000000000001,155,1.2000000000000002,0.0000,0.0000 +2012,10,27,11,30,-2.9000000000000004,1.34,0.035,0.61,0,0,0,0,4,-6,0,0,0,0,0.28300000000000003,79.05,109.95,0.89,0.22,896,0.7000000000000001,164,1.4000000000000001,0.0000,0.0000 +2012,10,27,12,30,-2.8000000000000003,1.35,0.032,0.61,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.28600000000000003,78.23,97.79,0.89,0.22,896,0.7000000000000001,173,1.6,0.0000,0.0000 +2012,10,27,13,30,-1.3,1.34,0.028,0.61,22,432,54,0,0,-6.1000000000000005,22,432,0,54,0.28800000000000003,69.87,85.78,0.89,0.22,896,0.7000000000000001,178,2.6,0.0000,0.0000 +2012,10,27,14,30,1.6,1.32,0.027,0.61,46,775,250,0,0,-6.4,46,775,0,250,0.289,55.53,74.7,0.89,0.22,896,0.7000000000000001,183,3.6,12.2804,9.4460 +2012,10,27,15,30,4.6000000000000005,1.31,0.027,0.61,58,902,445,0,0,-6.6000000000000005,58,902,0,445,0.289,44.21,64.59,0.89,0.22,896,0.7000000000000001,193,3.9000000000000004,20.3650,15.8598 +2012,10,27,16,30,7.4,1.3,0.028,0.61,66,961,600,0,0,-6.4,66,961,0,600,0.29,36.95,56.2,0.9,0.22,895,0.7000000000000001,204,4.1000000000000005,32.3977,25.3538 +2012,10,27,17,30,10,1.29,0.028,0.61,70,991,701,0,0,-6.2,70,991,0,701,0.29,31.3,50.44,0.9,0.22,893,0.7000000000000001,210,4.1000000000000005,40.6524,31.8780 +2012,10,27,18,30,12,1.3,0.032,0.61,74,996,736,0,0,-6.1000000000000005,74,996,0,736,0.289,27.78,48.300000000000004,0.91,0.22,892,0.7000000000000001,216,4.1000000000000005,43.2897,33.9658 +2012,10,27,19,30,13.5,1.29,0.033,0.61,73,986,704,0,0,-6,73,986,0,704,0.28800000000000003,25.330000000000002,50.25,0.91,0.22,891,0.7000000000000001,221,3.9000000000000004,41.0868,32.2204 +2012,10,27,20,30,14.4,1.29,0.032,0.61,69,959,607,0,0,-6.1000000000000005,69,959,0,607,0.28600000000000003,23.7,55.870000000000005,0.91,0.22,890,0.7000000000000001,225,3.5,34.5984,27.0801 +2012,10,27,21,30,14.5,1.28,0.032,0.61,61,899,453,0,0,-6.300000000000001,61,899,0,453,0.28400000000000003,23.2,64.17,0.91,0.22,890,0.7000000000000001,224,2.9000000000000004,24.6793,19.2266 +2012,10,27,22,30,12.9,1.27,0.032,0.61,49,775,259,0,0,-6.5,49,775,0,259,0.28200000000000003,25.43,74.21000000000001,0.91,0.22,890,0.7000000000000001,208,1.9000000000000001,13.0294,10.0311 +2012,10,27,23,30,9.4,1.27,0.032,0.61,24,446,61,0,0,-2.8000000000000003,24,446,0,61,0.281,42.28,85.28,0.91,0.22,890,0.7000000000000001,180,1.3,0.0000,0.0000 +2012,10,28,0,30,6.9,1.26,0.031,0.61,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.281,45.29,97.25,0.9,0.22,891,0.7000000000000001,161,1.9000000000000001,0.0000,0.0000 +2012,10,28,1,30,6.2,1.23,0.029,0.61,0,0,0,0,0,-5,0,0,0,0,0.28200000000000003,44.47,109.41,0.9,0.22,891,0.7000000000000001,158,2.6,0.0000,0.0000 +2012,10,28,2,30,5.2,1.23,0.028,0.61,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.28300000000000003,46.79,121.66,0.9,0.22,892,0.7000000000000001,159,2.8000000000000003,0.0000,0.0000 +2012,10,28,3,30,3.9000000000000004,1.25,0.028,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.28400000000000003,51.38,133.67000000000002,0.9,0.22,893,0.7000000000000001,163,2.5,0.0000,0.0000 +2012,10,28,4,30,2.7,1.25,0.028,0.61,0,0,0,0,0,-5.2,0,0,0,0,0.28300000000000003,55.93,144.9,0.91,0.22,893,0.7000000000000001,168,2.1,0.0000,0.0000 +2012,10,28,5,30,1.9000000000000001,1.26,0.029,0.61,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.28300000000000003,58.83,154.02,0.91,0.22,893,0.8,175,1.9000000000000001,0.0000,0.0000 +2012,10,28,6,30,1.3,1.27,0.03,0.61,0,0,0,0,0,-5.5,0,0,0,0,0.28300000000000003,60.74,158.06,0.91,0.22,893,0.8,181,2,0.0000,0.0000 +2012,10,28,7,30,1.3,1.23,0.036000000000000004,0.61,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.28400000000000003,60.15,154.41,0.92,0.22,894,0.8,188,2.4000000000000004,0.0000,0.0000 +2012,10,28,8,30,1.6,1.2,0.041,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.28500000000000003,58.46,145.47,0.92,0.22,894,0.9,194,2.7,0.0000,0.0000 +2012,10,28,9,30,1.5,1.2,0.041,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.28500000000000003,58.79,134.32,0.92,0.22,894,0.9,200,2.3000000000000003,0.0000,0.0000 +2012,10,28,10,30,1.2000000000000002,1.21,0.042,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.28600000000000003,60.2,122.34,0.93,0.22,894,0.9,205,1.9000000000000001,0.0000,0.0000 +2012,10,28,11,30,0.7000000000000001,1.23,0.043000000000000003,0.61,0,0,0,0,7,-5.6000000000000005,0,0,0,0,0.28800000000000003,62.5,110.12,0.93,0.22,894,0.9,209,1.7000000000000002,0.0000,0.0000 +2012,10,28,12,30,0.4,1.24,0.042,0.61,0,0,0,0,7,-5.7,0,0,0,0,0.28800000000000003,63.61,97.96000000000001,0.92,0.22,894,0.9,212,1.7000000000000002,0.0000,0.0000 +2012,10,28,13,30,1.9000000000000001,1.25,0.04,0.61,23,372,49,7,7,-5.7,32,4,7,32,0.28700000000000003,57.26,85.96000000000001,0.92,0.22,894,1,214,2.5,0.0000,0.0000 +2012,10,28,14,30,5.2,1.26,0.037,0.61,49,740,242,0,4,-5.4,151,84,0,173,0.28600000000000003,46.31,74.91,0.92,0.22,894,0.9,212,3.3000000000000003,12.2574,9.4248 +2012,10,28,15,30,9.3,1.26,0.036000000000000004,0.61,62,876,435,0,0,-5.1000000000000005,62,876,0,435,0.28400000000000003,35.78,64.84,0.92,0.22,894,0.9,204,3.8000000000000003,23.8071,18.5370 +2012,10,28,16,30,12.700000000000001,1.24,0.037,0.61,71,938,589,0,0,-5.1000000000000005,71,938,0,589,0.28300000000000003,28.650000000000002,56.480000000000004,0.92,0.22,894,0.9,195,4.3,33.7603,26.4170 +2012,10,28,17,30,14.8,1.22,0.037,0.61,75,969,689,0,0,-4.9,75,969,0,689,0.28200000000000003,25.21,50.75,0.92,0.22,893,0.9,190,4.5,40.4310,31.7014 +2012,10,28,18,30,16.3,1.23,0.041,0.61,79,975,723,0,0,-4.9,79,975,0,723,0.281,23.01,48.63,0.92,0.22,892,0.9,190,4.7,42.7751,33.5591 +2012,10,28,19,30,17.2,1.22,0.041,0.61,78,966,691,0,0,-4.800000000000001,78,966,0,691,0.281,21.900000000000002,50.58,0.92,0.22,891,0.9,191,4.7,40.6328,31.8614 +2012,10,28,20,30,17.5,1.24,0.039,0.61,72,938,594,0,0,-4.6000000000000005,72,938,0,594,0.281,21.73,56.17,0.92,0.22,891,0.9,193,4.5,34.2090,26.7718 +2012,10,28,21,30,17.1,1.22,0.032,0.61,61,886,443,0,0,-4.5,61,886,0,443,0.281,22.51,64.43,0.92,0.22,890,0.9,193,4.3,24.3085,18.9336 +2012,10,28,22,30,15.3,1.21,0.032,0.61,48,759,252,0,0,-4.3,48,759,0,252,0.281,25.67,74.45,0.92,0.22,890,0.9,189,3.4000000000000004,12.7547,9.8156 +2012,10,28,23,30,11.9,1.21,0.031,0.61,23,426,57,7,7,-3,42,47,7,46,0.281,35.36,85.49,0.92,0.22,891,0.9,180,2.4000000000000004,0.0000,0.0000 +2012,10,29,0,30,9.5,1.2,0.029,0.61,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.281,43.26,97.45,0.92,0.22,891,0.9,170,2.5,0.0000,0.0000 +2012,10,29,1,30,8.8,1.18,0.028,0.61,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.28,43.94,109.61,0.92,0.22,891,0.9,167,3.1,0.0000,0.0000 +2012,10,29,2,30,8,1.18,0.027,0.61,0,0,0,0,1,-3.2,0,0,0,0,0.28,45.18,121.86,0.92,0.22,892,0.9,169,3.5,0.0000,0.0000 +2012,10,29,3,30,7,1.19,0.026000000000000002,0.61,0,0,0,0,0,-3.5,0,0,0,0,0.281,47.050000000000004,133.88,0.91,0.22,892,1,172,3.6,0.0000,0.0000 +2012,10,29,4,30,6.2,1.2,0.026000000000000002,0.61,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.28200000000000003,48.34,145.14000000000001,0.91,0.22,892,1,177,3.8000000000000003,0.0000,0.0000 +2012,10,29,5,30,5.4,1.21,0.026000000000000002,0.61,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.28300000000000003,50.24,154.32,0.91,0.22,892,1,182,3.6,0.0000,0.0000 +2012,10,29,6,30,4.6000000000000005,1.22,0.026000000000000002,0.61,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.28400000000000003,53.25,158.39000000000001,0.91,0.22,892,1,187,3.3000000000000003,0.0000,0.0000 +2012,10,29,7,30,4,1.21,0.028,0.61,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.28500000000000003,56.370000000000005,154.70000000000002,0.92,0.22,892,1,192,3.1,0.0000,0.0000 +2012,10,29,8,30,3.5,1.21,0.029,0.61,0,0,0,0,0,-3.6,0,0,0,0,0.28600000000000003,59.6,145.69,0.92,0.22,892,1.1,196,2.9000000000000004,0.0000,0.0000 +2012,10,29,9,30,2.9000000000000004,1.2,0.03,0.61,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.28700000000000003,63.71,134.51,0.92,0.22,892,1.1,200,2.7,0.0000,0.0000 +2012,10,29,10,30,2.5,1.2,0.032,0.61,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.28700000000000003,67.31,122.51,0.93,0.22,892,1,204,2.5,0.0000,0.0000 +2012,10,29,11,30,2.2,1.19,0.033,0.61,0,0,0,0,0,-2.6,0,0,0,0,0.28600000000000003,70.69,110.28,0.93,0.22,892,1,206,2.5,0.0000,0.0000 +2012,10,29,12,30,2.1,1.17,0.034,0.61,0,0,0,0,0,-2.2,0,0,0,0,0.28400000000000003,73.23,98.13,0.93,0.22,892,1,209,2.6,0.0000,0.0000 +2012,10,29,13,30,3.3000000000000003,1.17,0.035,0.61,22,372,47,0,0,-1.8,22,372,0,47,0.28300000000000003,69.28,86.15,0.93,0.22,893,1,212,3.1,0.0000,0.0000 +2012,10,29,14,30,6.300000000000001,1.18,0.035,0.61,48,735,237,0,0,-1.4000000000000001,48,735,0,237,0.28300000000000003,57.9,75.12,0.93,0.22,893,1,212,3.5,8.4664,6.5075 +2012,10,29,15,30,10.4,1.2,0.035,0.61,62,870,429,0,0,-0.9,62,870,0,429,0.28200000000000003,45.4,65.08,0.93,0.22,893,1,211,3.9000000000000004,23.2297,18.0837 +2012,10,29,16,30,14.4,1.23,0.034,0.61,69,936,582,0,0,-0.30000000000000004,69,936,0,582,0.28200000000000003,36.51,56.76,0.93,0.22,892,1,208,4.3,33.0956,25.8938 +2012,10,29,17,30,17.400000000000002,1.25,0.034,0.61,74,967,682,0,0,0.1,74,967,0,682,0.281,30.94,51.06,0.93,0.22,892,1,203,4.3,39.6924,31.1195 +2012,10,29,18,30,19.6,1.26,0.034,0.61,75,977,717,0,0,0,75,977,0,717,0.28,26.87,48.96,0.93,0.22,891,1,200,4.3,41.9722,32.9263 +2012,10,29,19,30,21,1.27,0.034,0.61,74,969,685,0,0,-0.30000000000000004,74,969,0,685,0.278,24.07,50.9,0.93,0.22,890,1,200,4.1000000000000005,39.8333,31.2315 +2012,10,29,20,30,21.700000000000003,1.28,0.034,0.61,69,939,588,0,0,-0.7000000000000001,69,939,0,588,0.277,22.47,56.46,0.93,0.22,889,1,200,3.8000000000000003,33.4276,26.1570 +2012,10,29,21,30,21.5,1.27,0.031,0.61,60,882,437,0,0,-0.9,60,882,0,437,0.276,22.330000000000002,64.7,0.93,0.22,889,1,197,3.2,23.7276,18.4774 +2012,10,29,22,30,19.200000000000003,1.28,0.03,0.61,47,755,247,0,0,-0.9,47,755,0,247,0.275,25.82,74.69,0.93,0.22,889,1,185,2.1,12.3831,9.5257 +2012,10,29,23,30,15,1.29,0.03,0.61,23,420,54,0,0,2.7,23,420,0,54,0.275,43.62,85.7,0.93,0.22,889,0.9,169,1.5,0.0000,0.0000 +2012,10,30,0,30,12.4,1.29,0.03,0.61,0,0,0,0,0,1,0,0,0,0,0.274,45.64,97.65,0.93,0.22,889,0.9,162,1.8,0.0000,0.0000 +2012,10,30,1,30,11.700000000000001,1.27,0.033,0.61,0,0,0,0,0,0.6000000000000001,0,0,0,0,0.275,46.49,109.8,0.93,0.22,889,0.9,163,2.2,0.0000,0.0000 +2012,10,30,2,30,11.3,1.25,0.035,0.61,0,0,0,0,1,0.6000000000000001,0,0,0,0,0.275,47.800000000000004,122.05,0.93,0.22,890,0.9,166,2.6,0.0000,0.0000 +2012,10,30,3,30,10.600000000000001,1.23,0.035,0.61,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.276,50.44,134.09,0.93,0.22,890,0.9,171,2.8000000000000003,0.0000,0.0000 +2012,10,30,4,30,9.700000000000001,1.21,0.035,0.61,0,0,0,0,0,0.9,0,0,0,0,0.276,54.120000000000005,145.38,0.93,0.22,889,0.9,177,2.5,0.0000,0.0000 +2012,10,30,5,30,8.8,1.21,0.035,0.61,0,0,0,0,1,1,0,0,0,0,0.278,58.120000000000005,154.61,0.93,0.22,889,1,186,2.1,0.0000,0.0000 +2012,10,30,6,30,7.9,1.22,0.034,0.61,0,0,0,0,0,1.1,0,0,0,0,0.279,62.15,158.72,0.93,0.22,889,1,198,1.6,0.0000,0.0000 +2012,10,30,7,30,6.9,1.24,0.033,0.61,0,0,0,0,0,1.1,0,0,0,0,0.279,66.58,154.98,0.93,0.22,889,1,215,1.3,0.0000,0.0000 +2012,10,30,8,30,6.1000000000000005,1.27,0.03,0.61,0,0,0,0,0,1.1,0,0,0,0,0.279,70.3,145.91,0.92,0.22,889,1.1,235,1.1,0.0000,0.0000 +2012,10,30,9,30,5.9,1.27,0.027,0.61,0,0,0,0,0,1,0,0,0,0,0.279,70.67,134.69,0.91,0.22,889,1.1,260,1.1,0.0000,0.0000 +2012,10,30,10,30,6,1.26,0.026000000000000002,0.61,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.279,68.88,122.68,0.9,0.22,889,1,286,1.2000000000000002,0.0000,0.0000 +2012,10,30,11,30,6,1.25,0.025,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.279,66.97,110.45,0.9,0.22,889,1,306,1.2000000000000002,0.0000,0.0000 +2012,10,30,12,30,6,1.25,0.025,0.61,0,0,0,0,0,-0.2,0,0,0,0,0.278,64.53,98.31,0.89,0.22,889,1,318,1.3,0.0000,0.0000 +2012,10,30,13,30,8.3,1.25,0.024,0.61,20,403,45,0,0,-0.8,20,403,0,45,0.277,52.660000000000004,86.33,0.89,0.22,889,0.9,326,1.5,0.0000,0.0000 +2012,10,30,14,30,12.5,1.24,0.023,0.61,43,762,236,0,0,-0.2,43,762,0,236,0.277,41.550000000000004,75.33,0.89,0.22,890,0.9,330,2,11.5772,8.8952 +2012,10,30,15,30,16.7,1.25,0.022,0.61,54,894,428,0,0,-1.1,54,894,0,428,0.276,29.68,65.32000000000001,0.9,0.22,890,0.9,340,1.9000000000000001,22.8687,17.7991 +2012,10,30,16,30,21.1,1.27,0.023,0.61,62,955,581,0,0,-0.9,62,955,0,581,0.276,22.95,57.03,0.9,0.22,889,0.9,199,1.8,32.6565,25.5471 +2012,10,30,17,30,24,1.28,0.023,0.61,66,984,680,0,0,-1.7000000000000002,66,984,0,680,0.275,18.12,51.370000000000005,0.9,0.22,889,0.9,48,2.1,39.2426,30.7639 +2012,10,30,18,30,25.1,1.35,0.038,0.61,76,977,714,0,0,-1.5,76,977,0,714,0.275,17.16,49.29,0.9,0.22,888,0.9,41,1.9000000000000001,41.5761,32.6128 +2012,10,30,19,30,25.5,1.34,0.038,0.61,75,968,681,0,0,-1.5,75,968,0,681,0.274,16.78,51.22,0.9,0.22,888,0.9,27,1.7000000000000002,39.4394,30.9197 +2012,10,30,20,30,25.5,1.34,0.038,0.61,70,938,585,0,0,-1.6,70,938,0,585,0.274,16.66,56.75,0.9,0.22,887,0.9,12,1.6,33.0427,25.8526 +2012,10,30,21,30,24.900000000000002,1.35,0.034,0.61,61,876,431,0,0,-1.7000000000000002,61,876,0,431,0.274,17.14,64.96000000000001,0.9,0.22,887,1,183,1.5,23.3604,18.1875 +2012,10,30,22,30,23,1.37,0.032,0.61,47,749,242,0,0,-0.9,47,749,0,242,0.273,20.39,74.92,0.9,0.22,887,1,184,1.1,12.1114,9.3127 +2012,10,30,23,30,20.3,1.3800000000000001,0.031,0.61,22,405,51,0,0,3,22,405,0,51,0.273,31.94,85.9,0.9,0.22,888,1,15,0.8,0.0000,0.0000 +2012,10,31,0,30,18.3,1.3900000000000001,0.03,0.61,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.273,29.75,97.84,0.9,0.22,888,1,31,0.8,0.0000,0.0000 +2012,10,31,1,30,16.8,1.3900000000000001,0.029,0.61,0,0,0,0,0,0,0,0,0,0,0.273,32.02,109.98,0.89,0.22,889,1,48,0.8,0.0000,0.0000 +2012,10,31,2,30,15.3,1.3800000000000001,0.027,0.61,0,0,0,0,0,0.2,0,0,0,0,0.273,35.67,122.23,0.89,0.22,889,1,60,0.9,0.0000,0.0000 +2012,10,31,3,30,13.8,1.36,0.026000000000000002,0.61,0,0,0,0,0,0.4,0,0,0,0,0.274,39.85,134.29,0.89,0.22,889,1,66,1,0.0000,0.0000 +2012,10,31,4,30,12.5,1.33,0.026000000000000002,0.61,0,0,0,0,0,0.9,0,0,0,0,0.275,44.980000000000004,145.61,0.89,0.22,889,1,68,1,0.0000,0.0000 +2012,10,31,5,30,11.4,1.29,0.025,0.61,0,0,0,0,0,1.3,0,0,0,0,0.276,49.84,154.9,0.89,0.22,889,1.1,68,1,0.0000,0.0000 +2012,10,31,6,30,10.5,1.26,0.025,0.61,0,0,0,0,0,1.6,0,0,0,0,0.276,54.2,159.04,0.89,0.22,890,1.1,71,1,0.0000,0.0000 +2012,10,31,7,30,9.9,1.25,0.024,0.61,0,0,0,0,0,2,0,0,0,0,0.277,57.980000000000004,155.25,0.89,0.22,890,1.1,75,1,0.0000,0.0000 +2012,10,31,8,30,9.700000000000001,1.24,0.023,0.61,0,0,0,0,0,2.2,0,0,0,0,0.277,59.6,146.13,0.89,0.22,890,1.2000000000000002,80,1,0.0000,0.0000 +2012,10,31,9,30,9.8,1.23,0.023,0.61,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.277,59.68,134.87,0.89,0.22,890,1.2000000000000002,93,0.8,0.0000,0.0000 +2012,10,31,10,30,10,1.22,0.023,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.278,59.19,122.85000000000001,0.89,0.22,890,1.2000000000000002,155,0.5,0.0000,0.0000 +2012,10,31,11,30,9.700000000000001,1.21,0.023,0.61,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.278,60.300000000000004,110.61,0.89,0.22,891,1.2000000000000002,227,0.6000000000000001,0.0000,0.0000 +2012,10,31,12,30,9.1,1.22,0.023,0.61,0,0,0,0,0,2.2,0,0,0,0,0.278,62.01,98.48,0.89,0.22,891,1.2000000000000002,247,1,0.0000,0.0000 +2012,10,31,13,30,10.200000000000001,1.22,0.023,0.61,19,386,42,0,0,1.9000000000000001,19,386,0,42,0.279,56.33,86.52,0.89,0.22,891,1.1,250,1.1,0.0000,0.0000 +2012,10,31,14,30,13.3,1.22,0.025,0.61,44,745,229,0,0,2.4000000000000004,44,745,0,229,0.279,47.75,75.55,0.89,0.22,891,1.1,253,1.5,11.5076,8.8384 +2012,10,31,15,30,17.400000000000002,1.23,0.026000000000000002,0.61,56,877,419,0,0,1.6,56,877,0,419,0.279,34.45,65.56,0.89,0.22,891,1.1,233,1.7000000000000002,22.7745,17.7223 +2012,10,31,16,30,21.5,1.25,0.028,0.61,65,938,571,0,0,1.5,65,938,0,571,0.278,26.560000000000002,57.31,0.9,0.22,891,1.1,204,2.1,32.5559,25.4653 +2012,10,31,17,30,24.3,1.29,0.028,0.61,69,969,669,0,0,0.4,69,969,0,669,0.277,20.77,51.68,0.9,0.22,891,1.1,200,2.7,39.0804,30.6339 +2012,10,31,18,30,25.6,1.33,0.031,0.61,72,975,704,0,0,-0.4,72,975,0,704,0.277,18.09,49.61,0.91,0.22,890,1.1,206,2.9000000000000004,41.3540,32.4357 +2012,10,31,19,30,26.400000000000002,1.37,0.031,0.61,71,967,672,0,0,-1.2000000000000002,71,967,0,672,0.276,16.34,51.53,0.91,0.22,889,1.1,209,3,39.1608,30.6983 +2012,10,31,20,30,26.5,1.3900000000000001,0.031,0.61,67,941,579,0,0,-1.7000000000000002,67,941,0,579,0.275,15.57,57.04,0.91,0.22,889,1,211,3.1,32.8265,25.6802 +2012,10,31,21,30,25.900000000000002,1.44,0.026000000000000002,0.61,57,886,428,0,0,-2.1,57,886,0,428,0.275,15.69,65.21000000000001,0.92,0.22,888,1,212,2.9000000000000004,22.9957,17.8998 +2012,10,31,22,30,22.900000000000002,1.44,0.027,0.61,45,755,239,0,0,-1.6,45,755,0,239,0.276,19.52,75.14,0.92,0.22,888,1,209,1.9000000000000001,11.8421,9.1020 +2012,10,31,23,30,18.5,1.43,0.027,0.61,21,407,49,0,0,3.4000000000000004,21,407,0,49,0.276,36.56,86.10000000000001,0.92,0.22,889,1,205,1.4000000000000001,0.0000,0.0000 +2012,11,1,0,30,15.8,1.42,0.026000000000000002,0.6,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.276,37.800000000000004,98.03,0.92,0.22,889,1,205,1.6,0.0000,0.0000 +2012,11,1,1,30,14.700000000000001,1.4000000000000001,0.026000000000000002,0.6,0,0,0,0,0,0.8,0,0,0,0,0.275,38.68,110.16,0.92,0.22,889,0.9,208,1.9000000000000001,0.0000,0.0000 +2012,11,1,2,30,13.9,1.3900000000000001,0.027,0.6,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.274,39.4,122.41,0.92,0.22,890,0.9,213,2.2,0.0000,0.0000 +2012,11,1,3,30,13.3,1.3900000000000001,0.027,0.6,0,0,0,0,0,0,0,0,0,0,0.274,39.97,134.48,0.92,0.22,890,0.9,218,2.6,0.0000,0.0000 +2012,11,1,4,30,12.8,1.3800000000000001,0.028,0.6,0,0,0,0,0,-0.2,0,0,0,0,0.273,40.78,145.83,0.91,0.22,890,0.9,224,3.1,0.0000,0.0000 +2012,11,1,5,30,12.3,1.37,0.029,0.6,0,0,0,0,0,-0.2,0,0,0,0,0.272,42.18,155.18,0.91,0.22,890,0.9,230,3.6,0.0000,0.0000 +2012,11,1,6,30,11.600000000000001,1.35,0.031,0.6,0,0,0,0,0,-0.1,0,0,0,0,0.272,44.58,159.36,0.92,0.22,890,0.9,238,3.8000000000000003,0.0000,0.0000 +2012,11,1,7,30,10.700000000000001,1.35,0.032,0.6,0,0,0,0,0,0,0,0,0,0,0.272,47.65,155.53,0.92,0.22,890,1,247,3.8000000000000003,0.0000,0.0000 +2012,11,1,8,30,10,1.35,0.034,0.6,0,0,0,0,0,0,0,0,0,0,0.273,49.74,146.34,0.92,0.22,890,1,255,3.7,0.0000,0.0000 +2012,11,1,9,30,9.4,1.35,0.036000000000000004,0.6,0,0,0,0,0,-0.2,0,0,0,0,0.274,51.29,135.05,0.92,0.22,890,1,262,3.5,0.0000,0.0000 +2012,11,1,10,30,8.9,1.35,0.037,0.6,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.275,52.45,123.02,0.92,0.22,890,0.9,266,3.2,0.0000,0.0000 +2012,11,1,11,30,8.5,1.35,0.037,0.6,0,0,0,0,0,-0.5,0,0,0,0,0.276,53.14,110.78,0.92,0.22,890,0.9,268,3,0.0000,0.0000 +2012,11,1,12,30,8.200000000000001,1.35,0.037,0.6,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.277,53.57,98.66,0.92,0.22,890,0.9,269,2.8000000000000003,0.0000,0.0000 +2012,11,1,13,30,9.8,1.36,0.036000000000000004,0.6,20,354,40,0,1,-0.8,20,354,0,40,0.278,47.75,86.7,0.92,0.22,890,0.8,270,3.3000000000000003,0.0000,0.0000 +2012,11,1,14,30,13.200000000000001,1.37,0.036000000000000004,0.6,47,735,228,0,0,-0.6000000000000001,47,735,0,228,0.279,38.7,75.76,0.92,0.22,890,0.8,268,3.6,11.1456,8.5569 +2012,11,1,15,30,17.2,1.3800000000000001,0.036000000000000004,0.6,61,875,420,0,0,-0.1,61,875,0,420,0.28,30.89,65.81,0.91,0.22,890,0.8,261,3.1,22.2553,17.3147 +2012,11,1,16,30,21.8,1.3800000000000001,0.035,0.6,69,942,573,0,0,0.6000000000000001,69,942,0,573,0.281,24.46,57.59,0.91,0.22,890,0.8,248,3.3000000000000003,31.9497,24.9879 +2012,11,1,17,30,25.200000000000003,1.3900000000000001,0.035,0.6,73,974,673,0,0,0.5,73,974,0,673,0.28200000000000003,19.8,51.99,0.92,0.22,889,0.8,231,3.6,38.4013,30.0986 +2012,11,1,18,30,26.700000000000003,1.4000000000000001,0.035,0.6,75,984,708,0,0,-0.4,75,984,0,708,0.28200000000000003,16.97,49.93,0.92,0.22,888,0.8,219,3.8000000000000003,40.7281,31.9420 +2012,11,1,19,30,27.3,1.41,0.037,0.6,74,968,672,0,0,-1.1,74,968,0,672,0.281,15.55,51.84,0.92,0.22,887,0.9,213,4,38.5964,30.2530 +2012,11,1,20,30,27.3,1.42,0.039,0.6,71,935,575,0,0,-1.6,71,935,0,575,0.28,15.05,57.32,0.92,0.22,887,0.9,211,4.1000000000000005,32.4422,25.3763 +2012,11,1,21,30,26.5,1.43,0.043000000000000003,0.6,64,864,423,0,0,-1.9000000000000001,64,864,0,423,0.279,15.39,65.46000000000001,0.92,0.22,886,0.9,210,3.8000000000000003,22.7933,17.7385 +2012,11,1,22,30,23.5,1.44,0.044,0.6,50,724,233,0,0,-1.7000000000000002,50,724,0,233,0.279,18.64,75.36,0.92,0.22,886,0.9,206,2.7,11.6729,8.9684 +2012,11,1,23,30,19.1,1.45,0.043000000000000003,0.6,22,363,45,0,0,1.5,22,363,0,45,0.28,30.94,86.29,0.92,0.22,886,0.8,201,1.9000000000000001,0.0000,0.0000 +2012,11,2,0,30,16.6,1.45,0.041,0.6,0,0,0,0,0,0.7000000000000001,0,0,0,0,0.281,34.09,98.21000000000001,0.92,0.22,886,0.8,199,2.2,0.0000,0.0000 +2012,11,2,1,30,15.9,1.45,0.037,0.6,0,0,0,0,0,0,0,0,0,0,0.28200000000000003,33.97,110.34,0.91,0.22,886,0.7000000000000001,200,2.7,0.0000,0.0000 +2012,11,2,2,30,15.4,1.44,0.034,0.6,0,0,0,0,0,-0.4,0,0,0,0,0.28200000000000003,34.02,122.59,0.91,0.22,886,0.7000000000000001,204,3.4000000000000004,0.0000,0.0000 +2012,11,2,3,30,14.9,1.43,0.032,0.6,0,0,0,0,1,-0.6000000000000001,0,0,0,0,0.281,34.7,134.67000000000002,0.9,0.22,886,0.6000000000000001,209,4.2,0.0000,0.0000 +2012,11,2,4,30,14,1.42,0.033,0.6,0,0,0,0,4,-0.5,0,0,0,0,0.28,36.910000000000004,146.05,0.9,0.22,886,0.6000000000000001,213,4.7,0.0000,0.0000 +2012,11,2,5,30,13,1.41,0.035,0.6,0,0,0,0,3,-0.4,0,0,0,0,0.279,39.65,155.45000000000002,0.91,0.22,886,0.6000000000000001,219,4.7,0.0000,0.0000 +2012,11,2,6,30,12,1.42,0.037,0.6,0,0,0,0,4,-0.30000000000000004,0,0,0,0,0.278,42.64,159.68,0.91,0.22,886,0.6000000000000001,224,4.6000000000000005,0.0000,0.0000 +2012,11,2,7,30,11.100000000000001,1.43,0.039,0.6,0,0,0,0,3,-0.30000000000000004,0,0,0,0,0.278,45.4,155.8,0.91,0.22,886,0.6000000000000001,229,4.4,0.0000,0.0000 +2012,11,2,8,30,10.3,1.43,0.041,0.6,0,0,0,0,3,-0.30000000000000004,0,0,0,0,0.278,47.78,146.56,0.91,0.22,886,0.7000000000000001,234,4.1000000000000005,0.0000,0.0000 +2012,11,2,9,30,9.700000000000001,1.43,0.042,0.6,0,0,0,0,1,-0.30000000000000004,0,0,0,0,0.278,49.59,135.24,0.91,0.22,886,0.7000000000000001,238,4,0.0000,0.0000 +2012,11,2,10,30,9.200000000000001,1.42,0.042,0.6,0,0,0,0,0,-0.4,0,0,0,0,0.278,51.160000000000004,123.18,0.91,0.22,886,0.6000000000000001,241,3.9000000000000004,0.0000,0.0000 +2012,11,2,11,30,8.9,1.41,0.041,0.6,0,0,0,0,0,-0.5,0,0,0,0,0.278,51.67,110.95,0.91,0.22,886,0.6000000000000001,244,3.9000000000000004,0.0000,0.0000 +2012,11,2,12,30,8.5,1.4000000000000001,0.039,0.6,0,0,0,0,0,-1,0,0,0,0,0.278,51.410000000000004,98.83,0.9,0.22,886,0.6000000000000001,247,3.9000000000000004,0.0000,0.0000 +2012,11,2,13,30,9.4,1.4000000000000001,0.037,0.6,19,362,39,0,0,-1.9000000000000001,19,362,0,39,0.277,45.04,86.88,0.9,0.22,886,0.5,250,4.2,0.0000,0.0000 +2012,11,2,14,30,12,1.4000000000000001,0.036000000000000004,0.6,47,755,230,0,0,-3.4000000000000004,47,755,0,230,0.276,33.86,75.97,0.89,0.22,886,0.5,251,4.4,11.0776,8.5014 +2012,11,2,15,30,15.9,1.41,0.036000000000000004,0.6,61,895,424,0,0,-4.7,61,895,0,424,0.276,23.89,66.05,0.89,0.22,886,0.5,253,3.9000000000000004,22.2659,17.3191 +2012,11,2,16,30,20.6,1.43,0.036000000000000004,0.6,69,961,580,0,0,-5.4,69,961,0,580,0.275,16.85,57.86,0.89,0.22,886,0.5,264,3.7,32.0149,25.0357 +2012,11,2,17,30,24.8,1.45,0.037,0.6,74,991,680,0,0,-7.2,74,991,0,680,0.275,11.38,52.29,0.89,0.22,886,0.5,282,3.5,38.5831,30.2381 +2012,11,2,18,30,27,1.44,0.041,0.6,77,996,714,0,0,-9.4,77,996,0,714,0.274,8.46,50.24,0.89,0.22,885,0.5,289,3.1,40.9119,32.0832 +2012,11,2,19,30,27.400000000000002,1.45,0.042,0.6,76,986,681,0,0,-9.1,76,986,0,681,0.273,8.44,52.14,0.89,0.22,884,0.5,285,2.8000000000000003,38.5490,30.2128 +2012,11,2,20,30,27.200000000000003,1.46,0.043000000000000003,0.6,72,954,583,0,0,-8.700000000000001,72,954,0,583,0.272,8.83,57.6,0.89,0.22,884,0.5,283,2.7,32.1718,25.1616 +2012,11,2,21,30,26.200000000000003,1.47,0.043000000000000003,0.6,64,889,430,0,0,-8.4,64,889,0,430,0.271,9.6,65.7,0.89,0.22,884,0.5,290,2.2,22.4847,17.4947 +2012,11,2,22,30,23.1,1.47,0.044,0.6,49,740,234,0,0,-4,49,740,0,234,0.271,16.1,75.58,0.89,0.22,884,0.6000000000000001,320,1.5,11.3584,8.7233 +2012,11,2,23,30,18.900000000000002,1.45,0.045,0.6,21,359,43,0,0,0.9,21,359,0,43,0.271,29.96,86.48,0.89,0.22,885,0.6000000000000001,183,1.7000000000000002,0.0000,0.0000 +2012,11,3,0,30,16.1,1.43,0.047,0.6,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.272,30.63,98.39,0.89,0.22,886,0.7000000000000001,29,2.6,0.0000,0.0000 +2012,11,3,1,30,14.8,1.41,0.049,0.6,0,0,0,0,0,-0.4,0,0,0,0,0.273,35.27,110.51,0.89,0.22,887,0.8,40,3.7,0.0000,0.0000 +2012,11,3,2,30,13.700000000000001,1.41,0.051000000000000004,0.6,0,0,0,0,0,1,0,0,0,0,0.274,41.85,122.76,0.9,0.22,888,0.8,43,4.3,0.0000,0.0000 +2012,11,3,3,30,12.4,1.4000000000000001,0.053,0.6,0,0,0,0,4,2.2,0,0,0,0,0.276,49.64,134.85,0.9,0.22,888,0.9,43,4,0.0000,0.0000 +2012,11,3,4,30,11.100000000000001,1.4000000000000001,0.054,0.6,0,0,0,0,0,2.9000000000000004,0,0,0,0,0.277,56.82,146.26,0.89,0.22,889,0.9,41,3.6,0.0000,0.0000 +2012,11,3,5,30,9.9,1.4000000000000001,0.054,0.6,0,0,0,0,0,3,0,0,0,0,0.278,62.03,155.72,0.9,0.22,889,0.9,37,3.3000000000000003,0.0000,0.0000 +2012,11,3,6,30,8.700000000000001,1.3900000000000001,0.055,0.6,0,0,0,0,0,2.7,0,0,0,0,0.278,65.89,159.99,0.9,0.22,890,0.9,30,3.1,0.0000,0.0000 +2012,11,3,7,30,7.7,1.4000000000000001,0.057,0.6,0,0,0,0,3,2.2,0,0,0,0,0.278,68.02,156.07,0.9,0.22,890,1,22,3.1,0.0000,0.0000 +2012,11,3,8,30,6.800000000000001,1.4000000000000001,0.059000000000000004,0.6,0,0,0,0,4,1.7000000000000002,0,0,0,0,0.279,69.83,146.77,0.9,0.22,891,1,15,2.9000000000000004,0.0000,0.0000 +2012,11,3,9,30,5.9,1.4000000000000001,0.061,0.6,0,0,0,0,1,1.3,0,0,0,0,0.28,72.3,135.41,0.91,0.22,891,1,9,2.7,0.0000,0.0000 +2012,11,3,10,30,5.300000000000001,1.41,0.064,0.6,0,0,0,0,7,1.1,0,0,0,0,0.281,74.24,123.35000000000001,0.91,0.22,892,1,5,2.7,0.0000,0.0000 +2012,11,3,11,30,4.800000000000001,1.41,0.069,0.6,0,0,0,0,7,1,0,0,0,0,0.28200000000000003,76.13,111.12,0.91,0.22,892,1.1,4,2.6,0.0000,0.0000 +2012,11,3,12,30,4.4,1.41,0.074,0.6,0,0,0,0,8,0.9,0,0,0,0,0.28200000000000003,78.02,99.01,0.92,0.22,893,1.1,5,2.6,0.0000,0.0000 +2012,11,3,13,30,4.9,1.41,0.081,0.6,20,225,32,7,4,0.9,14,0,7,14,0.28300000000000003,75.35000000000001,87.06,0.92,0.22,893,1.1,12,3.1,0.0000,0.0000 +2012,11,3,14,30,6.9,1.3900000000000001,0.091,0.6,60,613,206,0,8,0.8,111,296,0,181,0.28300000000000003,65.19,76.18,0.93,0.22,894,1.2000000000000002,30,3.7,11.1558,8.5581 +2012,11,3,15,30,9.4,1.37,0.105,0.6,86,758,390,0,4,0.6000000000000001,238,176,0,309,0.28300000000000003,54.02,66.29,0.9400000000000001,0.22,894,1.2000000000000002,49,3.8000000000000003,22.4364,17.4480 +2012,11,3,16,30,11.9,1.33,0.121,0.6,105,817,537,0,4,0.5,314,209,0,425,0.28400000000000003,45.45,58.13,0.9500000000000001,0.22,894,1.3,62,3.9000000000000004,32.3600,25.3023 +2012,11,3,17,30,14.4,1.31,0.127,0.6,115,852,632,0,8,0.2,221,583,0,575,0.28400000000000003,37.730000000000004,52.59,0.9400000000000001,0.22,893,1.3,74,4.1000000000000005,38.9371,30.5125 +2012,11,3,18,30,16.5,1.31,0.10400000000000001,0.6,107,887,671,7,8,-0.7000000000000001,206,687,7,642,0.28400000000000003,30.93,50.550000000000004,0.9400000000000001,0.22,892,1.3,84,4,41.2115,32.3153 +2012,11,3,19,30,17.8,1.31,0.105,0.6,106,875,639,0,8,-1.4000000000000001,224,525,0,543,0.28400000000000003,27.07,52.44,0.9400000000000001,0.22,892,1.3,95,3.6,39.0181,30.5775 +2012,11,3,20,30,18.2,1.31,0.111,0.6,101,830,543,0,8,-1.7000000000000002,197,588,0,510,0.28400000000000003,25.84,57.870000000000005,0.9400000000000001,0.22,891,1.3,106,3.2,32.5720,25.4712 +2012,11,3,21,30,17.900000000000002,1.33,0.066,0.6,72,809,402,0,8,-1.8,154,550,0,378,0.28500000000000003,26.25,65.94,0.93,0.22,891,1.3,110,2.8000000000000003,22.8152,17.7481 +2012,11,3,22,30,16.1,1.36,0.058,0.6,53,672,218,0,4,-1.7000000000000002,35,0,0,35,0.28500000000000003,29.46,75.79,0.92,0.22,891,1.3,107,2,11.3861,8.7410 +2012,11,3,23,30,12.9,1.3800000000000001,0.052000000000000005,0.6,21,302,38,7,7,0.2,27,5,7,27,0.28500000000000003,41.72,86.66,0.92,0.22,892,1.2000000000000002,103,1.4000000000000001,0.0000,0.0000 +2012,11,4,0,30,10.600000000000001,1.3800000000000001,0.049,0.6,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.28600000000000003,45.64,98.56,0.92,0.22,892,1.2000000000000002,104,1.6,0.0000,0.0000 +2012,11,4,1,30,9.8,1.3800000000000001,0.048,0.6,0,0,0,0,0,-1.6,0,0,0,0,0.28700000000000003,45.02,110.67,0.91,0.22,893,1.2000000000000002,112,1.9000000000000001,0.0000,0.0000 +2012,11,4,2,30,8.9,1.3800000000000001,0.047,0.6,0,0,0,0,0,-2.2,0,0,0,0,0.28800000000000003,45.78,122.92,0.91,0.22,893,1.2000000000000002,120,2,0.0000,0.0000 +2012,11,4,3,30,8.1,1.3800000000000001,0.047,0.6,0,0,0,0,1,-2.5,0,0,0,0,0.28700000000000003,47.26,135.02,0.91,0.22,893,1.2000000000000002,126,2,0.0000,0.0000 +2012,11,4,4,30,7.2,1.4000000000000001,0.047,0.6,0,0,0,0,8,-2.6,0,0,0,0,0.28700000000000003,49.800000000000004,146.46,0.91,0.22,894,1.2000000000000002,129,1.9000000000000001,0.0000,0.0000 +2012,11,4,5,30,6.4,1.42,0.048,0.6,0,0,0,0,0,-2.7,0,0,0,0,0.28700000000000003,52.34,155.98,0.91,0.22,894,1.2000000000000002,132,1.7000000000000002,0.0000,0.0000 +2012,11,4,6,30,5.7,1.44,0.05,0.6,0,0,0,0,0,-2.7,0,0,0,0,0.28700000000000003,54.83,160.3,0.91,0.22,894,1.3,136,1.5,0.0000,0.0000 +2012,11,4,7,30,5.1000000000000005,1.45,0.053,0.6,0,0,0,0,0,-2.6,0,0,0,0,0.28600000000000003,57.42,156.33,0.91,0.22,894,1.3,142,1.4000000000000001,0.0000,0.0000 +2012,11,4,8,30,4.7,1.47,0.054,0.6,0,0,0,0,0,-2.5,0,0,0,0,0.28600000000000003,59.38,146.98,0.91,0.22,894,1.3,148,1.3,0.0000,0.0000 +2012,11,4,9,30,4.3,1.48,0.053,0.6,0,0,0,0,0,-2.5,0,0,0,0,0.28600000000000003,61.45,135.59,0.91,0.22,894,1.2000000000000002,158,1.2000000000000002,0.0000,0.0000 +2012,11,4,10,30,4,1.49,0.051000000000000004,0.6,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.28700000000000003,63.410000000000004,123.52,0.91,0.22,894,1.2000000000000002,171,1.2000000000000002,0.0000,0.0000 +2012,11,4,11,30,3.8000000000000003,1.48,0.05,0.6,0,0,0,0,0,-2.1,0,0,0,0,0.28700000000000003,65.47,111.28,0.9,0.22,893,1.2000000000000002,190,1.2000000000000002,0.0000,0.0000 +2012,11,4,12,30,3.7,1.49,0.049,0.6,0,0,0,0,0,-1.6,0,0,0,0,0.28700000000000003,68.11,99.18,0.9,0.22,893,1.2000000000000002,210,1.2000000000000002,0.0000,0.0000 +2012,11,4,13,30,5.2,1.49,0.048,0.6,18,279,31,0,0,-1,18,279,0,31,0.28700000000000003,64.42,87.24,0.9,0.22,893,1.2000000000000002,225,1.9000000000000001,0.0000,0.0000 +2012,11,4,14,30,8.4,1.49,0.046,0.6,48,690,211,0,0,0.1,48,690,0,211,0.28700000000000003,55.84,76.39,0.91,0.22,893,1.1,227,2.7,8.7646,6.7211 +2012,11,4,15,30,12.200000000000001,1.5,0.044,0.6,63,843,399,0,0,1.1,63,843,0,399,0.28700000000000003,46.68,66.53,0.91,0.22,893,1.1,227,3.3000000000000003,16.3205,12.6892 +2012,11,4,16,30,16,1.51,0.042,0.6,71,915,550,0,0,3.1,71,915,0,550,0.28600000000000003,41.97,58.4,0.91,0.22,893,1.1,233,3.9000000000000004,23.6780,18.5114 +2012,11,4,17,30,18.900000000000002,1.52,0.041,0.6,75,950,648,0,0,4.3,75,950,0,648,0.28500000000000003,37.96,52.88,0.91,0.22,892,1.1,239,4,32.8842,25.7667 +2012,11,4,18,30,21,1.5,0.043000000000000003,0.6,77,958,682,0,0,3.3000000000000003,77,958,0,682,0.28500000000000003,31.2,50.86,0.91,0.22,891,1.1,243,3.9000000000000004,37.0128,29.0203 +2012,11,4,19,30,22.5,1.5,0.042,0.6,76,950,651,0,0,1.7000000000000002,76,950,0,651,0.28400000000000003,25.32,52.74,0.91,0.22,890,1.1,250,3.7,31.0733,24.3490 +2012,11,4,20,30,23.1,1.49,0.041,0.6,71,923,558,0,1,-0.2,71,923,0,558,0.28400000000000003,21.400000000000002,58.13,0.91,0.22,889,1,257,3.5,28.4530,22.2473 +2012,11,4,21,30,22.8,1.49,0.039,0.6,61,859,408,0,7,-2,140,630,0,394,0.28300000000000003,19.01,66.18,0.91,0.22,889,1,262,2.8000000000000003,20.0193,15.5699 +2012,11,4,22,30,20.700000000000003,1.49,0.036000000000000004,0.6,46,723,221,0,0,-2.3000000000000003,46,723,0,221,0.28200000000000003,21.25,75.99,0.9,0.22,889,1,263,1.6,1.7001,1.3047 +2012,11,4,23,30,18.5,1.48,0.034,0.6,19,350,38,0,0,1.1,19,350,0,38,0.28200000000000003,31.150000000000002,86.84,0.9,0.22,889,0.9,258,0.9,0.0000,0.0000 +2012,11,5,0,30,17.6,1.47,0.033,0.6,0,0,0,0,1,-2.9000000000000004,0,0,0,0,0.28400000000000003,24.560000000000002,98.73,0.9,0.22,889,0.9,241,0.7000000000000001,0.0000,0.0000 +2012,11,5,1,30,16.7,1.47,0.033,0.6,0,0,0,0,0,-3.6,0,0,0,0,0.28600000000000003,24.79,110.83,0.9,0.22,890,0.9,210,0.7000000000000001,0.0000,0.0000 +2012,11,5,2,30,15.600000000000001,1.48,0.032,0.6,0,0,0,0,0,-3.6,0,0,0,0,0.28700000000000003,26.44,123.08,0.9,0.22,890,0.9,190,0.6000000000000001,0.0000,0.0000 +2012,11,5,3,30,14.200000000000001,1.49,0.032,0.6,0,0,0,0,7,-3.5,0,0,0,0,0.28800000000000003,29.150000000000002,135.19,0.9,0.22,891,1,264,0.6000000000000001,0.0000,0.0000 +2012,11,5,4,30,12.100000000000001,1.49,0.033,0.6,0,0,0,0,4,-3.5,0,0,0,0,0.28800000000000003,33.63,146.66,0.9,0.22,891,1,349,1,0.0000,0.0000 +2012,11,5,5,30,10.100000000000001,1.45,0.035,0.6,0,0,0,0,1,-3,0,0,0,0,0.28800000000000003,39.86,156.23,0.9,0.22,892,1.1,180,1.7000000000000002,0.0000,0.0000 +2012,11,5,6,30,9.3,1.4000000000000001,0.037,0.6,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.28800000000000003,43.72,160.6,0.9,0.22,892,1.1,5,2.8000000000000003,0.0000,0.0000 +2012,11,5,7,30,8.9,1.33,0.039,0.6,0,0,0,0,0,-2.1,0,0,0,0,0.289,46,156.6,0.9,0.22,893,1.2000000000000002,5,4,0.0000,0.0000 +2012,11,5,8,30,8,1.27,0.038,0.6,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.28800000000000003,49.78,147.18,0.9,0.22,894,1.2000000000000002,5,4.4,0.0000,0.0000 +2012,11,5,9,30,7.300000000000001,1.21,0.038,0.6,0,0,0,0,0,-1.8,0,0,0,0,0.28800000000000003,52.44,135.77,0.9,0.22,894,1.2000000000000002,4,4.2,0.0000,0.0000 +2012,11,5,10,30,6.7,1.18,0.036000000000000004,0.6,0,0,0,0,0,-1.8,0,0,0,0,0.28800000000000003,54.52,123.69,0.91,0.22,894,1.2000000000000002,3,3.8000000000000003,0.0000,0.0000 +2012,11,5,11,30,6.2,1.19,0.035,0.6,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.289,56.95,111.45,0.91,0.22,894,1.3,181,3.6,0.0000,0.0000 +2012,11,5,12,30,5.9,1.22,0.034,0.6,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.29,60.28,99.36,0.91,0.22,895,1.3,358,3.4000000000000004,0.0000,0.0000 +2012,11,5,13,30,6.6000000000000005,1.25,0.032,0.6,16,296,30,0,0,-0.5,16,296,0,30,0.29,60.63,87.43,0.91,0.22,895,1.3,355,3.7,0.0000,0.0000 +2012,11,5,14,30,9.1,1.28,0.03,0.6,44,711,208,0,0,0.2,44,711,0,208,0.289,53.75,76.60000000000001,0.9,0.22,895,1.2000000000000002,180,4.2,10.2009,7.8195 +2012,11,5,15,30,12.4,1.28,0.03,0.6,57,852,393,0,0,0.9,57,852,0,393,0.28800000000000003,45.27,66.76,0.9,0.22,895,1.3,14,4.6000000000000005,21.0343,16.3505 +2012,11,5,16,30,15,1.28,0.029,0.6,64,921,543,0,1,0.6000000000000001,64,921,0,543,0.28700000000000003,37.53,58.67,0.9,0.22,895,1.3,17,4.5,30.5974,23.9178 +2012,11,5,17,30,16.8,1.29,0.028,0.6,68,955,640,0,8,0.1,196,590,0,550,0.28700000000000003,32.34,53.17,0.9,0.22,895,1.3,10,4,37.0143,29.0000 +2012,11,5,18,30,18.2,1.29,0.028,0.6,69,965,674,0,0,0.1,69,965,0,674,0.28600000000000003,29.55,51.160000000000004,0.9,0.22,894,1.3,178,3.6,39.2727,30.7894 +2012,11,5,19,30,19.200000000000003,1.3,0.029,0.6,68,955,643,0,0,0.1,68,955,0,643,0.28400000000000003,27.68,53.02,0.9,0.22,893,1.3,344,3.3000000000000003,37.2074,29.1527 +2012,11,5,20,30,19.700000000000003,1.31,0.03,0.6,65,923,548,0,7,-0.1,227,374,0,423,0.28200000000000003,26.47,58.4,0.9,0.22,892,1.3,333,3,31.0878,24.3044 +2012,11,5,21,30,19.5,1.32,0.03,0.6,57,857,400,0,8,-0.30000000000000004,133,515,0,339,0.28,26.35,66.41,0.9,0.22,892,1.3,326,2.6,20.8279,16.1952 +2012,11,5,22,30,18,1.33,0.029,0.6,44,719,216,0,0,-0.5,44,719,0,216,0.279,28.64,76.19,0.9,0.22,892,1.3,326,1.5,10.7176,8.2216 +2012,11,5,23,30,16,1.33,0.028,0.6,18,338,35,7,3,1.7000000000000002,19,0,7,19,0.278,38.09,87.01,0.9,0.22,892,1.3,343,0.5,0.0000,0.0000 +2012,11,6,0,30,14.200000000000001,1.34,0.028,0.6,0,0,0,0,0,0.2,0,0,0,0,0.277,38.31,98.89,0.9,0.22,892,1.3,255,0.6000000000000001,0.0000,0.0000 +2012,11,6,1,30,12.5,1.33,0.028,0.6,0,0,0,0,0,0,0,0,0,0,0.275,42.18,110.98,0.9,0.22,892,1.3,156,1.1,0.0000,0.0000 +2012,11,6,2,30,11.100000000000001,1.33,0.028,0.6,0,0,0,0,7,-0.2,0,0,0,0,0.275,45.71,123.23,0.9,0.22,892,1.2000000000000002,159,1.2000000000000002,0.0000,0.0000 +2012,11,6,3,30,9.8,1.32,0.029,0.6,0,0,0,0,7,-0.4,0,0,0,0,0.275,49.160000000000004,135.35,0.9,0.22,892,1.2000000000000002,163,1.2000000000000002,0.0000,0.0000 +2012,11,6,4,30,8.700000000000001,1.33,0.029,0.6,0,0,0,0,7,-0.5,0,0,0,0,0.274,52.36,146.85,0.9,0.22,892,1.2000000000000002,173,1.3,0.0000,0.0000 +2012,11,6,5,30,8,1.32,0.029,0.6,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.273,54.39,156.48,0.9,0.22,892,1.2000000000000002,187,1.5,0.0000,0.0000 +2012,11,6,6,30,7.5,1.32,0.029,0.6,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.272,55.9,160.9,0.9,0.22,892,1.2000000000000002,202,1.7000000000000002,0.0000,0.0000 +2012,11,6,7,30,7.1000000000000005,1.32,0.029,0.6,0,0,0,0,4,-0.9,0,0,0,0,0.271,56.97,156.86,0.9,0.22,892,1.2000000000000002,216,2,0.0000,0.0000 +2012,11,6,8,30,6.7,1.32,0.03,0.6,0,0,0,0,0,-1.1,0,0,0,0,0.271,57.59,147.39000000000001,0.9,0.22,892,1.2000000000000002,229,2.1,0.0000,0.0000 +2012,11,6,9,30,6.300000000000001,1.32,0.03,0.6,0,0,0,0,0,-1.5,0,0,0,0,0.271,57.44,135.95,0.9,0.22,892,1.2000000000000002,241,2,0.0000,0.0000 +2012,11,6,10,30,6,1.32,0.029,0.6,0,0,0,0,0,-2,0,0,0,0,0.271,56.34,123.85000000000001,0.9,0.22,892,1.2000000000000002,252,1.9000000000000001,0.0000,0.0000 +2012,11,6,11,30,5.800000000000001,1.32,0.028,0.6,0,0,0,0,0,-2.5,0,0,0,0,0.271,55.1,111.62,0.89,0.22,892,1.1,261,2,0.0000,0.0000 +2012,11,6,12,30,5.9,1.31,0.028,0.6,0,0,0,0,7,-2.8000000000000003,0,0,0,0,0.272,53.61,99.53,0.89,0.22,892,1.1,266,1.9000000000000001,0.0000,0.0000 +2012,11,6,13,30,7.800000000000001,1.31,0.027,0.6,15,308,28,0,0,-2.9000000000000004,15,308,0,28,0.271,46.85,87.61,0.89,0.22,893,1.1,273,2.3000000000000003,0.0000,0.0000 +2012,11,6,14,30,11.5,1.3,0.028,0.6,43,717,206,0,0,-2.4000000000000004,43,717,0,206,0.271,37.910000000000004,76.81,0.9,0.22,893,1.1,281,2.8000000000000003,10.0403,7.6933 +2012,11,6,15,30,15.4,1.28,0.028,0.6,56,862,393,0,0,-2.2,56,862,0,393,0.272,29.68,67,0.9,0.22,893,1.1,292,2.6,20.6802,16.0717 +2012,11,6,16,30,19.700000000000003,1.27,0.029,0.6,64,925,541,0,0,-1.6,64,925,0,541,0.272,23.76,58.93,0.9,0.22,893,1.2000000000000002,155,2.5,30.1634,23.5754 +2012,11,6,17,30,23,1.27,0.03,0.6,69,956,638,0,0,-1.3,69,956,0,638,0.273,19.82,53.46,0.9,0.22,893,1.2000000000000002,26,3.1,31.3780,24.5817 +2012,11,6,18,30,24.200000000000003,1.26,0.029,0.6,70,968,673,0,0,-0.8,70,968,0,673,0.274,19.06,51.46,0.9,0.22,892,1.2000000000000002,41,3.4000000000000004,38.7673,30.3904 +2012,11,6,19,30,24.400000000000002,1.28,0.029,0.6,68,958,641,0,0,-0.4,68,958,0,641,0.275,19.39,53.31,0.9,0.22,892,1.2000000000000002,44,3.2,36.7071,28.7579 +2012,11,6,20,30,24.1,1.28,0.028,0.6,64,924,545,0,0,0,64,924,0,545,0.275,20.36,58.65,0.9,0.22,892,1.3,46,3,23.5322,18.3950 +2012,11,6,21,30,23.200000000000003,1.26,0.026000000000000002,0.6,55,861,397,0,0,0.30000000000000004,55,861,0,397,0.275,22.07,66.63,0.9,0.22,892,1.3,49,2.7,17.8882,13.9065 +2012,11,6,22,30,20.400000000000002,1.26,0.026000000000000002,0.6,43,721,212,0,0,0.9,43,721,0,212,0.275,27.23,76.39,0.89,0.22,892,1.3,55,2,10.4586,8.0200 +2012,11,6,23,30,16.3,1.26,0.025,0.6,17,335,33,0,0,3.8000000000000003,17,335,0,33,0.275,43.21,87.17,0.89,0.22,893,1.3,63,1.5,0.0000,0.0000 +2012,11,7,0,30,13.8,1.25,0.023,0.6,0,0,0,0,0,3.2,0,0,0,0,0.275,48.72,99.05,0.89,0.22,893,1.2000000000000002,71,1.7000000000000002,0.0000,0.0000 +2012,11,7,1,30,12.600000000000001,1.25,0.022,0.6,0,0,0,0,0,3.6,0,0,0,0,0.275,54.13,111.13,0.88,0.22,893,1.2000000000000002,82,1.7000000000000002,0.0000,0.0000 +2012,11,7,2,30,11.600000000000001,1.24,0.021,0.6,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.275,59.17,123.38000000000001,0.88,0.22,893,1.2000000000000002,94,1.7000000000000002,0.0000,0.0000 +2012,11,7,3,30,10.600000000000001,1.24,0.021,0.6,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.275,64.17,135.51,0.88,0.22,894,1.2000000000000002,109,1.6,0.0000,0.0000 +2012,11,7,4,30,9.8,1.24,0.022,0.6,0,0,0,0,0,4.2,0,0,0,0,0.275,67.97,147.04,0.88,0.22,894,1.2000000000000002,124,1.6,0.0000,0.0000 +2012,11,7,5,30,9,1.24,0.022,0.6,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.276,71.49,156.72,0.88,0.22,894,1.2000000000000002,137,1.6,0.0000,0.0000 +2012,11,7,6,30,8.4,1.24,0.022,0.6,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.276,74.12,161.20000000000002,0.88,0.22,894,1.2000000000000002,148,1.6,0.0000,0.0000 +2012,11,7,7,30,7.800000000000001,1.24,0.023,0.6,0,0,0,0,0,4,0,0,0,0,0.277,76.93,157.11,0.88,0.22,894,1.3,158,1.6,0.0000,0.0000 +2012,11,7,8,30,7.4,1.24,0.023,0.6,0,0,0,0,0,4,0,0,0,0,0.277,78.83,147.59,0.88,0.22,894,1.3,167,1.6,0.0000,0.0000 +2012,11,7,9,30,7,1.25,0.024,0.6,0,0,0,0,0,3.9000000000000004,0,0,0,0,0.276,80.64,136.13,0.88,0.22,894,1.2000000000000002,176,1.7000000000000002,0.0000,0.0000 +2012,11,7,10,30,6.7,1.25,0.025,0.6,0,0,0,0,0,3.7,0,0,0,0,0.275,81.45,124.02,0.88,0.22,893,1.2000000000000002,183,1.8,0.0000,0.0000 +2012,11,7,11,30,6.6000000000000005,1.26,0.027,0.6,0,0,0,0,0,3.5,0,0,0,0,0.275,80.69,111.78,0.89,0.22,893,1.2000000000000002,189,2,0.0000,0.0000 +2012,11,7,12,30,6.6000000000000005,1.26,0.028,0.6,0,0,0,0,0,3.1,0,0,0,0,0.274,78.45,99.71000000000001,0.89,0.22,893,1.1,194,2.3000000000000003,0.0000,0.0000 +2012,11,7,13,30,8,1.27,0.029,0.6,15,288,26,0,0,2.5,15,288,0,26,0.272,68.33,87.79,0.89,0.22,893,1.1,198,3.2,0.0000,0.0000 +2012,11,7,14,30,11,1.29,0.03,0.6,43,712,203,0,0,1.8,43,712,0,203,0.272,53.24,77.02,0.9,0.22,893,1,200,3.9000000000000004,9.9288,7.6050 +2012,11,7,15,30,14.8,1.31,0.029,0.6,56,863,390,0,0,1.5,56,863,0,390,0.272,40.44,67.24,0.9,0.22,892,1,198,4.3,20.6404,16.0371 +2012,11,7,16,30,19.1,1.33,0.028,0.6,63,933,541,0,0,1.2000000000000002,63,933,0,541,0.273,30.11,59.2,0.89,0.22,892,1,200,5.2,30.0090,23.4516 +2012,11,7,17,30,22.5,1.34,0.027,0.6,67,972,642,0,0,0.8,67,972,0,642,0.273,23.81,53.75,0.9,0.22,890,0.9,207,5.7,36.3534,28.4765 +2012,11,7,18,30,24.5,1.36,0.03,0.6,70,979,676,0,0,0.1,70,979,0,676,0.274,20.080000000000002,51.75,0.9,0.22,889,0.9,211,5.7,38.6645,30.3070 +2012,11,7,19,30,25.5,1.36,0.03,0.6,69,970,644,0,0,-0.5,69,970,0,644,0.274,18.03,53.59,0.9,0.22,888,0.9,212,5.6000000000000005,36.5478,28.6303 +2012,11,7,20,30,25.8,1.36,0.029,0.6,64,940,549,0,0,-1,64,940,0,549,0.275,17.12,58.9,0.89,0.22,887,0.9,211,5.4,30.2778,23.6650 +2012,11,7,21,30,25.3,1.34,0.025,0.6,54,879,400,0,0,-1.4000000000000001,54,879,0,400,0.275,17.150000000000002,66.85,0.89,0.22,887,0.9,206,4.9,20.9123,16.2541 +2012,11,7,22,30,22.6,1.35,0.025,0.6,42,744,215,0,0,-1.3,42,744,0,215,0.276,20.27,76.58,0.89,0.22,887,0.8,198,3.6,10.2493,7.8565 +2012,11,7,23,30,18.7,1.35,0.025,0.6,16,347,33,0,0,0.2,16,347,0,33,0.276,28.87,87.34,0.89,0.22,887,0.8,188,2.9000000000000004,0.0000,0.0000 +2012,11,8,0,30,16.900000000000002,1.35,0.024,0.6,0,0,0,0,0,0,0,0,0,0,0.277,31.84,99.2,0.89,0.22,887,0.8,185,3.5,0.0000,0.0000 +2012,11,8,1,30,16.3,1.35,0.024,0.6,0,0,0,0,0,-0.2,0,0,0,0,0.278,32.480000000000004,111.27,0.89,0.22,887,0.7000000000000001,187,4.3,0.0000,0.0000 +2012,11,8,2,30,15.4,1.36,0.024,0.6,0,0,0,0,0,-0.2,0,0,0,0,0.278,34.480000000000004,123.52,0.89,0.22,887,0.7000000000000001,192,4.7,0.0000,0.0000 +2012,11,8,3,30,14.3,1.37,0.026000000000000002,0.6,0,0,0,0,0,0,0,0,0,0,0.279,37.44,135.66,0.89,0.22,887,0.7000000000000001,199,4.800000000000001,0.0000,0.0000 +2012,11,8,4,30,13.100000000000001,1.3900000000000001,0.027,0.6,0,0,0,0,0,0,0,0,0,0,0.279,40.68,147.21,0.89,0.22,887,0.7000000000000001,205,4.7,0.0000,0.0000 +2012,11,8,5,30,11.9,1.4000000000000001,0.028,0.6,0,0,0,0,0,-0.1,0,0,0,0,0.279,43.660000000000004,156.95000000000002,0.89,0.22,887,0.7000000000000001,211,4.5,0.0000,0.0000 +2012,11,8,6,30,10.9,1.41,0.028,0.6,0,0,0,0,0,-0.5,0,0,0,0,0.279,45.29,161.49,0.89,0.22,886,0.7000000000000001,217,4.3,0.0000,0.0000 +2012,11,8,7,30,10,1.41,0.028,0.6,0,0,0,0,0,-1.1,0,0,0,0,0.279,45.92,157.37,0.88,0.22,886,0.7000000000000001,225,3.9000000000000004,0.0000,0.0000 +2012,11,8,8,30,9.3,1.41,0.027,0.6,0,0,0,0,0,-2,0,0,0,0,0.279,45.17,147.8,0.88,0.22,886,0.7000000000000001,235,3.6,0.0000,0.0000 +2012,11,8,9,30,9,1.41,0.027,0.6,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.279,43.18,136.3,0.88,0.22,886,0.6000000000000001,244,3.5,0.0000,0.0000 +2012,11,8,10,30,8.9,1.42,0.027,0.6,0,0,0,0,0,-3.6,0,0,0,0,0.28,41.06,124.19,0.88,0.22,885,0.6000000000000001,251,3.6,0.0000,0.0000 +2012,11,8,11,30,8.700000000000001,1.45,0.027,0.6,0,0,0,0,0,-4.2,0,0,0,0,0.28,39.79,111.95,0.88,0.22,886,0.6000000000000001,255,3.6,0.0000,0.0000 +2012,11,8,12,30,8.4,1.48,0.025,0.6,0,0,0,0,0,-4.7,0,0,0,0,0.28,39.19,99.88,0.88,0.22,886,0.6000000000000001,257,3.7,0.0000,0.0000 +2012,11,8,13,30,9.200000000000001,1.49,0.025,0.6,14,320,26,0,0,-5.1000000000000005,14,320,0,26,0.28,36.06,87.97,0.89,0.22,886,0.6000000000000001,257,4.2,0.0000,0.0000 +2012,11,8,14,30,11.8,1.5,0.026000000000000002,0.6,41,744,206,0,0,-5.4,41,744,0,206,0.281,29.62,77.23,0.89,0.22,886,0.6000000000000001,257,4.5,9.7702,7.4805 +2012,11,8,15,30,15.600000000000001,1.52,0.025,0.6,54,892,396,0,3,-5.2,232,130,0,281,0.28200000000000003,23.44,67.47,0.89,0.22,886,0.6000000000000001,255,4.1000000000000005,20.4431,15.8800 +2012,11,8,16,30,20.5,1.52,0.025,0.6,61,959,549,0,3,-4.5,282,298,0,433,0.28200000000000003,18.23,59.46,0.89,0.22,886,0.6000000000000001,256,3.9000000000000004,29.9636,23.4128 +2012,11,8,17,30,24.8,1.52,0.026000000000000002,0.6,66,984,644,0,8,-4.7,176,633,0,548,0.28200000000000003,13.83,54.03,0.9,0.22,885,0.7000000000000001,263,4.3,36.5353,28.6160 +2012,11,8,18,30,26.900000000000002,1.3900000000000001,0.046,0.6,79,970,676,0,8,-6.4,193,666,0,602,0.281,10.76,52.04,0.91,0.22,885,0.7000000000000001,265,4.7,38.7923,30.4044 +2012,11,8,19,30,27.3,1.3900000000000001,0.051000000000000004,0.6,80,950,640,0,8,-6.6000000000000005,252,467,0,527,0.281,10.33,53.86,0.92,0.22,884,0.8,263,4.800000000000001,36.6746,28.7268 +2012,11,8,20,30,26.8,1.3900000000000001,0.056,0.6,77,909,543,0,6,-6.4,201,15,0,208,0.28,10.82,59.15,0.92,0.22,884,0.8,259,4.4,30.4579,23.8027 +2012,11,8,21,30,25,1.4000000000000001,0.059000000000000004,0.6,68,827,391,0,8,-5.4,156,491,0,348,0.28,12.94,67.06,0.92,0.22,883,0.9,252,3.2,21.0334,16.3448 +2012,11,8,22,30,21.900000000000002,1.43,0.061,0.6,52,667,204,0,1,-2,52,667,0,204,0.28,20.17,76.76,0.92,0.22,883,0.9,243,2.2,10.3797,7.9537 +2012,11,8,23,30,18.8,1.46,0.059000000000000004,0.6,17,246,28,7,8,-0.7000000000000001,22,5,7,22,0.28,26.78,87.49,0.92,0.22,883,1,235,2.1,0.0000,0.0000 +2012,11,9,0,30,17,1.47,0.056,0.6,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.279,28.86,99.35000000000001,0.92,0.22,884,1.1,229,2.1,0.0000,0.0000 +2012,11,9,1,30,16.2,1.46,0.049,0.6,0,0,0,0,7,-1.3,0,0,0,0,0.277,30.16,111.41,0.92,0.22,884,1.1,221,2.2,0.0000,0.0000 +2012,11,9,2,30,15.9,1.46,0.045,0.6,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.277,30.53,123.65,0.92,0.22,884,1.2000000000000002,214,2.7,0.0000,0.0000 +2012,11,9,3,30,16,1.46,0.043000000000000003,0.6,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.277,30.38,135.8,0.92,0.22,884,1.3,208,3.5,0.0000,0.0000 +2012,11,9,4,30,15.8,1.45,0.043000000000000003,0.6,0,0,0,0,0,-0.8,0,0,0,0,0.277,32.11,147.38,0.93,0.22,883,1.4000000000000001,205,3.8000000000000003,0.0000,0.0000 +2012,11,9,5,30,15.100000000000001,1.43,0.043000000000000003,0.6,0,0,0,0,7,0.1,0,0,0,0,0.276,35.94,157.18,0.92,0.22,883,1.4000000000000001,205,3.8000000000000003,0.0000,0.0000 +2012,11,9,6,30,14.200000000000001,1.41,0.044,0.6,0,0,0,0,7,0.8,0,0,0,0,0.277,39.99,161.77,0.92,0.22,883,1.5,210,4,0.0000,0.0000 +2012,11,9,7,30,13,1.41,0.044,0.6,0,0,0,0,8,1.1,0,0,0,0,0.277,44.29,157.62,0.92,0.22,883,1.5,215,4.1000000000000005,0.0000,0.0000 +2012,11,9,8,30,12,1.43,0.044,0.6,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.278,47.63,148,0.92,0.22,883,1.4000000000000001,220,4.1000000000000005,0.0000,0.0000 +2012,11,9,9,30,11.200000000000001,1.43,0.047,0.6,0,0,0,0,0,1.3,0,0,0,0,0.278,50.39,136.48,0.92,0.22,883,1.4000000000000001,223,4.1000000000000005,0.0000,0.0000 +2012,11,9,10,30,10.600000000000001,1.43,0.05,0.6,0,0,0,0,0,1.3,0,0,0,0,0.278,52.53,124.35000000000001,0.92,0.22,883,1.3,226,4,0.0000,0.0000 +2012,11,9,11,30,10.100000000000001,1.44,0.047,0.6,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.277,53.89,112.12,0.92,0.22,883,1.2000000000000002,229,4,0.0000,0.0000 +2012,11,9,12,30,9.5,1.45,0.039,0.6,0,0,0,0,0,1,0,0,0,0,0.276,55.29,100.06,0.91,0.22,884,1,233,4.1000000000000005,0.0000,0.0000 +2012,11,9,13,30,10,1.47,0.032,0.6,14,269,22,0,0,0.6000000000000001,14,269,0,22,0.274,52.21,88.15,0.9,0.22,884,0.9,239,4.4,0.0000,0.0000 +2012,11,9,14,30,12.4,1.5,0.03,0.6,42,708,196,0,0,0.2,42,708,0,196,0.272,43,77.44,0.89,0.22,884,1,243,4.6000000000000005,9.9010,7.5778 +2012,11,9,15,30,16.6,1.49,0.028,0.6,55,854,379,0,0,-0.6000000000000001,55,854,0,379,0.27,30.92,67.71000000000001,0.9,0.22,884,1.2000000000000002,246,4.5,14.7018,11.4176 +2012,11,9,16,30,21.1,1.45,0.027,0.6,62,922,527,0,0,-1.3,62,922,0,527,0.269,22.29,59.72,0.9,0.22,884,1.3,253,5.5,23.9466,18.7086 +2012,11,9,17,30,23.6,1.43,0.025,0.6,65,958,623,0,0,0.9,65,958,0,623,0.268,22.47,54.31,0.9,0.22,884,1.3,255,6.6000000000000005,31.1475,24.3936 +2012,11,9,18,30,24.5,1.42,0.028,0.6,68,964,657,0,0,1.1,68,964,0,657,0.267,21.580000000000002,52.32,0.9,0.22,883,1.3,249,6.6000000000000005,34.5057,27.0422 +2012,11,9,19,30,25,1.41,0.025,0.6,65,963,629,0,0,0.30000000000000004,65,963,0,629,0.266,19.69,54.13,0.9,0.22,882,1.2000000000000002,246,6.7,29.9764,23.4778 +2012,11,9,20,30,25,1.41,0.025,0.6,61,931,535,0,0,-0.2,61,931,0,535,0.265,19.03,59.39,0.9,0.22,882,1.2000000000000002,243,6.6000000000000005,11.5235,9.0044 +2012,11,9,21,30,24.5,1.42,0.024,0.6,53,866,388,0,0,-0.30000000000000004,53,866,0,388,0.265,19.54,67.27,0.9,0.22,881,1.2000000000000002,240,6.2,18.2682,14.1931 +2012,11,9,22,30,22.8,1.47,0.025,0.6,41,714,203,0,0,0.2,41,714,0,203,0.264,22.37,76.94,0.91,0.22,881,1.4000000000000001,235,4.9,9.8359,7.5345 +2012,11,9,23,30,19.900000000000002,1.53,0.028,0.6,15,300,28,0,0,1.5,15,300,0,28,0.263,29.26,87.64,0.91,0.22,881,1.5,228,3.5,0.0000,0.0000 +2012,11,10,0,30,18.2,1.56,0.029,0.6,0,0,0,0,0,2.4000000000000004,0,0,0,0,0.263,34.910000000000004,99.49000000000001,0.91,0.22,882,1.6,224,3.6,0.0000,0.0000 +2012,11,10,1,30,17.8,1.55,0.027,0.6,0,0,0,0,3,3,0,0,0,0,0.263,37.15,111.54,0.91,0.22,882,1.6,227,4.3,0.0000,0.0000 +2012,11,10,2,30,16.900000000000002,1.51,0.025,0.6,0,0,0,0,0,3.4000000000000004,0,0,0,0,0.263,40.660000000000004,123.78,0.9,0.22,883,1.5,232,4.4,0.0000,0.0000 +2012,11,10,3,30,15.5,1.47,0.023,0.6,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.263,45.660000000000004,135.94,0.9,0.22,883,1.5,233,3.7,0.0000,0.0000 +2012,11,10,4,30,14.3,1.4000000000000001,0.025,0.6,0,0,0,0,0,4.1000000000000005,0,0,0,0,0.263,50.25,147.54,0.91,0.22,883,1.5,226,3.1,0.0000,0.0000 +2012,11,10,5,30,13.700000000000001,1.35,0.032,0.6,0,0,0,0,0,4.2,0,0,0,0,0.264,52.550000000000004,157.4,0.93,0.22,883,1.6,213,3.3000000000000003,0.0000,0.0000 +2012,11,10,6,30,13.4,1.33,0.042,0.6,0,0,0,0,1,4.2,0,0,0,0,0.264,53.74,162.05,0.9400000000000001,0.22,883,1.6,203,3.9000000000000004,0.0000,0.0000 +2012,11,10,7,30,13.100000000000001,1.32,0.057,0.6,0,0,0,0,8,4.6000000000000005,0,0,0,0,0.264,56.28,157.87,0.9400000000000001,0.22,882,1.7000000000000002,200,4.3,0.0000,0.0000 +2012,11,10,8,30,12.8,1.32,0.07100000000000001,0.6,0,0,0,0,4,5.9,0,0,0,0,0.264,62.940000000000005,148.20000000000002,0.9400000000000001,0.22,882,1.8,199,4.6000000000000005,0.0000,0.0000 +2012,11,10,9,30,12.5,1.31,0.07100000000000001,0.6,0,0,0,0,8,7.7,0,0,0,0,0.265,72.44,136.65,0.9400000000000001,0.22,881,1.8,200,4.7,0.0000,0.0000 +2012,11,10,10,30,12,1.29,0.062,0.6,0,0,0,0,1,8.9,0,0,0,0,0.265,81.52,124.52,0.9400000000000001,0.22,881,1.8,201,4.6000000000000005,0.0000,0.0000 +2012,11,10,11,30,11.600000000000001,1.27,0.053,0.6,0,0,0,0,0,9.5,0,0,0,0,0.266,86.92,112.29,0.9400000000000001,0.22,881,1.8,205,4.6000000000000005,0.0000,0.0000 +2012,11,10,12,30,11.3,1.26,0.048,0.6,0,0,0,0,0,9.700000000000001,0,0,0,0,0.267,89.73,100.24000000000001,0.9400000000000001,0.22,881,1.8,209,4.7,0.0000,0.0000 +2012,11,10,13,30,11.8,1.26,0.044,0.6,14,196,19,0,0,9.600000000000001,14,196,0,19,0.267,86.11,88.33,0.9400000000000001,0.22,881,1.7000000000000002,206,4.6000000000000005,0.0000,0.0000 +2012,11,10,14,30,13.9,1.27,0.042,0.6,45,652,185,0,0,9.4,45,652,0,185,0.267,74.35000000000001,77.65,0.93,0.22,880,1.7000000000000002,201,4.9,9.4083,7.1979 +2012,11,10,15,30,17.900000000000002,1.28,0.038,0.6,59,825,369,0,0,9,59,825,0,369,0.268,56.15,67.94,0.93,0.22,880,1.5,201,5.9,19.7900,15.3653 +2012,11,10,16,30,21.8,1.27,0.033,0.6,65,906,519,0,8,7.800000000000001,207,405,0,410,0.268,40.62,59.97,0.92,0.22,879,1.5,210,7.7,29.1016,22.7328 +2012,11,10,17,30,23.8,1.25,0.029,0.6,68,948,617,7,2,6.800000000000001,241,597,7,587,0.268,33.58,54.59,0.92,0.22,878,1.4000000000000001,214,8.9,35.3663,27.6947 +2012,11,10,18,30,24.8,1.22,0.026000000000000002,0.6,67,959,649,0,8,5.6000000000000005,174,664,0,578,0.268,29.150000000000002,52.6,0.92,0.22,877,1.5,215,9.5,37.6155,29.4766 +2012,11,10,19,30,25.200000000000003,1.18,0.027,0.6,67,945,617,0,7,4.7,236,348,0,439,0.268,26.71,54.39,0.93,0.22,876,1.6,215,9.8,35.7356,27.9858 +2012,11,10,20,30,25.200000000000003,1.1300000000000001,0.03,0.6,64,909,524,0,8,4.1000000000000005,179,543,0,454,0.269,25.580000000000002,59.620000000000005,0.93,0.22,876,1.6,217,9.8,29.5994,23.1258 +2012,11,10,21,30,24.700000000000003,1.08,0.029,0.6,56,841,378,0,7,3.3000000000000003,147,452,0,320,0.27,24.990000000000002,67.47,0.93,0.22,876,1.6,221,9.200000000000001,20.3333,15.7942 +2012,11,10,22,30,23.3,1.04,0.032,0.6,44,688,197,0,4,2.5,104,4,0,105,0.27,25.63,77.12,0.93,0.22,876,1.5,227,8.1,9.7755,7.4857 +2012,11,10,23,30,20.900000000000002,1.02,0.035,0.6,16,257,26,7,4,2.1,12,0,7,12,0.27,28.79,87.79,0.93,0.22,877,1.3,235,6.800000000000001,0.0000,0.0000 +2012,11,11,0,30,18.400000000000002,0.98,0.035,0.6,0,0,0,0,4,1.8,0,0,0,0,0.271,32.86,99.62,0.92,0.22,878,1.1,241,5.9,0.0000,0.0000 +2012,11,11,1,30,16.1,0.93,0.035,0.6,0,0,0,0,8,1.2000000000000002,0,0,0,0,0.271,36.480000000000004,111.66,0.92,0.22,878,1,243,4.7,0.0000,0.0000 +2012,11,11,2,30,13.9,0.86,0.036000000000000004,0.6,0,0,0,0,8,0.5,0,0,0,0,0.271,39.97,123.9,0.92,0.22,879,1,250,3.5,0.0000,0.0000 +2012,11,11,3,30,11.8,0.84,0.037,0.6,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.273,42.22,136.06,0.92,0.22,880,0.9,266,3,0.0000,0.0000 +2012,11,11,4,30,10,0.86,0.037,0.6,0,0,0,0,8,-2.7,0,0,0,0,0.275,40.83,147.70000000000002,0.93,0.22,880,0.8,284,2.7,0.0000,0.0000 +2012,11,11,5,30,8.3,0.93,0.034,0.6,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.276,38.26,157.61,0.92,0.22,881,0.8,295,2.2,0.0000,0.0000 +2012,11,11,6,30,6.9,1,0.032,0.6,0,0,0,0,8,-6.9,0,0,0,0,0.277,36.85,162.33,0.92,0.22,882,0.8,297,2,0.0000,0.0000 +2012,11,11,7,30,5.800000000000001,1.04,0.03,0.6,0,0,0,0,8,-8.200000000000001,0,0,0,0,0.277,35.730000000000004,158.11,0.92,0.22,882,0.7000000000000001,296,1.9000000000000001,0.0000,0.0000 +2012,11,11,8,30,4.800000000000001,1.06,0.029,0.6,0,0,0,0,8,-9.4,0,0,0,0,0.278,34.85,148.39000000000001,0.92,0.22,882,0.6000000000000001,294,2,0.0000,0.0000 +2012,11,11,9,30,4,1.07,0.028,0.6,0,0,0,0,7,-10.4,0,0,0,0,0.28,34.160000000000004,136.82,0.91,0.22,883,0.5,289,2.1,0.0000,0.0000 +2012,11,11,10,30,3.2,1.08,0.027,0.6,0,0,0,0,1,-11.100000000000001,0,0,0,0,0.28200000000000003,34.26,124.68,0.91,0.22,883,0.5,283,2.3000000000000003,0.0000,0.0000 +2012,11,11,11,30,2.5,1.08,0.026000000000000002,0.6,0,0,0,0,0,-11.4,0,0,0,0,0.28400000000000003,35.18,112.45,0.9,0.22,883,0.4,277,2.3000000000000003,0.0000,0.0000 +2012,11,11,12,30,1.8,1.09,0.026000000000000002,0.6,0,0,0,0,1,-11.3,0,0,0,0,0.28700000000000003,37.25,100.41,0.9,0.22,884,0.4,272,2.4000000000000004,0.0000,0.0000 +2012,11,11,13,30,2.2,1.11,0.027,0.6,13,274,20,0,0,-11.100000000000001,13,274,0,20,0.289,36.800000000000004,88.49,0.9,0.22,885,0.4,273,3.1,0.0000,0.0000 +2012,11,11,14,30,4.2,1.16,0.029,0.6,42,739,198,0,1,-11,42,739,0,198,0.291,32.03,77.86,0.9,0.22,885,0.4,283,4,8.8695,6.7831 +2012,11,11,15,30,6.2,1.22,0.031,0.6,57,892,388,0,0,-10.9,57,892,0,388,0.292,28.28,68.17,0.9,0.22,886,0.4,298,4.5,19.2309,14.9277 +2012,11,11,16,30,7.7,1.26,0.033,0.6,66,960,543,0,2,-10.700000000000001,269,347,0,441,0.293,25.95,60.230000000000004,0.91,0.22,886,0.4,306,4.5,22.6077,17.6577 +2012,11,11,17,30,8.9,1.28,0.032,0.6,70,995,643,0,1,-10.700000000000001,70,995,0,643,0.293,23.87,54.86,0.91,0.22,887,0.4,310,4.4,33.2806,26.0586 +2012,11,11,18,30,9.700000000000001,1.28,0.033,0.6,72,1004,678,0,0,-11.200000000000001,72,1004,0,678,0.294,21.75,52.870000000000005,0.91,0.22,887,0.4,312,4.3,33.0544,25.9000 +2012,11,11,19,30,10.200000000000001,1.29,0.033,0.6,71,995,647,0,0,-12,71,995,0,647,0.293,19.740000000000002,54.65,0.91,0.22,887,0.4,312,4.2,24.9121,19.5076 +2012,11,11,20,30,10.3,1.29,0.037,0.6,69,957,550,0,0,-12.9,69,957,0,550,0.292,18.150000000000002,59.85,0.92,0.22,887,0.4,313,4,25.0849,19.5963 +2012,11,11,21,30,9.700000000000001,1.28,0.046,0.6,64,873,396,0,0,-13.8,64,873,0,396,0.293,17.64,67.67,0.93,0.22,888,0.4,319,3.6,16.7423,13.0023 +2012,11,11,22,30,8.200000000000001,1.3,0.049,0.6,49,711,206,0,0,-13.8,49,711,0,206,0.294,19.51,77.28,0.93,0.22,889,0.4,163,3.1,5.0502,3.8660 +2012,11,11,23,30,5.9,1.32,0.05,0.6,16,252,25,0,0,-11.8,16,252,0,25,0.295,26.7,87.91,0.93,0.22,890,0.5,18,3,0.0000,0.0000 +2012,11,12,0,30,3.8000000000000003,1.34,0.051000000000000004,0.6,0,0,0,0,0,-9.5,0,0,0,0,0.294,37.13,99.75,0.93,0.22,892,0.5,42,3.4000000000000004,0.0000,0.0000 +2012,11,12,1,30,2.3000000000000003,1.36,0.049,0.6,0,0,0,0,7,-8.6,0,0,0,0,0.291,44.5,111.78,0.93,0.22,893,0.5,52,3.2,0.0000,0.0000 +2012,11,12,2,30,1,1.37,0.046,0.6,0,0,0,0,0,-8.1,0,0,0,0,0.289,50.800000000000004,124.01,0.92,0.22,894,0.5,59,2.3000000000000003,0.0000,0.0000 +2012,11,12,3,30,0.2,1.35,0.048,0.6,0,0,0,0,0,-7.7,0,0,0,0,0.28800000000000003,55.230000000000004,136.19,0.92,0.22,895,0.5,66,1.4000000000000001,0.0000,0.0000 +2012,11,12,4,30,-0.4,1.34,0.047,0.6,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.28800000000000003,58.2,147.85,0.92,0.22,895,0.5,81,0.9,0.0000,0.0000 +2012,11,12,5,30,-1,1.36,0.041,0.6,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.289,60.71,157.82,0.91,0.22,896,0.4,112,0.8,0.0000,0.0000 +2012,11,12,6,30,-1.6,1.3800000000000001,0.037,0.6,0,0,0,0,0,-7.7,0,0,0,0,0.29,63.160000000000004,162.6,0.91,0.22,896,0.4,152,0.8,0.0000,0.0000 +2012,11,12,7,30,-2,1.4000000000000001,0.035,0.6,0,0,0,0,0,-7.7,0,0,0,0,0.29,64.92,158.36,0.9,0.22,897,0.4,186,1.1,0.0000,0.0000 +2012,11,12,8,30,-2.3000000000000003,1.41,0.033,0.6,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.29,66.05,148.59,0.9,0.22,897,0.30000000000000004,213,1.4000000000000001,0.0000,0.0000 +2012,11,12,9,30,-2.7,1.42,0.032,0.6,0,0,0,0,0,-8,0,0,0,0,0.289,67.15,137,0.9,0.22,898,0.30000000000000004,237,1.5,0.0000,0.0000 +2012,11,12,10,30,-3.3000000000000003,1.41,0.03,0.6,0,0,0,0,0,-8.4,0,0,0,0,0.28800000000000003,67.61,124.85000000000001,0.89,0.22,898,0.30000000000000004,258,1.5,0.0000,0.0000 +2012,11,12,11,30,-3.8000000000000003,1.3900000000000001,0.028,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.28800000000000003,65.18,112.62,0.89,0.22,898,0.2,276,1.5,0.0000,0.0000 +2012,11,12,12,30,-4.2,1.37,0.027,0.6,0,0,0,0,0,-10.9,0,0,0,0,0.28600000000000003,59.72,100.59,0.89,0.22,898,0.2,291,1.7000000000000002,0.0000,0.0000 +2012,11,12,13,30,-3.1,1.36,0.026000000000000002,0.6,12,298,19,0,0,-12.600000000000001,12,298,0,19,0.28400000000000003,47.77,88.65,0.89,0.22,899,0.2,303,2.5,0.0000,0.0000 +2012,11,12,14,30,-0.30000000000000004,1.37,0.026000000000000002,0.6,41,772,201,0,1,-14.100000000000001,41,772,0,201,0.28200000000000003,34.5,78.06,0.89,0.22,900,0.2,312,2.9000000000000004,9.4822,7.2489 +2012,11,12,15,30,3.5,1.37,0.026000000000000002,0.6,55,925,395,0,0,-14.8,55,925,0,395,0.279,24.77,68.4,0.88,0.22,900,0.2,330,2.5,20.1821,15.6622 +2012,11,12,16,30,6.9,1.3800000000000001,0.025,0.6,62,996,552,0,0,-17.2,62,996,0,552,0.278,16.07,60.480000000000004,0.88,0.22,900,0.2,346,1.8,24.2799,18.9610 +2012,11,12,17,30,8.700000000000001,1.3800000000000001,0.025,0.6,66,1028,654,0,0,-18.3,66,1028,0,654,0.277,12.91,55.120000000000005,0.88,0.22,900,0.2,333,0.8,36.4106,28.5065 +2012,11,12,18,30,10,1.36,0.025,0.6,68,1038,690,0,0,-18.8,68,1038,0,690,0.277,11.34,53.14,0.89,0.22,899,0.2,262,0.4,38.7295,30.3440 +2012,11,12,19,30,10.8,1.35,0.025,0.6,66,1029,658,0,0,-19.1,66,1029,0,658,0.277,10.48,54.9,0.89,0.22,898,0.2,195,0.7000000000000001,36.6724,28.7137 +2012,11,12,20,30,11.200000000000001,1.34,0.025,0.6,62,999,561,0,0,-19.3,62,999,0,561,0.277,10.03,60.07,0.89,0.22,897,0.2,185,1.2000000000000002,30.3487,23.7054 +2012,11,12,21,30,10.9,1.34,0.025,0.6,55,933,407,0,0,-19.3,55,933,0,407,0.278,10.22,67.86,0.89,0.22,897,0.2,185,1.6,20.6845,16.0605 +2012,11,12,22,30,8.8,1.34,0.025,0.6,42,789,213,0,0,-19,42,789,0,213,0.279,12.16,77.44,0.89,0.22,897,0.2,177,1.4000000000000001,9.8979,7.5747 +2012,11,12,23,30,5.4,1.34,0.025,0.6,15,354,27,0,0,-11.700000000000001,15,354,0,27,0.279,28.02,88.03,0.89,0.22,898,0.2,166,1.2000000000000002,0.0000,0.0000 +2012,11,13,0,30,3.1,1.33,0.025,0.6,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.28,30.46,99.87,0.89,0.22,898,0.2,161,1.4000000000000001,0.0000,0.0000 +2012,11,13,1,30,1.9000000000000001,1.32,0.025,0.6,0,0,0,0,0,-13,0,0,0,0,0.28,32.25,111.89,0.89,0.22,898,0.2,162,1.5,0.0000,0.0000 +2012,11,13,2,30,1.2000000000000002,1.32,0.025,0.6,0,0,0,0,0,-13.3,0,0,0,0,0.28,32.980000000000004,124.12,0.89,0.22,898,0.2,168,1.7000000000000002,0.0000,0.0000 +2012,11,13,3,30,0.8,1.31,0.025,0.6,0,0,0,0,0,-13.4,0,0,0,0,0.28,33.730000000000004,136.3,0.89,0.22,899,0.30000000000000004,178,2,0.0000,0.0000 +2012,11,13,4,30,0.4,1.29,0.026000000000000002,0.6,0,0,0,0,0,-13.200000000000001,0,0,0,0,0.279,35.25,147.99,0.89,0.22,899,0.30000000000000004,187,2.3000000000000003,0.0000,0.0000 +2012,11,13,5,30,-0.1,1.27,0.026000000000000002,0.6,0,0,0,0,0,-12.8,0,0,0,0,0.277,37.81,158.01,0.9,0.22,899,0.30000000000000004,194,2.5,0.0000,0.0000 +2012,11,13,6,30,-0.7000000000000001,1.25,0.026000000000000002,0.6,0,0,0,0,0,-12.3,0,0,0,0,0.276,41.24,162.86,0.9,0.22,898,0.30000000000000004,199,2.5,0.0000,0.0000 +2012,11,13,7,30,-1.1,1.23,0.026000000000000002,0.6,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.275,44.36,158.6,0.9,0.22,898,0.30000000000000004,202,2.8000000000000003,0.0000,0.0000 +2012,11,13,8,30,-1.3,1.22,0.027,0.6,0,0,0,0,0,-11.200000000000001,0,0,0,0,0.275,46.980000000000004,148.78,0.9,0.22,898,0.4,205,3.3000000000000003,0.0000,0.0000 +2012,11,13,9,30,-1.5,1.2,0.028,0.6,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.275,49.870000000000005,137.17000000000002,0.91,0.22,898,0.4,208,3.4000000000000004,0.0000,0.0000 +2012,11,13,10,30,-1.9000000000000001,1.19,0.03,0.6,0,0,0,0,0,-10.200000000000001,0,0,0,0,0.276,53.07,125.01,0.91,0.22,898,0.4,213,3.2,0.0000,0.0000 +2012,11,13,11,30,-2.4000000000000004,1.19,0.031,0.6,0,0,0,0,0,-10,0,0,0,0,0.276,55.94,112.79,0.91,0.22,898,0.5,218,2.9000000000000004,0.0000,0.0000 +2012,11,13,12,30,-2.6,1.18,0.032,0.6,0,0,0,0,0,-9.9,0,0,0,0,0.276,57.230000000000004,100.76,0.91,0.22,898,0.5,221,2.9000000000000004,0.0000,0.0000 +2012,11,13,13,30,-1.7000000000000002,1.17,0.032,0.6,12,220,16,0,0,-9.8,12,220,0,16,0.276,53.910000000000004,88.83,0.91,0.22,898,0.5,223,3.5,0.0000,0.0000 +2012,11,13,14,30,0.9,1.17,0.032,0.6,43,722,190,0,1,-9.600000000000001,43,722,0,190,0.276,45.22,78.27,0.91,0.22,898,0.4,220,4.1000000000000005,9.6164,7.3490 +2012,11,13,15,30,5,1.16,0.033,0.6,58,882,380,0,0,-9.4,58,882,0,380,0.276,34.4,68.62,0.91,0.22,898,0.4,214,5,20.5062,15.9097 +2012,11,13,16,30,8.9,1.1500000000000001,0.034,0.6,67,945,529,0,7,-10.100000000000001,201,480,0,435,0.277,24.95,60.730000000000004,0.91,0.22,897,0.5,209,6.1000000000000005,30.3458,23.6947 +2012,11,13,17,30,11.200000000000001,1.1500000000000001,0.036000000000000004,0.6,73,977,628,0,7,-10.700000000000001,239,468,0,505,0.278,20.43,55.39,0.92,0.22,896,0.5,207,6.300000000000001,36.9890,28.9563 +2012,11,13,18,30,12.8,1.1400000000000001,0.036000000000000004,0.6,74,988,664,0,7,-11,221,558,0,554,0.28,17.89,53.410000000000004,0.92,0.22,894,0.5,208,6.300000000000001,39.3702,30.8431 +2012,11,13,19,30,13.9,1.16,0.035,0.6,72,980,632,0,0,-11.100000000000001,72,980,0,632,0.28200000000000003,16.52,55.15,0.91,0.22,893,0.5,210,6.1000000000000005,37.2532,29.1656 +2012,11,13,20,30,14.4,1.17,0.035,0.6,68,957,542,0,0,-11.200000000000001,68,957,0,542,0.28200000000000003,15.950000000000001,60.29,0.91,0.22,893,0.4,212,5.7,30.9159,24.1454 +2012,11,13,21,30,14.100000000000001,1.1500000000000001,0.034,0.6,59,888,391,0,0,-11.200000000000001,59,888,0,391,0.28200000000000003,16.27,68.04,0.91,0.22,892,0.4,213,5,21.2255,16.4773 +2012,11,13,22,30,11.600000000000001,1.16,0.035,0.6,45,732,202,0,0,-10.9,45,732,0,202,0.281,19.57,77.60000000000001,0.9,0.22,892,0.4,210,3.3000000000000003,10.2243,7.8222 +2012,11,13,23,30,7.7,1.17,0.034,0.6,15,279,23,0,0,-8.5,15,279,0,23,0.278,30.830000000000002,88.16,0.9,0.22,893,0.4,202,2,0.0000,0.0000 +2012,11,14,0,30,5.6000000000000005,1.1500000000000001,0.033,0.6,0,0,0,0,0,-8.3,0,0,0,0,0.274,36.1,99.99000000000001,0.9,0.22,893,0.4,196,2.1,0.0000,0.0000 +2012,11,14,1,30,4.9,1.12,0.033,0.6,0,0,0,0,0,-8.200000000000001,0,0,0,0,0.272,38.09,112,0.9,0.22,894,0.4,195,2.3000000000000003,0.0000,0.0000 +2012,11,14,2,30,4,1.1,0.033,0.6,0,0,0,0,0,-8,0,0,0,0,0.27,41.11,124.23,0.9,0.22,895,0.5,198,2.3000000000000003,0.0000,0.0000 +2012,11,14,3,30,3.1,1.07,0.033,0.6,0,0,0,0,0,-7.9,0,0,0,0,0.269,44.300000000000004,136.41,0.9,0.22,895,0.5,203,2.2,0.0000,0.0000 +2012,11,14,4,30,2.2,1.04,0.033,0.6,0,0,0,0,0,-7.800000000000001,0,0,0,0,0.268,47.410000000000004,148.12,0.9,0.22,895,0.5,211,2.2,0.0000,0.0000 +2012,11,14,5,30,1.5,1.01,0.034,0.6,0,0,0,0,0,-7.9,0,0,0,0,0.268,49.63,158.20000000000002,0.9,0.22,896,0.5,220,2.2,0.0000,0.0000 +2012,11,14,6,30,1,0.99,0.035,0.6,0,0,0,0,0,-8.1,0,0,0,0,0.267,50.75,163.12,0.9,0.22,896,0.5,230,2.3000000000000003,0.0000,0.0000 +2012,11,14,7,30,0.5,0.99,0.035,0.6,0,0,0,0,0,-8.3,0,0,0,0,0.267,51.54,158.83,0.9,0.22,896,0.5,239,2.3000000000000003,0.0000,0.0000 +2012,11,14,8,30,-0.1,1,0.035,0.6,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.266,52.47,148.98,0.9,0.22,896,0.5,248,2.1,0.0000,0.0000 +2012,11,14,9,30,-0.6000000000000001,1.01,0.034,0.6,0,0,0,0,0,-9,0,0,0,0,0.265,53.02,137.34,0.9,0.22,896,0.5,259,1.8,0.0000,0.0000 +2012,11,14,10,30,-1,1.02,0.033,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.265,53.07,125.18,0.9,0.22,896,0.5,272,1.6,0.0000,0.0000 +2012,11,14,11,30,-1.3,1.02,0.032,0.6,0,0,0,0,0,-9.8,0,0,0,0,0.265,52.27,112.96000000000001,0.9,0.22,896,0.5,287,1.5,0.0000,0.0000 +2012,11,14,12,30,-1.6,1.02,0.031,0.6,0,0,0,0,0,-10.4,0,0,0,0,0.266,51.120000000000005,100.94,0.9,0.22,896,0.5,301,1.4000000000000001,0.0000,0.0000 +2012,11,14,13,30,-0.30000000000000004,1.01,0.031,0.6,0,0,0,0,0,-11,0,0,0,0,0.266,44.44,89,0.9,0.22,896,0.5,311,1.7000000000000002,0.0000,0.0000 +2012,11,14,14,30,2.9000000000000004,1.01,0.032,0.6,42,705,183,0,4,-10.9,111,148,0,141,0.266,35.51,78.47,0.9,0.22,897,0.5,314,2.2,9.0818,6.9379 +2012,11,14,15,30,6.4,1.01,0.032,0.6,57,871,372,0,0,-11.700000000000001,57,871,0,372,0.266,26.150000000000002,68.85000000000001,0.9,0.22,897,0.5,307,1.9000000000000001,19.6905,15.2731 +2012,11,14,16,30,10.4,1,0.033,0.6,66,944,525,0,0,-11.100000000000001,66,944,0,525,0.266,20.82,60.97,0.9,0.22,897,0.5,257,1.1,23.8778,18.6415 +2012,11,14,17,30,14,0.99,0.033,0.6,71,980,624,0,0,-11,71,980,0,624,0.265,16.6,55.65,0.9,0.22,896,0.5,205,1.7000000000000002,28.5257,22.3286 +2012,11,14,18,30,16.400000000000002,0.97,0.032,0.6,72,992,660,0,0,-11,72,992,0,660,0.265,14.23,53.660000000000004,0.9,0.22,895,0.5,201,2.9000000000000004,31.5738,24.7330 +2012,11,14,19,30,17.8,0.98,0.033,0.6,71,991,634,0,0,-10.600000000000001,71,991,0,634,0.265,13.48,55.39,0.9,0.22,894,0.4,205,3.6,35.7397,27.9780 +2012,11,14,20,30,18.3,1,0.033,0.6,67,958,539,0,0,-10.100000000000001,67,958,0,539,0.267,13.51,60.5,0.91,0.22,893,0.4,208,4,29.8299,23.2944 +2012,11,14,21,30,17.900000000000002,0.9500000000000001,0.031,0.6,58,890,388,0,0,-9.9,58,890,0,388,0.268,14.15,68.22,0.91,0.22,893,0.4,207,3.8000000000000003,20.3604,15.8027 +2012,11,14,22,30,14.600000000000001,0.97,0.03,0.6,44,738,200,0,0,-9,44,738,0,200,0.268,18.67,77.75,0.91,0.22,892,0.4,198,2.7,9.6873,7.4092 +2012,11,14,23,30,10.4,0.97,0.028,0.6,14,281,23,0,0,-6.1000000000000005,14,281,0,23,0.267,30.78,88.28,0.91,0.22,892,0.4,189,2.1,0.0000,0.0000 +2012,11,15,0,30,8.700000000000001,0.97,0.027,0.6,0,0,0,0,0,-6.9,0,0,0,0,0.267,32.53,100.10000000000001,0.9,0.22,892,0.4,187,2.8000000000000003,0.0000,0.0000 +2012,11,15,1,30,8.3,0.96,0.026000000000000002,0.6,0,0,0,0,1,-7.1000000000000005,0,0,0,0,0.267,32.910000000000004,112.10000000000001,0.9,0.22,892,0.4,190,3.6,0.0000,0.0000 +2012,11,15,2,30,7.5,0.97,0.026000000000000002,0.6,0,0,0,0,0,-7,0,0,0,0,0.267,34.9,124.32000000000001,0.9,0.22,892,0.4,196,4.1000000000000005,0.0000,0.0000 +2012,11,15,3,30,6.4,1.01,0.026000000000000002,0.6,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.267,38.29,136.52,0.9,0.22,892,0.4,204,4.2,0.0000,0.0000 +2012,11,15,4,30,5.300000000000001,1.05,0.026000000000000002,0.6,0,0,0,0,0,-6.5,0,0,0,0,0.268,42.160000000000004,148.25,0.9,0.22,892,0.4,211,4.1000000000000005,0.0000,0.0000 +2012,11,15,5,30,4.3,1.08,0.027,0.6,0,0,0,0,7,-6.4,0,0,0,0,0.269,45.84,158.39000000000001,0.9,0.22,892,0.4,218,3.9000000000000004,0.0000,0.0000 +2012,11,15,6,30,3.5,1.11,0.029,0.6,0,0,0,0,7,-6.4,0,0,0,0,0.27,48.29,163.38,0.89,0.22,892,0.4,224,3.9000000000000004,0.0000,0.0000 +2012,11,15,7,30,2.8000000000000003,1.12,0.029,0.6,0,0,0,0,7,-6.7,0,0,0,0,0.269,49.49,159.06,0.89,0.22,891,0.4,231,3.9000000000000004,0.0000,0.0000 +2012,11,15,8,30,2.2,1.1300000000000001,0.028,0.6,0,0,0,0,7,-7.300000000000001,0,0,0,0,0.269,49.49,149.17000000000002,0.89,0.22,891,0.30000000000000004,238,3.7,0.0000,0.0000 +2012,11,15,9,30,1.6,1.1300000000000001,0.028,0.6,0,0,0,0,7,-8.1,0,0,0,0,0.27,48.620000000000005,137.51,0.89,0.22,891,0.30000000000000004,244,3.4000000000000004,0.0000,0.0000 +2012,11,15,10,30,1.2000000000000002,1.1300000000000001,0.029,0.6,0,0,0,0,7,-9,0,0,0,0,0.27,46.56,125.34,0.9,0.22,891,0.30000000000000004,251,3.2,0.0000,0.0000 +2012,11,15,11,30,0.8,1.12,0.03,0.6,0,0,0,0,7,-10,0,0,0,0,0.271,44.29,113.12,0.9,0.22,891,0.30000000000000004,259,2.9000000000000004,0.0000,0.0000 +2012,11,15,12,30,0.5,1.12,0.03,0.6,0,0,0,0,7,-10.9,0,0,0,0,0.272,42.12,101.11,0.89,0.22,892,0.30000000000000004,271,2.7,0.0000,0.0000 +2012,11,15,13,30,1.7000000000000002,1.1300000000000001,0.03,0.6,0,0,0,7,7,-11.600000000000001,0,0,7,0,0.272,36.660000000000004,89.17,0.89,0.22,892,0.4,288,3.1,0.0000,0.0000 +2012,11,15,14,30,4.4,1.1300000000000001,0.031,0.6,41,716,182,0,6,-11.600000000000001,36,1,0,36,0.272,30.14,78.68,0.89,0.22,893,0.4,309,3.8000000000000003,6.7344,5.1429 +2012,11,15,15,30,7.4,1.1400000000000001,0.031,0.6,56,882,372,0,6,-10.200000000000001,94,4,0,96,0.273,27.42,69.07000000000001,0.9,0.22,893,0.4,335,4.5,19.2378,14.9181 +2012,11,15,16,30,10.3,1.1400000000000001,0.03,0.6,64,958,525,0,7,-7.9,247,76,0,284,0.274,26.94,61.21,0.89,0.22,894,0.4,352,4.9,28.7758,22.4622 +2012,11,15,17,30,12.9,1.1500000000000001,0.029,0.6,68,985,620,0,7,-7.1000000000000005,213,545,0,519,0.275,24.13,55.9,0.89,0.22,894,0.5,357,5.1000000000000005,35.2042,27.5532 +2012,11,15,18,30,14.9,1.1500000000000001,0.027,0.6,68,998,656,0,0,-7,68,998,0,656,0.276,21.45,53.92,0.88,0.22,894,0.5,180,5.2,37.5744,29.4308 +2012,11,15,19,30,16.1,1.16,0.026000000000000002,0.6,66,983,621,0,0,-7,66,983,0,621,0.277,19.84,55.620000000000005,0.88,0.22,893,0.6000000000000001,5,5.300000000000001,35.8125,28.0323 +2012,11,15,20,30,16.2,1.17,0.026000000000000002,0.6,62,950,527,0,0,-7,62,950,0,527,0.276,19.73,60.7,0.88,0.22,893,0.6000000000000001,10,5.4,29.6276,23.1336 +2012,11,15,21,30,15.5,1.17,0.024,0.6,53,884,379,0,0,-6.9,53,884,0,379,0.275,20.8,68.39,0.88,0.22,894,0.6000000000000001,15,5.2,20.1736,15.6547 +2012,11,15,22,30,13.200000000000001,1.17,0.024,0.6,40,732,194,0,0,-6.6000000000000005,40,732,0,194,0.274,24.59,77.89,0.88,0.22,894,0.6000000000000001,20,3.9000000000000004,9.5834,7.3278 +2012,11,15,23,30,9.600000000000001,1.17,0.025,0.6,13,270,20,0,0,-5.5,13,270,0,20,0.274,34.12,88.4,0.89,0.22,895,0.7000000000000001,25,2.5,0.0000,0.0000 +2012,11,16,0,30,7.300000000000001,1.18,0.027,0.6,0,0,0,0,7,-5,0,0,0,0,0.274,41.46,100.2,0.89,0.22,896,0.7000000000000001,30,2.3000000000000003,0.0000,0.0000 +2012,11,16,1,30,6.300000000000001,1.2,0.028,0.6,0,0,0,0,7,-4.7,0,0,0,0,0.273,45.09,112.19,0.9,0.22,896,0.7000000000000001,32,2.3000000000000003,0.0000,0.0000 +2012,11,16,2,30,5.1000000000000005,1.22,0.03,0.6,0,0,0,0,7,-4.4,0,0,0,0,0.273,50.370000000000005,124.41,0.9,0.22,897,0.7000000000000001,34,2.1,0.0000,0.0000 +2012,11,16,3,30,4,1.23,0.03,0.6,0,0,0,0,7,-4,0,0,0,0,0.273,56.01,136.61,0.9,0.22,897,0.7000000000000001,34,1.9000000000000001,0.0000,0.0000 +2012,11,16,4,30,3,1.23,0.032,0.6,0,0,0,0,7,-3.6,0,0,0,0,0.272,61.980000000000004,148.37,0.9,0.22,897,0.7000000000000001,35,1.6,0.0000,0.0000 +2012,11,16,5,30,2.3000000000000003,1.22,0.033,0.6,0,0,0,0,6,-3.1,0,0,0,0,0.271,67.33,158.56,0.9,0.22,897,0.7000000000000001,34,1.4000000000000001,0.0000,0.0000 +2012,11,16,6,30,1.6,1.22,0.034,0.6,0,0,0,0,7,-2.7,0,0,0,0,0.269,73.22,163.63,0.9,0.22,898,0.7000000000000001,30,1.3,0.0000,0.0000 +2012,11,16,7,30,0.9,1.23,0.034,0.6,0,0,0,0,0,-2.3000000000000003,0,0,0,0,0.267,79.46000000000001,159.29,0.9,0.22,898,0.7000000000000001,25,1.3,0.0000,0.0000 +2012,11,16,8,30,0.30000000000000004,1.24,0.035,0.6,0,0,0,0,0,-1.9000000000000001,0,0,0,0,0.265,85.35000000000001,149.36,0.91,0.22,898,0.8,21,1.3,0.0000,0.0000 +2012,11,16,9,30,-0.2,1.25,0.035,0.6,0,0,0,0,0,-1.5,0,0,0,0,0.264,90.67,137.68,0.91,0.22,898,0.8,21,1.3,0.0000,0.0000 +2012,11,16,10,30,-0.7000000000000001,1.25,0.037,0.6,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.263,96.10000000000001,125.51,0.92,0.22,898,0.8,25,1.3,0.0000,0.0000 +2012,11,16,11,30,-1.1,1.25,0.039,0.6,0,0,0,0,4,-1.1,0,0,0,0,0.263,100,113.29,0.92,0.22,898,0.9,32,1.2000000000000002,0.0000,0.0000 +2012,11,16,12,30,-1.4000000000000001,1.24,0.043000000000000003,0.6,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.262,100,101.29,0.93,0.22,898,0.9,41,1.1,0.0000,0.0000 +2012,11,16,13,30,-0.4,1.24,0.05,0.6,0,0,0,0,1,-0.5,0,0,0,0,0.262,99.3,89.33,0.9400000000000001,0.22,898,0.9,54,1.1,0.0000,0.0000 +2012,11,16,14,30,1.8,1.22,0.057,0.6,48,613,166,7,4,-0.30000000000000004,99,7,7,100,0.261,86.08,78.88,0.9500000000000001,0.22,898,1,86,1,1.7182,1.3117 +2012,11,16,15,30,5,1.23,0.067,0.6,70,777,345,7,4,0.30000000000000004,212,65,7,235,0.262,71.87,69.29,0.96,0.22,898,1.1,135,1.3,4.9551,3.8415 +2012,11,16,16,30,9.3,1.25,0.074,0.6,84,855,492,0,0,2.2,84,855,0,492,0.262,61.08,61.45,0.96,0.22,898,1.1,165,2.9000000000000004,15.5433,12.1312 +2012,11,16,17,30,12.9,1.25,0.079,0.6,92,887,586,0,0,3.8000000000000003,92,887,0,586,0.262,54.01,56.15,0.9500000000000001,0.22,897,1.2000000000000002,171,4.3,29.2453,22.8870 +2012,11,16,18,30,14.9,1.28,0.058,0.6,84,924,625,0,0,4.1000000000000005,84,924,0,625,0.262,48.43,54.160000000000004,0.9400000000000001,0.22,896,1.2000000000000002,173,4.7,37.3042,29.2164 +2012,11,16,19,30,16.1,1.3,0.052000000000000005,0.6,79,917,594,0,0,4,79,917,0,594,0.262,44.42,55.85,0.93,0.22,896,1.3,176,4.800000000000001,35.0399,27.4250 +2012,11,16,20,30,16.6,1.32,0.049,0.6,72,885,503,0,0,3.7,72,885,0,503,0.262,42.24,60.9,0.92,0.22,895,1.3,178,4.800000000000001,28.9331,22.5886 +2012,11,16,21,30,16.400000000000002,1.33,0.04,0.6,60,823,360,0,0,3.4000000000000004,60,823,0,360,0.262,41.99,68.56,0.92,0.22,895,1.3,176,4.6000000000000005,19.6773,15.2668 +2012,11,16,22,30,14.4,1.33,0.041,0.6,45,658,181,0,0,3.3000000000000003,45,658,0,181,0.263,47.11,78.03,0.92,0.22,894,1.3,170,3.5,9.2892,7.1010 +2012,11,16,23,30,11.8,1.35,0.041,0.6,13,201,18,0,0,3.4000000000000004,13,201,0,18,0.264,56.39,88.51,0.92,0.22,894,1.3,163,2.9000000000000004,0.0000,0.0000 +2012,11,17,0,30,10.600000000000001,1.36,0.04,0.6,0,0,0,0,0,3.5,0,0,0,0,0.265,61.39,100.3,0.91,0.22,895,1.3,160,3.6,0.0000,0.0000 +2012,11,17,1,30,10,1.37,0.04,0.6,0,0,0,0,0,3.6,0,0,0,0,0.266,64.34,112.28,0.91,0.22,895,1.3,162,4,0.0000,0.0000 +2012,11,17,2,30,8.9,1.37,0.04,0.6,0,0,0,0,1,3.6,0,0,0,0,0.266,69.35000000000001,124.5,0.91,0.22,895,1.3,166,3.8000000000000003,0.0000,0.0000 +2012,11,17,3,30,7.9,1.3800000000000001,0.04,0.6,0,0,0,0,1,3.6,0,0,0,0,0.265,74.3,136.70000000000002,0.92,0.22,895,1.3,171,3.7,0.0000,0.0000 +2012,11,17,4,30,7.1000000000000005,1.3800000000000001,0.042,0.6,0,0,0,0,0,3.7,0,0,0,0,0.264,78.71000000000001,148.48,0.92,0.22,895,1.4000000000000001,176,3.7,0.0000,0.0000 +2012,11,17,5,30,6.4,1.3800000000000001,0.045,0.6,0,0,0,0,7,3.7,0,0,0,0,0.262,82.74,158.73,0.93,0.22,895,1.4000000000000001,180,3.7,0.0000,0.0000 +2012,11,17,6,30,5.9,1.37,0.048,0.6,0,0,0,0,7,3.7,0,0,0,0,0.261,85.8,163.87,0.93,0.22,895,1.4000000000000001,185,3.5,0.0000,0.0000 +2012,11,17,7,30,5.5,1.35,0.052000000000000005,0.6,0,0,0,0,0,3.8000000000000003,0,0,0,0,0.259,88.60000000000001,159.52,0.9400000000000001,0.22,895,1.4000000000000001,191,3.4000000000000004,0.0000,0.0000 +2012,11,17,8,30,5,1.34,0.056,0.6,0,0,0,0,1,3.9000000000000004,0,0,0,0,0.259,92.46000000000001,149.54,0.9400000000000001,0.22,895,1.4000000000000001,197,3.1,0.0000,0.0000 +2012,11,17,9,30,4.5,1.32,0.058,0.6,0,0,0,0,0,4,0,0,0,0,0.259,96.69,137.85,0.9400000000000001,0.22,895,1.3,202,2.8000000000000003,0.0000,0.0000 +2012,11,17,10,30,4,1.32,0.058,0.6,0,0,0,0,0,4,0,0,0,0,0.259,100,125.67,0.9400000000000001,0.22,894,1.3,204,2.5,0.0000,0.0000 +2012,11,17,11,30,3.6,1.31,0.057,0.6,0,0,0,0,0,3.6,0,0,0,0,0.259,100,113.45,0.9400000000000001,0.22,894,1.2000000000000002,206,2.5,0.0000,0.0000 +2012,11,17,12,30,3.6,1.3,0.057,0.6,0,0,0,0,0,3.6,0,0,0,0,0.259,100,101.46000000000001,0.9400000000000001,0.22,894,1.2000000000000002,208,2.6,0.0000,0.0000 +2012,11,17,13,30,4.5,1.29,0.06,0.6,0,0,0,0,0,4.2,0,0,0,0,0.26,98.17,89.5,0.9400000000000001,0.22,894,1.1,209,3.3000000000000003,0.0000,0.0000 +2012,11,17,14,30,6.9,1.29,0.062,0.6,48,596,161,0,0,4.4,48,596,0,161,0.26,84.01,79.08,0.9400000000000001,0.22,895,1.1,209,4.1000000000000005,4.7703,3.6405 +2012,11,17,15,30,10.3,1.31,0.063,0.6,68,783,342,0,1,5,68,783,0,342,0.261,69.69,69.51,0.9500000000000001,0.22,895,1.1,210,4.800000000000001,12.1065,9.3833 +2012,11,17,16,30,13.4,1.34,0.065,0.6,79,862,488,0,0,5.9,79,862,0,488,0.261,60.52,61.690000000000005,0.9500000000000001,0.22,894,1.2000000000000002,211,5.300000000000001,26.8868,20.9815 +2012,11,17,17,30,15.700000000000001,1.3800000000000001,0.065,0.6,85,904,585,0,0,5.7,85,904,0,585,0.261,51.52,56.4,0.9400000000000001,0.22,894,1.2000000000000002,209,5.1000000000000005,32.9806,25.8075 +2012,11,17,18,30,17.3,1.36,0.044,0.6,77,940,624,0,1,5.1000000000000005,77,940,0,624,0.261,44.54,54.410000000000004,0.93,0.22,893,1.2000000000000002,203,4.9,35.5036,27.8038 +2012,11,17,19,30,18.400000000000002,1.3800000000000001,0.045,0.6,76,930,594,0,3,4.5,298,331,0,483,0.261,39.910000000000004,56.07,0.93,0.22,892,1.2000000000000002,197,4.800000000000001,33.4795,26.2012 +2012,11,17,20,30,18.7,1.3900000000000001,0.046,0.6,71,893,503,0,3,4.2,269,255,0,393,0.261,38.25,61.09,0.9400000000000001,0.22,891,1.2000000000000002,194,4.800000000000001,27.5818,21.5311 +2012,11,17,21,30,18.2,1.3900000000000001,0.048,0.6,63,818,360,0,7,4,197,199,0,270,0.26,39.04,68.72,0.9400000000000001,0.22,891,1.1,191,4.800000000000001,18.6637,14.4777 +2012,11,17,22,30,16.2,1.4000000000000001,0.05,0.6,47,647,180,0,7,4.1000000000000005,111,41,0,120,0.26,44.45,78.16,0.9400000000000001,0.22,891,1.1,186,4,8.6608,6.6190 +2012,11,17,23,30,13.4,1.4000000000000001,0.052000000000000005,0.6,13,176,17,7,7,4.5,9,0,7,9,0.26,54.68,88.61,0.9500000000000001,0.22,891,1.1,179,3.2,0.0000,0.0000 +2012,11,18,0,30,11.9,1.3900000000000001,0.054,0.6,0,0,0,0,7,4.7,0,0,0,0,0.261,61.27,100.4,0.9500000000000001,0.22,891,1.1,174,3.7,0.0000,0.0000 +2012,11,18,1,30,11.3,1.3800000000000001,0.055,0.6,0,0,0,0,7,4.9,0,0,0,0,0.26,64.82000000000001,112.36,0.9500000000000001,0.22,891,1.1,175,4.1000000000000005,0.0000,0.0000 +2012,11,18,2,30,10.5,1.37,0.055,0.6,0,0,0,0,7,5,0,0,0,0,0.259,68.92,124.57000000000001,0.9500000000000001,0.22,892,1.2000000000000002,178,4,0.0000,0.0000 +2012,11,18,3,30,10.100000000000001,1.35,0.057,0.6,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.258,70.92,136.78,0.9500000000000001,0.22,891,1.2000000000000002,182,3.9000000000000004,0.0000,0.0000 +2012,11,18,4,30,9.8,1.34,0.06,0.6,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.257,72.45,148.58,0.9500000000000001,0.22,891,1.3,186,3.8000000000000003,0.0000,0.0000 +2012,11,18,5,30,9.600000000000001,1.34,0.065,0.6,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.256,73.51,158.89000000000001,0.9500000000000001,0.22,891,1.4000000000000001,190,3.6,0.0000,0.0000 +2012,11,18,6,30,9.3,1.35,0.068,0.6,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.256,75.13,164.11,0.9500000000000001,0.22,891,1.5,192,3.5,0.0000,0.0000 +2012,11,18,7,30,9,1.36,0.07,0.6,0,0,0,0,7,5.1000000000000005,0,0,0,0,0.255,76.8,159.74,0.9500000000000001,0.22,891,1.6,194,3.4000000000000004,0.0000,0.0000 +2012,11,18,8,30,8.700000000000001,1.36,0.07200000000000001,0.6,0,0,0,0,7,5.2,0,0,0,0,0.254,78.48,149.73,0.9500000000000001,0.22,891,1.6,197,3.2,0.0000,0.0000 +2012,11,18,9,30,8.200000000000001,1.36,0.074,0.6,0,0,0,0,7,5.2,0,0,0,0,0.253,81.36,138.02,0.96,0.22,890,1.7000000000000002,202,2.9000000000000004,0.0000,0.0000 +2012,11,18,10,30,7.800000000000001,1.36,0.076,0.6,0,0,0,0,7,5.300000000000001,0,0,0,0,0.252,84.05,125.83,0.96,0.22,890,1.8,205,2.7,0.0000,0.0000 +2012,11,18,11,30,7.6000000000000005,1.36,0.078,0.6,0,0,0,0,8,5.4,0,0,0,0,0.252,85.7,113.62,0.96,0.22,890,1.9000000000000001,207,2.7,0.0000,0.0000 +2012,11,18,12,30,7.7,1.34,0.079,0.6,0,0,0,0,7,5.4,0,0,0,0,0.252,85.60000000000001,101.63,0.96,0.22,890,2,210,2.9000000000000004,0.0000,0.0000 +2012,11,18,13,30,8.5,1.31,0.079,0.6,0,0,0,7,7,5.6000000000000005,0,0,7,0,0.252,81.76,89.67,0.96,0.22,890,2.1,217,3.5,0.0000,0.0000 +2012,11,18,14,30,10.100000000000001,1.29,0.073,0.6,49,541,149,0,4,5.800000000000001,78,2,0,79,0.253,74.52,79.28,0.96,0.22,890,2.1,225,4,7.6770,5.8571 +2012,11,18,15,30,12.9,1.31,0.066,0.6,67,744,325,0,4,6,186,23,0,194,0.253,62.93,69.73,0.96,0.22,890,2.1,229,4.1000000000000005,17.5847,13.6257 +2012,11,18,16,30,16.5,1.36,0.059000000000000004,0.6,76,844,473,7,4,5.9,259,233,7,369,0.252,49.550000000000004,61.92,0.96,0.22,890,2,234,4.6000000000000005,26.6278,20.7762 +2012,11,18,17,30,19.3,1.35,0.058,0.6,81,886,568,0,4,4.800000000000001,328,106,0,386,0.251,38.51,56.64,0.96,0.22,889,2,242,5.5,32.8839,25.7290 +2012,11,18,18,30,20.3,1.34,0.07100000000000001,0.6,89,882,599,0,7,4.3,227,473,0,500,0.251,34.83,54.64,0.96,0.22,889,2.1,247,5.9,35.4072,27.7256 +2012,11,18,19,30,20.1,1.32,0.073,0.6,88,868,570,0,8,4.6000000000000005,287,154,0,373,0.25,36.050000000000004,56.29,0.96,0.22,888,2.1,247,5.9,27.1943,21.2804 +2012,11,18,20,30,19.8,1.34,0.068,0.6,80,836,482,0,7,5.1000000000000005,236,84,0,276,0.25,38.050000000000004,61.28,0.96,0.22,888,2.1,244,5.6000000000000005,21.5248,16.8009 +2012,11,18,21,30,19.400000000000002,1.35,0.073,0.6,71,750,341,0,7,5.4,148,19,0,155,0.251,39.77,68.88,0.96,0.22,888,2,237,5.2,13.9786,10.8414 +2012,11,18,22,30,17.7,1.37,0.069,0.6,51,583,169,0,7,5.5,83,10,0,85,0.252,44.53,78.29,0.96,0.22,888,1.9000000000000001,227,3.9000000000000004,5.7386,4.3847 +2012,11,18,23,30,15.100000000000001,1.4000000000000001,0.062,0.6,12,140,16,7,7,5.800000000000001,7,0,7,7,0.253,53.79,88.71000000000001,0.9500000000000001,0.22,889,1.7000000000000002,217,3.1,0.0000,0.0000 +2012,11,19,0,30,13.8,1.4000000000000001,0.054,0.6,0,0,0,0,7,5.9,0,0,0,0,0.254,59.09,100.48,0.9500000000000001,0.22,889,1.5,214,3.7,0.0000,0.0000 +2012,11,19,1,30,13.100000000000001,1.3800000000000001,0.046,0.6,0,0,0,0,7,6.2,0,0,0,0,0.254,62.980000000000004,112.44,0.9400000000000001,0.22,889,1.3,216,4.3,0.0000,0.0000 +2012,11,19,2,30,12.200000000000001,1.35,0.04,0.6,0,0,0,0,7,6.300000000000001,0,0,0,0,0.255,67.21000000000001,124.65,0.93,0.22,890,1.2000000000000002,219,4.4,0.0000,0.0000 +2012,11,19,3,30,11.200000000000001,1.32,0.035,0.6,0,0,0,0,7,6.300000000000001,0,0,0,0,0.255,71.68,136.86,0.93,0.22,890,1.1,222,4.2,0.0000,0.0000 +2012,11,19,4,30,10.3,1.28,0.031,0.6,0,0,0,0,0,6.2,0,0,0,0,0.256,75.88,148.68,0.92,0.22,890,1,227,4.1000000000000005,0.0000,0.0000 +2012,11,19,5,30,9.5,1.26,0.028,0.6,0,0,0,0,0,6.1000000000000005,0,0,0,0,0.257,79.3,159.04,0.92,0.22,890,0.9,235,4,0.0000,0.0000 +2012,11,19,6,30,8.700000000000001,1.23,0.027,0.6,0,0,0,0,0,5.800000000000001,0,0,0,0,0.257,82.2,164.34,0.92,0.22,891,0.8,243,4,0.0000,0.0000 +2012,11,19,7,30,8.200000000000001,1.2,0.026000000000000002,0.6,0,0,0,0,0,5.2,0,0,0,0,0.257,81.62,159.96,0.91,0.22,891,0.8,253,4.2,0.0000,0.0000 +2012,11,19,8,30,7.5,1.18,0.025,0.6,0,0,0,0,0,4.2,0,0,0,0,0.257,79.7,149.91,0.91,0.22,891,0.7000000000000001,263,4.2,0.0000,0.0000 +2012,11,19,9,30,6.7,1.17,0.023,0.6,0,0,0,0,0,3,0,0,0,0,0.256,77.43,138.18,0.9,0.22,891,0.7000000000000001,271,3.8000000000000003,0.0000,0.0000 +2012,11,19,10,30,5.9,1.16,0.022,0.6,0,0,0,0,0,1.7000000000000002,0,0,0,0,0.256,74.46000000000001,125.99000000000001,0.89,0.22,891,0.6000000000000001,278,3.4000000000000004,0.0000,0.0000 +2012,11,19,11,30,5.2,1.16,0.021,0.6,0,0,0,0,0,0.4,0,0,0,0,0.256,70.94,113.78,0.89,0.22,891,0.6000000000000001,283,3.2,0.0000,0.0000 +2012,11,19,12,30,4.6000000000000005,1.16,0.021,0.6,0,0,0,0,0,-0.8,0,0,0,0,0.256,68.24,101.81,0.89,0.22,892,0.6000000000000001,288,2.9000000000000004,0.0000,0.0000 +2012,11,19,13,30,5.1000000000000005,1.16,0.02,0.6,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.256,63.04,89.82000000000001,0.89,0.22,892,0.6000000000000001,294,3.2,0.0000,0.0000 +2012,11,19,14,30,7.2,1.17,0.019,0.6,36,717,167,7,4,-1.4000000000000001,105,48,7,114,0.256,54.22,79.47,0.89,0.22,892,0.5,297,3.4000000000000004,3.7659,2.8724 +2012,11,19,15,30,10.4,1.18,0.019,0.6,49,886,353,0,8,-1.1,149,461,0,307,0.257,44.62,69.94,0.89,0.22,893,0.5,297,3.1,9.9555,7.7121 +2012,11,19,16,30,14,1.19,0.019,0.6,56,960,505,0,7,-0.9,165,576,0,434,0.258,35.910000000000004,62.15,0.89,0.22,893,0.5,295,2.6,20.1050,15.6845 +2012,11,19,17,30,17.6,1.2,0.019,0.6,60,988,599,0,0,-0.8,60,988,0,599,0.259,28.71,56.88,0.89,0.22,892,0.6000000000000001,286,1.9000000000000001,21.6718,16.9547 +2012,11,19,18,30,20.200000000000003,1.21,0.02,0.6,62,998,636,0,0,-2.5,62,998,0,636,0.259,21.580000000000002,54.870000000000005,0.9,0.22,892,0.6000000000000001,279,1.2000000000000002,28.3416,22.1910 +2012,11,19,19,30,21.200000000000003,1.2,0.021,0.6,62,987,607,0,0,-3.9000000000000004,62,987,0,607,0.259,18.240000000000002,56.5,0.9,0.22,891,0.6000000000000001,290,1,20.9784,16.4147 +2012,11,19,20,30,21.200000000000003,1.2,0.021,0.6,58,955,514,0,0,-4.3,58,955,0,514,0.259,17.77,61.46,0.9,0.22,891,0.6000000000000001,319,1.1,15.0989,11.7839 +2012,11,19,21,30,20.400000000000002,1.2,0.021,0.6,51,885,368,0,0,-4.3,51,885,0,368,0.26,18.66,69.02,0.9,0.22,891,0.6000000000000001,348,1.1,8.0137,6.2141 +2012,11,19,22,30,17.6,1.19,0.02,0.6,38,732,185,0,0,-1.4000000000000001,38,732,0,185,0.26,27.46,78.41,0.9,0.22,891,0.6000000000000001,189,1.1,4.0626,3.1034 +2012,11,19,23,30,13.9,1.18,0.02,0.6,11,265,17,0,0,0.2,11,265,0,17,0.262,39.21,88.79,0.89,0.22,892,0.6000000000000001,24,1.2000000000000002,0.0000,0.0000 +2012,11,20,0,30,11.700000000000001,1.17,0.02,0.6,0,0,0,0,0,-1.3,0,0,0,0,0.264,40.42,100.57000000000001,0.89,0.22,892,0.6000000000000001,33,1.4000000000000001,0.0000,0.0000 +2012,11,20,1,30,10.4,1.16,0.02,0.6,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.266,44.59,112.51,0.89,0.22,893,0.7000000000000001,40,1.4000000000000001,0.0000,0.0000 +2012,11,20,2,30,9.5,1.1500000000000001,0.02,0.6,0,0,0,0,0,-1,0,0,0,0,0.267,48.08,124.71000000000001,0.89,0.22,893,0.7000000000000001,46,1.4000000000000001,0.0000,0.0000 +2012,11,20,3,30,8.9,1.1400000000000001,0.019,0.6,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.267,50.83,136.93,0.89,0.22,893,0.7000000000000001,53,1.3,0.0000,0.0000 +2012,11,20,4,30,8.8,1.1400000000000001,0.019,0.6,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.266,51.9,148.77,0.89,0.22,893,0.7000000000000001,55,1.2000000000000002,0.0000,0.0000 +2012,11,20,5,30,8.9,1.16,0.018000000000000002,0.6,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.266,52.46,159.18,0.89,0.22,894,0.7000000000000001,45,1,0.0000,0.0000 +2012,11,20,6,30,8.700000000000001,1.2,0.019,0.6,0,0,0,0,0,-0.1,0,0,0,0,0.266,54.03,164.56,0.88,0.22,894,0.7000000000000001,191,0.7000000000000001,0.0000,0.0000 +2012,11,20,7,30,7.5,1.22,0.019,0.6,0,0,0,0,0,0.1,0,0,0,0,0.265,59.36,160.18,0.88,0.22,894,0.7000000000000001,333,0.9,0.0000,0.0000 +2012,11,20,8,30,5.6000000000000005,1.23,0.019,0.6,0,0,0,0,0,0.2,0,0,0,0,0.263,68.36,150.09,0.88,0.22,894,0.7000000000000001,318,1.1,0.0000,0.0000 +2012,11,20,9,30,4.3,1.25,0.019,0.6,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.261,75.26,138.35,0.88,0.22,894,0.7000000000000001,317,1.3,0.0000,0.0000 +2012,11,20,10,30,3.6,1.26,0.019,0.6,0,0,0,0,0,0.2,0,0,0,0,0.26,78.60000000000001,126.15,0.88,0.22,894,0.7000000000000001,318,1.3,0.0000,0.0000 +2012,11,20,11,30,3.4000000000000004,1.28,0.019,0.6,0,0,0,0,0,0,0,0,0,0,0.259,78.27,113.95,0.88,0.22,894,0.7000000000000001,321,1.3,0.0000,0.0000 +2012,11,20,12,30,3.4000000000000004,1.28,0.019,0.6,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.257,76.64,101.98,0.88,0.22,895,0.7000000000000001,326,1.3,0.0000,0.0000 +2012,11,20,13,30,4.7,1.29,0.019,0.6,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.256,68.71000000000001,89.97,0.88,0.22,895,0.7000000000000001,333,1.3,0.0000,0.0000 +2012,11,20,14,30,7.800000000000001,1.29,0.019,0.6,35,696,160,0,0,-0.6000000000000001,35,696,0,160,0.254,55.4,79.67,0.89,0.22,895,0.7000000000000001,338,1.5,5.4336,4.1433 +2012,11,20,15,30,11.200000000000001,1.3,0.019,0.6,48,868,343,0,0,-0.4,48,868,0,343,0.253,44.7,70.15,0.89,0.22,896,0.7000000000000001,349,1.4000000000000001,15.7249,12.1782 +2012,11,20,16,30,15,1.31,0.019,0.6,56,945,494,0,0,0.1,56,945,0,494,0.253,36.28,62.370000000000005,0.89,0.22,895,0.7000000000000001,236,1.1,23.6114,18.4172 +2012,11,20,17,30,18.6,1.32,0.019,0.6,59,980,592,0,0,-0.1,59,980,0,592,0.253,28.3,57.11,0.89,0.22,895,0.7000000000000001,128,1.7000000000000002,33.5901,26.2761 +2012,11,20,18,30,20.6,1.32,0.019,0.6,61,992,628,0,0,-1.9000000000000001,61,992,0,628,0.253,22.01,55.1,0.89,0.22,894,0.7000000000000001,145,2.2,36.0126,28.1947 +2012,11,20,19,30,21.3,1.32,0.019,0.6,60,983,599,0,0,-2.7,60,983,0,599,0.254,19.87,56.7,0.89,0.22,893,0.7000000000000001,155,2.5,34.1036,26.6822 +2012,11,20,20,30,21.3,1.32,0.019,0.6,56,951,508,0,0,-3.3000000000000003,56,951,0,508,0.254,18.98,61.63,0.89,0.22,893,0.7000000000000001,166,2.8000000000000003,28.0872,21.9182 +2012,11,20,21,30,20.400000000000002,1.32,0.018000000000000002,0.6,49,883,362,0,0,-3.8000000000000003,49,883,0,362,0.254,19.330000000000002,69.17,0.89,0.22,893,0.7000000000000001,169,2.6,19.0030,14.7331 +2012,11,20,22,30,17,1.31,0.018000000000000002,0.6,37,728,182,0,0,-2.6,37,728,0,182,0.254,26.1,78.52,0.88,0.22,893,0.7000000000000001,164,1.8,8.8379,6.7499 +2012,11,20,23,30,12.9,1.29,0.018000000000000002,0.6,11,263,16,0,0,-0.4,11,263,0,16,0.255,39.88,88.88,0.88,0.22,893,0.7000000000000001,158,1.5,0.0000,0.0000 +2012,11,21,0,30,11.100000000000001,1.28,0.017,0.6,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.255,40.84,100.64,0.88,0.22,893,0.6000000000000001,158,1.8,0.0000,0.0000 +2012,11,21,1,30,10.3,1.27,0.017,0.6,0,0,0,0,0,-1.8,0,0,0,0,0.255,42.75,112.57000000000001,0.88,0.22,894,0.6000000000000001,163,2.1,0.0000,0.0000 +2012,11,21,2,30,9.700000000000001,1.26,0.018000000000000002,0.6,0,0,0,0,0,-1.7000000000000002,0,0,0,0,0.256,45,124.77,0.89,0.22,894,0.6000000000000001,170,2.4000000000000004,0.0000,0.0000 +2012,11,21,3,30,9.1,1.26,0.019,0.6,0,0,0,0,0,-1.3,0,0,0,0,0.256,48.120000000000005,136.99,0.89,0.22,894,0.7000000000000001,177,2.7,0.0000,0.0000 +2012,11,21,4,30,8.5,1.27,0.02,0.6,0,0,0,0,0,-0.6000000000000001,0,0,0,0,0.256,52.58,148.85,0.9,0.22,894,0.7000000000000001,183,2.9000000000000004,0.0000,0.0000 +2012,11,21,5,30,7.800000000000001,1.27,0.021,0.6,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.256,59.21,159.31,0.9,0.22,894,0.7000000000000001,190,3,0.0000,0.0000 +2012,11,21,6,30,7.1000000000000005,1.28,0.022,0.6,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.255,67.11,164.78,0.91,0.22,894,0.7000000000000001,198,3,0.0000,0.0000 +2012,11,21,7,30,6.4,1.28,0.023,0.6,0,0,0,0,0,2.2,0,0,0,0,0.254,74.58,160.39000000000001,0.91,0.22,894,0.7000000000000001,206,2.9000000000000004,0.0000,0.0000 +2012,11,21,8,30,5.800000000000001,1.27,0.024,0.6,0,0,0,0,0,2.5,0,0,0,0,0.253,79.29,150.27,0.91,0.22,894,0.6000000000000001,213,2.8000000000000003,0.0000,0.0000 +2012,11,21,9,30,5.4,1.26,0.025,0.6,0,0,0,0,1,2.2,0,0,0,0,0.253,79.77,138.51,0.91,0.22,894,0.6000000000000001,219,2.7,0.0000,0.0000 +2012,11,21,10,30,5.300000000000001,1.26,0.025,0.6,0,0,0,0,0,1.4000000000000001,0,0,0,0,0.252,76.05,126.31,0.91,0.22,894,0.6000000000000001,224,2.7,0.0000,0.0000 +2012,11,21,11,30,5.300000000000001,1.26,0.025,0.6,0,0,0,0,0,0.5,0,0,0,0,0.252,70.95,114.11,0.92,0.22,893,0.5,225,2.6,0.0000,0.0000 +2012,11,21,12,30,5.5,1.25,0.026000000000000002,0.6,0,0,0,0,0,-0.5,0,0,0,0,0.252,65.42,102.15,0.92,0.22,893,0.5,225,2.5,0.0000,0.0000 +2012,11,21,13,30,6.7,1.24,0.027,0.6,0,0,0,0,4,-1.3,0,0,0,0,0.252,56.550000000000004,90.13,0.92,0.22,894,0.5,224,2.9000000000000004,0.0000,0.0000 +2012,11,21,14,30,9,1.26,0.028,0.6,39,686,159,7,4,-1.9000000000000001,101,41,7,109,0.251,46.24,79.86,0.92,0.22,894,0.5,221,3.6,7.6263,5.8138 +2012,11,21,15,30,11.9,1.28,0.03,0.6,54,854,342,0,3,-2.2,179,267,0,269,0.251,37.32,70.36,0.92,0.22,893,0.6000000000000001,213,3.8000000000000003,17.5359,13.5771 +2012,11,21,16,30,15.8,1.33,0.033,0.6,64,918,487,0,7,-2,192,443,0,396,0.25,29.44,62.59,0.92,0.22,893,0.8,206,4.5,26.8371,20.9302 +2012,11,21,17,30,19.200000000000003,1.37,0.039,0.6,72,931,574,7,8,-2.3000000000000003,236,386,7,444,0.249,23.18,57.33,0.93,0.22,892,1.2000000000000002,205,5.800000000000001,33.1587,25.9359 +2012,11,21,18,30,20.8,1.34,0.04,0.6,74,932,604,0,8,-1.6,172,669,0,552,0.247,22.18,55.32,0.9400000000000001,0.22,891,1.5,206,6.4,35.5218,27.8080 +2012,11,21,19,30,21.5,1.32,0.049,0.6,77,902,569,0,7,0.5,262,318,0,436,0.246,24.8,56.9,0.9500000000000001,0.22,890,1.8,207,6.4,33.6206,26.3020 +2012,11,21,20,30,22.1,1.32,0.057,0.6,75,849,476,0,7,2.6,253,137,0,317,0.245,27.69,61.800000000000004,0.9500000000000001,0.22,889,2,207,6.2,27.7296,21.6368 +2012,11,21,21,30,21.8,1.31,0.059000000000000004,0.6,66,762,335,0,8,4.3,151,356,0,277,0.245,31.84,69.3,0.9500000000000001,0.22,889,2.1,205,5.5,18.6687,14.4715 +2012,11,21,22,30,20.200000000000003,1.3,0.063,0.6,48,576,162,0,8,5.800000000000001,97,252,0,146,0.245,38.92,78.63,0.9500000000000001,0.22,889,2.2,201,4.7,8.6911,6.6366 +2012,11,21,23,30,18.3,1.29,0.066,0.6,11,104,13,7,6,6.9,3,0,7,3,0.245,47.49,88.96000000000001,0.9500000000000001,0.22,889,2.3000000000000003,197,4.3,0.0000,0.0000 +2012,11,22,0,30,17,1.31,0.066,0.6,0,0,0,0,7,7.7,0,0,0,0,0.246,54.42,100.71000000000001,0.9500000000000001,0.22,889,2.3000000000000003,196,4.3,0.0000,0.0000 +2012,11,22,1,30,16,1.32,0.066,0.6,0,0,0,0,7,8.3,0,0,0,0,0.246,60.230000000000004,112.63,0.9500000000000001,0.22,888,2.3000000000000003,197,4.3,0.0000,0.0000 +2012,11,22,2,30,15.100000000000001,1.34,0.067,0.6,0,0,0,0,0,8.700000000000001,0,0,0,0,0.247,65.52,124.82000000000001,0.9500000000000001,0.22,888,2.3000000000000003,200,4.4,0.0000,0.0000 +2012,11,22,3,30,14.4,1.36,0.07100000000000001,0.6,0,0,0,0,7,8.9,0,0,0,0,0.247,69.77,137.05,0.96,0.22,888,2.2,205,4.4,0.0000,0.0000 +2012,11,22,4,30,13.8,1.4000000000000001,0.076,0.6,0,0,0,0,3,9.200000000000001,0,0,0,0,0.248,73.67,148.93,0.96,0.22,888,2.2,212,4.5,0.0000,0.0000 +2012,11,22,5,30,13.200000000000001,1.42,0.082,0.6,0,0,0,0,0,9.4,0,0,0,0,0.248,77.94,159.44,0.96,0.22,888,2.2,219,4.7,0.0000,0.0000 +2012,11,22,6,30,12.600000000000001,1.43,0.08700000000000001,0.6,0,0,0,0,1,9.700000000000001,0,0,0,0,0.247,82.45,164.99,0.96,0.22,887,2.2,223,4.7,0.0000,0.0000 +2012,11,22,7,30,12,1.43,0.09,0.6,0,0,0,0,7,10,0,0,0,0,0.247,87.32000000000001,160.6,0.96,0.22,887,2.1,227,4.7,0.0000,0.0000 +2012,11,22,8,30,11.5,1.43,0.088,0.6,0,0,0,0,7,10.3,0,0,0,0,0.248,92.04,150.45000000000002,0.96,0.22,887,1.9000000000000001,231,4.6000000000000005,0.0000,0.0000 +2012,11,22,9,30,11,1.42,0.08,0.6,0,0,0,0,1,10.600000000000001,0,0,0,0,0.248,97.52,138.67000000000002,0.96,0.22,887,1.7000000000000002,235,4.5,0.0000,0.0000 +2012,11,22,10,30,10.600000000000001,1.3900000000000001,0.066,0.6,0,0,0,0,7,10.600000000000001,0,0,0,0,0.248,100,126.47,0.96,0.22,886,1.5,238,4.5,0.0000,0.0000 +2012,11,22,11,30,10.200000000000001,1.35,0.051000000000000004,0.6,0,0,0,0,8,10.200000000000001,0,0,0,0,0.249,100,114.27,0.9500000000000001,0.22,887,1.2000000000000002,240,4.6000000000000005,0.0000,0.0000 +2012,11,22,12,30,9.600000000000001,1.32,0.041,0.6,0,0,0,0,8,9.600000000000001,0,0,0,0,0.25,100,102.32000000000001,0.9400000000000001,0.22,887,0.9,243,4.6000000000000005,0.0000,0.0000 +2012,11,22,13,30,9.3,1.3,0.033,0.6,0,0,0,0,7,9.3,0,0,0,0,0.251,99.81,90.84,0.93,0.22,887,0.7000000000000001,247,4.9,0.0000,0.0000 +2012,11,22,14,30,10.4,1.32,0.026000000000000002,0.6,37,679,154,0,0,7.800000000000001,37,679,0,154,0.252,83.74,80.05,0.91,0.22,887,0.6000000000000001,252,5,5.1963,3.9605 +2012,11,22,15,30,13.3,1.34,0.021,0.6,49,878,342,0,0,5.5,49,878,0,342,0.253,59.300000000000004,70.56,0.9,0.22,888,0.5,262,5,13.7266,10.6249 +2012,11,22,16,30,16.8,1.34,0.02,0.6,56,957,493,0,0,1.3,56,957,0,493,0.255,35.14,62.81,0.89,0.22,888,0.5,279,4.9,21.4819,16.7513 +2012,11,22,17,30,19.700000000000003,1.33,0.02,0.6,60,985,588,0,0,-2.8000000000000003,60,985,0,588,0.256,21.7,57.550000000000004,0.88,0.22,887,0.6000000000000001,301,4.3,24.8409,19.4280 +2012,11,22,18,30,21.8,1.36,0.022,0.6,63,994,625,0,0,-5.300000000000001,63,994,0,625,0.256,15.84,55.53,0.88,0.22,887,0.6000000000000001,331,3.8000000000000003,31.1909,24.4154 +2012,11,22,19,30,22.700000000000003,1.37,0.024,0.6,63,983,597,0,0,-6.6000000000000005,63,983,0,597,0.256,13.56,57.09,0.88,0.22,887,0.6000000000000001,182,4.1000000000000005,24.4471,19.1237 +2012,11,22,20,30,22.5,1.37,0.026000000000000002,0.6,60,940,502,0,0,-7,60,940,0,502,0.255,13.35,61.96,0.88,0.22,887,0.7000000000000001,20,4.800000000000001,17.2850,13.4856 +2012,11,22,21,30,21.3,1.3800000000000001,0.028,0.6,54,864,357,0,0,-6.7,54,864,0,357,0.255,14.65,69.43,0.88,0.22,888,0.7000000000000001,28,4.9,14.2689,11.0592 +2012,11,22,22,30,18.3,1.37,0.03,0.6,40,690,175,0,7,-5.5,110,75,0,125,0.256,19.330000000000002,78.73,0.89,0.22,889,0.8,31,3.8000000000000003,6.9694,5.3210 +2012,11,22,23,30,14.9,1.33,0.032,0.6,0,0,0,7,7,-3,0,0,7,0,0.257,28.96,89.03,0.89,0.22,890,0.8,33,3,0.0000,0.0000 +2012,11,23,0,30,13.4,1.27,0.033,0.6,0,0,0,0,7,-2.1,0,0,0,0,0.258,34.24,100.78,0.9,0.22,892,0.9,34,3.7,0.0000,0.0000 +2012,11,23,1,30,12.600000000000001,1.21,0.033,0.6,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.258,37.85,112.68,0.91,0.22,893,0.9,35,4.4,0.0000,0.0000 +2012,11,23,2,30,11.4,1.17,0.032,0.6,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.259,43.04,124.87,0.91,0.22,895,0.9,35,4.6000000000000005,0.0000,0.0000 +2012,11,23,3,30,10,1.17,0.03,0.6,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.26,48.63,137.1,0.91,0.22,896,0.9,38,5.2,0.0000,0.0000 +2012,11,23,4,30,8.6,1.19,0.028,0.6,0,0,0,0,0,-0.5,0,0,0,0,0.261,52.74,149,0.9,0.22,897,0.8,39,5.7,0.0000,0.0000 +2012,11,23,5,30,7.300000000000001,1.19,0.026000000000000002,0.6,0,0,0,0,0,-1.3,0,0,0,0,0.262,54.480000000000004,159.56,0.9,0.22,898,0.8,37,5.5,0.0000,0.0000 +2012,11,23,6,30,6.1000000000000005,1.18,0.024,0.6,0,0,0,0,0,-2.2,0,0,0,0,0.263,55.47,165.19,0.9,0.22,899,0.8,35,5.1000000000000005,0.0000,0.0000 +2012,11,23,7,30,5.1000000000000005,1.17,0.023,0.6,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.264,56.410000000000004,160.81,0.9,0.22,899,0.7000000000000001,32,4.7,0.0000,0.0000 +2012,11,23,8,30,4.2,1.1400000000000001,0.023,0.6,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.264,57.6,150.63,0.9,0.22,900,0.7000000000000001,29,4.3,0.0000,0.0000 +2012,11,23,9,30,3.4000000000000004,1.11,0.022,0.6,0,0,0,0,0,-4,0,0,0,0,0.264,58.35,138.83,0.9,0.22,900,0.6000000000000001,27,3.7,0.0000,0.0000 +2012,11,23,10,30,2.6,1.09,0.022,0.6,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.265,59.09,126.63000000000001,0.9,0.22,901,0.6000000000000001,23,3.1,0.0000,0.0000 +2012,11,23,11,30,1.9000000000000001,1.09,0.021,0.6,0,0,0,0,0,-5.2,0,0,0,0,0.267,59.54,114.43,0.9,0.22,901,0.6000000000000001,19,2.6,0.0000,0.0000 +2012,11,23,12,30,1.2000000000000002,1.1,0.022,0.6,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.27,59.76,102.48,0.9,0.22,902,0.6000000000000001,18,2.2,0.0000,0.0000 +2012,11,23,13,30,1.5,1.11,0.022,0.6,0,0,0,0,0,-6.4,0,0,0,0,0.273,55.65,91.02,0.9,0.22,903,0.6000000000000001,19,2.5,0.0000,0.0000 +2012,11,23,14,30,3.7,1.1300000000000001,0.023,0.6,36,667,149,0,0,-7,36,667,0,149,0.274,45.49,80.24,0.9,0.22,903,0.7000000000000001,31,3.4000000000000004,0.0000,0.0000 +2012,11,23,15,30,6.4,1.1500000000000001,0.024,0.6,51,849,331,0,0,-8.4,51,849,0,331,0.274,33.85,70.76,0.9,0.22,904,0.7000000000000001,51,4,17.4201,13.4803 +2012,11,23,16,30,8.5,1.16,0.024,0.6,59,930,481,0,0,-10.4,59,930,0,481,0.273,25.07,63.02,0.91,0.22,904,0.7000000000000001,60,3.8000000000000003,26.7047,20.8208 +2012,11,23,17,30,10.100000000000001,1.18,0.024,0.6,64,968,580,0,0,-11.5,64,968,0,580,0.271,20.7,57.77,0.91,0.22,903,0.7000000000000001,62,3.1,32.8599,25.6970 +2012,11,23,18,30,11.3,1.2,0.024,0.6,65,980,617,0,0,-11.700000000000001,65,980,0,617,0.271,18.68,55.730000000000004,0.91,0.22,903,0.7000000000000001,64,2.3000000000000003,35.2807,27.6145 +2012,11,23,19,30,12,1.23,0.024,0.6,64,966,586,0,0,-11.700000000000001,64,966,0,586,0.271,17.92,57.27,0.91,0.22,902,0.8,67,1.6,33.4422,26.1579 +2012,11,23,20,30,12.200000000000001,1.25,0.024,0.6,60,932,496,0,0,-11.4,60,932,0,496,0.272,18.02,62.11,0.9,0.22,901,0.8,71,1.1,27.3444,21.3317 +2012,11,23,21,30,11.9,1.24,0.021,0.6,50,865,353,0,0,-11.100000000000001,50,865,0,353,0.273,18.85,69.55,0.9,0.22,901,0.8,80,0.8,18.3689,14.2347 +2012,11,23,22,30,10.4,1.25,0.021,0.6,38,711,176,0,0,-10.8,38,711,0,176,0.275,21.43,78.82000000000001,0.9,0.22,901,0.7000000000000001,96,0.7000000000000001,5.9652,4.5535 +2012,11,23,23,30,8.3,1.25,0.02,0.6,0,0,0,0,0,-7.9,0,0,0,0,0.276,30.87,89.09,0.89,0.22,901,0.7000000000000001,112,0.8,0.0000,0.0000 +2012,11,24,0,30,6.5,1.25,0.02,0.6,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.277,32.94,100.83,0.89,0.23,901,0.7000000000000001,126,1,0.0000,0.0000 +2012,11,24,1,30,4.9,1.24,0.019,0.6,0,0,0,0,0,-8.3,0,0,0,0,0.278,37.74,112.73,0.89,0.23,901,0.6000000000000001,142,1.2000000000000002,0.0000,0.0000 +2012,11,24,2,30,3.8000000000000003,1.23,0.019,0.6,0,0,0,0,0,-8.4,0,0,0,0,0.279,40.6,124.91,0.89,0.23,900,0.6000000000000001,158,1.4000000000000001,0.0000,0.0000 +2012,11,24,3,30,3.3000000000000003,1.22,0.018000000000000002,0.6,0,0,0,0,0,-8.8,0,0,0,0,0.281,40.77,137.14000000000001,0.88,0.23,900,0.6000000000000001,172,1.7000000000000002,0.0000,0.0000 +2012,11,24,4,30,3,1.21,0.018000000000000002,0.6,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.28300000000000003,40.47,149.06,0.88,0.23,899,0.6000000000000001,184,2.1,0.0000,0.0000 +2012,11,24,5,30,2.7,1.19,0.017,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.28400000000000003,40.78,159.67000000000002,0.88,0.23,899,0.6000000000000001,195,2.5,0.0000,0.0000 +2012,11,24,6,30,2.4000000000000004,1.18,0.017,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.28500000000000003,41.5,165.39000000000001,0.88,0.23,899,0.6000000000000001,206,2.9000000000000004,0.0000,0.0000 +2012,11,24,7,30,2,1.17,0.017,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.28600000000000003,42.7,161.01,0.88,0.23,898,0.6000000000000001,216,3.3000000000000003,0.0000,0.0000 +2012,11,24,8,30,1.7000000000000002,1.1500000000000001,0.017,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.28600000000000003,43.74,150.8,0.88,0.23,898,0.6000000000000001,223,3.6,0.0000,0.0000 +2012,11,24,9,30,1.4000000000000001,1.12,0.017,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.28600000000000003,44.67,139,0.88,0.23,897,0.5,225,3.9000000000000004,0.0000,0.0000 +2012,11,24,10,30,1.2000000000000002,1.09,0.016,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.28400000000000003,45.2,126.79,0.88,0.23,896,0.5,226,4.2,0.0000,0.0000 +2012,11,24,11,30,1,1.06,0.015,0.6,0,0,0,0,0,-9.4,0,0,0,0,0.28300000000000003,45.87,114.59,0.88,0.23,896,0.5,225,4.4,0.0000,0.0000 +2012,11,24,12,30,1,1.04,0.015,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.28200000000000003,46.12,102.65,0.88,0.23,895,0.5,225,4.6000000000000005,0.0000,0.0000 +2012,11,24,13,30,1.5,1.04,0.016,0.6,0,0,0,0,0,-9.1,0,0,0,0,0.28200000000000003,45.07,91.19,0.88,0.23,895,0.5,224,5,0.0000,0.0000 +2012,11,24,14,30,3.6,1.04,0.016,0.6,33,698,149,0,1,-8.9,33,698,0,149,0.281,39.63,80.42,0.88,0.23,894,0.5,221,5.5,0.0000,0.0000 +2012,11,24,15,30,7.2,1.05,0.017,0.6,46,876,332,0,0,-8.4,46,876,0,332,0.28,32.160000000000004,70.96000000000001,0.88,0.23,894,0.5,223,6.300000000000001,16.8291,13.0195 +2012,11,24,16,30,11.100000000000001,1.05,0.017,0.6,54,955,484,0,0,-7.5,54,955,0,484,0.278,26.51,63.230000000000004,0.88,0.23,893,0.5,228,7,26.0179,20.2823 +2012,11,24,17,30,14.200000000000001,1.06,0.016,0.6,56,994,583,0,0,-6.300000000000001,56,994,0,583,0.277,23.56,57.980000000000004,0.88,0.23,891,0.5,230,6.9,32.3754,25.3155 +2012,11,24,18,30,16.6,1.12,0.017,0.6,59,1005,621,0,0,-5.7,59,1005,0,621,0.276,21.18,55.94,0.88,0.23,890,0.5,232,6.6000000000000005,34.7959,27.2328 +2012,11,24,19,30,18.2,1.11,0.016,0.6,57,998,593,0,0,-5.7,57,998,0,593,0.275,19.150000000000002,57.45,0.88,0.23,888,0.5,235,6.2,32.7957,25.6501 +2012,11,24,20,30,19.1,1.08,0.014,0.6,51,969,502,0,0,-6.1000000000000005,51,969,0,502,0.275,17.53,62.26,0.88,0.23,887,0.5,237,5.800000000000001,26.9914,21.0542 +2012,11,24,21,30,18.7,1.01,0.012,0.6,43,914,360,0,0,-6.7,43,914,0,360,0.275,17.22,69.67,0.87,0.23,886,0.4,236,4.6000000000000005,18.1439,14.0583 +2012,11,24,22,30,15.4,0.97,0.011,0.6,32,764,179,0,0,-5.800000000000001,32,764,0,179,0.274,22.71,78.92,0.87,0.23,886,0.4,227,2.9000000000000004,8.3969,6.4089 +2012,11,24,23,30,11.600000000000001,0.9500000000000001,0.01,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.274,32.56,89.16,0.86,0.23,886,0.4,221,2.6,0.0000,0.0000 +2012,11,25,0,30,10.3,0.9500000000000001,0.01,0.6,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.273,32.86,100.89,0.86,0.23,886,0.4,225,3.3000000000000003,0.0000,0.0000 +2012,11,25,1,30,9.700000000000001,0.97,0.01,0.6,0,0,0,0,0,-6,0,0,0,0,0.272,32.660000000000004,112.77,0.86,0.23,885,0.4,233,3.8000000000000003,0.0000,0.0000 +2012,11,25,2,30,8.8,0.99,0.01,0.6,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.271,32.4,124.95,0.86,0.23,885,0.4,242,4,0.0000,0.0000 +2012,11,25,3,30,8,1,0.01,0.6,0,0,0,0,0,-7.9,0,0,0,0,0.27,31.560000000000002,137.18,0.86,0.23,885,0.4,250,4,0.0000,0.0000 +2012,11,25,4,30,7.1000000000000005,1.01,0.01,0.6,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.269,31.400000000000002,149.11,0.86,0.23,885,0.4,257,3.9000000000000004,0.0000,0.0000 +2012,11,25,5,30,6.300000000000001,1.01,0.01,0.6,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.268,32.03,159.77,0.87,0.23,884,0.4,265,3.8000000000000003,0.0000,0.0000 +2012,11,25,6,30,5.4,1,0.01,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.268,33.730000000000004,165.58,0.87,0.23,884,0.4,273,3.6,0.0000,0.0000 +2012,11,25,7,30,4.6000000000000005,0.97,0.01,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.268,35.68,161.21,0.87,0.23,884,0.4,282,3.4000000000000004,0.0000,0.0000 +2012,11,25,8,30,3.9000000000000004,0.9500000000000001,0.01,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.269,37.54,150.97,0.86,0.23,884,0.4,292,3.2,0.0000,0.0000 +2012,11,25,9,30,3.2,0.9400000000000001,0.01,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.269,39.59,139.15,0.86,0.23,883,0.4,298,2.8000000000000003,0.0000,0.0000 +2012,11,25,10,30,2.7,0.9500000000000001,0.01,0.6,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.27,41.25,126.95,0.86,0.23,883,0.4,301,2.6,0.0000,0.0000 +2012,11,25,11,30,2.3000000000000003,0.96,0.01,0.6,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.27,42.46,114.75,0.85,0.23,884,0.4,302,2.6,0.0000,0.0000 +2012,11,25,12,30,2.1,0.97,0.011,0.6,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.27,43.06,102.82000000000001,0.85,0.23,884,0.4,303,2.6,0.0000,0.0000 +2012,11,25,13,30,3.1,0.98,0.011,0.6,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.269,39.96,91.37,0.85,0.23,885,0.4,306,3,0.0000,0.0000 +2012,11,25,14,30,6.2,1,0.012,0.6,30,718,147,0,0,-9.1,30,718,0,147,0.269,32.61,80.61,0.85,0.23,885,0.4,314,3.6,0.0000,0.0000 +2012,11,25,15,30,9.600000000000001,1.02,0.012,0.6,41,897,331,0,0,-8.8,41,897,0,331,0.269,26.41,71.16,0.85,0.23,885,0.4,330,3.7,16.8491,13.0315 +2012,11,25,16,30,12.600000000000001,1.03,0.013000000000000001,0.6,49,972,484,0,0,-7.7,49,972,0,484,0.269,23.52,63.43,0.84,0.23,885,0.4,347,3.3000000000000003,26.1429,20.3767 +2012,11,25,17,30,14.9,1.05,0.013000000000000001,0.6,52,1008,584,0,0,-6.9,52,1008,0,584,0.269,21.63,58.18,0.85,0.23,884,0.4,354,2.6,32.5067,25.4155 +2012,11,25,18,30,16.8,1.12,0.015,0.6,56,1017,623,0,0,-6.4,56,1017,0,623,0.269,19.93,56.13,0.85,0.23,883,0.4,348,1.8,34.9861,27.3793 +2012,11,25,19,30,18.1,1.1400000000000001,0.016,0.6,56,1008,596,0,0,-6.2,56,1008,0,596,0.269,18.52,57.620000000000005,0.85,0.23,883,0.4,324,1.2000000000000002,33.1566,25.9302 +2012,11,25,20,30,18.8,1.16,0.016,0.6,53,976,505,0,0,-6.5,53,976,0,505,0.269,17.43,62.4,0.85,0.23,882,0.4,302,1,27.2913,21.2860 +2012,11,25,21,30,18.400000000000002,1.1500000000000001,0.015,0.6,45,909,360,0,0,-6.800000000000001,45,909,0,360,0.27,17.400000000000002,69.78,0.85,0.23,882,0.4,315,0.8,18.4840,14.3198 +2012,11,25,22,30,16.2,1.17,0.015,0.6,34,754,178,0,0,-2.7,34,754,0,178,0.269,27.310000000000002,79,0.85,0.23,882,0.4,190,0.7000000000000001,8.5380,6.5156 +2012,11,25,23,30,12.8,1.18,0.015,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.269,30.03,89.22,0.85,0.23,882,0.4,68,1.1,0.0000,0.0000 +2012,11,26,0,30,10.200000000000001,1.19,0.015,0.6,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.269,33.160000000000004,100.93,0.86,0.23,883,0.4,97,1.4000000000000001,0.0000,0.0000 +2012,11,26,1,30,8.5,1.19,0.015,0.6,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.27,37.09,112.81,0.86,0.23,883,0.4,121,1.5,0.0000,0.0000 +2012,11,26,2,30,7.4,1.19,0.015,0.6,0,0,0,0,0,-5.5,0,0,0,0,0.27,39.43,124.98,0.86,0.23,883,0.4,146,1.6,0.0000,0.0000 +2012,11,26,3,30,6.4,1.19,0.015,0.6,0,0,0,0,0,-6,0,0,0,0,0.271,40.85,137.21,0.86,0.23,883,0.4,175,1.6,0.0000,0.0000 +2012,11,26,4,30,5.5,1.18,0.015,0.6,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.272,41.38,149.16,0.86,0.23,883,0.4,209,1.7000000000000002,0.0000,0.0000 +2012,11,26,5,30,4.800000000000001,1.2,0.015,0.6,0,0,0,0,0,-7.7,0,0,0,0,0.273,39.93,159.87,0.87,0.23,883,0.4,239,1.9000000000000001,0.0000,0.0000 +2012,11,26,6,30,4.4,1.24,0.015,0.6,0,0,0,0,0,-8.8,0,0,0,0,0.275,37.76,165.77,0.87,0.23,883,0.4,256,2.4000000000000004,0.0000,0.0000 +2012,11,26,7,30,4.2,1.28,0.016,0.6,0,0,0,0,0,-9.3,0,0,0,0,0.275,36.89,161.4,0.87,0.23,883,0.4,265,2.9000000000000004,0.0000,0.0000 +2012,11,26,8,30,3.7,1.31,0.016,0.6,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.276,38.29,151.14000000000001,0.88,0.23,883,0.4,273,3.2,0.0000,0.0000 +2012,11,26,9,30,2.9000000000000004,1.31,0.017,0.6,0,0,0,0,0,-8.700000000000001,0,0,0,0,0.276,42.12,139.31,0.88,0.23,884,0.4,287,3.3000000000000003,0.0000,0.0000 +2012,11,26,10,30,1.9000000000000001,1.26,0.018000000000000002,0.6,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.276,49.230000000000004,127.10000000000001,0.88,0.23,885,0.5,305,3.5,0.0000,0.0000 +2012,11,26,11,30,0.8,1.19,0.019,0.6,0,0,0,0,0,-6.300000000000001,0,0,0,0,0.277,58.99,114.91,0.87,0.23,886,0.5,324,3.9000000000000004,0.0000,0.0000 +2012,11,26,12,30,-0.30000000000000004,1.1400000000000001,0.022,0.6,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.277,71.76,102.98,0.87,0.23,888,0.6000000000000001,339,4,0.0000,0.0000 +2012,11,26,13,30,-0.7000000000000001,1.1300000000000001,0.027,0.6,0,0,0,0,0,-3.3000000000000003,0,0,0,0,0.277,82.32000000000001,91.54,0.87,0.23,889,0.6000000000000001,349,4.2,0.0000,0.0000 +2012,11,26,14,30,0.7000000000000001,1.1500000000000001,0.034,0.6,37,633,139,0,1,-2.3000000000000003,37,633,0,139,0.278,80.39,80.79,0.88,0.23,891,0.6000000000000001,180,4.800000000000001,0.0000,0.0000 +2012,11,26,15,30,3.3000000000000003,1.18,0.036000000000000004,0.6,55,822,318,0,0,-1.7000000000000002,55,822,0,318,0.278,69.96000000000001,71.35000000000001,0.88,0.23,892,0.7000000000000001,8,5.300000000000001,16.7675,12.9649 +2012,11,26,16,30,5.7,1.21,0.035,0.6,63,911,468,0,0,-1.7000000000000002,63,911,0,468,0.278,59.19,63.63,0.87,0.23,893,0.7000000000000001,11,5.7,26.1070,20.3458 +2012,11,26,17,30,7.800000000000001,1.25,0.035,0.6,68,952,567,0,0,-1.9000000000000001,68,952,0,567,0.278,50.14,58.38,0.85,0.23,893,0.7000000000000001,14,6.1000000000000005,32.5276,25.4294 +2012,11,26,18,30,9.200000000000001,1.18,0.029,0.6,66,973,606,0,0,-2.4000000000000004,66,973,0,606,0.277,44.21,56.32,0.8200000000000001,0.23,893,0.7000000000000001,17,6.4,35.0664,27.4399 +2012,11,26,19,30,9.9,1.2,0.029,0.6,65,964,579,0,0,-2.7,65,964,0,579,0.276,41.050000000000004,57.78,0.8200000000000001,0.23,893,0.7000000000000001,20,6.4,33.2948,26.0362 +2012,11,26,20,30,9.8,1.21,0.029,0.6,61,924,487,0,0,-3,61,924,0,487,0.275,40.59,62.53,0.8200000000000001,0.23,894,0.8,23,6.1000000000000005,27.4293,21.3916 +2012,11,26,21,30,8.700000000000001,1.2,0.029,0.6,53,848,345,0,0,-3.2,53,848,0,345,0.275,43.07,69.88,0.8300000000000001,0.23,894,0.8,23,5.7,18.4660,14.3038 +2012,11,26,22,30,6.800000000000001,1.18,0.028,0.6,39,683,168,0,0,-3.4000000000000004,39,683,0,168,0.276,48.22,79.07000000000001,0.84,0.23,895,0.8,24,4.7,8.4888,6.4773 +2012,11,26,23,30,4.3,1.16,0.026000000000000002,0.6,0,0,0,0,0,-3.7,0,0,0,0,0.277,56.2,89.25,0.84,0.23,896,0.8,26,3.3000000000000003,0.0000,0.0000 +2012,11,27,0,30,2.4000000000000004,1.1300000000000001,0.025,0.6,0,0,0,0,0,-4,0,0,0,0,0.279,62.58,100.97,0.84,0.23,897,0.7000000000000001,28,2.6,0.0000,0.0000 +2012,11,27,1,30,1.2000000000000002,1.1,0.025,0.6,0,0,0,0,0,-4.5,0,0,0,0,0.281,65.83,112.84,0.85,0.23,898,0.7000000000000001,33,2.3000000000000003,0.0000,0.0000 +2012,11,27,2,30,0,1.07,0.026000000000000002,0.6,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.28200000000000003,68.75,125,0.85,0.23,899,0.7000000000000001,41,1.9000000000000001,0.0000,0.0000 +2012,11,27,3,30,-0.9,1.06,0.027,0.6,0,0,0,0,0,-5.7,0,0,0,0,0.281,70.11,137.24,0.85,0.23,899,0.6000000000000001,49,1.6,0.0000,0.0000 +2012,11,27,4,30,-1.7000000000000002,1.06,0.027,0.6,0,0,0,0,0,-6.2,0,0,0,0,0.281,71.44,149.20000000000002,0.85,0.23,899,0.6000000000000001,51,1.3,0.0000,0.0000 +2012,11,27,5,30,-2.2,1.08,0.027,0.6,0,0,0,0,0,-6.6000000000000005,0,0,0,0,0.281,71.78,159.95000000000002,0.86,0.23,899,0.6000000000000001,46,1.1,0.0000,0.0000 +2012,11,27,6,30,-2.5,1.11,0.027,0.6,0,0,0,0,0,-6.9,0,0,0,0,0.281,71.73,165.94,0.86,0.23,899,0.6000000000000001,30,0.9,0.0000,0.0000 +2012,11,27,7,30,-2.8000000000000003,1.1300000000000001,0.028,0.6,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.281,72.38,161.59,0.86,0.23,899,0.6000000000000001,181,0.8,0.0000,0.0000 +2012,11,27,8,30,-3.3000000000000003,1.1300000000000001,0.027,0.6,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.279,74.73,151.31,0.87,0.23,899,0.6000000000000001,325,0.8,0.0000,0.0000 +2012,11,27,9,30,-3.8000000000000003,1.1300000000000001,0.027,0.6,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.275,77.59,139.47,0.87,0.23,898,0.6000000000000001,293,0.9,0.0000,0.0000 +2012,11,27,10,30,-4.1000000000000005,1.1400000000000001,0.027,0.6,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.273,79.87,127.26,0.87,0.23,898,0.6000000000000001,268,1,0.0000,0.0000 +2012,11,27,11,30,-4.3,1.16,0.026000000000000002,0.6,0,0,0,0,0,-6.9,0,0,0,0,0.271,81.85000000000001,115.07000000000001,0.87,0.23,898,0.6000000000000001,250,1.2000000000000002,0.0000,0.0000 +2012,11,27,12,30,-4.2,1.17,0.025,0.6,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.271,82.26,103.14,0.87,0.23,898,0.6000000000000001,238,1.5,0.0000,0.0000 +2012,11,27,13,30,-3.1,1.18,0.025,0.6,0,0,0,0,0,-6.5,0,0,0,0,0.27,77.09,91.71000000000001,0.86,0.23,898,0.6000000000000001,233,2.3000000000000003,0.0000,0.0000 +2012,11,27,14,30,-0.4,1.17,0.024,0.6,35,662,139,0,0,-6.300000000000001,35,662,0,139,0.269,64.63,80.96000000000001,0.86,0.23,898,0.5,226,3.4000000000000004,0.0000,0.0000 +2012,11,27,15,30,3.2,1.1400000000000001,0.024,0.6,50,857,321,0,1,-6,50,857,0,321,0.268,50.980000000000004,71.54,0.86,0.23,898,0.5,219,4.1000000000000005,16.0808,12.4306 +2012,11,27,16,30,6.9,1.12,0.023,0.6,57,942,473,0,0,-5.4,57,942,0,473,0.267,41.2,63.83,0.86,0.23,897,0.5,218,4.6000000000000005,25.2091,19.6431 +2012,11,27,17,30,10.100000000000001,1.1,0.022,0.6,62,992,579,0,0,-4.5,62,992,0,579,0.265,35.49,58.58,0.87,0.23,896,0.4,220,4.9,31.5466,24.6600 +2012,11,27,18,30,12.600000000000001,1.17,0.024,0.6,64,1002,618,0,0,-4.1000000000000005,64,1002,0,618,0.264,31.060000000000002,56.5,0.87,0.23,895,0.4,224,5,34.0778,26.6641 +2012,11,27,19,30,14.5,1.17,0.024,0.6,63,994,591,0,0,-4.2,63,994,0,591,0.262,27.240000000000002,57.94,0.87,0.23,894,0.4,228,4.9,32.3179,25.2704 +2012,11,27,20,30,15.600000000000001,1.17,0.023,0.6,59,963,501,0,0,-4.7,59,963,0,501,0.26,24.35,62.660000000000004,0.87,0.23,893,0.4,232,4.6000000000000005,26.4289,20.6097 +2012,11,27,21,30,15.200000000000001,1.16,0.023,0.6,52,903,361,0,0,-5.4,52,903,0,361,0.258,23.740000000000002,69.98,0.87,0.23,893,0.30000000000000004,229,3.5,17.6808,13.6939 +2012,11,27,22,30,11.700000000000001,1.1500000000000001,0.023,0.6,38,742,178,0,0,-4.6000000000000005,38,742,0,178,0.256,31.78,79.14,0.87,0.23,893,0.30000000000000004,216,2.3000000000000003,8.0109,6.1119 +2012,11,27,23,30,8,1.1300000000000001,0.023,0.6,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.256,42.04,89.3,0.87,0.23,893,0.30000000000000004,206,2.2,0.0000,0.0000 +2012,11,28,0,30,6.800000000000001,1.12,0.023,0.6,0,0,0,0,0,-4.9,0,0,0,0,0.256,43.22,101.01,0.87,0.22,893,0.30000000000000004,207,2.8000000000000003,0.0000,0.0000 +2012,11,28,1,30,6.4,1.11,0.023,0.6,0,0,0,0,0,-4.7,0,0,0,0,0.257,44.86,112.86,0.87,0.22,893,0.30000000000000004,214,3.5,0.0000,0.0000 +2012,11,28,2,30,5.6000000000000005,1.11,0.022,0.6,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.258,47.81,125.02,0.87,0.22,893,0.30000000000000004,222,3.8000000000000003,0.0000,0.0000 +2012,11,28,3,30,4.7,1.1,0.022,0.6,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.258,50.81,137.26,0.87,0.22,893,0.30000000000000004,229,3.9000000000000004,0.0000,0.0000 +2012,11,28,4,30,3.7,1.09,0.023,0.6,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.258,53.75,149.23,0.87,0.22,893,0.30000000000000004,236,3.9000000000000004,0.0000,0.0000 +2012,11,28,5,30,2.9000000000000004,1.08,0.023,0.6,0,0,0,0,0,-5.2,0,0,0,0,0.257,55.050000000000004,160.03,0.87,0.22,893,0.30000000000000004,243,3.8000000000000003,0.0000,0.0000 +2012,11,28,6,30,2.2,1.08,0.023,0.6,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.255,54.42,166.11,0.87,0.22,893,0.30000000000000004,250,3.7,0.0000,0.0000 +2012,11,28,7,30,1.5,1.07,0.023,0.6,0,0,0,0,0,-7,0,0,0,0,0.254,53.03,161.78,0.87,0.22,894,0.30000000000000004,255,3.5,0.0000,0.0000 +2012,11,28,8,30,0.9,1.07,0.022,0.6,0,0,0,0,0,-8.1,0,0,0,0,0.253,51.22,151.47,0.87,0.22,894,0.30000000000000004,259,3.4000000000000004,0.0000,0.0000 +2012,11,28,9,30,0.2,1.08,0.022,0.6,0,0,0,0,0,-8.9,0,0,0,0,0.253,50.31,139.62,0.87,0.22,894,0.30000000000000004,263,3.1,0.0000,0.0000 +2012,11,28,10,30,-0.5,1.1,0.022,0.6,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.253,50.25,127.41,0.87,0.22,894,0.30000000000000004,268,2.9000000000000004,0.0000,0.0000 +2012,11,28,11,30,-1,1.1,0.021,0.6,0,0,0,0,0,-9.9,0,0,0,0,0.253,50.86,115.22,0.87,0.22,894,0.30000000000000004,274,2.7,0.0000,0.0000 +2012,11,28,12,30,-1.5,1.11,0.021,0.6,0,0,0,0,0,-10,0,0,0,0,0.252,52.39,103.3,0.86,0.22,894,0.30000000000000004,279,2.6,0.0000,0.0000 +2012,11,28,13,30,-0.9,1.1,0.021,0.6,0,0,0,0,0,-10,0,0,0,0,0.251,50.01,91.88,0.86,0.22,895,0.30000000000000004,282,3,0.0000,0.0000 +2012,11,28,14,30,1.6,1.11,0.021,0.6,34,691,140,7,4,-10,86,109,7,103,0.251,41.9,81.14,0.86,0.22,895,0.30000000000000004,283,3.4000000000000004,0.0000,0.0000 +2012,11,28,15,30,5.2,1.12,0.021,0.6,48,885,326,0,0,-10,48,885,0,326,0.251,32.56,71.72,0.86,0.22,895,0.30000000000000004,278,3.1,16.2041,12.5225 +2012,11,28,16,30,9.3,1.1400000000000001,0.022,0.6,57,966,480,0,0,-9.9,57,966,0,480,0.25,24.7,64.02,0.87,0.22,895,0.30000000000000004,269,2.8000000000000003,25.4428,19.8223 +2012,11,28,17,30,12.9,1.17,0.022,0.6,61,1004,582,0,0,-10,61,1004,0,582,0.249,19.26,58.76,0.87,0.22,894,0.30000000000000004,257,2.9000000000000004,32.1791,25.1520 +2012,11,28,18,30,15.9,1.22,0.024,0.6,64,1015,622,0,0,-10,64,1015,0,622,0.248,15.89,56.67,0.88,0.22,893,0.30000000000000004,246,3.4000000000000004,34.7216,27.1658 +2012,11,28,19,30,18,1.25,0.025,0.6,64,1005,595,0,0,-10.200000000000001,64,1005,0,595,0.247,13.75,58.09,0.88,0.22,892,0.30000000000000004,239,4,32.9597,25.7703 +2012,11,28,20,30,19.1,1.27,0.026000000000000002,0.6,61,971,505,0,1,-10.4,61,971,0,505,0.247,12.61,62.78,0.89,0.22,891,0.30000000000000004,236,4.2,27.1653,21.1820 +2012,11,28,21,30,18.1,1.27,0.025,0.6,53,901,360,0,1,-10.100000000000001,53,901,0,360,0.247,13.76,70.07000000000001,0.89,0.22,891,0.30000000000000004,230,3.1,18.4843,14.3144 +2012,11,28,22,30,14.3,1.29,0.026000000000000002,0.6,39,722,175,0,4,-5.300000000000001,102,11,0,104,0.247,25.310000000000002,79.21000000000001,0.9,0.22,891,0.4,220,2,8.4867,6.4743 +2012,11,28,23,30,11.100000000000001,1.3,0.027,0.6,0,0,0,7,7,-5.300000000000001,0,0,7,0,0.247,31.34,89.34,0.9,0.22,891,0.4,214,2.4000000000000004,0.0000,0.0000 +2012,11,29,0,30,10.700000000000001,1.3,0.027,0.6,0,0,0,0,7,-5.9,0,0,0,0,0.248,30.66,101.03,0.9,0.23,891,0.4,215,3.4000000000000004,0.0000,0.0000 +2012,11,29,1,30,10.700000000000001,1.29,0.027,0.6,0,0,0,0,7,-5.9,0,0,0,0,0.249,30.66,112.88,0.9,0.23,891,0.5,218,4.2,0.0000,0.0000 +2012,11,29,2,30,10.100000000000001,1.31,0.026000000000000002,0.6,0,0,0,0,0,-6,0,0,0,0,0.251,31.71,125.03,0.9,0.23,891,0.5,220,4.6000000000000005,0.0000,0.0000 +2012,11,29,3,30,9.600000000000001,1.34,0.025,0.6,0,0,0,0,4,-6.2,0,0,0,0,0.253,32.24,137.27,0.9,0.23,891,0.5,225,5,0.0000,0.0000 +2012,11,29,4,30,9.200000000000001,1.35,0.025,0.6,0,0,0,0,1,-6.300000000000001,0,0,0,0,0.253,32.77,149.26,0.9,0.23,891,0.6000000000000001,228,5.1000000000000005,0.0000,0.0000 +2012,11,29,5,30,8.6,1.36,0.024,0.6,0,0,0,0,0,-6.2,0,0,0,0,0.253,34.63,160.1,0.9,0.23,891,0.6000000000000001,230,4.9,0.0000,0.0000 +2012,11,29,6,30,7.800000000000001,1.36,0.023,0.6,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.254,38.28,166.27,0.9,0.23,890,0.7000000000000001,232,4.7,0.0000,0.0000 +2012,11,29,7,30,7,1.35,0.023,0.6,0,0,0,0,0,-4.7,0,0,0,0,0.256,43.12,161.96,0.9,0.23,890,0.8,235,4.6000000000000005,0.0000,0.0000 +2012,11,29,8,30,6.300000000000001,1.34,0.022,0.6,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.26,48.43,151.64000000000001,0.9,0.23,890,0.8,237,4.3,0.0000,0.0000 +2012,11,29,9,30,5.800000000000001,1.33,0.022,0.6,0,0,0,0,0,-3,0,0,0,0,0.262,53.11,139.78,0.9,0.23,890,0.8,240,4.1000000000000005,0.0000,0.0000 +2012,11,29,10,30,5.4,1.33,0.021,0.6,0,0,0,0,0,-2.5,0,0,0,0,0.263,56.86,127.56,0.89,0.23,889,0.8,244,4,0.0000,0.0000 +2012,11,29,11,30,5.1000000000000005,1.34,0.02,0.6,0,0,0,0,0,-2.1,0,0,0,0,0.262,59.49,115.38,0.89,0.23,889,0.8,249,4.1000000000000005,0.0000,0.0000 +2012,11,29,12,30,4.800000000000001,1.35,0.019,0.6,0,0,0,0,0,-2,0,0,0,0,0.261,61.24,103.46000000000001,0.89,0.23,889,0.8,254,4.2,0.0000,0.0000 +2012,11,29,13,30,5,1.36,0.018000000000000002,0.6,0,0,0,0,0,-2.2,0,0,0,0,0.261,59.83,92.05,0.88,0.23,889,0.7000000000000001,259,4.4,0.0000,0.0000 +2012,11,29,14,30,6.7,1.3800000000000001,0.017,0.6,31,658,130,0,0,-2.6,31,658,0,130,0.261,51.660000000000004,81.32000000000001,0.88,0.23,889,0.7000000000000001,262,4.6000000000000005,0.0000,0.0000 +2012,11,29,15,30,10.100000000000001,1.4000000000000001,0.017,0.6,45,847,308,0,0,-3.1,45,847,0,308,0.261,39.54,71.91,0.88,0.23,889,0.8,263,4.4,16.4290,12.6931 +2012,11,29,16,30,14.4,1.42,0.018000000000000002,0.6,53,929,457,0,0,-3.3000000000000003,53,929,0,457,0.26,29.18,64.2,0.88,0.23,889,0.8,269,4.5,25.7848,20.0858 +2012,11,29,17,30,18.400000000000002,1.43,0.018000000000000002,0.6,57,969,557,0,0,-3.8000000000000003,57,969,0,557,0.258,21.830000000000002,58.95,0.88,0.23,889,0.8,279,4.800000000000001,32.3138,25.2549 +2012,11,29,18,30,20.700000000000003,1.46,0.022,0.6,62,977,596,0,0,-4.1000000000000005,62,977,0,596,0.256,18.51,56.84,0.88,0.23,888,0.8,284,4.6000000000000005,34.9168,27.3164 +2012,11,29,19,30,21.5,1.47,0.023,0.6,61,967,571,0,0,-4.4,61,967,0,571,0.254,17.23,58.24,0.88,0.23,887,0.8,283,4.2,33.1563,25.9220 +2012,11,29,20,30,21.5,1.49,0.023,0.6,58,934,483,0,0,-4.6000000000000005,58,934,0,483,0.252,17.05,62.89,0.88,0.23,887,0.8,280,3.8000000000000003,27.3603,21.3323 +2012,11,29,21,30,20.400000000000002,1.5,0.024,0.6,51,859,343,0,0,-4.5,51,859,0,343,0.248,18.28,70.15,0.88,0.23,887,0.8,277,2.6,18.4182,14.2617 +2012,11,29,22,30,17.3,1.52,0.025,0.6,38,692,167,0,0,-0.7000000000000001,38,692,0,167,0.246,29.46,79.27,0.88,0.23,887,0.8,269,1.5,4.9581,3.7820 +2012,11,29,23,30,14.3,1.54,0.025,0.6,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.244,33.94,89.38,0.88,0.23,887,0.8,259,1.4000000000000001,0.0000,0.0000 +2012,11,30,0,30,12.600000000000001,1.55,0.026000000000000002,0.6,0,0,0,0,0,-2.8000000000000003,0,0,0,0,0.242,34.25,101.06,0.88,0.23,887,0.8,251,1.5,0.0000,0.0000 +2012,11,30,1,30,11.200000000000001,1.57,0.026000000000000002,0.6,0,0,0,0,0,-3.1,0,0,0,0,0.24,36.72,112.89,0.88,0.23,888,0.8,250,1.6,0.0000,0.0000 +2012,11,30,2,30,10,1.57,0.026000000000000002,0.6,0,0,0,0,0,-3.5,0,0,0,0,0.23900000000000002,38.61,125.04,0.88,0.23,888,0.8,255,1.7000000000000002,0.0000,0.0000 +2012,11,30,3,30,8.9,1.58,0.026000000000000002,0.6,0,0,0,0,0,-3.8000000000000003,0,0,0,0,0.23900000000000002,40.44,137.28,0.88,0.23,888,0.7000000000000001,265,2.1,0.0000,0.0000 +2012,11,30,4,30,8,1.58,0.026000000000000002,0.6,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.24,42.15,149.28,0.88,0.23,888,0.7000000000000001,273,2.4000000000000004,0.0000,0.0000 +2012,11,30,5,30,7.1000000000000005,1.58,0.026000000000000002,0.6,0,0,0,0,0,-4.3,0,0,0,0,0.241,44.09,160.16,0.88,0.23,888,0.7000000000000001,279,2.6,0.0000,0.0000 +2012,11,30,6,30,6.300000000000001,1.58,0.026000000000000002,0.6,0,0,0,0,0,-4.5,0,0,0,0,0.242,46.050000000000004,166.43,0.88,0.23,888,0.7000000000000001,282,2.7,0.0000,0.0000 +2012,11,30,7,30,5.6000000000000005,1.59,0.026000000000000002,0.6,0,0,0,0,0,-4.5,0,0,0,0,0.244,48.230000000000004,162.14000000000001,0.88,0.23,888,0.7000000000000001,284,2.9000000000000004,0.0000,0.0000 +2012,11,30,8,30,5,1.59,0.026000000000000002,0.6,0,0,0,0,1,-4.5,0,0,0,0,0.247,50.4,151.8,0.88,0.23,888,0.7000000000000001,286,3.1,0.0000,0.0000 +2012,11,30,9,30,4.5,1.58,0.027,0.6,0,0,0,0,4,-4.5,0,0,0,0,0.249,52.15,139.93,0.88,0.23,888,0.8,286,3.3000000000000003,0.0000,0.0000 +2012,11,30,10,30,4,1.56,0.027,0.6,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.25,53.6,127.71000000000001,0.88,0.23,888,0.8,286,3.3000000000000003,0.0000,0.0000 +2012,11,30,11,30,3.7,1.55,0.027,0.6,0,0,0,0,1,-4.7,0,0,0,0,0.251,54.17,115.53,0.88,0.23,888,0.8,287,3.4000000000000004,0.0000,0.0000 +2012,11,30,12,30,3.5,1.53,0.027,0.6,0,0,0,0,7,-4.9,0,0,0,0,0.252,54.28,103.62,0.88,0.23,889,0.8,289,3.3000000000000003,0.0000,0.0000 +2012,11,30,13,30,4.1000000000000005,1.52,0.026000000000000002,0.6,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.254,51.35,92.21000000000001,0.88,0.23,889,0.8,291,3.3000000000000003,0.0000,0.0000 +2012,11,30,14,30,6.5,1.51,0.026000000000000002,0.6,34,624,126,7,7,-5,77,35,7,82,0.255,43.480000000000004,81.49,0.89,0.23,889,0.8,292,3.6,0.0000,0.0000 +2012,11,30,15,30,10.100000000000001,1.5,0.025,0.6,49,825,303,0,8,-4.9,124,386,0,243,0.255,34.39,72.08,0.89,0.23,889,0.9,296,3.5,15.4945,11.9678 +2012,11,30,16,30,13.8,1.49,0.024,0.6,57,914,452,0,8,-4.800000000000001,177,402,0,350,0.255,27.3,64.38,0.89,0.23,889,0.9,299,3,24.5179,19.0963 +2012,11,30,17,30,17.1,1.49,0.023,0.6,61,956,552,0,1,-4.5,61,956,0,552,0.255,22.47,59.120000000000005,0.89,0.23,889,0.9,296,2.7,30.8931,24.1422 +2012,11,30,18,30,19.8,1.47,0.019,0.6,59,980,593,7,2,-4.4,226,640,7,574,0.253,19.14,57,0.88,0.23,888,0.8,284,2.6,33.4286,26.1502 +2012,11,30,19,30,21.6,1.46,0.018000000000000002,0.6,57,974,568,0,8,-4.5,175,568,0,473,0.251,17.080000000000002,58.370000000000005,0.88,0.23,887,0.8,273,3,31.7932,24.8546 +2012,11,30,20,30,22.3,1.44,0.018000000000000002,0.6,54,941,481,0,7,-4.4,236,197,0,325,0.248,16.47,63,0.88,0.23,886,0.8,265,3.3000000000000003,26.1490,20.3864 +2012,11,30,21,30,21.1,1.43,0.018000000000000002,0.6,47,869,341,0,1,-3.8000000000000003,47,869,0,341,0.247,18.43,70.23,0.88,0.23,886,0.8,258,2.5,17.5359,13.5771 +2012,11,30,22,30,17.400000000000002,1.41,0.018000000000000002,0.6,35,707,166,7,8,0,86,264,7,135,0.248,30.740000000000002,79.32000000000001,0.88,0.23,886,0.8,247,1.6,7.9609,6.0721 +2012,11,30,23,30,13.600000000000001,1.3800000000000001,0.019,0.6,0,0,0,7,7,-0.4,0,0,7,0,0.25,38.22,89.41,0.88,0.23,886,0.8,238,1.6,0.0000,0.0000 +2012,12,1,0,30,11.9,1.34,0.02,0.62,0,0,0,0,1,-1.7000000000000002,0,0,0,0,0.252,38.71,101.07000000000001,0.88,0.23,886,0.8,235,1.9000000000000001,0.0000,0.0000 +2012,12,1,1,30,11.4,1.32,0.024,0.62,0,0,0,0,7,-2.5,0,0,0,0,0.252,37.81,112.89,0.89,0.23,886,0.8,239,2.4000000000000004,0.0000,0.0000 +2012,12,1,2,30,11.100000000000001,1.33,0.028,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.254,36.39,125.04,0.9,0.23,886,0.8,245,3.2,0.0000,0.0000 +2012,12,1,3,30,10.9,1.33,0.031,0.62,0,0,0,0,7,-3.8000000000000003,0,0,0,0,0.255,35.49,137.28,0.9,0.23,886,0.8,251,3.9000000000000004,0.0000,0.0000 +2012,12,1,4,30,10.4,1.32,0.031,0.62,0,0,0,0,7,-4,0,0,0,0,0.256,36.02,149.29,0.9,0.23,886,0.8,256,4.3,0.0000,0.0000 +2012,12,1,5,30,9.8,1.29,0.029,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.257,37.18,160.21,0.9,0.23,886,0.8,258,4.4,0.0000,0.0000 +2012,12,1,6,30,9.3,1.25,0.028,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.256,38.25,166.57,0.91,0.23,886,0.7000000000000001,258,4.4,0.0000,0.0000 +2012,12,1,7,30,8.9,1.22,0.027,0.62,0,0,0,0,7,-4.4,0,0,0,0,0.256,38.71,162.32,0.91,0.23,885,0.7000000000000001,256,4.5,0.0000,0.0000 +2012,12,1,8,30,8.700000000000001,1.2,0.025,0.62,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.256,38.27,151.96,0.91,0.23,885,0.7000000000000001,256,4.7,0.0000,0.0000 +2012,12,1,9,30,8.6,1.18,0.024,0.62,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.256,37.54,140.08,0.91,0.23,885,0.7000000000000001,258,4.800000000000001,0.0000,0.0000 +2012,12,1,10,30,8.6,1.17,0.023,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.257,36.94,127.86,0.91,0.23,885,0.7000000000000001,261,4.9,0.0000,0.0000 +2012,12,1,11,30,8.6,1.16,0.022,0.62,0,0,0,0,7,-5.300000000000001,0,0,0,0,0.258,36.94,115.68,0.91,0.23,885,0.7000000000000001,264,5,0.0000,0.0000 +2012,12,1,12,30,8.5,1.1500000000000001,0.021,0.62,0,0,0,0,7,-5,0,0,0,0,0.26,38.03,103.78,0.91,0.23,886,0.7000000000000001,267,5,0.0000,0.0000 +2012,12,1,13,30,8.9,1.1500000000000001,0.021,0.62,0,0,0,0,7,-4.5,0,0,0,0,0.262,38.51,92.37,0.91,0.23,886,0.7000000000000001,270,5.2,0.0000,0.0000 +2012,12,1,14,30,10.600000000000001,1.1400000000000001,0.02,0.62,32,638,125,7,7,-3.8000000000000003,69,16,7,71,0.262,36.09,81.65,0.91,0.23,886,0.7000000000000001,272,5.6000000000000005,0.0000,0.0000 +2012,12,1,15,30,13.8,1.1400000000000001,0.02,0.62,47,842,304,0,7,-3,113,17,0,118,0.263,31.21,72.26,0.91,0.23,887,0.7000000000000001,274,5.7,12.2053,9.4249 +2012,12,1,16,30,17.5,1.1400000000000001,0.02,0.62,55,929,454,0,7,-1.9000000000000001,230,155,0,296,0.264,26.69,64.56,0.91,0.23,887,0.7000000000000001,283,6.300000000000001,18.7532,14.6042 +2012,12,1,17,30,20.400000000000002,1.1500000000000001,0.019,0.62,59,965,551,0,6,-1.8,249,151,0,326,0.266,22.35,59.29,0.9,0.23,886,0.8,293,6.800000000000001,30.5866,23.9006 +2012,12,1,18,30,21.700000000000003,1.11,0.018000000000000002,0.62,59,974,588,0,7,-3,239,388,0,450,0.269,18.91,57.160000000000004,0.91,0.23,886,0.9,294,6.4,32.1686,25.1627 +2012,12,1,19,30,22,1.12,0.019,0.62,59,960,561,0,8,-3,187,565,0,482,0.272,18.6,58.5,0.91,0.23,885,1,291,5.9,26.3181,20.5730 +2012,12,1,20,30,22,1.1300000000000001,0.018000000000000002,0.62,55,933,477,0,0,-2.6,55,933,0,477,0.274,19.18,63.1,0.9,0.23,885,0.9,289,5.300000000000001,17.5821,13.7063 +2012,12,1,21,30,21.1,1.12,0.016,0.62,46,864,337,0,0,-2.3000000000000003,46,864,0,337,0.276,20.69,70.3,0.89,0.23,885,0.9,289,3.9000000000000004,17.4211,13.4868 +2012,12,1,22,30,17.8,1.11,0.016,0.62,34,707,165,0,0,-0.7000000000000001,34,707,0,165,0.277,28.61,79.36,0.89,0.23,885,0.8,290,2.1,6.4352,4.9080 +2012,12,1,23,30,14.5,1.12,0.016,0.62,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.277,37.97,89.43,0.89,0.23,886,0.8,295,1.4000000000000001,0.0000,0.0000 +2012,12,2,0,30,13.200000000000001,1.12,0.017,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.276,38.160000000000004,101.08,0.89,0.23,887,0.8,310,1.4000000000000001,0.0000,0.0000 +2012,12,2,1,30,12.5,1.1300000000000001,0.017,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.273,38.85,112.89,0.89,0.23,887,0.7000000000000001,335,1.2000000000000002,0.0000,0.0000 +2012,12,2,2,30,11.600000000000001,1.1400000000000001,0.018000000000000002,0.62,0,0,0,0,0,-1.2000000000000002,0,0,0,0,0.269,41.15,125.03,0.89,0.23,888,0.7000000000000001,187,1.1,0.0000,0.0000 +2012,12,2,3,30,10.8,1.1500000000000001,0.019,0.62,0,0,0,0,1,-1.1,0,0,0,0,0.266,43.75,137.27,0.9,0.23,888,0.7000000000000001,36,1,0.0000,0.0000 +2012,12,2,4,30,10.200000000000001,1.16,0.019,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.266,46.06,149.3,0.9,0.23,888,0.7000000000000001,60,0.9,0.0000,0.0000 +2012,12,2,5,30,9.9,1.17,0.019,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.267,47.480000000000004,160.26,0.9,0.23,888,0.7000000000000001,77,0.8,0.0000,0.0000 +2012,12,2,6,30,9.8,1.17,0.019,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.269,48.06,166.71,0.89,0.23,889,0.7000000000000001,89,0.7000000000000001,0.0000,0.0000 +2012,12,2,7,30,9.8,1.18,0.019,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.269,48.050000000000004,162.49,0.89,0.23,889,0.7000000000000001,99,0.6000000000000001,0.0000,0.0000 +2012,12,2,8,30,9.600000000000001,1.18,0.019,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.269,48.61,152.11,0.9,0.23,889,0.7000000000000001,119,0.5,0.0000,0.0000 +2012,12,2,9,30,9.1,1.18,0.019,0.62,0,0,0,0,0,-0.8,0,0,0,0,0.267,50.08,140.23,0.9,0.23,889,0.7000000000000001,156,0.5,0.0000,0.0000 +2012,12,2,10,30,8.200000000000001,1.18,0.02,0.62,0,0,0,0,0,-0.9,0,0,0,0,0.266,52.71,128.01,0.9,0.23,888,0.7000000000000001,200,0.7000000000000001,0.0000,0.0000 +2012,12,2,11,30,7.1000000000000005,1.18,0.02,0.62,0,0,0,0,0,-1.1,0,0,0,0,0.266,55.980000000000004,115.83,0.9,0.23,888,0.7000000000000001,230,0.9,0.0000,0.0000 +2012,12,2,12,30,5.800000000000001,1.19,0.021,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.266,59.94,103.93,0.9,0.23,889,0.7000000000000001,248,1.2000000000000002,0.0000,0.0000 +2012,12,2,13,30,5.5,1.19,0.021,0.62,0,0,0,0,1,-1.7000000000000002,0,0,0,0,0.266,59.64,92.53,0.9,0.23,889,0.7000000000000001,262,1.4000000000000001,0.0000,0.0000 +2012,12,2,14,30,7.800000000000001,1.2,0.021,0.62,32,629,122,7,7,-1.9000000000000001,75,136,7,95,0.266,50.160000000000004,81.82000000000001,0.91,0.23,889,0.7000000000000001,266,2.5,0.0000,0.0000 +2012,12,2,15,30,11.200000000000001,1.21,0.02,0.62,47,840,301,0,8,-2,153,224,0,221,0.265,39.87,72.43,0.91,0.23,889,0.7000000000000001,259,3.3000000000000003,5.9169,4.5678 +2012,12,2,16,30,14.9,1.22,0.02,0.62,55,928,451,0,3,-1.6,251,202,0,337,0.263,32.13,64.73,0.91,0.23,889,0.7000000000000001,249,3.5,15.8392,12.3332 +2012,12,2,17,30,18.7,1.22,0.02,0.62,60,969,552,0,4,-1.6,298,244,0,422,0.262,25.28,59.46,0.91,0.23,888,0.7000000000000001,246,4.6000000000000005,18.0465,14.1004 +2012,12,2,18,30,21.3,1.18,0.019,0.62,60,984,592,0,8,-3.2,178,593,0,498,0.261,19.14,57.31,0.91,0.23,887,0.7000000000000001,247,5.800000000000001,25.1987,19.7093 +2012,12,2,19,30,22.5,1.16,0.018000000000000002,0.62,59,977,567,0,8,-4.3,174,576,0,474,0.26,16.35,58.620000000000005,0.91,0.23,886,0.7000000000000001,245,6.4,26.7998,20.9483 +2012,12,2,20,30,22.900000000000002,1.1400000000000001,0.017,0.62,54,946,481,0,7,-4.9,142,670,0,445,0.259,15.24,63.190000000000005,0.9,0.23,885,0.7000000000000001,239,6.5,25.7876,20.1016 +2012,12,2,21,30,22.200000000000003,1.25,0.024,0.62,51,856,339,7,7,-5.4,115,557,7,302,0.26,15.33,70.36,0.9,0.23,885,0.8,233,5.7,17.2058,13.3190 +2012,12,2,22,30,19.200000000000003,1.24,0.021,0.62,37,696,165,0,3,-5.300000000000001,103,26,0,108,0.261,18.53,79.4,0.89,0.23,884,0.8,225,4.2,7.8649,5.9981 +2012,12,2,23,30,15.8,1.25,0.019,0.62,0,0,0,7,4,-4.6000000000000005,0,0,7,0,0.263,24.35,89.45,0.89,0.23,884,0.8,220,3.5,0.0000,0.0000 +2012,12,3,0,30,14.200000000000001,1.28,0.018000000000000002,0.62,0,0,0,0,0,-5,0,0,0,0,0.264,26.18,101.09,0.89,0.23,885,0.8,219,3.8000000000000003,0.0000,0.0000 +2012,12,3,1,30,13.3,1.3,0.018000000000000002,0.62,0,0,0,0,0,-5.5,0,0,0,0,0.265,26.61,112.89,0.88,0.23,885,0.7000000000000001,222,4.1000000000000005,0.0000,0.0000 +2012,12,3,2,30,12.4,1.31,0.018000000000000002,0.62,0,0,0,0,0,-6.1000000000000005,0,0,0,0,0.265,27.04,125.02,0.88,0.23,885,0.7000000000000001,225,4.2,0.0000,0.0000 +2012,12,3,3,30,11.5,1.31,0.019,0.62,0,0,0,0,0,-6.5,0,0,0,0,0.264,27.69,137.26,0.88,0.23,884,0.6000000000000001,228,4.4,0.0000,0.0000 +2012,12,3,4,30,10.600000000000001,1.3,0.019,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.264,28.92,149.3,0.89,0.23,884,0.6000000000000001,230,4.7,0.0000,0.0000 +2012,12,3,5,30,9.8,1.28,0.019,0.62,0,0,0,0,0,-6.7,0,0,0,0,0.263,30.59,160.3,0.88,0.23,884,0.6000000000000001,231,4.9,0.0000,0.0000 +2012,12,3,6,30,9.200000000000001,1.25,0.018000000000000002,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.262,31.57,166.84,0.88,0.23,883,0.6000000000000001,233,5,0.0000,0.0000 +2012,12,3,7,30,8.700000000000001,1.23,0.017,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.261,31.98,162.66,0.88,0.23,883,0.7000000000000001,235,5,0.0000,0.0000 +2012,12,3,8,30,8.5,1.21,0.016,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.26,31.720000000000002,152.27,0.88,0.23,883,0.8,239,5.1000000000000005,0.0000,0.0000 +2012,12,3,9,30,8.5,1.18,0.015,0.62,0,0,0,0,0,-7.6000000000000005,0,0,0,0,0.26,31.32,140.38,0.88,0.23,883,0.9,245,5,0.0000,0.0000 +2012,12,3,10,30,8.6,1.1400000000000001,0.015,0.62,0,0,0,0,0,-7.4,0,0,0,0,0.259,31.42,128.16,0.88,0.23,883,0.9,250,4.9,0.0000,0.0000 +2012,12,3,11,30,8.9,1.11,0.015,0.62,0,0,0,0,1,-6.9,0,0,0,0,0.258,32,115.98,0.88,0.23,883,1,255,4.9,0.0000,0.0000 +2012,12,3,12,30,9.200000000000001,1.1300000000000001,0.015,0.62,0,0,0,0,7,-6.2,0,0,0,0,0.257,33.13,104.08,0.88,0.23,884,1,259,5.1000000000000005,0.0000,0.0000 +2012,12,3,13,30,10,1.19,0.014,0.62,0,0,0,0,8,-5.2,0,0,0,0,0.256,33.94,92.69,0.88,0.23,884,1.1,261,5.4,0.0000,0.0000 +2012,12,3,14,30,12.100000000000001,1.23,0.015,0.62,29,617,115,0,1,-3.7,29,617,0,115,0.255,32.94,81.98,0.89,0.23,884,1.2000000000000002,259,5.800000000000001,0.0000,0.0000 +2012,12,3,15,30,15.4,1.24,0.017,0.62,44,816,288,0,0,-2,44,816,0,288,0.255,30.14,72.59,0.9,0.23,884,1.3,262,6.2,11.0641,8.5392 +2012,12,3,16,30,18.8,1.21,0.019,0.62,54,894,433,0,1,-0.1,54,894,0,433,0.255,28.080000000000002,64.9,0.91,0.23,884,1.5,280,6.4,18.0108,14.0222 +2012,12,3,17,30,21.1,1.18,0.022,0.62,60,927,529,0,0,1,60,927,0,529,0.256,26.38,59.620000000000005,0.92,0.23,885,1.6,309,6,23.3382,18.2333 +2012,12,3,18,30,21.900000000000002,1.18,0.026000000000000002,0.62,65,936,569,7,2,1.4000000000000001,223,604,7,548,0.257,25.85,57.45,0.92,0.23,885,1.6,337,5.1000000000000005,27.8650,21.7933 +2012,12,3,19,30,21.8,1.1500000000000001,0.027,0.62,64,926,545,7,2,2,216,596,7,526,0.259,27.1,58.74,0.92,0.23,885,1.6,183,4.5,26.3377,20.5858 +2012,12,3,20,30,20.900000000000002,1.12,0.03,0.62,62,887,461,0,8,2.7,207,321,0,352,0.26,29.98,63.27,0.93,0.23,885,1.6,22,4.4,24.0429,18.7404 +2012,12,3,21,30,19.400000000000002,1.11,0.035,0.62,56,801,324,0,8,3.2,146,312,0,250,0.262,34.09,70.42,0.93,0.23,886,1.6,31,4.3,15.4105,11.9283 +2012,12,3,22,30,17.1,1.1,0.038,0.62,42,620,155,0,7,3.6,89,57,0,99,0.265,40.660000000000004,79.43,0.9400000000000001,0.23,886,1.6,32,4.3,5.1478,3.9257 +2012,12,3,23,30,14.9,1.11,0.04,0.62,0,0,0,7,7,3.6,0,0,7,0,0.266,46.87,89.46000000000001,0.9400000000000001,0.23,888,1.5,31,4.5,0.0000,0.0000 +2012,12,4,0,30,13.100000000000001,1.1400000000000001,0.037,0.62,0,0,0,0,0,3.1,0,0,0,0,0.268,50.81,101.09,0.9400000000000001,0.23,889,1.5,31,4.7,0.0000,0.0000 +2012,12,4,1,30,11.600000000000001,1.17,0.036000000000000004,0.62,0,0,0,0,0,2.3000000000000003,0,0,0,0,0.269,53,112.88,0.9400000000000001,0.23,890,1.4000000000000001,32,4.6000000000000005,0.0000,0.0000 +2012,12,4,2,30,10.200000000000001,1.18,0.037,0.62,0,0,0,0,7,1.5,0,0,0,0,0.271,54.68,125,0.9400000000000001,0.23,890,1.4000000000000001,36,4.6000000000000005,0.0000,0.0000 +2012,12,4,3,30,8.9,1.19,0.038,0.62,0,0,0,0,7,1,0,0,0,0,0.274,57.550000000000004,137.24,0.9400000000000001,0.23,891,1.4000000000000001,40,4.2,0.0000,0.0000 +2012,12,4,4,30,7.800000000000001,1.18,0.041,0.62,0,0,0,0,7,1,0,0,0,0,0.275,62.120000000000005,149.29,0.9400000000000001,0.23,891,1.4000000000000001,42,3.6,0.0000,0.0000 +2012,12,4,5,30,7.2,1.1500000000000001,0.044,0.62,0,0,0,0,7,1.3,0,0,0,0,0.277,66.24,160.33,0.9400000000000001,0.23,892,1.5,39,3,0.0000,0.0000 +2012,12,4,6,30,6.800000000000001,1.1400000000000001,0.045,0.62,0,0,0,0,4,1.8,0,0,0,0,0.279,70.31,166.97,0.9500000000000001,0.23,893,1.5,28,2.6,0.0000,0.0000 +2012,12,4,7,30,6.5,1.1300000000000001,0.047,0.62,0,0,0,0,7,2.2,0,0,0,0,0.281,74,162.82,0.9500000000000001,0.23,893,1.5,12,2.5,0.0000,0.0000 +2012,12,4,8,30,6.2,1.1300000000000001,0.049,0.62,0,0,0,0,4,2.6,0,0,0,0,0.28300000000000003,77.65,152.42000000000002,0.9500000000000001,0.23,894,1.6,179,2.6,0.0000,0.0000 +2012,12,4,9,30,5.9,1.1300000000000001,0.048,0.62,0,0,0,0,7,2.8000000000000003,0,0,0,0,0.28400000000000003,80.68,140.53,0.9500000000000001,0.23,895,1.5,355,2.3000000000000003,0.0000,0.0000 +2012,12,4,10,30,5.1000000000000005,1.1500000000000001,0.043000000000000003,0.62,0,0,0,0,7,2.9000000000000004,0,0,0,0,0.28300000000000003,85.59,128.3,0.9400000000000001,0.23,895,1.4000000000000001,178,1.9000000000000001,0.0000,0.0000 +2012,12,4,11,30,4.2,1.16,0.036000000000000004,0.62,0,0,0,0,1,2.7,0,0,0,0,0.28300000000000003,89.82000000000001,116.13,0.93,0.23,896,1.3,9,1.6,0.0000,0.0000 +2012,12,4,12,30,3.5,1.16,0.029,0.62,0,0,0,0,0,2,0,0,0,0,0.28300000000000003,89.68,104.23,0.93,0.23,897,1.2000000000000002,21,1.4000000000000001,0.0000,0.0000 +2012,12,4,13,30,3.8000000000000003,1.16,0.024,0.62,0,0,0,0,0,1.2000000000000002,0,0,0,0,0.281,83.17,92.84,0.92,0.23,897,1,27,1.3,0.0000,0.0000 +2012,12,4,14,30,6.1000000000000005,1.16,0.021,0.62,31,604,114,0,0,0.4,31,604,0,114,0.278,67.01,82.13,0.91,0.23,898,0.9,37,1.7000000000000002,0.0000,0.0000 +2012,12,4,15,30,9.1,1.16,0.019,0.62,46,823,290,0,0,-2.2,46,823,0,290,0.276,45.21,72.75,0.91,0.23,898,0.9,58,2.1,14.3969,11.1087 +2012,12,4,16,30,11.3,1.1500000000000001,0.018000000000000002,0.62,54,920,441,0,0,-5.5,54,920,0,441,0.274,30.32,65.06,0.91,0.23,899,0.8,73,1.9000000000000001,23.1126,17.9917 +2012,12,4,17,30,13,1.1500000000000001,0.018000000000000002,0.62,58,962,542,0,1,-7.2,58,962,0,542,0.271,23.94,59.77,0.91,0.23,898,0.8,73,1.3,29.2289,22.8335 +2012,12,4,18,30,14.4,1.24,0.023,0.62,63,970,583,0,8,-7.9,197,562,0,498,0.269,20.67,57.58,0.91,0.23,898,0.8,81,0.7000000000000001,30.6405,23.9625 +2012,12,4,19,30,15.5,1.25,0.023,0.62,62,962,560,7,2,-7.9,217,632,7,544,0.265,19.26,58.84,0.91,0.23,897,0.8,158,0.6000000000000001,29.2078,22.8276 +2012,12,4,20,30,16.1,1.26,0.022,0.62,58,930,475,0,0,-6.7,58,930,0,475,0.263,20.28,63.35,0.91,0.23,897,0.8,222,1.1,19.0078,14.8149 +2012,12,4,21,30,15.600000000000001,1.26,0.022,0.62,51,856,337,0,0,-5.7,51,856,0,337,0.262,22.57,70.46000000000001,0.91,0.23,896,0.8,204,1.2000000000000002,12.7501,9.8683 +2012,12,4,22,30,13.3,1.24,0.022,0.62,37,690,164,0,1,-3.8000000000000003,37,690,0,164,0.262,30.310000000000002,79.46000000000001,0.91,0.23,896,0.8,175,1,4.7188,3.5984 +2012,12,4,23,30,10.4,1.23,0.021,0.62,0,0,0,7,7,-2.3000000000000003,0,0,7,0,0.263,40.93,89.46000000000001,0.91,0.23,896,0.9,157,1.1,0.0000,0.0000 +2012,12,5,0,30,8.4,1.22,0.02,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.262,42.26,101.08,0.91,0.23,897,0.9,155,1.3,0.0000,0.0000 +2012,12,5,1,30,7.2,1.2,0.019,0.62,0,0,0,0,0,-4.1000000000000005,0,0,0,0,0.262,44.410000000000004,112.86,0.9,0.23,897,0.9,158,1.5,0.0000,0.0000 +2012,12,5,2,30,6.300000000000001,1.16,0.019,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.262,45.34,124.98,0.9,0.23,897,0.9,165,1.7000000000000002,0.0000,0.0000 +2012,12,5,3,30,5.7,1.12,0.019,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.263,45.410000000000004,137.22,0.9,0.23,897,0.9,174,1.9000000000000001,0.0000,0.0000 +2012,12,5,4,30,5.2,1.09,0.019,0.62,0,0,0,0,4,-5.5,0,0,0,0,0.264,45.95,149.28,0.9,0.23,897,0.9,184,2,0.0000,0.0000 +2012,12,5,5,30,4.7,1.07,0.018000000000000002,0.62,0,0,0,0,1,-5.6000000000000005,0,0,0,0,0.264,47.17,160.35,0.9,0.23,897,0.9,192,2,0.0000,0.0000 +2012,12,5,6,30,4.3,1.07,0.019,0.62,0,0,0,0,1,-5.7,0,0,0,0,0.263,48.38,167.08,0.9,0.23,897,0.9,197,2.1,0.0000,0.0000 +2012,12,5,7,30,4,1.07,0.019,0.62,0,0,0,0,4,-5.800000000000001,0,0,0,0,0.261,49,162.98,0.9,0.23,896,0.9,199,2.3000000000000003,0.0000,0.0000 +2012,12,5,8,30,3.7,1.07,0.02,0.62,0,0,0,0,1,-6,0,0,0,0,0.259,49.19,152.57,0.91,0.23,896,0.9,200,2.4000000000000004,0.0000,0.0000 +2012,12,5,9,30,3.5,1.07,0.021,0.62,0,0,0,0,7,-6.300000000000001,0,0,0,0,0.259,48.72,140.67000000000002,0.91,0.23,896,0.9,201,2.4000000000000004,0.0000,0.0000 +2012,12,5,10,30,3.3000000000000003,1.07,0.021,0.62,0,0,0,0,7,-6.6000000000000005,0,0,0,0,0.259,48.22,128.44,0.91,0.23,895,1,202,2.6,0.0000,0.0000 +2012,12,5,11,30,3.3000000000000003,1.09,0.021,0.62,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.259,47.550000000000004,116.27,0.92,0.23,895,1,203,2.8000000000000003,0.0000,0.0000 +2012,12,5,12,30,3.3000000000000003,1.1,0.021,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.259,47.88,104.38,0.92,0.23,895,1,206,3,0.0000,0.0000 +2012,12,5,13,30,3.7,1.12,0.022,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.258,47.81,93,0.92,0.23,895,1,208,3.4000000000000004,0.0000,0.0000 +2012,12,5,14,30,5,1.1400000000000001,0.023,0.62,32,589,111,7,7,-5.9,71,37,7,76,0.259,45.34,82.29,0.92,0.23,894,1,209,3.8000000000000003,0.0000,0.0000 +2012,12,5,15,30,7.300000000000001,1.1500000000000001,0.024,0.62,48,803,284,0,4,-5.4,168,32,0,178,0.26,40.22,72.91,0.92,0.23,894,1.1,205,4.1000000000000005,14.4753,11.1664 +2012,12,5,16,30,10.5,1.1500000000000001,0.025,0.62,58,895,433,0,7,-5,207,284,0,326,0.261,33.29,65.21000000000001,0.93,0.23,893,1.1,205,4.9,23.5118,18.3000 +2012,12,5,17,30,13.4,1.1500000000000001,0.026000000000000002,0.62,63,933,531,0,7,-4.2,247,303,0,399,0.261,29.11,59.910000000000004,0.93,0.23,892,1.2000000000000002,206,5.9,29.9212,23.3725 +2012,12,5,18,30,15.600000000000001,1.16,0.025,0.62,64,949,572,0,7,-3.2,206,480,0,463,0.26,27.27,57.71,0.92,0.23,891,1.2000000000000002,206,6.1000000000000005,27.8260,21.7600 +2012,12,5,19,30,17.2,1.17,0.021,0.62,60,947,549,0,7,-3.1,223,430,0,445,0.259,24.86,58.94,0.91,0.23,889,1.2000000000000002,207,6.1000000000000005,30.1906,23.5945 +2012,12,5,20,30,17.900000000000002,1.16,0.018000000000000002,0.62,54,919,465,0,3,-3.2,259,193,0,346,0.257,23.64,63.42,0.9,0.23,888,1.2000000000000002,208,5.800000000000001,25.6357,19.9796 +2012,12,5,21,30,17.7,1.1400000000000001,0.016,0.62,46,849,330,0,0,-3.2,46,849,0,330,0.255,23.94,70.51,0.9,0.23,887,1.2000000000000002,205,5,17.1810,13.2970 +2012,12,5,22,30,15.200000000000001,1.16,0.016,0.62,34,687,160,0,0,-2.8000000000000003,34,687,0,160,0.253,28.87,79.48,0.9,0.23,886,1.2000000000000002,197,3.8000000000000003,7.8168,5.9607 +2012,12,5,23,30,12.600000000000001,1.17,0.017,0.62,0,0,0,7,3,-2.2,0,0,7,0,0.251,35.730000000000004,89.47,0.91,0.23,886,1.2000000000000002,192,3.6,0.0000,0.0000 +2012,12,6,0,30,11.700000000000001,1.19,0.019,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.251,37.25,101.07000000000001,0.91,0.23,886,1.2000000000000002,193,4.5,0.0000,0.0000 +2012,12,6,1,30,11.100000000000001,1.21,0.02,0.62,0,0,0,0,7,-2.5,0,0,0,0,0.25,38.62,112.84,0.91,0.23,886,1.2000000000000002,198,4.9,0.0000,0.0000 +2012,12,6,2,30,10.200000000000001,1.23,0.02,0.62,0,0,0,0,4,-2.4000000000000004,0,0,0,0,0.249,41.17,124.95,0.9,0.23,886,1.2000000000000002,202,4.9,0.0000,0.0000 +2012,12,6,3,30,9.3,1.26,0.021,0.62,0,0,0,0,7,-2.3000000000000003,0,0,0,0,0.248,44.07,137.19,0.89,0.23,885,1.2000000000000002,206,4.7,0.0000,0.0000 +2012,12,6,4,30,8.5,1.27,0.022,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.247,47.04,149.26,0.9,0.23,885,1.1,212,4.5,0.0000,0.0000 +2012,12,6,5,30,7.9,1.25,0.025,0.62,0,0,0,0,1,-2.1,0,0,0,0,0.246,49.27,160.36,0.9,0.23,884,1.1,221,4.4,0.0000,0.0000 +2012,12,6,6,30,7.5,1.26,0.024,0.62,0,0,0,0,7,-2.2,0,0,0,0,0.245,50.35,167.18,0.9,0.23,884,1.1,232,4.2,0.0000,0.0000 +2012,12,6,7,30,7.2,1.32,0.025,0.62,0,0,0,0,7,-2.5,0,0,0,0,0.245,50.15,163.13,0.89,0.23,883,1,244,4.1000000000000005,0.0000,0.0000 +2012,12,6,8,30,7,1.43,0.033,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.245,49.29,152.72,0.88,0.23,883,1,255,4,0.0000,0.0000 +2012,12,6,9,30,6.9,1.49,0.042,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.244,48.6,140.81,0.88,0.23,883,1,266,4.1000000000000005,0.0000,0.0000 +2012,12,6,10,30,6.7,1.48,0.041,0.62,0,0,0,0,4,-3.3000000000000003,0,0,0,0,0.243,48.870000000000005,128.59,0.88,0.23,883,0.9,274,4.4,0.0000,0.0000 +2012,12,6,11,30,6.5,1.42,0.035,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.241,49.230000000000004,116.42,0.88,0.23,883,0.9,282,4.4,0.0000,0.0000 +2012,12,6,12,30,6.2,1.35,0.029,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.24,49.18,104.53,0.88,0.23,883,0.9,289,4.2,0.0000,0.0000 +2012,12,6,13,30,6.6000000000000005,1.28,0.025,0.62,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.23800000000000002,46.36,93.14,0.88,0.23,883,0.9,295,4.2,0.0000,0.0000 +2012,12,6,14,30,8.8,1.25,0.025,0.62,31,584,108,7,7,-4.4,64,18,7,66,0.23600000000000002,39,82.44,0.88,0.23,883,1,300,4.5,0.0000,0.0000 +2012,12,6,15,30,12.100000000000001,1.23,0.025,0.62,48,808,284,0,8,-4.4,112,436,0,239,0.23500000000000001,31.34,73.06,0.89,0.23,883,1,314,4.6000000000000005,8.8716,6.8419 +2012,12,6,16,30,15.3,1.23,0.029,0.62,59,895,433,0,3,-3.4000000000000004,228,264,0,338,0.233,27.490000000000002,65.36,0.9,0.23,884,1,338,4.9,17.3612,13.5111 +2012,12,6,17,30,17.3,1.2,0.032,0.62,66,931,531,0,0,-1.7000000000000002,66,931,0,531,0.232,27.35,60.050000000000004,0.91,0.23,883,1.1,350,5.2,22.0089,17.1906 +2012,12,6,18,30,18.400000000000002,1.16,0.031,0.62,68,948,572,0,1,-1,68,948,0,572,0.231,26.96,57.83,0.91,0.23,883,1.1,349,5.1000000000000005,25.8527,20.2157 +2012,12,6,19,30,18.7,1.16,0.032,0.62,67,934,548,7,2,-0.6000000000000001,217,616,7,534,0.231,27.25,59.04,0.91,0.23,883,1.2000000000000002,352,5,24.6826,19.2889 +2012,12,6,20,30,18.3,1.16,0.034,0.62,64,893,462,0,8,-0.2,170,511,0,398,0.231,28.75,63.480000000000004,0.91,0.23,883,1.3,178,4.800000000000001,18.6646,14.5458 +2012,12,6,21,30,17,1.16,0.037,0.62,57,810,327,0,7,0.2,177,203,0,244,0.232,32.17,70.54,0.92,0.23,883,1.3,5,4.3,16.8165,13.0140 +2012,12,6,22,30,14.3,1.16,0.039,0.62,42,630,157,0,8,0.7000000000000001,101,129,0,124,0.233,39.53,79.49,0.92,0.23,883,1.3,16,3.1,7.6261,5.8151 +2012,12,6,23,30,11.4,1.17,0.041,0.62,0,0,0,7,7,1.2000000000000002,0,0,7,0,0.233,49.36,89.46000000000001,0.92,0.23,884,1.3,29,2.5,0.0000,0.0000 +2012,12,7,0,30,9.9,1.18,0.043000000000000003,0.62,0,0,0,0,7,0.8,0,0,0,0,0.234,53.26,101.05,0.92,0.23,885,1.3,38,2.7,0.0000,0.0000 +2012,12,7,1,30,8.700000000000001,1.18,0.043000000000000003,0.62,0,0,0,0,7,0.30000000000000004,0,0,0,0,0.23500000000000001,55.57,112.81,0.91,0.23,885,1.3,46,2.8000000000000003,0.0000,0.0000 +2012,12,7,2,30,7.4,1.19,0.041,0.62,0,0,0,0,7,-0.30000000000000004,0,0,0,0,0.23600000000000002,58.19,124.92,0.91,0.23,885,1.2000000000000002,53,2.3000000000000003,0.0000,0.0000 +2012,12,7,3,30,6.300000000000001,1.19,0.04,0.62,0,0,0,0,7,-0.7000000000000001,0,0,0,0,0.23800000000000002,60.81,137.16,0.91,0.23,885,1.2000000000000002,58,1.8,0.0000,0.0000 +2012,12,7,4,30,5.4,1.18,0.041,0.62,0,0,0,0,7,-0.9,0,0,0,0,0.24,63.7,149.23,0.91,0.23,885,1.3,60,1.3,0.0000,0.0000 +2012,12,7,5,30,4.6000000000000005,1.18,0.04,0.62,0,0,0,0,7,-1,0,0,0,0,0.242,66.95,160.37,0.91,0.23,885,1.2000000000000002,57,1.1,0.0000,0.0000 +2012,12,7,6,30,3.9000000000000004,1.19,0.038,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.244,70.13,167.28,0.9,0.23,885,1.2000000000000002,48,1,0.0000,0.0000 +2012,12,7,7,30,3.5,1.22,0.04,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.246,71.96000000000001,163.28,0.9,0.23,885,1.2000000000000002,39,1,0.0000,0.0000 +2012,12,7,8,30,3.1,1.24,0.043000000000000003,0.62,0,0,0,0,7,-1.1,0,0,0,0,0.247,73.77,152.86,0.91,0.23,885,1.2000000000000002,33,1.1,0.0000,0.0000 +2012,12,7,9,30,2.7,1.27,0.046,0.62,0,0,0,0,7,-1.2000000000000002,0,0,0,0,0.249,75.36,140.95000000000002,0.91,0.23,884,1.2000000000000002,26,1,0.0000,0.0000 +2012,12,7,10,30,2.4000000000000004,1.29,0.05,0.62,0,0,0,0,7,-1.4000000000000001,0,0,0,0,0.25,76.26,128.73,0.91,0.23,884,1.1,17,0.9,0.0000,0.0000 +2012,12,7,11,30,2,1.3,0.051000000000000004,0.62,0,0,0,0,7,-1.5,0,0,0,0,0.251,77.58,116.56,0.91,0.23,884,1.1,184,0.9,0.0000,0.0000 +2012,12,7,12,30,1.7000000000000002,1.31,0.052000000000000005,0.62,0,0,0,0,7,-1.6,0,0,0,0,0.252,78.44,104.67,0.91,0.23,885,1.1,349,0.9,0.0000,0.0000 +2012,12,7,13,30,1.9000000000000001,1.3,0.05,0.62,0,0,0,0,8,-1.8,0,0,0,0,0.253,76.51,93.29,0.91,0.23,885,1.1,335,1.2000000000000002,0.0000,0.0000 +2012,12,7,14,30,3.1,1.31,0.047,0.62,35,519,102,7,8,-1.9000000000000001,56,11,7,58,0.255,69.76,82.58,0.91,0.23,885,1.1,319,1.7000000000000002,0.0000,0.0000 +2012,12,7,15,30,5.5,1.32,0.043000000000000003,0.62,54,767,276,0,3,-2,169,110,0,201,0.257,58.56,73.21000000000001,0.91,0.23,885,1.1,294,1.9000000000000001,11.8952,9.1716 +2012,12,7,16,30,8.5,1.35,0.038,0.62,63,876,426,0,1,-1.7000000000000002,63,876,0,426,0.258,48.67,65.5,0.9,0.23,884,1.1,271,2.4000000000000004,17.9801,13.9910 +2012,12,7,17,30,11.600000000000001,1.3800000000000001,0.033,0.62,66,933,530,0,1,-1.2000000000000002,66,933,0,530,0.259,40.93,60.19,0.9,0.23,884,1,263,3.2,29.2660,22.8571 +2012,12,7,18,30,14.5,1.4000000000000001,0.03,0.62,66,957,575,0,0,-1.1,66,957,0,575,0.259,34.11,57.94,0.9,0.23,882,0.9,267,3.7,31.9187,24.9577 +2012,12,7,19,30,16.400000000000002,1.4000000000000001,0.028,0.62,64,957,556,0,0,-1.2000000000000002,64,957,0,556,0.259,30.080000000000002,59.120000000000005,0.9,0.23,881,0.8,274,3.9000000000000004,29.6025,23.1326 +2012,12,7,20,30,17.3,1.4000000000000001,0.026000000000000002,0.62,59,927,472,0,0,-1.3,59,927,0,472,0.259,28.25,63.54,0.89,0.23,881,0.8,277,3.7,21.4608,16.7242 +2012,12,7,21,30,16.7,1.3900000000000001,0.023,0.62,50,858,336,0,0,-1.3,50,858,0,336,0.259,29.18,70.57000000000001,0.9,0.23,881,0.8,279,2.7,12.4306,9.6195 +2012,12,7,22,30,14.4,1.3900000000000001,0.023,0.62,37,686,162,0,0,0,37,686,0,162,0.26,37.22,79.5,0.9,0.23,881,0.9,280,1.4000000000000001,5.9102,4.5066 +2012,12,7,23,30,12.600000000000001,1.4000000000000001,0.024,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.262,41.24,89.45,0.9,0.23,882,0.9,283,0.7000000000000001,0.0000,0.0000 +2012,12,8,0,30,11.3,1.41,0.024,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,42.37,101.02,0.91,0.23,882,0.9,194,0.6000000000000001,0.0000,0.0000 +2012,12,8,1,30,9.200000000000001,1.41,0.025,0.62,0,0,0,0,0,-1,0,0,0,0,0.263,48.99,112.78,0.91,0.23,883,1,103,0.9,0.0000,0.0000 +2012,12,8,2,30,7.4,1.42,0.025,0.62,0,0,0,0,0,-0.7000000000000001,0,0,0,0,0.264,56.58,124.88000000000001,0.91,0.23,883,1,103,1.3,0.0000,0.0000 +2012,12,8,3,30,6,1.43,0.025,0.62,0,0,0,0,0,-0.4,0,0,0,0,0.265,63.59,137.12,0.91,0.23,884,1,101,1.6,0.0000,0.0000 +2012,12,8,4,30,4.9,1.43,0.026000000000000002,0.62,0,0,0,0,0,-0.30000000000000004,0,0,0,0,0.265,69.29,149.20000000000002,0.91,0.23,884,1,98,2,0.0000,0.0000 +2012,12,8,5,30,3.8000000000000003,1.42,0.027,0.62,0,0,0,0,0,-0.2,0,0,0,0,0.267,75.28,160.37,0.91,0.23,884,1,92,2.4000000000000004,0.0000,0.0000 +2012,12,8,6,30,2.7,1.4000000000000001,0.028,0.62,0,0,0,0,0,-0.1,0,0,0,0,0.268,81.83,167.37,0.91,0.23,885,1,87,2.6,0.0000,0.0000 +2012,12,8,7,30,1.7000000000000002,1.3900000000000001,0.029,0.62,0,0,0,0,0,0,0,0,0,0,0.269,88.25,163.43,0.91,0.23,885,1,83,2.5,0.0000,0.0000 +2012,12,8,8,30,0.9,1.37,0.029,0.62,0,0,0,0,0,0,0,0,0,0,0.269,93.87,153.01,0.91,0.23,885,1,81,2.3000000000000003,0.0000,0.0000 +2012,12,8,9,30,0.30000000000000004,1.35,0.03,0.62,0,0,0,0,0,0.1,0,0,0,0,0.27,98.74000000000001,141.09,0.91,0.23,885,0.9,84,2,0.0000,0.0000 +2012,12,8,10,30,0.2,1.34,0.032,0.62,0,0,0,0,0,0.2,0,0,0,0,0.271,100,128.86,0.92,0.23,885,0.9,93,2.1,0.0000,0.0000 +2012,12,8,11,30,0.4,1.3,0.035,0.62,0,0,0,0,0,0.30000000000000004,0,0,0,0,0.273,99.28,116.7,0.92,0.23,885,0.9,103,2.3000000000000003,0.0000,0.0000 +2012,12,8,12,30,0.5,1.26,0.04,0.62,0,0,0,0,1,0.30000000000000004,0,0,0,0,0.276,98.4,104.81,0.93,0.23,885,0.9,116,2.2,0.0000,0.0000 +2012,12,8,13,30,0.6000000000000001,1.23,0.041,0.62,0,0,0,0,0,0,0,0,0,0,0.277,95.96000000000001,93.43,0.93,0.23,885,0.9,137,2,0.0000,0.0000 +2012,12,8,14,30,1.4000000000000001,1.23,0.04,0.62,34,536,102,0,0,0,34,536,0,102,0.278,90.57000000000001,82.72,0.93,0.23,885,0.9,160,2.1,0.0000,0.0000 +2012,12,8,15,30,2.9000000000000004,1.22,0.047,0.62,56,764,275,7,4,0.6000000000000001,42,0,7,42,0.279,84.7,73.35000000000001,0.9400000000000001,0.23,885,0.9,182,2.5,9.9900,7.7008 +2012,12,8,16,30,5.300000000000001,1.24,0.049,0.62,68,865,425,0,3,1,93,0,0,93,0.28,73.64,65.64,0.93,0.23,884,0.9,198,3.1,22.6374,17.6128 +2012,12,8,17,30,9,1.29,0.039,0.62,69,927,529,7,3,1.2000000000000002,290,51,7,315,0.281,58.050000000000004,60.31,0.92,0.23,883,0.9,209,4,29.1868,22.7935 +2012,12,8,18,30,12.700000000000001,1.3,0.031,0.62,67,954,572,0,0,0.9,67,954,0,572,0.28200000000000003,44.33,58.050000000000004,0.92,0.23,882,0.9,223,5.1000000000000005,32.0674,25.0726 +2012,12,8,19,30,15.4,1.3,0.027,0.62,64,957,554,0,0,-0.4,64,957,0,554,0.28300000000000003,33.94,59.2,0.91,0.23,880,0.8,235,6,30.8083,24.0738 +2012,12,8,20,30,16.900000000000002,1.28,0.024,0.62,58,928,471,0,0,-1.6,58,928,0,471,0.28400000000000003,28.19,63.59,0.91,0.23,879,0.8,242,6.300000000000001,25.4404,19.8247 +2012,12,8,21,30,17.1,1.26,0.022,0.62,50,857,335,0,0,-2.7,50,857,0,335,0.28600000000000003,25.810000000000002,70.59,0.91,0.23,879,0.8,243,5.7,17.1129,13.2424 +2012,12,8,22,30,14.8,1.22,0.021,0.62,36,694,163,0,0,-3.2,36,694,0,163,0.28800000000000003,28.78,79.5,0.9,0.23,878,0.8,239,4.1000000000000005,7.7214,5.8876 +2012,12,8,23,30,12,1.18,0.019,0.62,0,0,0,0,0,-3.1,0,0,0,0,0.289,34.79,89.44,0.9,0.23,878,0.8,235,3.3000000000000003,0.0000,0.0000 +2012,12,9,0,30,11,1.1500000000000001,0.018000000000000002,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.291,35.95,100.99000000000001,0.89,0.23,878,0.7000000000000001,234,3.7,0.0000,0.0000 +2012,12,9,1,30,10.600000000000001,1.1400000000000001,0.017,0.62,0,0,0,0,0,-3.9000000000000004,0,0,0,0,0.292,35.84,112.74000000000001,0.89,0.23,878,0.7000000000000001,236,4.2,0.0000,0.0000 +2012,12,9,2,30,9.8,1.1400000000000001,0.016,0.62,0,0,0,0,0,-4.2,0,0,0,0,0.293,37,124.84,0.89,0.23,879,0.7000000000000001,241,4.4,0.0000,0.0000 +2012,12,9,3,30,8.8,1.1400000000000001,0.016,0.62,0,0,0,0,0,-4.5,0,0,0,0,0.295,38.85,137.08,0.89,0.23,879,0.7000000000000001,247,4.2,0.0000,0.0000 +2012,12,9,4,30,7.7,1.1500000000000001,0.016,0.62,0,0,0,0,0,-4.7,0,0,0,0,0.296,41.1,149.17000000000002,0.89,0.23,879,0.6000000000000001,256,3.9000000000000004,0.0000,0.0000 +2012,12,9,5,30,6.7,1.1400000000000001,0.015,0.62,0,0,0,0,0,-5,0,0,0,0,0.297,43.01,160.36,0.89,0.23,880,0.6000000000000001,267,3.7,0.0000,0.0000 +2012,12,9,6,30,5.6000000000000005,1.1500000000000001,0.015,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.299,45,167.45000000000002,0.89,0.23,880,0.6000000000000001,280,3.6,0.0000,0.0000 +2012,12,9,7,30,4.6000000000000005,1.17,0.014,0.62,0,0,0,0,1,-5.800000000000001,0,0,0,0,0.3,46.81,163.57,0.9,0.23,881,0.6000000000000001,303,3.9000000000000004,0.0000,0.0000 +2012,12,9,8,30,3.2,1.23,0.017,0.62,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.302,54.42,153.15,0.91,0.23,882,0.7000000000000001,333,5,0.0000,0.0000 +2012,12,9,9,30,1.8,1.28,0.028,0.62,0,0,0,0,4,-2.5,0,0,0,0,0.305,72.95,141.23,0.9400000000000001,0.23,883,0.7000000000000001,175,6.2,0.0000,0.0000 +2012,12,9,10,30,0.8,1.28,0.038,0.62,0,0,0,0,4,-1.1,0,0,0,0,0.309,86.89,129,0.9500000000000001,0.23,884,0.7000000000000001,4,6.7,0.0000,0.0000 +2012,12,9,11,30,0.1,1.31,0.033,0.62,0,0,0,0,7,-2.6,0,0,0,0,0.312,82.2,116.83,0.9400000000000001,0.23,885,0.7000000000000001,7,6.5,0.0000,0.0000 +2012,12,9,12,30,-0.6000000000000001,1.33,0.026000000000000002,0.62,0,0,0,0,4,-5.4,0,0,0,0,0.316,70.12,104.95,0.93,0.23,886,0.7000000000000001,8,5.800000000000001,0.0000,0.0000 +2012,12,9,13,30,-0.9,1.32,0.023,0.62,0,0,0,0,1,-7.9,0,0,0,0,0.318,58.92,93.57000000000001,0.92,0.23,887,0.7000000000000001,9,5.5,0.0000,0.0000 +2012,12,9,14,30,-0.4,1.32,0.023,0.62,30,586,103,0,1,-9.600000000000001,30,586,0,103,0.321,49.800000000000004,82.86,0.92,0.23,888,0.7000000000000001,13,6,0.0000,0.0000 +2012,12,9,15,30,0.9,1.33,0.024,0.62,47,814,279,0,1,-11.100000000000001,47,814,0,279,0.323,40.32,73.49,0.92,0.23,888,0.7000000000000001,16,6.5,2.0847,1.6067 +2012,12,9,16,30,2.2,1.32,0.026000000000000002,0.62,58,907,430,0,2,-11.8,227,261,0,334,0.325,34.84,65.77,0.92,0.23,889,0.7000000000000001,16,6.300000000000001,4.9367,3.8405 +2012,12,9,17,30,3.3000000000000003,1.3,0.028,0.62,64,949,532,0,0,-12,64,949,0,532,0.326,31.720000000000002,60.43,0.92,0.23,889,0.7000000000000001,16,6.1000000000000005,17.3345,13.5365 +2012,12,9,18,30,4,1.3,0.035,0.62,70,956,574,0,1,-12,70,956,0,574,0.327,30.11,58.14,0.92,0.23,888,0.7000000000000001,15,5.9,31.8814,24.9258 +2012,12,9,19,30,4.1000000000000005,1.28,0.039,0.62,71,943,553,0,0,-12,71,943,0,553,0.327,29.82,59.27,0.93,0.23,888,0.7000000000000001,12,5.800000000000001,30.6836,23.9754 +2012,12,9,20,30,3.3000000000000003,1.26,0.045,0.62,69,899,468,7,7,-12.100000000000001,148,680,7,450,0.327,31.41,63.63,0.93,0.23,888,0.7000000000000001,8,6,25.3777,19.7751 +2012,12,9,21,30,1.8,1.19,0.044,0.62,60,814,330,0,1,-12.100000000000001,60,814,0,330,0.327,34.910000000000004,70.61,0.9400000000000001,0.23,889,0.8,5,6.300000000000001,17.0589,13.2003 +2012,12,9,22,30,-0.2,1.19,0.053,0.62,45,616,157,0,7,-12,99,29,0,104,0.329,40.6,79.49,0.9400000000000001,0.23,889,0.8,5,6.6000000000000005,7.7691,5.9239 +2012,12,9,23,30,-1.8,1.19,0.06,0.62,0,0,0,0,1,-11.8,0,0,0,0,0.332,46.300000000000004,89.39,0.9500000000000001,0.23,890,0.8,8,6.5,0.0000,0.0000 +2012,12,10,0,30,-2.6,1.17,0.07200000000000001,0.62,0,0,0,0,7,-12,0,0,0,0,0.336,48.58,100.96000000000001,0.9500000000000001,0.73,891,0.8,8,6.5,0.0000,0.0000 +2012,12,10,1,30,-3.1,1.1300000000000001,0.088,0.62,0,0,0,0,4,-12.4,0,0,0,0,0.342,48.730000000000004,112.69,0.96,0.73,892,0.7000000000000001,5,6.7,0.0000,0.0000 +2012,12,10,2,30,-3.5,1.1,0.096,0.62,0,0,0,0,4,-12.4,0,0,0,0,0.34700000000000003,49.99,124.79,0.96,0.73,892,0.7000000000000001,3,6.7,0.0000,0.0000 +2012,12,10,3,30,-3.9000000000000004,1.09,0.101,0.62,0,0,0,0,7,-12.3,0,0,0,0,0.35000000000000003,52.11,137.03,0.96,0.73,893,0.6000000000000001,1,6.1000000000000005,0.0000,0.0000 +2012,12,10,4,30,-4.1000000000000005,1.1,0.085,0.62,0,0,0,0,7,-12.8,0,0,0,0,0.354,50.74,149.12,0.96,0.73,893,0.6000000000000001,180,5.300000000000001,0.0000,0.0000 +2012,12,10,5,30,-4.4,1.1300000000000001,0.067,0.62,0,0,0,0,7,-14,0,0,0,0,0.353,47.24,160.35,0.9500000000000001,0.73,893,0.5,356,4.6000000000000005,0.0000,0.0000 +2012,12,10,6,30,-5.1000000000000005,1.2,0.048,0.62,0,0,0,0,4,-15.100000000000001,0,0,0,0,0.341,45.46,167.52,0.93,0.73,893,0.4,352,3.8000000000000003,0.0000,0.0000 +2012,12,10,7,30,-6.300000000000001,1.27,0.033,0.62,0,0,0,0,1,-15.700000000000001,0,0,0,0,0.326,47.43,163.70000000000002,0.91,0.73,893,0.30000000000000004,350,3,0.0000,0.0000 +2012,12,10,8,30,-7.2,1.28,0.028,0.62,0,0,0,0,1,-15.9,0,0,0,0,0.318,49.7,153.28,0.91,0.73,893,0.30000000000000004,347,2.5,0.0000,0.0000 +2012,12,10,9,30,-7.800000000000001,1.29,0.026000000000000002,0.62,0,0,0,0,1,-16.1,0,0,0,0,0.311,51.39,141.36,0.9,0.73,892,0.30000000000000004,343,2.3000000000000003,0.0000,0.0000 +2012,12,10,10,30,-8.200000000000001,1.3,0.025,0.62,0,0,0,0,1,-16.2,0,0,0,0,0.307,52.74,129.13,0.9,0.73,892,0.30000000000000004,333,2.1,0.0000,0.0000 +2012,12,10,11,30,-8.3,1.3,0.024,0.62,0,0,0,0,1,-16.2,0,0,0,0,0.305,52.89,116.97,0.9,0.73,892,0.30000000000000004,322,1.9000000000000001,0.0000,0.0000 +2012,12,10,12,30,-8.4,1.28,0.023,0.62,0,0,0,0,1,-16.3,0,0,0,0,0.302,52.93,105.09,0.89,0.73,891,0.30000000000000004,310,1.9000000000000001,0.0000,0.0000 +2012,12,10,13,30,-8,1.26,0.021,0.62,0,0,0,0,1,-16.400000000000002,0,0,0,0,0.299,50.910000000000004,93.71000000000001,0.89,0.73,891,0.30000000000000004,296,2.2,0.0000,0.0000 +2012,12,10,14,30,-6.300000000000001,1.25,0.02,0.62,31,633,108,0,1,-16.5,31,633,0,108,0.295,44.25,82.99,0.89,0.73,891,0.30000000000000004,288,2.7,0.0000,0.0000 +2012,12,10,15,30,-3.5,1.25,0.019,0.62,50,863,293,0,0,-16.900000000000002,50,863,0,293,0.293,34.78,73.62,0.88,0.73,891,0.30000000000000004,281,3.1,13.8307,10.6565 +2012,12,10,16,30,-0.7000000000000001,1.25,0.018000000000000002,0.62,60,958,452,0,0,-17.7,60,958,0,452,0.291,26.28,65.9,0.88,0.73,890,0.30000000000000004,275,3.6,17.7121,13.7775 +2012,12,10,17,30,1.5,1.25,0.017,0.62,66,1002,559,0,0,-18.3,66,1002,0,559,0.29,21.38,60.550000000000004,0.88,0.73,889,0.30000000000000004,274,3.8000000000000003,29.2551,22.8437 +2012,12,10,18,30,3,1.31,0.02,0.62,72,1013,605,0,0,-18.400000000000002,72,1013,0,605,0.29,19.01,58.230000000000004,0.89,0.73,888,0.30000000000000004,274,3.6,31.9775,24.9998 +2012,12,10,19,30,3.9000000000000004,1.3,0.019,0.62,69,1008,584,0,0,-18.400000000000002,69,1008,0,584,0.29,17.87,59.33,0.89,0.73,886,0.30000000000000004,273,3.4000000000000004,30.6161,23.9217 +2012,12,10,20,30,4.4,1.28,0.018000000000000002,0.62,63,978,497,0,0,-18.400000000000002,63,978,0,497,0.29,17.26,63.660000000000004,0.89,0.73,885,0.30000000000000004,275,3.2,24.2395,18.8876 +2012,12,10,21,30,4,1.27,0.017,0.62,53,910,355,0,0,-18.400000000000002,53,910,0,355,0.292,17.76,70.62,0.89,0.73,885,0.30000000000000004,276,2.4000000000000004,16.8012,13.0005 +2012,12,10,22,30,2.1,1.26,0.017,0.62,38,738,173,0,0,-16.400000000000002,38,738,0,173,0.295,24.04,79.47,0.88,0.73,885,0.4,260,1.4000000000000001,4.9570,3.7798 +2012,12,10,23,30,-0.30000000000000004,1.24,0.017,0.62,0,0,0,0,0,-15,0,0,0,0,0.298,32.01,89.37,0.88,0.73,885,0.4,220,1.1,0.0000,0.0000 +2012,12,11,0,30,-2.1,1.23,0.018000000000000002,0.62,0,0,0,0,1,-16.5,0,0,0,0,0.3,32.42,100.92,0.89,0.23,885,0.4,188,1.3,0.0000,0.0000 +2012,12,11,1,30,-3.3000000000000003,1.21,0.018000000000000002,0.62,0,0,0,0,1,-16.1,0,0,0,0,0.301,36.57,112.64,0.89,0.23,885,0.4,180,1.6,0.0000,0.0000 +2012,12,11,2,30,-3.5,1.2,0.019,0.62,0,0,0,0,0,-16.2,0,0,0,0,0.302,36.86,124.73,0.89,0.23,885,0.4,183,1.9000000000000001,0.0000,0.0000 +2012,12,11,3,30,-3.5,1.19,0.02,0.62,0,0,0,0,1,-16.2,0,0,0,0,0.303,36.88,136.97,0.89,0.23,885,0.4,188,2.2,0.0000,0.0000 +2012,12,11,4,30,-3.5,1.16,0.023,0.62,0,0,0,0,1,-15.9,0,0,0,0,0.304,37.52,149.08,0.9,0.23,885,0.5,194,2.3000000000000003,0.0000,0.0000 +2012,12,11,5,30,-3.5,1.1400000000000001,0.026000000000000002,0.62,0,0,0,0,1,-15.600000000000001,0,0,0,0,0.305,38.65,160.32,0.9,0.23,885,0.5,200,2.1,0.0000,0.0000 +2012,12,11,6,30,-3.6,1.11,0.027,0.62,0,0,0,0,4,-14.9,0,0,0,0,0.307,41.11,167.58,0.91,0.23,885,0.5,209,1.6,0.0000,0.0000 +2012,12,11,7,30,-3.8000000000000003,1.11,0.027,0.62,0,0,0,0,7,-14,0,0,0,0,0.309,44.94,163.84,0.91,0.23,885,0.5,229,1.2000000000000002,0.0000,0.0000 +2012,12,11,8,30,-3.9000000000000004,1.12,0.026000000000000002,0.62,0,0,0,0,7,-13.5,0,0,0,0,0.31,47.32,153.42000000000002,0.9,0.23,885,0.5,266,0.9,0.0000,0.0000 +2012,12,11,9,30,-4.1000000000000005,1.12,0.024,0.62,0,0,0,0,1,-13.5,0,0,0,0,0.31,47.86,141.5,0.9,0.23,885,0.4,307,0.9,0.0000,0.0000 +2012,12,11,10,30,-4.5,1.1300000000000001,0.023,0.62,0,0,0,0,1,-13.5,0,0,0,0,0.309,49.34,129.27,0.9,0.23,886,0.4,338,1,0.0000,0.0000 +2012,12,11,11,30,-4.800000000000001,1.1500000000000001,0.022,0.62,0,0,0,0,1,-13.600000000000001,0,0,0,0,0.308,50.1,117.10000000000001,0.89,0.23,886,0.4,178,1.1,0.0000,0.0000 +2012,12,11,12,30,-5,1.16,0.022,0.62,0,0,0,0,4,-13.8,0,0,0,0,0.308,50.07,105.22,0.89,0.23,887,0.4,11,1.1,0.0000,0.0000 +2012,12,11,13,30,-4.4,1.17,0.022,0.62,0,0,0,0,4,-14,0,0,0,0,0.308,47.1,93.84,0.89,0.23,888,0.4,21,1.1,0.0000,0.0000 +2012,12,11,14,30,-2.6,1.18,0.022,0.62,29,620,104,7,4,-13.600000000000001,63,7,7,64,0.308,42.43,83.13,0.89,0.23,888,0.30000000000000004,30,1.3,0.0000,0.0000 +2012,12,11,15,30,0.30000000000000004,1.18,0.022,0.62,46,854,285,0,0,-14.100000000000001,46,854,0,285,0.309,33.13,73.75,0.89,0.23,889,0.30000000000000004,64,1.5,14.5073,11.1754 +2012,12,11,16,30,3.6,1.18,0.022,0.62,55,949,441,0,0,-14.3,55,949,0,441,0.31,25.71,66.02,0.89,0.23,889,0.30000000000000004,102,1.9000000000000001,23.9458,18.6243 +2012,12,11,17,30,5.800000000000001,1.19,0.023,0.62,61,980,541,0,0,-15.4,61,980,0,541,0.31,20.07,60.65,0.89,0.23,889,0.4,116,2,30.7177,23.9841 +2012,12,11,18,30,6.6000000000000005,1.17,0.022,0.62,62,997,585,0,0,-15.4,62,997,0,585,0.309,19.05,58.32,0.89,0.23,889,0.4,124,1.6,33.6881,26.3361 +2012,12,11,19,30,7,1.19,0.023,0.62,62,989,565,0,0,-15.3,62,989,0,565,0.309,18.76,59.39,0.9,0.23,888,0.4,138,1.4000000000000001,32.3214,25.2533 +2012,12,11,20,30,7,1.2,0.024,0.62,59,955,482,0,0,-15.100000000000001,59,955,0,482,0.31,18.92,63.690000000000005,0.9,0.23,888,0.4,158,1.5,26.7656,20.8555 +2012,12,11,21,30,6.300000000000001,1.1300000000000001,0.019,0.62,49,891,344,0,0,-15,49,891,0,344,0.309,20.03,70.62,0.9,0.23,888,0.4,174,1.4000000000000001,18.0724,13.9840 +2012,12,11,22,30,3.6,1.1400000000000001,0.019,0.62,36,731,170,0,0,-12.5,36,731,0,170,0.305,29.82,79.46000000000001,0.9,0.23,888,0.4,173,1.2000000000000002,8.2458,6.2877 +2012,12,11,23,30,0.4,1.16,0.018000000000000002,0.62,0,0,0,0,1,-11.9,0,0,0,0,0.302,39.300000000000004,89.34,0.9,0.23,888,0.30000000000000004,167,1.3,0.0000,0.0000 +2012,12,12,0,30,-1.2000000000000002,1.16,0.017,0.62,0,0,0,0,1,-13.200000000000001,0,0,0,0,0.299,39.65,100.87,0.9,0.23,889,0.30000000000000004,168,1.5,0.0000,0.0000 +2012,12,12,1,30,-2,1.16,0.017,0.62,0,0,0,0,1,-13.5,0,0,0,0,0.296,40.97,112.59,0.89,0.23,889,0.30000000000000004,172,1.8,0.0000,0.0000 +2012,12,12,2,30,-2.4000000000000004,1.1500000000000001,0.016,0.62,0,0,0,0,1,-13.8,0,0,0,0,0.293,41.28,124.67,0.89,0.23,889,0.30000000000000004,177,2.1,0.0000,0.0000 +2012,12,12,3,30,-2.7,1.1300000000000001,0.016,0.62,0,0,0,0,1,-13.9,0,0,0,0,0.29,41.82,136.91,0.89,0.23,889,0.30000000000000004,182,2.4000000000000004,0.0000,0.0000 +2012,12,12,4,30,-2.8000000000000003,1.11,0.016,0.62,0,0,0,0,1,-13.9,0,0,0,0,0.28800000000000003,42.25,149.02,0.9,0.23,889,0.4,188,2.8000000000000003,0.0000,0.0000 +2012,12,12,5,30,-2.8000000000000003,1.09,0.017,0.62,0,0,0,0,1,-13.700000000000001,0,0,0,0,0.28700000000000003,42.75,160.29,0.9,0.23,889,0.4,195,3.2,0.0000,0.0000 +2012,12,12,6,30,-2.8000000000000003,1.08,0.018000000000000002,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.28700000000000003,43.61,167.64000000000001,0.9,0.23,889,0.4,202,3.6,0.0000,0.0000 +2012,12,12,7,30,-2.9000000000000004,1.08,0.017,0.62,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.28600000000000003,45,163.96,0.9,0.23,889,0.4,209,3.9000000000000004,0.0000,0.0000 +2012,12,12,8,30,-3.1,1.08,0.016,0.62,0,0,0,0,0,-13,0,0,0,0,0.28600000000000003,46.52,153.55,0.9,0.23,888,0.4,214,4.1000000000000005,0.0000,0.0000 +2012,12,12,9,30,-3.3000000000000003,1.08,0.015,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.28500000000000003,47.71,141.63,0.89,0.23,888,0.4,215,4.1000000000000005,0.0000,0.0000 +2012,12,12,10,30,-3.5,1.08,0.014,0.62,0,0,0,0,0,-12.8,0,0,0,0,0.28500000000000003,48.69,129.4,0.89,0.23,888,0.5,215,4.2,0.0000,0.0000 +2012,12,12,11,30,-3.5,1.08,0.013000000000000001,0.62,0,0,0,0,0,-12.700000000000001,0,0,0,0,0.28400000000000003,48.96,117.23,0.89,0.23,887,0.5,218,4.3,0.0000,0.0000 +2012,12,12,12,30,-3.5,1.07,0.013000000000000001,0.62,0,0,0,0,0,-12.600000000000001,0,0,0,0,0.28400000000000003,49.52,105.35000000000001,0.89,0.23,888,0.5,221,4.4,0.0000,0.0000 +2012,12,12,13,30,-2.8000000000000003,1.06,0.013000000000000001,0.62,0,0,0,0,0,-12.4,0,0,0,0,0.28300000000000003,47.56,93.97,0.89,0.23,888,0.5,224,4.9,0.0000,0.0000 +2012,12,12,14,30,-0.8,1.07,0.013000000000000001,0.62,26,619,99,0,0,-12.3,26,619,0,99,0.28300000000000003,41.54,83.25,0.88,0.23,888,0.5,226,5.2,0.0000,0.0000 +2012,12,12,15,30,2.8000000000000003,1.08,0.013000000000000001,0.62,40,849,276,0,0,-12,40,849,0,276,0.28400000000000003,32.71,73.88,0.88,0.23,888,0.5,227,5.2,14.0943,10.8549 +2012,12,12,16,30,6.9,1.09,0.012,0.62,46,944,428,0,0,-11.600000000000001,46,944,0,428,0.28400000000000003,25.35,66.14,0.88,0.23,888,0.5,232,5.800000000000001,23.3414,18.1523 +2012,12,12,17,30,10.3,1.1,0.012,0.62,50,987,533,0,0,-11.700000000000001,50,987,0,533,0.28400000000000003,20.01,60.75,0.88,0.23,887,0.5,240,6.4,29.7107,23.1964 +2012,12,12,18,30,12.4,1.21,0.016,0.62,56,997,579,0,0,-11.8,56,997,0,579,0.28300000000000003,17.3,58.4,0.88,0.23,887,0.5,241,6.2,32.5586,25.4519 +2012,12,12,19,30,13.600000000000001,1.18,0.014,0.62,54,994,559,0,0,-11.8,54,994,0,559,0.28200000000000003,15.93,59.44,0.88,0.23,886,0.5,241,5.7,31.2591,24.4226 +2012,12,12,20,30,14.100000000000001,1.1500000000000001,0.013000000000000001,0.62,50,974,481,0,0,-11.8,50,974,0,481,0.28200000000000003,15.43,63.71,0.88,0.23,886,0.4,239,5.1000000000000005,25.9523,20.2213 +2012,12,12,21,30,13.200000000000001,1.24,0.018000000000000002,0.62,48,896,345,0,0,-11.700000000000001,48,896,0,345,0.28200000000000003,16.52,70.61,0.88,0.23,886,0.4,235,3.8000000000000003,17.5124,13.5507 +2012,12,12,22,30,9.5,1.23,0.018000000000000002,0.62,36,738,171,0,0,-9.8,36,738,0,171,0.281,24.59,79.43,0.88,0.23,886,0.4,227,2.5,8.1028,6.1787 +2012,12,12,23,30,6.1000000000000005,1.21,0.019,0.62,0,0,0,0,0,-9,0,0,0,0,0.279,32.86,89.32000000000001,0.88,0.23,887,0.4,222,2.4000000000000004,0.0000,0.0000 +2012,12,13,0,30,5.4,1.18,0.02,0.62,0,0,0,0,0,-10,0,0,0,0,0.278,32.13,100.82000000000001,0.89,0.23,887,0.4,223,3,0.0000,0.0000 +2012,12,13,1,30,5.2,1.16,0.021,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.276,31.54,112.53,0.89,0.23,888,0.4,227,3.6,0.0000,0.0000 +2012,12,13,2,30,4.7,1.1500000000000001,0.022,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.273,32.230000000000004,124.61,0.89,0.23,888,0.4,233,4,0.0000,0.0000 +2012,12,13,3,30,4.1000000000000005,1.1300000000000001,0.022,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.272,33.61,136.85,0.89,0.23,888,0.4,238,4.2,0.0000,0.0000 +2012,12,13,4,30,3.5,1.1,0.021,0.62,0,0,0,0,0,-10.5,0,0,0,0,0.271,35.21,148.96,0.89,0.23,888,0.4,242,4.2,0.0000,0.0000 +2012,12,13,5,30,2.9000000000000004,1.08,0.019,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.271,36.93,160.26,0.89,0.23,889,0.4,245,4.2,0.0000,0.0000 +2012,12,13,6,30,2.3000000000000003,1.08,0.018000000000000002,0.62,0,0,0,0,0,-10.4,0,0,0,0,0.271,38.46,167.68,0.89,0.23,889,0.4,248,4,0.0000,0.0000 +2012,12,13,7,30,1.7000000000000002,1.08,0.017,0.62,0,0,0,0,0,-10.600000000000001,0,0,0,0,0.27,39.730000000000004,164.08,0.89,0.23,889,0.4,251,3.8000000000000003,0.0000,0.0000 +2012,12,13,8,30,1.1,1.09,0.017,0.62,0,0,0,0,0,-10.8,0,0,0,0,0.27,40.74,153.67000000000002,0.89,0.23,889,0.4,254,3.5,0.0000,0.0000 +2012,12,13,9,30,0.5,1.1,0.017,0.62,0,0,0,0,0,-11,0,0,0,0,0.27,41.660000000000004,141.75,0.89,0.23,889,0.4,258,3.2,0.0000,0.0000 +2012,12,13,10,30,-0.1,1.11,0.017,0.62,0,0,0,0,0,-11.3,0,0,0,0,0.27,42.65,129.52,0.88,0.23,889,0.4,262,2.9000000000000004,0.0000,0.0000 +2012,12,13,11,30,-0.6000000000000001,1.11,0.017,0.62,0,0,0,0,0,-11.5,0,0,0,0,0.271,43.46,117.36,0.88,0.23,889,0.30000000000000004,266,2.6,0.0000,0.0000 +2012,12,13,12,30,-1,1.12,0.017,0.62,0,0,0,0,0,-11.700000000000001,0,0,0,0,0.271,44.15,105.48,0.89,0.23,889,0.30000000000000004,268,2.5,0.0000,0.0000 +2012,12,13,13,30,-0.4,1.12,0.017,0.62,0,0,0,0,0,-11.8,0,0,0,0,0.271,41.93,94.10000000000001,0.89,0.23,890,0.30000000000000004,269,2.7,0.0000,0.0000 +2012,12,13,14,30,2.5,1.12,0.016,0.62,27,631,100,0,1,-11.600000000000001,27,631,0,100,0.27,34.46,83.38,0.88,0.23,890,0.30000000000000004,268,3.3000000000000003,0.0000,0.0000 +2012,12,13,15,30,6.300000000000001,1.12,0.016,0.62,43,865,281,0,1,-11.600000000000001,43,865,0,281,0.27,26.43,74,0.88,0.23,890,0.30000000000000004,261,3.4000000000000004,13.6329,10.4973 +2012,12,13,16,30,10.200000000000001,1.12,0.015,0.62,50,961,437,0,0,-11,50,961,0,437,0.27,21.25,66.25,0.88,0.23,890,0.30000000000000004,244,3,22.6323,17.5989 +2012,12,13,17,30,14.4,1.1300000000000001,0.015,0.62,54,1004,544,0,0,-10.3,54,1004,0,544,0.269,17.04,60.85,0.88,0.23,889,0.30000000000000004,233,3.6,29.2536,22.8382 +2012,12,13,18,30,17.3,1.1300000000000001,0.015,0.62,56,1008,583,0,0,-11.600000000000001,56,1008,0,583,0.269,12.8,58.47,0.88,0.23,889,0.4,231,4.5,32.2107,25.1790 +2012,12,13,19,30,18.3,1.1400000000000001,0.015,0.62,55,1002,564,0,0,-12,55,1002,0,564,0.269,11.67,59.480000000000004,0.88,0.23,888,0.4,232,5,30.9184,24.1557 +2012,12,13,20,30,18.5,1.17,0.015,0.62,52,972,482,0,0,-12.100000000000001,52,972,0,482,0.268,11.43,63.72,0.88,0.23,887,0.4,231,4.800000000000001,25.8949,20.1763 +2012,12,13,21,30,16.900000000000002,1.21,0.016,0.62,46,901,346,0,0,-11.700000000000001,46,901,0,346,0.269,13.08,70.60000000000001,0.88,0.23,887,0.4,223,3.4000000000000004,17.5649,13.5915 +2012,12,13,22,30,12.700000000000001,1.24,0.017,0.62,35,731,170,0,0,-8,35,731,0,170,0.27,22.93,79.4,0.88,0.23,887,0.5,209,2.2,8.1506,6.2154 +2012,12,13,23,30,9,1.28,0.019,0.62,0,0,0,0,0,-7.1000000000000005,0,0,0,0,0.27,31.29,89.28,0.89,0.23,888,0.5,196,2.2,0.0000,0.0000 +2012,12,14,0,30,7.800000000000001,1.31,0.021,0.62,0,0,0,0,0,-7.300000000000001,0,0,0,0,0.27,33.54,100.76,0.9,0.23,888,0.5,188,2.5,0.0000,0.0000 +2012,12,14,1,30,7.300000000000001,1.31,0.024,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.27,36.230000000000004,112.47,0.91,0.23,888,0.6000000000000001,185,2.9000000000000004,0.0000,0.0000 +2012,12,14,2,30,6.6000000000000005,1.31,0.028,0.62,0,0,0,0,7,-5.9,0,0,0,0,0.269,40.4,124.54,0.91,0.23,888,0.6000000000000001,185,3.3000000000000003,0.0000,0.0000 +2012,12,14,3,30,6,1.3,0.03,0.62,0,0,0,0,7,-5.1000000000000005,0,0,0,0,0.268,44.81,136.78,0.91,0.23,888,0.7000000000000001,189,3.5,0.0000,0.0000 +2012,12,14,4,30,5.6000000000000005,1.27,0.032,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.267,48.92,148.9,0.92,0.23,888,0.7000000000000001,193,3.6,0.0000,0.0000 +2012,12,14,5,30,5.1000000000000005,1.25,0.034,0.62,0,0,0,0,7,-3.4000000000000004,0,0,0,0,0.266,54.26,160.22,0.92,0.23,888,0.7000000000000001,195,3.3000000000000003,0.0000,0.0000 +2012,12,14,6,30,4.6000000000000005,1.24,0.037,0.62,0,0,0,0,7,-2.1,0,0,0,0,0.264,61.68,167.72,0.93,0.23,887,0.8,198,3.4000000000000004,0.0000,0.0000 +2012,12,14,7,30,4.5,1.23,0.045,0.62,0,0,0,0,7,-0.4,0,0,0,0,0.263,70.44,164.20000000000002,0.9400000000000001,0.23,887,0.9,201,3.4000000000000004,0.0000,0.0000 +2012,12,14,8,30,4.6000000000000005,1.23,0.054,0.62,0,0,0,0,7,1.8,0,0,0,0,0.262,82.04,153.8,0.96,0.23,886,1,201,3.2,0.0000,0.0000 +2012,12,14,9,30,4.7,1.22,0.065,0.62,0,0,0,0,6,3.5,0,0,0,0,0.261,91.68,141.88,0.96,0.23,886,1.1,198,3.1,0.0000,0.0000 +2012,12,14,10,30,5.1000000000000005,1.21,0.082,0.62,0,0,0,0,6,4.4,0,0,0,0,0.261,95.2,129.65,0.97,0.23,885,1.3,195,3.4000000000000004,0.0000,0.0000 +2012,12,14,11,30,5.6000000000000005,1.2,0.097,0.62,0,0,0,0,6,5.1000000000000005,0,0,0,0,0.262,96.67,117.48,0.97,0.23,885,1.5,196,4,0.0000,0.0000 +2012,12,14,12,30,6.1000000000000005,1.19,0.11,0.62,0,0,0,0,6,5.7,0,0,0,0,0.263,97.33,105.60000000000001,0.98,0.23,885,1.7000000000000002,195,4.2,0.0000,0.0000 +2012,12,14,13,30,6.7,1.19,0.11,0.62,0,0,0,0,6,6.300000000000001,0,0,0,0,0.265,97.13,94.22,0.97,0.23,885,1.9000000000000001,190,4.2,0.0000,0.0000 +2012,12,14,14,30,7.5,1.21,0.098,0.62,39,352,79,7,7,6.800000000000001,36,1,7,37,0.267,95.12,83.5,0.97,0.23,884,2,181,4.2,0.0000,0.0000 +2012,12,14,15,30,8.6,1.2,0.093,0.62,67,636,242,0,7,7.300000000000001,142,76,0,163,0.269,91.56,74.11,0.97,0.23,884,2,176,4.9,13.8646,10.6736 +2012,12,14,16,30,10.200000000000001,1.17,0.08700000000000001,0.62,81,768,389,0,8,7.9,182,35,0,196,0.271,85.55,66.35,0.96,0.23,883,1.9000000000000001,175,6,23.0884,17.9518 +2012,12,14,17,30,12.4,1.19,0.068,0.62,81,850,494,0,6,8.3,181,15,0,189,0.273,75.87,60.93,0.96,0.23,881,1.9000000000000001,177,7.1000000000000005,29.8391,23.2939 +2012,12,14,18,30,14.700000000000001,1.19,0.047,0.62,75,898,544,0,8,8.4,225,378,0,422,0.277,65.92,58.53,0.9500000000000001,0.23,879,1.8,181,7.9,32.4209,25.3424 +2012,12,14,19,30,16.1,1.1500000000000001,0.038,0.62,69,902,527,0,0,8.4,69,902,0,527,0.28200000000000003,60.24,59.51,0.9400000000000001,0.23,877,1.8,182,8.200000000000001,31.1878,24.3657 +2012,12,14,20,30,16.1,1.1,0.037,0.62,65,869,449,0,1,8.5,65,869,0,449,0.28800000000000003,60.870000000000005,63.730000000000004,0.9400000000000001,0.23,875,1.8,180,8.200000000000001,25.9469,20.2167 +2012,12,14,21,30,14.9,0.98,0.035,0.62,56,791,318,0,7,8.8,160,34,0,171,0.293,66.77,70.58,0.9400000000000001,0.23,874,1.9000000000000001,190,8.4,17.6174,13.6323 +2012,12,14,22,30,12.3,0.76,0.048,0.62,44,589,153,0,8,8.8,89,20,0,93,0.299,79.38,79.37,0.93,0.23,875,1.7000000000000002,217,9.200000000000001,8.1031,6.1794 +2012,12,14,23,30,9.8,0.71,0.026000000000000002,0.62,0,0,0,7,8,4.7,0,0,7,0,0.304,70.67,89.24,0.9,0.23,876,1.1,240,9.4,0.0000,0.0000 +2012,12,15,0,30,8.6,0.9400000000000001,0.019,0.62,0,0,0,0,0,1,0,0,0,0,0.306,58.800000000000004,100.7,0.89,0.23,877,0.8,246,9.5,0.0000,0.0000 +2012,12,15,1,30,8.3,1.06,0.02,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.305,50.34,112.4,0.89,0.23,878,0.7000000000000001,248,9.9,0.0000,0.0000 +2012,12,15,2,30,7.9,1.1,0.02,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.302,41.9,124.47,0.89,0.23,878,0.6000000000000001,249,10.100000000000001,0.0000,0.0000 +2012,12,15,3,30,7.5,1.08,0.018000000000000002,0.62,0,0,0,0,0,-5.7,0,0,0,0,0.299,38.53,136.70000000000002,0.88,0.23,879,0.5,251,10.3,0.0000,0.0000 +2012,12,15,4,30,7.1000000000000005,1.08,0.018000000000000002,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.297,39.14,148.83,0.89,0.23,879,0.5,253,10.4,0.0000,0.0000 +2012,12,15,5,30,6.800000000000001,1.08,0.018000000000000002,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.295,41.59,160.17000000000002,0.89,0.23,879,0.6000000000000001,257,10.3,0.0000,0.0000 +2012,12,15,6,30,6.300000000000001,1.07,0.017,0.62,0,0,0,0,0,-5,0,0,0,0,0.293,44.34,167.75,0.88,0.23,880,0.6000000000000001,262,9.700000000000001,0.0000,0.0000 +2012,12,15,7,30,5.6000000000000005,1.06,0.016,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.292,46.89,164.31,0.88,0.23,880,0.5,266,8.9,0.0000,0.0000 +2012,12,15,8,30,5,1.06,0.015,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.29,48.99,153.92000000000002,0.87,0.23,880,0.5,269,8.1,0.0000,0.0000 +2012,12,15,9,30,4.3,1.07,0.014,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28800000000000003,51.46,142,0.87,0.23,880,0.5,272,7.1000000000000005,0.0000,0.0000 +2012,12,15,10,30,3.5,1.11,0.014,0.62,0,0,0,0,0,-4.800000000000001,0,0,0,0,0.28700000000000003,54.4,129.77,0.87,0.23,880,0.5,273,6.2,0.0000,0.0000 +2012,12,15,11,30,2.6,1.1300000000000001,0.014,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.28600000000000003,57.85,117.60000000000001,0.88,0.23,880,0.5,270,5.4,0.0000,0.0000 +2012,12,15,12,30,2,1.1500000000000001,0.014,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.28400000000000003,60.2,105.72,0.88,0.23,881,0.6000000000000001,264,4.9,0.0000,0.0000 +2012,12,15,13,30,1.9000000000000001,1.1500000000000001,0.014,0.62,0,0,0,0,0,-5,0,0,0,0,0.28300000000000003,60.29,94.34,0.88,0.23,881,0.6000000000000001,260,4.9,0.0000,0.0000 +2012,12,15,14,30,3.3000000000000003,1.16,0.015,0.62,26,591,92,0,0,-5,26,591,0,92,0.28300000000000003,54.44,83.61,0.88,0.23,882,0.6000000000000001,259,5.2,0.0000,0.0000 +2012,12,15,15,30,6.4,1.16,0.015,0.62,41,825,265,0,1,-5,41,825,0,265,0.28300000000000003,44.09,74.22,0.88,0.23,882,0.7000000000000001,264,5.800000000000001,8.0344,6.1841 +2012,12,15,16,30,9.9,1.17,0.015,0.62,49,923,417,0,0,-5.4,49,923,0,417,0.28300000000000003,33.660000000000004,66.45,0.87,0.23,882,0.7000000000000001,271,6.300000000000001,10.3473,8.0446 +2012,12,15,17,30,12.4,1.18,0.014,0.62,52,969,522,0,0,-6.4,52,969,0,522,0.28400000000000003,26.45,61.01,0.87,0.23,882,0.7000000000000001,273,6.5,10.3618,8.0886 +2012,12,15,18,30,13.700000000000001,1.21,0.014,0.62,54,986,567,0,0,-7.300000000000001,54,986,0,567,0.28300000000000003,22.650000000000002,58.58,0.87,0.23,881,0.7000000000000001,271,6.9,23.4599,18.3373 +2012,12,15,19,30,14.100000000000001,1.21,0.014,0.62,53,980,550,0,0,-7.4,53,980,0,550,0.28,21.95,59.54,0.88,0.23,880,0.7000000000000001,269,7.300000000000001,29.1368,22.7630 +2012,12,15,20,30,14,1.21,0.016,0.62,52,946,471,0,0,-6.300000000000001,52,946,0,471,0.278,23.89,63.72,0.89,0.23,880,0.7000000000000001,267,7.300000000000001,24.1688,18.8311 +2012,12,15,21,30,13.4,1.22,0.018000000000000002,0.62,48,873,338,0,0,-5.6000000000000005,48,873,0,338,0.275,26.35,70.56,0.9,0.23,880,0.7000000000000001,265,6.6000000000000005,8.7084,6.7387 +2012,12,15,22,30,11.4,1.22,0.019,0.62,36,712,168,0,8,-5.2,36,712,5,168,0.274,30.96,79.32000000000001,0.9,0.23,880,0.7000000000000001,260,5,4.4329,3.3807 +2012,12,15,23,30,8.8,1.21,0.019,0.62,0,0,0,7,7,-4.4,0,0,7,0,0.273,39.06,89.18,0.9,0.23,881,0.7000000000000001,255,3.9000000000000004,0.0000,0.0000 +2012,12,16,0,30,7.5,1.2,0.019,0.62,0,0,0,0,7,-4.1000000000000005,0,0,0,0,0.273,43.53,100.64,0.91,0.23,881,0.7000000000000001,253,4.1000000000000005,0.0000,0.0000 +2012,12,16,1,30,6.7,1.19,0.018000000000000002,0.62,0,0,0,0,7,-3.9000000000000004,0,0,0,0,0.275,46.63,112.33,0.9,0.23,881,0.7000000000000001,254,4.2,0.0000,0.0000 +2012,12,16,2,30,5.9,1.21,0.016,0.62,0,0,0,0,1,-3.7,0,0,0,0,0.28,50.25,124.39,0.89,0.23,882,0.7000000000000001,256,4.1000000000000005,0.0000,0.0000 +2012,12,16,3,30,5.2,1.24,0.015,0.62,0,0,0,0,1,-3.5,0,0,0,0,0.28500000000000003,53.25,136.63,0.89,0.23,882,0.7000000000000001,256,4,0.0000,0.0000 +2012,12,16,4,30,4.6000000000000005,1.26,0.014,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.291,55.800000000000004,148.76,0.89,0.23,881,0.7000000000000001,255,3.9000000000000004,0.0000,0.0000 +2012,12,16,5,30,4.1000000000000005,1.27,0.014,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.297,58.13,160.11,0.88,0.23,881,0.7000000000000001,252,4,0.0000,0.0000 +2012,12,16,6,30,3.7,1.26,0.014,0.62,0,0,0,0,7,-3.3000000000000003,0,0,0,0,0.302,60.22,167.76,0.88,0.23,881,0.7000000000000001,248,4.2,0.0000,0.0000 +2012,12,16,7,30,3.4000000000000004,1.22,0.014,0.62,0,0,0,0,0,-3.2,0,0,0,0,0.306,62.08,164.41,0.88,0.23,881,0.7000000000000001,247,4.5,0.0000,0.0000 +2012,12,16,8,30,3.3000000000000003,1.18,0.014,0.62,0,0,0,0,0,-2.9000000000000004,0,0,0,0,0.308,63.690000000000005,154.04,0.87,0.23,881,0.8,247,4.800000000000001,0.0000,0.0000 +2012,12,16,9,30,3.3000000000000003,1.1500000000000001,0.014,0.62,0,0,0,0,0,-2.4000000000000004,0,0,0,0,0.309,66.02,142.12,0.87,0.23,880,0.8,247,5.4,0.0000,0.0000 +2012,12,16,10,30,3.2,1.16,0.014,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.31,69.7,129.89000000000001,0.87,0.23,880,0.6000000000000001,246,5.9,0.0000,0.0000 +2012,12,16,11,30,2.8000000000000003,1.18,0.014,0.62,0,0,0,0,0,-1.4000000000000001,0,0,0,0,0.313,73.93,117.72,0.87,0.23,880,0.4,247,6.2,0.0000,0.0000 +2012,12,16,12,30,2.1,1.2,0.014,0.62,0,0,0,0,0,-1.5,0,0,0,0,0.315,77.28,105.84,0.86,0.23,880,0.4,249,6.300000000000001,0.0000,0.0000 +2012,12,16,13,30,1.8,1.23,0.014,0.62,0,0,0,0,0,-1.8,0,0,0,0,0.315,77.27,94.46000000000001,0.87,0.23,881,0.4,254,6.300000000000001,0.0000,0.0000 +2012,12,16,14,30,3,1.23,0.013000000000000001,0.62,25,614,92,0,0,-2,25,614,0,92,0.314,69.78,83.72,0.87,0.23,881,0.4,258,6.4,0.0000,0.0000 +2012,12,16,15,30,5.9,1.22,0.013000000000000001,0.62,39,853,270,0,1,-2.4000000000000004,39,853,0,270,0.313,55.050000000000004,74.32000000000001,0.88,0.23,882,0.4,267,6.7,13.0490,10.0419 +2012,12,16,16,30,9,1.23,0.013000000000000001,0.62,47,949,425,0,3,-5,219,290,0,334,0.314,36.82,66.54,0.88,0.23,882,0.4,278,7.2,21.9971,17.1002 +2012,12,16,17,30,11.100000000000001,1.23,0.015,0.62,54,991,533,0,7,-8.3,185,541,0,447,0.316,24.92,61.08,0.9,0.23,881,0.4,282,7.300000000000001,28.6043,22.3278 +2012,12,16,18,30,11.700000000000001,1.19,0.019,0.62,60,992,576,0,8,-9.8,204,526,0,478,0.32,21.16,58.63,0.92,0.23,880,0.5,281,7.300000000000001,31.5122,24.6307 +2012,12,16,19,30,11.3,1.18,0.023,0.62,62,972,554,0,7,-9.9,226,437,0,448,0.323,21.64,59.56,0.93,0.23,880,0.6000000000000001,277,7.1000000000000005,30.4032,23.7519 +2012,12,16,20,30,10.600000000000001,1.18,0.027,0.62,60,927,471,0,7,-8.8,246,112,0,295,0.326,24.72,63.71,0.93,0.23,879,0.7000000000000001,275,6.9,25.3548,19.7553 +2012,12,16,21,30,10.100000000000001,1.22,0.031,0.62,54,847,337,0,7,-7.4,146,385,0,274,0.329,28.44,70.52,0.92,0.23,879,0.7000000000000001,273,6.5,17.2163,13.3226 +2012,12,16,22,30,8.6,1.25,0.028,0.62,39,688,167,0,7,-6.5,93,275,0,144,0.332,33.67,79.27,0.92,0.23,879,0.7000000000000001,270,5,8.0082,6.1077 +2012,12,16,23,30,6.5,1.23,0.025,0.62,0,0,0,7,7,-5.800000000000001,0,0,7,0,0.334,41.04,89.13,0.91,0.23,880,0.7000000000000001,268,3.7,0.0000,0.0000 +2012,12,17,0,30,5.2,1.23,0.023,0.62,0,0,0,0,0,-5.800000000000001,0,0,0,0,0.336,45.02,100.56,0.91,0.23,880,0.6000000000000001,266,3.8000000000000003,0.0000,0.0000 +2012,12,17,1,30,4.3,1.27,0.023,0.62,0,0,0,0,0,-6.2,0,0,0,0,0.337,46.51,112.25,0.91,0.23,881,0.6000000000000001,267,4.3,0.0000,0.0000 +2012,12,17,2,30,3.5,1.34,0.023,0.62,0,0,0,0,0,-6.800000000000001,0,0,0,0,0.338,46.74,124.31,0.92,0.23,881,0.5,272,4.9,0.0000,0.0000 +2012,12,17,3,30,2.6,1.3900000000000001,0.024,0.62,0,0,0,0,0,-7.5,0,0,0,0,0.338,47.36,136.54,0.92,0.23,882,0.5,279,5.1000000000000005,0.0000,0.0000 +2012,12,17,4,30,1.8,1.3900000000000001,0.024,0.62,0,0,0,0,1,-7.9,0,0,0,0,0.338,48.5,148.68,0.92,0.23,882,0.5,285,5.2,0.0000,0.0000 +2012,12,17,5,30,1.3,1.3800000000000001,0.024,0.62,0,0,0,0,1,-8.1,0,0,0,0,0.336,49.56,160.05,0.92,0.23,883,0.4,294,5.300000000000001,0.0000,0.0000 +2012,12,17,6,30,0.5,1.3800000000000001,0.023,0.62,0,0,0,0,1,-8.3,0,0,0,0,0.333,51.68,167.77,0.91,0.23,883,0.4,304,5,0.0000,0.0000 +2012,12,17,7,30,-0.5,1.37,0.023,0.62,0,0,0,0,0,-8.4,0,0,0,0,0.329,55,164.51,0.9,0.23,883,0.4,308,4.3,0.0000,0.0000 +2012,12,17,8,30,-1.4000000000000001,1.35,0.022,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.325,57.92,154.15,0.9,0.23,884,0.5,306,3.8000000000000003,0.0000,0.0000 +2012,12,17,9,30,-2.1,1.33,0.021,0.62,0,0,0,0,0,-8.8,0,0,0,0,0.322,59.95,142.23,0.9,0.23,884,0.5,301,3.6,0.0000,0.0000 +2012,12,17,10,30,-2.5,1.32,0.02,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.318,60.69,130,0.9,0.23,884,0.5,294,3.6,0.0000,0.0000 +2012,12,17,11,30,-2.9000000000000004,1.31,0.021,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.313,61.88,117.84,0.9,0.23,884,0.5,287,3.5,0.0000,0.0000 +2012,12,17,12,30,-3.3000000000000003,1.29,0.021,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.309,63.85,105.96000000000001,0.9,0.23,884,0.5,280,3.3000000000000003,0.0000,0.0000 +2012,12,17,13,30,-3,1.27,0.02,0.62,0,0,0,0,1,-9,0,0,0,0,0.306,63.29,94.57000000000001,0.9,0.23,884,0.5,272,3.6,0.0000,0.0000 +2012,12,17,14,30,-1.1,1.27,0.02,0.62,27,576,89,0,0,-8.700000000000001,27,576,0,89,0.301,56.39,83.82000000000001,0.9,0.23,884,0.5,268,4.1000000000000005,0.0000,0.0000 +2012,12,17,15,30,2.3000000000000003,1.29,0.02,0.62,44,827,266,0,4,-8.200000000000001,162,63,0,179,0.296,45.7,74.42,0.9,0.23,884,0.5,272,4.4,13.2831,10.2203 +2012,12,17,16,30,6.1000000000000005,1.29,0.019,0.62,53,930,422,0,8,-8,124,640,0,378,0.29,35.76,66.62,0.9,0.23,884,0.5,281,4.800000000000001,17.6063,13.6856 +2012,12,17,17,30,9.1,1.27,0.018000000000000002,0.62,56,978,528,0,7,-8.3,226,347,0,393,0.28600000000000003,28.400000000000002,61.15,0.89,0.23,883,0.5,286,5.2,24.4840,19.1108 +2012,12,17,18,30,11.200000000000001,1.28,0.019,0.62,59,993,575,0,7,-8.3,199,542,0,481,0.28400000000000003,24.76,58.67,0.88,0.23,882,0.5,289,5.4,26.5585,20.7583 +2012,12,17,19,30,12.600000000000001,1.29,0.019,0.62,58,988,558,0,1,-8,58,988,0,558,0.28200000000000003,23.1,59.57,0.88,0.23,881,0.5,291,5.5,24.7619,19.3446 +2012,12,17,20,30,13.4,1.31,0.019,0.62,55,957,479,0,1,-7.7,55,957,0,479,0.281,22.29,63.7,0.87,0.23,881,0.5,290,5.4,15.8815,12.3742 +2012,12,17,21,30,13.100000000000001,1.33,0.019,0.62,48,888,345,0,0,-7.6000000000000005,48,888,0,345,0.279,23.01,70.49,0.87,0.23,880,0.5,285,4.4,13.9615,10.8045 +2012,12,17,22,30,10.100000000000001,1.33,0.018000000000000002,0.62,36,735,173,0,0,-6.4,36,735,0,173,0.276,30.71,79.22,0.86,0.23,880,0.5,273,2.9000000000000004,6.8645,5.2358 +2012,12,17,23,30,7.2,1.31,0.017,0.62,0,0,0,0,0,-5.4,0,0,0,0,0.274,40.410000000000004,89.07000000000001,0.86,0.23,881,0.5,261,2.6,0.0000,0.0000 +2012,12,18,0,30,6.9,1.31,0.017,0.62,0,0,0,0,0,-5.9,0,0,0,0,0.273,39.64,100.49000000000001,0.86,0.23,881,0.5,258,3.7,0.0000,0.0000 +2012,12,18,1,30,6.800000000000001,1.27,0.017,0.62,0,0,0,0,1,-5.9,0,0,0,0,0.271,39.9,112.17,0.86,0.23,882,0.6000000000000001,260,4.800000000000001,0.0000,0.0000 +2012,12,18,2,30,6,1.22,0.018000000000000002,0.62,0,0,0,0,0,-5.6000000000000005,0,0,0,0,0.27,43.15,124.22,0.86,0.23,882,0.6000000000000001,264,5.2,0.0000,0.0000 +2012,12,18,3,30,5.1000000000000005,1.25,0.018000000000000002,0.62,0,0,0,0,0,-5.300000000000001,0,0,0,0,0.269,46.96,136.46,0.86,0.23,882,0.5,264,5.2,0.0000,0.0000 +2012,12,18,4,30,4.3,1.32,0.017,0.62,0,0,0,0,0,-5.2,0,0,0,0,0.268,50.18,148.59,0.86,0.23,882,0.5,263,5.1000000000000005,0.0000,0.0000 +2012,12,18,5,30,3.6,1.34,0.017,0.62,0,0,0,0,0,-5.1000000000000005,0,0,0,0,0.268,52.96,159.99,0.86,0.23,882,0.5,263,4.9,0.0000,0.0000 +2012,12,18,6,30,2.9000000000000004,1.35,0.017,0.62,0,0,0,0,0,-5,0,0,0,0,0.267,55.99,167.78,0.86,0.23,881,0.5,262,4.800000000000001,0.0000,0.0000 +2012,12,18,7,30,2.3000000000000003,1.36,0.016,0.62,0,0,0,0,0,-4.9,0,0,0,0,0.267,59.13,164.6,0.86,0.23,881,0.5,262,4.6000000000000005,0.0000,0.0000 +2012,12,18,8,30,1.8,1.37,0.016,0.62,0,0,0,0,0,-4.6000000000000005,0,0,0,0,0.267,62.440000000000005,154.26,0.86,0.23,881,0.6000000000000001,263,4.4,0.0000,0.0000 +2012,12,18,9,30,1.3,1.3800000000000001,0.015,0.62,0,0,0,0,0,-4.3,0,0,0,0,0.268,66.32000000000001,142.35,0.86,0.23,881,0.6000000000000001,266,4,0.0000,0.0000 +2012,12,18,10,30,0.9,1.3800000000000001,0.015,0.62,0,0,0,0,0,-4,0,0,0,0,0.268,69.98,130.12,0.86,0.23,881,0.6000000000000001,270,3.5,0.0000,0.0000 +2012,12,18,11,30,0.5,1.3800000000000001,0.014,0.62,0,0,0,0,0,-3.7,0,0,0,0,0.268,73.63,117.95,0.86,0.23,881,0.6000000000000001,275,3.2,0.0000,0.0000 +2012,12,18,12,30,0.1,1.3900000000000001,0.014,0.62,0,0,0,0,0,-3.5,0,0,0,0,0.267,76.99,106.07000000000001,0.87,0.23,881,0.5,280,2.9000000000000004,0.0000,0.0000 +2012,12,18,13,30,0.6000000000000001,1.4000000000000001,0.013000000000000001,0.62,0,0,0,0,0,-3.4000000000000004,0,0,0,0,0.265,74.82000000000001,94.68,0.87,0.23,882,0.5,284,3,0.0000,0.0000 +2012,12,18,14,30,3,1.41,0.013000000000000001,0.62,24,599,88,0,0,-3.4000000000000004,24,599,0,88,0.262,62.93,83.92,0.88,0.23,882,0.5,286,3.6,0.0000,0.0000 +2012,12,18,15,30,6.300000000000001,1.41,0.014,0.62,40,842,265,0,3,-3.3000000000000003,161,75,0,181,0.26,50.26,74.51,0.88,0.23,883,0.5,289,3.7,8.7983,6.7684 +2012,12,18,16,30,9.8,1.43,0.013000000000000001,0.62,47,942,419,0,3,-3.2,218,276,0,327,0.257,39.97,66.7,0.87,0.23,883,0.5,301,3.3000000000000003,19.9131,15.4776 +2012,12,18,17,30,12.8,1.45,0.012,0.62,50,988,526,0,8,-4.1000000000000005,163,645,0,473,0.255,30.66,61.21,0.87,0.23,883,0.5,319,3,21.5169,16.7941 +2012,12,18,18,30,14.5,1.43,0.013000000000000001,0.62,53,1004,574,0,8,-5.9,204,508,0,468,0.253,24,58.7,0.89,0.23,882,0.5,320,2.3000000000000003,26.7193,20.8835 +2012,12,18,19,30,15.200000000000001,1.37,0.017,0.62,57,993,560,0,7,-6.6000000000000005,254,307,0,410,0.251,21.69,59.57,0.9,0.23,881,0.5,292,1.7000000000000002,30.8401,24.0929 +2012,12,18,20,30,15.200000000000001,1.33,0.017,0.62,54,954,477,0,7,-7,237,167,0,311,0.251,21.080000000000002,63.68,0.9,0.23,881,0.6000000000000001,254,2,25.7890,20.0939 +2012,12,18,21,30,14,1.34,0.017,0.62,47,886,344,0,7,-7.1000000000000005,150,28,0,160,0.252,22.47,70.44,0.9,0.23,880,0.6000000000000001,230,1.8,17.5840,13.6084 +2012,12,18,22,30,11,1.34,0.018000000000000002,0.62,36,729,173,0,0,-2.8000000000000003,36,729,0,173,0.254,37.85,79.16,0.89,0.23,880,0.6000000000000001,209,1.3,8.2474,6.2911 +2012,12,18,23,30,8,1.34,0.018000000000000002,0.62,0,0,0,7,7,-3.7,0,0,7,0,0.256,43.31,89,0.89,0.23,880,0.6000000000000001,188,1.4000000000000001,0.0000,0.0000 +2012,12,19,0,30,6.800000000000001,1.32,0.017,0.62,0,0,0,0,4,-5,0,0,0,0,0.258,42.800000000000004,100.41,0.9,0.23,880,0.6000000000000001,175,1.5,0.0000,0.0000 +2012,12,19,1,30,6.5,1.29,0.018000000000000002,0.62,0,0,0,0,4,-4.7,0,0,0,0,0.26,44.68,112.08,0.9,0.23,880,0.7000000000000001,172,1.8,0.0000,0.0000 +2012,12,19,2,30,6.5,1.26,0.019,0.62,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.262,44.32,124.13000000000001,0.91,0.23,879,0.7000000000000001,177,2.1,0.0000,0.0000 +2012,12,19,3,30,6.5,1.25,0.019,0.62,0,0,0,0,7,-4.6000000000000005,0,0,0,0,0.263,45.08,136.37,0.91,0.23,879,0.8,190,2.3000000000000003,0.0000,0.0000 +2012,12,19,4,30,6.300000000000001,1.23,0.019,0.62,0,0,0,0,7,-4.2,0,0,0,0,0.264,46.87,148.51,0.91,0.23,879,0.8,211,2.3000000000000003,0.0000,0.0000 +2012,12,19,5,30,6.300000000000001,1.21,0.021,0.62,0,0,0,0,7,-4.3,0,0,0,0,0.265,46.67,159.91,0.91,0.23,878,0.8,232,2.6,0.0000,0.0000 +2012,12,19,6,30,6.300000000000001,1.2,0.022,0.62,0,0,0,0,7,-4.800000000000001,0,0,0,0,0.267,45.04,167.77,0.91,0.23,878,0.9,246,2.9000000000000004,0.0000,0.0000 +2012,12,19,7,30,6.300000000000001,1.17,0.023,0.62,0,0,0,0,6,-5.2,0,0,0,0,0.268,43.730000000000004,164.68,0.92,0.23,878,1.1,253,3,0.0000,0.0000 +2012,12,19,8,30,6.300000000000001,1.16,0.025,0.62,0,0,0,0,7,-5.2,0,0,0,0,0.269,43.69,154.37,0.92,0.23,877,1.2000000000000002,254,2.9000000000000004,0.0000,0.0000 +2012,12,19,9,30,6.5,1.1500000000000001,0.025,0.62,0,0,0,0,6,-4.9,0,0,0,0,0.27,44.07,142.46,0.93,0.23,877,1.2000000000000002,251,3.1,0.0000,0.0000 +2012,12,19,10,30,7,1.1400000000000001,0.027,0.62,0,0,0,0,6,-4.4,0,0,0,0,0.271,43.96,130.23,0.93,0.23,876,1.3,245,3.8000000000000003,0.0000,0.0000 +2012,12,19,11,30,7.5,1.1400000000000001,0.028,0.62,0,0,0,0,6,-3.9000000000000004,0,0,0,0,0.273,44.34,118.06,0.9400000000000001,0.23,875,1.3,239,4.2,0.0000,0.0000 +2012,12,19,12,30,7.800000000000001,1.1400000000000001,0.028,0.62,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.274,45.18,106.17,0.9400000000000001,0.23,875,1.2000000000000002,234,4.4,0.0000,0.0000 +2012,12,19,13,30,8.3,1.1400000000000001,0.026000000000000002,0.62,0,0,0,0,6,-3.2,0,0,0,0,0.274,44.07,94.78,0.9400000000000001,0.23,874,1.2000000000000002,229,4.7,0.0000,0.0000 +2012,12,19,14,30,9.4,1.12,0.026000000000000002,0.62,28,504,80,7,7,-3.3000000000000003,31,1,7,31,0.275,40.62,84.02,0.9400000000000001,0.23,874,1.3,224,5.1000000000000005,0.0000,0.0000 +2012,12,19,15,30,11.200000000000001,1.1500000000000001,0.025,0.62,46,770,251,0,7,-3.3000000000000003,133,44,0,145,0.277,36.17,74.60000000000001,0.93,0.23,873,1.3,214,5.4,8.8894,6.8374 +2012,12,19,16,30,13.200000000000001,1.17,0.021,0.62,53,887,403,0,8,-2.8000000000000003,146,524,0,353,0.277,32.96,66.77,0.92,0.23,873,1.2000000000000002,207,5.9,17.2154,13.3798 +2012,12,19,17,30,15.200000000000001,1.1500000000000001,0.02,0.62,58,941,510,0,1,-1.1,58,941,0,510,0.278,32.6,61.26,0.91,0.23,872,1.1,217,7.300000000000001,25.8872,20.2045 +2012,12,19,18,30,16.400000000000002,1.09,0.021,0.62,60,957,557,0,0,1,60,957,0,557,0.278,35.32,58.72,0.91,0.23,872,1.1,235,9.1,25.9929,20.3154 +2012,12,19,19,30,15.9,1,0.027,0.62,64,947,543,7,3,0.6000000000000001,215,616,7,527,0.279,35.410000000000004,59.57,0.91,0.23,871,1,249,10.100000000000001,22.6603,17.7026 +2012,12,19,20,30,14,0.98,0.028,0.62,61,929,473,0,4,-2.8000000000000003,138,0,0,138,0.281,31.12,63.64,0.89,0.23,872,0.7000000000000001,259,10.5,16.7464,13.0484 +2012,12,19,21,30,11.3,1,0.022,0.62,50,883,347,0,4,-8.9,77,0,0,77,0.28400000000000003,23.43,70.39,0.87,0.23,874,0.5,265,9.8,8.1586,6.3144 +2012,12,19,22,30,7.9,1.02,0.023,0.62,38,722,175,0,4,-11.200000000000001,7,0,0,7,0.28800000000000003,24.57,79.09,0.89,0.23,876,0.5,281,8.5,8.2481,6.2921 +2012,12,19,23,30,3.6,1.08,0.045,0.62,12,166,15,7,4,-8.6,3,0,7,3,0.291,40.61,88.93,0.93,0.23,879,0.6000000000000001,315,9.3,0.0000,0.0000 +2012,12,20,0,30,0.30000000000000004,1.1,0.073,0.62,0,0,0,0,1,-7.300000000000001,0,0,0,0,0.293,56.58,100.32000000000001,0.9500000000000001,0.23,882,0.6000000000000001,336,10.700000000000001,0.0000,0.0000 +2012,12,20,1,30,-1.5,1.12,0.068,0.62,0,0,0,0,1,-9,0,0,0,0,0.294,56.79,111.99000000000001,0.9500000000000001,0.23,885,0.5,339,10.700000000000001,0.0000,0.0000 +2012,12,20,2,30,-2.5,1.1500000000000001,0.053,0.62,0,0,0,0,4,-10.700000000000001,0,0,0,0,0.297,53.51,124.04,0.9400000000000001,0.23,887,0.5,339,10.4,0.0000,0.0000 +2012,12,20,3,30,-3.1,1.18,0.041,0.62,0,0,0,0,1,-11,0,0,0,0,0.299,54.46,136.27,0.93,0.23,889,0.4,337,9.600000000000001,0.0000,0.0000 +2012,12,20,4,30,-3.5,1.2,0.034,0.62,0,0,0,0,1,-11.700000000000001,0,0,0,0,0.3,53.13,148.41,0.92,0.23,890,0.4,334,8.5,0.0000,0.0000 +2012,12,20,5,30,-3.8000000000000003,1.19,0.027,0.62,0,0,0,0,1,-12.600000000000001,0,0,0,0,0.301,50.39,159.83,0.9,0.23,891,0.30000000000000004,330,7.7,0.0000,0.0000 +2012,12,20,6,30,-4.2,1.16,0.021,0.62,0,0,0,0,1,-13.5,0,0,0,0,0.3,48.22,167.75,0.89,0.23,892,0.2,327,6.800000000000001,0.0000,0.0000 +2012,12,20,7,30,-4.800000000000001,1.1300000000000001,0.017,0.62,0,0,0,0,1,-14.3,0,0,0,0,0.299,47.36,164.76,0.87,0.23,893,0.2,323,5.9,0.0000,0.0000 +2012,12,20,8,30,-5.6000000000000005,1.12,0.015,0.62,0,0,0,0,4,-14.700000000000001,0,0,0,0,0.296,48.550000000000004,154.47,0.87,0.23,893,0.2,319,5,0.0000,0.0000 +2012,12,20,9,30,-6.2,1.1300000000000001,0.015,0.62,0,0,0,0,4,-14.8,0,0,0,0,0.293,50.65,142.56,0.86,0.23,894,0.2,315,4.3,0.0000,0.0000 +2012,12,20,10,30,-6.5,1.1500000000000001,0.016,0.62,0,0,0,0,1,-14.700000000000001,0,0,0,0,0.29,52.22,130.33,0.86,0.23,894,0.2,311,4.1000000000000005,0.0000,0.0000 +2012,12,20,11,30,-6.5,1.16,0.016,0.62,0,0,0,0,4,-14.4,0,0,0,0,0.28600000000000003,53.54,118.16,0.86,0.23,895,0.2,305,3.9000000000000004,0.0000,0.0000 +2012,12,20,12,30,-6.4,1.16,0.016,0.62,0,0,0,0,1,-13.9,0,0,0,0,0.28200000000000003,55.13,106.27,0.86,0.23,896,0.2,299,3.8000000000000003,0.0000,0.0000 +2012,12,20,13,30,-5.800000000000001,1.1400000000000001,0.015,0.62,0,0,0,0,4,-13.5,0,0,0,0,0.28,54.72,94.88,0.86,0.23,897,0.2,294,4,0.0000,0.0000 +2012,12,20,14,30,-3.8000000000000003,1.12,0.015,0.62,25,621,89,7,4,-13.100000000000001,54,5,7,54,0.278,48.51,84.10000000000001,0.86,0.23,898,0.2,294,4.4,0.0000,0.0000 +2012,12,20,15,30,-0.5,1.11,0.015,0.62,41,872,272,0,1,-13.700000000000001,41,872,0,272,0.277,36.31,74.67,0.86,0.23,898,0.2,305,4.800000000000001,7.1156,5.4722 +2012,12,20,16,30,2.4000000000000004,1.1,0.016,0.62,51,969,432,0,1,-18.7,51,969,0,432,0.276,19.32,66.84,0.86,0.23,898,0.2,317,4.9,18.5739,14.4346 +2012,12,20,17,30,4.3,1.1,0.016,0.62,55,1015,542,0,0,-21.1,55,1015,0,542,0.274,13.790000000000001,61.300000000000004,0.86,0.23,898,0.2,318,4.5,27.9036,21.7775 +2012,12,20,18,30,5.9,1.1,0.016,0.62,57,1032,592,0,0,-21.900000000000002,57,1032,0,592,0.273,11.5,58.74,0.86,0.23,897,0.2,314,4.1000000000000005,30.9326,24.1759 +2012,12,20,19,30,7,1.11,0.016,0.62,56,1027,577,0,0,-22,56,1027,0,577,0.271,10.6,59.550000000000004,0.86,0.23,897,0.2,306,3.8000000000000003,29.1267,22.7544 +2012,12,20,20,30,7.6000000000000005,1.1300000000000001,0.016,0.62,53,998,497,0,0,-21.6,53,998,0,497,0.269,10.47,63.61,0.85,0.23,897,0.2,300,3.4000000000000004,7.4329,5.7917 +2012,12,20,21,30,7,1.18,0.015,0.62,46,934,360,0,0,-21.200000000000003,46,934,0,360,0.269,11.38,70.33,0.84,0.23,897,0.2,296,2.5,3.9281,3.0404 +2012,12,20,22,30,4.3,1.21,0.015,0.62,35,787,185,0,0,-14.9,35,787,0,185,0.268,23.22,79.01,0.84,0.23,897,0.2,289,1.5,0.3338,0.2546 +2012,12,20,23,30,1.6,1.24,0.016,0.62,11,324,18,0,1,-13.8,11,324,0,18,0.268,30.85,88.84,0.8300000000000001,0.23,897,0.2,273,1.4000000000000001,0.0000,0.0000 +2012,12,21,0,30,0.4,1.24,0.016,0.62,0,0,0,0,1,-16,0,0,0,0,0.268,27.94,100.23,0.8300000000000001,0.23,897,0.2,255,1.5,0.0000,0.0000 +2012,12,21,1,30,-0.8,1.24,0.015,0.62,0,0,0,0,1,-16.5,0,0,0,0,0.269,29.43,111.89,0.8300000000000001,0.23,897,0.2,241,1.6,0.0000,0.0000 +2012,12,21,2,30,-1.8,1.24,0.015,0.62,0,0,0,0,1,-16.6,0,0,0,0,0.269,31.32,123.94,0.8300000000000001,0.23,897,0.2,236,1.7000000000000002,0.0000,0.0000 +2012,12,21,3,30,-2.4000000000000004,1.24,0.016,0.62,0,0,0,0,4,-17,0,0,0,0,0.268,31.62,136.17000000000002,0.8300000000000001,0.23,897,0.2,235,1.9000000000000001,0.0000,0.0000 +2012,12,21,4,30,-2.6,1.25,0.016,0.62,0,0,0,0,1,-17.6,0,0,0,0,0.266,30.68,148.32,0.8300000000000001,0.23,897,0.2,237,2.3000000000000003,0.0000,0.0000 +2012,12,21,5,30,-2.8000000000000003,1.25,0.016,0.62,0,0,0,0,1,-18,0,0,0,0,0.265,29.98,159.75,0.8300000000000001,0.23,897,0.2,242,2.6,0.0000,0.0000 +2012,12,21,6,30,-3.1,1.24,0.016,0.62,0,0,0,0,0,-18.2,0,0,0,0,0.264,30.07,167.73,0.84,0.23,897,0.2,248,2.9000000000000004,0.0000,0.0000 +2012,12,21,7,30,-3.5,1.23,0.017,0.62,0,0,0,0,0,-18.3,0,0,0,0,0.264,30.91,164.83,0.84,0.23,896,0.2,252,2.9000000000000004,0.0000,0.0000 +2012,12,21,8,30,-3.8000000000000003,1.22,0.018000000000000002,0.62,0,0,0,0,0,-18.1,0,0,0,0,0.265,32.06,154.57,0.85,0.23,896,0.2,255,3,0.0000,0.0000 +2012,12,21,9,30,-3.7,1.22,0.02,0.62,0,0,0,0,4,-17.8,0,0,0,0,0.266,32.65,142.67000000000002,0.86,0.23,896,0.2,255,3.3000000000000003,0.0000,0.0000 +2012,12,21,10,30,-3.5,1.22,0.021,0.62,0,0,0,0,0,-17.2,0,0,0,0,0.266,33.67,130.44,0.86,0.23,895,0.2,254,3.4000000000000004,0.0000,0.0000 +2012,12,21,11,30,-3.5,1.24,0.019,0.62,0,0,0,0,1,-16.400000000000002,0,0,0,0,0.266,36.19,118.27,0.86,0.23,895,0.2,254,3.3000000000000003,0.0000,0.0000 +2012,12,21,12,30,-3.4000000000000004,1.26,0.018000000000000002,0.62,0,0,0,0,4,-15.5,0,0,0,0,0.266,38.550000000000004,106.37,0.85,0.23,895,0.2,254,3.3000000000000003,0.0000,0.0000 +2012,12,21,13,30,-2.6,1.26,0.017,0.62,0,0,0,0,1,-15,0,0,0,0,0.266,37.93,94.97,0.85,0.23,895,0.2,253,3.7,0.0000,0.0000 +2012,12,21,14,30,-0.30000000000000004,1.25,0.016,0.62,25,617,88,7,4,-14.700000000000001,51,3,7,51,0.265,32.89,84.19,0.85,0.23,896,0.2,250,4.3,0.0000,0.0000 +2012,12,21,15,30,2.9000000000000004,1.23,0.016,0.62,42,870,271,0,3,-14.600000000000001,158,142,0,196,0.266,26.23,74.75,0.85,0.23,896,0.2,245,4.3,13.3396,10.2575 +2012,12,21,16,30,6.6000000000000005,1.22,0.017,0.62,51,968,431,0,1,-14.200000000000001,51,968,0,431,0.266,20.96,66.9,0.85,0.23,895,0.2,239,4.2,22.7179,17.6540 +2012,12,21,17,30,10.100000000000001,1.22,0.017,0.62,56,1014,542,0,7,-14.5,184,589,0,467,0.267,16.16,61.34,0.85,0.23,895,0.2,237,4.7,29.6470,23.1376 +2012,12,21,18,30,12.700000000000001,1.21,0.018000000000000002,0.62,59,1030,593,0,0,-15.700000000000001,59,1030,0,593,0.268,12.32,58.75,0.86,0.23,894,0.2,234,5.1000000000000005,32.8726,25.6920 +2012,12,21,19,30,14.100000000000001,1.21,0.019,0.62,59,1024,578,0,0,-17.1,59,1024,0,578,0.269,10.03,59.53,0.86,0.23,893,0.2,230,5.300000000000001,31.8939,24.9164 +2012,12,21,20,30,14.4,1.2,0.019,0.62,56,995,498,0,0,-18.1,56,995,0,498,0.27,9.01,63.56,0.85,0.23,892,0.2,228,5,26.7749,20.8635 +2012,12,21,21,30,12.600000000000001,1.21,0.018000000000000002,0.62,48,930,362,0,0,-18,48,930,0,362,0.271,10.23,70.27,0.85,0.23,892,0.2,224,3.5,18.3751,14.2236 +2012,12,21,22,30,8.700000000000001,1.19,0.018000000000000002,0.62,37,781,187,0,0,-12.3,37,781,0,187,0.272,21.19,78.94,0.86,0.23,892,0.2,217,2.2,8.8225,6.7318 +2012,12,21,23,30,5.4,1.17,0.018000000000000002,0.62,12,319,19,0,0,-11.700000000000001,12,319,0,19,0.272,27.87,88.77,0.87,0.23,892,0.2,213,2.1,0.0000,0.0000 +2012,12,22,0,30,4.2,1.17,0.018000000000000002,0.62,0,0,0,0,0,-13,0,0,0,0,0.272,27.400000000000002,100.14,0.87,0.23,892,0.2,215,2.5,0.0000,0.0000 +2012,12,22,1,30,3.3000000000000003,1.18,0.018000000000000002,0.62,0,0,0,0,0,-13.8,0,0,0,0,0.271,27.35,111.79,0.87,0.23,892,0.2,218,2.8000000000000003,0.0000,0.0000 +2012,12,22,2,30,2.4000000000000004,1.19,0.017,0.62,0,0,0,0,0,-14.4,0,0,0,0,0.268,27.66,123.84,0.87,0.23,892,0.2,223,3.1,0.0000,0.0000 +2012,12,22,3,30,1.6,1.2,0.017,0.62,0,0,0,0,0,-15.100000000000001,0,0,0,0,0.267,27.76,136.07,0.87,0.23,892,0.2,227,3.5,0.0000,0.0000 +2012,12,22,4,30,1,1.21,0.018000000000000002,0.62,0,0,0,0,0,-15.5,0,0,0,0,0.267,27.96,148.22,0.87,0.23,892,0.2,232,3.7,0.0000,0.0000 +2012,12,22,5,30,0.30000000000000004,1.21,0.018000000000000002,0.62,0,0,0,0,0,-15.8,0,0,0,0,0.267,28.85,159.66,0.87,0.23,892,0.30000000000000004,237,3.8000000000000003,0.0000,0.0000 +2012,12,22,6,30,-0.2,1.21,0.018000000000000002,0.62,0,0,0,0,0,-15.8,0,0,0,0,0.266,29.86,167.69,0.88,0.23,891,0.30000000000000004,243,3.8000000000000003,0.0000,0.0000 +2012,12,22,7,30,-0.7000000000000001,1.2,0.018000000000000002,0.62,0,0,0,0,0,-15.600000000000001,0,0,0,0,0.265,31.46,164.9,0.88,0.23,891,0.30000000000000004,247,3.8000000000000003,0.0000,0.0000 +2012,12,22,8,30,-1.2000000000000002,1.19,0.018000000000000002,0.62,0,0,0,0,0,-15.200000000000001,0,0,0,0,0.265,33.71,154.66,0.88,0.23,891,0.4,248,3.6,0.0000,0.0000 +2012,12,22,9,30,-1.5,1.19,0.019,0.62,0,0,0,0,0,-14.8,0,0,0,0,0.264,35.62,142.77,0.89,0.23,890,0.4,249,3.6,0.0000,0.0000 +2012,12,22,10,30,-1.3,1.18,0.021,0.62,0,0,0,0,0,-14.5,0,0,0,0,0.263,36.01,130.54,0.9,0.23,889,0.4,252,3.5,0.0000,0.0000 +2012,12,22,11,30,-0.8,1.17,0.023,0.62,0,0,0,0,4,-14.200000000000001,0,0,0,0,0.263,35.42,118.36,0.9,0.23,889,0.4,255,3.4000000000000004,0.0000,0.0000 +2012,12,22,12,30,-0.5,1.16,0.024,0.62,0,0,0,0,0,-14.100000000000001,0,0,0,0,0.264,34.9,106.47,0.9,0.23,889,0.30000000000000004,256,3.2,0.0000,0.0000 +2012,12,22,13,30,0,1.1500000000000001,0.024,0.62,0,0,0,0,1,-14.100000000000001,0,0,0,0,0.264,33.84,95.06,0.9,0.23,889,0.30000000000000004,256,3.2,0.0000,0.0000 +2012,12,22,14,30,1.6,1.1300000000000001,0.025,0.62,28,565,84,7,4,-14.200000000000001,50,3,7,50,0.264,29.76,84.27,0.9,0.23,889,0.30000000000000004,255,3.7,0.0000,0.0000 +2012,12,22,15,30,3.8000000000000003,1.11,0.026000000000000002,0.62,47,831,265,0,7,-14.5,116,390,0,218,0.263,25.01,74.82000000000001,0.9,0.23,889,0.30000000000000004,249,3.7,9.6055,7.3851 +2012,12,22,16,30,6,1.09,0.027,0.62,58,936,425,0,7,-13.700000000000001,210,236,0,302,0.262,22.82,66.95,0.91,0.23,888,0.30000000000000004,239,3.3000000000000003,22.6544,17.6036 +2012,12,22,17,30,8.1,1.07,0.03,0.62,66,980,535,0,7,-12.700000000000001,251,300,0,395,0.26,21.38,61.36,0.91,0.23,888,0.30000000000000004,233,3.2,25.5382,19.9304 +2012,12,22,18,30,9.700000000000001,1.04,0.033,0.62,70,994,586,0,7,-12.100000000000001,252,422,0,471,0.259,20.150000000000002,58.75,0.92,0.23,886,0.30000000000000004,233,3.4000000000000004,32.9263,25.7338 +2012,12,22,19,30,10.700000000000001,1.03,0.033,0.62,69,978,565,7,7,-12.100000000000001,162,732,7,534,0.259,18.94,59.51,0.92,0.23,886,0.4,238,3.5,31.9528,24.9627 +2012,12,22,20,30,11,1.02,0.034,0.62,65,945,487,0,4,-11.600000000000001,280,65,0,309,0.259,19.240000000000002,63.51,0.91,0.23,885,0.4,241,3.1,26.8381,20.9135 +2012,12,22,21,30,10.100000000000001,1.02,0.035,0.62,58,871,353,0,7,-10.100000000000001,195,115,0,234,0.26,23.01,70.2,0.91,0.23,885,0.4,241,2.2,18.4872,14.3115 +2012,12,22,22,30,7.6000000000000005,1.01,0.035,0.62,43,709,180,0,7,-6.4,110,45,0,119,0.26,36.31,78.86,0.91,0.23,885,0.4,244,1.7000000000000002,8.9192,6.8063 +2012,12,22,23,30,5.4,0.99,0.033,0.62,13,231,18,7,4,-7.300000000000001,6,0,7,6,0.261,39.36,88.69,0.9,0.23,885,0.4,251,1.8,0.0000,0.0000 +2012,12,23,0,30,4,0.97,0.032,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.261,40.53,100.04,0.9,0.23,885,0.4,258,2,0.0000,0.0000 +2012,12,23,1,30,3,0.96,0.03,0.62,0,0,0,0,4,-8.8,0,0,0,0,0.261,41.76,111.69,0.9,0.23,885,0.4,265,2.1,0.0000,0.0000 +2012,12,23,2,30,2.2,0.96,0.029,0.62,0,0,0,0,0,-9,0,0,0,0,0.26,43.38,123.74000000000001,0.9,0.23,885,0.4,274,2.2,0.0000,0.0000 +2012,12,23,3,30,1.7000000000000002,0.97,0.029,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.26,44.21,135.96,0.9,0.23,885,0.5,285,2.5,0.0000,0.0000 +2012,12,23,4,30,1.1,0.98,0.029,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.261,45.53,148.11,0.9,0.23,886,0.5,295,2.5,0.0000,0.0000 +2012,12,23,5,30,0.30000000000000004,0.99,0.027,0.62,0,0,0,0,0,-9.5,0,0,0,0,0.262,47.7,159.57,0.89,0.23,886,0.5,302,2.4000000000000004,0.0000,0.0000 +2012,12,23,6,30,-0.4,0.99,0.025,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.263,49.89,167.65,0.88,0.23,885,0.5,306,2.4000000000000004,0.0000,0.0000 +2012,12,23,7,30,-1.1,0.99,0.023,0.62,0,0,0,0,0,-9.600000000000001,0,0,0,0,0.262,52.56,164.96,0.87,0.23,885,0.4,305,2.5,0.0000,0.0000 +2012,12,23,8,30,-1.5,0.99,0.021,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.262,54.85,154.75,0.86,0.23,885,0.4,301,2.7,0.0000,0.0000 +2012,12,23,9,30,-1.9000000000000001,1.02,0.019,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.262,57.71,142.86,0.86,0.23,885,0.4,297,3.1,0.0000,0.0000 +2012,12,23,10,30,-2.3000000000000003,1.06,0.018000000000000002,0.62,0,0,0,0,0,-8.9,0,0,0,0,0.263,60.370000000000005,130.63,0.86,0.23,885,0.30000000000000004,295,3.3000000000000003,0.0000,0.0000 +2012,12,23,11,30,-2.8000000000000003,1.12,0.017,0.62,0,0,0,0,0,-9,0,0,0,0,0.265,62.54,118.46000000000001,0.87,0.23,885,0.30000000000000004,293,3.4000000000000004,0.0000,0.0000 +2012,12,23,12,30,-3.1,1.1400000000000001,0.017,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.266,63.39,106.56,0.88,0.23,885,0.30000000000000004,290,3.6,0.0000,0.0000 +2012,12,23,13,30,-2.6,1.1500000000000001,0.016,0.62,0,0,0,0,0,-9,0,0,0,0,0.267,61.29,95.14,0.88,0.23,885,0.30000000000000004,288,3.9000000000000004,0.0000,0.0000 +2012,12,23,14,30,-0.4,1.1500000000000001,0.015,0.62,25,597,84,0,1,-8.6,25,597,0,84,0.269,53.74,84.34,0.88,0.23,885,0.30000000000000004,287,4.3,0.0000,0.0000 +2012,12,23,15,30,3.1,1.1500000000000001,0.015,0.62,41,855,264,0,3,-8,159,109,0,187,0.271,43.87,74.88,0.88,0.23,885,0.30000000000000004,288,4.2,10.6771,8.2080 +2012,12,23,16,30,7.4,1.1500000000000001,0.014,0.62,48,958,423,0,3,-7.5,223,268,0,327,0.272,33.82,66.99,0.88,0.23,885,0.30000000000000004,292,4.3,15.8675,12.3292 +2012,12,23,17,30,11.5,1.17,0.014,0.62,53,1005,534,0,0,-7.7,53,1005,0,534,0.273,25.32,61.39,0.88,0.23,884,0.30000000000000004,296,4.800000000000001,21.5981,16.8553 +2012,12,23,18,30,14.700000000000001,1.16,0.014,0.62,54,1022,585,0,0,-8.9,54,1022,0,585,0.275,18.740000000000002,58.74,0.87,0.23,883,0.30000000000000004,299,5.5,26.1523,20.4395 +2012,12,23,19,30,16.8,1.1400000000000001,0.015,0.62,55,1016,571,0,0,-10.9,55,1016,0,571,0.278,13.96,59.47,0.87,0.23,882,0.30000000000000004,303,5.9,29.5238,23.0653 +2012,12,23,20,30,17.5,1.09,0.016,0.62,53,986,494,0,0,-12.5,53,986,0,494,0.28200000000000003,11.78,63.45,0.87,0.23,882,0.30000000000000004,310,5.5,16.6583,12.9814 +2012,12,23,21,30,15.700000000000001,1.05,0.018000000000000002,0.62,48,904,356,0,0,-12.8,48,904,0,356,0.28700000000000003,12.9,70.12,0.87,0.23,882,0.4,319,3.7,11.9579,9.2577 +2012,12,23,22,30,11,1.05,0.019,0.62,37,751,183,0,0,-8.6,37,751,0,183,0.293,24.51,78.77,0.87,0.23,883,0.4,336,2.2,5.6769,4.3326 +2012,12,23,23,30,7,1.1,0.02,0.62,12,288,19,0,0,-7.9,12,288,0,19,0.298,33.78,88.60000000000001,0.87,0.23,884,0.5,177,2.2,0.0000,0.0000 +2012,12,24,0,30,5.2,1.1,0.02,0.62,0,0,0,0,0,-8.6,0,0,0,0,0.301,36.09,99.93,0.87,0.23,885,0.4,14,2.5,0.0000,0.0000 +2012,12,24,1,30,3.5,1.07,0.02,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.303,39.09,111.59,0.87,0.23,886,0.4,25,2.4000000000000004,0.0000,0.0000 +2012,12,24,2,30,1.7000000000000002,1.08,0.019,0.62,0,0,0,0,0,-9.4,0,0,0,0,0.304,43.58,123.63000000000001,0.87,0.23,886,0.4,29,1.8,0.0000,0.0000 +2012,12,24,3,30,0.5,1.08,0.02,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.304,47.910000000000004,135.86,0.88,0.23,887,0.4,27,1.4000000000000001,0.0000,0.0000 +2012,12,24,4,30,0.2,1.07,0.023,0.62,0,0,0,0,4,-9.3,0,0,0,0,0.305,48.76,148.01,0.9,0.23,887,0.4,26,1.3,0.0000,0.0000 +2012,12,24,5,30,0.7000000000000001,1.04,0.032,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.304,46.51,159.47,0.91,0.23,887,0.4,13,1.1,0.0000,0.0000 +2012,12,24,6,30,1,1.03,0.037,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.304,46.800000000000004,167.6,0.92,0.23,887,0.4,165,1,0.0000,0.0000 +2012,12,24,7,30,0.8,1.03,0.039,0.62,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.303,48.89,165.01,0.92,0.23,886,0.5,325,1.1,0.0000,0.0000 +2012,12,24,8,30,0.5,1.03,0.042,0.62,0,0,0,0,7,-8.700000000000001,0,0,0,0,0.302,50.06,154.83,0.93,0.23,886,0.4,325,1.1,0.0000,0.0000 +2012,12,24,9,30,0.4,1.04,0.045,0.62,0,0,0,0,7,-8.8,0,0,0,0,0.302,50.18,142.95000000000002,0.93,0.23,886,0.4,335,1,0.0000,0.0000 +2012,12,24,10,30,0.30000000000000004,1.05,0.047,0.62,0,0,0,0,7,-8.9,0,0,0,0,0.303,50.25,130.73,0.93,0.23,886,0.4,349,1,0.0000,0.0000 +2012,12,24,11,30,0,1.08,0.048,0.62,0,0,0,0,6,-8.9,0,0,0,0,0.304,51.34,118.55,0.93,0.23,886,0.4,192,0.9,0.0000,0.0000 +2012,12,24,12,30,-0.6000000000000001,1.12,0.046,0.62,0,0,0,0,6,-8.9,0,0,0,0,0.305,53.63,106.64,0.92,0.23,886,0.4,46,0.9,0.0000,0.0000 +2012,12,24,13,30,-1.2000000000000002,1.17,0.039,0.62,0,0,0,0,7,-9,0,0,0,0,0.305,55.550000000000004,95.22,0.91,0.23,886,0.5,83,0.9,0.0000,0.0000 +2012,12,24,14,30,-0.1,1.18,0.036000000000000004,0.62,28,500,77,7,4,-9.200000000000001,43,1,7,43,0.304,50.45,84.41,0.91,0.23,885,0.5,119,1.6,0.0000,0.0000 +2012,12,24,15,30,2.4000000000000004,1.16,0.04,0.62,51,775,253,0,4,-9.200000000000001,151,167,0,195,0.303,41.980000000000004,74.94,0.92,0.23,885,0.5,144,2.6,9.1539,7.0363 +2012,12,24,16,30,4.7,1.1500000000000001,0.048,0.62,67,869,406,0,4,-9.1,244,120,0,291,0.302,35.92,67.03,0.93,0.23,885,0.6000000000000001,154,3.2,17.1755,13.3450 +2012,12,24,17,30,6.800000000000001,1.1400000000000001,0.051000000000000004,0.62,75,920,515,0,7,-9.3,222,389,0,408,0.302,30.64,61.4,0.93,0.23,884,0.6000000000000001,165,3.4000000000000004,29.1930,22.7820 +2012,12,24,18,30,8.4,1.1300000000000001,0.046,0.62,75,947,567,0,7,-9.3,260,363,0,449,0.302,27.59,58.730000000000004,0.92,0.23,883,0.6000000000000001,179,3.5,32.4839,25.3882 +2012,12,24,19,30,9.9,1.1300000000000001,0.043000000000000003,0.62,73,947,554,0,8,-9.1,166,638,0,490,0.302,25.310000000000002,59.43,0.92,0.23,882,0.6000000000000001,189,3.6,31.5767,24.6696 +2012,12,24,20,30,10.5,1.12,0.044,0.62,69,906,475,0,7,-8.8,232,261,0,349,0.302,24.79,63.39,0.92,0.23,881,0.7000000000000001,188,3.4000000000000004,26.6428,20.7630 +2012,12,24,21,30,9.5,1.12,0.05,0.62,63,822,343,0,7,-8.4,186,196,0,253,0.302,27.490000000000002,70.04,0.93,0.23,880,0.7000000000000001,170,2.8000000000000003,18.2054,14.0960 +2012,12,24,22,30,7.5,1.12,0.055,0.62,48,644,174,0,7,-6.6000000000000005,110,50,0,120,0.304,35.99,78.67,0.93,0.23,879,0.7000000000000001,151,2.9000000000000004,8.7321,6.6652 +2012,12,24,23,30,5.800000000000001,1.11,0.058,0.62,14,164,18,7,7,-6.800000000000001,8,0,7,8,0.306,39.83,88.51,0.93,0.23,879,0.8,145,3.8000000000000003,0.0000,0.0000 +2012,12,25,0,30,4.6000000000000005,1.1,0.057,0.62,0,0,0,0,7,-6.800000000000001,0,0,0,0,0.309,43.45,99.83,0.93,0.75,879,0.8,142,4.1000000000000005,0.0000,0.0000 +2012,12,25,1,30,3.5,1.09,0.055,0.62,0,0,0,0,6,-6.6000000000000005,0,0,0,0,0.313,47.74,111.47,0.93,0.75,878,0.8,139,3.8000000000000003,0.0000,0.0000 +2012,12,25,2,30,2.4000000000000004,1.09,0.052000000000000005,0.62,0,0,0,0,7,-6.4,0,0,0,0,0.316,52.1,123.52,0.92,0.75,878,0.8,132,3.6,0.0000,0.0000 +2012,12,25,3,30,1.2000000000000002,1.09,0.05,0.62,0,0,0,0,7,-6.5,0,0,0,0,0.319,56.72,135.74,0.91,0.75,878,0.8,121,3.7,0.0000,0.0000 +2012,12,25,4,30,-0.1,1.09,0.05,0.62,0,0,0,0,7,-6.7,0,0,0,0,0.322,61.25,147.9,0.91,0.75,878,0.8,109,4,0.0000,0.0000 +2012,12,25,5,30,-1.3,1.1,0.052000000000000005,0.62,0,0,0,0,7,-7,0,0,0,0,0.326,65.02,159.37,0.91,0.75,878,0.8,98,4.4,0.0000,0.0000 +2012,12,25,6,30,-2.3000000000000003,1.1,0.06,0.62,0,0,0,0,7,-7.4,0,0,0,0,0.331,68.03,167.54,0.92,0.75,878,0.9,90,4.7,0.0000,0.0000 +2012,12,25,7,30,-3.1,1.09,0.078,0.62,0,0,0,0,4,-7.7,0,0,0,0,0.337,70.57000000000001,165.05,0.93,0.75,878,1,82,5.1000000000000005,0.0000,0.0000 +2012,12,25,8,30,-4,1.07,0.10200000000000001,0.62,0,0,0,0,7,-7.800000000000001,0,0,0,0,0.34400000000000003,74.8,154.91,0.9400000000000001,0.75,879,1,71,5.4,0.0000,0.0000 +2012,12,25,9,30,-4.9,1.05,0.14200000000000002,0.62,0,0,0,0,7,-8,0,0,0,0,0.35000000000000003,79.08,143.04,0.9500000000000001,0.75,880,1,58,6,0.0000,0.0000 +2012,12,25,10,30,-5.9,1.02,0.18,0.62,0,0,0,0,7,-8.5,0,0,0,0,0.358,81.57000000000001,130.81,0.9500000000000001,0.75,881,0.9,44,6.5,0.0000,0.0000 +2012,12,25,11,30,-6.9,1,0.181,0.62,0,0,0,0,4,-9.700000000000001,0,0,0,0,0.366,80.32000000000001,118.64,0.96,0.75,882,0.9,27,6.9,0.0000,0.0000 +2012,12,25,12,30,-7.7,1.03,0.233,0.62,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.372,76.46000000000001,106.73,0.97,0.75,884,0.8,11,7.2,0.0000,0.0000 +2012,12,25,13,30,-8.3,1.06,0.23600000000000002,0.62,0,0,0,0,6,-12.4,0,0,0,0,0.375,72.06,95.3,0.97,0.75,886,0.8,2,7.6000000000000005,0.0000,0.0000 +2012,12,25,14,30,-8.3,1.08,0.193,0.62,44,205,64,7,7,-13.3,30,0,7,30,0.375,66.99,84.47,0.97,0.75,887,0.7000000000000001,180,8,0.0000,0.0000 +2012,12,25,15,30,-7.7,1.12,0.17,0.62,94,545,235,0,1,-13.9,94,545,0,235,0.374,61.14,74.99,0.97,0.75,888,0.7000000000000001,180,8.4,9.5405,7.3327 +2012,12,25,16,30,-6.7,1.1500000000000001,0.149,0.62,116,718,396,0,4,-14.100000000000001,51,0,0,51,0.371,55.76,67.06,0.97,0.75,889,0.7000000000000001,1,8.700000000000001,15.2797,11.8716 +2012,12,25,17,30,-5.800000000000001,1.17,0.127,0.62,122,813,511,0,4,-14,201,0,0,201,0.367,52.35,61.410000000000004,0.96,0.75,889,0.7000000000000001,2,8.700000000000001,22.3033,17.4053 +2012,12,25,18,30,-5.2,1.18,0.13,0.62,130,836,564,0,0,-13.9,130,836,0,564,0.363,50.56,58.71,0.97,0.75,889,0.7000000000000001,3,8.5,24.9335,19.4871 +2012,12,25,19,30,-5,1.17,0.124,0.62,126,837,552,0,0,-13.700000000000001,126,837,0,552,0.357,50.6,59.38,0.96,0.75,890,0.7000000000000001,4,8.200000000000001,27.1035,21.1754 +2012,12,25,20,30,-5.1000000000000005,1.17,0.11900000000000001,0.62,114,804,475,0,0,-13.4,114,804,0,475,0.35000000000000003,52.230000000000004,63.31,0.96,0.75,890,0.7000000000000001,2,7.800000000000001,18.8303,14.6753 +2012,12,25,21,30,-5.4,1.2,0.11,0.62,93,729,343,0,1,-13.3,93,729,0,343,0.34500000000000003,53.910000000000004,69.94,0.96,0.75,891,0.7000000000000001,180,7.300000000000001,12.9474,10.0259 +2012,12,25,22,30,-6.1000000000000005,1.23,0.091,0.62,61,577,175,0,0,-13.200000000000001,61,577,0,175,0.342,57.03,78.57000000000001,0.9500000000000001,0.75,891,0.7000000000000001,359,6.5,5.7276,4.3726 +2012,12,25,23,30,-6.9,1.24,0.079,0.62,15,148,19,0,0,-13.3,15,148,0,19,0.338,60.550000000000004,88.39,0.9500000000000001,0.75,892,0.6000000000000001,359,5.7,0.0000,0.0000 +2012,12,26,0,30,-7.5,1.25,0.07,0.62,0,0,0,0,4,-13.4,0,0,0,0,0.335,62.93,99.72,0.9400000000000001,0.79,893,0.6000000000000001,181,5.4,0.0000,0.0000 +2012,12,26,1,30,-7.9,1.25,0.059000000000000004,0.62,0,0,0,0,4,-13.4,0,0,0,0,0.332,64.63,111.36,0.9400000000000001,0.79,893,0.6000000000000001,4,5.300000000000001,0.0000,0.0000 +2012,12,26,2,30,-8.200000000000001,1.25,0.053,0.62,0,0,0,0,1,-13.4,0,0,0,0,0.328,65.95,123.4,0.9400000000000001,0.79,893,0.6000000000000001,6,5,0.0000,0.0000 +2012,12,26,3,30,-8.4,1.24,0.049,0.62,0,0,0,0,0,-13.5,0,0,0,0,0.324,66.63,135.63,0.93,0.79,893,0.5,6,4.5,0.0000,0.0000 +2012,12,26,4,30,-8.4,1.24,0.048,0.62,0,0,0,0,0,-13.600000000000001,0,0,0,0,0.321,66.28,147.78,0.93,0.79,893,0.5,7,3.9000000000000004,0.0000,0.0000 +2012,12,26,5,30,-8.5,1.24,0.046,0.62,0,0,0,0,1,-13.600000000000001,0,0,0,0,0.318,66.66,159.26,0.93,0.79,892,0.5,11,3.7,0.0000,0.0000 +2012,12,26,6,30,-8.5,1.24,0.043000000000000003,0.62,0,0,0,0,4,-13.600000000000001,0,0,0,0,0.316,66.74,167.48,0.93,0.79,892,0.4,17,3.3000000000000003,0.0000,0.0000 +2012,12,26,7,30,-8.4,1.22,0.043000000000000003,0.62,0,0,0,0,7,-13.5,0,0,0,0,0.314,66.39,165.09,0.9400000000000001,0.79,891,0.4,187,2.5,0.0000,0.0000 +2012,12,26,8,30,-8.3,1.21,0.044,0.62,0,0,0,0,7,-13.5,0,0,0,0,0.312,66.33,154.99,0.9400000000000001,0.79,891,0.4,340,2,0.0000,0.0000 +2012,12,26,9,30,-8,1.21,0.046,0.62,0,0,0,0,7,-13.4,0,0,0,0,0.311,65.32000000000001,143.12,0.9400000000000001,0.79,891,0.4,323,1.8,0.0000,0.0000 +2012,12,26,10,30,-7.7,1.21,0.047,0.62,0,0,0,0,7,-13.200000000000001,0,0,0,0,0.31,64.53,130.9,0.9400000000000001,0.79,891,0.4,316,1.7000000000000002,0.0000,0.0000 +2012,12,26,11,30,-7.300000000000001,1.21,0.048,0.62,0,0,0,0,7,-13.100000000000001,0,0,0,0,0.308,63.35,118.72,0.9400000000000001,0.79,891,0.4,308,1.4000000000000001,0.0000,0.0000 +2012,12,26,12,30,-6.800000000000001,1.21,0.048,0.62,0,0,0,0,7,-12.9,0,0,0,0,0.305,61.84,106.8,0.9400000000000001,0.79,891,0.5,298,0.9,0.0000,0.0000 +2012,12,26,13,30,-6.2,1.22,0.047,0.62,0,0,0,0,7,-12.700000000000001,0,0,0,0,0.304,60.02,95.37,0.9400000000000001,0.79,890,0.5,231,0.8,0.0000,0.0000 +2012,12,26,14,30,-5.300000000000001,1.23,0.046,0.62,31,460,75,7,6,-12.4,26,0,7,26,0.303,57.36,84.53,0.9400000000000001,0.79,890,0.6000000000000001,170,1.5,0.0000,0.0000 +2012,12,26,15,30,-4,1.24,0.046,0.62,59,747,252,0,7,-11.9,45,0,0,45,0.302,54,75.03,0.9400000000000001,0.79,890,0.7000000000000001,175,2.4000000000000004,11.4925,8.8322 +2012,12,26,16,30,-2.4000000000000004,1.27,0.043000000000000003,0.62,74,864,410,0,7,-11.600000000000001,168,11,0,172,0.3,49.42,67.09,0.9400000000000001,0.79,890,0.8,181,3.3000000000000003,2.6772,2.0800 +2012,12,26,17,30,-0.7000000000000001,1.28,0.04,0.62,82,929,527,0,7,-11.100000000000001,248,26,0,260,0.299,45.36,61.410000000000004,0.9400000000000001,0.79,889,0.7000000000000001,186,4,10.9870,8.5741 +2012,12,26,18,30,0.8,1.27,0.04,0.62,86,950,580,0,7,-10.4,351,87,0,396,0.298,42.84,58.68,0.93,0.79,887,0.7000000000000001,190,4.7,31.3230,24.4812 +2012,12,26,19,30,1.7000000000000002,1.27,0.037,0.62,83,950,568,0,7,-9.9,346,88,0,391,0.297,41.93,59.32,0.93,0.79,886,0.7000000000000001,195,5.1000000000000005,30.5416,23.8622 +2012,12,26,20,30,2.2,1.27,0.035,0.62,76,922,491,0,6,-9.5,285,52,0,308,0.296,41.56,63.230000000000004,0.93,0.79,885,0.7000000000000001,198,5.2,25.6427,19.9857 +2012,12,26,21,30,2,1.27,0.034,0.62,65,847,356,0,7,-9.3,223,74,0,248,0.297,42.95,69.85000000000001,0.93,0.79,884,0.8,195,4.7,17.5689,13.6063 +2012,12,26,22,30,0.5,1.27,0.035,0.62,47,689,185,0,4,-9,102,2,0,102,0.299,49.050000000000004,78.46000000000001,0.93,0.79,884,0.8,184,3.6,8.3554,6.3798 +2012,12,26,23,30,-1.1,1.27,0.037,0.62,14,239,21,7,7,-8.9,12,0,7,12,0.301,55.480000000000004,88.29,0.93,0.79,883,0.9,174,3.6,0.0000,0.0000 +2012,12,27,0,30,-1.7000000000000002,1.26,0.041,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.302,57.22,99.60000000000001,0.9400000000000001,0.24,883,0.9,169,4.3,0.0000,0.0000 +2012,12,27,1,30,-2.1,1.24,0.045,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.303,58.76,111.24000000000001,0.9400000000000001,0.24,883,0.9,169,4.6000000000000005,0.0000,0.0000 +2012,12,27,2,30,-2.5,1.24,0.044,0.62,0,0,0,0,7,-9.200000000000001,0,0,0,0,0.303,60.21,123.28,0.9400000000000001,0.24,883,0.8,172,4.5,0.0000,0.0000 +2012,12,27,3,30,-2.9000000000000004,1.25,0.041,0.62,0,0,0,0,7,-9.3,0,0,0,0,0.303,61.480000000000004,135.51,0.93,0.24,883,0.7000000000000001,175,4.2,0.0000,0.0000 +2012,12,27,4,30,-3.6,1.24,0.037,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.303,63.75,147.66,0.92,0.24,882,0.6000000000000001,179,3.9000000000000004,0.0000,0.0000 +2012,12,27,5,30,-4.2,1.2,0.034,0.62,0,0,0,0,4,-9.700000000000001,0,0,0,0,0.302,65.7,159.14000000000001,0.91,0.24,882,0.5,184,3.9000000000000004,0.0000,0.0000 +2012,12,27,6,30,-4.5,1.17,0.034,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.302,66.83,167.4,0.91,0.24,882,0.5,190,4.2,0.0000,0.0000 +2012,12,27,7,30,-4.7,1.16,0.034,0.62,0,0,0,0,0,-9.700000000000001,0,0,0,0,0.302,67.91,165.12,0.91,0.24,881,0.5,195,4.5,0.0000,0.0000 +2012,12,27,8,30,-4.7,1.16,0.034,0.62,0,0,0,0,1,-9.600000000000001,0,0,0,0,0.302,68.45,155.06,0.91,0.24,881,0.5,200,4.5,0.0000,0.0000 +2012,12,27,9,30,-4.2,1.1400000000000001,0.033,0.62,0,0,0,0,1,-9.5,0,0,0,0,0.302,66.63,143.20000000000002,0.91,0.24,880,0.5,209,4.5,0.0000,0.0000 +2012,12,27,10,30,-3.4000000000000004,1.1400000000000001,0.033,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.303,63.76,130.98,0.91,0.24,880,0.5,223,4.9,0.0000,0.0000 +2012,12,27,11,30,-2.8000000000000003,1.1400000000000001,0.032,0.62,0,0,0,0,1,-9,0,0,0,0,0.304,62.27,118.8,0.91,0.24,879,0.5,235,5,0.0000,0.0000 +2012,12,27,12,30,-2.5,1.1500000000000001,0.031,0.62,0,0,0,0,1,-8.9,0,0,0,0,0.305,61.25,106.88,0.91,0.24,880,0.5,243,4.7,0.0000,0.0000 +2012,12,27,13,30,-2.1,1.16,0.03,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.307,58.9,95.43,0.91,0.24,880,0.4,252,4.4,0.0000,0.0000 +2012,12,27,14,30,-0.4,1.1500000000000001,0.028,0.62,27,526,76,7,7,-9.1,45,8,7,45,0.307,51.730000000000004,84.59,0.91,0.24,880,0.4,258,4.6000000000000005,0.0000,0.0000 +2012,12,27,15,30,2.3000000000000003,1.1400000000000001,0.027,0.62,47,811,256,0,7,-8.700000000000001,139,169,0,183,0.307,43.93,75.07000000000001,0.92,0.24,880,0.4,260,4.5,2.1999,1.6906 +2012,12,27,16,30,5.4,1.1400000000000001,0.027,0.62,58,921,416,0,7,-7.7,201,257,0,301,0.306,38.42,67.11,0.92,0.24,880,0.4,263,4.4,9.0269,7.0131 +2012,12,27,17,30,7.9,1.1500000000000001,0.026000000000000002,0.62,63,974,529,0,7,-6.800000000000001,260,221,0,366,0.305,34.59,61.4,0.91,0.24,879,0.4,270,4.4,14.2120,11.0908 +2012,12,27,18,30,9.1,1.1500000000000001,0.025,0.62,64,995,582,0,7,-8.1,291,113,0,350,0.305,28.82,58.64,0.91,0.24,878,0.4,276,4.2,21.9964,17.1920 +2012,12,27,19,30,9.4,1.16,0.024,0.62,63,992,570,0,7,-9.600000000000001,245,29,0,260,0.305,25.1,59.26,0.91,0.24,878,0.4,279,3.8000000000000003,21.6411,16.9087 +2012,12,27,20,30,8.9,1.16,0.024,0.62,60,963,495,0,7,-10.4,240,61,0,268,0.306,24.42,63.15,0.91,0.24,878,0.4,278,2.8000000000000003,16.6364,12.9670 +2012,12,27,21,30,6.9,1.16,0.024,0.62,53,897,363,0,7,-9,188,56,0,207,0.309,31.27,69.75,0.91,0.24,878,0.4,270,1.4000000000000001,12.7131,9.8468 +2012,12,27,22,30,3.8000000000000003,1.1500000000000001,0.024,0.62,40,749,191,0,7,-6.7,67,4,0,68,0.312,46.24,78.36,0.9,0.24,879,0.4,249,0.8,4.8719,3.7206 +2012,12,27,23,30,1,1.1500000000000001,0.025,0.62,14,303,23,0,1,-9.4,14,303,0,23,0.317,45.71,88.19,0.9,0.24,879,0.5,171,0.9,0.0000,0.0000 +2012,12,28,0,30,-1.4000000000000001,1.16,0.028,0.62,0,0,0,0,0,-9.3,0,0,0,0,0.323,55.02,99.48,0.91,0.36,880,0.5,99,1.5,0.0000,0.0000 +2012,12,28,1,30,-3.2,1.17,0.034,0.62,0,0,0,0,4,-8.4,0,0,0,0,0.33,67.09,111.12,0.92,0.36,881,0.5,85,2.2,0.0000,0.0000 +2012,12,28,2,30,-4.4,1.17,0.042,0.62,0,0,0,0,4,-7.800000000000001,0,0,0,0,0.334,77.44,123.16,0.93,0.36,882,0.6000000000000001,75,2.8000000000000003,0.0000,0.0000 +2012,12,28,3,30,-5,1.1500000000000001,0.052000000000000005,0.62,0,0,0,0,4,-7.5,0,0,0,0,0.338,82.93,135.39000000000001,0.9400000000000001,0.36,882,0.6000000000000001,68,3,0.0000,0.0000 +2012,12,28,4,30,-5.1000000000000005,1.12,0.064,0.62,0,0,0,0,7,-7.6000000000000005,0,0,0,0,0.34,82.9,147.54,0.9500000000000001,0.36,883,0.7000000000000001,63,3,0.0000,0.0000 +2012,12,28,5,30,-5.1000000000000005,1.11,0.07200000000000001,0.62,0,0,0,0,7,-7.9,0,0,0,0,0.342,80.96000000000001,159.03,0.9500000000000001,0.36,883,0.7000000000000001,56,3,0.0000,0.0000 +2012,12,28,6,30,-5.1000000000000005,1.11,0.078,0.62,0,0,0,0,7,-8.200000000000001,0,0,0,0,0.342,78.55,167.32,0.96,0.36,883,0.7000000000000001,46,3.1,0.0000,0.0000 +2012,12,28,7,30,-5.1000000000000005,1.1,0.085,0.62,0,0,0,0,7,-8.6,0,0,0,0,0.34,76.21000000000001,165.14000000000001,0.96,0.36,884,0.7000000000000001,32,3.2,0.0000,0.0000 +2012,12,28,8,30,-5.2,1.09,0.09,0.62,0,0,0,0,7,-9.1,0,0,0,0,0.339,74.23,155.12,0.96,0.36,884,0.7000000000000001,20,3.6,0.0000,0.0000 +2012,12,28,9,30,-5.4,1.1,0.093,0.62,0,0,0,0,7,-9.5,0,0,0,0,0.339,72.66,143.28,0.96,0.36,884,0.7000000000000001,13,4,0.0000,0.0000 +2012,12,28,10,30,-5.7,1.1300000000000001,0.08700000000000001,0.62,0,0,0,0,7,-10.100000000000001,0,0,0,0,0.339,71.39,131.06,0.96,0.36,885,0.6000000000000001,10,4.3,0.0000,0.0000 +2012,12,28,11,30,-6.1000000000000005,1.2,0.07100000000000001,0.62,0,0,0,0,4,-10.600000000000001,0,0,0,0,0.34,70.54,118.87,0.9500000000000001,0.36,885,0.6000000000000001,7,4.4,0.0000,0.0000 +2012,12,28,12,30,-6.6000000000000005,1.27,0.059000000000000004,0.62,0,0,0,0,1,-11,0,0,0,0,0.341,70.99,106.94,0.9400000000000001,0.36,886,0.5,3,4.2,0.0000,0.0000 +2012,12,28,13,30,-6.6000000000000005,1.3,0.056,0.62,0,0,0,0,4,-11.200000000000001,0,0,0,0,0.342,69.87,95.49,0.9500000000000001,0.36,887,0.5,180,4.1000000000000005,0.0000,0.0000 +2012,12,28,14,30,-5.7,1.32,0.058,0.62,31,435,72,0,0,-11.200000000000001,31,435,0,72,0.343,65.32000000000001,84.63,0.9500000000000001,0.36,888,0.5,181,4.2,0.0000,0.0000 +2012,12,28,15,30,-4.1000000000000005,1.33,0.061,0.62,59,733,247,7,4,-10.9,132,5,7,133,0.34400000000000003,59.230000000000004,75.10000000000001,0.9500000000000001,0.36,888,0.5,2,4.3,8.9433,6.8720 +2012,12,28,16,30,-2.3000000000000003,1.34,0.063,0.62,75,853,406,0,0,-10.5,75,853,0,406,0.34400000000000003,53.230000000000004,67.12,0.96,0.36,889,0.5,180,4.1000000000000005,15.7945,12.2706 +2012,12,28,17,30,-0.7000000000000001,1.34,0.063,0.62,83,911,520,0,0,-10,83,911,0,520,0.343,49.27,61.38,0.96,0.36,888,0.5,354,3.9000000000000004,20.0074,15.6136 +2012,12,28,18,30,0.6000000000000001,1.35,0.063,0.62,87,934,574,0,0,-9.4,87,934,0,574,0.34,47.21,58.6,0.96,0.36,888,0.5,345,3.7,19.4455,15.1986 +2012,12,28,19,30,1.3,1.37,0.062,0.62,86,931,563,0,0,-9,86,931,0,563,0.334,46.25,59.19,0.96,0.36,887,0.5,338,3.5,14.3954,11.2478 +2012,12,28,20,30,1.6,1.3900000000000001,0.06,0.62,80,902,488,0,0,-8.9,80,902,0,488,0.325,45.65,63.050000000000004,0.9500000000000001,0.36,888,0.5,331,3.4000000000000004,14.4837,11.2897 +2012,12,28,21,30,1.3,1.4000000000000001,0.057,0.62,68,833,358,0,0,-8.9,68,833,0,358,0.317,46.47,69.64,0.9500000000000001,0.36,888,0.5,326,2.7,10.6208,8.2272 +2012,12,28,22,30,-0.30000000000000004,1.42,0.053,0.62,49,680,188,0,0,-8.700000000000001,49,680,0,188,0.313,53.11,78.24,0.9500000000000001,0.36,888,0.5,325,1.6,3.2491,2.4817 +2012,12,28,23,30,-1.4000000000000001,1.44,0.048,0.62,16,254,24,0,0,-9.3,16,254,0,24,0.311,54.93,88.07000000000001,0.9500000000000001,0.36,889,0.5,328,0.8,0.0000,0.0000 +2012,12,29,0,30,-1.4000000000000001,1.45,0.044,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.31,52.65,99.36,0.9400000000000001,0.35000000000000003,889,0.5,250,0.4,0.0000,0.0000 +2012,12,29,1,30,-1.6,1.45,0.041,0.62,0,0,0,0,0,-9.8,0,0,0,0,0.309,53.620000000000005,111,0.9400000000000001,0.35000000000000003,890,0.5,173,0.30000000000000004,0.0000,0.0000 +2012,12,29,2,30,-2,1.44,0.041,0.62,0,0,0,0,1,-9.700000000000001,0,0,0,0,0.307,55.56,123.04,0.9400000000000001,0.35000000000000003,890,0.5,190,0.6000000000000001,0.0000,0.0000 +2012,12,29,3,30,-2.4000000000000004,1.43,0.041,0.62,0,0,0,0,1,-9.600000000000001,0,0,0,0,0.305,57.730000000000004,135.26,0.9400000000000001,0.35000000000000003,891,0.5,219,0.8,0.0000,0.0000 +2012,12,29,4,30,-3.1,1.43,0.041,0.62,0,0,0,0,1,-9.5,0,0,0,0,0.302,61.370000000000005,147.42000000000002,0.9400000000000001,0.35000000000000003,892,0.5,237,0.9,0.0000,0.0000 +2012,12,29,5,30,-3.8000000000000003,1.44,0.039,0.62,0,0,0,0,1,-9.4,0,0,0,0,0.299,65.27,158.9,0.9400000000000001,0.35000000000000003,892,0.4,244,1,0.0000,0.0000 +2012,12,29,6,30,-4.2,1.44,0.036000000000000004,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.294,67.94,167.23,0.93,0.35000000000000003,893,0.4,249,1.1,0.0000,0.0000 +2012,12,29,7,30,-4.4,1.44,0.033,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.291,69.45,165.16,0.93,0.35000000000000003,893,0.4,251,1.3,0.0000,0.0000 +2012,12,29,8,30,-4.5,1.43,0.031,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.28800000000000003,70.29,155.18,0.92,0.35000000000000003,893,0.4,254,1.4000000000000001,0.0000,0.0000 +2012,12,29,9,30,-4.6000000000000005,1.42,0.028,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.28700000000000003,71,143.35,0.92,0.35000000000000003,893,0.30000000000000004,258,1.4000000000000001,0.0000,0.0000 +2012,12,29,10,30,-4.7,1.4000000000000001,0.027,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.28700000000000003,71.57000000000001,131.13,0.91,0.35000000000000003,893,0.30000000000000004,261,1.4000000000000001,0.0000,0.0000 +2012,12,29,11,30,-4.800000000000001,1.3900000000000001,0.026000000000000002,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.28700000000000003,72.11,118.94,0.91,0.35000000000000003,894,0.30000000000000004,265,1.3,0.0000,0.0000 +2012,12,29,12,30,-5,1.3800000000000001,0.025,0.62,0,0,0,0,0,-9.1,0,0,0,0,0.28700000000000003,73.04,107.01,0.91,0.35000000000000003,895,0.30000000000000004,268,1.3,0.0000,0.0000 +2012,12,29,13,30,-4.800000000000001,1.37,0.025,0.62,0,0,0,0,0,-9.200000000000001,0,0,0,0,0.28700000000000003,71.57000000000001,95.55,0.9,0.35000000000000003,896,0.30000000000000004,273,1.4000000000000001,0.0000,0.0000 +2012,12,29,14,30,-3.1,1.37,0.024,0.62,26,552,78,0,0,-9.200000000000001,26,552,0,78,0.28500000000000003,62.84,84.67,0.9,0.35000000000000003,896,0.30000000000000004,272,1.9000000000000001,0.0000,0.0000 +2012,12,29,15,30,-0.2,1.36,0.024,0.62,47,830,260,0,1,-8.8,47,830,0,260,0.28300000000000003,52.22,75.13,0.9,0.35000000000000003,897,0.30000000000000004,250,2.2,6.4981,4.9929 +2012,12,29,16,30,2.8000000000000003,1.36,0.023,0.62,57,940,423,0,1,-9.200000000000001,57,940,0,423,0.28,41.050000000000004,67.12,0.9,0.35000000000000003,897,0.30000000000000004,216,2.4000000000000004,21.3025,16.5496 +2012,12,29,17,30,4.7,1.35,0.022,0.62,63,991,538,0,0,-10.200000000000001,63,991,0,538,0.279,32.96,61.36,0.9,0.35000000000000003,897,0.30000000000000004,201,2.9000000000000004,28.4294,22.1862 +2012,12,29,18,30,5.7,1.35,0.021,0.62,64,1012,592,0,0,-10.4,64,1012,0,592,0.278,30.36,58.550000000000004,0.9,0.35000000000000003,896,0.30000000000000004,203,3.2,31.8977,24.9318 +2012,12,29,19,30,6.2,1.34,0.02,0.62,63,1010,582,0,0,-10.4,63,1010,0,582,0.279,29.23,59.11,0.9,0.35000000000000003,895,0.30000000000000004,203,3.4000000000000004,31.1838,24.3664 +2012,12,29,20,30,6.2,1.34,0.02,0.62,60,983,506,0,0,-10.5,60,983,0,506,0.28,29.21,62.95,0.9,0.35000000000000003,894,0.30000000000000004,199,3.3000000000000003,26.3912,20.5729 +2012,12,29,21,30,4.800000000000001,1.34,0.019,0.62,52,921,374,0,0,-10.3,52,921,0,374,0.28300000000000003,32.63,69.53,0.9,0.35000000000000003,894,0.30000000000000004,191,2.5,18.3862,14.2445 +2012,12,29,22,30,1.3,1.34,0.018000000000000002,0.62,39,784,200,0,0,-8.200000000000001,39,784,0,200,0.28600000000000003,49.27,78.12,0.9,0.35000000000000003,893,0.30000000000000004,180,1.8,8.9873,6.8660 +2012,12,29,23,30,-1.5,1.34,0.018000000000000002,0.62,15,378,28,0,0,-9.5,15,378,0,28,0.28600000000000003,54.49,87.95,0.9,0.35000000000000003,893,0.30000000000000004,179,2,0.0000,0.0000 +2012,12,30,0,30,-2,1.34,0.019,0.62,0,0,0,0,0,-10,0,0,0,0,0.28300000000000003,54.15,99.23,0.9,0.34,894,0.30000000000000004,185,2.5,0.0000,0.0000 +2012,12,30,1,30,-1.9000000000000001,1.33,0.019,0.62,0,0,0,0,0,-10,0,0,0,0,0.281,53.74,110.87,0.9,0.34,894,0.30000000000000004,190,3.1,0.0000,0.0000 +2012,12,30,2,30,-2,1.31,0.02,0.62,0,0,0,0,0,-10.3,0,0,0,0,0.28,53.25,122.91,0.9,0.34,894,0.30000000000000004,195,3.7,0.0000,0.0000 +2012,12,30,3,30,-2.4000000000000004,1.28,0.023,0.62,0,0,0,0,0,-10.700000000000001,0,0,0,0,0.279,53.050000000000004,135.13,0.91,0.34,894,0.30000000000000004,197,4.1000000000000005,0.0000,0.0000 +2012,12,30,4,30,-2.9000000000000004,1.27,0.025,0.62,0,0,0,0,0,-11.100000000000001,0,0,0,0,0.278,53.27,147.29,0.91,0.34,894,0.30000000000000004,198,4,0.0000,0.0000 +2012,12,30,5,30,-3.3000000000000003,1.27,0.026000000000000002,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.278,53.71,158.78,0.91,0.34,893,0.30000000000000004,200,3.9000000000000004,0.0000,0.0000 +2012,12,30,6,30,-3.5,1.28,0.027,0.62,0,0,0,0,0,-11.4,0,0,0,0,0.278,54.22,167.14000000000001,0.91,0.34,893,0.4,203,4,0.0000,0.0000 +2012,12,30,7,30,-3.5,1.29,0.029,0.62,0,0,0,0,4,-11.3,0,0,0,0,0.278,54.72,165.16,0.92,0.34,893,0.4,205,4.1000000000000005,0.0000,0.0000 +2012,12,30,8,30,-3.3000000000000003,1.27,0.033,0.62,0,0,0,0,7,-11.100000000000001,0,0,0,0,0.279,54.99,155.23,0.93,0.34,893,0.5,205,4.1000000000000005,0.0000,0.0000 +2012,12,30,9,30,-3,1.25,0.036000000000000004,0.62,0,0,0,0,7,-10.700000000000001,0,0,0,0,0.28,55.19,143.41,0.93,0.34,892,0.5,205,4.1000000000000005,0.0000,0.0000 +2012,12,30,10,30,-2.6,1.24,0.037,0.62,0,0,0,0,4,-10.4,0,0,0,0,0.281,54.870000000000005,131.2,0.9400000000000001,0.34,892,0.6000000000000001,206,4,0.0000,0.0000 +2012,12,30,11,30,-2.4000000000000004,1.23,0.039,0.62,0,0,0,0,7,-10.200000000000001,0,0,0,0,0.28400000000000003,55.02,119,0.9400000000000001,0.34,892,0.7000000000000001,206,3.9000000000000004,0.0000,0.0000 +2012,12,30,12,30,-2.2,1.23,0.042,0.62,0,0,0,0,7,-10,0,0,0,0,0.28800000000000003,55.02,107.07000000000001,0.9400000000000001,0.34,892,0.7000000000000001,206,3.9000000000000004,0.0000,0.0000 +2012,12,30,13,30,-1.9000000000000001,1.21,0.046,0.62,0,0,0,0,7,-9.8,0,0,0,0,0.293,54.61,95.60000000000001,0.9400000000000001,0.34,892,0.8,205,4,0.0000,0.0000 +2012,12,30,14,30,-1,1.21,0.05,0.62,29,427,69,7,7,-9.600000000000001,40,4,7,40,0.298,52.120000000000005,84.71000000000001,0.9400000000000001,0.34,892,0.8,202,4.3,0.0000,0.0000 +2012,12,30,15,30,0.7000000000000001,1.21,0.057,0.62,57,712,240,0,4,-9.3,157,68,0,175,0.302,47.27,75.15,0.9500000000000001,0.34,891,0.9,199,5.1000000000000005,12.6997,9.7574 +2012,12,30,16,30,2.1,1.21,0.064,0.62,74,822,394,0,7,-9.3,222,108,0,264,0.302,42.65,67.12,0.9500000000000001,0.34,891,1,198,6,22.1945,17.2425 +2012,12,30,17,30,2.9000000000000004,1.2,0.068,0.62,85,872,503,0,6,-9.4,194,15,0,201,0.301,39.95,61.33,0.9500000000000001,0.34,890,1.1,198,6.2,29.4172,22.9574 +2012,12,30,18,30,3.5,1.2,0.07,0.62,89,893,556,0,6,-9.3,267,40,0,288,0.3,38.47,58.49,0.9500000000000001,0.34,889,1.1,199,6,32.9070,25.7213 +2012,12,30,19,30,3.7,1.2,0.07200000000000001,0.62,89,886,546,0,6,-9,269,63,0,301,0.298,38.88,59.02,0.9500000000000001,0.34,888,1.1,200,5.300000000000001,32.2508,25.2011 +2012,12,30,20,30,3.6,1.2,0.07200000000000001,0.62,84,853,474,0,6,-8.5,252,91,0,294,0.292,40.800000000000004,62.85,0.9500000000000001,0.34,887,1.1,197,4.2,27.3832,21.3476 +2012,12,30,21,30,2.9000000000000004,1.2,0.069,0.62,72,781,347,0,6,-7.800000000000001,194,60,0,215,0.28600000000000003,45.15,69.41,0.9500000000000001,0.34,887,1.1,189,3.1,19.2267,14.8976 +2012,12,30,22,30,1.4000000000000001,1.2,0.064,0.62,52,626,183,0,6,-7.2,99,14,0,101,0.28200000000000003,52.82,77.99,0.9500000000000001,0.34,887,1.1,182,2.3000000000000003,9.5660,7.3096 +2012,12,30,23,30,0.30000000000000004,1.19,0.061,0.62,17,203,25,7,6,-7.2,10,0,7,10,0.28200000000000003,56.93,87.84,0.9400000000000001,0.34,887,1.1,179,2.2,0.0000,0.0000 +2012,12,31,0,30,0.2,1.18,0.06,0.62,0,0,0,0,6,-7.4,0,0,0,0,0.28300000000000003,56.76,99.10000000000001,0.9400000000000001,0.65,887,1.1,181,2.7,0.0000,0.0000 +2012,12,31,1,30,0.1,1.16,0.062,0.62,0,0,0,0,6,-7.4,0,0,0,0,0.28400000000000003,57.27,110.74000000000001,0.9500000000000001,0.65,887,1.2000000000000002,187,3.2,0.0000,0.0000 +2012,12,31,2,30,-0.1,1.1400000000000001,0.066,0.62,0,0,0,0,6,-7.1000000000000005,0,0,0,0,0.28500000000000003,59.17,122.78,0.9500000000000001,0.65,887,1.2000000000000002,190,3.3000000000000003,0.0000,0.0000 +2012,12,31,3,30,-0.4,1.1300000000000001,0.065,0.62,0,0,0,0,6,-6.9,0,0,0,0,0.28600000000000003,61.480000000000004,135,0.9500000000000001,0.65,887,1.3,188,3.1,0.0000,0.0000 +2012,12,31,4,30,-0.6000000000000001,1.12,0.07200000000000001,0.62,0,0,0,0,6,-6.5,0,0,0,0,0.28700000000000003,64.16,147.16,0.9500000000000001,0.65,887,1.4000000000000001,192,3,0.0000,0.0000 +2012,12,31,5,30,-0.8,1.09,0.08700000000000001,0.62,0,0,0,0,6,-5.800000000000001,0,0,0,0,0.28700000000000003,68.82000000000001,158.65,0.96,0.65,887,1.5,195,3.2,0.0000,0.0000 +2012,12,31,6,30,-1.1,1.07,0.1,0.62,0,0,0,0,6,-4.5,0,0,0,0,0.28700000000000003,77.76,167.03,0.96,0.65,886,1.5,191,3.1,0.0000,0.0000 +2012,12,31,7,30,-1.5,1.08,0.10300000000000001,0.62,0,0,0,0,6,-3.6,0,0,0,0,0.28800000000000003,85.4,165.16,0.96,0.65,885,1.5,183,2.7,0.0000,0.0000 +2012,12,31,8,30,-1.9000000000000001,1.09,0.099,0.62,0,0,0,0,6,-3.4000000000000004,0,0,0,0,0.28800000000000003,89.18,155.28,0.97,0.65,884,1.4000000000000001,182,2.5,0.0000,0.0000 +2012,12,31,9,30,-2,1.04,0.115,0.62,0,0,0,0,6,-3.3000000000000003,0,0,0,0,0.28800000000000003,90.76,143.48,0.97,0.65,884,1.3,191,2.5,0.0000,0.0000 +2012,12,31,10,30,-1.6,1,0.14100000000000001,0.62,0,0,0,0,7,-2.9000000000000004,0,0,0,0,0.28700000000000003,90.84,131.26,0.98,0.65,883,1.3,202,3,0.0000,0.0000 +2012,12,31,11,30,-0.8,0.98,0.14200000000000002,0.62,0,0,0,0,7,-2.1,0,0,0,0,0.28500000000000003,90.71000000000001,119.06,0.98,0.65,883,1.2000000000000002,210,3.2,0.0000,0.0000 +2012,12,31,12,30,-0.30000000000000004,0.99,0.147,0.62,0,0,0,0,4,-1.4000000000000001,0,0,0,0,0.28400000000000003,92.33,107.12,0.98,0.65,883,1.1,218,2.7,0.0000,0.0000 +2012,12,31,13,30,-0.2,0.98,0.14400000000000002,0.62,0,0,0,0,4,-1,0,0,0,0,0.28300000000000003,94.06,95.64,0.98,0.65,883,1.1,229,2.2,0.0000,0.0000 +2012,12,31,14,30,0.2,0.97,0.132,0.62,39,249,62,0,1,-1,39,249,0,62,0.28300000000000003,91.86,84.74,0.98,0.65,884,1,241,2.2,0.0000,0.0000 +2012,12,31,15,30,1,0.98,0.128,0.62,82,583,232,0,4,-0.8,12,0,0,12,0.28200000000000003,87.87,75.16,0.98,0.65,884,1,254,2.6,8.5464,6.5661 +2012,12,31,16,30,1.8,0.99,0.121,0.62,105,743,394,0,4,-0.7000000000000001,23,0,0,23,0.281,83.75,67.11,0.97,0.65,884,0.9,266,3.2,13.8519,10.7613 +2012,12,31,17,30,2.5,1,0.109,0.62,114,831,513,0,4,-0.8,227,1,0,228,0.28,79.05,61.300000000000004,0.97,0.65,884,0.8,277,3.7,10.9925,8.5788 +2012,12,31,18,30,3.1,1.03,0.088,0.62,109,889,575,0,4,-1.1,224,0,0,225,0.279,73.81,58.42,0.97,0.65,884,0.7000000000000001,285,3.9000000000000004,16.0141,12.5175 +2012,12,31,19,30,3.4000000000000004,1.07,0.079,0.62,104,897,567,0,4,-1.6,142,0,0,143,0.277,69.78,58.93,0.96,0.65,884,0.7000000000000001,292,4.1000000000000005,16.6879,13.0408 +2012,12,31,20,30,3.3000000000000003,1.09,0.07200000000000001,0.62,93,873,494,0,4,-2.1,210,1,0,211,0.275,67.57000000000001,62.730000000000004,0.96,0.65,884,0.7000000000000001,301,4,15.9211,12.4128 +2012,12,31,21,30,2.4000000000000004,1.1400000000000001,0.07,0.62,79,801,363,0,4,-2.7,189,4,0,191,0.273,69.11,69.28,0.96,0.65,885,0.7000000000000001,320,3.5,11.0645,8.5744 +2012,12,31,22,30,-0.2,1.19,0.065,0.62,57,655,194,0,4,-3.1,114,2,0,115,0.272,80.93,77.86,0.9500000000000001,0.65,886,0.6000000000000001,168,2.6,4.8337,3.6944 +2012,12,31,23,30,-3.2,1.24,0.06,0.62,19,236,28,0,1,-4.800000000000001,19,236,0,28,0.272,88.93,87.71000000000001,0.9500000000000001,0.65,886,0.6000000000000001,9,2.4000000000000004,0.0000,0.0000 diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index be51e3c29..afe024a55 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -732,6 +732,14 @@ def test_wind_solar_electrolyzer_example(subtests): model = H2IntegrateModel(Path.cwd() / "15_wind_solar_electrolyzer.yaml") model.run() + solar_fpath = model.model.get_val("site.solar_resource.solar_resource_data")["filepath"] + wind_fpath = model.model.get_val("site.wind_resource.wind_resource_data")["filepath"] + + with subtests.test("Wind resource file"): + assert Path(wind_fpath).name == "35.2018863_-101.945027_2012_wtk_v2_60min_utc_tz.csv" + + with subtests.test("Solar resource file"): + assert Path(solar_fpath).name == "30.6617_-101.7096_psmv3_60_2013.csv" model.post_process() wind_aep = sum(model.prob.get_val("wind.electricity_out", units="kW")) @@ -1189,3 +1197,60 @@ def test_csvgen_design_of_experiments(subtests): new_driver_fpath.unlink() new_toplevel_fpath.unlink() new_csv_filename.unlink() + + +def test_sweeping_solar_sites_doe(subtests): + os.chdir(EXAMPLE_DIR / "22_site_doe") + import pandas as pd + + # Create the model + model = H2IntegrateModel("22_solar_site_doe.yaml") + + # Run the model + model.run() + + # Specify the filepath to the sql file, the folder and filename are in the driver_config + sql_fpath = EXAMPLE_DIR / "22_site_doe" / "ex_22_out" / "cases.sql" + + # load the cases + cr = om.CaseReader(sql_fpath) + + cases = list(cr.get_cases()) + + res_df = pd.DataFrame() + for ci, case in enumerate(cases): + solar_resource_data = case.get_val("site.solar_resource.solar_resource_data") + lat_lon = f"{case.get_val('site.latitude')[0]} {case.get_val('site.longitude')[0]}" + solar_capacity = case.get_design_vars()["solar.capacity_kWdc"] + aep = case.get_val("solar.annual_energy", units="MW*h/yr") + lcoe = case.get_val("finance_subgroup_electricity.LCOE_optimistic", units="USD/(MW*h)") + + site_res = pd.DataFrame( + [aep, lcoe, solar_capacity], index=["AEP", "LCOE", "solar_capacity"], columns=[lat_lon] + ).T + res_df = pd.concat([site_res, res_df], axis=0) + + with subtests.test(f"Case {ci}: Solar resource latitude matches site latitude"): + assert ( + pytest.approx(case.get_val("site.latitude"), abs=0.1) + == solar_resource_data["site_lat"] + ) + with subtests.test(f"Case {ci}: Solar resource longitude matches site longitude"): + assert ( + pytest.approx(case.get_val("site.longitude"), abs=0.1) + == solar_resource_data["site_lon"] + ) + + locations = list(set(res_df.index.to_list())) + solar_sizes = list(set(res_df["solar_capacity"].to_list())) + + with subtests.test("Two solar sizes per site"): + assert len(solar_sizes) == 2 + with subtests.test("Two unique sites"): + assert len(locations) == 2 + + with subtests.test("Unique AEPs per case"): + assert len(list(set(res_df["AEP"].to_list()))) == len(res_df) + + with subtests.test("Unique LCOEs per case"): + assert len(list(set(res_df["LCOE"].to_list()))) == len(res_df) From a47500e31a18c1c56bcac1383cdbf41abdd66cbc Mon Sep 17 00:00:00 2001 From: John Jasa Date: Wed, 26 Nov 2025 13:56:45 -0600 Subject: [PATCH 62/79] prettified postprocessing outputs a little bit (#378) --- CHANGELOG.md | 1 + h2integrate/core/utilities.py | 21 ++++++++++++++++++--- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9c22c45b..efc54de56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ - Added ability for latitude and longitude to be design variables in design sweep - Move geologic hydrogen models into specific geoh2 subsurface converters - Added standalone iron mine performance and cost model +- Improved readability of the postprocessing printout by simplifying numerical representation, especially for years ## 0.4.0 [October 1, 2025] diff --git a/h2integrate/core/utilities.py b/h2integrate/core/utilities.py index bff78344b..7d61eb986 100644 --- a/h2integrate/core/utilities.py +++ b/h2integrate/core/utilities.py @@ -811,10 +811,25 @@ def _emit_section(title, meta_list, kind_label="outputs"): mean_raw = _mean(meta.get("val")) try: val = float(mean_raw) - if abs(val) >= 1e5: - mean_val = f"{val:,.2f}" + units_val_raw = meta.get("units") + # Format as integer if units are 'year' or variable name is 'cost_year' + if units_val_raw == "year" or var == "cost_year": + mean_val = str(int(val)) + elif abs(val) >= 1e5: + formatted = f"{val:,.2f}" + mean_val = formatted.rstrip("0") + if mean_val.endswith("."): + mean_val = mean_val # Keep e.g. "520." format + else: + mean_val = mean_val + "." if "." not in mean_val else mean_val else: - mean_val = f"{val:,.4f}" + formatted = f"{val:,.4f}" + mean_val = formatted.rstrip("0") + # Ensure we end with "." if all decimals were zeros + if mean_val.endswith("."): + pass # Keep as e.g. "520." or "0." + elif "." not in mean_val: + mean_val = mean_val + "." except (ValueError, TypeError): mean_val = str(mean_raw) units_val = ( From 61009926cf661a892ab739152d1981cf426067b2 Mon Sep 17 00:00:00 2001 From: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Date: Wed, 26 Nov 2025 13:28:07 -0700 Subject: [PATCH 63/79] NSRDB Solar Resource Models for Himawari and Meteosat Prime Meridian (#377) * added meteosat prime meridian models * added himawari solar api models * added himawari tmy dataset * added tests and new resource files for added new solar resource models * added pvwatts integration tests with resource * added new solar resource models to supported_models.py * added doc pages for new models * updated changelog * finished updating doc pages * renamed file and class for solar api baseclass and updated imports * Corrected 'himwari' -> 'himawari' throughout --------- Co-authored-by: John Jasa --- CHANGELOG.md | 1 + docs/_toc.yml | 2 + docs/resource/himawari_v3_api.md | 58 + .../meteosat_prime_meridian_v4_api.md | 56 + docs/resource/solar_index.md | 9 +- docs/technology_models/technology_overview.md | 31 +- h2integrate/core/supported_models.py | 14 + ...api_base.py => nrel_developer_api_base.py} | 2 +- .../solar/nrel_developer_goes_api_models.py | 12 +- .../nrel_developer_himawari_api_models.py | 161 + ...eveloper_meteosat_prime_meridian_models.py | 124 + .../solar/test/test_nrel_himawari_api.py | 144 + .../test_nrel_meteosat_prime_meridian_api.py | 106 + .../solar/test/test_pvwatts_integration.py | 348 + ...2.67935_2013_himawari7_v3_60min_utc_tz.csv | 8763 +++++++++++++++++ ..._tmy-2020_himawari_tmy_v3_60min_utc_tz.csv | 8763 +++++++++++++++++ ....656312_2020_himawari8_v3_60min_utc_tz.csv | 8763 +++++++++++++++++ ...12.4368_2008_nsrdb_msg_v4_60min_utc_tz.csv | 8763 +++++++++++++++++ 18 files changed, 36106 insertions(+), 14 deletions(-) create mode 100644 docs/resource/himawari_v3_api.md create mode 100644 docs/resource/meteosat_prime_meridian_v4_api.md rename h2integrate/resource/solar/{nrel_developer_goes_api_base.py => nrel_developer_api_base.py} (99%) create mode 100644 h2integrate/resource/solar/nrel_developer_himawari_api_models.py create mode 100644 h2integrate/resource/solar/nrel_developer_meteosat_prime_meridian_models.py create mode 100644 h2integrate/resource/solar/test/test_nrel_himawari_api.py create mode 100644 h2integrate/resource/solar/test/test_nrel_meteosat_prime_meridian_api.py create mode 100644 h2integrate/resource/solar/test/test_pvwatts_integration.py create mode 100644 resource_files/solar/-27.3649_152.67935_2013_himawari7_v3_60min_utc_tz.csv create mode 100644 resource_files/solar/-27.3649_152.67935_tmy-2020_himawari_tmy_v3_60min_utc_tz.csv create mode 100644 resource_files/solar/3.25735_101.656312_2020_himawari8_v3_60min_utc_tz.csv create mode 100644 resource_files/solar/41.9077_12.4368_2008_nsrdb_msg_v4_60min_utc_tz.csv diff --git a/CHANGELOG.md b/CHANGELOG.md index efc54de56..e7a64c168 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ - Added ability for latitude and longitude to be design variables in design sweep - Move geologic hydrogen models into specific geoh2 subsurface converters - Added standalone iron mine performance and cost model +- Added solar resource models for Meteosat Prime Meridian and Himawari datasets available through NSRDB - Improved readability of the postprocessing printout by simplifying numerical representation, especially for years ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index 7269c9e66..2543be3bd 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -48,6 +48,8 @@ parts: - file: resource/openmeteo_wind_archive - file: resource/solar_index - file: resource/goes_solar_v4_api + - file: resource/himawari_v3_api + - file: resource/meteosat_prime_meridian_v4_api - caption: Control chapters: diff --git a/docs/resource/himawari_v3_api.md b/docs/resource/himawari_v3_api.md new file mode 100644 index 000000000..31b43bc2b --- /dev/null +++ b/docs/resource/himawari_v3_api.md @@ -0,0 +1,58 @@ +(solar_resource:himawari_v3_api)= +# Solar Resource: Himawari PSM v3 + +There are three datasets that use the [NSRDB Himawari PSM v3 API](https://developer.nrel.gov/docs/solar/nsrdb/himawari7-download/) calls: +- "himawari7_solar_v3_api" +- "himawari8_solar_v3_api" +- "himawari_tmy_solar_v3_api" + - supports solar resource data for typical meteorological year (TMY), typical global horizontal irradiance year (TGY), and typical direct normal irradiance year (TDY) + +These datasets allow for resource data to be downloaded for **locations** within Asia, Australia, and the Pacific. + +| Model | Temporal resolution | Spatial resolution | Years covered | Regions | Website | +| :--------- | :---------------: | :---------------: | :---------------: | :---------------: | :---------------: | +| `himawari7_solar_v3_api` | 30, 60 min | 4 km | 2011-2015 | Asia, Australia & Pacific | [Himawari 2011-15](https://developer.nrel.gov/docs/solar/nsrdb/himawari7-download/) | +| `himawari8_solar_v3_api` | 10, 30, 60 min | 2 km | 2016-2020 | Asia, Australia & Pacific | [Himawari 2016-2020](https://developer.nrel.gov/docs/solar/nsrdb/himawari-download/) | +| `himawari_tmy_solar_v3_api` | 60 min | 4 km | 2020, for tmy, tdy and tgy | Asia, Australia & Pacific | [Himawari TMY](https://developer.nrel.gov/docs/solar/nsrdb/himawari-tmy-download/) | + + +```{note} +For the himawari_tmy_solar_v3_api model, the resource_year should be specified as a string formatted as `tdy-2020` or `tgy-2020` or `tmy-2020`. +``` + + +## Available Data + +| Resource Data | Included | +| :---------------- | :---------------: | +| `wind_direction` | X | +| `wind_speed` | X | +| `temperature` | X | +| `pressure` | X | +| `relative_humidity` | X | +| `ghi` | X | +| `dhi` | X | +| `dni` | X | +| `clearsky_ghi` | X | +| `clearsky_dhi` | X | +| `clearsky_dni` | X | +| `dew_point` | X | +| `surface_albedo` | X | +| `solar_zenith_angle` | X | +| `snow_depth` | X | +| `precipitable_water` | X | + +| Additional Data | Included | +| :---------------- | :---------------: | +| `site_id` | X | +| `site_lat` | X | +| `site_lon` | X | +| `elevation` | X | +| `site_tz` | X | +| `data_tz` | X | +| `filepath` | X | +| `year` | X | +| `month` | X | +| `day` | X | +| `hour` | X | +| `minute` | X | diff --git a/docs/resource/meteosat_prime_meridian_v4_api.md b/docs/resource/meteosat_prime_meridian_v4_api.md new file mode 100644 index 000000000..382f7c381 --- /dev/null +++ b/docs/resource/meteosat_prime_meridian_v4_api.md @@ -0,0 +1,56 @@ +(solar_resource:msg_v4_api)= +# Solar Resource: Meteosat Prime Meridian PSM v4 + +There are two datasets that use the [NSRDB Meteosat Prime Meridian PSM v4 API](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-msg-v1-0-0-download/) calls: +- "meteosat_solar_v4_api" +- "meteosat_tmy_solar_v4_api" + - supports solar resource data for typical meteorological year (TMY), typical global horizontal irradiance year (TGY), and typical direct normal irradiance year (TDY) + +These datasets allow for resource data to be downloaded for **locations** within Africa and Europe. + +| Model | Temporal resolution | Spatial resolution | Years covered | Regions | Website | +| :--------- | :---------------: | :---------------: | :---------------: | :---------------: | :---------------: | +| `meteosat_solar_v4_api` | 15, 30, 60 min | 4 km | 2005-2022 | Africa and Europe | [Meteosat Prime Meridian](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-msg-v1-0-0-download/) | +| `meteosat_tmy_solar_v4_api` | 60 min | 4 km | 2022 or 2014, for tmy, tdy and tgy | Africa and Europe | [Meteosat Prime Meridian TMY](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-msg-v1-0-0-tmy-download/), [Meteosat Prime Meridian TGY](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-msg-v1-0-0-tgy-download/), and [Meteosat Prime Meridian TDY](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-msg-v1-0-0-tdy-download/) | + + +```{note} +For the `meteosat_tmy_solar_v4_api` model, the `resource_year` should be specified as a string formatted as `tdy-yyyy` or `tgy-yyy` or `tmy-yyyy` where yyyy is the year is either 2014 or 2022. +``` + + +## Available Data + +| Resource Data | Included | +| :---------------- | :---------------: | +| `wind_direction` | X | +| `wind_speed` | X | +| `temperature` | X | +| `pressure` | X | +| `relative_humidity` | X | +| `ghi` | X | +| `dhi` | X | +| `dni` | X | +| `clearsky_ghi` | X | +| `clearsky_dhi` | X | +| `clearsky_dni` | X | +| `dew_point` | X | +| `surface_albedo` | X | +| `solar_zenith_angle` | X | +| `snow_depth` | X | +| `precipitable_water` | X | + +| Additional Data | Included | +| :---------------- | :---------------: | +| `site_id` | X | +| `site_lat` | X | +| `site_lon` | X | +| `elevation` | X | +| `site_tz` | X | +| `data_tz` | X | +| `filepath` | X | +| `year` | X | +| `month` | X | +| `day` | X | +| `hour` | X | +| `minute` | X | diff --git a/docs/resource/solar_index.md b/docs/resource/solar_index.md index b24a9c32d..5e5c74f23 100644 --- a/docs/resource/solar_index.md +++ b/docs/resource/solar_index.md @@ -6,8 +6,13 @@ - "goes_conus_solar_v4_api" - "goes_fulldisc_solar_v4_api" - "goes_tmy_solar_v4_api" - -Please see the [GOES PSM v4 API model documentation here for more information on these models.](https://developer.nrel.gov/docs/solar/nsrdb/nsrdb-GOES-full-disc-v4-0-0-download/) +- [Himawari PSM v4 API](solar_resource:himawari_v3_api): these models require an API key from the [NREL developer network](https://developer.nrel.gov/signup/), the available models are: + - "himawari7_solar_v3_api" + - "himawari8_solar_v3_api" + - "himawari_tmy_solar_v3_api" +- [Meteosat Prime Meridian PSM v4 API](solar_resource:msg_v4_api): these models require an API key from the [NREL developer network](https://developer.nrel.gov/signup/), the available models are: + - "meteosat_solar_v4_api" + - "meteosat_tmy_solar_v4_api" ```{note} diff --git a/docs/technology_models/technology_overview.md b/docs/technology_models/technology_overview.md index da4e5fb5e..610967676 100644 --- a/docs/technology_models/technology_overview.md +++ b/docs/technology_models/technology_overview.md @@ -15,10 +15,18 @@ Currently, H2I recognizes four types of models: | Resource name | Resource Type | | :---------------- | :---------------: | | `river_resource` | river resource | +| `wind_toolkit_v2_api` | wind resource | +| `openmeteo_wind_api` | wind resource | +| `goes_aggregated_solar_v4_api` | solar resource | +| `goes_conus_solar_v4_api` | solar resource | +| `goes_fulldisc_solar_v4_api` | solar resource | +| `goes_tmy_solar_v4_api` | solar resource | +| `meteosat_solar_v4_api` | solar resource | +| `meteosat_tmy_solar_v4_api` | solar resource | +| `himawari7_solar_v3_api` | solar resource | +| `himawari8_solar_v3_api` | solar resource | +| `himawari_tmy_solar_v3_api` | solar resource | -```{note} -The `Resource` models are under development. Many of the resources are currently integrated into the `Converter` model directly, notably this is true for the wind resource used in the `wind` converter and solar resource used in the `solar` converter. -``` (converters)= ## Converters @@ -96,8 +104,23 @@ Below summarizes the available performance, cost, and financial models for each (resource-models)= ## Resource models - `river`: - - performance models: + - resource models: + `river_resource` +- `wind_resource`: + - resource models: + + `wind_toolkit_v2_api` + + `openmeteo_wind_api` +- `solar_resource`: + - resource models: + + `goes_aggregated_solar_v4_api` + + `goes_conus_solar_v4_api` + + `goes_fulldisc_solar_v4_api` + + `goes_tmy_solar_v4_api` + + `meteosat_solar_v4_api` + + `meteosat_tmy_solar_v4_api` + + `himawari7_solar_v3_api` + + `himawari8_solar_v3_api` + + `himawari_tmy_solar_v3_api` (converter-models)= ## Converter models diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index b84ed2b85..264ce03f6 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -106,6 +106,11 @@ from h2integrate.converters.hydrogen.geologic.simple_natural_geoh2 import ( NaturalGeoH2PerformanceModel, ) +from h2integrate.resource.solar.nrel_developer_himawari_api_models import ( + Himawari7SolarAPI, + Himawari8SolarAPI, + HimawariTMYSolarAPI, +) from h2integrate.control.control_rules.converters.generic_converter import ( PyomoDispatchGenericConverter, ) @@ -123,6 +128,10 @@ from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( PyomoRuleStorageBaseclass, ) +from h2integrate.resource.solar.nrel_developer_meteosat_prime_meridian_models import ( + MeteosatPrimeMeridianSolarAPI, + MeteosatPrimeMeridianTMYSolarAPI, +) supported_models = { @@ -134,6 +143,11 @@ "goes_conus_solar_v4_api": GOESConusSolarAPI, "goes_fulldisc_solar_v4_api": GOESFullDiscSolarAPI, "goes_tmy_solar_v4_api": GOESTMYSolarAPI, + "meteosat_solar_v4_api": MeteosatPrimeMeridianSolarAPI, + "meteosat_tmy_solar_v4_api": MeteosatPrimeMeridianTMYSolarAPI, + "himawari7_solar_v3_api": Himawari7SolarAPI, + "himawari8_solar_v3_api": Himawari8SolarAPI, + "himawari_tmy_solar_v3_api": HimawariTMYSolarAPI, # Converters "atb_wind_cost": ATBWindPlantCostModel, "pysam_wind_plant_performance": PYSAMWindPlantPerformanceModel, diff --git a/h2integrate/resource/solar/nrel_developer_goes_api_base.py b/h2integrate/resource/solar/nrel_developer_api_base.py similarity index 99% rename from h2integrate/resource/solar/nrel_developer_goes_api_base.py rename to h2integrate/resource/solar/nrel_developer_api_base.py index 6dc1a0985..f5b9a1765 100644 --- a/h2integrate/resource/solar/nrel_developer_goes_api_base.py +++ b/h2integrate/resource/solar/nrel_developer_api_base.py @@ -9,7 +9,7 @@ ) -class GOESNRELDeveloperAPISolarResourceBase(SolarResourceBaseAPIModel): +class NRELDeveloperAPISolarResourceBase(SolarResourceBaseAPIModel): def setup(self): super().setup() diff --git a/h2integrate/resource/solar/nrel_developer_goes_api_models.py b/h2integrate/resource/solar/nrel_developer_goes_api_models.py index ecb56f561..80798359e 100644 --- a/h2integrate/resource/solar/nrel_developer_goes_api_models.py +++ b/h2integrate/resource/solar/nrel_developer_goes_api_models.py @@ -4,9 +4,7 @@ from h2integrate.core.validators import contains, range_val from h2integrate.resource.resource_base import ResourceBaseAPIConfig -from h2integrate.resource.solar.nrel_developer_goes_api_base import ( - GOESNRELDeveloperAPISolarResourceBase, -) +from h2integrate.resource.solar.nrel_developer_api_base import NRELDeveloperAPISolarResourceBase @define @@ -44,7 +42,7 @@ class GOESAggregatedAPIConfig(ResourceBaseAPIConfig): resource_dir: Path | str | None = field(default=None) -class GOESAggregatedSolarAPI(GOESNRELDeveloperAPISolarResourceBase): +class GOESAggregatedSolarAPI(NRELDeveloperAPISolarResourceBase): def setup(self): resource_specs = self.helper_setup_method() @@ -90,7 +88,7 @@ class GOESConusAPIConfig(ResourceBaseAPIConfig): resource_dir: Path | str | None = field(default=None) -class GOESConusSolarAPI(GOESNRELDeveloperAPISolarResourceBase): +class GOESConusSolarAPI(NRELDeveloperAPISolarResourceBase): def setup(self): resource_specs = self.helper_setup_method() @@ -137,7 +135,7 @@ class GOESFullDiscAPIConfig(ResourceBaseAPIConfig): resource_dir: Path | str | None = field(default=None) -class GOESFullDiscSolarAPI(GOESNRELDeveloperAPISolarResourceBase): +class GOESFullDiscSolarAPI(NRELDeveloperAPISolarResourceBase): def setup(self): resource_specs = self.helper_setup_method() @@ -206,7 +204,7 @@ def __attrs_post_init__(self): self.dataset_desc = "goes_tgy_v4" -class GOESTMYSolarAPI(GOESNRELDeveloperAPISolarResourceBase): +class GOESTMYSolarAPI(NRELDeveloperAPISolarResourceBase): def setup(self): resource_specs = self.helper_setup_method() diff --git a/h2integrate/resource/solar/nrel_developer_himawari_api_models.py b/h2integrate/resource/solar/nrel_developer_himawari_api_models.py new file mode 100644 index 000000000..2caf2127a --- /dev/null +++ b/h2integrate/resource/solar/nrel_developer_himawari_api_models.py @@ -0,0 +1,161 @@ +from pathlib import Path + +from attrs import field, define + +from h2integrate.core.validators import contains, range_val +from h2integrate.resource.resource_base import ResourceBaseAPIConfig +from h2integrate.resource.solar.nrel_developer_api_base import NRELDeveloperAPISolarResourceBase + + +@define +class Himawari7SolarAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download solar resource data from + `Himawari 2011-15: PSM v3 `_. + This dataset covers regions covered by the Himawari-7 satellite (Asia, Australia & Pacific) + at a spatial resolution of 4 km. + + Args: + resource_year (int): Year to use for resource data. + Must been between 2011 and 2015 (inclusive). + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "himawari7_v3". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "solar". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` are 30 and 60 minutes. + + """ + + resource_year: int = field(converter=int, validator=range_val(2011, 2015)) + dataset_desc: str = "himawari7_v3" + resource_type: str = "solar" + valid_intervals: list[int] = field(factory=lambda: [30, 60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + +class Himawari7SolarAPI(NRELDeveloperAPISolarResourceBase): + def setup(self): + resource_specs = self.helper_setup_method() + + self.base_url = "https://developer.nrel.gov/api/nsrdb/v2/solar/himawari7-download.csv?" + # create the resource config + self.config = Himawari7SolarAPIConfig.from_dict(resource_specs) + super().setup() + + +@define +class Himawari8SolarAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download solar resource data from + `Himawari 2016-2020: PSM v3 `_. + This dataset covers regions covered by the Himawari-8 satellite (Asia, Australia & Pacific) + at a spatial resolution of 2 km. + + Args: + resource_year (int): Year to use for resource data. + Must been between 2016 and 2020 (inclusive). + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "himawari8_v3". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "solar". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` are 10, 30, and 60 minutes. + + """ + + resource_year: int = field(converter=int, validator=range_val(2016, 2020)) + dataset_desc: str = "himawari8_v3" + resource_type: str = "solar" + valid_intervals: list[int] = field(factory=lambda: [10, 30, 60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + +class Himawari8SolarAPI(NRELDeveloperAPISolarResourceBase): + def setup(self): + resource_specs = self.helper_setup_method() + + self.base_url = "https://developer.nrel.gov/api/nsrdb/v2/solar/himawari-download.csv?" + # create the resource config + self.config = Himawari8SolarAPIConfig.from_dict(resource_specs) + super().setup() + + +@define +class HimawariTMYAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download solar resource data from + `Himawari TMY: PSM v3 `_. + This dataset covers regions within Asia, Australia & Pacific at a spatial resolution of 4 km. + + Args: + resource_year (str): Year to use for resource data. Can be any of the following: + tmy-2020, tdy-2020, or tgy-2020 + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "himawari_tmy_v3". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "solar". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` is minutes. + + """ + + resource_year: str = field( + converter=str.lower, + validator=contains( + [ + "tmy-2020", + "tdy-2020", + "tgy-2020", + ] + ), + ) + dataset_desc: str = "himawari_tmy_v4" + resource_type: str = "solar" + valid_intervals: list[int] = field(factory=lambda: [60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + def __attrs_post_init__(self): + if "tmy" in self.resource_year: + self.dataset_desc = "himawari_tmy_v3" + if "tdy" in self.resource_year: + self.dataset_desc = "himawari_tdy_v3" + if "tgy" in self.resource_year: + self.dataset_desc = "himawari_tgy_v3" + + +class HimawariTMYSolarAPI(NRELDeveloperAPISolarResourceBase): + def setup(self): + resource_specs = self.helper_setup_method() + + self.base_url = "https://developer.nrel.gov/api/nsrdb/v2/solar/himawari-tmy-download.csv?" + # create the resource config + self.config = HimawariTMYAPIConfig.from_dict(resource_specs) + super().setup() diff --git a/h2integrate/resource/solar/nrel_developer_meteosat_prime_meridian_models.py b/h2integrate/resource/solar/nrel_developer_meteosat_prime_meridian_models.py new file mode 100644 index 000000000..43d82eef3 --- /dev/null +++ b/h2integrate/resource/solar/nrel_developer_meteosat_prime_meridian_models.py @@ -0,0 +1,124 @@ +from pathlib import Path + +from attrs import field, define + +from h2integrate.core.validators import contains, range_val +from h2integrate.resource.resource_base import ResourceBaseAPIConfig +from h2integrate.resource.solar.nrel_developer_api_base import NRELDeveloperAPISolarResourceBase + + +@define +class MeteosatPrimeMeridianAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download solar resource data from + `Meteosat Prime Meridian PSM v4 `_. + This dataset covers regions covered by the Meteosat Prime Meridian satellite (Africa and Europe) + at a spatial resolution of 4 km. + + Args: + resource_year (int): Year to use for resource data. + Must been between 2005 and 2022 (inclusive). + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "nsrdb_msg_v4". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "solar". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` are 15, 30, and 60 minutes. + + """ + + resource_year: int = field(converter=int, validator=range_val(2005, 2022)) + dataset_desc: str = "nsrdb_msg_v4" + resource_type: str = "solar" + valid_intervals: list[int] = field(factory=lambda: [15, 30, 60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + +class MeteosatPrimeMeridianSolarAPI(NRELDeveloperAPISolarResourceBase): + def setup(self): + resource_specs = self.helper_setup_method() + + self.base_url = ( + "https://developer.nrel.gov/api/nsrdb/v2/solar/nsrdb-msg-v1-0-0-download.csv?" + ) + # create the resource config + self.config = MeteosatPrimeMeridianAPIConfig.from_dict(resource_specs) + super().setup() + + +@define +class MeteosatPrimeMeridianTMYAPIConfig(ResourceBaseAPIConfig): + """Configuration class to download solar resource data from + `Meteosat Prime Meridian TMY: PSM v4 `_, + `Meteosat Prime Meridian TDY: PSM v4 `_, + and `Meteosat Prime Meridian TGY: PSM v4 `_, + This dataset covers regions within North and South America at a spatial resolution of 4 km. + + Args: + resource_year (str): Year to use for resource data. Can be any of the following: + tmy-2014, tdy-2014, tgy-2014, tmy-2022, tdy-2022, or tgy-2022 + resource_data (dict | object, optional): Dictionary of user-input resource data. + Defaults to an empty dictionary. + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + + Attributes: + dataset_desc (str): description of the dataset, used in file naming. + For this dataset, the `dataset_desc` is "goes_aggregated_v2". + resource_type (str): type of resource data downloaded, used in folder naming. + For this dataset, the `resource_type` is "solar". + valid_intervals (list[int]): time interval(s) in minutes that resource data can be + downloaded in. For this dataset, `valid_intervals` is minutes. + + """ + + resource_year: str = field( + converter=str.lower, + validator=contains( + [ + "tmy-2014", + "tdy-2014", + "tgy-2014", + "tmy-2022", + "tdy-2022", + "tgy-2022", + ] + ), + ) + dataset_desc: str = "nsrdb_msg_tmy_v4" + resource_type: str = "solar" + valid_intervals: list[int] = field(factory=lambda: [60]) + resource_data: dict | object = field(default={}) + resource_filename: Path | str = field(default="") + resource_dir: Path | str | None = field(default=None) + + def __attrs_post_init__(self): + if "tmy" in self.resource_year: + self.dataset_desc = "nsrdb_msg_tmy_v4" + if "tdy" in self.resource_year: + self.dataset_desc = "nsrdb_msg_tdy_v4" + if "tgy" in self.resource_year: + self.dataset_desc = "nsrdb_msg_tgy_v4" + + +class MeteosatPrimeMeridianTMYSolarAPI(NRELDeveloperAPISolarResourceBase): + def setup(self): + resource_specs = self.helper_setup_method() + + # create the resource config + self.config = MeteosatPrimeMeridianTMYAPIConfig.from_dict(resource_specs) + + self.base_url = f"https://developer.nrel.gov/api/nsrdb/v2/solar/nsrdb-msg-v1-0-0-{self.config.resource_year.split('-')[0]}-download.csv?" + + super().setup() diff --git a/h2integrate/resource/solar/test/test_nrel_himawari_api.py b/h2integrate/resource/solar/test/test_nrel_himawari_api.py new file mode 100644 index 000000000..d221cb8ed --- /dev/null +++ b/h2integrate/resource/solar/test/test_nrel_himawari_api.py @@ -0,0 +1,144 @@ +from pathlib import Path + +import openmdao.api as om +from pytest import fixture + +from h2integrate.resource.solar.nrel_developer_himawari_api_models import ( + Himawari7SolarAPI, + Himawari8SolarAPI, + HimawariTMYSolarAPI, +) + + +@fixture +def plant_simulation_config(): + plant = { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + "start_time": "01/01/1900 00:30:00", + "timezone": 0, + }, + } + return plant + + +@fixture +def himawari7_site_config_tmy(): + # Brisbane, Australia + himawari7_site_tmy = { + "latitude": -27.3649, + "longitude": 152.67935, + "resources": { + "solar_resource": { + "resource_model": "himawari_tmy_solar_v3_api", + "resource_parameters": { + "resource_year": "tmy-2020", + }, + } + }, + } + return himawari7_site_tmy + + +@fixture +def himawari7_site_config(): + # Brisbane, Australia + himawari7_site_tmy = { + "latitude": -27.3649, + "longitude": 152.67935, + "resources": { + "solar_resource": { + "resource_model": "himawari7_solar_v3_api", + "resource_parameters": { + "resource_year": 2013, + }, + } + }, + } + return himawari7_site_tmy + + +@fixture +def himawari8_site_config(): + # KL, Malaysia + himawari8_site = { + "latitude": 3.25735, + "longitude": 101.656312, + "resources": { + "solar_resource": { + "resource_model": "himawari8_solar_v3_api", + "resource_parameters": { + "resource_year": 2020, + }, + } + }, + } + return himawari8_site + + +def test_himawari_tmy(plant_simulation_config, himawari7_site_config_tmy, subtests): + plant_config = { + "site": himawari7_site_config_tmy, + "plant": plant_simulation_config, + } + + prob = om.Problem() + comp = HimawariTMYSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + data = prob.get_val("resource.solar_resource_data") + + name_expected = "-27.3649_152.67935_tmy-2020_himawari_tmy_v3_60min_utc_tz.csv" + with subtests.test("Filename expected"): + assert name_expected == (Path(data["filepath"])).name + + +def test_himawari7(plant_simulation_config, himawari7_site_config, subtests): + plant_config = { + "site": himawari7_site_config, + "plant": plant_simulation_config, + } + + prob = om.Problem() + comp = Himawari7SolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + data = prob.get_val("resource.solar_resource_data") + + name_expected = "-27.3649_152.67935_2013_himawari7_v3_60min_utc_tz.csv" + with subtests.test("Filename expected"): + assert name_expected == (Path(data["filepath"])).name + + +def test_himawari8(plant_simulation_config, himawari8_site_config, subtests): + plant_config = { + "site": himawari8_site_config, + "plant": plant_simulation_config, + } + + prob = om.Problem() + comp = Himawari8SolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + data = prob.get_val("resource.solar_resource_data") + + name_expected = "3.25735_101.656312_2020_himawari8_v3_60min_utc_tz.csv" + with subtests.test("Filename expected"): + assert name_expected == (Path(data["filepath"])).name diff --git a/h2integrate/resource/solar/test/test_nrel_meteosat_prime_meridian_api.py b/h2integrate/resource/solar/test/test_nrel_meteosat_prime_meridian_api.py new file mode 100644 index 000000000..bcd8893d2 --- /dev/null +++ b/h2integrate/resource/solar/test/test_nrel_meteosat_prime_meridian_api.py @@ -0,0 +1,106 @@ +from pathlib import Path + +import openmdao.api as om +from pytest import fixture + +from h2integrate.resource.solar.nrel_developer_meteosat_prime_meridian_models import ( + MeteosatPrimeMeridianSolarAPI, + MeteosatPrimeMeridianTMYSolarAPI, +) + + +@fixture +def plant_simulation_config(): + plant = { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + "start_time": "01/01/1900 00:30:00", + "timezone": 0, + }, + } + return plant + + +@fixture +def meteosat_prime_meridian_site(): + # Rome, Italy + # filename: 41.9077_12.4368_2008_nsrdb_msg_v4_60min_utc_tz.csv + meteosat_site = { + "latitude": 41.9077, + "longitude": 12.4368, + "resources": { + "solar_resource": { + "resource_model": "meteosat_solar_v4_api", + "resource_parameters": { + "resource_year": 2008, + }, + } + }, + } + return meteosat_site + + +@fixture +def tmy_site(): + # Brisbane, Australia + tmy_file = "-27.3649_152.67935_tmy-2020_himawari_tmy_v3_60min_utc_tz.csv" + australia_site = { + "latitude": -27.3649, + "longitude": 152.67935, + "resources": { + "solar_resource": { + "resource_model": "meteosat_tmy_solar_v4_api", + "resource_parameters": { + "resource_year": "tmy-2022", + "resource_filename": tmy_file, + }, + } + }, + } + return australia_site + + +def test_meteosat_prime_meridian(plant_simulation_config, meteosat_prime_meridian_site, subtests): + plant_config = { + "site": meteosat_prime_meridian_site, + "plant": plant_simulation_config, + } + + prob = om.Problem() + comp = MeteosatPrimeMeridianSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + data = prob.get_val("resource.solar_resource_data") + + name_expected = "41.9077_12.4368_2008_nsrdb_msg_v4_60min_utc_tz.csv" + with subtests.test("Filename expected"): + assert name_expected == (Path(data["filepath"])).name + + +def test_meteosat_prime_meridian_tmy(plant_simulation_config, tmy_site, subtests): + plant_config = { + "site": tmy_site, + "plant": plant_simulation_config, + } + + prob = om.Problem() + comp = MeteosatPrimeMeridianTMYSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + data = prob.get_val("resource.solar_resource_data") + + name_expected = "-27.3649_152.67935_tmy-2020_himawari_tmy_v3_60min_utc_tz.csv" + with subtests.test("Filename expected"): + assert name_expected == (Path(data["filepath"])).name diff --git a/h2integrate/resource/solar/test/test_pvwatts_integration.py b/h2integrate/resource/solar/test/test_pvwatts_integration.py new file mode 100644 index 000000000..dffcfeea6 --- /dev/null +++ b/h2integrate/resource/solar/test/test_pvwatts_integration.py @@ -0,0 +1,348 @@ +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel +from h2integrate.resource.solar.nrel_developer_himawari_api_models import ( + Himawari7SolarAPI, + Himawari8SolarAPI, + HimawariTMYSolarAPI, +) +from h2integrate.resource.solar.nrel_developer_meteosat_prime_meridian_models import ( + MeteosatPrimeMeridianSolarAPI, + MeteosatPrimeMeridianTMYSolarAPI, +) + + +@fixture +def pysam_performance_model(): + pysam_options = { + "SystemDesign": { + "array_type": 2, + "azimuth": 180, + "bifaciality": 0.65, + "inv_eff": 96.0, + "losses": 14.0757, + "module_type": 0, + "rotlim": 45.0, + "gcr": 0.3, + }, + } + pysam_options["SystemDesign"].update({"tilt": 0.0}) + pv_design_dict = { + "pv_capacity_kWdc": 250000.0, + "dc_ac_ratio": 1.23, + "create_model_from": "default", + "config_name": "PVWattsSingleOwner", + "tilt": 0.0, + "tilt_angle_func": "none", # "lat-func", + "pysam_options": pysam_options, + } + + tech_config_dict = { + "model_inputs": { + "performance_parameters": pv_design_dict, + } + } + + plant = { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + "start_time": "01/01/1900 00:30:00", + "timezone": 0, + }, + } + + plant_config = { + "plant": plant, + "site": {"latitude": 30.6617, "longitude": -101.7096, "resources": {}}, + } + + comp = PYSAMSolarPlantPerformanceModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + + return comp + + +@fixture +def plant_simulation_config(): + plant = { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + "start_time": "01/01/1900 00:30:00", + "timezone": 0, + }, + } + return plant + + +@fixture +def meteosat_prime_meridian_site(): + # Rome, Italy + # filename: 41.9077_12.4368_2008_nsrdb_msg_v4_60min_utc_tz.csv + meteosat_site = { + "latitude": 41.9077, + "longitude": 12.4368, + "resources": { + "solar_resource": { + "resource_model": "meteosat_solar_v3_api", + "resource_parameters": { + "resource_year": 2008, + }, + } + }, + } + return meteosat_site + + +@fixture +def tmy_site_config(): + # Brisbane, Australia + tmy_file = "-27.3649_152.67935_tmy-2020_himawari_tmy_v3_60min_utc_tz.csv" + australia_site = { + "latitude": -27.3649, + "longitude": 152.67935, + "resources": { + "solar_resource": { + "resource_model": "meteosat_tmy_solar_v3_api", + "resource_parameters": { + "resource_year": "tmy-2022", + "resource_filename": tmy_file, + }, + } + }, + } + return australia_site + + +@fixture +def himawari7_site_config_tmy(): + # Brisbane, Australia + himawari7_site_tmy = { + "latitude": -27.3649, + "longitude": 152.67935, + "resources": { + "solar_resource": { + "resource_model": "himawari_tmy_solar_v3_api", + "resource_parameters": { + "resource_year": "tmy-2020", + }, + } + }, + } + return himawari7_site_tmy + + +@fixture +def himawari7_site_config(): + # Brisbane, Australia + himawari7_site_tmy = { + "latitude": -27.3649, + "longitude": 152.67935, + "resources": { + "solar_resource": { + "resource_model": "himawari7_solar_v3_api", + "resource_parameters": { + "resource_year": 2013, + }, + } + }, + } + return himawari7_site_tmy + + +@fixture +def himawari8_site_config(): + # KL, Malaysia + himawari8_site = { + "latitude": 3.25735, + "longitude": 101.656312, + "resources": { + "solar_resource": { + "resource_model": "himawari8_solar_v3_api", + "resource_parameters": { + "resource_year": 2020, + }, + } + }, + } + return himawari8_site + + +def test_pvwatts_with_himawari7( + pysam_performance_model, plant_simulation_config, himawari7_site_config, subtests +): + plant_config = { + "site": himawari7_site_config, + "plant": plant_simulation_config, + } + + prob = om.Problem() + resource_comp = Himawari7SolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("solar_resource", resource_comp, promotes=["*"]) + prob.model.add_subsystem("pv_perf", pysam_performance_model, promotes=["*"]) + prob.setup() + prob.run_model() + + aep = prob.get_val("pv_perf.annual_energy", units="MW*h/year")[0] + + with subtests.test("AEP"): + assert pytest.approx(aep, rel=1e-6) == 473577.280269 + + with subtests.test("Site latitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lat", 0) + assert pytest.approx(resource_lat, rel=1e-3) == himawari7_site_config["latitude"] + + with subtests.test("Site longitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lon", 0) + assert pytest.approx(resource_lat, rel=1e-3) == himawari7_site_config["longitude"] + + +def test_pvwatts_with_himawari8( + pysam_performance_model, plant_simulation_config, himawari8_site_config, subtests +): + plant_config = { + "site": himawari8_site_config, + "plant": plant_simulation_config, + } + + prob = om.Problem() + resource_comp = Himawari8SolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("solar_resource", resource_comp, promotes=["*"]) + prob.model.add_subsystem("pv_perf", pysam_performance_model, promotes=["*"]) + prob.setup() + prob.run_model() + + aep = prob.get_val("pv_perf.annual_energy", units="MW*h/year")[0] + + with subtests.test("AEP"): + assert pytest.approx(aep, rel=1e-6) == 411251.781327 + + with subtests.test("Site latitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lat", 0) + assert pytest.approx(resource_lat, rel=1e-3) == himawari8_site_config["latitude"] + + with subtests.test("Site longitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lon", 0) + assert pytest.approx(resource_lat, rel=1e-3) == himawari8_site_config["longitude"] + + +def test_pvwatts_with_meteosat_pm( + pysam_performance_model, plant_simulation_config, meteosat_prime_meridian_site, subtests +): + plant_config = { + "site": meteosat_prime_meridian_site, + "plant": plant_simulation_config, + } + + prob = om.Problem() + resource_comp = MeteosatPrimeMeridianSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("solar_resource", resource_comp, promotes=["*"]) + prob.model.add_subsystem("pv_perf", pysam_performance_model, promotes=["*"]) + prob.setup() + prob.run_model() + + aep = prob.get_val("pv_perf.annual_energy", units="MW*h/year")[0] + + with subtests.test("AEP"): + assert pytest.approx(aep, rel=1e-6) == 410211.9419 + + with subtests.test("Site latitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lat", 0) + assert pytest.approx(resource_lat, rel=1e-3) == meteosat_prime_meridian_site["latitude"] + + with subtests.test("Site longitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lon", 0) + assert ( + pytest.approx(resource_lat, abs=2 * 1e-2) == meteosat_prime_meridian_site["longitude"] + ) + + +def test_pvwatts_with_himawari_tmy( + pysam_performance_model, plant_simulation_config, himawari7_site_config_tmy, subtests +): + plant_config = { + "site": himawari7_site_config_tmy, + "plant": plant_simulation_config, + } + + prob = om.Problem() + resource_comp = HimawariTMYSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("solar_resource", resource_comp, promotes=["*"]) + prob.model.add_subsystem("pv_perf", pysam_performance_model, promotes=["*"]) + prob.setup() + prob.run_model() + + aep = prob.get_val("pv_perf.annual_energy", units="MW*h/year")[0] + + with subtests.test("AEP"): + assert pytest.approx(aep, rel=1e-6) == 510709.633402 + + with subtests.test("Site latitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lat", 0) + assert pytest.approx(resource_lat, rel=1e-3) == himawari7_site_config_tmy["latitude"] + + with subtests.test("Site longitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lon", 0) + assert pytest.approx(resource_lat, rel=1e-3) == himawari7_site_config_tmy["longitude"] + + +def test_pvwatts_with_meteosat_pm_tmy( + pysam_performance_model, plant_simulation_config, tmy_site_config, subtests +): + plant_config = { + "site": tmy_site_config, + "plant": plant_simulation_config, + } + + prob = om.Problem() + resource_comp = MeteosatPrimeMeridianTMYSolarAPI( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("solar_resource", resource_comp, promotes=["*"]) + prob.model.add_subsystem("pv_perf", pysam_performance_model, promotes=["*"]) + prob.setup() + prob.run_model() + + aep = prob.get_val("pv_perf.annual_energy", units="MW*h/year")[0] + + with subtests.test("AEP"): + assert pytest.approx(aep, rel=1e-6) == 510709.633402 + + with subtests.test("Site latitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lat", 0) + assert pytest.approx(resource_lat, rel=1e-3) == tmy_site_config["latitude"] + + with subtests.test("Site longitude"): + resource_lat = prob.get_val("pv_perf.solar_resource_data").get("site_lon", 0) + assert pytest.approx(resource_lat, rel=1e-3) == tmy_site_config["longitude"] diff --git a/resource_files/solar/-27.3649_152.67935_2013_himawari7_v3_60min_utc_tz.csv b/resource_files/solar/-27.3649_152.67935_2013_himawari7_v3_60min_utc_tz.csv new file mode 100644 index 000000000..2e12854b2 --- /dev/null +++ b/resource_files/solar/-27.3649_152.67935_2013_himawari7_v3_60min_utc_tz.csv @@ -0,0 +1,8763 @@ +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 Units,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 +NSRDB,2074501,-,Queensland,Australia,-27.35,152.66,0,227,10,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,3.1.1 +Year,Month,Day,Hour,Minute,Temperature,Alpha,Aerosol Optical Depth,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Ozone,Relative Humidity,Solar Zenith Angle,Surface Albedo,Pressure,Precipitable Water,Wind Direction,Wind Speed +2013,1,1,0,30,26.900000000000002,0.62,0.11900000000000001,0.67,143,935,1026,1,17,143,935,0,1026,0.27,54.620000000000005,19.2,0.15,983,2.8000000000000003,70,1.1 +2013,1,1,1,30,28.400000000000002,0.65,0.112,0.67,141,954,1089,7,16.5,698,98,0,795,0.269,48.43,6.75,0.15,982,2.8000000000000003,66,1.2000000000000002 +2013,1,1,2,30,29.3,0.6900000000000001,0.1072,0.67,137,957,1081,8,16,674,75,0,748,0.268,44.59,9.46,0.15,982,2.8000000000000003,65,1.3 +2013,1,1,3,30,29.6,0.74,0.1048,0.67,132,944,1005,8,15.700000000000001,647,114,0,753,0.267,42.89,22.36,0.15,981,2.8000000000000003,66,1.3 +2013,1,1,4,30,29.400000000000002,0.78,0.10350000000000001,0.67,123,912,865,8,15.4,534,80,0,599,0.265,42.72,35.660000000000004,0.15,980,2.8000000000000003,68,1.4000000000000001 +2013,1,1,5,30,28.900000000000002,0.79,0.1038,0.67,112,852,672,8,15.3,399,66,0,442,0.264,43.62,48.92,0.15,980,2.9000000000000004,68,1.4000000000000001 +2013,1,1,6,30,27.900000000000002,0.79,0.1037,0.67,96,752,448,8,15.3,220,34,0,236,0.263,46.26,62.02,0.15,980,2.9000000000000004,67,1.5 +2013,1,1,7,30,26.3,0.8,0.10260000000000001,0.67,70,561,217,8,15.8,95,19,3,100,0.263,52.32,74.81,0.15,981,2.9000000000000004,64,1.3 +2013,1,1,8,30,24.5,0.8,0.1017,0.67,22,129,28,8,17.2,14,0,3,14,0.263,63.690000000000005,87.05,0.15,981,2.9000000000000004,61,1 +2013,1,1,9,30,23.200000000000003,0.8,0.1,0.67,0,0,0,8,17.7,0,0,0,0,0.264,71.25,99.02,0.15,981,2.9000000000000004,57,0.9 +2013,1,1,10,30,22.5,0.79,0.09680000000000001,0.67,0,0,0,8,18.2,0,0,0,0,0.264,76.49,109.77,0.15,982,2.8000000000000003,52,0.7000000000000001 +2013,1,1,11,30,21.8,0.79,0.0941,0.67,0,0,0,8,18.6,0,0,0,0,0.265,81.81,118.98,0.15,982,2.7,45,0.6000000000000001 +2013,1,1,12,30,21.400000000000002,0.79,0.0936,0.67,0,0,0,1,18.8,0,0,0,0,0.265,85.10000000000001,125.84,0.15,981,2.6,37,0.5 +2013,1,1,13,30,20.900000000000002,0.79,0.0941,0.67,0,0,0,7,18.900000000000002,0,0,0,0,0.266,88.57000000000001,129.39000000000001,0.15,980,2.5,25,0.4 +2013,1,1,14,30,20.6,0.78,0.095,0.67,0,0,0,1,19,0,0,0,0,0.267,90.4,128.92000000000002,0.15,979,2.5,10,0.4 +2013,1,1,15,30,20.200000000000003,0.77,0.0969,0.67,0,0,0,0,19,0,0,0,0,0.268,92.88,124.53,0.15,979,2.5,174,0.4 +2013,1,1,16,30,19.900000000000002,0.76,0.098,0.67,0,0,0,0,19,0,0,0,0,0.27,94.64,117.04,0.15,979,2.4000000000000004,335,0.4 +2013,1,1,17,30,19.5,0.75,0.09570000000000001,0.67,0,0,0,0,18.900000000000002,0,0,0,0,0.271,96.55,107.41,0.15,979,2.4000000000000004,313,0.5 +2013,1,1,18,30,19.5,0.76,0.0926,0.67,0,0,0,0,18.8,0,0,0,0,0.273,95.8,96.39,0.15,979,2.3000000000000003,292,0.6000000000000001 +2013,1,1,19,30,20.8,0.78,0.0884,0.67,35,292,64,0,18.8,35,292,0,64,0.274,88.48,84.33,0.15,980,2.3000000000000003,280,0.9 +2013,1,1,20,30,23.400000000000002,0.81,0.083,0.67,71,661,277,0,18.8,71,661,0,277,0.275,75.53,71.91,0.15,980,2.3000000000000003,276,1 +2013,1,1,21,30,26.3,0.86,0.07590000000000001,0.67,89,831,516,0,18.3,89,831,0,516,0.275,61.42,59.03,0.15,980,2.2,262,0.9 +2013,1,1,22,30,29,0.9,0.0704,0.67,98,919,738,0,17.1,98,919,0,738,0.275,48.59,45.89,0.15,980,2.2,236,0.8 +2013,1,1,23,30,30.200000000000003,0.9400000000000001,0.0675,0.67,105,971,924,0,16,105,971,0,924,0.275,42.47,32.6,0.15,979,2.1,221,0.8 +2013,1,2,0,30,33.300000000000004,0.75,0.0712,0.67,114,993,1051,0,15.100000000000001,114,993,0,1051,0.274,33.44,19.330000000000002,0.15,978,2.1,173,1 +2013,1,2,1,30,34.800000000000004,0.78,0.07050000000000001,0.67,116,1002,1111,0,14.3,116,1002,0,1111,0.273,29.29,6.890000000000001,0.15,977,2.2,149,1.3 +2013,1,2,2,30,35.6,0.79,0.07250000000000001,0.67,117,997,1101,0,13.8,117,997,0,1101,0.271,27.14,9.41,0.15,976,2.3000000000000003,131,1.6 +2013,1,2,3,30,35.9,0.72,0.0804,0.67,118,973,1019,0,13.5,118,973,0,1019,0.27,26.11,22.28,0.15,976,2.4000000000000004,116,2 +2013,1,2,4,30,35.4,0.71,0.0876,0.67,116,933,875,0,13.3,116,933,0,875,0.269,26.52,35.58,0.15,975,2.5,106,2.4000000000000004 +2013,1,2,5,30,34.2,0.7000000000000001,0.0983,0.67,111,861,677,0,13.4,111,861,0,677,0.269,28.490000000000002,48.85,0.15,976,2.7,98,2.7 +2013,1,2,6,30,32.1,0.6900000000000001,0.11030000000000001,0.67,99,744,449,0,13.8,99,744,0,449,0.269,32.97,61.95,0.15,976,2.8000000000000003,95,2.8000000000000003 +2013,1,2,7,30,29.400000000000002,0.68,0.1188,0.67,75,533,215,0,14.700000000000001,75,533,0,215,0.27,40.77,74.75,0.15,978,2.9000000000000004,97,2.6 +2013,1,2,8,30,26.900000000000002,0.67,0.1242,0.67,22,97,28,1,15.9,22,97,0,28,0.271,51.03,87,0.15,979,3,102,2.3000000000000003 +2013,1,2,9,30,25.1,0.65,0.1336,0.67,0,0,0,3,17.3,0,0,0,0,0.272,61.800000000000004,98.98,0.15,981,3.2,111,2.2 +2013,1,2,10,30,24.1,0.61,0.1582,0.67,0,0,0,8,18.6,0,0,0,0,0.273,71.29,109.75,0.15,981,3.3000000000000003,118,2.2 +2013,1,2,11,30,23.5,0.59,0.17320000000000002,0.67,0,0,0,3,19.6,0,0,0,0,0.274,78.58,118.99000000000001,0.15,982,3.3000000000000003,122,2.2 +2013,1,2,12,30,23.1,0.6,0.1905,0.67,0,0,0,1,20,0,0,0,0,0.275,82.65,125.88000000000001,0.15,982,3.3000000000000003,125,2.1 +2013,1,2,13,30,22.6,0.58,0.1928,0.67,0,0,0,0,20,0,0,0,0,0.277,85.48,129.47,0.15,981,3.3000000000000003,129,1.9000000000000001 +2013,1,2,14,30,22.1,0.52,0.1988,0.67,0,0,0,1,20.1,0,0,0,0,0.278,88.21000000000001,129.02,0.15,981,3.3000000000000003,135,1.7000000000000002 +2013,1,2,15,30,21.6,0.49,0.22640000000000002,0.67,0,0,0,0,20.1,0,0,0,0,0.28,90.99,124.66,0.15,981,3.3000000000000003,139,1.7000000000000002 +2013,1,2,16,30,21.1,0.45,0.2466,0.67,0,0,0,0,19.900000000000002,0,0,0,0,0.281,92.88,117.18,0.15,981,3.3000000000000003,141,1.7000000000000002 +2013,1,2,17,30,20.700000000000003,0.41000000000000003,0.24980000000000002,0.67,0,0,0,0,19.6,0,0,0,0,0.281,93.14,107.55,0.15,981,3.3000000000000003,141,1.6 +2013,1,2,18,30,20.6,0.42,0.2521,0.67,0,0,0,0,19.200000000000003,0,0,0,0,0.281,91.74,96.53,0.15,982,3.2,141,1.7000000000000002 +2013,1,2,19,30,21.200000000000003,0.42,0.23600000000000002,0.67,42,86,51,1,18.900000000000002,42,86,0,51,0.281,86.83,84.46000000000001,0.15,982,3.2,137,2.1 +2013,1,2,20,30,22.700000000000003,0.42,0.221,0.67,111,439,247,0,18.7,111,439,0,247,0.28200000000000003,77.98,72.04,0.15,983,3.1,131,2.6 +2013,1,2,21,30,24.5,0.45,0.2069,0.67,144,650,478,1,18.400000000000002,144,650,0,478,0.28200000000000003,68.71000000000001,59.160000000000004,0.15,983,3,125,2.8000000000000003 +2013,1,2,22,30,26.400000000000002,0.47000000000000003,0.1893,0.67,159,775,697,0,18,159,775,0,697,0.281,60.02,46.02,0.15,983,3,120,2.8000000000000003 +2013,1,2,23,30,27.400000000000002,0.49,0.1685,0.67,163,854,882,1,17.400000000000002,163,854,0,882,0.281,54.57,32.730000000000004,0.15,983,3,117,2.8000000000000003 +2013,1,3,0,30,29.6,0.5700000000000001,0.1273,0.67,147,923,1017,0,16.8,147,923,0,1017,0.279,46.19,19.46,0.15,982,3,113,2.8000000000000003 +2013,1,3,1,30,30.6,0.5700000000000001,0.1246,0.67,149,939,1080,0,16.2,149,939,0,1080,0.278,41.99,7.03,0.15,981,3,111,2.8000000000000003 +2013,1,3,2,30,31,0.56,0.12560000000000002,0.67,149,936,1073,0,15.700000000000001,149,936,0,1073,0.278,39.72,9.370000000000001,0.15,981,3,110,2.8000000000000003 +2013,1,3,3,30,31,0.56,0.12480000000000001,0.67,145,918,995,0,15.5,145,918,0,995,0.277,39.13,22.21,0.15,980,3.1,109,2.9000000000000004 +2013,1,3,4,30,30.5,0.53,0.13770000000000002,0.67,144,871,853,0,15.5,144,871,0,853,0.277,40.43,35.51,0.15,980,3.1,106,3 +2013,1,3,5,30,29.400000000000002,0.51,0.15230000000000002,0.67,138,791,659,0,15.8,138,791,0,659,0.277,43.74,48.77,0.15,980,3.2,103,3.1 +2013,1,3,6,30,27.8,0.47000000000000003,0.1819,0.67,128,644,432,0,16.2,128,644,0,432,0.277,49.160000000000004,61.88,0.15,980,3.2,100,3.2 +2013,1,3,7,30,25.8,0.47000000000000003,0.1859,0.67,92,425,205,0,16.6,92,425,0,205,0.278,56.92,74.69,0.15,981,3.2,96,3 +2013,1,3,8,30,23.8,0.48,0.18480000000000002,0.67,23,44,25,0,17,23,44,0,25,0.279,65.74,86.95,0.15,982,3.2,95,2.7 +2013,1,3,9,30,22.6,0.48,0.18510000000000001,0.67,0,0,0,0,17.1,0,0,0,0,0.279,71.17,98.95,0.15,983,3.2,98,2.5 +2013,1,3,10,30,21.8,0.49,0.1841,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.279,73.92,109.74000000000001,0.15,983,3.2,103,2.4000000000000004 +2013,1,3,11,30,21.400000000000002,0.5,0.1821,0.67,0,0,0,0,16.7,0,0,0,0,0.279,74.64,119,0.15,984,3.2,108,2.2 +2013,1,3,12,30,21,0.52,0.1753,0.67,0,0,0,0,16.5,0,0,0,0,0.279,75.26,125.93,0.15,983,3.1,112,2 +2013,1,3,13,30,20.700000000000003,0.54,0.16570000000000001,0.67,0,0,0,1,16.3,0,0,0,0,0.278,75.78,129.55,0.15,983,3.1,114,1.8 +2013,1,3,14,30,20.400000000000002,0.56,0.1555,0.67,0,0,0,1,16.1,0,0,0,0,0.278,76.56,129.14000000000001,0.15,982,3,117,1.6 +2013,1,3,15,30,20,0.56,0.1484,0.67,0,0,0,3,16.1,0,0,0,0,0.279,78.37,124.79,0.15,982,2.9000000000000004,119,1.4000000000000001 +2013,1,3,16,30,19.700000000000003,0.5700000000000001,0.1443,0.67,0,0,0,3,16.2,0,0,1,0,0.279,80.14,117.32000000000001,0.15,982,2.9000000000000004,122,1.2000000000000002 +2013,1,3,17,30,19.3,0.5700000000000001,0.1379,0.67,0,0,0,3,16.2,0,0,0,0,0.279,82.41,107.7,0.15,982,2.8000000000000003,125,1 +2013,1,3,18,30,19.3,0.5700000000000001,0.1292,0.67,0,0,0,0,16.3,0,0,0,0,0.279,82.71000000000001,96.67,0.15,983,2.7,128,1.1 +2013,1,3,19,30,20.3,0.5700000000000001,0.1197,0.67,37,209,57,1,16.3,37,209,0,57,0.279,77.72,84.60000000000001,0.15,984,2.6,125,1.8 +2013,1,3,20,30,22.1,0.56,0.11120000000000001,0.67,81,598,264,1,16,81,598,0,264,0.28,68.48,72.18,0.15,984,2.5,119,2.3000000000000003 +2013,1,3,21,30,24,0.5700000000000001,0.1,0.67,101,789,504,0,15.600000000000001,101,789,0,504,0.28,59.34,59.29,0.15,984,2.3000000000000003,115,2.4000000000000004 +2013,1,3,22,30,25.900000000000002,0.6,0.0874,0.67,109,895,729,1,15,109,895,0,729,0.28,51.14,46.15,0.15,984,2.2,112,2.5 +2013,1,3,23,30,26.8,0.61,0.08,0.67,115,952,915,1,14.4,115,952,0,915,0.28,46.49,32.86,0.15,984,2.2,111,2.5 +2013,1,4,0,30,28.8,0.61,0.0829,0.67,122,977,1043,1,13.700000000000001,122,977,0,1043,0.278,39.57,19.59,0.15,983,2.2,108,2.7 +2013,1,4,1,30,29.6,0.61,0.0806,0.67,124,991,1107,1,13.100000000000001,124,991,0,1107,0.277,36.32,7.18,0.15,982,2.2,106,2.8000000000000003 +2013,1,4,2,30,30,0.6,0.0804,0.67,123,988,1098,1,12.700000000000001,123,988,0,1098,0.276,34.67,9.33,0.15,982,2.3000000000000003,103,2.9000000000000004 +2013,1,4,3,30,30,0.6,0.0873,0.67,124,967,1020,1,12.700000000000001,124,967,0,1020,0.276,34.49,22.14,0.15,981,2.3000000000000003,99,3 +2013,1,4,4,30,29.400000000000002,0.58,0.0877,0.67,118,933,877,1,12.9,118,933,0,877,0.277,36.17,35.43,0.15,981,2.4000000000000004,97,3 +2013,1,4,5,30,28.3,0.56,0.08700000000000001,0.67,107,877,686,0,13.200000000000001,107,877,0,686,0.277,39.51,48.7,0.15,981,2.4000000000000004,94,3.1 +2013,1,4,6,30,26.8,0.55,0.0864,0.67,91,777,458,0,13.700000000000001,91,777,0,458,0.278,44.57,61.81,0.15,982,2.5,92,3 +2013,1,4,7,30,24.900000000000002,0.53,0.0858,0.67,67,589,223,1,14.3,67,589,0,223,0.279,51.7,74.64,0.15,982,2.5,89,2.6 +2013,1,4,8,30,23,0.53,0.0834,0.67,22,149,30,0,14.9,22,149,0,30,0.28,60.370000000000005,86.91,0.15,983,2.5,87,2.1 +2013,1,4,9,30,21.8,0.53,0.08030000000000001,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.28,67.65,98.92,0.15,983,2.5,87,1.6 +2013,1,4,10,30,21,0.54,0.0784,0.67,0,0,0,0,16,0,0,0,0,0.28,73.15,109.73,0.15,984,2.5,89,1.3 +2013,1,4,11,30,20.5,0.55,0.07780000000000001,0.67,0,0,0,0,16.400000000000002,0,0,0,0,0.28,77.26,119.02,0.15,984,2.4000000000000004,94,1 +2013,1,4,12,30,20,0.55,0.0794,0.67,0,0,0,0,16.6,0,0,0,0,0.279,80.69,125.99000000000001,0.15,983,2.4000000000000004,99,0.9 +2013,1,4,13,30,19.8,0.56,0.08270000000000001,0.67,0,0,0,0,16.6,0,0,0,0,0.279,82.02,129.64000000000001,0.15,983,2.4000000000000004,103,0.8 +2013,1,4,14,30,19.5,0.5700000000000001,0.0852,0.67,0,0,0,0,16.6,0,0,0,0,0.279,83.37,129.26,0.15,982,2.4000000000000004,106,0.8 +2013,1,4,15,30,19.3,0.58,0.0887,0.67,0,0,0,1,16.6,0,0,0,0,0.278,84.31,124.93,0.15,982,2.4000000000000004,109,0.8 +2013,1,4,16,30,19.1,0.6,0.092,0.67,0,0,0,1,16.6,0,0,0,0,0.279,85.41,117.47,0.15,982,2.5,110,0.8 +2013,1,4,17,30,19,0.58,0.09140000000000001,0.67,0,0,0,0,16.6,0,0,0,0,0.279,86.17,107.85000000000001,0.15,983,2.5,111,0.8 +2013,1,4,18,30,19.200000000000003,0.6,0.0954,0.67,0,0,0,0,16.7,0,0,0,0,0.279,85.42,96.82000000000001,0.15,983,2.5,111,0.9 +2013,1,4,19,30,20.6,0.61,0.0976,0.67,34,242,56,1,16.8,34,242,0,56,0.279,78.99,84.74,0.15,984,2.5,107,1.5 +2013,1,4,20,30,22.6,0.59,0.095,0.67,75,620,264,1,16.6,75,620,0,264,0.279,69.01,72.31,0.15,984,2.6,101,2.1 +2013,1,4,21,30,24.5,0.6,0.08990000000000001,0.67,96,794,499,1,16.2,96,794,0,499,0.279,59.75,59.43,0.15,985,2.6,99,2.3000000000000003 +2013,1,4,22,30,26.200000000000003,0.62,0.08370000000000001,0.67,107,889,721,1,15.9,107,889,0,721,0.279,53.1,46.28,0.15,985,2.6,100,2.3000000000000003 +2013,1,4,23,30,27,0.62,0.07690000000000001,0.67,112,943,904,3,15.8,557,83,0,627,0.279,50.25,32.99,0.15,984,2.7,100,2.3000000000000003 +2013,1,5,0,30,29,0.5,0.1135,0.67,140,938,1023,1,15.700000000000001,140,938,0,1023,0.279,44.51,19.72,0.14,984,2.7,100,2.4000000000000004 +2013,1,5,1,30,30,0.51,0.11080000000000001,0.67,141,952,1085,1,15.600000000000001,141,952,0,1085,0.278,41.83,7.33,0.14,983,2.8000000000000003,100,2.5 +2013,1,5,2,30,30.400000000000002,0.52,0.10640000000000001,0.67,138,954,1080,3,15.600000000000001,641,50,0,690,0.278,40.93,9.3,0.14,983,2.8000000000000003,99,2.6 +2013,1,5,3,30,30.400000000000002,0.52,0.1143,0.67,139,932,1003,3,15.700000000000001,499,25,0,522,0.278,41.06,22.07,0.14,983,2.8000000000000003,97,2.7 +2013,1,5,4,30,30,0.52,0.11030000000000001,0.67,129,900,863,1,15.8,129,900,0,863,0.278,42.34,35.36,0.14,982,2.9000000000000004,96,2.7 +2013,1,5,5,30,29,0.52,0.1056,0.67,115,845,674,1,16,115,845,0,674,0.278,45.410000000000004,48.64,0.14,982,2.9000000000000004,93,2.7 +2013,1,5,6,30,27.6,0.54,0.1018,0.67,97,751,453,1,16.3,97,751,0,453,0.278,50.03,61.75,0.14,983,2.8000000000000003,90,2.7 +2013,1,5,7,30,25.8,0.56,0.09570000000000001,0.67,70,568,221,1,16.6,70,568,0,221,0.279,56.75,74.59,0.14,984,2.8000000000000003,85,2.4000000000000004 +2013,1,5,8,30,23.900000000000002,0.58,0.0874,0.67,23,146,31,1,17,23,146,0,31,0.279,65.25,86.87,0.14,984,2.7,80,2 +2013,1,5,9,30,22.6,0.61,0.0789,0.67,0,0,0,0,17.5,0,0,0,0,0.28,72.82000000000001,98.9,0.14,985,2.7,78,1.6 +2013,1,5,10,30,21.8,0.64,0.0729,0.67,0,0,0,0,17.900000000000002,0,0,0,0,0.28,78.31,109.73,0.14,985,2.6,80,1.4000000000000001 +2013,1,5,11,30,21.200000000000003,0.66,0.0703,0.67,0,0,0,1,18.2,0,0,0,0,0.281,83.03,119.05,0.14,985,2.6,84,1.1 +2013,1,5,12,30,20.700000000000003,0.68,0.0694,0.67,0,0,0,1,18.5,0,0,0,0,0.281,87.14,126.05,0.14,985,2.6,90,0.9 +2013,1,5,13,30,20.400000000000002,0.6900000000000001,0.06960000000000001,0.67,0,0,0,0,18.7,0,0,0,0,0.28200000000000003,89.81,129.74,0.14,984,2.6,99,0.8 +2013,1,5,14,30,20.200000000000003,0.7000000000000001,0.0718,0.67,0,0,0,0,18.8,0,0,0,0,0.28300000000000003,91.75,129.39000000000001,0.14,984,2.5,106,0.8 +2013,1,5,15,30,20.1,0.73,0.077,0.67,0,0,0,0,18.900000000000002,0,0,0,0,0.28300000000000003,92.95,125.08,0.14,984,2.5,109,0.8 +2013,1,5,16,30,19.900000000000002,0.74,0.07740000000000001,0.67,0,0,0,3,19,0,0,0,0,0.28300000000000003,94.42,117.62,0.14,984,2.4000000000000004,110,0.8 +2013,1,5,17,30,19.8,0.73,0.0737,0.67,0,0,0,1,19,0,0,0,0,0.28400000000000003,95,108,0.14,984,2.4000000000000004,110,0.8 +2013,1,5,18,30,20,0.73,0.0736,0.67,0,0,0,0,19,0,0,0,0,0.28400000000000003,93.71000000000001,96.97,0.14,985,2.4000000000000004,112,1 +2013,1,5,19,30,20.900000000000002,0.71,0.0695,0.67,31,296,57,1,19,31,296,0,57,0.28300000000000003,88.95,84.88,0.14,985,2.4000000000000004,111,1.6 +2013,1,5,20,30,22.5,0.71,0.0613,0.67,64,679,268,1,19.1,64,679,0,268,0.28200000000000003,80.93,72.45,0.14,986,2.5,107,2.2 +2013,1,5,21,30,24.3,0.71,0.063,0.67,83,829,503,1,18.3,83,829,0,503,0.281,69.26,59.56,0.14,986,2.6,104,2.5 +2013,1,5,22,30,26.1,0.7000000000000001,0.06860000000000001,0.67,98,903,721,1,17.6,98,903,0,721,0.28,59.35,46.410000000000004,0.14,986,2.7,104,2.6 +2013,1,5,23,30,26.900000000000002,0.64,0.0733,0.67,110,946,902,1,17.3,110,946,0,902,0.279,55.72,33.12,0.14,986,2.7,104,2.7 +2013,1,6,0,30,29,0.8300000000000001,0.0653,0.67,109,981,1031,1,17.1,109,981,0,1031,0.279,48.660000000000004,19.86,0.14,985,2.8000000000000003,104,3 +2013,1,6,1,30,29.8,0.79,0.07,0.67,115,990,1097,1,16.8,115,990,0,1097,0.278,45.69,7.48,0.14,984,2.7,103,3.1 +2013,1,6,2,30,30.1,0.73,0.0761,0.67,119,984,1090,3,16.6,342,28,0,369,0.278,44.19,9.28,0.14,984,2.7,103,3.3000000000000003 +2013,1,6,3,30,29.900000000000002,0.6900000000000001,0.0984,0.67,128,950,1009,1,16.400000000000002,128,950,0,1009,0.278,44.230000000000004,22.01,0.14,984,2.7,102,3.4000000000000004 +2013,1,6,4,30,29.200000000000003,0.65,0.10540000000000001,0.67,126,911,869,3,16.400000000000002,358,24,0,378,0.278,45.97,35.300000000000004,0.14,984,2.7,102,3.4000000000000004 +2013,1,6,5,30,28.1,0.6,0.10300000000000001,0.67,114,854,679,1,16.400000000000002,114,854,0,679,0.279,48.89,48.57,0.14,984,2.7,101,3.3000000000000003 +2013,1,6,6,30,26.700000000000003,0.58,0.1029,0.67,98,753,455,1,16.5,98,753,0,455,0.279,53.45,61.7,0.14,985,2.7,100,3.2 +2013,1,6,7,30,25,0.56,0.0976,0.67,71,570,223,1,16.8,71,570,0,223,0.279,60.25,74.54,0.14,985,2.6,97,2.8000000000000003 +2013,1,6,8,30,23.5,0.53,0.0913,0.67,23,139,31,1,17.1,23,139,0,31,0.279,67.49,86.84,0.14,986,2.6,95,2.3000000000000003 +2013,1,6,9,30,22.6,0.54,0.0917,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.278,72.61,98.88,0.14,986,2.5,95,2 +2013,1,6,10,30,22,0.53,0.0896,0.67,0,0,0,0,17.6,0,0,0,0,0.277,76.11,109.74000000000001,0.14,987,2.4000000000000004,97,1.7000000000000002 +2013,1,6,11,30,21.5,0.52,0.0872,0.67,0,0,0,3,17.7,0,0,0,0,0.275,79.06,119.09,0.14,987,2.3000000000000003,102,1.5 +2013,1,6,12,30,21.1,0.53,0.0819,0.67,0,0,0,1,17.8,0,0,0,0,0.274,81.44,126.12,0.14,986,2.3000000000000003,106,1.3 +2013,1,6,13,30,20.8,0.53,0.08020000000000001,0.67,0,0,0,3,17.900000000000002,0,0,0,0,0.274,83.36,129.85,0.14,986,2.3000000000000003,109,1.2000000000000002 +2013,1,6,14,30,20.6,0.52,0.0824,0.67,0,0,0,0,18,0,0,0,0,0.273,84.86,129.53,0.14,986,2.3000000000000003,110,1.1 +2013,1,6,15,30,20.400000000000002,0.51,0.0833,0.67,0,0,0,3,18,0,0,0,0,0.273,86.08,125.23,0.14,986,2.3000000000000003,112,1.1 +2013,1,6,16,30,20.3,0.49,0.08460000000000001,0.67,0,0,0,3,18,0,0,0,0,0.273,86.63,117.78,0.14,986,2.3000000000000003,114,1 +2013,1,6,17,30,20.1,0.48,0.0845,0.67,0,0,0,0,18,0,0,0,0,0.273,87.52,108.16,0.14,986,2.2,116,1 +2013,1,6,18,30,20.3,0.48,0.0835,0.67,0,0,0,3,17.900000000000002,0,0,0,0,0.273,86.03,97.12,0.14,986,2.2,119,1.1 +2013,1,6,19,30,21.400000000000002,0.51,0.0762,0.67,32,268,55,1,17.900000000000002,32,268,0,55,0.273,80.22,85.02,0.14,987,2.1,119,1.7000000000000002 +2013,1,6,20,30,23.200000000000003,0.55,0.0694,0.67,67,668,267,1,17.6,67,668,0,267,0.273,70.92,72.59,0.14,987,2.1,116,2.4000000000000004 +2013,1,6,21,30,25,0.5700000000000001,0.0708,0.67,87,825,504,3,16.5,194,25,0,206,0.274,59.35,59.7,0.14,987,2.2,112,2.8000000000000003 +2013,1,6,22,30,26.6,0.61,0.06720000000000001,0.67,98,915,728,1,15.700000000000001,98,915,0,728,0.274,51.1,46.54,0.14,987,2.2,110,3 +2013,1,6,23,30,27.3,0.61,0.063,0.67,105,967,913,3,15.3,387,24,0,407,0.274,47.85,33.25,0.14,987,2.2,109,3.1 +2013,1,7,0,30,29,0.64,0.0791,0.67,119,978,1038,1,15,119,978,0,1038,0.274,42.660000000000004,19.990000000000002,0.14,986,2.3000000000000003,106,3.3000000000000003 +2013,1,7,1,30,29.700000000000003,0.66,0.0877,0.67,127,983,1102,3,14.8,800,0,0,939,0.274,40.410000000000004,7.640000000000001,0.14,985,2.3000000000000003,105,3.4000000000000004 +2013,1,7,2,30,29.8,0.68,0.0931,0.67,129,976,1093,1,14.8,129,976,0,1093,0.274,40.15,9.26,0.14,985,2.4000000000000004,103,3.5 +2013,1,7,3,30,29.6,0.68,0.0854,0.67,122,968,1019,1,14.9,122,968,0,1019,0.274,40.74,21.95,0.14,984,2.4000000000000004,101,3.5 +2013,1,7,4,30,28.900000000000002,0.7000000000000001,0.0892,0.67,117,933,879,3,15,552,108,0,640,0.274,42.69,35.230000000000004,0.14,984,2.4000000000000004,99,3.4000000000000004 +2013,1,7,5,30,28,0.6900000000000001,0.0857,0.67,105,884,691,3,15,190,27,0,207,0.275,45.21,48.52,0.14,984,2.3000000000000003,98,3.2 +2013,1,7,6,30,26.8,0.71,0.0824,0.67,89,793,465,3,15.100000000000001,283,127,0,343,0.277,48.71,61.65,0.14,984,2.3000000000000003,96,2.9000000000000004 +2013,1,7,7,30,25.3,0.72,0.07830000000000001,0.67,65,616,229,3,15.200000000000001,132,87,3,155,0.278,53.7,74.5,0.14,985,2.3000000000000003,95,2.4000000000000004 +2013,1,7,8,30,23.8,0.72,0.0729,0.67,22,188,33,3,15.600000000000001,19,0,3,19,0.279,60.13,86.81,0.14,985,2.3000000000000003,93,1.7000000000000002 +2013,1,7,9,30,22.700000000000003,0.75,0.0689,0.67,0,0,0,3,16.3,0,0,0,0,0.279,67.23,98.87,0.14,986,2.2,93,1.2000000000000002 +2013,1,7,10,30,21.8,0.75,0.0648,0.67,0,0,0,3,16.900000000000002,0,0,0,0,0.279,73.66,109.75,0.14,986,2.2,96,0.9 +2013,1,7,11,30,21.1,0.72,0.06520000000000001,0.67,0,0,0,0,17.3,0,0,0,0,0.279,79.04,119.13,0.14,986,2.2,101,0.8 +2013,1,7,12,30,20.700000000000003,0.6900000000000001,0.0684,0.67,0,0,0,0,17.6,0,0,0,0,0.278,82.43,126.2,0.14,985,2.2,106,0.7000000000000001 +2013,1,7,13,30,20.3,0.66,0.0726,0.67,0,0,0,0,17.8,0,0,0,0,0.278,85.47,129.96,0.14,984,2.2,109,0.7000000000000001 +2013,1,7,14,30,20.1,0.65,0.076,0.67,0,0,0,0,17.900000000000002,0,0,0,0,0.278,87.42,129.67000000000002,0.14,983,2.1,110,0.6000000000000001 +2013,1,7,15,30,19.900000000000002,0.64,0.0787,0.67,0,0,0,1,18.1,0,0,0,0,0.278,89.28,125.39,0.14,983,2.1,109,0.6000000000000001 +2013,1,7,16,30,19.6,0.64,0.08,0.67,0,0,0,1,18.2,0,0,0,0,0.279,91.38,117.94,0.14,982,2.1,108,0.5 +2013,1,7,17,30,19.400000000000002,0.63,0.0826,0.67,0,0,0,0,18.2,0,0,0,0,0.279,92.86,108.32000000000001,0.14,982,2.1,107,0.5 +2013,1,7,18,30,19.5,0.64,0.0872,0.67,0,0,0,0,18.3,0,0,0,0,0.28,92.53,97.27,0.14,982,2.1,108,0.5 +2013,1,7,19,30,20.700000000000003,0.65,0.08650000000000001,0.67,32,251,53,1,18.3,32,251,0,53,0.28,86,85.17,0.14,982,2,92,0.8 +2013,1,7,20,30,22.700000000000003,0.68,0.0782,0.67,69,657,264,1,18.2,69,657,0,264,0.281,75.59,72.74,0.14,982,2,63,1.1 +2013,1,7,21,30,24.900000000000002,0.74,0.0751,0.67,88,825,502,1,17.3,88,825,0,502,0.28200000000000003,62.83,59.83,0.14,982,2.1,44,1.3 +2013,1,7,22,30,26.8,0.79,0.07350000000000001,0.67,100,913,726,1,16.6,100,913,0,726,0.28200000000000003,53.75,46.67,0.14,982,2.1,35,1.4000000000000001 +2013,1,7,23,30,27.8,0.84,0.0684,0.67,106,967,913,1,16.1,106,967,0,913,0.28200000000000003,49.11,33.38,0.14,981,2.1,32,1.4000000000000001 +2013,1,8,0,30,30.3,0.85,0.0748,0.67,114,989,1043,1,15.700000000000001,114,989,0,1043,0.28200000000000003,41.27,20.13,0.14,980,2.1,28,1.6 +2013,1,8,1,30,31.6,0.91,0.0743,0.67,116,999,1106,1,15.200000000000001,116,999,0,1106,0.28200000000000003,37.19,7.8,0.14,979,2.2,27,1.7000000000000002 +2013,1,8,2,30,32.5,0.97,0.0763,0.67,116,998,1101,1,14.700000000000001,116,998,0,1101,0.281,34.230000000000004,9.26,0.14,977,2.2,26,1.8 +2013,1,8,3,30,32.9,1.01,0.0805,0.67,115,981,1025,1,14.4,115,981,0,1025,0.28200000000000003,32.730000000000004,21.900000000000002,0.14,976,2.2,26,1.8 +2013,1,8,4,30,32.9,1.05,0.0859,0.67,111,946,884,1,14.200000000000001,111,946,0,884,0.28200000000000003,32.410000000000004,35.18,0.14,975,2.2,27,1.8 +2013,1,8,5,30,32.300000000000004,1.08,0.093,0.67,104,884,690,1,14.200000000000001,104,884,0,690,0.28300000000000003,33.39,48.46,0.14,974,2.3000000000000003,27,1.7000000000000002 +2013,1,8,6,30,31.1,1.11,0.10300000000000001,0.67,92,777,461,0,14.200000000000001,92,777,0,461,0.28300000000000003,35.76,61.6,0.14,974,2.3000000000000003,29,1.7000000000000002 +2013,1,8,7,30,29,1.1500000000000001,0.116,0.67,70,572,223,0,14.5,70,572,0,223,0.28300000000000003,41.17,74.47,0.14,974,2.4000000000000004,37,1.7000000000000002 +2013,1,8,8,30,26.400000000000002,1.2,0.13290000000000002,0.67,21,138,29,0,16.2,21,138,0,29,0.28300000000000003,53.43,86.8,0.14,975,2.4000000000000004,41,1.6 +2013,1,8,9,30,24.700000000000003,1.27,0.155,0.67,0,0,0,0,16.8,0,0,0,0,0.28200000000000003,61.32,98.87,0.14,975,2.4000000000000004,37,1.6 +2013,1,8,10,30,23.700000000000003,1.37,0.182,0.67,0,0,0,0,17.1,0,0,0,0,0.281,66.37,109.77,0.14,975,2.4000000000000004,31,1.4000000000000001 +2013,1,8,11,30,22.900000000000002,1.44,0.20220000000000002,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.28,71.26,119.17,0.14,975,2.3000000000000003,23,1.2000000000000002 +2013,1,8,12,30,22.200000000000003,1.43,0.1971,0.67,0,0,0,0,17.6,0,0,0,0,0.279,75.16,126.28,0.14,975,2.3000000000000003,14,1.1 +2013,1,8,13,30,21.6,1.32,0.16590000000000002,0.67,0,0,0,0,17.5,0,0,0,0,0.279,77.65,130.08,0.14,974,2.3000000000000003,183,1 +2013,1,8,14,30,21.1,1.17,0.12860000000000002,0.67,0,0,0,0,17.3,0,0,0,0,0.279,79.03,129.82,0.14,973,2.2,352,1 +2013,1,8,15,30,20.5,1.02,0.10310000000000001,0.67,0,0,0,0,17.2,0,0,0,0,0.28,81.36,125.55,0.14,973,2.3000000000000003,344,1.1 +2013,1,8,16,30,20,0.89,0.0891,0.67,0,0,0,0,17.2,0,0,0,0,0.281,84.09,118.11,0.14,973,2.3000000000000003,338,1 +2013,1,8,17,30,19.6,0.8,0.0823,0.67,0,0,0,0,17.3,0,0,0,0,0.281,86.63,108.48,0.14,973,2.3000000000000003,334,1 +2013,1,8,18,30,19.6,0.74,0.081,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.281,87.3,97.43,0.14,973,2.3000000000000003,332,1.2000000000000002 +2013,1,8,19,30,20.8,0.72,0.0833,0.67,30,250,51,1,17.6,30,250,0,51,0.281,82.01,85.31,0.14,973,2.3000000000000003,330,1.9000000000000001 +2013,1,8,20,30,23.1,0.74,0.0825,0.67,69,643,258,0,17.7,69,643,0,258,0.281,71.69,72.88,0.14,973,2.3000000000000003,327,2.6 +2013,1,8,21,30,25.8,0.79,0.0796,0.67,88,815,496,0,17.5,88,815,0,496,0.28200000000000003,60.38,59.97,0.14,973,2.3000000000000003,324,2.7 +2013,1,8,22,30,28.700000000000003,0.8300000000000001,0.0791,0.67,101,903,719,0,17.2,101,903,0,719,0.28200000000000003,49.81,46.81,0.14,972,2.3000000000000003,320,2.6 +2013,1,8,23,30,30.1,0.88,0.0804,0.67,110,952,904,0,16.6,110,952,0,904,0.28300000000000003,44.160000000000004,33.51,0.14,972,2.3000000000000003,318,2.6 +2013,1,9,0,30,33.300000000000004,0.93,0.0959,0.67,124,961,1025,0,15.9,124,961,0,1025,0.28400000000000003,35.39,20.27,0.14,971,2.6,309,2.4000000000000004 +2013,1,9,1,30,34.800000000000004,0.99,0.1019,0.67,129,966,1086,0,15.600000000000001,129,966,0,1086,0.28400000000000003,31.79,7.96,0.14,970,2.8000000000000003,303,2.2 +2013,1,9,2,30,35.800000000000004,1.04,0.11270000000000001,0.67,134,954,1075,0,15.3,134,954,0,1075,0.28400000000000003,29.47,9.26,0.14,969,3,299,2.1 +2013,1,9,3,30,36.1,1.09,0.1218,0.67,134,927,995,0,15,134,927,0,995,0.28300000000000003,28.560000000000002,21.85,0.14,968,3.3000000000000003,297,2 +2013,1,9,4,30,35.9,1.12,0.1409,0.67,136,876,852,0,14.9,136,876,0,852,0.28400000000000003,28.650000000000002,35.12,0.14,968,3.5,300,1.8 +2013,1,9,5,30,35.2,1.1400000000000001,0.1502,0.67,126,806,661,0,14.9,126,806,0,661,0.28400000000000003,29.76,48.410000000000004,0.14,967,3.6,310,1.7000000000000002 +2013,1,9,6,30,34.1,1.1300000000000001,0.1476,0.67,106,704,441,0,15,106,704,0,441,0.28400000000000003,31.85,61.56,0.14,967,3.6,331,1.4000000000000001 +2013,1,9,7,30,32.1,1.12,0.1409,0.67,74,516,213,0,15.700000000000001,74,516,0,213,0.28400000000000003,37.32,74.43,0.14,968,3.7,184,1.2000000000000002 +2013,1,9,8,30,29.700000000000003,1.09,0.1406,0.67,21,114,28,0,18.900000000000002,21,114,0,28,0.28400000000000003,52.43,86.78,0.14,968,3.7,24,1.3 +2013,1,9,9,30,27.900000000000002,1.07,0.1424,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.28300000000000003,59.85,98.87,0.14,969,3.6,27,1.5 +2013,1,9,10,30,26.6,1.04,0.14450000000000002,0.67,0,0,0,0,19.3,0,0,0,0,0.28200000000000003,64.34,109.79,0.14,970,3.6,26,1.5 +2013,1,9,11,30,25.700000000000003,1.01,0.1477,0.67,0,0,0,0,18.8,0,0,0,0,0.281,65.78,119.23,0.14,970,3.6,19,1.4000000000000001 +2013,1,9,12,30,25.200000000000003,0.98,0.1499,0.67,0,0,0,7,18.400000000000002,0,0,0,0,0.28,65.83,126.37,0.14,970,3.6,10,1.3 +2013,1,9,13,30,24.5,0.96,0.1495,0.67,0,0,0,7,18,0,0,0,0,0.279,66.99,130.21,0.14,970,3.6,181,1.2000000000000002 +2013,1,9,14,30,23.8,0.9500000000000001,0.1477,0.67,0,0,0,6,17.8,0,0,0,0,0.279,69.25,129.98,0.14,970,3.6,354,1 +2013,1,9,15,30,23.200000000000003,0.9400000000000001,0.1476,0.67,0,0,0,7,17.8,0,0,0,0,0.279,71.68,125.73,0.14,970,3.6,350,1 +2013,1,9,16,30,22.8,0.9400000000000001,0.1489,0.67,0,0,0,7,17.900000000000002,0,0,0,0,0.28,74.04,118.28,0.14,971,3.6,178,0.7000000000000001 +2013,1,9,17,30,22.3,0.9400000000000001,0.14930000000000002,0.67,0,0,0,8,18,0,0,0,0,0.28200000000000003,76.88,108.64,0.14,972,3.6,31,0.4 +2013,1,9,18,30,22.1,0.93,0.1471,0.67,0,0,0,8,18.2,0,0,0,0,0.28200000000000003,78.49,97.59,0.14,973,3.6,51,0.30000000000000004 +2013,1,9,19,30,23.3,0.93,0.1436,0.67,30,159,43,0,18.5,30,159,0,43,0.28200000000000003,74.36,85.46000000000001,0.14,974,3.5,155,0.30000000000000004 +2013,1,9,20,30,25.5,0.93,0.1389,0.67,81,542,239,0,18.1,81,542,0,239,0.28200000000000003,63.74,73.02,0.14,974,3.5,266,0.5 +2013,1,9,21,30,28,0.9400000000000001,0.1336,0.67,106,729,469,0,17.8,106,729,0,469,0.281,53.76,60.11,0.14,975,3.5,291,0.4 +2013,1,9,22,30,30.3,0.9500000000000001,0.1291,0.67,121,833,690,0,17.400000000000002,121,833,0,690,0.281,46.160000000000004,46.94,0.14,974,3.4000000000000004,186,0.4 +2013,1,9,23,30,31.5,0.96,0.1262,0.67,131,891,873,0,17.2,131,891,0,873,0.281,42.46,33.65,0.14,974,3.4000000000000004,59,0.5 +2013,1,10,0,30,34,1.02,0.1252,0.67,137,924,1003,0,17,137,924,0,1003,0.281,36.5,20.41,0.14,974,3.4000000000000004,69,1.2000000000000002 +2013,1,10,1,30,35,1.08,0.1452,0.67,150,923,1063,0,17.1,150,923,0,1063,0.28,34.53,8.13,0.14,973,3.5,74,1.6 +2013,1,10,2,30,35.2,1.1300000000000001,0.1767,0.67,165,901,1054,0,17.3,165,901,0,1054,0.28,34.65,9.27,0.14,973,3.5,75,1.9000000000000001 +2013,1,10,3,30,34.9,1.1,0.1506,0.67,148,899,983,0,17.6,148,899,0,983,0.28,35.910000000000004,21.81,0.14,973,3.7,75,2.2 +2013,1,10,4,30,34.1,1.1400000000000001,0.18710000000000002,0.67,155,836,839,0,17.900000000000002,155,836,0,839,0.279,38.42,35.07,0.14,973,3.8000000000000003,74,2.5 +2013,1,10,5,30,32.5,1.18,0.2159,0.67,150,747,646,0,18.400000000000002,150,747,0,646,0.278,43.18,48.370000000000005,0.14,973,3.9000000000000004,73,2.8000000000000003 +2013,1,10,6,30,30.400000000000002,1.24,0.2389,0.67,131,617,425,1,19,131,617,0,425,0.277,50.71,61.52,0.14,974,3.9000000000000004,72,2.9000000000000004 +2013,1,10,7,30,28.1,1.29,0.2506,0.67,91,407,200,8,19.8,138,128,0,173,0.277,60.81,74.41,0.14,975,3.9000000000000004,71,2.8000000000000003 +2013,1,10,8,30,26,1.3,0.25780000000000003,0.67,19,63,23,8,20.5,19,63,5,23,0.276,71.8,86.77,0.14,976,3.9000000000000004,69,2.4000000000000004 +2013,1,10,9,30,24.8,1.27,0.2558,0.67,0,0,0,6,20.900000000000002,0,0,0,0,0.275,79.03,98.87,0.14,977,3.9000000000000004,68,2.1 +2013,1,10,10,30,24.200000000000003,1.2,0.23850000000000002,0.67,0,0,0,6,21,0,0,0,0,0.275,82.47,109.82000000000001,0.14,978,3.9000000000000004,67,1.9000000000000001 +2013,1,10,11,30,23.8,1.12,0.2132,0.67,0,0,0,6,21.1,0,0,0,0,0.274,84.71000000000001,119.29,0.14,978,3.8000000000000003,65,1.6 +2013,1,10,12,30,23.5,1.04,0.19440000000000002,0.67,0,0,0,6,21.1,0,0,0,0,0.274,86.4,126.47,0.14,978,3.9000000000000004,59,1.3 +2013,1,10,13,30,23.3,0.98,0.18460000000000001,0.67,0,0,0,6,21.1,0,0,0,0,0.273,87.49,130.35,0.14,978,3.9000000000000004,45,1 +2013,1,10,14,30,23,0.93,0.1819,0.67,0,0,0,7,21.1,0,0,0,0,0.272,89.04,130.14000000000001,0.14,978,4,33,0.8 +2013,1,10,15,30,22.700000000000003,0.91,0.17470000000000002,0.67,0,0,0,7,21.1,0,0,0,0,0.271,90.78,125.9,0.14,978,3.9000000000000004,28,0.7000000000000001 +2013,1,10,16,30,22.3,0.92,0.1557,0.67,0,0,0,4,21.1,0,0,0,0,0.271,93.07000000000001,118.46000000000001,0.14,978,3.8000000000000003,34,0.6000000000000001 +2013,1,10,17,30,21.900000000000002,0.9400000000000001,0.1383,0.67,0,0,0,0,21.200000000000003,0,0,0,0,0.271,95.76,108.81,0.14,979,3.6,42,0.6000000000000001 +2013,1,10,18,30,21.900000000000002,0.9500000000000001,0.1264,0.67,0,0,0,8,21.3,0,0,0,0,0.271,96.33,97.75,0.14,979,3.5,46,0.8 +2013,1,10,19,30,22.900000000000002,0.96,0.1183,0.67,28,183,42,0,21.5,28,183,0,42,0.271,92.06,85.61,0.14,980,3.4000000000000004,39,1.3 +2013,1,10,20,30,24.8,0.96,0.1116,0.67,73,578,241,3,21.8,143,75,0,165,0.271,83.61,73.17,0.14,980,3.4000000000000004,25,1.7000000000000002 +2013,1,10,21,30,27.1,0.99,0.1066,0.67,96,759,472,1,21.6,96,759,0,472,0.271,71.81,60.25,0.14,980,3.5,18,1.9000000000000001 +2013,1,10,22,30,29.400000000000002,1.03,0.1046,0.67,110,853,691,0,20.6,110,853,0,691,0.271,59.31,47.08,0.14,980,3.6,19,1.8 +2013,1,10,23,30,30.5,1.07,0.10940000000000001,0.67,122,903,872,1,20,122,903,0,872,0.271,53.6,33.78,0.14,980,3.6,20,1.7000000000000002 +2013,1,11,0,30,33.1,1.05,0.14500000000000002,0.67,146,903,992,1,19.6,146,903,0,992,0.269,45.13,20.54,0.14,979,3.8000000000000003,23,1.5 +2013,1,11,1,30,34.4,1.06,0.14800000000000002,0.67,151,914,1056,0,19.3,151,914,0,1056,0.269,41.09,8.31,0.14,979,3.9000000000000004,27,1.5 +2013,1,11,2,30,35.1,1.06,0.1506,0.67,152,912,1052,1,19,152,912,0,1052,0.268,38.84,9.290000000000001,0.14,978,3.9000000000000004,32,1.6 +2013,1,11,3,30,35.300000000000004,1.03,0.1401,0.67,143,902,981,0,18.8,143,902,0,981,0.268,37.84,21.77,0.14,977,4,39,1.7000000000000002 +2013,1,11,4,30,35,1.01,0.14200000000000002,0.67,138,866,847,0,18.6,138,866,0,847,0.269,38.07,35.03,0.14,977,4,45,1.8 +2013,1,11,5,30,34.2,0.99,0.14400000000000002,0.67,126,803,660,0,18.6,126,803,0,660,0.271,39.68,48.33,0.14,977,4,50,2 +2013,1,11,6,30,32.7,0.98,0.1454,0.67,107,696,440,0,18.6,107,696,0,440,0.272,43.410000000000004,61.49,0.14,977,4.1000000000000005,54,2.3000000000000003 +2013,1,11,7,30,30.400000000000002,0.97,0.14450000000000002,0.67,77,501,212,0,19.1,77,501,0,212,0.273,50.980000000000004,74.38,0.14,978,4.1000000000000005,54,2.3000000000000003 +2013,1,11,8,30,28.1,0.9500000000000001,0.1386,0.67,22,106,28,0,20.3,22,106,0,28,0.274,62.660000000000004,86.76,0.14,979,4.1000000000000005,51,2.1 +2013,1,11,9,30,26.5,0.92,0.13470000000000001,0.67,0,0,0,0,21,0,0,0,0,0.274,72,98.88,0.14,980,4.1000000000000005,47,2.1 +2013,1,11,10,30,25.5,0.9,0.13440000000000002,0.67,0,0,0,0,21.3,0,0,0,0,0.274,77.46000000000001,109.86,0.14,980,4,42,2.1 +2013,1,11,11,30,24.8,0.87,0.1366,0.67,0,0,0,0,21.5,0,0,0,0,0.274,82.11,119.36,0.14,981,4,35,1.9000000000000001 +2013,1,11,12,30,24.3,0.85,0.1396,0.67,0,0,0,0,21.700000000000003,0,0,0,0,0.274,85.28,126.57000000000001,0.14,980,4,28,1.6 +2013,1,11,13,30,24,0.84,0.14150000000000001,0.67,0,0,0,0,21.700000000000003,0,0,0,0,0.274,87.04,130.49,0.14,980,3.9000000000000004,21,1.4000000000000001 +2013,1,11,14,30,23.700000000000003,0.84,0.1414,0.67,0,0,0,0,21.700000000000003,0,0,0,0,0.275,88.58,130.31,0.14,980,3.9000000000000004,15,1.1 +2013,1,11,15,30,23.400000000000002,0.85,0.13920000000000002,0.67,0,0,0,0,21.700000000000003,0,0,0,0,0.275,89.92,126.08,0.14,979,3.9000000000000004,11,0.8 +2013,1,11,16,30,23.1,0.86,0.13570000000000002,0.67,0,0,0,0,21.6,0,0,0,0,0.276,91.29,118.64,0.14,980,3.8000000000000003,5,0.6000000000000001 +2013,1,11,17,30,22.8,0.88,0.13290000000000002,0.67,0,0,0,1,21.5,0,0,0,0,0.278,92.5,108.99000000000001,0.14,980,3.8000000000000003,179,0.6000000000000001 +2013,1,11,18,30,22.900000000000002,0.9,0.1318,0.67,0,0,0,0,21.5,0,0,0,0,0.279,91.75,97.92,0.14,981,3.7,350,0.7000000000000001 +2013,1,11,19,30,24.1,0.91,0.132,0.67,28,155,40,1,21.400000000000002,28,155,0,40,0.28,84.9,85.76,0.14,981,3.7,337,1.2000000000000002 +2013,1,11,20,30,26.3,0.9400000000000001,0.1317,0.67,78,542,234,0,21.1,78,542,0,234,0.28,73.14,73.32000000000001,0.14,982,3.7,327,1.7000000000000002 +2013,1,11,21,30,28.700000000000003,0.97,0.1307,0.67,105,727,464,1,20.700000000000003,105,727,0,464,0.28,62.14,60.39,0.14,981,3.7,320,1.7000000000000002 +2013,1,11,22,30,31.200000000000003,0.99,0.1291,0.67,120,826,682,0,20.3,120,826,0,682,0.28,52.51,47.21,0.14,981,3.7,311,1.5 +2013,1,11,23,30,32.5,1.01,0.1265,0.67,131,885,865,0,20,131,885,0,865,0.279,47.78,33.92,0.14,981,3.7,306,1.4000000000000001 +2013,1,12,0,30,35.4,1.03,0.1072,0.67,128,932,1000,0,19.700000000000003,128,932,0,1000,0.278,39.77,20.69,0.14,979,3.7,290,1.1 +2013,1,12,1,30,36.7,1.05,0.10400000000000001,0.67,129,950,1069,0,19.200000000000003,129,950,0,1069,0.278,36.09,8.48,0.14,979,3.6,276,0.9 +2013,1,12,2,30,37.5,1.06,0.1024,0.67,127,951,1066,0,18.8,127,951,0,1066,0.277,33.5,9.32,0.14,978,3.6,259,0.7000000000000001 +2013,1,12,3,30,37.800000000000004,1.06,0.1058,0.67,126,934,993,0,18.5,126,934,0,993,0.277,32.5,21.740000000000002,0.14,977,3.6,231,0.6000000000000001 +2013,1,12,4,30,37.4,1.05,0.10990000000000001,0.67,121,897,855,0,18.5,121,897,0,855,0.277,33.2,34.99,0.14,976,3.7,166,0.5 +2013,1,12,5,30,36.6,1.02,0.1165,0.67,113,833,667,1,18.6,113,833,0,667,0.277,34.93,48.29,0.14,976,3.7,98,0.7000000000000001 +2013,1,12,6,30,35.2,1.08,0.1772,0.67,115,670,435,6,18.900000000000002,124,23,0,135,0.276,38.39,61.46,0.14,977,3.8000000000000003,66,1.1 +2013,1,12,7,30,32.800000000000004,1.06,0.1758,0.67,82,471,209,8,19.6,100,20,0,105,0.275,45.89,74.37,0.14,977,3.8000000000000003,50,1.5 +2013,1,12,8,30,30.200000000000003,1.04,0.1689,0.67,21,90,26,7,21.8,16,0,3,16,0.274,60.94,86.76,0.14,978,3.8000000000000003,43,1.7000000000000002 +2013,1,12,9,30,28.400000000000002,1.03,0.16160000000000002,0.67,0,0,0,7,22.1,0,0,0,0,0.273,68.60000000000001,98.9,0.14,979,3.8000000000000003,42,1.7000000000000002 +2013,1,12,10,30,27.200000000000003,1.01,0.1592,0.67,0,0,0,7,21.900000000000002,0,0,0,0,0.273,72.63,109.9,0.14,979,3.9000000000000004,40,1.7000000000000002 +2013,1,12,11,30,26.3,1,0.15940000000000001,0.67,0,0,0,4,21.8,0,0,0,0,0.271,76.34,119.43,0.14,980,3.9000000000000004,37,1.6 +2013,1,12,12,30,25.6,0.98,0.1602,0.67,0,0,0,0,21.6,0,0,0,0,0.271,78.63,126.68,0.14,979,4,32,1.5 +2013,1,12,13,30,25,0.97,0.1587,0.67,0,0,0,0,21.400000000000002,0,0,0,0,0.27,80.44,130.64000000000001,0.14,979,3.9000000000000004,27,1.5 +2013,1,12,14,30,24.400000000000002,0.96,0.15460000000000002,0.67,0,0,0,1,21.200000000000003,0,0,0,0,0.27,82.45,130.49,0.14,978,3.9000000000000004,23,1.3 +2013,1,12,15,30,24,0.96,0.1484,0.67,0,0,0,0,21.1,0,0,0,0,0.27,83.87,126.27,0.14,978,3.8000000000000003,22,1.1 +2013,1,12,16,30,23.5,0.9500000000000001,0.14250000000000002,0.67,0,0,0,0,21,0,0,0,0,0.27,85.97,118.82000000000001,0.14,978,3.7,20,0.8 +2013,1,12,17,30,23.1,0.9500000000000001,0.13820000000000002,0.67,0,0,0,0,20.900000000000002,0,0,0,0,0.27,87.66,109.16,0.14,979,3.6,15,0.6000000000000001 +2013,1,12,18,30,22.900000000000002,0.9500000000000001,0.13490000000000002,0.67,0,0,0,0,20.8,0,0,0,0,0.27,88.12,98.08,0.14,979,3.5,183,0.7000000000000001 +2013,1,12,19,30,23.8,0.9500000000000001,0.13140000000000002,0.67,27,154,38,0,20.700000000000003,27,154,0,38,0.269,82.7,85.91,0.14,980,3.4000000000000004,343,1.2000000000000002 +2013,1,12,20,30,25.8,0.98,0.12510000000000002,0.67,76,555,234,0,20.3,76,555,0,234,0.268,71.49,73.46000000000001,0.14,980,3.4000000000000004,326,1.4000000000000001 +2013,1,12,21,30,28.3,1.01,0.1189,0.67,100,744,466,0,19.8,100,744,0,466,0.268,60.17,60.53,0.14,980,3.4000000000000004,319,1.3 +2013,1,12,22,30,31.1,1.03,0.11560000000000001,0.67,115,846,688,0,19.5,115,846,0,688,0.267,49.99,47.35,0.14,980,3.3000000000000003,319,1.1 +2013,1,12,23,30,32.5,1.05,0.11410000000000001,0.67,125,903,873,0,19,125,903,0,873,0.266,44.89,34.05,0.14,979,3.3000000000000003,320,0.9 +2013,1,13,0,30,35.9,1.05,0.1197,0.67,133,929,1002,0,18.5,133,929,0,1002,0.265,36.03,20.830000000000002,0.14,978,3.3000000000000003,187,0.7000000000000001 +2013,1,13,1,30,37.300000000000004,1.07,0.11620000000000001,0.67,135,948,1072,0,17.6,135,948,0,1072,0.264,31.57,8.66,0.14,977,3.2,35,0.9 +2013,1,13,2,30,38,1.08,0.1136,0.67,133,950,1071,0,16.8,133,950,0,1071,0.263,28.810000000000002,9.36,0.14,976,3.2,44,1.3 +2013,1,13,3,30,38.1,1.09,0.1096,0.67,128,938,999,0,16.3,128,938,0,999,0.264,27.76,21.71,0.14,976,3.2,45,1.6 +2013,1,13,4,30,37.6,1.09,0.10930000000000001,0.67,120,906,863,0,16,120,906,0,863,0.264,28.04,34.96,0.14,975,3.2,44,1.9000000000000001 +2013,1,13,5,30,36.6,1.09,0.10830000000000001,0.67,110,851,676,0,15.8,110,851,0,676,0.265,29.23,48.26,0.14,975,3.2,42,2.1 +2013,1,13,6,30,35.1,1.08,0.1067,0.67,93,755,454,0,15.8,93,755,0,454,0.266,31.67,61.43,0.14,975,3.2,41,2.3000000000000003 +2013,1,13,7,30,32.6,1.08,0.1061,0.67,67,570,221,0,16.1,67,570,0,221,0.267,37.2,74.35000000000001,0.14,975,3.2,41,2.1 +2013,1,13,8,30,29.900000000000002,1.09,0.108,0.67,21,151,30,0,17.7,21,151,0,30,0.268,47.86,86.76,0.14,976,3.2,40,1.8 +2013,1,13,9,30,27.900000000000002,1.12,0.11280000000000001,0.67,0,0,0,0,18.3,0,0,0,0,0.267,56.09,98.92,0.14,976,3.3000000000000003,36,1.6 +2013,1,13,10,30,26.700000000000003,1.1500000000000001,0.12010000000000001,0.67,0,0,0,0,18.5,0,0,0,0,0.267,60.68,109.95,0.14,976,3.3000000000000003,31,1.5 +2013,1,13,11,30,25.700000000000003,1.18,0.12760000000000002,0.67,0,0,0,7,18.400000000000002,0,0,0,0,0.266,64.14,119.51,0.14,976,3.3000000000000003,24,1.5 +2013,1,13,12,30,24.900000000000002,1.19,0.132,0.67,0,0,0,7,18.2,0,0,0,0,0.266,66.55,126.8,0.14,976,3.3000000000000003,17,1.4000000000000001 +2013,1,13,13,30,24.3,1.18,0.1307,0.67,0,0,0,7,18,0,0,0,0,0.266,68.1,130.79,0.14,975,3.3000000000000003,10,1.2000000000000002 +2013,1,13,14,30,23.700000000000003,1.1500000000000001,0.1262,0.67,0,0,0,8,17.8,0,0,0,0,0.265,69.41,130.67000000000002,0.14,974,3.4000000000000004,178,1 +2013,1,13,15,30,23.200000000000003,1.12,0.1265,0.67,0,0,0,0,17.6,0,0,0,0,0.265,70.81,126.46000000000001,0.14,974,3.4000000000000004,340,0.7000000000000001 +2013,1,13,16,30,22.8,1.11,0.1337,0.67,0,0,0,8,17.5,0,0,0,0,0.264,72.17,119.01,0.14,975,3.6,323,0.7000000000000001 +2013,1,13,17,30,22.400000000000002,1.11,0.1463,0.67,0,0,0,8,17.5,0,0,0,0,0.264,73.66,109.34,0.14,976,3.8000000000000003,311,0.7000000000000001 +2013,1,13,18,30,22.5,1.12,0.1648,0.67,0,0,0,8,17.5,0,0,0,0,0.263,73.35000000000001,98.25,0.14,977,4,292,0.7000000000000001 +2013,1,13,19,30,23.400000000000002,1.12,0.1884,0.67,27,106,34,8,17.6,26,37,3,29,0.263,69.92,86.07000000000001,0.14,978,4.3,271,1 +2013,1,13,20,30,25.1,1.1300000000000001,0.2159,0.67,93,441,217,8,17.6,143,98,0,171,0.263,63.29,73.61,0.14,979,4.6000000000000005,253,1.3 +2013,1,13,21,30,27.1,1.1300000000000001,0.23290000000000002,0.67,135,618,438,8,17.5,279,75,0,316,0.263,55.660000000000004,60.67,0.14,979,4.800000000000001,232,1.4000000000000001 +2013,1,13,22,30,29.1,1.1300000000000001,0.24250000000000002,0.67,163,721,651,0,17.3,163,721,0,651,0.262,49.04,47.480000000000004,0.14,978,4.9,203,1.2000000000000002 +2013,1,13,23,30,30,1.1400000000000001,0.24580000000000002,0.67,181,785,831,8,17.400000000000002,569,188,0,725,0.262,46.89,34.18,0.14,978,4.9,184,1 +2013,1,14,0,30,31.400000000000002,1.1300000000000001,0.3211,0.67,224,774,947,8,17.7,577,39,0,613,0.262,43.96,20.97,0.14,977,5,120,1.2000000000000002 +2013,1,14,1,30,31.6,1.08,0.3015,0.67,222,805,1018,8,18,635,45,0,679,0.262,44.28,8.84,0.14,976,4.800000000000001,102,1.6 +2013,1,14,2,30,31.6,1.03,0.2793,0.67,216,819,1024,8,18.3,162,29,0,190,0.263,45.32,9.41,0.14,976,4.5,104,2.1 +2013,1,14,3,30,31.1,0.99,0.3904,0.67,259,733,940,6,18.8,229,32,0,259,0.265,47.93,21.7,0.14,976,4.3,114,2.8000000000000003 +2013,1,14,4,30,29.900000000000002,0.9400000000000001,0.5266000000000001,0.67,294,609,793,6,19.3,236,29,0,260,0.268,52.980000000000004,34.93,0.14,976,4.2,117,3.4000000000000004 +2013,1,14,5,30,28.200000000000003,0.86,0.6125,0.67,287,478,605,7,19.6,189,27,0,207,0.272,59.79,48.230000000000004,0.14,977,4.1000000000000005,118,3.8000000000000003 +2013,1,14,6,30,26.200000000000003,0.78,0.5811000000000001,0.67,225,359,397,3,19.700000000000003,77,16,0,85,0.275,67.34,61.410000000000004,0.14,979,4,119,3.8000000000000003 +2013,1,14,7,30,24.200000000000003,0.68,0.46780000000000005,0.67,130,214,188,3,19.400000000000002,78,11,0,81,0.276,74.55,74.34,0.14,980,3.9000000000000004,121,3.6 +2013,1,14,8,30,22.700000000000003,0.58,0.3558,0.67,19,11,20,3,19,10,0,3,10,0.276,79.88,86.76,0.14,981,3.8000000000000003,124,3.2 +2013,1,14,9,30,21.900000000000002,0.52,0.30110000000000003,0.67,0,0,0,3,18.7,0,0,0,0,0.276,81.86,98.95,0.14,982,3.7,127,3 +2013,1,14,10,30,21.400000000000002,0.49,0.2761,0.67,0,0,0,1,18.2,0,0,0,0,0.275,82.22,110,0.14,983,3.6,130,2.9000000000000004 +2013,1,14,11,30,20.900000000000002,0.46,0.2707,0.67,0,0,0,3,17.900000000000002,0,0,0,0,0.274,83.16,119.60000000000001,0.14,983,3.5,131,2.7 +2013,1,14,12,30,20.5,0.45,0.2755,0.67,0,0,0,1,17.7,0,0,0,0,0.272,84.07000000000001,126.93,0.14,983,3.5,131,2.6 +2013,1,14,13,30,20.200000000000003,0.44,0.2776,0.67,0,0,0,3,17.5,0,0,0,0,0.271,84.46000000000001,130.96,0.14,983,3.4000000000000004,130,2.5 +2013,1,14,14,30,20,0.43,0.2796,0.67,0,0,0,3,17.2,0,0,0,0,0.27,84.13,130.86,0.14,982,3.3000000000000003,130,2.5 +2013,1,14,15,30,19.8,0.44,0.27440000000000003,0.67,0,0,0,3,17,0,0,0,0,0.27,83.8,126.66,0.14,982,3.3000000000000003,131,2.4000000000000004 +2013,1,14,16,30,19.700000000000003,0.45,0.2636,0.67,0,0,0,3,16.7,0,0,0,0,0.271,82.95,119.2,0.14,983,3.2,131,2.3000000000000003 +2013,1,14,17,30,19.700000000000003,0.45,0.2487,0.67,0,0,0,3,16.5,0,0,0,0,0.272,81.60000000000001,109.52,0.14,983,3.1,130,2.2 +2013,1,14,18,30,19.8,0.48,0.23,0.67,0,0,0,3,16.3,0,0,0,0,0.273,80.01,98.42,0.14,984,3,128,2.1 +2013,1,14,19,30,20.6,0.5,0.2059,0.67,28,56,32,3,16.1,3,0,3,3,0.274,75.37,86.22,0.14,984,3,124,2.5 +2013,1,14,20,30,22.200000000000003,0.53,0.18730000000000002,0.67,96,452,222,3,15.9,16,0,0,16,0.274,67.33,73.76,0.14,984,2.9000000000000004,117,3 +2013,1,14,21,30,24,0.56,0.1714,0.67,126,677,456,3,15.3,153,23,0,164,0.274,58.21,60.81,0.14,984,2.9000000000000004,112,3.2 +2013,1,14,22,30,25.700000000000003,0.5700000000000001,0.1623,0.67,143,797,680,3,14.700000000000001,274,25,0,291,0.273,50.5,47.62,0.14,984,2.8000000000000003,108,3.1 +2013,1,14,23,30,26.5,0.56,0.1608,0.67,156,861,867,3,14.3,363,24,0,383,0.272,47.06,34.32,0.14,984,2.8000000000000003,107,3.1 +2013,1,15,0,30,28.1,0.72,0.3105,0.67,235,793,975,2,14.100000000000001,510,26,0,534,0.271,42.39,21.11,0.14,983,2.8000000000000003,104,3 +2013,1,15,1,30,28.6,0.74,0.3042,0.67,238,815,1042,3,14.100000000000001,481,22,0,503,0.271,41.17,9.03,0.14,982,2.9000000000000004,102,3 +2013,1,15,2,30,28.700000000000003,0.76,0.2859,0.67,228,827,1044,1,14.200000000000001,228,827,0,1044,0.271,41.24,9.47,0.14,982,2.9000000000000004,100,2.9000000000000004 +2013,1,15,3,30,28.5,0.78,0.2277,0.67,194,849,983,3,14.4,541,31,0,570,0.272,42.160000000000004,21.68,0.14,981,2.9000000000000004,98,2.9000000000000004 +2013,1,15,4,30,27.900000000000002,0.77,0.21480000000000002,0.67,178,819,849,2,14.600000000000001,520,60,0,569,0.273,44.22,34.9,0.14,981,2.9000000000000004,97,3 +2013,1,15,5,30,27,0.75,0.19640000000000002,0.67,154,765,663,3,14.8,280,25,0,296,0.274,47.22,48.21,0.14,981,3,96,3 +2013,1,15,6,30,25.700000000000003,0.74,0.1859,0.67,127,661,443,1,15,127,661,0,443,0.276,51.74,61.4,0.14,982,3,94,2.9000000000000004 +2013,1,15,7,30,24.200000000000003,0.72,0.1753,0.67,88,465,214,3,15.3,127,61,0,144,0.278,57.480000000000004,74.34,0.14,983,3,92,2.7 +2013,1,15,8,30,22.8,0.71,0.1652,0.67,24,75,28,3,15.600000000000001,17,0,3,17,0.279,63.71,86.77,0.14,984,3.1,90,2.3000000000000003 +2013,1,15,9,30,21.900000000000002,0.74,0.1542,0.67,0,0,0,3,15.8,0,0,0,0,0.28,68.42,98.98,0.14,984,3.1,88,2 +2013,1,15,10,30,21.400000000000002,0.78,0.1444,0.67,0,0,0,3,16,0,0,0,0,0.28,71.31,110.06,0.14,985,3.1,88,1.7000000000000002 +2013,1,15,11,30,20.900000000000002,0.8,0.1389,0.67,0,0,0,3,16.1,0,0,0,0,0.28,74.2,119.69,0.14,984,3.1,87,1.4000000000000001 +2013,1,15,12,30,20.6,0.81,0.13470000000000001,0.67,0,0,0,3,16.3,0,0,0,0,0.279,76.2,127.06,0.14,984,3.1,86,1.1 +2013,1,15,13,30,20.200000000000003,0.8,0.1312,0.67,0,0,0,3,16.3,0,0,0,0,0.278,78.44,131.13,0.14,983,3,88,0.9 +2013,1,15,14,30,19.900000000000002,0.79,0.1308,0.67,0,0,0,3,16.400000000000002,0,0,0,0,0.277,80.10000000000001,131.05,0.14,983,3,96,0.7000000000000001 +2013,1,15,15,30,19.5,0.78,0.1327,0.67,0,0,0,3,16.3,0,0,0,0,0.275,82.01,126.86,0.14,982,3,104,0.5 +2013,1,15,16,30,19.200000000000003,0.79,0.13240000000000002,0.67,0,0,0,1,16.3,0,0,0,0,0.275,83.27,119.4,0.14,983,2.9000000000000004,109,0.5 +2013,1,15,17,30,18.8,0.81,0.12860000000000002,0.67,0,0,0,1,16.2,0,0,0,0,0.275,84.74,109.71000000000001,0.14,983,2.9000000000000004,112,0.5 +2013,1,15,18,30,19,0.84,0.12510000000000002,0.67,0,0,0,0,16,0,0,0,0,0.275,82.98,98.59,0.14,983,2.8000000000000003,114,0.7000000000000001 +2013,1,15,19,30,20.400000000000002,0.88,0.1232,0.67,26,142,35,1,16,26,142,0,35,0.276,75.74,86.37,0.14,984,2.8000000000000003,107,1.1 +2013,1,15,20,30,22.700000000000003,0.9,0.1232,0.67,76,555,230,1,15.600000000000001,76,555,0,230,0.277,64.24,73.91,0.14,984,2.8000000000000003,96,1.5 +2013,1,15,21,30,24.8,0.9,0.12490000000000001,0.67,104,743,465,1,14.8,104,743,0,465,0.278,53.88,60.95,0.14,984,2.7,92,1.5 +2013,1,15,22,30,26.700000000000003,0.91,0.1247,0.67,121,843,688,1,14.5,121,843,0,688,0.278,47.050000000000004,47.76,0.14,983,2.7,95,1.5 +2013,1,15,23,30,27.6,0.92,0.12350000000000001,0.67,133,904,878,1,14.4,133,904,0,878,0.278,44.32,34.45,0.14,983,2.6,98,1.6 +2013,1,16,0,30,29.700000000000003,0.9400000000000001,0.16640000000000002,0.67,162,906,1006,1,14.3,162,906,0,1006,0.278,39.08,21.26,0.14,982,2.5,105,1.8 +2013,1,16,1,30,30.700000000000003,0.9500000000000001,0.1558,0.67,159,930,1077,1,14.200000000000001,159,930,0,1077,0.277,36.64,9.22,0.14,981,2.5,102,2.1 +2013,1,16,2,30,31.400000000000002,0.9500000000000001,0.1421,0.67,152,942,1081,1,14,152,942,0,1081,0.276,34.78,9.540000000000001,0.14,981,2.4000000000000004,96,2.3000000000000003 +2013,1,16,3,30,31.400000000000002,0.9500000000000001,0.09960000000000001,0.67,126,959,1018,1,13.8,126,959,0,1018,0.276,34.38,21.68,0.14,980,2.4000000000000004,89,2.5 +2013,1,16,4,30,31,0.93,0.0978,0.67,119,927,879,0,13.8,119,927,0,879,0.276,35.160000000000004,34.88,0.14,980,2.5,83,2.7 +2013,1,16,5,30,29.900000000000002,0.91,0.097,0.67,109,873,690,0,13.9,109,873,0,690,0.275,37.64,48.19,0.14,980,2.5,78,2.8000000000000003 +2013,1,16,6,30,28.3,0.9,0.0954,0.67,92,778,465,0,14.100000000000001,92,778,0,465,0.275,41.800000000000004,61.39,0.14,980,2.5,72,2.8000000000000003 +2013,1,16,7,30,26.3,0.9,0.0915,0.67,67,599,229,0,14.4,67,599,0,229,0.275,48.01,74.34,0.14,981,2.5,66,2.6 +2013,1,16,8,30,24.400000000000002,0.92,0.09000000000000001,0.67,22,169,32,0,14.8,22,169,0,32,0.275,55.14,86.79,0.14,981,2.6,62,2.1 +2013,1,16,9,30,23,0.96,0.0925,0.67,0,0,0,0,15.200000000000001,0,0,0,0,0.276,61.46,99.02,0.14,982,2.6,62,1.7000000000000002 +2013,1,16,10,30,22.1,1.01,0.0988,0.67,0,0,0,0,15.4,0,0,0,0,0.277,65.72,110.13,0.14,982,2.7,63,1.3 +2013,1,16,11,30,21.3,1.05,0.10700000000000001,0.67,0,0,0,0,15.5,0,0,0,0,0.278,69.47,119.79,0.14,982,2.8000000000000003,62,1 +2013,1,16,12,30,20.700000000000003,1.07,0.11380000000000001,0.67,0,0,0,0,15.5,0,0,0,0,0.278,72.35000000000001,127.2,0.14,982,2.9000000000000004,59,0.7000000000000001 +2013,1,16,13,30,20.200000000000003,1.09,0.1187,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.278,74.68,131.3,0.14,981,2.9000000000000004,56,0.5 +2013,1,16,14,30,19.8,1.1,0.12250000000000001,0.67,0,0,0,1,15.600000000000001,0,0,0,0,0.278,76.65,131.25,0.14,981,2.9000000000000004,52,0.4 +2013,1,16,15,30,19.400000000000002,1.11,0.12480000000000001,0.67,0,0,0,0,15.700000000000001,0,0,0,0,0.277,78.98,127.07000000000001,0.14,980,2.9000000000000004,48,0.4 +2013,1,16,16,30,19.200000000000003,1.12,0.1236,0.67,0,0,0,0,15.8,0,0,0,0,0.275,80.83,119.60000000000001,0.14,980,2.9000000000000004,44,0.4 +2013,1,16,17,30,19,1.1400000000000001,0.1227,0.67,0,0,0,0,16,0,0,0,0,0.272,82.82000000000001,109.89,0.14,981,2.9000000000000004,39,0.4 +2013,1,16,18,30,19.1,1.1500000000000001,0.12480000000000001,0.67,0,0,0,0,16.2,0,0,0,0,0.269,83.06,98.76,0.14,981,2.9000000000000004,29,0.4 +2013,1,16,19,30,20.3,1.16,0.1283,0.67,24,146,33,1,16.3,24,146,0,33,0.267,77.8,86.52,0.14,982,3,29,0.5 +2013,1,16,20,30,22.5,1.17,0.13240000000000002,0.67,76,546,226,1,16.2,76,546,0,226,0.265,67.67,74.06,0.14,982,3,44,0.6000000000000001 +2013,1,16,21,30,24.8,1.18,0.13670000000000002,0.67,106,730,459,0,16,106,730,0,459,0.264,58.13,61.1,0.14,982,3,59,0.7000000000000001 +2013,1,16,22,30,27,1.21,0.137,0.67,124,833,683,0,15.9,124,833,0,683,0.263,50.63,47.89,0.14,981,2.9000000000000004,73,0.9 +2013,1,16,23,30,28.1,1.24,0.1343,0.67,135,894,870,0,15.8,135,894,0,870,0.263,47.09,34.59,0.14,981,2.9000000000000004,79,1 +2013,1,17,0,30,30.8,1.21,0.1121,0.67,131,943,1009,0,15.5,131,943,0,1009,0.263,39.6,21.400000000000002,0.14,980,2.9000000000000004,88,1.6 +2013,1,17,1,30,32,1.23,0.1135,0.67,135,956,1078,0,15.100000000000001,135,956,0,1078,0.263,36,9.41,0.14,979,2.9000000000000004,85,2 +2013,1,17,2,30,32.5,1.22,0.1143,0.67,135,953,1075,0,14.700000000000001,135,953,0,1075,0.263,34.19,9.620000000000001,0.14,979,3,80,2.3000000000000003 +2013,1,17,3,30,32.5,1.19,0.1044,0.67,127,946,1006,0,14.5,127,946,0,1006,0.264,33.72,21.68,0.14,978,3,75,2.6 +2013,1,17,4,30,31.900000000000002,1.17,0.10310000000000001,0.67,120,916,871,0,14.4,120,916,0,871,0.265,34.76,34.87,0.14,978,3,72,2.7 +2013,1,17,5,30,30.8,1.16,0.1015,0.67,109,862,683,0,14.5,109,862,0,683,0.265,37.1,48.18,0.14,978,3,69,2.7 +2013,1,17,6,30,29.200000000000003,1.16,0.1019,0.67,93,765,459,0,14.600000000000001,93,765,0,459,0.265,40.89,61.39,0.14,978,3,67,2.6 +2013,1,17,7,30,27.200000000000003,1.17,0.1027,0.67,68,579,225,0,14.700000000000001,68,579,0,225,0.265,46.51,74.35000000000001,0.14,979,3.1,65,2.4000000000000004 +2013,1,17,8,30,25.200000000000003,1.19,0.1062,0.67,22,156,31,0,15.100000000000001,22,156,0,31,0.265,53.54,86.82000000000001,0.14,979,3.2,63,2 +2013,1,17,9,30,23.8,1.2,0.1139,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.263,60.19,99.07000000000001,0.14,980,3.3000000000000003,62,1.8 +2013,1,17,10,30,22.900000000000002,1.2,0.1269,0.67,0,0,0,0,16.1,0,0,0,0,0.262,65.65,110.2,0.14,981,3.4000000000000004,57,1.7000000000000002 +2013,1,17,11,30,22.400000000000002,1.18,0.1418,0.67,0,0,0,0,16.5,0,0,0,0,0.26,69.42,119.9,0.14,981,3.5,50,1.5 +2013,1,17,12,30,22,1.17,0.15330000000000002,0.67,0,0,0,0,16.8,0,0,0,0,0.259,72.18,127.34,0.14,980,3.5,40,1.4000000000000001 +2013,1,17,13,30,21.700000000000003,1.16,0.1583,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.258,74.05,131.49,0.14,979,3.5,30,1.3 +2013,1,17,14,30,21.3,1.16,0.1526,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.257,76.17,131.46,0.14,979,3.5,24,1 +2013,1,17,15,30,20.700000000000003,1.17,0.1403,0.67,0,0,0,0,17,0,0,0,0,0.257,79.21000000000001,127.28,0.14,978,3.4000000000000004,20,0.7000000000000001 +2013,1,17,16,30,20.200000000000003,1.18,0.1318,0.67,0,0,0,0,17.1,0,0,0,0,0.257,82.15,119.8,0.14,978,3.3000000000000003,18,0.4 +2013,1,17,17,30,19.700000000000003,1.19,0.1317,0.67,0,0,0,0,17.1,0,0,0,0,0.258,85.21000000000001,110.08,0.14,978,3.3000000000000003,17,0.4 +2013,1,17,18,30,19.6,1.21,0.1399,0.67,0,0,0,0,17.2,0,0,0,0,0.258,86.25,98.94,0.14,979,3.2,187,0.5 +2013,1,17,19,30,20.700000000000003,1.24,0.1563,0.67,23,118,30,1,17.3,23,118,0,30,0.259,80.96000000000001,86.68,0.14,980,3.2,350,0.8 +2013,1,17,20,30,23,1.27,0.1819,0.67,86,487,218,1,17.1,86,487,0,218,0.259,69.22,74.21000000000001,0.14,980,3.1,343,1 +2013,1,17,21,30,25.400000000000002,1.33,0.21380000000000002,0.67,129,656,445,1,16.2,129,656,0,445,0.26,56.81,61.24,0.14,980,3.1,343,1 +2013,1,17,22,30,27.900000000000002,1.37,0.2389,0.67,162,748,662,1,15.200000000000001,162,748,0,662,0.261,46,48.03,0.14,980,3.1,337,0.9 +2013,1,17,23,30,29.200000000000003,1.4000000000000001,0.2432,0.67,181,812,848,1,14.3,181,812,0,848,0.261,40.33,34.730000000000004,0.14,979,3.1,331,0.8 +2013,1,18,0,30,33,1.41,0.1826,0.67,163,892,993,1,14,163,892,0,993,0.262,31.7,21.55,0.15,978,3,247,0.4 +2013,1,18,1,30,34.7,1.43,0.1781,0.67,165,912,1064,1,13.9,165,912,0,1064,0.262,28.650000000000002,9.61,0.15,976,3,169,0.5 +2013,1,18,2,30,35.7,1.44,0.1751,0.67,164,914,1064,0,13.9,164,914,0,1064,0.262,27.12,9.71,0.15,975,3,126,0.8 +2013,1,18,3,30,36,1.42,0.17220000000000002,0.67,157,898,991,0,14,157,898,0,991,0.261,26.900000000000002,21.68,0.15,974,3.1,100,1 +2013,1,18,4,30,35.7,1.41,0.1777,0.67,152,859,856,0,14.200000000000001,152,859,0,856,0.261,27.6,34.86,0.15,974,3.1,82,1.3 +2013,1,18,5,30,34.800000000000004,1.4000000000000001,0.1889,0.67,142,785,666,1,14.3,142,785,0,666,0.261,29.21,48.17,0.15,974,3.2,69,1.6 +2013,1,18,6,30,33.300000000000004,1.3900000000000001,0.1956,0.67,122,671,443,0,14.4,122,671,0,443,0.261,32.08,61.39,0.15,974,3.2,59,1.9000000000000001 +2013,1,18,7,30,31,1.3900000000000001,0.1955,0.67,86,474,213,0,14.8,86,474,0,213,0.261,37.410000000000004,74.37,0.15,975,3.2,50,2 +2013,1,18,8,30,28.5,1.3900000000000001,0.189,0.67,22,99,27,0,15.700000000000001,22,99,0,27,0.261,45.84,86.85000000000001,0.15,975,3.3000000000000003,43,1.8 +2013,1,18,9,30,26.700000000000003,1.3900000000000001,0.1827,0.67,0,0,0,0,16.400000000000002,0,0,0,0,0.262,53.13,99.12,0.15,976,3.3000000000000003,38,1.8 +2013,1,18,10,30,25.5,1.3800000000000001,0.1781,0.67,0,0,0,0,16.7,0,0,0,0,0.262,58.4,110.28,0.15,977,3.3000000000000003,33,1.7000000000000002 +2013,1,18,11,30,24.6,1.36,0.1748,0.67,0,0,0,0,17.1,0,0,0,0,0.262,62.9,120.01,0.15,977,3.3000000000000003,27,1.5 +2013,1,18,12,30,23.900000000000002,1.34,0.1704,0.67,0,0,0,0,17.3,0,0,0,0,0.263,66.5,127.5,0.15,977,3.3000000000000003,19,1.4000000000000001 +2013,1,18,13,30,23.400000000000002,1.31,0.16390000000000002,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.264,68.9,131.68,0.15,976,3.3000000000000003,11,1.2000000000000002 +2013,1,18,14,30,22.900000000000002,1.29,0.15510000000000002,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.266,71.04,131.68,0.15,975,3.3000000000000003,5,1 +2013,1,18,15,30,22.5,1.26,0.1462,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.267,72.96000000000001,127.49000000000001,0.15,975,3.3000000000000003,179,0.8 +2013,1,18,16,30,22,1.23,0.1389,0.67,0,0,0,0,17.5,0,0,0,0,0.268,75.54,120.01,0.15,975,3.3000000000000003,352,0.6000000000000001 +2013,1,18,17,30,21.5,1.22,0.1331,0.67,0,0,0,0,17.6,0,0,0,0,0.269,78.43,110.27,0.15,975,3.3000000000000003,340,0.6000000000000001 +2013,1,18,18,30,21.400000000000002,1.21,0.1312,0.67,0,0,0,0,17.7,0,0,0,0,0.27,79.71000000000001,99.11,0.15,976,3.3000000000000003,323,0.6000000000000001 +2013,1,18,19,30,22.6,1.19,0.1346,0.67,22,124,29,1,17.900000000000002,22,124,0,29,0.27,74.84,86.84,0.15,977,3.4000000000000004,305,1.1 +2013,1,18,20,30,24.900000000000002,1.2,0.14200000000000002,0.67,77,521,217,1,18.2,77,521,0,217,0.27,66.45,74.36,0.15,977,3.5,293,1.5 +2013,1,18,21,30,27.5,1.21,0.1557,0.67,111,698,445,3,18.2,131,23,0,142,0.269,56.81,61.38,0.15,977,3.6,278,1.5 +2013,1,18,22,30,30.1,1.22,0.1827,0.67,142,779,661,1,17.8,142,779,0,661,0.269,47.69,48.17,0.15,977,3.7,257,1.4000000000000001 +2013,1,18,23,30,31.200000000000003,1.24,0.2192,0.67,172,814,839,0,17.3,172,814,0,839,0.269,43.43,34.86,0.15,977,3.8000000000000003,245,1.4000000000000001 +2013,1,19,0,30,34.300000000000004,1.27,0.21630000000000002,0.67,178,853,971,0,17.1,178,853,0,971,0.269,35.96,21.7,0.15,975,3.9000000000000004,208,1.3 +2013,1,19,1,30,36.1,1.3,0.2119,0.67,181,872,1040,1,17.1,181,872,0,1040,0.269,32.54,9.81,0.15,974,4,177,1.3 +2013,1,19,2,30,37.2,1.31,0.2091,0.67,179,874,1041,1,17.1,179,874,0,1041,0.27,30.7,9.81,0.15,973,4,146,1.6 +2013,1,19,3,30,37.1,1.29,0.21530000000000002,0.67,179,851,970,1,17.3,179,851,0,970,0.27,31.17,21.7,0.15,973,4.1000000000000005,124,2.1 +2013,1,19,4,30,35.7,1.25,0.25730000000000003,0.67,187,782,829,1,17.6,187,782,0,829,0.271,34.36,34.86,0.15,973,4.3,112,2.7 +2013,1,19,5,30,33.7,1.22,0.27440000000000003,0.67,175,698,641,0,18.3,175,698,0,641,0.271,40.19,48.17,0.15,973,4.5,106,3.1 +2013,1,19,6,30,31.400000000000002,1.19,0.3468,0.67,166,525,417,1,19.3,166,525,0,417,0.272,48.7,61.39,0.15,975,4.6000000000000005,103,3.2 +2013,1,19,7,30,29.1,1.1500000000000001,0.373,0.67,113,301,194,1,20.200000000000003,113,301,0,194,0.273,58.65,74.38,0.15,976,4.7,102,3 +2013,1,19,8,30,27.3,1.11,0.3819,0.67,18,24,20,1,20.8,18,24,0,20,0.273,67.84,86.88,0.15,977,4.800000000000001,101,2.7 +2013,1,19,9,30,26,1.1,0.3677,0.67,0,0,0,0,21.200000000000003,0,0,0,0,0.272,74.96000000000001,99.17,0.15,978,4.800000000000001,99,2.4000000000000004 +2013,1,19,10,30,25.200000000000003,1.11,0.31620000000000004,0.67,0,0,0,3,21.400000000000002,0,0,0,0,0.27,79.43,110.36,0.15,979,4.7,96,2.1 +2013,1,19,11,30,24.6,1.12,0.2772,0.67,0,0,0,3,21.5,0,0,0,0,0.269,82.91,120.13,0.15,979,4.7,92,1.8 +2013,1,19,12,30,24,1.1500000000000001,0.2742,0.67,0,0,0,3,21.6,0,0,0,0,0.268,86.42,127.65,0.15,979,4.6000000000000005,89,1.5 +2013,1,19,13,30,23.5,1.17,0.271,0.67,0,0,0,1,21.700000000000003,0,0,0,0,0.267,89.71000000000001,131.87,0.15,979,4.5,86,1.3 +2013,1,19,14,30,23.1,1.18,0.2565,0.67,0,0,0,1,21.8,0,0,0,0,0.266,92.37,131.89000000000001,0.15,978,4.4,85,1.1 +2013,1,19,15,30,22.8,1.21,0.25170000000000003,0.67,0,0,0,1,21.8,0,0,0,0,0.266,94.38,127.72,0.15,978,4.3,83,1.1 +2013,1,19,16,30,22.5,1.24,0.2268,0.67,0,0,0,1,21.900000000000002,0,0,0,0,0.267,96.32000000000001,120.22,0.15,978,4.1000000000000005,79,1 +2013,1,19,17,30,22.3,1.26,0.2001,0.67,0,0,0,1,21.900000000000002,0,0,0,0,0.267,97.35000000000001,110.47,0.15,978,3.9000000000000004,74,0.9 +2013,1,19,18,30,22.200000000000003,1.27,0.18910000000000002,0.67,0,0,0,0,21.8,0,0,0,0,0.267,97.67,99.29,0.15,979,3.7,72,0.9 +2013,1,19,19,30,22.8,1.27,0.16670000000000001,0.67,21,97,26,1,21.8,21,97,0,26,0.267,93.98,86.99,0.15,980,3.6,72,1.1 +2013,1,19,20,30,24,1.29,0.1458,0.67,76,516,214,1,21.8,76,516,0,214,0.267,87.37,74.51,0.15,980,3.5,71,1.3 +2013,1,19,21,30,25.900000000000002,1.31,0.1346,0.67,103,725,448,1,21,103,725,0,448,0.267,74.24,61.52,0.15,981,3.3000000000000003,73,1.4000000000000001 +2013,1,19,22,30,28,1.32,0.13040000000000002,0.67,119,832,673,1,19.8,119,832,0,673,0.266,60.980000000000004,48.300000000000004,0.15,980,3.2,81,1.5 +2013,1,19,23,30,28.900000000000002,1.32,0.1295,0.67,131,891,861,1,18.900000000000002,131,891,0,861,0.266,54.870000000000005,35,0.15,980,3.2,86,1.6 +2013,1,20,0,30,31.1,1.3900000000000001,0.1061,0.67,126,942,1000,0,18.2,126,942,0,1000,0.265,46.21,21.85,0.15,979,3.2,98,1.8 +2013,1,20,1,30,32.1,1.3900000000000001,0.1124,0.67,132,952,1069,0,17.3,132,952,0,1069,0.264,41.33,10.02,0.15,979,3.2,100,2.1 +2013,1,20,2,30,32.7,1.37,0.1192,0.67,136,947,1069,0,16.6,136,947,0,1069,0.264,38.11,9.92,0.15,978,3.2,98,2.4000000000000004 +2013,1,20,3,30,32.6,1.34,0.1212,0.67,134,929,997,0,16.2,134,929,0,997,0.265,37.39,21.72,0.15,977,3.3000000000000003,95,2.7 +2013,1,20,4,30,31.900000000000002,1.3,0.12390000000000001,0.67,128,893,861,0,16.2,128,893,0,861,0.265,38.89,34.87,0.15,977,3.4000000000000004,92,2.9000000000000004 +2013,1,20,5,30,30.5,1.25,0.12560000000000002,0.67,118,832,673,0,16.3,118,832,0,673,0.266,42.47,48.18,0.15,977,3.5,90,3 +2013,1,20,6,30,28.700000000000003,1.22,0.13090000000000002,0.67,103,724,449,1,16.7,103,724,0,449,0.267,48.120000000000005,61.410000000000004,0.15,978,3.6,88,2.9000000000000004 +2013,1,20,7,30,26.8,1.2,0.1327,0.67,75,529,217,1,17.2,75,529,0,217,0.268,55.59,74.41,0.15,979,3.7,86,2.6 +2013,1,20,8,30,25.200000000000003,1.18,0.13520000000000001,0.67,22,117,28,1,17.8,22,117,0,28,0.268,63.51,86.92,0.15,980,3.8000000000000003,86,2.2 +2013,1,20,9,30,24.200000000000003,1.19,0.1403,0.67,0,0,0,1,18.400000000000002,0,0,0,0,0.268,70.07000000000001,99.24000000000001,0.15,980,3.8000000000000003,88,1.8 +2013,1,20,10,30,23.5,1.2,0.1437,0.67,0,0,0,0,19,0,0,0,0,0.267,75.85000000000001,110.45,0.15,981,3.9000000000000004,92,1.5 +2013,1,20,11,30,23,1.22,0.1491,0.67,0,0,0,3,19.5,0,0,0,0,0.267,80.71000000000001,120.25,0.15,981,3.8000000000000003,95,1.2000000000000002 +2013,1,20,12,30,22.5,1.24,0.1502,0.67,0,0,0,3,20,0,0,0,0,0.267,85.61,127.82000000000001,0.15,980,3.8000000000000003,98,1.1 +2013,1,20,13,30,22,1.25,0.1481,0.67,0,0,0,3,20.3,0,0,0,0,0.268,90.22,132.08,0.15,980,3.8000000000000003,98,1.1 +2013,1,20,14,30,21.700000000000003,1.26,0.1426,0.67,0,0,0,1,20.6,0,0,0,0,0.268,93.32000000000001,132.12,0.15,979,3.7,94,0.9 +2013,1,20,15,30,21.400000000000002,1.26,0.14200000000000002,0.67,0,0,0,3,20.700000000000003,0,0,0,0,0.269,96.03,127.94,0.15,979,3.8000000000000003,85,0.8 +2013,1,20,16,30,21.200000000000003,1.27,0.1338,0.67,0,0,0,3,20.8,0,0,0,0,0.269,97.57000000000001,120.43,0.15,979,3.8000000000000003,77,0.6000000000000001 +2013,1,20,17,30,21.1,1.28,0.1194,0.67,0,0,0,3,20.8,0,0,0,0,0.269,98.09,110.66,0.15,979,3.8000000000000003,75,0.5 +2013,1,20,18,30,21.1,1.29,0.11510000000000001,0.67,0,0,0,3,20.700000000000003,0,0,0,0,0.27,97.85000000000001,99.47,0.15,979,3.8000000000000003,82,0.4 +2013,1,20,19,30,21.5,1.3,0.10880000000000001,0.67,19,139,26,1,20.8,19,139,0,26,0.27,95.64,87.15,0.15,980,3.7,85,0.6000000000000001 +2013,1,20,20,30,22.5,1.33,0.09620000000000001,0.67,65,575,217,1,21,65,575,0,217,0.271,91.27,74.66,0.15,980,3.7,80,0.7000000000000001 +2013,1,20,21,30,24.3,1.35,0.0931,0.67,88,763,450,1,20.900000000000002,88,763,0,450,0.271,81.2,61.660000000000004,0.15,980,3.7,83,0.9 +2013,1,20,22,30,26.700000000000003,1.37,0.0889,0.67,101,862,673,1,19.900000000000002,101,862,0,673,0.27,66.43,48.44,0.15,980,3.7,89,1.1 +2013,1,20,23,30,27.900000000000002,1.37,0.0877,0.67,110,917,860,1,19,110,917,0,860,0.27,58.33,35.13,0.15,980,3.7,92,1.3 +2013,1,21,0,30,30.3,1.28,0.09910000000000001,0.67,124,936,992,3,18.400000000000002,451,23,0,472,0.268,49.08,22,0.16,979,3.8000000000000003,90,1.8 +2013,1,21,1,30,31.200000000000003,1.3,0.0956,0.67,125,952,1062,3,18,331,28,0,359,0.266,45.42,10.23,0.16,978,3.9000000000000004,88,2.1 +2013,1,21,2,30,31.6,1.29,0.0945,0.67,125,953,1063,3,17.7,357,27,0,383,0.266,43.57,10.040000000000001,0.16,978,3.9000000000000004,87,2.4000000000000004 +2013,1,21,3,30,31.400000000000002,1.27,0.0956,0.67,122,937,992,3,17.6,126,24,0,149,0.266,43.78,21.75,0.16,977,4,88,2.7 +2013,1,21,4,30,30.700000000000003,1.26,0.097,0.67,116,905,859,3,17.6,356,24,0,376,0.266,45.54,34.88,0.16,977,4,87,2.9000000000000004 +2013,1,21,5,30,29.5,1.23,0.0981,0.67,106,848,672,3,17.6,426,98,0,492,0.267,48.94,48.19,0.16,977,4.1000000000000005,87,2.9000000000000004 +2013,1,21,6,30,27.900000000000002,1.2,0.1024,0.67,92,747,450,3,17.8,182,24,0,193,0.267,54.11,61.42,0.16,977,4.1000000000000005,86,2.8000000000000003 +2013,1,21,7,30,26.200000000000003,1.18,0.10450000000000001,0.67,68,559,218,3,18,52,3,0,53,0.268,60.76,74.44,0.16,978,4.1000000000000005,85,2.5 +2013,1,21,8,30,24.6,1.17,0.10500000000000001,0.67,21,142,28,3,18.400000000000002,7,0,3,7,0.269,68.55,86.96000000000001,0.16,979,4.1000000000000005,85,2.1 +2013,1,21,9,30,23.6,1.18,0.11270000000000001,0.67,0,0,0,1,18.900000000000002,0,0,0,0,0.269,74.79,99.3,0.16,980,4.1000000000000005,85,1.8 +2013,1,21,10,30,23.1,1.2,0.1159,0.67,0,0,0,1,19.200000000000003,0,0,0,0,0.269,78.78,110.55,0.16,980,4.1000000000000005,89,1.5 +2013,1,21,11,30,22.700000000000003,1.22,0.11570000000000001,0.67,0,0,0,1,19.5,0,0,0,0,0.268,82.17,120.38,0.16,981,4.1000000000000005,91,1.2000000000000002 +2013,1,21,12,30,22.3,1.25,0.1111,0.67,0,0,0,1,19.6,0,0,0,0,0.268,84.94,127.99000000000001,0.16,980,4,83,1.1 +2013,1,21,13,30,22,1.25,0.10250000000000001,0.67,0,0,0,1,19.700000000000003,0,0,0,0,0.267,87.05,132.28,0.16,980,3.9000000000000004,67,1 +2013,1,21,14,30,21.6,1.25,0.0952,0.67,0,0,0,0,19.8,0,0,0,0,0.266,89.57000000000001,132.35,0.16,979,3.9000000000000004,56,0.9 +2013,1,21,15,30,21.3,1.25,0.0964,0.67,0,0,0,0,19.900000000000002,0,0,0,0,0.266,91.55,128.17000000000002,0.16,978,3.8000000000000003,59,0.7000000000000001 +2013,1,21,16,30,21,1.25,0.0955,0.67,0,0,0,0,19.900000000000002,0,0,0,0,0.265,93.58,120.64,0.16,978,3.7,70,0.5 +2013,1,21,17,30,20.700000000000003,1.25,0.0896,0.67,0,0,0,0,20,0,0,0,0,0.265,95.59,110.86,0.16,978,3.6,80,0.4 +2013,1,21,18,30,20.6,1.27,0.08560000000000001,0.67,0,0,0,1,20,0,0,0,0,0.265,96.4,99.65,0.16,979,3.5,90,0.5 +2013,1,21,19,30,21.5,1.29,0.0787,0.67,18,169,26,1,20,18,169,0,26,0.265,91.46000000000001,87.3,0.16,979,3.4000000000000004,88,0.8 +2013,1,21,20,30,23.1,1.32,0.068,0.67,58,618,220,1,20.1,58,618,0,220,0.266,83.28,74.81,0.16,980,3.4000000000000004,78,1.1 +2013,1,21,21,30,25,1.35,0.0608,0.67,76,804,456,1,19.700000000000003,76,804,0,456,0.267,72.53,61.800000000000004,0.16,980,3.4000000000000004,72,1.3 +2013,1,21,22,30,27,1.36,0.0572,0.67,87,897,680,1,18.900000000000002,87,897,0,680,0.267,61.050000000000004,48.57,0.16,980,3.4000000000000004,70,1.5 +2013,1,21,23,30,27.900000000000002,1.36,0.055900000000000005,0.67,95,946,867,1,18.1,95,946,0,867,0.267,55.19,35.27,0.16,980,3.5,69,1.7000000000000002 +2013,1,22,0,30,30.1,1.23,0.0679,0.67,107,965,1000,3,17.5,243,31,0,272,0.266,46.96,22.150000000000002,0.16,978,3.5,66,2.1 +2013,1,22,1,30,30.900000000000002,1.23,0.0651,0.67,108,979,1071,3,17.2,193,31,0,224,0.266,43.99,10.44,0.16,978,3.6,65,2.4000000000000004 +2013,1,22,2,30,31.3,1.2,0.0651,0.67,108,977,1070,3,17.1,362,26,0,389,0.265,42.57,10.17,0.16,977,3.7,65,2.5 +2013,1,22,3,30,31.1,1.16,0.0699,0.67,109,959,999,3,17.2,297,29,0,323,0.263,43.5,21.78,0.16,977,3.8000000000000003,69,2.5 +2013,1,22,4,30,30.6,1.11,0.078,0.67,107,920,862,3,17.400000000000002,481,38,0,512,0.262,45.17,34.89,0.16,976,4,74,2.4000000000000004 +2013,1,22,5,30,29.6,1.08,0.0839,0.67,101,860,674,1,17.6,101,860,0,674,0.261,48.39,48.2,0.16,977,4.1000000000000005,78,2.4000000000000004 +2013,1,22,6,30,28.200000000000003,1.07,0.092,0.67,89,756,451,1,17.8,89,756,0,451,0.261,53.44,61.44,0.16,977,4.2,79,2.4000000000000004 +2013,1,22,7,30,26.5,1.06,0.0955,0.67,66,566,218,1,18.3,66,566,0,218,0.261,60.58,74.47,0.16,978,4.3,76,2.3000000000000003 +2013,1,22,8,30,25,1.05,0.09630000000000001,0.67,20,142,28,1,18.7,20,142,0,28,0.261,68.2,87.01,0.16,979,4.4,71,2.1 +2013,1,22,9,30,24.1,1.05,0.09730000000000001,0.67,0,0,0,3,19.1,0,0,0,0,0.261,73.61,99.38,0.16,980,4.4,66,1.9000000000000001 +2013,1,22,10,30,23.400000000000002,1.05,0.09630000000000001,0.67,0,0,0,3,19.200000000000003,0,0,0,0,0.261,77.46000000000001,110.65,0.16,980,4.3,62,1.7000000000000002 +2013,1,22,11,30,23,1.04,0.09480000000000001,0.67,0,0,0,8,19.3,0,0,0,0,0.261,79.88,120.52,0.16,980,4.3,61,1.4000000000000001 +2013,1,22,12,30,22.700000000000003,1.04,0.09390000000000001,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.26,81.64,128.17000000000002,0.16,980,4.2,60,1.2000000000000002 +2013,1,22,13,30,22.400000000000002,1.04,0.0922,0.67,0,0,0,8,19.400000000000002,0,0,0,0,0.26,83.32000000000001,132.5,0.16,980,4.1000000000000005,59,0.9 +2013,1,22,14,30,22.200000000000003,1.04,0.0902,0.67,0,0,0,1,19.400000000000002,0,0,0,0,0.26,84.28,132.59,0.16,979,4,58,0.8 +2013,1,22,15,30,22,1.05,0.0903,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.26,85.22,128.41,0.16,979,3.9000000000000004,58,0.7000000000000001 +2013,1,22,16,30,21.700000000000003,1.06,0.0888,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.261,86.67,120.86,0.16,979,3.9000000000000004,60,0.6000000000000001 +2013,1,22,17,30,21.400000000000002,1.06,0.08610000000000001,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.261,88.2,111.06,0.16,979,3.8000000000000003,64,0.5 +2013,1,22,18,30,21.400000000000002,1.07,0.0867,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.262,88.34,99.83,0.16,980,3.8000000000000003,71,0.6000000000000001 +2013,1,22,19,30,22.3,1.08,0.0877,0.67,18,135,24,1,19.5,18,135,0,24,0.263,84.16,87.46000000000001,0.16,980,3.8000000000000003,71,0.9 +2013,1,22,20,30,24,1.1,0.08560000000000001,0.67,62,577,212,3,19.5,128,91,0,151,0.264,76.09,74.96000000000001,0.16,981,3.8000000000000003,66,1.3 +2013,1,22,21,30,25.8,1.1300000000000001,0.0806,0.67,83,771,446,8,19,283,200,0,377,0.264,66.02,61.95,0.16,981,3.7,70,1.4000000000000001 +2013,1,22,22,30,27.700000000000003,1.16,0.07390000000000001,0.67,95,873,671,8,17.900000000000002,429,128,0,513,0.264,55.36,48.71,0.16,981,3.7,75,1.6 +2013,1,22,23,30,28.700000000000003,1.17,0.0697,0.67,102,930,860,8,17.3,277,27,0,299,0.263,50.07,35.410000000000004,0.16,980,3.7,76,1.7000000000000002 +2013,1,23,0,30,30.700000000000003,1.1300000000000001,0.0736,0.67,110,956,995,1,17,110,956,0,995,0.262,43.78,22.3,0.16,980,3.7,74,2 +2013,1,23,1,30,31.6,1.12,0.0727,0.67,113,970,1066,1,16.8,113,970,0,1066,0.262,41.25,10.65,0.16,979,3.7,74,2.3000000000000003 +2013,1,23,2,30,32,1.09,0.0752,0.67,115,967,1066,1,16.8,115,967,0,1066,0.261,40.33,10.31,0.16,978,3.8000000000000003,75,2.4000000000000004 +2013,1,23,3,30,31.8,0.98,0.0983,0.67,125,935,993,1,17,125,935,0,993,0.261,41.31,21.82,0.16,978,3.8000000000000003,77,2.6 +2013,1,23,4,30,31,0.96,0.09720000000000001,0.67,118,904,860,1,17.3,118,904,0,860,0.261,43.96,34.92,0.16,977,3.8000000000000003,79,2.8000000000000003 +2013,1,23,5,30,29.8,0.9500000000000001,0.0944,0.67,107,851,673,1,17.6,107,851,0,673,0.261,48,48.22,0.16,977,3.9000000000000004,79,2.9000000000000004 +2013,1,23,6,30,28.1,0.9400000000000001,0.0969,0.67,92,751,451,1,18,92,751,0,451,0.261,54.19,61.47,0.16,978,3.9000000000000004,77,2.9000000000000004 +2013,1,23,7,30,26.400000000000002,0.9400000000000001,0.09430000000000001,0.67,67,568,218,1,18.3,67,568,0,218,0.261,61.21,74.51,0.16,979,3.9000000000000004,73,2.7 +2013,1,23,8,30,25,0.9400000000000001,0.08900000000000001,0.67,20,145,28,1,18.6,20,145,0,28,0.261,67.79,87.06,0.16,980,3.9000000000000004,71,2.4000000000000004 +2013,1,23,9,30,24.1,0.97,0.0872,0.67,0,0,0,1,18.900000000000002,0,0,0,0,0.261,72.82000000000001,99.46000000000001,0.16,981,3.9000000000000004,72,2.1 +2013,1,23,10,30,23.6,0.99,0.08360000000000001,0.67,0,0,0,1,19.200000000000003,0,0,0,0,0.261,76.24,110.76,0.16,981,3.9000000000000004,76,1.8 +2013,1,23,11,30,23.200000000000003,0.98,0.08070000000000001,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.261,79.25,120.66,0.16,981,3.8000000000000003,81,1.5 +2013,1,23,12,30,22.900000000000002,0.97,0.07980000000000001,0.67,0,0,0,7,19.6,0,0,0,0,0.26,81.59,128.35,0.16,981,3.7,86,1.2000000000000002 +2013,1,23,13,30,22.6,0.96,0.0799,0.67,0,0,0,7,19.700000000000003,0,0,0,0,0.26,83.63,132.72,0.16,980,3.7,93,1.1 +2013,1,23,14,30,22.3,0.9500000000000001,0.0795,0.67,0,0,0,7,19.8,0,0,0,0,0.26,85.59,132.83,0.16,980,3.6,100,0.9 +2013,1,23,15,30,22,0.97,0.0806,0.67,0,0,0,7,19.8,0,0,0,0,0.259,87.32000000000001,128.64000000000001,0.16,979,3.6,104,0.8 +2013,1,23,16,30,21.8,0.97,0.0792,0.67,0,0,0,7,19.8,0,0,0,0,0.258,88.59,121.08,0.16,979,3.5,106,0.8 +2013,1,23,17,30,21.5,0.97,0.0753,0.67,0,0,0,6,19.900000000000002,0,0,0,0,0.258,90.51,111.26,0.16,979,3.5,109,0.7000000000000001 +2013,1,23,18,30,21.5,0.98,0.0748,0.67,0,0,0,6,20,0,0,0,0,0.258,91.03,100.01,0.16,980,3.5,112,0.9 +2013,1,23,19,30,22.3,0.99,0.0728,0.67,17,144,23,6,20.200000000000003,3,0,3,3,0.257,87.73,87.61,0.16,980,3.6,109,1.6 +2013,1,23,20,30,23.700000000000003,1.02,0.06520000000000001,0.67,57,607,213,7,20.400000000000002,9,0,0,9,0.257,81.63,75.11,0.16,980,3.7,103,2.2 +2013,1,23,21,30,25.3,1.09,0.057800000000000004,0.67,75,797,448,8,20,43,0,0,43,0.256,72.71000000000001,62.09,0.16,980,3.8000000000000003,99,2.5 +2013,1,23,22,30,26.700000000000003,1.1400000000000001,0.0528,0.67,86,890,671,8,19.400000000000002,58,4,0,61,0.255,64.11,48.85,0.16,980,4,96,2.7 +2013,1,23,23,30,27.3,1.1300000000000001,0.0516,0.67,93,941,859,8,18.900000000000002,75,10,0,84,0.254,60.11,35.550000000000004,0.16,980,4,95,2.7 +2013,1,24,0,30,27.8,1.05,0.058300000000000005,0.67,103,960,990,8,18.8,177,30,0,205,0.252,57.99,22.46,0.16,980,4.3,84,2.9000000000000004 +2013,1,24,1,30,27.400000000000002,1.01,0.0606,0.67,107,970,1060,8,18.900000000000002,155,28,0,183,0.251,59.75,10.870000000000001,0.16,980,4.4,77,2.9000000000000004 +2013,1,24,2,30,26.700000000000003,0.97,0.0562,0.67,105,973,1062,6,19.1,230,32,0,261,0.249,63.22,10.47,0.16,979,4.4,75,2.8000000000000003 +2013,1,24,3,30,26.200000000000003,0.98,0.0507,0.67,99,967,996,8,19.5,328,27,0,353,0.249,66.74,21.88,0.16,979,4.3,78,2.6 +2013,1,24,4,30,25.700000000000003,1,0.0455,0.67,91,944,865,8,19.8,191,30,0,216,0.248,70.04,34.94,0.16,978,4.3,84,2.5 +2013,1,24,5,30,25,0.98,0.0444,0.67,83,897,680,8,20.1,143,27,0,161,0.247,74.3,48.25,0.16,978,4.3,90,2.4000000000000004 +2013,1,24,6,30,24.1,0.96,0.0472,0.67,72,808,458,6,20.400000000000002,105,21,0,115,0.247,79.81,61.5,0.16,979,4.3,96,2.2 +2013,1,24,7,30,23.1,0.9400000000000001,0.0509,0.67,55,632,223,8,20.8,48,1,3,48,0.247,86.69,74.55,0.16,979,4.4,100,1.9000000000000001 +2013,1,24,8,30,22.3,0.9,0.0522,0.67,19,197,29,6,21.1,9,0,3,9,0.248,93.07000000000001,87.12,0.16,980,4.5,104,1.7000000000000002 +2013,1,24,9,30,21.900000000000002,0.91,0.0599,0.67,0,0,0,7,21.3,0,0,0,0,0.249,96.4,99.54,0.16,980,4.6000000000000005,108,1.6 +2013,1,24,10,30,21.700000000000003,0.86,0.058600000000000006,0.67,0,0,0,8,21.400000000000002,0,0,0,0,0.249,98.47,110.87,0.16,981,4.6000000000000005,113,1.5 +2013,1,24,11,30,21.6,0.78,0.0562,0.67,0,0,0,6,21.5,0,0,0,0,0.249,99.54,120.81,0.16,980,4.7,115,1.5 +2013,1,24,12,30,21.5,0.76,0.066,0.67,0,0,0,6,21.5,0,0,0,0,0.249,100,128.55,0.16,980,4.7,114,1.5 +2013,1,24,13,30,21.5,0.7000000000000001,0.0675,0.67,0,0,0,6,21.5,0,0,0,0,0.249,100,132.95,0.16,979,4.800000000000001,111,1.5 +2013,1,24,14,30,21.400000000000002,0.6,0.0639,0.67,0,0,0,8,21.400000000000002,0,0,0,0,0.249,100,133.07,0.16,978,4.800000000000001,108,1.5 +2013,1,24,15,30,21.3,0.62,0.0733,0.67,0,0,0,8,21.3,0,0,0,0,0.25,100,128.89000000000001,0.16,977,4.800000000000001,104,1.6 +2013,1,24,16,30,21.3,0.6,0.068,0.67,0,0,0,8,21.3,0,0,0,0,0.251,100,121.31,0.16,977,4.800000000000001,97,1.6 +2013,1,24,17,30,21.200000000000003,0.56,0.062,0.67,0,0,0,8,21.200000000000003,0,0,0,0,0.252,100,111.46000000000001,0.16,977,4.9,92,1.6 +2013,1,24,18,30,21.3,0.62,0.0692,0.67,0,0,0,8,21.3,0,0,0,0,0.254,100,100.19,0.16,977,5,91,1.7000000000000002 +2013,1,24,19,30,21.6,0.6,0.0685,0.67,17,114,21,8,21.5,10,0,3,10,0.256,99.15,87.77,0.16,978,5,90,1.9000000000000001 +2013,1,24,20,30,22.400000000000002,0.55,0.0614,0.67,57,584,206,4,21.8,14,0,0,14,0.258,96.24000000000001,75.26,0.16,978,5,86,2.4000000000000004 +2013,1,24,21,30,23.5,0.62,0.0587,0.67,77,775,438,8,22,201,28,0,214,0.26,91.19,62.230000000000004,0.16,978,5,81,2.9000000000000004 +2013,1,24,22,30,25,0.58,0.0601,0.67,91,865,659,8,21.6,247,25,0,264,0.261,81.45,48.980000000000004,0.16,978,5,78,3.4000000000000004 +2013,1,24,23,30,25.700000000000003,0.51,0.06760000000000001,0.67,105,910,844,8,20.900000000000002,318,25,0,338,0.261,74.82000000000001,35.68,0.16,978,5,77,3.5 +2013,1,25,0,30,27.1,0.49,0.08270000000000001,0.67,120,927,975,8,20.5,402,23,3,424,0.26,67.17,22.61,0.16,977,5,78,3.8000000000000003 +2013,1,25,1,30,27.400000000000002,0.48,0.08600000000000001,0.67,125,938,1046,8,20.3,556,26,0,582,0.258,65.3,11.1,0.16,976,5,78,3.8000000000000003 +2013,1,25,2,30,27.1,0.44,0.0896,0.67,128,935,1047,8,20.3,398,24,0,422,0.257,66.57000000000001,10.63,0.16,976,5,77,3.8000000000000003 +2013,1,25,3,30,26.5,0.47000000000000003,0.08700000000000001,0.67,123,924,980,8,20.400000000000002,400,23,0,421,0.255,69.24,21.93,0.16,976,5,76,3.7 +2013,1,25,4,30,25.900000000000002,0.49,0.0828,0.67,114,898,849,8,20.400000000000002,311,25,0,332,0.254,71.92,34.980000000000004,0.16,976,5,77,3.6 +2013,1,25,5,30,25.200000000000003,0.49,0.0794,0.67,102,848,666,8,20.5,248,25,0,265,0.253,75.3,48.28,0.16,976,4.9,81,3.4000000000000004 +2013,1,25,6,30,24.200000000000003,0.53,0.0849,0.67,89,746,445,8,20.6,152,23,0,163,0.252,80.56,61.54,0.16,976,4.9,86,3 +2013,1,25,7,30,23.1,0.56,0.083,0.67,65,561,214,8,21,65,8,3,67,0.252,87.74,74.60000000000001,0.16,976,5,94,2.5 +2013,1,25,8,30,22.3,0.5700000000000001,0.08220000000000001,0.67,20,123,26,8,21.400000000000002,10,0,3,10,0.251,94.61,87.18,0.16,977,5.1000000000000005,102,2.3000000000000003 +2013,1,25,9,30,22.1,0.64,0.0901,0.67,0,0,0,8,21.700000000000003,0,0,0,0,0.25,97.34,99.63,0.16,977,5.2,107,2.3000000000000003 +2013,1,25,10,30,22.1,0.61,0.0882,0.67,0,0,0,8,21.900000000000002,0,0,0,0,0.248,98.77,110.99000000000001,0.16,977,5.4,110,2.3000000000000003 +2013,1,25,11,30,22.200000000000003,0.5,0.0964,0.67,0,0,0,8,22.1,0,0,0,0,0.246,99.58,120.97,0.16,977,5.5,109,2.3000000000000003 +2013,1,25,12,30,22.3,0.46,0.13620000000000002,0.67,0,0,0,8,22.3,0,0,0,0,0.245,100,128.74,0.16,976,5.6000000000000005,102,2.4000000000000004 +2013,1,25,13,30,22.3,0.32,0.1584,0.67,0,0,0,8,22.3,0,0,0,0,0.243,100,133.18,0.16,976,5.5,92,2.5 +2013,1,25,14,30,22.200000000000003,0.25,0.1578,0.67,0,0,0,4,22.200000000000003,0,0,0,0,0.242,100,133.33,0.16,975,5.4,86,2.6 +2013,1,25,15,30,22.1,0.29,0.17,0.67,0,0,0,4,22,0,0,0,0,0.243,99.46000000000001,129.13,0.16,975,5.4,83,2.6 +2013,1,25,16,30,22,0.25,0.1829,0.67,0,0,0,4,21.8,0,0,0,0,0.244,98.97,121.53,0.16,975,5.4,84,2.5 +2013,1,25,17,30,21.900000000000002,0.21,0.1792,0.67,0,0,0,4,21.700000000000003,0,0,0,0,0.245,99.08,111.66,0.16,975,5.4,86,2.5 +2013,1,25,18,30,22,0.25,0.1888,0.67,0,0,0,8,21.700000000000003,0,0,0,0,0.246,98.42,100.37,0.16,975,5.4,89,2.6 +2013,1,25,19,30,22.3,0.23,0.1899,0.67,14,10,15,4,21.8,2,0,3,2,0.247,97.21000000000001,87.92,0.16,976,5.5,91,2.8000000000000003 +2013,1,25,20,30,23,0.2,0.18030000000000002,0.67,89,378,184,8,22.1,45,0,0,45,0.248,94.93,75.41,0.16,976,5.6000000000000005,89,3.2 +2013,1,25,21,30,23.6,0.23,0.1814,0.67,128,604,409,8,22.400000000000002,68,13,0,74,0.248,93.01,62.370000000000005,0.16,976,5.7,86,3.6 +2013,1,25,22,30,24.1,0.22,0.18150000000000002,0.67,153,724,627,8,22.400000000000002,55,2,0,56,0.249,90.23,49.120000000000005,0.16,976,5.800000000000001,84,3.8000000000000003 +2013,1,25,23,30,24.3,0.2,0.1773,0.67,167,796,813,7,22.3,206,30,0,231,0.249,88.85000000000001,35.82,0.16,976,5.800000000000001,84,3.9000000000000004 +2013,1,26,0,30,24.3,0.2,0.1797,0.67,178,833,946,8,22.400000000000002,120,23,0,141,0.247,88.91,22.77,0.15,975,5.9,86,3.8000000000000003 +2013,1,26,1,30,24.200000000000003,0.2,0.1902,0.67,188,843,1015,8,22.400000000000002,214,32,0,246,0.246,89.84,11.32,0.15,975,5.9,88,3.7 +2013,1,26,2,30,24,0.19,0.19390000000000002,0.67,191,840,1015,8,22.5,246,32,0,278,0.245,91.45,10.8,0.15,974,6,90,3.6 +2013,1,26,3,30,23.900000000000002,0.21,0.2016,0.67,190,817,947,6,22.6,125,24,0,147,0.243,92.52,22,0.15,974,6,90,3.4000000000000004 +2013,1,26,4,30,23.6,0.21,0.2187,0.67,188,764,814,6,22.700000000000003,216,30,0,240,0.242,94.87,35.02,0.15,974,5.9,90,3.2 +2013,1,26,5,30,23.3,0.2,0.23340000000000002,0.67,177,680,629,6,22.8,112,24,0,128,0.242,97.15,48.32,0.15,973,5.9,89,3.1 +2013,1,26,6,30,23,0.23,0.2421,0.67,151,549,413,6,22.900000000000002,82,18,0,91,0.242,99.21000000000001,61.59,0.15,974,5.9,88,3 +2013,1,26,7,30,22.8,0.22,0.22760000000000002,0.67,101,342,192,6,22.8,38,0,3,38,0.242,99.97,74.66,0.15,974,5.9,87,2.9000000000000004 +2013,1,26,8,30,22.6,0.2,0.2074,0.67,19,16,20,6,22.6,7,0,3,7,0.242,100,87.25,0.15,975,5.800000000000001,86,2.9000000000000004 +2013,1,26,9,30,22.5,0.24,0.22130000000000002,0.67,0,0,0,6,22.5,0,0,0,0,0.242,100,99.72,0.15,975,5.800000000000001,86,2.9000000000000004 +2013,1,26,10,30,22.400000000000002,0.22,0.22540000000000002,0.67,0,0,0,6,22.400000000000002,0,0,0,0,0.243,100,111.11,0.15,975,5.9,88,2.9000000000000004 +2013,1,26,11,30,22.3,0.2,0.2253,0.67,0,0,0,6,22.3,0,0,0,0,0.243,100,121.13,0.15,975,5.9,89,3 +2013,1,26,12,30,22.1,0.24,0.23770000000000002,0.67,0,0,0,6,22.1,0,0,0,0,0.243,100,128.95,0.15,974,5.9,90,3 +2013,1,26,13,30,22,0.22,0.2353,0.67,0,0,0,9,22,0,0,0,0,0.244,100,133.42000000000002,0.15,973,5.9,90,3.1 +2013,1,26,14,30,21.900000000000002,0.2,0.2371,0.67,0,0,0,6,21.900000000000002,0,0,0,0,0.245,100,133.58,0.15,972,5.800000000000001,88,3.2 +2013,1,26,15,30,21.900000000000002,0.25,0.2712,0.67,0,0,0,6,21.900000000000002,0,0,0,0,0.247,100,129.38,0.15,971,5.800000000000001,85,3.1 +2013,1,26,16,30,22,0.25,0.2619,0.67,0,0,0,6,22,0,0,0,0,0.25,100,121.76,0.15,971,5.7,81,3 +2013,1,26,17,30,22.1,0.26,0.2446,0.67,0,0,0,9,22.1,0,0,0,0,0.252,100,111.87,0.15,971,5.7,81,2.9000000000000004 +2013,1,26,18,30,22.3,0.31,0.24330000000000002,0.67,0,0,0,9,22.3,0,0,0,0,0.253,100,100.55,0.15,971,5.7,85,2.9000000000000004 +2013,1,26,19,30,22.6,0.29,0.2504,0.67,11,3,11,6,22.6,2,0,3,2,0.254,100,88.08,0.15,971,5.800000000000001,88,3 +2013,1,26,20,30,22.900000000000002,0.26,0.2639,0.67,103,287,174,6,22.900000000000002,9,0,0,9,0.254,99.89,75.56,0.15,971,5.9,90,3.3000000000000003 +2013,1,26,21,30,23.3,0.27,0.2525,0.67,151,530,395,8,23.1,19,0,0,19,0.254,99.09,62.51,0.15,971,6,90,3.6 +2013,1,26,22,30,23.6,0.25,0.2296,0.67,172,678,615,6,23.3,49,0,0,49,0.253,98.42,49.25,0.15,970,6.1000000000000005,89,3.9000000000000004 +2013,1,26,23,30,23.8,0.21,0.2472,0.67,200,736,797,6,23.400000000000002,84,14,0,96,0.253,97.69,35.96,0.15,970,6.1000000000000005,88,4 +2013,1,27,0,30,24.1,0.2,0.3256,0.67,252,723,917,8,23.3,72,7,0,78,0.253,95.43,22.93,0.15,970,6.1000000000000005,82,4.4 +2013,1,27,1,30,24.200000000000003,0.19,0.366,0.67,279,717,982,6,23.3,105,19,0,124,0.253,94.48,11.55,0.15,969,6.2,82,4.5 +2013,1,27,2,30,24.200000000000003,0.17,0.332,0.67,263,739,989,6,23.3,128,24,0,151,0.253,94.5,10.98,0.15,968,6.2,83,4.6000000000000005 +2013,1,27,3,30,24.1,0.15,0.3934,0.67,286,677,913,6,23.3,189,31,0,218,0.252,95.5,22.080000000000002,0.15,967,6.2,83,4.7 +2013,1,27,4,30,24.1,0.15,0.45420000000000005,0.67,294,589,777,6,23.400000000000002,115,24,0,134,0.252,95.7,35.07,0.15,966,6.300000000000001,83,4.7 +2013,1,27,5,30,24,0.15,0.4731,0.67,269,493,596,6,23.400000000000002,112,24,0,128,0.252,96.33,48.36,0.15,966,6.300000000000001,82,4.7 +2013,1,27,6,30,23.6,0.15,0.48350000000000004,0.67,219,350,386,6,23.3,90,20,0,99,0.252,98.3,61.64,0.15,965,6.300000000000001,81,4.5 +2013,1,27,7,30,23.200000000000003,0.16,0.46280000000000004,0.67,131,159,173,6,23.200000000000003,41,0,3,41,0.252,99.72,74.72,0.15,966,6.300000000000001,78,4.3 +2013,1,27,8,30,22.900000000000002,0.16,0.399,0.67,11,1,11,6,22.900000000000002,7,0,3,7,0.252,100,87.33,0.15,966,6.300000000000001,74,4.2 +2013,1,27,9,30,22.900000000000002,0.19,0.33630000000000004,0.67,0,0,0,8,22.8,0,0,0,0,0.252,99.18,99.83,0.15,967,6.2,70,4.2 +2013,1,27,10,30,22.900000000000002,0.18,0.3146,0.67,0,0,0,4,22.700000000000003,0,0,0,0,0.253,98.53,111.24000000000001,0.15,967,6.2,68,4.2 +2013,1,27,11,30,22.8,0.17,0.31010000000000004,0.67,0,0,0,4,22.6,0,0,0,0,0.253,98.57000000000001,121.3,0.15,967,6.1000000000000005,68,4.3 +2013,1,27,12,30,22.700000000000003,0.2,0.3044,0.67,0,0,0,4,22.5,0,0,0,0,0.253,98.8,129.16,0.15,967,6.1000000000000005,67,4.3 +2013,1,27,13,30,22.700000000000003,0.21,0.2701,0.67,0,0,0,4,22.5,0,0,0,0,0.253,98.75,133.67000000000002,0.15,966,6,67,4.3 +2013,1,27,14,30,22.8,0.2,0.2574,0.67,0,0,0,4,22.6,0,0,0,0,0.252,98.58,133.85,0.15,965,5.9,67,4.1000000000000005 +2013,1,27,15,30,22.8,0.22,0.3164,0.67,0,0,0,4,22.700000000000003,0,0,0,0,0.252,99.59,129.64000000000001,0.15,965,5.800000000000001,68,4 +2013,1,27,16,30,22.900000000000002,0.21,0.31980000000000003,0.67,0,0,0,3,22.900000000000002,0,0,0,0,0.251,100,121.99000000000001,0.15,965,5.7,67,3.9000000000000004 +2013,1,27,17,30,23,0.21,0.26830000000000004,0.67,0,0,0,3,23,0,0,0,0,0.25,100,112.07000000000001,0.15,965,5.6000000000000005,66,3.9000000000000004 +2013,1,27,18,30,23.1,0.25,0.2656,0.67,0,0,0,3,23.1,0,0,0,0,0.25,100,100.74000000000001,0.15,965,5.5,64,3.9000000000000004 +2013,1,27,19,30,23.400000000000002,0.24,0.2661,0.67,9,2,9,3,23.400000000000002,4,0,3,4,0.25,99.97,88.23,0.15,966,5.4,63,4 +2013,1,27,20,30,24.1,0.22,0.2677,0.67,103,279,172,3,23.8,54,4,3,55,0.251,98.08,75.71000000000001,0.15,966,5.300000000000001,60,4 +2013,1,27,21,30,24.900000000000002,0.22,0.28800000000000003,0.67,163,495,391,1,24.400000000000002,163,495,0,391,0.252,96.89,62.65,0.15,966,5.2,55,4 +2013,1,27,22,30,25.900000000000002,0.2,0.3201,0.67,211,602,603,1,24.900000000000002,211,602,0,603,0.252,94.3,49.39,0.15,967,5.1000000000000005,50,4.1000000000000005 +2013,1,27,23,30,26.400000000000002,0.19,0.33890000000000003,0.67,244,670,785,3,25.1,318,25,0,338,0.253,92.48,36.1,0.15,967,5.1000000000000005,47,4.2 +2013,1,28,0,30,27.3,0.21,0.3294,0.67,254,725,922,3,25.200000000000003,306,28,0,332,0.253,88.44,23.09,0.15,966,5.1000000000000005,45,4.2 +2013,1,28,1,30,27.5,0.23,0.29600000000000004,0.67,244,771,998,3,25.400000000000002,318,29,0,346,0.252,88.54,11.790000000000001,0.15,966,5.2,44,4 +2013,1,28,2,30,27.5,0.25,0.27190000000000003,0.67,231,788,1005,3,25.6,374,26,0,399,0.252,89.59,11.17,0.15,966,5.300000000000001,40,3.7 +2013,1,28,3,30,27.400000000000002,0.33,0.2551,0.67,214,785,941,3,25.700000000000003,548,31,0,577,0.253,90.47,22.16,0.15,965,5.300000000000001,33,3.3000000000000003 +2013,1,28,4,30,27.200000000000003,0.4,0.21960000000000002,0.67,184,775,818,3,25.700000000000003,395,24,0,415,0.254,91.46000000000001,35.12,0.15,965,5.2,22,2.8000000000000003 +2013,1,28,5,30,26.8,0.49,0.18130000000000002,0.67,149,745,643,3,25.6,282,25,0,299,0.255,93.15,48.410000000000004,0.15,965,5,9,2.3000000000000003 +2013,1,28,6,30,26.200000000000003,0.64,0.1464,0.67,111,674,431,3,25.5,224,33,0,239,0.256,95.97,61.690000000000005,0.15,966,4.9,178,2 +2013,1,28,7,30,25.3,0.76,0.1037,0.67,69,534,209,3,25.200000000000003,94,19,3,98,0.256,99.67,74.79,0.15,967,4.800000000000001,350,1.7000000000000002 +2013,1,28,8,30,24.3,0.86,0.07490000000000001,0.67,18,139,24,3,24.3,10,0,3,10,0.257,100,87.41,0.15,968,4.7,344,1.4000000000000001 +2013,1,28,9,30,23.700000000000003,0.9500000000000001,0.0671,0.67,0,0,0,3,23.700000000000003,0,0,0,0,0.256,100,99.93,0.15,969,4.7,341,1.3 +2013,1,28,10,30,23.200000000000003,0.99,0.0636,0.67,0,0,0,3,23.200000000000003,0,0,0,0,0.255,100,111.38,0.15,970,4.6000000000000005,337,1.2000000000000002 +2013,1,28,11,30,22.700000000000003,1.04,0.0585,0.67,0,0,0,3,22.700000000000003,0,0,0,0,0.254,100,121.47,0.15,970,4.5,330,1 +2013,1,28,12,30,22.3,1.11,0.0562,0.67,0,0,0,1,22.3,0,0,0,0,0.253,100,129.37,0.15,970,4.3,324,0.9 +2013,1,28,13,30,21.8,1.1500000000000001,0.052500000000000005,0.67,0,0,0,1,21.8,0,0,0,0,0.251,100,133.92000000000002,0.15,970,4.1000000000000005,320,0.8 +2013,1,28,14,30,21.5,1.19,0.0425,0.67,0,0,0,1,21.5,0,0,0,0,0.251,100,134.11,0.15,970,3.9000000000000004,314,0.7000000000000001 +2013,1,28,15,30,21.1,1.24,0.0369,0.67,0,0,0,0,21.1,0,0,0,0,0.251,100,129.89000000000001,0.15,970,3.7,308,0.7000000000000001 +2013,1,28,16,30,20.8,1.27,0.0357,0.67,0,0,0,0,20.8,0,0,0,0,0.251,100,122.22,0.15,970,3.5,306,0.7000000000000001 +2013,1,28,17,30,20.5,1.28,0.0354,0.67,0,0,0,0,20.5,0,0,0,0,0.251,100,112.28,0.15,970,3.4000000000000004,306,0.7000000000000001 +2013,1,28,18,30,20.5,1.29,0.0367,0.67,0,0,0,0,20.5,0,0,0,0,0.251,100,100.92,0.15,971,3.3000000000000003,305,0.8 +2013,1,28,19,30,21.200000000000003,1.31,0.0381,0.67,13,178,18,1,20.900000000000002,13,178,0,18,0.251,98.4,88.38,0.15,972,3.2,302,1.1 +2013,1,28,20,30,22.8,1.32,0.037700000000000004,0.67,49,653,208,1,21.6,49,653,1,208,0.251,92.77,75.86,0.15,973,3.2,296,1.4000000000000001 +2013,1,28,21,30,24.6,1.34,0.036500000000000005,0.67,66,832,446,1,22.1,66,832,0,446,0.251,85.74,62.79,0.15,973,3.1,286,1.7000000000000002 +2013,1,28,22,30,26.1,1.35,0.036000000000000004,0.67,77,920,673,1,21.900000000000002,77,920,0,673,0.25,77.91,49.52,0.15,974,3.1,277,2 +2013,1,28,23,30,26.700000000000003,1.34,0.0358,0.67,84,968,865,0,22,84,968,0,865,0.25,75.47,36.24,0.15,974,3.1,273,2.1 +2013,1,29,0,30,28,0.75,0.056400000000000006,0.67,103,978,1001,1,22.3,103,978,0,1001,0.249,71.02,23.25,0.15,973,3,265,2.1 +2013,1,29,1,30,28.700000000000003,0.6900000000000001,0.0601,0.67,109,990,1077,0,22.5,109,990,0,1077,0.248,69.28,12.02,0.15,973,2.9000000000000004,260,2.1 +2013,1,29,2,30,29,0.65,0.061700000000000005,0.67,110,990,1081,0,22.6,110,990,0,1081,0.249,68.51,11.370000000000001,0.15,972,2.8000000000000003,255,2.1 +2013,1,29,3,30,29.200000000000003,0.61,0.0644,0.67,110,975,1012,0,22.8,110,975,0,1012,0.25,68.34,22.25,0.15,972,2.8000000000000003,249,2 +2013,1,29,4,30,29.1,0.6,0.0673,0.67,105,941,875,0,23,105,941,0,875,0.251,69.59,35.18,0.15,972,2.9000000000000004,244,1.8 +2013,1,29,5,30,28.8,0.62,0.06860000000000001,0.67,96,886,684,0,23.3,96,886,0,684,0.253,72.33,48.47,0.15,972,3,240,1.5 +2013,1,29,6,30,28.1,0.67,0.0663,0.67,81,795,458,0,24,81,795,0,458,0.254,78.53,61.75,0.15,973,3.1,239,1.1 +2013,1,29,7,30,26.900000000000002,0.72,0.0632,0.67,59,619,220,0,24.5,59,619,0,220,0.256,86.65,74.86,0.15,973,3.1,244,0.7000000000000001 +2013,1,29,8,30,25.6,0.77,0.0584,0.67,18,169,25,0,24.3,18,169,0,25,0.256,92.55,87.49,0.15,974,3.1,258,0.6000000000000001 +2013,1,29,9,30,24.5,0.8300000000000001,0.0531,0.67,0,0,0,0,23.700000000000003,0,0,0,0,0.256,95.23,100.04,0.15,975,3.1,268,0.6000000000000001 +2013,1,29,10,30,23.700000000000003,0.88,0.0489,0.67,0,0,0,0,23.3,0,0,0,0,0.256,97.73,111.52,0.15,976,3.1,268,0.6000000000000001 +2013,1,29,11,30,23,0.92,0.0471,0.67,0,0,0,0,23,0,0,0,0,0.256,99.72,121.65,0.15,976,3.1,266,0.6000000000000001 +2013,1,29,12,30,22.5,0.9500000000000001,0.0463,0.67,0,0,0,0,22.5,0,0,0,0,0.255,100,129.59,0.15,976,3.1,261,0.6000000000000001 +2013,1,29,13,30,22,0.97,0.0458,0.67,0,0,0,0,22,0,0,0,0,0.255,100,134.18,0.15,976,3.1,254,0.5 +2013,1,29,14,30,21.5,0.99,0.044700000000000004,0.67,0,0,0,0,21.5,0,0,0,0,0.256,100,134.39000000000001,0.15,975,3.1,242,0.5 +2013,1,29,15,30,21.200000000000003,1.01,0.0441,0.67,0,0,0,0,21.200000000000003,0,0,0,0,0.257,100,130.15,0.15,975,3.1,227,0.5 +2013,1,29,16,30,20.900000000000002,1.03,0.0429,0.67,0,0,0,0,20.900000000000002,0,0,0,0,0.258,100,122.46000000000001,0.15,975,3.1,214,0.5 +2013,1,29,17,30,20.700000000000003,1.05,0.041800000000000004,0.67,0,0,0,0,20.700000000000003,0,0,0,0,0.259,100,112.48,0.15,976,3.2,204,0.5 +2013,1,29,18,30,20.8,1.06,0.0412,0.67,0,0,0,0,20.8,0,0,0,0,0.26,99.86,101.10000000000001,0.15,976,3.3000000000000003,196,0.6000000000000001 +2013,1,29,19,30,21.8,1.07,0.041,0.67,12,151,16,0,20.900000000000002,12,151,0,16,0.261,94.68,88.53,0.15,977,3.3000000000000003,189,0.9 +2013,1,29,20,30,23.700000000000003,1.07,0.0415,0.67,49,634,203,1,21.6,49,634,0,203,0.261,88.21000000000001,76.01,0.15,978,3.4000000000000004,172,1.4000000000000001 +2013,1,29,21,30,25.700000000000003,1.09,0.0427,0.67,68,814,439,1,23.1,68,814,0,439,0.261,85.58,62.93,0.15,978,3.4000000000000004,155,1.8 +2013,1,29,22,30,27,1.1300000000000001,0.041100000000000005,0.67,79,904,664,0,23.8,79,904,0,664,0.261,82.88,49.660000000000004,0.15,979,3.5,148,2.1 +2013,1,29,23,30,27.5,1.1300000000000001,0.040600000000000004,0.67,86,954,855,1,24,86,954,0,855,0.261,81.24,36.38,0.15,979,3.5,145,2.2 +2013,1,30,0,30,28.3,0.54,0.08990000000000001,0.67,124,933,980,1,24.200000000000003,124,933,0,980,0.261,78.28,23.42,0.15,978,3.7,134,2.2 +2013,1,30,1,30,28.6,0.54,0.0951,0.67,130,941,1050,1,24.200000000000003,130,941,0,1050,0.261,76.98,12.27,0.15,978,3.9000000000000004,129,2.2 +2013,1,30,2,30,28.5,0.52,0.10600000000000001,0.67,136,930,1048,3,24,667,73,0,738,0.261,76.71000000000001,11.58,0.15,978,4.1000000000000005,125,2.2 +2013,1,30,3,30,28.1,0.46,0.1439,0.67,155,881,969,1,23.900000000000002,155,881,0,969,0.262,77.93,22.35,0.15,978,4.3,123,2.3000000000000003 +2013,1,30,4,30,27.3,0.44,0.18380000000000002,0.67,167,809,827,1,23.900000000000002,167,809,0,827,0.262,81.7,35.25,0.15,978,4.5,122,2.4000000000000004 +2013,1,30,5,30,26.200000000000003,0.39,0.22340000000000002,0.67,169,702,634,1,24,169,702,0,634,0.262,87.55,48.53,0.15,978,4.7,122,2.5 +2013,1,30,6,30,25,0.4,0.2771,0.67,159,528,408,1,23.900000000000002,159,528,0,408,0.262,93.51,61.82,0.15,979,4.800000000000001,124,2.4000000000000004 +2013,1,30,7,30,23.900000000000002,0.36,0.26630000000000004,0.67,106,310,186,1,23.6,106,310,0,186,0.262,98.2,74.94,0.15,979,4.800000000000001,127,2.2 +2013,1,30,8,30,23.1,0.35000000000000003,0.1882,0.67,17,20,18,1,23.1,17,20,0,18,0.262,100,87.58,0.15,980,4.800000000000001,128,2 +2013,1,30,9,30,22.6,0.43,0.1403,0.67,0,0,0,0,22.6,0,0,0,0,0.262,100,100.16,0.15,981,4.6000000000000005,127,1.6 +2013,1,30,10,30,22.200000000000003,0.47000000000000003,0.11510000000000001,0.67,0,0,0,0,22.200000000000003,0,0,0,0,0.261,100,111.67,0.15,981,4.4,126,1.1 +2013,1,30,11,30,21.900000000000002,0.48,0.1046,0.67,0,0,0,0,21.900000000000002,0,0,0,0,0.261,100,121.83,0.15,981,4.3,127,0.8 +2013,1,30,12,30,21.700000000000003,0.54,0.1053,0.67,0,0,0,3,21.700000000000003,0,0,0,0,0.26,100,129.82,0.15,981,4.2,127,0.6000000000000001 +2013,1,30,13,30,21.5,0.56,0.09960000000000001,0.67,0,0,0,3,21.5,0,0,0,0,0.26,100,134.44,0.15,980,4,125,0.5 +2013,1,30,14,30,21.400000000000002,0.54,0.0925,0.67,0,0,0,3,21.400000000000002,0,0,0,0,0.26,100,134.66,0.15,980,4,121,0.5 +2013,1,30,15,30,21.3,0.58,0.1027,0.67,0,0,0,3,21.3,0,0,0,0,0.26,100,130.42000000000002,0.15,979,3.9000000000000004,118,0.6000000000000001 +2013,1,30,16,30,21.200000000000003,0.58,0.10650000000000001,0.67,0,0,0,1,21.200000000000003,0,0,0,0,0.26,100,122.7,0.15,980,3.9000000000000004,112,0.6000000000000001 +2013,1,30,17,30,21.1,0.53,0.09960000000000001,0.67,0,0,0,3,21.1,0,0,0,0,0.261,100,112.69,0.15,980,3.9000000000000004,108,0.5 +2013,1,30,18,30,21.1,0.5700000000000001,0.1053,0.67,0,0,0,1,21.1,0,0,0,0,0.261,100,101.29,0.15,981,3.8000000000000003,104,0.6000000000000001 +2013,1,30,19,30,21.700000000000003,0.56,0.1061,0.67,12,33,13,1,21.3,12,33,0,13,0.261,97.72,88.68,0.15,981,3.8000000000000003,98,0.9 +2013,1,30,20,30,22.700000000000003,0.51,0.0956,0.67,65,513,188,1,21.900000000000002,65,513,0,188,0.261,95.16,76.16,0.15,982,3.8000000000000003,87,1.3 +2013,1,30,21,30,23.8,0.5700000000000001,0.081,0.67,86,748,425,1,22.200000000000003,86,748,0,425,0.261,90.64,63.07,0.15,981,3.7,75,1.4000000000000001 +2013,1,30,22,30,24.900000000000002,0.62,0.0781,0.67,100,855,651,1,22,100,855,0,651,0.261,84.03,49.79,0.15,981,3.7,69,1.4000000000000001 +2013,1,30,23,30,25.5,0.64,0.0717,0.67,106,918,844,3,22,298,26,0,318,0.261,81.01,36.52,0.15,981,3.7,68,1.4000000000000001 +2013,1,31,0,30,26.8,0.41000000000000003,0.1254,0.67,145,898,968,1,22.200000000000003,145,898,0,968,0.259,75.87,23.580000000000002,0.15,980,3.8000000000000003,71,1.5 +2013,1,31,1,30,27.400000000000002,0.45,0.11860000000000001,0.67,145,921,1044,3,22.3,130,24,0,154,0.259,73.76,12.51,0.15,980,3.8000000000000003,73,1.5 +2013,1,31,2,30,27.5,0.46,0.1136,0.67,142,925,1047,3,22.3,366,26,0,392,0.258,73.36,11.8,0.15,979,3.9000000000000004,73,1.6 +2013,1,31,3,30,27.400000000000002,0.67,0.0828,0.67,119,938,986,1,22.3,119,938,0,986,0.258,73.61,22.46,0.15,978,4,74,1.7000000000000002 +2013,1,31,4,30,26.900000000000002,0.6900000000000001,0.0849,0.67,113,906,852,1,22.3,113,906,0,852,0.259,75.78,35.33,0.15,978,4,73,1.8 +2013,1,31,5,30,26.1,0.68,0.0819,0.67,102,853,666,1,22.200000000000003,102,853,0,666,0.26,79.25,48.6,0.15,978,4.1000000000000005,72,2 +2013,1,31,6,30,25,0.76,0.09960000000000001,0.67,93,736,440,1,22,93,736,0,440,0.261,83.58,61.89,0.15,978,4.1000000000000005,69,1.9000000000000001 +2013,1,31,7,30,23.700000000000003,0.8,0.1078,0.67,69,529,206,1,21.700000000000003,69,529,0,206,0.262,88.57000000000001,75.02,0.15,978,4.1000000000000005,67,1.5 +2013,1,31,8,30,22.6,0.8,0.09910000000000001,0.67,18,94,21,1,21.400000000000002,18,94,0,21,0.262,93.15,87.67,0.15,979,4,63,1.2000000000000002 +2013,1,31,9,30,21.900000000000002,0.8200000000000001,0.09860000000000001,0.67,0,0,0,0,21,0,0,0,0,0.262,94.53,100.28,0.15,979,3.9000000000000004,58,1 +2013,1,31,10,30,21.3,0.8200000000000001,0.0906,0.67,0,0,0,0,20.700000000000003,0,0,0,0,0.262,96.12,111.82000000000001,0.15,980,3.9000000000000004,52,0.8 +2013,1,31,11,30,20.900000000000002,0.81,0.0804,0.67,0,0,0,0,20.3,0,0,0,0,0.261,96.54,122.02,0.15,979,3.8000000000000003,46,0.7000000000000001 +2013,1,31,12,30,20.5,0.79,0.07440000000000001,0.67,0,0,0,0,20.1,0,0,0,0,0.26,97.53,130.05,0.15,979,3.7,41,0.6000000000000001 +2013,1,31,13,30,20.200000000000003,0.76,0.0711,0.67,0,0,0,1,19.900000000000002,0,0,0,0,0.26,98,134.71,0.15,978,3.6,36,0.6000000000000001 +2013,1,31,14,30,19.900000000000002,0.74,0.0688,0.67,0,0,0,0,19.700000000000003,0,0,0,0,0.259,98.79,134.94,0.15,978,3.5,32,0.6000000000000001 +2013,1,31,15,30,19.700000000000003,0.73,0.0688,0.67,0,0,0,1,19.5,0,0,0,0,0.259,99.04,130.68,0.15,977,3.5,29,0.5 +2013,1,31,16,30,19.5,0.7000000000000001,0.0699,0.67,0,0,0,3,19.5,0,0,0,0,0.259,99.7,122.93,0.15,977,3.5,24,0.5 +2013,1,31,17,30,19.3,0.68,0.07050000000000001,0.67,0,0,0,1,19.3,0,0,0,0,0.26,100,112.9,0.15,977,3.4000000000000004,16,0.6000000000000001 +2013,1,31,18,30,19.400000000000002,0.68,0.0728,0.67,0,0,0,3,19.3,0,0,0,0,0.26,99.52,101.47,0.15,978,3.4000000000000004,6,0.6000000000000001 +2013,1,31,19,30,20.3,0.6900000000000001,0.07400000000000001,0.67,12,60,13,1,19.5,12,60,0,13,0.259,94.89,88.83,0.15,978,3.4000000000000004,179,0.8 +2013,1,31,20,30,21.8,0.71,0.0729,0.67,58,563,191,1,19.900000000000002,58,563,0,191,0.259,88.84,76.3,0.15,978,3.4000000000000004,357,1 +2013,1,31,21,30,23.3,0.76,0.0709,0.67,81,769,427,1,20.1,81,769,0,427,0.26,82.09,63.2,0.15,978,3.4000000000000004,357,1.1 +2013,1,31,22,30,24.6,0.8300000000000001,0.0683,0.67,93,871,654,1,20.400000000000002,93,871,0,654,0.26,77.51,49.93,0.15,978,3.5,355,1.1 +2013,1,31,23,30,25.200000000000003,0.88,0.0655,0.67,101,929,846,1,20.900000000000002,101,929,0,846,0.26,76.99,36.660000000000004,0.15,978,3.5,355,1.1 +2013,2,1,0,30,26.5,0.74,0.1027,0.7000000000000001,128,924,974,1,21.400000000000002,128,924,0,974,0.261,73.62,23.75,0.15,977,3.7,347,1.1 +2013,2,1,1,30,26.900000000000002,0.77,0.1061,0.7000000000000001,133,936,1046,1,21.8,133,936,0,1046,0.262,73.73,12.76,0.15,976,3.8000000000000003,340,1.2000000000000002 +2013,2,1,2,30,27.200000000000003,0.78,0.1068,0.7000000000000001,133,933,1046,1,22,133,933,0,1046,0.262,73.37,12.02,0.15,975,4.1000000000000005,334,1.2000000000000002 +2013,2,1,3,30,27.1,0.81,0.11800000000000001,0.7000000000000001,136,908,974,1,22.200000000000003,136,908,0,974,0.262,74.48,22.57,0.15,974,4.3,333,1.3 +2013,2,1,4,30,26.8,0.84,0.1207,0.7000000000000001,129,871,839,8,22.400000000000002,629,136,0,740,0.261,77.10000000000001,35.410000000000004,0.15,973,4.5,343,1.2000000000000002 +2013,2,1,5,30,26.400000000000002,0.84,0.1174,0.7000000000000001,116,814,654,8,22.900000000000002,428,220,0,573,0.261,81.37,48.67,0.15,973,4.6000000000000005,184,1.2000000000000002 +2013,2,1,6,30,25.700000000000003,0.84,0.11370000000000001,0.7000000000000001,97,716,433,8,23.5,283,220,0,387,0.262,87.71000000000001,61.97,0.15,973,4.5,22,1.2000000000000002 +2013,2,1,7,30,24.700000000000003,0.81,0.11030000000000001,0.7000000000000001,69,521,203,8,23.700000000000003,132,182,3,179,0.263,94.43,75.11,0.15,973,4.4,28,1.1 +2013,2,1,8,30,23.6,0.77,0.10890000000000001,0.7000000000000001,17,77,20,3,23.5,5,0,3,5,0.264,99.45,87.77,0.15,973,4.3,27,1 +2013,2,1,9,30,23.1,0.72,0.10930000000000001,0.7000000000000001,0,0,0,8,23.1,0,0,0,0,0.265,100,100.41,0.15,973,4.1000000000000005,24,1 +2013,2,1,10,30,22.700000000000003,0.68,0.11030000000000001,0.7000000000000001,0,0,0,0,22.700000000000003,0,0,0,0,0.266,100,111.98,0.15,974,3.9000000000000004,20,0.9 +2013,2,1,11,30,22.400000000000002,0.66,0.11470000000000001,0.7000000000000001,0,0,0,8,22.400000000000002,0,0,0,0,0.265,100,122.22,0.15,973,3.8000000000000003,15,0.9 +2013,2,1,12,30,22.1,0.67,0.12760000000000002,0.7000000000000001,0,0,0,3,22.1,0,0,0,0,0.264,100,130.29,0.15,973,3.8000000000000003,185,0.8 +2013,2,1,13,30,21.900000000000002,0.6900000000000001,0.1441,0.7000000000000001,0,0,0,8,21.900000000000002,0,0,0,0,0.263,100,134.99,0.15,973,4,350,0.8 +2013,2,1,14,30,21.8,0.71,0.164,0.7000000000000001,0,0,0,4,21.8,0,0,0,0,0.261,100,135.23,0.15,972,4.2,335,0.9 +2013,2,1,15,30,21.700000000000003,0.73,0.1897,0.7000000000000001,0,0,0,3,21.700000000000003,0,0,0,0,0.26,100,130.95,0.15,972,4.4,322,0.8 +2013,2,1,16,30,21.6,0.73,0.2006,0.7000000000000001,0,0,0,3,21.6,0,0,0,0,0.259,100,123.18,0.15,971,4.2,309,0.8 +2013,2,1,17,30,21.1,0.72,0.185,0.7000000000000001,0,0,0,3,21.1,0,0,0,0,0.259,100,113.11,0.15,972,3.7,291,0.7000000000000001 +2013,2,1,18,30,20.6,0.71,0.1589,0.7000000000000001,0,0,0,1,20.6,0,0,0,0,0.259,100,101.65,0.15,972,3.1,273,0.9 +2013,2,1,19,30,20.400000000000002,0.7000000000000001,0.13820000000000002,0.7000000000000001,9,18,9,1,20.400000000000002,9,18,0,9,0.259,100,88.97,0.15,973,2.6,260,1.4000000000000001 +2013,2,1,20,30,20.700000000000003,0.67,0.1303,0.7000000000000001,70,487,185,1,20.3,70,487,0,185,0.259,97.42,76.45,0.15,973,2.2,251,2 +2013,2,1,21,30,21.8,0.63,0.1297,0.7000000000000001,103,718,425,1,19.5,103,718,0,425,0.259,86.66,63.34,0.15,974,2,248,2.2 +2013,2,1,22,30,23.400000000000002,0.59,0.1255,0.7000000000000001,121,838,659,0,18.900000000000002,121,838,0,659,0.259,75.73,50.06,0.15,974,1.9000000000000001,247,2.4000000000000004 +2013,2,1,23,30,24.200000000000003,0.56,0.11320000000000001,0.7000000000000001,128,913,859,0,18.3,128,913,0,859,0.259,69.56,36.800000000000004,0.15,974,1.9000000000000001,247,2.5 +2013,2,2,0,30,25.3,0.6,0.0732,0.7000000000000001,113,989,1017,0,17.400000000000002,113,989,0,1017,0.258,61.79,23.92,0.15,974,1.7000000000000002,253,3 +2013,2,2,1,30,25.200000000000003,0.67,0.06570000000000001,0.7000000000000001,112,1016,1103,0,16.400000000000002,112,1016,0,1103,0.258,58.02,13.01,0.15,974,1.5,254,3.2 +2013,2,2,2,30,24.900000000000002,0.79,0.0562,0.7000000000000001,106,1029,1112,0,15.100000000000001,106,1029,0,1112,0.258,54.38,12.26,0.15,973,1.4000000000000001,253,3.2 +2013,2,2,3,30,24.6,0.88,0.050100000000000006,0.7000000000000001,100,1026,1047,0,14,100,1026,0,1047,0.258,51.53,22.69,0.15,973,1.3,249,3 +2013,2,2,4,30,24.3,0.9400000000000001,0.0482,0.7000000000000001,93,1002,909,0,13.5,93,1002,0,909,0.259,50.78,35.5,0.15,973,1.3,244,2.6 +2013,2,2,5,30,23.8,0.96,0.0487,0.7000000000000001,86,953,714,0,13.600000000000001,86,953,0,714,0.26,52.89,48.75,0.15,973,1.3,240,2.2 +2013,2,2,6,30,22.8,0.98,0.049,0.7000000000000001,73,867,480,0,14.200000000000001,73,867,0,480,0.261,58.44,62.050000000000004,0.15,973,1.3,238,1.6 +2013,2,2,7,30,21,1,0.0489,0.7000000000000001,54,687,230,0,15.200000000000001,54,687,0,230,0.262,69.41,75.2,0.15,974,1.4000000000000001,239,1.1 +2013,2,2,8,30,19.200000000000003,1.02,0.0489,0.7000000000000001,16,203,24,1,15.4,16,203,0,24,0.263,78.63,87.87,0.15,975,1.5,236,0.8 +2013,2,2,9,30,18.400000000000002,1.04,0.0512,0.7000000000000001,0,0,0,0,14.700000000000001,0,0,0,0,0.263,79.13,100.54,0.15,976,1.7000000000000002,223,0.8 +2013,2,2,10,30,18,1.05,0.057800000000000004,0.7000000000000001,0,0,0,0,14.8,0,0,0,0,0.263,81.78,112.14,0.15,977,1.9000000000000001,202,0.8 +2013,2,2,11,30,17.6,1,0.0712,0.7000000000000001,0,0,0,0,15.4,0,0,0,0,0.263,86.72,122.42,0.15,977,2.2,179,0.8 +2013,2,2,12,30,17.400000000000002,0.88,0.0956,0.7000000000000001,0,0,0,0,15.9,0,0,0,0,0.263,91.01,130.53,0.15,978,2.3000000000000003,161,0.9 +2013,2,2,13,30,17.3,0.75,0.12430000000000001,0.7000000000000001,0,0,0,1,16.5,0,0,0,0,0.263,94.76,135.26,0.15,978,2.4000000000000004,148,1 +2013,2,2,14,30,17.3,0.67,0.1295,0.7000000000000001,0,0,0,0,16.7,0,0,0,0,0.264,96.24000000000001,135.52,0.15,978,2.3000000000000003,141,1 +2013,2,2,15,30,17.1,0.67,0.1193,0.7000000000000001,0,0,0,1,16.6,0,0,0,0,0.264,96.84,131.23,0.15,978,2.3000000000000003,141,0.9 +2013,2,2,16,30,16.7,0.7000000000000001,0.10070000000000001,0.7000000000000001,0,0,0,3,16.2,0,0,0,0,0.265,97.16,123.42,0.15,978,2.2,144,0.7000000000000001 +2013,2,2,17,30,16.3,0.74,0.0828,0.7000000000000001,0,0,0,3,15.8,0,0,0,0,0.265,96.92,113.32000000000001,0.15,978,2.1,147,0.7000000000000001 +2013,2,2,18,30,16.1,0.8,0.0695,0.7000000000000001,0,0,0,1,15.3,0,0,0,0,0.265,95.15,101.84,0.15,979,2,148,0.8 +2013,2,2,19,30,16.8,0.86,0.0597,0.7000000000000001,0,0,0,2,15.100000000000001,0,0,3,0,0.265,89.71000000000001,89.11,0.15,979,1.9000000000000001,150,1 +2013,2,2,20,30,18.2,0.91,0.0526,0.7000000000000001,52,635,199,1,15,52,635,0,199,0.266,81.49,76.60000000000001,0.15,980,1.8,150,1.2000000000000002 +2013,2,2,21,30,19.700000000000003,0.97,0.0472,0.7000000000000001,71,838,445,1,14.4,71,838,0,445,0.266,71.57000000000001,63.480000000000004,0.15,980,1.8,150,1.1 +2013,2,2,22,30,21.400000000000002,1.01,0.045000000000000005,0.7000000000000001,82,934,680,1,14.200000000000001,82,934,0,680,0.266,63.440000000000005,50.2,0.15,980,1.8,171,0.7000000000000001 +2013,2,2,23,30,22.3,1.02,0.046,0.7000000000000001,91,984,877,1,14.8,91,984,0,877,0.265,62.42,36.94,0.15,980,1.8,191,0.4 +2013,2,3,0,30,24.1,0.71,0.0645,0.7000000000000001,109,991,1014,1,15.5,109,991,0,1014,0.265,58.480000000000004,24.09,0.15,979,1.9000000000000001,301,0.6000000000000001 +2013,2,3,1,30,25,0.71,0.0695,0.7000000000000001,115,999,1087,0,16,115,999,0,1087,0.266,57.58,13.27,0.15,978,2,308,0.8 +2013,2,3,2,30,25.400000000000002,0.73,0.07590000000000001,0.7000000000000001,118,989,1084,1,16.400000000000002,118,989,0,1084,0.266,57.660000000000004,12.5,0.15,978,2.2,306,0.8 +2013,2,3,3,30,25.400000000000002,0.78,0.09380000000000001,0.7000000000000001,125,959,1009,1,16.7,125,959,0,1009,0.266,58.44,22.82,0.15,977,2.3000000000000003,308,0.6000000000000001 +2013,2,3,4,30,25.3,0.81,0.1041,0.7000000000000001,123,917,869,1,17.3,123,917,0,869,0.266,61.04,35.59,0.15,977,2.4000000000000004,182,0.4 +2013,2,3,5,30,24.900000000000002,0.8200000000000001,0.111,0.7000000000000001,115,849,674,1,17.8,115,849,0,674,0.265,64.84,48.84,0.15,977,2.6,78,0.5 +2013,2,3,6,30,24.1,0.8300000000000001,0.1269,0.7000000000000001,104,727,443,1,18.2,104,727,0,443,0.265,69.58,62.14,0.15,978,2.6,105,0.9 +2013,2,3,7,30,22.6,0.8200000000000001,0.14200000000000002,0.7000000000000001,77,495,203,1,18,77,495,0,203,0.265,75.48,75.3,0.15,979,2.7,106,1.1 +2013,2,3,8,30,21.1,0.79,0.14650000000000002,0.7000000000000001,16,48,18,1,18.1,16,48,0,18,0.265,82.96000000000001,87.98,0.15,980,2.7,105,1.1 +2013,2,3,9,30,20.3,0.81,0.17750000000000002,0.7000000000000001,0,0,0,0,17.6,0,0,0,0,0.265,84.5,100.68,0.15,981,2.7,106,1.1 +2013,2,3,10,30,19.8,0.78,0.19160000000000002,0.7000000000000001,0,0,0,1,17.3,0,0,0,0,0.264,85.76,112.31,0.15,982,2.7,108,1 +2013,2,3,11,30,19.3,0.75,0.195,0.7000000000000001,0,0,0,1,17.1,0,0,0,0,0.263,87.24,122.63,0.15,983,2.6,113,0.9 +2013,2,3,12,30,18.900000000000002,0.75,0.1899,0.7000000000000001,0,0,0,1,16.900000000000002,0,0,0,0,0.262,88.22,130.78,0.15,983,2.5,123,0.8 +2013,2,3,13,30,18.400000000000002,0.77,0.16690000000000002,0.7000000000000001,0,0,0,1,16.6,0,0,0,0,0.261,89.52,135.55,0.15,983,2.4000000000000004,136,0.7000000000000001 +2013,2,3,14,30,18,0.79,0.1404,0.7000000000000001,0,0,0,0,16.2,0,0,0,0,0.26,89.38,135.82,0.15,982,2.3000000000000003,148,0.7000000000000001 +2013,2,3,15,30,17.5,0.84,0.1158,0.7000000000000001,0,0,0,0,15.8,0,0,0,0,0.26,89.95,131.5,0.15,982,2.2,156,0.7000000000000001 +2013,2,3,16,30,16.900000000000002,0.9,0.09190000000000001,0.7000000000000001,0,0,0,0,15.4,0,0,0,0,0.259,90.71000000000001,123.66,0.15,982,2.2,160,0.7000000000000001 +2013,2,3,17,30,16.3,0.96,0.07440000000000001,0.7000000000000001,0,0,0,0,15,0,0,0,0,0.259,91.89,113.53,0.15,983,2.1,160,0.7000000000000001 +2013,2,3,18,30,16.1,0.98,0.062200000000000005,0.7000000000000001,0,0,0,1,14.700000000000001,0,0,0,0,0.259,91.24,102.02,0.15,983,2.1,163,0.8 +2013,2,3,19,30,17,0.97,0.0551,0.7000000000000001,0,0,0,3,14.8,0,0,3,0,0.258,86.78,89.26,0.15,984,2.2,167,1.1 +2013,2,3,20,30,18.8,0.89,0.054200000000000005,0.7000000000000001,52,613,193,3,15,100,45,3,110,0.258,78.71000000000001,76.75,0.15,985,2.3000000000000003,163,1.6 +2013,2,3,21,30,20.6,0.78,0.0591,0.7000000000000001,76,801,432,2,15.600000000000001,247,82,0,283,0.258,72.84,63.620000000000005,0.15,985,2.4000000000000004,154,2.1 +2013,2,3,22,30,22.200000000000003,0.68,0.0663,0.7000000000000001,94,887,660,3,16.8,389,78,0,439,0.258,71.46000000000001,50.33,0.15,985,2.5,149,2.3000000000000003 +2013,2,3,23,30,22.900000000000002,0.59,0.0736,0.7000000000000001,108,932,851,3,17.6,413,27,0,435,0.258,72.15,37.08,0.15,985,2.6,147,2.3000000000000003 +2013,2,4,0,30,24.1,0.53,0.0815,0.7000000000000001,120,952,988,3,18.1,628,106,0,724,0.258,69.14,24.26,0.16,985,2.8000000000000003,146,2.4000000000000004 +2013,2,4,1,30,24.400000000000002,0.51,0.0852,0.7000000000000001,126,962,1061,3,18.3,565,30,0,594,0.258,68.85000000000001,13.530000000000001,0.16,984,2.9000000000000004,144,2.4000000000000004 +2013,2,4,2,30,24.5,0.49,0.08850000000000001,0.7000000000000001,128,958,1062,3,18.400000000000002,278,31,0,308,0.258,68.7,12.75,0.16,984,3,142,2.5 +2013,2,4,3,30,24.400000000000002,0.59,0.08020000000000001,0.7000000000000001,119,952,996,3,18.400000000000002,339,26,0,363,0.259,69.05,22.96,0.16,984,3,138,2.6 +2013,2,4,4,30,24.1,0.59,0.0761,0.7000000000000001,110,926,862,3,18.2,315,25,0,335,0.26,69.69,35.69,0.16,984,3,134,2.6 +2013,2,4,5,30,23.6,0.58,0.07050000000000001,0.7000000000000001,98,879,675,3,18.1,405,78,0,456,0.261,71.17,48.93,0.16,984,2.9000000000000004,130,2.5 +2013,2,4,6,30,22.900000000000002,0.59,0.068,0.7000000000000001,82,787,449,3,18,148,22,0,159,0.262,74.07000000000001,62.230000000000004,0.16,985,2.9000000000000004,128,2.2 +2013,2,4,7,30,21.6,0.56,0.06910000000000001,0.7000000000000001,60,594,210,3,18,61,5,3,62,0.262,79.99,75.4,0.16,985,2.8000000000000003,128,1.7000000000000002 +2013,2,4,8,30,20.3,0.5,0.07400000000000001,0.7000000000000001,16,93,19,3,17.6,5,0,3,5,0.263,84.62,88.09,0.16,986,2.7,130,1.4000000000000001 +2013,2,4,9,30,19.700000000000003,0.42,0.081,0.7000000000000001,0,0,0,1,17.2,0,0,0,0,0.263,85.31,100.82000000000001,0.16,987,2.6,133,1.4000000000000001 +2013,2,4,10,30,19.200000000000003,0.37,0.0853,0.7000000000000001,0,0,0,1,17,0,0,0,0,0.262,86.84,112.48,0.16,987,2.5,135,1.3 +2013,2,4,11,30,18.7,0.34,0.08900000000000001,0.7000000000000001,0,0,0,1,16.900000000000002,0,0,0,0,0.262,89.03,122.84,0.16,987,2.5,137,1.2000000000000002 +2013,2,4,12,30,18.3,0.33,0.0926,0.7000000000000001,0,0,0,1,16.8,0,0,0,0,0.261,90.87,131.03,0.16,987,2.4000000000000004,138,1.1 +2013,2,4,13,30,18,0.32,0.09570000000000001,0.7000000000000001,0,0,0,0,16.7,0,0,0,0,0.26,92.21000000000001,135.84,0.16,987,2.4000000000000004,140,1.1 +2013,2,4,14,30,17.8,0.31,0.0974,0.7000000000000001,0,0,0,0,16.7,0,0,0,0,0.258,93.07000000000001,136.12,0.16,986,2.3000000000000003,143,1 +2013,2,4,15,30,17.6,0.3,0.09770000000000001,0.7000000000000001,0,0,0,0,16.6,0,0,0,0,0.257,94.15,131.78,0.16,986,2.3000000000000003,146,1 +2013,2,4,16,30,17.3,0.3,0.0978,0.7000000000000001,0,0,0,1,16.6,0,0,0,0,0.256,95.5,123.91,0.16,986,2.2,148,1 +2013,2,4,17,30,17,0.32,0.0949,0.7000000000000001,0,0,0,1,16.400000000000002,0,0,0,0,0.256,96.51,113.75,0.16,986,2.2,151,0.9 +2013,2,4,18,30,16.900000000000002,0.34,0.0897,0.7000000000000001,0,0,0,1,16.3,0,0,0,0,0.256,96.21000000000001,102.21000000000001,0.16,987,2.1,159,0.9 +2013,2,4,19,30,17.7,0.36,0.0862,0.7000000000000001,0,0,0,2,16.3,0,0,3,0,0.256,91.57000000000001,89.4,0.16,987,2.1,166,1.2000000000000002 +2013,2,4,20,30,19.5,0.37,0.08310000000000001,0.7000000000000001,63,540,185,1,16.7,63,540,0,185,0.256,84.05,76.89,0.16,988,2.1,158,1.8 +2013,2,4,21,30,21.200000000000003,0.39,0.0787,0.7000000000000001,87,769,427,1,16.900000000000002,87,769,0,427,0.257,76.60000000000001,63.75,0.16,988,2.1,144,2.3000000000000003 +2013,2,4,22,30,22.400000000000002,0.41000000000000003,0.0738,0.7000000000000001,101,882,662,1,17,101,882,0,662,0.258,71.63,50.46,0.16,988,2.1,136,2.6 +2013,2,4,23,30,22.900000000000002,0.41000000000000003,0.0731,0.7000000000000001,111,940,859,1,17,111,940,0,859,0.258,69.58,37.22,0.16,988,2.1,133,2.7 +2013,2,5,0,30,23.700000000000003,0.4,0.08120000000000001,0.7000000000000001,122,960,996,2,17.2,635,135,0,758,0.258,66.86,24.44,0.16,987,2.3000000000000003,130,2.7 +2013,2,5,1,30,24,0.45,0.0804,0.7000000000000001,124,975,1071,2,17.400000000000002,633,56,0,688,0.258,66.75,13.790000000000001,0.16,986,2.4000000000000004,130,2.7 +2013,2,5,2,30,23.900000000000002,0.45,0.0784,0.7000000000000001,123,975,1073,3,17.6,685,117,0,799,0.258,67.66,13.01,0.16,986,2.5,129,2.7 +2013,2,5,3,30,23.700000000000003,0.41000000000000003,0.11670000000000001,0.7000000000000001,143,927,996,1,17.7,143,927,0,996,0.258,68.97,23.11,0.16,985,2.5,129,2.7 +2013,2,5,4,30,23.3,0.41000000000000003,0.112,0.7000000000000001,132,896,859,3,17.8,425,28,0,447,0.259,71.06,35.800000000000004,0.16,985,2.6,129,2.7 +2013,2,5,5,30,22.700000000000003,0.39,0.1027,0.7000000000000001,116,845,670,3,17.900000000000002,276,25,0,292,0.26,74.44,49.02,0.16,985,2.6,129,2.6 +2013,2,5,6,30,21.900000000000002,0.39,0.0965,0.7000000000000001,96,745,442,4,18.1,181,25,0,193,0.262,78.8,62.33,0.16,986,2.7,130,2.2 +2013,2,5,7,30,20.700000000000003,0.4,0.0879,0.7000000000000001,67,555,205,3,18.3,73,9,3,75,0.263,86.09,75.51,0.16,986,2.6,131,1.5 +2013,2,5,8,30,19.400000000000002,0.39,0.0863,0.7000000000000001,16,65,18,3,18.3,5,0,3,5,0.265,93.13,88.2,0.16,987,2.6,135,1 +2013,2,5,9,30,18.7,0.38,0.0844,0.7000000000000001,0,0,0,3,18,0,0,0,0,0.265,95.53,100.97,0.16,987,2.5,141,0.9 +2013,2,5,10,30,18.1,0.38,0.0823,0.7000000000000001,0,0,0,3,17.7,0,0,0,0,0.265,97.7,112.66,0.16,987,2.4000000000000004,149,0.8 +2013,2,5,11,30,17.6,0.37,0.0859,0.7000000000000001,0,0,0,1,17.5,0,0,0,0,0.264,99.65,123.05,0.16,987,2.4000000000000004,156,0.8 +2013,2,5,12,30,17.2,0.36,0.0913,0.7000000000000001,0,0,0,1,17.2,0,0,0,0,0.264,100,131.29,0.16,987,2.3000000000000003,160,0.8 +2013,2,5,13,30,16.900000000000002,0.35000000000000003,0.0983,0.7000000000000001,0,0,0,3,16.900000000000002,0,0,0,0,0.263,100,136.13,0.16,986,2.3000000000000003,163,0.8 +2013,2,5,14,30,16.7,0.33,0.1075,0.7000000000000001,0,0,0,3,16.7,0,0,0,0,0.263,100,136.42000000000002,0.16,986,2.4000000000000004,165,0.8 +2013,2,5,15,30,16.5,0.33,0.11720000000000001,0.7000000000000001,0,0,0,3,16.5,0,0,0,0,0.263,100,132.06,0.16,985,2.4000000000000004,164,0.8 +2013,2,5,16,30,16.400000000000002,0.33,0.1221,0.7000000000000001,0,0,0,3,16.400000000000002,0,0,0,0,0.263,100,124.15,0.16,985,2.4000000000000004,162,0.8 +2013,2,5,17,30,16.400000000000002,0.32,0.12380000000000001,0.7000000000000001,0,0,0,3,16.400000000000002,0,0,0,0,0.264,100,113.96000000000001,0.16,985,2.4000000000000004,159,0.8 +2013,2,5,18,30,16.400000000000002,0.34,0.12840000000000001,0.7000000000000001,0,0,0,3,16.400000000000002,0,0,0,0,0.263,100,102.39,0.16,985,2.4000000000000004,158,0.8 +2013,2,5,19,30,17.3,0.33,0.1254,0.7000000000000001,0,0,0,2,16.5,0,0,3,0,0.263,95.26,89.54,0.16,986,2.3000000000000003,158,1.1 +2013,2,5,20,30,18.900000000000002,0.33,0.11510000000000001,0.7000000000000001,70,471,176,3,17.2,82,18,3,86,0.263,89.98,77.04,0.16,986,2.3000000000000003,148,1.7000000000000002 +2013,2,5,21,30,20.6,0.36,0.0964,0.7000000000000001,94,736,418,1,17.8,94,736,0,418,0.262,83.96000000000001,63.89,0.16,986,2.3000000000000003,135,2.2 +2013,2,5,22,30,21.900000000000002,0.43,0.0731,0.7000000000000001,99,877,656,1,18,99,877,0,656,0.261,78.33,50.6,0.16,986,2.3000000000000003,130,2.4000000000000004 +2013,2,5,23,30,22.5,0.47000000000000003,0.0664,0.7000000000000001,106,942,855,1,17.8,106,942,0,855,0.261,74.56,37.37,0.16,986,2.3000000000000003,129,2.5 +2013,2,6,0,30,23.6,0.38,0.1003,0.7000000000000001,133,940,987,1,17.7,133,940,0,987,0.26,69.44,24.62,0.16,985,2.4000000000000004,129,2.5 +2013,2,6,1,30,24.1,0.38,0.10400000000000001,0.7000000000000001,139,951,1061,1,17.7,139,951,0,1061,0.26,67.58,14.06,0.16,984,2.5,128,2.5 +2013,2,6,2,30,24.3,0.38,0.10740000000000001,0.7000000000000001,141,949,1064,1,17.7,141,949,0,1064,0.26,66.54,13.27,0.16,984,2.5,127,2.5 +2013,2,6,3,30,24.200000000000003,0.46,0.09770000000000001,0.7000000000000001,131,942,996,1,17.6,131,942,0,996,0.261,66.57000000000001,23.27,0.16,983,2.6,125,2.5 +2013,2,6,4,30,23.8,0.48,0.0984,0.7000000000000001,124,909,861,3,17.6,516,66,0,570,0.262,68.07000000000001,35.910000000000004,0.16,983,2.6,123,2.4000000000000004 +2013,2,6,5,30,23.200000000000003,0.48,0.0921,0.7000000000000001,109,858,671,2,17.6,426,153,0,526,0.263,70.83,49.13,0.16,983,2.6,120,2.3000000000000003 +2013,2,6,6,30,22.400000000000002,0.49,0.0893,0.7000000000000001,92,759,443,1,17.7,92,759,0,443,0.264,74.9,62.43,0.16,983,2.6,118,2 +2013,2,6,7,30,21,0.48,0.08700000000000001,0.7000000000000001,65,558,204,2,18,118,79,3,138,0.265,83.03,75.62,0.16,984,2.6,116,1.4000000000000001 +2013,2,6,8,30,19.700000000000003,0.47000000000000003,0.08370000000000001,0.7000000000000001,15,67,17,1,18,15,67,0,17,0.265,89.88,88.32000000000001,0.16,984,2.6,117,0.9 +2013,2,6,9,30,18.900000000000002,0.46,0.07930000000000001,0.7000000000000001,0,0,0,1,17.7,0,0,0,0,0.264,92.9,101.12,0.16,985,2.6,121,0.8 +2013,2,6,10,30,18.3,0.46,0.0747,0.7000000000000001,0,0,0,1,17.5,0,0,0,0,0.264,95.09,112.84,0.16,985,2.5,125,0.7000000000000001 +2013,2,6,11,30,17.8,0.47000000000000003,0.0707,0.7000000000000001,0,0,0,1,17.2,0,0,0,0,0.263,96.57000000000001,123.27,0.16,985,2.5,130,0.7000000000000001 +2013,2,6,12,30,17.3,0.48,0.0683,0.7000000000000001,0,0,0,1,17,0,0,0,0,0.262,98.36,131.56,0.16,985,2.4000000000000004,136,0.7000000000000001 +2013,2,6,13,30,16.900000000000002,0.48,0.0684,0.7000000000000001,0,0,0,1,16.900000000000002,0,0,0,0,0.261,99.72,136.43,0.16,985,2.4000000000000004,144,0.7000000000000001 +2013,2,6,14,30,16.6,0.47000000000000003,0.0707,0.7000000000000001,0,0,0,0,16.6,0,0,0,0,0.26,100,136.73,0.16,984,2.3000000000000003,152,0.7000000000000001 +2013,2,6,15,30,16.400000000000002,0.46,0.0752,0.7000000000000001,0,0,0,0,16.400000000000002,0,0,0,0,0.26,100,132.35,0.16,984,2.3000000000000003,160,0.7000000000000001 +2013,2,6,16,30,16.2,0.45,0.0804,0.7000000000000001,0,0,0,1,16.2,0,0,0,0,0.26,100,124.4,0.16,983,2.3000000000000003,163,0.7000000000000001 +2013,2,6,17,30,16.1,0.46,0.0838,0.7000000000000001,0,0,0,1,16.1,0,0,0,0,0.26,100,114.17,0.16,984,2.3000000000000003,163,0.7000000000000001 +2013,2,6,18,30,16.2,0.45,0.0882,0.7000000000000001,0,0,0,1,16.2,0,0,0,0,0.259,99.98,102.57000000000001,0.16,984,2.3000000000000003,163,0.7000000000000001 +2013,2,6,19,30,17.2,0.44,0.0922,0.7000000000000001,0,0,0,1,16.3,0,0,0,0,0.259,94.53,89.68,0.16,984,2.2,162,1 +2013,2,6,20,30,19,0.43,0.0947,0.7000000000000001,64,512,178,1,17,64,512,0,178,0.258,88.3,77.18,0.16,985,2.2,151,1.5 +2013,2,6,21,30,20.6,0.46,0.0873,0.7000000000000001,89,751,418,1,17.7,89,751,0,418,0.258,83.35000000000001,64.03,0.16,985,2.3000000000000003,132,1.7000000000000002 +2013,2,6,22,30,21.900000000000002,0.52,0.0726,0.7000000000000001,98,878,654,1,17.8,98,878,0,654,0.258,77.58,50.730000000000004,0.16,985,2.3000000000000003,122,1.8 +2013,2,6,23,30,22.5,0.56,0.0673,0.7000000000000001,105,940,851,3,17.8,527,102,0,607,0.258,74.59,37.51,0.16,985,2.4000000000000004,119,1.8 +2013,2,7,0,30,23.5,0.48,0.0879,0.7000000000000001,124,950,986,2,17.900000000000002,730,106,0,826,0.258,70.67,24.8,0.15,984,2.5,114,2 +2013,2,7,1,30,23.700000000000003,0.54,0.08950000000000001,0.7000000000000001,127,963,1060,2,17.900000000000002,681,164,0,840,0.257,70.08,14.33,0.15,984,2.6,113,2 +2013,2,7,2,30,23.700000000000003,0.55,0.0917,0.7000000000000001,129,960,1062,3,17.900000000000002,410,23,0,433,0.257,70.03,13.540000000000001,0.15,983,2.7,112,2.1 +2013,2,7,3,30,23.6,0.73,0.0838,0.7000000000000001,119,955,996,1,17.900000000000002,119,955,0,996,0.258,70.49,23.43,0.15,983,2.7,111,2.2 +2013,2,7,4,30,23.400000000000002,0.72,0.08410000000000001,0.7000000000000001,113,924,861,3,18,68,6,0,73,0.259,71.87,36.03,0.15,983,2.7,109,2.3000000000000003 +2013,2,7,5,30,23,0.66,0.07680000000000001,0.7000000000000001,100,875,671,3,18,425,154,0,525,0.26,73.58,49.24,0.15,983,2.7,108,2.2 +2013,2,7,6,30,22.3,0.64,0.0716,0.7000000000000001,83,784,444,3,18.1,199,28,0,213,0.261,76.99,62.54,0.15,983,2.7,106,1.8 +2013,2,7,7,30,21,0.61,0.065,0.7000000000000001,58,600,206,1,18.2,58,600,0,206,0.261,84.27,75.74,0.15,984,2.6,107,1.2000000000000002 +2013,2,7,8,30,19.700000000000003,0.59,0.0591,0.7000000000000001,14,102,16,1,18.2,14,102,0,16,0.262,90.95,88.45,0.15,984,2.6,110,0.8 +2013,2,7,9,30,19,0.56,0.057600000000000005,0.7000000000000001,0,0,0,0,17.900000000000002,0,0,0,0,0.261,93.05,101.28,0.15,985,2.5,115,0.7000000000000001 +2013,2,7,10,30,18.6,0.55,0.0584,0.7000000000000001,0,0,0,0,17.6,0,0,0,0,0.261,93.69,113.03,0.15,985,2.5,122,0.8 +2013,2,7,11,30,18.3,0.54,0.0594,0.7000000000000001,0,0,0,3,17.400000000000002,0,0,0,0,0.26,94.22,123.5,0.15,985,2.4000000000000004,129,0.8 +2013,2,7,12,30,17.900000000000002,0.54,0.059300000000000005,0.7000000000000001,0,0,0,0,17.2,0,0,0,0,0.26,95.68,131.83,0.15,985,2.4000000000000004,136,0.7000000000000001 +2013,2,7,13,30,17.6,0.53,0.0592,0.7000000000000001,0,0,0,3,17.1,0,0,0,0,0.259,96.72,136.74,0.15,985,2.4000000000000004,142,0.7000000000000001 +2013,2,7,14,30,17.400000000000002,0.53,0.0596,0.7000000000000001,0,0,0,3,17,0,0,0,0,0.259,97.3,137.04,0.15,984,2.4000000000000004,147,0.7000000000000001 +2013,2,7,15,30,17.1,0.52,0.062,0.7000000000000001,0,0,0,0,16.900000000000002,0,0,0,0,0.259,99.03,132.63,0.15,984,2.4000000000000004,152,0.7000000000000001 +2013,2,7,16,30,16.900000000000002,0.5,0.0653,0.7000000000000001,0,0,0,1,16.900000000000002,0,0,0,0,0.259,100,124.65,0.15,984,2.4000000000000004,155,0.7000000000000001 +2013,2,7,17,30,16.8,0.49,0.06760000000000001,0.7000000000000001,0,0,0,0,16.8,0,0,0,0,0.259,100,114.38,0.15,984,2.4000000000000004,156,0.7000000000000001 +2013,2,7,18,30,16.900000000000002,0.49,0.0695,0.7000000000000001,0,0,0,0,16.900000000000002,0,0,1,0,0.259,99.91,102.75,0.15,985,2.4000000000000004,155,0.7000000000000001 +2013,2,7,19,30,17.900000000000002,0.49,0.0714,0.7000000000000001,0,0,0,3,17.1,0,0,3,0,0.259,94.79,89.81,0.15,985,2.4000000000000004,155,1 +2013,2,7,20,30,19.8,0.5,0.0703,0.7000000000000001,57,552,178,3,17.7,42,0,3,42,0.258,87.94,77.33,0.15,986,2.4000000000000004,145,1.4000000000000001 +2013,2,7,21,30,21.6,0.54,0.0623,0.7000000000000001,78,782,419,1,18.5,78,782,0,419,0.258,82.31,64.16,0.15,986,2.5,127,1.7000000000000002 +2013,2,7,22,30,22.900000000000002,0.62,0.0541,0.7000000000000001,87,893,651,1,18.7,87,893,0,651,0.258,77.16,50.870000000000005,0.15,986,2.6,118,1.9000000000000001 +2013,2,7,23,30,23.400000000000002,0.68,0.049300000000000004,0.7000000000000001,94,954,848,2,18.900000000000002,270,27,0,291,0.258,75.71000000000001,37.660000000000004,0.15,986,2.6,116,2 +2013,2,8,0,30,24.400000000000002,0.58,0.0675,0.7000000000000001,111,962,983,1,19.1,111,962,0,983,0.26,72.33,24.98,0.16,986,2.8000000000000003,115,2.1 +2013,2,8,1,30,24.8,0.62,0.06330000000000001,0.7000000000000001,111,979,1058,3,19.3,143,26,0,169,0.261,71.49,14.61,0.16,985,2.9000000000000004,113,2.2 +2013,2,8,2,30,24.900000000000002,0.66,0.056900000000000006,0.7000000000000001,107,982,1060,3,19.3,158,28,0,186,0.262,71.28,13.82,0.16,985,3.1,111,2.3000000000000003 +2013,2,8,3,30,24.8,0.75,0.052000000000000005,0.7000000000000001,101,972,992,3,19.400000000000002,208,31,0,237,0.263,71.83,23.6,0.16,985,3.2,110,2.3000000000000003 +2013,2,8,4,30,24.5,0.74,0.055,0.7000000000000001,97,937,854,3,19.3,205,30,0,229,0.263,72.94,36.160000000000004,0.16,984,3.4000000000000004,107,2.3000000000000003 +2013,2,8,5,30,23.900000000000002,0.68,0.054,0.7000000000000001,88,884,664,3,19.3,213,26,0,230,0.262,75.5,49.35,0.16,985,3.5,104,2.2 +2013,2,8,6,30,23.1,0.68,0.0584,0.7000000000000001,77,784,437,3,19.3,140,22,0,150,0.261,79.37,62.660000000000004,0.16,985,3.6,100,1.9000000000000001 +2013,2,8,7,30,22,0.66,0.059500000000000004,0.7000000000000001,56,590,200,3,19.6,57,3,3,57,0.26,86.25,75.86,0.16,985,3.6,98,1.2000000000000002 +2013,2,8,8,30,21,0.62,0.060500000000000005,0.7000000000000001,13,87,15,1,19.700000000000003,13,87,0,15,0.26,92.46000000000001,88.57000000000001,0.16,986,3.6,99,0.8 +2013,2,8,9,30,20.400000000000002,0.59,0.06330000000000001,0.7000000000000001,0,0,0,3,19.5,0,0,0,0,0.26,94.75,101.44,0.16,986,3.5,103,0.7000000000000001 +2013,2,8,10,30,20.1,0.56,0.0665,0.7000000000000001,0,0,0,0,19.400000000000002,0,0,0,0,0.261,95.59,113.22,0.16,986,3.5,107,0.7000000000000001 +2013,2,8,11,30,19.8,0.51,0.07200000000000001,0.7000000000000001,0,0,0,0,19.3,0,0,0,0,0.261,96.67,123.73,0.16,986,3.5,111,0.7000000000000001 +2013,2,8,12,30,19.6,0.47000000000000003,0.0784,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.262,97.15,132.1,0.16,986,3.4000000000000004,112,0.7000000000000001 +2013,2,8,13,30,19.5,0.45,0.0838,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.261,97.32000000000001,137.05,0.16,986,3.5,115,0.7000000000000001 +2013,2,8,14,30,19.3,0.42,0.08750000000000001,0.7000000000000001,0,0,0,0,19,0,0,0,0,0.26,98.2,137.35,0.16,985,3.5,121,0.6000000000000001 +2013,2,8,15,30,19.3,0.43,0.0921,0.7000000000000001,0,0,0,0,19,0,0,0,0,0.26,98.23,132.92000000000002,0.16,985,3.5,123,0.7000000000000001 +2013,2,8,16,30,19.3,0.46,0.09230000000000001,0.7000000000000001,0,0,0,1,19,0,0,0,0,0.26,98.26,124.9,0.16,984,3.5,119,0.7000000000000001 +2013,2,8,17,30,19.200000000000003,0.48,0.08850000000000001,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.261,99.2,114.59,0.16,985,3.5,116,0.7000000000000001 +2013,2,8,18,30,19.3,0.52,0.084,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.262,98.7,102.94,0.16,985,3.6,114,0.7000000000000001 +2013,2,8,19,30,20,0.54,0.0761,0.7000000000000001,0,0,0,1,19.3,0,0,0,0,0.263,95.56,89.95,0.16,985,3.6,109,1.1 +2013,2,8,20,30,21.3,0.54,0.0659,0.7000000000000001,54,536,170,1,19.900000000000002,54,536,0,170,0.263,91.85000000000001,77.47,0.16,986,3.6,101,1.6 +2013,2,8,21,30,22.6,0.63,0.049300000000000004,0.7000000000000001,71,779,409,3,20.5,99,19,0,107,0.263,87.77,64.3,0.16,986,3.6,92,2 +2013,2,8,22,30,23.5,0.7000000000000001,0.044700000000000004,0.7000000000000001,82,883,637,3,20.5,114,23,0,129,0.263,83.17,51,0.16,986,3.7,87,2.2 +2013,2,8,23,30,23.900000000000002,0.72,0.0449,0.7000000000000001,90,937,831,3,20.3,375,25,0,395,0.263,80.35000000000001,37.800000000000004,0.16,986,3.7,86,2.2 +2013,2,9,0,30,24.5,0.6,0.0726,0.7000000000000001,113,940,964,3,20.200000000000003,384,24,0,405,0.264,77.07000000000001,25.16,0.16,985,3.8000000000000003,85,2.2 +2013,2,9,1,30,24.8,0.58,0.0794,0.7000000000000001,120,948,1036,3,20.200000000000003,221,32,0,252,0.264,75.63,14.89,0.16,985,3.9000000000000004,85,2.3000000000000003 +2013,2,9,2,30,24.8,0.54,0.0813,0.7000000000000001,122,947,1040,1,20.200000000000003,122,947,0,1040,0.263,75.65,14.11,0.16,984,3.9000000000000004,86,2.3000000000000003 +2013,2,9,3,30,24.6,0.5,0.1092,0.7000000000000001,135,909,966,2,20.200000000000003,595,61,0,651,0.263,76.42,23.78,0.16,984,3.9000000000000004,87,2.3000000000000003 +2013,2,9,4,30,24.200000000000003,0.51,0.1109,0.7000000000000001,128,874,833,3,20.1,541,112,0,631,0.262,78.02,36.300000000000004,0.16,984,3.9000000000000004,87,2.4000000000000004 +2013,2,9,5,30,23.700000000000003,0.49,0.1043,0.7000000000000001,113,821,647,3,20,398,77,0,448,0.262,79.73,49.47,0.16,984,3.8000000000000003,85,2.3000000000000003 +2013,2,9,6,30,23,0.52,0.10300000000000001,0.7000000000000001,95,717,423,3,19.8,269,135,0,331,0.262,82.44,62.78,0.16,984,3.8000000000000003,82,1.9000000000000001 +2013,2,9,7,30,21.900000000000002,0.54,0.096,0.7000000000000001,65,517,191,3,19.8,117,94,3,140,0.263,87.98,75.99,0.16,984,3.7,82,1.3 +2013,2,9,8,30,20.900000000000002,0.51,0.09390000000000001,0.7000000000000001,12,38,13,3,19.700000000000003,6,0,3,6,0.264,92.85000000000001,88.71000000000001,0.16,985,3.6,83,0.8 +2013,2,9,9,30,20.400000000000002,0.49,0.09770000000000001,0.7000000000000001,0,0,0,3,19.3,0,0,0,0,0.263,93.66,101.61,0.16,985,3.5,85,0.7000000000000001 +2013,2,9,10,30,20,0.49,0.0978,0.7000000000000001,0,0,0,1,19,0,0,0,0,0.263,94.18,113.42,0.16,986,3.4000000000000004,84,0.7000000000000001 +2013,2,9,11,30,19.6,0.5,0.0916,0.7000000000000001,0,0,0,1,18.7,0,0,0,0,0.262,94.45,123.96000000000001,0.16,986,3.2,83,0.7000000000000001 +2013,2,9,12,30,19.200000000000003,0.52,0.08360000000000001,0.7000000000000001,0,0,0,0,18.3,0,0,0,0,0.261,94.41,132.38,0.16,985,3,82,0.7000000000000001 +2013,2,9,13,30,18.8,0.54,0.0775,0.7000000000000001,0,0,0,0,17.900000000000002,0,0,0,0,0.261,94.55,137.36,0.16,984,2.8000000000000003,82,0.7000000000000001 +2013,2,9,14,30,18.3,0.56,0.0741,0.7000000000000001,0,0,0,1,17.6,0,0,0,0,0.26,95.56,137.67000000000002,0.16,984,2.7,85,0.7000000000000001 +2013,2,9,15,30,18,0.59,0.0722,0.7000000000000001,0,0,0,1,17.3,0,0,0,0,0.261,95.76,133.21,0.16,983,2.5,91,0.7000000000000001 +2013,2,9,16,30,17.6,0.62,0.07010000000000001,0.7000000000000001,0,0,0,0,17.1,0,0,0,0,0.261,97.09,125.14,0.16,983,2.4000000000000004,98,0.7000000000000001 +2013,2,9,17,30,17.3,0.65,0.0675,0.7000000000000001,0,0,0,0,17,0,0,0,0,0.262,97.91,114.8,0.16,983,2.2,104,0.7000000000000001 +2013,2,9,18,30,17.2,0.67,0.0648,0.7000000000000001,0,0,0,0,16.8,0,0,0,0,0.263,97.51,103.12,0.16,984,2.1,108,0.7000000000000001 +2013,2,9,19,30,18.400000000000002,0.68,0.061900000000000004,0.7000000000000001,0,0,0,0,16.8,0,0,0,0,0.263,90.49,90.08,0.16,984,2.1,108,0.9 +2013,2,9,20,30,20.6,0.71,0.0594,0.7000000000000001,52,581,177,1,17.8,52,581,0,177,0.263,84.13,77.61,0.16,985,2.1,98,1.2000000000000002 +2013,2,9,21,30,22.400000000000002,0.73,0.058,0.7000000000000001,75,799,420,1,17.900000000000002,75,799,0,420,0.264,75.61,64.43,0.16,985,2.1,86,1.5 +2013,2,9,22,30,23.6,0.76,0.0597,0.7000000000000001,90,899,654,1,17.900000000000002,90,899,0,654,0.264,70.28,51.14,0.16,985,2.1,81,1.5 +2013,2,9,23,30,24.1,0.79,0.061500000000000006,0.7000000000000001,100,953,852,1,18,100,953,0,852,0.264,68.78,37.95,0.16,985,2.1,80,1.5 +2013,2,10,0,30,25.3,0.6900000000000001,0.08650000000000001,0.7000000000000001,120,959,987,1,18.2,120,959,0,987,0.263,64.77,25.35,0.14,984,2.2,82,1.4000000000000001 +2013,2,10,1,30,25.900000000000002,0.6900000000000001,0.08900000000000001,0.7000000000000001,125,970,1061,1,18.400000000000002,125,970,0,1061,0.263,63.45,15.17,0.14,983,2.3000000000000003,87,1.3 +2013,2,10,2,30,26.200000000000003,0.6900000000000001,0.0921,0.7000000000000001,127,968,1065,1,18.6,127,968,0,1065,0.263,63.1,14.4,0.14,983,2.3000000000000003,92,1.4000000000000001 +2013,2,10,3,30,26.200000000000003,0.75,0.0918,0.7000000000000001,123,953,994,1,18.7,123,953,0,994,0.263,63.370000000000005,23.96,0.14,982,2.4000000000000004,93,1.4000000000000001 +2013,2,10,4,30,25.700000000000003,0.77,0.0971,0.7000000000000001,119,917,857,0,18.7,119,917,0,857,0.263,65.32000000000001,36.44,0.14,982,2.4000000000000004,91,1.4000000000000001 +2013,2,10,5,30,24.900000000000002,0.8,0.0993,0.7000000000000001,109,858,664,0,18.8,109,858,0,664,0.264,68.72,49.6,0.14,982,2.4000000000000004,85,1.4000000000000001 +2013,2,10,6,30,23.900000000000002,0.84,0.1019,0.7000000000000001,93,749,434,0,19.200000000000003,93,749,0,434,0.264,74.91,62.9,0.14,982,2.5,74,1.2000000000000002 +2013,2,10,7,30,22.5,0.87,0.10260000000000001,0.7000000000000001,65,538,194,0,19.6,65,538,0,194,0.265,83.46000000000001,76.12,0.14,982,2.5,62,0.9 +2013,2,10,8,30,21.400000000000002,0.87,0.1028,0.7000000000000001,11,46,12,0,19.6,11,46,0,12,0.265,89.57000000000001,88.84,0.14,983,2.6,55,0.7000000000000001 +2013,2,10,9,30,20.8,0.86,0.10210000000000001,0.7000000000000001,0,0,0,0,19.200000000000003,0,0,0,0,0.265,90.54,101.78,0.14,983,2.7,55,0.6000000000000001 +2013,2,10,10,30,20.3,0.85,0.1013,0.7000000000000001,0,0,0,0,18.900000000000002,0,0,0,0,0.265,91.92,113.62,0.14,983,2.8000000000000003,59,0.6000000000000001 +2013,2,10,11,30,19.700000000000003,0.8200000000000001,0.0998,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.264,93.76,124.2,0.14,984,2.8000000000000003,65,0.6000000000000001 +2013,2,10,12,30,19.3,0.8,0.10210000000000001,0.7000000000000001,0,0,0,0,18.3,0,0,0,0,0.264,94.03,132.66,0.14,983,2.8000000000000003,73,0.6000000000000001 +2013,2,10,13,30,18.900000000000002,0.8,0.1053,0.7000000000000001,0,0,0,0,18,0,0,0,0,0.264,94.7,137.68,0.14,983,2.8000000000000003,83,0.7000000000000001 +2013,2,10,14,30,18.5,0.8,0.1044,0.7000000000000001,0,0,0,0,17.8,0,0,0,0,0.264,95.88,137.99,0.14,982,2.7,93,0.6000000000000001 +2013,2,10,15,30,18.3,0.81,0.1009,0.7000000000000001,0,0,0,1,17.6,0,0,0,0,0.264,95.8,133.51,0.14,982,2.6,107,0.7000000000000001 +2013,2,10,16,30,17.900000000000002,0.8,0.0949,0.7000000000000001,0,0,0,0,17.3,0,0,0,0,0.265,96.22,125.39,0.14,982,2.5,123,0.7000000000000001 +2013,2,10,17,30,17.6,0.81,0.0892,0.7000000000000001,0,0,0,0,16.900000000000002,0,0,0,0,0.265,95.81,115.02,0.14,983,2.5,136,0.7000000000000001 +2013,2,10,18,30,17.400000000000002,0.8200000000000001,0.08420000000000001,0.7000000000000001,0,0,0,0,16.6,0,0,0,0,0.266,95.13,103.3,0.14,983,2.4000000000000004,149,0.7000000000000001 +2013,2,10,19,30,18.400000000000002,0.8,0.0787,0.7000000000000001,0,0,0,0,16.6,0,0,0,0,0.266,89.2,90.22,0.14,984,2.3000000000000003,156,1.1 +2013,2,10,20,30,20.400000000000002,0.79,0.0736,0.7000000000000001,55,548,171,1,17.1,55,548,0,171,0.267,81.14,77.76,0.14,985,2.3000000000000003,146,1.5 +2013,2,10,21,30,22.1,0.78,0.0692,0.7000000000000001,78,779,413,0,17.1,78,779,0,413,0.268,73.48,64.57000000000001,0.14,985,2.2,131,1.9000000000000001 +2013,2,10,22,30,23.400000000000002,0.76,0.0666,0.7000000000000001,92,884,645,0,17.1,92,884,0,645,0.269,67.61,51.27,0.14,985,2.3000000000000003,124,2.1 +2013,2,10,23,30,23.8,0.76,0.0634,0.7000000000000001,100,945,844,0,17.1,100,945,0,844,0.269,66.2,38.1,0.14,985,2.3000000000000003,120,2.2 +2013,2,11,0,30,24.900000000000002,0.79,0.0611,0.7000000000000001,105,979,988,0,17.3,105,979,0,988,0.27,62.74,25.54,0.16,984,2.3000000000000003,110,2.2 +2013,2,11,1,30,25.400000000000002,0.81,0.0582,0.7000000000000001,106,994,1064,1,17.5,106,994,0,1064,0.269,61.63,15.46,0.16,983,2.4000000000000004,107,2.2 +2013,2,11,2,30,25.700000000000003,0.81,0.0589,0.7000000000000001,107,992,1066,1,17.6,107,992,0,1066,0.269,61.1,14.700000000000001,0.16,983,2.5,107,2.2 +2013,2,11,3,30,25.700000000000003,0.78,0.0702,0.7000000000000001,111,967,993,1,17.7,111,967,0,993,0.27,61.370000000000005,24.16,0.16,982,2.6,108,2.3000000000000003 +2013,2,11,4,30,25.400000000000002,0.77,0.0729,0.7000000000000001,106,932,855,1,17.7,106,932,0,855,0.27,62.52,36.59,0.16,982,2.7,108,2.3000000000000003 +2013,2,11,5,30,24.8,0.76,0.0742,0.7000000000000001,97,873,662,1,17.7,97,873,0,662,0.271,64.8,49.730000000000004,0.16,982,2.8000000000000003,107,2.2 +2013,2,11,6,30,23.8,0.76,0.0777,0.7000000000000001,83,767,431,1,17.900000000000002,83,767,0,431,0.271,69.61,63.03,0.16,982,2.9000000000000004,105,1.9000000000000001 +2013,2,11,7,30,22.3,0.75,0.0761,0.7000000000000001,59,563,192,1,18.5,59,563,0,192,0.272,79.31,76.26,0.16,983,3,102,1.3 +2013,2,11,8,30,21,0.73,0.0733,0.7000000000000001,11,56,12,1,18.8,11,56,0,12,0.272,87.22,88.98,0.16,983,3.1,102,0.9 +2013,2,11,9,30,20.3,0.7000000000000001,0.0736,0.7000000000000001,0,0,0,1,18.7,0,0,0,0,0.271,90.7,101.95,0.16,984,3.1,103,0.8 +2013,2,11,10,30,19.8,0.65,0.07400000000000001,0.7000000000000001,0,0,0,3,18.7,0,0,0,0,0.27,93.36,113.82000000000001,0.16,985,3.1,106,0.8 +2013,2,11,11,30,19.5,0.62,0.0741,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.27,94.85000000000001,124.45,0.16,985,3.1,108,0.8 +2013,2,11,12,30,19.3,0.62,0.07540000000000001,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.269,96.21000000000001,132.95,0.16,984,3.1,108,0.7000000000000001 +2013,2,11,13,30,19.3,0.66,0.0737,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.268,96.47,138,0.16,983,3.1,106,0.7000000000000001 +2013,2,11,14,30,19.1,0.66,0.0693,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.268,97.63,138.32,0.16,983,3.1,107,0.7000000000000001 +2013,2,11,15,30,19,0.71,0.0729,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.269,97.92,133.8,0.16,982,3.1,115,0.7000000000000001 +2013,2,11,16,30,18.8,0.73,0.0748,0.7000000000000001,0,0,0,0,18.6,0,0,0,0,0.27,98.79,125.65,0.16,982,3.1,127,0.6000000000000001 +2013,2,11,17,30,18.6,0.73,0.0724,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.271,99.66,115.23,0.16,983,3.1,138,0.6000000000000001 +2013,2,11,18,30,18.7,0.78,0.0716,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.272,98.43,103.48,0.16,983,3.2,141,0.7000000000000001 +2013,2,11,19,30,19.5,0.8300000000000001,0.0707,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.272,94.04,90.95,0.16,984,3.2,135,1 +2013,2,11,20,30,21,0.84,0.065,0.7000000000000001,51,540,165,1,18.900000000000002,51,540,0,165,0.271,87.68,77.9,0.16,984,3.3000000000000003,123,1.5 +2013,2,11,21,30,22.400000000000002,0.86,0.0632,0.7000000000000001,75,761,400,1,18.900000000000002,75,761,0,400,0.27,80.45,64.7,0.16,985,3.4000000000000004,113,1.8 +2013,2,11,22,30,23.5,0.87,0.06430000000000001,0.7000000000000001,90,863,628,1,18.8,90,863,0,628,0.269,74.76,51.410000000000004,0.16,985,3.5,108,1.9000000000000001 +2013,2,11,23,30,24,0.88,0.062400000000000004,0.7000000000000001,99,922,823,1,18.900000000000002,99,922,0,823,0.269,73.05,38.25,0.16,985,3.5,105,2 +2013,2,12,0,30,25.200000000000003,0.9,0.064,0.7000000000000001,105,953,963,1,19,105,953,0,963,0.268,68.46000000000001,25.73,0.15,984,3.5,103,2.1 +2013,2,12,1,30,25.6,0.88,0.0656,0.7000000000000001,109,966,1039,1,19.1,109,966,0,1039,0.268,67.22,15.75,0.15,983,3.5,102,2.1 +2013,2,12,2,30,25.900000000000002,0.84,0.0655,0.7000000000000001,109,968,1045,8,19.1,635,60,0,693,0.268,66.19,15,0.15,983,3.4000000000000004,101,2.2 +2013,2,12,3,30,25.8,0.77,0.0981,0.7000000000000001,125,929,971,7,19,529,33,0,559,0.268,66.33,24.36,0.15,983,3.3000000000000003,101,2.2 +2013,2,12,4,30,25.400000000000002,0.77,0.10360000000000001,0.7000000000000001,121,892,836,8,18.900000000000002,491,52,0,533,0.269,67.18,36.74,0.15,982,3.3000000000000003,100,2.3000000000000003 +2013,2,12,5,30,24.6,0.74,0.1078,0.7000000000000001,112,827,645,7,18.7,305,28,0,323,0.27,69.77,49.870000000000005,0.15,983,3.3000000000000003,98,2.3000000000000003 +2013,2,12,6,30,23.5,0.75,0.11520000000000001,0.7000000000000001,97,710,418,1,18.6,97,710,0,418,0.272,74.07000000000001,63.17,0.15,983,3.3000000000000003,94,1.9000000000000001 +2013,2,12,7,30,22.3,0.73,0.1164,0.7000000000000001,68,489,183,1,18.7,68,489,0,183,0.273,80.15,76.4,0.15,984,3.3000000000000003,91,1.3 +2013,2,12,8,30,21.200000000000003,0.7000000000000001,0.1107,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.274,85.77,89.12,0.15,985,3.2,92,0.9 +2013,2,12,9,30,20.400000000000002,0.68,0.0989,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.275,88.55,102.13,0.15,985,3.2,96,0.8 +2013,2,12,10,30,19.8,0.67,0.0881,0.7000000000000001,0,0,0,0,18.1,0,0,0,0,0.275,90.09,114.03,0.15,986,3.1,104,0.8 +2013,2,12,11,30,19.3,0.6900000000000001,0.0791,0.7000000000000001,0,0,0,3,17.900000000000002,0,0,0,0,0.275,91.41,124.7,0.15,985,3,114,0.7000000000000001 +2013,2,12,12,30,18.8,0.71,0.0723,0.7000000000000001,0,0,0,0,17.6,0,0,0,0,0.274,92.94,133.24,0.15,985,3,124,0.7000000000000001 +2013,2,12,13,30,18.400000000000002,0.73,0.0689,0.7000000000000001,0,0,0,0,17.400000000000002,0,0,0,0,0.274,94.10000000000001,138.33,0.15,985,2.9000000000000004,134,0.7000000000000001 +2013,2,12,14,30,18,0.73,0.066,0.7000000000000001,0,0,0,0,17.2,0,0,0,0,0.273,95.37,138.65,0.15,984,2.9000000000000004,140,0.7000000000000001 +2013,2,12,15,30,17.7,0.72,0.06380000000000001,0.7000000000000001,0,0,0,0,17.1,0,0,0,0,0.273,96.08,134.09,0.15,983,2.9000000000000004,144,0.7000000000000001 +2013,2,12,16,30,17.400000000000002,0.71,0.0626,0.7000000000000001,0,0,0,0,16.900000000000002,0,0,0,0,0.274,97.09,125.9,0.15,983,2.9000000000000004,148,0.7000000000000001 +2013,2,12,17,30,17.2,0.7000000000000001,0.0616,0.7000000000000001,0,0,0,0,16.900000000000002,0,0,0,0,0.274,97.93,115.44,0.15,984,2.9000000000000004,150,0.8 +2013,2,12,18,30,17.400000000000002,0.7000000000000001,0.061000000000000006,0.7000000000000001,0,0,0,0,16.900000000000002,0,0,0,0,0.274,96.61,103.66,0.15,984,2.9000000000000004,149,0.8 +2013,2,12,19,30,18.400000000000002,0.71,0.058600000000000006,0.7000000000000001,0,0,0,0,17.1,0,0,0,0,0.274,91.95,91.11,0.15,985,3,147,1.2000000000000002 +2013,2,12,20,30,20.200000000000003,0.72,0.0539,0.7000000000000001,49,559,165,1,17.7,49,559,0,165,0.274,85.49,78.04,0.15,986,3,139,1.9000000000000001 +2013,2,12,21,30,21.5,0.77,0.046400000000000004,0.7000000000000001,68,787,403,1,18.2,68,787,0,403,0.274,81.65,64.84,0.15,986,3.1,131,2.5 +2013,2,12,22,30,22.5,0.8200000000000001,0.0408,0.7000000000000001,78,894,634,1,18.5,78,894,0,634,0.274,78.05,51.54,0.15,987,3.1,128,2.8000000000000003 +2013,2,12,23,30,23,0.81,0.0402,0.7000000000000001,86,947,828,1,18.5,86,947,0,828,0.274,75.98,38.4,0.15,987,3.2,127,2.9000000000000004 +2013,2,13,0,30,23.900000000000002,0.66,0.08370000000000001,0.7000000000000001,118,937,961,1,18.6,118,937,0,961,0.274,72.39,25.92,0.15,986,3.2,125,3 +2013,2,13,1,30,24.200000000000003,0.6900000000000001,0.08610000000000001,0.7000000000000001,122,950,1035,3,18.7,620,53,0,671,0.274,71.26,16.04,0.15,985,3.3000000000000003,125,3.1 +2013,2,13,2,30,24.3,0.67,0.0815,0.7000000000000001,120,954,1040,3,18.6,476,22,0,497,0.274,70.48,15.31,0.15,985,3.3000000000000003,124,3.1 +2013,2,13,3,30,24.200000000000003,0.63,0.1043,0.7000000000000001,130,921,967,3,18.400000000000002,296,28,0,322,0.275,70.19,24.57,0.15,985,3.3000000000000003,122,3.2 +2013,2,13,4,30,23.8,0.6,0.10690000000000001,0.7000000000000001,125,886,833,3,18.2,328,24,0,348,0.275,70.76,36.9,0.15,985,3.2,120,3.1 +2013,2,13,5,30,23.1,0.5700000000000001,0.1071,0.7000000000000001,113,826,644,8,17.8,335,35,0,357,0.274,72.25,50.01,0.15,985,3.1,119,2.9000000000000004 +2013,2,13,6,30,22.3,0.5700000000000001,0.10940000000000001,0.7000000000000001,97,717,419,3,17.5,214,38,0,231,0.274,74.42,63.31,0.15,985,2.9000000000000004,119,2.4000000000000004 +2013,2,13,7,30,21.1,0.59,0.1044,0.7000000000000001,66,505,184,3,17.3,83,17,3,87,0.275,78.91,76.55,0.15,985,2.8000000000000003,123,1.7000000000000002 +2013,2,13,8,30,20.1,0.62,0.1003,0.7000000000000001,0,0,0,3,17,0,0,3,0,0.275,82.16,89.26,0.15,986,2.6,128,1.3 +2013,2,13,9,30,19.5,0.65,0.09040000000000001,0.7000000000000001,0,0,0,8,16.6,0,0,0,0,0.275,83.28,102.32000000000001,0.15,987,2.4000000000000004,133,1.1 +2013,2,13,10,30,19,0.67,0.0805,0.7000000000000001,0,0,0,8,16.400000000000002,0,0,0,0,0.275,85.02,114.24000000000001,0.15,987,2.3000000000000003,138,1 +2013,2,13,11,30,18.5,0.67,0.0741,0.7000000000000001,0,0,0,8,16.3,0,0,0,0,0.274,87.19,124.95,0.15,987,2.2,142,0.9 +2013,2,13,12,30,18.1,0.67,0.07010000000000001,0.7000000000000001,0,0,0,8,16.3,0,0,0,0,0.273,88.98,133.54,0.15,987,2.2,143,0.9 +2013,2,13,13,30,17.6,0.66,0.06620000000000001,0.7000000000000001,0,0,0,1,16.2,0,0,0,0,0.272,91.31,138.66,0.15,986,2.1,143,0.9 +2013,2,13,14,30,17.2,0.66,0.0627,0.7000000000000001,0,0,0,1,16.1,0,0,0,0,0.272,93.29,138.98,0.15,985,2.1,145,0.8 +2013,2,13,15,30,16.900000000000002,0.67,0.062200000000000005,0.7000000000000001,0,0,0,3,16.1,0,0,0,0,0.272,95.26,134.39000000000001,0.15,985,2.1,148,0.8 +2013,2,13,16,30,16.7,0.67,0.0618,0.7000000000000001,0,0,0,3,16.2,0,0,0,0,0.273,96.66,126.15,0.15,985,2.1,151,0.8 +2013,2,13,17,30,16.6,0.67,0.0608,0.7000000000000001,0,0,0,1,16.2,0,0,0,0,0.273,97.42,115.65,0.15,985,2.1,151,0.8 +2013,2,13,18,30,16.6,0.6900000000000001,0.060700000000000004,0.7000000000000001,0,0,0,1,16.2,0,0,0,0,0.273,97.53,103.84,0.15,985,2.2,152,0.8 +2013,2,13,19,30,17.5,0.6900000000000001,0.060000000000000005,0.7000000000000001,0,0,0,3,16.400000000000002,0,0,0,0,0.273,93.05,91.26,0.15,986,2.2,152,1.2000000000000002 +2013,2,13,20,30,19.200000000000003,0.68,0.0585,0.7000000000000001,50,561,165,1,16.900000000000002,50,561,0,165,0.274,86.71000000000001,78.18,0.15,986,2.3000000000000003,145,1.9000000000000001 +2013,2,13,21,30,20.900000000000002,0.6900000000000001,0.056600000000000004,0.7000000000000001,73,787,406,1,17.5,73,787,0,406,0.274,81.13,64.97,0.15,986,2.3000000000000003,133,2.3000000000000003 +2013,2,13,22,30,22.400000000000002,0.76,0.0477,0.7000000000000001,82,900,640,1,18,82,900,0,640,0.275,75.96000000000001,51.67,0.15,986,2.4000000000000004,125,2.6 +2013,2,13,23,30,23,0.8,0.0442,0.7000000000000001,89,959,839,1,18.1,89,959,0,839,0.275,73.7,38.550000000000004,0.15,986,2.4000000000000004,122,2.6 +2013,2,14,0,30,24,0.65,0.06720000000000001,0.7000000000000001,109,965,975,1,18,109,965,0,975,0.275,69.24,26.12,0.15,986,2.5,116,2.6 +2013,2,14,1,30,24.3,0.72,0.0641,0.7000000000000001,110,981,1051,1,18,110,981,0,1051,0.275,67.77,16.34,0.15,985,2.6,114,2.5 +2013,2,14,2,30,24.200000000000003,0.75,0.06570000000000001,0.7000000000000001,111,979,1053,1,17.900000000000002,111,979,0,1053,0.274,68.12,15.63,0.15,985,2.7,111,2.5 +2013,2,14,3,30,24.1,0.77,0.1105,0.7000000000000001,132,926,973,8,17.8,629,162,0,776,0.275,67.91,24.78,0.15,984,2.8000000000000003,109,2.4000000000000004 +2013,2,14,4,30,23.900000000000002,0.79,0.1053,0.7000000000000001,122,897,838,8,17.8,535,116,0,627,0.275,68.73,37.07,0.15,984,2.8000000000000003,107,2.3000000000000003 +2013,2,14,5,30,23.6,0.79,0.09380000000000001,0.7000000000000001,105,849,649,8,17.900000000000002,414,181,0,530,0.276,70.52,50.160000000000004,0.15,984,2.8000000000000003,106,2.2 +2013,2,14,6,30,22.8,0.79,0.0821,0.7000000000000001,84,758,423,8,18.1,263,158,0,333,0.277,74.8,63.46,0.15,984,2.8000000000000003,105,1.9000000000000001 +2013,2,14,7,30,21.400000000000002,0.78,0.0708,0.7000000000000001,56,568,187,8,18.5,112,122,3,140,0.277,83.51,76.7,0.15,985,2.7,104,1.2000000000000002 +2013,2,14,8,30,20.200000000000003,0.74,0.0634,0.7000000000000001,0,0,0,8,18.6,0,0,3,0,0.277,90.53,89.41,0.15,985,2.7,105,0.8 +2013,2,14,9,30,19.6,0.71,0.0609,0.7000000000000001,0,0,0,1,18.5,0,0,0,0,0.277,93.26,102.5,0.15,986,2.7,106,0.8 +2013,2,14,10,30,19.400000000000002,0.6900000000000001,0.0636,0.7000000000000001,0,0,0,8,18.5,0,0,0,0,0.277,94.29,114.46000000000001,0.15,986,2.7,108,0.7000000000000001 +2013,2,14,11,30,19.3,0.6900000000000001,0.06570000000000001,0.7000000000000001,0,0,0,1,18.5,0,0,0,0,0.277,95.07000000000001,125.2,0.15,986,2.7,108,0.7000000000000001 +2013,2,14,12,30,19.200000000000003,0.72,0.0712,0.7000000000000001,0,0,0,1,18.5,0,0,0,0,0.276,95.71000000000001,133.84,0.15,986,2.7,110,0.7000000000000001 +2013,2,14,13,30,19.1,0.73,0.0719,0.7000000000000001,0,0,0,8,18.400000000000002,0,0,0,0,0.275,95.98,139,0.15,985,2.7,114,0.7000000000000001 +2013,2,14,14,30,18.900000000000002,0.7000000000000001,0.0685,0.7000000000000001,0,0,0,3,18.400000000000002,0,0,0,0,0.275,96.8,139.31,0.15,984,2.7,118,0.7000000000000001 +2013,2,14,15,30,18.7,0.72,0.06960000000000001,0.7000000000000001,0,0,0,8,18.3,0,0,0,0,0.276,97.74000000000001,134.69,0.15,984,2.8000000000000003,121,0.7000000000000001 +2013,2,14,16,30,18.6,0.75,0.0713,0.7000000000000001,0,0,0,4,18.3,0,0,0,0,0.276,97.9,126.4,0.15,983,2.9000000000000004,123,0.8 +2013,2,14,17,30,18.6,0.76,0.07100000000000001,0.7000000000000001,0,0,0,4,18.3,0,0,0,0,0.277,97.85000000000001,115.86,0.15,984,3,125,0.8 +2013,2,14,18,30,18.6,0.77,0.0714,0.7000000000000001,0,0,0,4,18.2,0,0,0,0,0.277,97.81,104.01,0.15,984,3.1,128,0.8 +2013,2,14,19,30,19.1,0.78,0.0713,0.7000000000000001,0,0,0,8,18.3,0,0,0,0,0.278,95.28,91.42,0.15,985,3.2,129,1.1 +2013,2,14,20,30,20.1,0.78,0.0699,0.7000000000000001,52,517,156,8,18.8,92,80,3,108,0.278,92.39,78.32000000000001,0.15,986,3.3000000000000003,129,1.5 +2013,2,14,21,30,21.200000000000003,0.81,0.0645,0.7000000000000001,75,755,393,8,19.200000000000003,239,118,0,289,0.278,88.64,65.1,0.15,986,3.3000000000000003,125,1.9000000000000001 +2013,2,14,22,30,22.3,0.85,0.0585,0.7000000000000001,86,867,622,8,19.400000000000002,384,102,0,447,0.278,83.91,51.81,0.15,986,3.4000000000000004,119,2.3000000000000003 +2013,2,14,23,30,22.8,0.87,0.056600000000000004,0.7000000000000001,95,924,816,8,19.200000000000003,471,51,0,511,0.278,80.25,38.7,0.15,986,3.5,116,2.4000000000000004 +2013,2,15,0,30,23.6,0.79,0.0621,0.7000000000000001,105,949,956,8,18.900000000000002,329,26,0,353,0.277,75.16,26.310000000000002,0.16,985,3.6,113,2.5 +2013,2,15,1,30,23.8,0.81,0.0618,0.7000000000000001,107,963,1030,8,18.8,478,22,0,500,0.276,73.82000000000001,16.64,0.16,985,3.7,111,2.5 +2013,2,15,2,30,23.8,0.8,0.0639,0.7000000000000001,109,961,1032,7,18.7,256,31,0,285,0.275,73.37,15.950000000000001,0.16,984,3.8000000000000003,109,2.5 +2013,2,15,3,30,23.5,0.81,0.0678,0.7000000000000001,108,944,964,6,18.7,196,31,0,223,0.275,74.61,25.01,0.16,984,3.8000000000000003,106,2.5 +2013,2,15,4,30,22.900000000000002,0.8,0.07440000000000001,0.7000000000000001,106,906,827,8,18.8,146,28,0,168,0.274,77.47,37.24,0.16,984,3.9000000000000004,103,2.4000000000000004 +2013,2,15,5,30,22.200000000000003,0.78,0.0765,0.7000000000000001,97,847,638,8,18.8,112,23,0,127,0.275,81.09,50.31,0.16,984,3.9000000000000004,101,2.2 +2013,2,15,6,30,21.3,0.78,0.076,0.7000000000000001,81,746,413,8,19.1,210,37,0,227,0.276,87.36,63.61,0.16,984,3.9000000000000004,102,1.8 +2013,2,15,7,30,20.3,0.79,0.0729,0.7000000000000001,56,542,179,7,19.400000000000002,82,18,3,86,0.276,94.56,76.86,0.16,984,3.8000000000000003,105,1.3 +2013,2,15,8,30,19.6,0.79,0.0703,0.7000000000000001,0,0,0,8,19.3,0,0,3,0,0.277,98.33,89.55,0.16,985,3.8000000000000003,111,1 +2013,2,15,9,30,19.200000000000003,0.77,0.0714,0.7000000000000001,0,0,0,4,19.200000000000003,0,0,0,0,0.277,99.97,102.7,0.16,985,3.8000000000000003,120,0.9 +2013,2,15,10,30,18.900000000000002,0.72,0.0723,0.7000000000000001,0,0,0,4,18.900000000000002,0,0,0,0,0.277,100,114.68,0.16,986,3.7,125,0.8 +2013,2,15,11,30,18.7,0.66,0.0711,0.7000000000000001,0,0,0,4,18.7,0,0,0,0,0.276,100,125.47,0.16,985,3.7,128,0.8 +2013,2,15,12,30,18.5,0.66,0.07400000000000001,0.7000000000000001,0,0,0,3,18.5,0,0,0,0,0.276,100,134.15,0.16,985,3.6,130,0.8 +2013,2,15,13,30,18.400000000000002,0.64,0.0736,0.7000000000000001,0,0,0,3,18.400000000000002,0,0,0,0,0.275,100,139.33,0.16,985,3.6,133,0.8 +2013,2,15,14,30,18.400000000000002,0.63,0.0713,0.7000000000000001,0,0,0,4,18.400000000000002,0,0,0,0,0.275,100,139.65,0.16,984,3.6,133,0.8 +2013,2,15,15,30,18.3,0.67,0.0775,0.7000000000000001,0,0,0,3,18.3,0,0,0,0,0.275,100,134.99,0.16,984,3.6,133,0.9 +2013,2,15,16,30,18.3,0.6900000000000001,0.0787,0.7000000000000001,0,0,0,3,18.3,0,0,0,0,0.277,100,126.65,0.16,983,3.6,134,0.9 +2013,2,15,17,30,18.3,0.71,0.07490000000000001,0.7000000000000001,0,0,0,3,18.3,0,0,0,0,0.278,100,116.06,0.16,983,3.7,133,1 +2013,2,15,18,30,18.400000000000002,0.78,0.0789,0.7000000000000001,0,0,0,4,18.400000000000002,0,0,0,0,0.278,100,104.19,0.16,984,3.7,134,1 +2013,2,15,19,30,18.7,0.8,0.0762,0.7000000000000001,0,0,0,8,18.5,0,0,0,0,0.278,98.77,91.57000000000001,0.16,984,3.7,135,1.2000000000000002 +2013,2,15,20,30,19.400000000000002,0.8,0.0737,0.7000000000000001,52,500,152,8,19,50,0,3,50,0.278,97.52,78.45,0.16,985,3.8000000000000003,135,1.7000000000000002 +2013,2,15,21,30,20.200000000000003,0.84,0.0755,0.7000000000000001,78,731,385,1,19.5,78,731,0,385,0.278,95.46000000000001,65.23,0.16,985,3.8000000000000003,132,2 +2013,2,15,22,30,21,0.87,0.0732,0.7000000000000001,93,844,613,8,19.8,252,25,0,268,0.278,92.64,51.94,0.16,985,3.8000000000000003,129,2.2 +2013,2,15,23,30,21.400000000000002,0.89,0.0717,0.7000000000000001,103,904,807,8,19.6,433,35,0,460,0.278,89.65,38.85,0.16,985,3.9000000000000004,127,2.2 +2013,2,16,0,30,22.200000000000003,0.93,0.06860000000000001,0.7000000000000001,107,940,948,7,19.200000000000003,497,29,0,523,0.278,83.37,26.51,0.16,985,3.9000000000000004,123,2.3000000000000003 +2013,2,16,1,30,22.6,0.9400000000000001,0.0665,0.7000000000000001,109,957,1024,8,18.900000000000002,625,59,0,681,0.277,79.71000000000001,16.94,0.16,984,3.9000000000000004,121,2.4000000000000004 +2013,2,16,2,30,22.6,0.93,0.0637,0.7000000000000001,108,960,1029,4,18.7,532,26,0,557,0.277,78.79,16.27,0.16,984,3.9000000000000004,119,2.4000000000000004 +2013,2,16,3,30,22.5,0.91,0.0649,0.7000000000000001,106,945,961,4,18.6,311,27,0,336,0.276,78.49,25.240000000000002,0.16,984,3.9000000000000004,116,2.4000000000000004 +2013,2,16,4,30,22.3,0.93,0.061200000000000004,0.7000000000000001,98,920,829,8,18.400000000000002,277,26,0,298,0.276,78.74,37.42,0.16,983,3.8000000000000003,114,2.3000000000000003 +2013,2,16,5,30,22,0.96,0.055600000000000004,0.7000000000000001,86,873,642,8,18.3,404,120,0,481,0.277,79.57000000000001,50.47,0.16,983,3.7,114,2.1 +2013,2,16,6,30,21.5,0.96,0.052700000000000004,0.7000000000000001,71,780,416,4,18.2,151,22,0,161,0.277,81.65,63.76,0.16,984,3.7,114,1.6 +2013,2,16,7,30,20.6,0.9500000000000001,0.0502,0.7000000000000001,49,585,181,4,18.6,57,3,3,58,0.277,88.15,77.02,0.16,984,3.6,116,1 +2013,2,16,8,30,19.8,0.92,0.048600000000000004,0.7000000000000001,0,0,0,1,18.6,0,0,0,0,0.277,92.9,89.7,0.16,984,3.6,122,0.7000000000000001 +2013,2,16,9,30,19.400000000000002,0.88,0.048400000000000006,0.7000000000000001,0,0,0,4,18.6,0,0,0,0,0.277,94.89,102.89,0.16,985,3.6,126,0.7000000000000001 +2013,2,16,10,30,19.1,0.85,0.0477,0.7000000000000001,0,0,0,4,18.5,0,0,0,0,0.277,96.39,114.91,0.16,985,3.6,126,0.8 +2013,2,16,11,30,18.900000000000002,0.8200000000000001,0.0466,0.7000000000000001,0,0,0,4,18.5,0,0,0,0,0.277,97.43,125.73,0.16,985,3.6,126,0.9 +2013,2,16,12,30,18.8,0.8200000000000001,0.049600000000000005,0.7000000000000001,0,0,0,4,18.5,0,0,0,0,0.277,97.99000000000001,134.46,0.16,984,3.6,128,1 +2013,2,16,13,30,18.7,0.81,0.054200000000000005,0.7000000000000001,0,0,0,4,18.5,0,0,0,0,0.276,98.7,139.68,0.16,984,3.6,133,1 +2013,2,16,14,30,18.5,0.76,0.056,0.7000000000000001,0,0,0,1,18.400000000000002,0,0,0,0,0.276,99.61,139.99,0.16,983,3.6,138,1 +2013,2,16,15,30,18.400000000000002,0.76,0.0637,0.7000000000000001,0,0,0,1,18.400000000000002,0,0,0,0,0.276,99.75,135.29,0.16,983,3.6,141,1 +2013,2,16,16,30,18.2,0.74,0.0688,0.7000000000000001,0,0,0,4,18.2,0,0,0,0,0.277,100,126.9,0.16,983,3.6,144,1 +2013,2,16,17,30,18.1,0.71,0.0722,0.7000000000000001,0,0,0,4,18.1,0,0,0,0,0.277,100,116.27,0.16,983,3.7,146,1 +2013,2,16,18,30,18.1,0.72,0.0794,0.7000000000000001,0,0,0,4,18.1,0,0,0,0,0.278,99.8,104.37,0.16,983,3.7,147,1 +2013,2,16,19,30,18.5,0.71,0.08,0.7000000000000001,0,0,0,4,18.1,0,0,0,0,0.279,97.42,91.72,0.16,984,3.7,145,1.4000000000000001 +2013,2,16,20,30,19.400000000000002,0.6900000000000001,0.0763,0.7000000000000001,52,488,149,4,18.6,77,27,1,83,0.28,94.95,78.59,0.16,985,3.7,142,2 +2013,2,16,21,30,20.400000000000002,0.74,0.07010000000000001,0.7000000000000001,77,734,383,3,19.1,216,60,0,242,0.28,92.09,65.36,0.16,985,3.8000000000000003,137,2.4000000000000004 +2013,2,16,22,30,21.400000000000002,0.76,0.06910000000000001,0.7000000000000001,92,845,611,8,19.200000000000003,357,61,0,394,0.279,87.53,52.08,0.16,985,3.8000000000000003,131,2.7 +2013,2,16,23,30,21.900000000000002,0.74,0.0729,0.7000000000000001,104,902,805,8,19.200000000000003,462,47,0,499,0.279,84.43,39.01,0.16,985,3.8000000000000003,128,2.8000000000000003 +2013,2,17,0,30,23.1,0.68,0.0844,0.7000000000000001,117,923,942,8,19,557,49,0,601,0.277,77.91,26.72,0.16,985,3.9000000000000004,120,2.8000000000000003 +2013,2,17,1,30,23.3,0.63,0.0922,0.7000000000000001,126,932,1016,8,18.900000000000002,691,158,0,841,0.275,76.21000000000001,17.240000000000002,0.16,984,3.9000000000000004,115,2.8000000000000003 +2013,2,17,2,30,23.200000000000003,0.58,0.09480000000000001,0.7000000000000001,128,930,1020,8,18.8,597,43,0,638,0.274,76.35000000000001,16.6,0.16,983,3.9000000000000004,111,2.8000000000000003 +2013,2,17,3,30,23,0.5,0.1102,0.7000000000000001,134,901,948,8,18.900000000000002,372,24,0,394,0.273,77.88,25.47,0.16,983,3.9000000000000004,109,2.9000000000000004 +2013,2,17,4,30,22.5,0.49,0.1075,0.7000000000000001,125,869,814,8,19,524,101,0,604,0.273,80.39,37.61,0.16,983,3.9000000000000004,108,2.7 +2013,2,17,5,30,21.900000000000002,0.49,0.10060000000000001,0.7000000000000001,110,814,626,8,19,236,25,0,252,0.273,83.81,50.64,0.16,983,3.9000000000000004,107,2.5 +2013,2,17,6,30,21.1,0.55,0.09290000000000001,0.7000000000000001,89,716,403,8,19.200000000000003,223,49,0,244,0.273,89.01,63.93,0.16,983,3.8000000000000003,107,2 +2013,2,17,7,30,20.200000000000003,0.6,0.08070000000000001,0.7000000000000001,58,513,171,7,19.3,87,26,3,92,0.273,94.51,77.19,0.16,983,3.8000000000000003,108,1.5 +2013,2,17,8,30,19.5,0.58,0.0806,0.7000000000000001,0,0,0,7,19.1,0,0,3,0,0.274,97.78,89.86,0.16,984,3.7,111,1.1 +2013,2,17,9,30,19.3,0.55,0.08650000000000001,0.7000000000000001,0,0,0,7,19,0,0,0,0,0.273,98.12,103.09,0.16,984,3.7,115,1 +2013,2,17,10,30,19.200000000000003,0.55,0.0876,0.7000000000000001,0,0,0,7,18.900000000000002,0,0,0,0,0.273,98.31,115.14,0.16,984,3.6,119,1 +2013,2,17,11,30,19.1,0.54,0.0852,0.7000000000000001,0,0,0,7,18.900000000000002,0,0,0,0,0.272,98.84,126,0.16,984,3.6,121,1 +2013,2,17,12,30,19.1,0.52,0.0889,0.7000000000000001,0,0,0,8,18.900000000000002,0,0,0,0,0.271,98.68,134.77,0.16,983,3.6,122,1.1 +2013,2,17,13,30,19.1,0.48,0.0951,0.7000000000000001,0,0,0,7,18.900000000000002,0,0,0,0,0.271,98.59,140.02,0.16,983,3.5,121,1.1 +2013,2,17,14,30,19.1,0.44,0.10450000000000001,0.7000000000000001,0,0,0,8,18.8,0,0,0,0,0.271,98.3,140.33,0.16,982,3.5,119,1.1 +2013,2,17,15,30,19,0.4,0.12090000000000001,0.7000000000000001,0,0,0,3,18.8,0,0,0,0,0.271,98.57000000000001,135.59,0.16,981,3.4000000000000004,118,1.2000000000000002 +2013,2,17,16,30,18.900000000000002,0.36,0.1311,0.7000000000000001,0,0,0,4,18.7,0,0,0,0,0.272,98.67,127.15,0.16,981,3.4000000000000004,115,1.2000000000000002 +2013,2,17,17,30,18.900000000000002,0.34,0.14170000000000002,0.7000000000000001,0,0,0,4,18.7,0,0,0,0,0.273,98.51,116.48,0.16,982,3.4000000000000004,112,1.1 +2013,2,17,18,30,18.900000000000002,0.34,0.15430000000000002,0.7000000000000001,0,0,0,8,18.7,0,0,0,0,0.273,98.47,104.54,0.16,983,3.5,111,1.1 +2013,2,17,19,30,19.400000000000002,0.32,0.1542,0.7000000000000001,0,0,0,7,18.8,0,0,0,0,0.274,96.05,91.88,0.16,983,3.5,115,1.4000000000000001 +2013,2,17,20,30,20.200000000000003,0.3,0.1505,0.7000000000000001,69,345,137,7,19.3,8,0,3,8,0.274,94.63,78.73,0.16,984,3.6,118,1.8 +2013,2,17,21,30,21.1,0.32,0.134,0.7000000000000001,104,634,367,6,19.900000000000002,19,0,0,19,0.273,92.75,65.49,0.16,984,3.8000000000000003,117,2.1 +2013,2,17,22,30,21.900000000000002,0.39,0.0916,0.7000000000000001,105,812,602,6,20.3,110,23,0,124,0.273,90.65,52.21,0.16,983,3.9000000000000004,114,2.4000000000000004 +2013,2,17,23,30,22.3,0.43,0.0787,0.7000000000000001,109,888,798,6,20.400000000000002,254,27,0,275,0.273,88.88,39.160000000000004,0.16,983,4,111,2.6 +2013,2,18,0,30,22.900000000000002,0.36,0.0922,0.7000000000000001,124,906,933,6,20.3,113,21,0,132,0.271,85.16,26.92,0.16,982,4.3,106,2.9000000000000004 +2013,2,18,1,30,22.700000000000003,0.36,0.0999,0.7000000000000001,133,915,1005,6,20.1,126,24,0,149,0.27,85.5,17.55,0.16,981,4.4,107,3 +2013,2,18,2,30,22.3,0.33,0.1034,0.7000000000000001,135,912,1007,6,20.1,103,18,0,121,0.268,87.61,16.94,0.16,981,4.5,109,2.9000000000000004 +2013,2,18,3,30,21.900000000000002,0.33,0.1095,0.7000000000000001,135,891,938,6,20.3,149,28,0,174,0.266,90.59,25.72,0.16,980,4.5,112,2.7 +2013,2,18,4,30,21.6,0.31,0.1131,0.7000000000000001,129,852,802,6,20.5,92,17,0,106,0.263,93.35000000000001,37.800000000000004,0.16,980,4.6000000000000005,115,2.6 +2013,2,18,5,30,21.200000000000003,0.29,0.115,0.7000000000000001,118,785,614,6,20.6,125,25,0,141,0.26,96.4,50.81,0.16,980,4.6000000000000005,117,2.5 +2013,2,18,6,30,20.8,0.34,0.1145,0.7000000000000001,98,670,391,6,20.6,101,20,0,110,0.258,98.83,64.09,0.16,980,4.6000000000000005,117,2.3000000000000003 +2013,2,18,7,30,20.5,0.31,0.12430000000000001,0.7000000000000001,69,415,159,6,20.5,41,0,3,41,0.256,100,77.36,0.16,980,4.6000000000000005,118,2.1 +2013,2,18,8,30,20.3,0.26,0.1306,0.7000000000000001,0,0,0,6,20.3,0,0,0,0,0.256,100,90.02,0.16,980,4.7,120,2 +2013,2,18,9,30,20.400000000000002,0.31,0.1408,0.7000000000000001,0,0,0,6,20.400000000000002,0,0,0,0,0.257,100,103.3,0.16,981,4.800000000000001,122,1.9000000000000001 +2013,2,18,10,30,20.5,0.27,0.14700000000000002,0.7000000000000001,0,0,0,6,20.5,0,0,0,0,0.259,100,115.37,0.16,981,4.800000000000001,121,1.9000000000000001 +2013,2,18,11,30,20.5,0.23,0.1418,0.7000000000000001,0,0,0,6,20.5,0,0,0,0,0.26,100,126.27,0.16,981,4.7,118,1.9000000000000001 +2013,2,18,12,30,20.5,0.3,0.1404,0.7000000000000001,0,0,0,8,20.5,0,0,0,0,0.261,100,135.08,0.16,980,4.7,119,1.8 +2013,2,18,13,30,20.5,0.29,0.12940000000000002,0.7000000000000001,0,0,0,7,20.5,0,0,0,0,0.262,100,140.37,0.16,979,4.7,120,1.8 +2013,2,18,14,30,20.5,0.28,0.1269,0.7000000000000001,0,0,0,7,20.5,0,0,0,0,0.264,100,140.68,0.16,979,4.800000000000001,120,1.9000000000000001 +2013,2,18,15,30,20.5,0.35000000000000003,0.1355,0.7000000000000001,0,0,0,8,20.5,0,0,0,0,0.266,100,135.89000000000001,0.16,978,4.800000000000001,122,2 +2013,2,18,16,30,20.400000000000002,0.32,0.14170000000000002,0.7000000000000001,0,0,0,8,20.400000000000002,0,0,0,0,0.268,100,127.4,0.16,977,4.9,125,2 +2013,2,18,17,30,20.400000000000002,0.28,0.1421,0.7000000000000001,0,0,0,3,20.400000000000002,0,0,0,0,0.269,100,116.68,0.16,977,4.9,127,1.9000000000000001 +2013,2,18,18,30,20.400000000000002,0.34,0.1529,0.7000000000000001,0,0,0,7,20.400000000000002,0,0,0,0,0.27,100,104.71000000000001,0.16,977,4.9,126,1.9000000000000001 +2013,2,18,19,30,20.6,0.33,0.1423,0.7000000000000001,0,0,0,7,20.5,0,0,0,0,0.271,99.42,92.03,0.16,978,4.9,124,2.1 +2013,2,18,20,30,21,0.34,0.1305,0.7000000000000001,64,364,134,7,20.700000000000003,22,0,3,22,0.27,98.28,78.86,0.16,978,4.800000000000001,119,2.3000000000000003 +2013,2,18,21,30,21.3,0.35000000000000003,0.1278,0.7000000000000001,100,632,361,7,21,57,8,0,60,0.269,97.88,65.62,0.16,979,4.800000000000001,116,2.5 +2013,2,18,22,30,21.700000000000003,0.32,0.11270000000000001,0.7000000000000001,115,777,589,8,21,263,26,0,279,0.268,95.91,52.35,0.16,979,4.7,117,2.7 +2013,2,18,23,30,21.900000000000002,0.3,0.1115,0.7000000000000001,127,846,782,8,21,335,24,0,354,0.269,94.45,39.32,0.16,979,4.7,118,2.9000000000000004 +2013,2,19,0,30,22.900000000000002,0.29,0.12480000000000001,0.7000000000000001,143,872,919,8,20.8,365,24,0,386,0.27,87.8,27.13,0.16,977,4.7,117,3.4000000000000004 +2013,2,19,1,30,23.1,0.29,0.1291,0.7000000000000001,150,886,993,4,20.5,388,24,0,410,0.271,85.53,17.87,0.16,976,4.7,120,3.5 +2013,2,19,2,30,23.1,0.27,0.1323,0.7000000000000001,152,884,996,4,20.400000000000002,220,32,0,250,0.272,84.67,17.28,0.16,976,4.7,123,3.4000000000000004 +2013,2,19,3,30,22.700000000000003,0.22,0.1593,0.7000000000000001,164,843,922,4,20.3,167,30,0,194,0.274,86.16,25.97,0.16,975,4.7,128,3.2 +2013,2,19,4,30,22.200000000000003,0.22,0.16290000000000002,0.7000000000000001,156,801,788,8,20.200000000000003,362,24,0,381,0.276,88.66,38,0.16,975,4.7,134,3 +2013,2,19,5,30,21.6,0.22,0.1504,0.7000000000000001,135,743,603,8,20.200000000000003,273,25,0,289,0.277,92,50.99,0.16,976,4.6000000000000005,141,2.8000000000000003 +2013,2,19,6,30,20.900000000000002,0.26,0.13440000000000002,0.7000000000000001,106,640,384,8,20.200000000000003,154,23,0,164,0.278,95.62,64.26,0.16,976,4.5,148,2.5 +2013,2,19,7,30,20.3,0.3,0.1211,0.7000000000000001,67,416,157,8,20,59,4,3,59,0.279,98.31,77.53,0.16,977,4.4,157,2.2 +2013,2,19,8,30,19.900000000000002,0.31,0.1159,0.7000000000000001,0,0,0,8,19.8,0,0,0,0,0.28,99.19,90.17,0.16,977,4.4,164,1.9000000000000001 +2013,2,19,9,30,19.6,0.36,0.1187,0.7000000000000001,0,0,0,8,19.6,0,0,0,0,0.278,100,103.5,0.16,978,4.4,169,1.8 +2013,2,19,10,30,19.400000000000002,0.34,0.1168,0.7000000000000001,0,0,0,8,19.400000000000002,0,0,0,0,0.275,100,115.61,0.16,978,4.4,171,1.7000000000000002 +2013,2,19,11,30,19.3,0.31,0.1126,0.7000000000000001,0,0,0,4,19.3,0,0,0,0,0.271,100,126.55,0.16,978,4.4,170,1.6 +2013,2,19,12,30,19.200000000000003,0.34,0.11560000000000001,0.7000000000000001,0,0,0,3,19.200000000000003,0,0,0,0,0.268,100,135.4,0.16,977,4.3,170,1.6 +2013,2,19,13,30,19,0.33,0.1086,0.7000000000000001,0,0,0,3,19,0,0,0,0,0.265,100,140.73,0.16,977,4.3,170,1.5 +2013,2,19,14,30,18.900000000000002,0.34,0.0926,0.7000000000000001,0,0,0,3,18.900000000000002,0,0,0,0,0.264,100,141.03,0.16,976,4.2,170,1.4000000000000001 +2013,2,19,15,30,18.8,0.43,0.0847,0.7000000000000001,0,0,0,3,18.8,0,0,0,0,0.264,100,136.2,0.16,975,4.2,169,1.2000000000000002 +2013,2,19,16,30,18.7,0.48,0.0738,0.7000000000000001,0,0,0,3,18.7,0,0,0,0,0.264,100,127.65,0.16,975,4.1000000000000005,171,1.1 +2013,2,19,17,30,18.5,0.5,0.061900000000000004,0.7000000000000001,0,0,0,1,18.5,0,0,0,0,0.265,100,116.89,0.16,975,3.9000000000000004,177,1 +2013,2,19,18,30,18.400000000000002,0.56,0.0584,0.7000000000000001,0,0,0,1,18.400000000000002,0,0,0,0,0.265,100,104.88,0.16,976,3.8000000000000003,183,1.1 +2013,2,19,19,30,19,0.58,0.055600000000000004,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.266,97.10000000000001,92.17,0.16,976,3.7,189,1.5 +2013,2,19,20,30,20.200000000000003,0.56,0.0511,0.7000000000000001,46,524,146,1,19.200000000000003,46,524,0,146,0.266,94.19,79,0.16,977,3.6,189,2 +2013,2,19,21,30,21.5,0.5700000000000001,0.0516,0.7000000000000001,70,759,382,1,19.700000000000003,70,759,0,382,0.266,89.28,65.75,0.16,977,3.5,183,2.5 +2013,2,19,22,30,22.900000000000002,0.56,0.0506,0.7000000000000001,84,868,613,1,19.6,84,868,0,613,0.266,81.77,52.480000000000004,0.16,977,3.4000000000000004,175,2.8000000000000003 +2013,2,19,23,30,23.6,0.54,0.0509,0.7000000000000001,93,926,808,2,19.700000000000003,356,24,0,375,0.266,78.60000000000001,39.47,0.16,977,3.4000000000000004,173,2.9000000000000004 +2013,2,20,0,30,25,0.42,0.0737,0.7000000000000001,113,935,944,1,19.900000000000002,113,935,0,944,0.265,73.5,27.34,0.16,976,3.4000000000000004,168,3.1 +2013,2,20,1,30,25.6,0.4,0.0785,0.7000000000000001,120,947,1019,3,20.200000000000003,203,31,0,233,0.265,72.10000000000001,18.18,0.16,976,3.4000000000000004,166,3.2 +2013,2,20,2,30,25.8,0.36,0.0881,0.7000000000000001,126,937,1019,3,20.3,359,25,0,383,0.265,71.77,17.62,0.16,976,3.5,164,3.2 +2013,2,20,3,30,25.700000000000003,0.56,0.0644,0.7000000000000001,107,948,958,3,20.3,493,27,0,517,0.265,71.99,26.22,0.16,975,3.4000000000000004,163,3.3000000000000003 +2013,2,20,4,30,25.3,0.51,0.0651,0.7000000000000001,102,915,821,1,20.1,102,915,0,821,0.265,72.85000000000001,38.2,0.16,975,3.4000000000000004,161,3.2 +2013,2,20,5,30,24.6,0.45,0.0671,0.7000000000000001,94,858,632,1,19.8,94,858,0,632,0.265,74.7,51.17,0.16,976,3.2,161,3 +2013,2,20,6,30,23.5,0.43,0.0712,0.7000000000000001,81,748,403,2,19.5,241,91,0,281,0.266,78.51,64.44,0.16,976,3.1,161,2.5 +2013,2,20,7,30,22,0.42,0.0713,0.7000000000000001,55,521,166,3,19.400000000000002,93,51,3,104,0.267,85.04,77.71000000000001,0.16,977,3.1,164,1.8 +2013,2,20,8,30,20.8,0.45,0.0684,0.7000000000000001,0,0,0,1,19,0,0,0,0,0.267,89.72,90.93,0.16,977,3.1,168,1.3 +2013,2,20,9,30,20.1,0.47000000000000003,0.06620000000000001,0.7000000000000001,0,0,0,1,18.8,0,0,0,0,0.267,92.04,103.71000000000001,0.16,978,3.1,171,1.3 +2013,2,20,10,30,19.6,0.47000000000000003,0.0661,0.7000000000000001,0,0,0,1,18.6,0,0,0,0,0.266,93.76,115.85000000000001,0.16,978,3.1,173,1.4000000000000001 +2013,2,20,11,30,19.3,0.45,0.06720000000000001,0.7000000000000001,0,0,0,1,18.400000000000002,0,0,0,0,0.266,94.8,126.82000000000001,0.16,978,3.1,174,1.4000000000000001 +2013,2,20,12,30,19,0.44,0.0687,0.7000000000000001,0,0,0,1,18.3,0,0,0,0,0.265,95.97,135.73,0.16,978,3,175,1.4000000000000001 +2013,2,20,13,30,18.8,0.42,0.07050000000000001,0.7000000000000001,0,0,0,1,18.2,0,0,0,0,0.265,96.28,141.08,0.16,977,2.9000000000000004,175,1.4000000000000001 +2013,2,20,14,30,18.5,0.39,0.0748,0.7000000000000001,0,0,0,1,18,0,0,0,0,0.264,96.82000000000001,141.38,0.16,976,2.9000000000000004,176,1.4000000000000001 +2013,2,20,15,30,18.3,0.36,0.08410000000000001,0.7000000000000001,0,0,0,0,17.8,0,0,0,0,0.264,96.81,136.5,0.16,976,2.9000000000000004,178,1.4000000000000001 +2013,2,20,16,30,18.2,0.34,0.0884,0.7000000000000001,0,0,0,0,17.6,0,0,0,0,0.265,96.21000000000001,127.9,0.16,976,3,180,1.4000000000000001 +2013,2,20,17,30,18.1,0.32,0.0884,0.7000000000000001,0,0,0,0,17.400000000000002,0,0,0,0,0.267,95.81,117.09,0.16,976,3.1,182,1.4000000000000001 +2013,2,20,18,30,18.1,0.35000000000000003,0.0843,0.7000000000000001,0,0,0,1,17.3,0,0,0,0,0.268,95.16,105.05,0.16,976,3.2,184,1.4000000000000001 +2013,2,20,19,30,18.7,0.36,0.0801,0.7000000000000001,0,0,0,1,17.3,0,0,0,0,0.27,91.81,92.32000000000001,0.16,977,3.3000000000000003,186,1.8 +2013,2,20,20,30,20,0.37,0.0777,0.7000000000000001,53,461,140,1,17.900000000000002,53,461,0,140,0.272,87.65,79.13,0.16,977,3.4000000000000004,185,2.4000000000000004 +2013,2,20,21,30,21.3,0.35000000000000003,0.0792,0.7000000000000001,82,710,372,1,18.400000000000002,82,710,0,372,0.273,83.44,65.88,0.16,977,3.5,180,2.8000000000000003 +2013,2,20,22,30,22.5,0.34,0.08310000000000001,0.7000000000000001,101,821,599,1,18.7,101,821,0,599,0.274,79.27,52.620000000000005,0.16,977,3.6,175,3.1 +2013,2,20,23,30,23.1,0.34,0.0854,0.7000000000000001,113,882,793,1,18.900000000000002,113,882,1,793,0.274,77.34,39.63,0.16,977,3.7,173,3.2 +2013,2,21,0,30,24,0.44,0.075,0.7000000000000001,113,927,936,2,19.1,488,28,0,513,0.273,73.88,27.55,0.16,976,3.8000000000000003,171,3.2 +2013,2,21,1,30,24.200000000000003,0.43,0.0782,0.7000000000000001,119,939,1009,1,19.3,119,939,0,1009,0.272,73.99,18.5,0.16,976,3.9000000000000004,171,3.2 +2013,2,21,2,30,24.200000000000003,0.42,0.0775,0.7000000000000001,119,940,1013,3,19.400000000000002,606,48,0,652,0.271,74.79,17.97,0.16,976,3.9000000000000004,172,3.2 +2013,2,21,3,30,23.900000000000002,0.41000000000000003,0.0766,0.7000000000000001,115,926,944,3,19.5,373,24,0,394,0.272,76.2,26.490000000000002,0.16,975,3.9000000000000004,174,3.3000000000000003 +2013,2,21,4,30,23,0.41000000000000003,0.0741,0.7000000000000001,107,895,808,3,19.200000000000003,272,26,0,292,0.272,79.01,38.410000000000004,0.16,975,4,179,3.2 +2013,2,21,5,30,21.8,0.36,0.0886,0.7000000000000001,104,818,615,4,18.7,246,25,0,261,0.273,82.60000000000001,51.35,0.16,975,4,183,3.1 +2013,2,21,6,30,20.700000000000003,0.27,0.12760000000000002,0.7000000000000001,103,648,381,3,18.400000000000002,162,24,0,172,0.274,86.93,64.62,0.16,975,4.1000000000000005,183,3 +2013,2,21,7,30,20.1,0.22,0.1428,0.7000000000000001,71,371,149,3,18.3,58,4,3,59,0.276,89.63,77.89,0.16,976,4,179,2.6 +2013,2,21,8,30,19.700000000000003,0.23,0.12290000000000001,0.7000000000000001,0,0,0,1,18.2,0,0,0,0,0.277,91.17,91.12,0.16,977,3.9000000000000004,178,2.2 +2013,2,21,9,30,19.400000000000002,0.29,0.09820000000000001,0.7000000000000001,0,0,0,1,18.1,0,0,0,0,0.277,92.12,103.93,0.16,977,3.9000000000000004,182,2 +2013,2,21,10,30,19.1,0.33,0.08320000000000001,0.7000000000000001,0,0,0,1,17.8,0,0,0,0,0.277,92.32000000000001,116.09,0.16,977,3.9000000000000004,184,2 +2013,2,21,11,30,18.8,0.36,0.0792,0.7000000000000001,0,0,0,1,17.6,0,0,0,0,0.277,92.78,127.11,0.16,977,3.9000000000000004,186,1.9000000000000001 +2013,2,21,12,30,18.7,0.38,0.0833,0.7000000000000001,0,0,0,3,17.5,0,0,0,0,0.277,92.84,136.05,0.16,976,4,189,1.8 +2013,2,21,13,30,18.5,0.37,0.0845,0.7000000000000001,0,0,0,1,17.5,0,0,0,0,0.277,93.98,141.44,0.16,975,4,193,1.7000000000000002 +2013,2,21,14,30,18.400000000000002,0.38,0.0782,0.7000000000000001,0,0,0,1,17.5,0,0,0,0,0.276,94.57000000000001,141.73,0.16,974,4,200,1.6 +2013,2,21,15,30,18.3,0.4,0.07050000000000001,0.7000000000000001,0,0,0,1,17.5,0,0,0,0,0.276,95.07000000000001,136.8,0.16,974,4,208,1.6 +2013,2,21,16,30,18.3,0.43,0.0626,0.7000000000000001,0,0,0,1,17.400000000000002,0,0,0,0,0.276,94.75,128.14000000000001,0.16,973,4.1000000000000005,215,1.6 +2013,2,21,17,30,18.3,0.45,0.0574,0.7000000000000001,0,0,0,8,17.400000000000002,0,0,0,0,0.275,94.27,117.29,0.16,973,4.1000000000000005,218,1.7000000000000002 +2013,2,21,18,30,18.400000000000002,0.46,0.055400000000000005,0.7000000000000001,0,0,0,8,17.3,0,0,0,0,0.275,93.18,105.22,0.16,973,4.2,221,1.9000000000000001 +2013,2,21,19,30,18.8,0.47000000000000003,0.0557,0.7000000000000001,0,0,0,8,17.3,0,0,0,0,0.274,90.96000000000001,92.47,0.16,973,4.3,226,2.1 +2013,2,21,20,30,19.700000000000003,0.47000000000000003,0.058,0.7000000000000001,47,490,138,8,17.7,39,0,3,39,0.274,87.97,79.26,0.16,973,4.3,229,2.5 +2013,2,21,21,30,20.900000000000002,0.47000000000000003,0.0623,0.7000000000000001,74,726,369,7,18.2,109,20,0,117,0.274,84.52,66.01,0.16,974,4.3,227,2.8000000000000003 +2013,2,21,22,30,22.1,0.48,0.0623,0.7000000000000001,89,840,597,8,18.8,319,38,0,342,0.274,81.35000000000001,52.75,0.16,974,4.2,225,2.8000000000000003 +2013,2,21,23,30,22.6,0.51,0.0555,0.7000000000000001,95,907,792,8,19.200000000000003,435,36,0,463,0.274,81.23,39.79,0.16,974,4.2,225,2.8000000000000003 +2013,2,22,0,30,23.900000000000002,0.47000000000000003,0.061200000000000004,0.7000000000000001,105,934,931,8,19.700000000000003,607,107,0,701,0.275,77.17,27.77,0.16,973,4.2,230,2.8000000000000003 +2013,2,22,1,30,24.3,0.56,0.051300000000000005,0.7000000000000001,101,960,1010,8,20,657,103,0,755,0.275,77.01,18.82,0.16,972,4.1000000000000005,237,2.9000000000000004 +2013,2,22,2,30,24.400000000000002,0.67,0.045000000000000005,0.7000000000000001,97,967,1015,3,20.1,629,64,0,689,0.274,77.11,18.32,0.16,972,4.1000000000000005,246,3 +2013,2,22,3,30,24.400000000000002,0.78,0.039,0.7000000000000001,90,960,947,3,19.900000000000002,304,27,0,328,0.274,75.98,26.76,0.16,971,4.1000000000000005,253,3.2 +2013,2,22,4,30,24.1,0.88,0.0324,0.7000000000000001,81,940,815,3,19.6,318,24,0,337,0.274,75.97,38.62,0.16,971,4,254,3.3000000000000003 +2013,2,22,5,30,23.700000000000003,0.92,0.030600000000000002,0.7000000000000001,72,892,627,3,19.400000000000002,402,163,0,503,0.275,76.8,51.550000000000004,0.16,970,3.9000000000000004,253,3 +2013,2,22,6,30,23,0.91,0.029400000000000003,0.7000000000000001,60,801,401,8,19.3,247,244,0,351,0.276,79.57000000000001,64.8,0.16,970,3.8000000000000003,255,2.5 +2013,2,22,7,30,22,0.89,0.027800000000000002,0.7000000000000001,41,604,166,8,19.1,99,194,3,139,0.277,83.84,78.08,0.16,971,3.6,261,1.8 +2013,2,22,8,30,21.200000000000003,0.88,0.027200000000000002,0.7000000000000001,0,0,0,8,18.6,0,0,0,0,0.278,85.23,91.32000000000001,0.16,971,3.5,267,1.4000000000000001 +2013,2,22,9,30,20.700000000000003,0.88,0.0267,0.7000000000000001,0,0,0,4,18.2,0,0,0,0,0.279,85.64,104.15,0.16,971,3.5,271,1.4000000000000001 +2013,2,22,10,30,20.3,0.89,0.0262,0.7000000000000001,0,0,0,8,17.8,0,0,0,0,0.279,85.81,116.34,0.16,971,3.5,278,1.3 +2013,2,22,11,30,19.8,0.92,0.025400000000000002,0.7000000000000001,0,0,0,7,17.5,0,0,0,0,0.279,86.77,127.39,0.16,971,3.5,286,1.3 +2013,2,22,12,30,19.400000000000002,0.96,0.024300000000000002,0.7000000000000001,0,0,0,8,17.3,0,0,0,0,0.278,87.56,136.38,0.16,971,3.5,292,1.4000000000000001 +2013,2,22,13,30,19,1.01,0.023700000000000002,0.7000000000000001,0,0,0,7,17,0,0,0,0,0.278,88.21000000000001,141.81,0.16,970,3.5,294,1.4000000000000001 +2013,2,22,14,30,18.6,1.05,0.0236,0.7000000000000001,0,0,0,7,16.7,0,0,0,0,0.277,88.84,142.08,0.16,970,3.5,293,1.5 +2013,2,22,15,30,18.3,1.09,0.0236,0.7000000000000001,0,0,0,8,16.5,0,0,0,0,0.277,89.24,137.11,0.16,970,3.6,293,1.4000000000000001 +2013,2,22,16,30,18,1.1400000000000001,0.0241,0.7000000000000001,0,0,0,8,16.400000000000002,0,0,0,0,0.277,90.17,128.39000000000001,0.16,971,3.6,295,1.3 +2013,2,22,17,30,17.7,1.18,0.0247,0.7000000000000001,0,0,0,1,16.3,0,0,0,0,0.278,91.25,117.49000000000001,0.16,972,3.6,300,1.3 +2013,2,22,18,30,17.6,1.2,0.0257,0.7000000000000001,0,0,0,3,16.2,0,0,0,0,0.279,91.36,105.39,0.16,972,3.5,306,1.3 +2013,2,22,19,30,18.2,1.21,0.0275,0.7000000000000001,0,0,0,0,16.2,0,0,0,0,0.279,88.23,92.61,0.16,973,3.4000000000000004,311,1.7000000000000002 +2013,2,22,20,30,19.700000000000003,1.19,0.029400000000000003,0.7000000000000001,39,576,145,1,16.8,39,576,0,145,0.279,83.21000000000001,79.39,0.16,974,3.3000000000000003,312,2.3000000000000003 +2013,2,22,21,30,21.400000000000002,1.1400000000000001,0.030600000000000002,0.7000000000000001,59,800,383,1,17.3,59,800,0,383,0.278,77.46000000000001,66.14,0.16,975,3,310,2.6 +2013,2,22,22,30,23.200000000000003,1.1,0.031100000000000003,0.7000000000000001,71,901,615,1,17.8,71,901,0,615,0.278,71.5,52.89,0.16,975,2.9000000000000004,311,2.7 +2013,2,22,23,30,24.1,1.08,0.0316,0.7000000000000001,80,957,813,0,18.3,80,957,0,813,0.278,70,39.95,0.16,975,2.8000000000000003,312,2.7 +2013,2,23,0,30,26.3,0.91,0.0373,0.7000000000000001,89,983,956,1,18.8,89,983,0,956,0.278,63.28,27.990000000000002,0.16,975,2.7,318,2.7 +2013,2,23,1,30,27.200000000000003,0.91,0.0391,0.7000000000000001,92,995,1032,0,19.1,92,995,0,1032,0.278,61.28,19.14,0.16,975,2.7,323,2.6 +2013,2,23,2,30,27.8,0.9,0.0424,0.7000000000000001,95,991,1033,0,19.400000000000002,95,991,0,1033,0.277,60.230000000000004,18.68,0.16,975,2.8000000000000003,330,2.5 +2013,2,23,3,30,28,0.76,0.054700000000000006,0.7000000000000001,100,964,959,0,19.700000000000003,100,964,0,959,0.276,60.77,27.03,0.16,974,2.9000000000000004,337,2.3000000000000003 +2013,2,23,4,30,27.8,0.76,0.061900000000000004,0.7000000000000001,98,925,819,1,20.1,98,925,0,819,0.274,62.940000000000005,38.85,0.16,974,3,348,2 +2013,2,23,5,30,27.3,0.77,0.06380000000000001,0.7000000000000001,89,862,623,1,21,89,862,0,623,0.273,68.57000000000001,51.74,0.16,975,3.2,182,1.8 +2013,2,23,6,30,26.200000000000003,0.8,0.0627,0.7000000000000001,74,757,394,0,22,74,757,0,394,0.272,77.63,64.99,0.16,975,3.3000000000000003,16,1.4000000000000001 +2013,2,23,7,30,24.6,0.8200000000000001,0.06380000000000001,0.7000000000000001,50,531,158,1,22.900000000000002,50,531,0,158,0.272,90.03,78.27,0.16,976,3.3000000000000003,23,1.1 +2013,2,23,8,30,23.400000000000002,0.8300000000000001,0.06860000000000001,0.7000000000000001,0,0,0,8,22.5,0,0,0,0,0.272,94.98,91.52,0.16,977,3.5,23,0.9 +2013,2,23,9,30,22.900000000000002,0.8300000000000001,0.07590000000000001,0.7000000000000001,0,0,0,7,22.6,0,0,0,0,0.272,98.24000000000001,104.37,0.16,978,3.6,21,0.9 +2013,2,23,10,30,22.5,0.81,0.08080000000000001,0.7000000000000001,0,0,0,8,22.5,0,0,0,0,0.272,100,116.59,0.16,979,3.7,19,0.9 +2013,2,23,11,30,22.200000000000003,0.8,0.0838,0.7000000000000001,0,0,0,7,22.200000000000003,0,0,0,0,0.271,100,127.68,0.16,979,3.7,18,0.8 +2013,2,23,12,30,21.8,0.79,0.08420000000000001,0.7000000000000001,0,0,0,8,21.8,0,0,0,0,0.271,100,136.72,0.16,980,3.7,17,0.8 +2013,2,23,13,30,21.5,0.78,0.084,0.7000000000000001,0,0,0,7,21.5,0,0,0,0,0.27,100,142.17000000000002,0.16,979,3.7,19,0.7000000000000001 +2013,2,23,14,30,21.200000000000003,0.76,0.0844,0.7000000000000001,0,0,0,7,21.200000000000003,0,0,0,0,0.27,100,142.44,0.16,979,3.7,20,0.7000000000000001 +2013,2,23,15,30,20.900000000000002,0.77,0.08460000000000001,0.7000000000000001,0,0,0,7,20.900000000000002,0,0,0,0,0.271,100,137.41,0.16,979,3.6,19,0.7000000000000001 +2013,2,23,16,30,20.6,0.79,0.0845,0.7000000000000001,0,0,0,7,20.6,0,0,0,0,0.272,100,128.64000000000001,0.16,980,3.6,19,0.7000000000000001 +2013,2,23,17,30,20.400000000000002,0.8,0.08320000000000001,0.7000000000000001,0,0,0,8,20.400000000000002,0,0,0,0,0.272,100,117.69,0.16,980,3.5,22,0.7000000000000001 +2013,2,23,18,30,20.200000000000003,0.8300000000000001,0.0828,0.7000000000000001,0,0,0,3,20.200000000000003,0,0,0,0,0.272,100,105.55,0.16,980,3.5,33,0.7000000000000001 +2013,2,23,19,30,20.8,0.85,0.082,0.7000000000000001,0,0,0,8,20.8,0,0,0,0,0.271,100,92.76,0.16,981,3.4000000000000004,47,0.7000000000000001 +2013,2,23,20,30,22.3,0.86,0.0824,0.7000000000000001,50,461,134,8,21.6,83,109,3,103,0.271,95.83,79.52,0.16,981,3.4000000000000004,55,0.9 +2013,2,23,21,30,23.700000000000003,0.88,0.0826,0.7000000000000001,79,714,367,4,22.1,194,44,0,212,0.269,90.60000000000001,66.27,0.16,982,3.4000000000000004,56,1.1 +2013,2,23,22,30,25,0.9,0.0795,0.7000000000000001,95,835,597,8,22.1,382,164,0,480,0.267,83.86,53.03,0.16,982,3.4000000000000004,58,1.4000000000000001 +2013,2,23,23,30,25.6,0.9,0.0776,0.7000000000000001,105,899,792,7,21.8,456,49,0,494,0.266,79.65,40.11,0.16,982,3.4000000000000004,61,1.6 +2013,2,24,0,30,26.5,0.81,0.0805,0.7000000000000001,114,927,930,8,21.700000000000003,602,114,0,703,0.264,75.18,28.21,0.16,982,3.6,69,1.8 +2013,2,24,1,30,26.8,0.81,0.0772,0.7000000000000001,115,944,1005,8,21.8,504,25,0,527,0.262,74.22,19.47,0.16,981,3.7,74,2 +2013,2,24,2,30,26.6,0.8,0.07730000000000001,0.7000000000000001,115,942,1005,8,21.900000000000002,652,103,0,750,0.262,75.31,19.04,0.16,981,3.9000000000000004,79,2.1 +2013,2,24,3,30,26,0.77,0.0813,0.7000000000000001,114,921,933,8,21.900000000000002,593,83,0,667,0.261,78.07000000000001,27.310000000000002,0.16,980,4.1000000000000005,82,2.2 +2013,2,24,4,30,25.200000000000003,0.78,0.07640000000000001,0.7000000000000001,105,890,795,7,22,439,37,0,467,0.262,82.35000000000001,39.07,0.16,980,4.4,83,2.1 +2013,2,24,5,30,24.400000000000002,0.79,0.0743,0.7000000000000001,93,831,606,7,22.3,314,34,0,336,0.263,88.2,51.94,0.16,980,4.5,82,1.8 +2013,2,24,6,30,23.6,0.84,0.0758,0.7000000000000001,78,720,380,8,22.8,237,109,0,282,0.264,95.13,65.18,0.16,981,4.6000000000000005,78,1.4000000000000001 +2013,2,24,7,30,22.8,0.9,0.0713,0.7000000000000001,50,496,150,4,22.8,71,16,3,75,0.265,100,78.46000000000001,0.16,982,4.7,76,1 +2013,2,24,8,30,22.1,0.99,0.0669,0.7000000000000001,0,0,0,8,22.1,0,0,0,0,0.266,100,91.73,0.16,982,4.6000000000000005,77,0.7000000000000001 +2013,2,24,9,30,21.8,1.03,0.0618,0.7000000000000001,0,0,0,7,21.8,0,0,0,0,0.266,100,104.59,0.16,983,4.6000000000000005,83,0.7000000000000001 +2013,2,24,10,30,21.5,1,0.056900000000000006,0.7000000000000001,0,0,0,7,21.5,0,0,0,0,0.265,100,116.84,0.16,983,4.6000000000000005,91,0.6000000000000001 +2013,2,24,11,30,21.3,0.9500000000000001,0.0526,0.7000000000000001,0,0,0,7,21.3,0,0,0,0,0.263,100,127.97,0.16,983,4.7,96,0.6000000000000001 +2013,2,24,12,30,21.1,0.93,0.0512,0.7000000000000001,0,0,0,7,21.1,0,0,0,0,0.262,100,137.05,0.16,982,4.800000000000001,102,0.7000000000000001 +2013,2,24,13,30,21,0.9,0.0485,0.7000000000000001,0,0,0,8,21,0,0,0,0,0.26,100,142.54,0.16,982,4.800000000000001,111,0.7000000000000001 +2013,2,24,14,30,20.900000000000002,0.86,0.044700000000000004,0.7000000000000001,0,0,0,8,20.900000000000002,0,0,0,0,0.259,100,142.79,0.16,981,4.9,119,0.8 +2013,2,24,15,30,20.900000000000002,0.86,0.0485,0.7000000000000001,0,0,0,8,20.900000000000002,0,0,0,0,0.259,100,137.72,0.16,981,5,124,0.9 +2013,2,24,16,30,21,0.8,0.0536,0.7000000000000001,0,0,0,8,21,0,0,0,0,0.259,100,128.88,0.16,981,5.2,125,1 +2013,2,24,17,30,21.1,0.65,0.066,0.7000000000000001,0,0,0,8,21.1,0,0,0,0,0.259,100,117.89,0.16,981,5.300000000000001,124,1.1 +2013,2,24,18,30,21.3,0.55,0.09390000000000001,0.7000000000000001,0,0,0,8,21.3,0,0,0,0,0.26,100,105.72,0.16,981,5.4,122,1.2000000000000002 +2013,2,24,19,30,21.700000000000003,0.4,0.1143,0.7000000000000001,0,0,0,7,21.700000000000003,0,0,0,0,0.26,100,92.9,0.16,981,5.5,117,1.7000000000000002 +2013,2,24,20,30,22.200000000000003,0.26,0.13,0.7000000000000001,61,331,120,6,22.200000000000003,6,0,3,6,0.26,100,79.65,0.16,982,5.5,108,2.3000000000000003 +2013,2,24,21,30,22.6,0.26,0.1451,0.7000000000000001,105,590,341,6,22.6,14,0,0,14,0.26,100,66.39,0.16,982,5.4,97,2.7 +2013,2,24,22,30,22.900000000000002,0.25,0.13490000000000002,0.7000000000000001,124,737,566,6,22.900000000000002,27,0,0,27,0.259,100,53.160000000000004,0.16,983,5.4,87,2.7 +2013,2,24,23,30,23,0.27,0.12040000000000001,0.7000000000000001,131,826,761,6,23,46,0,0,46,0.259,100,40.27,0.16,983,5.300000000000001,84,2.6 +2013,2,25,0,30,23.400000000000002,0.32,0.12050000000000001,0.7000000000000001,139,865,900,6,23,111,21,0,130,0.258,97.88,28.43,0.16,982,5.4,84,2.6 +2013,2,25,1,30,23.5,0.32,0.11560000000000001,0.7000000000000001,140,887,975,6,23.1,137,26,0,161,0.258,97.48,19.8,0.16,982,5.4,86,2.6 +2013,2,25,2,30,23.5,0.29,0.11620000000000001,0.7000000000000001,141,887,978,6,23,135,25,0,159,0.257,96.88,19.400000000000002,0.16,981,5.300000000000001,88,2.6 +2013,2,25,3,30,23.3,0.31,0.14250000000000002,0.7000000000000001,152,849,904,6,22.8,149,28,0,174,0.255,96.89,27.6,0.16,981,5.300000000000001,91,2.5 +2013,2,25,4,30,22.900000000000002,0.28,0.1564,0.7000000000000001,150,797,767,6,22.6,167,29,0,189,0.254,98.26,39.300000000000004,0.16,981,5.300000000000001,96,2.4000000000000004 +2013,2,25,5,30,22.5,0.25,0.1383,0.7000000000000001,127,743,583,6,22.5,144,26,0,160,0.253,99.95,52.15,0.16,981,5.2,100,2.2 +2013,2,25,6,30,22.1,0.33,0.1232,0.7000000000000001,98,636,363,6,22.1,112,20,0,121,0.253,100,65.38,0.16,981,5.2,102,2 +2013,2,25,7,30,21.700000000000003,0.33,0.1149,0.7000000000000001,61,390,138,6,21.700000000000003,42,0,3,42,0.253,100,78.66,0.16,982,5.1000000000000005,102,1.7000000000000002 +2013,2,25,8,30,21.3,0.31,0.10500000000000001,0.7000000000000001,0,0,0,6,21.3,0,0,0,0,0.253,100,91.94,0.16,982,5.1000000000000005,103,1.6 +2013,2,25,9,30,21.1,0.38,0.1067,0.7000000000000001,0,0,0,6,21.1,0,0,0,0,0.254,100,104.82000000000001,0.16,983,5,103,1.5 +2013,2,25,10,30,21,0.35000000000000003,0.112,0.7000000000000001,0,0,0,8,21,0,0,0,0,0.256,100,117.10000000000001,0.16,983,5,103,1.5 +2013,2,25,11,30,20.900000000000002,0.31,0.113,0.7000000000000001,0,0,0,8,20.900000000000002,0,0,0,0,0.257,100,128.26,0.16,983,5,103,1.4000000000000001 +2013,2,25,12,30,20.8,0.36,0.1159,0.7000000000000001,0,0,0,8,20.8,0,0,0,0,0.258,100,137.39000000000001,0.16,983,5,103,1.3 +2013,2,25,13,30,20.8,0.33,0.11950000000000001,0.7000000000000001,0,0,0,8,20.8,0,0,0,0,0.259,100,142.91,0.16,983,5,103,1.3 +2013,2,25,14,30,20.8,0.29,0.12250000000000001,0.7000000000000001,0,0,0,8,20.8,0,0,0,0,0.26,100,143.15,0.16,982,5,103,1.3 +2013,2,25,15,30,20.900000000000002,0.35000000000000003,0.13140000000000002,0.7000000000000001,0,0,0,4,20.900000000000002,0,0,0,0,0.262,100,138.02,0.16,982,4.9,101,1.4000000000000001 +2013,2,25,16,30,20.900000000000002,0.33,0.1253,0.7000000000000001,0,0,0,8,20.900000000000002,0,0,0,0,0.265,100,129.12,0.16,982,4.9,99,1.4000000000000001 +2013,2,25,17,30,20.900000000000002,0.31,0.1106,0.7000000000000001,0,0,0,4,20.900000000000002,0,0,0,0,0.267,100,118.09,0.16,981,4.9,100,1.3 +2013,2,25,18,30,20.8,0.4,0.099,0.7000000000000001,0,0,0,4,20.8,0,0,0,0,0.269,100,105.88,0.16,982,4.800000000000001,101,1.2000000000000002 +2013,2,25,19,30,21.200000000000003,0.42,0.0854,0.7000000000000001,0,0,0,4,21.1,0,0,0,0,0.27,99.52,93.04,0.16,982,4.800000000000001,99,1.6 +2013,2,25,20,30,21.900000000000002,0.42,0.0799,0.7000000000000001,50,423,125,8,21.6,26,0,3,26,0.271,98.03,79.78,0.16,982,4.800000000000001,95,2.2 +2013,2,25,21,30,22.8,0.51,0.0709,0.7000000000000001,76,702,355,4,22.200000000000003,27,0,0,27,0.271,96.16,66.52,0.16,983,4.7,91,2.7 +2013,2,25,22,30,23.700000000000003,0.52,0.0675,0.7000000000000001,90,822,582,4,22.400000000000002,134,25,0,149,0.271,92.54,53.300000000000004,0.16,983,4.800000000000001,87,3 +2013,2,25,23,30,24.1,0.45,0.0801,0.7000000000000001,108,871,771,4,22.3,201,29,0,222,0.271,89.95,40.44,0.16,983,4.800000000000001,85,3.2 +2013,2,26,0,30,24.900000000000002,0.38,0.1052,0.7000000000000001,130,883,905,4,22.200000000000003,331,25,0,353,0.271,84.97,28.66,0.16,982,4.800000000000001,81,3.4000000000000004 +2013,2,26,1,30,25.1,0.31,0.1337,0.7000000000000001,151,875,972,8,22,310,28,0,336,0.272,83.18,20.13,0.16,982,4.800000000000001,78,3.5 +2013,2,26,2,30,24.900000000000002,0.23,0.1605,0.7000000000000001,167,852,969,4,21.8,354,25,0,377,0.272,83.14,19.77,0.16,981,4.800000000000001,76,3.4000000000000004 +2013,2,26,3,30,24.5,0.22,0.17600000000000002,0.7000000000000001,171,821,897,4,21.900000000000002,114,22,0,133,0.271,85.33,27.89,0.16,981,4.800000000000001,76,3.2 +2013,2,26,4,30,24,0.2,0.18100000000000002,0.7000000000000001,164,774,761,8,21.8,57,1,0,57,0.271,87.64,39.54,0.16,981,4.7,77,3 +2013,2,26,5,30,23.400000000000002,0.2,0.16770000000000002,0.7000000000000001,141,712,576,8,21.8,277,27,0,293,0.27,90.91,52.36,0.16,981,4.6000000000000005,80,2.7 +2013,2,26,6,30,22.700000000000003,0.23,0.1568,0.7000000000000001,112,591,356,8,21.8,170,27,0,181,0.27,94.71000000000001,65.58,0.16,982,4.5,84,2.3000000000000003 +2013,2,26,7,30,21.900000000000002,0.25,0.1406,0.7000000000000001,66,345,133,8,21.6,60,6,3,62,0.269,98.14,78.86,0.16,982,4.3,87,1.9000000000000001 +2013,2,26,8,30,21.200000000000003,0.22,0.1434,0.7000000000000001,0,0,0,8,21.1,0,0,0,0,0.268,99.57000000000001,92.15,0.16,982,4.2,89,1.5 +2013,2,26,9,30,20.900000000000002,0.22,0.1505,0.7000000000000001,0,0,0,7,20.8,0,0,0,0,0.268,99.56,105.05,0.16,983,4,91,1.4000000000000001 +2013,2,26,10,30,20.6,0.2,0.1494,0.7000000000000001,0,0,0,8,20.5,0,0,0,0,0.268,99.61,117.35000000000001,0.16,983,3.9000000000000004,93,1.3 +2013,2,26,11,30,20.3,0.19,0.1428,0.7000000000000001,0,0,0,3,20.3,0,0,0,0,0.268,99.77,128.56,0.16,983,3.7,95,1.2000000000000002 +2013,2,26,12,30,20,0.22,0.1358,0.7000000000000001,0,0,0,1,20,0,0,0,0,0.268,99.92,137.73,0.16,983,3.6,97,1 +2013,2,26,13,30,19.700000000000003,0.25,0.1184,0.7000000000000001,0,0,0,8,19.700000000000003,0,0,0,0,0.268,100,143.29,0.16,983,3.5,102,1 +2013,2,26,14,30,19.400000000000002,0.3,0.0952,0.7000000000000001,0,0,0,7,19.400000000000002,0,0,0,0,0.268,100,143.51,0.16,982,3.4000000000000004,107,0.9 +2013,2,26,15,30,19.200000000000003,0.34,0.0893,0.7000000000000001,0,0,0,7,19.200000000000003,0,0,0,0,0.269,100,138.32,0.16,982,3.3000000000000003,110,0.9 +2013,2,26,16,30,19,0.32,0.1005,0.7000000000000001,0,0,0,7,19,0,0,0,0,0.269,99.99000000000001,129.37,0.16,982,3.2,113,0.9 +2013,2,26,17,30,19,0.29,0.11370000000000001,0.7000000000000001,0,0,0,8,18.900000000000002,0,0,0,0,0.269,99.10000000000001,118.28,0.16,982,3.1,114,0.9 +2013,2,26,18,30,19,0.28,0.1283,0.7000000000000001,0,0,0,7,18.8,0,0,0,0,0.269,98.71000000000001,106.04,0.16,982,3.1,115,0.9 +2013,2,26,19,30,19.700000000000003,0.28,0.13140000000000002,0.7000000000000001,0,0,0,7,18.900000000000002,0,0,0,0,0.269,95.13,93.18,0.16,983,3.1,113,1.2000000000000002 +2013,2,26,20,30,20.900000000000002,0.28,0.1242,0.7000000000000001,60,351,122,7,19.900000000000002,7,0,3,7,0.269,93.81,79.91,0.16,983,3.1,109,1.8 +2013,2,26,21,30,22.200000000000003,0.3,0.11370000000000001,0.7000000000000001,94,651,352,8,20.700000000000003,18,0,0,18,0.268,91.32000000000001,66.65,0.16,983,3.2,101,2.3000000000000003 +2013,2,26,22,30,23.3,0.37,0.0906,0.7000000000000001,103,810,586,8,21,376,157,0,469,0.268,87.09,53.44,0.16,983,3.3000000000000003,93,2.7 +2013,2,26,23,30,23.900000000000002,0.37,0.0974,0.7000000000000001,119,868,778,1,20.900000000000002,119,868,0,778,0.268,83.34,40.61,0.16,983,3.4000000000000004,89,2.9000000000000004 +2013,2,27,0,30,24.8,0.34,0.1253,0.7000000000000001,143,880,914,8,20.8,272,28,0,297,0.268,78.53,28.89,0.16,982,3.4000000000000004,83,3 +2013,2,27,1,30,25.200000000000003,0.31,0.1401,0.7000000000000001,156,884,984,8,20.900000000000002,676,157,0,823,0.268,76.94,20.47,0.16,981,3.5,81,3.1 +2013,2,27,2,30,25.3,0.26,0.14730000000000001,0.7000000000000001,161,877,985,8,20.900000000000002,669,124,0,785,0.267,76.74,20.14,0.16,981,3.5,82,3 +2013,2,27,3,30,25,0.26,0.171,0.7000000000000001,169,838,908,8,21,601,110,0,698,0.265,78.31,28.18,0.16,980,3.6,82,2.9000000000000004 +2013,2,27,4,30,24.3,0.25,0.18730000000000002,0.7000000000000001,167,780,767,8,21.1,525,154,0,644,0.264,82.13,39.78,0.16,980,3.7,83,2.8000000000000003 +2013,2,27,5,30,23.5,0.21,0.20350000000000001,0.7000000000000001,158,684,573,8,21.200000000000003,387,171,0,491,0.262,86.99,52.57,0.16,980,3.7,85,2.5 +2013,2,27,6,30,22.700000000000003,0.23,0.197,0.7000000000000001,126,548,351,3,21.3,178,30,0,190,0.26,92.07000000000001,65.78,0.16,980,3.7,89,2.1 +2013,2,27,7,30,21.700000000000003,0.25,0.1464,0.7000000000000001,67,335,131,3,21.400000000000002,59,5,3,60,0.259,97.94,79.06,0.16,981,3.7,92,1.6 +2013,2,27,8,30,20.900000000000002,0.25,0.1222,0.7000000000000001,0,0,0,1,20.900000000000002,0,0,0,0,0.259,100,92.36,0.16,981,3.8000000000000003,93,1.2000000000000002 +2013,2,27,9,30,20.6,0.3,0.12010000000000001,0.7000000000000001,0,0,0,3,20.6,0,0,0,0,0.259,100,105.28,0.16,982,3.8000000000000003,90,1.2000000000000002 +2013,2,27,10,30,20.400000000000002,0.29,0.1263,0.7000000000000001,0,0,0,3,20.400000000000002,0,0,0,0,0.258,99.81,117.61,0.16,982,3.8000000000000003,87,1.1 +2013,2,27,11,30,20.200000000000003,0.27,0.12380000000000001,0.7000000000000001,0,0,0,3,20.200000000000003,0,0,0,0,0.258,99.71000000000001,128.86,0.16,982,3.8000000000000003,85,1 +2013,2,27,12,30,19.900000000000002,0.28,0.1253,0.7000000000000001,0,0,0,1,19.900000000000002,0,0,0,0,0.259,100,138.08,0.16,981,3.8000000000000003,82,0.9 +2013,2,27,13,30,19.700000000000003,0.28,0.1233,0.7000000000000001,0,0,0,1,19.700000000000003,0,0,0,0,0.259,100,143.67000000000002,0.16,981,3.8000000000000003,81,0.8 +2013,2,27,14,30,19.6,0.28,0.12000000000000001,0.7000000000000001,0,0,0,1,19.6,0,0,0,0,0.259,100,143.88,0.16,980,3.8000000000000003,84,0.7000000000000001 +2013,2,27,15,30,19.5,0.29,0.12430000000000001,0.7000000000000001,0,0,0,1,19.5,0,0,0,0,0.26,100,138.63,0.16,980,3.8000000000000003,90,0.7000000000000001 +2013,2,27,16,30,19.400000000000002,0.29,0.1338,0.7000000000000001,0,0,0,3,19.400000000000002,0,0,0,0,0.26,100,129.61,0.16,980,3.9000000000000004,92,0.7000000000000001 +2013,2,27,17,30,19.400000000000002,0.28,0.14400000000000002,0.7000000000000001,0,0,0,1,19.400000000000002,0,0,0,0,0.261,100,118.47,0.16,980,3.9000000000000004,92,0.7000000000000001 +2013,2,27,18,30,19.5,0.31,0.1569,0.7000000000000001,0,0,0,3,19.5,0,0,0,0,0.261,100,106.2,0.16,980,3.9000000000000004,92,0.7000000000000001 +2013,2,27,19,30,20.1,0.31,0.15560000000000002,0.7000000000000001,0,0,0,3,19.6,0,0,0,0,0.261,97.11,93.32000000000001,0.16,980,3.9000000000000004,89,1.1 +2013,2,27,20,30,21.200000000000003,0.28,0.1395,0.7000000000000001,61,315,116,3,20.5,9,0,3,9,0.261,95.55,80.04,0.16,980,3.9000000000000004,82,1.6 +2013,2,27,21,30,22.3,0.35000000000000003,0.1153,0.7000000000000001,93,639,345,3,21.200000000000003,29,0,0,29,0.261,93.24,66.78,0.16,981,3.9000000000000004,73,2 +2013,2,27,22,30,23.400000000000002,0.44,0.08,0.7000000000000001,97,814,581,8,21.3,365,102,0,426,0.261,87.79,53.57,0.16,980,3.9000000000000004,65,2.2 +2013,2,27,23,30,24,0.47000000000000003,0.0732,0.7000000000000001,104,887,776,3,20.900000000000002,297,25,0,316,0.261,82.92,40.77,0.16,980,3.9000000000000004,61,2.3000000000000003 +2013,2,28,0,30,25.1,0.42,0.09570000000000001,0.7000000000000001,124,899,910,4,20.700000000000003,445,24,0,466,0.26,76.60000000000001,29.12,0.16,980,4,59,2.2 +2013,2,28,1,30,25.6,0.45,0.09390000000000001,0.7000000000000001,127,917,984,8,20.6,448,22,0,469,0.259,73.91,20.8,0.16,979,4.1000000000000005,60,2.1 +2013,2,28,2,30,25.700000000000003,0.45,0.0891,0.7000000000000001,124,922,987,3,20.5,291,29,0,318,0.259,73.09,20.51,0.16,978,4.1000000000000005,63,2 +2013,2,28,3,30,25.400000000000002,0.4,0.12090000000000001,0.7000000000000001,139,876,909,3,20.5,473,27,0,497,0.259,74.35000000000001,28.48,0.16,978,4.2,65,2 +2013,2,28,4,30,24.900000000000002,0.42,0.1212,0.7000000000000001,130,838,771,8,20.5,445,42,0,477,0.259,76.39,40.03,0.16,977,4.3,65,2 +2013,2,28,5,30,24.200000000000003,0.41000000000000003,0.111,0.7000000000000001,112,779,583,8,20.400000000000002,319,39,0,342,0.259,79.22,52.79,0.16,977,4.3,64,2 +2013,2,28,6,30,23.200000000000003,0.45,0.10830000000000001,0.7000000000000001,91,659,359,3,20.200000000000003,193,40,0,209,0.258,83.47,65.99,0.16,977,4.3,62,1.6 +2013,2,28,7,30,22,0.46,0.1015,0.7000000000000001,56,406,132,7,20.3,61,8,3,62,0.258,90.36,79.27,0.16,978,4.4,59,1 +2013,2,28,8,30,21,0.47000000000000003,0.08990000000000001,0.7000000000000001,0,0,0,8,20.3,0,0,0,0,0.258,95.58,92.58,0.16,979,4.4,53,0.6000000000000001 +2013,2,28,9,30,20.6,0.48,0.08080000000000001,0.7000000000000001,0,0,0,7,20,0,0,0,0,0.258,96.07000000000001,105.52,0.16,979,4.4,45,0.6000000000000001 +2013,2,28,10,30,20.3,0.49,0.07590000000000001,0.7000000000000001,0,0,0,7,19.700000000000003,0,0,0,0,0.258,96.47,117.88,0.16,979,4.4,37,0.6000000000000001 +2013,2,28,11,30,20.1,0.51,0.07300000000000001,0.7000000000000001,0,0,0,7,19.5,0,0,0,0,0.257,96.64,129.16,0.16,979,4.5,32,0.6000000000000001 +2013,2,28,12,30,20,0.52,0.0716,0.7000000000000001,0,0,0,7,19.400000000000002,0,0,0,0,0.257,96.22,138.43,0.16,979,4.5,28,0.6000000000000001 +2013,2,28,13,30,19.8,0.53,0.0724,0.7000000000000001,0,0,0,7,19.3,0,0,0,0,0.256,96.74000000000001,144.04,0.16,978,4.5,24,0.5 +2013,2,28,14,30,19.700000000000003,0.54,0.0729,0.7000000000000001,0,0,0,7,19.200000000000003,0,0,0,0,0.257,96.98,144.24,0.16,977,4.6000000000000005,20,0.5 +2013,2,28,15,30,19.5,0.54,0.07200000000000001,0.7000000000000001,0,0,0,7,19.200000000000003,0,0,0,0,0.257,98.18,138.93,0.16,977,4.6000000000000005,15,0.5 +2013,2,28,16,30,19.3,0.54,0.0714,0.7000000000000001,0,0,0,8,19.200000000000003,0,0,0,0,0.258,99.48,129.85,0.16,977,4.7,9,0.5 +2013,2,28,17,30,19.200000000000003,0.53,0.07,0.7000000000000001,0,0,0,6,19.200000000000003,0,0,0,0,0.259,100,118.66,0.16,977,4.7,5,0.5 +2013,2,28,18,30,19.1,0.54,0.0669,0.7000000000000001,0,0,0,8,19.1,0,0,0,0,0.26,100,106.36,0.16,977,4.7,3,0.5 +2013,2,28,19,30,19.400000000000002,0.5700000000000001,0.06470000000000001,0.7000000000000001,0,0,0,6,19.200000000000003,0,0,0,0,0.26,98.72,93.46000000000001,0.16,977,4.7,180,0.6000000000000001 +2013,2,28,20,30,20,0.6,0.0639,0.7000000000000001,45,450,122,6,19.700000000000003,6,0,3,6,0.261,97.86,80.16,0.16,978,4.800000000000001,180,0.7000000000000001 +2013,2,28,21,30,20.6,0.62,0.0626,0.7000000000000001,71,711,350,6,20,13,0,0,13,0.262,96.31,66.9,0.16,978,4.800000000000001,4,0.8 +2013,2,28,22,30,21.3,0.64,0.0604,0.7000000000000001,86,829,577,6,20.5,87,18,0,97,0.263,95.18,53.71,0.16,978,4.800000000000001,9,1 +2013,2,28,23,30,21.700000000000003,0.71,0.0539,0.7000000000000001,92,898,770,6,20.900000000000002,212,28,0,234,0.263,95.44,40.94,0.16,978,4.800000000000001,10,1.1 +2013,3,1,0,30,22.3,0.86,0.0443,0.68,92,940,911,8,21.1,376,23,0,397,0.264,92.84,29.35,0.16,977,4.800000000000001,15,1.4000000000000001 +2013,3,1,1,30,22.6,0.9500000000000001,0.041100000000000005,0.68,92,956,984,6,21.1,263,30,0,291,0.265,91.06,21.14,0.16,977,4.9,18,1.5 +2013,3,1,2,30,22.6,0.9500000000000001,0.039400000000000004,0.68,91,958,986,8,21,322,27,0,347,0.265,90.52,20.88,0.16,977,4.9,21,1.6 +2013,3,1,3,30,22.5,0.93,0.0429,0.68,91,942,916,6,20.8,129,25,0,151,0.265,90.4,28.79,0.16,976,4.9,26,1.6 +2013,3,1,4,30,22.200000000000003,0.9,0.0439,0.68,86,910,780,6,20.900000000000002,98,20,0,113,0.265,92.3,40.28,0.16,976,4.9,35,1.5 +2013,3,1,5,30,22,0.8300000000000001,0.046400000000000004,0.68,79,852,591,8,21.1,122,25,0,137,0.264,94.58,53.02,0.16,976,4.800000000000001,47,1.6 +2013,3,1,6,30,21.6,0.79,0.049,0.68,67,743,366,3,21.400000000000002,146,23,0,155,0.263,98.60000000000001,66.2,0.16,976,4.7,55,1.6 +2013,3,1,7,30,21,0.77,0.0458,0.68,43,515,137,8,21,25,0,3,25,0.262,100,79.48,0.16,976,4.5,58,1.3 +2013,3,1,8,30,20.5,0.75,0.0425,0.68,0,0,0,3,20.5,0,0,0,0,0.261,100,92.8,0.16,976,4.4,55,1 +2013,3,1,9,30,20.200000000000003,0.74,0.0465,0.68,0,0,0,3,20.200000000000003,0,0,0,0,0.261,100,105.76,0.16,976,4.4,54,0.9 +2013,3,1,10,30,20,0.7000000000000001,0.048,0.68,0,0,0,3,20,0,0,0,0,0.261,100,118.14,0.16,977,4.4,56,0.7000000000000001 +2013,3,1,11,30,19.900000000000002,0.65,0.048,0.68,0,0,0,3,19.900000000000002,0,0,0,0,0.261,100,129.46,0.16,977,4.4,62,0.6000000000000001 +2013,3,1,12,30,19.900000000000002,0.65,0.0531,0.68,0,0,0,3,19.900000000000002,0,0,0,0,0.26,100,138.77,0.16,977,4.5,71,0.6000000000000001 +2013,3,1,13,30,19.8,0.66,0.0565,0.68,0,0,0,3,19.8,0,0,0,0,0.26,100,144.43,0.16,977,4.6000000000000005,81,0.5 +2013,3,1,14,30,19.700000000000003,0.63,0.0562,0.68,0,0,0,3,19.700000000000003,0,0,0,0,0.26,100,144.6,0.16,976,4.6000000000000005,93,0.6000000000000001 +2013,3,1,15,30,19.5,0.63,0.0587,0.68,0,0,0,3,19.5,0,0,0,0,0.262,100,139.23,0.16,976,4.5,106,0.6000000000000001 +2013,3,1,16,30,19.400000000000002,0.6,0.0608,0.68,0,0,0,3,19.400000000000002,0,0,0,0,0.264,100,130.08,0.16,976,4.5,111,0.7000000000000001 +2013,3,1,17,30,19.400000000000002,0.56,0.0621,0.68,0,0,0,4,19.400000000000002,0,0,0,0,0.266,100,118.85000000000001,0.16,976,4.5,112,0.7000000000000001 +2013,3,1,18,30,19.400000000000002,0.61,0.0732,0.68,0,0,0,8,19.400000000000002,0,0,0,0,0.268,100,106.52,0.16,976,4.5,111,0.8 +2013,3,1,19,30,19.900000000000002,0.59,0.0756,0.68,0,0,0,4,19.900000000000002,0,0,0,0,0.269,99.85000000000001,93.59,0.16,976,4.6000000000000005,108,0.9 +2013,3,1,20,30,20.700000000000003,0.51,0.07350000000000001,0.68,47,425,119,8,20.6,6,0,3,6,0.27,99.57000000000001,80.29,0.16,977,4.6000000000000005,101,1.2000000000000002 +2013,3,1,21,30,21.5,0.53,0.0853,0.68,80,675,343,8,21.200000000000003,14,0,0,14,0.27,98.32000000000001,67.03,0.16,977,4.7,90,1.5 +2013,3,1,22,30,22.1,0.5,0.08710000000000001,0.68,99,796,568,3,21.8,48,0,0,48,0.27,97.97,53.85,0.16,977,4.7,75,1.7000000000000002 +2013,3,1,23,30,22.400000000000002,0.43,0.09000000000000001,0.68,113,858,759,8,21.900000000000002,103,21,0,119,0.27,96.88,41.11,0.16,977,4.7,69,1.9000000000000001 +2013,3,2,0,30,23.400000000000002,0.43,0.11080000000000001,0.68,131,877,894,8,21.8,62,2,0,64,0.27,90.57000000000001,29.59,0.16,977,4.7,66,2.2 +2013,3,2,1,30,23.8,0.39,0.12340000000000001,0.68,143,883,964,8,21.700000000000003,171,30,0,199,0.27,87.99,21.490000000000002,0.16,977,4.7,70,2.4000000000000004 +2013,3,2,2,30,23.8,0.31,0.1262,0.68,146,879,965,8,21.700000000000003,146,27,0,171,0.268,87.95,21.26,0.16,976,4.7,78,2.6 +2013,3,2,3,30,23.5,0.32,0.1293,0.68,143,860,895,8,21.6,130,25,0,152,0.266,89.15,29.1,0.16,976,4.6000000000000005,84,2.8000000000000003 +2013,3,2,4,30,22.900000000000002,0.33,0.1143,0.68,127,836,762,8,21.400000000000002,252,27,0,272,0.265,91.03,40.53,0.16,976,4.6000000000000005,90,2.9000000000000004 +2013,3,2,5,30,22.200000000000003,0.35000000000000003,0.0881,0.68,101,798,579,8,21,169,26,0,184,0.264,93.08,53.24,0.16,976,4.5,96,2.8000000000000003 +2013,3,2,6,30,21.3,0.46,0.078,0.68,79,693,356,8,20.8,133,21,0,141,0.264,96.86,66.42,0.16,977,4.5,101,2.6 +2013,3,2,7,30,20.5,0.52,0.065,0.68,47,462,130,8,20.5,46,0,3,46,0.264,100,79.7,0.16,977,4.4,105,2.5 +2013,3,2,8,30,20.1,0.55,0.0599,0.68,0,0,0,8,20.1,0,0,0,0,0.264,100,93.03,0.16,978,4.2,108,2.5 +2013,3,2,9,30,19.900000000000002,0.59,0.0678,0.68,0,0,0,8,19.900000000000002,0,0,0,0,0.265,99.99000000000001,106,0.16,979,4.2,108,2.4000000000000004 +2013,3,2,10,30,19.900000000000002,0.55,0.0659,0.68,0,0,0,8,19.8,0,0,0,0,0.265,99.31,118.41,0.16,980,4.2,107,2.1 +2013,3,2,11,30,19.900000000000002,0.52,0.063,0.68,0,0,0,8,19.8,0,0,0,0,0.265,99.2,129.77,0.16,980,4.2,109,2 +2013,3,2,12,30,19.900000000000002,0.53,0.0639,0.68,0,0,0,8,19.8,0,0,0,0,0.264,99.14,139.12,0.16,980,4.2,111,2 +2013,3,2,13,30,19.8,0.47000000000000003,0.0641,0.68,0,0,0,8,19.700000000000003,0,0,0,0,0.264,99.51,144.81,0.16,979,4.2,111,1.9000000000000001 +2013,3,2,14,30,19.8,0.43,0.0637,0.68,0,0,0,8,19.700000000000003,0,0,0,0,0.264,99.49000000000001,144.97,0.16,979,4.2,110,1.8 +2013,3,2,15,30,19.8,0.46,0.0669,0.68,0,0,0,8,19.700000000000003,0,0,0,0,0.264,99.4,139.53,0.16,978,4.2,109,1.7000000000000002 +2013,3,2,16,30,19.8,0.44,0.066,0.68,0,0,0,8,19.700000000000003,0,0,0,0,0.264,99.26,130.32,0.16,978,4.2,109,1.6 +2013,3,2,17,30,19.8,0.42,0.06520000000000001,0.68,0,0,0,8,19.700000000000003,0,0,0,0,0.266,99.12,119.04,0.16,978,4.2,110,1.7000000000000002 +2013,3,2,18,30,19.8,0.45,0.0695,0.68,0,0,0,4,19.6,0,0,0,0,0.268,98.74000000000001,106.67,0.16,978,4.2,110,1.7000000000000002 +2013,3,2,19,30,20,0.43,0.0679,0.68,0,0,0,4,19.5,0,0,0,0,0.269,97.05,93.73,0.16,979,4.2,111,1.8 +2013,3,2,20,30,20.400000000000002,0.41000000000000003,0.0673,0.68,46,433,118,8,19.700000000000003,32,0,3,32,0.269,95.92,80.41,0.16,980,4.1000000000000005,111,2.1 +2013,3,2,21,30,21.1,0.46,0.061700000000000005,0.68,72,713,349,4,20,63,11,0,67,0.27,93.66,67.15,0.16,980,4,111,2.4000000000000004 +2013,3,2,22,30,21.700000000000003,0.53,0.0523,0.68,83,843,578,3,20.3,64,9,0,69,0.27,91.91,53.99,0.16,980,4,109,2.7 +2013,3,2,23,30,22,0.58,0.0466,0.68,89,910,773,8,20.400000000000002,281,25,0,300,0.269,90.52,41.29,0.16,981,4,107,2.8000000000000003 +2013,3,3,0,30,22.5,0.55,0.047400000000000005,0.68,95,940,911,8,20.200000000000003,194,30,0,221,0.268,86.96000000000001,29.830000000000002,0.16,980,4.1000000000000005,105,3.3000000000000003 +2013,3,3,1,30,22.6,0.55,0.047400000000000005,0.68,98,954,983,8,20,179,30,0,207,0.266,85.24,21.830000000000002,0.16,980,4.2,106,3.4000000000000004 +2013,3,3,2,30,22.5,0.56,0.0463,0.68,97,955,985,8,19.6,93,15,0,107,0.265,83.88,21.64,0.16,979,4.2,109,3.4000000000000004 +2013,3,3,3,30,22.6,0.49,0.0521,0.68,98,935,913,8,19.6,362,24,0,382,0.265,83.03,29.41,0.16,979,4.2,112,3.4000000000000004 +2013,3,3,4,30,22.5,0.47000000000000003,0.0523,0.68,93,904,777,8,19.6,333,24,0,351,0.265,83.72,40.79,0.16,978,4.1000000000000005,114,3.4000000000000004 +2013,3,3,5,30,22.200000000000003,0.47000000000000003,0.05,0.68,82,849,587,8,19.5,327,48,0,355,0.264,84.92,53.47,0.16,979,4,116,3.1 +2013,3,3,6,30,21.5,0.46,0.051000000000000004,0.68,69,737,361,3,19.6,101,18,0,108,0.264,88.7,66.64,0.16,979,3.9000000000000004,115,2.6 +2013,3,3,7,30,20.6,0.43,0.055400000000000005,0.68,45,478,129,3,19.700000000000003,32,0,3,32,0.265,94.83,79.91,0.16,980,3.8000000000000003,113,2 +2013,3,3,8,30,20,0.37,0.06420000000000001,0.68,0,0,0,3,19.6,0,0,0,0,0.265,97.35000000000001,93.25,0.16,980,3.7,113,1.7000000000000002 +2013,3,3,9,30,19.8,0.35000000000000003,0.0722,0.68,0,0,0,1,19.6,0,0,0,0,0.265,98.46000000000001,106.24000000000001,0.16,981,3.7,115,1.6 +2013,3,3,10,30,19.8,0.3,0.0814,0.68,0,0,0,1,19.5,0,0,0,0,0.265,98.27,118.68,0.16,981,3.7,116,1.7000000000000002 +2013,3,3,11,30,19.8,0.28,0.0849,0.68,0,0,0,0,19.5,0,0,0,0,0.265,98.27,130.07,0.16,981,3.8000000000000003,116,1.8 +2013,3,3,12,30,19.8,0.29,0.0912,0.68,0,0,0,1,19.5,0,0,0,0,0.264,98.07000000000001,139.48,0.16,981,3.8000000000000003,116,1.8 +2013,3,3,13,30,19.700000000000003,0.28,0.0915,0.68,0,0,0,1,19.400000000000002,0,0,0,0,0.264,98.29,145.20000000000002,0.16,980,3.8000000000000003,116,1.8 +2013,3,3,14,30,19.6,0.28,0.08610000000000001,0.68,0,0,0,1,19.3,0,0,0,0,0.263,98.12,145.33,0.16,980,3.9000000000000004,116,1.9000000000000001 +2013,3,3,15,30,19.400000000000002,0.29,0.08990000000000001,0.68,0,0,0,3,19.1,0,0,0,0,0.264,98.21000000000001,139.83,0.16,979,3.9000000000000004,117,1.8 +2013,3,3,16,30,19.3,0.27,0.10250000000000001,0.68,0,0,0,3,19,0,0,0,0,0.265,98.02,130.56,0.16,979,4,120,1.7000000000000002 +2013,3,3,17,30,19.200000000000003,0.24,0.112,0.68,0,0,0,3,18.900000000000002,0,0,0,0,0.266,98.21000000000001,119.23,0.16,980,4,123,1.7000000000000002 +2013,3,3,18,30,19.200000000000003,0.25,0.1212,0.68,0,0,0,1,18.8,0,0,0,0,0.267,97.75,106.83,0.16,980,4,125,1.7000000000000002 +2013,3,3,19,30,19.6,0.23,0.12250000000000001,0.68,0,0,0,8,18.8,0,0,0,0,0.268,95.23,93.86,0.16,981,4,126,2 +2013,3,3,20,30,20.5,0.23,0.1192,0.68,56,324,109,1,19.3,56,324,0,109,0.268,92.60000000000001,80.54,0.16,981,4,125,2.4000000000000004 +2013,3,3,21,30,21.5,0.26,0.11,0.68,91,633,336,3,19.8,28,0,0,28,0.268,90.15,67.28,0.16,982,4,122,2.9000000000000004 +2013,3,3,22,30,22.400000000000002,0.32,0.08080000000000001,0.68,98,803,568,1,20.1,98,803,0,568,0.268,87.05,54.13,0.16,982,4,118,3.3000000000000003 +2013,3,3,23,30,22.900000000000002,0.32,0.0796,0.68,109,871,762,1,20.1,109,871,0,762,0.268,84.09,41.46,0.16,982,4,117,3.5 +2013,3,4,0,30,23.8,0.38,0.0736,0.68,112,914,903,1,19.900000000000002,112,914,0,903,0.266,78.84,30.07,0.16,981,4,114,3.7 +2013,3,4,1,30,24.1,0.36,0.07980000000000001,0.68,119,924,975,1,19.8,119,924,0,975,0.265,76.95,22.18,0.16,981,4,114,3.7 +2013,3,4,2,30,24.1,0.32,0.0806,0.68,120,925,977,1,19.700000000000003,120,925,1,977,0.265,76.49,22.02,0.16,981,3.9000000000000004,115,3.7 +2013,3,4,3,30,23.900000000000002,0.24,0.11960000000000001,0.68,140,872,897,1,19.6,140,872,0,897,0.264,76.8,29.73,0.16,980,3.9000000000000004,116,3.6 +2013,3,4,4,30,23.5,0.25,0.1106,0.68,126,842,761,1,19.400000000000002,126,842,0,761,0.263,77.94,41.06,0.16,980,3.9000000000000004,116,3.5 +2013,3,4,5,30,22.900000000000002,0.26,0.0961,0.68,106,788,573,1,19.3,106,788,0,573,0.263,80.3,53.71,0.16,981,3.9000000000000004,116,3.1 +2013,3,4,6,30,22,0.31,0.0887,0.68,84,673,348,1,19.5,84,673,0,348,0.263,85.49,66.86,0.16,981,3.9000000000000004,114,2.5 +2013,3,4,7,30,21,0.33,0.0751,0.68,49,424,122,1,19.6,49,424,0,122,0.263,91.48,80.13,0.16,982,3.9000000000000004,114,2 +2013,3,4,8,30,20.200000000000003,0.31,0.0752,0.68,0,0,0,1,19.400000000000002,0,0,0,0,0.263,94.98,93.48,0.16,982,3.8000000000000003,116,1.7000000000000002 +2013,3,4,9,30,19.8,0.31,0.0712,0.68,0,0,0,3,19.3,0,0,0,0,0.264,96.87,106.48,0.16,983,3.6,119,1.6 +2013,3,4,10,30,19.6,0.32,0.06760000000000001,0.68,0,0,0,0,19.200000000000003,0,0,0,0,0.264,97.29,118.95,0.16,983,3.5,120,1.5 +2013,3,4,11,30,19.400000000000002,0.29,0.0723,0.68,0,0,0,0,19.1,0,0,0,0,0.263,97.9,130.38,0.16,983,3.4000000000000004,120,1.5 +2013,3,4,12,30,19.200000000000003,0.29,0.0745,0.68,0,0,0,0,19,0,0,0,0,0.263,98.51,139.83,0.16,982,3.3000000000000003,119,1.5 +2013,3,4,13,30,19,0.28,0.0772,0.68,0,0,0,0,18.8,0,0,0,0,0.263,99.06,145.58,0.16,982,3.2,119,1.4000000000000001 +2013,3,4,14,30,19,0.26,0.08460000000000001,0.68,0,0,0,0,18.7,0,0,0,0,0.263,98.32000000000001,145.70000000000002,0.16,982,3.2,119,1.4000000000000001 +2013,3,4,15,30,19,0.26,0.0959,0.68,0,0,0,0,18.7,0,0,0,0,0.263,98.43,140.13,0.16,982,3.2,119,1.6 +2013,3,4,16,30,19,0.24,0.10740000000000001,0.68,0,0,0,1,18.8,0,0,0,0,0.264,98.66,130.79,0.16,981,3.2,119,1.6 +2013,3,4,17,30,19,0.21,0.1155,0.68,0,0,0,1,18.900000000000002,0,0,0,0,0.264,99.12,119.41,0.16,982,3.2,119,1.6 +2013,3,4,18,30,19.1,0.26,0.1265,0.68,0,0,0,1,18.900000000000002,0,0,1,0,0.264,98.81,106.98,0.16,982,3.2,118,1.7000000000000002 +2013,3,4,19,30,19.5,0.23,0.1395,0.68,0,0,0,3,19,0,0,0,0,0.264,96.78,94,0.16,982,3.2,118,1.9000000000000001 +2013,3,4,20,30,20.400000000000002,0.19,0.1579,0.68,63,268,106,3,19.6,22,0,1,22,0.263,95.01,80.66,0.16,983,3.2,119,2.3000000000000003 +2013,3,4,21,30,21.3,0.21,0.1723,0.68,114,557,328,1,20.200000000000003,114,557,0,328,0.263,93.65,67.41,0.16,983,3.1,117,2.8000000000000003 +2013,3,4,22,30,22.400000000000002,0.21,0.16290000000000002,0.68,138,718,557,1,20.400000000000002,138,718,0,557,0.262,88.24,54.27,0.16,984,3.1,113,3.3000000000000003 +2013,3,4,23,30,22.900000000000002,0.2,0.1547,0.68,151,805,753,1,20.1,151,805,0,753,0.262,84.3,41.63,0.16,984,3.1,111,3.5 +2013,3,5,0,30,24,0.28,0.11120000000000001,0.68,135,888,902,1,19.8,135,888,0,902,0.26,77.53,30.310000000000002,0.16,983,3.2,110,3.7 +2013,3,5,1,30,24.3,0.28,0.1145,0.68,141,903,975,1,19.700000000000003,141,903,0,975,0.259,75.33,22.52,0.16,982,3.2,111,3.8000000000000003 +2013,3,5,2,30,24.1,0.26,0.12090000000000001,0.68,145,897,975,1,19.6,145,897,1,975,0.258,75.82000000000001,22.41,0.16,982,3.2,112,3.7 +2013,3,5,3,30,23.700000000000003,0.24,0.1371,0.68,150,865,899,1,19.400000000000002,150,865,0,899,0.258,76.86,30.05,0.16,981,3.2,114,3.6 +2013,3,5,4,30,23.200000000000003,0.22,0.14100000000000001,0.68,144,819,759,3,19.3,188,29,0,210,0.259,78.60000000000001,41.32,0.16,981,3.2,116,3.3000000000000003 +2013,3,5,5,30,22.6,0.2,0.1409,0.68,129,744,567,1,19.200000000000003,129,744,0,567,0.26,81.21000000000001,53.95,0.16,982,3.1,119,3 +2013,3,5,6,30,21.700000000000003,0.21,0.1447,0.68,106,600,339,3,19.1,120,20,0,128,0.261,85.31,67.08,0.16,982,3,121,2.4000000000000004 +2013,3,5,7,30,20.5,0.22,0.12660000000000002,0.68,59,330,115,1,18.900000000000002,59,330,0,115,0.262,90.82000000000001,80.35000000000001,0.16,983,2.9000000000000004,124,1.7000000000000002 +2013,3,5,8,30,19.6,0.24,0.1092,0.68,0,0,0,1,18.400000000000002,0,0,0,0,0.264,92.63,93.71000000000001,0.16,983,2.8000000000000003,125,1.4000000000000001 +2013,3,5,9,30,19.200000000000003,0.24,0.11270000000000001,0.68,0,0,0,1,18.1,0,0,0,0,0.264,93.17,106.73,0.16,984,2.7,124,1.3 +2013,3,5,10,30,18.900000000000002,0.24,0.1073,0.68,0,0,0,3,17.8,0,0,0,0,0.264,93.41,119.22,0.16,984,2.6,123,1.3 +2013,3,5,11,30,18.7,0.24,0.1087,0.68,0,0,0,3,17.6,0,0,0,0,0.264,93.37,130.69,0.16,984,2.6,122,1.2000000000000002 +2013,3,5,12,30,18.6,0.23,0.1187,0.68,0,0,0,3,17.5,0,0,0,0,0.263,93.3,140.19,0.16,983,2.5,121,1.3 +2013,3,5,13,30,18.5,0.23,0.1236,0.68,0,0,0,0,17.5,0,0,0,0,0.263,93.88,145.97,0.16,983,2.5,120,1.3 +2013,3,5,14,30,18.400000000000002,0.23,0.1273,0.68,0,0,0,0,17.5,0,0,0,0,0.262,94.29,146.07,0.16,982,2.5,120,1.3 +2013,3,5,15,30,18.2,0.22,0.1361,0.68,0,0,0,3,17.5,0,0,0,0,0.261,95.54,140.43,0.16,982,2.5,120,1.2000000000000002 +2013,3,5,16,30,18.1,0.2,0.14750000000000002,0.68,0,0,0,3,17.5,0,0,0,0,0.262,96.32000000000001,131.02,0.16,982,2.5,120,1.2000000000000002 +2013,3,5,17,30,18.1,0.19,0.159,0.68,0,0,0,1,17.6,0,0,0,0,0.262,97.01,119.60000000000001,0.16,982,2.4000000000000004,121,1.2000000000000002 +2013,3,5,18,30,18.2,0.2,0.1638,0.68,0,0,0,1,17.7,0,0,0,0,0.262,97.10000000000001,107.13,0.16,982,2.4000000000000004,121,1.3 +2013,3,5,19,30,18.7,0.21,0.15940000000000001,0.68,0,0,0,1,17.900000000000002,0,0,0,0,0.262,95,94.13,0.16,983,2.4000000000000004,120,1.6 +2013,3,5,20,30,19.700000000000003,0.2,0.1577,0.68,63,274,107,1,18.5,63,274,0,107,0.262,92.99,80.78,0.16,984,2.4000000000000004,120,2.1 +2013,3,5,21,30,20.8,0.23,0.16060000000000002,0.68,111,583,334,1,19.1,111,583,0,334,0.261,90.05,67.53,0.16,984,2.4000000000000004,117,2.6 +2013,3,5,22,30,22,0.23,0.14850000000000002,0.68,132,746,566,1,19.200000000000003,132,746,0,566,0.26,84.08,54.410000000000004,0.16,984,2.4000000000000004,112,3.1 +2013,3,5,23,30,22.5,0.23,0.1519,0.68,151,823,764,1,18.7,151,823,0,764,0.259,79.3,41.81,0.16,984,2.3000000000000003,110,3.3000000000000003 +2013,3,6,0,30,23.5,0.28,0.12660000000000002,0.68,145,891,912,1,18.5,145,891,0,912,0.257,73.34,30.560000000000002,0.16,984,2.3000000000000003,107,3.3000000000000003 +2013,3,6,1,30,23.8,0.31,0.1116,0.68,140,923,991,1,18.3,140,923,0,991,0.256,71.55,22.88,0.16,983,2.3000000000000003,107,3.3000000000000003 +2013,3,6,2,30,23.900000000000002,0.31,0.1046,0.68,136,929,993,1,18.400000000000002,136,929,1,993,0.256,71.28,22.79,0.16,983,2.3000000000000003,107,3.2 +2013,3,6,3,30,23.700000000000003,0.33,0.10260000000000001,0.68,131,912,918,1,18.6,131,912,0,918,0.256,72.94,30.38,0.16,982,2.4000000000000004,108,3.1 +2013,3,6,4,30,23.200000000000003,0.35000000000000003,0.1008,0.68,121,877,777,1,18.6,121,877,0,777,0.257,75.52,41.6,0.16,982,2.4000000000000004,111,2.9000000000000004 +2013,3,6,5,30,22.6,0.34,0.09430000000000001,0.68,106,815,582,1,19,106,815,0,582,0.258,80.05,54.19,0.16,982,2.4000000000000004,114,2.6 +2013,3,6,6,30,21.6,0.33,0.0984,0.68,88,681,351,1,19.3,88,681,0,351,0.259,86.58,67.31,0.16,983,2.3000000000000003,117,2.2 +2013,3,6,7,30,20.400000000000002,0.33,0.0961,0.68,53,393,117,3,19.400000000000002,36,0,3,36,0.26,93.92,80.58,0.16,983,2.3000000000000003,121,1.6 +2013,3,6,8,30,19.400000000000002,0.32,0.0936,0.68,0,0,0,3,19.1,0,0,0,0,0.262,98.25,93.94,0.16,984,2.3000000000000003,123,1.2000000000000002 +2013,3,6,9,30,19,0.33,0.10300000000000001,0.68,0,0,0,1,18.900000000000002,0,0,0,0,0.263,99.43,106.98,0.16,984,2.3000000000000003,123,1.1 +2013,3,6,10,30,18.7,0.32,0.1038,0.68,0,0,0,0,18.7,0,0,0,0,0.263,100,119.49000000000001,0.16,985,2.3000000000000003,124,1 +2013,3,6,11,30,18.5,0.29,0.10310000000000001,0.68,0,0,0,3,18.5,0,0,0,0,0.263,100,131,0.16,985,2.4000000000000004,125,0.9 +2013,3,6,12,30,18.3,0.32,0.1134,0.68,0,0,0,3,18.3,0,0,0,0,0.263,100,140.55,0.16,984,2.4000000000000004,126,0.9 +2013,3,6,13,30,18.3,0.31,0.11620000000000001,0.68,0,0,0,1,18.2,0,0,0,0,0.262,99.59,146.36,0.16,984,2.4000000000000004,125,0.9 +2013,3,6,14,30,18.2,0.27,0.1193,0.68,0,0,0,3,18.2,0,0,0,0,0.262,99.89,146.44,0.16,983,2.4000000000000004,125,0.9 +2013,3,6,15,30,18.1,0.3,0.1217,0.68,0,0,0,3,18.1,0,0,0,0,0.262,100,140.73,0.16,983,2.4000000000000004,124,0.9 +2013,3,6,16,30,18,0.29,0.11660000000000001,0.68,0,0,0,1,18,0,0,0,0,0.262,100,131.25,0.16,983,2.4000000000000004,124,1 +2013,3,6,17,30,18,0.27,0.1131,0.68,0,0,0,3,18,0,0,0,0,0.262,100,119.78,0.16,983,2.3000000000000003,123,1 +2013,3,6,18,30,18,0.29,0.115,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.263,99.67,107.28,0.16,983,2.3000000000000003,121,1 +2013,3,6,19,30,18.5,0.28,0.1096,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.263,96.38,94.26,0.16,983,2.3000000000000003,118,1.4000000000000001 +2013,3,6,20,30,19.6,0.28,0.0951,0.68,52,380,112,1,18.6,52,380,0,112,0.262,93.95,80.91,0.16,984,2.3000000000000003,117,1.9000000000000001 +2013,3,6,21,30,20.8,0.37,0.07390000000000001,0.68,78,717,350,0,19.200000000000003,78,717,0,350,0.262,90.35000000000001,67.66,0.16,984,2.2,114,2.3000000000000003 +2013,3,6,22,30,22,0.45,0.059800000000000006,0.68,88,859,585,1,19.200000000000003,88,859,0,585,0.261,84.31,54.56,0.16,984,2.3000000000000003,110,2.6 +2013,3,6,23,30,22.5,0.42,0.0665,0.68,102,914,781,1,18.900000000000002,102,914,0,781,0.261,80.2,41.99,0.16,985,2.3000000000000003,108,2.7 +2013,3,7,0,30,23.6,0.32,0.0878,0.68,122,926,918,1,18.6,122,926,0,918,0.26,73.42,30.810000000000002,0.16,984,2.3000000000000003,107,2.8000000000000003 +2013,3,7,1,30,24,0.36,0.0902,0.68,127,942,992,1,18.400000000000002,127,942,0,992,0.258,70.87,23.23,0.16,984,2.3000000000000003,108,2.8000000000000003 +2013,3,7,2,30,23.900000000000002,0.37,0.0858,0.68,124,944,991,1,18.2,124,944,1,991,0.257,70.65,23.18,0.16,983,2.4000000000000004,109,2.8000000000000003 +2013,3,7,3,30,23.6,0.28,0.1297,0.68,147,885,907,1,18.1,147,885,0,907,0.257,71.44,30.71,0.16,983,2.4000000000000004,109,2.7 +2013,3,7,4,30,23.200000000000003,0.29,0.1311,0.68,138,843,766,1,18.2,138,843,0,766,0.256,73.60000000000001,41.87,0.16,983,2.4000000000000004,110,2.6 +2013,3,7,5,30,22.6,0.3,0.1164,0.68,116,785,573,1,18.3,116,785,0,573,0.257,76.77,54.43,0.16,983,2.4000000000000004,110,2.3000000000000003 +2013,3,7,6,30,21.6,0.36,0.0999,0.68,88,674,345,1,18.5,88,674,0,345,0.257,82.67,67.54,0.16,983,2.4000000000000004,112,1.7000000000000002 +2013,3,7,7,30,20.400000000000002,0.41000000000000003,0.0805,0.68,49,421,116,1,18.8,49,421,0,116,0.258,90.44,80.8,0.16,984,2.3000000000000003,114,1.1 +2013,3,7,8,30,19.6,0.42,0.0747,0.68,0,0,0,3,18.400000000000002,0,0,0,0,0.259,92.83,94.18,0.16,985,2.3000000000000003,117,1 +2013,3,7,9,30,19.200000000000003,0.41000000000000003,0.0758,0.68,0,0,0,3,18.3,0,0,0,0,0.26,94.32000000000001,107.23,0.16,985,2.3000000000000003,119,1 +2013,3,7,10,30,18.900000000000002,0.43,0.0717,0.68,0,0,0,1,18.1,0,0,0,0,0.26,95.31,119.77,0.16,986,2.2,120,1 +2013,3,7,11,30,18.7,0.43,0.0699,0.68,0,0,0,0,18,0,0,0,0,0.26,95.58,131.32,0.16,986,2.2,122,0.9 +2013,3,7,12,30,18.400000000000002,0.43,0.0683,0.68,0,0,0,0,17.8,0,0,0,0,0.259,96.57000000000001,140.91,0.16,986,2.2,124,0.9 +2013,3,7,13,30,18.2,0.41000000000000003,0.0693,0.68,0,0,0,0,17.7,0,0,0,0,0.259,96.81,146.76,0.16,985,2.2,126,0.9 +2013,3,7,14,30,18,0.39,0.07100000000000001,0.68,0,0,0,0,17.6,0,0,0,0,0.259,97.24000000000001,146.8,0.16,985,2.1,125,0.9 +2013,3,7,15,30,17.900000000000002,0.37,0.07400000000000001,0.68,0,0,0,3,17.400000000000002,0,0,0,0,0.259,96.75,141.03,0.16,984,2.1,123,0.9 +2013,3,7,16,30,17.900000000000002,0.35000000000000003,0.0789,0.68,0,0,0,3,17.400000000000002,0,0,0,0,0.259,96.62,131.48,0.16,984,2.1,125,0.9 +2013,3,7,17,30,17.8,0.36,0.07740000000000001,0.68,0,0,0,0,17.3,0,0,0,0,0.259,97.07000000000001,119.96000000000001,0.16,984,2.1,130,0.8 +2013,3,7,18,30,17.7,0.38,0.0752,0.68,0,0,0,3,17.3,0,0,0,0,0.26,97.33,107.43,0.16,985,2.1,132,0.8 +2013,3,7,19,30,18.3,0.38,0.076,0.68,0,0,0,3,17.3,0,0,0,0,0.259,93.65,94.39,0.16,985,2.1,131,1.1 +2013,3,7,20,30,19.5,0.38,0.0772,0.68,48,421,114,1,18,48,421,0,114,0.258,91.33,81.03,0.16,986,2.1,129,1.6 +2013,3,7,21,30,21,0.38,0.0766,0.68,79,711,347,1,18.7,79,711,0,347,0.257,86.54,67.79,0.16,986,2.2,124,2 +2013,3,7,22,30,22.3,0.38,0.0746,0.68,96,840,581,1,19.1,96,840,0,581,0.256,82.05,54.7,0.16,986,2.2,116,2.4000000000000004 +2013,3,7,23,30,22.900000000000002,0.39,0.0669,0.68,102,912,778,1,18.8,102,912,0,778,0.255,77.94,42.17,0.16,986,2.3000000000000003,113,2.6 +2013,3,8,0,30,23.8,0.33,0.0872,0.68,121,924,913,1,18.5,121,924,0,913,0.255,72.15,31.060000000000002,0.16,986,2.4000000000000004,109,2.8000000000000003 +2013,3,8,1,30,24.1,0.34,0.08750000000000001,0.68,125,940,987,1,18.400000000000002,125,940,0,987,0.255,70.51,23.580000000000002,0.16,985,2.4000000000000004,109,2.8000000000000003 +2013,3,8,2,30,24.200000000000003,0.33,0.08120000000000001,0.68,121,944,986,1,18.6,121,944,1,986,0.255,70.87,23.57,0.16,984,2.5,111,2.8000000000000003 +2013,3,8,3,30,24.1,0.42,0.06910000000000001,0.68,110,940,915,1,18.8,110,940,0,915,0.255,72.10000000000001,31.04,0.16,984,2.5,111,2.8000000000000003 +2013,3,8,4,30,23.8,0.45,0.0663,0.68,101,907,773,3,19,265,25,0,284,0.255,74.52,42.15,0.16,984,2.6,112,2.6 +2013,3,8,5,30,23.200000000000003,0.43,0.0671,0.68,91,841,577,1,19.3,91,841,0,577,0.254,78.53,54.68,0.16,984,2.6,112,2.3000000000000003 +2013,3,8,6,30,22.3,0.44,0.0708,0.68,76,711,344,1,19.700000000000003,76,711,0,344,0.254,85.13,67.78,0.16,984,2.7,112,1.8 +2013,3,8,7,30,21.1,0.41000000000000003,0.0753,0.68,47,413,111,1,20,47,413,0,111,0.254,93.5,81.03,0.16,985,2.8000000000000003,114,1.3 +2013,3,8,8,30,20.200000000000003,0.34,0.0955,0.68,0,0,0,3,19.8,0,0,0,0,0.253,97.5,94.41,0.16,986,2.9000000000000004,114,1 +2013,3,8,9,30,20,0.33,0.12350000000000001,0.68,0,0,0,3,19.8,0,0,0,0,0.253,98.55,107.48,0.16,986,2.9000000000000004,113,1.2000000000000002 +2013,3,8,10,30,19.900000000000002,0.31,0.125,0.68,0,0,0,3,19.700000000000003,0,0,0,0,0.253,98.57000000000001,120.04,0.16,986,2.9000000000000004,110,1.3 +2013,3,8,11,30,19.700000000000003,0.28,0.1226,0.68,0,0,0,3,19.5,0,0,0,0,0.253,98.89,131.63,0.16,986,2.8000000000000003,107,1.3 +2013,3,8,12,30,19.400000000000002,0.31,0.11560000000000001,0.68,0,0,0,1,19.3,0,0,0,0,0.253,99.19,141.27,0.16,986,2.7,105,1.2000000000000002 +2013,3,8,13,30,19,0.31,0.10890000000000001,0.68,0,0,0,1,18.900000000000002,0,0,0,0,0.253,99.5,147.15,0.16,986,2.6,106,1.1 +2013,3,8,14,30,18.7,0.3,0.1044,0.68,0,0,0,1,18.6,0,0,0,0,0.253,99.2,147.17000000000002,0.16,985,2.5,110,1 +2013,3,8,15,30,18.3,0.28,0.11850000000000001,0.68,0,0,0,0,18.2,0,0,0,0,0.253,99.4,141.32,0.16,985,2.5,116,1 +2013,3,8,16,30,18.1,0.28,0.1198,0.68,0,0,0,3,18,0,0,0,0,0.254,99.28,131.7,0.16,984,2.4000000000000004,122,0.9 +2013,3,8,17,30,18,0.29,0.11710000000000001,0.68,0,0,0,3,17.900000000000002,0,0,0,0,0.254,99.07000000000001,120.13,0.16,985,2.4000000000000004,123,0.9 +2013,3,8,18,30,17.900000000000002,0.29,0.1226,0.68,0,0,0,3,17.8,0,0,0,0,0.254,99.2,107.58,0.16,985,2.4000000000000004,124,0.9 +2013,3,8,19,30,18.5,0.28,0.1257,0.68,0,0,0,1,17.8,0,0,0,0,0.254,95.47,94.52,0.16,986,2.5,124,1.1 +2013,3,8,20,30,19.700000000000003,0.29,0.1165,0.68,54,329,105,1,18.6,54,329,0,105,0.254,93.44,81.15,0.16,986,2.5,122,1.7000000000000002 +2013,3,8,21,30,21,0.31,0.1105,0.68,91,648,335,1,19.3,91,648,0,335,0.254,90.22,67.91,0.16,986,2.5,117,2.3000000000000003 +2013,3,8,22,30,22.1,0.32,0.1126,0.68,114,784,565,1,19.3,114,784,0,565,0.254,84.11,54.84,0.16,986,2.5,112,2.8000000000000003 +2013,3,8,23,30,22.6,0.33,0.1174,0.68,130,852,759,1,18.7,130,852,0,759,0.255,78.77,42.36,0.16,986,2.5,110,3 +2013,3,9,0,30,23.400000000000002,0.53,0.0795,0.68,114,931,910,1,18.5,114,931,0,910,0.255,74.05,31.310000000000002,0.15,985,2.5,110,3.1 +2013,3,9,1,30,23.700000000000003,0.56,0.0752,0.68,115,951,984,1,18.5,115,951,0,984,0.256,72.82000000000001,23.94,0.15,984,2.5,110,3.1 +2013,3,9,2,30,23.8,0.54,0.07390000000000001,0.68,114,950,982,1,18.6,114,950,0,982,0.256,72.77,23.96,0.15,984,2.6,111,3.1 +2013,3,9,3,30,23.700000000000003,0.46,0.09040000000000001,0.68,120,916,902,1,18.7,120,916,0,902,0.256,73.57000000000001,31.37,0.15,984,2.7,111,3 +2013,3,9,4,30,23.3,0.48,0.0878,0.68,111,881,762,1,18.7,111,881,0,762,0.256,75.42,42.43,0.15,984,2.7,112,2.8000000000000003 +2013,3,9,5,30,22.700000000000003,0.49,0.0847,0.68,98,817,567,3,18.8,292,37,0,313,0.256,78.43,54.93,0.15,984,2.7,113,2.4000000000000004 +2013,3,9,6,30,21.8,0.52,0.0879,0.68,81,684,337,3,18.900000000000002,161,32,0,174,0.255,83.43,68.01,0.15,984,2.7,115,1.8 +2013,3,9,7,30,20.6,0.5,0.08660000000000001,0.68,47,390,107,1,19,47,390,0,107,0.256,90.83,81.26,0.15,985,2.7,119,1.2000000000000002 +2013,3,9,8,30,19.8,0.48,0.08510000000000001,0.68,0,0,0,3,18.7,0,0,0,0,0.256,93.31,94.65,0.15,985,2.6,124,1 +2013,3,9,9,30,19.6,0.46,0.0884,0.68,0,0,0,3,18.5,0,0,0,0,0.255,93.51,107.73,0.15,986,2.6,130,1 +2013,3,9,10,30,19.3,0.47000000000000003,0.0823,0.68,0,0,0,3,18.400000000000002,0,0,0,0,0.254,94.35000000000001,120.32000000000001,0.15,986,2.5,136,1 +2013,3,9,11,30,18.8,0.47000000000000003,0.07680000000000001,0.68,0,0,0,3,18.1,0,0,0,0,0.253,95.5,131.94,0.15,986,2.5,142,0.9 +2013,3,9,12,30,18.400000000000002,0.44,0.0858,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.251,96.76,141.63,0.15,986,2.5,148,0.8 +2013,3,9,13,30,18,0.41000000000000003,0.0932,0.68,0,0,0,1,17.7,0,0,0,0,0.25,98.27,147.55,0.15,985,2.5,152,0.9 +2013,3,9,14,30,17.8,0.4,0.09380000000000001,0.68,0,0,0,1,17.6,0,0,0,0,0.25,98.56,147.54,0.15,984,2.5,152,0.9 +2013,3,9,15,30,17.6,0.4,0.0959,0.68,0,0,0,3,17.5,0,0,0,0,0.249,99.43,141.62,0.15,984,2.5,151,1 +2013,3,9,16,30,17.5,0.39,0.0974,0.68,0,0,0,3,17.5,0,0,0,0,0.25,99.75,131.93,0.15,984,2.5,153,1 +2013,3,9,17,30,17.400000000000002,0.37,0.0988,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.25,100,120.31,0.15,984,2.6,154,1 +2013,3,9,18,30,17.400000000000002,0.39,0.11230000000000001,0.68,0,0,0,1,17.400000000000002,0,0,0,0,0.25,100,107.72,0.15,984,2.6,153,1 +2013,3,9,19,30,17.900000000000002,0.37,0.12010000000000001,0.68,0,0,0,3,17.5,0,0,0,0,0.25,97.61,94.65,0.15,984,2.6,151,1.3 +2013,3,9,20,30,19,0.34,0.1279,0.68,55,310,102,8,18.1,52,8,3,53,0.25,94.41,81.27,0.15,985,2.5,145,1.7000000000000002 +2013,3,9,21,30,20.200000000000003,0.37,0.1427,0.68,101,602,326,1,18.8,101,602,0,326,0.25,91.63,68.04,0.15,985,2.6,136,2 +2013,3,9,22,30,21.6,0.38,0.13470000000000001,0.68,122,757,556,3,19.400000000000002,294,39,0,316,0.25,87.36,54.99,0.15,985,2.6,123,2.3000000000000003 +2013,3,9,23,30,22.400000000000002,0.39,0.1228,0.68,131,846,754,4,19.3,472,97,0,544,0.25,82.73,42.54,0.15,985,2.6,116,2.5 +2013,3,10,0,30,23.8,0.34,0.1421,0.68,150,866,888,1,18.900000000000002,150,866,0,888,0.25,74.16,31.57,0.15,984,2.7,112,2.6 +2013,3,10,1,30,24.200000000000003,0.35000000000000003,0.131,0.68,148,894,963,1,18.8,148,894,0,963,0.251,71.98,24.3,0.15,984,2.7,112,2.7 +2013,3,10,2,30,24.400000000000002,0.34,0.12040000000000001,0.68,142,901,963,3,18.8,592,67,0,654,0.253,71.08,24.36,0.15,983,2.8000000000000003,111,2.7 +2013,3,10,3,30,24.1,0.38,0.114,0.68,134,889,891,3,18.8,566,99,0,650,0.254,72.15,31.71,0.15,983,2.8000000000000003,111,2.7 +2013,3,10,4,30,23.700000000000003,0.4,0.108,0.68,122,856,751,3,18.8,386,31,0,409,0.255,74.05,42.72,0.15,983,2.8000000000000003,111,2.6 +2013,3,10,5,30,23,0.39,0.0941,0.68,103,799,559,1,19,103,799,0,559,0.256,78.01,55.19,0.15,983,2.8000000000000003,110,2.3000000000000003 +2013,3,10,6,30,22,0.42,0.0848,0.68,80,679,331,1,19.1,80,679,0,331,0.258,83.82000000000001,68.25,0.15,983,2.8000000000000003,109,1.8 +2013,3,10,7,30,20.700000000000003,0.44,0.07970000000000001,0.68,46,391,104,1,19.3,46,391,0,104,0.259,91.74,81.49,0.15,984,2.7,109,1.2000000000000002 +2013,3,10,8,30,19.8,0.41000000000000003,0.08370000000000001,0.68,0,0,0,3,18.900000000000002,0,0,0,0,0.26,94.45,94.89,0.15,984,2.7,113,1 +2013,3,10,9,30,19.3,0.37,0.0906,0.68,0,0,0,0,18.6,0,0,0,0,0.261,95.9,107.98,0.15,984,2.7,117,0.9 +2013,3,10,10,30,18.900000000000002,0.36,0.0974,0.68,0,0,0,1,18.400000000000002,0,0,0,0,0.261,97.09,120.60000000000001,0.15,984,2.7,123,0.9 +2013,3,10,11,30,18.5,0.35000000000000003,0.0998,0.68,0,0,0,3,18.3,0,0,0,0,0.261,98.65,132.26,0.15,984,2.7,127,0.8 +2013,3,10,12,30,18.3,0.36,0.09960000000000001,0.68,0,0,0,3,18.1,0,0,0,0,0.261,98.88,141.99,0.15,984,2.6,129,0.9 +2013,3,10,13,30,18.1,0.37,0.0981,0.68,0,0,0,1,18,0,0,0,0,0.261,99.24000000000001,147.94,0.15,983,2.6,128,0.9 +2013,3,10,14,30,18,0.37,0.0937,0.68,0,0,0,3,17.900000000000002,0,0,0,0,0.261,99.18,147.91,0.15,983,2.6,128,0.9 +2013,3,10,15,30,17.900000000000002,0.42,0.0758,0.68,0,0,0,3,17.7,0,0,0,0,0.26,98.89,141.91,0.15,982,2.5,128,0.9 +2013,3,10,16,30,17.6,0.49,0.058600000000000006,0.68,0,0,0,3,17.5,0,0,0,0,0.26,99.29,132.15,0.15,982,2.5,129,0.9 +2013,3,10,17,30,17.400000000000002,0.52,0.054900000000000004,0.68,0,0,0,3,17.3,0,0,0,0,0.26,99.18,120.48,0.15,983,2.4000000000000004,131,0.9 +2013,3,10,18,30,17.3,0.53,0.0551,0.68,0,0,0,3,17.1,0,0,0,0,0.259,98.65,107.86,0.15,983,2.4000000000000004,136,0.9 +2013,3,10,19,30,17.8,0.55,0.056100000000000004,0.68,0,0,0,3,17,0,0,0,0,0.259,94.96000000000001,94.78,0.15,984,2.4000000000000004,140,1.1 +2013,3,10,20,30,19.200000000000003,0.54,0.0584,0.68,42,451,109,3,17.8,58,29,3,62,0.259,91.75,81.39,0.15,984,2.4000000000000004,141,1.7000000000000002 +2013,3,10,21,30,20.6,0.55,0.0621,0.68,71,728,341,3,18.6,195,83,0,226,0.259,88.17,68.17,0.15,985,2.4000000000000004,135,2.2 +2013,3,10,22,30,21.900000000000002,0.56,0.0626,0.68,87,847,571,1,18.900000000000002,87,847,0,571,0.259,83.26,55.14,0.15,985,2.5,128,2.6 +2013,3,10,23,30,22.5,0.51,0.0713,0.68,102,899,762,1,18.900000000000002,102,899,0,762,0.259,79.93,42.730000000000004,0.15,985,2.6,125,2.8000000000000003 +2013,3,11,0,30,23.700000000000003,0.65,0.0664,0.68,105,938,902,1,18.6,105,938,0,902,0.258,73.16,31.830000000000002,0.15,984,2.7,119,3 +2013,3,11,1,30,24.1,0.58,0.0795,0.68,116,941,972,1,18.5,116,941,0,972,0.258,70.88,24.66,0.15,984,2.7,117,3 +2013,3,11,2,30,24.200000000000003,0.52,0.08510000000000001,0.68,120,935,969,1,18.400000000000002,120,935,0,969,0.258,69.89,24.75,0.15,984,2.7,116,3 +2013,3,11,3,30,24,0.24,0.1531,0.68,158,850,879,1,18.1,158,850,0,879,0.258,69.64,32.05,0.15,983,2.7,117,3 +2013,3,11,4,30,23.5,0.25,0.1391,0.68,141,822,742,1,18,141,822,0,742,0.259,71.17,43.01,0.15,983,2.6,119,2.8000000000000003 +2013,3,11,5,30,22.700000000000003,0.26,0.126,0.68,119,758,549,1,18,119,758,0,549,0.26,74.58,55.44,0.15,983,2.6,122,2.5 +2013,3,11,6,30,21.700000000000003,0.34,0.1003,0.68,86,655,326,1,18.2,86,655,0,326,0.26,80.41,68.49,0.15,983,2.5,126,1.9000000000000001 +2013,3,11,7,30,20.200000000000003,0.41000000000000003,0.0799,0.68,45,386,101,0,18.2,45,386,0,101,0.261,88.38,81.73,0.15,984,2.4000000000000004,129,1.4000000000000001 +2013,3,11,8,30,19.200000000000003,0.42,0.07930000000000001,0.68,0,0,0,0,17.6,0,0,0,0,0.262,90.66,95.13,0.15,985,2.4000000000000004,132,1.2000000000000002 +2013,3,11,9,30,18.6,0.42,0.08,0.68,0,0,0,3,17.400000000000002,0,0,0,0,0.262,92.5,108.24000000000001,0.15,985,2.3000000000000003,134,1.1 +2013,3,11,10,30,18.2,0.42,0.0782,0.68,0,0,0,0,17.2,0,0,0,0,0.262,93.73,120.88,0.15,985,2.3000000000000003,136,1.1 +2013,3,11,11,30,17.900000000000002,0.4,0.08120000000000001,0.68,0,0,0,0,17,0,0,0,0,0.261,94.7,132.57,0.15,985,2.3000000000000003,137,1.1 +2013,3,11,12,30,17.7,0.38,0.0876,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.261,95.32000000000001,142.36,0.15,985,2.3000000000000003,137,1.1 +2013,3,11,13,30,17.5,0.36,0.09140000000000001,0.68,0,0,0,3,16.900000000000002,0,0,0,0,0.26,96.3,148.34,0.15,985,2.3000000000000003,137,1 +2013,3,11,14,30,17.400000000000002,0.34,0.0944,0.68,0,0,0,3,16.900000000000002,0,0,0,0,0.26,96.87,148.28,0.15,984,2.4000000000000004,138,1 +2013,3,11,15,30,17.3,0.35000000000000003,0.0906,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.259,97.43,142.20000000000002,0.15,984,2.3000000000000003,140,1 +2013,3,11,16,30,17.1,0.36,0.0834,0.68,0,0,0,0,16.8,0,0,0,0,0.259,98,132.37,0.15,983,2.3000000000000003,142,1 +2013,3,11,17,30,16.8,0.37,0.076,0.68,0,0,0,0,16.6,0,0,0,0,0.26,98.85000000000001,120.65,0.15,983,2.3000000000000003,145,1 +2013,3,11,18,30,16.6,0.36,0.0781,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.26,98.75,108.01,0.15,983,2.2,147,1 +2013,3,11,19,30,17.2,0.34,0.083,0.68,0,0,0,0,16.3,0,0,0,0,0.26,94.35000000000001,94.9,0.15,984,2.2,148,1.2000000000000002 +2013,3,11,20,30,18.7,0.34,0.0849,0.68,47,381,104,3,17,12,0,3,12,0.261,89.82000000000001,81.51,0.15,984,2.3000000000000003,146,1.8 +2013,3,11,21,30,20.200000000000003,0.36,0.0786,0.68,78,696,336,1,17.7,78,696,0,336,0.261,85.31,68.29,0.15,984,2.3000000000000003,138,2.4000000000000004 +2013,3,11,22,30,21.5,0.39,0.07490000000000001,0.68,94,829,566,1,17.900000000000002,94,829,0,566,0.261,80.10000000000001,55.28,0.15,984,2.4000000000000004,130,2.9000000000000004 +2013,3,11,23,30,22.1,0.38,0.0756,0.68,106,895,761,1,17.8,106,895,0,761,0.261,76.8,42.910000000000004,0.15,984,2.4000000000000004,128,3.1 +2013,3,12,0,30,23.1,0.22,0.1332,0.68,147,871,885,3,17.8,124,24,0,145,0.261,72.17,32.09,0.15,983,2.5,123,3.2 +2013,3,12,1,30,23.400000000000002,0.24,0.1313,0.68,150,892,959,0,17.7,150,892,0,959,0.261,70.56,25.02,0.15,983,2.5,121,3.3000000000000003 +2013,3,12,2,30,23.5,0.24,0.11560000000000001,0.68,141,906,961,1,17.400000000000002,141,906,0,961,0.261,68.73,25.150000000000002,0.15,982,2.5,120,3.2 +2013,3,12,3,30,23.3,0.2,0.12040000000000001,0.68,141,884,887,3,17.400000000000002,535,64,0,589,0.262,69.27,32.4,0.15,982,2.4000000000000004,121,3.2 +2013,3,12,4,30,22.900000000000002,0.22,0.1178,0.68,130,845,745,3,17.400000000000002,193,28,0,213,0.262,71.01,43.300000000000004,0.15,981,2.4000000000000004,122,3 +2013,3,12,5,30,22.200000000000003,0.24,0.1051,0.68,110,787,553,3,17.5,294,42,0,318,0.263,74.9,55.7,0.15,981,2.3000000000000003,125,2.6 +2013,3,12,6,30,21.200000000000003,0.29,0.08650000000000001,0.68,81,675,326,1,17.8,81,675,0,326,0.263,80.83,68.73,0.15,981,2.3000000000000003,129,2 +2013,3,12,7,30,19.8,0.34,0.0752,0.68,44,386,98,1,18,44,386,0,98,0.264,89.28,81.96000000000001,0.15,982,2.2,134,1.4000000000000001 +2013,3,12,8,30,18.900000000000002,0.35000000000000003,0.0734,0.68,0,0,0,3,17.6,0,0,0,0,0.264,92.43,95.37,0.15,982,2.2,138,1.2000000000000002 +2013,3,12,9,30,18.6,0.35000000000000003,0.0794,0.68,0,0,0,1,17.5,0,0,0,0,0.264,93.52,108.49000000000001,0.15,982,2.2,140,1.2000000000000002 +2013,3,12,10,30,18.400000000000002,0.32,0.0854,0.68,0,0,0,3,17.400000000000002,0,0,0,0,0.264,94.09,121.16,0.15,982,2.2,142,1.2000000000000002 +2013,3,12,11,30,18.3,0.28,0.0903,0.68,0,0,0,1,17.400000000000002,0,0,0,0,0.264,94.29,132.89000000000001,0.15,982,2.2,144,1.2000000000000002 +2013,3,12,12,30,18.1,0.27,0.09330000000000001,0.68,0,0,0,0,17.3,0,0,0,0,0.264,95.10000000000001,142.72,0.15,982,2.3000000000000003,145,1.1 +2013,3,12,13,30,17.900000000000002,0.27,0.094,0.68,0,0,0,1,17.2,0,0,0,0,0.263,95.7,148.74,0.15,981,2.3000000000000003,147,1.1 +2013,3,12,14,30,17.5,0.27,0.0916,0.68,0,0,0,1,17.1,0,0,0,0,0.262,97.45,148.65,0.15,980,2.3000000000000003,149,1 +2013,3,12,15,30,17.2,0.27,0.0918,0.68,0,0,0,3,17,0,0,0,0,0.261,98.79,142.49,0.15,980,2.3000000000000003,149,1 +2013,3,12,16,30,17,0.27,0.0951,0.68,0,0,0,0,17,0,0,0,0,0.261,99.69,132.59,0.15,980,2.3000000000000003,150,1 +2013,3,12,17,30,16.7,0.26,0.0964,0.68,0,0,0,3,16.7,0,0,0,0,0.262,100,120.82000000000001,0.15,980,2.2,152,0.9 +2013,3,12,18,30,16.6,0.29,0.09570000000000001,0.68,0,0,0,3,16.6,0,0,0,0,0.263,100,108.15,0.15,980,2.2,156,0.9 +2013,3,12,19,30,17.1,0.3,0.09530000000000001,0.68,0,0,0,3,16.5,0,0,0,0,0.264,96.24000000000001,95.03,0.15,980,2.2,160,1.1 +2013,3,12,20,30,18.400000000000002,0.3,0.09330000000000001,0.68,49,359,101,1,17.2,49,359,0,101,0.265,92.82000000000001,81.63,0.15,980,2.2,160,1.7000000000000002 +2013,3,12,21,30,19.900000000000002,0.34,0.0847,0.68,80,686,333,1,17.900000000000002,80,686,1,333,0.266,88.13,68.42,0.15,981,2.2,152,2.2 +2013,3,12,22,30,21.3,0.38,0.0709,0.68,92,837,567,1,18,92,837,0,567,0.266,81.63,55.43,0.15,980,2.2,143,2.5 +2013,3,12,23,30,21.900000000000002,0.38,0.0731,0.68,104,901,762,1,17.7,104,901,0,762,0.266,77.12,43.1,0.15,980,2.2,140,2.6 +2013,3,13,0,30,23,0.34,0.08700000000000001,0.68,120,923,899,1,17.400000000000002,120,923,0,899,0.266,70.59,32.35,0.15,979,2.2,138,2.6 +2013,3,13,1,30,23.400000000000002,0.37,0.0908,0.68,125,937,971,1,17.2,125,937,0,971,0.266,68.19,25.38,0.15,978,2.2,140,2.6 +2013,3,13,2,30,23.5,0.36,0.08710000000000001,0.68,123,940,971,1,17.2,123,940,0,971,0.266,67.67,25.54,0.15,978,2.2,141,2.5 +2013,3,13,3,30,23.3,0.38,0.0961,0.68,124,912,891,1,17.2,124,912,0,891,0.266,68.48,32.74,0.15,977,2.3000000000000003,141,2.4000000000000004 +2013,3,13,4,30,23,0.38,0.0952,0.68,115,874,748,1,17.3,115,874,0,748,0.266,70.41,43.59,0.15,977,2.3000000000000003,140,2.3000000000000003 +2013,3,13,5,30,22.5,0.37,0.0907,0.68,101,804,551,3,17.6,250,28,0,266,0.267,73.8,55.97,0.15,977,2.4000000000000004,138,2.1 +2013,3,13,6,30,21.400000000000002,0.39,0.0811,0.68,77,681,322,3,18,172,50,0,189,0.268,80.74,68.98,0.15,978,2.4000000000000004,135,1.5 +2013,3,13,7,30,19.900000000000002,0.43,0.0674,0.68,41,397,95,3,18.400000000000002,46,6,3,47,0.27,90.94,82.2,0.15,978,2.3000000000000003,134,0.9 +2013,3,13,8,30,18.6,0.46,0.0594,0.68,0,0,0,3,17.900000000000002,0,0,0,0,0.271,95.71000000000001,95.62,0.15,979,2.3000000000000003,136,0.8 +2013,3,13,9,30,18,0.5,0.053000000000000005,0.68,0,0,0,3,17.7,0,0,0,0,0.272,98.23,108.75,0.15,979,2.2,142,0.7000000000000001 +2013,3,13,10,30,17.5,0.53,0.048400000000000006,0.68,0,0,0,3,17.5,0,0,0,0,0.272,99.99000000000001,121.44,0.15,979,2.1,150,0.7000000000000001 +2013,3,13,11,30,17,0.56,0.045700000000000005,0.68,0,0,0,1,17,0,0,0,0,0.272,100,133.21,0.15,979,2,158,0.8 +2013,3,13,12,30,16.5,0.58,0.0443,0.68,0,0,0,0,16.5,0,0,0,0,0.272,100,143.08,0.15,979,1.9000000000000001,166,0.8 +2013,3,13,13,30,16,0.6,0.042800000000000005,0.68,0,0,0,0,16,0,0,0,0,0.271,100,149.14000000000001,0.15,978,1.8,176,0.8 +2013,3,13,14,30,15.600000000000001,0.64,0.041100000000000005,0.68,0,0,0,0,15.600000000000001,0,0,0,0,0.271,100,149.01,0.15,977,1.8,187,0.8 +2013,3,13,15,30,15.200000000000001,0.67,0.039900000000000005,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.271,100,142.77,0.15,977,1.8,198,0.8 +2013,3,13,16,30,14.8,0.7000000000000001,0.0391,0.68,0,0,0,0,14.8,0,0,0,0,0.27,100,132.8,0.15,976,1.8,207,0.8 +2013,3,13,17,30,14.600000000000001,0.71,0.038400000000000004,0.68,0,0,0,0,14.600000000000001,0,0,0,0,0.269,100,120.99000000000001,0.15,976,1.7000000000000002,213,0.8 +2013,3,13,18,30,14.4,0.73,0.0378,0.68,0,0,0,0,14.4,0,0,0,0,0.268,100,108.28,0.15,977,1.7000000000000002,216,0.8 +2013,3,13,19,30,15.100000000000001,0.74,0.037200000000000004,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.267,100,95.15,0.15,977,1.7000000000000002,218,1 +2013,3,13,20,30,17,0.75,0.036500000000000005,0.68,36,515,110,1,15.600000000000001,36,515,0,110,0.266,91.47,81.75,0.15,978,1.7000000000000002,216,1.3 +2013,3,13,21,30,19.400000000000002,0.78,0.034800000000000005,0.68,59,790,348,1,16.400000000000002,59,790,0,348,0.267,82.67,68.55,0.15,978,1.7000000000000002,196,1.6 +2013,3,13,22,30,21.3,0.8,0.0335,0.68,71,903,582,1,16.8,71,903,0,582,0.267,75.67,55.58,0.15,978,1.7000000000000002,177,1.9000000000000001 +2013,3,13,23,30,22.1,0.8200000000000001,0.032600000000000004,0.68,79,962,779,1,16.8,79,962,0,779,0.267,71.99,43.29,0.15,978,1.7000000000000002,175,2 +2013,3,14,0,30,23.5,0.6900000000000001,0.0454,0.68,93,974,913,0,16.900000000000002,93,974,0,913,0.268,66.46000000000001,32.62,0.15,978,1.9000000000000001,176,1.9000000000000001 +2013,3,14,1,30,24.1,0.71,0.044700000000000004,0.68,95,986,983,1,17.1,95,986,0,983,0.268,64.78,25.740000000000002,0.15,977,2,173,1.8 +2013,3,14,2,30,24.6,0.72,0.044500000000000005,0.68,94,984,979,3,17.2,607,96,0,693,0.268,63.61,25.94,0.15,976,2.1,166,1.7000000000000002 +2013,3,14,3,30,24.700000000000003,0.7000000000000001,0.0538,0.68,97,957,899,1,17.5,97,957,0,899,0.268,64.31,33.09,0.15,976,2.2,157,1.6 +2013,3,14,4,30,24.5,0.71,0.055400000000000005,0.68,91,917,752,1,17.8,91,917,0,752,0.267,66.44,43.89,0.15,976,2.4000000000000004,146,1.6 +2013,3,14,5,30,24,0.71,0.057300000000000004,0.68,82,847,553,1,18.3,82,847,0,553,0.267,70.67,56.230000000000004,0.15,976,2.5,133,1.5 +2013,3,14,6,30,23,0.72,0.057800000000000004,0.68,66,721,322,1,19.400000000000002,66,721,0,322,0.267,79.95,69.23,0.15,977,2.5,122,1.1 +2013,3,14,7,30,21.3,0.72,0.0565,0.68,37,420,92,0,20.1,37,420,0,92,0.267,92.82000000000001,82.44,0.15,977,2.6,116,0.8 +2013,3,14,8,30,20,0.7000000000000001,0.0555,0.68,0,0,0,0,19.400000000000002,0,0,0,0,0.268,96.31,95.86,0.15,978,2.5,119,0.8 +2013,3,14,9,30,19.400000000000002,0.68,0.0555,0.68,0,0,0,0,19.1,0,0,0,0,0.268,98.33,109.01,0.15,979,2.5,127,0.8 +2013,3,14,10,30,18.8,0.66,0.055400000000000005,0.68,0,0,0,0,18.8,0,0,0,0,0.268,100,121.72,0.15,980,2.4000000000000004,134,0.8 +2013,3,14,11,30,18.2,0.64,0.054900000000000004,0.68,0,0,0,0,18.2,0,0,0,0,0.268,100,133.52,0.15,980,2.2,142,0.7000000000000001 +2013,3,14,12,30,17.7,0.64,0.054200000000000005,0.68,0,0,0,0,17.7,0,0,0,0,0.268,100,143.45000000000002,0.15,980,2.1,150,0.7000000000000001 +2013,3,14,13,30,17.2,0.64,0.0536,0.68,0,0,0,0,17.2,0,0,0,0,0.268,100,149.54,0.15,980,2,156,0.7000000000000001 +2013,3,14,14,30,16.8,0.67,0.051300000000000005,0.68,0,0,0,0,16.8,0,0,0,0,0.268,100,149.38,0.15,979,1.9000000000000001,162,0.8 +2013,3,14,15,30,16.400000000000002,0.74,0.0492,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.268,100,143.06,0.15,979,1.8,167,0.8 +2013,3,14,16,30,16.1,0.84,0.0478,0.68,0,0,0,0,16.1,0,0,0,0,0.268,100,133.01,0.15,979,1.7000000000000002,174,0.8 +2013,3,14,17,30,15.700000000000001,0.93,0.047,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.269,100,121.15,0.15,979,1.7000000000000002,181,0.9 +2013,3,14,18,30,15.4,1.01,0.046900000000000004,0.68,0,0,0,0,15.4,0,0,0,0,0.269,100,108.42,0.15,980,1.6,186,0.9 +2013,3,14,19,30,16,1.04,0.047,0.68,0,0,0,0,16,0,0,0,0,0.27,100,95.27,0.15,980,1.6,190,0.9 +2013,3,14,20,30,18.1,1.03,0.0475,0.68,37,492,107,1,17.1,37,492,0,107,0.27,93.62,81.87,0.15,981,1.7000000000000002,186,1.1 +2013,3,14,21,30,20.6,1.02,0.046900000000000004,0.68,63,771,343,1,18.1,63,771,0,343,0.27,85.48,68.67,0.15,982,1.7000000000000002,166,1.5 +2013,3,14,22,30,22.3,1.01,0.048,0.68,78,885,576,1,18.3,78,885,0,576,0.27,78.03,55.730000000000004,0.15,982,1.7000000000000002,149,1.8 +2013,3,14,23,30,22.900000000000002,0.99,0.051800000000000006,0.68,89,941,772,0,18.1,89,941,0,772,0.27,74.56,43.49,0.15,983,1.7000000000000002,146,1.8 +2013,3,15,0,30,24.200000000000003,1.01,0.054400000000000004,0.68,96,969,910,0,18.2,96,969,0,910,0.269,69.33,32.88,0.15,982,1.8,143,1.8 +2013,3,15,1,30,24.8,1.02,0.057300000000000004,0.68,100,978,979,1,18.3,100,978,0,979,0.269,67.37,26.11,0.15,982,1.9000000000000001,138,1.7000000000000002 +2013,3,15,2,30,25.1,1.03,0.0599,0.68,101,971,971,1,18.400000000000002,101,971,0,971,0.269,66.52,26.34,0.15,981,2.1,133,1.7000000000000002 +2013,3,15,3,30,25.200000000000003,0.99,0.0663,0.68,102,942,888,0,18.6,102,942,0,888,0.27,66.74,33.44,0.15,980,2.4000000000000004,128,1.6 +2013,3,15,4,30,25,1,0.0689,0.68,96,899,741,1,18.7,96,899,0,741,0.27,68.23,44.19,0.15,980,2.6,124,1.6 +2013,3,15,5,30,24.400000000000002,1,0.0722,0.68,87,824,541,1,18.900000000000002,87,824,0,541,0.271,71.64,56.5,0.15,980,2.8000000000000003,120,1.4000000000000001 +2013,3,15,6,30,23.3,1,0.0796,0.68,72,681,311,1,19.5,72,681,0,311,0.271,79.15,69.47,0.15,980,2.9000000000000004,115,1 +2013,3,15,7,30,21.8,0.99,0.0838,0.68,39,361,85,1,20.3,39,361,0,85,0.271,91.16,82.68,0.15,981,3,108,0.7000000000000001 +2013,3,15,8,30,20.6,0.97,0.0818,0.68,0,0,0,0,19.700000000000003,0,0,0,0,0.271,94.8,96.11,0.15,982,3,101,0.7000000000000001 +2013,3,15,9,30,20,0.96,0.0789,0.68,0,0,0,0,19.5,0,0,0,0,0.271,96.73,109.27,0.15,982,3,100,0.7000000000000001 +2013,3,15,10,30,19.5,0.9500000000000001,0.076,0.68,0,0,0,0,19.3,0,0,0,0,0.271,98.61,122,0.15,983,2.9000000000000004,102,0.7000000000000001 +2013,3,15,11,30,19.1,0.92,0.0755,0.68,0,0,0,1,19.1,0,0,0,0,0.271,100,133.84,0.15,983,2.9000000000000004,106,0.7000000000000001 +2013,3,15,12,30,18.7,0.89,0.0787,0.68,0,0,0,1,18.7,0,0,0,0,0.27,100,143.82,0.15,983,2.9000000000000004,116,0.7000000000000001 +2013,3,15,13,30,18.400000000000002,0.85,0.08510000000000001,0.68,0,0,0,1,18.400000000000002,0,0,0,0,0.27,100,149.94,0.15,982,2.9000000000000004,128,0.7000000000000001 +2013,3,15,14,30,18.1,0.8300000000000001,0.0908,0.68,0,0,0,0,18.1,0,0,0,0,0.27,100,149.75,0.15,982,2.9000000000000004,138,0.7000000000000001 +2013,3,15,15,30,18,0.8300000000000001,0.09340000000000001,0.68,0,0,0,0,18,0,0,0,0,0.27,100,143.34,0.15,982,2.9000000000000004,145,0.6000000000000001 +2013,3,15,16,30,17.900000000000002,0.8300000000000001,0.09330000000000001,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.271,100,133.22,0.15,982,2.9000000000000004,153,0.6000000000000001 +2013,3,15,17,30,17.7,0.8300000000000001,0.0927,0.68,0,0,0,0,17.7,0,0,0,0,0.271,100,121.32000000000001,0.15,982,2.9000000000000004,164,0.6000000000000001 +2013,3,15,18,30,17.5,0.8300000000000001,0.094,0.68,0,0,0,0,17.5,0,0,0,0,0.271,100,108.56,0.15,983,3,171,0.7000000000000001 +2013,3,15,19,30,18,0.8300000000000001,0.0946,0.68,0,0,0,0,18,0,0,0,0,0.271,100,95.39,0.15,983,3,171,0.9 +2013,3,15,20,30,19.700000000000003,0.84,0.0911,0.68,43,368,95,1,18.6,43,368,0,95,0.271,93.55,81.98,0.15,983,2.9000000000000004,166,1 +2013,3,15,21,30,21.8,0.87,0.08410000000000001,0.68,75,683,322,1,19.5,75,683,0,322,0.272,86.69,68.8,0.15,983,2.8000000000000003,152,1 +2013,3,15,22,30,23.400000000000002,0.91,0.0767,0.68,90,823,552,1,20,90,823,0,552,0.272,81.13,55.88,0.15,983,2.7,143,0.8 +2013,3,15,23,30,24.1,0.9500000000000001,0.0707,0.68,98,896,746,0,20.3,98,896,0,746,0.273,79.39,43.68,0.15,983,2.7,144,0.7000000000000001 +2013,3,16,0,30,25.6,0.71,0.08990000000000001,0.68,116,911,879,0,20.6,116,911,0,879,0.273,73.81,33.15,0.15,982,2.7,174,0.5 +2013,3,16,1,30,26.3,0.75,0.0791,0.68,113,937,952,1,20.700000000000003,113,937,0,952,0.273,71.23,26.47,0.15,981,2.7,187,0.4 +2013,3,16,2,30,26.8,0.78,0.0718,0.68,109,943,951,0,20.700000000000003,109,943,0,951,0.273,69.29,26.740000000000002,0.15,981,2.7,198,0.30000000000000004 +2013,3,16,3,30,27,0.77,0.07730000000000001,0.68,108,922,874,0,20.6,108,922,0,874,0.273,68.05,33.79,0.15,980,2.7,220,0.2 +2013,3,16,4,30,27,0.81,0.0779,0.68,101,884,732,0,20.5,101,884,0,732,0.273,67.63,44.49,0.15,979,2.7,129,0.2 +2013,3,16,5,30,26.6,0.86,0.0781,0.68,90,813,535,0,20.900000000000002,90,813,0,535,0.272,70.8,56.76,0.15,979,2.8000000000000003,22,0.5 +2013,3,16,6,30,25.6,0.92,0.081,0.68,72,675,306,0,21.3,72,675,0,306,0.272,76.96000000000001,69.73,0.15,979,2.8000000000000003,23,0.8 +2013,3,16,7,30,23.700000000000003,0.97,0.0845,0.68,38,351,82,0,21.6,38,351,0,82,0.272,88.18,82.92,0.15,980,2.9000000000000004,21,0.9 +2013,3,16,8,30,22.200000000000003,1.02,0.0874,0.68,0,0,0,0,20.8,0,0,0,0,0.271,92.07000000000001,96.35000000000001,0.15,980,2.9000000000000004,17,0.9 +2013,3,16,9,30,21.400000000000002,1.04,0.09290000000000001,0.68,0,0,0,0,20.400000000000002,0,0,0,0,0.271,94.29,109.52,0.15,980,2.9000000000000004,9,0.8 +2013,3,16,10,30,20.8,1.06,0.0969,0.68,0,0,0,0,20.3,0,0,0,0,0.269,96.94,122.28,0.15,981,2.9000000000000004,180,0.8 +2013,3,16,11,30,20.3,1.07,0.09730000000000001,0.68,0,0,0,0,20.1,0,0,0,0,0.267,98.49000000000001,134.16,0.15,981,2.8000000000000003,352,0.7000000000000001 +2013,3,16,12,30,19.8,1.08,0.0944,0.68,0,0,0,0,19.8,0,0,0,0,0.265,99.92,144.18,0.15,980,2.7,345,0.7000000000000001 +2013,3,16,13,30,19.3,1.09,0.08850000000000001,0.68,0,0,0,0,19.3,0,0,0,0,0.264,100,150.34,0.15,979,2.6,338,0.7000000000000001 +2013,3,16,14,30,18.900000000000002,1.09,0.0824,0.68,0,0,0,0,18.900000000000002,0,0,0,0,0.263,100,150.11,0.15,979,2.5,332,0.7000000000000001 +2013,3,16,15,30,18.5,1.1,0.0779,0.68,0,0,0,0,18.5,0,0,0,0,0.263,100,143.62,0.15,978,2.4000000000000004,329,0.7000000000000001 +2013,3,16,16,30,18.2,1.12,0.0756,0.68,0,0,0,0,18.2,0,0,0,0,0.263,100,133.43,0.15,978,2.4000000000000004,327,0.7000000000000001 +2013,3,16,17,30,18,1.16,0.0767,0.68,0,0,0,0,18,0,0,0,0,0.263,100,121.48,0.15,978,2.3000000000000003,320,0.7000000000000001 +2013,3,16,18,30,17.7,1.19,0.08220000000000001,0.68,0,0,0,0,17.7,0,0,0,0,0.264,100,108.69,0.15,978,2.4000000000000004,307,0.7000000000000001 +2013,3,16,19,30,18.3,1.22,0.0913,0.68,0,0,0,0,18.3,0,0,0,0,0.265,100,95.52,0.15,979,2.4000000000000004,290,1 +2013,3,16,20,30,20,1.24,0.1004,0.68,43,375,95,1,18.7,43,375,0,95,0.265,92.38,82.10000000000001,0.15,979,2.5,281,1.4000000000000001 +2013,3,16,21,30,22.1,1.24,0.1043,0.68,79,670,320,0,19.400000000000002,79,670,0,320,0.265,84.65,68.93,0.15,979,2.5,281,1.8 +2013,3,16,22,30,24.1,1.24,0.1018,0.68,98,803,546,0,20.200000000000003,98,803,0,546,0.265,78.7,56.03,0.15,979,2.6,283,2 +2013,3,16,23,30,25,1.23,0.0965,0.68,107,877,739,0,20.700000000000003,107,877,0,739,0.265,76.92,43.88,0.15,979,2.6,283,2.1 +2013,3,17,0,30,27,1.32,0.0756,0.68,104,931,881,0,20.900000000000002,104,931,0,881,0.264,69.37,33.43,0.15,978,2.6,283,2.1 +2013,3,17,1,30,27.8,1.3,0.0728,0.68,106,949,952,0,21,106,949,0,952,0.264,66.39,26.84,0.15,977,2.6,278,2 +2013,3,17,2,30,28.200000000000003,1.28,0.0714,0.68,105,949,949,0,20.900000000000002,105,949,0,949,0.265,64.49,27.14,0.15,976,2.6,270,1.8 +2013,3,17,3,30,28.400000000000002,1.29,0.0697,0.68,100,934,874,1,20.8,100,934,0,874,0.265,63.58,34.15,0.15,976,2.6,257,1.5 +2013,3,17,4,30,28.5,1.27,0.0707,0.68,94,895,729,0,21.1,94,895,0,729,0.266,64.19,44.79,0.15,976,2.7,236,1.1 +2013,3,17,5,30,28.1,1.25,0.0729,0.68,84,824,532,0,21,84,824,0,532,0.266,65.51,57.04,0.15,977,2.7,205,1 +2013,3,17,6,30,26.3,1.22,0.0767,0.68,68,684,302,0,20.5,68,684,0,302,0.267,70.65,69.98,0.15,977,2.8000000000000003,169,1.1 +2013,3,17,7,30,23.700000000000003,1.16,0.0864,0.68,37,345,78,0,21.3,37,345,1,78,0.267,86.31,83.16,0.15,978,3,143,1.3 +2013,3,17,8,30,22,0.98,0.11380000000000001,0.68,0,0,0,0,20.1,0,0,0,0,0.268,88.79,96.60000000000001,0.15,980,3.2,130,1.7000000000000002 +2013,3,17,9,30,21.200000000000003,0.7000000000000001,0.1776,0.68,0,0,0,0,19.5,0,0,0,0,0.268,89.82000000000001,109.78,0.15,981,3.3000000000000003,125,2 +2013,3,17,10,30,20.3,0.47000000000000003,0.2548,0.68,0,0,0,0,19.200000000000003,0,0,0,0,0.267,93.3,122.56,0.15,982,3.2,126,2.2 +2013,3,17,11,30,19.6,0.38,0.2978,0.68,0,0,0,3,18.7,0,0,0,0,0.267,94.26,134.47,0.15,983,3.1,131,2.2 +2013,3,17,12,30,19,0.43,0.3501,0.68,0,0,0,3,17.8,0,0,0,0,0.266,92.93,144.55,0.15,983,3,135,2.1 +2013,3,17,13,30,18.5,0.47000000000000003,0.32070000000000004,0.68,0,0,0,0,17.1,0,0,0,0,0.266,91.72,150.74,0.15,983,2.9000000000000004,136,1.9000000000000001 +2013,3,17,14,30,18.1,0.49,0.2736,0.68,0,0,0,3,16.6,0,0,0,0,0.266,90.81,150.48,0.15,983,2.8000000000000003,137,1.7000000000000002 +2013,3,17,15,30,17.6,0.5,0.2348,0.68,0,0,0,3,16.2,0,0,0,0,0.266,91.36,143.9,0.15,982,2.7,141,1.5 +2013,3,17,16,30,17.1,0.5,0.21280000000000002,0.68,0,0,0,3,15.9,0,0,0,0,0.266,92.59,133.64000000000001,0.15,982,2.7,145,1.3 +2013,3,17,17,30,16.7,0.49,0.1991,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.267,93.9,121.64,0.15,983,2.6,147,1.1 +2013,3,17,18,30,16.400000000000002,0.48,0.1925,0.68,0,0,0,1,15.600000000000001,0,0,0,0,0.268,95.08,108.82000000000001,0.15,983,2.6,148,1.1 +2013,3,17,19,30,16.7,0.45,0.1892,0.68,0,0,0,3,15.600000000000001,0,0,0,0,0.268,93.38,95.63,0.15,984,2.6,148,1.3 +2013,3,17,20,30,17.8,0.42,0.18960000000000002,0.68,56,199,83,3,16.1,11,0,3,11,0.268,89.52,82.22,0.15,984,2.6,145,1.9000000000000001 +2013,3,17,21,30,19.200000000000003,0.4,0.1942,0.68,113,520,299,1,16.6,113,520,0,299,0.267,85.11,69.06,0.15,985,2.6,139,2.4000000000000004 +2013,3,17,22,30,20.6,0.39,0.191,0.68,143,684,524,1,17.1,143,684,0,524,0.267,80.36,56.18,0.15,985,2.6,131,2.7 +2013,3,17,23,30,21.3,0.4,0.18030000000000002,0.68,156,780,716,1,17.3,156,780,0,716,0.266,77.83,44.08,0.15,985,2.6,128,2.8000000000000003 +2013,3,18,0,30,22.400000000000002,0.47000000000000003,0.1481,0.68,149,853,859,1,17.400000000000002,149,853,0,859,0.265,73.36,33.7,0.15,985,2.7,123,2.7 +2013,3,18,1,30,22.700000000000003,0.49,0.14120000000000002,0.68,149,878,930,1,17.6,149,878,0,930,0.265,72.74,27.21,0.15,984,2.7,120,2.7 +2013,3,18,2,30,22.700000000000003,0.48,0.13820000000000002,0.68,148,879,928,1,17.6,148,879,0,928,0.265,73.02,27.54,0.15,984,2.7,118,2.7 +2013,3,18,3,30,22.5,0.5,0.1457,0.68,146,851,848,3,17.6,120,24,0,140,0.265,73.97,34.5,0.15,984,2.8000000000000003,116,2.6 +2013,3,18,4,30,21.900000000000002,0.49,0.1423,0.68,135,809,706,1,17.6,135,809,0,706,0.265,76.45,45.1,0.15,984,2.8000000000000003,115,2.6 +2013,3,18,5,30,21.3,0.45,0.13520000000000001,0.68,117,730,511,1,17.5,117,730,0,511,0.266,78.88,57.31,0.15,984,2.9000000000000004,113,2.4000000000000004 +2013,3,18,6,30,20.3,0.45,0.1322,0.68,91,576,285,1,17.400000000000002,91,576,0,285,0.266,83.67,70.23,0.15,985,2.9000000000000004,112,1.9000000000000001 +2013,3,18,7,30,19.200000000000003,0.44,0.1252,0.68,43,233,70,1,17.400000000000002,43,233,0,70,0.266,89.28,83.4,0.15,986,2.9000000000000004,113,1.3 +2013,3,18,8,30,18.3,0.45,0.11910000000000001,0.68,0,0,0,0,17,0,0,0,0,0.266,92.22,96.85000000000001,0.15,987,2.8000000000000003,117,1 +2013,3,18,9,30,17.7,0.46,0.11710000000000001,0.68,0,0,0,0,16.6,0,0,0,0,0.265,93.48,110.04,0.15,987,2.8000000000000003,121,1 +2013,3,18,10,30,17.3,0.49,0.1073,0.68,0,0,0,0,16.3,0,0,0,0,0.264,93.88,122.84,0.15,988,2.7,124,0.9 +2013,3,18,11,30,17,0.53,0.0961,0.68,0,0,0,0,16,0,0,0,0,0.262,93.76,134.79,0.15,988,2.6,125,0.9 +2013,3,18,12,30,16.6,0.56,0.0887,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.261,94.61,144.91,0.15,987,2.6,126,0.8 +2013,3,18,13,30,16.400000000000002,0.58,0.0845,0.68,0,0,0,0,15.600000000000001,0,0,0,0,0.259,94.79,151.14000000000001,0.15,987,2.5,124,0.8 +2013,3,18,14,30,16.1,0.59,0.08070000000000001,0.68,0,0,0,0,15.4,0,0,0,0,0.259,95.62,150.84,0.15,986,2.5,122,0.8 +2013,3,18,15,30,15.9,0.6,0.0776,0.68,0,0,0,0,15.3,0,0,0,0,0.258,96.05,144.17000000000002,0.15,986,2.5,120,0.8 +2013,3,18,16,30,15.8,0.6,0.07540000000000001,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.258,96.03,133.84,0.15,986,2.5,120,0.9 +2013,3,18,17,30,15.700000000000001,0.59,0.0733,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.258,95.99000000000001,121.79,0.15,986,2.4000000000000004,122,0.9 +2013,3,18,18,30,15.600000000000001,0.6,0.0699,0.68,0,0,0,0,15,0,0,0,0,0.258,96,108.95,0.15,987,2.4000000000000004,124,0.9 +2013,3,18,19,30,16.2,0.62,0.0646,0.68,0,0,0,0,14.8,0,0,0,0,0.258,91.65,95.75,0.15,987,2.4000000000000004,125,1 +2013,3,18,20,30,17.900000000000002,0.65,0.059300000000000005,0.68,39,417,94,1,15.5,39,417,0,94,0.258,85.68,82.33,0.15,988,2.4000000000000004,124,1.5 +2013,3,18,21,30,19.8,0.67,0.055,0.68,66,724,323,1,16,66,724,0,323,0.257,78.81,69.19,0.15,989,2.4000000000000004,117,2.2 +2013,3,18,22,30,21.200000000000003,0.68,0.0524,0.68,80,849,551,1,16,80,849,0,551,0.257,72.4,56.34,0.15,989,2.5,109,2.7 +2013,3,18,23,30,21.700000000000003,0.68,0.0511,0.68,89,913,743,1,15.9,89,913,0,743,0.256,69.39,44.27,0.15,989,2.5,108,2.8000000000000003 +2013,3,19,0,30,22.6,0.6,0.061200000000000004,0.68,101,935,876,1,15.9,101,935,0,876,0.255,65.76,33.97,0.14,988,2.6,106,2.9000000000000004 +2013,3,19,1,30,23,0.59,0.0658,0.68,106,945,944,3,16,147,27,0,171,0.254,64.52,27.57,0.14,988,2.6,104,2.9000000000000004 +2013,3,19,2,30,23.1,0.5700000000000001,0.06960000000000001,0.68,108,939,938,3,15.9,486,30,0,512,0.254,63.85,27.94,0.14,987,2.7,104,2.9000000000000004 +2013,3,19,3,30,22.900000000000002,0.5700000000000001,0.076,0.68,108,916,860,3,15.700000000000001,359,23,0,379,0.254,63.980000000000004,34.86,0.14,987,2.7,104,2.8000000000000003 +2013,3,19,4,30,22.400000000000002,0.5700000000000001,0.07930000000000001,0.68,103,874,716,3,15.5,389,42,0,419,0.255,65.15,45.4,0.14,987,2.7,106,2.7 +2013,3,19,5,30,21.6,0.55,0.08,0.68,91,797,519,3,15.4,237,28,0,253,0.257,67.86,57.58,0.14,987,2.8000000000000003,108,2.3000000000000003 +2013,3,19,6,30,20.5,0.6,0.0787,0.68,72,657,292,3,15.600000000000001,100,16,0,105,0.258,73.7,70.48,0.14,988,2.8000000000000003,109,1.7000000000000002 +2013,3,19,7,30,19.200000000000003,0.61,0.0704,0.68,35,331,72,7,16,14,0,3,14,0.26,81.76,83.64,0.14,989,2.8000000000000003,111,1.1 +2013,3,19,8,30,18.2,0.59,0.064,0.68,0,0,0,3,15.600000000000001,0,0,0,0,0.261,84.64,97.10000000000001,0.14,989,2.8000000000000003,113,1 +2013,3,19,9,30,17.6,0.56,0.062400000000000004,0.68,0,0,0,4,15.3,0,0,0,0,0.261,86.2,110.3,0.14,990,2.8000000000000003,116,1 +2013,3,19,10,30,17.3,0.55,0.0626,0.68,0,0,0,3,15,0,0,0,0,0.261,86.62,123.12,0.14,990,2.7,117,1 +2013,3,19,11,30,17,0.53,0.0626,0.68,0,0,0,4,14.9,0,0,0,0,0.261,87.58,135.11,0.14,990,2.7,119,1 +2013,3,19,12,30,16.8,0.51,0.0637,0.68,0,0,0,4,14.9,0,0,0,0,0.261,88.64,145.28,0.14,990,2.7,120,1 +2013,3,19,13,30,16.7,0.48,0.0663,0.68,0,0,0,4,15,0,0,0,0,0.26,89.43,151.54,0.14,990,2.7,120,1 +2013,3,19,14,30,16.6,0.46,0.0695,0.68,0,0,0,4,15,0,0,0,0,0.26,90.56,151.20000000000002,0.14,989,2.8000000000000003,120,1 +2013,3,19,15,30,16.5,0.44,0.07300000000000001,0.68,0,0,0,4,15.200000000000001,0,0,0,0,0.259,91.92,144.44,0.14,989,2.8000000000000003,121,0.9 +2013,3,19,16,30,16.400000000000002,0.43,0.0747,0.68,0,0,0,3,15.3,0,0,0,0,0.259,93.26,134.04,0.14,989,2.9000000000000004,122,0.9 +2013,3,19,17,30,16.3,0.42,0.0741,0.68,0,0,0,4,15.3,0,0,0,0,0.259,94.10000000000001,121.95,0.14,988,3,123,0.9 +2013,3,19,18,30,16.2,0.42,0.0723,0.68,0,0,0,4,15.4,0,0,0,0,0.259,95.12,109.08,0.14,989,3.1,126,0.9 +2013,3,19,19,30,16.6,0.43,0.0709,0.68,0,0,0,3,15.5,0,0,0,0,0.259,93.12,95.87,0.14,989,3.2,126,1 +2013,3,19,20,30,17.6,0.45,0.0679,0.68,40,368,88,4,16,6,0,3,6,0.258,90.33,82.45,0.14,990,3.3000000000000003,121,1.5 +2013,3,19,21,30,18.900000000000002,0.48,0.0635,0.68,69,684,310,4,16.5,23,0,0,23,0.258,86.19,69.32000000000001,0.14,990,3.4000000000000004,112,1.9000000000000001 +2013,3,19,22,30,20.200000000000003,0.5,0.0618,0.68,84,813,533,4,17.1,185,24,0,198,0.257,82.61,56.49,0.14,990,3.5,104,2.2 +2013,3,19,23,30,20.700000000000003,0.54,0.057100000000000005,0.68,92,885,723,3,17.5,377,35,0,402,0.257,81.75,44.480000000000004,0.14,990,3.5,101,2.4000000000000004 +2013,3,20,0,30,21.5,0.56,0.059000000000000004,0.68,99,917,856,3,17.1,129,25,0,150,0.255,76.15,34.25,0.14,989,3.6,97,2.7 +2013,3,20,1,30,21.700000000000003,0.56,0.0636,0.68,104,928,924,3,16.5,440,24,0,462,0.255,72.32000000000001,27.94,0.14,989,3.6,95,2.7 +2013,3,20,2,30,21.6,0.56,0.0645,0.68,104,926,919,4,16.400000000000002,387,23,0,407,0.255,72.5,28.34,0.14,988,3.6,94,2.6 +2013,3,20,3,30,21.3,0.45,0.0913,0.68,116,882,837,4,16.5,194,29,0,218,0.256,74.2,35.22,0.14,987,3.6,94,2.6 +2013,3,20,4,30,20.8,0.44,0.0964,0.68,111,836,695,4,16.6,199,27,0,218,0.257,76.91,45.71,0.14,987,3.6,95,2.4000000000000004 +2013,3,20,5,30,20.200000000000003,0.44,0.0921,0.68,96,763,502,4,16.8,125,23,0,137,0.257,81.03,57.86,0.14,987,3.6,98,2.1 +2013,3,20,6,30,19.400000000000002,0.48,0.08850000000000001,0.68,74,620,279,3,17.3,84,14,0,89,0.258,87.52,70.74,0.14,988,3.6,102,1.6 +2013,3,20,7,30,18.400000000000002,0.49,0.0815,0.68,36,281,66,3,17.5,18,0,3,18,0.258,94.72,83.89,0.14,988,3.5,104,1.1 +2013,3,20,8,30,17.900000000000002,0.47000000000000003,0.0818,0.68,0,0,0,4,17.3,0,0,0,0,0.259,96.48,97.35000000000001,0.14,988,3.5,105,1 +2013,3,20,9,30,17.7,0.46,0.0839,0.68,0,0,0,4,17.3,0,0,0,0,0.26,97.23,110.56,0.14,989,3.5,107,0.9 +2013,3,20,10,30,17.6,0.46,0.0844,0.68,0,0,0,4,17.2,0,0,0,0,0.26,97.58,123.4,0.14,989,3.5,107,0.9 +2013,3,20,11,30,17.6,0.45,0.0859,0.68,0,0,0,3,17.2,0,0,0,0,0.26,97.56,135.42000000000002,0.14,990,3.5,107,0.8 +2013,3,20,12,30,17.5,0.45,0.0902,0.68,0,0,0,3,17.2,0,0,0,0,0.259,97.87,145.64000000000001,0.14,989,3.6,106,0.8 +2013,3,20,13,30,17.5,0.43,0.0915,0.68,0,0,0,3,17.2,0,0,0,0,0.259,98.03,151.95000000000002,0.14,989,3.6,103,0.8 +2013,3,20,14,30,17.400000000000002,0.42,0.0867,0.68,0,0,0,3,17.2,0,0,0,0,0.259,98.65,151.56,0.14,988,3.6,100,0.7000000000000001 +2013,3,20,15,30,17.3,0.42,0.0816,0.68,0,0,0,3,17.1,0,0,0,0,0.259,99.03,144.71,0.14,988,3.7,99,0.7000000000000001 +2013,3,20,16,30,17.2,0.42,0.077,0.68,0,0,0,3,17.1,0,0,0,0,0.259,99.3,134.23,0.14,987,3.7,101,0.7000000000000001 +2013,3,20,17,30,17.1,0.42,0.0737,0.68,0,0,0,3,17,0,0,0,0,0.259,99.5,122.10000000000001,0.14,987,3.6,105,0.7000000000000001 +2013,3,20,18,30,17,0.43,0.0709,0.68,0,0,0,3,17,0,0,0,0,0.259,99.97,109.21000000000001,0.14,988,3.6,107,0.7000000000000001 +2013,3,20,19,30,17.400000000000002,0.44,0.0684,0.68,0,0,0,1,17,0,0,0,0,0.259,97.25,95.99000000000001,0.14,988,3.6,104,0.8 +2013,3,20,20,30,18.3,0.46,0.06620000000000001,0.68,39,363,86,1,17.5,39,363,1,86,0.259,95.26,82.57000000000001,0.14,989,3.6,94,1.2000000000000002 +2013,3,20,21,30,19.5,0.5,0.062400000000000004,0.68,68,682,308,3,18.1,182,94,0,216,0.259,91.85000000000001,69.44,0.14,989,3.5,83,1.7000000000000002 +2013,3,20,22,30,20.5,0.55,0.056900000000000006,0.68,82,819,532,1,18.5,82,819,0,532,0.259,88.26,56.65,0.14,989,3.5,77,2 +2013,3,20,23,30,21,0.58,0.055600000000000004,0.68,90,886,720,3,18.3,404,47,0,438,0.259,84.44,44.68,0.14,989,3.5,76,2.1 +2013,3,21,0,30,22.3,0.43,0.0819,0.68,112,892,847,1,18,112,892,0,847,0.259,76.85000000000001,34.53,0.14,988,3.6,73,2.1 +2013,3,21,1,30,22.900000000000002,0.46,0.0782,0.68,113,912,916,3,18,378,23,0,398,0.258,74.04,28.310000000000002,0.14,987,3.6,70,2.1 +2013,3,21,2,30,23.200000000000003,0.48,0.0728,0.68,109,916,913,3,18.1,439,24,0,460,0.258,72.92,28.740000000000002,0.14,986,3.6,66,2.1 +2013,3,21,3,30,23.3,0.5,0.0721,0.68,105,899,837,1,18.1,105,899,0,837,0.258,72.67,35.57,0.14,986,3.6,64,2 +2013,3,21,4,30,23.200000000000003,0.48,0.076,0.68,100,857,696,1,18.1,100,857,0,696,0.258,73.23,46.02,0.14,985,3.5,64,2 +2013,3,21,5,30,22.700000000000003,0.46,0.07930000000000001,0.68,90,780,502,3,18.2,174,23,0,186,0.258,75.53,58.13,0.14,986,3.4000000000000004,65,1.8 +2013,3,21,6,30,21.700000000000003,0.48,0.0855,0.68,73,625,277,1,18.3,73,625,0,277,0.259,81.05,71,0.14,986,3.3000000000000003,68,1.2000000000000002 +2013,3,21,7,30,20.400000000000002,0.48,0.085,0.68,35,266,62,1,18.8,35,266,0,62,0.26,90.71000000000001,84.13,0.14,987,3.3000000000000003,72,0.8 +2013,3,21,8,30,19.400000000000002,0.47000000000000003,0.08120000000000001,0.68,0,0,0,3,18.400000000000002,0,0,0,0,0.26,93.94,97.60000000000001,0.14,987,3.4000000000000004,74,0.7000000000000001 +2013,3,21,9,30,19,0.46,0.0784,0.68,0,0,0,3,18.2,0,0,0,0,0.26,95.38,110.82000000000001,0.14,988,3.4000000000000004,73,0.7000000000000001 +2013,3,21,10,30,18.7,0.45,0.0776,0.68,0,0,0,1,18.2,0,0,0,0,0.26,96.8,123.68,0.14,988,3.4000000000000004,70,0.7000000000000001 +2013,3,21,11,30,18.6,0.46,0.07880000000000001,0.68,0,0,0,3,18.2,0,0,0,0,0.26,97.47,135.74,0.14,988,3.4000000000000004,68,0.7000000000000001 +2013,3,21,12,30,18.400000000000002,0.49,0.08310000000000001,0.68,0,0,0,3,18.3,0,0,0,0,0.259,99.2,146.01,0.14,988,3.4000000000000004,66,0.7000000000000001 +2013,3,21,13,30,18.3,0.52,0.0863,0.68,0,0,0,3,18.3,0,0,0,0,0.259,100,152.35,0.14,987,3.5,65,0.7000000000000001 +2013,3,21,14,30,18.3,0.54,0.08800000000000001,0.68,0,0,0,1,18.3,0,0,0,0,0.259,100,151.92000000000002,0.14,987,3.5,64,0.6000000000000001 +2013,3,21,15,30,18.3,0.54,0.0915,0.68,0,0,0,1,18.3,0,0,0,0,0.259,100,144.98,0.14,986,3.6,68,0.7000000000000001 +2013,3,21,16,30,18.2,0.51,0.09000000000000001,0.68,0,0,0,1,18.2,0,0,0,0,0.259,100,134.43,0.14,986,3.6,74,0.7000000000000001 +2013,3,21,17,30,18.1,0.47000000000000003,0.0872,0.68,0,0,0,1,18.1,0,0,0,0,0.259,100,122.25,0.14,986,3.7,78,0.7000000000000001 +2013,3,21,18,30,18,0.52,0.0951,0.68,0,0,0,1,18,0,0,0,0,0.259,100,109.34,0.14,987,3.7,81,0.7000000000000001 +2013,3,21,19,30,18.6,0.53,0.098,0.68,0,0,0,3,18.6,0,0,0,0,0.259,100,96.10000000000001,0.14,987,3.8000000000000003,82,0.7000000000000001 +2013,3,21,20,30,20.1,0.5,0.0941,0.68,42,305,81,1,19.400000000000002,42,305,0,81,0.258,95.85000000000001,82.68,0.14,988,3.8000000000000003,76,0.9 +2013,3,21,21,30,21.900000000000002,0.55,0.0985,0.68,79,623,297,1,20.5,79,623,0,297,0.258,91.58,69.57000000000001,0.14,988,3.8000000000000003,59,1 +2013,3,21,22,30,23.400000000000002,0.63,0.0936,0.68,97,771,519,1,21,97,771,0,519,0.258,86.22,56.800000000000004,0.14,988,3.8000000000000003,45,1.1 +2013,3,21,23,30,24.1,0.67,0.0868,0.68,105,850,707,1,21.1,105,850,0,707,0.258,83.59,44.88,0.14,988,3.8000000000000003,42,1 +2013,3,22,0,30,25.6,0.8200000000000001,0.0781,0.68,106,897,843,1,21.3,106,897,0,843,0.257,77.39,34.81,0.14,987,3.8000000000000003,47,0.9 +2013,3,22,1,30,26.3,0.84,0.07690000000000001,0.68,109,914,910,1,21.5,109,914,0,910,0.257,75.15,28.68,0.14,987,3.8000000000000003,52,1 +2013,3,22,2,30,26.6,0.84,0.07250000000000001,0.68,106,916,907,1,21.700000000000003,106,916,0,907,0.256,74.43,29.14,0.14,986,3.8000000000000003,56,1.1 +2013,3,22,3,30,26.6,0.85,0.07830000000000001,0.68,105,892,828,1,21.700000000000003,105,892,0,828,0.256,74.63,35.93,0.14,985,3.9000000000000004,57,1.2000000000000002 +2013,3,22,4,30,26.200000000000003,0.87,0.0818,0.68,100,848,685,1,21.700000000000003,100,848,0,685,0.255,76.25,46.34,0.14,985,4,56,1.3 +2013,3,22,5,30,25.3,0.86,0.0838,0.68,89,771,493,3,21.700000000000003,288,64,0,322,0.255,80.54,58.410000000000004,0.14,985,4,56,1.5 +2013,3,22,6,30,24,0.88,0.08850000000000001,0.68,71,617,269,1,21.900000000000002,71,617,0,269,0.254,88.19,71.25,0.14,985,4.1000000000000005,56,1.2000000000000002 +2013,3,22,7,30,22.8,0.85,0.092,0.68,33,256,58,1,22.1,33,256,0,58,0.255,95.98,84.38,0.14,986,4.1000000000000005,55,0.9 +2013,3,22,8,30,21.900000000000002,0.8,0.08950000000000001,0.68,0,0,0,0,21.900000000000002,0,0,0,0,0.255,99.74000000000001,97.84,0.14,986,4.1000000000000005,51,0.7000000000000001 +2013,3,22,9,30,21.400000000000002,0.8,0.0883,0.68,0,0,0,0,21.400000000000002,0,0,0,0,0.255,100,111.07000000000001,0.14,987,4.1000000000000005,44,0.6000000000000001 +2013,3,22,10,30,21.1,0.81,0.08270000000000001,0.68,0,0,0,0,21.1,0,0,0,0,0.256,100,123.96000000000001,0.14,988,4.1000000000000005,36,0.6000000000000001 +2013,3,22,11,30,20.8,0.8200000000000001,0.0787,0.68,0,0,0,1,20.8,0,0,0,0,0.256,100,136.05,0.14,988,4,25,0.6000000000000001 +2013,3,22,12,30,20.6,0.86,0.08,0.68,0,0,0,1,20.6,0,0,0,0,0.257,100,146.37,0.14,988,4,16,0.6000000000000001 +2013,3,22,13,30,20.3,0.87,0.07680000000000001,0.68,0,0,0,3,20.3,0,0,0,0,0.257,100,152.75,0.14,987,3.9000000000000004,9,0.6000000000000001 +2013,3,22,14,30,19.900000000000002,0.87,0.0689,0.68,0,0,0,3,19.900000000000002,0,0,0,0,0.257,100,152.28,0.14,986,3.8000000000000003,180,0.7000000000000001 +2013,3,22,15,30,19.700000000000003,0.89,0.06470000000000001,0.68,0,0,0,8,19.700000000000003,0,0,0,0,0.258,100,145.24,0.14,986,3.8000000000000003,347,0.7000000000000001 +2013,3,22,16,30,19.400000000000002,0.91,0.0618,0.68,0,0,0,8,19.400000000000002,0,0,0,0,0.258,100,134.62,0.14,986,3.7,336,0.6000000000000001 +2013,3,22,17,30,19.1,0.9400000000000001,0.0579,0.68,0,0,0,7,19.1,0,0,0,0,0.258,100,122.4,0.14,986,3.7,329,0.6000000000000001 +2013,3,22,18,30,18.8,0.98,0.0555,0.68,0,0,0,0,18.8,0,0,0,0,0.257,100,109.46000000000001,0.14,986,3.7,325,0.6000000000000001 +2013,3,22,19,30,19.200000000000003,1,0.053500000000000006,0.68,0,0,0,1,19.200000000000003,0,0,0,0,0.257,100,96.22,0.14,987,3.7,318,0.7000000000000001 +2013,3,22,20,30,20.8,1.01,0.0523,0.68,34,403,85,6,19.8,16,0,3,16,0.256,93.75,82.8,0.14,987,3.7,316,1 +2013,3,22,21,30,22.700000000000003,1,0.0529,0.68,62,697,304,8,20.3,50,4,0,51,0.256,86.32000000000001,69.7,0.14,988,3.8000000000000003,321,1.2000000000000002 +2013,3,22,22,30,24.3,1,0.0546,0.68,78,818,524,7,20.6,254,31,0,271,0.255,79.79,56.96,0.14,988,3.9000000000000004,325,1.1 +2013,3,22,23,30,25,1,0.0562,0.68,88,881,710,1,20.900000000000002,88,881,0,710,0.255,78.10000000000001,45.09,0.14,987,3.9000000000000004,326,1 +2013,3,23,0,30,26.700000000000003,0.9,0.0637,0.68,98,906,840,0,21.3,98,906,0,840,0.253,72.21000000000001,35.09,0.14,986,4,334,0.9 +2013,3,23,1,30,27.400000000000002,0.89,0.06420000000000001,0.68,101,920,905,0,21.5,101,920,0,905,0.253,70.44,29.05,0.14,985,4.1000000000000005,337,0.8 +2013,3,23,2,30,27.8,0.87,0.06520000000000001,0.68,102,917,899,0,21.700000000000003,102,917,0,899,0.253,69.37,29.54,0.14,984,4.2,340,0.7000000000000001 +2013,3,23,3,30,27.8,0.92,0.0627,0.68,97,901,823,0,21.8,97,901,0,823,0.252,69.74,36.300000000000004,0.14,983,4.3,346,0.6000000000000001 +2013,3,23,4,30,27.700000000000003,0.92,0.0659,0.68,92,858,681,0,21.900000000000002,92,858,0,681,0.252,70.53,46.65,0.14,983,4.4,182,0.5 +2013,3,23,5,30,27.3,0.92,0.06760000000000001,0.68,81,783,488,0,22.400000000000002,81,783,0,488,0.251,74.45,58.69,0.14,983,4.5,26,0.5 +2013,3,23,6,30,26.3,0.92,0.0685,0.68,64,639,266,0,22.8,64,639,0,266,0.251,81.10000000000001,71.51,0.14,983,4.5,47,0.5 +2013,3,23,7,30,24.900000000000002,0.92,0.07060000000000001,0.68,30,282,56,1,22.700000000000003,30,282,0,56,0.251,87.38,84.62,0.14,983,4.5,54,0.6000000000000001 +2013,3,23,8,30,23.700000000000003,0.91,0.0717,0.68,0,0,0,0,22.3,0,0,0,0,0.251,91.72,98.09,0.14,984,4.5,46,0.7000000000000001 +2013,3,23,9,30,23,0.91,0.07060000000000001,0.68,0,0,0,7,22.1,0,0,0,0,0.251,94.54,111.33,0.14,984,4.4,34,0.7000000000000001 +2013,3,23,10,30,22.3,0.91,0.0698,0.68,0,0,0,7,21.8,0,0,0,0,0.251,97.12,124.24000000000001,0.14,984,4.4,23,0.6000000000000001 +2013,3,23,11,30,21.900000000000002,0.91,0.07010000000000001,0.68,0,0,0,7,21.6,0,0,0,0,0.251,98.44,136.36,0.14,985,4.3,14,0.6000000000000001 +2013,3,23,12,30,21.5,0.92,0.0699,0.68,0,0,0,7,21.5,0,0,0,0,0.251,99.82000000000001,146.73,0.14,984,4.3,6,0.6000000000000001 +2013,3,23,13,30,21.1,0.92,0.06960000000000001,0.68,0,0,0,7,21.1,0,0,0,0,0.251,100,153.15,0.14,984,4.2,181,0.6000000000000001 +2013,3,23,14,30,20.700000000000003,0.91,0.0694,0.68,0,0,0,8,20.700000000000003,0,0,0,0,0.251,100,152.64000000000001,0.14,984,4.2,357,0.6000000000000001 +2013,3,23,15,30,20.400000000000002,0.89,0.0707,0.68,0,0,0,7,20.400000000000002,0,0,0,0,0.251,100,145.51,0.14,984,4.2,354,0.6000000000000001 +2013,3,23,16,30,20.1,0.87,0.07400000000000001,0.68,0,0,0,8,20.1,0,0,0,0,0.252,100,134.81,0.14,984,4.2,349,0.6000000000000001 +2013,3,23,17,30,19.8,0.86,0.0777,0.68,0,0,0,0,19.8,0,0,0,0,0.252,100,122.54,0.14,984,4.2,345,0.6000000000000001 +2013,3,23,18,30,19.5,0.85,0.0814,0.68,0,0,0,1,19.5,0,0,0,0,0.253,100,109.58,0.14,984,4.2,342,0.6000000000000001 +2013,3,23,19,30,19.900000000000002,0.85,0.0839,0.68,0,0,0,1,19.900000000000002,0,0,0,0,0.254,100,96.33,0.14,985,4.1000000000000005,341,0.7000000000000001 +2013,3,23,20,30,21.200000000000003,0.85,0.08600000000000001,0.68,38,326,79,1,20.3,38,326,0,79,0.254,94.61,82.91,0.14,985,4.1000000000000005,335,1.1 +2013,3,23,21,30,22.900000000000002,0.85,0.0884,0.68,73,639,294,1,20.700000000000003,73,639,0,294,0.255,87.38,69.83,0.14,985,4,326,1.3 +2013,3,23,22,30,24.5,0.86,0.0907,0.68,93,774,513,1,21.1,93,774,0,513,0.256,81.14,57.120000000000005,0.14,985,3.9000000000000004,322,1.2000000000000002 +2013,3,23,23,30,25.200000000000003,0.88,0.094,0.68,106,842,699,1,21.5,106,842,0,699,0.256,79.75,45.29,0.14,985,3.9000000000000004,321,1.1 +2013,3,24,0,30,26.5,0.89,0.1411,0.68,136,841,822,1,21.900000000000002,136,841,0,822,0.256,75.8,35.37,0.14,984,3.9000000000000004,317,0.9 +2013,3,24,1,30,27,0.88,0.1396,0.68,139,860,888,8,22.200000000000003,600,138,0,720,0.256,75.23,29.42,0.14,983,3.9000000000000004,314,0.8 +2013,3,24,2,30,27.400000000000002,0.88,0.13470000000000001,0.68,136,861,883,8,22.400000000000002,588,142,0,711,0.256,74.37,29.94,0.14,983,4,313,0.8 +2013,3,24,3,30,27.400000000000002,0.92,0.1587,0.68,143,821,801,1,22.5,143,821,0,801,0.256,74.79,36.660000000000004,0.14,982,4.1000000000000005,324,0.7000000000000001 +2013,3,24,4,30,27.200000000000003,0.93,0.1504,0.68,129,780,661,1,22.700000000000003,129,780,0,661,0.256,76.53,46.96,0.14,981,4.2,344,0.6000000000000001 +2013,3,24,5,30,26.6,0.9400000000000001,0.1454,0.68,110,697,470,8,23.200000000000003,294,84,0,337,0.255,81.77,58.97,0.14,982,4.4,178,0.6000000000000001 +2013,3,24,6,30,25.6,0.9500000000000001,0.149,0.68,85,527,250,9,23.200000000000003,91,15,0,95,0.255,86.77,71.77,0.14,982,4.6000000000000005,14,0.7000000000000001 +2013,3,24,7,30,24.200000000000003,0.96,0.1441,0.68,33,173,49,6,22.900000000000002,20,0,3,20,0.256,92.47,84.87,0.14,982,4.6000000000000005,32,0.8 +2013,3,24,8,30,23.1,0.9500000000000001,0.139,0.68,0,0,0,6,22.5,0,0,0,0,0.256,96.65,98.34,0.14,983,4.6000000000000005,41,0.9 +2013,3,24,9,30,22.400000000000002,0.9400000000000001,0.1282,0.68,0,0,0,7,22.400000000000002,0,0,0,0,0.256,100,111.59,0.14,983,4.4,41,0.8 +2013,3,24,10,30,21.8,0.92,0.11960000000000001,0.68,0,0,0,6,21.8,0,0,0,0,0.257,100,124.51,0.14,984,4.3,36,0.7000000000000001 +2013,3,24,11,30,21.400000000000002,0.9,0.1154,0.68,0,0,0,6,21.400000000000002,0,0,0,0,0.257,100,136.67000000000002,0.14,984,4.2,29,0.6000000000000001 +2013,3,24,12,30,21.1,0.89,0.114,0.68,0,0,0,3,21.1,0,0,0,0,0.257,100,147.09,0.14,983,4.1000000000000005,16,0.6000000000000001 +2013,3,24,13,30,20.8,0.89,0.1116,0.68,0,0,0,6,20.8,0,0,0,0,0.258,100,153.55,0.14,983,4,174,0.5 +2013,3,24,14,30,20.5,0.88,0.1085,0.68,0,0,0,4,20.5,0,0,0,0,0.258,100,152.99,0.14,983,3.9000000000000004,331,0.5 +2013,3,24,15,30,20.3,0.86,0.1047,0.68,0,0,0,6,20.3,0,0,0,0,0.259,100,145.76,0.14,982,3.8000000000000003,321,0.4 +2013,3,24,16,30,20.1,0.84,0.1013,0.68,0,0,0,3,20.1,0,0,0,0,0.26,100,134.99,0.14,982,3.7,322,0.4 +2013,3,24,17,30,20,0.8200000000000001,0.0994,0.68,0,0,0,3,20,0,0,0,0,0.261,100,122.69,0.14,983,3.7,335,0.30000000000000004 +2013,3,24,18,30,19.900000000000002,0.8,0.0975,0.68,0,0,0,3,19.900000000000002,0,0,0,0,0.262,100,109.71000000000001,0.14,983,3.6,198,0.30000000000000004 +2013,3,24,19,30,20.200000000000003,0.78,0.0951,0.68,0,0,0,0,20,0,0,0,0,0.262,98.71000000000001,96.45,0.14,984,3.5,56,0.4 +2013,3,24,20,30,21.200000000000003,0.77,0.0932,0.68,39,313,77,1,20.6,39,313,0,77,0.262,96.08,83.03,0.14,984,3.4000000000000004,62,0.6000000000000001 +2013,3,24,21,30,22.6,0.79,0.0922,0.68,75,638,294,1,21.6,75,638,0,294,0.263,93.99,69.96000000000001,0.14,985,3.4000000000000004,63,0.7000000000000001 +2013,3,24,22,30,24.1,0.81,0.09040000000000001,0.68,93,781,515,1,22.1,93,781,0,515,0.263,88.44,57.28,0.14,985,3.3000000000000003,74,0.7000000000000001 +2013,3,24,23,30,24.900000000000002,0.8300000000000001,0.0855,0.68,103,857,703,1,22.1,103,857,0,703,0.264,84.66,45.5,0.14,984,3.3000000000000003,85,0.6000000000000001 +2013,3,25,0,30,26.6,0.81,0.09090000000000001,0.68,112,887,833,1,22.200000000000003,112,887,0,833,0.265,76.65,35.660000000000004,0.14,984,3.4000000000000004,118,0.8 +2013,3,25,1,30,27.200000000000003,0.85,0.08950000000000001,0.68,115,905,900,1,22.200000000000003,115,905,0,900,0.266,74.09,29.79,0.14,983,3.4000000000000004,120,1 +2013,3,25,2,30,27.400000000000002,0.89,0.0887,0.68,114,905,895,1,22.200000000000003,114,905,0,895,0.266,73.41,30.34,0.14,982,3.4000000000000004,114,1.3 +2013,3,25,3,30,27.200000000000003,0.86,0.079,0.68,105,894,819,1,22.200000000000003,105,894,0,819,0.267,74.08,37.02,0.14,982,3.4000000000000004,108,1.7000000000000002 +2013,3,25,4,30,26.8,0.9,0.08120000000000001,0.68,99,852,677,0,22,99,852,0,677,0.267,75.12,47.28,0.14,982,3.4000000000000004,102,1.9000000000000001 +2013,3,25,5,30,25.900000000000002,0.93,0.077,0.68,85,781,484,0,22,85,781,0,484,0.268,78.9,59.25,0.14,982,3.4000000000000004,96,1.9000000000000001 +2013,3,25,6,30,24.700000000000003,0.98,0.0772,0.68,66,633,261,0,22,66,633,0,261,0.268,85.21000000000001,72.03,0.14,983,3.3000000000000003,91,1.5 +2013,3,25,7,30,23.200000000000003,0.98,0.0684,0.68,28,280,52,0,21.900000000000002,28,280,0,52,0.268,92.67,85.11,0.14,983,3.2,89,1 +2013,3,25,8,30,22.1,0.96,0.0587,0.68,0,0,0,0,21.3,0,0,0,0,0.267,95.15,98.59,0.14,985,3.1,88,0.8 +2013,3,25,9,30,21.400000000000002,0.93,0.0545,0.68,0,0,0,0,20.8,0,0,0,0,0.267,96.18,111.84,0.14,985,3,86,0.8 +2013,3,25,10,30,20.700000000000003,0.88,0.0533,0.68,0,0,0,0,20.3,0,0,0,0,0.266,97.83,124.79,0.14,986,2.9000000000000004,85,0.7000000000000001 +2013,3,25,11,30,20.1,0.8300000000000001,0.052500000000000005,0.68,0,0,0,0,20,0,0,0,0,0.266,99.08,136.98,0.14,986,2.9000000000000004,85,0.7000000000000001 +2013,3,25,12,30,19.6,0.78,0.0523,0.68,0,0,0,0,19.6,0,0,0,0,0.265,100,147.45000000000002,0.14,986,2.8000000000000003,86,0.7000000000000001 +2013,3,25,13,30,19.200000000000003,0.74,0.0526,0.68,0,0,0,0,19.200000000000003,0,0,0,0,0.265,100,153.95000000000002,0.14,985,2.7,87,0.7000000000000001 +2013,3,25,14,30,18.8,0.7000000000000001,0.0534,0.68,0,0,0,0,18.8,0,0,0,0,0.266,100,153.35,0.14,985,2.6,91,0.6000000000000001 +2013,3,25,15,30,18.6,0.7000000000000001,0.0562,0.68,0,0,0,0,18.6,0,0,0,0,0.266,100,146.02,0.14,985,2.5,99,0.7000000000000001 +2013,3,25,16,30,18.400000000000002,0.7000000000000001,0.0577,0.68,0,0,0,0,18.400000000000002,0,0,0,0,0.266,100,135.18,0.14,984,2.4000000000000004,110,0.7000000000000001 +2013,3,25,17,30,18.2,0.68,0.058100000000000006,0.68,0,0,0,0,18.2,0,0,0,0,0.266,100,122.83,0.14,985,2.3000000000000003,122,0.7000000000000001 +2013,3,25,18,30,17.900000000000002,0.73,0.063,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.267,100,109.83,0.14,985,2.3000000000000003,130,0.7000000000000001 +2013,3,25,19,30,18.3,0.76,0.0656,0.68,0,0,0,0,18.3,0,0,0,0,0.267,100,96.56,0.14,986,2.2,135,0.8 +2013,3,25,20,30,19.900000000000002,0.77,0.0632,0.68,36,385,82,1,18.8,36,385,0,82,0.267,93.12,83.14,0.14,986,2.2,130,1 +2013,3,25,21,30,21.700000000000003,0.8300000000000001,0.06570000000000001,0.68,67,700,306,1,19.3,67,700,0,306,0.267,86.14,70.10000000000001,0.14,987,2.2,115,1.4000000000000001 +2013,3,25,22,30,23,0.87,0.060200000000000004,0.68,81,838,532,1,19.400000000000002,81,838,0,532,0.267,80.13,57.44,0.14,987,2.2,102,1.6 +2013,3,25,23,30,23.6,0.9,0.05,0.68,86,912,722,1,19.5,86,912,0,722,0.267,77.86,45.71,0.14,987,2.3000000000000003,100,1.7000000000000002 +2013,3,26,0,30,24.6,0.81,0.055900000000000005,0.68,95,937,853,1,19.6,95,937,0,853,0.267,73.81,35.94,0.14,986,2.4000000000000004,100,1.9000000000000001 +2013,3,26,1,30,24.900000000000002,0.8300000000000001,0.049800000000000004,0.68,94,955,919,1,19.700000000000003,94,955,0,919,0.267,72.79,30.16,0.14,986,2.5,100,1.9000000000000001 +2013,3,26,2,30,25,0.85,0.0439,0.68,90,957,912,1,19.6,90,957,0,912,0.267,72.21000000000001,30.740000000000002,0.14,985,2.6,99,1.9000000000000001 +2013,3,26,3,30,24.900000000000002,0.93,0.0393,0.68,84,944,835,1,19.5,84,944,0,835,0.268,72.10000000000001,37.38,0.14,984,2.6,98,2 +2013,3,26,4,30,24.5,0.9500000000000001,0.0422,0.68,80,903,689,0,19.400000000000002,80,903,0,689,0.269,73.17,47.59,0.14,984,2.7,98,2 +2013,3,26,5,30,23.8,0.93,0.0431,0.68,71,832,493,1,19.200000000000003,71,832,0,493,0.269,75.62,59.53,0.14,984,2.7,96,1.8 +2013,3,26,6,30,22.700000000000003,0.9500000000000001,0.048,0.68,57,685,265,1,19.5,57,685,0,265,0.271,82.05,72.29,0.14,985,2.7,94,1.2000000000000002 +2013,3,26,7,30,21.400000000000002,0.92,0.0453,0.68,25,322,51,8,19.900000000000002,19,0,3,19,0.272,91.21000000000001,85.35000000000001,0.14,986,2.7,93,0.8 +2013,3,26,8,30,20.400000000000002,0.87,0.0415,0.68,0,0,0,3,19.5,0,0,0,0,0.273,94.4,98.84,0.14,986,2.7,92,0.7000000000000001 +2013,3,26,9,30,19.8,0.8,0.040600000000000004,0.68,0,0,0,7,19.200000000000003,0,0,0,0,0.273,96.41,112.10000000000001,0.14,987,2.6,92,0.7000000000000001 +2013,3,26,10,30,19.400000000000002,0.74,0.0429,0.68,0,0,0,8,19,0,0,0,0,0.273,97.63,125.06,0.14,987,2.5,95,0.7000000000000001 +2013,3,26,11,30,19,0.6900000000000001,0.048600000000000004,0.68,0,0,0,3,18.900000000000002,0,0,0,0,0.272,99.25,137.29,0.14,987,2.4000000000000004,99,0.7000000000000001 +2013,3,26,12,30,18.8,0.68,0.058800000000000005,0.68,0,0,0,1,18.8,0,0,0,0,0.272,99.86,147.81,0.14,987,2.4000000000000004,102,0.7000000000000001 +2013,3,26,13,30,18.8,0.7000000000000001,0.0687,0.68,0,0,0,7,18.8,0,0,0,0,0.271,99.9,154.35,0.14,987,2.3000000000000003,105,0.7000000000000001 +2013,3,26,14,30,18.900000000000002,0.6900000000000001,0.0719,0.68,0,0,0,1,18.8,0,0,0,0,0.271,99.2,153.70000000000002,0.14,986,2.3000000000000003,111,0.6000000000000001 +2013,3,26,15,30,18.8,0.74,0.0811,0.68,0,0,0,8,18.7,0,0,0,0,0.271,99.63,146.27,0.14,986,2.3000000000000003,114,0.6000000000000001 +2013,3,26,16,30,18.7,0.78,0.0829,0.68,0,0,0,1,18.7,0,0,0,0,0.271,100,135.36,0.14,986,2.4000000000000004,116,0.6000000000000001 +2013,3,26,17,30,18.7,0.78,0.0772,0.68,0,0,0,3,18.7,0,0,0,0,0.271,100,122.97,0.14,986,2.4000000000000004,121,0.6000000000000001 +2013,3,26,18,30,18.6,0.8200000000000001,0.0746,0.68,0,0,0,1,18.6,0,0,0,0,0.271,100,109.95,0.14,986,2.5,123,0.6000000000000001 +2013,3,26,19,30,18.900000000000002,0.85,0.0678,0.68,0,0,0,3,18.7,0,0,0,0,0.272,98.79,96.67,0.14,987,2.6,121,0.7000000000000001 +2013,3,26,20,30,20,0.84,0.0584,0.68,34,382,79,1,19.1,34,382,0,79,0.273,94.85000000000001,83.26,0.14,987,2.7,116,1.1 +2013,3,26,21,30,21.5,0.88,0.050100000000000006,0.68,61,708,301,1,19.700000000000003,61,708,0,301,0.274,89.77,70.23,0.14,988,2.8000000000000003,105,1.5 +2013,3,26,22,30,22.8,0.92,0.0413,0.68,72,843,524,1,20,72,843,0,524,0.273,84.34,57.6,0.14,988,2.9000000000000004,95,1.8 +2013,3,26,23,30,23.400000000000002,0.92,0.0383,0.68,79,909,711,1,20,79,909,0,711,0.273,81.04,45.92,0.14,988,2.9000000000000004,92,1.9000000000000001 +2013,3,27,0,30,24.3,0.76,0.0495,0.68,91,928,840,1,20.1,91,928,0,840,0.272,77.24,36.230000000000004,0.14,987,3,90,1.9000000000000001 +2013,3,27,1,30,24.6,0.77,0.0499,0.68,94,940,904,1,20.1,94,940,0,904,0.272,76.2,30.53,0.14,986,3.1,90,2 +2013,3,27,2,30,24.700000000000003,0.74,0.051800000000000006,0.68,95,937,897,1,20.1,95,937,0,897,0.271,75.83,31.14,0.14,985,3.1,90,2.1 +2013,3,27,3,30,24.6,0.68,0.0839,0.68,109,889,812,0,20.1,109,889,0,812,0.271,76.02,37.74,0.14,985,3.1,89,2.2 +2013,3,27,4,30,24.200000000000003,0.66,0.082,0.68,100,847,668,0,19.900000000000002,100,847,0,668,0.272,77.03,47.910000000000004,0.14,984,3.2,88,2.2 +2013,3,27,5,30,23.5,0.62,0.0763,0.68,86,774,475,0,19.700000000000003,86,774,0,475,0.272,79.25,59.81,0.14,985,3.2,87,2 +2013,3,27,6,30,22.400000000000002,0.64,0.0742,0.68,65,621,252,0,19.700000000000003,65,621,0,252,0.273,84.91,72.55,0.14,985,3.2,87,1.4000000000000001 +2013,3,27,7,30,21.1,0.62,0.0644,0.68,26,247,45,0,20,26,247,0,45,0.274,93.25,85.59,0.14,986,3.1,88,0.9 +2013,3,27,8,30,20.1,0.58,0.0592,0.68,0,0,0,0,19.6,0,0,0,0,0.274,96.91,99.08,0.14,987,3.1,91,0.7000000000000001 +2013,3,27,9,30,19.6,0.53,0.059000000000000004,0.68,0,0,0,0,19.3,0,0,0,0,0.274,98.41,112.35000000000001,0.14,987,3,93,0.7000000000000001 +2013,3,27,10,30,19.3,0.49,0.0601,0.68,0,0,0,3,19.1,0,0,0,0,0.274,98.95,125.33,0.14,988,3,92,0.7000000000000001 +2013,3,27,11,30,19,0.45,0.060700000000000004,0.68,0,0,0,0,18.900000000000002,0,0,0,0,0.273,99.54,137.59,0.14,988,2.9000000000000004,92,0.7000000000000001 +2013,3,27,12,30,18.8,0.47000000000000003,0.0606,0.68,0,0,0,0,18.7,0,0,0,0,0.272,99.41,148.17000000000002,0.14,987,2.8000000000000003,94,0.7000000000000001 +2013,3,27,13,30,18.6,0.49,0.060700000000000004,0.68,0,0,0,0,18.5,0,0,0,0,0.27,99.57000000000001,154.75,0.14,987,2.7,95,0.7000000000000001 +2013,3,27,14,30,18.400000000000002,0.49,0.058800000000000005,0.68,0,0,0,0,18.3,0,0,0,0,0.269,99.4,154.04,0.14,986,2.6,98,0.7000000000000001 +2013,3,27,15,30,18.1,0.53,0.0614,0.68,0,0,0,0,18.1,0,0,0,0,0.268,100,146.52,0.14,986,2.5,102,0.7000000000000001 +2013,3,27,16,30,17.900000000000002,0.55,0.06280000000000001,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.267,100,135.54,0.14,986,2.4000000000000004,106,0.7000000000000001 +2013,3,27,17,30,17.7,0.54,0.059500000000000004,0.68,0,0,0,3,17.7,0,0,0,0,0.267,100,123.11,0.14,986,2.4000000000000004,110,0.7000000000000001 +2013,3,27,18,30,17.6,0.58,0.0606,0.68,0,0,0,1,17.6,0,0,0,0,0.267,100,110.06,0.14,986,2.3000000000000003,116,0.6000000000000001 +2013,3,27,19,30,17.900000000000002,0.6,0.059800000000000006,0.68,0,0,0,0,17.6,0,0,0,0,0.266,98.17,96.78,0.14,987,2.3000000000000003,122,0.7000000000000001 +2013,3,27,20,30,19.200000000000003,0.6,0.0558,0.68,34,381,79,1,18.1,34,381,0,79,0.265,93.44,83.37,0.14,987,2.3000000000000003,125,1 +2013,3,27,21,30,20.700000000000003,0.66,0.0495,0.68,62,715,302,1,18.8,62,715,0,302,0.264,88.64,70.36,0.14,988,2.3000000000000003,118,1.3 +2013,3,27,22,30,22.1,0.73,0.0412,0.68,73,852,527,1,18.8,73,852,0,527,0.263,81.62,57.76,0.14,988,2.4000000000000004,107,1.4000000000000001 +2013,3,27,23,30,22.700000000000003,0.77,0.036500000000000005,0.68,79,920,716,1,18.5,79,920,0,716,0.263,77.35000000000001,46.14,0.14,988,2.4000000000000004,103,1.5 +2013,3,28,0,30,23.900000000000002,0.52,0.058100000000000006,0.68,98,929,844,1,18.400000000000002,98,929,0,844,0.261,71.53,36.52,0.14,987,2.4000000000000004,99,1.4000000000000001 +2013,3,28,1,30,24.5,0.58,0.0568,0.68,99,944,909,1,18.5,99,944,0,909,0.261,69.33,30.900000000000002,0.14,986,2.5,98,1.3 +2013,3,28,2,30,24.700000000000003,0.62,0.054200000000000005,0.68,97,945,903,1,18.5,97,945,0,903,0.26,68.59,31.53,0.14,985,2.5,99,1.3 +2013,3,28,3,30,24.8,0.6,0.0698,0.68,102,910,818,1,18.5,102,910,0,818,0.259,67.97,38.1,0.14,984,2.6,100,1.3 +2013,3,28,4,30,24.5,0.65,0.0703,0.68,95,869,674,1,18.400000000000002,95,869,0,674,0.26,68.78,48.22,0.14,984,2.6,98,1.4000000000000001 +2013,3,28,5,30,23.900000000000002,0.66,0.0687,0.68,83,794,478,1,18.400000000000002,83,794,0,478,0.26,71.4,60.09,0.14,984,2.6,90,1.3 +2013,3,28,6,30,22.700000000000003,0.7000000000000001,0.0703,0.68,64,637,252,1,18.900000000000002,64,637,0,252,0.26,78.94,72.81,0.14,984,2.6,78,1 +2013,3,28,7,30,21.1,0.73,0.066,0.68,26,245,43,1,19.400000000000002,26,245,0,43,0.26,90.11,85.84,0.14,985,2.6,66,0.7000000000000001 +2013,3,28,8,30,20,0.73,0.0606,0.68,0,0,0,0,18.900000000000002,0,0,0,0,0.26,93.3,99.33,0.14,985,2.6,57,0.7000000000000001 +2013,3,28,9,30,19.400000000000002,0.7000000000000001,0.0572,0.68,0,0,0,0,18.6,0,0,0,0,0.26,95.04,112.61,0.14,986,2.6,48,0.6000000000000001 +2013,3,28,10,30,19,0.67,0.0565,0.68,0,0,0,0,18.3,0,0,0,0,0.259,96.01,125.60000000000001,0.14,986,2.6,38,0.6000000000000001 +2013,3,28,11,30,18.6,0.64,0.0577,0.68,0,0,0,0,18.2,0,0,0,0,0.258,97.3,137.9,0.14,986,2.7,24,0.6000000000000001 +2013,3,28,12,30,18.400000000000002,0.62,0.060500000000000005,0.68,0,0,0,0,18,0,0,0,0,0.258,97.4,148.53,0.14,985,2.8000000000000003,184,0.6000000000000001 +2013,3,28,13,30,18.2,0.61,0.0637,0.68,0,0,0,0,17.8,0,0,0,0,0.257,97.59,155.15,0.14,985,2.8000000000000003,342,0.6000000000000001 +2013,3,28,14,30,17.900000000000002,0.61,0.0649,0.68,0,0,0,0,17.7,0,0,0,0,0.257,98.49000000000001,154.39000000000001,0.14,984,2.9000000000000004,327,0.6000000000000001 +2013,3,28,15,30,17.400000000000002,0.63,0.06520000000000001,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.257,100,146.77,0.14,983,2.9000000000000004,315,0.6000000000000001 +2013,3,28,16,30,16.8,0.65,0.06520000000000001,0.68,0,0,0,0,16.8,0,0,0,0,0.256,100,135.71,0.14,983,2.9000000000000004,305,0.6000000000000001 +2013,3,28,17,30,16.5,0.66,0.0648,0.68,0,0,0,0,16.5,0,0,0,0,0.256,100,123.24000000000001,0.14,983,2.9000000000000004,297,0.6000000000000001 +2013,3,28,18,30,16.3,0.6900000000000001,0.06420000000000001,0.68,0,0,0,0,16.3,0,0,0,0,0.256,100,110.18,0.14,983,3,289,0.6000000000000001 +2013,3,28,19,30,16.7,0.72,0.0637,0.68,0,0,0,0,16.7,0,0,0,0,0.255,100,96.89,0.14,983,3.1,284,0.8 +2013,3,28,20,30,18.3,0.75,0.0632,0.68,34,351,74,1,17,34,351,0,74,0.254,91.97,83.48,0.14,983,3.2,286,1 +2013,3,28,21,30,20.6,0.79,0.062400000000000004,0.68,65,673,289,1,17.6,65,673,0,289,0.253,83.12,70.49,0.14,984,3.4000000000000004,288,1.2000000000000002 +2013,3,28,22,30,22.700000000000003,0.8300000000000001,0.063,0.68,81,802,507,1,18.2,81,802,0,507,0.253,75.57000000000001,57.93,0.14,984,3.6,279,1.3 +2013,3,28,23,30,23.6,0.88,0.0659,0.68,92,865,689,1,18.5,92,865,0,689,0.252,73.10000000000001,46.35,0.14,984,3.7,270,1.3 +2013,3,29,0,30,25.5,0.88,0.0721,0.68,101,891,815,1,18.900000000000002,101,891,0,815,0.252,66.8,36.81,0.14,983,4,236,1.2000000000000002 +2013,3,29,1,30,26.200000000000003,0.89,0.0755,0.68,106,902,877,1,19.200000000000003,106,902,0,877,0.251,65.21000000000001,31.27,0.14,982,4.1000000000000005,211,1.2000000000000002 +2013,3,29,2,30,26.200000000000003,0.88,0.0838,0.68,110,893,867,3,19.3,505,45,0,543,0.25,65.93,31.93,0.14,982,4.2,191,1.3 +2013,3,29,3,30,25.8,0.96,0.0771,0.68,102,879,790,3,19.5,316,24,0,335,0.25,68.05,38.46,0.14,981,4.3,178,1.4000000000000001 +2013,3,29,4,30,25.3,0.9500000000000001,0.0887,0.68,100,826,647,3,19.8,218,25,0,235,0.25,71.48,48.54,0.14,981,4.3,167,1.3 +2013,3,29,5,30,24.6,0.93,0.0937,0.68,89,739,455,4,20.200000000000003,210,27,0,224,0.25,76.66,60.370000000000005,0.14,981,4.3,154,1.2000000000000002 +2013,3,29,6,30,23.6,0.93,0.1042,0.68,70,561,234,4,20.6,98,18,0,103,0.251,83.3,73.07000000000001,0.14,981,4.3,140,0.9 +2013,3,29,7,30,22.1,0.91,0.11760000000000001,0.68,26,149,36,3,20.900000000000002,14,0,3,14,0.251,93.06,86.08,0.14,982,4.2,131,0.8 +2013,3,29,8,30,21.200000000000003,0.85,0.13820000000000002,0.68,0,0,0,4,20.5,0,0,0,0,0.252,95.77,99.58,0.14,982,4.1000000000000005,128,0.9 +2013,3,29,9,30,20.700000000000003,0.76,0.17120000000000002,0.68,0,0,0,3,20.400000000000002,0,0,0,0,0.252,98.28,112.86,0.14,983,4.1000000000000005,128,1 +2013,3,29,10,30,20.3,0.65,0.2,0.68,0,0,0,0,20.3,0,0,0,0,0.253,100,125.87,0.14,983,4,129,1 +2013,3,29,11,30,19.900000000000002,0.54,0.2088,0.68,0,0,0,3,19.900000000000002,0,0,0,0,0.254,100,138.20000000000002,0.14,983,3.9000000000000004,131,1 +2013,3,29,12,30,19.6,0.51,0.20620000000000002,0.68,0,0,0,3,19.6,0,0,0,0,0.255,100,148.88,0.14,983,3.8000000000000003,131,1 +2013,3,29,13,30,19.200000000000003,0.47000000000000003,0.2003,0.68,0,0,0,3,19.200000000000003,0,0,0,0,0.256,100,155.54,0.14,983,3.7,133,0.9 +2013,3,29,14,30,18.900000000000002,0.44,0.1956,0.68,0,0,0,3,18.900000000000002,0,0,0,0,0.256,100,154.74,0.14,982,3.6,135,0.9 +2013,3,29,15,30,18.6,0.44,0.2025,0.68,0,0,0,4,18.6,0,0,0,0,0.257,100,147.01,0.14,982,3.5,138,0.9 +2013,3,29,16,30,18.400000000000002,0.43,0.20350000000000001,0.68,0,0,0,3,18.400000000000002,0,0,0,0,0.258,100,135.88,0.14,982,3.4000000000000004,140,0.9 +2013,3,29,17,30,18.2,0.41000000000000003,0.2003,0.68,0,0,0,1,18.2,0,0,0,0,0.258,100,123.38000000000001,0.14,983,3.4000000000000004,140,0.9 +2013,3,29,18,30,17.900000000000002,0.41000000000000003,0.2018,0.68,0,0,0,3,17.900000000000002,0,0,0,0,0.258,100,110.3,0.14,983,3.3000000000000003,137,0.8 +2013,3,29,19,30,18,0.41000000000000003,0.19390000000000002,0.68,0,0,0,3,17.7,0,0,0,0,0.258,98.44,97,0.14,984,3.2,131,0.9 +2013,3,29,20,30,18.7,0.4,0.1827,0.68,46,151,63,1,17.900000000000002,46,151,0,63,0.258,95.2,83.60000000000001,0.14,985,3.1,126,1.2000000000000002 +2013,3,29,21,30,19.8,0.4,0.1734,0.68,101,508,270,1,18.3,101,508,0,270,0.259,90.93,70.62,0.14,985,3,120,1.6 +2013,3,29,22,30,21,0.41000000000000003,0.1642,0.68,127,685,489,3,18.400000000000002,148,23,0,160,0.26,85.31,58.09,0.14,985,2.9000000000000004,113,1.7000000000000002 +2013,3,29,23,30,21.6,0.43,0.15660000000000002,0.68,140,779,675,1,18.5,140,779,0,675,0.26,82.38,46.57,0.14,985,2.9000000000000004,109,1.7000000000000002 +2013,3,30,0,30,23.200000000000003,0.5,0.1051,0.68,122,871,817,1,18.6,122,871,0,817,0.261,75.15,37.1,0.14,984,2.9000000000000004,99,1.6 +2013,3,30,1,30,23.8,0.53,0.0981,0.68,121,893,881,1,18.7,121,893,0,881,0.261,72.96000000000001,31.64,0.14,983,3,95,1.5 +2013,3,30,2,30,24.1,0.55,0.0913,0.68,117,898,876,1,18.7,117,898,0,876,0.261,71.61,32.32,0.14,982,3,91,1.5 +2013,3,30,3,30,24.1,0.63,0.0889,0.68,111,879,796,1,18.6,111,879,0,796,0.261,71.33,38.82,0.14,981,3.1,87,1.5 +2013,3,30,4,30,23.700000000000003,0.66,0.08610000000000001,0.68,101,839,653,1,18.6,101,839,0,653,0.26,73,48.85,0.14,981,3.1,82,1.5 +2013,3,30,5,30,23.1,0.66,0.0818,0.68,87,760,459,1,18.6,87,760,0,459,0.26,75.64,60.660000000000004,0.14,981,3.2,77,1.6 +2013,3,30,6,30,22,0.71,0.08650000000000001,0.68,67,590,236,1,18.6,67,590,0,236,0.261,81.15,73.33,0.14,981,3.2,72,1.2000000000000002 +2013,3,30,7,30,20.700000000000003,0.74,0.0886,0.68,24,173,35,0,18.900000000000002,24,173,0,35,0.261,89.52,86.32000000000001,0.14,982,3.2,67,0.8 +2013,3,30,8,30,19.700000000000003,0.75,0.0857,0.68,0,0,0,0,18.6,0,0,0,0,0.261,93.11,99.82000000000001,0.14,982,3.2,61,0.7000000000000001 +2013,3,30,9,30,19.200000000000003,0.76,0.0838,0.68,0,0,0,0,18.2,0,0,0,0,0.261,94.12,113.11,0.14,983,3.2,53,0.6000000000000001 +2013,3,30,10,30,18.8,0.77,0.08170000000000001,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.261,94.67,126.14,0.14,983,3.2,43,0.6000000000000001 +2013,3,30,11,30,18.6,0.77,0.0801,0.68,0,0,0,0,17.7,0,0,0,0,0.26,94.25,138.5,0.14,983,3.2,30,0.6000000000000001 +2013,3,30,12,30,18.400000000000002,0.78,0.0792,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.26,93.87,149.23,0.14,982,3.2,14,0.6000000000000001 +2013,3,30,13,30,18.1,0.79,0.0777,0.68,0,0,0,0,17.2,0,0,0,0,0.259,94.28,155.94,0.14,982,3.2,178,0.6000000000000001 +2013,3,30,14,30,17.7,0.81,0.0757,0.68,0,0,0,0,17,0,0,0,0,0.26,95.51,155.08,0.14,981,3.2,345,0.6000000000000001 +2013,3,30,15,30,17.400000000000002,0.8200000000000001,0.0736,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.26,96.77,147.25,0.14,981,3.2,335,0.6000000000000001 +2013,3,30,16,30,17,0.8200000000000001,0.0732,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.262,99.2,136.05,0.14,981,3.3000000000000003,329,0.6000000000000001 +2013,3,30,17,30,16.7,0.81,0.0748,0.68,0,0,0,0,16.7,0,0,0,0,0.263,100,123.51,0.14,981,3.3000000000000003,324,0.6000000000000001 +2013,3,30,18,30,16.5,0.8,0.0781,0.68,0,0,0,0,16.5,0,0,0,0,0.264,100,110.41,0.14,981,3.3000000000000003,321,0.6000000000000001 +2013,3,30,19,30,16.900000000000002,0.78,0.082,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.264,100,97.11,0.14,982,3.4000000000000004,317,0.8 +2013,3,30,20,30,18.5,0.76,0.0843,0.68,35,299,68,3,17.3,37,2,3,37,0.264,92.94,83.71000000000001,0.14,982,3.4000000000000004,318,1 +2013,3,30,21,30,20.700000000000003,0.74,0.08420000000000001,0.68,71,632,279,3,18,156,57,0,175,0.265,84.64,70.76,0.14,983,3.5,326,1.4000000000000001 +2013,3,30,22,30,22.5,0.74,0.08370000000000001,0.68,89,771,495,8,18.6,277,50,0,304,0.265,78.42,58.26,0.14,982,3.7,330,1.6 +2013,3,30,23,30,23.1,0.74,0.0844,0.68,101,842,677,1,19,101,842,0,677,0.266,77.86,46.78,0.14,982,3.7,328,1.6 +2013,3,31,0,30,24,0.75,0.10790000000000001,0.68,120,854,798,3,19.5,85,15,0,97,0.265,75.8,37.39,0.15,981,4.1000000000000005,324,1.6 +2013,3,31,1,30,23.900000000000002,0.76,0.1246,0.68,131,855,856,4,19.8,67,6,0,72,0.265,78.05,32.01,0.15,981,4.3,321,1.6 +2013,3,31,2,30,23.5,0.76,0.1393,0.68,138,839,843,4,20.1,138,26,0,160,0.265,81.44,32.72,0.15,980,4.5,314,1.5 +2013,3,31,3,30,23,0.77,0.14400000000000002,0.68,135,812,764,8,20.400000000000002,347,24,0,366,0.265,85.51,39.18,0.15,980,4.6000000000000005,307,1.4000000000000001 +2013,3,31,4,30,22.400000000000002,0.77,0.1433,0.68,124,763,623,7,20.700000000000003,221,25,0,238,0.264,90.27,49.17,0.15,979,4.6000000000000005,311,1.2000000000000002 +2013,3,31,5,30,21.900000000000002,0.76,0.1369,0.68,105,679,435,6,21,107,21,0,117,0.264,94.61,60.94,0.15,979,4.5,329,1 +2013,3,31,6,30,21.200000000000003,0.76,0.1287,0.68,76,510,220,6,21.200000000000003,67,9,0,70,0.264,100,73.58,0.15,980,4.5,335,0.7000000000000001 +2013,3,31,7,30,20.6,0.77,0.1231,0.68,23,113,30,6,20.6,12,0,3,12,0.264,100,86.55,0.15,980,4.6000000000000005,299,0.6000000000000001 +2013,3,31,8,30,20.1,0.76,0.1218,0.68,0,0,0,6,20.1,0,0,0,0,0.264,100,100.06,0.15,981,4.6000000000000005,259,0.9 +2013,3,31,9,30,19.5,0.73,0.1345,0.68,0,0,0,4,19.5,0,0,0,0,0.264,100,113.36,0.15,982,4.6000000000000005,243,1.3 +2013,3,31,10,30,18.6,0.66,0.1572,0.68,0,0,0,1,18.6,0,0,0,0,0.265,100,126.4,0.15,983,4.4,237,1.3 +2013,3,31,11,30,17.8,0.59,0.161,0.68,0,0,0,1,17.8,0,0,0,0,0.266,100,138.8,0.15,983,4.2,235,1.1 +2013,3,31,12,30,17.1,0.55,0.14350000000000002,0.68,0,0,0,4,17.1,0,0,0,0,0.266,100,149.58,0.15,982,4,238,0.9 +2013,3,31,13,30,16.7,0.56,0.12430000000000001,0.68,0,0,0,8,16.7,0,0,0,0,0.265,100,156.33,0.15,982,3.9000000000000004,238,0.8 +2013,3,31,14,30,16.3,0.58,0.11510000000000001,0.68,0,0,0,8,16.3,0,0,0,0,0.265,100,155.42000000000002,0.15,982,3.7,243,0.8 +2013,3,31,15,30,16.1,0.61,0.1136,0.68,0,0,0,8,16.1,0,0,0,0,0.266,100,147.48,0.15,982,3.4000000000000004,249,0.8 +2013,3,31,16,30,15.9,0.63,0.11040000000000001,0.68,0,0,0,8,15.9,0,0,0,0,0.267,100,136.22,0.15,981,3.2,246,0.8 +2013,3,31,17,30,15.600000000000001,0.66,0.10830000000000001,0.68,0,0,0,1,15.600000000000001,0,0,0,0,0.269,100,123.64,0.15,981,3.1,241,0.7000000000000001 +2013,3,31,18,30,15.4,0.68,0.1066,0.68,0,0,0,3,15.3,0,0,0,0,0.27,99.4,110.52,0.15,982,2.9000000000000004,237,0.7000000000000001 +2013,3,31,19,30,15.5,0.7000000000000001,0.1051,0.68,0,0,0,0,15,0,0,0,0,0.272,97.07000000000001,97.22,0.15,982,2.7,234,0.9 +2013,3,31,20,30,16.3,0.72,0.1024,0.68,37,274,66,3,15.100000000000001,22,0,3,22,0.273,92.67,83.83,0.15,983,2.5,230,1.2000000000000002 +2013,3,31,21,30,18.1,0.74,0.09870000000000001,0.68,75,629,281,1,15.600000000000001,75,629,0,281,0.274,85.22,70.89,0.15,983,2.4000000000000004,215,1.2000000000000002 +2013,3,31,22,30,20.3,0.76,0.0952,0.68,94,782,503,1,16.3,94,782,0,503,0.275,77.74,58.42,0.15,983,2.3000000000000003,179,1.1 +2013,3,31,23,30,21.400000000000002,0.78,0.0941,0.68,105,857,690,1,16.5,105,857,0,690,0.275,73.63,47,0.15,983,2.3000000000000003,154,1.2000000000000002 +2013,4,1,0,30,23.200000000000003,0.8,0.07730000000000001,0.68,105,908,824,1,16.8,105,908,0,824,0.276,67.33,37.68,0.15,982,2.4000000000000004,130,1.1 +2013,4,1,1,30,23.8,0.79,0.0801,0.68,109,921,887,1,17.2,109,921,0,887,0.276,66.43,32.38,0.15,982,2.4000000000000004,122,1 +2013,4,1,2,30,23.900000000000002,0.79,0.0826,0.68,110,915,877,1,17.400000000000002,110,915,0,877,0.276,67,33.11,0.15,981,2.5,118,0.9 +2013,4,1,3,30,23.8,0.84,0.0882,0.68,109,888,794,1,17.5,109,888,0,794,0.276,67.67,39.54,0.15,980,2.6,115,0.9 +2013,4,1,4,30,23.400000000000002,0.88,0.0964,0.68,104,837,648,1,17.5,104,837,0,648,0.276,69.36,49.480000000000004,0.15,980,2.6,110,1 +2013,4,1,5,30,22.8,0.88,0.09190000000000001,0.68,89,755,452,3,17.8,178,24,0,189,0.277,73.33,61.22,0.15,980,2.7,101,1.1 +2013,4,1,6,30,21.700000000000003,0.93,0.10490000000000001,0.68,70,568,228,3,18.5,16,0,0,16,0.277,81.9,73.84,0.15,981,2.7,95,1 +2013,4,1,7,30,20.3,0.9400000000000001,0.1058,0.68,22,143,30,3,18.7,3,0,3,3,0.278,90.62,86.79,0.15,981,2.7,95,0.8 +2013,4,1,8,30,19.400000000000002,0.9400000000000001,0.10020000000000001,0.68,0,0,0,3,18.2,0,0,0,0,0.278,92.69,100.31,0.15,982,2.7,99,0.7000000000000001 +2013,4,1,9,30,18.900000000000002,0.92,0.09630000000000001,0.68,0,0,0,3,17.900000000000002,0,0,0,0,0.278,93.94,113.60000000000001,0.15,983,2.7,105,0.7000000000000001 +2013,4,1,10,30,18.3,0.9,0.0932,0.68,0,0,0,1,17.7,0,0,0,0,0.278,96.10000000000001,126.67,0.15,983,2.7,115,0.6000000000000001 +2013,4,1,11,30,17.900000000000002,0.88,0.0922,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.277,96.97,139.09,0.15,983,2.7,127,0.6000000000000001 +2013,4,1,12,30,17.400000000000002,0.85,0.0926,0.68,0,0,0,0,17.2,0,0,0,0,0.276,98.66,149.93,0.15,983,2.7,140,0.6000000000000001 +2013,4,1,13,30,17,0.84,0.09290000000000001,0.68,0,0,0,1,17,0,0,0,0,0.276,99.84,156.72,0.15,983,2.6,151,0.6000000000000001 +2013,4,1,14,30,16.6,0.8300000000000001,0.092,0.68,0,0,0,0,16.6,0,0,0,0,0.276,100,155.75,0.15,982,2.6,161,0.6000000000000001 +2013,4,1,15,30,16.3,0.8300000000000001,0.09190000000000001,0.68,0,0,0,0,16.3,0,0,0,0,0.276,100,147.72,0.15,982,2.6,171,0.7000000000000001 +2013,4,1,16,30,16,0.84,0.091,0.68,0,0,0,0,16,0,0,0,0,0.277,100,136.39000000000001,0.15,982,2.6,176,0.7000000000000001 +2013,4,1,17,30,15.700000000000001,0.85,0.0878,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.278,100,123.77,0.15,982,2.5,177,0.7000000000000001 +2013,4,1,18,30,15.5,0.85,0.08460000000000001,0.68,0,0,0,1,15.5,0,0,0,0,0.279,100,110.64,0.15,982,2.5,176,0.7000000000000001 +2013,4,1,19,30,15.8,0.85,0.0813,0.68,0,0,0,3,15.8,0,0,0,0,0.279,100,97.33,0.15,982,2.5,178,0.8 +2013,4,1,20,30,17.3,0.84,0.07880000000000001,0.68,34,316,68,1,16,34,316,0,68,0.279,92.21000000000001,83.94,0.15,983,2.5,178,0.9 +2013,4,1,21,30,19.5,0.8300000000000001,0.0766,0.68,68,657,282,1,16.8,68,657,0,282,0.279,84.48,71.03,0.15,984,2.6,162,1 +2013,4,1,22,30,21.5,0.81,0.07490000000000001,0.68,86,798,502,1,17.2,86,798,0,502,0.28,76.63,58.59,0.15,984,2.6,144,1 +2013,4,1,23,30,22.3,0.79,0.0748,0.68,97,868,686,1,17.5,97,868,0,686,0.28,74.05,47.22,0.15,984,2.6,140,1 +2013,4,2,0,30,23.6,0.75,0.057300000000000004,0.68,95,918,818,1,17.7,95,918,0,818,0.28,69.33,37.97,0.15,983,2.7,134,0.8 +2013,4,2,1,30,24,0.77,0.0579,0.68,97,933,882,2,17.7,558,175,0,705,0.281,67.72,32.74,0.15,982,2.7,133,0.7000000000000001 +2013,4,2,2,30,24.200000000000003,0.79,0.0579,0.68,97,931,873,1,17.5,97,931,0,873,0.281,66.42,33.5,0.15,982,2.7,128,0.8 +2013,4,2,3,30,24.200000000000003,0.84,0.0709,0.68,100,900,790,1,17.400000000000002,100,900,0,790,0.28,65.82000000000001,39.9,0.15,981,2.7,120,0.8 +2013,4,2,4,30,23.900000000000002,0.86,0.0695,0.68,92,857,645,3,17.400000000000002,407,142,0,499,0.278,66.83,49.800000000000004,0.15,981,2.8000000000000003,110,0.9 +2013,4,2,5,30,23.3,0.87,0.0668,0.68,79,780,451,3,17.400000000000002,219,33,0,235,0.275,69.63,61.5,0.15,981,2.8000000000000003,98,1 +2013,4,2,6,30,22,0.93,0.0824,0.68,63,594,226,1,18,63,594,0,226,0.273,77.97,74.10000000000001,0.15,981,2.8000000000000003,86,0.8 +2013,4,2,7,30,20.3,0.9400000000000001,0.0821,0.68,20,162,29,1,18.5,20,162,0,29,0.272,89.67,87.02,0.15,982,2.8000000000000003,78,0.7000000000000001 +2013,4,2,8,30,19.3,0.9400000000000001,0.08270000000000001,0.68,0,0,0,1,17.900000000000002,0,0,0,0,0.272,91.57000000000001,100.55,0.15,982,2.8000000000000003,72,0.7000000000000001 +2013,4,2,9,30,18.7,0.93,0.0838,0.68,0,0,0,0,17.6,0,0,0,0,0.272,93.53,113.85000000000001,0.15,983,2.8000000000000003,68,0.7000000000000001 +2013,4,2,10,30,18.3,0.91,0.0848,0.68,0,0,0,0,17.5,0,0,0,0,0.272,94.8,126.93,0.15,984,2.8000000000000003,63,0.7000000000000001 +2013,4,2,11,30,18,0.9,0.0852,0.68,0,0,0,0,17.3,0,0,0,0,0.271,95.44,139.38,0.15,984,2.8000000000000003,55,0.7000000000000001 +2013,4,2,12,30,17.900000000000002,0.9,0.0855,0.68,0,0,0,0,17.1,0,0,0,0,0.271,94.8,150.27,0.15,984,2.8000000000000003,45,0.7000000000000001 +2013,4,2,13,30,18,0.89,0.08610000000000001,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.271,93.07000000000001,157.12,0.15,983,2.8000000000000003,30,0.6000000000000001 +2013,4,2,14,30,18,0.87,0.08650000000000001,0.68,0,0,0,0,16.7,0,0,0,0,0.271,92.23,156.09,0.15,983,2.8000000000000003,179,0.5 +2013,4,2,15,30,17.900000000000002,0.87,0.08650000000000001,0.68,0,0,0,0,16.6,0,0,0,0,0.271,92.09,147.94,0.15,983,2.8000000000000003,306,0.4 +2013,4,2,16,30,17.6,0.87,0.0863,0.68,0,0,0,3,16.5,0,0,0,0,0.271,93,136.55,0.15,983,2.8000000000000003,256,0.4 +2013,4,2,17,30,16.900000000000002,0.87,0.0863,0.68,0,0,0,3,16.400000000000002,0,0,0,0,0.271,96.78,123.9,0.15,983,2.8000000000000003,225,0.6000000000000001 +2013,4,2,18,30,16.2,0.87,0.08710000000000001,0.68,0,0,0,1,16.2,0,0,0,0,0.271,100,110.75,0.15,984,2.7,208,0.8 +2013,4,2,19,30,16,0.88,0.0891,0.68,0,0,0,1,16,0,0,0,0,0.27,100,97.44,0.15,984,2.7,195,0.8 +2013,4,2,20,30,17.400000000000002,0.88,0.092,0.68,35,287,64,1,16.2,35,287,0,64,0.27,92.68,84.06,0.15,985,2.7,182,0.9 +2013,4,2,21,30,19.8,0.89,0.09290000000000001,0.68,73,631,276,1,17,73,631,0,276,0.269,83.65,71.16,0.15,985,2.7,144,0.8 +2013,4,2,22,30,21.8,0.89,0.0917,0.68,92,774,493,1,17.3,92,774,0,493,0.269,75.53,58.76,0.15,985,2.8000000000000003,100,0.7000000000000001 +2013,4,2,23,30,22.5,0.89,0.0898,0.68,103,849,677,1,17.5,103,849,0,677,0.268,73.47,47.44,0.15,985,2.8000000000000003,86,0.7000000000000001 +2013,4,3,0,30,23.6,0.93,0.1019,0.68,116,875,803,1,17.900000000000002,116,875,0,803,0.268,70.22,38.26,0.15,985,2.9000000000000004,79,0.6000000000000001 +2013,4,3,1,30,23.900000000000002,0.9500000000000001,0.1063,0.68,121,884,861,1,18,121,884,0,861,0.267,69.71000000000001,33.11,0.15,984,3.1,87,0.6000000000000001 +2013,4,3,2,30,23.900000000000002,0.9500000000000001,0.11180000000000001,0.68,123,877,851,1,17.900000000000002,123,877,0,851,0.267,68.93,33.89,0.15,984,3.1,97,0.7000000000000001 +2013,4,3,3,30,23.700000000000003,0.93,0.126,0.68,125,841,767,0,17.8,125,841,0,767,0.267,69.45,40.26,0.15,983,3.2,99,0.9 +2013,4,3,4,30,23.400000000000002,0.99,0.13540000000000002,0.68,119,785,623,1,17.900000000000002,119,785,0,623,0.267,71.32000000000001,50.11,0.15,983,3.2,95,1.3 +2013,4,3,5,30,22.8,1.01,0.1211,0.68,97,707,432,8,18.2,262,293,0,400,0.268,75.21000000000001,61.78,0.15,983,3.3000000000000003,93,1.4000000000000001 +2013,4,3,6,30,21.6,1.01,0.1213,0.68,71,526,213,8,18.7,37,0,0,37,0.269,83.62,74.36,0.15,984,3.3000000000000003,95,1.2000000000000002 +2013,4,3,7,30,20.1,1,0.1221,0.68,20,103,25,8,18.900000000000002,7,0,3,7,0.27,92.73,87.25,0.15,985,3.2,101,0.9 +2013,4,3,8,30,19.200000000000003,0.97,0.11810000000000001,0.68,0,0,0,1,18.3,0,0,0,0,0.271,94.71000000000001,100.78,0.15,985,3.2,107,0.9 +2013,4,3,9,30,18.8,0.93,0.1212,0.68,0,0,0,1,18,0,0,0,0,0.272,95.10000000000001,114.09,0.15,986,3.2,114,0.8 +2013,4,3,10,30,18.400000000000002,0.9,0.11900000000000001,0.68,0,0,0,1,17.8,0,0,0,0,0.273,96.11,127.19,0.15,987,3.2,120,0.8 +2013,4,3,11,30,17.900000000000002,0.86,0.111,0.68,0,0,0,4,17.5,0,0,0,0,0.274,97.43,139.67000000000002,0.15,987,3.2,128,0.7000000000000001 +2013,4,3,12,30,17.5,0.8300000000000001,0.10540000000000001,0.68,0,0,0,1,17.2,0,0,0,0,0.274,98.07000000000001,150.62,0.15,987,3.2,136,0.7000000000000001 +2013,4,3,13,30,17.1,0.79,0.10360000000000001,0.68,0,0,0,8,16.900000000000002,0,0,0,0,0.275,99,157.5,0.15,987,3.1,143,0.7000000000000001 +2013,4,3,14,30,16.900000000000002,0.74,0.10450000000000001,0.68,0,0,0,8,16.8,0,0,0,0,0.275,99.12,156.42000000000002,0.15,987,3.1,146,0.7000000000000001 +2013,4,3,15,30,16.7,0.6900000000000001,0.10550000000000001,0.68,0,0,0,3,16.7,0,0,0,0,0.275,99.77,148.17000000000002,0.15,987,3.1,148,0.8 +2013,4,3,16,30,16.7,0.64,0.10740000000000001,0.68,0,0,0,1,16.6,0,0,0,0,0.275,99.31,136.71,0.15,987,3.1,149,0.8 +2013,4,3,17,30,16.6,0.5700000000000001,0.1075,0.68,0,0,0,0,16.6,0,0,0,0,0.275,99.71000000000001,124.02,0.15,988,3,151,0.9 +2013,4,3,18,30,16.5,0.49,0.1092,0.68,0,0,0,0,16.5,0,0,0,0,0.275,99.9,110.86,0.15,988,3,151,0.9 +2013,4,3,19,30,16.7,0.42,0.1129,0.68,0,0,0,3,16.400000000000002,0,0,0,0,0.274,98.10000000000001,97.55,0.15,989,3,151,1 +2013,4,3,20,30,17.5,0.36,0.1159,0.68,38,207,59,1,16.8,38,207,0,59,0.273,95.53,84.17,0.15,990,2.9000000000000004,150,1.5 +2013,4,3,21,30,18.7,0.36,0.1145,0.68,83,572,266,1,17.3,83,572,0,266,0.273,91.66,71.3,0.15,990,2.9000000000000004,146,2.1 +2013,4,3,22,30,19.8,0.37,0.1008,0.68,100,748,486,3,17.5,294,90,0,341,0.272,86.4,58.93,0.15,990,2.8000000000000003,140,2.4000000000000004 +2013,4,3,23,30,20.3,0.37,0.09140000000000001,0.68,108,835,671,1,17.3,108,835,0,671,0.271,83.11,47.660000000000004,0.15,990,2.8000000000000003,138,2.5 +2013,4,4,0,30,21.5,0.52,0.0814,0.68,109,885,801,1,17.1,109,885,0,801,0.27,76.27,38.56,0.16,990,2.9000000000000004,134,2.5 +2013,4,4,1,30,21.900000000000002,0.49,0.0873,0.68,116,895,862,1,17.1,116,895,0,862,0.269,74.06,33.480000000000004,0.16,989,2.9000000000000004,132,2.6 +2013,4,4,2,30,22,0.45,0.0926,0.68,118,885,850,1,17,118,885,0,850,0.268,73.42,34.28,0.16,989,3,131,2.7 +2013,4,4,3,30,21.900000000000002,0.43,0.11080000000000001,0.68,124,846,766,3,16.8,228,27,0,249,0.268,72.64,40.61,0.16,989,3,131,2.8000000000000003 +2013,4,4,4,30,21.5,0.4,0.11170000000000001,0.68,115,795,622,3,16.7,340,43,0,367,0.268,74.02,50.42,0.16,989,3,132,2.8000000000000003 +2013,4,4,5,30,20.8,0.37,0.1005,0.68,95,715,430,1,16.7,95,715,0,430,0.269,77.48,62.050000000000004,0.16,989,3,135,2.4000000000000004 +2013,4,4,6,30,19.700000000000003,0.38,0.09040000000000001,0.68,67,546,212,1,16.8,67,546,0,212,0.269,83.35000000000001,74.61,0.16,989,3,139,1.8 +2013,4,4,7,30,18.5,0.38,0.0884,0.68,19,94,23,1,16.7,19,94,0,23,0.27,89.35000000000001,87.48,0.16,990,2.9000000000000004,145,1.3 +2013,4,4,8,30,17.7,0.36,0.0916,0.68,0,0,0,1,16.3,0,0,0,0,0.27,91.73,101.02,0.16,990,2.8000000000000003,149,1.2000000000000002 +2013,4,4,9,30,17.3,0.32,0.0985,0.68,0,0,0,0,16.1,0,0,0,0,0.271,92.93,114.33,0.16,991,2.7,153,1.2000000000000002 +2013,4,4,10,30,17,0.28,0.11,0.68,0,0,0,1,16,0,0,0,0,0.27,94.12,127.44,0.16,991,2.7,156,1.2000000000000002 +2013,4,4,11,30,16.7,0.25,0.1252,0.68,0,0,0,1,16,0,0,0,0,0.269,95.79,139.96,0.16,991,2.6,158,1.2000000000000002 +2013,4,4,12,30,16.6,0.23,0.1378,0.68,0,0,0,3,16.1,0,0,0,0,0.268,96.72,150.95000000000002,0.16,991,2.6,157,1.2000000000000002 +2013,4,4,13,30,16.400000000000002,0.22,0.14300000000000002,0.68,0,0,0,3,16.1,0,0,0,0,0.267,98.06,157.89000000000001,0.16,991,2.6,156,1.3 +2013,4,4,14,30,16.2,0.21,0.14,0.68,0,0,0,3,16.1,0,0,0,0,0.267,99.07000000000001,156.75,0.16,991,2.5,153,1.3 +2013,4,4,15,30,16,0.22,0.1376,0.68,0,0,0,3,15.9,0,0,0,0,0.266,99.64,148.39000000000001,0.16,990,2.5,150,1.3 +2013,4,4,16,30,15.8,0.21,0.1345,0.68,0,0,0,1,15.8,0,0,0,0,0.265,100,136.86,0.16,990,2.4000000000000004,149,1.3 +2013,4,4,17,30,15.700000000000001,0.2,0.133,0.68,0,0,0,3,15.700000000000001,0,0,0,0,0.264,99.97,124.15,0.16,990,2.4000000000000004,150,1.3 +2013,4,4,18,30,15.5,0.22,0.1274,0.68,0,0,0,3,15.5,0,0,0,0,0.264,100,110.97,0.16,991,2.3000000000000003,148,1.2000000000000002 +2013,4,4,19,30,15.700000000000001,0.21,0.11720000000000001,0.68,0,0,0,3,15.4,0,0,0,0,0.264,98.3,97.66,0.16,991,2.3000000000000003,146,1.3 +2013,4,4,20,30,16.7,0.21,0.11220000000000001,0.68,39,203,59,3,15.8,28,0,3,28,0.263,94.37,84.28,0.16,992,2.3000000000000003,144,1.8 +2013,4,4,21,30,18.2,0.22,0.1078,0.68,83,586,270,3,16.6,135,35,0,146,0.264,90.61,71.43,0.16,993,2.2,138,2.4000000000000004 +2013,4,4,22,30,19.700000000000003,0.27,0.083,0.68,94,781,495,1,17.2,94,781,0,495,0.264,85.56,59.1,0.16,993,2.1,131,2.8000000000000003 +2013,4,4,23,30,20.400000000000002,0.33,0.067,0.68,97,875,684,1,17,97,875,0,684,0.264,80.81,47.88,0.16,993,2.1,128,3 +2013,4,5,0,30,21.8,0.4,0.0557,0.68,97,925,817,1,16.400000000000002,97,925,0,817,0.264,71.23,38.85,0.16,992,2.1,121,3.2 +2013,4,5,1,30,22.200000000000003,0.38,0.061200000000000004,0.68,103,934,879,1,15.9,103,934,0,879,0.264,67.63,33.84,0.16,992,2.1,120,3.2 +2013,4,5,2,30,22.400000000000002,0.38,0.0618,0.68,103,931,869,1,15.600000000000001,103,931,0,869,0.263,65.6,34.660000000000004,0.16,991,2.1,119,3.2 +2013,4,5,3,30,22.200000000000003,0.47000000000000003,0.1272,0.68,133,848,773,1,15.4,133,848,0,773,0.263,65.4,40.97,0.16,991,2.1,120,3.1 +2013,4,5,4,30,21.8,0.46,0.12000000000000001,0.68,119,804,628,3,15.200000000000001,361,61,0,400,0.262,66.19,50.74,0.16,991,2.1,121,2.8000000000000003 +2013,4,5,5,30,21,0.44,0.10400000000000001,0.68,97,729,435,1,15.100000000000001,97,729,0,435,0.261,68.92,62.33,0.16,991,2.1,123,2.3000000000000003 +2013,4,5,6,30,19.900000000000002,0.44,0.08700000000000001,0.68,67,567,215,3,15.200000000000001,101,26,3,108,0.261,74.47,74.86,0.16,991,2.1,126,1.7000000000000002 +2013,4,5,7,30,18.8,0.45,0.0796,0.68,18,105,22,3,15.3,9,0,3,9,0.261,79.99,87.71000000000001,0.16,991,2.1,128,1.3 +2013,4,5,8,30,18.2,0.44,0.07540000000000001,0.68,0,0,0,0,15,0,0,0,0,0.262,81.66,101.26,0.16,991,2.1,128,1.2000000000000002 +2013,4,5,9,30,17.7,0.42,0.0718,0.68,0,0,0,3,14.9,0,0,0,0,0.262,83.8,114.57000000000001,0.16,992,2.1,129,1.1 +2013,4,5,10,30,17,0.39,0.0684,0.68,0,0,0,4,15,0,0,0,0,0.263,87.73,127.69,0.16,992,2.1,132,0.9 +2013,4,5,11,30,16.400000000000002,0.36,0.0699,0.68,0,0,0,1,15,0,0,0,0,0.264,91.22,140.24,0.16,992,2.1,135,0.9 +2013,4,5,12,30,16,0.33,0.08,0.68,0,0,0,1,15.100000000000001,0,0,0,0,0.264,94.22,151.29,0.16,992,2.2,138,0.9 +2013,4,5,13,30,15.8,0.3,0.0952,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.264,95.95,158.28,0.16,991,2.2,138,0.9 +2013,4,5,14,30,15.8,0.3,0.1053,0.68,0,0,0,0,15.3,0,0,0,0,0.263,96.77,157.07,0.16,991,2.3000000000000003,138,0.9 +2013,4,5,15,30,15.9,0.28,0.11080000000000001,0.68,0,0,0,0,15.4,0,0,0,0,0.263,96.98,148.61,0.16,990,2.3000000000000003,141,0.9 +2013,4,5,16,30,15.8,0.27,0.11270000000000001,0.68,0,0,0,4,15.5,0,0,0,0,0.264,97.96000000000001,137.02,0.16,990,2.3000000000000003,144,0.9 +2013,4,5,17,30,15.8,0.28,0.1109,0.68,0,0,0,4,15.4,0,0,0,0,0.264,97.69,124.27,0.16,990,2.3000000000000003,143,0.9 +2013,4,5,18,30,15.700000000000001,0.32,0.10360000000000001,0.68,0,0,0,4,15.4,0,0,0,0,0.264,97.98,111.08,0.16,990,2.3000000000000003,140,0.9 +2013,4,5,19,30,15.700000000000001,0.36,0.0942,0.68,0,0,0,7,15.200000000000001,0,0,0,0,0.264,97.04,97.77,0.16,990,2.2,137,0.8 +2013,4,5,20,30,16.3,0.39,0.0863,0.68,35,258,60,7,15.3,26,0,3,26,0.264,93.94,84.4,0.16,991,2.2,136,1.1 +2013,4,5,21,30,17.5,0.38,0.0834,0.68,73,631,272,8,16,108,19,0,114,0.264,91.04,71.57000000000001,0.16,991,2.2,131,1.5 +2013,4,5,22,30,18.5,0.37,0.0839,0.68,93,776,490,8,16.5,282,73,0,319,0.263,88.4,59.27,0.16,991,2.3000000000000003,122,1.9000000000000001 +2013,4,5,23,30,19,0.37,0.08660000000000001,0.68,107,848,673,8,16.900000000000002,418,128,0,504,0.263,87.63,48.11,0.16,991,2.3000000000000003,118,1.9000000000000001 +2013,4,6,0,30,19.900000000000002,0.35000000000000003,0.12100000000000001,0.68,132,851,792,7,16.900000000000002,344,24,0,363,0.262,83.06,39.14,0.16,990,2.4000000000000004,116,2 +2013,4,6,1,30,20.400000000000002,0.34,0.1388,0.68,146,852,851,7,16.7,462,36,0,492,0.262,79.5,34.2,0.16,989,2.4000000000000004,117,2.1 +2013,4,6,2,30,20.700000000000003,0.31,0.1479,0.68,150,840,838,7,16.2,426,29,0,449,0.261,75.51,35.050000000000004,0.16,989,2.4000000000000004,118,2.1 +2013,4,6,3,30,20.5,0.27,0.1578,0.68,150,803,753,6,15.700000000000001,343,25,0,362,0.26,74.10000000000001,41.32,0.16,988,2.5,115,1.9000000000000001 +2013,4,6,4,30,20.1,0.27,0.16340000000000002,0.68,141,741,607,7,15.600000000000001,293,28,0,310,0.26,75.33,51.050000000000004,0.16,988,2.5,113,1.5 +2013,4,6,5,30,19.5,0.28,0.17020000000000002,0.68,123,628,412,7,15.9,202,31,0,216,0.26,79.67,62.61,0.16,988,2.5,116,1.1 +2013,4,6,6,30,18.6,0.28,0.1752,0.68,89,411,195,7,16.3,88,16,3,92,0.261,86.60000000000001,75.11,0.16,988,2.5,126,0.8 +2013,4,6,7,30,17.7,0.27,0.1768,0.68,15,15,16,7,16.2,9,0,3,9,0.262,90.78,87.93,0.16,989,2.5,136,0.7000000000000001 +2013,4,6,8,30,17.2,0.27,0.17370000000000002,0.68,0,0,0,8,15.700000000000001,0,0,0,0,0.263,90.67,101.49000000000001,0.16,989,2.5,142,0.7000000000000001 +2013,4,6,9,30,16.8,0.28,0.16110000000000002,0.68,0,0,0,7,15.4,0,0,0,0,0.263,91.39,114.81,0.16,990,2.5,147,0.7000000000000001 +2013,4,6,10,30,16.400000000000002,0.3,0.14550000000000002,0.68,0,0,0,6,15.100000000000001,0,0,0,0,0.264,91.99,127.94,0.16,990,2.5,151,0.7000000000000001 +2013,4,6,11,30,15.9,0.32,0.1307,0.68,0,0,0,6,14.9,0,0,0,0,0.264,93.49,140.52,0.16,990,2.5,154,0.7000000000000001 +2013,4,6,12,30,15.4,0.34,0.11900000000000001,0.68,0,0,0,7,14.600000000000001,0,0,0,0,0.264,95.02,151.62,0.16,989,2.5,156,0.7000000000000001 +2013,4,6,13,30,15,0.36,0.1129,0.68,0,0,0,8,14.4,0,0,0,0,0.264,96.32000000000001,158.66,0.16,989,2.5,156,0.7000000000000001 +2013,4,6,14,30,14.700000000000001,0.37,0.10880000000000001,0.68,0,0,0,1,14.200000000000001,0,0,0,0,0.265,97.06,157.4,0.16,988,2.5,159,0.7000000000000001 +2013,4,6,15,30,14.3,0.38,0.10300000000000001,0.68,0,0,0,1,14.100000000000001,0,0,0,0,0.265,98.68,148.83,0.16,988,2.5,162,0.7000000000000001 +2013,4,6,16,30,14,0.39,0.0974,0.68,0,0,0,8,13.9,0,0,0,0,0.266,99.58,137.17000000000002,0.16,987,2.5,165,0.7000000000000001 +2013,4,6,17,30,13.8,0.4,0.0942,0.68,0,0,0,7,13.8,0,0,0,0,0.267,100,124.39,0.16,988,2.5,168,0.7000000000000001 +2013,4,6,18,30,13.600000000000001,0.4,0.0942,0.68,0,0,0,8,13.600000000000001,0,0,0,0,0.267,100,111.18,0.16,988,2.6,169,0.7000000000000001 +2013,4,6,19,30,13.9,0.4,0.09390000000000001,0.68,0,0,0,8,13.600000000000001,0,0,0,0,0.267,98.05,97.87,0.16,989,2.6,174,0.7000000000000001 +2013,4,6,20,30,15.100000000000001,0.4,0.0906,0.68,35,240,57,8,13.9,22,0,3,22,0.267,92.81,84.51,0.16,990,2.6,178,0.9 +2013,4,6,21,30,17,0.4,0.0853,0.68,72,615,265,7,14.700000000000001,89,14,0,93,0.268,86.5,71.71000000000001,0.16,990,2.7,165,1.2000000000000002 +2013,4,6,22,30,18.8,0.41000000000000003,0.0796,0.68,90,772,482,8,15.5,207,26,0,221,0.268,81.11,59.44,0.16,990,2.7,143,1.4000000000000001 +2013,4,6,23,30,19.5,0.42,0.07590000000000001,0.68,100,850,665,4,16.1,406,94,0,469,0.269,80.49,48.33,0.16,990,2.7,135,1.5 +2013,4,7,0,30,20.700000000000003,0.42,0.0775,0.68,107,885,791,8,16.3,499,196,0,650,0.27,75.8,39.44,0.16,988,2.8000000000000003,126,1.6 +2013,4,7,1,30,21.1,0.44,0.0786,0.68,111,898,850,8,16.3,540,114,0,634,0.27,73.88,34.57,0.16,988,2.9000000000000004,122,1.7000000000000002 +2013,4,7,2,30,21.200000000000003,0.44,0.0816,0.68,112,892,839,3,16.3,531,109,0,621,0.27,73.5,35.43,0.16,987,2.9000000000000004,120,1.7000000000000002 +2013,4,7,3,30,21,0.47000000000000003,0.0876,0.68,110,864,755,8,16.3,446,60,0,491,0.269,74.37,41.67,0.16,987,3,117,1.7000000000000002 +2013,4,7,4,30,20.700000000000003,0.49,0.0918,0.68,103,812,610,8,16.3,205,24,0,221,0.269,76.06,51.36,0.16,987,3,115,1.6 +2013,4,7,5,30,20.1,0.49,0.08940000000000001,0.68,88,724,418,8,16.7,255,266,0,376,0.268,80.79,62.88,0.16,987,3,114,1.4000000000000001 +2013,4,7,6,30,19.1,0.49,0.0867,0.68,64,540,200,8,17.2,122,230,3,180,0.267,88.52,75.37,0.16,987,3,115,1 +2013,4,7,7,30,17.900000000000002,0.48,0.0829,0.68,15,73,17,7,17.1,15,73,5,17,0.267,95.18,88.15,0.16,988,3,119,0.7000000000000001 +2013,4,7,8,30,17.2,0.47000000000000003,0.07980000000000001,0.68,0,0,0,7,16.6,0,0,0,0,0.267,96.31,101.72,0.16,989,2.9000000000000004,123,0.7000000000000001 +2013,4,7,9,30,16.8,0.47000000000000003,0.07680000000000001,0.68,0,0,0,1,16.3,0,0,0,0,0.266,96.8,115.04,0.16,989,2.9000000000000004,128,0.7000000000000001 +2013,4,7,10,30,16.5,0.47000000000000003,0.07440000000000001,0.68,0,0,0,0,16.1,0,0,0,0,0.266,97.59,128.19,0.16,989,2.9000000000000004,135,0.7000000000000001 +2013,4,7,11,30,16.2,0.47000000000000003,0.0708,0.68,0,0,0,0,16,0,0,0,0,0.266,98.64,140.8,0.16,989,2.9000000000000004,141,0.7000000000000001 +2013,4,7,12,30,16,0.47000000000000003,0.0673,0.68,0,0,0,0,15.9,0,0,0,0,0.266,99.11,151.95000000000002,0.16,989,2.8000000000000003,146,0.7000000000000001 +2013,4,7,13,30,15.8,0.48,0.0656,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.266,99.63,159.04,0.16,989,2.8000000000000003,151,0.7000000000000001 +2013,4,7,14,30,15.600000000000001,0.49,0.0634,0.68,0,0,0,0,15.600000000000001,0,0,0,0,0.267,100,157.72,0.16,989,2.7,156,0.7000000000000001 +2013,4,7,15,30,15.4,0.51,0.062400000000000004,0.68,0,0,0,0,15.4,0,0,0,0,0.268,100,149.04,0.16,988,2.7,158,0.7000000000000001 +2013,4,7,16,30,15.200000000000001,0.52,0.061700000000000005,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.268,100,137.32,0.16,988,2.6,158,0.7000000000000001 +2013,4,7,17,30,15,0.52,0.0604,0.68,0,0,0,0,15,0,0,0,0,0.269,100,124.51,0.16,988,2.6,157,0.7000000000000001 +2013,4,7,18,30,14.9,0.53,0.059000000000000004,0.68,0,0,0,1,14.9,0,0,0,0,0.27,100,111.29,0.16,989,2.5,156,0.7000000000000001 +2013,4,7,19,30,15.100000000000001,0.54,0.057,0.68,0,0,0,1,15,0,0,0,0,0.27,99.10000000000001,97.98,0.16,990,2.5,155,0.8 +2013,4,7,20,30,16.3,0.54,0.054900000000000004,0.68,30,318,59,3,15.200000000000001,19,0,3,19,0.269,93.32000000000001,84.63,0.16,990,2.5,152,1.2000000000000002 +2013,4,7,21,30,18,0.54,0.0524,0.68,61,676,271,3,16,94,15,0,99,0.269,88.04,71.85000000000001,0.16,991,2.5,143,1.7000000000000002 +2013,4,7,22,30,19.700000000000003,0.55,0.046200000000000005,0.68,74,821,489,1,16.7,74,821,0,489,0.268,82.91,59.620000000000005,0.16,991,2.5,131,2 +2013,4,7,23,30,20.400000000000002,0.59,0.0391,0.68,80,896,673,1,16.900000000000002,80,896,0,673,0.268,80.46000000000001,48.56,0.16,990,2.5,126,2.1 +2013,4,8,0,30,21.6,0.4,0.077,0.68,107,887,790,1,16.900000000000002,107,887,0,790,0.267,74.69,39.730000000000004,0.16,990,2.6,119,2.2 +2013,4,8,1,30,22,0.43,0.0711,0.68,107,907,850,3,16.900000000000002,538,121,0,637,0.266,73.01,34.93,0.16,989,2.7,116,2.2 +2013,4,8,2,30,22.1,0.44,0.06860000000000001,0.68,105,907,840,1,16.900000000000002,105,907,0,840,0.265,72.53,35.81,0.16,989,2.7,113,2.2 +2013,4,8,3,30,22,0.47000000000000003,0.08020000000000001,0.68,106,873,755,3,16.8,209,27,0,229,0.265,72.52,42.02,0.16,988,2.8000000000000003,110,2.2 +2013,4,8,4,30,21.6,0.5,0.0782,0.68,97,829,611,3,16.7,381,215,0,514,0.266,73.72,51.67,0.16,988,2.8000000000000003,108,2.2 +2013,4,8,5,30,21,0.51,0.07150000000000001,0.68,81,749,419,1,16.6,81,749,0,419,0.267,76.02,63.160000000000004,0.16,988,2.8000000000000003,107,1.9000000000000001 +2013,4,8,6,30,19.8,0.55,0.0664,0.68,58,577,201,1,16.8,58,577,0,201,0.268,83.02,75.62,0.16,989,2.7,107,1.3 +2013,4,8,7,30,18.5,0.59,0.063,0.68,14,96,16,1,16.900000000000002,14,96,0,16,0.27,90.32000000000001,88.37,0.16,989,2.7,108,0.9 +2013,4,8,8,30,17.8,0.6,0.0585,0.68,0,0,0,1,16.400000000000002,0,0,0,0,0.272,91.61,101.95,0.16,990,2.6,111,0.8 +2013,4,8,9,30,17.3,0.62,0.055900000000000005,0.68,0,0,0,0,16.1,0,0,0,0,0.272,92.79,115.27,0.16,990,2.5,116,0.8 +2013,4,8,10,30,17,0.64,0.0543,0.68,0,0,0,0,15.9,0,0,0,0,0.273,93.2,128.43,0.16,991,2.5,124,0.7000000000000001 +2013,4,8,11,30,16.6,0.64,0.0522,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.272,94.4,141.07,0.16,991,2.5,131,0.7000000000000001 +2013,4,8,12,30,16.3,0.64,0.0517,0.68,0,0,0,0,15.5,0,0,0,0,0.271,95.27,152.28,0.16,991,2.4000000000000004,137,0.7000000000000001 +2013,4,8,13,30,16,0.65,0.0519,0.68,0,0,0,0,15.4,0,0,0,0,0.271,96.22,159.42000000000002,0.16,990,2.4000000000000004,142,0.7000000000000001 +2013,4,8,14,30,15.700000000000001,0.66,0.0514,0.68,0,0,0,0,15.3,0,0,1,0,0.27,97.33,158.03,0.16,990,2.4000000000000004,145,0.7000000000000001 +2013,4,8,15,30,15.4,0.67,0.0511,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.27,98.38,149.25,0.16,989,2.4000000000000004,147,0.7000000000000001 +2013,4,8,16,30,15.200000000000001,0.6900000000000001,0.0512,0.68,0,0,0,1,15.100000000000001,0,0,0,0,0.27,99.09,137.47,0.16,989,2.4000000000000004,150,0.7000000000000001 +2013,4,8,17,30,15.100000000000001,0.71,0.0517,0.68,0,0,0,1,15,0,0,0,0,0.271,99.24000000000001,124.62,0.16,989,2.4000000000000004,152,0.7000000000000001 +2013,4,8,18,30,15,0.74,0.0531,0.68,0,0,0,1,14.9,0,0,0,0,0.271,99.43,111.4,0.16,989,2.4000000000000004,152,0.7000000000000001 +2013,4,8,19,30,15.3,0.79,0.056,0.68,0,0,0,1,14.9,0,0,0,0,0.271,97.38,98.09,0.16,990,2.4000000000000004,153,0.7000000000000001 +2013,4,8,20,30,16.3,0.8300000000000001,0.058300000000000005,0.68,29,319,58,1,15.100000000000001,29,319,0,58,0.272,92.78,84.74,0.16,990,2.5,152,1.1 +2013,4,8,21,30,17.8,0.86,0.0582,0.68,61,670,268,1,15.700000000000001,61,670,0,268,0.273,87.36,71.99,0.16,991,2.5,147,1.5 +2013,4,8,22,30,19.400000000000002,0.89,0.0558,0.68,76,811,485,1,16.2,76,811,0,485,0.274,82.01,59.79,0.16,991,2.5,137,1.8 +2013,4,8,23,30,20.200000000000003,0.9400000000000001,0.0507,0.68,84,885,667,8,16.6,414,157,0,518,0.275,79.76,48.78,0.16,991,2.5,131,1.9000000000000001 +2013,4,9,0,30,21.5,0.77,0.0718,0.68,101,896,787,1,16.6,101,896,0,787,0.276,73.68,40.03,0.15,990,2.6,121,2 +2013,4,9,1,30,22,0.78,0.07390000000000001,0.68,105,907,845,1,16.6,105,907,0,845,0.276,71.35000000000001,35.29,0.15,989,2.7,118,2.1 +2013,4,9,2,30,22,0.79,0.0792,0.68,107,898,831,1,16.6,107,898,0,831,0.275,71.38,36.19,0.15,988,2.8000000000000003,115,2.1 +2013,4,9,3,30,21.700000000000003,0.85,0.08170000000000001,0.68,103,875,750,1,16.5,103,875,0,750,0.274,72.14,42.37,0.15,988,2.8000000000000003,114,2 +2013,4,9,4,30,21.200000000000003,0.88,0.0847,0.68,96,826,605,3,16.3,214,24,0,229,0.272,73.62,51.97,0.15,987,2.8000000000000003,114,1.9000000000000001 +2013,4,9,5,30,20.5,0.9,0.07830000000000001,0.68,80,744,413,4,16.5,252,121,0,305,0.271,77.77,63.43,0.15,987,2.8000000000000003,113,1.6 +2013,4,9,6,30,19.400000000000002,0.91,0.0738,0.68,57,568,196,4,16.900000000000002,113,81,3,133,0.27,85.49,75.86,0.15,988,2.8000000000000003,114,1.1 +2013,4,9,7,30,18.1,0.91,0.06810000000000001,0.68,12,93,15,4,17,6,0,3,6,0.27,93.41,88.58,0.15,988,2.8000000000000003,118,0.7000000000000001 +2013,4,9,8,30,17.3,0.9,0.0635,0.68,0,0,0,8,16.5,0,0,0,0,0.271,95.04,102.18,0.15,988,2.8000000000000003,124,0.7000000000000001 +2013,4,9,9,30,16.8,0.88,0.061000000000000006,0.68,0,0,0,8,16.3,0,0,0,0,0.272,96.67,115.5,0.15,989,2.8000000000000003,133,0.7000000000000001 +2013,4,9,10,30,16.400000000000002,0.85,0.062,0.68,0,0,0,8,16.1,0,0,0,0,0.272,98.16,128.67000000000002,0.15,989,2.8000000000000003,143,0.7000000000000001 +2013,4,9,11,30,16.1,0.81,0.06520000000000001,0.68,0,0,0,8,16,0,0,0,0,0.273,99.31,141.34,0.15,989,2.7,148,0.7000000000000001 +2013,4,9,12,30,15.9,0.78,0.06860000000000001,0.68,0,0,0,8,15.9,0,0,0,0,0.274,99.72,152.6,0.15,989,2.8000000000000003,151,0.7000000000000001 +2013,4,9,13,30,15.8,0.77,0.0726,0.68,0,0,0,4,15.700000000000001,0,0,0,0,0.274,99.58,159.8,0.15,988,2.8000000000000003,154,0.7000000000000001 +2013,4,9,14,30,15.600000000000001,0.76,0.0765,0.68,0,0,0,4,15.600000000000001,0,0,1,0,0.275,100,158.34,0.15,988,2.8000000000000003,157,0.7000000000000001 +2013,4,9,15,30,15.4,0.75,0.07930000000000001,0.68,0,0,0,1,15.4,0,0,0,0,0.275,100,149.45000000000002,0.15,987,2.8000000000000003,157,0.7000000000000001 +2013,4,9,16,30,15.200000000000001,0.71,0.0767,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.275,100,137.61,0.15,987,2.8000000000000003,156,0.7000000000000001 +2013,4,9,17,30,15,0.68,0.07400000000000001,0.68,0,0,0,1,15,0,0,0,0,0.275,100,124.74000000000001,0.15,987,2.8000000000000003,154,0.7000000000000001 +2013,4,9,18,30,15,0.66,0.07390000000000001,0.68,0,0,0,3,15,0,0,0,0,0.274,100,111.5,0.15,988,2.8000000000000003,152,0.7000000000000001 +2013,4,9,19,30,15.200000000000001,0.64,0.07390000000000001,0.68,0,0,0,3,15.200000000000001,0,0,0,0,0.273,99.97,98.19,0.15,988,2.8000000000000003,151,0.9 +2013,4,9,20,30,16.3,0.61,0.07300000000000001,0.68,30,267,54,8,15.5,27,0,3,27,0.273,95.22,84.86,0.15,989,2.8000000000000003,148,1.3 +2013,4,9,21,30,17.6,0.62,0.0766,0.68,67,624,258,3,16.400000000000002,135,43,0,148,0.272,92.49,72.13,0.15,989,2.9000000000000004,136,1.8 +2013,4,9,22,30,18.900000000000002,0.6900000000000001,0.0659,0.68,81,785,474,1,17,81,785,0,474,0.271,88.87,59.97,0.15,989,2.9000000000000004,125,2.1 +2013,4,9,23,30,19.5,0.74,0.054400000000000004,0.68,86,869,656,3,17.2,409,128,0,493,0.271,86.47,49.01,0.15,989,2.9000000000000004,122,2.3000000000000003 +2013,4,10,0,30,20.6,0.8300000000000001,0.0456,0.68,86,914,783,3,17,406,33,0,432,0.268,79.63,40.32,0.15,988,2.9000000000000004,119,2.5 +2013,4,10,1,30,20.900000000000002,0.77,0.053000000000000005,0.68,93,919,840,8,16.7,497,61,0,547,0.266,76.92,35.64,0.15,987,3,116,2.6 +2013,4,10,2,30,20.900000000000002,0.68,0.060200000000000004,0.68,97,909,827,8,16.5,491,62,0,541,0.264,75.71000000000001,36.56,0.15,987,3,112,2.6 +2013,4,10,3,30,20.5,0.52,0.1073,0.68,118,840,735,7,16.1,333,25,0,351,0.263,76.05,42.72,0.15,986,3,110,2.5 +2013,4,10,4,30,20.1,0.53,0.097,0.68,104,802,595,8,16.1,338,53,0,370,0.264,77.74,52.28,0.15,986,2.9000000000000004,113,2.4000000000000004 +2013,4,10,5,30,19.8,0.52,0.0819,0.68,84,729,406,4,16.3,181,27,0,192,0.265,80.13,63.7,0.15,986,2.8000000000000003,114,2.1 +2013,4,10,6,30,18.8,0.5,0.0799,0.68,60,538,189,8,16.3,89,23,3,95,0.264,85.36,76.11,0.15,987,2.8000000000000003,116,1.5 +2013,4,10,7,30,17.8,0.5,0.0796,0.68,12,47,13,4,16.2,3,0,3,3,0.264,90.54,88.79,0.15,987,2.8000000000000003,119,1 +2013,4,10,8,30,17.5,0.5,0.0767,0.68,0,0,0,4,16.1,0,0,0,0,0.264,91.41,102.4,0.15,988,2.7,122,0.9 +2013,4,10,9,30,17.3,0.53,0.0718,0.68,0,0,0,4,16,0,0,0,0,0.264,91.93,115.72,0.15,988,2.7,125,0.9 +2013,4,10,10,30,17.1,0.54,0.0669,0.68,0,0,0,8,15.8,0,0,0,0,0.265,92.33,128.91,0.15,988,2.7,129,0.9 +2013,4,10,11,30,17,0.55,0.061900000000000004,0.68,0,0,0,8,15.8,0,0,0,0,0.264,92.38,141.61,0.15,989,2.7,131,0.9 +2013,4,10,12,30,16.900000000000002,0.56,0.059000000000000004,0.68,0,0,0,1,15.600000000000001,0,0,0,0,0.263,92.15,152.92000000000002,0.15,988,2.7,130,0.9 +2013,4,10,13,30,16.8,0.5700000000000001,0.058600000000000006,0.68,0,0,0,1,15.5,0,0,0,0,0.263,92.19,160.18,0.15,988,2.7,132,0.8 +2013,4,10,14,30,16.7,0.5700000000000001,0.055900000000000005,0.68,0,0,0,1,15.4,0,0,1,0,0.263,92.13,158.65,0.15,988,2.7,135,0.9 +2013,4,10,15,30,16.6,0.6,0.054700000000000006,0.68,0,0,0,3,15.3,0,0,0,0,0.264,91.96000000000001,149.66,0.15,987,2.7,138,0.9 +2013,4,10,16,30,16.5,0.6,0.0509,0.68,0,0,0,3,15.200000000000001,0,0,0,0,0.264,91.9,137.75,0.15,987,2.6,137,0.9 +2013,4,10,17,30,16.3,0.6,0.0478,0.68,0,0,0,4,15.100000000000001,0,0,0,0,0.265,92.38,124.85000000000001,0.15,987,2.5,135,0.9 +2013,4,10,18,30,16,0.6,0.0463,0.68,0,0,0,3,14.8,0,0,0,0,0.265,92.69,111.61,0.15,987,2.4000000000000004,137,0.9 +2013,4,10,19,30,16.2,0.6,0.0468,0.68,0,0,0,4,14.700000000000001,0,0,0,0,0.265,90.82000000000001,98.3,0.15,987,2.4000000000000004,142,1 +2013,4,10,20,30,17,0.6,0.048600000000000004,0.68,28,321,56,3,15,32,20,3,33,0.265,88.13,84.98,0.15,988,2.4000000000000004,145,1.5 +2013,4,10,21,30,18.3,0.62,0.050100000000000006,0.68,59,676,265,1,15.600000000000001,59,676,0,265,0.264,84.02,72.27,0.15,989,2.4000000000000004,143,1.9000000000000001 +2013,4,10,22,30,19.5,0.64,0.0472,0.68,73,818,481,1,16.1,73,818,0,481,0.263,80.52,60.14,0.15,989,2.4000000000000004,135,2.2 +2013,4,10,23,30,20.1,0.66,0.0424,0.68,80,891,662,1,16.400000000000002,80,891,0,662,0.262,79.25,49.24,0.15,989,2.4000000000000004,130,2.4000000000000004 +2013,4,11,0,30,21.3,0.61,0.0726,0.68,102,895,781,3,16.400000000000002,488,200,0,639,0.261,73.62,40.62,0.15,988,2.4000000000000004,121,2.8000000000000003 +2013,4,11,1,30,21.8,0.65,0.06520000000000001,0.68,101,916,841,3,16.3,520,95,0,597,0.259,71.05,36,0.15,987,2.5,119,3 +2013,4,11,2,30,22,0.68,0.0645,0.68,99,914,830,1,16.3,99,914,0,830,0.258,70.11,36.94,0.15,987,2.5,117,3 +2013,4,11,3,30,21.8,0.73,0.065,0.68,96,893,748,1,16.3,96,893,0,748,0.257,70.76,43.06,0.15,987,2.5,116,3 +2013,4,11,4,30,21.200000000000003,0.76,0.06470000000000001,0.68,88,848,603,8,16.2,157,25,0,172,0.256,73.25,52.58,0.15,987,2.5,116,2.8000000000000003 +2013,4,11,5,30,20.400000000000002,0.77,0.0596,0.68,73,768,410,7,16.3,191,31,0,205,0.255,77.33,63.97,0.15,987,2.5,115,2.3000000000000003 +2013,4,11,6,30,19.200000000000003,0.76,0.0587,0.68,53,584,191,8,16.5,79,15,3,83,0.254,84.60000000000001,76.35000000000001,0.15,988,2.6,116,1.6 +2013,4,11,7,30,18.400000000000002,0.71,0.061000000000000006,0.68,0,0,0,7,16.5,0,0,3,0,0.255,88.59,89,0.15,988,2.6,120,1.2000000000000002 +2013,4,11,8,30,18,0.65,0.0621,0.68,0,0,0,8,16.400000000000002,0,0,0,0,0.255,90.22,102.62,0.15,989,2.5,123,1.2000000000000002 +2013,4,11,9,30,17.900000000000002,0.6,0.06570000000000001,0.68,0,0,0,8,16.3,0,0,0,0,0.256,90.35000000000001,115.94,0.15,989,2.6,123,1.3 +2013,4,11,10,30,17.8,0.55,0.0674,0.68,0,0,0,4,16.2,0,0,0,0,0.256,90.51,129.14000000000001,0.15,989,2.6,119,1.3 +2013,4,11,11,30,17.7,0.51,0.0689,0.68,0,0,0,8,16.2,0,0,0,0,0.257,90.86,141.87,0.15,989,2.6,117,1.3 +2013,4,11,12,30,17.6,0.47000000000000003,0.0729,0.68,0,0,0,8,16.2,0,0,0,0,0.257,91.24,153.24,0.15,989,2.6,117,1.2000000000000002 +2013,4,11,13,30,17.5,0.42,0.0717,0.68,0,0,0,7,16.1,0,0,0,0,0.257,91.72,160.55,0.15,989,2.6,119,1.3 +2013,4,11,14,30,17.400000000000002,0.44,0.06770000000000001,0.68,0,0,0,7,16,0,0,1,0,0.257,91.56,158.96,0.15,988,2.6,121,1.2000000000000002 +2013,4,11,15,30,17.3,0.5,0.0712,0.68,0,0,0,8,15.9,0,0,0,0,0.256,91.7,149.85,0.15,988,2.6,122,1.2000000000000002 +2013,4,11,16,30,17.2,0.52,0.0688,0.68,0,0,0,7,15.9,0,0,0,0,0.256,91.81,137.89000000000001,0.15,987,2.6,123,1.2000000000000002 +2013,4,11,17,30,17.2,0.51,0.064,0.68,0,0,0,7,15.8,0,0,0,0,0.257,91.36,124.97,0.15,987,2.6,124,1.2000000000000002 +2013,4,11,18,30,17.2,0.53,0.06280000000000001,0.68,0,0,0,7,15.700000000000001,0,0,0,0,0.257,91.17,111.71000000000001,0.15,987,2.7,125,1.2000000000000002 +2013,4,11,19,30,17.3,0.55,0.0625,0.68,0,0,0,7,15.700000000000001,0,0,0,0,0.258,90.61,98.41,0.15,988,2.7,125,1.3 +2013,4,11,20,30,17.8,0.56,0.0627,0.68,29,276,52,6,15.9,11,0,3,11,0.259,88.55,85.09,0.15,988,2.7,124,1.5 +2013,4,11,21,30,18.5,0.5700000000000001,0.0655,0.68,63,638,256,6,16.400000000000002,39,0,0,39,0.26,87.38,72.41,0.15,988,2.8000000000000003,125,2 +2013,4,11,22,30,19.3,0.55,0.0609,0.68,79,788,469,7,16.900000000000002,147,22,0,158,0.261,85.76,60.32,0.15,989,2.8000000000000003,125,2.3000000000000003 +2013,4,11,23,30,19.700000000000003,0.55,0.056,0.68,87,865,649,8,17.3,284,25,0,301,0.261,86.05,49.46,0.15,988,2.8000000000000003,125,2.4000000000000004 +2013,4,12,0,30,20.5,0.52,0.0651,0.68,98,889,770,8,17.5,210,27,0,231,0.261,82.9,40.910000000000004,0.15,988,2.9000000000000004,122,2.6 +2013,4,12,1,30,20.6,0.52,0.0627,0.68,100,907,830,3,17.5,166,28,0,189,0.26,82.32000000000001,36.35,0.15,987,2.9000000000000004,121,2.5 +2013,4,12,2,30,20.5,0.49,0.0644,0.68,100,902,817,4,17.5,391,26,0,412,0.259,83.12,37.31,0.15,987,2.9000000000000004,119,2.3000000000000003 +2013,4,12,3,30,20.5,0.39,0.08950000000000001,0.68,110,851,728,3,17.7,468,155,0,581,0.26,84.06,43.4,0.15,987,3,120,2.3000000000000003 +2013,4,12,4,30,20.6,0.41000000000000003,0.07970000000000001,0.68,96,814,588,4,17.8,104,22,0,117,0.26,83.82000000000001,52.88,0.15,986,2.9000000000000004,125,2.4000000000000004 +2013,4,12,5,30,20.3,0.43,0.0663,0.68,77,740,399,3,17.8,215,50,0,236,0.261,85.41,64.24,0.15,986,2.9000000000000004,129,2.3000000000000003 +2013,4,12,6,30,19.400000000000002,0.44,0.0621,0.68,54,557,184,4,17.7,88,26,3,94,0.261,89.76,76.59,0.15,986,2.8000000000000003,131,1.8 +2013,4,12,7,30,18.400000000000002,0.44,0.0646,0.68,0,0,0,8,17.2,0,0,3,0,0.261,92.64,89.2,0.15,986,2.8000000000000003,132,1.4000000000000001 +2013,4,12,8,30,18,0.42,0.0695,0.68,0,0,0,8,16.900000000000002,0,0,0,0,0.261,93.37,102.84,0.15,987,2.9000000000000004,132,1.3 +2013,4,12,9,30,17.900000000000002,0.39,0.0719,0.68,0,0,0,7,16.8,0,0,0,0,0.261,93.53,116.16,0.15,987,2.9000000000000004,132,1.3 +2013,4,12,10,30,17.8,0.35000000000000003,0.0745,0.68,0,0,0,8,16.900000000000002,0,0,0,0,0.261,94.28,129.37,0.15,987,3.1,134,1.2000000000000002 +2013,4,12,11,30,17.7,0.31,0.0816,0.68,0,0,0,3,17,0,0,0,0,0.26,95.89,142.12,0.15,987,3.3000000000000003,137,1.3 +2013,4,12,12,30,17.7,0.29,0.09330000000000001,0.68,0,0,0,1,17.2,0,0,0,0,0.26,97.03,153.55,0.15,986,3.6,140,1.4000000000000001 +2013,4,12,13,30,17.7,0.26,0.10940000000000001,0.68,0,0,0,8,17.400000000000002,0,0,0,0,0.26,98.03,160.92000000000002,0.15,985,3.8000000000000003,144,1.5 +2013,4,12,14,30,17.7,0.23,0.1348,0.68,0,0,0,8,17.5,0,0,1,0,0.26,98.98,159.26,0.15,984,4,148,1.5 +2013,4,12,15,30,17.7,0.26,0.1645,0.68,0,0,0,8,17.7,0,0,0,0,0.261,100,150.05,0.15,983,4.1000000000000005,151,1.4000000000000001 +2013,4,12,16,30,17.8,0.23,0.17470000000000002,0.68,0,0,0,8,17.8,0,0,0,0,0.261,100,138.03,0.15,983,4.1000000000000005,150,1.4000000000000001 +2013,4,12,17,30,17.900000000000002,0.2,0.1764,0.68,0,0,0,4,17.900000000000002,0,0,0,0,0.262,100,125.08,0.15,983,4.2,146,1.5 +2013,4,12,18,30,18,0.24,0.1836,0.68,0,0,0,8,18,0,0,0,0,0.263,100,111.81,0.15,983,4.2,143,1.6 +2013,4,12,19,30,18.2,0.22,0.1753,0.68,0,0,0,8,18.2,0,0,0,0,0.263,100,98.51,0.15,983,4.2,140,1.6 +2013,4,12,20,30,18.7,0.18,0.1656,0.68,34,89,42,8,18.5,9,0,3,9,0.263,98.91,85.21000000000001,0.15,983,4.1000000000000005,139,1.9000000000000001 +2013,4,12,21,30,19.3,0.23,0.16340000000000002,0.68,93,457,230,8,19.1,28,0,0,28,0.264,98.71000000000001,72.55,0.15,983,4.1000000000000005,140,2.3000000000000003 +2013,4,12,22,30,20,0.23,0.1364,0.68,112,663,438,8,19.6,191,24,0,203,0.264,97.34,60.5,0.15,983,4.1000000000000005,138,2.6 +2013,4,12,23,30,20.3,0.23,0.1197,0.68,119,767,616,8,19.700000000000003,153,26,0,170,0.264,96.55,49.69,0.15,983,4.1000000000000005,137,2.8000000000000003 +2013,4,13,0,30,21.1,0.22,0.1496,0.68,143,782,731,7,19.6,200,28,0,221,0.263,90.99,41.2,0.15,983,4.1000000000000005,136,3 +2013,4,13,1,30,21.5,0.22,0.1617,0.68,153,790,787,8,19.3,331,23,0,349,0.263,87.49,36.71,0.15,982,4.1000000000000005,138,3 +2013,4,13,2,30,21.6,0.21,0.1542,0.68,149,793,776,8,19.1,296,24,0,315,0.262,85.96000000000001,37.67,0.15,981,4.1000000000000005,141,3 +2013,4,13,3,30,21.3,0.23,0.1487,0.68,140,771,697,4,19,266,24,0,284,0.264,86.76,43.74,0.15,981,4.1000000000000005,142,2.9000000000000004 +2013,4,13,4,30,20.700000000000003,0.24,0.1432,0.68,126,721,558,4,18.900000000000002,114,23,0,128,0.265,89.58,53.18,0.15,980,4,144,2.6 +2013,4,13,5,30,20,0.23,0.1328,0.68,103,624,372,8,19,188,32,0,202,0.267,93.74,64.5,0.15,980,4,149,2.2 +2013,4,13,6,30,19.200000000000003,0.29,0.1227,0.68,69,424,165,8,18.900000000000002,77,15,3,81,0.27,98.06,76.83,0.15,981,3.9000000000000004,156,1.9000000000000001 +2013,4,13,7,30,18.5,0.3,0.1106,0.68,0,0,0,4,18.5,0,0,3,0,0.273,100,89.4,0.15,981,3.9000000000000004,165,1.5 +2013,4,13,8,30,18,0.3,0.09970000000000001,0.68,0,0,0,3,18,0,0,0,0,0.276,100,103.06,0.15,981,3.8000000000000003,174,1.4000000000000001 +2013,4,13,9,30,17.7,0.37,0.0956,0.68,0,0,0,4,17.7,0,0,0,0,0.277,100,116.38,0.15,982,3.8000000000000003,179,1.3 +2013,4,13,10,30,17.400000000000002,0.38,0.08560000000000001,0.68,0,0,0,8,17.400000000000002,0,0,0,0,0.277,100,129.6,0.15,982,3.7,181,1.1 +2013,4,13,11,30,17,0.38,0.0763,0.68,0,0,0,4,17,0,0,0,0,0.278,100,142.38,0.15,982,3.6,180,0.9 +2013,4,13,12,30,16.6,0.43,0.0738,0.68,0,0,0,3,16.6,0,0,0,0,0.278,100,153.86,0.15,982,3.4000000000000004,179,0.7000000000000001 +2013,4,13,13,30,16.3,0.41000000000000003,0.0718,0.68,0,0,0,4,16.3,0,0,0,0,0.278,100,161.29,0.15,981,3.3000000000000003,186,0.7000000000000001 +2013,4,13,14,30,16.1,0.38,0.07350000000000001,0.68,0,0,0,4,16.1,0,0,1,0,0.277,100,159.56,0.15,981,3.1,191,0.8 +2013,4,13,15,30,16.1,0.43,0.0779,0.68,0,0,0,0,16.1,0,0,0,0,0.276,100,150.24,0.15,981,3,187,0.8 +2013,4,13,16,30,15.9,0.45,0.0695,0.68,0,0,0,1,15.9,0,0,0,0,0.275,100,138.16,0.15,980,2.8000000000000003,187,0.8 +2013,4,13,17,30,15.700000000000001,0.45,0.058300000000000005,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.274,100,125.19,0.15,980,2.7,195,0.8 +2013,4,13,18,30,15.4,0.51,0.051000000000000004,0.68,0,0,0,0,15.4,0,0,0,0,0.274,100,111.92,0.15,981,2.5,202,0.8 +2013,4,13,19,30,15.3,0.5700000000000001,0.0436,0.68,0,0,0,1,15.3,0,0,0,0,0.273,100,98.62,0.15,981,2.4000000000000004,204,0.9 +2013,4,13,20,30,16.3,0.62,0.0363,0.68,25,339,52,1,15.5,25,339,0,52,0.272,95.19,85.33,0.15,981,2.3000000000000003,206,1.1 +2013,4,13,21,30,18.1,0.68,0.032100000000000004,0.68,52,708,262,1,16.3,52,708,0,262,0.271,89.09,72.69,0.15,982,2.2,199,1.4000000000000001 +2013,4,13,22,30,20,0.75,0.030600000000000002,0.68,64,842,477,1,16.8,64,842,0,477,0.27,81.96000000000001,60.67,0.15,982,2.2,186,1.5 +2013,4,13,23,30,20.900000000000002,0.8200000000000001,0.029500000000000002,0.68,72,908,656,1,16.5,72,908,0,656,0.27,76.16,49.92,0.15,982,2.2,181,1.5 +2013,4,14,0,30,22.900000000000002,0.71,0.0395,0.68,83,930,779,0,16.1,83,930,0,779,0.267,65.37,41.5,0.15,981,2.2,179,1.2000000000000002 +2013,4,14,1,30,23.700000000000003,0.73,0.0395,0.68,85,944,838,0,15.9,85,944,0,838,0.265,61.660000000000004,37.06,0.15,980,2.2,173,0.9 +2013,4,14,2,30,24.1,0.75,0.041,0.68,85,937,823,8,15.9,507,99,0,584,0.264,60.300000000000004,38.04,0.15,979,2.3000000000000003,168,0.8 +2013,4,14,3,30,23.900000000000002,0.76,0.0442,0.68,84,914,740,8,15.9,462,137,0,560,0.264,61.01,44.08,0.15,979,2.3000000000000003,156,0.6000000000000001 +2013,4,14,4,30,23.5,0.77,0.047900000000000005,0.68,79,864,593,8,16.3,365,133,0,444,0.263,63.910000000000004,53.480000000000004,0.15,978,2.4000000000000004,125,0.5 +2013,4,14,5,30,23,0.78,0.0519,0.68,69,770,397,8,16.7,159,24,0,169,0.263,67.83,64.77,0.15,978,2.5,86,0.5 +2013,4,14,6,30,21.700000000000003,0.79,0.055400000000000005,0.68,50,574,179,7,17,65,7,3,66,0.263,74.67,77.07000000000001,0.15,979,2.6,65,0.6000000000000001 +2013,4,14,7,30,20.1,0.81,0.0596,0.68,0,0,0,8,17.7,0,0,3,0,0.263,85.96000000000001,89.59,0.15,979,2.6,58,0.6000000000000001 +2013,4,14,8,30,19.200000000000003,0.8300000000000001,0.061700000000000005,0.68,0,0,0,3,17,0,0,0,0,0.264,87.29,103.27,0.15,980,2.7,55,0.6000000000000001 +2013,4,14,9,30,18.7,0.8300000000000001,0.0627,0.68,0,0,0,8,16.8,0,0,0,0,0.264,88.95,116.59,0.15,980,2.7,51,0.6000000000000001 +2013,4,14,10,30,18.3,0.8200000000000001,0.0645,0.68,0,0,0,8,16.900000000000002,0,0,0,0,0.264,91.39,129.82,0.15,981,2.8000000000000003,46,0.6000000000000001 +2013,4,14,11,30,18.1,0.81,0.06720000000000001,0.68,0,0,0,1,16.8,0,0,0,0,0.264,91.96000000000001,142.63,0.15,981,2.8000000000000003,38,0.5 +2013,4,14,12,30,17.900000000000002,0.8,0.0693,0.68,0,0,0,0,16.6,0,0,0,0,0.264,92.33,154.16,0.15,981,2.8000000000000003,26,0.5 +2013,4,14,13,30,17.7,0.8,0.0703,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.264,92.35000000000001,161.65,0.15,981,2.8000000000000003,12,0.5 +2013,4,14,14,30,17.400000000000002,0.8,0.0722,0.68,0,0,0,0,16.3,0,0,1,0,0.264,93.46000000000001,159.85,0.15,981,2.8000000000000003,170,0.4 +2013,4,14,15,30,17.1,0.8,0.075,0.68,0,0,0,8,16.2,0,0,0,0,0.264,94.65,150.43,0.15,980,2.8000000000000003,326,0.5 +2013,4,14,16,30,16.8,0.81,0.0776,0.68,0,0,0,1,16.2,0,0,0,0,0.265,96.2,138.3,0.15,980,2.8000000000000003,311,0.5 +2013,4,14,17,30,16.5,0.8300000000000001,0.0779,0.68,0,0,0,1,16.1,0,0,0,0,0.266,97.71000000000001,125.3,0.15,980,2.8000000000000003,300,0.5 +2013,4,14,18,30,16.2,0.86,0.0765,0.68,0,0,0,8,16.1,0,0,0,0,0.267,99.09,112.02,0.15,980,2.8000000000000003,291,0.5 +2013,4,14,19,30,16.1,0.88,0.07540000000000001,0.68,0,0,0,8,15.9,0,0,0,0,0.268,99.01,98.73,0.15,980,2.7,285,0.6000000000000001 +2013,4,14,20,30,16.8,0.9,0.0753,0.68,27,252,47,8,16,21,0,3,21,0.268,94.93,85.44,0.15,981,2.7,280,0.7000000000000001 +2013,4,14,21,30,18.2,0.93,0.0758,0.68,64,625,248,8,16.5,97,17,0,103,0.268,89.61,72.84,0.15,981,2.7,286,0.7000000000000001 +2013,4,14,22,30,19.900000000000002,0.9500000000000001,0.07540000000000001,0.68,82,774,459,8,16.900000000000002,265,71,0,299,0.268,82.68,60.85,0.15,981,2.7,307,0.7000000000000001 +2013,4,14,23,30,20.700000000000003,0.96,0.07350000000000001,0.68,92,849,636,8,17.2,393,104,0,459,0.268,80.29,50.15,0.15,980,2.7,321,0.8 +2013,4,15,0,30,21.900000000000002,0.9500000000000001,0.0801,0.68,101,880,758,8,17.1,478,192,0,621,0.268,74.37,41.79,0.14,980,2.7,312,1 +2013,4,15,1,30,22.3,0.97,0.08120000000000001,0.68,105,895,815,1,17.1,105,895,0,815,0.268,72.28,37.410000000000004,0.14,979,2.7,307,1 +2013,4,15,2,30,22.6,0.99,0.08070000000000001,0.68,103,890,801,1,17.1,103,890,0,801,0.268,70.89,38.4,0.14,978,2.8000000000000003,308,1 +2013,4,15,3,30,22.8,1.01,0.0587,0.68,89,889,724,1,17,89,889,0,724,0.268,69.88,44.410000000000004,0.14,978,2.8000000000000003,313,1 +2013,4,15,4,30,22.900000000000002,1.03,0.054900000000000004,0.68,80,849,582,1,17.1,80,849,0,582,0.269,69.67,53.77,0.14,978,2.7,322,0.9 +2013,4,15,5,30,22.700000000000003,1.03,0.0526,0.68,68,764,390,1,17.400000000000002,68,764,0,390,0.27,71.82000000000001,65.03,0.14,978,2.7,336,0.8 +2013,4,15,6,30,21.400000000000002,1.03,0.0521,0.68,48,577,175,1,18.1,48,577,0,175,0.271,81.41,77.31,0.14,978,2.7,172,0.7000000000000001 +2013,4,15,7,30,19.6,1.03,0.053000000000000005,0.68,0,0,0,1,18.1,0,0,1,0,0.273,91.06,89.78,0.14,978,2.6,2,0.7000000000000001 +2013,4,15,8,30,18.6,1.03,0.0551,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.273,92.9,103.48,0.14,979,2.6,181,0.8 +2013,4,15,9,30,18.1,1.02,0.0582,0.68,0,0,0,1,17.400000000000002,0,0,0,0,0.273,95.91,116.8,0.14,979,2.6,354,0.8 +2013,4,15,10,30,17.7,1.03,0.0604,0.68,0,0,0,0,17.5,0,0,0,0,0.273,98.52,130.04,0.14,980,2.6,347,0.7000000000000001 +2013,4,15,11,30,17.3,1.03,0.0621,0.68,0,0,0,0,17.3,0,0,0,0,0.273,100,142.87,0.14,980,2.7,339,0.7000000000000001 +2013,4,15,12,30,16.900000000000002,1.02,0.0634,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.272,100,154.46,0.14,979,2.7,333,0.7000000000000001 +2013,4,15,13,30,16.6,1.02,0.0646,0.68,0,0,0,1,16.6,0,0,0,0,0.272,100,162.01,0.14,979,2.7,326,0.7000000000000001 +2013,4,15,14,30,16.3,1,0.0665,0.68,0,0,0,1,16.3,0,0,1,0,0.271,100,160.15,0.14,979,2.7,318,0.7000000000000001 +2013,4,15,15,30,16.1,0.99,0.06770000000000001,0.68,0,0,0,0,16.1,0,0,0,0,0.27,100,150.61,0.14,979,2.7,309,0.7000000000000001 +2013,4,15,16,30,15.9,0.99,0.0689,0.68,0,0,0,0,15.9,0,0,0,0,0.27,100,138.42000000000002,0.14,979,2.8000000000000003,298,0.7000000000000001 +2013,4,15,17,30,15.8,0.98,0.0702,0.68,0,0,0,0,15.8,0,0,0,0,0.27,100,125.4,0.14,979,2.8000000000000003,286,0.7000000000000001 +2013,4,15,18,30,15.8,0.97,0.0708,0.68,0,0,0,0,15.8,0,0,0,0,0.271,100,112.12,0.14,979,2.8000000000000003,275,0.6000000000000001 +2013,4,15,19,30,15.9,0.98,0.07050000000000001,0.68,0,0,0,1,15.9,0,0,0,0,0.272,100,98.83,0.14,980,2.9000000000000004,268,0.6000000000000001 +2013,4,15,20,30,17,0.98,0.0717,0.68,26,254,46,1,16.400000000000002,26,254,0,46,0.273,96.3,85.56,0.14,980,2.9000000000000004,269,0.8 +2013,4,15,21,30,18.900000000000002,0.99,0.0751,0.68,62,618,243,8,17,123,36,0,133,0.274,88.71000000000001,72.98,0.14,981,3,280,1 +2013,4,15,22,30,21,1,0.0801,0.68,82,757,449,8,17.8,279,124,0,340,0.274,81.94,61.03,0.14,981,3.2,294,1.1 +2013,4,15,23,30,22,1.02,0.0824,0.68,95,829,623,0,18.400000000000002,95,829,0,623,0.274,79.95,50.38,0.14,981,3.2,299,1.2000000000000002 +2013,4,16,0,30,22.900000000000002,1.02,0.0767,0.68,99,869,744,1,18.5,99,869,0,744,0.273,76.35000000000001,42.08,0.14,980,3.4000000000000004,294,1.3 +2013,4,16,1,30,22.900000000000002,1.03,0.0829,0.68,104,878,798,8,18.8,518,132,0,622,0.272,77.7,37.75,0.14,980,3.5,286,1.2000000000000002 +2013,4,16,2,30,22.5,1.03,0.0946,0.68,109,863,782,8,19.1,447,43,0,481,0.271,81.3,38.76,0.14,979,3.6,277,1.1 +2013,4,16,3,30,22,1.02,0.1005,0.68,107,834,700,8,19.5,435,80,0,492,0.27,85.47,44.74,0.14,979,3.6,271,1 +2013,4,16,4,30,21.5,1.02,0.10830000000000001,0.68,101,775,556,8,19.6,322,54,0,353,0.269,88.76,54.06,0.14,979,3.6,269,0.8 +2013,4,16,5,30,21,1.03,0.1102,0.68,86,674,368,1,19.5,86,674,0,368,0.269,91.09,65.29,0.14,980,3.5,276,0.6000000000000001 +2013,4,16,6,30,20.200000000000003,1.05,0.10210000000000001,0.68,58,478,161,4,19.5,27,0,3,27,0.269,95.89,77.54,0.14,980,3.4000000000000004,144,0.4 +2013,4,16,7,30,19.200000000000003,1.07,0.08950000000000001,0.68,0,0,0,3,18.5,0,0,3,0,0.27,95.43,89.96000000000001,0.14,980,3.3000000000000003,12,0.5 +2013,4,16,8,30,18.3,1.09,0.07590000000000001,0.68,0,0,0,8,18.1,0,0,0,0,0.27,98.51,103.69,0.14,981,3.1,14,0.6000000000000001 +2013,4,16,9,30,17.7,1.1,0.06670000000000001,0.68,0,0,0,8,17.7,0,0,1,0,0.27,99.99000000000001,117.01,0.14,981,3,181,0.6000000000000001 +2013,4,16,10,30,17.3,1.1,0.06430000000000001,0.68,0,0,0,7,17.3,0,0,0,0,0.271,100,130.26,0.14,981,2.9000000000000004,342,0.6000000000000001 +2013,4,16,11,30,16.900000000000002,1.09,0.06520000000000001,0.68,0,0,0,8,16.900000000000002,0,0,0,0,0.271,100,143.11,0.14,982,2.8000000000000003,319,0.6000000000000001 +2013,4,16,12,30,16.6,1.1,0.0674,0.68,0,0,0,4,16.6,0,0,0,0,0.272,100,154.75,0.14,982,2.8000000000000003,295,0.6000000000000001 +2013,4,16,13,30,16.2,1.1,0.07,0.68,0,0,0,3,16.2,0,0,0,0,0.272,100,162.37,0.14,982,2.8000000000000003,271,0.7000000000000001 +2013,4,16,14,30,15.700000000000001,1.1,0.0729,0.68,0,0,0,3,15.700000000000001,0,0,1,0,0.272,100,160.43,0.14,981,2.8000000000000003,255,0.7000000000000001 +2013,4,16,15,30,15.3,1.11,0.0751,0.68,0,0,0,0,15.3,0,0,0,0,0.272,100,150.79,0.14,981,2.8000000000000003,248,0.8 +2013,4,16,16,30,15,1.11,0.0771,0.68,0,0,0,0,15,0,0,0,0,0.273,100,138.55,0.14,981,2.8000000000000003,245,0.8 +2013,4,16,17,30,14.600000000000001,1.12,0.0787,0.68,0,0,0,0,14.600000000000001,0,0,0,0,0.274,100,125.51,0.14,981,2.8000000000000003,243,0.8 +2013,4,16,18,30,14.4,1.1300000000000001,0.0791,0.68,0,0,0,0,14.4,0,0,0,0,0.275,100,112.22,0.14,982,2.7,241,0.7000000000000001 +2013,4,16,19,30,14.600000000000001,1.1300000000000001,0.0791,0.68,0,0,0,1,14.600000000000001,0,0,0,0,0.276,100,98.94,0.14,982,2.7,241,0.7000000000000001 +2013,4,16,20,30,15.8,1.1300000000000001,0.07830000000000001,0.68,26,248,45,1,15.4,26,248,0,45,0.276,97.68,85.67,0.14,983,2.6,241,0.8 +2013,4,16,21,30,17.900000000000002,1.1300000000000001,0.07690000000000001,0.68,63,624,244,1,16.6,63,624,0,244,0.276,92.29,73.12,0.14,983,2.6,246,0.8 +2013,4,16,22,30,20.200000000000003,1.1300000000000001,0.0737,0.68,80,778,454,1,17.6,80,778,0,454,0.276,85.27,61.21,0.14,983,2.5,274,0.5 +2013,4,16,23,30,21.400000000000002,1.1400000000000001,0.0708,0.68,89,854,631,1,17.7,89,854,0,631,0.276,79.46000000000001,50.61,0.14,983,2.5,296,0.5 +2013,4,17,0,30,23.6,1.11,0.061000000000000006,0.68,91,898,754,1,17.5,91,898,0,754,0.275,68.68,42.37,0.14,982,2.6,330,0.5 +2013,4,17,1,30,24.200000000000003,1.11,0.06430000000000001,0.68,95,907,809,1,17.6,95,907,0,809,0.274,66.84,38.1,0.14,981,2.7,334,0.5 +2013,4,17,2,30,24.5,1.11,0.0671,0.68,96,899,794,1,17.8,96,899,0,794,0.273,66.27,39.12,0.14,980,2.8000000000000003,333,0.5 +2013,4,17,3,30,24.5,1.11,0.076,0.68,96,867,708,1,17.8,96,867,0,708,0.273,66.46000000000001,45.07,0.14,980,2.9000000000000004,344,0.5 +2013,4,17,4,30,24.3,1.12,0.0867,0.68,92,805,562,1,17.900000000000002,92,805,0,562,0.271,67.48,54.35,0.14,979,3,191,0.5 +2013,4,17,5,30,23.8,1.1400000000000001,0.0956,0.68,81,699,370,1,18.400000000000002,81,699,0,370,0.269,71.58,65.54,0.14,980,3,34,0.6000000000000001 +2013,4,17,6,30,22.400000000000002,1.1500000000000001,0.1047,0.68,57,476,158,9,18.8,78,22,3,83,0.267,80.06,77.77,0.14,980,3.1,50,0.6000000000000001 +2013,4,17,7,30,20.700000000000003,1.16,0.108,0.68,0,0,0,8,19.200000000000003,0,0,0,0,0.266,90.9,90.15,0.14,981,3.1,60,0.7000000000000001 +2013,4,17,8,30,19.6,1.1500000000000001,0.11030000000000001,0.68,0,0,0,8,18.8,0,0,0,0,0.265,94.88,103.89,0.14,981,3.1,61,0.7000000000000001 +2013,4,17,9,30,19,1.1500000000000001,0.1125,0.68,0,0,0,7,18.6,0,0,0,0,0.264,97.55,117.21000000000001,0.14,982,3.2,58,0.6000000000000001 +2013,4,17,10,30,18.6,1.1400000000000001,0.1149,0.68,0,0,0,8,18.5,0,0,0,0,0.263,99.21000000000001,130.47,0.14,982,3.2,52,0.6000000000000001 +2013,4,17,11,30,18.3,1.1300000000000001,0.11170000000000001,0.68,0,0,0,4,18.3,0,0,0,0,0.262,99.71000000000001,143.35,0.14,982,3.2,45,0.5 +2013,4,17,12,30,18,1.1300000000000001,0.10880000000000001,0.68,0,0,0,3,18,0,0,0,0,0.262,99.74000000000001,155.04,0.14,982,3.1,39,0.5 +2013,4,17,13,30,17.8,1.1300000000000001,0.1071,0.68,0,0,0,4,17.7,0,0,0,0,0.261,99.58,162.72,0.14,982,3.1,32,0.5 +2013,4,17,14,30,17.8,1.1300000000000001,0.1037,0.68,0,0,0,4,17.6,0,0,1,0,0.261,98.67,160.71,0.14,981,3,21,0.5 +2013,4,17,15,30,17.6,1.1300000000000001,0.10070000000000001,0.68,0,0,0,0,17.5,0,0,0,0,0.261,99.11,150.97,0.14,981,3,182,0.4 +2013,4,17,16,30,17.3,1.12,0.1013,0.68,0,0,0,0,17.2,0,0,0,0,0.261,99.62,138.68,0.14,981,3,334,0.4 +2013,4,17,17,30,17,1.11,0.1043,0.68,0,0,0,4,17,0,0,0,0,0.261,99.92,125.61,0.14,981,2.9000000000000004,304,0.4 +2013,4,17,18,30,16.8,1.12,0.1082,0.68,0,0,0,8,16.8,0,0,0,0,0.263,100,112.32000000000001,0.14,981,2.9000000000000004,278,0.4 +2013,4,17,19,30,16.5,1.12,0.10740000000000001,0.68,0,0,0,7,16.5,0,0,0,0,0.264,100,99.04,0.14,982,2.8000000000000003,259,0.5 +2013,4,17,20,30,17.1,1.12,0.10310000000000001,0.68,26,204,41,7,16.5,23,0,3,23,0.265,96.28,85.79,0.14,982,2.7,250,0.7000000000000001 +2013,4,17,21,30,18.6,1.12,0.0995,0.68,67,591,237,1,17.5,67,591,0,237,0.266,93.42,73.27,0.14,983,2.5,254,0.8 +2013,4,17,22,30,20.200000000000003,1.12,0.0971,0.68,87,751,447,1,18.400000000000002,87,751,0,447,0.266,89.26,61.39,0.14,983,2.4000000000000004,265,1 +2013,4,17,23,30,21.200000000000003,1.1300000000000001,0.09240000000000001,0.68,98,833,624,1,18.400000000000002,98,833,0,624,0.265,83.84,50.84,0.14,983,2.4000000000000004,269,1.1 +2013,4,18,0,30,23.6,1.09,0.057100000000000005,0.68,89,907,755,1,17.400000000000002,89,907,0,755,0.265,68.25,42.660000000000004,0.14,982,2.3000000000000003,274,1.6 +2013,4,18,1,30,24.6,1.1,0.0563,0.68,91,924,815,1,16.6,91,924,0,815,0.264,61.160000000000004,38.44,0.14,981,2.2,277,1.8 +2013,4,18,2,30,25.1,1.08,0.0568,0.68,91,923,803,1,16.2,91,923,0,803,0.262,57.71,39.47,0.14,980,2.1,279,1.9000000000000001 +2013,4,18,3,30,25.3,1.07,0.0536,0.68,85,907,722,1,16,85,907,0,722,0.261,56.26,45.4,0.14,979,2,281,1.8 +2013,4,18,4,30,25.1,1.08,0.057,0.68,79,860,577,1,16.3,79,860,0,577,0.261,58.04,54.64,0.14,979,1.9000000000000001,281,1.6 +2013,4,18,5,30,24.1,1.11,0.061200000000000004,0.68,69,768,383,0,16.6,69,768,0,383,0.261,62.93,65.79,0.14,979,1.8,280,1.2000000000000002 +2013,4,18,6,30,21.900000000000002,1.1500000000000001,0.0641,0.68,48,567,166,0,17.2,48,567,0,166,0.261,74.64,78,0.14,979,1.7000000000000002,274,0.9 +2013,4,18,7,30,19.6,1.16,0.0648,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.261,81.52,90.92,0.14,980,1.6,265,0.8 +2013,4,18,8,30,18.400000000000002,1.1500000000000001,0.06380000000000001,0.68,0,0,0,0,15,0,0,0,0,0.261,80.53,104.09,0.14,981,1.5,255,0.9 +2013,4,18,9,30,17.6,1.12,0.060700000000000004,0.68,0,0,0,0,13.9,0,0,0,0,0.261,79.09,117.41,0.14,981,1.4000000000000001,244,0.9 +2013,4,18,10,30,16.8,1.1,0.0585,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.261,76.81,130.68,0.14,982,1.3,236,0.9 +2013,4,18,11,30,16.1,1.08,0.0577,0.68,0,0,0,0,11.600000000000001,0,0,0,0,0.26,74.48,143.58,0.14,982,1.2000000000000002,236,0.9 +2013,4,18,12,30,15.4,1.06,0.0574,0.68,0,0,0,0,10.600000000000001,0,0,0,0,0.259,72.93,155.32,0.14,982,1.1,242,0.9 +2013,4,18,13,30,14.5,1.07,0.0579,0.68,0,0,0,0,9.600000000000001,0,0,0,0,0.259,72.57000000000001,163.08,0.14,981,1,245,0.9 +2013,4,18,14,30,13.8,1.11,0.060200000000000004,0.68,0,0,0,0,8.8,0,0,1,0,0.258,71.71000000000001,160.99,0.14,981,1,246,0.9 +2013,4,18,15,30,13.100000000000001,1.18,0.065,0.68,0,0,0,4,8.1,0,0,0,0,0.257,71.83,151.14000000000001,0.14,980,1,246,0.9 +2013,4,18,16,30,12.5,1.24,0.0743,0.68,0,0,0,1,7.7,0,0,0,0,0.256,72.61,138.8,0.14,980,1,246,0.9 +2013,4,18,17,30,12.100000000000001,1.28,0.08750000000000001,0.68,0,0,0,1,7.4,0,0,0,0,0.256,73.18,125.72,0.14,980,1,246,0.9 +2013,4,18,18,30,11.9,1.32,0.10490000000000001,0.68,0,0,0,0,7.2,0,0,0,0,0.256,73.08,112.42,0.14,980,1,248,0.9 +2013,4,18,19,30,12.100000000000001,1.4000000000000001,0.12300000000000001,0.68,0,0,0,0,7.2,0,0,0,0,0.255,72.17,99.15,0.14,981,1,251,0.8 +2013,4,18,20,30,13.100000000000001,1.49,0.13520000000000001,0.68,26,209,41,0,7.6000000000000005,26,209,0,41,0.254,69.41,85.91,0.14,981,1.1,257,0.9 +2013,4,18,21,30,14.700000000000001,1.56,0.1381,0.68,74,589,242,1,8.6,74,589,0,242,0.254,66.68,73.41,0.14,981,1.1,265,1.1 +2013,4,18,22,30,16.900000000000002,1.59,0.1343,0.68,97,755,456,0,8.6,97,755,0,456,0.254,58.01,61.57,0.14,981,1.1,269,1.4000000000000001 +2013,4,18,23,30,18.2,1.59,0.125,0.68,108,848,641,0,10.5,108,848,0,641,0.254,60.74,51.06,0.14,981,1,269,1.5 +2013,4,19,0,30,21.900000000000002,1.46,0.0726,0.68,94,929,774,0,11.600000000000001,94,929,0,774,0.253,51.88,42.95,0.14,980,1.1,262,2.1 +2013,4,19,1,30,23,1.5,0.0819,0.68,101,932,827,0,11.200000000000001,101,932,0,827,0.252,47.42,38.78,0.14,979,1.2000000000000002,261,2.3000000000000003 +2013,4,19,2,30,23.5,1.47,0.09090000000000001,0.68,104,921,811,0,11.100000000000001,104,921,0,811,0.252,45.71,39.82,0.14,978,1.2000000000000002,261,2.3000000000000003 +2013,4,19,3,30,23.700000000000003,1.2,0.053200000000000004,0.68,85,931,735,0,11.4,85,931,0,735,0.252,46.14,45.72,0.14,978,1.2000000000000002,259,2.1 +2013,4,19,4,30,23.5,1.17,0.059000000000000004,0.68,80,875,583,0,12,80,875,0,583,0.253,48.61,54.93,0.14,977,1.3,253,1.8 +2013,4,19,5,30,22.400000000000002,1.19,0.0625,0.68,69,780,386,1,12.200000000000001,69,780,0,386,0.254,52.34,66.05,0.14,977,1.3,247,1.4000000000000001 +2013,4,19,6,30,20.3,1.21,0.0661,0.68,49,571,165,0,13.600000000000001,49,571,0,165,0.255,65.41,78.22,0.14,978,1.3,240,1 +2013,4,19,7,30,18.3,1.22,0.0719,0.68,0,0,0,0,12.5,0,0,0,0,0.255,68.73,91.12,0.14,978,1.3,232,0.9 +2013,4,19,8,30,17.3,1.2,0.0765,0.68,0,0,0,0,11.200000000000001,0,0,0,0,0.254,67.39,104.29,0.14,979,1.3,225,0.9 +2013,4,19,9,30,16.5,1.17,0.08270000000000001,0.68,0,0,0,3,10.5,0,0,0,0,0.254,67.58,117.61,0.14,980,1.3,221,0.9 +2013,4,19,10,30,15.9,1.1500000000000001,0.0902,0.68,0,0,0,3,10.200000000000001,0,0,0,0,0.254,69.12,130.88,0.14,980,1.4000000000000001,218,0.9 +2013,4,19,11,30,15.4,1.1300000000000001,0.095,0.68,0,0,0,1,10.3,0,0,0,0,0.254,71.64,143.81,0.14,980,1.5,216,0.8 +2013,4,19,12,30,14.8,1.1300000000000001,0.0983,0.68,0,0,0,1,10.200000000000001,0,0,0,0,0.254,74.15,155.6,0.14,980,1.5,213,0.8 +2013,4,19,13,30,14.200000000000001,1.1300000000000001,0.0994,0.68,0,0,0,1,10.100000000000001,0,0,0,0,0.255,76.36,163.42000000000002,0.14,980,1.6,209,0.8 +2013,4,19,14,30,13.700000000000001,1.11,0.09860000000000001,0.68,0,0,0,1,9.9,0,0,1,0,0.255,77.85000000000001,161.27,0.14,979,1.7000000000000002,206,0.8 +2013,4,19,15,30,13.3,1.09,0.0993,0.68,0,0,0,4,9.8,0,0,0,0,0.256,79.58,151.31,0.14,979,1.7000000000000002,208,0.8 +2013,4,19,16,30,12.9,1.06,0.1014,0.68,0,0,0,4,9.8,0,0,0,0,0.257,81.49,138.92000000000002,0.14,979,1.8,213,0.7000000000000001 +2013,4,19,17,30,12.4,1.04,0.1038,0.68,0,0,0,4,9.8,0,0,0,0,0.258,83.98,125.82000000000001,0.14,979,1.8,219,0.7000000000000001 +2013,4,19,18,30,11.8,1.02,0.10450000000000001,0.68,0,0,0,4,9.5,0,0,0,0,0.259,86.01,112.52,0.14,979,1.8,224,0.7000000000000001 +2013,4,19,19,30,11.5,1.01,0.1057,0.68,0,0,0,1,9.1,0,0,0,0,0.258,85.25,99.25,0.14,980,1.8,226,0.7000000000000001 +2013,4,19,20,30,12.5,1,0.1067,0.68,26,196,40,1,9.200000000000001,26,196,0,40,0.258,80.06,86.02,0.14,980,1.7000000000000002,230,0.9 +2013,4,19,21,30,14.600000000000001,1,0.1033,0.68,69,596,238,1,9.3,69,596,0,238,0.258,70.74,73.55,0.14,980,1.7000000000000002,230,1.1 +2013,4,19,22,30,17.2,1.02,0.09920000000000001,0.68,90,764,451,1,10.8,90,764,0,451,0.258,65.93,61.75,0.14,980,1.6,233,0.9 +2013,4,19,23,30,18.5,1.04,0.0952,0.68,100,847,630,0,12.100000000000001,100,847,0,630,0.258,66.41,51.29,0.14,980,1.6,237,0.8 +2013,4,20,0,30,20.5,1.25,0.0731,0.68,96,912,760,0,12.200000000000001,96,912,0,760,0.257,58.9,43.230000000000004,0.14,979,1.5,266,1.3 +2013,4,20,1,30,21.3,1.29,0.0718,0.68,97,931,820,0,11.700000000000001,97,931,0,820,0.257,54.26,39.11,0.14,978,1.4000000000000001,267,1.6 +2013,4,20,2,30,21.8,1.35,0.07150000000000001,0.68,96,932,808,0,10.9,96,932,0,808,0.257,50.09,40.17,0.14,977,1.3,263,1.8 +2013,4,20,3,30,22,1.52,0.0695,0.68,90,916,726,0,10.200000000000001,90,916,0,726,0.257,47.06,46.04,0.14,976,1.2000000000000002,259,1.8 +2013,4,20,4,30,21.8,1.6,0.07050000000000001,0.68,83,872,580,0,9.8,83,872,0,580,0.256,46.36,55.21,0.14,976,1.1,253,1.6 +2013,4,20,5,30,20.900000000000002,1.6600000000000001,0.0714,0.68,70,782,385,0,10.100000000000001,70,782,0,385,0.256,50.06,66.29,0.14,976,1,249,1.2000000000000002 +2013,4,20,6,30,18.8,1.69,0.0719,0.68,48,582,164,1,11.3,48,582,0,164,0.256,61.57,78.44,0.14,977,0.9,248,0.9 +2013,4,20,7,30,16.5,1.69,0.0711,0.68,0,0,0,0,10.4,0,0,0,0,0.256,67.2,91.33,0.14,977,0.8,247,0.9 +2013,4,20,8,30,15.100000000000001,1.6600000000000001,0.0684,0.68,0,0,0,0,8.9,0,0,0,0,0.257,66.4,104.49000000000001,0.14,978,0.8,245,0.9 +2013,4,20,9,30,14.100000000000001,1.6,0.0645,0.68,0,0,0,0,8.1,0,0,0,0,0.257,67.08,117.8,0.14,979,0.9,244,0.9 +2013,4,20,10,30,13.3,1.54,0.0603,0.68,0,0,0,0,7.5,0,0,0,0,0.258,68.13,131.08,0.14,979,0.9,241,0.9 +2013,4,20,11,30,12.600000000000001,1.47,0.056400000000000006,0.68,0,0,0,0,7.300000000000001,0,0,0,0,0.259,69.91,144.03,0.14,980,1,235,0.9 +2013,4,20,12,30,12.100000000000001,1.41,0.053000000000000005,0.68,0,0,0,0,7.2,0,0,0,0,0.258,71.85000000000001,155.88,0.14,980,1.1,229,0.9 +2013,4,20,13,30,11.700000000000001,1.34,0.049800000000000004,0.68,0,0,0,0,7.2,0,0,0,0,0.257,74.14,163.77,0.14,980,1.2000000000000002,224,0.9 +2013,4,20,14,30,11.3,1.26,0.046900000000000004,0.68,0,0,0,0,7.4,0,0,0,0,0.255,77.15,161.54,0.14,980,1.3,219,0.9 +2013,4,20,15,30,11,1.1500000000000001,0.045000000000000005,0.68,0,0,0,0,7.800000000000001,0,0,0,0,0.254,80.41,151.48,0.14,979,1.3,211,0.9 +2013,4,20,16,30,10.8,1.02,0.0454,0.68,0,0,0,0,8.200000000000001,0,0,0,0,0.253,84.10000000000001,139.04,0.14,979,1.4000000000000001,202,0.9 +2013,4,20,17,30,10.700000000000001,0.85,0.0488,0.68,0,0,0,1,8.8,0,0,0,0,0.253,87.87,125.92,0.14,980,1.5,197,0.9 +2013,4,20,18,30,10.600000000000001,0.6900000000000001,0.0541,0.68,0,0,0,0,9.3,0,0,0,0,0.254,91.92,112.61,0.14,980,1.6,193,0.9 +2013,4,20,19,30,10.8,0.56,0.0592,0.68,0,0,0,1,9.8,0,0,0,0,0.254,93.64,99.36,0.14,981,1.6,189,0.9 +2013,4,20,20,30,12.3,0.49,0.062200000000000005,0.68,25,237,41,1,10.4,25,237,0,41,0.254,88.22,86.14,0.14,982,1.6,186,1.1 +2013,4,20,21,30,15,0.46,0.0623,0.68,61,642,241,1,11.5,61,642,0,241,0.254,79.47,73.7,0.14,982,1.7000000000000002,172,1.4000000000000001 +2013,4,20,22,30,17.6,0.45,0.0614,0.68,79,796,453,1,12.5,79,796,0,453,0.253,72.17,61.93,0.14,982,1.7000000000000002,150,1.6 +2013,4,20,23,30,18.7,0.45,0.060500000000000005,0.68,89,871,630,1,13.5,89,871,0,630,0.253,71.77,51.52,0.14,982,1.7000000000000002,141,1.7000000000000002 +2013,4,21,0,30,20.5,0.48,0.054,0.68,91,915,755,0,13.700000000000001,91,915,0,755,0.253,65.22,43.52,0.14,981,1.7000000000000002,123,1.4000000000000001 +2013,4,21,1,30,21.200000000000003,0.5,0.052500000000000005,0.68,93,929,810,0,13.9,93,929,0,810,0.253,63.03,39.44,0.14,981,1.8,112,1.2000000000000002 +2013,4,21,2,30,21.6,0.52,0.052000000000000005,0.68,91,923,793,0,13.9,91,923,0,793,0.252,61.75,40.51,0.14,980,1.9000000000000001,103,1.1 +2013,4,21,3,30,21.700000000000003,0.53,0.050100000000000006,0.68,87,903,710,1,14,87,903,0,710,0.251,61.54,46.36,0.14,980,1.9000000000000001,97,1.1 +2013,4,21,4,30,21.3,0.56,0.053000000000000005,0.68,80,850,562,1,14,80,850,0,562,0.251,62.97,55.49,0.14,980,2,91,1.2000000000000002 +2013,4,21,5,30,20.5,0.61,0.053200000000000004,0.68,68,754,368,1,14,68,754,0,368,0.25,66.48,66.54,0.14,980,2.1,86,1.3 +2013,4,21,6,30,18.900000000000002,0.66,0.0562,0.68,48,540,154,1,14.8,48,540,0,154,0.25,77.01,78.66,0.14,980,2.1,82,1 +2013,4,21,7,30,17.1,0.71,0.059800000000000006,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.25,88.51,91.53,0.14,981,2.2,82,0.7000000000000001 +2013,4,21,8,30,16.2,0.73,0.0632,0.68,0,0,0,0,14.8,0,0,0,0,0.249,91.67,104.68,0.14,981,2.3000000000000003,83,0.7000000000000001 +2013,4,21,9,30,15.700000000000001,0.73,0.0634,0.68,0,0,0,0,14.700000000000001,0,0,0,0,0.249,93.63,117.99000000000001,0.14,982,2.3000000000000003,80,0.7000000000000001 +2013,4,21,10,30,15.200000000000001,0.72,0.0645,0.68,0,0,0,0,14.600000000000001,0,0,0,0,0.249,96.04,131.27,0.14,982,2.4000000000000004,74,0.7000000000000001 +2013,4,21,11,30,14.9,0.72,0.06620000000000001,0.68,0,0,0,0,14.5,0,0,0,0,0.248,97.60000000000001,144.24,0.14,982,2.4000000000000004,66,0.7000000000000001 +2013,4,21,12,30,14.8,0.72,0.07,0.68,0,0,0,0,14.5,0,0,0,0,0.248,97.99000000000001,156.14000000000001,0.14,982,2.5,58,0.7000000000000001 +2013,4,21,13,30,14.8,0.72,0.0737,0.68,0,0,0,0,14.4,0,0,0,0,0.248,97.72,164.11,0.14,981,2.5,44,0.6000000000000001 +2013,4,21,14,30,14.8,0.72,0.07590000000000001,0.68,0,0,0,0,14.4,0,0,0,0,0.248,97.75,161.8,0.14,981,2.5,21,0.6000000000000001 +2013,4,21,15,30,14.200000000000001,0.75,0.0761,0.68,0,0,0,0,14.200000000000001,0,0,0,0,0.248,100,151.64000000000001,0.14,981,2.5,177,0.7000000000000001 +2013,4,21,16,30,13.4,0.77,0.0724,0.68,0,0,0,0,13.4,0,0,0,0,0.249,100,139.16,0.14,980,2.4000000000000004,337,0.7000000000000001 +2013,4,21,17,30,12.9,0.8,0.07,0.68,0,0,0,0,12.9,0,0,0,0,0.25,100,126.02,0.14,980,2.3000000000000003,319,0.7000000000000001 +2013,4,21,18,30,12.600000000000001,0.85,0.0669,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.251,100,112.71000000000001,0.14,981,2.2,308,0.7000000000000001 +2013,4,21,19,30,12.700000000000001,0.89,0.0626,0.68,0,0,0,1,12.700000000000001,0,0,0,0,0.252,100,99.46000000000001,0.14,981,2.1,304,0.7000000000000001 +2013,4,21,20,30,14.100000000000001,0.93,0.061000000000000006,0.68,23,251,39,1,13.9,23,251,0,39,0.253,98.52,86.26,0.14,982,2,301,0.9 +2013,4,21,21,30,16.3,0.97,0.0601,0.68,58,651,239,3,14.200000000000001,137,113,0,168,0.255,87.63,73.84,0.14,982,1.9000000000000001,309,1.1 +2013,4,21,22,30,18.7,1.01,0.0604,0.68,75,799,448,1,14.700000000000001,75,799,0,448,0.255,77.42,62.11,0.14,982,1.9000000000000001,323,1.4000000000000001 +2013,4,21,23,30,19.8,1.04,0.0668,0.68,88,864,623,1,14.5,88,864,0,623,0.256,71.33,51.75,0.14,982,1.9000000000000001,327,1.7000000000000002 +2013,4,22,0,30,21.6,1.08,0.051000000000000004,0.68,86,914,746,0,14.200000000000001,86,914,0,746,0.255,62.83,43.800000000000004,0.14,981,2,321,1.8 +2013,4,22,1,30,22.400000000000002,1.08,0.0565,0.68,91,923,801,2,14.200000000000001,376,26,0,396,0.254,59.63,39.77,0.14,980,2,318,1.8 +2013,4,22,2,30,23.200000000000003,1.08,0.061200000000000004,0.68,93,916,785,0,14.3,93,916,0,785,0.253,57.22,40.85,0.14,979,2,318,1.8 +2013,4,22,3,30,23.700000000000003,1.07,0.0591,0.68,87,895,702,1,14.4,87,895,0,702,0.252,55.89,46.67,0.14,979,2,321,1.8 +2013,4,22,4,30,23.8,1.07,0.059000000000000004,0.68,80,847,557,0,14.5,80,847,0,557,0.252,55.980000000000004,55.76,0.14,978,2,328,1.6 +2013,4,22,5,30,23,1.09,0.0567,0.68,67,756,365,0,15.200000000000001,67,756,0,365,0.252,61.32,66.78,0.14,978,2,338,1.2000000000000002 +2013,4,22,6,30,21,1.12,0.053700000000000005,0.68,45,557,152,1,16.5,45,557,0,152,0.252,75.25,78.88,0.14,978,1.9000000000000001,341,0.9 +2013,4,22,7,30,18.900000000000002,1.12,0.0516,0.68,0,0,0,0,15.9,0,0,0,0,0.254,82.51,91.73,0.14,979,1.8,333,0.8 +2013,4,22,8,30,17.900000000000002,1.07,0.0516,0.68,0,0,0,0,15.4,0,0,0,0,0.255,85.18,104.87,0.14,979,1.8,320,0.8 +2013,4,22,9,30,17.2,0.99,0.053700000000000005,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.256,87.57000000000001,118.17,0.14,980,1.7000000000000002,312,0.8 +2013,4,22,10,30,16.6,0.93,0.056600000000000004,0.68,0,0,0,0,14.9,0,0,0,0,0.256,89.43,131.46,0.14,980,1.7000000000000002,308,0.8 +2013,4,22,11,30,16,0.88,0.0603,0.68,0,0,0,0,14.600000000000001,0,0,0,0,0.256,91.45,144.46,0.14,981,1.8,307,0.8 +2013,4,22,12,30,15.5,0.86,0.0646,0.68,0,0,0,0,14.4,0,0,0,0,0.256,93.02,156.41,0.14,981,1.8,305,0.8 +2013,4,22,13,30,15,0.86,0.0684,0.68,0,0,0,0,14.200000000000001,0,0,0,0,0.256,94.72,164.45000000000002,0.14,980,1.9000000000000001,300,0.9 +2013,4,22,14,30,14.5,0.86,0.0734,0.68,0,0,0,0,14,0,0,0,0,0.256,96.57000000000001,162.06,0.14,980,2,295,0.9 +2013,4,22,15,30,14.100000000000001,0.88,0.0864,0.68,0,0,0,0,13.8,0,0,0,0,0.256,98.17,151.8,0.14,980,2.1,293,0.9 +2013,4,22,16,30,13.9,0.87,0.1051,0.68,0,0,0,0,13.8,0,0,0,0,0.256,99.53,139.27,0.14,980,2.2,292,0.8 +2013,4,22,17,30,13.9,0.84,0.1111,0.68,0,0,0,0,13.9,0,0,0,0,0.256,100,126.12,0.14,980,2.3000000000000003,289,0.8 +2013,4,22,18,30,13.700000000000001,0.79,0.1018,0.68,0,0,0,3,13.700000000000001,0,0,0,0,0.256,100,112.81,0.14,980,2.3000000000000003,283,0.8 +2013,4,22,19,30,13.700000000000001,0.76,0.0969,0.68,0,0,0,3,13.700000000000001,0,0,0,0,0.256,100,99.57000000000001,0.14,981,2.2,276,0.8 +2013,4,22,20,30,15,0.73,0.09720000000000001,0.68,24,168,35,3,14.3,15,0,3,15,0.255,95.51,86.37,0.14,981,2.1,270,0.9 +2013,4,22,21,30,17.400000000000002,0.7000000000000001,0.09530000000000001,0.68,67,578,226,1,14.700000000000001,67,578,0,226,0.255,84.39,73.99,0.14,981,2.1,265,1.1 +2013,4,22,22,30,20,0.68,0.0892,0.68,86,749,434,1,15.4,86,749,0,434,0.255,74.62,62.29,0.14,981,2.1,261,1.1 +2013,4,22,23,30,21.400000000000002,0.68,0.08310000000000001,0.68,95,835,610,1,15.9,95,835,0,610,0.255,70.69,51.980000000000004,0.14,981,2.1,260,1.1 +2013,4,23,0,30,24.5,0.75,0.0658,0.68,93,890,733,0,15.700000000000001,93,890,0,733,0.256,58.15,44.09,0.14,980,2.2,257,1.2000000000000002 +2013,4,23,1,30,25.6,0.78,0.06430000000000001,0.68,95,904,787,0,15.5,95,904,0,787,0.256,53.56,40.1,0.14,980,2.3000000000000003,256,1.3 +2013,4,23,2,30,26.200000000000003,0.79,0.0648,0.68,94,900,772,0,15.3,94,900,0,772,0.255,51.08,41.18,0.14,979,2.3000000000000003,259,1.2000000000000002 +2013,4,23,3,30,26.5,0.8,0.057600000000000005,0.68,87,885,690,3,15.5,386,51,0,421,0.255,50.82,46.980000000000004,0.14,979,2.3000000000000003,263,1.1 +2013,4,23,4,30,26.6,0.77,0.059300000000000005,0.68,80,833,546,1,15.8,80,833,0,546,0.255,51.5,56.03,0.14,979,2.3000000000000003,267,1 +2013,4,23,5,30,25.700000000000003,0.74,0.062200000000000005,0.68,69,734,356,1,15.600000000000001,69,734,0,356,0.254,53.72,67.02,0.14,979,2.2,269,0.8 +2013,4,23,6,30,23.5,0.71,0.0646,0.68,47,510,144,1,17.3,47,510,0,144,0.254,68.32000000000001,79.09,0.14,979,2.2,276,0.5 +2013,4,23,7,30,21.3,0.7000000000000001,0.06470000000000001,0.68,0,0,0,0,16.5,0,0,0,0,0.254,73.91,91.93,0.14,980,2.1,272,0.4 +2013,4,23,8,30,20.1,0.7000000000000001,0.064,0.68,0,0,0,1,15.600000000000001,0,0,0,0,0.253,75.24,105.05,0.14,981,2,249,0.4 +2013,4,23,9,30,19.3,0.71,0.0625,0.68,0,0,0,1,14.9,0,0,0,0,0.253,75.77,118.35000000000001,0.14,982,1.9000000000000001,224,0.6000000000000001 +2013,4,23,10,30,18.3,0.74,0.061000000000000006,0.68,0,0,0,0,14.3,0,0,0,0,0.253,77.41,131.65,0.14,982,1.8,206,0.7000000000000001 +2013,4,23,11,30,17.2,0.76,0.059800000000000006,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.253,80.15,144.66,0.14,983,1.8,198,0.8 +2013,4,23,12,30,16.1,0.79,0.059000000000000004,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.253,83.16,156.66,0.14,983,1.7000000000000002,195,0.8 +2013,4,23,13,30,15.3,0.81,0.0589,0.68,0,0,0,0,12.8,0,0,0,0,0.253,85.09,164.78,0.14,983,1.7000000000000002,195,0.8 +2013,4,23,14,30,14.700000000000001,0.8200000000000001,0.0591,0.68,0,0,0,0,12.3,0,0,0,0,0.253,85.75,162.32,0.14,982,1.7000000000000002,194,0.8 +2013,4,23,15,30,14.100000000000001,0.8300000000000001,0.060200000000000004,0.68,0,0,0,0,12,0,0,0,0,0.253,87.02,151.95000000000002,0.14,982,1.7000000000000002,194,0.8 +2013,4,23,16,30,13.600000000000001,0.8200000000000001,0.061700000000000005,0.68,0,0,0,0,11.600000000000001,0,0,0,0,0.253,87.89,139.39000000000001,0.14,982,1.8,193,0.8 +2013,4,23,17,30,13.100000000000001,0.81,0.0626,0.68,0,0,0,0,11.4,0,0,0,0,0.253,89.35000000000001,126.22,0.14,983,1.8,189,0.8 +2013,4,23,18,30,12.8,0.79,0.0631,0.68,0,0,0,0,11.3,0,0,0,0,0.253,90.34,112.91,0.14,984,1.8,184,0.8 +2013,4,23,19,30,12.700000000000001,0.77,0.0635,0.68,0,0,0,0,11.3,0,0,0,0,0.253,91.48,99.67,0.14,984,1.8,181,0.8 +2013,4,23,20,30,14,0.76,0.06420000000000001,0.68,22,225,36,1,11.9,22,225,0,36,0.252,87.18,86.49,0.14,985,1.8,179,1 +2013,4,23,21,30,16.5,0.74,0.0649,0.68,59,633,232,1,12.9,59,633,0,232,0.252,79.37,74.13,0.14,986,1.8,172,1.1 +2013,4,23,22,30,19.3,0.73,0.065,0.68,77,787,440,1,14.4,77,787,0,440,0.251,73.09,62.47,0.14,986,1.8,149,1.2000000000000002 +2013,4,23,23,30,20.8,0.73,0.0653,0.68,87,861,615,0,15.8,87,861,0,615,0.251,73.09,52.2,0.14,986,1.8,132,1.3 +2013,4,24,0,30,23,0.73,0.0627,0.68,92,901,737,0,16,92,901,0,737,0.25,64.7,44.37,0.14,985,1.8,124,1 +2013,4,24,1,30,23.700000000000003,0.74,0.0639,0.68,95,912,790,0,15.8,95,912,0,790,0.25,61.160000000000004,40.43,0.14,984,1.9000000000000001,124,0.8 +2013,4,24,2,30,24.200000000000003,0.74,0.0663,0.68,96,906,774,1,15.5,96,906,0,774,0.249,58.29,41.51,0.14,984,1.9000000000000001,107,0.6000000000000001 +2013,4,24,3,30,24.3,0.76,0.0592,0.68,88,888,691,1,15.100000000000001,88,888,0,691,0.249,56.64,47.28,0.14,983,2,82,0.6000000000000001 +2013,4,24,4,30,23.900000000000002,0.77,0.061700000000000005,0.68,82,835,545,0,14.9,82,835,0,545,0.249,57.14,56.300000000000004,0.14,983,2,67,0.8 +2013,4,24,5,30,23,0.79,0.0634,0.68,69,735,353,1,15.100000000000001,69,735,0,353,0.249,61.21,67.26,0.14,983,2,64,1 +2013,4,24,6,30,21,0.81,0.0634,0.68,46,514,142,1,16.2,46,514,0,142,0.25,73.82000000000001,79.3,0.14,984,2,63,0.9 +2013,4,24,7,30,19,0.8200000000000001,0.0631,0.68,0,0,0,0,16.3,0,0,0,0,0.25,84.2,92.12,0.14,984,2,62,0.8 +2013,4,24,8,30,18.1,0.8200000000000001,0.06430000000000001,0.68,0,0,0,0,16,0,0,0,0,0.25,87.67,105.23,0.14,985,2,58,0.8 +2013,4,24,9,30,17.5,0.81,0.0665,0.68,0,0,0,0,16,0,0,0,0,0.25,90.79,118.53,0.14,986,2,54,0.8 +2013,4,24,10,30,17.2,0.79,0.0688,0.68,0,0,0,0,15.9,0,0,0,0,0.251,92.12,131.83,0.14,986,2,48,0.8 +2013,4,24,11,30,17.1,0.78,0.0713,0.68,0,0,0,0,15.8,0,0,0,0,0.251,92.24,144.86,0.14,986,2,38,0.8 +2013,4,24,12,30,17,0.77,0.07350000000000001,0.68,0,0,0,0,15.8,0,0,0,0,0.251,92.37,156.92000000000002,0.14,986,2,21,0.7000000000000001 +2013,4,24,13,30,16.8,0.77,0.07440000000000001,0.68,0,0,0,0,15.600000000000001,0,0,0,0,0.252,92.89,165.11,0.14,986,1.9000000000000001,176,0.6000000000000001 +2013,4,24,14,30,16.5,0.77,0.07390000000000001,0.68,0,0,0,0,15.5,0,0,0,0,0.253,94.05,162.57,0.14,985,1.9000000000000001,324,0.6000000000000001 +2013,4,24,15,30,16,0.77,0.0724,0.68,0,0,0,0,15.4,0,0,0,0,0.253,96.42,152.11,0.14,985,1.8,293,0.7000000000000001 +2013,4,24,16,30,15.200000000000001,0.78,0.07100000000000001,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.253,100,139.5,0.14,985,1.7000000000000002,273,0.8 +2013,4,24,17,30,14.4,0.79,0.0702,0.68,0,0,0,0,14.4,0,0,0,0,0.253,100,126.31,0.14,986,1.7000000000000002,261,0.8 +2013,4,24,18,30,13.600000000000001,0.8,0.07,0.68,0,0,0,1,13.600000000000001,0,0,0,0,0.253,100,113,0.14,986,1.6,255,0.8 +2013,4,24,19,30,13.3,0.81,0.0692,0.68,0,0,0,1,13.3,0,0,0,0,0.253,100,99.78,0.14,987,1.6,249,0.8 +2013,4,24,20,30,14.5,0.8300000000000001,0.0678,0.68,22,219,35,1,13.200000000000001,22,219,0,35,0.254,92.11,86.60000000000001,0.14,988,1.6,244,1 +2013,4,24,21,30,17,0.84,0.066,0.68,59,639,232,1,13.3,59,639,0,232,0.255,78.96000000000001,74.28,0.14,988,1.5,244,1.1 +2013,4,24,22,30,19.700000000000003,0.87,0.0646,0.68,76,796,442,1,13.700000000000001,76,796,0,442,0.256,68.19,62.65,0.14,988,1.5,258,0.9 +2013,4,24,23,30,21.1,0.89,0.064,0.68,86,871,617,1,14.3,86,871,0,617,0.256,65.08,52.43,0.14,988,1.5,268,0.9 +2013,4,25,0,30,23.1,0.92,0.0627,0.68,92,910,739,0,13.8,92,910,0,739,0.257,55.78,44.65,0.15,987,1.5,268,1 +2013,4,25,1,30,23.8,0.9400000000000001,0.0627,0.68,94,925,795,0,13.200000000000001,94,925,0,795,0.257,51.44,40.75,0.15,987,1.5,268,1 +2013,4,25,2,30,24.200000000000003,0.96,0.0626,0.68,93,921,779,0,12.600000000000001,93,921,0,779,0.257,48.29,41.84,0.15,986,1.5,268,0.9 +2013,4,25,3,30,24.3,1.03,0.0519,0.68,84,910,698,0,12.100000000000001,84,910,0,698,0.257,46.410000000000004,47.58,0.15,985,1.5,267,0.9 +2013,4,25,4,30,24.200000000000003,1.04,0.0546,0.68,78,858,551,0,11.9,78,858,0,551,0.256,46.2,56.57,0.15,985,1.5,264,0.8 +2013,4,25,5,30,23.5,1.05,0.055200000000000006,0.68,65,761,357,0,12.100000000000001,65,761,0,357,0.256,48.63,67.49,0.15,986,1.5,262,0.6000000000000001 +2013,4,25,6,30,21.6,1.21,0.046200000000000005,0.68,42,568,145,1,13.3,42,568,0,145,0.256,59.1,79.51,0.15,986,1.4000000000000001,265,0.4 +2013,4,25,7,30,19.400000000000002,1.27,0.0446,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.256,67.13,92.31,0.15,987,1.4000000000000001,267,0.4 +2013,4,25,8,30,17.900000000000002,1.3,0.0441,0.68,0,0,0,0,12.4,0,0,0,0,0.257,70.18,105.41,0.15,988,1.4000000000000001,271,0.4 +2013,4,25,9,30,16.8,1.3,0.045000000000000005,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.257,73.69,118.7,0.15,988,1.4000000000000001,273,0.5 +2013,4,25,10,30,15.8,1.28,0.0455,0.68,0,0,0,0,11.8,0,0,0,0,0.257,77.19,132.01,0.15,989,1.4000000000000001,263,0.7000000000000001 +2013,4,25,11,30,15,1.24,0.0449,0.68,0,0,0,0,11.200000000000001,0,0,0,0,0.256,77.99,145.06,0.15,989,1.4000000000000001,250,0.7000000000000001 +2013,4,25,12,30,14.3,1.21,0.044700000000000004,0.68,0,0,0,0,10.4,0,0,0,0,0.255,77.63,157.16,0.15,989,1.4000000000000001,239,0.7000000000000001 +2013,4,25,13,30,13.700000000000001,1.19,0.045200000000000004,0.68,0,0,0,0,9.700000000000001,0,0,0,0,0.255,76.76,165.44,0.15,989,1.4000000000000001,229,0.7000000000000001 +2013,4,25,14,30,13.100000000000001,1.18,0.045700000000000005,0.68,0,0,0,0,9,0,0,0,0,0.254,76.43,162.82,0.15,988,1.4000000000000001,222,0.7000000000000001 +2013,4,25,15,30,12.5,1.18,0.0472,0.68,0,0,0,0,8.6,0,0,0,0,0.254,77.11,152.26,0.15,988,1.4000000000000001,217,0.7000000000000001 +2013,4,25,16,30,12.100000000000001,1.2,0.0472,0.68,0,0,0,0,8.4,0,0,0,0,0.254,78.21000000000001,139.61,0.15,988,1.4000000000000001,211,0.7000000000000001 +2013,4,25,17,30,11.700000000000001,1.2,0.0468,0.68,0,0,0,0,8.6,0,0,0,0,0.254,81.35000000000001,126.41,0.15,988,1.5,205,0.7000000000000001 +2013,4,25,18,30,11.5,1.19,0.048,0.68,0,0,0,0,9.1,0,0,0,0,0.254,85.26,113.10000000000001,0.15,989,1.5,196,0.7000000000000001 +2013,4,25,19,30,11.600000000000001,1.18,0.0497,0.68,0,0,0,0,9.8,0,0,0,0,0.255,88.84,99.88,0.15,989,1.6,185,0.7000000000000001 +2013,4,25,20,30,13.100000000000001,1.17,0.0514,0.68,20,263,35,1,10.8,20,263,0,35,0.255,85.97,86.72,0.15,990,1.6,175,0.9 +2013,4,25,21,30,15.9,1.17,0.053000000000000005,0.68,54,659,231,1,12.200000000000001,54,659,0,231,0.256,78.82000000000001,74.42,0.15,990,1.7000000000000002,158,1.1 +2013,4,25,22,30,18.7,1.17,0.0538,0.68,70,803,437,1,13.600000000000001,70,803,0,437,0.256,72.26,62.83,0.15,990,1.8,133,1.4000000000000001 +2013,4,25,23,30,20.200000000000003,1.16,0.0531,0.68,80,875,611,1,15.5,80,875,0,611,0.257,74.4,52.65,0.15,990,1.8,120,1.6 +2013,4,26,0,30,22.3,0.89,0.0689,0.68,95,888,723,0,16.2,95,888,0,723,0.257,68.21000000000001,44.92,0.15,990,2,102,1.6 +2013,4,26,1,30,22.900000000000002,0.9,0.0689,0.68,98,900,776,1,16.1,98,900,0,776,0.257,65.71000000000001,41.06,0.15,989,2.1,96,1.6 +2013,4,26,2,30,23.1,0.9,0.0746,0.68,100,888,758,1,16,100,888,0,758,0.257,64.38,42.17,0.15,989,2.2,89,1.6 +2013,4,26,3,30,22.900000000000002,0.96,0.0921,0.68,103,845,670,3,15.8,314,27,0,332,0.256,64.35,47.88,0.15,988,2.3000000000000003,83,1.6 +2013,4,26,4,30,22.5,0.99,0.1067,0.68,99,776,524,3,15.700000000000001,44,0,0,44,0.256,65.61,56.83,0.15,988,2.3000000000000003,79,1.5 +2013,4,26,5,30,21.700000000000003,1,0.10450000000000001,0.68,82,669,335,1,15.9,82,669,0,335,0.256,69.58,67.72,0.15,988,2.3000000000000003,78,1.2000000000000002 +2013,4,26,6,30,20.200000000000003,1.03,0.0994,0.68,51,440,130,1,16.5,51,440,0,130,0.257,79.43,79.71000000000001,0.15,989,2.3000000000000003,79,0.8 +2013,4,26,7,30,18.6,1.04,0.09240000000000001,0.68,0,0,0,0,16.6,0,0,0,0,0.258,88.28,92.5,0.15,989,2.2,81,0.7000000000000001 +2013,4,26,8,30,17.6,1.04,0.0864,0.68,0,0,0,3,16.2,0,0,0,0,0.259,91.68,105.59,0.15,990,2.2,81,0.7000000000000001 +2013,4,26,9,30,17.1,1.02,0.0821,0.68,0,0,0,3,16,0,0,0,0,0.26,93.25,118.87,0.15,990,2.2,81,0.7000000000000001 +2013,4,26,10,30,16.6,1,0.0777,0.68,0,0,0,3,15.9,0,0,0,0,0.26,95.35000000000001,132.18,0.15,990,2.1,81,0.7000000000000001 +2013,4,26,11,30,16.2,0.99,0.0726,0.68,0,0,0,3,15.700000000000001,0,0,0,0,0.261,97.03,145.25,0.15,990,2.1,80,0.8 +2013,4,26,12,30,16,0.97,0.06760000000000001,0.68,0,0,0,0,15.600000000000001,0,0,0,0,0.261,97.60000000000001,157.4,0.15,990,2,79,0.8 +2013,4,26,13,30,15.8,0.96,0.0627,0.68,0,0,0,0,15.5,0,0,0,0,0.262,98.29,165.76,0.15,990,1.9000000000000001,81,0.8 +2013,4,26,14,30,15.600000000000001,0.9500000000000001,0.058,0.68,0,0,0,0,15.4,0,0,0,0,0.264,98.97,163.06,0.15,989,1.9000000000000001,88,0.8 +2013,4,26,15,30,15.4,0.9400000000000001,0.0545,0.68,0,0,0,0,15.4,0,0,0,0,0.265,99.78,152.4,0.15,989,1.8,103,0.9 +2013,4,26,16,30,15,0.9400000000000001,0.0524,0.68,0,0,0,0,15,0,0,0,0,0.267,100,139.71,0.15,988,1.8,122,0.9 +2013,4,26,17,30,14.4,0.9400000000000001,0.051300000000000005,0.68,0,0,0,0,14.4,0,0,0,0,0.267,100,126.5,0.15,988,1.8,138,1 +2013,4,26,18,30,13.8,0.9500000000000001,0.0514,0.68,0,0,0,0,13.8,0,0,0,0,0.268,100,113.19,0.15,989,1.8,144,1 +2013,4,26,19,30,13.5,0.96,0.052000000000000005,0.68,0,0,0,0,13.5,0,0,0,0,0.269,100,99.99000000000001,0.15,989,1.9000000000000001,142,0.9 +2013,4,26,20,30,15,0.97,0.052700000000000004,0.68,20,238,33,1,14.700000000000001,20,238,0,33,0.27,97.95,86.84,0.15,990,1.9000000000000001,142,1 +2013,4,26,21,30,17.8,0.98,0.0534,0.68,54,645,226,3,15.3,92,18,0,96,0.271,85.27,74.57000000000001,0.15,990,1.9000000000000001,131,1.2000000000000002 +2013,4,26,22,30,20.1,0.99,0.052700000000000004,0.68,71,796,432,3,15.600000000000001,253,119,0,307,0.271,75.46000000000001,63.01,0.15,991,1.9000000000000001,110,1.2000000000000002 +2013,4,26,23,30,21,0.99,0.0505,0.68,80,871,605,1,15.4,80,871,0,605,0.272,70.47,52.88,0.15,990,1.9000000000000001,100,1.3 +2013,4,27,0,30,22.1,0.77,0.062400000000000004,0.68,92,891,720,8,15.200000000000001,442,125,0,530,0.272,65.04,45.2,0.15,990,2,99,1.4000000000000001 +2013,4,27,1,30,22.6,0.81,0.0585,0.68,93,910,775,1,15,93,910,0,775,0.273,62.11,41.38,0.15,989,2,99,1.5 +2013,4,27,2,30,22.8,0.8200000000000001,0.057800000000000004,0.68,91,907,760,1,14.700000000000001,91,907,0,760,0.273,60.36,42.49,0.15,988,2,97,1.6 +2013,4,27,3,30,22.8,0.81,0.062200000000000005,0.68,90,878,675,1,14.5,90,878,0,675,0.273,59.480000000000004,48.18,0.15,987,2,94,1.6 +2013,4,27,4,30,22.400000000000002,0.81,0.0608,0.68,81,829,531,0,14.4,81,829,0,531,0.272,60.39,57.09,0.15,987,2,90,1.6 +2013,4,27,5,30,21.6,0.79,0.058600000000000006,0.68,67,734,343,0,14.4,67,734,0,343,0.272,63.67,67.94,0.15,987,1.9000000000000001,86,1.3 +2013,4,27,6,30,19.8,0.8,0.059000000000000004,0.68,44,508,133,0,15.200000000000001,44,508,0,133,0.273,74.64,79.91,0.15,988,1.8,82,0.9 +2013,4,27,7,30,18,0.8,0.056400000000000006,0.68,0,0,0,0,15.3,0,0,0,0,0.273,84.03,92.68,0.15,988,1.8,77,0.7000000000000001 +2013,4,27,8,30,17.2,0.78,0.0536,0.68,0,0,0,0,14.700000000000001,0,0,0,0,0.274,85.10000000000001,105.76,0.15,989,1.7000000000000002,72,0.8 +2013,4,27,9,30,16.8,0.76,0.051800000000000006,0.68,0,0,0,0,14.3,0,0,0,0,0.274,85.27,119.04,0.15,989,1.7000000000000002,64,0.9 +2013,4,27,10,30,16.6,0.75,0.0502,0.68,0,0,0,0,14,0,0,0,0,0.274,84.62,132.35,0.15,989,1.7000000000000002,58,0.9 +2013,4,27,11,30,16.400000000000002,0.75,0.0485,0.68,0,0,0,0,13.8,0,0,0,0,0.273,84.7,145.44,0.15,989,1.6,58,0.8 +2013,4,27,12,30,16.2,0.74,0.0472,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.272,85.36,157.64000000000001,0.15,989,1.6,68,0.8 +2013,4,27,13,30,16,0.74,0.046400000000000004,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.27,86.42,166.07,0.15,989,1.6,89,0.7000000000000001 +2013,4,27,14,30,15.700000000000001,0.74,0.0461,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.268,88.18,163.3,0.15,989,1.6,129,0.6000000000000001 +2013,4,27,15,30,15.3,0.74,0.0456,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.266,90.34,152.54,0.15,988,1.6,173,0.7000000000000001 +2013,4,27,16,30,14.600000000000001,0.75,0.045000000000000005,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.264,94.08,139.82,0.15,988,1.6,198,0.8 +2013,4,27,17,30,13.9,0.77,0.044500000000000005,0.68,0,0,0,0,13.600000000000001,0,0,0,0,0.263,97.78,126.60000000000001,0.15,988,1.6,205,0.9 +2013,4,27,18,30,13.3,0.78,0.044000000000000004,0.68,0,0,0,0,13.3,0,0,0,0,0.262,100,113.29,0.15,988,1.6,207,0.9 +2013,4,27,19,30,13.100000000000001,0.79,0.0436,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.26,100,100.09,0.15,989,1.6,203,0.9 +2013,4,27,20,30,14.3,0.81,0.042800000000000005,0.68,19,254,33,1,13.200000000000001,19,254,0,33,0.259,93.04,86.95,0.15,989,1.6,196,0.9 +2013,4,27,21,30,16.8,0.8200000000000001,0.0417,0.68,51,669,228,0,13.9,51,669,0,228,0.258,82.84,74.71000000000001,0.15,990,1.6,186,0.9 +2013,4,27,22,30,19.6,0.85,0.0403,0.68,66,819,436,1,14.5,66,819,0,436,0.256,72.44,63.190000000000005,0.15,990,1.6,151,0.7000000000000001 +2013,4,27,23,30,20.900000000000002,0.87,0.0405,0.68,75,889,609,0,14.9,75,889,0,609,0.256,68.54,53.1,0.15,989,1.6,124,0.6000000000000001 +2013,4,28,0,30,22.900000000000002,0.75,0.048600000000000004,0.68,85,912,725,0,15,85,912,0,725,0.254,60.95,45.47,0.15,989,1.7000000000000002,123,0.5 +2013,4,28,1,30,23.700000000000003,0.79,0.049,0.68,88,926,779,0,14.8,88,926,0,779,0.254,57.620000000000005,41.69,0.15,988,1.7000000000000002,124,0.5 +2013,4,28,2,30,24.1,0.8200000000000001,0.0494,0.68,87,922,764,0,14.600000000000001,87,922,0,764,0.253,55.52,42.800000000000004,0.15,987,1.7000000000000002,114,0.7000000000000001 +2013,4,28,3,30,24.1,0.89,0.0483,0.68,82,901,680,0,14.4,82,901,0,680,0.253,54.82,48.46,0.15,987,1.7000000000000002,101,1 +2013,4,28,4,30,23.8,0.91,0.048600000000000004,0.68,75,852,535,0,14.3,75,852,0,535,0.254,55.44,57.34,0.15,987,1.7000000000000002,89,1.2000000000000002 +2013,4,28,5,30,22.8,0.92,0.0487,0.68,63,751,343,0,14.5,63,751,0,343,0.254,59.67,68.16,0.15,987,1.8,76,1.1 +2013,4,28,6,30,20.6,0.9400000000000001,0.0487,0.68,41,528,132,0,15.5,41,528,0,132,0.255,72.76,80.10000000000001,0.15,987,1.8,64,0.8 +2013,4,28,7,30,18.5,0.9500000000000001,0.0475,0.68,0,0,0,0,15.5,0,0,0,0,0.256,82.91,92.86,0.15,988,1.7000000000000002,56,0.7000000000000001 +2013,4,28,8,30,17.5,0.9500000000000001,0.0459,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.256,85.86,105.92,0.15,989,1.7000000000000002,54,0.8 +2013,4,28,9,30,16.900000000000002,0.9500000000000001,0.044700000000000004,0.68,0,0,0,0,15,0,0,0,0,0.257,88.37,119.2,0.15,989,1.7000000000000002,50,0.8 +2013,4,28,10,30,16.6,0.9500000000000001,0.0439,0.68,0,0,0,0,15,0,0,0,0,0.257,90.42,132.51,0.15,989,1.7000000000000002,42,0.8 +2013,4,28,11,30,16.5,0.9400000000000001,0.0436,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.257,91.16,145.62,0.15,989,1.7000000000000002,32,0.9 +2013,4,28,12,30,16.7,0.9500000000000001,0.0438,0.68,0,0,0,0,15,0,0,0,0,0.257,89.99,157.86,0.15,989,1.8,20,0.8 +2013,4,28,13,30,16.900000000000002,0.9500000000000001,0.0441,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.258,89.13,166.39000000000001,0.15,989,1.8,11,0.6000000000000001 +2013,4,28,14,30,16.7,0.9500000000000001,0.0441,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.258,90.41,163.54,0.15,988,1.8,115,0.4 +2013,4,28,15,30,16.1,0.9400000000000001,0.0442,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.257,94,152.69,0.15,988,1.8,217,0.5 +2013,4,28,16,30,15.100000000000001,0.9400000000000001,0.044500000000000005,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.257,100,139.92000000000002,0.15,988,1.8,210,0.8 +2013,4,28,17,30,14.200000000000001,0.9500000000000001,0.0451,0.68,0,0,0,0,14.200000000000001,0,0,0,0,0.257,100,126.69,0.15,989,1.8,205,0.8 +2013,4,28,18,30,13.700000000000001,0.96,0.046,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.258,100,113.38,0.15,989,1.8,199,0.9 +2013,4,28,19,30,13.5,0.97,0.0461,0.68,0,0,0,0,13.5,0,0,0,0,0.259,100,100.2,0.15,990,1.8,193,0.9 +2013,4,28,20,30,14.700000000000001,0.98,0.0453,0.68,18,244,31,0,14.700000000000001,18,244,0,31,0.26,99.7,87.07000000000001,0.15,990,1.8,188,1 +2013,4,28,21,30,17.3,1,0.0446,0.68,51,658,223,1,15.100000000000001,51,658,0,223,0.26,86.75,74.86,0.15,991,1.8,180,0.9 +2013,4,28,22,30,20,1.03,0.0437,0.68,67,808,429,0,15.9,67,808,0,429,0.261,77.13,63.370000000000005,0.15,991,1.8,146,0.8 +2013,4,28,23,30,21.400000000000002,1.07,0.0432,0.68,75,880,601,0,16.3,75,880,0,601,0.261,72.58,53.32,0.15,991,1.8,119,0.8 +2013,4,29,0,30,23.200000000000003,0.98,0.0471,0.68,83,911,718,0,15.9,83,911,0,718,0.261,63.59,45.74,0.15,990,1.8,99,1.1 +2013,4,29,1,30,23.8,1.01,0.0465,0.68,85,925,772,0,15.5,85,925,0,772,0.261,59.86,42,0.15,989,1.8,93,1.3 +2013,4,29,2,30,24,1.01,0.0468,0.68,84,919,755,1,15.4,84,919,0,755,0.26,58.65,43.11,0.15,989,1.9000000000000001,91,1.4000000000000001 +2013,4,29,3,30,24,0.98,0.0488,0.68,82,893,671,1,15.3,82,893,0,671,0.26,58.410000000000004,48.75,0.15,988,1.9000000000000001,90,1.5 +2013,4,29,4,30,23.6,0.97,0.0497,0.68,75,840,525,0,15.5,75,840,0,525,0.26,60.33,57.59,0.15,988,2,87,1.5 +2013,4,29,5,30,22.700000000000003,0.9500000000000001,0.0507,0.68,63,739,336,0,15.8,63,739,0,336,0.26,64.97,68.38,0.15,989,2,85,1.3 +2013,4,29,6,30,20.900000000000002,0.97,0.057100000000000005,0.68,42,498,126,0,16.7,42,498,0,126,0.26,76.69,80.29,0.15,989,2.1,80,0.9 +2013,4,29,7,30,19.1,0.98,0.058800000000000005,0.68,0,0,0,0,16.8,0,0,0,0,0.26,86.69,93.03,0.15,990,2.1,76,0.7000000000000001 +2013,4,29,8,30,18.3,0.97,0.055200000000000006,0.68,0,0,0,0,16.7,0,0,0,0,0.259,90.28,106.08,0.15,991,2.1,74,0.7000000000000001 +2013,4,29,9,30,17.8,0.9500000000000001,0.053200000000000004,0.68,0,0,0,0,16.7,0,0,0,0,0.259,93.16,119.35000000000001,0.15,991,2.1,72,0.7000000000000001 +2013,4,29,10,30,17.3,0.9400000000000001,0.0512,0.68,0,0,0,0,16.7,0,0,0,0,0.258,96.3,132.67000000000002,0.15,992,2.1,72,0.8 +2013,4,29,11,30,16.7,0.91,0.049,0.68,0,0,0,0,16.7,0,0,0,0,0.257,100,145.79,0.15,992,2.1,75,0.8 +2013,4,29,12,30,16.3,0.88,0.047400000000000005,0.68,0,0,0,0,16.3,0,0,0,0,0.256,100,158.09,0.15,991,2,79,0.8 +2013,4,29,13,30,15.9,0.84,0.0466,0.68,0,0,0,0,15.9,0,0,0,0,0.255,100,166.69,0.15,991,2,84,0.9 +2013,4,29,14,30,15.700000000000001,0.81,0.0466,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.254,100,163.77,0.15,990,2,89,0.9 +2013,4,29,15,30,15.5,0.8,0.0482,0.68,0,0,0,0,15.5,0,0,0,0,0.254,100,152.82,0.15,990,2,95,0.9 +2013,4,29,16,30,15.4,0.8,0.049600000000000005,0.68,0,0,0,0,15.4,0,0,0,0,0.254,100,140.03,0.15,990,2,102,0.9 +2013,4,29,17,30,15.3,0.81,0.0506,0.68,0,0,0,0,15.3,0,0,0,0,0.254,100,126.79,0.15,989,2,111,0.9 +2013,4,29,18,30,15.200000000000001,0.8200000000000001,0.0523,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.255,100,113.48,0.15,990,2,119,0.9 +2013,4,29,19,30,15.200000000000001,0.8300000000000001,0.053200000000000004,0.68,0,0,0,3,15.200000000000001,0,0,0,0,0.255,100,100.3,0.15,990,2,125,0.8 +2013,4,29,20,30,16.5,0.81,0.053200000000000004,0.68,19,207,29,1,16,19,207,0,29,0.256,96.94,87.18,0.15,990,2,128,1 +2013,4,29,21,30,18.8,0.81,0.0555,0.68,54,626,217,1,17,54,626,0,217,0.256,89.03,75,0.15,991,2,124,1.2000000000000002 +2013,4,29,22,30,20.6,0.8,0.056100000000000004,0.68,72,781,420,1,17.5,72,781,0,420,0.257,82.56,63.550000000000004,0.15,991,2,109,1.4000000000000001 +2013,4,29,23,30,21.5,0.79,0.054900000000000004,0.68,82,854,589,1,17.3,82,854,0,589,0.257,77.17,53.550000000000004,0.15,991,2.1,100,1.5 +2013,4,30,0,30,23.1,0.72,0.0644,0.68,93,879,703,1,16.8,93,879,0,703,0.258,67.85,46.01,0.15,990,2.2,92,1.7000000000000002 +2013,4,30,1,30,23.6,0.74,0.0631,0.68,94,895,757,1,16.6,94,895,0,757,0.258,64.86,42.300000000000004,0.15,990,2.2,92,1.7000000000000002 +2013,4,30,2,30,23.8,0.75,0.058800000000000005,0.68,91,893,740,1,16.5,91,893,0,740,0.258,63.51,43.42,0.15,989,2.3000000000000003,93,1.8 +2013,4,30,3,30,23.6,0.81,0.0534,0.68,84,875,658,1,16.3,84,875,0,658,0.258,63.800000000000004,49.03,0.15,989,2.3000000000000003,96,1.8 +2013,4,30,4,30,23.200000000000003,0.8200000000000001,0.049800000000000004,0.68,75,826,515,1,16.2,75,826,0,515,0.257,64.94,57.84,0.15,988,2.4000000000000004,98,1.8 +2013,4,30,5,30,22.400000000000002,0.81,0.048600000000000004,0.68,63,727,328,1,16.3,63,727,0,328,0.257,68.28,68.59,0.15,989,2.4000000000000004,96,1.5 +2013,4,30,6,30,20.700000000000003,0.8300000000000001,0.0499,0.68,41,498,123,0,16.8,41,498,0,123,0.257,78.26,80.48,0.15,989,2.3000000000000003,90,1 +2013,4,30,7,30,18.900000000000002,0.8300000000000001,0.0461,0.68,0,0,0,0,16.8,0,0,0,0,0.257,87.7,93.2,0.15,990,2.3000000000000003,86,0.7000000000000001 +2013,4,30,8,30,18,0.8200000000000001,0.0436,0.68,0,0,0,0,16.5,0,0,0,0,0.256,91.09,106.24000000000001,0.15,990,2.2,84,0.7000000000000001 +2013,4,30,9,30,17.400000000000002,0.8,0.0425,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.255,93.85000000000001,119.5,0.15,990,2.2,82,0.7000000000000001 +2013,4,30,10,30,16.900000000000002,0.78,0.042100000000000005,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.254,96.66,132.82,0.15,991,2.1,83,0.7000000000000001 +2013,4,30,11,30,16.400000000000002,0.77,0.042100000000000005,0.68,0,0,0,0,16.3,0,0,0,0,0.253,99.4,145.96,0.15,990,2.1,89,0.8 +2013,4,30,12,30,16,0.76,0.043000000000000003,0.68,0,0,0,0,16,0,0,0,0,0.253,100,158.3,0.15,990,2,101,0.8 +2013,4,30,13,30,15.700000000000001,0.77,0.0437,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.252,100,167,0.15,990,2,116,0.8 +2013,4,30,14,30,15.4,0.75,0.0437,0.68,0,0,0,0,15.4,0,0,0,0,0.251,100,163.99,0.15,989,2,129,0.8 +2013,4,30,15,30,15.100000000000001,0.74,0.0446,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.251,100,152.96,0.15,989,2,140,0.9 +2013,4,30,16,30,14.700000000000001,0.76,0.045700000000000005,0.68,0,0,0,1,14.700000000000001,0,0,0,0,0.25,100,140.13,0.15,989,2,147,0.9 +2013,4,30,17,30,14.4,0.77,0.046200000000000005,0.68,0,0,0,3,14.4,0,0,0,0,0.25,100,126.88000000000001,0.15,988,1.9000000000000001,150,0.9 +2013,4,30,18,30,14.200000000000001,0.79,0.0463,0.68,0,0,0,0,14.200000000000001,0,0,0,0,0.249,100,113.57000000000001,0.15,988,1.9000000000000001,147,0.9 +2013,4,30,19,30,14.100000000000001,0.8200000000000001,0.0453,0.68,0,0,0,0,14.100000000000001,0,0,0,0,0.248,100,100.41,0.15,988,1.9000000000000001,144,0.9 +2013,4,30,20,30,15.3,0.85,0.0437,0.68,18,228,29,1,15.200000000000001,18,228,0,29,0.247,99.39,87.3,0.15,989,1.8,145,1 +2013,4,30,21,30,17.900000000000002,0.87,0.0427,0.68,51,651,218,1,15.9,51,651,0,218,0.246,87.86,75.15,0.15,989,1.9000000000000001,133,0.9 +2013,4,30,22,30,20.400000000000002,0.9,0.0417,0.68,66,804,422,1,16.5,66,804,0,422,0.246,78.27,63.72,0.15,989,1.9000000000000001,101,0.9 +2013,4,30,23,30,21.5,0.93,0.0396,0.68,74,878,592,1,16.3,74,878,0,592,0.245,72.37,53.77,0.15,989,1.9000000000000001,83,0.9 +2013,5,1,0,30,22.900000000000002,0.73,0.06570000000000001,0.68,93,882,703,0,15.9,93,882,0,703,0.244,64.56,46.28,0.15,988,2,75,0.8 +2013,5,1,1,30,23.400000000000002,0.78,0.0596,0.68,92,901,755,0,15.5,92,901,0,755,0.243,61.04,42.6,0.15,987,2.1,70,0.8 +2013,5,1,2,30,23.700000000000003,0.81,0.0562,0.68,90,900,740,0,15.200000000000001,90,900,0,740,0.243,58.83,43.72,0.15,986,2.1,65,0.9 +2013,5,1,3,30,23.700000000000003,0.76,0.0641,0.68,90,867,655,1,15,90,867,0,655,0.243,58.11,49.31,0.15,985,2.1,62,0.9 +2013,5,1,4,30,23.400000000000002,0.79,0.0627,0.68,81,816,513,1,14.8,81,816,0,513,0.243,58.49,58.08,0.15,985,2.1,61,0.9 +2013,5,1,5,30,22.6,0.8200000000000001,0.0616,0.68,67,714,325,1,14.8,67,714,0,325,0.244,61.51,68.81,0.15,985,2.1,56,0.8 +2013,5,1,6,30,20.700000000000003,0.86,0.0591,0.68,42,482,120,1,15.9,42,482,0,120,0.244,74.09,80.67,0.15,985,2,48,0.7000000000000001 +2013,5,1,7,30,18.7,0.89,0.056100000000000004,0.68,0,0,0,0,15.9,0,0,0,0,0.244,83.77,93.37,0.15,986,2,39,0.7000000000000001 +2013,5,1,8,30,17.7,0.91,0.0546,0.68,0,0,0,0,15.600000000000001,0,0,0,0,0.244,87.28,106.4,0.15,986,2,28,0.7000000000000001 +2013,5,1,9,30,17.1,0.92,0.054200000000000005,0.68,0,0,0,0,15.5,0,0,0,0,0.244,90.13,119.65,0.15,986,2,14,0.7000000000000001 +2013,5,1,10,30,16.7,0.9400000000000001,0.054900000000000004,0.68,0,0,0,0,15.4,0,0,0,0,0.244,92.17,132.97,0.15,986,2,176,0.7000000000000001 +2013,5,1,11,30,16.2,0.9500000000000001,0.0568,0.68,0,0,0,0,15.4,0,0,0,0,0.244,94.75,146.12,0.15,986,2.1,331,0.7000000000000001 +2013,5,1,12,30,15.700000000000001,0.96,0.0594,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.243,96.99000000000001,158.51,0.15,986,2.1,303,0.7000000000000001 +2013,5,1,13,30,15.200000000000001,0.97,0.0627,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.242,99.10000000000001,167.29,0.15,986,2.1,283,0.7000000000000001 +2013,5,1,14,30,14.8,0.97,0.0654,0.68,0,0,0,0,14.8,0,0,0,0,0.242,100,164.21,0.15,985,2.1,277,0.7000000000000001 +2013,5,1,15,30,14.4,0.98,0.0661,0.68,0,0,0,0,14.4,0,0,0,0,0.24,100,153.09,0.15,985,2.1,275,0.7000000000000001 +2013,5,1,16,30,14,0.99,0.0664,0.68,0,0,0,0,14,0,0,0,0,0.23900000000000002,100,140.23,0.15,985,2.1,273,0.7000000000000001 +2013,5,1,17,30,13.8,1.01,0.0665,0.68,0,0,0,0,13.8,0,0,0,0,0.23800000000000002,100,126.97,0.15,985,2.1,271,0.7000000000000001 +2013,5,1,18,30,13.600000000000001,1.02,0.0661,0.68,0,0,0,0,13.600000000000001,0,0,0,0,0.23800000000000002,100,113.67,0.15,985,2.1,271,0.7000000000000001 +2013,5,1,19,30,13.5,1.05,0.0656,0.68,0,0,0,0,13.5,0,0,0,0,0.23800000000000002,100,100.51,0.15,986,2,268,0.7000000000000001 +2013,5,1,20,30,14.700000000000001,1.07,0.0659,0.68,18,182,26,1,13.5,18,182,0,26,0.23700000000000002,92.5,87.41,0.15,986,2,259,0.9 +2013,5,1,21,30,17,1.11,0.0669,0.68,56,606,210,1,13.9,56,606,0,210,0.23800000000000002,81.76,75.3,0.15,987,2.1,244,1.1 +2013,5,1,22,30,19.900000000000002,1.1400000000000001,0.0692,0.68,75,763,411,1,14.4,75,763,0,411,0.23900000000000002,70.79,63.9,0.15,987,2.1,213,1.2000000000000002 +2013,5,1,23,30,21.5,1.16,0.0745,0.68,88,832,578,0,14.600000000000001,88,832,0,578,0.23900000000000002,64.62,53.980000000000004,0.15,987,2.2,191,1.4000000000000001 +2013,5,2,0,30,23.8,1.19,0.07490000000000001,0.68,95,867,691,0,14.700000000000001,95,867,0,691,0.23900000000000002,56.69,46.54,0.15,987,2.4000000000000004,151,2.1 +2013,5,2,1,30,24.200000000000003,1.18,0.08070000000000001,0.68,100,874,740,0,15.100000000000001,100,874,0,740,0.24,56.96,42.9,0.15,986,2.5,139,2.4000000000000004 +2013,5,2,2,30,24.200000000000003,1.1400000000000001,0.0872,0.68,102,859,720,0,15.600000000000001,102,859,0,720,0.24,58.84,44.02,0.15,986,2.7,132,2.4000000000000004 +2013,5,2,3,30,23.8,1.07,0.0994,0.68,103,819,634,0,16,103,819,0,634,0.24,61.78,49.58,0.15,985,2.8000000000000003,127,2.4000000000000004 +2013,5,2,4,30,22.900000000000002,0.99,0.1269,0.68,104,727,486,0,16.400000000000002,104,727,0,486,0.24,66.81,58.31,0.15,986,3,124,2.4000000000000004 +2013,5,2,5,30,21.6,0.88,0.1567,0.68,94,568,298,1,16.900000000000002,94,568,0,298,0.241,74.62,69.01,0.15,986,3.1,122,2.2 +2013,5,2,6,30,20,0.79,0.1951,0.68,60,256,101,4,17.3,53,8,3,54,0.241,84.68,80.85000000000001,0.15,987,3.1,123,1.9000000000000001 +2013,5,2,7,30,18.7,0.68,0.2195,0.68,0,0,0,3,17.1,0,0,0,0,0.242,90.31,93.53,0.15,988,3.1,128,1.9000000000000001 +2013,5,2,8,30,17.900000000000002,0.59,0.2243,0.68,0,0,0,4,16.400000000000002,0,0,0,0,0.243,91.18,106.54,0.15,989,3,130,1.9000000000000001 +2013,5,2,9,30,17.3,0.51,0.2288,0.68,0,0,0,8,15.700000000000001,0,0,0,0,0.243,90.35000000000001,119.79,0.15,990,2.9000000000000004,131,1.7000000000000002 +2013,5,2,10,30,16.900000000000002,0.45,0.2321,0.68,0,0,0,4,15.100000000000001,0,0,0,0,0.244,89.36,133.11,0.15,990,2.9000000000000004,132,1.6 +2013,5,2,11,30,16.5,0.45,0.219,0.68,0,0,0,3,14.700000000000001,0,0,0,0,0.245,88.9,146.28,0.15,991,2.8000000000000003,135,1.4000000000000001 +2013,5,2,12,30,15.9,0.49,0.1956,0.68,0,0,0,8,14.200000000000001,0,0,0,0,0.246,89.69,158.71,0.15,991,2.8000000000000003,137,1.2000000000000002 +2013,5,2,13,30,15.4,0.53,0.1696,0.68,0,0,0,8,13.9,0,0,0,0,0.246,90.60000000000001,167.59,0.15,991,2.7,139,1.1 +2013,5,2,14,30,15,0.5700000000000001,0.1459,0.68,0,0,0,8,13.600000000000001,0,0,0,0,0.247,91.51,164.43,0.15,990,2.7,143,0.9 +2013,5,2,15,30,14.700000000000001,0.58,0.1307,0.68,0,0,0,8,13.5,0,0,0,0,0.247,92.44,153.22,0.15,990,2.6,146,0.9 +2013,5,2,16,30,14.5,0.5700000000000001,0.12200000000000001,0.68,0,0,0,8,13.5,0,0,0,0,0.248,93.48,140.33,0.15,990,2.6,148,0.9 +2013,5,2,17,30,14.4,0.5700000000000001,0.1179,0.68,0,0,0,8,13.5,0,0,0,0,0.249,94.06,127.06,0.15,990,2.5,150,0.9 +2013,5,2,18,30,14.200000000000001,0.56,0.11520000000000001,0.68,0,0,0,4,13.4,0,0,0,0,0.251,95.08,113.76,0.15,990,2.5,151,0.9 +2013,5,2,19,30,14,0.5700000000000001,0.1107,0.68,0,0,0,3,13.3,0,0,0,0,0.252,95.66,100.62,0.15,991,2.4000000000000004,153,0.8 +2013,5,2,20,30,14.4,0.58,0.1063,0.68,19,85,23,3,13.200000000000001,10,0,3,10,0.252,92.72,87.53,0.15,992,2.3000000000000003,156,1.1 +2013,5,2,21,30,15.600000000000001,0.59,0.0998,0.68,66,529,200,1,13.5,66,529,0,200,0.252,87.23,75.44,0.15,993,2.2,151,1.6 +2013,5,2,22,30,17.2,0.59,0.0911,0.68,86,721,401,1,13.5,86,721,0,401,0.252,78.79,64.08,0.15,993,2.1,141,1.9000000000000001 +2013,5,2,23,30,18.1,0.58,0.0854,0.68,97,814,573,1,13.200000000000001,97,814,0,573,0.252,73.07000000000001,54.2,0.15,993,2,135,2.1 +2013,5,3,0,30,20,0.55,0.08660000000000001,0.68,105,856,691,1,12.700000000000001,105,856,0,691,0.252,63,46.800000000000004,0.15,992,1.9000000000000001,131,2.1 +2013,5,3,1,30,20.8,0.53,0.0852,0.68,107,876,746,1,12.5,107,876,0,746,0.252,59.04,43.19,0.15,991,1.8,131,1.9000000000000001 +2013,5,3,2,30,21.3,0.52,0.08370000000000001,0.68,106,875,732,1,12.5,106,875,0,732,0.251,57.120000000000005,44.31,0.15,990,1.7000000000000002,128,1.8 +2013,5,3,3,30,21.5,0.56,0.0655,0.68,92,869,652,1,12.4,92,869,0,652,0.252,56.300000000000004,49.85,0.15,989,1.7000000000000002,122,1.7000000000000002 +2013,5,3,4,30,21.200000000000003,0.55,0.0659,0.68,84,817,510,1,12.4,84,817,0,510,0.252,57.04,58.550000000000004,0.15,989,1.6,113,1.6 +2013,5,3,5,30,20.3,0.55,0.0632,0.68,69,715,323,1,12.3,69,715,0,323,0.252,60.21,69.21000000000001,0.15,989,1.5,104,1.3 +2013,5,3,6,30,18.6,0.59,0.062,0.68,43,466,116,1,13,43,466,0,116,0.252,69.9,81.02,0.15,989,1.5,93,0.9 +2013,5,3,7,30,16.8,0.62,0.056,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.252,78.85000000000001,93.69,0.15,990,1.5,87,0.7000000000000001 +2013,5,3,8,30,15.8,0.64,0.0504,0.68,0,0,0,1,12.700000000000001,0,0,0,0,0.251,81.77,106.69,0.15,990,1.5,86,0.7000000000000001 +2013,5,3,9,30,15.100000000000001,0.66,0.047900000000000005,0.68,0,0,0,0,12.5,0,0,0,0,0.251,84.35000000000001,119.93,0.15,990,1.5,88,0.7000000000000001 +2013,5,3,10,30,14.700000000000001,0.6900000000000001,0.0475,0.68,0,0,0,0,12.3,0,0,0,0,0.249,85.73,133.25,0.15,990,1.5,92,0.8 +2013,5,3,11,30,14.600000000000001,0.72,0.047400000000000005,0.68,0,0,0,0,12.200000000000001,0,0,0,0,0.247,85.44,146.43,0.15,990,1.5,95,0.7000000000000001 +2013,5,3,12,30,14.9,0.74,0.047400000000000005,0.68,0,0,0,0,12,0,0,0,0,0.246,82.86,158.91,0.15,990,1.4000000000000001,102,0.5 +2013,5,3,13,30,14.8,0.76,0.0477,0.68,0,0,0,0,11.9,0,0,0,0,0.244,82.60000000000001,167.88,0.15,990,1.4000000000000001,186,0.30000000000000004 +2013,5,3,14,30,14,0.78,0.0483,0.68,0,0,0,0,11.8,0,0,0,0,0.244,86.56,164.64000000000001,0.15,989,1.4000000000000001,265,0.5 +2013,5,3,15,30,13,0.79,0.0487,0.68,0,0,0,0,11.8,0,0,0,0,0.243,92.17,153.34,0.15,989,1.4000000000000001,265,0.8 +2013,5,3,16,30,12,0.81,0.0499,0.68,0,0,0,0,11.700000000000001,0,0,0,0,0.243,97.98,140.43,0.15,988,1.4000000000000001,268,0.8 +2013,5,3,17,30,11.4,0.84,0.0512,0.68,0,0,0,0,11.4,0,0,0,0,0.243,100,127.15,0.15,988,1.4000000000000001,275,0.8 +2013,5,3,18,30,11.100000000000001,0.87,0.0504,0.68,0,0,0,0,11.100000000000001,0,0,0,0,0.243,100,113.86,0.15,989,1.3,281,0.8 +2013,5,3,19,30,10.9,0.89,0.0495,0.68,0,0,0,0,10.9,0,0,0,0,0.242,100,100.72,0.15,989,1.2000000000000002,280,0.8 +2013,5,3,20,30,12.3,0.92,0.0504,0.68,17,205,25,0,11.5,17,205,0,25,0.241,94.9,87.64,0.15,990,1.2000000000000002,277,1.1 +2013,5,3,21,30,15,0.9500000000000001,0.0495,0.68,52,656,215,0,11.9,52,656,0,215,0.241,81.99,75.58,0.15,990,1.1,279,1.5 +2013,5,3,22,30,18,1,0.046400000000000004,0.68,67,818,422,0,12.600000000000001,67,818,0,422,0.242,70.5,64.26,0.15,989,1.1,278,1.7000000000000002 +2013,5,3,23,30,19.6,1.02,0.0437,0.68,76,894,596,0,12.700000000000001,76,894,0,596,0.243,64.32000000000001,54.42,0.15,989,1.1,275,1.9000000000000001 +2013,5,4,0,30,22.6,0.99,0.0448,0.68,82,928,714,0,12,82,928,0,714,0.243,51.120000000000005,47.06,0.15,988,1.1,257,2.2 +2013,5,4,1,30,23.8,0.98,0.046400000000000004,0.68,85,941,767,0,11.5,85,941,0,767,0.243,45.9,43.480000000000004,0.15,987,1.1,247,2.3000000000000003 +2013,5,4,2,30,24.700000000000003,0.98,0.047900000000000005,0.68,85,935,751,0,11.200000000000001,85,935,0,751,0.243,42.62,44.6,0.15,985,1.1,240,2.2 +2013,5,4,3,30,25.200000000000003,1.02,0.0458,0.68,80,914,666,0,11.3,80,914,0,666,0.244,41.76,50.11,0.15,984,1.1,232,1.9000000000000001 +2013,5,4,4,30,25.200000000000003,1.02,0.046700000000000005,0.68,73,863,520,0,11.600000000000001,73,863,0,520,0.245,42.74,58.78,0.15,984,1.1,223,1.6 +2013,5,4,5,30,24.200000000000003,1.02,0.048,0.68,61,756,327,0,11.600000000000001,61,756,0,327,0.246,45.160000000000004,69.41,0.15,984,1.2000000000000002,213,1 +2013,5,4,6,30,22.400000000000002,0.96,0.0538,0.68,40,501,116,0,14.200000000000001,40,501,0,116,0.247,59.94,81.19,0.15,984,1.2000000000000002,204,0.7000000000000001 +2013,5,4,7,30,20.700000000000003,0.99,0.054400000000000004,0.68,0,0,0,0,11.8,0,0,0,0,0.248,56.89,93.84,0.15,985,1.2000000000000002,195,0.7000000000000001 +2013,5,4,8,30,19.400000000000002,1,0.0553,0.68,0,0,0,0,11,0,0,0,0,0.249,58.24,106.83,0.15,985,1.3,189,0.6000000000000001 +2013,5,4,9,30,18.2,1.01,0.056,0.68,0,0,0,0,10.700000000000001,0,0,0,0,0.25,61.72,120.06,0.15,986,1.4000000000000001,187,0.6000000000000001 +2013,5,4,10,30,17.1,1.02,0.056900000000000006,0.68,0,0,0,0,10.4,0,0,0,0,0.251,64.87,133.38,0.15,986,1.4000000000000001,187,0.7000000000000001 +2013,5,4,11,30,16.2,1.02,0.058300000000000005,0.68,0,0,0,0,10.5,0,0,0,0,0.251,69.10000000000001,146.58,0.15,987,1.5,183,0.8 +2013,5,4,12,30,15.3,1.04,0.060200000000000004,0.68,0,0,0,0,10.700000000000001,0,0,0,0,0.251,74.19,159.1,0.15,987,1.6,173,0.8 +2013,5,4,13,30,14.4,1.05,0.063,0.68,0,0,0,0,11.200000000000001,0,0,0,0,0.25,80.91,168.16,0.15,987,1.7000000000000002,164,0.9 +2013,5,4,14,30,13.9,1.05,0.06760000000000001,0.68,0,0,0,0,11.8,0,0,0,0,0.249,87.11,164.85,0.15,987,1.8,157,0.8 +2013,5,4,15,30,13.5,1.02,0.07440000000000001,0.68,0,0,0,0,12.5,0,0,0,0,0.247,93.58,153.47,0.15,986,2,152,0.8 +2013,5,4,16,30,13.4,0.9500000000000001,0.0845,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.247,99.01,140.52,0.15,986,2.1,150,0.8 +2013,5,4,17,30,13.3,0.8300000000000001,0.09820000000000001,0.68,0,0,0,0,13.3,0,0,0,0,0.247,100,127.24000000000001,0.15,987,2.2,150,0.9 +2013,5,4,18,30,13.200000000000001,0.71,0.11270000000000001,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.247,100,113.95,0.15,987,2.3000000000000003,149,0.9 +2013,5,4,19,30,13.3,0.58,0.1307,0.68,0,0,0,0,13.3,0,0,0,0,0.248,100,100.83,0.15,988,2.4000000000000004,144,0.9 +2013,5,4,20,30,14.700000000000001,0.49,0.1522,0.68,17,37,19,1,14.4,17,37,0,19,0.248,98.33,87.76,0.15,988,2.4000000000000004,139,1.2000000000000002 +2013,5,4,21,30,17.3,0.45,0.1715,0.68,83,407,183,1,14.9,83,407,0,183,0.248,85.94,75.73,0.15,989,2.5,129,1.7000000000000002 +2013,5,4,22,30,19.200000000000003,0.43,0.1834,0.68,119,590,374,1,15.3,119,590,0,374,0.249,78.27,64.43,0.15,989,2.5,118,2.1 +2013,5,4,23,30,20,0.43,0.1834,0.68,139,691,538,1,15.4,139,691,0,538,0.249,74.7,54.63,0.15,989,2.5,113,2.2 +2013,5,5,0,30,21.200000000000003,0.5,0.1512,0.68,134,774,659,1,15.200000000000001,134,774,0,659,0.249,68.8,47.32,0.15,988,2.5,104,1.8 +2013,5,5,1,30,21.6,0.54,0.1521,0.68,138,793,711,1,15.100000000000001,138,793,0,711,0.249,66.7,43.76,0.15,987,2.5,99,1.7000000000000002 +2013,5,5,2,30,21.8,0.55,0.1461,0.68,134,794,696,1,15.100000000000001,134,794,0,696,0.249,65.66,44.88,0.15,987,2.5,97,1.6 +2013,5,5,3,30,21.6,0.62,0.1336,0.68,121,775,615,1,15,121,775,0,615,0.25,66.08,50.370000000000005,0.15,986,2.6,96,1.6 +2013,5,5,4,30,21.1,0.64,0.13440000000000002,0.68,109,710,475,1,15,109,710,0,475,0.25,67.99,59,0.15,986,2.6,95,1.6 +2013,5,5,5,30,20.200000000000003,0.63,0.1331,0.68,89,584,292,1,15.100000000000001,89,584,0,292,0.25,72.7,69.60000000000001,0.15,986,2.6,92,1.4000000000000001 +2013,5,5,6,30,18.900000000000002,0.67,0.1496,0.68,54,289,97,1,15.600000000000001,54,289,0,97,0.25,81.11,81.36,0.15,987,2.6,88,1 +2013,5,5,7,30,17.8,0.6900000000000001,0.1554,0.68,0,0,0,0,15.8,0,0,0,0,0.251,87.82000000000001,93.99,0.15,987,2.6,86,0.7000000000000001 +2013,5,5,8,30,17.3,0.7000000000000001,0.14930000000000002,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.25,90.10000000000001,106.97,0.15,988,2.6,85,0.7000000000000001 +2013,5,5,9,30,16.900000000000002,0.72,0.1408,0.68,0,0,0,0,15.5,0,0,0,0,0.25,91.51,120.19,0.15,988,2.6,85,0.7000000000000001 +2013,5,5,10,30,16.400000000000002,0.72,0.1331,0.68,0,0,0,0,15.3,0,0,0,0,0.249,93.36,133.51,0.15,988,2.6,88,0.6000000000000001 +2013,5,5,11,30,16.1,0.73,0.1312,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.249,94.03,146.72,0.15,988,2.6,94,0.6000000000000001 +2013,5,5,12,30,15.8,0.72,0.1365,0.68,0,0,0,0,15,0,0,0,0,0.248,94.83,159.28,0.15,988,2.6,101,0.6000000000000001 +2013,5,5,13,30,15.600000000000001,0.71,0.14750000000000002,0.68,0,0,0,3,14.9,0,0,0,0,0.248,95.52,168.44,0.15,988,2.6,110,0.6000000000000001 +2013,5,5,14,30,15.4,0.71,0.1575,0.68,0,0,0,1,14.8,0,0,0,0,0.247,96.51,165.05,0.15,988,2.6,118,0.6000000000000001 +2013,5,5,15,30,15.200000000000001,0.72,0.163,0.68,0,0,0,1,14.8,0,0,0,0,0.247,97.62,153.59,0.15,988,2.6,123,0.7000000000000001 +2013,5,5,16,30,15,0.71,0.1665,0.68,0,0,0,0,14.700000000000001,0,0,0,0,0.247,98.16,140.62,0.15,987,2.6,128,0.7000000000000001 +2013,5,5,17,30,14.9,0.7000000000000001,0.17200000000000001,0.68,0,0,0,0,14.600000000000001,0,0,0,0,0.248,98.18,127.33,0.15,988,2.6,132,0.7000000000000001 +2013,5,5,18,30,14.8,0.6900000000000001,0.18180000000000002,0.68,0,0,0,1,14.5,0,0,0,0,0.249,98.15,114.04,0.15,988,2.6,136,0.7000000000000001 +2013,5,5,19,30,14.9,0.68,0.1885,0.68,0,0,0,1,14.4,0,0,0,0,0.25,97.09,100.93,0.15,989,2.6,139,0.7000000000000001 +2013,5,5,20,30,15.4,0.66,0.1899,0.68,15,26,16,1,14.4,15,26,0,16,0.251,93.94,87.87,0.15,990,2.6,139,0.9 +2013,5,5,21,30,16.3,0.65,0.1883,0.68,83,395,179,1,14.700000000000001,83,395,0,179,0.252,90.04,75.87,0.15,991,2.6,136,1.3 +2013,5,5,22,30,17.3,0.65,0.1782,0.68,114,602,372,1,14.700000000000001,114,602,0,372,0.253,84.84,64.61,0.15,991,2.6,131,1.6 +2013,5,5,23,30,17.8,0.65,0.1652,0.68,128,715,539,1,14.8,128,715,0,539,0.254,82.76,54.85,0.15,991,2.5,128,1.8 +2013,5,6,0,30,19.400000000000002,0.67,0.14980000000000002,0.68,131,778,656,1,14.8,131,778,0,656,0.254,74.98,47.57,0.15,990,2.5,119,1.9000000000000001 +2013,5,6,1,30,20,0.71,0.1451,0.68,132,802,708,1,14.700000000000001,132,802,0,708,0.255,71.53,44.04,0.15,989,2.5,117,2 +2013,5,6,2,30,20.1,0.72,0.1376,0.68,127,801,692,1,14.5,127,801,0,692,0.256,70.18,45.160000000000004,0.15,989,2.6,116,2 +2013,5,6,3,30,19.8,0.65,0.12140000000000001,0.68,115,785,613,1,14.4,115,785,0,613,0.257,71.06,50.620000000000005,0.15,988,2.6,117,2 +2013,5,6,4,30,19.400000000000002,0.67,0.12100000000000001,0.68,103,723,473,1,14.5,103,723,0,473,0.259,73.25,59.22,0.15,988,2.6,117,2 +2013,5,6,5,30,18.7,0.66,0.11520000000000001,0.68,83,603,291,1,14.5,83,603,0,291,0.26,76.65,69.79,0.15,989,2.7,117,1.7000000000000002 +2013,5,6,6,30,17.6,0.68,0.1178,0.68,49,326,97,1,14.700000000000001,49,326,0,97,0.261,83,81.52,0.15,989,2.7,119,1.2000000000000002 +2013,5,6,7,30,16.6,0.67,0.11660000000000001,0.68,0,0,0,1,14.8,0,0,0,0,0.263,88.85000000000001,94.14,0.15,990,2.7,124,0.8 +2013,5,6,8,30,16.2,0.65,0.114,0.68,0,0,0,8,14.600000000000001,0,0,0,0,0.264,90.25,107.10000000000001,0.15,990,2.7,127,0.8 +2013,5,6,9,30,15.8,0.63,0.11230000000000001,0.68,0,0,0,8,14.4,0,0,0,0,0.265,91.66,120.32000000000001,0.15,991,2.7,131,0.8 +2013,5,6,10,30,15.5,0.61,0.1085,0.68,0,0,0,1,14.200000000000001,0,0,0,0,0.265,92.11,133.64000000000001,0.15,991,2.7,134,0.7000000000000001 +2013,5,6,11,30,15.200000000000001,0.6,0.1048,0.68,0,0,0,0,14,0,0,0,0,0.266,92.57000000000001,146.85,0.15,991,2.7,134,0.8 +2013,5,6,12,30,15,0.59,0.1024,0.68,0,0,0,0,13.9,0,0,0,0,0.266,93.05,159.45000000000002,0.15,991,2.7,134,0.8 +2013,5,6,13,30,14.9,0.58,0.10070000000000001,0.68,0,0,0,1,13.8,0,0,0,0,0.266,93.06,168.71,0.15,990,2.7,136,0.8 +2013,5,6,14,30,14.8,0.5700000000000001,0.0983,0.68,0,0,0,1,13.700000000000001,0,0,0,0,0.267,93.27,165.25,0.15,990,2.7,138,0.8 +2013,5,6,15,30,14.600000000000001,0.56,0.0959,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.267,94.33,153.71,0.15,990,2.7,141,0.8 +2013,5,6,16,30,14.3,0.55,0.09290000000000001,0.68,0,0,0,0,13.600000000000001,0,0,0,0,0.268,95.85000000000001,140.71,0.15,990,2.7,145,0.7000000000000001 +2013,5,6,17,30,13.8,0.56,0.08800000000000001,0.68,0,0,0,0,13.600000000000001,0,0,0,0,0.268,98.54,127.42,0.15,991,2.6,147,0.7000000000000001 +2013,5,6,18,30,13.4,0.56,0.0814,0.68,0,0,0,0,13.4,0,0,0,0,0.269,100,114.14,0.15,991,2.6,150,0.8 +2013,5,6,19,30,13.200000000000001,0.56,0.07640000000000001,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.27,100,101.04,0.15,992,2.6,151,0.7000000000000001 +2013,5,6,20,30,14,0.56,0.0734,0.68,16,100,19,1,13.200000000000001,16,100,0,19,0.271,94.98,87.98,0.15,992,2.6,153,1 +2013,5,6,21,30,15.9,0.55,0.0717,0.68,57,552,191,1,13.700000000000001,57,552,0,191,0.271,86.51,76.02,0.15,993,2.6,145,1.5 +2013,5,6,22,30,17.7,0.55,0.0689,0.68,76,731,387,1,14,76,731,0,387,0.271,79.13,64.78,0.15,993,2.5,131,2 +2013,5,6,23,30,18.5,0.61,0.059500000000000004,0.68,83,824,555,1,14.100000000000001,83,824,0,555,0.271,75.45,55.06,0.15,993,2.5,125,2.1 +2013,5,7,0,30,19.900000000000002,0.5700000000000001,0.07300000000000001,0.68,96,849,666,1,14,96,849,0,666,0.271,68.67,47.82,0.15,993,2.5,119,2.3000000000000003 +2013,5,7,1,30,20.400000000000002,0.59,0.0685,0.68,96,869,718,1,13.9,96,869,0,718,0.271,66.39,44.32,0.15,992,2.5,117,2.3000000000000003 +2013,5,7,2,30,20.6,0.58,0.06810000000000001,0.68,95,867,704,1,13.8,95,867,0,704,0.271,65.16,45.44,0.15,991,2.4000000000000004,116,2.4000000000000004 +2013,5,7,3,30,20.5,0.63,0.0737,0.68,93,836,621,1,13.700000000000001,93,836,0,621,0.271,64.97,50.870000000000005,0.15,991,2.4000000000000004,115,2.4000000000000004 +2013,5,7,4,30,20.1,0.63,0.0745,0.68,85,777,480,1,13.5,85,777,0,480,0.272,65.95,59.44,0.15,991,2.4000000000000004,115,2.4000000000000004 +2013,5,7,5,30,19.3,0.6,0.0714,0.68,69,666,297,3,13.5,151,42,0,165,0.272,69,69.98,0.15,991,2.4000000000000004,115,2 +2013,5,7,6,30,17.900000000000002,0.61,0.0683,0.68,41,408,100,3,13.8,47,4,3,48,0.273,76.7,81.68,0.15,992,2.4000000000000004,118,1.3 +2013,5,7,7,30,16.8,0.59,0.06330000000000001,0.68,0,0,0,4,13.8,0,0,0,0,0.273,82.69,94.28,0.15,993,2.4000000000000004,124,0.9 +2013,5,7,8,30,16.1,0.58,0.059300000000000005,0.68,0,0,0,1,13.700000000000001,0,0,0,0,0.274,85.76,107.23,0.15,993,2.3000000000000003,130,0.9 +2013,5,7,9,30,15.600000000000001,0.56,0.0582,0.68,0,0,0,4,13.600000000000001,0,0,0,0,0.274,88.11,120.44,0.15,994,2.3000000000000003,134,0.8 +2013,5,7,10,30,15.100000000000001,0.54,0.0582,0.68,0,0,0,4,13.600000000000001,0,0,0,0,0.275,90.88,133.76,0.15,994,2.2,138,0.8 +2013,5,7,11,30,14.600000000000001,0.52,0.059300000000000005,0.68,0,0,0,8,13.600000000000001,0,0,0,0,0.275,93.54,146.98,0.15,994,2.2,141,0.8 +2013,5,7,12,30,14.200000000000001,0.5,0.0603,0.68,0,0,0,3,13.5,0,0,0,0,0.276,95.56,159.62,0.15,994,2.1,142,0.8 +2013,5,7,13,30,14,0.49,0.0596,0.68,0,0,0,0,13.5,0,0,0,0,0.277,96.54,168.98,0.15,993,2,141,0.8 +2013,5,7,14,30,14,0.5,0.0575,0.68,0,0,0,8,13.5,0,0,0,0,0.277,96.56,165.45000000000002,0.15,993,2,143,0.8 +2013,5,7,15,30,13.9,0.51,0.054900000000000004,0.68,0,0,0,1,13.5,0,0,0,0,0.278,97.17,153.83,0.15,993,2,147,0.8 +2013,5,7,16,30,13.8,0.53,0.052000000000000005,0.68,0,0,0,8,13.4,0,0,0,0,0.278,97.5,140.8,0.15,993,2,150,0.8 +2013,5,7,17,30,13.700000000000001,0.54,0.050100000000000006,0.68,0,0,0,7,13.3,0,0,0,0,0.279,97.69,127.51,0.15,993,2,152,0.9 +2013,5,7,18,30,13.700000000000001,0.56,0.049,0.68,0,0,0,0,13.3,0,0,0,0,0.281,97.34,114.23,0.15,993,2,152,0.9 +2013,5,7,19,30,13.700000000000001,0.58,0.0487,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.281,97.06,101.14,0.15,994,2,151,0.9 +2013,5,7,20,30,14.600000000000001,0.58,0.0492,0.68,15,144,19,1,13.3,15,144,0,19,0.28200000000000003,91.62,88.10000000000001,0.15,995,2,148,1.2000000000000002 +2013,5,7,21,30,16.2,0.59,0.0492,0.68,51,605,196,1,13.600000000000001,51,605,0,196,0.281,84.59,76.16,0.15,995,2,143,1.7000000000000002 +2013,5,7,22,30,17.8,0.59,0.047400000000000005,0.68,68,771,394,1,13.700000000000001,68,771,0,394,0.281,77.09,64.96000000000001,0.15,996,2,134,2.2 +2013,5,7,23,30,18.7,0.61,0.0425,0.68,75,854,562,1,13.700000000000001,75,854,0,562,0.28,72.59,55.27,0.15,996,2,129,2.4000000000000004 +2013,5,8,0,30,20.1,0.55,0.056600000000000004,0.68,88,876,674,1,13.4,88,876,0,674,0.279,65.28,48.06,0.15,995,2,121,2.6 +2013,5,8,1,30,20.5,0.5700000000000001,0.055,0.68,90,893,726,1,13.100000000000001,90,893,0,726,0.279,62.440000000000005,44.59,0.15,994,2,118,2.6 +2013,5,8,2,30,20.8,0.5700000000000001,0.0553,0.68,89,888,709,1,12.8,89,888,0,709,0.278,60.300000000000004,45.71,0.15,993,2,116,2.6 +2013,5,8,3,30,20.700000000000003,0.66,0.0524,0.68,83,867,627,1,12.600000000000001,83,867,0,627,0.277,59.730000000000004,51.11,0.15,993,2,115,2.5 +2013,5,8,4,30,20.400000000000002,0.68,0.0533,0.68,76,812,486,1,12.4,76,812,0,486,0.277,59.99,59.65,0.15,993,2,115,2.4000000000000004 +2013,5,8,5,30,19.5,0.67,0.0507,0.68,62,707,302,1,12.3,62,707,0,302,0.277,63,70.16,0.15,993,2,114,1.8 +2013,5,8,6,30,18.1,0.7000000000000001,0.0517,0.68,38,450,102,1,12.700000000000001,38,450,0,102,0.278,70.8,81.83,0.15,993,2,116,1.2000000000000002 +2013,5,8,7,30,16.8,0.7000000000000001,0.0487,0.68,0,0,0,0,12.8,0,0,0,0,0.277,77.24,94.42,0.15,994,1.9000000000000001,120,0.8 +2013,5,8,8,30,16,0.67,0.0453,0.68,0,0,0,0,12.5,0,0,0,0,0.276,79.83,107.35000000000001,0.15,995,1.9000000000000001,123,0.8 +2013,5,8,9,30,15.4,0.66,0.046400000000000004,0.68,0,0,0,0,12.3,0,0,0,0,0.275,82.04,120.55,0.15,995,1.9000000000000001,126,0.8 +2013,5,8,10,30,14.9,0.68,0.0482,0.68,0,0,0,1,12.3,0,0,0,0,0.273,84.28,133.87,0.15,995,1.9000000000000001,131,0.8 +2013,5,8,11,30,14.4,0.68,0.046200000000000005,0.68,0,0,0,1,12.200000000000001,0,0,0,0,0.272,86.54,147.11,0.15,995,1.9000000000000001,137,0.8 +2013,5,8,12,30,13.9,0.67,0.0437,0.68,0,0,0,3,12.100000000000001,0,0,0,0,0.271,89.09,159.78,0.15,995,1.8,144,0.8 +2013,5,8,13,30,13.4,0.67,0.0426,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.27,91.93,169.24,0.15,994,1.8,151,0.8 +2013,5,8,14,30,13,0.68,0.0413,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.269,94.38,165.64000000000001,0.15,994,1.8,157,0.8 +2013,5,8,15,30,12.600000000000001,0.6900000000000001,0.04,0.68,0,0,0,1,12.100000000000001,0,0,0,0,0.267,96.92,153.94,0.15,994,1.8,161,0.8 +2013,5,8,16,30,12.3,0.71,0.038900000000000004,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.266,98.78,140.9,0.15,993,1.8,163,0.8 +2013,5,8,17,30,12,0.73,0.0378,0.68,0,0,0,0,12,0,0,0,0,0.265,100,127.60000000000001,0.15,994,1.8,164,0.8 +2013,5,8,18,30,11.8,0.74,0.0366,0.68,0,0,0,0,11.8,0,0,0,0,0.264,100,114.33,0.15,994,1.8,165,0.8 +2013,5,8,19,30,11.700000000000001,0.76,0.034800000000000005,0.68,0,0,0,1,11.700000000000001,0,0,0,0,0.263,100,101.24000000000001,0.15,995,1.8,167,0.8 +2013,5,8,20,30,12.9,0.76,0.0333,0.68,14,190,20,1,12.200000000000001,14,190,0,20,0.262,95.62,88.21000000000001,0.15,996,1.8,169,1.1 +2013,5,8,21,30,15.3,0.77,0.0316,0.68,45,647,199,1,12.600000000000001,45,647,0,199,0.262,84.02,76.3,0.15,996,1.8,162,1.5 +2013,5,8,22,30,17.7,0.78,0.0296,0.68,59,805,398,1,13.100000000000001,59,805,0,398,0.262,74.35000000000001,65.13,0.15,996,1.8,145,1.9000000000000001 +2013,5,8,23,30,18.8,0.79,0.0284,0.68,67,878,565,1,13.100000000000001,67,878,0,565,0.261,69.60000000000001,55.47,0.15,996,1.8,135,2.2 +2013,5,9,0,30,20.5,0.51,0.0497,0.68,85,885,673,0,13,85,885,0,673,0.261,62.24,48.31,0.14,995,1.9000000000000001,124,2.1 +2013,5,9,1,30,21.1,0.53,0.0473,0.68,85,900,723,1,13,85,900,0,723,0.261,59.99,44.86,0.14,994,2,120,2.1 +2013,5,9,2,30,21.3,0.54,0.049100000000000005,0.68,86,893,707,1,13,86,893,0,707,0.26,59.32,45.97,0.14,993,2,118,2 +2013,5,9,3,30,21.3,0.61,0.0488,0.68,81,867,623,1,13,81,867,0,623,0.26,59.22,51.35,0.14,993,2.1,119,2 +2013,5,9,4,30,20.900000000000002,0.66,0.048,0.68,73,815,482,1,13,73,815,0,482,0.261,60.64,59.85,0.14,993,2.1,122,1.8 +2013,5,9,5,30,20,0.67,0.048600000000000004,0.68,60,703,297,3,13.200000000000001,153,51,0,171,0.261,64.73,70.33,0.14,993,2.2,126,1.5 +2013,5,9,6,30,18.6,0.7000000000000001,0.0536,0.68,38,436,98,3,13.8,47,8,3,48,0.262,73.84,81.98,0.14,993,2.2,130,1 +2013,5,9,7,30,17.5,0.7000000000000001,0.0572,0.68,0,0,0,3,14.100000000000001,0,0,0,0,0.263,80.24,94.55,0.14,994,2.3000000000000003,134,0.9 +2013,5,9,8,30,17,0.67,0.058300000000000005,0.68,0,0,0,3,14.100000000000001,0,0,0,0,0.264,82.79,107.47,0.14,994,2.3000000000000003,136,0.9 +2013,5,9,9,30,16.6,0.63,0.0594,0.68,0,0,0,0,14.100000000000001,0,0,0,0,0.265,85.32000000000001,120.66,0.14,995,2.3000000000000003,139,0.9 +2013,5,9,10,30,16.2,0.6,0.060500000000000005,0.68,0,0,0,1,14.200000000000001,0,0,0,0,0.266,87.76,133.98,0.14,995,2.3000000000000003,142,0.8 +2013,5,9,11,30,15.8,0.56,0.0626,0.68,0,0,0,1,14.200000000000001,0,0,0,0,0.267,90.13,147.23,0.14,995,2.3000000000000003,147,0.8 +2013,5,9,12,30,15.4,0.53,0.06470000000000001,0.68,0,0,0,3,14.200000000000001,0,0,0,0,0.268,92.32000000000001,159.94,0.14,995,2.3000000000000003,151,0.7000000000000001 +2013,5,9,13,30,15,0.52,0.0656,0.68,0,0,0,3,14.100000000000001,0,0,0,0,0.268,94.16,169.49,0.14,994,2.2,158,0.7000000000000001 +2013,5,9,14,30,14.700000000000001,0.52,0.06280000000000001,0.68,0,0,0,3,14,0,0,0,0,0.268,95.4,165.82,0.14,994,2.2,164,0.7000000000000001 +2013,5,9,15,30,14.200000000000001,0.52,0.0597,0.68,0,0,0,1,13.9,0,0,0,0,0.268,97.82000000000001,154.05,0.14,993,2.2,168,0.7000000000000001 +2013,5,9,16,30,13.700000000000001,0.53,0.056600000000000004,0.68,0,0,0,3,13.700000000000001,0,0,0,0,0.267,100,140.99,0.14,993,2.2,171,0.7000000000000001 +2013,5,9,17,30,13.3,0.54,0.053200000000000004,0.68,0,0,0,3,13.3,0,0,0,0,0.265,100,127.68,0.14,993,2.1,172,0.8 +2013,5,9,18,30,13,0.55,0.049100000000000005,0.68,0,0,0,3,13,0,0,0,0,0.263,100,114.42,0.14,993,2.1,174,0.8 +2013,5,9,19,30,12.8,0.56,0.0468,0.68,0,0,0,1,12.8,0,0,0,0,0.262,100,101.35000000000001,0.14,994,2.1,175,0.8 +2013,5,9,20,30,13.700000000000001,0.56,0.0448,0.68,14,137,18,1,13.200000000000001,14,137,0,18,0.261,96.8,88.32000000000001,0.14,995,2.1,176,1.1 +2013,5,9,21,30,15.600000000000001,0.5700000000000001,0.043000000000000003,0.68,49,608,191,1,13.600000000000001,49,608,0,191,0.261,88.10000000000001,76.45,0.14,995,2.1,168,1.7000000000000002 +2013,5,9,22,30,17.5,0.5700000000000001,0.041600000000000005,0.68,65,774,388,1,14.3,65,774,0,388,0.261,81.71000000000001,65.3,0.14,995,2.1,150,2.1 +2013,5,9,23,30,18.400000000000002,0.6,0.0397,0.68,73,853,554,1,14.9,73,853,0,554,0.261,80.02,55.68,0.14,995,2.1,141,2.3000000000000003 +2013,5,10,0,30,19.8,0.79,0.030000000000000002,0.68,72,900,667,1,15,72,900,0,667,0.26,74.05,48.550000000000004,0.14,994,2.2,128,2.6 +2013,5,10,1,30,20.3,0.77,0.030500000000000003,0.68,74,913,719,1,14.9,74,913,0,719,0.259,71.09,45.12,0.14,993,2.2,124,2.7 +2013,5,10,2,30,20.400000000000002,0.74,0.0325,0.68,75,906,702,3,14.700000000000001,421,98,0,488,0.259,69.91,46.230000000000004,0.14,993,2.2,119,2.7 +2013,5,10,3,30,20.3,0.45,0.0757,0.68,95,830,611,3,14.5,344,59,0,380,0.26,69.25,51.58,0.14,992,2.2,115,2.7 +2013,5,10,4,30,19.900000000000002,0.48,0.0704,0.68,83,781,473,1,14.3,83,781,0,473,0.26,69.95,60.050000000000004,0.14,992,2.1,114,2.6 +2013,5,10,5,30,19.200000000000003,0.48,0.061500000000000006,0.68,66,680,293,1,14.100000000000001,66,680,0,293,0.261,72.34,70.5,0.14,992,2,115,2.1 +2013,5,10,6,30,18.1,0.53,0.061500000000000006,0.68,39,413,96,1,14.100000000000001,39,413,0,96,0.261,77.66,82.13,0.14,993,1.9000000000000001,119,1.4000000000000001 +2013,5,10,7,30,17.2,0.54,0.0599,0.68,0,0,0,0,13.9,0,0,0,0,0.261,80.91,94.68,0.14,993,1.9000000000000001,124,1.1 +2013,5,10,8,30,16.5,0.52,0.056,0.68,0,0,0,0,13.600000000000001,0,0,0,0,0.262,83.06,107.58,0.14,994,1.8,129,1 +2013,5,10,9,30,16,0.55,0.0551,0.68,0,0,0,0,13.5,0,0,0,0,0.262,85.03,120.77,0.14,994,1.7000000000000002,134,0.9 +2013,5,10,10,30,15.5,0.5700000000000001,0.051500000000000004,0.68,0,0,0,0,13.5,0,0,0,0,0.262,87.76,134.08,0.14,994,1.7000000000000002,139,0.8 +2013,5,10,11,30,15.100000000000001,0.58,0.0482,0.68,0,0,0,1,13.5,0,0,0,0,0.263,89.95,147.34,0.14,994,1.7000000000000002,141,0.8 +2013,5,10,12,30,15,0.6,0.0477,0.68,0,0,0,0,13.4,0,0,0,0,0.263,90.39,160.09,0.14,994,1.7000000000000002,143,0.8 +2013,5,10,13,30,14.9,0.63,0.0482,0.68,0,0,0,1,13.4,0,0,0,0,0.263,90.97,169.74,0.14,994,1.7000000000000002,145,0.8 +2013,5,10,14,30,14.9,0.63,0.0488,0.68,0,0,0,0,13.4,0,0,0,0,0.263,90.85000000000001,166,0.14,993,1.7000000000000002,145,0.9 +2013,5,10,15,30,14.8,0.63,0.050100000000000006,0.68,0,0,0,0,13.4,0,0,0,0,0.262,91.36,154.16,0.14,993,1.7000000000000002,147,0.9 +2013,5,10,16,30,14.8,0.63,0.050800000000000005,0.68,0,0,0,0,13.4,0,0,0,0,0.262,91.41,141.08,0.14,993,1.7000000000000002,149,0.9 +2013,5,10,17,30,14.8,0.64,0.049100000000000005,0.68,0,0,0,0,13.5,0,0,0,0,0.262,91.8,127.77,0.14,993,1.8,152,0.9 +2013,5,10,18,30,14.700000000000001,0.64,0.0453,0.68,0,0,0,0,13.5,0,0,0,0,0.262,92.8,114.51,0.14,993,1.9000000000000001,155,0.9 +2013,5,10,19,30,14.600000000000001,0.61,0.0449,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.262,94.27,101.45,0.14,994,2,157,0.9 +2013,5,10,20,30,15.200000000000001,0.56,0.0487,0.68,13,121,17,1,14,13,121,0,17,0.262,92.4,88.43,0.14,994,2.1,158,1.2000000000000002 +2013,5,10,21,30,16.3,0.51,0.0584,0.68,53,570,185,1,14.600000000000001,53,570,0,185,0.263,89.81,76.59,0.14,994,2.2,155,1.8 +2013,5,10,22,30,17.6,0.48,0.067,0.68,75,728,377,3,15.200000000000001,188,39,0,204,0.264,85.92,65.47,0.14,994,2.3000000000000003,148,2.1 +2013,5,10,23,30,18.3,0.46,0.0653,0.68,86,812,541,1,15.9,86,812,0,541,0.264,85.74,55.88,0.14,994,2.3000000000000003,142,2.3000000000000003 +2013,5,11,0,30,19.8,0.34,0.085,0.68,103,830,650,3,16.3,395,96,0,458,0.263,80.11,48.78,0.14,992,2.3000000000000003,129,2.7 +2013,5,11,1,30,20.5,0.38,0.06620000000000001,0.68,96,867,705,3,16.1,165,26,0,183,0.262,75.78,45.38,0.14,992,2.3000000000000003,125,2.8000000000000003 +2013,5,11,2,30,20.6,0.33,0.0732,0.68,99,852,685,2,15.700000000000001,443,157,0,551,0.261,73.61,46.480000000000004,0.14,991,2.4000000000000004,122,2.8000000000000003 +2013,5,11,3,30,20.5,0.38,0.0862,0.68,100,811,601,4,15.5,217,24,0,232,0.26,73.07000000000001,51.81,0.14,990,2.4000000000000004,120,2.8000000000000003 +2013,5,11,4,30,19.900000000000002,0.37,0.08950000000000001,0.68,92,744,461,3,15.5,258,59,0,287,0.26,75.78,60.25,0.14,990,2.4000000000000004,120,2.6 +2013,5,11,5,30,19,0.35000000000000003,0.0806,0.68,72,635,282,3,15.700000000000001,117,21,0,124,0.26,81.38,70.67,0.14,991,2.3000000000000003,122,2 +2013,5,11,6,30,17.6,0.38,0.0765,0.68,42,359,90,3,16.1,34,0,3,34,0.26,90.84,82.27,0.14,992,2.3000000000000003,125,1.4000000000000001 +2013,5,11,7,30,16.3,0.4,0.0703,0.68,0,0,0,3,15.8,0,0,0,0,0.261,96.67,94.8,0.14,992,2.2,128,1 +2013,5,11,8,30,15.600000000000001,0.41000000000000003,0.0635,0.68,0,0,0,3,15.4,0,0,0,0,0.261,98.77,107.7,0.14,993,2.1,130,1 +2013,5,11,9,30,15.200000000000001,0.42,0.06330000000000001,0.68,0,0,0,1,15,0,0,0,0,0.26,98.73,120.87,0.14,993,2,133,1 +2013,5,11,10,30,14.8,0.42,0.061700000000000005,0.68,0,0,0,1,14.600000000000001,0,0,0,0,0.26,98.55,134.18,0.14,994,1.8,136,0.9 +2013,5,11,11,30,14.3,0.44,0.0574,0.68,0,0,0,1,14.100000000000001,0,0,0,0,0.259,98.87,147.44,0.14,993,1.7000000000000002,141,0.9 +2013,5,11,12,30,13.9,0.47000000000000003,0.0505,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.259,98.93,160.23,0.14,993,1.5,147,0.8 +2013,5,11,13,30,13.4,0.48,0.0456,0.68,0,0,0,1,13.4,0,0,0,0,0.259,99.81,169.98,0.14,992,1.4000000000000001,150,0.8 +2013,5,11,14,30,13.100000000000001,0.49,0.044500000000000005,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.259,99.71000000000001,166.18,0.14,992,1.4000000000000001,151,0.8 +2013,5,11,15,30,12.9,0.5,0.0461,0.68,0,0,0,1,12.700000000000001,0,0,0,0,0.259,99,154.27,0.14,991,1.4000000000000001,153,0.9 +2013,5,11,16,30,12.8,0.5,0.0502,0.68,0,0,0,1,12.600000000000001,0,0,0,0,0.258,98.58,141.17000000000002,0.14,991,1.5,155,0.9 +2013,5,11,17,30,12.8,0.5,0.0526,0.68,0,0,0,3,12.5,0,0,0,0,0.258,97.86,127.86,0.14,991,1.5,156,0.8 +2013,5,11,18,30,12.9,0.5,0.0529,0.68,0,0,0,3,12.5,0,0,0,0,0.258,97.39,114.60000000000001,0.14,991,1.6,156,0.8 +2013,5,11,19,30,13,0.5,0.0524,0.68,0,0,0,3,12.5,0,0,0,0,0.257,96.57000000000001,101.56,0.14,992,1.6,152,0.8 +2013,5,11,20,30,14,0.5,0.0517,0.68,13,110,16,1,12.600000000000001,13,110,0,16,0.257,91.14,88.54,0.14,992,1.6,148,1 +2013,5,11,21,30,15.600000000000001,0.49,0.0521,0.68,51,592,187,1,13.600000000000001,51,592,0,187,0.257,88.13,76.73,0.14,993,1.7000000000000002,145,1.4000000000000001 +2013,5,11,22,30,17.2,0.46,0.054,0.68,70,760,384,1,14.3,70,760,0,384,0.257,83.17,65.64,0.14,993,1.7000000000000002,137,1.7000000000000002 +2013,5,11,23,30,18.1,0.45,0.0558,0.68,82,838,549,1,14.700000000000001,82,838,0,549,0.257,80.72,56.08,0.14,993,1.7000000000000002,132,1.9000000000000001 +2013,5,12,0,30,19.900000000000002,0.43,0.0585,0.68,89,872,661,1,14.700000000000001,89,872,0,661,0.257,71.95,49.02,0.14,992,1.8,116,2 +2013,5,12,1,30,20.5,0.5,0.060500000000000005,0.68,92,884,710,1,14.4,92,884,0,710,0.257,68.09,45.63,0.14,991,1.9000000000000001,110,2 +2013,5,12,2,30,20.900000000000002,0.53,0.0574,0.68,89,883,695,1,14.200000000000001,89,883,0,695,0.257,65.72,46.730000000000004,0.14,990,1.9000000000000001,107,2 +2013,5,12,3,30,21,0.52,0.0753,0.68,94,839,610,1,14.3,94,839,0,610,0.256,65.39,52.04,0.14,990,1.8,106,2.1 +2013,5,12,4,30,20.700000000000003,0.56,0.0648,0.68,80,794,472,1,14.200000000000001,80,794,0,472,0.256,66.23,60.44,0.14,989,1.8,104,2 +2013,5,12,5,30,19.8,0.5700000000000001,0.0558,0.68,63,693,290,1,14.3,63,693,0,290,0.255,70.60000000000001,70.83,0.14,989,1.8,105,1.5 +2013,5,12,6,30,18.3,0.64,0.057800000000000004,0.68,37,416,92,1,15.100000000000001,37,416,0,92,0.254,81.39,82.41,0.14,990,1.9000000000000001,110,0.9 +2013,5,12,7,30,16.900000000000002,0.65,0.0587,0.68,0,0,0,1,15,0,0,0,0,0.254,88.51,94.92,0.14,990,1.9000000000000001,118,0.7000000000000001 +2013,5,12,8,30,16.3,0.62,0.057800000000000004,0.68,0,0,0,3,15,0,0,0,0,0.253,91.96000000000001,107.8,0.14,991,1.9000000000000001,125,0.7000000000000001 +2013,5,12,9,30,15.8,0.6,0.060500000000000005,0.68,0,0,0,0,15,0,0,0,0,0.253,95.19,120.97,0.14,991,2,130,0.7000000000000001 +2013,5,12,10,30,15.4,0.59,0.061200000000000004,0.68,0,0,0,0,15,0,0,0,0,0.253,97.73,134.27,0.14,991,2,135,0.7000000000000001 +2013,5,12,11,30,15,0.55,0.061200000000000004,0.68,0,0,0,1,15,0,0,0,0,0.252,100,147.55,0.14,991,2.1,138,0.7000000000000001 +2013,5,12,12,30,14.700000000000001,0.51,0.06380000000000001,0.68,0,0,0,1,14.700000000000001,0,0,0,0,0.252,100,160.36,0.14,990,2.1,142,0.7000000000000001 +2013,5,12,13,30,14.5,0.5,0.0658,0.68,0,0,0,1,14.5,0,0,0,0,0.251,100,170.22,0.14,990,2.1,142,0.7000000000000001 +2013,5,12,14,30,14.4,0.49,0.0645,0.68,0,0,0,3,14.4,0,0,0,0,0.251,100,166.35,0.14,989,2.2,141,0.6000000000000001 +2013,5,12,15,30,14.4,0.56,0.07150000000000001,0.68,0,0,0,1,14.4,0,0,0,0,0.251,100,154.37,0.14,988,2.2,143,0.6000000000000001 +2013,5,12,16,30,14.200000000000001,0.6,0.0698,0.68,0,0,0,3,14.200000000000001,0,0,0,0,0.251,100,141.25,0.14,988,2.2,148,0.6000000000000001 +2013,5,12,17,30,14.100000000000001,0.58,0.06570000000000001,0.68,0,0,0,3,14.100000000000001,0,0,0,0,0.251,100,127.94,0.14,988,2.3000000000000003,150,0.6000000000000001 +2013,5,12,18,30,14.200000000000001,0.65,0.0772,0.68,0,0,0,4,14.200000000000001,0,0,0,0,0.251,100,114.7,0.14,988,2.3000000000000003,145,0.6000000000000001 +2013,5,12,19,30,14.4,0.68,0.0821,0.68,0,0,0,8,14.4,0,0,0,0,0.251,100,101.66,0.14,988,2.4000000000000004,142,0.6000000000000001 +2013,5,12,20,30,14.8,0.67,0.0818,0.68,12,61,14,1,14.600000000000001,12,61,0,14,0.251,98.5,88.65,0.14,989,2.4000000000000004,145,0.5 +2013,5,12,21,30,15.600000000000001,0.6900000000000001,0.0869,0.68,58,514,175,7,15.100000000000001,94,44,3,103,0.251,96.78,76.87,0.14,989,2.5,151,0.6000000000000001 +2013,5,12,22,30,16.8,0.6900000000000001,0.0835,0.68,79,702,367,8,15.8,208,69,0,236,0.251,93.67,65.81,0.14,989,2.5,146,0.8 +2013,5,12,23,30,17.5,0.67,0.0729,0.68,87,800,531,1,16.6,87,800,0,531,0.251,94.31,56.28,0.14,989,2.5,138,0.8 +2013,5,13,0,30,19.6,0.64,0.0882,0.68,101,826,640,8,16.900000000000002,315,31,0,335,0.249,84.23,49.25,0.14,987,2.5,84,1 +2013,5,13,1,30,20.200000000000003,0.7000000000000001,0.0784,0.68,98,854,693,8,16.5,415,77,0,469,0.248,79.07000000000001,45.88,0.14,986,2.5,63,1.1 +2013,5,13,2,30,20.3,0.72,0.0745,0.68,96,853,678,8,16,250,24,0,266,0.246,76.35000000000001,46.97,0.14,985,2.5,51,1 +2013,5,13,3,30,20.1,0.78,0.09330000000000001,0.68,99,805,591,7,15.9,177,24,0,192,0.246,76.77,52.25,0.14,984,2.6,56,0.9 +2013,5,13,4,30,19.6,0.8200000000000001,0.095,0.68,89,742,453,8,16.2,280,132,0,345,0.247,80.72,60.63,0.14,984,2.6,74,0.8 +2013,5,13,5,30,19,0.79,0.0931,0.68,72,618,274,1,16.5,72,618,0,274,0.247,85.52,70.99,0.14,984,2.7,85,0.6000000000000001 +2013,5,13,6,30,18.1,0.79,0.1017,0.68,42,321,84,8,17,52,63,3,60,0.247,93.25,82.54,0.14,984,2.7,79,0.5 +2013,5,13,7,30,17.2,0.79,0.09720000000000001,0.68,0,0,0,8,16.5,0,0,0,0,0.248,95.48,95.04,0.14,985,2.8000000000000003,65,0.5 +2013,5,13,8,30,16.7,0.79,0.08850000000000001,0.68,0,0,0,7,16.2,0,0,0,0,0.249,97.10000000000001,107.9,0.14,985,2.8000000000000003,65,0.6000000000000001 +2013,5,13,9,30,16.400000000000002,0.78,0.0816,0.68,0,0,0,8,16.2,0,0,0,0,0.249,98.61,121.06,0.14,985,2.8000000000000003,63,0.6000000000000001 +2013,5,13,10,30,16.1,0.74,0.0815,0.68,0,0,0,8,16.1,0,0,0,0,0.251,100,134.36,0.14,985,2.9000000000000004,53,0.6000000000000001 +2013,5,13,11,30,15.8,0.72,0.08320000000000001,0.68,0,0,0,8,15.8,0,0,0,0,0.253,100,147.64000000000001,0.14,985,3,41,0.6000000000000001 +2013,5,13,12,30,15.700000000000001,0.71,0.0839,0.68,0,0,0,4,15.700000000000001,0,0,0,0,0.255,100,160.49,0.14,984,3,29,0.6000000000000001 +2013,5,13,13,30,15.600000000000001,0.7000000000000001,0.08410000000000001,0.68,0,0,0,8,15.600000000000001,0,0,0,0,0.257,100,170.45000000000002,0.14,983,3.1,17,0.6000000000000001 +2013,5,13,14,30,15.4,0.68,0.0826,0.68,0,0,0,7,15.4,0,0,0,0,0.259,100,166.52,0.14,983,3.1,182,0.6000000000000001 +2013,5,13,15,30,15.200000000000001,0.6900000000000001,0.08360000000000001,0.68,0,0,0,4,15.200000000000001,0,0,0,0,0.261,100,154.48,0.14,982,3.2,348,0.6000000000000001 +2013,5,13,16,30,15.100000000000001,0.6900000000000001,0.08030000000000001,0.68,0,0,0,8,15.100000000000001,0,0,0,0,0.263,100,141.34,0.14,982,3.3000000000000003,333,0.6000000000000001 +2013,5,13,17,30,15,0.6900000000000001,0.0775,0.68,0,0,0,8,15,0,0,0,0,0.264,100,128.03,0.14,981,3.3000000000000003,316,0.6000000000000001 +2013,5,13,18,30,15,0.6900000000000001,0.0762,0.68,0,0,0,6,15,0,0,0,0,0.265,100,114.79,0.14,981,3.4000000000000004,303,0.6000000000000001 +2013,5,13,19,30,15,0.68,0.075,0.68,0,0,0,6,15,0,0,0,0,0.265,100,101.76,0.14,982,3.4000000000000004,292,0.6000000000000001 +2013,5,13,20,30,15.4,0.65,0.0713,0.68,11,62,13,8,15.3,4,0,3,4,0.264,99.5,88.76,0.14,982,3.4000000000000004,276,0.7000000000000001 +2013,5,13,21,30,16,0.67,0.0663,0.68,52,528,171,8,15.8,57,4,3,58,0.264,98.62,77.01,0.14,982,3.4000000000000004,258,0.9 +2013,5,13,22,30,16.7,0.71,0.0616,0.68,70,713,360,8,16.3,129,20,0,138,0.264,97.18,65.97,0.14,982,3.4000000000000004,246,1.1 +2013,5,13,23,30,17.1,0.74,0.0546,0.68,77,804,521,4,16.8,104,21,0,116,0.264,98.13,56.480000000000004,0.14,982,3.4000000000000004,242,1.1 +2013,5,14,0,30,18.400000000000002,0.81,0.051300000000000005,0.68,81,850,633,4,17,271,24,0,287,0.264,91.58,49.47,0.14,981,3.3000000000000003,253,1.2000000000000002 +2013,5,14,1,30,19.3,0.84,0.0497,0.68,83,869,685,2,16.6,433,126,0,520,0.264,84.60000000000001,46.12,0.14,980,3.2,264,1.3 +2013,5,14,2,30,20.200000000000003,0.85,0.0483,0.68,81,871,673,3,16,408,83,0,464,0.264,76.86,47.21,0.14,979,2.9000000000000004,268,1.5 +2013,5,14,3,30,20.900000000000002,0.7000000000000001,0.07,0.68,88,824,591,1,15.4,88,824,0,591,0.265,70.73,52.46,0.14,978,2.7,265,1.6 +2013,5,14,4,30,21.1,0.7000000000000001,0.0734,0.68,81,768,456,1,14.8,81,768,0,456,0.265,67.44,60.81,0.14,978,2.4000000000000004,259,1.5 +2013,5,14,5,30,20.5,0.73,0.07440000000000001,0.68,67,652,278,3,14.600000000000001,148,51,0,164,0.264,68.88,71.14,0.14,978,2.2,254,1.2000000000000002 +2013,5,14,6,30,18.900000000000002,0.78,0.0746,0.68,38,376,86,3,15.100000000000001,43,8,3,44,0.263,78.48,82.67,0.14,979,2,249,0.9 +2013,5,14,7,30,17.400000000000002,0.8300000000000001,0.0709,0.68,0,0,0,4,14.100000000000001,0,0,0,0,0.262,80.78,95.15,0.14,979,1.9000000000000001,245,0.8 +2013,5,14,8,30,16.5,0.86,0.062200000000000005,0.68,0,0,0,8,13.4,0,0,0,0,0.261,81.85000000000001,108,0.14,980,1.9000000000000001,247,0.8 +2013,5,14,9,30,15.8,0.87,0.053700000000000005,0.68,0,0,0,4,12.9,0,0,0,0,0.259,82.79,121.15,0.14,980,1.8,252,0.8 +2013,5,14,10,30,15.100000000000001,0.86,0.049100000000000005,0.68,0,0,0,7,12.5,0,0,0,0,0.258,84.60000000000001,134.45,0.14,981,1.8,255,0.8 +2013,5,14,11,30,14.4,0.84,0.048100000000000004,0.68,0,0,0,4,12.200000000000001,0,0,0,0,0.259,86.47,147.73,0.14,981,1.7000000000000002,254,0.9 +2013,5,14,12,30,13.700000000000001,0.8,0.046400000000000004,0.68,0,0,0,3,11.8,0,0,0,0,0.259,88.07000000000001,160.61,0.14,981,1.6,252,0.9 +2013,5,14,13,30,13,0.79,0.0453,0.68,0,0,0,7,11.3,0,0,0,0,0.26,89.64,170.67000000000002,0.14,981,1.6,248,0.9 +2013,5,14,14,30,12.4,0.8,0.0449,0.68,0,0,0,8,11,0,0,0,0,0.261,91.05,166.68,0.14,981,1.5,247,0.9 +2013,5,14,15,30,12,0.81,0.0425,0.68,0,0,0,7,10.700000000000001,0,0,0,0,0.26,91.47,154.58,0.14,981,1.5,249,0.9 +2013,5,14,16,30,11.700000000000001,0.8300000000000001,0.042,0.68,0,0,0,8,10.4,0,0,0,0,0.259,91.72,141.43,0.14,981,1.5,251,0.9 +2013,5,14,17,30,11.4,0.85,0.041100000000000005,0.68,0,0,0,7,10.200000000000001,0,0,0,0,0.258,92.12,128.11,0.14,981,1.5,255,0.8 +2013,5,14,18,30,11.100000000000001,0.86,0.0413,0.68,0,0,0,0,9.9,0,0,0,0,0.257,92.55,114.88,0.14,981,1.5,259,0.8 +2013,5,14,19,30,10.600000000000001,0.86,0.041800000000000004,0.68,0,0,0,1,9.600000000000001,0,0,0,0,0.258,93.79,101.87,0.14,982,1.4000000000000001,263,0.8 +2013,5,14,20,30,11.200000000000001,0.88,0.044700000000000004,0.68,11,128,14,4,9.4,5,0,3,5,0.258,88.53,88.86,0.14,982,1.4000000000000001,264,1 +2013,5,14,21,30,12.700000000000001,0.92,0.050300000000000004,0.68,48,607,184,1,9.5,48,607,0,184,0.258,81.08,77.15,0.14,983,1.4000000000000001,261,1.3 +2013,5,14,22,30,14.700000000000001,0.92,0.0504,0.68,66,781,382,3,9.3,218,121,0,267,0.258,69.89,66.13,0.14,983,1.3,250,1.6 +2013,5,14,23,30,15.9,0.9,0.045000000000000005,0.68,73,866,549,1,8.200000000000001,73,866,0,549,0.258,60.370000000000005,56.67,0.14,983,1.3,241,1.8 +2013,5,15,0,30,18.7,0.74,0.0738,0.68,94,875,660,1,7.7,94,875,0,660,0.257,48.85,49.69,0.14,982,1.2000000000000002,249,1.8 +2013,5,15,1,30,19.6,0.74,0.0729,0.68,96,892,712,1,7.300000000000001,96,892,0,712,0.256,44.89,46.36,0.14,981,1.2000000000000002,256,1.7000000000000002 +2013,5,15,2,30,20.200000000000003,0.75,0.0714,0.68,95,889,696,0,6.7,95,889,0,696,0.255,41.5,47.44,0.14,981,1.2000000000000002,259,1.7000000000000002 +2013,5,15,3,30,20.400000000000002,0.74,0.048,0.68,79,888,618,1,6.2,79,888,0,618,0.255,39.68,52.67,0.14,980,1.2000000000000002,257,1.5 +2013,5,15,4,30,20.1,0.73,0.0458,0.68,71,836,476,1,6,71,836,0,476,0.255,39.730000000000004,60.980000000000004,0.14,980,1.2000000000000002,255,1.3 +2013,5,15,5,30,18.900000000000002,0.77,0.05,0.68,59,719,290,8,6.2,164,211,0,232,0.255,43.480000000000004,71.29,0.14,980,1.2000000000000002,261,0.9 +2013,5,15,6,30,17.1,0.81,0.054,0.68,35,436,90,8,9,51,151,3,70,0.256,59.02,82.79,0.14,980,1.2000000000000002,270,0.7000000000000001 +2013,5,15,7,30,15.4,0.79,0.0497,0.68,0,0,0,4,8.1,0,0,0,0,0.257,61.730000000000004,95.25,0.14,981,1.2000000000000002,273,0.7000000000000001 +2013,5,15,8,30,14.200000000000001,0.77,0.046,0.68,0,0,0,4,7.4,0,0,0,0,0.258,63.77,108.09,0.14,982,1.2000000000000002,271,0.8 +2013,5,15,9,30,13.5,0.78,0.045200000000000004,0.68,0,0,0,4,6.9,0,0,0,0,0.258,64.32000000000001,121.23,0.14,982,1.2000000000000002,268,0.8 +2013,5,15,10,30,12.700000000000001,0.78,0.042300000000000004,0.68,0,0,0,8,6.4,0,0,0,0,0.258,65.68,134.53,0.14,982,1.2000000000000002,266,0.8 +2013,5,15,11,30,12,0.8,0.0429,0.68,0,0,0,4,5.7,0,0,0,0,0.258,65.52,147.82,0.14,982,1.2000000000000002,263,0.8 +2013,5,15,12,30,11.700000000000001,0.8200000000000001,0.0458,0.68,0,0,0,8,5.7,0,0,0,0,0.257,66.83,160.72,0.14,982,1.3,259,0.8 +2013,5,15,13,30,11.5,0.81,0.0451,0.68,0,0,0,8,5.800000000000001,0,0,0,0,0.256,67.89,170.89000000000001,0.14,981,1.3,255,0.8 +2013,5,15,14,30,11.200000000000001,0.81,0.0461,0.68,0,0,0,8,5.7,0,0,0,0,0.256,68.69,166.84,0.14,981,1.3,252,0.8 +2013,5,15,15,30,10.9,0.81,0.0483,0.68,0,0,0,4,5.5,0,0,0,0,0.257,69.42,154.68,0.14,981,1.4000000000000001,250,0.8 +2013,5,15,16,30,10.8,0.81,0.0511,0.68,0,0,0,7,5.4,0,0,0,0,0.257,69.11,141.51,0.14,981,1.4000000000000001,248,0.8 +2013,5,15,17,30,10.8,0.81,0.055900000000000005,0.68,0,0,0,8,5.4,0,0,0,0,0.257,69.19,128.2,0.14,981,1.5,249,0.7000000000000001 +2013,5,15,18,30,10.8,0.8,0.0594,0.68,0,0,0,8,5.4,0,0,0,0,0.258,69.45,114.97,0.14,982,1.7000000000000002,251,0.7000000000000001 +2013,5,15,19,30,10.8,0.77,0.06330000000000001,0.68,0,0,0,8,5.4,0,0,0,0,0.258,69.14,101.97,0.14,982,1.8,254,0.7000000000000001 +2013,5,15,20,30,11.3,0.76,0.0689,0.68,11,67,12,8,5.5,2,0,3,2,0.259,67.58,88.97,0.14,983,2,255,0.8 +2013,5,15,21,30,12.5,0.76,0.0736,0.68,54,538,172,7,6.1000000000000005,29,0,3,29,0.259,64.9,77.28,0.14,983,2.1,255,1.1 +2013,5,15,22,30,14,0.74,0.0726,0.68,74,719,363,7,5.7,62,10,0,66,0.26,57.34,66.3,0.14,984,2.2,255,1.4000000000000001 +2013,5,15,23,30,14.700000000000001,0.73,0.07100000000000001,0.68,85,806,525,7,6.300000000000001,94,20,0,105,0.26,57.21,56.86,0.14,984,2.2,256,1.4000000000000001 +2013,5,16,0,30,17.1,0.71,0.0961,0.68,103,822,632,7,6.7,56,4,0,59,0.26,50.370000000000005,49.910000000000004,0.14,983,2.2,261,1.5 +2013,5,16,1,30,18.400000000000002,0.74,0.1051,0.68,110,831,680,7,6.7,90,19,0,103,0.26,46.54,46.59,0.14,982,2.2,262,1.7000000000000002 +2013,5,16,2,30,19.200000000000003,0.74,0.108,0.68,110,823,664,7,6.9,172,26,0,190,0.259,44.74,47.67,0.14,981,2.2,262,1.8 +2013,5,16,3,30,19.200000000000003,0.76,0.08120000000000001,0.68,93,821,589,7,7.2,152,25,0,167,0.257,45.78,52.870000000000005,0.14,981,2.2,262,1.7000000000000002 +2013,5,16,4,30,18.8,0.77,0.07740000000000001,0.68,82,766,452,8,7.5,139,22,0,150,0.254,47.82,61.15,0.14,980,2.2,267,1.4000000000000001 +2013,5,16,5,30,17.7,0.8,0.076,0.68,66,644,271,8,8.1,158,96,0,189,0.253,53.370000000000005,71.43,0.14,981,2.3000000000000003,281,0.9 +2013,5,16,6,30,16,0.8200000000000001,0.0726,0.68,37,368,82,8,10.200000000000001,48,51,3,54,0.252,68.28,82.91,0.14,981,2.2,300,0.7000000000000001 +2013,5,16,7,30,14.600000000000001,0.84,0.06570000000000001,0.68,0,0,0,8,9.8,0,0,0,0,0.251,73.11,95.36,0.14,982,2.1,305,0.8 +2013,5,16,8,30,13.5,0.86,0.054900000000000004,0.68,0,0,0,4,9.600000000000001,0,0,0,0,0.251,77.44,108.18,0.14,982,1.8,299,0.8 +2013,5,16,9,30,12.3,0.87,0.045700000000000005,0.68,0,0,0,1,9.5,0,0,0,0,0.252,83.10000000000001,121.31,0.14,983,1.6,290,0.8 +2013,5,16,10,30,11.3,0.87,0.0403,0.68,0,0,0,1,9.3,0,0,0,0,0.252,87.39,134.6,0.14,983,1.5,279,0.8 +2013,5,16,11,30,10.600000000000001,0.85,0.0381,0.68,0,0,0,1,9,0,0,0,0,0.253,89.60000000000001,147.9,0.14,983,1.3,272,0.9 +2013,5,16,12,30,9.9,0.84,0.0381,0.68,0,0,0,1,8.6,0,0,0,0,0.253,91.77,160.83,0.14,983,1.2000000000000002,269,0.9 +2013,5,16,13,30,9.4,0.84,0.0385,0.68,0,0,0,1,8.200000000000001,0,0,0,0,0.253,92.42,171.1,0.14,983,1.2000000000000002,267,0.9 +2013,5,16,14,30,9,0.84,0.04,0.68,0,0,0,0,7.9,0,0,0,0,0.253,92.54,167,0.14,983,1.1,267,0.9 +2013,5,16,15,30,8.6,0.84,0.0426,0.68,0,0,0,1,7.5,0,0,0,0,0.254,93.06,154.78,0.14,983,1.1,268,0.9 +2013,5,16,16,30,8.3,0.84,0.044000000000000004,0.68,0,0,0,0,7.300000000000001,0,0,0,0,0.253,93.31,141.59,0.14,982,1.1,269,0.9 +2013,5,16,17,30,8,0.85,0.043500000000000004,0.68,0,0,0,0,7.1000000000000005,0,0,0,0,0.253,93.87,128.28,0.14,982,1.1,269,0.9 +2013,5,16,18,30,7.800000000000001,0.87,0.0434,0.68,0,0,0,0,6.9,0,0,0,0,0.254,94.23,115.06,0.14,983,1.1,270,0.9 +2013,5,16,19,30,7.7,0.88,0.0438,0.68,0,0,0,3,6.800000000000001,0,0,0,0,0.254,93.96000000000001,102.07000000000001,0.14,983,1.1,270,0.9 +2013,5,16,20,30,8.6,0.9,0.041100000000000005,0.68,0,0,0,1,6.6000000000000005,0,0,0,0,0.254,87.38,89.07000000000001,0.14,984,1.1,271,1.1 +2013,5,16,21,30,10.700000000000001,0.92,0.0385,0.68,45,635,183,1,7.2,45,635,0,183,0.254,78.8,77.42,0.14,984,1.1,273,1.5 +2013,5,16,22,30,13.600000000000001,0.9400000000000001,0.0361,0.68,60,806,382,1,7.9,60,806,0,382,0.255,68.35000000000001,66.46000000000001,0.14,984,1.1,264,1.8 +2013,5,16,23,30,15.200000000000001,0.96,0.0342,0.68,68,884,549,1,8.6,68,884,0,549,0.255,64.87,57.050000000000004,0.14,984,1.1,254,2 +2013,5,17,0,30,18.7,0.92,0.035300000000000005,0.68,74,919,663,0,9,74,919,0,663,0.255,53.42,50.13,0.14,983,1.1,250,2.6 +2013,5,17,1,30,19.8,0.9,0.0364,0.68,77,932,714,0,9,77,932,0,714,0.255,49.72,46.82,0.14,983,1.1,253,2.8000000000000003 +2013,5,17,2,30,20.5,0.88,0.0369,0.68,76,927,698,0,8.8,76,927,0,698,0.256,46.87,47.89,0.14,982,1.1,253,2.8000000000000003 +2013,5,17,3,30,20.700000000000003,0.91,0.0367,0.68,72,904,615,0,8.4,72,904,0,615,0.258,45.28,53.07,0.14,981,1.1,252,2.8000000000000003 +2013,5,17,4,30,20.400000000000002,0.9,0.0376,0.68,66,849,474,0,8.200000000000001,66,849,0,474,0.259,45.36,61.32,0.14,981,1.1,250,2.4000000000000004 +2013,5,17,5,30,19.1,0.91,0.0386,0.68,55,739,288,1,8.4,55,739,0,288,0.259,49.9,71.57000000000001,0.14,981,1.1,249,1.8 +2013,5,17,6,30,16.8,0.91,0.0397,0.68,32,467,89,1,9.200000000000001,32,467,0,89,0.26,60.95,83.02,0.14,981,1.1,249,1.1 +2013,5,17,7,30,14.9,0.89,0.041,0.68,0,0,0,0,8.1,0,0,0,0,0.261,63.93,95.45,0.14,982,1.1,250,1 +2013,5,17,8,30,14,0.88,0.041800000000000004,0.68,0,0,0,0,7.7,0,0,0,0,0.261,65.79,108.26,0.14,983,1.1,248,1 +2013,5,17,9,30,13.200000000000001,0.86,0.0425,0.68,0,0,0,0,7.4,0,0,0,0,0.261,67.96000000000001,121.38,0.14,984,1.1,248,1 +2013,5,17,10,30,12.5,0.8300000000000001,0.043500000000000004,0.68,0,0,0,1,7.2,0,0,0,0,0.262,70.24,134.67000000000002,0.14,984,1.1,251,1 +2013,5,17,11,30,11.8,0.8200000000000001,0.0432,0.68,0,0,0,0,7.1000000000000005,0,0,0,0,0.262,72.75,147.97,0.14,984,1.1,255,0.9 +2013,5,17,12,30,11.100000000000001,0.8200000000000001,0.0434,0.68,0,0,0,0,6.9,0,0,0,0,0.262,75.52,160.93,0.14,984,1,256,0.9 +2013,5,17,13,30,10.4,0.8200000000000001,0.044000000000000004,0.68,0,0,0,0,6.800000000000001,0,0,0,0,0.262,78.36,171.31,0.14,984,1,256,0.9 +2013,5,17,14,30,9.8,0.81,0.044500000000000005,0.68,0,0,0,0,6.6000000000000005,0,0,0,0,0.263,80.56,167.15,0.14,984,1,255,0.9 +2013,5,17,15,30,9.3,0.8,0.046400000000000004,0.68,0,0,0,0,6.4,0,0,0,0,0.262,82.23,154.87,0.14,984,1,254,0.9 +2013,5,17,16,30,9,0.8200000000000001,0.0489,0.68,0,0,0,0,6.2,0,0,0,0,0.262,82.63,141.68,0.14,984,1,253,0.9 +2013,5,17,17,30,8.8,0.86,0.047900000000000005,0.68,0,0,0,0,6.1000000000000005,0,0,0,0,0.261,83.32000000000001,128.37,0.14,984,1.1,252,0.8 +2013,5,17,18,30,8.4,0.87,0.0451,0.68,0,0,0,1,5.800000000000001,0,0,0,0,0.261,83.69,115.15,0.14,984,1.1,254,0.9 +2013,5,17,19,30,8,0.87,0.0434,0.68,0,0,0,0,5.5,0,0,0,0,0.262,84.22,102.17,0.14,985,1,255,0.9 +2013,5,17,20,30,8.8,0.88,0.041600000000000005,0.68,0,0,0,1,5.300000000000001,0,0,0,0,0.262,78.74,89.17,0.14,985,1,257,1 +2013,5,17,21,30,11.200000000000001,0.88,0.0398,0.68,45,631,181,1,5.9,45,631,0,181,0.262,69.66,77.55,0.14,985,1,260,1.2000000000000002 +2013,5,17,22,30,14.100000000000001,0.88,0.038400000000000004,0.68,61,803,380,1,5.9,61,803,0,380,0.263,57.6,66.61,0.14,985,1,249,1.7000000000000002 +2013,5,17,23,30,15.700000000000001,0.86,0.0378,0.68,70,881,547,1,6,70,881,0,547,0.263,52.51,57.230000000000004,0.14,985,1,237,2.1 +2013,5,18,0,30,18,0.8200000000000001,0.0403,0.68,77,911,658,1,6.4,77,911,0,658,0.263,46.65,50.33,0.14,984,1.1,246,2.5 +2013,5,18,1,30,19.1,0.81,0.041,0.68,79,925,710,0,6.6000000000000005,79,925,0,710,0.264,44.24,47.04,0.14,983,1.1,251,2.7 +2013,5,18,2,30,19.700000000000003,0.79,0.042,0.68,79,919,693,0,6.7,79,919,0,693,0.264,42.800000000000004,48.1,0.14,982,1.1,253,2.8000000000000003 +2013,5,18,3,30,19.900000000000002,0.8300000000000001,0.0396,0.68,74,898,611,1,6.6000000000000005,74,898,0,611,0.264,42.07,53.26,0.14,981,1.1,253,2.8000000000000003 +2013,5,18,4,30,19.5,0.8300000000000001,0.039400000000000004,0.68,67,841,468,1,6.5,67,841,0,468,0.265,42.75,61.480000000000004,0.14,981,1.2000000000000002,251,2.6 +2013,5,18,5,30,18.2,0.85,0.0391,0.68,55,731,284,1,6.7,55,731,0,284,0.266,46.88,71.7,0.14,981,1.2000000000000002,249,2 +2013,5,18,6,30,16,0.87,0.0392,0.68,32,462,87,1,7.300000000000001,32,462,0,87,0.266,56.46,83.13,0.14,982,1.1,247,1.3 +2013,5,18,7,30,14.100000000000001,0.86,0.0407,0.68,0,0,0,0,6.6000000000000005,0,0,0,0,0.266,60.56,95.55,0.14,982,1.1,245,1.1 +2013,5,18,8,30,13.100000000000001,0.87,0.043000000000000003,0.68,0,0,0,1,6.2,0,0,0,0,0.267,63.11,108.34,0.14,983,1.1,243,1 +2013,5,18,9,30,12.200000000000001,0.9,0.044700000000000004,0.68,0,0,0,1,6.2,0,0,0,0,0.267,66.64,121.45,0.14,984,1.1,245,1 +2013,5,18,10,30,11.4,0.96,0.0463,0.68,0,0,0,0,6.1000000000000005,0,0,0,0,0.267,69.73,134.74,0.14,984,1.1,246,0.9 +2013,5,18,11,30,10.600000000000001,1,0.0482,0.68,0,0,0,0,6,0,0,0,0,0.267,72.98,148.04,0.14,985,1,246,0.9 +2013,5,18,12,30,9.9,1.01,0.0506,0.68,0,0,0,0,5.800000000000001,0,0,0,0,0.266,75.39,161.03,0.14,985,1,247,0.9 +2013,5,18,13,30,9.200000000000001,1.02,0.052500000000000005,0.68,0,0,0,0,5.5,0,0,0,0,0.266,77.72,171.5,0.14,984,1,249,0.9 +2013,5,18,14,30,8.6,1.03,0.0531,0.68,0,0,0,0,5.300000000000001,0,0,0,0,0.265,79.7,167.29,0.14,984,1,252,0.9 +2013,5,18,15,30,8.1,1.04,0.0514,0.68,0,0,0,0,5.1000000000000005,0,0,0,0,0.265,81.18,154.97,0.14,984,1,256,0.9 +2013,5,18,16,30,7.6000000000000005,1.06,0.047400000000000005,0.68,0,0,0,1,4.800000000000001,0,0,0,0,0.265,82.58,141.76,0.14,984,0.9,260,0.9 +2013,5,18,17,30,7.2,1.09,0.0419,0.68,0,0,0,0,4.6000000000000005,0,0,0,0,0.265,83.65,128.45,0.14,984,0.9,262,0.9 +2013,5,18,18,30,6.800000000000001,1.1300000000000001,0.0364,0.68,0,0,0,0,4.5,0,0,0,0,0.265,85.08,115.24000000000001,0.14,985,0.9,263,0.9 +2013,5,18,19,30,6.4,1.18,0.0318,0.68,0,0,0,1,4.3,0,0,0,0,0.265,86.69,102.27,0.14,985,0.9,263,0.9 +2013,5,18,20,30,7.4,1.24,0.0286,0.68,0,0,0,1,4.3,0,0,0,0,0.266,80.65,89.27,0.14,986,0.8,263,1.2000000000000002 +2013,5,18,21,30,9.8,1.28,0.0269,0.68,41,670,184,1,4.800000000000001,41,670,0,184,0.266,71.10000000000001,77.69,0.14,986,0.8,258,1.7000000000000002 +2013,5,18,22,30,12.5,1.29,0.0263,0.68,55,832,383,1,5,55,832,0,383,0.267,60.160000000000004,66.77,0.14,986,0.8,245,2.4000000000000004 +2013,5,18,23,30,13.8,1.29,0.0267,0.68,64,904,551,1,5.1000000000000005,64,904,0,551,0.267,55.63,57.410000000000004,0.14,986,0.8,236,2.8000000000000003 +2013,5,19,0,30,16.1,1.05,0.0322,0.68,72,928,662,0,5.1000000000000005,72,928,0,662,0.267,47.95,50.54,0.14,985,0.9,237,2.8000000000000003 +2013,5,19,1,30,17.3,1.01,0.0333,0.68,75,941,713,1,5.1000000000000005,75,941,0,713,0.266,44.410000000000004,47.26,0.14,984,0.9,240,2.7 +2013,5,19,2,30,18.1,0.98,0.0342,0.68,75,936,697,0,5,75,936,0,697,0.266,42.2,48.31,0.14,984,0.9,243,2.5 +2013,5,19,3,30,18.5,0.99,0.034300000000000004,0.68,71,912,614,0,5.1000000000000005,71,912,0,614,0.265,41.15,53.44,0.14,983,0.9,245,2.4000000000000004 +2013,5,19,4,30,18.400000000000002,0.98,0.034300000000000004,0.68,65,859,473,0,5.1000000000000005,65,859,0,473,0.264,41.47,61.63,0.14,983,0.9,246,2.1 +2013,5,19,5,30,17.2,0.97,0.0337,0.68,53,752,287,1,5.4,53,752,0,287,0.263,45.68,71.83,0.14,983,0.9,248,1.6 +2013,5,19,6,30,14.9,0.97,0.0327,0.68,31,486,88,1,6.7,31,486,0,88,0.263,57.79,83.24,0.14,983,0.9,251,1 +2013,5,19,7,30,12.9,0.96,0.032100000000000004,0.68,0,0,0,0,5.6000000000000005,0,0,0,0,0.262,61.13,95.64,0.14,984,0.8,253,0.9 +2013,5,19,8,30,11.9,0.96,0.0325,0.68,0,0,0,0,5.2,0,0,0,0,0.261,63.730000000000004,108.42,0.14,985,0.8,252,0.9 +2013,5,19,9,30,10.9,0.96,0.034300000000000004,0.68,0,0,0,0,5,0,0,0,0,0.26,67.14,121.52,0.14,985,0.8,248,0.9 +2013,5,19,10,30,10.100000000000001,0.9500000000000001,0.0368,0.68,0,0,0,1,4.800000000000001,0,0,0,0,0.26,69.76,134.8,0.14,985,0.8,245,0.9 +2013,5,19,11,30,9.4,0.9500000000000001,0.040100000000000004,0.68,0,0,0,0,4.6000000000000005,0,0,0,0,0.259,72.17,148.1,0.14,985,0.8,246,0.9 +2013,5,19,12,30,8.9,0.9500000000000001,0.0426,0.68,0,0,0,0,4.6000000000000005,0,0,0,0,0.258,74.38,161.12,0.14,985,0.9,249,0.9 +2013,5,19,13,30,8.4,0.96,0.0439,0.68,0,0,0,0,4.5,0,0,0,0,0.257,76.68,171.69,0.14,985,0.9,251,0.9 +2013,5,19,14,30,7.9,0.9500000000000001,0.043500000000000004,0.68,0,0,0,0,4.4,0,0,0,0,0.256,78.76,167.44,0.14,985,0.9,250,0.9 +2013,5,19,15,30,7.4,0.96,0.0408,0.68,0,0,0,0,4.3,0,0,0,0,0.256,80.47,155.06,0.14,985,0.9,248,0.9 +2013,5,19,16,30,7.1000000000000005,0.98,0.0412,0.68,0,0,0,0,4.1000000000000005,0,0,0,0,0.256,81.49,141.84,0.14,985,0.9,247,0.8 +2013,5,19,17,30,6.9,0.99,0.0402,0.68,0,0,0,0,4.1000000000000005,0,0,0,0,0.256,82.39,128.53,0.14,985,0.9,247,0.8 +2013,5,19,18,30,6.800000000000001,1,0.040100000000000004,0.68,0,0,0,1,4,0,0,0,0,0.257,82.51,115.33,0.14,985,0.9,248,0.8 +2013,5,19,19,30,6.5,1.03,0.038700000000000005,0.68,0,0,0,8,3.9000000000000004,0,0,0,0,0.257,83.72,102.37,0.14,986,0.9,249,0.7000000000000001 +2013,5,19,20,30,7.300000000000001,1.06,0.0393,0.68,0,0,0,3,3.8000000000000003,0,0,3,0,0.257,78.54,89.37,0.14,986,0.9,250,0.8 +2013,5,19,21,30,9.4,1.09,0.041,0.68,45,631,178,8,4.3,90,63,3,103,0.257,70.51,77.82000000000001,0.14,987,0.9,254,1 +2013,5,19,22,30,12,1.11,0.041,0.68,62,802,376,8,4.2,205,97,0,243,0.257,58.9,66.92,0.14,987,0.9,247,1.2000000000000002 +2013,5,19,23,30,13.5,1.1400000000000001,0.0408,0.68,71,881,543,1,4.3,71,881,0,543,0.257,53.64,57.59,0.14,987,0.9,237,1.2000000000000002 +2013,5,20,0,30,16.8,1.05,0.041,0.68,76,914,654,1,4.3,76,914,0,654,0.257,43.46,50.74,0.14,986,1,239,1.4000000000000001 +2013,5,20,1,30,18.2,1.04,0.038400000000000004,0.68,77,931,706,0,4.5,77,931,0,706,0.257,40.410000000000004,47.47,0.14,985,1,243,1.4000000000000001 +2013,5,20,2,30,19,1.03,0.036500000000000005,0.68,75,929,690,0,4.6000000000000005,75,929,0,690,0.257,38.62,48.51,0.14,984,1,243,1.5 +2013,5,20,3,30,19.400000000000002,1.06,0.0334,0.68,70,908,609,0,4.6000000000000005,70,908,0,609,0.259,37.68,53.620000000000005,0.14,983,1,246,1.3 +2013,5,20,4,30,19.400000000000002,1.04,0.0323,0.68,63,857,468,0,4.5,63,857,0,468,0.26,37.5,61.78,0.14,982,1,249,1.1 +2013,5,20,5,30,18.5,1.01,0.031900000000000005,0.68,52,750,284,0,4.800000000000001,52,750,0,284,0.261,40.58,71.95,0.14,982,1,256,0.8 +2013,5,20,6,30,16.400000000000002,0.97,0.033600000000000005,0.68,30,475,85,1,6.7,30,475,0,85,0.262,52.82,83.34,0.14,983,1,270,0.6000000000000001 +2013,5,20,7,30,14.4,0.97,0.0341,0.68,0,0,0,1,5.4,0,0,0,0,0.263,54.59,95.72,0.14,983,1.1,274,0.7000000000000001 +2013,5,20,8,30,12.9,0.99,0.037200000000000004,0.68,0,0,0,1,4.9,0,0,0,0,0.262,58.33,108.49000000000001,0.14,984,1,264,0.8 +2013,5,20,9,30,11.8,1,0.039400000000000004,0.68,0,0,0,0,4.6000000000000005,0,0,0,0,0.261,61.370000000000005,121.58,0.14,984,1,256,0.8 +2013,5,20,10,30,11,1,0.0408,0.68,0,0,0,0,4.2,0,0,0,0,0.261,62.690000000000005,134.85,0.14,985,1,250,0.8 +2013,5,20,11,30,10.3,1,0.039,0.68,0,0,0,0,3.8000000000000003,0,0,0,0,0.26,64.14,148.16,0.14,985,1,244,0.8 +2013,5,20,12,30,9.600000000000001,1,0.0359,0.68,0,0,0,0,3.4000000000000004,0,0,0,0,0.26,65.32000000000001,161.20000000000002,0.14,985,1,238,0.8 +2013,5,20,13,30,9,1.02,0.0332,0.68,0,0,0,0,3.1,0,0,0,0,0.259,66.37,171.88,0.14,985,1,232,0.8 +2013,5,20,14,30,8.5,1.05,0.031900000000000005,0.68,0,0,0,0,2.9000000000000004,0,0,0,0,0.259,67.83,167.58,0.14,985,1,225,0.8 +2013,5,20,15,30,8.200000000000001,1.1,0.031200000000000002,0.68,0,0,0,0,3,0,0,0,0,0.258,69.54,155.15,0.14,985,1.1,220,0.8 +2013,5,20,16,30,8.1,1.1300000000000001,0.031400000000000004,0.68,0,0,0,8,3.1,0,0,0,0,0.258,70.56,141.92000000000002,0.14,985,1.1,218,0.8 +2013,5,20,17,30,8.3,1.1500000000000001,0.033,0.68,0,0,0,8,3.6,0,0,0,0,0.258,72.19,128.62,0.14,985,1.2000000000000002,220,0.8 +2013,5,20,18,30,8.4,1.18,0.034,0.68,0,0,0,4,3.8000000000000003,0,0,0,0,0.259,72.94,115.42,0.14,986,1.2000000000000002,220,0.8 +2013,5,20,19,30,8.5,1.21,0.0333,0.68,0,0,0,8,4,0,0,0,0,0.259,73.4,102.47,0.14,986,1.3,217,0.7000000000000001 +2013,5,20,20,30,9,1.24,0.0313,0.68,0,0,0,1,4.4,0,0,0,0,0.258,72.8,89.47,0.14,986,1.3,213,0.7000000000000001 +2013,5,20,21,30,10.4,1.25,0.0308,0.68,41,631,173,4,5.6000000000000005,73,18,3,77,0.258,72.06,77.95,0.14,987,1.4000000000000001,214,0.7000000000000001 +2013,5,20,22,30,12.100000000000001,1.26,0.0315,0.68,57,793,366,8,5.300000000000001,203,98,0,242,0.257,63.01,67.07000000000001,0.14,987,1.5,218,0.6000000000000001 +2013,5,20,23,30,12.9,1.26,0.0323,0.68,66,868,529,4,5.1000000000000005,278,53,0,306,0.257,59.09,57.77,0.14,987,1.5,218,0.5 +2013,5,21,0,30,15.700000000000001,1.11,0.046900000000000004,0.68,78,883,635,8,5.6000000000000005,380,116,0,453,0.257,50.92,50.94,0.14,986,1.7000000000000002,176,0.2 +2013,5,21,1,30,17.1,1.12,0.0531,0.68,83,892,684,3,5.5,407,97,0,473,0.257,46.480000000000004,47.67,0.14,985,1.7000000000000002,237,0.2 +2013,5,21,2,30,18.1,1.1500000000000001,0.059000000000000004,0.68,85,879,665,8,5.300000000000001,408,155,0,510,0.256,42.82,48.71,0.14,984,1.8,298,0.30000000000000004 +2013,5,21,3,30,18.6,1.07,0.078,0.68,89,829,579,8,5.1000000000000005,346,98,0,404,0.255,41.050000000000004,53.79,0.14,983,1.9000000000000001,297,0.2 +2013,5,21,4,30,18.6,1.09,0.07930000000000001,0.68,81,768,442,8,5.1000000000000005,258,93,0,302,0.254,41.07,61.93,0.14,983,1.9000000000000001,276,0.1 +2013,5,21,5,30,17.900000000000002,1.09,0.0796,0.68,65,644,264,8,5.6000000000000005,139,52,0,155,0.252,44.54,72.07000000000001,0.14,983,1.9000000000000001,146,0.2 +2013,5,21,6,30,16.7,1.09,0.0733,0.68,35,364,76,4,7.4,37,1,3,37,0.251,54.21,83.43,0.14,983,1.9000000000000001,28,0.5 +2013,5,21,7,30,15.700000000000001,1.09,0.0656,0.68,0,0,0,4,6.9,0,0,0,0,0.249,55.800000000000004,95.8,0.14,984,1.9000000000000001,19,0.7000000000000001 +2013,5,21,8,30,15.100000000000001,1.1,0.0623,0.68,0,0,0,4,6.6000000000000005,0,0,0,0,0.248,56.82,108.56,0.14,984,1.9000000000000001,184,0.7000000000000001 +2013,5,21,9,30,14.5,1.11,0.061000000000000006,0.68,0,0,0,4,6.4,0,0,0,0,0.247,58.2,121.64,0.14,984,1.9000000000000001,332,0.7000000000000001 +2013,5,21,10,30,13.8,1.12,0.062,0.68,0,0,0,4,6.4,0,0,0,0,0.246,60.79,134.91,0.14,984,2,302,0.8 +2013,5,21,11,30,13,1.1300000000000001,0.0621,0.68,0,0,0,4,6.5,0,0,0,0,0.245,64.64,148.22,0.14,984,2.1,284,0.9 +2013,5,21,12,30,12.3,1.1300000000000001,0.063,0.68,0,0,0,8,6.800000000000001,0,0,0,0,0.244,69.06,161.27,0.14,984,2.1,263,0.9 +2013,5,21,13,30,12.200000000000001,1.1400000000000001,0.0629,0.68,0,0,0,8,6.7,0,0,0,0,0.244,69.26,172.05,0.14,983,2.2,247,0.8 +2013,5,21,14,30,12.4,1.1500000000000001,0.0621,0.68,0,0,0,4,6.4,0,0,0,0,0.243,66.59,167.71,0.14,982,2.3000000000000003,242,0.8 +2013,5,21,15,30,12.200000000000001,1.1400000000000001,0.0613,0.68,0,0,0,4,6.1000000000000005,0,0,0,0,0.242,66.17,155.24,0.14,981,2.3000000000000003,234,0.8 +2013,5,21,16,30,11.700000000000001,1.1300000000000001,0.0587,0.68,0,0,0,4,5.9,0,0,0,0,0.242,67.46000000000001,142,0.14,981,2.4000000000000004,223,0.8 +2013,5,21,17,30,11.4,1.12,0.057100000000000005,0.68,0,0,0,8,6,0,0,0,0,0.242,69.42,128.7,0.14,981,2.4000000000000004,218,0.8 +2013,5,21,18,30,11.4,1.12,0.060200000000000004,0.68,0,0,0,8,6.4,0,0,0,0,0.242,71.21000000000001,115.51,0.14,982,2.5,221,0.7000000000000001 +2013,5,21,19,30,11.5,1.09,0.061000000000000006,0.68,0,0,0,7,6.1000000000000005,0,0,0,0,0.243,69.45,102.57000000000001,0.14,982,2.6,233,0.7000000000000001 +2013,5,21,20,30,11.700000000000001,1.07,0.059300000000000005,0.68,0,0,0,7,6.2,0,0,3,0,0.243,69,89.57000000000001,0.14,983,2.6,244,0.7000000000000001 +2013,5,21,21,30,12.3,1.06,0.059000000000000004,0.68,47,538,158,7,6.800000000000001,14,0,3,14,0.243,69.02,78.08,0.14,983,2.7,254,0.7000000000000001 +2013,5,21,22,30,13,1.06,0.0601,0.68,66,716,344,8,7,29,0,0,29,0.243,66.72,67.22,0.14,983,2.8000000000000003,265,0.9 +2013,5,21,23,30,13.3,1.05,0.0669,0.68,80,791,500,8,7,86,18,0,95,0.243,65.61,57.94,0.14,983,2.9000000000000004,270,1 +2013,5,22,0,30,13.8,1.04,0.08070000000000001,0.68,92,817,605,6,7.800000000000001,94,20,0,106,0.242,67.3,51.13,0.14,982,3,274,1.1 +2013,5,22,1,30,13.700000000000001,1.02,0.08800000000000001,0.68,98,825,652,8,8.8,212,25,0,229,0.241,72.52,47.870000000000005,0.14,981,3.1,299,1.1 +2013,5,22,2,30,13.5,1.01,0.0901,0.68,98,818,636,7,9.4,115,24,0,131,0.24,76.08,48.9,0.14,981,3.1,324,1 +2013,5,22,3,30,13.100000000000001,1,0.09380000000000001,0.68,95,783,556,8,9.8,192,24,0,205,0.241,80.57000000000001,53.96,0.14,980,3.2,169,0.9 +2013,5,22,4,30,12.600000000000001,1.02,0.10740000000000001,0.68,90,704,419,6,10.100000000000001,75,16,0,83,0.242,84.82000000000001,62.06,0.14,979,3.3000000000000003,12,0.8 +2013,5,22,5,30,12.200000000000001,1.01,0.11320000000000001,0.68,73,566,246,6,10.600000000000001,90,15,0,94,0.243,89.89,72.18,0.14,979,3.3000000000000003,24,0.7000000000000001 +2013,5,22,6,30,11.600000000000001,1.01,0.1164,0.68,38,266,68,7,11.100000000000001,27,0,3,27,0.244,96.58,83.52,0.14,978,3.3000000000000003,30,0.5 +2013,5,22,7,30,11.4,1.01,0.12250000000000001,0.68,0,0,0,7,11.100000000000001,0,0,0,0,0.245,97.85000000000001,95.88,0.14,978,3.3000000000000003,17,0.4 +2013,5,22,8,30,11.4,0.99,0.1328,0.68,0,0,0,7,11.3,0,0,0,0,0.247,99.12,108.62,0.14,979,3.1,7,0.5 +2013,5,22,9,30,11.3,1.01,0.14930000000000002,0.68,0,0,0,8,11.3,0,0,0,0,0.249,100,121.69,0.14,979,2.9000000000000004,180,0.5 +2013,5,22,10,30,11.100000000000001,1.05,0.1633,0.68,0,0,0,4,11.100000000000001,0,0,0,0,0.249,100,134.95,0.14,979,2.6,353,0.6000000000000001 +2013,5,22,11,30,10.700000000000001,1.09,0.1398,0.68,0,0,0,8,10.700000000000001,0,0,0,0,0.25,100,148.27,0.14,978,2.3000000000000003,349,0.7000000000000001 +2013,5,22,12,30,10.3,1.12,0.1149,0.68,0,0,0,8,10.3,0,0,0,0,0.251,100,161.34,0.14,977,2.2,341,0.7000000000000001 +2013,5,22,13,30,10,1.1300000000000001,0.09970000000000001,0.68,0,0,0,4,10,0,0,0,0,0.251,100,172.22,0.14,977,2.3000000000000003,331,0.7000000000000001 +2013,5,22,14,30,10,1.1300000000000001,0.0862,0.68,0,0,0,4,10,0,0,0,0,0.251,100,167.84,0.14,976,2.4000000000000004,312,0.7000000000000001 +2013,5,22,15,30,10.3,1.1400000000000001,0.0823,0.68,0,0,0,4,10.200000000000001,0,0,0,0,0.25,99.64,155.33,0.14,976,2.5,287,0.8 +2013,5,22,16,30,10.600000000000001,1.1500000000000001,0.08220000000000001,0.68,0,0,0,1,10.600000000000001,0,0,0,0,0.251,100,142.08,0.14,976,2.4000000000000004,273,0.8 +2013,5,22,17,30,10.5,1.1500000000000001,0.07060000000000001,0.68,0,0,0,3,10.5,0,0,0,0,0.251,100,128.78,0.14,976,2.1,272,0.8 +2013,5,22,18,30,10.200000000000001,1.1400000000000001,0.059500000000000004,0.68,0,0,0,3,10.200000000000001,0,0,0,0,0.252,100,115.60000000000001,0.14,976,2,270,0.8 +2013,5,22,19,30,10,1.12,0.0516,0.68,0,0,0,1,10,0,0,0,0,0.253,100,102.67,0.14,977,1.9000000000000001,264,0.8 +2013,5,22,20,30,10.8,1.08,0.0461,0.68,0,0,0,1,10.4,0,0,0,0,0.254,97.55,89.66,0.14,978,1.8,258,1 +2013,5,22,21,30,12.3,1.04,0.0434,0.68,44,589,164,1,11.600000000000001,44,589,0,164,0.255,95.22,78.2,0.14,978,1.7000000000000002,254,1.5 +2013,5,22,22,30,13.8,1,0.0412,0.68,60,771,357,1,12.5,60,771,0,357,0.256,91.98,67.37,0.14,979,1.6,247,1.9000000000000001 +2013,5,22,23,30,14.700000000000001,0.97,0.0396,0.68,69,852,519,1,12.600000000000001,69,852,0,519,0.256,87.36,58.11,0.14,979,1.6,242,2.1 +2013,5,23,0,30,16.900000000000002,0.76,0.0609,0.68,86,869,629,2,11.9,237,24,0,252,0.257,72.47,51.31,0.14,978,1.5,243,2.2 +2013,5,23,1,30,18,0.74,0.0604,0.68,88,888,682,2,11.200000000000001,416,148,1,515,0.258,64.43,48.07,0.14,977,1.4000000000000001,245,2.2 +2013,5,23,2,30,18.7,0.73,0.0577,0.68,86,886,667,1,10.5,86,886,0,667,0.259,59.09,49.08,0.14,976,1.4000000000000001,246,2.1 +2013,5,23,3,30,19,0.78,0.0522,0.68,79,867,587,1,10.200000000000001,79,867,0,587,0.26,56.63,54.120000000000005,0.14,975,1.4000000000000001,248,2 +2013,5,23,4,30,18.8,0.78,0.0533,0.68,72,808,449,1,10,72,808,0,449,0.261,56.72,62.2,0.14,975,1.4000000000000001,249,1.8 +2013,5,23,5,30,17.900000000000002,0.77,0.0545,0.68,59,687,268,1,10.100000000000001,59,687,0,268,0.262,60.38,72.29,0.14,975,1.4000000000000001,252,1.2000000000000002 +2013,5,23,6,30,16,0.78,0.0575,0.68,33,385,76,1,11.100000000000001,33,385,0,76,0.262,72.73,83.61,0.14,976,1.5,259,0.8 +2013,5,23,7,30,14.4,0.79,0.0603,0.68,0,0,0,1,10.3,0,0,0,0,0.263,76.19,95.95,0.14,977,1.5,263,0.8 +2013,5,23,8,30,13.600000000000001,0.79,0.062,0.68,0,0,0,0,10,0,0,0,0,0.262,78.81,108.68,0.14,977,1.5,262,0.9 +2013,5,23,9,30,13.100000000000001,0.8,0.064,0.68,0,0,0,1,9.8,0,0,0,0,0.262,80.48,121.74000000000001,0.14,978,1.5,260,0.9 +2013,5,23,10,30,12.600000000000001,0.8,0.06430000000000001,0.68,0,0,0,0,9.700000000000001,0,0,0,0,0.262,82.74,135,0.14,978,1.5,259,0.9 +2013,5,23,11,30,11.9,0.81,0.0632,0.68,0,0,0,0,9.700000000000001,0,0,0,0,0.263,86.3,148.31,0.14,978,1.5,260,0.9 +2013,5,23,12,30,11.200000000000001,0.8200000000000001,0.062,0.68,0,0,0,0,9.600000000000001,0,0,0,0,0.263,90.03,161.41,0.14,978,1.4000000000000001,261,0.9 +2013,5,23,13,30,10.600000000000001,0.84,0.060500000000000005,0.68,0,0,0,0,9.600000000000001,0,0,0,0,0.263,93.68,172.38,0.14,978,1.4000000000000001,262,0.9 +2013,5,23,14,30,10,0.85,0.0584,0.68,0,0,0,0,9.600000000000001,0,0,0,0,0.264,97.25,167.97,0.14,977,1.4000000000000001,262,0.9 +2013,5,23,15,30,9.600000000000001,0.85,0.0553,0.68,0,0,0,0,9.5,0,0,0,0,0.265,99.4,155.41,0.14,977,1.4000000000000001,262,0.9 +2013,5,23,16,30,9.3,0.85,0.052500000000000005,0.68,0,0,0,0,9.3,0,0,0,0,0.265,100,142.16,0.14,977,1.4000000000000001,261,0.9 +2013,5,23,17,30,8.9,0.85,0.0514,0.68,0,0,0,0,8.9,0,0,0,0,0.265,100,128.86,0.14,977,1.4000000000000001,264,0.9 +2013,5,23,18,30,8.6,0.86,0.0521,0.68,0,0,0,0,8.6,0,0,0,0,0.266,100,115.68,0.14,977,1.4000000000000001,269,0.9 +2013,5,23,19,30,8.5,0.88,0.0528,0.68,0,0,0,1,8.5,0,0,0,0,0.268,100,102.77,0.14,977,1.4000000000000001,271,0.9 +2013,5,23,20,30,9.4,0.91,0.0519,0.68,0,0,0,1,8.9,0,0,0,0,0.27,96.36,89.76,0.14,978,1.4000000000000001,271,1.3 +2013,5,23,21,30,11.3,0.9500000000000001,0.0509,0.68,45,574,162,2,9.1,91,107,3,112,0.272,86.56,78.33,0.14,978,1.5,269,2 +2013,5,23,22,30,13.600000000000001,1,0.050100000000000006,0.68,63,758,353,3,9.700000000000001,206,156,0,265,0.272,77.39,67.51,0.14,978,1.5,263,2.6 +2013,5,23,23,30,14.700000000000001,1.06,0.0494,0.68,73,842,516,1,10.4,73,842,0,516,0.272,75.19,58.27,0.14,978,1.5,259,2.9000000000000004 +2013,5,24,0,30,17.400000000000002,1.09,0.0483,0.68,78,881,627,4,10.5,294,30,0,312,0.27,63.96,51.5,0.14,978,1.6,251,3.3000000000000003 +2013,5,24,1,30,18.400000000000002,1.05,0.0458,0.68,79,896,676,4,10.4,220,24,0,237,0.268,59.5,48.26,0.14,977,1.7000000000000002,245,3.3000000000000003 +2013,5,24,2,30,19,0.99,0.040400000000000005,0.68,76,897,662,1,10.4,76,897,0,662,0.266,57.5,49.26,0.14,976,1.7000000000000002,239,3.2 +2013,5,24,3,30,18.900000000000002,0.81,0.0402,0.68,73,865,578,8,10.5,347,115,0,414,0.265,58.08,54.27,0.14,976,1.9000000000000001,232,3.2 +2013,5,24,4,30,18,0.7000000000000001,0.0402,0.68,66,803,439,8,10.4,219,39,0,238,0.265,61.11,62.33,0.14,976,2.1,229,3 +2013,5,24,5,30,16.6,0.65,0.0388,0.68,53,685,261,4,10.5,91,15,0,96,0.264,67.09,72.39,0.14,977,2.3000000000000003,232,2.3000000000000003 +2013,5,24,6,30,15,0.6,0.0383,0.68,30,401,74,4,10.9,23,0,3,23,0.265,76.54,83.69,0.14,977,2.3000000000000003,241,1.7000000000000002 +2013,5,24,7,30,14.100000000000001,0.56,0.043000000000000003,0.68,0,0,0,4,11,0,0,0,0,0.266,81.41,96.01,0.14,978,2.2,245,1.6 +2013,5,24,8,30,13.9,0.55,0.042100000000000005,0.68,0,0,0,4,10.8,0,0,0,0,0.266,81.73,108.73,0.14,978,2.1,240,1.8 +2013,5,24,9,30,13.8,0.56,0.036000000000000004,0.68,0,0,0,1,10.600000000000001,0,0,0,0,0.266,81.11,121.79,0.14,979,2.1,233,1.8 +2013,5,24,10,30,13.600000000000001,0.56,0.0335,0.68,0,0,0,4,10.200000000000001,0,0,0,0,0.266,79.94,135.04,0.14,979,2.1,227,1.8 +2013,5,24,11,30,13.200000000000001,0.5700000000000001,0.032600000000000004,0.68,0,0,0,0,9.700000000000001,0,0,0,0,0.266,79.44,148.35,0.14,980,2.1,223,1.7000000000000002 +2013,5,24,12,30,12.8,0.5700000000000001,0.0308,0.68,0,0,0,1,9.4,0,0,0,0,0.268,79.59,161.47,0.14,981,2.2,218,1.7000000000000002 +2013,5,24,13,30,12.4,0.59,0.0287,0.68,0,0,0,1,9.200000000000001,0,0,0,0,0.268,80.7,172.53,0.14,981,2.2,214,1.5 +2013,5,24,14,30,11.8,0.6,0.0286,0.68,0,0,0,1,8.9,0,0,0,0,0.268,82.56,168.09,0.14,981,2.2,211,1.4000000000000001 +2013,5,24,15,30,11.4,0.58,0.0317,0.68,0,0,0,1,8.700000000000001,0,0,0,0,0.268,83.69,155.5,0.14,982,2.2,207,1.3 +2013,5,24,16,30,11,0.53,0.0361,0.68,0,0,0,1,8.700000000000001,0,0,0,0,0.268,85.99,142.24,0.14,982,2.2,207,1.2000000000000002 +2013,5,24,17,30,10.600000000000001,0.47000000000000003,0.041600000000000005,0.68,0,0,0,1,8.8,0,0,0,0,0.268,88.65,128.94,0.14,982,2.1,208,1.1 +2013,5,24,18,30,10.3,0.42,0.0468,0.68,0,0,0,1,8.9,0,0,0,0,0.268,90.73,115.77,0.14,983,2.1,210,1.1 +2013,5,24,19,30,10.100000000000001,0.38,0.0504,0.68,0,0,0,1,8.9,0,0,0,0,0.267,92.18,102.86,0.14,984,2,211,1 +2013,5,24,20,30,10.9,0.35000000000000003,0.053200000000000004,0.68,0,0,0,1,8.9,0,0,0,0,0.266,87.76,89.85000000000001,0.14,985,1.9000000000000001,212,1.1 +2013,5,24,21,30,13,0.32,0.057,0.68,49,531,156,1,9.9,49,531,0,156,0.265,81.45,78.45,0.14,986,1.7000000000000002,208,1.5 +2013,5,24,22,30,15.200000000000001,0.29,0.061500000000000006,0.68,71,721,345,1,10.5,71,721,0,345,0.264,73.51,67.66,0.14,986,1.6,192,1.9000000000000001 +2013,5,24,23,30,16.3,0.27,0.0597,0.68,82,812,507,1,11.3,82,812,0,507,0.264,72.10000000000001,58.43,0.14,987,1.6,181,2.1 +2013,5,25,0,30,18.6,0.29,0.0553,0.68,86,864,622,1,11.600000000000001,86,864,0,622,0.263,63.92,51.67,0.14,986,1.5,165,2.5 +2013,5,25,1,30,19.400000000000002,0.3,0.054400000000000004,0.68,88,882,673,0,11.5,88,882,0,673,0.263,60.42,48.44,0.14,986,1.5,160,2.5 +2013,5,25,2,30,19.900000000000002,0.3,0.055,0.68,88,876,658,1,11.3,88,876,0,658,0.264,57.78,49.44,0.14,986,1.5,158,2.5 +2013,5,25,3,30,19.900000000000002,0.31,0.055200000000000006,0.68,83,846,576,1,11.100000000000001,83,846,0,576,0.264,56.84,54.42,0.14,986,1.6,158,2.4000000000000004 +2013,5,25,4,30,19.6,0.31,0.0563,0.68,76,785,439,1,10.9,76,785,0,439,0.264,57.01,62.45,0.14,986,1.6,157,2.1 +2013,5,25,5,30,18.5,0.33,0.0543,0.68,61,665,261,1,10.8,61,665,0,261,0.264,60.81,72.49,0.14,986,1.6,155,1.5 +2013,5,25,6,30,16.5,0.38,0.0476,0.68,32,381,74,2,11.5,23,0,3,23,0.263,72.54,83.77,0.14,987,1.5,151,1 +2013,5,25,7,30,14.8,0.44,0.0398,0.68,0,0,0,1,10.8,0,0,0,0,0.263,76.88,96.08,0.14,988,1.4000000000000001,148,1 +2013,5,25,8,30,13.8,0.5,0.035,0.68,0,0,0,1,10.600000000000001,0,0,0,0,0.264,80.8,108.78,0.14,989,1.3,148,0.9 +2013,5,25,9,30,12.9,0.53,0.0334,0.68,0,0,0,0,10.4,0,0,0,0,0.264,84.83,121.83,0.14,989,1.2000000000000002,151,0.9 +2013,5,25,10,30,12.100000000000001,0.54,0.0332,0.68,0,0,0,0,10.4,0,0,0,0,0.265,89.18,135.07,0.14,990,1.1,155,0.9 +2013,5,25,11,30,11.5,0.54,0.0335,0.68,0,0,0,0,10.4,0,0,0,0,0.266,92.83,148.39000000000001,0.14,990,1,162,0.9 +2013,5,25,12,30,10.9,0.54,0.034,0.68,0,0,0,0,10.3,0,0,0,0,0.266,96.38,161.52,0.14,990,1,169,0.9 +2013,5,25,13,30,10.4,0.55,0.0345,0.68,0,0,0,0,10.3,0,0,0,0,0.267,99.06,172.68,0.14,990,1,177,0.9 +2013,5,25,14,30,9.9,0.5700000000000001,0.035,0.68,0,0,0,0,9.9,0,0,0,0,0.269,100,168.22,0.14,989,1,184,0.9 +2013,5,25,15,30,9.5,0.5700000000000001,0.0361,0.68,0,0,0,0,9.5,0,0,0,0,0.27,100,155.58,0.14,989,1,190,0.9 +2013,5,25,16,30,9.200000000000001,0.5700000000000001,0.037200000000000004,0.68,0,0,0,0,9.200000000000001,0,0,0,0,0.271,100,142.32,0.14,989,1.1,195,0.9 +2013,5,25,17,30,9,0.5700000000000001,0.0374,0.68,0,0,0,0,9,0,0,0,0,0.272,100,129.02,0.14,989,1.1,198,0.9 +2013,5,25,18,30,8.9,0.58,0.0376,0.68,0,0,0,0,8.9,0,0,0,0,0.272,100,115.86,0.14,990,1.2000000000000002,199,0.9 +2013,5,25,19,30,8.9,0.5700000000000001,0.0379,0.68,0,0,0,1,8.9,0,0,0,0,0.272,100,102.96000000000001,0.14,990,1.2000000000000002,200,0.9 +2013,5,25,20,30,9.9,0.56,0.0388,0.68,0,0,0,1,9.600000000000001,0,0,0,0,0.272,97.86,89.93,0.14,991,1.2000000000000002,204,1 +2013,5,25,21,30,12.3,0.56,0.0393,0.68,44,586,160,1,9.8,44,586,0,160,0.272,84.77,78.57000000000001,0.14,992,1.3,206,1.2000000000000002 +2013,5,25,22,30,15.200000000000001,0.56,0.0398,0.68,61,769,352,1,10.100000000000001,61,769,0,352,0.271,71.66,67.79,0.14,992,1.3,186,1.6 +2013,5,25,23,30,16.7,0.55,0.041800000000000004,0.68,72,848,514,1,10.700000000000001,72,848,0,514,0.271,67.62,58.59,0.14,992,1.3,168,1.8 +2013,5,26,0,30,19.1,0.49,0.049600000000000005,0.68,82,875,623,1,11,82,875,0,623,0.271,59.58,51.85,0.14,991,1.4000000000000001,149,2 +2013,5,26,1,30,19.8,0.5,0.054,0.68,86,884,670,0,11.200000000000001,86,884,0,670,0.27,57.68,48.620000000000005,0.14,990,1.5,145,1.9000000000000001 +2013,5,26,2,30,20.200000000000003,0.54,0.055900000000000005,0.68,86,877,655,0,11.3,86,877,0,655,0.27,56.57,49.6,0.14,990,1.5,142,1.8 +2013,5,26,3,30,20.3,0.6,0.0555,0.68,82,852,575,0,11.3,82,852,0,575,0.269,56.07,54.57,0.14,989,1.5,137,1.8 +2013,5,26,4,30,20,0.66,0.0545,0.68,73,795,439,1,11.200000000000001,73,795,0,439,0.268,56.75,62.56,0.14,989,1.5,133,1.6 +2013,5,26,5,30,18.900000000000002,0.71,0.054,0.68,59,676,261,1,11.3,59,676,0,261,0.268,61.18,72.58,0.14,989,1.5,128,1.1 +2013,5,26,6,30,17,0.81,0.059500000000000004,0.68,32,370,72,3,12.4,30,0,3,30,0.268,74.24,83.84,0.14,990,1.5,119,0.8 +2013,5,26,7,30,15.5,0.88,0.0575,0.68,0,0,0,3,11.700000000000001,0,0,0,0,0.268,78.09,96.13,0.14,990,1.5,115,0.8 +2013,5,26,8,30,14.600000000000001,0.93,0.0514,0.68,0,0,0,0,11.600000000000001,0,0,0,0,0.268,81.95,108.83,0.14,991,1.5,119,0.8 +2013,5,26,9,30,13.9,0.98,0.048100000000000004,0.68,0,0,0,0,11.4,0,0,0,0,0.269,84.72,121.86,0.14,991,1.5,128,0.8 +2013,5,26,10,30,13.200000000000001,1.02,0.046400000000000004,0.68,0,0,0,0,11.4,0,0,0,0,0.269,89,135.1,0.14,991,1.5,140,0.8 +2013,5,26,11,30,12.700000000000001,1.05,0.0451,0.68,0,0,0,0,11.5,0,0,0,0,0.269,92.41,148.42000000000002,0.14,991,1.5,154,0.8 +2013,5,26,12,30,12.100000000000001,1.08,0.0441,0.68,0,0,0,0,11.4,0,0,0,0,0.268,95.71000000000001,161.56,0.14,991,1.5,172,0.8 +2013,5,26,13,30,11.4,1.1,0.0429,0.68,0,0,0,1,11.3,0,0,0,0,0.268,99.62,172.81,0.14,991,1.4000000000000001,187,0.9 +2013,5,26,14,30,10.8,1.12,0.041600000000000005,0.68,0,0,0,0,10.8,0,0,0,0,0.268,100,168.33,0.14,990,1.5,196,0.9 +2013,5,26,15,30,10.200000000000001,1.12,0.040100000000000004,0.68,0,0,0,0,10.200000000000001,0,0,0,0,0.267,100,155.66,0.14,990,1.5,201,0.9 +2013,5,26,16,30,9.700000000000001,1.1,0.039,0.68,0,0,0,0,9.700000000000001,0,0,0,0,0.267,100,142.39000000000001,0.14,990,1.5,203,0.9 +2013,5,26,17,30,9.4,1.06,0.0383,0.68,0,0,0,0,9.4,0,0,0,0,0.268,100,129.1,0.14,990,1.5,203,0.9 +2013,5,26,18,30,9.200000000000001,1.02,0.0381,0.68,0,0,0,0,9.200000000000001,0,0,0,0,0.268,100,115.94,0.14,991,1.5,202,0.8 +2013,5,26,19,30,9.200000000000001,0.97,0.038,0.68,0,0,0,0,9.200000000000001,0,0,0,0,0.269,100,103.05,0.14,991,1.6,199,0.8 +2013,5,26,20,30,10.3,0.93,0.038,0.68,0,0,0,0,10.3,0,0,0,0,0.269,100,90.02,0.14,992,1.6,195,1 +2013,5,26,21,30,12.8,0.9,0.0379,0.68,42,584,157,1,10.9,42,584,0,157,0.269,88.46000000000001,78.69,0.14,993,1.6,190,1.3 +2013,5,26,22,30,15.600000000000001,0.89,0.0368,0.68,59,766,346,1,11.600000000000001,59,766,0,346,0.27,77.07000000000001,67.93,0.14,993,1.6,176,1.5 +2013,5,26,23,30,17.2,0.9,0.0356,0.68,67,846,506,1,12.5,67,846,0,506,0.269,74.03,58.74,0.14,993,1.7000000000000002,164,1.6 +2013,5,27,0,30,19.6,0.6,0.054,0.68,83,862,613,1,12.9,83,862,0,613,0.268,65.37,52.01,0.14,993,1.7000000000000002,145,1.7000000000000002 +2013,5,27,1,30,20.3,0.68,0.0514,0.68,84,882,664,0,12.8,84,882,0,664,0.267,62.01,48.79,0.14,992,1.7000000000000002,136,1.7000000000000002 +2013,5,27,2,30,20.6,0.78,0.0505,0.68,82,879,650,0,12.5,82,879,0,650,0.266,59.89,49.76,0.14,992,1.7000000000000002,129,1.8 +2013,5,27,3,30,20.6,1.02,0.050300000000000004,0.68,76,856,571,0,12.3,76,856,0,571,0.264,59.09,54.7,0.14,991,1.7000000000000002,123,1.8 +2013,5,27,4,30,20.200000000000003,1.1400000000000001,0.054200000000000005,0.68,70,792,433,0,12.200000000000001,70,792,0,433,0.262,59.910000000000004,62.68,0.14,991,1.8,118,1.8 +2013,5,27,5,30,19,1.22,0.059500000000000004,0.68,58,666,256,1,12.200000000000001,58,666,0,256,0.261,64.78,72.67,0.14,992,1.8,114,1.4000000000000001 +2013,5,27,6,30,17.3,1.41,0.0639,0.68,31,374,71,1,12.9,31,374,0,71,0.259,75.59,83.9,0.14,992,1.8,112,1 +2013,5,27,7,30,16.1,1.36,0.0684,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.258,80.42,96.19,0.14,993,1.9000000000000001,116,0.9 +2013,5,27,8,30,15.4,1.28,0.0684,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.258,84.07000000000001,108.87,0.14,994,1.9000000000000001,126,0.9 +2013,5,27,9,30,14.700000000000001,1.18,0.0709,0.68,0,0,0,1,12.700000000000001,0,0,0,0,0.257,87.55,121.89,0.14,994,1.8,138,0.9 +2013,5,27,10,30,14.100000000000001,1.06,0.0742,0.68,0,0,0,3,12.600000000000001,0,0,0,0,0.257,90.43,135.13,0.14,994,1.8,149,0.8 +2013,5,27,11,30,13.700000000000001,0.93,0.07740000000000001,0.68,0,0,0,3,12.5,0,0,0,0,0.256,92.66,148.44,0.14,994,1.8,155,0.8 +2013,5,27,12,30,13.4,0.8300000000000001,0.0805,0.68,0,0,0,3,12.5,0,0,0,0,0.256,94.08,161.61,0.14,994,1.7000000000000002,157,0.8 +2013,5,27,13,30,13.200000000000001,0.76,0.0818,0.68,0,0,0,8,12.4,0,0,0,0,0.256,94.73,172.94,0.14,993,1.7000000000000002,156,0.8 +2013,5,27,14,30,13,0.71,0.0814,0.68,0,0,0,7,12.4,0,0,0,0,0.256,95.85000000000001,168.45000000000002,0.14,993,1.8,158,0.8 +2013,5,27,15,30,12.5,0.64,0.081,0.68,0,0,0,1,12.4,0,0,0,0,0.255,99.3,155.74,0.14,993,1.8,162,0.8 +2013,5,27,16,30,12,0.5700000000000001,0.0816,0.68,0,0,0,4,12,0,0,0,0,0.255,100,142.47,0.14,993,1.8,164,0.8 +2013,5,27,17,30,11.700000000000001,0.51,0.0839,0.68,0,0,0,8,11.700000000000001,0,0,0,0,0.255,100,129.18,0.14,993,1.8,163,0.8 +2013,5,27,18,30,11.700000000000001,0.47000000000000003,0.0859,0.68,0,0,0,4,11.700000000000001,0,0,0,0,0.256,100,116.03,0.14,994,1.9000000000000001,162,0.8 +2013,5,27,19,30,11.8,0.42,0.0916,0.68,0,0,0,3,11.8,0,0,0,0,0.256,100,103.15,0.14,994,1.9000000000000001,161,0.8 +2013,5,27,20,30,12.700000000000001,0.39,0.0989,0.68,0,0,0,3,12.5,0,0,0,0,0.256,98.55,90.11,0.14,995,2,158,0.9 +2013,5,27,21,30,14.5,0.36,0.1062,0.68,59,420,141,1,12.9,59,420,0,141,0.256,90.35000000000001,78.81,0.14,996,2,154,1.3 +2013,5,27,22,30,16.2,0.32,0.11760000000000001,0.68,90,618,321,1,13.600000000000001,90,618,0,321,0.256,84.85000000000001,68.06,0.14,996,2.1,146,1.7000000000000002 +2013,5,27,23,30,17,0.3,0.1287,0.68,111,708,476,1,14.4,111,708,0,476,0.256,84.69,58.89,0.14,996,2.1,141,1.9000000000000001 +2013,5,28,0,30,18.5,0.42,0.11120000000000001,0.68,110,781,589,3,15,333,56,0,367,0.255,79.91,52.18,0.14,995,2.2,124,2.2 +2013,5,28,1,30,18.900000000000002,0.45,0.11960000000000001,0.68,117,792,638,1,15.200000000000001,117,792,0,638,0.255,78.89,48.96,0.14,995,2.2,116,2.3000000000000003 +2013,5,28,2,30,18.900000000000002,0.42,0.1325,0.68,122,771,619,1,15.200000000000001,122,771,0,619,0.255,78.89,49.910000000000004,0.14,994,2.3000000000000003,113,2.2 +2013,5,28,3,30,18.6,0.43,0.1427,0.68,120,727,539,3,15.5,211,23,0,224,0.255,82.41,54.83,0.14,994,2.3000000000000003,112,2.1 +2013,5,28,4,30,18.2,0.37,0.1463,0.68,110,646,405,3,15.9,204,34,0,219,0.256,86.47,62.78,0.14,994,2.3000000000000003,111,2 +2013,5,28,5,30,17.6,0.33,0.1275,0.68,82,522,237,4,16.1,102,19,0,107,0.256,91.04,72.75,0.14,994,2.3000000000000003,110,1.7000000000000002 +2013,5,28,6,30,16.400000000000002,0.33,0.10490000000000001,0.68,38,234,63,3,16,25,0,3,25,0.257,97.23,83.97,0.14,994,2.2,110,1.3 +2013,5,28,7,30,15.4,0.34,0.0936,0.68,0,0,0,4,15.200000000000001,0,0,0,0,0.259,98.73,96.23,0.14,995,2.2,110,1.2000000000000002 +2013,5,28,8,30,15.100000000000001,0.34,0.097,0.68,0,0,0,4,14.8,0,0,0,0,0.259,98.12,108.9,0.14,995,2.2,110,1.2000000000000002 +2013,5,28,9,30,15,0.35000000000000003,0.1048,0.68,0,0,0,1,14.5,0,0,0,0,0.259,96.85000000000001,121.92,0.14,996,2.1,110,1.2000000000000002 +2013,5,28,10,30,15,0.36,0.1107,0.68,0,0,0,8,14.3,0,0,0,0,0.258,95.44,135.15,0.14,996,2.1,110,1.1 +2013,5,28,11,30,14.9,0.36,0.1092,0.68,0,0,0,1,14,0,0,0,0,0.258,94.66,148.47,0.14,996,2,109,1.1 +2013,5,28,12,30,14.8,0.36,0.10310000000000001,0.68,0,0,0,8,13.700000000000001,0,0,0,0,0.257,93.38,161.64000000000001,0.14,996,2,108,1.1 +2013,5,28,13,30,14.700000000000001,0.37,0.10010000000000001,0.68,0,0,0,4,13.4,0,0,0,0,0.257,92.16,173.07,0.14,996,1.9000000000000001,108,1.1 +2013,5,28,14,30,14.700000000000001,0.38,0.1019,0.68,0,0,0,4,13.200000000000001,0,0,0,0,0.256,90.89,168.56,0.14,996,1.9000000000000001,108,1 +2013,5,28,15,30,14.600000000000001,0.4,0.1018,0.68,0,0,0,4,13,0,0,0,0,0.256,90.24,155.82,0.14,995,1.8,108,1 +2013,5,28,16,30,14.5,0.44,0.1004,0.68,0,0,0,4,12.8,0,0,0,0,0.256,89.78,142.54,0.14,995,1.8,109,1 +2013,5,28,17,30,14.600000000000001,0.46,0.0961,0.68,0,0,0,3,12.8,0,0,0,0,0.256,88.93,129.25,0.14,995,1.8,109,1 +2013,5,28,18,30,14.600000000000001,0.46,0.0951,0.68,0,0,0,0,12.8,0,0,0,0,0.257,88.83,116.11,0.14,996,1.9000000000000001,110,1 +2013,5,28,19,30,14.600000000000001,0.43,0.09870000000000001,0.68,0,0,0,3,12.8,0,0,0,0,0.257,89.02,103.24000000000001,0.14,996,1.9000000000000001,110,1 +2013,5,28,20,30,15,0.39,0.1051,0.68,0,0,0,3,12.9,0,0,0,0,0.256,87.41,90.2,0.14,997,1.9000000000000001,110,1 +2013,5,28,21,30,15.9,0.38,0.1051,0.68,59,422,140,3,13.5,16,0,3,16,0.256,85.68,78.92,0.14,997,1.9000000000000001,110,1.3 +2013,5,28,22,30,16.900000000000002,0.36,0.1056,0.68,86,636,322,1,14.100000000000001,86,636,0,322,0.255,83.34,68.19,0.14,998,2,109,1.7000000000000002 +2013,5,28,23,30,17.400000000000002,0.34,0.113,0.68,104,728,478,3,14.3,63,10,0,68,0.255,81.79,59.04,0.14,998,2,108,1.9000000000000001 +2013,5,29,0,30,18.5,0.33,0.12340000000000001,0.68,117,768,587,1,14.200000000000001,117,768,0,587,0.253,75.82000000000001,52.33,0.14,997,2,99,2.4000000000000004 +2013,5,29,1,30,18.900000000000002,0.34,0.12150000000000001,0.68,120,790,637,1,13.700000000000001,120,790,0,637,0.252,71.82000000000001,49.120000000000005,0.14,996,2,95,2.5 +2013,5,29,2,30,18.900000000000002,0.32,0.1178,0.68,117,788,623,3,13.3,379,98,0,442,0.252,69.92,50.06,0.14,996,2,96,2.4000000000000004 +2013,5,29,3,30,18.8,0.34,0.11710000000000001,0.68,111,757,546,3,13.100000000000001,309,60,0,344,0.252,69.68,54.96,0.14,995,2,98,2.3000000000000003 +2013,5,29,4,30,18.400000000000002,0.35000000000000003,0.1153,0.68,99,689,413,1,13.100000000000001,99,689,0,413,0.252,71.38,62.88,0.14,995,2,100,2 +2013,5,29,5,30,17.6,0.34,0.11120000000000001,0.68,78,551,240,3,13.4,114,27,0,122,0.252,76.37,72.83,0.14,995,2,105,1.5 +2013,5,29,6,30,16.3,0.33,0.1072,0.68,39,230,63,1,13.8,39,230,0,63,0.253,85.09,84.02,0.14,995,2,111,1 +2013,5,29,7,30,15.4,0.33,0.1039,0.68,0,0,0,3,13.5,0,0,0,0,0.253,88.60000000000001,96.28,0.14,996,2,116,0.9 +2013,5,29,8,30,15,0.33,0.1005,0.68,0,0,0,1,13.5,0,0,0,0,0.254,90.55,108.94,0.14,996,2,117,0.9 +2013,5,29,9,30,14.700000000000001,0.32,0.09910000000000001,0.68,0,0,0,3,13.5,0,0,0,0,0.254,92.34,121.95,0.14,996,2,118,0.9 +2013,5,29,10,30,14.4,0.31,0.09870000000000001,0.68,0,0,0,3,13.5,0,0,0,0,0.254,94.4,135.17000000000002,0.14,996,2,119,0.8 +2013,5,29,11,30,14.100000000000001,0.3,0.0981,0.68,0,0,0,1,13.600000000000001,0,0,0,0,0.253,96.64,148.48,0.14,996,2,117,0.8 +2013,5,29,12,30,13.8,0.31,0.09730000000000001,0.68,0,0,0,1,13.600000000000001,0,0,0,0,0.253,98.5,161.67000000000002,0.14,996,2,116,0.8 +2013,5,29,13,30,13.4,0.3,0.0985,0.68,0,0,0,1,13.4,0,0,0,0,0.252,100,173.18,0.14,996,2,117,0.8 +2013,5,29,14,30,13.200000000000001,0.29,0.0964,0.68,0,0,0,3,13.200000000000001,0,0,0,0,0.251,100,168.67000000000002,0.14,995,1.9000000000000001,118,0.8 +2013,5,29,15,30,13,0.31,0.09290000000000001,0.68,0,0,0,1,13,0,0,0,0,0.251,100,155.9,0.14,995,1.9000000000000001,115,0.8 +2013,5,29,16,30,12.9,0.32,0.08800000000000001,0.68,0,0,0,0,12.9,0,0,0,0,0.251,99.97,142.62,0.14,994,1.9000000000000001,111,0.8 +2013,5,29,17,30,12.8,0.33,0.082,0.68,0,0,0,0,12.8,0,0,0,0,0.25,99.85000000000001,129.33,0.14,994,1.9000000000000001,107,0.8 +2013,5,29,18,30,12.8,0.33,0.0781,0.68,0,0,0,3,12.700000000000001,0,0,0,0,0.25,99.26,116.19,0.14,994,1.9000000000000001,105,0.9 +2013,5,29,19,30,12.8,0.35000000000000003,0.0745,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.25,98.8,103.33,0.14,994,1.9000000000000001,105,0.9 +2013,5,29,20,30,13.700000000000001,0.34,0.0772,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.25,93.06,90.89,0.14,994,1.9000000000000001,108,1 +2013,5,29,21,30,15.5,0.32,0.0843,0.68,54,453,140,1,13.9,54,453,0,140,0.249,90.21000000000001,79.04,0.14,995,1.9000000000000001,109,1.3 +2013,5,29,22,30,17.1,0.3,0.0944,0.68,82,649,322,1,15,82,649,0,322,0.248,87.4,68.32000000000001,0.14,995,2,107,1.6 +2013,5,29,23,30,17.900000000000002,0.3,0.09580000000000001,0.68,97,747,480,1,15.700000000000001,97,747,0,480,0.248,86.93,59.18,0.14,995,2,105,1.7000000000000002 +2013,5,30,0,30,19.5,0.38,0.0772,0.68,95,818,593,1,15.9,95,818,0,593,0.248,79.46000000000001,52.49,0.14,995,2.1,90,2.3000000000000003 +2013,5,30,1,30,19.8,0.4,0.0858,0.68,102,827,641,1,15.5,102,827,0,641,0.248,76.16,49.27,0.14,994,2.1,86,2.3000000000000003 +2013,5,30,2,30,19.700000000000003,0.4,0.0889,0.68,102,816,625,3,15.200000000000001,104,21,0,118,0.248,75.4,50.2,0.14,994,2.2,86,2.2 +2013,5,30,3,30,19.400000000000002,0.52,0.0791,0.68,92,800,550,3,15.200000000000001,74,14,0,82,0.247,76.83,55.08,0.14,993,2.2,88,2 +2013,5,30,4,30,18.8,0.5,0.0845,0.68,85,726,414,4,15.4,211,40,0,229,0.247,80.66,62.97,0.14,993,2.3000000000000003,91,1.8 +2013,5,30,5,30,17.900000000000002,0.45,0.0811,0.68,67,596,242,4,15.8,131,55,0,147,0.247,87.47,72.9,0.14,994,2.3000000000000003,95,1.3 +2013,5,30,6,30,16.7,0.45,0.0772,0.68,34,286,64,3,16,34,0,3,34,0.248,95.52,84.08,0.14,994,2.3000000000000003,98,0.9 +2013,5,30,7,30,15.700000000000001,0.45,0.0693,0.68,0,0,0,4,15.3,0,0,0,0,0.248,97.17,96.32000000000001,0.14,994,2.2,99,0.8 +2013,5,30,8,30,15.4,0.41000000000000003,0.0721,0.68,0,0,0,4,15,0,0,0,0,0.248,97.19,108.97,0.14,995,2.2,100,0.8 +2013,5,30,9,30,15.100000000000001,0.4,0.0757,0.68,0,0,0,1,14.8,0,0,0,0,0.248,97.77,121.97,0.14,995,2.2,102,0.8 +2013,5,30,10,30,14.9,0.41000000000000003,0.07590000000000001,0.68,0,0,0,1,14.600000000000001,0,0,0,0,0.248,97.95,135.18,0.14,995,2.1,103,0.8 +2013,5,30,11,30,14.700000000000001,0.4,0.07400000000000001,0.68,0,0,0,1,14.4,0,0,0,0,0.248,97.92,148.5,0.14,995,2.1,104,0.8 +2013,5,30,12,30,14.700000000000001,0.42,0.0771,0.68,0,0,0,0,14.3,0,0,0,0,0.248,97.48,161.70000000000002,0.14,995,2.1,106,0.8 +2013,5,30,13,30,14.700000000000001,0.43,0.0823,0.68,0,0,0,0,14.3,0,0,0,0,0.248,97.44,173.29,0.14,994,2.1,109,0.8 +2013,5,30,14,30,14.600000000000001,0.42,0.0845,0.68,0,0,0,0,14.3,0,0,0,0,0.249,98.17,168.77,0.14,994,2.1,111,0.7000000000000001 +2013,5,30,15,30,14.600000000000001,0.42,0.08750000000000001,0.68,0,0,0,0,14.3,0,0,0,0,0.25,98.05,155.98,0.14,994,2.1,111,0.8 +2013,5,30,16,30,14.600000000000001,0.41000000000000003,0.09050000000000001,0.68,0,0,0,0,14.3,0,0,0,0,0.25,97.77,142.69,0.14,993,2.1,111,0.8 +2013,5,30,17,30,14.5,0.39,0.0912,0.68,0,0,0,1,14.200000000000001,0,0,0,0,0.249,98.38,129.41,0.14,993,2.1,112,0.8 +2013,5,30,18,30,14.5,0.39,0.0908,0.68,0,0,0,0,14.3,0,0,0,0,0.249,98.76,116.28,0.14,994,2.1,112,0.8 +2013,5,30,19,30,14.3,0.39,0.0849,0.68,0,0,0,1,14.3,0,0,0,0,0.248,100,103.42,0.14,994,2,112,0.8 +2013,5,30,20,30,14.9,0.36,0.0825,0.68,0,0,0,1,14.3,0,0,0,0,0.248,95.89,90.99,0.14,994,2.1,113,0.9 +2013,5,30,21,30,16.2,0.34,0.08270000000000001,0.68,53,449,138,1,15.3,53,449,0,138,0.248,94.19,79.15,0.14,995,2.1,114,1.3 +2013,5,30,22,30,17.6,0.4,0.07,0.68,72,685,324,1,16.2,72,685,0,324,0.248,91.51,68.45,0.14,995,2.1,109,1.7000000000000002 +2013,5,30,23,30,18.2,0.54,0.0509,0.68,75,807,487,1,16.6,75,807,0,487,0.248,90.41,59.32,0.14,995,2.1,103,1.9000000000000001 +2013,5,31,0,30,19.6,0.44,0.060500000000000005,0.68,86,835,593,1,16.2,86,835,0,593,0.247,80.63,52.63,0.14,994,2.2,94,2.2 +2013,5,31,1,30,20.1,0.51,0.0551,0.68,86,857,643,1,15.5,86,857,0,643,0.247,74.73,49.42,0.14,994,2.3000000000000003,91,2.4000000000000004 +2013,5,31,2,30,20.200000000000003,0.51,0.059500000000000004,0.68,87,847,628,3,14.9,332,42,0,359,0.247,71.68,50.34,0.14,993,2.3000000000000003,90,2.4000000000000004 +2013,5,31,3,30,20,0.64,0.0639,0.68,84,814,549,1,14.5,84,814,0,549,0.247,70.77,55.19,0.14,992,2.4000000000000004,90,2.4000000000000004 +2013,5,31,4,30,19.5,0.61,0.0668,0.68,77,751,417,1,14.4,77,751,0,417,0.248,72.15,63.06,0.14,992,2.3000000000000003,91,2.1 +2013,5,31,5,30,18.6,0.5700000000000001,0.0587,0.68,59,636,246,3,14.4,142,113,0,175,0.248,76.35000000000001,72.97,0.14,992,2.3000000000000003,93,1.5 +2013,5,31,6,30,17.2,0.58,0.0558,0.68,31,339,66,1,14.600000000000001,31,339,0,66,0.248,84.42,84.13,0.14,992,2.2,96,1 +2013,5,31,7,30,16,0.5700000000000001,0.0516,0.68,0,0,0,0,13.9,0,0,0,0,0.249,87.56,96.35000000000001,0.14,993,2.2,100,0.8 +2013,5,31,8,30,15.5,0.56,0.049300000000000004,0.68,0,0,0,0,13.600000000000001,0,0,0,0,0.248,88.35000000000001,108.99000000000001,0.14,993,2.1,103,0.8 +2013,5,31,9,30,15.200000000000001,0.5700000000000001,0.049300000000000004,0.68,0,0,0,0,13.3,0,0,0,0,0.248,88.67,121.98,0.14,993,2.1,103,0.8 +2013,5,31,10,30,14.9,0.59,0.049600000000000005,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.248,88.72,135.19,0.14,993,2,101,0.8 +2013,5,31,11,30,14.700000000000001,0.5700000000000001,0.050300000000000004,0.68,0,0,0,0,12.8,0,0,0,0,0.248,88.51,148.51,0.14,993,2,99,0.8 +2013,5,31,12,30,14.5,0.56,0.0512,0.68,0,0,0,0,12.5,0,0,0,0,0.248,88,161.72,0.14,993,2,100,0.8 +2013,5,31,13,30,14.100000000000001,0.58,0.050300000000000004,0.68,0,0,0,0,12.200000000000001,0,0,0,0,0.248,88.61,173.38,0.14,992,1.9000000000000001,102,0.8 +2013,5,31,14,30,13.700000000000001,0.59,0.0478,0.68,0,0,0,1,12.100000000000001,0,0,0,0,0.247,89.85000000000001,168.87,0.14,991,1.9000000000000001,104,0.8 +2013,5,31,15,30,13.3,0.63,0.0459,0.68,0,0,0,1,12,0,0,0,0,0.246,91.58,156.06,0.14,991,1.9000000000000001,110,0.8 +2013,5,31,16,30,12.9,0.66,0.044500000000000005,0.68,0,0,0,4,11.9,0,0,0,0,0.245,93.36,142.76,0.14,990,1.9000000000000001,121,0.8 +2013,5,31,17,30,12.5,0.68,0.0429,0.68,0,0,0,1,11.8,0,0,0,0,0.244,95.46000000000001,129.48,0.14,990,1.9000000000000001,128,0.8 +2013,5,31,18,30,12.200000000000001,0.7000000000000001,0.0426,0.68,0,0,0,1,11.700000000000001,0,0,0,0,0.243,96.91,116.36,0.14,990,1.9000000000000001,132,0.8 +2013,5,31,19,30,12,0.71,0.041600000000000005,0.68,0,0,0,4,11.600000000000001,0,0,0,0,0.242,97.59,103.51,0.14,990,2,136,0.8 +2013,5,31,20,30,12.600000000000001,0.71,0.041600000000000005,0.68,0,0,0,4,11.600000000000001,0,0,0,0,0.241,93.35000000000001,91.09,0.14,991,2,139,0.8 +2013,5,31,21,30,14.3,0.71,0.0427,0.68,42,543,144,8,12.3,66,19,3,70,0.24,87.54,79.25,0.14,991,2.1,144,0.8 +2013,5,31,22,30,16.5,0.6900000000000001,0.043000000000000003,0.68,60,730,327,4,13,161,41,0,176,0.24,79.67,68.57000000000001,0.14,991,2.2,123,1 +2013,5,31,23,30,17.7,0.68,0.0454,0.68,72,813,485,8,13.3,261,55,0,289,0.24,75.57000000000001,59.45,0.14,991,2.2,99,1.2000000000000002 +2013,6,1,0,30,19.5,0.43,0.0801,0.6900000000000001,95,807,583,8,13.4,300,37,0,322,0.24,67.94,52.78,0.14,989,2.4000000000000004,76,1.4000000000000001 +2013,6,1,1,30,20.1,0.46,0.079,0.6900000000000001,97,825,632,8,13.5,350,48,0,381,0.24,65.66,49.56,0.14,988,2.5,71,1.4000000000000001 +2013,6,1,2,30,20.400000000000002,0.5,0.0795,0.6900000000000001,96,819,617,8,13.5,307,31,0,327,0.24,64.78,50.47,0.14,987,2.6,68,1.2000000000000002 +2013,6,1,3,30,20.3,0.42,0.12840000000000001,0.6900000000000001,113,731,529,4,13.600000000000001,196,23,0,209,0.24,65.22,55.29,0.14,987,2.7,67,1 +2013,6,1,4,30,19.700000000000003,0.44,0.1341,0.6900000000000001,103,651,397,8,13.600000000000001,212,42,0,231,0.23900000000000002,67.9,63.14,0.14,987,2.8000000000000003,69,0.9 +2013,6,1,5,30,18.6,0.45,0.1356,0.6900000000000001,81,503,228,7,14.100000000000001,92,16,0,96,0.23900000000000002,74.95,73.03,0.14,986,2.8000000000000003,68,0.7000000000000001 +2013,6,1,6,30,17.400000000000002,0.49,0.1434,0.6900000000000001,39,176,57,8,14.8,26,0,3,26,0.23800000000000002,84.53,84.17,0.14,986,2.9000000000000004,63,0.6000000000000001 +2013,6,1,7,30,16.6,0.5,0.1467,0.6900000000000001,0,0,0,8,14.4,0,0,1,0,0.23800000000000002,87.13,96.39,0.14,986,2.9000000000000004,55,0.6000000000000001 +2013,6,1,8,30,16.1,0.49,0.1459,0.6900000000000001,0,0,0,4,14.4,0,0,0,0,0.23700000000000002,89.65,109.01,0.14,986,2.9000000000000004,44,0.6000000000000001 +2013,6,1,9,30,15.8,0.5,0.1416,0.6900000000000001,0,0,0,4,14.4,0,0,0,0,0.23800000000000002,91.3,121.99000000000001,0.14,986,3,31,0.6000000000000001 +2013,6,1,10,30,15.5,0.51,0.1345,0.6900000000000001,0,0,0,3,14.4,0,0,0,0,0.23800000000000002,93.13,135.2,0.14,986,2.9000000000000004,18,0.6000000000000001 +2013,6,1,11,30,15.200000000000001,0.52,0.1262,0.6900000000000001,0,0,0,4,14.4,0,0,0,0,0.23800000000000002,94.98,148.51,0.14,986,2.9000000000000004,185,0.6000000000000001 +2013,6,1,12,30,14.700000000000001,0.53,0.116,0.6900000000000001,0,0,0,4,14.4,0,0,0,0,0.23800000000000002,97.82000000000001,161.73,0.14,985,2.9000000000000004,352,0.7000000000000001 +2013,6,1,13,30,14.3,0.54,0.10790000000000001,0.6900000000000001,0,0,0,8,14.3,0,0,0,0,0.23800000000000002,100,173.47,0.14,985,3,339,0.7000000000000001 +2013,6,1,14,30,13.9,0.56,0.1014,0.6900000000000001,0,0,0,8,13.9,0,0,0,0,0.23800000000000002,100,168.97,0.14,984,3,330,0.7000000000000001 +2013,6,1,15,30,13.600000000000001,0.58,0.09680000000000001,0.6900000000000001,0,0,0,1,13.600000000000001,0,0,0,0,0.23700000000000002,100,156.13,0.14,983,3,328,0.7000000000000001 +2013,6,1,16,30,13.600000000000001,0.6,0.0927,0.6900000000000001,0,0,0,1,13.600000000000001,0,0,0,0,0.23600000000000002,100,142.84,0.14,982,3,329,0.6000000000000001 +2013,6,1,17,30,13.600000000000001,0.62,0.08600000000000001,0.6900000000000001,0,0,0,8,13.600000000000001,0,0,0,0,0.23500000000000001,100,129.56,0.14,982,3,327,0.6000000000000001 +2013,6,1,18,30,13.600000000000001,0.63,0.0765,0.6900000000000001,0,0,0,8,13.600000000000001,0,0,0,0,0.23500000000000001,100,116.44,0.14,982,2.9000000000000004,326,0.7000000000000001 +2013,6,1,19,30,13.5,0.65,0.0688,0.6900000000000001,0,0,0,1,13.5,0,0,0,0,0.23600000000000002,100,103.60000000000001,0.14,982,2.8000000000000003,326,0.7000000000000001 +2013,6,1,20,30,14.100000000000001,0.6900000000000001,0.06330000000000001,0.6900000000000001,0,0,0,8,14,0,0,0,0,0.23800000000000002,99.48,91.19,0.14,982,2.7,326,0.9 +2013,6,1,21,30,15.600000000000001,0.73,0.058600000000000006,0.6900000000000001,45,498,137,3,14.3,20,0,3,20,0.24,91.79,79.36,0.14,982,2.6,328,1.3 +2013,6,1,22,30,17.1,0.79,0.0551,0.6900000000000001,64,704,320,8,14.600000000000001,170,53,0,189,0.241,85.08,68.68,0.14,981,2.6,328,1.8 +2013,6,1,23,30,17.8,0.8300000000000001,0.053000000000000005,0.6900000000000001,73,796,476,8,14.9,293,167,0,377,0.241,83.2,59.58,0.14,981,2.6,327,2 +2013,6,2,0,30,20,0.78,0.0584,0.6900000000000001,82,831,583,1,15.100000000000001,82,831,0,583,0.241,73.64,52.910000000000004,0.14,979,2.7,312,2.7 +2013,6,2,1,30,21,0.73,0.0674,0.6900000000000001,89,832,627,7,15.4,377,75,0,426,0.241,70.34,49.69,0.14,978,3,300,3.1 +2013,6,2,2,30,21,0.7000000000000001,0.0789,0.6900000000000001,93,810,607,1,15.4,93,810,0,607,0.241,70.51,50.59,0.14,977,3.3000000000000003,286,3 +2013,6,2,3,30,20.200000000000003,0.7000000000000001,0.09580000000000001,0.6900000000000001,95,759,527,4,15.5,91,20,0,103,0.24,74.43,55.39,0.14,977,3.5,269,2.7 +2013,6,2,4,30,18.900000000000002,0.75,0.09390000000000001,0.6900000000000001,84,697,398,8,15.600000000000001,74,15,0,81,0.23900000000000002,80.92,63.22,0.14,977,3.5,254,2.4000000000000004 +2013,6,2,5,30,17.3,0.77,0.0838,0.6900000000000001,64,582,234,8,15,42,0,0,42,0.23800000000000002,86.43,73.09,0.14,977,3.3000000000000003,249,2.1 +2013,6,2,6,30,15.8,0.8200000000000001,0.0726,0.6900000000000001,32,303,62,4,14.100000000000001,9,0,3,9,0.24,89.60000000000001,84.21000000000001,0.14,978,2.8000000000000003,253,1.7000000000000002 +2013,6,2,7,30,14.600000000000001,0.92,0.060000000000000005,0.6900000000000001,0,0,0,1,13.100000000000001,0,0,0,0,0.243,90.88,96.41,0.14,979,2.2,254,1.4000000000000001 +2013,6,2,8,30,13.700000000000001,1.02,0.047400000000000005,0.6900000000000001,0,0,0,1,12.100000000000001,0,0,0,0,0.245,90.29,109.03,0.14,980,1.9000000000000001,250,1.2000000000000002 +2013,6,2,9,30,13.100000000000001,1.08,0.035500000000000004,0.6900000000000001,0,0,0,1,11.3,0,0,0,0,0.246,88.74,122,0.14,980,1.8,246,1.1 +2013,6,2,10,30,12.5,1.16,0.029,0.6900000000000001,0,0,0,0,10.700000000000001,0,0,0,0,0.246,88.58,135.2,0.14,981,1.8,246,1.1 +2013,6,2,11,30,12,1.25,0.0256,0.6900000000000001,0,0,0,0,10.100000000000001,0,0,0,0,0.245,87.91,148.51,0.14,981,1.9000000000000001,245,1.2000000000000002 +2013,6,2,12,30,11.600000000000001,1.32,0.0274,0.6900000000000001,0,0,0,8,9.700000000000001,0,0,0,0,0.243,88.33,161.74,0.14,980,1.9000000000000001,242,1.1 +2013,6,2,13,30,11.200000000000001,1.35,0.029500000000000002,0.6900000000000001,0,0,0,1,9.700000000000001,0,0,0,0,0.242,90.38,173.56,0.14,980,1.9000000000000001,237,1.1 +2013,6,2,14,30,10.700000000000001,1.34,0.0308,0.6900000000000001,0,0,0,1,9.700000000000001,0,0,0,0,0.242,93.39,169.07,0.14,980,1.8,234,1 +2013,6,2,15,30,10.4,1.25,0.0329,0.6900000000000001,0,0,0,8,9.700000000000001,0,0,0,0,0.243,95.48,156.21,0.14,981,1.8,233,0.9 +2013,6,2,16,30,10.100000000000001,1.12,0.0361,0.6900000000000001,0,0,0,1,9.700000000000001,0,0,0,0,0.244,97.4,142.91,0.14,981,1.8,232,0.9 +2013,6,2,17,30,9.9,1.02,0.0393,0.6900000000000001,0,0,0,0,9.600000000000001,0,0,0,0,0.246,98.08,129.63,0.14,981,1.7000000000000002,230,0.9 +2013,6,2,18,30,9.600000000000001,0.9500000000000001,0.0414,0.6900000000000001,0,0,0,0,9.5,0,0,0,0,0.249,99.3,116.52,0.14,982,1.6,227,0.9 +2013,6,2,19,30,9.3,0.9,0.042,0.6900000000000001,0,0,0,1,9.3,0,0,0,0,0.252,100,103.68,0.14,982,1.4000000000000001,227,0.9 +2013,6,2,20,30,10,0.86,0.041100000000000005,0.6900000000000001,0,0,0,1,9.1,0,0,0,0,0.254,94.43,91.28,0.14,983,1.2000000000000002,228,1 +2013,6,2,21,30,11.9,0.8,0.0408,0.6900000000000001,42,573,147,1,9.700000000000001,42,573,0,147,0.256,86.4,79.46000000000001,0.14,984,1.1,221,1.4000000000000001 +2013,6,2,22,30,14,0.73,0.0414,0.6900000000000001,60,768,338,1,10,60,768,0,338,0.256,76.69,68.8,0.14,985,1,199,2 +2013,6,2,23,30,15,0.7000000000000001,0.0396,0.6900000000000001,70,860,503,1,9.5,70,860,0,503,0.256,69.63,59.7,0.14,985,0.9,185,2.3000000000000003 +2013,6,3,0,30,17.1,0.61,0.0388,0.6900000000000001,75,901,617,1,8.6,75,901,0,617,0.254,57.52,53.04,0.14,985,0.9,181,2.2 +2013,6,3,1,30,18.2,0.64,0.035,0.6900000000000001,75,917,667,0,7.9,75,917,0,667,0.253,51.01,49.82,0.14,985,1,183,2 +2013,6,3,2,30,18.900000000000002,0.67,0.0325,0.6900000000000001,73,917,654,0,7.5,73,917,0,654,0.251,47.52,50.7,0.14,984,1,185,1.9000000000000001 +2013,6,3,3,30,19.200000000000003,0.76,0.029300000000000003,0.6900000000000001,68,897,576,0,7.300000000000001,68,897,0,576,0.25,45.910000000000004,55.49,0.14,984,1,187,1.7000000000000002 +2013,6,3,4,30,19.200000000000003,0.81,0.0279,0.6900000000000001,60,841,438,0,7.2,60,841,0,438,0.251,45.65,63.29,0.14,984,1.1,189,1.3 +2013,6,3,5,30,18.2,0.88,0.0267,0.6900000000000001,48,733,261,1,7.7,48,733,0,261,0.251,50.19,73.14,0.14,984,1.1,184,0.9 +2013,6,3,6,30,16.400000000000002,0.9500000000000001,0.0258,0.6900000000000001,27,456,72,1,9.9,27,456,0,72,0.253,65.29,84.25,0.14,985,1,176,0.8 +2013,6,3,7,30,15,1.03,0.025400000000000002,0.6900000000000001,0,0,0,0,8.3,0,0,0,0,0.255,64.07000000000001,96.44,0.14,985,1,176,0.9 +2013,6,3,8,30,13.8,1.11,0.025400000000000002,0.6900000000000001,0,0,0,1,7.9,0,0,0,0,0.257,67.35,109.04,0.14,986,1.1,183,0.8 +2013,6,3,9,30,12.700000000000001,1.17,0.0261,0.6900000000000001,0,0,0,1,7.9,0,0,0,0,0.258,72.65,122.01,0.14,986,1.1,192,0.8 +2013,6,3,10,30,11.8,1.2,0.0273,0.6900000000000001,0,0,0,1,8,0,0,0,0,0.258,77.7,135.2,0.14,987,1.1,194,0.9 +2013,6,3,11,30,11,1.2,0.0285,0.6900000000000001,0,0,0,1,8.1,0,0,0,0,0.258,82.34,148.51,0.14,987,1.2000000000000002,192,0.9 +2013,6,3,12,30,10.600000000000001,1.19,0.029,0.6900000000000001,0,0,0,0,8.1,0,0,0,0,0.257,84.73,161.75,0.14,988,1.1,195,0.9 +2013,6,3,13,30,10.3,1.18,0.0285,0.6900000000000001,0,0,0,0,8,0,0,0,0,0.256,85.58,173.63,0.14,988,1.1,205,0.9 +2013,6,3,14,30,9.8,1.18,0.0274,0.6900000000000001,0,0,0,0,7.800000000000001,0,0,0,0,0.256,87.10000000000001,169.17000000000002,0.14,988,1,210,0.9 +2013,6,3,15,30,9,1.18,0.0262,0.6900000000000001,0,0,0,0,7.5,0,0,0,0,0.256,90.31,156.28,0.14,988,1,207,1 +2013,6,3,16,30,8.200000000000001,1.17,0.0252,0.6900000000000001,0,0,0,0,7.2,0,0,0,0,0.257,93.56,142.98,0.14,988,0.9,198,1.1 +2013,6,3,17,30,7.800000000000001,1.18,0.024300000000000002,0.6900000000000001,0,0,0,0,7,0,0,0,0,0.258,94.62,129.71,0.14,989,0.9,188,1.1 +2013,6,3,18,30,7.6000000000000005,1.19,0.0229,0.6900000000000001,0,0,0,0,6.800000000000001,0,0,0,0,0.258,94.67,116.60000000000001,0.14,989,0.9,179,1.1 +2013,6,3,19,30,7.4,1.21,0.0213,0.6900000000000001,0,0,0,0,6.7,0,0,0,0,0.258,95.04,103.77,0.14,990,0.8,171,1.1 +2013,6,3,20,30,8.200000000000001,1.23,0.020300000000000002,0.6900000000000001,0,0,0,1,6.300000000000001,0,0,0,0,0.256,87.93,91.38,0.14,990,0.8,167,1.1 +2013,6,3,21,30,10.700000000000001,1.22,0.020800000000000003,0.6900000000000001,36,635,151,1,6.6000000000000005,36,635,0,151,0.253,75.66,79.56,0.14,991,0.8,168,1.2000000000000002 +2013,6,3,22,30,13.700000000000001,1.17,0.0234,0.6900000000000001,52,809,343,1,5.9,52,809,0,343,0.251,59.33,68.91,0.14,991,0.8,165,1.7000000000000002 +2013,6,3,23,30,15.100000000000001,1.12,0.0274,0.6900000000000001,62,878,504,1,6.6000000000000005,62,878,0,504,0.25,56.95,59.82,0.14,991,0.9,161,2 +2013,6,4,0,30,17.7,0.73,0.0396,0.6900000000000001,75,896,612,0,7.7,75,896,0,612,0.248,52.02,53.17,0.14,991,1,154,1.9000000000000001 +2013,6,4,1,30,18.7,0.74,0.043500000000000004,0.6900000000000001,79,904,661,0,8.4,79,904,0,661,0.247,51.2,49.94,0.14,990,1.1,148,1.8 +2013,6,4,2,30,19.3,0.75,0.0471,0.6900000000000001,80,892,644,0,9,80,892,0,644,0.247,51.33,50.81,0.14,989,1.2000000000000002,142,1.7000000000000002 +2013,6,4,3,30,19.5,1.01,0.0398,0.6900000000000001,72,874,566,0,9.600000000000001,72,874,0,566,0.247,52.63,55.57,0.14,989,1.3,136,1.6 +2013,6,4,4,30,19.3,1.05,0.0426,0.6900000000000001,66,811,429,1,10,66,811,0,429,0.248,54.85,63.36,0.14,989,1.4000000000000001,128,1.5 +2013,6,4,5,30,18.1,1.08,0.0446,0.6900000000000001,54,691,254,0,10.5,54,691,0,254,0.247,61.24,73.18,0.14,989,1.4000000000000001,117,1 +2013,6,4,6,30,15.9,1.1300000000000001,0.046,0.6900000000000001,29,393,68,1,11.9,29,393,0,68,0.247,76.93,84.27,0.14,990,1.5,107,0.8 +2013,6,4,7,30,14.3,1.18,0.046,0.6900000000000001,0,0,0,0,11.100000000000001,0,0,0,0,0.247,81.32000000000001,96.45,0.14,990,1.5,105,0.8 +2013,6,4,8,30,13.5,1.23,0.0451,0.6900000000000001,0,0,0,1,11.100000000000001,0,0,0,0,0.246,85.5,109.05,0.14,991,1.5,108,0.8 +2013,6,4,9,30,12.8,1.27,0.0434,0.6900000000000001,0,0,0,0,11.100000000000001,0,0,0,0,0.246,89.23,122.01,0.14,991,1.4000000000000001,112,0.8 +2013,6,4,10,30,12.3,1.29,0.0422,0.6900000000000001,0,0,0,0,11.100000000000001,0,0,0,0,0.245,92.46000000000001,135.2,0.14,991,1.4000000000000001,120,0.8 +2013,6,4,11,30,11.700000000000001,1.29,0.0415,0.6900000000000001,0,0,0,0,11.200000000000001,0,0,0,0,0.244,96.69,148.51,0.14,992,1.4000000000000001,131,0.9 +2013,6,4,12,30,11.3,1.27,0.0402,0.6900000000000001,0,0,0,0,11.200000000000001,0,0,0,0,0.244,99.54,161.75,0.14,992,1.4000000000000001,139,0.9 +2013,6,4,13,30,11.100000000000001,1.25,0.0386,0.6900000000000001,0,0,0,0,11.100000000000001,0,0,0,0,0.243,100,173.70000000000002,0.14,991,1.4000000000000001,146,0.9 +2013,6,4,14,30,10.700000000000001,1.21,0.037700000000000004,0.6900000000000001,0,0,0,0,10.700000000000001,0,0,0,0,0.243,100,169.26,0.14,991,1.4000000000000001,159,0.9 +2013,6,4,15,30,10.4,1.16,0.0386,0.6900000000000001,0,0,0,0,10.4,0,0,0,0,0.243,100,156.35,0.14,991,1.5,174,1 +2013,6,4,16,30,10.100000000000001,1.1,0.0402,0.6900000000000001,0,0,0,0,10.100000000000001,0,0,0,0,0.243,100,143.05,0.14,991,1.5,189,1 +2013,6,4,17,30,9.700000000000001,1.02,0.0436,0.6900000000000001,0,0,0,0,9.700000000000001,0,0,0,0,0.243,100,129.78,0.14,991,1.6,197,1 +2013,6,4,18,30,9.600000000000001,0.96,0.0478,0.6900000000000001,0,0,0,4,9.600000000000001,0,0,0,0,0.243,100,116.67,0.14,992,1.6,191,0.9 +2013,6,4,19,30,9.8,0.9,0.053700000000000005,0.6900000000000001,0,0,0,4,9.8,0,0,0,0,0.242,100,103.85000000000001,0.14,992,1.7000000000000002,186,0.9 +2013,6,4,20,30,10.5,0.84,0.0604,0.6900000000000001,0,0,0,4,10.5,0,0,0,0,0.241,100,91.47,0.14,993,1.7000000000000002,183,0.8 +2013,6,4,21,30,12.200000000000001,0.77,0.0661,0.6900000000000001,46,493,135,8,11.600000000000001,49,0,3,49,0.23900000000000002,95.89,79.66,0.14,993,1.8,177,1 +2013,6,4,22,30,14.8,0.6900000000000001,0.0649,0.6900000000000001,68,700,319,7,12.100000000000001,119,19,0,126,0.23800000000000002,83.61,69.02,0.14,993,1.8,158,1.3 +2013,6,4,23,30,16.2,0.62,0.06520000000000001,0.6900000000000001,80,792,477,8,12.700000000000001,167,22,0,178,0.23800000000000002,79.99,59.94,0.14,993,1.8,145,1.3 +2013,6,5,0,30,18.8,0.36,0.0937,0.6900000000000001,102,800,580,8,13.4,266,28,0,282,0.23800000000000002,70.87,53.29,0.14,993,1.8,121,1.8 +2013,6,5,1,30,19.700000000000003,0.38,0.0916,0.6900000000000001,104,822,632,8,13.9,309,32,0,330,0.23800000000000002,69.05,50.06,0.14,992,1.8,110,1.7000000000000002 +2013,6,5,2,30,20.1,0.4,0.0869,0.6900000000000001,101,823,620,8,14,361,75,0,408,0.23800000000000002,67.98,50.910000000000004,0.14,991,1.8,104,1.5 +2013,6,5,3,30,20.1,0.49,0.0882,0.6900000000000001,96,791,542,8,13.9,304,62,0,339,0.23800000000000002,67.46000000000001,55.65,0.14,991,1.9000000000000001,99,1.3 +2013,6,5,4,30,19.6,0.5700000000000001,0.08950000000000001,0.6900000000000001,86,723,409,3,13.700000000000001,159,22,0,169,0.23700000000000002,68.88,63.42,0.14,991,2,93,1.1 +2013,6,5,5,30,18.6,0.61,0.0868,0.6900000000000001,67,594,239,3,13.9,89,15,0,93,0.23700000000000002,74.16,73.23,0.14,991,2,89,0.8 +2013,6,5,6,30,17.2,0.65,0.09280000000000001,0.6900000000000001,35,265,61,3,14.700000000000001,21,0,3,21,0.23800000000000002,85.16,84.3,0.14,991,2,89,0.6000000000000001 +2013,6,5,7,30,16.2,0.65,0.0965,0.6900000000000001,0,0,0,4,14.4,0,0,0,0,0.23800000000000002,88.92,96.47,0.14,992,2,90,0.6000000000000001 +2013,6,5,8,30,15.600000000000001,0.62,0.09530000000000001,0.6900000000000001,0,0,0,3,14.4,0,0,0,0,0.23800000000000002,92.63,109.05,0.14,993,2,92,0.6000000000000001 +2013,6,5,9,30,15.200000000000001,0.59,0.0956,0.6900000000000001,0,0,0,3,14.4,0,0,0,0,0.23800000000000002,94.94,122.01,0.14,993,2.1,94,0.6000000000000001 +2013,6,5,10,30,14.9,0.54,0.09290000000000001,0.6900000000000001,0,0,0,3,14.3,0,0,0,0,0.23800000000000002,96.49000000000001,135.19,0.14,993,2.1,97,0.6000000000000001 +2013,6,5,11,30,14.600000000000001,0.47000000000000003,0.0884,0.6900000000000001,0,0,0,3,14.3,0,0,0,0,0.23800000000000002,98.11,148.5,0.14,993,2.1,102,0.6000000000000001 +2013,6,5,12,30,14.5,0.43,0.08950000000000001,0.6900000000000001,0,0,0,1,14.3,0,0,0,0,0.23700000000000002,98.44,161.75,0.14,993,2.1,107,0.6000000000000001 +2013,6,5,13,30,14.4,0.42,0.0869,0.6900000000000001,0,0,0,1,14.200000000000001,0,0,0,0,0.23800000000000002,98.44,173.76,0.14,992,2.1,115,0.6000000000000001 +2013,6,5,14,30,14.3,0.4,0.0818,0.6900000000000001,0,0,0,1,14,0,0,0,0,0.23800000000000002,98.28,169.35,0.14,992,2.1,123,0.6000000000000001 +2013,6,5,15,30,14.100000000000001,0.41000000000000003,0.0786,0.6900000000000001,0,0,0,0,13.9,0,0,0,0,0.23700000000000002,98.74000000000001,156.42000000000002,0.14,992,2,124,0.6000000000000001 +2013,6,5,16,30,13.9,0.44,0.0714,0.6900000000000001,0,0,0,1,13.8,0,0,0,0,0.23600000000000002,99.19,143.12,0.14,992,2,120,0.7000000000000001 +2013,6,5,17,30,13.700000000000001,0.46,0.0639,0.6900000000000001,0,0,0,8,13.600000000000001,0,0,0,0,0.23500000000000001,99.57000000000001,129.85,0.14,992,2,116,0.7000000000000001 +2013,6,5,18,30,13.5,0.48,0.0596,0.6900000000000001,0,0,0,4,13.5,0,0,0,0,0.234,100,116.75,0.14,992,2,108,0.8 +2013,6,5,19,30,13.3,0.5,0.056900000000000006,0.6900000000000001,0,0,0,3,13.3,0,0,0,0,0.233,100,103.93,0.14,992,2,100,0.8 +2013,6,5,20,30,13.700000000000001,0.51,0.0558,0.6900000000000001,0,0,0,8,13.200000000000001,0,0,0,0,0.233,96.9,91.55,0.14,993,1.9000000000000001,96,0.8 +2013,6,5,21,30,15.4,0.52,0.057600000000000005,0.6900000000000001,45,493,133,1,13.600000000000001,45,493,0,133,0.233,88.82000000000001,79.76,0.14,993,2,93,0.8 +2013,6,5,22,30,17.6,0.55,0.0592,0.6900000000000001,66,699,315,3,14.100000000000001,70,11,0,74,0.233,80.15,69.12,0.14,993,2,78,0.9 +2013,6,5,23,30,18.6,0.56,0.061500000000000006,0.6900000000000001,79,790,473,8,13.600000000000001,253,53,0,279,0.233,72.59,60.050000000000004,0.14,994,2,67,0.9 +2013,6,6,0,30,20.3,0.54,0.0767,0.6900000000000001,92,815,578,8,12.8,246,25,0,261,0.232,61.88,53.4,0.13,993,2.1,56,1 +2013,6,6,1,30,20.8,0.5700000000000001,0.0782,0.6900000000000001,95,830,627,4,12.4,337,44,0,366,0.231,58.76,50.17,0.13,992,2.2,57,1.1 +2013,6,6,2,30,21,0.59,0.0761,0.6900000000000001,93,826,613,8,12.3,312,36,0,335,0.231,57.57,51.01,0.13,991,2.3000000000000003,58,1.2000000000000002 +2013,6,6,3,30,20.700000000000003,0.5700000000000001,0.0852,0.6900000000000001,93,787,536,8,12.200000000000001,205,23,0,218,0.231,58.11,55.730000000000004,0.13,990,2.3000000000000003,58,1.3 +2013,6,6,4,30,20.200000000000003,0.59,0.0864,0.6900000000000001,83,718,404,8,12.200000000000001,236,86,0,275,0.231,60.04,63.47,0.13,990,2.4000000000000004,59,1.2000000000000002 +2013,6,6,5,30,19.200000000000003,0.58,0.08650000000000001,0.6900000000000001,67,584,235,8,12.5,141,176,0,192,0.231,65.16,73.26,0.13,990,2.4000000000000004,60,0.9 +2013,6,6,6,30,17.7,0.63,0.0949,0.6900000000000001,34,253,59,1,13.700000000000001,34,253,0,59,0.231,77.36,84.32000000000001,0.13,991,2.4000000000000004,62,0.6000000000000001 +2013,6,6,7,30,16.6,0.68,0.0964,0.6900000000000001,0,0,0,0,13.4,0,0,0,0,0.231,81.37,96.48,0.13,991,2.4000000000000004,61,0.6000000000000001 +2013,6,6,8,30,15.9,0.7000000000000001,0.08900000000000001,0.6900000000000001,0,0,0,1,13.4,0,0,0,0,0.23,85.06,109.05,0.13,992,2.4000000000000004,56,0.6000000000000001 +2013,6,6,9,30,15.4,0.76,0.08510000000000001,0.6900000000000001,0,0,0,1,13.4,0,0,0,0,0.23,87.72,122,0.13,992,2.4000000000000004,49,0.6000000000000001 +2013,6,6,10,30,15,0.8200000000000001,0.0785,0.6900000000000001,0,0,0,3,13.3,0,0,0,0,0.23,89.74,135.18,0.13,992,2.4000000000000004,42,0.7000000000000001 +2013,6,6,11,30,14.600000000000001,0.84,0.0709,0.6900000000000001,0,0,0,4,13.3,0,0,0,0,0.23,91.97,148.49,0.13,992,2.4000000000000004,35,0.7000000000000001 +2013,6,6,12,30,14.200000000000001,0.86,0.06670000000000001,0.6900000000000001,0,0,0,0,13.4,0,0,0,0,0.23,94.88,161.74,0.13,992,2.4000000000000004,26,0.7000000000000001 +2013,6,6,13,30,13.8,0.88,0.0632,0.6900000000000001,0,0,0,4,13.5,0,0,0,0,0.23,97.89,173.81,0.13,992,2.4000000000000004,14,0.7000000000000001 +2013,6,6,14,30,13.5,0.87,0.0599,0.6900000000000001,0,0,0,1,13.5,0,0,0,0,0.229,100,169.43,0.13,991,2.4000000000000004,180,0.7000000000000001 +2013,6,6,15,30,13.3,0.87,0.057100000000000005,0.6900000000000001,0,0,0,3,13.3,0,0,0,0,0.229,100,156.49,0.13,991,2.5,342,0.7000000000000001 +2013,6,6,16,30,13.100000000000001,0.88,0.055600000000000004,0.6900000000000001,0,0,0,3,13.100000000000001,0,0,0,0,0.229,100,143.19,0.13,991,2.5,325,0.7000000000000001 +2013,6,6,17,30,12.9,0.87,0.0541,0.6900000000000001,0,0,0,3,12.9,0,0,0,0,0.23,100,129.92000000000002,0.13,990,2.6,312,0.7000000000000001 +2013,6,6,18,30,12.700000000000001,0.85,0.0524,0.6900000000000001,0,0,0,8,12.700000000000001,0,0,0,0,0.23,100,116.83,0.13,991,2.6,299,0.7000000000000001 +2013,6,6,19,30,12.4,0.85,0.050800000000000005,0.6900000000000001,0,0,0,4,12.4,0,0,0,0,0.231,100,104.01,0.13,991,2.6,287,0.8 +2013,6,6,20,30,12.8,0.86,0.0495,0.6900000000000001,0,0,0,8,12.8,0,0,0,0,0.231,100,91.64,0.13,992,2.6,276,0.8 +2013,6,6,21,30,14.600000000000001,0.87,0.048600000000000004,0.6900000000000001,41,508,131,8,13.3,65,26,3,70,0.232,92,79.85000000000001,0.13,992,2.5,268,0.9 +2013,6,6,22,30,17,0.9,0.0472,0.6900000000000001,60,711,312,8,13.700000000000001,164,53,0,183,0.232,80.88,69.22,0.13,992,2.5,282,0.9 +2013,6,6,23,30,18.400000000000002,0.93,0.046400000000000004,0.6900000000000001,70,801,468,8,13.8,268,79,0,308,0.233,74.55,60.160000000000004,0.13,992,2.5,298,0.9 +2013,6,7,0,30,20.6,0.91,0.051800000000000006,0.6900000000000001,78,840,578,1,13.700000000000001,78,840,0,578,0.233,64.62,53.51,0.13,992,2.4000000000000004,304,0.8 +2013,6,7,1,30,21.200000000000003,0.9500000000000001,0.0557,0.6900000000000001,82,854,628,1,13.3,82,854,0,628,0.232,60.83,50.27,0.13,991,2.4000000000000004,292,0.8 +2013,6,7,2,30,21.200000000000003,0.97,0.0585,0.6900000000000001,83,845,613,1,12.9,83,845,0,613,0.232,59,51.09,0.13,990,2.5,276,0.7000000000000001 +2013,6,7,3,30,21.1,0.96,0.0654,0.6900000000000001,82,812,538,0,12.600000000000001,82,812,0,538,0.232,58.4,55.800000000000004,0.13,989,2.4000000000000004,262,0.6000000000000001 +2013,6,7,4,30,20.900000000000002,0.9500000000000001,0.0689,0.6900000000000001,75,747,408,8,12.600000000000001,247,170,0,323,0.233,59.13,63.52,0.13,989,2.4000000000000004,252,0.5 +2013,6,7,5,30,20.1,0.93,0.0678,0.6900000000000001,60,622,239,8,13,141,152,0,185,0.234,63.54,73.29,0.13,989,2.4000000000000004,258,0.30000000000000004 +2013,6,7,6,30,18.8,0.92,0.0675,0.6900000000000001,31,317,62,8,14.100000000000001,38,94,3,47,0.23500000000000001,74.33,84.34,0.13,989,2.4000000000000004,276,0.2 +2013,6,7,7,30,17.8,0.92,0.0679,0.6900000000000001,0,0,0,0,13.200000000000001,0,0,0,0,0.23600000000000002,74.51,96.48,0.13,990,2.4000000000000004,289,0.4 +2013,6,7,8,30,17,0.93,0.068,0.6900000000000001,0,0,0,0,13,0,0,0,0,0.23600000000000002,77.44,109.05,0.13,991,2.4000000000000004,294,0.5 +2013,6,7,9,30,16.400000000000002,0.92,0.0689,0.6900000000000001,0,0,0,1,12.8,0,0,0,0,0.23700000000000002,79.41,121.99000000000001,0.13,991,2.4000000000000004,293,0.6000000000000001 +2013,6,7,10,30,15.9,0.87,0.068,0.6900000000000001,0,0,0,8,12.700000000000001,0,0,0,0,0.23700000000000002,81.37,135.17000000000002,0.13,991,2.5,289,0.7000000000000001 +2013,6,7,11,30,15.4,0.85,0.06670000000000001,0.6900000000000001,0,0,0,1,12.700000000000001,0,0,0,0,0.23700000000000002,83.81,148.47,0.13,991,2.5,281,0.7000000000000001 +2013,6,7,12,30,15,0.87,0.0646,0.6900000000000001,0,0,0,4,12.600000000000001,0,0,0,0,0.23700000000000002,85.36,161.73,0.13,991,2.6,268,0.7000000000000001 +2013,6,7,13,30,14.600000000000001,0.9,0.06280000000000001,0.6900000000000001,0,0,0,0,12.4,0,0,0,0,0.23700000000000002,86.41,173.85,0.13,991,2.6,254,0.7000000000000001 +2013,6,7,14,30,14.100000000000001,0.93,0.0613,0.6900000000000001,0,0,0,4,12,0,0,0,0,0.23700000000000002,87.26,169.51,0.13,990,2.6,242,0.7000000000000001 +2013,6,7,15,30,13.600000000000001,0.9400000000000001,0.0574,0.6900000000000001,0,0,0,0,11.5,0,0,0,0,0.23600000000000002,87.42,156.56,0.13,990,2.6,233,0.7000000000000001 +2013,6,7,16,30,13.100000000000001,0.9400000000000001,0.0539,0.6900000000000001,0,0,0,3,11.200000000000001,0,0,0,0,0.234,88.2,143.26,0.13,990,2.6,224,0.8 +2013,6,7,17,30,12.8,0.9500000000000001,0.0551,0.6900000000000001,0,0,0,1,10.9,0,0,0,0,0.233,88.11,129.99,0.13,990,2.6,210,0.8 +2013,6,7,18,30,12.700000000000001,0.96,0.056600000000000004,0.6900000000000001,0,0,0,0,10.8,0,0,0,0,0.232,87.98,116.9,0.13,990,2.6,190,0.8 +2013,6,7,19,30,12.600000000000001,0.97,0.0574,0.6900000000000001,0,0,0,4,10.700000000000001,0,0,0,0,0.231,88.39,104.09,0.13,991,2.7,174,0.7000000000000001 +2013,6,7,20,30,13.100000000000001,0.98,0.061200000000000004,0.6900000000000001,0,0,0,1,10.8,0,0,0,0,0.23,85.71000000000001,91.73,0.13,992,2.8000000000000003,166,0.8 +2013,6,7,21,30,14.4,0.98,0.0675,0.6900000000000001,44,465,125,8,11.5,60,15,3,63,0.231,82.49,79.94,0.13,993,2.9000000000000004,163,1 +2013,6,7,22,30,15.600000000000001,0.97,0.0745,0.6900000000000001,68,661,301,8,11.700000000000001,152,39,0,166,0.233,77.54,69.32000000000001,0.13,993,3,154,1.3 +2013,6,7,23,30,16.1,0.98,0.07740000000000001,0.6900000000000001,81,753,455,8,12.3,265,75,0,302,0.234,78.17,60.26,0.13,993,3,147,1.4000000000000001 +2013,6,8,0,30,19,0.96,0.0887,0.6900000000000001,93,786,559,8,13.3,338,86,0,389,0.23600000000000002,69.54,53.620000000000005,0.13,993,3.1,134,2.1 +2013,6,8,1,30,20.1,0.96,0.08850000000000001,0.6900000000000001,96,806,610,8,14.200000000000001,384,126,0,464,0.23700000000000002,68.97,50.370000000000005,0.13,992,3.1,130,2.2 +2013,6,8,2,30,20.400000000000002,0.9500000000000001,0.08510000000000001,0.6900000000000001,94,803,597,8,14.8,365,89,0,421,0.23700000000000002,70.33,51.18,0.13,991,3.2,130,2.2 +2013,6,8,3,30,20.1,0.89,0.0811,0.6900000000000001,88,775,523,8,15.200000000000001,279,42,0,303,0.23800000000000002,73.5,55.86,0.13,991,3.3000000000000003,132,2.2 +2013,6,8,4,30,19.5,0.88,0.08510000000000001,0.6900000000000001,80,707,395,8,15.5,128,20,0,137,0.23800000000000002,77.87,63.56,0.13,991,3.3000000000000003,133,2.1 +2013,6,8,5,30,18.5,0.8300000000000001,0.0918,0.6900000000000001,66,563,227,8,15.9,111,28,0,119,0.23800000000000002,84.94,73.32000000000001,0.13,991,3.4000000000000004,136,1.6 +2013,6,8,6,30,17.3,0.8,0.1111,0.6900000000000001,34,225,56,8,16.3,30,0,3,30,0.23800000000000002,94,84.35000000000001,0.13,991,3.4000000000000004,142,1.1 +2013,6,8,7,30,16.400000000000002,0.6900000000000001,0.12150000000000001,0.6900000000000001,0,0,0,4,16.2,0,0,0,0,0.23900000000000002,98.9,96.49000000000001,0.13,992,3.4000000000000004,147,1 +2013,6,8,8,30,16,0.5700000000000001,0.12240000000000001,0.6900000000000001,0,0,0,3,16,0,0,0,0,0.23900000000000002,100,109.05,0.13,992,3.4000000000000004,150,1.1 +2013,6,8,9,30,15.700000000000001,0.53,0.125,0.6900000000000001,0,0,0,3,15.700000000000001,0,0,0,0,0.23900000000000002,100,121.98,0.13,993,3.4000000000000004,151,1.1 +2013,6,8,10,30,15.5,0.47000000000000003,0.1193,0.6900000000000001,0,0,0,3,15.5,0,0,0,0,0.24,100,135.15,0.13,993,3.3000000000000003,150,1.1 +2013,6,8,11,30,15.200000000000001,0.43,0.11370000000000001,0.6900000000000001,0,0,0,3,15.200000000000001,0,0,0,0,0.24,100,148.45000000000002,0.13,993,3.3000000000000003,150,1 +2013,6,8,12,30,15,0.44,0.1188,0.6900000000000001,0,0,0,3,15,0,0,0,0,0.241,100,161.72,0.13,992,3.3000000000000003,151,1 +2013,6,8,13,30,14.8,0.41000000000000003,0.1168,0.6900000000000001,0,0,0,3,14.8,0,0,0,0,0.241,100,173.89000000000001,0.13,992,3.2,149,1 +2013,6,8,14,30,14.700000000000001,0.37,0.1193,0.6900000000000001,0,0,0,3,14.700000000000001,0,0,0,0,0.241,100,169.6,0.13,992,3.2,146,1 +2013,6,8,15,30,14.700000000000001,0.37,0.1267,0.6900000000000001,0,0,0,3,14.700000000000001,0,0,0,0,0.241,100,156.63,0.13,992,3.1,145,1 +2013,6,8,16,30,14.700000000000001,0.33,0.1287,0.6900000000000001,0,0,0,3,14.700000000000001,0,0,0,0,0.242,100,143.32,0.13,991,3.1,144,1 +2013,6,8,17,30,14.700000000000001,0.3,0.1302,0.6900000000000001,0,0,0,3,14.700000000000001,0,0,0,0,0.243,100,130.06,0.13,991,3,144,1.1 +2013,6,8,18,30,14.600000000000001,0.32,0.1369,0.6900000000000001,0,0,0,3,14.600000000000001,0,0,0,0,0.243,100,116.97,0.13,991,3,144,1.1 +2013,6,8,19,30,14.600000000000001,0.31,0.1343,0.6900000000000001,0,0,0,3,14.600000000000001,0,0,0,0,0.242,100,104.17,0.13,992,3,144,1.1 +2013,6,8,20,30,14.9,0.3,0.1311,0.6900000000000001,0,0,0,3,14.600000000000001,0,0,0,0,0.242,98.12,91.81,0.13,993,3,145,1.3 +2013,6,8,21,30,15.700000000000001,0.32,0.1321,0.6900000000000001,58,322,114,1,15.100000000000001,58,322,0,114,0.241,96.36,80.03,0.13,993,3,143,1.7000000000000002 +2013,6,8,22,30,16.6,0.33,0.1228,0.6900000000000001,87,574,289,1,15.600000000000001,87,574,0,289,0.24,93.8,69.41,0.13,993,2.9000000000000004,136,2.2 +2013,6,8,23,30,17,0.36,0.1023,0.6900000000000001,95,710,446,3,15.9,129,21,0,140,0.24,93.10000000000001,60.36,0.13,993,2.9000000000000004,132,2.4000000000000004 +2013,6,9,0,30,18.2,0.34,0.10880000000000001,0.6900000000000001,107,755,553,4,15.600000000000001,180,23,0,194,0.24,84.96000000000001,53.71,0.13,992,2.9000000000000004,126,2.8000000000000003 +2013,6,9,1,30,18.6,0.42,0.0984,0.6900000000000001,104,789,607,4,15.100000000000001,220,23,0,235,0.23900000000000002,80.18,50.46,0.13,991,2.9000000000000004,124,2.7 +2013,6,9,2,30,18.6,0.48,0.0926,0.6900000000000001,100,790,595,4,14.8,169,24,0,184,0.24,78.51,51.25,0.13,991,3,123,2.6 +2013,6,9,3,30,18.3,0.55,0.1028,0.6900000000000001,99,750,519,3,14.5,276,40,0,298,0.242,78.72,55.910000000000004,0.13,990,3,123,2.3000000000000003 +2013,6,9,4,30,17.900000000000002,0.62,0.09190000000000001,0.6900000000000001,84,697,394,4,14.4,124,20,0,133,0.244,80.05,63.6,0.13,990,3,124,1.9000000000000001 +2013,6,9,5,30,17.2,0.67,0.0844,0.6900000000000001,65,575,230,8,14.4,140,145,0,182,0.245,83.53,73.34,0.13,990,3,125,1.4000000000000001 +2013,6,9,6,30,16.3,0.7000000000000001,0.0801,0.6900000000000001,32,272,59,3,14.3,16,0,3,16,0.246,87.7,84.36,0.13,990,3,127,1 +2013,6,9,7,30,15.600000000000001,0.72,0.0765,0.6900000000000001,0,0,0,8,13.9,0,0,0,0,0.248,89.39,96.48,0.13,991,3,129,0.9 +2013,6,9,8,30,15.200000000000001,0.7000000000000001,0.0695,0.6900000000000001,0,0,0,3,13.700000000000001,0,0,0,0,0.249,90.51,109.04,0.13,991,2.9000000000000004,132,0.8 +2013,6,9,9,30,14.8,0.64,0.0621,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.25,91.67,121.96000000000001,0.13,991,2.9000000000000004,138,0.8 +2013,6,9,10,30,14.4,0.61,0.058800000000000005,0.6900000000000001,0,0,0,7,13.3,0,0,0,0,0.25,93.08,135.13,0.13,991,2.9000000000000004,142,0.8 +2013,6,9,11,30,14.100000000000001,0.59,0.0596,0.6900000000000001,0,0,0,3,13.3,0,0,0,0,0.251,94.75,148.43,0.13,991,2.9000000000000004,144,0.8 +2013,6,9,12,30,13.9,0.58,0.061500000000000006,0.6900000000000001,0,0,0,1,13.3,0,0,0,0,0.251,96.3,161.70000000000002,0.13,990,2.9000000000000004,147,0.8 +2013,6,9,13,30,13.700000000000001,0.56,0.0625,0.6900000000000001,0,0,0,3,13.4,0,0,0,0,0.25,98.27,173.92000000000002,0.13,990,2.9000000000000004,148,0.8 +2013,6,9,14,30,13.600000000000001,0.54,0.06430000000000001,0.6900000000000001,0,0,0,3,13.600000000000001,0,0,0,0,0.25,99.75,169.67000000000002,0.13,989,3,147,0.8 +2013,6,9,15,30,13.5,0.54,0.0714,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.25,100,156.70000000000002,0.13,989,3,145,0.8 +2013,6,9,16,30,13.5,0.51,0.0747,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.25,100,143.39000000000001,0.13,989,3,145,0.8 +2013,6,9,17,30,13.5,0.48,0.0742,0.6900000000000001,0,0,0,8,13.5,0,0,0,0,0.25,100,130.13,0.13,988,3,143,0.8 +2013,6,9,18,30,13.600000000000001,0.53,0.0819,0.6900000000000001,0,0,0,8,13.600000000000001,0,0,0,0,0.25,100,117.04,0.13,989,3.1,141,0.8 +2013,6,9,19,30,13.700000000000001,0.51,0.07970000000000001,0.6900000000000001,0,0,0,4,13.700000000000001,0,0,0,0,0.25,100,104.24000000000001,0.13,989,3.1,139,0.8 +2013,6,9,20,30,14.3,0.47000000000000003,0.07440000000000001,0.6900000000000001,0,0,0,8,14.100000000000001,0,0,0,0,0.249,98.76,91.89,0.13,989,3.1,140,1 +2013,6,9,21,30,15.100000000000001,0.52,0.0826,0.6900000000000001,48,410,118,4,14.700000000000001,24,0,3,24,0.248,97.61,80.11,0.13,989,3.2,142,1.3 +2013,6,9,22,30,16,0.5,0.08170000000000001,0.6900000000000001,72,632,293,4,15.3,63,10,0,67,0.247,95.69,69.5,0.13,989,3.2,136,1.5 +2013,6,9,23,30,16.5,0.46,0.0757,0.6900000000000001,83,738,447,4,16,107,20,0,117,0.247,96.86,60.45,0.13,989,3.3000000000000003,129,1.6 +2013,6,10,0,30,17.8,0.5,0.09380000000000001,0.6900000000000001,97,766,550,7,16.6,80,16,3,89,0.248,92.86,53.800000000000004,0.13,988,3.4000000000000004,106,1.7000000000000002 +2013,6,10,1,30,18.400000000000002,0.55,0.0863,0.6900000000000001,97,795,602,4,17,260,24,0,275,0.248,91.65,50.54,0.13,987,3.4000000000000004,97,1.7000000000000002 +2013,6,10,2,30,18.7,0.54,0.08170000000000001,0.6900000000000001,94,794,590,4,17.2,97,20,0,109,0.248,91.02,51.32,0.13,987,3.5,94,1.6 +2013,6,10,3,30,18.7,0.61,0.0941,0.6900000000000001,94,752,515,8,17.3,73,14,0,81,0.249,91.48,55.96,0.13,986,3.5,99,1.5 +2013,6,10,4,30,18.400000000000002,0.6,0.10300000000000001,0.6900000000000001,88,675,387,8,17.400000000000002,103,19,0,111,0.249,93.71000000000001,63.63,0.13,986,3.5,106,1.4000000000000001 +2013,6,10,5,30,17.7,0.5700000000000001,0.10070000000000001,0.6900000000000001,69,539,224,8,17.5,107,25,0,115,0.25,98.62,73.35000000000001,0.13,987,3.5,110,1.2000000000000002 +2013,6,10,6,30,16.8,0.61,0.1048,0.6900000000000001,34,221,56,8,16.8,29,0,3,29,0.251,100,84.36,0.13,987,3.4000000000000004,109,0.8 +2013,6,10,7,30,16.1,0.63,0.1,0.6900000000000001,0,0,0,7,16.1,0,0,0,0,0.252,100,96.48,0.13,987,3.3000000000000003,105,0.7000000000000001 +2013,6,10,8,30,15.8,0.59,0.0927,0.6900000000000001,0,0,0,7,15.8,0,0,0,0,0.252,100,109.02,0.13,988,3.2,102,0.7000000000000001 +2013,6,10,9,30,15.700000000000001,0.61,0.098,0.6900000000000001,0,0,0,8,15.700000000000001,0,0,0,0,0.253,100,121.95,0.13,988,3.2,99,0.7000000000000001 +2013,6,10,10,30,15.600000000000001,0.6,0.0922,0.6900000000000001,0,0,0,8,15.600000000000001,0,0,0,0,0.253,100,135.11,0.13,988,3.2,98,0.7000000000000001 +2013,6,10,11,30,15.5,0.56,0.0813,0.6900000000000001,0,0,0,8,15.5,0,0,0,0,0.254,100,148.41,0.13,988,3.2,99,0.7000000000000001 +2013,6,10,12,30,15.4,0.61,0.08170000000000001,0.6900000000000001,0,0,0,3,15.4,0,0,0,0,0.254,100,161.68,0.13,988,3.1,103,0.6000000000000001 +2013,6,10,13,30,15.3,0.62,0.0762,0.6900000000000001,0,0,0,4,15.3,0,0,0,0,0.255,100,173.95000000000002,0.13,987,3.1,109,0.6000000000000001 +2013,6,10,14,30,15.100000000000001,0.6,0.06570000000000001,0.6900000000000001,0,0,0,8,15.100000000000001,0,0,0,0,0.255,100,169.75,0.13,987,3.1,110,0.6000000000000001 +2013,6,10,15,30,15,0.68,0.0707,0.6900000000000001,0,0,0,8,15,0,0,0,0,0.256,100,156.76,0.13,987,3,106,0.6000000000000001 +2013,6,10,16,30,14.8,0.6900000000000001,0.0683,0.6900000000000001,0,0,0,4,14.8,0,0,0,0,0.255,100,143.45000000000002,0.13,986,3,101,0.6000000000000001 +2013,6,10,17,30,14.700000000000001,0.65,0.060700000000000004,0.6900000000000001,0,0,0,3,14.700000000000001,0,0,0,0,0.256,100,130.2,0.13,986,2.9000000000000004,101,0.6000000000000001 +2013,6,10,18,30,14.600000000000001,0.7000000000000001,0.0664,0.6900000000000001,0,0,0,3,14.600000000000001,0,0,0,0,0.256,100,117.11,0.13,986,2.8000000000000003,102,0.6000000000000001 +2013,6,10,19,30,14.5,0.7000000000000001,0.0663,0.6900000000000001,0,0,0,3,14.5,0,0,0,0,0.257,100,104.32000000000001,0.13,987,2.8000000000000003,100,0.6000000000000001 +2013,6,10,20,30,15,0.65,0.0611,0.6900000000000001,0,0,0,3,14.700000000000001,0,0,0,0,0.258,98.3,91.96000000000001,0.13,987,2.7,97,0.7000000000000001 +2013,6,10,21,30,16.2,0.68,0.066,0.6900000000000001,44,453,121,1,15.8,44,453,0,121,0.258,97.33,80.19,0.13,987,2.7,95,0.8 +2013,6,10,22,30,17.400000000000002,0.6900000000000001,0.063,0.6900000000000001,65,675,300,1,16.8,65,675,0,300,0.258,96.44,69.58,0.13,987,2.6,84,0.9 +2013,6,10,23,30,18,0.73,0.0511,0.6900000000000001,72,786,458,1,17.5,72,786,0,458,0.258,97.2,60.53,0.13,987,2.6,75,0.9 +2013,6,11,0,30,19.400000000000002,0.73,0.0611,0.6900000000000001,82,818,564,1,17.7,82,818,0,564,0.258,90.08,53.89,0.13,986,2.7,42,1 +2013,6,11,1,30,20.1,0.8300000000000001,0.0616,0.6900000000000001,84,837,615,1,17.400000000000002,84,837,0,615,0.257,84.72,50.620000000000005,0.13,986,2.7,29,1 +2013,6,11,2,30,20.6,0.87,0.055600000000000004,0.6900000000000001,81,840,605,1,17.2,81,840,0,605,0.257,81.11,51.38,0.13,985,2.7,26,1 +2013,6,11,3,30,20.900000000000002,1.16,0.0451,0.6900000000000001,71,827,534,1,17.1,71,827,0,534,0.257,78.9,56.01,0.13,984,2.7,34,1 +2013,6,11,4,30,20.700000000000003,1.19,0.0454,0.6900000000000001,64,770,406,1,17,64,770,0,406,0.257,79.41,63.65,0.13,984,2.7,46,1.1 +2013,6,11,5,30,19.8,1.21,0.041800000000000004,0.6900000000000001,51,658,239,1,17.2,51,658,0,239,0.257,84.85000000000001,73.37,0.13,984,2.7,56,0.9 +2013,6,11,6,30,18.1,1.21,0.0436,0.6900000000000001,27,368,63,1,17.6,27,368,0,63,0.257,97.17,84.36,0.13,985,2.7,60,0.7000000000000001 +2013,6,11,7,30,16.8,1.19,0.0436,0.6900000000000001,0,0,0,3,16.8,0,0,0,0,0.258,100,96.47,0.13,985,2.7,55,0.7000000000000001 +2013,6,11,8,30,16.3,1.1500000000000001,0.0398,0.6900000000000001,0,0,0,3,16.3,0,0,0,0,0.258,100,109.01,0.13,986,2.6,48,0.7000000000000001 +2013,6,11,9,30,15.9,1.1,0.039,0.6900000000000001,0,0,0,3,15.9,0,0,0,0,0.258,100,121.92,0.13,986,2.6,40,0.7000000000000001 +2013,6,11,10,30,15.600000000000001,1.03,0.037700000000000004,0.6900000000000001,0,0,0,4,15.600000000000001,0,0,0,0,0.258,100,135.08,0.13,986,2.5,33,0.7000000000000001 +2013,6,11,11,30,15.3,0.93,0.0366,0.6900000000000001,0,0,0,3,15.3,0,0,0,0,0.258,100,148.38,0.13,986,2.5,27,0.7000000000000001 +2013,6,11,12,30,15,0.84,0.0375,0.6900000000000001,0,0,0,0,15,0,0,0,0,0.258,100,161.66,0.13,986,2.4000000000000004,22,0.7000000000000001 +2013,6,11,13,30,14.8,0.76,0.0397,0.6900000000000001,0,0,0,3,14.8,0,0,0,0,0.258,100,173.96,0.13,986,2.4000000000000004,19,0.7000000000000001 +2013,6,11,14,30,14.5,0.72,0.0422,0.6900000000000001,0,0,0,1,14.5,0,0,0,0,0.258,100,169.82,0.13,985,2.4000000000000004,16,0.7000000000000001 +2013,6,11,15,30,14.3,0.7000000000000001,0.0446,0.6900000000000001,0,0,0,4,14.3,0,0,0,0,0.258,100,156.83,0.13,985,2.5,14,0.7000000000000001 +2013,6,11,16,30,14.3,0.68,0.0471,0.6900000000000001,0,0,0,4,14.3,0,0,0,0,0.257,100,143.52,0.13,985,2.5,12,0.7000000000000001 +2013,6,11,17,30,14.3,0.65,0.048600000000000004,0.6900000000000001,0,0,0,0,14.3,0,0,0,0,0.256,100,130.26,0.13,984,2.6,14,0.7000000000000001 +2013,6,11,18,30,14.3,0.66,0.051000000000000004,0.6900000000000001,0,0,0,0,14.3,0,0,0,0,0.255,100,117.18,0.13,984,2.6,17,0.7000000000000001 +2013,6,11,19,30,14.3,0.67,0.0522,0.6900000000000001,0,0,0,3,14.3,0,0,0,0,0.255,100,104.39,0.13,984,2.7,15,0.7000000000000001 +2013,6,11,20,30,14.8,0.65,0.051500000000000004,0.6900000000000001,0,0,0,3,14.600000000000001,0,0,0,0,0.255,98.81,92.04,0.13,985,2.7,184,0.7000000000000001 +2013,6,11,21,30,16.1,0.64,0.0536,0.6900000000000001,42,474,122,3,15.5,61,21,3,64,0.255,95.94,80.27,0.13,985,2.7,357,0.9 +2013,6,11,22,30,17.6,0.63,0.0551,0.6900000000000001,62,681,299,8,16.6,80,14,0,85,0.255,93.85000000000001,69.66,0.13,986,2.8000000000000003,179,1.2000000000000002 +2013,6,11,23,30,18.3,0.65,0.0514,0.6900000000000001,72,778,453,8,17.6,98,20,0,108,0.255,95.81,60.620000000000005,0.13,986,2.9000000000000004,1,1.4000000000000001 +2013,6,12,0,30,19.5,0.59,0.0694,0.6900000000000001,86,800,557,8,17.900000000000002,238,24,0,253,0.256,90.53,53.97,0.13,985,3,6,1.7000000000000002 +2013,6,12,1,30,20.1,0.63,0.06620000000000001,0.6900000000000001,87,823,609,3,17.8,370,86,0,425,0.256,86.58,50.69,0.13,983,3,11,1.7000000000000002 +2013,6,12,2,30,20.3,0.65,0.06280000000000001,0.6900000000000001,85,822,597,1,17.7,85,822,0,597,0.256,84.92,51.44,0.13,982,3.1,16,1.7000000000000002 +2013,6,12,3,30,20.1,0.67,0.0616,0.6900000000000001,80,796,525,1,17.6,80,796,0,525,0.255,85.62,56.04,0.13,982,3.1,21,1.6 +2013,6,12,4,30,19.6,0.6900000000000001,0.061200000000000004,0.6900000000000001,72,734,397,1,17.8,72,734,0,397,0.254,89.14,63.67,0.13,981,3.2,35,1.3 +2013,6,12,5,30,18.7,0.71,0.0608,0.6900000000000001,57,608,231,8,18.2,141,150,0,184,0.253,96.85000000000001,73.37,0.13,981,3.3000000000000003,51,1 +2013,6,12,6,30,17.7,0.71,0.0618,0.6900000000000001,30,303,59,8,17.7,38,97,3,47,0.253,100,84.36,0.13,981,3.3000000000000003,54,0.8 +2013,6,12,7,30,17.2,0.66,0.059800000000000006,0.6900000000000001,0,0,0,4,17.2,0,0,0,0,0.252,100,96.46000000000001,0.13,980,3.3000000000000003,44,0.9 +2013,6,12,8,30,17.1,0.6,0.0599,0.6900000000000001,0,0,0,4,17.1,0,0,0,0,0.252,100,108.99000000000001,0.13,980,3.3000000000000003,31,1.1 +2013,6,12,9,30,17.2,0.6,0.0671,0.6900000000000001,0,0,0,7,17.2,0,0,0,0,0.252,100,121.9,0.13,980,3.3000000000000003,19,1.4000000000000001 +2013,6,12,10,30,17.2,0.62,0.0703,0.6900000000000001,0,0,0,6,17.2,0,0,0,0,0.251,100,135.06,0.13,980,3.2,8,1.6 +2013,6,12,11,30,17.1,0.65,0.0713,0.6900000000000001,0,0,0,4,17.1,0,0,0,0,0.251,100,148.35,0.13,980,3.2,180,1.6 +2013,6,12,12,30,16.900000000000002,0.73,0.0772,0.6900000000000001,0,0,0,3,16.900000000000002,0,0,0,0,0.252,100,161.63,0.13,979,3.2,353,1.5 +2013,6,12,13,30,16.8,0.78,0.0815,0.6900000000000001,0,0,0,3,16.8,0,0,0,0,0.252,100,173.97,0.13,979,3.3000000000000003,344,1.3 +2013,6,12,14,30,16.7,0.79,0.08560000000000001,0.6900000000000001,0,0,0,1,16.7,0,0,0,0,0.253,100,169.89000000000001,0.13,979,3.3000000000000003,325,1 +2013,6,12,15,30,16.7,0.78,0.0946,0.6900000000000001,0,0,0,1,16.7,0,0,0,0,0.253,100,156.89000000000001,0.13,979,3.3000000000000003,298,0.9 +2013,6,12,16,30,16.5,0.75,0.1015,0.6900000000000001,0,0,0,0,16.5,0,0,0,0,0.252,100,143.58,0.13,979,3.2,271,0.7000000000000001 +2013,6,12,17,30,16.2,0.7000000000000001,0.1019,0.6900000000000001,0,0,0,0,16.2,0,0,0,0,0.251,100,130.33,0.13,979,3,253,0.7000000000000001 +2013,6,12,18,30,15.9,0.66,0.1015,0.6900000000000001,0,0,0,1,15.9,0,0,0,0,0.251,100,117.25,0.13,979,3,248,0.7000000000000001 +2013,6,12,19,30,15.700000000000001,0.62,0.1017,0.6900000000000001,0,0,0,1,15.700000000000001,0,0,0,0,0.251,100,104.46000000000001,0.13,979,3,255,0.6000000000000001 +2013,6,12,20,30,15.8,0.6,0.10070000000000001,0.6900000000000001,0,0,0,3,15.8,0,0,0,0,0.251,100,92.11,0.13,980,3,269,0.6000000000000001 +2013,6,12,21,30,16.3,0.6,0.0961,0.6900000000000001,49,389,114,1,16,49,389,0,114,0.25,98.32000000000001,80.34,0.13,980,2.9000000000000004,285,0.7000000000000001 +2013,6,12,22,30,17,0.63,0.091,0.6900000000000001,73,627,290,1,16.3,73,627,0,290,0.25,95.49,69.74,0.13,980,2.8000000000000003,289,0.9 +2013,6,12,23,30,17.400000000000002,0.66,0.0906,0.6900000000000001,86,734,446,1,16.400000000000002,86,734,0,446,0.25,93.91,60.69,0.13,980,2.7,286,1 +2013,6,13,0,30,18.400000000000002,0.8,0.0785,0.6900000000000001,88,802,559,1,16.400000000000002,88,802,0,559,0.251,87.97,54.04,0.13,979,2.6,284,1.3 +2013,6,13,1,30,19.1,0.78,0.0767,0.6900000000000001,91,825,613,8,16.2,370,84,0,423,0.251,83.22,50.75,0.13,978,2.5,286,1.6 +2013,6,13,2,30,19.900000000000002,0.77,0.0775,0.6900000000000001,90,820,601,4,15.8,215,23,0,229,0.251,77.02,51.480000000000004,0.13,978,2.5,286,1.8 +2013,6,13,3,30,20.3,0.79,0.0767,0.6900000000000001,86,795,530,8,15.200000000000001,302,60,0,336,0.251,72.39,56.07,0.13,977,2.4000000000000004,285,1.9000000000000001 +2013,6,13,4,30,20.1,0.79,0.0829,0.6900000000000001,79,724,400,3,14.8,245,131,0,303,0.251,71.53,63.690000000000005,0.13,977,2.4000000000000004,284,1.5 +2013,6,13,5,30,19.1,0.78,0.08660000000000001,0.6900000000000001,64,590,233,1,15.100000000000001,64,590,0,233,0.25,77.57000000000001,73.37,0.13,977,2.3000000000000003,283,1 +2013,6,13,6,30,17.8,0.77,0.0867,0.6900000000000001,32,278,60,1,15.200000000000001,32,278,0,60,0.25,84.53,84.35000000000001,0.13,978,2.2,279,0.7000000000000001 +2013,6,13,7,30,16.900000000000002,0.76,0.0855,0.6900000000000001,0,0,0,4,14.3,0,0,0,0,0.25,84.66,96.44,0.13,978,2,275,0.7000000000000001 +2013,6,13,8,30,16.2,0.72,0.07830000000000001,0.6900000000000001,0,0,0,8,13.8,0,0,0,0,0.25,85.73,108.97,0.13,979,1.9000000000000001,270,0.7000000000000001 +2013,6,13,9,30,15.5,0.71,0.0738,0.6900000000000001,0,0,0,3,13.200000000000001,0,0,0,0,0.25,86.16,121.87,0.13,979,1.8,266,0.7000000000000001 +2013,6,13,10,30,14.8,0.71,0.0698,0.6900000000000001,0,0,0,1,12.600000000000001,0,0,0,0,0.251,86.41,135.03,0.13,979,1.7000000000000002,266,0.7000000000000001 +2013,6,13,11,30,14,0.71,0.0645,0.6900000000000001,0,0,0,1,11.9,0,0,0,0,0.25,87.36,148.32,0.13,979,1.5,267,0.7000000000000001 +2013,6,13,12,30,13.200000000000001,0.72,0.0601,0.6900000000000001,0,0,0,1,11.3,0,0,0,0,0.249,88.21000000000001,161.6,0.13,979,1.4000000000000001,267,0.7000000000000001 +2013,6,13,13,30,12.3,0.71,0.0543,0.6900000000000001,0,0,0,3,10.5,0,0,0,0,0.248,88.51,173.98,0.13,979,1.4000000000000001,268,0.8 +2013,6,13,14,30,11.600000000000001,0.71,0.049300000000000004,0.6900000000000001,0,0,0,0,9.8,0,0,0,0,0.248,88.87,169.96,0.13,979,1.3,269,0.8 +2013,6,13,15,30,10.9,0.73,0.0459,0.6900000000000001,0,0,0,0,9.4,0,0,0,0,0.247,90.66,156.95000000000002,0.13,979,1.3,270,0.8 +2013,6,13,16,30,10.3,0.77,0.0442,0.6900000000000001,0,0,0,0,9.200000000000001,0,0,0,0,0.246,92.96000000000001,143.64000000000001,0.13,978,1.3,270,0.8 +2013,6,13,17,30,9.9,0.8,0.044000000000000004,0.6900000000000001,0,0,0,0,9.1,0,0,0,0,0.247,94.79,130.39000000000001,0.13,978,1.3,268,0.8 +2013,6,13,18,30,9.5,0.84,0.0441,0.6900000000000001,0,0,0,0,9.1,0,0,0,0,0.247,97.19,117.31,0.13,979,1.2000000000000002,265,0.8 +2013,6,13,19,30,9.200000000000001,0.9,0.0456,0.6900000000000001,0,0,0,0,9,0,0,0,0,0.249,98.9,104.52,0.13,979,1.2000000000000002,263,0.8 +2013,6,13,20,30,9.700000000000001,0.97,0.0477,0.6900000000000001,0,0,0,0,9,0,0,0,0,0.25,95.22,92.18,0.13,979,1.2000000000000002,263,1 +2013,6,13,21,30,11.4,1.03,0.0478,0.6900000000000001,40,533,129,1,9.3,40,533,0,129,0.251,86.82000000000001,80.41,0.13,980,1.2000000000000002,259,1.5 +2013,6,13,22,30,13.4,1.07,0.046,0.6900000000000001,59,747,316,1,9.4,59,747,0,316,0.252,76.53,69.81,0.13,980,1.1,253,2.1 +2013,6,13,23,30,14.5,1.09,0.0439,0.6900000000000001,68,840,478,1,9.3,68,840,0,478,0.253,70.95,60.76,0.13,980,1.1,251,2.3000000000000003 +2013,6,14,0,30,16.6,1.07,0.0429,0.6900000000000001,73,885,592,1,9.3,73,885,0,592,0.253,61.89,54.11,0.13,979,1.1,257,2.6 +2013,6,14,1,30,17.6,1.05,0.041800000000000004,0.6900000000000001,75,903,646,0,9.200000000000001,75,903,0,646,0.253,57.95,50.81,0.13,978,1.1,260,2.7 +2013,6,14,2,30,18.2,1.02,0.0408,0.6900000000000001,74,897,632,0,9.1,74,897,0,632,0.253,55.24,51.53,0.13,977,1.2000000000000002,262,2.7 +2013,6,14,3,30,18.400000000000002,1.07,0.0385,0.6900000000000001,69,875,557,0,8.8,69,875,0,557,0.254,53.61,56.1,0.13,976,1.2000000000000002,262,2.6 +2013,6,14,4,30,18.1,1.09,0.0367,0.6900000000000001,62,823,426,1,8.6,62,823,0,426,0.255,53.74,63.7,0.13,976,1.2000000000000002,262,2.3000000000000003 +2013,6,14,5,30,16.900000000000002,1.1400000000000001,0.034800000000000005,0.6900000000000001,50,712,253,1,8.700000000000001,50,712,0,253,0.256,58.45,73.37,0.13,977,1.2000000000000002,262,1.6 +2013,6,14,6,30,14.8,1.17,0.0334,0.6900000000000001,27,433,69,0,9.200000000000001,27,433,0,69,0.258,69.15,84.34,0.13,977,1.1,262,1.1 +2013,6,14,7,30,13.4,1.19,0.0324,0.6900000000000001,0,0,0,1,8.200000000000001,0,0,0,0,0.259,70.82000000000001,96.42,0.13,978,1.1,261,1 +2013,6,14,8,30,12.600000000000001,1.18,0.032100000000000004,0.6900000000000001,0,0,0,1,7.800000000000001,0,0,0,0,0.259,72.74,108.94,0.13,979,1.1,261,1 +2013,6,14,9,30,11.9,1.1400000000000001,0.0328,0.6900000000000001,0,0,0,0,7.6000000000000005,0,0,0,0,0.26,74.92,121.84,0.13,979,1.1,262,1 +2013,6,14,10,30,11.200000000000001,1.07,0.0347,0.6900000000000001,0,0,0,0,7.5,0,0,0,0,0.26,77.9,134.99,0.13,980,1.1,265,0.9 +2013,6,14,11,30,10.600000000000001,1.01,0.0364,0.6900000000000001,0,0,0,1,7.4,0,0,0,0,0.261,80.73,148.28,0.13,980,1.2000000000000002,265,0.9 +2013,6,14,12,30,10,0.98,0.0371,0.6900000000000001,0,0,0,1,7.4,0,0,0,0,0.262,83.92,161.57,0.13,980,1.2000000000000002,265,0.9 +2013,6,14,13,30,9.4,1.01,0.036000000000000004,0.6900000000000001,0,0,0,0,7.5,0,0,0,0,0.264,87.74,173.98,0.13,980,1.2000000000000002,265,0.9 +2013,6,14,14,30,8.9,1.09,0.033,0.6900000000000001,0,0,0,0,7.6000000000000005,0,0,0,0,0.265,91.38,170.03,0.13,980,1.1,267,0.9 +2013,6,14,15,30,8.3,1.19,0.029900000000000003,0.6900000000000001,0,0,0,0,7.6000000000000005,0,0,0,0,0.265,95.31,157.01,0.13,979,1.1,270,0.9 +2013,6,14,16,30,7.9,1.26,0.028300000000000002,0.6900000000000001,0,0,0,0,7.5,0,0,0,0,0.265,97.59,143.70000000000002,0.13,979,1.1,273,0.9 +2013,6,14,17,30,7.4,1.32,0.0279,0.6900000000000001,0,0,0,0,7.4,0,0,0,0,0.265,100,130.45,0.13,979,1.1,275,0.9 +2013,6,14,18,30,7.1000000000000005,1.35,0.0279,0.6900000000000001,0,0,0,0,7.1000000000000005,0,0,0,0,0.265,100,117.37,0.13,979,1.1,273,1 +2013,6,14,19,30,6.9,1.37,0.0279,0.6900000000000001,0,0,0,1,6.9,0,0,0,0,0.265,100,104.59,0.13,979,1.1,267,1 +2013,6,14,20,30,7.7,1.35,0.027,0.6900000000000001,0,0,0,3,7.2,0,0,0,0,0.265,96.7,92.24,0.13,979,1.1,263,1.4000000000000001 +2013,6,14,21,30,9.5,1.34,0.0261,0.6900000000000001,35,585,132,3,7.4,49,1,3,49,0.267,86.62,80.48,0.13,980,1.1,260,2.1 +2013,6,14,22,30,11.600000000000001,1.35,0.024800000000000003,0.6900000000000001,50,785,320,1,7.5,50,785,0,320,0.269,75.91,69.88,0.13,980,1,253,2.9000000000000004 +2013,6,14,23,30,12.600000000000001,1.35,0.0239,0.6900000000000001,58,870,482,1,7.2,58,870,0,482,0.27,69.83,60.83,0.13,980,1,249,3.2 +2013,6,15,0,30,14.700000000000001,1.1,0.028200000000000003,0.6900000000000001,66,904,596,3,6.9,297,41,0,321,0.271,59.7,54.17,0.13,980,1,244,3.3000000000000003 +2013,6,15,1,30,15.700000000000001,1.09,0.027600000000000003,0.6900000000000001,68,917,647,1,7,68,917,0,647,0.27,56.32,50.86,0.13,980,1.1,243,3.2 +2013,6,15,2,30,16.400000000000002,1.1,0.0273,0.6900000000000001,67,915,636,1,7.300000000000001,67,915,0,636,0.268,54.88,51.56,0.13,979,1.1,243,3.1 +2013,6,15,3,30,16.7,0.85,0.035500000000000004,0.6900000000000001,69,876,557,1,7.6000000000000005,69,876,0,557,0.265,55.04,56.120000000000005,0.13,979,1.2000000000000002,243,2.9000000000000004 +2013,6,15,4,30,16.5,0.8300000000000001,0.038400000000000004,0.6900000000000001,64,814,424,1,7.9,64,814,0,424,0.261,56.620000000000005,63.7,0.13,979,1.3,243,2.7 +2013,6,15,5,30,15.4,0.86,0.0397,0.6900000000000001,52,696,251,2,8.1,141,150,0,184,0.258,61.65,73.36,0.13,979,1.3,242,2.1 +2013,6,15,6,30,13.700000000000001,0.9400000000000001,0.0385,0.6900000000000001,28,408,68,2,8.4,38,66,3,44,0.257,70.48,84.32000000000001,0.13,980,1.3,243,1.4000000000000001 +2013,6,15,7,30,12.3,1.06,0.035,0.6900000000000001,0,0,0,1,7.9,0,0,0,0,0.256,74.63,96.4,0.13,981,1.3,244,1.1 +2013,6,15,8,30,11.5,1.16,0.0303,0.6900000000000001,0,0,0,1,7.7,0,0,0,0,0.255,77.43,108.91,0.13,981,1.3,247,1 +2013,6,15,9,30,10.8,1.18,0.0263,0.6900000000000001,0,0,0,0,7.5,0,0,0,0,0.255,79.96000000000001,121.81,0.13,982,1.3,253,0.9 +2013,6,15,10,30,10,1.1300000000000001,0.0239,0.6900000000000001,0,0,0,0,7.300000000000001,0,0,0,0,0.254,83.25,134.96,0.13,982,1.3,255,0.9 +2013,6,15,11,30,9.4,1.06,0.023200000000000002,0.6900000000000001,0,0,0,0,7.1000000000000005,0,0,0,0,0.252,85.7,148.25,0.13,982,1.2000000000000002,252,0.9 +2013,6,15,12,30,8.9,1.02,0.0252,0.6900000000000001,0,0,0,0,7,0,0,0,0,0.251,87.69,161.53,0.13,982,1.2000000000000002,251,0.9 +2013,6,15,13,30,8.700000000000001,0.98,0.027800000000000002,0.6900000000000001,0,0,0,0,6.800000000000001,0,0,0,0,0.251,88.15,173.97,0.13,982,1.2000000000000002,252,0.8 +2013,6,15,14,30,8.6,0.97,0.0286,0.6900000000000001,0,0,0,0,6.800000000000001,0,0,0,0,0.252,88.42,170.09,0.13,982,1.2000000000000002,251,0.8 +2013,6,15,15,30,8.5,0.99,0.0302,0.6900000000000001,0,0,0,0,6.7,0,0,0,0,0.253,88.44,157.07,0.13,981,1.2000000000000002,247,0.8 +2013,6,15,16,30,8.1,1.02,0.0291,0.6900000000000001,0,0,0,3,6.5,0,0,0,0,0.254,89.94,143.76,0.13,981,1.2000000000000002,246,0.8 +2013,6,15,17,30,7.5,1.03,0.026000000000000002,0.6900000000000001,0,0,0,7,6.300000000000001,0,0,0,0,0.254,91.97,130.51,0.13,981,1.2000000000000002,248,0.8 +2013,6,15,18,30,7.1000000000000005,1.04,0.0247,0.6900000000000001,0,0,0,7,6.1000000000000005,0,0,0,0,0.254,93.18,117.43,0.13,981,1.2000000000000002,249,0.8 +2013,6,15,19,30,6.7,1.06,0.0251,0.6900000000000001,0,0,0,4,5.9,0,0,0,0,0.255,94.89,104.65,0.13,981,1.2000000000000002,251,0.8 +2013,6,15,20,30,7.2,1.08,0.0257,0.6900000000000001,0,0,0,1,5.800000000000001,0,0,0,0,0.255,91.08,92.31,0.13,982,1.2000000000000002,254,0.8 +2013,6,15,21,30,9.200000000000001,1.1,0.0261,0.6900000000000001,35,577,130,1,6.2,35,577,0,130,0.255,81.25,80.54,0.13,982,1.2000000000000002,256,1 +2013,6,15,22,30,11.9,1.1400000000000001,0.025900000000000003,0.6900000000000001,51,774,316,1,6.4,51,774,0,316,0.254,69.08,69.94,0.13,983,1.2000000000000002,244,1 +2013,6,15,23,30,13.4,1.17,0.0258,0.6900000000000001,59,859,477,1,6.800000000000001,59,859,0,477,0.254,64.45,60.89,0.13,983,1.2000000000000002,232,0.9 +2013,6,16,0,30,16.7,0.98,0.0304,0.6900000000000001,67,890,588,1,6.9,67,890,0,588,0.253,52.33,54.22,0.14,982,1.3,237,0.4 +2013,6,16,1,30,17.7,0.98,0.0313,0.6900000000000001,70,906,641,1,7.1000000000000005,70,906,0,641,0.253,49.77,50.910000000000004,0.14,981,1.3,275,0.4 +2013,6,16,2,30,18.2,0.97,0.032100000000000004,0.6900000000000001,70,902,630,1,7.2,70,902,0,630,0.252,48.620000000000005,51.59,0.14,980,1.3,292,0.5 +2013,6,16,3,30,18.3,1.06,0.031400000000000004,0.6900000000000001,66,879,556,1,7.2,66,879,0,556,0.252,48.2,56.13,0.14,979,1.3,300,0.6000000000000001 +2013,6,16,4,30,18,1.03,0.0335,0.6900000000000001,61,822,425,1,7.1000000000000005,61,822,0,425,0.252,48.89,63.7,0.14,979,1.3,304,0.7000000000000001 +2013,6,16,5,30,16.900000000000002,1,0.0359,0.6900000000000001,51,705,253,1,7.800000000000001,51,705,0,253,0.252,54.9,73.35000000000001,0.14,979,1.3,312,0.6000000000000001 +2013,6,16,6,30,14.8,0.96,0.0368,0.6900000000000001,28,414,69,1,9.4,28,414,0,69,0.253,70.13,84.3,0.14,979,1.3,313,0.5 +2013,6,16,7,30,13.4,0.9400000000000001,0.0354,0.6900000000000001,0,0,0,0,7.800000000000001,0,0,0,0,0.254,68.99,96.37,0.14,979,1.3,298,0.5 +2013,6,16,8,30,12.5,0.92,0.0349,0.6900000000000001,0,0,0,0,7,0,0,0,0,0.254,69.21000000000001,108.88,0.14,980,1.2000000000000002,280,0.7000000000000001 +2013,6,16,9,30,11.5,0.92,0.037200000000000004,0.6900000000000001,0,0,0,0,6.7,0,0,0,0,0.253,72.60000000000001,121.78,0.14,980,1.2000000000000002,265,0.7000000000000001 +2013,6,16,10,30,10.8,0.9400000000000001,0.0408,0.6900000000000001,0,0,0,1,6.9,0,0,0,0,0.253,76.89,134.92000000000002,0.14,980,1.3,257,0.8 +2013,6,16,11,30,10.4,0.93,0.043000000000000003,0.6900000000000001,0,0,0,4,6.7,0,0,0,0,0.253,78.03,148.21,0.14,980,1.3,255,0.8 +2013,6,16,12,30,9.9,0.92,0.0444,0.6900000000000001,0,0,0,8,6.5,0,0,0,0,0.253,79.67,161.5,0.14,980,1.3,254,0.8 +2013,6,16,13,30,9.3,0.89,0.042,0.6900000000000001,0,0,0,4,6.300000000000001,0,0,0,0,0.253,81.41,173.96,0.14,980,1.2000000000000002,252,0.8 +2013,6,16,14,30,8.6,0.86,0.0398,0.6900000000000001,0,0,0,1,6,0,0,0,0,0.253,83.48,170.15,0.14,980,1.2000000000000002,252,0.8 +2013,6,16,15,30,8,0.85,0.038200000000000005,0.6900000000000001,0,0,0,1,5.800000000000001,0,0,0,0,0.252,85.87,157.13,0.14,979,1.2000000000000002,255,0.8 +2013,6,16,16,30,7.4,0.84,0.038,0.6900000000000001,0,0,0,0,5.7,0,0,0,0,0.251,88.92,143.82,0.14,979,1.1,257,0.8 +2013,6,16,17,30,6.9,0.84,0.0373,0.6900000000000001,0,0,0,0,5.6000000000000005,0,0,0,0,0.251,91.56,130.56,0.14,979,1.1,259,0.8 +2013,6,16,18,30,6.4,0.8300000000000001,0.0366,0.6900000000000001,0,0,0,0,5.5,0,0,0,0,0.252,94.08,117.49000000000001,0.14,979,1.1,261,0.8 +2013,6,16,19,30,6,0.81,0.0367,0.6900000000000001,0,0,0,1,5.4,0,0,0,0,0.253,95.95,104.71000000000001,0.14,979,1,265,0.8 +2013,6,16,20,30,6.6000000000000005,0.8,0.037000000000000005,0.6900000000000001,0,0,0,1,5.300000000000001,0,0,0,0,0.254,91.35000000000001,92.36,0.14,979,1,266,0.9 +2013,6,16,21,30,8.6,0.8,0.037000000000000005,0.6900000000000001,38,552,128,1,5.5,38,552,0,128,0.255,80.96000000000001,80.60000000000001,0.14,980,1,267,1.3 +2013,6,16,22,30,11.4,0.81,0.036500000000000005,0.6900000000000001,56,760,316,1,5.6000000000000005,56,760,0,316,0.255,67.63,70,0.14,980,1,262,1.8 +2013,6,16,23,30,12.9,0.81,0.036000000000000004,0.6900000000000001,65,850,478,1,5.7,65,850,0,478,0.255,61.46,60.95,0.14,979,1,255,2.1 +2013,6,17,0,30,15.5,0.75,0.0375,0.6900000000000001,72,895,595,1,5.800000000000001,72,895,0,595,0.254,52.32,54.27,0.13,979,0.9,256,2.5 +2013,6,17,1,30,16.400000000000002,0.74,0.0376,0.6900000000000001,74,912,649,1,5.7,74,912,0,649,0.254,49.24,50.94,0.13,978,0.9,258,2.7 +2013,6,17,2,30,17,0.75,0.0369,0.6900000000000001,74,910,639,1,5.4,74,910,0,639,0.255,46.5,51.61,0.13,977,0.9,258,2.7 +2013,6,17,3,30,17.2,0.86,0.033600000000000005,0.6900000000000001,68,891,564,0,5.2,68,891,0,564,0.255,44.99,56.13,0.13,976,0.9,257,2.6 +2013,6,17,4,30,16.900000000000002,0.87,0.0324,0.6900000000000001,61,839,433,1,5,61,839,0,433,0.255,45.38,63.690000000000005,0.13,976,0.9,255,2.2 +2013,6,17,5,30,15.5,0.89,0.0318,0.6900000000000001,49,727,258,1,5.4,49,727,0,258,0.255,51.06,73.33,0.13,977,0.9,255,1.6 +2013,6,17,6,30,13.200000000000001,0.91,0.0315,0.6900000000000001,27,447,72,1,6,27,447,0,72,0.256,61.88,84.27,0.13,977,0.8,255,1.1 +2013,6,17,7,30,11.600000000000001,0.93,0.031200000000000002,0.6900000000000001,0,0,0,0,4.9,0,0,0,0,0.258,63.58,96.34,0.13,978,0.8,256,1 +2013,6,17,8,30,10.600000000000001,0.93,0.031,0.6900000000000001,0,0,0,0,4.6000000000000005,0,0,0,0,0.259,66.54,108.85000000000001,0.13,979,0.8,258,1 +2013,6,17,9,30,9.700000000000001,0.92,0.0313,0.6900000000000001,0,0,0,0,4.5,0,0,0,0,0.26,69.87,121.74000000000001,0.13,979,0.8,257,1 +2013,6,17,10,30,8.9,0.92,0.032100000000000004,0.6900000000000001,0,0,0,0,4.4,0,0,0,0,0.261,73.22,134.88,0.13,980,0.8,254,1 +2013,6,17,11,30,8.1,0.9,0.033100000000000004,0.6900000000000001,0,0,0,1,4.2,0,0,0,0,0.26,76.51,148.17000000000002,0.13,980,0.9,252,1 +2013,6,17,12,30,7.5,0.91,0.0325,0.6900000000000001,0,0,0,0,4.1000000000000005,0,0,0,0,0.259,79.01,161.46,0.13,980,0.9,251,0.9 +2013,6,17,13,30,6.9,0.9,0.0318,0.6900000000000001,0,0,0,0,4,0,0,0,0,0.258,81.68,173.94,0.13,980,0.9,252,0.9 +2013,6,17,14,30,6.300000000000001,0.89,0.0328,0.6900000000000001,0,0,0,0,3.9000000000000004,0,0,0,0,0.257,84.77,170.21,0.13,980,0.9,254,0.9 +2013,6,17,15,30,5.9,0.89,0.0334,0.6900000000000001,0,0,0,0,3.9000000000000004,0,0,0,0,0.257,86.75,157.18,0.13,979,0.9,256,0.9 +2013,6,17,16,30,5.5,0.88,0.0315,0.6900000000000001,0,0,0,0,3.8000000000000003,0,0,0,0,0.257,89.07000000000001,143.87,0.13,979,0.9,256,0.9 +2013,6,17,17,30,5.1000000000000005,0.88,0.031,0.6900000000000001,0,0,0,0,3.8000000000000003,0,0,0,0,0.257,91.49,130.62,0.13,980,0.8,257,0.9 +2013,6,17,18,30,4.7,0.89,0.0308,0.6900000000000001,0,0,0,0,3.8000000000000003,0,0,0,0,0.257,93.7,117.55,0.13,980,0.8,257,0.9 +2013,6,17,19,30,4.4,0.9,0.030500000000000003,0.6900000000000001,0,0,0,0,3.7,0,0,0,0,0.258,95.21000000000001,104.76,0.13,981,0.8,257,0.9 +2013,6,17,20,30,5.1000000000000005,0.9,0.029900000000000003,0.6900000000000001,0,0,0,0,3.6,0,0,0,0,0.258,90.04,92.42,0.13,981,0.7000000000000001,257,1 +2013,6,17,21,30,7.4,0.92,0.029400000000000003,0.6900000000000001,36,587,131,1,4,36,587,0,131,0.257,79.07000000000001,80.65,0.13,982,0.7000000000000001,258,1.4000000000000001 +2013,6,17,22,30,10.3,0.96,0.0284,0.6900000000000001,53,790,322,1,4.4,53,790,0,322,0.256,66.59,70.05,0.13,982,0.7000000000000001,249,1.9000000000000001 +2013,6,17,23,30,11.9,1,0.0269,0.6900000000000001,61,878,486,1,4.6000000000000005,61,878,0,486,0.255,61.11,61,0.13,982,0.7000000000000001,239,2.2 +2013,6,18,0,30,14.8,0.86,0.0308,0.6900000000000001,68,914,601,0,4.3,68,914,0,601,0.254,49.550000000000004,54.32,0.13,981,0.7000000000000001,235,2.2 +2013,6,18,1,30,15.9,0.87,0.031100000000000003,0.6900000000000001,70,925,653,0,4,70,925,0,653,0.255,44.97,50.97,0.13,980,0.8,236,2.2 +2013,6,18,2,30,16.6,0.87,0.030600000000000002,0.6900000000000001,70,922,642,0,3.7,70,922,0,642,0.255,42.09,51.63,0.13,979,0.8,237,2.1 +2013,6,18,3,30,16.900000000000002,0.89,0.0302,0.6900000000000001,66,899,568,0,3.4000000000000004,66,899,0,568,0.255,40.6,56.13,0.13,979,0.8,238,2 +2013,6,18,4,30,16.6,0.9,0.031400000000000004,0.6900000000000001,61,845,435,0,3.4000000000000004,61,845,0,435,0.255,41.26,63.68,0.13,979,0.8,239,1.7000000000000002 +2013,6,18,5,30,15.200000000000001,0.9,0.0318,0.6900000000000001,50,728,258,0,3.9000000000000004,50,728,0,258,0.254,46.95,73.31,0.13,979,0.9,243,1.2000000000000002 +2013,6,18,6,30,12.700000000000001,0.92,0.0324,0.6900000000000001,27,441,72,1,5.6000000000000005,27,441,0,72,0.253,61.93,84.25,0.13,980,0.9,251,0.8 +2013,6,18,7,30,10.9,0.92,0.0323,0.6900000000000001,0,0,0,0,4.1000000000000005,0,0,0,0,0.253,62.910000000000004,96.31,0.13,981,0.9,256,0.9 +2013,6,18,8,30,9.8,0.92,0.031100000000000003,0.6900000000000001,0,0,0,0,3.8000000000000003,0,0,0,0,0.254,66.14,108.81,0.13,981,0.9,256,0.9 +2013,6,18,9,30,9.1,0.92,0.033100000000000004,0.6900000000000001,0,0,0,0,3.5,0,0,0,0,0.255,68.11,121.7,0.13,982,0.9,254,0.9 +2013,6,18,10,30,8.4,0.91,0.034800000000000005,0.6900000000000001,0,0,0,0,3.4000000000000004,0,0,0,0,0.255,70.69,134.84,0.13,983,0.9,253,0.9 +2013,6,18,11,30,7.800000000000001,0.91,0.0363,0.6900000000000001,0,0,0,0,3.3000000000000003,0,0,0,0,0.256,73.10000000000001,148.12,0.13,983,0.9,251,0.9 +2013,6,18,12,30,7.300000000000001,0.93,0.0361,0.6900000000000001,0,0,0,0,3.3000000000000003,0,0,0,0,0.256,75.65,161.41,0.13,983,0.9,249,0.9 +2013,6,18,13,30,6.7,0.96,0.0354,0.6900000000000001,0,0,0,0,3.3000000000000003,0,0,0,0,0.256,78.86,173.92000000000002,0.13,983,0.9,249,0.9 +2013,6,18,14,30,6,0.98,0.035500000000000004,0.6900000000000001,0,0,0,1,3.1,0,0,0,0,0.256,81.78,170.26,0.13,983,0.9,249,1 +2013,6,18,15,30,5.5,0.99,0.0359,0.6900000000000001,0,0,0,0,3.1,0,0,0,0,0.256,84.32000000000001,157.24,0.13,983,0.9,248,1 +2013,6,18,16,30,5.1000000000000005,1,0.0347,0.6900000000000001,0,0,0,0,3.1,0,0,0,0,0.256,86.64,143.92000000000002,0.13,983,0.9,248,1 +2013,6,18,17,30,4.6000000000000005,1.01,0.033,0.6900000000000001,0,0,0,0,3,0,0,0,0,0.256,89.06,130.67000000000002,0.13,983,0.9,249,1 +2013,6,18,18,30,4.2,1.03,0.0322,0.6900000000000001,0,0,0,0,2.8000000000000003,0,0,0,0,0.255,90.91,117.60000000000001,0.13,983,0.8,250,0.9 +2013,6,18,19,30,3.8000000000000003,1.06,0.031400000000000004,0.6900000000000001,0,0,0,0,2.7,0,0,0,0,0.254,92.7,104.82000000000001,0.13,984,0.8,251,0.9 +2013,6,18,20,30,4.3,1.11,0.0303,0.6900000000000001,0,0,0,1,2.6,0,0,0,0,0.253,88.68,92.47,0.13,985,0.8,250,1.1 +2013,6,18,21,30,6.4,1.16,0.0291,0.6900000000000001,36,584,130,1,2.9000000000000004,36,584,0,130,0.252,78.46000000000001,80.7,0.13,985,0.8,246,1.6 +2013,6,18,22,30,9.1,1.22,0.027600000000000003,0.6900000000000001,52,787,320,1,3.1,52,787,0,320,0.252,66.1,70.10000000000001,0.13,985,0.8,235,2 +2013,6,18,23,30,10.5,1.28,0.0267,0.6900000000000001,60,869,481,1,3.5,60,869,0,481,0.251,62,61.04,0.13,986,0.9,226,2.1 +2013,6,19,0,30,13.700000000000001,1.08,0.031900000000000005,0.6900000000000001,68,903,595,0,3.8000000000000003,68,903,0,595,0.251,51.34,54.35,0.13,985,0.9,200,2.1 +2013,6,19,1,30,14.9,1.11,0.033,0.6900000000000001,71,914,646,0,3.8000000000000003,71,914,0,646,0.251,47.410000000000004,51,0.13,984,1,190,2 +2013,6,19,2,30,15.3,1.1500000000000001,0.0354,0.6900000000000001,72,909,636,0,3.8000000000000003,72,909,0,636,0.251,46.12,51.63,0.13,984,1,184,1.7000000000000002 +2013,6,19,3,30,15.3,1.3800000000000001,0.0346,0.6900000000000001,68,883,560,1,3.9000000000000004,68,883,0,560,0.25,46.47,56.13,0.13,984,1.1,175,1.5 +2013,6,19,4,30,15,1.42,0.0368,0.6900000000000001,62,827,429,1,4.4,62,827,0,429,0.25,49.050000000000004,63.660000000000004,0.13,984,1.1,165,1.1 +2013,6,19,5,30,13.9,1.43,0.0373,0.6900000000000001,50,711,255,3,6.5,126,51,0,141,0.249,60.82,73.28,0.13,984,1.2000000000000002,151,0.8 +2013,6,19,6,30,12.4,1.45,0.0376,0.6900000000000001,28,427,71,1,7.300000000000001,28,427,0,71,0.248,71.22,84.21000000000001,0.13,985,1.3,140,0.8 +2013,6,19,7,30,11.4,1.41,0.0398,0.6900000000000001,0,0,0,8,6.800000000000001,0,0,0,0,0.247,73.51,96.27,0.13,985,1.4000000000000001,136,0.9 +2013,6,19,8,30,10.8,1.31,0.0437,0.6900000000000001,0,0,0,3,7,0,0,0,0,0.246,77.2,108.77,0.13,986,1.6,137,0.9 +2013,6,19,9,30,10.4,1.12,0.0533,0.6900000000000001,0,0,0,4,7.1000000000000005,0,0,0,0,0.246,80.14,121.66,0.13,987,1.8,144,0.9 +2013,6,19,10,30,10.200000000000001,0.86,0.07060000000000001,0.6900000000000001,0,0,0,1,7.5,0,0,0,0,0.247,83.37,134.8,0.13,987,1.9000000000000001,155,0.9 +2013,6,19,11,30,10.100000000000001,0.62,0.0903,0.6900000000000001,0,0,0,7,7.9,0,0,0,0,0.248,86.41,148.08,0.13,987,2,168,0.9 +2013,6,19,12,30,9.9,0.46,0.10110000000000001,0.6900000000000001,0,0,0,8,8.1,0,0,0,0,0.248,88.75,161.37,0.13,987,2.1,177,0.9 +2013,6,19,13,30,9.700000000000001,0.38,0.1017,0.6900000000000001,0,0,0,8,8,0,0,0,0,0.249,89.21000000000001,173.89000000000001,0.13,987,2.1,184,0.9 +2013,6,19,14,30,9.5,0.36,0.0988,0.6900000000000001,0,0,0,4,8,0,0,0,0,0.25,90.19,170.31,0.13,987,2.1,191,0.9 +2013,6,19,15,30,9.1,0.36,0.09340000000000001,0.6900000000000001,0,0,0,8,7.9,0,0,0,0,0.251,92.44,157.29,0.13,987,2.1,194,0.9 +2013,6,19,16,30,8.700000000000001,0.36,0.09140000000000001,0.6900000000000001,0,0,0,8,7.800000000000001,0,0,0,0,0.251,94.36,143.98,0.13,987,2.1,191,0.9 +2013,6,19,17,30,8.4,0.35000000000000003,0.09190000000000001,0.6900000000000001,0,0,0,7,7.800000000000001,0,0,0,0,0.251,95.82000000000001,130.72,0.13,987,2.1,188,0.9 +2013,6,19,18,30,8,0.35000000000000003,0.091,0.6900000000000001,0,0,0,7,7.7,0,0,0,0,0.251,98.21000000000001,117.65,0.13,987,2.1,184,0.9 +2013,6,19,19,30,7.800000000000001,0.35000000000000003,0.08800000000000001,0.6900000000000001,0,0,0,8,7.7,0,0,0,0,0.251,99.62,104.87,0.13,988,2.1,183,0.9 +2013,6,19,20,30,8.5,0.38,0.08710000000000001,0.6900000000000001,0,0,0,7,7.800000000000001,0,0,0,0,0.251,95.21000000000001,92.52,0.13,988,2.1,184,1 +2013,6,19,21,30,10.3,0.41000000000000003,0.08600000000000001,0.6900000000000001,48,396,112,7,8.1,36,0,3,36,0.25,86.47,80.75,0.13,988,2.1,181,1.3 +2013,6,19,22,30,12.200000000000001,0.44,0.0864,0.6900000000000001,74,633,288,7,8.5,92,15,0,97,0.25,78.09,70.15,0.13,988,2.2,170,1.8 +2013,6,19,23,30,13.100000000000001,0.46,0.0874,0.6900000000000001,88,738,445,8,9.200000000000001,272,138,0,339,0.25,76.98,61.08,0.13,988,2.2,163,1.9000000000000001 +2013,6,20,0,30,15.5,0.54,0.0787,0.6900000000000001,91,802,558,8,9.9,249,26,0,264,0.25,69.37,54.38,0.13,987,2.2,148,2.1 +2013,6,20,1,30,16.5,0.54,0.0789,0.6900000000000001,94,820,610,8,10.5,345,56,0,380,0.25,67.53,51.01,0.13,986,2.3000000000000003,142,2 +2013,6,20,2,30,16.900000000000002,0.54,0.0782,0.6900000000000001,93,817,601,8,10.700000000000001,354,74,0,400,0.249,66.99,51.63,0.13,986,2.3000000000000003,139,1.8 +2013,6,20,3,30,16.8,0.55,0.07970000000000001,0.6900000000000001,90,788,529,8,10.8,250,30,0,267,0.249,67.56,56.11,0.13,985,2.3000000000000003,137,1.6 +2013,6,20,4,30,16.3,0.55,0.08020000000000001,0.6900000000000001,81,721,401,3,10.8,243,119,0,295,0.249,69.88,63.63,0.13,985,2.4000000000000004,135,1.2000000000000002 +2013,6,20,5,30,15.3,0.54,0.0799,0.6900000000000001,65,591,235,8,11.3,119,37,0,130,0.248,76.9,73.25,0.13,986,2.4000000000000004,132,0.8 +2013,6,20,6,30,14,0.59,0.0858,0.6900000000000001,34,272,62,8,12,33,2,3,34,0.249,87.63,84.18,0.13,986,2.4000000000000004,128,0.6000000000000001 +2013,6,20,7,30,13.100000000000001,0.63,0.0886,0.6900000000000001,0,0,0,7,11.4,0,0,0,0,0.249,89.59,96.23,0.13,986,2.4000000000000004,126,0.7000000000000001 +2013,6,20,8,30,12.600000000000001,0.65,0.0881,0.6900000000000001,0,0,0,8,11.200000000000001,0,0,0,0,0.25,91.47,108.73,0.13,987,2.5,126,0.7000000000000001 +2013,6,20,9,30,12.200000000000001,0.66,0.08850000000000001,0.6900000000000001,0,0,0,8,11.100000000000001,0,0,0,0,0.251,92.87,121.61,0.13,987,2.5,130,0.7000000000000001 +2013,6,20,10,30,12,0.67,0.0896,0.6900000000000001,0,0,0,7,11,0,0,0,0,0.252,93.35000000000001,134.75,0.13,987,2.5,136,0.6000000000000001 +2013,6,20,11,30,11.700000000000001,0.67,0.09190000000000001,0.6900000000000001,0,0,0,8,10.9,0,0,0,0,0.253,94.53,148.03,0.13,987,2.5,144,0.6000000000000001 +2013,6,20,12,30,11.5,0.66,0.0937,0.6900000000000001,0,0,0,8,10.8,0,0,0,0,0.254,95.2,161.33,0.13,987,2.6,151,0.5 +2013,6,20,13,30,11.3,0.64,0.0954,0.6900000000000001,0,0,0,7,10.700000000000001,0,0,0,0,0.254,95.91,173.86,0.13,987,2.6,156,0.5 +2013,6,20,14,30,11,0.61,0.0979,0.6900000000000001,0,0,0,8,10.600000000000001,0,0,0,0,0.254,97.27,170.36,0.13,987,2.6,161,0.5 +2013,6,20,15,30,10.8,0.59,0.1029,0.6900000000000001,0,0,0,7,10.5,0,0,0,0,0.254,97.99000000000001,157.34,0.13,986,2.6,162,0.6000000000000001 +2013,6,20,16,30,10.600000000000001,0.5700000000000001,0.1091,0.6900000000000001,0,0,0,7,10.5,0,0,0,0,0.254,99.11,144.03,0.13,986,2.6,165,0.6000000000000001 +2013,6,20,17,30,10.5,0.56,0.11510000000000001,0.6900000000000001,0,0,0,8,10.4,0,0,0,0,0.254,99.53,130.77,0.13,986,2.6,170,0.5 +2013,6,20,18,30,10.4,0.5700000000000001,0.1213,0.6900000000000001,0,0,0,7,10.4,0,0,0,0,0.254,99.79,117.7,0.13,986,2.6,174,0.5 +2013,6,20,19,30,10.3,0.58,0.12840000000000001,0.6900000000000001,0,0,0,6,10.3,0,0,0,0,0.254,100,104.92,0.13,986,2.7,179,0.5 +2013,6,20,20,30,10.4,0.58,0.1325,0.6900000000000001,0,0,0,7,10.3,0,0,0,0,0.254,99.49000000000001,92.57000000000001,0.13,987,2.7,186,0.6000000000000001 +2013,6,20,21,30,10.5,0.6,0.1416,0.6900000000000001,55,307,104,8,10.4,7,0,3,7,0.253,99.61,80.8,0.13,987,2.7,195,0.8 +2013,6,20,22,30,10.700000000000001,0.62,0.1398,0.6900000000000001,88,555,276,6,10.5,15,0,0,15,0.253,98.96000000000001,70.19,0.13,987,2.7,203,1 +2013,6,20,23,30,10.9,0.62,0.124,0.6900000000000001,100,688,432,6,10.8,20,0,0,20,0.253,99.08,61.11,0.13,987,2.7,206,0.9 +2013,6,21,0,30,11.3,0.73,0.1308,0.6900000000000001,111,742,543,6,11,27,0,0,27,0.254,98.29,54.4,0.13,986,2.6,222,1.1 +2013,6,21,1,30,11.4,0.78,0.12090000000000001,0.6900000000000001,110,775,598,6,11.200000000000001,56,5,0,60,0.254,98.93,51.02,0.13,986,2.6,230,1.2000000000000002 +2013,6,21,2,30,11.4,0.8300000000000001,0.1003,0.6900000000000001,101,795,594,6,11.200000000000001,65,10,0,71,0.254,98.92,51.63,0.13,985,2.5,232,1.2000000000000002 +2013,6,21,3,30,11.3,0.91,0.09730000000000001,0.6900000000000001,94,770,524,7,11,171,23,0,184,0.254,98.32000000000001,56.09,0.13,985,2.5,231,1.2000000000000002 +2013,6,21,4,30,11,0.96,0.09000000000000001,0.6900000000000001,82,718,401,6,10.700000000000001,65,12,0,70,0.255,98.02,63.61,0.13,985,2.4000000000000004,228,1 +2013,6,21,5,30,10.600000000000001,0.99,0.08460000000000001,0.6900000000000001,64,600,237,8,10.600000000000001,102,20,0,107,0.256,99.74000000000001,73.21000000000001,0.13,985,2.3000000000000003,219,0.7000000000000001 +2013,6,21,6,30,10.100000000000001,1.03,0.0819,0.6900000000000001,33,308,64,7,10.100000000000001,29,0,3,29,0.257,100,84.14,0.13,985,2.2,204,0.6000000000000001 +2013,6,21,7,30,9.600000000000001,1.06,0.078,0.6900000000000001,0,0,0,8,9.600000000000001,0,0,0,0,0.258,100,96.19,0.13,986,2,197,0.6000000000000001 +2013,6,21,8,30,9.200000000000001,1.07,0.0743,0.6900000000000001,0,0,0,4,9.200000000000001,0,0,0,0,0.259,100,108.68,0.13,986,1.9000000000000001,199,0.7000000000000001 +2013,6,21,9,30,8.9,1.07,0.0702,0.6900000000000001,0,0,0,4,8.9,0,0,0,0,0.261,100,121.57000000000001,0.13,987,1.8,204,0.7000000000000001 +2013,6,21,10,30,8.5,1.09,0.0671,0.6900000000000001,0,0,0,4,8.5,0,0,0,0,0.262,100,134.7,0.13,987,1.7000000000000002,215,0.8 +2013,6,21,11,30,8,1.11,0.0641,0.6900000000000001,0,0,0,1,8,0,0,0,0,0.263,100,147.99,0.13,987,1.6,226,0.8 +2013,6,21,12,30,7.4,1.1300000000000001,0.062,0.6900000000000001,0,0,0,1,7.4,0,0,0,0,0.264,100,161.28,0.13,987,1.6,234,0.8 +2013,6,21,13,30,6.9,1.1500000000000001,0.0604,0.6900000000000001,0,0,0,1,6.9,0,0,0,0,0.265,100,173.82,0.13,987,1.5,237,0.8 +2013,6,21,14,30,6.6000000000000005,1.17,0.058600000000000006,0.6900000000000001,0,0,0,1,6.6000000000000005,0,0,0,0,0.265,100,170.4,0.13,987,1.5,238,0.8 +2013,6,21,15,30,6.4,1.17,0.0584,0.6900000000000001,0,0,0,1,6.4,0,0,0,0,0.266,100,157.38,0.13,986,1.5,235,0.8 +2013,6,21,16,30,6.2,1.17,0.0567,0.6900000000000001,0,0,0,1,6.2,0,0,0,0,0.266,100,144.07,0.13,986,1.4000000000000001,232,0.8 +2013,6,21,17,30,6.2,1.16,0.0534,0.6900000000000001,0,0,0,1,6.2,0,0,0,0,0.266,100,130.82,0.13,986,1.4000000000000001,229,0.8 +2013,6,21,18,30,6.300000000000001,1.17,0.053000000000000005,0.6900000000000001,0,0,0,1,6.300000000000001,0,0,0,0,0.266,100,117.75,0.13,987,1.4000000000000001,224,1 +2013,6,21,19,30,6.5,1.17,0.0506,0.6900000000000001,0,0,0,1,6.5,0,0,0,0,0.267,100,104.96000000000001,0.13,987,1.4000000000000001,216,1.1 +2013,6,21,20,30,6.9,1.1500000000000001,0.046400000000000004,0.6900000000000001,0,0,0,1,6.7,0,0,0,0,0.267,98.41,92.61,0.13,988,1.4000000000000001,209,1.2000000000000002 +2013,6,21,21,30,7.9,1.12,0.0459,0.6900000000000001,38,517,121,1,7.2,38,517,0,121,0.266,95.21000000000001,80.83,0.13,988,1.4000000000000001,206,1.4000000000000001 +2013,6,21,22,30,9.600000000000001,1.07,0.0434,0.6900000000000001,57,733,305,1,8.200000000000001,57,733,0,305,0.266,91.21000000000001,70.22,0.13,989,1.4000000000000001,202,1.3 +2013,6,21,23,30,10.600000000000001,1.01,0.040400000000000005,0.6900000000000001,66,828,466,1,9.600000000000001,66,828,0,466,0.266,93.32000000000001,61.14,0.13,989,1.4000000000000001,199,1.3 +2013,6,22,0,30,13.9,0.9400000000000001,0.038200000000000005,0.6900000000000001,71,871,578,1,10.600000000000001,71,871,0,578,0.267,80.53,54.42,0.13,988,1.5,170,1.6 +2013,6,22,1,30,15.600000000000001,0.9,0.0361,0.6900000000000001,73,891,633,1,11,73,891,0,633,0.267,73.85000000000001,51.02,0.13,987,1.5,160,1.6 +2013,6,22,2,30,16.400000000000002,0.9,0.0325,0.6900000000000001,70,892,624,1,10.5,70,892,0,624,0.268,68.17,51.620000000000005,0.13,987,1.5,155,1.5 +2013,6,22,3,30,16.7,0.86,0.0329,0.6900000000000001,67,868,552,1,10.100000000000001,67,868,0,552,0.269,64.98,56.07,0.13,986,1.5,151,1.3 +2013,6,22,4,30,16.5,0.85,0.0323,0.6900000000000001,61,815,423,1,9.9,61,815,0,423,0.27,64.8,63.57,0.13,987,1.5,146,1.2000000000000002 +2013,6,22,5,30,15.4,0.8300000000000001,0.0323,0.6900000000000001,50,703,253,1,9.9,50,703,0,253,0.271,69.79,73.18,0.13,987,1.5,137,0.9 +2013,6,22,6,30,13.600000000000001,0.85,0.0344,0.6900000000000001,28,417,71,1,11,28,417,0,71,0.272,84.32000000000001,84.10000000000001,0.13,988,1.5,128,0.7000000000000001 +2013,6,22,7,30,12.200000000000001,0.86,0.0357,0.6900000000000001,0,0,0,0,10.200000000000001,0,0,0,0,0.274,87.71000000000001,96.14,0.13,988,1.5,124,0.8 +2013,6,22,8,30,11.600000000000001,0.84,0.0347,0.6900000000000001,0,0,0,0,10,0,0,0,0,0.275,89.89,108.63,0.13,989,1.5,126,0.8 +2013,6,22,9,30,11,0.8300000000000001,0.0363,0.6900000000000001,0,0,0,0,9.8,0,0,0,0,0.276,92.49,121.52,0.13,990,1.5,135,0.7000000000000001 +2013,6,22,10,30,10.5,0.81,0.0371,0.6900000000000001,0,0,0,0,9.700000000000001,0,0,0,0,0.276,94.71000000000001,134.65,0.13,990,1.5,148,0.7000000000000001 +2013,6,22,11,30,10,0.8,0.0366,0.6900000000000001,0,0,0,1,9.5,0,0,0,0,0.275,96.71000000000001,147.94,0.13,990,1.5,160,0.8 +2013,6,22,12,30,9.5,0.79,0.0366,0.6900000000000001,0,0,0,1,9.3,0,0,0,0,0.275,98.82000000000001,161.23,0.13,990,1.4000000000000001,168,0.8 +2013,6,22,13,30,9,0.78,0.0363,0.6900000000000001,0,0,0,1,9,0,0,0,0,0.275,100,173.78,0.13,990,1.4000000000000001,173,0.8 +2013,6,22,14,30,8.5,0.79,0.0356,0.6900000000000001,0,0,0,0,8.5,0,0,0,0,0.275,100,170.45000000000002,0.13,990,1.4000000000000001,174,0.8 +2013,6,22,15,30,8.1,0.8,0.0354,0.6900000000000001,0,0,0,0,8.1,0,0,0,0,0.276,100,157.43,0.13,990,1.4000000000000001,174,0.9 +2013,6,22,16,30,7.7,0.8,0.0359,0.6900000000000001,0,0,0,0,7.7,0,0,0,0,0.277,100,144.12,0.13,989,1.4000000000000001,176,0.9 +2013,6,22,17,30,7.4,0.8,0.0373,0.6900000000000001,0,0,0,0,7.4,0,0,0,0,0.278,100,130.87,0.13,990,1.4000000000000001,179,0.9 +2013,6,22,18,30,7.2,0.8300000000000001,0.038400000000000004,0.6900000000000001,0,0,0,0,7.2,0,0,0,0,0.278,100,117.79,0.13,990,1.4000000000000001,182,0.9 +2013,6,22,19,30,6.9,0.86,0.0392,0.6900000000000001,0,0,0,1,6.9,0,0,0,0,0.278,100,105,0.13,991,1.4000000000000001,185,0.9 +2013,6,22,20,30,7.6000000000000005,0.89,0.039900000000000005,0.6900000000000001,0,0,0,1,7.6000000000000005,0,0,0,0,0.277,100,92.65,0.13,992,1.4000000000000001,187,1 +2013,6,22,21,30,9.700000000000001,0.92,0.039900000000000005,0.6900000000000001,37,523,120,1,8.1,37,523,0,120,0.276,89.91,80.87,0.13,992,1.4000000000000001,188,1.2000000000000002 +2013,6,22,22,30,12.3,0.9400000000000001,0.0386,0.6900000000000001,56,734,304,2,8.700000000000001,166,91,0,197,0.275,78.45,70.25,0.13,992,1.5,178,1.6 +2013,6,22,23,30,13.600000000000001,0.9500000000000001,0.0373,0.6900000000000001,65,827,464,1,9.700000000000001,65,827,0,464,0.274,77.08,61.160000000000004,0.13,992,1.5,168,1.7000000000000002 +2013,6,23,0,30,16.6,0.79,0.043300000000000005,0.6900000000000001,75,863,577,1,10.200000000000001,75,863,0,577,0.273,65.86,54.43,0.14,991,1.5,157,1.6 +2013,6,23,1,30,17.5,0.81,0.042800000000000005,0.6900000000000001,77,879,630,1,10.3,77,879,0,630,0.274,62.84,51.02,0.14,990,1.6,153,1.3 +2013,6,23,2,30,18,0.8200000000000001,0.042,0.6900000000000001,76,877,621,1,10.3,76,877,0,621,0.275,60.54,51.6,0.14,989,1.6,146,1.1 +2013,6,23,3,30,18,0.89,0.0405,0.6900000000000001,71,855,549,3,10,325,127,0,396,0.276,59.69,56.04,0.14,988,1.6,134,0.9 +2013,6,23,4,30,17.7,0.9,0.0422,0.6900000000000001,65,795,419,1,9.9,65,795,0,419,0.278,60.13,63.53,0.14,988,1.7000000000000002,119,0.8 +2013,6,23,5,30,16.5,0.93,0.0439,0.6900000000000001,53,678,250,4,10.3,107,24,0,114,0.279,66.65,73.13,0.14,988,1.7000000000000002,106,0.7000000000000001 +2013,6,23,6,30,14.700000000000001,0.97,0.0483,0.6900000000000001,29,382,69,8,11.700000000000001,28,0,3,28,0.28,81.97,84.05,0.14,989,1.8,97,0.7000000000000001 +2013,6,23,7,30,13.4,1,0.052000000000000005,0.6900000000000001,0,0,0,4,10.9,0,0,0,0,0.281,84.86,96.09,0.14,989,1.8,95,0.8 +2013,6,23,8,30,12.700000000000001,1,0.0539,0.6900000000000001,0,0,0,1,10.8,0,0,0,0,0.28200000000000003,88.47,108.58,0.14,990,1.8,101,0.7000000000000001 +2013,6,23,9,30,12.4,1.01,0.061000000000000006,0.6900000000000001,0,0,0,3,10.9,0,0,0,0,0.28200000000000003,90.69,121.47,0.14,990,1.9000000000000001,114,0.7000000000000001 +2013,6,23,10,30,12.100000000000001,1.02,0.0673,0.6900000000000001,0,0,0,3,11,0,0,0,0,0.28200000000000003,92.96000000000001,134.6,0.14,990,1.9000000000000001,133,0.7000000000000001 +2013,6,23,11,30,11.8,1.04,0.0695,0.6900000000000001,0,0,0,3,11,0,0,0,0,0.28300000000000003,94.9,147.89000000000001,0.14,990,1.9000000000000001,154,0.6000000000000001 +2013,6,23,12,30,11.5,1.06,0.0723,0.6900000000000001,0,0,0,4,10.9,0,0,0,0,0.28400000000000003,96.2,161.18,0.14,989,1.8,175,0.7000000000000001 +2013,6,23,13,30,11.200000000000001,1.08,0.0728,0.6900000000000001,0,0,0,4,10.8,0,0,0,0,0.28500000000000003,97.21000000000001,173.73,0.14,989,1.8,198,0.7000000000000001 +2013,6,23,14,30,10.700000000000001,1.09,0.0698,0.6900000000000001,0,0,0,4,10.600000000000001,0,0,0,0,0.28600000000000003,99.21000000000001,170.48,0.14,989,1.8,218,0.8 +2013,6,23,15,30,10.200000000000001,1.11,0.06960000000000001,0.6900000000000001,0,0,0,3,10.200000000000001,0,0,0,0,0.28700000000000003,100,157.47,0.14,988,1.7000000000000002,231,0.8 +2013,6,23,16,30,9.9,1.12,0.0707,0.6900000000000001,0,0,0,3,9.9,0,0,0,0,0.289,100,144.16,0.14,988,1.7000000000000002,236,0.8 +2013,6,23,17,30,9.8,1.11,0.0704,0.6900000000000001,0,0,0,3,9.600000000000001,0,0,0,0,0.291,98.7,130.91,0.14,988,1.7000000000000002,237,0.8 +2013,6,23,18,30,9.600000000000001,1.1,0.07,0.6900000000000001,0,0,0,3,9.200000000000001,0,0,0,0,0.292,97.25,117.83,0.14,988,1.7000000000000002,237,0.8 +2013,6,23,19,30,9.4,1.08,0.0714,0.6900000000000001,0,0,0,3,8.700000000000001,0,0,0,0,0.292,95.48,105.04,0.14,988,1.6,236,0.7000000000000001 +2013,6,23,20,30,9.9,1.06,0.07060000000000001,0.6900000000000001,0,0,0,3,8.3,0,0,0,0,0.291,89.98,92.69,0.14,989,1.6,234,0.8 +2013,6,23,21,30,11.3,1.06,0.0684,0.6900000000000001,42,466,116,1,8.5,42,466,0,116,0.29,82.93,80.9,0.14,989,1.5,235,1.1 +2013,6,23,22,30,13,1.05,0.0648,0.6900000000000001,64,695,298,1,8.5,64,695,0,298,0.29,74,70.28,0.14,989,1.5,236,1.4000000000000001 +2013,6,23,23,30,14.100000000000001,1.05,0.059500000000000004,0.6900000000000001,74,803,461,1,8.700000000000001,74,803,0,461,0.29,69.78,61.18,0.14,989,1.4000000000000001,236,1.5 +2013,6,24,0,30,16.7,1,0.0553,0.6900000000000001,79,857,578,1,8.200000000000001,79,857,0,578,0.289,57.410000000000004,54.43,0.14,989,1.3,244,1.9000000000000001 +2013,6,24,1,30,17.6,0.93,0.054400000000000004,0.6900000000000001,82,876,633,1,7.6000000000000005,82,876,0,633,0.28800000000000003,51.79,51.01,0.14,988,1.3,250,2 +2013,6,24,2,30,17.900000000000002,0.89,0.0517,0.6900000000000001,80,880,627,1,6.9,80,880,0,627,0.28800000000000003,48.660000000000004,51.57,0.14,987,1.2000000000000002,254,2.1 +2013,6,24,3,30,17.8,0.99,0.0449,0.6900000000000001,74,867,558,1,6.1000000000000005,74,867,0,558,0.289,46.27,56,0.14,986,1.1,255,2 +2013,6,24,4,30,17.3,0.97,0.0412,0.6900000000000001,65,821,431,1,5.4,65,821,0,431,0.289,45.44,63.49,0.14,985,1,255,1.7000000000000002 +2013,6,24,5,30,15.9,0.9500000000000001,0.0376,0.6900000000000001,52,718,261,1,5.4,52,718,0,261,0.289,49.82,73.08,0.14,985,0.9,257,1.1 +2013,6,24,6,30,13.5,0.9400000000000001,0.0351,0.6900000000000001,28,442,74,1,7,28,442,0,74,0.289,64.72,84,0.14,985,0.9,260,0.8 +2013,6,24,7,30,11.5,0.93,0.0335,0.6900000000000001,0,0,0,1,5.4,0,0,0,0,0.289,66.03,96.04,0.14,986,0.8,261,0.9 +2013,6,24,8,30,10.4,0.91,0.0323,0.6900000000000001,0,0,0,1,4.7,0,0,0,0,0.289,67.56,108.53,0.14,986,0.8,259,0.9 +2013,6,24,9,30,9.8,0.91,0.0316,0.6900000000000001,0,0,0,1,4,0,0,0,0,0.289,67.04,121.41,0.14,987,0.8,255,0.9 +2013,6,24,10,30,9.200000000000001,0.9,0.031400000000000004,0.6900000000000001,0,0,0,1,3.5,0,0,0,0,0.289,67.41,134.55,0.14,987,0.8,253,1 +2013,6,24,11,30,8.6,0.89,0.0313,0.6900000000000001,0,0,0,1,3.1,0,0,0,0,0.29,68.56,147.83,0.14,987,0.8,253,1 +2013,6,24,12,30,8.1,0.88,0.031900000000000005,0.6900000000000001,0,0,0,0,2.9000000000000004,0,0,0,0,0.289,69.57000000000001,161.13,0.14,987,0.8,253,1 +2013,6,24,13,30,7.5,0.86,0.0332,0.6900000000000001,0,0,0,1,2.6,0,0,0,0,0.28800000000000003,71.28,173.68,0.14,986,0.8,253,1 +2013,6,24,14,30,7,0.8300000000000001,0.0347,0.6900000000000001,0,0,0,0,2.5,0,0,0,0,0.28600000000000003,72.84,170.52,0.14,986,0.8,257,1 +2013,6,24,15,30,6.4,0.8200000000000001,0.0359,0.6900000000000001,0,0,0,0,2.3000000000000003,0,0,0,0,0.28500000000000003,75.12,157.52,0.14,986,0.8,264,0.9 +2013,6,24,16,30,5.9,0.8300000000000001,0.036500000000000005,0.6900000000000001,0,0,0,0,2.2,0,0,0,0,0.28400000000000003,77.18,144.21,0.14,986,0.8,268,0.9 +2013,6,24,17,30,5.4,0.86,0.0364,0.6900000000000001,0,0,0,0,2.1,0,0,0,0,0.28300000000000003,79.31,130.95,0.14,985,0.8,270,0.9 +2013,6,24,18,30,4.800000000000001,0.91,0.0356,0.6900000000000001,0,0,0,0,2,0,0,0,0,0.28200000000000003,82.27,117.87,0.14,986,0.8,273,0.9 +2013,6,24,19,30,4.4,0.99,0.034300000000000004,0.6900000000000001,0,0,0,3,2,0,0,0,0,0.28,84.13,105.08,0.14,986,0.8,276,0.9 +2013,6,24,20,30,4.9,1.08,0.0328,0.6900000000000001,0,0,0,3,1.9000000000000001,0,0,0,0,0.278,80.98,92.72,0.14,986,0.8,278,1 +2013,6,24,21,30,6.9,1.17,0.0316,0.6900000000000001,36,575,126,1,2.5,36,575,0,126,0.276,73.53,80.93,0.14,986,0.7000000000000001,280,1.4000000000000001 +2013,6,24,22,30,9.700000000000001,1.27,0.0303,0.6900000000000001,53,784,317,1,2.7,53,784,0,317,0.273,61.67,70.3,0.14,986,0.7000000000000001,277,1.8 +2013,6,24,23,30,11.3,1.33,0.029400000000000003,0.6900000000000001,62,873,482,1,3.1,62,873,0,482,0.272,57.06,61.19,0.14,986,0.7000000000000001,272,2 +2013,6,25,0,30,14.200000000000001,1.16,0.031900000000000005,0.6900000000000001,68,906,595,1,3.2,68,906,0,595,0.271,47.63,54.43,0.14,985,0.8,264,2.7 +2013,6,25,1,30,14.9,1.1300000000000001,0.032600000000000004,0.6900000000000001,71,918,649,0,3.3000000000000003,71,918,0,649,0.271,45.79,50.99,0.14,984,0.9,261,2.9000000000000004 +2013,6,25,2,30,15.3,1.08,0.033,0.6900000000000001,71,910,637,1,3.5,71,910,0,637,0.271,45.12,51.54,0.14,983,1,259,2.9000000000000004 +2013,6,25,3,30,15.4,1.02,0.0339,0.6900000000000001,68,882,562,1,3.6,68,882,0,562,0.27,45.36,55.96,0.14,982,1.1,257,2.8000000000000003 +2013,6,25,4,30,15,0.92,0.0378,0.6900000000000001,64,816,428,8,3.8000000000000003,190,30,0,203,0.271,47.15,63.440000000000005,0.14,982,1.3,255,2.5 +2013,6,25,5,30,13.700000000000001,0.86,0.041600000000000005,0.6900000000000001,53,696,256,4,4.3,56,6,0,57,0.271,52.86,73.03,0.14,982,1.3,252,1.7000000000000002 +2013,6,25,6,30,11.8,0.8200000000000001,0.0425,0.6900000000000001,30,406,72,4,5.2,14,0,3,14,0.271,63.93,83.95,0.14,982,1.4000000000000001,247,1.1 +2013,6,25,7,30,10.4,0.81,0.0422,0.6900000000000001,0,0,0,8,4.9,0,0,0,0,0.27,68.76,95.98,0.14,983,1.4000000000000001,241,0.9 +2013,6,25,8,30,9.600000000000001,0.8300000000000001,0.041,0.6900000000000001,0,0,0,4,5,0,0,0,0,0.269,73.01,108.48,0.14,983,1.3,237,0.9 +2013,6,25,9,30,8.8,0.89,0.0396,0.6900000000000001,0,0,0,3,5.1000000000000005,0,0,0,0,0.267,77.47,121.36,0.14,984,1.3,238,0.9 +2013,6,25,10,30,8.1,0.96,0.0374,0.6900000000000001,0,0,0,1,5.1000000000000005,0,0,0,0,0.265,81.4,134.5,0.14,984,1.3,243,0.9 +2013,6,25,11,30,7.300000000000001,1.04,0.0345,0.6900000000000001,0,0,0,1,5.2,0,0,0,0,0.263,86.53,147.78,0.14,984,1.2000000000000002,249,0.9 +2013,6,25,12,30,6.7,1.1300000000000001,0.0323,0.6900000000000001,0,0,0,1,5.4,0,0,0,0,0.261,91.41,161.07,0.14,984,1.2000000000000002,252,0.9 +2013,6,25,13,30,6.2,1.2,0.0307,0.6900000000000001,0,0,0,1,5.6000000000000005,0,0,0,0,0.26,96.2,173.63,0.14,983,1.1,252,0.9 +2013,6,25,14,30,5.9,1.24,0.030000000000000002,0.6900000000000001,0,0,0,0,5.9,0,0,0,0,0.259,100,170.55,0.14,983,1.1,249,0.9 +2013,6,25,15,30,5.6000000000000005,1.28,0.0304,0.6900000000000001,0,0,0,0,5.6000000000000005,0,0,0,0,0.258,100,157.56,0.14,983,1,248,0.9 +2013,6,25,16,30,5.5,1.3,0.031100000000000003,0.6900000000000001,0,0,0,0,5.5,0,0,0,0,0.257,100,144.25,0.14,983,0.9,246,0.9 +2013,6,25,17,30,5.5,1.32,0.031400000000000004,0.6900000000000001,0,0,0,0,5.5,0,0,0,0,0.255,100,130.99,0.14,983,0.9,242,1 +2013,6,25,18,30,5.6000000000000005,1.35,0.0322,0.6900000000000001,0,0,0,0,5.6000000000000005,0,0,0,0,0.254,100,117.91,0.14,983,0.9,239,1 +2013,6,25,19,30,5.5,1.3800000000000001,0.0322,0.6900000000000001,0,0,0,1,5.5,0,0,0,0,0.254,100,105.11,0.14,984,0.9,241,0.9 +2013,6,25,20,30,5.9,1.43,0.0302,0.6900000000000001,0,0,0,1,5.6000000000000005,0,0,0,0,0.253,98.12,92.75,0.14,984,0.9,244,1 +2013,6,25,21,30,7.5,1.5,0.028800000000000003,0.6900000000000001,34,576,125,1,5.6000000000000005,34,576,0,125,0.252,87.76,80.95,0.14,984,0.9,248,1.4000000000000001 +2013,6,25,22,30,9.8,1.57,0.025400000000000002,0.6900000000000001,50,784,314,1,5.5,50,784,0,314,0.252,74.77,70.31,0.14,985,0.9,249,1.6 +2013,6,25,23,30,11.100000000000001,1.59,0.023100000000000002,0.6900000000000001,57,873,478,1,5.5,57,873,0,478,0.252,68.23,61.19,0.14,985,0.9,248,1.5 +2013,6,26,0,30,14.700000000000001,1.58,0.021,0.6900000000000001,60,916,593,1,5.4,60,916,0,593,0.252,53.57,54.42,0.14,984,0.9,246,1.5 +2013,6,26,1,30,16.400000000000002,1.57,0.019100000000000002,0.6900000000000001,61,930,646,0,5,61,930,0,646,0.252,46.7,50.97,0.14,983,1,244,1.5 +2013,6,26,2,30,17.400000000000002,1.54,0.0179,0.6900000000000001,59,925,635,0,4.5,59,925,0,635,0.252,42.56,51.5,0.14,982,1.1,241,1.5 +2013,6,26,3,30,17.8,1.44,0.0183,0.6900000000000001,57,899,561,0,4.5,57,899,0,561,0.251,41.38,55.910000000000004,0.14,981,1.2000000000000002,238,1.5 +2013,6,26,4,30,17.8,1.42,0.0181,0.6900000000000001,52,847,431,1,5.1000000000000005,52,847,0,431,0.251,43.28,63.39,0.14,981,1.3,237,1.2000000000000002 +2013,6,26,5,30,16.6,1.41,0.0183,0.6900000000000001,43,740,260,1,6.7,43,740,0,260,0.25,52.120000000000005,72.98,0.14,981,1.4000000000000001,239,0.8 +2013,6,26,6,30,14.600000000000001,1.3900000000000001,0.0196,0.6900000000000001,25,476,76,1,8.8,25,476,0,76,0.249,68.31,83.89,0.14,982,1.5,238,0.7000000000000001 +2013,6,26,7,30,13.100000000000001,1.3800000000000001,0.0213,0.6900000000000001,0,0,0,0,7.5,0,0,0,0,0.249,68.65,95.93,0.14,982,1.6,226,0.8 +2013,6,26,8,30,12.4,1.34,0.023700000000000002,0.6900000000000001,0,0,0,1,7.5,0,0,0,0,0.249,72.24,108.42,0.14,983,1.7000000000000002,211,0.8 +2013,6,26,9,30,12.100000000000001,1.29,0.027200000000000002,0.6900000000000001,0,0,0,0,8,0,0,0,0,0.248,75.81,121.3,0.14,983,1.8,199,0.9 +2013,6,26,10,30,11.9,1.2,0.031,0.6900000000000001,0,0,0,0,8.700000000000001,0,0,0,0,0.249,80.8,134.44,0.14,984,1.9000000000000001,204,0.8 +2013,6,26,11,30,11.600000000000001,1.07,0.0359,0.6900000000000001,0,0,0,1,9.3,0,0,0,0,0.249,85.83,147.73,0.14,984,1.9000000000000001,222,0.8 +2013,6,26,12,30,11.200000000000001,0.96,0.0395,0.6900000000000001,0,0,0,1,9.700000000000001,0,0,0,0,0.249,90.59,161.02,0.14,984,2,237,0.8 +2013,6,26,13,30,10.9,0.87,0.0408,0.6900000000000001,0,0,0,8,9.9,0,0,0,0,0.249,93.32000000000001,173.57,0.14,984,2,237,0.8 +2013,6,26,14,30,10.9,0.81,0.042100000000000005,0.6900000000000001,0,0,0,8,10,0,0,0,0,0.249,94.43,170.58,0.14,984,2,226,0.7000000000000001 +2013,6,26,15,30,10.8,0.79,0.043300000000000005,0.6900000000000001,0,0,0,0,10.3,0,0,0,0,0.25,96.49000000000001,157.59,0.14,983,2,212,0.7000000000000001 +2013,6,26,16,30,10.8,0.78,0.0434,0.6900000000000001,0,0,0,0,10.600000000000001,0,0,0,0,0.25,98.52,144.28,0.14,983,2,201,0.7000000000000001 +2013,6,26,17,30,10.600000000000001,0.76,0.0426,0.6900000000000001,0,0,0,0,10.600000000000001,0,0,0,0,0.25,100,131.03,0.14,983,2,199,0.7000000000000001 +2013,6,26,18,30,10.600000000000001,0.74,0.0461,0.6900000000000001,0,0,0,0,10.600000000000001,0,0,0,0,0.25,100,117.94,0.14,984,2.1,197,0.7000000000000001 +2013,6,26,19,30,10.600000000000001,0.71,0.0488,0.6900000000000001,0,0,0,4,10.600000000000001,0,0,0,0,0.25,100,105.14,0.14,985,2.1,186,0.7000000000000001 +2013,6,26,20,30,11,0.6900000000000001,0.047900000000000005,0.6900000000000001,0,0,0,8,11,0,0,0,0,0.249,100,92.77,0.14,985,2.2,178,0.7000000000000001 +2013,6,26,21,30,12.200000000000001,0.72,0.050300000000000004,0.6900000000000001,39,470,113,4,11.9,38,0,3,38,0.248,97.8,80.97,0.14,986,2.3000000000000003,178,0.8 +2013,6,26,22,30,14.100000000000001,0.74,0.049300000000000004,0.6900000000000001,59,691,292,8,12.4,147,42,0,161,0.249,89.31,70.32000000000001,0.14,986,2.4000000000000004,163,1.1 +2013,6,26,23,30,15.200000000000001,0.77,0.043500000000000004,0.6900000000000001,68,795,451,8,13.3,123,21,0,133,0.25,88.45,61.19,0.14,986,2.4000000000000004,150,1.3 +2013,6,27,0,30,17.6,0.86,0.0367,0.6900000000000001,70,849,564,8,14,236,25,0,250,0.25,79.63,54.410000000000004,0.14,985,2.4000000000000004,121,1.7000000000000002 +2013,6,27,1,30,18.3,0.92,0.0335,0.6900000000000001,71,869,618,7,14.3,203,24,0,218,0.251,77.68,50.94,0.14,984,2.5,112,1.8 +2013,6,27,2,30,18.5,0.91,0.035,0.6900000000000001,71,862,608,8,14.4,105,22,0,119,0.251,77.27,51.46,0.14,984,2.6,107,1.8 +2013,6,27,3,30,18.3,0.86,0.0473,0.6900000000000001,74,822,535,8,14.5,25,0,0,25,0.252,78.43,55.86,0.14,983,2.7,104,1.8 +2013,6,27,4,30,17.7,0.8300000000000001,0.0582,0.6900000000000001,71,749,407,7,14.5,76,15,0,83,0.252,81.34,63.33,0.14,983,2.8000000000000003,102,1.5 +2013,6,27,5,30,16.6,0.73,0.0661,0.6900000000000001,60,614,240,7,14.8,116,30,0,124,0.253,88.94,72.91,0.14,984,2.9000000000000004,104,1 +2013,6,27,6,30,15.5,0.7000000000000001,0.0858,0.6900000000000001,35,285,65,8,15.100000000000001,34,0,3,34,0.254,97.17,83.83,0.14,984,2.9000000000000004,107,0.7000000000000001 +2013,6,27,7,30,14.8,0.62,0.0902,0.6900000000000001,0,0,0,8,14.8,0,0,0,0,0.255,99.95,95.87,0.14,984,2.9000000000000004,107,0.8 +2013,6,27,8,30,14.5,0.53,0.0838,0.6900000000000001,0,0,0,8,14.5,0,0,0,0,0.256,100,108.36,0.14,985,3,109,0.8 +2013,6,27,9,30,14.3,0.54,0.08940000000000001,0.6900000000000001,0,0,0,8,14.3,0,0,0,0,0.256,100,121.25,0.14,985,3,112,0.7000000000000001 +2013,6,27,10,30,14.100000000000001,0.51,0.0862,0.6900000000000001,0,0,0,8,14.100000000000001,0,0,0,0,0.257,100,134.39000000000001,0.14,986,2.9000000000000004,116,0.7000000000000001 +2013,6,27,11,30,13.9,0.48,0.07980000000000001,0.6900000000000001,0,0,0,3,13.9,0,0,0,0,0.257,100,147.67000000000002,0.14,986,2.9000000000000004,121,0.7000000000000001 +2013,6,27,12,30,13.700000000000001,0.52,0.0833,0.6900000000000001,0,0,0,4,13.700000000000001,0,0,0,0,0.257,100,160.96,0.14,986,2.9000000000000004,126,0.7000000000000001 +2013,6,27,13,30,13.5,0.53,0.0799,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.257,100,173.51,0.14,985,2.8000000000000003,131,0.6000000000000001 +2013,6,27,14,30,13.3,0.51,0.0742,0.6900000000000001,0,0,0,3,13.3,0,0,0,0,0.257,100,170.6,0.14,985,2.8000000000000003,136,0.7000000000000001 +2013,6,27,15,30,13.100000000000001,0.56,0.0761,0.6900000000000001,0,0,0,3,13.100000000000001,0,0,0,0,0.256,100,157.63,0.14,985,2.7,139,0.7000000000000001 +2013,6,27,16,30,13,0.5700000000000001,0.069,0.6900000000000001,0,0,0,4,13,0,0,0,0,0.254,100,144.32,0.14,985,2.6,140,0.8 +2013,6,27,17,30,12.8,0.5700000000000001,0.060200000000000004,0.6900000000000001,0,0,0,4,12.8,0,0,0,0,0.253,100,131.06,0.14,985,2.6,140,0.7000000000000001 +2013,6,27,18,30,12.700000000000001,0.64,0.063,0.6900000000000001,0,0,0,1,12.700000000000001,0,0,0,0,0.251,100,117.97,0.14,985,2.6,141,0.7000000000000001 +2013,6,27,19,30,12.5,0.65,0.0606,0.6900000000000001,0,0,0,3,12.5,0,0,0,0,0.25,100,105.17,0.14,986,2.6,141,0.7000000000000001 +2013,6,27,20,30,12.8,0.62,0.056100000000000004,0.6900000000000001,0,0,0,3,12.700000000000001,0,0,0,0,0.249,99.13,92.8,0.14,986,2.5,144,0.7000000000000001 +2013,6,27,21,30,13.5,0.66,0.062400000000000004,0.6900000000000001,41,438,110,3,13.200000000000001,38,0,3,38,0.249,98.11,80.98,0.14,987,2.5,151,0.9 +2013,6,27,22,30,14.3,0.65,0.062200000000000005,0.6900000000000001,64,666,288,3,13.700000000000001,110,19,0,117,0.249,96.44,70.33,0.14,987,2.5,151,1.1 +2013,6,27,23,30,14.8,0.65,0.053500000000000006,0.6900000000000001,72,778,447,3,14.3,261,88,0,304,0.249,97.05,61.18,0.14,987,2.5,148,1.2000000000000002 +2013,6,28,0,30,16,0.39,0.0926,0.6900000000000001,98,776,550,2,14.700000000000001,326,75,0,370,0.249,92.24,54.39,0.14,987,2.5,133,1.3 +2013,6,28,1,30,16.6,0.46,0.0869,0.6900000000000001,99,805,607,1,14.700000000000001,99,805,0,607,0.248,88.83,50.9,0.14,986,2.5,127,1.4000000000000001 +2013,6,28,2,30,17.1,0.48,0.0847,0.6900000000000001,97,805,599,2,14.600000000000001,373,121,0,449,0.248,84.96000000000001,51.4,0.14,985,2.5,125,1.4000000000000001 +2013,6,28,3,30,17.400000000000002,0.53,0.0918,0.6900000000000001,95,770,528,1,14.3,95,770,0,528,0.247,82.04,55.800000000000004,0.14,985,2.5,123,1.3 +2013,6,28,4,30,17.2,0.56,0.0946,0.6900000000000001,87,704,403,1,14.100000000000001,87,704,0,403,0.247,82.11,63.26,0.14,985,2.5,124,1.2000000000000002 +2013,6,28,5,30,16.400000000000002,0.55,0.09190000000000001,0.6900000000000001,69,577,239,2,14.200000000000001,17,0,0,17,0.246,86.99,72.85000000000001,0.14,985,2.5,126,0.9 +2013,6,28,6,30,15.3,0.5700000000000001,0.10940000000000001,0.6900000000000001,38,247,65,2,14.5,5,0,3,5,0.246,95.08,83.77,0.14,986,2.5,130,0.6000000000000001 +2013,6,28,7,30,14.5,0.56,0.1217,0.6900000000000001,0,0,0,1,14.100000000000001,0,0,0,0,0.245,97.33,95.8,0.14,986,2.5,135,0.6000000000000001 +2013,6,28,8,30,14.200000000000001,0.5,0.1242,0.6900000000000001,0,0,0,1,14.100000000000001,0,0,0,0,0.245,99.35000000000001,108.3,0.14,987,2.6,141,0.6000000000000001 +2013,6,28,9,30,14,0.48,0.134,0.6900000000000001,0,0,0,1,14,0,0,0,0,0.244,100,121.19,0.14,987,2.6,148,0.6000000000000001 +2013,6,28,10,30,13.9,0.45,0.13770000000000002,0.6900000000000001,0,0,0,1,13.9,0,0,0,0,0.244,100,134.33,0.14,988,2.6,156,0.6000000000000001 +2013,6,28,11,30,13.8,0.41000000000000003,0.12990000000000002,0.6900000000000001,0,0,0,1,13.8,0,0,0,0,0.244,100,147.61,0.14,988,2.6,163,0.6000000000000001 +2013,6,28,12,30,13.700000000000001,0.44,0.1279,0.6900000000000001,0,0,0,1,13.700000000000001,0,0,0,0,0.244,100,160.9,0.14,988,2.6,165,0.6000000000000001 +2013,6,28,13,30,13.600000000000001,0.44,0.1169,0.6900000000000001,0,0,0,3,13.600000000000001,0,0,0,0,0.244,100,173.44,0.14,987,2.5,163,0.6000000000000001 +2013,6,28,14,30,13.5,0.41000000000000003,0.1004,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.244,100,170.62,0.14,987,2.5,159,0.7000000000000001 +2013,6,28,15,30,13.4,0.47000000000000003,0.10070000000000001,0.6900000000000001,0,0,0,3,13.4,0,0,0,0,0.243,100,157.66,0.14,987,2.5,153,0.8 +2013,6,28,16,30,13.3,0.46,0.09430000000000001,0.6900000000000001,0,0,0,3,13.3,0,0,0,0,0.244,100,144.35,0.14,987,2.4000000000000004,149,0.8 +2013,6,28,17,30,13.100000000000001,0.4,0.0853,0.6900000000000001,0,0,0,3,13.100000000000001,0,0,0,0,0.244,100,131.09,0.14,987,2.4000000000000004,146,0.7000000000000001 +2013,6,28,18,30,12.9,0.44,0.0922,0.6900000000000001,0,0,0,3,12.9,0,0,0,0,0.244,100,118,0.14,987,2.4000000000000004,145,0.7000000000000001 +2013,6,28,19,30,12.700000000000001,0.42,0.0906,0.6900000000000001,0,0,0,3,12.700000000000001,0,0,0,0,0.245,100,105.19,0.14,988,2.3000000000000003,148,0.7000000000000001 +2013,6,28,20,30,13,0.38,0.0872,0.6900000000000001,0,0,0,3,12.600000000000001,0,0,0,0,0.244,97.7,92.81,0.14,988,2.3000000000000003,156,0.8 +2013,6,28,21,30,13.8,0.4,0.08950000000000001,0.6900000000000001,48,377,107,3,13.200000000000001,40,0,3,40,0.244,95.86,80.99,0.14,989,2.3000000000000003,161,1.2000000000000002 +2013,6,28,22,30,14.9,0.41000000000000003,0.0853,0.6900000000000001,73,628,285,4,13.600000000000001,116,20,0,123,0.244,92.08,70.33,0.14,989,2.3000000000000003,157,1.5 +2013,6,28,23,30,15.5,0.45,0.0729,0.6900000000000001,82,753,445,1,14,82,753,0,445,0.243,90.60000000000001,61.17,0.14,989,2.3000000000000003,153,1.7000000000000002 +2013,6,29,0,30,17,0.53,0.068,0.6900000000000001,86,809,558,4,14,316,60,0,351,0.243,82.44,54.36,0.13,988,2.4000000000000004,144,1.9000000000000001 +2013,6,29,1,30,17.6,0.56,0.0674,0.6900000000000001,89,831,613,4,13.8,261,24,0,277,0.243,78.29,50.85,0.13,987,2.4000000000000004,141,2 +2013,6,29,2,30,17.7,0.56,0.0653,0.6900000000000001,87,830,606,4,13.4,151,25,0,166,0.244,76.13,51.35,0.13,986,2.4000000000000004,140,2 +2013,6,29,3,30,17.400000000000002,0.7000000000000001,0.0692,0.6900000000000001,84,800,534,4,13.200000000000001,237,26,0,252,0.245,76.60000000000001,55.730000000000004,0.13,986,2.5,140,1.8 +2013,6,29,4,30,16.900000000000002,0.71,0.0631,0.6900000000000001,74,749,411,4,13.3,172,24,0,183,0.245,79.5,63.190000000000005,0.13,986,2.5,141,1.6 +2013,6,29,5,30,16.1,0.7000000000000001,0.0551,0.6900000000000001,57,642,247,4,13.5,66,9,0,69,0.246,84.59,72.78,0.13,986,2.5,146,1.1 +2013,6,29,6,30,14.9,0.6900000000000001,0.0551,0.6900000000000001,32,356,71,4,13.700000000000001,17,0,3,17,0.247,92.28,83.7,0.13,987,2.5,152,0.8 +2013,6,29,7,30,14,0.66,0.059800000000000006,0.6900000000000001,0,0,0,4,13,0,0,0,0,0.249,93.76,95.74000000000001,0.13,987,2.4000000000000004,158,0.7000000000000001 +2013,6,29,8,30,13.600000000000001,0.63,0.060500000000000005,0.6900000000000001,0,0,0,4,12.8,0,0,0,0,0.25,94.98,108.24000000000001,0.13,988,2.4000000000000004,164,0.7000000000000001 +2013,6,29,9,30,13.200000000000001,0.62,0.0591,0.6900000000000001,0,0,0,4,12.600000000000001,0,0,0,0,0.251,96.22,121.13,0.13,988,2.4000000000000004,167,0.7000000000000001 +2013,6,29,10,30,12.700000000000001,0.63,0.0553,0.6900000000000001,0,0,0,4,12.4,0,0,0,0,0.252,97.81,134.27,0.13,988,2.4000000000000004,174,0.7000000000000001 +2013,6,29,11,30,12.200000000000001,0.65,0.0509,0.6900000000000001,0,0,0,4,12.100000000000001,0,0,0,0,0.254,99.54,147.55,0.13,988,2.3000000000000003,185,0.7000000000000001 +2013,6,29,12,30,11.600000000000001,0.68,0.047900000000000005,0.6900000000000001,0,0,0,4,11.600000000000001,0,0,0,0,0.254,100,160.84,0.13,987,2.3000000000000003,192,0.8 +2013,6,29,13,30,11.3,0.71,0.045000000000000005,0.6900000000000001,0,0,0,4,11.3,0,0,0,0,0.254,100,173.37,0.13,987,2.2,194,0.8 +2013,6,29,14,30,11,0.76,0.041800000000000004,0.6900000000000001,0,0,0,4,11,0,0,0,0,0.254,100,170.64000000000001,0.13,986,2.2,197,0.8 +2013,6,29,15,30,10.700000000000001,0.8,0.039900000000000005,0.6900000000000001,0,0,0,8,10.700000000000001,0,0,0,0,0.254,100,157.69,0.13,985,2.2,202,0.8 +2013,6,29,16,30,10.4,0.84,0.038700000000000005,0.6900000000000001,0,0,0,4,10.4,0,0,0,0,0.255,100,144.38,0.13,985,2.1,204,0.8 +2013,6,29,17,30,10.100000000000001,0.86,0.0373,0.6900000000000001,0,0,0,4,10.100000000000001,0,0,0,0,0.256,100,131.12,0.13,985,2.1,200,0.9 +2013,6,29,18,30,9.9,0.86,0.0366,0.6900000000000001,0,0,0,4,9.9,0,0,0,0,0.256,100,118.02,0.13,985,2.1,198,0.9 +2013,6,29,19,30,9.700000000000001,0.85,0.0366,0.6900000000000001,0,0,0,4,9.700000000000001,0,0,0,0,0.257,100,105.21000000000001,0.13,986,2.1,197,0.9 +2013,6,29,20,30,10.200000000000001,0.8300000000000001,0.0366,0.6900000000000001,0,0,0,4,10,0,0,0,0,0.256,98.45,92.83,0.13,986,2.1,191,1.2000000000000002 +2013,6,29,21,30,11.5,0.8300000000000001,0.0367,0.6900000000000001,36,504,115,8,10.700000000000001,63,58,3,72,0.256,94.65,81,0.13,986,2.2,185,1.6 +2013,6,29,22,30,13,0.85,0.0359,0.6900000000000001,54,718,296,8,11.600000000000001,167,97,0,200,0.256,91.36,70.32000000000001,0.13,986,2.2,180,2 +2013,6,29,23,30,13.9,0.87,0.035,0.6900000000000001,64,811,455,4,12.600000000000001,232,43,0,252,0.256,91.9,61.15,0.13,986,2.2,176,2.1 +2013,6,30,0,30,15.700000000000001,0.92,0.0446,0.6900000000000001,74,845,567,8,13,218,23,0,232,0.257,84.07000000000001,54.32,0.13,985,2.2,169,2.3000000000000003 +2013,6,30,1,30,16.3,0.99,0.0396,0.6900000000000001,74,870,623,4,13,271,25,0,287,0.258,80.63,50.800000000000004,0.13,985,2.2,169,2.4000000000000004 +2013,6,30,2,30,16.6,1.03,0.0371,0.6900000000000001,72,868,615,4,12.700000000000001,105,22,0,119,0.259,77.84,51.28,0.13,984,2.3000000000000003,169,2.4000000000000004 +2013,6,30,3,30,16.5,1.03,0.0383,0.6900000000000001,69,843,545,8,12.5,220,24,0,234,0.26,77.33,55.660000000000004,0.13,983,2.3000000000000003,171,2.4000000000000004 +2013,6,30,4,30,16,1.04,0.0373,0.6900000000000001,62,791,420,4,12.5,252,157,0,323,0.261,79.55,63.120000000000005,0.13,983,2.3000000000000003,172,2.2 +2013,6,30,5,30,15.100000000000001,1.04,0.0369,0.6900000000000001,51,682,254,4,12.600000000000001,116,29,0,125,0.261,85.23,72.71000000000001,0.13,984,2.3000000000000003,174,1.7000000000000002 +2013,6,30,6,30,13.700000000000001,1.04,0.038200000000000005,0.6900000000000001,29,413,75,8,12.9,25,0,3,25,0.262,94.73,83.63,0.13,984,2.3000000000000003,178,1.3 +2013,6,30,7,30,12.700000000000001,1.06,0.0347,0.6900000000000001,0,0,0,3,12.4,0,0,0,0,0.263,97.95,95.67,0.13,985,2.3000000000000003,184,1.2000000000000002 +2013,6,30,8,30,12.100000000000001,1.07,0.0332,0.6900000000000001,0,0,0,4,12.100000000000001,0,0,0,0,0.264,99.97,108.17,0.13,985,2.3000000000000003,192,1.2000000000000002 +2013,6,30,9,30,11.700000000000001,1.07,0.0302,0.6900000000000001,0,0,0,8,11.700000000000001,0,0,0,0,0.264,100,121.06,0.13,985,2.3000000000000003,200,1.2000000000000002 +2013,6,30,10,30,11.3,1.06,0.0281,0.6900000000000001,0,0,0,7,11.3,0,0,0,0,0.265,100,134.21,0.13,985,2.3000000000000003,208,1.2000000000000002 +2013,6,30,11,30,11.100000000000001,1.02,0.027600000000000003,0.6900000000000001,0,0,0,7,11.100000000000001,0,0,0,0,0.265,100,147.49,0.13,985,2.3000000000000003,212,1.2000000000000002 +2013,6,30,12,30,10.9,0.97,0.0275,0.6900000000000001,0,0,0,7,10.9,0,0,0,0,0.265,100,160.78,0.13,984,2.3000000000000003,214,1.1 +2013,6,30,13,30,10.700000000000001,0.93,0.028,0.6900000000000001,0,0,0,7,10.700000000000001,0,0,0,0,0.264,100,173.3,0.13,984,2.3000000000000003,215,1.1 +2013,6,30,14,30,10.600000000000001,0.9,0.0291,0.6900000000000001,0,0,0,7,10.600000000000001,0,0,0,0,0.264,100,170.65,0.13,983,2.2,215,1.1 +2013,6,30,15,30,10.4,0.87,0.031100000000000003,0.6900000000000001,0,0,0,8,10.4,0,0,0,0,0.265,100,157.72,0.13,983,2.1,214,1.1 +2013,6,30,16,30,10.3,0.8300000000000001,0.0322,0.6900000000000001,0,0,0,8,10.3,0,0,0,0,0.265,100,144.41,0.13,982,2.1,211,1.2000000000000002 +2013,6,30,17,30,10.200000000000001,0.81,0.032,0.6900000000000001,0,0,0,8,10.200000000000001,0,0,0,0,0.266,100,131.14000000000001,0.13,982,2.2,211,1.2000000000000002 +2013,6,30,18,30,10.3,0.8200000000000001,0.033600000000000005,0.6900000000000001,0,0,0,4,10.3,0,0,0,0,0.266,100,118.04,0.13,982,2.2,212,1.2000000000000002 +2013,6,30,19,30,10.3,0.78,0.033600000000000005,0.6900000000000001,0,0,0,8,10.3,0,0,0,0,0.266,100,105.23,0.13,982,2.3000000000000003,215,1.2000000000000002 +2013,6,30,20,30,10.700000000000001,0.6900000000000001,0.0356,0.6900000000000001,0,0,0,4,10.5,0,0,0,0,0.266,98.8,92.84,0.13,982,2.4000000000000004,220,1.4000000000000001 +2013,6,30,21,30,11.4,0.62,0.041600000000000005,0.6900000000000001,37,481,112,8,11,6,0,3,6,0.266,97.54,81,0.13,982,2.5,223,1.9000000000000001 +2013,6,30,22,30,12.4,0.55,0.0434,0.6900000000000001,58,694,292,4,11.700000000000001,20,0,0,20,0.266,95.62,70.31,0.13,982,2.5,220,2.2 +2013,6,30,23,30,13,0.49,0.042,0.6900000000000001,68,789,449,8,12.600000000000001,21,0,0,21,0.266,97.13,61.13,0.13,982,2.6,217,2.3000000000000003 +2013,7,1,0,30,14.3,0.41000000000000003,0.056600000000000004,0.67,81,815,557,8,13.200000000000001,99,21,0,111,0.264,93.04,54.28,0.13,980,2.7,205,2.4000000000000004 +2013,7,1,1,30,14.9,0.38,0.061200000000000004,0.67,87,829,611,7,13.700000000000001,99,21,0,113,0.263,92.57000000000001,50.74,0.13,980,2.7,198,2.6 +2013,7,1,2,30,15.3,0.35000000000000003,0.0707,0.67,91,813,600,7,13.8,108,23,0,122,0.262,91.03,51.21,0.13,979,2.8000000000000003,191,2.9000000000000004 +2013,7,1,3,30,15.4,0.25,0.1143,0.67,107,733,521,7,13.600000000000001,76,16,0,85,0.261,89.24,55.58,0.13,978,2.8000000000000003,187,3 +2013,7,1,4,30,15.200000000000001,0.24,0.10450000000000001,0.67,93,679,401,7,13.700000000000001,20,0,0,20,0.262,90.49,63.04,0.13,978,2.7,185,2.8000000000000003 +2013,7,1,5,30,14.9,0.29,0.07970000000000001,0.67,67,590,243,6,13.700000000000001,71,11,0,74,0.263,92.41,72.63,0.13,979,2.5,184,2.5 +2013,7,1,6,30,14.200000000000001,0.41000000000000003,0.058600000000000006,0.67,33,343,72,6,13.600000000000001,22,0,3,22,0.264,95.9,83.56,0.13,979,2.4000000000000004,186,2 +2013,7,1,7,30,13.5,0.52,0.0413,0.67,0,0,0,6,13.100000000000001,0,0,0,0,0.265,97.68,95.60000000000001,0.13,979,2.4000000000000004,190,1.8 +2013,7,1,8,30,13.100000000000001,0.59,0.0344,0.67,0,0,0,7,12.8,0,0,0,0,0.265,98.32000000000001,108.11,0.13,980,2.5,195,1.8 +2013,7,1,9,30,13,0.63,0.0344,0.67,0,0,0,4,12.5,0,0,0,0,0.264,96.87,121,0.13,980,2.6,199,2 +2013,7,1,10,30,13.100000000000001,0.61,0.0366,0.67,0,0,0,8,12.4,0,0,0,0,0.262,95.82000000000001,134.15,0.13,980,2.7,200,2.4000000000000004 +2013,7,1,11,30,13.200000000000001,0.5,0.049800000000000004,0.67,0,0,0,6,12.3,0,0,0,0,0.261,94.37,147.43,0.13,979,2.8000000000000003,196,2.8000000000000003 +2013,7,1,12,30,13.600000000000001,0.4,0.0845,0.67,0,0,0,7,12.5,0,0,0,0,0.26,93.19,160.72,0.13,979,2.8000000000000003,188,2.9000000000000004 +2013,7,1,13,30,14.100000000000001,0.28,0.11960000000000001,0.67,0,0,0,4,13.200000000000001,0,0,0,0,0.259,94.08,173.22,0.13,979,2.9000000000000004,182,2.9000000000000004 +2013,7,1,14,30,14.4,0.24,0.1303,0.67,0,0,0,7,13.700000000000001,0,0,0,0,0.258,95.63,170.65,0.13,979,3,182,2.7 +2013,7,1,15,30,14.5,0.27,0.1197,0.67,0,0,0,7,13.9,0,0,0,0,0.258,95.92,157.74,0.13,979,3,183,2.7 +2013,7,1,16,30,14.3,0.28,0.10500000000000001,0.67,0,0,0,8,13.700000000000001,0,0,0,0,0.259,96.42,144.43,0.13,979,2.9000000000000004,183,2.7 +2013,7,1,17,30,14.200000000000001,0.28,0.0896,0.67,0,0,0,3,13.600000000000001,0,0,0,0,0.26,96.02,131.17000000000002,0.13,979,2.8000000000000003,180,2.4000000000000004 +2013,7,1,18,30,13.9,0.32,0.08750000000000001,0.67,0,0,0,3,13.4,0,0,0,0,0.261,97.06,118.06,0.13,980,2.7,178,2.1 +2013,7,1,19,30,13.4,0.36,0.078,0.67,0,0,0,1,13.200000000000001,0,0,0,0,0.261,98.58,105.24000000000001,0.13,981,2.6,179,1.7000000000000002 +2013,7,1,20,30,13.5,0.44,0.055900000000000005,0.67,0,0,0,1,12.8,0,0,0,0,0.261,95.4,92.84,0.13,982,2.6,187,1.7000000000000002 +2013,7,1,21,30,14.5,0.56,0.0366,0.67,36,489,113,1,13.200000000000001,36,489,0,113,0.26,91.95,81,0.13,982,2.6,194,2.2 +2013,7,1,22,30,15.600000000000001,0.62,0.026000000000000002,0.67,51,723,294,1,13.600000000000001,51,723,0,294,0.259,88.02,70.3,0.13,983,2.6,195,2.7 +2013,7,1,23,30,16.2,0.6,0.027,0.67,60,811,452,1,14.100000000000001,60,811,0,452,0.258,87.16,61.1,0.13,983,2.6,194,2.9000000000000004 +2013,7,2,0,30,18.1,0.38,0.0507,0.67,79,826,562,3,14.5,138,24,0,152,0.256,79.52,54.230000000000004,0.13,983,2.5,182,3.3000000000000003 +2013,7,2,1,30,18.900000000000002,0.38,0.0523,0.67,83,844,617,3,14.700000000000001,321,37,0,344,0.255,76.82000000000001,50.68,0.13,982,2.5,176,3.3000000000000003 +2013,7,2,2,30,19.400000000000002,0.43,0.047,0.67,79,848,611,3,14.700000000000001,360,76,0,408,0.254,74.38,51.13,0.13,982,2.5,173,3.2 +2013,7,2,3,30,19.400000000000002,0.75,0.0351,0.67,68,841,545,3,14.600000000000001,169,23,0,182,0.253,74.01,55.5,0.13,982,2.5,173,2.9000000000000004 +2013,7,2,4,30,19.1,0.79,0.0342,0.67,62,790,421,2,14.600000000000001,215,42,0,234,0.252,75.12,62.96,0.13,983,2.5,177,2.4000000000000004 +2013,7,2,5,30,18.1,0.8300000000000001,0.0322,0.67,50,686,255,1,14.5,50,686,0,255,0.252,79.62,72.55,0.13,983,2.5,182,1.7000000000000002 +2013,7,2,6,30,16.6,0.92,0.028,0.67,28,436,77,1,14.600000000000001,28,436,0,77,0.252,87.91,83.49,0.13,984,2.5,186,1.1 +2013,7,2,7,30,15.4,1.01,0.023700000000000002,0.67,0,0,0,1,13.700000000000001,0,0,0,0,0.253,89.69,95.53,0.13,985,2.4000000000000004,187,1 +2013,7,2,8,30,14.700000000000001,1.07,0.022000000000000002,0.67,0,0,0,3,13.4,0,0,0,0,0.253,92.11,108.04,0.13,986,2.2,186,1 +2013,7,2,9,30,14,1.09,0.0218,0.67,0,0,0,0,13.200000000000001,0,0,0,0,0.253,94.92,120.94,0.13,986,2,184,1.1 +2013,7,2,10,30,13.5,1.08,0.0224,0.67,0,0,0,1,13,0,0,0,0,0.253,96.64,134.08,0.13,987,1.9000000000000001,183,1.1 +2013,7,2,11,30,12.9,1.02,0.024900000000000002,0.67,0,0,0,0,12.8,0,0,0,0,0.253,99.2,147.37,0.13,987,1.8,182,1.1 +2013,7,2,12,30,12.5,0.93,0.0307,0.67,0,0,0,0,12.5,0,0,0,0,0.252,100,160.66,0.13,987,1.8,183,1.1 +2013,7,2,13,30,12.100000000000001,0.85,0.038700000000000005,0.67,0,0,0,0,12.100000000000001,0,0,0,0,0.251,100,173.14000000000001,0.13,987,1.8,185,1.1 +2013,7,2,14,30,11.9,0.78,0.0461,0.67,0,0,0,0,11.9,0,0,0,0,0.25,100,170.66,0.13,987,1.8,190,1.1 +2013,7,2,15,30,11.5,0.71,0.0526,0.67,0,0,0,0,11.5,0,0,0,0,0.249,100,157.76,0.13,986,1.8,195,1 +2013,7,2,16,30,11.3,0.62,0.0592,0.67,0,0,0,0,11.3,0,0,0,0,0.249,100,144.46,0.13,986,1.8,199,1 +2013,7,2,17,30,11.200000000000001,0.5700000000000001,0.0618,0.67,0,0,0,0,11.200000000000001,0,0,0,0,0.248,100,131.19,0.13,987,1.8,199,0.9 +2013,7,2,18,30,11.3,0.59,0.0625,0.67,0,0,0,1,11.3,0,0,0,0,0.248,100,118.08,0.13,987,1.7000000000000002,194,0.9 +2013,7,2,19,30,11.4,0.59,0.060500000000000005,0.67,0,0,0,1,11.4,0,0,0,0,0.247,100,105.25,0.13,988,1.7000000000000002,189,0.9 +2013,7,2,20,30,12.200000000000001,0.58,0.058600000000000006,0.67,0,0,0,3,12.200000000000001,0,0,0,0,0.246,100,92.84,0.13,989,1.7000000000000002,185,0.9 +2013,7,2,21,30,14,0.61,0.058300000000000005,0.67,41,463,114,1,12.8,41,463,0,114,0.245,92.51,80.99,0.13,989,1.7000000000000002,177,1.4000000000000001 +2013,7,2,22,30,16,0.62,0.0545,0.67,62,701,299,1,13.600000000000001,62,701,0,299,0.244,85.5,70.28,0.13,990,1.6,162,2 +2013,7,2,23,30,17,0.65,0.05,0.67,72,806,462,1,14.3,72,806,0,462,0.244,84.28,61.06,0.13,990,1.6,153,2.2 +2013,7,3,0,30,18.900000000000002,0.47000000000000003,0.0594,0.67,84,839,575,1,14.700000000000001,84,839,0,575,0.242,76.46000000000001,54.18,0.13,989,1.6,141,2.2 +2013,7,3,1,30,19.700000000000003,0.5,0.0545,0.67,84,865,633,1,14.700000000000001,84,865,0,633,0.242,72.98,50.61,0.13,989,1.6,135,2.1 +2013,7,3,2,30,20.1,0.51,0.0528,0.67,83,865,627,1,14.700000000000001,83,865,0,627,0.241,70.97,51.050000000000004,0.13,988,1.6,131,1.9000000000000001 +2013,7,3,3,30,20.1,0.48,0.0558,0.67,81,837,556,1,14.600000000000001,81,837,0,556,0.24,70.66,55.410000000000004,0.13,988,1.6,125,1.8 +2013,7,3,4,30,19.700000000000003,0.51,0.056100000000000004,0.67,73,780,429,1,14.5,73,780,0,429,0.23900000000000002,71.73,62.870000000000005,0.13,988,1.6,120,1.6 +2013,7,3,5,30,18.7,0.52,0.0555,0.67,60,665,260,1,14.5,60,665,0,260,0.23800000000000002,76.39,72.47,0.13,988,1.6,115,1.1 +2013,7,3,6,30,17,0.5700000000000001,0.0603,0.67,35,373,77,0,15,35,373,0,77,0.23800000000000002,87.93,83.41,0.13,989,1.5,111,0.8 +2013,7,3,7,30,15.8,0.59,0.0606,0.67,0,0,0,0,14.4,0,0,0,0,0.23800000000000002,91.43,95.46000000000001,0.13,989,1.5,111,0.8 +2013,7,3,8,30,15.200000000000001,0.58,0.056,0.67,0,0,0,1,14.4,0,0,0,0,0.23900000000000002,94.97,107.97,0.13,990,1.5,117,0.8 +2013,7,3,9,30,14.8,0.58,0.055,0.67,0,0,0,3,14.4,0,0,0,0,0.23900000000000002,97.31,120.87,0.13,990,1.5,123,0.8 +2013,7,3,10,30,14.4,0.5700000000000001,0.0551,0.67,0,0,0,3,14.4,0,0,0,0,0.23900000000000002,99.71000000000001,134.02,0.13,990,1.5,126,0.7000000000000001 +2013,7,3,11,30,14.100000000000001,0.5700000000000001,0.055400000000000005,0.67,0,0,0,3,14.100000000000001,0,0,0,0,0.23900000000000002,100,147.31,0.13,990,1.5,128,0.7000000000000001 +2013,7,3,12,30,14,0.6,0.055900000000000005,0.67,0,0,0,1,14,0,0,0,0,0.23900000000000002,100,160.59,0.13,990,1.5,130,0.7000000000000001 +2013,7,3,13,30,13.9,0.64,0.055400000000000005,0.67,0,0,0,3,13.9,0,0,0,0,0.23900000000000002,100,173.06,0.13,990,1.5,133,0.6000000000000001 +2013,7,3,14,30,13.9,0.68,0.0545,0.67,0,0,0,1,13.9,0,0,0,0,0.23900000000000002,99.76,170.65,0.13,989,1.5,133,0.6000000000000001 +2013,7,3,15,30,13.9,0.72,0.057300000000000004,0.67,0,0,0,3,13.700000000000001,0,0,0,0,0.23900000000000002,98.82000000000001,157.78,0.13,989,1.5,131,0.6000000000000001 +2013,7,3,16,30,13.8,0.74,0.060000000000000005,0.67,0,0,0,3,13.600000000000001,0,0,0,0,0.23900000000000002,98.64,144.48,0.13,988,1.5,132,0.6000000000000001 +2013,7,3,17,30,13.8,0.75,0.0603,0.67,0,0,0,3,13.5,0,0,0,0,0.23900000000000002,97.91,131.2,0.13,988,1.5,133,0.6000000000000001 +2013,7,3,18,30,13.9,0.78,0.06380000000000001,0.67,0,0,0,3,13.4,0,0,0,0,0.23900000000000002,96.79,118.09,0.13,989,1.5,128,0.6000000000000001 +2013,7,3,19,30,14,0.81,0.0639,0.67,0,0,0,3,13.3,0,0,0,0,0.24,95.57000000000001,105.25,0.13,989,1.4000000000000001,115,0.6000000000000001 +2013,7,3,20,30,14.4,0.8300000000000001,0.058300000000000005,0.67,0,0,0,3,13.200000000000001,0,0,0,0,0.23900000000000002,92.62,92.84,0.13,989,1.4000000000000001,101,0.6000000000000001 +2013,7,3,21,30,15.600000000000001,0.91,0.0584,0.67,41,482,116,3,13.700000000000001,62,53,3,70,0.23900000000000002,88.68,80.98,0.13,989,1.4000000000000001,89,0.6000000000000001 +2013,7,3,22,30,17.3,0.97,0.0534,0.67,61,716,303,2,14,169,107,0,205,0.23900000000000002,80.72,70.25,0.13,989,1.4000000000000001,67,0.8 +2013,7,3,23,30,18.2,0.98,0.0485,0.67,70,819,467,1,12.9,70,819,0,467,0.23900000000000002,71.38,61.02,0.13,989,1.4000000000000001,52,1 +2013,7,4,0,30,19.400000000000002,0.92,0.0604,0.67,82,851,580,1,12.5,82,851,0,580,0.24,64.25,54.120000000000005,0.13,988,1.4000000000000001,39,1.3 +2013,7,4,1,30,19.900000000000002,0.9500000000000001,0.056100000000000004,0.67,83,876,639,1,12.5,83,876,0,639,0.24,62.230000000000004,50.53,0.13,987,1.4000000000000001,35,1.3 +2013,7,4,2,30,20.1,0.96,0.0507,0.67,79,879,633,1,12.600000000000001,79,879,0,633,0.241,61.85,50.96,0.13,986,1.4000000000000001,33,1.4000000000000001 +2013,7,4,3,30,20.1,1.04,0.0438,0.67,73,861,563,1,12.600000000000001,73,861,0,563,0.242,62.190000000000005,55.31,0.13,985,1.5,32,1.3 +2013,7,4,4,30,19.6,1.04,0.0466,0.67,67,805,435,2,12.700000000000001,255,159,0,328,0.242,64.52,62.78,0.13,985,1.5,31,1.1 +2013,7,4,5,30,18.7,1.02,0.0468,0.67,55,691,264,3,13.100000000000001,100,18,0,106,0.243,70.01,72.38,0.13,985,1.6,33,0.8 +2013,7,4,6,30,17.400000000000002,1.04,0.0572,0.67,33,401,80,3,14.3,27,0,3,27,0.243,81.85000000000001,83.33,0.13,985,1.6,40,0.5 +2013,7,4,7,30,16.5,1.05,0.0594,0.67,0,0,0,3,14,0,0,0,0,0.244,85.34,95.38,0.13,985,1.7000000000000002,44,0.5 +2013,7,4,8,30,16.1,1.03,0.0567,0.67,0,0,0,3,14,0,0,0,0,0.244,87.58,107.9,0.13,986,1.7000000000000002,42,0.5 +2013,7,4,9,30,15.700000000000001,1.03,0.0562,0.67,0,0,0,8,14,0,0,0,0,0.244,89.54,120.8,0.13,986,1.7000000000000002,35,0.6000000000000001 +2013,7,4,10,30,15.3,1.02,0.053000000000000005,0.67,0,0,0,3,13.9,0,0,0,0,0.245,91.37,133.96,0.13,986,1.8,26,0.6000000000000001 +2013,7,4,11,30,14.9,1.01,0.0492,0.67,0,0,0,3,13.9,0,0,0,0,0.245,93.55,147.25,0.13,986,1.8,17,0.6000000000000001 +2013,7,4,12,30,14.4,0.99,0.045700000000000005,0.67,0,0,0,0,13.9,0,0,0,0,0.245,96.75,160.52,0.13,986,1.8,9,0.6000000000000001 +2013,7,4,13,30,13.9,0.97,0.0431,0.67,0,0,0,0,13.9,0,0,0,0,0.246,100,172.97,0.13,985,1.9000000000000001,180,0.7000000000000001 +2013,7,4,14,30,13.4,0.9500000000000001,0.0415,0.67,0,0,0,3,13.4,0,0,0,0,0.245,100,170.64000000000001,0.13,985,1.9000000000000001,348,0.7000000000000001 +2013,7,4,15,30,13,0.9500000000000001,0.0403,0.67,0,0,0,3,13,0,0,0,0,0.244,100,157.79,0.13,985,2,336,0.7000000000000001 +2013,7,4,16,30,12.8,0.9500000000000001,0.04,0.67,0,0,0,3,12.8,0,0,0,0,0.243,100,144.49,0.13,984,2,327,0.7000000000000001 +2013,7,4,17,30,12.700000000000001,0.9400000000000001,0.040400000000000005,0.67,0,0,0,8,12.700000000000001,0,0,0,0,0.242,100,131.22,0.13,984,2.1,323,0.7000000000000001 +2013,7,4,18,30,12.5,0.9500000000000001,0.0408,0.67,0,0,0,3,12.5,0,0,0,0,0.242,100,118.10000000000001,0.13,984,2.2,321,0.7000000000000001 +2013,7,4,19,30,12.3,0.99,0.0407,0.67,0,0,0,3,12.3,0,0,0,0,0.241,100,105.26,0.13,985,2.3000000000000003,320,0.7000000000000001 +2013,7,4,20,30,13.100000000000001,1.05,0.040400000000000005,0.67,0,0,0,3,13.100000000000001,0,0,0,0,0.241,100,92.84,0.13,985,2.4000000000000004,316,0.9 +2013,7,4,21,30,15,1.08,0.0427,0.67,37,491,114,3,13.8,58,28,3,62,0.241,92.58,80.96000000000001,0.13,986,2.5,314,1.2000000000000002 +2013,7,4,22,30,17.3,1.09,0.0465,0.67,57,699,294,1,14.5,57,699,0,294,0.241,83.87,70.22,0.13,986,2.5,316,1.5 +2013,7,4,23,30,18.5,1.11,0.048100000000000004,0.67,69,789,452,1,15.5,69,789,0,452,0.24,82.51,60.97,0.13,986,2.6,317,1.6 +2013,7,5,0,30,20.700000000000003,0.9,0.0631,0.67,82,818,562,1,15.8,82,818,0,562,0.24,73.67,54.050000000000004,0.13,984,2.6,308,1.9000000000000001 +2013,7,5,1,30,21.5,0.89,0.0637,0.67,85,837,618,1,15.700000000000001,85,837,0,618,0.24,69.61,50.44,0.13,983,2.6,297,1.9000000000000001 +2013,7,5,2,30,21.6,0.89,0.0675,0.67,86,829,610,2,15.3,376,106,0,442,0.24,67.42,50.86,0.13,982,2.7,288,1.8 +2013,7,5,3,30,21.3,0.9400000000000001,0.0636,0.67,81,809,542,1,15.100000000000001,81,809,0,542,0.241,67.88,55.21,0.13,982,2.7,281,1.5 +2013,7,5,4,30,20.700000000000003,0.9500000000000001,0.075,0.67,77,738,416,1,15.4,77,738,0,416,0.242,71.74,62.68,0.13,982,2.7,276,1.1 +2013,7,5,5,30,19.700000000000003,0.97,0.08600000000000001,0.67,66,605,250,1,15.8,66,605,0,250,0.243,78.46000000000001,72.29,0.13,982,2.7,275,0.7000000000000001 +2013,7,5,6,30,18.5,0.98,0.0946,0.67,37,313,74,3,16.400000000000002,40,12,3,42,0.243,87.81,83.25,0.13,983,2.6,276,0.6000000000000001 +2013,7,5,7,30,17.5,0.96,0.0927,0.67,0,0,0,1,15.8,0,0,0,0,0.244,89.73,95.3,0.13,984,2.5,271,0.6000000000000001 +2013,7,5,8,30,16.7,0.93,0.0849,0.67,0,0,0,3,15.4,0,0,0,0,0.244,92.05,107.82000000000001,0.13,985,2.4000000000000004,263,0.6000000000000001 +2013,7,5,9,30,16.1,0.9,0.07640000000000001,0.67,0,0,0,3,14.9,0,0,0,0,0.245,92.41,120.73,0.13,985,2.2,252,0.7000000000000001 +2013,7,5,10,30,15.3,0.9,0.0664,0.67,0,0,0,3,14.200000000000001,0,0,0,0,0.245,92.96000000000001,133.89000000000001,0.13,986,1.9000000000000001,240,0.7000000000000001 +2013,7,5,11,30,14.3,0.91,0.057300000000000004,0.67,0,0,0,1,13.100000000000001,0,0,0,0,0.246,92.74,147.18,0.13,986,1.7000000000000002,232,0.8 +2013,7,5,12,30,13.4,0.92,0.050800000000000005,0.67,0,0,0,1,12,0,0,0,0,0.247,91.33,160.46,0.13,986,1.6,227,0.8 +2013,7,5,13,30,12.600000000000001,0.9400000000000001,0.0466,0.67,0,0,0,0,10.8,0,0,0,0,0.248,89.01,172.87,0.13,986,1.4000000000000001,224,0.8 +2013,7,5,14,30,11.9,0.9400000000000001,0.044000000000000004,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.249,86.60000000000001,170.63,0.13,986,1.3,224,0.8 +2013,7,5,15,30,11.3,0.9400000000000001,0.042300000000000004,0.67,0,0,0,0,8.700000000000001,0,0,0,0,0.25,83.91,157.81,0.13,986,1.3,225,0.8 +2013,7,5,16,30,10.8,0.9400000000000001,0.0412,0.67,0,0,0,0,7.7,0,0,0,0,0.251,81.18,144.5,0.13,985,1.2000000000000002,227,0.9 +2013,7,5,17,30,10.4,0.9400000000000001,0.041,0.67,0,0,0,0,6.9,0,0,0,0,0.251,78.83,131.23,0.13,986,1.2000000000000002,228,0.9 +2013,7,5,18,30,10,0.93,0.0415,0.67,0,0,0,0,6.2,0,0,0,0,0.253,77.45,118.10000000000001,0.13,986,1.2000000000000002,229,0.9 +2013,7,5,19,30,9.600000000000001,0.92,0.0425,0.67,0,0,0,1,5.7,0,0,0,0,0.254,76.64,105.25,0.13,987,1.3,227,0.9 +2013,7,5,20,30,10.3,0.91,0.044000000000000004,0.67,0,0,0,1,5.300000000000001,0,0,0,0,0.255,71.13,92.82000000000001,0.13,987,1.3,223,0.8 +2013,7,5,21,30,12.4,0.92,0.0458,0.67,38,509,118,1,6.6000000000000005,38,509,0,118,0.255,67.78,80.94,0.13,988,1.4000000000000001,220,1 +2013,7,5,22,30,14.9,0.92,0.047900000000000005,0.67,58,721,303,1,5.800000000000001,58,721,0,303,0.256,54.64,70.18,0.13,988,1.5,219,1 +2013,7,5,23,30,16.1,0.93,0.0509,0.67,70,812,465,1,7.5,70,812,0,465,0.256,56.660000000000004,60.92,0.13,989,1.5,221,0.8 +2013,7,6,0,30,19.900000000000002,0.9400000000000001,0.0487,0.67,76,858,580,1,8.6,76,858,0,580,0.256,48.27,53.980000000000004,0.13,988,1.6,247,0.7000000000000001 +2013,7,6,1,30,21.200000000000003,0.9400000000000001,0.0539,0.67,81,872,637,1,8.1,81,872,0,637,0.256,42.89,50.35,0.13,988,1.6,274,0.7000000000000001 +2013,7,6,2,30,21.700000000000003,0.93,0.0604,0.67,83,860,627,0,8.4,83,860,0,627,0.256,42.57,50.76,0.13,987,1.7000000000000002,292,0.8 +2013,7,6,3,30,21.8,1.05,0.0373,0.67,69,863,563,1,8.6,69,863,0,563,0.257,42.78,55.11,0.13,987,1.7000000000000002,298,0.8 +2013,7,6,4,30,21.6,1.05,0.041100000000000005,0.67,64,807,436,1,9.1,64,807,0,436,0.256,44.93,62.58,0.13,987,1.7000000000000002,301,0.7000000000000001 +2013,7,6,5,30,20.3,1.04,0.0466,0.67,55,690,266,1,9.600000000000001,55,690,0,266,0.256,50.34,72.2,0.13,987,1.7000000000000002,311,0.5 +2013,7,6,6,30,18.3,1.03,0.051300000000000005,0.67,32,416,82,1,12,32,416,0,82,0.255,66.87,83.16,0.13,987,1.7000000000000002,308,0.4 +2013,7,6,7,30,16.7,1.03,0.053500000000000006,0.67,0,0,0,0,10.8,0,0,0,0,0.255,68.21000000000001,95.22,0.13,988,1.7000000000000002,286,0.4 +2013,7,6,8,30,15.700000000000001,1.03,0.054700000000000006,0.67,0,0,0,3,10.700000000000001,0,0,0,0,0.255,72.10000000000001,107.75,0.13,989,1.7000000000000002,267,0.30000000000000004 +2013,7,6,9,30,14.9,1.02,0.0557,0.67,0,0,0,3,10.600000000000001,0,0,0,0,0.254,75.44,120.66,0.13,989,1.7000000000000002,261,0.30000000000000004 +2013,7,6,10,30,14.3,1,0.0563,0.67,0,0,0,8,10.3,0,0,0,0,0.254,76.9,133.82,0.13,990,1.7000000000000002,258,0.4 +2013,7,6,11,30,13.5,0.99,0.056600000000000004,0.67,0,0,0,3,9.9,0,0,0,0,0.254,78.61,147.12,0.13,990,1.7000000000000002,249,0.6000000000000001 +2013,7,6,12,30,12.600000000000001,0.98,0.056100000000000004,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.254,79.94,160.39000000000001,0.13,990,1.7000000000000002,238,0.7000000000000001 +2013,7,6,13,30,11.700000000000001,0.98,0.0555,0.67,0,0,0,1,8.700000000000001,0,0,0,0,0.254,81.74,172.78,0.13,990,1.6,228,0.7000000000000001 +2013,7,6,14,30,11.200000000000001,0.97,0.0551,0.67,0,0,0,1,8,0,0,0,0,0.253,80.87,170.61,0.13,990,1.6,224,0.8 +2013,7,6,15,30,10.700000000000001,0.96,0.0551,0.67,0,0,0,0,7.4,0,0,0,0,0.253,79.85000000000001,157.81,0.13,990,1.5,224,0.8 +2013,7,6,16,30,10.3,0.96,0.055400000000000005,0.67,0,0,0,0,6.7,0,0,0,0,0.252,78.5,144.51,0.13,990,1.5,225,0.8 +2013,7,6,17,30,9.9,0.96,0.0558,0.67,0,0,0,0,6.2,0,0,0,0,0.251,77.69,131.23,0.13,990,1.5,226,0.8 +2013,7,6,18,30,9.600000000000001,0.9500000000000001,0.056100000000000004,0.67,0,0,0,0,5.800000000000001,0,0,0,0,0.251,77.02,118.11,0.13,990,1.4000000000000001,224,0.8 +2013,7,6,19,30,9.3,0.9500000000000001,0.0563,0.67,0,0,0,3,5.4,0,0,0,0,0.251,76.72,105.25,0.13,991,1.4000000000000001,219,0.8 +2013,7,6,20,30,10,0.9500000000000001,0.0563,0.67,0,0,0,1,5.2,0,0,0,0,0.25,72.26,92.81,0.13,992,1.4000000000000001,213,0.9 +2013,7,6,21,30,12,0.96,0.056600000000000004,0.67,40,486,117,3,6.4,66,116,3,84,0.25,68.64,80.91,0.13,992,1.5,206,1 +2013,7,6,22,30,14.600000000000001,0.96,0.0577,0.67,62,707,302,3,6.2,173,181,0,235,0.25,57.02,70.14,0.13,993,1.5,189,1 +2013,7,6,23,30,16,0.96,0.059300000000000005,0.67,74,802,464,3,7.300000000000001,266,96,0,313,0.25,56.31,60.86,0.13,993,1.5,175,0.9 +2013,7,7,0,30,19,0.96,0.06670000000000001,0.67,83,839,578,1,7.9,83,839,0,578,0.25,48.4,53.9,0.13,993,1.6,149,0.8 +2013,7,7,1,30,20,0.97,0.0674,0.67,87,858,636,1,8.700000000000001,87,858,0,636,0.25,48.15,50.25,0.13,992,1.6,133,0.6000000000000001 +2013,7,7,2,30,20.5,0.97,0.0679,0.67,87,856,629,1,9.5,87,856,0,629,0.25,49.17,50.65,0.13,992,1.6,115,0.7000000000000001 +2013,7,7,3,30,20.6,0.98,0.0596,0.67,79,841,562,1,9.9,79,841,0,562,0.25,50.25,55,0.13,991,1.6,105,0.8 +2013,7,7,4,30,20.1,0.98,0.060700000000000004,0.67,72,784,435,1,10.100000000000001,72,784,0,435,0.25,52.45,62.480000000000004,0.13,991,1.6,100,1 +2013,7,7,5,30,18.6,0.98,0.061200000000000004,0.67,59,670,265,1,10.700000000000001,59,670,0,265,0.25,59.92,72.10000000000001,0.13,992,1.6,97,1 +2013,7,7,6,30,16.2,1,0.0506,0.67,32,422,83,1,11.8,32,422,0,83,0.251,75.4,83.07000000000001,0.13,992,1.6,97,0.9 +2013,7,7,7,30,14.4,1,0.0499,0.67,0,0,0,0,10.9,0,0,0,0,0.252,79.48,95.14,0.13,993,1.6,102,0.9 +2013,7,7,8,30,13.4,1,0.050100000000000006,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.252,83.28,107.67,0.13,994,1.6,109,0.8 +2013,7,7,9,30,12.700000000000001,0.98,0.051000000000000004,0.67,0,0,0,0,10.3,0,0,0,0,0.253,85.60000000000001,120.59,0.13,994,1.5,118,0.8 +2013,7,7,10,30,11.9,0.96,0.0524,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.253,89.54,133.76,0.13,995,1.5,127,0.7000000000000001 +2013,7,7,11,30,11.3,0.93,0.054200000000000005,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.254,92.73,147.05,0.13,995,1.5,137,0.7000000000000001 +2013,7,7,12,30,10.700000000000001,0.89,0.056100000000000004,0.67,0,0,0,1,10,0,0,0,0,0.254,95.72,160.32,0.13,995,1.5,147,0.7000000000000001 +2013,7,7,13,30,10.200000000000001,0.86,0.0582,0.67,0,0,0,0,9.9,0,0,0,0,0.254,97.74000000000001,172.68,0.13,995,1.5,156,0.7000000000000001 +2013,7,7,14,30,9.700000000000001,0.84,0.060000000000000005,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.254,99.41,170.58,0.13,995,1.5,162,0.7000000000000001 +2013,7,7,15,30,9.3,0.84,0.0611,0.67,0,0,0,0,9.3,0,0,0,0,0.253,100,157.82,0.13,995,1.5,164,0.7000000000000001 +2013,7,7,16,30,8.9,0.84,0.0614,0.67,0,0,0,3,8.9,0,0,0,0,0.253,100,144.52,0.13,995,1.4000000000000001,164,0.7000000000000001 +2013,7,7,17,30,8.6,0.85,0.061200000000000004,0.67,0,0,0,3,8.6,0,0,0,0,0.254,100,131.24,0.13,995,1.4000000000000001,162,0.8 +2013,7,7,18,30,8.4,0.85,0.0611,0.67,0,0,0,3,8.4,0,0,0,0,0.254,100,118.10000000000001,0.13,996,1.4000000000000001,159,0.8 +2013,7,7,19,30,8.200000000000001,0.85,0.0614,0.67,0,0,0,3,8.200000000000001,0,0,0,0,0.254,100,105.24000000000001,0.13,996,1.4000000000000001,157,0.8 +2013,7,7,20,30,8.9,0.86,0.062200000000000005,0.67,0,0,0,1,8.3,0,0,0,0,0.254,95.76,92.79,0.13,997,1.4000000000000001,160,0.8 +2013,7,7,21,30,10.8,0.87,0.0631,0.67,42,476,117,1,8.5,42,476,0,117,0.254,85.82000000000001,80.88,0.13,997,1.3,161,0.9 +2013,7,7,22,30,13.4,0.88,0.063,0.67,64,703,304,1,8.8,64,703,0,304,0.255,73.77,70.09,0.13,997,1.3,145,1.2000000000000002 +2013,7,7,23,30,14.700000000000001,0.9,0.0631,0.67,76,803,468,1,9.4,76,803,0,468,0.255,70.42,60.79,0.13,998,1.3,132,1.3 +2013,7,8,0,30,17,0.8,0.07730000000000001,0.67,90,834,583,1,9.9,90,834,0,583,0.254,63.06,53.81,0.14,997,1.3,125,1.1 +2013,7,8,1,30,17.900000000000002,0.79,0.0811,0.67,96,851,641,1,10.4,96,851,0,641,0.254,61.36,50.15,0.14,996,1.3,130,0.8 +2013,7,8,2,30,18.3,0.79,0.0819,0.67,96,848,635,1,10.5,96,848,0,635,0.254,60.59,50.53,0.14,995,1.3,129,0.8 +2013,7,8,3,30,18.5,0.89,0.056,0.67,80,853,570,1,10.4,80,853,0,570,0.253,59.39,54.88,0.14,995,1.3,118,0.8 +2013,7,8,4,30,18.2,0.91,0.055200000000000006,0.67,72,800,443,1,10.200000000000001,72,800,0,443,0.253,59.660000000000004,62.370000000000005,0.14,995,1.3,106,1 +2013,7,8,5,30,17,0.92,0.0533,0.67,58,692,272,1,10.3,58,692,0,272,0.253,64.82000000000001,72,0.14,995,1.3,96,0.9 +2013,7,8,6,30,14.9,0.9500000000000001,0.0517,0.67,34,430,86,1,11.4,34,430,0,86,0.252,79.44,82.98,0.14,995,1.3,90,0.8 +2013,7,8,7,30,13.3,0.97,0.050800000000000005,0.67,0,0,0,1,10.5,0,0,0,0,0.252,83.33,95.05,0.14,995,1.3,91,0.8 +2013,7,8,8,30,12.4,0.99,0.0507,0.67,0,0,0,1,10.4,0,0,0,0,0.252,87.55,107.59,0.14,996,1.3,98,0.8 +2013,7,8,9,30,11.8,1,0.0511,0.67,0,0,0,0,10.3,0,0,0,0,0.253,90.55,120.52,0.14,996,1.3,109,0.8 +2013,7,8,10,30,11.200000000000001,1,0.051300000000000005,0.67,0,0,0,0,10.3,0,0,0,0,0.253,94,133.69,0.14,996,1.3,122,0.8 +2013,7,8,11,30,10.600000000000001,1.01,0.051000000000000004,0.67,0,0,0,1,10.200000000000001,0,0,0,0,0.253,97.35000000000001,146.99,0.14,996,1.3,136,0.8 +2013,7,8,12,30,10.100000000000001,1.01,0.0505,0.67,0,0,0,1,10.100000000000001,0,0,0,0,0.253,99.85000000000001,160.25,0.14,996,1.3,149,0.8 +2013,7,8,13,30,9.600000000000001,1.02,0.049800000000000004,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.253,100,172.57,0.14,996,1.3,157,0.8 +2013,7,8,14,30,9.200000000000001,1.04,0.0488,0.67,0,0,0,1,9.200000000000001,0,0,0,0,0.253,100,170.55,0.14,996,1.3,162,0.8 +2013,7,8,15,30,8.8,1.05,0.048100000000000004,0.67,0,0,0,0,8.8,0,0,0,0,0.253,100,157.82,0.14,995,1.3,162,0.8 +2013,7,8,16,30,8.5,1.06,0.0475,0.67,0,0,0,0,8.5,0,0,0,0,0.253,100,144.52,0.14,995,1.3,160,0.8 +2013,7,8,17,30,8.3,1.06,0.0465,0.67,0,0,0,1,8.3,0,0,0,0,0.253,100,131.24,0.14,995,1.3,163,0.8 +2013,7,8,18,30,8.1,1.05,0.046700000000000005,0.67,0,0,0,0,8.1,0,0,0,0,0.253,100,118.10000000000001,0.14,995,1.3,171,0.8 +2013,7,8,19,30,8,1.03,0.0473,0.67,0,0,0,1,8,0,0,0,0,0.253,100,105.23,0.14,996,1.4000000000000001,177,0.8 +2013,7,8,20,30,8.9,1.01,0.047400000000000005,0.67,0,0,0,3,8.8,0,0,0,0,0.253,99.04,92.77,0.14,996,1.4000000000000001,175,1.1 +2013,7,8,21,30,10.9,0.99,0.047900000000000005,0.67,39,506,119,1,8.700000000000001,39,506,0,119,0.252,86.52,80.84,0.14,996,1.5,167,1.6 +2013,7,8,22,30,12.9,0.96,0.049100000000000005,0.67,59,718,304,1,8.9,59,718,0,304,0.252,76.67,70.04,0.14,997,1.6,157,2.1 +2013,7,8,23,30,13.9,0.9400000000000001,0.051800000000000006,0.67,72,809,467,1,9.4,72,809,0,467,0.252,74.21000000000001,60.72,0.14,997,1.6,152,2.2 +2013,7,9,0,30,15.9,0.97,0.053000000000000005,0.67,78,852,582,1,10.100000000000001,78,852,0,582,0.252,68.25,53.72,0.13,997,1.7000000000000002,140,2.4000000000000004 +2013,7,9,1,30,16.6,0.89,0.058600000000000006,0.67,84,862,638,1,10.600000000000001,84,862,0,638,0.252,67.6,50.04,0.13,996,1.8,133,2.5 +2013,7,9,2,30,17,0.8300000000000001,0.06520000000000001,0.67,87,852,631,1,10.9,87,852,0,631,0.252,67.38,50.410000000000004,0.13,995,1.8,130,2.5 +2013,7,9,3,30,16.900000000000002,0.85,0.0762,0.67,88,813,557,1,11,88,813,0,557,0.252,68.06,54.76,0.13,995,1.9000000000000001,128,2.4000000000000004 +2013,7,9,4,30,16.5,0.86,0.0776,0.67,80,755,432,1,11,80,755,0,432,0.251,69.75,62.25,0.13,995,1.9000000000000001,128,2.2 +2013,7,9,5,30,15.600000000000001,0.84,0.0734,0.67,64,641,264,3,11,92,15,0,97,0.25,73.91,71.89,0.13,995,2,131,1.7000000000000002 +2013,7,9,6,30,14.200000000000001,0.85,0.0736,0.67,37,368,83,3,11,26,0,3,26,0.251,81.35000000000001,82.88,0.13,995,2,138,1.2000000000000002 +2013,7,9,7,30,13.200000000000001,0.8300000000000001,0.0709,0.67,0,0,0,1,10.700000000000001,0,0,0,0,0.252,84.62,94.97,0.13,996,2,144,1 +2013,7,9,8,30,12.4,0.81,0.0685,0.67,0,0,0,1,10.4,0,0,0,0,0.253,87.37,107.52,0.13,996,2,147,1 +2013,7,9,9,30,11.700000000000001,0.77,0.0684,0.67,0,0,0,1,10.200000000000001,0,0,0,0,0.253,90.56,120.45,0.13,997,2,151,1 +2013,7,9,10,30,11.100000000000001,0.71,0.07060000000000001,0.67,0,0,0,0,10.3,0,0,0,0,0.254,94.71000000000001,133.62,0.13,997,2.1,154,0.9 +2013,7,9,11,30,10.8,0.66,0.07740000000000001,0.67,0,0,0,3,10.5,0,0,0,0,0.254,98.11,146.92000000000002,0.13,997,2.1,155,0.8 +2013,7,9,12,30,10.9,0.62,0.08750000000000001,0.67,0,0,0,1,10.700000000000001,0,0,0,0,0.254,98.92,160.18,0.13,996,2.2,152,0.8 +2013,7,9,13,30,11.200000000000001,0.6,0.094,0.67,0,0,0,4,10.9,0,0,0,0,0.254,98.26,172.47,0.13,996,2.2,150,0.8 +2013,7,9,14,30,11.200000000000001,0.58,0.0949,0.67,0,0,0,3,11.100000000000001,0,0,0,0,0.254,99.11,170.51,0.13,995,2.2,150,0.8 +2013,7,9,15,30,11.200000000000001,0.56,0.0971,0.67,0,0,0,4,11.200000000000001,0,0,0,0,0.254,99.91,157.81,0.13,995,2.3000000000000003,151,0.8 +2013,7,9,16,30,11.100000000000001,0.53,0.0989,0.67,0,0,0,3,11.100000000000001,0,0,0,0,0.253,100,144.52,0.13,994,2.3000000000000003,154,0.8 +2013,7,9,17,30,11.100000000000001,0.49,0.0993,0.67,0,0,0,3,11.100000000000001,0,0,0,0,0.254,100,131.23,0.13,994,2.3000000000000003,156,0.8 +2013,7,9,18,30,11.100000000000001,0.48,0.1022,0.67,0,0,0,4,11.100000000000001,0,0,0,0,0.254,100,118.09,0.13,995,2.4000000000000004,157,0.8 +2013,7,9,19,30,11.100000000000001,0.45,0.09970000000000001,0.67,0,0,0,4,11.100000000000001,0,0,0,0,0.254,100,105.21000000000001,0.13,995,2.4000000000000004,159,0.8 +2013,7,9,20,30,11.5,0.43,0.09670000000000001,0.67,0,0,0,4,11.200000000000001,0,0,0,0,0.254,97.8,92.74,0.13,996,2.4000000000000004,161,1 +2013,7,9,21,30,12.4,0.47000000000000003,0.1,0.67,50,366,108,8,11.5,41,0,3,41,0.254,94.21000000000001,80.8,0.13,997,2.4000000000000004,159,1.5 +2013,7,9,22,30,13.3,0.45,0.09720000000000001,0.67,77,613,287,4,12,21,0,0,21,0.253,91.60000000000001,69.98,0.13,997,2.4000000000000004,154,1.8 +2013,7,9,23,30,13.8,0.43,0.0931,0.67,91,726,447,8,12.4,186,24,0,198,0.253,91.45,60.64,0.13,997,2.5,150,1.8 +2013,7,10,0,30,14.700000000000001,0.5,0.1005,0.67,102,773,560,8,12.8,165,23,0,179,0.253,88.17,53.620000000000005,0.13,997,2.5,142,1.9000000000000001 +2013,7,10,1,30,15,0.53,0.10250000000000001,0.67,106,795,618,8,13,75,14,0,84,0.253,87.7,49.92,0.13,996,2.5,138,1.9000000000000001 +2013,7,10,2,30,15.200000000000001,0.51,0.095,0.67,103,800,614,8,13.200000000000001,148,25,0,163,0.253,87.63,50.28,0.13,995,2.5,135,1.9000000000000001 +2013,7,10,3,30,15.3,0.5700000000000001,0.0892,0.67,95,781,547,7,13.3,206,23,0,220,0.252,87.76,54.64,0.13,995,2.5,132,1.9000000000000001 +2013,7,10,4,30,15.3,0.56,0.08370000000000001,0.67,84,727,424,8,13.4,209,35,0,226,0.252,88.25,62.13,0.13,995,2.5,132,1.8 +2013,7,10,5,30,14.8,0.53,0.0766,0.67,67,615,259,7,13.5,119,26,0,127,0.251,91.72,71.79,0.13,995,2.6,135,1.3 +2013,7,10,6,30,13.700000000000001,0.5,0.0804,0.67,39,329,80,7,13.4,38,0,3,38,0.25,98.10000000000001,82.79,0.13,996,2.6,140,0.9 +2013,7,10,7,30,13,0.47000000000000003,0.0892,0.67,0,0,0,8,12.700000000000001,0,0,0,0,0.249,98.23,94.88,0.13,997,2.6,145,0.8 +2013,7,10,8,30,12.8,0.44,0.0971,0.67,0,0,0,8,12.600000000000001,0,0,0,0,0.249,98.52,107.44,0.13,997,2.6,145,0.8 +2013,7,10,9,30,12.600000000000001,0.44,0.09870000000000001,0.67,0,0,0,7,12.4,0,0,0,0,0.25,98.76,120.37,0.13,997,2.6,143,0.8 +2013,7,10,10,30,12.3,0.43,0.0975,0.67,0,0,0,8,12.100000000000001,0,0,0,0,0.251,98.98,133.55,0.13,997,2.5,140,0.8 +2013,7,10,11,30,12.100000000000001,0.43,0.0918,0.67,0,0,0,8,11.9,0,0,0,0,0.251,99.01,146.85,0.13,997,2.5,142,0.8 +2013,7,10,12,30,11.9,0.44,0.0898,0.67,0,0,0,4,11.8,0,0,0,0,0.252,99.27,160.1,0.13,997,2.4000000000000004,145,0.7000000000000001 +2013,7,10,13,30,11.700000000000001,0.45,0.08660000000000001,0.67,0,0,0,1,11.600000000000001,0,0,0,0,0.252,99.62,172.36,0.13,997,2.4000000000000004,147,0.7000000000000001 +2013,7,10,14,30,11.4,0.46,0.0809,0.67,0,0,0,1,11.4,0,0,0,0,0.252,100,170.47,0.13,997,2.4000000000000004,149,0.7000000000000001 +2013,7,10,15,30,11.200000000000001,0.49,0.075,0.67,0,0,0,1,11.200000000000001,0,0,0,0,0.252,100,157.8,0.13,996,2.3000000000000003,151,0.7000000000000001 +2013,7,10,16,30,11,0.52,0.0682,0.67,0,0,0,1,11,0,0,0,0,0.252,100,144.52,0.13,996,2.3000000000000003,152,0.7000000000000001 +2013,7,10,17,30,10.9,0.54,0.062200000000000005,0.67,0,0,0,1,10.9,0,0,0,0,0.252,100,131.23,0.13,996,2.2,153,0.7000000000000001 +2013,7,10,18,30,10.9,0.58,0.059800000000000006,0.67,0,0,0,3,10.9,0,0,0,0,0.252,100,118.08,0.13,997,2.2,153,0.7000000000000001 +2013,7,10,19,30,10.9,0.6,0.056600000000000004,0.67,0,0,0,1,10.9,0,0,0,0,0.252,100,105.19,0.13,997,2.1,152,0.7000000000000001 +2013,7,10,20,30,11.5,0.61,0.053500000000000006,0.67,0,0,0,1,11,0,0,0,0,0.252,96.77,92.71000000000001,0.13,998,2.1,153,0.9 +2013,7,10,21,30,12.8,0.64,0.053200000000000004,0.67,41,473,117,2,11.700000000000001,62,43,3,69,0.252,92.74,80.76,0.13,998,2,152,1.3 +2013,7,10,22,30,14.100000000000001,0.66,0.052700000000000004,0.67,62,697,301,1,12.3,62,697,0,301,0.252,89.02,69.92,0.13,999,2,143,1.6 +2013,7,10,23,30,14.700000000000001,0.6900000000000001,0.050100000000000006,0.67,72,798,464,1,12.9,72,798,0,464,0.253,88.68,60.56,0.13,999,2,136,1.7000000000000002 +2013,7,11,0,30,16.400000000000002,0.43,0.0847,0.67,96,801,573,1,13,96,801,0,573,0.253,80.12,53.51,0.13,998,2,125,2 +2013,7,11,1,30,17.2,0.5,0.0742,0.67,94,836,634,1,12.8,94,836,0,634,0.254,75.13,49.79,0.13,997,2,121,2 +2013,7,11,2,30,17.5,0.55,0.0665,0.67,90,843,630,3,12.4,385,142,0,476,0.255,72.2,50.15,0.13,997,2,119,2.1 +2013,7,11,3,30,17.400000000000002,0.64,0.0644,0.67,84,822,562,2,12.100000000000001,342,168,0,440,0.256,71.24,54.5,0.13,996,2,118,2.1 +2013,7,11,4,30,17.1,0.6900000000000001,0.06380000000000001,0.67,76,768,437,3,12,261,162,0,337,0.258,71.71000000000001,62.01,0.13,996,2,118,2 +2013,7,11,5,30,16.3,0.71,0.057800000000000004,0.67,60,665,269,2,12,155,119,0,192,0.259,75.62,71.68,0.13,996,2,118,1.5 +2013,7,11,6,30,14.9,0.75,0.054900000000000004,0.67,35,410,87,1,12.4,35,410,0,87,0.26,84.74,82.69,0.13,997,1.9000000000000001,122,0.9 +2013,7,11,7,30,13.8,0.76,0.048400000000000006,0.67,0,0,0,1,11.9,0,0,0,0,0.261,88.44,94.79,0.13,997,1.9000000000000001,126,0.8 +2013,7,11,8,30,13.100000000000001,0.76,0.0436,0.67,0,0,0,1,11.700000000000001,0,0,0,0,0.261,91.10000000000001,107.35000000000001,0.13,997,1.9000000000000001,131,0.8 +2013,7,11,9,30,12.5,0.75,0.0419,0.67,0,0,0,1,11.700000000000001,0,0,0,0,0.261,94.60000000000001,120.3,0.13,998,1.9000000000000001,137,0.8 +2013,7,11,10,30,12,0.74,0.0425,0.67,0,0,0,1,11.700000000000001,0,0,0,0,0.261,98.05,133.48,0.13,998,1.9000000000000001,142,0.8 +2013,7,11,11,30,11.600000000000001,0.71,0.0444,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.261,100,146.79,0.13,997,1.8,146,0.8 +2013,7,11,12,30,11.5,0.6900000000000001,0.0478,0.67,0,0,0,1,11.5,0,0,0,0,0.261,100,160.03,0.13,997,1.8,153,0.8 +2013,7,11,13,30,11.5,0.6900000000000001,0.049300000000000004,0.67,0,0,0,1,11.5,0,0,0,0,0.262,100,172.24,0.13,997,1.8,159,0.8 +2013,7,11,14,30,11.5,0.6900000000000001,0.049600000000000005,0.67,0,0,0,1,11.5,0,0,0,0,0.262,100,170.42000000000002,0.13,997,1.8,162,0.8 +2013,7,11,15,30,11.4,0.72,0.0522,0.67,0,0,0,1,11.4,0,0,0,0,0.262,100,157.79,0.13,997,1.8,164,0.8 +2013,7,11,16,30,11.3,0.76,0.0538,0.67,0,0,0,0,11.3,0,0,0,0,0.264,100,144.51,0.13,996,1.8,164,0.8 +2013,7,11,17,30,11.100000000000001,0.78,0.051300000000000005,0.67,0,0,0,0,11.100000000000001,0,0,0,0,0.265,100,131.21,0.13,996,1.8,163,0.8 +2013,7,11,18,30,10.8,0.79,0.049800000000000004,0.67,0,0,0,1,10.8,0,0,0,0,0.266,100,118.06,0.13,996,1.8,163,0.8 +2013,7,11,19,30,10.600000000000001,0.8,0.049100000000000005,0.67,0,0,0,1,10.600000000000001,0,0,0,0,0.267,100,105.16,0.13,997,1.8,160,0.8 +2013,7,11,20,30,11.200000000000001,0.8300000000000001,0.0492,0.67,0,0,0,1,11.200000000000001,0,0,0,0,0.267,99.78,92.67,0.13,997,1.8,158,0.8 +2013,7,11,21,30,12.5,0.88,0.051500000000000004,0.67,40,491,119,1,11.5,40,491,0,119,0.268,93.65,80.7,0.13,997,1.8,154,1.1 +2013,7,11,22,30,14.100000000000001,0.91,0.0521,0.67,61,708,305,1,12.100000000000001,61,708,0,305,0.267,87.78,69.85000000000001,0.13,997,1.8,145,1.5 +2013,7,11,23,30,14.9,0.91,0.0444,0.67,69,813,470,1,12.700000000000001,69,813,0,470,0.267,86.72,60.47,0.13,997,1.8,140,1.7000000000000002 +2013,7,12,0,30,17,0.49,0.0707,0.67,90,821,579,1,12.9,90,821,0,579,0.267,76.59,53.4,0.14,996,1.9000000000000001,132,1.8 +2013,7,12,1,30,17.8,0.53,0.0651,0.67,90,846,638,1,12.600000000000001,90,846,0,638,0.267,71.71000000000001,49.660000000000004,0.14,995,2,132,1.8 +2013,7,12,2,30,18.1,0.55,0.06420000000000001,0.67,89,846,633,3,12.5,266,24,0,282,0.267,69.65,50.01,0.14,995,2,131,1.8 +2013,7,12,3,30,17.900000000000002,0.64,0.0708,0.67,88,813,561,4,12.200000000000001,216,23,0,229,0.267,69.44,54.370000000000005,0.14,994,2.1,127,1.7000000000000002 +2013,7,12,4,30,17.5,0.72,0.0661,0.67,77,764,437,3,12.100000000000001,225,44,0,246,0.268,70.58,61.89,0.14,994,2.1,125,1.5 +2013,7,12,5,30,16.7,0.74,0.056,0.67,60,667,271,3,12.200000000000001,158,187,0,217,0.268,74.62,71.57000000000001,0.14,994,2.1,122,1.1 +2013,7,12,6,30,15.200000000000001,0.81,0.051300000000000005,0.67,35,421,89,3,12.9,52,112,3,66,0.268,85.9,82.59,0.14,994,2,112,0.7000000000000001 +2013,7,12,7,30,13.9,0.87,0.046,0.67,0,0,0,3,12.3,0,0,0,0,0.268,90.33,94.7,0.14,994,2,102,0.7000000000000001 +2013,7,12,8,30,13,0.91,0.0396,0.67,0,0,0,1,12.200000000000001,0,0,0,0,0.268,94.95,107.27,0.14,994,2,101,0.7000000000000001 +2013,7,12,9,30,12.4,0.91,0.0375,0.67,0,0,0,1,12.200000000000001,0,0,0,0,0.268,98.55,120.22,0.14,994,1.9000000000000001,105,0.7000000000000001 +2013,7,12,10,30,12,0.89,0.0368,0.67,0,0,0,1,12,0,0,0,0,0.267,100,133.41,0.14,994,1.9000000000000001,110,0.7000000000000001 +2013,7,12,11,30,11.5,0.88,0.036000000000000004,0.67,0,0,0,1,11.5,0,0,0,0,0.266,100,146.72,0.14,994,1.9000000000000001,119,0.8 +2013,7,12,12,30,11.100000000000001,0.87,0.0366,0.67,0,0,0,1,11.100000000000001,0,0,0,0,0.266,100,159.96,0.14,994,1.8,134,0.8 +2013,7,12,13,30,10.600000000000001,0.87,0.0376,0.67,0,0,0,3,10.600000000000001,0,0,0,0,0.265,100,172.12,0.14,994,1.8,147,0.8 +2013,7,12,14,30,10.200000000000001,0.88,0.0385,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.265,100,170.36,0.14,994,1.8,155,0.8 +2013,7,12,15,30,9.8,0.9,0.0396,0.67,0,0,0,0,9.8,0,0,0,0,0.265,100,157.77,0.14,993,1.8,159,0.8 +2013,7,12,16,30,9.600000000000001,0.92,0.0392,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.265,100,144.5,0.14,993,1.8,163,0.8 +2013,7,12,17,30,9.4,0.9400000000000001,0.0378,0.67,0,0,0,0,9.4,0,0,0,0,0.265,100,131.2,0.14,993,1.8,169,0.8 +2013,7,12,18,30,9.3,0.97,0.0388,0.67,0,0,0,0,9.3,0,0,0,0,0.266,100,118.04,0.14,993,1.8,173,0.8 +2013,7,12,19,30,9.200000000000001,0.99,0.0392,0.67,0,0,0,1,9.200000000000001,0,0,0,0,0.266,100,105.13,0.14,994,1.8,178,0.8 +2013,7,12,20,30,9.9,1,0.038,0.67,0,0,0,1,9.9,0,0,0,0,0.266,100,92.63,0.14,995,1.8,184,0.9 +2013,7,12,21,30,11.700000000000001,1.02,0.0388,0.67,37,520,122,1,10.5,37,520,0,122,0.266,92.51,80.65,0.14,996,1.9000000000000001,182,1.1 +2013,7,12,22,30,13.9,1.06,0.0386,0.67,56,729,308,1,11.3,56,729,0,308,0.266,84.53,69.78,0.14,996,1.9000000000000001,159,1.2000000000000002 +2013,7,12,23,30,15.100000000000001,1.12,0.0359,0.67,65,824,472,1,12,65,824,0,472,0.266,81.89,60.38,0.14,996,1.9000000000000001,142,1.3 +2013,7,13,0,30,17.1,0.6,0.0618,0.67,85,834,583,1,12,85,834,0,583,0.267,71.72,53.28,0.13,995,1.9000000000000001,122,1.5 +2013,7,13,1,30,17.900000000000002,0.66,0.0558,0.67,84,859,642,1,11.700000000000001,84,859,0,642,0.267,67.04,49.53,0.13,994,2,116,1.6 +2013,7,13,2,30,18.2,0.71,0.053500000000000006,0.67,83,861,637,1,11.5,83,861,0,637,0.268,65.14,49.870000000000005,0.13,993,2,111,1.7000000000000002 +2013,7,13,3,30,18.2,0.81,0.0492,0.67,76,843,569,1,11.5,76,843,0,569,0.268,64.95,54.230000000000004,0.13,992,2,108,1.7000000000000002 +2013,7,13,4,30,17.900000000000002,0.87,0.048100000000000004,0.67,69,796,446,1,11.4,69,796,0,446,0.269,65.86,61.76,0.13,992,1.9000000000000001,106,1.7000000000000002 +2013,7,13,5,30,17,0.91,0.0451,0.67,56,695,277,1,11.5,56,695,0,277,0.271,70.04,71.45,0.13,992,1.9000000000000001,104,1.2000000000000002 +2013,7,13,6,30,15.5,0.97,0.050800000000000005,0.67,35,434,91,1,12.3,35,434,0,91,0.272,81.34,82.49,0.13,992,1.9000000000000001,103,0.7000000000000001 +2013,7,13,7,30,14.4,1.01,0.051800000000000006,0.67,0,0,0,0,12.100000000000001,0,0,0,0,0.274,86.02,94.61,0.13,993,1.9000000000000001,107,0.7000000000000001 +2013,7,13,8,30,13.8,1.02,0.046200000000000005,0.67,0,0,0,0,12,0,0,0,0,0.275,89.10000000000001,107.19,0.13,994,1.9000000000000001,115,0.7000000000000001 +2013,7,13,9,30,13.3,1.06,0.0478,0.67,0,0,0,0,11.9,0,0,0,0,0.275,91.36,120.15,0.13,994,1.9000000000000001,125,0.7000000000000001 +2013,7,13,10,30,12.9,1.09,0.046,0.67,0,0,0,0,11.9,0,0,0,0,0.276,93.46000000000001,133.34,0.13,995,1.9000000000000001,132,0.7000000000000001 +2013,7,13,11,30,12.4,1.1,0.041600000000000005,0.67,0,0,0,0,11.8,0,0,0,0,0.276,96.09,146.65,0.13,995,1.9000000000000001,139,0.7000000000000001 +2013,7,13,12,30,12,1.12,0.041800000000000004,0.67,0,0,0,0,11.700000000000001,0,0,0,0,0.276,97.84,159.88,0.13,994,1.8,143,0.7000000000000001 +2013,7,13,13,30,11.600000000000001,1.1500000000000001,0.0396,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.276,99.92,172,0.13,994,1.8,145,0.7000000000000001 +2013,7,13,14,30,11.100000000000001,1.1500000000000001,0.0368,0.67,0,0,0,0,11.100000000000001,0,0,0,0,0.276,100,170.3,0.13,993,1.8,149,0.7000000000000001 +2013,7,13,15,30,10.600000000000001,1.1300000000000001,0.0366,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.277,100,157.75,0.13,993,1.8,155,0.7000000000000001 +2013,7,13,16,30,10.200000000000001,1.09,0.0371,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.278,100,144.48,0.13,992,1.8,160,0.7000000000000001 +2013,7,13,17,30,10,1.04,0.0381,0.67,0,0,0,3,10,0,0,0,0,0.279,100,131.18,0.13,992,1.8,159,0.7000000000000001 +2013,7,13,18,30,10,1.06,0.0443,0.67,0,0,0,3,10,0,0,0,0,0.28,100,118.01,0.13,993,1.9000000000000001,158,0.7000000000000001 +2013,7,13,19,30,10.200000000000001,1.07,0.048100000000000004,0.67,0,0,0,3,10.200000000000001,0,0,0,0,0.28,100,105.10000000000001,0.13,993,2,157,0.6000000000000001 +2013,7,13,20,30,11,1.06,0.0472,0.67,0,0,0,3,10.9,0,0,0,0,0.281,99.25,92.58,0.13,994,2,155,0.7000000000000001 +2013,7,13,21,30,12.4,1.09,0.0523,0.67,39,490,120,3,11.3,10,0,3,10,0.28,92.86,80.59,0.13,994,2.1,150,1 +2013,7,13,22,30,13.8,1.11,0.052000000000000005,0.67,60,705,304,4,11.9,27,0,0,27,0.28,88.18,69.7,0.13,994,2.1,134,1.2000000000000002 +2013,7,13,23,30,14.600000000000001,1.1300000000000001,0.046900000000000004,0.67,69,806,469,1,12.5,69,806,0,469,0.281,87.38,60.27,0.13,994,2.1,124,1.2000000000000002 +2013,7,14,0,30,16.3,0.77,0.0826,0.67,92,809,578,3,12.700000000000001,240,24,0,255,0.28200000000000003,79.33,53.160000000000004,0.13,994,2.1,107,1.3 +2013,7,14,1,30,17,0.8200000000000001,0.07930000000000001,0.67,94,832,636,3,12.700000000000001,184,25,0,200,0.28200000000000003,75.63,49.38,0.13,993,2.2,102,1.3 +2013,7,14,2,30,17.3,0.85,0.0763,0.67,92,834,631,3,12.4,352,53,0,386,0.28300000000000003,73.17,49.72,0.13,992,2.2,98,1.3 +2013,7,14,3,30,17.3,0.91,0.0771,0.67,88,807,562,3,12.3,299,44,0,325,0.28200000000000003,72.3,54.08,0.13,992,2.3000000000000003,97,1.3 +2013,7,14,4,30,16.8,0.97,0.0823,0.67,82,746,436,3,12.200000000000001,265,134,0,328,0.28200000000000003,74.31,61.63,0.13,992,2.3000000000000003,98,1.2000000000000002 +2013,7,14,5,30,15.9,1,0.0815,0.67,67,633,269,3,12.600000000000001,160,133,0,203,0.28200000000000003,80.86,71.33,0.13,992,2.3000000000000003,99,0.8 +2013,7,14,6,30,14.8,1.05,0.0838,0.67,39,369,88,3,13,52,68,3,61,0.28300000000000003,89.25,82.39,0.13,992,2.3000000000000003,101,0.6000000000000001 +2013,7,14,7,30,14,1.08,0.0794,0.67,0,0,0,4,12.600000000000001,0,0,0,0,0.28400000000000003,91.36,94.52,0.13,993,2.3000000000000003,103,0.6000000000000001 +2013,7,14,8,30,13.5,1.1,0.0719,0.67,0,0,0,1,12.4,0,0,0,0,0.28500000000000003,93,107.11,0.13,993,2.3000000000000003,104,0.7000000000000001 +2013,7,14,9,30,13,1.1,0.0637,0.67,0,0,0,1,12.200000000000001,0,0,0,0,0.28600000000000003,95.17,120.07000000000001,0.13,993,2.3000000000000003,104,0.7000000000000001 +2013,7,14,10,30,12.5,1.09,0.0565,0.67,0,0,0,8,12.200000000000001,0,0,0,0,0.28700000000000003,97.93,133.27,0.13,993,2.4000000000000004,106,0.7000000000000001 +2013,7,14,11,30,12,1.08,0.0517,0.67,0,0,0,7,12,0,0,0,0,0.28800000000000003,100,146.58,0.13,993,2.4000000000000004,107,0.8 +2013,7,14,12,30,11.600000000000001,1.07,0.0506,0.67,0,0,0,8,11.600000000000001,0,0,0,0,0.28800000000000003,100,159.8,0.13,993,2.4000000000000004,109,0.8 +2013,7,14,13,30,11.4,1.07,0.0519,0.67,0,0,0,8,11.4,0,0,0,0,0.28800000000000003,100,171.87,0.13,993,2.4000000000000004,111,0.8 +2013,7,14,14,30,11.4,1.06,0.0534,0.67,0,0,0,8,11.4,0,0,0,0,0.28800000000000003,100,170.22,0.13,993,2.4000000000000004,115,0.8 +2013,7,14,15,30,11.4,1.06,0.054900000000000004,0.67,0,0,0,1,11.4,0,0,0,0,0.28800000000000003,100,157.72,0.13,992,2.4000000000000004,122,0.8 +2013,7,14,16,30,11.4,1.06,0.0531,0.67,0,0,0,1,11.4,0,0,0,0,0.289,100,144.46,0.13,992,2.5,129,0.8 +2013,7,14,17,30,11.3,1.05,0.049800000000000004,0.67,0,0,0,3,11.3,0,0,0,0,0.289,100,131.16,0.13,992,2.5,133,0.8 +2013,7,14,18,30,11.3,1.06,0.050300000000000004,0.67,0,0,0,3,11.3,0,0,0,0,0.29,100,117.98,0.13,992,2.5,136,0.8 +2013,7,14,19,30,11.200000000000001,1.07,0.050300000000000004,0.67,0,0,0,3,11.200000000000001,0,0,0,0,0.291,100,105.06,0.13,993,2.5,136,0.8 +2013,7,14,20,30,11.700000000000001,1.06,0.0488,0.67,0,0,0,3,11.700000000000001,0,0,0,0,0.291,100,92.53,0.13,993,2.5,136,0.8 +2013,7,14,21,30,13.200000000000001,1.06,0.0507,0.67,39,485,119,3,12.200000000000001,59,23,3,63,0.291,93.51,80.52,0.13,993,2.5,133,0.8 +2013,7,14,22,30,14.8,1.06,0.0512,0.67,59,697,302,3,13,163,61,0,184,0.29,88.82000000000001,69.61,0.13,993,2.5,111,0.9 +2013,7,14,23,30,15.600000000000001,1.08,0.047400000000000005,0.67,69,795,465,3,13.600000000000001,206,27,0,220,0.29,87.62,60.17,0.13,993,2.5,92,0.9 +2013,7,15,0,30,17.2,1.16,0.0473,0.67,75,840,580,3,13.600000000000001,358,184,0,469,0.289,79.29,53.03,0.13,993,2.6,71,1.1 +2013,7,15,1,30,17.900000000000002,1.16,0.0514,0.67,80,855,638,1,13.4,80,855,0,638,0.289,75.16,49.230000000000004,0.13,992,2.6,69,1.1 +2013,7,15,2,30,18.2,1.16,0.0494,0.67,79,855,633,3,13.3,196,24,0,211,0.289,73.10000000000001,49.56,0.13,991,2.6,69,1.3 +2013,7,15,3,30,18.1,0.88,0.0789,0.67,89,799,559,4,13.200000000000001,185,23,0,198,0.289,73.09,53.93,0.13,990,2.6,69,1.4000000000000001 +2013,7,15,4,30,17.5,0.89,0.0791,0.67,80,743,435,8,13.200000000000001,187,25,0,199,0.289,75.82000000000001,61.49,0.13,990,2.6,68,1.4000000000000001 +2013,7,15,5,30,16.5,0.9,0.0734,0.67,64,638,270,8,13.4,149,62,0,169,0.289,81.79,71.21000000000001,0.13,990,2.6,67,1.1 +2013,7,15,6,30,15.200000000000001,0.92,0.0787,0.67,39,371,89,8,13.8,49,26,3,52,0.289,91.36,82.28,0.13,991,2.6,63,0.7000000000000001 +2013,7,15,7,30,14,0.9,0.08170000000000001,0.67,0,0,0,8,13.4,0,0,0,0,0.289,95.99000000000001,94.42,0.13,992,2.6,57,0.6000000000000001 +2013,7,15,8,30,13.5,0.87,0.0766,0.67,0,0,0,8,13.100000000000001,0,0,0,0,0.289,97.49000000000001,107.02,0.13,992,2.6,51,0.6000000000000001 +2013,7,15,9,30,13.100000000000001,0.85,0.0731,0.67,0,0,0,4,12.9,0,0,0,0,0.29,98.79,120,0.13,993,2.6,48,0.6000000000000001 +2013,7,15,10,30,12.8,0.84,0.0683,0.67,0,0,0,4,12.700000000000001,0,0,0,0,0.291,99.38,133.2,0.13,993,2.6,46,0.7000000000000001 +2013,7,15,11,30,12.4,0.81,0.0629,0.67,0,0,0,3,12.4,0,0,0,0,0.293,100,146.51,0.13,993,2.5,47,0.7000000000000001 +2013,7,15,12,30,12.100000000000001,0.78,0.0591,0.67,0,0,0,4,12.100000000000001,0,0,0,0,0.294,100,159.72,0.13,992,2.5,53,0.8 +2013,7,15,13,30,12,0.74,0.056900000000000006,0.67,0,0,0,4,12,0,0,0,0,0.295,100,171.74,0.13,992,2.4000000000000004,61,0.8 +2013,7,15,14,30,12.100000000000001,0.72,0.057,0.67,0,0,0,3,12,0,0,0,0,0.295,99.59,170.14000000000001,0.13,992,2.4000000000000004,67,0.8 +2013,7,15,15,30,12.200000000000001,0.72,0.058600000000000006,0.67,0,0,0,0,12,0,0,0,0,0.294,98.63,157.69,0.13,992,2.4000000000000004,71,0.8 +2013,7,15,16,30,12.3,0.74,0.060700000000000004,0.67,0,0,0,0,12,0,0,0,0,0.294,97.77,144.44,0.13,992,2.4000000000000004,78,0.7000000000000001 +2013,7,15,17,30,12.200000000000001,0.74,0.060700000000000004,0.67,0,0,0,0,11.9,0,0,0,0,0.294,98.08,131.13,0.13,991,2.4000000000000004,84,0.7000000000000001 +2013,7,15,18,30,12,0.75,0.0587,0.67,0,0,0,1,11.9,0,0,0,0,0.294,99.24000000000001,117.95,0.13,992,2.4000000000000004,88,0.7000000000000001 +2013,7,15,19,30,11.9,0.75,0.0565,0.67,0,0,0,0,11.9,0,0,0,0,0.294,99.78,105.01,0.13,992,2.4000000000000004,92,0.8 +2013,7,15,20,30,12.4,0.74,0.0551,0.67,0,0,0,1,11.9,0,0,0,0,0.294,96.63,92.47,0.13,993,2.4000000000000004,96,0.8 +2013,7,15,21,30,13.8,0.74,0.054900000000000004,0.67,41,472,119,1,12.5,41,472,0,119,0.293,91.68,80.45,0.13,993,2.4000000000000004,98,0.8 +2013,7,15,22,30,15.5,0.75,0.054400000000000004,0.67,62,690,303,1,13.100000000000001,62,690,0,303,0.292,85.77,69.52,0.13,994,2.4000000000000004,88,0.9 +2013,7,15,23,30,16.3,0.77,0.0522,0.67,72,792,468,1,13.4,72,792,0,468,0.292,82.73,60.050000000000004,0.13,994,2.3000000000000003,79,1 +2013,7,16,0,30,18,0.62,0.0758,0.67,91,811,580,1,13.3,91,811,0,580,0.29,74.05,52.89,0.13,993,2.3000000000000003,62,1.3 +2013,7,16,1,30,18.7,0.66,0.0724,0.67,92,836,640,1,13.100000000000001,92,836,0,640,0.28800000000000003,69.77,49.08,0.13,992,2.3000000000000003,61,1.4000000000000001 +2013,7,16,2,30,18.900000000000002,0.6900000000000001,0.0651,0.67,88,841,635,1,13,88,841,0,635,0.28600000000000003,68.47,49.4,0.13,991,2.4000000000000004,63,1.5 +2013,7,16,3,30,18.900000000000002,0.76,0.061500000000000006,0.67,82,822,568,1,12.9,82,822,0,568,0.28500000000000003,68.21000000000001,53.78,0.13,991,2.4000000000000004,65,1.5 +2013,7,16,4,30,18.5,0.79,0.0603,0.67,74,770,443,1,12.9,74,770,0,443,0.28400000000000003,69.82000000000001,61.35,0.13,991,2.4000000000000004,68,1.4000000000000001 +2013,7,16,5,30,17.6,0.81,0.0575,0.67,60,666,276,1,13.100000000000001,60,666,0,276,0.28400000000000003,74.7,71.09,0.13,991,2.4000000000000004,74,1 +2013,7,16,6,30,16.1,0.86,0.059300000000000005,0.67,37,410,92,1,13.8,37,410,0,92,0.28400000000000003,86.34,82.18,0.13,991,2.5,79,0.7000000000000001 +2013,7,16,7,30,14.8,0.88,0.057300000000000004,0.67,0,0,0,0,13.4,0,0,0,0,0.28400000000000003,91.12,94.33,0.13,992,2.5,79,0.7000000000000001 +2013,7,16,8,30,14.100000000000001,0.85,0.0534,0.67,0,0,0,1,13.3,0,0,0,0,0.28400000000000003,94.63,106.94,0.13,993,2.5,76,0.7000000000000001 +2013,7,16,9,30,13.700000000000001,0.8200000000000001,0.0531,0.67,0,0,0,1,13.200000000000001,0,0,0,0,0.28400000000000003,96.92,119.92,0.13,993,2.5,72,0.7000000000000001 +2013,7,16,10,30,13.5,0.78,0.055200000000000006,0.67,0,0,0,4,13.200000000000001,0,0,0,0,0.28400000000000003,98.21000000000001,133.13,0.13,993,2.5,67,0.7000000000000001 +2013,7,16,11,30,13.5,0.75,0.0575,0.67,0,0,0,4,13.200000000000001,0,0,0,0,0.28300000000000003,98.02,146.44,0.13,993,2.6,64,0.7000000000000001 +2013,7,16,12,30,13.4,0.73,0.0599,0.67,0,0,0,3,13.200000000000001,0,0,0,0,0.28300000000000003,98.48,159.64000000000001,0.13,993,2.6,64,0.7000000000000001 +2013,7,16,13,30,13.3,0.72,0.0626,0.67,0,0,0,4,13.200000000000001,0,0,0,0,0.28200000000000003,99.08,171.61,0.13,993,2.6,63,0.7000000000000001 +2013,7,16,14,30,13.100000000000001,0.73,0.0646,0.67,0,0,0,1,13.100000000000001,0,0,0,0,0.28200000000000003,100,170.06,0.13,992,2.6,64,0.7000000000000001 +2013,7,16,15,30,12.9,0.73,0.06720000000000001,0.67,0,0,0,4,12.9,0,0,0,0,0.281,100,157.66,0.13,992,2.6,68,0.7000000000000001 +2013,7,16,16,30,12.8,0.72,0.0689,0.67,0,0,0,8,12.8,0,0,0,0,0.28200000000000003,100,144.41,0.13,991,2.5,74,0.7000000000000001 +2013,7,16,17,30,12.700000000000001,0.6900000000000001,0.0694,0.67,0,0,0,8,12.700000000000001,0,0,0,0,0.28200000000000003,100,131.1,0.13,991,2.5,83,0.7000000000000001 +2013,7,16,18,30,12.700000000000001,0.65,0.0697,0.67,0,0,0,7,12.700000000000001,0,0,0,0,0.28300000000000003,100,117.91,0.13,992,2.5,94,0.7000000000000001 +2013,7,16,19,30,12.5,0.6,0.07050000000000001,0.67,0,0,0,3,12.5,0,0,0,0,0.28300000000000003,100,104.97,0.13,992,2.5,106,0.8 +2013,7,16,20,30,12.9,0.56,0.0714,0.67,0,0,0,4,12.9,0,0,0,0,0.28200000000000003,100,92.41,0.13,993,2.4000000000000004,117,0.8 +2013,7,16,21,30,14.5,0.52,0.0724,0.67,45,432,118,1,13.3,45,432,0,118,0.281,92.62,80.38,0.13,993,2.4000000000000004,116,0.9 +2013,7,16,22,30,16.5,0.53,0.068,0.67,68,667,302,3,14.4,173,83,0,202,0.279,87.15,69.43,0.13,993,2.4000000000000004,97,1.1 +2013,7,16,23,30,17.3,0.65,0.053200000000000004,0.67,74,791,470,3,14.700000000000001,148,22,0,159,0.278,84.60000000000001,59.93,0.13,993,2.3000000000000003,83,1.2000000000000002 +2013,7,17,0,30,18.900000000000002,0.84,0.0427,0.67,74,852,590,1,14.3,74,852,0,590,0.275,74.42,52.75,0.13,992,2.3000000000000003,81,1.3 +2013,7,17,1,30,19.5,0.85,0.0453,0.67,78,866,647,1,13.700000000000001,78,866,0,647,0.273,69.37,48.910000000000004,0.13,991,2.4000000000000004,85,1.3 +2013,7,17,2,30,19.6,0.84,0.049100000000000005,0.67,80,860,642,8,13.5,180,25,0,196,0.272,67.97,49.230000000000004,0.13,990,2.4000000000000004,88,1.4000000000000001 +2013,7,17,3,30,19.5,0.5700000000000001,0.0738,0.67,89,807,568,1,13.3,89,807,0,568,0.272,67.46000000000001,53.620000000000005,0.13,990,2.4000000000000004,88,1.5 +2013,7,17,4,30,19.200000000000003,0.62,0.0743,0.67,81,751,443,1,13.200000000000001,81,751,0,443,0.271,68.25,61.21,0.13,990,2.4000000000000004,87,1.5 +2013,7,17,5,30,18.2,0.66,0.0708,0.67,66,645,276,1,13.3,66,645,0,276,0.271,73.18,70.97,0.13,990,2.4000000000000004,85,1.1 +2013,7,17,6,30,16.8,0.75,0.07400000000000001,0.67,40,384,93,1,14,40,384,0,93,0.27,83.42,82.07000000000001,0.13,990,2.4000000000000004,83,0.7000000000000001 +2013,7,17,7,30,15.700000000000001,0.8,0.06860000000000001,0.67,0,0,0,0,13.600000000000001,0,0,0,0,0.27,87.25,94.23,0.13,990,2.3000000000000003,82,0.7000000000000001 +2013,7,17,8,30,15,0.8,0.0575,0.67,0,0,0,1,13.3,0,0,0,0,0.269,89.35000000000001,106.85000000000001,0.13,991,2.3000000000000003,81,0.7000000000000001 +2013,7,17,9,30,14.4,0.8,0.0497,0.67,0,0,0,0,13,0,0,0,0,0.269,91.51,119.84,0.13,992,2.2,82,0.7000000000000001 +2013,7,17,10,30,13.9,0.78,0.0448,0.67,0,0,0,1,12.9,0,0,0,0,0.269,93.91,133.06,0.13,992,2.2,86,0.8 +2013,7,17,11,30,13.5,0.76,0.0426,0.67,0,0,0,0,12.9,0,0,0,0,0.269,95.88,146.37,0.13,992,2.1,94,0.8 +2013,7,17,12,30,13.100000000000001,0.73,0.0425,0.67,0,0,0,0,12.8,0,0,0,0,0.269,98.11,159.56,0.13,992,2.1,106,0.8 +2013,7,17,13,30,12.700000000000001,0.7000000000000001,0.0436,0.67,0,0,0,0,12.700000000000001,0,0,0,0,0.268,100,171.47,0.13,991,2,117,0.8 +2013,7,17,14,30,12.3,0.68,0.045200000000000004,0.67,0,0,0,0,12.3,0,0,0,0,0.268,100,169.96,0.13,991,2,124,0.8 +2013,7,17,15,30,11.9,0.66,0.0473,0.67,0,0,0,0,11.9,0,0,0,0,0.268,100,157.61,0.13,991,1.9000000000000001,122,0.8 +2013,7,17,16,30,11.5,0.66,0.049,0.67,0,0,0,0,11.5,0,0,0,0,0.268,100,144.37,0.13,990,1.9000000000000001,116,0.8 +2013,7,17,17,30,11.5,0.67,0.0492,0.67,0,0,0,0,11.5,0,0,0,0,0.267,100,131.06,0.13,990,1.9000000000000001,111,0.8 +2013,7,17,18,30,11.600000000000001,0.7000000000000001,0.050800000000000005,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.266,100,117.87,0.13,990,1.9000000000000001,105,0.8 +2013,7,17,19,30,11.9,0.73,0.0522,0.67,0,0,0,1,11.9,0,0,0,0,0.265,100,104.91,0.13,991,1.9000000000000001,98,0.8 +2013,7,17,20,30,13,0.72,0.053000000000000005,0.67,0,0,0,1,13,0,0,0,0,0.264,100,92.35000000000001,0.13,991,2,95,0.8 +2013,7,17,21,30,15,0.73,0.0572,0.67,42,483,124,1,14,42,483,0,124,0.264,93.7,80.3,0.13,992,2,94,1.1 +2013,7,17,22,30,16.7,0.74,0.057800000000000004,0.67,64,697,310,1,14.8,64,697,0,310,0.263,88.49,69.33,0.13,992,2.1,87,1.4000000000000001 +2013,7,17,23,30,17.5,0.8300000000000001,0.0455,0.67,70,810,477,1,15.200000000000001,70,810,0,477,0.263,86.36,59.81,0.13,992,2.1,80,1.6 +2013,7,18,0,30,19,0.9,0.0422,0.67,74,857,594,1,15.100000000000001,74,857,0,594,0.262,78.17,52.6,0.13,991,2.2,68,1.7000000000000002 +2013,7,18,1,30,19.5,0.9,0.0425,0.67,77,873,652,8,15.100000000000001,327,34,0,349,0.261,75.79,48.74,0.13,991,2.3000000000000003,64,1.7000000000000002 +2013,7,18,2,30,19.6,0.89,0.0453,0.67,78,869,647,4,15,250,23,0,265,0.26,74.79,49.06,0.13,990,2.3000000000000003,62,1.7000000000000002 +2013,7,18,3,30,19.3,1.03,0.0505,0.67,77,842,578,8,14.8,361,187,0,472,0.26,75.31,53.46,0.13,990,2.3000000000000003,64,1.7000000000000002 +2013,7,18,4,30,18.900000000000002,1.03,0.0506,0.67,70,791,453,8,14.9,105,20,0,114,0.26,77.53,61.06,0.13,989,2.3000000000000003,67,1.6 +2013,7,18,5,30,18,0.99,0.045700000000000005,0.67,57,695,285,1,15.100000000000001,57,695,0,285,0.259,83.37,70.84,0.13,989,2.3000000000000003,71,1.2000000000000002 +2013,7,18,6,30,16.5,0.96,0.0446,0.67,35,459,99,1,15.5,35,459,0,99,0.258,93.59,81.96000000000001,0.13,989,2.2,76,0.8 +2013,7,18,7,30,15.200000000000001,0.9400000000000001,0.040600000000000004,0.67,0,0,0,0,14.9,0,0,0,0,0.258,98.04,94.13,0.13,990,2.2,78,0.7000000000000001 +2013,7,18,8,30,14.5,0.9,0.039900000000000005,0.67,0,0,0,0,14.5,0,0,0,0,0.258,100,106.77,0.13,990,2.1,78,0.7000000000000001 +2013,7,18,9,30,14.100000000000001,0.87,0.0424,0.67,0,0,0,1,14.100000000000001,0,0,0,0,0.258,100,119.76,0.13,990,2.1,77,0.7000000000000001 +2013,7,18,10,30,14,0.86,0.0442,0.67,0,0,0,3,14,0,0,0,0,0.257,100,132.98,0.13,990,2,75,0.8 +2013,7,18,11,30,14,0.8300000000000001,0.044000000000000004,0.67,0,0,0,8,14,0,0,0,0,0.257,100,146.3,0.13,990,2,73,0.8 +2013,7,18,12,30,14,0.85,0.0465,0.67,0,0,0,1,14,0,0,0,0,0.257,100,159.48,0.13,990,1.9000000000000001,70,0.8 +2013,7,18,13,30,14,0.86,0.0449,0.67,0,0,0,1,14,0,0,0,0,0.257,100,171.32,0.13,990,1.9000000000000001,68,0.8 +2013,7,18,14,30,13.9,0.84,0.0414,0.67,0,0,0,3,13.9,0,0,0,0,0.256,100,169.86,0.13,989,1.9000000000000001,67,0.8 +2013,7,18,15,30,13.9,0.86,0.0437,0.67,0,0,0,4,13.9,0,0,0,0,0.256,100,157.57,0.13,989,1.9000000000000001,69,0.7000000000000001 +2013,7,18,16,30,13.8,0.88,0.0438,0.67,0,0,0,4,13.8,0,0,0,0,0.255,100,144.34,0.13,988,2,72,0.7000000000000001 +2013,7,18,17,30,13.9,0.87,0.0412,0.67,0,0,0,8,13.9,0,0,0,0,0.255,100,131.02,0.13,988,2,74,0.7000000000000001 +2013,7,18,18,30,13.9,0.93,0.045000000000000005,0.67,0,0,0,4,13.9,0,0,0,0,0.254,100,117.82000000000001,0.13,988,2,70,0.6000000000000001 +2013,7,18,19,30,13.8,0.9500000000000001,0.045000000000000005,0.67,0,0,0,4,13.8,0,0,0,0,0.254,100,104.86,0.13,989,2.1,61,0.6000000000000001 +2013,7,18,20,30,14.200000000000001,0.93,0.041,0.67,0,0,0,4,14.200000000000001,0,0,0,0,0.253,99.93,92.28,0.13,989,2.1,53,0.6000000000000001 +2013,7,18,21,30,15.4,0.9500000000000001,0.042100000000000005,0.67,39,521,128,3,14.700000000000001,36,0,3,36,0.253,95.53,80.21000000000001,0.13,989,2.1,48,0.8 +2013,7,18,22,30,16.900000000000002,0.97,0.0408,0.67,57,729,316,1,15.5,57,729,0,316,0.253,91.62,69.22,0.13,989,2.1,41,1.1 +2013,7,18,23,30,17.6,0.97,0.037700000000000004,0.67,66,822,481,1,16.1,66,822,0,481,0.253,90.9,59.68,0.13,989,2.1,36,1.3 +2013,7,19,0,30,19.3,0.7000000000000001,0.06670000000000001,0.67,86,830,592,1,16.1,86,830,0,592,0.253,81.83,52.44,0.13,988,2.2,30,1.7000000000000002 +2013,7,19,1,30,20.1,0.73,0.0658,0.67,89,849,651,3,16.1,261,23,0,277,0.253,77.65,48.57,0.13,987,2.3000000000000003,29,1.8 +2013,7,19,2,30,20.400000000000002,0.74,0.06380000000000001,0.67,88,847,645,1,15.9,88,847,0,645,0.254,75.31,48.88,0.13,986,2.4000000000000004,31,1.8 +2013,7,19,3,30,20.3,0.77,0.07050000000000001,0.67,87,815,574,3,15.9,150,24,0,164,0.254,76.05,53.29,0.13,985,2.5,36,1.7000000000000002 +2013,7,19,4,30,19.900000000000002,0.77,0.0702,0.67,79,759,448,3,16.1,103,20,0,112,0.253,78.55,60.92,0.13,984,2.6,45,1.6 +2013,7,19,5,30,18.900000000000002,0.74,0.0666,0.67,64,652,279,3,16.400000000000002,120,23,0,128,0.253,85.39,70.71000000000001,0.13,984,2.7,53,1.2000000000000002 +2013,7,19,6,30,17.400000000000002,0.74,0.0727,0.67,40,389,95,3,16.900000000000002,37,0,3,37,0.253,96.59,81.85000000000001,0.13,985,2.7,58,0.8 +2013,7,19,7,30,16.3,0.71,0.07350000000000001,0.67,0,0,0,3,16.3,0,0,0,0,0.253,100,94.03,0.13,985,2.7,57,0.7000000000000001 +2013,7,19,8,30,15.9,0.65,0.07,0.67,0,0,0,3,15.9,0,0,0,0,0.253,100,106.68,0.13,986,2.7,51,0.7000000000000001 +2013,7,19,9,30,15.600000000000001,0.64,0.06810000000000001,0.67,0,0,0,3,15.600000000000001,0,0,0,0,0.252,100,119.69,0.13,986,2.7,42,0.7000000000000001 +2013,7,19,10,30,15.4,0.63,0.0649,0.67,0,0,0,1,15.4,0,0,0,0,0.252,100,132.91,0.13,986,2.7,33,0.7000000000000001 +2013,7,19,11,30,15.200000000000001,0.62,0.0606,0.67,0,0,0,0,15.200000000000001,0,0,0,0,0.253,100,146.22,0.13,985,2.7,26,0.7000000000000001 +2013,7,19,12,30,15,0.63,0.0604,0.67,0,0,0,1,15,0,0,0,0,0.253,100,159.39000000000001,0.13,985,2.7,20,0.8 +2013,7,19,13,30,14.8,0.64,0.0584,0.67,0,0,0,1,14.8,0,0,0,0,0.252,100,171.17000000000002,0.13,984,2.6,15,0.8 +2013,7,19,14,30,14.600000000000001,0.64,0.054900000000000004,0.67,0,0,0,0,14.600000000000001,0,0,0,0,0.252,100,169.75,0.13,984,2.6,11,0.8 +2013,7,19,15,30,14.5,0.68,0.054400000000000004,0.67,0,0,0,1,14.5,0,0,0,0,0.252,100,157.52,0.13,983,2.6,6,0.8 +2013,7,19,16,30,14.3,0.7000000000000001,0.0534,0.67,0,0,0,4,14.3,0,0,0,0,0.252,100,144.29,0.13,982,2.5,180,0.8 +2013,7,19,17,30,14.100000000000001,0.73,0.051000000000000004,0.67,0,0,0,3,14.100000000000001,0,0,0,0,0.251,100,130.98,0.13,982,2.5,355,0.8 +2013,7,19,18,30,14,0.78,0.0506,0.67,0,0,0,4,14,0,0,0,0,0.251,100,117.77,0.13,982,2.5,350,0.8 +2013,7,19,19,30,13.9,0.85,0.050300000000000004,0.67,0,0,0,4,13.9,0,0,0,0,0.252,100,104.8,0.13,982,2.5,345,0.8 +2013,7,19,20,30,14.600000000000001,0.9,0.049300000000000004,0.67,0,0,0,4,14.200000000000001,0,0,0,0,0.252,97.64,92.2,0.13,982,2.5,340,1 +2013,7,19,21,30,16,0.96,0.0517,0.67,41,494,125,4,15.5,47,0,3,47,0.252,96.61,80.12,0.13,983,2.6,337,1.4000000000000001 +2013,7,19,22,30,17.400000000000002,1,0.052700000000000004,0.67,61,702,311,4,16.5,130,23,0,138,0.252,94.46000000000001,69.11,0.13,983,2.6,333,2 +2013,7,19,23,30,18.1,1.01,0.0519,0.67,72,793,474,4,17.3,153,22,0,164,0.252,94.79,59.54,0.13,983,2.7,330,2.2 +2013,7,20,0,30,20,0.76,0.0707,0.67,87,813,585,3,17.1,376,180,0,486,0.252,83.5,52.28,0.13,981,2.9000000000000004,316,2.5 +2013,7,20,1,30,20.400000000000002,0.76,0.0785,0.67,94,824,641,4,16.6,66,10,0,73,0.251,78.95,48.39,0.13,981,3,298,2.3000000000000003 +2013,7,20,2,30,19.900000000000002,0.77,0.09330000000000001,0.67,100,804,631,4,16.3,60,7,0,65,0.25,79.78,48.69,0.13,980,3.2,275,2.2 +2013,7,20,3,30,19,0.8200000000000001,0.1019,0.67,99,772,562,4,16.2,136,24,0,150,0.249,83.83,53.120000000000005,0.13,980,3.2,255,2 +2013,7,20,4,30,18.1,0.85,0.109,0.67,92,708,438,4,15.9,135,22,0,146,0.249,87.26,60.76,0.13,980,3.1,248,1.6 +2013,7,20,5,30,17.2,0.86,0.0998,0.67,73,609,276,4,15.700000000000001,129,27,0,139,0.249,91.07000000000001,70.58,0.13,980,2.8000000000000003,257,1 +2013,7,20,6,30,15.9,0.87,0.0913,0.67,42,369,95,4,15.700000000000001,41,0,3,41,0.25,98.89,81.74,0.13,981,2.6,270,0.6000000000000001 +2013,7,20,7,30,14.600000000000001,0.85,0.08460000000000001,0.67,0,0,0,3,14.600000000000001,0,0,0,0,0.25,100,93.94,0.13,981,2.4000000000000004,273,0.7000000000000001 +2013,7,20,8,30,13.8,0.8200000000000001,0.0858,0.67,0,0,0,1,13.8,0,0,0,0,0.25,100,106.59,0.13,982,2.3000000000000003,270,0.7000000000000001 +2013,7,20,9,30,13.200000000000001,0.77,0.09140000000000001,0.67,0,0,0,1,13.200000000000001,0,0,0,0,0.25,100,119.61,0.13,982,2.2,270,0.7000000000000001 +2013,7,20,10,30,12.700000000000001,0.7000000000000001,0.0989,0.67,0,0,0,4,12.700000000000001,0,0,0,0,0.249,100,132.84,0.13,983,2.1,269,0.7000000000000001 +2013,7,20,11,30,12.200000000000001,0.64,0.10350000000000001,0.67,0,0,0,1,12.200000000000001,0,0,0,0,0.249,100,146.15,0.13,983,1.9000000000000001,266,0.7000000000000001 +2013,7,20,12,30,11.8,0.61,0.1019,0.67,0,0,0,1,11.8,0,0,0,0,0.248,100,159.31,0.13,983,1.8,263,0.7000000000000001 +2013,7,20,13,30,11.3,0.6,0.0945,0.67,0,0,0,1,11.3,0,0,0,0,0.248,100,171.02,0.13,983,1.7000000000000002,261,0.7000000000000001 +2013,7,20,14,30,10.8,0.62,0.0845,0.67,0,0,0,1,10.8,0,0,0,0,0.248,100,169.64000000000001,0.13,983,1.6,258,0.8 +2013,7,20,15,30,10.200000000000001,0.64,0.0755,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.249,100,157.46,0.13,983,1.5,255,0.8 +2013,7,20,16,30,9.700000000000001,0.65,0.0687,0.67,0,0,0,3,9.700000000000001,0,0,0,0,0.25,100,144.25,0.13,983,1.4000000000000001,253,0.8 +2013,7,20,17,30,9.200000000000001,0.65,0.06430000000000001,0.67,0,0,0,1,9.1,0,0,0,0,0.251,99.05,130.93,0.13,983,1.4000000000000001,250,0.8 +2013,7,20,18,30,8.8,0.65,0.062,0.67,0,0,0,1,8.3,0,0,0,0,0.252,96.97,117.72,0.13,983,1.3,249,0.8 +2013,7,20,19,30,8.5,0.64,0.0608,0.67,0,0,0,1,7.7,0,0,0,0,0.252,94.63,104.73,0.13,984,1.3,249,0.8 +2013,7,20,20,30,9,0.63,0.0608,0.67,0,0,0,1,7.2,0,0,0,0,0.251,88.26,92.13,0.13,985,1.4000000000000001,252,0.9 +2013,7,20,21,30,10.700000000000001,0.62,0.0618,0.67,44,494,130,1,7.9,44,494,0,130,0.25,82.92,80.03,0.13,986,1.4000000000000001,255,1 +2013,7,20,22,30,12.9,0.62,0.0621,0.67,66,710,321,1,8.5,66,710,0,321,0.249,74.81,68.99,0.13,986,1.5,248,1.3 +2013,7,20,23,30,14.200000000000001,0.62,0.062400000000000004,0.67,78,807,489,1,8.1,78,807,0,489,0.249,66.9,59.4,0.13,986,1.5,240,1.5 +2013,7,21,0,30,16.7,0.64,0.0551,0.67,82,860,610,1,7.800000000000001,82,860,0,610,0.248,55.52,52.11,0.13,985,1.6,257,1.7000000000000002 +2013,7,21,1,30,18,0.65,0.056900000000000006,0.67,86,878,671,1,8.1,86,878,0,671,0.248,52.35,48.2,0.13,985,1.6,265,1.8 +2013,7,21,2,30,18.8,0.66,0.057800000000000004,0.67,86,876,666,0,8.700000000000001,86,876,0,666,0.248,51.76,48.5,0.13,984,1.6,269,1.7000000000000002 +2013,7,21,3,30,19.200000000000003,0.7000000000000001,0.049300000000000004,0.67,78,863,599,1,9,78,863,0,599,0.247,51.7,52.94,0.13,983,1.6,271,1.6 +2013,7,21,4,30,19.1,0.67,0.0558,0.67,74,804,469,1,9,74,804,0,469,0.247,52.08,60.61,0.13,983,1.6,271,1.3 +2013,7,21,5,30,18.2,0.64,0.0587,0.67,63,697,296,1,9.4,63,697,0,296,0.247,56.34,70.44,0.13,984,1.5,273,0.8 +2013,7,21,6,30,16.5,0.61,0.0603,0.67,40,443,105,1,10.600000000000001,40,443,0,105,0.247,68.19,81.62,0.13,984,1.5,269,0.5 +2013,7,21,7,30,15,0.6,0.063,0.67,0,0,0,3,9.5,0,0,0,0,0.246,69.47,93.84,0.13,985,1.4000000000000001,253,0.5 +2013,7,21,8,30,14.100000000000001,0.59,0.0646,0.67,0,0,0,3,9.1,0,0,0,0,0.245,72.11,106.51,0.13,986,1.4000000000000001,235,0.5 +2013,7,21,9,30,13.3,0.58,0.065,0.67,0,0,0,1,8.9,0,0,0,0,0.245,74.66,119.53,0.13,986,1.4000000000000001,225,0.6000000000000001 +2013,7,21,10,30,12.4,0.59,0.0644,0.67,0,0,0,3,8.3,0,0,0,0,0.244,75.85000000000001,132.77,0.13,987,1.4000000000000001,219,0.7000000000000001 +2013,7,21,11,30,11.5,0.61,0.0625,0.67,0,0,0,3,7.800000000000001,0,0,0,0,0.245,77.89,146.08,0.13,987,1.4000000000000001,214,0.7000000000000001 +2013,7,21,12,30,10.9,0.65,0.0609,0.67,0,0,0,8,7.300000000000001,0,0,0,0,0.245,78.65,159.22,0.13,987,1.4000000000000001,210,0.7000000000000001 +2013,7,21,13,30,10.4,0.68,0.061200000000000004,0.67,0,0,0,4,7,0,0,0,0,0.245,79.25,170.87,0.13,987,1.4000000000000001,206,0.7000000000000001 +2013,7,21,14,30,10.200000000000001,0.6900000000000001,0.0627,0.67,0,0,0,1,6.6000000000000005,0,0,0,0,0.244,78.17,169.51,0.13,987,1.5,205,0.6000000000000001 +2013,7,21,15,30,10,0.68,0.0665,0.67,0,0,0,8,6.2,0,0,0,0,0.244,77.48,157.39000000000001,0.13,987,1.6,210,0.6000000000000001 +2013,7,21,16,30,9.9,0.66,0.07150000000000001,0.67,0,0,0,4,6.300000000000001,0,0,0,0,0.244,78.08,144.19,0.13,986,1.6,216,0.7000000000000001 +2013,7,21,17,30,9.8,0.63,0.0784,0.67,0,0,0,3,6.1000000000000005,0,0,0,0,0.244,77.89,130.88,0.13,987,1.7000000000000002,220,0.7000000000000001 +2013,7,21,18,30,9.8,0.62,0.0838,0.67,0,0,0,7,5.9,0,0,0,0,0.245,76.7,117.66,0.13,987,1.7000000000000002,222,0.7000000000000001 +2013,7,21,19,30,9.700000000000001,0.64,0.085,0.67,0,0,0,4,5.7,0,0,0,0,0.245,76.09,104.66,0.13,988,1.7000000000000002,225,0.7000000000000001 +2013,7,21,20,30,10.200000000000001,0.66,0.0839,0.67,0,0,0,7,5.6000000000000005,0,0,0,0,0.245,72.96000000000001,92.04,0.13,988,1.8,226,0.7000000000000001 +2013,7,21,21,30,11.4,0.6900000000000001,0.0833,0.67,49,446,127,7,6.5,66,31,3,72,0.245,71.96000000000001,79.92,0.13,989,1.9000000000000001,226,0.8 +2013,7,21,22,30,12.700000000000001,0.7000000000000001,0.0839,0.67,73,668,314,8,5.7,171,60,0,193,0.246,62.61,68.87,0.13,989,2,230,0.9 +2013,7,21,23,30,13.3,0.71,0.08650000000000001,0.67,88,766,480,4,5.7,198,24,0,211,0.246,60.03,59.25,0.13,989,2,234,0.8 +2013,7,22,0,30,15.8,0.66,0.11720000000000001,0.67,109,782,591,8,6.6000000000000005,290,31,0,309,0.246,54.46,51.94,0.13,989,2.1,260,0.8 +2013,7,22,1,30,17.3,0.67,0.1188,0.67,114,801,650,4,6.9,128,24,0,145,0.246,50.54,48.01,0.13,988,2.2,278,1 +2013,7,22,2,30,18.2,0.68,0.12250000000000001,0.67,115,794,643,8,7.7,75,14,0,84,0.247,50.27,48.31,0.13,987,2.3000000000000003,292,1.1 +2013,7,22,3,30,18.400000000000002,0.71,0.1125,0.67,106,778,576,8,8.700000000000001,105,22,0,119,0.248,53.25,52.76,0.13,987,2.3000000000000003,297,1.2000000000000002 +2013,7,22,4,30,18.1,0.71,0.1121,0.67,96,717,449,8,9.700000000000001,84,17,0,92,0.248,57.82,60.45,0.13,987,2.4000000000000004,296,1 +2013,7,22,5,30,17.1,0.6900000000000001,0.11670000000000001,0.67,80,590,279,7,10.9,75,12,0,80,0.249,66.96000000000001,70.31,0.13,987,2.5,291,0.7000000000000001 +2013,7,22,6,30,15.600000000000001,0.65,0.129,0.67,49,306,95,8,12.200000000000001,27,0,3,27,0.25,80.25,81.51,0.13,987,2.6,281,0.6000000000000001 +2013,7,22,7,30,14.4,0.63,0.1381,0.67,0,0,0,8,10.9,0,0,0,0,0.251,79.48,93.74,0.13,988,2.6,265,0.6000000000000001 +2013,7,22,8,30,13.600000000000001,0.63,0.1358,0.67,0,0,0,7,10.5,0,0,0,0,0.252,81.29,106.42,0.13,988,2.6,250,0.6000000000000001 +2013,7,22,9,30,12.700000000000001,0.65,0.129,0.67,0,0,0,8,10.4,0,0,0,0,0.252,85.71000000000001,119.45,0.13,989,2.5,241,0.7000000000000001 +2013,7,22,10,30,12,0.67,0.1227,0.67,0,0,0,7,10.3,0,0,0,0,0.252,89.14,132.69,0.13,989,2.5,237,0.6000000000000001 +2013,7,22,11,30,11.5,0.68,0.1218,0.67,0,0,0,8,10,0,0,0,0,0.252,90.27,146.01,0.13,989,2.5,237,0.6000000000000001 +2013,7,22,12,30,11.100000000000001,0.6900000000000001,0.1262,0.67,0,0,0,7,9.600000000000001,0,0,0,0,0.252,90.56,159.13,0.13,989,2.5,240,0.6000000000000001 +2013,7,22,13,30,10.8,0.71,0.1288,0.67,0,0,0,7,9.3,0,0,0,0,0.252,90.66,170.71,0.13,989,2.5,246,0.6000000000000001 +2013,7,22,14,30,10.4,0.71,0.1295,0.67,0,0,0,7,9.1,0,0,0,0,0.252,91.46000000000001,169.38,0.13,989,2.5,256,0.6000000000000001 +2013,7,22,15,30,10,0.7000000000000001,0.12810000000000002,0.67,0,0,0,8,8.8,0,0,0,0,0.252,92.36,157.32,0.13,989,2.5,265,0.6000000000000001 +2013,7,22,16,30,9.700000000000001,0.7000000000000001,0.12300000000000001,0.67,0,0,0,7,8.6,0,0,0,0,0.252,92.85000000000001,144.14000000000001,0.13,988,2.4000000000000004,268,0.6000000000000001 +2013,7,22,17,30,9.3,0.71,0.11510000000000001,0.67,0,0,0,7,8.3,0,0,0,0,0.252,93.71000000000001,130.82,0.13,988,2.2,265,0.6000000000000001 +2013,7,22,18,30,8.9,0.71,0.1033,0.67,0,0,0,7,8,0,0,0,0,0.253,93.91,117.59,0.13,989,2.1,257,0.6000000000000001 +2013,7,22,19,30,8.5,0.71,0.0897,0.67,0,0,0,4,7.5,0,0,0,0,0.254,93.26,104.59,0.13,989,1.8,250,0.7000000000000001 +2013,7,22,20,30,8.700000000000001,0.71,0.078,0.67,0,0,0,8,7,0,0,0,0,0.256,89.03,91.95,0.13,990,1.6,249,0.9 +2013,7,22,21,30,9.9,0.71,0.0694,0.67,46,491,133,8,7.2,35,0,3,35,0.258,83.39,79.82000000000001,0.13,990,1.3,248,1.3 +2013,7,22,22,30,11.700000000000001,0.6900000000000001,0.0616,0.67,66,728,330,2,7.4,189,193,0,259,0.259,74.93,68.74,0.13,990,1.1,237,1.7000000000000002 +2013,7,22,23,30,12.8,0.6900000000000001,0.0545,0.67,75,837,505,1,6.7,75,837,0,505,0.259,66.49,59.1,0.13,990,1,229,1.9000000000000001 +2013,7,23,0,30,15,0.6900000000000001,0.050800000000000005,0.67,81,895,635,1,5.6000000000000005,81,895,0,635,0.261,53.28,51.76,0.14,989,0.8,235,2.1 +2013,7,23,1,30,15.9,0.71,0.045700000000000005,0.67,81,925,702,1,4.7,81,925,1,702,0.261,47.37,47.81,0.14,988,0.7000000000000001,239,2.2 +2013,7,23,2,30,16.5,0.74,0.0414,0.67,78,929,699,1,4.3,78,929,0,699,0.262,44.2,48.11,0.14,987,0.7000000000000001,241,2.3000000000000003 +2013,7,23,3,30,16.6,0.78,0.0368,0.67,73,914,628,0,3.9000000000000004,73,914,0,628,0.262,42.82,52.58,0.14,987,0.7000000000000001,242,2.4000000000000004 +2013,7,23,4,30,16.3,0.81,0.0345,0.67,66,871,497,1,3.5,66,871,0,497,0.262,42.480000000000004,60.29,0.14,986,0.7000000000000001,242,2.2 +2013,7,23,5,30,15.100000000000001,0.84,0.0322,0.67,54,780,319,1,3.5,54,780,0,319,0.262,45.910000000000004,70.17,0.14,987,0.7000000000000001,243,1.7000000000000002 +2013,7,23,6,30,12.9,0.81,0.033100000000000004,0.67,35,551,118,1,4.7,35,551,0,118,0.263,57.300000000000004,81.39,0.14,987,0.7000000000000001,246,1.1 +2013,7,23,7,30,11.100000000000001,0.8200000000000001,0.0324,0.67,0,0,0,1,3.7,0,0,0,0,0.265,60.31,93.63,0.14,988,0.7000000000000001,248,1 +2013,7,23,8,30,10.100000000000001,0.84,0.0317,0.67,0,0,0,1,3.3000000000000003,0,0,0,0,0.267,62.6,106.33,0.14,989,0.7000000000000001,250,1 +2013,7,23,9,30,9.200000000000001,0.89,0.0303,0.67,0,0,0,1,3.1,0,0,0,0,0.269,65.75,119.37,0.14,989,0.7000000000000001,252,1 +2013,7,23,10,30,8.4,0.98,0.0284,0.67,0,0,0,1,3.1,0,0,0,0,0.271,69.41,132.62,0.14,989,0.7000000000000001,251,1 +2013,7,23,11,30,7.7,1.08,0.0275,0.67,0,0,0,0,3.1,0,0,0,0,0.272,72.85000000000001,145.93,0.14,989,0.7000000000000001,248,1 +2013,7,23,12,30,7.1000000000000005,1.18,0.027700000000000002,0.67,0,0,0,1,3.2,0,0,0,0,0.273,76.08,159.04,0.14,989,0.7000000000000001,245,1 +2013,7,23,13,30,6.5,1.24,0.028200000000000003,0.67,0,0,0,1,3.2,0,0,0,0,0.274,79.51,170.54,0.14,989,0.7000000000000001,244,1 +2013,7,23,14,30,6,1.29,0.0286,0.67,0,0,0,0,3.3000000000000003,0,0,0,0,0.275,82.7,169.24,0.14,989,0.8,242,1 +2013,7,23,15,30,5.6000000000000005,1.33,0.0284,0.67,0,0,0,0,3.4000000000000004,0,0,0,0,0.277,85.77,157.25,0.14,989,0.8,241,0.9 +2013,7,23,16,30,5.2,1.37,0.027200000000000002,0.67,0,0,0,0,3.5,0,0,0,0,0.278,88.93,144.08,0.14,988,0.8,241,0.9 +2013,7,23,17,30,4.800000000000001,1.43,0.0253,0.67,0,0,0,0,3.6,0,0,0,0,0.278,92.19,130.76,0.14,988,0.8,242,0.9 +2013,7,23,18,30,4.4,1.46,0.0236,0.67,0,0,0,0,3.7,0,0,0,0,0.279,95.26,117.52,0.14,989,0.7000000000000001,240,0.9 +2013,7,23,19,30,4.1000000000000005,1.48,0.0228,0.67,0,0,0,1,3.7,0,0,0,0,0.279,97.31,104.51,0.14,989,0.7000000000000001,236,0.9 +2013,7,23,20,30,5,1.49,0.023100000000000002,0.67,0,0,0,0,3.7,0,0,0,0,0.278,91.35000000000001,91.86,0.14,990,0.7000000000000001,233,1 +2013,7,23,21,30,7.4,1.49,0.0236,0.67,36,630,148,1,4.1000000000000005,36,630,0,148,0.278,79.32000000000001,79.71000000000001,0.14,991,0.7000000000000001,229,1.2000000000000002 +2013,7,23,22,30,10.4,1.5,0.0241,0.67,51,809,346,1,4,51,809,0,346,0.279,64.75,68.61,0.14,991,0.8,199,1.5 +2013,7,23,23,30,12.100000000000001,1.51,0.025,0.67,60,889,519,1,4.6000000000000005,60,889,0,519,0.279,59.97,58.94,0.14,991,0.8,173,1.8 +2013,7,24,0,30,15,1.44,0.0263,0.67,66,919,637,1,5.300000000000001,66,919,0,637,0.279,52.38,51.57,0.14,990,1,160,2 +2013,7,24,1,30,16.1,1.42,0.0274,0.67,69,931,697,1,5.9,69,931,0,697,0.279,50.82,47.61,0.14,989,1.1,159,2 +2013,7,24,2,30,16.8,1.33,0.0298,0.67,71,920,687,1,6.6000000000000005,71,920,0,687,0.279,51.050000000000004,47.9,0.14,989,1.3,157,2 +2013,7,24,3,30,17.2,1.1,0.0346,0.67,71,890,614,1,7.300000000000001,71,890,0,614,0.279,52.27,52.39,0.14,988,1.4000000000000001,154,1.9000000000000001 +2013,7,24,4,30,17.1,0.99,0.037200000000000004,0.67,66,837,483,1,7.9,66,837,0,483,0.278,54.82,60.13,0.14,988,1.5,150,1.8 +2013,7,24,5,30,16.1,0.91,0.038900000000000004,0.67,56,734,307,1,8.5,56,734,0,307,0.278,60.89,70.03,0.14,988,1.6,144,1.3 +2013,7,24,6,30,14.100000000000001,0.88,0.0405,0.67,37,504,113,1,10,37,504,0,113,0.278,76.38,81.27,0.14,989,1.6,135,0.9 +2013,7,24,7,30,12.5,0.87,0.0427,0.67,0,0,0,1,9.3,0,0,0,0,0.279,80.75,93.53,0.14,990,1.6,130,0.9 +2013,7,24,8,30,11.8,0.86,0.0459,0.67,0,0,0,1,9.200000000000001,0,0,0,0,0.279,84.19,106.24000000000001,0.14,991,1.6,131,0.9 +2013,7,24,9,30,11.4,0.85,0.0507,0.67,0,0,0,1,9.200000000000001,0,0,0,0,0.28,86.61,119.29,0.14,992,1.6,135,0.9 +2013,7,24,10,30,11.100000000000001,0.81,0.056600000000000004,0.67,0,0,0,1,9.3,0,0,0,0,0.278,88.9,132.55,0.14,992,1.6,142,0.9 +2013,7,24,11,30,10.8,0.74,0.0653,0.67,0,0,0,1,9.4,0,0,0,0,0.275,90.84,145.86,0.14,992,1.6,152,1 +2013,7,24,12,30,10.600000000000001,0.64,0.0771,0.67,0,0,0,1,9.200000000000001,0,0,0,0,0.273,91.23,158.95000000000002,0.14,992,1.6,166,1 +2013,7,24,13,30,10.200000000000001,0.54,0.08950000000000001,0.67,0,0,0,1,9,0,0,0,0,0.272,92.57000000000001,170.37,0.14,992,1.5,179,1.1 +2013,7,24,14,30,9.5,0.45,0.10070000000000001,0.67,0,0,0,0,8.9,0,0,0,0,0.271,95.91,169.1,0.14,992,1.5,187,1.1 +2013,7,24,15,30,8.9,0.39,0.1081,0.67,0,0,0,1,8.700000000000001,0,0,0,0,0.27,98.65,157.17000000000002,0.14,992,1.5,189,1.1 +2013,7,24,16,30,8.700000000000001,0.34,0.11180000000000001,0.67,0,0,0,1,8.6,0,0,0,0,0.268,99,144.01,0.14,992,1.5,189,1 +2013,7,24,17,30,8.6,0.32,0.1091,0.67,0,0,0,3,8.5,0,0,0,0,0.267,99.08,130.69,0.14,992,1.5,192,1 +2013,7,24,18,30,8.3,0.31,0.10300000000000001,0.67,0,0,0,3,8.3,0,0,0,0,0.267,100,117.45,0.14,993,1.5,195,1 +2013,7,24,19,30,8,0.31,0.09820000000000001,0.67,0,0,0,1,8,0,0,0,0,0.268,100,104.42,0.14,993,1.5,196,0.9 +2013,7,24,20,30,9,0.31,0.092,0.67,0,0,0,3,8.5,0,0,0,0,0.268,96.60000000000001,91.76,0.14,994,1.5,196,1.1 +2013,7,24,21,30,11.3,0.32,0.0858,0.67,53,440,132,1,8.9,53,440,0,132,0.269,85.25,79.59,0.14,994,1.5,189,1.5 +2013,7,24,22,30,13.9,0.32,0.07980000000000001,0.67,76,679,326,1,9.5,76,679,0,326,0.271,74.82000000000001,68.47,0.14,994,1.5,169,2 +2013,7,24,23,30,15.3,0.32,0.0779,0.67,89,783,496,1,10.4,89,783,0,496,0.272,72.71000000000001,58.77,0.14,994,1.5,157,2.4000000000000004 +2013,7,25,0,30,17.400000000000002,0.48,0.0572,0.67,85,858,621,1,11,85,858,0,621,0.273,66.22,51.38,0.13,993,1.6,142,2.5 +2013,7,25,1,30,18,0.5,0.054200000000000005,0.67,86,881,683,1,11.3,86,881,0,683,0.273,64.92,47.4,0.13,992,1.6,137,2.4000000000000004 +2013,7,25,2,30,18.3,0.53,0.051300000000000005,0.67,85,883,679,1,11.4,85,883,0,679,0.273,64.13,47.69,0.13,992,1.6,133,2.4000000000000004 +2013,7,25,3,30,18.2,0.44,0.065,0.67,88,841,604,1,11.4,88,841,0,604,0.273,64.64,52.2,0.13,991,1.7000000000000002,131,2.3000000000000003 +2013,7,25,4,30,17.7,0.48,0.0663,0.67,81,788,475,2,11.4,285,195,0,383,0.274,66.6,59.96,0.13,991,1.7000000000000002,130,2 +2013,7,25,5,30,16.7,0.5,0.0646,0.67,67,684,302,1,11.5,67,684,0,302,0.274,71.63,69.89,0.13,992,1.7000000000000002,130,1.4000000000000001 +2013,7,25,6,30,15.3,0.55,0.069,0.67,43,431,109,1,12.200000000000001,43,431,0,109,0.274,81.54,81.16,0.13,992,1.7000000000000002,134,0.9 +2013,7,25,7,30,14.100000000000001,0.56,0.0648,0.67,0,0,0,1,11.9,0,0,0,0,0.274,86.89,93.43,0.13,993,1.7000000000000002,139,0.7000000000000001 +2013,7,25,8,30,13.3,0.5700000000000001,0.0589,0.67,0,0,0,3,11.8,0,0,0,0,0.274,90.49,106.15,0.13,994,1.7000000000000002,145,0.7000000000000001 +2013,7,25,9,30,12.700000000000001,0.59,0.054700000000000006,0.67,0,0,0,3,11.600000000000001,0,0,0,0,0.274,93.06,119.22,0.13,995,1.6,150,0.7000000000000001 +2013,7,25,10,30,12,0.61,0.051500000000000004,0.67,0,0,0,1,11.4,0,0,0,0,0.274,96.10000000000001,132.47,0.13,995,1.6,154,0.7000000000000001 +2013,7,25,11,30,11.4,0.63,0.0495,0.67,0,0,0,1,11.200000000000001,0,0,0,0,0.272,98.64,145.78,0.13,995,1.6,159,0.7000000000000001 +2013,7,25,12,30,10.8,0.64,0.0489,0.67,0,0,0,1,10.8,0,0,0,0,0.271,100,158.86,0.13,994,1.5,164,0.7000000000000001 +2013,7,25,13,30,10.3,0.65,0.0495,0.67,0,0,0,0,10.3,0,0,0,0,0.271,100,170.20000000000002,0.13,994,1.5,170,0.8 +2013,7,25,14,30,9.8,0.64,0.050800000000000005,0.67,0,0,0,1,9.8,0,0,0,0,0.271,100,168.94,0.13,994,1.5,173,0.8 +2013,7,25,15,30,9.4,0.64,0.0526,0.67,0,0,0,1,9.4,0,0,0,0,0.27,100,157.08,0.13,993,1.5,175,0.8 +2013,7,25,16,30,9.1,0.63,0.0541,0.67,0,0,0,1,9.1,0,0,0,0,0.269,100,143.94,0.13,993,1.5,176,0.8 +2013,7,25,17,30,8.8,0.63,0.0543,0.67,0,0,0,3,8.8,0,0,0,0,0.269,100,130.62,0.13,993,1.5,178,0.9 +2013,7,25,18,30,8.5,0.64,0.053500000000000006,0.67,0,0,0,3,8.5,0,0,0,0,0.269,100,117.37,0.13,994,1.5,178,0.9 +2013,7,25,19,30,8.3,0.66,0.0521,0.67,0,0,0,3,8.3,0,0,0,0,0.269,100,104.34,0.13,994,1.5,177,0.9 +2013,7,25,20,30,9.200000000000001,0.67,0.0507,0.67,0,0,0,3,9.200000000000001,0,0,0,0,0.268,100,91.66,0.13,995,1.5,179,0.9 +2013,7,25,21,30,11.4,0.6900000000000001,0.050100000000000006,0.67,44,533,141,3,10,77,78,3,91,0.269,91.32000000000001,79.47,0.13,995,1.5,183,1 +2013,7,25,22,30,14.100000000000001,0.71,0.0497,0.67,63,738,336,8,11,193,151,0,248,0.27,81.74,68.33,0.13,995,1.5,163,1 +2013,7,25,23,30,15.600000000000001,0.72,0.049100000000000005,0.67,74,830,506,3,11.8,299,162,0,383,0.27,78.05,58.6,0.13,995,1.5,141,1 +2013,7,26,0,30,17.900000000000002,0.76,0.0473,0.67,79,874,627,1,11.9,79,874,0,627,0.27,67.86,51.18,0.13,994,1.6,116,1 +2013,7,26,1,30,18.6,0.8200000000000001,0.044500000000000005,0.67,80,896,689,1,11.8,80,896,0,689,0.27,64.62,47.18,0.13,993,1.6,108,1 +2013,7,26,2,30,19,0.87,0.045000000000000005,0.67,80,894,684,3,11.8,409,220,0,558,0.27,63.02,47.480000000000004,0.13,993,1.6,102,1 +2013,7,26,3,30,18.900000000000002,0.86,0.053700000000000005,0.67,81,861,611,1,11.8,81,861,0,611,0.269,63.480000000000004,52,0.13,992,1.7000000000000002,97,1.1 +2013,7,26,4,30,18.6,0.88,0.058100000000000006,0.67,76,806,481,1,11.8,76,806,0,481,0.268,64.61,59.79,0.13,992,1.7000000000000002,93,1 +2013,7,26,5,30,17.6,0.91,0.0567,0.67,63,708,308,1,12,63,708,0,308,0.267,69.72,69.75,0.13,992,1.7000000000000002,85,0.8 +2013,7,26,6,30,16,0.9500000000000001,0.0582,0.67,40,473,114,1,13.100000000000001,40,473,0,114,0.266,82.99,81.04,0.13,992,1.7000000000000002,74,0.6000000000000001 +2013,7,26,7,30,14.5,0.98,0.056400000000000006,0.67,0,0,0,0,12.600000000000001,0,0,0,0,0.265,88.22,93.33,0.13,993,1.7000000000000002,67,0.7000000000000001 +2013,7,26,8,30,13.600000000000001,0.99,0.0526,0.67,0,0,0,1,12.4,0,0,0,0,0.264,92.75,106.06,0.13,993,1.7000000000000002,64,0.7000000000000001 +2013,7,26,9,30,13.100000000000001,1,0.0506,0.67,0,0,0,1,12.4,0,0,0,0,0.263,95.77,119.14,0.13,994,1.7000000000000002,63,0.8 +2013,7,26,10,30,12.700000000000001,1,0.0502,0.67,0,0,0,0,12.4,0,0,0,0,0.262,97.8,132.4,0.13,994,1.7000000000000002,62,0.8 +2013,7,26,11,30,12.5,1,0.049800000000000004,0.67,0,0,0,0,12.3,0,0,0,0,0.262,98.44,145.70000000000002,0.13,994,1.6,62,0.8 +2013,7,26,12,30,12.5,1,0.049800000000000004,0.67,0,0,0,0,12.100000000000001,0,0,0,0,0.262,97.69,158.76,0.13,994,1.6,69,0.7000000000000001 +2013,7,26,13,30,12.5,1,0.049800000000000004,0.67,0,0,0,0,12,0,0,0,0,0.262,97.03,170.02,0.13,994,1.5,103,0.5 +2013,7,26,14,30,12,1.01,0.049100000000000005,0.67,0,0,0,0,11.9,0,0,0,0,0.262,99.17,168.78,0.13,993,1.5,145,0.6000000000000001 +2013,7,26,15,30,11.200000000000001,1.02,0.047900000000000005,0.67,0,0,0,0,11.200000000000001,0,0,0,0,0.262,100,156.99,0.13,993,1.4000000000000001,168,0.8 +2013,7,26,16,30,10.3,1.03,0.0463,0.67,0,0,0,0,10.3,0,0,0,0,0.262,100,143.86,0.13,993,1.3,178,0.9 +2013,7,26,17,30,9.5,1.03,0.044700000000000004,0.67,0,0,0,0,9.5,0,0,0,0,0.261,100,130.54,0.13,993,1.3,182,0.9 +2013,7,26,18,30,9,1.04,0.0429,0.67,0,0,0,1,9,0,0,0,0,0.261,100,117.29,0.13,993,1.3,180,0.9 +2013,7,26,19,30,8.700000000000001,1.05,0.0408,0.67,0,0,0,1,8.700000000000001,0,0,0,0,0.261,100,104.24000000000001,0.13,994,1.2000000000000002,177,0.9 +2013,7,26,20,30,9.8,1.06,0.039,0.67,0,0,0,3,9.8,0,0,0,0,0.261,100,91.55,0.13,995,1.2000000000000002,178,1 +2013,7,26,21,30,12.5,1.07,0.0374,0.67,40,582,148,1,11,40,582,0,148,0.261,90.45,79.35000000000001,0.13,995,1.2000000000000002,176,1.2000000000000002 +2013,7,26,22,30,15.3,1.09,0.0345,0.67,56,778,346,1,11.600000000000001,56,778,0,346,0.261,78.51,68.18,0.13,996,1.2000000000000002,153,1.3 +2013,7,26,23,30,16.7,1.1300000000000001,0.031,0.67,64,867,518,1,11.8,64,867,0,518,0.262,73.04,58.43,0.13,996,1.2000000000000002,133,1.4000000000000001 +2013,7,27,0,30,18.5,1.1500000000000001,0.0287,0.67,68,911,641,1,11.4,68,911,0,641,0.262,63.24,50.980000000000004,0.13,995,1.2000000000000002,111,1.8 +2013,7,27,1,30,19,1.1400000000000001,0.028,0.67,70,925,701,2,11,395,71,0,444,0.262,59.620000000000005,46.96,0.13,994,1.3,104,2 +2013,7,27,2,30,19.200000000000003,1.1,0.0287,0.67,70,923,697,1,10.8,70,923,0,697,0.262,58.4,47.26,0.13,994,1.3,101,2.1 +2013,7,27,3,30,19.1,0.76,0.0449,0.67,77,880,622,1,10.700000000000001,77,880,0,622,0.262,58.15,51.800000000000004,0.13,993,1.4000000000000001,100,2.1 +2013,7,27,4,30,18.7,0.78,0.0434,0.67,70,834,492,1,10.5,70,834,0,492,0.262,59.02,59.620000000000005,0.13,993,1.4000000000000001,100,2 +2013,7,27,5,30,17.7,0.8,0.0396,0.67,58,747,318,1,10.600000000000001,58,747,0,318,0.261,62.97,69.61,0.13,994,1.3,100,1.5 +2013,7,27,6,30,16.1,0.87,0.042300000000000004,0.67,38,520,120,3,11.4,51,6,3,52,0.261,73.46000000000001,80.92,0.13,994,1.3,100,1 +2013,7,27,7,30,14.700000000000001,0.91,0.0392,0.67,0,0,0,1,11.100000000000001,0,0,0,0,0.261,78.96000000000001,93.22,0.13,994,1.3,102,0.8 +2013,7,27,8,30,13.8,0.9,0.033600000000000005,0.67,0,0,0,0,10.8,0,0,0,0,0.26,81.93,105.97,0.13,995,1.2000000000000002,103,0.9 +2013,7,27,9,30,12.9,0.88,0.031200000000000002,0.67,0,0,0,1,10.5,0,0,0,0,0.26,85.14,119.06,0.13,995,1.2000000000000002,105,0.9 +2013,7,27,10,30,12.3,0.86,0.0303,0.67,0,0,0,0,10.4,0,0,0,0,0.26,87.95,132.32,0.13,995,1.2000000000000002,107,0.9 +2013,7,27,11,30,11.9,0.84,0.030100000000000002,0.67,0,0,0,0,10.3,0,0,0,0,0.259,90.23,145.63,0.13,995,1.2000000000000002,109,0.9 +2013,7,27,12,30,11.5,0.84,0.030500000000000003,0.67,0,0,0,1,10.3,0,0,0,0,0.259,92.59,158.66,0.13,995,1.2000000000000002,112,0.9 +2013,7,27,13,30,11.200000000000001,0.84,0.0307,0.67,0,0,0,0,10.3,0,0,0,0,0.258,94.43,169.83,0.13,995,1.2000000000000002,115,0.9 +2013,7,27,14,30,11,0.8300000000000001,0.0309,0.67,0,0,0,0,10.4,0,0,0,0,0.257,95.78,168.61,0.13,995,1.2000000000000002,117,0.9 +2013,7,27,15,30,10.9,0.8300000000000001,0.0313,0.67,0,0,0,0,10.4,0,0,0,0,0.257,96.74000000000001,156.89000000000001,0.13,994,1.2000000000000002,118,0.9 +2013,7,27,16,30,10.8,0.85,0.031200000000000002,0.67,0,0,0,3,10.600000000000001,0,0,0,0,0.257,98.37,143.78,0.13,994,1.2000000000000002,118,0.9 +2013,7,27,17,30,10.700000000000001,0.86,0.0302,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.257,100,130.46,0.13,994,1.3,118,0.9 +2013,7,27,18,30,10.600000000000001,0.88,0.029900000000000003,0.67,0,0,0,1,10.600000000000001,0,0,0,0,0.258,100,117.2,0.13,994,1.3,118,0.9 +2013,7,27,19,30,10.8,0.89,0.029400000000000003,0.67,0,0,0,1,10.8,0,0,0,0,0.259,100,104.15,0.13,995,1.3,120,0.9 +2013,7,27,20,30,12,0.88,0.029,0.67,0,0,0,1,11.3,0,0,0,0,0.259,95.33,91.44,0.13,996,1.4000000000000001,123,1 +2013,7,27,21,30,14.200000000000001,0.9,0.0298,0.67,39,592,149,3,11.9,39,0,3,39,0.259,85.89,79.22,0.13,996,1.4000000000000001,122,1.3 +2013,7,27,22,30,16.1,0.9,0.0302,0.67,55,775,345,3,12.3,103,17,0,109,0.26,78.29,68.02,0.13,996,1.5,111,1.9000000000000001 +2013,7,27,23,30,16.900000000000002,0.87,0.029900000000000003,0.67,64,858,516,1,12.3,64,858,0,516,0.259,74.42,58.25,0.13,996,1.5,104,2.2 +2013,7,28,0,30,18.2,0.49,0.0679,0.67,91,850,629,2,12.100000000000001,372,99,0,434,0.258,67.45,50.77,0.13,995,1.6,96,2.5 +2013,7,28,1,30,18.8,0.52,0.06420000000000001,0.67,92,874,691,3,12,420,131,0,510,0.258,64.48,46.730000000000004,0.13,994,1.6,94,2.6 +2013,7,28,2,30,19,0.52,0.0604,0.67,90,877,688,1,11.8,90,877,0,688,0.257,63.15,47.03,0.13,994,1.6,94,2.6 +2013,7,28,3,30,18.900000000000002,0.71,0.050300000000000004,0.67,80,866,618,3,11.700000000000001,346,65,0,386,0.256,63,51.6,0.13,993,1.7000000000000002,94,2.5 +2013,7,28,4,30,18.400000000000002,0.72,0.05,0.67,73,818,489,3,11.600000000000001,287,125,0,351,0.254,64.48,59.45,0.13,993,1.7000000000000002,94,2.2 +2013,7,28,5,30,17.5,0.66,0.0488,0.67,62,723,315,3,11.700000000000001,142,31,0,153,0.253,68.79,69.46000000000001,0.13,993,1.6,96,1.6 +2013,7,28,6,30,16.1,0.63,0.051500000000000004,0.67,41,487,119,3,12.3,48,1,3,48,0.253,78.41,80.8,0.13,993,1.6,99,1 +2013,7,28,7,30,14.9,0.6,0.0502,0.67,0,0,0,0,12.200000000000001,0,0,0,0,0.253,83.64,93.12,0.13,994,1.6,102,0.9 +2013,7,28,8,30,14.3,0.58,0.0485,0.67,0,0,0,1,12,0,0,0,0,0.253,85.78,105.88,0.13,994,1.5,104,0.9 +2013,7,28,9,30,13.8,0.56,0.049300000000000004,0.67,0,0,0,1,11.8,0,0,0,0,0.252,87.60000000000001,118.98,0.13,995,1.5,105,0.9 +2013,7,28,10,30,13.5,0.5700000000000001,0.0489,0.67,0,0,0,1,11.8,0,0,0,0,0.252,89.39,132.25,0.13,995,1.5,105,0.9 +2013,7,28,11,30,13.3,0.5700000000000001,0.0463,0.67,0,0,0,3,11.8,0,0,0,0,0.252,90.46000000000001,145.55,0.13,995,1.5,105,0.9 +2013,7,28,12,30,13.100000000000001,0.6,0.046400000000000004,0.67,0,0,0,3,11.8,0,0,0,0,0.251,91.56,158.56,0.13,994,1.5,105,0.8 +2013,7,28,13,30,12.9,0.59,0.0476,0.67,0,0,0,3,11.8,0,0,0,0,0.251,93.02,169.64000000000001,0.13,994,1.5,104,0.8 +2013,7,28,14,30,12.600000000000001,0.56,0.0472,0.67,0,0,0,3,11.8,0,0,0,0,0.251,95.18,168.43,0.13,993,1.5,104,0.8 +2013,7,28,15,30,12.4,0.5700000000000001,0.0499,0.67,0,0,0,1,11.9,0,0,0,0,0.251,97.02,156.79,0.13,993,1.5,102,0.8 +2013,7,28,16,30,12.4,0.56,0.055200000000000006,0.67,0,0,0,3,12.100000000000001,0,0,0,0,0.251,97.88,143.69,0.13,992,1.5,101,0.7000000000000001 +2013,7,28,17,30,12.3,0.53,0.057800000000000004,0.67,0,0,0,3,12.200000000000001,0,0,0,0,0.251,99.15,130.38,0.13,992,1.5,101,0.7000000000000001 +2013,7,28,18,30,12.100000000000001,0.54,0.058800000000000005,0.67,0,0,0,1,12.100000000000001,0,0,0,0,0.252,99.82000000000001,117.11,0.13,992,1.5,101,0.7000000000000001 +2013,7,28,19,30,12.100000000000001,0.53,0.0577,0.67,0,0,0,1,11.9,0,0,0,0,0.252,98.92,104.04,0.13,992,1.5,101,0.7000000000000001 +2013,7,28,20,30,12.9,0.52,0.0584,0.67,0,0,0,3,11.9,0,0,0,0,0.251,93.37,91.33,0.13,992,1.6,104,0.7000000000000001 +2013,7,28,21,30,14.200000000000001,0.53,0.0582,0.67,47,520,145,3,12.700000000000001,27,0,3,27,0.251,90.65,79.09,0.13,993,1.6,109,0.9 +2013,7,28,22,30,15.5,0.53,0.0601,0.67,68,723,341,3,13.3,69,12,0,74,0.251,86.87,67.87,0.13,993,1.6,104,1.1 +2013,7,28,23,30,16.2,0.58,0.0563,0.67,78,821,513,1,13.4,78,821,0,513,0.251,83.74,58.06,0.13,993,1.6,97,1.2000000000000002 +2013,7,29,0,30,17.900000000000002,0.51,0.0697,0.67,92,847,630,1,12.9,92,847,0,630,0.253,72.66,50.56,0.13,992,1.7000000000000002,84,1.6 +2013,7,29,1,30,18.400000000000002,0.58,0.0694,0.67,94,869,692,1,12.3,94,869,0,692,0.253,67.54,46.5,0.13,991,1.7000000000000002,82,1.6 +2013,7,29,2,30,18.6,0.58,0.06330000000000001,0.67,91,874,689,3,11.9,401,76,0,453,0.254,65.17,46.800000000000004,0.13,990,1.7000000000000002,86,1.5 +2013,7,29,3,30,18.400000000000002,0.61,0.0854,0.67,98,828,614,3,11.8,144,24,0,159,0.254,65.61,51.39,0.13,989,1.7000000000000002,92,1.3 +2013,7,29,4,30,17.900000000000002,0.64,0.08750000000000001,0.67,90,772,484,3,11.9,169,22,0,180,0.255,68.09,59.27,0.13,989,1.7000000000000002,100,1.2000000000000002 +2013,7,29,5,30,17.2,0.63,0.0829,0.67,73,667,309,4,12.200000000000001,166,59,0,187,0.256,72.57000000000001,69.31,0.13,989,1.8,106,0.9 +2013,7,29,6,30,15.8,0.65,0.0834,0.67,47,426,116,4,12.9,58,20,3,61,0.255,82.75,80.67,0.13,989,1.7000000000000002,111,0.7000000000000001 +2013,7,29,7,30,14.600000000000001,0.66,0.07780000000000001,0.67,0,0,0,3,12.5,0,0,0,0,0.255,87.22,93.02,0.13,990,1.7000000000000002,114,0.7000000000000001 +2013,7,29,8,30,13.9,0.66,0.07060000000000001,0.67,0,0,0,1,12.3,0,0,0,0,0.255,89.92,105.79,0.13,990,1.7000000000000002,113,0.7000000000000001 +2013,7,29,9,30,13.3,0.66,0.0637,0.67,0,0,0,1,12,0,0,0,0,0.255,91.99,118.9,0.13,990,1.7000000000000002,111,0.7000000000000001 +2013,7,29,10,30,12.8,0.66,0.057300000000000004,0.67,0,0,0,1,11.700000000000001,0,0,0,0,0.255,93.21000000000001,132.17000000000002,0.13,990,1.7000000000000002,111,0.8 +2013,7,29,11,30,12.3,0.67,0.0526,0.67,0,0,0,1,11.5,0,0,0,0,0.256,94.95,145.47,0.13,990,1.7000000000000002,117,0.8 +2013,7,29,12,30,11.8,0.68,0.049100000000000005,0.67,0,0,0,1,11.4,0,0,0,0,0.256,97.12,158.46,0.13,990,1.7000000000000002,125,0.8 +2013,7,29,13,30,11.3,0.6900000000000001,0.0465,0.67,0,0,0,3,11.200000000000001,0,0,0,0,0.257,99.12,169.45000000000002,0.13,989,1.7000000000000002,135,0.8 +2013,7,29,14,30,10.9,0.71,0.0446,0.67,0,0,0,4,10.9,0,0,0,0,0.258,100,168.25,0.13,988,1.7000000000000002,149,0.8 +2013,7,29,15,30,10.5,0.73,0.043300000000000005,0.67,0,0,0,4,10.5,0,0,0,0,0.26,100,156.67000000000002,0.13,988,1.7000000000000002,162,0.8 +2013,7,29,16,30,10,0.75,0.0425,0.67,0,0,0,4,10,0,0,0,0,0.261,100,143.6,0.13,987,1.7000000000000002,172,0.8 +2013,7,29,17,30,9.600000000000001,0.77,0.0419,0.67,0,0,0,3,9.600000000000001,0,0,0,0,0.262,100,130.29,0.13,987,1.7000000000000002,178,0.8 +2013,7,29,18,30,9.5,0.78,0.0424,0.67,0,0,0,1,9.5,0,0,0,0,0.263,100,117.02,0.13,987,1.7000000000000002,181,0.7000000000000001 +2013,7,29,19,30,9.4,0.79,0.0434,0.67,0,0,0,4,9.4,0,0,0,0,0.265,100,103.94,0.13,987,1.7000000000000002,184,0.7000000000000001 +2013,7,29,20,30,10.4,0.79,0.0438,0.67,0,0,0,4,10,0,0,0,0,0.266,97.17,91.2,0.13,987,1.7000000000000002,186,0.8 +2013,7,29,21,30,12.600000000000001,0.8,0.0449,0.67,43,557,150,4,10.5,71,25,3,75,0.266,86.91,78.95,0.13,987,1.7000000000000002,180,0.9 +2013,7,29,22,30,15.100000000000001,0.81,0.045700000000000005,0.67,62,746,345,2,11.3,181,57,0,202,0.266,77.94,67.7,0.13,987,1.8,156,0.9 +2013,7,29,23,30,16.3,0.81,0.0463,0.67,72,832,515,3,11.700000000000001,163,22,0,175,0.266,74.19,57.870000000000005,0.13,987,1.8,139,1 +2013,7,30,0,30,18.2,0.44,0.0671,0.67,91,848,632,3,11.700000000000001,389,161,0,492,0.267,65.64,50.34,0.13,986,1.8,140,0.9 +2013,7,30,1,30,18.7,0.45,0.06720000000000001,0.67,94,868,694,3,11.700000000000001,418,96,0,485,0.268,63.83,46.26,0.13,985,1.8,152,0.9 +2013,7,30,2,30,18.900000000000002,0.46,0.06960000000000001,0.67,95,861,687,2,11.700000000000001,398,66,0,443,0.269,63.1,46.57,0.13,984,1.9000000000000001,163,0.9 +2013,7,30,3,30,18.7,0.64,0.06760000000000001,0.67,89,844,618,4,11.600000000000001,78,16,0,88,0.271,63.370000000000005,51.18,0.13,984,1.9000000000000001,168,0.9 +2013,7,30,4,30,18.2,0.67,0.0732,0.67,83,786,487,4,11.5,55,7,0,59,0.271,65.06,59.1,0.13,983,1.9000000000000001,164,0.9 +2013,7,30,5,30,17.5,0.66,0.07,0.67,69,686,313,3,11.8,109,18,0,116,0.272,69.31,69.17,0.13,983,1.9000000000000001,154,0.7000000000000001 +2013,7,30,6,30,16,0.66,0.0679,0.67,44,455,119,4,12.9,37,0,3,37,0.271,81.67,80.55,0.13,984,1.9000000000000001,144,0.7000000000000001 +2013,7,30,7,30,14.5,0.65,0.0646,0.67,0,0,0,1,12.200000000000001,0,0,0,0,0.271,86.13,92.91,0.13,984,1.9000000000000001,136,0.8 +2013,7,30,8,30,13.5,0.64,0.061700000000000005,0.67,0,0,0,1,11.8,0,0,0,0,0.269,89.19,105.7,0.13,985,1.9000000000000001,137,0.9 +2013,7,30,9,30,12.8,0.63,0.060500000000000005,0.67,0,0,0,1,11.5,0,0,0,0,0.267,91.54,118.82000000000001,0.13,985,1.9000000000000001,144,0.9 +2013,7,30,10,30,12.3,0.64,0.060200000000000004,0.67,0,0,0,0,11.3,0,0,0,0,0.265,93.91,132.1,0.13,985,1.9000000000000001,151,0.9 +2013,7,30,11,30,11.9,0.65,0.058600000000000006,0.67,0,0,0,0,11.3,0,0,0,0,0.263,96.17,145.39000000000001,0.13,985,1.9000000000000001,156,0.9 +2013,7,30,12,30,11.600000000000001,0.68,0.054400000000000004,0.67,0,0,0,0,11.3,0,0,0,0,0.262,97.85000000000001,158.35,0.13,984,1.9000000000000001,163,0.9 +2013,7,30,13,30,11.200000000000001,0.71,0.049,0.67,0,0,0,1,11.200000000000001,0,0,0,0,0.261,100,169.25,0.13,984,1.9000000000000001,171,0.9 +2013,7,30,14,30,10.700000000000001,0.76,0.0432,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.261,100,168.06,0.13,984,1.8,180,0.9 +2013,7,30,15,30,10.200000000000001,0.81,0.037700000000000004,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.262,100,156.56,0.13,983,1.8,189,0.9 +2013,7,30,16,30,9.700000000000001,0.8300000000000001,0.033600000000000005,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.263,100,143.5,0.13,983,1.7000000000000002,196,0.9 +2013,7,30,17,30,9.4,0.84,0.031100000000000003,0.67,0,0,0,1,9.4,0,0,0,0,0.264,100,130.19,0.13,983,1.7000000000000002,199,0.9 +2013,7,30,18,30,9.200000000000001,0.86,0.0307,0.67,0,0,0,1,9.200000000000001,0,0,0,0,0.265,100,116.92,0.13,984,1.7000000000000002,199,0.9 +2013,7,30,19,30,9.200000000000001,0.88,0.0308,0.67,0,0,0,1,9.200000000000001,0,0,0,0,0.266,100,103.83,0.13,984,1.7000000000000002,198,0.9 +2013,7,30,20,30,10.4,0.88,0.031100000000000003,0.67,0,0,0,1,10.4,0,0,0,0,0.266,100,91.08,0.13,985,1.7000000000000002,197,1.1 +2013,7,30,21,30,12.700000000000001,0.88,0.0313,0.67,40,589,154,1,11.100000000000001,40,589,0,154,0.267,90.11,78.8,0.13,985,1.8,186,1.7000000000000002 +2013,7,30,22,30,15,0.86,0.031900000000000005,0.67,56,770,351,1,12,56,770,0,351,0.267,82.33,67.53,0.13,985,1.8,169,2.3000000000000003 +2013,7,30,23,30,16.1,0.84,0.032600000000000004,0.67,66,851,521,1,12.4,66,851,0,521,0.266,78.76,57.67,0.13,985,1.8,162,2.5 +2013,7,31,0,30,18.1,0.63,0.0412,0.67,77,881,642,1,12.200000000000001,77,881,0,642,0.264,68.4,50.11,0.13,984,1.8,155,2.5 +2013,7,31,1,30,18.8,0.68,0.038700000000000005,0.67,78,899,702,1,12,78,899,0,702,0.262,64.54,46.02,0.13,984,1.9000000000000001,154,2.4000000000000004 +2013,7,31,2,30,19.200000000000003,0.73,0.038200000000000005,0.67,77,899,698,1,11.9,77,899,0,698,0.261,62.52,46.33,0.13,983,1.9000000000000001,153,2.2 +2013,7,31,3,30,19.200000000000003,0.59,0.0543,0.67,83,859,624,1,11.700000000000001,83,859,0,624,0.26,61.89,50.97,0.13,983,1.9000000000000001,152,2 +2013,7,31,4,30,18.900000000000002,0.64,0.0551,0.67,76,810,494,3,11.5,168,22,0,180,0.259,62.21,58.92,0.13,983,1.9000000000000001,150,1.8 +2013,7,31,5,30,18.1,0.67,0.0545,0.67,64,713,319,2,11.5,121,20,0,128,0.259,65.42,69.02,0.13,983,1.9000000000000001,146,1.3 +2013,7,31,6,30,16.400000000000002,0.75,0.057,0.67,42,482,122,3,12.4,41,0,3,41,0.258,77.21000000000001,80.43,0.13,984,2,138,0.9 +2013,7,31,7,30,14.8,0.8,0.0545,0.67,0,0,0,0,12,0,0,0,0,0.258,83.16,92.81,0.13,985,2,133,0.8 +2013,7,31,8,30,14,0.8,0.0495,0.67,0,0,0,1,11.8,0,0,0,0,0.258,86.66,105.61,0.13,985,2,136,0.8 +2013,7,31,9,30,13.3,0.79,0.0456,0.67,0,0,0,1,11.700000000000001,0,0,0,0,0.257,90.23,118.74000000000001,0.13,986,2,144,0.8 +2013,7,31,10,30,12.8,0.76,0.042800000000000005,0.67,0,0,0,1,11.8,0,0,0,0,0.257,93.60000000000001,132.02,0.13,986,2,157,0.8 +2013,7,31,11,30,12.200000000000001,0.73,0.0403,0.67,0,0,0,0,11.9,0,0,0,0,0.256,97.96000000000001,145.31,0.13,986,2,169,0.9 +2013,7,31,12,30,11.700000000000001,0.71,0.0385,0.67,0,0,0,1,11.700000000000001,0,0,0,0,0.255,100,158.24,0.13,986,2,177,0.9 +2013,7,31,13,30,11.4,0.6900000000000001,0.038200000000000005,0.67,0,0,0,0,11.4,0,0,0,0,0.255,100,169.05,0.13,985,2,183,0.9 +2013,7,31,14,30,11.100000000000001,0.68,0.0391,0.67,0,0,0,0,11.100000000000001,0,0,0,0,0.255,100,167.86,0.13,985,2,188,0.8 +2013,7,31,15,30,10.700000000000001,0.67,0.0398,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.254,100,156.43,0.13,985,1.9000000000000001,194,0.8 +2013,7,31,16,30,10.4,0.65,0.0386,0.67,0,0,0,0,10.4,0,0,0,0,0.254,100,143.4,0.13,985,1.9000000000000001,198,0.8 +2013,7,31,17,30,10.200000000000001,0.63,0.0369,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.254,100,130.09,0.13,985,1.8,200,0.8 +2013,7,31,18,30,9.9,0.63,0.036000000000000004,0.67,0,0,0,3,9.9,0,0,0,0,0.255,100,116.81,0.13,985,1.8,200,0.8 +2013,7,31,19,30,9.8,0.64,0.034800000000000005,0.67,0,0,0,3,9.8,0,0,0,0,0.255,100,103.71000000000001,0.13,986,1.8,199,0.8 +2013,7,31,20,30,10.9,0.64,0.0342,0.67,0,0,0,3,10.9,0,0,1,0,0.255,100,90.95,0.13,986,1.7000000000000002,199,1 +2013,7,31,21,30,13.4,0.67,0.0341,0.67,41,585,156,1,11.700000000000001,41,585,0,156,0.255,89.4,78.66,0.13,987,1.7000000000000002,185,1.4000000000000001 +2013,7,31,22,30,15.700000000000001,0.71,0.031900000000000005,0.67,57,771,354,1,12.4,57,771,0,354,0.255,80.52,67.36,0.13,987,1.8,162,1.9000000000000001 +2013,7,31,23,30,16.8,0.77,0.029400000000000003,0.67,65,857,526,1,12.600000000000001,65,857,0,526,0.255,76.4,57.47,0.13,987,1.8,154,2 +2013,8,1,0,30,18.6,0.55,0.0482,0.67,81,871,643,1,12.4,81,871,0,643,0.254,67.4,49.88,0.13,986,1.9000000000000001,147,1.9000000000000001 +2013,8,1,1,30,19.200000000000003,0.6,0.044700000000000004,0.67,82,894,705,1,12.4,82,894,0,705,0.254,64.75,45.77,0.13,986,1.9000000000000001,145,1.8 +2013,8,1,2,30,19.6,0.64,0.042800000000000005,0.67,80,892,699,1,12.5,80,892,0,699,0.254,63.440000000000005,46.09,0.13,985,2,142,1.7000000000000002 +2013,8,1,3,30,19.6,0.54,0.06810000000000001,0.67,90,842,623,1,12.5,90,842,0,623,0.255,63.59,50.76,0.13,984,2,138,1.6 +2013,8,1,4,30,19.3,0.54,0.0713,0.67,84,785,491,3,12.5,256,43,0,278,0.257,64.58,58.730000000000004,0.13,984,2.1,132,1.5 +2013,8,1,5,30,18.5,0.53,0.0733,0.67,71,677,315,1,12.5,71,677,0,315,0.259,68.17,68.87,0.13,985,2.1,122,1.1 +2013,8,1,6,30,16.900000000000002,0.56,0.0782,0.67,47,432,120,1,13.5,47,432,0,120,0.261,80.13,80.3,0.13,985,2.2,110,0.7000000000000001 +2013,8,1,7,30,15.4,0.5700000000000001,0.07970000000000001,0.67,0,0,0,1,13.3,0,0,0,0,0.262,87.03,92.7,0.13,986,2.2,102,0.7000000000000001 +2013,8,1,8,30,14.600000000000001,0.5700000000000001,0.075,0.67,0,0,0,1,13.100000000000001,0,0,0,0,0.263,90.91,105.52,0.13,987,2.2,102,0.7000000000000001 +2013,8,1,9,30,14,0.5700000000000001,0.0699,0.67,0,0,0,0,13.100000000000001,0,0,0,0,0.263,94.12,118.66,0.13,987,2.2,106,0.7000000000000001 +2013,8,1,10,30,13.4,0.58,0.06620000000000001,0.67,0,0,0,0,13.100000000000001,0,0,0,0,0.264,97.87,131.95,0.13,987,2.2,112,0.7000000000000001 +2013,8,1,11,30,12.9,0.6,0.0634,0.67,0,0,0,0,12.9,0,0,0,0,0.264,100,145.23,0.13,987,2.1,119,0.7000000000000001 +2013,8,1,12,30,12.5,0.61,0.061000000000000006,0.67,0,0,0,0,12.5,0,0,0,0,0.264,100,158.13,0.13,987,2.1,126,0.7000000000000001 +2013,8,1,13,30,12.100000000000001,0.63,0.0585,0.67,0,0,0,0,12.100000000000001,0,0,0,0,0.263,100,168.84,0.13,986,2,133,0.6000000000000001 +2013,8,1,14,30,11.600000000000001,0.66,0.0555,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.262,100,167.65,0.13,986,2,140,0.7000000000000001 +2013,8,1,15,30,11.200000000000001,0.7000000000000001,0.054200000000000005,0.67,0,0,0,0,11.200000000000001,0,0,0,0,0.262,100,156.3,0.13,986,1.9000000000000001,149,0.7000000000000001 +2013,8,1,16,30,10.9,0.74,0.0539,0.67,0,0,0,0,10.9,0,0,0,0,0.262,100,143.29,0.13,985,1.9000000000000001,156,0.7000000000000001 +2013,8,1,17,30,10.600000000000001,0.78,0.0546,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.262,100,129.99,0.13,985,1.8,163,0.8 +2013,8,1,18,30,10.5,0.81,0.0558,0.67,0,0,0,0,10.5,0,0,0,0,0.262,100,116.7,0.13,986,1.8,169,0.8 +2013,8,1,19,30,10.4,0.8300000000000001,0.0575,0.67,0,0,0,1,10.4,0,0,0,0,0.261,100,103.59,0.13,986,1.8,177,0.8 +2013,8,1,20,30,11.200000000000001,0.85,0.059300000000000005,0.67,0,0,0,1,11.200000000000001,0,0,0,0,0.261,100,90.22,0.13,987,1.8,191,0.8 +2013,8,1,21,30,13.4,0.86,0.060700000000000004,0.67,47,537,155,1,11.5,47,537,0,155,0.26,88.44,78.5,0.13,987,1.8,189,0.6000000000000001 +2013,8,1,22,30,16,0.87,0.0616,0.67,68,731,352,1,11.9,68,731,0,352,0.26,76.43,67.18,0.13,987,1.8,91,0.30000000000000004 +2013,8,1,23,30,17.400000000000002,0.87,0.0631,0.67,80,818,523,1,11.9,80,818,0,523,0.259,69.95,57.26,0.13,987,1.8,4,0.30000000000000004 +2013,8,2,0,30,19.400000000000002,0.88,0.0734,0.67,91,852,643,0,11.8,91,852,0,643,0.259,61.33,49.64,0.13,986,1.8,304,0.8 +2013,8,2,1,30,20,0.9,0.0801,0.67,98,863,702,0,11.4,98,863,0,702,0.26,57.85,45.52,0.13,985,1.9000000000000001,292,1.1 +2013,8,2,2,30,20,0.92,0.0838,0.67,99,858,697,0,10.9,99,858,0,697,0.26,55.910000000000004,45.84,0.13,984,1.9000000000000001,289,1.2000000000000002 +2013,8,2,3,30,20,0.97,0.0984,0.67,101,821,623,1,10.9,101,821,0,623,0.26,55.61,50.54,0.13,984,1.9000000000000001,286,1.1 +2013,8,2,4,30,20,1.01,0.1086,0.67,96,758,491,1,11,96,758,0,491,0.26,56.24,58.550000000000004,0.13,983,1.9000000000000001,282,1 +2013,8,2,5,30,19.400000000000002,0.99,0.11230000000000001,0.67,81,644,315,1,11.100000000000001,81,644,0,315,0.26,58.54,68.72,0.13,983,1.9000000000000001,287,0.7000000000000001 +2013,8,2,6,30,18,0.98,0.1198,0.67,53,395,120,1,12.700000000000001,53,395,0,120,0.259,71.32000000000001,80.18,0.13,984,1.9000000000000001,304,0.5 +2013,8,2,7,30,16.7,0.98,0.1228,0.67,0,0,0,0,12.100000000000001,0,0,0,0,0.257,74.46000000000001,92.60000000000001,0.13,984,1.8,317,0.6000000000000001 +2013,8,2,8,30,15.8,1.01,0.1208,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.256,76.31,105.43,0.13,985,1.8,319,0.7000000000000001 +2013,8,2,9,30,14.9,1.05,0.1184,0.67,0,0,0,0,11.5,0,0,0,0,0.254,79.97,118.57000000000001,0.13,985,1.8,311,0.8 +2013,8,2,10,30,14,1.09,0.11710000000000001,0.67,0,0,0,0,11.4,0,0,0,0,0.254,84.08,131.87,0.13,985,1.8,298,0.8 +2013,8,2,11,30,13.3,1.1300000000000001,0.1159,0.67,0,0,0,0,11.200000000000001,0,0,0,0,0.254,87.37,145.14000000000001,0.13,985,1.8,286,0.8 +2013,8,2,12,30,12.8,1.1500000000000001,0.1126,0.67,0,0,0,0,11,0,0,0,0,0.254,89.02,158.02,0.13,985,1.7000000000000002,276,0.7000000000000001 +2013,8,2,13,30,12.3,1.1500000000000001,0.10490000000000001,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.254,89.75,168.63,0.13,985,1.7000000000000002,268,0.7000000000000001 +2013,8,2,14,30,11.600000000000001,1.1300000000000001,0.09820000000000001,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.254,90.94,167.44,0.13,984,1.6,262,0.8 +2013,8,2,15,30,11,1.09,0.0952,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.255,91.49,156.17000000000002,0.13,984,1.6,257,0.8 +2013,8,2,16,30,10.4,1.05,0.0922,0.67,0,0,0,0,9.1,0,0,0,0,0.255,91.39,143.18,0.13,984,1.5,252,0.8 +2013,8,2,17,30,9.9,1.03,0.0869,0.67,0,0,0,0,8.3,0,0,0,0,0.254,89.96000000000001,129.88,0.13,984,1.4000000000000001,250,0.8 +2013,8,2,18,30,9.4,1.02,0.0804,0.67,0,0,0,1,7.6000000000000005,0,0,0,0,0.254,88.74,116.59,0.13,985,1.4000000000000001,250,0.8 +2013,8,2,19,30,9,1.03,0.0727,0.67,0,0,0,0,7,0,0,0,0,0.254,87.37,103.47,0.13,986,1.3,250,0.8 +2013,8,2,20,30,9.9,1.04,0.0655,0.67,0,0,0,1,6.6000000000000005,0,0,0,0,0.255,79.89,90.10000000000001,0.13,986,1.3,252,1 +2013,8,2,21,30,12.200000000000001,1.04,0.058600000000000006,0.67,47,568,161,1,6.9,47,568,0,161,0.256,70.01,78.35000000000001,0.13,986,1.2000000000000002,254,1.3 +2013,8,2,22,30,15,1.04,0.0523,0.67,64,771,366,1,6.9,64,771,0,366,0.257,58.35,67,0.13,986,1.1,247,1.7000000000000002 +2013,8,2,23,30,16.5,1.04,0.0466,0.67,72,863,542,0,6.300000000000001,72,863,0,542,0.258,50.82,57.050000000000004,0.13,986,1.1,239,2 +2013,8,3,0,30,18.900000000000002,1.04,0.0397,0.67,75,920,674,0,5.4,75,920,0,674,0.259,41.17,49.4,0.13,985,0.9,253,2.2 +2013,8,3,1,30,19.700000000000003,1.02,0.038700000000000005,0.67,77,938,737,0,5.1000000000000005,77,938,0,737,0.26,38.410000000000004,45.26,0.13,984,0.9,260,2.3000000000000003 +2013,8,3,2,30,20.200000000000003,0.99,0.037200000000000004,0.67,76,943,736,0,5,76,943,0,736,0.261,36.89,45.59,0.13,983,0.8,263,2.3000000000000003 +2013,8,3,3,30,20.400000000000002,1.01,0.0349,0.67,72,926,663,0,4.9,72,926,0,663,0.262,36.25,50.32,0.13,983,0.8,262,2.1 +2013,8,3,4,30,20.1,1,0.0344,0.67,66,888,532,0,4.800000000000001,66,888,0,532,0.263,36.53,58.370000000000005,0.13,982,0.7000000000000001,260,1.9000000000000001 +2013,8,3,5,30,18.8,1.01,0.034,0.67,56,800,349,0,5,56,800,0,349,0.265,40.28,68.56,0.13,982,0.7000000000000001,258,1.3 +2013,8,3,6,30,16.3,1.02,0.0334,0.67,38,597,141,0,7.300000000000001,38,597,0,141,0.266,55.09,80.05,0.13,983,0.7000000000000001,259,0.8 +2013,8,3,7,30,14,1.04,0.033100000000000004,0.67,0,0,0,0,5.7,0,0,0,0,0.266,57.21,92.49,0.13,983,0.7000000000000001,259,0.9 +2013,8,3,8,30,12.700000000000001,1.06,0.0334,0.67,0,0,0,0,5,0,0,0,0,0.265,59.410000000000004,105.34,0.13,984,0.7000000000000001,254,0.9 +2013,8,3,9,30,11.8,1.07,0.0344,0.67,0,0,0,0,4.7,0,0,0,0,0.266,61.84,118.49000000000001,0.13,985,0.7000000000000001,250,0.9 +2013,8,3,10,30,11.100000000000001,1.05,0.036000000000000004,0.67,0,0,0,0,4.6000000000000005,0,0,0,0,0.266,64.26,131.79,0.13,985,0.7000000000000001,248,1 +2013,8,3,11,30,10.4,1.02,0.037700000000000004,0.67,0,0,0,0,4.6000000000000005,0,0,0,0,0.268,67.39,145.06,0.13,985,0.8,249,1 +2013,8,3,12,30,9.700000000000001,0.98,0.0402,0.67,0,0,0,0,4.6000000000000005,0,0,0,0,0.269,70.43,157.91,0.13,985,0.8,253,0.9 +2013,8,3,13,30,9.1,0.9400000000000001,0.0437,0.67,0,0,0,1,4.5,0,0,0,0,0.27,72.86,168.41,0.13,985,0.7000000000000001,256,0.9 +2013,8,3,14,30,8.5,0.92,0.0477,0.67,0,0,0,0,4.4,0,0,0,0,0.271,75.25,167.22,0.13,985,0.7000000000000001,258,0.9 +2013,8,3,15,30,8,0.91,0.0511,0.67,0,0,0,0,4.2,0,0,0,0,0.272,76.8,156.03,0.13,984,0.7000000000000001,260,0.9 +2013,8,3,16,30,7.5,0.9,0.053700000000000005,0.67,0,0,0,1,4,0,0,0,0,0.273,78.35000000000001,143.06,0.13,984,0.7000000000000001,262,0.9 +2013,8,3,17,30,7,0.9,0.055400000000000005,0.67,0,0,0,0,3.8000000000000003,0,0,0,0,0.274,80.07000000000001,129.77,0.13,984,0.6000000000000001,264,0.8 +2013,8,3,18,30,6.5,0.89,0.056,0.67,0,0,0,0,3.6,0,0,0,0,0.274,81.91,116.47,0.13,985,0.6000000000000001,266,0.8 +2013,8,3,19,30,6.2,0.89,0.0558,0.67,0,0,0,0,3.5,0,0,0,0,0.273,82.75,103.34,0.13,985,0.6000000000000001,267,0.8 +2013,8,3,20,30,7.300000000000001,0.89,0.055200000000000006,0.67,0,0,0,1,3.5,0,0,0,0,0.272,76.86,89.97,0.13,986,0.7000000000000001,269,0.9 +2013,8,3,21,30,9.9,0.9,0.0538,0.67,47,599,170,1,4.3,47,599,0,170,0.271,68.19,78.18,0.13,986,0.7000000000000001,274,1.2000000000000002 +2013,8,3,22,30,13.100000000000001,0.92,0.0512,0.67,65,786,375,1,4.7,65,786,0,375,0.271,56.61,66.81,0.13,987,0.8,269,1.4000000000000001 +2013,8,3,23,30,15,0.9400000000000001,0.048,0.67,74,875,553,0,5.6000000000000005,74,875,0,553,0.271,53.27,56.83,0.13,986,0.8,260,1.6 +2013,8,4,0,30,18.3,0.9400000000000001,0.0439,0.67,78,920,680,0,5.2,78,920,0,680,0.273,42.22,49.15,0.13,985,0.8,257,2.1 +2013,8,4,1,30,19.3,0.96,0.044000000000000004,0.67,81,933,741,0,5,81,933,0,741,0.274,38.92,44.99,0.13,984,0.9,260,2.1 +2013,8,4,2,30,19.900000000000002,0.97,0.043300000000000005,0.67,80,932,736,0,4.9,80,932,0,736,0.275,37.29,45.34,0.13,983,0.9,261,2.1 +2013,8,4,3,30,20.200000000000003,1.1,0.0388,0.67,74,918,663,0,4.9,74,918,0,663,0.276,36.75,50.09,0.13,983,0.9,258,2.1 +2013,8,4,4,30,19.900000000000002,1.11,0.038900000000000004,0.67,68,874,529,0,5.1000000000000005,68,874,0,529,0.278,37.84,58.18,0.13,982,0.9,255,1.9000000000000001 +2013,8,4,5,30,18.7,1.11,0.038700000000000005,0.67,58,780,345,0,5.6000000000000005,58,780,0,345,0.28,42.25,68.41,0.13,983,1,252,1.4000000000000001 +2013,8,4,6,30,16.2,1.11,0.0375,0.67,39,577,139,0,7.7,39,577,0,139,0.28300000000000003,56.95,79.93,0.13,983,1,252,0.9 +2013,8,4,7,30,14,1.12,0.036000000000000004,0.67,0,0,0,0,6.1000000000000005,0,0,0,0,0.28600000000000003,59.120000000000005,92.39,0.13,984,1,252,0.9 +2013,8,4,8,30,12.700000000000001,1.1,0.0345,0.67,0,0,0,0,5.6000000000000005,0,0,0,0,0.28700000000000003,61.84,105.25,0.13,985,1,249,0.9 +2013,8,4,9,30,11.9,1.05,0.0335,0.67,0,0,0,0,5.2,0,0,0,0,0.28700000000000003,63.7,118.41,0.13,985,1,248,0.9 +2013,8,4,10,30,11.200000000000001,1,0.0332,0.67,0,0,0,0,5,0,0,0,0,0.28500000000000003,65.5,131.71,0.13,986,1,250,0.9 +2013,8,4,11,30,10.600000000000001,0.9500000000000001,0.0332,0.67,0,0,0,0,4.7,0,0,0,0,0.28300000000000003,67.09,144.97,0.13,986,1.1,253,0.9 +2013,8,4,12,30,9.9,0.92,0.0333,0.67,0,0,0,0,4.6000000000000005,0,0,0,0,0.28400000000000003,69.82000000000001,157.79,0.13,986,1.1,254,0.9 +2013,8,4,13,30,9.3,0.89,0.0337,0.67,0,0,0,0,4.5,0,0,0,0,0.28500000000000003,72.06,168.19,0.13,986,1.1,254,0.9 +2013,8,4,14,30,8.8,0.87,0.0341,0.67,0,0,0,0,4.4,0,0,0,0,0.28600000000000003,74.07000000000001,167,0.13,986,1,251,0.9 +2013,8,4,15,30,8.4,0.87,0.0347,0.67,0,0,0,0,4.3,0,0,0,0,0.289,75.64,155.88,0.13,985,1.1,249,0.9 +2013,8,4,16,30,8.1,0.87,0.0354,0.67,0,0,0,0,4.3,0,0,0,0,0.291,77.13,142.94,0.13,985,1.1,248,0.9 +2013,8,4,17,30,7.800000000000001,0.88,0.0358,0.67,0,0,0,0,4.4,0,0,0,0,0.292,78.94,129.65,0.13,985,1.1,249,0.9 +2013,8,4,18,30,7.5,0.9,0.0362,0.67,0,0,0,0,4.4,0,0,0,0,0.29,80.96000000000001,116.35000000000001,0.13,986,1.1,251,0.9 +2013,8,4,19,30,7.300000000000001,0.92,0.0369,0.67,0,0,0,1,4.5,0,0,0,0,0.28600000000000003,82.69,103.21000000000001,0.13,987,1.1,251,0.8 +2013,8,4,20,30,8.5,0.9500000000000001,0.038200000000000005,0.67,0,0,0,3,4.800000000000001,0,0,3,0,0.28500000000000003,77.36,89.85000000000001,0.13,988,1.1,250,0.9 +2013,8,4,21,30,11.200000000000001,0.99,0.039400000000000004,0.67,43,614,171,1,5.7,43,614,0,171,0.28400000000000003,68.96000000000001,78.02,0.13,988,1.1,249,1.1 +2013,8,4,22,30,14.3,1.02,0.040100000000000004,0.67,61,792,375,1,6.2,61,792,0,375,0.28400000000000003,58.04,66.62,0.13,988,1.1,238,1.3 +2013,8,4,23,30,16.1,1.06,0.0407,0.67,71,872,551,0,6.9,71,872,0,551,0.28300000000000003,54.33,56.61,0.13,988,1.1,226,1.4000000000000001 +2013,8,5,0,30,18.8,1.1,0.0407,0.67,76,913,676,0,6.7,76,913,0,676,0.28200000000000003,45.300000000000004,48.9,0.13,987,1.1,236,1.3 +2013,8,5,1,30,19.700000000000003,1.11,0.0419,0.67,79,925,737,0,6.7,79,925,0,737,0.281,42.910000000000004,44.72,0.13,986,1.2000000000000002,250,1.3 +2013,8,5,2,30,20.3,1.12,0.043500000000000004,0.67,80,922,731,0,6.7,80,922,0,731,0.28200000000000003,41.22,45.08,0.13,985,1.2000000000000002,260,1.3 +2013,8,5,3,30,20.400000000000002,1.1500000000000001,0.0434,0.67,77,903,659,0,6.6000000000000005,77,903,0,659,0.28300000000000003,40.63,49.86,0.13,984,1.2000000000000002,266,1.3 +2013,8,5,4,30,20.3,1.1400000000000001,0.0448,0.67,71,852,523,0,6.6000000000000005,71,852,0,523,0.28400000000000003,40.82,57.99,0.13,984,1.3,268,1.2000000000000002 +2013,8,5,5,30,19.3,1.12,0.046400000000000004,0.67,61,759,342,0,6.9,61,759,0,342,0.28300000000000003,44.34,68.26,0.13,984,1.3,272,0.9 +2013,8,5,6,30,17.3,1.11,0.0473,0.67,41,549,138,0,9,41,549,0,138,0.28300000000000003,58.230000000000004,79.8,0.13,985,1.3,285,0.6000000000000001 +2013,8,5,7,30,15.100000000000001,1.11,0.0475,0.67,0,0,0,0,8.4,0,0,0,0,0.28200000000000003,64.23,92.28,0.13,985,1.3,291,0.7000000000000001 +2013,8,5,8,30,13.700000000000001,1.11,0.0473,0.67,0,0,0,0,8,0,0,0,0,0.28300000000000003,68.25,105.16,0.13,986,1.3,283,0.9 +2013,8,5,9,30,12.5,1.11,0.046700000000000005,0.67,0,0,0,0,7.800000000000001,0,0,0,0,0.28200000000000003,72.85000000000001,118.33,0.13,987,1.2000000000000002,271,0.9 +2013,8,5,10,30,11.5,1.11,0.046,0.67,0,0,0,0,7.5,0,0,0,0,0.281,76.46000000000001,131.63,0.13,987,1.2000000000000002,261,0.9 +2013,8,5,11,30,10.8,1.1,0.0453,0.67,0,0,0,0,7.300000000000001,0,0,0,0,0.28,78.76,144.89000000000001,0.13,987,1.2000000000000002,252,0.9 +2013,8,5,12,30,10.200000000000001,1.09,0.044700000000000004,0.67,0,0,0,0,7,0,0,0,0,0.278,80.39,157.67000000000002,0.13,987,1.2000000000000002,247,0.9 +2013,8,5,13,30,9.700000000000001,1.07,0.0437,0.67,0,0,0,0,6.7,0,0,0,0,0.278,81.83,167.96,0.13,987,1.2000000000000002,245,0.9 +2013,8,5,14,30,9.3,1.07,0.0427,0.67,0,0,0,0,6.5,0,0,0,0,0.279,82.61,166.76,0.13,986,1.1,246,0.9 +2013,8,5,15,30,8.8,1.06,0.0419,0.67,0,0,0,0,6.2,0,0,0,0,0.279,83.86,155.72,0.13,986,1.1,247,0.9 +2013,8,5,16,30,8.5,1.05,0.041,0.67,0,0,0,0,5.9,0,0,0,0,0.278,83.53,142.81,0.13,985,1,248,0.9 +2013,8,5,17,30,8.4,1.05,0.04,0.67,0,0,0,0,5.5,0,0,0,0,0.277,82.23,129.53,0.13,985,1,249,0.9 +2013,8,5,18,30,8.1,1.05,0.0395,0.67,0,0,0,0,5.300000000000001,0,0,0,0,0.277,82.43,116.22,0.13,986,0.9,252,0.9 +2013,8,5,19,30,7.9,1.06,0.04,0.67,0,0,0,1,5.1000000000000005,0,0,0,0,0.277,82.33,103.07000000000001,0.13,986,0.9,256,0.9 +2013,8,5,20,30,9.1,1.08,0.040600000000000004,0.67,0,0,0,0,5,0,0,0,0,0.276,75.67,89.73,0.13,987,0.9,258,0.9 +2013,8,5,21,30,11.8,1.09,0.0413,0.67,44,625,176,1,5.800000000000001,44,625,0,176,0.276,66.52,77.85000000000001,0.13,987,0.9,262,1.1 +2013,8,5,22,30,15,1.1,0.0432,0.67,62,799,382,1,5.9,62,799,0,382,0.276,54.660000000000004,66.42,0.13,987,0.9,265,1.3 +2013,8,5,23,30,16.7,1.12,0.0456,0.67,73,877,559,1,6.7,73,877,0,559,0.276,51.72,56.38,0.13,987,0.9,265,1.5 +2013,8,6,0,30,19.700000000000003,1.12,0.048100000000000004,0.67,80,915,685,4,6.5,407,160,0,512,0.274,42.09,48.65,0.13,986,0.9,265,1.8 +2013,8,6,1,30,20.700000000000003,1.1300000000000001,0.048600000000000004,0.67,83,932,748,0,6.1000000000000005,83,932,0,748,0.273,38.72,44.45,0.13,985,0.9,266,1.7000000000000002 +2013,8,6,2,30,21.3,1.1500000000000001,0.0472,0.67,82,932,743,0,6,82,932,0,743,0.271,36.9,44.81,0.13,983,0.9,267,1.6 +2013,8,6,3,30,21.6,1.37,0.0386,0.67,74,919,669,0,5.9,74,919,0,669,0.269,36.01,49.63,0.13,982,1,268,1.4000000000000001 +2013,8,6,4,30,21.400000000000002,1.36,0.04,0.67,68,873,534,0,5.9,68,873,0,534,0.267,36.57,57.800000000000004,0.13,982,1,269,1.2000000000000002 +2013,8,6,5,30,20.200000000000003,1.34,0.040600000000000004,0.67,58,784,351,0,5.9,58,784,0,351,0.266,39.34,68.1,0.13,982,1,275,0.8 +2013,8,6,6,30,18.2,1.32,0.0408,0.67,40,581,144,0,9.1,40,581,0,144,0.266,55.230000000000004,79.68,0.13,983,1,282,0.7000000000000001 +2013,8,6,7,30,16.6,1.31,0.0407,0.67,0,0,0,0,8,0,0,0,0,0.266,56.9,92.17,0.13,983,1,282,0.8 +2013,8,6,8,30,15.4,1.3,0.0414,0.67,0,0,0,0,7.4,0,0,0,0,0.266,58.730000000000004,105.07000000000001,0.13,984,1,279,0.9 +2013,8,6,9,30,14.100000000000001,1.3,0.0403,0.67,0,0,0,0,7.2,0,0,0,0,0.267,62.97,118.25,0.13,985,1.1,275,1 +2013,8,6,10,30,12.9,1.29,0.038200000000000005,0.67,0,0,0,0,6.9,0,0,0,0,0.268,66.74,131.56,0.13,985,1.1,270,1 +2013,8,6,11,30,12,1.27,0.038700000000000005,0.67,0,0,0,0,6.7,0,0,0,0,0.269,70.23,144.8,0.13,985,1.1,263,1.1 +2013,8,6,12,30,11.4,1.25,0.0397,0.67,0,0,0,0,6.300000000000001,0,0,0,0,0.269,71.02,157.54,0.13,984,1.1,258,1.1 +2013,8,6,13,30,10.700000000000001,1.23,0.041600000000000005,0.67,0,0,0,3,5.9,0,0,0,0,0.268,72.36,167.73,0.13,984,1.1,256,1.1 +2013,8,6,14,30,10,1.21,0.0431,0.67,0,0,0,8,5.6000000000000005,0,0,0,0,0.268,74.01,166.52,0.13,983,1.1,255,1.1 +2013,8,6,15,30,9.4,1.2,0.0449,0.67,0,0,0,7,5.2,0,0,0,0,0.267,74.79,155.56,0.13,983,1.1,256,1.1 +2013,8,6,16,30,8.9,1.19,0.0461,0.67,0,0,0,8,4.800000000000001,0,0,0,0,0.267,75.33,142.68,0.13,983,1.1,259,1 +2013,8,6,17,30,8.6,1.2,0.046700000000000005,0.67,0,0,0,8,4.4,0,0,0,0,0.268,75.05,129.4,0.13,983,1.2000000000000002,264,1 +2013,8,6,18,30,8.4,1.2,0.0473,0.67,0,0,0,1,4.1000000000000005,0,0,0,0,0.268,74.36,116.09,0.13,983,1.2000000000000002,269,0.9 +2013,8,6,19,30,8.4,1.21,0.0472,0.67,0,0,0,1,4,0,0,0,0,0.267,73.74,102.93,0.13,983,1.2000000000000002,276,0.9 +2013,8,6,20,30,9.8,1.22,0.046700000000000005,0.67,0,0,0,1,4.1000000000000005,0,0,0,0,0.267,67.6,89.60000000000001,0.13,984,1.2000000000000002,281,1 +2013,8,6,21,30,12.4,1.23,0.0465,0.67,45,611,175,1,5.1000000000000005,45,611,0,175,0.267,61.04,77.67,0.13,984,1.2000000000000002,286,1.2000000000000002 +2013,8,6,22,30,15.4,1.23,0.0463,0.67,62,784,378,1,5.5,62,784,0,378,0.268,51.550000000000004,66.22,0.13,984,1.3,291,1.5 +2013,8,6,23,30,17,1.23,0.045700000000000005,0.67,72,865,554,0,7.2,72,865,0,554,0.268,52.4,56.15,0.13,984,1.3,294,1.6 +2013,8,7,0,30,20.700000000000003,1.1,0.050300000000000004,0.67,80,900,678,0,7.9,80,900,0,678,0.268,43.67,48.38,0.13,982,1.3,294,1.8 +2013,8,7,1,30,21.8,1.09,0.0511,0.67,83,916,741,0,8.1,83,916,0,741,0.268,41.46,44.17,0.13,981,1.3,294,1.8 +2013,8,7,2,30,22.400000000000002,1.09,0.0529,0.67,84,913,735,0,8.1,84,913,0,735,0.268,39.87,44.550000000000004,0.13,980,1.3,292,1.7000000000000002 +2013,8,7,3,30,22.6,1.12,0.0487,0.67,79,894,661,0,7.9,79,894,0,661,0.269,38.87,49.4,0.13,979,1.4000000000000001,288,1.6 +2013,8,7,4,30,22.3,1.1300000000000001,0.0506,0.67,73,847,526,0,7.7,73,847,0,526,0.27,39.03,57.61,0.13,979,1.4000000000000001,284,1.4000000000000001 +2013,8,7,5,30,21,1.1500000000000001,0.052500000000000005,0.67,62,752,345,0,7.5,62,752,0,345,0.271,41.85,67.95,0.13,979,1.4000000000000001,283,1 +2013,8,7,6,30,18.7,1.16,0.053700000000000005,0.67,42,543,140,0,10.3,42,543,0,140,0.271,57.93,79.55,0.13,979,1.4000000000000001,286,0.8 +2013,8,7,7,30,16.6,1.18,0.0555,0.67,0,0,0,7,8.700000000000001,0,0,0,0,0.272,59.76,92.07000000000001,0.13,980,1.4000000000000001,287,0.9 +2013,8,7,8,30,15.3,1.18,0.056100000000000004,0.67,0,0,0,7,8.3,0,0,0,0,0.272,63.190000000000005,104.98,0.13,980,1.4000000000000001,282,0.9 +2013,8,7,9,30,14,1.18,0.0548,0.67,0,0,0,8,7.800000000000001,0,0,0,0,0.271,66.17,118.17,0.13,980,1.4000000000000001,276,1 +2013,8,7,10,30,13.100000000000001,1.16,0.0543,0.67,0,0,0,3,7.2,0,0,0,0,0.271,67.53,131.48,0.13,981,1.4000000000000001,269,1 +2013,8,7,11,30,12.700000000000001,1.1400000000000001,0.0567,0.67,0,0,0,8,6.7,0,0,0,0,0.27,66.95,144.71,0.13,981,1.5,267,0.9 +2013,8,7,12,30,12.100000000000001,1.11,0.058300000000000005,0.67,0,0,0,4,6.2,0,0,0,0,0.269,67.23,157.42000000000002,0.13,980,1.4000000000000001,273,0.9 +2013,8,7,13,30,11.3,1.06,0.0577,0.67,0,0,0,8,5.7,0,0,0,0,0.269,68.36,167.49,0.13,980,1.4000000000000001,281,0.9 +2013,8,7,14,30,10.600000000000001,1,0.0574,0.67,0,0,0,1,5.300000000000001,0,0,0,0,0.269,69.73,166.28,0.13,979,1.3,287,0.9 +2013,8,7,15,30,10.3,0.9500000000000001,0.058100000000000006,0.67,0,0,0,0,4.9,0,0,0,0,0.269,69.13,155.4,0.13,979,1.3,293,0.9 +2013,8,7,16,30,10,0.89,0.0585,0.67,0,0,0,0,4.4,0,0,0,0,0.269,68.13,142.54,0.13,978,1.2000000000000002,296,0.9 +2013,8,7,17,30,9.700000000000001,0.85,0.057300000000000004,0.67,0,0,0,0,4.1000000000000005,0,0,0,0,0.268,68.07000000000001,129.26,0.13,978,1.2000000000000002,295,0.9 +2013,8,7,18,30,9.4,0.85,0.054900000000000004,0.67,0,0,0,0,4,0,0,0,0,0.268,68.86,115.95,0.13,978,1.2000000000000002,289,1 +2013,8,7,19,30,9.200000000000001,0.88,0.0526,0.67,0,0,0,1,3.9000000000000004,0,0,0,0,0.266,69.47,102.79,0.13,979,1.2000000000000002,282,1 +2013,8,7,20,30,10.4,0.9,0.0509,0.67,0,0,0,1,3.9000000000000004,0,0,0,0,0.265,64.18,89.46000000000001,0.13,979,1.2000000000000002,276,1.3 +2013,8,7,21,30,12.9,0.9,0.0504,0.67,47,602,177,1,4.6000000000000005,47,602,0,177,0.264,57.120000000000005,77.49,0.13,979,1.2000000000000002,274,1.9000000000000001 +2013,8,7,22,30,15.600000000000001,0.85,0.0514,0.67,65,779,382,1,4.7,65,779,0,382,0.264,48.09,66.02,0.13,979,1.2000000000000002,270,2.5 +2013,8,7,23,30,16.900000000000002,0.81,0.0521,0.67,76,860,558,1,6.6000000000000005,76,860,0,558,0.264,50.730000000000004,55.92,0.13,979,1.2000000000000002,267,2.8000000000000003 +2013,8,8,0,30,19.5,0.79,0.0485,0.67,81,908,687,0,8.3,81,908,0,687,0.262,48.28,48.120000000000005,0.13,978,1.1,267,3.4000000000000004 +2013,8,8,1,30,20.200000000000003,0.8300000000000001,0.0449,0.67,82,933,754,1,8.3,82,933,0,754,0.261,46.14,43.89,0.13,977,1,264,3.8000000000000003 +2013,8,8,2,30,20,0.9500000000000001,0.0396,0.67,78,947,756,0,6.7,78,947,0,756,0.261,42,44.28,0.13,977,0.8,259,4 +2013,8,8,3,30,19.3,1.03,0.0364,0.67,74,937,686,0,4.5,74,937,0,686,0.262,37.730000000000004,49.17,0.13,976,0.7000000000000001,255,4 +2013,8,8,4,30,18.1,1.08,0.0337,0.67,67,904,553,0,2.7,67,904,0,553,0.263,35.79,57.42,0.13,977,0.6000000000000001,251,3.8000000000000003 +2013,8,8,5,30,16.5,1.11,0.0304,0.67,55,824,367,0,1.2000000000000002,55,824,0,367,0.264,35.53,67.79,0.13,977,0.6000000000000001,246,3.3000000000000003 +2013,8,8,6,30,14.200000000000001,1.08,0.0284,0.67,38,634,154,0,0.4,38,634,0,154,0.265,38.99,79.43,0.13,978,0.6000000000000001,243,2.4000000000000004 +2013,8,8,7,30,12.100000000000001,1.06,0.027,0.67,0,0,0,0,0.7000000000000001,0,0,0,0,0.266,45.61,91.96000000000001,0.13,979,0.6000000000000001,243,1.8 +2013,8,8,8,30,11,1.06,0.0263,0.67,0,0,0,0,1.3,0,0,0,0,0.265,51.31,104.89,0.13,980,0.7000000000000001,243,1.6 +2013,8,8,9,30,10.3,1.09,0.025900000000000003,0.67,0,0,0,0,1.9000000000000001,0,0,0,0,0.263,55.81,118.09,0.13,981,0.8,242,1.5 +2013,8,8,10,30,9.700000000000001,1.1400000000000001,0.025900000000000003,0.67,0,0,0,0,2.3000000000000003,0,0,0,0,0.261,59.9,131.4,0.13,982,0.9,241,1.5 +2013,8,8,11,30,9.1,1.16,0.0263,0.67,0,0,0,0,2.6,0,0,0,0,0.26,63.980000000000004,144.62,0.13,982,1,241,1.4000000000000001 +2013,8,8,12,30,8.700000000000001,1.1500000000000001,0.0267,0.67,0,0,0,0,3,0,0,0,0,0.26,67.33,157.29,0.13,982,1.1,240,1.4000000000000001 +2013,8,8,13,30,8.3,1.1500000000000001,0.027200000000000002,0.67,0,0,0,0,3.3000000000000003,0,0,0,0,0.259,70.53,167.25,0.13,981,1.1,240,1.3 +2013,8,8,14,30,7.800000000000001,1.19,0.0284,0.67,0,0,0,0,3.5,0,0,0,0,0.259,74.05,166.03,0.13,981,1.1,241,1.3 +2013,8,8,15,30,7.4,1.2,0.031,0.67,0,0,0,0,3.6,0,0,0,0,0.259,76.71000000000001,155.22,0.13,981,1.1,243,1.2000000000000002 +2013,8,8,16,30,6.9,1.22,0.0328,0.67,0,0,0,0,3.7,0,0,0,0,0.259,79.81,142.39000000000001,0.13,981,1.1,243,1.1 +2013,8,8,17,30,6.5,1.26,0.0333,0.67,0,0,0,0,3.7,0,0,0,0,0.259,82.51,129.13,0.13,982,1.1,243,1 +2013,8,8,18,30,6.2,1.28,0.033100000000000004,0.67,0,0,0,0,3.8000000000000003,0,0,0,0,0.259,84.77,115.81,0.13,982,1.1,242,1 +2013,8,8,19,30,6,1.3,0.0328,0.67,0,0,0,1,3.9000000000000004,0,0,0,0,0.258,86.55,102.64,0.13,983,1,242,0.9 +2013,8,8,20,30,7.1000000000000005,1.33,0.032600000000000004,0.67,0,0,0,1,4.1000000000000005,0,0,0,0,0.256,81.14,89.31,0.13,984,1,241,1.2000000000000002 +2013,8,8,21,30,9.700000000000001,1.35,0.0324,0.67,43,656,187,1,4.6000000000000005,43,656,0,187,0.255,70.37,77.31,0.13,984,1,232,1.6 +2013,8,8,22,30,12.600000000000001,1.3800000000000001,0.0313,0.67,58,822,395,1,4.9,58,822,0,395,0.254,59.44,65.81,0.13,984,1,210,1.7000000000000002 +2013,8,8,23,30,14.200000000000001,1.4000000000000001,0.0302,0.67,66,899,572,1,5.5,66,899,0,572,0.253,55.82,55.67,0.13,985,1,196,1.7000000000000002 +2013,8,9,0,30,17.6,1.04,0.037200000000000004,0.67,75,923,695,0,6,75,923,0,695,0.252,46.660000000000004,47.85,0.13,984,1.1,181,1.7000000000000002 +2013,8,9,1,30,18.900000000000002,1.04,0.0376,0.67,78,939,758,0,6.2,78,939,0,758,0.251,43.38,43.6,0.13,983,1.1,190,1.5 +2013,8,9,2,30,19.8,1.03,0.0381,0.67,78,937,752,0,5.9,78,937,0,752,0.251,40.34,44,0.13,982,1.1,199,1.2000000000000002 +2013,8,9,3,30,20.200000000000003,1.06,0.0374,0.67,74,919,678,0,5.6000000000000005,74,919,0,678,0.25,38.5,48.93,0.13,982,1.1,207,0.9 +2013,8,9,4,30,20.200000000000003,1.04,0.037200000000000004,0.67,68,872,541,0,5.300000000000001,68,872,0,541,0.249,37.61,57.22,0.13,981,1.2000000000000002,226,0.6000000000000001 +2013,8,9,5,30,19.400000000000002,1.01,0.0374,0.67,58,785,357,0,5.4,58,785,0,357,0.248,39.75,67.64,0.13,982,1.2000000000000002,269,0.4 +2013,8,9,6,30,17,0.99,0.0381,0.67,41,585,149,1,8.200000000000001,41,585,0,149,0.247,55.99,79.3,0.13,982,1.2000000000000002,313,0.30000000000000004 +2013,8,9,7,30,14.600000000000001,0.97,0.0392,0.67,0,0,0,1,7.6000000000000005,0,0,0,0,0.247,62.79,91.86,0.13,983,1.3,329,0.4 +2013,8,9,8,30,13.5,0.9500000000000001,0.0402,0.67,0,0,0,0,6.800000000000001,0,0,0,0,0.246,63.980000000000004,104.8,0.13,984,1.3,323,0.5 +2013,8,9,9,30,12.8,0.9500000000000001,0.0407,0.67,0,0,0,0,6.300000000000001,0,0,0,0,0.247,64.52,118.01,0.13,984,1.4000000000000001,305,0.6000000000000001 +2013,8,9,10,30,11.8,0.96,0.0403,0.67,0,0,0,1,6,0,0,0,0,0.247,67.68,131.32,0.13,984,1.4000000000000001,290,0.7000000000000001 +2013,8,9,11,30,10.700000000000001,0.98,0.0391,0.67,0,0,0,0,5.7,0,0,0,0,0.248,71.37,144.53,0.13,984,1.4000000000000001,279,0.7000000000000001 +2013,8,9,12,30,9.9,1,0.0373,0.67,0,0,0,0,5.300000000000001,0,0,0,0,0.248,73.09,157.15,0.13,984,1.4000000000000001,267,0.7000000000000001 +2013,8,9,13,30,9.200000000000001,1.03,0.0356,0.67,0,0,0,0,4.800000000000001,0,0,0,0,0.247,73.96000000000001,167.01,0.13,984,1.4000000000000001,257,0.7000000000000001 +2013,8,9,14,30,8.700000000000001,1.07,0.035,0.67,0,0,0,0,4.3,0,0,0,0,0.247,73.63,165.77,0.13,984,1.4000000000000001,250,0.8 +2013,8,9,15,30,8.3,1.12,0.0347,0.67,0,0,0,0,3.8000000000000003,0,0,0,0,0.247,73.11,155.04,0.13,983,1.4000000000000001,247,0.8 +2013,8,9,16,30,8,1.16,0.0339,0.67,0,0,0,0,3.4000000000000004,0,0,0,0,0.247,72.5,142.24,0.13,983,1.4000000000000001,247,0.8 +2013,8,9,17,30,7.7,1.2,0.0333,0.67,0,0,0,1,3,0,0,0,0,0.246,72.36,128.98,0.13,983,1.4000000000000001,248,0.8 +2013,8,9,18,30,7.5,1.23,0.0328,0.67,0,0,0,1,2.8000000000000003,0,0,0,0,0.246,72.19,115.67,0.13,984,1.4000000000000001,249,0.8 +2013,8,9,19,30,7.4,1.23,0.0329,0.67,0,0,0,1,2.6,0,0,0,0,0.246,71.67,102.48,0.13,984,1.4000000000000001,250,0.8 +2013,8,9,20,30,8.8,1.24,0.033800000000000004,0.67,0,0,0,1,2.7,0,0,0,0,0.245,65.56,89.17,0.13,985,1.4000000000000001,250,1 +2013,8,9,21,30,11.600000000000001,1.24,0.0357,0.67,43,638,186,1,3.2,43,638,0,186,0.245,56.52,77.12,0.13,985,1.4000000000000001,250,1.2000000000000002 +2013,8,9,22,30,14.8,1.24,0.0376,0.67,60,801,391,1,3.5,60,801,0,391,0.246,46.74,65.59,0.13,985,1.4000000000000001,238,1.3 +2013,8,9,23,30,16.6,1.25,0.0396,0.67,70,872,565,0,4.1000000000000005,70,872,0,565,0.246,43.46,55.43,0.13,985,1.5,224,1.4000000000000001 +2013,8,10,0,30,20.8,1.24,0.041800000000000004,0.67,76,908,689,0,3.8000000000000003,76,908,0,689,0.247,32.79,47.57,0.13,984,1.5,182,1.4000000000000001 +2013,8,10,1,30,22.200000000000003,1.24,0.0439,0.67,80,919,749,0,4.3,80,919,0,749,0.247,31.080000000000002,43.31,0.13,984,1.6,170,1.3 +2013,8,10,2,30,23,1.26,0.046200000000000005,0.67,80,913,740,0,5.2,80,913,0,740,0.248,31.5,43.72,0.13,983,1.7000000000000002,163,1.2000000000000002 +2013,8,10,3,30,23.200000000000003,1.4000000000000001,0.0475,0.67,78,892,667,0,6.1000000000000005,78,892,0,667,0.249,33.15,48.69,0.13,983,1.7000000000000002,157,1 +2013,8,10,4,30,23,1.44,0.0494,0.67,72,843,531,0,6.800000000000001,72,843,0,531,0.249,35.160000000000004,57.03,0.13,983,1.8,150,0.8 +2013,8,10,5,30,21.8,1.48,0.0512,0.67,62,749,349,0,7.5,62,749,0,349,0.25,39.67,67.48,0.13,983,1.9000000000000001,129,0.5 +2013,8,10,6,30,19.5,1.5,0.053500000000000006,0.67,42,544,144,1,10.700000000000001,42,544,0,144,0.25,56.95,79.17,0.13,984,2,105,0.4 +2013,8,10,7,30,17.5,1.52,0.0545,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.251,59.97,91.75,0.13,984,2,110,0.30000000000000004 +2013,8,10,8,30,16.3,1.52,0.053700000000000005,0.67,0,0,0,0,9,0,0,0,0,0.251,61.84,104.71000000000001,0.13,985,2,190,0.2 +2013,8,10,9,30,15.3,1.51,0.052700000000000004,0.67,0,0,0,1,9,0,0,0,0,0.252,66.25,117.92,0.13,985,2,268,0.30000000000000004 +2013,8,10,10,30,14.5,1.49,0.0521,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.253,70.42,131.23,0.13,986,2,275,0.5 +2013,8,10,11,30,13.700000000000001,1.45,0.0517,0.67,0,0,0,0,9.1,0,0,0,0,0.253,73.82000000000001,144.43,0.13,986,2,267,0.7000000000000001 +2013,8,10,12,30,12.8,1.42,0.0516,0.67,0,0,0,0,8.9,0,0,0,0,0.254,77.31,157.02,0.13,986,2,258,0.8 +2013,8,10,13,30,12.100000000000001,1.37,0.0516,0.67,0,0,0,0,8.700000000000001,0,0,0,0,0.254,79.56,166.76,0.13,986,2,250,0.8 +2013,8,10,14,30,11.5,1.33,0.0514,0.67,0,0,0,0,8.3,0,0,0,0,0.255,80.9,165.5,0.13,985,2,242,0.9 +2013,8,10,15,30,11.100000000000001,1.28,0.0505,0.67,0,0,0,0,7.9,0,0,0,0,0.255,80.85000000000001,154.86,0.13,985,1.9000000000000001,233,0.9 +2013,8,10,16,30,10.700000000000001,1.22,0.0507,0.67,0,0,0,0,7.5,0,0,0,0,0.255,80.4,142.08,0.13,985,1.9000000000000001,226,0.8 +2013,8,10,17,30,10.3,1.17,0.051800000000000006,0.67,0,0,0,0,7,0,0,0,0,0.256,80.01,128.84,0.13,985,1.8,222,0.8 +2013,8,10,18,30,9.9,1.12,0.052500000000000005,0.67,0,0,0,1,6.7,0,0,0,0,0.256,80.3,115.52,0.13,985,1.7000000000000002,221,0.8 +2013,8,10,19,30,9.700000000000001,1.07,0.0529,0.67,0,0,0,4,6.300000000000001,0,0,0,0,0.256,79.61,102.32000000000001,0.13,986,1.7000000000000002,222,0.8 +2013,8,10,20,30,10.8,1.03,0.0534,0.67,0,0,0,3,6.2,0,0,3,0,0.256,73.33,89.02,0.13,986,1.7000000000000002,225,0.9 +2013,8,10,21,30,13.5,0.99,0.054,0.67,48,594,183,3,6.9,97,60,3,111,0.256,64.56,76.93,0.13,987,1.7000000000000002,233,0.9 +2013,8,10,22,30,16.7,0.96,0.0545,0.67,67,767,386,1,6.7,67,767,0,386,0.256,51.63,65.37,0.13,987,1.7000000000000002,249,0.7000000000000001 +2013,8,10,23,30,18.400000000000002,0.9500000000000001,0.0546,0.67,77,847,561,0,7.300000000000001,77,847,0,561,0.257,48.42,55.18,0.13,987,1.7000000000000002,259,0.7000000000000001 +2013,8,11,0,30,22.1,0.92,0.0575,0.67,85,885,685,0,7.4,85,885,0,685,0.257,38.72,47.29,0.13,986,1.7000000000000002,252,0.8 +2013,8,11,1,30,23.400000000000002,0.91,0.0577,0.67,88,905,749,0,7.6000000000000005,88,905,0,749,0.256,36.33,43.01,0.13,985,1.6,249,0.7000000000000001 +2013,8,11,2,30,24.1,0.91,0.0567,0.67,87,902,741,0,8,87,902,0,741,0.256,35.69,43.44,0.13,984,1.7000000000000002,248,0.6000000000000001 +2013,8,11,3,30,24.400000000000002,1.01,0.0446,0.67,78,894,671,0,8.4,78,894,0,671,0.256,36.050000000000004,48.45,0.13,983,1.7000000000000002,245,0.5 +2013,8,11,4,30,24.200000000000003,1,0.046400000000000004,0.67,72,845,534,0,8.700000000000001,72,845,0,534,0.255,37.2,56.83,0.13,983,1.8,245,0.4 +2013,8,11,5,30,23.1,0.99,0.049800000000000004,0.67,63,748,351,0,9.1,63,748,0,351,0.254,40.97,67.32000000000001,0.13,983,1.9000000000000001,160,0.30000000000000004 +2013,8,11,6,30,20.700000000000003,1,0.052000000000000005,0.67,43,540,146,1,11.600000000000001,43,540,0,146,0.254,55.85,79.05,0.13,983,2,71,0.4 +2013,8,11,7,30,18.400000000000002,1,0.0507,0.67,0,0,0,0,11.4,0,0,0,0,0.255,63.54,91.65,0.13,983,1.9000000000000001,63,0.6000000000000001 +2013,8,11,8,30,16.900000000000002,1.01,0.049100000000000005,0.67,0,0,0,0,11,0,0,0,0,0.255,67.98,104.62,0.13,984,1.9000000000000001,48,0.7000000000000001 +2013,8,11,9,30,15.8,1.03,0.048,0.67,0,0,0,0,10.8,0,0,0,0,0.254,72.41,117.84,0.13,984,1.9000000000000001,30,0.7000000000000001 +2013,8,11,10,30,14.8,1.06,0.047400000000000005,0.67,0,0,0,0,10.8,0,0,0,0,0.254,77.03,131.15,0.13,984,1.8,13,0.7000000000000001 +2013,8,11,11,30,14,1.1,0.047900000000000005,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.253,80.36,144.34,0.13,984,1.8,180,0.8 +2013,8,11,12,30,13.3,1.1400000000000001,0.0487,0.67,0,0,0,0,10.5,0,0,0,0,0.251,83.16,156.88,0.13,984,1.7000000000000002,349,0.8 +2013,8,11,13,30,12.700000000000001,1.17,0.049800000000000004,0.67,0,0,0,0,10.3,0,0,0,0,0.25,85.34,166.5,0.13,984,1.7000000000000002,338,0.9 +2013,8,11,14,30,12,1.2,0.0519,0.67,0,0,0,0,10,0,0,0,0,0.249,87.44,165.23,0.13,983,1.6,327,0.9 +2013,8,11,15,30,11.5,1.23,0.0546,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.249,88.3,154.66,0.13,983,1.6,317,0.8 +2013,8,11,16,30,11,1.26,0.057100000000000005,0.67,0,0,0,0,9.3,0,0,0,0,0.248,89.3,141.92000000000002,0.13,982,1.7000000000000002,307,0.8 +2013,8,11,17,30,10.600000000000001,1.31,0.0579,0.67,0,0,0,0,8.9,0,0,0,0,0.249,89.39,128.68,0.13,982,1.7000000000000002,301,0.9 +2013,8,11,18,30,10.200000000000001,1.35,0.057100000000000005,0.67,0,0,0,0,8.6,0,0,0,0,0.249,89.96000000000001,115.37,0.13,983,1.8,298,0.9 +2013,8,11,19,30,10,1.4000000000000001,0.055600000000000004,0.67,0,0,0,0,8.5,0,0,0,0,0.249,90.17,102.16,0.13,983,1.8,297,0.8 +2013,8,11,20,30,11.4,1.44,0.0539,0.67,10,130,13,1,8.5,10,130,0,13,0.249,82.61,88.86,0.13,983,1.9000000000000001,297,1 +2013,8,11,21,30,14.100000000000001,1.47,0.0521,0.67,47,606,186,1,9.1,47,606,0,186,0.249,71.89,76.73,0.13,983,1.9000000000000001,301,1.4000000000000001 +2013,8,11,22,30,17.3,1.49,0.0502,0.67,64,775,390,0,9.5,64,775,0,390,0.249,60.050000000000004,65.15,0.13,983,1.9000000000000001,307,1.9000000000000001 +2013,8,11,23,30,19,1.51,0.0489,0.67,73,855,564,0,9.9,73,855,0,564,0.249,55.550000000000004,54.93,0.13,983,1.9000000000000001,310,2.2 +2013,8,12,0,30,22.5,1.31,0.0551,0.67,83,887,688,0,10,83,887,0,688,0.248,44.92,47,0.14,982,1.9000000000000001,312,2.6 +2013,8,12,1,30,23.900000000000002,1.32,0.057,0.67,86,902,749,0,10,86,902,0,749,0.247,41.54,42.71,0.14,981,1.9000000000000001,311,2.7 +2013,8,12,2,30,24.6,1.33,0.059500000000000004,0.67,87,899,742,0,10.100000000000001,87,899,0,742,0.247,40.08,43.160000000000004,0.14,979,1.9000000000000001,311,2.8000000000000003 +2013,8,12,3,30,24.8,1.54,0.0534,0.67,80,885,670,0,10.3,80,885,0,670,0.247,40.11,48.21,0.14,979,1.9000000000000001,311,2.7 +2013,8,12,4,30,24.6,1.53,0.059000000000000004,0.67,76,834,535,0,10.700000000000001,76,834,0,535,0.247,41.52,56.64,0.14,978,1.9000000000000001,312,2.4000000000000004 +2013,8,12,5,30,23.400000000000002,1.53,0.0645,0.67,66,737,352,0,11.100000000000001,66,737,0,352,0.248,45.79,67.17,0.14,978,1.9000000000000001,316,1.7000000000000002 +2013,8,12,6,30,21,1.51,0.0698,0.67,45,527,147,0,12.5,45,527,0,147,0.248,58.300000000000004,78.92,0.14,978,1.9000000000000001,322,1.2000000000000002 +2013,8,12,7,30,19,1.44,0.0763,0.67,0,0,0,0,11.8,0,0,0,0,0.249,62.92,91.54,0.14,979,1.9000000000000001,325,1.1 +2013,8,12,8,30,18,1.31,0.0814,0.67,0,0,0,0,11.4,0,0,0,0,0.249,65.54,104.53,0.14,980,2,327,1 +2013,8,12,9,30,17.2,1.18,0.0834,0.67,0,0,0,0,11.100000000000001,0,0,0,0,0.248,67.52,117.76,0.14,980,2,326,1 +2013,8,12,10,30,16.400000000000002,1.06,0.0839,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.248,69.13,131.07,0.14,980,2,320,1 +2013,8,12,11,30,15.700000000000001,0.98,0.0848,0.67,0,0,0,0,10.4,0,0,0,0,0.248,70.57000000000001,144.24,0.14,981,2,310,1 +2013,8,12,12,30,15,0.93,0.0863,0.67,0,0,0,0,10.100000000000001,0,0,0,0,0.249,72.41,156.74,0.14,981,2,298,1 +2013,8,12,13,30,14.200000000000001,0.91,0.08660000000000001,0.67,0,0,0,0,9.9,0,0,0,0,0.249,75.16,166.24,0.14,981,1.9000000000000001,288,0.9 +2013,8,12,14,30,13.5,0.93,0.08600000000000001,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.249,77.44,164.96,0.14,981,1.9000000000000001,283,0.9 +2013,8,12,15,30,13,0.9400000000000001,0.0849,0.67,0,0,0,0,9.4,0,0,0,0,0.249,78.78,154.46,0.14,981,1.8,283,0.9 +2013,8,12,16,30,12.600000000000001,0.9500000000000001,0.08420000000000001,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.249,79.62,141.76,0.14,980,1.8,281,0.9 +2013,8,12,17,30,12.200000000000001,0.96,0.08510000000000001,0.67,0,0,0,0,9,0,0,0,0,0.249,80.74,128.53,0.14,981,1.7000000000000002,278,0.9 +2013,8,12,18,30,11.9,0.9500000000000001,0.08660000000000001,0.67,0,0,0,0,8.8,0,0,0,0,0.249,81.46000000000001,115.21000000000001,0.14,981,1.7000000000000002,275,0.9 +2013,8,12,19,30,11.700000000000001,0.93,0.08850000000000001,0.67,0,0,0,0,8.700000000000001,0,0,0,0,0.249,81.82000000000001,101.99000000000001,0.14,982,1.6,271,0.8 +2013,8,12,20,30,13,0.9,0.0916,0.67,11,67,13,0,8.700000000000001,11,67,0,13,0.249,75.16,88.7,0.14,983,1.5,270,1 +2013,8,12,21,30,15.600000000000001,0.87,0.094,0.67,59,538,184,0,9.4,59,538,1,184,0.25,66.73,76.54,0.14,983,1.5,268,1.3 +2013,8,12,22,30,18.6,0.84,0.0951,0.67,83,726,390,0,9.4,83,726,0,390,0.249,55.15,64.93,0.14,983,1.4000000000000001,258,1.5 +2013,8,12,23,30,20.200000000000003,0.81,0.0946,0.67,96,814,567,0,9.5,96,814,0,567,0.249,50.17,54.67,0.14,983,1.4000000000000001,251,1.5 +2013,8,13,0,30,23.6,0.86,0.0651,0.67,89,889,699,0,9.1,89,889,0,699,0.249,39.71,46.71,0.13,983,1.4000000000000001,223,1.4000000000000001 +2013,8,13,1,30,24.8,0.88,0.06570000000000001,0.67,92,906,761,0,8.8,92,906,0,761,0.249,36.13,42.410000000000004,0.13,982,1.4000000000000001,214,1.1 +2013,8,13,2,30,25.3,0.9,0.0659,0.67,92,905,755,0,8.5,92,905,0,755,0.248,34.480000000000004,42.87,0.13,981,1.4000000000000001,214,0.9 +2013,8,13,3,30,25.200000000000003,0.96,0.0568,0.67,83,891,680,0,8.4,83,891,0,680,0.248,34.44,47.96,0.13,981,1.5,218,0.7000000000000001 +2013,8,13,4,30,24.6,0.99,0.058300000000000005,0.67,77,843,543,0,8.6,77,843,0,543,0.247,36.08,56.44,0.13,981,1.5,219,0.5 +2013,8,13,5,30,23.1,0.98,0.0589,0.67,66,748,358,0,9,66,748,0,358,0.247,40.730000000000004,67.01,0.13,981,1.6,171,0.4 +2013,8,13,6,30,20.400000000000002,0.97,0.059500000000000004,0.67,46,543,151,0,11.600000000000001,46,543,0,151,0.247,56.92,78.8,0.13,982,1.6,128,0.5 +2013,8,13,7,30,17.900000000000002,0.9500000000000001,0.061000000000000006,0.67,0,0,0,0,12.4,0,0,0,0,0.247,70.21000000000001,91.44,0.13,983,1.7000000000000002,131,0.7000000000000001 +2013,8,13,8,30,16.3,0.91,0.0646,0.67,0,0,0,0,12.3,0,0,0,0,0.247,77.28,104.44,0.13,984,1.7000000000000002,127,0.8 +2013,8,13,9,30,15.4,0.86,0.06960000000000001,0.67,0,0,0,0,12.4,0,0,0,0,0.247,82.35000000000001,117.68,0.13,985,1.8,117,0.8 +2013,8,13,10,30,14.700000000000001,0.81,0.0745,0.67,0,0,0,0,12.5,0,0,0,0,0.248,86.45,130.99,0.13,985,1.8,105,0.8 +2013,8,13,11,30,14.200000000000001,0.75,0.08020000000000001,0.67,0,0,0,0,12.600000000000001,0,0,0,0,0.248,90.12,144.14000000000001,0.13,985,1.8,92,0.8 +2013,8,13,12,30,13.8,0.7000000000000001,0.0897,0.67,0,0,0,0,12.9,0,0,0,0,0.249,94.36,156.59,0.13,985,1.8,78,0.8 +2013,8,13,13,30,13.600000000000001,0.6900000000000001,0.0985,0.67,0,0,0,0,13.3,0,0,0,0,0.249,98.27,165.98,0.13,985,1.8,67,0.8 +2013,8,13,14,30,13.5,0.67,0.1034,0.67,0,0,0,0,13.5,0,0,0,0,0.249,100,164.67000000000002,0.13,985,1.8,59,0.7000000000000001 +2013,8,13,15,30,13.5,0.6900000000000001,0.11320000000000001,0.67,0,0,0,0,13.5,0,0,0,0,0.249,100,154.26,0.13,984,1.9000000000000001,54,0.7000000000000001 +2013,8,13,16,30,13.4,0.7000000000000001,0.11900000000000001,0.67,0,0,0,0,13.4,0,0,0,0,0.249,100,141.58,0.13,984,1.9000000000000001,50,0.7000000000000001 +2013,8,13,17,30,13.3,0.6900000000000001,0.1173,0.67,0,0,0,0,13.3,0,0,0,0,0.249,100,128.37,0.13,984,2,46,0.7000000000000001 +2013,8,13,18,30,13.3,0.71,0.1273,0.67,0,0,0,0,13.3,0,0,0,0,0.249,100,115.05,0.13,984,2,40,0.7000000000000001 +2013,8,13,19,30,13.4,0.72,0.1361,0.67,0,0,0,1,13.4,0,0,0,0,0.249,100,101.82000000000001,0.13,984,2.1,35,0.7000000000000001 +2013,8,13,20,30,14.4,0.7000000000000001,0.14020000000000002,0.67,12,29,13,1,14.3,12,29,0,13,0.248,99.57000000000001,88.53,0.13,984,2.2,32,0.7000000000000001 +2013,8,13,21,30,16.6,0.73,0.1537,0.67,74,433,176,1,14.8,74,433,0,176,0.248,89.19,76.33,0.13,985,2.3000000000000003,28,0.9 +2013,8,13,22,30,18.900000000000002,0.8,0.16110000000000002,0.67,105,625,373,1,15.5,105,625,0,373,0.248,80.88,64.69,0.13,985,2.4000000000000004,20,1.3 +2013,8,13,23,30,20,0.85,0.1567,0.67,121,727,544,1,15.9,121,727,0,544,0.248,77.2,54.4,0.13,985,2.5,15,1.5 +2013,8,14,0,30,22.1,0.91,0.13490000000000002,0.67,120,796,669,1,16,120,796,0,669,0.248,68.26,46.42,0.13,983,2.6,176,1.6 +2013,8,14,1,30,23.1,0.97,0.1369,0.67,125,814,728,1,16.1,125,814,0,728,0.249,64.73,42.1,0.13,982,2.7,345,1.7000000000000002 +2013,8,14,2,30,23.700000000000003,1,0.1428,0.67,126,804,718,1,16,126,804,0,718,0.249,61.95,42.58,0.13,981,2.9000000000000004,337,1.8 +2013,8,14,3,30,23.700000000000003,1,0.14400000000000002,0.67,122,776,643,1,15.8,122,776,0,643,0.249,61.29,47.72,0.13,980,3,337,1.7000000000000002 +2013,8,14,4,30,23.3,1.04,0.1593,0.67,116,705,508,1,15.9,116,705,0,508,0.249,63.24,56.24,0.13,980,3.1,343,1.3 +2013,8,14,5,30,22.5,1.07,0.14550000000000002,0.67,93,611,333,7,16.400000000000002,188,52,0,208,0.249,68.46000000000001,66.85,0.13,980,3.1,175,0.9 +2013,8,14,6,30,20.900000000000002,1.11,0.1393,0.67,59,400,138,7,17.3,74,28,3,79,0.249,79.65,78.67,0.13,980,3,180,0.8 +2013,8,14,7,30,19.5,1.12,0.1252,0.67,0,0,0,7,16.7,0,0,0,0,0.249,83.88,91.33,0.13,980,2.9000000000000004,357,0.9 +2013,8,14,8,30,18.7,1.1,0.11800000000000001,0.67,0,0,0,7,16.400000000000002,0,0,0,0,0.249,86.29,104.35000000000001,0.13,980,2.9000000000000004,350,0.9 +2013,8,14,9,30,18.3,1.06,0.1153,0.67,0,0,0,7,16.1,0,0,0,0,0.249,87.03,117.60000000000001,0.13,981,2.8000000000000003,336,0.8 +2013,8,14,10,30,17.6,1.02,0.10640000000000001,0.67,0,0,0,7,15.700000000000001,0,0,0,0,0.249,88.51,130.9,0.13,981,2.7,314,0.8 +2013,8,14,11,30,16.6,1,0.0917,0.67,0,0,0,7,15,0,0,0,0,0.249,90.33,144.04,0.13,981,2.6,297,0.8 +2013,8,14,12,30,15.700000000000001,0.97,0.0857,0.67,0,0,0,7,14.200000000000001,0,0,0,0,0.25,91.09,156.44,0.13,981,2.3000000000000003,287,0.9 +2013,8,14,13,30,14.8,0.92,0.0849,0.67,0,0,0,7,13.4,0,0,0,0,0.25,91.19,165.71,0.13,981,2.1,280,0.9 +2013,8,14,14,30,14.200000000000001,0.89,0.0854,0.67,0,0,0,7,12.5,0,0,0,0,0.251,89.29,164.39000000000001,0.13,981,1.9000000000000001,276,0.9 +2013,8,14,15,30,13.600000000000001,0.89,0.08370000000000001,0.67,0,0,0,8,11.5,0,0,0,0,0.251,87.24,154.05,0.13,981,1.8,277,0.9 +2013,8,14,16,30,13,0.9400000000000001,0.0747,0.67,0,0,0,8,10.600000000000001,0,0,0,0,0.253,85.45,141.41,0.13,981,1.6,280,0.9 +2013,8,14,17,30,12.4,1.04,0.059800000000000006,0.67,0,0,0,1,9.700000000000001,0,0,0,0,0.255,83.5,128.2,0.13,982,1.5,282,0.9 +2013,8,14,18,30,11.8,1.08,0.0494,0.67,0,0,0,0,9,0,0,0,0,0.257,82.81,114.88,0.13,982,1.4000000000000001,282,0.9 +2013,8,14,19,30,11.4,1.04,0.0477,0.67,0,0,0,0,8.3,0,0,0,0,0.259,81.36,101.65,0.13,983,1.4000000000000001,279,0.8 +2013,8,14,20,30,12.4,0.99,0.048100000000000004,0.67,13,164,18,1,8,13,164,0,18,0.261,74.54,88.36,0.13,984,1.2000000000000002,270,1.1 +2013,8,14,21,30,14.600000000000001,0.96,0.047,0.67,49,644,203,0,8.200000000000001,49,644,0,203,0.262,65.44,76.12,0.13,985,1.1,253,1.7000000000000002 +2013,8,14,22,30,17.1,0.92,0.045700000000000005,0.67,65,817,417,0,7.2,65,817,0,417,0.263,51.97,64.46000000000001,0.13,985,0.9,235,2.3000000000000003 +2013,8,14,23,30,18.400000000000002,0.87,0.0451,0.67,75,892,598,0,6.5,75,892,0,598,0.264,45.75,54.14,0.13,985,0.9,229,2.5 +2013,8,15,0,30,20.400000000000002,0.87,0.0438,0.67,80,936,729,0,5.9,80,936,0,729,0.265,38.71,46.12,0.14,985,0.8,235,2.8000000000000003 +2013,8,15,1,30,21.1,0.89,0.043300000000000005,0.67,83,958,797,0,4.800000000000001,83,958,0,797,0.265,34.31,41.78,0.14,984,0.7000000000000001,238,2.8000000000000003 +2013,8,15,2,30,21.5,0.9500000000000001,0.041100000000000005,0.67,81,965,794,0,3,81,965,0,794,0.264,29.68,42.28,0.14,983,0.6000000000000001,237,2.6 +2013,8,15,3,30,21.5,1.04,0.0386,0.67,76,956,722,0,1.4000000000000001,76,956,0,722,0.264,26.330000000000002,47.47,0.14,983,0.5,232,2.3000000000000003 +2013,8,15,4,30,21.200000000000003,1.07,0.0379,0.67,70,915,581,0,0.4,70,915,0,581,0.263,24.97,56.04,0.14,983,0.5,223,1.8 +2013,8,15,5,30,20,1.08,0.0368,0.67,59,834,389,0,0.30000000000000004,59,834,0,389,0.263,26.740000000000002,66.7,0.14,983,0.5,206,1.2000000000000002 +2013,8,15,6,30,17.400000000000002,1.22,0.0322,0.67,40,651,170,1,4.1000000000000005,40,651,0,170,0.263,41.28,78.54,0.14,984,0.6000000000000001,183,0.9 +2013,8,15,7,30,14.9,1.19,0.0318,0.67,0,0,0,0,4.6000000000000005,0,0,0,0,0.263,50.230000000000004,91.23,0.14,985,0.6000000000000001,164,1 +2013,8,15,8,30,13.4,1.1300000000000001,0.0327,0.67,0,0,0,0,4.800000000000001,0,0,0,0,0.263,56.01,104.26,0.14,986,0.7000000000000001,148,1.2000000000000002 +2013,8,15,9,30,12.200000000000001,1.04,0.0351,0.67,0,0,0,0,5.300000000000001,0,0,0,0,0.263,62.63,117.51,0.14,987,0.7000000000000001,135,1.1 +2013,8,15,10,30,11.4,0.96,0.0375,0.67,0,0,0,0,5.800000000000001,0,0,0,0,0.262,68.62,130.82,0.14,988,0.8,131,1 +2013,8,15,11,30,11,0.88,0.039900000000000005,0.67,0,0,0,0,6.2,0,0,0,0,0.262,72.11,143.94,0.14,989,0.8,133,1 +2013,8,15,12,30,10.600000000000001,0.8300000000000001,0.041800000000000004,0.67,0,0,0,0,6.6000000000000005,0,0,0,0,0.262,76.46000000000001,156.29,0.14,989,0.8,139,0.9 +2013,8,15,13,30,10,0.81,0.042800000000000005,0.67,0,0,0,0,6.800000000000001,0,0,0,0,0.262,80.64,165.44,0.14,989,0.8,147,0.9 +2013,8,15,14,30,9.3,0.8,0.043300000000000005,0.67,0,0,0,0,6.800000000000001,0,0,0,0,0.26,84.57000000000001,164.1,0.14,989,0.8,156,0.8 +2013,8,15,15,30,8.8,0.8,0.0434,0.67,0,0,0,0,6.6000000000000005,0,0,0,0,0.258,86.14,153.83,0.14,989,0.8,161,0.8 +2013,8,15,16,30,8.3,0.81,0.0429,0.67,0,0,0,0,6.300000000000001,0,0,0,0,0.257,87.29,141.23,0.14,989,0.8,163,0.8 +2013,8,15,17,30,7.9,0.8200000000000001,0.0417,0.67,0,0,0,0,6.1000000000000005,0,0,0,0,0.256,88.25,128.03,0.14,989,0.8,161,0.8 +2013,8,15,18,30,7.5,0.8300000000000001,0.041,0.67,0,0,0,0,6.1000000000000005,0,0,0,0,0.255,90.63,114.71000000000001,0.14,990,0.8,161,0.8 +2013,8,15,19,30,7.4,0.8300000000000001,0.0407,0.67,0,0,0,0,6.2,0,0,0,0,0.255,92.03,101.47,0.14,990,0.8,162,0.8 +2013,8,15,20,30,8.700000000000001,0.8200000000000001,0.041100000000000005,0.67,14,191,20,1,6.4,14,191,0,20,0.254,85.38,88.18,0.14,991,0.9,165,0.9 +2013,8,15,21,30,11.5,0.8200000000000001,0.041100000000000005,0.67,49,665,211,1,6.800000000000001,49,665,0,211,0.254,72.92,75.91,0.14,991,0.9,154,1.2000000000000002 +2013,8,15,22,30,14.600000000000001,0.8300000000000001,0.04,0.67,64,821,422,1,7.5,64,821,0,422,0.254,62.46,64.22,0.14,991,1,127,1.6 +2013,8,15,23,30,16.1,0.86,0.039400000000000004,0.67,73,896,602,1,8,73,896,0,602,0.254,58.75,53.870000000000005,0.14,991,1,114,1.9000000000000001 +2013,8,16,0,30,18.3,0.8300000000000001,0.053700000000000005,0.67,86,914,723,0,7.800000000000001,86,914,0,723,0.253,50.49,45.82,0.14,990,1.1,94,2 +2013,8,16,1,30,19.200000000000003,0.88,0.058600000000000006,0.67,90,926,785,1,7.800000000000001,90,926,0,785,0.252,47.63,41.47,0.14,989,1.1,84,2 +2013,8,16,2,30,19.6,0.91,0.063,0.67,92,917,774,1,7.800000000000001,92,917,0,774,0.251,46.57,41.99,0.14,988,1.2000000000000002,76,2 +2013,8,16,3,30,19.700000000000003,0.89,0.061000000000000006,0.67,88,899,698,1,7.9,88,899,0,698,0.251,46.56,47.22,0.14,987,1.2000000000000002,71,1.9000000000000001 +2013,8,16,4,30,19.3,0.91,0.0637,0.67,82,850,559,1,8,82,850,0,559,0.25,47.86,55.84,0.14,987,1.2000000000000002,68,1.8 +2013,8,16,5,30,18.400000000000002,0.92,0.0644,0.67,70,758,371,1,8,70,758,0,371,0.248,50.730000000000004,66.54,0.14,987,1.2000000000000002,66,1.5 +2013,8,16,6,30,16.5,0.9500000000000001,0.0664,0.67,49,552,159,1,8.8,49,552,0,159,0.248,60.29,78.42,0.14,987,1.2000000000000002,67,1 +2013,8,16,7,30,14.5,0.98,0.065,0.67,0,0,0,0,9.5,0,0,0,0,0.248,71.96000000000001,91.12,0.14,987,1.2000000000000002,69,0.7000000000000001 +2013,8,16,8,30,13.5,0.98,0.0614,0.67,0,0,0,0,9.3,0,0,0,0,0.247,75.66,104.17,0.14,987,1.2000000000000002,66,0.8 +2013,8,16,9,30,12.700000000000001,0.98,0.0601,0.67,0,0,0,0,9.1,0,0,0,0,0.247,78.98,117.43,0.14,988,1.3,62,0.8 +2013,8,16,10,30,12.100000000000001,0.99,0.0601,0.67,0,0,0,0,9.1,0,0,0,0,0.247,81.77,130.73,0.14,988,1.3,54,0.8 +2013,8,16,11,30,11.700000000000001,0.98,0.060500000000000005,0.67,0,0,0,1,9.1,0,0,0,0,0.247,83.94,143.84,0.14,988,1.5,43,0.8 +2013,8,16,12,30,11.200000000000001,0.98,0.06330000000000001,0.67,0,0,0,7,9.200000000000001,0,0,0,0,0.247,87.34,156.13,0.14,988,1.6,30,0.8 +2013,8,16,13,30,10.8,0.99,0.0651,0.67,0,0,0,7,9.3,0,0,0,0,0.247,90.39,165.16,0.14,987,1.8,17,0.8 +2013,8,16,14,30,10.5,1,0.0671,0.67,0,0,0,8,9.5,0,0,0,0,0.246,93.32000000000001,163.8,0.14,986,2,185,0.8 +2013,8,16,15,30,10.5,1,0.0742,0.67,0,0,0,7,9.700000000000001,0,0,0,0,0.245,94.55,153.61,0.14,986,2.2,356,0.8 +2013,8,16,16,30,10.600000000000001,1,0.08080000000000001,0.67,0,0,0,8,9.8,0,0,0,0,0.244,94.92,141.04,0.14,985,2.4000000000000004,350,0.7000000000000001 +2013,8,16,17,30,10.600000000000001,0.98,0.0869,0.67,0,0,0,8,10,0,0,0,0,0.244,95.89,127.85000000000001,0.14,985,2.5,344,0.7000000000000001 +2013,8,16,18,30,10.4,0.9500000000000001,0.094,0.67,0,0,0,3,10.100000000000001,0,0,0,0,0.244,98.05,114.53,0.14,985,2.6,336,0.7000000000000001 +2013,8,16,19,30,10.4,0.9400000000000001,0.1024,0.67,0,0,0,8,10.200000000000001,0,0,0,0,0.244,98.85000000000001,101.29,0.14,986,2.6,331,0.7000000000000001 +2013,8,16,20,30,11.4,0.97,0.1096,0.67,15,81,17,7,10.3,11,0,3,11,0.243,93.15,88,0.14,986,2.6,333,0.8 +2013,8,16,21,30,13.5,1.02,0.11320000000000001,0.67,64,510,190,7,10.700000000000001,106,54,3,120,0.243,83.22,75.7,0.14,986,2.6,340,1.2000000000000002 +2013,8,16,22,30,16.1,1.06,0.11560000000000001,0.67,89,688,390,7,11.100000000000001,231,81,0,266,0.243,72.10000000000001,63.980000000000004,0.14,986,2.6,345,1.8 +2013,8,16,23,30,17.5,1.07,0.11910000000000001,0.67,104,773,563,3,11,354,129,0,431,0.243,65.73,53.59,0.14,986,2.6,346,2.2 +2013,8,17,0,30,20.5,1.1500000000000001,0.1061,0.67,106,830,688,3,11,439,209,0,586,0.243,54.54,45.51,0.14,985,2.6,338,2.2 +2013,8,17,1,30,22,1.16,0.1115,0.67,112,844,748,0,11.3,112,844,0,748,0.243,50.61,41.14,0.14,984,2.6,332,2.2 +2013,8,17,2,30,23.1,1.17,0.1173,0.67,114,836,738,1,11.5,114,836,0,738,0.242,48.120000000000005,41.69,0.14,983,2.7,329,2.2 +2013,8,17,3,30,23.6,1.16,0.115,0.67,108,812,663,3,11.8,423,130,0,512,0.243,47.68,46.97,0.14,982,2.8000000000000003,329,2.2 +2013,8,17,4,30,23.400000000000002,1.1400000000000001,0.113,0.67,99,760,528,4,12.3,143,24,0,156,0.243,49.59,55.65,0.14,981,2.9000000000000004,332,2 +2013,8,17,5,30,22.400000000000002,1.1500000000000001,0.108,0.67,82,664,348,1,12.9,82,664,0,348,0.243,54.84,66.38,0.14,981,3,341,1.5 +2013,8,17,6,30,20.200000000000003,1.19,0.1053,0.67,54,458,148,1,14.5,54,458,0,148,0.244,69.69,78.29,0.14,982,3,354,1 +2013,8,17,7,30,18.2,1.2,0.10540000000000001,0.67,0,0,0,1,14.700000000000001,0,0,0,0,0.245,79.97,91.02,0.14,982,3,181,0.9 +2013,8,17,8,30,17.3,1.19,0.1052,0.67,0,0,0,4,14.8,0,0,0,0,0.246,85.43,104.08,0.14,983,3.1,180,0.8 +2013,8,17,9,30,16.900000000000002,1.16,0.117,0.67,0,0,0,4,14.9,0,0,0,0,0.246,88.21000000000001,117.35000000000001,0.14,983,3.3000000000000003,335,0.7000000000000001 +2013,8,17,10,30,16.7,1.1300000000000001,0.1563,0.67,0,0,0,4,15.3,0,0,0,0,0.247,91.36,130.65,0.14,984,3.4000000000000004,308,0.6000000000000001 +2013,8,17,11,30,16.2,1.1,0.18100000000000002,0.67,0,0,0,0,15.4,0,0,0,0,0.249,94.72,143.73,0.14,984,3.2,320,0.6000000000000001 +2013,8,17,12,30,15.5,1.09,0.1558,0.67,0,0,0,0,15,0,0,0,0,0.25,96.87,155.97,0.14,984,2.9000000000000004,334,0.7000000000000001 +2013,8,17,13,30,14.9,1.05,0.12050000000000001,0.67,0,0,0,0,14.600000000000001,0,0,0,0,0.25,98.18,164.88,0.14,984,2.6,315,0.7000000000000001 +2013,8,17,14,30,14.4,1.01,0.10350000000000001,0.67,0,0,0,0,14.4,0,0,0,0,0.25,99.77,163.5,0.14,983,2.4000000000000004,293,0.7000000000000001 +2013,8,17,15,30,13.9,0.98,0.0937,0.67,0,0,0,0,13.9,0,0,0,0,0.25,100,153.38,0.14,983,2.2,274,0.7000000000000001 +2013,8,17,16,30,13.5,0.9500000000000001,0.08950000000000001,0.67,0,0,0,0,13.5,0,0,0,0,0.25,100,140.85,0.14,983,2,259,0.7000000000000001 +2013,8,17,17,30,13.200000000000001,0.91,0.0884,0.67,0,0,0,0,13.200000000000001,0,0,0,0,0.25,100,127.67,0.14,984,1.9000000000000001,245,0.7000000000000001 +2013,8,17,18,30,12.9,0.87,0.0896,0.67,0,0,0,0,12.9,0,0,0,0,0.251,100,114.35000000000001,0.14,984,1.7000000000000002,231,0.7000000000000001 +2013,8,17,19,30,12.600000000000001,0.81,0.0908,0.67,0,0,0,0,12.600000000000001,0,0,0,0,0.25,100,101.10000000000001,0.14,985,1.6,219,0.7000000000000001 +2013,8,17,20,30,13.600000000000001,0.75,0.0913,0.67,17,105,21,1,13.200000000000001,17,105,0,21,0.249,97.13,87.82000000000001,0.14,986,1.5,212,0.9 +2013,8,17,21,30,15.600000000000001,0.72,0.0903,0.67,62,566,204,0,14.5,62,566,0,204,0.249,92.99,75.48,0.14,986,1.4000000000000001,211,1 +2013,8,17,22,30,18,0.7000000000000001,0.08750000000000001,0.67,83,749,414,0,15.5,83,749,0,414,0.249,85.37,63.730000000000004,0.14,986,1.3,196,1 +2013,8,17,23,30,19.400000000000002,0.68,0.084,0.67,94,837,594,0,14.3,94,837,0,594,0.249,72.53,53.31,0.14,986,1.3,181,1.1 +2013,8,18,0,30,22.3,0.71,0.0716,0.67,95,895,726,0,12.700000000000001,95,895,0,726,0.25,54.53,45.2,0.14,986,1.2000000000000002,204,0.6000000000000001 +2013,8,18,1,30,23.5,0.72,0.07350000000000001,0.67,99,910,788,0,11.5,99,910,0,788,0.251,46.74,40.82,0.14,985,1.2000000000000002,248,0.4 +2013,8,18,2,30,24.200000000000003,0.74,0.0766,0.67,100,905,779,0,10.5,100,905,0,779,0.253,42.09,41.39,0.14,984,1.2000000000000002,299,0.4 +2013,8,18,3,30,24.400000000000002,0.8,0.057100000000000005,0.67,87,901,705,0,9.9,87,901,0,705,0.254,39.84,46.72,0.14,983,1.3,334,0.4 +2013,8,18,4,30,24.1,0.8200000000000001,0.0603,0.67,81,853,565,0,9.600000000000001,81,853,0,565,0.255,39.71,55.45,0.14,983,1.3,175,0.5 +2013,8,18,5,30,23.1,0.85,0.0644,0.67,70,754,374,0,9.600000000000001,70,754,0,374,0.256,42.32,66.23,0.14,983,1.4000000000000001,18,0.5 +2013,8,18,6,30,21,0.87,0.06760000000000001,0.67,49,545,161,0,11.200000000000001,49,545,0,161,0.257,53.38,78.17,0.14,983,1.5,45,0.5 +2013,8,18,7,30,18.8,0.89,0.0702,0.67,0,0,0,0,12,0,0,0,0,0.258,64.8,90.92,0.14,984,1.5,61,0.7000000000000001 +2013,8,18,8,30,17.3,0.9,0.0727,0.67,0,0,0,0,12.100000000000001,0,0,0,0,0.258,71.60000000000001,103.99000000000001,0.14,984,1.6,65,0.8 +2013,8,18,9,30,16.2,0.9,0.0752,0.67,0,0,0,0,12.4,0,0,0,0,0.258,78.22,117.26,0.14,985,1.6,59,0.8 +2013,8,18,10,30,15.4,0.89,0.0765,0.67,0,0,0,0,12.700000000000001,0,0,0,0,0.258,84.06,130.56,0.14,985,1.7000000000000002,47,0.8 +2013,8,18,11,30,14.8,0.88,0.077,0.67,0,0,0,0,13.100000000000001,0,0,0,0,0.258,89.74,143.63,0.14,985,1.7000000000000002,31,0.7000000000000001 +2013,8,18,12,30,14.4,0.87,0.0775,0.67,0,0,0,0,13.600000000000001,0,0,0,0,0.257,94.8,155.81,0.14,984,1.7000000000000002,191,0.7000000000000001 +2013,8,18,13,30,13.9,0.88,0.07780000000000001,0.67,0,0,0,0,13.9,0,0,0,0,0.258,100,164.6,0.14,984,1.7000000000000002,345,0.7000000000000001 +2013,8,18,14,30,13.200000000000001,0.88,0.077,0.67,0,0,0,0,13.200000000000001,0,0,0,0,0.257,100,163.19,0.14,984,1.7000000000000002,315,0.7000000000000001 +2013,8,18,15,30,12.5,0.9,0.07780000000000001,0.67,0,0,0,0,12.5,0,0,0,0,0.258,100,153.15,0.14,983,1.7000000000000002,289,0.8 +2013,8,18,16,30,11.9,0.91,0.079,0.67,0,0,0,0,11.9,0,0,0,0,0.258,100,140.65,0.14,983,1.7000000000000002,270,0.8 +2013,8,18,17,30,11.600000000000001,0.91,0.0799,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.259,100,127.49000000000001,0.14,983,1.7000000000000002,255,0.8 +2013,8,18,18,30,11.3,0.9,0.08030000000000001,0.67,0,0,0,0,11.200000000000001,0,0,0,0,0.259,99.02,114.17,0.14,984,1.7000000000000002,248,0.8 +2013,8,18,19,30,11.100000000000001,0.9,0.07880000000000001,0.67,0,0,0,1,9.8,0,0,0,0,0.26,91.62,100.91,0.14,984,1.5,247,0.7000000000000001 +2013,8,18,20,30,12.200000000000001,0.89,0.07490000000000001,0.67,17,151,23,1,8.8,17,151,0,23,0.261,79.81,87.62,0.14,984,1.4000000000000001,249,0.8 +2013,8,18,21,30,14.600000000000001,0.89,0.07100000000000001,0.67,56,608,211,0,8.1,56,608,0,211,0.261,65.22,75.26,0.14,984,1.4000000000000001,253,0.9 +2013,8,18,22,30,17.6,0.89,0.06810000000000001,0.67,75,781,423,1,7.800000000000001,75,781,0,423,0.261,52.550000000000004,63.480000000000004,0.14,984,1.3,250,1.2000000000000002 +2013,8,18,23,30,19.400000000000002,0.9,0.0658,0.67,85,862,603,1,5.9,85,862,0,603,0.261,41.15,53.03,0.14,983,1.3,245,1.4000000000000001 +2013,8,19,0,30,22,0.87,0.0685,0.67,93,902,732,0,4.3,93,902,0,732,0.26,31.54,44.89,0.14,982,1.2000000000000002,264,1.9000000000000001 +2013,8,19,1,30,23,0.89,0.066,0.67,94,924,797,0,4.1000000000000005,94,924,0,797,0.26,29.1,40.49,0.14,981,1.1,269,2.2 +2013,8,19,2,30,23.5,0.92,0.0629,0.67,92,926,790,0,4.1000000000000005,92,926,0,790,0.259,28.400000000000002,41.08,0.14,980,1.1,270,2.5 +2013,8,19,3,30,23.6,1,0.0589,0.67,87,914,716,0,3.9000000000000004,87,914,0,716,0.258,27.8,46.46,0.14,979,1,267,2.6 +2013,8,19,4,30,23.1,1.03,0.0575,0.67,79,875,578,1,3.4000000000000004,79,875,0,578,0.258,27.66,55.25,0.14,979,0.9,264,2.5 +2013,8,19,5,30,21.700000000000003,1.01,0.053000000000000005,0.67,66,794,388,0,3.4000000000000004,66,794,0,388,0.258,29.990000000000002,66.07000000000001,0.14,979,0.9,262,1.9000000000000001 +2013,8,19,6,30,19,1,0.0488,0.67,46,609,172,0,5.1000000000000005,46,609,0,172,0.258,40.15,78.05,0.14,979,0.9,262,1.1 +2013,8,19,7,30,16.6,1,0.051300000000000005,0.67,0,0,0,0,5.2,0,0,0,0,0.259,46.82,90.23,0.14,980,0.8,264,0.9 +2013,8,19,8,30,15.3,0.98,0.0526,0.67,0,0,0,0,4.9,0,0,0,0,0.259,49.88,103.9,0.14,980,0.8,267,0.9 +2013,8,19,9,30,14,0.97,0.0563,0.67,0,0,0,0,3.9000000000000004,0,0,0,0,0.26,50.7,117.18,0.14,981,0.8,268,0.9 +2013,8,19,10,30,13.200000000000001,0.97,0.0675,0.67,0,0,0,0,3.3000000000000003,0,0,0,0,0.262,51.230000000000004,130.47,0.14,981,0.9,269,0.9 +2013,8,19,11,30,12.600000000000001,0.9500000000000001,0.08120000000000001,0.67,0,0,0,0,3.3000000000000003,0,0,0,0,0.263,53.17,143.52,0.14,981,0.9,268,0.9 +2013,8,19,12,30,11.9,0.9,0.0936,0.67,0,0,0,0,3.1,0,0,0,0,0.264,54.800000000000004,155.64000000000001,0.14,981,1,268,0.9 +2013,8,19,13,30,11.100000000000001,0.8,0.1029,0.67,0,0,0,0,3,0,0,0,0,0.264,57.26,164.31,0.14,980,1.1,266,0.9 +2013,8,19,14,30,10.600000000000001,0.71,0.1097,0.67,0,0,0,0,3,0,0,0,0,0.264,59.480000000000004,162.88,0.14,980,1.1,263,0.9 +2013,8,19,15,30,10.3,0.66,0.1119,0.67,0,0,0,8,3.4000000000000004,0,0,0,0,0.264,62.230000000000004,152.91,0.14,980,1.2000000000000002,263,0.8 +2013,8,19,16,30,10.100000000000001,0.65,0.1067,0.67,0,0,0,8,3.9000000000000004,0,0,0,0,0.264,65.49,140.45000000000002,0.14,979,1.2000000000000002,264,0.8 +2013,8,19,17,30,9.700000000000001,0.65,0.09630000000000001,0.67,0,0,0,7,4.4,0,0,0,0,0.264,69.66,127.3,0.14,979,1.2000000000000002,264,0.8 +2013,8,19,18,30,9.200000000000001,0.65,0.08650000000000001,0.67,0,0,0,8,4.800000000000001,0,0,0,0,0.265,74.10000000000001,113.98,0.14,980,1.3,261,0.9 +2013,8,19,19,30,9,0.68,0.0805,0.67,0,0,0,8,5.1000000000000005,0,0,0,0,0.267,76.64,100.72,0.14,980,1.3,259,0.9 +2013,8,19,20,30,10.3,0.72,0.07540000000000001,0.67,18,154,25,8,5.7,15,11,3,16,0.269,73.09,87.43,0.14,981,1.2000000000000002,258,1.2000000000000002 +2013,8,19,21,30,12.8,0.78,0.0673,0.67,57,622,218,1,6.1000000000000005,57,622,0,218,0.27,63.81,75.03,0.14,982,1.2000000000000002,246,2 +2013,8,19,22,30,15,0.87,0.056600000000000004,0.67,71,806,434,1,4.7,71,806,0,434,0.27,50.04,63.230000000000004,0.14,982,1.1,237,2.6 +2013,8,19,23,30,15.9,0.98,0.046400000000000004,0.67,77,897,620,0,3.2,77,897,0,620,0.27,42.67,52.74,0.14,982,1,238,2.8000000000000003 +2013,8,20,0,30,17.5,0.9,0.0446,0.67,82,943,754,0,2,82,943,0,754,0.27,35.46,44.57,0.14,982,0.8,242,3.2 +2013,8,20,1,30,18.2,0.92,0.0409,0.67,82,967,822,0,0.6000000000000001,82,967,0,822,0.27,30.55,40.160000000000004,0.14,981,0.7000000000000001,244,3.3000000000000003 +2013,8,20,2,30,18.400000000000002,0.97,0.0378,0.67,80,975,818,0,-0.8,80,975,0,818,0.27,27.310000000000002,40.77,0.14,980,0.6000000000000001,245,3.4000000000000004 +2013,8,20,3,30,18.2,1.05,0.035500000000000004,0.67,75,959,739,0,-1.7000000000000002,75,959,0,739,0.271,25.87,46.21,0.14,980,0.6000000000000001,244,3.4000000000000004 +2013,8,20,4,30,17.6,1.1300000000000001,0.0349,0.67,69,927,600,0,-2.2,69,927,0,600,0.271,25.82,55.050000000000004,0.14,979,0.5,243,3.3000000000000003 +2013,8,20,5,30,16.5,1.19,0.0354,0.67,60,847,405,0,-2.5,60,847,0,405,0.272,27.060000000000002,65.91,0.14,980,0.5,241,2.8000000000000003 +2013,8,20,6,30,14.200000000000001,1.23,0.035300000000000005,0.67,42,669,182,0,-2.1,42,669,0,182,0.273,32.51,77.92,0.14,980,0.5,241,1.8 +2013,8,20,7,30,11.8,1.25,0.0345,0.67,0,0,0,0,-0.6000000000000001,0,0,0,0,0.274,42.32,90.14,0.14,981,0.5,241,1.2000000000000002 +2013,8,20,8,30,10.5,1.25,0.0335,0.67,0,0,0,0,-0.5,0,0,0,0,0.274,46.61,103.81,0.14,982,0.5,242,1.1 +2013,8,20,9,30,9.4,1.23,0.0325,0.67,0,0,0,0,-0.30000000000000004,0,0,0,0,0.273,50.65,117.10000000000001,0.14,983,0.5,242,1.1 +2013,8,20,10,30,8.5,1.21,0.031200000000000002,0.67,0,0,0,0,-0.30000000000000004,0,0,0,0,0.273,54.06,130.39000000000001,0.14,983,0.5,241,1.1 +2013,8,20,11,30,7.7,1.2,0.030500000000000003,0.67,0,0,0,0,-0.2,0,0,0,0,0.273,57.54,143.41,0.14,984,0.5,240,1 +2013,8,20,12,30,6.9,1.2,0.030600000000000002,0.67,0,0,0,0,-0.2,0,0,0,0,0.273,60.800000000000004,155.47,0.14,984,0.5,239,1.1 +2013,8,20,13,30,6.2,1.22,0.030600000000000002,0.67,0,0,0,0,-0.1,0,0,0,0,0.273,63.980000000000004,164.02,0.14,984,0.5,238,1.1 +2013,8,20,14,30,5.6000000000000005,1.23,0.031100000000000003,0.67,0,0,0,0,-0.1,0,0,0,0,0.273,66.91,162.56,0.14,984,0.5,240,1.1 +2013,8,20,15,30,5.1000000000000005,1.26,0.031400000000000004,0.67,0,0,0,0,-0.1,0,0,0,0,0.275,69.23,152.66,0.14,984,0.5,242,1 +2013,8,20,16,30,4.6000000000000005,1.28,0.031,0.67,0,0,0,0,-0.2,0,0,0,0,0.277,71.18,140.24,0.14,983,0.5,243,1 +2013,8,20,17,30,4.1000000000000005,1.31,0.0302,0.67,0,0,0,0,-0.30000000000000004,0,0,0,0,0.279,73.28,127.11,0.14,983,0.5,244,0.9 +2013,8,20,18,30,3.6,1.34,0.029300000000000003,0.67,0,0,0,1,-0.30000000000000004,0,0,0,0,0.281,75.48,113.79,0.14,984,0.5,244,0.9 +2013,8,20,19,30,3.4000000000000004,1.3800000000000001,0.028,0.67,0,0,0,3,-0.5,0,0,0,0,0.28200000000000003,75.75,100.52,0.14,984,0.5,244,0.9 +2013,8,20,20,30,4.9,1.43,0.026600000000000002,0.67,17,345,33,1,-0.30000000000000004,17,345,0,33,0.28200000000000003,68.99,87.22,0.14,984,0.5,245,1.2000000000000002 +2013,8,20,21,30,7.800000000000001,1.48,0.025400000000000002,0.67,45,750,241,1,-0.30000000000000004,45,750,0,241,0.28200000000000003,56.410000000000004,74.8,0.14,985,0.5,236,1.7000000000000002 +2013,8,20,22,30,10.9,1.5,0.0246,0.67,57,888,461,0,-1.1,57,888,0,461,0.28300000000000003,43.42,62.97,0.14,985,0.5,225,1.9000000000000001 +2013,8,20,23,30,12.3,1.5,0.0244,0.67,64,953,645,0,-2.1,64,953,0,645,0.28300000000000003,36.81,52.45,0.14,985,0.5,224,1.8 +2013,8,21,0,30,15.5,1.16,0.0333,0.67,76,968,769,0,-2.7,76,968,0,769,0.28400000000000003,28.46,44.24,0.14,984,0.6000000000000001,244,1.5 +2013,8,21,1,30,17,1.1400000000000001,0.034300000000000004,0.67,78,981,832,0,-2.9000000000000004,78,981,0,832,0.28300000000000003,25.51,39.82,0.14,983,0.6000000000000001,256,1.4000000000000001 +2013,8,21,2,30,18,1.1400000000000001,0.035300000000000005,0.67,79,979,823,0,-2.8000000000000003,79,979,0,823,0.28200000000000003,24.11,40.46,0.14,982,0.6000000000000001,261,1.5 +2013,8,21,3,30,18.5,1.04,0.041100000000000005,0.67,79,948,738,0,-2.7,79,948,0,738,0.28200000000000003,23.64,45.96,0.14,981,0.7000000000000001,261,1.6 +2013,8,21,4,30,18.400000000000002,1.04,0.0427,0.67,73,905,594,0,-2.5,73,905,0,594,0.28300000000000003,24.02,54.85,0.14,980,0.7000000000000001,259,1.6 +2013,8,21,5,30,17.5,1.04,0.0436,0.67,63,820,400,0,-2.3000000000000003,63,820,0,400,0.28400000000000003,25.86,65.76,0.14,981,0.7000000000000001,256,1.3 +2013,8,21,6,30,15.200000000000001,1.04,0.0439,0.67,45,635,179,0,0.8,45,635,0,179,0.28600000000000003,37.45,77.8,0.14,981,0.7000000000000001,260,0.9 +2013,8,21,7,30,12.600000000000001,1.03,0.0439,0.67,0,0,0,0,1.7000000000000002,0,0,0,0,0.28700000000000003,47.32,90.05,0.14,982,0.7000000000000001,264,0.8 +2013,8,21,8,30,11,1.04,0.043300000000000005,0.67,0,0,0,0,1.1,0,0,0,0,0.28600000000000003,50.6,103.72,0.14,983,0.7000000000000001,260,0.8 +2013,8,21,9,30,10.100000000000001,1.06,0.043000000000000003,0.67,0,0,0,0,0.8,0,0,0,0,0.28600000000000003,52.370000000000005,117.01,0.14,984,0.7000000000000001,255,0.8 +2013,8,21,10,30,9.3,1.07,0.042300000000000004,0.67,0,0,0,1,0.7000000000000001,0,0,0,0,0.28600000000000003,55.01,130.3,0.14,984,0.6000000000000001,251,0.9 +2013,8,21,11,30,8.4,1.09,0.0407,0.67,0,0,0,0,0.7000000000000001,0,0,0,0,0.28700000000000003,58.43,143.29,0.14,984,0.6000000000000001,246,0.9 +2013,8,21,12,30,7.6000000000000005,1.1,0.039,0.67,0,0,0,0,0.7000000000000001,0,0,0,0,0.289,61.64,155.3,0.14,984,0.6000000000000001,242,0.9 +2013,8,21,13,30,6.800000000000001,1.1400000000000001,0.0392,0.67,0,0,0,0,0.7000000000000001,0,0,0,0,0.29,64.91,163.72,0.14,984,0.6000000000000001,240,0.9 +2013,8,21,14,30,6.2,1.21,0.041600000000000005,0.67,0,0,0,0,0.6000000000000001,0,0,1,0,0.291,67.54,162.24,0.14,984,0.6000000000000001,243,0.8 +2013,8,21,15,30,5.6000000000000005,1.25,0.043500000000000004,0.67,0,0,0,0,0.7000000000000001,0,0,0,0,0.293,70.65,152.41,0.14,983,0.6000000000000001,247,0.8 +2013,8,21,16,30,5.1000000000000005,1.26,0.0449,0.67,0,0,0,0,0.8,0,0,0,0,0.294,73.9,140.03,0.14,984,0.6000000000000001,247,0.8 +2013,8,21,17,30,4.7,1.27,0.0461,0.67,0,0,0,0,0.9,0,0,0,0,0.296,76.54,126.91,0.14,984,0.6000000000000001,242,0.8 +2013,8,21,18,30,4.4,1.31,0.047,0.67,0,0,0,1,1,0,0,0,0,0.297,78.61,113.60000000000001,0.14,984,0.6000000000000001,238,0.8 +2013,8,21,19,30,4.4,1.34,0.0477,0.67,0,0,0,3,1.1,0,0,0,0,0.299,79.16,100.32000000000001,0.14,985,0.6000000000000001,235,0.8 +2013,8,21,20,30,6,1.35,0.0473,0.67,18,292,33,1,1.5,18,292,0,33,0.301,72.9,87.02,0.14,985,0.6000000000000001,233,1 +2013,8,21,21,30,9.1,1.35,0.047,0.67,51,706,238,1,1.9000000000000001,51,706,0,238,0.303,60.52,74.57000000000001,0.14,985,0.6000000000000001,232,1.2000000000000002 +2013,8,21,22,30,12.8,1.36,0.0476,0.67,67,851,457,1,2.1,67,851,0,457,0.305,48.300000000000004,62.71,0.14,985,0.6000000000000001,217,1.2000000000000002 +2013,8,21,23,30,14.8,1.37,0.048400000000000006,0.67,76,920,641,0,1.8,76,920,0,641,0.306,41.480000000000004,52.160000000000004,0.14,985,0.6000000000000001,203,1.3 +2013,8,22,0,30,17.7,1.31,0.0507,0.67,84,952,770,0,0.9,84,952,0,770,0.309,32.33,43.92,0.14,984,0.6000000000000001,245,0.9 +2013,8,22,1,30,18.8,1.3,0.0526,0.67,87,960,828,0,-0.2,87,960,0,828,0.31,27.89,39.480000000000004,0.14,983,0.7000000000000001,270,1.1 +2013,8,22,2,30,19.400000000000002,1.31,0.0557,0.67,88,955,818,0,-1.2000000000000002,88,955,0,818,0.311,24.97,40.15,0.14,983,0.7000000000000001,278,1.4000000000000001 +2013,8,22,3,30,19.6,1.31,0.0606,0.67,88,931,738,0,-2,88,931,0,738,0.312,23.16,45.7,0.14,982,0.7000000000000001,275,1.6 +2013,8,22,4,30,19.200000000000003,1.3,0.0697,0.67,85,877,592,0,-2.6,85,877,0,592,0.313,22.740000000000002,54.65,0.14,982,0.7000000000000001,267,1.7000000000000002 +2013,8,22,5,30,18.2,1.26,0.07200000000000001,0.67,73,785,397,0,-2.7,73,785,0,397,0.312,24.09,65.6,0.14,982,0.7000000000000001,260,1.4000000000000001 +2013,8,22,6,30,15.8,1.19,0.0648,0.67,50,601,178,0,0.7000000000000001,50,601,0,178,0.31,35.75,77.68,0.14,982,0.7000000000000001,257,1 +2013,8,22,7,30,13.200000000000001,1.11,0.0585,0.67,0,0,0,0,1.5,0,0,0,0,0.307,45.04,89.97,0.14,983,0.7000000000000001,255,0.8 +2013,8,22,8,30,11.5,1.06,0.0568,0.67,0,0,0,1,1.1,0,0,0,0,0.306,48.75,103.63,0.14,984,0.8,248,0.9 +2013,8,22,9,30,10.5,1.04,0.056,0.67,0,0,0,0,0.9,0,0,0,0,0.305,51.38,116.93,0.14,985,0.8,242,0.9 +2013,8,22,10,30,9.700000000000001,1.05,0.0539,0.67,0,0,0,0,0.8,0,0,0,0,0.306,53.75,130.2,0.14,985,0.8,238,0.9 +2013,8,22,11,30,9.200000000000001,1.05,0.0494,0.67,0,0,0,0,0.6000000000000001,0,0,0,0,0.307,55.07,143.18,0.14,985,0.8,238,0.9 +2013,8,22,12,30,8.5,1.05,0.0441,0.67,0,0,0,0,0.6000000000000001,0,0,0,0,0.307,57.53,155.12,0.14,985,0.8,244,0.9 +2013,8,22,13,30,7.800000000000001,1.07,0.041,0.67,0,0,0,0,0.6000000000000001,0,0,0,0,0.306,60.410000000000004,163.42000000000002,0.14,985,0.8,253,0.9 +2013,8,22,14,30,7.1000000000000005,1.1300000000000001,0.0405,0.67,0,0,0,0,0.7000000000000001,0,0,1,0,0.305,63.89,161.91,0.14,985,0.8,259,0.9 +2013,8,22,15,30,6.5,1.17,0.0413,0.67,0,0,0,0,0.6000000000000001,0,0,0,0,0.303,65.9,152.16,0.14,984,0.7000000000000001,262,0.9 +2013,8,22,16,30,6.1000000000000005,1.2,0.042100000000000005,0.67,0,0,0,0,0.4,0,0,0,0,0.302,66.89,139.81,0.14,984,0.7000000000000001,265,0.9 +2013,8,22,17,30,5.800000000000001,1.22,0.042,0.67,0,0,0,0,0.2,0,0,0,0,0.302,67.45,126.71000000000001,0.14,984,0.7000000000000001,269,0.9 +2013,8,22,18,30,5.7,1.2,0.041600000000000005,0.67,0,0,0,1,0.1,0,0,0,0,0.301,67.06,113.4,0.14,985,0.7000000000000001,272,0.9 +2013,8,22,19,30,5.7,1.19,0.0426,0.67,0,0,0,3,-0.1,0,0,0,0,0.301,66.44,100.11,0.14,985,0.8,275,0.9 +2013,8,22,20,30,7.5,1.19,0.044500000000000005,0.67,19,294,35,1,0.30000000000000004,19,294,0,35,0.303,60.17,86.82000000000001,0.14,986,0.8,277,1.1 +2013,8,22,21,30,10.8,1.18,0.0451,0.67,51,698,240,1,0.4,51,698,0,240,0.306,48.660000000000004,74.33,0.14,986,0.8,280,1.4000000000000001 +2013,8,22,22,30,14.4,1.19,0.0456,0.67,67,843,457,0,0.5,67,843,0,457,0.308,38.58,62.45,0.14,986,0.8,277,1.9000000000000001 +2013,8,22,23,30,16.5,1.21,0.047,0.67,77,910,639,0,0.30000000000000004,77,910,0,639,0.31,33.25,51.870000000000005,0.14,986,0.8,272,2.3000000000000003 +2013,8,23,0,30,19.200000000000003,1.22,0.048600000000000004,0.67,83,940,764,0,0.2,83,940,0,764,0.314,27.97,43.59,0.14,985,0.9,266,2.7 +2013,8,23,1,30,20.1,1.19,0.0522,0.67,87,951,825,0,0.2,87,951,0,825,0.316,26.47,39.14,0.14,984,0.9,266,2.8000000000000003 +2013,8,23,2,30,20.700000000000003,1.16,0.0551,0.67,88,942,812,0,0.30000000000000004,88,942,0,812,0.317,25.64,39.84,0.14,983,1,264,2.9000000000000004 +2013,8,23,3,30,21,1.1500000000000001,0.053200000000000004,0.67,84,924,732,0,0.6000000000000001,84,924,0,732,0.317,25.62,45.44,0.14,983,1,263,2.9000000000000004 +2013,8,23,4,30,20.8,1.1,0.0531,0.67,78,880,589,0,1,78,880,0,589,0.317,26.73,54.45,0.14,982,1,263,2.8000000000000003 +2013,8,23,5,30,19.900000000000002,1.05,0.052500000000000005,0.67,66,795,397,0,1.7000000000000002,66,795,0,397,0.316,29.79,65.45,0.14,982,1,261,2.2 +2013,8,23,6,30,17.5,1.02,0.0517,0.67,47,605,177,0,3.7,47,605,0,177,0.315,39.83,77.55,0.14,983,1.1,260,1.4000000000000001 +2013,8,23,7,30,15.100000000000001,1.02,0.051500000000000004,0.67,0,0,0,0,4.3,0,0,0,0,0.314,48.39,89.88,0.14,983,1.1,260,1 +2013,8,23,8,30,13.9,1.05,0.052000000000000005,0.67,0,0,0,1,3.9000000000000004,0,0,0,0,0.313,51.04,103.55,0.14,984,1.1,261,1 +2013,8,23,9,30,12.9,1.08,0.0538,0.67,0,0,0,0,3.9000000000000004,0,0,0,0,0.311,54.34,116.84,0.14,985,1.1,263,1 +2013,8,23,10,30,12.100000000000001,1.1,0.0568,0.67,0,0,0,0,3.9000000000000004,0,0,0,0,0.309,57.39,130.11,0.14,986,1.1,263,0.9 +2013,8,23,11,30,11.200000000000001,1.07,0.058800000000000005,0.67,0,0,0,0,3.9000000000000004,0,0,0,0,0.307,60.72,143.06,0.14,986,1.1,259,0.9 +2013,8,23,12,30,10.5,1.02,0.060000000000000005,0.67,0,0,0,0,3.8000000000000003,0,0,0,0,0.305,63.27,154.94,0.14,986,1.1,257,0.9 +2013,8,23,13,30,9.700000000000001,0.97,0.062,0.67,0,0,0,0,3.8000000000000003,0,0,0,0,0.303,66.52,163.11,0.14,986,1.1,260,0.9 +2013,8,23,14,30,9,0.93,0.066,0.67,0,0,0,0,3.8000000000000003,0,0,1,0,0.302,69.77,161.58,0.14,986,1.2000000000000002,267,0.9 +2013,8,23,15,30,8.5,0.93,0.069,0.67,0,0,0,0,3.8000000000000003,0,0,0,0,0.3,72.41,151.9,0.14,986,1.2000000000000002,272,0.9 +2013,8,23,16,30,8.1,0.98,0.0664,0.67,0,0,0,0,3.9000000000000004,0,0,0,0,0.299,74.69,139.59,0.14,985,1.2000000000000002,273,0.9 +2013,8,23,17,30,7.7,1.06,0.057300000000000004,0.67,0,0,0,0,4,0,0,0,0,0.299,77.31,126.5,0.14,985,1.2000000000000002,269,0.9 +2013,8,23,18,30,7.4,1.1500000000000001,0.0473,0.67,0,0,0,1,4.1000000000000005,0,0,0,0,0.3,79.61,113.19,0.14,986,1.2000000000000002,265,0.9 +2013,8,23,19,30,7.4,1.24,0.041,0.67,0,0,0,0,4.2,0,0,0,0,0.3,80.26,99.91,0.14,986,1.1,261,0.9 +2013,8,23,20,30,9.1,1.29,0.039,0.67,19,312,38,1,4.6000000000000005,19,312,0,38,0.301,73.61,86.61,0.14,987,1.1,257,1.2000000000000002 +2013,8,23,21,30,12.3,1.33,0.0392,0.67,50,701,242,1,5.1000000000000005,50,701,0,242,0.303,61.64,74.09,0.14,988,1.1,244,1.8 +2013,8,23,22,30,15.700000000000001,1.36,0.0393,0.67,64,841,457,1,5.7,64,841,0,457,0.304,51.27,62.190000000000005,0.14,988,1.1,223,2.3000000000000003 +2013,8,23,23,30,17.3,1.3800000000000001,0.038900000000000004,0.67,73,909,638,0,5.800000000000001,73,909,0,638,0.304,46.800000000000004,51.57,0.14,988,1.1,215,2.4000000000000004 +2013,8,24,0,30,20.5,1.26,0.0415,0.67,79,940,764,0,5.4,79,940,0,764,0.3,37.34,43.26,0.14,988,1.1,200,1.8 +2013,8,24,1,30,21.900000000000002,1.25,0.0415,0.67,82,955,826,0,5.1000000000000005,82,955,0,826,0.297,33.480000000000004,38.79,0.14,987,1.1,188,1.2000000000000002 +2013,8,24,2,30,22.8,1.24,0.0414,0.67,81,953,816,0,4.9,81,953,0,816,0.295,31.240000000000002,39.52,0.14,986,1.1,169,0.7000000000000001 +2013,8,24,3,30,23,1.18,0.0442,0.67,80,931,736,0,4.9,80,931,0,736,0.294,30.830000000000002,45.19,0.14,986,1.1,139,0.4 +2013,8,24,4,30,22.8,1.17,0.0449,0.67,74,884,590,0,5,74,884,0,590,0.292,31.5,54.25,0.14,986,1.2000000000000002,113,0.5 +2013,8,24,5,30,21.8,1.17,0.0461,0.67,64,800,398,0,5.300000000000001,64,800,0,398,0.29,34.15,65.29,0.14,986,1.2000000000000002,94,0.5 +2013,8,24,6,30,19.700000000000003,1.12,0.0505,0.67,47,609,179,1,7.300000000000001,47,609,0,179,0.28800000000000003,44.67,77.43,0.14,986,1.2000000000000002,77,0.5 +2013,8,24,7,30,17.5,1.11,0.0523,0.67,0,0,0,0,8.200000000000001,0,0,0,0,0.28700000000000003,54.26,89.8,0.14,987,1.2000000000000002,79,0.5 +2013,8,24,8,30,16.1,1.1,0.0546,0.67,0,0,0,0,7.800000000000001,0,0,0,0,0.28700000000000003,57.7,103.46000000000001,0.14,988,1.3,104,0.6000000000000001 +2013,8,24,9,30,14.9,1.08,0.057100000000000005,0.67,0,0,0,0,8.1,0,0,0,0,0.28600000000000003,63.9,116.76,0.14,989,1.3,127,0.7000000000000001 +2013,8,24,10,30,13.8,1.06,0.059800000000000006,0.67,0,0,0,0,8.700000000000001,0,0,0,0,0.28500000000000003,71.29,130.02,0.14,990,1.3,134,0.8 +2013,8,24,11,30,12.9,1.04,0.062400000000000004,0.67,0,0,0,0,8.9,0,0,0,0,0.28500000000000003,76.8,142.94,0.14,990,1.4000000000000001,132,0.9 +2013,8,24,12,30,12,1.02,0.0646,0.67,0,0,0,1,9.1,0,0,0,0,0.28400000000000003,82.65,154.76,0.14,991,1.4000000000000001,128,0.9 +2013,8,24,13,30,11.3,1,0.0665,0.67,0,0,0,1,9.3,0,0,0,0,0.28400000000000003,87.74,162.8,0.14,991,1.4000000000000001,124,0.9 +2013,8,24,14,30,10.8,0.97,0.0689,0.67,0,0,0,1,9.600000000000001,0,0,1,0,0.28500000000000003,92.25,161.25,0.14,990,1.4000000000000001,121,0.9 +2013,8,24,15,30,10.600000000000001,0.9500000000000001,0.07200000000000001,0.67,0,0,0,0,10,0,0,0,0,0.28500000000000003,96.03,151.63,0.14,990,1.4000000000000001,122,0.9 +2013,8,24,16,30,10.5,0.9400000000000001,0.0755,0.67,0,0,0,0,10.4,0,0,0,0,0.28600000000000003,99.17,139.36,0.14,990,1.4000000000000001,128,0.9 +2013,8,24,17,30,10.3,0.9400000000000001,0.0792,0.67,0,0,0,0,10.3,0,0,0,0,0.28800000000000003,100,126.29,0.14,990,1.4000000000000001,137,0.9 +2013,8,24,18,30,10.100000000000001,0.9400000000000001,0.083,0.67,0,0,0,0,10.100000000000001,0,0,0,0,0.289,100,112.99000000000001,0.14,991,1.4000000000000001,149,0.9 +2013,8,24,19,30,10,0.9400000000000001,0.0872,0.67,0,0,0,0,10,0,0,0,0,0.29,100,99.7,0.14,992,1.4000000000000001,160,0.9 +2013,8,24,20,30,11.3,0.9500000000000001,0.0911,0.67,23,197,36,1,11,23,197,0,36,0.291,98.21000000000001,86.39,0.14,993,1.4000000000000001,170,0.9 +2013,8,24,21,30,14.3,0.97,0.09290000000000001,0.67,65,600,232,1,11.3,65,600,0,232,0.292,82.11,73.85000000000001,0.14,993,1.5,143,0.8 +2013,8,24,22,30,17.6,1.01,0.0913,0.67,85,762,444,1,11.5,85,762,0,444,0.292,67.33,61.92,0.14,994,1.5,86,0.8 +2013,8,24,23,30,19,1.03,0.09090000000000001,0.67,97,841,623,0,11.100000000000001,97,841,0,623,0.292,60.27,51.27,0.14,994,1.5,62,1.1 +2013,8,25,0,30,21,1.06,0.1092,0.67,113,865,746,0,10.700000000000001,113,865,0,746,0.292,51.81,42.92,0.14,993,1.5,53,1.1 +2013,8,25,1,30,21.900000000000002,1.08,0.10600000000000001,0.67,115,885,808,1,10.4,115,885,0,808,0.292,47.99,38.45,0.14,992,1.5,53,1.2000000000000002 +2013,8,25,2,30,22.5,1.1,0.1033,0.67,112,885,798,0,10.200000000000001,112,885,0,798,0.292,45.68,39.2,0.14,991,1.5,53,1.3 +2013,8,25,3,30,22.6,1.12,0.08710000000000001,0.67,100,877,722,1,10,100,877,0,722,0.292,44.78,44.93,0.14,990,1.5,54,1.4000000000000001 +2013,8,25,4,30,22.200000000000003,1.12,0.0884,0.67,93,829,580,1,9.8,93,829,0,580,0.292,45.22,54.050000000000004,0.14,989,1.5,54,1.4000000000000001 +2013,8,25,5,30,21.3,1.12,0.0916,0.67,81,732,388,1,9.700000000000001,81,732,0,388,0.292,47.44,65.14,0.14,989,1.5,52,1.3 +2013,8,25,6,30,19.1,1.12,0.09680000000000001,0.67,57,525,173,1,10.4,57,525,0,173,0.291,56.99,77.31,0.14,990,1.5,55,0.9 +2013,8,25,7,30,16.900000000000002,1.1400000000000001,0.1,0.67,0,0,0,0,11.3,0,0,0,0,0.29,69.78,89.71000000000001,0.14,991,1.6,56,0.8 +2013,8,25,8,30,15.8,1.1400000000000001,0.10200000000000001,0.67,0,0,0,1,11.3,0,0,0,0,0.28800000000000003,74.57000000000001,103.37,0.14,991,1.6,54,0.7000000000000001 +2013,8,25,9,30,15.200000000000001,1.1400000000000001,0.10400000000000001,0.67,0,0,0,0,11.5,0,0,0,0,0.28600000000000003,78.66,116.67,0.14,992,1.7000000000000002,48,0.7000000000000001 +2013,8,25,10,30,14.600000000000001,1.1300000000000001,0.10450000000000001,0.67,0,0,0,0,11.700000000000001,0,0,0,0,0.28500000000000003,82.54,129.92000000000002,0.14,992,1.7000000000000002,40,0.7000000000000001 +2013,8,25,11,30,14,1.11,0.1019,0.67,0,0,0,1,11.700000000000001,0,0,0,0,0.28400000000000003,85.94,142.82,0.14,992,1.7000000000000002,29,0.7000000000000001 +2013,8,25,12,30,13.4,1.1,0.0981,0.67,0,0,0,4,11.700000000000001,0,0,0,0,0.28400000000000003,89.4,154.57,0.14,992,1.7000000000000002,17,0.7000000000000001 +2013,8,25,13,30,12.8,1.09,0.09530000000000001,0.67,0,0,0,8,11.700000000000001,0,0,0,0,0.28400000000000003,93.26,162.49,0.14,991,1.7000000000000002,183,0.7000000000000001 +2013,8,25,14,30,12.3,1.09,0.094,0.67,0,0,0,8,11.8,0,0,1,0,0.28400000000000003,96.58,160.91,0.14,991,1.7000000000000002,346,0.7000000000000001 +2013,8,25,15,30,11.8,1.09,0.0931,0.67,0,0,0,0,11.8,0,0,0,0,0.28500000000000003,99.77,151.36,0.14,991,1.6,327,0.7000000000000001 +2013,8,25,16,30,11.3,1.08,0.093,0.67,0,0,0,0,11.3,0,0,0,0,0.28400000000000003,100,139.13,0.14,991,1.6,310,0.7000000000000001 +2013,8,25,17,30,10.8,1.08,0.09230000000000001,0.67,0,0,0,1,10.8,0,0,0,0,0.28300000000000003,100,126.08,0.14,991,1.6,300,0.7000000000000001 +2013,8,25,18,30,10.5,1.08,0.0901,0.67,0,0,0,0,10.5,0,0,0,0,0.28300000000000003,100,112.78,0.14,991,1.5,294,0.8 +2013,8,25,19,30,10.4,1.08,0.0883,0.67,0,0,0,0,10.4,0,0,0,0,0.281,100,99.48,0.14,991,1.5,288,0.7000000000000001 +2013,8,25,20,30,11.700000000000001,1.09,0.0864,0.67,24,223,39,1,11.200000000000001,24,223,0,39,0.279,96.85000000000001,86.18,0.14,992,1.5,283,0.8 +2013,8,25,21,30,14.8,1.1,0.08460000000000001,0.67,63,621,239,1,11.4,63,621,0,239,0.278,80.14,73.61,0.14,992,1.5,293,1 +2013,8,25,22,30,18.1,1.11,0.0852,0.67,83,775,451,0,11.700000000000001,83,775,0,451,0.277,66.37,61.65,0.14,992,1.5,311,1 +2013,8,25,23,30,19.6,1.12,0.08710000000000001,0.67,95,846,628,0,11.5,95,846,0,628,0.277,59.43,50.96,0.14,992,1.6,317,1 +2013,8,26,0,30,22.200000000000003,1.16,0.0698,0.67,94,904,760,0,10.600000000000001,94,904,0,760,0.275,47.86,42.58,0.14,991,1.5,309,0.7000000000000001 +2013,8,26,1,30,23.3,1.17,0.0707,0.67,97,919,820,0,9.700000000000001,97,919,0,820,0.275,42.050000000000004,38.09,0.14,990,1.5,294,0.6000000000000001 +2013,8,26,2,30,23.8,1.17,0.075,0.67,99,912,809,0,9,99,912,0,809,0.275,38.88,38.88,0.14,989,1.5,280,0.5 +2013,8,26,3,30,24,1.19,0.07050000000000001,0.67,93,893,728,0,8.6,93,893,0,728,0.276,37.36,44.67,0.14,988,1.6,275,0.5 +2013,8,26,4,30,23.6,1.2,0.0733,0.67,87,845,585,0,8.4,87,845,0,585,0.276,37.96,53.85,0.14,988,1.6,278,0.5 +2013,8,26,5,30,22.700000000000003,1.21,0.0752,0.67,75,754,393,0,8.6,75,754,0,393,0.276,40.42,64.99,0.14,988,1.6,149,0.30000000000000004 +2013,8,26,6,30,20.8,1.23,0.0809,0.67,54,554,177,0,9.9,54,554,0,177,0.276,49.550000000000004,77.19,0.14,988,1.6,47,0.30000000000000004 +2013,8,26,7,30,18.7,1.24,0.0845,0.67,0,0,0,0,11.700000000000001,0,0,0,0,0.276,63.800000000000004,89.63,0.14,988,1.7000000000000002,85,0.4 +2013,8,26,8,30,17.5,1.23,0.0848,0.67,0,0,0,0,11.700000000000001,0,0,0,0,0.275,68.77,103.28,0.14,989,1.7000000000000002,93,0.5 +2013,8,26,9,30,16.5,1.23,0.0857,0.67,0,0,0,1,12.100000000000001,0,0,0,0,0.274,75.27,116.59,0.14,990,1.7000000000000002,90,0.5 +2013,8,26,10,30,15.700000000000001,1.26,0.0765,0.67,0,0,0,0,12,0,0,0,0,0.274,78.63,129.83,0.14,990,1.7000000000000002,74,0.5 +2013,8,26,11,30,15,1.26,0.0704,0.67,0,0,0,0,11.700000000000001,0,0,0,0,0.275,80.66,142.69,0.14,990,1.7000000000000002,33,0.4 +2013,8,26,12,30,14.4,1.25,0.06810000000000001,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.274,83.14,154.37,0.14,990,1.6,165,0.5 +2013,8,26,13,30,13.600000000000001,1.25,0.06720000000000001,0.67,0,0,0,0,11.5,0,0,0,0,0.274,86.87,162.18,0.14,990,1.6,320,0.6000000000000001 +2013,8,26,14,30,12.9,1.25,0.0663,0.67,0,0,0,0,11.3,0,0,1,0,0.273,89.72,160.57,0.14,989,1.6,312,0.7000000000000001 +2013,8,26,15,30,12.3,1.25,0.0653,0.67,0,0,0,0,11,0,0,0,0,0.273,91.83,151.09,0.14,989,1.5,309,0.8 +2013,8,26,16,30,11.700000000000001,1.26,0.06470000000000001,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.272,93.65,138.9,0.14,988,1.5,305,0.8 +2013,8,26,17,30,11.3,1.27,0.06520000000000001,0.67,0,0,0,0,10.4,0,0,0,0,0.273,94.27,125.86,0.14,988,1.4000000000000001,298,0.8 +2013,8,26,18,30,11.100000000000001,1.27,0.06620000000000001,0.67,0,0,0,0,10.100000000000001,0,0,0,0,0.273,93.8,112.57000000000001,0.14,989,1.4000000000000001,292,0.7000000000000001 +2013,8,26,19,30,11.3,1.28,0.0661,0.67,0,0,0,0,9.9,0,0,0,0,0.274,91.13,99.26,0.14,990,1.4000000000000001,291,0.7000000000000001 +2013,8,26,20,30,12.5,1.29,0.0651,0.67,23,284,43,1,9.9,23,284,0,43,0.274,84.07000000000001,85.96000000000001,0.14,990,1.4000000000000001,293,0.9 +2013,8,26,21,30,15.200000000000001,1.31,0.062200000000000005,0.67,57,667,248,1,10,57,667,0,248,0.273,71.07000000000001,73.36,0.14,990,1.4000000000000001,298,1.1 +2013,8,26,22,30,18.5,1.32,0.060200000000000004,0.67,73,817,465,1,10,73,817,0,465,0.273,57.67,61.370000000000005,0.14,990,1.3,297,1.2000000000000002 +2013,8,26,23,30,20.200000000000003,1.33,0.0603,0.67,83,886,645,0,9.200000000000001,83,886,0,645,0.273,49.26,50.65,0.14,990,1.3,293,1.2000000000000002 +2013,8,27,0,30,23,1.25,0.0721,0.67,95,911,769,0,8.200000000000001,95,911,0,769,0.273,38.64,42.24,0.14,989,1.3,274,1.2000000000000002 +2013,8,27,1,30,24.200000000000003,1.24,0.0717,0.67,97,926,830,0,7.2,97,926,0,830,0.273,33.75,37.74,0.14,988,1.3,266,1.2000000000000002 +2013,8,27,2,30,24.8,1.24,0.0703,0.67,96,928,822,0,6.4,96,928,0,822,0.273,30.830000000000002,38.56,0.14,987,1.2000000000000002,264,1.2000000000000002 +2013,8,27,3,30,25.1,1.23,0.0692,0.67,92,909,741,0,6,92,909,0,741,0.274,29.45,44.410000000000004,0.14,986,1.2000000000000002,265,1.1 +2013,8,27,4,30,24.900000000000002,1.24,0.06810000000000001,0.67,84,865,597,0,5.800000000000001,84,865,0,597,0.274,29.32,53.65,0.14,985,1.2000000000000002,268,1 +2013,8,27,5,30,23.8,1.25,0.0682,0.67,72,778,403,0,6,72,778,0,403,0.275,31.75,64.84,0.14,985,1.2000000000000002,274,0.7000000000000001 +2013,8,27,6,30,21.3,1.26,0.0685,0.67,51,587,182,0,8.6,51,587,0,182,0.275,44.07,77.07000000000001,0.14,986,1.3,286,0.5 +2013,8,27,7,30,18.7,1.26,0.0688,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.276,59.14,89.54,0.14,986,1.3,277,0.5 +2013,8,27,8,30,17.2,1.26,0.0697,0.67,0,0,0,0,10.5,0,0,0,0,0.276,64.57000000000001,103.19,0.14,987,1.4000000000000001,257,0.5 +2013,8,27,9,30,16.2,1.26,0.0707,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.277,69.67,116.5,0.14,988,1.4000000000000001,250,0.5 +2013,8,27,10,30,15.5,1.25,0.0713,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.278,72.63,129.73,0.14,988,1.4000000000000001,252,0.5 +2013,8,27,11,30,14.9,1.26,0.0714,0.67,0,0,0,0,10.5,0,0,0,0,0.278,75.01,142.56,0.14,988,1.4000000000000001,266,0.5 +2013,8,27,12,30,14.3,1.27,0.0722,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.279,76.55,154.18,0.14,988,1.5,298,0.6000000000000001 +2013,8,27,13,30,13.4,1.28,0.0736,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.28,80.9,161.86,0.14,988,1.5,320,0.7000000000000001 +2013,8,27,14,30,12.600000000000001,1.29,0.0758,0.67,0,0,0,0,10.200000000000001,0,0,1,0,0.28,85.60000000000001,160.22,0.14,988,1.5,318,0.8 +2013,8,27,15,30,12.200000000000001,1.3,0.0786,0.67,0,0,0,0,10,0,0,0,0,0.281,86.57000000000001,150.81,0.14,987,1.6,313,0.8 +2013,8,27,16,30,11.9,1.31,0.081,0.67,0,0,0,0,9.9,0,0,0,0,0.28,87.52,138.66,0.14,987,1.6,307,0.9 +2013,8,27,17,30,11.4,1.31,0.0818,0.67,0,0,0,0,9.8,0,0,0,0,0.28,90.04,125.64,0.14,987,1.6,301,0.9 +2013,8,27,18,30,10.9,1.31,0.08030000000000001,0.67,0,0,0,0,9.8,0,0,0,0,0.28,93.21000000000001,112.35000000000001,0.14,988,1.6,296,0.9 +2013,8,27,19,30,10.9,1.31,0.0775,0.67,0,0,0,0,9.9,0,0,0,0,0.279,93.33,99.04,0.14,988,1.6,292,0.8 +2013,8,27,20,30,12.5,1.31,0.07400000000000001,0.67,24,279,45,1,10,24,279,0,45,0.278,84.97,85.73,0.14,989,1.5,290,1.1 +2013,8,27,21,30,15.600000000000001,1.31,0.0692,0.67,59,661,251,1,10.4,59,661,0,251,0.278,71.34,73.11,0.14,989,1.4000000000000001,292,1.4000000000000001 +2013,8,27,22,30,19.1,1.3,0.0646,0.67,75,810,467,0,11.100000000000001,75,810,0,467,0.277,59.76,61.1,0.14,989,1.4000000000000001,291,1.4000000000000001 +2013,8,27,23,30,21.1,1.31,0.0616,0.67,84,884,648,0,10.600000000000001,84,884,0,648,0.277,50.980000000000004,50.34,0.14,988,1.4000000000000001,289,1.4000000000000001 +2013,8,28,0,30,24.700000000000003,1.32,0.058,0.67,88,923,775,0,8.8,88,923,0,775,0.275,36.44,41.89,0.14,987,1.4000000000000001,248,1.2000000000000002 +2013,8,28,1,30,25.900000000000002,1.33,0.060500000000000005,0.67,92,935,835,0,7.6000000000000005,92,935,0,835,0.274,31.28,37.38,0.14,986,1.4000000000000001,227,1.2000000000000002 +2013,8,28,2,30,26.6,1.33,0.0629,0.67,92,930,823,0,6.800000000000001,92,930,0,823,0.275,28.3,38.24,0.14,985,1.4000000000000001,215,1.2000000000000002 +2013,8,28,3,30,26.8,1.33,0.0645,0.67,89,909,742,0,6.1000000000000005,89,909,0,742,0.275,26.67,44.15,0.14,985,1.4000000000000001,206,1.1 +2013,8,28,4,30,26.400000000000002,1.32,0.0673,0.67,83,862,596,0,6,83,862,0,596,0.277,27.240000000000002,53.46,0.14,984,1.4000000000000001,193,1 +2013,8,28,5,30,25.200000000000003,1.31,0.0692,0.67,72,770,401,0,6.300000000000001,72,770,0,401,0.277,29.71,64.68,0.14,984,1.5,165,0.7000000000000001 +2013,8,28,6,30,22.6,1.31,0.0709,0.67,51,581,183,0,8.8,51,581,0,183,0.278,41.21,76.95,0.14,985,1.5,131,0.7000000000000001 +2013,8,28,7,30,19.700000000000003,1.31,0.0724,0.67,0,0,0,0,11,0,0,0,0,0.279,57.28,89.46000000000001,0.14,986,1.5,110,0.9 +2013,8,28,8,30,17.5,1.32,0.07400000000000001,0.67,0,0,0,0,11.3,0,0,0,0,0.279,67.04,103.10000000000001,0.14,987,1.6,100,0.9 +2013,8,28,9,30,16.400000000000002,1.32,0.0756,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.279,73.27,116.41,0.14,988,1.7000000000000002,100,0.8 +2013,8,28,10,30,15.700000000000001,1.31,0.0777,0.67,0,0,0,0,12.4,0,0,0,0,0.28,80.94,129.63,0.14,989,1.7000000000000002,108,0.8 +2013,8,28,11,30,15,1.31,0.0794,0.67,0,0,0,0,13.200000000000001,0,0,0,0,0.28,89.18,142.43,0.14,990,1.7000000000000002,118,0.7000000000000001 +2013,8,28,12,30,14.5,1.29,0.0819,0.67,0,0,0,0,13.700000000000001,0,0,0,0,0.281,95.09,153.98,0.14,990,1.7000000000000002,129,0.7000000000000001 +2013,8,28,13,30,13.9,1.26,0.0859,0.67,0,0,0,1,13.9,0,0,0,0,0.28200000000000003,100,161.53,0.14,990,1.7000000000000002,138,0.7000000000000001 +2013,8,28,14,30,13.4,1.24,0.0918,0.67,0,0,0,1,13.4,0,0,1,0,0.28300000000000003,100,159.88,0.14,990,1.7000000000000002,144,0.7000000000000001 +2013,8,28,15,30,13,1.22,0.0981,0.67,0,0,0,0,13,0,0,0,0,0.28300000000000003,100,150.52,0.14,990,1.8,147,0.7000000000000001 +2013,8,28,16,30,12.700000000000001,1.2,0.1042,0.67,0,0,0,0,12.700000000000001,0,0,0,0,0.28400000000000003,100,138.41,0.14,990,1.8,148,0.7000000000000001 +2013,8,28,17,30,12.3,1.19,0.10980000000000001,0.67,0,0,0,0,12.3,0,0,0,0,0.28400000000000003,100,125.42,0.14,990,1.8,149,0.7000000000000001 +2013,8,28,18,30,12,1.19,0.11280000000000001,0.67,0,0,0,0,12,0,0,0,0,0.28400000000000003,100,112.13,0.14,990,1.8,150,0.7000000000000001 +2013,8,28,19,30,12.100000000000001,1.19,0.1144,0.67,0,0,0,1,12.100000000000001,0,0,0,0,0.28400000000000003,100,98.82000000000001,0.14,991,1.8,151,0.7000000000000001 +2013,8,28,20,30,13.600000000000001,1.19,0.11410000000000001,0.67,28,217,45,1,13.100000000000001,28,217,0,45,0.28400000000000003,96.78,85.51,0.14,991,1.8,148,0.8 +2013,8,28,21,30,16.5,1.2,0.1101,0.67,70,597,246,1,13.3,70,597,0,246,0.28400000000000003,81.27,72.86,0.14,991,1.7000000000000002,126,1.2000000000000002 +2013,8,28,22,30,19.3,1.22,0.1052,0.67,90,757,459,1,13.200000000000001,90,757,0,459,0.28400000000000003,67.86,60.82,0.14,991,1.7000000000000002,97,1.5 +2013,8,28,23,30,20.5,1.25,0.10160000000000001,0.67,101,837,639,0,12.4,101,837,0,639,0.28400000000000003,59.58,50.03,0.14,991,1.7000000000000002,89,1.5 +2013,8,29,0,30,22.5,1.27,0.1401,0.67,125,842,755,0,11.700000000000001,125,842,0,755,0.28400000000000003,50.5,41.550000000000004,0.14,990,1.8,81,1.5 +2013,8,29,1,30,23.400000000000002,1.26,0.1403,0.67,129,859,814,0,11.4,129,859,0,814,0.28400000000000003,46.88,37.02,0.14,989,1.8,80,1.5 +2013,8,29,2,30,23.8,1.26,0.13520000000000001,0.67,126,857,802,0,11.200000000000001,126,857,0,802,0.28400000000000003,45.02,37.910000000000004,0.14,988,1.9000000000000001,80,1.6 +2013,8,29,3,30,23.700000000000003,1.25,0.13440000000000002,0.67,120,834,721,1,10.9,120,834,0,721,0.28300000000000003,44.480000000000004,43.89,0.14,987,1.9000000000000001,83,1.7000000000000002 +2013,8,29,4,30,23.200000000000003,1.24,0.137,0.67,112,777,577,1,10.700000000000001,112,777,0,577,0.28200000000000003,45.32,53.26,0.14,987,2,86,1.7000000000000002 +2013,8,29,5,30,22.1,1.23,0.1426,0.67,96,669,384,1,10.700000000000001,96,669,0,384,0.281,48.49,64.53,0.14,987,2.1,87,1.8 +2013,8,29,6,30,20.200000000000003,1.23,0.1589,0.67,70,446,171,1,11.200000000000001,70,446,0,171,0.281,56.1,76.83,0.14,988,2.1,87,1.3 +2013,8,29,7,30,18.1,1.26,0.16090000000000002,0.67,0,0,0,0,12.5,0,0,0,0,0.28,69.7,89.37,0.14,988,2.2,85,0.9 +2013,8,29,8,30,16.7,1.28,0.1549,0.67,0,0,0,0,12.9,0,0,0,0,0.28,78.38,103.01,0.14,989,2.2,82,0.8 +2013,8,29,9,30,15.8,1.29,0.1491,0.67,0,0,0,0,13.200000000000001,0,0,0,0,0.279,84.61,116.32000000000001,0.14,990,2.2,79,0.7000000000000001 +2013,8,29,10,30,15.200000000000001,1.29,0.1456,0.67,0,0,0,0,13.3,0,0,0,0,0.279,88.60000000000001,129.53,0.14,990,2.2,75,0.7000000000000001 +2013,8,29,11,30,14.700000000000001,1.28,0.1438,0.67,0,0,0,0,13.3,0,0,0,0,0.279,91.53,142.3,0.14,990,2.2,71,0.7000000000000001 +2013,8,29,12,30,14.3,1.28,0.1413,0.67,0,0,0,0,13.3,0,0,0,0,0.279,93.94,153.77,0.14,990,2.2,64,0.7000000000000001 +2013,8,29,13,30,13.9,1.28,0.1386,0.67,0,0,0,0,13.3,0,0,0,0,0.279,96.03,161.21,0.14,989,2.2,52,0.7000000000000001 +2013,8,29,14,30,13.600000000000001,1.28,0.13770000000000002,0.67,0,0,0,0,13.200000000000001,0,0,1,0,0.278,97.72,159.52,0.14,989,2.2,35,0.7000000000000001 +2013,8,29,15,30,13.3,1.27,0.13870000000000002,0.67,0,0,0,0,13.3,0,0,0,0,0.278,99.77,150.23,0.14,988,2.2,15,0.7000000000000001 +2013,8,29,16,30,13,1.26,0.14070000000000002,0.67,0,0,0,0,13,0,0,0,0,0.278,100,138.17000000000002,0.14,988,2.2,172,0.7000000000000001 +2013,8,29,17,30,12.600000000000001,1.25,0.14170000000000002,0.67,0,0,0,0,12.600000000000001,0,0,0,0,0.278,100,125.19,0.14,988,2.3000000000000003,331,0.7000000000000001 +2013,8,29,18,30,12.200000000000001,1.24,0.14350000000000002,0.67,0,0,0,0,12.200000000000001,0,0,0,0,0.278,100,111.91,0.14,989,2.3000000000000003,316,0.7000000000000001 +2013,8,29,19,30,12.3,1.24,0.1463,0.67,0,0,0,0,12.3,0,0,0,0,0.278,100,98.60000000000001,0.14,990,2.3000000000000003,308,0.7000000000000001 +2013,8,29,20,30,13.8,1.24,0.1472,0.67,31,186,46,1,13.4,31,186,0,46,0.277,97.28,85.28,0.14,990,2.3000000000000003,314,0.7000000000000001 +2013,8,29,21,30,16.6,1.25,0.14730000000000001,0.67,80,543,242,1,13.600000000000001,80,543,0,242,0.277,82.59,72.61,0.14,991,2.3000000000000003,336,1.1 +2013,8,29,22,30,19.200000000000003,1.28,0.1386,0.67,102,711,452,1,13.600000000000001,102,711,0,452,0.276,70.11,60.54,0.14,991,2.3000000000000003,355,1.3 +2013,8,29,23,30,20.200000000000003,1.3,0.125,0.67,111,804,631,0,13.3,111,804,0,631,0.276,64.41,49.71,0.14,990,2.3000000000000003,358,1.3 +2013,8,30,0,30,22.900000000000002,1.29,0.13290000000000002,0.67,122,838,752,0,12.9,122,838,0,752,0.276,53.17,41.19,0.14,989,2.3000000000000003,181,1.3 +2013,8,30,1,30,24.1,1.28,0.1298,0.67,124,857,812,0,12.4,124,857,0,812,0.276,48.07,36.660000000000004,0.14,988,2.3000000000000003,3,1.2000000000000002 +2013,8,30,2,30,24.900000000000002,1.24,0.1315,0.67,125,852,800,0,12.100000000000001,125,852,0,800,0.275,44.87,37.59,0.14,987,2.3000000000000003,7,1.1 +2013,8,30,3,30,25.3,1.17,0.1223,0.67,116,835,720,0,11.9,116,835,0,720,0.276,43.300000000000004,43.63,0.14,986,2.3000000000000003,9,1.1 +2013,8,30,4,30,25.200000000000003,1.1300000000000001,0.12200000000000001,0.67,107,784,578,0,11.9,107,784,0,578,0.276,43.33,53.06,0.14,986,2.3000000000000003,14,1.1 +2013,8,30,5,30,24.5,1.12,0.1193,0.67,90,690,388,0,11.8,90,690,0,388,0.276,45.12,64.38,0.14,986,2.3000000000000003,24,1.1 +2013,8,30,6,30,22.3,1.12,0.1165,0.67,62,494,176,0,12.5,62,494,0,176,0.276,53.71,76.71000000000001,0.14,986,2.3000000000000003,36,1.1 +2013,8,30,7,30,19.8,1.11,0.1116,0.67,0,0,0,0,14,0,0,0,0,0.277,69.38,89.28,0.14,987,2.3000000000000003,40,1 +2013,8,30,8,30,18.3,1.1,0.1066,0.67,0,0,0,0,14,0,0,0,0,0.277,76.18,102.92,0.14,988,2.3000000000000003,35,1 +2013,8,30,9,30,17.400000000000002,1.07,0.10260000000000001,0.67,0,0,0,0,14.200000000000001,0,0,0,0,0.278,81.51,116.23,0.14,988,2.3000000000000003,29,0.9 +2013,8,30,10,30,16.5,1.05,0.0999,0.67,0,0,0,0,14.200000000000001,0,0,0,0,0.278,86.49,129.43,0.14,989,2.2,22,0.8 +2013,8,30,11,30,15.8,1.04,0.0978,0.67,0,0,0,0,14.100000000000001,0,0,0,0,0.278,89.79,142.16,0.14,989,2.2,16,0.8 +2013,8,30,12,30,15.200000000000001,1.04,0.0956,0.67,0,0,0,0,14,0,0,0,0,0.277,92.26,153.56,0.14,989,2.2,10,0.8 +2013,8,30,13,30,14.600000000000001,1.06,0.094,0.67,0,0,0,0,13.700000000000001,0,0,0,0,0.277,94.52,160.88,0.14,988,2.1,182,0.8 +2013,8,30,14,30,14.200000000000001,1.08,0.0931,0.67,0,0,0,0,13.5,0,0,1,0,0.277,95.7,159.17000000000002,0.14,988,2.1,352,0.8 +2013,8,30,15,30,13.700000000000001,1.1,0.09280000000000001,0.67,0,0,0,0,13.3,0,0,0,0,0.277,97.71000000000001,149.94,0.14,987,2.1,342,0.8 +2013,8,30,16,30,13.3,1.12,0.0925,0.67,0,0,0,0,13.200000000000001,0,0,0,0,0.278,99.48,137.92000000000002,0.14,987,2.1,333,0.8 +2013,8,30,17,30,12.9,1.1400000000000001,0.0922,0.67,0,0,0,0,12.9,0,0,0,0,0.278,100,124.96000000000001,0.14,988,2.1,324,0.8 +2013,8,30,18,30,12.600000000000001,1.1500000000000001,0.0917,0.67,0,0,0,0,12.600000000000001,0,0,0,0,0.278,100,111.68,0.14,988,2.1,317,0.8 +2013,8,30,19,30,12.700000000000001,1.1500000000000001,0.091,0.67,0,0,0,0,12.700000000000001,0,0,0,0,0.278,100,98.37,0.14,989,2.1,311,0.7000000000000001 +2013,8,30,20,30,14.200000000000001,1.1500000000000001,0.0907,0.67,29,265,52,1,13,29,265,0,52,0.277,92.53,85.04,0.14,990,2.1,308,1 +2013,8,30,21,30,17,1.16,0.09050000000000001,0.67,66,619,254,1,13.200000000000001,66,619,0,254,0.277,78.44,72.35000000000001,0.14,990,2.2,312,1.5 +2013,8,30,22,30,20,1.16,0.0901,0.67,86,765,465,1,13.200000000000001,86,765,0,465,0.277,64.71000000000001,60.26,0.14,990,2.2,316,1.8 +2013,8,30,23,30,21.400000000000002,1.17,0.0896,0.67,97,839,643,0,12.8,97,839,0,643,0.277,58.120000000000005,49.4,0.14,990,2.2,316,1.7000000000000002 +2013,8,31,0,30,25,1.17,0.09240000000000001,0.67,105,872,764,0,12.5,105,872,0,764,0.277,45.67,40.84,0.14,989,2.3000000000000003,305,1.5 +2013,8,31,1,30,26.700000000000003,1.17,0.0926,0.67,108,885,821,0,12.100000000000001,108,885,0,821,0.277,40.19,36.29,0.14,988,2.4000000000000004,298,1.4000000000000001 +2013,8,31,2,30,27.6,1.18,0.0927,0.67,107,882,809,0,11.700000000000001,107,882,0,809,0.277,37.230000000000004,37.26,0.14,987,2.4000000000000004,293,1.3 +2013,8,31,3,30,27.900000000000002,1.1300000000000001,0.0995,0.67,107,851,725,0,11.5,107,851,0,725,0.277,36.04,43.37,0.14,987,2.5,289,1.3 +2013,8,31,4,30,27.700000000000003,1.11,0.10890000000000001,0.67,102,793,581,0,11.200000000000001,102,793,0,581,0.277,35.75,52.870000000000005,0.14,986,2.5,283,1.2000000000000002 +2013,8,31,5,30,26.6,1.09,0.1212,0.67,91,684,389,0,11.100000000000001,91,684,0,389,0.276,37.89,64.23,0.14,987,2.5,285,0.8 +2013,8,31,6,30,24.400000000000002,1.08,0.1328,0.67,66,469,175,0,13.200000000000001,66,469,0,175,0.276,49.76,76.59,0.14,987,2.5,295,0.5 +2013,8,31,7,30,22,1.08,0.13240000000000002,0.67,0,0,0,0,15.200000000000001,0,0,0,0,0.276,65.16,89.2,0.14,987,2.5,285,0.4 +2013,8,31,8,30,20.5,1.08,0.12660000000000002,0.67,0,0,0,0,15,0,0,0,0,0.276,70.74,102.83,0.14,988,2.5,255,0.5 +2013,8,31,9,30,19.5,1.09,0.1236,0.67,0,0,0,0,15,0,0,0,0,0.277,75.06,116.14,0.14,989,2.6,220,0.5 +2013,8,31,10,30,18.7,1.08,0.1282,0.67,0,0,0,0,14.9,0,0,0,0,0.278,78.74,129.32,0.14,989,2.7,180,0.5 +2013,8,31,11,30,18,1.07,0.1391,0.67,0,0,0,3,15,0,0,0,0,0.279,82.48,142.03,0.14,990,2.8000000000000003,156,0.6000000000000001 +2013,8,31,12,30,17.5,1.06,0.1549,0.67,0,0,0,0,15.100000000000001,0,0,0,0,0.28,85.92,153.35,0.14,990,2.9000000000000004,150,0.7000000000000001 +2013,8,31,13,30,17.2,1.04,0.1671,0.67,0,0,0,0,15.5,0,0,0,0,0.281,89.66,160.55,0.14,990,3,147,0.7000000000000001 +2013,8,31,14,30,16.7,1.02,0.1699,0.67,0,0,0,0,16,0,0,1,0,0.28200000000000003,95.44,158.81,0.14,990,3.1,141,0.6000000000000001 +2013,8,31,15,30,16.2,1,0.1683,0.67,0,0,0,0,16.2,0,0,0,0,0.28400000000000003,100,149.64000000000001,0.14,990,3,135,0.6000000000000001 +2013,8,31,16,30,15.8,0.99,0.1656,0.67,0,0,0,4,15.8,0,0,0,0,0.28500000000000003,100,137.66,0.14,990,2.9000000000000004,132,0.6000000000000001 +2013,8,31,17,30,15.600000000000001,0.99,0.1554,0.67,0,0,0,3,15.600000000000001,0,0,0,0,0.28700000000000003,100,124.72,0.14,990,2.8000000000000003,135,0.6000000000000001 +2013,8,31,18,30,15.3,0.99,0.1414,0.67,0,0,0,0,15.3,0,0,0,0,0.28800000000000003,100,111.46000000000001,0.14,990,2.6,140,0.7000000000000001 +2013,8,31,19,30,15.3,0.99,0.12560000000000002,0.67,0,0,0,1,15.3,0,0,0,0,0.289,100,98.14,0.14,991,2.5,145,0.7000000000000001 +2013,8,31,20,30,16.8,0.98,0.11570000000000001,0.67,32,224,52,8,16.400000000000002,32,23,3,35,0.29,97.45,84.81,0.14,992,2.4000000000000004,145,1.2000000000000002 +2013,8,31,21,30,19.3,0.97,0.11170000000000001,0.67,73,585,253,1,16.3,73,585,0,253,0.289,82.54,72.10000000000001,0.14,992,2.4000000000000004,137,2 +2013,8,31,22,30,21.3,0.96,0.11280000000000001,0.67,95,734,463,1,15.200000000000001,95,734,0,463,0.28800000000000003,68.26,59.97,0.14,992,2.4000000000000004,128,2.2 +2013,8,31,23,30,22.1,0.9500000000000001,0.1178,0.67,111,806,638,0,14.200000000000001,111,806,0,638,0.28700000000000003,60.89,49.08,0.14,992,2.4000000000000004,124,2.3000000000000003 +2013,9,1,0,30,23.900000000000002,0.9400000000000001,0.1325,0.66,125,833,759,1,13.700000000000001,125,833,0,759,0.28600000000000003,52.72,40.480000000000004,0.14,992,2.4000000000000004,120,2 +2013,9,1,1,30,24.700000000000003,0.91,0.1331,0.66,129,849,817,1,13.200000000000001,129,849,0,817,0.28600000000000003,48.77,35.92,0.14,991,2.4000000000000004,122,1.9000000000000001 +2013,9,1,2,30,25.1,0.9,0.13240000000000002,0.66,128,846,805,1,12.700000000000001,128,846,0,805,0.28700000000000003,46.12,36.93,0.14,991,2.4000000000000004,125,1.8 +2013,9,1,3,30,25,0.91,0.13870000000000002,0.66,127,817,723,1,12.200000000000001,127,817,0,723,0.28800000000000003,44.92,43.11,0.14,990,2.4000000000000004,124,1.9000000000000001 +2013,9,1,4,30,24.400000000000002,0.9,0.1441,0.66,119,761,580,1,11.8,119,761,0,580,0.28800000000000003,45.410000000000004,52.67,0.14,990,2.3000000000000003,117,1.9000000000000001 +2013,9,1,5,30,23.5,0.89,0.1381,0.66,99,665,390,3,11.600000000000001,82,16,0,89,0.28800000000000003,47.27,64.08,0.14,990,2.3000000000000003,104,2 +2013,9,1,6,30,21.6,0.9,0.12510000000000002,0.66,66,480,178,1,11.8,66,480,0,178,0.28800000000000003,53.620000000000005,76.47,0.14,991,2.2,93,1.6 +2013,9,1,7,30,19.400000000000002,0.91,0.1183,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.289,65.37,89.11,0.14,991,2.2,89,1.1 +2013,9,1,8,30,17.8,0.93,0.11280000000000001,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.291,73.88,102.74000000000001,0.14,992,2.1,92,1 +2013,9,1,9,30,16.900000000000002,0.9500000000000001,0.11030000000000001,0.66,0,0,0,0,13.3,0,0,0,0,0.292,79.41,116.05,0.14,993,2.1,104,0.9 +2013,9,1,10,30,16.1,0.9500000000000001,0.1075,0.66,0,0,0,0,13.4,0,0,0,0,0.293,83.92,129.22,0.14,994,2,122,0.9 +2013,9,1,11,30,15.5,0.91,0.10060000000000001,0.66,0,0,0,0,13.3,0,0,0,0,0.293,86.83,141.88,0.14,994,1.9000000000000001,138,0.8 +2013,9,1,12,30,14.9,0.9,0.0959,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.293,89.61,153.13,0.14,994,1.9000000000000001,147,0.8 +2013,9,1,13,30,14.4,0.89,0.0926,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.292,92.02,160.21,0.14,994,1.8,150,0.8 +2013,9,1,14,30,14,0.88,0.0896,0.66,0,0,0,0,13.100000000000001,0,0,1,0,0.291,94.02,158.45000000000002,0.14,993,1.7000000000000002,151,0.8 +2013,9,1,15,30,13.5,0.85,0.0881,0.66,0,0,0,0,13,0,0,0,0,0.291,97.10000000000001,149.34,0.14,993,1.7000000000000002,153,0.8 +2013,9,1,16,30,13.100000000000001,0.8200000000000001,0.08700000000000001,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.29,99.7,137.4,0.14,993,1.6,155,0.8 +2013,9,1,17,30,12.600000000000001,0.81,0.0838,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.291,100,124.49000000000001,0.14,993,1.5,158,0.8 +2013,9,1,18,30,12.3,0.8200000000000001,0.0799,0.66,0,0,0,0,12.3,0,0,0,0,0.292,100,111.22,0.14,994,1.4000000000000001,161,0.8 +2013,9,1,19,30,12.4,0.84,0.0753,0.66,0,0,0,0,12.4,0,0,0,0,0.293,100,97.91,0.14,995,1.3,165,0.8 +2013,9,1,20,30,13.9,0.86,0.0697,0.66,30,324,61,1,12.4,30,324,0,61,0.294,90.69,84.57000000000001,0.14,995,1.3,163,1.3 +2013,9,1,21,30,16.5,0.88,0.0653,0.66,62,682,275,1,12.200000000000001,62,682,0,275,0.296,75.93,71.84,0.14,996,1.3,152,2.2 +2013,9,1,22,30,18.8,0.89,0.0631,0.66,78,822,493,1,11.700000000000001,78,822,0,493,0.297,63.440000000000005,59.69,0.14,996,1.3,139,2.6 +2013,9,1,23,30,19.700000000000003,0.91,0.0608,0.66,87,892,675,1,11.200000000000001,87,892,0,675,0.298,57.84,48.76,0.14,996,1.3,135,2.7 +2013,9,2,0,30,21.700000000000003,0.85,0.10060000000000001,0.66,113,886,790,1,10.9,113,886,0,790,0.3,50.19,40.13,0.14,995,1.4000000000000001,126,2.7 +2013,9,2,1,30,22.6,0.87,0.1038,0.66,117,896,846,0,10.9,117,896,0,846,0.3,47.550000000000004,35.550000000000004,0.14,994,1.5,122,2.7 +2013,9,2,2,30,23.200000000000003,0.89,0.1028,0.66,116,894,833,0,11,116,894,0,833,0.3,46.06,36.6,0.14,994,1.5,119,2.7 +2013,9,2,3,30,23.200000000000003,0.87,0.1218,0.66,120,851,743,1,11,120,851,0,743,0.3,46.03,42.86,0.14,993,1.6,116,2.7 +2013,9,2,4,30,22.700000000000003,0.9,0.11620000000000001,0.66,107,806,597,0,10.9,107,806,0,597,0.3,47.19,52.480000000000004,0.14,993,1.6,113,2.6 +2013,9,2,5,30,21.700000000000003,0.92,0.10400000000000001,0.66,87,724,405,1,10.8,87,724,0,405,0.301,50.01,63.93,0.14,994,1.6,111,2.5 +2013,9,2,6,30,19.8,0.93,0.09390000000000001,0.66,59,543,187,1,10.9,59,543,0,187,0.302,56.43,76.35000000000001,0.14,994,1.6,109,1.9000000000000001 +2013,9,2,7,30,17.900000000000002,0.96,0.0843,0.66,0,0,0,1,11.600000000000001,0,0,0,0,0.303,66.67,89.01,0.14,995,1.6,107,1.2000000000000002 +2013,9,2,8,30,16.7,0.99,0.0708,0.66,0,0,0,1,12.100000000000001,0,0,0,0,0.303,74.22,102.65,0.14,996,1.6,107,1 +2013,9,2,9,30,16,1.04,0.0616,0.66,0,0,0,1,12.3,0,0,0,0,0.302,78.53,115.96000000000001,0.14,996,1.6,112,0.9 +2013,9,2,10,30,15.4,1.08,0.0579,0.66,0,0,0,0,12.3,0,0,0,0,0.302,82.04,129.11,0.14,996,1.5,119,0.9 +2013,9,2,11,30,14.9,1.11,0.0543,0.66,0,0,0,0,12.3,0,0,0,0,0.302,84.63,141.74,0.14,996,1.5,125,0.9 +2013,9,2,12,30,14.600000000000001,1.11,0.053200000000000004,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.303,85.64,152.91,0.14,996,1.5,130,0.9 +2013,9,2,13,30,14.200000000000001,1.09,0.0531,0.66,0,0,0,3,12.200000000000001,0,0,0,0,0.303,87.91,159.87,0.14,996,1.5,133,0.9 +2013,9,2,14,30,13.8,1.08,0.054700000000000006,0.66,0,0,0,3,12.200000000000001,0,0,1,0,0.304,90.14,158.09,0.14,995,1.5,136,0.9 +2013,9,2,15,30,13.5,1.08,0.057800000000000004,0.66,0,0,0,3,12.200000000000001,0,0,0,0,0.304,91.83,149.04,0.14,995,1.5,137,0.9 +2013,9,2,16,30,13.200000000000001,1.07,0.060700000000000004,0.66,0,0,0,3,12.100000000000001,0,0,0,0,0.304,93.25,137.14000000000001,0.14,995,1.5,138,0.9 +2013,9,2,17,30,13,1.06,0.06330000000000001,0.66,0,0,0,3,12.100000000000001,0,0,0,0,0.303,94.07000000000001,124.24000000000001,0.14,995,1.5,138,0.9 +2013,9,2,18,30,12.8,1.05,0.0661,0.66,0,0,0,0,12,0,0,0,0,0.302,94.75,110.99000000000001,0.14,996,1.5,136,0.9 +2013,9,2,19,30,13.200000000000001,1.07,0.0669,0.66,0,0,0,3,11.8,0,0,0,0,0.302,91.38,97.67,0.14,997,1.5,134,1 +2013,9,2,20,30,14.700000000000001,1.09,0.0669,0.66,29,347,64,1,11.9,29,347,0,64,0.301,83.15,84.33,0.14,997,1.5,132,1.4000000000000001 +2013,9,2,21,30,16.900000000000002,1.12,0.065,0.66,61,685,277,1,11.9,61,685,0,277,0.302,72.32000000000001,71.57000000000001,0.14,998,1.5,127,2.4000000000000004 +2013,9,2,22,30,18.6,1.1500000000000001,0.061200000000000004,0.66,76,823,495,1,11.100000000000001,76,823,0,495,0.303,61.480000000000004,59.4,0.14,998,1.5,121,3 +2013,9,2,23,30,19.3,1.1500000000000001,0.060500000000000005,0.66,85,890,675,3,10.5,236,24,0,251,0.303,56.59,48.43,0.14,998,1.5,120,3.1 +2013,9,3,0,30,20.8,0.9,0.0753,0.66,100,908,798,3,10.200000000000001,347,24,0,366,0.302,50.74,39.77,0.14,997,1.5,117,3.2 +2013,9,3,1,30,21.5,0.96,0.07200000000000001,0.66,100,926,857,1,10,100,926,0,857,0.3,48.06,35.18,0.14,997,1.5,115,3.3000000000000003 +2013,9,3,2,30,21.900000000000002,1.01,0.0709,0.66,99,924,844,1,9.700000000000001,99,924,0,844,0.299,45.96,36.27,0.14,996,1.5,114,3.3000000000000003 +2013,9,3,3,30,21.700000000000003,0.93,0.0805,0.66,100,894,758,1,9.5,100,894,0,758,0.297,45.7,42.6,0.14,995,1.5,114,3.3000000000000003 +2013,9,3,4,30,21.1,0.9500000000000001,0.0799,0.66,92,848,611,1,9.4,92,848,0,611,0.296,47.18,52.28,0.14,995,1.5,114,3.3000000000000003 +2013,9,3,5,30,20,0.98,0.0766,0.66,77,764,415,1,9.5,77,764,0,415,0.294,50.67,63.78,0.14,996,1.5,114,3.1 +2013,9,3,6,30,18.5,1.01,0.0761,0.66,55,580,193,1,9.600000000000001,55,580,0,193,0.294,56.08,76.24,0.14,996,1.5,115,2.4000000000000004 +2013,9,3,7,30,17,1.05,0.076,0.66,10,81,12,1,10,10,81,0,12,0.293,63.410000000000004,88.92,0.14,997,1.4000000000000001,116,1.6 +2013,9,3,8,30,16,1.05,0.0713,0.66,0,0,0,0,10.4,0,0,0,0,0.293,69.59,102.56,0.14,998,1.4000000000000001,119,1.3 +2013,9,3,9,30,15.3,1.03,0.0685,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.293,73.72,115.86,0.14,999,1.4000000000000001,124,1.1 +2013,9,3,10,30,14.9,0.98,0.07350000000000001,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.293,75.69,129,0.14,999,1.3,129,1.1 +2013,9,3,11,30,14.600000000000001,0.91,0.078,0.66,0,0,0,0,10.5,0,0,0,0,0.292,76.38,141.59,0.14,999,1.3,131,1.1 +2013,9,3,12,30,14.4,0.88,0.085,0.66,0,0,0,0,10.3,0,0,0,0,0.291,76.28,152.69,0.14,998,1.3,131,1.1 +2013,9,3,13,30,14.100000000000001,0.86,0.0892,0.66,0,0,0,1,10.100000000000001,0,0,0,0,0.29,76.77,159.53,0.14,998,1.3,131,1.1 +2013,9,3,14,30,13.9,0.81,0.0884,0.66,0,0,0,1,9.9,0,0,1,0,0.289,76.82000000000001,157.72,0.14,998,1.3,131,1.1 +2013,9,3,15,30,13.600000000000001,0.8,0.09330000000000001,0.66,0,0,0,0,9.8,0,0,0,0,0.289,77.73,148.73,0.14,997,1.2000000000000002,131,1 +2013,9,3,16,30,13.4,0.8,0.09430000000000001,0.66,0,0,0,0,9.700000000000001,0,0,0,0,0.289,78.42,136.87,0.14,997,1.2000000000000002,131,1 +2013,9,3,17,30,13.100000000000001,0.79,0.0907,0.66,0,0,0,3,9.700000000000001,0,0,0,0,0.289,79.84,124,0.14,997,1.2000000000000002,132,1 +2013,9,3,18,30,12.8,0.8,0.09050000000000001,0.66,0,0,0,3,9.700000000000001,0,0,0,0,0.289,81.51,110.76,0.14,997,1.2000000000000002,133,1 +2013,9,3,19,30,12.9,0.8200000000000001,0.08950000000000001,0.66,0,0,0,3,9.8,0,0,0,0,0.289,81.53,97.43,0.14,998,1.2000000000000002,133,1 +2013,9,3,20,30,14.4,0.8200000000000001,0.08610000000000001,0.66,34,314,67,1,10.100000000000001,34,314,0,67,0.289,75.14,84.09,0.14,998,1.2000000000000002,131,1.5 +2013,9,3,21,30,16.6,0.8200000000000001,0.0845,0.66,69,663,282,1,10.100000000000001,69,663,0,282,0.289,65.27,71.31,0.14,999,1.2000000000000002,123,2.5 +2013,9,3,22,30,18.2,0.81,0.0855,0.66,88,802,500,0,9.3,88,802,0,500,0.289,56.11,59.11,0.14,999,1.2000000000000002,116,3 +2013,9,3,23,30,18.900000000000002,0.81,0.0838,0.66,99,874,683,1,8.9,99,874,0,683,0.289,52.32,48.11,0.14,999,1.2000000000000002,114,3.1 +2013,9,4,0,30,20.5,0.88,0.07690000000000001,0.66,102,914,808,1,8.6,102,914,0,808,0.28800000000000003,46.5,39.4,0.14,998,1.3,109,3.1 +2013,9,4,1,30,21.200000000000003,0.88,0.0741,0.66,103,931,868,0,8.4,103,931,0,868,0.28700000000000003,43.69,34.800000000000004,0.14,997,1.3,108,3.1 +2013,9,4,2,30,21.5,0.87,0.0729,0.66,102,929,854,0,8.1,102,929,0,854,0.28600000000000003,42.09,35.94,0.14,996,1.3,108,3 +2013,9,4,3,30,21.400000000000002,0.88,0.0724,0.66,97,909,769,0,7.9,97,909,0,769,0.28500000000000003,41.93,42.34,0.14,996,1.3,107,2.9000000000000004 +2013,9,4,4,30,20.900000000000002,0.89,0.07200000000000001,0.66,89,864,620,0,7.9,89,864,0,620,0.28500000000000003,43.02,52.09,0.14,995,1.3,106,2.8000000000000003 +2013,9,4,5,30,19.900000000000002,0.89,0.0712,0.66,76,778,422,0,7.9,76,778,0,422,0.28500000000000003,45.93,63.64,0.14,996,1.3,104,2.6 +2013,9,4,6,30,18,0.9,0.0699,0.66,55,597,198,1,8.200000000000001,55,597,0,198,0.28600000000000003,52.63,76.12,0.14,996,1.3,102,1.8 +2013,9,4,7,30,15.9,0.9,0.0692,0.66,11,88,13,1,9.200000000000001,11,88,0,13,0.28600000000000003,64.4,88.83,0.14,997,1.3,101,1 +2013,9,4,8,30,14.600000000000001,0.9,0.0692,0.66,0,0,0,0,9.8,0,0,0,0,0.28600000000000003,73.02,102.46000000000001,0.14,997,1.3,104,0.8 +2013,9,4,9,30,13.9,0.93,0.0695,0.66,0,0,0,0,10.100000000000001,0,0,0,0,0.28600000000000003,77.63,115.77,0.14,998,1.3,111,0.8 +2013,9,4,10,30,13.3,0.97,0.07060000000000001,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.28500000000000003,81.3,128.89000000000001,0.14,998,1.3,118,0.8 +2013,9,4,11,30,12.8,1.02,0.0743,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.28400000000000003,84.43,141.44,0.14,998,1.3,126,0.8 +2013,9,4,12,30,12.4,1.06,0.08020000000000001,0.66,0,0,0,0,10.3,0,0,0,0,0.28300000000000003,87.22,152.46,0.14,998,1.3,133,0.8 +2013,9,4,13,30,12,1.08,0.0857,0.66,0,0,0,0,10.4,0,0,0,0,0.28300000000000003,90.09,159.18,0.14,997,1.3,138,0.8 +2013,9,4,14,30,11.5,1.09,0.0901,0.66,0,0,0,0,10.5,0,0,1,0,0.28200000000000003,93.7,157.35,0.14,997,1.3,143,0.8 +2013,9,4,15,30,11.200000000000001,1.12,0.0922,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.28200000000000003,96.09,148.42000000000002,0.14,996,1.3,148,0.8 +2013,9,4,16,30,10.8,1.1500000000000001,0.0922,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.281,99.16,136.61,0.14,995,1.2000000000000002,152,0.8 +2013,9,4,17,30,10.4,1.16,0.09090000000000001,0.66,0,0,0,1,10.4,0,0,0,0,0.281,100,123.75,0.14,995,1.2000000000000002,156,0.8 +2013,9,4,18,30,10.100000000000001,1.18,0.0892,0.66,0,0,0,1,10.100000000000001,0,0,0,0,0.28,100,110.52,0.14,996,1.2000000000000002,161,0.8 +2013,9,4,19,30,10.200000000000001,1.2,0.0867,0.66,0,0,0,3,10.200000000000001,0,0,0,0,0.28,100,97.19,0.14,996,1.2000000000000002,167,0.8 +2013,9,4,20,30,12.100000000000001,1.21,0.0843,0.66,33,350,70,1,10.8,33,350,0,70,0.279,91.71000000000001,83.84,0.14,997,1.2000000000000002,166,0.9 +2013,9,4,21,30,15.3,1.24,0.0816,0.66,66,683,288,1,10.9,66,683,0,288,0.278,75.27,71.05,0.14,997,1.2000000000000002,141,1.4000000000000001 +2013,9,4,22,30,18.1,1.28,0.07880000000000001,0.66,82,821,507,1,10.600000000000001,82,821,0,507,0.277,61.42,58.82,0.14,997,1.2000000000000002,114,1.7000000000000002 +2013,9,4,23,30,19.1,1.33,0.07690000000000001,0.66,92,890,690,1,9.5,92,890,0,690,0.276,53.68,47.78,0.14,997,1.2000000000000002,110,1.9000000000000001 +2013,9,5,0,30,21.1,1.17,0.0811,0.66,101,919,815,1,8.8,101,919,0,815,0.275,45.19,39.04,0.14,996,1.2000000000000002,107,2 +2013,9,5,1,30,22,1.21,0.07780000000000001,0.66,102,933,871,0,8.3,102,933,0,871,0.275,41.57,34.43,0.14,995,1.3,104,2.1 +2013,9,5,2,30,22.5,1.23,0.0743,0.66,99,933,858,0,8,99,933,0,858,0.274,39.49,35.6,0.14,995,1.3,102,2.1 +2013,9,5,3,30,22.6,1.4000000000000001,0.0678,0.66,92,920,774,0,7.7,92,920,0,774,0.272,38.47,42.08,0.14,994,1.3,99,2.2 +2013,9,5,4,30,22.200000000000003,1.34,0.0654,0.66,84,878,626,0,7.6000000000000005,84,878,0,626,0.271,39.08,51.9,0.14,994,1.3,95,2.1 +2013,9,5,5,30,21.200000000000003,1.27,0.0636,0.66,72,796,427,0,7.7,72,796,0,427,0.27,41.78,63.49,0.14,994,1.3,89,2 +2013,9,5,6,30,19.1,1.21,0.0629,0.66,52,620,202,0,8.1,52,620,0,202,0.269,48.86,76,0.14,994,1.3,81,1.3 +2013,9,5,7,30,16.6,1.16,0.06330000000000001,0.66,11,117,14,1,9.700000000000001,11,117,0,14,0.269,63.71,88.75,0.14,994,1.3,70,0.8 +2013,9,5,8,30,15.100000000000001,1.1300000000000001,0.0649,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.269,72.73,102.37,0.14,995,1.3,62,0.7000000000000001 +2013,9,5,9,30,14.200000000000001,1.12,0.0671,0.66,0,0,0,0,10.5,0,0,0,0,0.269,78.48,115.67,0.14,995,1.2000000000000002,53,0.7000000000000001 +2013,9,5,10,30,13.5,1.1300000000000001,0.0694,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.269,82.83,128.78,0.14,996,1.2000000000000002,43,0.7000000000000001 +2013,9,5,11,30,13.100000000000001,1.1500000000000001,0.07150000000000001,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.269,85.45,141.29,0.14,996,1.2000000000000002,30,0.7000000000000001 +2013,9,5,12,30,12.700000000000001,1.1500000000000001,0.0732,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.268,87.74,152.23,0.14,996,1.2000000000000002,13,0.7000000000000001 +2013,9,5,13,30,12.4,1.1500000000000001,0.0746,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.268,89.22,158.84,0.14,996,1.2000000000000002,173,0.7000000000000001 +2013,9,5,14,30,12.100000000000001,1.1400000000000001,0.0755,0.66,0,0,0,0,10.600000000000001,0,0,1,0,0.267,90.51,156.98,0.14,995,1.2000000000000002,333,0.7000000000000001 +2013,9,5,15,30,11.700000000000001,1.12,0.0763,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.267,92.71000000000001,148.1,0.14,995,1.2000000000000002,320,0.7000000000000001 +2013,9,5,16,30,11.200000000000001,1.1,0.07680000000000001,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.267,95.83,136.33,0.14,994,1.2000000000000002,312,0.7000000000000001 +2013,9,5,17,30,10.8,1.09,0.07690000000000001,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.267,98.44,123.5,0.14,994,1.3,309,0.8 +2013,9,5,18,30,10.4,1.09,0.0771,0.66,0,0,0,0,10.4,0,0,0,0,0.267,100,110.28,0.14,995,1.3,302,0.8 +2013,9,5,19,30,10.5,1.09,0.07730000000000001,0.66,0,0,0,0,10.5,0,0,0,0,0.267,100,96.95,0.14,995,1.3,292,0.8 +2013,9,5,20,30,11.9,1.08,0.07780000000000001,0.66,34,364,74,1,10.600000000000001,34,364,0,74,0.267,91.75,83.60000000000001,0.14,996,1.3,280,0.9 +2013,9,5,21,30,15.100000000000001,1.09,0.077,0.66,66,688,293,1,10.8,66,688,0,293,0.267,75.62,70.78,0.14,997,1.3,299,0.7000000000000001 +2013,9,5,22,30,18.3,1.1300000000000001,0.0742,0.66,82,824,513,0,10,82,824,0,513,0.267,58.35,58.52,0.14,997,1.3,177,0.4 +2013,9,5,23,30,19.6,1.17,0.07200000000000001,0.66,92,892,695,0,8.9,92,892,0,695,0.267,50.06,47.45,0.14,996,1.3,28,0.5 +2013,9,6,0,30,22.400000000000002,1.22,0.0694,0.66,96,926,819,0,8.200000000000001,96,926,0,819,0.267,40.160000000000004,38.67,0.14,995,1.4000000000000001,48,0.8 +2013,9,6,1,30,23.8,1.26,0.0678,0.66,97,941,877,0,7.300000000000001,97,941,0,877,0.267,34.81,34.05,0.14,994,1.4000000000000001,53,1 +2013,9,6,2,30,24.6,1.28,0.0666,0.66,96,939,863,0,6.7,96,939,0,863,0.267,31.67,35.27,0.14,993,1.4000000000000001,54,1.2000000000000002 +2013,9,6,3,30,24.900000000000002,1.24,0.0671,0.66,93,918,777,0,6.300000000000001,93,918,0,777,0.268,30.38,41.82,0.14,993,1.4000000000000001,55,1.3 +2013,9,6,4,30,24.6,1.26,0.0663,0.66,85,875,627,0,6.2,85,875,0,627,0.269,30.72,51.7,0.14,992,1.4000000000000001,54,1.4000000000000001 +2013,9,6,5,30,23.700000000000003,1.27,0.06570000000000001,0.66,73,792,428,0,6.2,73,792,0,428,0.27,32.49,63.35,0.14,992,1.4000000000000001,53,1.4000000000000001 +2013,9,6,6,30,21.200000000000003,1.27,0.065,0.66,53,618,203,0,7,53,618,0,203,0.271,39.69,75.89,0.14,992,1.4000000000000001,51,1.1 +2013,9,6,7,30,18.2,1.28,0.06430000000000001,0.66,11,127,14,0,9.3,11,127,0,14,0.273,55.93,88.66,0.14,992,1.4000000000000001,48,0.9 +2013,9,6,8,30,16.3,1.28,0.0639,0.66,0,0,0,0,9.600000000000001,0,0,0,0,0.274,64.74,102.28,0.14,993,1.4000000000000001,44,0.8 +2013,9,6,9,30,15.3,1.27,0.06430000000000001,0.66,0,0,0,0,10.100000000000001,0,0,0,0,0.274,71.07000000000001,115.58,0.14,993,1.4000000000000001,41,0.8 +2013,9,6,10,30,14.4,1.27,0.0653,0.66,0,0,0,0,10.4,0,0,0,0,0.275,76.82000000000001,128.66,0.14,994,1.5,36,0.8 +2013,9,6,11,30,13.700000000000001,1.25,0.06670000000000001,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.275,81.76,141.14000000000001,0.14,994,1.5,28,0.8 +2013,9,6,12,30,13,1.24,0.0682,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.275,86.11,151.99,0.14,994,1.5,16,0.8 +2013,9,6,13,30,12.3,1.22,0.0695,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.275,90.05,158.49,0.14,994,1.5,182,0.8 +2013,9,6,14,30,11.700000000000001,1.21,0.07060000000000001,0.66,0,0,0,0,10.700000000000001,0,0,1,0,0.275,93.43,156.6,0.14,993,1.5,349,0.8 +2013,9,6,15,30,11.200000000000001,1.19,0.0717,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.275,96.60000000000001,147.79,0.14,993,1.5,337,0.8 +2013,9,6,16,30,10.700000000000001,1.17,0.0728,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.275,100,136.06,0.14,993,1.5,327,0.8 +2013,9,6,17,30,10.4,1.1500000000000001,0.0742,0.66,0,0,0,0,10.4,0,0,0,0,0.275,100,123.25,0.14,993,1.5,317,0.7000000000000001 +2013,9,6,18,30,10.100000000000001,1.12,0.0758,0.66,0,0,0,0,10.100000000000001,0,0,0,0,0.275,100,110.03,0.14,993,1.4000000000000001,308,0.7000000000000001 +2013,9,6,19,30,10.3,1.1,0.0776,0.66,0,0,0,1,10.3,0,0,0,0,0.275,100,96.71000000000001,0.14,994,1.4000000000000001,301,0.8 +2013,9,6,20,30,12,1.08,0.0796,0.66,35,368,78,1,10.8,35,368,0,78,0.274,92.13,83.35000000000001,0.14,995,1.4000000000000001,296,1 +2013,9,6,21,30,15.3,1.07,0.0784,0.66,68,687,297,1,11,68,687,0,297,0.274,75.5,70.51,0.14,995,1.4000000000000001,307,1.4000000000000001 +2013,9,6,22,30,18.5,1.1,0.07440000000000001,0.66,83,823,516,0,11.200000000000001,83,823,0,516,0.273,62.300000000000004,58.230000000000004,0.14,995,1.4000000000000001,318,1.5 +2013,9,6,23,30,19.900000000000002,1.1400000000000001,0.07060000000000001,0.66,92,892,699,0,10.200000000000001,92,892,0,699,0.272,53.58,47.12,0.14,995,1.4000000000000001,317,1.4000000000000001 +2013,9,7,0,30,23.400000000000002,1.18,0.068,0.66,96,928,825,0,9.1,96,928,0,825,0.271,40.29,38.300000000000004,0.15,993,1.4000000000000001,297,0.9 +2013,9,7,1,30,25.3,1.22,0.0664,0.66,98,943,882,0,7.9,98,943,0,882,0.271,33.05,33.67,0.15,992,1.4000000000000001,272,0.6000000000000001 +2013,9,7,2,30,26.400000000000002,1.25,0.0654,0.66,96,944,871,0,7.1000000000000005,96,944,0,871,0.271,29.27,34.93,0.15,991,1.3,244,0.5 +2013,9,7,3,30,26.8,1.26,0.0653,0.66,93,924,784,0,6.5,93,924,0,784,0.271,27.57,41.57,0.15,990,1.3,216,0.5 +2013,9,7,4,30,26.6,1.27,0.0649,0.66,85,881,633,0,6.300000000000001,85,881,0,633,0.271,27.35,51.51,0.15,990,1.3,181,0.5 +2013,9,7,5,30,25.6,1.27,0.0651,0.66,73,799,433,0,6.2,73,799,0,433,0.271,28.82,63.2,0.15,989,1.3,126,0.5 +2013,9,7,6,30,23,1.26,0.0658,0.66,53,622,206,0,7.5,53,622,0,206,0.271,36.95,75.77,0.15,990,1.3,82,0.5 +2013,9,7,7,30,20.1,1.25,0.0668,0.66,12,129,15,0,10.8,12,129,0,15,0.271,55.14,88.57000000000001,0.15,990,1.3,68,0.6000000000000001 +2013,9,7,8,30,18.3,1.23,0.06810000000000001,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.27,61.24,102.19,0.15,991,1.4000000000000001,53,0.7000000000000001 +2013,9,7,9,30,17.2,1.21,0.0694,0.66,0,0,0,0,10.9,0,0,0,0,0.27,66.35,115.48,0.15,992,1.4000000000000001,33,0.8 +2013,9,7,10,30,16.1,1.2,0.07060000000000001,0.66,0,0,0,0,10.9,0,0,0,0,0.269,71.49,128.55,0.15,992,1.4000000000000001,15,0.8 +2013,9,7,11,30,15.100000000000001,1.19,0.07200000000000001,0.66,0,0,0,0,10.9,0,0,0,0,0.269,76.15,140.98,0.15,992,1.4000000000000001,181,0.9 +2013,9,7,12,30,14.3,1.18,0.07350000000000001,0.66,0,0,0,0,10.8,0,0,0,0,0.269,79.59,151.75,0.15,992,1.4000000000000001,351,0.9 +2013,9,7,13,30,13.5,1.17,0.07490000000000001,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.269,83.21000000000001,158.13,0.15,992,1.4000000000000001,342,0.9 +2013,9,7,14,30,12.9,1.17,0.0762,0.66,0,0,0,1,10.600000000000001,0,0,0,0,0.269,85.7,156.23,0.15,992,1.4000000000000001,333,0.9 +2013,9,7,15,30,12.3,1.16,0.0775,0.66,0,0,0,0,10.4,0,0,0,0,0.268,88.45,147.46,0.15,992,1.4000000000000001,324,0.8 +2013,9,7,16,30,11.8,1.16,0.0785,0.66,0,0,0,0,10.4,0,0,0,0,0.268,90.87,135.78,0.15,992,1.4000000000000001,316,0.8 +2013,9,7,17,30,11.4,1.16,0.079,0.66,0,0,0,0,10.3,0,0,0,0,0.267,92.83,123,0.15,992,1.4000000000000001,310,0.8 +2013,9,7,18,30,10.9,1.16,0.079,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.266,95.62,109.79,0.15,992,1.4000000000000001,303,0.8 +2013,9,7,19,30,11,1.17,0.0787,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.265,94.72,96.46000000000001,0.15,992,1.4000000000000001,294,0.8 +2013,9,7,20,30,12.700000000000001,1.17,0.0785,0.66,36,385,82,0,10.3,36,385,0,82,0.264,85.35000000000001,83.10000000000001,0.15,993,1.4000000000000001,289,1.1 +2013,9,7,21,30,15.700000000000001,1.18,0.077,0.66,67,696,303,0,10.5,67,696,0,303,0.264,71.17,70.24,0.15,993,1.4000000000000001,291,1.5 +2013,9,7,22,30,18.900000000000002,1.2,0.0758,0.66,84,826,522,0,10.700000000000001,84,826,0,522,0.265,58.77,57.93,0.15,993,1.4000000000000001,292,1.5 +2013,9,7,23,30,20.400000000000002,1.21,0.0758,0.66,94,890,704,0,10.100000000000001,94,890,0,704,0.265,51.63,46.79,0.15,992,1.4000000000000001,292,1.4000000000000001 +2013,9,8,0,30,24.200000000000003,1.18,0.0824,0.66,103,915,825,0,9.4,103,915,0,825,0.268,39.160000000000004,37.93,0.15,991,1.5,279,0.7000000000000001 +2013,9,8,1,30,26,1.19,0.0839,0.66,107,927,882,0,8.8,107,927,0,882,0.269,33.78,33.28,0.15,990,1.5,191,0.4 +2013,9,8,2,30,27.1,1.2,0.085,0.66,106,923,866,1,8.5,106,923,0,866,0.271,30.86,34.6,0.15,989,1.5,103,0.6000000000000001 +2013,9,8,3,30,27.400000000000002,1.19,0.0874,0.66,103,899,778,1,8.3,103,899,0,778,0.273,30.07,41.31,0.15,988,1.5,89,1 +2013,9,8,4,30,27.1,1.19,0.0883,0.66,95,852,628,0,8.3,95,852,0,628,0.275,30.52,51.33,0.15,987,1.5,83,1.4000000000000001 +2013,9,8,5,30,25.900000000000002,1.2,0.0902,0.66,82,760,426,0,8.4,82,760,0,426,0.277,32.92,63.06,0.15,987,1.6,75,1.6 +2013,9,8,6,30,23.3,1.2,0.09240000000000001,0.66,60,573,201,0,9.1,60,573,0,201,0.279,40.53,75.66,0.15,988,1.6,66,1.4000000000000001 +2013,9,8,7,30,20.3,1.2,0.09340000000000001,0.66,12,94,15,0,11,12,94,0,15,0.281,55.13,88.48,0.15,988,1.6,60,0.9 +2013,9,8,8,30,18.400000000000002,1.19,0.09190000000000001,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.28400000000000003,64.63,102.09,0.15,989,1.6,60,0.8 +2013,9,8,9,30,17.2,1.18,0.0893,0.66,0,0,0,0,12,0,0,0,0,0.28600000000000003,71.53,115.38,0.15,990,1.6,60,0.7000000000000001 +2013,9,8,10,30,16.3,1.16,0.0877,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.28700000000000003,76.44,128.43,0.15,991,1.6,62,0.7000000000000001 +2013,9,8,11,30,15.5,1.1500000000000001,0.08650000000000001,0.66,0,0,0,0,12.3,0,0,0,0,0.28800000000000003,81.06,140.82,0.15,991,1.6,63,0.7000000000000001 +2013,9,8,12,30,14.9,1.1400000000000001,0.085,0.66,0,0,0,0,12.3,0,0,0,0,0.28700000000000003,84.38,151.51,0.15,991,1.5,60,0.7000000000000001 +2013,9,8,13,30,14.4,1.1300000000000001,0.08310000000000001,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.28700000000000003,86.73,157.78,0.15,991,1.5,50,0.7000000000000001 +2013,9,8,14,30,13.9,1.1300000000000001,0.08070000000000001,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.28600000000000003,88.8,155.85,0.15,990,1.4000000000000001,33,0.7000000000000001 +2013,9,8,15,30,13.3,1.1400000000000001,0.0784,0.66,0,0,0,0,11.9,0,0,0,0,0.28500000000000003,91.38,147.14000000000001,0.15,990,1.4000000000000001,15,0.6000000000000001 +2013,9,8,16,30,12.9,1.1500000000000001,0.0761,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.28600000000000003,92.7,135.5,0.15,989,1.3,182,0.6000000000000001 +2013,9,8,17,30,12.5,1.16,0.0737,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.28600000000000003,94,122.74000000000001,0.15,989,1.3,352,0.6000000000000001 +2013,9,8,18,30,12.200000000000001,1.17,0.0712,0.66,0,0,0,0,11.4,0,0,0,0,0.28600000000000003,94.82000000000001,109.54,0.15,990,1.3,340,0.6000000000000001 +2013,9,8,19,30,12.200000000000001,1.18,0.06860000000000001,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.28500000000000003,93.81,96.22,0.15,990,1.2000000000000002,325,0.7000000000000001 +2013,9,8,20,30,13.600000000000001,1.19,0.06670000000000001,0.66,35,422,88,0,11.200000000000001,35,422,0,88,0.28400000000000003,85.46000000000001,82.85000000000001,0.15,991,1.2000000000000002,314,0.8 +2013,9,8,21,30,16.7,1.2,0.0644,0.66,64,725,313,1,11.200000000000001,64,725,0,313,0.28300000000000003,70.16,69.97,0.15,991,1.2000000000000002,161,1.1 +2013,9,8,22,30,19.700000000000003,1.22,0.0606,0.66,78,852,534,0,10.700000000000001,78,852,0,534,0.281,56,57.64,0.15,991,1.2000000000000002,17,1.4000000000000001 +2013,9,8,23,30,20.8,1.23,0.058,0.66,86,916,717,0,9.9,86,916,0,717,0.28,49.54,46.46,0.15,990,1.2000000000000002,24,1.5 +2013,9,9,0,30,23.200000000000003,1.24,0.0575,0.66,91,948,843,0,9.200000000000001,91,948,0,843,0.28,41.03,37.56,0.15,989,1.2000000000000002,39,1.6 +2013,9,9,1,30,24.3,1.26,0.056900000000000006,0.66,93,961,900,0,8.8,93,961,0,900,0.28,37.37,32.9,0.15,988,1.2000000000000002,46,1.7000000000000002 +2013,9,9,2,30,24.900000000000002,1.28,0.056400000000000006,0.66,92,958,884,0,8.5,92,958,0,884,0.281,35.32,34.27,0.15,987,1.2000000000000002,49,1.9000000000000001 +2013,9,9,3,30,24.900000000000002,1.23,0.0585,0.66,90,936,796,0,8.3,90,936,0,796,0.28200000000000003,34.74,41.06,0.15,986,1.2000000000000002,50,2.1 +2013,9,9,4,30,24.400000000000002,1.24,0.0563,0.66,82,896,644,0,8.200000000000001,82,896,0,644,0.28200000000000003,35.72,51.14,0.15,985,1.2000000000000002,50,2.2 +2013,9,9,5,30,23.3,1.24,0.0536,0.66,70,820,443,0,8.4,70,820,0,443,0.28300000000000003,38.45,62.92,0.15,985,1.2000000000000002,51,2.2 +2013,9,9,6,30,21.1,1.1300000000000001,0.057800000000000004,0.66,52,638,212,0,8.8,52,638,0,212,0.28400000000000003,45.38,75.55,0.15,985,1.3,53,1.6 +2013,9,9,7,30,18.5,1.12,0.0553,0.66,13,154,17,0,10.5,13,154,0,17,0.28500000000000003,59.54,88.39,0.15,986,1.3,57,0.9 +2013,9,9,8,30,16.900000000000002,1.11,0.053200000000000004,0.66,0,0,0,0,11.3,0,0,0,0,0.28500000000000003,69.68,102,0.15,986,1.4000000000000001,57,0.8 +2013,9,9,9,30,15.9,1.09,0.0516,0.66,0,0,0,0,12,0,0,0,0,0.28500000000000003,77.68,115.28,0.15,987,1.4000000000000001,49,0.8 +2013,9,9,10,30,15.200000000000001,1.07,0.051000000000000004,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.28500000000000003,84.61,128.31,0.15,987,1.5,39,0.8 +2013,9,9,11,30,14.600000000000001,1.04,0.0512,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.28500000000000003,90.94,140.65,0.15,986,1.5,28,0.8 +2013,9,9,12,30,14.200000000000001,1,0.052000000000000005,0.66,0,0,0,0,13.5,0,0,0,0,0.28400000000000003,95.42,151.26,0.15,986,1.6,15,0.8 +2013,9,9,13,30,13.8,0.96,0.053200000000000004,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28400000000000003,99.19,157.42000000000002,0.15,986,1.7000000000000002,181,0.8 +2013,9,9,14,30,13.5,0.92,0.054400000000000004,0.66,0,0,0,0,13.5,0,0,0,0,0.28400000000000003,100,155.47,0.15,985,1.7000000000000002,349,0.8 +2013,9,9,15,30,13.100000000000001,0.91,0.0546,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.28400000000000003,100,146.81,0.15,984,1.8,337,0.8 +2013,9,9,16,30,12.8,0.91,0.0533,0.66,0,0,0,0,12.8,0,0,0,0,0.28400000000000003,100,135.22,0.15,984,1.8,325,0.8 +2013,9,9,17,30,12.4,0.9400000000000001,0.0511,0.66,0,0,0,3,12.4,0,0,0,0,0.28400000000000003,100,122.48,0.15,984,1.8,313,0.8 +2013,9,9,18,30,12.100000000000001,0.98,0.0492,0.66,0,0,0,3,12.100000000000001,0,0,0,0,0.28400000000000003,100,109.29,0.15,984,1.8,304,0.8 +2013,9,9,19,30,12.4,1.03,0.0473,0.66,0,0,0,3,12.4,0,0,0,0,0.28400000000000003,100,95.97,0.15,984,1.8,298,0.8 +2013,9,9,20,30,14,1.09,0.0451,0.66,33,457,92,1,13.100000000000001,33,457,0,92,0.28400000000000003,94.21000000000001,82.60000000000001,0.15,985,1.8,300,1 +2013,9,9,21,30,16.7,1.1500000000000001,0.042800000000000005,0.66,58,742,315,1,13.700000000000001,58,742,0,315,0.28400000000000003,82.57000000000001,69.7,0.15,985,1.8,310,1.6 +2013,9,9,22,30,19.5,1.24,0.0397,0.66,70,863,536,3,13.8,311,98,0,364,0.28400000000000003,69.5,57.34,0.15,984,1.7000000000000002,319,2 +2013,9,9,23,30,20.700000000000003,1.3,0.039,0.66,77,921,716,0,12.3,77,921,0,716,0.28400000000000003,58.43,46.13,0.15,984,1.7000000000000002,321,2 +2013,9,10,0,30,23.3,1.3900000000000001,0.0403,0.66,82,950,840,1,10.700000000000001,82,950,0,840,0.28400000000000003,45.07,37.19,0.15,983,1.7000000000000002,317,2 +2013,9,10,1,30,24.3,1.32,0.046700000000000005,0.66,88,954,892,1,9.8,88,954,0,892,0.28400000000000003,39.9,32.51,0.15,982,1.8,314,2 +2013,9,10,2,30,24.900000000000002,1.26,0.051000000000000004,0.66,90,946,875,7,9.200000000000001,547,143,0,666,0.28400000000000003,37.01,33.93,0.15,981,1.8,310,2.1 +2013,9,10,3,30,25.1,1.01,0.0721,0.66,98,906,784,8,8.9,484,193,0,630,0.28400000000000003,35.83,40.800000000000004,0.15,979,1.8,304,2.1 +2013,9,10,4,30,24.900000000000002,0.9500000000000001,0.08070000000000001,0.66,94,849,629,1,8.8,94,849,0,629,0.28400000000000003,35.99,50.95,0.15,979,1.9000000000000001,299,2.1 +2013,9,10,5,30,24.1,0.91,0.0926,0.66,86,747,428,3,8.9,189,27,0,202,0.28400000000000003,38.06,62.77,0.15,978,1.9000000000000001,295,1.8 +2013,9,10,6,30,22.400000000000002,0.9,0.1037,0.66,65,545,202,1,9.8,65,545,0,202,0.28300000000000003,44.6,75.43,0.15,979,1.9000000000000001,299,1.2000000000000002 +2013,9,10,7,30,20.1,0.9,0.10690000000000001,0.66,14,71,16,1,11.600000000000001,14,71,0,16,0.28400000000000003,58.19,88.3,0.15,979,1.9000000000000001,313,0.8 +2013,9,10,8,30,18.400000000000002,0.92,0.10450000000000001,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.28400000000000003,66.55,101.91,0.15,980,1.9000000000000001,328,0.9 +2013,9,10,9,30,17.3,0.93,0.09960000000000001,0.66,0,0,0,0,12,0,0,0,0,0.28400000000000003,71.2,115.18,0.15,980,1.8,338,0.9 +2013,9,10,10,30,16.5,0.92,0.0961,0.66,0,0,0,0,11.8,0,0,0,0,0.28500000000000003,73.87,128.19,0.15,981,1.8,342,0.9 +2013,9,10,11,30,15.9,0.92,0.09570000000000001,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.28500000000000003,75.46000000000001,140.49,0.15,981,1.8,340,0.9 +2013,9,10,12,30,15.4,0.9400000000000001,0.09770000000000001,0.66,0,0,0,0,11.3,0,0,0,0,0.28600000000000003,76.58,151.01,0.15,980,1.8,335,0.9 +2013,9,10,13,30,14.700000000000001,0.98,0.09960000000000001,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.28700000000000003,79.11,157.06,0.15,980,1.8,328,0.9 +2013,9,10,14,30,14.100000000000001,1.02,0.1,0.66,0,0,0,0,11,0,0,0,0,0.28700000000000003,81.35000000000001,155.09,0.15,980,1.8,321,0.9 +2013,9,10,15,30,13.600000000000001,1.03,0.0978,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.28700000000000003,82.84,146.48,0.15,979,1.8,313,0.9 +2013,9,10,16,30,13.200000000000001,1.02,0.0932,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.28700000000000003,84.08,134.93,0.15,979,1.8,304,0.9 +2013,9,10,17,30,12.8,0.99,0.0878,0.66,0,0,0,0,10.5,0,0,0,0,0.28700000000000003,85.92,122.22,0.15,979,1.7000000000000002,296,0.9 +2013,9,10,18,30,12.4,0.97,0.08310000000000001,0.66,0,0,0,0,10.5,0,0,0,0,0.28800000000000003,88.28,109.04,0.15,980,1.7000000000000002,289,0.9 +2013,9,10,19,30,12.700000000000001,0.96,0.08,0.66,0,0,0,0,10.5,0,0,0,0,0.28700000000000003,86.71000000000001,95.72,0.15,980,1.8,285,0.9 +2013,9,10,20,30,14.600000000000001,0.97,0.0785,0.66,39,396,91,1,10.8,39,396,0,91,0.28600000000000003,77.92,82.35000000000001,0.15,981,1.8,281,1.4000000000000001 +2013,9,10,21,30,17.900000000000002,0.97,0.0784,0.66,70,691,313,0,10.9,70,691,0,313,0.28500000000000003,63.660000000000004,69.43,0.15,982,1.8,280,1.9000000000000001 +2013,9,10,22,30,21.8,0.98,0.0786,0.66,87,816,531,0,10.9,87,816,0,531,0.28300000000000003,49.84,57.04,0.15,982,1.8,279,2.1 +2013,9,10,23,30,23.700000000000003,0.98,0.076,0.66,96,883,712,0,9.700000000000001,96,883,0,712,0.28300000000000003,40.96,45.79,0.15,981,1.8,277,2.2 +2013,9,11,0,30,27.8,1.19,0.057100000000000005,0.66,91,934,839,0,8.1,91,934,0,839,0.281,29.02,36.82,0.14,980,1.8,268,2.2 +2013,9,11,1,30,29.400000000000002,1.2,0.0562,0.66,93,950,897,0,7.2,93,950,0,897,0.281,24.87,32.13,0.14,979,1.7000000000000002,265,2.3000000000000003 +2013,9,11,2,30,30.3,1.19,0.0575,0.66,93,945,880,0,6.300000000000001,93,945,0,880,0.28,22.19,33.6,0.14,978,1.7000000000000002,264,2.3000000000000003 +2013,9,11,3,30,30.5,0.96,0.0742,0.66,98,908,788,0,5.800000000000001,98,908,0,788,0.281,21.080000000000002,40.550000000000004,0.14,977,1.7000000000000002,264,2.4000000000000004 +2013,9,11,4,30,30.200000000000003,1.02,0.0708,0.66,89,865,636,0,5.9,89,865,0,636,0.281,21.6,50.77,0.14,977,1.8,263,2.4000000000000004 +2013,9,11,5,30,29.200000000000003,1.09,0.0674,0.66,75,783,435,1,6.4,75,783,0,435,0.28200000000000003,23.69,62.63,0.14,977,1.9000000000000001,262,1.9000000000000001 +2013,9,11,6,30,26.700000000000003,1.16,0.0648,0.66,54,616,210,1,8.4,54,616,0,210,0.28200000000000003,31.48,75.32000000000001,0.14,978,1.9000000000000001,263,1.2000000000000002 +2013,9,11,7,30,23.900000000000002,1.2,0.060500000000000005,0.66,13,151,18,0,11,13,151,0,18,0.28300000000000003,44.13,88.22,0.14,978,1.9000000000000001,264,0.8 +2013,9,11,8,30,22.3,1.25,0.0553,0.66,0,0,0,0,10.9,0,0,0,0,0.28300000000000003,48.6,101.81,0.14,979,2,253,0.8 +2013,9,11,9,30,21.3,1.26,0.0553,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.28200000000000003,50.77,115.08,0.14,980,1.9000000000000001,229,0.8 +2013,9,11,10,30,20.200000000000003,1.23,0.061500000000000006,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.281,53.94,128.06,0.14,981,1.9000000000000001,207,0.8 +2013,9,11,11,30,19.1,1.18,0.0702,0.66,0,0,0,0,11,0,0,0,0,0.281,59.29,140.32,0.14,981,1.9000000000000001,196,0.8 +2013,9,11,12,30,18,1.12,0.08080000000000001,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.28,64.65,150.76,0.14,981,1.9000000000000001,193,0.8 +2013,9,11,13,30,17,1.06,0.09280000000000001,0.66,0,0,0,0,11.4,0,0,0,0,0.279,69.78,156.70000000000002,0.14,981,1.8,196,0.8 +2013,9,11,14,30,16.2,1,0.1017,0.66,0,0,0,0,11.5,0,0,0,0,0.278,73.8,154.70000000000002,0.14,981,1.8,204,0.8 +2013,9,11,15,30,15.600000000000001,0.9500000000000001,0.1062,0.66,0,0,0,0,11.3,0,0,0,0,0.277,75.81,146.15,0.14,980,1.7000000000000002,214,0.8 +2013,9,11,16,30,15,0.91,0.1063,0.66,0,0,0,0,10.9,0,0,0,0,0.276,76.38,134.64000000000001,0.14,980,1.7000000000000002,221,0.8 +2013,9,11,17,30,14.4,0.88,0.10350000000000001,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.276,75.78,121.95,0.14,980,1.6,223,0.8 +2013,9,11,18,30,13.9,0.85,0.1,0.66,0,0,0,0,9.3,0,0,0,0,0.276,73.91,108.79,0.14,981,1.6,221,0.8 +2013,9,11,19,30,14.200000000000001,0.81,0.0964,0.66,0,0,0,0,8.3,0,0,0,0,0.276,67.87,95.47,0.14,981,1.5,218,0.8 +2013,9,11,20,30,16.2,0.78,0.09380000000000001,0.66,43,376,94,1,8,43,376,0,94,0.275,58.22,82.09,0.14,982,1.5,215,1 +2013,9,11,21,30,19.6,0.75,0.0937,0.66,76,677,317,1,6.6000000000000005,76,677,0,317,0.274,42.68,69.16,0.14,982,1.5,207,1.1 +2013,9,11,22,30,23.400000000000002,0.73,0.09570000000000001,0.66,95,804,536,0,6.6000000000000005,95,804,0,536,0.273,33.89,56.75,0.14,982,1.5,208,0.9 +2013,9,11,23,30,25.400000000000002,0.72,0.09770000000000001,0.66,108,868,717,0,6.7,108,868,0,717,0.272,30.28,45.46,0.14,982,1.5,216,0.9 +2013,9,12,0,30,28.6,0.8200000000000001,0.075,0.66,102,925,846,0,6.300000000000001,102,925,0,846,0.271,24.32,36.44,0.14,981,1.5,266,1.2000000000000002 +2013,9,12,1,30,29.900000000000002,0.85,0.0726,0.66,103,940,903,0,6.1000000000000005,103,940,0,903,0.271,22.29,31.740000000000002,0.14,980,1.5,278,1.5 +2013,9,12,2,30,30.5,0.86,0.0724,0.66,102,937,885,0,5.800000000000001,102,937,0,885,0.271,21.150000000000002,33.26,0.14,979,1.5,282,1.7000000000000002 +2013,9,12,3,30,30.6,0.88,0.0709,0.66,97,915,795,0,5.6000000000000005,97,915,0,795,0.271,20.77,40.300000000000004,0.14,978,1.6,284,1.9000000000000001 +2013,9,12,4,30,30,0.89,0.0721,0.66,90,869,642,0,5.6000000000000005,90,869,0,642,0.27,21.400000000000002,50.58,0.14,977,1.6,283,1.8 +2013,9,12,5,30,28.700000000000003,0.9,0.0732,0.66,78,781,439,0,5.9,78,781,0,439,0.27,23.55,62.49,0.14,978,1.7000000000000002,279,1.5 +2013,9,12,6,30,25.8,0.9,0.07400000000000001,0.66,57,603,211,0,7.4,57,603,0,211,0.269,31.09,75.21000000000001,0.14,978,1.7000000000000002,281,0.8 +2013,9,12,7,30,22.5,0.89,0.0758,0.66,14,117,18,0,10.9,14,117,0,18,0.269,47.89,88.12,0.14,979,1.8,241,0.4 +2013,9,12,8,30,20.3,0.88,0.0792,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.269,59.81,101.72,0.14,980,1.8,179,0.4 +2013,9,12,9,30,19.1,0.88,0.08170000000000001,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.27,66.59,114.97,0.14,981,1.9000000000000001,154,0.5 +2013,9,12,10,30,18.2,0.88,0.082,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.27,72.48,127.94,0.14,981,1.9000000000000001,141,0.5 +2013,9,12,11,30,17.6,0.88,0.08220000000000001,0.66,0,0,0,0,13.5,0,0,0,0,0.271,77.13,140.14000000000001,0.14,981,1.9000000000000001,145,0.5 +2013,9,12,12,30,17.2,0.89,0.0847,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.272,79.64,150.5,0.14,981,2,167,0.5 +2013,9,12,13,30,16.5,0.89,0.0926,0.66,0,0,0,0,13.4,0,0,0,0,0.274,82.02,156.34,0.14,981,2.1,190,0.6000000000000001 +2013,9,12,14,30,15.9,0.86,0.1246,0.66,0,0,0,3,12.9,0,0,0,0,0.275,82.47,154.32,0.14,981,2.2,208,0.7000000000000001 +2013,9,12,15,30,15.9,0.84,0.1438,0.66,0,0,0,4,12.100000000000001,0,0,0,0,0.278,77.94,145.82,0.14,981,2.3000000000000003,226,0.7000000000000001 +2013,9,12,16,30,16.1,0.84,0.1312,0.66,0,0,0,7,10.700000000000001,0,0,0,0,0.28,70.56,134.35,0.14,981,2.3000000000000003,235,0.7000000000000001 +2013,9,12,17,30,16,0.85,0.14100000000000001,0.66,0,0,0,7,9.5,0,0,0,0,0.281,65.52,121.69,0.14,982,2.3000000000000003,227,0.8 +2013,9,12,18,30,15.8,0.86,0.12860000000000002,0.66,0,0,0,8,8.200000000000001,0,0,0,0,0.28200000000000003,60.6,108.53,0.14,983,2.3000000000000003,209,0.8 +2013,9,12,19,30,15.8,0.86,0.1194,0.66,0,0,0,7,7.1000000000000005,0,0,0,0,0.28300000000000003,56.15,95.21000000000001,0.14,984,2.2,193,0.9 +2013,9,12,20,30,17.2,0.84,0.1458,0.66,50,296,92,7,7.1000000000000005,48,9,3,50,0.28400000000000003,51.61,81.84,0.14,985,2.2,177,1.1 +2013,9,12,21,30,19.200000000000003,0.8200000000000001,0.1652,0.66,98,575,305,8,7,161,41,0,176,0.28500000000000003,44.980000000000004,68.88,0.14,985,2.2,160,1.4000000000000001 +2013,9,12,22,30,21.1,0.8300000000000001,0.169,0.66,123,713,517,8,7.4,307,68,0,344,0.28600000000000003,41.11,56.45,0.14,986,2.2,147,1.3 +2013,9,12,23,30,22.1,0.8300000000000001,0.1628,0.66,136,794,696,0,7.5,136,794,0,696,0.28600000000000003,39.01,45.12,0.14,986,2.2,141,1.2000000000000002 +2013,9,13,0,30,24.8,0.86,0.12050000000000001,0.66,124,868,826,1,7.6000000000000005,124,868,0,826,0.28600000000000003,33.26,36.06,0.14,985,2.2,110,1 +2013,9,13,1,30,26.3,0.89,0.10250000000000001,0.66,117,900,886,0,7.800000000000001,117,900,0,886,0.28500000000000003,31.03,31.35,0.14,984,2.1,85,1.2000000000000002 +2013,9,13,2,30,27,0.93,0.0969,0.66,114,901,870,1,8.200000000000001,114,901,0,870,0.28400000000000003,30.55,32.93,0.14,984,2.1,73,1.7000000000000002 +2013,9,13,3,30,27.1,0.92,0.1091,0.66,114,868,778,0,8.700000000000001,114,868,0,778,0.28400000000000003,31.29,40.050000000000004,0.14,983,2.1,71,2.2 +2013,9,13,4,30,26.400000000000002,0.98,0.11270000000000001,0.66,106,817,627,0,9.200000000000001,106,817,0,627,0.28400000000000003,33.84,50.4,0.14,982,2.1,72,2.7 +2013,9,13,5,30,24.8,1.02,0.1213,0.66,94,714,425,1,10.100000000000001,94,714,0,425,0.28500000000000003,39.4,62.36,0.14,983,2.2,76,3 +2013,9,13,6,30,22.3,1.03,0.1302,0.66,69,509,200,1,11.200000000000001,69,509,0,200,0.28600000000000003,49.45,75.10000000000001,0.14,983,2.4000000000000004,80,3 +2013,9,13,7,30,19.700000000000003,1.03,0.1429,0.66,14,60,16,1,12.5,14,60,0,16,0.28700000000000003,63.21,88.03,0.14,984,2.5,82,2.7 +2013,9,13,8,30,18,1.02,0.1613,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.289,75.66,101.62,0.14,985,2.6,82,2.4000000000000004 +2013,9,13,9,30,17.2,1,0.1842,0.66,0,0,0,3,14.3,0,0,0,0,0.291,82.96000000000001,114.87,0.14,985,2.6,79,2.1 +2013,9,13,10,30,16.900000000000002,0.97,0.1864,0.66,0,0,0,1,14.5,0,0,0,0,0.291,85.61,127.81,0.14,985,2.6,74,1.8 +2013,9,13,11,30,16.6,0.93,0.1752,0.66,0,0,0,3,14.5,0,0,0,0,0.291,87.4,139.97,0.14,985,2.6,75,1.4000000000000001 +2013,9,13,12,30,16.400000000000002,0.9,0.1791,0.66,0,0,0,3,14.5,0,0,0,0,0.29,88.56,150.24,0.14,985,2.6,84,1.1 +2013,9,13,13,30,16.2,0.87,0.1719,0.66,0,0,0,1,14.5,0,0,0,0,0.289,89.66,155.97,0.14,985,2.6,90,0.9 +2013,9,13,14,30,16.1,0.8300000000000001,0.1617,0.66,0,0,0,0,14.5,0,0,0,0,0.289,90.26,153.93,0.14,984,2.5,88,0.8 +2013,9,13,15,30,16,0.8300000000000001,0.166,0.66,0,0,0,1,14.5,0,0,0,0,0.29,91.09,145.48,0.14,984,2.5,80,0.8 +2013,9,13,16,30,15.9,0.84,0.1701,0.66,0,0,0,3,14.600000000000001,0,0,0,0,0.291,92.08,134.05,0.14,983,2.6,72,0.7000000000000001 +2013,9,13,17,30,15.9,0.8300000000000001,0.1751,0.66,0,0,0,3,14.700000000000001,0,0,0,0,0.293,92.81,121.42,0.14,983,2.6,66,0.7000000000000001 +2013,9,13,18,30,16,0.84,0.1899,0.66,0,0,0,3,14.9,0,0,0,0,0.295,93.42,108.28,0.14,984,2.7,56,0.7000000000000001 +2013,9,13,19,30,16.400000000000002,0.85,0.2,0.66,0,0,0,2,15.200000000000001,0,0,0,0,0.295,92.39,94.96000000000001,0.14,984,2.8000000000000003,42,0.7000000000000001 +2013,9,13,20,30,17.6,0.85,0.2066,0.66,56,229,90,1,15.5,56,229,0,90,0.294,87.43,81.58,0.14,984,2.9000000000000004,26,1.2000000000000002 +2013,9,13,21,30,19.200000000000003,0.87,0.21530000000000002,0.66,110,515,298,1,15.9,110,515,0,298,0.292,81.35000000000001,68.61,0.14,985,2.9000000000000004,12,1.9000000000000001 +2013,9,13,22,30,21.200000000000003,0.89,0.20470000000000002,0.66,136,671,510,1,16.2,136,671,0,510,0.289,73.18,56.15,0.14,984,2.9000000000000004,178,2.4000000000000004 +2013,9,13,23,30,22.3,0.92,0.1807,0.66,142,769,689,1,16,142,769,0,689,0.28800000000000003,67.32000000000001,44.79,0.14,984,2.9000000000000004,352,2.6 +2013,9,14,0,30,25.400000000000002,0.98,0.14170000000000002,0.66,133,843,817,0,15.4,133,843,0,817,0.28600000000000003,53.86,35.69,0.14,982,2.8000000000000003,341,2.7 +2013,9,14,1,30,27.200000000000003,1,0.1321,0.66,131,867,874,0,14.600000000000001,131,867,0,874,0.28400000000000003,46.13,30.96,0.14,981,2.7,332,2.8000000000000003 +2013,9,14,2,30,28.5,1.02,0.1273,0.66,127,867,857,0,13.8,127,867,0,857,0.28200000000000003,40.59,32.59,0.14,980,2.7,324,2.9000000000000004 +2013,9,14,3,30,29.3,1.08,0.1187,0.66,118,851,771,0,13.200000000000001,118,851,0,771,0.28,37.28,39.800000000000004,0.14,978,2.7,316,2.9000000000000004 +2013,9,14,4,30,29.6,1.1300000000000001,0.1159,0.66,107,803,621,1,12.9,107,803,0,621,0.28,35.84,50.22,0.14,978,2.8000000000000003,306,2.9000000000000004 +2013,9,14,5,30,29.1,1.1300000000000001,0.1216,0.66,94,708,424,1,12.8,94,708,0,424,0.279,36.6,62.22,0.14,977,2.7,297,2.5 +2013,9,14,6,30,27.200000000000003,1.09,0.127,0.66,69,515,202,1,13.4,69,515,0,202,0.279,42.63,74.99,0.14,978,2.6,291,1.7000000000000002 +2013,9,14,7,30,24.700000000000003,1.02,0.11800000000000001,0.66,15,82,18,0,14.700000000000001,15,82,0,18,0.28,53.81,87.94,0.14,978,2.4000000000000004,289,1 +2013,9,14,8,30,22.8,0.9400000000000001,0.10650000000000001,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.28,59.69,101.52,0.14,979,2.2,277,0.9 +2013,9,14,9,30,21.5,0.87,0.09870000000000001,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.28,62.88,114.76,0.14,980,1.9000000000000001,256,0.9 +2013,9,14,10,30,20.3,0.8200000000000001,0.0945,0.66,0,0,0,0,13,0,0,0,0,0.28,63,127.68,0.14,980,1.7000000000000002,243,0.9 +2013,9,14,11,30,19.200000000000003,0.79,0.0926,0.66,0,0,0,0,11.9,0,0,0,0,0.279,62.81,139.79,0.14,981,1.5,239,0.9 +2013,9,14,12,30,18.2,0.8,0.09190000000000001,0.66,0,0,0,0,11,0,0,0,0,0.279,62.83,149.98,0.14,981,1.4000000000000001,239,0.9 +2013,9,14,13,30,17.2,0.8200000000000001,0.0918,0.66,0,0,0,0,10.100000000000001,0,0,0,0,0.279,63.1,155.61,0.14,981,1.3,240,0.8 +2013,9,14,14,30,16.3,0.84,0.09140000000000001,0.66,0,0,0,0,9.3,0,0,0,0,0.278,63.11,153.55,0.14,981,1.2000000000000002,244,0.8 +2013,9,14,15,30,15.5,0.86,0.0902,0.66,0,0,0,0,8.4,0,0,0,0,0.279,62.56,145.14000000000001,0.14,981,1.1,249,0.8 +2013,9,14,16,30,14.700000000000001,0.88,0.0889,0.66,0,0,0,0,7.5,0,0,0,0,0.279,61.96,133.76,0.14,981,1.1,252,0.8 +2013,9,14,17,30,14.200000000000001,0.89,0.0879,0.66,0,0,0,0,6.7,0,0,0,0,0.279,60.58,121.15,0.14,981,1,252,0.8 +2013,9,14,18,30,13.700000000000001,0.9,0.08710000000000001,0.66,0,0,0,0,6,0,0,0,0,0.28,59.85,108.02,0.14,982,1,250,0.8 +2013,9,14,19,30,13.9,0.92,0.08660000000000001,0.66,0,0,0,1,5.6000000000000005,0,0,0,0,0.28,57.230000000000004,94.71000000000001,0.14,983,1,248,0.8 +2013,9,14,20,30,16,0.9500000000000001,0.0853,0.66,43,439,110,1,6,43,439,0,110,0.28,51.44,81.32000000000001,0.14,983,1.1,241,0.9 +2013,9,14,21,30,19.6,1,0.08460000000000001,0.66,73,718,338,1,5.2,73,718,0,338,0.28,38.79,68.34,0.14,984,1.2000000000000002,215,1.1 +2013,9,14,22,30,23.1,1.01,0.09380000000000001,0.66,94,822,555,0,5.300000000000001,94,822,0,555,0.28,31.64,55.85,0.14,984,1.4000000000000001,191,1.1 +2013,9,14,23,30,24.6,1.01,0.1003,0.66,107,876,732,0,5,107,876,0,732,0.28,28.14,44.45,0.14,984,1.5,188,1.2000000000000002 +2013,9,15,0,30,27,1.09,0.08410000000000001,0.66,105,921,857,0,4.7,105,921,0,857,0.281,24.01,35.31,0.14,983,1.6,210,0.9 +2013,9,15,1,30,28.3,1.08,0.0881,0.66,109,930,910,0,4.5,109,930,0,910,0.281,21.95,30.57,0.14,982,1.6,226,0.8 +2013,9,15,2,30,29.1,1.07,0.09530000000000001,0.66,111,917,887,0,4.5,111,917,0,887,0.281,20.95,32.26,0.14,981,1.7000000000000002,238,0.8 +2013,9,15,3,30,29.400000000000002,1.16,0.0915,0.66,104,900,798,0,4.6000000000000005,104,900,0,798,0.281,20.72,39.550000000000004,0.14,981,1.7000000000000002,242,0.8 +2013,9,15,4,30,29.1,1.16,0.0964,0.66,98,849,643,0,4.9,98,849,0,643,0.281,21.490000000000002,50.04,0.14,980,1.7000000000000002,238,0.6000000000000001 +2013,9,15,5,30,27.900000000000002,1.1300000000000001,0.10110000000000001,0.66,87,756,440,0,5.5,87,756,0,440,0.281,24.03,62.08,0.14,980,1.7000000000000002,180,0.5 +2013,9,15,6,30,25.3,1.09,0.1039,0.66,64,567,212,1,6.9,64,567,0,212,0.281,30.96,74.88,0.14,981,1.8,112,0.5 +2013,9,15,7,30,22.1,1.03,0.1027,0.66,15,106,19,3,10.100000000000001,5,0,3,5,0.281,46.47,87.85000000000001,0.14,982,1.9000000000000001,100,0.7000000000000001 +2013,9,15,8,30,20,0.98,0.10210000000000001,0.66,0,0,0,0,11.3,0,0,0,0,0.281,57.32,101.43,0.14,983,2,98,0.9 +2013,9,15,9,30,18.8,0.93,0.10700000000000001,0.66,0,0,0,1,12.200000000000001,0,0,0,0,0.281,65.45,114.66,0.14,984,2.2,94,1 +2013,9,15,10,30,18,0.9,0.1177,0.66,0,0,0,1,13.200000000000001,0,0,0,0,0.281,73.34,127.55,0.14,984,2.4000000000000004,93,0.9 +2013,9,15,11,30,17.5,0.88,0.1322,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.281,80.48,139.61,0.14,985,2.6,90,0.9 +2013,9,15,12,30,17.400000000000002,0.87,0.16570000000000001,0.66,0,0,0,1,14.9,0,0,0,0,0.281,85.39,149.71,0.14,985,2.8000000000000003,90,0.9 +2013,9,15,13,30,17.2,0.89,0.2112,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.28,88.13,155.24,0.14,985,3,95,0.9 +2013,9,15,14,30,16.900000000000002,0.89,0.2232,0.66,0,0,0,1,15.3,0,0,0,0,0.28,90.25,153.16,0.14,984,3.1,99,0.8 +2013,9,15,15,30,16.6,0.91,0.2353,0.66,0,0,0,8,15.3,0,0,0,0,0.28,91.84,144.8,0.14,984,3.1,102,0.7000000000000001 +2013,9,15,16,30,16.3,0.9,0.234,0.66,0,0,0,7,15.200000000000001,0,0,0,0,0.279,92.94,133.46,0.14,983,3.1,102,0.7000000000000001 +2013,9,15,17,30,15.9,0.91,0.21480000000000002,0.66,0,0,0,8,15,0,0,0,0,0.279,94.39,120.88,0.14,983,3.1,101,0.7000000000000001 +2013,9,15,18,30,15.700000000000001,0.92,0.2048,0.66,0,0,0,8,14.9,0,0,0,0,0.279,94.92,107.76,0.14,983,3,104,0.7000000000000001 +2013,9,15,19,30,15.9,0.9400000000000001,0.21450000000000002,0.66,0,0,0,4,14.9,0,0,0,0,0.279,94.08,94.45,0.14,984,3,100,0.8 +2013,9,15,20,30,16.6,0.9400000000000001,0.22360000000000002,0.66,60,236,96,8,15.200000000000001,12,0,3,12,0.279,91.42,81.06,0.14,984,3,88,1.2000000000000002 +2013,9,15,21,30,17.8,0.93,0.2313,0.66,115,509,305,8,15.600000000000001,32,0,0,32,0.28,86.82000000000001,68.06,0.14,984,3.1,71,1.6 +2013,9,15,22,30,19.200000000000003,0.91,0.2343,0.66,147,648,513,7,15.600000000000001,75,15,0,83,0.281,79.68,55.550000000000004,0.14,984,3.2,55,1.9000000000000001 +2013,9,15,23,30,19.8,0.89,0.2318,0.66,164,728,687,8,15.4,124,25,0,142,0.281,75.55,44.11,0.14,984,3.2,48,1.9000000000000001 +2013,9,16,0,30,20.6,0.91,0.22820000000000001,0.66,173,770,804,8,15.3,259,26,0,281,0.279,71.55,34.93,0.14,983,3.4000000000000004,31,1.6 +2013,9,16,1,30,20.8,0.9,0.2328,0.66,179,781,855,8,15.600000000000001,76,10,0,85,0.279,72.31,30.18,0.14,982,3.5,32,1.6 +2013,9,16,2,30,21,0.89,0.23440000000000003,0.66,178,774,836,8,16,553,99,0,636,0.279,73.3,31.92,0.14,981,3.5,41,1.9000000000000001 +2013,9,16,3,30,21.3,0.9,0.22290000000000001,0.66,166,756,751,8,16.2,206,28,0,227,0.28,72.93,39.300000000000004,0.14,979,3.4000000000000004,45,2.2 +2013,9,16,4,30,21.5,0.92,0.2058,0.66,145,713,605,8,16.3,196,25,0,212,0.279,72.31,49.86,0.14,979,3.4000000000000004,44,2.4000000000000004 +2013,9,16,5,30,21.1,0.92,0.2076,0.66,124,607,410,4,16.2,106,21,0,115,0.278,73.55,61.95,0.14,978,3.4000000000000004,47,2.5 +2013,9,16,6,30,20,0.92,0.23570000000000002,0.66,92,378,191,4,16.2,47,1,3,47,0.276,78.65,74.76,0.14,978,3.5,50,2.3000000000000003 +2013,9,16,7,30,19,0.9,0.2412,0.66,15,24,16,8,16.400000000000002,7,0,3,7,0.275,84.78,87.75,0.14,978,3.6,46,2.1 +2013,9,16,8,30,18.3,0.85,0.21860000000000002,0.66,0,0,0,8,16.6,0,0,0,0,0.274,89.62,101.33,0.14,978,3.6,40,2 +2013,9,16,9,30,18,0.8200000000000001,0.20770000000000002,0.66,0,0,0,8,16.7,0,0,0,0,0.274,92.38,114.55,0.14,978,3.6,32,2 +2013,9,16,10,30,17.8,0.8,0.19360000000000002,0.66,0,0,0,7,16.900000000000002,0,0,0,0,0.274,94.75,127.41,0.14,978,3.6,22,1.9000000000000001 +2013,9,16,11,30,17.8,0.8,0.1749,0.66,0,0,0,7,17.2,0,0,0,0,0.274,96.22,139.42000000000002,0.14,978,3.6,11,1.8 +2013,9,16,12,30,17.7,0.87,0.1779,0.66,0,0,0,7,17.400000000000002,0,0,0,0,0.274,98.32000000000001,149.44,0.14,978,3.6,179,1.5 +2013,9,16,13,30,17.7,0.97,0.2008,0.66,0,0,0,7,17.6,0,0,0,0,0.275,99.22,154.87,0.14,977,3.6,344,1.3 +2013,9,16,14,30,17.5,1.01,0.2117,0.66,0,0,0,6,17.5,0,0,0,0,0.277,100,152.77,0.14,977,3.5,336,1.2000000000000002 +2013,9,16,15,30,17.3,1,0.1951,0.66,0,0,0,6,17.3,0,0,0,0,0.28,100,144.46,0.14,977,3.3000000000000003,341,1.2000000000000002 +2013,9,16,16,30,17,0.99,0.1651,0.66,0,0,0,8,17,0,0,0,0,0.28300000000000003,100,133.16,0.14,976,3,347,1.1 +2013,9,16,17,30,16.6,0.96,0.15430000000000002,0.66,0,0,0,1,16.6,0,0,0,0,0.28600000000000003,100,120.60000000000001,0.14,976,2.7,345,0.9 +2013,9,16,18,30,16.1,0.9,0.1515,0.66,0,0,0,1,16.1,0,0,0,0,0.29,100,107.5,0.14,976,2.5,344,0.8 +2013,9,16,19,30,16.2,0.85,0.15360000000000001,0.66,0,0,0,1,16.2,0,0,0,0,0.294,100,94.19,0.14,977,2.5,344,0.9 +2013,9,16,20,30,17.2,0.8200000000000001,0.1584,0.66,55,309,104,3,16.7,24,0,3,24,0.296,97.05,80.81,0.14,977,2.5,343,1.3 +2013,9,16,21,30,18.6,0.81,0.16010000000000002,0.66,98,592,322,8,17.6,176,45,0,193,0.297,94.2,67.79,0.14,977,2.5,337,2 +2013,9,16,22,30,20.3,0.8200000000000001,0.15030000000000002,0.66,117,736,536,1,18.2,117,736,0,536,0.298,87.73,55.25,0.14,977,2.5,327,2.6 +2013,9,16,23,30,21.3,0.8300000000000001,0.1317,0.66,122,826,719,1,17.8,122,826,0,719,0.298,80.44,43.78,0.14,976,2.4000000000000004,321,2.8000000000000003 +2013,9,17,0,30,23.900000000000002,0.79,0.1313,0.66,130,863,841,1,16.5,130,863,0,841,0.297,63.21,34.550000000000004,0.14,975,2.3000000000000003,307,3.4000000000000004 +2013,9,17,1,30,25,0.76,0.1471,0.66,141,866,892,1,15,141,866,0,892,0.294,53.76,29.78,0.14,974,2.2,300,3.6 +2013,9,17,2,30,25.8,0.6900000000000001,0.16570000000000001,0.66,149,847,871,0,13.4,149,847,0,871,0.29,46.17,31.59,0.14,973,2.1,298,3.6 +2013,9,17,3,30,26.3,0.63,0.1472,0.66,135,840,787,1,11.9,135,840,0,787,0.28600000000000003,40.75,39.06,0.14,972,1.9000000000000001,297,3.5 +2013,9,17,4,30,26.400000000000002,0.62,0.13670000000000002,0.66,120,800,638,1,10.600000000000001,120,800,0,638,0.28300000000000003,37.21,49.68,0.14,971,1.8,294,3.3000000000000003 +2013,9,17,5,30,25.8,0.58,0.1307,0.66,102,711,437,1,9.700000000000001,102,711,0,437,0.281,36.34,61.81,0.14,971,1.7000000000000002,290,2.7 +2013,9,17,6,30,23.8,0.52,0.1301,0.66,74,515,210,0,10,74,515,0,210,0.28,41.63,74.66,0.14,972,1.6,281,1.7000000000000002 +2013,9,17,7,30,21.200000000000003,0.47000000000000003,0.1301,0.66,17,57,19,0,11.100000000000001,17,57,0,19,0.28,52.53,87.66,0.14,973,1.5,268,1.1 +2013,9,17,8,30,19.5,0.45,0.1258,0.66,0,0,0,0,10.5,0,0,0,0,0.279,55.94,101.23,0.14,974,1.4000000000000001,254,1.1 +2013,9,17,9,30,18.400000000000002,0.47000000000000003,0.11800000000000001,0.66,0,0,0,0,10,0,0,0,0,0.279,58.02,114.44,0.14,975,1.4000000000000001,244,1.1 +2013,9,17,10,30,17.400000000000002,0.52,0.109,0.66,0,0,0,0,9.700000000000001,0,0,0,0,0.28,60.72,127.27,0.14,975,1.3,241,1 +2013,9,17,11,30,16.5,0.6,0.101,0.66,0,0,0,0,9.600000000000001,0,0,0,0,0.28,63.76,139.24,0.14,975,1.3,243,0.9 +2013,9,17,12,30,15.600000000000001,0.68,0.0944,0.66,0,0,0,0,9.4,0,0,0,0,0.28,66.71000000000001,149.17000000000002,0.14,975,1.3,249,0.9 +2013,9,17,13,30,14.700000000000001,0.75,0.0887,0.66,0,0,0,0,9.200000000000001,0,0,0,0,0.28,69.44,154.49,0.14,975,1.2000000000000002,254,0.8 +2013,9,17,14,30,14.100000000000001,0.81,0.08360000000000001,0.66,0,0,0,0,8.9,0,0,0,0,0.28,70.96000000000001,152.38,0.14,976,1.2000000000000002,257,0.8 +2013,9,17,15,30,13.4,0.87,0.0796,0.66,0,0,0,0,8.700000000000001,0,0,0,0,0.279,73.15,144.11,0.14,976,1.2000000000000002,258,0.8 +2013,9,17,16,30,12.9,0.9400000000000001,0.0761,0.66,0,0,0,0,8.5,0,0,0,0,0.28,74.7,132.86,0.14,976,1.1,260,0.8 +2013,9,17,17,30,12.4,1.02,0.0729,0.66,0,0,0,0,8.4,0,0,0,0,0.281,76.56,120.33,0.14,976,1.1,266,0.8 +2013,9,17,18,30,11.9,1.08,0.0693,0.66,0,0,0,0,8.3,0,0,0,0,0.28200000000000003,78.84,107.24000000000001,0.14,977,1.1,273,0.8 +2013,9,17,19,30,12.200000000000001,1.12,0.065,0.66,0,0,0,0,8.3,0,0,0,0,0.28300000000000003,77.05,93.94,0.14,977,1.1,278,0.8 +2013,9,17,20,30,14.200000000000001,1.1500000000000001,0.062,0.66,41,517,126,0,8.9,41,517,0,126,0.28300000000000003,70.5,80.55,0.14,978,1.1,283,1 +2013,9,17,21,30,17.7,1.19,0.062,0.66,66,769,360,0,8.700000000000001,66,769,0,360,0.28400000000000003,55.57,67.51,0.14,978,1.1,280,1.4000000000000001 +2013,9,17,22,30,21,1.23,0.0644,0.66,81,875,583,0,8.6,81,875,0,583,0.28600000000000003,45.07,54.95,0.14,979,1.1,275,1.8 +2013,9,17,23,30,22.3,1.25,0.06670000000000001,0.66,91,929,765,0,7.9,91,929,0,765,0.28600000000000003,39.7,43.44,0.14,978,1.1,277,2 +2013,9,18,0,30,24.5,1.31,0.0654,0.66,95,956,886,0,7.300000000000001,95,956,0,886,0.28800000000000003,33.3,34.17,0.14,977,1.2000000000000002,285,2.4000000000000004 +2013,9,18,1,30,25.700000000000003,1.27,0.06280000000000001,0.66,96,969,941,0,6.9,96,969,0,941,0.28800000000000003,30.21,29.39,0.14,976,1.2000000000000002,287,2.5 +2013,9,18,2,30,26.5,1.22,0.06330000000000001,0.66,96,965,920,0,6.800000000000001,96,965,0,920,0.28800000000000003,28.5,31.26,0.14,975,1.2000000000000002,287,2.6 +2013,9,18,3,30,26.900000000000002,1.18,0.0668,0.66,94,941,827,0,6.6000000000000005,94,941,0,827,0.28700000000000003,27.59,38.82,0.14,974,1.2000000000000002,286,2.6 +2013,9,18,4,30,26.8,1.2,0.0636,0.66,85,902,671,0,6.4,85,902,0,671,0.28500000000000003,27.23,49.51,0.14,974,1.2000000000000002,284,2.5 +2013,9,18,5,30,26.1,1.23,0.057800000000000004,0.66,71,830,465,0,6.300000000000001,71,830,0,465,0.28400000000000003,28.17,61.68,0.14,974,1.2000000000000002,281,2.2 +2013,9,18,6,30,23.900000000000002,1.27,0.054200000000000005,0.66,52,674,232,0,7.1000000000000005,52,674,0,232,0.28300000000000003,34.09,74.55,0.14,975,1.2000000000000002,279,1.4000000000000001 +2013,9,18,7,30,21.1,1.31,0.052500000000000005,0.66,16,227,25,0,9.9,16,227,0,25,0.28400000000000003,48.75,87.57000000000001,0.14,976,1.2000000000000002,277,0.9 +2013,9,18,8,30,19.1,1.34,0.0514,0.66,0,0,0,0,9.5,0,0,0,0,0.28500000000000003,53.83,101.13,0.14,977,1.2000000000000002,272,0.9 +2013,9,18,9,30,17.900000000000002,1.37,0.0509,0.66,0,0,0,0,9.600000000000001,0,0,0,0,0.28500000000000003,58.17,114.33,0.14,978,1.1,268,0.9 +2013,9,18,10,30,17,1.3900000000000001,0.0509,0.66,0,0,0,0,9.5,0,0,0,0,0.28600000000000003,61.32,127.14,0.14,978,1.1,265,0.9 +2013,9,18,11,30,16.1,1.41,0.051800000000000006,0.66,0,0,0,0,9.4,0,0,0,0,0.28700000000000003,64.32000000000001,139.05,0.14,978,1.1,264,0.9 +2013,9,18,12,30,15.200000000000001,1.43,0.0538,0.66,0,0,0,0,9.200000000000001,0,0,0,0,0.28800000000000003,67.34,148.89000000000001,0.14,978,1.1,266,0.9 +2013,9,18,13,30,14.4,1.44,0.0563,0.66,0,0,0,0,8.9,0,0,0,0,0.289,69.62,154.12,0.14,978,1.1,271,0.9 +2013,9,18,14,30,13.700000000000001,1.42,0.058,0.66,0,0,0,0,8.6,0,0,0,0,0.289,71.18,151.98,0.14,978,1.1,278,0.9 +2013,9,18,15,30,13.200000000000001,1.3800000000000001,0.059800000000000006,0.66,0,0,0,0,8.1,0,0,0,0,0.28800000000000003,71.11,143.77,0.14,977,1.1,286,0.9 +2013,9,18,16,30,12.8,1.31,0.0625,0.66,0,0,0,0,7.5,0,0,0,0,0.28700000000000003,70.3,132.56,0.14,977,1.1,295,0.9 +2013,9,18,17,30,12.4,1.23,0.0668,0.66,0,0,0,0,7.1000000000000005,0,0,0,0,0.28700000000000003,69.94,120.05,0.14,977,1,305,0.9 +2013,9,18,18,30,12.3,1.1500000000000001,0.0721,0.66,0,0,0,0,6.7,0,0,0,0,0.28600000000000003,68.60000000000001,106.98,0.14,977,1,313,0.9 +2013,9,18,19,30,12.8,1.07,0.0796,0.66,0,0,0,1,6.6000000000000005,0,0,0,0,0.28600000000000003,65.99,93.68,0.14,978,1,315,0.9 +2013,9,18,20,30,15,0.98,0.0897,0.66,47,468,126,0,7.6000000000000005,47,468,0,126,0.28500000000000003,61.07,80.29,0.14,978,1.1,311,1.1 +2013,9,18,21,30,18.3,0.89,0.1012,0.66,81,713,356,0,7.5,81,713,0,356,0.28400000000000003,49.34,67.24,0.14,978,1.1,306,1.3 +2013,9,18,22,30,22.3,0.8300000000000001,0.11080000000000001,0.66,103,820,577,0,8.8,103,820,0,577,0.28300000000000003,42.18,54.65,0.14,978,1.1,305,1.6 +2013,9,18,23,30,24.5,0.8,0.11570000000000001,0.66,117,876,756,0,8.6,117,876,0,756,0.28300000000000003,36.36,43.11,0.14,978,1.2000000000000002,306,1.9000000000000001 +2013,9,19,0,30,28.3,0.8300000000000001,0.1033,0.66,117,921,882,0,7.4,117,921,0,882,0.281,26.76,33.79,0.14,977,1.2000000000000002,302,2.4000000000000004 +2013,9,19,1,30,29.6,0.84,0.1061,0.66,121,928,932,0,6.800000000000001,121,928,0,932,0.28,23.81,28.990000000000002,0.14,976,1.3,298,2.6 +2013,9,19,2,30,30.200000000000003,0.8200000000000001,0.113,0.66,123,917,910,0,6.5,123,917,0,910,0.279,22.55,30.92,0.14,975,1.3,292,2.8000000000000003 +2013,9,19,3,30,30.400000000000002,0.79,0.09680000000000001,0.66,111,908,821,0,6.2,111,908,0,821,0.279,21.91,38.58,0.14,974,1.3,288,2.9000000000000004 +2013,9,19,4,30,30,0.76,0.10650000000000001,0.66,107,848,659,1,6.1000000000000005,107,848,0,659,0.279,22.28,49.33,0.14,973,1.4000000000000001,283,2.8000000000000003 +2013,9,19,5,30,29,0.73,0.11470000000000001,0.66,95,747,451,1,6.5,95,747,0,451,0.279,24.11,61.550000000000004,0.14,973,1.4000000000000001,278,2.2 +2013,9,19,6,30,26.6,0.71,0.1246,0.66,73,543,218,0,8.700000000000001,73,543,0,218,0.279,32.37,74.44,0.14,973,1.4000000000000001,271,1.3 +2013,9,19,7,30,23.8,0.6900000000000001,0.1419,0.66,18,69,21,0,11.600000000000001,18,69,0,21,0.28,46.33,87.48,0.14,974,1.5,257,0.8 +2013,9,19,8,30,22,0.74,0.1814,0.66,0,0,0,0,10.9,0,0,0,0,0.281,49.39,101.03,0.14,974,1.6,235,0.7000000000000001 +2013,9,19,9,30,20.8,0.84,0.2338,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.281,55.78,114.21000000000001,0.14,975,1.7000000000000002,230,0.6000000000000001 +2013,9,19,10,30,19.900000000000002,0.93,0.2462,0.66,0,0,0,0,11.8,0,0,0,0,0.28200000000000003,59.620000000000005,126.99000000000001,0.14,976,1.8,238,0.7000000000000001 +2013,9,19,11,30,18.8,1.03,0.24000000000000002,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.28300000000000003,63.17,138.85,0.14,977,1.8,236,0.9 +2013,9,19,12,30,17.6,1.1400000000000001,0.26230000000000003,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.28300000000000003,66.24,148.61,0.14,977,1.8,233,0.9 +2013,9,19,13,30,16.6,1.25,0.2702,0.66,0,0,0,0,10.3,0,0,0,0,0.28300000000000003,66.54,153.75,0.14,977,1.6,236,0.9 +2013,9,19,14,30,15.700000000000001,1.27,0.2131,0.66,0,0,0,0,9.5,0,0,0,0,0.28400000000000003,66.41,151.59,0.14,977,1.5,243,1 +2013,9,19,15,30,14.9,1.1500000000000001,0.1351,0.66,0,0,0,0,8.700000000000001,0,0,0,0,0.28500000000000003,66.56,143.42000000000002,0.14,977,1.3,250,0.9 +2013,9,19,16,30,14.3,0.99,0.09000000000000001,0.66,0,0,0,0,8,0,0,0,0,0.28600000000000003,65.95,132.25,0.14,977,1.1,253,0.9 +2013,9,19,17,30,13.600000000000001,0.88,0.0743,0.66,0,0,0,0,7.4,0,0,0,0,0.28700000000000003,65.93,119.78,0.14,977,0.9,255,0.9 +2013,9,19,18,30,13,0.84,0.0663,0.66,0,0,0,0,6.9,0,0,0,0,0.28800000000000003,66.31,106.72,0.14,978,0.8,256,0.9 +2013,9,19,19,30,13.200000000000001,0.87,0.058600000000000006,0.66,0,0,0,1,6.5,0,0,0,0,0.289,63.63,93.42,0.14,979,0.7000000000000001,256,0.9 +2013,9,19,20,30,15.200000000000001,0.9400000000000001,0.052000000000000005,0.66,42,565,140,1,6.9,42,565,0,140,0.289,57.54,80.03,0.14,979,0.7000000000000001,256,1.3 +2013,9,19,21,30,18.5,1.03,0.047400000000000005,0.66,63,813,382,0,6,63,813,0,382,0.29,43.82,66.97,0.14,980,0.7000000000000001,246,2.1 +2013,9,19,22,30,21.200000000000003,1.12,0.0454,0.66,75,918,609,0,4.7,75,918,0,609,0.29,33.92,54.36,0.14,981,0.7000000000000001,237,2.7 +2013,9,19,23,30,22.1,1.19,0.0456,0.66,82,970,794,0,3.5,82,970,0,794,0.289,29.560000000000002,42.77,0.14,981,0.7000000000000001,238,2.7 +2013,9,20,0,30,24.200000000000003,1.3,0.0429,0.66,85,999,920,0,2.7,85,999,0,920,0.28800000000000003,24.61,33.410000000000004,0.14,980,0.7000000000000001,248,2.5 +2013,9,20,1,30,25.3,1.3,0.044700000000000004,0.66,88,1003,968,0,2.1,88,1003,0,968,0.28700000000000003,22.12,28.6,0.14,979,0.8,254,2.4000000000000004 +2013,9,20,2,30,26,1.28,0.047,0.66,88,997,947,0,2,88,997,0,947,0.28600000000000003,21.06,30.59,0.14,978,0.8,258,2.5 +2013,9,20,3,30,26.200000000000003,1.22,0.054200000000000005,0.66,89,971,851,0,1.9000000000000001,89,971,0,851,0.28500000000000003,20.68,38.34,0.14,977,0.8,258,2.7 +2013,9,20,4,30,25.8,1.26,0.0543,0.66,82,931,691,0,1.6,82,931,0,691,0.28500000000000003,20.72,49.160000000000004,0.14,977,0.8,258,2.8000000000000003 +2013,9,20,5,30,24.900000000000002,1.28,0.0555,0.66,71,849,477,0,1.6,71,849,0,477,0.28500000000000003,21.8,61.410000000000004,0.14,977,0.9,257,2.6 +2013,9,20,6,30,22.8,1.29,0.0597,0.66,54,682,239,0,2.2,54,682,0,239,0.28500000000000003,25.79,74.33,0.14,977,0.9,257,1.9000000000000001 +2013,9,20,7,30,20,1.31,0.0669,0.66,17,219,27,0,4.7,17,219,0,27,0.28600000000000003,36.46,87.38,0.14,978,0.9,257,1.2000000000000002 +2013,9,20,8,30,18.2,1.31,0.07490000000000001,0.66,0,0,0,0,4.800000000000001,0,0,0,0,0.28600000000000003,41.14,100.93,0.14,979,1,255,1.1 +2013,9,20,9,30,17.1,1.26,0.0824,0.66,0,0,0,0,4.7,0,0,0,0,0.28500000000000003,43.85,114.10000000000001,0.14,980,1,258,1 +2013,9,20,10,30,16,1.17,0.0896,0.66,0,0,0,0,5.1000000000000005,0,0,0,0,0.28500000000000003,48.2,126.85000000000001,0.14,980,1,262,0.9 +2013,9,20,11,30,15.100000000000001,1.07,0.097,0.66,0,0,0,0,5,0,0,0,0,0.28600000000000003,50.83,138.66,0.14,980,1,263,0.9 +2013,9,20,12,30,14.3,0.97,0.1038,0.66,0,0,0,0,5,0,0,0,0,0.28700000000000003,53.45,148.33,0.14,980,1,261,0.9 +2013,9,20,13,30,13.5,0.9,0.1085,0.66,0,0,0,0,5,0,0,0,0,0.28800000000000003,56.300000000000004,153.37,0.14,980,1,254,0.9 +2013,9,20,14,30,12.8,0.88,0.1081,0.66,0,0,0,0,5,0,0,0,0,0.289,59.07,151.20000000000002,0.14,980,1,248,0.9 +2013,9,20,15,30,12.3,0.89,0.1029,0.66,0,0,0,0,5.1000000000000005,0,0,0,0,0.289,61.42,143.07,0.14,980,1,245,0.9 +2013,9,20,16,30,11.8,0.93,0.0941,0.66,0,0,0,0,5.1000000000000005,0,0,0,0,0.291,63.67,131.95,0.14,980,1,243,0.9 +2013,9,20,17,30,11.3,1.01,0.08310000000000001,0.66,0,0,0,0,5.1000000000000005,0,0,0,0,0.293,65.79,119.5,0.14,981,0.9,242,0.9 +2013,9,20,18,30,10.9,1.11,0.0717,0.66,0,0,0,0,5,0,0,0,0,0.294,67.08,106.46000000000001,0.14,981,0.8,241,0.9 +2013,9,20,19,30,11.200000000000001,1.21,0.061900000000000004,0.66,0,0,0,0,4.9,0,0,0,0,0.294,64.96000000000001,93.17,0.14,982,0.8,239,0.8 +2013,9,20,20,30,13.4,1.3,0.055,0.66,42,571,143,1,5.6000000000000005,42,571,0,143,0.293,59.32,79.77,0.14,982,0.8,225,0.9 +2013,9,20,21,30,16.8,1.36,0.051300000000000005,0.66,64,814,386,0,4,64,814,0,386,0.292,42.57,66.69,0.14,983,0.7000000000000001,185,1.2000000000000002 +2013,9,20,22,30,19.6,1.4000000000000001,0.0497,0.66,76,911,611,0,2.1,76,911,0,611,0.291,31.310000000000002,54.06,0.14,983,0.8,151,1.2000000000000002 +2013,9,20,23,30,20.700000000000003,1.43,0.049300000000000004,0.66,83,963,795,0,1.1,83,963,0,795,0.291,27.14,42.44,0.14,983,0.8,145,1 +2013,9,21,0,30,23.200000000000003,1.17,0.0632,0.66,96,977,915,0,0.6000000000000001,96,977,0,915,0.293,22.5,33.03,0.14,982,0.8,134,0.6000000000000001 +2013,9,21,1,30,24.400000000000002,1.18,0.0641,0.66,98,982,964,0,0.4,98,982,0,964,0.294,20.57,28.2,0.14,981,0.9,119,0.5 +2013,9,21,2,30,25.200000000000003,1.19,0.06570000000000001,0.66,98,977,942,0,0.4,98,977,0,942,0.295,19.68,30.26,0.14,980,0.9,99,0.5 +2013,9,21,3,30,25.400000000000002,1.23,0.06470000000000001,0.66,94,958,847,0,0.7000000000000001,94,958,0,847,0.297,19.82,38.1,0.14,979,0.9,83,0.6000000000000001 +2013,9,21,4,30,25.1,1.24,0.0673,0.66,87,909,684,0,1.1,87,909,0,684,0.299,20.79,48.99,0.14,979,1,72,0.7000000000000001 +2013,9,21,5,30,24.200000000000003,1.25,0.0698,0.66,76,827,474,0,1.6,76,827,0,474,0.302,22.76,61.28,0.14,979,1,67,1 +2013,9,21,6,30,22.1,1.24,0.07200000000000001,0.66,58,654,236,0,2.8000000000000003,58,654,0,236,0.303,28.13,74.22,0.14,979,1.1,69,1 +2013,9,21,7,30,19.1,1.23,0.0747,0.66,17,201,27,0,7.5,17,201,0,27,0.304,46.910000000000004,87.28,0.14,980,1.1,74,1 +2013,9,21,8,30,16.8,1.2,0.078,0.66,0,0,0,0,9.1,0,0,0,0,0.304,60.44,100.83,0.14,981,1.2000000000000002,77,0.9 +2013,9,21,9,30,15.600000000000001,1.16,0.08170000000000001,0.66,0,0,0,0,9.4,0,0,0,0,0.305,66.77,113.98,0.14,982,1.3,76,0.9 +2013,9,21,10,30,14.9,1.1300000000000001,0.0859,0.66,0,0,0,0,9.9,0,0,0,0,0.306,71.83,126.71000000000001,0.14,982,1.4000000000000001,72,0.8 +2013,9,21,11,30,14.200000000000001,1.11,0.0906,0.66,0,0,0,0,10.3,0,0,0,0,0.309,77.57000000000001,138.46,0.14,982,1.4000000000000001,65,0.8 +2013,9,21,12,30,13.700000000000001,1.1,0.0955,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.312,82.05,148.05,0.14,982,1.5,56,0.8 +2013,9,21,13,30,13.5,1.1,0.0999,0.66,0,0,0,0,11,0,0,0,0,0.316,84.83,152.99,0.14,982,1.5,45,0.8 +2013,9,21,14,30,13.4,1.11,0.1039,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.319,86.18,150.81,0.14,982,1.6,32,0.8 +2013,9,21,15,30,13.5,1.12,0.108,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.321,85.99,142.72,0.14,981,1.6,190,0.7000000000000001 +2013,9,21,16,30,13.5,1.12,0.1119,0.66,0,0,0,0,11.3,0,0,0,0,0.323,86.45,131.64000000000001,0.14,981,1.7000000000000002,334,0.7000000000000001 +2013,9,21,17,30,13.100000000000001,1.11,0.1148,0.66,0,0,0,0,11.4,0,0,0,0,0.325,89.26,119.22,0.14,982,1.7000000000000002,297,0.6000000000000001 +2013,9,21,18,30,12.4,1.1,0.1169,0.66,0,0,0,0,11.4,0,0,0,0,0.326,93.82000000000001,106.19,0.14,983,1.7000000000000002,274,0.7000000000000001 +2013,9,21,19,30,12.3,1.1,0.11860000000000001,0.66,0,0,0,0,11.4,0,0,0,0,0.327,94.45,92.91,0.14,983,1.7000000000000002,263,0.8 +2013,9,21,20,30,14,1.09,0.11960000000000001,0.66,54,432,132,1,11.5,54,432,0,132,0.327,85.03,79.51,0.14,984,1.7000000000000002,265,0.8 +2013,9,21,21,30,17.3,1.09,0.11800000000000001,0.66,86,688,361,1,11.8,86,688,0,361,0.325,70.08,66.42,0.14,984,1.7000000000000002,298,1 +2013,9,21,22,30,20.400000000000002,1.1,0.1139,0.66,103,809,581,0,11.5,103,809,0,581,0.323,56.47,53.76,0.14,984,1.7000000000000002,321,1.3 +2013,9,21,23,30,21.6,1.11,0.111,0.66,113,874,761,0,10,113,874,0,761,0.322,47.61,42.11,0.14,983,1.7000000000000002,316,1.4000000000000001 +2013,9,22,0,30,23.900000000000002,1.1,0.1187,0.66,123,903,883,0,8.700000000000001,123,903,0,883,0.32,37.9,32.65,0.14,982,1.6,300,1.4000000000000001 +2013,9,22,1,30,25.1,1.11,0.1143,0.66,124,919,936,0,7.6000000000000005,124,919,0,936,0.32,32.79,27.810000000000002,0.14,981,1.6,292,1.4000000000000001 +2013,9,22,2,30,25.900000000000002,1.1300000000000001,0.1091,0.66,119,921,917,0,6.7,119,921,0,917,0.32,29.41,29.93,0.14,980,1.5,285,1.4000000000000001 +2013,9,22,3,30,26.200000000000003,1.17,0.09970000000000001,0.66,110,906,826,0,5.9,110,906,0,826,0.322,27.38,37.86,0.14,980,1.5,280,1.4000000000000001 +2013,9,22,4,30,25.900000000000002,1.22,0.0956,0.66,99,868,670,0,5.300000000000001,99,868,0,670,0.325,26.77,48.82,0.14,979,1.4000000000000001,275,1.2000000000000002 +2013,9,22,5,30,25.1,1.26,0.0921,0.66,84,787,464,0,5,84,787,0,464,0.326,27.47,61.15,0.14,979,1.4000000000000001,271,0.9 +2013,9,22,6,30,22.900000000000002,1.31,0.0889,0.66,61,622,231,0,5.5,61,622,0,231,0.325,32.480000000000004,74.11,0.14,979,1.4000000000000001,290,0.5 +2013,9,22,7,30,20,1.33,0.08510000000000001,0.66,18,189,27,0,9.8,18,189,0,27,0.321,51.79,87.19,0.14,980,1.4000000000000001,267,0.30000000000000004 +2013,9,22,8,30,17.900000000000002,1.35,0.0813,0.66,0,0,0,0,10.9,0,0,0,0,0.319,63.67,100.73,0.14,981,1.4000000000000001,217,0.4 +2013,9,22,9,30,16.900000000000002,1.35,0.07740000000000001,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.316,68.87,113.87,0.14,982,1.4000000000000001,205,0.5 +2013,9,22,10,30,16.3,1.33,0.0724,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.313,71.58,126.56,0.14,983,1.4000000000000001,195,0.5 +2013,9,22,11,30,15.8,1.28,0.0679,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.309,73.93,138.26,0.14,983,1.4000000000000001,194,0.5 +2013,9,22,12,30,15.4,1.22,0.065,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.306,75.94,147.76,0.14,984,1.4000000000000001,213,0.4 +2013,9,22,13,30,14.9,1.17,0.0635,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.304,77.9,152.62,0.14,983,1.3,244,0.5 +2013,9,22,14,30,14.3,1.1400000000000001,0.0629,0.66,0,0,0,0,10.9,0,0,0,0,0.302,79.99,150.41,0.14,983,1.3,261,0.6000000000000001 +2013,9,22,15,30,13.700000000000001,1.12,0.0621,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.3,81.54,142.37,0.14,983,1.3,260,0.7000000000000001 +2013,9,22,16,30,13.200000000000001,1.12,0.0604,0.66,0,0,0,0,10.100000000000001,0,0,0,0,0.298,81.7,131.34,0.14,983,1.2000000000000002,256,0.8 +2013,9,22,17,30,12.700000000000001,1.1300000000000001,0.058300000000000005,0.66,0,0,0,0,9.600000000000001,0,0,0,0,0.296,81.22,118.94,0.14,983,1.2000000000000002,253,0.8 +2013,9,22,18,30,12.200000000000001,1.1400000000000001,0.056600000000000004,0.66,0,0,0,0,9,0,0,0,0,0.295,80.93,105.93,0.14,983,1.2000000000000002,254,0.7000000000000001 +2013,9,22,19,30,12.4,1.1400000000000001,0.056100000000000004,0.66,0,0,0,0,8.6,0,0,0,0,0.294,77.71000000000001,92.65,0.14,983,1.2000000000000002,256,0.7000000000000001 +2013,9,22,20,30,14.3,1.1400000000000001,0.056400000000000006,0.66,44,562,149,0,9.1,44,562,0,149,0.293,70.85000000000001,79.25,0.14,984,1.2000000000000002,256,0.7000000000000001 +2013,9,22,21,30,17.8,1.1400000000000001,0.057,0.66,67,788,386,0,8.700000000000001,67,788,0,386,0.292,55.17,66.15,0.14,984,1.2000000000000002,281,0.7000000000000001 +2013,9,22,22,30,21.400000000000002,1.16,0.0563,0.66,80,889,610,0,9.4,80,889,0,610,0.291,46.42,53.47,0.14,985,1.2000000000000002,193,0.30000000000000004 +2013,9,22,23,30,23.200000000000003,1.19,0.054,0.66,87,945,792,0,7.6000000000000005,87,945,0,792,0.29,36.67,41.77,0.14,984,1.2000000000000002,79,0.2 +2013,9,23,0,30,26,1.2,0.053000000000000005,0.66,92,973,914,0,6,92,973,0,914,0.28700000000000003,27.88,32.27,0.14,983,1.2000000000000002,119,0.4 +2013,9,23,1,30,27,1.23,0.0519,0.66,93,984,966,0,5.2,93,984,0,966,0.28500000000000003,24.77,27.41,0.14,983,1.2000000000000002,107,0.6000000000000001 +2013,9,23,2,30,27.6,1.25,0.0511,0.66,91,981,944,0,4.9,91,981,0,944,0.28400000000000003,23.46,29.61,0.14,981,1.2000000000000002,89,0.7000000000000001 +2013,9,23,3,30,27.8,1.18,0.0575,0.66,91,955,848,0,4.9,91,955,0,848,0.28300000000000003,23.150000000000002,37.63,0.14,981,1.2000000000000002,70,0.8 +2013,9,23,4,30,27.5,1.19,0.057600000000000005,0.66,84,911,686,0,4.9,84,911,0,686,0.28200000000000003,23.68,48.65,0.14,980,1.3,57,1 +2013,9,23,5,30,26.6,1.2,0.0584,0.66,74,833,477,0,5.1000000000000005,74,833,0,477,0.281,25.27,61.02,0.14,980,1.3,49,1.2000000000000002 +2013,9,23,6,30,24.3,1.2,0.0601,0.66,56,668,240,0,6,56,668,0,240,0.281,30.86,74,0.14,980,1.4000000000000001,47,1.1 +2013,9,23,7,30,21.200000000000003,1.19,0.0618,0.66,18,227,30,0,10.100000000000001,18,227,0,30,0.281,49.08,87.09,0.14,980,1.4000000000000001,45,0.9 +2013,9,23,8,30,19,1.19,0.0635,0.66,0,0,0,0,11,0,0,0,0,0.28200000000000003,59.86,100.62,0.14,981,1.4000000000000001,39,0.9 +2013,9,23,9,30,17.900000000000002,1.18,0.06430000000000001,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.28300000000000003,68.65,113.75,0.14,982,1.5,30,0.9 +2013,9,23,10,30,17.1,1.16,0.0651,0.66,0,0,0,0,12.9,0,0,0,0,0.28300000000000003,76.49,126.41,0.14,982,1.5,18,0.9 +2013,9,23,11,30,16.5,1.1400000000000001,0.0668,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.28300000000000003,82.89,138.05,0.14,983,1.5,184,0.8 +2013,9,23,12,30,15.9,1.1400000000000001,0.0688,0.66,0,0,0,0,14,0,0,0,0,0.28400000000000003,88.23,147.47,0.14,983,1.6,350,0.8 +2013,9,23,13,30,15.4,1.1400000000000001,0.0711,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.28500000000000003,92,152.24,0.14,982,1.6,339,0.8 +2013,9,23,14,30,15,1.1300000000000001,0.0753,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.28600000000000003,94.17,150.02,0.14,982,1.6,328,0.8 +2013,9,23,15,30,14.600000000000001,1.1400000000000001,0.08170000000000001,0.66,0,0,0,0,13.9,0,0,0,0,0.28800000000000003,95.3,142.02,0.14,981,1.7000000000000002,319,0.8 +2013,9,23,16,30,14.200000000000001,1.1500000000000001,0.0867,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.29,96.75,131.03,0.14,981,1.7000000000000002,317,0.8 +2013,9,23,17,30,13.700000000000001,1.17,0.09680000000000001,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.292,99.28,118.66,0.14,981,1.7000000000000002,318,0.8 +2013,9,23,18,30,13.3,1.2,0.1131,0.66,0,0,0,1,13.3,0,0,0,0,0.295,100,105.67,0.14,981,1.8,317,0.8 +2013,9,23,19,30,13.9,1.23,0.12350000000000001,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.298,98.08,92.39,0.14,982,1.8,318,1 +2013,9,23,20,30,16.1,1.24,0.12760000000000002,0.66,55,442,139,1,13.700000000000001,55,442,0,139,0.299,85.89,79,0.14,982,1.8,319,1.4000000000000001 +2013,9,23,21,30,19.400000000000002,1.26,0.12990000000000002,0.66,88,684,367,0,13.8,88,684,0,367,0.3,70.06,65.88,0.14,982,1.8,321,2 +2013,9,23,22,30,22.900000000000002,1.3,0.1321,0.66,107,799,585,0,13.4,107,799,0,585,0.301,55.02,53.17,0.14,982,1.8,325,2.3000000000000003 +2013,9,23,23,30,24.700000000000003,1.34,0.14020000000000002,0.66,121,855,762,0,12.100000000000001,121,855,0,762,0.302,45.4,41.44,0.14,981,1.8,326,2.5 +2013,9,24,0,30,28.200000000000003,1.24,0.1859,0.66,148,848,867,0,10.700000000000001,148,848,0,867,0.301,33.74,31.89,0.14,980,2,321,2.7 +2013,9,24,1,30,29.6,1.2,0.2399,0.66,172,821,904,0,10.3,172,821,0,904,0.3,30.2,27.02,0.14,978,2.1,315,2.7 +2013,9,24,2,30,30.5,1.18,0.2869,0.66,188,782,870,0,10.600000000000001,188,782,0,870,0.299,29.330000000000002,29.28,0.14,978,2.2,310,2.7 +2013,9,24,3,30,31,1.16,0.1668,0.66,137,835,800,0,10.9,137,835,0,800,0.298,29,37.4,0.14,977,2.3000000000000003,309,2.7 +2013,9,24,4,30,31,1.16,0.1553,0.66,121,793,647,0,10.9,121,793,0,647,0.298,29.05,48.480000000000004,0.14,976,2.3000000000000003,309,2.6 +2013,9,24,5,30,30.3,1.04,0.1663,0.66,109,684,442,0,10.9,109,684,0,442,0.297,30.23,60.9,0.14,976,2.3000000000000003,313,2.3000000000000003 +2013,9,24,6,30,28,0.96,0.17830000000000001,0.66,81,476,213,1,11.700000000000001,81,476,0,213,0.297,36.44,73.9,0.14,975,2.4000000000000004,326,1.5 +2013,9,24,7,30,25.1,0.98,0.18510000000000001,0.66,19,72,23,0,14,19,72,0,23,0.296,50.13,87,0.14,976,2.5,339,1.1 +2013,9,24,8,30,23.3,1.02,0.1905,0.66,0,0,0,0,13.9,0,0,0,0,0.295,55.68,100.52,0.14,976,2.5,339,1 +2013,9,24,9,30,22.1,1.01,0.1816,0.66,0,0,0,0,14.3,0,0,0,0,0.294,61.18,113.63,0.14,976,2.4000000000000004,325,0.9 +2013,9,24,10,30,21,0.99,0.1653,0.66,0,0,0,0,14,0,0,0,0,0.293,64.31,126.25,0.14,977,2.2,307,0.9 +2013,9,24,11,30,20.1,0.98,0.1567,0.66,0,0,0,0,13.4,0,0,0,0,0.293,65.44,137.84,0.14,977,2,298,0.9 +2013,9,24,12,30,19.200000000000003,0.9500000000000001,0.1542,0.66,0,0,0,0,12.8,0,0,0,0,0.292,66.3,147.18,0.14,978,1.8,296,0.9 +2013,9,24,13,30,18.400000000000002,0.9,0.1578,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.292,67.05,151.86,0.14,978,1.8,298,0.9 +2013,9,24,14,30,17.7,0.84,0.1651,0.66,0,0,0,0,11.8,0,0,0,0,0.292,68.28,149.62,0.14,978,1.7000000000000002,301,0.9 +2013,9,24,15,30,17.2,0.81,0.1701,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.291,69.7,141.67000000000002,0.14,978,1.8,303,0.9 +2013,9,24,16,30,16.900000000000002,0.78,0.17170000000000002,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.291,71.55,130.72,0.14,978,1.8,301,0.9 +2013,9,24,17,30,16.6,0.75,0.1716,0.66,0,0,0,0,11.9,0,0,0,0,0.29,73.88,118.38,0.14,979,1.8,296,0.9 +2013,9,24,18,30,16.3,0.72,0.17070000000000002,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.29,75.96000000000001,105.4,0.14,979,1.8,291,0.9 +2013,9,24,19,30,16.8,0.71,0.1701,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.289,74.02,92.14,0.14,980,1.8,287,0.8 +2013,9,24,20,30,19,0.72,0.1709,0.66,66,364,137,0,13,66,364,0,137,0.28800000000000003,68.12,78.74,0.14,980,1.8,284,1.1 +2013,9,24,21,30,22.3,0.73,0.1729,0.66,106,620,362,0,12.700000000000001,106,620,0,362,0.28700000000000003,54.49,65.61,0.14,981,1.9000000000000001,281,1.5 +2013,9,24,22,30,25.6,0.74,0.17400000000000002,0.66,130,746,580,0,13.100000000000001,130,746,0,580,0.28700000000000003,45.980000000000004,52.88,0.14,981,1.9000000000000001,270,1.2000000000000002 +2013,9,24,23,30,27.3,0.75,0.17200000000000001,0.66,143,816,758,0,12.600000000000001,143,816,0,758,0.28700000000000003,40.13,41.11,0.14,981,1.9000000000000001,259,0.8 +2013,9,25,0,30,30.5,0.92,0.10540000000000001,0.66,117,909,892,0,11.3,117,909,0,892,0.28800000000000003,30.57,31.51,0.14,980,1.9000000000000001,130,0.5 +2013,9,25,1,30,31.700000000000003,0.93,0.10200000000000001,0.66,118,923,944,0,10.4,118,923,0,944,0.28800000000000003,26.95,26.62,0.14,980,1.9000000000000001,99,0.9 +2013,9,25,2,30,32.2,0.9500000000000001,0.0995,0.66,116,920,921,0,9.9,116,920,0,921,0.289,25.330000000000002,28.95,0.14,979,1.9000000000000001,85,1.2000000000000002 +2013,9,25,3,30,32.2,0.97,0.1017,0.66,112,899,828,0,9.4,112,899,0,828,0.29,24.57,37.160000000000004,0.14,978,1.8,75,1.4000000000000001 +2013,9,25,4,30,31.6,0.99,0.09910000000000001,0.66,102,855,671,0,9,102,855,0,671,0.29,24.650000000000002,48.32,0.14,978,1.8,70,1.7000000000000002 +2013,9,25,5,30,30.200000000000003,1,0.0974,0.66,87,771,464,0,8.8,87,771,0,464,0.291,26.34,60.77,0.14,978,1.8,69,2.1 +2013,9,25,6,30,27.400000000000002,0.9500000000000001,0.1442,0.66,75,532,224,0,9.200000000000001,75,532,0,224,0.291,31.8,73.79,0.14,979,1.8,70,1.8 +2013,9,25,7,30,23.900000000000002,0.93,0.14070000000000002,0.66,20,110,26,0,11.4,20,110,0,26,0.291,45.39,86.9,0.14,979,1.7000000000000002,68,1.2000000000000002 +2013,9,25,8,30,21.400000000000002,0.92,0.1405,0.66,0,0,0,0,12.9,0,0,0,0,0.291,58.480000000000004,100.41,0.14,980,1.7000000000000002,65,0.9 +2013,9,25,9,30,20.1,0.9,0.1428,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.29,68.89,113.5,0.14,981,1.7000000000000002,62,0.8 +2013,9,25,10,30,19.3,0.89,0.1462,0.66,0,0,0,0,15.3,0,0,0,0,0.289,77.71000000000001,126.10000000000001,0.14,982,1.7000000000000002,63,0.7000000000000001 +2013,9,25,11,30,18.7,0.88,0.1502,0.66,0,0,0,0,16,0,0,0,0,0.28800000000000003,84.22,137.63,0.14,982,1.7000000000000002,67,0.7000000000000001 +2013,9,25,12,30,18.1,0.86,0.1555,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.28700000000000003,89.81,146.89000000000001,0.14,981,1.8,70,0.7000000000000001 +2013,9,25,13,30,17.6,0.84,0.1621,0.66,0,0,0,0,16.8,0,0,0,0,0.28700000000000003,95,151.48,0.14,981,1.9000000000000001,69,0.8 +2013,9,25,14,30,17.1,0.8300000000000001,0.1693,0.66,0,0,0,0,17.1,0,0,0,0,0.28700000000000003,99.9,149.23,0.14,981,1.9000000000000001,65,0.8 +2013,9,25,15,30,16.7,0.81,0.17650000000000002,0.66,0,0,0,0,16.7,0,0,0,0,0.28700000000000003,100,141.32,0.14,980,2,58,0.8 +2013,9,25,16,30,16.400000000000002,0.81,0.1761,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.28700000000000003,100,130.41,0.14,980,2,50,0.8 +2013,9,25,17,30,16.3,0.8,0.1781,0.66,0,0,0,0,16.3,0,0,0,0,0.28700000000000003,100,118.10000000000001,0.14,980,2,40,0.8 +2013,9,25,18,30,16.2,0.79,0.1812,0.66,0,0,0,0,16.2,0,0,0,0,0.28700000000000003,100,105.14,0.14,980,2,28,0.7000000000000001 +2013,9,25,19,30,16.7,0.79,0.1824,0.66,0,0,0,0,16.7,0,0,0,0,0.28500000000000003,100,91.88,0.14,981,2,189,0.7000000000000001 +2013,9,25,20,30,18.6,0.8,0.1801,0.66,68,362,140,0,17.6,68,362,0,140,0.28500000000000003,93.85000000000001,78.48,0.14,981,2,349,1 +2013,9,25,21,30,21.3,0.8300000000000001,0.1711,0.66,105,628,367,0,17.6,105,628,0,367,0.28500000000000003,79.5,65.34,0.14,981,2,338,1.2000000000000002 +2013,9,25,22,30,24.3,0.87,0.1583,0.66,123,767,589,0,17.400000000000002,123,767,0,589,0.28500000000000003,65.51,52.59,0.14,981,1.9000000000000001,336,1.3 +2013,9,25,23,30,25.8,0.89,0.1549,0.66,134,836,767,0,16.900000000000002,134,836,0,767,0.28600000000000003,57.96,40.78,0.14,981,1.9000000000000001,336,1.3 +2013,9,26,0,30,30.3,0.87,0.1816,0.66,153,849,880,0,15.9,153,849,0,880,0.28600000000000003,41.94,31.14,0.14,979,1.9000000000000001,317,1.3 +2013,9,26,1,30,32.800000000000004,0.89,0.1801,0.66,155,862,928,0,14,155,862,0,928,0.28600000000000003,32.1,26.23,0.14,978,2,301,1.5 +2013,9,26,2,30,34.300000000000004,0.9,0.1829,0.66,155,854,904,0,12,155,854,0,904,0.28500000000000003,25.84,28.63,0.14,977,2,290,1.7000000000000002 +2013,9,26,3,30,35.1,0.93,0.12200000000000001,0.66,122,877,823,0,10.5,122,877,0,823,0.28300000000000003,22.400000000000002,36.94,0.14,976,2,284,1.9000000000000001 +2013,9,26,4,30,35,0.92,0.128,0.66,115,823,664,0,9.5,115,823,0,664,0.28200000000000003,21.09,48.15,0.14,975,2,280,1.9000000000000001 +2013,9,26,5,30,33.9,0.9,0.1351,0.66,102,724,457,0,9,102,724,0,457,0.28200000000000003,21.7,60.64,0.14,975,2,280,1.4000000000000001 +2013,9,26,6,30,30.900000000000002,0.87,0.1423,0.66,77,530,226,0,10.9,77,530,0,226,0.28200000000000003,29.12,73.68,0.14,975,2,290,0.7000000000000001 +2013,9,26,7,30,27,0.86,0.1537,0.66,21,96,27,0,15.3,21,96,0,27,0.28200000000000003,48.81,86.81,0.14,976,1.9000000000000001,271,0.5 +2013,9,26,8,30,24.6,0.85,0.1632,0.66,0,0,0,0,15.3,0,0,0,0,0.28300000000000003,56.33,100.3,0.14,978,2,235,0.5 +2013,9,26,9,30,23.400000000000002,0.84,0.16790000000000002,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.28300000000000003,59.78,113.38,0.14,979,1.9000000000000001,232,0.5 +2013,9,26,10,30,22.6,0.84,0.166,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.28300000000000003,62.980000000000004,125.94,0.14,980,1.9000000000000001,238,0.6000000000000001 +2013,9,26,11,30,21.6,0.86,0.1583,0.66,0,0,0,0,14.700000000000001,0,0,0,0,0.28400000000000003,65.04,137.42000000000002,0.14,980,1.8,235,0.8 +2013,9,26,12,30,20.6,0.92,0.14650000000000002,0.66,0,0,0,0,14.4,0,0,0,0,0.28600000000000003,67.41,146.59,0.14,980,1.7000000000000002,231,0.9 +2013,9,26,13,30,19.8,1.01,0.1321,0.66,0,0,0,0,13.8,0,0,0,0,0.28800000000000003,68.3,151.1,0.14,980,1.6,225,0.8 +2013,9,26,14,30,19,1.09,0.1188,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.289,68.91,148.84,0.14,980,1.6,221,0.9 +2013,9,26,15,30,18.400000000000002,1.1400000000000001,0.1101,0.66,0,0,0,0,12.5,0,0,0,0,0.289,68.71000000000001,140.97,0.14,980,1.5,212,0.9 +2013,9,26,16,30,17.8,1.1500000000000001,0.1061,0.66,0,0,0,0,11.9,0,0,0,0,0.289,68.54,130.1,0.14,981,1.6,196,0.9 +2013,9,26,17,30,17.3,1.1400000000000001,0.1051,0.66,0,0,0,0,11.5,0,0,0,0,0.289,68.52,117.82000000000001,0.14,982,1.6,176,1 +2013,9,26,18,30,16.8,1.11,0.1048,0.66,0,0,0,0,11.4,0,0,0,0,0.289,70.27,104.88,0.14,983,1.6,161,1 +2013,9,26,19,30,17.3,1.09,0.1038,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.289,69.09,91.63,0.14,984,1.6,153,1.1 +2013,9,26,20,30,19.400000000000002,1.05,0.1043,0.66,55,494,156,0,12.3,55,494,0,156,0.289,63.49,78.23,0.14,985,1.6,149,1.9000000000000001 +2013,9,26,21,30,21.700000000000003,0.99,0.1082,0.66,86,716,388,0,11.4,86,716,0,388,0.289,51.910000000000004,65.07000000000001,0.14,985,1.7000000000000002,142,2.8000000000000003 +2013,9,26,22,30,23.6,0.93,0.114,0.66,106,819,607,0,10.700000000000001,106,819,0,607,0.28700000000000003,44.17,52.300000000000004,0.14,986,1.7000000000000002,132,2.9000000000000004 +2013,9,26,23,30,24.5,0.87,0.1203,0.66,120,869,782,0,10.4,120,869,0,782,0.28700000000000003,41.08,40.46,0.14,985,1.8,127,2.8000000000000003 +2013,9,27,0,30,26.6,0.8200000000000001,0.1081,0.66,122,908,902,0,10.600000000000001,122,908,0,902,0.28500000000000003,36.63,30.76,0.14,985,1.9000000000000001,112,2.7 +2013,9,27,1,30,27.400000000000002,0.77,0.1183,0.66,130,908,947,0,10.8,130,908,0,947,0.28400000000000003,35.58,25.830000000000002,0.14,984,2,105,2.7 +2013,9,27,2,30,27.6,0.73,0.127,0.66,134,895,922,0,11,134,895,0,922,0.28300000000000003,35.56,28.310000000000002,0.14,983,2,100,2.7 +2013,9,27,3,30,27.400000000000002,0.68,0.1418,0.66,136,854,821,0,11.3,136,854,0,821,0.28200000000000003,36.660000000000004,36.71,0.14,983,2.1,96,2.7 +2013,9,27,4,30,26.5,0.64,0.149,0.66,130,794,662,0,11.700000000000001,130,794,0,662,0.28200000000000003,39.59,47.99,0.14,983,2.1,93,2.8000000000000003 +2013,9,27,5,30,25.1,0.62,0.15230000000000002,0.66,114,694,455,0,12,114,694,0,455,0.281,43.96,60.51,0.14,983,2.1,89,2.9000000000000004 +2013,9,27,6,30,23.1,0.62,0.1507,0.66,83,503,225,0,12.3,83,503,0,225,0.281,50.76,73.57000000000001,0.14,984,2.2,87,2.8000000000000003 +2013,9,27,7,30,20.8,0.64,0.1469,0.66,24,89,29,0,12.700000000000001,24,89,0,29,0.281,59.88,86.7,0.14,984,2.2,85,2.4000000000000004 +2013,9,27,8,30,19.1,0.65,0.1429,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.281,68.7,100.19,0.14,985,2.2,86,2 +2013,9,27,9,30,18,0.67,0.1394,0.66,0,0,0,0,13.5,0,0,0,0,0.281,75.12,113.25,0.14,985,2.2,88,1.7000000000000002 +2013,9,27,10,30,17.3,0.67,0.13770000000000002,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28,79.62,125.78,0.14,985,2.2,94,1.2000000000000002 +2013,9,27,11,30,16.6,0.66,0.1401,0.66,0,0,0,0,14,0,0,0,0,0.279,84.47,137.20000000000002,0.14,986,2.3000000000000003,110,0.8 +2013,9,27,12,30,16.2,0.66,0.15,0.66,0,0,0,1,14.100000000000001,0,0,0,0,0.278,87.24,146.29,0.14,986,2.4000000000000004,129,0.6000000000000001 +2013,9,27,13,30,15.9,0.66,0.1605,0.66,0,0,0,1,14.100000000000001,0,0,0,0,0.278,88.85000000000001,150.72,0.14,985,2.5,126,0.5 +2013,9,27,14,30,15.700000000000001,0.71,0.1746,0.66,0,0,0,0,14,0,0,0,0,0.278,89.75,148.44,0.14,984,2.5,99,0.5 +2013,9,27,15,30,15.600000000000001,0.76,0.18430000000000002,0.66,0,0,0,0,14,0,0,0,0,0.279,90.4,140.62,0.14,983,2.5,83,0.5 +2013,9,27,16,30,15.4,0.75,0.1729,0.66,0,0,0,8,14.200000000000001,0,0,0,0,0.279,92.76,129.79,0.14,983,2.4000000000000004,99,0.5 +2013,9,27,17,30,15.3,0.72,0.16790000000000002,0.66,0,0,0,4,14.5,0,0,0,0,0.281,95.03,117.54,0.14,983,2.4000000000000004,120,0.5 +2013,9,27,18,30,15.3,0.7000000000000001,0.1786,0.66,0,0,0,7,14.700000000000001,0,0,0,0,0.28200000000000003,96.03,104.61,0.14,984,2.5,116,0.5 +2013,9,27,19,30,15.8,0.73,0.18380000000000002,0.66,0,0,0,8,14.700000000000001,0,0,0,0,0.28300000000000003,93.34,91.37,0.14,984,2.5,136,0.30000000000000004 +2013,9,27,20,30,16.8,0.8,0.1998,0.66,75,344,146,6,15.3,7,0,3,7,0.28300000000000003,90.59,77.97,0.14,985,2.6,211,0.30000000000000004 +2013,9,27,21,30,17.900000000000002,0.89,0.227,0.66,125,567,366,6,16,15,0,0,15,0.28400000000000003,88.67,64.81,0.14,985,2.7,262,0.8 +2013,9,27,22,30,19,0.9400000000000001,0.22410000000000002,0.66,150,697,579,8,16.5,35,0,0,35,0.28400000000000003,85.49,52.01,0.14,985,2.8000000000000003,274,1.3 +2013,9,27,23,30,19.700000000000003,0.97,0.2066,0.66,159,779,755,8,16.8,160,28,0,181,0.28400000000000003,83.17,40.13,0.14,985,2.9000000000000004,279,1.5 +2013,9,28,0,30,21.900000000000002,1,0.2053,0.66,167,817,872,6,16.8,136,26,0,159,0.28600000000000003,72.73,30.38,0.14,984,2.9000000000000004,295,1.9000000000000001 +2013,9,28,1,30,23.400000000000002,1.04,0.221,0.66,177,820,918,6,16.3,81,11,0,91,0.28700000000000003,64.59,25.43,0.14,983,2.9000000000000004,302,2.1 +2013,9,28,2,30,24.700000000000003,1.06,0.2454,0.66,184,799,890,7,14.3,396,22,0,416,0.28800000000000003,52.550000000000004,27.98,0.14,982,2.8000000000000003,309,2.1 +2013,9,28,3,30,25.900000000000002,1.04,0.1665,0.66,142,834,812,6,12.5,504,73,0,563,0.289,43.45,36.480000000000004,0.14,981,2.5,313,2.1 +2013,9,28,4,30,26.8,1.02,0.12350000000000001,0.66,114,824,667,7,11.5,426,145,0,523,0.28800000000000003,38.52,47.83,0.14,980,2.3000000000000003,313,2.1 +2013,9,28,5,30,26.8,1,0.1023,0.66,91,762,468,0,10.9,91,762,0,468,0.28700000000000003,37.01,60.39,0.14,979,2.1,314,1.9000000000000001 +2013,9,28,6,30,25.3,0.99,0.09530000000000001,0.66,67,603,238,0,10.9,67,603,0,238,0.28500000000000003,40.33,73.46000000000001,0.14,979,2,327,1.3 +2013,9,28,7,30,22.6,0.98,0.096,0.66,22,174,32,0,12.9,22,174,0,32,0.28400000000000003,54.11,86.61,0.14,979,2.1,341,0.9 +2013,9,28,8,30,20.8,0.97,0.1005,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.28400000000000003,59.660000000000004,100.08,0.14,980,2.1,342,0.9 +2013,9,28,9,30,19.900000000000002,0.98,0.10490000000000001,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.28400000000000003,63.31,113.12,0.14,980,2.2,333,0.9 +2013,9,28,10,30,19.1,0.98,0.10640000000000001,0.66,0,0,0,0,13,0,0,0,0,0.28500000000000003,67.74,125.62,0.14,981,2.2,317,0.8 +2013,9,28,11,30,18.400000000000002,0.98,0.1063,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.28500000000000003,71.73,136.99,0.14,981,2.2,297,0.8 +2013,9,28,12,30,17.7,0.98,0.1047,0.66,0,0,0,0,13.3,0,0,0,0,0.28600000000000003,75.36,145.99,0.14,981,2.1,276,0.8 +2013,9,28,13,30,17.1,0.98,0.1018,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.28700000000000003,77.75,150.34,0.14,981,2,260,0.8 +2013,9,28,14,30,16.5,0.96,0.0981,0.66,0,0,0,0,12.8,0,0,0,0,0.28800000000000003,78.85000000000001,148.05,0.14,981,1.8,256,0.8 +2013,9,28,15,30,16,0.9400000000000001,0.0944,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.289,78.15,140.27,0.14,981,1.6,260,0.8 +2013,9,28,16,30,15.5,0.92,0.0918,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.29,77.4,129.48,0.14,981,1.5,264,0.8 +2013,9,28,17,30,15,0.9,0.09040000000000001,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.291,77.44,117.27,0.14,981,1.4000000000000001,264,0.8 +2013,9,28,18,30,14.5,0.89,0.0897,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.292,78.07000000000001,104.35000000000001,0.14,982,1.3,264,0.8 +2013,9,28,19,30,15,0.87,0.0891,0.66,0,0,0,0,10.4,0,0,0,0,0.293,74.03,91.12,0.14,982,1.3,263,0.8 +2013,9,28,20,30,17.400000000000002,0.86,0.08800000000000001,0.66,55,538,170,0,10.600000000000001,55,538,0,170,0.293,64.49,77.72,0.14,983,1.2000000000000002,257,0.9 +2013,9,28,21,30,21.1,0.84,0.0868,0.66,81,762,409,0,9.8,81,762,0,409,0.294,48.480000000000004,64.55,0.14,983,1.2000000000000002,229,0.9 +2013,9,28,22,30,25.200000000000003,0.8200000000000001,0.0858,0.66,96,866,633,0,7.9,96,866,0,633,0.294,33.27,51.730000000000004,0.14,984,1.2000000000000002,184,0.9 +2013,9,28,23,30,27.1,0.81,0.0845,0.66,105,922,814,0,4.6000000000000005,105,922,0,814,0.295,23.73,39.81,0.14,984,1.2000000000000002,160,0.9 +2013,9,29,0,30,29.400000000000002,0.81,0.07880000000000001,0.66,108,955,935,0,4.1000000000000005,108,955,0,935,0.295,20.06,30.01,0.14,983,1.2000000000000002,113,0.7000000000000001 +2013,9,29,1,30,30.3,0.8200000000000001,0.07830000000000001,0.66,109,966,985,0,4.3,109,966,0,985,0.295,19.32,25.04,0.14,982,1.2000000000000002,72,0.6000000000000001 +2013,9,29,2,30,30.700000000000003,0.81,0.0795,0.66,109,957,957,0,4.7,109,957,1,957,0.295,19.34,27.66,0.14,981,1.3,44,0.7000000000000001 +2013,9,29,3,30,30.5,0.81,0.0879,0.66,109,925,854,0,5.1000000000000005,109,925,0,854,0.295,20.14,36.26,0.14,980,1.4000000000000001,39,0.8 +2013,9,29,4,30,29.700000000000003,0.8,0.0892,0.66,101,875,691,0,5.7,101,875,0,691,0.296,21.96,47.67,0.14,980,1.5,49,1 +2013,9,29,5,30,28.200000000000003,0.79,0.092,0.66,89,784,478,0,6.800000000000001,89,784,0,478,0.297,25.77,60.26,0.14,980,1.6,63,1.4000000000000001 +2013,9,29,6,30,25.700000000000003,0.77,0.0974,0.66,69,602,241,0,8.4,69,602,0,241,0.299,33.36,73.35000000000001,0.14,981,1.7000000000000002,72,1.6 +2013,9,29,7,30,22.5,0.76,0.1057,0.66,24,155,33,0,11.5,24,155,0,33,0.301,49.92,86.51,0.14,982,1.8,79,1.6 +2013,9,29,8,30,20.200000000000003,0.72,0.1183,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.302,64.03,99.97,0.14,984,1.9000000000000001,83,1.3 +2013,9,29,9,30,19.1,0.6900000000000001,0.13290000000000002,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.302,75.21000000000001,112.99000000000001,0.14,985,1.9000000000000001,82,1 +2013,9,29,10,30,18.400000000000002,0.66,0.14600000000000002,0.66,0,0,0,0,15.8,0,0,0,0,0.302,84.67,125.46000000000001,0.14,986,1.9000000000000001,78,0.9 +2013,9,29,11,30,18,0.64,0.1568,0.66,0,0,0,0,16.3,0,0,0,0,0.302,89.67,136.77,0.14,986,1.9000000000000001,75,0.9 +2013,9,29,12,30,17.8,0.7000000000000001,0.16840000000000002,0.66,0,0,0,0,16.3,0,0,0,0,0.301,90.66,145.69,0.14,986,1.8,75,0.9 +2013,9,29,13,30,17.6,0.72,0.1607,0.66,0,0,0,0,16,0,0,0,0,0.301,90.43,149.96,0.14,985,1.8,76,0.7000000000000001 +2013,9,29,14,30,17.3,0.7000000000000001,0.1427,0.66,0,0,0,0,15.8,0,0,0,0,0.3,90.78,147.66,0.14,985,1.8,78,0.6000000000000001 +2013,9,29,15,30,17,0.71,0.14800000000000002,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.3,91.33,139.91,0.14,985,1.8,81,0.6000000000000001 +2013,9,29,16,30,16.6,0.71,0.1499,0.66,0,0,0,0,15.5,0,0,0,0,0.299,92.95,129.17000000000002,0.14,985,1.9000000000000001,85,0.6000000000000001 +2013,9,29,17,30,16.2,0.68,0.1444,0.66,0,0,0,0,15.4,0,0,0,0,0.298,94.84,116.99000000000001,0.14,986,1.9000000000000001,85,0.6000000000000001 +2013,9,29,18,30,15.9,0.6900000000000001,0.1506,0.66,0,0,0,0,15.3,0,0,0,0,0.296,96.19,104.09,0.14,986,2,83,0.6000000000000001 +2013,9,29,19,30,16.5,0.6900000000000001,0.15,0.66,0,0,0,1,15.200000000000001,0,0,0,0,0.295,92.31,90.87,0.14,987,2.1,80,0.8 +2013,9,29,20,30,18.3,0.68,0.1444,0.66,69,425,161,1,15.4,69,425,0,161,0.294,83.14,77.47,0.14,988,2.1,71,1.3 +2013,9,29,21,30,20.5,0.6900000000000001,0.14100000000000001,0.66,102,668,392,1,15.200000000000001,102,668,0,392,0.293,71.55,64.28,0.14,988,2.1,58,1.5 +2013,9,29,22,30,22.5,0.7000000000000001,0.1393,0.66,121,784,610,1,14.8,121,784,0,610,0.292,61.910000000000004,51.45,0.14,988,2.1,43,1.5 +2013,9,29,23,30,23.5,0.71,0.13870000000000002,0.66,134,847,787,1,14.8,134,847,0,787,0.291,58.02,39.49,0.14,988,2.1,34,1.4000000000000001 +2013,9,30,0,30,26,0.72,0.14750000000000002,0.66,145,871,901,1,14.600000000000001,145,871,0,901,0.29,49.31,29.64,0.14,987,2.2,9,1.2000000000000002 +2013,9,30,1,30,27.400000000000002,0.74,0.1466,0.66,147,884,950,1,14.200000000000001,147,884,0,950,0.29,44.28,24.650000000000002,0.14,986,2.2,176,1.2000000000000002 +2013,9,30,2,30,28.400000000000002,0.77,0.1438,0.66,142,878,923,1,13.8,142,878,1,923,0.291,40.74,27.35,0.14,985,2.3000000000000003,352,1.1 +2013,9,30,3,30,28.900000000000002,0.93,0.1097,0.66,119,885,834,1,13.4,119,885,0,834,0.291,38.7,36.04,0.14,984,2.3000000000000003,355,1.1 +2013,9,30,4,30,28.8,0.9400000000000001,0.111,0.66,110,834,674,1,13.200000000000001,110,834,0,674,0.292,38.29,47.51,0.14,983,2.4000000000000004,184,1.3 +2013,9,30,5,30,28.1,0.9500000000000001,0.11610000000000001,0.66,98,739,466,0,13.100000000000001,98,739,0,466,0.292,39.56,60.14,0.14,983,2.5,16,1.6 +2013,9,30,6,30,26.400000000000002,0.97,0.1218,0.66,74,556,234,0,13.3,74,556,0,234,0.291,44.44,73.25,0.14,983,2.6,29,1.7000000000000002 +2013,9,30,7,30,24,0.99,0.1222,0.66,24,146,33,0,14.600000000000001,24,146,0,33,0.291,55.7,86.4,0.14,984,2.6,38,1.6 +2013,9,30,8,30,22.1,1.01,0.11560000000000001,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.292,66.77,99.86,0.14,984,2.6,38,1.4000000000000001 +2013,9,30,9,30,21,1.02,0.11,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.292,74.98,112.86,0.14,985,2.6,35,1.2000000000000002 +2013,9,30,10,30,20.1,1.03,0.10360000000000001,0.66,0,0,0,0,17,0,0,0,0,0.291,82.22,125.29,0.14,985,2.6,31,1 +2013,9,30,11,30,19.400000000000002,1.04,0.0975,0.66,0,0,0,0,17.400000000000002,0,0,0,0,0.29,88.43,136.54,0.14,986,2.6,24,0.8 +2013,9,30,12,30,18.900000000000002,1.05,0.09340000000000001,0.66,0,0,0,0,17.8,0,0,0,0,0.289,93.25,145.38,0.14,986,2.6,15,0.8 +2013,9,30,13,30,18.400000000000002,1.06,0.0903,0.66,0,0,0,0,18,0,0,0,0,0.28800000000000003,97.39,149.57,0.14,986,2.6,6,0.8 +2013,9,30,14,30,18,1.08,0.0883,0.66,0,0,0,0,18,0,0,0,0,0.28700000000000003,99.75,147.27,0.14,985,2.5,178,0.8 +2013,9,30,15,30,17.6,1.1,0.0878,0.66,0,0,0,0,17.6,0,0,0,0,0.28700000000000003,100,139.56,0.14,985,2.5,351,0.7000000000000001 +2013,9,30,16,30,17.2,1.1300000000000001,0.0882,0.66,0,0,0,0,17.2,0,0,0,0,0.28600000000000003,100,128.87,0.14,985,2.5,346,0.7000000000000001 +2013,9,30,17,30,16.900000000000002,1.1500000000000001,0.0883,0.66,0,0,0,0,16.900000000000002,0,0,0,0,0.28700000000000003,100,116.71000000000001,0.14,985,2.4000000000000004,344,0.7000000000000001 +2013,9,30,18,30,16.5,1.18,0.0883,0.66,0,0,0,1,16.5,0,0,0,0,0.28600000000000003,100,103.83,0.14,985,2.3000000000000003,340,0.7000000000000001 +2013,9,30,19,30,17.1,1.2,0.08800000000000001,0.66,0,0,0,0,17.1,0,0,0,0,0.28500000000000003,99.75,90.06,0.14,985,2.2,337,0.8 +2013,9,30,20,30,19,1.22,0.0853,0.66,55,543,175,1,17,55,543,0,175,0.28500000000000003,87.94,77.22,0.14,986,2.1,333,1.4000000000000001 +2013,9,30,21,30,21.700000000000003,1.23,0.07930000000000001,0.66,77,761,411,0,16.5,77,761,0,411,0.28500000000000003,72.32000000000001,64.03,0.14,986,2,329,2 +2013,9,30,22,30,24.700000000000003,1.22,0.0746,0.66,90,864,631,0,14.9,90,864,0,631,0.28500000000000003,54.29,51.17,0.14,986,2,329,2.3000000000000003 +2013,9,30,23,30,26.1,1.2,0.0724,0.66,97,920,810,0,12.8,97,920,0,810,0.28500000000000003,43.65,39.17,0.14,986,1.9000000000000001,330,2.4000000000000004 +2013,10,1,0,30,29,1.11,0.0771,0.66,106,942,928,0,11.5,106,942,0,928,0.28500000000000003,33.82,29.27,0.14,984,1.9000000000000001,338,2.8000000000000003 +2013,10,1,1,30,30.1,1.08,0.07980000000000001,0.66,109,950,975,0,10.700000000000001,109,950,0,975,0.28500000000000003,30.18,24.25,0.14,983,1.9000000000000001,342,3 +2013,10,1,2,30,30.700000000000003,1.07,0.08070000000000001,0.66,109,942,948,0,10.200000000000001,109,942,1,948,0.28500000000000003,28.22,27.03,0.14,982,2,345,3.2 +2013,10,1,3,30,30.8,0.88,0.10500000000000001,0.66,117,894,842,1,9.9,117,894,0,842,0.28600000000000003,27.53,35.82,0.14,981,2.1,347,3.2 +2013,10,1,4,30,30.5,0.92,0.0999,0.66,105,851,682,0,9.8,105,851,0,682,0.28700000000000003,27.830000000000002,47.35,0.14,980,2.2,347,3.2 +2013,10,1,5,30,29.700000000000003,0.9500000000000001,0.0956,0.66,89,769,474,1,9.9,89,769,0,474,0.28700000000000003,29.3,60.02,0.14,980,2.3000000000000003,346,2.9000000000000004 +2013,10,1,6,30,27.900000000000002,0.98,0.094,0.66,67,602,241,1,10.200000000000001,67,602,0,241,0.28800000000000003,33.04,73.14,0.14,980,2.4000000000000004,349,2.1 +2013,10,1,7,30,25.3,1.02,0.0945,0.66,23,190,35,0,11.700000000000001,23,190,0,35,0.29,42.7,86.3,0.14,981,2.4000000000000004,354,1.4000000000000001 +2013,10,1,8,30,23.400000000000002,1.07,0.0965,0.66,0,0,0,0,12.4,0,0,0,0,0.292,50.19,99.75,0.14,981,2.5,356,1.3 +2013,10,1,9,30,22.5,1.1,0.10020000000000001,0.66,0,0,0,7,12.3,0,0,0,0,0.293,52.51,112.73,0.14,981,2.6,355,1.3 +2013,10,1,10,30,21.8,1.1300000000000001,0.10550000000000001,0.66,0,0,0,6,12.100000000000001,0,0,0,0,0.295,54.17,125.12,0.14,982,2.7,352,1.3 +2013,10,1,11,30,21,1.12,0.11380000000000001,0.66,0,0,0,7,12.200000000000001,0,0,0,0,0.296,57.31,136.32,0.14,982,2.9000000000000004,326,1.3 +2013,10,1,12,30,20.400000000000002,1.1,0.14020000000000002,0.66,0,0,0,6,12.8,0,0,0,0,0.297,61.79,145.07,0.14,983,3.2,282,1.6 +2013,10,1,13,30,19.700000000000003,0.99,0.21660000000000001,0.66,0,0,0,6,13.4,0,0,0,0,0.298,67.16,149.19,0.14,984,3.3000000000000003,253,2.2 +2013,10,1,14,30,18.5,0.81,0.2637,0.66,0,0,0,7,13.5,0,0,0,0,0.299,72.52,146.88,0.14,985,3.2,245,2.1 +2013,10,1,15,30,17.3,0.66,0.24810000000000001,0.66,0,0,0,6,13.3,0,0,0,0,0.3,77.5,139.21,0.14,984,3.2,247,1.4000000000000001 +2013,10,1,16,30,16.6,0.63,0.2154,0.66,0,0,0,6,13.4,0,0,0,0,0.301,81.52,128.56,0.14,984,3.2,287,0.9 +2013,10,1,17,30,16.1,0.73,0.1766,0.66,0,0,0,6,13.8,0,0,0,0,0.303,86.26,116.43,0.14,984,3,331,0.8 +2013,10,1,18,30,15.8,0.86,0.1409,0.66,0,0,0,7,14,0,0,0,0,0.304,89.17,103.57000000000001,0.14,984,2.6,327,0.7000000000000001 +2013,10,1,19,30,16,0.9500000000000001,0.1236,0.66,0,0,0,6,14.200000000000001,0,0,3,0,0.305,88.92,89.85000000000001,0.14,984,2.2,302,0.7000000000000001 +2013,10,1,20,30,17.400000000000002,0.9500000000000001,0.11760000000000001,0.66,62,491,172,0,14.5,62,491,0,172,0.305,82.88,76.97,0.14,985,2.1,285,1.2000000000000002 +2013,10,1,21,30,19.8,0.92,0.12100000000000001,0.66,93,708,405,1,14.600000000000001,93,708,0,405,0.305,71.96000000000001,63.77,0.14,985,2,279,1.5 +2013,10,1,22,30,22.6,0.88,0.12990000000000002,0.66,115,808,624,0,14.3,115,808,0,624,0.306,59.300000000000004,50.89,0.14,985,1.9000000000000001,273,1.5 +2013,10,1,23,30,23.900000000000002,0.85,0.13670000000000002,0.66,130,860,800,0,13.8,130,860,0,800,0.308,53.2,38.86,0.14,985,1.9000000000000001,271,1.4000000000000001 +2013,10,2,0,30,26.8,0.92,0.0713,0.66,104,946,932,0,13.3,104,946,0,932,0.313,43.44,28.900000000000002,0.14,984,1.9000000000000001,279,0.9 +2013,10,2,1,30,28.200000000000003,0.91,0.0673,0.66,104,959,981,0,12.8,104,959,0,981,0.314,38.54,23.86,0.14,983,1.9000000000000001,290,0.7000000000000001 +2013,10,2,2,30,29.1,0.91,0.06520000000000001,0.66,102,956,955,0,12.100000000000001,102,956,1,955,0.31,35.06,26.72,0.14,982,1.9000000000000001,299,0.7000000000000001 +2013,10,2,3,30,29.5,0.86,0.0848,0.66,107,915,851,0,11.4,107,915,0,851,0.305,32.65,35.6,0.14,981,2,300,0.8 +2013,10,2,4,30,29.3,0.86,0.0901,0.66,101,865,689,0,10.9,101,865,0,689,0.301,32.01,47.2,0.14,980,2,303,0.8 +2013,10,2,5,30,28.6,0.86,0.093,0.66,89,776,478,0,10.700000000000001,89,776,0,478,0.298,32.87,59.89,0.14,980,2.1,315,0.8 +2013,10,2,6,30,26.700000000000003,0.85,0.097,0.66,68,603,244,0,10.8,68,603,0,244,0.296,37.050000000000004,73.03,0.14,980,2.1,169,0.7000000000000001 +2013,10,2,7,30,24,0.85,0.0976,0.66,24,185,36,0,13.5,24,185,0,36,0.294,51.95,86.2,0.14,980,2.1,175,0.6000000000000001 +2013,10,2,8,30,22,0.85,0.0976,0.66,0,0,0,0,14.9,0,0,0,0,0.293,64.25,99.63,0.14,981,2.1,320,0.5 +2013,10,2,9,30,20.900000000000002,0.85,0.0981,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.293,69.69,112.59,0.14,981,2.1,296,0.5 +2013,10,2,10,30,20.200000000000003,0.85,0.09870000000000001,0.66,0,0,0,0,15.3,0,0,0,0,0.293,73.58,124.95,0.14,981,2.1,284,0.6000000000000001 +2013,10,2,11,30,19.5,0.86,0.09910000000000001,0.66,0,0,0,0,15.4,0,0,0,0,0.294,77.28,136.09,0.14,981,2,283,0.6000000000000001 +2013,10,2,12,30,18.8,0.87,0.099,0.66,0,0,0,0,15.4,0,0,0,0,0.295,80.68,144.77,0.14,981,2,287,0.7000000000000001 +2013,10,2,13,30,18,0.88,0.09870000000000001,0.66,0,0,0,0,15.3,0,0,0,0,0.296,84.45,148.81,0.14,980,2,290,0.7000000000000001 +2013,10,2,14,30,17.400000000000002,0.89,0.099,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.296,86.28,146.49,0.14,980,2,289,0.8 +2013,10,2,15,30,16.900000000000002,0.88,0.10010000000000001,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.296,86.41,138.86,0.14,979,2,292,0.8 +2013,10,2,16,30,16.5,0.87,0.10210000000000001,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.297,86.2,128.25,0.14,979,2.1,299,0.8 +2013,10,2,17,30,16.3,0.85,0.1047,0.66,0,0,0,0,13.9,0,0,0,0,0.297,85.46000000000001,116.15,0.14,979,2.2,302,0.8 +2013,10,2,18,30,16,0.85,0.1078,0.66,0,0,0,3,13.700000000000001,0,0,0,0,0.298,86.22,103.32000000000001,0.14,979,2.3000000000000003,300,0.8 +2013,10,2,19,30,16.7,0.87,0.1121,0.66,0,0,0,1,13.600000000000001,0,0,0,0,0.299,82.03,89.64,0.14,980,2.4000000000000004,297,1.1 +2013,10,2,20,30,18.900000000000002,0.9,0.1183,0.66,63,486,175,0,13.600000000000001,63,486,0,175,0.3,71.24,76.73,0.14,980,2.5,297,1.7000000000000002 +2013,10,2,21,30,21.900000000000002,0.9400000000000001,0.12380000000000001,0.66,94,697,405,1,13.8,94,697,0,405,0.301,59.93,63.51,0.14,981,2.5,292,2.4000000000000004 +2013,10,2,22,30,24.8,0.98,0.126,0.66,113,804,623,0,13.600000000000001,113,804,0,623,0.302,49.82,50.61,0.14,980,2.4000000000000004,282,2.8000000000000003 +2013,10,2,23,30,26,1.01,0.1278,0.66,124,863,799,1,12.600000000000001,124,863,0,799,0.302,43.37,38.550000000000004,0.14,980,2.3000000000000003,278,2.8000000000000003 +2013,10,3,0,30,28.3,1.02,0.1661,0.66,149,869,912,1,11.5,149,869,0,912,0.305,35.29,28.53,0.14,979,2.1,273,3.2 +2013,10,3,1,30,29.200000000000003,1.05,0.1511,0.66,144,895,965,1,10.200000000000001,144,895,0,965,0.308,30.740000000000002,23.47,0.14,978,2,267,3.6 +2013,10,3,2,30,29.5,1.03,0.129,0.66,132,910,947,1,8.700000000000001,132,910,1,947,0.311,27.3,26.400000000000002,0.14,977,1.8,260,3.9000000000000004 +2013,10,3,3,30,29,1,0.1043,0.66,116,911,859,0,7.4,116,911,0,859,0.314,25.67,35.39,0.14,977,1.6,254,4.1000000000000005 +2013,10,3,4,30,28,0.9400000000000001,0.0985,0.66,106,873,701,0,6.7,106,873,0,701,0.317,25.96,47.04,0.14,977,1.5,250,4 +2013,10,3,5,30,26.6,0.89,0.09530000000000001,0.66,91,797,493,0,6.4,91,797,0,493,0.321,27.71,59.77,0.14,977,1.3,247,3.7 +2013,10,3,6,30,24.700000000000003,0.87,0.0847,0.66,66,652,258,0,5.7,66,652,0,258,0.325,29.41,72.92,0.14,978,1.1,244,3 +2013,10,3,7,30,22,0.88,0.067,0.66,24,273,42,0,4.2,24,273,0,42,0.327,31.330000000000002,86.10000000000001,0.14,979,0.8,241,2 +2013,10,3,8,30,19.5,0.9400000000000001,0.056600000000000004,0.66,0,0,0,0,3.2,0,0,0,0,0.327,33.96,99.52,0.14,981,0.6000000000000001,235,1.5 +2013,10,3,9,30,17.8,1,0.053500000000000006,0.66,0,0,0,0,1.7000000000000002,0,0,0,0,0.326,33.85,112.46000000000001,0.14,982,0.6000000000000001,229,1.4000000000000001 +2013,10,3,10,30,16.400000000000002,1.04,0.0523,0.66,0,0,0,0,0.8,0,0,0,0,0.325,34.83,124.78,0.14,983,0.6000000000000001,224,1.3 +2013,10,3,11,30,15.100000000000001,1.07,0.0497,0.66,0,0,0,0,0.7000000000000001,0,0,0,0,0.327,37.4,135.86,0.14,984,0.6000000000000001,220,1.2000000000000002 +2013,10,3,12,30,14,1.07,0.0458,0.66,0,0,0,0,1,0,0,0,0,0.329,41.17,144.46,0.14,984,0.6000000000000001,218,1.1 +2013,10,3,13,30,13,1.03,0.043500000000000004,0.66,0,0,0,0,1.8,0,0,0,0,0.331,46.68,148.43,0.14,984,0.6000000000000001,216,1 +2013,10,3,14,30,12.100000000000001,0.98,0.046400000000000004,0.66,0,0,0,0,2.5,0,0,0,0,0.33,51.980000000000004,146.1,0.14,984,0.7000000000000001,213,1 +2013,10,3,15,30,11.3,0.96,0.052700000000000004,0.66,0,0,0,0,2.9000000000000004,0,0,0,0,0.325,56.2,138.51,0.14,984,0.7000000000000001,211,0.9 +2013,10,3,16,30,10.700000000000001,0.9500000000000001,0.056900000000000006,0.66,0,0,0,0,3,0,0,0,0,0.32,58.83,127.94,0.14,984,0.7000000000000001,205,0.9 +2013,10,3,17,30,10.3,0.9500000000000001,0.058600000000000006,0.66,0,0,0,0,2.9000000000000004,0,0,0,0,0.316,60.22,115.88,0.14,985,0.7000000000000001,197,0.9 +2013,10,3,18,30,9.9,0.99,0.056900000000000006,0.66,0,0,0,0,2.9000000000000004,0,0,0,0,0.314,61.550000000000004,103.06,0.14,985,0.7000000000000001,191,0.9 +2013,10,3,19,30,10.700000000000001,1.07,0.0533,0.66,0,0,0,1,2.9000000000000004,0,0,0,0,0.312,58.64,89.42,0.14,986,0.7000000000000001,186,1.1 +2013,10,3,20,30,12.9,1.1400000000000001,0.0499,0.66,49,661,204,1,3.1,49,661,0,204,0.309,51.47,76.48,0.14,987,0.8,173,1.8 +2013,10,3,21,30,15.5,1.17,0.0485,0.66,68,850,451,1,3.5,68,850,0,451,0.307,44.77,63.26,0.14,987,0.8,156,2.3000000000000003 +2013,10,3,22,30,17.7,1.18,0.047900000000000005,0.66,80,937,678,0,3.5,80,937,0,678,0.304,38.94,50.34,0.14,987,0.8,146,2.2 +2013,10,3,23,30,18.8,1.18,0.0476,0.66,87,983,859,0,3.1,87,983,0,859,0.303,35.22,38.24,0.14,987,0.8,142,2.1 +2013,10,4,0,30,21.400000000000002,1.08,0.0507,0.66,93,1000,975,0,2.7,93,1000,0,975,0.298,29.13,28.17,0.14,986,0.9,132,1.6 +2013,10,4,1,30,22.8,1.09,0.050300000000000004,0.66,95,1009,1023,0,2.2,95,1009,0,1023,0.295,25.810000000000002,23.080000000000002,0.14,986,0.9,125,1.4000000000000001 +2013,10,4,2,30,23.700000000000003,1.12,0.0507,0.66,94,1004,996,0,1.6,94,1004,1,996,0.293,23.52,26.09,0.14,985,0.9,118,1.3 +2013,10,4,3,30,24.200000000000003,1,0.055900000000000005,0.66,94,975,890,0,1.2000000000000002,94,975,0,890,0.293,22.17,35.18,0.14,984,1,111,1.2000000000000002 +2013,10,4,4,30,24.1,1.02,0.0565,0.66,87,934,725,0,1.1,87,934,0,725,0.292,22.05,46.89,0.14,984,1,102,1.2000000000000002 +2013,10,4,5,30,23.5,1.03,0.0563,0.66,76,860,510,0,1.1,76,860,0,510,0.291,22.89,59.65,0.14,983,1,91,1.3 +2013,10,4,6,30,21.900000000000002,1.04,0.0558,0.66,58,711,268,0,1.5,58,711,0,268,0.29,25.900000000000002,72.81,0.14,984,1,82,1.2000000000000002 +2013,10,4,7,30,19,1.04,0.055900000000000005,0.66,23,307,45,0,4.3,23,307,0,45,0.291,37.88,85.99,0.14,984,1,79,1 +2013,10,4,8,30,16.7,1.04,0.0574,0.66,0,0,0,0,6.2,0,0,0,0,0.291,49.83,99.4,0.14,985,1.1,80,0.9 +2013,10,4,9,30,15.4,1.02,0.060200000000000004,0.66,0,0,0,0,7.2,0,0,0,0,0.292,58.230000000000004,112.32000000000001,0.14,986,1.2000000000000002,86,0.9 +2013,10,4,10,30,14.5,0.99,0.0636,0.66,0,0,0,0,8.4,0,0,0,0,0.293,66.62,124.60000000000001,0.14,987,1.2000000000000002,93,0.7000000000000001 +2013,10,4,11,30,13.9,0.96,0.0671,0.66,0,0,0,0,9.200000000000001,0,0,0,0,0.294,73.13,135.62,0.14,987,1.3,103,0.7000000000000001 +2013,10,4,12,30,13.3,0.9400000000000001,0.0702,0.66,0,0,0,0,9.700000000000001,0,0,0,0,0.294,79.06,144.15,0.14,987,1.4000000000000001,115,0.6000000000000001 +2013,10,4,13,30,12.8,0.93,0.0729,0.66,0,0,0,0,10.100000000000001,0,0,0,0,0.294,83.69,148.05,0.14,986,1.4000000000000001,127,0.6000000000000001 +2013,10,4,14,30,12.4,0.9500000000000001,0.0757,0.66,0,0,0,1,10.3,0,0,0,0,0.294,87.11,145.71,0.14,986,1.4000000000000001,140,0.6000000000000001 +2013,10,4,15,30,12.100000000000001,0.99,0.0795,0.66,0,0,0,0,10.4,0,0,0,0,0.295,89.5,138.16,0.14,986,1.4000000000000001,157,0.6000000000000001 +2013,10,4,16,30,11.9,1.04,0.0838,0.66,0,0,0,0,10.5,0,0,0,0,0.295,90.87,127.64,0.14,985,1.4000000000000001,180,0.6000000000000001 +2013,10,4,17,30,11.700000000000001,1.09,0.0873,0.66,0,0,0,0,10.5,0,0,0,0,0.296,92.11,115.60000000000001,0.14,985,1.4000000000000001,207,0.6000000000000001 +2013,10,4,18,30,11.3,1.1300000000000001,0.0889,0.66,0,0,0,0,10.5,0,0,0,0,0.296,94.57000000000001,102.8,0.14,986,1.4000000000000001,232,0.7000000000000001 +2013,10,4,19,30,11.700000000000001,1.16,0.0887,0.66,0,0,0,1,10.4,0,0,0,0,0.296,91.94,89.21000000000001,0.14,986,1.4000000000000001,246,0.8 +2013,10,4,20,30,14,1.19,0.0869,0.66,58,582,196,0,10.5,58,582,0,196,0.296,79.43,76.24,0.14,987,1.4000000000000001,253,0.8 +2013,10,4,21,30,17.3,1.23,0.0829,0.66,81,789,439,0,10.4,81,789,0,439,0.295,63.74,63.01,0.14,987,1.3,269,0.7000000000000001 +2013,10,4,22,30,20.200000000000003,1.27,0.0777,0.66,92,889,663,0,9.5,92,889,0,663,0.295,50.160000000000004,50.07,0.14,987,1.3,279,0.8 +2013,10,4,23,30,21.6,1.31,0.0727,0.66,99,944,843,0,8,99,944,0,843,0.295,41.63,37.93,0.14,987,1.3,276,0.8 +2013,10,5,0,30,25.1,1.21,0.0713,0.66,103,970,961,0,6.2,103,970,0,961,0.295,29.82,27.8,0.14,985,1.3,266,0.9 +2013,10,5,1,30,26.8,1.23,0.0688,0.66,103,981,1009,0,5,103,981,0,1009,0.294,24.77,22.69,0.14,984,1.3,268,0.8 +2013,10,5,2,30,28.1,1.24,0.06720000000000001,0.66,101,978,982,0,4.2,101,978,1,982,0.293,21.66,25.78,0.14,982,1.3,270,0.8 +2013,10,5,3,30,28.700000000000003,1.24,0.0663,0.66,97,961,885,0,3.8000000000000003,97,961,0,885,0.293,20.34,34.97,0.14,981,1.2000000000000002,266,0.8 +2013,10,5,4,30,28.8,1.23,0.0658,0.66,90,921,721,0,3.5,90,921,0,721,0.293,19.86,46.74,0.14,981,1.2000000000000002,260,0.8 +2013,10,5,5,30,28.200000000000003,1.22,0.06570000000000001,0.66,78,845,507,0,3.4000000000000004,78,845,0,507,0.293,20.39,59.53,0.14,980,1.2000000000000002,260,0.7000000000000001 +2013,10,5,6,30,26.200000000000003,1.22,0.06620000000000001,0.66,60,692,266,0,3.7,60,692,0,266,0.293,23.46,72.7,0.14,981,1.2000000000000002,292,0.5 +2013,10,5,7,30,23,1.22,0.0675,0.66,24,291,45,0,8.3,24,291,0,45,0.293,38.89,85.89,0.14,981,1.2000000000000002,313,0.4 +2013,10,5,8,30,20.6,1.22,0.0698,0.66,0,0,0,0,9.1,0,0,0,0,0.293,47.800000000000004,99.28,0.14,982,1.3,297,0.5 +2013,10,5,9,30,19.400000000000002,1.23,0.0729,0.66,0,0,0,0,9.3,0,0,0,0,0.293,52.02,112.18,0.14,983,1.3,283,0.5 +2013,10,5,10,30,18.5,1.24,0.07830000000000001,0.66,0,0,0,0,9.5,0,0,0,0,0.292,55.61,124.42,0.14,983,1.3,273,0.5 +2013,10,5,11,30,17.7,1.24,0.08320000000000001,0.66,0,0,0,0,9.600000000000001,0,0,0,0,0.292,59.01,135.39000000000001,0.14,983,1.3,274,0.5 +2013,10,5,12,30,16.900000000000002,1.23,0.08420000000000001,0.66,0,0,0,0,9.8,0,0,0,0,0.293,62.78,143.83,0.14,983,1.3,278,0.6000000000000001 +2013,10,5,13,30,16,1.23,0.083,0.66,0,0,0,0,9.8,0,0,0,0,0.294,66.5,147.67000000000002,0.14,983,1.3,280,0.7000000000000001 +2013,10,5,14,30,15.200000000000001,1.22,0.079,0.66,0,0,0,0,9.600000000000001,0,0,0,0,0.295,69.3,145.32,0.14,982,1.3,282,0.8 +2013,10,5,15,30,14.4,1.2,0.0734,0.66,0,0,0,0,9.3,0,0,0,0,0.297,71.52,137.82,0.14,982,1.3,280,0.8 +2013,10,5,16,30,13.700000000000001,1.19,0.0683,0.66,0,0,0,0,8.8,0,0,0,0,0.298,72.48,127.33,0.14,981,1.2000000000000002,271,0.9 +2013,10,5,17,30,13,1.19,0.0668,0.66,0,0,0,0,8.200000000000001,0,0,0,0,0.299,72.60000000000001,115.33,0.14,981,1.2000000000000002,261,0.9 +2013,10,5,18,30,12.600000000000001,1.21,0.06620000000000001,0.66,0,0,0,0,7.5,0,0,0,0,0.298,70.88,102.55,0.14,982,1.1,258,0.9 +2013,10,5,19,30,13.5,1.22,0.0649,0.66,0,0,0,1,6.7,0,0,0,0,0.297,63.63,89,0.14,982,1.1,259,1 +2013,10,5,20,30,16.5,1.23,0.064,0.66,52,637,206,1,6.300000000000001,52,637,0,206,0.295,50.92,76,0.14,982,1.1,264,1.2000000000000002 +2013,10,5,21,30,20.5,1.23,0.063,0.66,73,829,452,0,5.300000000000001,73,829,0,452,0.294,37.04,62.76,0.14,983,1,271,1.2000000000000002 +2013,10,5,22,30,24.900000000000002,1.23,0.0616,0.66,85,918,678,0,4.6000000000000005,85,918,0,678,0.292,27.02,49.800000000000004,0.14,983,1,277,1.2000000000000002 +2013,10,5,23,30,27,1.24,0.060500000000000005,0.66,93,967,858,0,3,93,967,0,858,0.292,21.26,37.63,0.14,982,1,278,1.3 +2013,10,6,0,30,30,1.25,0.059500000000000004,0.66,97,992,977,0,2.6,97,992,0,977,0.291,17.41,27.44,0.14,981,1,288,1.5 +2013,10,6,1,30,31.200000000000003,1.25,0.0585,0.66,98,1002,1025,0,2.8000000000000003,98,1002,0,1025,0.292,16.47,22.3,0.14,980,1,290,1.7000000000000002 +2013,10,6,2,30,32,1.24,0.0582,0.66,97,997,997,0,2.9000000000000004,97,997,1,997,0.291,15.870000000000001,25.48,0.14,979,1,292,1.9000000000000001 +2013,10,6,3,30,32.2,1.02,0.0719,0.66,101,960,890,0,2.9000000000000004,101,960,0,890,0.291,15.610000000000001,34.76,0.14,977,1.1,293,2 +2013,10,6,4,30,31.900000000000002,1.04,0.0713,0.66,93,919,724,0,3.1,93,919,0,724,0.291,16.11,46.59,0.14,977,1.1,293,2.1 +2013,10,6,5,30,31,1.08,0.0688,0.66,79,842,508,0,3.4000000000000004,79,842,0,508,0.291,17.37,59.4,0.14,976,1.2000000000000002,292,2 +2013,10,6,6,30,28.700000000000003,1.1,0.0658,0.66,60,693,267,0,4.3,60,693,0,267,0.291,21.11,72.60000000000001,0.14,977,1.2000000000000002,296,1.3 +2013,10,6,7,30,25.200000000000003,1.1300000000000001,0.06380000000000001,0.66,24,298,46,0,8.700000000000001,24,298,0,46,0.291,35.07,85.78,0.14,977,1.3,309,0.8 +2013,10,6,8,30,22.5,1.16,0.0629,0.66,0,0,0,0,9.8,0,0,0,0,0.291,44.54,99.16,0.14,978,1.3,315,0.8 +2013,10,6,9,30,21.1,1.19,0.0629,0.66,0,0,0,0,10.5,0,0,0,0,0.29,50.64,112.03,0.14,979,1.3,311,0.8 +2013,10,6,10,30,20.1,1.21,0.0635,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.289,54.5,124.24000000000001,0.14,979,1.3,307,0.9 +2013,10,6,11,30,19.3,1.23,0.0648,0.66,0,0,0,0,10.5,0,0,0,0,0.28800000000000003,56.64,135.15,0.14,979,1.3,301,0.9 +2013,10,6,12,30,18.6,1.22,0.067,0.66,0,0,0,0,10,0,0,0,0,0.28800000000000003,57.15,143.52,0.14,978,1.2000000000000002,293,0.9 +2013,10,6,13,30,17.900000000000002,1.18,0.07010000000000001,0.66,0,0,0,0,9.3,0,0,0,0,0.28700000000000003,57.120000000000005,147.29,0.14,978,1.2000000000000002,286,0.9 +2013,10,6,14,30,17.2,1.1400000000000001,0.0738,0.66,0,0,0,0,8.8,0,0,0,0,0.28600000000000003,57.72,144.94,0.14,977,1.2000000000000002,281,0.9 +2013,10,6,15,30,16.5,1.1,0.0772,0.66,0,0,0,0,8.3,0,0,0,0,0.28500000000000003,58.43,137.47,0.14,977,1.1,279,0.9 +2013,10,6,16,30,15.9,1.05,0.0792,0.66,0,0,0,0,7.9,0,0,0,0,0.28400000000000003,58.95,127.03,0.14,977,1.1,280,0.9 +2013,10,6,17,30,15.3,1,0.08,0.66,0,0,0,0,7.6000000000000005,0,0,0,0,0.28500000000000003,60.15,115.06,0.14,977,1,283,0.9 +2013,10,6,18,30,14.700000000000001,0.9500000000000001,0.07970000000000001,0.66,0,0,0,0,7.5,0,0,1,0,0.28500000000000003,61.83,102.3,0.14,977,1,285,0.9 +2013,10,6,19,30,15.4,0.91,0.0785,0.66,11,85,13,0,7.4,11,85,0,13,0.28400000000000003,58.910000000000004,88.78,0.14,978,1,285,1 +2013,10,6,20,30,18,0.89,0.07680000000000001,0.66,58,616,209,0,7.7,58,616,0,209,0.28300000000000003,51.09,75.77,0.14,978,1,284,1.3 +2013,10,6,21,30,21.900000000000002,0.89,0.0748,0.66,80,812,454,0,7.300000000000001,80,812,0,454,0.28200000000000003,38.980000000000004,62.52,0.14,978,1,284,1.7000000000000002 +2013,10,6,22,30,26.6,0.9,0.07350000000000001,0.66,93,901,678,0,6.9,93,901,0,678,0.281,28.490000000000002,49.54,0.14,978,1.1,276,1.9000000000000001 +2013,10,6,23,30,29,0.9,0.0742,0.66,102,946,854,0,3.6,102,946,0,854,0.28,19.73,37.33,0.14,978,1.2000000000000002,268,2.1 +2013,10,7,0,30,32.5,0.9400000000000001,0.0722,0.66,105,971,970,0,1.7000000000000002,105,971,0,970,0.28,14.14,27.09,0.14,976,1.3,267,2.1 +2013,10,7,1,30,33.9,0.92,0.0767,0.66,110,976,1016,0,1,110,976,0,1016,0.281,12.44,21.91,0.14,975,1.3,270,2.2 +2013,10,7,2,30,34.6,0.9,0.07930000000000001,0.66,110,968,986,0,0.8,110,968,0,986,0.28200000000000003,11.8,25.18,0.14,974,1.3,269,2.3000000000000003 +2013,10,7,3,30,34.6,0.9400000000000001,0.0737,0.66,103,953,887,0,1,103,953,0,887,0.28200000000000003,11.93,34.550000000000004,0.14,973,1.3,267,2.4000000000000004 +2013,10,7,4,30,34.1,0.9400000000000001,0.0717,0.66,94,912,723,0,1.4000000000000001,94,912,0,723,0.28300000000000003,12.65,46.44,0.14,973,1.3,263,2.4000000000000004 +2013,10,7,5,30,33.1,0.96,0.0741,0.66,83,829,506,0,2.1,83,829,0,506,0.28200000000000003,14.030000000000001,59.28,0.14,973,1.4000000000000001,255,2.2 +2013,10,7,6,30,30.6,0.97,0.0893,0.66,68,647,263,8,3.3000000000000003,156,150,0,201,0.28200000000000003,17.62,72.49,0.14,973,1.5,231,1.4000000000000001 +2013,10,7,7,30,27,0.98,0.1184,0.66,28,195,43,7,8.200000000000001,29,71,3,34,0.281,30.51,85.68,0.14,974,1.8,182,1 +2013,10,7,8,30,24.1,0.97,0.1491,0.66,0,0,0,8,9.8,0,0,0,0,0.281,40.39,99.04,0.14,976,2.1,145,1.7000000000000002 +2013,10,7,9,30,22.5,0.92,0.1736,0.66,0,0,0,7,11.9,0,0,0,0,0.28200000000000003,51.14,111.89,0.14,978,2.4000000000000004,130,2.1 +2013,10,7,10,30,21.200000000000003,0.8200000000000001,0.1804,0.66,0,0,0,3,13.700000000000001,0,0,0,0,0.28300000000000003,62.28,124.06,0.14,979,2.5,116,1.9000000000000001 +2013,10,7,11,30,20,0.74,0.1736,0.66,0,0,0,0,15,0,0,0,0,0.28500000000000003,72.78,134.91,0.14,979,2.4000000000000004,114,1.4000000000000001 +2013,10,7,12,30,19,0.66,0.1713,0.66,0,0,0,0,15.5,0,0,0,0,0.28800000000000003,80.21000000000001,143.20000000000002,0.14,979,2.3000000000000003,116,1 +2013,10,7,13,30,18.400000000000002,0.61,0.17650000000000002,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.29,83.91,146.91,0.14,979,2.2,110,0.8 +2013,10,7,14,30,17.8,0.58,0.1761,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.291,87.12,144.56,0.14,979,2,99,0.7000000000000001 +2013,10,7,15,30,17.3,0.58,0.1774,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.291,89.87,137.13,0.14,979,1.9000000000000001,91,0.6000000000000001 +2013,10,7,16,30,17,0.6,0.1806,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.291,91.60000000000001,126.73,0.14,979,1.8,88,0.5 +2013,10,7,17,30,16.7,0.62,0.1786,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.291,93.23,114.78,0.14,979,1.8,90,0.4 +2013,10,7,18,30,16.6,0.68,0.1867,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.292,93.7,102.05,0.14,980,1.7000000000000002,97,0.4 +2013,10,7,19,30,17.1,0.73,0.1927,0.66,11,15,12,1,15.5,11,15,0,12,0.292,90.59,88.57000000000001,0.14,980,1.7000000000000002,107,0.5 +2013,10,7,20,30,18.7,0.76,0.1844,0.66,85,438,195,1,15.4,85,438,0,195,0.292,80.93,75.53,0.14,981,1.7000000000000002,130,0.6000000000000001 +2013,10,7,21,30,21,0.84,0.1549,0.66,112,697,436,0,14.600000000000001,112,697,0,436,0.292,66.96000000000001,62.28,0.14,981,1.6,187,0.6000000000000001 +2013,10,7,22,30,23.400000000000002,0.9400000000000001,0.1211,0.66,115,839,662,0,12.8,115,839,0,662,0.292,51.29,49.28,0.14,981,1.6,232,1 +2013,10,7,23,30,24.6,0.98,0.1038,0.66,118,912,846,0,10,118,912,0,846,0.292,39.65,37.03,0.14,981,1.5,237,1.2000000000000002 +2013,10,8,0,30,27.400000000000002,1,0.08560000000000001,0.66,113,961,971,0,7.1000000000000005,113,961,0,971,0.292,27.72,26.73,0.14,979,1.3,240,1.8 +2013,10,8,1,30,28.8,1.03,0.07590000000000001,0.66,109,982,1022,0,4.5,109,982,0,1022,0.292,21.23,21.52,0.14,978,1.2000000000000002,241,2.2 +2013,10,8,2,30,29.5,1.06,0.06770000000000001,0.66,103,991,1002,0,2.3000000000000003,103,991,0,1002,0.292,17.45,24.87,0.14,977,1,240,2.7 +2013,10,8,3,30,29.400000000000002,1.09,0.0698,0.66,100,968,899,0,0.9,100,968,0,899,0.292,15.93,34.35,0.14,977,1,236,2.9000000000000004 +2013,10,8,4,30,28.700000000000003,1.16,0.06670000000000001,0.66,90,931,733,0,0.5,90,931,0,733,0.293,16.12,46.29,0.14,977,1,230,2.9000000000000004 +2013,10,8,5,30,27.5,1.21,0.0685,0.66,79,854,517,0,0.7000000000000001,79,854,0,517,0.293,17.490000000000002,59.160000000000004,0.14,977,1,219,2.5 +2013,10,8,6,30,25.5,1.23,0.075,0.66,62,689,271,0,1.5,62,689,0,271,0.293,20.97,72.38,0.14,978,1.1,195,1.8 +2013,10,8,7,30,22.6,1.18,0.0852,0.66,26,272,47,0,4.3,26,272,0,47,0.293,30.38,85.56,0.14,980,1.3,153,1.2000000000000002 +2013,10,8,8,30,20,1.07,0.09570000000000001,0.66,0,0,0,0,7.6000000000000005,0,0,0,0,0.294,44.62,98.91,0.14,982,1.5,124,1.3 +2013,10,8,9,30,18.5,0.91,0.11410000000000001,0.66,0,0,0,3,9.600000000000001,0,0,0,0,0.293,56.27,111.74000000000001,0.14,983,1.7000000000000002,118,1.5 +2013,10,8,10,30,17.6,0.76,0.13620000000000002,0.66,0,0,0,3,11.100000000000001,0,0,0,0,0.293,65.57000000000001,123.87,0.14,984,1.9000000000000001,118,1.6 +2013,10,8,11,30,17.1,0.67,0.1451,0.66,0,0,0,1,12.600000000000001,0,0,0,0,0.293,75.02,134.67000000000002,0.14,985,1.9000000000000001,118,1.6 +2013,10,8,12,30,16.6,0.68,0.1434,0.66,0,0,0,1,13.200000000000001,0,0,0,0,0.292,80.32000000000001,142.89000000000001,0.14,986,1.9000000000000001,120,1.3 +2013,10,8,13,30,16.1,0.71,0.1237,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.292,83.14,146.54,0.14,986,1.8,128,1 +2013,10,8,14,30,15.600000000000001,0.74,0.10790000000000001,0.66,0,0,0,1,13.100000000000001,0,0,0,0,0.291,84.98,144.17000000000002,0.14,986,1.7000000000000002,135,0.8 +2013,10,8,15,30,15,0.78,0.0965,0.66,0,0,0,0,12.9,0,0,0,0,0.291,87.08,136.78,0.14,986,1.7000000000000002,134,0.6000000000000001 +2013,10,8,16,30,14.5,0.84,0.0873,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.292,88.35000000000001,126.42,0.14,986,1.6,132,0.6000000000000001 +2013,10,8,17,30,14,0.88,0.08030000000000001,0.66,0,0,0,0,12.3,0,0,0,0,0.292,89.76,114.51,0.14,986,1.6,133,0.6000000000000001 +2013,10,8,18,30,13.600000000000001,0.93,0.0752,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.291,91.16,101.8,0.14,987,1.5,136,0.6000000000000001 +2013,10,8,19,30,14.200000000000001,0.99,0.0712,0.66,13,121,17,1,12.100000000000001,13,121,0,17,0.289,87.02,88.35000000000001,0.14,988,1.5,142,0.7000000000000001 +2013,10,8,20,30,16.3,1.06,0.06770000000000001,0.66,57,632,217,1,12.200000000000001,57,632,0,217,0.28700000000000003,76.82000000000001,75.3,0.14,989,1.4000000000000001,135,1.1 +2013,10,8,21,30,18.900000000000002,1.12,0.0649,0.66,76,818,460,1,11.600000000000001,76,818,0,460,0.28500000000000003,62.4,62.04,0.14,989,1.4000000000000001,118,1.4000000000000001 +2013,10,8,22,30,21.1,1.17,0.062200000000000005,0.66,88,911,685,0,10.5,88,911,0,685,0.28300000000000003,50.69,49.02,0.14,989,1.3,110,1.4000000000000001 +2013,10,8,23,30,22.1,1.24,0.0584,0.66,93,962,864,0,9.4,93,962,0,864,0.28200000000000003,44.22,36.74,0.14,989,1.3,107,1.4000000000000001 +2013,10,9,0,30,24.400000000000002,1.22,0.0632,0.66,100,982,980,0,8.1,100,982,0,980,0.279,35.4,26.38,0.14,988,1.3,103,1.4000000000000001 +2013,10,9,1,30,25.5,1.24,0.0613,0.66,101,992,1026,0,7.1000000000000005,101,992,0,1026,0.277,30.970000000000002,21.14,0.14,987,1.3,97,1.4000000000000001 +2013,10,9,2,30,26.200000000000003,1.25,0.0597,0.66,99,988,998,0,6.5,99,988,0,998,0.276,28.42,24.580000000000002,0.14,986,1.3,90,1.5 +2013,10,9,3,30,26.5,1.11,0.0795,0.66,105,950,892,0,6.2,105,950,0,892,0.276,27.310000000000002,34.15,0.14,986,1.3,83,1.5 +2013,10,9,4,30,26.3,1.11,0.0781,0.66,97,906,724,0,6,97,906,0,724,0.275,27.44,46.14,0.14,985,1.4000000000000001,75,1.6 +2013,10,9,5,30,25.6,1.12,0.077,0.66,84,830,511,0,6.2,84,830,0,511,0.275,28.85,59.04,0.14,985,1.4000000000000001,68,1.8 +2013,10,9,6,30,24.1,1.12,0.0762,0.66,64,677,270,0,6.6000000000000005,64,677,0,270,0.275,32.45,72.26,0.14,985,1.4000000000000001,62,1.8 +2013,10,9,7,30,21.6,1.12,0.0753,0.66,26,290,49,0,7.7,26,290,0,49,0.275,40.72,85.45,0.14,986,1.4000000000000001,57,1.4000000000000001 +2013,10,9,8,30,19.3,1.12,0.0738,0.66,0,0,0,0,9.200000000000001,0,0,0,0,0.275,52.17,98.79,0.14,987,1.4000000000000001,53,1.1 +2013,10,9,9,30,18,1.12,0.0716,0.66,0,0,0,0,10.3,0,0,0,0,0.275,60.56,111.59,0.14,987,1.4000000000000001,47,0.9 +2013,10,9,10,30,17,1.12,0.0694,0.66,0,0,0,0,11,0,0,0,0,0.275,67.87,123.69,0.14,987,1.4000000000000001,40,0.8 +2013,10,9,11,30,16.2,1.12,0.0682,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.275,73.96000000000001,134.43,0.14,988,1.4000000000000001,31,0.7000000000000001 +2013,10,9,12,30,15.5,1.12,0.06760000000000001,0.66,0,0,0,0,11.9,0,0,0,0,0.275,79.13,142.57,0.14,988,1.4000000000000001,20,0.6000000000000001 +2013,10,9,13,30,14.9,1.12,0.06720000000000001,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.275,83.3,146.16,0.14,987,1.4000000000000001,186,0.6000000000000001 +2013,10,9,14,30,14.4,1.11,0.0668,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.275,86.65,143.79,0.14,987,1.4000000000000001,349,0.7000000000000001 +2013,10,9,15,30,13.8,1.11,0.0665,0.66,0,0,0,0,12.3,0,0,0,0,0.276,90.4,136.44,0.14,987,1.4000000000000001,336,0.7000000000000001 +2013,10,9,16,30,13.3,1.11,0.066,0.66,0,0,0,0,12.3,0,0,0,0,0.278,93.49,126.12,0.14,987,1.4000000000000001,328,0.7000000000000001 +2013,10,9,17,30,12.9,1.11,0.0651,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.28,95.74000000000001,114.25,0.14,987,1.4000000000000001,323,0.7000000000000001 +2013,10,9,18,30,12.600000000000001,1.12,0.0641,0.66,0,0,0,0,12.200000000000001,0,0,1,0,0.281,97.23,101.55,0.14,987,1.4000000000000001,319,0.7000000000000001 +2013,10,9,19,30,13.5,1.1300000000000001,0.06330000000000001,0.66,14,158,19,0,12.100000000000001,14,158,0,19,0.28200000000000003,91.29,88.13,0.14,987,1.4000000000000001,317,1 +2013,10,9,20,30,16.1,1.1300000000000001,0.0621,0.66,55,648,222,0,12.100000000000001,55,648,0,222,0.28200000000000003,77.29,75.07000000000001,0.14,988,1.4000000000000001,319,1.7000000000000002 +2013,10,9,21,30,19.3,1.1500000000000001,0.0599,0.66,74,831,467,0,12,74,831,0,467,0.281,62.660000000000004,61.800000000000004,0.14,988,1.3,321,2 +2013,10,9,22,30,22.6,1.18,0.057800000000000004,0.66,85,918,690,0,11.3,85,918,0,690,0.279,49,48.77,0.14,987,1.3,320,1.9000000000000001 +2013,10,9,23,30,24.3,1.21,0.0562,0.66,92,965,869,0,10,92,965,1,869,0.278,40.49,36.45,0.14,987,1.3,319,1.8 +2013,10,10,0,30,28.3,1.17,0.0585,0.66,97,990,987,0,8.3,97,990,0,987,0.277,28.52,26.03,0.14,985,1.2000000000000002,320,1.8 +2013,10,10,1,30,30,1.19,0.059500000000000004,0.66,100,998,1033,0,7.1000000000000005,100,998,0,1033,0.276,23.76,20.76,0.14,984,1.2000000000000002,321,2 +2013,10,10,2,30,31.1,1.19,0.0614,0.66,99,992,1003,0,6.300000000000001,99,992,0,1003,0.275,21.07,24.28,0.14,982,1.2000000000000002,323,2.2 +2013,10,10,3,30,31.6,1.19,0.0632,0.66,96,970,901,0,5.7,96,970,0,901,0.274,19.66,33.95,0.14,981,1.2000000000000002,324,2.4000000000000004 +2013,10,10,4,30,31.400000000000002,1.18,0.0682,0.66,91,925,733,0,5.300000000000001,91,925,0,733,0.273,19.330000000000002,46,0.14,980,1.2000000000000002,326,2.5 +2013,10,10,5,30,30.700000000000003,1.19,0.0756,0.66,82,841,516,0,5,82,841,0,516,0.273,19.830000000000002,58.92,0.14,980,1.2000000000000002,327,2.5 +2013,10,10,6,30,28.8,1.23,0.0867,0.66,65,674,272,1,5.1000000000000005,65,674,0,272,0.273,22.150000000000002,72.16,0.14,980,1.2000000000000002,331,1.8 +2013,10,10,7,30,25.5,1.27,0.10260000000000001,0.66,27,263,48,0,6.9,27,263,0,48,0.274,30.53,85.35000000000001,0.14,980,1.2000000000000002,338,1.1 +2013,10,10,8,30,22.900000000000002,1.3,0.12390000000000001,0.66,0,0,0,0,8.200000000000001,0,0,0,0,0.274,38.84,98.66,0.14,981,1.2000000000000002,338,1 +2013,10,10,9,30,21.5,1.34,0.1471,0.66,0,0,0,0,8.700000000000001,0,0,0,0,0.274,43.79,111.44,0.14,981,1.1,335,1 +2013,10,10,10,30,20.5,1.3800000000000001,0.1626,0.66,0,0,0,0,8.8,0,0,0,0,0.274,46.88,123.5,0.14,981,1.1,332,1 +2013,10,10,11,30,19.5,1.4000000000000001,0.16140000000000002,0.66,0,0,0,0,8.5,0,0,0,0,0.273,49.08,134.18,0.14,981,1.1,328,1.1 +2013,10,10,12,30,18.6,1.36,0.1426,0.66,0,0,0,0,8.1,0,0,0,0,0.273,50.38,142.26,0.14,981,1.1,324,1.1 +2013,10,10,13,30,17.7,1.26,0.11510000000000001,0.66,0,0,0,0,8,0,0,0,0,0.271,52.88,145.78,0.14,981,1.1,322,1.1 +2013,10,10,14,30,16.8,1.1300000000000001,0.09290000000000001,0.66,0,0,0,0,8.200000000000001,0,0,0,0,0.271,56.870000000000005,143.42000000000002,0.14,980,1.1,320,1.1 +2013,10,10,15,30,16.1,1.03,0.082,0.66,0,0,0,0,8.5,0,0,0,0,0.27,60.84,136.1,0.14,979,1.1,320,1 +2013,10,10,16,30,15.600000000000001,0.98,0.0784,0.66,0,0,0,0,8.9,0,0,0,0,0.27,64.56,125.83,0.14,979,1.2000000000000002,320,1 +2013,10,10,17,30,15.100000000000001,0.97,0.0767,0.66,0,0,0,0,9.4,0,0,0,0,0.271,68.57000000000001,113.98,0.14,979,1.2000000000000002,318,1 +2013,10,10,18,30,14.8,0.97,0.075,0.66,0,0,0,0,9.700000000000001,0,0,0,0,0.272,71.67,101.31,0.14,980,1.3,315,1 +2013,10,10,19,30,15.700000000000001,0.98,0.0742,0.66,15,146,21,0,10.100000000000001,15,146,0,21,0.272,69.24,87.92,0.14,981,1.3,308,1.3 +2013,10,10,20,30,18.3,0.99,0.07680000000000001,0.66,59,627,223,0,10.5,59,627,0,223,0.273,60.230000000000004,74.84,0.14,981,1.4000000000000001,301,2.1 +2013,10,10,21,30,21.400000000000002,1,0.0844,0.66,84,795,462,0,10.9,84,795,0,462,0.273,51.19,61.57,0.14,982,1.5,295,2.7 +2013,10,10,22,30,24.8,1,0.09530000000000001,0.66,102,869,677,0,10.8,102,869,0,677,0.272,41.47,48.52,0.14,981,1.7000000000000002,290,2.9000000000000004 +2013,10,10,23,30,26.400000000000002,0.99,0.1057,0.66,116,910,851,0,10.4,116,910,0,851,0.272,36.71,36.160000000000004,0.14,981,1.7000000000000002,288,2.9000000000000004 +2013,10,11,0,30,30.400000000000002,1,0.1061,0.66,122,934,964,0,10.100000000000001,122,934,0,964,0.272,28.39,25.69,0.14,979,1.8,282,3.1 +2013,10,11,1,30,32.300000000000004,0.93,0.11520000000000001,0.66,129,933,1004,0,9.700000000000001,129,933,0,1004,0.272,24.87,20.37,0.14,978,1.9000000000000001,275,3.1 +2013,10,11,2,30,33.5,0.93,0.1207,0.66,129,918,968,0,9.200000000000001,129,918,0,968,0.272,22.56,23.990000000000002,0.14,977,2.1,267,3 +2013,10,11,3,30,34.1,1.03,0.12440000000000001,0.66,124,890,865,0,8.9,124,890,0,865,0.271,21.34,33.75,0.14,977,2.2,261,2.8000000000000003 +2013,10,11,4,30,33.9,1.11,0.1564,0.66,127,814,693,0,8.8,127,814,0,693,0.271,21.47,45.86,0.14,976,2.3000000000000003,255,2.4000000000000004 +2013,10,11,5,30,33.1,1.12,0.1925,0.66,121,687,477,0,9.200000000000001,121,687,0,477,0.272,23,58.800000000000004,0.14,977,2.4000000000000004,242,1.8 +2013,10,11,6,30,31,1,0.1892,0.66,91,506,246,0,9.600000000000001,91,506,0,246,0.272,26.69,72.05,0.14,977,2.5,182,1.2000000000000002 +2013,10,11,7,30,27.6,0.89,0.19640000000000002,0.66,32,122,42,0,11.600000000000001,32,122,0,42,0.274,37.07,85.24,0.14,978,2.6,122,1.4000000000000001 +2013,10,11,8,30,24.400000000000002,0.8,0.1951,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.276,51.26,98.53,0.14,980,2.6,110,2 +2013,10,11,9,30,22.5,0.73,0.1942,0.66,0,0,0,0,14.9,0,0,0,0,0.277,62.230000000000004,111.29,0.14,981,2.7,108,2.3000000000000003 +2013,10,11,10,30,21.1,0.68,0.19740000000000002,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.278,74.52,123.31,0.14,983,2.7,112,2.3000000000000003 +2013,10,11,11,30,20,0.63,0.2132,0.66,0,0,0,0,17.400000000000002,0,0,0,0,0.278,84.79,133.94,0.14,983,2.7,118,2.1 +2013,10,11,12,30,19.400000000000002,0.6,0.23720000000000002,0.66,0,0,0,0,17.6,0,0,0,0,0.278,89.5,141.94,0.14,983,2.8000000000000003,124,1.8 +2013,10,11,13,30,19.1,0.58,0.2609,0.66,0,0,0,0,17.6,0,0,0,0,0.278,90.84,145.41,0.14,983,2.8000000000000003,126,1.7000000000000002 +2013,10,11,14,30,18.900000000000002,0.56,0.2838,0.66,0,0,0,0,17.5,0,0,0,0,0.278,91.44,143.04,0.14,983,2.8000000000000003,124,1.7000000000000002 +2013,10,11,15,30,18.8,0.58,0.32030000000000003,0.66,0,0,0,1,17.5,0,0,0,0,0.278,92.31,135.76,0.14,983,2.9000000000000004,120,1.7000000000000002 +2013,10,11,16,30,18.7,0.6,0.329,0.66,0,0,0,3,17.6,0,0,0,0,0.279,93.54,125.53,0.14,983,2.9000000000000004,115,1.6 +2013,10,11,17,30,18.7,0.6,0.3186,0.66,0,0,0,3,17.7,0,0,0,0,0.28,94.12,113.72,0.14,983,2.9000000000000004,111,1.5 +2013,10,11,18,30,18.6,0.65,0.3219,0.66,0,0,0,3,17.8,0,0,0,0,0.28,95.35000000000001,101.06,0.14,983,2.9000000000000004,107,1.3 +2013,10,11,19,30,19,0.68,0.3104,0.66,13,9,13,1,18,13,9,0,13,0.28,93.87,87.71000000000001,0.14,984,2.9000000000000004,101,1.5 +2013,10,11,20,30,20.5,0.71,0.28200000000000003,0.66,104,337,193,1,18.1,104,337,0,193,0.28,86.38,74.62,0.14,984,2.9000000000000004,91,2.1 +2013,10,11,21,30,22.6,0.77,0.2684,0.66,148,566,420,1,18.1,148,566,0,420,0.279,75.64,61.34,0.14,985,3,80,2.3000000000000003 +2013,10,11,22,30,24.700000000000003,0.84,0.25120000000000003,0.66,167,700,633,1,17.7,167,700,0,633,0.278,65.02,48.28,0.14,985,3,73,2.2 +2013,10,11,23,30,25.8,0.91,0.22940000000000002,0.66,174,783,808,1,17.3,174,783,1,808,0.277,59.47,35.88,0.14,985,3,71,2.1 +2013,10,12,0,30,28.200000000000003,0.99,0.2942,0.66,207,776,909,1,16.8,207,776,0,909,0.276,49.980000000000004,25.34,0.14,983,3,66,1.9000000000000001 +2013,10,12,1,30,29.400000000000002,1.04,0.2888,0.66,208,793,953,1,16.2,208,793,0,953,0.275,44.99,20,0.14,982,3,64,1.9000000000000001 +2013,10,12,2,30,30.200000000000003,1.06,0.2897,0.66,205,784,923,1,15.700000000000001,205,784,0,923,0.275,41.56,23.7,0.14,981,3.1,62,1.9000000000000001 +2013,10,12,3,30,30.5,1.04,0.21630000000000002,0.66,167,803,836,0,15.200000000000001,167,803,0,836,0.275,39.65,33.56,0.14,981,3.1,61,2.1 +2013,10,12,4,30,30.200000000000003,1.04,0.2209,0.66,155,745,675,0,14.9,155,745,0,675,0.276,39.43,45.71,0.14,980,3.1,60,2.3000000000000003 +2013,10,12,5,30,29.3,1.03,0.23240000000000002,0.66,137,637,468,0,14.700000000000001,137,637,0,468,0.277,41,58.69,0.14,980,3.1,60,2.5 +2013,10,12,6,30,27.6,1.02,0.2452,0.66,104,443,241,1,14.700000000000001,104,443,0,241,0.277,45.4,71.93,0.14,980,3.1,62,2.6 +2013,10,12,7,30,25.400000000000002,1.01,0.24050000000000002,0.66,33,104,41,0,15.200000000000001,33,104,0,41,0.278,53.33,85.12,0.14,981,3,62,2.5 +2013,10,12,8,30,23.3,0.99,0.2124,0.66,0,0,0,0,15.9,0,0,0,0,0.279,63.31,98.41,0.14,981,2.9000000000000004,60,2.2 +2013,10,12,9,30,22,0.97,0.1829,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.279,70.57000000000001,111.14,0.14,982,2.8000000000000003,56,1.8 +2013,10,12,10,30,21.200000000000003,0.9500000000000001,0.16,0.66,0,0,0,0,16.5,0,0,0,0,0.278,74.67,123.12,0.14,982,2.7,50,1.4000000000000001 +2013,10,12,11,30,20.5,0.9400000000000001,0.14500000000000002,0.66,0,0,0,0,16.3,0,0,0,0,0.277,77.07000000000001,133.69,0.14,983,2.5,36,1.1 +2013,10,12,12,30,19.8,0.96,0.1383,0.66,0,0,0,0,15.9,0,0,0,0,0.277,78.21000000000001,141.62,0.14,983,2.5,16,0.9 +2013,10,12,13,30,19.1,1.01,0.1373,0.66,0,0,0,0,15.4,0,0,0,0,0.276,78.9,145.04,0.14,982,2.4000000000000004,179,0.9 +2013,10,12,14,30,18.6,1.06,0.1409,0.66,0,0,0,8,15,0,0,0,0,0.276,79.34,142.67000000000002,0.14,982,2.3000000000000003,349,0.9 +2013,10,12,15,30,18.1,1.1,0.14300000000000002,0.66,0,0,0,4,14.8,0,0,0,0,0.276,81.2,135.43,0.14,982,2.2,347,0.9 +2013,10,12,16,30,17.6,1.11,0.1385,0.66,0,0,0,4,14.8,0,0,0,0,0.277,83.79,125.24000000000001,0.14,982,2.2,349,0.9 +2013,10,12,17,30,17,1.08,0.1335,0.66,0,0,0,0,14.8,0,0,0,0,0.278,87.06,113.45,0.14,982,2.1,347,0.9 +2013,10,12,18,30,16.7,1.04,0.131,0.66,0,0,0,0,14.8,0,0,0,0,0.278,88.78,100.82000000000001,0.14,982,2,341,0.9 +2013,10,12,19,30,17.400000000000002,1,0.1305,0.66,18,95,22,1,14.8,18,95,0,22,0.278,84.82000000000001,87.49,0.14,983,2,332,1.4000000000000001 +2013,10,12,20,30,19.200000000000003,0.98,0.1302,0.66,73,540,218,1,14.8,73,540,1,218,0.276,75.47,74.4,0.14,983,2,326,2.3000000000000003 +2013,10,12,21,30,21.5,0.98,0.1264,0.66,100,737,456,1,14.3,100,737,0,456,0.275,63.74,61.120000000000005,0.14,983,2,322,2.8000000000000003 +2013,10,12,22,30,24.1,1.01,0.1221,0.66,115,838,675,7,13.100000000000001,424,131,3,512,0.274,50.1,48.03,0.14,983,2,319,2.9000000000000004 +2013,10,12,23,30,25.5,1.04,0.1212,0.66,125,893,850,0,11.4,125,893,0,850,0.273,41.410000000000004,35.6,0.14,982,2,319,2.9000000000000004 +2013,10,13,0,30,29,1.1400000000000001,0.1092,0.66,123,928,965,0,10.100000000000001,123,928,0,965,0.273,30.8,25.01,0.14,980,2.1,321,2.8000000000000003 +2013,10,13,1,30,30.8,1.18,0.1105,0.66,126,935,1006,3,9.1,519,27,0,545,0.272,26.080000000000002,19.62,0.14,979,2.2,322,2.8000000000000003 +2013,10,13,2,30,32.1,1.21,0.1105,0.66,124,927,974,3,8.5,467,23,0,488,0.271,23.25,23.41,0.14,977,2.3000000000000003,323,2.9000000000000004 +2013,10,13,3,30,32.7,1.23,0.113,0.66,120,900,871,0,8.3,120,900,0,871,0.271,22.18,33.37,0.14,976,2.4000000000000004,322,2.9000000000000004 +2013,10,13,4,30,32.800000000000004,1.28,0.10880000000000001,0.66,108,856,708,0,8.5,108,856,0,708,0.271,22.25,45.57,0.14,975,2.5,319,2.9000000000000004 +2013,10,13,5,30,32.2,1.31,0.1096,0.66,94,772,497,1,8.9,94,772,0,497,0.272,23.63,58.57,0.14,975,2.6,316,2.7 +2013,10,13,6,30,30.700000000000003,1.32,0.1194,0.66,74,600,261,0,9.3,74,600,0,261,0.272,26.560000000000002,71.82000000000001,0.14,975,2.7,318,2 +2013,10,13,7,30,28,1.3,0.13390000000000002,0.66,30,214,49,0,10.600000000000001,30,214,0,49,0.273,33.81,85.01,0.14,975,2.8000000000000003,332,1.2000000000000002 +2013,10,13,8,30,25.8,1.28,0.1411,0.66,0,0,0,8,11.8,0,0,0,0,0.274,41.76,98.28,0.14,976,2.8000000000000003,345,1 +2013,10,13,9,30,24.700000000000003,1.28,0.14020000000000002,0.66,0,0,0,4,12.3,0,0,0,0,0.274,46,110.98,0.14,976,2.9000000000000004,347,1.1 +2013,10,13,10,30,23.700000000000003,1.23,0.1427,0.66,0,0,0,8,12.4,0,0,0,0,0.274,49.22,122.93,0.14,976,2.9000000000000004,348,1.1 +2013,10,13,11,30,22.8,1.17,0.1504,0.66,0,0,0,8,12.600000000000001,0,0,0,0,0.274,52.52,133.44,0.14,976,2.8000000000000003,348,1.1 +2013,10,13,12,30,21.900000000000002,1.09,0.155,0.66,0,0,0,8,12.8,0,0,0,0,0.273,56.44,141.3,0.14,976,2.8000000000000003,344,1.1 +2013,10,13,13,30,21.200000000000003,0.99,0.15030000000000002,0.66,0,0,0,4,13.3,0,0,0,0,0.273,60.6,144.67000000000002,0.14,976,2.8000000000000003,331,1.3 +2013,10,13,14,30,20.700000000000003,0.9500000000000001,0.1468,0.66,0,0,0,4,14.3,0,0,0,0,0.274,66.63,142.29,0.14,976,3,311,1.5 +2013,10,13,15,30,20.5,0.9,0.15910000000000002,0.66,0,0,0,0,15,0,0,0,0,0.274,70.87,135.09,0.14,976,3.2,301,1.7000000000000002 +2013,10,13,16,30,20.3,0.8,0.1738,0.66,0,0,0,0,15.5,0,0,0,0,0.274,73.82000000000001,124.94,0.14,976,3.2,293,1.7000000000000002 +2013,10,13,17,30,19.900000000000002,0.64,0.1764,0.66,0,0,0,0,15.3,0,0,0,0,0.275,74.78,113.19,0.14,976,2.9000000000000004,269,1.7000000000000002 +2013,10,13,18,30,19.400000000000002,0.51,0.1867,0.66,0,0,0,1,13.9,0,0,0,0,0.275,70.64,100.59,0.14,977,2.5,246,2 +2013,10,13,19,30,19,0.43,0.19260000000000002,0.66,19,31,20,1,11.5,19,31,0,20,0.275,61.67,87.28,0.14,979,2.2,237,2.8000000000000003 +2013,10,13,20,30,19.1,0.36,0.2046,0.66,96,411,208,1,9.600000000000001,96,411,0,208,0.276,54.19,74.18,0.14,980,2.1,237,3.5 +2013,10,13,21,30,19.8,0.33,0.2159,0.66,140,615,440,1,8,140,615,0,440,0.277,46.37,60.89,0.14,981,2,240,3.8000000000000003 +2013,10,13,22,30,21.200000000000003,0.39,0.1923,0.66,154,758,663,0,6.5,154,758,0,663,0.279,38.44,47.800000000000004,0.14,982,1.9000000000000001,243,4 +2013,10,13,23,30,22,0.54,0.1331,0.66,136,881,855,0,4.800000000000001,136,881,0,855,0.28,32.65,35.33,0.14,982,1.7000000000000002,244,4.1000000000000005 +2013,10,14,0,30,24.200000000000003,0.77,0.0627,0.66,103,996,1008,0,2.8000000000000003,103,996,0,1008,0.28300000000000003,24.85,24.67,0.14,982,1,243,4 +2013,10,14,1,30,25.5,0.87,0.0438,0.66,94,1034,1070,0,0.6000000000000001,94,1034,0,1070,0.28400000000000003,19.580000000000002,19.240000000000002,0.14,981,0.7000000000000001,239,3.7 +2013,10,14,2,30,26.400000000000002,0.9,0.038400000000000004,0.66,90,1040,1046,1,-1.3,90,1040,0,1046,0.28400000000000003,16.18,23.12,0.14,980,0.6000000000000001,233,3.3000000000000003 +2013,10,14,3,30,26.8,0.8,0.0442,0.66,90,1016,940,0,-2.2,90,1016,0,940,0.28300000000000003,14.81,33.18,0.14,980,0.6000000000000001,228,3 +2013,10,14,4,30,26.700000000000003,0.79,0.0459,0.66,85,976,770,0,-2.3000000000000003,85,976,0,770,0.28300000000000003,14.8,45.43,0.14,980,0.6000000000000001,226,2.8000000000000003 +2013,10,14,5,30,26.1,0.79,0.047,0.66,75,899,545,0,-2.2,75,899,0,545,0.28300000000000003,15.450000000000001,58.45,0.14,980,0.7000000000000001,226,2.5 +2013,10,14,6,30,24.700000000000003,0.81,0.0473,0.66,59,759,297,0,-2,59,759,0,297,0.28200000000000003,16.98,71.71000000000001,0.14,981,0.7000000000000001,226,1.9000000000000001 +2013,10,14,7,30,22,0.8300000000000001,0.047,0.66,28,387,62,0,-0.7000000000000001,28,387,0,62,0.28300000000000003,22.04,84.89,0.14,982,0.8,213,1.1 +2013,10,14,8,30,19.3,0.86,0.0473,0.66,0,0,0,0,1.6,0,0,0,0,0.28300000000000003,30.740000000000002,98.14,0.14,983,0.8,189,0.6000000000000001 +2013,10,14,9,30,17.7,0.89,0.049100000000000005,0.66,0,0,0,0,3.4000000000000004,0,0,0,0,0.28400000000000003,38.5,110.83,0.14,984,0.9,181,0.4 +2013,10,14,10,30,16.6,0.9,0.052500000000000005,0.66,0,0,0,0,4.800000000000001,0,0,0,0,0.28400000000000003,45.6,122.73,0.14,985,0.9,195,0.30000000000000004 +2013,10,14,11,30,15.9,0.9,0.056900000000000006,0.66,0,0,0,1,5.9,0,0,0,0,0.28400000000000003,51.28,133.19,0.14,986,0.9,215,0.30000000000000004 +2013,10,14,12,30,15.200000000000001,0.88,0.061200000000000004,0.66,0,0,0,0,6.4,0,0,0,0,0.28400000000000003,55.6,140.99,0.14,986,0.9,230,0.2 +2013,10,14,13,30,14.600000000000001,0.86,0.06520000000000001,0.66,0,0,0,0,6.6000000000000005,0,0,0,0,0.28300000000000003,58.61,144.3,0.14,987,0.9,234,0.2 +2013,10,14,14,30,14.200000000000001,0.85,0.0693,0.66,0,0,0,0,6.6000000000000005,0,0,0,0,0.28200000000000003,60.17,141.93,0.14,986,0.9,234,0.2 +2013,10,14,15,30,13.700000000000001,0.84,0.0717,0.66,0,0,0,0,6.4,0,0,0,0,0.28200000000000003,61.27,134.76,0.14,986,0.9,236,0.30000000000000004 +2013,10,14,16,30,13.200000000000001,0.85,0.0728,0.66,0,0,0,0,5.9,0,0,0,0,0.28200000000000003,61.17,124.65,0.14,986,0.9,232,0.5 +2013,10,14,17,30,12.700000000000001,0.87,0.0727,0.66,0,0,0,0,5.300000000000001,0,0,0,0,0.28300000000000003,60.730000000000004,112.94,0.14,987,1,222,0.5 +2013,10,14,18,30,12.200000000000001,0.9,0.0746,0.66,0,0,0,0,4.800000000000001,0,0,1,0,0.28400000000000003,60.59,100.35000000000001,0.14,987,1,209,0.6000000000000001 +2013,10,14,19,30,13,0.91,0.078,0.66,21,190,30,1,4.5,21,190,0,30,0.28400000000000003,56.27,87.06,0.14,988,1.1,194,0.7000000000000001 +2013,10,14,20,30,15.8,0.92,0.08080000000000001,0.66,64,645,243,1,4.6000000000000005,64,645,1,243,0.28400000000000003,47.21,73.96000000000001,0.14,989,1.1,148,0.8 +2013,10,14,21,30,19.200000000000003,0.9400000000000001,0.076,0.66,84,823,487,0,7.7,84,823,0,487,0.28400000000000003,47.24,60.68,0.14,989,1.2000000000000002,93,1 +2013,10,14,22,30,21.8,0.98,0.0682,0.66,93,917,712,0,9.3,93,917,0,712,0.28400000000000003,44.84,47.56,0.14,990,1.2000000000000002,68,1.2000000000000002 +2013,10,14,23,30,22.900000000000002,1.01,0.0635,0.66,99,967,890,0,8.200000000000001,99,967,0,890,0.28300000000000003,38.9,35.06,0.14,990,1.2000000000000002,60,1.2000000000000002 +2013,10,15,0,30,25.400000000000002,0.98,0.0639,0.66,104,987,1003,0,6.9,104,987,0,1003,0.28200000000000003,30.75,24.34,0.14,989,1.3,43,1.1 +2013,10,15,1,30,26.700000000000003,0.99,0.0635,0.66,105,995,1047,0,5.800000000000001,105,995,0,1047,0.28200000000000003,26.39,18.87,0.14,988,1.3,39,1.1 +2013,10,15,2,30,27.6,0.99,0.0636,0.66,104,990,1016,0,5,104,990,0,1016,0.28200000000000003,23.61,22.84,0.14,987,1.3,42,1.1 +2013,10,15,3,30,27.900000000000002,0.9,0.07200000000000001,0.66,105,961,911,0,4.3,105,961,0,911,0.28300000000000003,22.13,32.99,0.14,986,1.3,53,1.2000000000000002 +2013,10,15,4,30,27.6,0.89,0.07400000000000001,0.66,98,917,743,0,4,98,917,0,743,0.28300000000000003,22,45.29,0.14,985,1.3,65,1.4000000000000001 +2013,10,15,5,30,26.6,0.89,0.0741,0.66,86,841,527,0,4.2,86,841,0,527,0.28300000000000003,23.7,58.33,0.14,985,1.3,71,1.8 +2013,10,15,6,30,24.6,0.87,0.07390000000000001,0.66,67,687,284,0,5.4,67,687,0,284,0.28300000000000003,29.11,71.60000000000001,0.14,986,1.4000000000000001,73,2.2 +2013,10,15,7,30,21.8,0.84,0.076,0.66,31,304,58,0,7.6000000000000005,31,304,0,58,0.28300000000000003,39.94,84.78,0.14,986,1.5,73,2 +2013,10,15,8,30,19.5,0.79,0.08020000000000001,0.66,0,0,0,0,9.600000000000001,0,0,0,0,0.28300000000000003,52.92,98.01,0.14,987,1.6,72,1.6 +2013,10,15,9,30,18.400000000000002,0.74,0.08600000000000001,0.66,0,0,0,0,11.4,0,0,0,0,0.28300000000000003,63.83,110.67,0.14,988,1.7000000000000002,69,1.3 +2013,10,15,10,30,17.5,0.67,0.0949,0.66,0,0,0,0,12.8,0,0,0,0,0.28300000000000003,73.9,122.53,0.14,989,1.8,65,0.9 +2013,10,15,11,30,16.900000000000002,0.61,0.10550000000000001,0.66,0,0,0,0,13.5,0,0,0,0,0.28300000000000003,80.19,132.94,0.14,990,1.8,61,0.8 +2013,10,15,12,30,16.6,0.59,0.11470000000000001,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28200000000000003,83,140.67000000000002,0.14,989,1.8,57,0.7000000000000001 +2013,10,15,13,30,16.5,0.59,0.1189,0.66,0,0,0,0,13.8,0,0,0,0,0.28200000000000003,83.93,143.93,0.14,989,1.8,49,0.7000000000000001 +2013,10,15,14,30,16.400000000000002,0.61,0.12000000000000001,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28200000000000003,84.31,141.56,0.14,988,1.8,37,0.7000000000000001 +2013,10,15,15,30,16.2,0.61,0.1222,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28200000000000003,85.21000000000001,134.43,0.14,988,1.9000000000000001,26,0.7000000000000001 +2013,10,15,16,30,16.1,0.61,0.1264,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28300000000000003,85.81,124.36,0.14,988,1.9000000000000001,16,0.6000000000000001 +2013,10,15,17,30,15.9,0.63,0.1295,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28400000000000003,86.83,112.68,0.14,988,1.8,9,0.6000000000000001 +2013,10,15,18,30,15.600000000000001,0.63,0.1207,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28500000000000003,88.54,100.12,0.14,989,1.8,5,0.6000000000000001 +2013,10,15,19,30,16.3,0.63,0.1101,0.66,23,124,30,1,13.700000000000001,23,124,0,30,0.28500000000000003,84.87,86.86,0.14,990,1.7000000000000002,180,0.8 +2013,10,15,20,30,18.400000000000002,0.64,0.1014,0.66,72,588,237,1,13.700000000000001,72,588,0,237,0.28500000000000003,74.15,73.75,0.14,990,1.7000000000000002,178,1.4000000000000001 +2013,10,15,21,30,20.900000000000002,0.66,0.09620000000000001,0.66,95,778,478,0,12.700000000000001,95,778,0,478,0.28500000000000003,59.620000000000005,60.46,0.14,991,1.7000000000000002,2,1.7000000000000002 +2013,10,15,22,30,23,0.71,0.08900000000000001,0.66,105,880,702,0,11.9,105,880,0,702,0.28500000000000003,49.52,47.34,0.14,991,1.6,5,1.7000000000000002 +2013,10,15,23,30,23.900000000000002,0.77,0.0844,0.66,112,934,879,1,11.100000000000001,112,934,0,879,0.28500000000000003,44.53,34.800000000000004,0.14,991,1.6,7,1.6 +2013,10,16,0,30,26.1,0.8200000000000001,0.0858,0.66,117,956,990,0,10,117,956,0,990,0.28500000000000003,36.24,24.02,0.14,990,1.7000000000000002,5,1.4000000000000001 +2013,10,16,1,30,26.900000000000002,0.86,0.09330000000000001,0.66,123,959,1032,0,8.8,123,959,0,1032,0.28500000000000003,32.01,18.5,0.14,989,1.7000000000000002,7,1.4000000000000001 +2013,10,16,2,30,27.3,0.88,0.0981,0.66,124,947,998,8,8.1,627,164,0,779,0.28600000000000003,29.7,22.56,0.14,987,1.8,12,1.4000000000000001 +2013,10,16,3,30,27.6,1.09,0.06960000000000001,0.66,102,951,902,1,7.7,102,951,0,902,0.28700000000000003,28.560000000000002,32.8,0.14,986,1.8,19,1.6 +2013,10,16,4,30,27.5,1.08,0.06380000000000001,0.66,92,912,736,1,7.7,92,912,0,736,0.28700000000000003,28.740000000000002,45.15,0.14,986,1.9000000000000001,26,1.8 +2013,10,16,5,30,26.8,1.08,0.061200000000000004,0.66,79,842,523,0,7.9,79,842,0,523,0.28700000000000003,30.29,58.21,0.14,985,1.9000000000000001,33,2.1 +2013,10,16,6,30,25.400000000000002,1.07,0.0589,0.66,61,703,284,3,8.4,166,147,0,213,0.28700000000000003,33.95,71.48,0.14,985,1.9000000000000001,39,2.3000000000000003 +2013,10,16,7,30,23,1.04,0.057300000000000004,0.66,29,350,61,0,9.4,29,350,0,61,0.28700000000000003,41.86,84.66,0.14,986,1.9000000000000001,42,2 +2013,10,16,8,30,20.8,0.99,0.057300000000000004,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.28600000000000003,52.13,97.88,0.14,987,1.9000000000000001,43,1.7000000000000002 +2013,10,16,9,30,19.6,0.9400000000000001,0.0585,0.66,0,0,0,0,11.4,0,0,0,0,0.28400000000000003,59.29,110.51,0.14,987,1.9000000000000001,39,1.5 +2013,10,16,10,30,18.7,0.91,0.060700000000000004,0.66,0,0,0,0,12,0,0,0,0,0.28400000000000003,64.98,122.34,0.14,988,1.9000000000000001,34,1.3 +2013,10,16,11,30,17.900000000000002,0.88,0.06380000000000001,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.28400000000000003,69.5,132.69,0.14,988,1.8,29,1.1 +2013,10,16,12,30,17.2,0.86,0.0671,0.66,0,0,0,0,12.3,0,0,0,0,0.28500000000000003,72.72,140.35,0.14,988,1.8,23,0.9 +2013,10,16,13,30,16.7,0.85,0.0693,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.28500000000000003,74.61,143.56,0.14,988,1.7000000000000002,18,0.9 +2013,10,16,14,30,16.1,0.87,0.07010000000000001,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.28600000000000003,76.94,141.20000000000002,0.14,987,1.7000000000000002,14,0.8 +2013,10,16,15,30,15.600000000000001,0.88,0.0702,0.66,0,0,0,0,12,0,0,0,0,0.28700000000000003,79.38,134.11,0.14,986,1.6,10,0.8 +2013,10,16,16,30,15.100000000000001,0.89,0.0703,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.28800000000000003,82.59,124.08,0.14,986,1.6,8,0.7000000000000001 +2013,10,16,17,30,14.600000000000001,0.91,0.0703,0.66,0,0,0,0,12.3,0,0,0,0,0.289,85.97,112.43,0.14,986,1.6,6,0.7000000000000001 +2013,10,16,18,30,14.200000000000001,0.92,0.07060000000000001,0.66,0,0,0,0,12.4,0,0,0,0,0.29,88.92,99.89,0.14,986,1.5,182,0.7000000000000001 +2013,10,16,19,30,15,0.9400000000000001,0.07100000000000001,0.66,21,222,34,1,12.5,21,222,0,34,0.29,85.19,86.65,0.14,987,1.5,355,1 +2013,10,16,20,30,17.5,0.97,0.07060000000000001,0.66,61,659,248,1,12.600000000000001,61,659,0,248,0.29,73.18,73.55,0.14,987,1.5,351,1.8 +2013,10,16,21,30,20.3,1,0.0683,0.66,80,828,491,0,12.4,80,828,0,491,0.289,60.56,60.25,0.14,988,1.5,354,2.3000000000000003 +2013,10,16,22,30,22.900000000000002,1.03,0.0651,0.66,91,914,713,0,11.5,91,914,0,713,0.28800000000000003,48.730000000000004,47.11,0.14,988,1.5,357,2.3000000000000003 +2013,10,16,23,30,24.200000000000003,1.05,0.0631,0.66,98,961,889,0,10.700000000000001,98,961,0,889,0.28700000000000003,42.6,34.54,0.14,987,1.5,358,2.3000000000000003 +2013,10,17,0,30,27.200000000000003,1.05,0.0621,0.66,102,985,1003,0,9.9,102,985,0,1003,0.28600000000000003,33.93,23.69,0.14,986,1.5,356,2.3000000000000003 +2013,10,17,1,30,28.700000000000003,1.06,0.061900000000000004,0.66,103,993,1047,0,9.1,103,993,0,1047,0.28500000000000003,29.46,18.13,0.14,985,1.5,354,2.2 +2013,10,17,2,30,29.700000000000003,1.06,0.06280000000000001,0.66,103,984,1013,0,8.4,103,984,0,1013,0.28400000000000003,26.52,22.29,0.14,984,1.6,354,2.1 +2013,10,17,3,30,30.200000000000003,0.97,0.0781,0.66,107,949,906,0,8,107,949,0,906,0.28400000000000003,25.060000000000002,32.62,0.14,983,1.6,356,2 +2013,10,17,4,30,30.1,0.97,0.07980000000000001,0.66,99,903,737,0,7.9,99,903,0,737,0.28500000000000003,25,45.02,0.14,982,1.7000000000000002,181,2 +2013,10,17,5,30,29.400000000000002,0.97,0.0804,0.66,87,825,524,0,8,87,825,0,524,0.28500000000000003,26.240000000000002,58.09,0.14,982,1.7000000000000002,9,2 +2013,10,17,6,30,27.8,0.97,0.0801,0.66,67,674,283,0,8.4,67,674,0,283,0.28500000000000003,29.52,71.37,0.14,982,1.8,21,2 +2013,10,17,7,30,25.1,0.97,0.079,0.66,31,311,60,0,9.5,31,311,0,60,0.28600000000000003,37.39,84.55,0.14,982,1.8,32,1.9000000000000001 +2013,10,17,8,30,22.700000000000003,0.96,0.078,0.66,0,0,0,0,11,0,0,0,0,0.28600000000000003,47.44,97.74000000000001,0.14,983,1.8,36,1.7000000000000002 +2013,10,17,9,30,21.3,0.9500000000000001,0.0786,0.66,0,0,0,0,12,0,0,0,0,0.28600000000000003,55.31,110.35000000000001,0.14,984,1.9000000000000001,33,1.5 +2013,10,17,10,30,20.3,0.9400000000000001,0.0801,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.28700000000000003,61.1,122.14,0.14,984,2,27,1.4000000000000001 +2013,10,17,11,30,19.6,0.9500000000000001,0.0809,0.66,0,0,0,0,12.9,0,0,0,0,0.28700000000000003,65.13,132.43,0.14,984,2.1,19,1.3 +2013,10,17,12,30,18.900000000000002,0.98,0.0815,0.66,0,0,0,0,13,0,0,0,0,0.28600000000000003,68.43,140.03,0.14,984,2.1,10,1.1 +2013,10,17,13,30,18.3,1.02,0.0825,0.66,0,0,0,8,12.9,0,0,0,0,0.28600000000000003,70.86,143.20000000000002,0.14,983,2.1,181,1 +2013,10,17,14,30,17.7,1.05,0.08410000000000001,0.66,0,0,0,0,12.9,0,0,0,0,0.28500000000000003,73.34,140.83,0.14,983,2.1,347,0.9 +2013,10,17,15,30,17.2,1.05,0.08650000000000001,0.66,0,0,0,3,12.9,0,0,0,0,0.28500000000000003,75.62,133.78,0.14,983,2.2,324,0.7000000000000001 +2013,10,17,16,30,16.900000000000002,1.02,0.09330000000000001,0.66,0,0,0,8,12.9,0,0,0,0,0.28500000000000003,77.13,123.8,0.14,983,2.3000000000000003,288,0.7000000000000001 +2013,10,17,17,30,16.8,0.97,0.1071,0.66,0,0,0,4,12.9,0,0,0,0,0.28500000000000003,77.82000000000001,112.18,0.14,985,2.5,256,0.7000000000000001 +2013,10,17,18,30,17.1,0.92,0.12100000000000001,0.66,0,0,0,4,12.9,0,0,0,0,0.28600000000000003,76.39,99.66,0.14,986,2.8000000000000003,235,0.6000000000000001 +2013,10,17,19,30,17.8,0.9,0.13570000000000002,0.66,25,123,32,8,13,4,0,3,4,0.28700000000000003,73.31,86.45,0.14,987,2.9000000000000004,213,0.6000000000000001 +2013,10,17,20,30,19.200000000000003,0.88,0.1597,0.66,84,499,227,8,13.100000000000001,9,0,0,9,0.29,67.72,73.34,0.14,987,3.1,185,1.2000000000000002 +2013,10,17,21,30,20.3,0.86,0.2129,0.66,134,633,450,8,13.700000000000001,287,99,0,336,0.294,65.78,60.050000000000004,0.14,988,3.2,162,2 +2013,10,17,22,30,20.8,0.88,0.3121,0.66,194,662,646,4,14.4,56,3,0,58,0.295,66.61,46.89,0.14,989,3.3000000000000003,143,2.4000000000000004 +2013,10,17,23,30,21,0.92,0.3509,0.66,227,704,809,8,14.600000000000001,551,133,0,661,0.296,66.72,34.29,0.14,989,3.3000000000000003,134,2.4000000000000004 +2013,10,18,0,30,21.700000000000003,0.98,0.3276,0.66,227,760,925,1,14.600000000000001,227,760,0,925,0.301,64.17,23.38,0.14,988,3.1,113,2.4000000000000004 +2013,10,18,1,30,22.200000000000003,1.01,0.3136,0.66,225,781,969,8,14.8,642,95,0,733,0.306,62.97,17.76,0.14,988,3.1,115,2.2 +2013,10,18,2,30,22.200000000000003,1,0.35350000000000004,0.66,239,748,933,4,15,186,30,0,214,0.312,63.550000000000004,22.01,0.14,987,3.1,122,2.2 +2013,10,18,3,30,21.5,0.99,0.4247,0.66,255,672,822,8,15,383,23,0,403,0.313,66.49,32.44,0.14,987,3.2,126,2.4000000000000004 +2013,10,18,4,30,20.6,1,0.45730000000000004,0.66,243,588,659,8,15.100000000000001,410,52,0,447,0.311,70.61,44.88,0.14,987,3.3000000000000003,131,2.4000000000000004 +2013,10,18,5,30,19.8,1,0.4772,0.66,209,467,456,7,15.100000000000001,95,20,0,105,0.307,74.45,57.980000000000004,0.14,987,3.3000000000000003,134,2.4000000000000004 +2013,10,18,6,30,19.1,1.03,0.5042,0.66,146,277,235,4,15,138,36,0,150,0.304,77.28,71.26,0.14,988,3.3000000000000003,131,2.2 +2013,10,18,7,30,18.2,1.05,0.4491,0.66,38,53,43,8,14.9,13,0,3,13,0.303,80.89,84.42,0.14,989,3.1,125,2 +2013,10,18,8,30,17.5,1.05,0.3628,0.66,0,0,0,8,14.9,0,0,0,0,0.302,84.72,97.61,0.14,990,3,124,1.9000000000000001 +2013,10,18,9,30,17.1,1.04,0.3064,0.66,0,0,0,4,14.8,0,0,0,0,0.3,86.60000000000001,110.19,0.14,991,2.8000000000000003,127,1.9000000000000001 +2013,10,18,10,30,16.7,1.03,0.2821,0.66,0,0,0,8,14.9,0,0,0,0,0.299,89.03,121.93,0.14,992,2.7,131,1.8 +2013,10,18,11,30,16.400000000000002,1.02,0.2735,0.66,0,0,0,3,15,0,0,0,0,0.297,91.19,132.18,0.14,992,2.6,134,1.7000000000000002 +2013,10,18,12,30,16.1,1.02,0.2783,0.66,0,0,0,1,15,0,0,0,0,0.295,93.01,139.72,0.14,992,2.5,136,1.6 +2013,10,18,13,30,15.9,1.01,0.2712,0.66,0,0,0,3,14.9,0,0,0,0,0.292,93.88,142.84,0.14,991,2.4000000000000004,137,1.4000000000000001 +2013,10,18,14,30,15.600000000000001,0.99,0.2503,0.66,0,0,0,1,14.8,0,0,0,0,0.29,95.26,140.48,0.14,991,2.3000000000000003,140,1.2000000000000002 +2013,10,18,15,30,15.200000000000001,0.99,0.234,0.66,0,0,0,3,14.700000000000001,0,0,0,0,0.289,96.74000000000001,133.46,0.14,990,2.2,145,1 +2013,10,18,16,30,14.600000000000001,1,0.20800000000000002,0.66,0,0,0,1,14.5,0,0,0,0,0.289,99.2,123.52,0.14,990,2.1,152,0.8 +2013,10,18,17,30,14.200000000000001,1,0.18430000000000002,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.29,100,111.93,0.14,990,2,157,0.8 +2013,10,18,18,30,13.8,1.01,0.1706,0.66,0,0,0,0,13.8,0,0,0,0,0.29,100,99.44,0.14,991,1.9000000000000001,161,0.8 +2013,10,18,19,30,14.600000000000001,1.02,0.15660000000000002,0.66,26,130,34,1,13.8,26,130,0,34,0.29,95.07000000000001,86.25,0.14,991,1.9000000000000001,162,1.2000000000000002 +2013,10,18,20,30,16.6,1.03,0.14350000000000002,0.66,80,553,240,1,13.8,80,553,0,240,0.291,83.64,73.14,0.14,992,1.9000000000000001,154,2 +2013,10,18,21,30,19,1.05,0.1335,0.66,104,749,481,1,13.5,104,749,0,481,0.291,70.66,59.84,0.14,992,1.8,144,2.4000000000000004 +2013,10,18,22,30,21.400000000000002,1.08,0.1232,0.66,117,850,700,1,12.9,117,850,0,700,0.29,58.26,46.68,0.14,992,1.9000000000000001,137,2.4000000000000004 +2013,10,18,23,30,22.5,1.1,0.114,0.66,123,908,875,0,12.200000000000001,123,908,0,875,0.29,52.02,34.04,0.14,992,1.9000000000000001,135,2.3000000000000003 +2013,10,19,0,30,25,1.07,0.094,0.66,118,950,992,1,11.600000000000001,118,950,0,992,0.289,43.18,23.06,0.14,991,1.9000000000000001,128,2.1 +2013,10,19,1,30,26.1,1.08,0.0845,0.66,115,966,1037,1,11.100000000000001,115,966,0,1037,0.289,39.1,17.400000000000002,0.14,990,1.9000000000000001,123,2.1 +2013,10,19,2,30,26.700000000000003,1.09,0.0795,0.66,111,964,1006,1,10.700000000000001,111,964,0,1006,0.289,36.72,21.740000000000002,0.14,989,1.9000000000000001,119,2.2 +2013,10,19,3,30,26.8,1.25,0.1051,0.66,118,920,896,1,10.5,118,920,0,896,0.28800000000000003,35.95,32.26,0.14,988,2,116,2.4000000000000004 +2013,10,19,4,30,26.400000000000002,1.25,0.1068,0.66,110,874,731,3,10.4,173,27,0,193,0.28800000000000003,36.74,44.75,0.14,988,2,115,2.6 +2013,10,19,5,30,25.400000000000002,1.23,0.10940000000000001,0.66,97,791,518,1,10.600000000000001,97,791,0,518,0.28700000000000003,39.410000000000004,57.86,0.14,988,2,115,2.8000000000000003 +2013,10,19,6,30,24,1.2,0.11280000000000001,0.66,77,630,280,1,11,77,630,0,280,0.28700000000000003,43.88,71.14,0.14,988,2.1,115,2.6 +2013,10,19,7,30,22,1.17,0.109,0.66,34,278,61,1,11.700000000000001,34,278,0,61,0.28600000000000003,52.17,84.31,0.14,989,2.1,114,2 +2013,10,19,8,30,20.200000000000003,1.1500000000000001,0.098,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.28600000000000003,64.1,97.47,0.14,990,2.2,115,1.5 +2013,10,19,9,30,19,1.12,0.0882,0.66,0,0,0,0,14,0,0,0,0,0.28500000000000003,72.81,110.02,0.14,990,2.2,119,1.4000000000000001 +2013,10,19,10,30,18.1,1.1,0.0819,0.66,0,0,0,0,14.8,0,0,0,0,0.28500000000000003,80.92,121.73,0.14,991,2.2,125,1.2000000000000002 +2013,10,19,11,30,17.5,1.1,0.077,0.66,0,0,0,0,15.3,0,0,0,0,0.28500000000000003,86.74,131.92000000000002,0.14,991,2.2,131,0.9 +2013,10,19,12,30,17.1,1.11,0.0755,0.66,0,0,0,0,15.5,0,0,0,0,0.28500000000000003,90.48,139.4,0.14,991,2.2,136,0.8 +2013,10,19,13,30,16.8,1.1300000000000001,0.0751,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.28400000000000003,92.91,142.48,0.14,990,2.2,139,0.7000000000000001 +2013,10,19,14,30,16.6,1.1400000000000001,0.0721,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.28300000000000003,94.29,140.12,0.14,989,2.2,141,0.7000000000000001 +2013,10,19,15,30,16.400000000000002,1.16,0.0757,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.28300000000000003,95.63,133.14000000000001,0.14,989,2.2,139,0.6000000000000001 +2013,10,19,16,30,16.2,1.17,0.0761,0.66,0,0,0,1,15.700000000000001,0,0,0,0,0.28200000000000003,96.98,123.24000000000001,0.14,989,2.3000000000000003,135,0.6000000000000001 +2013,10,19,17,30,16,1.18,0.0712,0.66,0,0,0,1,15.700000000000001,0,0,0,0,0.28200000000000003,98.27,111.69,0.14,989,2.3000000000000003,133,0.6000000000000001 +2013,10,19,18,30,15.9,1.19,0.0724,0.66,0,0,0,3,15.700000000000001,0,0,0,0,0.281,98.75,99.22,0.14,989,2.3000000000000003,131,0.6000000000000001 +2013,10,19,19,30,16.8,1.2,0.07100000000000001,0.66,23,254,41,1,15.700000000000001,23,254,0,41,0.28,93.31,86.05,0.14,990,2.3000000000000003,124,1 +2013,10,19,20,30,18.7,1.2,0.06520000000000001,0.66,60,662,254,1,15.8,60,662,0,254,0.28,83.18,72.95,0.14,990,2.3000000000000003,113,1.6 +2013,10,19,21,30,20.8,1.25,0.058300000000000005,0.66,75,827,493,1,15.4,75,827,0,493,0.28,71.24,59.65,0.14,990,2.3000000000000003,100,1.8 +2013,10,19,22,30,22.8,1.28,0.0531,0.66,84,910,711,0,14.9,84,910,0,711,0.279,60.9,46.47,0.14,990,2.3000000000000003,92,1.8 +2013,10,19,23,30,23.700000000000003,1.29,0.0507,0.66,90,955,884,1,14.600000000000001,90,955,0,884,0.279,56.800000000000004,33.8,0.14,990,2.3000000000000003,89,1.8 +2013,10,20,0,30,25.700000000000003,1.07,0.1466,0.66,146,899,975,1,14.5,146,899,0,975,0.278,50.160000000000004,22.76,0.14,989,2.4000000000000004,85,2 +2013,10,20,1,30,26.5,1.09,0.1325,0.66,141,919,1020,1,14.4,141,919,0,1020,0.278,47.46,17.04,0.14,988,2.4000000000000004,84,2.1 +2013,10,20,2,30,26.900000000000002,1.12,0.1211,0.66,133,922,991,1,14.3,133,922,0,991,0.277,45.96,21.48,0.14,987,2.4000000000000004,82,2.2 +2013,10,20,3,30,26.900000000000002,1.05,0.07590000000000001,0.66,106,934,897,0,14.100000000000001,106,934,0,897,0.278,45.32,32.08,0.14,986,2.4000000000000004,80,2.3000000000000003 +2013,10,20,4,30,26.3,1.08,0.07400000000000001,0.66,97,892,732,0,14,97,892,0,732,0.278,46.65,44.61,0.14,985,2.5,78,2.4000000000000004 +2013,10,20,5,30,25.3,1.09,0.0731,0.66,84,819,521,0,14,84,819,0,521,0.279,49.52,57.74,0.14,985,2.5,76,2.5 +2013,10,20,6,30,23.8,1.1,0.0772,0.66,67,669,285,0,14.200000000000001,67,669,0,285,0.279,54.910000000000004,71.03,0.14,986,2.5,73,2.5 +2013,10,20,7,30,21.900000000000002,1.11,0.0757,0.66,32,326,65,0,14.600000000000001,32,326,0,65,0.279,63.31,84.19,0.14,987,2.5,69,2 +2013,10,20,8,30,20.3,1.12,0.0745,0.66,0,0,0,0,15.3,0,0,0,0,0.279,73.16,97.33,0.14,987,2.5,65,1.6 +2013,10,20,9,30,19.3,1.11,0.0742,0.66,0,0,0,0,15.8,0,0,0,0,0.278,80.44,109.86,0.14,988,2.4000000000000004,62,1.3 +2013,10,20,10,30,18.6,1.1,0.07250000000000001,0.66,0,0,0,0,16.2,0,0,0,0,0.276,85.95,121.53,0.14,988,2.4000000000000004,59,1 +2013,10,20,11,30,18.2,1.08,0.07150000000000001,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.275,89.22,131.67000000000002,0.14,988,2.3000000000000003,56,0.8 +2013,10,20,12,30,17.900000000000002,1.08,0.0742,0.66,0,0,0,0,16.5,0,0,0,0,0.274,91.24,139.08,0.14,988,2.3000000000000003,52,0.7000000000000001 +2013,10,20,13,30,17.6,1.09,0.075,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.274,92.79,142.12,0.14,988,2.3000000000000003,47,0.6000000000000001 +2013,10,20,14,30,17.3,1.11,0.07200000000000001,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.274,94.21000000000001,139.77,0.14,987,2.3000000000000003,42,0.6000000000000001 +2013,10,20,15,30,17,1.1400000000000001,0.0748,0.66,0,0,0,0,16.3,0,0,0,0,0.274,95.84,132.83,0.14,987,2.3000000000000003,38,0.5 +2013,10,20,16,30,16.7,1.17,0.0758,0.66,0,0,0,0,16.3,0,0,0,0,0.273,97.45,122.97,0.14,986,2.3000000000000003,33,0.5 +2013,10,20,17,30,16.5,1.19,0.0742,0.66,0,0,0,0,16.3,0,0,0,0,0.273,98.66,111.45,0.14,987,2.3000000000000003,27,0.6000000000000001 +2013,10,20,18,30,16.3,1.23,0.0781,0.66,0,0,0,0,16.3,0,0,0,0,0.272,99.77,99,0.14,987,2.3000000000000003,20,0.6000000000000001 +2013,10,20,19,30,17.2,1.26,0.08070000000000001,0.66,25,251,43,1,16.3,25,251,0,43,0.272,94.25,85.86,0.14,988,2.3000000000000003,15,0.8 +2013,10,20,20,30,19.5,1.29,0.0789,0.66,63,647,255,1,16.3,63,647,0,255,0.271,81.68,72.75,0.14,988,2.3000000000000003,18,1.2000000000000002 +2013,10,20,21,30,21.900000000000002,1.32,0.07390000000000001,0.66,81,812,494,1,15.8,81,812,0,494,0.271,68.22,59.45,0.14,988,2.3000000000000003,24,1.3 +2013,10,20,22,30,24,1.33,0.0692,0.66,92,899,713,1,15.100000000000001,92,899,0,713,0.27,57.52,46.26,0.14,988,2.2,33,1.3 +2013,10,20,23,30,25,1.32,0.0664,0.66,98,946,886,1,14.600000000000001,98,946,0,886,0.269,52.46,33.57,0.14,988,2.2,39,1.2000000000000002 +2013,10,21,0,30,27.400000000000002,1.3,0.0813,0.66,111,957,995,1,14.200000000000001,111,957,0,995,0.269,44.46,22.46,0.15,987,2.2,53,1.3 +2013,10,21,1,30,28.6,1.31,0.0789,0.66,111,970,1040,1,13.8,111,970,0,1040,0.268,40.34,16.68,0.15,986,2.1,58,1.5 +2013,10,21,2,30,29.200000000000003,1.31,0.0763,0.66,108,966,1009,1,13.4,108,966,0,1009,0.268,38.04,21.21,0.15,985,2.1,60,1.7000000000000002 +2013,10,21,3,30,29.3,1.3,0.0755,0.66,104,945,906,1,13.200000000000001,104,945,0,906,0.267,37.12,31.91,0.15,984,2.1,61,1.9000000000000001 +2013,10,21,4,30,28.8,1.28,0.0737,0.66,95,906,742,1,13,95,906,0,742,0.267,37.92,44.480000000000004,0.15,983,2.1,61,2.1 +2013,10,21,5,30,27.8,1.27,0.07200000000000001,0.66,83,834,530,0,13.100000000000001,83,834,0,530,0.267,40.28,57.620000000000005,0.15,983,2.1,60,2.2 +2013,10,21,6,30,26.200000000000003,1.24,0.07010000000000001,0.66,64,695,292,0,13.3,64,695,0,292,0.267,44.910000000000004,70.91,0.15,984,2.1,58,2.3000000000000003 +2013,10,21,7,30,23.900000000000002,1.23,0.0673,0.66,31,361,68,0,13.9,31,361,0,68,0.268,53.65,84.06,0.15,984,2.1,54,1.9000000000000001 +2013,10,21,8,30,21.700000000000003,1.22,0.0648,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.268,66.49,97.19,0.15,985,2,51,1.5 +2013,10,21,9,30,20.3,1.21,0.0637,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.269,75,109.69,0.15,986,2,48,1.4000000000000001 +2013,10,21,10,30,19.3,1.2,0.06330000000000001,0.66,0,0,0,0,16,0,0,0,0,0.269,81.38,121.32000000000001,0.15,986,2,44,1.1 +2013,10,21,11,30,18.5,1.19,0.0634,0.66,0,0,0,0,16.2,0,0,0,0,0.269,86.32000000000001,131.41,0.15,986,2,39,0.8 +2013,10,21,12,30,17.900000000000002,1.17,0.064,0.66,0,0,0,0,16.2,0,0,0,0,0.269,89.75,138.77,0.15,986,2,36,0.7000000000000001 +2013,10,21,13,30,17.3,1.16,0.06470000000000001,0.66,0,0,0,0,16.1,0,0,0,0,0.269,92.95,141.77,0.15,986,2,35,0.6000000000000001 +2013,10,21,14,30,16.8,1.1400000000000001,0.0651,0.66,0,0,0,0,16.1,0,0,0,0,0.269,95.45,139.42000000000002,0.15,985,2,34,0.6000000000000001 +2013,10,21,15,30,16.3,1.12,0.06620000000000001,0.66,0,0,0,0,16,0,0,0,0,0.269,98.33,132.52,0.15,985,2,29,0.6000000000000001 +2013,10,21,16,30,15.9,1.11,0.0668,0.66,0,0,0,0,15.9,0,0,0,0,0.271,100,122.7,0.15,985,1.9000000000000001,20,0.6000000000000001 +2013,10,21,17,30,15.5,1.1,0.0665,0.66,0,0,0,0,15.5,0,0,0,0,0.273,100,111.21000000000001,0.15,985,1.9000000000000001,8,0.6000000000000001 +2013,10,21,18,30,15.3,1.12,0.0671,0.66,0,0,0,0,15.3,0,0,0,0,0.275,100,98.79,0.15,985,1.8,173,0.6000000000000001 +2013,10,21,19,30,16.3,1.1300000000000001,0.067,0.66,25,288,47,0,15.9,25,288,0,47,0.276,97.22,85.67,0.15,986,1.8,342,0.9 +2013,10,21,20,30,18.8,1.16,0.06670000000000001,0.66,61,680,265,0,15.8,61,680,0,265,0.276,82.77,72.57000000000001,0.15,987,1.8,348,1.2000000000000002 +2013,10,21,21,30,21.5,1.22,0.06430000000000001,0.66,79,840,508,0,15.200000000000001,79,840,0,508,0.276,67.5,59.27,0.15,987,1.7000000000000002,186,1.3 +2013,10,21,22,30,23.900000000000002,1.28,0.0609,0.66,89,922,729,1,14.4,89,922,0,729,0.275,55.25,46.06,0.15,986,1.7000000000000002,22,1.3 +2013,10,21,23,30,25,1.33,0.057600000000000005,0.66,94,968,903,0,13.8,94,968,0,903,0.275,49.81,33.34,0.15,986,1.7000000000000002,29,1.2000000000000002 +2013,10,22,0,30,27.8,1.33,0.0606,0.66,100,990,1018,0,13.200000000000001,100,990,0,1018,0.274,40.550000000000004,22.16,0.15,985,1.6,43,1.5 +2013,10,22,1,30,29.200000000000003,1.35,0.058100000000000006,0.66,100,1000,1060,0,12.4,100,1000,0,1060,0.274,35.49,16.32,0.15,984,1.6,47,1.7000000000000002 +2013,10,22,2,30,30,1.36,0.0557,0.66,98,999,1031,0,11.5,98,999,0,1031,0.274,31.98,20.95,0.15,983,1.5,47,1.9000000000000001 +2013,10,22,3,30,30.3,1.3,0.06330000000000001,0.66,98,973,926,0,10.8,98,973,0,926,0.274,29.95,31.740000000000002,0.15,982,1.5,46,2 +2013,10,22,4,30,30,1.3,0.0618,0.66,90,935,759,0,10.200000000000001,90,935,0,759,0.274,29.42,44.34,0.15,981,1.5,46,2.1 +2013,10,22,5,30,29.200000000000003,1.29,0.060500000000000005,0.66,79,866,544,0,10,79,866,0,544,0.274,30.29,57.51,0.15,981,1.5,46,2.2 +2013,10,22,6,30,27.5,1.28,0.059500000000000004,0.66,62,731,302,0,10.200000000000001,62,731,0,302,0.275,33.8,70.8,0.15,982,1.5,46,2.1 +2013,10,22,7,30,24.8,1.26,0.059000000000000004,0.66,31,399,73,0,11.600000000000001,31,399,0,73,0.275,43.72,83.94,0.15,982,1.5,47,1.7000000000000002 +2013,10,22,8,30,22.200000000000003,1.25,0.0587,0.66,0,0,0,0,13.5,0,0,0,0,0.276,57.69,97.05,0.15,983,1.5,46,1.4000000000000001 +2013,10,22,9,30,20.8,1.23,0.0592,0.66,0,0,0,0,14.700000000000001,0,0,0,0,0.276,67.92,109.52,0.15,984,1.5,41,1.3 +2013,10,22,10,30,19.700000000000003,1.2,0.060200000000000004,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.276,77.07000000000001,121.11,0.15,984,1.6,33,1.2000000000000002 +2013,10,22,11,30,18.900000000000002,1.16,0.0618,0.66,0,0,0,0,16.2,0,0,0,0,0.276,84.09,131.15,0.15,984,1.6,24,1 +2013,10,22,12,30,18.2,1.1300000000000001,0.06380000000000001,0.66,0,0,0,0,16.5,0,0,0,0,0.275,89.60000000000001,138.45000000000002,0.15,984,1.6,15,0.9 +2013,10,22,13,30,17.7,1.1,0.06520000000000001,0.66,0,0,0,0,16.6,0,0,0,0,0.275,93.2,141.41,0.15,984,1.7000000000000002,8,0.8 +2013,10,22,14,30,17.3,1.08,0.0661,0.66,0,0,0,3,16.6,0,0,0,0,0.275,95.60000000000001,139.07,0.15,983,1.6,4,0.8 +2013,10,22,15,30,16.900000000000002,1.09,0.06810000000000001,0.66,0,0,0,3,16.6,0,0,0,0,0.275,98.16,132.21,0.15,983,1.6,3,0.8 +2013,10,22,16,30,16.7,1.11,0.0711,0.66,0,0,0,3,16.6,0,0,0,0,0.274,99.49000000000001,122.43,0.15,982,1.6,2,0.8 +2013,10,22,17,30,16.6,1.12,0.0716,0.66,0,0,0,3,16.6,0,0,0,0,0.274,100,110.98,0.15,983,1.6,1,0.8 +2013,10,22,18,30,16.8,1.16,0.07780000000000001,0.66,0,0,0,3,16.5,0,0,0,0,0.274,98.39,98.58,0.15,983,1.6,179,0.9 +2013,10,22,19,30,17.7,1.19,0.0781,0.66,27,287,50,3,16.5,20,0,0,20,0.273,92.56,85.48,0.15,983,1.5,356,1.4000000000000001 +2013,10,22,20,30,19.6,1.23,0.0713,0.66,63,687,271,3,16.400000000000002,142,58,0,160,0.273,81.67,72.38,0.15,984,1.5,353,2.1 +2013,10,22,21,30,21.900000000000002,1.3,0.0627,0.66,79,852,516,3,15.700000000000001,79,852,5,516,0.272,68.06,59.08,0.15,984,1.5,350,2.2 +2013,10,22,22,30,24.6,1.35,0.057100000000000005,0.66,87,934,738,0,14.600000000000001,87,934,0,738,0.272,53.730000000000004,45.87,0.15,983,1.5,347,2.2 +2013,10,22,23,30,26,1.3800000000000001,0.054200000000000005,0.66,93,978,912,0,13.4,93,978,0,912,0.272,45.78,33.11,0.15,983,1.5,345,2.1 +2013,10,23,0,30,29.5,1.45,0.051500000000000004,0.66,95,999,1023,0,12.200000000000001,95,999,0,1023,0.271,34.53,21.87,0.15,982,1.6,336,1.9000000000000001 +2013,10,23,1,30,31.200000000000003,1.44,0.0519,0.66,97,1004,1062,0,11.200000000000001,97,1004,0,1062,0.27,29.240000000000002,15.97,0.15,981,1.7000000000000002,331,1.8 +2013,10,23,2,30,32.4,1.41,0.0538,0.66,97,994,1026,0,10.5,97,994,0,1026,0.269,26.080000000000002,20.69,0.15,980,1.8,331,1.7000000000000002 +2013,10,23,3,30,32.800000000000004,1.27,0.060500000000000005,0.66,97,963,917,0,10.200000000000001,97,963,0,917,0.269,25.01,31.57,0.15,979,2,334,1.7000000000000002 +2013,10,23,4,30,32.7,1.25,0.06420000000000001,0.66,91,917,749,0,10.3,91,917,0,749,0.269,25.310000000000002,44.21,0.15,978,2.1,338,1.6 +2013,10,23,5,30,32.1,1.22,0.0682,0.66,82,836,532,3,10.700000000000001,82,836,5,532,0.269,26.830000000000002,57.39,0.15,978,2.3000000000000003,345,1.6 +2013,10,23,6,30,30.5,1.21,0.0723,0.66,65,689,293,3,11.100000000000001,65,689,5,293,0.269,30.3,70.68,0.15,978,2.4000000000000004,182,1.6 +2013,10,23,7,30,27.6,1.2,0.0763,0.66,33,346,70,3,13.100000000000001,44,134,0,59,0.269,40.86,83.82000000000001,0.15,978,2.5,20,1.5 +2013,10,23,8,30,24.8,1.21,0.0804,0.66,0,0,0,3,15.200000000000001,0,0,0,0,0.269,55.230000000000004,96.9,0.15,979,2.6,24,1.5 +2013,10,23,9,30,23.200000000000003,1.21,0.08460000000000001,0.66,0,0,0,3,15.4,0,0,0,0,0.268,61.53,109.35000000000001,0.15,980,2.7,21,1.5 +2013,10,23,10,30,22.3,1.21,0.0882,0.66,0,0,0,3,15.5,0,0,0,0,0.268,65.41,120.91,0.15,980,2.8000000000000003,15,1.3 +2013,10,23,11,30,21.700000000000003,1.19,0.09190000000000001,0.66,0,0,0,3,15.5,0,0,0,0,0.267,68.04,130.89000000000001,0.15,980,2.8000000000000003,184,1 +2013,10,23,12,30,21,1.16,0.0946,0.66,0,0,0,3,15.700000000000001,0,0,0,0,0.266,71.60000000000001,138.14000000000001,0.15,980,2.9000000000000004,346,0.8 +2013,10,23,13,30,20.3,1.1400000000000001,0.09620000000000001,0.66,0,0,0,3,15.600000000000001,0,0,0,0,0.265,74.42,141.06,0.15,980,3,332,0.7000000000000001 +2013,10,23,14,30,19.6,1.12,0.09820000000000001,0.66,0,0,0,3,15.4,0,0,0,0,0.265,76.88,138.73,0.15,980,3.1,332,0.8 +2013,10,23,15,30,19.1,1.09,0.1019,0.66,0,0,0,3,15.3,0,0,0,0,0.265,78.57000000000001,131.9,0.15,980,3.1,336,0.8 +2013,10,23,16,30,18.7,1.06,0.1068,0.66,0,0,0,3,15.200000000000001,0,0,0,0,0.266,79.88,122.16,0.15,979,3.2,335,0.8 +2013,10,23,17,30,18.3,1.02,0.1126,0.66,0,0,0,3,15.200000000000001,0,0,0,0,0.266,82.19,110.75,0.15,980,3.3000000000000003,330,0.8 +2013,10,23,18,30,18.1,0.99,0.1193,0.66,0,0,0,0,15.4,0,0,0,0,0.267,84.07000000000001,98.38,0.15,980,3.4000000000000004,324,0.8 +2013,10,23,19,30,19,0.96,0.1265,0.66,30,183,45,3,15.600000000000001,32,106,0,41,0.268,80.73,85.3,0.15,981,3.4000000000000004,315,1.3 +2013,10,23,20,30,21.3,0.9500000000000001,0.1333,0.66,79,553,248,3,15.8,156,107,0,189,0.269,71.08,72.2,0.15,981,3.5,302,2 +2013,10,23,21,30,24.1,0.93,0.1393,0.66,108,718,479,3,15.600000000000001,296,84,0,340,0.269,59.11,58.9,0.15,982,3.5,282,2.3000000000000003 +2013,10,23,22,30,26.900000000000002,0.91,0.1411,0.66,126,807,690,3,15,434,82,0,491,0.269,48.01,45.68,0.15,982,3.5,261,2.2 +2013,10,23,23,30,28.1,0.89,0.138,0.66,136,861,859,3,14.3,550,89,0,625,0.269,42.96,32.89,0.15,982,3.5,251,2.1 +2013,10,24,0,30,30,0.92,0.1119,0.66,129,908,973,3,14,426,22,0,447,0.269,37.68,21.580000000000002,0.15,981,3.5,241,2.2 +2013,10,24,1,30,30.6,0.91,0.11270000000000001,0.66,131,915,1012,3,13.9,324,27,0,350,0.268,36.11,15.620000000000001,0.15,980,3.6,242,2.4000000000000004 +2013,10,24,2,30,30.6,0.92,0.1187,0.66,132,904,979,3,13.8,237,31,0,266,0.268,35.96,20.44,0.15,980,3.6,247,2.6 +2013,10,24,3,30,30,0.9400000000000001,0.12990000000000002,0.66,133,870,876,3,13.8,168,29,0,193,0.268,37.11,31.400000000000002,0.15,979,3.7,250,2.7 +2013,10,24,4,30,28.700000000000003,0.9500000000000001,0.14700000000000002,0.66,130,807,710,3,13.700000000000001,118,24,0,136,0.269,39.800000000000004,44.08,0.15,980,3.8000000000000003,250,2.8000000000000003 +2013,10,24,5,30,27.200000000000003,0.9500000000000001,0.16440000000000002,0.66,120,705,501,3,13.4,81,17,0,90,0.27,42.67,57.27,0.15,980,3.7,249,2.6 +2013,10,24,6,30,25.900000000000002,0.93,0.1623,0.66,92,546,274,3,13,51,5,0,53,0.271,44.71,70.56,0.15,981,3.5,251,2 +2013,10,24,7,30,24.400000000000002,0.92,0.1438,0.66,39,228,64,3,12.3,17,0,0,17,0.272,46.69,83.69,0.15,981,3.2,255,1.2000000000000002 +2013,10,24,8,30,22.900000000000002,0.9400000000000001,0.1228,0.66,0,0,0,3,13,0,0,0,0,0.273,53.52,96.76,0.15,982,2.8000000000000003,262,0.6000000000000001 +2013,10,24,9,30,21.6,0.97,0.10690000000000001,0.66,0,0,0,3,13.4,0,0,0,0,0.275,59.63,109.18,0.15,982,2.3000000000000003,265,0.6000000000000001 +2013,10,24,10,30,20.5,1.01,0.0959,0.66,0,0,0,3,12.700000000000001,0,0,0,0,0.276,60.75,120.7,0.15,983,1.8,260,0.7000000000000001 +2013,10,24,11,30,19.5,1.05,0.0847,0.66,0,0,0,3,11.5,0,0,0,0,0.277,59.86,130.64000000000001,0.15,983,1.5,250,0.7000000000000001 +2013,10,24,12,30,18.5,1.09,0.0794,0.66,0,0,0,3,10.200000000000001,0,0,0,0,0.278,58.36,137.83,0.15,983,1.3,236,0.8 +2013,10,24,13,30,17.7,1.11,0.0814,0.66,0,0,0,3,8.9,0,0,0,0,0.279,56.2,140.72,0.15,983,1.3,217,0.8 +2013,10,24,14,30,17.2,1.08,0.08650000000000001,0.66,0,0,0,3,8.1,0,0,0,0,0.28,55.11,138.39000000000001,0.15,984,1.5,189,0.9 +2013,10,24,15,30,17.2,0.98,0.1051,0.66,0,0,0,3,9.3,0,0,0,0,0.279,59.77,131.6,0.15,984,1.7000000000000002,167,1.3 +2013,10,24,16,30,17.400000000000002,0.85,0.13140000000000002,0.66,0,0,0,3,11.4,0,0,0,0,0.279,68.07000000000001,121.9,0.15,984,1.8,158,1.6 +2013,10,24,17,30,17.6,0.73,0.16060000000000002,0.66,0,0,0,3,14,0,0,0,0,0.278,79.54,110.52,0.15,985,1.8,153,2 +2013,10,24,18,30,17.6,0.66,0.18760000000000002,0.66,0,0,0,3,15.100000000000001,0,0,0,0,0.276,85.25,98.17,0.15,986,1.9000000000000001,150,2.2 +2013,10,24,19,30,17.900000000000002,0.59,0.19990000000000002,0.66,37,107,46,3,15.3,9,0,0,9,0.274,84.77,85.12,0.15,987,1.9000000000000001,146,2.5 +2013,10,24,20,30,18.6,0.54,0.2078,0.66,107,472,253,3,15.200000000000001,43,0,0,43,0.272,80.74,72.03,0.15,988,1.9000000000000001,140,2.9000000000000004 +2013,10,24,21,30,19.8,0.54,0.2189,0.66,148,654,487,3,14.9,92,19,0,101,0.27,73.35000000000001,58.730000000000004,0.15,988,1.9000000000000001,132,3.1 +2013,10,24,22,30,21.3,0.54,0.2217,0.66,173,756,703,3,14.4,130,25,0,148,0.268,64.88,45.5,0.15,989,1.9000000000000001,124,3 +2013,10,24,23,30,22.1,0.55,0.2165,0.66,185,818,874,3,14.100000000000001,145,27,0,168,0.267,60.39,32.68,0.15,989,2,120,2.9000000000000004 +2013,10,25,0,30,24.200000000000003,0.53,0.2541,0.66,213,822,978,3,13.8,156,28,0,183,0.266,52.11,21.31,0.15,988,2,112,2.6 +2013,10,25,1,30,25.200000000000003,0.55,0.2543,0.66,216,833,1020,3,13.4,156,28,0,183,0.265,47.870000000000005,15.27,0.15,987,2,107,2.3000000000000003 +2013,10,25,2,30,25.6,0.5700000000000001,0.2477,0.66,209,828,986,3,13,151,27,0,177,0.265,45.480000000000004,20.19,0.15,987,2.1,102,2.2 +2013,10,25,3,30,25.5,0.64,0.21380000000000002,0.66,183,827,890,3,12.5,153,28,0,176,0.266,44.34,31.23,0.15,986,2.1,95,2.1 +2013,10,25,4,30,24.900000000000002,0.66,0.2277,0.66,174,759,721,3,12.200000000000001,151,27,0,170,0.267,45.17,43.95,0.15,986,2.2,86,2.3000000000000003 +2013,10,25,5,30,23.900000000000002,0.66,0.2305,0.66,153,658,510,3,12.200000000000001,113,22,0,125,0.267,47.800000000000004,57.15,0.15,986,2.2,79,2.6 +2013,10,25,6,30,22.5,0.67,0.22510000000000002,0.66,114,487,277,3,12.4,65,10,0,69,0.268,52.9,70.44,0.15,987,2.2,74,2.8000000000000003 +2013,10,25,7,30,20.700000000000003,0.71,0.2038,0.66,47,167,66,3,12.8,19,0,0,19,0.269,60.370000000000005,83.56,0.15,987,2.2,70,2.6 +2013,10,25,8,30,19,0.73,0.19,0.66,0,0,0,3,13,0,0,0,0,0.271,68.33,96.61,0.15,988,2.2,69,2.1 +2013,10,25,9,30,18.1,0.73,0.1827,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.271,73.12,109,0.15,988,2.2,69,1.6 +2013,10,25,10,30,17.5,0.73,0.1779,0.66,0,0,0,0,13.4,0,0,0,0,0.272,76.65,120.49000000000001,0.15,989,2.1,71,1.1 +2013,10,25,11,30,17,0.72,0.1741,0.66,0,0,0,3,13.5,0,0,0,0,0.272,79.65,130.38,0.15,989,2.1,74,0.7000000000000001 +2013,10,25,12,30,16.6,0.72,0.1756,0.66,0,0,0,3,13.5,0,0,0,0,0.271,82.09,137.52,0.15,988,2.1,76,0.6000000000000001 +2013,10,25,13,30,16.3,0.71,0.18180000000000002,0.66,0,0,0,3,13.700000000000001,0,0,0,0,0.271,84.38,140.37,0.15,988,2.1,74,0.6000000000000001 +2013,10,25,14,30,16.2,0.7000000000000001,0.1922,0.66,0,0,0,3,13.8,0,0,0,0,0.271,85.60000000000001,138.06,0.15,988,2.1,67,0.6000000000000001 +2013,10,25,15,30,16.2,0.7000000000000001,0.20570000000000002,0.66,0,0,0,3,13.9,0,0,0,0,0.271,86.52,131.31,0.15,987,2.1,64,0.6000000000000001 +2013,10,25,16,30,16.1,0.6900000000000001,0.2209,0.66,0,0,0,3,14.200000000000001,0,0,0,0,0.272,88.33,121.65,0.15,987,2.1,64,0.6000000000000001 +2013,10,25,17,30,16.1,0.68,0.2349,0.66,0,0,0,3,14.4,0,0,0,0,0.272,89.57000000000001,110.3,0.15,987,2.1,65,0.6000000000000001 +2013,10,25,18,30,16.3,0.68,0.2472,0.66,0,0,0,3,14.600000000000001,0,0,0,0,0.271,89.56,97.98,0.15,988,2.1,62,0.5 +2013,10,25,19,30,17.1,0.68,0.2571,0.66,38,83,46,3,14.700000000000001,16,0,0,16,0.271,86.04,84.94,0.15,988,2.1,44,0.5 +2013,10,25,20,30,19.1,0.6900000000000001,0.25780000000000003,0.66,116,430,250,3,15,57,6,0,58,0.271,76.92,71.86,0.15,989,2.1,191,0.7000000000000001 +2013,10,25,21,30,21.3,0.75,0.2333,0.66,149,648,487,3,14.8,74,14,0,82,0.271,66.63,58.56,0.15,989,2.1,337,0.8 +2013,10,25,22,30,23.400000000000002,0.81,0.20950000000000002,0.66,162,776,708,3,14.4,106,22,0,121,0.271,57.07,45.32,0.15,989,2,317,1 +2013,10,25,23,30,24.5,0.9,0.1565,0.66,150,877,890,3,13.5,143,27,0,166,0.271,50.44,32.47,0.15,989,2,310,1.1 +2013,10,26,0,30,27.3,0.9500000000000001,0.1206,0.66,137,935,1011,3,12,294,28,0,320,0.271,38.67,21.03,0.15,987,1.9000000000000001,290,1.4000000000000001 +2013,10,26,1,30,28.700000000000003,0.96,0.11960000000000001,0.66,139,948,1055,3,10.4,446,22,0,467,0.271,32.04,14.93,0.15,986,1.8,280,1.6 +2013,10,26,2,30,29.700000000000003,0.98,0.1187,0.66,136,942,1021,3,9.1,568,40,0,605,0.272,27.63,19.94,0.15,985,1.8,271,1.9000000000000001 +2013,10,26,3,30,30.1,1.04,0.12000000000000001,0.66,130,924,922,0,7.6000000000000005,130,924,0,922,0.272,24.42,31.07,0.15,984,1.6,262,2.1 +2013,10,26,4,30,30,1.1,0.1071,0.66,114,898,762,0,5.5,114,898,0,762,0.273,21.37,43.82,0.15,983,1.4000000000000001,254,2.2 +2013,10,26,5,30,29.3,1.16,0.0903,0.66,93,849,555,0,3.2,93,849,0,555,0.274,18.92,57.03,0.15,983,1.1,247,2.2 +2013,10,26,6,30,27.700000000000003,1.22,0.0777,0.66,69,729,314,0,1.4000000000000001,69,729,0,314,0.274,18.29,70.32000000000001,0.15,983,1,243,1.8 +2013,10,26,7,30,24.6,1.25,0.07010000000000001,0.66,34,418,82,0,2.6,34,418,0,82,0.275,23.77,83.44,0.15,984,0.9,258,0.9 +2013,10,26,8,30,21.6,1.26,0.0666,0.66,0,0,0,0,5.6000000000000005,0,0,0,0,0.275,35.32,96.46000000000001,0.15,985,0.9,279,0.5 +2013,10,26,9,30,19.900000000000002,1.25,0.0666,0.66,0,0,0,0,6.7,0,0,0,0,0.275,42.19,108.83,0.15,986,0.9,283,0.5 +2013,10,26,10,30,18.8,1.25,0.0694,0.66,0,0,0,0,7.5,0,0,0,0,0.274,47.93,120.28,0.15,986,0.9,275,0.5 +2013,10,26,11,30,18,1.24,0.0731,0.66,0,0,0,0,8.200000000000001,0,0,0,0,0.273,52.56,130.12,0.15,987,1,253,0.4 +2013,10,26,12,30,17.2,1.23,0.077,0.66,0,0,0,0,8.5,0,0,0,0,0.273,56.65,137.21,0.15,987,1.1,226,0.4 +2013,10,26,13,30,16.7,1.21,0.0806,0.66,0,0,0,0,8.700000000000001,0,0,0,0,0.273,59.230000000000004,140.03,0.15,986,1.2000000000000002,202,0.4 +2013,10,26,14,30,16.2,1.19,0.08410000000000001,0.66,0,0,0,0,9,0,0,0,0,0.273,62.58,137.73,0.15,986,1.3,178,0.5 +2013,10,26,15,30,15.700000000000001,1.16,0.0893,0.66,0,0,0,3,9.9,0,0,0,0,0.272,68.41,131.01,0.15,986,1.4000000000000001,160,0.7000000000000001 +2013,10,26,16,30,15.200000000000001,1.12,0.097,0.66,0,0,0,3,11.3,0,0,0,0,0.272,77.65,121.39,0.15,986,1.6,152,0.8 +2013,10,26,17,30,15,1.08,0.10700000000000001,0.66,0,0,0,3,12.700000000000001,0,0,0,0,0.271,85.98,110.08,0.15,986,1.7000000000000002,148,0.9 +2013,10,26,18,30,15.200000000000001,1.03,0.1203,0.66,0,0,0,3,14.100000000000001,0,0,0,0,0.271,92.87,97.78,0.15,987,1.9000000000000001,143,1 +2013,10,26,19,30,16.5,1,0.138,0.66,35,212,55,3,15.100000000000001,12,0,0,12,0.27,91.39,84.77,0.15,988,2,138,1.6 +2013,10,26,20,30,18.6,1.02,0.126,0.66,81,604,271,3,15.600000000000001,46,0,0,46,0.27,82.83,71.69,0.15,988,2,129,2.4000000000000004 +2013,10,26,21,30,20.8,1.08,0.10490000000000001,0.66,98,790,512,3,15.4,67,11,0,73,0.27,71.01,58.4,0.15,989,2.1,118,2.7 +2013,10,26,22,30,22.700000000000003,1.1,0.09870000000000001,0.66,109,880,730,3,14.4,85,16,0,96,0.27,59.44,45.15,0.15,989,2.1,110,2.6 +2013,10,26,23,30,23.400000000000002,1.09,0.09920000000000001,0.66,119,925,901,3,13.700000000000001,100,18,0,115,0.271,54.410000000000004,32.27,0.15,989,2.1,106,2.5 +2013,10,27,0,30,24.900000000000002,1.08,0.0994,0.66,124,947,1010,3,13.100000000000001,110,20,0,129,0.271,47.74,20.77,0.15,988,2.2,97,2.2 +2013,10,27,1,30,25.6,1.09,0.1004,0.66,127,954,1050,3,12.5,113,20,0,133,0.271,44.24,14.59,0.15,988,2.2,93,2.1 +2013,10,27,2,30,26,1.08,0.09820000000000001,0.66,124,947,1016,3,12.100000000000001,111,20,0,130,0.271,42.02,19.69,0.15,987,2.3000000000000003,89,2 +2013,10,27,3,30,26.1,1.09,0.0985,0.66,119,925,913,3,11.8,115,22,0,134,0.272,40.83,30.900000000000002,0.15,986,2.3000000000000003,83,2 +2013,10,27,4,30,25.700000000000003,1.1,0.10690000000000001,0.66,114,872,744,3,11.700000000000001,118,24,0,135,0.272,41.53,43.69,0.15,986,2.4000000000000004,78,2.2 +2013,10,27,5,30,24.8,1.1,0.112,0.66,102,788,532,3,11.8,103,21,0,115,0.273,44.15,56.910000000000004,0.15,986,2.4000000000000004,73,2.5 +2013,10,27,6,30,23.5,1.11,0.096,0.66,74,659,298,3,12.100000000000001,48,2,0,49,0.273,48.9,70.2,0.15,986,2.5,70,2.6 +2013,10,27,7,30,21.700000000000003,1.1500000000000001,0.09290000000000001,0.66,37,337,76,3,12.700000000000001,14,0,0,14,0.274,56.49,83.31,0.15,987,2.5,67,2.3000000000000003 +2013,10,27,8,30,20,1.16,0.092,0.66,0,0,0,3,13.3,0,0,0,0,0.275,65.12,96.31,0.15,987,2.4000000000000004,63,1.9000000000000001 +2013,10,27,9,30,19,1.1500000000000001,0.0951,0.66,0,0,0,0,13.8,0,0,0,0,0.275,71.75,108.66,0.15,988,2.4000000000000004,60,1.5 +2013,10,27,10,30,18.3,1.1500000000000001,0.099,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.276,77.02,120.06,0.15,988,2.5,59,1 +2013,10,27,11,30,17.8,1.12,0.1043,0.66,0,0,0,3,14.5,0,0,0,0,0.276,81.13,129.86,0.15,988,2.5,58,0.8 +2013,10,27,12,30,17.5,1.09,0.1129,0.66,0,0,0,3,14.700000000000001,0,0,0,0,0.277,83.9,136.9,0.15,988,2.6,60,0.7000000000000001 +2013,10,27,13,30,17.400000000000002,1.07,0.12040000000000001,0.66,0,0,0,3,14.9,0,0,0,0,0.278,85.26,139.70000000000002,0.15,988,2.6,64,0.6000000000000001 +2013,10,27,14,30,17.2,1.05,0.1252,0.66,0,0,0,3,15,0,0,0,0,0.278,86.87,137.4,0.15,987,2.6,69,0.6000000000000001 +2013,10,27,15,30,17,1.03,0.1311,0.66,0,0,0,3,15.100000000000001,0,0,0,0,0.278,88.49,130.72,0.15,987,2.7,72,0.5 +2013,10,27,16,30,16.900000000000002,1.02,0.1373,0.66,0,0,0,3,15.200000000000001,0,0,0,0,0.279,89.7,121.15,0.15,987,2.7,71,0.5 +2013,10,27,17,30,16.8,1.01,0.1419,0.66,0,0,0,3,15.3,0,0,0,0,0.28,91.07000000000001,109.86,0.15,987,2.7,65,0.6000000000000001 +2013,10,27,18,30,16.8,1.02,0.1491,0.66,0,0,0,3,15.4,0,0,0,0,0.28,91.73,97.59,0.15,988,2.8000000000000003,60,0.6000000000000001 +2013,10,27,19,30,17.8,1.03,0.1559,0.66,36,191,54,3,15.5,15,0,0,15,0.281,86.55,84.60000000000001,0.15,988,2.8000000000000003,50,1 +2013,10,27,20,30,19.6,1.04,0.15080000000000002,0.66,87,558,264,3,15.5,50,3,0,51,0.281,77.38,71.53,0.15,989,2.8000000000000003,35,1.7000000000000002 +2013,10,27,21,30,21.5,1.08,0.1453,0.66,113,734,499,3,14.8,66,11,0,71,0.28200000000000003,65.86,58.24,0.15,989,2.8000000000000003,24,2.1 +2013,10,27,22,30,23.200000000000003,1.11,0.1489,0.66,130,818,709,3,14.3,77,13,0,86,0.28200000000000003,57.24,44.980000000000004,0.15,989,2.9000000000000004,17,2.1 +2013,10,27,23,30,24,1.1300000000000001,0.1468,0.66,140,871,878,3,14,84,13,0,95,0.28300000000000003,53.42,32.08,0.15,989,2.9000000000000004,14,2.1 +2013,10,28,0,30,26,1.19,0.1623,0.66,154,886,984,3,13.5,73,6,0,79,0.28400000000000003,45.96,20.51,0.15,988,3,179,1.9000000000000001 +2013,10,28,1,30,27.1,1.18,0.1539,0.66,153,903,1028,3,12.9,74,6,0,80,0.28500000000000003,41.51,14.25,0.15,987,2.9000000000000004,351,1.8 +2013,10,28,2,30,27.900000000000002,1.16,0.1431,0.66,146,903,997,3,12.3,73,6,0,79,0.28600000000000003,38.07,19.45,0.15,985,2.9000000000000004,347,1.8 +2013,10,28,3,30,28.5,1.28,0.1922,0.66,161,846,889,3,11.9,70,6,0,75,0.28700000000000003,35.9,30.740000000000002,0.15,984,2.8000000000000003,348,1.7000000000000002 +2013,10,28,4,30,28.6,1.26,0.1784,0.66,144,808,730,3,11.8,60,4,0,63,0.28700000000000003,35.26,43.56,0.15,983,2.7,354,1.6 +2013,10,28,5,30,28.200000000000003,1.23,0.17120000000000002,0.66,123,728,522,3,11.700000000000001,57,6,0,61,0.28700000000000003,35.97,56.79,0.15,982,2.7,188,1.7000000000000002 +2013,10,28,6,30,27.1,1.21,0.1685,0.66,94,572,289,3,11.9,60,9,0,63,0.28700000000000003,38.83,70.08,0.15,982,2.7,28,1.9000000000000001 +2013,10,28,7,30,25.1,1.2,0.1593,0.66,44,255,74,3,12.700000000000001,25,0,0,25,0.28700000000000003,46.04,83.18,0.15,983,2.7,41,2 +2013,10,28,8,30,23.1,1.19,0.154,0.66,0,0,0,3,13.700000000000001,0,0,0,0,0.28700000000000003,55.65,96.16,0.15,983,2.7,43,2 +2013,10,28,9,30,21.900000000000002,1.17,0.1542,0.66,0,0,0,3,14.5,0,0,0,0,0.28700000000000003,62.67,108.48,0.15,984,2.7,42,1.9000000000000001 +2013,10,28,10,30,21,1.1500000000000001,0.1535,0.66,0,0,0,3,14.9,0,0,0,0,0.28700000000000003,68.05,119.85000000000001,0.15,984,2.6,40,1.7000000000000002 +2013,10,28,11,30,20.3,1.1300000000000001,0.15,0.66,0,0,0,3,15.100000000000001,0,0,0,0,0.28700000000000003,72.08,129.6,0.15,984,2.5,34,1.4000000000000001 +2013,10,28,12,30,19.6,1.11,0.1454,0.66,0,0,0,3,15.100000000000001,0,0,0,0,0.28700000000000003,75.25,136.59,0.15,984,2.5,23,1.1 +2013,10,28,13,30,19,1.11,0.1447,0.66,0,0,0,0,14.9,0,0,0,0,0.28700000000000003,77.32000000000001,139.36,0.15,984,2.6,184,1 +2013,10,28,14,30,18.6,1.11,0.1526,0.66,0,0,0,3,14.700000000000001,0,0,0,0,0.28700000000000003,78.18,137.08,0.15,983,2.8000000000000003,343,0.9 +2013,10,28,15,30,18.400000000000002,1.1,0.184,0.66,0,0,0,6,14.600000000000001,0,0,0,0,0.28600000000000003,78.59,130.44,0.15,983,3.1,334,1 +2013,10,28,16,30,18.400000000000002,1.11,0.215,0.66,0,0,0,6,14.8,0,0,0,0,0.28500000000000003,79.35000000000001,120.9,0.15,983,3.2,339,1.1 +2013,10,28,17,30,18.2,1.1400000000000001,0.2156,0.66,0,0,0,6,15.100000000000001,0,0,0,0,0.28600000000000003,81.93,109.65,0.15,983,3.2,346,1.1 +2013,10,28,18,30,17.900000000000002,1.17,0.19920000000000002,0.66,0,0,0,6,15.3,0,0,0,0,0.28700000000000003,85.02,97.41,0.15,983,3.1,347,1 +2013,10,28,19,30,18.7,1.2,0.1771,0.66,36,186,55,6,15.5,37,34,0,40,0.28800000000000003,81.81,84.44,0.15,983,3,345,1.6 +2013,10,28,20,30,20.6,1.21,0.1615,0.66,88,552,264,6,15.600000000000001,168,236,0,243,0.28800000000000003,72.82000000000001,71.37,0.15,983,3,342,2.3000000000000003 +2013,10,28,21,30,23.200000000000003,1.22,0.1495,0.66,112,733,500,6,15.200000000000001,316,242,0,444,0.28700000000000003,60.88,58.09,0.15,983,2.9000000000000004,342,2.7 +2013,10,28,22,30,25.900000000000002,1.22,0.1426,0.66,126,827,713,6,14.8,266,25,0,283,0.28700000000000003,50.32,44.82,0.15,983,2.9000000000000004,343,3 +2013,10,28,23,30,27.200000000000003,1.22,0.138,0.66,135,881,882,6,14.3,210,30,0,236,0.28600000000000003,45.12,31.89,0.15,982,2.9000000000000004,343,3.1 +2013,10,29,0,30,29.6,1.31,0.1109,0.66,127,926,995,6,14,85,12,0,97,0.28500000000000003,38.53,20.26,0.15,981,3,339,3.2 +2013,10,29,1,30,30.6,1.28,0.1136,0.66,131,930,1033,6,13.9,91,14,0,104,0.28400000000000003,36.18,13.92,0.15,980,3.1,335,3.2 +2013,10,29,2,30,31,1.24,0.1154,0.66,130,920,999,6,13.9,95,16,0,110,0.28500000000000003,35.44,19.21,0.15,979,3.2,332,3.2 +2013,10,29,3,30,30.700000000000003,1.12,0.138,0.66,137,876,892,6,14.100000000000001,80,12,0,90,0.28500000000000003,36.480000000000004,30.580000000000002,0.15,978,3.3000000000000003,331,3 +2013,10,29,4,30,29.8,1.05,0.1505,0.66,133,818,728,6,14.5,56,2,0,58,0.28600000000000003,39.33,43.43,0.15,977,3.3000000000000003,333,2.7 +2013,10,29,5,30,28.5,1,0.1635,0.66,122,719,517,6,15.3,33,0,0,33,0.28700000000000003,44.62,56.67,0.15,977,3.4000000000000004,346,2.3000000000000003 +2013,10,29,6,30,26.8,0.98,0.1507,0.66,91,575,288,6,16.7,16,0,0,16,0.28800000000000003,54.1,69.96000000000001,0.15,976,3.4000000000000004,181,2 +2013,10,29,7,30,24.5,0.93,0.1648,0.66,45,225,72,6,17.900000000000002,8,0,0,8,0.28800000000000003,66.61,83.05,0.15,976,3.7,145,1.5 +2013,10,29,8,30,22.6,0.85,0.30610000000000004,0.66,0,0,0,6,19,0,0,0,0,0.28800000000000003,80.35000000000001,96.01,0.15,978,4,295,0.9 +2013,10,29,9,30,21.5,0.81,0.40140000000000003,0.66,0,0,0,6,19.6,0,0,0,0,0.28800000000000003,88.9,108.3,0.15,979,3.9000000000000004,155,1 +2013,10,29,10,30,20.700000000000003,0.79,0.3069,0.66,0,0,0,6,19.700000000000003,0,0,0,0,0.289,93.82000000000001,119.64,0.15,980,3.5,181,1.1 +2013,10,29,11,30,20,0.8,0.21180000000000002,0.66,0,0,0,6,19.5,0,0,0,0,0.29,96.93,129.34,0.15,980,3.2,351,1 +2013,10,29,12,30,19.3,0.81,0.17500000000000002,0.66,0,0,0,6,19.1,0,0,0,0,0.289,99,136.29,0.15,980,2.9000000000000004,337,0.9 +2013,10,29,13,30,18.7,0.81,0.16390000000000002,0.66,0,0,0,6,18.7,0,0,0,0,0.289,99.93,139.03,0.15,980,2.7,328,0.8 +2013,10,29,14,30,18.1,0.84,0.1554,0.66,0,0,0,3,18.1,0,0,0,0,0.28800000000000003,100,136.76,0.15,980,2.6,321,0.8 +2013,10,29,15,30,17.7,0.9,0.14500000000000002,0.66,0,0,0,3,17.7,0,0,0,0,0.28700000000000003,100,130.16,0.15,979,2.4000000000000004,313,0.7000000000000001 +2013,10,29,16,30,17.400000000000002,0.97,0.1342,0.66,0,0,0,3,17.400000000000002,0,0,0,0,0.28700000000000003,100,120.66,0.15,979,2.2,293,0.6000000000000001 +2013,10,29,17,30,17,1.02,0.1252,0.66,0,0,0,3,17,0,0,0,0,0.28600000000000003,100,109.44,0.15,980,2.1,258,0.5 +2013,10,29,18,30,16.7,1.05,0.1253,0.66,0,0,0,3,16.7,0,0,0,0,0.28500000000000003,100,97.23,0.15,980,2,219,0.5 +2013,10,29,19,30,17.3,1.05,0.1355,0.66,38,242,62,3,17,21,0,0,21,0.28400000000000003,98.03,84.28,0.15,981,1.9000000000000001,187,0.9 +2013,10,29,20,30,18.6,1.03,0.1375,0.66,86,601,279,3,17.3,60,8,0,62,0.28300000000000003,91.99,71.22,0.15,982,1.9000000000000001,164,1.5 +2013,10,29,21,30,19.900000000000002,1.03,0.1282,0.66,109,775,520,3,16.8,80,17,0,89,0.28300000000000003,82.45,57.94,0.15,983,1.9000000000000001,151,1.7000000000000002 +2013,10,29,22,30,21.5,1.03,0.1242,0.66,123,862,736,3,16.1,107,22,0,122,0.28200000000000003,71.3,44.660000000000004,0.15,983,2,144,1.6 +2013,10,29,23,30,22.400000000000002,1.03,0.117,0.66,129,916,908,3,15.3,135,26,0,157,0.28200000000000003,64.24,31.71,0.15,983,2,142,1.5 +2013,10,30,0,30,24.700000000000003,0.9400000000000001,0.1588,0.66,157,905,1008,3,14.600000000000001,136,26,0,160,0.281,53.31,20.01,0.14,982,2.1,137,1.1 +2013,10,30,1,30,25.8,0.9500000000000001,0.1655,0.66,162,907,1044,3,13.9,138,26,0,163,0.281,47.77,13.59,0.14,982,2.2,125,1 +2013,10,30,2,30,26.400000000000002,0.96,0.1603,0.66,158,904,1013,3,13.3,168,29,0,195,0.281,44.47,18.98,0.14,981,2.2,110,1.1 +2013,10,30,3,30,26.5,0.96,0.168,0.66,155,871,906,3,12.9,192,30,0,218,0.281,43.050000000000004,30.42,0.14,981,2.3000000000000003,99,1.5 +2013,10,30,4,30,26.200000000000003,0.9500000000000001,0.16820000000000002,0.66,144,821,741,3,12.700000000000001,196,28,0,217,0.28200000000000003,43.14,43.300000000000004,0.14,980,2.3000000000000003,92,2 +2013,10,30,5,30,25.400000000000002,0.93,0.16540000000000002,0.66,125,734,530,3,12.700000000000001,193,24,0,207,0.28300000000000003,45.18,56.550000000000004,0.14,981,2.4000000000000004,89,2.5 +2013,10,30,6,30,23.700000000000003,0.92,0.1653,0.66,97,575,295,3,13.100000000000001,145,31,0,156,0.28300000000000003,51.410000000000004,69.83,0.14,981,2.4000000000000004,89,2.9000000000000004 +2013,10,30,7,30,21.5,0.89,0.16340000000000002,0.66,47,242,77,3,13.9,40,0,0,40,0.28400000000000003,61.88,82.91,0.14,983,2.5,89,2.8000000000000003 +2013,10,30,8,30,19.5,0.8300000000000001,0.1678,0.66,0,0,0,3,14.5,0,0,0,0,0.28500000000000003,73.05,95.86,0.14,984,2.5,91,2.4000000000000004 +2013,10,30,9,30,18.400000000000002,0.75,0.18480000000000002,0.66,0,0,0,3,15,0,0,0,0,0.28500000000000003,80.43,108.12,0.14,985,2.5,95,1.9000000000000001 +2013,10,30,10,30,17.900000000000002,0.71,0.19410000000000002,0.66,0,0,0,3,15.200000000000001,0,0,0,0,0.28500000000000003,84.09,119.42,0.14,986,2.4000000000000004,100,1.5 +2013,10,30,11,30,17.6,0.68,0.1869,0.66,0,0,0,3,15.200000000000001,0,0,0,0,0.28400000000000003,85.84,129.08,0.14,986,2.4000000000000004,105,1.4000000000000001 +2013,10,30,12,30,17.3,0.65,0.1842,0.66,0,0,0,3,15.200000000000001,0,0,0,0,0.28400000000000003,87.21000000000001,135.98,0.14,986,2.3000000000000003,108,1.2000000000000002 +2013,10,30,13,30,16.900000000000002,0.64,0.1824,0.66,0,0,0,3,15.100000000000001,0,0,0,0,0.28300000000000003,89.08,138.70000000000002,0.14,986,2.3000000000000003,110,1.1 +2013,10,30,14,30,16.6,0.63,0.1789,0.66,0,0,0,3,14.9,0,0,0,0,0.28300000000000003,89.98,136.44,0.14,985,2.2,113,1 +2013,10,30,15,30,16.3,0.64,0.1749,0.66,0,0,0,3,14.8,0,0,0,0,0.28200000000000003,90.77,129.88,0.14,985,2.2,117,0.8 +2013,10,30,16,30,16,0.67,0.1699,0.66,0,0,0,3,14.600000000000001,0,0,0,0,0.28200000000000003,91.31,120.42,0.14,985,2.1,122,0.7000000000000001 +2013,10,30,17,30,15.700000000000001,0.6900000000000001,0.1641,0.66,0,0,0,3,14.4,0,0,0,0,0.28300000000000003,91.79,109.24000000000001,0.14,985,2.1,127,0.6000000000000001 +2013,10,30,18,30,15.600000000000001,0.73,0.158,0.66,0,0,0,3,14.200000000000001,0,0,0,0,0.28300000000000003,91.11,97.05,0.14,986,2.1,130,0.6000000000000001 +2013,10,30,19,30,16.400000000000002,0.76,0.1521,0.66,41,204,62,3,14,20,0,0,20,0.28300000000000003,85.89,84.12,0.14,987,2.1,130,1 +2013,10,30,20,30,18.3,0.8,0.1444,0.66,90,580,278,3,13.9,102,17,0,108,0.28300000000000003,75.35000000000001,71.08,0.14,988,2.1,120,1.7000000000000002 +2013,10,30,21,30,20.400000000000002,0.8300000000000001,0.1413,0.66,115,751,516,3,13.4,175,24,0,188,0.28400000000000003,64.33,57.800000000000004,0.14,988,2.1,108,1.9000000000000001 +2013,10,30,22,30,22.3,0.86,0.1398,0.66,131,842,732,3,13.100000000000001,204,27,0,224,0.28400000000000003,55.95,44.52,0.14,988,2.1,101,1.8 +2013,10,30,23,30,23.200000000000003,0.89,0.13440000000000002,0.66,139,897,904,3,13.100000000000001,242,29,0,267,0.28500000000000003,52.870000000000005,31.54,0.14,988,2.1,98,1.7000000000000002 +2013,10,31,0,30,25.1,0.9,0.1835,0.66,171,887,1005,3,12.9,191,30,0,220,0.28600000000000003,46.730000000000004,19.77,0.15,987,2.1,92,1.6 +2013,10,31,1,30,25.900000000000002,0.91,0.1711,0.66,167,903,1046,3,12.5,168,29,0,196,0.28600000000000003,43.45,13.26,0.15,986,2.2,90,1.6 +2013,10,31,2,30,26.1,0.9,0.167,0.66,163,898,1013,3,12.100000000000001,161,29,0,188,0.28700000000000003,41.65,18.75,0.15,985,2.2,89,1.8 +2013,10,31,3,30,25.900000000000002,0.91,0.1696,0.66,157,869,908,3,11.8,172,29,0,198,0.28800000000000003,41.42,30.26,0.15,985,2.3000000000000003,88,2 +2013,10,31,4,30,25.3,0.91,0.1802,0.66,150,811,741,3,11.9,200,28,0,220,0.289,43.12,43.17,0.15,985,2.3000000000000003,86,2.3000000000000003 +2013,10,31,5,30,24.3,0.9,0.17830000000000001,0.66,131,722,530,3,12.100000000000001,164,24,0,177,0.29,46.59,56.43,0.15,985,2.4000000000000004,84,2.6 +2013,10,31,6,30,22.900000000000002,0.91,0.1744,0.66,100,566,296,3,12.5,69,11,0,73,0.291,51.9,69.71000000000001,0.15,985,2.4000000000000004,81,2.7 +2013,10,31,7,30,21.1,0.92,0.1588,0.66,47,256,80,3,12.8,21,0,0,21,0.291,59.13,82.78,0.15,986,2.4000000000000004,78,2.4000000000000004 +2013,10,31,8,30,19.5,0.93,0.1461,0.66,0,0,0,3,13.100000000000001,0,0,0,0,0.292,66.72,95.71000000000001,0.15,987,2.4000000000000004,76,1.7000000000000002 +2013,10,31,9,30,18.400000000000002,0.9400000000000001,0.136,0.66,0,0,0,3,13.4,0,0,0,0,0.293,72.87,107.94,0.15,988,2.4000000000000004,78,1.3 +2013,10,31,10,30,17.7,0.96,0.1287,0.66,0,0,0,3,13.600000000000001,0,0,0,0,0.294,76.68,119.21000000000001,0.15,988,2.4000000000000004,83,1.1 +2013,10,31,11,30,17.2,0.98,0.12350000000000001,0.66,0,0,0,3,13.600000000000001,0,0,0,0,0.295,79.29,128.83,0.15,988,2.4000000000000004,91,0.9 +2013,10,31,12,30,16.7,0.98,0.1179,0.66,0,0,0,3,13.5,0,0,0,0,0.295,81.4,135.68,0.15,988,2.3000000000000003,97,0.8 +2013,10,31,13,30,16.3,0.98,0.11810000000000001,0.66,0,0,0,6,13.4,0,0,0,0,0.293,82.76,138.38,0.15,988,2.3000000000000003,97,0.7000000000000001 +2013,10,31,14,30,16.1,0.99,0.12490000000000001,0.66,0,0,0,6,13.3,0,0,0,0,0.292,83.21000000000001,136.13,0.15,988,2.3000000000000003,101,0.7000000000000001 +2013,10,31,15,30,15.9,1,0.1231,0.66,0,0,0,6,13.100000000000001,0,0,0,0,0.292,83.71000000000001,129.61,0.15,988,2.2,111,0.7000000000000001 +2013,10,31,16,30,15.8,1.01,0.1194,0.66,0,0,0,6,13.100000000000001,0,0,0,0,0.292,84.08,120.19,0.15,988,2.1,118,0.6000000000000001 +2013,10,31,17,30,15.5,1,0.11610000000000001,0.66,0,0,0,6,13.100000000000001,0,0,0,0,0.291,85.49,109.04,0.15,988,2.1,121,0.6000000000000001 +2013,10,31,18,30,15.4,0.98,0.1109,0.66,0,0,0,6,13,0,0,0,0,0.291,85.72,96.88,0.15,989,2,123,0.6000000000000001 +2013,10,31,19,30,16.1,0.97,0.1033,0.66,37,295,68,6,13,36,4,0,37,0.293,82.09,83.97,0.15,989,1.9000000000000001,124,0.9 +2013,10,31,20,30,17.7,0.97,0.0937,0.66,74,667,293,6,12.9,150,46,0,165,0.296,73.61,70.93,0.15,990,1.7000000000000002,113,1.5 +2013,10,31,21,30,19.400000000000002,0.98,0.0844,0.66,92,829,535,6,12.3,303,72,0,341,0.298,63.6,57.660000000000004,0.15,990,1.7000000000000002,102,1.9000000000000001 +2013,10,31,22,30,20.900000000000002,1,0.0762,0.66,100,918,757,6,11.3,458,110,0,537,0.301,54.21,44.37,0.15,990,1.6,99,2 +2013,10,31,23,30,21.700000000000003,1.02,0.07010000000000001,0.66,105,966,930,6,10.5,579,138,0,697,0.302,48.92,31.37,0.15,990,1.6,98,2 +2013,11,1,0,30,23.8,1.04,0.0654,0.66,107,995,1045,6,9.9,703,139,0,834,0.304,41.49,19.54,0.15,989,1.5,92,2 +2013,11,1,1,30,24.900000000000002,1.06,0.059800000000000006,0.66,105,1007,1087,6,9.5,800,73,0,880,0.304,37.6,12.94,0.15,989,1.5,88,2 +2013,11,1,2,30,25.6,1.06,0.055400000000000005,0.66,101,1005,1054,6,9,800,47,0,863,0.303,34.89,18.52,0.15,988,1.5,84,2.1 +2013,11,1,3,30,25.8,1,0.0601,0.66,100,981,949,6,8.5,800,0,0,811,0.303,33.52,30.11,0.15,987,1.5,82,2.2 +2013,11,1,4,30,25.5,0.99,0.0579,0.66,92,948,785,6,8.3,715,0,0,715,0.302,33.64,43.04,0.15,987,1.4000000000000001,81,2.4000000000000004 +2013,11,1,5,30,24.8,0.97,0.055200000000000006,0.66,81,883,570,6,8.3,487,116,0,551,0.302,35.11,56.31,0.15,987,1.4000000000000001,80,2.4000000000000004 +2013,11,1,6,30,23.5,0.96,0.0543,0.66,64,756,328,6,8.6,64,756,5,328,0.302,38.62,69.58,0.15,987,1.4000000000000001,76,2.3000000000000003 +2013,11,1,7,30,21.3,0.96,0.0539,0.66,36,455,94,0,9.200000000000001,36,455,0,94,0.301,45.910000000000004,82.64,0.15,988,1.4000000000000001,68,1.7000000000000002 +2013,11,1,8,30,19.200000000000003,0.97,0.0539,0.66,0,0,0,0,10.8,0,0,0,0,0.3,58.29,95.55,0.15,989,1.4000000000000001,58,1 +2013,11,1,9,30,17.900000000000002,1,0.0541,0.66,0,0,0,0,11.5,0,0,0,0,0.298,66.39,107.76,0.15,989,1.4000000000000001,52,0.9 +2013,11,1,10,30,17,1.04,0.055400000000000005,0.66,0,0,0,0,11.9,0,0,0,0,0.296,71.77,118.99000000000001,0.15,990,1.5,49,0.8 +2013,11,1,11,30,16.3,1.09,0.0589,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.294,76.08,128.57,0.15,990,1.5,49,0.7000000000000001 +2013,11,1,12,30,15.8,1.12,0.064,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.292,78.96000000000001,135.39000000000001,0.15,989,1.6,53,0.7000000000000001 +2013,11,1,13,30,15.4,1.1400000000000001,0.0694,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.29,81.15,138.06,0.15,989,1.6,60,0.7000000000000001 +2013,11,1,14,30,15.100000000000001,1.1500000000000001,0.075,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.289,82.71000000000001,135.83,0.15,988,1.7000000000000002,64,0.7000000000000001 +2013,11,1,15,30,15.200000000000001,1.1400000000000001,0.0824,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.289,82.2,129.34,0.15,988,1.8,64,0.7000000000000001 +2013,11,1,16,30,15.3,1.1300000000000001,0.0896,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.289,81.69,119.96000000000001,0.15,988,1.9000000000000001,53,0.5 +2013,11,1,17,30,15.200000000000001,1.11,0.0937,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.289,82.47,108.85000000000001,0.15,988,1.9000000000000001,185,0.30000000000000004 +2013,11,1,18,30,14.8,1.1,0.095,0.66,0,0,0,0,12.3,0,0,0,0,0.28800000000000003,84.99,96.71000000000001,0.15,988,1.9000000000000001,314,0.4 +2013,11,1,19,30,15.3,1.1,0.0955,0.66,36,322,71,0,12.4,36,322,0,71,0.28800000000000003,83.08,83.82000000000001,0.15,989,1.9000000000000001,300,0.6000000000000001 +2013,11,1,20,30,17.8,1.11,0.09630000000000001,0.66,74,665,293,0,12.700000000000001,74,665,0,293,0.28800000000000003,72.2,70.8,0.15,989,1.9000000000000001,150,0.7000000000000001 +2013,11,1,21,30,20.6,1.1300000000000001,0.09580000000000001,0.66,95,815,533,0,12.4,95,815,0,533,0.28800000000000003,59.480000000000004,57.53,0.15,989,1.9000000000000001,11,0.7000000000000001 +2013,11,1,22,30,23,1.17,0.09140000000000001,0.66,106,896,748,0,11.5,106,896,0,748,0.28800000000000003,48.38,44.24,0.15,989,2,32,0.5 +2013,11,1,23,30,24.1,1.19,0.08750000000000001,0.66,113,944,920,0,10.5,113,944,0,920,0.28800000000000003,42.37,31.21,0.15,989,2,46,0.4 +2013,11,2,0,30,26.900000000000002,1.1300000000000001,0.112,0.66,132,947,1025,0,9.9,132,947,0,1025,0.28800000000000003,34.33,19.32,0.15,988,2,96,0.7000000000000001 +2013,11,2,1,30,28.200000000000003,1.1400000000000001,0.11180000000000001,0.66,133,956,1066,0,9.600000000000001,133,956,0,1066,0.28800000000000003,31.310000000000002,12.620000000000001,0.15,987,2,96,0.9 +2013,11,2,2,30,29,1.1400000000000001,0.1114,0.66,131,950,1033,0,9.5,131,950,0,1033,0.28800000000000003,29.68,18.29,0.15,986,2,89,1.1 +2013,11,2,3,30,29.3,1.18,0.1336,0.66,137,910,925,3,9.4,800,0,0,924,0.28800000000000003,29.03,29.95,0.15,985,2,77,1.2000000000000002 +2013,11,2,4,30,29.1,1.18,0.1317,0.66,126,864,759,6,9.3,743,0,0,743,0.289,29.17,42.910000000000004,0.15,984,2.1,65,1.4000000000000001 +2013,11,2,5,30,28.400000000000002,1.18,0.1297,0.66,110,787,547,6,9.4,478,115,0,542,0.29,30.44,56.19,0.15,984,2.1,56,1.7000000000000002 +2013,11,2,6,30,26.900000000000002,1.18,0.1282,0.66,86,639,310,6,9.600000000000001,169,396,0,308,0.292,33.76,69.46000000000001,0.15,984,2.2,51,1.9000000000000001 +2013,11,2,7,30,24.400000000000002,1.18,0.12490000000000001,0.66,44,329,87,6,10.600000000000001,44,329,5,87,0.293,41.84,82.51,0.15,984,2.2,48,1.7000000000000002 +2013,11,2,8,30,21.900000000000002,1.19,0.1218,0.66,0,0,0,3,12.5,0,0,0,0,0.294,55.25,95.39,0.15,985,2.3000000000000003,46,1.3 +2013,11,2,9,30,20.400000000000002,1.19,0.12140000000000001,0.66,0,0,0,3,13.3,0,0,0,0,0.294,63.78,107.58,0.15,986,2.3000000000000003,44,1.1 +2013,11,2,10,30,19.3,1.19,0.1213,0.66,0,0,0,3,13.9,0,0,0,0,0.293,71.11,118.78,0.15,986,2.4000000000000004,39,0.9 +2013,11,2,11,30,18.400000000000002,1.19,0.11860000000000001,0.66,0,0,0,3,14.3,0,0,0,0,0.293,77.19,128.31,0.15,987,2.4000000000000004,30,0.8 +2013,11,2,12,30,17.7,1.18,0.11410000000000001,0.66,0,0,0,0,14.5,0,0,0,0,0.292,81.45,135.09,0.15,987,2.4000000000000004,17,0.7000000000000001 +2013,11,2,13,30,17.1,1.18,0.1091,0.66,0,0,0,3,14.5,0,0,0,0,0.291,84.73,137.74,0.15,987,2.4000000000000004,183,0.7000000000000001 +2013,11,2,14,30,16.7,1.17,0.1038,0.66,0,0,0,3,14.4,0,0,0,0,0.291,86.49,135.53,0.15,986,2.4000000000000004,352,0.7000000000000001 +2013,11,2,15,30,16.2,1.17,0.0983,0.66,0,0,0,3,14.3,0,0,0,0,0.291,88.65,129.07,0.15,986,2.4000000000000004,345,0.7000000000000001 +2013,11,2,16,30,15.8,1.17,0.0925,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.291,90.17,119.74000000000001,0.15,985,2.4000000000000004,338,0.7000000000000001 +2013,11,2,17,30,15.4,1.17,0.0881,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.292,91.71000000000001,108.66,0.15,985,2.4000000000000004,332,0.7000000000000001 +2013,11,2,18,30,15.3,1.17,0.0863,0.66,0,0,0,0,13.9,0,0,0,0,0.291,91.54,96.55,0.15,986,2.4000000000000004,324,0.7000000000000001 +2013,11,2,19,30,16.400000000000002,1.16,0.0874,0.66,35,334,72,0,13.9,35,334,0,72,0.29,84.95,83.68,0.15,986,2.4000000000000004,316,1 +2013,11,2,20,30,19.1,1.16,0.0898,0.66,72,665,292,0,13.8,72,665,0,292,0.289,71.27,70.67,0.15,986,2.4000000000000004,311,1.5 +2013,11,2,21,30,22.5,1.1500000000000001,0.09190000000000001,0.66,93,809,529,0,13.5,93,809,0,529,0.289,56.75,57.4,0.15,986,2.4000000000000004,308,1.7000000000000002 +2013,11,2,22,30,26,1.17,0.0932,0.66,107,886,743,0,12.700000000000001,107,886,0,743,0.289,43.68,44.11,0.15,986,2.4000000000000004,298,1.7000000000000002 +2013,11,2,23,30,27.700000000000003,1.18,0.09390000000000001,0.66,116,930,913,0,11.3,116,930,0,913,0.28800000000000003,36.11,31.060000000000002,0.15,985,2.4000000000000004,291,1.7000000000000002 +2013,11,3,0,30,31.1,1.19,0.0767,0.66,112,969,1027,0,10.4,112,969,0,1027,0.28800000000000003,27.990000000000002,19.1,0.15,984,2.3000000000000003,274,1.6 +2013,11,3,1,30,32.5,1.2,0.0741,0.66,112,981,1070,0,10.200000000000001,112,981,0,1070,0.28700000000000003,25.400000000000002,12.31,0.15,983,2.2,270,1.5 +2013,11,3,2,30,33.4,1.21,0.0719,0.66,109,977,1038,0,10,109,977,0,1038,0.28700000000000003,23.830000000000002,18.07,0.15,982,2.2,271,1.5 +2013,11,3,3,30,33.6,1.24,0.08800000000000001,0.66,113,943,932,3,9.700000000000001,800,0,0,889,0.28700000000000003,23.13,29.8,0.15,981,2.2,271,1.6 +2013,11,3,4,30,33.4,1.23,0.09280000000000001,0.66,107,898,766,3,9.4,389,32,0,412,0.28800000000000003,22.86,42.79,0.15,980,2.2,270,1.7000000000000002 +2013,11,3,5,30,32.7,1.21,0.10210000000000001,0.66,98,812,552,3,9,212,24,0,226,0.289,23.27,56.07,0.15,979,2.3000000000000003,270,1.7000000000000002 +2013,11,3,6,30,31.200000000000003,1.2,0.1102,0.66,80,663,314,3,8.9,154,34,0,166,0.29,25.12,69.33,0.15,979,2.3000000000000003,279,1.3 +2013,11,3,7,30,28.3,1.21,0.1121,0.66,43,354,90,3,10.700000000000001,52,33,0,56,0.291,33.54,82.37,0.15,980,2.2,305,0.9 +2013,11,3,8,30,25.3,1.21,0.1105,0.66,0,0,0,3,13.100000000000001,0,0,0,0,0.292,46.89,95.24,0.15,980,2.2,325,0.9 +2013,11,3,9,30,23.8,1.22,0.11080000000000001,0.66,0,0,0,3,13.200000000000001,0,0,0,0,0.292,51.44,107.4,0.15,980,2.2,324,1 +2013,11,3,10,30,22.900000000000002,1.21,0.114,0.66,0,0,0,6,12.9,0,0,0,0,0.292,53.43,118.56,0.15,981,2.2,320,1 +2013,11,3,11,30,22.1,1.2,0.11850000000000001,0.66,0,0,0,6,12.9,0,0,0,0,0.291,55.93,128.06,0.15,981,2.2,316,0.9 +2013,11,3,12,30,21.3,1.19,0.1207,0.66,0,0,0,6,12.8,0,0,0,0,0.291,58.39,134.8,0.15,981,2.1,312,0.9 +2013,11,3,13,30,20.6,1.17,0.12430000000000001,0.66,0,0,0,6,12.5,0,0,0,0,0.291,59.81,137.43,0.15,980,2.1,305,1 +2013,11,3,14,30,19.900000000000002,1.17,0.1273,0.66,0,0,0,6,12.200000000000001,0,0,0,0,0.29,61.21,135.23,0.15,980,2.1,294,0.9 +2013,11,3,15,30,19.400000000000002,1.17,0.12560000000000002,0.66,0,0,0,6,12.100000000000001,0,0,0,0,0.289,62.57,128.82,0.15,980,2.1,278,0.8 +2013,11,3,16,30,18.900000000000002,1.17,0.12380000000000001,0.66,0,0,0,6,12,0,0,0,0,0.289,64.45,119.52,0.15,980,2.1,240,0.6000000000000001 +2013,11,3,17,30,18.3,1.18,0.1231,0.66,0,0,0,6,12.100000000000001,0,0,0,0,0.289,67.35,108.48,0.15,981,2.2,176,0.5 +2013,11,3,18,30,17.900000000000002,1.1300000000000001,0.1358,0.66,0,0,0,6,12.5,0,0,0,0,0.28800000000000003,70.55,96.39,0.15,982,2.3000000000000003,128,0.6000000000000001 +2013,11,3,19,30,18.7,1.01,0.16970000000000002,0.66,44,222,69,6,13.3,41,18,0,43,0.28800000000000003,70.77,83.55,0.15,983,2.4000000000000004,119,1.4000000000000001 +2013,11,3,20,30,20.400000000000002,0.8300000000000001,0.228,0.66,112,489,275,3,14.4,112,19,0,119,0.28700000000000003,68.24,70.54,0.15,984,2.5,121,2.3000000000000003 +2013,11,3,21,30,22.1,0.7000000000000001,0.2654,0.66,163,625,501,3,14.8,197,24,0,210,0.28700000000000003,63.27,57.28,0.15,985,2.5,118,2.6 +2013,11,3,22,30,23.8,0.62,0.2821,0.66,198,713,711,3,14.700000000000001,265,25,0,283,0.28700000000000003,56.730000000000004,43.980000000000004,0.15,985,2.4000000000000004,110,2.4000000000000004 +2013,11,3,23,30,24.6,0.58,0.28150000000000003,0.66,216,772,879,3,14.4,313,26,0,335,0.28700000000000003,52.88,30.92,0.15,985,2.4000000000000004,105,2.3000000000000003 +2013,11,4,0,30,26.700000000000003,0.54,0.3035,0.66,238,788,984,3,13.9,402,23,0,424,0.28700000000000003,45.47,18.89,0.15,985,2.4000000000000004,92,2.1 +2013,11,4,1,30,27.8,0.53,0.2917,0.66,236,809,1028,3,13.5,428,22,0,450,0.28600000000000003,41.39,12,0.15,984,2.3000000000000003,87,2.1 +2013,11,4,2,30,28.5,0.53,0.2792,0.66,227,809,997,3,13,401,23,0,423,0.28500000000000003,38.43,17.85,0.15,983,2.3000000000000003,85,2.2 +2013,11,4,3,30,28.700000000000003,0.53,0.25880000000000003,0.66,208,791,896,3,12.600000000000001,416,23,0,436,0.28500000000000003,37.13,29.650000000000002,0.15,983,2.4000000000000004,84,2.5 +2013,11,4,4,30,28.1,0.53,0.2535,0.66,190,739,734,3,12.5,423,45,0,456,0.28600000000000003,38.14,42.660000000000004,0.15,983,2.4000000000000004,83,2.9000000000000004 +2013,11,4,5,30,26.700000000000003,0.53,0.2378,0.66,160,656,528,3,12.600000000000001,317,64,0,353,0.28600000000000003,41.52,55.94,0.15,983,2.4000000000000004,84,3.3000000000000003 +2013,11,4,6,30,24.400000000000002,0.52,0.22560000000000002,0.66,121,495,297,0,12.9,121,495,0,297,0.28700000000000003,48.59,69.2,0.15,984,2.5,87,3.6 +2013,11,4,7,30,21.6,0.48,0.2328,0.66,59,165,81,3,13.200000000000001,43,0,0,43,0.28800000000000003,58.78,82.23,0.15,985,2.5,92,3.6 +2013,11,4,8,30,19.400000000000002,0.42,0.2614,0.66,0,0,0,3,13.3,0,0,0,0,0.289,67.91,95.08,0.15,987,2.4000000000000004,98,3.4000000000000004 +2013,11,4,9,30,18.5,0.41000000000000003,0.2927,0.66,0,0,0,3,13.200000000000001,0,0,0,0,0.289,71.37,107.22,0.15,989,2.3000000000000003,106,3.1 +2013,11,4,10,30,18.2,0.41000000000000003,0.2884,0.66,0,0,0,3,12.8,0,0,0,0,0.289,70.96000000000001,118.35000000000001,0.15,990,2.2,113,2.9000000000000004 +2013,11,4,11,30,17.900000000000002,0.41000000000000003,0.2737,0.66,0,0,0,3,12.200000000000001,0,0,0,0,0.29,69.5,127.8,0.15,990,2.1,117,2.9000000000000004 +2013,11,4,12,30,17.5,0.42,0.2566,0.66,0,0,0,3,11.700000000000001,0,0,0,0,0.29,68.68,134.5,0.15,990,2,118,2.9000000000000004 +2013,11,4,13,30,17.1,0.44,0.2369,0.66,0,0,0,3,11.3,0,0,0,0,0.29,68.69,137.12,0.15,990,1.9000000000000001,119,2.7 +2013,11,4,14,30,16.7,0.46,0.21250000000000002,0.66,0,0,0,3,11,0,0,0,0,0.289,69.25,134.94,0.15,990,1.8,121,2.5 +2013,11,4,15,30,16.3,0.48,0.194,0.66,0,0,0,3,10.9,0,0,0,0,0.289,70.25,128.56,0.15,990,1.7000000000000002,124,2.2 +2013,11,4,16,30,15.9,0.47000000000000003,0.1791,0.66,0,0,0,3,10.8,0,0,0,0,0.289,71.66,119.31,0.15,990,1.7000000000000002,127,1.9000000000000001 +2013,11,4,17,30,15.3,0.46,0.1686,0.66,0,0,0,3,10.700000000000001,0,0,0,0,0.289,74.17,108.3,0.15,990,1.6,131,1.5 +2013,11,4,18,30,14.9,0.45,0.162,0.66,0,0,0,3,10.700000000000001,0,0,0,0,0.28800000000000003,75.84,96.24000000000001,0.15,991,1.6,134,1.3 +2013,11,4,19,30,15.4,0.45,0.1563,0.66,48,209,72,3,10.600000000000001,10,0,0,10,0.28700000000000003,72.94,83.41,0.15,991,1.6,134,1.8 +2013,11,4,20,30,17,0.45,0.1511,0.66,99,577,292,3,10.3,54,5,0,55,0.28700000000000003,64.79,70.42,0.15,992,1.6,129,2.5 +2013,11,4,21,30,18.8,0.45,0.14830000000000002,0.66,126,750,533,3,9.9,170,24,0,183,0.28700000000000003,56.11,57.160000000000004,0.15,992,1.6,123,2.7 +2013,11,4,22,30,20.700000000000003,0.47000000000000003,0.1418,0.66,140,847,751,3,9.4,391,37,0,417,0.28700000000000003,48.47,43.86,0.15,992,1.6,119,2.6 +2013,11,4,23,30,21.6,0.48,0.1306,0.66,145,908,925,3,9.1,515,45,0,554,0.28700000000000003,44.730000000000004,30.78,0.15,992,1.6,117,2.5 +2013,11,5,0,30,23.8,0.43,0.1519,0.66,165,915,1032,3,8.700000000000001,594,49,0,641,0.28700000000000003,38.29,18.69,0.15,991,1.6,113,2.4000000000000004 +2013,11,5,1,30,25,0.45,0.13770000000000002,0.66,158,936,1075,3,8.5,537,26,0,562,0.28600000000000003,34.980000000000004,11.69,0.15,990,1.6,111,2.3000000000000003 +2013,11,5,2,30,25.700000000000003,0.47000000000000003,0.1264,0.66,149,939,1045,3,8.3,501,24,0,524,0.28600000000000003,33.18,17.63,0.15,989,1.6,110,2.4000000000000004 +2013,11,5,3,30,25.900000000000002,0.48,0.1389,0.66,150,902,935,3,8.3,512,39,0,546,0.28600000000000003,32.84,29.5,0.15,988,1.7000000000000002,109,2.5 +2013,11,5,4,30,25.6,0.49,0.1385,0.66,139,853,767,3,8.6,406,37,0,433,0.28600000000000003,33.97,42.53,0.15,988,1.8,106,2.6 +2013,11,5,5,30,24.8,0.51,0.1393,0.66,123,769,555,3,8.9,284,38,0,305,0.28600000000000003,36.52,55.82,0.15,988,1.8,103,2.8000000000000003 +2013,11,5,6,30,23.400000000000002,0.52,0.1451,0.66,99,605,315,3,9.4,144,27,0,154,0.28700000000000003,41.11,69.07000000000001,0.15,988,1.9000000000000001,99,2.9000000000000004 +2013,11,5,7,30,21.400000000000002,0.55,0.1369,0.66,52,291,92,3,10.100000000000001,39,0,0,39,0.28600000000000003,48.46,82.09,0.15,989,1.9000000000000001,95,2.6 +2013,11,5,8,30,19.6,0.58,0.1222,0.66,0,0,0,3,10.8,0,0,0,0,0.28600000000000003,56.92,94.92,0.15,990,1.9000000000000001,93,2.2 +2013,11,5,9,30,18.400000000000002,0.62,0.11220000000000001,0.66,0,0,0,0,11.3,0,0,0,0,0.28500000000000003,63.36,107.03,0.15,991,1.8,95,2 +2013,11,5,10,30,17.6,0.64,0.1076,0.66,0,0,0,0,11.4,0,0,0,0,0.28400000000000003,66.93,118.13,0.15,991,1.8,100,1.7000000000000002 +2013,11,5,11,30,16.900000000000002,0.67,0.1078,0.66,0,0,0,0,11.3,0,0,0,0,0.28400000000000003,69.64,127.55,0.15,991,1.7000000000000002,106,1.4000000000000001 +2013,11,5,12,30,16.3,0.6900000000000001,0.10990000000000001,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.28300000000000003,72,134.22,0.15,990,1.7000000000000002,112,1.1 +2013,11,5,13,30,15.8,0.73,0.1129,0.66,0,0,0,6,11.200000000000001,0,0,0,0,0.28200000000000003,74.28,136.82,0.15,990,1.7000000000000002,117,1 +2013,11,5,14,30,15.3,0.76,0.1168,0.66,0,0,0,6,11.200000000000001,0,0,0,0,0.281,76.53,134.65,0.15,989,1.6,121,0.9 +2013,11,5,15,30,14.8,0.8,0.1221,0.66,0,0,0,6,11.200000000000001,0,0,0,0,0.28,78.94,128.31,0.15,989,1.6,125,0.8 +2013,11,5,16,30,14.3,0.84,0.1282,0.66,0,0,0,6,11.100000000000001,0,0,0,0,0.28,81.36,119.10000000000001,0.15,989,1.6,128,0.7000000000000001 +2013,11,5,17,30,13.9,0.89,0.13440000000000002,0.66,0,0,0,6,11.100000000000001,0,0,0,0,0.28,83.19,108.12,0.15,989,1.6,130,0.7000000000000001 +2013,11,5,18,30,13.9,0.9400000000000001,0.14020000000000002,0.66,0,0,0,6,11,0,0,0,0,0.28,82.64,96.09,0.15,989,1.5,132,0.7000000000000001 +2013,11,5,19,30,15,0.98,0.1405,0.66,43,279,76,6,11,48,69,0,56,0.28,76.78,83.29,0.15,990,1.5,131,1 +2013,11,5,20,30,17.3,1,0.1343,0.66,87,631,300,6,10.9,180,145,0,229,0.28200000000000003,65.98,70.3,0.15,990,1.5,118,1.8 +2013,11,5,21,30,19.700000000000003,1,0.1252,0.66,109,801,544,6,10.200000000000001,339,209,0,453,0.28300000000000003,54.1,57.06,0.15,991,1.4000000000000001,106,2.1 +2013,11,5,22,30,21.700000000000003,0.99,0.11330000000000001,0.66,119,894,765,6,9.3,687,0,0,687,0.28400000000000003,45.24,43.75,0.15,990,1.4000000000000001,101,2 +2013,11,5,23,30,22.6,1,0.10110000000000001,0.66,122,950,940,6,8.8,800,0,0,837,0.28400000000000003,41.21,30.650000000000002,0.15,990,1.4000000000000001,99,2 +2013,11,6,0,30,24.8,1,0.0936,0.66,124,980,1053,6,8.200000000000001,704,143,0,839,0.281,34.74,18.5,0.15,989,1.4000000000000001,95,2 +2013,11,6,1,30,25.900000000000002,1,0.0878,0.66,122,992,1095,6,7.6000000000000005,800,33,0,896,0.28,31.27,11.39,0.15,988,1.4000000000000001,91,2 +2013,11,6,2,30,26.400000000000002,1,0.0815,0.66,118,991,1063,6,7.2,800,0,0,911,0.281,29.47,17.42,0.15,987,1.4000000000000001,87,2.1 +2013,11,6,3,30,26.5,1.01,0.1082,0.66,127,948,953,6,6.9,800,0,0,852,0.28200000000000003,28.75,29.35,0.15,986,1.4000000000000001,84,2.3000000000000003 +2013,11,6,4,30,26.1,1.01,0.1048,0.66,116,909,787,6,6.800000000000001,729,0,0,729,0.28400000000000003,29.3,42.4,0.15,985,1.4000000000000001,81,2.4000000000000004 +2013,11,6,5,30,25.3,1,0.1013,0.66,101,838,573,6,6.9,504,96,0,558,0.28500000000000003,30.95,55.69,0.15,985,1.4000000000000001,77,2.5 +2013,11,6,6,30,23.8,0.99,0.09870000000000001,0.66,79,703,332,6,7.300000000000001,79,703,5,332,0.28700000000000003,34.660000000000004,68.95,0.15,985,1.4000000000000001,73,2.5 +2013,11,6,7,30,21.6,0.99,0.0966,0.66,44,401,100,6,8,44,401,5,100,0.28800000000000003,41.52,81.96000000000001,0.15,986,1.4000000000000001,69,2 +2013,11,6,8,30,19.5,1,0.0954,0.66,0,0,0,0,9.1,0,0,0,0,0.289,51.01,94.76,0.15,987,1.4000000000000001,66,1.4000000000000001 +2013,11,6,9,30,18,1.01,0.09530000000000001,0.66,0,0,0,6,10,0,0,0,0,0.29,59.36,106.85000000000001,0.15,987,1.4000000000000001,66,1.1 +2013,11,6,10,30,17.1,1.02,0.097,0.66,0,0,0,6,10.5,0,0,0,0,0.29,64.98,117.92,0.15,988,1.5,67,0.8 +2013,11,6,11,30,16.3,1.04,0.1022,0.66,0,0,0,6,10.8,0,0,0,0,0.29,69.74,127.3,0.15,988,1.5,69,0.7000000000000001 +2013,11,6,12,30,15.8,1.06,0.1109,0.66,0,0,0,0,10.9,0,0,0,0,0.289,72.8,133.93,0.15,988,1.6,72,0.6000000000000001 +2013,11,6,13,30,15.3,1.09,0.1216,0.66,0,0,0,0,11,0,0,0,0,0.289,75.53,136.52,0.15,987,1.7000000000000002,76,0.6000000000000001 +2013,11,6,14,30,15,1.12,0.1321,0.66,0,0,0,0,11,0,0,0,0,0.29,77.15,134.37,0.15,987,1.7000000000000002,76,0.7000000000000001 +2013,11,6,15,30,14.9,1.16,0.14150000000000001,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.29,77.88,128.07,0.15,986,1.7000000000000002,69,0.7000000000000001 +2013,11,6,16,30,14.8,1.19,0.1491,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.292,78.81,118.9,0.15,986,1.8,55,0.6000000000000001 +2013,11,6,17,30,14.700000000000001,1.21,0.154,0.66,0,0,0,0,11.3,0,0,0,0,0.293,79.87,107.95,0.15,987,1.8,33,0.6000000000000001 +2013,11,6,18,30,14.600000000000001,1.22,0.15610000000000002,0.66,0,0,0,0,11.3,0,0,0,0,0.294,80.82000000000001,95.94,0.15,987,1.7000000000000002,185,0.5 +2013,11,6,19,30,15.4,1.22,0.1554,0.66,43,279,76,0,11.4,43,279,0,76,0.295,77.29,83.16,0.15,987,1.7000000000000002,351,0.6000000000000001 +2013,11,6,20,30,17.7,1.22,0.1529,0.66,90,613,297,0,11.600000000000001,90,613,0,297,0.296,67.36,70.19,0.15,988,1.7000000000000002,185,0.9 +2013,11,6,21,30,20.5,1.22,0.1482,0.66,114,775,537,0,10.9,114,775,0,537,0.296,54.26,56.95,0.15,988,1.7000000000000002,22,0.9 +2013,11,6,22,30,22.8,1.23,0.14200000000000002,0.66,129,868,756,0,10.100000000000001,129,868,0,756,0.296,44.62,43.64,0.15,987,1.6,31,0.8 +2013,11,6,23,30,24,1.24,0.13670000000000002,0.66,137,920,929,0,9.200000000000001,137,920,0,929,0.296,39.13,30.52,0.15,987,1.6,38,0.7000000000000001 +2013,11,7,0,30,27.200000000000003,1.2,0.0975,0.66,122,977,1049,0,8.200000000000001,122,977,0,1049,0.296,30.07,18.32,0.14,985,1.5,77,0.8 +2013,11,7,1,30,28.700000000000003,1.22,0.0971,0.66,124,985,1090,0,7.4,124,985,0,1090,0.295,26.18,11.09,0.14,984,1.5,81,1 +2013,11,7,2,30,29.6,1.22,0.0954,0.66,121,980,1057,0,7,121,980,0,1057,0.294,24.1,17.21,0.14,983,1.5,79,1.3 +2013,11,7,3,30,29.900000000000002,1.19,0.1242,0.66,132,939,951,0,6.6000000000000005,132,939,0,951,0.294,23.150000000000002,29.2,0.14,982,1.4000000000000001,75,1.5 +2013,11,7,4,30,29.6,1.19,0.12140000000000001,0.66,121,898,785,0,6.5,121,898,0,785,0.295,23.27,42.28,0.14,982,1.4000000000000001,70,1.8 +2013,11,7,5,30,28.700000000000003,1.17,0.1183,0.66,105,821,570,0,6.4,105,821,0,570,0.296,24.44,55.57,0.14,981,1.5,65,2.1 +2013,11,7,6,30,27,1.16,0.11520000000000001,0.66,83,685,331,0,6.6000000000000005,83,685,0,331,0.297,27.400000000000002,68.82000000000001,0.14,982,1.5,61,2.4000000000000004 +2013,11,7,7,30,24.3,1.1500000000000001,0.11170000000000001,0.66,46,388,101,0,7.300000000000001,46,388,0,101,0.299,33.71,81.82000000000001,0.14,982,1.5,56,2.1 +2013,11,7,8,30,21.6,1.1400000000000001,0.1085,0.66,0,0,0,0,8.700000000000001,0,0,0,0,0.3,43.71,94.60000000000001,0.14,983,1.5,54,1.5 +2013,11,7,9,30,19.8,1.1400000000000001,0.10700000000000001,0.66,0,0,0,0,9.8,0,0,0,0,0.3,52.660000000000004,106.66,0.14,984,1.5,55,1.2000000000000002 +2013,11,7,10,30,18.6,1.1400000000000001,0.1078,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.3,59.79,117.7,0.14,984,1.5,54,0.9 +2013,11,7,11,30,17.6,1.1500000000000001,0.1114,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.3,65.87,127.05,0.14,985,1.6,52,0.6000000000000001 +2013,11,7,12,30,16.900000000000002,1.18,0.11710000000000001,0.66,0,0,0,0,11.4,0,0,0,0,0.3,70.11,133.65,0.14,985,1.6,46,0.6000000000000001 +2013,11,7,13,30,16.2,1.22,0.12380000000000001,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.3,74.10000000000001,136.22,0.14,985,1.6,35,0.6000000000000001 +2013,11,7,14,30,15.600000000000001,1.25,0.1303,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.298,77.32000000000001,134.09,0.14,984,1.6,20,0.6000000000000001 +2013,11,7,15,30,15,1.29,0.1365,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.296,80.81,127.83,0.14,984,1.7000000000000002,182,0.6000000000000001 +2013,11,7,16,30,14.600000000000001,1.32,0.1426,0.66,0,0,0,0,11.8,0,0,0,0,0.294,83.32000000000001,118.7,0.14,984,1.7000000000000002,343,0.6000000000000001 +2013,11,7,17,30,14.3,1.34,0.1481,0.66,0,0,0,0,11.8,0,0,0,0,0.292,84.87,107.79,0.14,984,1.7000000000000002,323,0.6000000000000001 +2013,11,7,18,30,14.100000000000001,1.36,0.1529,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.29,85.60000000000001,95.8,0.14,984,1.7000000000000002,307,0.7000000000000001 +2013,11,7,19,30,15.3,1.37,0.1563,0.66,42,292,78,0,11.700000000000001,42,292,0,78,0.28800000000000003,79.25,83.05,0.14,985,1.7000000000000002,298,0.9 +2013,11,7,20,30,18.3,1.37,0.1565,0.66,89,617,299,0,11.8,89,617,0,299,0.28700000000000003,65.99,70.09,0.14,985,1.7000000000000002,304,1.2000000000000002 +2013,11,7,21,30,21.700000000000003,1.36,0.1502,0.66,113,778,538,0,11.600000000000001,113,778,0,538,0.28500000000000003,52.620000000000005,56.85,0.14,985,1.7000000000000002,317,1.2000000000000002 +2013,11,7,22,30,24.900000000000002,1.36,0.1398,0.66,126,873,758,0,10.3,126,873,0,758,0.28500000000000003,39.87,43.550000000000004,0.14,985,1.6,322,1.1 +2013,11,7,23,30,26.400000000000002,1.34,0.1295,0.66,131,928,932,0,9,131,928,0,932,0.28400000000000003,33.43,30.41,0.14,984,1.6,324,0.9 +2013,11,8,0,30,30,1.34,0.1575,0.66,149,935,1038,0,8.200000000000001,149,935,0,1038,0.28400000000000003,25.66,18.14,0.14,983,1.5,193,0.6000000000000001 +2013,11,8,1,30,31.6,1.34,0.1512,0.66,148,948,1080,0,7.800000000000001,148,948,0,1080,0.28300000000000003,22.77,10.8,0.14,982,1.5,51,0.9 +2013,11,8,2,30,32.300000000000004,1.36,0.14600000000000002,0.66,144,948,1051,0,7.5,144,948,0,1051,0.28200000000000003,21.5,17,0.14,981,1.4000000000000001,57,1.3 +2013,11,8,3,30,32.4,1.36,0.12390000000000001,0.66,129,942,953,0,7.300000000000001,129,942,0,953,0.28200000000000003,21.04,29.060000000000002,0.14,980,1.4000000000000001,55,1.7000000000000002 +2013,11,8,4,30,31.900000000000002,1.36,0.125,0.66,120,896,784,0,7.300000000000001,120,896,0,784,0.28300000000000003,21.64,42.15,0.14,979,1.5,53,2 +2013,11,8,5,30,30.8,1.36,0.1257,0.66,106,819,571,0,7.6000000000000005,106,819,0,571,0.28300000000000003,23.52,55.45,0.14,979,1.5,52,2.4000000000000004 +2013,11,8,6,30,28.900000000000002,1.36,0.12560000000000002,0.66,84,678,330,0,8.3,84,678,0,330,0.28400000000000003,27.490000000000002,68.69,0.14,979,1.6,52,2.6 +2013,11,8,7,30,26,1.35,0.12440000000000001,0.66,46,383,101,0,9.600000000000001,46,383,0,101,0.28400000000000003,35.5,81.68,0.14,980,1.6,50,2.3000000000000003 +2013,11,8,8,30,23.1,1.34,0.1227,0.66,0,0,0,0,11.5,0,0,0,0,0.28300000000000003,48.02,94.44,0.14,980,1.7000000000000002,48,1.9000000000000001 +2013,11,8,9,30,21.400000000000002,1.32,0.12100000000000001,0.66,0,0,0,0,12.9,0,0,0,0,0.28300000000000003,58.21,106.48,0.14,981,1.7000000000000002,45,1.6 +2013,11,8,10,30,20.200000000000003,1.31,0.1184,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28300000000000003,66.32000000000001,117.49000000000001,0.14,981,1.7000000000000002,40,1.3 +2013,11,8,11,30,19.3,1.29,0.1153,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.28300000000000003,72.47,126.8,0.14,982,1.7000000000000002,32,1 +2013,11,8,12,30,18.6,1.28,0.1131,0.66,0,0,0,0,14.4,0,0,0,0,0.28200000000000003,76.38,133.37,0.14,982,1.7000000000000002,23,0.8 +2013,11,8,13,30,18,1.27,0.11170000000000001,0.66,0,0,0,0,14.3,0,0,0,0,0.281,78.78,135.93,0.14,981,1.7000000000000002,16,0.7000000000000001 +2013,11,8,14,30,17.5,1.26,0.1101,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.28,80.29,133.82,0.14,981,1.7000000000000002,9,0.7000000000000001 +2013,11,8,15,30,16.900000000000002,1.25,0.1086,0.66,0,0,0,0,13.9,0,0,0,0,0.279,82.62,127.60000000000001,0.14,981,1.7000000000000002,176,0.7000000000000001 +2013,11,8,16,30,16.400000000000002,1.24,0.10600000000000001,0.66,0,0,0,0,13.8,0,0,0,0,0.279,84.48,118.51,0.14,981,1.7000000000000002,342,0.7000000000000001 +2013,11,8,17,30,16,1.22,0.10160000000000001,0.66,0,0,0,0,13.5,0,0,0,0,0.279,85.32000000000001,107.63,0.14,981,1.7000000000000002,332,0.8 +2013,11,8,18,30,15.9,1.21,0.09720000000000001,0.66,0,0,0,0,13.4,0,0,0,0,0.279,84.95,95.67,0.14,982,1.6,328,0.8 +2013,11,8,19,30,17.1,1.21,0.09340000000000001,0.66,39,376,85,0,13.3,39,376,0,85,0.279,78.33,82.94,0.14,982,1.6,325,1.2000000000000002 +2013,11,8,20,30,19.6,1.22,0.0898,0.66,73,704,314,0,13.200000000000001,73,704,0,314,0.279,66.49,69.99,0.14,983,1.5,324,1.7000000000000002 +2013,11,8,21,30,22.6,1.24,0.08710000000000001,0.66,91,848,556,0,12.8,91,848,0,556,0.279,53.97,56.76,0.14,983,1.5,324,1.8 +2013,11,8,22,30,25.700000000000003,1.27,0.08600000000000001,0.66,103,924,774,0,12.3,103,924,0,774,0.279,43.21,43.45,0.14,982,1.5,321,1.8 +2013,11,8,23,30,27.400000000000002,1.29,0.0853,0.66,110,967,945,0,11.3,110,967,0,945,0.279,36.77,30.3,0.14,982,1.5,319,1.7000000000000002 +2013,11,9,0,30,31.5,1.16,0.10210000000000001,0.66,124,972,1049,0,9.9,124,972,0,1049,0.279,26.47,17.98,0.14,981,1.6,319,1.5 +2013,11,9,1,30,33.300000000000004,1.19,0.10200000000000001,0.66,125,980,1089,0,8.8,125,980,0,1089,0.279,22.11,10.52,0.14,980,1.6,327,1.4000000000000001 +2013,11,9,2,30,34.1,1.23,0.1042,0.66,124,970,1053,0,8.200000000000001,124,970,0,1053,0.28,20.28,16.8,0.14,978,1.7000000000000002,337,1.5 +2013,11,9,3,30,34.2,1.23,0.11960000000000001,0.66,127,934,945,0,8.1,127,934,0,945,0.28,20.03,28.91,0.14,977,1.8,345,1.6 +2013,11,9,4,30,33.800000000000004,1.27,0.12660000000000002,0.66,120,880,775,3,8.3,502,163,0,623,0.281,20.76,42.02,0.14,977,2,348,1.7000000000000002 +2013,11,9,5,30,32.800000000000004,1.29,0.14150000000000001,0.66,112,785,559,3,8.700000000000001,311,49,0,339,0.28300000000000003,22.580000000000002,55.32,0.14,976,2.2,348,1.6 +2013,11,9,6,30,31.1,1.32,0.15460000000000002,0.66,91,623,319,3,9.3,131,22,0,139,0.28400000000000003,25.990000000000002,68.56,0.14,976,2.5,179,1.5 +2013,11,9,7,30,28.700000000000003,1.34,0.1699,0.66,50,311,96,3,11,32,0,0,32,0.28500000000000003,33.27,81.53,0.14,977,2.7,15,1.3 +2013,11,9,8,30,26.3,1.37,0.1699,0.66,0,0,0,3,13.4,0,0,0,0,0.28700000000000003,44.9,94.28,0.14,978,2.8000000000000003,25,1.4000000000000001 +2013,11,9,9,30,24.400000000000002,1.4000000000000001,0.1512,0.66,0,0,0,3,14.100000000000001,0,0,0,0,0.28700000000000003,52.54,106.3,0.14,978,2.8000000000000003,30,1.5 +2013,11,9,10,30,23.1,1.41,0.1303,0.66,0,0,0,3,14,0,0,0,0,0.28700000000000003,56.58,117.28,0.14,978,2.7,26,1.4000000000000001 +2013,11,9,11,30,22.200000000000003,1.3800000000000001,0.1193,0.66,0,0,0,0,14,0,0,0,0,0.28600000000000003,59.75,126.55,0.14,979,2.6,17,1.1 +2013,11,9,12,30,21.3,1.33,0.113,0.66,0,0,0,3,14.100000000000001,0,0,0,0,0.28500000000000003,63.67,133.09,0.14,979,2.5,177,0.8 +2013,11,9,13,30,20.6,1.28,0.1085,0.66,0,0,0,3,14.100000000000001,0,0,0,0,0.28400000000000003,66.39,135.65,0.14,978,2.5,328,0.7000000000000001 +2013,11,9,14,30,20,1.24,0.1076,0.66,0,0,0,3,14,0,0,0,0,0.28300000000000003,68.56,133.55,0.14,979,2.5,306,0.6000000000000001 +2013,11,9,15,30,19.700000000000003,1.21,0.11030000000000001,0.66,0,0,0,3,13.9,0,0,0,0,0.28300000000000003,69.22,127.37,0.14,979,2.5,307,0.6000000000000001 +2013,11,9,16,30,19.3,1.2,0.1101,0.66,0,0,0,3,13.700000000000001,0,0,0,0,0.28200000000000003,70.12,118.32000000000001,0.14,979,2.5,323,0.6000000000000001 +2013,11,9,17,30,18.8,1.21,0.10450000000000001,0.66,0,0,0,3,13.600000000000001,0,0,0,0,0.28200000000000003,71.58,107.47,0.14,979,2.6,337,0.6000000000000001 +2013,11,9,18,30,18.5,1.21,0.101,0.66,0,0,0,3,13.5,0,0,0,0,0.28200000000000003,72.69,95.54,0.14,979,2.7,346,0.6000000000000001 +2013,11,9,19,30,19.5,1.18,0.1038,0.66,39,340,82,3,13.5,53,167,0,74,0.281,68.44,82.83,0.14,979,2.7,348,0.8 +2013,11,9,20,30,22,1.16,0.1068,0.66,77,651,300,3,13.600000000000001,77,651,5,300,0.28200000000000003,58.99,69.9,0.14,980,2.7,335,1 +2013,11,9,21,30,25,1.1500000000000001,0.10880000000000001,0.66,99,794,535,3,13.3,99,794,5,535,0.28200000000000003,48.24,56.67,0.14,980,2.7,323,0.9 +2013,11,9,22,30,28.1,1.16,0.1116,0.66,114,870,746,0,12.700000000000001,114,870,0,746,0.28200000000000003,38.54,43.36,0.14,980,2.7,334,0.6000000000000001 +2013,11,9,23,30,29.6,1.17,0.1139,0.66,124,913,913,6,12.100000000000001,800,0,0,814,0.28200000000000003,33.94,30.19,0.14,980,2.7,348,0.5 +2013,11,10,0,30,32.5,1.1400000000000001,0.1287,0.66,137,926,1019,6,11.700000000000001,502,24,0,525,0.281,28.060000000000002,17.82,0.14,978,2.7,13,0.7000000000000001 +2013,11,10,1,30,33.6,1.1500000000000001,0.1384,0.66,145,926,1056,6,11.700000000000001,276,31,0,307,0.281,26.330000000000002,10.24,0.14,977,2.8000000000000003,19,0.9 +2013,11,10,2,30,33.9,1.1500000000000001,0.1678,0.66,158,896,1017,6,11.8,193,31,0,223,0.281,26.080000000000002,16.6,0.14,977,2.9000000000000004,24,1.1 +2013,11,10,3,30,33,1.16,0.23120000000000002,0.66,180,825,903,6,11.8,163,29,0,188,0.281,27.42,28.77,0.14,976,3,28,1.4000000000000001 +2013,11,10,4,30,31.1,1.18,0.2671,0.66,180,746,735,6,11.9,111,23,0,128,0.281,30.810000000000002,41.9,0.14,976,3.2,26,1.3 +2013,11,10,5,30,29.1,1.19,0.2979,0.66,168,629,526,6,12.700000000000001,60,8,0,65,0.28200000000000003,36.38,55.2,0.14,977,3.4000000000000004,22,0.9 +2013,11,10,6,30,27,1.2,0.3655,0.66,141,420,295,6,13.8,29,0,0,29,0.28300000000000003,44.18,68.42,0.14,977,3.5,46,0.8 +2013,11,10,7,30,25,1.22,0.3519,0.66,62,165,86,6,15.200000000000001,14,0,0,14,0.28400000000000003,54.64,81.39,0.14,978,3.5,74,1 +2013,11,10,8,30,23,1.26,0.26930000000000004,0.66,0,0,0,6,17,0,0,0,0,0.28500000000000003,68.82000000000001,94.12,0.14,978,3.4000000000000004,83,1.2000000000000002 +2013,11,10,9,30,21.5,1.25,0.2152,0.66,0,0,0,6,17.900000000000002,0,0,0,0,0.28600000000000003,80.17,106.11,0.14,979,3.3000000000000003,97,1.2000000000000002 +2013,11,10,10,30,20.400000000000002,1.2,0.21180000000000002,0.66,0,0,0,6,18.3,0,0,0,0,0.28600000000000003,87.62,117.06,0.14,979,3.3000000000000003,114,1.2000000000000002 +2013,11,10,11,30,19.900000000000002,1.1500000000000001,0.25,0.66,0,0,0,6,18.5,0,0,0,0,0.28600000000000003,91.88,126.31,0.14,980,3.3000000000000003,122,1.2000000000000002 +2013,11,10,12,30,19.700000000000003,1.1,0.2995,0.66,0,0,0,6,18.7,0,0,0,0,0.28500000000000003,94.23,132.82,0.14,981,3.4000000000000004,117,1.1 +2013,11,10,13,30,19.6,1.06,0.2891,0.66,0,0,0,6,18.8,0,0,0,0,0.28400000000000003,95.21000000000001,135.37,0.14,981,3.4000000000000004,104,0.9 +2013,11,10,14,30,19.5,1.02,0.2738,0.66,0,0,0,6,18.8,0,0,0,0,0.28300000000000003,95.81,133.29,0.14,980,3.5,96,0.6000000000000001 +2013,11,10,15,30,19.400000000000002,1.01,0.2619,0.66,0,0,0,6,18.8,0,0,0,0,0.28300000000000003,96.47,127.15,0.14,980,3.6,89,0.6000000000000001 +2013,11,10,16,30,19.200000000000003,1.02,0.2325,0.66,0,0,0,6,18.8,0,0,0,0,0.28400000000000003,97.68,118.13,0.14,980,3.6,77,0.6000000000000001 +2013,11,10,17,30,18.900000000000002,1.03,0.20500000000000002,0.66,0,0,0,6,18.7,0,0,0,0,0.28600000000000003,98.96000000000001,107.32000000000001,0.14,980,3.6,60,0.7000000000000001 +2013,11,10,18,30,18.8,1.03,0.191,0.66,0,0,0,6,18.6,0,0,0,0,0.28700000000000003,98.64,95.42,0.14,981,3.5,43,0.8 +2013,11,10,19,30,19.3,1.01,0.1854,0.66,47,226,76,6,18.5,26,0,0,26,0.28700000000000003,95.01,82.73,0.14,981,3.3000000000000003,31,1.2000000000000002 +2013,11,10,20,30,20.6,1,0.17830000000000001,0.66,98,553,289,6,18.400000000000002,140,28,0,150,0.28700000000000003,87.46000000000001,69.81,0.14,981,3.2,18,1.7000000000000002 +2013,11,10,21,30,22.400000000000002,1,0.1651,0.66,122,725,521,6,18.3,242,27,0,257,0.28700000000000003,77.42,56.59,0.14,982,3.2,8,2 +2013,11,10,22,30,24.400000000000002,1,0.1547,0.66,135,819,731,6,17.7,278,25,0,296,0.28700000000000003,66.15,43.28,0.14,982,3.3000000000000003,3,2.1 +2013,11,10,23,30,25.3,1,0.1534,0.66,145,868,896,6,16.6,331,25,0,352,0.28600000000000003,58.52,30.1,0.14,982,3.4000000000000004,1,2.1 +2013,11,11,0,30,26.200000000000003,0.96,0.19190000000000002,0.66,172,865,996,6,15.8,257,31,0,286,0.28600000000000003,52.82,17.67,0.14,981,3.5,347,1.9000000000000001 +2013,11,11,1,30,26.200000000000003,0.97,0.2078,0.66,182,862,1031,6,15.5,229,32,0,260,0.28600000000000003,51.71,9.96,0.14,981,3.6,339,1.9000000000000001 +2013,11,11,2,30,26,1,0.22390000000000002,0.66,187,843,995,6,15.600000000000001,212,31,0,242,0.28600000000000003,52.65,16.4,0.14,981,3.7,339,1.8 +2013,11,11,3,30,26,1.05,0.219,0.66,177,821,897,6,15.8,140,27,0,163,0.28700000000000003,53.38,28.63,0.14,980,3.7,349,1.7000000000000002 +2013,11,11,4,30,25.900000000000002,1.1,0.2247,0.66,164,767,736,6,16.1,79,13,0,89,0.28800000000000003,54.58,41.77,0.14,980,3.7,184,1.7000000000000002 +2013,11,11,5,30,25.400000000000002,1.12,0.2333,0.66,146,672,531,6,16.3,50,1,0,51,0.289,57,55.07,0.14,980,3.8000000000000003,20,1.9000000000000001 +2013,11,11,6,30,24.6,1.1400000000000001,0.23500000000000001,0.66,114,520,306,6,16.5,27,0,0,27,0.289,60.5,68.29,0.14,980,3.7,33,2 +2013,11,11,7,30,23.200000000000003,1.16,0.2194,0.66,57,250,95,6,16.8,14,0,0,14,0.289,67.13,81.25,0.14,980,3.6,40,1.8 +2013,11,11,8,30,21.8,1.16,0.18660000000000002,0.66,0,0,0,6,17.6,0,0,0,0,0.289,76.82000000000001,93.96000000000001,0.14,980,3.5,40,1.5 +2013,11,11,9,30,21,1.1400000000000001,0.1661,0.66,0,0,0,6,18,0,0,0,0,0.289,82.99,105.93,0.14,980,3.5,37,1.5 +2013,11,11,10,30,20.5,1.1,0.1537,0.66,0,0,0,6,18.3,0,0,0,0,0.28800000000000003,87.24,116.85000000000001,0.14,981,3.5,34,1.3 +2013,11,11,11,30,20,1.06,0.1422,0.66,0,0,0,6,18.5,0,0,0,0,0.28800000000000003,90.94,126.07000000000001,0.14,981,3.5,33,1.1 +2013,11,11,12,30,19.6,1.04,0.13870000000000002,0.66,0,0,0,6,18.5,0,0,0,0,0.28800000000000003,93.48,132.55,0.14,981,3.5,29,0.9 +2013,11,11,13,30,19.3,1.02,0.1388,0.66,0,0,0,6,18.5,0,0,0,0,0.28800000000000003,95.04,135.09,0.14,981,3.5,22,0.8 +2013,11,11,14,30,19,1,0.1458,0.66,0,0,0,6,18.400000000000002,0,0,0,0,0.28800000000000003,96.4,133.04,0.14,981,3.5,11,0.7000000000000001 +2013,11,11,15,30,18.7,0.98,0.15910000000000002,0.66,0,0,0,6,18.3,0,0,0,0,0.28800000000000003,97.64,126.93,0.14,981,3.5,180,0.6000000000000001 +2013,11,11,16,30,18.6,0.96,0.17300000000000001,0.66,0,0,0,6,18.2,0,0,0,0,0.28700000000000003,97.68,117.96000000000001,0.14,981,3.5,351,0.6000000000000001 +2013,11,11,17,30,18.5,0.9500000000000001,0.1854,0.66,0,0,0,6,18.2,0,0,0,0,0.28600000000000003,98.43,107.18,0.14,982,3.6,347,0.6000000000000001 +2013,11,11,18,30,18.7,0.9400000000000001,0.1961,0.66,0,0,0,6,18.2,0,0,0,0,0.28500000000000003,97.10000000000001,95.3,0.14,982,3.6,348,0.7000000000000001 +2013,11,11,19,30,19.3,0.93,0.2024,0.66,50,204,76,6,18.3,12,0,0,12,0.28400000000000003,93.73,82.63,0.14,983,3.7,350,0.9 +2013,11,11,20,30,20.700000000000003,0.9500000000000001,0.193,0.66,103,529,286,6,18.400000000000002,32,0,0,32,0.28300000000000003,86.79,69.72,0.14,984,3.7,352,1.3 +2013,11,11,21,30,22.400000000000002,0.98,0.1694,0.66,124,714,518,6,18.3,35,0,0,35,0.28300000000000003,77.54,56.52,0.14,984,3.7,354,1.7000000000000002 +2013,11,11,22,30,24.200000000000003,1,0.1585,0.66,137,811,728,6,17.6,52,0,0,52,0.28300000000000003,66.6,43.21,0.14,984,3.7,179,1.8 +2013,11,11,23,30,25,1.01,0.1555,0.66,147,863,894,6,16.900000000000002,71,7,0,77,0.28300000000000003,60.59,30.01,0.14,984,3.7,2,1.8 +2013,11,12,0,30,26.5,1.04,0.1399,0.66,145,901,1003,6,16.6,90,13,0,102,0.28200000000000003,54.480000000000004,17.53,0.13,983,3.7,18,1.7000000000000002 +2013,11,12,1,30,27,1.04,0.1374,0.66,146,912,1045,6,16.6,99,16,0,115,0.28200000000000003,52.84,9.69,0.13,982,3.6,30,1.8 +2013,11,12,2,30,27.200000000000003,1.02,0.135,0.66,143,907,1014,6,16.7,96,15,0,111,0.28200000000000003,52.660000000000004,16.2,0.13,981,3.6,39,2 +2013,11,12,3,30,27,0.9500000000000001,0.1632,0.66,152,863,911,6,16.900000000000002,73,8,0,80,0.28400000000000003,54.04,28.48,0.13,981,3.5,45,2.1 +2013,11,12,4,30,26.700000000000003,0.91,0.1655,0.66,143,812,750,6,17.2,55,0,0,55,0.28500000000000003,55.92,41.64,0.13,980,3.6,48,2.2 +2013,11,12,5,30,26.1,0.89,0.16290000000000002,0.66,125,732,546,6,17.5,32,0,0,32,0.28600000000000003,59.120000000000005,54.94,0.13,980,3.6,50,2.3000000000000003 +2013,11,12,6,30,25,0.88,0.16540000000000002,0.66,100,583,317,6,17.900000000000002,16,0,0,16,0.28600000000000003,64.77,68.16,0.13,980,3.6,52,2.2 +2013,11,12,7,30,23.5,0.86,0.168,0.66,56,286,100,6,18.6,7,0,0,7,0.28600000000000003,74.22,81.10000000000001,0.13,981,3.6,52,1.9000000000000001 +2013,11,12,8,30,22,0.85,0.16570000000000001,0.66,0,0,0,6,19.1,0,0,0,0,0.28500000000000003,83.84,93.8,0.13,981,3.6,50,1.5 +2013,11,12,9,30,21.200000000000003,0.81,0.16870000000000002,0.66,0,0,0,6,19.3,0,0,0,0,0.28400000000000003,88.95,105.74000000000001,0.13,982,3.7,48,1.3 +2013,11,12,10,30,20.700000000000003,0.78,0.1778,0.66,0,0,0,6,19.400000000000002,0,0,0,0,0.28400000000000003,92.27,116.64,0.13,982,3.7,42,1.2000000000000002 +2013,11,12,11,30,20.400000000000002,0.76,0.1897,0.66,0,0,0,6,19.400000000000002,0,0,0,0,0.28400000000000003,93.97,125.83,0.13,983,3.8000000000000003,33,1.1 +2013,11,12,12,30,20.1,0.75,0.2086,0.66,0,0,0,6,19.3,0,0,0,0,0.28400000000000003,95.24,132.28,0.13,983,3.8000000000000003,23,1 +2013,11,12,13,30,19.900000000000002,0.75,0.22970000000000002,0.66,0,0,0,6,19.200000000000003,0,0,0,0,0.28400000000000003,96.03,134.82,0.13,983,3.8000000000000003,16,0.9 +2013,11,12,14,30,19.6,0.76,0.24480000000000002,0.66,0,0,0,6,19.200000000000003,0,0,0,0,0.28400000000000003,97.39,132.79,0.13,983,3.8000000000000003,12,0.8 +2013,11,12,15,30,19.3,0.78,0.2484,0.66,0,0,0,6,19,0,0,0,0,0.28400000000000003,98.43,126.72,0.13,982,3.7,12,0.7000000000000001 +2013,11,12,16,30,19.1,0.81,0.23270000000000002,0.66,0,0,0,3,18.900000000000002,0,0,0,0,0.28500000000000003,98.87,117.78,0.13,982,3.6,14,0.7000000000000001 +2013,11,12,17,30,18.900000000000002,0.84,0.2142,0.66,0,0,0,3,18.8,0,0,0,0,0.28600000000000003,99.39,107.04,0.13,982,3.5,14,0.6000000000000001 +2013,11,12,18,30,18.900000000000002,0.87,0.20320000000000002,0.66,0,0,0,3,18.7,0,0,0,0,0.28600000000000003,98.88,95.19,0.13,983,3.4000000000000004,10,0.6000000000000001 +2013,11,12,19,30,19.5,0.9,0.195,0.66,51,215,79,3,18.7,20,0,0,20,0.28600000000000003,95.01,82.54,0.13,983,3.3000000000000003,180,0.8 +2013,11,12,20,30,21.1,0.92,0.1857,0.66,102,543,291,3,18.8,77,13,0,81,0.28600000000000003,86.46000000000001,69.64,0.13,984,3.3000000000000003,348,1.1 +2013,11,12,21,30,23.1,0.9500000000000001,0.17600000000000002,0.66,128,715,523,3,18.400000000000002,91,19,0,102,0.28700000000000003,74.84,56.45,0.13,984,3.2,340,1.3 +2013,11,12,22,30,25.1,0.97,0.1612,0.66,139,816,735,3,17.7,69,9,0,76,0.28800000000000003,63.410000000000004,43.14,0.13,984,3.2,336,1.1 +2013,11,12,23,30,26.200000000000003,0.99,0.1597,0.66,150,867,901,3,17.1,69,6,0,74,0.28800000000000003,57.17,29.93,0.13,984,3.2,335,1 +2013,11,13,0,30,28,0.98,0.2645,0.66,206,819,988,6,16.8,86,12,0,97,0.289,50.49,17.400000000000002,0.13,982,3.4000000000000004,177,0.8 +2013,11,13,1,30,28.6,1.01,0.2697,0.66,211,825,1025,6,16.7,92,13,0,105,0.289,48.49,9.43,0.13,981,3.5,18,0.9 +2013,11,13,2,30,28.6,1.02,0.27790000000000004,0.66,212,811,991,6,16.7,87,12,0,98,0.289,48.65,16.01,0.13,981,3.6,32,1.1 +2013,11,13,3,30,27.900000000000002,1.01,0.2429,0.66,188,804,895,6,16.900000000000002,73,8,0,80,0.289,51.32,28.34,0.13,980,3.8000000000000003,42,1.4000000000000001 +2013,11,13,4,30,26.6,1.01,0.2605,0.66,181,739,735,6,17.5,55,0,0,55,0.289,57.410000000000004,41.52,0.13,980,3.8000000000000003,48,1.6 +2013,11,13,5,30,25.200000000000003,0.99,0.2675,0.66,161,642,531,6,18.5,32,0,0,32,0.29,66.31,54.82,0.13,980,3.9000000000000004,49,1.7000000000000002 +2013,11,13,6,30,24,0.97,0.2746,0.66,127,479,307,6,19.200000000000003,16,0,0,16,0.29,74.64,68.02,0.13,980,3.9000000000000004,47,1.7000000000000002 +2013,11,13,7,30,22.8,0.9500000000000001,0.2823,0.66,65,193,96,6,19.700000000000003,7,0,0,7,0.29,82.59,80.96000000000001,0.13,981,3.9000000000000004,45,1.5 +2013,11,13,8,30,21.900000000000002,0.93,0.2859,0.66,0,0,0,6,20,0,0,0,0,0.29,89.12,93.63,0.13,981,3.9000000000000004,42,1.2000000000000002 +2013,11,13,9,30,21.3,0.93,0.2886,0.66,0,0,0,6,20.3,0,0,0,0,0.29,93.98,105.56,0.13,982,3.9000000000000004,41,1 +2013,11,13,10,30,20.8,0.93,0.2716,0.66,0,0,0,6,20.3,0,0,0,0,0.29,96.89,116.43,0.13,983,3.8000000000000003,42,0.9 +2013,11,13,11,30,20.400000000000002,0.93,0.2436,0.66,0,0,0,6,20.200000000000003,0,0,0,0,0.291,98.64,125.59,0.13,983,3.7,39,0.8 +2013,11,13,12,30,20,0.9400000000000001,0.2165,0.66,0,0,0,6,20,0,0,0,0,0.291,100,132.02,0.13,982,3.7,34,0.7000000000000001 +2013,11,13,13,30,19.6,0.9400000000000001,0.19390000000000002,0.66,0,0,0,6,19.6,0,0,0,0,0.291,100,134.55,0.13,982,3.6,31,0.7000000000000001 +2013,11,13,14,30,19.200000000000003,0.9500000000000001,0.18080000000000002,0.66,0,0,0,6,19.200000000000003,0,0,0,0,0.292,100,132.54,0.13,981,3.6,27,0.6000000000000001 +2013,11,13,15,30,18.900000000000002,0.96,0.1842,0.66,0,0,0,6,18.900000000000002,0,0,0,0,0.293,100,126.51,0.13,981,3.6,23,0.6000000000000001 +2013,11,13,16,30,18.7,0.9500000000000001,0.2049,0.66,0,0,0,6,18.7,0,0,0,0,0.293,100,117.62,0.13,981,3.7,20,0.5 +2013,11,13,17,30,18.7,0.9500000000000001,0.3039,0.66,0,0,0,6,18.7,0,0,0,0,0.293,100,106.91,0.13,981,3.9000000000000004,9,0.5 +2013,11,13,18,30,18.8,0.97,0.47590000000000005,0.66,0,0,0,6,18.8,0,0,0,0,0.293,100,95.08,0.13,982,4,175,0.6000000000000001 +2013,11,13,19,30,19.1,0.97,0.5084000000000001,0.66,55,67,64,6,19.1,9,0,0,9,0.294,99.93,82.45,0.13,983,4,349,0.7000000000000001 +2013,11,13,20,30,19.700000000000003,0.98,0.46190000000000003,0.66,154,322,266,6,19.3,26,0,0,26,0.294,97.49000000000001,69.57000000000001,0.13,983,3.9000000000000004,351,0.8 +2013,11,13,21,30,20.5,1,0.40690000000000004,0.66,199,527,491,6,19.6,52,2,0,53,0.294,94.81,56.38,0.13,984,3.9000000000000004,178,0.9 +2013,11,13,22,30,21.3,1.02,0.3578,0.66,215,664,700,6,19.700000000000003,74,11,0,83,0.293,90.49,43.08,0.13,984,3.8000000000000003,6,1 +2013,11,13,23,30,21.8,1.04,0.32070000000000004,0.66,219,749,869,6,19.1,99,18,0,115,0.293,84.73,29.85,0.13,983,3.8000000000000003,9,1.2000000000000002 +2013,11,14,0,30,23.200000000000003,1.08,0.2059,0.66,178,857,996,6,18.2,135,25,0,159,0.291,73.59,17.27,0.14,983,3.6,20,1.5 +2013,11,14,1,30,24,1.1,0.1771,0.66,166,888,1043,6,17.6,135,25,0,160,0.291,67.39,9.17,0.14,982,3.5,21,1.6 +2013,11,14,2,30,24.400000000000002,1.1300000000000001,0.1501,0.66,150,902,1018,6,17.2,123,23,0,145,0.291,64.37,15.82,0.14,981,3.4000000000000004,17,1.6 +2013,11,14,3,30,24.400000000000002,1.16,0.128,0.66,133,897,924,6,17,102,19,0,119,0.292,63.57,28.2,0.14,980,3.3000000000000003,18,1.6 +2013,11,14,4,30,23.900000000000002,1.16,0.125,0.66,123,859,767,6,16.900000000000002,74,11,0,83,0.293,64.97,41.39,0.14,980,3.2,25,1.5 +2013,11,14,5,30,23.200000000000003,1.1500000000000001,0.1207,0.66,106,788,562,6,17,43,0,0,43,0.295,68.07000000000001,54.69,0.14,980,3.2,32,1.6 +2013,11,14,6,30,22.3,1.1400000000000001,0.1126,0.66,83,665,334,6,17.2,20,0,0,20,0.296,72.95,67.89,0.14,980,3.1,40,1.5 +2013,11,14,7,30,20.8,1.1400000000000001,0.09910000000000001,0.66,47,411,113,6,17.7,8,0,0,8,0.297,82.33,80.81,0.14,979,3,48,1.2000000000000002 +2013,11,14,8,30,19.400000000000002,1.1400000000000001,0.0917,0.66,0,0,0,6,18,0,0,0,0,0.297,91.36,93.47,0.14,980,2.9000000000000004,40,0.9 +2013,11,14,9,30,18.7,1.12,0.1027,0.66,0,0,0,6,17.8,0,0,0,0,0.296,94.79,105.38,0.14,981,3,29,0.8 +2013,11,14,10,30,18.400000000000002,1.11,0.10110000000000001,0.66,0,0,0,6,18,0,0,0,0,0.295,97.75,116.22,0.14,982,2.9000000000000004,27,0.7000000000000001 +2013,11,14,11,30,18.1,1.09,0.10160000000000001,0.66,0,0,0,6,18.1,0,0,0,0,0.294,100,125.35000000000001,0.14,982,2.9000000000000004,23,0.6000000000000001 +2013,11,14,12,30,18,1.07,0.1004,0.66,0,0,0,6,18,0,0,0,0,0.293,100,131.76,0.14,982,2.8000000000000003,20,0.5 +2013,11,14,13,30,17.900000000000002,1.03,0.10010000000000001,0.66,0,0,0,6,17.900000000000002,0,0,0,0,0.292,100,134.29,0.14,981,2.8000000000000003,19,0.5 +2013,11,14,14,30,17.8,0.99,0.10160000000000001,0.66,0,0,0,6,17.8,0,0,0,0,0.291,100,132.31,0.14,981,2.8000000000000003,20,0.5 +2013,11,14,15,30,17.7,0.97,0.1029,0.66,0,0,0,6,17.7,0,0,0,0,0.291,100,126.31,0.14,980,2.8000000000000003,18,0.5 +2013,11,14,16,30,17.5,0.97,0.10020000000000001,0.66,0,0,0,6,17.5,0,0,0,0,0.291,100,117.46000000000001,0.14,980,2.7,169,0.4 +2013,11,14,17,30,17.3,0.98,0.093,0.66,0,0,0,6,17.3,0,0,0,0,0.291,100,106.78,0.14,980,2.7,306,0.4 +2013,11,14,18,30,17.1,1.02,0.0912,0.66,0,0,0,6,17.1,0,0,0,0,0.29,100,94.98,0.14,980,2.6,278,0.6000000000000001 +2013,11,14,19,30,17.900000000000002,1.07,0.08940000000000001,0.66,41,377,91,6,17.6,9,0,0,9,0.29,98.19,82.37,0.14,981,2.6,266,0.8 +2013,11,14,20,30,19.5,1.12,0.08660000000000001,0.66,73,689,314,6,18.5,23,0,0,23,0.289,93.68,69.5,0.14,981,2.5,276,1 +2013,11,14,21,30,21.700000000000003,1.17,0.082,0.66,90,831,551,6,19,31,0,0,31,0.289,84.83,56.32,0.14,981,2.5,286,1.2000000000000002 +2013,11,14,22,30,24.200000000000003,1.23,0.0743,0.66,98,914,767,6,18.3,54,0,0,54,0.289,69.67,43.02,0.14,981,2.4000000000000004,276,1 +2013,11,14,23,30,25.400000000000002,1.27,0.0689,0.66,103,960,936,6,17,73,8,0,80,0.289,59.7,29.78,0.14,981,2.4000000000000004,268,0.9 +2013,11,15,0,30,28,1.23,0.0656,0.66,105,989,1050,6,15.8,92,14,0,105,0.28800000000000003,47.5,17.16,0.14,980,2.2,255,0.6000000000000001 +2013,11,15,1,30,29.3,1.24,0.0618,0.66,105,999,1092,6,14.700000000000001,186,31,0,217,0.28800000000000003,40.95,8.91,0.14,979,2.2,256,0.5 +2013,11,15,2,30,30.1,1.25,0.061200000000000004,0.66,104,994,1061,3,13.8,338,27,0,364,0.289,37,15.64,0.14,978,2.2,262,0.5 +2013,11,15,3,30,30.3,0.93,0.0772,0.66,110,957,954,3,13.200000000000001,203,31,0,230,0.29,35.08,28.07,0.14,978,2.3000000000000003,265,0.6000000000000001 +2013,11,15,4,30,30.1,0.91,0.0937,0.66,111,900,788,3,12.700000000000001,112,23,0,129,0.29,34.47,41.26,0.14,977,2.4000000000000004,264,0.6000000000000001 +2013,11,15,5,30,29.3,0.9400000000000001,0.1139,0.66,107,807,575,3,12.600000000000001,95,21,0,107,0.291,35.68,54.56,0.14,977,2.5,302,0.5 +2013,11,15,6,30,27.900000000000002,0.96,0.1263,0.66,90,658,339,3,13.100000000000001,71,13,0,76,0.291,40.03,67.76,0.14,977,2.5,197,0.6000000000000001 +2013,11,15,7,30,25.8,0.99,0.1217,0.66,52,385,114,3,14.5,29,0,0,29,0.291,49.68,80.67,0.14,977,2.5,57,1 +2013,11,15,8,30,23.5,1,0.1169,0.66,0,0,0,3,16.5,0,0,0,0,0.291,64.83,93.31,0.14,978,2.6,64,1.2000000000000002 +2013,11,15,9,30,21.8,0.99,0.1164,0.66,0,0,0,3,17.3,0,0,0,0,0.291,75.5,105.19,0.14,978,2.6,68,1.2000000000000002 +2013,11,15,10,30,20.700000000000003,0.98,0.11520000000000001,0.66,0,0,0,6,17.7,0,0,0,0,0.291,82.81,116.02,0.14,979,2.6,70,1 +2013,11,15,11,30,20.1,0.98,0.1158,0.66,0,0,0,6,18.1,0,0,0,0,0.291,88.55,125.12,0.14,979,2.7,69,0.8 +2013,11,15,12,30,19.6,0.98,0.11800000000000001,0.66,0,0,0,6,18.7,0,0,0,0,0.292,94.42,131.51,0.14,979,2.7,69,0.7000000000000001 +2013,11,15,13,30,19.200000000000003,0.97,0.1177,0.66,0,0,0,6,18.900000000000002,0,0,0,0,0.292,98.35000000000001,134.03,0.14,979,2.8000000000000003,73,0.7000000000000001 +2013,11,15,14,30,18.900000000000002,0.96,0.1155,0.66,0,0,0,6,18.900000000000002,0,0,0,0,0.292,100,132.07,0.14,979,2.8000000000000003,77,0.7000000000000001 +2013,11,15,15,30,18.5,0.97,0.1177,0.66,0,0,0,6,18.5,0,0,0,0,0.293,100,126.12,0.14,978,2.7,81,0.7000000000000001 +2013,11,15,16,30,18.3,0.98,0.1155,0.66,0,0,0,6,18.3,0,0,0,0,0.293,100,117.3,0.14,978,2.6,82,0.7000000000000001 +2013,11,15,17,30,18.1,0.99,0.1101,0.66,0,0,0,6,18.1,0,0,0,0,0.293,100,106.66,0.14,978,2.6,81,0.7000000000000001 +2013,11,15,18,30,18.2,1.02,0.1164,0.66,0,0,0,6,18.2,0,0,0,0,0.294,100,94.88,0.14,978,2.5,82,0.7000000000000001 +2013,11,15,19,30,19.3,1.04,0.12140000000000001,0.66,45,331,89,6,18.900000000000002,6,0,0,6,0.294,97.63,82.3,0.14,979,2.5,82,0.8 +2013,11,15,20,30,21.1,1.05,0.11710000000000001,0.66,83,645,310,6,19.5,15,0,0,15,0.295,90.75,69.44,0.14,979,2.6,68,0.9 +2013,11,15,21,30,23.1,1.08,0.11230000000000001,0.66,103,796,545,6,19.700000000000003,31,0,0,31,0.295,81.23,56.27,0.14,979,2.6,49,0.9 +2013,11,15,22,30,25.1,1.12,0.1028,0.66,112,883,758,6,18.5,54,0,0,54,0.296,66.64,42.97,0.14,979,2.6,36,0.8 +2013,11,15,23,30,26,1.1300000000000001,0.09670000000000001,0.66,118,930,925,6,16.900000000000002,73,8,0,79,0.296,57.42,29.72,0.14,979,2.7,28,0.8 +2013,11,16,0,30,27.900000000000002,1.05,0.1199,0.66,136,935,1030,6,15.700000000000001,88,13,0,100,0.297,47.57,17.05,0.14,978,2.7,164,0.6000000000000001 +2013,11,16,1,30,28.700000000000003,1.09,0.11900000000000001,0.66,137,946,1073,6,14.8,94,14,0,108,0.297,42.78,8.67,0.14,977,2.6,310,0.6000000000000001 +2013,11,16,2,30,29.1,1.1,0.1252,0.66,139,938,1043,6,13.9,89,13,0,102,0.296,39.39,15.450000000000001,0.14,976,2.5,293,0.8 +2013,11,16,3,30,29.400000000000002,1.09,0.1587,0.66,150,892,938,6,13,92,16,0,106,0.295,36.61,27.93,0.14,975,2.4000000000000004,293,0.8 +2013,11,16,4,30,29.400000000000002,1.06,0.1452,0.66,134,860,782,6,12.3,75,12,0,84,0.295,34.980000000000004,41.14,0.14,975,2.3000000000000003,299,0.7000000000000001 +2013,11,16,5,30,28.700000000000003,1.05,0.11570000000000001,0.66,107,818,583,6,12,54,4,0,56,0.295,35.56,54.44,0.14,974,2.1,325,0.6000000000000001 +2013,11,16,6,30,27.200000000000003,1.01,0.1119,0.66,86,690,349,6,12.4,30,0,0,30,0.295,40,67.62,0.14,974,2.1,205,0.6000000000000001 +2013,11,16,7,30,24.700000000000003,0.96,0.1174,0.66,53,405,119,6,14.5,14,0,0,14,0.295,53.09,80.52,0.14,975,2,79,0.7000000000000001 +2013,11,16,8,30,22.400000000000002,0.93,0.11660000000000001,0.66,0,0,0,6,16.8,0,0,0,0,0.295,70.57000000000001,93.15,0.14,976,2,110,0.7000000000000001 +2013,11,16,9,30,20.900000000000002,0.9400000000000001,0.1121,0.66,0,0,0,6,17.1,0,0,0,0,0.296,79.10000000000001,105.01,0.14,977,2.1,124,0.8 +2013,11,16,10,30,19.8,0.93,0.11410000000000001,0.66,0,0,0,6,17.5,0,0,0,0,0.297,86.62,115.81,0.14,978,2.1,128,0.9 +2013,11,16,11,30,19.1,0.9400000000000001,0.1217,0.66,0,0,0,6,17.8,0,0,0,0,0.297,92.38,124.89,0.14,978,2.2,134,1 +2013,11,16,12,30,18.8,0.97,0.14980000000000002,0.66,0,0,0,6,18.3,0,0,0,0,0.298,97.08,131.26,0.14,978,2.3000000000000003,144,1.2000000000000002 +2013,11,16,13,30,18.5,1.02,0.1752,0.66,0,0,0,6,18.5,0,0,0,0,0.299,100,133.78,0.14,978,2.4000000000000004,152,1.5 +2013,11,16,14,30,18,1.08,0.18230000000000002,0.66,0,0,0,6,18,0,0,0,0,0.3,100,131.85,0.14,978,2.5,155,1.7000000000000002 +2013,11,16,15,30,17.400000000000002,1.12,0.2054,0.66,0,0,0,3,17.2,0,0,0,0,0.3,98.94,125.93,0.14,978,2.5,153,1.6 +2013,11,16,16,30,16.7,1.1,0.20420000000000002,0.66,0,0,0,6,16,0,0,0,0,0.299,95.85000000000001,117.15,0.14,978,2.5,153,1.3 +2013,11,16,17,30,16.2,1.07,0.1958,0.66,0,0,0,6,15.200000000000001,0,0,0,0,0.299,93.99,106.54,0.14,979,2.5,153,1 +2013,11,16,18,30,15.9,1.04,0.1899,0.66,0,0,0,6,14.700000000000001,0,0,0,0,0.298,92.56,94.79,0.14,979,2.5,153,0.8 +2013,11,16,19,30,16.2,1.07,0.19820000000000002,0.66,53,244,86,6,14.4,24,0,0,24,0.298,89.05,82.22,0.14,980,2.6,153,0.9 +2013,11,16,20,30,16.900000000000002,1.17,0.3068,0.66,128,458,290,6,14.200000000000001,62,10,0,66,0.296,84.26,69.38,0.14,980,2.7,149,1 +2013,11,16,21,30,17.8,1.27,0.5075000000000001,0.66,221,501,500,6,14.3,111,23,0,124,0.295,80,56.22,0.14,981,2.7,142,1 +2013,11,16,22,30,18.7,1.31,0.6029,0.66,287,560,697,6,14.5,200,28,0,220,0.295,76.55,42.92,0.14,981,2.7,131,0.9 +2013,11,16,23,30,19.200000000000003,1.32,0.5077,0.66,284,670,866,6,14.9,302,27,0,325,0.294,76.29,29.67,0.14,981,2.8000000000000003,126,0.8 +2013,11,17,0,30,21.200000000000003,1.33,0.3487,0.66,233,789,988,6,15.4,467,22,0,488,0.294,69.61,16.95,0.14,980,2.8000000000000003,81,0.8 +2013,11,17,1,30,22.6,1.36,0.2983,0.66,216,830,1037,6,15.3,460,22,0,482,0.293,63.6,8.43,0.14,979,2.8000000000000003,212,0.7000000000000001 +2013,11,17,2,30,23.3,1.37,0.33190000000000003,0.66,229,800,1000,6,14.600000000000001,332,27,0,358,0.292,58.06,15.27,0.14,979,3,353,0.8 +2013,11,17,3,30,23.1,1.36,0.3849,0.66,242,739,895,6,14.4,185,30,0,212,0.291,57.93,27.79,0.14,979,3.1,343,0.8 +2013,11,17,4,30,22.400000000000002,1.35,0.3765,0.66,220,686,738,6,14.600000000000001,110,23,0,127,0.289,61.31,41.01,0.14,978,3.2,331,0.7000000000000001 +2013,11,17,5,30,21.400000000000002,1.35,0.3778,0.66,191,591,536,6,15.200000000000001,72,13,0,80,0.28800000000000003,67.82000000000001,54.31,0.14,979,3.3000000000000003,308,0.7000000000000001 +2013,11,17,6,30,20.200000000000003,1.35,0.405,0.66,150,422,312,6,16,42,0,0,42,0.28700000000000003,77.02,67.49,0.14,979,3.3000000000000003,277,0.7000000000000001 +2013,11,17,7,30,19.1,1.36,0.4169,0.66,72,173,101,6,16.7,15,0,0,15,0.28700000000000003,86.11,80.38,0.14,980,3.3000000000000003,247,0.6000000000000001 +2013,11,17,8,30,18.3,1.36,0.4166,0.66,0,0,0,6,17.1,0,0,0,0,0.28700000000000003,92.86,92.98,0.14,980,3.3000000000000003,223,0.5 +2013,11,17,9,30,17.8,1.37,0.3962,0.66,0,0,0,6,17.3,0,0,0,0,0.28700000000000003,96.69,104.83,0.14,981,3.3000000000000003,184,0.4 +2013,11,17,10,30,17.5,1.3800000000000001,0.3739,0.66,0,0,0,6,17.2,0,0,0,0,0.28700000000000003,98.38,115.61,0.14,981,3.3000000000000003,129,0.4 +2013,11,17,11,30,17.3,1.35,0.4414,0.66,0,0,0,6,17.2,0,0,0,0,0.28700000000000003,99.16,124.66,0.14,981,3.3000000000000003,57,0.4 +2013,11,17,12,30,17.1,1.34,0.4646,0.66,0,0,0,6,17.1,0,0,0,0,0.28600000000000003,100,131.01,0.14,981,3.3000000000000003,9,0.5 +2013,11,17,13,30,16.900000000000002,1.35,0.4243,0.66,0,0,0,6,16.900000000000002,0,0,0,0,0.28600000000000003,100,133.54,0.14,980,3.3000000000000003,9,0.5 +2013,11,17,14,30,16.7,1.37,0.3532,0.66,0,0,0,6,16.7,0,0,0,0,0.28600000000000003,100,131.63,0.14,979,3.2,16,0.4 +2013,11,17,15,30,16.5,1.3800000000000001,0.2803,0.66,0,0,0,6,16.5,0,0,0,0,0.28700000000000003,100,125.75,0.14,978,3.2,110,0.30000000000000004 +2013,11,17,16,30,16.2,1.3900000000000001,0.2209,0.66,0,0,0,6,16.2,0,0,0,0,0.28800000000000003,100,117.01,0.14,978,3.1,203,0.30000000000000004 +2013,11,17,17,30,15.8,1.37,0.2096,0.66,0,0,0,6,15.8,0,0,0,0,0.28800000000000003,100,106.43,0.14,978,3.1,204,0.4 +2013,11,17,18,30,15.700000000000001,1.34,0.2053,0.66,0,0,0,6,15.700000000000001,0,0,0,0,0.28700000000000003,100,94.71000000000001,0.14,978,3,211,0.4 +2013,11,17,19,30,16.1,1.32,0.194,0.66,49,263,85,6,15.700000000000001,19,0,0,19,0.28700000000000003,97.32000000000001,82.16,0.14,978,2.9000000000000004,193,0.4 +2013,11,17,20,30,16.900000000000002,1.3,0.1497,0.66,89,614,306,6,16,63,10,0,67,0.28700000000000003,94.53,69.33,0.14,979,2.7,250,0.30000000000000004 +2013,11,17,21,30,17.900000000000002,1.26,0.13340000000000002,0.66,109,782,544,6,16,134,24,0,147,0.28800000000000003,88.41,56.18,0.14,979,2.5,322,0.5 +2013,11,17,22,30,19.400000000000002,1.23,0.1223,0.66,120,873,759,6,15.3,151,28,0,171,0.289,77.23,42.88,0.14,979,2.4000000000000004,297,0.7000000000000001 +2013,11,17,23,30,20.400000000000002,1.2,0.1154,0.66,126,926,931,3,14,147,28,0,171,0.29,66.72,29.62,0.14,979,2.3000000000000003,282,0.9 +2013,11,18,0,30,23,1.21,0.113,0.66,130,954,1043,6,12.600000000000001,89,13,0,101,0.292,52.09,16.87,0.14,977,2.2,266,1.2000000000000002 +2013,11,18,1,30,24.3,1.22,0.1124,0.66,133,963,1086,6,12.100000000000001,95,15,0,110,0.292,46.57,8.19,0.14,977,2.2,265,1.5 +2013,11,18,2,30,24.700000000000003,1.24,0.12760000000000002,0.66,139,946,1052,6,11.700000000000001,91,14,0,104,0.292,44.29,15.09,0.14,976,2.2,263,1.7000000000000002 +2013,11,18,3,30,24.6,1.27,0.14830000000000002,0.66,143,907,946,6,11.600000000000001,76,9,0,84,0.292,44.1,27.650000000000002,0.14,975,2.3000000000000003,259,1.8 +2013,11,18,4,30,24.400000000000002,1.29,0.15660000000000002,0.66,136,855,782,6,11.700000000000001,62,5,0,65,0.292,44.99,40.88,0.14,975,2.4000000000000004,257,1.7000000000000002 +2013,11,18,5,30,24.1,1.3,0.14800000000000002,0.66,117,786,578,6,11.9,47,0,0,47,0.293,46.28,54.18,0.14,975,2.4000000000000004,259,1.5 +2013,11,18,6,30,23.400000000000002,1.3,0.1295,0.66,88,673,348,6,11.9,34,0,0,34,0.294,48.550000000000004,67.35,0.14,975,2.4000000000000004,265,1.2000000000000002 +2013,11,18,7,30,21.8,1.31,0.1135,0.66,51,430,124,6,13,18,0,0,18,0.295,57.27,80.23,0.14,975,2.3000000000000003,281,0.7000000000000001 +2013,11,18,8,30,20.1,1.3,0.1051,0.66,0,0,0,3,14.9,0,0,0,0,0.295,71.9,92.82000000000001,0.14,976,2.3000000000000003,304,0.6000000000000001 +2013,11,18,9,30,18.900000000000002,1.29,0.09820000000000001,0.66,0,0,0,6,14.4,0,0,0,0,0.292,75.26,104.65,0.14,976,2.2,319,0.7000000000000001 +2013,11,18,10,30,18,1.3,0.09050000000000001,0.66,0,0,0,6,13.9,0,0,0,0,0.29,76.94,115.4,0.14,977,2.2,324,0.7000000000000001 +2013,11,18,11,30,17.2,1.32,0.0839,0.66,0,0,0,6,13.700000000000001,0,0,0,0,0.28700000000000003,79.77,124.43,0.14,977,2.1,321,0.8 +2013,11,18,12,30,16.400000000000002,1.33,0.0794,0.66,0,0,0,6,13.5,0,0,0,0,0.28600000000000003,82.86,130.77,0.14,977,2.1,308,0.8 +2013,11,18,13,30,15.5,1.33,0.0756,0.66,0,0,0,0,13.3,0,0,0,0,0.28500000000000003,86.65,133.3,0.14,976,2,292,0.7000000000000001 +2013,11,18,14,30,14.600000000000001,1.34,0.0722,0.66,0,0,0,0,13,0,0,0,0,0.28500000000000003,90.38,131.41,0.14,976,2,274,0.7000000000000001 +2013,11,18,15,30,14.200000000000001,1.34,0.0688,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.28500000000000003,89.82000000000001,125.57000000000001,0.14,976,2,260,0.7000000000000001 +2013,11,18,16,30,13.9,1.36,0.064,0.66,0,0,0,0,12,0,0,0,0,0.28500000000000003,88.34,116.87,0.14,976,2,254,0.8 +2013,11,18,17,30,13.600000000000001,1.3900000000000001,0.055200000000000006,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.28500000000000003,87.53,106.32000000000001,0.14,976,1.9000000000000001,254,0.8 +2013,11,18,18,30,13.5,1.43,0.044000000000000004,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.28500000000000003,85.84,94.63,0.14,976,1.9000000000000001,257,0.9 +2013,11,18,19,30,14.700000000000001,1.45,0.0358,0.66,34,522,105,0,11.100000000000001,34,522,0,105,0.28300000000000003,79,82.10000000000001,0.14,977,1.8,260,1.3 +2013,11,18,20,30,17.400000000000002,1.45,0.031900000000000005,0.66,55,796,337,0,11.100000000000001,55,796,0,337,0.28300000000000003,66.47,69.29,0.14,977,1.8,253,2 +2013,11,18,21,30,20.400000000000002,1.45,0.0304,0.66,67,917,578,0,11.200000000000001,67,917,0,578,0.28200000000000003,55.480000000000004,56.14,0.14,977,1.7000000000000002,239,2.4000000000000004 +2013,11,18,22,30,22.900000000000002,1.45,0.0298,0.66,75,980,794,0,11.100000000000001,75,980,0,794,0.28200000000000003,47.4,42.85,0.14,977,1.7000000000000002,233,2.4000000000000004 +2013,11,18,23,30,24,1.45,0.0298,0.66,81,1015,963,6,10.9,800,0,0,949,0.28200000000000003,43.800000000000004,29.580000000000002,0.14,977,1.7000000000000002,232,2.4000000000000004 +2013,11,19,0,30,26.6,1.24,0.0403,0.66,91,1025,1073,6,10.600000000000001,800,0,0,1036,0.279,36.72,16.79,0.14,976,1.7000000000000002,240,2.3000000000000003 +2013,11,19,1,30,27.900000000000002,1.22,0.041800000000000004,0.66,94,1031,1114,6,10.3,800,0,0,1071,0.277,33.27,7.96,0.14,975,1.7000000000000002,242,2.3000000000000003 +2013,11,19,2,30,28.8,1.21,0.0432,0.66,94,1022,1081,6,10.3,800,0,0,1038,0.274,31.57,14.92,0.14,975,1.8,241,2.2 +2013,11,19,3,30,29.3,1.1300000000000001,0.054200000000000005,0.66,97,995,979,6,10.3,800,0,0,932,0.273,30.8,27.52,0.14,974,1.8,240,2.1 +2013,11,19,4,30,29.3,1.1300000000000001,0.055,0.66,91,959,817,6,10.3,752,0,0,752,0.272,30.69,40.75,0.14,974,1.8,240,2 +2013,11,19,5,30,28.700000000000003,1.1400000000000001,0.058300000000000005,0.66,83,894,608,6,10.100000000000001,374,185,0,483,0.272,31.400000000000002,54.050000000000004,0.14,973,1.8,237,1.7000000000000002 +2013,11,19,6,30,27.200000000000003,1.1500000000000001,0.061200000000000004,0.66,69,777,370,6,10.5,214,100,0,253,0.272,35.12,67.21000000000001,0.14,973,1.8,233,1 +2013,11,19,7,30,24.700000000000003,1.1500000000000001,0.0635,0.66,44,523,134,6,12.8,77,87,0,92,0.272,47.62,80.09,0.14,974,1.9000000000000001,293,0.5 +2013,11,19,8,30,22.200000000000003,1.16,0.0653,0.66,0,0,0,6,14.8,0,0,0,0,0.273,63.04,92.66,0.14,975,1.9000000000000001,349,0.4 +2013,11,19,9,30,21.1,1.16,0.0694,0.66,0,0,0,6,14.8,0,0,0,0,0.273,67.15,104.47,0.14,976,2,343,0.4 +2013,11,19,10,30,20.6,1.16,0.0709,0.66,0,0,0,6,14.9,0,0,0,0,0.274,69.86,115.2,0.14,977,2,188,0.4 +2013,11,19,11,30,20,1.1500000000000001,0.07100000000000001,0.66,0,0,0,6,14.700000000000001,0,0,0,0,0.274,71.62,124.21000000000001,0.14,977,2.1,67,0.4 +2013,11,19,12,30,19.1,1.1500000000000001,0.07200000000000001,0.66,0,0,0,6,14.700000000000001,0,0,0,0,0.274,75.53,130.54,0.14,978,2.1,106,0.5 +2013,11,19,13,30,18.1,1.1400000000000001,0.0721,0.66,0,0,0,6,14.8,0,0,0,0,0.274,81.27,133.07,0.14,977,2.1,113,0.6000000000000001 +2013,11,19,14,30,17.2,1.12,0.0733,0.66,0,0,0,3,15,0,0,0,0,0.275,87.16,131.2,0.14,977,2.1,114,0.7000000000000001 +2013,11,19,15,30,16.400000000000002,1.1,0.07390000000000001,0.66,0,0,0,3,15.3,0,0,0,0,0.275,93.06,125.4,0.14,977,2.1,116,0.7000000000000001 +2013,11,19,16,30,15.8,1.08,0.0745,0.66,0,0,0,3,15.5,0,0,0,0,0.275,98.04,116.74000000000001,0.14,977,2.1,123,0.6000000000000001 +2013,11,19,17,30,15.4,1.06,0.0753,0.66,0,0,0,3,15.4,0,0,0,0,0.276,100,106.22,0.14,977,2.1,131,0.6000000000000001 +2013,11,19,18,30,15.5,1.05,0.0784,0.66,0,0,0,3,15.5,0,0,0,0,0.276,100,94.55,0.14,978,2.1,135,0.6000000000000001 +2013,11,19,19,30,17.1,1.04,0.0809,0.66,41,415,99,3,16.1,60,132,0,79,0.277,93.88,82.04,0.14,978,2.1,133,0.8 +2013,11,19,20,30,19.700000000000003,1.04,0.0799,0.66,73,712,325,3,16.3,73,712,5,325,0.278,80.69,69.25,0.14,979,2.1,121,0.9 +2013,11,19,21,30,22.200000000000003,1.06,0.0765,0.66,89,850,563,3,16.1,89,850,5,563,0.278,68.57000000000001,56.11,0.14,979,2.1,130,0.7000000000000001 +2013,11,19,22,30,24.6,1.09,0.0721,0.66,99,923,776,0,15.5,99,923,0,776,0.279,57.02,42.83,0.14,979,2.2,173,0.5 +2013,11,19,23,30,25.8,1.11,0.0721,0.66,106,964,945,0,14.600000000000001,106,964,0,945,0.279,50.07,29.55,0.14,979,2.2,200,0.6000000000000001 +2013,11,20,0,30,28.3,1.1,0.07980000000000001,0.66,114,980,1053,3,14,506,23,0,528,0.28,41.52,16.71,0.14,978,2.2,220,0.6000000000000001 +2013,11,20,1,30,29.5,1.1300000000000001,0.08310000000000001,0.66,117,983,1091,3,13.4,379,25,0,404,0.28200000000000003,37.34,7.74,0.14,977,2.3000000000000003,216,0.7000000000000001 +2013,11,20,2,30,30.400000000000002,1.1500000000000001,0.0868,0.66,118,975,1061,3,13,324,28,0,351,0.28400000000000003,34.42,14.74,0.14,976,2.3000000000000003,198,0.7000000000000001 +2013,11,20,3,30,30.6,1.18,0.10110000000000001,0.66,120,941,956,3,12.600000000000001,350,25,0,372,0.28500000000000003,33.17,27.38,0.14,975,2.4000000000000004,170,0.9 +2013,11,20,4,30,30.3,1.21,0.1043,0.66,114,899,796,3,12.4,394,28,0,415,0.28700000000000003,33.32,40.63,0.14,975,2.4000000000000004,140,1.2000000000000002 +2013,11,20,5,30,29.400000000000002,1.21,0.10360000000000001,0.66,101,828,589,3,12.4,351,74,0,394,0.289,35.12,53.92,0.14,975,2.5,119,1.8 +2013,11,20,6,30,27.6,1.2,0.10310000000000001,0.66,82,702,355,3,13.100000000000001,218,119,0,264,0.29,40.89,67.08,0.14,975,2.6,106,2.3000000000000003 +2013,11,20,7,30,24.900000000000002,1.17,0.10350000000000001,0.66,51,442,128,3,14.4,79,97,0,96,0.29,51.99,79.94,0.14,976,2.6,99,2.3000000000000003 +2013,11,20,8,30,22.3,1.12,0.1023,0.66,0,0,0,3,15.8,0,0,0,0,0.289,66.5,92.5,0.14,977,2.7,93,2.1 +2013,11,20,9,30,20.700000000000003,1.05,0.10110000000000001,0.66,0,0,0,3,16.400000000000002,0,0,0,0,0.289,76.53,104.29,0.14,979,2.7,91,1.8 +2013,11,20,10,30,19.8,1.01,0.1005,0.66,0,0,0,3,17,0,0,0,0,0.28800000000000003,83.66,115,0.14,979,2.7,95,1.2000000000000002 +2013,11,20,11,30,19.1,0.99,0.10020000000000001,0.66,0,0,0,0,17.2,0,0,0,0,0.28600000000000003,88.99,123.99000000000001,0.14,980,2.7,102,0.8 +2013,11,20,12,30,18.7,0.99,0.1022,0.66,0,0,0,3,17.3,0,0,0,0,0.28400000000000003,91.38,130.3,0.14,980,2.7,108,0.6000000000000001 +2013,11,20,13,30,18.3,1.01,0.1085,0.66,0,0,0,6,17.2,0,0,0,0,0.281,93.08,132.84,0.14,980,2.6,111,0.6000000000000001 +2013,11,20,14,30,18,1,0.11420000000000001,0.66,0,0,0,6,17.1,0,0,0,0,0.28,94.23,131,0.14,979,2.5,113,0.6000000000000001 +2013,11,20,15,30,17.900000000000002,1,0.1296,0.66,0,0,0,6,17,0,0,0,0,0.281,94.44,125.24000000000001,0.14,979,2.5,114,0.6000000000000001 +2013,11,20,16,30,17.900000000000002,1.01,0.1467,0.66,0,0,0,6,17,0,0,0,0,0.28200000000000003,94.38,116.61,0.14,979,2.4000000000000004,112,0.5 +2013,11,20,17,30,17.7,1,0.14650000000000002,0.66,0,0,0,6,17,0,0,0,0,0.28400000000000003,95.57000000000001,106.13,0.14,979,2.4000000000000004,115,0.5 +2013,11,20,18,30,17.7,0.97,0.1394,0.66,0,0,0,6,16.900000000000002,0,0,0,0,0.28500000000000003,95.3,94.48,0.14,980,2.4000000000000004,117,0.5 +2013,11,20,19,30,18.5,0.96,0.1371,0.66,49,318,93,3,16.900000000000002,53,23,0,56,0.28600000000000003,90.62,82,0.14,980,2.4000000000000004,109,0.7000000000000001 +2013,11,20,20,30,20.400000000000002,0.99,0.1264,0.66,86,641,314,3,16.6,196,200,0,267,0.28600000000000003,79.05,69.21000000000001,0.14,981,2.4000000000000004,98,0.9 +2013,11,20,21,30,22.5,1.05,0.1106,0.66,102,805,551,3,15.9,102,805,5,551,0.28600000000000003,66.37,56.09,0.14,981,2.4000000000000004,93,0.9 +2013,11,20,22,30,24.5,1.08,0.1024,0.66,112,890,765,0,15.100000000000001,112,890,0,765,0.28600000000000003,55.65,42.800000000000004,0.14,981,2.4000000000000004,92,1 +2013,11,20,23,30,25.5,1.09,0.09870000000000001,0.66,119,937,935,0,14.600000000000001,119,937,0,935,0.28600000000000003,50.85,29.52,0.14,980,2.4000000000000004,93,1 +2013,11,21,0,30,28,1.09,0.0858,0.66,117,968,1045,0,14.4,117,968,0,1045,0.28600000000000003,43.300000000000004,16.65,0.14,979,2.5,101,1 +2013,11,21,1,30,29.200000000000003,1.11,0.08420000000000001,0.66,118,977,1087,0,14.3,118,977,0,1087,0.28700000000000003,40.08,7.53,0.14,979,2.5,103,1.1 +2013,11,21,2,30,30,1.1300000000000001,0.0814,0.66,115,974,1058,0,14.100000000000001,115,974,0,1058,0.28700000000000003,37.95,14.57,0.14,978,2.5,103,1.3 +2013,11,21,3,30,30.200000000000003,1.16,0.11610000000000001,0.66,127,925,950,3,14,800,0,0,923,0.28700000000000003,37.12,27.25,0.14,977,2.6,101,1.6 +2013,11,21,4,30,29.900000000000002,1.1400000000000001,0.11710000000000001,0.66,119,883,791,3,13.9,789,0,0,789,0.28800000000000003,37.52,40.5,0.14,977,2.6,98,1.9000000000000001 +2013,11,21,5,30,29,1.12,0.116,0.66,105,811,584,3,13.9,468,147,0,555,0.289,39.56,53.79,0.14,977,2.7,92,2.3000000000000003 +2013,11,21,6,30,27.3,1.11,0.11180000000000001,0.66,84,689,354,3,14,84,689,5,354,0.29,43.92,66.94,0.14,977,2.7,84,2.5 +2013,11,21,7,30,24.8,1.1,0.1061,0.66,52,436,129,3,14.4,52,436,5,129,0.29,52.36,79.79,0.14,978,2.8000000000000003,78,2.3000000000000003 +2013,11,21,8,30,22.3,1.09,0.1017,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.291,63.660000000000004,92.33,0.14,979,2.8000000000000003,75,1.7000000000000002 +2013,11,21,9,30,20.8,1.07,0.09970000000000001,0.66,0,0,0,0,15.8,0,0,0,0,0.291,72.93,104.11,0.14,980,2.8000000000000003,75,1.3 +2013,11,21,10,30,19.8,1.05,0.1,0.66,0,0,0,0,16.1,0,0,0,0,0.291,79.43,114.8,0.14,980,2.8000000000000003,79,1 +2013,11,21,11,30,19.1,1.04,0.1022,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.29,84.42,123.78,0.14,981,2.9000000000000004,84,0.9 +2013,11,21,12,30,18.6,1.03,0.1058,0.66,0,0,0,0,16.6,0,0,0,0,0.29,87.91,130.08,0.14,980,2.9000000000000004,87,0.8 +2013,11,21,13,30,18.2,1.02,0.1144,0.66,0,0,0,6,16.7,0,0,0,0,0.289,90.81,132.62,0.14,980,3,79,0.7000000000000001 +2013,11,21,14,30,18,1.02,0.1298,0.66,0,0,0,6,16.8,0,0,0,0,0.289,92.45,130.81,0.14,980,3.1,59,0.6000000000000001 +2013,11,21,15,30,17.900000000000002,1.05,0.1497,0.66,0,0,0,6,16.900000000000002,0,0,0,0,0.289,93.67,125.08,0.14,980,3.1,42,0.6000000000000001 +2013,11,21,16,30,17.7,1.08,0.1553,0.66,0,0,0,6,16.900000000000002,0,0,0,0,0.28800000000000003,94.97,116.49000000000001,0.14,979,3,31,0.6000000000000001 +2013,11,21,17,30,17.6,1.1,0.14400000000000002,0.66,0,0,0,3,16.900000000000002,0,0,0,0,0.28800000000000003,95.55,106.04,0.14,980,2.9000000000000004,27,0.5 +2013,11,21,18,30,17.7,1.12,0.1388,0.66,0,0,0,6,16.8,0,0,0,0,0.28700000000000003,94.19,94.42,0.14,980,2.8000000000000003,60,0.4 +2013,11,21,19,30,18.6,1.1500000000000001,0.13090000000000002,0.66,47,332,94,6,16.8,55,34,0,60,0.28500000000000003,89.25,81.95,0.14,980,2.8000000000000003,100,0.7000000000000001 +2013,11,21,20,30,20.400000000000002,1.19,0.12190000000000001,0.66,84,645,313,6,16.6,169,47,0,186,0.28400000000000003,78.75,69.18,0.14,981,2.8000000000000003,102,1 +2013,11,21,21,30,22.200000000000003,1.22,0.11760000000000001,0.66,105,792,547,6,15.8,308,53,0,337,0.28300000000000003,67.25,56.07,0.14,981,2.8000000000000003,91,1.1 +2013,11,21,22,30,23.8,1.24,0.1173,0.66,118,871,757,6,15.200000000000001,442,55,0,483,0.28300000000000003,58.45,42.79,0.14,980,2.8000000000000003,77,1.1 +2013,11,21,23,30,24.5,1.24,0.1206,0.66,129,913,924,6,14.700000000000001,553,56,0,601,0.28200000000000003,54.4,29.5,0.14,980,2.8000000000000003,70,1.2000000000000002 +2013,11,22,0,30,26.1,1.22,0.1322,0.66,140,925,1027,6,14.4,568,32,0,599,0.281,48.61,16.6,0.14,979,3,48,1.2000000000000002 +2013,11,22,1,30,26.700000000000003,1.22,0.13570000000000002,0.66,144,932,1068,6,14.4,585,30,0,615,0.28200000000000003,46.78,7.33,0.14,979,3,44,1.3 +2013,11,22,2,30,27.1,1.22,0.13720000000000002,0.66,143,923,1037,6,14.4,564,30,0,592,0.28200000000000003,45.74,14.41,0.14,978,3.1,48,1.3 +2013,11,22,3,30,27,1.22,0.1729,0.66,154,871,929,6,14.4,470,25,0,492,0.28300000000000003,46.15,27.11,0.14,977,3.3000000000000003,55,1.3 +2013,11,22,4,30,26.5,1.22,0.1814,0.66,147,818,770,6,14.600000000000001,319,24,0,338,0.28300000000000003,48.14,40.37,0.14,977,3.4000000000000004,61,1.4000000000000001 +2013,11,22,5,30,25.700000000000003,1.23,0.1894,0.66,133,731,566,6,15,192,25,0,207,0.28300000000000003,51.56,53.660000000000004,0.14,977,3.6,67,1.7000000000000002 +2013,11,22,6,30,24.5,1.24,0.19160000000000002,0.66,107,590,340,6,15.5,86,17,0,93,0.28400000000000003,57.43,66.8,0.14,977,3.7,72,1.8 +2013,11,22,7,30,22.900000000000002,1.24,0.1832,0.66,62,337,122,6,16.1,24,0,0,24,0.28400000000000003,65.54,79.64,0.14,977,3.8000000000000003,73,1.8 +2013,11,22,8,30,21.5,1.23,0.164,0.66,0,0,0,6,16.7,0,0,0,0,0.28400000000000003,73.94,92.17,0.14,977,3.8000000000000003,71,1.7000000000000002 +2013,11,22,9,30,20.5,1.2,0.1468,0.66,0,0,0,6,16.900000000000002,0,0,0,0,0.28500000000000003,79.97,103.93,0.14,977,3.8000000000000003,65,1.6 +2013,11,22,10,30,20.1,1.1500000000000001,0.1579,0.66,0,0,0,6,17.3,0,0,0,0,0.28400000000000003,83.78,114.61,0.14,978,3.9000000000000004,50,1.5 +2013,11,22,11,30,19.8,1.1300000000000001,0.16740000000000002,0.66,0,0,0,6,17.5,0,0,0,0,0.28300000000000003,86.81,123.56,0.14,978,4,45,1.1 +2013,11,22,12,30,19.5,1.1300000000000001,0.17600000000000002,0.66,0,0,0,6,17.900000000000002,0,0,0,0,0.28300000000000003,90.62,129.85,0.14,978,4.1000000000000005,68,0.7000000000000001 +2013,11,22,13,30,19.200000000000003,1.1300000000000001,0.1826,0.66,0,0,0,6,18.1,0,0,0,0,0.28300000000000003,93.06,132.4,0.14,977,4.2,78,0.7000000000000001 +2013,11,22,14,30,19,1.11,0.20470000000000002,0.66,0,0,0,6,18.1,0,0,0,0,0.28300000000000003,94.43,130.62,0.14,977,4.2,63,0.8 +2013,11,22,15,30,18.8,1.11,0.2036,0.66,0,0,0,6,18.1,0,0,0,0,0.28200000000000003,95.97,124.93,0.14,977,4.3,51,0.9 +2013,11,22,16,30,18.6,1.12,0.1973,0.66,0,0,0,6,18.2,0,0,0,0,0.281,97.47,116.38,0.14,976,4.3,45,0.8 +2013,11,22,17,30,18.5,1.12,0.19440000000000002,0.66,0,0,0,6,18.3,0,0,0,0,0.28200000000000003,98.86,105.96000000000001,0.14,977,4.3,43,0.7000000000000001 +2013,11,22,18,30,18.5,1.1,0.19410000000000002,0.66,0,0,0,6,18.400000000000002,0,0,0,0,0.28300000000000003,99.55,94.36,0.14,977,4.4,44,0.7000000000000001 +2013,11,22,19,30,19,1.09,0.17880000000000001,0.66,51,258,88,6,18.7,8,0,0,8,0.28500000000000003,98.38,81.91,0.14,978,4.3,47,1 +2013,11,22,20,30,19.5,1.07,0.16,0.66,95,576,300,6,19.1,15,0,0,15,0.28600000000000003,97.46000000000001,69.16,0.14,978,4.2,45,1.4000000000000001 +2013,11,22,21,30,20.3,1.09,0.1694,0.66,125,721,527,6,19.5,31,0,0,31,0.28600000000000003,95.12,56.06,0.14,978,4,34,1.7000000000000002 +2013,11,22,22,30,21.700000000000003,1.09,0.17120000000000002,0.66,143,805,733,6,19.8,53,0,0,53,0.28500000000000003,88.95,42.78,0.14,977,4,16,1.9000000000000001 +2013,11,22,23,30,22.6,1.07,0.16440000000000002,0.66,152,860,900,6,19.6,72,7,0,78,0.28400000000000003,83.37,29.490000000000002,0.14,977,3.9000000000000004,7,1.9000000000000001 +2013,11,23,0,30,25.5,1.06,0.15940000000000001,0.66,156,890,1009,6,19.400000000000002,86,12,0,98,0.28300000000000003,68.96000000000001,16.55,0.14,976,3.9000000000000004,344,1.7000000000000002 +2013,11,23,1,30,27.1,1.05,0.1501,0.66,153,907,1054,6,19.3,93,14,0,107,0.28200000000000003,62.480000000000004,7.13,0.14,975,3.8000000000000003,331,1.4000000000000001 +2013,11,23,2,30,28.1,1.04,0.1369,0.66,144,911,1027,6,19.3,88,13,0,101,0.28200000000000003,58.83,14.24,0.14,974,3.8000000000000003,326,1.1 +2013,11,23,3,30,28.400000000000002,1.02,0.09630000000000001,0.66,119,920,939,6,19.3,75,9,0,83,0.28200000000000003,57.69,26.98,0.14,973,3.8000000000000003,336,1.1 +2013,11,23,4,30,27.900000000000002,1.02,0.09920000000000001,0.66,112,877,782,6,19.400000000000002,57,1,0,58,0.28300000000000003,59.75,40.24,0.14,973,3.9000000000000004,178,1.1 +2013,11,23,5,30,27.1,1.01,0.1046,0.66,103,802,579,6,19.8,35,0,0,35,0.28400000000000003,64.4,53.53,0.14,973,4,17,1.3 +2013,11,23,6,30,25.8,0.99,0.11910000000000001,0.66,88,659,349,6,20.5,17,0,0,17,0.28400000000000003,72.60000000000001,66.67,0.14,973,4.1000000000000005,22,1.4000000000000001 +2013,11,23,7,30,24.3,0.99,0.1326,0.66,58,385,128,6,21.1,7,0,0,7,0.28500000000000003,82.21000000000001,79.5,0.14,973,4.1000000000000005,26,1.4000000000000001 +2013,11,23,8,30,22.8,1,0.13340000000000002,0.66,0,0,0,6,21.700000000000003,0,0,0,0,0.28500000000000003,93.4,92.01,0.14,974,4,29,1.3 +2013,11,23,9,30,21.8,1.02,0.12000000000000001,0.66,0,0,0,6,21.200000000000003,0,0,0,0,0.28600000000000003,96.46000000000001,103.76,0.14,974,3.9000000000000004,26,1.1 +2013,11,23,10,30,21.200000000000003,1.03,0.12000000000000001,0.66,0,0,0,6,21.1,0,0,0,0,0.28600000000000003,99.19,114.42,0.14,974,3.8000000000000003,191,0.9 +2013,11,23,11,30,20.8,1.06,0.1325,0.66,0,0,0,6,20.8,0,0,0,0,0.28600000000000003,100,123.35000000000001,0.14,974,3.9000000000000004,342,0.8 +2013,11,23,12,30,20.5,1.1,0.1463,0.66,0,0,0,6,20.5,0,0,0,0,0.28500000000000003,100,129.63,0.14,974,4,322,0.9 +2013,11,23,13,30,20.200000000000003,1.12,0.15560000000000002,0.66,0,0,0,6,20.200000000000003,0,0,0,0,0.28500000000000003,100,132.19,0.14,974,3.9000000000000004,322,0.9 +2013,11,23,14,30,19.700000000000003,1.11,0.14800000000000002,0.66,0,0,0,6,19.700000000000003,0,0,0,0,0.28400000000000003,100,130.44,0.14,974,3.7,325,0.8 +2013,11,23,15,30,19.200000000000003,1.09,0.14170000000000002,0.66,0,0,0,6,19.200000000000003,0,0,0,0,0.28400000000000003,100,124.79,0.14,974,3.4000000000000004,325,0.7000000000000001 +2013,11,23,16,30,18.7,1.08,0.1371,0.66,0,0,0,6,18.7,0,0,0,0,0.28300000000000003,100,116.27,0.14,974,3.3000000000000003,321,0.7000000000000001 +2013,11,23,17,30,18.3,1.08,0.13290000000000002,0.66,0,0,0,6,18.3,0,0,0,0,0.28300000000000003,100,105.88,0.14,975,3.2,321,0.7000000000000001 +2013,11,23,18,30,18.3,1.08,0.1322,0.66,0,0,0,6,18.3,0,0,0,0,0.28400000000000003,100,94.31,0.14,975,3.2,326,0.8 +2013,11,23,19,30,18.900000000000002,1.09,0.1345,0.66,48,320,93,6,18.5,57,43,0,63,0.28400000000000003,97.68,81.88,0.14,976,3.3000000000000003,335,1.1 +2013,11,23,20,30,19.900000000000002,1.09,0.1394,0.66,89,612,307,6,19.1,159,35,0,171,0.28400000000000003,94.93,69.14,0.14,976,3.4000000000000004,338,1.4000000000000001 +2013,11,23,21,30,21.400000000000002,1.08,0.149,0.66,117,746,534,6,19.6,130,25,0,143,0.28400000000000003,89.68,56.050000000000004,0.14,976,3.6,333,1.7000000000000002 +2013,11,23,22,30,23.3,1.07,0.15480000000000002,0.66,136,822,739,6,20.200000000000003,125,26,0,144,0.28400000000000003,82.65,42.78,0.14,975,3.7,328,1.8 +2013,11,23,23,30,24.200000000000003,1.08,0.1506,0.66,145,873,905,6,20.5,169,30,0,195,0.28400000000000003,79.79,29.48,0.14,975,3.8000000000000003,326,1.9000000000000001 +2013,11,24,0,30,26.6,0.98,0.08420000000000001,0.66,117,946,1024,6,20.700000000000003,86,12,0,98,0.28400000000000003,70.01,16.51,0.14,974,3.9000000000000004,312,2 +2013,11,24,1,30,28.200000000000003,0.98,0.0844,0.66,119,952,1065,6,20.6,93,14,0,106,0.28300000000000003,63.53,6.94,0.14,973,4,303,2.2 +2013,11,24,2,30,29.400000000000002,0.97,0.0858,0.66,119,946,1036,6,20.6,88,13,0,101,0.28300000000000003,59.28,14.07,0.14,972,4,291,2.2 +2013,11,24,3,30,29.900000000000002,0.96,0.1192,0.66,132,900,934,6,20.5,75,9,0,83,0.28300000000000003,56.980000000000004,26.85,0.14,971,4,282,2.1 +2013,11,24,4,30,29.900000000000002,0.9500000000000001,0.1267,0.66,127,855,780,6,19.900000000000002,57,2,0,58,0.28300000000000003,55.1,40.12,0.14,970,3.8000000000000003,274,2 +2013,11,24,5,30,29.6,0.9500000000000001,0.1218,0.66,111,794,584,6,19.1,35,0,0,35,0.28300000000000003,53.2,53.4,0.14,970,3.4000000000000004,268,1.7000000000000002 +2013,11,24,6,30,28.8,0.93,0.10600000000000001,0.66,85,695,361,6,18.2,40,0,0,40,0.28300000000000003,52.67,66.53,0.14,970,2.9000000000000004,262,1.3 +2013,11,24,7,30,26.700000000000003,0.91,0.08420000000000001,0.66,50,487,140,3,17.8,34,0,0,34,0.28400000000000003,58.17,79.35000000000001,0.14,971,2.4000000000000004,250,1 +2013,11,24,8,30,24,0.89,0.07250000000000001,0.66,0,0,0,0,18.1,0,0,0,0,0.28400000000000003,69.43,91.85000000000001,0.14,971,2,238,0.9 +2013,11,24,9,30,21.900000000000002,0.88,0.0682,0.66,0,0,0,0,16.3,0,0,0,0,0.28500000000000003,70.43,103.58,0.14,972,1.7000000000000002,229,0.9 +2013,11,24,10,30,20.400000000000002,0.87,0.0663,0.66,0,0,0,0,14.8,0,0,0,0,0.28500000000000003,70.26,114.22,0.14,973,1.6,223,0.9 +2013,11,24,11,30,19.200000000000003,0.87,0.0663,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.28400000000000003,70.11,123.15,0.14,973,1.5,216,0.8 +2013,11,24,12,30,18.1,0.88,0.0675,0.66,0,0,0,0,12.9,0,0,0,0,0.28300000000000003,71.73,129.42000000000002,0.14,973,1.5,208,0.8 +2013,11,24,13,30,17.1,0.88,0.069,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.28300000000000003,74.68,131.99,0.14,973,1.5,199,0.8 +2013,11,24,14,30,16.400000000000002,0.88,0.0716,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.28300000000000003,78.59,130.26,0.14,973,1.6,189,0.8 +2013,11,24,15,30,15.9,0.88,0.07540000000000001,0.66,0,0,0,0,12.9,0,0,0,0,0.28300000000000003,82.23,124.65,0.14,973,1.7000000000000002,176,0.9 +2013,11,24,16,30,15.600000000000001,0.87,0.0796,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.28400000000000003,85.65,116.17,0.14,973,1.7000000000000002,162,0.9 +2013,11,24,17,30,15.4,0.86,0.0845,0.66,0,0,0,3,13.700000000000001,0,0,0,0,0.28500000000000003,89.77,105.81,0.14,973,1.8,148,0.9 +2013,11,24,18,30,15.600000000000001,0.87,0.0902,0.66,0,0,0,3,14.5,0,0,0,0,0.28500000000000003,92.88,94.26,0.14,974,1.8,139,0.9 +2013,11,24,19,30,17.2,0.87,0.0925,0.66,45,401,101,3,15.5,62,141,0,82,0.28500000000000003,90.02,81.85000000000001,0.14,974,1.8,133,1.1 +2013,11,24,20,30,19.900000000000002,0.87,0.09240000000000001,0.66,78,699,327,3,16.8,199,189,0,266,0.28400000000000003,82.12,69.13,0.14,974,1.9000000000000001,129,1.3 +2013,11,24,21,30,22.400000000000002,0.88,0.0913,0.66,97,838,565,3,17.3,512,78,0,555,0.28300000000000003,73.02,56.04,0.14,975,1.9000000000000001,131,1.1 +2013,11,24,22,30,24.900000000000002,0.89,0.08660000000000001,0.66,107,917,781,0,16.400000000000002,107,917,0,781,0.28200000000000003,59.22,42.78,0.14,974,1.9000000000000001,150,0.8 +2013,11,24,23,30,26,0.89,0.0844,0.66,114,962,952,0,15,114,962,0,952,0.281,50.72,29.48,0.14,974,1.9000000000000001,165,0.7000000000000001 +2013,11,25,0,30,28.400000000000002,0.9,0.0819,0.66,117,984,1061,0,14,117,984,0,1061,0.28,41.230000000000004,16.48,0.14,973,2,210,0.5 +2013,11,25,1,30,29.6,0.9,0.082,0.66,119,992,1104,0,13.200000000000001,119,992,0,1104,0.279,36.56,6.76,0.14,972,2,238,0.4 +2013,11,25,2,30,30.400000000000002,0.89,0.0823,0.66,118,987,1075,6,12.600000000000001,800,0,0,924,0.278,33.55,13.91,0.14,972,2,263,0.4 +2013,11,25,3,30,30.6,0.88,0.0911,0.66,118,960,976,6,12.100000000000001,800,0,0,856,0.279,32.17,26.71,0.14,971,2,290,0.4 +2013,11,25,4,30,30.200000000000003,0.89,0.0946,0.66,112,916,814,6,11.9,750,0,0,750,0.28,32.52,39.99,0.14,970,2.1,175,0.4 +2013,11,25,5,30,29.1,0.91,0.1004,0.66,103,843,607,6,12.100000000000001,539,64,0,578,0.28,35.04,53.27,0.14,971,2.1,57,0.7000000000000001 +2013,11,25,6,30,27.400000000000002,0.9500000000000001,0.1067,0.66,86,712,371,6,13,86,712,5,371,0.281,40.99,66.39,0.14,971,2.2,73,1 +2013,11,25,7,30,24.900000000000002,1,0.1148,0.66,56,450,140,6,14,56,450,5,140,0.28300000000000003,50.72,79.21000000000001,0.14,972,2.2,77,1.3 +2013,11,25,8,30,22.3,1.02,0.12190000000000001,0.66,0,0,0,6,16,0,0,0,0,0.28500000000000003,67.37,91.69,0.14,973,2.3000000000000003,78,1.3 +2013,11,25,9,30,20.700000000000003,1.03,0.12810000000000002,0.66,0,0,0,6,15.8,0,0,0,0,0.28600000000000003,73.65,103.41,0.14,974,2.3000000000000003,82,1 +2013,11,25,10,30,19.900000000000002,1.02,0.1333,0.66,0,0,0,6,16.3,0,0,0,0,0.28700000000000003,79.65,114.04,0.14,975,2.3000000000000003,88,0.7000000000000001 +2013,11,25,11,30,19.3,1,0.1369,0.66,0,0,0,6,16.7,0,0,0,0,0.28600000000000003,84.73,122.95,0.14,976,2.3000000000000003,98,0.6000000000000001 +2013,11,25,12,30,18.8,0.9500000000000001,0.1396,0.66,0,0,0,6,16.900000000000002,0,0,0,0,0.28600000000000003,88.78,129.21,0.14,976,2.4000000000000004,111,0.6000000000000001 +2013,11,25,13,30,18.400000000000002,0.91,0.1403,0.66,0,0,0,6,17,0,0,0,0,0.28500000000000003,91.53,131.79,0.14,976,2.4000000000000004,126,0.7000000000000001 +2013,11,25,14,30,18.1,0.87,0.1423,0.66,0,0,0,6,16.900000000000002,0,0,0,0,0.28500000000000003,92.99,130.09,0.14,976,2.4000000000000004,138,0.7000000000000001 +2013,11,25,15,30,17.8,0.84,0.1442,0.66,0,0,0,6,16.900000000000002,0,0,0,0,0.28600000000000003,94.36,124.52,0.14,976,2.4000000000000004,145,0.8 +2013,11,25,16,30,17.5,0.81,0.1436,0.66,0,0,0,6,16.8,0,0,0,0,0.28800000000000003,95.66,116.08,0.14,976,2.4000000000000004,148,0.9 +2013,11,25,17,30,17.2,0.81,0.1421,0.66,0,0,0,6,16.6,0,0,0,0,0.289,96.56,105.75,0.14,977,2.4000000000000004,148,1.1 +2013,11,25,18,30,17.2,0.81,0.14250000000000002,0.66,0,0,0,6,16.400000000000002,0,0,0,0,0.29,95.22,94.22,0.14,977,2.3000000000000003,145,1.4000000000000001 +2013,11,25,19,30,17.900000000000002,0.79,0.1436,0.66,52,306,96,6,16.2,28,0,0,28,0.291,89.61,81.83,0.14,978,2.3000000000000003,141,2.1 +2013,11,25,20,30,19.1,0.77,0.1434,0.66,95,616,315,6,15.700000000000001,53,6,0,55,0.292,80.64,69.12,0.14,979,2.3000000000000003,136,2.5 +2013,11,25,21,30,20.700000000000003,0.75,0.14120000000000002,0.66,120,771,550,6,15.200000000000001,69,12,0,75,0.292,70.77,56.050000000000004,0.14,980,2.2,129,2.5 +2013,11,25,22,30,22.3,0.73,0.1365,0.66,134,859,764,6,15,115,24,0,133,0.292,63.230000000000004,42.79,0.14,980,2.2,121,2.4000000000000004 +2013,11,25,23,30,23.200000000000003,0.6900000000000001,0.1298,0.66,141,912,935,6,15,200,31,0,226,0.292,59.980000000000004,29.48,0.14,980,2.2,117,2.3000000000000003 +2013,11,26,0,30,25.200000000000003,0.6900000000000001,0.11910000000000001,0.66,142,943,1047,6,15,241,32,0,271,0.29,53.31,16.46,0.15,979,2.3000000000000003,110,2.1 +2013,11,26,1,30,25.900000000000002,0.67,0.12490000000000001,0.66,148,948,1089,3,14.9,188,31,0,219,0.289,50.730000000000004,6.59,0.15,979,2.3000000000000003,108,2.1 +2013,11,26,2,30,26.1,0.65,0.1322,0.66,151,934,1058,3,14.600000000000001,160,29,0,188,0.289,49.29,13.75,0.15,978,2.4000000000000004,107,2.2 +2013,11,26,3,30,25.8,0.67,0.1776,0.66,169,876,952,3,14.5,147,28,0,172,0.289,49.6,26.580000000000002,0.15,978,2.4000000000000004,105,2.4000000000000004 +2013,11,26,4,30,25.3,0.66,0.1872,0.66,163,821,793,3,14.4,158,29,0,179,0.28800000000000003,50.77,39.86,0.15,978,2.4000000000000004,103,2.7 +2013,11,26,5,30,24.400000000000002,0.64,0.1852,0.66,144,742,589,3,14.4,162,26,0,177,0.28700000000000003,53.550000000000004,53.14,0.15,978,2.4000000000000004,100,2.9000000000000004 +2013,11,26,6,30,23.3,0.62,0.1703,0.66,113,620,363,3,14.3,113,20,0,121,0.28700000000000003,57.1,66.25,0.15,979,2.3000000000000003,98,2.9000000000000004 +2013,11,26,7,30,21.700000000000003,0.63,0.1454,0.66,66,385,139,3,14.200000000000001,50,0,0,50,0.28700000000000003,62.47,79.06,0.15,980,2.3000000000000003,98,2.5 +2013,11,26,8,30,20.1,0.64,0.12760000000000002,0.66,0,0,0,3,14.200000000000001,0,0,0,0,0.28800000000000003,68.94,91.53,0.15,981,2.2,100,1.8 +2013,11,26,9,30,19,0.67,0.12290000000000001,0.66,0,0,0,3,14.200000000000001,0,0,0,0,0.28700000000000003,73.92,103.24000000000001,0.15,982,2.2,105,1.6 +2013,11,26,10,30,18.3,0.72,0.1312,0.66,0,0,0,6,13.9,0,0,0,0,0.28700000000000003,75.69,113.85000000000001,0.15,982,2.2,112,1.6 +2013,11,26,11,30,17.7,0.78,0.1469,0.66,0,0,0,6,13.700000000000001,0,0,0,0,0.28600000000000003,77.21000000000001,122.75,0.15,983,2.1,117,1.5 +2013,11,26,12,30,17.2,0.84,0.16160000000000002,0.66,0,0,0,6,13.5,0,0,0,0,0.28500000000000003,78.71000000000001,129.01,0.15,983,2.1,120,1.3 +2013,11,26,13,30,16.7,0.89,0.168,0.66,0,0,0,6,13.3,0,0,0,0,0.28400000000000003,80.59,131.6,0.15,982,2.1,121,1.1 +2013,11,26,14,30,16.3,0.91,0.1642,0.66,0,0,0,0,13.3,0,0,0,0,0.28400000000000003,82.33,129.93,0.15,982,2.1,125,0.9 +2013,11,26,15,30,15.8,0.91,0.1532,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.28400000000000003,84.57000000000001,124.39,0.15,982,2,131,0.8 +2013,11,26,16,30,15.3,0.91,0.1408,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.28500000000000003,86.56,115.99000000000001,0.15,982,2,139,0.7000000000000001 +2013,11,26,17,30,14.9,0.91,0.1293,0.66,0,0,0,0,12.9,0,0,0,0,0.28500000000000003,88.02,105.69,0.15,983,2,146,0.7000000000000001 +2013,11,26,18,30,14.9,0.91,0.1193,0.66,0,0,0,0,12.8,0,0,0,0,0.28500000000000003,87.04,94.19,0.15,983,1.9000000000000001,152,0.8 +2013,11,26,19,30,16.2,0.92,0.11080000000000001,0.66,47,371,100,0,12.8,47,371,0,100,0.28500000000000003,80.47,81.82000000000001,0.15,984,1.9000000000000001,150,1.2000000000000002 +2013,11,26,20,30,18.5,0.93,0.1039,0.66,82,684,326,0,12.4,82,684,0,326,0.28500000000000003,67.45,69.11,0.15,984,1.9000000000000001,138,1.8 +2013,11,26,21,30,20.5,0.93,0.09910000000000001,0.66,101,832,566,0,11.8,101,832,0,566,0.28500000000000003,57.230000000000004,56.050000000000004,0.15,985,1.8,130,1.8 +2013,11,26,22,30,22.3,0.93,0.0945,0.66,112,912,782,0,11.5,112,912,0,782,0.28500000000000003,50.57,42.800000000000004,0.15,984,1.8,127,1.6 +2013,11,26,23,30,23.1,0.93,0.0907,0.66,119,959,954,0,11.700000000000001,119,959,0,954,0.28500000000000003,48.63,29.490000000000002,0.15,984,1.8,127,1.5 +2013,11,27,0,30,25.5,0.9,0.094,0.66,126,979,1065,0,12,126,979,0,1065,0.28600000000000003,42.910000000000004,16.45,0.15,983,1.8,133,1.3 +2013,11,27,1,30,26.700000000000003,0.91,0.092,0.66,127,989,1110,0,12.200000000000001,127,989,0,1110,0.28600000000000003,40.52,6.42,0.15,982,1.8,127,1.2000000000000002 +2013,11,27,2,30,27.6,0.93,0.0898,0.66,124,983,1080,0,12.200000000000001,124,983,0,1080,0.28700000000000003,38.37,13.6,0.15,981,1.9000000000000001,113,1.1 +2013,11,27,3,30,28,0.89,0.10020000000000001,0.66,126,955,981,0,12.100000000000001,126,955,0,981,0.28700000000000003,37.27,26.45,0.15,981,1.9000000000000001,97,1.2000000000000002 +2013,11,27,4,30,28,0.9,0.1057,0.66,120,909,819,3,12.100000000000001,506,98,0,582,0.28800000000000003,37.27,39.730000000000004,0.15,980,2,84,1.4000000000000001 +2013,11,27,5,30,27.3,0.92,0.10880000000000001,0.66,108,836,611,3,12.200000000000001,343,55,0,377,0.28800000000000003,39.04,53.01,0.15,980,2.1,77,1.8 +2013,11,27,6,30,25.900000000000002,0.9400000000000001,0.10980000000000001,0.66,89,710,377,3,12.4,229,122,0,279,0.28800000000000003,43.160000000000004,66.12,0.15,980,2.2,75,2.2 +2013,11,27,7,30,23.6,0.96,0.1102,0.66,58,461,146,3,13,91,165,0,122,0.28600000000000003,51.49,78.91,0.15,981,2.3000000000000003,76,2.1 +2013,11,27,8,30,21.200000000000003,0.96,0.1121,0.66,0,0,0,3,14,0,0,0,0,0.28500000000000003,63.4,91.38,0.15,982,2.4000000000000004,78,1.7000000000000002 +2013,11,27,9,30,19.6,0.9500000000000001,0.11270000000000001,0.66,0,0,0,3,14.5,0,0,0,0,0.28400000000000003,72.25,103.07000000000001,0.15,983,2.4000000000000004,81,1.5 +2013,11,27,10,30,18.6,0.93,0.1125,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.28400000000000003,77.69,113.67,0.15,984,2.4000000000000004,86,1.2000000000000002 +2013,11,27,11,30,17.900000000000002,0.93,0.11120000000000001,0.66,0,0,0,0,14.8,0,0,0,0,0.28300000000000003,82.23,122.55,0.15,984,2.3000000000000003,91,0.8 +2013,11,27,12,30,17.400000000000002,0.93,0.10890000000000001,0.66,0,0,0,0,14.9,0,0,0,0,0.28200000000000003,85.22,128.81,0.15,984,2.3000000000000003,93,0.6000000000000001 +2013,11,27,13,30,16.900000000000002,0.93,0.1063,0.66,0,0,0,0,14.8,0,0,0,0,0.281,87.64,131.41,0.15,983,2.3000000000000003,91,0.6000000000000001 +2013,11,27,14,30,16.7,0.9500000000000001,0.10360000000000001,0.66,0,0,0,0,14.700000000000001,0,0,0,0,0.281,88.15,129.77,0.15,983,2.2,83,0.5 +2013,11,27,15,30,16.5,0.96,0.1005,0.66,0,0,0,0,14.5,0,0,0,0,0.281,88.18,124.27,0.15,982,2.2,68,0.4 +2013,11,27,16,30,16.400000000000002,0.98,0.0978,0.66,0,0,0,0,14.4,0,0,0,0,0.281,88.12,115.91,0.15,982,2.2,38,0.30000000000000004 +2013,11,27,17,30,16.1,0.99,0.0959,0.66,0,0,0,0,14.4,0,0,0,0,0.28200000000000003,89.45,105.64,0.15,982,2.1,184,0.30000000000000004 +2013,11,27,18,30,16.1,0.98,0.0946,0.66,0,0,0,0,14.3,0,0,0,0,0.28300000000000003,89.36,94.16,0.15,983,2.1,335,0.30000000000000004 +2013,11,27,19,30,17.2,0.97,0.09340000000000001,0.66,45,399,102,0,14.5,45,399,0,102,0.28200000000000003,84.31,81.8,0.15,983,2.1,329,0.5 +2013,11,27,20,30,19.5,0.97,0.09190000000000001,0.66,78,697,326,0,14.9,78,697,0,326,0.28200000000000003,74.53,69.12,0.15,984,2.1,341,0.6000000000000001 +2013,11,27,21,30,21.8,0.98,0.0916,0.66,97,834,562,0,14.8,97,834,0,562,0.281,64.26,56.07,0.15,984,2.1,341,0.7000000000000001 +2013,11,27,22,30,23.900000000000002,0.99,0.08800000000000001,0.66,108,915,779,0,14.8,108,915,0,779,0.28,56.82,42.82,0.15,983,2,332,0.9 +2013,11,27,23,30,25,1.01,0.082,0.66,113,963,951,0,14.9,113,963,0,951,0.28,53.65,29.51,0.15,983,2,328,0.9 +2013,11,28,0,30,28.200000000000003,1.07,0.0722,0.66,112,996,1067,0,14.5,112,996,0,1067,0.279,43.21,16.44,0.15,981,1.9000000000000001,321,0.8 +2013,11,28,1,30,29.8,1.08,0.07050000000000001,0.66,113,1006,1112,0,13.600000000000001,113,1006,0,1112,0.279,37.1,6.2700000000000005,0.15,980,1.9000000000000001,326,0.6000000000000001 +2013,11,28,2,30,30.8,1.08,0.0704,0.66,111,1001,1085,0,12.9,111,1001,0,1085,0.28,33.480000000000004,13.44,0.15,979,1.9000000000000001,345,0.5 +2013,11,28,3,30,31.200000000000003,1.02,0.093,0.66,120,964,983,0,12.4,120,964,0,983,0.28,31.64,26.32,0.15,978,1.9000000000000001,189,0.6000000000000001 +2013,11,28,4,30,31,1.01,0.0966,0.66,114,920,823,0,12.100000000000001,114,920,0,823,0.28,31.41,39.6,0.15,977,2,23,0.8 +2013,11,28,5,30,30.3,1,0.1008,0.66,103,850,616,0,12,103,850,0,616,0.28,32.57,52.870000000000005,0.15,977,2,28,1.1 +2013,11,28,6,30,28.8,1.01,0.1636,0.66,103,654,369,0,12.3,103,654,0,369,0.281,36.15,65.98,0.15,977,2.1,33,1.5 +2013,11,28,7,30,26.1,1.02,0.1695,0.66,65,392,141,0,13.3,65,392,0,141,0.28200000000000003,45.08,78.77,0.15,977,2.1,39,1.6 +2013,11,28,8,30,23.200000000000003,1.02,0.1713,0.66,0,0,0,0,15.3,0,0,0,0,0.28300000000000003,61.08,91.22,0.15,978,2.1,39,1.5 +2013,11,28,9,30,21.6,1.03,0.1698,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.28400000000000003,69.13,102.9,0.15,978,2.1,35,1.3 +2013,11,28,10,30,20.6,1.04,0.1698,0.66,0,0,0,0,16.1,0,0,0,0,0.28400000000000003,75.18,113.49000000000001,0.15,979,2.1,29,1.1 +2013,11,28,11,30,19.900000000000002,1.05,0.1715,0.66,0,0,0,0,16.3,0,0,0,0,0.28400000000000003,79.51,122.36,0.15,979,2.1,23,0.9 +2013,11,28,12,30,19.3,1.07,0.1754,0.66,0,0,0,0,16.3,0,0,0,0,0.28300000000000003,82.65,128.62,0.15,979,2.1,15,0.8 +2013,11,28,13,30,18.8,1.08,0.1801,0.66,0,0,0,6,16.1,0,0,0,0,0.28300000000000003,84.55,131.23,0.15,978,2.1,8,0.8 +2013,11,28,14,30,18.400000000000002,1.1,0.1821,0.66,0,0,0,6,15.9,0,0,0,0,0.28400000000000003,85.39,129.63,0.15,977,2.1,182,0.9 +2013,11,28,15,30,18,1.11,0.1821,0.66,0,0,0,6,15.700000000000001,0,0,0,0,0.28500000000000003,86.25,124.16,0.15,977,2.1,351,0.8 +2013,11,28,16,30,17.6,1.11,0.1796,0.66,0,0,0,6,15.5,0,0,0,0,0.28600000000000003,87.41,115.83,0.15,977,2.1,334,0.8 +2013,11,28,17,30,17.3,1.1,0.1726,0.66,0,0,0,6,15.3,0,0,0,0,0.28500000000000003,88.17,105.59,0.15,978,2.2,322,0.8 +2013,11,28,18,30,17.400000000000002,1.1,0.16690000000000002,0.66,0,0,0,6,15.200000000000001,0,0,0,0,0.28300000000000003,86.92,94.14,0.15,978,2.3000000000000003,317,0.9 +2013,11,28,19,30,18.8,1.11,0.1612,0.66,50,305,94,6,15.4,50,305,5,94,0.28200000000000003,80.45,81.8,0.15,978,2.4000000000000004,313,1.4000000000000001 +2013,11,28,20,30,21.3,1.1300000000000001,0.1593,0.66,94,608,311,6,15.3,94,608,5,311,0.281,68.76,69.13,0.15,979,2.5,310,2.1 +2013,11,28,21,30,24.200000000000003,1.1500000000000001,0.1567,0.66,119,759,542,6,15.5,463,134,0,538,0.281,58.300000000000004,56.08,0.15,979,2.6,312,2.4000000000000004 +2013,11,28,22,30,27.1,1.16,0.1527,0.66,135,844,753,6,15.5,712,0,0,712,0.28200000000000003,49.11,42.84,0.15,978,2.7,313,2.6 +2013,11,28,23,30,28.5,1.1400000000000001,0.151,0.66,145,891,920,6,15.3,800,0,0,836,0.28200000000000003,44.77,29.53,0.15,978,2.8000000000000003,312,2.7 +2013,11,29,0,30,31.200000000000003,1.07,0.17250000000000001,0.66,162,899,1024,6,15.4,717,143,0,854,0.28200000000000003,38.45,16.44,0.15,976,2.9000000000000004,307,2.8000000000000003 +2013,11,29,1,30,32.4,1.02,0.18080000000000002,0.66,170,901,1066,6,15.700000000000001,682,76,0,758,0.28200000000000003,36.7,6.12,0.15,975,3,304,2.6 +2013,11,29,2,30,32.7,1.01,0.1995,0.66,179,880,1035,6,16,419,23,0,441,0.28200000000000003,36.660000000000004,13.290000000000001,0.15,974,3.1,300,2.4000000000000004 +2013,11,29,3,30,31.900000000000002,0.99,0.3119,0.66,223,777,920,6,16,194,31,0,222,0.281,38.5,26.18,0.15,973,3.3000000000000003,287,2.2 +2013,11,29,4,30,30.6,0.99,0.3748,0.66,231,680,756,6,16.400000000000002,104,21,0,120,0.279,42.32,39.47,0.15,973,3.6,267,2.1 +2013,11,29,5,30,29.200000000000003,0.98,0.3836,0.66,205,581,557,6,16.900000000000002,61,8,0,65,0.278,47.61,52.74,0.15,974,3.8000000000000003,247,1.7000000000000002 +2013,11,29,6,30,27.5,0.99,0.3693,0.66,157,443,338,6,17.8,32,0,0,32,0.277,55.63,65.84,0.15,974,3.9000000000000004,218,1.2000000000000002 +2013,11,29,7,30,25.5,1,0.3512,0.66,85,213,127,6,18.900000000000002,13,0,0,13,0.277,66.9,78.62,0.15,974,4.1000000000000005,189,1.1 +2013,11,29,8,30,23.8,0.98,0.35050000000000003,0.66,0,0,0,6,19.8,0,0,0,0,0.277,78.10000000000001,91.06,0.15,975,4.3,175,1 +2013,11,29,9,30,22.700000000000003,0.97,0.37560000000000004,0.66,0,0,0,6,20.200000000000003,0,0,0,0,0.278,85.81,102.73,0.15,976,4.5,171,1 +2013,11,29,10,30,22,0.9500000000000001,0.3816,0.66,0,0,0,6,20.400000000000002,0,0,0,0,0.279,90.44,113.31,0.15,976,4.6000000000000005,159,1 +2013,11,29,11,30,21.5,0.93,0.3486,0.66,0,0,0,6,20.400000000000002,0,0,0,0,0.279,93.60000000000001,122.18,0.15,976,4.7,151,0.9 +2013,11,29,12,30,21.1,0.92,0.3393,0.66,0,0,0,6,20.5,0,0,0,0,0.28,96.47,128.43,0.15,976,4.7,159,0.8 +2013,11,29,13,30,20.8,0.91,0.3407,0.66,0,0,0,6,20.5,0,0,0,0,0.279,97.87,131.06,0.15,976,4.7,164,0.7000000000000001 +2013,11,29,14,30,20.3,0.89,0.3284,0.66,0,0,0,6,20.3,0,0,0,0,0.28,99.94,129.48,0.15,976,4.6000000000000005,145,0.7000000000000001 +2013,11,29,15,30,19.8,0.89,0.329,0.66,0,0,0,6,19.8,0,0,0,0,0.281,100,124.06,0.15,976,4.6000000000000005,124,0.9 +2013,11,29,16,30,19.400000000000002,0.86,0.3316,0.66,0,0,0,6,19.400000000000002,0,0,0,0,0.281,100,115.76,0.15,976,4.6000000000000005,120,1.1 +2013,11,29,17,30,19,0.85,0.3255,0.66,0,0,0,6,19,0,0,0,0,0.281,100,105.55,0.15,976,4.6000000000000005,128,1.1 +2013,11,29,18,30,18.7,0.9,0.34650000000000003,0.66,0,0,0,6,18.7,0,0,0,0,0.28,100,94.12,0.15,977,4.5,143,1 +2013,11,29,19,30,18.6,0.9,0.3285,0.66,61,138,80,6,18.6,14,0,0,14,0.28,100,81.8,0.15,978,4.4,151,1.3 +2013,11,29,20,30,18.8,0.86,0.2914,0.66,129,439,285,6,18.7,31,0,0,31,0.281,99.11,69.14,0.15,979,4.3,148,1.9000000000000001 +2013,11,29,21,30,19.200000000000003,0.84,0.2768,0.66,165,618,510,6,18.6,51,2,0,52,0.28200000000000003,96.4,56.11,0.15,980,4.1000000000000005,143,2.4000000000000004 +2013,11,29,22,30,20.1,0.8,0.23450000000000001,0.66,175,750,724,6,18.2,75,12,0,84,0.28300000000000003,89.09,42.87,0.15,980,3.8000000000000003,141,2.8000000000000003 +2013,11,29,23,30,20.700000000000003,0.76,0.19360000000000002,0.66,170,836,898,3,17.7,93,16,0,107,0.28400000000000003,82.95,29.560000000000002,0.15,981,3.7,142,2.9000000000000004 +2013,11,30,0,30,22,0.75,0.1688,0.66,166,884,1013,3,17.1,88,12,0,100,0.28300000000000003,73.77,16.45,0.15,981,3.6,142,3 +2013,11,30,1,30,22.3,0.76,0.13490000000000002,0.66,150,919,1064,3,16.8,75,6,0,81,0.28300000000000003,71.13,5.99,0.15,981,3.6,141,3 +2013,11,30,2,30,22.200000000000003,0.75,0.11220000000000001,0.66,137,932,1045,3,16.6,75,6,0,80,0.28300000000000003,70.49,13.13,0.15,981,3.5,140,3.1 +2013,11,30,3,30,21.900000000000002,0.74,0.10250000000000001,0.66,127,923,956,3,16.3,72,6,0,78,0.28400000000000003,70.36,26.05,0.15,982,3.3000000000000003,139,3.3000000000000003 +2013,11,30,4,30,21.400000000000002,0.7000000000000001,0.0969,0.66,117,890,805,3,15.8,64,5,0,68,0.28500000000000003,70.39,39.35,0.15,982,3.2,137,3.2 +2013,11,30,5,30,20.8,0.63,0.092,0.66,103,831,608,3,15.200000000000001,50,0,0,50,0.28700000000000003,70.13,52.61,0.15,982,3,136,3.1 +2013,11,30,6,30,20.200000000000003,0.58,0.0907,0.66,86,720,382,3,14.5,29,0,0,29,0.29,69.85000000000001,65.7,0.15,983,2.7,135,2.7 +2013,11,30,7,30,19.1,0.55,0.08220000000000001,0.66,56,497,155,3,14,10,0,0,10,0.292,72.35000000000001,78.48,0.15,984,2.5,136,1.9000000000000001 +2013,11,30,8,30,17.8,0.55,0.0766,0.66,0,0,0,3,14,0,0,0,0,0.293,78.35000000000001,90.91,0.15,985,2.3000000000000003,138,1.3 +2013,11,30,9,30,17,0.56,0.07680000000000001,0.66,0,0,0,3,13.9,0,0,0,0,0.294,81.75,102.57000000000001,0.15,986,2.2,141,1 +2013,11,30,10,30,16.5,0.56,0.0779,0.66,0,0,0,3,13.700000000000001,0,0,0,0,0.293,83.33,113.13,0.15,986,2.1,144,1 +2013,11,30,11,30,16,0.56,0.0781,0.66,0,0,0,3,13.5,0,0,0,0,0.291,85.15,121.99000000000001,0.15,987,2,145,1 +2013,11,30,12,30,15.600000000000001,0.5700000000000001,0.077,0.66,0,0,0,3,13.4,0,0,0,0,0.289,86.75,128.25,0.15,987,2,145,1 +2013,11,30,13,30,15.200000000000001,0.6,0.0728,0.66,0,0,0,3,13.3,0,0,0,0,0.28700000000000003,88.67,130.89000000000001,0.15,987,1.9000000000000001,146,0.9 +2013,11,30,14,30,14.8,0.62,0.067,0.66,0,0,0,3,13.3,0,0,0,0,0.28700000000000003,90.55,129.35,0.15,987,1.9000000000000001,147,0.9 +2013,11,30,15,30,14.5,0.64,0.0606,0.66,0,0,0,3,13.200000000000001,0,0,0,0,0.28600000000000003,91.64,123.96000000000001,0.15,986,1.9000000000000001,147,0.8 +2013,11,30,16,30,14.100000000000001,0.65,0.054700000000000006,0.66,0,0,0,3,13.100000000000001,0,0,0,0,0.28600000000000003,93.60000000000001,115.7,0.15,987,1.9000000000000001,150,0.8 +2013,11,30,17,30,13.8,0.65,0.0512,0.66,0,0,0,3,13,0,0,0,0,0.28500000000000003,95.02,105.52,0.15,987,1.8,157,0.8 +2013,11,30,18,30,13.9,0.66,0.048600000000000004,0.66,0,0,0,3,13,0,0,0,0,0.28400000000000003,94.10000000000001,94.11,0.15,988,1.7000000000000002,162,0.8 +2013,11,30,19,30,15.100000000000001,0.67,0.046400000000000004,0.66,39,492,109,3,13.200000000000001,15,0,0,15,0.28300000000000003,88.41,81.8,0.15,988,1.7000000000000002,159,1.3 +2013,11,30,20,30,17.1,0.6900000000000001,0.0434,0.66,63,779,340,3,13.5,74,13,0,79,0.28300000000000003,79.46000000000001,69.16,0.15,989,1.6,147,2 +2013,11,30,21,30,19.1,0.72,0.0417,0.66,77,904,581,3,13.200000000000001,264,31,0,281,0.28300000000000003,68.74,56.13,0.15,989,1.6,136,2.4000000000000004 +2013,11,30,22,30,20.900000000000002,0.75,0.0408,0.66,86,974,799,0,12.600000000000001,86,974,0,799,0.28300000000000003,59.17,42.9,0.15,989,1.5,130,2.5 +2013,11,30,23,30,21.700000000000003,0.79,0.039900000000000005,0.66,91,1012,972,0,12.3,91,1012,0,972,0.28300000000000003,54.99,29.59,0.15,989,1.5,129,2.4000000000000004 +2013,12,1,0,30,23.6,0.68,0.0618,0.67,110,1010,1078,0,12.100000000000001,110,1010,0,1078,0.28200000000000003,48.34,16.46,0.15,989,1.6,127,2.4000000000000004 +2013,12,1,1,30,24.400000000000002,0.68,0.0626,0.67,112,1017,1124,0,11.8,112,1017,0,1124,0.281,45.39,5.86,0.15,988,1.6,126,2.4000000000000004 +2013,12,1,2,30,24.900000000000002,0.68,0.0641,0.67,112,1009,1095,0,11.600000000000001,112,1009,0,1095,0.28,43.44,12.98,0.15,987,1.7000000000000002,124,2.5 +2013,12,1,3,30,24.900000000000002,0.65,0.0779,0.67,116,976,994,3,11.5,379,24,0,401,0.28,43.02,25.92,0.15,987,1.8,124,2.6 +2013,12,1,4,30,24.6,0.62,0.0847,0.67,113,932,836,3,11.4,201,29,0,223,0.28,43.5,39.22,0.15,987,1.8,123,2.7 +2013,12,1,5,30,23.700000000000003,0.6,0.0889,0.67,104,863,629,3,11.3,144,26,0,159,0.28,45.77,52.480000000000004,0.15,987,1.8,122,2.8000000000000003 +2013,12,1,6,30,22.5,0.59,0.0937,0.67,88,737,393,3,11.4,73,14,0,79,0.28,49.370000000000005,65.56,0.15,987,1.9000000000000001,119,2.8000000000000003 +2013,12,1,7,30,20.8,0.59,0.0918,0.67,59,499,160,3,11.5,20,0,0,20,0.28,55.11,78.33,0.15,988,1.9000000000000001,117,2.3000000000000003 +2013,12,1,8,30,18.900000000000002,0.6,0.0835,0.67,0,0,0,3,11.8,0,0,0,0,0.281,63.28,90.18,0.15,989,1.8,116,1.6 +2013,12,1,9,30,17.7,0.62,0.0762,0.67,0,0,0,3,12.200000000000001,0,0,0,0,0.281,69.96000000000001,102.4,0.15,989,1.8,117,1.2000000000000002 +2013,12,1,10,30,16.900000000000002,0.64,0.07010000000000001,0.67,0,0,0,3,12.3,0,0,0,0,0.281,74.5,112.96000000000001,0.15,990,1.8,119,1.1 +2013,12,1,11,30,16.3,0.64,0.0666,0.67,0,0,0,3,12.4,0,0,0,0,0.281,77.9,121.82000000000001,0.15,990,1.9000000000000001,123,0.9 +2013,12,1,12,30,15.700000000000001,0.64,0.0658,0.67,0,0,0,3,12.5,0,0,0,0,0.28,81.52,128.08,0.15,990,1.9000000000000001,128,0.9 +2013,12,1,13,30,15.3,0.62,0.0663,0.67,0,0,0,0,12.600000000000001,0,0,0,0,0.279,83.94,130.74,0.15,989,1.9000000000000001,135,0.8 +2013,12,1,14,30,14.8,0.62,0.06570000000000001,0.67,0,0,0,0,12.700000000000001,0,0,0,0,0.279,87.05,129.22,0.15,989,1.8,144,0.7000000000000001 +2013,12,1,15,30,14.4,0.62,0.0631,0.67,0,0,0,0,12.700000000000001,0,0,0,0,0.28,89.35000000000001,123.87,0.15,988,1.8,154,0.7000000000000001 +2013,12,1,16,30,13.9,0.66,0.0592,0.67,0,0,0,0,12.700000000000001,0,0,0,0,0.281,92.21000000000001,115.64,0.15,988,1.7000000000000002,162,0.7000000000000001 +2013,12,1,17,30,13.4,0.71,0.055200000000000006,0.67,0,0,0,0,12.600000000000001,0,0,0,0,0.28400000000000003,94.69,105.49000000000001,0.15,988,1.7000000000000002,167,0.7000000000000001 +2013,12,1,18,30,13.5,0.76,0.0514,0.67,0,0,0,0,12.5,0,0,0,0,0.28500000000000003,93.42,94.10000000000001,0.15,988,1.6,172,0.8 +2013,12,1,19,30,14.9,0.79,0.047900000000000005,0.67,39,498,109,0,12.600000000000001,39,498,0,109,0.28500000000000003,85.95,81.81,0.15,989,1.5,168,1.3 +2013,12,1,20,30,17.400000000000002,0.8300000000000001,0.0436,0.67,62,784,341,0,12.600000000000001,62,784,0,341,0.28500000000000003,73.24,69.18,0.15,989,1.5,151,2 +2013,12,1,21,30,19.6,0.87,0.039900000000000005,0.67,75,911,582,0,12.200000000000001,75,911,0,582,0.28500000000000003,62.27,56.17,0.15,989,1.5,136,2.2 +2013,12,1,22,30,21.400000000000002,0.92,0.037200000000000004,0.67,83,982,802,0,11.600000000000001,83,982,0,802,0.28500000000000003,53.53,42.94,0.15,988,1.4000000000000001,132,2.1 +2013,12,1,23,30,22.200000000000003,0.96,0.0354,0.67,88,1021,975,0,11.200000000000001,88,1021,0,975,0.28500000000000003,49.85,29.63,0.15,988,1.4000000000000001,131,2 +2013,12,2,0,30,24.200000000000003,0.68,0.0623,0.67,110,1013,1081,0,11,110,1013,0,1081,0.28500000000000003,43.57,16.490000000000002,0.15,987,1.5,135,1.7000000000000002 +2013,12,2,1,30,25.3,0.7000000000000001,0.0606,0.67,111,1022,1128,0,10.8,111,1022,0,1128,0.28600000000000003,40.15,5.75,0.15,986,1.5,135,1.6 +2013,12,2,2,30,26,0.72,0.0585,0.67,108,1017,1100,0,10.5,108,1017,0,1100,0.28600000000000003,37.84,12.83,0.15,985,1.6,131,1.7000000000000002 +2013,12,2,3,30,26.3,0.6900000000000001,0.0646,0.67,108,994,1003,0,10.5,108,994,0,1003,0.28700000000000003,37.050000000000004,25.79,0.15,984,1.6,124,1.8 +2013,12,2,4,30,26.200000000000003,0.7000000000000001,0.0646,0.67,101,957,844,0,10.600000000000001,101,957,0,844,0.28800000000000003,37.67,39.09,0.15,983,1.7000000000000002,116,2 +2013,12,2,5,30,25.6,0.7000000000000001,0.065,0.67,91,894,637,0,10.9,91,894,0,637,0.29,39.84,52.35,0.15,983,1.8,107,2.1 +2013,12,2,6,30,24.3,0.7000000000000001,0.0649,0.67,76,786,403,0,11.3,76,786,0,403,0.291,44.15,65.43,0.15,983,1.8,99,2.2 +2013,12,2,7,30,22.200000000000003,0.7000000000000001,0.0645,0.67,52,561,167,0,12,52,561,0,167,0.293,52.28,78.19,0.15,983,1.9000000000000001,92,1.8 +2013,12,2,8,30,20,0.7000000000000001,0.0651,0.67,0,0,0,0,13.3,0,0,0,0,0.293,65.55,90.06,0.15,984,2,91,1.1 +2013,12,2,9,30,18.6,0.6900000000000001,0.0665,0.67,0,0,0,0,14,0,0,0,0,0.293,74.42,102.24000000000001,0.15,984,2,96,0.9 +2013,12,2,10,30,17.7,0.68,0.0688,0.67,0,0,0,0,14.200000000000001,0,0,0,0,0.292,79.84,112.79,0.15,985,2,105,0.8 +2013,12,2,11,30,17.1,0.66,0.0716,0.67,0,0,0,0,14.200000000000001,0,0,0,0,0.292,83.29,121.64,0.15,986,2,114,0.7000000000000001 +2013,12,2,12,30,16.5,0.65,0.07400000000000001,0.67,0,0,0,0,14.200000000000001,0,0,0,0,0.291,86.25,127.91,0.15,986,2,122,0.6000000000000001 +2013,12,2,13,30,15.9,0.64,0.07490000000000001,0.67,0,0,0,0,14.100000000000001,0,0,0,0,0.29,89.03,130.58,0.15,985,2,129,0.6000000000000001 +2013,12,2,14,30,15.4,0.64,0.07440000000000001,0.67,0,0,0,0,14,0,0,0,0,0.29,91.29,129.1,0.15,985,2,138,0.6000000000000001 +2013,12,2,15,30,14.9,0.65,0.0726,0.67,0,0,0,0,13.9,0,0,0,0,0.29,93.66,123.79,0.15,985,2,146,0.6000000000000001 +2013,12,2,16,30,14.5,0.67,0.0698,0.67,0,0,0,0,13.8,0,0,0,0,0.29,95.3,115.59,0.15,984,1.9000000000000001,154,0.6000000000000001 +2013,12,2,17,30,14.200000000000001,0.7000000000000001,0.06670000000000001,0.67,0,0,0,0,13.700000000000001,0,0,0,0,0.29,96.66,105.47,0.15,984,1.8,163,0.7000000000000001 +2013,12,2,18,30,14.200000000000001,0.72,0.0641,0.67,0,0,0,0,13.600000000000001,0,0,0,0,0.29,96.31,94.10000000000001,0.15,984,1.7000000000000002,176,0.7000000000000001 +2013,12,2,19,30,15.600000000000001,0.74,0.061700000000000005,0.67,41,459,106,0,13.700000000000001,41,459,0,106,0.29,88.64,81.83,0.15,985,1.7000000000000002,176,1 +2013,12,2,20,30,18,0.77,0.058100000000000006,0.67,68,756,336,0,13.700000000000001,68,756,0,336,0.289,75.82000000000001,69.21000000000001,0.15,985,1.6,159,1.4000000000000001 +2013,12,2,21,30,20.200000000000003,0.81,0.0538,0.67,82,893,579,0,13,82,893,0,579,0.28800000000000003,63.480000000000004,56.2,0.15,985,1.5,149,1.4000000000000001 +2013,12,2,22,30,22.200000000000003,0.85,0.05,0.67,90,966,797,0,12.5,90,966,0,797,0.28700000000000003,54.28,42.980000000000004,0.15,985,1.5,154,1.2000000000000002 +2013,12,2,23,30,23.1,0.89,0.0473,0.67,95,1007,970,0,12.200000000000001,95,1007,0,970,0.28600000000000003,50.18,29.68,0.15,985,1.5,159,1.1 +2013,12,3,0,30,25.6,0.85,0.049800000000000004,0.67,101,1026,1084,0,11.700000000000001,101,1026,0,1084,0.28400000000000003,41.980000000000004,16.51,0.15,984,1.5,157,1.1 +2013,12,3,1,30,26.8,0.9,0.0482,0.67,101,1035,1131,0,11.200000000000001,101,1035,0,1131,0.28300000000000003,37.69,5.64,0.15,982,1.5,146,1.2000000000000002 +2013,12,3,2,30,27.700000000000003,0.9400000000000001,0.0472,0.67,99,1032,1106,0,10.600000000000001,99,1032,0,1106,0.28300000000000003,34.44,12.69,0.15,981,1.5,131,1.3 +2013,12,3,3,30,27.900000000000002,0.93,0.058100000000000006,0.67,102,1003,1006,0,10.5,102,1003,0,1006,0.28400000000000003,33.81,25.66,0.15,981,1.6,117,1.6 +2013,12,3,4,30,27.700000000000003,0.9500000000000001,0.0594,0.67,96,966,847,0,10.8,96,966,0,847,0.28500000000000003,34.83,38.96,0.15,980,1.7000000000000002,106,1.9000000000000001 +2013,12,3,5,30,27,0.9500000000000001,0.060500000000000005,0.67,87,907,642,0,11.200000000000001,87,907,0,642,0.28600000000000003,37.22,52.22,0.15,980,1.7000000000000002,98,2.2 +2013,12,3,6,30,25.5,0.9400000000000001,0.061500000000000006,0.67,73,798,406,0,11.600000000000001,73,798,0,406,0.28700000000000003,41.99,65.29,0.15,980,1.8,92,2.3000000000000003 +2013,12,3,7,30,23.200000000000003,0.92,0.0629,0.67,51,575,170,0,12.600000000000001,51,575,0,170,0.28800000000000003,51.34,78.05,0.15,981,1.9000000000000001,88,2 +2013,12,3,8,30,20.8,0.88,0.0648,0.67,0,0,0,0,14.100000000000001,0,0,0,0,0.28800000000000003,65.5,89.94,0.15,981,1.9000000000000001,86,1.3 +2013,12,3,9,30,19.3,0.84,0.0659,0.67,0,0,0,0,15,0,0,0,0,0.28700000000000003,76.29,102.09,0.15,982,1.9000000000000001,88,1 +2013,12,3,10,30,18.400000000000002,0.8,0.0659,0.67,0,0,0,0,15.5,0,0,0,0,0.28600000000000003,83.06,112.63,0.15,983,1.9000000000000001,92,0.8 +2013,12,3,11,30,17.6,0.78,0.0654,0.67,0,0,0,0,15.700000000000001,0,0,0,0,0.28400000000000003,88.58,121.47,0.15,983,1.8,96,0.6000000000000001 +2013,12,3,12,30,17,0.77,0.06470000000000001,0.67,0,0,0,0,15.700000000000001,0,0,0,0,0.28200000000000003,92.27,127.74000000000001,0.15,982,1.8,101,0.6000000000000001 +2013,12,3,13,30,16.5,0.77,0.0645,0.67,0,0,0,0,15.700000000000001,0,0,0,0,0.281,95.27,130.44,0.15,982,1.8,106,0.6000000000000001 +2013,12,3,14,30,16,0.77,0.065,0.67,0,0,0,3,15.700000000000001,0,0,0,0,0.28,98.33,128.99,0.15,981,1.8,109,0.6000000000000001 +2013,12,3,15,30,15.8,0.81,0.0704,0.67,0,0,0,3,15.700000000000001,0,0,0,0,0.279,99.53,123.71000000000001,0.15,980,1.7000000000000002,109,0.5 +2013,12,3,16,30,15.8,0.8300000000000001,0.0767,0.67,0,0,0,3,15.700000000000001,0,0,0,0,0.279,99.63,115.55,0.15,980,1.7000000000000002,106,0.4 +2013,12,3,17,30,15.9,0.84,0.07880000000000001,0.67,0,0,0,3,15.700000000000001,0,0,0,0,0.279,98.85000000000001,105.45,0.15,980,1.7000000000000002,215,0.2 +2013,12,3,18,30,16,0.88,0.0896,0.67,0,0,0,3,15.700000000000001,0,0,0,0,0.278,97.97,94.10000000000001,0.15,980,1.7000000000000002,324,0.30000000000000004 +2013,12,3,19,30,17,0.92,0.0979,0.67,47,397,103,3,15.700000000000001,43,0,0,43,0.278,92.17,81.85000000000001,0.15,981,1.7000000000000002,334,0.5 +2013,12,3,20,30,19.1,0.98,0.0932,0.67,79,706,329,3,15.8,172,51,0,190,0.279,81.28,69.24,0.15,981,1.7000000000000002,350,0.8 +2013,12,3,21,30,21.3,1.05,0.0795,0.67,93,860,571,3,15.5,349,172,0,444,0.278,69.33,56.25,0.15,981,1.7000000000000002,353,0.9 +2013,12,3,22,30,23.5,1.08,0.0703,0.67,100,942,789,0,15.100000000000001,100,942,0,789,0.278,59.4,43.03,0.15,980,1.7000000000000002,345,0.9 +2013,12,3,23,30,24.700000000000003,1.08,0.0653,0.67,105,987,962,0,14.700000000000001,105,987,0,962,0.277,53.84,29.73,0.15,980,1.7000000000000002,339,0.9 +2013,12,4,0,30,27.700000000000003,0.96,0.0751,0.67,115,1001,1074,0,14.100000000000001,115,1001,0,1074,0.275,43.24,16.55,0.15,979,1.7000000000000002,315,0.8 +2013,12,4,1,30,29.200000000000003,0.96,0.07390000000000001,0.67,116,1007,1118,0,13.4,116,1007,0,1118,0.274,37.980000000000004,5.55,0.15,978,1.8,314,0.9 +2013,12,4,2,30,30.200000000000003,0.98,0.0709,0.67,113,1006,1095,6,12.8,800,0,0,1044,0.273,34.54,12.540000000000001,0.15,976,1.8,329,1 +2013,12,4,3,30,30.700000000000003,0.93,0.0785,0.67,114,984,1002,6,12.5,800,0,0,930,0.273,32.71,25.53,0.15,975,1.7000000000000002,344,1.1 +2013,12,4,4,30,30.6,0.9400000000000001,0.07740000000000001,0.67,106,948,844,6,12.3,769,0,0,769,0.274,32.55,38.83,0.15,975,1.8,346,1.2000000000000002 +2013,12,4,5,30,29.900000000000002,0.9400000000000001,0.0781,0.67,95,886,640,6,12.200000000000001,393,242,0,541,0.274,33.77,52.09,0.15,974,1.8,346,1.3 +2013,12,4,6,30,28.5,0.9400000000000001,0.0792,0.67,80,773,405,6,12.700000000000001,246,175,0,320,0.274,37.79,65.16,0.15,974,1.9000000000000001,182,1.3 +2013,12,4,7,30,26.1,0.93,0.0791,0.67,54,551,170,6,14.200000000000001,100,116,0,125,0.274,47.96,77.91,0.15,974,1.9000000000000001,19,1.2000000000000002 +2013,12,4,8,30,23.6,0.93,0.0809,0.67,0,0,0,6,16.7,0,0,0,0,0.275,65.38,89.82000000000001,0.15,975,2,25,1.2000000000000002 +2013,12,4,9,30,21.900000000000002,0.9400000000000001,0.0818,0.67,0,0,0,6,16.5,0,0,0,0,0.275,71.33,101.93,0.15,975,2,25,1.2000000000000002 +2013,12,4,10,30,21,0.9400000000000001,0.0823,0.67,0,0,0,6,16.3,0,0,0,0,0.273,74.32000000000001,112.47,0.15,975,2.1,23,1.2000000000000002 +2013,12,4,11,30,20.3,0.96,0.0845,0.67,0,0,0,6,16.3,0,0,0,0,0.272,77.79,121.31,0.15,975,2.2,18,1.1 +2013,12,4,12,30,19.6,0.98,0.0922,0.67,0,0,0,6,16.3,0,0,0,0,0.27,81.16,127.58,0.15,975,2.4000000000000004,12,1 +2013,12,4,13,30,19.1,0.98,0.11080000000000001,0.67,0,0,0,6,16.2,0,0,0,0,0.268,83.17,130.3,0.15,974,2.5,6,1 +2013,12,4,14,30,18.7,0.96,0.14150000000000001,0.67,0,0,0,6,16.1,0,0,0,0,0.266,84.62,128.88,0.15,973,2.8000000000000003,179,0.9 +2013,12,4,15,30,18.3,0.92,0.18130000000000002,0.67,0,0,0,6,16,0,0,0,0,0.265,86.38,123.64,0.15,973,3,353,0.9 +2013,12,4,16,30,18,0.87,0.21960000000000002,0.67,0,0,0,6,15.9,0,0,0,0,0.265,87.81,115.51,0.15,972,3.2,348,0.9 +2013,12,4,17,30,17.900000000000002,0.8200000000000001,0.2519,0.67,0,0,0,6,16,0,0,0,0,0.266,88.67,105.44,0.15,972,3.4000000000000004,344,0.9 +2013,12,4,18,30,18.2,0.79,0.26830000000000004,0.67,0,0,0,6,16.2,0,0,0,0,0.266,87.9,94.11,0.15,973,3.6,341,1.1 +2013,12,4,19,30,19.3,0.78,0.26130000000000003,0.67,58,171,82,6,16.400000000000002,55,28,0,59,0.266,83.2,81.88,0.15,973,3.8000000000000003,335,1.8 +2013,12,4,20,30,21.6,0.78,0.2373,0.67,117,487,289,6,16.5,194,114,0,234,0.266,72.72,69.28,0.15,973,3.9000000000000004,327,2.6 +2013,12,4,21,30,24.3,0.78,0.2061,0.67,140,680,518,6,16.5,351,184,0,453,0.266,61.88,56.29,0.15,973,3.9000000000000004,319,2.9000000000000004 +2013,12,4,22,30,26.900000000000002,0.77,0.17980000000000002,0.67,151,793,730,6,16.400000000000002,493,157,0,607,0.266,52.56,43.09,0.15,972,4,313,3.1 +2013,12,4,23,30,28.200000000000003,0.76,0.1668,0.67,157,855,899,6,16.3,605,130,0,718,0.266,48.5,29.78,0.15,972,4,310,3.2 +2013,12,5,0,30,30.8,0.8200000000000001,0.114,0.67,135,923,1020,6,16.3,540,26,0,565,0.266,41.71,16.59,0.15,971,4.1000000000000005,305,3.5 +2013,12,5,1,30,31.3,0.8300000000000001,0.10890000000000001,0.67,135,935,1065,6,16.400000000000002,287,31,0,317,0.266,40.67,5.46,0.15,970,4.2,298,3.6 +2013,12,5,2,30,30.5,0.8200000000000001,0.1109,0.67,135,926,1039,6,16.5,135,26,0,160,0.266,43.03,12.4,0.15,970,4.4,290,3.6 +2013,12,5,3,30,28.8,0.85,0.11950000000000001,0.67,134,899,946,6,17,87,14,0,99,0.267,48.9,25.400000000000002,0.15,970,4.5,284,3.3000000000000003 +2013,12,5,4,30,27.400000000000002,0.93,0.1231,0.67,127,859,797,6,17.8,62,4,0,66,0.269,55.82,38.71,0.15,970,4.5,286,2.8000000000000003 +2013,12,5,5,30,27,0.97,0.1183,0.67,111,801,604,6,18.6,47,0,0,47,0.27,59.95,51.96,0.15,970,4.1000000000000005,287,2.4000000000000004 +2013,12,5,6,30,26.900000000000002,0.91,0.1183,0.67,93,691,384,6,18.7,52,6,0,54,0.272,60.96,65.02,0.15,970,3.5,282,1.9000000000000001 +2013,12,5,7,30,25.900000000000002,0.75,0.1273,0.67,65,448,159,6,18.7,72,13,0,75,0.274,64.33,77.77,0.15,971,2.9000000000000004,268,1.3 +2013,12,5,8,30,24.400000000000002,0.59,0.1273,0.67,0,0,0,6,17.900000000000002,0,0,0,0,0.275,67.07000000000001,89.7,0.15,972,2.3000000000000003,252,1.2000000000000002 +2013,12,5,9,30,23.200000000000003,0.51,0.1119,0.67,0,0,0,6,15.9,0,0,0,0,0.275,63.6,101.78,0.15,973,1.8,242,1.4000000000000001 +2013,12,5,10,30,22,0.53,0.0888,0.67,0,0,0,6,13.8,0,0,0,0,0.275,59.550000000000004,112.31,0.15,974,1.5,234,1.6 +2013,12,5,11,30,20.8,0.62,0.0648,0.67,0,0,0,6,11.600000000000001,0,0,0,0,0.275,55.44,121.15,0.15,975,1.3,228,1.7000000000000002 +2013,12,5,12,30,19.5,0.74,0.048,0.67,0,0,0,6,8.700000000000001,0,0,0,0,0.274,49.660000000000004,127.43,0.15,976,1.1,224,1.8 +2013,12,5,13,30,18.2,0.84,0.0412,0.67,0,0,0,6,7.2,0,0,0,0,0.274,48.72,130.17000000000002,0.15,976,1.1,220,1.6 +2013,12,5,14,30,17.1,0.88,0.038,0.67,0,0,0,6,6.6000000000000005,0,0,0,0,0.273,49.93,128.78,0.15,977,1,217,1.4000000000000001 +2013,12,5,15,30,16.1,0.9,0.0347,0.67,0,0,0,6,6.1000000000000005,0,0,0,0,0.273,51.56,123.58,0.15,977,0.9,214,1.1 +2013,12,5,16,30,15.100000000000001,0.93,0.0318,0.67,0,0,0,6,5.7,0,0,0,0,0.274,53.34,115.48,0.15,978,0.8,213,1 +2013,12,5,17,30,14.200000000000001,0.97,0.030100000000000002,0.67,0,0,0,6,5.300000000000001,0,0,0,0,0.276,54.9,105.43,0.15,978,0.7000000000000001,216,0.9 +2013,12,5,18,30,13.9,1.01,0.028200000000000003,0.67,0,0,0,6,5,0,0,0,0,0.277,55.11,94.13,0.15,980,0.6000000000000001,220,0.9 +2013,12,5,19,30,15.100000000000001,1.05,0.0257,0.67,34,602,119,6,5.4,51,418,0,110,0.277,52.43,81.9,0.15,981,0.6000000000000001,219,1.4000000000000001 +2013,12,5,20,30,17.2,1.07,0.0236,0.67,54,857,356,6,3.7,54,857,5,356,0.277,40.57,69.32000000000001,0.15,981,0.7000000000000001,213,2.1 +2013,12,5,21,30,19.200000000000003,1.07,0.022500000000000003,0.67,65,970,603,0,2.5,65,970,0,603,0.277,33.03,56.34,0.15,982,0.7000000000000001,214,2.5 +2013,12,5,22,30,21.1,1.06,0.0222,0.67,72,1025,820,0,2.1,72,1025,0,820,0.276,28.55,43.14,0.15,982,0.8,223,2.4000000000000004 +2013,12,5,23,30,22.1,1.04,0.0222,0.67,77,1059,996,0,2.1,77,1059,0,996,0.276,26.84,29.84,0.15,982,0.8,228,2.4000000000000004 +2013,12,6,0,30,24.8,0.74,0.0374,0.67,94,1058,1108,0,2.4000000000000004,94,1058,0,1108,0.274,23.16,16.64,0.15,981,0.9,237,2.4000000000000004 +2013,12,6,1,30,26.3,0.76,0.037700000000000004,0.67,96,1066,1157,0,2.6,96,1066,0,1157,0.273,21.580000000000002,5.39,0.15,980,0.9,241,2.3000000000000003 +2013,12,6,2,30,27.400000000000002,0.8,0.0373,0.67,94,1059,1129,0,2.8000000000000003,94,1059,0,1129,0.272,20.51,12.26,0.15,980,1,241,2.3000000000000003 +2013,12,6,3,30,27.8,0.75,0.049,0.67,99,1032,1032,0,3.1,99,1032,0,1032,0.273,20.44,25.28,0.15,980,1,239,2.2 +2013,12,6,4,30,27.700000000000003,0.76,0.0506,0.67,94,999,875,0,3.5,94,999,0,875,0.274,21.09,38.58,0.15,980,1,237,2 +2013,12,6,5,30,27.1,0.77,0.051000000000000004,0.67,85,943,668,0,3.6,85,943,0,668,0.275,22.01,51.83,0.15,980,1,233,1.8 +2013,12,6,6,30,25.8,0.77,0.051000000000000004,0.67,71,839,427,0,3.9000000000000004,71,839,0,427,0.276,24.38,64.89,0.15,981,1.1,226,1.4000000000000001 +2013,12,6,7,30,23.3,0.77,0.0514,0.67,50,631,185,0,5.1000000000000005,50,631,0,185,0.278,30.68,77.63,0.15,982,1.1,192,0.8 +2013,12,6,8,30,20.3,0.75,0.0522,0.67,0,0,0,0,9.1,0,0,0,0,0.278,48.53,89.56,0.15,983,1.1,158,0.6000000000000001 +2013,12,6,9,30,18.6,0.73,0.054,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.279,56.17,101.63,0.15,984,1.2000000000000002,143,0.8 +2013,12,6,10,30,17.400000000000002,0.7000000000000001,0.0563,0.67,0,0,0,0,9.9,0,0,0,0,0.278,61.370000000000005,112.15,0.15,985,1.2000000000000002,125,0.9 +2013,12,6,11,30,16.3,0.68,0.0585,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.277,67.13,121,0.15,985,1.3,112,0.9 +2013,12,6,12,30,15.600000000000001,0.66,0.0604,0.67,0,0,0,0,10.3,0,0,0,0,0.276,70.71000000000001,127.29,0.15,986,1.3,108,0.8 +2013,12,6,13,30,15.100000000000001,0.64,0.062400000000000004,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.275,74.47,130.04,0.15,986,1.3,111,0.8 +2013,12,6,14,30,14.600000000000001,0.63,0.0637,0.67,0,0,0,0,10.8,0,0,0,0,0.275,77.88,128.69,0.15,986,1.4000000000000001,114,0.7000000000000001 +2013,12,6,15,30,14.200000000000001,0.62,0.0637,0.67,0,0,0,0,10.8,0,0,0,0,0.275,80.17,123.52,0.15,986,1.4000000000000001,112,0.7000000000000001 +2013,12,6,16,30,13.8,0.63,0.06280000000000001,0.67,0,0,0,0,10.8,0,0,0,0,0.276,82.09,115.46000000000001,0.15,986,1.4000000000000001,112,0.8 +2013,12,6,17,30,13.5,0.64,0.0627,0.67,0,0,0,0,10.8,0,0,0,0,0.278,83.46000000000001,105.43,0.15,987,1.4000000000000001,118,0.8 +2013,12,6,18,30,13.600000000000001,0.64,0.06280000000000001,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.279,82.37,94.15,0.15,987,1.4000000000000001,124,0.8 +2013,12,6,19,30,15.4,0.64,0.063,0.67,42,456,106,0,11.200000000000001,42,456,0,106,0.278,75.84,81.94,0.15,988,1.4000000000000001,121,1 +2013,12,6,20,30,18.5,0.64,0.06330000000000001,0.67,71,750,335,0,10.9,71,750,0,335,0.276,61.38,69.37,0.15,988,1.4000000000000001,97,1.4000000000000001 +2013,12,6,21,30,21,0.63,0.0631,0.67,88,882,576,0,10.4,88,882,0,576,0.275,50.86,56.4,0.15,988,1.4000000000000001,74,1.6 +2013,12,6,22,30,22.8,0.64,0.062200000000000005,0.67,99,954,794,0,10.3,99,954,0,794,0.275,45.050000000000004,43.2,0.15,988,1.4000000000000001,70,1.4000000000000001 +2013,12,6,23,30,23.6,0.65,0.0618,0.67,106,995,969,0,10,106,995,0,969,0.276,42.230000000000004,29.900000000000002,0.15,988,1.4000000000000001,69,1.3 +2013,12,7,0,30,25.700000000000003,0.68,0.06760000000000001,0.67,113,1010,1080,0,9.8,113,1010,0,1080,0.276,36.62,16.69,0.14,987,1.5,68,1.1 +2013,12,7,1,30,26.700000000000003,0.72,0.0697,0.67,115,1017,1128,0,9.5,115,1017,0,1128,0.275,34,5.33,0.14,986,1.5,69,1 +2013,12,7,2,30,27.5,0.77,0.07150000000000001,0.67,115,1009,1102,6,9.3,800,0,0,1089,0.274,31.990000000000002,12.120000000000001,0.14,985,1.6,72,1 +2013,12,7,3,30,27.900000000000002,0.86,0.1041,0.67,128,965,1001,6,9.200000000000001,800,0,0,981,0.275,31.07,25.150000000000002,0.14,985,1.6,77,1.1 +2013,12,7,4,30,27.8,0.87,0.1075,0.67,121,923,844,6,9.3,800,0,0,832,0.276,31.37,38.45,0.14,984,1.7000000000000002,80,1.3 +2013,12,7,5,30,27.3,0.87,0.1096,0.67,110,853,638,6,9.5,617,4,0,620,0.276,32.63,51.7,0.14,984,1.8,79,1.5 +2013,12,7,6,30,26,0.88,0.11130000000000001,0.67,93,736,407,6,9.700000000000001,93,736,5,407,0.276,35.71,64.76,0.14,985,1.8,75,1.8 +2013,12,7,7,30,23.700000000000003,0.89,0.1109,0.67,63,507,173,6,10.3,63,507,5,173,0.276,42.7,77.49,0.14,985,1.9000000000000001,69,1.7000000000000002 +2013,12,7,8,30,21.1,0.9,0.1086,0.67,0,0,0,6,11.8,0,0,0,0,0.277,55.230000000000004,89.44,0.14,986,1.9000000000000001,63,1.4000000000000001 +2013,12,7,9,30,19.400000000000002,0.91,0.10400000000000001,0.67,0,0,0,6,12.4,0,0,0,0,0.277,63.97,101.48,0.14,986,1.9000000000000001,57,1.1 +2013,12,7,10,30,18.3,0.91,0.097,0.67,0,0,0,6,12.700000000000001,0,0,0,0,0.277,69.96000000000001,112,0.14,986,1.8,52,0.9 +2013,12,7,11,30,17.5,0.89,0.09280000000000001,0.67,0,0,0,0,13,0,0,0,0,0.276,75.07000000000001,120.85000000000001,0.14,987,1.9000000000000001,49,0.7000000000000001 +2013,12,7,12,30,16.900000000000002,0.87,0.0915,0.67,0,0,0,0,13.200000000000001,0,0,0,0,0.274,78.82000000000001,127.15,0.14,987,1.9000000000000001,52,0.7000000000000001 +2013,12,7,13,30,16.400000000000002,0.85,0.09240000000000001,0.67,0,0,0,0,13.3,0,0,0,0,0.273,81.88,129.92000000000002,0.14,987,2,56,0.7000000000000001 +2013,12,7,14,30,16.1,0.8300000000000001,0.0944,0.67,0,0,0,6,13.3,0,0,0,0,0.272,83.49,128.6,0.14,987,2,56,0.7000000000000001 +2013,12,7,15,30,15.9,0.81,0.0959,0.67,0,0,0,6,13.200000000000001,0,0,0,0,0.272,83.92,123.47,0.14,986,2.1,52,0.8 +2013,12,7,16,30,15.600000000000001,0.8,0.0961,0.67,0,0,0,0,13.100000000000001,0,0,0,0,0.273,84.87,115.44,0.14,986,2.1,45,0.8 +2013,12,7,17,30,15.4,0.79,0.0954,0.67,0,0,0,0,13,0,0,0,0,0.274,85.62,105.44,0.14,987,2.1,37,0.8 +2013,12,7,18,30,15.5,0.78,0.0937,0.67,0,0,0,0,13,0,0,0,0,0.274,85.01,94.17,0.14,987,2.1,29,0.8 +2013,12,7,19,30,16.900000000000002,0.78,0.0913,0.67,45,387,99,0,13.4,45,387,0,99,0.273,80.05,81.98,0.14,987,2.1,24,0.9 +2013,12,7,20,30,19.6,0.77,0.0887,0.67,78,693,321,0,13.5,78,693,0,321,0.272,67.81,69.42,0.14,988,2.1,29,1.2000000000000002 +2013,12,7,21,30,22.1,0.76,0.0872,0.67,96,834,557,6,12.9,472,134,0,545,0.272,55.82,56.46,0.14,988,2.1,37,1.4000000000000001 +2013,12,7,22,30,23.900000000000002,0.76,0.0869,0.67,109,911,772,6,12.700000000000001,741,0,0,741,0.272,49.68,43.27,0.14,987,2.1,44,1.3 +2013,12,7,23,30,24.8,0.78,0.0873,0.67,118,954,944,6,12.8,800,0,0,901,0.272,47.14,29.97,0.14,987,2.1,47,1.3 +2013,12,8,0,30,26.900000000000002,0.8200000000000001,0.096,0.67,126,969,1055,6,12.700000000000001,800,0,0,1053,0.272,41.47,16.740000000000002,0.14,986,2.2,57,1.3 +2013,12,8,1,30,27.900000000000002,0.84,0.0954,0.67,128,980,1103,0,12.600000000000001,128,980,0,1103,0.272,38.82,5.28,0.14,985,2.2,62,1.4000000000000001 +2013,12,8,2,30,28.5,0.84,0.0952,0.67,127,976,1081,0,12.5,127,976,0,1081,0.272,37.2,11.98,0.14,984,2.2,64,1.5 +2013,12,8,3,30,28.700000000000003,0.87,0.1052,0.67,128,947,986,0,12.4,128,947,0,986,0.272,36.61,25.02,0.14,983,2.3000000000000003,65,1.7000000000000002 +2013,12,8,4,30,28.400000000000002,0.88,0.10640000000000001,0.67,120,909,834,0,12.4,120,909,0,834,0.272,37.29,38.33,0.14,983,2.3000000000000003,65,2 +2013,12,8,5,30,27.6,0.87,0.10700000000000001,0.67,109,844,633,0,12.600000000000001,109,844,0,633,0.272,39.38,51.57,0.14,983,2.3000000000000003,64,2.2 +2013,12,8,6,30,26.200000000000003,0.88,0.1047,0.67,90,732,403,0,12.700000000000001,90,732,0,403,0.272,43.26,64.62,0.14,983,2.4000000000000004,60,2.4000000000000004 +2013,12,8,7,30,24.1,0.89,0.1,0.67,60,516,173,0,13.100000000000001,60,516,0,173,0.272,50.160000000000004,77.36,0.14,983,2.4000000000000004,57,2.2 +2013,12,8,8,30,21.700000000000003,0.89,0.096,0.67,0,0,0,0,13.8,0,0,0,0,0.272,60.910000000000004,89.31,0.14,984,2.4000000000000004,54,1.7000000000000002 +2013,12,8,9,30,20.1,0.9,0.0947,0.67,0,0,0,6,14.4,0,0,0,0,0.271,69.56,101.34,0.14,984,2.4000000000000004,51,1.3 +2013,12,8,10,30,19.200000000000003,0.92,0.09670000000000001,0.67,0,0,0,6,14.5,0,0,0,0,0.27,74.36,111.86,0.14,985,2.4000000000000004,46,1.1 +2013,12,8,11,30,18.7,0.93,0.0999,0.67,0,0,0,6,14.700000000000001,0,0,0,0,0.269,77.59,120.7,0.14,985,2.4000000000000004,42,0.8 +2013,12,8,12,30,18.2,0.93,0.10070000000000001,0.67,0,0,0,6,14.8,0,0,0,0,0.268,80.78,127.01,0.14,985,2.4000000000000004,39,0.7000000000000001 +2013,12,8,13,30,17.8,0.93,0.09770000000000001,0.67,0,0,0,6,14.9,0,0,0,0,0.267,83.22,129.81,0.14,984,2.4000000000000004,36,0.6000000000000001 +2013,12,8,14,30,17.2,0.92,0.0947,0.67,0,0,0,6,14.8,0,0,0,0,0.267,86.03,128.53,0.14,984,2.4000000000000004,32,0.6000000000000001 +2013,12,8,15,30,16.6,0.91,0.0925,0.67,0,0,0,6,14.8,0,0,0,0,0.267,89.04,123.43,0.14,984,2.4000000000000004,26,0.6000000000000001 +2013,12,8,16,30,16.1,0.9,0.09190000000000001,0.67,0,0,0,0,14.700000000000001,0,0,0,0,0.267,91.60000000000001,115.43,0.14,983,2.4000000000000004,17,0.6000000000000001 +2013,12,8,17,30,15.700000000000001,0.9,0.0915,0.67,0,0,0,0,14.700000000000001,0,0,0,0,0.268,93.68,105.45,0.14,984,2.4000000000000004,185,0.6000000000000001 +2013,12,8,18,30,15.8,0.9,0.0913,0.67,0,0,0,0,14.700000000000001,0,0,0,0,0.268,93.10000000000001,94.2,0.14,984,2.4000000000000004,353,0.7000000000000001 +2013,12,8,19,30,17.3,0.9,0.0907,0.67,43,387,97,0,14.9,43,387,0,97,0.269,85.76,82.02,0.14,984,2.4000000000000004,351,1.1 +2013,12,8,20,30,20,0.91,0.0888,0.67,76,690,318,6,14.9,76,690,5,318,0.269,72.26,69.47,0.14,984,2.4000000000000004,180,1.5 +2013,12,8,21,30,22.5,0.93,0.0867,0.67,94,831,552,6,14.4,475,126,0,544,0.27,60.03,56.52,0.14,984,2.4000000000000004,9,1.6 +2013,12,8,22,30,24.6,0.9400000000000001,0.08460000000000001,0.67,105,906,765,6,14,724,0,0,724,0.271,51.65,43.34,0.14,983,2.5,15,1.4000000000000001 +2013,12,8,23,30,25.6,0.9500000000000001,0.0829,0.67,113,951,936,6,13.9,800,0,0,870,0.271,48.29,30.04,0.14,983,2.5,19,1.3 +2013,12,9,0,30,28.1,0.99,0.0723,0.67,112,984,1054,6,13.8,800,0,0,961,0.27,41.480000000000004,16.81,0.14,982,2.5,31,1.5 +2013,12,9,1,30,29.3,0.99,0.0709,0.67,113,992,1100,6,13.700000000000001,800,0,0,1006,0.27,38.43,5.24,0.14,981,2.6,35,1.7000000000000002 +2013,12,9,2,30,30.1,0.99,0.07060000000000001,0.67,112,988,1079,6,13.600000000000001,800,0,0,977,0.27,36.45,11.85,0.14,980,2.6,38,1.8 +2013,12,9,3,30,30.3,0.89,0.11180000000000001,0.67,130,934,978,3,13.4,800,0,0,946,0.27,35.62,24.900000000000002,0.14,979,2.7,41,1.9000000000000001 +2013,12,9,4,30,30.200000000000003,0.88,0.111,0.67,122,898,827,3,13.200000000000001,800,0,0,814,0.271,35.27,38.2,0.14,978,2.7,43,2 +2013,12,9,5,30,29.5,0.88,0.1101,0.67,109,832,628,3,13,625,0,0,625,0.271,36.33,51.44,0.14,978,2.8000000000000003,45,2.1 +2013,12,9,6,30,28.200000000000003,0.88,0.1081,0.67,91,721,401,0,12.9,91,721,0,401,0.272,38.910000000000004,64.49,0.14,977,2.8000000000000003,47,2.2 +2013,12,9,7,30,25.900000000000002,0.89,0.1047,0.67,61,505,173,0,13.3,61,505,0,173,0.272,45.69,77.22,0.14,978,2.8000000000000003,48,2.1 +2013,12,9,8,30,23.3,0.9,0.10200000000000001,0.67,0,0,0,3,14.5,0,0,0,0,0.273,57.76,89.2,0.14,978,2.8000000000000003,46,1.7000000000000002 +2013,12,9,9,30,21.700000000000003,0.91,0.1024,0.67,0,0,0,3,15.100000000000001,0,0,0,0,0.272,65.99,101.19,0.14,979,2.9000000000000004,41,1.5 +2013,12,9,10,30,20.700000000000003,0.9400000000000001,0.10500000000000001,0.67,0,0,0,3,15.5,0,0,0,0,0.272,72.25,111.72,0.14,979,2.9000000000000004,34,1.2000000000000002 +2013,12,9,11,30,20,0.96,0.1078,0.67,0,0,0,3,15.8,0,0,0,0,0.271,76.62,120.56,0.14,979,2.9000000000000004,25,1 +2013,12,9,12,30,19.400000000000002,0.99,0.1109,0.67,0,0,0,3,15.9,0,0,0,0,0.271,80.04,126.89,0.14,979,2.8000000000000003,16,0.9 +2013,12,9,13,30,18.8,1.02,0.1144,0.67,0,0,0,3,15.8,0,0,0,0,0.27,82.66,129.71,0.14,979,2.8000000000000003,10,0.8 +2013,12,9,14,30,18.2,1.05,0.11760000000000001,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.27,84.91,128.46,0.14,978,2.7,6,0.8 +2013,12,9,15,30,17.8,1.08,0.12010000000000001,0.67,0,0,0,0,15.5,0,0,0,0,0.269,86.17,123.4,0.14,978,2.7,3,0.8 +2013,12,9,16,30,17.3,1.09,0.12240000000000001,0.67,0,0,0,0,15.3,0,0,0,0,0.268,88.06,115.42,0.14,977,2.7,177,0.8 +2013,12,9,17,30,16.900000000000002,1.08,0.12610000000000002,0.67,0,0,0,0,15.200000000000001,0,0,0,0,0.267,89.88,105.47,0.14,978,2.7,349,0.7000000000000001 +2013,12,9,18,30,17,1.08,0.1325,0.67,0,0,0,0,15.200000000000001,0,0,0,0,0.267,89.07000000000001,94.24,0.14,978,2.8000000000000003,341,0.8 +2013,12,9,19,30,18.3,1.07,0.14020000000000002,0.67,46,312,90,0,15.4,46,312,0,90,0.267,83.12,82.07000000000001,0.14,979,2.9000000000000004,335,1.3 +2013,12,9,20,30,20.6,1.08,0.1454,0.67,89,608,301,6,15.4,89,608,5,301,0.267,72.18,69.53,0.14,979,3,333,1.9000000000000001 +2013,12,9,21,30,23.1,1.1,0.1463,0.67,113,757,530,6,15.200000000000001,426,176,0,523,0.267,61.25,56.59,0.14,979,3.1,334,1.9000000000000001 +2013,12,9,22,30,25.700000000000003,1.12,0.1463,0.67,129,839,739,6,14.8,618,86,0,680,0.268,51.11,43.410000000000004,0.14,979,3.2,337,1.7000000000000002 +2013,12,9,23,30,26.900000000000002,1.12,0.14500000000000002,0.67,140,890,910,6,14.600000000000001,800,11,0,811,0.268,46.87,30.11,0.14,979,3.2,339,1.6 +2013,12,10,0,30,30.1,1.06,0.1752,0.67,162,893,1016,6,14.4,678,149,0,820,0.268,38.44,16.87,0.15,978,3.3000000000000003,336,1.3 +2013,12,10,1,30,31.5,1.05,0.18030000000000002,0.67,168,897,1062,6,14.3,682,74,0,755,0.268,35.15,5.21,0.15,977,3.5,327,1 +2013,12,10,2,30,32,1.04,0.19160000000000002,0.67,173,883,1037,6,14.200000000000001,556,26,0,582,0.267,34.01,11.72,0.15,976,3.6,312,0.8 +2013,12,10,3,30,31.900000000000002,1.04,0.2053,0.67,173,850,945,6,14.200000000000001,402,23,0,423,0.266,34.26,24.77,0.15,975,3.7,306,0.6000000000000001 +2013,12,10,4,30,31.200000000000003,1.05,0.2048,0.67,161,805,795,6,14.4,309,25,0,329,0.265,36,38.08,0.15,975,3.9000000000000004,166,0.6000000000000001 +2013,12,10,5,30,30.400000000000002,1.07,0.19240000000000002,0.67,139,742,604,6,14.8,246,25,0,262,0.264,38.84,51.31,0.15,975,3.9000000000000004,34,0.8 +2013,12,10,6,30,29.200000000000003,1.09,0.1734,0.67,108,638,384,6,15.3,153,23,0,163,0.264,42.86,64.36,0.15,975,3.9000000000000004,48,1.2000000000000002 +2013,12,10,7,30,27.200000000000003,1.11,0.1593,0.67,69,428,164,6,16.1,68,8,0,69,0.264,50.64,77.09,0.15,975,3.9000000000000004,52,1.4000000000000001 +2013,12,10,8,30,25,1.1,0.1547,0.67,0,0,0,6,17.7,0,0,0,0,0.264,63.910000000000004,89.08,0.15,975,4,52,1.4000000000000001 +2013,12,10,9,30,23.6,1.09,0.1529,0.67,0,0,0,6,17.900000000000002,0,0,0,0,0.264,70.27,101.06,0.15,976,4,49,1.3 +2013,12,10,10,30,22.8,1.06,0.1554,0.67,0,0,0,6,18.1,0,0,0,0,0.264,75.05,111.58,0.15,976,3.9000000000000004,45,1.1 +2013,12,10,11,30,22.3,1.04,0.1592,0.67,0,0,0,6,18.3,0,0,0,0,0.264,77.93,120.43,0.15,977,3.9000000000000004,41,0.9 +2013,12,10,12,30,21.900000000000002,1.03,0.16140000000000002,0.67,0,0,0,6,18.2,0,0,0,0,0.264,79.73,126.77,0.15,976,3.9000000000000004,33,0.8 +2013,12,10,13,30,21.6,1.04,0.1635,0.67,0,0,0,6,18.1,0,0,0,0,0.265,80.75,129.61,0.15,976,3.9000000000000004,20,0.7000000000000001 +2013,12,10,14,30,21.3,1.07,0.1683,0.67,0,0,0,6,17.900000000000002,0,0,0,0,0.265,80.97,128.39000000000001,0.15,976,3.9000000000000004,182,0.6000000000000001 +2013,12,10,15,30,21,1.11,0.1799,0.67,0,0,0,6,17.7,0,0,0,0,0.266,81.69,123.37,0.15,976,3.9000000000000004,353,0.6000000000000001 +2013,12,10,16,30,20.6,1.1400000000000001,0.197,0.67,0,0,0,6,17.7,0,0,0,0,0.267,83.31,115.43,0.15,976,4,353,0.6000000000000001 +2013,12,10,17,30,20.3,1.17,0.20170000000000002,0.67,0,0,0,6,17.6,0,0,0,0,0.268,84.45,105.5,0.15,976,4,353,0.6000000000000001 +2013,12,10,18,30,20.200000000000003,1.19,0.1967,0.67,0,0,0,6,17.5,0,0,0,0,0.269,84.29,94.28,0.15,976,4.1000000000000005,347,0.7000000000000001 +2013,12,10,19,30,21,1.19,0.1957,0.67,49,244,83,6,17.5,39,0,0,39,0.271,80.35000000000001,82.13,0.15,977,4.1000000000000005,340,1.2000000000000002 +2013,12,10,20,30,22.8,1.19,0.1928,0.67,100,544,289,6,17.3,141,27,0,150,0.272,71.29,69.60000000000001,0.15,977,4.1000000000000005,330,1.7000000000000002 +2013,12,10,21,30,25.200000000000003,1.19,0.187,0.67,127,705,515,3,17.3,273,34,0,292,0.273,61.690000000000005,56.660000000000004,0.15,977,4.1000000000000005,323,2 +2013,12,10,22,30,27.900000000000002,1.19,0.1806,0.67,144,799,724,6,17.400000000000002,116,24,0,133,0.273,53.03,43.480000000000004,0.15,977,4.1000000000000005,320,2 +2013,12,10,23,30,29.3,1.19,0.17300000000000001,0.67,153,857,893,6,17.7,90,15,0,103,0.273,49.65,30.19,0.15,977,4.1000000000000005,320,2.1 +2013,12,11,0,30,31.8,1.21,0.2621,0.67,199,826,989,6,18.1,89,13,0,101,0.273,44.02,16.94,0.15,976,4.2,321,2.1 +2013,12,11,1,30,32.1,1.18,0.2777,0.67,212,827,1036,6,18.400000000000002,130,24,0,154,0.272,44.21,5.19,0.15,976,4.3,317,2.1 +2013,12,11,2,30,31.400000000000002,1.1500000000000001,0.30820000000000003,0.67,224,802,1009,6,18.6,182,31,0,213,0.271,46.53,11.58,0.15,975,4.4,312,2 +2013,12,11,3,30,30.700000000000003,1.1400000000000001,0.3895,0.67,249,728,910,6,18.900000000000002,164,30,0,191,0.271,49.370000000000005,24.650000000000002,0.15,975,4.5,307,2 +2013,12,11,4,30,29.900000000000002,1.1300000000000001,0.41350000000000003,0.67,240,662,762,6,19.3,91,17,0,105,0.272,53.01,37.95,0.15,975,4.6000000000000005,300,2 +2013,12,11,5,30,29.200000000000003,1.1400000000000001,0.3803,0.67,201,598,576,6,19.900000000000002,46,0,0,46,0.273,57.2,51.19,0.15,975,4.6000000000000005,298,2 +2013,12,11,6,30,28.3,1.1400000000000001,0.29650000000000004,0.67,140,525,369,6,20.3,24,0,0,24,0.274,61.96,64.24,0.15,975,4.4,300,1.6 +2013,12,11,7,30,26.8,1.12,0.2172,0.67,78,367,161,6,21.1,17,0,0,17,0.275,70.98,76.96000000000001,0.15,975,4.1000000000000005,302,1 +2013,12,11,8,30,25.1,1.05,0.1746,0.67,8,18,8,6,22.3,2,0,0,2,0.275,84.57000000000001,88.96000000000001,0.15,975,4,304,0.7000000000000001 +2013,12,11,9,30,23.900000000000002,0.99,0.1618,0.67,0,0,0,6,21.900000000000002,0,0,0,0,0.274,88.4,100.92,0.15,975,4.1000000000000005,312,0.7000000000000001 +2013,12,11,10,30,23.200000000000003,0.9400000000000001,0.1568,0.67,0,0,0,6,21.700000000000003,0,0,0,0,0.273,91.44,111.44,0.15,976,4.2,317,0.6000000000000001 +2013,12,11,11,30,22.700000000000003,0.91,0.1563,0.67,0,0,0,6,21.5,0,0,0,0,0.272,93.09,120.3,0.15,976,4.3,311,0.5 +2013,12,11,12,30,22.200000000000003,0.9,0.15990000000000001,0.67,0,0,0,6,21.400000000000002,0,0,0,0,0.27,95.46000000000001,126.65,0.15,976,4.4,300,0.5 +2013,12,11,13,30,21.700000000000003,0.9,0.16010000000000002,0.67,0,0,0,6,21.3,0,0,0,0,0.269,97.48,129.52,0.15,976,4.4,286,0.4 +2013,12,11,14,30,21.3,0.89,0.1731,0.67,0,0,0,6,21.200000000000003,0,0,0,0,0.269,99.09,128.34,0.15,976,4.5,264,0.6000000000000001 +2013,12,11,15,30,21,0.88,0.1932,0.67,0,0,0,6,21,0,0,0,0,0.269,99.8,123.35000000000001,0.15,976,4.4,251,0.8 +2013,12,11,16,30,20.700000000000003,0.88,0.1681,0.67,0,0,0,6,20.6,0,0,0,0,0.269,99.52,115.43,0.15,976,4.2,267,0.6000000000000001 +2013,12,11,17,30,20.3,0.89,0.1315,0.67,0,0,0,6,20.200000000000003,0,0,0,0,0.27,99.51,105.53,0.15,976,3.9000000000000004,301,0.6000000000000001 +2013,12,11,18,30,19.900000000000002,0.9,0.1101,0.67,0,0,0,6,19.8,0,0,0,0,0.272,99.35000000000001,94.33,0.15,977,3.7,322,0.8 +2013,12,11,19,30,19.8,0.91,0.0998,0.67,43,349,91,6,19.400000000000002,17,0,0,17,0.273,97.44,82.19,0.15,977,3.5,327,1.1 +2013,12,11,20,30,19.900000000000002,0.9,0.0913,0.67,76,666,307,6,19.1,51,5,0,53,0.273,95.28,69.66,0.15,977,3.3000000000000003,321,1.2000000000000002 +2013,12,11,21,30,20.8,0.9,0.091,0.67,96,807,538,6,19.3,109,23,0,122,0.273,91.25,56.730000000000004,0.15,978,3.3000000000000003,305,1.3 +2013,12,11,22,30,22.6,0.9,0.09480000000000001,0.67,110,879,747,6,19.1,194,28,0,215,0.272,80.66,43.56,0.15,978,3.4000000000000004,293,1.5 +2013,12,11,23,30,23.700000000000003,0.89,0.09870000000000001,0.67,121,920,916,6,18.2,271,29,0,296,0.272,71.44,30.27,0.15,978,3.4000000000000004,290,1.6 +2013,12,12,0,30,25.400000000000002,0.87,0.0965,0.67,126,947,1031,6,17.5,331,28,0,357,0.272,61.660000000000004,17.02,0.15,978,3.4000000000000004,265,1.2000000000000002 +2013,12,12,1,30,26.1,0.87,0.0926,0.67,126,960,1082,6,17.3,354,27,0,381,0.271,58.52,5.18,0.15,977,3.4000000000000004,252,1 +2013,12,12,2,30,26.900000000000002,0.86,0.09390000000000001,0.67,126,953,1060,6,17.1,335,28,0,362,0.27,55.1,11.46,0.15,977,3.5,265,0.9 +2013,12,12,3,30,27.3,0.87,0.09680000000000001,0.67,123,933,972,6,16.8,257,30,0,285,0.269,52.74,24.52,0.15,977,3.5,295,0.9 +2013,12,12,4,30,27.200000000000003,0.85,0.091,0.67,113,903,826,6,16.5,188,30,0,212,0.267,51.9,37.83,0.15,976,3.5,319,1 +2013,12,12,5,30,26.8,0.84,0.0877,0.67,101,845,632,6,16.2,117,24,0,132,0.265,52.300000000000004,51.06,0.15,976,3.5,333,1.2000000000000002 +2013,12,12,6,30,25.5,0.84,0.0891,0.67,85,737,407,6,16.1,58,9,0,62,0.264,56.13,64.11,0.15,977,3.5,344,1.2000000000000002 +2013,12,12,7,30,23.700000000000003,0.8300000000000001,0.08710000000000001,0.67,59,531,180,6,17.2,28,0,0,28,0.263,66.85,76.83,0.15,977,3.4000000000000004,352,1 +2013,12,12,8,30,22.1,0.8300000000000001,0.0833,0.67,11,58,12,6,18.2,3,0,0,3,0.263,78.63,88.84,0.15,978,3.2,356,0.7000000000000001 +2013,12,12,9,30,21.1,0.8300000000000001,0.0801,0.67,0,0,0,6,18.6,0,0,0,0,0.263,85.71000000000001,100.79,0.15,978,3.1,355,0.6000000000000001 +2013,12,12,10,30,20.5,0.8200000000000001,0.0791,0.67,0,0,0,6,18.8,0,0,0,0,0.264,90.19,111.32000000000001,0.15,978,3,344,0.5 +2013,12,12,11,30,20,0.8200000000000001,0.07930000000000001,0.67,0,0,0,6,18.900000000000002,0,0,0,0,0.265,93.59,120.18,0.15,979,2.9000000000000004,327,0.4 +2013,12,12,12,30,19.5,0.84,0.079,0.67,0,0,0,6,18.8,0,0,0,0,0.266,95.87,126.54,0.15,979,2.8000000000000003,312,0.4 +2013,12,12,13,30,18.900000000000002,0.87,0.0777,0.67,0,0,0,3,18.5,0,0,0,0,0.266,97.61,129.44,0.15,979,2.6,302,0.4 +2013,12,12,14,30,18.400000000000002,0.89,0.0761,0.67,0,0,0,0,18.1,0,0,0,0,0.267,98.36,128.29,0.15,979,2.5,286,0.4 +2013,12,12,15,30,17.900000000000002,0.9,0.0766,0.67,0,0,0,0,17.8,0,0,0,0,0.268,99.53,123.33,0.15,979,2.5,264,0.5 +2013,12,12,16,30,17.5,0.91,0.07830000000000001,0.67,0,0,0,0,17.5,0,0,0,0,0.268,100,115.45,0.15,979,2.5,247,0.5 +2013,12,12,17,30,17.1,0.91,0.0799,0.67,0,0,0,0,17.1,0,0,0,0,0.269,100,105.56,0.15,979,2.5,235,0.6000000000000001 +2013,12,12,18,30,17.1,0.92,0.0821,0.67,0,0,0,0,17,0,0,0,0,0.268,99.51,94.38,0.15,980,2.5,222,0.6000000000000001 +2013,12,12,19,30,18.2,0.93,0.085,0.67,42,387,94,0,17.3,42,387,0,94,0.268,94.48,82.25,0.15,981,2.6,212,0.8 +2013,12,12,20,30,20.400000000000002,0.9400000000000001,0.08750000000000001,0.67,75,685,312,0,18,75,685,0,312,0.268,86.18,69.74,0.15,981,2.6,195,0.8 +2013,12,12,21,30,23.3,0.9400000000000001,0.0874,0.67,94,822,544,3,17.7,124,24,0,138,0.269,70.97,56.81,0.15,981,2.7,172,0.7000000000000001 +2013,12,12,22,30,25.8,0.9500000000000001,0.08800000000000001,0.67,107,899,757,3,16.6,98,20,0,113,0.269,56.97,43.65,0.15,981,2.7,155,0.8 +2013,12,12,23,30,26.900000000000002,0.96,0.08710000000000001,0.67,115,944,930,6,16.1,94,17,0,108,0.269,51.71,30.35,0.15,981,2.7,150,0.9 +2013,12,13,0,30,28.900000000000002,0.9500000000000001,0.1193,0.67,137,943,1039,3,15.700000000000001,76,7,0,83,0.27,44.83,17.1,0.15,980,2.7,131,1.2000000000000002 +2013,12,13,1,30,29.700000000000003,0.96,0.11850000000000001,0.67,140,954,1091,6,15.4,97,15,0,112,0.27,41.910000000000004,5.18,0.15,979,2.7,118,1.4000000000000001 +2013,12,13,2,30,30.1,0.97,0.1228,0.67,141,945,1068,6,15.200000000000001,93,14,0,107,0.27,40.410000000000004,11.33,0.15,979,2.8000000000000003,108,1.6 +2013,12,13,3,30,29.8,1.01,0.1635,0.67,157,896,973,6,14.9,81,10,0,90,0.272,40.5,24.400000000000002,0.15,978,2.8000000000000003,101,1.8 +2013,12,13,4,30,29.1,1.01,0.1757,0.67,154,844,821,6,14.9,62,4,0,65,0.273,41.92,37.71,0.15,978,2.9000000000000004,94,2.1 +2013,12,13,5,30,28.3,1.02,0.1764,0.67,137,773,624,6,15,40,0,0,40,0.275,44.22,50.94,0.15,978,2.9000000000000004,87,2.3000000000000003 +2013,12,13,6,30,27,1.03,0.166,0.67,110,663,401,6,15.4,21,0,0,21,0.277,48.92,63.980000000000004,0.15,979,2.9000000000000004,81,2.4000000000000004 +2013,12,13,7,30,25,1.04,0.1608,0.67,73,444,175,6,15.9,11,0,0,11,0.278,57.01,76.71000000000001,0.15,979,3,77,2.1 +2013,12,13,8,30,23,1.03,0.15810000000000002,0.67,10,30,11,6,16.8,3,0,0,3,0.278,68.14,88.72,0.15,980,3,75,1.5 +2013,12,13,9,30,21.6,1.02,0.1555,0.67,0,0,0,3,17.7,0,0,0,0,0.278,78.42,100.66,0.15,981,3,75,1.1 +2013,12,13,10,30,20.8,1,0.1524,0.67,0,0,0,0,18.1,0,0,0,0,0.278,84.58,111.19,0.15,981,3,75,0.8 +2013,12,13,11,30,20.1,0.99,0.14830000000000002,0.67,0,0,0,0,18.400000000000002,0,0,0,0,0.278,89.86,120.06,0.15,982,2.9000000000000004,76,0.6000000000000001 +2013,12,13,12,30,19.6,0.97,0.1443,0.67,0,0,0,0,18.5,0,0,0,0,0.278,93.29,126.44,0.15,982,2.9000000000000004,75,0.5 +2013,12,13,13,30,19.200000000000003,0.96,0.1416,0.67,0,0,0,3,18.5,0,0,0,0,0.278,95.75,129.37,0.15,981,2.9000000000000004,73,0.5 +2013,12,13,14,30,19,0.9400000000000001,0.13720000000000002,0.67,0,0,0,3,18.6,0,0,0,0,0.278,97.23,128.25,0.15,981,2.9000000000000004,68,0.5 +2013,12,13,15,30,18.900000000000002,0.96,0.1452,0.67,0,0,0,3,18.5,0,0,0,0,0.278,97.81,123.33,0.15,981,2.8000000000000003,64,0.5 +2013,12,13,16,30,18.7,0.97,0.1468,0.67,0,0,0,3,18.5,0,0,0,0,0.278,98.59,115.47,0.15,981,2.8000000000000003,62,0.5 +2013,12,13,17,30,18.6,0.96,0.13670000000000002,0.67,0,0,0,3,18.400000000000002,0,0,0,0,0.278,98.68,105.60000000000001,0.15,981,2.8000000000000003,61,0.5 +2013,12,13,18,30,18.8,0.98,0.1383,0.67,0,0,0,3,18.3,0,0,0,0,0.277,97.03,94.44,0.15,982,2.8000000000000003,61,0.5 +2013,12,13,19,30,20,0.99,0.1353,0.67,48,306,89,3,18.400000000000002,47,5,0,47,0.277,90.42,82.31,0.15,982,2.8000000000000003,58,0.7000000000000001 +2013,12,13,20,30,22.1,0.99,0.1231,0.67,86,634,305,3,18.1,186,111,0,224,0.277,78.26,69.81,0.15,983,2.7,54,0.8 +2013,12,13,21,30,24.200000000000003,1.01,0.1091,0.67,103,798,539,0,17.3,103,798,0,539,0.278,65.51,56.9,0.15,983,2.7,58,0.7000000000000001 +2013,12,13,22,30,26.3,1.02,0.1022,0.67,115,887,756,0,16.400000000000002,115,887,0,756,0.278,54.620000000000005,43.730000000000004,0.15,983,2.6,77,0.5 +2013,12,13,23,30,27.3,1.03,0.0979,0.67,121,937,929,6,15.9,594,181,0,750,0.278,49.730000000000004,30.44,0.15,982,2.6,93,0.4 +2013,12,14,0,30,29.700000000000003,1.02,0.0762,0.67,114,979,1050,6,15.4,350,26,0,375,0.276,41.85,17.18,0.14,982,2.6,123,0.6000000000000001 +2013,12,14,1,30,30.900000000000002,1.02,0.0751,0.67,116,990,1101,6,14.9,518,22,0,541,0.275,37.95,5.2,0.14,981,2.6,122,0.7000000000000001 +2013,12,14,2,30,31.700000000000003,1.03,0.0751,0.67,115,987,1083,0,14.5,115,987,0,1083,0.274,35.25,11.200000000000001,0.14,980,2.6,113,0.8 +2013,12,14,3,30,31.8,1.03,0.076,0.67,112,969,995,0,14.200000000000001,112,969,0,995,0.273,34.38,24.28,0.14,979,2.6,101,1 +2013,12,14,4,30,31.5,1.02,0.07970000000000001,0.67,107,933,846,3,14.100000000000001,371,24,0,390,0.274,34.82,37.59,0.14,979,2.6,88,1.3 +2013,12,14,5,30,30.5,1.01,0.0854,0.67,100,866,647,3,14.200000000000001,225,25,0,241,0.274,37.07,50.82,0.14,979,2.7,77,1.7000000000000002 +2013,12,14,6,30,28.700000000000003,1.01,0.09380000000000001,0.67,87,752,418,3,14.700000000000001,176,25,0,187,0.275,42.54,63.86,0.14,979,2.7,69,2.1 +2013,12,14,7,30,26.200000000000003,1.01,0.0969,0.67,62,538,187,3,16,90,24,0,95,0.275,53.35,76.58,0.14,980,2.8000000000000003,64,2.1 +2013,12,14,8,30,23.8,1,0.099,0.67,12,65,14,3,17.5,5,0,0,5,0.276,68.03,88.61,0.14,981,2.9000000000000004,61,1.8 +2013,12,14,9,30,22.200000000000003,0.98,0.10350000000000001,0.67,0,0,0,3,18.400000000000002,0,0,0,0,0.277,78.99,100.54,0.14,982,3,61,1.6 +2013,12,14,10,30,21.3,0.9500000000000001,0.1105,0.67,0,0,0,6,18.8,0,0,0,0,0.277,85.71000000000001,111.07000000000001,0.14,983,3,63,1.3 +2013,12,14,11,30,20.700000000000003,0.92,0.1125,0.67,0,0,0,6,19.1,0,0,0,0,0.277,90.77,119.95,0.14,983,3,66,1 +2013,12,14,12,30,20.400000000000002,0.91,0.1143,0.67,0,0,0,6,19.3,0,0,0,0,0.277,93.17,126.35000000000001,0.14,983,2.9000000000000004,68,0.9 +2013,12,14,13,30,20.200000000000003,0.9,0.11460000000000001,0.67,0,0,0,6,19.3,0,0,0,0,0.277,94.54,129.3,0.14,983,2.9000000000000004,72,0.7000000000000001 +2013,12,14,14,30,20,0.88,0.1111,0.67,0,0,0,6,19.3,0,0,0,0,0.277,95.89,128.22,0.14,983,2.9000000000000004,75,0.7000000000000001 +2013,12,14,15,30,19.8,0.91,0.1203,0.67,0,0,0,6,19.200000000000003,0,0,0,0,0.277,96.54,123.33,0.14,982,2.9000000000000004,73,0.7000000000000001 +2013,12,14,16,30,19.6,0.92,0.1177,0.67,0,0,0,6,19.1,0,0,0,0,0.278,97.09,115.49000000000001,0.14,983,2.8000000000000003,67,0.6000000000000001 +2013,12,14,17,30,19.3,0.9,0.10650000000000001,0.67,0,0,0,6,19,0,0,0,0,0.279,97.99000000000001,105.65,0.14,983,2.8000000000000003,62,0.6000000000000001 +2013,12,14,18,30,19.5,0.91,0.10210000000000001,0.67,0,0,0,3,18.8,0,0,0,0,0.278,95.64,94.5,0.14,983,2.7,59,0.8 +2013,12,14,19,30,20.700000000000003,0.91,0.09430000000000001,0.67,43,364,91,3,18.8,52,32,0,56,0.278,88.79,82.39,0.14,984,2.6,57,1.2000000000000002 +2013,12,14,20,30,22.700000000000003,0.9,0.0833,0.67,74,687,310,3,18.400000000000002,190,182,0,252,0.278,76.47,69.89,0.14,984,2.6,56,1.4000000000000001 +2013,12,14,21,30,24.700000000000003,0.92,0.07440000000000001,0.67,89,840,547,0,17.3,89,840,0,547,0.278,63.43,56.980000000000004,0.14,984,2.5,56,1.3 +2013,12,14,22,30,26.6,0.92,0.0704,0.67,99,919,762,0,16.2,99,919,0,762,0.278,52.97,43.82,0.14,984,2.5,58,1.1 +2013,12,14,23,30,27.5,0.92,0.068,0.67,106,964,936,6,15.8,508,37,0,540,0.278,48.78,30.53,0.14,984,2.5,59,1 +2013,12,15,0,30,29.8,0.92,0.0707,0.67,112,985,1053,6,15.600000000000001,432,23,0,454,0.277,42.24,17.27,0.14,983,2.5,73,0.8 +2013,12,15,1,30,30.8,0.92,0.07150000000000001,0.67,115,992,1103,6,15.4,384,25,0,409,0.276,39.480000000000004,5.22,0.14,982,2.6,90,0.7000000000000001 +2013,12,15,2,30,31.5,0.92,0.0757,0.67,117,983,1081,6,15.3,211,32,0,242,0.276,37.52,11.08,0.14,982,2.7,103,0.8 +2013,12,15,3,30,31.5,0.9400000000000001,0.1184,0.67,135,930,984,6,15,101,18,0,118,0.276,36.87,24.16,0.14,981,2.8000000000000003,103,1.1 +2013,12,15,4,30,31,0.96,0.13570000000000002,0.67,136,877,832,6,14.8,63,4,0,66,0.276,37.36,37.46,0.14,980,2.9000000000000004,96,1.6 +2013,12,15,5,30,29.8,0.98,0.1449,0.67,126,801,633,6,14.8,53,1,0,54,0.277,40.18,50.7,0.14,980,3,87,2.2 +2013,12,15,6,30,28,1,0.1545,0.67,108,674,407,6,15.3,60,9,0,64,0.278,45.95,63.74,0.14,981,3.1,80,2.6 +2013,12,15,7,30,25.8,1.01,0.15760000000000002,0.67,75,451,180,6,16,65,6,0,66,0.279,54.75,76.46000000000001,0.14,982,3.1,75,2.6 +2013,12,15,8,30,23.6,1.01,0.1527,0.67,12,37,13,3,16.7,7,0,0,7,0.28,65.19,88.5,0.14,983,3.2,73,2.3000000000000003 +2013,12,15,9,30,22.1,1,0.1494,0.67,0,0,0,3,17.3,0,0,0,0,0.281,74.4,100.42,0.14,984,3.2,73,1.8 +2013,12,15,10,30,21.200000000000003,0.98,0.1499,0.67,0,0,0,0,17.8,0,0,0,0,0.281,81.18,110.95,0.14,984,3.2,74,1.4000000000000001 +2013,12,15,11,30,20.700000000000003,0.96,0.1512,0.67,0,0,0,3,18.3,0,0,0,0,0.281,85.92,119.85000000000001,0.14,984,3.2,78,1 +2013,12,15,12,30,20.400000000000002,0.9400000000000001,0.153,0.67,0,0,0,3,18.5,0,0,0,0,0.28,88.93,126.26,0.14,984,3.1,82,0.8 +2013,12,15,13,30,20.200000000000003,0.92,0.1603,0.67,0,0,0,3,18.7,0,0,0,0,0.279,91,129.24,0.14,984,3.1,83,0.7000000000000001 +2013,12,15,14,30,20,0.91,0.1636,0.67,0,0,0,3,18.8,0,0,0,0,0.279,92.8,128.19,0.14,984,3.1,84,0.7000000000000001 +2013,12,15,15,30,19.8,0.91,0.16840000000000002,0.67,0,0,0,6,18.8,0,0,0,0,0.279,93.94,123.33,0.14,983,3.1,85,0.7000000000000001 +2013,12,15,16,30,19.5,0.9,0.16920000000000002,0.67,0,0,0,6,18.7,0,0,0,0,0.28,95.36,115.53,0.14,984,3.1,88,0.7000000000000001 +2013,12,15,17,30,19.3,0.88,0.1627,0.67,0,0,0,6,18.6,0,0,0,0,0.28200000000000003,95.68,105.7,0.14,984,3.1,91,0.6000000000000001 +2013,12,15,18,30,19.400000000000002,0.88,0.159,0.67,0,0,0,6,18.400000000000002,0,0,0,0,0.28400000000000003,94.21000000000001,94.56,0.14,985,3.1,94,0.8 +2013,12,15,19,30,20.6,0.87,0.1529,0.67,49,266,84,6,18.400000000000002,52,36,0,57,0.28600000000000003,87.39,82.46000000000001,0.14,985,3.1,91,1.2000000000000002 +2013,12,15,20,30,22.5,0.86,0.1434,0.67,92,593,295,3,18.1,170,62,0,192,0.289,75.96000000000001,69.97,0.14,986,3.1,85,1.6 +2013,12,15,21,30,24.400000000000002,0.87,0.13670000000000002,0.67,115,756,525,3,17.2,234,27,0,249,0.29,64.02,57.07,0.14,986,3.1,82,1.7000000000000002 +2013,12,15,22,30,26.1,0.87,0.1332,0.67,129,845,738,6,16.5,109,22,0,125,0.29,55.34,43.92,0.14,986,3.1,81,1.6 +2013,12,15,23,30,26.900000000000002,0.86,0.1336,0.67,140,895,910,6,16.1,96,17,0,111,0.29,51.59,30.63,0.14,986,3.1,81,1.6 +2013,12,16,0,30,28.5,0.86,0.1335,0.67,145,923,1026,6,16,87,12,0,98,0.28800000000000003,46.68,17.36,0.12,985,3.1,87,1.7000000000000002 +2013,12,16,1,30,28.900000000000002,0.86,0.1317,0.67,147,933,1076,6,15.9,94,14,0,108,0.28700000000000003,45.47,5.25,0.12,984,3.2,92,1.7000000000000002 +2013,12,16,2,30,28.8,0.87,0.1325,0.67,146,928,1057,6,15.9,92,13,0,104,0.28500000000000003,45.63,10.96,0.12,984,3.3000000000000003,97,1.8 +2013,12,16,3,30,28.200000000000003,0.89,0.1462,0.67,148,897,968,6,16,79,9,0,88,0.28500000000000003,47.49,24.04,0.12,983,3.4000000000000004,100,2 +2013,12,16,4,30,27.200000000000003,0.92,0.1597,0.67,146,848,819,6,16.3,62,3,0,64,0.28500000000000003,51.230000000000004,37.35,0.12,983,3.4000000000000004,101,2.3000000000000003 +2013,12,16,5,30,26.1,0.93,0.1527,0.67,128,784,626,6,16.6,40,0,0,40,0.28600000000000003,55.800000000000004,50.58,0.12,984,3.5,100,2.5 +2013,12,16,6,30,24.8,0.9500000000000001,0.14700000000000002,0.67,105,675,405,6,16.8,24,0,0,24,0.28700000000000003,61.28,63.620000000000005,0.12,984,3.5,99,2.6 +2013,12,16,7,30,23.3,0.9500000000000001,0.13970000000000002,0.67,71,467,182,6,17.1,13,0,0,13,0.28800000000000003,68.08,76.34,0.12,985,3.5,98,2.3000000000000003 +2013,12,16,8,30,22,0.92,0.1285,0.67,13,48,15,6,17.400000000000002,3,0,0,3,0.289,74.99,88.39,0.12,985,3.4000000000000004,96,2 +2013,12,16,9,30,21.200000000000003,0.9,0.126,0.67,0,0,0,6,17.6,0,0,0,0,0.289,80.07000000000001,100.3,0.12,986,3.3000000000000003,96,1.9000000000000001 +2013,12,16,10,30,20.700000000000003,0.89,0.11620000000000001,0.67,0,0,0,6,17.8,0,0,0,0,0.28800000000000003,83.46000000000001,110.84,0.12,986,3.2,98,1.9000000000000001 +2013,12,16,11,30,20.3,0.86,0.0988,0.67,0,0,0,6,18,0,0,0,0,0.28600000000000003,86.42,119.75,0.12,986,3.1,102,1.8 +2013,12,16,12,30,20,0.87,0.111,0.67,0,0,0,6,18.1,0,0,0,0,0.28500000000000003,88.60000000000001,126.18,0.12,987,3.2,108,1.3 +2013,12,16,13,30,19.8,0.85,0.1514,0.67,0,0,0,6,18.1,0,0,0,0,0.28300000000000003,89.85000000000001,129.19,0.12,987,3.2,118,1 +2013,12,16,14,30,19.5,0.84,0.1559,0.67,0,0,0,6,17.900000000000002,0,0,0,0,0.28200000000000003,90.58,128.17000000000002,0.12,987,3.1,124,0.9 +2013,12,16,15,30,19.1,0.85,0.14170000000000002,0.67,0,0,0,6,17.6,0,0,0,0,0.28200000000000003,91.31,123.35000000000001,0.12,986,3,128,0.8 +2013,12,16,16,30,18.7,0.85,0.1254,0.67,0,0,0,6,17.3,0,0,0,0,0.28300000000000003,91.82000000000001,115.57000000000001,0.12,986,2.9000000000000004,134,0.7000000000000001 +2013,12,16,17,30,18.3,0.86,0.1131,0.67,0,0,0,6,17.1,0,0,0,0,0.28400000000000003,92.88,105.76,0.12,986,2.8000000000000003,139,0.7000000000000001 +2013,12,16,18,30,18.1,0.86,0.1019,0.67,0,0,0,6,16.900000000000002,0,0,0,0,0.28600000000000003,92.7,94.64,0.12,986,2.8000000000000003,140,0.9 +2013,12,16,19,30,18.6,0.86,0.0918,0.67,42,358,89,6,16.8,38,0,0,38,0.28800000000000003,89.42,82.54,0.12,986,2.7,138,1.3 +2013,12,16,20,30,19.6,0.86,0.0847,0.67,74,679,306,6,17,142,29,0,152,0.289,84.69,70.06,0.12,987,2.7,130,1.7000000000000002 +2013,12,16,21,30,21,0.86,0.0804,0.67,91,825,539,6,17.2,192,24,0,205,0.29,78.69,57.160000000000004,0.12,987,2.7,119,2 +2013,12,16,22,30,22.400000000000002,0.89,0.07390000000000001,0.67,100,907,753,6,16.8,183,28,0,203,0.291,70.42,44.01,0.12,987,2.8000000000000003,111,2.2 +2013,12,16,23,30,23.1,0.92,0.0694,0.67,106,955,927,6,16.1,216,30,0,242,0.291,64.72,30.73,0.12,987,2.8000000000000003,109,2.2 +2013,12,17,0,30,24.700000000000003,0.73,0.11080000000000001,0.67,136,942,1034,6,15.600000000000001,155,28,0,182,0.291,56.84,17.46,0.13,986,2.9000000000000004,105,2.3000000000000003 +2013,12,17,1,30,25.3,0.72,0.1107,0.67,138,952,1086,6,15.3,145,26,0,171,0.291,53.800000000000004,5.29,0.13,986,2.9000000000000004,103,2.4000000000000004 +2013,12,17,2,30,25.6,0.73,0.10840000000000001,0.67,136,949,1068,6,15.200000000000001,119,21,0,140,0.29,52.52,10.84,0.13,986,3,102,2.5 +2013,12,17,3,30,25.6,0.68,0.1282,0.67,143,914,979,6,15.100000000000001,88,13,0,100,0.29,52.33,23.92,0.13,985,3,100,2.7 +2013,12,17,4,30,25.400000000000002,0.68,0.11800000000000001,0.67,129,886,835,6,15.100000000000001,64,4,0,67,0.289,53.03,37.230000000000004,0.13,985,3,98,2.8000000000000003 +2013,12,17,5,30,24.8,0.65,0.1073,0.67,112,832,642,6,15.200000000000001,49,0,0,49,0.28800000000000003,55.11,50.46,0.13,985,3,98,2.8000000000000003 +2013,12,17,6,30,23.900000000000002,0.66,0.1033,0.67,94,730,419,6,15.100000000000001,53,5,0,56,0.28800000000000003,57.96,63.5,0.13,986,2.9000000000000004,97,2.7 +2013,12,17,7,30,22.700000000000003,0.66,0.09140000000000001,0.67,63,541,192,3,15.100000000000001,33,0,0,33,0.28700000000000003,62.18,76.22,0.13,986,2.8000000000000003,95,2.2 +2013,12,17,8,30,21.200000000000003,0.65,0.07880000000000001,0.67,15,85,17,3,15.4,3,0,0,3,0.28500000000000003,69.65,88.28,0.13,987,2.7,93,1.4000000000000001 +2013,12,17,9,30,20,0.64,0.0675,0.67,0,0,0,3,16.1,0,0,0,0,0.28300000000000003,78.12,100.19,0.13,988,2.5,94,1 +2013,12,17,10,30,19.400000000000002,0.62,0.0623,0.67,0,0,0,3,16.3,0,0,0,0,0.281,82.45,110.74000000000001,0.13,988,2.3000000000000003,98,1 +2013,12,17,11,30,19,0.6,0.061500000000000006,0.67,0,0,0,3,16.5,0,0,0,0,0.28,85.58,119.65,0.13,988,2.2,102,1 +2013,12,17,12,30,18.900000000000002,0.64,0.0645,0.67,0,0,0,3,16.7,0,0,0,0,0.279,87.13,126.11,0.13,988,2,105,1 +2013,12,17,13,30,18.8,0.68,0.06520000000000001,0.67,0,0,0,3,16.8,0,0,0,0,0.279,88.31,129.14000000000001,0.13,988,2,106,0.9 +2013,12,17,14,30,18.6,0.68,0.0604,0.67,0,0,0,3,16.8,0,0,0,0,0.279,89.13,128.16,0.13,987,1.9000000000000001,106,0.9 +2013,12,17,15,30,18.3,0.72,0.06330000000000001,0.67,0,0,0,3,16.6,0,0,0,0,0.279,90.07000000000001,123.37,0.13,987,1.8,107,0.8 +2013,12,17,16,30,18,0.73,0.06380000000000001,0.67,0,0,0,3,16.5,0,0,0,0,0.279,91.01,115.61,0.13,987,1.8,109,0.7000000000000001 +2013,12,17,17,30,17.8,0.72,0.0613,0.67,0,0,0,3,16.400000000000002,0,0,0,0,0.28,91.42,105.82000000000001,0.13,987,1.7000000000000002,112,0.7000000000000001 +2013,12,17,18,30,18,0.72,0.061500000000000006,0.67,0,0,0,3,16.3,0,0,0,0,0.281,89.52,94.71000000000001,0.13,987,1.7000000000000002,115,0.9 +2013,12,17,19,30,19.3,0.72,0.0614,0.67,39,430,94,3,16.3,38,0,0,38,0.281,82.9,82.62,0.13,988,1.7000000000000002,116,1.4000000000000001 +2013,12,17,20,30,21.3,0.71,0.0574,0.67,67,745,320,3,15.8,141,29,0,151,0.28200000000000003,70.95,70.15,0.13,989,1.6,112,2.1 +2013,12,17,21,30,23,0.73,0.050300000000000004,0.67,80,889,560,3,14.700000000000001,308,66,0,343,0.28200000000000003,59.6,57.26,0.13,989,1.6,112,2.3000000000000003 +2013,12,17,22,30,24.6,0.76,0.0455,0.67,87,963,778,3,13.8,470,115,0,552,0.28200000000000003,51.15,44.11,0.13,989,1.7000000000000002,113,2.5 +2013,12,17,23,30,25.3,0.76,0.0451,0.67,94,1003,955,0,13.100000000000001,94,1003,0,955,0.28200000000000003,46.77,30.830000000000002,0.13,989,1.7000000000000002,113,2.5 +2013,12,18,0,30,27,0.61,0.07010000000000001,0.67,114,1002,1070,0,12.5,114,1002,0,1070,0.281,40.69,17.55,0.12,988,1.7000000000000002,112,2.7 +2013,12,18,1,30,27.6,0.62,0.0695,0.67,116,1010,1121,0,12.100000000000001,116,1010,0,1121,0.281,38.21,5.34,0.12,988,1.8,109,2.9000000000000004 +2013,12,18,2,30,27.900000000000002,0.62,0.06720000000000001,0.67,114,1009,1105,0,11.8,114,1009,0,1105,0.281,36.84,10.73,0.12,987,1.8,105,3 +2013,12,18,3,30,27.8,0.62,0.06570000000000001,0.67,110,994,1019,0,11.700000000000001,110,994,0,1019,0.28200000000000003,36.800000000000004,23.81,0.12,987,1.8,103,3.1 +2013,12,18,4,30,27.200000000000003,0.62,0.0625,0.67,102,965,872,0,11.700000000000001,102,965,0,872,0.28300000000000003,38.160000000000004,37.11,0.12,987,1.8,102,3.3000000000000003 +2013,12,18,5,30,26.200000000000003,0.61,0.060200000000000004,0.67,91,910,672,0,11.8,91,910,0,672,0.28300000000000003,40.660000000000004,50.34,0.12,987,1.9000000000000001,101,3.4000000000000004 +2013,12,18,6,30,24.700000000000003,0.6,0.0587,0.67,77,815,442,3,12,77,815,5,442,0.28400000000000003,44.99,63.39,0.12,988,1.9000000000000001,100,3.3000000000000003 +2013,12,18,7,30,22.8,0.6,0.056100000000000004,0.67,56,630,207,0,12.3,56,630,0,207,0.28500000000000003,51.4,76.11,0.12,988,1.8,98,2.8000000000000003 +2013,12,18,8,30,20.900000000000002,0.61,0.053500000000000006,0.67,15,142,20,0,12.8,15,142,0,20,0.28600000000000003,59.79,88.17,0.12,989,1.8,96,2 +2013,12,18,9,30,19.6,0.63,0.0517,0.67,0,0,0,0,13.600000000000001,0,0,0,0,0.28600000000000003,68.35000000000001,100.08,0.12,990,1.7000000000000002,95,1.3 +2013,12,18,10,30,18.8,0.64,0.0507,0.67,0,0,0,0,14.200000000000001,0,0,0,0,0.28500000000000003,74.51,110.64,0.12,990,1.6,99,1 +2013,12,18,11,30,18.3,0.66,0.0495,0.67,0,0,0,3,14.4,0,0,0,0,0.28400000000000003,78.22,119.56,0.12,990,1.6,104,0.9 +2013,12,18,12,30,17.900000000000002,0.6900000000000001,0.0488,0.67,0,0,0,3,14.5,0,0,0,0,0.28200000000000003,80.63,126.04,0.12,990,1.5,109,0.9 +2013,12,18,13,30,17.6,0.75,0.0473,0.67,0,0,0,3,14.5,0,0,0,0,0.281,82.28,129.11,0.12,989,1.5,114,0.8 +2013,12,18,14,30,17.3,0.79,0.045000000000000005,0.67,0,0,0,3,14.5,0,0,0,0,0.28,83.8,128.16,0.12,989,1.5,118,0.8 +2013,12,18,15,30,16.900000000000002,0.8200000000000001,0.0448,0.67,0,0,0,3,14.4,0,0,0,0,0.28,85.46000000000001,123.4,0.12,988,1.5,122,0.8 +2013,12,18,16,30,16.6,0.8300000000000001,0.0444,0.67,0,0,0,3,14.3,0,0,0,0,0.28,86.49,115.66,0.12,988,1.5,126,0.8 +2013,12,18,17,30,16.3,0.81,0.044500000000000005,0.67,0,0,0,3,14.3,0,0,0,0,0.281,87.83,105.89,0.12,988,1.5,128,0.8 +2013,12,18,18,30,16.7,0.79,0.046,0.67,0,0,0,3,14.3,0,0,0,0,0.281,85.61,94.79,0.12,988,1.6,129,1 +2013,12,18,19,30,18.400000000000002,0.78,0.048,0.67,36,463,95,3,14.5,17,0,0,17,0.28200000000000003,77.97,82.71000000000001,0.12,989,1.6,125,1.6 +2013,12,18,20,30,20.6,0.76,0.047900000000000005,0.67,63,761,320,3,14.3,63,9,0,66,0.281,67.37,70.25,0.12,989,1.6,117,2.4000000000000004 +2013,12,18,21,30,22.5,0.75,0.049300000000000004,0.67,79,887,557,3,13.700000000000001,154,24,0,167,0.281,57.46,57.36,0.12,990,1.7000000000000002,109,2.8000000000000003 +2013,12,18,22,30,24,0.76,0.049300000000000004,0.67,89,958,776,3,13.200000000000001,319,25,0,337,0.28,51.02,44.21,0.12,989,1.7000000000000002,105,2.9000000000000004 +2013,12,18,23,30,24.700000000000003,0.74,0.049,0.67,96,996,950,3,13,474,30,0,499,0.279,48.24,30.93,0.12,989,1.8,104,2.9000000000000004 +2013,12,19,0,30,26.3,0.55,0.0655,0.67,113,1003,1068,3,13,555,31,1,584,0.278,43.64,17.650000000000002,0.13,989,1.8,99,3 +2013,12,19,1,30,27,0.54,0.0678,0.67,116,1011,1122,1,12.9,116,1011,1,1122,0.277,41.67,5.39,0.13,988,1.8,97,3 +2013,12,19,2,30,27.3,0.53,0.0674,0.67,115,1008,1106,1,12.8,115,1008,0,1106,0.276,40.730000000000004,10.61,0.13,987,1.8,95,3 +2013,12,19,3,30,27.3,0.52,0.06770000000000001,0.67,112,992,1020,1,12.8,112,992,0,1020,0.276,40.74,23.69,0.13,987,1.8,94,3 +2013,12,19,4,30,26.900000000000002,0.53,0.0656,0.67,105,962,873,0,12.9,105,962,0,873,0.275,41.97,37,0.13,987,1.8,95,2.9000000000000004 +2013,12,19,5,30,26,0.55,0.0636,0.67,94,906,673,0,13,94,906,0,673,0.275,44.410000000000004,50.230000000000004,0.13,987,1.9000000000000001,96,2.8000000000000003 +2013,12,19,6,30,24.8,0.56,0.06280000000000001,0.67,79,810,444,0,13,79,810,0,444,0.275,47.89,63.27,0.13,987,1.9000000000000001,96,2.7 +2013,12,19,7,30,23.1,0.55,0.0641,0.67,58,613,207,0,13.200000000000001,58,613,0,207,0.275,53.57,76,0.13,988,1.9000000000000001,93,2.2 +2013,12,19,8,30,21.1,0.5700000000000001,0.06470000000000001,0.67,16,123,20,1,13.700000000000001,16,123,0,20,0.276,62.64,88.07000000000001,0.13,988,1.8,88,1.4000000000000001 +2013,12,19,9,30,19.8,0.61,0.0616,0.67,0,0,0,0,14.5,0,0,0,0,0.276,71.3,99.98,0.13,989,1.8,84,0.9 +2013,12,19,10,30,18.900000000000002,0.65,0.0587,0.67,0,0,0,0,14.600000000000001,0,0,0,0,0.276,76.35000000000001,110.54,0.13,989,1.7000000000000002,83,0.8 +2013,12,19,11,30,18.2,0.68,0.0579,0.67,0,0,0,0,14.8,0,0,0,0,0.276,80.56,119.48,0.13,989,1.7000000000000002,86,0.7000000000000001 +2013,12,19,12,30,17.6,0.6900000000000001,0.057800000000000004,0.67,0,0,0,0,14.9,0,0,0,0,0.275,83.99,125.98,0.13,989,1.7000000000000002,89,0.7000000000000001 +2013,12,19,13,30,17,0.6900000000000001,0.058,0.67,0,0,0,0,14.9,0,0,0,0,0.275,87.18,129.08,0.13,989,1.6,92,0.7000000000000001 +2013,12,19,14,30,16.6,0.6900000000000001,0.058,0.67,0,0,0,0,14.8,0,0,0,0,0.275,89.11,128.16,0.13,988,1.6,96,0.7000000000000001 +2013,12,19,15,30,16.2,0.68,0.0584,0.67,0,0,0,0,14.8,0,0,0,0,0.275,91.56,123.43,0.13,988,1.6,100,0.7000000000000001 +2013,12,19,16,30,15.9,0.68,0.059000000000000004,0.67,0,0,0,0,14.9,0,0,0,0,0.276,93.9,115.72,0.13,988,1.6,104,0.7000000000000001 +2013,12,19,17,30,15.700000000000001,0.6900000000000001,0.059500000000000004,0.67,0,0,0,0,15,0,0,0,0,0.276,95.60000000000001,105.97,0.13,988,1.6,108,0.8 +2013,12,19,18,30,16.1,0.72,0.0599,0.67,0,0,0,0,15.100000000000001,0,0,0,0,0.276,93.55,94.88,0.13,988,1.6,113,0.8 +2013,12,19,19,30,17.900000000000002,0.75,0.059800000000000006,0.67,38,430,92,1,15.3,38,430,0,92,0.277,84.89,82.8,0.13,989,1.6,108,1 +2013,12,19,20,30,20.8,0.79,0.0584,0.67,66,743,316,1,15.3,66,743,0,316,0.277,70.71000000000001,70.34,0.13,989,1.6,90,1.4000000000000001 +2013,12,19,21,30,23.1,0.85,0.056400000000000006,0.67,82,882,556,1,14.600000000000001,82,882,0,556,0.276,58.72,57.46,0.13,989,1.6,79,1.5 +2013,12,19,22,30,24.900000000000002,0.9,0.053200000000000004,0.67,91,958,776,1,13.700000000000001,91,958,0,776,0.276,49.75,44.32,0.13,989,1.6,80,1.6 +2013,12,19,23,30,25.8,0.9400000000000001,0.050800000000000005,0.67,96,999,953,1,12.8,96,999,0,953,0.275,44.46,31.03,0.13,988,1.7000000000000002,82,1.6 +2013,12,20,0,30,27.8,0.73,0.07010000000000001,0.67,113,1004,1070,1,12.100000000000001,113,1004,0,1070,0.275,37.730000000000004,17.76,0.13,987,1.7000000000000002,84,1.7000000000000002 +2013,12,20,1,30,28.700000000000003,0.77,0.068,0.67,114,1016,1125,1,11.5,114,1016,0,1125,0.275,34.57,5.46,0.13,986,1.7000000000000002,83,1.9000000000000001 +2013,12,20,2,30,29.3,0.8,0.0679,0.67,113,1014,1110,0,11.100000000000001,113,1014,0,1110,0.275,32.47,10.5,0.13,985,1.7000000000000002,80,2 +2013,12,20,3,30,29.400000000000002,0.79,0.07390000000000001,0.67,114,993,1024,0,10.9,114,993,0,1024,0.276,31.85,23.580000000000002,0.13,984,1.7000000000000002,77,2.1 +2013,12,20,4,30,29.1,0.81,0.0734,0.67,106,962,876,0,10.8,106,962,0,876,0.277,32.19,36.88,0.13,984,1.7000000000000002,74,2.2 +2013,12,20,5,30,28.3,0.8300000000000001,0.0694,0.67,95,910,678,0,10.8,95,910,0,678,0.278,33.68,50.120000000000005,0.13,984,1.7000000000000002,71,2.3000000000000003 +2013,12,20,6,30,27.1,0.8300000000000001,0.061700000000000005,0.67,78,824,449,0,10.9,78,824,0,449,0.28,36.32,63.160000000000004,0.13,984,1.7000000000000002,68,2.2 +2013,12,20,7,30,24.900000000000002,0.8300000000000001,0.055,0.67,54,648,212,0,11.200000000000001,54,648,0,212,0.28200000000000003,42.28,75.89,0.13,984,1.7000000000000002,64,1.7000000000000002 +2013,12,20,8,30,22.400000000000002,0.8300000000000001,0.051000000000000004,0.67,16,177,22,0,12.9,16,177,0,22,0.28400000000000003,54.96,87.98,0.13,985,1.6,60,1 +2013,12,20,9,30,20.6,0.85,0.048400000000000006,0.67,0,0,0,0,13.8,0,0,0,0,0.28500000000000003,65.14,99.88,0.13,985,1.6,56,0.8 +2013,12,20,10,30,19.6,0.86,0.0463,0.67,0,0,0,0,14.3,0,0,0,0,0.28600000000000003,71.44,110.45,0.13,986,1.6,50,0.7000000000000001 +2013,12,20,11,30,18.8,0.87,0.0448,0.67,0,0,0,0,14.600000000000001,0,0,0,0,0.28600000000000003,76.8,119.41,0.13,986,1.6,45,0.7000000000000001 +2013,12,20,12,30,18.1,0.88,0.0443,0.67,0,0,0,0,14.8,0,0,0,0,0.28600000000000003,81.27,125.93,0.13,986,1.7000000000000002,38,0.6000000000000001 +2013,12,20,13,30,17.6,0.89,0.0444,0.67,0,0,0,0,15,0,0,0,0,0.28600000000000003,84.48,129.06,0.13,986,1.7000000000000002,30,0.6000000000000001 +2013,12,20,14,30,17.1,0.9,0.045200000000000004,0.67,0,0,0,0,15,0,0,0,0,0.28600000000000003,87.61,128.17000000000002,0.13,985,1.7000000000000002,13,0.7000000000000001 +2013,12,20,15,30,16.7,0.9,0.046,0.67,0,0,0,0,15,0,0,0,0,0.28600000000000003,89.71000000000001,123.47,0.13,985,1.7000000000000002,167,0.7000000000000001 +2013,12,20,16,30,16.3,0.9,0.0472,0.67,0,0,0,0,14.9,0,0,0,0,0.28600000000000003,91.23,115.79,0.13,985,1.7000000000000002,321,0.7000000000000001 +2013,12,20,17,30,15.700000000000001,0.91,0.048400000000000006,0.67,0,0,0,0,14.8,0,0,0,0,0.28600000000000003,94.16,106.05,0.13,985,1.7000000000000002,305,0.7000000000000001 +2013,12,20,18,30,15.8,0.9,0.049,0.67,0,0,0,1,14.700000000000001,0,0,0,0,0.28600000000000003,92.95,94.97,0.13,985,1.7000000000000002,297,0.8 +2013,12,20,19,30,17.7,0.9,0.049,0.67,35,455,91,1,14.700000000000001,35,455,0,91,0.28500000000000003,82.79,82.9,0.13,985,1.7000000000000002,300,1.1 +2013,12,20,20,30,20.700000000000003,0.89,0.048,0.67,62,758,316,1,14.700000000000001,62,758,0,316,0.28400000000000003,68.53,70.44,0.13,986,1.7000000000000002,322,1.2000000000000002 +2013,12,20,21,30,23.6,0.9,0.046200000000000005,0.67,77,892,555,0,14.100000000000001,77,892,0,555,0.28300000000000003,55.160000000000004,57.56,0.13,986,1.7000000000000002,344,1 +2013,12,20,22,30,25.8,0.92,0.0446,0.67,85,964,774,0,13.3,85,964,0,774,0.28200000000000003,45.9,44.42,0.13,985,1.7000000000000002,186,0.7000000000000001 +2013,12,20,23,30,26.900000000000002,0.9400000000000001,0.0438,0.67,92,1006,952,0,12.700000000000001,92,1006,0,952,0.28200000000000003,41.34,31.14,0.13,985,1.7000000000000002,20,0.6000000000000001 +2013,12,21,0,30,29.700000000000003,0.87,0.0488,0.67,99,1026,1076,0,12,99,1026,0,1076,0.281,33.72,17.86,0.13,984,1.6,59,0.9 +2013,12,21,1,30,31.200000000000003,0.89,0.0494,0.67,101,1035,1132,0,11.4,101,1035,0,1132,0.281,29.61,5.53,0.13,982,1.6,63,1.3 +2013,12,21,2,30,32,0.9,0.0504,0.67,101,1032,1117,0,10.9,101,1032,0,1117,0.281,27.34,10.4,0.13,981,1.6,63,1.6 +2013,12,21,3,30,32.300000000000004,0.8300000000000001,0.0565,0.67,103,1009,1028,0,10.600000000000001,103,1009,0,1028,0.281,26.34,23.47,0.13,981,1.7000000000000002,64,1.9000000000000001 +2013,12,21,4,30,31.900000000000002,0.8300000000000001,0.058300000000000005,0.67,98,977,880,0,10.4,98,977,0,880,0.28,26.75,36.77,0.13,980,1.7000000000000002,67,2.1 +2013,12,21,5,30,31,0.8300000000000001,0.060700000000000004,0.67,90,918,680,0,10.5,90,918,0,680,0.28,28.32,50.01,0.13,980,1.8,68,2.2 +2013,12,21,6,30,29.5,0.78,0.0668,0.67,79,812,447,0,10.9,79,812,0,447,0.28,31.59,63.050000000000004,0.13,981,1.9000000000000001,67,2.2 +2013,12,21,7,30,26.900000000000002,0.77,0.069,0.67,59,617,210,0,11.700000000000001,59,617,0,210,0.28,38.74,75.78,0.13,982,1.9000000000000001,62,1.8 +2013,12,21,8,30,24,0.75,0.0709,0.67,17,134,22,0,14,17,134,0,22,0.28,53.44,87.88,0.13,983,2,59,1.2000000000000002 +2013,12,21,9,30,22.200000000000003,0.73,0.07250000000000001,0.67,0,0,0,0,15.100000000000001,0,0,0,0,0.279,64.26,99.78,0.13,983,2,57,1 +2013,12,21,10,30,21,0.71,0.0738,0.67,0,0,0,0,15.9,0,0,0,0,0.278,72.7,110.36,0.13,984,2,54,0.8 +2013,12,21,11,30,20.1,0.68,0.0748,0.67,0,0,0,0,16.5,0,0,0,0,0.276,79.7,119.34,0.13,984,2,51,0.7000000000000001 +2013,12,21,12,30,19.3,0.66,0.0755,0.67,0,0,0,0,16.8,0,0,0,0,0.275,85.32000000000001,125.88000000000001,0.13,985,1.9000000000000001,47,0.6000000000000001 +2013,12,21,13,30,18.6,0.64,0.076,0.67,0,0,0,0,16.8,0,0,0,0,0.274,89.45,129.04,0.13,984,1.9000000000000001,42,0.6000000000000001 +2013,12,21,14,30,18.1,0.62,0.0765,0.67,0,0,0,0,16.8,0,0,0,0,0.274,92.11,128.19,0.13,984,1.8,34,0.6000000000000001 +2013,12,21,15,30,17.6,0.61,0.07740000000000001,0.67,0,0,0,0,16.7,0,0,0,0,0.273,94.71000000000001,123.52,0.13,984,1.8,27,0.6000000000000001 +2013,12,21,16,30,17.1,0.6,0.0786,0.67,0,0,0,0,16.8,0,0,0,0,0.272,97.85000000000001,115.86,0.13,984,1.8,23,0.6000000000000001 +2013,12,21,17,30,16.7,0.6,0.0786,0.67,0,0,0,0,16.7,0,0,0,0,0.272,100,106.13,0.13,985,1.7000000000000002,20,0.6000000000000001 +2013,12,21,18,30,16.8,0.61,0.07780000000000001,0.67,0,0,0,0,16.8,0,0,0,0,0.27,99.71000000000001,95.06,0.13,985,1.7000000000000002,18,0.7000000000000001 +2013,12,21,19,30,18.5,0.62,0.075,0.67,40,382,87,1,16.8,40,382,0,87,0.269,89.89,82.99,0.13,986,1.6,17,1 +2013,12,21,20,30,21.3,0.64,0.0693,0.67,71,719,310,1,16.7,71,719,0,310,0.268,75.05,70.55,0.13,986,1.6,23,1.4000000000000001 +2013,12,21,21,30,23.8,0.68,0.061200000000000004,0.67,85,873,552,1,16.1,85,873,0,552,0.267,62.09,57.67,0.13,986,1.6,33,1.5 +2013,12,21,22,30,25.8,0.75,0.0522,0.67,91,955,771,1,15.100000000000001,91,955,0,771,0.266,51.81,44.53,0.13,986,1.7000000000000002,42,1.5 +2013,12,21,23,30,26.8,0.81,0.046900000000000004,0.67,94,1002,951,1,14,94,1002,0,951,0.266,45.47,31.25,0.13,985,1.7000000000000002,47,1.5 +2013,12,22,0,30,29.200000000000003,0.72,0.07010000000000001,0.67,113,1004,1069,0,13.200000000000001,113,1004,0,1069,0.265,37.33,17.97,0.13,984,1.7000000000000002,52,1.7000000000000002 +2013,12,22,1,30,30.200000000000003,0.73,0.06860000000000001,0.67,115,1013,1123,0,12.600000000000001,115,1013,0,1123,0.264,34,5.61,0.13,984,1.8,54,1.8 +2013,12,22,2,30,30.900000000000002,0.75,0.0669,0.67,113,1012,1109,0,12.4,113,1012,0,1109,0.264,32.18,10.290000000000001,0.13,983,1.8,55,2 +2013,12,22,3,30,31,0.72,0.0722,0.67,113,989,1021,1,12.5,113,989,0,1021,0.264,32.2,23.36,0.13,982,1.9000000000000001,56,2.2 +2013,12,22,4,30,30.700000000000003,0.73,0.0699,0.67,105,960,875,1,12.9,105,960,0,875,0.264,33.59,36.660000000000004,0.13,981,1.9000000000000001,57,2.3000000000000003 +2013,12,22,5,30,29.8,0.74,0.0673,0.67,94,905,677,0,13.3,94,905,0,677,0.265,36.4,49.9,0.13,981,2,58,2.4000000000000004 +2013,12,22,6,30,28.400000000000002,0.74,0.06470000000000001,0.67,79,813,449,0,13.8,79,813,0,449,0.266,40.9,62.95,0.13,981,2,58,2.4000000000000004 +2013,12,22,7,30,26.3,0.73,0.0623,0.67,57,628,213,0,14.600000000000001,57,628,0,213,0.267,48.6,75.68,0.13,982,2,57,2 +2013,12,22,8,30,23.900000000000002,0.73,0.0601,0.67,17,158,23,0,16,17,158,0,23,0.268,61.34,87.79,0.13,983,2,57,1.4000000000000001 +2013,12,22,9,30,22.3,0.73,0.0585,0.67,0,0,0,3,16.900000000000002,0,0,0,0,0.267,71.63,99.69,0.13,983,2,55,1.2000000000000002 +2013,12,22,10,30,21.200000000000003,0.73,0.058,0.67,0,0,0,0,17.3,0,0,0,0,0.267,78.27,110.28,0.13,984,2,48,1.1 +2013,12,22,11,30,20.400000000000002,0.74,0.0582,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.266,82.87,119.27,0.13,984,2,39,0.9 +2013,12,22,12,30,19.700000000000003,0.74,0.0584,0.67,0,0,0,1,17.400000000000002,0,0,0,0,0.265,86.39,125.84,0.13,984,1.9000000000000001,30,0.8 +2013,12,22,13,30,19.1,0.74,0.0591,0.67,0,0,0,0,17.2,0,0,0,0,0.265,88.87,129.03,0.13,983,1.9000000000000001,22,0.7000000000000001 +2013,12,22,14,30,18.6,0.74,0.0601,0.67,0,0,0,0,17,0,0,0,0,0.264,90.69,128.22,0.13,983,1.9000000000000001,16,0.6000000000000001 +2013,12,22,15,30,18.2,0.72,0.059000000000000004,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.264,92.19,123.58,0.13,983,1.9000000000000001,10,0.6000000000000001 +2013,12,22,16,30,17.7,0.71,0.058800000000000005,0.67,0,0,0,0,16.8,0,0,0,0,0.264,94.65,115.93,0.13,983,1.9000000000000001,4,0.6000000000000001 +2013,12,22,17,30,17.1,0.6900000000000001,0.058300000000000005,0.67,0,0,0,0,16.8,0,0,0,0,0.264,97.89,106.22,0.13,983,1.9000000000000001,178,0.6000000000000001 +2013,12,22,18,30,17.2,0.6900000000000001,0.0575,0.67,0,0,0,0,16.7,0,0,0,0,0.264,96.85000000000001,95.16,0.13,983,1.8,352,0.8 +2013,12,22,19,30,18.900000000000002,0.71,0.057,0.67,37,419,87,0,16.7,37,419,0,87,0.263,87.08,83.10000000000001,0.13,984,1.8,352,1.3 +2013,12,22,20,30,21.5,0.74,0.054700000000000006,0.67,65,739,310,0,16.400000000000002,65,739,0,310,0.263,72.82000000000001,70.66,0.13,984,1.8,178,1.8 +2013,12,22,21,30,23.900000000000002,0.78,0.0506,0.67,79,882,549,0,15.600000000000001,79,882,0,549,0.263,59.660000000000004,57.78,0.13,984,1.8,3,1.8 +2013,12,22,22,30,26,0.8,0.0456,0.67,87,963,772,0,14.600000000000001,87,963,0,772,0.262,49.57,44.64,0.13,984,1.7000000000000002,6,1.6 +2013,12,22,23,30,27.1,0.8200000000000001,0.0427,0.67,92,1007,951,0,13.9,92,1007,0,951,0.262,44.35,31.36,0.13,983,1.7000000000000002,8,1.5 +2013,12,23,0,30,29.900000000000002,0.73,0.061200000000000004,0.67,108,1013,1071,0,13.3,108,1013,0,1071,0.263,36.24,18.080000000000002,0.13,982,1.7000000000000002,12,1.4000000000000001 +2013,12,23,1,30,31.400000000000002,0.75,0.060200000000000004,0.67,109,1023,1128,0,12.8,109,1023,0,1128,0.264,32.12,5.69,0.13,981,1.7000000000000002,15,1.4000000000000001 +2013,12,23,2,30,32.4,0.77,0.0603,0.67,109,1021,1114,1,12.3,109,1021,0,1114,0.264,29.48,10.19,0.13,980,1.7000000000000002,19,1.4000000000000001 +2013,12,23,3,30,32.9,0.72,0.0736,0.67,114,994,1027,8,12,800,0,0,892,0.265,28.060000000000002,23.25,0.13,980,1.7000000000000002,25,1.4000000000000001 +2013,12,23,4,30,33,0.72,0.0745,0.67,108,962,880,1,11.600000000000001,108,962,0,880,0.266,27.22,36.550000000000004,0.13,979,1.7000000000000002,32,1.6 +2013,12,23,5,30,32.4,0.72,0.0745,0.67,98,906,683,0,11.4,98,906,0,683,0.266,27.78,49.79,0.13,979,1.7000000000000002,37,1.9000000000000001 +2013,12,23,6,30,30.900000000000002,0.71,0.0723,0.67,83,815,455,0,11.600000000000001,83,815,0,455,0.266,30.51,62.84,0.13,979,1.6,41,2.1 +2013,12,23,7,30,28.3,0.71,0.0718,0.67,61,624,216,0,12.700000000000001,61,624,0,216,0.267,38.17,75.58,0.13,980,1.6,43,1.9000000000000001 +2013,12,23,8,30,25.400000000000002,0.71,0.0722,0.67,18,144,24,0,15.100000000000001,18,144,0,24,0.267,53.04,87.7,0.13,980,1.7000000000000002,42,1.5 +2013,12,23,9,30,23.6,0.7000000000000001,0.07390000000000001,0.67,0,0,0,0,16,0,0,0,0,0.266,62.230000000000004,99.60000000000001,0.13,981,1.7000000000000002,39,1.3 +2013,12,23,10,30,22.5,0.7000000000000001,0.075,0.67,0,0,0,0,16.5,0,0,0,0,0.265,68.87,110.21000000000001,0.13,982,1.7000000000000002,33,1.1 +2013,12,23,11,30,21.6,0.7000000000000001,0.0752,0.67,0,0,0,0,16.7,0,0,0,0,0.264,73.77,119.21000000000001,0.13,982,1.8,24,1 +2013,12,23,12,30,20.900000000000002,0.7000000000000001,0.0775,0.67,0,0,0,0,16.7,0,0,0,0,0.264,76.86,125.81,0.13,982,1.8,13,0.8 +2013,12,23,13,30,20.3,0.73,0.0819,0.67,0,0,0,0,16.5,0,0,0,0,0.263,78.9,129.03,0.13,982,1.9000000000000001,183,0.8 +2013,12,23,14,30,19.700000000000003,0.77,0.083,0.67,0,0,0,0,16.3,0,0,0,0,0.262,80.72,128.25,0.13,982,1.8,356,0.8 +2013,12,23,15,30,19,0.79,0.0792,0.67,0,0,0,0,16,0,0,0,0,0.262,82.79,123.64,0.13,981,1.8,350,0.8 +2013,12,23,16,30,18.5,0.8,0.0751,0.67,0,0,0,0,15.8,0,0,0,0,0.261,84.42,116.01,0.13,981,1.8,340,0.8 +2013,12,23,17,30,18,0.8,0.0719,0.67,0,0,0,1,15.700000000000001,0,0,0,0,0.26,86.44,106.31,0.13,982,1.8,330,0.7000000000000001 +2013,12,23,18,30,18,0.79,0.0704,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.258,85.83,95.26,0.13,982,1.8,320,0.8 +2013,12,23,19,30,19.5,0.79,0.0699,0.67,37,390,84,0,15.700000000000001,37,390,0,84,0.257,78.81,83.2,0.13,983,1.8,318,1.3 +2013,12,23,20,30,21.900000000000002,0.79,0.0688,0.67,69,716,304,1,15.5,69,716,0,304,0.256,67.08,70.77,0.13,984,1.8,321,1.8 +2013,12,23,21,30,24.6,0.8,0.0675,0.67,86,857,542,0,15.200000000000001,86,857,0,542,0.256,55.84,57.89,0.13,984,1.9000000000000001,319,1.7000000000000002 +2013,12,23,22,30,27.400000000000002,0.8,0.0663,0.67,97,935,761,0,14.8,97,935,0,761,0.256,46.25,44.75,0.13,983,1.9000000000000001,314,1.3 +2013,12,23,23,30,28.700000000000003,0.81,0.065,0.67,104,980,940,0,14.4,104,980,0,940,0.255,41.64,31.48,0.13,983,1.9000000000000001,311,1 +2013,12,24,0,30,32,0.79,0.0685,0.67,111,1002,1063,0,13.8,111,1002,0,1063,0.255,33.12,18.19,0.13,982,1.9000000000000001,206,0.5 +2013,12,24,1,30,33.4,0.8,0.0675,0.67,113,1010,1118,0,13.3,113,1010,0,1118,0.254,29.71,5.79,0.13,981,2,95,0.9 +2013,12,24,2,30,34.1,0.8,0.0675,0.67,112,1008,1104,0,13.100000000000001,112,1008,0,1104,0.254,28.11,10.1,0.13,981,2,89,1.4000000000000001 +2013,12,24,3,30,34.300000000000004,0.78,0.0779,0.67,115,981,1017,0,12.9,115,981,0,1017,0.254,27.55,23.14,0.13,980,2.1,83,1.9000000000000001 +2013,12,24,4,30,33.800000000000004,0.77,0.07970000000000001,0.67,110,947,872,1,13,110,947,0,872,0.255,28.36,36.45,0.13,980,2.1,79,2.4000000000000004 +2013,12,24,5,30,32.5,0.76,0.0828,0.67,101,885,674,1,13.3,101,885,0,674,0.256,31.21,49.69,0.13,980,2.2,77,2.8000000000000003 +2013,12,24,6,30,30.5,0.75,0.0873,0.67,88,777,445,7,14,239,52,0,263,0.257,36.69,62.74,0.13,980,2.3000000000000003,77,3 +2013,12,24,7,30,27.900000000000002,0.74,0.0917,0.67,66,572,209,1,15.100000000000001,66,572,0,209,0.258,45.6,75.48,0.13,981,2.4000000000000004,80,2.7 +2013,12,24,8,30,25.5,0.72,0.0959,0.67,19,105,23,8,16.3,13,0,3,13,0.259,56.95,87.62,0.13,982,2.5,85,2.2 +2013,12,24,9,30,23.8,0.7000000000000001,0.1009,0.67,0,0,0,8,17.5,0,0,0,0,0.26,67.64,99.52,0.13,984,2.6,91,1.8 +2013,12,24,10,30,22.8,0.6900000000000001,0.1097,0.67,0,0,0,1,18.2,0,0,0,0,0.26,75.3,110.14,0.13,984,2.7,95,1.6 +2013,12,24,11,30,22.1,0.68,0.1198,0.67,0,0,0,0,18.8,0,0,0,0,0.26,81.62,119.16,0.13,985,2.7,98,1.3 +2013,12,24,12,30,21.6,0.68,0.12940000000000002,0.67,0,0,0,1,19.200000000000003,0,0,0,0,0.261,86.06,125.78,0.13,984,2.7,101,1.1 +2013,12,24,13,30,21.3,0.6900000000000001,0.139,0.67,0,0,0,1,19.400000000000002,0,0,0,0,0.261,88.93,129.04,0.13,984,2.7,105,1 +2013,12,24,14,30,21,0.68,0.14350000000000002,0.67,0,0,0,3,19.5,0,0,0,0,0.262,91.19,128.3,0.13,984,2.6,110,0.9 +2013,12,24,15,30,20.700000000000003,0.71,0.157,0.67,0,0,0,0,19.5,0,0,0,0,0.263,93.07000000000001,123.71000000000001,0.13,983,2.5,112,1 +2013,12,24,16,30,20.400000000000002,0.71,0.1589,0.67,0,0,0,0,19.6,0,0,0,0,0.264,94.91,116.10000000000001,0.13,983,2.5,113,1 +2013,12,24,17,30,20.200000000000003,0.68,0.1507,0.67,0,0,0,0,19.6,0,0,0,0,0.265,96.08,106.41,0.13,983,2.4000000000000004,110,0.9 +2013,12,24,18,30,20.200000000000003,0.72,0.152,0.67,0,0,0,0,19.6,0,0,0,0,0.265,96.17,95.37,0.13,984,2.3000000000000003,107,1 +2013,12,24,19,30,21,0.74,0.1327,0.67,45,264,75,1,19.6,45,264,0,75,0.265,91.74,83.31,0.13,984,2.2,102,1.4000000000000001 +2013,12,24,20,30,22.700000000000003,0.76,0.0983,0.67,78,656,293,1,19.6,78,656,0,293,0.265,82.72,70.88,0.13,985,2.2,91,1.6 +2013,12,24,21,30,24.700000000000003,0.8300000000000001,0.0758,0.67,90,838,534,1,18.900000000000002,90,838,0,534,0.264,70.28,58,0.13,985,2.2,78,1.7000000000000002 +2013,12,24,22,30,26.6,0.88,0.0651,0.67,96,928,754,3,18,366,30,0,388,0.264,59.09,44.87,0.13,984,2.2,71,1.7000000000000002 +2013,12,24,23,30,27.5,0.9,0.058100000000000006,0.67,100,979,934,8,17.2,586,185,0,744,0.265,53.300000000000004,31.59,0.13,984,2.2,69,1.7000000000000002 +2013,12,25,0,30,29.700000000000003,0.9,0.0772,0.67,115,987,1053,1,16.3,115,987,0,1053,0.266,44.53,18.31,0.13,983,2.2,64,1.8 +2013,12,25,1,30,30.700000000000003,0.91,0.0718,0.67,115,1002,1112,8,15.5,722,158,0,879,0.266,39.76,5.88,0.13,982,2.2,60,1.9000000000000001 +2013,12,25,2,30,31.3,0.9,0.0695,0.67,113,1002,1099,7,14.8,701,150,0,848,0.267,36.78,10,0.13,981,2.2,60,2 +2013,12,25,3,30,31.400000000000002,0.89,0.08600000000000001,0.67,119,970,1012,8,14.4,644,116,0,751,0.267,35.57,23.04,0.13,980,2.3000000000000003,62,2.1 +2013,12,25,4,30,30.900000000000002,0.88,0.0877,0.67,113,934,866,8,14.3,537,94,0,613,0.267,36.37,36.34,0.13,980,2.4000000000000004,65,2.1 +2013,12,25,5,30,29.8,0.86,0.09090000000000001,0.67,104,871,669,8,14.4,421,134,0,508,0.267,39,49.58,0.13,980,2.5,69,2.2 +2013,12,25,6,30,28.3,0.85,0.095,0.67,91,763,441,7,14.700000000000001,255,72,0,288,0.267,43.47,62.64,0.13,980,2.6,72,2.2 +2013,12,25,7,30,26.400000000000002,0.84,0.1,0.67,67,558,208,8,15.5,112,45,3,123,0.267,51.13,75.39,0.13,981,2.7,73,2.1 +2013,12,25,8,30,24.6,0.8300000000000001,0.10550000000000001,0.67,19,103,23,7,16.6,14,0,3,14,0.267,60.93,87.53,0.13,982,2.8000000000000003,72,1.9000000000000001 +2013,12,25,9,30,23.400000000000002,0.8200000000000001,0.1116,0.67,0,0,0,7,17.400000000000002,0,0,0,0,0.266,69.04,99.44,0.13,983,2.9000000000000004,68,1.7000000000000002 +2013,12,25,10,30,22.6,0.8200000000000001,0.1168,0.67,0,0,0,7,18,0,0,0,0,0.265,75.48,110.07000000000001,0.13,983,2.9000000000000004,64,1.4000000000000001 +2013,12,25,11,30,22.1,0.81,0.1206,0.67,0,0,0,7,18.6,0,0,0,0,0.265,80.41,119.12,0.13,983,3,62,1.1 +2013,12,25,12,30,21.6,0.8,0.12000000000000001,0.67,0,0,0,7,18.900000000000002,0,0,0,0,0.264,84.61,125.76,0.13,983,2.9000000000000004,61,0.7000000000000001 +2013,12,25,13,30,21,0.79,0.11610000000000001,0.67,0,0,0,3,19.1,0,0,0,0,0.264,88.7,129.06,0.13,982,2.9000000000000004,57,0.5 +2013,12,25,14,30,20.400000000000002,0.79,0.11420000000000001,0.67,0,0,0,1,19.1,0,0,0,0,0.264,92.02,128.34,0.13,982,2.8000000000000003,47,0.5 +2013,12,25,15,30,20,0.79,0.1163,0.67,0,0,0,0,19.1,0,0,0,0,0.264,94.28,123.78,0.13,981,2.8000000000000003,33,0.4 +2013,12,25,16,30,19.700000000000003,0.8,0.12050000000000001,0.67,0,0,0,0,19.1,0,0,0,0,0.265,96.42,116.19,0.13,981,2.7,19,0.4 +2013,12,25,17,30,19.5,0.8200000000000001,0.12340000000000001,0.67,0,0,0,4,19.200000000000003,0,0,0,0,0.266,97.89,106.52,0.13,981,2.7,184,0.4 +2013,12,25,18,30,19.700000000000003,0.85,0.1242,0.67,0,0,0,0,19.200000000000003,0,0,0,0,0.266,96.77,95.48,0.13,981,2.6,347,0.6000000000000001 +2013,12,25,19,30,20.8,0.88,0.1199,0.67,42,283,74,0,19.200000000000003,42,283,0,74,0.267,90.41,83.43,0.13,981,2.5,337,1.1 +2013,12,25,20,30,22.900000000000002,0.91,0.10980000000000001,0.67,80,636,287,0,19.1,80,636,0,287,0.267,79.18,70.99,0.13,981,2.5,337,1.6 +2013,12,25,21,30,25.5,0.9500000000000001,0.09920000000000001,0.67,97,805,522,0,18.6,97,805,0,522,0.267,65.66,58.120000000000005,0.13,981,2.5,331,1.7000000000000002 +2013,12,25,22,30,28.1,0.99,0.0927,0.67,108,893,739,0,17.7,108,893,0,739,0.266,53.29,44.99,0.13,981,2.6,320,1.6 +2013,12,25,23,30,29.3,1.01,0.0902,0.67,115,940,915,0,16.8,115,940,0,915,0.266,47.02,31.71,0.13,980,2.7,313,1.5 +2013,12,26,0,30,32.2,1.01,0.0998,0.67,126,953,1031,0,16.1,126,953,0,1031,0.265,37.92,18.43,0.14,979,3,301,1.3 +2013,12,26,1,30,33.4,1,0.10400000000000001,0.67,131,955,1081,0,15.4,131,955,0,1081,0.264,34.01,5.99,0.14,978,3.4000000000000004,289,1.2000000000000002 +2013,12,26,2,30,33.5,0.99,0.11460000000000001,0.67,136,938,1061,3,15.100000000000001,647,52,0,698,0.263,33.07,9.91,0.14,977,3.8000000000000003,267,1.2000000000000002 +2013,12,26,3,30,32.6,0.98,0.12380000000000001,0.67,137,910,976,8,15.200000000000001,653,170,0,809,0.262,34.99,22.94,0.14,976,4.1000000000000005,244,1.4000000000000001 +2013,12,26,4,30,31.3,0.99,0.1306,0.67,132,866,831,8,15.700000000000001,396,25,0,415,0.262,38.9,36.24,0.14,976,4.4,230,1.4000000000000001 +2013,12,26,5,30,30,0.99,0.133,0.67,121,801,641,8,16.3,258,25,0,274,0.262,43.67,49.480000000000004,0.14,976,4.5,222,1.1 +2013,12,26,6,30,28.900000000000002,1.01,0.1396,0.67,104,687,420,8,16.8,242,51,0,265,0.263,48.120000000000005,62.550000000000004,0.14,976,4.6000000000000005,202,0.7000000000000001 +2013,12,26,7,30,27.6,1.02,0.1379,0.67,73,487,197,8,17.5,105,31,3,113,0.263,54.01,75.3,0.14,977,4.6000000000000005,123,0.5 +2013,12,26,8,30,26.5,1.03,0.13040000000000002,0.67,18,86,22,1,18.900000000000002,18,86,0,22,0.264,63.190000000000005,87.46000000000001,0.14,977,4.5,47,0.6000000000000001 +2013,12,26,9,30,25.700000000000003,1.02,0.12150000000000001,0.67,0,0,0,7,19.8,0,0,0,0,0.266,70.10000000000001,99.37,0.14,977,4.5,28,0.8 +2013,12,26,10,30,25.1,1.02,0.1177,0.67,0,0,0,4,19.900000000000002,0,0,0,0,0.267,72.87,110.01,0.14,977,4.4,21,1 +2013,12,26,11,30,24.6,1.01,0.11900000000000001,0.67,0,0,0,8,19.700000000000003,0,0,0,0,0.268,74.4,119.08,0.14,977,4.3,16,1 +2013,12,26,12,30,24.1,1.01,0.1246,0.67,0,0,0,8,20,0,0,0,0,0.269,78.07000000000001,125.75,0.14,977,4.2,8,0.9 +2013,12,26,13,30,23.700000000000003,1.02,0.1306,0.67,0,0,0,3,19.900000000000002,0,0,0,0,0.27,79.14,129.08,0.14,976,4,175,0.8 +2013,12,26,14,30,23.400000000000002,1.03,0.1366,0.67,0,0,0,1,19.6,0,0,0,0,0.271,79.25,128.4,0.14,976,3.9000000000000004,338,0.7000000000000001 +2013,12,26,15,30,23.1,1.03,0.1403,0.67,0,0,0,7,19.5,0,0,0,0,0.273,80.26,123.86,0.14,976,3.9000000000000004,309,0.5 +2013,12,26,16,30,22.700000000000003,1.03,0.1414,0.67,0,0,0,8,19.5,0,0,0,0,0.275,82.04,116.29,0.14,976,3.8000000000000003,267,0.4 +2013,12,26,17,30,22.200000000000003,1.03,0.1378,0.67,0,0,0,3,19.5,0,0,0,0,0.278,84.75,106.63,0.14,976,3.8000000000000003,240,0.4 +2013,12,26,18,30,22.1,1.03,0.13340000000000002,0.67,0,0,0,3,19.400000000000002,0,0,0,0,0.279,84.73,95.59,0.14,977,3.7,219,0.6000000000000001 +2013,12,26,19,30,23,1.03,0.1296,0.67,40,258,69,3,19.3,35,0,3,35,0.281,79.65,83.54,0.14,978,3.7,200,0.9 +2013,12,26,20,30,24.8,1.05,0.1212,0.67,81,603,276,3,18.8,145,38,0,157,0.281,69.24,71.11,0.14,978,3.6,189,1.1 +2013,12,26,21,30,26.900000000000002,1.06,0.114,0.67,102,768,506,1,18.6,102,768,0,506,0.28,60.370000000000005,58.24,0.14,978,3.6,175,1 +2013,12,26,22,30,28.8,1.05,0.1124,0.67,116,856,720,1,18.5,116,856,0,720,0.279,53.86,45.11,0.14,978,3.6,159,0.9 +2013,12,26,23,30,29.700000000000003,1.05,0.111,0.67,126,907,896,1,18.400000000000002,126,907,0,896,0.278,50.74,31.830000000000002,0.14,978,3.6,152,0.8 +2013,12,27,0,30,31.400000000000002,1.03,0.19010000000000002,0.67,172,875,1001,1,18.3,172,875,0,1001,0.276,45.800000000000004,18.55,0.14,977,3.7,136,0.8 +2013,12,27,1,30,32,1.02,0.198,0.67,180,883,1058,1,18.2,180,883,0,1058,0.276,43.82,6.1000000000000005,0.14,976,3.7,125,0.9 +2013,12,27,2,30,32.1,1,0.20170000000000002,0.67,181,877,1045,0,17.900000000000002,181,877,0,1045,0.275,42.77,9.83,0.14,975,3.8000000000000003,111,1.1 +2013,12,27,3,30,31.6,0.99,0.2707,0.67,208,810,954,6,17.6,72,6,0,78,0.275,43.32,22.84,0.14,974,3.8000000000000003,98,1.5 +2013,12,27,4,30,30.6,0.98,0.2801,0.67,199,759,812,8,17.7,593,167,0,727,0.276,46.21,36.14,0.14,974,3.9000000000000004,91,2.2 +2013,12,27,5,30,29.3,0.97,0.27090000000000003,0.67,176,691,625,6,18.2,150,27,0,168,0.276,51.300000000000004,49.39,0.14,975,3.9000000000000004,87,2.7 +2013,12,27,6,30,27.6,0.98,0.2634,0.67,144,573,408,1,18.900000000000002,144,573,0,408,0.275,58.93,62.45,0.14,975,4,86,3 +2013,12,27,7,30,25.5,0.99,0.2526,0.67,95,369,189,1,19.5,95,369,0,189,0.275,69.34,75.21000000000001,0.14,976,4,87,2.8000000000000003 +2013,12,27,8,30,23.700000000000003,0.97,0.2503,0.67,18,33,19,1,19.900000000000002,18,33,0,19,0.274,79.15,87.38,0.14,978,4.1000000000000005,90,2.3000000000000003 +2013,12,27,9,30,22.700000000000003,0.97,0.25880000000000003,0.67,0,0,0,0,20.1,0,0,0,0,0.275,85.28,99.3,0.14,979,4.1000000000000005,94,1.9000000000000001 +2013,12,27,10,30,22.200000000000003,0.98,0.2477,0.67,0,0,0,0,20.200000000000003,0,0,0,0,0.275,88.35000000000001,109.96000000000001,0.14,979,4.1000000000000005,98,1.7000000000000002 +2013,12,27,11,30,21.8,0.97,0.22410000000000002,0.67,0,0,0,1,20.200000000000003,0,0,0,0,0.276,90.78,119.05,0.14,979,4,101,1.5 +2013,12,27,12,30,21.5,0.97,0.21050000000000002,0.67,0,0,0,0,20.200000000000003,0,0,0,0,0.275,92.57000000000001,125.75,0.14,979,4,103,1.3 +2013,12,27,13,30,21.200000000000003,0.96,0.19110000000000002,0.67,0,0,0,1,20.200000000000003,0,0,0,0,0.273,94.10000000000001,129.11,0.14,979,3.9000000000000004,106,1.2000000000000002 +2013,12,27,14,30,20.900000000000002,0.9500000000000001,0.17350000000000002,0.67,0,0,0,3,20.1,0,0,0,0,0.272,95.18,128.46,0.14,978,3.8000000000000003,109,1 +2013,12,27,15,30,20.6,0.9500000000000001,0.1698,0.67,0,0,0,0,20,0,0,0,0,0.271,96.15,123.95,0.14,978,3.7,111,1 +2013,12,27,16,30,20.400000000000002,0.9500000000000001,0.1602,0.67,0,0,0,0,19.8,0,0,0,0,0.27,96.41,116.4,0.14,978,3.7,111,0.9 +2013,12,27,17,30,20.200000000000003,0.9500000000000001,0.14650000000000002,0.67,0,0,0,0,19.700000000000003,0,0,0,0,0.269,96.7,106.74000000000001,0.14,978,3.6,111,0.8 +2013,12,27,18,30,20.200000000000003,0.96,0.1509,0.67,0,0,0,0,19.5,0,0,0,0,0.268,96.02,95.71000000000001,0.14,979,3.6,110,0.9 +2013,12,27,19,30,21,0.97,0.14980000000000002,0.67,42,228,67,1,19.5,42,228,0,67,0.268,91.22,83.66,0.14,980,3.5,102,1.2000000000000002 +2013,12,27,20,30,22.400000000000002,0.96,0.1434,0.67,88,571,271,1,19.700000000000003,88,571,0,271,0.268,84.52,71.23,0.14,980,3.5,83,1.5 +2013,12,27,21,30,24.3,0.99,0.1459,0.67,115,734,500,1,19.8,115,734,0,500,0.267,76,58.36,0.14,980,3.5,61,1.5 +2013,12,27,22,30,26.5,1,0.1454,0.67,132,826,714,1,19.6,132,826,0,714,0.267,66.01,45.230000000000004,0.14,979,3.5,41,1.3 +2013,12,27,23,30,27.5,1.01,0.1374,0.67,139,886,891,1,19.6,139,886,0,891,0.266,61.940000000000005,31.95,0.14,979,3.5,33,1.2000000000000002 +2013,12,28,0,30,30.400000000000002,1.07,0.15080000000000002,0.67,152,907,1011,1,19.3,152,907,0,1011,0.266,51.54,18.67,0.13,978,3.5,21,1 +2013,12,28,1,30,31.700000000000003,1.1,0.13490000000000002,0.67,146,930,1071,1,18.8,146,930,0,1071,0.265,46.49,6.21,0.13,977,3.6,24,0.9 +2013,12,28,2,30,32.6,1.11,0.12150000000000001,0.67,138,938,1063,1,18.3,138,938,0,1063,0.265,42.730000000000004,9.75,0.13,976,3.6,35,0.9 +2013,12,28,3,30,33.1,1.1300000000000001,0.1221,0.67,135,921,984,1,17.7,135,921,0,984,0.265,40,22.740000000000002,0.13,975,3.6,52,0.9 +2013,12,28,4,30,33,1.1,0.1282,0.67,130,879,841,1,17.2,130,879,0,841,0.265,38.88,36.050000000000004,0.13,975,3.7,65,1.2000000000000002 +2013,12,28,5,30,32.1,1.08,0.14100000000000001,0.67,124,807,650,1,16.8,124,807,0,650,0.265,40.11,49.29,0.13,974,3.7,70,1.7000000000000002 +2013,12,28,6,30,30.400000000000002,1.07,0.151,0.67,108,688,428,1,17.1,108,688,0,428,0.266,44.89,62.36,0.13,975,3.7,68,2.2 +2013,12,28,7,30,28.1,1.06,0.1549,0.67,78,481,201,1,18,78,481,0,201,0.266,54.38,75.13,0.13,975,3.7,66,2.4000000000000004 +2013,12,28,8,30,26,1.02,0.155,0.67,20,77,23,1,19.200000000000003,20,77,0,23,0.266,65.99,87.31,0.13,976,3.8000000000000003,63,2.3000000000000003 +2013,12,28,9,30,24.5,0.98,0.1509,0.67,0,0,0,0,20,0,0,0,0,0.265,75.99,99.23,0.13,976,3.8000000000000003,61,2 +2013,12,28,10,30,23.700000000000003,0.9400000000000001,0.1447,0.67,0,0,0,0,20.5,0,0,0,0,0.265,82.18,109.91,0.13,977,3.8000000000000003,59,1.8 +2013,12,28,11,30,23.200000000000003,0.92,0.13720000000000002,0.67,0,0,0,0,20.700000000000003,0,0,0,0,0.265,85.97,119.02,0.13,977,3.8000000000000003,55,1.4000000000000001 +2013,12,28,12,30,22.8,0.91,0.1376,0.67,0,0,0,0,20.8,0,0,0,0,0.264,88.56,125.75,0.13,977,3.8000000000000003,49,1.1 +2013,12,28,13,30,22.400000000000002,0.89,0.136,0.67,0,0,0,0,20.8,0,0,0,0,0.264,90.93,129.15,0.13,977,3.7,44,0.8 +2013,12,28,14,30,22,0.86,0.1303,0.67,0,0,0,0,20.8,0,0,0,0,0.263,92.95,128.54,0.13,976,3.6,40,0.6000000000000001 +2013,12,28,15,30,21.6,0.85,0.13040000000000002,0.67,0,0,0,0,20.8,0,0,0,0,0.263,95,124.05,0.13,976,3.5,32,0.5 +2013,12,28,16,30,21.1,0.84,0.12810000000000002,0.67,0,0,0,0,20.700000000000003,0,0,0,0,0.264,97.61,116.51,0.13,976,3.4000000000000004,16,0.5 +2013,12,28,17,30,20.700000000000003,0.84,0.1228,0.67,0,0,0,0,20.700000000000003,0,0,0,0,0.265,99.7,106.86,0.13,977,3.2,175,0.5 +2013,12,28,18,30,20.8,0.85,0.1193,0.67,0,0,0,0,20.5,0,0,0,0,0.266,98.45,95.83,0.13,977,3.1,335,0.8 +2013,12,28,19,30,22.1,0.88,0.114,0.67,38,270,68,1,20.400000000000002,38,270,0,68,0.267,90.2,83.78,0.13,978,3,321,1.5 +2013,12,28,20,30,24.5,0.92,0.1046,0.67,77,627,277,1,20,77,627,0,277,0.268,75.92,71.36,0.13,978,3,311,2.1 +2013,12,28,21,30,27.400000000000002,0.98,0.10010000000000001,0.67,96,791,509,1,19.5,96,791,0,509,0.269,62.27,58.480000000000004,0.13,978,3,301,2.3000000000000003 +2013,12,28,22,30,30.400000000000002,1.01,0.1009,0.67,110,874,724,0,19,110,874,0,724,0.269,50.550000000000004,45.35,0.13,977,3.1,295,2.4000000000000004 +2013,12,28,23,30,31.8,1.03,0.1023,0.67,120,922,901,0,18.3,120,922,0,901,0.269,44.730000000000004,32.07,0.13,977,3.1,293,2.3000000000000003 +2013,12,29,0,30,35.1,1,0.1158,0.67,134,939,1023,0,17.5,134,939,0,1023,0.269,35.44,18.79,0.13,976,3.1,290,1.9000000000000001 +2013,12,29,1,30,36.7,1.02,0.11120000000000001,0.67,133,955,1082,0,16.6,133,955,0,1082,0.268,30.51,6.33,0.13,975,3.1,287,1.6 +2013,12,29,2,30,37.9,1.02,0.1053,0.67,130,957,1073,0,15.600000000000001,130,957,0,1073,0.269,26.92,9.67,0.13,974,3.1,287,1.4000000000000001 +2013,12,29,3,30,38.6,1.02,0.0984,0.67,123,948,998,0,14.9,123,948,0,998,0.27,24.740000000000002,22.650000000000002,0.13,973,3,293,1.2000000000000002 +2013,12,29,4,30,38.7,1,0.0942,0.67,114,919,858,0,14.4,114,919,0,858,0.271,23.8,35.95,0.13,972,3,303,1 +2013,12,29,5,30,38.2,0.99,0.0936,0.67,103,863,667,0,14.100000000000001,103,863,0,667,0.271,23.990000000000002,49.2,0.13,972,3,311,0.9 +2013,12,29,6,30,37,0.98,0.1008,0.67,91,754,441,0,14,91,754,0,441,0.272,25.5,62.28,0.13,972,3.1,176,0.6000000000000001 +2013,12,29,7,30,34.1,0.96,0.1198,0.67,71,530,207,8,15.4,88,16,3,92,0.272,32.71,75.05,0.13,973,3.3000000000000003,64,0.8 +2013,12,29,8,30,30.400000000000002,0.93,0.14730000000000001,0.67,20,81,24,8,19.5,13,0,3,13,0.273,52.15,87.25,0.13,974,3.5,97,1.3 +2013,12,29,9,30,27.5,0.92,0.1585,0.67,0,0,0,8,20.8,0,0,0,0,0.273,66.76,99.18,0.13,976,3.7,114,1.7000000000000002 +2013,12,29,10,30,25.5,0.87,0.1583,0.67,0,0,0,1,21.5,0,0,0,0,0.273,78.75,109.87,0.13,977,3.8000000000000003,128,2.1 +2013,12,29,11,30,23.900000000000002,0.75,0.17700000000000002,0.67,0,0,0,0,22.1,0,0,0,0,0.273,89.86,119,0.13,979,3.8000000000000003,133,2.5 +2013,12,29,12,30,22.700000000000003,0.61,0.2278,0.67,0,0,0,4,22.1,0,0,0,0,0.272,96.19,125.76,0.13,979,3.8000000000000003,132,2.5 +2013,12,29,13,30,21.8,0.51,0.2797,0.67,0,0,0,3,21.400000000000002,0,0,0,0,0.271,97.37,129.19,0.13,979,3.7,130,2.5 +2013,12,29,14,30,21,0.41000000000000003,0.3211,0.67,0,0,0,0,20.400000000000002,0,0,0,0,0.27,96.15,128.61,0.13,980,3.6,130,2.3000000000000003 +2013,12,29,15,30,20.3,0.38,0.3774,0.67,0,0,0,1,19.6,0,0,0,0,0.269,95.49,124.15,0.13,980,3.5,129,2 +2013,12,29,16,30,19.8,0.35000000000000003,0.3915,0.67,0,0,0,3,19,0,0,0,0,0.269,95.14,116.63,0.13,980,3.5,127,1.8 +2013,12,29,17,30,19.3,0.32,0.3864,0.67,0,0,0,0,18.6,0,0,0,0,0.269,95.82000000000001,106.98,0.13,980,3.4000000000000004,127,1.6 +2013,12,29,18,30,19.200000000000003,0.31,0.3861,0.67,0,0,0,0,18.3,0,0,0,0,0.27,94.65,95.96000000000001,0.13,980,3.4000000000000004,127,1.6 +2013,12,29,19,30,19.700000000000003,0.31,0.38130000000000003,0.67,45,35,49,1,18.2,45,35,0,49,0.27,91.04,83.91,0.13,981,3.5,126,1.8 +2013,12,29,20,30,21.1,0.32,0.3687,0.67,144,302,240,1,18.2,144,302,0,240,0.271,83.34,71.48,0.13,981,3.5,121,2.1 +2013,12,29,21,30,23,0.35000000000000003,0.3551,0.67,196,509,462,1,18.1,196,509,0,462,0.271,73.78,58.61,0.13,981,3.5,109,2.1 +2013,12,29,22,30,25.1,0.39,0.32830000000000004,0.67,219,650,675,1,18.1,219,650,0,675,0.271,65.17,45.47,0.13,981,3.5,95,1.9000000000000001 +2013,12,29,23,30,26.200000000000003,0.42,0.3058,0.67,229,739,854,1,18.400000000000002,229,739,0,854,0.271,62.06,32.19,0.13,981,3.5,88,1.8 +2013,12,30,0,30,29.1,0.53,0.1975,0.67,184,859,996,1,18.5,184,859,0,996,0.27,52.99,18.92,0.13,980,3.6,67,1.6 +2013,12,30,1,30,30.6,0.55,0.1953,0.67,186,875,1056,1,18.6,186,875,0,1056,0.27,48.88,6.45,0.13,979,3.6,54,1.5 +2013,12,30,2,30,31.8,0.5700000000000001,0.19690000000000002,0.67,185,871,1045,1,18.7,185,871,0,1045,0.269,45.77,9.6,0.13,978,3.7,51,1.7000000000000002 +2013,12,30,3,30,32.4,0.61,0.20700000000000002,0.67,185,846,965,1,18.7,185,846,0,965,0.27,44.26,22.56,0.13,977,3.7,56,2 +2013,12,30,4,30,32.300000000000004,0.66,0.2083,0.67,174,804,826,1,18.7,174,804,0,826,0.27,44.43,35.86,0.13,976,3.8000000000000003,63,2.5 +2013,12,30,5,30,31.200000000000003,0.6900000000000001,0.2031,0.67,154,739,637,1,18.6,154,739,0,637,0.271,47.2,49.11,0.13,975,3.9000000000000004,69,3.1 +2013,12,30,6,30,29.200000000000003,0.77,0.3175,0.67,162,520,405,6,18.6,205,29,0,219,0.271,53.02,62.190000000000005,0.13,975,4,72,3.4000000000000004 +2013,12,30,7,30,26.5,0.74,0.32170000000000004,0.67,109,298,186,1,18.8,109,298,0,186,0.272,62.53,74.97,0.13,976,4.1000000000000005,77,3.3000000000000003 +2013,12,30,8,30,24.1,0.67,0.3204,0.67,17,13,17,1,18.8,17,13,0,17,0.273,72.48,87.18,0.13,977,4.1000000000000005,82,3 +2013,12,30,9,30,22.700000000000003,0.63,0.33280000000000004,0.67,0,0,0,0,18.900000000000002,0,0,0,0,0.273,78.91,99.12,0.13,978,4,88,2.7 +2013,12,30,10,30,22,0.59,0.3498,0.67,0,0,0,3,18.8,0,0,0,0,0.274,82.25,109.83,0.13,979,3.9000000000000004,94,2.3000000000000003 +2013,12,30,11,30,21.700000000000003,0.59,0.3375,0.67,0,0,0,3,18.8,0,0,0,0,0.274,83.60000000000001,118.99000000000001,0.13,980,3.8000000000000003,97,2.1 +2013,12,30,12,30,21.400000000000002,0.6,0.32220000000000004,0.67,0,0,0,3,18.8,0,0,0,0,0.274,85.14,125.78,0.13,979,3.8000000000000003,101,1.8 +2013,12,30,13,30,21.1,0.61,0.3,0.67,0,0,0,3,18.900000000000002,0,0,0,0,0.274,87.31,129.24,0.13,979,3.8000000000000003,107,1.5 +2013,12,30,14,30,20.8,0.62,0.2792,0.67,0,0,0,3,19,0,0,0,0,0.273,89.51,128.7,0.13,979,3.8000000000000003,115,1.4000000000000001 +2013,12,30,15,30,20.6,0.64,0.2742,0.67,0,0,0,3,19,0,0,0,0,0.272,90.67,124.26,0.13,979,3.8000000000000003,119,1.3 +2013,12,30,16,30,20.3,0.66,0.2605,0.67,0,0,0,3,19,0,0,0,0,0.272,92.14,116.75,0.13,979,3.8000000000000003,119,1.2000000000000002 +2013,12,30,17,30,20.1,0.66,0.23670000000000002,0.67,0,0,0,3,18.900000000000002,0,0,0,0,0.271,93.03,107.11,0.13,979,3.7,119,1.1 +2013,12,30,18,30,20,0.68,0.22440000000000002,0.67,0,0,0,1,18.900000000000002,0,0,0,0,0.271,93.3,96.09,0.13,979,3.6,122,1.2000000000000002 +2013,12,30,19,30,20.6,0.71,0.2139,0.67,44,135,58,1,18.8,44,135,0,58,0.27,89.63,84.03,0.13,979,3.5,122,1.5 +2013,12,30,20,30,21.8,0.71,0.1998,0.67,103,487,257,1,18.900000000000002,103,487,0,257,0.27,83.57000000000001,71.61,0.13,980,3.4000000000000004,117,1.6 +2013,12,30,21,30,23.5,0.74,0.19310000000000002,0.67,134,676,485,1,18.900000000000002,134,676,0,485,0.27,75.31,58.74,0.13,980,3.4000000000000004,108,1.6 +2013,12,30,22,30,25.3,0.76,0.18330000000000002,0.67,151,788,702,3,18.900000000000002,79,14,0,89,0.27,67.69,45.6,0.13,980,3.3000000000000003,96,1.6 +2013,12,30,23,30,26.200000000000003,0.77,0.1758,0.67,160,853,881,1,19.1,160,853,0,881,0.27,64.86,32.32,0.13,979,3.3000000000000003,90,1.5 +2013,12,31,0,30,27.700000000000003,0.81,0.2199,0.67,190,855,998,1,19.3,190,855,0,998,0.27,60.1,19.04,0.13,979,3.3000000000000003,83,1.4000000000000001 +2013,12,31,1,30,28.6,0.8200000000000001,0.2258,0.67,197,864,1055,1,19.3,197,864,0,1055,0.271,57.1,6.58,0.13,978,3.4000000000000004,82,1.3 +2013,12,31,2,30,29.400000000000002,0.8200000000000001,0.2205,0.67,193,863,1044,1,19.200000000000003,193,863,0,1044,0.272,54.120000000000005,9.540000000000001,0.13,977,3.6,80,1.4000000000000001 +2013,12,31,3,30,29.8,0.85,0.2662,0.67,208,811,958,1,19,208,811,0,958,0.274,52.4,22.47,0.13,977,3.7,79,1.6 +2013,12,31,4,30,29.6,0.87,0.2716,0.67,198,765,819,1,18.900000000000002,198,765,0,819,0.277,52.49,35.77,0.13,976,3.7,80,1.8 +2013,12,31,5,30,28.700000000000003,0.86,0.2676,0.67,177,692,631,1,18.900000000000002,177,692,0,631,0.281,55.29,49.03,0.13,976,3.8000000000000003,80,2.1 +2013,12,31,6,30,27.400000000000002,0.87,0.2615,0.67,146,575,415,6,19,71,14,0,78,0.28600000000000003,60.36,62.11,0.13,977,3.8000000000000003,80,2.2 +2013,12,31,7,30,25.8,0.87,0.2456,0.67,97,377,195,6,19.3,33,0,3,33,0.29,67.19,74.9,0.13,978,3.7,81,2 +2013,12,31,8,30,24.200000000000003,0.87,0.2286,0.67,20,41,22,7,19.5,7,0,3,7,0.293,75.03,87.12,0.13,978,3.7,80,1.6 +2013,12,31,9,30,23,0.87,0.21250000000000002,0.67,0,0,0,6,19.8,0,0,0,0,0.294,82.02,99.07000000000001,0.13,979,3.6,78,1.3 +2013,12,31,10,30,22.3,0.86,0.1975,0.67,0,0,0,8,19.900000000000002,0,0,0,0,0.293,86.13,109.8,0.13,980,3.5,79,1.1 +2013,12,31,11,30,21.8,0.84,0.1872,0.67,0,0,0,3,20,0,0,0,0,0.293,89.34,118.98,0.13,980,3.4000000000000004,82,1 +2013,12,31,12,30,21.400000000000002,0.8,0.1839,0.67,0,0,0,3,20.1,0,0,0,0,0.292,92.07000000000001,125.8,0.13,981,3.4000000000000004,89,0.9 +2013,12,31,13,30,21.200000000000003,0.75,0.18810000000000002,0.67,0,0,0,3,20.1,0,0,0,0,0.29,93.69,129.31,0.13,981,3.4000000000000004,97,0.9 +2013,12,31,14,30,21.1,0.7000000000000001,0.19190000000000002,0.67,0,0,0,3,20.200000000000003,0,0,0,0,0.28800000000000003,94.76,128.79,0.13,981,3.3000000000000003,104,1 +2013,12,31,15,30,21,0.6900000000000001,0.1952,0.67,0,0,0,1,20.3,0,0,0,0,0.28700000000000003,95.84,124.38000000000001,0.13,981,3.3000000000000003,110,1 +2013,12,31,16,30,20.900000000000002,0.67,0.1829,0.67,0,0,0,0,20.3,0,0,0,0,0.28500000000000003,96.4,116.87,0.13,980,3.2,114,1.1 +2013,12,31,17,30,20.700000000000003,0.65,0.1675,0.67,0,0,0,0,20.200000000000003,0,0,0,0,0.28400000000000003,97.06,107.24000000000001,0.13,981,3,114,1.1 +2013,12,31,18,30,20.8,0.67,0.163,0.67,0,0,0,1,20,0,0,0,0,0.28300000000000003,94.99,96.22,0.13,981,2.8000000000000003,113,1.3 +2013,12,31,19,30,21.5,0.67,0.1497,0.67,41,196,61,1,19.700000000000003,41,196,0,61,0.28200000000000003,89.43,84.16,0.13,982,2.6,112,1.7000000000000002 +2013,12,31,20,30,23,0.68,0.1321,0.67,87,586,271,1,19.200000000000003,87,586,0,271,0.28200000000000003,79.21000000000001,71.74,0.13,983,2.3000000000000003,108,2 +2013,12,31,21,30,24.900000000000002,0.75,0.113,0.67,105,784,510,1,18.1,105,784,0,510,0.28200000000000003,66.03,58.86,0.13,983,2.2,102,2 +2013,12,31,22,30,26.8,0.81,0.0954,0.67,111,898,738,1,16.7,111,898,0,738,0.281,53.89,45.730000000000004,0.13,983,2,93,2.1 +2013,12,31,23,30,27.8,0.85,0.0862,0.67,116,956,923,0,15.100000000000001,116,956,0,923,0.281,46.06,32.44,0.13,982,2,89,2.2 diff --git a/resource_files/solar/-27.3649_152.67935_tmy-2020_himawari_tmy_v3_60min_utc_tz.csv b/resource_files/solar/-27.3649_152.67935_tmy-2020_himawari_tmy_v3_60min_utc_tz.csv new file mode 100644 index 000000000..34d6bb1e5 --- /dev/null +++ b/resource_files/solar/-27.3649_152.67935_tmy-2020_himawari_tmy_v3_60min_utc_tz.csv @@ -0,0 +1,8763 @@ +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 Units,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 +NSRDB,2074501,-,Queensland,Australia,-27.35,152.66,0,227,10,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,3.2.0 +Year,Month,Day,Hour,Minute,Temperature,Alpha,Aerosol Optical Depth,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Ozone,Relative Humidity,Solar Zenith Angle,Surface Albedo,Pressure,Precipitable Water,Wind Direction,Wind Speed +2013,1,1,0,30,26.900000000000002,0.62,0.11900000000000001,0.67,143,935,1026,1,17,143,935,0,1026,0.27,54.620000000000005,19.2,0.15,983,2.8000000000000003,70,1.1 +2013,1,1,1,30,28.400000000000002,0.65,0.112,0.67,141,954,1089,7,16.5,698,98,0,795,0.269,48.43,6.75,0.15,982,2.8000000000000003,66,1.2000000000000002 +2013,1,1,2,30,29.3,0.6900000000000001,0.1072,0.67,137,957,1081,8,16,674,75,0,748,0.268,44.59,9.46,0.15,982,2.8000000000000003,65,1.3 +2013,1,1,3,30,29.6,0.74,0.1048,0.67,132,944,1005,8,15.700000000000001,647,114,0,753,0.267,42.89,22.36,0.15,981,2.8000000000000003,66,1.3 +2013,1,1,4,30,29.400000000000002,0.78,0.10350000000000001,0.67,123,912,865,8,15.4,534,80,0,599,0.265,42.72,35.660000000000004,0.15,980,2.8000000000000003,68,1.4000000000000001 +2013,1,1,5,30,28.900000000000002,0.79,0.1038,0.67,112,852,672,8,15.3,399,66,0,442,0.264,43.62,48.92,0.15,980,2.9000000000000004,68,1.4000000000000001 +2013,1,1,6,30,27.900000000000002,0.79,0.1037,0.67,96,752,448,8,15.3,220,34,0,236,0.263,46.26,62.02,0.15,980,2.9000000000000004,67,1.5 +2013,1,1,7,30,26.3,0.8,0.10260000000000001,0.67,70,561,217,8,15.8,95,19,3,100,0.263,52.32,74.81,0.15,981,2.9000000000000004,64,1.3 +2013,1,1,8,30,24.5,0.8,0.1017,0.67,22,129,28,8,17.2,14,0,3,14,0.263,63.690000000000005,87.05,0.15,981,2.9000000000000004,61,1 +2013,1,1,9,30,23.200000000000003,0.8,0.1,0.67,0,0,0,8,17.7,0,0,0,0,0.264,71.25,99.02,0.15,981,2.9000000000000004,57,0.9 +2013,1,1,10,30,22.5,0.79,0.09680000000000001,0.67,0,0,0,8,18.2,0,0,0,0,0.264,76.49,109.77,0.15,982,2.8000000000000003,52,0.7000000000000001 +2013,1,1,11,30,21.8,0.79,0.0941,0.67,0,0,0,8,18.6,0,0,0,0,0.265,81.81,118.98,0.15,982,2.7,45,0.6000000000000001 +2013,1,1,12,30,21.400000000000002,0.79,0.0936,0.67,0,0,0,1,18.8,0,0,0,0,0.265,85.10000000000001,125.84,0.15,981,2.6,37,0.5 +2013,1,1,13,30,20.900000000000002,0.79,0.0941,0.67,0,0,0,7,18.900000000000002,0,0,0,0,0.266,88.57000000000001,129.39000000000001,0.15,980,2.5,25,0.4 +2013,1,1,14,30,20.6,0.78,0.095,0.67,0,0,0,1,19,0,0,0,0,0.267,90.4,128.92000000000002,0.15,979,2.5,10,0.4 +2013,1,1,15,30,20.200000000000003,0.77,0.0969,0.67,0,0,0,0,19,0,0,0,0,0.268,92.88,124.53,0.15,979,2.5,174,0.4 +2013,1,1,16,30,19.900000000000002,0.76,0.098,0.67,0,0,0,0,19,0,0,0,0,0.27,94.64,117.04,0.15,979,2.4000000000000004,335,0.4 +2013,1,1,17,30,19.5,0.75,0.09570000000000001,0.67,0,0,0,0,18.900000000000002,0,0,0,0,0.271,96.55,107.41,0.15,979,2.4000000000000004,313,0.5 +2013,1,1,18,30,19.5,0.76,0.0926,0.67,0,0,0,0,18.8,0,0,0,0,0.273,95.8,96.39,0.15,979,2.3000000000000003,292,0.6000000000000001 +2013,1,1,19,30,20.8,0.78,0.0884,0.67,35,292,64,0,18.8,35,292,0,64,0.274,88.48,84.33,0.15,980,2.3000000000000003,280,0.9 +2013,1,1,20,30,23.400000000000002,0.81,0.083,0.67,71,661,277,0,18.8,71,661,0,277,0.275,75.53,71.91,0.15,980,2.3000000000000003,276,1 +2013,1,1,21,30,26.3,0.86,0.07590000000000001,0.67,89,831,516,0,18.3,89,831,0,516,0.275,61.42,59.03,0.15,980,2.2,262,0.9 +2013,1,1,22,30,29,0.9,0.0704,0.67,98,919,738,0,17.1,98,919,0,738,0.275,48.59,45.89,0.15,980,2.2,236,0.8 +2013,1,1,23,30,30.200000000000003,0.9400000000000001,0.0675,0.67,105,971,924,0,16,105,971,0,924,0.275,42.47,32.6,0.15,979,2.1,221,0.8 +2013,1,2,0,30,33.300000000000004,0.75,0.0712,0.67,114,993,1051,0,15.100000000000001,114,993,0,1051,0.274,33.44,19.330000000000002,0.15,978,2.1,173,1 +2013,1,2,1,30,34.800000000000004,0.78,0.07050000000000001,0.67,116,1002,1111,0,14.3,116,1002,0,1111,0.273,29.29,6.890000000000001,0.15,977,2.2,149,1.3 +2013,1,2,2,30,35.6,0.79,0.07250000000000001,0.67,117,997,1101,0,13.8,117,997,0,1101,0.271,27.14,9.41,0.15,976,2.3000000000000003,131,1.6 +2013,1,2,3,30,35.9,0.72,0.0804,0.67,118,973,1019,0,13.5,118,973,0,1019,0.27,26.11,22.28,0.15,976,2.4000000000000004,116,2 +2013,1,2,4,30,35.4,0.71,0.0876,0.67,116,933,875,0,13.3,116,933,0,875,0.269,26.52,35.58,0.15,975,2.5,106,2.4000000000000004 +2013,1,2,5,30,34.2,0.7000000000000001,0.0983,0.67,111,861,677,0,13.4,111,861,0,677,0.269,28.490000000000002,48.85,0.15,976,2.7,98,2.7 +2013,1,2,6,30,32.1,0.6900000000000001,0.11030000000000001,0.67,99,744,449,0,13.8,99,744,0,449,0.269,32.97,61.95,0.15,976,2.8000000000000003,95,2.8000000000000003 +2013,1,2,7,30,29.400000000000002,0.68,0.1188,0.67,75,533,215,0,14.700000000000001,75,533,0,215,0.27,40.77,74.75,0.15,978,2.9000000000000004,97,2.6 +2013,1,2,8,30,26.900000000000002,0.67,0.1242,0.67,22,97,28,1,15.9,22,97,0,28,0.271,51.03,87,0.15,979,3,102,2.3000000000000003 +2013,1,2,9,30,25.1,0.65,0.1336,0.67,0,0,0,3,17.3,0,0,0,0,0.272,61.800000000000004,98.98,0.15,981,3.2,111,2.2 +2013,1,2,10,30,24.1,0.61,0.1582,0.67,0,0,0,8,18.6,0,0,0,0,0.273,71.29,109.75,0.15,981,3.3000000000000003,118,2.2 +2013,1,2,11,30,23.5,0.59,0.17320000000000002,0.67,0,0,0,3,19.6,0,0,0,0,0.274,78.58,118.99000000000001,0.15,982,3.3000000000000003,122,2.2 +2013,1,2,12,30,23.1,0.6,0.1905,0.67,0,0,0,1,20,0,0,0,0,0.275,82.65,125.88000000000001,0.15,982,3.3000000000000003,125,2.1 +2013,1,2,13,30,22.6,0.58,0.1928,0.67,0,0,0,0,20,0,0,0,0,0.277,85.48,129.47,0.15,981,3.3000000000000003,129,1.9000000000000001 +2013,1,2,14,30,22.1,0.52,0.1988,0.67,0,0,0,1,20.1,0,0,0,0,0.278,88.21000000000001,129.02,0.15,981,3.3000000000000003,135,1.7000000000000002 +2013,1,2,15,30,21.6,0.49,0.22640000000000002,0.67,0,0,0,0,20.1,0,0,0,0,0.28,90.99,124.66,0.15,981,3.3000000000000003,139,1.7000000000000002 +2013,1,2,16,30,21.1,0.45,0.2466,0.67,0,0,0,0,19.900000000000002,0,0,0,0,0.281,92.88,117.18,0.15,981,3.3000000000000003,141,1.7000000000000002 +2013,1,2,17,30,20.700000000000003,0.41000000000000003,0.24980000000000002,0.67,0,0,0,0,19.6,0,0,0,0,0.281,93.14,107.55,0.15,981,3.3000000000000003,141,1.6 +2013,1,2,18,30,20.6,0.42,0.2521,0.67,0,0,0,0,19.200000000000003,0,0,0,0,0.281,91.74,96.53,0.15,982,3.2,141,1.7000000000000002 +2013,1,2,19,30,21.200000000000003,0.42,0.23600000000000002,0.67,42,86,51,1,18.900000000000002,42,86,0,51,0.281,86.83,84.46000000000001,0.15,982,3.2,137,2.1 +2013,1,2,20,30,22.700000000000003,0.42,0.221,0.67,111,439,247,0,18.7,111,439,0,247,0.28200000000000003,77.98,72.04,0.15,983,3.1,131,2.6 +2013,1,2,21,30,24.5,0.45,0.2069,0.67,144,650,478,1,18.400000000000002,144,650,0,478,0.28200000000000003,68.71000000000001,59.160000000000004,0.15,983,3,125,2.8000000000000003 +2013,1,2,22,30,26.400000000000002,0.47000000000000003,0.1893,0.67,159,775,697,0,18,159,775,0,697,0.281,60.02,46.02,0.15,983,3,120,2.8000000000000003 +2013,1,2,23,30,27.400000000000002,0.49,0.1685,0.67,163,854,882,1,17.400000000000002,163,854,0,882,0.281,54.57,32.730000000000004,0.15,983,3,117,2.8000000000000003 +2013,1,3,0,30,29.6,0.5700000000000001,0.1273,0.67,147,923,1017,0,16.8,147,923,0,1017,0.279,46.19,19.46,0.15,982,3,113,2.8000000000000003 +2013,1,3,1,30,30.6,0.5700000000000001,0.1246,0.67,149,939,1080,0,16.2,149,939,0,1080,0.278,41.99,7.03,0.15,981,3,111,2.8000000000000003 +2013,1,3,2,30,31,0.56,0.12560000000000002,0.67,149,936,1073,0,15.700000000000001,149,936,0,1073,0.278,39.72,9.370000000000001,0.15,981,3,110,2.8000000000000003 +2013,1,3,3,30,31,0.56,0.12480000000000001,0.67,145,918,995,0,15.5,145,918,0,995,0.277,39.13,22.21,0.15,980,3.1,109,2.9000000000000004 +2013,1,3,4,30,30.5,0.53,0.13770000000000002,0.67,144,871,853,0,15.5,144,871,0,853,0.277,40.43,35.51,0.15,980,3.1,106,3 +2013,1,3,5,30,29.400000000000002,0.51,0.15230000000000002,0.67,138,791,659,0,15.8,138,791,0,659,0.277,43.74,48.77,0.15,980,3.2,103,3.1 +2013,1,3,6,30,27.8,0.47000000000000003,0.1819,0.67,128,644,432,0,16.2,128,644,0,432,0.277,49.160000000000004,61.88,0.15,980,3.2,100,3.2 +2013,1,3,7,30,25.8,0.47000000000000003,0.1859,0.67,92,425,205,0,16.6,92,425,0,205,0.278,56.92,74.69,0.15,981,3.2,96,3 +2013,1,3,8,30,23.8,0.48,0.18480000000000002,0.67,23,44,25,0,17,23,44,0,25,0.279,65.74,86.95,0.15,982,3.2,95,2.7 +2013,1,3,9,30,22.6,0.48,0.18510000000000001,0.67,0,0,0,0,17.1,0,0,0,0,0.279,71.17,98.95,0.15,983,3.2,98,2.5 +2013,1,3,10,30,21.8,0.49,0.1841,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.279,73.92,109.74000000000001,0.15,983,3.2,103,2.4000000000000004 +2013,1,3,11,30,21.400000000000002,0.5,0.1821,0.67,0,0,0,0,16.7,0,0,0,0,0.279,74.64,119,0.15,984,3.2,108,2.2 +2013,1,3,12,30,21,0.52,0.1753,0.67,0,0,0,0,16.5,0,0,0,0,0.279,75.26,125.93,0.15,983,3.1,112,2 +2013,1,3,13,30,20.700000000000003,0.54,0.16570000000000001,0.67,0,0,0,1,16.3,0,0,0,0,0.278,75.78,129.55,0.15,983,3.1,114,1.8 +2013,1,3,14,30,20.400000000000002,0.56,0.1555,0.67,0,0,0,1,16.1,0,0,0,0,0.278,76.56,129.14000000000001,0.15,982,3,117,1.6 +2013,1,3,15,30,20,0.56,0.1484,0.67,0,0,0,3,16.1,0,0,0,0,0.279,78.37,124.79,0.15,982,2.9000000000000004,119,1.4000000000000001 +2013,1,3,16,30,19.700000000000003,0.5700000000000001,0.1443,0.67,0,0,0,3,16.2,0,0,1,0,0.279,80.14,117.32000000000001,0.15,982,2.9000000000000004,122,1.2000000000000002 +2013,1,3,17,30,19.3,0.5700000000000001,0.1379,0.67,0,0,0,3,16.2,0,0,0,0,0.279,82.41,107.7,0.15,982,2.8000000000000003,125,1 +2013,1,3,18,30,19.3,0.5700000000000001,0.1292,0.67,0,0,0,0,16.3,0,0,0,0,0.279,82.71000000000001,96.67,0.15,983,2.7,128,1.1 +2013,1,3,19,30,20.3,0.5700000000000001,0.1197,0.67,37,209,57,1,16.3,37,209,0,57,0.279,77.72,84.60000000000001,0.15,984,2.6,125,1.8 +2013,1,3,20,30,22.1,0.56,0.11120000000000001,0.67,81,598,264,1,16,81,598,0,264,0.28,68.48,72.18,0.15,984,2.5,119,2.3000000000000003 +2013,1,3,21,30,24,0.5700000000000001,0.1,0.67,101,789,504,0,15.600000000000001,101,789,0,504,0.28,59.34,59.29,0.15,984,2.3000000000000003,115,2.4000000000000004 +2013,1,3,22,30,25.900000000000002,0.6,0.0874,0.67,109,895,729,1,15,109,895,0,729,0.28,51.14,46.15,0.15,984,2.2,112,2.5 +2013,1,3,23,30,26.8,0.61,0.08,0.67,115,952,915,1,14.4,115,952,0,915,0.28,46.49,32.86,0.15,984,2.2,111,2.5 +2013,1,4,0,30,28.8,0.61,0.0829,0.67,122,977,1043,1,13.700000000000001,122,977,0,1043,0.278,39.57,19.59,0.15,983,2.2,108,2.7 +2013,1,4,1,30,29.6,0.61,0.0806,0.67,124,991,1107,1,13.100000000000001,124,991,0,1107,0.277,36.32,7.18,0.15,982,2.2,106,2.8000000000000003 +2013,1,4,2,30,30,0.6,0.0804,0.67,123,988,1098,1,12.700000000000001,123,988,0,1098,0.276,34.67,9.33,0.15,982,2.3000000000000003,103,2.9000000000000004 +2013,1,4,3,30,30,0.6,0.0873,0.67,124,967,1020,1,12.700000000000001,124,967,0,1020,0.276,34.49,22.14,0.15,981,2.3000000000000003,99,3 +2013,1,4,4,30,29.400000000000002,0.58,0.0877,0.67,118,933,877,1,12.9,118,933,0,877,0.277,36.17,35.43,0.15,981,2.4000000000000004,97,3 +2013,1,4,5,30,28.3,0.56,0.08700000000000001,0.67,107,877,686,0,13.200000000000001,107,877,0,686,0.277,39.51,48.7,0.15,981,2.4000000000000004,94,3.1 +2013,1,4,6,30,26.8,0.55,0.0864,0.67,91,777,458,0,13.700000000000001,91,777,0,458,0.278,44.57,61.81,0.15,982,2.5,92,3 +2013,1,4,7,30,24.900000000000002,0.53,0.0858,0.67,67,589,223,1,14.3,67,589,0,223,0.279,51.7,74.64,0.15,982,2.5,89,2.6 +2013,1,4,8,30,23,0.53,0.0834,0.67,22,149,30,0,14.9,22,149,0,30,0.28,60.370000000000005,86.91,0.15,983,2.5,87,2.1 +2013,1,4,9,30,21.8,0.53,0.08030000000000001,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.28,67.65,98.92,0.15,983,2.5,87,1.6 +2013,1,4,10,30,21,0.54,0.0784,0.67,0,0,0,0,16,0,0,0,0,0.28,73.15,109.73,0.15,984,2.5,89,1.3 +2013,1,4,11,30,20.5,0.55,0.07780000000000001,0.67,0,0,0,0,16.400000000000002,0,0,0,0,0.28,77.26,119.02,0.15,984,2.4000000000000004,94,1 +2013,1,4,12,30,20,0.55,0.0794,0.67,0,0,0,0,16.6,0,0,0,0,0.279,80.69,125.99000000000001,0.15,983,2.4000000000000004,99,0.9 +2013,1,4,13,30,19.8,0.56,0.08270000000000001,0.67,0,0,0,0,16.6,0,0,0,0,0.279,82.02,129.64000000000001,0.15,983,2.4000000000000004,103,0.8 +2013,1,4,14,30,19.5,0.5700000000000001,0.0852,0.67,0,0,0,0,16.6,0,0,0,0,0.279,83.37,129.26,0.15,982,2.4000000000000004,106,0.8 +2013,1,4,15,30,19.3,0.58,0.0887,0.67,0,0,0,1,16.6,0,0,0,0,0.278,84.31,124.93,0.15,982,2.4000000000000004,109,0.8 +2013,1,4,16,30,19.1,0.6,0.092,0.67,0,0,0,1,16.6,0,0,0,0,0.279,85.41,117.47,0.15,982,2.5,110,0.8 +2013,1,4,17,30,19,0.58,0.09140000000000001,0.67,0,0,0,0,16.6,0,0,0,0,0.279,86.17,107.85000000000001,0.15,983,2.5,111,0.8 +2013,1,4,18,30,19.200000000000003,0.6,0.0954,0.67,0,0,0,0,16.7,0,0,0,0,0.279,85.42,96.82000000000001,0.15,983,2.5,111,0.9 +2013,1,4,19,30,20.6,0.61,0.0976,0.67,34,242,56,1,16.8,34,242,0,56,0.279,78.99,84.74,0.15,984,2.5,107,1.5 +2013,1,4,20,30,22.6,0.59,0.095,0.67,75,620,264,1,16.6,75,620,0,264,0.279,69.01,72.31,0.15,984,2.6,101,2.1 +2013,1,4,21,30,24.5,0.6,0.08990000000000001,0.67,96,794,499,1,16.2,96,794,0,499,0.279,59.75,59.43,0.15,985,2.6,99,2.3000000000000003 +2013,1,4,22,30,26.200000000000003,0.62,0.08370000000000001,0.67,107,889,721,1,15.9,107,889,0,721,0.279,53.1,46.28,0.15,985,2.6,100,2.3000000000000003 +2013,1,4,23,30,27,0.62,0.07690000000000001,0.67,112,943,904,3,15.8,557,83,0,627,0.279,50.25,32.99,0.15,984,2.7,100,2.3000000000000003 +2013,1,5,0,30,29,0.5,0.1135,0.67,140,938,1023,1,15.700000000000001,140,938,0,1023,0.279,44.51,19.72,0.14,984,2.7,100,2.4000000000000004 +2013,1,5,1,30,30,0.51,0.11080000000000001,0.67,141,952,1085,1,15.600000000000001,141,952,0,1085,0.278,41.83,7.33,0.14,983,2.8000000000000003,100,2.5 +2013,1,5,2,30,30.400000000000002,0.52,0.10640000000000001,0.67,138,954,1080,3,15.600000000000001,641,50,0,690,0.278,40.93,9.3,0.14,983,2.8000000000000003,99,2.6 +2013,1,5,3,30,30.400000000000002,0.52,0.1143,0.67,139,932,1003,3,15.700000000000001,499,25,0,522,0.278,41.06,22.07,0.14,983,2.8000000000000003,97,2.7 +2013,1,5,4,30,30,0.52,0.11030000000000001,0.67,129,900,863,1,15.8,129,900,0,863,0.278,42.34,35.36,0.14,982,2.9000000000000004,96,2.7 +2013,1,5,5,30,29,0.52,0.1056,0.67,115,845,674,1,16,115,845,0,674,0.278,45.410000000000004,48.64,0.14,982,2.9000000000000004,93,2.7 +2013,1,5,6,30,27.6,0.54,0.1018,0.67,97,751,453,1,16.3,97,751,0,453,0.278,50.03,61.75,0.14,983,2.8000000000000003,90,2.7 +2013,1,5,7,30,25.8,0.56,0.09570000000000001,0.67,70,568,221,1,16.6,70,568,0,221,0.279,56.75,74.59,0.14,984,2.8000000000000003,85,2.4000000000000004 +2013,1,5,8,30,23.900000000000002,0.58,0.0874,0.67,23,146,31,1,17,23,146,0,31,0.279,65.25,86.87,0.14,984,2.7,80,2 +2013,1,5,9,30,22.6,0.61,0.0789,0.67,0,0,0,0,17.5,0,0,0,0,0.28,72.82000000000001,98.9,0.14,985,2.7,78,1.6 +2013,1,5,10,30,21.8,0.64,0.0729,0.67,0,0,0,0,17.900000000000002,0,0,0,0,0.28,78.31,109.73,0.14,985,2.6,80,1.4000000000000001 +2013,1,5,11,30,21.200000000000003,0.66,0.0703,0.67,0,0,0,1,18.2,0,0,0,0,0.281,83.03,119.05,0.14,985,2.6,84,1.1 +2013,1,5,12,30,20.700000000000003,0.68,0.0694,0.67,0,0,0,1,18.5,0,0,0,0,0.281,87.14,126.05,0.14,985,2.6,90,0.9 +2013,1,5,13,30,20.400000000000002,0.6900000000000001,0.06960000000000001,0.67,0,0,0,0,18.7,0,0,0,0,0.28200000000000003,89.81,129.74,0.14,984,2.6,99,0.8 +2013,1,5,14,30,20.200000000000003,0.7000000000000001,0.0718,0.67,0,0,0,0,18.8,0,0,0,0,0.28300000000000003,91.75,129.39000000000001,0.14,984,2.5,106,0.8 +2013,1,5,15,30,20.1,0.73,0.077,0.67,0,0,0,0,18.900000000000002,0,0,0,0,0.28300000000000003,92.95,125.08,0.14,984,2.5,109,0.8 +2013,1,5,16,30,19.900000000000002,0.74,0.07740000000000001,0.67,0,0,0,3,19,0,0,0,0,0.28300000000000003,94.42,117.62,0.14,984,2.4000000000000004,110,0.8 +2013,1,5,17,30,19.8,0.73,0.0737,0.67,0,0,0,1,19,0,0,0,0,0.28400000000000003,95,108,0.14,984,2.4000000000000004,110,0.8 +2013,1,5,18,30,20,0.73,0.0736,0.67,0,0,0,0,19,0,0,0,0,0.28400000000000003,93.71000000000001,96.97,0.14,985,2.4000000000000004,112,1 +2013,1,5,19,30,20.900000000000002,0.71,0.0695,0.67,31,296,57,1,19,31,296,0,57,0.28300000000000003,88.95,84.88,0.14,985,2.4000000000000004,111,1.6 +2013,1,5,20,30,22.5,0.71,0.0613,0.67,64,679,268,1,19.1,64,679,0,268,0.28200000000000003,80.93,72.45,0.14,986,2.5,107,2.2 +2013,1,5,21,30,24.3,0.71,0.063,0.67,83,829,503,1,18.3,83,829,0,503,0.281,69.26,59.56,0.14,986,2.6,104,2.5 +2013,1,5,22,30,26.1,0.7000000000000001,0.06860000000000001,0.67,98,903,721,1,17.6,98,903,0,721,0.28,59.35,46.410000000000004,0.14,986,2.7,104,2.6 +2013,1,5,23,30,26.900000000000002,0.64,0.0733,0.67,110,946,902,1,17.3,110,946,0,902,0.279,55.72,33.12,0.14,986,2.7,104,2.7 +2013,1,6,0,30,29,0.8300000000000001,0.0653,0.67,109,981,1031,1,17.1,109,981,0,1031,0.279,48.660000000000004,19.86,0.14,985,2.8000000000000003,104,3 +2013,1,6,1,30,29.8,0.79,0.07,0.67,115,990,1097,1,16.8,115,990,0,1097,0.278,45.69,7.48,0.14,984,2.7,103,3.1 +2013,1,6,2,30,30.1,0.73,0.0761,0.67,119,984,1090,3,16.6,342,28,0,369,0.278,44.19,9.28,0.14,984,2.7,103,3.3000000000000003 +2013,1,6,3,30,29.900000000000002,0.6900000000000001,0.0984,0.67,128,950,1009,1,16.400000000000002,128,950,0,1009,0.278,44.230000000000004,22.01,0.14,984,2.7,102,3.4000000000000004 +2013,1,6,4,30,29.200000000000003,0.65,0.10540000000000001,0.67,126,911,869,3,16.400000000000002,358,24,0,378,0.278,45.97,35.300000000000004,0.14,984,2.7,102,3.4000000000000004 +2013,1,6,5,30,28.1,0.6,0.10300000000000001,0.67,114,854,679,1,16.400000000000002,114,854,0,679,0.279,48.89,48.57,0.14,984,2.7,101,3.3000000000000003 +2013,1,6,6,30,26.700000000000003,0.58,0.1029,0.67,98,753,455,1,16.5,98,753,0,455,0.279,53.45,61.7,0.14,985,2.7,100,3.2 +2013,1,6,7,30,25,0.56,0.0976,0.67,71,570,223,1,16.8,71,570,0,223,0.279,60.25,74.54,0.14,985,2.6,97,2.8000000000000003 +2013,1,6,8,30,23.5,0.53,0.0913,0.67,23,139,31,1,17.1,23,139,0,31,0.279,67.49,86.84,0.14,986,2.6,95,2.3000000000000003 +2013,1,6,9,30,22.6,0.54,0.0917,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.278,72.61,98.88,0.14,986,2.5,95,2 +2013,1,6,10,30,22,0.53,0.0896,0.67,0,0,0,0,17.6,0,0,0,0,0.277,76.11,109.74000000000001,0.14,987,2.4000000000000004,97,1.7000000000000002 +2013,1,6,11,30,21.5,0.52,0.0872,0.67,0,0,0,3,17.7,0,0,0,0,0.275,79.06,119.09,0.14,987,2.3000000000000003,102,1.5 +2013,1,6,12,30,21.1,0.53,0.0819,0.67,0,0,0,1,17.8,0,0,0,0,0.274,81.44,126.12,0.14,986,2.3000000000000003,106,1.3 +2013,1,6,13,30,20.8,0.53,0.08020000000000001,0.67,0,0,0,3,17.900000000000002,0,0,0,0,0.274,83.36,129.85,0.14,986,2.3000000000000003,109,1.2000000000000002 +2013,1,6,14,30,20.6,0.52,0.0824,0.67,0,0,0,0,18,0,0,0,0,0.273,84.86,129.53,0.14,986,2.3000000000000003,110,1.1 +2013,1,6,15,30,20.400000000000002,0.51,0.0833,0.67,0,0,0,3,18,0,0,0,0,0.273,86.08,125.23,0.14,986,2.3000000000000003,112,1.1 +2013,1,6,16,30,20.3,0.49,0.08460000000000001,0.67,0,0,0,3,18,0,0,0,0,0.273,86.63,117.78,0.14,986,2.3000000000000003,114,1 +2013,1,6,17,30,20.1,0.48,0.0845,0.67,0,0,0,0,18,0,0,0,0,0.273,87.52,108.16,0.14,986,2.2,116,1 +2013,1,6,18,30,20.3,0.48,0.0835,0.67,0,0,0,3,17.900000000000002,0,0,0,0,0.273,86.03,97.12,0.14,986,2.2,119,1.1 +2013,1,6,19,30,21.400000000000002,0.51,0.0762,0.67,32,268,55,1,17.900000000000002,32,268,0,55,0.273,80.22,85.02,0.14,987,2.1,119,1.7000000000000002 +2013,1,6,20,30,23.200000000000003,0.55,0.0694,0.67,67,668,267,1,17.6,67,668,0,267,0.273,70.92,72.59,0.14,987,2.1,116,2.4000000000000004 +2013,1,6,21,30,25,0.5700000000000001,0.0708,0.67,87,825,504,3,16.5,194,25,0,206,0.274,59.35,59.7,0.14,987,2.2,112,2.8000000000000003 +2013,1,6,22,30,26.6,0.61,0.06720000000000001,0.67,98,915,728,1,15.700000000000001,98,915,0,728,0.274,51.1,46.54,0.14,987,2.2,110,3 +2013,1,6,23,30,27.3,0.61,0.063,0.67,105,967,913,3,15.3,387,24,0,407,0.274,47.85,33.25,0.14,987,2.2,109,3.1 +2013,1,7,0,30,29,0.64,0.0791,0.67,119,978,1038,1,15,119,978,0,1038,0.274,42.660000000000004,19.990000000000002,0.14,986,2.3000000000000003,106,3.3000000000000003 +2013,1,7,1,30,29.700000000000003,0.66,0.0877,0.67,127,983,1102,3,14.8,800,0,0,939,0.274,40.410000000000004,7.640000000000001,0.14,985,2.3000000000000003,105,3.4000000000000004 +2013,1,7,2,30,29.8,0.68,0.0931,0.67,129,976,1093,1,14.8,129,976,0,1093,0.274,40.15,9.26,0.14,985,2.4000000000000004,103,3.5 +2013,1,7,3,30,29.6,0.68,0.0854,0.67,122,968,1019,1,14.9,122,968,0,1019,0.274,40.74,21.95,0.14,984,2.4000000000000004,101,3.5 +2013,1,7,4,30,28.900000000000002,0.7000000000000001,0.0892,0.67,117,933,879,3,15,552,108,0,640,0.274,42.69,35.230000000000004,0.14,984,2.4000000000000004,99,3.4000000000000004 +2013,1,7,5,30,28,0.6900000000000001,0.0857,0.67,105,884,691,3,15,190,27,0,207,0.275,45.21,48.52,0.14,984,2.3000000000000003,98,3.2 +2013,1,7,6,30,26.8,0.71,0.0824,0.67,89,793,465,3,15.100000000000001,283,127,0,343,0.277,48.71,61.65,0.14,984,2.3000000000000003,96,2.9000000000000004 +2013,1,7,7,30,25.3,0.72,0.07830000000000001,0.67,65,616,229,3,15.200000000000001,132,87,3,155,0.278,53.7,74.5,0.14,985,2.3000000000000003,95,2.4000000000000004 +2013,1,7,8,30,23.8,0.72,0.0729,0.67,22,188,33,3,15.600000000000001,19,0,3,19,0.279,60.13,86.81,0.14,985,2.3000000000000003,93,1.7000000000000002 +2013,1,7,9,30,22.700000000000003,0.75,0.0689,0.67,0,0,0,3,16.3,0,0,0,0,0.279,67.23,98.87,0.14,986,2.2,93,1.2000000000000002 +2013,1,7,10,30,21.8,0.75,0.0648,0.67,0,0,0,3,16.900000000000002,0,0,0,0,0.279,73.66,109.75,0.14,986,2.2,96,0.9 +2013,1,7,11,30,21.1,0.72,0.06520000000000001,0.67,0,0,0,0,17.3,0,0,0,0,0.279,79.04,119.13,0.14,986,2.2,101,0.8 +2013,1,7,12,30,20.700000000000003,0.6900000000000001,0.0684,0.67,0,0,0,0,17.6,0,0,0,0,0.278,82.43,126.2,0.14,985,2.2,106,0.7000000000000001 +2013,1,7,13,30,20.3,0.66,0.0726,0.67,0,0,0,0,17.8,0,0,0,0,0.278,85.47,129.96,0.14,984,2.2,109,0.7000000000000001 +2013,1,7,14,30,20.1,0.65,0.076,0.67,0,0,0,0,17.900000000000002,0,0,0,0,0.278,87.42,129.67000000000002,0.14,983,2.1,110,0.6000000000000001 +2013,1,7,15,30,19.900000000000002,0.64,0.0787,0.67,0,0,0,1,18.1,0,0,0,0,0.278,89.28,125.39,0.14,983,2.1,109,0.6000000000000001 +2013,1,7,16,30,19.6,0.64,0.08,0.67,0,0,0,1,18.2,0,0,0,0,0.279,91.38,117.94,0.14,982,2.1,108,0.5 +2013,1,7,17,30,19.400000000000002,0.63,0.0826,0.67,0,0,0,0,18.2,0,0,0,0,0.279,92.86,108.32000000000001,0.14,982,2.1,107,0.5 +2013,1,7,18,30,19.5,0.64,0.0872,0.67,0,0,0,0,18.3,0,0,0,0,0.28,92.53,97.27,0.14,982,2.1,108,0.5 +2013,1,7,19,30,20.700000000000003,0.65,0.08650000000000001,0.67,32,251,53,1,18.3,32,251,0,53,0.28,86,85.17,0.14,982,2,92,0.8 +2013,1,7,20,30,22.700000000000003,0.68,0.0782,0.67,69,657,264,1,18.2,69,657,0,264,0.281,75.59,72.74,0.14,982,2,63,1.1 +2013,1,7,21,30,24.900000000000002,0.74,0.0751,0.67,88,825,502,1,17.3,88,825,0,502,0.28200000000000003,62.83,59.83,0.14,982,2.1,44,1.3 +2013,1,7,22,30,26.8,0.79,0.07350000000000001,0.67,100,913,726,1,16.6,100,913,0,726,0.28200000000000003,53.75,46.67,0.14,982,2.1,35,1.4000000000000001 +2013,1,7,23,30,27.8,0.84,0.0684,0.67,106,967,913,1,16.1,106,967,0,913,0.28200000000000003,49.11,33.38,0.14,981,2.1,32,1.4000000000000001 +2013,1,8,0,30,30.3,0.85,0.0748,0.67,114,989,1043,1,15.700000000000001,114,989,0,1043,0.28200000000000003,41.27,20.13,0.14,980,2.1,28,1.6 +2013,1,8,1,30,31.6,0.91,0.0743,0.67,116,999,1106,1,15.200000000000001,116,999,0,1106,0.28200000000000003,37.19,7.8,0.14,979,2.2,27,1.7000000000000002 +2013,1,8,2,30,32.5,0.97,0.0763,0.67,116,998,1101,1,14.700000000000001,116,998,0,1101,0.281,34.230000000000004,9.26,0.14,977,2.2,26,1.8 +2013,1,8,3,30,32.9,1.01,0.0805,0.67,115,981,1025,1,14.4,115,981,0,1025,0.28200000000000003,32.730000000000004,21.900000000000002,0.14,976,2.2,26,1.8 +2013,1,8,4,30,32.9,1.05,0.0859,0.67,111,946,884,1,14.200000000000001,111,946,0,884,0.28200000000000003,32.410000000000004,35.18,0.14,975,2.2,27,1.8 +2013,1,8,5,30,32.300000000000004,1.08,0.093,0.67,104,884,690,1,14.200000000000001,104,884,0,690,0.28300000000000003,33.39,48.46,0.14,974,2.3000000000000003,27,1.7000000000000002 +2013,1,8,6,30,31.1,1.11,0.10300000000000001,0.67,92,777,461,0,14.200000000000001,92,777,0,461,0.28300000000000003,35.76,61.6,0.14,974,2.3000000000000003,29,1.7000000000000002 +2013,1,8,7,30,29,1.1500000000000001,0.116,0.67,70,572,223,0,14.5,70,572,0,223,0.28300000000000003,41.17,74.47,0.14,974,2.4000000000000004,37,1.7000000000000002 +2013,1,8,8,30,26.400000000000002,1.2,0.13290000000000002,0.67,21,138,29,0,16.2,21,138,0,29,0.28300000000000003,53.43,86.8,0.14,975,2.4000000000000004,41,1.6 +2013,1,8,9,30,24.700000000000003,1.27,0.155,0.67,0,0,0,0,16.8,0,0,0,0,0.28200000000000003,61.32,98.87,0.14,975,2.4000000000000004,37,1.6 +2013,1,8,10,30,23.700000000000003,1.37,0.182,0.67,0,0,0,0,17.1,0,0,0,0,0.281,66.37,109.77,0.14,975,2.4000000000000004,31,1.4000000000000001 +2013,1,8,11,30,22.900000000000002,1.44,0.20220000000000002,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.28,71.26,119.17,0.14,975,2.3000000000000003,23,1.2000000000000002 +2013,1,8,12,30,22.200000000000003,1.43,0.1971,0.67,0,0,0,0,17.6,0,0,0,0,0.279,75.16,126.28,0.14,975,2.3000000000000003,14,1.1 +2013,1,8,13,30,21.6,1.32,0.16590000000000002,0.67,0,0,0,0,17.5,0,0,0,0,0.279,77.65,130.08,0.14,974,2.3000000000000003,183,1 +2013,1,8,14,30,21.1,1.17,0.12860000000000002,0.67,0,0,0,0,17.3,0,0,0,0,0.279,79.03,129.82,0.14,973,2.2,352,1 +2013,1,8,15,30,20.5,1.02,0.10310000000000001,0.67,0,0,0,0,17.2,0,0,0,0,0.28,81.36,125.55,0.14,973,2.3000000000000003,344,1.1 +2013,1,8,16,30,20,0.89,0.0891,0.67,0,0,0,0,17.2,0,0,0,0,0.281,84.09,118.11,0.14,973,2.3000000000000003,338,1 +2013,1,8,17,30,19.6,0.8,0.0823,0.67,0,0,0,0,17.3,0,0,0,0,0.281,86.63,108.48,0.14,973,2.3000000000000003,334,1 +2013,1,8,18,30,19.6,0.74,0.081,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.281,87.3,97.43,0.14,973,2.3000000000000003,332,1.2000000000000002 +2013,1,8,19,30,20.8,0.72,0.0833,0.67,30,250,51,1,17.6,30,250,0,51,0.281,82.01,85.31,0.14,973,2.3000000000000003,330,1.9000000000000001 +2013,1,8,20,30,23.1,0.74,0.0825,0.67,69,643,258,0,17.7,69,643,0,258,0.281,71.69,72.88,0.14,973,2.3000000000000003,327,2.6 +2013,1,8,21,30,25.8,0.79,0.0796,0.67,88,815,496,0,17.5,88,815,0,496,0.28200000000000003,60.38,59.97,0.14,973,2.3000000000000003,324,2.7 +2013,1,8,22,30,28.700000000000003,0.8300000000000001,0.0791,0.67,101,903,719,0,17.2,101,903,0,719,0.28200000000000003,49.81,46.81,0.14,972,2.3000000000000003,320,2.6 +2013,1,8,23,30,30.1,0.88,0.0804,0.67,110,952,904,0,16.6,110,952,0,904,0.28300000000000003,44.160000000000004,33.51,0.14,972,2.3000000000000003,318,2.6 +2013,1,9,0,30,33.300000000000004,0.93,0.0959,0.67,124,961,1025,0,15.9,124,961,0,1025,0.28400000000000003,35.39,20.27,0.14,971,2.6,309,2.4000000000000004 +2013,1,9,1,30,34.800000000000004,0.99,0.1019,0.67,129,966,1086,0,15.600000000000001,129,966,0,1086,0.28400000000000003,31.79,7.96,0.14,970,2.8000000000000003,303,2.2 +2013,1,9,2,30,35.800000000000004,1.04,0.11270000000000001,0.67,134,954,1075,0,15.3,134,954,0,1075,0.28400000000000003,29.47,9.26,0.14,969,3,299,2.1 +2013,1,9,3,30,36.1,1.09,0.1218,0.67,134,927,995,0,15,134,927,0,995,0.28300000000000003,28.560000000000002,21.85,0.14,968,3.3000000000000003,297,2 +2013,1,9,4,30,35.9,1.12,0.1409,0.67,136,876,852,0,14.9,136,876,0,852,0.28400000000000003,28.650000000000002,35.12,0.14,968,3.5,300,1.8 +2013,1,9,5,30,35.2,1.1400000000000001,0.1502,0.67,126,806,661,0,14.9,126,806,0,661,0.28400000000000003,29.76,48.410000000000004,0.14,967,3.6,310,1.7000000000000002 +2013,1,9,6,30,34.1,1.1300000000000001,0.1476,0.67,106,704,441,0,15,106,704,0,441,0.28400000000000003,31.85,61.56,0.14,967,3.6,331,1.4000000000000001 +2013,1,9,7,30,32.1,1.12,0.1409,0.67,74,516,213,0,15.700000000000001,74,516,0,213,0.28400000000000003,37.32,74.43,0.14,968,3.7,184,1.2000000000000002 +2013,1,9,8,30,29.700000000000003,1.09,0.1406,0.67,21,114,28,0,18.900000000000002,21,114,0,28,0.28400000000000003,52.43,86.78,0.14,968,3.7,24,1.3 +2013,1,9,9,30,27.900000000000002,1.07,0.1424,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.28300000000000003,59.85,98.87,0.14,969,3.6,27,1.5 +2013,1,9,10,30,26.6,1.04,0.14450000000000002,0.67,0,0,0,0,19.3,0,0,0,0,0.28200000000000003,64.34,109.79,0.14,970,3.6,26,1.5 +2013,1,9,11,30,25.700000000000003,1.01,0.1477,0.67,0,0,0,0,18.8,0,0,0,0,0.281,65.78,119.23,0.14,970,3.6,19,1.4000000000000001 +2013,1,9,12,30,25.200000000000003,0.98,0.1499,0.67,0,0,0,7,18.400000000000002,0,0,0,0,0.28,65.83,126.37,0.14,970,3.6,10,1.3 +2013,1,9,13,30,24.5,0.96,0.1495,0.67,0,0,0,7,18,0,0,0,0,0.279,66.99,130.21,0.14,970,3.6,181,1.2000000000000002 +2013,1,9,14,30,23.8,0.9500000000000001,0.1477,0.67,0,0,0,6,17.8,0,0,0,0,0.279,69.25,129.98,0.14,970,3.6,354,1 +2013,1,9,15,30,23.200000000000003,0.9400000000000001,0.1476,0.67,0,0,0,7,17.8,0,0,0,0,0.279,71.68,125.73,0.14,970,3.6,350,1 +2013,1,9,16,30,22.8,0.9400000000000001,0.1489,0.67,0,0,0,7,17.900000000000002,0,0,0,0,0.28,74.04,118.28,0.14,971,3.6,178,0.7000000000000001 +2013,1,9,17,30,22.3,0.9400000000000001,0.14930000000000002,0.67,0,0,0,8,18,0,0,0,0,0.28200000000000003,76.88,108.64,0.14,972,3.6,31,0.4 +2013,1,9,18,30,22.1,0.93,0.1471,0.67,0,0,0,8,18.2,0,0,0,0,0.28200000000000003,78.49,97.59,0.14,973,3.6,51,0.30000000000000004 +2013,1,9,19,30,23.3,0.93,0.1436,0.67,30,159,43,0,18.5,30,159,0,43,0.28200000000000003,74.36,85.46000000000001,0.14,974,3.5,155,0.30000000000000004 +2013,1,9,20,30,25.5,0.93,0.1389,0.67,81,542,239,0,18.1,81,542,0,239,0.28200000000000003,63.74,73.02,0.14,974,3.5,266,0.5 +2013,1,9,21,30,28,0.9400000000000001,0.1336,0.67,106,729,469,0,17.8,106,729,0,469,0.281,53.76,60.11,0.14,975,3.5,291,0.4 +2013,1,9,22,30,30.3,0.9500000000000001,0.1291,0.67,121,833,690,0,17.400000000000002,121,833,0,690,0.281,46.160000000000004,46.94,0.14,974,3.4000000000000004,186,0.4 +2013,1,9,23,30,31.5,0.96,0.1262,0.67,131,891,873,0,17.2,131,891,0,873,0.281,42.46,33.65,0.14,974,3.4000000000000004,59,0.5 +2013,1,10,0,30,34,1.02,0.1252,0.67,137,924,1003,0,17,137,924,0,1003,0.281,36.5,20.41,0.14,974,3.4000000000000004,69,1.2000000000000002 +2013,1,10,1,30,35,1.08,0.1452,0.67,150,923,1063,0,17.1,150,923,0,1063,0.28,34.53,8.13,0.14,973,3.5,74,1.6 +2013,1,10,2,30,35.2,1.1300000000000001,0.1767,0.67,165,901,1054,0,17.3,165,901,0,1054,0.28,34.65,9.27,0.14,973,3.5,75,1.9000000000000001 +2013,1,10,3,30,34.9,1.1,0.1506,0.67,148,899,983,0,17.6,148,899,0,983,0.28,35.910000000000004,21.81,0.14,973,3.7,75,2.2 +2013,1,10,4,30,34.1,1.1400000000000001,0.18710000000000002,0.67,155,836,839,0,17.900000000000002,155,836,0,839,0.279,38.42,35.07,0.14,973,3.8000000000000003,74,2.5 +2013,1,10,5,30,32.5,1.18,0.2159,0.67,150,747,646,0,18.400000000000002,150,747,0,646,0.278,43.18,48.370000000000005,0.14,973,3.9000000000000004,73,2.8000000000000003 +2013,1,10,6,30,30.400000000000002,1.24,0.2389,0.67,131,617,425,1,19,131,617,0,425,0.277,50.71,61.52,0.14,974,3.9000000000000004,72,2.9000000000000004 +2013,1,10,7,30,28.1,1.29,0.2506,0.67,91,407,200,8,19.8,138,128,0,173,0.277,60.81,74.41,0.14,975,3.9000000000000004,71,2.8000000000000003 +2013,1,10,8,30,26,1.3,0.25780000000000003,0.67,19,63,23,8,20.5,19,63,5,23,0.276,71.8,86.77,0.14,976,3.9000000000000004,69,2.4000000000000004 +2013,1,10,9,30,24.8,1.27,0.2558,0.67,0,0,0,6,20.900000000000002,0,0,0,0,0.275,79.03,98.87,0.14,977,3.9000000000000004,68,2.1 +2013,1,10,10,30,24.200000000000003,1.2,0.23850000000000002,0.67,0,0,0,6,21,0,0,0,0,0.275,82.47,109.82000000000001,0.14,978,3.9000000000000004,67,1.9000000000000001 +2013,1,10,11,30,23.8,1.12,0.2132,0.67,0,0,0,6,21.1,0,0,0,0,0.274,84.71000000000001,119.29,0.14,978,3.8000000000000003,65,1.6 +2013,1,10,12,30,23.5,1.04,0.19440000000000002,0.67,0,0,0,6,21.1,0,0,0,0,0.274,86.4,126.47,0.14,978,3.9000000000000004,59,1.3 +2013,1,10,13,30,23.3,0.98,0.18460000000000001,0.67,0,0,0,6,21.1,0,0,0,0,0.273,87.49,130.35,0.14,978,3.9000000000000004,45,1 +2013,1,10,14,30,23,0.93,0.1819,0.67,0,0,0,7,21.1,0,0,0,0,0.272,89.04,130.14000000000001,0.14,978,4,33,0.8 +2013,1,10,15,30,22.700000000000003,0.91,0.17470000000000002,0.67,0,0,0,7,21.1,0,0,0,0,0.271,90.78,125.9,0.14,978,3.9000000000000004,28,0.7000000000000001 +2013,1,10,16,30,22.3,0.92,0.1557,0.67,0,0,0,4,21.1,0,0,0,0,0.271,93.07000000000001,118.46000000000001,0.14,978,3.8000000000000003,34,0.6000000000000001 +2013,1,10,17,30,21.900000000000002,0.9400000000000001,0.1383,0.67,0,0,0,0,21.200000000000003,0,0,0,0,0.271,95.76,108.81,0.14,979,3.6,42,0.6000000000000001 +2013,1,10,18,30,21.900000000000002,0.9500000000000001,0.1264,0.67,0,0,0,8,21.3,0,0,0,0,0.271,96.33,97.75,0.14,979,3.5,46,0.8 +2013,1,10,19,30,22.900000000000002,0.96,0.1183,0.67,28,183,42,0,21.5,28,183,0,42,0.271,92.06,85.61,0.14,980,3.4000000000000004,39,1.3 +2013,1,10,20,30,24.8,0.96,0.1116,0.67,73,578,241,3,21.8,143,75,0,165,0.271,83.61,73.17,0.14,980,3.4000000000000004,25,1.7000000000000002 +2013,1,10,21,30,27.1,0.99,0.1066,0.67,96,759,472,1,21.6,96,759,0,472,0.271,71.81,60.25,0.14,980,3.5,18,1.9000000000000001 +2013,1,10,22,30,29.400000000000002,1.03,0.1046,0.67,110,853,691,0,20.6,110,853,0,691,0.271,59.31,47.08,0.14,980,3.6,19,1.8 +2013,1,10,23,30,30.5,1.07,0.10940000000000001,0.67,122,903,872,1,20,122,903,0,872,0.271,53.6,33.78,0.14,980,3.6,20,1.7000000000000002 +2013,1,11,0,30,33.1,1.05,0.14500000000000002,0.67,146,903,992,1,19.6,146,903,0,992,0.269,45.13,20.54,0.14,979,3.8000000000000003,23,1.5 +2013,1,11,1,30,34.4,1.06,0.14800000000000002,0.67,151,914,1056,0,19.3,151,914,0,1056,0.269,41.09,8.31,0.14,979,3.9000000000000004,27,1.5 +2013,1,11,2,30,35.1,1.06,0.1506,0.67,152,912,1052,1,19,152,912,0,1052,0.268,38.84,9.290000000000001,0.14,978,3.9000000000000004,32,1.6 +2013,1,11,3,30,35.300000000000004,1.03,0.1401,0.67,143,902,981,0,18.8,143,902,0,981,0.268,37.84,21.77,0.14,977,4,39,1.7000000000000002 +2013,1,11,4,30,35,1.01,0.14200000000000002,0.67,138,866,847,0,18.6,138,866,0,847,0.269,38.07,35.03,0.14,977,4,45,1.8 +2013,1,11,5,30,34.2,0.99,0.14400000000000002,0.67,126,803,660,0,18.6,126,803,0,660,0.271,39.68,48.33,0.14,977,4,50,2 +2013,1,11,6,30,32.7,0.98,0.1454,0.67,107,696,440,0,18.6,107,696,0,440,0.272,43.410000000000004,61.49,0.14,977,4.1000000000000005,54,2.3000000000000003 +2013,1,11,7,30,30.400000000000002,0.97,0.14450000000000002,0.67,77,501,212,0,19.1,77,501,0,212,0.273,50.980000000000004,74.38,0.14,978,4.1000000000000005,54,2.3000000000000003 +2013,1,11,8,30,28.1,0.9500000000000001,0.1386,0.67,22,106,28,0,20.3,22,106,0,28,0.274,62.660000000000004,86.76,0.14,979,4.1000000000000005,51,2.1 +2013,1,11,9,30,26.5,0.92,0.13470000000000001,0.67,0,0,0,0,21,0,0,0,0,0.274,72,98.88,0.14,980,4.1000000000000005,47,2.1 +2013,1,11,10,30,25.5,0.9,0.13440000000000002,0.67,0,0,0,0,21.3,0,0,0,0,0.274,77.46000000000001,109.86,0.14,980,4,42,2.1 +2013,1,11,11,30,24.8,0.87,0.1366,0.67,0,0,0,0,21.5,0,0,0,0,0.274,82.11,119.36,0.14,981,4,35,1.9000000000000001 +2013,1,11,12,30,24.3,0.85,0.1396,0.67,0,0,0,0,21.700000000000003,0,0,0,0,0.274,85.28,126.57000000000001,0.14,980,4,28,1.6 +2013,1,11,13,30,24,0.84,0.14150000000000001,0.67,0,0,0,0,21.700000000000003,0,0,0,0,0.274,87.04,130.49,0.14,980,3.9000000000000004,21,1.4000000000000001 +2013,1,11,14,30,23.700000000000003,0.84,0.1414,0.67,0,0,0,0,21.700000000000003,0,0,0,0,0.275,88.58,130.31,0.14,980,3.9000000000000004,15,1.1 +2013,1,11,15,30,23.400000000000002,0.85,0.13920000000000002,0.67,0,0,0,0,21.700000000000003,0,0,0,0,0.275,89.92,126.08,0.14,979,3.9000000000000004,11,0.8 +2013,1,11,16,30,23.1,0.86,0.13570000000000002,0.67,0,0,0,0,21.6,0,0,0,0,0.276,91.29,118.64,0.14,980,3.8000000000000003,5,0.6000000000000001 +2013,1,11,17,30,22.8,0.88,0.13290000000000002,0.67,0,0,0,1,21.5,0,0,0,0,0.278,92.5,108.99000000000001,0.14,980,3.8000000000000003,179,0.6000000000000001 +2013,1,11,18,30,22.900000000000002,0.9,0.1318,0.67,0,0,0,0,21.5,0,0,0,0,0.279,91.75,97.92,0.14,981,3.7,350,0.7000000000000001 +2013,1,11,19,30,24.1,0.91,0.132,0.67,28,155,40,1,21.400000000000002,28,155,0,40,0.28,84.9,85.76,0.14,981,3.7,337,1.2000000000000002 +2013,1,11,20,30,26.3,0.9400000000000001,0.1317,0.67,78,542,234,0,21.1,78,542,0,234,0.28,73.14,73.32000000000001,0.14,982,3.7,327,1.7000000000000002 +2013,1,11,21,30,28.700000000000003,0.97,0.1307,0.67,105,727,464,1,20.700000000000003,105,727,0,464,0.28,62.14,60.39,0.14,981,3.7,320,1.7000000000000002 +2013,1,11,22,30,31.200000000000003,0.99,0.1291,0.67,120,826,682,0,20.3,120,826,0,682,0.28,52.51,47.21,0.14,981,3.7,311,1.5 +2013,1,11,23,30,32.5,1.01,0.1265,0.67,131,885,865,0,20,131,885,0,865,0.279,47.78,33.92,0.14,981,3.7,306,1.4000000000000001 +2013,1,12,0,30,35.4,1.03,0.1072,0.67,128,932,1000,0,19.700000000000003,128,932,0,1000,0.278,39.77,20.69,0.14,979,3.7,290,1.1 +2013,1,12,1,30,36.7,1.05,0.10400000000000001,0.67,129,950,1069,0,19.200000000000003,129,950,0,1069,0.278,36.09,8.48,0.14,979,3.6,276,0.9 +2013,1,12,2,30,37.5,1.06,0.1024,0.67,127,951,1066,0,18.8,127,951,0,1066,0.277,33.5,9.32,0.14,978,3.6,259,0.7000000000000001 +2013,1,12,3,30,37.800000000000004,1.06,0.1058,0.67,126,934,993,0,18.5,126,934,0,993,0.277,32.5,21.740000000000002,0.14,977,3.6,231,0.6000000000000001 +2013,1,12,4,30,37.4,1.05,0.10990000000000001,0.67,121,897,855,0,18.5,121,897,0,855,0.277,33.2,34.99,0.14,976,3.7,166,0.5 +2013,1,12,5,30,36.6,1.02,0.1165,0.67,113,833,667,1,18.6,113,833,0,667,0.277,34.93,48.29,0.14,976,3.7,98,0.7000000000000001 +2013,1,12,6,30,35.2,1.08,0.1772,0.67,115,670,435,6,18.900000000000002,124,23,0,135,0.276,38.39,61.46,0.14,977,3.8000000000000003,66,1.1 +2013,1,12,7,30,32.800000000000004,1.06,0.1758,0.67,82,471,209,8,19.6,100,20,0,105,0.275,45.89,74.37,0.14,977,3.8000000000000003,50,1.5 +2013,1,12,8,30,30.200000000000003,1.04,0.1689,0.67,21,90,26,7,21.8,16,0,3,16,0.274,60.94,86.76,0.14,978,3.8000000000000003,43,1.7000000000000002 +2013,1,12,9,30,28.400000000000002,1.03,0.16160000000000002,0.67,0,0,0,7,22.1,0,0,0,0,0.273,68.60000000000001,98.9,0.14,979,3.8000000000000003,42,1.7000000000000002 +2013,1,12,10,30,27.200000000000003,1.01,0.1592,0.67,0,0,0,7,21.900000000000002,0,0,0,0,0.273,72.63,109.9,0.14,979,3.9000000000000004,40,1.7000000000000002 +2013,1,12,11,30,26.3,1,0.15940000000000001,0.67,0,0,0,4,21.8,0,0,0,0,0.271,76.34,119.43,0.14,980,3.9000000000000004,37,1.6 +2013,1,12,12,30,25.6,0.98,0.1602,0.67,0,0,0,0,21.6,0,0,0,0,0.271,78.63,126.68,0.14,979,4,32,1.5 +2013,1,12,13,30,25,0.97,0.1587,0.67,0,0,0,0,21.400000000000002,0,0,0,0,0.27,80.44,130.64000000000001,0.14,979,3.9000000000000004,27,1.5 +2013,1,12,14,30,24.400000000000002,0.96,0.15460000000000002,0.67,0,0,0,1,21.200000000000003,0,0,0,0,0.27,82.45,130.49,0.14,978,3.9000000000000004,23,1.3 +2013,1,12,15,30,24,0.96,0.1484,0.67,0,0,0,0,21.1,0,0,0,0,0.27,83.87,126.27,0.14,978,3.8000000000000003,22,1.1 +2013,1,12,16,30,23.5,0.9500000000000001,0.14250000000000002,0.67,0,0,0,0,21,0,0,0,0,0.27,85.97,118.82000000000001,0.14,978,3.7,20,0.8 +2013,1,12,17,30,23.1,0.9500000000000001,0.13820000000000002,0.67,0,0,0,0,20.900000000000002,0,0,0,0,0.27,87.66,109.16,0.14,979,3.6,15,0.6000000000000001 +2013,1,12,18,30,22.900000000000002,0.9500000000000001,0.13490000000000002,0.67,0,0,0,0,20.8,0,0,0,0,0.27,88.12,98.08,0.14,979,3.5,183,0.7000000000000001 +2013,1,12,19,30,23.8,0.9500000000000001,0.13140000000000002,0.67,27,154,38,0,20.700000000000003,27,154,0,38,0.269,82.7,85.91,0.14,980,3.4000000000000004,343,1.2000000000000002 +2013,1,12,20,30,25.8,0.98,0.12510000000000002,0.67,76,555,234,0,20.3,76,555,0,234,0.268,71.49,73.46000000000001,0.14,980,3.4000000000000004,326,1.4000000000000001 +2013,1,12,21,30,28.3,1.01,0.1189,0.67,100,744,466,0,19.8,100,744,0,466,0.268,60.17,60.53,0.14,980,3.4000000000000004,319,1.3 +2013,1,12,22,30,31.1,1.03,0.11560000000000001,0.67,115,846,688,0,19.5,115,846,0,688,0.267,49.99,47.35,0.14,980,3.3000000000000003,319,1.1 +2013,1,12,23,30,32.5,1.05,0.11410000000000001,0.67,125,903,873,0,19,125,903,0,873,0.266,44.89,34.05,0.14,979,3.3000000000000003,320,0.9 +2013,1,13,0,30,35.9,1.05,0.1197,0.67,133,929,1002,0,18.5,133,929,0,1002,0.265,36.03,20.830000000000002,0.14,978,3.3000000000000003,187,0.7000000000000001 +2013,1,13,1,30,37.300000000000004,1.07,0.11620000000000001,0.67,135,948,1072,0,17.6,135,948,0,1072,0.264,31.57,8.66,0.14,977,3.2,35,0.9 +2013,1,13,2,30,38,1.08,0.1136,0.67,133,950,1071,0,16.8,133,950,0,1071,0.263,28.810000000000002,9.36,0.14,976,3.2,44,1.3 +2013,1,13,3,30,38.1,1.09,0.1096,0.67,128,938,999,0,16.3,128,938,0,999,0.264,27.76,21.71,0.14,976,3.2,45,1.6 +2013,1,13,4,30,37.6,1.09,0.10930000000000001,0.67,120,906,863,0,16,120,906,0,863,0.264,28.04,34.96,0.14,975,3.2,44,1.9000000000000001 +2013,1,13,5,30,36.6,1.09,0.10830000000000001,0.67,110,851,676,0,15.8,110,851,0,676,0.265,29.23,48.26,0.14,975,3.2,42,2.1 +2013,1,13,6,30,35.1,1.08,0.1067,0.67,93,755,454,0,15.8,93,755,0,454,0.266,31.67,61.43,0.14,975,3.2,41,2.3000000000000003 +2013,1,13,7,30,32.6,1.08,0.1061,0.67,67,570,221,0,16.1,67,570,0,221,0.267,37.2,74.35000000000001,0.14,975,3.2,41,2.1 +2013,1,13,8,30,29.900000000000002,1.09,0.108,0.67,21,151,30,0,17.7,21,151,0,30,0.268,47.86,86.76,0.14,976,3.2,40,1.8 +2013,1,13,9,30,27.900000000000002,1.12,0.11280000000000001,0.67,0,0,0,0,18.3,0,0,0,0,0.267,56.09,98.92,0.14,976,3.3000000000000003,36,1.6 +2013,1,13,10,30,26.700000000000003,1.1500000000000001,0.12010000000000001,0.67,0,0,0,0,18.5,0,0,0,0,0.267,60.68,109.95,0.14,976,3.3000000000000003,31,1.5 +2013,1,13,11,30,25.700000000000003,1.18,0.12760000000000002,0.67,0,0,0,7,18.400000000000002,0,0,0,0,0.266,64.14,119.51,0.14,976,3.3000000000000003,24,1.5 +2013,1,13,12,30,24.900000000000002,1.19,0.132,0.67,0,0,0,7,18.2,0,0,0,0,0.266,66.55,126.8,0.14,976,3.3000000000000003,17,1.4000000000000001 +2013,1,13,13,30,24.3,1.18,0.1307,0.67,0,0,0,7,18,0,0,0,0,0.266,68.1,130.79,0.14,975,3.3000000000000003,10,1.2000000000000002 +2013,1,13,14,30,23.700000000000003,1.1500000000000001,0.1262,0.67,0,0,0,8,17.8,0,0,0,0,0.265,69.41,130.67000000000002,0.14,974,3.4000000000000004,178,1 +2013,1,13,15,30,23.200000000000003,1.12,0.1265,0.67,0,0,0,0,17.6,0,0,0,0,0.265,70.81,126.46000000000001,0.14,974,3.4000000000000004,340,0.7000000000000001 +2013,1,13,16,30,22.8,1.11,0.1337,0.67,0,0,0,8,17.5,0,0,0,0,0.264,72.17,119.01,0.14,975,3.6,323,0.7000000000000001 +2013,1,13,17,30,22.400000000000002,1.11,0.1463,0.67,0,0,0,8,17.5,0,0,0,0,0.264,73.66,109.34,0.14,976,3.8000000000000003,311,0.7000000000000001 +2013,1,13,18,30,22.5,1.12,0.1648,0.67,0,0,0,8,17.5,0,0,0,0,0.263,73.35000000000001,98.25,0.14,977,4,292,0.7000000000000001 +2013,1,13,19,30,23.400000000000002,1.12,0.1884,0.67,27,106,34,8,17.6,26,37,3,29,0.263,69.92,86.07000000000001,0.14,978,4.3,271,1 +2013,1,13,20,30,25.1,1.1300000000000001,0.2159,0.67,93,441,217,8,17.6,143,98,0,171,0.263,63.29,73.61,0.14,979,4.6000000000000005,253,1.3 +2013,1,13,21,30,27.1,1.1300000000000001,0.23290000000000002,0.67,135,618,438,8,17.5,279,75,0,316,0.263,55.660000000000004,60.67,0.14,979,4.800000000000001,232,1.4000000000000001 +2013,1,13,22,30,29.1,1.1300000000000001,0.24250000000000002,0.67,163,721,651,0,17.3,163,721,0,651,0.262,49.04,47.480000000000004,0.14,978,4.9,203,1.2000000000000002 +2013,1,13,23,30,30,1.1400000000000001,0.24580000000000002,0.67,181,785,831,8,17.400000000000002,569,188,0,725,0.262,46.89,34.18,0.14,978,4.9,184,1 +2013,1,14,0,30,31.400000000000002,1.1300000000000001,0.3211,0.67,224,774,947,8,17.7,577,39,0,613,0.262,43.96,20.97,0.14,977,5,120,1.2000000000000002 +2013,1,14,1,30,31.6,1.08,0.3015,0.67,222,805,1018,8,18,635,45,0,679,0.262,44.28,8.84,0.14,976,4.800000000000001,102,1.6 +2013,1,14,2,30,31.6,1.03,0.2793,0.67,216,819,1024,8,18.3,162,29,0,190,0.263,45.32,9.41,0.14,976,4.5,104,2.1 +2013,1,14,3,30,31.1,0.99,0.3904,0.67,259,733,940,6,18.8,229,32,0,259,0.265,47.93,21.7,0.14,976,4.3,114,2.8000000000000003 +2013,1,14,4,30,29.900000000000002,0.9400000000000001,0.5266000000000001,0.67,294,609,793,6,19.3,236,29,0,260,0.268,52.980000000000004,34.93,0.14,976,4.2,117,3.4000000000000004 +2013,1,14,5,30,28.200000000000003,0.86,0.6125,0.67,287,478,605,7,19.6,189,27,0,207,0.272,59.79,48.230000000000004,0.14,977,4.1000000000000005,118,3.8000000000000003 +2013,1,14,6,30,26.200000000000003,0.78,0.5811000000000001,0.67,225,359,397,3,19.700000000000003,77,16,0,85,0.275,67.34,61.410000000000004,0.14,979,4,119,3.8000000000000003 +2013,1,14,7,30,24.200000000000003,0.68,0.46780000000000005,0.67,130,214,188,3,19.400000000000002,78,11,0,81,0.276,74.55,74.34,0.14,980,3.9000000000000004,121,3.6 +2013,1,14,8,30,22.700000000000003,0.58,0.3558,0.67,19,11,20,3,19,10,0,3,10,0.276,79.88,86.76,0.14,981,3.8000000000000003,124,3.2 +2013,1,14,9,30,21.900000000000002,0.52,0.30110000000000003,0.67,0,0,0,3,18.7,0,0,0,0,0.276,81.86,98.95,0.14,982,3.7,127,3 +2013,1,14,10,30,21.400000000000002,0.49,0.2761,0.67,0,0,0,1,18.2,0,0,0,0,0.275,82.22,110,0.14,983,3.6,130,2.9000000000000004 +2013,1,14,11,30,20.900000000000002,0.46,0.2707,0.67,0,0,0,3,17.900000000000002,0,0,0,0,0.274,83.16,119.60000000000001,0.14,983,3.5,131,2.7 +2013,1,14,12,30,20.5,0.45,0.2755,0.67,0,0,0,1,17.7,0,0,0,0,0.272,84.07000000000001,126.93,0.14,983,3.5,131,2.6 +2013,1,14,13,30,20.200000000000003,0.44,0.2776,0.67,0,0,0,3,17.5,0,0,0,0,0.271,84.46000000000001,130.96,0.14,983,3.4000000000000004,130,2.5 +2013,1,14,14,30,20,0.43,0.2796,0.67,0,0,0,3,17.2,0,0,0,0,0.27,84.13,130.86,0.14,982,3.3000000000000003,130,2.5 +2013,1,14,15,30,19.8,0.44,0.27440000000000003,0.67,0,0,0,3,17,0,0,0,0,0.27,83.8,126.66,0.14,982,3.3000000000000003,131,2.4000000000000004 +2013,1,14,16,30,19.700000000000003,0.45,0.2636,0.67,0,0,0,3,16.7,0,0,0,0,0.271,82.95,119.2,0.14,983,3.2,131,2.3000000000000003 +2013,1,14,17,30,19.700000000000003,0.45,0.2487,0.67,0,0,0,3,16.5,0,0,0,0,0.272,81.60000000000001,109.52,0.14,983,3.1,130,2.2 +2013,1,14,18,30,19.8,0.48,0.23,0.67,0,0,0,3,16.3,0,0,0,0,0.273,80.01,98.42,0.14,984,3,128,2.1 +2013,1,14,19,30,20.6,0.5,0.2059,0.67,28,56,32,3,16.1,3,0,3,3,0.274,75.37,86.22,0.14,984,3,124,2.5 +2013,1,14,20,30,22.200000000000003,0.53,0.18730000000000002,0.67,96,452,222,3,15.9,16,0,0,16,0.274,67.33,73.76,0.14,984,2.9000000000000004,117,3 +2013,1,14,21,30,24,0.56,0.1714,0.67,126,677,456,3,15.3,153,23,0,164,0.274,58.21,60.81,0.14,984,2.9000000000000004,112,3.2 +2013,1,14,22,30,25.700000000000003,0.5700000000000001,0.1623,0.67,143,797,680,3,14.700000000000001,274,25,0,291,0.273,50.5,47.62,0.14,984,2.8000000000000003,108,3.1 +2013,1,14,23,30,26.5,0.56,0.1608,0.67,156,861,867,3,14.3,363,24,0,383,0.272,47.06,34.32,0.14,984,2.8000000000000003,107,3.1 +2013,1,15,0,30,28.1,0.72,0.3105,0.67,235,793,975,2,14.100000000000001,510,26,0,534,0.271,42.39,21.11,0.14,983,2.8000000000000003,104,3 +2013,1,15,1,30,28.6,0.74,0.3042,0.67,238,815,1042,3,14.100000000000001,481,22,0,503,0.271,41.17,9.03,0.14,982,2.9000000000000004,102,3 +2013,1,15,2,30,28.700000000000003,0.76,0.2859,0.67,228,827,1044,1,14.200000000000001,228,827,0,1044,0.271,41.24,9.47,0.14,982,2.9000000000000004,100,2.9000000000000004 +2013,1,15,3,30,28.5,0.78,0.2277,0.67,194,849,983,3,14.4,541,31,0,570,0.272,42.160000000000004,21.68,0.14,981,2.9000000000000004,98,2.9000000000000004 +2013,1,15,4,30,27.900000000000002,0.77,0.21480000000000002,0.67,178,819,849,2,14.600000000000001,520,60,0,569,0.273,44.22,34.9,0.14,981,2.9000000000000004,97,3 +2013,1,15,5,30,27,0.75,0.19640000000000002,0.67,154,765,663,3,14.8,280,25,0,296,0.274,47.22,48.21,0.14,981,3,96,3 +2013,1,15,6,30,25.700000000000003,0.74,0.1859,0.67,127,661,443,1,15,127,661,0,443,0.276,51.74,61.4,0.14,982,3,94,2.9000000000000004 +2013,1,15,7,30,24.200000000000003,0.72,0.1753,0.67,88,465,214,3,15.3,127,61,0,144,0.278,57.480000000000004,74.34,0.14,983,3,92,2.7 +2013,1,15,8,30,22.8,0.71,0.1652,0.67,24,75,28,3,15.600000000000001,17,0,3,17,0.279,63.71,86.77,0.14,984,3.1,90,2.3000000000000003 +2013,1,15,9,30,21.900000000000002,0.74,0.1542,0.67,0,0,0,3,15.8,0,0,0,0,0.28,68.42,98.98,0.14,984,3.1,88,2 +2013,1,15,10,30,21.400000000000002,0.78,0.1444,0.67,0,0,0,3,16,0,0,0,0,0.28,71.31,110.06,0.14,985,3.1,88,1.7000000000000002 +2013,1,15,11,30,20.900000000000002,0.8,0.1389,0.67,0,0,0,3,16.1,0,0,0,0,0.28,74.2,119.69,0.14,984,3.1,87,1.4000000000000001 +2013,1,15,12,30,20.6,0.81,0.13470000000000001,0.67,0,0,0,3,16.3,0,0,0,0,0.279,76.2,127.06,0.14,984,3.1,86,1.1 +2013,1,15,13,30,20.200000000000003,0.8,0.1312,0.67,0,0,0,3,16.3,0,0,0,0,0.278,78.44,131.13,0.14,983,3,88,0.9 +2013,1,15,14,30,19.900000000000002,0.79,0.1308,0.67,0,0,0,3,16.400000000000002,0,0,0,0,0.277,80.10000000000001,131.05,0.14,983,3,96,0.7000000000000001 +2013,1,15,15,30,19.5,0.78,0.1327,0.67,0,0,0,3,16.3,0,0,0,0,0.275,82.01,126.86,0.14,982,3,104,0.5 +2013,1,15,16,30,19.200000000000003,0.79,0.13240000000000002,0.67,0,0,0,1,16.3,0,0,0,0,0.275,83.27,119.4,0.14,983,2.9000000000000004,109,0.5 +2013,1,15,17,30,18.8,0.81,0.12860000000000002,0.67,0,0,0,1,16.2,0,0,0,0,0.275,84.74,109.71000000000001,0.14,983,2.9000000000000004,112,0.5 +2013,1,15,18,30,19,0.84,0.12510000000000002,0.67,0,0,0,0,16,0,0,0,0,0.275,82.98,98.59,0.14,983,2.8000000000000003,114,0.7000000000000001 +2013,1,15,19,30,20.400000000000002,0.88,0.1232,0.67,26,142,35,1,16,26,142,0,35,0.276,75.74,86.37,0.14,984,2.8000000000000003,107,1.1 +2013,1,15,20,30,22.700000000000003,0.9,0.1232,0.67,76,555,230,1,15.600000000000001,76,555,0,230,0.277,64.24,73.91,0.14,984,2.8000000000000003,96,1.5 +2013,1,15,21,30,24.8,0.9,0.12490000000000001,0.67,104,743,465,1,14.8,104,743,0,465,0.278,53.88,60.95,0.14,984,2.7,92,1.5 +2013,1,15,22,30,26.700000000000003,0.91,0.1247,0.67,121,843,688,1,14.5,121,843,0,688,0.278,47.050000000000004,47.76,0.14,983,2.7,95,1.5 +2013,1,15,23,30,27.6,0.92,0.12350000000000001,0.67,133,904,878,1,14.4,133,904,0,878,0.278,44.32,34.45,0.14,983,2.6,98,1.6 +2013,1,16,0,30,29.700000000000003,0.9400000000000001,0.16640000000000002,0.67,162,906,1006,1,14.3,162,906,0,1006,0.278,39.08,21.26,0.14,982,2.5,105,1.8 +2013,1,16,1,30,30.700000000000003,0.9500000000000001,0.1558,0.67,159,930,1077,1,14.200000000000001,159,930,0,1077,0.277,36.64,9.22,0.14,981,2.5,102,2.1 +2013,1,16,2,30,31.400000000000002,0.9500000000000001,0.1421,0.67,152,942,1081,1,14,152,942,0,1081,0.276,34.78,9.540000000000001,0.14,981,2.4000000000000004,96,2.3000000000000003 +2013,1,16,3,30,31.400000000000002,0.9500000000000001,0.09960000000000001,0.67,126,959,1018,1,13.8,126,959,0,1018,0.276,34.38,21.68,0.14,980,2.4000000000000004,89,2.5 +2013,1,16,4,30,31,0.93,0.0978,0.67,119,927,879,0,13.8,119,927,0,879,0.276,35.160000000000004,34.88,0.14,980,2.5,83,2.7 +2013,1,16,5,30,29.900000000000002,0.91,0.097,0.67,109,873,690,0,13.9,109,873,0,690,0.275,37.64,48.19,0.14,980,2.5,78,2.8000000000000003 +2013,1,16,6,30,28.3,0.9,0.0954,0.67,92,778,465,0,14.100000000000001,92,778,0,465,0.275,41.800000000000004,61.39,0.14,980,2.5,72,2.8000000000000003 +2013,1,16,7,30,26.3,0.9,0.0915,0.67,67,599,229,0,14.4,67,599,0,229,0.275,48.01,74.34,0.14,981,2.5,66,2.6 +2013,1,16,8,30,24.400000000000002,0.92,0.09000000000000001,0.67,22,169,32,0,14.8,22,169,0,32,0.275,55.14,86.79,0.14,981,2.6,62,2.1 +2013,1,16,9,30,23,0.96,0.0925,0.67,0,0,0,0,15.200000000000001,0,0,0,0,0.276,61.46,99.02,0.14,982,2.6,62,1.7000000000000002 +2013,1,16,10,30,22.1,1.01,0.0988,0.67,0,0,0,0,15.4,0,0,0,0,0.277,65.72,110.13,0.14,982,2.7,63,1.3 +2013,1,16,11,30,21.3,1.05,0.10700000000000001,0.67,0,0,0,0,15.5,0,0,0,0,0.278,69.47,119.79,0.14,982,2.8000000000000003,62,1 +2013,1,16,12,30,20.700000000000003,1.07,0.11380000000000001,0.67,0,0,0,0,15.5,0,0,0,0,0.278,72.35000000000001,127.2,0.14,982,2.9000000000000004,59,0.7000000000000001 +2013,1,16,13,30,20.200000000000003,1.09,0.1187,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.278,74.68,131.3,0.14,981,2.9000000000000004,56,0.5 +2013,1,16,14,30,19.8,1.1,0.12250000000000001,0.67,0,0,0,1,15.600000000000001,0,0,0,0,0.278,76.65,131.25,0.14,981,2.9000000000000004,52,0.4 +2013,1,16,15,30,19.400000000000002,1.11,0.12480000000000001,0.67,0,0,0,0,15.700000000000001,0,0,0,0,0.277,78.98,127.07000000000001,0.14,980,2.9000000000000004,48,0.4 +2013,1,16,16,30,19.200000000000003,1.12,0.1236,0.67,0,0,0,0,15.8,0,0,0,0,0.275,80.83,119.60000000000001,0.14,980,2.9000000000000004,44,0.4 +2013,1,16,17,30,19,1.1400000000000001,0.1227,0.67,0,0,0,0,16,0,0,0,0,0.272,82.82000000000001,109.89,0.14,981,2.9000000000000004,39,0.4 +2013,1,16,18,30,19.1,1.1500000000000001,0.12480000000000001,0.67,0,0,0,0,16.2,0,0,0,0,0.269,83.06,98.76,0.14,981,2.9000000000000004,29,0.4 +2013,1,16,19,30,20.3,1.16,0.1283,0.67,24,146,33,1,16.3,24,146,0,33,0.267,77.8,86.52,0.14,982,3,29,0.5 +2013,1,16,20,30,22.5,1.17,0.13240000000000002,0.67,76,546,226,1,16.2,76,546,0,226,0.265,67.67,74.06,0.14,982,3,44,0.6000000000000001 +2013,1,16,21,30,24.8,1.18,0.13670000000000002,0.67,106,730,459,0,16,106,730,0,459,0.264,58.13,61.1,0.14,982,3,59,0.7000000000000001 +2013,1,16,22,30,27,1.21,0.137,0.67,124,833,683,0,15.9,124,833,0,683,0.263,50.63,47.89,0.14,981,2.9000000000000004,73,0.9 +2013,1,16,23,30,28.1,1.24,0.1343,0.67,135,894,870,0,15.8,135,894,0,870,0.263,47.09,34.59,0.14,981,2.9000000000000004,79,1 +2013,1,17,0,30,30.8,1.21,0.1121,0.67,131,943,1009,0,15.5,131,943,0,1009,0.263,39.6,21.400000000000002,0.14,980,2.9000000000000004,88,1.6 +2013,1,17,1,30,32,1.23,0.1135,0.67,135,956,1078,0,15.100000000000001,135,956,0,1078,0.263,36,9.41,0.14,979,2.9000000000000004,85,2 +2013,1,17,2,30,32.5,1.22,0.1143,0.67,135,953,1075,0,14.700000000000001,135,953,0,1075,0.263,34.19,9.620000000000001,0.14,979,3,80,2.3000000000000003 +2013,1,17,3,30,32.5,1.19,0.1044,0.67,127,946,1006,0,14.5,127,946,0,1006,0.264,33.72,21.68,0.14,978,3,75,2.6 +2013,1,17,4,30,31.900000000000002,1.17,0.10310000000000001,0.67,120,916,871,0,14.4,120,916,0,871,0.265,34.76,34.87,0.14,978,3,72,2.7 +2013,1,17,5,30,30.8,1.16,0.1015,0.67,109,862,683,0,14.5,109,862,0,683,0.265,37.1,48.18,0.14,978,3,69,2.7 +2013,1,17,6,30,29.200000000000003,1.16,0.1019,0.67,93,765,459,0,14.600000000000001,93,765,0,459,0.265,40.89,61.39,0.14,978,3,67,2.6 +2013,1,17,7,30,27.200000000000003,1.17,0.1027,0.67,68,579,225,0,14.700000000000001,68,579,0,225,0.265,46.51,74.35000000000001,0.14,979,3.1,65,2.4000000000000004 +2013,1,17,8,30,25.200000000000003,1.19,0.1062,0.67,22,156,31,0,15.100000000000001,22,156,0,31,0.265,53.54,86.82000000000001,0.14,979,3.2,63,2 +2013,1,17,9,30,23.8,1.2,0.1139,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.263,60.19,99.07000000000001,0.14,980,3.3000000000000003,62,1.8 +2013,1,17,10,30,22.900000000000002,1.2,0.1269,0.67,0,0,0,0,16.1,0,0,0,0,0.262,65.65,110.2,0.14,981,3.4000000000000004,57,1.7000000000000002 +2013,1,17,11,30,22.400000000000002,1.18,0.1418,0.67,0,0,0,0,16.5,0,0,0,0,0.26,69.42,119.9,0.14,981,3.5,50,1.5 +2013,1,17,12,30,22,1.17,0.15330000000000002,0.67,0,0,0,0,16.8,0,0,0,0,0.259,72.18,127.34,0.14,980,3.5,40,1.4000000000000001 +2013,1,17,13,30,21.700000000000003,1.16,0.1583,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.258,74.05,131.49,0.14,979,3.5,30,1.3 +2013,1,17,14,30,21.3,1.16,0.1526,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.257,76.17,131.46,0.14,979,3.5,24,1 +2013,1,17,15,30,20.700000000000003,1.17,0.1403,0.67,0,0,0,0,17,0,0,0,0,0.257,79.21000000000001,127.28,0.14,978,3.4000000000000004,20,0.7000000000000001 +2013,1,17,16,30,20.200000000000003,1.18,0.1318,0.67,0,0,0,0,17.1,0,0,0,0,0.257,82.15,119.8,0.14,978,3.3000000000000003,18,0.4 +2013,1,17,17,30,19.700000000000003,1.19,0.1317,0.67,0,0,0,0,17.1,0,0,0,0,0.258,85.21000000000001,110.08,0.14,978,3.3000000000000003,17,0.4 +2013,1,17,18,30,19.6,1.21,0.1399,0.67,0,0,0,0,17.2,0,0,0,0,0.258,86.25,98.94,0.14,979,3.2,187,0.5 +2013,1,17,19,30,20.700000000000003,1.24,0.1563,0.67,23,118,30,1,17.3,23,118,0,30,0.259,80.96000000000001,86.68,0.14,980,3.2,350,0.8 +2013,1,17,20,30,23,1.27,0.1819,0.67,86,487,218,1,17.1,86,487,0,218,0.259,69.22,74.21000000000001,0.14,980,3.1,343,1 +2013,1,17,21,30,25.400000000000002,1.33,0.21380000000000002,0.67,129,656,445,1,16.2,129,656,0,445,0.26,56.81,61.24,0.14,980,3.1,343,1 +2013,1,17,22,30,27.900000000000002,1.37,0.2389,0.67,162,748,662,1,15.200000000000001,162,748,0,662,0.261,46,48.03,0.14,980,3.1,337,0.9 +2013,1,17,23,30,29.200000000000003,1.4000000000000001,0.2432,0.67,181,812,848,1,14.3,181,812,0,848,0.261,40.33,34.730000000000004,0.14,979,3.1,331,0.8 +2013,1,18,0,30,33,1.41,0.1826,0.67,163,892,993,1,14,163,892,0,993,0.262,31.7,21.55,0.15,978,3,247,0.4 +2013,1,18,1,30,34.7,1.43,0.1781,0.67,165,912,1064,1,13.9,165,912,0,1064,0.262,28.650000000000002,9.61,0.15,976,3,169,0.5 +2013,1,18,2,30,35.7,1.44,0.1751,0.67,164,914,1064,0,13.9,164,914,0,1064,0.262,27.12,9.71,0.15,975,3,126,0.8 +2013,1,18,3,30,36,1.42,0.17220000000000002,0.67,157,898,991,0,14,157,898,0,991,0.261,26.900000000000002,21.68,0.15,974,3.1,100,1 +2013,1,18,4,30,35.7,1.41,0.1777,0.67,152,859,856,0,14.200000000000001,152,859,0,856,0.261,27.6,34.86,0.15,974,3.1,82,1.3 +2013,1,18,5,30,34.800000000000004,1.4000000000000001,0.1889,0.67,142,785,666,1,14.3,142,785,0,666,0.261,29.21,48.17,0.15,974,3.2,69,1.6 +2013,1,18,6,30,33.300000000000004,1.3900000000000001,0.1956,0.67,122,671,443,0,14.4,122,671,0,443,0.261,32.08,61.39,0.15,974,3.2,59,1.9000000000000001 +2013,1,18,7,30,31,1.3900000000000001,0.1955,0.67,86,474,213,0,14.8,86,474,0,213,0.261,37.410000000000004,74.37,0.15,975,3.2,50,2 +2013,1,18,8,30,28.5,1.3900000000000001,0.189,0.67,22,99,27,0,15.700000000000001,22,99,0,27,0.261,45.84,86.85000000000001,0.15,975,3.3000000000000003,43,1.8 +2013,1,18,9,30,26.700000000000003,1.3900000000000001,0.1827,0.67,0,0,0,0,16.400000000000002,0,0,0,0,0.262,53.13,99.12,0.15,976,3.3000000000000003,38,1.8 +2013,1,18,10,30,25.5,1.3800000000000001,0.1781,0.67,0,0,0,0,16.7,0,0,0,0,0.262,58.4,110.28,0.15,977,3.3000000000000003,33,1.7000000000000002 +2013,1,18,11,30,24.6,1.36,0.1748,0.67,0,0,0,0,17.1,0,0,0,0,0.262,62.9,120.01,0.15,977,3.3000000000000003,27,1.5 +2013,1,18,12,30,23.900000000000002,1.34,0.1704,0.67,0,0,0,0,17.3,0,0,0,0,0.263,66.5,127.5,0.15,977,3.3000000000000003,19,1.4000000000000001 +2013,1,18,13,30,23.400000000000002,1.31,0.16390000000000002,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.264,68.9,131.68,0.15,976,3.3000000000000003,11,1.2000000000000002 +2013,1,18,14,30,22.900000000000002,1.29,0.15510000000000002,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.266,71.04,131.68,0.15,975,3.3000000000000003,5,1 +2013,1,18,15,30,22.5,1.26,0.1462,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.267,72.96000000000001,127.49000000000001,0.15,975,3.3000000000000003,179,0.8 +2013,1,18,16,30,22,1.23,0.1389,0.67,0,0,0,0,17.5,0,0,0,0,0.268,75.54,120.01,0.15,975,3.3000000000000003,352,0.6000000000000001 +2013,1,18,17,30,21.5,1.22,0.1331,0.67,0,0,0,0,17.6,0,0,0,0,0.269,78.43,110.27,0.15,975,3.3000000000000003,340,0.6000000000000001 +2013,1,18,18,30,21.400000000000002,1.21,0.1312,0.67,0,0,0,0,17.7,0,0,0,0,0.27,79.71000000000001,99.11,0.15,976,3.3000000000000003,323,0.6000000000000001 +2013,1,18,19,30,22.6,1.19,0.1346,0.67,22,124,29,1,17.900000000000002,22,124,0,29,0.27,74.84,86.84,0.15,977,3.4000000000000004,305,1.1 +2013,1,18,20,30,24.900000000000002,1.2,0.14200000000000002,0.67,77,521,217,1,18.2,77,521,0,217,0.27,66.45,74.36,0.15,977,3.5,293,1.5 +2013,1,18,21,30,27.5,1.21,0.1557,0.67,111,698,445,3,18.2,131,23,0,142,0.269,56.81,61.38,0.15,977,3.6,278,1.5 +2013,1,18,22,30,30.1,1.22,0.1827,0.67,142,779,661,1,17.8,142,779,0,661,0.269,47.69,48.17,0.15,977,3.7,257,1.4000000000000001 +2013,1,18,23,30,31.200000000000003,1.24,0.2192,0.67,172,814,839,0,17.3,172,814,0,839,0.269,43.43,34.86,0.15,977,3.8000000000000003,245,1.4000000000000001 +2013,1,19,0,30,34.300000000000004,1.27,0.21630000000000002,0.67,178,853,971,0,17.1,178,853,0,971,0.269,35.96,21.7,0.15,975,3.9000000000000004,208,1.3 +2013,1,19,1,30,36.1,1.3,0.2119,0.67,181,872,1040,1,17.1,181,872,0,1040,0.269,32.54,9.81,0.15,974,4,177,1.3 +2013,1,19,2,30,37.2,1.31,0.2091,0.67,179,874,1041,1,17.1,179,874,0,1041,0.27,30.7,9.81,0.15,973,4,146,1.6 +2013,1,19,3,30,37.1,1.29,0.21530000000000002,0.67,179,851,970,1,17.3,179,851,0,970,0.27,31.17,21.7,0.15,973,4.1000000000000005,124,2.1 +2013,1,19,4,30,35.7,1.25,0.25730000000000003,0.67,187,782,829,1,17.6,187,782,0,829,0.271,34.36,34.86,0.15,973,4.3,112,2.7 +2013,1,19,5,30,33.7,1.22,0.27440000000000003,0.67,175,698,641,0,18.3,175,698,0,641,0.271,40.19,48.17,0.15,973,4.5,106,3.1 +2013,1,19,6,30,31.400000000000002,1.19,0.3468,0.67,166,525,417,1,19.3,166,525,0,417,0.272,48.7,61.39,0.15,975,4.6000000000000005,103,3.2 +2013,1,19,7,30,29.1,1.1500000000000001,0.373,0.67,113,301,194,1,20.200000000000003,113,301,0,194,0.273,58.65,74.38,0.15,976,4.7,102,3 +2013,1,19,8,30,27.3,1.11,0.3819,0.67,18,24,20,1,20.8,18,24,0,20,0.273,67.84,86.88,0.15,977,4.800000000000001,101,2.7 +2013,1,19,9,30,26,1.1,0.3677,0.67,0,0,0,0,21.200000000000003,0,0,0,0,0.272,74.96000000000001,99.17,0.15,978,4.800000000000001,99,2.4000000000000004 +2013,1,19,10,30,25.200000000000003,1.11,0.31620000000000004,0.67,0,0,0,3,21.400000000000002,0,0,0,0,0.27,79.43,110.36,0.15,979,4.7,96,2.1 +2013,1,19,11,30,24.6,1.12,0.2772,0.67,0,0,0,3,21.5,0,0,0,0,0.269,82.91,120.13,0.15,979,4.7,92,1.8 +2013,1,19,12,30,24,1.1500000000000001,0.2742,0.67,0,0,0,3,21.6,0,0,0,0,0.268,86.42,127.65,0.15,979,4.6000000000000005,89,1.5 +2013,1,19,13,30,23.5,1.17,0.271,0.67,0,0,0,1,21.700000000000003,0,0,0,0,0.267,89.71000000000001,131.87,0.15,979,4.5,86,1.3 +2013,1,19,14,30,23.1,1.18,0.2565,0.67,0,0,0,1,21.8,0,0,0,0,0.266,92.37,131.89000000000001,0.15,978,4.4,85,1.1 +2013,1,19,15,30,22.8,1.21,0.25170000000000003,0.67,0,0,0,1,21.8,0,0,0,0,0.266,94.38,127.72,0.15,978,4.3,83,1.1 +2013,1,19,16,30,22.5,1.24,0.2268,0.67,0,0,0,1,21.900000000000002,0,0,0,0,0.267,96.32000000000001,120.22,0.15,978,4.1000000000000005,79,1 +2013,1,19,17,30,22.3,1.26,0.2001,0.67,0,0,0,1,21.900000000000002,0,0,0,0,0.267,97.35000000000001,110.47,0.15,978,3.9000000000000004,74,0.9 +2013,1,19,18,30,22.200000000000003,1.27,0.18910000000000002,0.67,0,0,0,0,21.8,0,0,0,0,0.267,97.67,99.29,0.15,979,3.7,72,0.9 +2013,1,19,19,30,22.8,1.27,0.16670000000000001,0.67,21,97,26,1,21.8,21,97,0,26,0.267,93.98,86.99,0.15,980,3.6,72,1.1 +2013,1,19,20,30,24,1.29,0.1458,0.67,76,516,214,1,21.8,76,516,0,214,0.267,87.37,74.51,0.15,980,3.5,71,1.3 +2013,1,19,21,30,25.900000000000002,1.31,0.1346,0.67,103,725,448,1,21,103,725,0,448,0.267,74.24,61.52,0.15,981,3.3000000000000003,73,1.4000000000000001 +2013,1,19,22,30,28,1.32,0.13040000000000002,0.67,119,832,673,1,19.8,119,832,0,673,0.266,60.980000000000004,48.300000000000004,0.15,980,3.2,81,1.5 +2013,1,19,23,30,28.900000000000002,1.32,0.1295,0.67,131,891,861,1,18.900000000000002,131,891,0,861,0.266,54.870000000000005,35,0.15,980,3.2,86,1.6 +2013,1,20,0,30,31.1,1.3900000000000001,0.1061,0.67,126,942,1000,0,18.2,126,942,0,1000,0.265,46.21,21.85,0.15,979,3.2,98,1.8 +2013,1,20,1,30,32.1,1.3900000000000001,0.1124,0.67,132,952,1069,0,17.3,132,952,0,1069,0.264,41.33,10.02,0.15,979,3.2,100,2.1 +2013,1,20,2,30,32.7,1.37,0.1192,0.67,136,947,1069,0,16.6,136,947,0,1069,0.264,38.11,9.92,0.15,978,3.2,98,2.4000000000000004 +2013,1,20,3,30,32.6,1.34,0.1212,0.67,134,929,997,0,16.2,134,929,0,997,0.265,37.39,21.72,0.15,977,3.3000000000000003,95,2.7 +2013,1,20,4,30,31.900000000000002,1.3,0.12390000000000001,0.67,128,893,861,0,16.2,128,893,0,861,0.265,38.89,34.87,0.15,977,3.4000000000000004,92,2.9000000000000004 +2013,1,20,5,30,30.5,1.25,0.12560000000000002,0.67,118,832,673,0,16.3,118,832,0,673,0.266,42.47,48.18,0.15,977,3.5,90,3 +2013,1,20,6,30,28.700000000000003,1.22,0.13090000000000002,0.67,103,724,449,1,16.7,103,724,0,449,0.267,48.120000000000005,61.410000000000004,0.15,978,3.6,88,2.9000000000000004 +2013,1,20,7,30,26.8,1.2,0.1327,0.67,75,529,217,1,17.2,75,529,0,217,0.268,55.59,74.41,0.15,979,3.7,86,2.6 +2013,1,20,8,30,25.200000000000003,1.18,0.13520000000000001,0.67,22,117,28,1,17.8,22,117,0,28,0.268,63.51,86.92,0.15,980,3.8000000000000003,86,2.2 +2013,1,20,9,30,24.200000000000003,1.19,0.1403,0.67,0,0,0,1,18.400000000000002,0,0,0,0,0.268,70.07000000000001,99.24000000000001,0.15,980,3.8000000000000003,88,1.8 +2013,1,20,10,30,23.5,1.2,0.1437,0.67,0,0,0,0,19,0,0,0,0,0.267,75.85000000000001,110.45,0.15,981,3.9000000000000004,92,1.5 +2013,1,20,11,30,23,1.22,0.1491,0.67,0,0,0,3,19.5,0,0,0,0,0.267,80.71000000000001,120.25,0.15,981,3.8000000000000003,95,1.2000000000000002 +2013,1,20,12,30,22.5,1.24,0.1502,0.67,0,0,0,3,20,0,0,0,0,0.267,85.61,127.82000000000001,0.15,980,3.8000000000000003,98,1.1 +2013,1,20,13,30,22,1.25,0.1481,0.67,0,0,0,3,20.3,0,0,0,0,0.268,90.22,132.08,0.15,980,3.8000000000000003,98,1.1 +2013,1,20,14,30,21.700000000000003,1.26,0.1426,0.67,0,0,0,1,20.6,0,0,0,0,0.268,93.32000000000001,132.12,0.15,979,3.7,94,0.9 +2013,1,20,15,30,21.400000000000002,1.26,0.14200000000000002,0.67,0,0,0,3,20.700000000000003,0,0,0,0,0.269,96.03,127.94,0.15,979,3.8000000000000003,85,0.8 +2013,1,20,16,30,21.200000000000003,1.27,0.1338,0.67,0,0,0,3,20.8,0,0,0,0,0.269,97.57000000000001,120.43,0.15,979,3.8000000000000003,77,0.6000000000000001 +2013,1,20,17,30,21.1,1.28,0.1194,0.67,0,0,0,3,20.8,0,0,0,0,0.269,98.09,110.66,0.15,979,3.8000000000000003,75,0.5 +2013,1,20,18,30,21.1,1.29,0.11510000000000001,0.67,0,0,0,3,20.700000000000003,0,0,0,0,0.27,97.85000000000001,99.47,0.15,979,3.8000000000000003,82,0.4 +2013,1,20,19,30,21.5,1.3,0.10880000000000001,0.67,19,139,26,1,20.8,19,139,0,26,0.27,95.64,87.15,0.15,980,3.7,85,0.6000000000000001 +2013,1,20,20,30,22.5,1.33,0.09620000000000001,0.67,65,575,217,1,21,65,575,0,217,0.271,91.27,74.66,0.15,980,3.7,80,0.7000000000000001 +2013,1,20,21,30,24.3,1.35,0.0931,0.67,88,763,450,1,20.900000000000002,88,763,0,450,0.271,81.2,61.660000000000004,0.15,980,3.7,83,0.9 +2013,1,20,22,30,26.700000000000003,1.37,0.0889,0.67,101,862,673,1,19.900000000000002,101,862,0,673,0.27,66.43,48.44,0.15,980,3.7,89,1.1 +2013,1,20,23,30,27.900000000000002,1.37,0.0877,0.67,110,917,860,1,19,110,917,0,860,0.27,58.33,35.13,0.15,980,3.7,92,1.3 +2013,1,21,0,30,30.3,1.28,0.09910000000000001,0.67,124,936,992,3,18.400000000000002,451,23,0,472,0.268,49.08,22,0.16,979,3.8000000000000003,90,1.8 +2013,1,21,1,30,31.200000000000003,1.3,0.0956,0.67,125,952,1062,3,18,331,28,0,359,0.266,45.42,10.23,0.16,978,3.9000000000000004,88,2.1 +2013,1,21,2,30,31.6,1.29,0.0945,0.67,125,953,1063,3,17.7,357,27,0,383,0.266,43.57,10.040000000000001,0.16,978,3.9000000000000004,87,2.4000000000000004 +2013,1,21,3,30,31.400000000000002,1.27,0.0956,0.67,122,937,992,3,17.6,126,24,0,149,0.266,43.78,21.75,0.16,977,4,88,2.7 +2013,1,21,4,30,30.700000000000003,1.26,0.097,0.67,116,905,859,3,17.6,356,24,0,376,0.266,45.54,34.88,0.16,977,4,87,2.9000000000000004 +2013,1,21,5,30,29.5,1.23,0.0981,0.67,106,848,672,3,17.6,426,98,0,492,0.267,48.94,48.19,0.16,977,4.1000000000000005,87,2.9000000000000004 +2013,1,21,6,30,27.900000000000002,1.2,0.1024,0.67,92,747,450,3,17.8,182,24,0,193,0.267,54.11,61.42,0.16,977,4.1000000000000005,86,2.8000000000000003 +2013,1,21,7,30,26.200000000000003,1.18,0.10450000000000001,0.67,68,559,218,3,18,52,3,0,53,0.268,60.76,74.44,0.16,978,4.1000000000000005,85,2.5 +2013,1,21,8,30,24.6,1.17,0.10500000000000001,0.67,21,142,28,3,18.400000000000002,7,0,3,7,0.269,68.55,86.96000000000001,0.16,979,4.1000000000000005,85,2.1 +2013,1,21,9,30,23.6,1.18,0.11270000000000001,0.67,0,0,0,1,18.900000000000002,0,0,0,0,0.269,74.79,99.3,0.16,980,4.1000000000000005,85,1.8 +2013,1,21,10,30,23.1,1.2,0.1159,0.67,0,0,0,1,19.200000000000003,0,0,0,0,0.269,78.78,110.55,0.16,980,4.1000000000000005,89,1.5 +2013,1,21,11,30,22.700000000000003,1.22,0.11570000000000001,0.67,0,0,0,1,19.5,0,0,0,0,0.268,82.17,120.38,0.16,981,4.1000000000000005,91,1.2000000000000002 +2013,1,21,12,30,22.3,1.25,0.1111,0.67,0,0,0,1,19.6,0,0,0,0,0.268,84.94,127.99000000000001,0.16,980,4,83,1.1 +2013,1,21,13,30,22,1.25,0.10250000000000001,0.67,0,0,0,1,19.700000000000003,0,0,0,0,0.267,87.05,132.28,0.16,980,3.9000000000000004,67,1 +2013,1,21,14,30,21.6,1.25,0.0952,0.67,0,0,0,0,19.8,0,0,0,0,0.266,89.57000000000001,132.35,0.16,979,3.9000000000000004,56,0.9 +2013,1,21,15,30,21.3,1.25,0.0964,0.67,0,0,0,0,19.900000000000002,0,0,0,0,0.266,91.55,128.17000000000002,0.16,978,3.8000000000000003,59,0.7000000000000001 +2013,1,21,16,30,21,1.25,0.0955,0.67,0,0,0,0,19.900000000000002,0,0,0,0,0.265,93.58,120.64,0.16,978,3.7,70,0.5 +2013,1,21,17,30,20.700000000000003,1.25,0.0896,0.67,0,0,0,0,20,0,0,0,0,0.265,95.59,110.86,0.16,978,3.6,80,0.4 +2013,1,21,18,30,20.6,1.27,0.08560000000000001,0.67,0,0,0,1,20,0,0,0,0,0.265,96.4,99.65,0.16,979,3.5,90,0.5 +2013,1,21,19,30,21.5,1.29,0.0787,0.67,18,169,26,1,20,18,169,0,26,0.265,91.46000000000001,87.3,0.16,979,3.4000000000000004,88,0.8 +2013,1,21,20,30,23.1,1.32,0.068,0.67,58,618,220,1,20.1,58,618,0,220,0.266,83.28,74.81,0.16,980,3.4000000000000004,78,1.1 +2013,1,21,21,30,25,1.35,0.0608,0.67,76,804,456,1,19.700000000000003,76,804,0,456,0.267,72.53,61.800000000000004,0.16,980,3.4000000000000004,72,1.3 +2013,1,21,22,30,27,1.36,0.0572,0.67,87,897,680,1,18.900000000000002,87,897,0,680,0.267,61.050000000000004,48.57,0.16,980,3.4000000000000004,70,1.5 +2013,1,21,23,30,27.900000000000002,1.36,0.055900000000000005,0.67,95,946,867,1,18.1,95,946,0,867,0.267,55.19,35.27,0.16,980,3.5,69,1.7000000000000002 +2013,1,22,0,30,30.1,1.23,0.0679,0.67,107,965,1000,3,17.5,243,31,0,272,0.266,46.96,22.150000000000002,0.16,978,3.5,66,2.1 +2013,1,22,1,30,30.900000000000002,1.23,0.0651,0.67,108,979,1071,3,17.2,193,31,0,224,0.266,43.99,10.44,0.16,978,3.6,65,2.4000000000000004 +2013,1,22,2,30,31.3,1.2,0.0651,0.67,108,977,1070,3,17.1,362,26,0,389,0.265,42.57,10.17,0.16,977,3.7,65,2.5 +2013,1,22,3,30,31.1,1.16,0.0699,0.67,109,959,999,3,17.2,297,29,0,323,0.263,43.5,21.78,0.16,977,3.8000000000000003,69,2.5 +2013,1,22,4,30,30.6,1.11,0.078,0.67,107,920,862,3,17.400000000000002,481,38,0,512,0.262,45.17,34.89,0.16,976,4,74,2.4000000000000004 +2013,1,22,5,30,29.6,1.08,0.0839,0.67,101,860,674,1,17.6,101,860,0,674,0.261,48.39,48.2,0.16,977,4.1000000000000005,78,2.4000000000000004 +2013,1,22,6,30,28.200000000000003,1.07,0.092,0.67,89,756,451,1,17.8,89,756,0,451,0.261,53.44,61.44,0.16,977,4.2,79,2.4000000000000004 +2013,1,22,7,30,26.5,1.06,0.0955,0.67,66,566,218,1,18.3,66,566,0,218,0.261,60.58,74.47,0.16,978,4.3,76,2.3000000000000003 +2013,1,22,8,30,25,1.05,0.09630000000000001,0.67,20,142,28,1,18.7,20,142,0,28,0.261,68.2,87.01,0.16,979,4.4,71,2.1 +2013,1,22,9,30,24.1,1.05,0.09730000000000001,0.67,0,0,0,3,19.1,0,0,0,0,0.261,73.61,99.38,0.16,980,4.4,66,1.9000000000000001 +2013,1,22,10,30,23.400000000000002,1.05,0.09630000000000001,0.67,0,0,0,3,19.200000000000003,0,0,0,0,0.261,77.46000000000001,110.65,0.16,980,4.3,62,1.7000000000000002 +2013,1,22,11,30,23,1.04,0.09480000000000001,0.67,0,0,0,8,19.3,0,0,0,0,0.261,79.88,120.52,0.16,980,4.3,61,1.4000000000000001 +2013,1,22,12,30,22.700000000000003,1.04,0.09390000000000001,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.26,81.64,128.17000000000002,0.16,980,4.2,60,1.2000000000000002 +2013,1,22,13,30,22.400000000000002,1.04,0.0922,0.67,0,0,0,8,19.400000000000002,0,0,0,0,0.26,83.32000000000001,132.5,0.16,980,4.1000000000000005,59,0.9 +2013,1,22,14,30,22.200000000000003,1.04,0.0902,0.67,0,0,0,1,19.400000000000002,0,0,0,0,0.26,84.28,132.59,0.16,979,4,58,0.8 +2013,1,22,15,30,22,1.05,0.0903,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.26,85.22,128.41,0.16,979,3.9000000000000004,58,0.7000000000000001 +2013,1,22,16,30,21.700000000000003,1.06,0.0888,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.261,86.67,120.86,0.16,979,3.9000000000000004,60,0.6000000000000001 +2013,1,22,17,30,21.400000000000002,1.06,0.08610000000000001,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.261,88.2,111.06,0.16,979,3.8000000000000003,64,0.5 +2013,1,22,18,30,21.400000000000002,1.07,0.0867,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.262,88.34,99.83,0.16,980,3.8000000000000003,71,0.6000000000000001 +2013,1,22,19,30,22.3,1.08,0.0877,0.67,18,135,24,1,19.5,18,135,0,24,0.263,84.16,87.46000000000001,0.16,980,3.8000000000000003,71,0.9 +2013,1,22,20,30,24,1.1,0.08560000000000001,0.67,62,577,212,3,19.5,128,91,0,151,0.264,76.09,74.96000000000001,0.16,981,3.8000000000000003,66,1.3 +2013,1,22,21,30,25.8,1.1300000000000001,0.0806,0.67,83,771,446,8,19,283,200,0,377,0.264,66.02,61.95,0.16,981,3.7,70,1.4000000000000001 +2013,1,22,22,30,27.700000000000003,1.16,0.07390000000000001,0.67,95,873,671,8,17.900000000000002,429,128,0,513,0.264,55.36,48.71,0.16,981,3.7,75,1.6 +2013,1,22,23,30,28.700000000000003,1.17,0.0697,0.67,102,930,860,8,17.3,277,27,0,299,0.263,50.07,35.410000000000004,0.16,980,3.7,76,1.7000000000000002 +2013,1,23,0,30,30.700000000000003,1.1300000000000001,0.0736,0.67,110,956,995,1,17,110,956,0,995,0.262,43.78,22.3,0.16,980,3.7,74,2 +2013,1,23,1,30,31.6,1.12,0.0727,0.67,113,970,1066,1,16.8,113,970,0,1066,0.262,41.25,10.65,0.16,979,3.7,74,2.3000000000000003 +2013,1,23,2,30,32,1.09,0.0752,0.67,115,967,1066,1,16.8,115,967,0,1066,0.261,40.33,10.31,0.16,978,3.8000000000000003,75,2.4000000000000004 +2013,1,23,3,30,31.8,0.98,0.0983,0.67,125,935,993,1,17,125,935,0,993,0.261,41.31,21.82,0.16,978,3.8000000000000003,77,2.6 +2013,1,23,4,30,31,0.96,0.09720000000000001,0.67,118,904,860,1,17.3,118,904,0,860,0.261,43.96,34.92,0.16,977,3.8000000000000003,79,2.8000000000000003 +2013,1,23,5,30,29.8,0.9500000000000001,0.0944,0.67,107,851,673,1,17.6,107,851,0,673,0.261,48,48.22,0.16,977,3.9000000000000004,79,2.9000000000000004 +2013,1,23,6,30,28.1,0.9400000000000001,0.0969,0.67,92,751,451,1,18,92,751,0,451,0.261,54.19,61.47,0.16,978,3.9000000000000004,77,2.9000000000000004 +2013,1,23,7,30,26.400000000000002,0.9400000000000001,0.09430000000000001,0.67,67,568,218,1,18.3,67,568,0,218,0.261,61.21,74.51,0.16,979,3.9000000000000004,73,2.7 +2013,1,23,8,30,25,0.9400000000000001,0.08900000000000001,0.67,20,145,28,1,18.6,20,145,0,28,0.261,67.79,87.06,0.16,980,3.9000000000000004,71,2.4000000000000004 +2013,1,23,9,30,24.1,0.97,0.0872,0.67,0,0,0,1,18.900000000000002,0,0,0,0,0.261,72.82000000000001,99.46000000000001,0.16,981,3.9000000000000004,72,2.1 +2013,1,23,10,30,23.6,0.99,0.08360000000000001,0.67,0,0,0,1,19.200000000000003,0,0,0,0,0.261,76.24,110.76,0.16,981,3.9000000000000004,76,1.8 +2013,1,23,11,30,23.200000000000003,0.98,0.08070000000000001,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.261,79.25,120.66,0.16,981,3.8000000000000003,81,1.5 +2013,1,23,12,30,22.900000000000002,0.97,0.07980000000000001,0.67,0,0,0,7,19.6,0,0,0,0,0.26,81.59,128.35,0.16,981,3.7,86,1.2000000000000002 +2013,1,23,13,30,22.6,0.96,0.0799,0.67,0,0,0,7,19.700000000000003,0,0,0,0,0.26,83.63,132.72,0.16,980,3.7,93,1.1 +2013,1,23,14,30,22.3,0.9500000000000001,0.0795,0.67,0,0,0,7,19.8,0,0,0,0,0.26,85.59,132.83,0.16,980,3.6,100,0.9 +2013,1,23,15,30,22,0.97,0.0806,0.67,0,0,0,7,19.8,0,0,0,0,0.259,87.32000000000001,128.64000000000001,0.16,979,3.6,104,0.8 +2013,1,23,16,30,21.8,0.97,0.0792,0.67,0,0,0,7,19.8,0,0,0,0,0.258,88.59,121.08,0.16,979,3.5,106,0.8 +2013,1,23,17,30,21.5,0.97,0.0753,0.67,0,0,0,6,19.900000000000002,0,0,0,0,0.258,90.51,111.26,0.16,979,3.5,109,0.7000000000000001 +2013,1,23,18,30,21.5,0.98,0.0748,0.67,0,0,0,6,20,0,0,0,0,0.258,91.03,100.01,0.16,980,3.5,112,0.9 +2013,1,23,19,30,22.3,0.99,0.0728,0.67,17,144,23,6,20.200000000000003,3,0,3,3,0.257,87.73,87.61,0.16,980,3.6,109,1.6 +2013,1,23,20,30,23.700000000000003,1.02,0.06520000000000001,0.67,57,607,213,7,20.400000000000002,9,0,0,9,0.257,81.63,75.11,0.16,980,3.7,103,2.2 +2013,1,23,21,30,25.3,1.09,0.057800000000000004,0.67,75,797,448,8,20,43,0,0,43,0.256,72.71000000000001,62.09,0.16,980,3.8000000000000003,99,2.5 +2013,1,23,22,30,26.700000000000003,1.1400000000000001,0.0528,0.67,86,890,671,8,19.400000000000002,58,4,0,61,0.255,64.11,48.85,0.16,980,4,96,2.7 +2013,1,23,23,30,27.3,1.1300000000000001,0.0516,0.67,93,941,859,8,18.900000000000002,75,10,0,84,0.254,60.11,35.550000000000004,0.16,980,4,95,2.7 +2013,1,24,0,30,27.8,1.05,0.058300000000000005,0.67,103,960,990,8,18.8,177,30,0,205,0.252,57.99,22.46,0.16,980,4.3,84,2.9000000000000004 +2013,1,24,1,30,27.400000000000002,1.01,0.0606,0.67,107,970,1060,8,18.900000000000002,155,28,0,183,0.251,59.75,10.870000000000001,0.16,980,4.4,77,2.9000000000000004 +2013,1,24,2,30,26.700000000000003,0.97,0.0562,0.67,105,973,1062,6,19.1,230,32,0,261,0.249,63.22,10.47,0.16,979,4.4,75,2.8000000000000003 +2013,1,24,3,30,26.200000000000003,0.98,0.0507,0.67,99,967,996,8,19.5,328,27,0,353,0.249,66.74,21.88,0.16,979,4.3,78,2.6 +2013,1,24,4,30,25.700000000000003,1,0.0455,0.67,91,944,865,8,19.8,191,30,0,216,0.248,70.04,34.94,0.16,978,4.3,84,2.5 +2013,1,24,5,30,25,0.98,0.0444,0.67,83,897,680,8,20.1,143,27,0,161,0.247,74.3,48.25,0.16,978,4.3,90,2.4000000000000004 +2013,1,24,6,30,24.1,0.96,0.0472,0.67,72,808,458,6,20.400000000000002,105,21,0,115,0.247,79.81,61.5,0.16,979,4.3,96,2.2 +2013,1,24,7,30,23.1,0.9400000000000001,0.0509,0.67,55,632,223,8,20.8,48,1,3,48,0.247,86.69,74.55,0.16,979,4.4,100,1.9000000000000001 +2013,1,24,8,30,22.3,0.9,0.0522,0.67,19,197,29,6,21.1,9,0,3,9,0.248,93.07000000000001,87.12,0.16,980,4.5,104,1.7000000000000002 +2013,1,24,9,30,21.900000000000002,0.91,0.0599,0.67,0,0,0,7,21.3,0,0,0,0,0.249,96.4,99.54,0.16,980,4.6000000000000005,108,1.6 +2013,1,24,10,30,21.700000000000003,0.86,0.058600000000000006,0.67,0,0,0,8,21.400000000000002,0,0,0,0,0.249,98.47,110.87,0.16,981,4.6000000000000005,113,1.5 +2013,1,24,11,30,21.6,0.78,0.0562,0.67,0,0,0,6,21.5,0,0,0,0,0.249,99.54,120.81,0.16,980,4.7,115,1.5 +2013,1,24,12,30,21.5,0.76,0.066,0.67,0,0,0,6,21.5,0,0,0,0,0.249,100,128.55,0.16,980,4.7,114,1.5 +2013,1,24,13,30,21.5,0.7000000000000001,0.0675,0.67,0,0,0,6,21.5,0,0,0,0,0.249,100,132.95,0.16,979,4.800000000000001,111,1.5 +2013,1,24,14,30,21.400000000000002,0.6,0.0639,0.67,0,0,0,8,21.400000000000002,0,0,0,0,0.249,100,133.07,0.16,978,4.800000000000001,108,1.5 +2013,1,24,15,30,21.3,0.62,0.0733,0.67,0,0,0,8,21.3,0,0,0,0,0.25,100,128.89000000000001,0.16,977,4.800000000000001,104,1.6 +2013,1,24,16,30,21.3,0.6,0.068,0.67,0,0,0,8,21.3,0,0,0,0,0.251,100,121.31,0.16,977,4.800000000000001,97,1.6 +2013,1,24,17,30,21.200000000000003,0.56,0.062,0.67,0,0,0,8,21.200000000000003,0,0,0,0,0.252,100,111.46000000000001,0.16,977,4.9,92,1.6 +2013,1,24,18,30,21.3,0.62,0.0692,0.67,0,0,0,8,21.3,0,0,0,0,0.254,100,100.19,0.16,977,5,91,1.7000000000000002 +2013,1,24,19,30,21.6,0.6,0.0685,0.67,17,114,21,8,21.5,10,0,3,10,0.256,99.15,87.77,0.16,978,5,90,1.9000000000000001 +2013,1,24,20,30,22.400000000000002,0.55,0.0614,0.67,57,584,206,4,21.8,14,0,0,14,0.258,96.24000000000001,75.26,0.16,978,5,86,2.4000000000000004 +2013,1,24,21,30,23.5,0.62,0.0587,0.67,77,775,438,8,22,201,28,0,214,0.26,91.19,62.230000000000004,0.16,978,5,81,2.9000000000000004 +2013,1,24,22,30,25,0.58,0.0601,0.67,91,865,659,8,21.6,247,25,0,264,0.261,81.45,48.980000000000004,0.16,978,5,78,3.4000000000000004 +2013,1,24,23,30,25.700000000000003,0.51,0.06760000000000001,0.67,105,910,844,8,20.900000000000002,318,25,0,338,0.261,74.82000000000001,35.68,0.16,978,5,77,3.5 +2013,1,25,0,30,27.1,0.49,0.08270000000000001,0.67,120,927,975,8,20.5,402,23,3,424,0.26,67.17,22.61,0.16,977,5,78,3.8000000000000003 +2013,1,25,1,30,27.400000000000002,0.48,0.08600000000000001,0.67,125,938,1046,8,20.3,556,26,0,582,0.258,65.3,11.1,0.16,976,5,78,3.8000000000000003 +2013,1,25,2,30,27.1,0.44,0.0896,0.67,128,935,1047,8,20.3,398,24,0,422,0.257,66.57000000000001,10.63,0.16,976,5,77,3.8000000000000003 +2013,1,25,3,30,26.5,0.47000000000000003,0.08700000000000001,0.67,123,924,980,8,20.400000000000002,400,23,0,421,0.255,69.24,21.93,0.16,976,5,76,3.7 +2013,1,25,4,30,25.900000000000002,0.49,0.0828,0.67,114,898,849,8,20.400000000000002,311,25,0,332,0.254,71.92,34.980000000000004,0.16,976,5,77,3.6 +2013,1,25,5,30,25.200000000000003,0.49,0.0794,0.67,102,848,666,8,20.5,248,25,0,265,0.253,75.3,48.28,0.16,976,4.9,81,3.4000000000000004 +2013,1,25,6,30,24.200000000000003,0.53,0.0849,0.67,89,746,445,8,20.6,152,23,0,163,0.252,80.56,61.54,0.16,976,4.9,86,3 +2013,1,25,7,30,23.1,0.56,0.083,0.67,65,561,214,8,21,65,8,3,67,0.252,87.74,74.60000000000001,0.16,976,5,94,2.5 +2013,1,25,8,30,22.3,0.5700000000000001,0.08220000000000001,0.67,20,123,26,8,21.400000000000002,10,0,3,10,0.251,94.61,87.18,0.16,977,5.1000000000000005,102,2.3000000000000003 +2013,1,25,9,30,22.1,0.64,0.0901,0.67,0,0,0,8,21.700000000000003,0,0,0,0,0.25,97.34,99.63,0.16,977,5.2,107,2.3000000000000003 +2013,1,25,10,30,22.1,0.61,0.0882,0.67,0,0,0,8,21.900000000000002,0,0,0,0,0.248,98.77,110.99000000000001,0.16,977,5.4,110,2.3000000000000003 +2013,1,25,11,30,22.200000000000003,0.5,0.0964,0.67,0,0,0,8,22.1,0,0,0,0,0.246,99.58,120.97,0.16,977,5.5,109,2.3000000000000003 +2013,1,25,12,30,22.3,0.46,0.13620000000000002,0.67,0,0,0,8,22.3,0,0,0,0,0.245,100,128.74,0.16,976,5.6000000000000005,102,2.4000000000000004 +2013,1,25,13,30,22.3,0.32,0.1584,0.67,0,0,0,8,22.3,0,0,0,0,0.243,100,133.18,0.16,976,5.5,92,2.5 +2013,1,25,14,30,22.200000000000003,0.25,0.1578,0.67,0,0,0,4,22.200000000000003,0,0,0,0,0.242,100,133.33,0.16,975,5.4,86,2.6 +2013,1,25,15,30,22.1,0.29,0.17,0.67,0,0,0,4,22,0,0,0,0,0.243,99.46000000000001,129.13,0.16,975,5.4,83,2.6 +2013,1,25,16,30,22,0.25,0.1829,0.67,0,0,0,4,21.8,0,0,0,0,0.244,98.97,121.53,0.16,975,5.4,84,2.5 +2013,1,25,17,30,21.900000000000002,0.21,0.1792,0.67,0,0,0,4,21.700000000000003,0,0,0,0,0.245,99.08,111.66,0.16,975,5.4,86,2.5 +2013,1,25,18,30,22,0.25,0.1888,0.67,0,0,0,8,21.700000000000003,0,0,0,0,0.246,98.42,100.37,0.16,975,5.4,89,2.6 +2013,1,25,19,30,22.3,0.23,0.1899,0.67,14,10,15,4,21.8,2,0,3,2,0.247,97.21000000000001,87.92,0.16,976,5.5,91,2.8000000000000003 +2013,1,25,20,30,23,0.2,0.18030000000000002,0.67,89,378,184,8,22.1,45,0,0,45,0.248,94.93,75.41,0.16,976,5.6000000000000005,89,3.2 +2013,1,25,21,30,23.6,0.23,0.1814,0.67,128,604,409,8,22.400000000000002,68,13,0,74,0.248,93.01,62.370000000000005,0.16,976,5.7,86,3.6 +2013,1,25,22,30,24.1,0.22,0.18150000000000002,0.67,153,724,627,8,22.400000000000002,55,2,0,56,0.249,90.23,49.120000000000005,0.16,976,5.800000000000001,84,3.8000000000000003 +2013,1,25,23,30,24.3,0.2,0.1773,0.67,167,796,813,7,22.3,206,30,0,231,0.249,88.85000000000001,35.82,0.16,976,5.800000000000001,84,3.9000000000000004 +2013,1,26,0,30,24.3,0.2,0.1797,0.67,178,833,946,8,22.400000000000002,120,23,0,141,0.247,88.91,22.77,0.15,975,5.9,86,3.8000000000000003 +2013,1,26,1,30,24.200000000000003,0.2,0.1902,0.67,188,843,1015,8,22.400000000000002,214,32,0,246,0.246,89.84,11.32,0.15,975,5.9,88,3.7 +2013,1,26,2,30,24,0.19,0.19390000000000002,0.67,191,840,1015,8,22.5,246,32,0,278,0.245,91.45,10.8,0.15,974,6,90,3.6 +2013,1,26,3,30,23.900000000000002,0.21,0.2016,0.67,190,817,947,6,22.6,125,24,0,147,0.243,92.52,22,0.15,974,6,90,3.4000000000000004 +2013,1,26,4,30,23.6,0.21,0.2187,0.67,188,764,814,6,22.700000000000003,216,30,0,240,0.242,94.87,35.02,0.15,974,5.9,90,3.2 +2013,1,26,5,30,23.3,0.2,0.23340000000000002,0.67,177,680,629,6,22.8,112,24,0,128,0.242,97.15,48.32,0.15,973,5.9,89,3.1 +2013,1,26,6,30,23,0.23,0.2421,0.67,151,549,413,6,22.900000000000002,82,18,0,91,0.242,99.21000000000001,61.59,0.15,974,5.9,88,3 +2013,1,26,7,30,22.8,0.22,0.22760000000000002,0.67,101,342,192,6,22.8,38,0,3,38,0.242,99.97,74.66,0.15,974,5.9,87,2.9000000000000004 +2013,1,26,8,30,22.6,0.2,0.2074,0.67,19,16,20,6,22.6,7,0,3,7,0.242,100,87.25,0.15,975,5.800000000000001,86,2.9000000000000004 +2013,1,26,9,30,22.5,0.24,0.22130000000000002,0.67,0,0,0,6,22.5,0,0,0,0,0.242,100,99.72,0.15,975,5.800000000000001,86,2.9000000000000004 +2013,1,26,10,30,22.400000000000002,0.22,0.22540000000000002,0.67,0,0,0,6,22.400000000000002,0,0,0,0,0.243,100,111.11,0.15,975,5.9,88,2.9000000000000004 +2013,1,26,11,30,22.3,0.2,0.2253,0.67,0,0,0,6,22.3,0,0,0,0,0.243,100,121.13,0.15,975,5.9,89,3 +2013,1,26,12,30,22.1,0.24,0.23770000000000002,0.67,0,0,0,6,22.1,0,0,0,0,0.243,100,128.95,0.15,974,5.9,90,3 +2013,1,26,13,30,22,0.22,0.2353,0.67,0,0,0,9,22,0,0,0,0,0.244,100,133.42000000000002,0.15,973,5.9,90,3.1 +2013,1,26,14,30,21.900000000000002,0.2,0.2371,0.67,0,0,0,6,21.900000000000002,0,0,0,0,0.245,100,133.58,0.15,972,5.800000000000001,88,3.2 +2013,1,26,15,30,21.900000000000002,0.25,0.2712,0.67,0,0,0,6,21.900000000000002,0,0,0,0,0.247,100,129.38,0.15,971,5.800000000000001,85,3.1 +2013,1,26,16,30,22,0.25,0.2619,0.67,0,0,0,6,22,0,0,0,0,0.25,100,121.76,0.15,971,5.7,81,3 +2013,1,26,17,30,22.1,0.26,0.2446,0.67,0,0,0,9,22.1,0,0,0,0,0.252,100,111.87,0.15,971,5.7,81,2.9000000000000004 +2013,1,26,18,30,22.3,0.31,0.24330000000000002,0.67,0,0,0,9,22.3,0,0,0,0,0.253,100,100.55,0.15,971,5.7,85,2.9000000000000004 +2013,1,26,19,30,22.6,0.29,0.2504,0.67,11,3,11,6,22.6,2,0,3,2,0.254,100,88.08,0.15,971,5.800000000000001,88,3 +2013,1,26,20,30,22.900000000000002,0.26,0.2639,0.67,103,287,174,6,22.900000000000002,9,0,0,9,0.254,99.89,75.56,0.15,971,5.9,90,3.3000000000000003 +2013,1,26,21,30,23.3,0.27,0.2525,0.67,151,530,395,8,23.1,19,0,0,19,0.254,99.09,62.51,0.15,971,6,90,3.6 +2013,1,26,22,30,23.6,0.25,0.2296,0.67,172,678,615,6,23.3,49,0,0,49,0.253,98.42,49.25,0.15,970,6.1000000000000005,89,3.9000000000000004 +2013,1,26,23,30,23.8,0.21,0.2472,0.67,200,736,797,6,23.400000000000002,84,14,0,96,0.253,97.69,35.96,0.15,970,6.1000000000000005,88,4 +2013,1,27,0,30,24.1,0.2,0.3256,0.67,252,723,917,8,23.3,72,7,0,78,0.253,95.43,22.93,0.15,970,6.1000000000000005,82,4.4 +2013,1,27,1,30,24.200000000000003,0.19,0.366,0.67,279,717,982,6,23.3,105,19,0,124,0.253,94.48,11.55,0.15,969,6.2,82,4.5 +2013,1,27,2,30,24.200000000000003,0.17,0.332,0.67,263,739,989,6,23.3,128,24,0,151,0.253,94.5,10.98,0.15,968,6.2,83,4.6000000000000005 +2013,1,27,3,30,24.1,0.15,0.3934,0.67,286,677,913,6,23.3,189,31,0,218,0.252,95.5,22.080000000000002,0.15,967,6.2,83,4.7 +2013,1,27,4,30,24.1,0.15,0.45420000000000005,0.67,294,589,777,6,23.400000000000002,115,24,0,134,0.252,95.7,35.07,0.15,966,6.300000000000001,83,4.7 +2013,1,27,5,30,24,0.15,0.4731,0.67,269,493,596,6,23.400000000000002,112,24,0,128,0.252,96.33,48.36,0.15,966,6.300000000000001,82,4.7 +2013,1,27,6,30,23.6,0.15,0.48350000000000004,0.67,219,350,386,6,23.3,90,20,0,99,0.252,98.3,61.64,0.15,965,6.300000000000001,81,4.5 +2013,1,27,7,30,23.200000000000003,0.16,0.46280000000000004,0.67,131,159,173,6,23.200000000000003,41,0,3,41,0.252,99.72,74.72,0.15,966,6.300000000000001,78,4.3 +2013,1,27,8,30,22.900000000000002,0.16,0.399,0.67,11,1,11,6,22.900000000000002,7,0,3,7,0.252,100,87.33,0.15,966,6.300000000000001,74,4.2 +2013,1,27,9,30,22.900000000000002,0.19,0.33630000000000004,0.67,0,0,0,8,22.8,0,0,0,0,0.252,99.18,99.83,0.15,967,6.2,70,4.2 +2013,1,27,10,30,22.900000000000002,0.18,0.3146,0.67,0,0,0,4,22.700000000000003,0,0,0,0,0.253,98.53,111.24000000000001,0.15,967,6.2,68,4.2 +2013,1,27,11,30,22.8,0.17,0.31010000000000004,0.67,0,0,0,4,22.6,0,0,0,0,0.253,98.57000000000001,121.3,0.15,967,6.1000000000000005,68,4.3 +2013,1,27,12,30,22.700000000000003,0.2,0.3044,0.67,0,0,0,4,22.5,0,0,0,0,0.253,98.8,129.16,0.15,967,6.1000000000000005,67,4.3 +2013,1,27,13,30,22.700000000000003,0.21,0.2701,0.67,0,0,0,4,22.5,0,0,0,0,0.253,98.75,133.67000000000002,0.15,966,6,67,4.3 +2013,1,27,14,30,22.8,0.2,0.2574,0.67,0,0,0,4,22.6,0,0,0,0,0.252,98.58,133.85,0.15,965,5.9,67,4.1000000000000005 +2013,1,27,15,30,22.8,0.22,0.3164,0.67,0,0,0,4,22.700000000000003,0,0,0,0,0.252,99.59,129.64000000000001,0.15,965,5.800000000000001,68,4 +2013,1,27,16,30,22.900000000000002,0.21,0.31980000000000003,0.67,0,0,0,3,22.900000000000002,0,0,0,0,0.251,100,121.99000000000001,0.15,965,5.7,67,3.9000000000000004 +2013,1,27,17,30,23,0.21,0.26830000000000004,0.67,0,0,0,3,23,0,0,0,0,0.25,100,112.07000000000001,0.15,965,5.6000000000000005,66,3.9000000000000004 +2013,1,27,18,30,23.1,0.25,0.2656,0.67,0,0,0,3,23.1,0,0,0,0,0.25,100,100.74000000000001,0.15,965,5.5,64,3.9000000000000004 +2013,1,27,19,30,23.400000000000002,0.24,0.2661,0.67,9,2,9,3,23.400000000000002,4,0,3,4,0.25,99.97,88.23,0.15,966,5.4,63,4 +2013,1,27,20,30,24.1,0.22,0.2677,0.67,103,279,172,3,23.8,54,4,3,55,0.251,98.08,75.71000000000001,0.15,966,5.300000000000001,60,4 +2013,1,27,21,30,24.900000000000002,0.22,0.28800000000000003,0.67,163,495,391,1,24.400000000000002,163,495,0,391,0.252,96.89,62.65,0.15,966,5.2,55,4 +2013,1,27,22,30,25.900000000000002,0.2,0.3201,0.67,211,602,603,1,24.900000000000002,211,602,0,603,0.252,94.3,49.39,0.15,967,5.1000000000000005,50,4.1000000000000005 +2013,1,27,23,30,26.400000000000002,0.19,0.33890000000000003,0.67,244,670,785,3,25.1,318,25,0,338,0.253,92.48,36.1,0.15,967,5.1000000000000005,47,4.2 +2013,1,28,0,30,27.3,0.21,0.3294,0.67,254,725,922,3,25.200000000000003,306,28,0,332,0.253,88.44,23.09,0.15,966,5.1000000000000005,45,4.2 +2013,1,28,1,30,27.5,0.23,0.29600000000000004,0.67,244,771,998,3,25.400000000000002,318,29,0,346,0.252,88.54,11.790000000000001,0.15,966,5.2,44,4 +2013,1,28,2,30,27.5,0.25,0.27190000000000003,0.67,231,788,1005,3,25.6,374,26,0,399,0.252,89.59,11.17,0.15,966,5.300000000000001,40,3.7 +2013,1,28,3,30,27.400000000000002,0.33,0.2551,0.67,214,785,941,3,25.700000000000003,548,31,0,577,0.253,90.47,22.16,0.15,965,5.300000000000001,33,3.3000000000000003 +2013,1,28,4,30,27.200000000000003,0.4,0.21960000000000002,0.67,184,775,818,3,25.700000000000003,395,24,0,415,0.254,91.46000000000001,35.12,0.15,965,5.2,22,2.8000000000000003 +2013,1,28,5,30,26.8,0.49,0.18130000000000002,0.67,149,745,643,3,25.6,282,25,0,299,0.255,93.15,48.410000000000004,0.15,965,5,9,2.3000000000000003 +2013,1,28,6,30,26.200000000000003,0.64,0.1464,0.67,111,674,431,3,25.5,224,33,0,239,0.256,95.97,61.690000000000005,0.15,966,4.9,178,2 +2013,1,28,7,30,25.3,0.76,0.1037,0.67,69,534,209,3,25.200000000000003,94,19,3,98,0.256,99.67,74.79,0.15,967,4.800000000000001,350,1.7000000000000002 +2013,1,28,8,30,24.3,0.86,0.07490000000000001,0.67,18,139,24,3,24.3,10,0,3,10,0.257,100,87.41,0.15,968,4.7,344,1.4000000000000001 +2013,1,28,9,30,23.700000000000003,0.9500000000000001,0.0671,0.67,0,0,0,3,23.700000000000003,0,0,0,0,0.256,100,99.93,0.15,969,4.7,341,1.3 +2013,1,28,10,30,23.200000000000003,0.99,0.0636,0.67,0,0,0,3,23.200000000000003,0,0,0,0,0.255,100,111.38,0.15,970,4.6000000000000005,337,1.2000000000000002 +2013,1,28,11,30,22.700000000000003,1.04,0.0585,0.67,0,0,0,3,22.700000000000003,0,0,0,0,0.254,100,121.47,0.15,970,4.5,330,1 +2013,1,28,12,30,22.3,1.11,0.0562,0.67,0,0,0,1,22.3,0,0,0,0,0.253,100,129.37,0.15,970,4.3,324,0.9 +2013,1,28,13,30,21.8,1.1500000000000001,0.052500000000000005,0.67,0,0,0,1,21.8,0,0,0,0,0.251,100,133.92000000000002,0.15,970,4.1000000000000005,320,0.8 +2013,1,28,14,30,21.5,1.19,0.0425,0.67,0,0,0,1,21.5,0,0,0,0,0.251,100,134.11,0.15,970,3.9000000000000004,314,0.7000000000000001 +2013,1,28,15,30,21.1,1.24,0.0369,0.67,0,0,0,0,21.1,0,0,0,0,0.251,100,129.89000000000001,0.15,970,3.7,308,0.7000000000000001 +2013,1,28,16,30,20.8,1.27,0.0357,0.67,0,0,0,0,20.8,0,0,0,0,0.251,100,122.22,0.15,970,3.5,306,0.7000000000000001 +2013,1,28,17,30,20.5,1.28,0.0354,0.67,0,0,0,0,20.5,0,0,0,0,0.251,100,112.28,0.15,970,3.4000000000000004,306,0.7000000000000001 +2013,1,28,18,30,20.5,1.29,0.0367,0.67,0,0,0,0,20.5,0,0,0,0,0.251,100,100.92,0.15,971,3.3000000000000003,305,0.8 +2013,1,28,19,30,21.200000000000003,1.31,0.0381,0.67,13,178,18,1,20.900000000000002,13,178,0,18,0.251,98.4,88.38,0.15,972,3.2,302,1.1 +2013,1,28,20,30,22.8,1.32,0.037700000000000004,0.67,49,653,208,1,21.6,49,653,1,208,0.251,92.77,75.86,0.15,973,3.2,296,1.4000000000000001 +2013,1,28,21,30,24.6,1.34,0.036500000000000005,0.67,66,832,446,1,22.1,66,832,0,446,0.251,85.74,62.79,0.15,973,3.1,286,1.7000000000000002 +2013,1,28,22,30,26.1,1.35,0.036000000000000004,0.67,77,920,673,1,21.900000000000002,77,920,0,673,0.25,77.91,49.52,0.15,974,3.1,277,2 +2013,1,28,23,30,26.700000000000003,1.34,0.0358,0.67,84,968,865,0,22,84,968,0,865,0.25,75.47,36.24,0.15,974,3.1,273,2.1 +2013,1,29,0,30,28,0.75,0.056400000000000006,0.67,103,978,1001,1,22.3,103,978,0,1001,0.249,71.02,23.25,0.15,973,3,265,2.1 +2013,1,29,1,30,28.700000000000003,0.6900000000000001,0.0601,0.67,109,990,1077,0,22.5,109,990,0,1077,0.248,69.28,12.02,0.15,973,2.9000000000000004,260,2.1 +2013,1,29,2,30,29,0.65,0.061700000000000005,0.67,110,990,1081,0,22.6,110,990,0,1081,0.249,68.51,11.370000000000001,0.15,972,2.8000000000000003,255,2.1 +2013,1,29,3,30,29.200000000000003,0.61,0.0644,0.67,110,975,1012,0,22.8,110,975,0,1012,0.25,68.34,22.25,0.15,972,2.8000000000000003,249,2 +2013,1,29,4,30,29.1,0.6,0.0673,0.67,105,941,875,0,23,105,941,0,875,0.251,69.59,35.18,0.15,972,2.9000000000000004,244,1.8 +2013,1,29,5,30,28.8,0.62,0.06860000000000001,0.67,96,886,684,0,23.3,96,886,0,684,0.253,72.33,48.47,0.15,972,3,240,1.5 +2013,1,29,6,30,28.1,0.67,0.0663,0.67,81,795,458,0,24,81,795,0,458,0.254,78.53,61.75,0.15,973,3.1,239,1.1 +2013,1,29,7,30,26.900000000000002,0.72,0.0632,0.67,59,619,220,0,24.5,59,619,0,220,0.256,86.65,74.86,0.15,973,3.1,244,0.7000000000000001 +2013,1,29,8,30,25.6,0.77,0.0584,0.67,18,169,25,0,24.3,18,169,0,25,0.256,92.55,87.49,0.15,974,3.1,258,0.6000000000000001 +2013,1,29,9,30,24.5,0.8300000000000001,0.0531,0.67,0,0,0,0,23.700000000000003,0,0,0,0,0.256,95.23,100.04,0.15,975,3.1,268,0.6000000000000001 +2013,1,29,10,30,23.700000000000003,0.88,0.0489,0.67,0,0,0,0,23.3,0,0,0,0,0.256,97.73,111.52,0.15,976,3.1,268,0.6000000000000001 +2013,1,29,11,30,23,0.92,0.0471,0.67,0,0,0,0,23,0,0,0,0,0.256,99.72,121.65,0.15,976,3.1,266,0.6000000000000001 +2013,1,29,12,30,22.5,0.9500000000000001,0.0463,0.67,0,0,0,0,22.5,0,0,0,0,0.255,100,129.59,0.15,976,3.1,261,0.6000000000000001 +2013,1,29,13,30,22,0.97,0.0458,0.67,0,0,0,0,22,0,0,0,0,0.255,100,134.18,0.15,976,3.1,254,0.5 +2013,1,29,14,30,21.5,0.99,0.044700000000000004,0.67,0,0,0,0,21.5,0,0,0,0,0.256,100,134.39000000000001,0.15,975,3.1,242,0.5 +2013,1,29,15,30,21.200000000000003,1.01,0.0441,0.67,0,0,0,0,21.200000000000003,0,0,0,0,0.257,100,130.15,0.15,975,3.1,227,0.5 +2013,1,29,16,30,20.900000000000002,1.03,0.0429,0.67,0,0,0,0,20.900000000000002,0,0,0,0,0.258,100,122.46000000000001,0.15,975,3.1,214,0.5 +2013,1,29,17,30,20.700000000000003,1.05,0.041800000000000004,0.67,0,0,0,0,20.700000000000003,0,0,0,0,0.259,100,112.48,0.15,976,3.2,204,0.5 +2013,1,29,18,30,20.8,1.06,0.0412,0.67,0,0,0,0,20.8,0,0,0,0,0.26,99.86,101.10000000000001,0.15,976,3.3000000000000003,196,0.6000000000000001 +2013,1,29,19,30,21.8,1.07,0.041,0.67,12,151,16,0,20.900000000000002,12,151,0,16,0.261,94.68,88.53,0.15,977,3.3000000000000003,189,0.9 +2013,1,29,20,30,23.700000000000003,1.07,0.0415,0.67,49,634,203,1,21.6,49,634,0,203,0.261,88.21000000000001,76.01,0.15,978,3.4000000000000004,172,1.4000000000000001 +2013,1,29,21,30,25.700000000000003,1.09,0.0427,0.67,68,814,439,1,23.1,68,814,0,439,0.261,85.58,62.93,0.15,978,3.4000000000000004,155,1.8 +2013,1,29,22,30,27,1.1300000000000001,0.041100000000000005,0.67,79,904,664,0,23.8,79,904,0,664,0.261,82.88,49.660000000000004,0.15,979,3.5,148,2.1 +2013,1,29,23,30,27.5,1.1300000000000001,0.040600000000000004,0.67,86,954,855,1,24,86,954,0,855,0.261,81.24,36.38,0.15,979,3.5,145,2.2 +2013,1,30,0,30,28.3,0.54,0.08990000000000001,0.67,124,933,980,1,24.200000000000003,124,933,0,980,0.261,78.28,23.42,0.15,978,3.7,134,2.2 +2013,1,30,1,30,28.6,0.54,0.0951,0.67,130,941,1050,1,24.200000000000003,130,941,0,1050,0.261,76.98,12.27,0.15,978,3.9000000000000004,129,2.2 +2013,1,30,2,30,28.5,0.52,0.10600000000000001,0.67,136,930,1048,3,24,667,73,0,738,0.261,76.71000000000001,11.58,0.15,978,4.1000000000000005,125,2.2 +2013,1,30,3,30,28.1,0.46,0.1439,0.67,155,881,969,1,23.900000000000002,155,881,0,969,0.262,77.93,22.35,0.15,978,4.3,123,2.3000000000000003 +2013,1,30,4,30,27.3,0.44,0.18380000000000002,0.67,167,809,827,1,23.900000000000002,167,809,0,827,0.262,81.7,35.25,0.15,978,4.5,122,2.4000000000000004 +2013,1,30,5,30,26.200000000000003,0.39,0.22340000000000002,0.67,169,702,634,1,24,169,702,0,634,0.262,87.55,48.53,0.15,978,4.7,122,2.5 +2013,1,30,6,30,25,0.4,0.2771,0.67,159,528,408,1,23.900000000000002,159,528,0,408,0.262,93.51,61.82,0.15,979,4.800000000000001,124,2.4000000000000004 +2013,1,30,7,30,23.900000000000002,0.36,0.26630000000000004,0.67,106,310,186,1,23.6,106,310,0,186,0.262,98.2,74.94,0.15,979,4.800000000000001,127,2.2 +2013,1,30,8,30,23.1,0.35000000000000003,0.1882,0.67,17,20,18,1,23.1,17,20,0,18,0.262,100,87.58,0.15,980,4.800000000000001,128,2 +2013,1,30,9,30,22.6,0.43,0.1403,0.67,0,0,0,0,22.6,0,0,0,0,0.262,100,100.16,0.15,981,4.6000000000000005,127,1.6 +2013,1,30,10,30,22.200000000000003,0.47000000000000003,0.11510000000000001,0.67,0,0,0,0,22.200000000000003,0,0,0,0,0.261,100,111.67,0.15,981,4.4,126,1.1 +2013,1,30,11,30,21.900000000000002,0.48,0.1046,0.67,0,0,0,0,21.900000000000002,0,0,0,0,0.261,100,121.83,0.15,981,4.3,127,0.8 +2013,1,30,12,30,21.700000000000003,0.54,0.1053,0.67,0,0,0,3,21.700000000000003,0,0,0,0,0.26,100,129.82,0.15,981,4.2,127,0.6000000000000001 +2013,1,30,13,30,21.5,0.56,0.09960000000000001,0.67,0,0,0,3,21.5,0,0,0,0,0.26,100,134.44,0.15,980,4,125,0.5 +2013,1,30,14,30,21.400000000000002,0.54,0.0925,0.67,0,0,0,3,21.400000000000002,0,0,0,0,0.26,100,134.66,0.15,980,4,121,0.5 +2013,1,30,15,30,21.3,0.58,0.1027,0.67,0,0,0,3,21.3,0,0,0,0,0.26,100,130.42000000000002,0.15,979,3.9000000000000004,118,0.6000000000000001 +2013,1,30,16,30,21.200000000000003,0.58,0.10650000000000001,0.67,0,0,0,1,21.200000000000003,0,0,0,0,0.26,100,122.7,0.15,980,3.9000000000000004,112,0.6000000000000001 +2013,1,30,17,30,21.1,0.53,0.09960000000000001,0.67,0,0,0,3,21.1,0,0,0,0,0.261,100,112.69,0.15,980,3.9000000000000004,108,0.5 +2013,1,30,18,30,21.1,0.5700000000000001,0.1053,0.67,0,0,0,1,21.1,0,0,0,0,0.261,100,101.29,0.15,981,3.8000000000000003,104,0.6000000000000001 +2013,1,30,19,30,21.700000000000003,0.56,0.1061,0.67,12,33,13,1,21.3,12,33,0,13,0.261,97.72,88.68,0.15,981,3.8000000000000003,98,0.9 +2013,1,30,20,30,22.700000000000003,0.51,0.0956,0.67,65,513,188,1,21.900000000000002,65,513,0,188,0.261,95.16,76.16,0.15,982,3.8000000000000003,87,1.3 +2013,1,30,21,30,23.8,0.5700000000000001,0.081,0.67,86,748,425,1,22.200000000000003,86,748,0,425,0.261,90.64,63.07,0.15,981,3.7,75,1.4000000000000001 +2013,1,30,22,30,24.900000000000002,0.62,0.0781,0.67,100,855,651,1,22,100,855,0,651,0.261,84.03,49.79,0.15,981,3.7,69,1.4000000000000001 +2013,1,30,23,30,25.5,0.64,0.0717,0.67,106,918,844,3,22,298,26,0,318,0.261,81.01,36.52,0.15,981,3.7,68,1.4000000000000001 +2013,1,31,0,30,26.8,0.41000000000000003,0.1254,0.67,145,898,968,1,22.200000000000003,145,898,0,968,0.259,75.87,23.580000000000002,0.15,980,3.8000000000000003,71,1.5 +2013,1,31,1,30,27.400000000000002,0.45,0.11860000000000001,0.67,145,921,1044,3,22.3,130,24,0,154,0.259,73.76,12.51,0.15,980,3.8000000000000003,73,1.5 +2013,1,31,2,30,27.5,0.46,0.1136,0.67,142,925,1047,3,22.3,366,26,0,392,0.258,73.36,11.8,0.15,979,3.9000000000000004,73,1.6 +2013,1,31,3,30,27.400000000000002,0.67,0.0828,0.67,119,938,986,1,22.3,119,938,0,986,0.258,73.61,22.46,0.15,978,4,74,1.7000000000000002 +2013,1,31,4,30,26.900000000000002,0.6900000000000001,0.0849,0.67,113,906,852,1,22.3,113,906,0,852,0.259,75.78,35.33,0.15,978,4,73,1.8 +2013,1,31,5,30,26.1,0.68,0.0819,0.67,102,853,666,1,22.200000000000003,102,853,0,666,0.26,79.25,48.6,0.15,978,4.1000000000000005,72,2 +2013,1,31,6,30,25,0.76,0.09960000000000001,0.67,93,736,440,1,22,93,736,0,440,0.261,83.58,61.89,0.15,978,4.1000000000000005,69,1.9000000000000001 +2013,1,31,7,30,23.700000000000003,0.8,0.1078,0.67,69,529,206,1,21.700000000000003,69,529,0,206,0.262,88.57000000000001,75.02,0.15,978,4.1000000000000005,67,1.5 +2013,1,31,8,30,22.6,0.8,0.09910000000000001,0.67,18,94,21,1,21.400000000000002,18,94,0,21,0.262,93.15,87.67,0.15,979,4,63,1.2000000000000002 +2013,1,31,9,30,21.900000000000002,0.8200000000000001,0.09860000000000001,0.67,0,0,0,0,21,0,0,0,0,0.262,94.53,100.28,0.15,979,3.9000000000000004,58,1 +2013,1,31,10,30,21.3,0.8200000000000001,0.0906,0.67,0,0,0,0,20.700000000000003,0,0,0,0,0.262,96.12,111.82000000000001,0.15,980,3.9000000000000004,52,0.8 +2013,1,31,11,30,20.900000000000002,0.81,0.0804,0.67,0,0,0,0,20.3,0,0,0,0,0.261,96.54,122.02,0.15,979,3.8000000000000003,46,0.7000000000000001 +2013,1,31,12,30,20.5,0.79,0.07440000000000001,0.67,0,0,0,0,20.1,0,0,0,0,0.26,97.53,130.05,0.15,979,3.7,41,0.6000000000000001 +2013,1,31,13,30,20.200000000000003,0.76,0.0711,0.67,0,0,0,1,19.900000000000002,0,0,0,0,0.26,98,134.71,0.15,978,3.6,36,0.6000000000000001 +2013,1,31,14,30,19.900000000000002,0.74,0.0688,0.67,0,0,0,0,19.700000000000003,0,0,0,0,0.259,98.79,134.94,0.15,978,3.5,32,0.6000000000000001 +2013,1,31,15,30,19.700000000000003,0.73,0.0688,0.67,0,0,0,1,19.5,0,0,0,0,0.259,99.04,130.68,0.15,977,3.5,29,0.5 +2013,1,31,16,30,19.5,0.7000000000000001,0.0699,0.67,0,0,0,3,19.5,0,0,0,0,0.259,99.7,122.93,0.15,977,3.5,24,0.5 +2013,1,31,17,30,19.3,0.68,0.07050000000000001,0.67,0,0,0,1,19.3,0,0,0,0,0.26,100,112.9,0.15,977,3.4000000000000004,16,0.6000000000000001 +2013,1,31,18,30,19.400000000000002,0.68,0.0728,0.67,0,0,0,3,19.3,0,0,0,0,0.26,99.52,101.47,0.15,978,3.4000000000000004,6,0.6000000000000001 +2013,1,31,19,30,20.3,0.6900000000000001,0.07400000000000001,0.67,12,60,13,1,19.5,12,60,0,13,0.259,94.89,88.83,0.15,978,3.4000000000000004,179,0.8 +2013,1,31,20,30,21.8,0.71,0.0729,0.67,58,563,191,1,19.900000000000002,58,563,0,191,0.259,88.84,76.3,0.15,978,3.4000000000000004,357,1 +2013,1,31,21,30,23.3,0.76,0.0709,0.67,81,769,427,1,20.1,81,769,0,427,0.26,82.09,63.2,0.15,978,3.4000000000000004,357,1.1 +2013,1,31,22,30,24.6,0.8300000000000001,0.0683,0.67,93,871,654,1,20.400000000000002,93,871,0,654,0.26,77.51,49.93,0.15,978,3.5,355,1.1 +2013,1,31,23,30,25.200000000000003,0.88,0.0655,0.67,101,929,846,1,20.900000000000002,101,929,0,846,0.26,76.99,36.660000000000004,0.15,978,3.5,355,1.1 +2016,2,1,0,30,32.5,0.55,0.12050000000000001,0.7000000000000001,137,893,955,7,21.8,453,305,33,732,0.274,53.24,23.62,0.13,982,4.800000000000001,301,2.6 +2016,2,1,1,30,33.2,0.55,0.11910000000000001,0.7000000000000001,140,912,1030,7,21.200000000000003,392,504,0,884,0.273,49.53,12.58,0.13,982,4.7,301,2.7 +2016,2,1,2,30,33.800000000000004,0.54,0.1183,0.7000000000000001,138,918,1036,0,20.700000000000003,224,780,33,987,0.272,46.27,11.870000000000001,0.13,981,4.4,300,2.8000000000000003 +2016,2,1,3,30,34.1,0.54,0.1081,0.7000000000000001,130,914,974,0,20,130,914,0,974,0.272,43.71,22.5,0.13,980,4.1000000000000005,300,2.7 +2016,2,1,4,30,34.2,0.52,0.10360000000000001,0.7000000000000001,120,891,847,0,19.3,191,730,8,786,0.273,41.7,35.36,0.13,979,3.8000000000000003,299,2.6 +2016,2,1,5,30,33.9,0.5,0.0926,0.7000000000000001,105,849,666,0,18.7,116,821,0,659,0.273,40.63,48.63,0.13,978,3.4000000000000004,297,2.3000000000000003 +2016,2,1,6,30,32.800000000000004,0.5,0.0834,0.7000000000000001,86,763,445,0,18.6,86,763,0,445,0.274,43,61.92,0.13,979,3.2,296,1.7000000000000002 +2016,2,1,7,30,30.5,0.52,0.07970000000000001,0.7000000000000001,63,574,211,0,20,63,574,0,211,0.276,53.54,75.05,0.13,979,3.1,294,1 +2016,2,1,8,30,28.3,0.54,0.0804,0.7000000000000001,17,106,21,0,21.6,17,106,0,21,0.278,66.91,87.71000000000001,0.13,980,3,289,0.8 +2016,2,1,9,30,27,0.56,0.0829,0.7000000000000001,0,0,0,0,21.5,0,0,0,0,0.279,71.94,100.32000000000001,0.13,981,3,284,0.8 +2016,2,1,10,30,26,0.58,0.0848,0.7000000000000001,0,0,0,0,21.400000000000002,0,0,0,0,0.279,75.64,111.86,0.13,982,2.9000000000000004,287,0.8 +2016,2,1,11,30,25.1,0.59,0.0863,0.7000000000000001,0,0,0,0,21.3,0,0,0,0,0.279,79.46000000000001,122.08,0.13,982,2.9000000000000004,297,0.9 +2016,2,1,12,30,24.400000000000002,0.61,0.0877,0.7000000000000001,0,0,0,0,21.3,0,0,0,0,0.279,82.73,130.11,0.13,982,2.9000000000000004,306,0.9 +2016,2,1,13,30,23.900000000000002,0.63,0.0892,0.7000000000000001,0,0,0,0,21.5,0,0,0,0,0.279,86.27,134.78,0.13,981,2.9000000000000004,310,0.9 +2016,2,1,14,30,23.5,0.64,0.0912,0.7000000000000001,0,0,0,0,21.900000000000002,0,0,33,0,0.279,90.87,135.01,0.13,981,2.9000000000000004,307,0.9 +2016,2,1,15,30,23.200000000000003,0.65,0.0925,0.7000000000000001,0,0,0,0,22.3,0,0,0,0,0.279,94.68,130.74,0.13,981,2.9000000000000004,301,0.8 +2016,2,1,16,30,22.900000000000002,0.65,0.0927,0.7000000000000001,0,0,0,0,22.400000000000002,0,0,0,0,0.279,97.27,122.99000000000001,0.13,981,2.8000000000000003,297,0.8 +2016,2,1,17,30,22.6,0.64,0.0936,0.7000000000000001,0,0,0,0,22.5,0,0,0,0,0.279,99.36,112.94,0.13,981,2.7,295,0.8 +2016,2,1,18,30,22.700000000000003,0.63,0.09480000000000001,0.7000000000000001,0,0,0,0,22.5,0,0,0,0,0.277,98.86,101.51,0.13,981,2.7,294,0.8 +2016,2,1,19,30,23.8,0.61,0.0961,0.7000000000000001,13,56,14,0,22.8,13,56,0,14,0.275,94.06,88.86,0.13,982,2.7,293,1.2000000000000002 +2016,2,1,20,30,25.900000000000002,0.6,0.0975,0.7000000000000001,65,523,189,0,23.6,65,523,0,189,0.274,86.92,76.33,0.13,982,2.7,294,1.8 +2016,2,1,21,30,28.700000000000003,0.58,0.0965,0.7000000000000001,91,740,424,7,24,157,447,0,358,0.272,75.62,63.230000000000004,0.13,982,2.8000000000000003,294,2 +2016,2,1,22,30,31.6,0.56,0.09480000000000001,0.7000000000000001,107,846,651,0,22.8,121,806,0,640,0.271,59.64,49.95,0.13,982,2.9000000000000004,294,2.2 +2016,2,1,23,30,32.9,0.55,0.096,0.7000000000000001,117,905,843,7,20.900000000000002,308,531,0,734,0.27,49.35,36.69,0.13,982,2.9000000000000004,293,2.3000000000000003 +2016,2,2,0,30,35.300000000000004,0.53,0.1039,0.7000000000000001,130,922,974,6,19.6,368,29,0,395,0.267,39.800000000000004,23.79,0.13,981,3.3000000000000003,288,2.7 +2016,2,2,1,30,36.2,0.53,0.1134,0.7000000000000001,140,924,1041,6,18.6,231,12,0,243,0.265,35.72,12.83,0.13,980,3.7,281,2.8000000000000003 +2016,2,2,2,30,36.6,0.51,0.12710000000000002,0.7000000000000001,149,908,1037,6,18,368,28,33,395,0.262,33.59,12.1,0.13,979,4,275,2.9000000000000004 +2016,2,2,3,30,36.5,0.5,0.1441,0.7000000000000001,156,873,962,6,17.5,332,22,0,352,0.259,32.81,22.62,0.13,978,4.3,269,2.9000000000000004 +2016,2,2,4,30,35.6,0.49,0.1699,0.7000000000000001,159,815,823,6,17.400000000000002,327,33,0,354,0.257,34.2,35.44,0.13,978,4.6000000000000005,266,2.7 +2016,2,2,5,30,34,0.48,0.18430000000000002,0.7000000000000001,148,738,635,6,17.900000000000002,197,22,0,212,0.255,38.57,48.7,0.13,978,4.800000000000001,269,2.3000000000000003 +2016,2,2,6,30,32,0.48,0.18510000000000001,0.7000000000000001,125,620,416,6,19.200000000000003,151,27,0,164,0.254,46.81,62,0.13,978,5,279,1.8 +2016,2,2,7,30,30,0.47000000000000003,0.17880000000000001,0.7000000000000001,86,404,190,6,21,22,0,67,22,0.254,58.74,75.14,0.13,979,5.2,282,1.4000000000000001 +2016,2,2,8,30,28.400000000000002,0.47000000000000003,0.1762,0.7000000000000001,16,34,17,7,22,4,0,67,4,0.254,68.34,87.81,0.13,980,5.4,270,1.3 +2016,2,2,9,30,27.200000000000003,0.45,0.1704,0.7000000000000001,0,0,0,7,22.5,0,0,0,0,0.254,75.45,100.45,0.13,981,5.6000000000000005,250,1.1 +2016,2,2,10,30,26.1,0.46,0.15990000000000001,0.7000000000000001,0,0,0,7,22.8,0,0,0,0,0.255,81.88,112.02,0.13,982,5.7,236,0.9 +2016,2,2,11,30,25,0.49,0.1554,0.7000000000000001,0,0,0,7,22.8,0,0,0,0,0.255,87.69,122.27,0.13,982,5.9,219,0.7000000000000001 +2016,2,2,12,30,24.200000000000003,0.54,0.1575,0.7000000000000001,0,0,0,7,22.700000000000003,0,0,0,0,0.256,91.43,130.35,0.13,981,5.9,194,0.5 +2016,2,2,13,30,23.700000000000003,0.56,0.1531,0.7000000000000001,0,0,0,7,22.700000000000003,0,0,0,0,0.256,94.06,135.05,0.13,981,5.9,159,0.5 +2016,2,2,14,30,23.200000000000003,0.5700000000000001,0.1492,0.7000000000000001,0,0,0,6,22.6,0,0,33,0,0.256,96.5,135.3,0.13,980,5.9,128,0.8 +2016,2,2,15,30,22.8,0.61,0.1421,0.7000000000000001,0,0,0,7,22.5,0,0,0,0,0.257,98.15,131.02,0.13,980,6,120,1.1 +2016,2,2,16,30,22.6,0.64,0.12840000000000001,0.7000000000000001,0,0,0,4,22.3,0,0,0,0,0.258,98.19,123.23,0.13,979,6.1000000000000005,114,1.2000000000000002 +2016,2,2,17,30,22.5,0.65,0.11510000000000001,0.7000000000000001,0,0,0,3,22.200000000000003,0,0,0,0,0.259,98.10000000000001,113.16,0.13,979,6.2,104,1.1 +2016,2,2,18,30,22.6,0.74,0.11380000000000001,0.7000000000000001,0,0,0,3,22.200000000000003,0,0,0,0,0.259,97.52,101.69,0.13,979,6.4,101,1 +2016,2,2,19,30,23,0.75,0.1042,0.7000000000000001,8,39,9,3,22.400000000000002,4,9,50,4,0.26,96.32000000000001,89,0.13,979,6.5,107,1.1 +2016,2,2,20,30,23.8,0.73,0.0964,0.7000000000000001,65,472,175,0,22.700000000000003,71,296,25,140,0.263,93.75,76.48,0.13,979,6.5,117,1.3 +2016,2,2,21,30,24.8,0.89,0.1449,0.7000000000000001,106,650,397,0,23.200000000000003,106,650,0,397,0.266,90.68,63.370000000000005,0.13,979,6.1000000000000005,128,1.3 +2016,2,2,22,30,26.5,0.91,0.15960000000000002,0.7000000000000001,130,761,618,0,23.5,173,603,0,560,0.268,83.58,50.09,0.13,979,5.5,141,1.3 +2016,2,2,23,30,27.5,0.89,0.15510000000000002,0.7000000000000001,143,831,808,0,23.400000000000002,143,831,0,808,0.269,78.55,36.83,0.13,979,5.1000000000000005,147,1.3 +2016,2,3,0,30,30.8,0.88,0.1129,0.7000000000000001,128,906,956,3,23.1,358,29,0,385,0.269,63.57,23.96,0.13,979,4.7,152,1.4000000000000001 +2016,2,3,1,30,32.1,0.85,0.1086,0.7000000000000001,131,922,1029,3,22.700000000000003,412,81,0,491,0.268,57.79,13.08,0.13,978,4.800000000000001,163,1.4000000000000001 +2016,2,3,2,30,32.7,0.81,0.1092,0.7000000000000001,134,917,1030,3,22.3,503,204,33,702,0.267,54.52,12.34,0.13,978,5,169,1.4000000000000001 +2016,2,3,3,30,32.7,0.76,0.1231,0.7000000000000001,138,890,959,3,22.200000000000003,408,119,17,518,0.266,53.96,22.740000000000002,0.13,977,5.1000000000000005,163,1.2000000000000002 +2016,2,3,4,30,32.4,0.7000000000000001,0.1365,0.7000000000000001,137,845,825,7,22.200000000000003,373,146,0,492,0.266,54.93,35.53,0.13,977,5.2,143,1 +2016,2,3,5,30,31.6,0.65,0.1453,0.7000000000000001,131,770,638,7,22.3,279,240,0,437,0.265,57.81,48.78,0.13,977,5.4,107,0.9 +2016,2,3,6,30,30.3,0.63,0.1584,0.7000000000000001,114,644,416,7,22.700000000000003,176,397,0,362,0.265,63.71,62.08,0.13,977,5.6000000000000005,72,1.1 +2016,2,3,7,30,28.400000000000002,0.61,0.16740000000000002,0.7000000000000001,83,414,189,7,23.5,99,177,67,144,0.264,74.63,75.23,0.13,978,5.9,54,1.3 +2016,2,3,8,30,26.5,0.59,0.18000000000000002,0.7000000000000001,15,34,16,6,24.200000000000003,13,19,67,14,0.262,87.04,87.91,0.13,979,6.1000000000000005,48,1.4000000000000001 +2016,2,3,9,30,25.5,0.5700000000000001,0.201,0.7000000000000001,0,0,0,6,24.3,0,0,0,0,0.261,93.37,100.58,0.13,980,6.300000000000001,50,1.4000000000000001 +2016,2,3,10,30,25,0.54,0.223,0.7000000000000001,0,0,0,7,24.5,0,0,0,0,0.26,96.8,112.19,0.13,980,6.6000000000000005,61,1.2000000000000002 +2016,2,3,11,30,24.8,0.49,0.2457,0.7000000000000001,0,0,0,7,24.5,0,0,0,0,0.259,98.47,122.47,0.13,980,6.800000000000001,86,1 +2016,2,3,12,30,24.700000000000003,0.52,0.2992,0.7000000000000001,0,0,0,7,24.5,0,0,0,0,0.258,98.96000000000001,130.59,0.13,979,6.800000000000001,110,1 +2016,2,3,13,30,24.5,0.55,0.3034,0.7000000000000001,0,0,0,7,24.400000000000002,0,0,0,0,0.257,99.31,135.33,0.13,979,6.6000000000000005,116,1.1 +2016,2,3,14,30,24.1,0.56,0.2579,0.7000000000000001,0,0,0,7,24.1,0,0,33,0,0.257,100,135.59,0.13,979,6.4,107,1.2000000000000002 +2016,2,3,15,30,23.8,0.64,0.254,0.7000000000000001,0,0,0,7,23.8,0,0,0,0,0.257,100,131.29,0.13,979,6.1000000000000005,96,1.1 +2016,2,3,16,30,23.5,0.68,0.2376,0.7000000000000001,0,0,0,7,23.5,0,0,0,0,0.257,99.94,123.47,0.13,979,6,90,1.1 +2016,2,3,17,30,23.3,0.67,0.2129,0.7000000000000001,0,0,0,0,23.200000000000003,0,0,25,0,0.256,99.51,113.37,0.13,980,5.9,90,0.9 +2016,2,3,18,30,23.1,0.6900000000000001,0.19840000000000002,0.7000000000000001,0,0,0,0,23,0,0,33,0,0.256,99.15,101.87,0.13,980,5.800000000000001,97,0.9 +2016,2,3,19,30,23.400000000000002,0.67,0.1779,0.7000000000000001,8,18,8,3,22.8,2,0,33,2,0.255,96.60000000000001,89.15,0.13,981,5.800000000000001,109,1.1 +2016,2,3,20,30,24,0.66,0.15560000000000002,0.7000000000000001,74,408,168,2,23,47,0,75,47,0.255,93.97,76.63,0.13,981,5.800000000000001,114,1.4000000000000001 +2016,2,3,21,30,24.900000000000002,0.67,0.1456,0.7000000000000001,106,648,395,3,23,63,0,0,63,0.255,89.07000000000001,63.51,0.13,982,5.7,114,1.7000000000000002 +2016,2,3,22,30,26.400000000000002,0.6900000000000001,0.1421,0.7000000000000001,124,770,617,3,22.700000000000003,58,0,33,58,0.255,80.28,50.22,0.13,982,5.5,114,2 +2016,2,3,23,30,27.200000000000003,0.7000000000000001,0.1384,0.7000000000000001,136,839,806,3,22.200000000000003,228,94,0,303,0.255,74.09,36.97,0.13,982,5.4,114,2.2 +2016,2,4,0,30,29.200000000000003,0.73,0.1428,0.7000000000000001,146,877,946,3,21.700000000000003,193,8,0,200,0.254,64.14,24.13,0.13,981,5.1000000000000005,116,2.4000000000000004 +2016,2,4,1,30,29.900000000000002,0.74,0.1328,0.7000000000000001,142,904,1022,4,21.6,94,0,0,94,0.253,60.95,13.34,0.13,981,5.1000000000000005,119,2.6 +2016,2,4,2,30,29.900000000000002,0.73,0.11720000000000001,0.7000000000000001,138,912,1028,4,21.400000000000002,86,0,33,86,0.252,60.38,12.58,0.13,981,5.1000000000000005,119,2.8000000000000003 +2016,2,4,3,30,29.3,0.75,0.1177,0.7000000000000001,134,897,960,3,21.200000000000003,84,0,33,84,0.251,61.57,22.87,0.13,981,5.2,116,2.9000000000000004 +2016,2,4,4,30,28.3,0.74,0.1153,0.7000000000000001,125,867,830,3,21,293,23,0,312,0.25,64.44,35.63,0.13,981,5.2,111,3.1 +2016,2,4,5,30,27.200000000000003,0.67,0.1067,0.7000000000000001,111,813,646,3,20.8,110,0,0,110,0.249,67.94,48.870000000000005,0.13,981,5.300000000000001,107,3.1 +2016,2,4,6,30,25.8,0.63,0.1062,0.7000000000000001,95,708,426,7,20.5,29,0,0,29,0.249,72.69,62.17,0.13,982,5.300000000000001,105,2.9000000000000004 +2016,2,4,7,30,24.400000000000002,0.56,0.1072,0.7000000000000001,70,499,196,7,20.400000000000002,99,172,67,143,0.25,78.38,75.33,0.13,983,5.300000000000001,103,2.4000000000000004 +2016,2,4,8,30,23.200000000000003,0.48,0.10650000000000001,0.7000000000000001,16,64,18,8,20.5,11,14,67,11,0.25,85.03,88.02,0.13,984,5.300000000000001,104,2 +2016,2,4,9,30,22.5,0.47000000000000003,0.10790000000000001,0.7000000000000001,0,0,0,4,20.700000000000003,0,0,0,0,0.251,89.43,100.72,0.13,984,5.2,109,1.8 +2016,2,4,10,30,22.1,0.46,0.10690000000000001,0.7000000000000001,0,0,0,4,20.700000000000003,0,0,0,0,0.252,92.06,112.36,0.13,985,5.2,117,1.6 +2016,2,4,11,30,21.8,0.45,0.1101,0.7000000000000001,0,0,0,8,20.8,0,0,0,0,0.252,94.10000000000001,122.68,0.13,985,5.2,126,1.5 +2016,2,4,12,30,21.6,0.47000000000000003,0.1164,0.7000000000000001,0,0,0,4,20.8,0,0,33,0,0.252,95.43,130.84,0.13,984,5.1000000000000005,133,1.4000000000000001 +2016,2,4,13,30,21.400000000000002,0.46,0.114,0.7000000000000001,0,0,0,4,20.900000000000002,0,0,0,0,0.252,96.72,135.62,0.13,984,5.1000000000000005,138,1.4000000000000001 +2016,2,4,14,30,21.3,0.44,0.1121,0.7000000000000001,0,0,0,4,20.8,0,0,33,0,0.252,97.19,135.89000000000001,0.13,983,5.1000000000000005,140,1.4000000000000001 +2016,2,4,15,30,21.3,0.47000000000000003,0.1177,0.7000000000000001,0,0,0,4,20.8,0,0,0,0,0.253,97.04,131.57,0.13,983,5.1000000000000005,141,1.4000000000000001 +2016,2,4,16,30,21.200000000000003,0.45,0.1115,0.7000000000000001,0,0,0,4,20.8,0,0,0,0,0.254,97.34,123.71000000000001,0.13,983,5.1000000000000005,142,1.4000000000000001 +2016,2,4,17,30,21.1,0.42,0.10550000000000001,0.7000000000000001,0,0,0,4,20.700000000000003,0,0,0,0,0.256,97.60000000000001,113.58,0.13,983,5.1000000000000005,142,1.4000000000000001 +2016,2,4,18,30,21.1,0.48,0.1086,0.7000000000000001,0,0,0,4,20.700000000000003,0,0,0,0,0.257,97.32000000000001,102.06,0.13,983,5.1000000000000005,142,1.5 +2016,2,4,19,30,21.3,0.49,0.10300000000000001,0.7000000000000001,8,32,8,4,20.700000000000003,1,0,33,1,0.257,96.16,89.29,0.13,984,5.1000000000000005,143,1.8 +2016,2,4,20,30,22.1,0.47000000000000003,0.09140000000000001,0.7000000000000001,62,493,175,4,20.900000000000002,12,0,67,12,0.258,92.76,76.77,0.13,984,5.1000000000000005,143,2.3000000000000003 +2016,2,4,21,30,23.200000000000003,0.51,0.0814,0.7000000000000001,84,724,405,4,21,81,0,0,81,0.257,87.24,63.65,0.13,985,5.1000000000000005,140,2.7 +2016,2,4,22,30,24.6,0.51,0.0796,0.7000000000000001,98,830,628,4,20.6,192,9,0,198,0.257,78.47,50.36,0.13,985,5.1000000000000005,136,3 +2016,2,4,23,30,25.400000000000002,0.48,0.0823,0.7000000000000001,110,886,817,4,20.1,243,18,0,257,0.257,72.32000000000001,37.11,0.13,985,5.1000000000000005,134,3.1 +2016,2,5,0,30,27,0.43,0.095,0.7000000000000001,128,903,951,8,19.700000000000003,250,13,33,262,0.257,64.17,24.310000000000002,0.13,985,5.1000000000000005,129,3.3000000000000003 +2016,2,5,1,30,27.8,0.37,0.1091,0.7000000000000001,139,907,1021,4,19.400000000000002,185,8,0,193,0.257,60.410000000000004,13.6,0.13,984,5.1000000000000005,127,3.5 +2016,2,5,2,30,28.1,0.3,0.1233,0.7000000000000001,148,896,1022,4,19.3,204,10,33,214,0.257,59.050000000000004,12.83,0.13,983,5.1000000000000005,125,3.7 +2016,2,5,3,30,28.1,0.27,0.13440000000000002,0.7000000000000001,150,874,954,8,19.3,217,12,0,228,0.257,58.95,23.02,0.13,983,5,125,3.8000000000000003 +2016,2,5,4,30,27.6,0.25,0.13240000000000002,0.7000000000000001,140,842,824,4,19.3,237,24,0,256,0.258,60.71,35.730000000000004,0.13,983,5,126,3.9000000000000004 +2016,2,5,5,30,26.8,0.26,0.1242,0.7000000000000001,124,787,641,4,19.3,261,184,0,382,0.258,63.620000000000005,48.96,0.13,984,5,128,3.7 +2016,2,5,6,30,25.8,0.29,0.11910000000000001,0.7000000000000001,103,686,422,4,19.3,129,10,0,134,0.258,67.4,62.27,0.13,984,4.9,131,3.4000000000000004 +2016,2,5,7,30,24.700000000000003,0.3,0.11130000000000001,0.7000000000000001,73,482,194,4,19.400000000000002,44,0,67,44,0.259,72.34,75.44,0.13,985,4.800000000000001,133,2.9000000000000004 +2016,2,5,8,30,23.700000000000003,0.29,0.1076,0.7000000000000001,15,54,17,4,19.6,4,0,67,4,0.259,77.84,88.13,0.13,986,4.800000000000001,135,2.4000000000000004 +2016,2,5,9,30,23.1,0.3,0.10890000000000001,0.7000000000000001,0,0,0,3,19.8,0,0,0,0,0.26,81.73,100.87,0.13,987,4.7,136,2.3000000000000003 +2016,2,5,10,30,22.700000000000003,0.29,0.11280000000000001,0.7000000000000001,0,0,0,4,19.900000000000002,0,0,0,0,0.26,84.38,112.53,0.13,987,4.6000000000000005,136,2.3000000000000003 +2016,2,5,11,30,22.200000000000003,0.28,0.1131,0.7000000000000001,0,0,0,4,20.1,0,0,0,0,0.261,87.66,122.89,0.13,987,4.4,135,2.3000000000000003 +2016,2,5,12,30,21.900000000000002,0.31,0.11660000000000001,0.7000000000000001,0,0,0,4,20.1,0,0,0,0,0.261,89.73,131.1,0.13,987,4.3,136,2.2 +2016,2,5,13,30,21.6,0.29,0.11230000000000001,0.7000000000000001,0,0,0,4,20.1,0,0,0,0,0.261,91.3,135.91,0.13,986,4.2,136,2.1 +2016,2,5,14,30,21.3,0.27,0.10940000000000001,0.7000000000000001,0,0,0,4,20.1,0,0,33,0,0.26,92.82000000000001,136.19,0.13,985,4.1000000000000005,136,2 +2016,2,5,15,30,21.1,0.31,0.1223,0.7000000000000001,0,0,0,4,20.1,0,0,0,0,0.259,93.95,131.85,0.13,985,4,136,2 +2016,2,5,16,30,20.900000000000002,0.28,0.1274,0.7000000000000001,0,0,0,4,20.1,0,0,0,0,0.258,95.09,123.96000000000001,0.13,985,4,136,1.9000000000000001 +2016,2,5,17,30,20.8,0.24,0.1364,0.7000000000000001,0,0,0,3,20.1,0,0,0,0,0.258,95.62,113.79,0.13,985,3.9000000000000004,136,1.9000000000000001 +2016,2,5,18,30,20.8,0.28,0.15360000000000001,0.7000000000000001,0,0,0,3,20.1,0,0,0,0,0.258,95.65,102.24000000000001,0.13,986,3.9000000000000004,137,1.8 +2016,2,5,19,30,21.3,0.27,0.1535,0.7000000000000001,7,14,7,3,20.1,1,0,33,1,0.258,93.08,89.43,0.13,986,3.9000000000000004,138,2.1 +2016,2,5,20,30,22.5,0.25,0.1342,0.7000000000000001,73,421,168,3,20.400000000000002,15,0,67,15,0.258,88.10000000000001,76.92,0.13,987,3.9000000000000004,135,2.6 +2016,2,5,21,30,24.200000000000003,0.3,0.1192,0.7000000000000001,100,678,400,3,20.5,142,31,0,156,0.257,79.69,63.78,0.13,987,4,130,3.2 +2016,2,5,22,30,26,0.32,0.10890000000000001,0.7000000000000001,114,804,626,3,20.1,275,61,0,314,0.256,70.02,50.49,0.13,987,4.1000000000000005,124,3.4000000000000004 +2016,2,5,23,30,26.8,0.31,0.1034,0.7000000000000001,124,871,817,3,19.8,357,139,0,468,0.255,65.72,37.26,0.13,987,4.2,121,3.5 +2016,2,6,0,30,28.3,0.31,0.1174,0.7000000000000001,142,888,950,3,19.700000000000003,368,110,0,468,0.253,59.78,24.48,0.12,987,4.4,114,3.6 +2016,2,6,1,30,28.8,0.33,0.1293,0.7000000000000001,150,898,1022,2,19.6,456,316,0,763,0.252,57.44,13.870000000000001,0.12,986,4.5,111,3.6 +2016,2,6,2,30,28.900000000000002,0.34,0.1305,0.7000000000000001,146,902,1025,3,19.400000000000002,376,208,33,579,0.251,56.620000000000005,13.09,0.12,985,4.6000000000000005,109,3.7 +2016,2,6,3,30,28.5,0.41000000000000003,0.1174,0.7000000000000001,138,893,959,7,19.400000000000002,414,262,0,655,0.251,58.04,23.16,0.12,985,4.7,109,3.7 +2016,2,6,4,30,27.8,0.43,0.12150000000000001,0.7000000000000001,131,859,827,8,19.5,390,181,0,537,0.25,60.63,35.84,0.12,985,4.800000000000001,109,3.7 +2016,2,6,5,30,26.8,0.4,0.1091,0.7000000000000001,115,806,643,7,19.400000000000002,196,21,0,210,0.25,64.08,49.06,0.12,985,4.9,111,3.5 +2016,2,6,6,30,25.5,0.38,0.1053,0.7000000000000001,97,702,423,8,19.5,143,29,0,156,0.249,69.38,62.370000000000005,0.12,986,5,112,3.1 +2016,2,6,7,30,24.1,0.35000000000000003,0.1044,0.7000000000000001,70,488,192,7,19.8,39,0,67,39,0.249,76.73,75.55,0.12,987,5.1000000000000005,114,2.4000000000000004 +2016,2,6,8,30,23,0.3,0.10790000000000001,0.7000000000000001,14,50,16,4,20.1,3,0,67,3,0.248,83.91,88.24,0.12,988,5.1000000000000005,118,1.9000000000000001 +2016,2,6,9,30,22.5,0.3,0.1082,0.7000000000000001,0,0,0,4,20.200000000000003,0,0,0,0,0.248,87.10000000000001,101.01,0.12,989,5.1000000000000005,122,1.7000000000000002 +2016,2,6,10,30,22.3,0.3,0.1048,0.7000000000000001,0,0,0,4,20.200000000000003,0,0,0,0,0.248,88.06,112.71000000000001,0.12,990,5,125,1.6 +2016,2,6,11,30,22,0.3,0.10020000000000001,0.7000000000000001,0,0,0,4,20.200000000000003,0,0,0,0,0.248,89.64,123.11,0.12,990,4.9,127,1.5 +2016,2,6,12,30,21.700000000000003,0.32,0.0961,0.7000000000000001,0,0,0,4,20.200000000000003,0,0,0,0,0.248,91.34,131.36,0.12,989,4.800000000000001,129,1.5 +2016,2,6,13,30,21.400000000000002,0.33,0.0949,0.7000000000000001,0,0,0,4,20.200000000000003,0,0,0,0,0.248,92.97,136.21,0.12,988,4.6000000000000005,132,1.6 +2016,2,6,14,30,21.200000000000003,0.33,0.09390000000000001,0.7000000000000001,0,0,0,4,20.200000000000003,0,0,33,0,0.248,94.07000000000001,136.49,0.12,987,4.5,134,1.6 +2016,2,6,15,30,20.900000000000002,0.37,0.1004,0.7000000000000001,0,0,0,4,20.200000000000003,0,0,0,0,0.249,95.73,132.13,0.12,987,4.4,134,1.5 +2016,2,6,16,30,20.8,0.38,0.1038,0.7000000000000001,0,0,0,3,20.200000000000003,0,0,0,0,0.25,96.10000000000001,124.21000000000001,0.12,987,4.4,133,1.3 +2016,2,6,17,30,20.700000000000003,0.36,0.10300000000000001,0.7000000000000001,0,0,0,3,20.200000000000003,0,0,0,0,0.251,96.68,114,0.12,988,4.4,137,1.2000000000000002 +2016,2,6,18,30,20.6,0.44,0.1125,0.7000000000000001,0,0,0,7,20.1,0,0,0,0,0.251,97.14,102.43,0.12,988,4.4,147,1.2000000000000002 +2016,2,6,19,30,20.900000000000002,0.45,0.1043,0.7000000000000001,7,30,7,7,20.1,4,0,33,4,0.253,95.42,89.57000000000001,0.12,989,4.4,156,1.6 +2016,2,6,20,30,21.700000000000003,0.46,0.0855,0.7000000000000001,60,505,173,7,20.3,83,38,67,92,0.254,91.77,77.07000000000001,0.12,989,4.4,152,2.2 +2016,2,6,21,30,23,0.58,0.07060000000000001,0.7000000000000001,80,742,406,7,20.3,175,311,0,312,0.254,84.78,63.92,0.12,989,4.3,141,2.7 +2016,2,6,22,30,24.5,0.61,0.07250000000000001,0.7000000000000001,95,845,631,3,19.900000000000002,230,404,0,486,0.255,75.59,50.63,0.12,989,4.3,136,3 +2016,2,6,23,30,25.200000000000003,0.6,0.0737,0.7000000000000001,105,903,822,4,19.400000000000002,368,108,0,454,0.255,70.37,37.4,0.12,989,4.2,135,3 +2016,2,7,0,30,27.1,0.41000000000000003,0.1211,0.7000000000000001,140,891,950,4,19.1,305,19,0,322,0.254,61.59,24.66,0.12,989,4.3,134,2.9000000000000004 +2016,2,7,1,30,28.1,0.41000000000000003,0.1227,0.7000000000000001,145,907,1025,4,18.8,313,18,0,330,0.253,57.050000000000004,14.14,0.12,988,4.2,130,2.8000000000000003 +2016,2,7,2,30,28.700000000000003,0.38,0.12240000000000001,0.7000000000000001,147,908,1030,3,18.6,280,18,33,298,0.252,54.38,13.36,0.12,988,4.1000000000000005,125,2.9000000000000004 +2016,2,7,3,30,28.900000000000002,0.35000000000000003,0.1292,0.7000000000000001,147,889,963,3,18.400000000000002,183,7,0,189,0.252,53.15,23.32,0.12,987,3.9000000000000004,121,3 +2016,2,7,4,30,28.6,0.33,0.1312,0.7000000000000001,141,853,831,8,18.3,156,3,0,158,0.252,53.57,35.96,0.12,987,3.8000000000000003,119,3.1 +2016,2,7,5,30,27.8,0.3,0.1331,0.7000000000000001,130,786,644,7,18.1,223,20,0,236,0.252,55.44,49.17,0.12,987,3.8000000000000003,117,3.1 +2016,2,7,6,30,26.6,0.3,0.1385,0.7000000000000001,112,668,421,8,17.8,169,118,0,224,0.252,58.68,62.47,0.12,988,3.7,116,2.8000000000000003 +2016,2,7,7,30,25.1,0.3,0.1383,0.7000000000000001,78,451,190,0,17.6,54,138,33,88,0.252,63.32,75.66,0.12,989,3.7,112,2.2 +2016,2,7,8,30,23.700000000000003,0.31,0.12430000000000001,0.7000000000000001,15,40,16,3,17.7,4,0,67,4,0.252,69.10000000000001,88.36,0.12,990,3.7,109,1.6 +2016,2,7,9,30,22.700000000000003,0.34,0.1019,0.7000000000000001,0,0,0,0,17.8,0,0,0,0,0.253,73.68,101.17,0.12,991,3.6,110,1.3 +2016,2,7,10,30,22,0.38,0.0897,0.7000000000000001,0,0,0,0,17.6,0,0,0,0,0.254,76.18,112.89,0.12,991,3.5,113,1.2000000000000002 +2016,2,7,11,30,21.3,0.4,0.0843,0.7000000000000001,0,0,0,7,17.5,0,0,0,0,0.255,78.7,123.33,0.12,991,3.4000000000000004,118,1 +2016,2,7,12,30,20.700000000000003,0.42,0.08270000000000001,0.7000000000000001,0,0,0,7,17.400000000000002,0,0,0,0,0.255,81.46000000000001,131.63,0.12,991,3.3000000000000003,124,0.9 +2016,2,7,13,30,20.200000000000003,0.43,0.0838,0.7000000000000001,0,0,0,0,17.400000000000002,0,0,0,0,0.255,83.98,136.51,0.12,991,3.3000000000000003,131,0.7000000000000001 +2016,2,7,14,30,19.8,0.44,0.0854,0.7000000000000001,0,0,0,3,17.400000000000002,0,0,33,0,0.255,85.9,136.8,0.12,990,3.3000000000000003,139,0.7000000000000001 +2016,2,7,15,30,19.400000000000002,0.45,0.0855,0.7000000000000001,0,0,0,4,17.3,0,0,0,0,0.256,87.69,132.41,0.12,990,3.3000000000000003,145,0.7000000000000001 +2016,2,7,16,30,19,0.47000000000000003,0.08310000000000001,0.7000000000000001,0,0,0,3,17.2,0,0,0,0,0.257,89.32000000000001,124.45,0.12,990,3.3000000000000003,148,0.7000000000000001 +2016,2,7,17,30,18.7,0.49,0.08020000000000001,0.7000000000000001,0,0,0,3,17.1,0,0,0,0,0.257,90.19,114.21000000000001,0.12,990,3.3000000000000003,152,0.7000000000000001 +2016,2,7,18,30,18.7,0.51,0.0772,0.7000000000000001,0,0,0,7,16.900000000000002,0,0,0,0,0.258,89.39,102.61,0.12,991,3.3000000000000003,155,0.8 +2016,2,7,19,30,19.700000000000003,0.53,0.0737,0.7000000000000001,7,39,7,0,16.900000000000002,7,39,0,7,0.259,83.79,89.7,0.12,991,3.2,155,1.3 +2016,2,7,20,30,21.8,0.55,0.06910000000000001,0.7000000000000001,56,543,176,0,16.6,56,543,8,176,0.26,72.52,77.21000000000001,0.12,992,3.1,147,2.1 +2016,2,7,21,30,23.8,0.5700000000000001,0.0651,0.7000000000000001,78,769,414,0,16.1,78,769,0,414,0.261,62.21,64.06,0.12,992,3,140,2.4000000000000004 +2016,2,7,22,30,25.6,0.6,0.0601,0.7000000000000001,89,880,646,0,15.600000000000001,89,880,0,646,0.262,54.02,50.76,0.12,991,2.9000000000000004,138,2.4000000000000004 +2016,2,7,23,30,26.5,0.64,0.054700000000000006,0.7000000000000001,96,941,842,0,15.200000000000001,96,941,0,842,0.262,49.76,37.550000000000004,0.12,991,2.9000000000000004,138,2.4000000000000004 +2016,2,8,0,30,28.5,0.54,0.057800000000000004,0.7000000000000001,103,971,984,0,14.8,103,971,0,984,0.263,43.13,24.84,0.12,990,2.8000000000000003,134,2.5 +2016,2,8,1,30,29.5,0.56,0.0555,0.7000000000000001,104,988,1061,0,14.4,104,988,8,1061,0.263,39.87,14.41,0.12,989,2.8000000000000003,130,2.5 +2016,2,8,2,30,30.1,0.5700000000000001,0.0545,0.7000000000000001,106,988,1066,0,14.3,106,988,33,1066,0.263,38.1,13.63,0.12,989,2.7,125,2.6 +2016,2,8,3,30,30.3,0.5,0.0585,0.7000000000000001,105,971,996,0,14.4,230,692,0,865,0.263,37.980000000000004,23.490000000000002,0.12,988,2.8000000000000003,121,2.7 +2016,2,8,4,30,30,0.49,0.0616,0.7000000000000001,103,936,859,3,14.8,232,340,0,507,0.262,39.6,36.08,0.12,988,2.8000000000000003,119,2.9000000000000004 +2016,2,8,5,30,29.200000000000003,0.47000000000000003,0.06910000000000001,0.7000000000000001,97,873,667,0,15.200000000000001,113,805,0,638,0.263,42.660000000000004,49.28,0.12,988,2.9000000000000004,117,2.9000000000000004 +2016,2,8,6,30,27.900000000000002,0.46,0.0758,0.7000000000000001,86,766,439,0,15.700000000000001,86,766,17,439,0.263,47.49,62.58,0.12,988,2.9000000000000004,116,2.8000000000000003 +2016,2,8,7,30,26.1,0.48,0.08,0.7000000000000001,64,559,201,0,16.5,64,559,0,201,0.264,55.67,75.78,0.12,989,2.9000000000000004,114,2.3000000000000003 +2016,2,8,8,30,24.400000000000002,0.49,0.0777,0.7000000000000001,15,80,17,0,17.8,15,80,0,17,0.265,66.61,88.49,0.12,990,2.8000000000000003,114,1.8 +2016,2,8,9,30,23.400000000000002,0.51,0.0687,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.265,73.88,101.33,0.12,991,2.7,117,1.6 +2016,2,8,10,30,22.6,0.52,0.0594,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.265,78.61,113.08,0.12,991,2.6,123,1.5 +2016,2,8,11,30,21.900000000000002,0.54,0.053000000000000005,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.265,81.93,123.56,0.12,991,2.4000000000000004,129,1.3 +2016,2,8,12,30,21.3,0.55,0.049600000000000005,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.264,85.01,131.9,0.12,991,2.3000000000000003,135,1.2000000000000002 +2016,2,8,13,30,20.8,0.56,0.0485,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.264,87.67,136.81,0.12,990,2.3000000000000003,141,1.1 +2016,2,8,14,30,20.3,0.56,0.049600000000000005,0.7000000000000001,0,0,0,0,18.7,0,0,33,0,0.264,90.49,137.11,0.12,990,2.2,145,1 +2016,2,8,15,30,20,0.56,0.054,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.264,92.11,132.7,0.12,989,2.2,146,1 +2016,2,8,16,30,19.700000000000003,0.5700000000000001,0.058100000000000006,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.264,93.92,124.7,0.12,989,2.1,146,0.9 +2016,2,8,17,30,19.400000000000002,0.58,0.0572,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.264,95.78,114.43,0.12,990,2.1,146,0.9 +2016,2,8,18,30,19.400000000000002,0.6,0.0591,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.264,95.7,102.79,0.12,990,2.1,145,0.9 +2016,2,8,19,30,20.400000000000002,0.61,0.060500000000000005,0.7000000000000001,7,51,7,0,18.7,7,51,0,7,0.263,90.15,89.84,0.12,991,2.1,144,1.6 +2016,2,8,20,30,22.3,0.64,0.0533,0.7000000000000001,51,597,182,0,18.7,51,597,0,182,0.263,80.15,77.36,0.12,992,2.2,140,2.5 +2016,2,8,21,30,24.200000000000003,0.72,0.045200000000000004,0.7000000000000001,70,814,424,0,18.1,70,814,0,424,0.263,68.63,64.19,0.12,992,2.2,135,3 +2016,2,8,22,30,25.900000000000002,0.71,0.0466,0.7000000000000001,84,906,655,0,17.3,84,906,0,655,0.263,58.99,50.9,0.12,992,2.3000000000000003,133,3.2 +2016,2,8,23,30,26.6,0.65,0.0531,0.7000000000000001,94,955,850,0,16.7,94,955,0,850,0.262,54.65,37.69,0.12,992,2.3000000000000003,132,3.2 +2016,2,9,0,30,28.5,0.35000000000000003,0.0874,0.7000000000000001,123,951,985,0,16.2,153,890,0,959,0.262,47.38,25.02,0.13,991,2.3000000000000003,129,3.3000000000000003 +2016,2,9,1,30,29.3,0.35000000000000003,0.08600000000000001,0.7000000000000001,126,969,1063,0,15.600000000000001,279,599,0,858,0.262,43.53,14.69,0.13,990,2.3000000000000003,128,3.4000000000000004 +2016,2,9,2,30,29.700000000000003,0.35000000000000003,0.08270000000000001,0.7000000000000001,125,972,1068,0,15.3,125,972,33,1068,0.261,41.550000000000004,13.91,0.13,989,2.3000000000000003,128,3.5 +2016,2,9,3,30,29.6,0.35000000000000003,0.0815,0.7000000000000001,122,957,999,0,15.100000000000001,231,596,0,777,0.261,41.37,23.66,0.13,989,2.3000000000000003,128,3.6 +2016,2,9,4,30,29.1,0.34,0.0862,0.7000000000000001,118,919,860,3,15.100000000000001,204,336,33,475,0.261,42.69,36.21,0.13,989,2.3000000000000003,127,3.7 +2016,2,9,5,30,28.200000000000003,0.3,0.0961,0.7000000000000001,114,849,667,3,15.200000000000001,174,107,0,244,0.261,45.18,49.39,0.13,989,2.3000000000000003,128,3.7 +2016,2,9,6,30,26.8,0.29,0.10400000000000001,0.7000000000000001,100,733,436,0,15.3,100,733,0,436,0.261,49.230000000000004,62.7,0.13,989,2.3000000000000003,129,3.5 +2016,2,9,7,30,25.1,0.29,0.1039,0.7000000000000001,72,515,197,0,15.4,72,515,0,197,0.262,55.03,75.9,0.13,990,2.3000000000000003,130,3 +2016,2,9,8,30,23.6,0.28,0.10200000000000001,0.7000000000000001,15,50,16,0,15.9,14,48,8,15,0.263,61.95,88.62,0.13,991,2.2,132,2.4000000000000004 +2016,2,9,9,30,22.6,0.28,0.1043,0.7000000000000001,0,0,0,0,16.3,0,0,0,0,0.263,67.63,101.49000000000001,0.13,992,2.2,135,2 +2016,2,9,10,30,21.8,0.29,0.1073,0.7000000000000001,0,0,0,0,16.6,0,0,0,0,0.263,72.42,113.27,0.13,992,2.2,140,1.7000000000000002 +2016,2,9,11,30,21.200000000000003,0.29,0.1119,0.7000000000000001,0,0,0,0,16.900000000000002,0,0,0,0,0.264,76.45,123.79,0.13,992,2.2,144,1.5 +2016,2,9,12,30,20.700000000000003,0.28,0.1202,0.7000000000000001,0,0,0,0,17.1,0,0,0,0,0.264,79.76,132.17000000000002,0.13,991,2.3000000000000003,147,1.3 +2016,2,9,13,30,20.3,0.27,0.12380000000000001,0.7000000000000001,0,0,0,0,17.2,0,0,0,0,0.264,82.26,137.12,0.13,990,2.3000000000000003,150,1.2000000000000002 +2016,2,9,14,30,19.900000000000002,0.28,0.1213,0.7000000000000001,0,0,0,0,17.2,0,0,33,0,0.265,84.62,137.43,0.13,989,2.3000000000000003,154,1.1 +2016,2,9,15,30,19.5,0.3,0.1199,0.7000000000000001,0,0,0,0,17.3,0,0,0,0,0.265,86.91,132.99,0.13,989,2.3000000000000003,159,1 +2016,2,9,16,30,19.3,0.31,0.1192,0.7000000000000001,0,0,0,0,17.3,0,0,0,0,0.266,88.13,124.95,0.13,988,2.3000000000000003,163,1.1 +2016,2,9,17,30,19.1,0.31,0.12090000000000001,0.7000000000000001,0,0,0,0,17.400000000000002,0,0,0,0,0.266,89.61,114.64,0.13,989,2.3000000000000003,165,1 +2016,2,9,18,30,19,0.33,0.1208,0.7000000000000001,0,0,0,0,17.400000000000002,0,0,0,0,0.267,90.63,102.97,0.13,989,2.3000000000000003,167,1 +2016,2,9,19,30,19.900000000000002,0.35000000000000003,0.1126,0.7000000000000001,6,18,6,0,17.6,5,15,8,5,0.267,86.48,89.98,0.13,990,2.4000000000000004,163,1.5 +2016,2,9,20,30,21.8,0.36,0.1015,0.7000000000000001,65,486,170,3,17.8,77,261,67,133,0.267,77.83,77.5,0.13,990,2.4000000000000004,150,2.3000000000000003 +2016,2,9,21,30,23.900000000000002,0.4,0.0872,0.7000000000000001,85,750,410,3,17.900000000000002,177,234,0,278,0.267,69.31,64.33,0.13,990,2.4000000000000004,137,2.6 +2016,2,9,22,30,25.700000000000003,0.49,0.0658,0.7000000000000001,92,879,645,0,17.6,92,879,0,645,0.266,60.9,51.03,0.13,990,2.5,130,2.7 +2016,2,9,23,30,26.6,0.52,0.061200000000000004,0.7000000000000001,100,939,842,0,17.2,100,939,0,842,0.265,56.25,37.84,0.13,990,2.5,127,2.6 +2016,2,10,0,30,28.5,0.35000000000000003,0.1009,0.7000000000000001,131,931,973,3,17.1,331,318,0,619,0.264,50.04,25.21,0.13,989,2.6,121,2.6 +2016,2,10,1,30,29.5,0.35000000000000003,0.1004,0.7000000000000001,133,948,1049,0,17,323,562,0,866,0.264,46.84,14.97,0.13,988,2.7,118,2.6 +2016,2,10,2,30,30,0.35000000000000003,0.09730000000000001,0.7000000000000001,133,949,1053,2,16.7,404,319,33,713,0.263,44.82,14.200000000000001,0.13,987,2.7,115,2.8000000000000003 +2016,2,10,3,30,30,0.33,0.1008,0.7000000000000001,132,931,984,0,16.6,228,680,0,850,0.263,44.52,23.84,0.13,986,2.7,114,2.9000000000000004 +2016,2,10,4,30,29.400000000000002,0.34,0.10060000000000001,0.7000000000000001,124,898,847,0,16.6,174,554,0,620,0.263,46.1,36.34,0.13,986,2.8000000000000003,113,3 +2016,2,10,5,30,28.3,0.33,0.0984,0.7000000000000001,113,838,657,3,16.7,215,239,0,370,0.263,49.56,49.51,0.13,986,2.8000000000000003,112,3.1 +2016,2,10,6,30,26.8,0.35000000000000003,0.10060000000000001,0.7000000000000001,96,729,429,0,17,103,670,8,409,0.264,55.07,62.82,0.13,987,2.8000000000000003,109,2.9000000000000004 +2016,2,10,7,30,25,0.35000000000000003,0.0994,0.7000000000000001,68,517,193,0,17.5,68,517,0,193,0.264,63.02,76.03,0.13,988,2.8000000000000003,106,2.4000000000000004 +2016,2,10,8,30,23.400000000000002,0.35000000000000003,0.0902,0.7000000000000001,14,55,15,0,18.1,14,55,0,15,0.265,72.29,88.75,0.13,989,2.7,102,1.8 +2016,2,10,9,30,22.400000000000002,0.37,0.0826,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.265,79.43,101.66,0.13,990,2.6,101,1.4000000000000001 +2016,2,10,10,30,21.6,0.41000000000000003,0.0718,0.7000000000000001,0,0,0,0,19,0,0,0,0,0.265,84.91,113.47,0.13,990,2.6,103,1.2000000000000002 +2016,2,10,11,30,21.1,0.43,0.0669,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.265,88.48,124.03,0.13,990,2.5,107,1 +2016,2,10,12,30,20.700000000000003,0.47000000000000003,0.06670000000000001,0.7000000000000001,0,0,0,0,19.200000000000003,0,0,0,0,0.264,91.07000000000001,132.45,0.13,989,2.4000000000000004,111,0.9 +2016,2,10,13,30,20.400000000000002,0.5,0.06670000000000001,0.7000000000000001,0,0,0,0,19.3,0,0,0,0,0.263,93.17,137.44,0.13,989,2.3000000000000003,116,0.9 +2016,2,10,14,30,20.1,0.51,0.0616,0.7000000000000001,0,0,0,0,19.3,0,0,33,0,0.263,95.19,137.75,0.13,988,2.3000000000000003,121,0.9 +2016,2,10,15,30,19.900000000000002,0.58,0.0611,0.7000000000000001,0,0,0,0,19.3,0,0,0,0,0.264,96.31,133.28,0.13,988,2.2,125,0.8 +2016,2,10,16,30,19.700000000000003,0.63,0.055400000000000005,0.7000000000000001,0,0,0,0,19.200000000000003,0,0,0,0,0.264,97.01,125.2,0.13,988,2.2,130,0.8 +2016,2,10,17,30,19.5,0.64,0.049800000000000004,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.265,97.73,114.85000000000001,0.13,988,2.2,135,0.7000000000000001 +2016,2,10,18,30,19.5,0.7000000000000001,0.0511,0.7000000000000001,0,0,0,0,19,0,0,0,0,0.265,97.2,103.16,0.13,988,2.2,139,0.8 +2016,2,10,19,30,20.400000000000002,0.72,0.0509,0.7000000000000001,6,53,6,0,19.1,6,53,0,6,0.265,92.03,90.11,0.13,989,2.2,140,1.3 +2016,2,10,20,30,22.200000000000003,0.74,0.0442,0.7000000000000001,48,610,179,0,19.200000000000003,48,610,0,179,0.266,82.93,77.64,0.13,989,2.2,132,2 +2016,2,10,21,30,24.1,0.84,0.037000000000000005,0.7000000000000001,64,826,420,0,18.7,64,826,0,420,0.266,71.69,64.46000000000001,0.13,989,2.3000000000000003,124,2.3000000000000003 +2016,2,10,22,30,25.900000000000002,0.9,0.033600000000000005,0.7000000000000001,74,922,652,0,17.8,74,922,0,652,0.266,61.01,51.17,0.13,989,2.4000000000000004,119,2.4000000000000004 +2016,2,10,23,30,26.8,0.9,0.034,0.7000000000000001,82,972,848,0,17.2,82,972,0,848,0.266,55.84,37.99,0.13,989,2.4000000000000004,117,2.4000000000000004 +2016,2,11,0,30,28.6,0.59,0.0776,0.7000000000000001,115,958,980,0,17,170,817,8,908,0.265,49.39,25.400000000000002,0.13,988,2.5,112,2.6 +2016,2,11,1,30,29.3,0.61,0.07390000000000001,0.7000000000000001,115,974,1055,3,16.7,388,275,0,653,0.264,46.76,15.25,0.13,988,2.6,109,2.7 +2016,2,11,2,30,29.700000000000003,0.61,0.07250000000000001,0.7000000000000001,116,973,1058,3,16.6,490,145,42,630,0.263,45.300000000000004,14.49,0.13,987,2.7,107,2.8000000000000003 +2016,2,11,3,30,29.5,0.61,0.0787,0.7000000000000001,117,954,988,0,16.5,236,494,0,687,0.262,45.410000000000004,24.03,0.13,987,2.7,105,3 +2016,2,11,4,30,28.900000000000002,0.6,0.08120000000000001,0.7000000000000001,111,922,852,7,16.3,343,333,17,611,0.262,46.57,36.49,0.13,986,2.7,104,3 +2016,2,11,5,30,27.900000000000002,0.59,0.078,0.7000000000000001,100,868,662,0,16.3,167,600,0,556,0.262,49.18,49.64,0.13,987,2.7,102,3 +2016,2,11,6,30,26.5,0.59,0.0781,0.7000000000000001,85,767,434,0,16.3,85,767,0,434,0.262,53.660000000000004,62.95,0.13,987,2.7,99,2.9000000000000004 +2016,2,11,7,30,24.900000000000002,0.5700000000000001,0.07680000000000001,0.7000000000000001,62,562,196,0,16.6,62,562,0,196,0.264,59.88,76.17,0.13,988,2.7,96,2.4000000000000004 +2016,2,11,8,30,23.400000000000002,0.55,0.0746,0.7000000000000001,14,72,15,0,17,14,72,0,15,0.265,67.32000000000001,88.88,0.13,989,2.6,94,1.7000000000000002 +2016,2,11,9,30,22.400000000000002,0.55,0.07150000000000001,0.7000000000000001,0,0,0,0,17.5,0,0,0,0,0.266,74.02,101.83,0.13,989,2.5,95,1.3 +2016,2,11,10,30,21.700000000000003,0.54,0.069,0.7000000000000001,0,0,0,0,18,0,0,0,0,0.267,79.57000000000001,113.67,0.13,990,2.4000000000000004,100,1.1 +2016,2,11,11,30,21.200000000000003,0.52,0.0675,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.267,83.92,124.27,0.13,990,2.3000000000000003,108,1 +2016,2,11,12,30,20.900000000000002,0.51,0.0664,0.7000000000000001,0,0,0,0,18.6,0,0,0,0,0.266,86.74,132.74,0.13,989,2.3000000000000003,115,0.9 +2016,2,11,13,30,20.8,0.53,0.06470000000000001,0.7000000000000001,0,0,0,0,18.8,0,0,0,0,0.266,88.23,137.76,0.13,989,2.2,118,0.9 +2016,2,11,14,30,20.6,0.54,0.0614,0.7000000000000001,0,0,0,0,18.900000000000002,0,0,33,0,0.265,90.08,138.07,0.13,989,2.2,121,0.9 +2016,2,11,15,30,20.400000000000002,0.5700000000000001,0.0601,0.7000000000000001,0,0,0,0,19,0,0,0,0,0.266,91.68,133.57,0.13,988,2.1,127,0.9 +2016,2,11,16,30,20.1,0.6,0.057100000000000005,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.267,93.69,125.45,0.13,988,2.2,134,0.9 +2016,2,11,17,30,20,0.63,0.052500000000000005,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.268,94.34,115.06,0.13,988,2.2,140,0.9 +2016,2,11,18,30,20,0.7000000000000001,0.0536,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.269,94.28,103.34,0.13,989,2.2,144,1 +2016,2,11,19,30,20.700000000000003,0.73,0.050300000000000004,0.7000000000000001,6,53,6,0,19,6,53,0,6,0.269,90.17,90.24,0.13,989,2.2,144,1.6 +2016,2,11,20,30,22.400000000000002,0.78,0.0403,0.7000000000000001,47,614,177,0,18.900000000000002,47,614,0,177,0.269,80.85000000000001,77.78,0.13,989,2.2,139,2.4000000000000004 +2016,2,11,21,30,24.200000000000003,0.87,0.0352,0.7000000000000001,64,826,418,0,18.400000000000002,64,826,0,418,0.269,70.09,64.6,0.13,989,2.3000000000000003,132,2.8000000000000003 +2016,2,11,22,30,25.900000000000002,0.9,0.0332,0.7000000000000001,74,922,650,0,17.8,74,922,0,650,0.269,60.910000000000004,51.300000000000004,0.13,989,2.4000000000000004,127,2.9000000000000004 +2016,2,11,23,30,26.6,0.88,0.032,0.7000000000000001,81,973,846,0,17.3,107,904,0,818,0.269,56.660000000000004,38.13,0.13,989,2.4000000000000004,125,2.9000000000000004 +2016,2,12,0,30,28.400000000000002,0.54,0.0772,0.7000000000000001,116,955,977,3,16.900000000000002,440,98,0,528,0.268,49.7,25.580000000000002,0.13,988,2.5,121,3.1 +2016,2,12,1,30,29.200000000000003,0.55,0.08,0.7000000000000001,119,968,1052,0,16.5,210,502,0,694,0.267,46.42,15.540000000000001,0.13,988,2.6,118,3.2 +2016,2,12,2,30,29.5,0.53,0.0766,0.7000000000000001,120,967,1055,3,16.2,458,191,33,643,0.266,44.660000000000004,14.790000000000001,0.13,987,2.7,116,3.3000000000000003 +2016,2,12,3,30,29.400000000000002,0.46,0.08460000000000001,0.7000000000000001,120,947,984,3,16,238,256,0,471,0.266,44.45,24.22,0.13,987,2.7,116,3.4000000000000004 +2016,2,12,4,30,28.900000000000002,0.47000000000000003,0.08410000000000001,0.7000000000000001,113,917,849,3,15.9,303,50,8,343,0.266,45.27,36.64,0.13,987,2.7,117,3.4000000000000004 +2016,2,12,5,30,28.1,0.45,0.0805,0.7000000000000001,102,864,660,3,15.700000000000001,211,200,0,340,0.267,46.94,49.77,0.13,987,2.7,119,3.4000000000000004 +2016,2,12,6,30,26.8,0.48,0.0767,0.7000000000000001,84,771,433,0,15.600000000000001,96,649,17,390,0.268,50.35,63.08,0.13,987,2.6,120,3.2 +2016,2,12,7,30,25,0.51,0.0666,0.7000000000000001,57,586,196,0,15.700000000000001,58,534,17,184,0.27,56.47,76.31,0.13,988,2.5,120,2.5 +2016,2,12,8,30,23.400000000000002,0.56,0.0548,0.7000000000000001,9,66,10,0,16.3,9,66,0,10,0.271,64.39,89.02,0.13,989,2.3000000000000003,121,1.8 +2016,2,12,9,30,22.3,0.6,0.0485,0.7000000000000001,0,0,0,0,16.8,0,0,0,0,0.273,70.88,102,0.13,989,2.2,124,1.5 +2016,2,12,10,30,21.400000000000002,0.63,0.0449,0.7000000000000001,0,0,0,0,17,0,0,0,0,0.273,76.27,113.88,0.13,990,2.1,130,1.3 +2016,2,12,11,30,20.700000000000003,0.64,0.0439,0.7000000000000001,0,0,0,0,17.2,0,0,0,0,0.274,80.54,124.51,0.13,989,2,135,1.2000000000000002 +2016,2,12,12,30,20.1,0.64,0.0459,0.7000000000000001,0,0,0,0,17.400000000000002,0,0,0,0,0.274,84.37,133.03,0.13,989,2,138,1.1 +2016,2,12,13,30,19.700000000000003,0.62,0.050300000000000004,0.7000000000000001,0,0,0,0,17.5,0,0,0,0,0.273,87.22,138.08,0.13,989,2.1,141,1 +2016,2,12,14,30,19.6,0.58,0.054700000000000006,0.7000000000000001,0,0,0,0,17.7,0,0,33,0,0.273,88.73,138.4,0.13,988,2.2,145,1 +2016,2,12,15,30,19.5,0.61,0.062400000000000004,0.7000000000000001,0,0,0,0,17.900000000000002,0,0,0,0,0.273,90.44,133.87,0.13,987,2.3000000000000003,149,1 +2016,2,12,16,30,19.3,0.59,0.0648,0.7000000000000001,0,0,0,0,18,0,0,0,0,0.274,92.24,125.7,0.13,987,2.4000000000000004,153,1 +2016,2,12,17,30,19.200000000000003,0.56,0.0644,0.7000000000000001,0,0,0,7,18.1,0,0,0,0,0.275,93.16,115.27,0.13,987,2.6,157,1.1 +2016,2,12,18,30,19.3,0.58,0.0688,0.7000000000000001,0,0,0,7,18.1,0,0,0,0,0.276,92.85000000000001,103.52,0.13,987,2.7,160,1.2000000000000002 +2016,2,12,19,30,20.200000000000003,0.59,0.0693,0.7000000000000001,5,28,5,7,18.2,5,28,33,5,0.276,88.29,90.98,0.13,988,2.8000000000000003,159,1.8 +2016,2,12,20,30,21.900000000000002,0.5700000000000001,0.066,0.7000000000000001,53,530,164,0,18.3,66,252,58,119,0.277,79.98,77.93,0.13,988,3,154,2.6 +2016,2,12,21,30,23.8,0.62,0.0668,0.7000000000000001,77,754,399,0,18.3,77,754,0,399,0.277,71.17,64.73,0.13,988,3.2,148,3 +2016,2,12,22,30,25.5,0.64,0.0656,0.7000000000000001,90,858,625,0,18.2,150,596,0,522,0.277,64.08,51.44,0.13,988,3.5,143,3.2 +2016,2,12,23,30,26.3,0.63,0.0627,0.7000000000000001,98,917,818,0,18.3,98,917,0,818,0.277,61.58,38.28,0.13,988,3.6,140,3.2 +2016,2,13,0,30,27.5,0.42,0.1077,0.7000000000000001,133,898,942,3,18.7,328,27,0,352,0.276,58.56,25.78,0.13,987,4,133,3.4000000000000004 +2016,2,13,1,30,27.700000000000003,0.39,0.11900000000000001,0.7000000000000001,142,905,1013,3,19,448,119,0,562,0.276,59,15.83,0.13,987,4.2,129,3.4000000000000004 +2016,2,13,2,30,27.6,0.36,0.12040000000000001,0.7000000000000001,143,902,1014,4,19.1,425,47,33,470,0.275,59.79,15.1,0.13,986,4.4,126,3.5 +2016,2,13,3,30,27.1,0.32,0.12250000000000001,0.7000000000000001,141,884,946,3,19.200000000000003,313,342,0,624,0.274,61.84,24.43,0.13,986,4.5,123,3.5 +2016,2,13,4,30,26.3,0.33,0.1213,0.7000000000000001,132,852,814,3,19.200000000000003,243,186,0,392,0.271,65.08,36.79,0.13,986,4.5,123,3.4000000000000004 +2016,2,13,5,30,25.400000000000002,0.34,0.1124,0.7000000000000001,118,794,629,8,19.3,194,12,0,202,0.269,68.89,49.910000000000004,0.13,986,4.5,124,3.2 +2016,2,13,6,30,24.400000000000002,0.32,0.115,0.7000000000000001,98,685,407,3,19.200000000000003,150,50,0,173,0.267,72.93,63.22,0.13,986,4.5,125,2.8000000000000003 +2016,2,13,7,30,23.400000000000002,0.36,0.1041,0.7000000000000001,67,479,179,0,19.200000000000003,67,479,0,179,0.265,77.22,76.45,0.13,986,4.4,126,2.3000000000000003 +2016,2,13,8,30,22.6,0.39,0.0935,0.7000000000000001,8,33,8,0,19.200000000000003,8,33,0,8,0.263,81.06,89.16,0.13,987,4.2,127,1.8 +2016,2,13,9,30,22.1,0.44,0.0849,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.261,83.2,102.19,0.13,987,4,130,1.6 +2016,2,13,10,30,21.6,0.48,0.0758,0.7000000000000001,0,0,0,0,19,0,0,0,0,0.259,85.09,114.09,0.13,987,3.8000000000000003,135,1.4000000000000001 +2016,2,13,11,30,21.1,0.53,0.0674,0.7000000000000001,0,0,0,0,18.900000000000002,0,0,0,0,0.258,87.03,124.76,0.13,987,3.7,140,1.2000000000000002 +2016,2,13,12,30,20.5,0.58,0.0623,0.7000000000000001,0,0,0,0,18.8,0,0,0,0,0.256,89.76,133.32,0.13,987,3.5,144,1 +2016,2,13,13,30,20.1,0.6,0.059500000000000004,0.7000000000000001,0,0,0,0,18.6,0,0,0,0,0.255,91.35000000000001,138.41,0.13,986,3.4000000000000004,148,0.9 +2016,2,13,14,30,19.700000000000003,0.61,0.0577,0.7000000000000001,0,0,0,0,18.6,0,0,33,0,0.255,93.29,138.73,0.13,985,3.3000000000000003,151,0.9 +2016,2,13,15,30,19.400000000000002,0.66,0.062200000000000005,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.255,94.67,134.16,0.13,985,3.2,154,0.8 +2016,2,13,16,30,19.1,0.66,0.06420000000000001,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.255,96.06,125.95,0.13,985,3.1,160,0.8 +2016,2,13,17,30,18.900000000000002,0.65,0.062200000000000005,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.256,96.67,115.48,0.13,985,3,168,0.8 +2016,2,13,18,30,18.8,0.72,0.06770000000000001,0.7000000000000001,0,0,0,0,18.2,0,0,0,0,0.256,96.56,103.7,0.13,985,3,176,0.9 +2016,2,13,19,30,19.3,0.76,0.0621,0.7000000000000001,6,36,5,0,18.1,6,36,0,5,0.256,92.93,91.14,0.13,985,2.9000000000000004,179,1.4000000000000001 +2016,2,13,20,30,20.900000000000002,0.77,0.0521,0.7000000000000001,49,564,166,0,18.1,49,564,17,166,0.256,84.09,78.07000000000001,0.13,985,2.9000000000000004,171,2 +2016,2,13,21,30,23.200000000000003,0.85,0.0502,0.7000000000000001,70,787,404,0,17.8,70,787,0,404,0.256,71.58,64.86,0.13,986,2.9000000000000004,157,2.3000000000000003 +2016,2,13,22,30,25.700000000000003,0.89,0.0456,0.7000000000000001,80,893,635,0,16.900000000000002,80,893,0,635,0.255,58.33,51.57,0.13,986,3,148,2.3000000000000003 +2016,2,13,23,30,26.8,0.88,0.0419,0.7000000000000001,86,951,831,0,16.2,86,951,0,831,0.255,52.300000000000004,38.43,0.13,985,2.9000000000000004,145,2.3000000000000003 +2016,2,14,0,30,29.6,0.61,0.0688,0.7000000000000001,109,957,969,0,15.8,109,957,0,969,0.255,43.31,25.97,0.13,984,2.9000000000000004,140,2.2 +2016,2,14,1,30,31,0.63,0.06620000000000001,0.7000000000000001,109,976,1047,0,15.600000000000001,109,976,0,1047,0.254,39.33,16.12,0.13,984,2.8000000000000003,134,2.2 +2016,2,14,2,30,31.900000000000002,0.65,0.06330000000000001,0.7000000000000001,108,981,1054,0,15.4,108,981,33,1054,0.254,36.97,15.41,0.13,983,2.7,129,2.3000000000000003 +2016,2,14,3,30,32.300000000000004,0.62,0.06280000000000001,0.7000000000000001,106,972,989,0,15.3,106,972,0,989,0.254,35.9,24.64,0.13,982,2.6,127,2.4000000000000004 +2016,2,14,4,30,32.2,0.64,0.0585,0.7000000000000001,97,952,858,3,15.100000000000001,216,431,0,560,0.254,35.61,36.96,0.13,982,2.4000000000000004,128,2.4000000000000004 +2016,2,14,5,30,31.6,0.67,0.053700000000000005,0.7000000000000001,87,910,671,0,14.700000000000001,87,910,0,671,0.255,35.86,50.06,0.13,982,2.1,129,2.3000000000000003 +2016,2,14,6,30,30.200000000000003,0.71,0.049300000000000004,0.7000000000000001,72,827,443,0,14.3,72,827,0,443,0.255,37.86,63.36,0.13,982,1.9000000000000001,125,1.9000000000000001 +2016,2,14,7,30,27.5,0.75,0.0463,0.7000000000000001,52,639,200,0,15.5,52,639,0,200,0.256,47.99,76.60000000000001,0.13,983,1.8,111,1.3 +2016,2,14,8,30,24.900000000000002,0.78,0.0459,0.7000000000000001,9,76,10,0,17.400000000000002,9,76,0,10,0.256,62.910000000000004,89.31,0.13,984,1.7000000000000002,101,1 +2016,2,14,9,30,23.400000000000002,0.79,0.0478,0.7000000000000001,0,0,0,0,18,0,0,0,0,0.257,71.55,102.37,0.13,985,1.6,99,0.8 +2016,2,14,10,30,22.3,0.8,0.05,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.257,78.93,114.31,0.13,986,1.6,104,0.7000000000000001 +2016,2,14,11,30,21.5,0.8300000000000001,0.0506,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.258,84.10000000000001,125.02,0.13,986,1.5,115,0.6000000000000001 +2016,2,14,12,30,20.700000000000003,0.87,0.049600000000000005,0.7000000000000001,0,0,0,0,18.8,0,0,0,0,0.258,88.73,133.62,0.13,986,1.5,133,0.6000000000000001 +2016,2,14,13,30,20.1,0.89,0.048100000000000004,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.258,91.41,138.74,0.13,985,1.5,158,0.6000000000000001 +2016,2,14,14,30,19.5,0.92,0.046700000000000005,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,33,0,0.258,93.17,139.06,0.13,985,1.5,184,0.7000000000000001 +2016,2,14,15,30,18.900000000000002,0.9500000000000001,0.0458,0.7000000000000001,0,0,0,0,18,0,0,0,0,0.258,94.53,134.46,0.13,984,1.5,199,0.8 +2016,2,14,16,30,18.5,0.98,0.045700000000000005,0.7000000000000001,0,0,0,0,17.6,0,0,0,0,0.259,94.68,126.2,0.13,984,1.6,202,0.8 +2016,2,14,17,30,18.2,1,0.0458,0.7000000000000001,0,0,0,0,17.3,0,0,0,0,0.259,94.45,115.69,0.13,985,1.7000000000000002,199,0.8 +2016,2,14,18,30,18,1.02,0.0458,0.7000000000000001,0,0,0,0,17,0,0,0,0,0.259,93.88,103.87,0.13,985,1.8,193,0.8 +2016,2,14,19,30,19,1.03,0.045700000000000005,0.7000000000000001,6,46,5,0,16.8,6,46,0,5,0.26,87.22,91.3,0.13,986,1.8,186,1 +2016,2,14,20,30,21.700000000000003,1.04,0.0455,0.7000000000000001,47,604,171,0,17,47,604,0,171,0.26,74.64,78.2,0.13,986,1.9000000000000001,165,1.3 +2016,2,14,21,30,24.8,1.06,0.0443,0.7000000000000001,66,820,413,0,17.1,66,820,0,413,0.26,62.46,65,0.13,987,1.9000000000000001,144,1.7000000000000002 +2016,2,14,22,30,27.5,1.07,0.0425,0.7000000000000001,78,919,648,0,16.400000000000002,78,919,0,648,0.259,50.910000000000004,51.7,0.13,987,2,137,2.1 +2016,2,14,23,30,28.8,1.06,0.042,0.7000000000000001,86,972,846,0,15.600000000000001,86,972,0,846,0.259,44.68,38.58,0.13,987,2,135,2.2 +2016,2,15,0,30,31.3,0.91,0.0497,0.7000000000000001,97,992,987,0,15.100000000000001,97,992,0,987,0.258,37.58,26.17,0.13,986,2.1,130,2.5 +2016,2,15,1,30,32.4,0.9,0.050100000000000006,0.7000000000000001,100,1004,1063,0,15,100,1004,0,1063,0.258,35.1,16.42,0.13,985,2.2,127,2.7 +2016,2,15,2,30,33,0.87,0.0512,0.7000000000000001,101,1001,1065,0,15.100000000000001,101,1001,33,1065,0.258,34.13,15.72,0.13,984,2.2,124,2.9000000000000004 +2016,2,15,3,30,33.2,0.74,0.059300000000000005,0.7000000000000001,104,980,993,0,15.3,104,980,0,993,0.258,34.13,24.86,0.13,984,2.3000000000000003,121,3 +2016,2,15,4,30,32.800000000000004,0.75,0.0599,0.7000000000000001,98,949,855,0,15.4,98,949,0,855,0.258,35.08,37.12,0.13,983,2.4000000000000004,118,3 +2016,2,15,5,30,31.900000000000002,0.76,0.060700000000000004,0.7000000000000001,90,893,661,0,15.600000000000001,90,893,0,661,0.259,37.54,50.21,0.13,983,2.4000000000000004,114,2.9000000000000004 +2016,2,15,6,30,30.3,0.79,0.061500000000000006,0.7000000000000001,77,792,430,0,16.2,77,792,0,430,0.259,42.59,63.51,0.13,984,2.5,108,2.5 +2016,2,15,7,30,27.700000000000003,0.8300000000000001,0.0631,0.7000000000000001,56,580,189,0,17.2,56,580,0,189,0.26,52.69,76.75,0.13,984,2.6,99,1.6 +2016,2,15,8,30,25.400000000000002,0.87,0.0679,0.7000000000000001,7,54,8,0,19,7,54,0,8,0.26,67.67,89.46000000000001,0.13,985,2.7,93,0.9 +2016,2,15,9,30,24.1,0.91,0.076,0.7000000000000001,0,0,0,0,19.8,0,0,0,0,0.26,76.88,102.56,0.13,986,2.8000000000000003,93,0.7000000000000001 +2016,2,15,10,30,23.3,0.93,0.0858,0.7000000000000001,0,0,0,0,20.200000000000003,0,0,0,0,0.259,82.71000000000001,114.52,0.13,986,2.8000000000000003,98,0.6000000000000001 +2016,2,15,11,30,22.6,0.9400000000000001,0.0936,0.7000000000000001,0,0,0,0,20.5,0,0,0,0,0.258,88.04,125.27,0.13,986,2.9000000000000004,102,0.6000000000000001 +2016,2,15,12,30,22.1,0.9500000000000001,0.0969,0.7000000000000001,0,0,0,0,20.8,0,0,0,0,0.258,92.28,133.92000000000002,0.13,986,2.9000000000000004,104,0.5 +2016,2,15,13,30,21.6,0.96,0.09910000000000001,0.7000000000000001,0,0,0,0,21,0,0,0,0,0.257,96.19,139.08,0.13,985,2.9000000000000004,106,0.5 +2016,2,15,14,30,21.3,0.9500000000000001,0.1044,0.7000000000000001,0,0,0,0,21.1,0,0,33,0,0.256,98.88,139.39000000000001,0.13,985,3,119,0.5 +2016,2,15,15,30,21.1,0.9500000000000001,0.11510000000000001,0.7000000000000001,0,0,0,0,21.1,0,0,100,0,0.256,100,134.76,0.13,984,3,146,0.5 +2016,2,15,16,30,20.900000000000002,0.96,0.1254,0.7000000000000001,0,0,0,0,20.900000000000002,0,0,100,0,0.255,100,126.45,0.13,984,3,170,0.5 +2016,2,15,17,30,20.8,0.96,0.1269,0.7000000000000001,0,0,0,0,20.8,0,0,0,0,0.254,100,115.9,0.13,984,3,181,0.5 +2016,2,15,18,30,20.700000000000003,0.99,0.1342,0.7000000000000001,0,0,0,0,20.700000000000003,0,0,0,0,0.254,100,104.05,0.13,985,3,193,0.5 +2016,2,15,19,30,21.6,1.03,0.1378,0.7000000000000001,4,12,4,0,20.900000000000002,4,12,0,4,0.254,95.89,91.45,0.13,985,2.9000000000000004,210,0.6000000000000001 +2016,2,15,20,30,23.6,1.05,0.12350000000000001,0.7000000000000001,62,457,154,0,20.8,62,457,0,154,0.255,84.17,78.34,0.13,985,2.9000000000000004,233,0.6000000000000001 +2016,2,15,21,30,26.1,1.12,0.1024,0.7000000000000001,87,724,391,0,19.900000000000002,87,724,0,391,0.255,68.74,65.13,0.13,985,2.8000000000000003,253,0.5 +2016,2,15,22,30,28.900000000000002,1.1400000000000001,0.0925,0.7000000000000001,100,846,623,0,18.400000000000002,100,846,0,623,0.255,53.03,51.84,0.13,985,2.8000000000000003,257,0.6000000000000001 +2016,2,15,23,30,30.3,1.1500000000000001,0.0886,0.7000000000000001,109,910,819,0,16.8,109,910,0,819,0.254,44.36,38.730000000000004,0.13,985,2.8000000000000003,255,0.7000000000000001 +2016,2,16,0,30,34.300000000000004,1.1400000000000001,0.0918,0.7000000000000001,118,940,960,0,15.3,118,940,0,960,0.252,32.19,26.37,0.13,984,2.9000000000000004,250,0.6000000000000001 +2016,2,16,1,30,36.1,1.1400000000000001,0.09340000000000001,0.7000000000000001,121,953,1034,0,14.3,121,953,0,1034,0.251,27.27,16.72,0.13,983,3,245,0.5 +2016,2,16,2,30,37,1.1300000000000001,0.098,0.7000000000000001,121,953,1037,0,14.100000000000001,121,953,33,1037,0.25,25.580000000000002,16.05,0.13,981,3.1,239,0.4 +2016,2,16,3,30,37.2,1.1,0.082,0.7000000000000001,115,942,968,0,14.3,115,942,0,968,0.25,25.66,25.080000000000002,0.13,981,3.2,235,0.4 +2016,2,16,4,30,36.6,1.07,0.0949,0.7000000000000001,117,894,828,0,14.600000000000001,117,894,0,828,0.25,26.95,37.300000000000004,0.13,980,3.4000000000000004,260,0.30000000000000004 +2016,2,16,5,30,35.2,1.03,0.1139,0.7000000000000001,114,812,632,4,14.9,127,8,0,132,0.25,29.75,50.370000000000005,0.13,980,3.5,167,0.5 +2016,2,16,6,30,33.2,1,0.13440000000000002,0.7000000000000001,104,674,403,4,15.8,89,2,0,90,0.251,35.31,63.660000000000004,0.13,980,3.7,52,0.8 +2016,2,16,7,30,30.6,0.97,0.1555,0.7000000000000001,75,415,169,0,18.400000000000002,78,316,33,150,0.253,48.19,76.91,0.13,980,3.9000000000000004,56,1.1 +2016,2,16,8,30,28.5,0.9400000000000001,0.17850000000000002,0.7000000000000001,6,16,6,4,20.5,3,0,33,3,0.255,62.01,89.61,0.13,981,4,60,1.2000000000000002 +2016,2,16,9,30,27.1,0.93,0.189,0.7000000000000001,0,0,0,4,20.8,0,0,0,0,0.256,68.27,102.75,0.13,982,4,65,1.2000000000000002 +2016,2,16,10,30,26.1,0.93,0.18610000000000002,0.7000000000000001,0,0,0,4,20.700000000000003,0,0,0,0,0.256,72.33,114.75,0.13,983,4,67,1.3 +2016,2,16,11,30,25.200000000000003,0.9400000000000001,0.1704,0.7000000000000001,0,0,0,4,20.900000000000002,0,0,0,0,0.256,77,125.54,0.13,983,3.9000000000000004,70,1.2000000000000002 +2016,2,16,12,30,24.400000000000002,0.9500000000000001,0.1462,0.7000000000000001,0,0,0,4,21.200000000000003,0,0,0,0,0.256,82.32000000000001,134.23,0.13,983,3.7,83,1 +2016,2,16,13,30,23.700000000000003,0.96,0.1272,0.7000000000000001,0,0,0,0,21.400000000000002,0,0,0,0,0.256,86.98,139.42000000000002,0.13,982,3.6,100,0.9 +2016,2,16,14,30,23.1,0.9500000000000001,0.1182,0.7000000000000001,0,0,0,0,21.5,0,0,33,0,0.257,90.55,139.73,0.13,982,3.4000000000000004,112,0.8 +2016,2,16,15,30,22.6,0.9500000000000001,0.12240000000000001,0.7000000000000001,0,0,0,0,21.400000000000002,0,0,0,0,0.257,93.14,135.06,0.13,982,3.3000000000000003,120,0.8 +2016,2,16,16,30,22.400000000000002,0.96,0.1277,0.7000000000000001,0,0,0,0,21.3,0,0,0,0,0.258,93.75,126.7,0.13,982,3.3000000000000003,126,0.7000000000000001 +2016,2,16,17,30,22.200000000000003,0.9500000000000001,0.1255,0.7000000000000001,0,0,0,0,21.3,0,0,0,0,0.258,94.53,116.11,0.13,982,3.3000000000000003,129,0.6000000000000001 +2016,2,16,18,30,22.1,0.99,0.1467,0.7000000000000001,0,0,0,0,21.200000000000003,0,0,0,0,0.258,94.59,104.23,0.13,982,3.3000000000000003,130,0.7000000000000001 +2016,2,16,19,30,22.8,1.01,0.1553,0.7000000000000001,0,0,0,0,21.1,0,0,0,0,0.259,90.27,91.60000000000001,0.13,983,3.3000000000000003,129,1.1 +2016,2,16,20,30,24.400000000000002,0.99,0.14400000000000002,0.7000000000000001,65,407,146,0,21,65,407,0,146,0.259,81.41,78.48,0.13,983,3.3000000000000003,124,1.5 +2016,2,16,21,30,26.400000000000002,1,0.13970000000000002,0.7000000000000001,99,667,378,0,20.700000000000003,103,610,8,358,0.259,70.94,65.26,0.13,984,3.3000000000000003,117,1.4000000000000001 +2016,2,16,22,30,28.6,1.01,0.1278,0.7000000000000001,113,804,608,0,20.3,113,804,0,608,0.26,60.89,51.97,0.13,984,3.2,115,1.3 +2016,2,16,23,30,29.700000000000003,1.02,0.11280000000000001,0.7000000000000001,121,879,805,0,19.8,121,879,0,805,0.26,55.43,38.89,0.13,984,3.2,117,1.1 +2016,2,17,0,30,32.5,1.04,0.0993,0.7000000000000001,120,928,950,0,19,120,928,0,950,0.261,44.81,26.57,0.13,983,3.2,134,0.7000000000000001 +2016,2,17,1,30,34,1.05,0.0946,0.7000000000000001,122,948,1028,0,18,122,948,0,1028,0.261,38.81,17.03,0.13,982,3.2,123,0.5 +2016,2,17,2,30,35,1.05,0.0927,0.7000000000000001,124,945,1031,0,17.2,124,945,33,1031,0.261,34.87,16.37,0.13,981,3.2,69,0.4 +2016,2,17,3,30,35.300000000000004,0.96,0.1106,0.7000000000000001,128,921,961,0,16.6,128,921,0,961,0.261,33.08,25.310000000000002,0.13,981,3.1,177,0.4 +2016,2,17,4,30,35,0.9400000000000001,0.111,0.7000000000000001,121,890,827,0,16,121,890,0,827,0.262,32.31,37.480000000000004,0.13,980,3.1,333,0.5 +2016,2,17,5,30,33.9,0.92,0.1042,0.7000000000000001,107,836,638,0,15.5,107,836,0,638,0.263,33.24,50.53,0.13,980,3,203,0.6000000000000001 +2016,2,17,6,30,31.900000000000002,0.89,0.0974,0.7000000000000001,88,734,412,0,15.8,88,734,0,412,0.263,37.95,63.82,0.13,981,2.9000000000000004,69,0.9 +2016,2,17,7,30,28.900000000000002,0.8300000000000001,0.0956,0.7000000000000001,62,510,176,0,17.400000000000002,62,510,0,176,0.264,50.03,77.07000000000001,0.13,981,2.9000000000000004,73,1.4000000000000001 +2016,2,17,8,30,26.3,0.77,0.0995,0.7000000000000001,7,30,7,0,19.5,7,30,0,7,0.265,66.32000000000001,89.76,0.13,982,2.9000000000000004,73,1.6 +2016,2,17,9,30,24.900000000000002,0.78,0.108,0.7000000000000001,0,0,0,0,20.1,0,0,0,0,0.265,74.62,102.95,0.13,983,2.8000000000000003,70,1.6 +2016,2,17,10,30,24.200000000000003,0.8200000000000001,0.1076,0.7000000000000001,0,0,0,0,20.700000000000003,0,0,0,0,0.265,80.77,114.97,0.13,984,2.9000000000000004,66,1.4000000000000001 +2016,2,17,11,30,23.700000000000003,0.8300000000000001,0.1042,0.7000000000000001,0,0,0,0,21.200000000000003,0,0,0,0,0.264,85.83,125.8,0.13,984,2.9000000000000004,61,1.2000000000000002 +2016,2,17,12,30,23.3,0.85,0.1129,0.7000000000000001,0,0,0,0,21.5,0,0,0,0,0.264,89.76,134.54,0.13,984,3,56,1 +2016,2,17,13,30,23.1,0.85,0.1206,0.7000000000000001,0,0,0,0,21.700000000000003,0,0,0,0,0.263,91.65,139.76,0.13,983,3,51,0.9 +2016,2,17,14,30,22.900000000000002,0.86,0.1159,0.7000000000000001,0,0,0,0,21.700000000000003,0,0,33,0,0.262,92.95,140.07,0.13,983,3,44,0.8 +2016,2,17,15,30,22.6,0.91,0.1298,0.7000000000000001,0,0,0,0,21.700000000000003,0,0,0,0,0.262,94.48,135.36,0.13,983,3,34,0.6000000000000001 +2016,2,17,16,30,22.400000000000002,0.9400000000000001,0.1369,0.7000000000000001,0,0,0,0,21.6,0,0,0,0,0.262,95.32000000000001,126.95,0.13,983,3,24,0.5 +2016,2,17,17,30,22.200000000000003,0.93,0.13290000000000002,0.7000000000000001,0,0,0,0,21.6,0,0,0,0,0.261,96.28,116.31,0.13,983,3.1,14,0.5 +2016,2,17,18,30,22.200000000000003,0.9500000000000001,0.1393,0.7000000000000001,0,0,0,0,21.6,0,0,0,0,0.261,96.23,104.4,0.13,984,3.1,5,0.5 +2016,2,17,19,30,22.900000000000002,0.96,0.1431,0.7000000000000001,0,0,0,0,21.6,0,0,0,0,0.26,92.21000000000001,91.75,0.13,984,3.2,175,1 +2016,2,17,20,30,24.700000000000003,0.97,0.1364,0.7000000000000001,64,416,146,0,21.6,64,416,0,146,0.26,82.68,78.62,0.13,985,3.2,347,1.4000000000000001 +2016,2,17,21,30,26.900000000000002,0.98,0.126,0.7000000000000001,94,683,378,0,21.3,94,683,0,378,0.259,71.39,65.39,0.13,985,3.2,341,1.5 +2016,2,17,22,30,29.1,1,0.111,0.7000000000000001,107,817,609,0,20.6,107,817,0,609,0.258,60.38,52.11,0.13,985,3.2,335,1.4000000000000001 +2016,2,17,23,30,30.200000000000003,1,0.1005,0.7000000000000001,115,888,805,0,19.400000000000002,115,888,0,805,0.258,52.550000000000004,39.04,0.13,984,3.3000000000000003,331,1.3 +2016,2,18,0,30,32.9,0.99,0.0874,0.7000000000000001,115,933,948,0,18.3,280,623,0,836,0.256,42.1,26.77,0.13,983,3.3000000000000003,319,1.3 +2016,2,18,1,30,34.2,0.97,0.0898,0.7000000000000001,121,945,1023,0,17.6,121,945,0,1023,0.255,37.46,17.330000000000002,0.13,982,3.4000000000000004,313,1.3 +2016,2,18,2,30,35,0.9500000000000001,0.09380000000000001,0.7000000000000001,128,936,1024,0,17.2,128,936,33,1024,0.254,34.82,16.71,0.13,981,3.4000000000000004,310,1.3 +2016,2,18,3,30,35.1,1.01,0.1246,0.7000000000000001,135,904,951,0,16.8,135,904,0,951,0.254,33.87,25.55,0.13,981,3.4000000000000004,313,1.2000000000000002 +2016,2,18,4,30,34.7,0.98,0.1288,0.7000000000000001,130,866,815,0,16.6,158,755,0,756,0.254,34.04,37.67,0.13,980,3.5,329,1 +2016,2,18,5,30,33.7,0.93,0.12710000000000002,0.7000000000000001,117,802,625,7,16.5,244,424,0,513,0.254,35.82,50.7,0.13,980,3.5,188,1 +2016,2,18,6,30,32,0.9,0.1285,0.7000000000000001,99,685,399,0,17,99,685,0,399,0.254,40.78,63.980000000000004,0.13,981,3.5,42,1.4000000000000001 +2016,2,18,7,30,29.400000000000002,0.88,0.1259,0.7000000000000001,67,453,167,0,18.6,67,453,0,167,0.255,52.25,77.24,0.13,982,3.6,54,1.7000000000000002 +2016,2,18,8,30,27.3,0.8300000000000001,0.1247,0.7000000000000001,6,20,6,0,20.5,6,20,0,6,0.256,66.32000000000001,89.92,0.13,983,3.7,57,1.7000000000000002 +2016,2,18,9,30,26.200000000000003,0.81,0.1303,0.7000000000000001,0,0,0,0,21.200000000000003,0,0,0,0,0.256,73.87,103.15,0.13,984,3.8000000000000003,59,1.7000000000000002 +2016,2,18,10,30,25.5,0.8,0.13490000000000002,0.7000000000000001,0,0,0,0,21.900000000000002,0,0,0,0,0.256,80.41,115.2,0.13,985,4,62,1.6 +2016,2,18,11,30,24.900000000000002,0.78,0.1384,0.7000000000000001,0,0,0,7,22.400000000000002,0,0,0,0,0.255,86.15,126.07000000000001,0.13,985,4.1000000000000005,62,1.6 +2016,2,18,12,30,24.5,0.78,0.1555,0.7000000000000001,0,0,0,0,22.6,0,0,0,0,0.254,89.4,134.85,0.13,985,4.1000000000000005,62,1.5 +2016,2,18,13,30,24.200000000000003,0.78,0.1681,0.7000000000000001,0,0,0,0,22.700000000000003,0,0,0,0,0.254,91.16,140.11,0.13,985,4.2,62,1.4000000000000001 +2016,2,18,14,30,24,0.75,0.168,0.7000000000000001,0,0,0,0,22.6,0,0,33,0,0.254,92.12,140.42000000000002,0.13,985,4.2,61,1.3 +2016,2,18,15,30,23.8,0.8,0.18560000000000001,0.7000000000000001,0,0,0,0,22.6,0,0,0,0,0.254,92.98,135.66,0.13,985,4.2,61,1.1 +2016,2,18,16,30,23.700000000000003,0.8200000000000001,0.1905,0.7000000000000001,0,0,0,0,22.6,0,0,0,0,0.255,93.29,127.2,0.13,985,4.3,59,1 +2016,2,18,17,30,23.6,0.81,0.18030000000000002,0.7000000000000001,0,0,0,0,22.5,0,0,33,0,0.256,93.52,116.52,0.13,986,4.3,56,0.9 +2016,2,18,18,30,23.5,0.8200000000000001,0.1794,0.7000000000000001,0,0,0,0,22.400000000000002,0,0,0,0,0.257,93.82000000000001,104.57000000000001,0.13,987,4.3,56,0.9 +2016,2,18,19,30,24,0.8300000000000001,0.1756,0.7000000000000001,0,0,0,0,22.400000000000002,0,0,0,0,0.257,90.9,91.91,0.13,987,4.4,51,1.2000000000000002 +2016,2,18,20,30,25.200000000000003,0.8200000000000001,0.1651,0.7000000000000001,68,351,136,0,22.400000000000002,68,351,0,136,0.258,84.37,78.75,0.13,988,4.4,41,1.5 +2016,2,18,21,30,26.8,0.85,0.1645,0.7000000000000001,107,614,361,0,22.1,107,614,0,361,0.257,75.32000000000001,65.52,0.13,988,4.4,37,1.7000000000000002 +2016,2,18,22,30,28.200000000000003,0.88,0.16010000000000002,0.7000000000000001,127,750,586,0,21.700000000000003,127,750,0,586,0.257,67.83,52.24,0.13,989,4.4,42,1.7000000000000002 +2016,2,18,23,30,28.900000000000002,0.9,0.1534,0.7000000000000001,140,825,779,0,21.3,185,630,0,673,0.257,63.59,39.2,0.13,989,4.4,46,1.7000000000000002 +2016,2,19,0,30,30,0.91,0.15610000000000002,0.7000000000000001,148,865,919,3,21.1,341,458,0,749,0.256,58.83,26.98,0.13,988,4.4,56,2 +2016,2,19,1,30,30.5,0.92,0.1497,0.7000000000000001,147,891,996,7,21,456,104,0,555,0.255,56.86,17.64,0.13,988,4.4,59,2.1 +2016,2,19,2,30,30.900000000000002,0.92,0.1326,0.7000000000000001,139,905,1004,8,20.8,186,8,33,194,0.254,55.1,17.04,0.13,987,4.4,60,2.2 +2016,2,19,3,30,30.700000000000003,0.84,0.109,0.7000000000000001,129,898,937,8,20.8,89,1,0,90,0.254,55.68,25.8,0.13,987,4.5,61,2.3000000000000003 +2016,2,19,4,30,29.900000000000002,0.86,0.1174,0.7000000000000001,124,857,801,8,21.1,179,11,0,188,0.254,59.22,37.86,0.13,987,4.6000000000000005,62,2.3000000000000003 +2016,2,19,5,30,28.6,0.85,0.1193,0.7000000000000001,115,787,612,0,21.5,141,663,33,559,0.254,65.67,50.870000000000005,0.13,987,4.7,63,2.4000000000000004 +2016,2,19,6,30,27.200000000000003,0.88,0.13290000000000002,0.7000000000000001,101,656,387,0,22.1,129,466,0,332,0.255,73.93,64.15,0.13,987,4.800000000000001,64,2.2 +2016,2,19,7,30,25.700000000000003,0.89,0.1468,0.7000000000000001,70,403,158,0,22.700000000000003,75,226,67,124,0.256,83.5,77.41,0.13,988,4.800000000000001,69,2 +2016,2,19,8,30,24.700000000000003,0.87,0.15940000000000001,0.7000000000000001,5,12,5,0,23,3,0,33,3,0.256,90.11,90.07000000000001,0.13,988,4.800000000000001,75,1.9000000000000001 +2016,2,19,9,30,24,0.87,0.18150000000000002,0.7000000000000001,0,0,0,8,22.900000000000002,0,0,0,0,0.255,93.39,103.36,0.13,989,4.800000000000001,72,2 +2016,2,19,10,30,23.5,0.84,0.2008,0.7000000000000001,0,0,0,7,22.6,0,0,0,0,0.252,94.44,115.44,0.13,990,4.800000000000001,59,2 +2016,2,19,11,30,23.1,0.84,0.2033,0.7000000000000001,0,0,0,8,22.3,0,0,0,0,0.251,95.10000000000001,126.34,0.13,991,4.6000000000000005,53,1.7000000000000002 +2016,2,19,12,30,22.700000000000003,0.84,0.1739,0.7000000000000001,0,0,0,8,22.200000000000003,0,0,0,0,0.25,96.75,135.17000000000002,0.13,990,4.4,52,1.3 +2016,2,19,13,30,22.400000000000002,0.8200000000000001,0.1529,0.7000000000000001,0,0,0,7,22.1,0,0,0,0,0.25,97.98,140.46,0.13,990,4.3,50,1 +2016,2,19,14,30,22.200000000000003,0.78,0.14650000000000002,0.7000000000000001,0,0,0,4,21.900000000000002,0,0,33,0,0.25,98.29,140.76,0.13,990,4.3,52,0.8 +2016,2,19,15,30,22,0.78,0.1439,0.7000000000000001,0,0,0,4,21.700000000000003,0,0,0,0,0.251,98.39,135.96,0.13,990,4.2,51,0.8 +2016,2,19,16,30,21.8,0.78,0.13920000000000002,0.7000000000000001,0,0,0,4,21.6,0,0,0,0,0.253,98.5,127.45,0.13,990,4.2,49,0.7000000000000001 +2016,2,19,17,30,21.6,0.77,0.1318,0.7000000000000001,0,0,0,4,21.400000000000002,0,0,0,0,0.255,98.55,116.73,0.13,990,4.1000000000000005,49,0.7000000000000001 +2016,2,19,18,30,21.5,0.77,0.1279,0.7000000000000001,0,0,0,4,21.200000000000003,0,0,0,0,0.257,98.02,104.75,0.13,991,4,50,0.7000000000000001 +2016,2,19,19,30,22,0.77,0.1287,0.7000000000000001,0,0,0,4,21.1,0,0,0,0,0.258,94.91,92.05,0.13,992,4,50,0.9 +2016,2,19,20,30,23.200000000000003,0.77,0.13340000000000002,0.7000000000000001,63,384,137,4,21.700000000000003,69,55,100,80,0.258,91.45,78.89,0.13,992,4,45,1.3 +2016,2,19,21,30,24.8,0.78,0.13770000000000002,0.7000000000000001,100,641,364,0,21.900000000000002,113,566,0,346,0.258,84,65.65,0.13,993,4,41,1.4000000000000001 +2016,2,19,22,30,26.900000000000002,0.8,0.1379,0.7000000000000001,118,773,590,0,21.1,133,722,0,574,0.258,70.37,52.38,0.13,993,4,47,1.3 +2016,2,19,23,30,27.900000000000002,0.85,0.1263,0.7000000000000001,128,850,785,0,19.900000000000002,244,584,0,696,0.258,61.81,39.35,0.13,993,4,53,1.2000000000000002 +2016,2,20,0,30,30.3,0.88,0.11950000000000001,0.7000000000000001,132,895,928,3,19.1,433,231,0,638,0.257,51.06,27.19,0.13,992,4,76,1.2000000000000002 +2016,2,20,1,30,31.3,0.87,0.11660000000000001,0.7000000000000001,135,914,1004,3,18.5,203,11,0,213,0.257,46.5,17.96,0.13,991,3.9000000000000004,84,1.4000000000000001 +2016,2,20,2,30,31.8,0.86,0.1149,0.7000000000000001,132,919,1009,3,18.1,410,214,33,614,0.257,44.17,17.38,0.13,991,3.9000000000000004,87,1.7000000000000002 +2016,2,20,3,30,31.8,0.86,0.1023,0.7000000000000001,125,911,943,3,17.900000000000002,210,10,0,219,0.256,43.53,26.05,0.13,990,3.9000000000000004,86,2 +2016,2,20,4,30,31.3,0.84,0.1032,0.7000000000000001,118,877,809,3,17.8,296,175,0,434,0.256,44.44,38.06,0.13,990,3.9000000000000004,84,2.3000000000000003 +2016,2,20,5,30,30.3,0.8300000000000001,0.10360000000000001,0.7000000000000001,108,813,619,0,17.7,195,555,0,544,0.257,46.800000000000004,51.050000000000004,0.13,990,3.8000000000000003,82,2.5 +2016,2,20,6,30,28.700000000000003,0.8200000000000001,0.1085,0.7000000000000001,92,698,394,0,17.8,92,698,0,394,0.257,51.67,64.32000000000001,0.13,991,3.7,79,2.5 +2016,2,20,7,30,26.700000000000003,0.81,0.1063,0.7000000000000001,62,470,163,0,18.2,62,470,0,163,0.258,59.54,77.59,0.13,992,3.6,77,2 +2016,2,20,8,30,25,0.78,0.1005,0.7000000000000001,5,21,5,0,19,5,21,0,5,0.259,69.31,90.22,0.13,993,3.5,76,1.6 +2016,2,20,9,30,23.900000000000002,0.74,0.097,0.7000000000000001,0,0,0,0,19.5,0,0,0,0,0.258,76.63,103.57000000000001,0.13,994,3.4000000000000004,78,1.3 +2016,2,20,10,30,23.1,0.68,0.0955,0.7000000000000001,0,0,0,0,20,0,0,0,0,0.258,82.93,115.68,0.13,994,3.2,83,1.1 +2016,2,20,11,30,22.700000000000003,0.62,0.0969,0.7000000000000001,0,0,0,0,20.400000000000002,0,0,0,0,0.257,86.89,126.62,0.13,995,3.1,88,1 +2016,2,20,12,30,22.5,0.63,0.101,0.7000000000000001,0,0,0,0,20.6,0,0,0,0,0.257,88.82000000000001,135.49,0.13,995,3.1,94,1 +2016,2,20,13,30,22.3,0.65,0.10020000000000001,0.7000000000000001,0,0,0,0,20.6,0,0,0,0,0.257,89.87,140.82,0.13,994,3,99,1 +2016,2,20,14,30,22.200000000000003,0.62,0.0947,0.7000000000000001,0,0,0,0,20.5,0,0,33,0,0.257,90.06,141.11,0.13,994,3,104,1 +2016,2,20,15,30,22,0.63,0.0978,0.7000000000000001,0,0,0,0,20.400000000000002,0,0,0,0,0.258,90.9,136.27,0.13,994,3,111,0.9 +2016,2,20,16,30,21.700000000000003,0.6,0.09960000000000001,0.7000000000000001,0,0,0,0,20.400000000000002,0,0,0,0,0.259,92.37,127.7,0.13,994,3,117,0.9 +2016,2,20,17,30,21.6,0.5700000000000001,0.0936,0.7000000000000001,0,0,0,0,20.400000000000002,0,0,0,0,0.26,92.63,116.93,0.13,994,3,120,0.9 +2016,2,20,18,30,21.5,0.5700000000000001,0.0823,0.7000000000000001,0,0,0,0,20.3,0,0,0,0,0.261,92.76,104.92,0.13,995,2.9000000000000004,123,1 +2016,2,20,19,30,22.3,0.59,0.0747,0.7000000000000001,0,0,0,0,20.200000000000003,0,0,0,0,0.261,87.7,92.2,0.13,995,2.9000000000000004,123,1.5 +2016,2,20,20,30,23.900000000000002,0.62,0.0666,0.7000000000000001,50,502,146,0,20,50,502,8,146,0.261,78.99,79.02,0.13,996,2.8000000000000003,122,2.4000000000000004 +2016,2,20,21,30,25.6,0.63,0.0651,0.7000000000000001,75,750,383,0,19.200000000000003,75,750,0,383,0.261,67.59,65.78,0.13,997,2.8000000000000003,120,3 +2016,2,20,22,30,27.200000000000003,0.62,0.063,0.7000000000000001,90,865,616,0,18.3,90,865,0,616,0.261,58.26,52.51,0.13,997,2.7,119,3.2 +2016,2,20,23,30,27.900000000000002,0.6,0.060200000000000004,0.7000000000000001,98,927,813,0,17.6,140,784,0,745,0.261,53.58,39.51,0.13,997,2.7,118,3.2 +2016,2,21,0,30,29.5,0.58,0.0579,0.7000000000000001,102,964,958,0,17,102,964,0,958,0.261,46.83,27.400000000000002,0.13,996,2.7,116,3.4000000000000004 +2016,2,21,1,30,30.1,0.5700000000000001,0.055600000000000004,0.7000000000000001,104,981,1036,0,16.400000000000002,104,981,0,1036,0.261,43.7,18.27,0.13,995,2.6,114,3.5 +2016,2,21,2,30,30.400000000000002,0.55,0.0558,0.7000000000000001,106,978,1038,0,16,106,978,33,1038,0.261,41.99,17.73,0.13,995,2.6,113,3.6 +2016,2,21,3,30,30.200000000000003,0.49,0.0661,0.7000000000000001,109,957,967,0,15.9,109,957,0,967,0.261,42.160000000000004,26.310000000000002,0.13,994,2.6,113,3.6 +2016,2,21,4,30,29.5,0.47000000000000003,0.0675,0.7000000000000001,104,925,830,0,16,104,925,0,830,0.26,44.06,38.27,0.13,994,2.6,113,3.7 +2016,2,21,5,30,28.5,0.46,0.0675,0.7000000000000001,95,866,637,0,16.1,95,866,0,637,0.26,47.07,51.230000000000004,0.13,995,2.6,113,3.6 +2016,2,21,6,30,27,0.45,0.06770000000000001,0.7000000000000001,80,760,407,0,16.3,80,760,0,407,0.26,52.050000000000004,64.49,0.13,995,2.6,114,3.3000000000000003 +2016,2,21,7,30,25.3,0.44,0.06720000000000001,0.7000000000000001,56,534,169,0,16.6,56,534,0,169,0.26,58.61,77.77,0.13,996,2.5,114,2.7 +2016,2,21,8,30,23.900000000000002,0.44,0.0674,0.7000000000000001,5,26,5,0,17.2,5,26,0,5,0.259,66.09,90.99,0.13,997,2.5,116,2 +2016,2,21,9,30,23.1,0.47000000000000003,0.06770000000000001,0.7000000000000001,0,0,0,0,17.8,0,0,0,0,0.259,72.04,103.78,0.13,998,2.4000000000000004,121,1.7000000000000002 +2016,2,21,10,30,22.700000000000003,0.49,0.0669,0.7000000000000001,0,0,0,0,18.2,0,0,0,0,0.258,75.64,115.92,0.13,998,2.5,125,1.7000000000000002 +2016,2,21,11,30,22.400000000000002,0.49,0.0673,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.258,78.32000000000001,126.9,0.13,998,2.5,128,1.6 +2016,2,21,12,30,22.1,0.51,0.0716,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.258,80.98,135.81,0.13,998,2.6,129,1.4000000000000001 +2016,2,21,13,30,21.900000000000002,0.51,0.0756,0.7000000000000001,0,0,0,0,18.900000000000002,0,0,0,0,0.257,83.11,141.17000000000002,0.13,997,2.6,131,1.4000000000000001 +2016,2,21,14,30,21.700000000000003,0.48,0.0789,0.7000000000000001,0,0,0,0,19,0,0,33,0,0.257,84.79,141.46,0.13,997,2.7,133,1.3 +2016,2,21,15,30,21.400000000000002,0.46,0.083,0.7000000000000001,0,0,0,0,19.1,0,0,0,0,0.257,86.83,136.57,0.13,996,2.7,135,1.3 +2016,2,21,16,30,21.1,0.43,0.0886,0.7000000000000001,0,0,0,0,19.3,0,0,0,0,0.257,89.22,127.95,0.13,996,2.7,139,1.1 +2016,2,21,17,30,20.8,0.41000000000000003,0.09290000000000001,0.7000000000000001,0,0,0,0,19.400000000000002,0,0,0,0,0.258,91.79,117.13,0.13,996,2.7,142,1 +2016,2,21,18,30,20.6,0.43,0.0912,0.7000000000000001,0,0,0,0,19.5,0,0,0,0,0.258,93.41,105.09,0.13,997,2.7,142,1 +2016,2,21,19,30,21.200000000000003,0.44,0.08650000000000001,0.7000000000000001,0,0,0,0,19.5,0,0,0,0,0.259,90.18,92.35000000000001,0.13,997,2.7,139,1.6 +2016,2,21,20,30,22.700000000000003,0.49,0.0741,0.7000000000000001,53,486,144,0,19.6,53,486,0,144,0.26,82.63,79.15,0.13,998,2.7,134,2.5 +2016,2,21,21,30,24.6,0.56,0.0627,0.7000000000000001,76,750,382,0,19,76,750,0,382,0.261,71.23,65.91,0.13,998,2.7,128,2.9000000000000004 +2016,2,21,22,30,26.400000000000002,0.5700000000000001,0.0632,0.7000000000000001,90,860,612,0,18.1,90,860,0,612,0.262,60.5,52.65,0.13,998,2.7,123,3 +2016,2,21,23,30,27.200000000000003,0.55,0.06860000000000001,0.7000000000000001,102,917,808,0,17.6,144,778,0,743,0.263,55.67,39.67,0.13,998,2.7,121,3.1 +2016,2,22,0,30,29.1,0.54,0.0729,0.7000000000000001,112,946,950,0,17.1,179,648,0,753,0.264,48.370000000000005,27.61,0.13,997,2.7,117,3.2 +2016,2,22,1,30,29.8,0.52,0.0758,0.7000000000000001,117,959,1026,0,16.7,207,662,0,834,0.264,45.38,18.59,0.13,996,2.7,115,3.3000000000000003 +2016,2,22,2,30,30.1,0.49,0.0782,0.7000000000000001,117,958,1028,0,16.5,336,518,50,828,0.263,44.01,18.080000000000002,0.13,995,2.8000000000000003,114,3.4000000000000004 +2016,2,22,3,30,30,0.5,0.0753,0.7000000000000001,114,944,958,0,16.400000000000002,141,873,0,922,0.262,43.95,26.57,0.13,995,2.8000000000000003,113,3.5 +2016,2,22,4,30,29.400000000000002,0.47000000000000003,0.07740000000000001,0.7000000000000001,108,909,820,0,16.400000000000002,108,909,0,820,0.261,45.44,38.480000000000004,0.13,994,2.9000000000000004,113,3.5 +2016,2,22,5,30,28.3,0.46,0.07640000000000001,0.7000000000000001,99,847,627,0,16.5,99,847,0,627,0.261,48.76,51.42,0.13,994,2.9000000000000004,113,3.5 +2016,2,22,6,30,26.900000000000002,0.46,0.08080000000000001,0.7000000000000001,86,728,397,0,16.7,86,728,0,397,0.26,53.6,64.68,0.13,995,3,113,3.3000000000000003 +2016,2,22,7,30,25.3,0.45,0.08750000000000001,0.7000000000000001,60,480,160,0,17.1,60,480,0,160,0.26,60.35,77.95,0.13,996,3,113,2.7 +2016,2,22,8,30,24,0.44,0.09040000000000001,0.7000000000000001,4,14,4,0,17.6,4,14,0,4,0.26,67.45,91.18,0.13,996,2.9000000000000004,114,2.1 +2016,2,22,9,30,23.200000000000003,0.45,0.08610000000000001,0.7000000000000001,0,0,0,0,18.1,0,0,0,0,0.26,72.84,103.99000000000001,0.13,997,2.8000000000000003,119,1.7000000000000002 +2016,2,22,10,30,22.6,0.47000000000000003,0.085,0.7000000000000001,0,0,0,0,18.3,0,0,0,0,0.259,76.51,116.16,0.13,997,2.6,125,1.5 +2016,2,22,11,30,22,0.47000000000000003,0.08460000000000001,0.7000000000000001,0,0,0,0,18.3,0,0,0,0,0.258,79.37,127.18,0.13,997,2.4000000000000004,129,1.3 +2016,2,22,12,30,21.5,0.51,0.0859,0.7000000000000001,0,0,0,0,18.2,0,0,0,0,0.257,81.39,136.14000000000001,0.13,996,2.3000000000000003,130,1.2000000000000002 +2016,2,22,13,30,21.1,0.54,0.0859,0.7000000000000001,0,0,0,0,18.1,0,0,0,0,0.257,83.14,141.53,0.13,996,2.1,129,1.1 +2016,2,22,14,30,20.6,0.53,0.0824,0.7000000000000001,0,0,0,0,18.1,0,0,33,0,0.257,85.43,141.81,0.13,995,2.1,128,1 +2016,2,22,15,30,20.3,0.55,0.08080000000000001,0.7000000000000001,0,0,0,0,18,0,0,0,0,0.258,86.7,136.87,0.13,994,2,129,0.9 +2016,2,22,16,30,19.900000000000002,0.55,0.07780000000000001,0.7000000000000001,0,0,0,0,17.900000000000002,0,0,0,0,0.26,88.44,128.2,0.13,994,2,132,0.9 +2016,2,22,17,30,19.700000000000003,0.54,0.07690000000000001,0.7000000000000001,0,0,0,0,17.900000000000002,0,0,0,0,0.26,89.17,117.33,0.13,994,2.1,135,0.9 +2016,2,22,18,30,19.6,0.54,0.0767,0.7000000000000001,0,0,0,0,17.8,0,0,0,0,0.261,89.41,105.25,0.13,994,2.1,137,0.9 +2016,2,22,19,30,20.3,0.55,0.0758,0.7000000000000001,0,0,0,0,17.8,0,0,0,0,0.261,85.65,92.5,0.13,995,2.1,137,1.4000000000000001 +2016,2,22,20,30,22.1,0.5700000000000001,0.0722,0.7000000000000001,52,501,145,0,17.900000000000002,52,501,17,145,0.261,77.02,79.29,0.13,995,2.2,131,2.2 +2016,2,22,21,30,24.1,0.61,0.0601,0.7000000000000001,73,770,386,0,17.5,73,770,0,386,0.261,66.82000000000001,66.04,0.13,996,2.2,123,2.8000000000000003 +2016,2,22,22,30,25.8,0.66,0.0512,0.7000000000000001,82,890,620,0,16.900000000000002,82,890,0,620,0.261,58.03,52.78,0.13,995,2.3000000000000003,118,3 +2016,2,22,23,30,26.6,0.68,0.043000000000000003,0.7000000000000001,88,953,820,3,16.6,231,450,0,577,0.261,54.28,39.83,0.13,995,2.3000000000000003,116,3.1 +2016,2,23,0,30,28.3,0.6900000000000001,0.0395,0.7000000000000001,91,985,962,3,16.400000000000002,262,408,0,623,0.261,48.36,27.830000000000002,0.13,994,2.4000000000000004,112,3.2 +2016,2,23,1,30,29,0.7000000000000001,0.0419,0.7000000000000001,95,996,1037,0,16.2,239,530,0,740,0.26,46.03,18.91,0.13,993,2.4000000000000004,110,3.3000000000000003 +2016,2,23,2,30,29.400000000000002,0.7000000000000001,0.046400000000000004,0.7000000000000001,106,979,1035,0,16.2,106,979,33,1035,0.259,44.81,18.43,0.13,993,2.5,108,3.4000000000000004 +2016,2,23,3,30,29.400000000000002,0.42,0.08900000000000001,0.7000000000000001,123,936,958,0,16.2,150,866,0,923,0.258,44.78,26.84,0.13,992,2.5,107,3.4000000000000004 +2016,2,23,4,30,28.900000000000002,0.43,0.0918,0.7000000000000001,115,903,820,0,16.1,149,758,0,741,0.258,45.97,38.7,0.13,992,2.5,106,3.3000000000000003 +2016,2,23,5,30,28,0.47000000000000003,0.08420000000000001,0.7000000000000001,101,850,629,0,16.1,145,658,0,554,0.257,48.32,51.61,0.13,992,2.5,105,3.2 +2016,2,23,6,30,26.700000000000003,0.54,0.0781,0.7000000000000001,82,749,400,0,16.1,82,749,0,400,0.257,52.32,64.86,0.13,992,2.5,104,2.9000000000000004 +2016,2,23,7,30,25,0.6,0.0736,0.7000000000000001,56,523,163,0,16.400000000000002,56,523,0,163,0.258,58.83,78.14,0.13,992,2.4000000000000004,100,2 +2016,2,23,8,30,23.5,0.63,0.0712,0.7000000000000001,5,22,4,0,17.2,5,22,0,4,0.259,67.89,91.38,0.13,993,2.4000000000000004,96,1.3 +2016,2,23,9,30,22.6,0.64,0.07010000000000001,0.7000000000000001,0,0,0,0,17.900000000000002,0,0,0,0,0.26,74.83,104.21000000000001,0.13,994,2.3000000000000003,95,1 +2016,2,23,10,30,22,0.62,0.0693,0.7000000000000001,0,0,0,0,18.3,0,0,0,0,0.26,79.47,116.41,0.13,994,2.3000000000000003,98,0.9 +2016,2,23,11,30,21.5,0.59,0.0683,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.26,83.11,127.47,0.13,994,2.2,102,0.8 +2016,2,23,12,30,21.200000000000003,0.5700000000000001,0.0707,0.7000000000000001,0,0,0,0,18.6,0,0,0,0,0.26,85.10000000000001,136.47,0.13,993,2.2,106,0.8 +2016,2,23,13,30,21,0.5700000000000001,0.0723,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.26,86.47,141.9,0.13,993,2.2,109,0.7000000000000001 +2016,2,23,14,30,20.8,0.55,0.0716,0.7000000000000001,0,0,0,0,18.6,0,0,33,0,0.259,87.44,142.17000000000002,0.13,992,2.1,113,0.7000000000000001 +2016,2,23,15,30,20.5,0.56,0.0772,0.7000000000000001,0,0,0,0,18.6,0,0,0,0,0.259,88.81,137.18,0.13,992,2.1,118,0.7000000000000001 +2016,2,23,16,30,20.3,0.55,0.07880000000000001,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.26,89.59,128.44,0.13,992,2,121,0.7000000000000001 +2016,2,23,17,30,20,0.53,0.0761,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.26,90.84,117.53,0.13,992,2,123,0.7000000000000001 +2016,2,23,18,30,19.900000000000002,0.55,0.0753,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.261,91.04,105.42,0.13,993,2,125,0.7000000000000001 +2016,2,23,19,30,20.700000000000003,0.5700000000000001,0.0728,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.261,86.53,92.64,0.13,993,2,125,1 +2016,2,23,20,30,22.6,0.5700000000000001,0.0664,0.7000000000000001,50,512,144,0,18.400000000000002,50,512,0,144,0.26,77.06,79.42,0.13,994,2,118,1.6 +2016,2,23,21,30,24.6,0.61,0.0568,0.7000000000000001,72,778,386,0,17.5,72,778,0,386,0.26,64.58,66.16,0.13,994,2,110,1.9000000000000001 +2016,2,23,22,30,26.3,0.66,0.0504,0.7000000000000001,83,894,622,0,16.7,83,894,0,622,0.259,55.730000000000004,52.92,0.13,994,2.1,105,2 +2016,2,23,23,30,27.1,0.72,0.0458,0.7000000000000001,90,956,822,0,16.2,90,956,0,822,0.259,51.39,39.99,0.13,993,2.1,103,2 +2016,2,24,0,30,29.1,0.74,0.043500000000000004,0.7000000000000001,93,989,966,0,15.700000000000001,93,989,0,966,0.258,44.32,28.05,0.13,992,2.1,95,2 +2016,2,24,1,30,30.1,0.76,0.041800000000000004,0.7000000000000001,94,1005,1043,0,15.200000000000001,94,1005,0,1043,0.258,40.54,19.240000000000002,0.13,991,2.1,90,2 +2016,2,24,2,30,30.6,0.76,0.0413,0.7000000000000001,98,999,1044,0,14.9,98,999,33,1044,0.257,38.5,18.79,0.13,991,2.1,86,2.1 +2016,2,24,3,30,30.700000000000003,0.46,0.0621,0.7000000000000001,106,971,970,0,14.600000000000001,106,971,0,970,0.257,37.63,27.12,0.13,990,2.1,83,2.2 +2016,2,24,4,30,30.3,0.46,0.0625,0.7000000000000001,101,939,832,0,14.5,101,939,0,832,0.257,38.31,38.92,0.13,990,2.1,81,2.3000000000000003 +2016,2,24,5,30,29.400000000000002,0.46,0.0629,0.7000000000000001,92,880,636,0,14.600000000000001,92,880,0,636,0.257,40.57,51.81,0.13,990,2.1,79,2.4000000000000004 +2016,2,24,6,30,27.900000000000002,0.45,0.0634,0.7000000000000001,78,771,403,0,14.9,78,771,0,403,0.257,45.08,65.05,0.13,990,2.1,76,2.2 +2016,2,24,7,30,25.700000000000003,0.44,0.0639,0.7000000000000001,54,536,162,0,15.600000000000001,54,536,0,162,0.257,53.56,78.33,0.13,991,2.1,72,1.6 +2016,2,24,8,30,23.700000000000003,0.44,0.0631,0.7000000000000001,0,0,0,0,17,0,0,0,0,0.257,66.07000000000001,91.59,0.13,992,2.1,70,1.1 +2016,2,24,9,30,22.6,0.45,0.061500000000000006,0.7000000000000001,0,0,0,0,17.7,0,0,0,0,0.257,73.63,104.43,0.13,992,2.1,70,1 +2016,2,24,10,30,21.8,0.46,0.059300000000000005,0.7000000000000001,0,0,0,0,18.2,0,0,0,0,0.256,79.81,116.66,0.13,993,2.1,70,0.8 +2016,2,24,11,30,21.1,0.47000000000000003,0.0572,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.255,84.88,127.76,0.13,993,2.1,70,0.7000000000000001 +2016,2,24,12,30,20.6,0.48,0.054900000000000004,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.253,87.99,136.81,0.13,992,2.1,71,0.6000000000000001 +2016,2,24,13,30,20.200000000000003,0.5,0.0529,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.252,90.13,142.27,0.13,992,2,76,0.6000000000000001 +2016,2,24,14,30,19.8,0.51,0.0519,0.7000000000000001,0,0,0,0,18.5,0,0,33,0,0.251,92.27,142.52,0.13,992,2,87,0.6000000000000001 +2016,2,24,15,30,19.400000000000002,0.53,0.0523,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.25,94.22,137.48,0.13,991,2.1,99,0.7000000000000001 +2016,2,24,16,30,19.1,0.54,0.0539,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.25,95.74000000000001,128.69,0.13,991,2.1,106,0.7000000000000001 +2016,2,24,17,30,18.900000000000002,0.5700000000000001,0.0548,0.7000000000000001,0,0,0,0,18.3,0,0,0,0,0.25,96.56,117.73,0.13,992,2.1,109,0.7000000000000001 +2016,2,24,18,30,18.900000000000002,0.6,0.0558,0.7000000000000001,0,0,0,0,18.2,0,0,0,0,0.25,95.77,105.59,0.13,992,2.2,114,0.7000000000000001 +2016,2,24,19,30,19.8,0.63,0.055900000000000005,0.7000000000000001,0,0,0,0,18.1,0,0,0,0,0.249,89.87,92.78,0.13,992,2.2,116,0.7000000000000001 +2016,2,24,20,30,22.200000000000003,0.66,0.053700000000000005,0.7000000000000001,47,530,143,0,18.1,47,530,0,143,0.249,77.42,79.55,0.13,992,2.2,98,0.7000000000000001 +2016,2,24,21,30,24.700000000000003,0.6900000000000001,0.0512,0.7000000000000001,69,781,383,0,17.3,69,781,0,383,0.249,63.4,66.29,0.13,992,2.2,86,0.7000000000000001 +2016,2,24,22,30,26.700000000000003,0.73,0.0482,0.7000000000000001,81,893,618,0,16.5,81,893,0,618,0.249,53.730000000000004,53.050000000000004,0.13,992,2.2,97,0.8 +2016,2,24,23,30,27.6,0.77,0.0458,0.7000000000000001,89,953,817,0,16,89,953,0,817,0.249,49.31,40.15,0.13,992,2.2,106,0.8 +2016,2,25,0,30,30.200000000000003,0.8200000000000001,0.0444,0.7000000000000001,92,985,960,0,15.5,92,985,0,960,0.249,41.09,28.27,0.13,991,2.2,111,1.1 +2016,2,25,1,30,31.5,0.86,0.0431,0.7000000000000001,94,1000,1036,0,15,94,1000,0,1036,0.249,36.89,19.56,0.13,990,2.3000000000000003,104,1.3 +2016,2,25,2,30,32.300000000000004,0.89,0.0424,0.7000000000000001,96,997,1038,0,14.5,96,997,33,1038,0.249,34.230000000000004,19.150000000000002,0.13,989,2.3000000000000003,95,1.5 +2016,2,25,3,30,32.6,0.72,0.0505,0.7000000000000001,98,978,966,0,14.4,98,978,0,966,0.249,33.25,27.400000000000002,0.13,988,2.3000000000000003,88,1.7000000000000002 +2016,2,25,4,30,32.300000000000004,0.72,0.052000000000000005,0.7000000000000001,93,944,825,0,14.4,93,944,0,825,0.249,33.980000000000004,39.15,0.13,988,2.4000000000000004,82,2 +2016,2,25,5,30,31.3,0.71,0.054200000000000005,0.7000000000000001,85,885,630,0,14.600000000000001,85,885,0,630,0.25,36.45,52.01,0.13,988,2.4000000000000004,76,2.2 +2016,2,25,6,30,29.5,0.7000000000000001,0.056900000000000006,0.7000000000000001,74,774,398,0,15.100000000000001,74,774,0,398,0.25,41.49,65.24,0.13,988,2.5,69,2.3000000000000003 +2016,2,25,7,30,26.900000000000002,0.6900000000000001,0.0599,0.7000000000000001,52,534,158,0,15.9,52,534,0,158,0.252,50.83,78.52,0.13,989,2.6,63,1.9000000000000001 +2016,2,25,8,30,24.700000000000003,0.7000000000000001,0.0637,0.7000000000000001,0,0,0,0,17.1,0,0,0,0,0.253,62.86,91.79,0.13,990,2.7,61,1.4000000000000001 +2016,2,25,9,30,23.400000000000002,0.73,0.06770000000000001,0.7000000000000001,0,0,0,0,17.7,0,0,0,0,0.254,70.51,104.66,0.13,990,2.7,63,1 +2016,2,25,10,30,22.5,0.76,0.0716,0.7000000000000001,0,0,0,0,18.2,0,0,0,0,0.254,76.69,116.91,0.13,991,2.8000000000000003,67,0.7000000000000001 +2016,2,25,11,30,21.8,0.79,0.0753,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.255,81.48,128.05,0.13,991,2.8000000000000003,71,0.6000000000000001 +2016,2,25,12,30,21.3,0.8,0.07880000000000001,0.7000000000000001,0,0,0,0,18.6,0,0,0,0,0.256,84.52,137.14000000000001,0.13,991,2.9000000000000004,73,0.5 +2016,2,25,13,30,20.900000000000002,0.8,0.0824,0.7000000000000001,0,0,0,0,18.6,0,0,0,0,0.256,86.45,142.64000000000001,0.13,990,2.9000000000000004,72,0.5 +2016,2,25,14,30,20.6,0.8,0.0855,0.7000000000000001,0,0,0,0,18.5,0,0,33,0,0.256,87.98,142.88,0.13,990,2.9000000000000004,70,0.5 +2016,2,25,15,30,20.400000000000002,0.81,0.0878,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.256,88.76,137.78,0.13,989,2.8000000000000003,69,0.5 +2016,2,25,16,30,20.3,0.84,0.0892,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.256,88.8,128.93,0.13,989,2.8000000000000003,72,0.30000000000000004 +2016,2,25,17,30,20,0.87,0.08950000000000001,0.7000000000000001,0,0,0,0,18.3,0,0,0,0,0.255,90.13,117.93,0.13,989,2.7,157,0.30000000000000004 +2016,2,25,18,30,19.5,0.91,0.0891,0.7000000000000001,0,0,0,0,18.3,0,0,0,0,0.255,92.95,105.75,0.13,989,2.6,242,0.4 +2016,2,25,19,30,19.900000000000002,0.9500000000000001,0.0884,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.255,90.91,92.93,0.13,989,2.5,245,0.8 +2016,2,25,20,30,22.1,1,0.08600000000000001,0.7000000000000001,51,473,136,0,18.400000000000002,51,473,0,136,0.254,79.66,79.68,0.13,989,2.4000000000000004,251,1 +2016,2,25,21,30,24.900000000000002,1.06,0.08070000000000001,0.7000000000000001,77,741,373,0,18,77,741,0,373,0.253,65.36,66.42,0.13,989,2.3000000000000003,255,0.8 +2016,2,25,22,30,27.5,1.1,0.0748,0.7000000000000001,90,865,608,0,17.7,90,865,0,608,0.252,55.06,53.19,0.13,988,2.3000000000000003,236,0.6000000000000001 +2016,2,25,23,30,28.8,1.11,0.0693,0.7000000000000001,99,929,807,0,17.5,99,929,0,807,0.252,50.620000000000005,40.31,0.13,988,2.3000000000000003,218,0.4 +2016,2,26,0,30,32.4,1.11,0.0653,0.7000000000000001,102,966,951,0,17.2,102,966,0,951,0.251,40.44,28.490000000000002,0.13,987,2.3000000000000003,139,1 +2016,2,26,1,30,34.1,1.12,0.0629,0.7000000000000001,104,981,1026,0,16.6,104,981,0,1026,0.251,35.37,19.900000000000002,0.13,986,2.4000000000000004,121,1.6 +2016,2,26,2,30,34.9,1.11,0.061900000000000004,0.7000000000000001,103,981,1028,0,16.1,103,981,33,1028,0.25,32.69,19.51,0.13,985,2.4000000000000004,112,2.1 +2016,2,26,3,30,35,1.03,0.06420000000000001,0.7000000000000001,103,965,957,0,15.8,103,965,0,957,0.251,31.88,27.69,0.13,984,2.4000000000000004,109,2.5 +2016,2,26,4,30,34.300000000000004,1,0.0651,0.7000000000000001,97,931,817,0,15.700000000000001,97,931,0,817,0.251,32.93,39.38,0.13,984,2.5,107,2.9000000000000004 +2016,2,26,5,30,32.9,0.96,0.0658,0.7000000000000001,89,872,623,0,15.9,89,872,0,623,0.252,35.980000000000004,52.22,0.13,984,2.5,104,3 +2016,2,26,6,30,30.700000000000003,0.91,0.0656,0.7000000000000001,74,765,392,0,16.3,74,765,0,392,0.252,42.01,65.44,0.13,985,2.5,102,2.8000000000000003 +2016,2,26,7,30,28,0.87,0.065,0.7000000000000001,51,529,154,0,16.900000000000002,51,529,0,154,0.253,51.01,78.72,0.13,986,2.5,100,2 +2016,2,26,8,30,25.8,0.84,0.06620000000000001,0.7000000000000001,0,0,0,0,18,0,0,0,0,0.254,62.02,92,0.13,987,2.5,101,1.2000000000000002 +2016,2,26,9,30,24.5,0.8200000000000001,0.07050000000000001,0.7000000000000001,0,0,0,0,18.5,0,0,0,0,0.254,69.46000000000001,104.89,0.13,988,2.6,106,1 +2016,2,26,10,30,23.700000000000003,0.8,0.077,0.7000000000000001,0,0,0,0,18.7,0,0,0,0,0.254,73.67,117.17,0.13,988,2.7,112,1.1 +2016,2,26,11,30,23,0.76,0.08420000000000001,0.7000000000000001,0,0,0,0,18.8,0,0,0,0,0.254,77.26,128.34,0.13,988,2.7,120,1.2000000000000002 +2016,2,26,12,30,22.3,0.72,0.09330000000000001,0.7000000000000001,0,0,0,0,19,0,0,0,0,0.253,81.43,137.48,0.13,988,2.8000000000000003,127,1.1 +2016,2,26,13,30,21.900000000000002,0.68,0.10690000000000001,0.7000000000000001,0,0,0,0,19.3,0,0,0,0,0.253,84.99,143.01,0.13,988,2.8000000000000003,133,1.1 +2016,2,26,14,30,21.8,0.66,0.1202,0.7000000000000001,0,0,0,0,19.5,0,0,33,0,0.253,86.95,143.24,0.13,987,2.7,136,1.3 +2016,2,26,15,30,21.8,0.65,0.12560000000000002,0.7000000000000001,0,0,0,0,19.8,0,0,0,0,0.254,88.56,138.09,0.13,987,2.7,138,1.5 +2016,2,26,16,30,21.8,0.63,0.1194,0.7000000000000001,0,0,0,0,20,0,0,0,0,0.254,89.60000000000001,129.18,0.13,987,2.8000000000000003,139,1.5 +2016,2,26,17,30,21.700000000000003,0.6,0.1092,0.7000000000000001,0,0,0,0,20,0,0,0,0,0.255,90.19,118.13,0.13,987,2.8000000000000003,140,1.5 +2016,2,26,18,30,21.6,0.6,0.1044,0.7000000000000001,0,0,0,0,19.900000000000002,0,0,0,0,0.256,90.17,105.91,0.13,988,2.8000000000000003,141,1.5 +2016,2,26,19,30,22.200000000000003,0.59,0.0999,0.7000000000000001,0,0,0,0,19.700000000000003,0,0,0,0,0.256,85.83,93.07000000000001,0.13,988,2.8000000000000003,142,2 +2016,2,26,20,30,23.700000000000003,0.58,0.0926,0.7000000000000001,53,435,130,0,19.3,53,435,0,130,0.256,76.46000000000001,79.81,0.13,989,2.9000000000000004,143,2.7 +2016,2,26,21,30,25.6,0.6,0.0779,0.7000000000000001,78,722,365,0,18.400000000000002,78,722,0,365,0.256,64.6,66.55,0.13,989,2.9000000000000004,144,3 +2016,2,26,22,30,27.700000000000003,0.63,0.0682,0.7000000000000001,90,848,596,0,17.2,90,848,0,596,0.256,52.77,53.33,0.13,989,3,142,3.1 +2016,2,26,23,30,28.700000000000003,0.64,0.06420000000000001,0.7000000000000001,97,912,791,0,16,97,912,0,791,0.256,46.09,40.480000000000004,0.13,989,3.1,142,3.2 +2016,2,27,0,30,31.1,0.62,0.0636,0.7000000000000001,104,942,930,0,15.200000000000001,104,942,0,930,0.255,38.13,28.72,0.13,988,3.2,140,3.3000000000000003 +2016,2,27,1,30,32.300000000000004,0.58,0.0666,0.7000000000000001,110,952,1003,0,14.9,110,952,0,1003,0.254,34.93,20.23,0.13,988,3.3000000000000003,140,3.3000000000000003 +2016,2,27,2,30,32.9,0.54,0.0728,0.7000000000000001,112,948,1004,0,14.8,112,948,33,1004,0.254,33.74,19.88,0.13,987,3.4000000000000004,140,3.3000000000000003 +2016,2,27,3,30,33.1,0.53,0.07440000000000001,0.7000000000000001,113,929,933,0,14.9,113,929,0,933,0.254,33.54,27.98,0.13,987,3.4000000000000004,138,3.4000000000000004 +2016,2,27,4,30,32.800000000000004,0.48,0.0838,0.7000000000000001,112,886,794,0,14.9,112,886,0,794,0.254,34.07,39.62,0.13,986,3.3000000000000003,135,3.4000000000000004 +2016,2,27,5,30,31.8,0.44,0.09340000000000001,0.7000000000000001,106,812,601,0,15,106,812,0,601,0.253,36.26,52.43,0.13,987,3.3000000000000003,131,3.5 +2016,2,27,6,30,30.1,0.42,0.10070000000000001,0.7000000000000001,91,684,373,0,15.200000000000001,91,684,0,373,0.253,40.54,65.64,0.13,987,3.2,127,3.2 +2016,2,27,7,30,27.8,0.42,0.1052,0.7000000000000001,60,415,140,0,15.8,60,415,0,140,0.253,48.02,78.92,0.13,988,3.2,126,2.6 +2016,2,27,8,30,26,0.43,0.10980000000000001,0.7000000000000001,0,0,0,0,16.900000000000002,0,0,0,0,0.252,57.27,92.21000000000001,0.13,989,3.3000000000000003,128,2.2 +2016,2,27,9,30,24.900000000000002,0.44,0.1174,0.7000000000000001,0,0,0,0,17.8,0,0,0,0,0.252,64.55,105.12,0.13,990,3.4000000000000004,131,2.1 +2016,2,27,10,30,24,0.43,0.1269,0.7000000000000001,0,0,0,0,18.400000000000002,0,0,0,0,0.251,70.97,117.43,0.13,990,3.6,136,2.1 +2016,2,27,11,30,23.400000000000002,0.41000000000000003,0.1375,0.7000000000000001,0,0,0,0,19,0,0,0,0,0.251,76.23,128.64000000000001,0.13,990,3.7,140,1.9000000000000001 +2016,2,27,12,30,22.900000000000002,0.4,0.149,0.7000000000000001,0,0,0,0,19.400000000000002,0,0,0,0,0.25,80.77,137.82,0.13,990,3.9000000000000004,145,1.8 +2016,2,27,13,30,22.5,0.39,0.15610000000000002,0.7000000000000001,0,0,0,0,19.8,0,0,0,0,0.25,84.56,143.38,0.13,990,3.9000000000000004,150,1.6 +2016,2,27,14,30,22.200000000000003,0.37,0.1605,0.7000000000000001,0,0,0,0,20.1,0,0,33,0,0.25,87.65,143.6,0.13,989,3.9000000000000004,152,1.5 +2016,2,27,15,30,21.900000000000002,0.38,0.1638,0.7000000000000001,0,0,0,0,20.400000000000002,0,0,0,0,0.25,91.07000000000001,138.39000000000001,0.13,989,3.9000000000000004,154,1.4000000000000001 +2016,2,27,16,30,21.700000000000003,0.38,0.1509,0.7000000000000001,0,0,0,0,20.700000000000003,0,0,0,0,0.251,93.94,129.42000000000002,0.13,989,3.8000000000000003,154,1.4000000000000001 +2016,2,27,17,30,21.6,0.37,0.13190000000000002,0.7000000000000001,0,0,0,0,20.900000000000002,0,0,0,0,0.252,95.68,118.32000000000001,0.13,989,3.7,154,1.3 +2016,2,27,18,30,21.5,0.43,0.1233,0.7000000000000001,0,0,0,0,20.900000000000002,0,0,0,0,0.254,96.64,106.08,0.13,989,3.7,154,1.3 +2016,2,27,19,30,21.900000000000002,0.45,0.1102,0.7000000000000001,0,0,0,0,21,0,0,0,0,0.255,94.37,93.21000000000001,0.13,990,3.7,155,1.5 +2016,2,27,20,30,23,0.46,0.099,0.7000000000000001,55,396,124,0,21.1,55,396,0,124,0.256,89.16,79.93,0.13,990,3.8000000000000003,150,2 +2016,2,27,21,30,25,0.53,0.09230000000000001,0.7000000000000001,83,683,353,0,21.200000000000003,83,683,0,353,0.257,79.46000000000001,66.67,0.13,990,3.8000000000000003,141,2.4000000000000004 +2016,2,27,22,30,27.400000000000002,0.55,0.0839,0.7000000000000001,97,815,582,0,20.6,97,815,0,582,0.257,66.61,53.47,0.13,991,3.7,134,2.6 +2016,2,27,23,30,28.5,0.55,0.0794,0.7000000000000001,106,884,777,0,19.900000000000002,129,820,8,751,0.258,59.7,40.65,0.13,990,3.7,131,2.6 +2016,2,28,0,30,31,0.54,0.07830000000000001,0.7000000000000001,112,921,918,0,19.3,217,646,0,782,0.259,49.86,28.95,0.13,989,3.6,127,2.5 +2016,2,28,1,30,32.1,0.51,0.0804,0.7000000000000001,118,935,993,3,18.900000000000002,353,398,0,726,0.26,45.5,20.56,0.13,989,3.6,125,2.5 +2016,2,28,2,30,32.6,0.49,0.0835,0.7000000000000001,121,930,994,0,18.5,225,668,33,852,0.261,43.18,20.25,0.13,988,3.6,123,2.5 +2016,2,28,3,30,32.4,0.46,0.095,0.7000000000000001,123,906,921,0,18.2,207,720,8,841,0.262,43.04,28.28,0.13,987,3.6,122,2.6 +2016,2,28,4,30,31.700000000000003,0.45,0.09970000000000001,0.7000000000000001,117,867,783,0,18.1,137,799,8,750,0.262,44.47,39.86,0.13,987,3.7,119,2.7 +2016,2,28,5,30,30.6,0.44,0.0984,0.7000000000000001,106,799,591,0,18.2,121,666,0,525,0.263,47.660000000000004,52.64,0.13,987,3.7,113,2.8000000000000003 +2016,2,28,6,30,29.1,0.44,0.1008,0.7000000000000001,89,674,365,0,18.5,76,456,42,263,0.264,52.99,65.85,0.13,988,3.7,108,2.8000000000000003 +2016,2,28,7,30,27.3,0.43,0.1013,0.7000000000000001,58,412,136,0,19,58,412,0,136,0.266,60.58,79.13,0.13,989,3.7,104,2.5 +2016,2,28,8,30,25.8,0.43,0.0999,0.7000000000000001,0,0,0,7,19.6,0,0,0,0,0.268,68.85000000000001,92.43,0.13,990,3.7,105,2.2 +2016,2,28,9,30,24.900000000000002,0.43,0.1004,0.7000000000000001,0,0,0,0,20.200000000000003,0,0,0,0,0.269,75,105.35000000000001,0.13,991,3.7,110,2.2 +2016,2,28,10,30,24.200000000000003,0.45,0.09910000000000001,0.7000000000000001,0,0,0,0,20.5,0,0,0,0,0.27,79.85000000000001,117.69,0.13,992,3.7,116,2.1 +2016,2,28,11,30,23.6,0.47000000000000003,0.0995,0.7000000000000001,0,0,0,0,20.700000000000003,0,0,0,0,0.271,83.83,128.94,0.13,992,3.7,121,2 +2016,2,28,12,30,23.200000000000003,0.52,0.10550000000000001,0.7000000000000001,0,0,0,0,20.8,0,0,0,0,0.271,86.35000000000001,138.17000000000002,0.13,992,3.7,126,1.9000000000000001 +2016,2,28,13,30,22.8,0.53,0.1081,0.7000000000000001,0,0,0,0,20.8,0,0,0,0,0.27,88.64,143.76,0.13,992,3.6,131,1.7000000000000002 +2016,2,28,14,30,22.5,0.52,0.1037,0.7000000000000001,0,0,0,0,20.8,0,0,33,0,0.27,90.10000000000001,143.96,0.13,991,3.6,137,1.7000000000000002 +2016,2,28,15,30,22.3,0.55,0.10880000000000001,0.7000000000000001,0,0,0,0,20.700000000000003,0,0,0,0,0.27,90.85000000000001,138.70000000000002,0.13,990,3.5,141,1.6 +2016,2,28,16,30,22,0.55,0.1111,0.7000000000000001,0,0,0,0,20.700000000000003,0,0,0,0,0.27,92.28,129.66,0.13,990,3.4000000000000004,143,1.6 +2016,2,28,17,30,21.8,0.52,0.1091,0.7000000000000001,0,0,0,0,20.6,0,0,0,0,0.27,93.11,118.51,0.13,990,3.4000000000000004,145,1.5 +2016,2,28,18,30,21.6,0.55,0.11280000000000001,0.7000000000000001,0,0,0,0,20.6,0,0,0,0,0.269,93.82000000000001,106.23,0.13,991,3.3000000000000003,148,1.4000000000000001 +2016,2,28,19,30,22,0.55,0.1087,0.7000000000000001,0,0,0,0,20.400000000000002,0,0,0,0,0.269,90.93,93.35000000000001,0.13,992,3.3000000000000003,149,1.7000000000000002 +2016,2,28,20,30,23.3,0.54,0.0981,0.7000000000000001,54,402,123,0,20.3,54,402,0,123,0.269,83.26,80.06,0.13,992,3.3000000000000003,146,2.4000000000000004 +2016,2,28,21,30,25.1,0.5700000000000001,0.09050000000000001,0.7000000000000001,82,691,354,0,20,82,691,0,354,0.269,73.2,66.8,0.13,993,3.3000000000000003,140,2.8000000000000003 +2016,2,28,22,30,27.1,0.59,0.08070000000000001,0.7000000000000001,95,826,585,0,19.5,95,826,0,585,0.269,63.07,53.6,0.13,993,3.3000000000000003,136,3 +2016,2,28,23,30,28,0.59,0.07250000000000001,0.7000000000000001,102,897,781,0,19,165,699,0,694,0.269,58.25,40.81,0.13,992,3.3000000000000003,134,3 +2011,3,1,0,30,28.900000000000002,1.26,0.0663,0.68,103,947,930,0,20,103,947,0,930,0.257,58.86,29.23,0.16,979,3.1,312,1.1 +2011,3,1,1,30,29.900000000000002,1.26,0.0658,0.68,106,963,1005,0,20.200000000000003,106,963,0,1005,0.257,56.18,20.97,0.16,978,3.1,316,1.1 +2011,3,1,2,30,30.400000000000002,1.27,0.0653,0.68,106,962,1005,0,20.400000000000002,106,962,0,1005,0.258,55.09,20.69,0.16,977,3.2,323,1.1 +2011,3,1,3,30,30.6,1.25,0.0654,0.68,103,948,934,0,20.5,103,948,0,934,0.258,55.03,28.63,0.16,976,3.2,332,1.1 +2011,3,1,4,30,30.5,1.25,0.0649,0.68,96,916,796,0,20.700000000000003,96,916,0,796,0.259,56.03,40.15,0.16,976,3.2,342,1 +2011,3,1,5,30,30.200000000000003,1.25,0.0651,0.68,86,855,602,0,20.900000000000002,86,855,0,602,0.26,57.68,52.9,0.16,976,3.3000000000000003,352,1 +2011,3,1,6,30,29,1.25,0.0666,0.68,72,745,374,0,20.8,72,745,0,374,0.26,61.2,66.09,0.16,976,3.3000000000000003,186,0.9 +2011,3,1,7,30,26.5,1.24,0.07010000000000001,0.68,47,499,139,0,21.700000000000003,47,499,0,139,0.261,75.09,79.37,0.16,977,3.4000000000000004,18,0.9 +2011,3,1,8,30,24.6,1.24,0.0751,0.68,0,0,0,0,21.900000000000002,0,0,0,0,0.262,85.10000000000001,92.69,0.16,978,3.5,19,0.9 +2011,3,1,9,30,23.700000000000003,1.22,0.08080000000000001,0.68,0,0,0,0,21.900000000000002,0,0,0,0,0.262,89.88,105.63,0.16,978,3.6,11,0.8 +2011,3,1,10,30,23,1.21,0.0849,0.68,0,0,0,3,22.1,0,0,0,0,0.262,94.52,118,0.16,979,3.6,182,0.7000000000000001 +2011,3,1,11,30,22.5,1.2,0.0868,0.68,0,0,0,0,22.1,0,0,0,0,0.262,97.49000000000001,129.3,0.16,979,3.6,354,0.7000000000000001 +2011,3,1,12,30,22,1.19,0.08710000000000001,0.68,0,0,0,0,22,0,0,0,0,0.262,100,138.59,0.16,979,3.6,348,0.7000000000000001 +2011,3,1,13,30,21.6,1.18,0.0879,0.68,0,0,0,0,21.6,0,0,0,0,0.261,100,144.23,0.16,979,3.7,340,0.6000000000000001 +2011,3,1,14,30,21.200000000000003,1.18,0.0902,0.68,0,0,0,1,21.200000000000003,0,0,0,0,0.261,100,144.42000000000002,0.16,978,3.7,330,0.6000000000000001 +2011,3,1,15,30,20.900000000000002,1.18,0.0954,0.68,0,0,0,4,20.900000000000002,0,0,0,0,0.261,100,139.08,0.16,978,3.8000000000000003,321,0.6000000000000001 +2011,3,1,16,30,20.6,1.18,0.1018,0.68,0,0,0,0,20.6,0,0,0,0,0.261,100,129.96,0.16,979,3.8000000000000003,312,0.5 +2011,3,1,17,30,20.3,1.19,0.1062,0.68,0,0,0,3,20.3,0,0,0,0,0.261,100,118.76,0.16,979,3.8000000000000003,300,0.5 +2011,3,1,18,30,20.1,1.2,0.1081,0.68,0,0,0,4,20.1,0,0,0,0,0.262,100,106.44,0.16,980,3.8000000000000003,287,0.5 +2011,3,1,19,30,20.5,1.21,0.1061,0.68,0,0,0,3,20.400000000000002,0,0,0,0,0.262,99.3,93.53,0.16,980,3.8000000000000003,268,0.6000000000000001 +2011,3,1,20,30,21.8,1.23,0.1009,0.68,50,419,121,4,20.900000000000002,59,12,3,61,0.263,94.92,80.22,0.16,981,3.7,243,0.7000000000000001 +2011,3,1,21,30,23.6,1.24,0.0969,0.68,81,687,349,3,21.700000000000003,188,46,0,206,0.264,89.07000000000001,66.96000000000001,0.16,981,3.8000000000000003,207,0.7000000000000001 +2011,3,1,22,30,25.700000000000003,1.25,0.09480000000000001,0.68,98,810,577,1,21.900000000000002,98,810,0,577,0.264,79.35000000000001,53.78,0.16,981,3.8000000000000003,167,0.8 +2011,3,1,23,30,26.8,1.26,0.09480000000000001,0.68,110,874,769,1,21.5,110,874,1,769,0.265,72.71000000000001,41.03,0.16,981,3.9000000000000004,150,1 +2011,3,2,0,30,28.400000000000002,1.21,0.10110000000000001,0.68,120,903,907,3,21.6,666,130,0,779,0.265,66.49,29.47,0.16,980,4,120,1 +2011,3,2,1,30,29,1.21,0.1034,0.68,125,917,979,0,21.8,125,917,0,979,0.264,65,21.31,0.16,980,4.1000000000000005,107,1.1 +2011,3,2,2,30,29.200000000000003,1.21,0.1082,0.68,127,913,979,0,21.900000000000002,127,913,0,979,0.264,64.96000000000001,21.07,0.16,979,4.2,99,1.3 +2011,3,2,3,30,29,1.27,0.0964,0.68,118,905,910,0,22.1,118,905,0,910,0.264,66.25,28.94,0.16,979,4.3,95,1.4000000000000001 +2011,3,2,4,30,28.5,1.27,0.1017,0.68,113,865,772,0,22.1,113,865,0,772,0.264,68.28,40.4,0.16,978,4.4,90,1.5 +2011,3,2,5,30,27.6,1.27,0.1048,0.68,102,797,581,0,22.200000000000003,102,797,0,581,0.263,72.52,53.120000000000005,0.16,978,4.5,86,1.6 +2011,3,2,6,30,26.400000000000002,1.27,0.11120000000000001,0.68,86,670,355,8,22.5,192,42,0,209,0.263,79.06,66.31,0.16,979,4.5,82,1.4000000000000001 +2011,3,2,7,30,25,1.27,0.1143,0.68,53,412,128,8,22.8,66,16,3,68,0.263,87.51,79.58,0.16,980,4.5,77,1 +2011,3,2,8,30,23.900000000000002,1.26,0.1131,0.68,0,0,0,8,22.900000000000002,0,0,0,0,0.264,93.87,92.91,0.16,980,4.6000000000000005,72,0.8 +2011,3,2,9,30,23.3,1.24,0.114,0.68,0,0,0,8,22.700000000000003,0,0,0,0,0.264,96.64,105.87,0.16,981,4.6000000000000005,66,0.7000000000000001 +2011,3,2,10,30,22.8,1.23,0.1155,0.68,0,0,0,0,22.6,0,0,0,0,0.264,98.97,118.27,0.16,981,4.6000000000000005,60,0.6000000000000001 +2011,3,2,11,30,22.5,1.22,0.11410000000000001,0.68,0,0,0,3,22.5,0,0,0,0,0.264,100,129.61,0.16,981,4.5,52,0.6000000000000001 +2011,3,2,12,30,22.200000000000003,1.22,0.11560000000000001,0.68,0,0,0,1,22.200000000000003,0,0,0,0,0.264,100,138.94,0.16,980,4.5,46,0.6000000000000001 +2011,3,2,13,30,22,1.22,0.1136,0.68,0,0,0,1,22,0,0,0,0,0.263,100,144.61,0.16,980,4.4,41,0.6000000000000001 +2011,3,2,14,30,21.8,1.21,0.10700000000000001,0.68,0,0,0,1,21.8,0,0,0,0,0.263,100,144.78,0.16,979,4.3,36,0.6000000000000001 +2011,3,2,15,30,21.700000000000003,1.2,0.10600000000000001,0.68,0,0,0,0,21.700000000000003,0,0,0,0,0.263,100,139.38,0.16,978,4.3,30,0.6000000000000001 +2011,3,2,16,30,21.5,1.19,0.10300000000000001,0.68,0,0,0,8,21.5,0,0,0,0,0.263,100,130.2,0.16,978,4.2,20,0.6000000000000001 +2011,3,2,17,30,21.3,1.16,0.0998,0.68,0,0,0,8,21.3,0,0,0,0,0.263,100,118.95,0.16,978,4.2,185,0.6000000000000001 +2011,3,2,18,30,21.200000000000003,1.1500000000000001,0.1081,0.68,0,0,0,4,21.200000000000003,0,0,0,0,0.263,100,106.60000000000001,0.16,979,4.2,346,0.6000000000000001 +2011,3,2,19,30,21.8,1.1500000000000001,0.11280000000000001,0.68,0,0,0,4,21.6,0,0,0,0,0.262,98.67,93.66,0.16,980,4.3,331,0.8 +2011,3,2,20,30,23,1.16,0.1119,0.68,51,390,116,4,22.3,45,0,3,45,0.262,95.62,80.35000000000001,0.16,980,4.3,326,1.1 +2011,3,2,21,30,24.3,1.16,0.11370000000000001,0.68,86,658,342,4,22.8,147,23,0,156,0.262,91.47,67.09,0.16,980,4.2,327,1.3 +2011,3,2,22,30,25.6,1.16,0.1174,0.68,107,780,566,1,22.8,107,780,0,566,0.262,84.68,53.92,0.16,980,4.3,326,1.4000000000000001 +2011,3,2,23,30,26.3,1.16,0.11320000000000001,0.68,118,852,759,0,22.700000000000003,118,852,0,759,0.262,80.54,41.2,0.16,980,4.3,323,1.3 +2011,3,3,0,30,27.8,1.18,0.0956,0.68,117,902,901,0,22.6,117,902,0,901,0.262,73.42,29.7,0.16,979,4.4,317,1.2000000000000002 +2011,3,3,1,30,28.5,1.18,0.08990000000000001,0.68,118,922,975,0,22.6,118,922,0,975,0.261,70.36,21.650000000000002,0.16,978,4.5,312,1.1 +2011,3,3,2,30,28.8,1.17,0.0862,0.68,116,924,976,0,22.6,116,924,0,976,0.261,69.16,21.44,0.16,977,4.6000000000000005,311,1 +2011,3,3,3,30,28.8,1.24,0.0772,0.68,108,915,906,1,22.6,108,915,0,906,0.26,69.36,29.25,0.16,977,4.7,317,0.9 +2011,3,3,4,30,28.5,1.25,0.0785,0.68,102,880,769,0,22.700000000000003,102,880,0,769,0.259,70.87,40.660000000000004,0.16,976,4.800000000000001,332,0.7000000000000001 +2011,3,3,5,30,27.700000000000003,1.24,0.08,0.68,92,817,580,6,23.3,107,23,0,120,0.259,76.9,53.35,0.16,976,4.800000000000001,177,0.6000000000000001 +2011,3,3,6,30,26.5,1.22,0.0874,0.68,78,693,354,6,23.400000000000002,89,17,0,96,0.258,83.08,66.52,0.16,977,4.800000000000001,21,0.7000000000000001 +2011,3,3,7,30,25.200000000000003,1.22,0.08510000000000001,0.68,48,444,127,6,23.900000000000002,32,0,3,32,0.258,92.44,79.8,0.16,977,4.9,33,0.7000000000000001 +2011,3,3,8,30,24.200000000000003,1.22,0.07880000000000001,0.68,0,0,0,6,23.8,0,0,0,0,0.258,97.45,93.13,0.16,978,4.9,33,0.7000000000000001 +2011,3,3,9,30,23.700000000000003,1.21,0.0753,0.68,0,0,0,6,23.6,0,0,0,0,0.257,99.53,106.11,0.16,979,4.9,29,0.6000000000000001 +2011,3,3,10,30,23.200000000000003,1.2,0.0743,0.68,0,0,0,6,23.200000000000003,0,0,0,0,0.257,100,118.54,0.16,979,4.9,22,0.6000000000000001 +2011,3,3,11,30,22.8,1.19,0.07200000000000001,0.68,0,0,0,6,22.8,0,0,0,0,0.256,100,129.91,0.16,979,4.9,16,0.5 +2011,3,3,12,30,22.5,1.19,0.0682,0.68,0,0,0,7,22.5,0,0,0,0,0.256,100,139.29,0.16,979,4.9,12,0.5 +2011,3,3,13,30,22.200000000000003,1.19,0.0635,0.68,0,0,0,8,22.200000000000003,0,0,0,0,0.256,100,145,0.16,978,4.9,184,0.5 +2011,3,3,14,30,22,1.18,0.0599,0.68,0,0,0,8,22,0,0,0,0,0.256,100,145.15,0.16,978,4.9,351,0.5 +2011,3,3,15,30,21.900000000000002,1.17,0.057,0.68,0,0,0,8,21.900000000000002,0,0,0,0,0.257,100,139.68,0.16,977,4.9,337,0.5 +2011,3,3,16,30,21.900000000000002,1.18,0.0534,0.68,0,0,0,8,21.900000000000002,0,0,0,0,0.257,100,130.44,0.16,977,4.9,309,0.4 +2011,3,3,17,30,21.900000000000002,1.19,0.0506,0.68,0,0,0,8,21.900000000000002,0,0,0,0,0.258,100,119.13,0.16,978,4.9,254,0.30000000000000004 +2011,3,3,18,30,21.8,1.21,0.0516,0.68,0,0,0,8,21.8,0,0,0,0,0.258,99.88,106.75,0.16,979,5,209,0.4 +2011,3,3,19,30,21.8,1.22,0.0541,0.68,0,0,0,8,21.6,0,0,0,0,0.257,98.97,93.8,0.16,979,5.1000000000000005,186,0.4 +2011,3,3,20,30,22.200000000000003,1.23,0.0553,0.68,41,471,119,8,22,6,0,3,6,0.257,98.86,80.48,0.16,980,5.1000000000000005,167,0.5 +2011,3,3,21,30,23,1.24,0.055900000000000005,0.68,66,722,346,6,22.400000000000002,14,0,0,14,0.257,96.43,67.22,0.16,980,5.1000000000000005,139,0.6000000000000001 +2011,3,3,22,30,23.900000000000002,1.25,0.0523,0.68,79,838,571,8,22.6,46,0,0,46,0.258,92.45,54.06,0.16,980,5.2,105,0.8 +2011,3,3,23,30,24.400000000000002,1.28,0.045000000000000005,0.68,85,904,763,4,22.5,107,22,0,123,0.258,89.44,41.37,0.16,980,5.2,92,0.9 +2011,3,4,0,30,25.1,1.3,0.049800000000000004,0.68,93,931,899,4,22.400000000000002,126,25,0,147,0.257,84.92,29.94,0.16,979,5.300000000000001,68,0.9 +2011,3,4,1,30,25,1.3,0.0543,0.68,98,941,971,8,22.200000000000003,411,22,0,432,0.257,84.3,22,0.16,978,5.4,59,0.9 +2011,3,4,2,30,24.5,1.3,0.053500000000000006,0.68,98,941,971,8,22.1,412,22,1,432,0.257,86.76,21.830000000000002,0.16,978,5.5,64,0.8 +2011,3,4,3,30,23.900000000000002,1.31,0.0826,0.68,110,903,895,8,22.3,129,25,0,151,0.256,90.8,29.560000000000002,0.16,977,5.6000000000000005,81,0.7000000000000001 +2011,3,4,4,30,23.5,1.32,0.0873,0.68,105,866,759,8,22.5,98,20,0,113,0.254,94.2,40.92,0.16,977,5.6000000000000005,96,0.8 +2011,3,4,5,30,23.1,1.32,0.0772,0.68,90,813,573,6,22.700000000000003,83,17,0,93,0.254,97.38,53.59,0.16,977,5.6000000000000005,106,0.8 +2011,3,4,6,30,22.8,1.31,0.08080000000000001,0.68,75,693,349,8,22.8,116,20,0,124,0.253,100,66.74,0.16,978,5.7,112,0.7000000000000001 +2011,3,4,7,30,22.5,1.31,0.0726,0.68,45,454,124,6,22.5,40,0,3,40,0.252,100,80.02,0.16,978,5.7,114,0.6000000000000001 +2011,3,4,8,30,22.200000000000003,1.3,0.0568,0.68,0,0,0,6,22.200000000000003,0,0,0,0,0.253,100,93.36,0.16,979,5.7,118,0.6000000000000001 +2011,3,4,9,30,22.1,1.29,0.0582,0.68,0,0,0,7,22.1,0,0,0,0,0.253,100,106.36,0.16,979,5.7,125,0.6000000000000001 +2011,3,4,10,30,21.900000000000002,1.28,0.0551,0.68,0,0,0,8,21.900000000000002,0,0,0,0,0.254,100,118.81,0.16,979,5.6000000000000005,134,0.6000000000000001 +2011,3,4,11,30,21.8,1.27,0.0454,0.68,0,0,0,8,21.8,0,0,0,0,0.254,100,130.22,0.16,979,5.6000000000000005,144,0.6000000000000001 +2011,3,4,12,30,21.6,1.27,0.052700000000000004,0.68,0,0,0,8,21.6,0,0,0,0,0.254,100,139.65,0.16,979,5.6000000000000005,152,0.7000000000000001 +2011,3,4,13,30,21.5,1.25,0.054700000000000006,0.68,0,0,0,4,21.5,0,0,0,0,0.254,100,145.38,0.16,979,5.6000000000000005,159,0.7000000000000001 +2011,3,4,14,30,21.400000000000002,1.22,0.05,0.68,0,0,0,4,21.400000000000002,0,0,0,0,0.254,100,145.51,0.16,978,5.6000000000000005,166,0.7000000000000001 +2011,3,4,15,30,21.200000000000003,1.24,0.0575,0.68,0,0,0,8,21.200000000000003,0,0,0,0,0.253,100,139.98,0.16,978,5.5,169,0.8 +2011,3,4,16,30,21.1,1.23,0.058600000000000006,0.68,0,0,0,4,21.1,0,0,0,0,0.254,100,130.67000000000002,0.16,978,5.4,168,0.8 +2011,3,4,17,30,20.900000000000002,1.2,0.0528,0.68,0,0,0,8,20.900000000000002,0,0,0,0,0.255,100,119.32000000000001,0.16,978,5.4,168,0.9 +2011,3,4,18,30,20.8,1.19,0.052700000000000004,0.68,0,0,0,8,20.8,0,0,0,0,0.255,100,106.91,0.16,979,5.300000000000001,170,0.9 +2011,3,4,19,30,20.8,1.16,0.047400000000000005,0.68,0,0,0,8,20.8,0,0,0,0,0.255,100,93.93,0.16,980,5.2,168,1 +2011,3,4,20,30,21.1,1.1300000000000001,0.0396,0.68,38,496,119,8,21.1,52,2,3,52,0.256,99.81,80.60000000000001,0.16,981,5,162,1.2000000000000002 +2011,3,4,21,30,21.5,1.1300000000000001,0.0363,0.68,59,748,347,8,21.200000000000003,160,28,0,171,0.255,97.89,67.35,0.16,982,4.9,152,1.4000000000000001 +2011,3,4,22,30,22,1.1400000000000001,0.0349,0.68,71,858,573,8,21.1,264,27,0,280,0.254,94.4,54.2,0.16,982,4.800000000000001,140,1.6 +2011,3,4,23,30,22.400000000000002,1.16,0.0349,0.68,79,915,764,4,20.900000000000002,189,28,0,210,0.254,91.33,41.550000000000004,0.16,983,4.800000000000001,135,1.7000000000000002 +2011,3,5,0,30,23.1,1.05,0.0425,0.68,88,939,900,4,20.6,369,23,0,389,0.251,85.60000000000001,30.19,0.13,982,4.800000000000001,131,1.9000000000000001 +2011,3,5,1,30,23.200000000000003,1.07,0.0426,0.68,91,954,973,4,20.200000000000003,117,22,0,138,0.25,83.25,22.35,0.13,982,4.7,131,2 +2011,3,5,2,30,23.200000000000003,1.08,0.0391,0.68,89,958,976,4,20.200000000000003,117,22,1,138,0.248,83.46000000000001,22.21,0.13,982,4.6000000000000005,132,2.2 +2011,3,5,3,30,23,1.04,0.0364,0.68,85,947,906,8,20.5,299,27,0,322,0.247,85.8,29.88,0.13,982,4.6000000000000005,132,2.5 +2011,3,5,4,30,22.6,0.92,0.037700000000000004,0.68,81,915,770,8,20.5,373,27,0,393,0.247,88.02,41.18,0.13,982,4.6000000000000005,133,2.8000000000000003 +2011,3,5,5,30,22,0.76,0.0432,0.68,77,852,579,8,20.200000000000003,177,25,0,192,0.247,89.44,53.82,0.13,982,4.5,134,2.8000000000000003 +2011,3,5,6,30,21.400000000000002,0.53,0.06430000000000001,0.68,72,708,349,8,19.700000000000003,111,19,0,118,0.247,90.17,66.97,0.13,983,4.4,135,2.7 +2011,3,5,7,30,20.900000000000002,0.34,0.1027,0.68,54,367,116,8,19.400000000000002,38,0,3,38,0.247,90.99,80.23,0.13,984,4.3,135,2.5 +2011,3,5,8,30,20.6,0.25,0.1342,0.68,0,0,0,7,19.200000000000003,0,0,0,0,0.247,91.71000000000001,93.59,0.13,985,4.2,136,2.6 +2011,3,5,9,30,20.400000000000002,0.23,0.15960000000000002,0.68,0,0,0,8,19.1,0,0,0,0,0.247,92.39,106.60000000000001,0.13,986,4.1000000000000005,138,2.6 +2011,3,5,10,30,20.1,0.18,0.22260000000000002,0.68,0,0,0,4,19,0,0,0,0,0.247,93.53,119.08,0.13,987,4,140,2.5 +2011,3,5,11,30,19.700000000000003,0.15,0.2931,0.68,0,0,0,8,18.8,0,0,0,0,0.247,94.71000000000001,130.53,0.13,987,3.9000000000000004,141,2.5 +2011,3,5,12,30,19.3,0.17,0.3153,0.68,0,0,0,7,18.400000000000002,0,0,0,0,0.247,94.81,140,0.13,987,3.7,143,2.5 +2011,3,5,13,30,18.900000000000002,0.18,0.2922,0.68,0,0,0,8,17.900000000000002,0,0,0,0,0.248,93.87,145.77,0.13,987,3.4000000000000004,144,2.4000000000000004 +2011,3,5,14,30,18.6,0.21,0.25370000000000004,0.68,0,0,0,8,17.400000000000002,0,0,0,0,0.249,92.67,145.88,0.13,986,3.2,145,2.2 +2011,3,5,15,30,18.3,0.23,0.23090000000000002,0.68,0,0,0,8,17,0,0,0,0,0.251,92.13,140.28,0.13,986,2.9000000000000004,145,2.1 +2011,3,5,16,30,18.1,0.25,0.2093,0.68,0,0,0,8,16.7,0,0,0,0,0.254,91.64,130.91,0.13,986,2.7,145,2 +2011,3,5,17,30,17.900000000000002,0.27,0.1892,0.68,0,0,0,7,16.5,0,0,0,0,0.256,91.61,119.51,0.13,986,2.6,145,2 +2011,3,5,18,30,17.8,0.29,0.1752,0.68,0,0,0,8,16.400000000000002,0,0,0,0,0.259,91.28,107.06,0.13,987,2.4000000000000004,145,1.9000000000000001 +2011,3,5,19,30,17.8,0.3,0.1637,0.68,0,0,0,7,16.2,0,0,0,0,0.261,90.19,94.07000000000001,0.13,987,2.3000000000000003,143,2.1 +2011,3,5,20,30,18.400000000000002,0.31,0.15280000000000002,0.68,62,296,110,7,16.2,37,0,1,37,0.263,86.92,80.72,0.13,988,2.1,141,2.4000000000000004 +2011,3,5,21,30,19.5,0.32,0.1408,0.68,103,624,342,1,16.400000000000002,103,624,0,342,0.264,82.03,67.47,0.13,988,2,137,2.9000000000000004 +2011,3,5,22,30,20.900000000000002,0.31,0.1287,0.68,122,781,577,1,16.6,122,781,0,577,0.264,76.43,54.34,0.13,988,2,131,3.3000000000000003 +2011,3,5,23,30,21.700000000000003,0.29,0.12050000000000001,0.68,132,866,779,1,16.6,132,866,0,779,0.264,72.56,41.72,0.13,988,1.9000000000000001,128,3.6 +2011,3,6,0,30,23.1,0.28,0.11570000000000001,0.68,138,910,923,1,16.400000000000002,138,910,0,923,0.265,65.98,30.43,0.13,988,1.9000000000000001,124,3.7 +2011,3,6,1,30,23.6,0.31,0.09570000000000001,0.68,130,946,1003,1,16.3,130,946,0,1003,0.265,63.49,22.7,0.13,987,1.9000000000000001,122,3.7 +2011,3,6,2,30,23.6,0.33,0.0844,0.68,123,957,1007,1,16.1,123,957,1,1007,0.265,63,22.59,0.13,987,1.9000000000000001,121,3.7 +2011,3,6,3,30,23.3,0.28,0.1052,0.68,132,918,925,2,15.9,327,25,0,349,0.264,63.28,30.21,0.13,987,2,121,3.6 +2011,3,6,4,30,22.700000000000003,0.28,0.1129,0.68,128,872,782,2,15.8,492,126,0,587,0.264,65.13,41.45,0.13,987,2,121,3.4000000000000004 +2011,3,6,5,30,21.900000000000002,0.28,0.11330000000000001,0.68,115,800,585,3,15.700000000000001,249,26,0,264,0.264,67.91,54.06,0.13,987,2,123,3.1 +2011,3,6,6,30,21,0.3,0.11520000000000001,0.68,95,663,352,1,15.700000000000001,95,663,0,352,0.264,71.82000000000001,67.19,0.13,988,2,125,2.5 +2011,3,6,7,30,20,0.31,0.11120000000000001,0.68,57,373,119,1,15.8,57,373,0,119,0.263,76.63,80.46000000000001,0.13,988,2,127,2 +2011,3,6,8,30,19.3,0.31,0.10690000000000001,0.68,0,0,0,1,15.600000000000001,0,0,0,0,0.263,79.32000000000001,93.82000000000001,0.13,989,2,130,1.6 +2011,3,6,9,30,18.900000000000002,0.31,0.10540000000000001,0.68,0,0,0,3,15.5,0,0,0,0,0.262,80.84,106.85000000000001,0.13,989,1.9000000000000001,131,1.4000000000000001 +2011,3,6,10,30,18.5,0.31,0.1024,0.68,0,0,0,1,15.4,0,0,0,0,0.262,82.31,119.35000000000001,0.13,989,1.9000000000000001,132,1.3 +2011,3,6,11,30,18.3,0.32,0.0995,0.68,0,0,0,0,15.3,0,0,0,0,0.261,82.86,130.84,0.13,989,1.9000000000000001,133,1.2000000000000002 +2011,3,6,12,30,18,0.32,0.09860000000000001,0.68,0,0,0,1,15.200000000000001,0,0,0,0,0.261,83.96000000000001,140.36,0.13,989,1.9000000000000001,133,1.2000000000000002 +2011,3,6,13,30,17.7,0.32,0.0961,0.68,0,0,0,1,15.100000000000001,0,0,0,0,0.261,84.87,146.16,0.13,988,1.9000000000000001,133,1.1 +2011,3,6,14,30,17.400000000000002,0.33,0.09140000000000001,0.68,0,0,0,1,14.9,0,0,0,0,0.261,85.51,146.25,0.13,987,1.9000000000000001,132,1.1 +2011,3,6,15,30,17.2,0.35000000000000003,0.0881,0.68,0,0,0,0,14.8,0,0,0,0,0.261,85.92,140.58,0.13,987,1.9000000000000001,132,1.1 +2011,3,6,16,30,17,0.36,0.0891,0.68,0,0,0,0,14.8,0,0,0,0,0.262,86.72,131.14000000000001,0.13,986,1.9000000000000001,133,1 +2011,3,6,17,30,16.8,0.35000000000000003,0.0913,0.68,0,0,0,1,14.8,0,0,0,0,0.263,88.12,119.69,0.13,986,1.9000000000000001,133,1.1 +2011,3,6,18,30,16.900000000000002,0.34,0.0941,0.68,0,0,0,3,15,0,0,0,0,0.264,88.31,107.21000000000001,0.13,986,2,133,1.1 +2011,3,6,19,30,17.6,0.34,0.0937,0.68,0,0,0,3,15.200000000000001,0,0,0,0,0.265,85.85000000000001,94.2,0.13,987,2,130,1.4000000000000001 +2011,3,6,20,30,19,0.34,0.0926,0.68,51,394,114,1,15.9,51,394,0,114,0.265,82.13,80.85000000000001,0.13,987,2.1,126,1.9000000000000001 +2011,3,6,21,30,20.5,0.33,0.0942,0.68,86,684,346,1,16.5,86,684,0,346,0.266,77.69,67.6,0.13,988,2.2,123,2.5 +2011,3,6,22,30,21.700000000000003,0.32,0.094,0.68,105,813,577,1,16.7,105,813,0,577,0.265,73.32000000000001,54.49,0.13,988,2.3000000000000003,118,2.9000000000000004 +2011,3,6,23,30,22.200000000000003,0.32,0.09480000000000001,0.68,117,882,774,3,16.6,416,39,0,445,0.265,70.47,41.9,0.13,988,2.3000000000000003,116,3 +2011,3,7,0,30,22.700000000000003,0.25,0.1358,0.68,149,878,904,1,16.3,149,878,0,904,0.264,67.35,30.68,0.13,987,2.4000000000000004,115,2.9000000000000004 +2011,3,7,1,30,22.8,0.29,0.12660000000000002,0.68,147,906,981,1,16.3,147,906,0,981,0.264,66.88,23.05,0.13,987,2.4000000000000004,116,2.8000000000000003 +2011,3,7,2,30,22.900000000000002,0.29,0.11610000000000001,0.68,141,915,984,1,16.400000000000002,141,915,1,984,0.263,66.84,22.98,0.13,986,2.4000000000000004,118,2.8000000000000003 +2011,3,7,3,30,22.8,0.4,0.0965,0.68,124,916,914,2,16.400000000000002,527,49,0,569,0.262,67.07000000000001,30.53,0.13,985,2.5,119,2.7 +2011,3,7,4,30,22.5,0.43,0.08990000000000001,0.68,113,888,776,1,16.3,113,888,0,776,0.262,68.08,41.730000000000004,0.13,985,2.4000000000000004,121,2.6 +2011,3,7,5,30,22,0.42,0.0835,0.68,99,828,582,1,16.400000000000002,99,828,0,582,0.262,70.43,54.300000000000004,0.13,985,2.4000000000000004,123,2.3000000000000003 +2011,3,7,6,30,21.3,0.43,0.07980000000000001,0.68,79,708,351,1,16.6,79,708,0,351,0.263,74.41,67.42,0.13,986,2.4000000000000004,124,1.8 +2011,3,7,7,30,20.200000000000003,0.42,0.078,0.68,48,428,118,1,16.8,48,428,0,118,0.264,80.96000000000001,80.68,0.13,986,2.4000000000000004,126,1.3 +2011,3,7,8,30,19.400000000000002,0.42,0.07740000000000001,0.68,0,0,0,0,16.7,0,0,0,0,0.265,84.18,94.05,0.13,987,2.4000000000000004,128,1.1 +2011,3,7,9,30,19.1,0.41000000000000003,0.0795,0.68,0,0,0,0,16.5,0,0,0,0,0.266,85.09,107.10000000000001,0.13,987,2.3000000000000003,129,1.1 +2011,3,7,10,30,18.7,0.39,0.08420000000000001,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.266,86.76,119.62,0.13,987,2.3000000000000003,129,1.1 +2011,3,7,11,30,18.400000000000002,0.39,0.0891,0.68,0,0,0,1,16.400000000000002,0,0,0,0,0.265,88.26,131.15,0.13,987,2.3000000000000003,128,1.1 +2011,3,7,12,30,18.2,0.37,0.09630000000000001,0.68,0,0,0,3,16.400000000000002,0,0,0,0,0.264,89.37,140.72,0.13,986,2.3000000000000003,127,1 +2011,3,7,13,30,18.1,0.35000000000000003,0.1041,0.68,0,0,0,1,16.5,0,0,0,0,0.263,90.51,146.55,0.13,986,2.3000000000000003,127,0.9 +2011,3,7,14,30,17.8,0.34,0.10880000000000001,0.68,0,0,0,1,16.6,0,0,0,0,0.263,92.41,146.62,0.13,985,2.3000000000000003,128,0.9 +2011,3,7,15,30,17.6,0.33,0.1107,0.68,0,0,0,1,16.6,0,0,0,0,0.262,93.78,140.88,0.13,985,2.3000000000000003,127,0.8 +2011,3,7,16,30,17.400000000000002,0.32,0.11670000000000001,0.68,0,0,0,3,16.5,0,0,0,0,0.263,94.61,131.37,0.13,985,2.2,126,0.8 +2011,3,7,17,30,17.3,0.31,0.1207,0.68,0,0,0,1,16.5,0,0,0,0,0.263,94.79,119.87,0.13,985,2.2,124,0.8 +2011,3,7,18,30,17.2,0.3,0.1217,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.264,94.79,107.36,0.13,985,2.2,123,0.8 +2011,3,7,19,30,17.8,0.3,0.1211,0.68,0,0,0,1,16.3,0,0,0,0,0.263,90.84,94.33,0.13,985,2.2,121,1.1 +2011,3,7,20,30,19.3,0.29,0.11620000000000001,0.68,55,341,109,1,17,55,341,0,109,0.262,86.59,80.97,0.13,986,2.2,116,1.6 +2011,3,7,21,30,21,0.3,0.10690000000000001,0.68,90,662,341,1,17.5,90,662,0,341,0.261,80.57000000000001,67.73,0.13,986,2.2,107,2.2 +2011,3,7,22,30,22.200000000000003,0.3,0.1037,0.68,109,803,574,1,17.7,109,803,0,574,0.26,75.71000000000001,54.63,0.13,986,2.2,99,2.6 +2011,3,7,23,30,22.700000000000003,0.29,0.108,0.68,125,869,770,3,17.6,374,28,0,395,0.259,72.77,42.08,0.13,986,2.2,97,2.8000000000000003 +2011,3,8,0,30,23.200000000000003,0.35000000000000003,0.1101,0.68,133,906,910,3,17.3,474,31,0,500,0.257,69.58,30.93,0.13,985,2.3000000000000003,96,2.8000000000000003 +2011,3,8,1,30,23.400000000000002,0.36,0.10490000000000001,0.68,133,928,985,3,17.3,113,21,0,132,0.257,68.7,23.400000000000002,0.13,985,2.3000000000000003,96,2.8000000000000003 +2011,3,8,2,30,23.3,0.36,0.0947,0.68,128,937,988,3,17.2,113,21,1,132,0.256,68.54,23.37,0.13,985,2.3000000000000003,96,2.7 +2011,3,8,3,30,23,0.41000000000000003,0.08950000000000001,0.68,120,926,916,3,17.2,161,29,0,185,0.255,69.64,30.86,0.13,984,2.3000000000000003,95,2.6 +2011,3,8,4,30,22.8,0.44,0.0809,0.68,108,899,776,3,17.1,393,32,0,416,0.255,70.03,42,0.13,984,2.3000000000000003,93,2.5 +2011,3,8,5,30,22.400000000000002,0.43,0.0707,0.68,92,847,584,1,16.900000000000002,92,847,0,584,0.256,71.15,54.550000000000004,0.13,984,2.2,92,2.2 +2011,3,8,6,30,21.5,0.46,0.06330000000000001,0.68,73,737,353,1,16.900000000000002,73,737,0,353,0.256,74.98,67.65,0.13,984,2.2,91,1.6 +2011,3,8,7,30,20.1,0.46,0.0584,0.68,44,472,118,1,17.3,44,472,0,118,0.257,84.09,80.91,0.13,984,2.1,92,1 +2011,3,8,8,30,18.900000000000002,0.46,0.056900000000000006,0.68,0,0,0,3,16.900000000000002,0,0,0,0,0.258,88.33,94.29,0.13,985,2.1,95,0.8 +2011,3,8,9,30,18.400000000000002,0.45,0.0562,0.68,0,0,0,3,16.6,0,0,0,0,0.258,89.13,107.35000000000001,0.13,986,2,99,0.8 +2011,3,8,10,30,18,0.46,0.0557,0.68,0,0,0,1,16.3,0,0,0,0,0.258,89.56,119.9,0.13,986,2,103,0.8 +2011,3,8,11,30,17.6,0.46,0.0555,0.68,0,0,0,0,16,0,0,0,0,0.257,90.45,131.46,0.13,986,2,105,0.8 +2011,3,8,12,30,17.2,0.47000000000000003,0.055,0.68,0,0,0,0,15.8,0,0,0,0,0.257,91.75,141.08,0.13,986,2,104,0.8 +2011,3,8,13,30,17,0.48,0.0546,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.257,91.91,146.95000000000002,0.13,985,2,101,0.8 +2011,3,8,14,30,16.8,0.5,0.0538,0.68,0,0,0,1,15.5,0,0,0,0,0.257,92.28,146.98,0.13,985,1.9000000000000001,98,0.8 +2011,3,8,15,30,16.7,0.52,0.053000000000000005,0.68,0,0,0,0,15.5,0,0,0,0,0.257,92.4,141.17000000000002,0.13,985,1.9000000000000001,96,0.8 +2011,3,8,16,30,16.400000000000002,0.53,0.052700000000000004,0.68,0,0,0,0,15.4,0,0,0,0,0.257,93.74,131.59,0.13,984,1.9000000000000001,95,0.8 +2011,3,8,17,30,16.2,0.52,0.0526,0.68,0,0,0,3,15.4,0,0,0,0,0.257,94.75,120.05,0.13,984,1.9000000000000001,95,0.8 +2011,3,8,18,30,16.1,0.53,0.0529,0.68,0,0,0,3,15.3,0,0,0,0,0.257,95.31,107.51,0.13,985,1.9000000000000001,98,0.8 +2011,3,8,19,30,16.900000000000002,0.54,0.0529,0.68,0,0,0,3,15.3,0,0,0,0,0.258,90.51,94.46000000000001,0.13,985,1.9000000000000001,104,0.9 +2011,3,8,20,30,18.900000000000002,0.54,0.0534,0.68,42,483,117,1,16.3,42,483,0,117,0.258,85.08,81.09,0.13,985,2,108,1.2000000000000002 +2011,3,8,21,30,20.900000000000002,0.5700000000000001,0.0528,0.68,68,756,353,1,16.7,68,756,0,353,0.258,76.93,67.85,0.13,985,2.1,102,1.5 +2011,3,8,22,30,22.3,0.62,0.0502,0.68,81,876,587,1,16.7,81,876,0,587,0.259,70.74,54.77,0.13,985,2.1,94,1.7000000000000002 +2011,3,8,23,30,22.900000000000002,0.62,0.051800000000000006,0.68,91,933,781,8,16.7,480,108,0,560,0.259,67.89,42.27,0.13,985,2.2,91,1.8 +2011,3,9,0,30,23.900000000000002,0.36,0.1184,0.68,139,897,906,1,16.6,139,897,0,906,0.259,63.76,31.19,0.16,985,2.3000000000000003,89,1.8 +2011,3,9,1,30,24.3,0.38,0.11960000000000001,0.68,143,912,978,8,16.7,558,43,0,597,0.259,62.57,23.76,0.16,984,2.4000000000000004,88,1.8 +2011,3,9,2,30,24.5,0.39,0.1096,0.68,137,919,978,8,16.7,290,28,0,316,0.259,62.01,23.76,0.16,983,2.5,85,1.8 +2011,3,9,3,30,24.200000000000003,0.45,0.10500000000000001,0.68,130,907,906,8,16.8,553,73,0,615,0.259,63.45,31.2,0.16,983,2.5,81,1.8 +2011,3,9,4,30,23.5,0.47000000000000003,0.11120000000000001,0.68,124,861,761,8,17,190,28,0,211,0.26,66.82000000000001,42.28,0.16,983,2.6,79,1.6 +2011,3,9,5,30,22.5,0.46,0.1154,0.68,113,782,563,8,17.400000000000002,337,75,0,380,0.261,72.7,54.800000000000004,0.16,983,2.7,78,1.3 +2011,3,9,6,30,21.5,0.47000000000000003,0.1282,0.68,95,625,331,8,17.900000000000002,208,143,0,262,0.261,80.11,67.89,0.16,983,2.8000000000000003,78,1 +2011,3,9,7,30,20.5,0.46,0.1341,0.68,55,310,103,8,18.400000000000002,67,94,3,81,0.262,87.99,81.14,0.16,984,2.8000000000000003,81,0.7000000000000001 +2011,3,9,8,30,19.8,0.44,0.12860000000000002,0.68,0,0,0,4,18.400000000000002,0,0,0,0,0.263,91.79,94.53,0.16,984,2.8000000000000003,85,0.6000000000000001 +2011,3,9,9,30,19.200000000000003,0.43,0.1188,0.68,0,0,0,4,18.3,0,0,0,0,0.263,94.25,107.60000000000001,0.16,985,2.8000000000000003,85,0.7000000000000001 +2011,3,9,10,30,18.7,0.43,0.1077,0.68,0,0,0,3,17.900000000000002,0,0,0,0,0.262,94.99,120.18,0.16,985,2.7,83,0.7000000000000001 +2011,3,9,11,30,18.2,0.45,0.0921,0.68,0,0,0,3,17.6,0,0,0,0,0.262,96.3,131.78,0.16,984,2.6,81,0.7000000000000001 +2011,3,9,12,30,18,0.47000000000000003,0.0833,0.68,0,0,0,8,17.400000000000002,0,0,0,0,0.262,96.13,141.44,0.16,984,2.5,78,0.7000000000000001 +2011,3,9,13,30,17.8,0.49,0.0775,0.68,0,0,0,1,17.2,0,0,0,0,0.261,96.21000000000001,147.34,0.16,983,2.5,74,0.7000000000000001 +2011,3,9,14,30,17.8,0.51,0.0724,0.68,0,0,0,3,17,0,0,0,0,0.26,95.29,147.35,0.16,983,2.4000000000000004,72,0.7000000000000001 +2011,3,9,15,30,17.900000000000002,0.54,0.0687,0.68,0,0,0,8,16.900000000000002,0,0,0,0,0.26,93.76,141.47,0.16,982,2.4000000000000004,76,0.6000000000000001 +2011,3,9,16,30,17.900000000000002,0.55,0.0663,0.68,0,0,0,8,16.8,0,0,0,0,0.26,93.03,131.82,0.16,982,2.4000000000000004,104,0.5 +2011,3,9,17,30,17.6,0.56,0.06470000000000001,0.68,0,0,0,4,16.6,0,0,0,0,0.26,94.14,120.22,0.16,982,2.4000000000000004,145,0.6000000000000001 +2011,3,9,18,30,17,0.56,0.064,0.68,0,0,0,0,16.6,0,0,0,0,0.26,97.34,107.65,0.16,983,2.4000000000000004,169,0.7000000000000001 +2011,3,9,19,30,17.1,0.5700000000000001,0.0639,0.68,0,0,0,0,16.5,0,0,0,0,0.259,96.04,94.59,0.16,983,2.4000000000000004,172,0.8 +2011,3,9,20,30,18.8,0.5700000000000001,0.06420000000000001,0.68,44,446,112,1,17.1,44,446,0,112,0.259,89.63,81.21000000000001,0.16,984,2.4000000000000004,161,0.9 +2011,3,9,21,30,21,0.6,0.061900000000000004,0.68,71,732,346,1,17.6,71,732,0,346,0.259,80.95,67.98,0.16,984,2.4000000000000004,123,0.9 +2011,3,9,22,30,22.6,0.63,0.0579,0.68,85,856,577,1,18,85,856,0,577,0.258,75.07000000000001,54.92,0.16,984,2.5,90,1 +2011,3,9,23,30,23.200000000000003,0.7000000000000001,0.0516,0.68,91,923,772,3,18.2,465,82,0,525,0.258,73.60000000000001,42.45,0.16,984,2.6,83,1 +2011,3,10,0,30,24.3,0.58,0.07390000000000001,0.68,111,930,905,4,18.2,423,24,0,444,0.257,68.71000000000001,31.44,0.18,983,2.8000000000000003,71,1.2000000000000002 +2011,3,10,1,30,24.700000000000003,0.63,0.0776,0.68,116,942,976,3,18.2,187,30,0,215,0.257,67.19,24.11,0.18,982,2.9000000000000004,68,1.3 +2011,3,10,2,30,24.700000000000003,0.65,0.0742,0.68,114,941,973,3,18.3,585,59,0,639,0.256,67.52,24.16,0.18,981,3.1,67,1.5 +2011,3,10,3,30,24.5,0.65,0.1023,0.68,126,900,893,1,18.5,126,900,0,893,0.256,69.46000000000001,31.53,0.18,981,3.1,67,1.6 +2011,3,10,4,30,24,0.67,0.10830000000000001,0.68,120,855,750,1,18.8,120,855,0,750,0.256,72.60000000000001,42.57,0.18,981,3.2,69,1.7000000000000002 +2011,3,10,5,30,23.400000000000002,0.63,0.1015,0.68,104,789,556,1,19,104,789,0,556,0.257,76.34,55.050000000000004,0.18,981,3.3000000000000003,70,1.6 +2011,3,10,6,30,22.400000000000002,0.67,0.101,0.68,84,656,328,1,19.3,84,656,0,328,0.258,82.86,68.12,0.18,981,3.4000000000000004,72,1.2000000000000002 +2011,3,10,7,30,21.400000000000002,0.67,0.09230000000000001,0.68,47,374,103,3,19.8,45,0,3,45,0.259,90.65,81.37,0.18,982,3.4000000000000004,74,0.8 +2011,3,10,8,30,20.700000000000003,0.65,0.0824,0.68,0,0,0,1,19.700000000000003,0,0,0,0,0.261,94.27,94.76,0.18,983,3.5,75,0.7000000000000001 +2011,3,10,9,30,20.3,0.62,0.079,0.68,0,0,0,1,19.6,0,0,0,0,0.262,95.92,107.85000000000001,0.18,983,3.5,73,0.6000000000000001 +2011,3,10,10,30,19.900000000000002,0.59,0.0782,0.68,0,0,0,1,19.5,0,0,0,0,0.262,97.26,120.45,0.18,983,3.5,68,0.6000000000000001 +2011,3,10,11,30,19.5,0.58,0.0762,0.68,0,0,0,1,19.3,0,0,0,0,0.263,98.63,132.09,0.18,983,3.5,62,0.7000000000000001 +2011,3,10,12,30,19.200000000000003,0.5700000000000001,0.07540000000000001,0.68,0,0,0,8,19.1,0,0,0,0,0.263,99.23,141.8,0.18,983,3.4000000000000004,56,0.7000000000000001 +2011,3,10,13,30,19,0.56,0.07640000000000001,0.68,0,0,0,4,19,0,0,0,0,0.263,99.77,147.74,0.18,983,3.4000000000000004,52,0.7000000000000001 +2011,3,10,14,30,18.8,0.54,0.07740000000000001,0.68,0,0,0,3,18.8,0,0,0,0,0.262,100,147.72,0.18,982,3.4000000000000004,54,0.7000000000000001 +2011,3,10,15,30,18.7,0.53,0.0775,0.68,0,0,0,1,18.7,0,0,0,0,0.262,100,141.76,0.18,982,3.3000000000000003,57,0.7000000000000001 +2011,3,10,16,30,18.7,0.52,0.0776,0.68,0,0,0,1,18.6,0,0,0,0,0.262,99.58,132.04,0.18,981,3.3000000000000003,60,0.6000000000000001 +2011,3,10,17,30,18.7,0.5,0.0792,0.68,0,0,0,3,18.6,0,0,0,0,0.262,99.36,120.4,0.18,982,3.3000000000000003,64,0.6000000000000001 +2011,3,10,18,30,18.8,0.49,0.0824,0.68,0,0,0,3,18.6,0,0,0,0,0.263,98.71000000000001,107.8,0.18,982,3.3000000000000003,70,0.6000000000000001 +2011,3,10,19,30,19.400000000000002,0.48,0.0847,0.68,0,0,0,1,18.6,0,0,0,0,0.263,95.18,94.72,0.18,983,3.3000000000000003,80,0.6000000000000001 +2011,3,10,20,30,20.8,0.48,0.0848,0.68,47,381,104,4,19.3,45,0,3,45,0.264,91.27,81.33,0.18,984,3.2,77,0.9 +2011,3,10,21,30,22.5,0.53,0.0765,0.68,76,689,333,1,19.6,76,689,0,333,0.264,83.49,68.11,0.18,984,3.2,66,1.3 +2011,3,10,22,30,23.8,0.58,0.0675,0.68,89,826,562,1,19.5,89,826,0,562,0.265,76.89,55.07,0.18,985,3.3000000000000003,64,1.6 +2011,3,10,23,30,24.400000000000002,0.6,0.0626,0.68,98,896,757,1,19.5,98,896,0,757,0.265,74.13,42.63,0.18,985,3.3000000000000003,66,1.7000000000000002 +2011,3,11,0,30,25.400000000000002,0.62,0.101,0.68,124,896,886,1,19.5,124,896,0,886,0.266,69.92,31.7,0.16,984,3.3000000000000003,70,1.9000000000000001 +2011,3,11,1,30,25.5,0.66,0.0896,0.68,121,923,961,1,19.5,121,923,0,961,0.266,69.44,24.47,0.16,984,3.3000000000000003,70,2 +2011,3,11,2,30,25.200000000000003,0.68,0.0781,0.68,114,933,963,1,19.400000000000002,114,933,0,963,0.266,70.28,24.55,0.16,983,3.3000000000000003,70,2 +2011,3,11,3,30,24.700000000000003,0.74,0.0921,0.68,118,905,887,8,19.3,576,134,0,690,0.267,72.10000000000001,31.87,0.16,983,3.3000000000000003,71,2 +2011,3,11,4,30,24.200000000000003,0.76,0.0821,0.68,105,878,749,8,19.5,460,80,0,518,0.267,74.96000000000001,42.85,0.16,983,3.3000000000000003,74,1.9000000000000001 +2011,3,11,5,30,23.5,0.75,0.0757,0.68,91,819,557,7,19.700000000000003,350,135,0,427,0.267,79.37,55.31,0.16,983,3.2,77,1.7000000000000002 +2011,3,11,6,30,22.6,0.7000000000000001,0.07740000000000001,0.68,75,689,329,8,20,198,282,0,302,0.268,85.46000000000001,68.36,0.16,983,3.2,81,1.2000000000000002 +2011,3,11,7,30,21.6,0.64,0.08320000000000001,0.68,44,381,100,7,20.3,63,194,3,91,0.269,92.57000000000001,81.60000000000001,0.16,984,3.3000000000000003,84,0.8 +2011,3,11,8,30,21.1,0.56,0.09340000000000001,0.68,0,0,0,8,20.200000000000003,0,0,0,0,0.27,94.61,95,0.16,984,3.3000000000000003,85,0.7000000000000001 +2011,3,11,9,30,20.900000000000002,0.54,0.1056,0.68,0,0,0,8,20.200000000000003,0,0,0,0,0.271,95.77,108.10000000000001,0.16,985,3.4000000000000004,84,0.7000000000000001 +2011,3,11,10,30,20.900000000000002,0.53,0.1066,0.68,0,0,0,8,20.200000000000003,0,0,0,0,0.271,95.83,120.73,0.16,985,3.5,83,0.8 +2011,3,11,11,30,20.8,0.53,0.09670000000000001,0.68,0,0,0,8,20.200000000000003,0,0,0,0,0.271,96.21000000000001,132.41,0.16,985,3.5,82,0.8 +2011,3,11,12,30,20.6,0.55,0.0902,0.68,0,0,0,8,20.1,0,0,0,0,0.27,96.91,142.17000000000002,0.16,985,3.6,81,0.8 +2011,3,11,13,30,20.5,0.56,0.0873,0.68,0,0,0,1,20,0,0,0,0,0.27,96.77,148.14000000000001,0.16,985,3.7,80,0.8 +2011,3,11,14,30,20.3,0.56,0.0848,0.68,0,0,0,4,19.8,0,0,0,0,0.27,97.07000000000001,148.09,0.16,985,3.7,80,0.8 +2011,3,11,15,30,20,0.55,0.0829,0.68,0,0,0,4,19.700000000000003,0,0,0,0,0.27,98.04,142.05,0.16,985,3.8000000000000003,82,0.7000000000000001 +2011,3,11,16,30,19.700000000000003,0.53,0.0814,0.68,0,0,0,3,19.5,0,0,0,0,0.271,98.86,132.26,0.16,985,3.7,87,0.7000000000000001 +2011,3,11,17,30,19.6,0.52,0.0815,0.68,0,0,0,4,19.3,0,0,0,0,0.272,98.41,120.57000000000001,0.16,985,3.7,95,0.7000000000000001 +2011,3,11,18,30,19.5,0.53,0.0823,0.68,0,0,0,8,19.3,0,0,0,0,0.272,98.53,107.94,0.16,986,3.6,101,0.7000000000000001 +2011,3,11,19,30,20,0.55,0.0844,0.68,0,0,0,1,19.200000000000003,0,0,0,0,0.272,95.26,94.84,0.16,987,3.6,105,0.8 +2011,3,11,20,30,21.200000000000003,0.55,0.08410000000000001,0.68,45,375,101,3,19.8,49,3,3,49,0.273,91.97,81.45,0.16,987,3.6,102,1.2000000000000002 +2011,3,11,21,30,22.5,0.58,0.0776,0.68,75,679,327,3,20.200000000000003,170,41,0,185,0.274,87.03,68.23,0.16,988,3.6,91,1.7000000000000002 +2011,3,11,22,30,23.8,0.64,0.0689,0.68,89,818,555,1,20.3,89,818,0,555,0.275,80.82000000000001,55.21,0.16,988,3.6,83,2.1 +2011,3,11,23,30,24.400000000000002,0.64,0.0692,0.68,100,883,747,3,20.1,471,103,0,546,0.275,77.19,42.82,0.16,988,3.6,81,2.2 +2011,3,12,0,30,25.400000000000002,0.36,0.12350000000000001,0.68,139,865,872,1,19.900000000000002,139,865,0,872,0.275,71.71000000000001,31.96,0.16,988,3.6,78,2.4000000000000004 +2011,3,12,1,30,25.700000000000003,0.34,0.1283,0.68,146,880,944,3,19.700000000000003,618,116,0,723,0.275,69.68,24.830000000000002,0.16,987,3.5,77,2.5 +2011,3,12,2,30,25.700000000000003,0.33,0.1313,0.68,148,877,943,3,19.6,561,49,0,605,0.274,68.85000000000001,24.94,0.16,986,3.5,76,2.6 +2011,3,12,3,30,25.5,0.35000000000000003,0.1257,0.68,140,865,872,1,19.3,140,865,0,872,0.273,68.8,32.22,0.16,986,3.4000000000000004,77,2.7 +2011,3,12,4,30,25.1,0.37,0.1182,0.68,127,833,735,1,19.1,127,833,0,735,0.273,69.51,43.14,0.16,986,3.3000000000000003,77,2.6 +2011,3,12,5,30,24.400000000000002,0.37,0.11280000000000001,0.68,111,763,542,8,19.1,349,201,0,463,0.272,72.14,55.57,0.16,986,3.3000000000000003,78,2.3000000000000003 +2011,3,12,6,30,23.3,0.42,0.1082,0.68,87,629,316,1,19.200000000000003,87,629,0,316,0.272,77.86,68.61,0.16,987,3.3000000000000003,80,1.7000000000000002 +2011,3,12,7,30,22,0.45,0.1012,0.68,47,329,94,8,19.6,61,138,3,81,0.272,86.42,81.84,0.16,987,3.3000000000000003,84,1.1 +2011,3,12,8,30,21,0.44,0.099,0.68,0,0,0,3,19.6,0,0,0,0,0.272,91.44,95.25,0.16,988,3.3000000000000003,91,0.8 +2011,3,12,9,30,20.6,0.41000000000000003,0.1014,0.68,0,0,0,0,19.400000000000002,0,0,0,0,0.271,92.69,108.36,0.16,988,3.3000000000000003,95,0.8 +2011,3,12,10,30,20.400000000000002,0.39,0.1075,0.68,0,0,0,0,19.200000000000003,0,0,0,0,0.271,93.01,121.01,0.16,989,3.3000000000000003,97,0.8 +2011,3,12,11,30,20.3,0.38,0.1101,0.68,0,0,0,0,19.1,0,0,0,0,0.271,92.83,132.73,0.16,989,3.3000000000000003,97,0.9 +2011,3,12,12,30,20.1,0.4,0.11660000000000001,0.68,0,0,0,0,18.900000000000002,0,0,0,0,0.27,93.08,142.53,0.16,989,3.2,98,0.9 +2011,3,12,13,30,19.900000000000002,0.39,0.1178,0.68,0,0,0,1,18.8,0,0,0,0,0.269,93.18,148.53,0.16,988,3.1,101,0.8 +2011,3,12,14,30,19.700000000000003,0.38,0.11560000000000001,0.68,0,0,0,0,18.6,0,0,0,0,0.269,93.61,148.46,0.16,988,3,104,0.8 +2011,3,12,15,30,19.400000000000002,0.4,0.1131,0.68,0,0,0,0,18.5,0,0,0,0,0.27,94.67,142.34,0.16,987,3,109,0.8 +2011,3,12,16,30,19.200000000000003,0.41000000000000003,0.1071,0.68,0,0,0,0,18.5,0,0,0,0,0.271,95.49,132.48,0.16,987,2.9000000000000004,112,0.8 +2011,3,12,17,30,19,0.4,0.10350000000000001,0.68,0,0,0,0,18.400000000000002,0,0,0,0,0.272,96.52,120.74000000000001,0.16,988,2.8000000000000003,115,0.8 +2011,3,12,18,30,18.8,0.4,0.1012,0.68,0,0,0,0,18.400000000000002,0,0,0,0,0.273,97.76,108.08,0.16,988,2.8000000000000003,119,0.8 +2011,3,12,19,30,19.400000000000002,0.39,0.1004,0.68,0,0,0,0,18.5,0,0,0,0,0.273,94.59,94.97,0.16,989,2.8000000000000003,124,1 +2011,3,12,20,30,20.900000000000002,0.38,0.1009,0.68,49,340,99,1,19.200000000000003,49,340,0,99,0.273,89.98,81.57000000000001,0.16,989,2.9000000000000004,123,1.6 +2011,3,12,21,30,22.400000000000002,0.41000000000000003,0.095,0.68,83,658,326,1,19.700000000000003,83,658,0,326,0.273,84.88,68.36,0.16,990,2.9000000000000004,114,2.1 +2011,3,12,22,30,23.8,0.46,0.0927,0.68,101,795,553,1,20,101,795,0,553,0.273,79.2,55.36,0.16,989,3,104,2.5 +2011,3,12,23,30,24.5,0.46,0.09090000000000001,0.68,113,867,747,1,20.1,113,867,0,747,0.272,76.74,43.01,0.16,989,3,100,2.5 +2011,3,13,0,30,25.8,0.4,0.1061,0.68,129,886,879,1,20.3,129,886,0,879,0.271,71.68,32.22,0.16,988,3.2,93,2.7 +2011,3,13,1,30,26.200000000000003,0.37,0.1134,0.68,137,897,949,1,20.400000000000002,137,897,0,949,0.269,70.45,25.19,0.16,987,3.2,90,2.7 +2011,3,13,2,30,26.400000000000002,0.33,0.11910000000000001,0.68,141,889,944,1,20.400000000000002,141,889,0,944,0.268,69.81,25.34,0.16,987,3.3000000000000003,88,2.7 +2011,3,13,3,30,26.3,0.2,0.1844,0.68,174,807,854,1,20.400000000000002,174,807,0,854,0.267,70.17,32.56,0.16,986,3.4000000000000004,87,2.7 +2011,3,13,4,30,25.8,0.19,0.1927,0.68,167,751,712,1,20.5,167,751,0,712,0.266,72.41,43.44,0.16,986,3.5,87,2.7 +2011,3,13,5,30,25.1,0.18,0.1877,0.68,145,666,519,1,20.5,145,666,0,519,0.265,75.60000000000001,55.83,0.16,986,3.6,87,2.5 +2011,3,13,6,30,23.900000000000002,0.2,0.1756,0.68,110,520,298,1,20.700000000000003,110,520,0,298,0.265,82.15,68.85000000000001,0.16,986,3.6,88,2 +2011,3,13,7,30,22.400000000000002,0.22,0.1579,0.68,54,216,84,1,21,54,216,0,84,0.265,91.84,82.07000000000001,0.16,987,3.7,90,1.3 +2011,3,13,8,30,21.5,0.21,0.1499,0.68,0,0,0,3,20.900000000000002,0,0,0,0,0.266,96.59,95.49,0.16,987,3.7,92,1 +2011,3,13,9,30,21,0.22,0.14650000000000002,0.68,0,0,0,1,20.900000000000002,0,0,0,0,0.266,99.3,108.62,0.16,988,3.7,93,0.9 +2011,3,13,10,30,20.8,0.23,0.1355,0.68,0,0,0,3,20.8,0,0,0,0,0.265,99.98,121.29,0.16,988,3.6,94,0.9 +2011,3,13,11,30,20.5,0.24,0.12050000000000001,0.68,0,0,0,1,20.5,0,0,0,0,0.264,100,133.04,0.16,988,3.5,94,0.9 +2011,3,13,12,30,20.3,0.27,0.1125,0.68,0,0,0,0,20.3,0,0,0,0,0.263,100,142.9,0.16,988,3.4000000000000004,95,0.8 +2011,3,13,13,30,20.200000000000003,0.3,0.1013,0.68,0,0,0,0,20.200000000000003,0,0,0,0,0.262,100,148.93,0.16,987,3.3000000000000003,97,0.8 +2011,3,13,14,30,20,0.32,0.09190000000000001,0.68,0,0,0,0,20,0,0,0,0,0.261,100,148.83,0.16,987,3.2,99,0.8 +2011,3,13,15,30,19.900000000000002,0.36,0.0918,0.68,0,0,0,0,19.900000000000002,0,0,0,0,0.261,100,142.63,0.16,986,3.1,103,0.8 +2011,3,13,16,30,19.8,0.37,0.09000000000000001,0.68,0,0,0,0,19.8,0,0,0,0,0.26,100,132.69,0.16,986,3,106,0.8 +2011,3,13,17,30,19.700000000000003,0.36,0.084,0.68,0,0,0,0,19.700000000000003,0,0,0,0,0.26,100,120.91,0.16,986,2.9000000000000004,109,0.8 +2011,3,13,18,30,19.6,0.43,0.08030000000000001,0.68,0,0,0,0,19.6,0,0,0,0,0.26,100,108.22,0.16,987,2.9000000000000004,112,0.8 +2011,3,13,19,30,20.1,0.47000000000000003,0.0748,0.68,0,0,0,0,19.6,0,0,0,0,0.259,96.85000000000001,95.09,0.16,988,2.8000000000000003,114,1 +2011,3,13,20,30,21.3,0.47000000000000003,0.069,0.68,43,405,101,1,20.3,43,405,0,101,0.258,94.10000000000001,81.69,0.16,988,2.8000000000000003,112,1.4000000000000001 +2011,3,13,21,30,22.6,0.54,0.0584,0.68,69,719,333,1,20.700000000000003,69,719,0,333,0.257,89.10000000000001,68.49,0.16,988,2.8000000000000003,106,1.9000000000000001 +2011,3,13,22,30,23.900000000000002,0.58,0.052500000000000005,0.68,82,849,563,1,20.6,82,849,0,563,0.256,81.61,55.51,0.16,988,2.8000000000000003,102,2.1 +2011,3,13,23,30,24.5,0.63,0.045000000000000005,0.68,87,918,756,1,20.1,87,918,0,756,0.256,76.58,43.2,0.16,988,2.9000000000000004,101,2.2 +2011,3,14,0,30,25.8,0.47000000000000003,0.0658,0.68,106,929,890,1,19.8,106,929,0,890,0.255,69.43,32.480000000000004,0.16,988,2.9000000000000004,99,2.2 +2011,3,14,1,30,26.3,0.54,0.057100000000000005,0.68,103,952,962,1,19.6,103,952,0,962,0.254,66.72,25.560000000000002,0.16,987,3,98,2.2 +2011,3,14,2,30,26.5,0.56,0.057100000000000005,0.68,103,952,960,1,19.5,103,952,0,960,0.254,65.6,25.740000000000002,0.16,986,3,97,2.2 +2011,3,14,3,30,26.3,0.61,0.0541,0.68,98,937,885,1,19.5,98,937,0,885,0.254,66.11,32.910000000000004,0.16,985,3.1,95,2.3000000000000003 +2011,3,14,4,30,25.900000000000002,0.59,0.0599,0.68,95,896,743,1,19.400000000000002,95,896,0,743,0.253,67.22,43.730000000000004,0.16,985,3.1,94,2.3000000000000003 +2011,3,14,5,30,25.200000000000003,0.55,0.0641,0.68,87,825,547,0,19.1,87,825,0,547,0.253,69.12,56.09,0.16,985,3.1,92,2.1 +2011,3,14,6,30,24,0.53,0.0683,0.68,71,689,317,1,19,71,689,0,317,0.253,73.61,69.10000000000001,0.16,985,3.1,88,1.6 +2011,3,14,7,30,22.400000000000002,0.51,0.0693,0.68,40,377,91,1,19.3,40,377,0,91,0.253,82.88,82.31,0.16,986,3.2,85,1 +2011,3,14,8,30,21.200000000000003,0.51,0.0673,0.68,0,0,0,3,19.3,0,0,0,0,0.254,88.66,95.73,0.16,986,3.2,86,0.7000000000000001 +2011,3,14,9,30,20.5,0.51,0.06570000000000001,0.68,0,0,0,1,19.1,0,0,0,0,0.254,91.88,108.87,0.16,987,3.1,90,0.7000000000000001 +2011,3,14,10,30,20,0.51,0.065,0.68,0,0,0,3,19,0,0,0,0,0.253,93.94,121.57000000000001,0.16,987,3.1,95,0.7000000000000001 +2011,3,14,11,30,19.6,0.5,0.0655,0.68,0,0,0,0,18.900000000000002,0,0,0,0,0.253,95.61,133.36,0.16,987,3,101,0.7000000000000001 +2011,3,14,12,30,19.3,0.49,0.0661,0.68,0,0,0,0,18.8,0,0,0,0,0.253,96.82000000000001,143.26,0.16,986,2.9000000000000004,105,0.7000000000000001 +2011,3,14,13,30,19,0.49,0.0674,0.68,0,0,0,0,18.7,0,0,0,0,0.252,98.31,149.33,0.16,986,2.7,107,0.7000000000000001 +2011,3,14,14,30,18.900000000000002,0.52,0.0653,0.68,0,0,0,0,18.7,0,0,0,0,0.253,98.7,149.19,0.16,985,2.6,108,0.7000000000000001 +2011,3,14,15,30,18.8,0.62,0.066,0.68,0,0,0,0,18.7,0,0,0,0,0.254,99.11,142.91,0.16,985,2.5,111,0.7000000000000001 +2011,3,14,16,30,18.7,0.71,0.0634,0.68,0,0,0,0,18.6,0,0,0,0,0.255,99.2,132.91,0.16,985,2.5,117,0.7000000000000001 +2011,3,14,17,30,18.400000000000002,0.75,0.055200000000000006,0.68,0,0,0,0,18.400000000000002,0,0,0,0,0.257,100,121.07000000000001,0.16,985,2.5,125,0.7000000000000001 +2011,3,14,18,30,18.2,0.81,0.050300000000000004,0.68,0,0,0,0,18.2,0,0,0,0,0.258,100,108.36,0.16,986,2.5,133,0.7000000000000001 +2011,3,14,19,30,18.8,0.86,0.0458,0.68,0,0,0,0,18.2,0,0,0,0,0.259,96.01,95.21000000000001,0.16,986,2.5,138,0.9 +2011,3,14,20,30,20.3,0.91,0.0402,0.68,36,484,105,1,18.6,36,484,0,105,0.26,89.72,81.81,0.16,987,2.6,134,1.3 +2011,3,14,21,30,22,0.98,0.035500000000000004,0.68,59,764,338,3,18.7,163,37,0,176,0.26,81.72,68.61,0.16,987,2.6,123,1.8 +2011,3,14,22,30,23.400000000000002,1.03,0.0324,0.68,70,881,567,1,18.6,70,881,0,567,0.26,74.3,55.660000000000004,0.16,987,2.6,113,1.9000000000000001 +2011,3,14,23,30,24.1,1.06,0.031,0.68,77,938,759,1,18.5,77,938,0,759,0.259,70.88,43.39,0.16,987,2.7,109,1.9000000000000001 +2011,3,15,0,30,25.400000000000002,0.71,0.0523,0.68,96,945,891,1,18.6,96,945,0,891,0.259,66.11,32.75,0.15,986,2.8000000000000003,103,1.9000000000000001 +2011,3,15,1,30,26,0.76,0.048600000000000004,0.68,96,964,963,1,18.7,96,964,0,963,0.258,64.22,25.92,0.15,985,2.8000000000000003,100,1.9000000000000001 +2011,3,15,2,30,26.400000000000002,0.78,0.0468,0.68,95,963,960,3,18.7,537,41,0,573,0.258,62.67,26.14,0.15,984,2.9000000000000004,99,1.9000000000000001 +2011,3,15,3,30,26.400000000000002,0.75,0.0517,0.68,95,941,882,1,18.6,95,941,0,882,0.257,62.39,33.26,0.15,984,3,99,2 +2011,3,15,4,30,26.1,0.75,0.0539,0.68,90,905,741,1,18.6,90,905,0,741,0.257,63.17,44.03,0.15,983,3,98,2 +2011,3,15,5,30,25.400000000000002,0.76,0.0536,0.68,80,838,544,1,18.5,80,838,0,544,0.257,65.6,56.36,0.15,983,3.1,96,1.9000000000000001 +2011,3,15,6,30,24.200000000000003,0.8,0.054200000000000005,0.68,65,713,316,3,18.6,184,91,0,216,0.257,71.15,69.34,0.15,984,3.1,90,1.5 +2011,3,15,7,30,22.6,0.84,0.0522,0.68,36,419,90,1,19.3,36,419,0,90,0.258,81.57000000000001,82.55,0.15,984,3.1,85,1 +2011,3,15,8,30,21.400000000000002,0.86,0.0475,0.68,0,0,0,0,19.3,0,0,0,0,0.258,87.61,95.98,0.15,985,3.1,82,0.8 +2011,3,15,9,30,20.700000000000003,0.86,0.0456,0.68,0,0,0,3,19.3,0,0,0,0,0.258,91.67,109.13,0.15,986,3.1,82,0.7000000000000001 +2011,3,15,10,30,20.200000000000003,0.86,0.044500000000000005,0.68,0,0,0,3,19.3,0,0,0,0,0.257,94.56,121.85000000000001,0.15,986,3.1,84,0.7000000000000001 +2011,3,15,11,30,19.8,0.87,0.0439,0.68,0,0,0,0,19.3,0,0,0,0,0.257,97.11,133.68,0.15,986,3.1,89,0.6000000000000001 +2011,3,15,12,30,19.5,0.88,0.0444,0.68,0,0,0,0,19.400000000000002,0,0,0,0,0.256,99.32000000000001,143.63,0.15,986,3.1,95,0.6000000000000001 +2011,3,15,13,30,19.3,0.91,0.0455,0.68,0,0,0,0,19.3,0,0,0,0,0.256,100,149.73,0.15,985,3.2,102,0.6000000000000001 +2011,3,15,14,30,19.200000000000003,0.9400000000000001,0.0448,0.68,0,0,0,0,19.200000000000003,0,0,0,0,0.256,100,149.56,0.15,985,3.2,110,0.6000000000000001 +2011,3,15,15,30,19.200000000000003,1.04,0.0514,0.68,0,0,0,0,19.200000000000003,0,0,0,0,0.256,100,143.20000000000002,0.15,984,3.2,119,0.6000000000000001 +2011,3,15,16,30,19.1,1.1,0.0516,0.68,0,0,0,0,19.1,0,0,0,0,0.256,100,133.12,0.15,984,3.2,124,0.6000000000000001 +2011,3,15,17,30,19,1.1300000000000001,0.0449,0.68,0,0,0,3,19,0,0,0,0,0.257,100,121.24000000000001,0.15,984,3.2,125,0.6000000000000001 +2011,3,15,18,30,18.900000000000002,1.18,0.0507,0.68,0,0,0,3,18.900000000000002,0,0,0,0,0.257,100,108.49000000000001,0.15,984,3.2,128,0.6000000000000001 +2011,3,15,19,30,19.400000000000002,1.21,0.0516,0.68,0,0,0,3,19.400000000000002,0,0,0,0,0.258,100,95.34,0.15,985,3.2,133,0.7000000000000001 +2011,3,15,20,30,21,1.22,0.0459,0.68,36,462,101,8,19.8,58,64,3,67,0.259,92.67,81.93,0.15,985,3.2,121,0.8 +2011,3,15,21,30,22.8,1.27,0.0427,0.68,60,739,328,8,20,194,112,0,235,0.259,84.06,68.74,0.15,986,3.3000000000000003,93,0.8 +2011,3,15,22,30,24.3,1.32,0.039400000000000004,0.68,72,858,555,1,19.8,72,858,0,555,0.26,75.98,55.81,0.15,986,3.3000000000000003,75,0.8 +2011,3,15,23,30,25.1,1.34,0.0385,0.68,80,919,746,8,19.6,464,105,0,540,0.26,71.49,43.58,0.15,986,3.3000000000000003,69,0.7000000000000001 +2011,3,16,0,30,26.5,0.8200000000000001,0.07300000000000001,0.68,106,916,874,1,19.400000000000002,106,916,0,874,0.261,65.23,33.02,0.15,985,3.4000000000000004,67,0.7000000000000001 +2011,3,16,1,30,27,0.84,0.0721,0.68,108,931,943,1,19.3,108,931,0,943,0.261,62.81,26.29,0.15,984,3.5,68,0.7000000000000001 +2011,3,16,2,30,27.3,0.86,0.07200000000000001,0.68,108,931,941,7,19.200000000000003,500,30,0,527,0.26,61.480000000000004,26.53,0.15,983,3.5,68,0.9 +2011,3,16,3,30,27.5,0.85,0.0863,0.68,112,900,862,0,19.3,112,900,0,862,0.261,61.1,33.61,0.15,983,3.6,66,1 +2011,3,16,4,30,27.3,0.85,0.0878,0.68,105,859,720,1,19.400000000000002,105,859,0,720,0.261,62.160000000000004,44.33,0.15,982,3.7,61,1.2000000000000002 +2011,3,16,5,30,26.6,0.86,0.091,0.68,95,783,525,0,19.6,95,783,0,525,0.262,65.39,56.620000000000005,0.15,983,3.8000000000000003,57,1.4000000000000001 +2011,3,16,6,30,25.3,0.89,0.0908,0.68,75,646,300,1,19.900000000000002,75,646,0,300,0.263,72.13,69.59,0.15,983,3.8000000000000003,53,1.3 +2011,3,16,7,30,23.6,0.91,0.0908,0.68,40,329,81,1,20.6,40,329,0,81,0.264,83.18,82.79,0.15,984,3.9000000000000004,50,0.9 +2011,3,16,8,30,22.5,0.93,0.091,0.68,0,0,0,8,20.6,0,0,0,0,0.265,88.8,96.23,0.15,984,4,48,0.8 +2011,3,16,9,30,21.8,0.93,0.0922,0.68,0,0,0,8,20.6,0,0,0,0,0.266,92.79,109.39,0.15,985,4.1000000000000005,47,0.6000000000000001 +2011,3,16,10,30,21.400000000000002,0.93,0.096,0.68,0,0,0,0,20.6,0,0,0,0,0.266,95.41,122.13,0.15,986,4.1000000000000005,44,0.6000000000000001 +2011,3,16,11,30,21.1,0.93,0.1,0.68,0,0,0,0,20.6,0,0,0,0,0.266,97.18,133.99,0.15,986,4.2,38,0.5 +2011,3,16,12,30,20.8,0.93,0.1014,0.68,0,0,0,1,20.6,0,0,0,0,0.265,98.72,143.99,0.15,986,4.2,30,0.5 +2011,3,16,13,30,20.700000000000003,0.9400000000000001,0.10110000000000001,0.68,0,0,0,0,20.5,0,0,0,0,0.265,98.77,150.13,0.15,985,4.2,22,0.5 +2011,3,16,14,30,20.6,0.9400000000000001,0.09970000000000001,0.68,0,0,0,0,20.400000000000002,0,0,0,0,0.264,98.72,149.93,0.15,985,4.1000000000000005,18,0.4 +2011,3,16,15,30,20.6,0.9500000000000001,0.10070000000000001,0.68,0,0,0,0,20.3,0,0,0,0,0.264,98.27,143.48,0.15,985,4.1000000000000005,43,0.2 +2011,3,16,16,30,20.6,0.97,0.10070000000000001,0.68,0,0,0,0,20.200000000000003,0,0,0,0,0.264,97.55,133.33,0.15,984,4.1000000000000005,113,0.2 +2011,3,16,17,30,20.400000000000002,0.98,0.09960000000000001,0.68,0,0,0,0,20.1,0,0,1,0,0.264,98.22,121.4,0.15,985,4.1000000000000005,155,0.30000000000000004 +2011,3,16,18,30,20.1,1,0.099,0.68,0,0,0,0,20,0,0,0,0,0.265,99.38,108.63,0.15,985,4.1000000000000005,151,0.5 +2011,3,16,19,30,20.200000000000003,1.02,0.0978,0.68,0,0,0,0,19.900000000000002,0,0,1,0,0.265,98.29,95.46000000000001,0.15,985,4.1000000000000005,141,0.6000000000000001 +2011,3,16,20,30,21.3,1.03,0.09630000000000001,0.68,43,351,91,1,20.200000000000003,43,351,0,91,0.265,93.41,82.04,0.15,986,4,118,0.6000000000000001 +2011,3,16,21,30,22.700000000000003,1.05,0.0975,0.68,78,648,311,1,20.3,78,648,0,311,0.266,86.41,68.87,0.15,986,4,92,0.6000000000000001 +2011,3,16,22,30,23.8,1.08,0.0976,0.68,97,782,534,1,20.200000000000003,97,782,0,534,0.266,80.19,55.96,0.15,986,3.9000000000000004,79,0.7000000000000001 +2011,3,16,23,30,24.3,1.1,0.09480000000000001,0.68,107,854,724,8,20.200000000000003,471,149,0,579,0.266,77.73,43.78,0.15,986,3.9000000000000004,76,0.7000000000000001 +2011,3,17,0,30,26.3,1.1300000000000001,0.0876,0.68,111,897,861,1,20.3,111,897,0,861,0.266,69.42,33.29,0.15,985,3.9000000000000004,69,0.8 +2011,3,17,1,30,27.1,1.1400000000000001,0.08750000000000001,0.68,114,912,930,1,20.200000000000003,114,912,0,930,0.265,66.15,26.650000000000002,0.15,984,4,69,0.9 +2011,3,17,2,30,27.3,1.1400000000000001,0.0888,0.68,115,911,927,8,20.3,492,29,0,518,0.265,65.6,26.93,0.15,984,4,70,1 +2011,3,17,3,30,27.200000000000003,1.1500000000000001,0.0932,0.68,113,889,850,7,20.3,516,59,0,565,0.264,66.06,33.96,0.15,983,4.1000000000000005,71,1.2000000000000002 +2011,3,17,4,30,26.700000000000003,1.16,0.0978,0.68,107,845,709,7,20.3,415,52,1,452,0.263,68.14,44.63,0.15,983,4.2,68,1.3 +2011,3,17,5,30,25.8,1.16,0.10010000000000001,0.68,96,769,516,8,20.5,126,23,0,139,0.262,72.67,56.89,0.15,983,4.3,62,1.4000000000000001 +2011,3,17,6,30,24.5,1.19,0.1043,0.68,77,625,292,6,20.900000000000002,127,22,0,134,0.261,80.21000000000001,69.85000000000001,0.15,983,4.3,55,1.2000000000000002 +2011,3,17,7,30,23.1,1.21,0.10110000000000001,0.68,39,313,77,6,21.200000000000003,34,0,3,34,0.261,89.21000000000001,83.03,0.15,983,4.3,51,0.9 +2011,3,17,8,30,22.1,1.21,0.0952,0.68,0,0,0,8,21.1,0,0,0,0,0.26,94.12,96.47,0.15,984,4.3,49,0.7000000000000001 +2011,3,17,9,30,21.400000000000002,1.2,0.09040000000000001,0.68,0,0,0,8,20.900000000000002,0,0,0,0,0.26,97.09,109.65,0.15,984,4.3,46,0.7000000000000001 +2011,3,17,10,30,21,1.18,0.0891,0.68,0,0,0,8,20.700000000000003,0,0,0,0,0.261,98.34,122.41,0.15,984,4.3,41,0.6000000000000001 +2011,3,17,11,30,20.700000000000003,1.17,0.0916,0.68,0,0,0,8,20.6,0,0,0,0,0.261,99.2,134.31,0.15,984,4.2,37,0.5 +2011,3,17,12,30,20.6,1.1500000000000001,0.095,0.68,0,0,0,8,20.400000000000002,0,0,0,0,0.261,99.06,144.36,0.15,984,4.2,38,0.5 +2011,3,17,13,30,20.400000000000002,1.1400000000000001,0.09870000000000001,0.68,0,0,0,4,20.3,0,0,0,0,0.261,99.45,150.53,0.15,984,4.2,40,0.5 +2011,3,17,14,30,20.200000000000003,1.1300000000000001,0.09870000000000001,0.68,0,0,0,8,20.200000000000003,0,0,0,0,0.261,99.77,150.29,0.15,983,4.2,31,0.5 +2011,3,17,15,30,19.900000000000002,1.1300000000000001,0.098,0.68,0,0,0,7,19.900000000000002,0,0,0,0,0.263,100,143.76,0.15,982,4.1000000000000005,13,0.6000000000000001 +2011,3,17,16,30,19.6,1.1500000000000001,0.09340000000000001,0.68,0,0,0,4,19.6,0,0,0,0,0.265,100,133.53,0.15,982,4,174,0.6000000000000001 +2011,3,17,17,30,19.3,1.1500000000000001,0.09190000000000001,0.68,0,0,0,4,19.3,0,0,0,0,0.266,100,121.56,0.15,982,4,332,0.6000000000000001 +2011,3,17,18,30,19.1,1.1400000000000001,0.09240000000000001,0.68,0,0,0,3,19.1,0,0,0,0,0.266,100,108.76,0.15,982,3.9000000000000004,310,0.6000000000000001 +2011,3,17,19,30,19.5,1.1400000000000001,0.09330000000000001,0.68,0,0,0,8,19.3,0,0,0,0,0.267,98.55,95.58,0.15,982,3.9000000000000004,295,0.7000000000000001 +2011,3,17,20,30,20.8,1.1500000000000001,0.091,0.68,41,361,90,8,19.8,37,0,3,37,0.267,94.06,82.16,0.15,983,3.9000000000000004,298,0.7000000000000001 +2011,3,17,21,30,22.400000000000002,1.17,0.0879,0.68,74,662,311,7,20.6,129,22,0,137,0.266,89.44,69,0.15,983,3.9000000000000004,324,0.8 +2011,3,17,22,30,23.900000000000002,1.2,0.084,0.68,90,795,534,8,20.8,331,97,0,385,0.265,82.63,56.11,0.15,983,4,351,0.8 +2011,3,17,23,30,24.6,1.23,0.07970000000000001,0.68,100,867,723,8,20.400000000000002,157,27,0,177,0.265,77.28,43.980000000000004,0.15,983,4,360,0.8 +2011,3,18,0,30,26,1.22,0.0789,0.68,106,902,857,4,20,290,26,0,311,0.264,69.66,33.56,0.15,982,4.1000000000000005,15,0.9 +2011,3,18,1,30,26.5,1.21,0.07690000000000001,0.68,108,919,927,8,20,477,27,0,500,0.264,67.31,27.02,0.15,981,4.1000000000000005,21,1.1 +2011,3,18,2,30,26.6,1.2,0.0736,0.68,106,920,923,4,20,407,22,0,427,0.263,66.93,27.330000000000002,0.15,980,4.2,24,1.2000000000000002 +2011,3,18,3,30,26.5,1.21,0.0731,0.68,102,902,848,4,20,256,28,0,279,0.263,67.47,34.32,0.15,979,4.3,25,1.4000000000000001 +2011,3,18,4,30,26.200000000000003,1.21,0.0721,0.68,95,865,707,4,20.1,342,27,0,361,0.263,69.14,44.94,0.15,979,4.4,25,1.4000000000000001 +2011,3,18,5,30,25.400000000000002,1.22,0.06620000000000001,0.68,82,802,516,4,20.400000000000002,255,31,0,272,0.262,73.68,57.17,0.15,979,4.5,32,1.3 +2011,3,18,6,30,24.3,1.24,0.0693,0.68,66,665,292,8,21,162,52,0,179,0.262,81.74,70.10000000000001,0.15,979,4.6000000000000005,43,1 +2011,3,18,7,30,22.900000000000002,1.23,0.0709,0.68,34,348,75,4,21.6,29,0,3,29,0.262,92.11,83.28,0.15,979,4.7,49,0.8 +2011,3,18,8,30,22,1.2,0.07200000000000001,0.68,0,0,0,4,21.5,0,0,0,0,0.263,97.12,96.72,0.15,980,4.800000000000001,48,0.7000000000000001 +2011,3,18,9,30,21.6,1.2,0.08420000000000001,0.68,0,0,0,4,21.400000000000002,0,0,0,0,0.263,99.02,109.91,0.15,980,4.800000000000001,44,0.7000000000000001 +2011,3,18,10,30,21.3,1.2,0.0763,0.68,0,0,0,4,21.3,0,0,0,0,0.263,100,122.69,0.15,981,4.9,39,0.6000000000000001 +2011,3,18,11,30,21.1,1.17,0.062,0.68,0,0,0,8,21.1,0,0,0,0,0.263,100,134.63,0.15,980,4.9,38,0.6000000000000001 +2011,3,18,12,30,20.900000000000002,1.18,0.0685,0.68,0,0,0,4,20.900000000000002,0,0,0,0,0.262,100,144.72,0.15,980,4.9,40,0.6000000000000001 +2011,3,18,13,30,20.8,1.17,0.0665,0.68,0,0,0,4,20.8,0,0,0,0,0.262,100,150.94,0.15,980,4.9,41,0.5 +2011,3,18,14,30,20.700000000000003,1.1400000000000001,0.0669,0.68,0,0,0,4,20.700000000000003,0,0,0,0,0.261,100,150.65,0.15,979,4.9,46,0.5 +2011,3,18,15,30,20.6,1.16,0.0748,0.68,0,0,0,4,20.6,0,0,0,0,0.261,100,144.03,0.15,979,4.9,49,0.5 +2011,3,18,16,30,20.5,1.18,0.0679,0.68,0,0,0,8,20.5,0,0,0,0,0.261,100,133.74,0.15,978,4.9,45,0.5 +2011,3,18,17,30,20.3,1.17,0.0621,0.68,0,0,0,4,20.3,0,0,0,0,0.262,100,121.72,0.15,978,4.9,39,0.5 +2011,3,18,18,30,20.200000000000003,1.19,0.0698,0.68,0,0,0,4,20.200000000000003,0,0,0,0,0.262,100,108.89,0.15,979,4.800000000000001,40,0.5 +2011,3,18,19,30,20.3,1.2,0.06810000000000001,0.68,0,0,0,8,20.1,0,0,0,0,0.262,99.02,95.69,0.15,979,4.800000000000001,50,0.5 +2011,3,18,20,30,21,1.2,0.0596,0.68,36,403,90,8,20.5,5,0,3,5,0.262,97.05,82.28,0.15,980,4.800000000000001,70,0.7000000000000001 +2011,3,18,21,30,21.900000000000002,1.21,0.06670000000000001,0.68,67,680,309,8,21.1,13,0,0,13,0.262,95.25,69.12,0.15,980,4.800000000000001,84,1 +2011,3,18,22,30,22.6,1.18,0.0634,0.68,82,808,530,8,21.700000000000003,66,11,0,72,0.261,94.47,56.26,0.15,980,4.800000000000001,88,1.3 +2011,3,18,23,30,22.900000000000002,1.16,0.058,0.68,89,877,718,8,20.8,110,23,0,127,0.261,88.04,44.17,0.15,980,4.800000000000001,89,1.5 +2011,3,19,0,30,24,1.18,0.0748,0.68,103,897,848,8,20.5,59,1,0,60,0.261,80.7,33.83,0.15,979,4.800000000000001,94,2.1 +2011,3,19,1,30,24.400000000000002,1.17,0.07680000000000001,0.68,107,911,916,6,20.400000000000002,68,5,0,72,0.26,78.36,27.39,0.15,978,4.800000000000001,98,2.4000000000000004 +2011,3,19,2,30,24.200000000000003,1.12,0.0721,0.68,105,913,913,7,20.3,151,28,0,175,0.259,79.05,27.73,0.15,977,4.800000000000001,100,2.6 +2011,3,19,3,30,23.6,1.11,0.096,0.68,113,876,834,8,20.3,128,25,0,149,0.257,81.67,34.67,0.15,976,4.9,99,2.8000000000000003 +2011,3,19,4,30,22.8,1.07,0.0937,0.68,105,837,694,8,20.200000000000003,123,25,0,141,0.254,85.5,45.25,0.15,976,5,99,2.7 +2011,3,19,5,30,21.8,0.99,0.0777,0.68,87,780,506,8,20.200000000000003,199,24,0,212,0.252,90.59,57.44,0.15,976,5.1000000000000005,105,2.5 +2011,3,19,6,30,20.900000000000002,0.98,0.0796,0.68,69,640,284,8,20.3,119,21,0,126,0.249,96.22,70.35000000000001,0.15,976,5.1000000000000005,114,2 +2011,3,19,7,30,20.3,0.9500000000000001,0.0608,0.68,33,345,72,7,20.3,30,0,3,30,0.248,100,83.52,0.15,977,5.1000000000000005,120,1.7000000000000002 +2011,3,19,8,30,20,0.91,0.048600000000000004,0.68,0,0,0,4,20,0,0,0,0,0.247,100,96.97,0.15,977,5.1000000000000005,120,1.7000000000000002 +2011,3,19,9,30,19.900000000000002,0.9500000000000001,0.0541,0.68,0,0,0,4,19.900000000000002,0,0,0,0,0.248,100,110.16,0.15,978,5.1000000000000005,119,1.6 +2011,3,19,10,30,19.900000000000002,0.93,0.0517,0.68,0,0,0,8,19.900000000000002,0,0,0,0,0.248,100,122.98,0.15,978,5.1000000000000005,119,1.5 +2011,3,19,11,30,19.8,0.9,0.0483,0.68,0,0,0,8,19.8,0,0,0,0,0.249,100,134.94,0.15,978,5.1000000000000005,119,1.4000000000000001 +2011,3,19,12,30,19.8,0.9400000000000001,0.057800000000000004,0.68,0,0,0,8,19.8,0,0,0,0,0.249,100,145.09,0.15,977,5.2,122,1.3 +2011,3,19,13,30,19.700000000000003,0.91,0.0568,0.68,0,0,0,8,19.700000000000003,0,0,0,0,0.25,100,151.34,0.15,977,5.2,124,1.2000000000000002 +2011,3,19,14,30,19.6,0.87,0.051000000000000004,0.68,0,0,0,6,19.6,0,0,0,0,0.25,100,151.02,0.15,976,5.1000000000000005,125,1.2000000000000002 +2011,3,19,15,30,19.5,0.93,0.060200000000000004,0.68,0,0,0,8,19.5,0,0,0,0,0.251,100,144.31,0.15,975,5.1000000000000005,127,1.1 +2011,3,19,16,30,19.5,0.93,0.055400000000000005,0.68,0,0,0,7,19.5,0,0,0,0,0.252,100,133.94,0.15,975,5.1000000000000005,129,1.1 +2011,3,19,17,30,19.400000000000002,0.92,0.046900000000000004,0.68,0,0,0,8,19.400000000000002,0,0,0,0,0.253,100,121.87,0.15,975,5.1000000000000005,130,1.1 +2011,3,19,18,30,19.400000000000002,0.98,0.0575,0.68,0,0,0,8,19.400000000000002,0,0,0,0,0.254,100,109.02,0.15,975,5.1000000000000005,131,1.1 +2011,3,19,19,30,19.6,0.96,0.0538,0.68,0,0,0,8,19.6,0,0,0,0,0.255,100,95.81,0.15,975,5.1000000000000005,134,1.2000000000000002 +2011,3,19,20,30,20.1,0.92,0.0441,0.68,34,420,90,4,20,13,0,3,13,0.256,99.5,82.39,0.15,975,5.2,136,1.6 +2011,3,19,21,30,20.900000000000002,0.96,0.053200000000000004,0.68,63,691,307,8,20.6,46,2,0,47,0.256,97.95,69.25,0.15,976,5.2,134,2 +2011,3,19,22,30,21.700000000000003,0.9500000000000001,0.0521,0.68,77,814,528,3,21.1,88,19,0,99,0.256,96.27,56.410000000000004,0.15,976,5.2,131,2.3000000000000003 +2011,3,19,23,30,22.200000000000003,0.92,0.0495,0.68,85,879,714,3,21.400000000000002,110,23,0,126,0.256,95.16,44.37,0.15,976,5.2,129,2.4000000000000004 +2011,3,20,0,30,23.5,0.9400000000000001,0.0592,0.68,96,904,845,3,21.6,145,28,0,168,0.256,89.3,34.11,0.15,975,5.2,124,2.5 +2011,3,20,1,30,24,0.9400000000000001,0.063,0.68,101,916,911,1,21.8,101,916,0,911,0.256,87.65,27.75,0.15,974,5.2,121,2.4000000000000004 +2011,3,20,2,30,24.3,0.91,0.0563,0.68,97,921,909,3,22,311,26,0,334,0.256,87.16,28.13,0.15,973,5.2,120,2.4000000000000004 +2011,3,20,3,30,24.200000000000003,0.73,0.0815,0.68,108,881,829,4,22.200000000000003,243,28,0,266,0.255,88.5,35.03,0.15,972,5.2,122,2.3000000000000003 +2011,3,20,4,30,23.8,0.74,0.0818,0.68,101,841,690,4,22.3,177,28,0,197,0.255,91.18,45.550000000000004,0.15,972,5.2,125,2.2 +2011,3,20,5,30,23.3,0.71,0.0748,0.68,86,776,501,3,22.3,174,24,0,187,0.255,94.33,57.71,0.15,972,5.2,130,1.9000000000000001 +2011,3,20,6,30,22.700000000000003,0.75,0.081,0.68,70,628,278,3,22.400000000000002,104,18,0,110,0.255,98.26,70.61,0.15,972,5.1000000000000005,134,1.4000000000000001 +2011,3,20,7,30,22,0.75,0.0713,0.68,33,308,67,1,22,33,308,0,67,0.256,100,83.76,0.15,973,5.1000000000000005,138,1.1 +2011,3,20,8,30,21.5,0.73,0.0597,0.68,0,0,0,3,21.5,0,0,0,0,0.257,100,97.22,0.15,973,4.9,141,1 +2011,3,20,9,30,21.200000000000003,0.79,0.0646,0.68,0,0,0,1,21.200000000000003,0,0,0,0,0.258,100,110.42,0.15,974,4.800000000000001,144,0.9 +2011,3,20,10,30,20.900000000000002,0.8,0.0611,0.68,0,0,0,1,20.900000000000002,0,0,0,0,0.259,100,123.26,0.15,974,4.7,147,0.8 +2011,3,20,11,30,20.700000000000003,0.78,0.053500000000000006,0.68,0,0,0,0,20.700000000000003,0,0,0,0,0.259,100,135.26,0.15,974,4.6000000000000005,147,0.8 +2011,3,20,12,30,20.5,0.84,0.0579,0.68,0,0,0,0,20.5,0,0,0,0,0.259,100,145.45000000000002,0.15,974,4.5,146,0.8 +2011,3,20,13,30,20.3,0.84,0.056600000000000004,0.68,0,0,0,0,20.3,0,0,0,0,0.259,100,151.74,0.15,973,4.4,147,0.7000000000000001 +2011,3,20,14,30,20.1,0.8,0.0511,0.68,0,0,0,0,20.1,0,0,0,0,0.258,100,151.38,0.15,972,4.3,151,0.7000000000000001 +2011,3,20,15,30,20,0.85,0.058300000000000005,0.68,0,0,0,0,20,0,0,0,0,0.258,100,144.58,0.15,972,4.2,157,0.7000000000000001 +2011,3,20,16,30,19.900000000000002,0.87,0.0557,0.68,0,0,0,0,19.900000000000002,0,0,0,0,0.259,100,134.13,0.15,972,4.2,161,0.7000000000000001 +2011,3,20,17,30,19.8,0.87,0.0466,0.68,0,0,0,0,19.8,0,0,0,0,0.259,100,122.02,0.15,972,4.2,163,0.7000000000000001 +2011,3,20,18,30,19.700000000000003,0.9400000000000001,0.0516,0.68,0,0,0,0,19.700000000000003,0,0,0,0,0.26,100,109.15,0.15,972,4.2,168,0.7000000000000001 +2011,3,20,19,30,20,0.96,0.052500000000000005,0.68,0,0,0,0,20,0,0,0,0,0.26,100,95.93,0.15,972,4.2,176,0.8 +2011,3,20,20,30,20.900000000000002,0.9400000000000001,0.048100000000000004,0.68,34,416,89,0,20.700000000000003,34,416,1,89,0.26,98.61,82.51,0.15,973,4.2,176,1.1 +2011,3,20,21,30,22.200000000000003,0.98,0.053700000000000005,0.68,63,698,309,1,21.400000000000002,63,698,0,309,0.259,95.32000000000001,69.38,0.15,973,4.2,164,1.2000000000000002 +2011,3,20,22,30,23.6,1.01,0.054900000000000004,0.68,78,818,529,1,22.1,78,818,0,529,0.259,91.37,56.57,0.15,974,4.3,153,1.1 +2011,3,20,23,30,24.3,1.02,0.050800000000000005,0.68,86,886,717,1,22.5,86,886,0,717,0.258,89.66,44.58,0.15,974,4.3,149,1 +2011,3,21,0,30,26.1,0.58,0.0835,0.68,111,885,841,1,22.8,111,885,0,841,0.257,82,34.39,0.15,973,4.4,137,0.7000000000000001 +2011,3,21,1,30,27.1,0.65,0.0755,0.68,109,908,910,1,23.1,109,908,0,910,0.256,78.57000000000001,28.12,0.15,972,4.5,121,0.6000000000000001 +2011,3,21,2,30,27.700000000000003,0.6900000000000001,0.0685,0.68,105,913,907,1,23.3,105,913,0,907,0.255,76.89,28.53,0.15,971,4.6000000000000005,105,0.6000000000000001 +2011,3,21,3,30,27.900000000000002,0.8300000000000001,0.063,0.68,98,901,832,1,23.400000000000002,98,901,0,832,0.255,76.69,35.39,0.15,971,4.7,97,0.8 +2011,3,21,4,30,27.6,0.88,0.0635,0.68,91,862,691,1,23.400000000000002,91,862,0,691,0.255,78.04,45.86,0.15,970,4.9,93,0.9 +2011,3,21,5,30,27,0.9,0.0618,0.68,80,793,500,1,23.5,80,793,0,500,0.255,81.01,57.99,0.15,970,5,89,1 +2011,3,21,6,30,26,0.9500000000000001,0.0649,0.68,64,653,278,1,23.700000000000003,64,653,0,278,0.255,87.07000000000001,70.86,0.15,971,5,87,0.9 +2011,3,21,7,30,24.700000000000003,0.98,0.0664,0.68,31,317,64,1,24,31,317,0,64,0.256,95.91,84.01,0.15,971,5,84,0.6000000000000001 +2011,3,21,8,30,23.700000000000003,0.98,0.0654,0.68,0,0,0,0,23.700000000000003,0,0,0,0,0.256,99.73,97.47,0.15,972,5,79,0.5 +2011,3,21,9,30,23.200000000000003,0.98,0.0673,0.68,0,0,0,0,23.200000000000003,0,0,0,0,0.256,100,110.68,0.15,972,5.1000000000000005,73,0.5 +2011,3,21,10,30,22.900000000000002,0.99,0.0692,0.68,0,0,0,1,22.900000000000002,0,0,0,0,0.255,100,123.54,0.15,972,5.1000000000000005,68,0.5 +2011,3,21,11,30,22.6,0.99,0.069,0.68,0,0,0,1,22.6,0,0,0,0,0.254,100,135.57,0.15,972,5.1000000000000005,60,0.5 +2011,3,21,12,30,22.3,1.01,0.0738,0.68,0,0,0,1,22.3,0,0,0,0,0.253,100,145.82,0.15,972,5.1000000000000005,49,0.5 +2011,3,21,13,30,22.200000000000003,1.03,0.0731,0.68,0,0,0,3,22.200000000000003,0,0,0,0,0.252,100,152.14000000000001,0.15,972,5.1000000000000005,34,0.5 +2011,3,21,14,30,22,1.03,0.0659,0.68,0,0,0,1,22,0,0,0,0,0.251,100,151.74,0.15,971,5.1000000000000005,17,0.5 +2011,3,21,15,30,21.900000000000002,1.05,0.0683,0.68,0,0,0,3,21.900000000000002,0,0,0,0,0.251,100,144.84,0.15,970,5,179,0.5 +2011,3,21,16,30,21.900000000000002,1.06,0.0687,0.68,0,0,0,3,21.900000000000002,0,0,0,0,0.251,100,134.33,0.15,970,5,339,0.5 +2011,3,21,17,30,21.900000000000002,1.06,0.0658,0.68,0,0,0,1,21.900000000000002,0,0,0,0,0.252,100,122.18,0.15,970,4.9,319,0.5 +2011,3,21,18,30,21.8,1.09,0.0707,0.68,0,0,0,3,21.8,0,0,0,0,0.252,100,109.27,0.15,970,4.800000000000001,300,0.5 +2011,3,21,19,30,22,1.12,0.0731,0.68,0,0,0,3,22,0,0,0,0,0.252,100,96.05,0.15,971,4.6000000000000005,282,0.7000000000000001 +2011,3,21,20,30,23.1,1.1400000000000001,0.0689,0.68,36,376,85,1,22.5,36,376,0,85,0.252,96.61,82.63,0.15,972,4.4,269,1 +2011,3,21,21,30,24.6,1.1500000000000001,0.0646,0.68,66,684,305,1,23.1,66,684,0,305,0.252,91.17,69.51,0.15,972,4.1000000000000005,258,1.4000000000000001 +2011,3,21,22,30,26.3,1.1500000000000001,0.057600000000000005,0.68,79,821,529,1,23.400000000000002,79,821,0,529,0.252,84.11,56.730000000000004,0.15,972,3.9000000000000004,249,1.6 +2011,3,21,23,30,27,1.1300000000000001,0.0495,0.68,85,895,720,0,23.400000000000002,85,895,0,720,0.252,80.68,44.78,0.15,972,3.7,246,1.7000000000000002 +2011,3,22,0,30,28.5,0.72,0.059300000000000005,0.68,98,921,856,0,23.3,98,921,0,856,0.252,73.55,34.67,0.16,971,3.4000000000000004,253,1.7000000000000002 +2011,3,22,1,30,29,0.68,0.055600000000000004,0.68,99,941,926,0,23.1,99,941,0,926,0.251,70.49,28.490000000000002,0.16,971,3.3000000000000003,261,1.8 +2011,3,22,2,30,29.200000000000003,0.66,0.0562,0.68,99,941,923,0,22.8,99,941,0,923,0.251,68.57000000000001,28.93,0.16,970,3.2,269,1.9000000000000001 +2011,3,22,3,30,29.200000000000003,0.6,0.0621,0.68,100,918,845,1,22.5,100,918,0,845,0.251,67.28,35.75,0.16,970,3.2,273,1.9000000000000001 +2011,3,22,4,30,28.900000000000002,0.61,0.0664,0.68,95,876,701,0,22.3,95,876,0,701,0.251,67.43,46.17,0.16,970,3.2,274,1.8 +2011,3,22,5,30,28.200000000000003,0.61,0.0679,0.68,84,802,506,0,22.200000000000003,84,802,0,506,0.251,70.01,58.27,0.16,970,3.2,274,1.6 +2011,3,22,6,30,26.8,0.61,0.07010000000000001,0.68,67,659,281,0,22.3,67,659,0,281,0.251,76.17,71.12,0.16,970,3,274,1.3 +2011,3,22,7,30,25,0.61,0.0718,0.68,33,301,63,0,22.3,33,301,0,63,0.252,84.83,84.25,0.16,971,2.9000000000000004,272,0.9 +2011,3,22,8,30,23.8,0.6,0.0742,0.68,0,0,0,0,21.200000000000003,0,0,0,0,0.254,85.19,97.72,0.16,972,2.8000000000000003,269,0.9 +2011,3,22,9,30,23,0.61,0.075,0.68,0,0,0,0,20.5,0,0,0,0,0.255,85.69,110.94,0.16,973,2.7,269,0.9 +2011,3,22,10,30,22.200000000000003,0.63,0.0741,0.68,0,0,0,3,19.8,0,0,0,0,0.255,86.31,123.81,0.16,973,2.7,269,0.9 +2011,3,22,11,30,21.400000000000002,0.63,0.0718,0.68,0,0,0,0,19.200000000000003,0,0,0,0,0.256,87.4,135.89000000000001,0.16,973,2.6,269,0.8 +2011,3,22,12,30,20.700000000000003,0.64,0.06860000000000001,0.68,0,0,0,0,18.6,0,0,0,0,0.256,87.97,146.18,0.16,973,2.6,268,0.8 +2011,3,22,13,30,20,0.66,0.065,0.68,0,0,0,0,18.1,0,0,0,0,0.256,88.74,152.54,0.16,973,2.5,266,0.8 +2011,3,22,14,30,19.400000000000002,0.6900000000000001,0.061700000000000005,0.68,0,0,0,0,17.6,0,0,0,0,0.257,89.19,152.1,0.16,973,2.5,264,0.8 +2011,3,22,15,30,18.8,0.73,0.0591,0.68,0,0,0,0,17.1,0,0,0,0,0.257,90.10000000000001,145.11,0.16,973,2.5,263,0.7000000000000001 +2011,3,22,16,30,18.2,0.77,0.0557,0.68,0,0,0,0,16.8,0,0,0,0,0.257,91.5,134.52,0.16,973,2.4000000000000004,262,0.7000000000000001 +2011,3,22,17,30,17.7,0.81,0.0523,0.68,0,0,0,0,16.5,0,0,0,0,0.258,92.41,122.32000000000001,0.16,973,2.4000000000000004,259,0.7000000000000001 +2011,3,22,18,30,17.400000000000002,0.84,0.0512,0.68,0,0,0,0,16.1,0,0,0,0,0.258,92.24,109.4,0.16,973,2.4000000000000004,257,0.7000000000000001 +2011,3,22,19,30,17.7,0.88,0.051800000000000006,0.68,0,0,0,0,15.8,0,0,0,0,0.259,88.91,96.16,0.16,974,2.4000000000000004,258,0.8 +2011,3,22,20,30,19,0.91,0.052700000000000004,0.68,35,425,89,0,16.2,35,425,0,89,0.259,83.73,82.74,0.16,975,2.5,262,1.1 +2011,3,22,21,30,21.1,0.93,0.0524,0.68,63,725,315,0,16.400000000000002,63,725,0,315,0.259,74.45,69.64,0.16,975,2.5,265,1.2000000000000002 +2011,3,22,22,30,23.6,0.9500000000000001,0.0517,0.68,78,847,540,0,17.5,78,847,0,540,0.259,68.65,56.88,0.16,976,2.6,258,1.3 +2011,3,22,23,30,25,0.96,0.0514,0.68,87,908,729,0,17.3,87,908,0,729,0.259,62.300000000000004,44.980000000000004,0.16,975,2.7,250,1.5 +2011,3,23,0,30,26.5,0.99,0.0516,0.68,92,937,861,0,17.3,92,937,0,861,0.258,57.01,34.95,0.16,975,2.9000000000000004,262,1.6 +2011,3,23,1,30,27.1,0.98,0.0522,0.68,95,948,925,0,17.6,95,948,0,925,0.258,56.120000000000005,28.86,0.16,974,3.1,270,1.8 +2011,3,23,2,30,27.400000000000002,0.98,0.0526,0.68,95,943,917,0,18,95,943,0,917,0.257,56.660000000000004,29.330000000000002,0.16,973,3.3000000000000003,273,2 +2011,3,23,3,30,27.5,0.9400000000000001,0.055900000000000005,0.68,94,920,837,1,18.400000000000002,94,920,0,837,0.257,57.64,36.11,0.16,972,3.5,273,2.1 +2011,3,23,4,30,27.3,0.9400000000000001,0.058100000000000006,0.68,89,879,694,0,18.7,89,879,0,694,0.257,59.54,46.49,0.16,972,3.6,272,2.1 +2011,3,23,5,30,26.8,0.9400000000000001,0.0592,0.68,79,807,500,0,19.1,79,807,0,500,0.258,62.82,58.550000000000004,0.16,972,3.6,270,1.9000000000000001 +2011,3,23,6,30,25.400000000000002,0.96,0.0596,0.68,62,668,275,0,19.6,62,668,0,275,0.258,70.29,71.38,0.16,973,3.6,270,1.3 +2011,3,23,7,30,23.700000000000003,0.97,0.057600000000000005,0.68,29,326,60,1,20.1,29,326,0,60,0.259,80.44,84.5,0.16,974,3.5,270,0.9 +2011,3,23,8,30,22.6,0.97,0.056900000000000006,0.68,0,0,0,3,19.3,0,0,0,0,0.26,81.65,97.96000000000001,0.16,975,3.4000000000000004,269,0.8 +2011,3,23,9,30,21.900000000000002,0.99,0.057100000000000005,0.68,0,0,0,0,18.8,0,0,0,0,0.26,82.82000000000001,111.2,0.16,975,3.3000000000000003,268,0.8 +2011,3,23,10,30,21.3,1.04,0.057600000000000005,0.68,0,0,0,0,18.6,0,0,0,0,0.26,84.43,124.09,0.16,976,3.3000000000000003,266,0.8 +2011,3,23,11,30,20.700000000000003,1.1,0.058100000000000006,0.68,0,0,0,0,18.3,0,0,0,0,0.26,85.97,136.2,0.16,976,3.3000000000000003,263,0.8 +2011,3,23,12,30,20.200000000000003,1.16,0.0582,0.68,0,0,0,0,18,0,0,0,0,0.259,87.02,146.55,0.16,976,3.2,258,0.8 +2011,3,23,13,30,19.700000000000003,1.2,0.0574,0.68,0,0,0,8,17.7,0,0,0,0,0.259,88.09,152.94,0.16,976,3.2,252,0.8 +2011,3,23,14,30,19.200000000000003,1.21,0.056400000000000006,0.68,0,0,0,7,17.3,0,0,0,0,0.258,88.84,152.46,0.16,975,3.2,247,0.8 +2011,3,23,15,30,18.8,1.2,0.054900000000000004,0.68,0,0,0,8,17,0,0,0,0,0.258,89.31,145.37,0.16,975,3.1,246,0.7000000000000001 +2011,3,23,16,30,18.3,1.18,0.052700000000000004,0.68,0,0,0,0,16.7,0,0,0,0,0.258,90.2,134.71,0.16,975,3,247,0.7000000000000001 +2011,3,23,17,30,17.8,1.17,0.0504,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.258,91.26,122.47,0.16,976,2.9000000000000004,248,0.7000000000000001 +2011,3,23,18,30,17.400000000000002,1.16,0.0488,0.68,0,0,0,0,16,0,0,0,0,0.258,91.75,109.52,0.16,976,2.8000000000000003,250,0.7000000000000001 +2011,3,23,19,30,17.6,1.1500000000000001,0.047900000000000005,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.258,88.92,96.28,0.16,977,2.8000000000000003,252,0.8 +2011,3,23,20,30,19.1,1.1500000000000001,0.0478,0.68,33,433,87,1,16.1,33,433,0,87,0.258,82.93,82.86,0.16,978,2.7,256,1.1 +2011,3,23,21,30,21.3,1.1500000000000001,0.047900000000000005,0.68,60,732,314,1,16.3,60,732,0,314,0.258,73.14,69.77,0.16,978,2.5,251,1.4000000000000001 +2011,3,23,22,30,23.400000000000002,1.16,0.048600000000000004,0.68,76,855,541,1,15.9,76,855,0,541,0.258,62.75,57.04,0.16,978,2.4000000000000004,246,1.8 +2011,3,23,23,30,24.200000000000003,1.1500000000000001,0.0506,0.68,86,918,733,1,15.700000000000001,86,918,0,733,0.258,59.03,45.19,0.16,978,2.3000000000000003,250,2 +2011,3,24,0,30,25.5,1.16,0.0514,0.68,92,953,870,0,15.9,92,953,0,870,0.257,55.230000000000004,35.230000000000004,0.15,978,2.2,261,2.4000000000000004 +2011,3,24,1,30,26.1,1.12,0.0533,0.68,96,968,940,0,15.9,96,968,0,940,0.257,53.33,29.23,0.15,977,2.1,263,2.6 +2011,3,24,2,30,26.400000000000002,1.08,0.0543,0.68,96,968,937,0,15.700000000000001,96,968,0,937,0.256,51.75,29.73,0.15,976,2,262,2.6 +2011,3,24,3,30,26.400000000000002,1.06,0.053000000000000005,0.68,93,955,861,0,15.3,93,955,0,861,0.256,50.42,36.47,0.15,976,1.9000000000000001,261,2.4000000000000004 +2011,3,24,4,30,26.200000000000003,1.03,0.051500000000000004,0.68,86,923,717,0,14.9,86,923,0,717,0.256,49.72,46.800000000000004,0.15,975,1.8,261,2.2 +2011,3,24,5,30,25.6,0.99,0.0488,0.68,75,860,520,0,14.8,75,860,0,520,0.256,51.39,58.82,0.15,975,1.7000000000000002,263,1.8 +2011,3,24,6,30,23.8,0.9500000000000001,0.0461,0.68,58,731,289,0,15.200000000000001,58,731,0,289,0.256,58.410000000000004,71.64,0.15,976,1.6,268,1.2000000000000002 +2011,3,24,7,30,21.400000000000002,0.93,0.0441,0.68,28,384,63,0,16.3,28,384,0,63,0.257,72.89,84.74,0.15,976,1.5,273,0.9 +2011,3,24,8,30,19.900000000000002,0.92,0.0429,0.68,0,0,0,0,15,0,0,0,0,0.258,73.59,98.21000000000001,0.15,977,1.4000000000000001,272,0.9 +2011,3,24,9,30,19.1,0.9,0.0425,0.68,0,0,0,0,14.3,0,0,0,0,0.258,73.84,111.46000000000001,0.15,977,1.4000000000000001,267,0.9 +2011,3,24,10,30,18.400000000000002,0.87,0.0426,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.257,74.22,124.37,0.15,978,1.3,260,0.9 +2011,3,24,11,30,17.7,0.85,0.043000000000000003,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.257,74.46000000000001,136.51,0.15,978,1.3,254,0.9 +2011,3,24,12,30,17,0.8300000000000001,0.0438,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.257,75.09,146.91,0.15,978,1.2000000000000002,249,0.9 +2011,3,24,13,30,16.400000000000002,0.81,0.0444,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.257,75.60000000000001,153.35,0.15,978,1.2000000000000002,244,0.9 +2011,3,24,14,30,15.8,0.8,0.045000000000000005,0.68,0,0,0,0,11.600000000000001,0,0,0,0,0.257,76.19,152.81,0.15,977,1.2000000000000002,241,0.9 +2011,3,24,15,30,15.3,0.8,0.0461,0.68,0,0,0,0,11.3,0,0,0,0,0.257,76.95,145.63,0.15,977,1.2000000000000002,240,0.9 +2011,3,24,16,30,14.9,0.81,0.0483,0.68,0,0,0,0,11.100000000000001,0,0,0,0,0.257,77.87,134.9,0.15,977,1.2000000000000002,238,0.9 +2011,3,24,17,30,14.600000000000001,0.81,0.051500000000000004,0.68,0,0,0,0,11,0,0,0,0,0.258,78.75,122.62,0.15,977,1.3,238,0.9 +2011,3,24,18,30,14.3,0.79,0.055200000000000006,0.68,0,0,0,0,10.9,0,0,0,0,0.258,80.21000000000001,109.65,0.15,978,1.3,240,0.9 +2011,3,24,19,30,14.8,0.78,0.059000000000000004,0.68,0,0,0,0,11,0,0,0,0,0.258,77.91,96.39,0.15,979,1.3,242,0.9 +2011,3,24,20,30,16.7,0.76,0.062200000000000005,0.68,37,414,88,0,12.100000000000001,37,414,0,88,0.259,74.3,82.97,0.15,979,1.4000000000000001,246,1.2000000000000002 +2011,3,24,21,30,19.3,0.74,0.0639,0.68,68,729,319,0,12.600000000000001,68,729,0,319,0.259,65.2,69.9,0.15,980,1.4000000000000001,249,1.6 +2011,3,24,22,30,21.900000000000002,0.74,0.0635,0.68,85,862,552,0,13.9,85,862,0,552,0.26,60.54,57.2,0.15,980,1.3,252,1.8 +2011,3,24,23,30,23.1,0.74,0.061700000000000005,0.68,94,929,747,0,13.9,94,929,0,747,0.26,56.11,45.4,0.15,980,1.3,254,2 +2011,3,25,0,30,24.5,0.76,0.0521,0.68,95,973,887,0,13.8,95,973,0,887,0.261,51.26,35.51,0.15,979,1.3,263,2.2 +2011,3,25,1,30,25.200000000000003,0.76,0.0524,0.68,97,984,953,0,13.9,97,984,0,953,0.26,49.39,29.6,0.15,978,1.4000000000000001,264,2.3000000000000003 +2011,3,25,2,30,25.700000000000003,0.78,0.052700000000000004,0.68,97,980,944,0,14,97,980,0,944,0.26,48.49,30.13,0.15,978,1.5,263,2.3000000000000003 +2011,3,25,3,30,25.8,0.8,0.0545,0.68,95,961,864,1,14.200000000000001,95,961,0,864,0.26,48.76,36.83,0.15,977,1.5,260,2.3000000000000003 +2011,3,25,4,30,25.6,0.8,0.0528,0.68,87,923,715,8,14.5,438,142,0,534,0.26,50.34,47.11,0.15,977,1.6,256,2.1 +2011,3,25,5,30,24.700000000000003,0.8,0.0499,0.68,76,857,516,1,14.8,76,857,0,516,0.261,54.21,59.1,0.15,977,1.6,254,1.7000000000000002 +2011,3,25,6,30,23.1,0.81,0.048600000000000004,0.68,59,719,283,8,15.600000000000001,162,131,0,202,0.261,62.690000000000005,71.9,0.15,978,1.6,255,1.1 +2011,3,25,7,30,21.3,0.8300000000000001,0.0483,0.68,28,355,59,8,16.3,34,63,3,39,0.262,73.37,84.98,0.15,978,1.6,257,0.8 +2011,3,25,8,30,20.200000000000003,0.8300000000000001,0.048100000000000004,0.68,0,0,0,7,15.200000000000001,0,0,0,0,0.263,72.99,98.46000000000001,0.15,979,1.6,255,0.8 +2011,3,25,9,30,19.400000000000002,0.8300000000000001,0.0473,0.68,0,0,0,8,14.5,0,0,0,0,0.264,73.43,111.71000000000001,0.15,980,1.5,250,0.9 +2011,3,25,10,30,18.6,0.8300000000000001,0.0472,0.68,0,0,0,3,13.9,0,0,0,0,0.264,74.07000000000001,124.64,0.15,980,1.5,246,0.9 +2011,3,25,11,30,18,0.84,0.0483,0.68,0,0,0,3,13.4,0,0,0,0,0.264,74.63,136.82,0.15,981,1.5,242,0.9 +2011,3,25,12,30,17.6,0.86,0.048400000000000006,0.68,0,0,0,8,13.100000000000001,0,0,0,0,0.264,74.75,147.27,0.15,981,1.5,237,0.9 +2011,3,25,13,30,17.1,0.89,0.0482,0.68,0,0,0,8,12.700000000000001,0,0,0,0,0.264,75.23,153.75,0.15,980,1.5,233,0.9 +2011,3,25,14,30,16.7,0.93,0.0478,0.68,0,0,0,0,12.4,0,0,0,0,0.264,75.55,153.17000000000002,0.15,980,1.5,228,0.9 +2011,3,25,15,30,16.2,0.96,0.0477,0.68,0,0,0,0,12.200000000000001,0,0,0,0,0.264,77.13,145.89000000000001,0.15,980,1.5,223,0.9 +2011,3,25,16,30,15.8,0.99,0.0485,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.265,78.45,135.09,0.15,980,1.6,216,0.8 +2011,3,25,17,30,15.4,1,0.05,0.68,0,0,0,0,12,0,0,0,0,0.265,79.98,122.76,0.15,980,1.7000000000000002,208,0.8 +2011,3,25,18,30,15.100000000000001,0.99,0.0524,0.68,0,0,0,1,12,0,0,0,0,0.266,81.73,109.77,0.15,981,1.8,198,0.8 +2011,3,25,19,30,15.600000000000001,0.97,0.0555,0.68,0,0,0,1,12.3,0,0,0,0,0.266,80.53,96.5,0.15,982,1.9000000000000001,188,0.9 +2011,3,25,20,30,17.5,0.91,0.0603,0.68,36,405,84,1,13.5,36,405,0,84,0.265,77.59,83.08,0.15,983,2,175,1.3 +2011,3,25,21,30,20.200000000000003,0.84,0.0664,0.68,68,706,309,1,14.9,68,706,0,309,0.266,71.61,70.03,0.15,983,2,152,1.9000000000000001 +2011,3,25,22,30,22.6,0.77,0.0731,0.68,88,825,533,1,16.7,88,825,0,533,0.266,69.37,57.36,0.15,983,2.1,129,2.3000000000000003 +2011,3,25,23,30,23.5,0.72,0.0784,0.68,102,884,720,1,17.6,102,884,0,720,0.266,69.68,45.61,0.15,983,2.2,122,2.5 +2011,3,26,0,30,24.700000000000003,0.75,0.0729,0.68,105,924,854,1,17.8,105,924,0,854,0.267,65.58,35.800000000000004,0.15,983,2.3000000000000003,110,2.5 +2011,3,26,1,30,24.900000000000002,0.74,0.076,0.68,110,934,919,1,17.6,110,934,0,919,0.267,63.72,29.97,0.15,982,2.4000000000000004,107,2.4000000000000004 +2011,3,26,2,30,24.8,0.6900000000000001,0.0805,0.68,112,924,908,1,17.5,112,924,0,908,0.266,63.84,30.53,0.15,982,2.6,106,2.5 +2011,3,26,3,30,24.400000000000002,0.78,0.0942,0.68,115,894,827,1,17.5,115,894,0,827,0.265,65.31,37.19,0.15,982,2.6,106,2.4000000000000004 +2011,3,26,4,30,23.900000000000002,0.78,0.0993,0.68,109,844,680,1,17.400000000000002,109,844,0,680,0.264,67.11,47.43,0.15,982,2.7,106,2.4000000000000004 +2011,3,26,5,30,23.3,0.73,0.0931,0.68,93,770,486,1,17.400000000000002,93,770,0,486,0.263,69.61,59.38,0.15,982,2.7,106,2.2 +2011,3,26,6,30,22.200000000000003,0.73,0.0879,0.68,71,620,260,1,17.400000000000002,71,620,0,260,0.263,74.38,72.16,0.15,983,2.7,104,1.5 +2011,3,26,7,30,20.700000000000003,0.72,0.0772,0.68,29,253,50,1,17.7,29,253,0,50,0.263,83.05,85.23,0.15,984,2.6,104,0.9 +2011,3,26,8,30,19.700000000000003,0.7000000000000001,0.0709,0.68,0,0,0,0,17.3,0,0,0,0,0.263,86.17,98.71000000000001,0.15,985,2.6,107,0.8 +2011,3,26,9,30,19.1,0.66,0.07150000000000001,0.68,0,0,0,1,17.1,0,0,0,0,0.263,88.4,111.97,0.15,985,2.6,115,0.8 +2011,3,26,10,30,18.7,0.59,0.0799,0.68,0,0,0,0,17.1,0,0,0,0,0.262,90.23,124.92,0.15,986,2.6,125,0.8 +2011,3,26,11,30,18.3,0.48,0.0979,0.68,0,0,0,0,17.1,0,0,0,0,0.262,92.64,137.13,0.15,986,2.6,133,0.9 +2011,3,26,12,30,18,0.37,0.1285,0.68,0,0,0,1,17.3,0,0,0,0,0.262,95.63,147.63,0.15,985,2.6,140,0.9 +2011,3,26,13,30,17.8,0.29,0.1647,0.68,0,0,0,1,17.6,0,0,0,0,0.262,98.53,154.15,0.15,985,2.6,144,0.9 +2011,3,26,14,30,17.6,0.23,0.2005,0.68,0,0,0,1,17.6,0,0,0,0,0.263,100,153.52,0.15,985,2.5,147,1 +2011,3,26,15,30,17.400000000000002,0.21,0.2336,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.263,100,146.14000000000001,0.15,985,2.5,150,1.1 +2011,3,26,16,30,17.2,0.2,0.2436,0.68,0,0,0,0,17.2,0,0,0,0,0.264,100,135.27,0.15,985,2.5,153,1.1 +2011,3,26,17,30,16.8,0.19,0.2388,0.68,0,0,0,1,16.8,0,0,0,0,0.265,100,122.9,0.15,985,2.5,157,1.1 +2011,3,26,18,30,16.400000000000002,0.21,0.2301,0.68,0,0,0,1,16.400000000000002,0,0,0,0,0.267,100,109.89,0.15,986,2.5,159,1.1 +2011,3,26,19,30,16.6,0.22,0.2079,0.68,0,0,0,1,16.3,0,0,0,0,0.267,98.18,96.62,0.15,987,2.5,160,1.3 +2011,3,26,20,30,17.8,0.23,0.1837,0.68,50,156,69,1,16.3,50,156,0,69,0.268,91.11,83.2,0.15,987,2.5,156,1.9000000000000001 +2011,3,26,21,30,19.5,0.25,0.16490000000000002,0.68,103,526,282,2,16.6,139,29,0,149,0.268,83.33,70.16,0.15,988,2.5,147,2.6 +2011,3,26,22,30,21.200000000000003,0.27,0.14850000000000002,0.68,125,710,506,1,16.8,125,710,0,506,0.268,75.8,57.52,0.15,988,2.5,140,3 +2011,3,26,23,30,22,0.27,0.1376,0.68,135,802,695,1,16.7,135,802,0,695,0.268,71.86,45.82,0.15,988,2.6,137,3.1 +2011,3,27,0,30,23.6,0.4,0.1037,0.68,125,881,837,2,16.7,465,41,0,499,0.268,65.22,36.08,0.16,987,2.6,132,3.1 +2011,3,27,1,30,24.3,0.43,0.0988,0.68,126,903,905,3,16.8,402,23,0,422,0.268,62.800000000000004,30.34,0.16,987,2.6,129,3.1 +2011,3,27,2,30,24.6,0.45,0.09570000000000001,0.68,123,905,899,3,16.7,182,29,0,207,0.268,61.52,30.93,0.16,986,2.6,127,3.1 +2011,3,27,3,30,24.5,0.38,0.1199,0.68,133,860,815,3,16.6,376,25,0,395,0.269,61.46,37.550000000000004,0.16,985,2.6,126,3.1 +2011,3,27,4,30,24,0.37,0.12140000000000001,0.68,124,812,670,3,16.400000000000002,378,48,0,410,0.269,62.59,47.74,0.16,985,2.6,125,3 +2011,3,27,5,30,23.1,0.36,0.1145,0.68,106,732,476,3,16.3,290,96,0,339,0.27,65.47,59.660000000000004,0.16,986,2.6,125,2.8000000000000003 +2011,3,27,6,30,21.8,0.38,0.1143,0.68,81,564,251,3,16.2,97,16,0,101,0.271,70.35000000000001,72.41,0.16,986,2.5,126,2.2 +2011,3,27,7,30,20.400000000000002,0.39,0.1066,0.68,31,171,45,3,16.1,16,0,3,16,0.272,76.29,85.47,0.16,987,2.5,128,1.7000000000000002 +2011,3,27,8,30,19.3,0.42,0.0907,0.68,0,0,0,1,15.700000000000001,0,0,0,0,0.272,79.71000000000001,98.96000000000001,0.16,988,2.4000000000000004,131,1.5 +2011,3,27,9,30,18.6,0.47000000000000003,0.0748,0.68,0,0,0,3,15.4,0,0,0,0,0.272,81.46000000000001,112.22,0.16,989,2.3000000000000003,134,1.4000000000000001 +2011,3,27,10,30,18,0.51,0.0664,0.68,0,0,0,1,15.200000000000001,0,0,0,0,0.271,83.68,125.19,0.16,989,2.3000000000000003,136,1.3 +2011,3,27,11,30,17.5,0.5,0.06620000000000001,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.27,85.95,137.44,0.16,989,2.3000000000000003,139,1.1 +2011,3,27,12,30,17.1,0.46,0.0704,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.27,88.27,147.99,0.16,989,2.3000000000000003,143,1 +2011,3,27,13,30,16.7,0.43,0.075,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.269,90.78,154.54,0.16,988,2.3000000000000003,147,0.9 +2011,3,27,14,30,16.400000000000002,0.42,0.0787,0.68,0,0,0,0,15.3,0,0,0,0,0.268,92.96000000000001,153.87,0.16,988,2.3000000000000003,151,0.9 +2011,3,27,15,30,16.1,0.4,0.083,0.68,0,0,0,0,15.4,0,0,0,0,0.268,95.32000000000001,146.39000000000001,0.16,988,2.3000000000000003,152,0.9 +2011,3,27,16,30,15.9,0.39,0.0868,0.68,0,0,0,0,15.4,0,0,0,0,0.268,97.10000000000001,135.45,0.16,988,2.3000000000000003,153,0.9 +2011,3,27,17,30,15.600000000000001,0.39,0.08990000000000001,0.68,0,0,0,0,15.5,0,0,0,0,0.269,99.22,123.04,0.16,988,2.3000000000000003,155,0.9 +2011,3,27,18,30,15.4,0.38,0.0927,0.68,0,0,0,1,15.4,0,0,0,0,0.269,100,110.01,0.16,988,2.2,157,0.8 +2011,3,27,19,30,15.8,0.37,0.093,0.68,0,0,0,1,15.5,0,0,0,0,0.269,98.14,96.73,0.16,989,2.2,159,1 +2011,3,27,20,30,17.3,0.36,0.0931,0.68,41,293,75,3,15.9,26,0,3,26,0.269,91.28,83.31,0.16,990,2.2,155,1.5 +2011,3,27,21,30,19.5,0.36,0.09140000000000001,0.68,79,641,295,1,16.5,79,641,0,295,0.269,82.65,70.29,0.16,990,2.2,141,2.2 +2011,3,27,22,30,21.400000000000002,0.37,0.0857,0.68,96,794,521,1,16.900000000000002,96,794,0,521,0.269,75.54,57.68,0.16,990,2.2,127,2.6 +2011,3,27,23,30,22.3,0.39,0.08,0.68,105,871,710,1,16.900000000000002,105,871,0,710,0.269,71.35000000000001,46.03,0.16,990,2.3000000000000003,122,2.8000000000000003 +2011,3,28,0,30,23.700000000000003,0.33,0.09670000000000001,0.68,122,891,840,8,16.6,521,98,0,600,0.268,64.52,36.37,0.16,989,2.3000000000000003,116,2.8000000000000003 +2011,3,28,1,30,24.1,0.34,0.1015,0.68,128,901,903,8,16.5,544,68,0,602,0.268,62.620000000000005,30.71,0.16,989,2.4000000000000004,114,2.8000000000000003 +2011,3,28,2,30,24.200000000000003,0.35000000000000003,0.0995,0.68,127,899,895,7,16.400000000000002,430,25,0,452,0.267,61.690000000000005,31.330000000000002,0.16,988,2.5,113,2.7 +2011,3,28,3,30,24,0.37,0.10830000000000001,0.68,127,871,814,7,16.3,375,25,0,395,0.266,62.08,37.92,0.16,988,2.5,113,2.7 +2011,3,28,4,30,23.3,0.38,0.11130000000000001,0.68,119,822,669,8,16.2,375,49,0,407,0.264,64.57000000000001,48.06,0.16,988,2.5,114,2.6 +2011,3,28,5,30,22.3,0.37,0.1085,0.68,103,739,473,8,16.400000000000002,265,57,0,294,0.263,69.24,59.95,0.16,988,2.5,116,2.1 +2011,3,28,6,30,21.1,0.37,0.1058,0.68,78,571,248,8,16.8,94,15,0,99,0.262,76.62,72.67,0.16,989,2.5,118,1.4000000000000001 +2011,3,28,7,30,20.1,0.36,0.1034,0.68,30,161,42,8,17.1,19,0,3,19,0.261,83.13,85.71000000000001,0.16,989,2.6,120,1 +2011,3,28,8,30,19.5,0.34,0.10070000000000001,0.68,0,0,0,7,17.1,0,0,0,0,0.26,85.94,99.2,0.16,990,2.6,124,1 +2011,3,28,9,30,19.1,0.33,0.1034,0.68,0,0,0,8,17.1,0,0,0,0,0.26,88.03,112.48,0.16,990,2.6,126,1 +2011,3,28,10,30,18.900000000000002,0.32,0.1086,0.68,0,0,0,8,17.1,0,0,0,0,0.26,89.19,125.46000000000001,0.16,990,2.6,127,1 +2011,3,28,11,30,18.7,0.31,0.10930000000000001,0.68,0,0,0,8,17.2,0,0,0,0,0.259,90.74,137.74,0.16,990,2.6,128,1 +2011,3,28,12,30,18.5,0.31,0.1056,0.68,0,0,0,8,17.2,0,0,0,0,0.259,92.10000000000001,148.34,0.16,989,2.6,129,0.9 +2011,3,28,13,30,18.400000000000002,0.32,0.1038,0.68,0,0,0,7,17.2,0,0,0,0,0.259,92.73,154.94,0.16,989,2.6,128,1 +2011,3,28,14,30,18.3,0.32,0.10110000000000001,0.68,0,0,0,8,17.2,0,0,0,0,0.259,93.16,154.22,0.16,988,2.5,126,1 +2011,3,28,15,30,18.2,0.32,0.1003,0.68,0,0,0,3,17.2,0,0,0,0,0.259,93.85000000000001,146.64000000000001,0.16,988,2.5,124,1 +2011,3,28,16,30,18.2,0.32,0.1029,0.68,0,0,0,7,17.3,0,0,0,0,0.259,94.24,135.63,0.16,988,2.6,121,1 +2011,3,28,17,30,18.2,0.32,0.1082,0.68,0,0,0,8,17.3,0,0,0,0,0.259,94.59,123.18,0.16,988,2.6,117,1 +2011,3,28,18,30,18.2,0.3,0.1143,0.68,0,0,0,7,17.400000000000002,0,0,0,0,0.26,95.12,110.12,0.16,988,2.6,114,1 +2011,3,28,19,30,18.400000000000002,0.3,0.1178,0.68,0,0,0,8,17.5,0,0,0,0,0.26,94.35000000000001,96.84,0.16,989,2.7,112,1 +2011,3,28,20,30,19.1,0.29,0.12140000000000001,0.68,43,228,70,8,17.7,43,25,3,46,0.26,91.85000000000001,83.43,0.16,989,2.7,112,1.2000000000000002 +2011,3,28,21,30,20,0.29,0.1231,0.68,89,576,282,8,18.2,164,70,0,188,0.262,89.39,70.43,0.16,990,2.8000000000000003,112,1.6 +2011,3,28,22,30,20.900000000000002,0.29,0.1236,0.68,113,730,502,7,18.400000000000002,171,23,0,184,0.263,85.64,57.85,0.16,990,2.8000000000000003,112,1.9000000000000001 +2011,3,28,23,30,21.3,0.3,0.1197,0.68,126,815,689,8,18.5,148,26,0,166,0.263,83.97,46.24,0.16,990,2.8000000000000003,113,2 +2011,3,29,0,30,22.200000000000003,0.37,0.1073,0.68,127,870,824,8,18.1,144,27,0,166,0.264,77.72,36.660000000000004,0.16,989,2.8000000000000003,109,2.3000000000000003 +2011,3,29,1,30,22.400000000000002,0.37,0.1095,0.68,131,883,888,8,17.6,460,29,0,484,0.264,74.21000000000001,31.080000000000002,0.16,988,2.9000000000000004,108,2.4000000000000004 +2011,3,29,2,30,22.400000000000002,0.37,0.1078,0.68,130,883,881,8,17.3,564,112,0,659,0.264,72.67,31.73,0.16,988,2.9000000000000004,108,2.4000000000000004 +2011,3,29,3,30,22.3,0.35000000000000003,0.12010000000000001,0.68,132,850,799,8,17.1,470,54,0,512,0.264,72.64,38.28,0.16,987,2.9000000000000004,108,2.2 +2011,3,29,4,30,22,0.35000000000000003,0.12490000000000001,0.68,125,797,655,7,17.3,204,26,0,221,0.264,74.63,48.370000000000005,0.16,987,2.9000000000000004,108,2 +2011,3,29,5,30,21.5,0.33,0.1221,0.68,108,708,459,7,17.5,139,22,0,150,0.264,78.04,60.230000000000004,0.16,987,3,108,1.6 +2011,3,29,6,30,20.700000000000003,0.31,0.1211,0.68,81,529,236,6,17.8,124,36,0,135,0.265,83.44,72.93,0.16,988,3.1,109,1.1 +2011,3,29,7,30,19.900000000000002,0.3,0.1202,0.68,29,119,37,7,17.8,22,0,3,22,0.266,87.60000000000001,85.95,0.16,988,3.1,110,0.9 +2011,3,29,8,30,19.400000000000002,0.31,0.11510000000000001,0.68,0,0,0,7,17.6,0,0,0,0,0.266,89.16,99.45,0.16,989,3.2,112,0.8 +2011,3,29,9,30,19,0.32,0.1106,0.68,0,0,0,7,17.6,0,0,0,0,0.267,91.37,112.73,0.16,989,3.2,117,0.8 +2011,3,29,10,30,18.7,0.3,0.115,0.68,0,0,0,7,17.6,0,0,0,0,0.267,93.47,125.73,0.16,989,3.3000000000000003,122,0.8 +2011,3,29,11,30,18.5,0.28,0.12340000000000001,0.68,0,0,0,7,17.7,0,0,0,0,0.267,95.27,138.04,0.16,989,3.3000000000000003,130,0.7000000000000001 +2011,3,29,12,30,18.400000000000002,0.26,0.1321,0.68,0,0,0,7,17.8,0,0,0,0,0.267,96.29,148.70000000000002,0.16,988,3.4000000000000004,138,0.7000000000000001 +2011,3,29,13,30,18.2,0.26,0.1358,0.68,0,0,0,8,17.8,0,0,0,0,0.267,97.81,155.34,0.16,988,3.5,141,0.7000000000000001 +2011,3,29,14,30,18,0.26,0.14020000000000002,0.68,0,0,0,8,17.8,0,0,0,0,0.267,98.96000000000001,154.56,0.16,987,3.5,143,0.7000000000000001 +2011,3,29,15,30,17.900000000000002,0.25,0.1486,0.68,0,0,0,8,17.8,0,0,0,0,0.267,99.37,146.89000000000001,0.16,986,3.6,144,0.7000000000000001 +2011,3,29,16,30,17.8,0.25,0.16160000000000002,0.68,0,0,0,7,17.8,0,0,0,0,0.267,100,135.8,0.16,986,3.6,145,0.7000000000000001 +2011,3,29,17,30,17.8,0.24,0.17270000000000002,0.68,0,0,0,8,17.8,0,0,0,0,0.266,100,123.31,0.16,986,3.7,148,0.6000000000000001 +2011,3,29,18,30,17.8,0.28,0.17700000000000002,0.68,0,0,0,8,17.8,0,0,0,0,0.266,100,110.24000000000001,0.16,987,3.7,149,0.6000000000000001 +2011,3,29,19,30,18.1,0.31,0.1668,0.68,0,0,0,4,17.900000000000002,0,0,0,0,0.265,99.03,96.95,0.16,987,3.8000000000000003,149,0.7000000000000001 +2011,3,29,20,30,18.7,0.31,0.15180000000000002,0.68,44,174,64,8,18.3,15,0,3,15,0.264,97.52,83.54,0.16,988,3.8000000000000003,150,1 +2011,3,29,21,30,19.5,0.37,0.1454,0.68,93,532,270,8,18.8,49,3,0,50,0.264,95.60000000000001,70.56,0.16,988,3.8000000000000003,141,1.3 +2011,3,29,22,30,20.400000000000002,0.44,0.1247,0.68,110,716,489,8,19.3,61,9,0,65,0.263,93.25,58.01,0.16,988,3.9000000000000004,126,1.4000000000000001 +2011,3,29,23,30,20.8,0.52,0.1014,0.68,112,820,677,8,19.5,45,0,0,45,0.263,92.27,46.46,0.16,988,3.9000000000000004,118,1.5 +2011,3,30,0,30,21.900000000000002,0.45,0.12100000000000001,0.68,131,841,803,7,19.400000000000002,99,19,0,115,0.262,85.95,36.95,0.16,987,3.9000000000000004,106,1.5 +2011,3,30,1,30,22.400000000000002,0.51,0.1178,0.68,132,862,868,7,19.3,100,19,0,116,0.261,82.4,31.45,0.16,986,3.9000000000000004,101,1.5 +2011,3,30,2,30,22.6,0.52,0.1126,0.68,129,864,860,7,19.1,136,26,0,158,0.26,80.39,32.12,0.16,985,4,96,1.4000000000000001 +2011,3,30,3,30,22.400000000000002,0.5700000000000001,0.1262,0.68,130,832,780,4,19,214,28,0,236,0.259,80.86,38.64,0.16,985,4,93,1.5 +2011,3,30,4,30,21.8,0.6,0.1233,0.68,119,787,639,8,19,249,24,0,265,0.258,84.19,48.69,0.16,985,4,92,1.5 +2011,3,30,5,30,21.1,0.59,0.1105,0.68,99,713,450,8,19.200000000000003,120,22,0,131,0.258,88.95,60.51,0.16,985,4,93,1.6 +2011,3,30,6,30,20.200000000000003,0.62,0.109,0.68,74,545,231,7,19.400000000000002,120,33,0,129,0.259,95.15,73.19,0.16,985,3.9000000000000004,96,1.2000000000000002 +2011,3,30,7,30,19.400000000000002,0.63,0.1018,0.68,26,149,35,8,19.400000000000002,21,0,3,21,0.26,100,86.19,0.16,986,3.8000000000000003,98,0.7000000000000001 +2011,3,30,8,30,18.900000000000002,0.6,0.093,0.68,0,0,0,8,18.900000000000002,0,0,0,0,0.261,100,99.69,0.16,987,3.8000000000000003,101,0.6000000000000001 +2011,3,30,9,30,18.7,0.61,0.1,0.68,0,0,0,8,18.7,0,0,0,0,0.26,100,112.98,0.16,987,3.8000000000000003,109,0.6000000000000001 +2011,3,30,10,30,18.5,0.6,0.1027,0.68,0,0,0,8,18.5,0,0,0,0,0.26,100,126,0.16,987,3.7,123,0.5 +2011,3,30,11,30,18.2,0.5700000000000001,0.09960000000000001,0.68,0,0,0,7,18.2,0,0,0,0,0.259,100,138.34,0.16,987,3.7,140,0.5 +2011,3,30,12,30,18,0.58,0.09910000000000001,0.68,0,0,0,7,18,0,0,0,0,0.259,100,149.05,0.16,987,3.7,157,0.5 +2011,3,30,13,30,17.900000000000002,0.59,0.0949,0.68,0,0,0,8,17.900000000000002,0,0,0,0,0.258,100,155.74,0.16,987,3.6,169,0.6000000000000001 +2011,3,30,14,30,17.7,0.6,0.0863,0.68,0,0,0,8,17.7,0,0,0,0,0.258,100,154.91,0.16,986,3.5,172,0.6000000000000001 +2011,3,30,15,30,17.5,0.63,0.0804,0.68,0,0,0,8,17.5,0,0,0,0,0.258,100,147.13,0.16,986,3.4000000000000004,169,0.6000000000000001 +2011,3,30,16,30,17.3,0.65,0.0751,0.68,0,0,0,8,17.3,0,0,0,0,0.258,100,135.97,0.16,986,3.4000000000000004,167,0.6000000000000001 +2011,3,30,17,30,17.1,0.67,0.0693,0.68,0,0,0,7,17.1,0,0,0,0,0.258,100,123.45,0.16,986,3.3000000000000003,164,0.6000000000000001 +2011,3,30,18,30,17.1,0.6900000000000001,0.0656,0.68,0,0,0,7,17.1,0,0,0,0,0.259,100,110.36,0.16,987,3.2,161,0.6000000000000001 +2011,3,30,19,30,17.400000000000002,0.71,0.0625,0.68,0,0,0,8,17.1,0,0,0,0,0.259,98.16,97.06,0.16,987,3.1,156,0.7000000000000001 +2011,3,30,20,30,18.5,0.72,0.060000000000000005,0.68,33,350,72,4,17.7,37,1,3,37,0.26,94.93,83.66,0.16,988,3.1,150,0.9 +2011,3,30,21,30,20,0.72,0.060200000000000004,0.68,64,676,288,3,18.6,157,57,0,176,0.262,91.61,70.69,0.16,988,3.1,134,1.1 +2011,3,30,22,30,21.5,0.7000000000000001,0.0618,0.68,82,806,507,3,19.5,292,68,0,328,0.263,88.13,58.18,0.16,988,3.1,115,1.3 +2011,3,30,23,30,22.200000000000003,0.71,0.0604,0.68,91,876,692,4,19.6,379,44,0,409,0.263,85.31,46.68,0.16,988,3.1,109,1.3 +2011,3,31,0,30,23.900000000000002,0.67,0.0748,0.68,105,895,818,1,19.400000000000002,105,895,0,818,0.264,76.12,37.24,0.16,987,3.2,107,1.5 +2011,3,31,1,30,24.6,0.7000000000000001,0.0717,0.68,106,912,881,1,19.200000000000003,106,912,0,881,0.264,71.92,31.82,0.16,986,3.3000000000000003,109,1.6 +2011,3,31,2,30,24.900000000000002,0.71,0.0726,0.68,106,910,873,1,19,106,910,0,873,0.264,69.75,32.52,0.16,986,3.3000000000000003,110,1.8 +2011,3,31,3,30,24.8,0.72,0.076,0.68,104,886,792,8,18.8,373,25,0,392,0.264,69.22,39,0.16,986,3.4000000000000004,109,1.9000000000000001 +2011,3,31,4,30,24.5,0.73,0.0789,0.68,98,840,649,1,18.5,98,840,0,649,0.263,69.07000000000001,49,0.16,986,3.4000000000000004,107,2 +2011,3,31,5,30,23.8,0.72,0.0796,0.68,86,758,456,3,18.3,283,121,0,342,0.263,71.39,60.79,0.16,986,3.4000000000000004,103,1.8 +2011,3,31,6,30,22.6,0.74,0.0756,0.68,64,603,235,1,18.5,64,603,0,235,0.264,77.64,73.45,0.16,986,3.3000000000000003,99,1.3 +2011,3,31,7,30,21.1,0.75,0.07050000000000001,0.68,23,196,35,1,18.900000000000002,23,196,0,35,0.265,87.34,86.43,0.16,987,3.3000000000000003,99,0.8 +2011,3,31,8,30,20.200000000000003,0.74,0.0648,0.68,0,0,0,0,18.6,0,0,0,0,0.266,90.59,99.94,0.16,988,3.2,103,0.8 +2011,3,31,9,30,19.6,0.73,0.0592,0.68,0,0,0,0,18.3,0,0,0,0,0.267,92.39,113.23,0.16,988,3.1,110,0.8 +2011,3,31,10,30,19.200000000000003,0.72,0.0562,0.68,0,0,0,0,18.1,0,0,0,0,0.267,93.33,126.27,0.16,989,2.9000000000000004,118,0.7000000000000001 +2011,3,31,11,30,18.8,0.6900000000000001,0.057100000000000005,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.266,94.60000000000001,138.64000000000001,0.16,989,2.8000000000000003,123,0.8 +2011,3,31,12,30,18.7,0.68,0.061500000000000006,0.68,0,0,0,0,17.8,0,0,0,0,0.266,94.44,149.4,0.16,988,2.8000000000000003,126,0.8 +2011,3,31,13,30,18.7,0.7000000000000001,0.0669,0.68,0,0,0,0,17.8,0,0,0,0,0.265,94.68,156.13,0.16,988,2.7,129,0.8 +2011,3,31,14,30,18.6,0.6900000000000001,0.06720000000000001,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.266,95.44,155.25,0.16,988,2.7,131,0.8 +2011,3,31,15,30,18.400000000000002,0.71,0.0699,0.68,0,0,0,0,17.8,0,0,0,0,0.266,96.55,147.37,0.16,987,2.6,133,0.7000000000000001 +2011,3,31,16,30,18.1,0.72,0.0702,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.266,98.56,136.14000000000001,0.16,987,2.6,137,0.7000000000000001 +2011,3,31,17,30,17.900000000000002,0.73,0.0694,0.68,0,0,0,0,17.8,0,0,0,0,0.266,99.59,123.58,0.16,987,2.7,139,0.8 +2011,3,31,18,30,17.7,0.75,0.0688,0.68,0,0,0,0,17.7,0,0,0,0,0.266,100,110.47,0.16,988,2.7,141,0.8 +2011,3,31,19,30,18,0.77,0.0678,0.68,0,0,0,1,17.7,0,0,0,0,0.266,98.21000000000001,97.17,0.16,988,2.7,142,0.9 +2011,3,31,20,30,19.3,0.78,0.0669,0.68,34,340,71,1,18,34,340,0,71,0.266,92.41,83.77,0.16,989,2.7,140,1.4000000000000001 +2011,3,31,21,30,20.900000000000002,0.8200000000000001,0.06280000000000001,0.68,64,677,287,1,18.6,64,677,0,287,0.266,86.55,70.83,0.16,989,2.8000000000000003,132,2.1 +2011,3,31,22,30,22.3,0.91,0.052500000000000005,0.68,76,824,509,1,18.7,76,824,0,509,0.266,80.2,58.34,0.16,989,2.8000000000000003,124,2.5 +2011,3,31,23,30,22.900000000000002,0.87,0.054200000000000005,0.68,87,886,692,1,18.400000000000002,87,886,0,692,0.266,75.92,46.89,0.16,989,2.9000000000000004,121,2.6 +2012,4,1,0,30,24.1,0.81,0.044500000000000005,0.68,88,952,840,1,15.9,88,952,0,840,0.263,60.01,37.75,0.14,983,1.9000000000000001,160,1.7000000000000002 +2012,4,1,1,30,24.900000000000002,0.84,0.041600000000000005,0.68,88,969,905,1,15.600000000000001,88,969,0,905,0.263,56.19,32.47,0.14,982,1.9000000000000001,152,1.7000000000000002 +2012,4,1,2,30,25.3,0.86,0.0393,0.68,86,967,895,1,15.3,86,967,0,895,0.263,53.96,33.21,0.14,981,2,145,1.8 +2012,4,1,3,30,25.5,0.77,0.0443,0.68,87,944,813,1,15.200000000000001,87,944,0,813,0.264,52.9,39.63,0.14,980,2,137,1.9000000000000001 +2012,4,1,4,30,25.200000000000003,0.8,0.0436,0.68,80,903,666,1,15.3,80,903,0,666,0.264,54.27,49.56,0.14,980,2.1,129,2 +2012,4,1,5,30,24.5,0.8200000000000001,0.041800000000000004,0.68,69,832,469,0,15.600000000000001,69,832,0,469,0.264,57.64,61.28,0.14,980,2.1,121,1.9000000000000001 +2012,4,1,6,30,22.8,0.8300000000000001,0.041600000000000005,0.68,53,684,242,0,16.3,53,684,0,242,0.265,66.77,73.9,0.14,981,2,114,1.4000000000000001 +2012,4,1,7,30,20.700000000000003,0.87,0.0415,0.68,19,262,34,0,17,19,262,0,34,0.266,79.48,86.84,0.14,981,2,113,1 +2012,4,1,8,30,19.400000000000002,0.89,0.0419,0.68,0,0,0,0,16.7,0,0,0,0,0.267,84.46000000000001,100.36,0.14,982,1.9000000000000001,121,0.8 +2012,4,1,9,30,18.5,0.89,0.042300000000000004,0.68,0,0,0,0,16.5,0,0,0,0,0.267,88.01,113.66,0.14,983,1.8,133,0.8 +2012,4,1,10,30,17.8,0.87,0.042300000000000004,0.68,0,0,0,0,16.1,0,0,0,0,0.266,90.06,126.73,0.14,983,1.7000000000000002,142,0.8 +2012,4,1,11,30,17.3,0.8200000000000001,0.0424,0.68,0,0,0,0,15.8,0,0,0,0,0.266,91.12,139.16,0.14,983,1.7000000000000002,151,0.9 +2012,4,1,12,30,16.8,0.77,0.0437,0.68,0,0,0,0,15.600000000000001,0,0,0,0,0.266,92.43,150.01,0.14,983,1.7000000000000002,161,0.9 +2012,4,1,13,30,16.3,0.71,0.0453,0.68,0,0,0,0,15.4,0,0,0,0,0.266,94.32000000000001,156.82,0.14,982,1.8,173,0.9 +2012,4,1,14,30,15.8,0.66,0.0476,0.68,0,0,0,0,15.3,0,0,0,0,0.265,96.82000000000001,155.84,0.14,982,1.8,182,0.9 +2012,4,1,15,30,15.4,0.64,0.0492,0.68,0,0,0,0,15.3,0,0,0,0,0.265,99.24000000000001,147.78,0.14,982,1.9000000000000001,187,0.9 +2012,4,1,16,30,15,0.63,0.0494,0.68,0,0,0,0,15,0,0,0,0,0.265,100,136.43,0.14,982,2,190,0.9 +2012,4,1,17,30,14.8,0.64,0.0487,0.68,0,0,0,0,14.8,0,0,0,0,0.265,100,123.81,0.14,982,2.1,192,0.9 +2012,4,1,18,30,14.600000000000001,0.66,0.0478,0.68,0,0,0,0,14.600000000000001,0,0,0,0,0.265,100,110.67,0.14,982,2.1,194,0.9 +2012,4,1,19,30,15,0.68,0.0465,0.68,0,0,0,0,15,0,0,0,0,0.264,100,97.36,0.14,983,2.2,198,0.9 +2012,4,1,20,30,16.8,0.7000000000000001,0.0442,0.68,30,387,71,1,15.700000000000001,30,387,0,71,0.263,93.21000000000001,83.97,0.14,983,2.3000000000000003,199,1.1 +2012,4,1,21,30,19.5,0.74,0.041,0.68,57,717,290,1,16.3,57,717,0,290,0.263,81.88,71.06,0.14,984,2.4000000000000004,176,1.5 +2012,4,1,22,30,21.8,0.77,0.038200000000000005,0.68,70,845,510,1,17.1,70,845,0,510,0.263,74.47,58.64,0.14,984,2.5,154,1.6 +2012,4,1,23,30,22.8,0.8,0.0358,0.68,77,911,695,1,17.1,77,911,0,695,0.263,70.23,47.28,0.14,983,2.5,150,1.6 +2012,4,2,0,30,24.8,0.62,0.0523,0.68,93,924,821,1,16.900000000000002,93,924,0,821,0.262,61.39,38.050000000000004,0.15,982,2.6,158,1.3 +2012,4,2,1,30,25.700000000000003,0.66,0.049800000000000004,0.68,94,942,885,1,16.6,94,942,0,885,0.262,57.15,32.83,0.15,982,2.6,163,1.2000000000000002 +2012,4,2,2,30,26.400000000000002,0.7000000000000001,0.0478,0.68,92,942,876,1,16.3,92,942,0,876,0.263,53.870000000000005,33.6,0.15,981,2.6,163,1.2000000000000002 +2012,4,2,3,30,26.700000000000003,0.75,0.045200000000000004,0.68,87,929,799,1,16.1,87,929,0,799,0.264,52.36,39.99,0.15,980,2.5,158,1.2000000000000002 +2012,4,2,4,30,26.700000000000003,0.78,0.0451,0.68,81,890,654,1,16,81,890,0,654,0.265,51.96,49.870000000000005,0.15,979,2.5,148,1.2000000000000002 +2012,4,2,5,30,26.1,0.8300000000000001,0.046200000000000005,0.68,71,816,459,1,16.2,71,816,0,459,0.266,54.300000000000004,61.56,0.15,979,2.4000000000000004,131,1.1 +2012,4,2,6,30,24.400000000000002,0.89,0.0487,0.68,54,657,234,1,16.7,54,657,0,234,0.266,62.32,74.16,0.15,980,2.4000000000000004,107,0.9 +2012,4,2,7,30,22.1,0.9400000000000001,0.0536,0.68,19,216,30,1,18.1,19,216,0,30,0.266,78.12,87.08,0.15,980,2.4000000000000004,93,0.8 +2012,4,2,8,30,20.700000000000003,0.98,0.062,0.68,0,0,0,1,18,0,0,0,0,0.266,84.46000000000001,100.60000000000001,0.15,981,2.5,98,0.8 +2012,4,2,9,30,19.900000000000002,0.97,0.07100000000000001,0.68,0,0,0,1,18,0,0,0,0,0.266,88.97,113.9,0.15,982,2.5,108,0.8 +2012,4,2,10,30,19.1,0.9500000000000001,0.0741,0.68,0,0,0,3,17.900000000000002,0,0,0,0,0.266,92.55,126.99000000000001,0.15,982,2.5,118,0.8 +2012,4,2,11,30,18.5,0.93,0.0733,0.68,0,0,0,0,17.7,0,0,0,0,0.266,95.3,139.45000000000002,0.15,982,2.5,124,0.7000000000000001 +2012,4,2,12,30,17.900000000000002,0.93,0.0714,0.68,0,0,0,0,17.7,0,0,0,0,0.266,98.65,150.35,0.15,982,2.5,131,0.7000000000000001 +2012,4,2,13,30,17.400000000000002,0.9400000000000001,0.0688,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.266,100,157.21,0.15,982,2.4000000000000004,142,0.6000000000000001 +2012,4,2,14,30,17,0.98,0.0658,0.68,0,0,0,0,17,0,0,0,0,0.266,100,156.17000000000002,0.15,981,2.3000000000000003,155,0.6000000000000001 +2012,4,2,15,30,16.8,1.02,0.0632,0.68,0,0,0,0,16.8,0,0,0,0,0.266,100,148,0.15,981,2.2,178,0.6000000000000001 +2012,4,2,16,30,16.5,1.06,0.0618,0.68,0,0,0,0,16.5,0,0,0,0,0.266,100,136.59,0.15,981,2.2,207,0.7000000000000001 +2012,4,2,17,30,16,1.08,0.0614,0.68,0,0,0,0,16,0,0,0,0,0.266,100,123.93,0.15,981,2.1,225,0.8 +2012,4,2,18,30,15.600000000000001,1.09,0.0608,0.68,0,0,0,0,15.600000000000001,0,0,0,0,0.267,100,110.78,0.15,982,2.1,235,0.8 +2012,4,2,19,30,15.700000000000001,1.09,0.0599,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.267,100,97.47,0.15,983,2,242,0.9 +2012,4,2,20,30,17.3,1.1,0.058300000000000005,0.68,31,372,69,1,16.5,31,372,0,69,0.268,95.06,84.09,0.15,983,2,248,1 +2012,4,2,21,30,20.1,1.12,0.0548,0.68,61,711,290,1,17,61,711,0,290,0.269,82.17,71.2,0.15,983,1.9000000000000001,229,1 +2012,4,2,22,30,22.700000000000003,1.1400000000000001,0.051300000000000005,0.68,75,846,513,0,17,75,846,0,513,0.27,70.08,58.81,0.15,983,1.9000000000000001,197,1 +2012,4,2,23,30,23.900000000000002,1.1500000000000001,0.0499,0.68,84,912,700,0,16.5,84,912,0,700,0.27,63.32,47.5,0.15,983,1.9000000000000001,186,1.1 +2012,4,3,0,30,25.900000000000002,1.17,0.049300000000000004,0.68,88,947,831,0,16,88,947,0,831,0.272,54.33,38.34,0.14,982,1.9000000000000001,168,1.3 +2012,4,3,1,30,26.700000000000003,1.16,0.0499,0.68,91,960,894,0,15.5,91,960,0,894,0.273,50.2,33.2,0.14,981,1.9000000000000001,156,1.4000000000000001 +2012,4,3,2,30,27.200000000000003,1.16,0.0509,0.68,91,955,883,0,15.100000000000001,91,955,0,883,0.274,47.62,33.980000000000004,0.14,980,2,143,1.5 +2012,4,3,3,30,27.3,1.09,0.054200000000000005,0.68,90,933,801,0,15,90,933,0,801,0.275,47.01,40.34,0.14,980,2,130,1.6 +2012,4,3,4,30,27,1.08,0.0563,0.68,84,887,652,0,15.200000000000001,84,887,0,652,0.276,48.31,50.19,0.14,980,2.1,117,1.7000000000000002 +2012,4,3,5,30,26,1.08,0.057300000000000004,0.68,73,808,455,0,15.600000000000001,73,808,0,455,0.277,52.82,61.84,0.14,980,2.1,104,1.7000000000000002 +2012,4,3,6,30,23.900000000000002,1.08,0.058,0.68,55,644,228,0,16.6,55,644,0,228,0.278,63.85,74.41,0.14,980,2.2,92,1.4000000000000001 +2012,4,3,7,30,21.6,1.07,0.059000000000000004,0.68,18,199,27,0,17.8,18,199,0,27,0.279,78.87,87.31,0.14,981,2.3000000000000003,87,1 +2012,4,3,8,30,20.3,1.04,0.0603,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.28,86.04,100.84,0.14,982,2.3000000000000003,92,0.9 +2012,4,3,9,30,19.6,0.99,0.0621,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.28,90.06,114.15,0.14,982,2.4000000000000004,107,0.8 +2012,4,3,10,30,19,0.93,0.0648,0.68,0,0,0,0,17.7,0,0,0,0,0.28,92.4,127.24000000000001,0.14,983,2.4000000000000004,126,0.7000000000000001 +2012,4,3,11,30,18.5,0.87,0.0678,0.68,0,0,0,0,17.5,0,0,0,0,0.28,94.10000000000001,139.74,0.14,983,2.4000000000000004,142,0.7000000000000001 +2012,4,3,12,30,18,0.8300000000000001,0.0707,0.68,0,0,0,0,17.3,0,0,0,0,0.28,95.98,150.70000000000002,0.14,982,2.4000000000000004,154,0.7000000000000001 +2012,4,3,13,30,17.5,0.81,0.0738,0.68,0,0,0,0,17.2,0,0,0,0,0.28,97.89,157.6,0.14,982,2.4000000000000004,162,0.8 +2012,4,3,14,30,17.1,0.8,0.0761,0.68,0,0,0,0,17,0,0,0,0,0.28,99.18,156.5,0.14,982,2.5,169,0.8 +2012,4,3,15,30,16.7,0.81,0.0782,0.68,0,0,0,0,16.7,0,0,0,0,0.28,100,148.23,0.14,982,2.5,176,0.8 +2012,4,3,16,30,16.3,0.81,0.0805,0.68,0,0,0,0,16.3,0,0,0,0,0.28,100,136.75,0.14,982,2.4000000000000004,182,0.8 +2012,4,3,17,30,16,0.8200000000000001,0.0823,0.68,0,0,0,1,16,0,0,0,0,0.279,100,124.06,0.14,982,2.4000000000000004,184,0.8 +2012,4,3,18,30,15.600000000000001,0.8,0.08270000000000001,0.68,0,0,0,0,15.600000000000001,0,0,0,0,0.279,100,110.89,0.14,983,2.3000000000000003,182,0.8 +2012,4,3,19,30,15.700000000000001,0.77,0.0818,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.279,100,97.58,0.14,984,2.3000000000000003,178,0.8 +2012,4,3,20,30,17.400000000000002,0.73,0.0782,0.68,33,305,64,1,16.6,33,305,0,64,0.279,94.88,84.2,0.14,984,2.2,169,1 +2012,4,3,21,30,20,0.71,0.07,0.68,66,668,280,1,17,66,668,0,280,0.279,82.89,71.34,0.14,985,2.2,149,1.4000000000000001 +2012,4,3,22,30,22.1,0.72,0.0618,0.68,80,818,501,1,17,80,818,0,501,0.279,72.92,58.980000000000004,0.14,985,2.2,133,1.7000000000000002 +2012,4,3,23,30,22.8,0.74,0.054400000000000004,0.68,87,894,688,0,16.6,87,894,0,688,0.278,68.13,47.72,0.14,984,2.2,130,1.7000000000000002 +2012,4,4,0,30,24.5,0.8,0.049100000000000005,0.68,89,932,818,0,16.2,89,932,0,818,0.277,59.9,38.63,0.15,983,2.3000000000000003,126,1.8 +2012,4,4,1,30,25.200000000000003,0.78,0.046900000000000004,0.68,90,946,879,0,15.9,90,946,0,879,0.276,56.52,33.57,0.15,983,2.4000000000000004,122,1.8 +2012,4,4,2,30,25.6,0.76,0.0459,0.68,89,945,869,0,15.700000000000001,89,945,0,869,0.275,54.45,34.37,0.15,982,2.4000000000000004,118,1.9000000000000001 +2012,4,4,3,30,25.700000000000003,0.75,0.0466,0.68,86,926,788,0,15.600000000000001,86,926,0,788,0.274,53.72,40.7,0.15,981,2.4000000000000004,114,2 +2012,4,4,4,30,25.400000000000002,0.72,0.0478,0.68,81,881,641,0,15.700000000000001,81,881,0,641,0.275,54.82,50.5,0.15,981,2.5,111,2 +2012,4,4,5,30,24.6,0.7000000000000001,0.0492,0.68,71,801,446,0,15.8,71,801,0,446,0.275,57.99,62.120000000000005,0.15,982,2.5,106,1.9000000000000001 +2012,4,4,6,30,22.900000000000002,0.7000000000000001,0.054,0.68,55,630,221,1,16.3,55,630,0,221,0.275,66.46000000000001,74.67,0.15,982,2.5,98,1.4000000000000001 +2012,4,4,7,30,20.900000000000002,0.6900000000000001,0.0563,0.68,17,166,24,0,17.400000000000002,17,166,0,24,0.276,80.33,87.54,0.15,983,2.6,92,0.9 +2012,4,4,8,30,19.700000000000003,0.66,0.059000000000000004,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.276,86.73,101.07000000000001,0.15,984,2.6,93,0.8 +2012,4,4,9,30,19,0.64,0.0639,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.276,90.58,114.39,0.15,984,2.7,97,0.7000000000000001 +2012,4,4,10,30,18.5,0.62,0.0702,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.276,93.22,127.5,0.15,985,2.7,103,0.7000000000000001 +2012,4,4,11,30,18.1,0.6,0.07680000000000001,0.68,0,0,0,0,17.3,0,0,0,0,0.276,95.22,140.03,0.15,985,2.8000000000000003,111,0.7000000000000001 +2012,4,4,12,30,17.7,0.59,0.08220000000000001,0.68,0,0,0,0,17.2,0,0,0,0,0.276,97.14,151.03,0.15,985,2.8000000000000003,121,0.7000000000000001 +2012,4,4,13,30,17.3,0.6,0.0852,0.68,0,0,0,0,17.1,0,0,0,0,0.275,99.03,157.99,0.15,985,2.8000000000000003,132,0.7000000000000001 +2012,4,4,14,30,16.900000000000002,0.61,0.0858,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.275,100,156.83,0.15,985,2.8000000000000003,144,0.7000000000000001 +2012,4,4,15,30,16.5,0.62,0.085,0.68,0,0,0,0,16.5,0,0,0,0,0.274,100,148.45000000000002,0.15,985,2.8000000000000003,153,0.7000000000000001 +2012,4,4,16,30,16.2,0.63,0.0835,0.68,0,0,0,0,16.2,0,0,0,0,0.274,100,136.91,0.15,985,2.8000000000000003,158,0.7000000000000001 +2012,4,4,17,30,15.9,0.65,0.0814,0.68,0,0,0,0,15.9,0,0,0,0,0.273,100,124.18,0.15,985,2.7,160,0.7000000000000001 +2012,4,4,18,30,15.700000000000001,0.66,0.0789,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.273,100,111,0.15,985,2.7,161,0.7000000000000001 +2012,4,4,19,30,16,0.66,0.0758,0.68,0,0,0,0,16,0,0,0,0,0.273,100,97.69,0.15,986,2.6,162,0.7000000000000001 +2012,4,4,20,30,17.6,0.67,0.07200000000000001,0.68,32,301,62,1,16.5,32,301,0,62,0.273,93,84.32000000000001,0.15,986,2.6,154,1.1 +2012,4,4,21,30,19.900000000000002,0.6900000000000001,0.0671,0.68,65,662,275,1,17,65,662,0,275,0.273,83.35000000000001,71.47,0.15,987,2.5,137,1.5 +2012,4,4,22,30,21.8,0.72,0.060500000000000005,0.68,79,810,495,1,17.1,79,810,0,495,0.273,74.62,59.15,0.15,987,2.5,125,1.7000000000000002 +2012,4,4,23,30,22.6,0.74,0.0567,0.68,87,883,679,1,16.7,87,883,0,679,0.273,69.13,47.94,0.15,986,2.5,123,1.7000000000000002 +2012,4,5,0,30,24.3,0.58,0.08420000000000001,0.68,110,892,804,1,16.400000000000002,110,892,0,804,0.273,61.27,38.92,0.15,986,2.4000000000000004,119,1.8 +2012,4,5,1,30,24.900000000000002,0.59,0.0801,0.68,110,912,867,1,16.1,110,912,0,867,0.273,58.17,33.93,0.15,985,2.4000000000000004,115,1.8 +2012,4,5,2,30,25.200000000000003,0.61,0.07780000000000001,0.68,109,912,858,1,15.8,109,912,0,858,0.273,56.120000000000005,34.76,0.15,984,2.4000000000000004,111,1.9000000000000001 +2012,4,5,3,30,25.200000000000003,0.61,0.0717,0.68,101,897,778,0,15.600000000000001,101,897,0,778,0.274,55.13,41.050000000000004,0.15,984,2.4000000000000004,107,2 +2012,4,5,4,30,24.900000000000002,0.62,0.0736,0.68,95,851,632,1,15.3,95,851,0,632,0.274,55.07,50.81,0.15,984,2.4000000000000004,104,2.1 +2012,4,5,5,30,24,0.62,0.07300000000000001,0.68,82,767,437,1,15.100000000000001,82,767,0,437,0.274,57.67,62.4,0.15,984,2.4000000000000004,100,2 +2012,4,5,6,30,22.400000000000002,0.64,0.0732,0.68,61,593,215,1,15.4,61,593,0,215,0.275,64.71000000000001,74.92,0.15,984,2.3000000000000003,95,1.5 +2012,4,5,7,30,20.400000000000002,0.65,0.06810000000000001,0.68,17,131,22,1,16.1,17,131,0,22,0.276,76.19,87.76,0.15,985,2.3000000000000003,94,1 +2012,4,5,8,30,19.200000000000003,0.64,0.0611,0.68,0,0,0,1,16.1,0,0,0,0,0.277,82.08,101.31,0.15,986,2.3000000000000003,98,0.9 +2012,4,5,9,30,18.5,0.63,0.056100000000000004,0.68,0,0,0,0,16,0,0,0,0,0.278,85.59,114.62,0.15,987,2.3000000000000003,106,0.8 +2012,4,5,10,30,18,0.63,0.0533,0.68,0,0,0,0,16,0,0,0,0,0.278,88.02,127.75,0.15,987,2.3000000000000003,113,0.8 +2012,4,5,11,30,17.5,0.63,0.052000000000000005,0.68,0,0,0,0,15.9,0,0,0,0,0.278,90.58,140.31,0.15,987,2.3000000000000003,120,0.7000000000000001 +2012,4,5,12,30,17.1,0.64,0.0516,0.68,0,0,0,0,15.9,0,0,0,0,0.278,92.69,151.37,0.15,987,2.3000000000000003,127,0.7000000000000001 +2012,4,5,13,30,16.7,0.66,0.051500000000000004,0.68,0,0,0,0,15.9,0,0,0,0,0.277,94.86,158.37,0.15,987,2.3000000000000003,134,0.7000000000000001 +2012,4,5,14,30,16.400000000000002,0.67,0.0514,0.68,0,0,0,0,15.8,0,0,0,0,0.277,96.33,157.16,0.15,986,2.3000000000000003,140,0.7000000000000001 +2012,4,5,15,30,16.1,0.68,0.0519,0.68,0,0,0,0,15.8,0,0,0,0,0.277,97.89,148.67000000000002,0.15,986,2.3000000000000003,147,0.7000000000000001 +2012,4,5,16,30,15.700000000000001,0.68,0.0529,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.277,100,137.06,0.15,986,2.3000000000000003,152,0.7000000000000001 +2012,4,5,17,30,15.4,0.66,0.053700000000000005,0.68,0,0,0,0,15.4,0,0,0,0,0.277,100,124.3,0.15,986,2.2,154,0.7000000000000001 +2012,4,5,18,30,15.200000000000001,0.64,0.055,0.68,0,0,0,1,15.200000000000001,0,0,0,0,0.277,100,111.11,0.15,986,2.2,154,0.7000000000000001 +2012,4,5,19,30,15.4,0.64,0.055200000000000006,0.68,0,0,0,1,15.4,0,0,0,0,0.277,99.77,97.8,0.15,987,2.1,154,0.8 +2012,4,5,20,30,17,0.63,0.055200000000000006,0.68,30,340,63,1,15.4,30,340,0,63,0.277,90.41,84.43,0.15,987,2.1,151,1.1 +2012,4,5,21,30,19.400000000000002,0.63,0.055,0.68,62,690,279,1,15.600000000000001,62,690,0,279,0.277,78.56,71.61,0.15,988,2,138,1.6 +2012,4,5,22,30,21.400000000000002,0.63,0.0539,0.68,77,828,500,1,15.200000000000001,77,828,0,500,0.276,67.9,59.32,0.15,988,2,126,1.8 +2012,4,5,23,30,22.1,0.63,0.053200000000000004,0.68,87,896,684,0,14.8,87,896,0,684,0.276,63.33,48.17,0.15,987,2,124,1.9000000000000001 +2012,4,6,0,30,23.6,0.62,0.057,0.68,94,927,813,1,14.600000000000001,94,927,0,813,0.276,57.1,39.22,0.14,987,2,122,1.8 +2012,4,6,1,30,24.3,0.64,0.056,0.68,96,940,873,1,14.4,96,940,0,873,0.276,54.04,34.29,0.14,986,2.1,122,1.7000000000000002 +2012,4,6,2,30,24.700000000000003,0.65,0.054700000000000006,0.68,95,940,863,1,14.200000000000001,95,940,0,863,0.276,52,35.14,0.14,985,2.1,119,1.7000000000000002 +2012,4,6,3,30,24.700000000000003,0.7000000000000001,0.056600000000000004,0.68,92,919,781,1,13.9,92,919,0,781,0.276,51.04,41.410000000000004,0.14,984,2.1,115,1.7000000000000002 +2012,4,6,4,30,24.3,0.73,0.0594,0.68,87,873,635,1,13.700000000000001,87,873,0,635,0.277,51.68,51.120000000000005,0.14,984,2.1,107,1.7000000000000002 +2012,4,6,5,30,23.5,0.74,0.0565,0.68,74,795,439,1,13.9,74,795,0,439,0.278,54.69,62.67,0.14,984,2.1,97,1.7000000000000002 +2012,4,6,6,30,21.700000000000003,0.78,0.053200000000000004,0.68,54,632,215,1,14.200000000000001,54,632,0,215,0.278,62.53,75.17,0.14,985,2.1,87,1.3 +2012,4,6,7,30,19.6,0.77,0.05,0.68,15,163,21,1,15.3,15,163,0,21,0.279,76.02,87.98,0.14,985,2.1,81,0.9 +2012,4,6,8,30,18.400000000000002,0.75,0.048400000000000006,0.68,0,0,0,0,15.3,0,0,0,0,0.28,82.05,101.54,0.14,986,2.1,83,0.8 +2012,4,6,9,30,17.8,0.72,0.047900000000000005,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.28,84.89,114.86,0.14,986,2.1,85,0.7000000000000001 +2012,4,6,10,30,17.3,0.7000000000000001,0.0485,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.28,87.10000000000001,128,0.14,986,2.2,87,0.7000000000000001 +2012,4,6,11,30,16.900000000000002,0.7000000000000001,0.0495,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.28,88.87,140.59,0.14,986,2.2,91,0.7000000000000001 +2012,4,6,12,30,16.7,0.7000000000000001,0.0507,0.68,0,0,0,0,14.9,0,0,0,0,0.279,89.28,151.70000000000002,0.14,986,2.2,99,0.8 +2012,4,6,13,30,16.5,0.71,0.0516,0.68,0,0,0,0,14.700000000000001,0,0,0,0,0.278,89.36,158.76,0.14,986,2.2,113,0.8 +2012,4,6,14,30,16.3,0.73,0.0521,0.68,0,0,0,0,14.600000000000001,0,0,0,0,0.277,89.51,157.48,0.14,985,2.2,133,0.8 +2012,4,6,15,30,15.9,0.75,0.0524,0.68,0,0,0,0,14.4,0,0,0,0,0.276,91.04,148.88,0.14,985,2.3000000000000003,155,0.8 +2012,4,6,16,30,15.5,0.78,0.052500000000000005,0.68,0,0,0,0,14.3,0,0,0,0,0.274,92.71000000000001,137.21,0.14,985,2.3000000000000003,171,0.8 +2012,4,6,17,30,15.100000000000001,0.81,0.052500000000000005,0.68,0,0,0,0,14.200000000000001,0,0,0,0,0.274,94.48,124.42,0.14,985,2.3000000000000003,182,0.8 +2012,4,6,18,30,14.8,0.84,0.0523,0.68,0,0,0,0,14.100000000000001,0,0,0,0,0.273,95.8,111.21000000000001,0.14,985,2.3000000000000003,190,0.8 +2012,4,6,19,30,15,0.87,0.0519,0.68,0,0,0,1,14.100000000000001,0,0,0,0,0.273,94.22,97.9,0.14,986,2.3000000000000003,200,0.8 +2012,4,6,20,30,16.400000000000002,0.9,0.0517,0.68,29,350,62,1,14.3,29,350,0,62,0.272,87.12,84.55,0.14,986,2.3000000000000003,210,0.8 +2012,4,6,21,30,19.1,0.92,0.051000000000000004,0.68,58,693,275,1,14.600000000000001,58,693,0,275,0.272,75.27,71.75,0.14,986,2.3000000000000003,204,0.6000000000000001 +2012,4,6,22,30,21.8,0.9400000000000001,0.0497,0.68,73,828,494,1,14.5,73,828,0,494,0.272,63.22,59.49,0.14,986,2.3000000000000003,187,0.4 +2012,4,6,23,30,22.900000000000002,0.9500000000000001,0.0492,0.68,82,895,676,1,14.600000000000001,82,895,0,676,0.272,59.370000000000005,48.39,0.14,986,2.3000000000000003,181,0.5 +2012,4,7,0,30,25.1,0.89,0.0563,0.68,92,924,805,0,14.8,92,924,0,805,0.271,52.84,39.51,0.14,985,2.2,153,0.8 +2012,4,7,1,30,26.1,0.9,0.0558,0.68,94,939,867,0,15,94,939,0,867,0.27,50.53,34.660000000000004,0.14,984,2.2,134,0.9 +2012,4,7,2,30,26.700000000000003,0.92,0.055200000000000006,0.68,93,938,856,0,15.100000000000001,93,938,0,856,0.269,49.06,35.52,0.14,983,2.2,119,1.2000000000000002 +2012,4,7,3,30,26.900000000000002,0.92,0.057,0.68,90,914,772,0,15.100000000000001,90,914,0,772,0.268,48.52,41.76,0.14,982,2.3000000000000003,107,1.4000000000000001 +2012,4,7,4,30,26.700000000000003,0.9400000000000001,0.0574,0.68,84,871,627,0,15.200000000000001,84,871,0,627,0.268,49.29,51.43,0.14,982,2.3000000000000003,98,1.6 +2012,4,7,5,30,25.700000000000003,0.96,0.056600000000000004,0.68,72,788,430,0,15.3,72,788,0,430,0.267,52.78,62.95,0.14,982,2.4000000000000004,88,1.5 +2012,4,7,6,30,23.700000000000003,0.97,0.055600000000000004,0.68,53,617,208,0,16.1,53,617,0,208,0.268,62.28,75.43,0.14,983,2.5,74,1.1 +2012,4,7,7,30,21.5,0.99,0.054,0.68,14,146,18,0,17.2,14,146,0,18,0.268,76.61,88.21000000000001,0.14,983,2.5,63,0.8 +2012,4,7,8,30,20.200000000000003,1.01,0.0526,0.68,0,0,0,0,17.2,0,0,0,0,0.268,83.08,101.77,0.14,984,2.6,58,0.7000000000000001 +2012,4,7,9,30,19.400000000000002,1.03,0.051800000000000006,0.68,0,0,0,0,17.3,0,0,0,0,0.268,87.58,115.09,0.14,985,2.7,56,0.7000000000000001 +2012,4,7,10,30,18.8,1.04,0.0528,0.68,0,0,0,0,17.2,0,0,0,0,0.268,90.61,128.25,0.14,985,2.7,56,0.7000000000000001 +2012,4,7,11,30,18.5,1.05,0.056100000000000004,0.68,0,0,0,0,17.2,0,0,0,0,0.267,91.91,140.86,0.14,985,2.7,58,0.7000000000000001 +2012,4,7,12,30,18.2,1.04,0.0609,0.68,0,0,0,0,17.1,0,0,0,0,0.267,93.08,152.03,0.14,985,2.7,62,0.7000000000000001 +2012,4,7,13,30,18,1.02,0.0658,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.267,93.59,159.14000000000001,0.14,985,2.7,67,0.7000000000000001 +2012,4,7,14,30,17.8,0.99,0.0683,0.68,0,0,0,0,16.8,0,0,1,0,0.267,94.10000000000001,157.8,0.14,985,2.6,77,0.7000000000000001 +2012,4,7,15,30,17.5,0.97,0.0703,0.68,0,0,0,0,16.7,0,0,0,0,0.267,95.32000000000001,149.09,0.14,985,2.5,99,0.7000000000000001 +2012,4,7,16,30,17,0.96,0.0708,0.68,0,0,0,0,16.6,0,0,0,0,0.267,97.79,137.36,0.14,985,2.4000000000000004,122,0.7000000000000001 +2012,4,7,17,30,16.5,0.9500000000000001,0.068,0.68,0,0,0,0,16.5,0,0,0,0,0.267,100,124.54,0.14,985,2.3000000000000003,135,0.7000000000000001 +2012,4,7,18,30,16,0.9400000000000001,0.0651,0.68,0,0,0,0,16,0,0,0,0,0.267,100,111.32000000000001,0.14,986,2.2,140,0.7000000000000001 +2012,4,7,19,30,16.1,0.93,0.061700000000000005,0.68,0,0,0,0,16.1,0,0,0,0,0.267,100,98.01,0.14,986,2.1,142,0.7000000000000001 +2012,4,7,20,30,17.5,0.92,0.056400000000000006,0.68,29,342,61,0,16.5,29,342,0,61,0.267,93.81,84.66,0.14,987,2,142,1 +2012,4,7,21,30,20,0.9,0.0492,0.68,58,701,276,1,16.900000000000002,58,701,0,276,0.268,82.12,71.89,0.14,988,2,132,1.4000000000000001 +2012,4,7,22,30,22.1,0.88,0.042800000000000005,0.68,71,839,495,1,16.8,71,839,0,495,0.269,72.01,59.660000000000004,0.14,988,2.1,116,1.6 +2012,4,7,23,30,23,0.89,0.0388,0.68,77,909,678,1,16.5,77,909,0,678,0.27,66.87,48.61,0.14,988,2.1,111,1.7000000000000002 +2012,4,8,0,30,24.5,0.8200000000000001,0.0591,0.68,94,917,798,1,16.5,94,917,0,798,0.27,60.96,39.81,0.15,987,2.3000000000000003,99,1.7000000000000002 +2012,4,8,1,30,25.1,0.8300000000000001,0.056400000000000006,0.68,95,930,856,3,16.7,416,27,0,438,0.27,59.84,35.02,0.15,986,2.5,92,1.8 +2012,4,8,2,30,25.3,0.85,0.054200000000000005,0.68,93,927,844,3,17,468,43,0,503,0.27,60.08,35.9,0.15,985,2.6,85,1.9000000000000001 +2012,4,8,3,30,25.200000000000003,0.9,0.0373,0.68,80,924,766,3,17.2,466,91,0,534,0.27,61.25,42.11,0.15,984,2.6,80,1.9000000000000001 +2012,4,8,4,30,24.8,0.91,0.0397,0.68,75,879,619,1,17.3,75,879,0,619,0.27,63.1,51.74,0.15,984,2.7,77,2 +2012,4,8,5,30,23.900000000000002,0.88,0.042100000000000005,0.68,67,797,425,1,17.400000000000002,67,797,0,425,0.27,66.81,63.22,0.15,984,2.7,73,1.9000000000000001 +2012,4,8,6,30,22.5,0.9,0.0541,0.68,53,608,203,1,17.6,53,608,0,203,0.27,73.64,75.67,0.15,985,2.7,67,1.4000000000000001 +2012,4,8,7,30,20.900000000000002,0.9,0.0608,0.68,13,115,16,0,18.2,13,115,0,16,0.271,84.32000000000001,88.42,0.15,986,2.6,60,0.9 +2012,4,8,8,30,19.8,0.88,0.0604,0.68,0,0,0,1,18.2,0,0,0,0,0.272,90.31,102,0.15,986,2.6,56,0.7000000000000001 +2012,4,8,9,30,19,0.85,0.0626,0.68,0,0,0,0,18.1,0,0,0,0,0.272,94.39,115.32000000000001,0.15,986,2.5,49,0.7000000000000001 +2012,4,8,10,30,18.6,0.8300000000000001,0.0625,0.68,0,0,0,1,18,0,0,0,0,0.272,96.33,128.49,0.15,986,2.5,39,0.6000000000000001 +2012,4,8,11,30,18.2,0.81,0.059300000000000005,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.273,98.37,141.14000000000001,0.15,986,2.4000000000000004,29,0.6000000000000001 +2012,4,8,12,30,17.8,0.8,0.0568,0.68,0,0,0,0,17.8,0,0,0,0,0.273,100,152.36,0.15,985,2.4000000000000004,22,0.6000000000000001 +2012,4,8,13,30,17.5,0.8,0.056,0.68,0,0,0,0,17.5,0,0,0,0,0.273,100,159.52,0.15,985,2.4000000000000004,14,0.7000000000000001 +2012,4,8,14,30,17.2,0.8200000000000001,0.058600000000000006,0.68,0,0,0,0,17.2,0,0,1,0,0.272,100,158.11,0.15,984,2.4000000000000004,183,0.7000000000000001 +2012,4,8,15,30,17,0.86,0.0625,0.68,0,0,0,0,17,0,0,0,0,0.272,100,149.3,0.15,984,2.4000000000000004,350,0.7000000000000001 +2012,4,8,16,30,16.7,0.88,0.0636,0.68,0,0,0,0,16.7,0,0,1,0,0.272,100,137.5,0.15,984,2.5,332,0.7000000000000001 +2012,4,8,17,30,16.400000000000002,0.91,0.0654,0.68,0,0,0,0,16.400000000000002,0,0,1,0,0.271,100,124.65,0.15,984,2.5,314,0.7000000000000001 +2012,4,8,18,30,16,0.96,0.0692,0.68,0,0,0,0,16,0,0,1,0,0.271,100,111.42,0.15,984,2.6,300,0.7000000000000001 +2012,4,8,19,30,16,1.01,0.0712,0.68,0,0,0,0,16,0,0,0,0,0.27,100,98.12,0.15,984,2.6,285,0.7000000000000001 +2012,4,8,20,30,17.5,1.05,0.0717,0.68,29,299,56,1,16.6,29,299,0,56,0.269,94.43,84.78,0.15,985,2.6,277,1 +2012,4,8,21,30,20.1,1.08,0.0713,0.68,63,652,265,1,16.900000000000002,63,652,0,265,0.269,82.02,72.02,0.15,985,2.6,285,1.2000000000000002 +2012,4,8,22,30,22.400000000000002,1.11,0.0684,0.68,80,797,480,1,17,80,797,0,480,0.269,71.56,59.84,0.15,985,2.6,292,1.2000000000000002 +2012,4,8,23,30,23.400000000000002,1.1500000000000001,0.0641,0.68,88,871,662,1,17,88,871,0,662,0.268,67.2,48.84,0.15,985,2.6,293,1.1 +2012,4,9,0,30,25.700000000000003,1.1500000000000001,0.062200000000000005,0.68,93,907,787,0,16.900000000000002,93,907,0,787,0.268,58.19,40.1,0.15,984,2.7,290,1.1 +2012,4,9,1,30,26.900000000000002,1.17,0.0608,0.68,95,921,846,0,16.7,95,921,0,846,0.268,53.71,35.37,0.15,983,2.8000000000000003,288,1.2000000000000002 +2012,4,9,2,30,27.6,1.17,0.061200000000000004,0.68,95,914,831,0,16.6,95,914,0,831,0.267,51.230000000000004,36.28,0.15,982,3,287,1.2000000000000002 +2012,4,9,3,30,27.8,1.19,0.061200000000000004,0.68,91,892,749,0,16.6,91,892,0,749,0.267,50.61,42.46,0.15,981,3.1,285,1.2000000000000002 +2012,4,9,4,30,27.5,1.18,0.0684,0.68,87,839,603,0,16.7,87,839,0,603,0.266,51.89,52.050000000000004,0.15,981,3.2,281,1.1 +2012,4,9,5,30,26.700000000000003,1.17,0.0809,0.68,79,735,407,0,17.3,79,735,0,407,0.266,56.410000000000004,63.5,0.15,981,3.4000000000000004,281,1 +2012,4,9,6,30,24.900000000000002,1.16,0.0969,0.68,60,528,189,1,18,60,528,0,189,0.267,65.68,75.92,0.15,981,3.4000000000000004,292,0.7000000000000001 +2012,4,9,7,30,23,1.16,0.1107,0.68,11,58,13,0,19.1,11,58,0,13,0.267,78.82000000000001,88.64,0.15,981,3.5,292,0.6000000000000001 +2012,4,9,8,30,22,1.16,0.1155,0.68,0,0,0,3,18.8,0,0,0,0,0.268,82.05,102.23,0.15,982,3.5,274,0.7000000000000001 +2012,4,9,9,30,21.200000000000003,1.1500000000000001,0.11520000000000001,0.68,0,0,0,8,18.400000000000002,0,0,0,0,0.268,84.22,115.55,0.15,983,3.5,256,0.9 +2012,4,9,10,30,20.400000000000002,1.1300000000000001,0.11510000000000001,0.68,0,0,0,4,17.7,0,0,0,0,0.268,84.68,128.73,0.15,983,3.5,246,0.9 +2012,4,9,11,30,19.6,1.1,0.1182,0.68,0,0,0,0,17.1,0,0,0,0,0.268,85.62,141.4,0.15,983,3.5,245,0.9 +2012,4,9,12,30,19,1.07,0.1213,0.68,0,0,0,0,16.7,0,0,0,0,0.267,86.4,152.68,0.15,983,3.5,246,0.9 +2012,4,9,13,30,18.6,1.04,0.11750000000000001,0.68,0,0,0,0,16.3,0,0,0,0,0.267,86.27,159.89000000000001,0.15,983,3.5,249,0.8 +2012,4,9,14,30,18,1.01,0.1082,0.68,0,0,0,0,15.700000000000001,0,0,1,0,0.266,86.57000000000001,158.42000000000002,0.15,982,3.4000000000000004,251,0.8 +2012,4,9,15,30,17.5,0.99,0.10260000000000001,0.68,0,0,0,0,15,0,0,0,0,0.266,85.55,149.51,0.15,982,3.3000000000000003,251,0.7000000000000001 +2012,4,9,16,30,17.2,0.97,0.10160000000000001,0.68,0,0,0,0,14.3,0,0,0,0,0.266,82.89,137.65,0.15,982,3.2,247,0.8 +2012,4,9,17,30,16.8,0.96,0.0989,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.267,79.11,124.77,0.15,982,3,241,0.8 +2012,4,9,18,30,16.3,0.9500000000000001,0.0971,0.68,0,0,0,0,12.200000000000001,0,0,0,0,0.267,76.68,111.53,0.15,983,2.8000000000000003,234,0.9 +2012,4,9,19,30,16.1,0.9500000000000001,0.0946,0.68,0,0,0,0,11.5,0,0,0,0,0.267,74.02,98.22,0.15,984,2.6,232,1 +2012,4,9,20,30,16.900000000000002,0.93,0.0922,0.68,31,258,54,1,11.3,31,258,0,54,0.267,69.49,84.89,0.15,985,2.3000000000000003,227,1.4000000000000001 +2012,4,9,21,30,18.8,0.93,0.08560000000000001,0.68,69,637,264,1,10.9,69,637,0,264,0.268,60.29,72.16,0.15,986,2.1,210,1.8 +2012,4,9,22,30,20.900000000000002,0.92,0.07640000000000001,0.68,84,803,486,1,11.5,84,803,0,486,0.269,54.99,60.01,0.15,986,1.8,197,1.8 +2012,4,9,23,30,22,0.93,0.0668,0.68,91,887,673,0,12.100000000000001,91,887,0,673,0.269,53.46,49.07,0.15,986,1.7000000000000002,195,1.6 +2012,4,10,0,30,24.200000000000003,0.92,0.0563,0.68,92,939,808,0,12,92,939,0,808,0.268,46.53,40.39,0.15,985,1.5,200,1.3 +2012,4,10,1,30,25.200000000000003,0.92,0.0517,0.68,92,964,875,0,11.4,92,964,0,875,0.268,42.07,35.730000000000004,0.15,984,1.3,196,1.2000000000000002 +2012,4,10,2,30,25.700000000000003,0.91,0.048600000000000004,0.68,90,964,864,0,10.600000000000001,90,964,0,864,0.267,38.65,36.65,0.15,984,1.3,180,1.1 +2012,4,10,3,30,25.700000000000003,0.8200000000000001,0.0505,0.68,89,942,780,0,9.9,89,942,0,780,0.267,36.84,42.800000000000004,0.15,984,1.3,155,1.1 +2012,4,10,4,30,25.1,0.79,0.0523,0.68,83,897,631,0,9.4,83,897,0,631,0.266,37.04,52.35,0.15,984,1.3,132,1.4000000000000001 +2012,4,10,5,30,23.700000000000003,0.75,0.0567,0.68,73,807,430,1,9.4,73,807,0,430,0.266,40.14,63.77,0.15,984,1.3,121,1.8 +2012,4,10,6,30,21.1,0.71,0.0616,0.68,55,612,202,1,9.8,55,612,0,202,0.266,48.39,76.17,0.15,986,1.4000000000000001,120,2.1 +2012,4,10,7,30,18.5,0.6900000000000001,0.06380000000000001,0.68,12,84,14,0,10.4,12,84,0,14,0.267,59.38,88.84,0.15,987,1.4000000000000001,126,1.9000000000000001 +2012,4,10,8,30,16.900000000000002,0.7000000000000001,0.0618,0.68,0,0,0,0,10.200000000000001,0,0,0,0,0.267,64.68,102.45,0.15,988,1.4000000000000001,131,1.9000000000000001 +2012,4,10,9,30,15.8,0.71,0.059300000000000005,0.68,0,0,0,0,10.200000000000001,0,0,0,0,0.267,69.13,115.78,0.15,990,1.4000000000000001,138,1.8 +2012,4,10,10,30,14.700000000000001,0.7000000000000001,0.0589,0.68,0,0,0,0,10.3,0,0,0,0,0.267,75.03,128.97,0.15,990,1.4000000000000001,148,1.5 +2012,4,10,11,30,14.100000000000001,0.63,0.0649,0.68,0,0,0,1,10.5,0,0,0,0,0.266,78.84,141.67000000000002,0.15,991,1.5,155,1.3 +2012,4,10,12,30,13.600000000000001,0.53,0.0757,0.68,0,0,0,0,10.4,0,0,0,0,0.265,81.16,153,0.15,991,1.5,158,1.2000000000000002 +2012,4,10,13,30,13.4,0.45,0.08600000000000001,0.68,0,0,0,0,10.3,0,0,0,0,0.265,81.63,160.27,0.15,990,1.5,159,1.1 +2012,4,10,14,30,13.100000000000001,0.39,0.094,0.68,0,0,0,0,10.3,0,0,1,0,0.264,83.28,158.73,0.15,990,1.6,160,1.1 +2012,4,10,15,30,12.700000000000001,0.35000000000000003,0.0994,0.68,0,0,0,0,10.4,0,0,0,0,0.264,86.06,149.71,0.15,990,1.6,162,1 +2012,4,10,16,30,12.3,0.31,0.10650000000000001,0.68,0,0,0,0,10.5,0,0,0,0,0.264,88.63,137.79,0.15,990,1.6,164,1 +2012,4,10,17,30,12,0.28,0.1131,0.68,0,0,0,0,10.5,0,0,0,0,0.264,90.26,124.88000000000001,0.15,990,1.6,166,1 +2012,4,10,18,30,11.8,0.27,0.1173,0.68,0,0,0,0,10.5,0,0,0,0,0.264,91.47,111.63,0.15,990,1.6,167,1 +2012,4,10,19,30,12,0.27,0.11710000000000001,0.68,0,0,0,1,10.5,0,0,0,0,0.263,90.66,98.33,0.15,991,1.6,167,1.1 +2012,4,10,20,30,13.4,0.27,0.1168,0.68,36,177,51,1,10.8,36,177,0,51,0.262,84.52,85,0.15,992,1.6,167,1.6 +2012,4,10,21,30,15.700000000000001,0.28,0.1163,0.68,84,572,257,1,11.200000000000001,84,572,0,257,0.262,74.61,72.3,0.15,992,1.6,161,2.3000000000000003 +2012,4,10,22,30,17.900000000000002,0.29,0.113,0.68,106,740,474,1,11.8,106,740,0,474,0.261,67.4,60.19,0.15,993,1.7000000000000002,150,2.7 +2012,4,10,23,30,18.8,0.3,0.1087,0.68,118,828,657,1,12.100000000000001,118,828,0,657,0.261,65.2,49.29,0.15,993,1.7000000000000002,146,2.9000000000000004 +2012,4,11,0,30,20.5,0.45,0.0785,0.68,107,901,790,1,12.100000000000001,107,901,0,790,0.26,58.72,40.69,0.15,992,1.8,141,2.9000000000000004 +2012,4,11,1,30,21.200000000000003,0.45,0.0804,0.68,112,912,848,1,12.100000000000001,112,912,0,848,0.259,55.980000000000004,36.09,0.15,991,1.9000000000000001,140,2.8000000000000003 +2012,4,11,2,30,21.400000000000002,0.45,0.0911,0.68,117,896,832,1,12.100000000000001,117,896,0,832,0.258,55.25,37.03,0.15,991,2,139,2.8000000000000003 +2012,4,11,3,30,21.200000000000003,0.49,0.09230000000000001,0.68,112,873,749,1,12,112,873,0,749,0.257,55.83,43.14,0.15,990,2,137,2.7 +2012,4,11,4,30,20.8,0.49,0.0946,0.68,104,821,602,1,12,104,821,0,602,0.257,57,52.65,0.15,990,2,136,2.7 +2012,4,11,5,30,20.1,0.45,0.094,0.68,90,724,407,1,12,90,724,0,407,0.256,59.57,64.03,0.15,991,2,136,2.5 +2012,4,11,6,30,18.8,0.42,0.0936,0.68,64,520,186,1,12,64,520,0,186,0.257,64.58,76.41,0.15,991,2,136,1.9000000000000001 +2012,4,11,7,30,17.2,0.4,0.08510000000000001,0.68,0,0,0,1,12.200000000000001,0,0,0,0,0.257,72.22,89.04,0.15,992,1.9000000000000001,139,1.3 +2012,4,11,8,30,16.2,0.37,0.08070000000000001,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.258,76.67,102.67,0.15,993,1.9000000000000001,143,1.2000000000000002 +2012,4,11,9,30,15.600000000000001,0.35000000000000003,0.082,0.68,0,0,0,0,12,0,0,0,0,0.258,79.08,116,0.15,993,1.9000000000000001,146,1.3 +2012,4,11,10,30,15.100000000000001,0.34,0.0862,0.68,0,0,0,0,12,0,0,0,0,0.259,81.57000000000001,129.2,0.15,994,1.9000000000000001,148,1.3 +2012,4,11,11,30,14.600000000000001,0.32,0.0913,0.68,0,0,0,0,12,0,0,0,0,0.258,84.67,141.93,0.15,994,1.9000000000000001,150,1.3 +2012,4,11,12,30,14.100000000000001,0.31,0.09960000000000001,0.68,0,0,0,0,12.200000000000001,0,0,0,0,0.258,88.16,153.31,0.15,994,1.9000000000000001,152,1.2000000000000002 +2012,4,11,13,30,13.700000000000001,0.29,0.10880000000000001,0.68,0,0,0,0,12.3,0,0,0,0,0.257,91.14,160.64000000000001,0.15,993,1.9000000000000001,155,1.1 +2012,4,11,14,30,13.200000000000001,0.29,0.1134,0.68,0,0,0,0,12.4,0,0,1,0,0.257,94.68,159.03,0.15,993,1.9000000000000001,160,1 +2012,4,11,15,30,12.8,0.28,0.11270000000000001,0.68,0,0,0,0,12.4,0,0,0,0,0.256,97.26,149.9,0.15,993,1.9000000000000001,165,1 +2012,4,11,16,30,12.4,0.27,0.1124,0.68,0,0,0,0,12.200000000000001,0,0,0,0,0.257,98.96000000000001,137.93,0.15,993,1.9000000000000001,168,1 +2012,4,11,17,30,12.200000000000001,0.27,0.112,0.68,0,0,0,1,12.100000000000001,0,0,0,0,0.257,99.21000000000001,124.99000000000001,0.15,993,1.8,167,1 +2012,4,11,18,30,12,0.27,0.11280000000000001,0.68,0,0,0,1,12,0,0,0,0,0.257,99.84,111.74000000000001,0.15,993,1.8,167,1 +2012,4,11,19,30,12.100000000000001,0.28,0.10880000000000001,0.68,0,0,0,1,11.9,0,0,0,0,0.257,98.51,98.43,0.15,994,1.8,169,1.1 +2012,4,11,20,30,13.3,0.29,0.0976,0.68,34,202,51,1,11.9,34,202,0,51,0.257,91.38,85.12,0.15,994,1.7000000000000002,168,1.6 +2012,4,11,21,30,15.5,0.31,0.0863,0.68,73,617,259,1,12.4,73,617,0,259,0.257,81.75,72.44,0.15,995,1.7000000000000002,158,2.2 +2012,4,11,22,30,17.8,0.31,0.08070000000000001,0.68,91,781,478,1,12.9,91,781,0,478,0.257,72.91,60.36,0.15,995,1.7000000000000002,144,2.7 +2012,4,11,23,30,19,0.32,0.07490000000000001,0.68,100,865,661,1,13,100,865,0,661,0.257,68.13,49.52,0.15,995,1.7000000000000002,138,3 +2012,4,12,0,30,21,0.31,0.0734,0.68,106,904,789,1,12.700000000000001,106,904,0,789,0.257,59.14,40.980000000000004,0.15,994,1.7000000000000002,131,3.3000000000000003 +2012,4,12,1,30,21.6,0.33,0.0727,0.68,109,921,849,1,12.3,109,921,0,849,0.257,55.52,36.44,0.15,993,1.7000000000000002,128,3.4000000000000004 +2012,4,12,2,30,21.700000000000003,0.34,0.0699,0.68,106,918,836,1,12,106,918,0,836,0.257,54.2,37.4,0.15,993,1.8,127,3.4000000000000004 +2012,4,12,3,30,21.700000000000003,0.36,0.0731,0.68,104,893,752,1,11.9,104,893,0,752,0.257,53.63,43.49,0.15,992,1.8,126,3.4000000000000004 +2012,4,12,4,30,21.200000000000003,0.37,0.0714,0.68,94,847,605,3,11.9,221,24,0,235,0.258,55.2,52.95,0.15,993,1.8,126,3.1 +2012,4,12,5,30,20.400000000000002,0.38,0.0675,0.68,80,764,411,1,11.9,80,764,0,411,0.26,58.28,64.3,0.15,993,1.7000000000000002,127,2.7 +2012,4,12,6,30,19.1,0.41000000000000003,0.06380000000000001,0.68,56,576,189,1,12.3,56,576,0,189,0.261,64.66,76.65,0.15,994,1.7000000000000002,130,1.9000000000000001 +2012,4,12,7,30,17.5,0.43,0.059800000000000006,0.68,0,0,0,3,12.8,0,0,3,0,0.263,73.85000000000001,89.24,0.15,994,1.7000000000000002,136,1.2000000000000002 +2012,4,12,8,30,16.400000000000002,0.43,0.059800000000000006,0.68,0,0,0,0,12.9,0,0,0,0,0.265,79.97,102.89,0.15,995,1.8,142,1.1 +2012,4,12,9,30,15.8,0.41000000000000003,0.0637,0.68,0,0,0,0,13,0,0,0,0,0.265,83.57000000000001,116.22,0.15,995,1.8,145,1 +2012,4,12,10,30,15.3,0.39,0.0669,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.265,87.10000000000001,129.43,0.15,995,1.8,146,1 +2012,4,12,11,30,15.100000000000001,0.38,0.0693,0.68,0,0,0,0,13.3,0,0,0,0,0.265,88.86,142.19,0.15,995,1.8,146,1 +2012,4,12,12,30,14.9,0.38,0.0694,0.68,0,0,0,1,13.4,0,0,0,0,0.264,90.86,153.62,0.15,995,1.8,147,1 +2012,4,12,13,30,14.600000000000001,0.37,0.0704,0.68,0,0,0,3,13.5,0,0,0,0,0.263,93.36,161.01,0.15,995,1.8,149,0.9 +2012,4,12,14,30,14.200000000000001,0.34,0.0733,0.68,0,0,0,3,13.5,0,0,1,0,0.262,95.71000000000001,159.34,0.15,994,1.8,152,0.9 +2012,4,12,15,30,14,0.32,0.0737,0.68,0,0,0,0,13.5,0,0,0,0,0.263,96.59,150.1,0.15,994,1.8,154,0.9 +2012,4,12,16,30,13.8,0.33,0.06860000000000001,0.68,0,0,0,3,13.5,0,0,0,0,0.263,97.81,138.06,0.15,994,1.7000000000000002,153,0.9 +2012,4,12,17,30,13.5,0.34,0.0639,0.68,0,0,0,1,13.3,0,0,0,0,0.264,98.45,125.10000000000001,0.15,993,1.7000000000000002,151,0.9 +2012,4,12,18,30,13.5,0.33,0.0645,0.68,0,0,0,3,13.100000000000001,0,0,0,0,0.265,97.69,111.84,0.15,993,1.7000000000000002,149,0.9 +2012,4,12,19,30,13.9,0.33,0.0646,0.68,0,0,0,3,13.3,0,0,0,0,0.266,96.10000000000001,98.54,0.15,994,1.7000000000000002,148,0.9 +2012,4,12,20,30,15.100000000000001,0.33,0.064,0.68,30,268,52,3,13.600000000000001,5,0,3,5,0.266,90.92,85.24,0.15,994,1.7000000000000002,146,1.4000000000000001 +2012,4,12,21,30,17,0.33,0.0646,0.68,65,650,260,3,14.600000000000001,22,0,0,22,0.267,85.56,72.59,0.15,995,1.8,139,2 +2012,4,12,22,30,18.8,0.35000000000000003,0.06520000000000001,0.68,83,799,476,3,15.100000000000001,285,202,0,384,0.266,79.33,60.54,0.15,995,1.8,128,2.3000000000000003 +2012,4,12,23,30,19.6,0.38,0.0649,0.68,94,873,658,1,14.9,94,873,0,658,0.266,74.45,49.75,0.15,995,1.8,123,2.5 +2012,4,13,0,30,21.5,0.31,0.08650000000000001,0.68,113,883,777,3,14.200000000000001,222,26,0,242,0.266,63.1,41.27,0.15,994,1.9000000000000001,114,2.9000000000000004 +2012,4,13,1,30,22.1,0.35000000000000003,0.08,0.68,112,907,838,1,13.600000000000001,112,907,0,838,0.265,58.42,36.79,0.15,994,1.9000000000000001,112,2.9000000000000004 +2012,4,13,2,30,22.200000000000003,0.36,0.07100000000000001,0.68,106,913,828,1,13.3,106,913,0,828,0.265,56.980000000000004,37.76,0.15,993,1.9000000000000001,110,2.9000000000000004 +2012,4,13,3,30,22.1,0.48,0.06420000000000001,0.68,97,900,747,1,13.200000000000001,97,900,0,747,0.265,56.94,43.82,0.15,993,1.9000000000000001,108,2.8000000000000003 +2012,4,13,4,30,21.8,0.49,0.061500000000000006,0.68,88,856,601,1,13.200000000000001,88,856,0,601,0.265,58.120000000000005,53.25,0.15,993,1.9000000000000001,107,2.7 +2012,4,13,5,30,21.200000000000003,0.45,0.0609,0.68,76,766,405,8,13.4,238,131,0,295,0.264,61.14,64.57000000000001,0.15,993,1.9000000000000001,107,2.4000000000000004 +2012,4,13,6,30,19.8,0.44,0.06470000000000001,0.68,55,562,183,8,13.9,103,89,3,123,0.265,68.85000000000001,76.89,0.15,993,2,111,1.6 +2012,4,13,7,30,18.400000000000002,0.41000000000000003,0.0699,0.68,0,0,0,4,14.700000000000001,0,0,3,0,0.265,79,89.44,0.15,994,2.1,117,1 +2012,4,13,8,30,17.7,0.37,0.0762,0.68,0,0,0,3,15,0,0,0,0,0.266,84.36,103.11,0.15,994,2.2,125,0.9 +2012,4,13,9,30,17.400000000000002,0.35000000000000003,0.08270000000000001,0.68,0,0,0,1,15.4,0,0,0,0,0.266,87.83,116.43,0.15,994,2.2,131,0.9 +2012,4,13,10,30,17.1,0.35000000000000003,0.0868,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.266,91.48,129.65,0.15,994,2.3000000000000003,134,0.9 +2012,4,13,11,30,16.8,0.34,0.09050000000000001,0.68,0,0,0,0,16,0,0,0,0,0.266,94.88,142.44,0.15,994,2.4000000000000004,134,0.9 +2012,4,13,12,30,16.7,0.39,0.09770000000000001,0.68,0,0,0,1,16.2,0,0,0,0,0.266,96.62,153.93,0.15,993,2.4000000000000004,133,0.8 +2012,4,13,13,30,16.5,0.41000000000000003,0.09720000000000001,0.68,0,0,0,1,16.3,0,0,0,0,0.266,98.61,161.38,0.15,993,2.5,131,0.8 +2012,4,13,14,30,16.5,0.39,0.0912,0.68,0,0,0,1,16.3,0,0,1,0,0.266,98.95,159.63,0.15,992,2.5,128,0.8 +2012,4,13,15,30,16.400000000000002,0.44,0.0983,0.68,0,0,0,3,16.400000000000002,0,0,0,0,0.265,99.75,150.29,0.15,992,2.6,125,0.8 +2012,4,13,16,30,16.400000000000002,0.43,0.0974,0.68,0,0,0,1,16.400000000000002,0,0,0,0,0.265,99.85000000000001,138.20000000000002,0.15,991,2.6,123,0.8 +2012,4,13,17,30,16.400000000000002,0.38,0.0912,0.68,0,0,0,3,16.400000000000002,0,0,0,0,0.265,99.96000000000001,125.21000000000001,0.15,992,2.7,124,0.8 +2012,4,13,18,30,16.3,0.43,0.098,0.68,0,0,0,1,16.3,0,0,0,0,0.265,100,111.94,0.15,992,2.7,128,0.7000000000000001 +2012,4,13,19,30,16.400000000000002,0.42,0.0954,0.68,0,0,0,1,16.3,0,0,0,0,0.265,99.59,98.65,0.15,993,2.7,133,0.7000000000000001 +2012,4,13,20,30,17.2,0.38,0.09090000000000001,0.68,30,195,46,1,16.5,30,195,0,46,0.264,95.87,85.35000000000001,0.15,993,2.8000000000000003,135,1.1 +2012,4,13,21,30,18.400000000000002,0.42,0.0937,0.68,72,579,244,1,17.2,72,579,0,244,0.265,92.74,72.73,0.15,994,2.8000000000000003,129,1.6 +2012,4,13,22,30,19.700000000000003,0.44,0.0823,0.68,88,753,457,1,17.7,88,753,0,457,0.265,88.10000000000001,60.72,0.15,993,2.8000000000000003,118,2 +2012,4,13,23,30,20.400000000000002,0.45,0.07150000000000001,0.68,95,841,636,1,17.6,95,841,0,636,0.265,84.21000000000001,49.980000000000004,0.15,993,2.8000000000000003,112,2.2 +2012,4,14,0,30,22.3,0.59,0.0707,0.68,100,883,760,1,17.1,100,883,0,760,0.265,72.23,41.57,0.15,992,2.8000000000000003,103,2.5 +2012,4,14,1,30,22.700000000000003,0.63,0.0698,0.68,102,899,819,3,16.6,413,29,0,436,0.265,68.5,37.14,0.15,991,2.8000000000000003,99,2.6 +2012,4,14,2,30,22.6,0.61,0.06420000000000001,0.68,99,903,809,1,16.6,99,903,0,809,0.265,68.77,38.13,0.15,990,2.7,98,2.5 +2012,4,14,3,30,22.400000000000002,0.48,0.0883,0.68,108,855,721,3,16.7,180,27,0,199,0.264,70.37,44.160000000000004,0.15,990,2.7,98,2.4000000000000004 +2012,4,14,4,30,22.1,0.56,0.0765,0.68,93,819,580,3,16.900000000000002,342,76,0,388,0.264,72.57000000000001,53.550000000000004,0.15,990,2.7,99,2.3000000000000003 +2012,4,14,5,30,21.5,0.59,0.0654,0.68,75,739,389,3,17.1,169,26,0,180,0.264,75.9,64.83,0.15,990,2.8000000000000003,99,1.9000000000000001 +2012,4,14,6,30,20.400000000000002,0.67,0.0639,0.68,53,548,175,1,17.400000000000002,53,548,0,175,0.264,82.87,77.13,0.15,990,2.8000000000000003,101,1.2000000000000002 +2012,4,14,7,30,19.1,0.6900000000000001,0.058,0.68,0,0,0,0,17.6,0,0,0,0,0.265,91.24,89.63,0.15,991,2.8000000000000003,105,0.8 +2012,4,14,8,30,18.3,0.68,0.051500000000000004,0.68,0,0,0,0,17.400000000000002,0,0,0,0,0.265,94.75,103.32000000000001,0.15,991,2.7,109,0.7000000000000001 +2012,4,14,9,30,17.7,0.68,0.046400000000000004,0.68,0,0,0,0,17.3,0,0,0,0,0.265,97.63,116.64,0.15,991,2.7,112,0.7000000000000001 +2012,4,14,10,30,17.3,0.67,0.046,0.68,0,0,0,0,17.2,0,0,0,0,0.265,99.51,129.88,0.15,991,2.7,116,0.7000000000000001 +2012,4,14,11,30,17.1,0.65,0.0466,0.68,0,0,0,3,17.1,0,0,0,0,0.265,100,142.69,0.15,991,2.7,121,0.7000000000000001 +2012,4,14,12,30,16.900000000000002,0.65,0.0504,0.68,0,0,0,1,16.900000000000002,0,0,0,0,0.266,100,154.23,0.15,991,2.7,125,0.6000000000000001 +2012,4,14,13,30,16.8,0.65,0.0524,0.68,0,0,0,0,16.8,0,0,0,0,0.266,100,161.74,0.15,990,2.7,127,0.6000000000000001 +2012,4,14,14,30,16.7,0.61,0.053200000000000004,0.68,0,0,0,0,16.7,0,0,1,0,0.266,100,159.93,0.15,990,2.8000000000000003,133,0.6000000000000001 +2012,4,14,15,30,16.6,0.67,0.065,0.68,0,0,0,0,16.6,0,0,0,0,0.266,100,150.47,0.15,989,2.8000000000000003,138,0.6000000000000001 +2012,4,14,16,30,16.6,0.67,0.0663,0.68,0,0,0,1,16.6,0,0,0,0,0.266,100,138.33,0.15,989,2.8000000000000003,141,0.6000000000000001 +2012,4,14,17,30,16.5,0.62,0.058100000000000006,0.68,0,0,0,3,16.5,0,0,0,0,0.266,100,125.32000000000001,0.15,989,2.8000000000000003,139,0.7000000000000001 +2012,4,14,18,30,16.400000000000002,0.68,0.064,0.68,0,0,0,3,16.400000000000002,0,0,0,0,0.266,100,112.04,0.15,990,2.8000000000000003,136,0.7000000000000001 +2012,4,14,19,30,16.5,0.67,0.0609,0.68,0,0,0,1,16.5,0,0,0,0,0.266,100,98.75,0.15,990,2.8000000000000003,136,0.7000000000000001 +2012,4,14,20,30,17.400000000000002,0.61,0.0536,0.68,26,277,48,1,17,26,277,0,48,0.266,97.43,85.47,0.15,991,2.8000000000000003,139,1.1 +2012,4,14,21,30,18.6,0.66,0.0609,0.68,60,636,248,3,17.8,47,1,0,47,0.267,95.39,72.87,0.15,991,2.9000000000000004,140,1.4000000000000001 +2012,4,14,22,30,19.900000000000002,0.66,0.0584,0.68,77,784,458,1,18.5,77,784,0,458,0.268,91.87,60.89,0.15,991,2.9000000000000004,131,1.5 +2012,4,14,23,30,20.5,0.7000000000000001,0.0516,0.68,83,863,636,1,18.7,83,863,0,636,0.268,89.49,50.2,0.15,991,2.9000000000000004,123,1.6 +2012,4,15,0,30,22.400000000000002,0.53,0.0869,0.68,108,860,749,1,18.400000000000002,108,860,0,749,0.268,78.25,41.86,0.15,990,3,107,1.7000000000000002 +2012,4,15,1,30,23.3,0.62,0.0782,0.68,106,886,809,1,18.2,106,886,0,809,0.268,73.16,37.49,0.15,989,3,100,1.9000000000000001 +2012,4,15,2,30,23.8,0.64,0.0682,0.68,100,890,797,1,18.1,100,890,0,797,0.268,70.33,38.49,0.15,988,3.1,93,2.1 +2012,4,15,3,30,23.6,0.74,0.0671,0.68,95,871,716,1,18,95,871,0,716,0.267,71,44.49,0.15,987,3.1,88,2.2 +2012,4,15,4,30,23,0.77,0.0637,0.68,85,827,573,3,18.1,109,22,0,122,0.267,73.74,53.84,0.15,987,3.1,85,2.2 +2012,4,15,5,30,22.200000000000003,0.74,0.0524,0.68,69,751,385,1,18.1,69,751,0,385,0.267,77.5,65.09,0.15,987,3.1,83,1.9000000000000001 +2012,4,15,6,30,20.8,0.79,0.055900000000000005,0.68,50,556,171,1,18.2,50,556,0,171,0.267,85.02,77.36,0.15,988,3,81,1.3 +2012,4,15,7,30,19.400000000000002,0.8,0.0528,0.68,0,0,0,3,18.400000000000002,0,0,3,0,0.267,93.75,89.82000000000001,0.15,988,3,82,0.8 +2012,4,15,8,30,18.6,0.79,0.0461,0.68,0,0,0,3,18.2,0,0,0,0,0.267,97.46000000000001,103.53,0.15,989,3,87,0.6000000000000001 +2012,4,15,9,30,18.2,0.77,0.039900000000000005,0.68,0,0,0,3,18.1,0,0,0,0,0.266,99.09,116.85000000000001,0.15,989,3,91,0.6000000000000001 +2012,4,15,10,30,17.900000000000002,0.74,0.039,0.68,0,0,0,3,17.900000000000002,0,0,0,0,0.266,100,130.1,0.15,989,3,95,0.6000000000000001 +2012,4,15,11,30,17.8,0.74,0.039400000000000004,0.68,0,0,0,1,17.8,0,0,0,0,0.267,100,142.93,0.15,989,3,98,0.6000000000000001 +2012,4,15,12,30,17.7,0.78,0.0426,0.68,0,0,0,3,17.7,0,0,0,0,0.267,100,154.53,0.15,989,3,101,0.5 +2012,4,15,13,30,17.5,0.81,0.0417,0.68,0,0,0,8,17.5,0,0,0,0,0.266,100,162.1,0.15,989,3,106,0.5 +2012,4,15,14,30,17.400000000000002,0.81,0.0385,0.68,0,0,0,8,17.400000000000002,0,0,1,0,0.266,100,160.22,0.15,988,2.9000000000000004,109,0.5 +2012,4,15,15,30,17.3,0.87,0.0434,0.68,0,0,0,7,17.3,0,0,0,0,0.266,100,150.65,0.15,987,2.9000000000000004,114,0.6000000000000001 +2012,4,15,16,30,17.2,0.9,0.046900000000000004,0.68,0,0,0,7,17.2,0,0,0,0,0.266,100,138.46,0.15,987,2.9000000000000004,121,0.6000000000000001 +2012,4,15,17,30,17.1,0.93,0.0477,0.68,0,0,0,7,17.1,0,0,0,0,0.266,100,125.43,0.15,987,2.9000000000000004,126,0.6000000000000001 +2012,4,15,18,30,17,0.9500000000000001,0.0536,0.68,0,0,0,7,17,0,0,0,0,0.267,100,112.14,0.15,987,2.9000000000000004,129,0.6000000000000001 +2012,4,15,19,30,17.1,0.9400000000000001,0.0557,0.68,0,0,0,7,17.1,0,0,0,0,0.268,99.87,98.86,0.15,988,2.8000000000000003,134,0.5 +2012,4,15,20,30,17.900000000000002,0.92,0.054,0.68,25,285,47,7,17.2,29,85,3,36,0.269,95.8,85.59,0.15,988,2.8000000000000003,141,0.7000000000000001 +2012,4,15,21,30,19.200000000000003,0.9,0.052000000000000005,0.68,57,655,248,7,17.8,147,156,0,193,0.27,91.87,73.01,0.15,989,2.8000000000000003,137,1 +2012,4,15,22,30,20.6,0.92,0.044500000000000005,0.68,70,806,459,8,18.2,280,195,0,375,0.27,86.26,61.07,0.15,989,2.8000000000000003,123,1.1 +2012,4,15,23,30,21.3,0.9500000000000001,0.0408,0.68,77,878,636,1,18,77,878,0,636,0.271,81.38,50.43,0.15,989,2.8000000000000003,115,1.1 +2012,4,16,0,30,22.8,0.93,0.045000000000000005,0.68,84,906,756,8,17.400000000000002,478,149,0,588,0.271,71.82000000000001,42.15,0.15,988,2.9000000000000004,99,1.4000000000000001 +2012,4,16,1,30,23.3,0.9500000000000001,0.045000000000000005,0.68,87,920,813,8,17,503,96,0,580,0.271,67.93,37.84,0.15,987,2.9000000000000004,91,1.5 +2012,4,16,2,30,23.5,0.93,0.044700000000000004,0.68,86,917,800,8,16.900000000000002,450,47,0,486,0.272,66.34,38.85,0.15,986,2.9000000000000004,84,1.7000000000000002 +2012,4,16,3,30,23.400000000000002,0.71,0.1039,0.68,112,835,704,7,16.8,390,42,0,419,0.272,66.57000000000001,44.83,0.15,985,3,80,1.8 +2012,4,16,4,30,23.1,0.71,0.1063,0.68,104,779,560,7,16.8,294,37,0,315,0.271,67.77,54.14,0.15,985,3,78,1.8 +2012,4,16,5,30,22.400000000000002,0.71,0.10700000000000001,0.68,88,675,370,7,16.900000000000002,176,29,0,188,0.272,70.88,65.35,0.15,985,3.1,78,1.6 +2012,4,16,6,30,21,0.72,0.1092,0.68,61,456,159,6,17.2,70,12,3,73,0.272,78.67,77.60000000000001,0.15,985,3.1,80,1.1 +2012,4,16,7,30,19.5,0.73,0.10880000000000001,0.68,0,0,0,8,17.8,0,0,0,0,0.273,89.94,90.01,0.15,986,3.1,82,0.7000000000000001 +2012,4,16,8,30,18.6,0.71,0.1076,0.68,0,0,0,1,17.8,0,0,0,0,0.274,94.93,103.74000000000001,0.15,986,3.1,84,0.6000000000000001 +2012,4,16,9,30,18,0.67,0.10840000000000001,0.68,0,0,0,1,17.8,0,0,0,0,0.274,98.83,117.06,0.15,986,3.1,89,0.6000000000000001 +2012,4,16,10,30,17.6,0.63,0.10890000000000001,0.68,0,0,0,0,17.6,0,0,0,0,0.275,100,130.31,0.15,987,3,94,0.6000000000000001 +2012,4,16,11,30,17.3,0.58,0.10640000000000001,0.68,0,0,0,0,17.3,0,0,0,0,0.275,100,143.17000000000002,0.15,986,3,99,0.6000000000000001 +2012,4,16,12,30,17.1,0.55,0.10450000000000001,0.68,0,0,0,0,17.1,0,0,0,0,0.276,100,154.82,0.15,986,3.1,105,0.7000000000000001 +2012,4,16,13,30,17,0.52,0.1017,0.68,0,0,0,1,17,0,0,0,0,0.277,100,162.46,0.15,986,3.1,111,0.7000000000000001 +2012,4,16,14,30,17,0.5,0.09910000000000001,0.68,0,0,0,1,17,0,0,1,0,0.278,100,160.5,0.15,985,3.2,114,0.7000000000000001 +2012,4,16,15,30,17,0.5,0.1063,0.68,0,0,0,1,17,0,0,0,0,0.278,100,150.83,0.15,985,3.3000000000000003,113,0.7000000000000001 +2012,4,16,16,30,17.1,0.5,0.11610000000000001,0.68,0,0,0,8,17.1,0,0,0,0,0.279,100,138.58,0.15,984,3.3000000000000003,112,0.7000000000000001 +2012,4,16,17,30,17.1,0.49,0.1182,0.68,0,0,0,1,17.1,0,0,0,0,0.281,100,125.53,0.15,984,3.4000000000000004,111,0.8 +2012,4,16,18,30,17.1,0.55,0.1312,0.68,0,0,0,1,17.1,0,0,0,0,0.28200000000000003,100,112.24000000000001,0.15,985,3.5,110,0.8 +2012,4,16,19,30,17.2,0.5700000000000001,0.1269,0.68,0,0,0,8,17.2,0,0,0,0,0.28300000000000003,100,98.96000000000001,0.15,985,3.5,109,0.8 +2012,4,16,20,30,17.6,0.55,0.1075,0.68,28,158,40,4,17.6,7,0,3,7,0.28300000000000003,99.83,85.7,0.15,985,3.5,107,1 +2012,4,16,21,30,18.2,0.62,0.10300000000000001,0.68,71,551,231,7,18,91,15,0,95,0.281,98.86,73.16,0.15,986,3.6,104,1.3 +2012,4,16,22,30,18.7,0.64,0.0946,0.68,90,723,438,8,18.400000000000002,223,35,0,240,0.28,98.11,61.25,0.15,986,3.6,100,1.4000000000000001 +2012,4,16,23,30,19,0.63,0.0849,0.68,98,811,613,7,18.7,307,31,0,326,0.278,98.08,50.660000000000004,0.15,986,3.6,99,1.4000000000000001 +2012,4,17,0,30,19.700000000000003,0.6900000000000001,0.08080000000000001,0.68,103,856,734,8,18.6,471,119,0,559,0.274,93.09,42.44,0.15,985,3.6,94,1.5 +2012,4,17,1,30,20,0.71,0.0815,0.68,106,871,791,1,18.1,106,871,0,791,0.27,89.01,38.18,0.15,984,3.6,100,1.5 +2012,4,17,2,30,20.1,0.68,0.084,0.68,106,864,776,1,17.8,106,864,0,776,0.268,86.88,39.2,0.15,983,3.7,112,1.4000000000000001 +2012,4,17,3,30,19.8,0.63,0.1134,0.68,116,811,689,1,17.900000000000002,116,811,0,689,0.267,88.92,45.15,0.15,983,3.7,125,1.4000000000000001 +2012,4,17,4,30,19.5,0.63,0.1293,0.68,113,740,544,1,18.1,113,740,0,544,0.268,91.86,54.42,0.15,983,3.7,136,1.3 +2012,4,17,5,30,19.1,0.59,0.1361,0.68,98,623,355,1,18.400000000000002,98,623,0,355,0.27,95.60000000000001,65.6,0.15,983,3.7,142,1.1 +2012,4,17,6,30,18.7,0.61,0.153,0.68,68,375,148,3,18.5,26,0,3,26,0.272,98.78,77.83,0.15,983,3.7,142,0.8 +2012,4,17,7,30,18.3,0.6,0.1547,0.68,0,0,0,1,18.3,0,0,0,0,0.273,100,90.18,0.15,984,3.7,139,0.7000000000000001 +2012,4,17,8,30,18.1,0.56,0.14020000000000002,0.68,0,0,0,1,18.1,0,0,0,0,0.275,100,103.94,0.15,984,3.6,136,0.8 +2012,4,17,9,30,17.900000000000002,0.6,0.14350000000000002,0.68,0,0,0,1,17.900000000000002,0,0,0,0,0.275,100,117.26,0.15,984,3.6,134,0.7000000000000001 +2012,4,17,10,30,17.8,0.61,0.1307,0.68,0,0,0,3,17.8,0,0,0,0,0.276,100,130.52,0.15,984,3.5,136,0.7000000000000001 +2012,4,17,11,30,17.5,0.59,0.0989,0.68,0,0,0,3,17.5,0,0,0,0,0.276,100,143.4,0.15,984,3.3000000000000003,138,0.7000000000000001 +2012,4,17,12,30,17.2,0.64,0.0818,0.68,0,0,0,4,17.2,0,0,0,0,0.276,100,155.11,0.15,984,3.3000000000000003,134,0.7000000000000001 +2012,4,17,13,30,17,0.67,0.0743,0.68,0,0,0,3,17,0,0,0,0,0.275,100,162.81,0.15,984,3.3000000000000003,127,0.6000000000000001 +2012,4,17,14,30,16.8,0.67,0.07300000000000001,0.68,0,0,0,3,16.8,0,0,1,0,0.275,100,160.78,0.15,984,3.2,130,0.5 +2012,4,17,15,30,16.6,0.72,0.0738,0.68,0,0,0,0,16.6,0,0,0,0,0.275,100,151.01,0.15,984,3.2,144,0.6000000000000001 +2012,4,17,16,30,16.3,0.75,0.0699,0.68,0,0,0,0,16.3,0,0,0,0,0.275,100,138.71,0.15,983,3.1,155,0.6000000000000001 +2012,4,17,17,30,16.2,0.75,0.063,0.68,0,0,0,0,16.2,0,0,0,0,0.275,100,125.64,0.15,983,3,160,0.6000000000000001 +2012,4,17,18,30,16,0.8,0.0659,0.68,0,0,0,0,16,0,0,0,0,0.275,100,112.34,0.15,983,3,164,0.6000000000000001 +2012,4,17,19,30,16.1,0.8,0.064,0.68,0,0,0,1,16.1,0,0,0,0,0.275,100,99.07000000000001,0.15,983,2.9000000000000004,167,0.6000000000000001 +2012,4,17,20,30,17,0.78,0.058,0.68,24,257,43,1,16.400000000000002,24,257,0,43,0.275,96,85.82000000000001,0.15,984,2.9000000000000004,165,0.9 +2012,4,17,21,30,18.7,0.8200000000000001,0.061200000000000004,0.68,59,633,241,1,17.1,59,633,0,241,0.274,90.41,73.3,0.15,984,2.8000000000000003,152,1.4000000000000001 +2012,4,17,22,30,20.400000000000002,0.86,0.0577,0.68,75,785,450,1,17.7,75,785,0,450,0.274,84.36,61.43,0.15,984,2.8000000000000003,140,1.5 +2012,4,17,23,30,21.3,0.87,0.0485,0.68,80,866,627,1,17.6,80,866,0,627,0.273,79.55,50.89,0.15,984,2.8000000000000003,137,1.6 +2012,4,18,0,30,23.1,0.64,0.058600000000000006,0.68,92,889,746,1,17.400000000000002,92,889,0,746,0.271,70.10000000000001,42.730000000000004,0.15,983,2.8000000000000003,130,1.5 +2012,4,18,1,30,23.700000000000003,0.66,0.054200000000000005,0.68,92,909,803,1,17.3,92,909,0,803,0.27,67.19,38.52,0.15,982,2.8000000000000003,125,1.6 +2012,4,18,2,30,24.1,0.68,0.0514,0.68,90,908,790,1,17.2,90,908,0,790,0.269,65.26,39.56,0.15,981,2.8000000000000003,122,1.6 +2012,4,18,3,30,24,0.76,0.0482,0.68,84,891,709,1,17,84,891,0,709,0.268,64.95,45.480000000000004,0.15,981,2.8000000000000003,121,1.7000000000000002 +2012,4,18,4,30,23.700000000000003,0.79,0.0465,0.68,77,847,566,1,16.8,77,847,0,566,0.267,65.32000000000001,54.71,0.15,981,2.8000000000000003,123,1.7000000000000002 +2012,4,18,5,30,23,0.79,0.044000000000000004,0.68,64,761,376,1,16.7,64,761,0,376,0.266,67.83,65.86,0.15,981,2.8000000000000003,125,1.5 +2012,4,18,6,30,21.6,0.8,0.0439,0.68,45,567,163,1,17.1,45,567,0,163,0.266,75.53,78.05,0.15,982,2.8000000000000003,129,1 +2012,4,18,7,30,19.900000000000002,0.79,0.0437,0.68,0,0,0,0,17.8,0,0,0,0,0.266,87.48,90.97,0.15,982,2.8000000000000003,137,0.6000000000000001 +2012,4,18,8,30,18.8,0.76,0.0412,0.68,0,0,0,0,17.6,0,0,0,0,0.266,92.78,104.14,0.15,983,2.8000000000000003,147,0.6000000000000001 +2012,4,18,9,30,18.2,0.74,0.0402,0.68,0,0,0,0,17.6,0,0,0,0,0.266,96.34,117.46000000000001,0.15,983,2.8000000000000003,159,0.6000000000000001 +2012,4,18,10,30,17.7,0.72,0.040100000000000004,0.68,0,0,0,0,17.7,0,0,0,0,0.265,99.79,130.73,0.15,984,2.7,170,0.6000000000000001 +2012,4,18,11,30,17.3,0.6900000000000001,0.0403,0.68,0,0,0,0,17.3,0,0,0,0,0.265,100,143.63,0.15,984,2.7,176,0.6000000000000001 +2012,4,18,12,30,17,0.72,0.043500000000000004,0.68,0,0,0,0,17,0,0,0,0,0.264,100,155.39000000000001,0.15,984,2.6,177,0.6000000000000001 +2012,4,18,13,30,16.8,0.76,0.0443,0.68,0,0,0,0,16.8,0,0,0,0,0.264,100,163.16,0.15,983,2.5,176,0.6000000000000001 +2012,4,18,14,30,16.7,0.8,0.0415,0.68,0,0,0,0,16.7,0,0,1,0,0.264,100,161.06,0.15,983,2.5,178,0.6000000000000001 +2012,4,18,15,30,16.7,0.89,0.0432,0.68,0,0,0,0,16.7,0,0,0,0,0.264,100,151.18,0.15,983,2.4000000000000004,183,0.6000000000000001 +2012,4,18,16,30,16.8,0.96,0.0425,0.68,0,0,0,0,16.8,0,0,0,0,0.265,100,138.83,0.15,982,2.4000000000000004,188,0.6000000000000001 +2012,4,18,17,30,16.8,0.97,0.0381,0.68,0,0,0,0,16.8,0,0,0,0,0.266,100,125.74000000000001,0.15,983,2.4000000000000004,190,0.6000000000000001 +2012,4,18,18,30,16.7,1,0.0386,0.68,0,0,0,3,16.7,0,0,0,0,0.267,100,112.44,0.15,983,2.4000000000000004,191,0.6000000000000001 +2012,4,18,19,30,16.8,1,0.0366,0.68,0,0,0,0,16.8,0,0,0,0,0.267,100,99.17,0.15,984,2.4000000000000004,192,0.6000000000000001 +2012,4,18,20,30,18,0.97,0.0328,0.68,22,329,45,0,17.6,22,329,0,45,0.268,97.39,85.94,0.15,984,2.3000000000000003,188,0.8 +2012,4,18,21,30,20.200000000000003,0.96,0.032600000000000004,0.68,50,693,247,1,18.1,50,693,0,247,0.268,87.92,73.45,0.15,985,2.3000000000000003,172,1.2000000000000002 +2012,4,18,22,30,22.1,1,0.027700000000000002,0.68,61,835,458,1,18.400000000000002,61,835,0,458,0.268,79.5,61.61,0.15,985,2.3000000000000003,152,1.2000000000000002 +2012,4,18,23,30,23,1.04,0.0239,0.68,66,904,634,0,17.900000000000002,66,904,0,634,0.268,73.04,51.120000000000005,0.15,984,2.3000000000000003,145,1.1 +2012,4,19,0,30,24.900000000000002,0.6900000000000001,0.0341,0.68,78,924,754,1,17.400000000000002,78,924,0,754,0.268,63.02,43.02,0.14,983,2.3000000000000003,129,0.8 +2012,4,19,1,30,25.700000000000003,0.73,0.0317,0.68,79,941,811,1,17,79,941,0,811,0.267,58.57,38.86,0.14,983,2.3000000000000003,121,0.7000000000000001 +2012,4,19,2,30,26.1,0.77,0.030000000000000002,0.68,77,939,798,1,16.6,77,939,0,798,0.267,55.82,39.9,0.14,982,2.3000000000000003,113,0.7000000000000001 +2012,4,19,3,30,26.200000000000003,0.67,0.036500000000000005,0.68,78,912,714,0,16.3,78,912,0,714,0.267,54.52,45.800000000000004,0.14,982,2.3000000000000003,103,0.7000000000000001 +2012,4,19,4,30,25.900000000000002,0.6900000000000001,0.0356,0.68,71,868,569,0,16.1,71,868,0,569,0.267,54.730000000000004,55,0.14,981,2.3000000000000003,96,0.8 +2012,4,19,5,30,25.1,0.72,0.0352,0.68,61,782,378,0,16,61,782,0,378,0.268,57.19,66.11,0.14,982,2.3000000000000003,92,0.9 +2012,4,19,6,30,23.3,0.77,0.0383,0.68,43,584,162,0,16.6,43,584,0,162,0.268,66.08,78.28,0.14,982,2.3000000000000003,86,0.8 +2012,4,19,7,30,21.400000000000002,0.8300000000000001,0.0392,0.68,0,0,0,0,17.8,0,0,0,0,0.27,80.11,91.18,0.14,982,2.3000000000000003,81,0.7000000000000001 +2012,4,19,8,30,20.200000000000003,0.85,0.0386,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.271,86.45,104.34,0.14,983,2.3000000000000003,79,0.7000000000000001 +2012,4,19,9,30,19.5,0.85,0.039900000000000005,0.68,0,0,0,0,18.1,0,0,0,0,0.271,91.69,117.65,0.14,984,2.3000000000000003,81,0.6000000000000001 +2012,4,19,10,30,18.8,0.85,0.0405,0.68,0,0,0,0,18.2,0,0,0,0,0.271,96.58,130.93,0.14,984,2.3000000000000003,86,0.6000000000000001 +2012,4,19,11,30,18.2,0.84,0.0409,0.68,0,0,0,0,18.2,0,0,0,0,0.271,100,143.86,0.14,984,2.2,95,0.6000000000000001 +2012,4,19,12,30,17.8,0.8200000000000001,0.043500000000000004,0.68,0,0,0,0,17.8,0,0,0,0,0.27,100,155.67000000000002,0.14,984,2.2,110,0.6000000000000001 +2012,4,19,13,30,17.6,0.8,0.046400000000000004,0.68,0,0,0,0,17.6,0,0,0,0,0.27,100,163.51,0.14,983,2.2,130,0.7000000000000001 +2012,4,19,14,30,17.3,0.79,0.048100000000000004,0.68,0,0,0,0,17.3,0,0,0,0,0.269,100,161.33,0.14,983,2.2,152,0.7000000000000001 +2012,4,19,15,30,17.1,0.8,0.0504,0.68,0,0,0,0,17.1,0,0,0,0,0.269,100,151.35,0.14,983,2.2,170,0.7000000000000001 +2012,4,19,16,30,17.1,0.81,0.0509,0.68,0,0,0,4,17.1,0,0,0,0,0.269,100,138.95000000000002,0.14,983,2.3000000000000003,180,0.7000000000000001 +2012,4,19,17,30,17.1,0.8200000000000001,0.0511,0.68,0,0,0,0,17.1,0,0,0,0,0.269,100,125.84,0.14,983,2.4000000000000004,184,0.7000000000000001 +2012,4,19,18,30,17,0.84,0.0572,0.68,0,0,0,8,17,0,0,0,0,0.269,100,112.54,0.14,983,2.5,184,0.7000000000000001 +2012,4,19,19,30,17.1,0.84,0.065,0.68,0,0,0,8,17.1,0,0,0,0,0.27,100,99.28,0.14,984,2.6,183,0.7000000000000001 +2012,4,19,20,30,18,0.79,0.0711,0.68,24,222,40,8,18,21,0,3,21,0.27,100,86.05,0.14,984,2.7,180,1 +2012,4,19,21,30,20.1,0.73,0.08220000000000001,0.68,64,592,232,1,18.400000000000002,64,592,0,232,0.27,89.68,73.59,0.14,984,2.8000000000000003,169,1.4000000000000001 +2012,4,19,22,30,22.3,0.66,0.09050000000000001,0.68,88,734,435,8,18.7,233,45,0,254,0.271,79.86,61.79,0.14,984,2.9000000000000004,157,1.6 +2012,4,19,23,30,23.200000000000003,0.63,0.0922,0.68,101,809,606,8,18.6,386,147,0,478,0.271,75.18,51.35,0.14,984,3,154,1.7000000000000002 +2012,4,20,0,30,24.8,0.51,0.0964,0.68,111,841,723,8,18.1,463,121,0,551,0.27,66.43,43.300000000000004,0.14,983,3.1,160,1.5 +2012,4,20,1,30,25.400000000000002,0.53,0.08800000000000001,0.68,110,866,781,1,17.6,110,866,0,781,0.269,62.120000000000005,39.19,0.14,982,3.1,163,1.3 +2012,4,20,2,30,25.8,0.58,0.0777,0.68,103,873,769,8,17.2,493,126,0,589,0.269,58.97,40.25,0.14,981,3.1,161,1.1 +2012,4,20,3,30,26,0.59,0.0678,0.68,94,859,689,8,16.8,439,137,0,535,0.27,56.92,46.12,0.14,981,3.1,150,1.1 +2012,4,20,4,30,25.8,0.6,0.061900000000000004,0.68,83,818,549,1,16.5,83,818,0,549,0.27,56.64,55.28,0.14,981,3,134,1.1 +2012,4,20,5,30,25.1,0.59,0.058100000000000006,0.68,69,727,361,1,16.400000000000002,69,727,0,361,0.272,58.69,66.35,0.14,981,3,120,1.1 +2012,4,20,6,30,23.200000000000003,0.58,0.056600000000000004,0.68,47,522,151,1,17,47,522,0,151,0.274,67.94,78.5,0.14,981,2.9000000000000004,108,0.9 +2012,4,20,7,30,21.1,0.5700000000000001,0.0575,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.276,82.01,91.38,0.14,982,2.9000000000000004,101,0.7000000000000001 +2012,4,20,8,30,20.1,0.54,0.061700000000000005,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.276,87.38,104.54,0.14,982,3,103,0.7000000000000001 +2012,4,20,9,30,19.400000000000002,0.51,0.0675,0.68,0,0,0,0,18.2,0,0,0,0,0.276,92.96000000000001,117.85000000000001,0.14,983,3,116,0.5 +2012,4,20,10,30,18.7,0.49,0.0732,0.68,0,0,0,0,18.400000000000002,0,0,0,0,0.276,98.24000000000001,131.12,0.14,983,3,144,0.4 +2012,4,20,11,30,18.2,0.48,0.0761,0.68,0,0,0,0,18.2,0,0,0,0,0.275,100,144.08,0.14,983,2.9000000000000004,174,0.30000000000000004 +2012,4,20,12,30,17.8,0.51,0.076,0.68,0,0,0,0,17.8,0,0,0,0,0.275,100,155.94,0.14,982,2.9000000000000004,196,0.30000000000000004 +2012,4,20,13,30,17.5,0.54,0.0745,0.68,0,0,0,0,17.5,0,0,0,0,0.274,100,163.85,0.14,982,2.8000000000000003,208,0.4 +2012,4,20,14,30,17.3,0.56,0.0711,0.68,0,0,0,0,17.3,0,0,0,0,0.274,100,161.6,0.14,981,2.7,207,0.5 +2012,4,20,15,30,17,0.63,0.0718,0.68,0,0,0,0,17,0,0,0,0,0.274,100,151.52,0.14,981,2.7,199,0.6000000000000001 +2012,4,20,16,30,16.6,0.68,0.0711,0.68,0,0,0,0,16.6,0,0,0,0,0.274,100,139.07,0.14,981,2.7,194,0.6000000000000001 +2012,4,20,17,30,16.3,0.71,0.0688,0.68,0,0,0,0,16.3,0,0,0,0,0.274,100,125.95,0.14,981,2.6,197,0.6000000000000001 +2012,4,20,18,30,16,0.76,0.0704,0.68,0,0,0,0,16,0,0,0,0,0.275,100,112.64,0.14,981,2.6,203,0.6000000000000001 +2012,4,20,19,30,15.9,0.8,0.07010000000000001,0.68,0,0,0,0,15.9,0,0,0,0,0.275,100,99.39,0.14,982,2.6,212,0.7000000000000001 +2012,4,20,20,30,17.1,0.8200000000000001,0.0664,0.68,24,230,39,1,16.7,24,230,0,39,0.275,97.8,86.17,0.14,983,2.5,222,0.9 +2012,4,20,21,30,19.5,0.87,0.061500000000000006,0.68,58,634,236,1,17,58,634,0,236,0.275,85.61,73.73,0.14,983,2.4000000000000004,221,1.1 +2012,4,20,22,30,22.200000000000003,0.91,0.053500000000000006,0.68,72,796,446,1,17.3,72,796,0,446,0.275,73.77,61.97,0.14,983,2.3000000000000003,207,1.1 +2012,4,20,23,30,23.5,0.9500000000000001,0.046700000000000005,0.68,79,875,622,1,16.8,79,875,0,622,0.274,66.19,51.58,0.14,982,2.3000000000000003,199,1.2000000000000002 +2012,4,21,0,30,25.8,1.01,0.042300000000000004,0.68,82,918,746,0,16.2,82,918,0,746,0.274,55.45,43.59,0.14,981,2.2,195,1.2000000000000002 +2012,4,21,1,30,26.700000000000003,0.99,0.0413,0.68,83,932,802,0,15.700000000000001,83,932,0,802,0.273,50.84,39.53,0.14,980,2.2,185,1 +2012,4,21,2,30,27.200000000000003,0.98,0.040600000000000004,0.68,82,930,788,0,15.3,82,930,0,788,0.272,48.120000000000005,40.59,0.14,979,2.2,172,0.9 +2012,4,21,3,30,27.3,0.88,0.0436,0.68,81,905,704,0,15.100000000000001,81,905,0,704,0.272,47.35,46.43,0.14,979,2.2,159,0.8 +2012,4,21,4,30,27.1,0.86,0.0444,0.68,75,855,558,0,15.200000000000001,75,855,0,558,0.272,48.03,55.550000000000004,0.14,979,2.3000000000000003,143,0.8 +2012,4,21,5,30,26.200000000000003,0.84,0.0465,0.68,64,758,365,1,15.5,64,758,0,365,0.273,51.620000000000005,66.6,0.14,979,2.4000000000000004,122,0.7000000000000001 +2012,4,21,6,30,24.400000000000002,0.85,0.0488,0.68,45,550,152,1,16.3,45,550,0,152,0.274,60.72,78.72,0.14,979,2.4000000000000004,99,0.6000000000000001 +2012,4,21,7,30,22.6,0.86,0.0485,0.68,0,0,0,0,18.2,0,0,0,0,0.275,76.09,91.58,0.14,980,2.5,82,0.6000000000000001 +2012,4,21,8,30,21.5,0.87,0.048100000000000004,0.68,0,0,0,0,18.1,0,0,1,0,0.274,81.18,104.73,0.14,981,2.5,83,0.5 +2012,4,21,9,30,20.700000000000003,0.89,0.0485,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.273,84.08,118.03,0.14,981,2.5,106,0.5 +2012,4,21,10,30,19.8,0.9,0.050100000000000006,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.271,88.55,131.32,0.14,982,2.5,126,0.6000000000000001 +2012,4,21,11,30,19,0.91,0.0514,0.68,0,0,0,0,17.8,0,0,0,0,0.269,92.96000000000001,144.29,0.14,982,2.4000000000000004,130,0.6000000000000001 +2012,4,21,12,30,18.5,0.92,0.0519,0.68,0,0,0,0,17.8,0,0,0,0,0.267,95.54,156.21,0.14,982,2.4000000000000004,135,0.7000000000000001 +2012,4,21,13,30,18.2,0.92,0.053000000000000005,0.68,0,0,0,0,17.7,0,0,0,0,0.266,96.82000000000001,164.19,0.14,981,2.3000000000000003,146,0.7000000000000001 +2012,4,21,14,30,17.7,0.92,0.0548,0.68,0,0,0,1,17.6,0,0,0,0,0.265,99.57000000000001,161.87,0.14,981,2.3000000000000003,163,0.8 +2012,4,21,15,30,17.2,0.92,0.0555,0.68,0,0,0,0,17.2,0,0,0,0,0.265,100,151.68,0.14,981,2.2,177,0.8 +2012,4,21,16,30,16.7,0.93,0.055400000000000005,0.68,0,0,0,3,16.7,0,0,0,0,0.265,100,139.19,0.14,981,2.2,179,0.8 +2012,4,21,17,30,16.3,0.9500000000000001,0.055900000000000005,0.68,0,0,0,3,16.3,0,0,0,0,0.266,100,126.05,0.14,981,2.1,173,0.8 +2012,4,21,18,30,16.1,0.96,0.056600000000000004,0.68,0,0,0,3,16.1,0,0,0,0,0.266,100,112.74000000000001,0.14,981,2.1,169,0.8 +2012,4,21,19,30,16,0.97,0.0568,0.68,0,0,0,4,16,0,0,0,0,0.266,100,99.49000000000001,0.14,982,2.1,175,0.8 +2012,4,21,20,30,17,0.99,0.0575,0.68,22,255,39,8,16.6,18,0,3,18,0.265,97.23,86.29,0.14,983,2.2,187,0.8 +2012,4,21,21,30,19.1,1,0.0604,0.68,57,639,234,1,16.8,57,639,0,234,0.264,86.76,73.88,0.14,984,2.3000000000000003,198,0.6000000000000001 +2012,4,21,22,30,21.6,1.02,0.0618,0.68,74,786,441,8,17.1,212,34,0,228,0.264,75.8,62.15,0.14,984,2.3000000000000003,238,0.30000000000000004 +2012,4,21,23,30,22.8,1.04,0.06280000000000001,0.68,85,855,613,8,16.6,378,126,0,456,0.263,67.87,51.81,0.14,984,2.4000000000000004,273,0.1 +2012,4,22,0,30,24.400000000000002,0.7000000000000001,0.0825,0.68,103,867,728,8,15.9,424,60,0,467,0.263,59.19,43.87,0.14,982,2.5,201,0.2 +2012,4,22,1,30,24.8,0.74,0.0818,0.68,105,884,783,0,15.600000000000001,105,884,0,783,0.262,56.480000000000004,39.86,0.14,981,2.5,72,0.2 +2012,4,22,2,30,24.900000000000002,0.78,0.08460000000000001,0.68,105,876,767,1,15.4,105,876,0,767,0.262,55.67,40.93,0.14,981,2.6,72,0.2 +2012,4,22,3,30,24.900000000000002,0.68,0.0942,0.68,106,838,680,1,15.5,106,838,0,680,0.261,55.79,46.74,0.14,980,2.7,57,0.2 +2012,4,22,4,30,24.5,0.6900000000000001,0.0942,0.68,96,782,536,1,15.8,96,782,0,536,0.262,58.21,55.83,0.14,980,2.8000000000000003,53,0.30000000000000004 +2012,4,22,5,30,23.5,0.7000000000000001,0.0942,0.68,81,675,346,1,16.400000000000002,81,675,0,346,0.262,64.32000000000001,66.84,0.14,980,2.9000000000000004,54,0.4 +2012,4,22,6,30,21.900000000000002,0.72,0.0922,0.68,53,449,139,8,17.8,66,14,3,68,0.263,77.72,78.93,0.14,981,3,52,0.6000000000000001 +2012,4,22,7,30,20.700000000000003,0.72,0.0922,0.68,0,0,0,0,17.6,0,0,0,0,0.264,82.55,91.78,0.14,981,3.1,52,0.6000000000000001 +2012,4,22,8,30,20,0.72,0.095,0.68,0,0,0,0,17.8,0,0,0,0,0.265,87.42,104.91,0.14,982,3.2,52,0.6000000000000001 +2012,4,22,9,30,19.6,0.7000000000000001,0.0994,0.68,0,0,0,0,18.2,0,0,0,0,0.265,91.7,118.22,0.14,982,3.2,55,0.6000000000000001 +2012,4,22,10,30,19.200000000000003,0.67,0.10360000000000001,0.68,0,0,0,8,18.5,0,0,0,0,0.264,95.77,131.51,0.14,983,3.2,56,0.6000000000000001 +2012,4,22,11,30,18.900000000000002,0.63,0.1051,0.68,0,0,0,8,18.8,0,0,0,0,0.263,99.23,144.5,0.14,983,3.1,49,0.6000000000000001 +2012,4,22,12,30,18.7,0.6,0.1078,0.68,0,0,0,7,18.7,0,0,0,0,0.262,100,156.47,0.14,983,3.1,33,0.5 +2012,4,22,13,30,18.6,0.58,0.10830000000000001,0.68,0,0,0,0,18.6,0,0,0,0,0.261,100,164.53,0.14,982,3,11,0.5 +2012,4,22,14,30,18.400000000000002,0.59,0.1056,0.68,0,0,0,1,18.400000000000002,0,0,0,0,0.261,100,162.13,0.14,982,3,177,0.5 +2012,4,22,15,30,18.3,0.63,0.1039,0.68,0,0,0,3,18.3,0,0,0,0,0.261,100,151.84,0.14,982,3.1,356,0.5 +2012,4,22,16,30,18.2,0.66,0.1019,0.68,0,0,0,8,18.2,0,0,0,0,0.261,100,139.3,0.14,981,3.2,347,0.5 +2012,4,22,17,30,17.900000000000002,0.6900000000000001,0.1,0.68,0,0,0,0,17.900000000000002,0,0,0,0,0.262,100,126.15,0.14,981,3.3000000000000003,332,0.5 +2012,4,22,18,30,17.5,0.73,0.0984,0.68,0,0,0,0,17.5,0,0,0,0,0.262,100,112.84,0.14,982,3.3000000000000003,323,0.6000000000000001 +2012,4,22,19,30,17.3,0.76,0.0988,0.68,0,0,0,1,17.3,0,0,0,0,0.261,100,99.60000000000001,0.14,982,3.4000000000000004,316,0.6000000000000001 +2012,4,22,20,30,18.2,0.78,0.0945,0.68,24,159,34,1,18.2,24,159,0,34,0.26,100,86.41,0.14,983,3.3000000000000003,308,0.8 +2012,4,22,21,30,20.5,0.79,0.0903,0.68,65,565,220,3,18.6,23,0,0,23,0.26,88.62,74.03,0.14,984,3.2,308,0.9 +2012,4,22,22,30,22.8,0.84,0.0811,0.68,82,738,425,1,18.400000000000002,82,738,0,425,0.26,76.47,62.34,0.14,984,3.2,320,0.9 +2012,4,22,23,30,24,0.89,0.07440000000000001,0.68,90,825,598,1,17.400000000000002,90,825,0,598,0.259,66.67,52.03,0.14,984,3.1,326,0.9 +2012,4,23,0,30,26.200000000000003,0.76,0.0826,0.68,101,854,714,1,16.7,101,854,0,714,0.26,55.92,44.160000000000004,0.14,982,3.1,344,1 +2012,4,23,1,30,27,0.78,0.0828,0.68,104,870,769,8,16.5,506,148,0,619,0.26,52.67,40.18,0.14,981,3.1,177,1 +2012,4,23,2,30,27.3,0.8200000000000001,0.0852,0.68,104,863,753,8,16.5,488,157,0,606,0.26,51.58,41.26,0.14,980,3.2,15,1 +2012,4,23,3,30,27.200000000000003,0.61,0.11330000000000001,0.68,114,807,664,8,16.400000000000002,423,105,0,495,0.26,51.74,47.050000000000004,0.14,980,3.2,29,1 +2012,4,23,4,30,26.8,0.61,0.1101,0.68,103,753,523,7,16.3,290,46,0,316,0.259,52.74,56.1,0.14,980,3.2,40,1 +2012,4,23,5,30,25.900000000000002,0.6,0.1073,0.68,85,646,337,8,16.5,213,157,0,274,0.259,56.08,67.08,0.14,980,3.2,48,1.1 +2012,4,23,6,30,24.1,0.62,0.10880000000000001,0.68,56,407,132,3,17.400000000000002,14,0,3,14,0.258,66.02,79.14,0.14,980,3.3000000000000003,54,0.8 +2012,4,23,7,30,22.200000000000003,0.63,0.10880000000000001,0.68,0,0,0,8,18.6,0,0,0,0,0.257,80.28,91.97,0.14,981,3.3000000000000003,56,0.7000000000000001 +2012,4,23,8,30,21.1,0.63,0.11220000000000001,0.68,0,0,0,7,18.8,0,0,0,0,0.257,86.54,105.10000000000001,0.14,981,3.4000000000000004,49,0.6000000000000001 +2012,4,23,9,30,20.400000000000002,0.65,0.1173,0.68,0,0,0,8,18.900000000000002,0,0,0,0,0.257,90.99,118.39,0.14,982,3.5,41,0.6000000000000001 +2012,4,23,10,30,19.900000000000002,0.66,0.1197,0.68,0,0,0,1,19.1,0,0,0,0,0.257,95.08,131.69,0.14,982,3.5,33,0.6000000000000001 +2012,4,23,11,30,19.700000000000003,0.67,0.12250000000000001,0.68,0,0,0,7,19.3,0,0,0,0,0.257,97.36,144.71,0.14,982,3.6,22,0.5 +2012,4,23,12,30,19.3,0.67,0.1237,0.68,0,0,0,8,19.3,0,0,0,0,0.257,100,156.72,0.14,982,3.7,8,0.5 +2012,4,23,13,30,19,0.68,0.1242,0.68,0,0,0,8,19,0,0,0,0,0.256,100,164.86,0.14,982,3.7,173,0.5 +2012,4,23,14,30,18.8,0.6900000000000001,0.1278,0.68,0,0,0,6,18.8,0,0,0,0,0.256,100,162.39000000000001,0.14,981,3.8000000000000003,334,0.5 +2012,4,23,15,30,18.6,0.71,0.13620000000000002,0.68,0,0,0,7,18.6,0,0,0,0,0.256,100,151.99,0.14,981,3.8000000000000003,311,0.5 +2012,4,23,16,30,18.6,0.73,0.1442,0.68,0,0,0,6,18.6,0,0,0,0,0.256,100,139.42000000000002,0.14,981,3.9000000000000004,294,0.5 +2012,4,23,17,30,18.5,0.75,0.14200000000000002,0.68,0,0,0,6,18.5,0,0,0,0,0.256,100,126.24000000000001,0.14,981,3.9000000000000004,280,0.5 +2012,4,23,18,30,18.400000000000002,0.76,0.1358,0.68,0,0,0,6,18.400000000000002,0,0,0,0,0.257,99.77,112.93,0.14,981,3.9000000000000004,261,0.5 +2012,4,23,19,30,18.400000000000002,0.77,0.1291,0.68,0,0,0,7,18.1,0,0,0,0,0.257,98.11,99.7,0.14,981,3.8000000000000003,243,0.5 +2012,4,23,20,30,18.7,0.77,0.1292,0.68,24,110,30,8,17.900000000000002,15,0,3,15,0.257,95.12,86.52,0.14,982,3.8000000000000003,233,0.6000000000000001 +2012,4,23,21,30,19.5,0.79,0.1366,0.68,75,489,209,8,17.900000000000002,81,13,0,84,0.256,90.60000000000001,74.17,0.14,982,3.8000000000000003,226,0.8 +2012,4,23,22,30,20.6,0.81,0.132,0.68,99,668,407,8,17.8,84,17,0,92,0.255,83.94,62.52,0.14,982,3.8000000000000003,218,0.8 +2012,4,23,23,30,21.3,0.8200000000000001,0.12380000000000001,0.68,111,763,578,8,17.8,69,12,0,76,0.254,80.28,52.26,0.14,982,3.7,215,0.8 +2012,4,24,0,30,24.6,0.81,0.12300000000000001,0.68,118,806,694,7,17.8,303,24,0,320,0.253,65.95,44.44,0.14,981,3.8000000000000003,240,0.6000000000000001 +2012,4,24,1,30,25.900000000000002,0.8200000000000001,0.12100000000000001,0.68,121,825,748,7,17.8,368,26,0,387,0.252,60.86,40.51,0.14,980,3.8000000000000003,259,0.6000000000000001 +2012,4,24,2,30,26.1,0.84,0.1245,0.68,121,816,732,7,17.6,185,28,0,205,0.252,59.64,41.6,0.14,980,3.9000000000000004,262,0.8 +2012,4,24,3,30,25.400000000000002,0.89,0.1353,0.68,120,779,648,8,17.5,213,25,0,230,0.253,61.5,47.36,0.14,979,4,255,1 +2012,4,24,4,30,24.5,0.91,0.1394,0.68,110,716,507,8,17.7,321,91,0,372,0.254,65.95,56.36,0.14,979,4.1000000000000005,246,1.2000000000000002 +2012,4,24,5,30,23.3,0.93,0.1458,0.68,93,595,323,8,18,98,18,0,105,0.256,72.36,67.31,0.14,980,4.1000000000000005,241,1.3 +2012,4,24,6,30,21.8,0.9500000000000001,0.15710000000000002,0.68,60,343,124,8,18.5,38,0,3,38,0.257,81.67,79.35000000000001,0.14,980,4.1000000000000005,237,1.2000000000000002 +2012,4,24,7,30,20.5,0.9500000000000001,0.1534,0.68,0,0,0,7,18.5,0,0,0,0,0.259,88.52,92.17,0.14,981,4,232,1.2000000000000002 +2012,4,24,8,30,19.5,0.9400000000000001,0.14500000000000002,0.68,0,0,0,6,18.2,0,0,0,0,0.26,92.33,105.28,0.14,981,3.9000000000000004,231,1.1 +2012,4,24,9,30,18.8,0.92,0.1454,0.68,0,0,0,6,17.8,0,0,0,0,0.261,93.96000000000001,118.57000000000001,0.14,981,3.7,239,0.9 +2012,4,24,10,30,18.3,0.9,0.1484,0.68,0,0,0,6,17.3,0,0,1,0,0.261,93.85000000000001,131.87,0.14,982,3.6,252,0.6000000000000001 +2012,4,24,11,30,17.900000000000002,0.89,0.1486,0.68,0,0,0,6,16.900000000000002,0,0,0,0,0.262,93.65,144.91,0.14,982,3.5,266,0.5 +2012,4,24,12,30,17.400000000000002,0.88,0.1416,0.68,0,0,0,7,16.5,0,0,0,0,0.262,94.28,156.97,0.14,982,3.4000000000000004,267,0.5 +2012,4,24,13,30,17,0.87,0.13240000000000002,0.68,0,0,0,8,16.1,0,0,0,0,0.262,94.34,165.19,0.14,981,3.3000000000000003,260,0.6000000000000001 +2012,4,24,14,30,16.6,0.87,0.12090000000000001,0.68,0,0,0,6,15.700000000000001,0,0,0,0,0.262,94.39,162.64000000000001,0.14,981,3.1,253,0.7000000000000001 +2012,4,24,15,30,16.1,0.87,0.1111,0.68,0,0,0,6,15.3,0,0,0,0,0.263,94.97,152.15,0.14,981,3,250,0.7000000000000001 +2012,4,24,16,30,15.5,0.86,0.1023,0.68,0,0,0,6,14.8,0,0,0,0,0.263,95.47,139.53,0.14,981,2.8000000000000003,250,0.7000000000000001 +2012,4,24,17,30,14.9,0.84,0.0931,0.68,0,0,0,6,14.3,0,0,0,0,0.264,96.34,126.34,0.14,981,2.7,251,0.7000000000000001 +2012,4,24,18,30,14.5,0.8200000000000001,0.08710000000000001,0.68,0,0,0,7,13.8,0,0,0,0,0.265,95.68,113.03,0.14,981,2.5,251,0.7000000000000001 +2012,4,24,19,30,14.4,0.81,0.0835,0.68,0,0,0,7,13.4,0,0,0,0,0.265,93.7,99.81,0.14,981,2.3000000000000003,253,0.7000000000000001 +2012,4,24,20,30,15.100000000000001,0.81,0.08,0.68,22,185,33,7,13.100000000000001,18,0,3,18,0.266,87.59,86.64,0.14,982,2.1,254,1.1 +2012,4,24,21,30,16.5,0.81,0.0782,0.68,61,603,224,8,12.8,105,28,0,113,0.266,78.67,74.32000000000001,0.14,982,2,245,1.6 +2012,4,24,22,30,17.7,0.8200000000000001,0.0727,0.68,79,775,434,8,11,174,24,0,185,0.266,64.87,62.7,0.14,983,1.8,236,1.9000000000000001 +2012,4,24,23,30,18.2,0.8200000000000001,0.0673,0.68,87,858,609,7,8.700000000000001,125,24,0,140,0.267,53.68,52.49,0.14,983,1.8,235,2 +2012,4,25,0,30,19.3,0.8200000000000001,0.064,0.68,92,904,734,4,7.2,98,20,0,112,0.267,45.47,44.72,0.14,982,1.6,247,2.2 +2012,4,25,1,30,20.400000000000002,0.8300000000000001,0.0579,0.68,91,928,793,8,6.300000000000001,294,24,0,312,0.267,39.94,40.83,0.14,982,1.5,254,2.4000000000000004 +2012,4,25,2,30,21.700000000000003,0.8300000000000001,0.0514,0.68,87,934,782,8,5.6000000000000005,450,69,0,501,0.267,35.14,41.92,0.14,981,1.4000000000000001,258,2.5 +2012,4,25,3,30,22.3,0.8200000000000001,0.0483,0.68,83,918,701,8,4.800000000000001,490,155,0,594,0.266,31.900000000000002,47.660000000000004,0.14,980,1.3,258,2.5 +2012,4,25,4,30,22.1,0.8300000000000001,0.0465,0.68,75,876,556,1,4.2,75,876,0,556,0.265,31.060000000000002,56.63,0.14,980,1.2000000000000002,255,2.5 +2012,4,25,5,30,20.8,0.8300000000000001,0.045000000000000005,0.68,63,787,364,8,4.6000000000000005,208,169,0,273,0.264,34.59,67.54,0.14,980,1.1,250,2.1 +2012,4,25,6,30,18.5,0.8300000000000001,0.0446,0.68,42,572,146,8,6,81,121,3,102,0.264,44.1,79.55,0.14,981,1.1,247,1.6 +2012,4,25,7,30,16.6,0.8300000000000001,0.045000000000000005,0.68,0,0,0,8,6.300000000000001,0,0,0,0,0.264,50.58,92.35000000000001,0.14,981,1.1,247,1.3 +2012,4,25,8,30,15.600000000000001,0.8300000000000001,0.0448,0.68,0,0,0,8,6.2,0,0,0,0,0.264,53.67,105.45,0.14,982,1.1,248,1.3 +2012,4,25,9,30,14.600000000000001,0.79,0.041800000000000004,0.68,0,0,0,8,6.300000000000001,0,0,0,0,0.264,57.43,118.74000000000001,0.14,983,1.1,247,1.3 +2012,4,25,10,30,13.5,0.76,0.038700000000000005,0.68,0,0,0,8,6.300000000000001,0,0,0,0,0.263,61.85,132.05,0.14,984,1.1,245,1.2000000000000002 +2012,4,25,11,30,12.8,0.76,0.0381,0.68,0,0,0,8,6.4,0,0,0,0,0.262,64.99,145.1,0.14,984,1,243,1.1 +2012,4,25,12,30,12.3,0.76,0.039,0.68,0,0,0,0,6.2,0,0,0,0,0.261,66.35,157.22,0.14,984,1,240,1.1 +2012,4,25,13,30,12,0.79,0.0403,0.68,0,0,0,0,6,0,0,0,0,0.26,66.49,165.51,0.14,984,1,236,1.1 +2012,4,25,14,30,11.600000000000001,0.78,0.038200000000000005,0.68,0,0,0,0,5.800000000000001,0,0,0,0,0.26,67.58,162.88,0.14,984,1,233,1 +2012,4,25,15,30,10.9,0.78,0.0352,0.68,0,0,0,0,5.4,0,0,0,0,0.259,68.95,152.3,0.14,984,0.9,235,0.9 +2012,4,25,16,30,10.200000000000001,0.77,0.0325,0.68,0,0,0,0,4.800000000000001,0,0,0,0,0.259,69.27,139.64000000000001,0.14,983,0.9,240,0.9 +2012,4,25,17,30,9.600000000000001,0.79,0.0303,0.68,0,0,0,0,4.4,0,0,0,0,0.259,70.23,126.44,0.14,984,0.9,243,0.9 +2012,4,25,18,30,9.1,0.81,0.029,0.68,0,0,0,0,4.2,0,0,0,0,0.259,71.44,113.13,0.14,984,0.9,242,0.9 +2012,4,25,19,30,8.9,0.8300000000000001,0.0286,0.68,0,0,0,0,4.1000000000000005,0,0,0,0,0.259,71.77,99.91,0.14,985,0.9,238,0.9 +2012,4,25,20,30,10.200000000000001,0.86,0.0286,0.68,19,326,38,1,4.3,19,326,0,38,0.258,66.83,86.75,0.14,985,1,234,1.2000000000000002 +2012,4,25,21,30,12.700000000000001,0.88,0.028900000000000002,0.68,48,722,241,1,4.4,48,722,0,241,0.258,57.08,74.46000000000001,0.14,985,1,220,1.5 +2012,4,25,22,30,15.5,0.9,0.0292,0.68,61,856,452,1,4.800000000000001,61,856,0,452,0.257,48.79,62.88,0.14,986,1.1,190,1.3 +2012,4,25,23,30,16.900000000000002,0.91,0.028800000000000003,0.68,69,923,628,0,4.9,69,923,0,628,0.257,45.11,52.71,0.14,986,1.1,172,1 +2012,4,26,0,30,20.200000000000003,0.85,0.031400000000000004,0.68,75,946,744,0,4.4,75,946,0,744,0.256,35.46,44.99,0.14,985,1.3,117,0.6000000000000001 +2012,4,26,1,30,21.6,0.88,0.0318,0.68,77,956,797,1,4.1000000000000005,77,956,0,797,0.256,31.85,41.14,0.14,984,1.4000000000000001,107,0.5 +2012,4,26,2,30,22.400000000000002,0.91,0.0334,0.68,78,951,782,0,4,78,951,0,782,0.255,30.09,42.24,0.14,983,1.4000000000000001,107,0.5 +2012,4,26,3,30,22.700000000000003,0.91,0.0352,0.68,76,925,695,0,4,76,925,0,695,0.255,29.560000000000002,47.95,0.14,983,1.5,104,0.7000000000000001 +2012,4,26,4,30,22.5,0.92,0.0352,0.68,69,879,549,1,4.2,69,879,0,549,0.255,30.27,56.89,0.14,982,1.5,99,1 +2012,4,26,5,30,21.400000000000002,0.91,0.034800000000000005,0.68,58,784,355,0,4.800000000000001,58,784,0,355,0.255,33.88,67.77,0.14,983,1.6,93,1.1 +2012,4,26,6,30,18.900000000000002,0.91,0.0352,0.68,39,573,141,1,7.4,39,573,0,141,0.256,47.25,79.75,0.14,983,1.6,85,0.9 +2012,4,26,7,30,16.5,0.9,0.0356,0.68,0,0,0,1,8.8,0,0,0,0,0.257,60.550000000000004,92.54,0.14,984,1.6,81,0.8 +2012,4,26,8,30,15.5,0.9,0.0374,0.68,0,0,0,3,9.1,0,0,0,0,0.258,65.47,105.62,0.14,985,1.7000000000000002,81,0.8 +2012,4,26,9,30,15.200000000000001,0.92,0.0405,0.68,0,0,0,0,9.700000000000001,0,0,0,0,0.257,69.92,118.91,0.14,986,1.8,82,0.7000000000000001 +2012,4,26,10,30,15.100000000000001,0.92,0.0426,0.68,0,0,0,0,10.3,0,0,0,0,0.257,72.95,132.22,0.14,987,1.9000000000000001,99,0.7000000000000001 +2012,4,26,11,30,14.700000000000001,0.93,0.0451,0.68,0,0,0,8,10.3,0,0,0,0,0.257,74.93,145.29,0.14,987,2.1,131,0.7000000000000001 +2012,4,26,12,30,14.200000000000001,0.9500000000000001,0.0468,0.68,0,0,0,8,10.700000000000001,0,0,0,0,0.257,79.24,157.46,0.14,987,2.2,151,0.7000000000000001 +2012,4,26,13,30,13.9,0.9500000000000001,0.0461,0.68,0,0,0,7,10.9,0,0,0,0,0.256,82.08,165.83,0.14,986,2.4000000000000004,150,0.7000000000000001 +2012,4,26,14,30,13.8,0.98,0.048,0.68,0,0,0,7,11.100000000000001,0,0,0,0,0.256,84,163.13,0.14,986,2.6,139,0.6000000000000001 +2012,4,26,15,30,13.700000000000001,1.02,0.0526,0.68,0,0,0,7,11.4,0,0,0,0,0.256,85.77,152.44,0.14,985,2.7,142,0.6000000000000001 +2012,4,26,16,30,13.700000000000001,1.03,0.055200000000000006,0.68,0,0,0,6,11.700000000000001,0,0,0,0,0.257,87.44,139.75,0.14,985,2.9000000000000004,161,0.6000000000000001 +2012,4,26,17,30,13.700000000000001,1.03,0.0577,0.68,0,0,0,7,11.9,0,0,0,0,0.257,88.62,126.53,0.14,986,3,176,0.7000000000000001 +2012,4,26,18,30,13.700000000000001,1.03,0.0606,0.68,0,0,0,8,11.9,0,0,0,0,0.259,89.14,113.22,0.14,986,3.1,176,0.6000000000000001 +2012,4,26,19,30,13.700000000000001,1.03,0.0656,0.68,0,0,0,7,12.100000000000001,0,0,0,0,0.26,89.96000000000001,100.02,0.14,987,3.3000000000000003,172,0.6000000000000001 +2012,4,26,20,30,13.9,1.02,0.07050000000000001,0.68,20,183,30,6,12.4,3,0,3,3,0.261,90.69,86.87,0.14,988,3.4000000000000004,181,0.7000000000000001 +2012,4,26,21,30,14.4,1.02,0.0763,0.68,59,576,212,6,13,8,0,0,8,0.262,91.42,74.61,0.14,989,3.4000000000000004,183,0.9 +2012,4,26,22,30,14.9,1.02,0.08080000000000001,0.68,80,727,409,6,13.3,18,0,0,18,0.262,90.25,63.06,0.14,989,3.5,173,0.9 +2012,4,26,23,30,15.200000000000001,1.02,0.0813,0.68,92,805,577,7,14,56,5,0,59,0.262,92.26,52.94,0.14,989,3.5,168,0.8 +2012,4,27,0,30,16.7,1.02,0.0814,0.68,98,845,693,7,14.600000000000001,89,18,0,102,0.262,87.67,45.27,0.14,988,3.5,144,0.9 +2012,4,27,1,30,17.8,1,0.08410000000000001,0.68,102,857,745,7,15.200000000000001,205,27,0,225,0.262,84.85000000000001,41.46,0.14,988,3.5,136,1.1 +2012,4,27,2,30,18.7,1,0.0857,0.68,102,852,730,8,15.5,122,24,0,139,0.261,81.52,42.56,0.14,987,3.5,130,1.3 +2012,4,27,3,30,19,1.03,0.0839,0.68,97,827,648,4,15.4,118,24,0,134,0.26,79.85000000000001,48.24,0.14,987,3.6,130,1.3 +2012,4,27,4,30,18.5,0.98,0.0922,0.68,91,762,505,4,15.5,128,23,0,141,0.258,82.67,57.14,0.14,987,3.7,128,1.2000000000000002 +2012,4,27,5,30,17.900000000000002,0.91,0.0964,0.68,78,646,320,4,16,23,0,0,23,0.257,88.45,67.99,0.14,987,3.8000000000000003,124,0.9 +2012,4,27,6,30,17.1,0.87,0.11130000000000001,0.68,52,383,119,4,16.5,8,0,3,8,0.256,96.03,79.95,0.14,987,3.8000000000000003,134,0.6000000000000001 +2012,4,27,7,30,16.6,0.8,0.11180000000000001,0.68,0,0,0,8,16.5,0,0,0,0,0.255,99.37,92.72,0.14,988,3.9000000000000004,145,0.7000000000000001 +2012,4,27,8,30,16.400000000000002,0.7000000000000001,0.0932,0.68,0,0,0,8,16.400000000000002,0,0,0,0,0.254,100,105.79,0.14,988,3.9000000000000004,145,0.9 +2012,4,27,9,30,16.400000000000002,0.68,0.0826,0.68,0,0,0,7,16.400000000000002,0,0,0,0,0.253,100,119.07000000000001,0.14,988,3.9000000000000004,143,1 +2012,4,27,10,30,16.3,0.61,0.07390000000000001,0.68,0,0,0,8,16.3,0,0,0,0,0.253,100,132.38,0.14,988,3.9000000000000004,142,1.1 +2012,4,27,11,30,16.2,0.52,0.0687,0.68,0,0,0,8,16.2,0,0,0,0,0.252,100,145.48,0.14,988,3.8000000000000003,142,1.1 +2012,4,27,12,30,16.1,0.55,0.0741,0.68,0,0,0,8,16.1,0,0,0,0,0.251,100,157.69,0.14,988,3.8000000000000003,142,1 +2012,4,27,13,30,16.1,0.55,0.0719,0.68,0,0,0,8,16.1,0,0,0,0,0.251,100,166.15,0.14,988,3.8000000000000003,139,1.1 +2012,4,27,14,30,16.1,0.52,0.0678,0.68,0,0,0,7,16.1,0,0,0,0,0.252,100,163.37,0.14,987,3.8000000000000003,135,1.2000000000000002 +2012,4,27,15,30,16.2,0.6,0.0702,0.68,0,0,0,8,16.2,0,0,0,0,0.252,100,152.59,0.14,986,3.7,129,1.3 +2012,4,27,16,30,16.1,0.59,0.0635,0.68,0,0,0,8,16.1,0,0,0,0,0.252,100,139.85,0.14,986,3.7,125,1.2000000000000002 +2012,4,27,17,30,16.1,0.52,0.0613,0.68,0,0,0,8,16.1,0,0,0,0,0.253,100,126.63000000000001,0.14,986,3.8000000000000003,127,1.1 +2012,4,27,18,30,15.9,0.52,0.0661,0.68,0,0,0,8,15.9,0,0,0,0,0.253,100,113.32000000000001,0.14,986,3.8000000000000003,131,1.2000000000000002 +2012,4,27,19,30,15.8,0.45,0.0664,0.68,0,0,0,7,15.8,0,0,0,0,0.253,100,100.12,0.14,986,3.8000000000000003,130,1.2000000000000002 +2012,4,27,20,30,16.2,0.38,0.06760000000000001,0.68,20,144,28,7,16,3,0,3,3,0.254,98.56,86.99,0.14,986,3.8000000000000003,127,1.8 +2012,4,27,21,30,17,0.42,0.079,0.68,62,545,205,7,16.6,9,0,0,9,0.254,97.19,74.75,0.14,986,3.8000000000000003,125,2.4000000000000004 +2012,4,27,22,30,17.7,0.39,0.0766,0.68,81,713,402,7,17.2,18,0,0,18,0.252,96.78,63.24,0.14,986,3.9000000000000004,123,2.6 +2012,4,27,23,30,18,0.31,0.0685,0.68,90,801,570,7,17.3,69,12,0,76,0.251,95.89,53.160000000000004,0.14,986,3.9000000000000004,122,2.6 +2012,4,28,0,30,18,0.36,0.0757,0.68,99,833,683,7,17.2,48,0,0,48,0.25,95.23,45.54,0.14,985,4,121,2.6 +2012,4,28,1,30,18,0.37,0.0849,0.68,107,841,734,7,17.1,191,27,0,211,0.249,94.32000000000001,41.77,0.14,984,3.9000000000000004,113,2.8000000000000003 +2012,4,28,2,30,17.900000000000002,0.36,0.0796,0.68,103,842,720,7,16.900000000000002,139,26,0,158,0.249,93.79,42.88,0.14,983,3.9000000000000004,108,2.9000000000000004 +2012,4,28,3,30,17.8,0.4,0.07540000000000001,0.68,96,821,640,6,16.7,116,24,0,132,0.25,93.5,48.53,0.14,982,3.9000000000000004,106,2.8000000000000003 +2012,4,28,4,30,17.6,0.43,0.07590000000000001,0.68,88,768,501,6,16.7,59,8,0,63,0.251,94.71000000000001,57.4,0.14,982,3.8000000000000003,106,2.6 +2012,4,28,5,30,17.3,0.42,0.0746,0.68,73,661,318,8,16.900000000000002,89,16,0,95,0.252,97.35000000000001,68.21000000000001,0.14,982,3.8000000000000003,112,2.2 +2012,4,28,6,30,17,0.49,0.0838,0.68,48,404,118,7,17,33,0,3,33,0.253,99.76,80.15,0.14,983,3.8000000000000003,122,1.7000000000000002 +2012,4,28,7,30,16.8,0.48,0.1004,0.68,0,0,0,8,16.8,0,0,0,0,0.254,100,92.89,0.14,983,3.8000000000000003,131,1.5 +2012,4,28,8,30,16.8,0.43,0.115,0.68,0,0,0,8,16.8,0,0,0,0,0.255,100,105.96000000000001,0.14,983,3.8000000000000003,136,1.5 +2012,4,28,9,30,16.7,0.48,0.12390000000000001,0.68,0,0,0,3,16.7,0,0,0,0,0.255,100,119.23,0.14,984,3.7,141,1.4000000000000001 +2012,4,28,10,30,16.6,0.48,0.1159,0.68,0,0,0,3,16.6,0,0,0,0,0.254,100,132.54,0.14,983,3.6,149,1.2000000000000002 +2012,4,28,11,30,16.400000000000002,0.46,0.1015,0.68,0,0,0,4,16.400000000000002,0,0,0,0,0.254,100,145.65,0.14,983,3.5,168,1 +2012,4,28,12,30,16.1,0.56,0.0912,0.68,0,0,0,3,16.1,0,0,0,0,0.254,100,157.92000000000002,0.14,982,3.4000000000000004,194,1 +2012,4,28,13,30,15.9,0.63,0.0679,0.68,0,0,0,4,15.9,0,0,0,0,0.253,100,166.46,0.14,982,3.3000000000000003,213,1.1 +2012,4,28,14,30,15.700000000000001,0.7000000000000001,0.0461,0.68,0,0,0,3,15.700000000000001,0,0,0,0,0.252,100,163.6,0.14,981,3.3000000000000003,220,1.1 +2012,4,28,15,30,15.5,0.81,0.0349,0.68,0,0,0,4,15.5,0,0,0,0,0.252,100,152.73,0.14,981,3.3000000000000003,220,1.1 +2012,4,28,16,30,15.4,0.9,0.0285,0.68,0,0,0,3,15.4,0,0,0,0,0.252,100,139.96,0.14,981,3.3000000000000003,218,1 +2012,4,28,17,30,15.3,0.96,0.024200000000000003,0.68,0,0,0,1,15.3,0,0,0,0,0.252,100,126.72,0.14,981,3.3000000000000003,218,1 +2012,4,28,18,30,15.200000000000001,1,0.0227,0.68,0,0,0,1,15.200000000000001,0,0,0,0,0.253,100,113.41,0.14,981,3.2,217,1 +2012,4,28,19,30,15.100000000000001,1.02,0.023,0.68,0,0,0,3,15.100000000000001,0,0,0,0,0.254,100,100.23,0.14,982,3.2,214,1 +2012,4,28,20,30,15.3,1.02,0.023700000000000002,0.68,16,274,30,3,15.3,12,0,3,12,0.255,100,87.10000000000001,0.14,983,3.2,211,1.3 +2012,4,28,21,30,15.9,1,0.024900000000000002,0.68,44,662,217,1,15.600000000000001,44,662,0,217,0.257,97.88,74.9,0.14,983,3.1,206,1.6 +2012,4,28,22,30,16.900000000000002,0.97,0.0258,0.68,58,801,416,3,16.1,220,48,0,241,0.258,95.04,63.42,0.14,983,3.1,195,1.9000000000000001 +2012,4,28,23,30,17.5,0.9400000000000001,0.0267,0.68,66,869,585,3,16.6,357,110,0,422,0.258,94.61,53.38,0.14,983,3,187,2 +2012,4,29,0,30,19.700000000000003,0.97,0.0262,0.68,70,904,700,3,16.8,175,27,0,194,0.261,83.2,45.81,0.13,983,3,178,2 +2012,4,29,1,30,20.8,0.9400000000000001,0.027800000000000002,0.68,73,915,752,3,16.6,130,25,0,149,0.263,77.11,42.08,0.13,983,3,174,1.9000000000000001 +2012,4,29,2,30,21.5,0.9,0.030100000000000002,0.68,74,909,737,3,16.5,164,27,0,184,0.266,73.37,43.19,0.13,983,3,166,1.9000000000000001 +2012,4,29,3,30,21.700000000000003,0.77,0.0378,0.68,76,878,654,1,16.5,76,878,0,654,0.267,72.24,48.82,0.13,982,3,159,1.9000000000000001 +2012,4,29,4,30,21.400000000000002,0.74,0.0407,0.68,71,825,512,3,16.5,68,13,0,74,0.268,73.5,57.65,0.13,983,3,153,1.8 +2012,4,29,5,30,20.6,0.7000000000000001,0.043500000000000004,0.68,60,723,326,3,16.5,147,28,0,157,0.268,77.28,68.43,0.13,983,3,149,1.6 +2012,4,29,6,30,19.1,0.6900000000000001,0.0449,0.68,40,493,123,3,16.900000000000002,50,1,3,50,0.269,86.94,80.34,0.13,984,3,148,1.1 +2012,4,29,7,30,17.5,0.66,0.044500000000000005,0.68,0,0,0,3,16.8,0,0,0,0,0.269,95.83,93.07000000000001,0.13,985,2.9000000000000004,151,0.9 +2012,4,29,8,30,16.6,0.63,0.0449,0.68,0,0,0,3,16.400000000000002,0,0,0,0,0.27,98.49000000000001,106.12,0.13,986,2.9000000000000004,157,0.8 +2012,4,29,9,30,15.9,0.61,0.0471,0.68,0,0,0,3,15.9,0,0,0,0,0.27,100,119.38,0.13,986,2.8000000000000003,165,0.8 +2012,4,29,10,30,15.4,0.62,0.049600000000000005,0.68,0,0,0,0,15.4,0,0,0,0,0.27,100,132.7,0.13,987,2.8000000000000003,173,0.8 +2012,4,29,11,30,15,0.65,0.0523,0.68,0,0,0,1,15,0,0,0,0,0.269,100,145.83,0.13,987,2.8000000000000003,179,0.8 +2012,4,29,12,30,14.600000000000001,0.65,0.0546,0.68,0,0,0,1,14.600000000000001,0,0,0,0,0.269,100,158.13,0.13,987,2.8000000000000003,182,0.8 +2012,4,29,13,30,14.3,0.62,0.0553,0.68,0,0,0,0,14.3,0,0,0,0,0.269,100,166.77,0.13,987,2.7,180,0.8 +2012,4,29,14,30,14,0.59,0.055400000000000005,0.68,0,0,0,0,14,0,0,0,0,0.269,100,163.83,0.13,987,2.7,178,0.8 +2012,4,29,15,30,13.8,0.52,0.059300000000000005,0.68,0,0,0,0,13.8,0,0,0,0,0.268,100,152.86,0.13,987,2.6,178,0.8 +2012,4,29,16,30,13.700000000000001,0.42,0.0695,0.68,0,0,0,3,13.700000000000001,0,0,0,0,0.268,100,140.06,0.13,987,2.6,176,0.9 +2012,4,29,17,30,13.600000000000001,0.33,0.08460000000000001,0.68,0,0,0,1,13.600000000000001,0,0,0,0,0.268,100,126.81,0.13,987,2.6,174,0.9 +2012,4,29,18,30,13.600000000000001,0.28,0.1034,0.68,0,0,0,1,13.600000000000001,0,0,0,0,0.268,100,113.51,0.13,988,2.5,170,0.9 +2012,4,29,19,30,13.600000000000001,0.23,0.12040000000000001,0.68,0,0,0,1,13.600000000000001,0,0,0,0,0.267,100,100.33,0.13,989,2.5,169,0.9 +2012,4,29,20,30,14.5,0.21,0.12480000000000001,0.68,21,58,24,2,14,15,0,3,15,0.266,97.04,87.22,0.13,989,2.4000000000000004,167,1.3 +2012,4,29,21,30,16.1,0.23,0.11950000000000001,0.68,75,484,200,1,14.4,75,484,0,200,0.265,89.78,75.05,0.13,990,2.4000000000000004,160,2 +2012,4,29,22,30,17.7,0.25,0.10930000000000001,0.68,96,686,402,1,14.5,96,686,0,402,0.265,81.8,63.6,0.13,990,2.3000000000000003,151,2.5 +2012,4,29,23,30,18.5,0.25,0.1022,0.68,107,783,572,1,14.600000000000001,107,783,0,572,0.265,78.24,53.6,0.13,990,2.3000000000000003,147,2.6 +2012,4,30,0,30,20.200000000000003,0.34,0.0806,0.68,103,855,696,1,14.600000000000001,103,855,0,696,0.264,70.38,46.08,0.14,990,2.2,142,2.7 +2012,4,30,1,30,20.8,0.34,0.077,0.68,104,875,751,1,14.700000000000001,104,875,0,751,0.264,67.95,42.38,0.14,989,2.2,140,2.6 +2012,4,30,2,30,21,0.36,0.0721,0.68,101,878,738,1,14.700000000000001,101,878,0,738,0.264,67.08,43.49,0.14,988,2.1,138,2.6 +2012,4,30,3,30,21,0.38,0.0703,0.68,95,855,655,1,14.600000000000001,95,855,0,655,0.264,66.74,49.1,0.14,988,2.1,136,2.5 +2012,4,30,4,30,20.6,0.41000000000000003,0.06720000000000001,0.68,85,805,513,3,14.4,311,132,0,381,0.263,67.61,57.89,0.14,988,2.1,133,2.5 +2012,4,30,5,30,19.6,0.44,0.0644,0.68,70,704,327,8,14.200000000000001,193,148,0,247,0.263,71.06,68.64,0.14,988,2,129,2.1 +2012,4,30,6,30,18.3,0.51,0.06570000000000001,0.68,45,458,121,1,14.3,45,458,0,121,0.264,77.67,80.52,0.14,989,2,126,1.4000000000000001 +2012,4,30,7,30,17.1,0.55,0.06280000000000001,0.68,0,0,0,3,14.4,0,0,0,0,0.264,83.91,93.24,0.14,990,2,127,1 +2012,4,30,8,30,16.400000000000002,0.5700000000000001,0.058100000000000006,0.68,0,0,0,8,14.100000000000001,0,0,0,0,0.263,86.02,106.27,0.14,991,2,131,1 +2012,4,30,9,30,15.8,0.59,0.054700000000000006,0.68,0,0,0,1,13.8,0,0,0,0,0.263,87.9,119.53,0.14,991,1.9000000000000001,138,0.9 +2012,4,30,10,30,15.3,0.58,0.0536,0.68,0,0,0,6,13.700000000000001,0,0,0,0,0.262,90.08,132.85,0.14,992,1.9000000000000001,144,0.9 +2012,4,30,11,30,14.700000000000001,0.53,0.0534,0.68,0,0,0,8,13.600000000000001,0,0,0,0,0.262,92.9,146,0.14,992,1.9000000000000001,149,0.8 +2012,4,30,12,30,14.200000000000001,0.48,0.0539,0.68,0,0,0,0,13.5,0,0,0,0,0.262,95.7,158.35,0.14,992,1.9000000000000001,153,0.8 +2012,4,30,13,30,13.700000000000001,0.44,0.055600000000000004,0.68,0,0,0,0,13.5,0,0,0,0,0.262,98.97,167.07,0.14,991,1.9000000000000001,157,0.7000000000000001 +2012,4,30,14,30,13.200000000000001,0.41000000000000003,0.0572,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.262,100,164.05,0.14,991,1.9000000000000001,159,0.7000000000000001 +2012,4,30,15,30,12.9,0.39,0.0582,0.68,0,0,0,0,12.9,0,0,0,0,0.263,100,153,0.14,991,1.9000000000000001,160,0.8 +2012,4,30,16,30,12.700000000000001,0.38,0.058800000000000005,0.68,0,0,0,1,12.700000000000001,0,0,0,0,0.264,100,140.16,0.14,991,1.8,160,0.8 +2012,4,30,17,30,12.5,0.38,0.058600000000000006,0.68,0,0,0,1,12.5,0,0,0,0,0.264,100,126.91,0.14,991,1.8,161,0.8 +2012,4,30,18,30,12.3,0.38,0.0584,0.68,0,0,0,1,12.3,0,0,0,0,0.265,100,113.60000000000001,0.14,991,1.8,163,0.8 +2012,4,30,19,30,12.3,0.38,0.0584,0.68,0,0,0,3,12.3,0,0,0,0,0.265,100,100.44,0.14,992,1.8,164,0.8 +2012,4,30,20,30,13.5,0.36,0.059300000000000005,0.68,19,160,27,1,12.9,19,160,0,27,0.265,95.86,87.33,0.14,992,1.8,164,1 +2012,4,30,21,30,15.700000000000001,0.36,0.058800000000000005,0.68,57,607,213,1,13.5,57,607,0,213,0.264,86.61,75.19,0.14,993,1.8,153,1.6 +2012,4,30,22,30,17.8,0.37,0.0572,0.68,75,771,415,1,14.3,75,771,0,415,0.264,80.03,63.77,0.14,993,1.9000000000000001,135,2 +2012,4,30,23,30,18.8,0.4,0.0541,0.68,83,852,587,1,14.8,83,852,0,587,0.263,77.37,53.82,0.14,993,1.9000000000000001,127,2.1 +2014,5,1,0,30,22.6,0.73,0.0709,0.68,95,869,696,1,16.7,95,869,0,696,0.263,69.54,46.22,0.14,982,2.3000000000000003,197,0.8 +2014,5,1,1,30,23.700000000000003,0.73,0.0709,0.68,97,885,749,1,16.1,97,885,0,749,0.263,62.38,42.53,0.14,981,2.3000000000000003,204,0.6000000000000001 +2014,5,1,2,30,24.200000000000003,0.75,0.0703,0.68,96,881,734,1,15.700000000000001,96,881,0,734,0.262,59.11,43.65,0.14,980,2.3000000000000003,217,0.5 +2014,5,1,3,30,24.200000000000003,0.8,0.07930000000000001,0.68,96,848,649,1,15.4,96,848,0,649,0.262,57.86,49.24,0.14,980,2.3000000000000003,230,0.4 +2014,5,1,4,30,23.900000000000002,0.8300000000000001,0.08650000000000001,0.68,90,782,504,1,15.200000000000001,90,782,0,504,0.261,58.28,58.02,0.14,980,2.4000000000000004,186,0.30000000000000004 +2014,5,1,5,30,23.1,0.8300000000000001,0.0857,0.68,74,673,318,1,15.4,74,673,0,318,0.261,61.9,68.75,0.14,980,2.4000000000000004,108,0.4 +2014,5,1,6,30,21.8,0.87,0.0959,0.68,48,406,114,3,16.5,67,58,3,76,0.261,71.88,80.62,0.14,980,2.5,78,0.6000000000000001 +2014,5,1,7,30,20.200000000000003,0.89,0.10450000000000001,0.68,0,0,0,0,16.900000000000002,0,0,0,0,0.26,81.34,93.32000000000001,0.14,981,2.5,75,0.7000000000000001 +2014,5,1,8,30,19.1,0.88,0.1051,0.68,0,0,0,0,17.2,0,0,0,0,0.259,88.96000000000001,106.35000000000001,0.14,981,2.6,77,0.7000000000000001 +2014,5,1,9,30,18.3,0.88,0.1051,0.68,0,0,0,0,17.3,0,0,0,0,0.258,93.72,119.61,0.14,982,2.6,76,0.7000000000000001 +2014,5,1,10,30,17.7,0.87,0.1056,0.68,0,0,0,0,17.3,0,0,0,0,0.257,97.2,132.93,0.14,982,2.6,76,0.7000000000000001 +2014,5,1,11,30,17.3,0.86,0.1048,0.68,0,0,0,0,17.3,0,0,0,0,0.256,99.77,146.08,0.14,981,2.6,77,0.6000000000000001 +2014,5,1,12,30,17,0.85,0.1044,0.68,0,0,0,0,17,0,0,0,0,0.254,100,158.46,0.14,981,2.6,77,0.6000000000000001 +2014,5,1,13,30,16.8,0.84,0.1019,0.68,0,0,0,0,16.8,0,0,0,0,0.254,100,167.22,0.14,980,2.7,73,0.6000000000000001 +2014,5,1,14,30,16.6,0.84,0.0989,0.68,0,0,0,4,16.6,0,0,0,0,0.253,100,164.16,0.14,979,2.8000000000000003,64,0.6000000000000001 +2014,5,1,15,30,16.5,0.85,0.1048,0.68,0,0,0,1,16.5,0,0,0,0,0.253,100,153.06,0.14,979,2.9000000000000004,45,0.6000000000000001 +2014,5,1,16,30,16.6,0.86,0.116,0.68,0,0,0,3,16.6,0,0,0,0,0.253,100,140.21,0.14,978,3.2,19,0.6000000000000001 +2014,5,1,17,30,16.8,0.87,0.1233,0.68,0,0,0,3,16.8,0,0,0,0,0.252,100,126.95,0.14,978,3.5,174,0.5 +2014,5,1,18,30,16.900000000000002,0.92,0.1458,0.68,0,0,0,8,16.900000000000002,0,0,0,0,0.251,100,113.65,0.14,978,3.7,339,0.5 +2014,5,1,19,30,17,0.92,0.15030000000000002,0.68,0,0,0,7,17,0,0,0,0,0.251,100,100.49000000000001,0.14,978,3.9000000000000004,334,0.5 +2014,5,1,20,30,17.400000000000002,0.88,0.1355,0.68,18,74,22,7,17.3,3,0,3,3,0.251,99.33,87.4,0.14,978,4,333,0.6000000000000001 +2014,5,1,21,30,17.900000000000002,0.87,0.12940000000000002,0.68,70,475,191,7,17.6,8,0,0,8,0.251,98.35000000000001,75.27,0.14,978,4,333,0.8 +2014,5,1,22,30,18.5,0.87,0.1087,0.68,88,677,387,7,18.1,16,0,0,16,0.251,97.22,63.86,0.14,978,4,327,1 +2014,5,1,23,30,18.900000000000002,0.88,0.09190000000000001,0.68,95,779,553,7,18.6,173,24,0,187,0.251,97.95,53.94,0.14,977,4,320,1.1 +2014,5,2,0,30,19.6,0.93,0.10110000000000001,0.68,106,814,666,7,18.900000000000002,349,32,0,371,0.253,95.94,46.480000000000004,0.14,976,3.9000000000000004,316,1.2000000000000002 +2014,5,2,1,30,20.3,0.96,0.10790000000000001,0.68,112,829,719,6,19.200000000000003,267,24,0,284,0.253,93.46000000000001,42.83,0.14,975,3.6,308,1.4000000000000001 +2014,5,2,2,30,21.200000000000003,0.96,0.10310000000000001,0.68,109,833,708,7,19.3,437,73,0,490,0.254,88.68,43.95,0.14,974,3.3000000000000003,300,1.6 +2014,5,2,3,30,21.8,0.96,0.1062,0.68,105,805,628,7,18.900000000000002,278,24,0,294,0.255,83.72,49.51,0.14,973,3.2,293,1.7000000000000002 +2014,5,2,4,30,21.6,0.9400000000000001,0.1179,0.68,100,733,486,6,18.5,118,23,0,130,0.255,82.5,58.25,0.14,972,3.2,281,1.4000000000000001 +2014,5,2,5,30,20.700000000000003,0.91,0.1306,0.68,86,601,302,7,18.6,93,17,0,99,0.256,87.56,68.96000000000001,0.14,972,3.1,266,1 +2014,5,2,6,30,19.400000000000002,0.88,0.1366,0.68,53,335,106,6,18.400000000000002,34,0,3,34,0.256,94.14,80.8,0.14,972,2.9000000000000004,255,0.9 +2014,5,2,7,30,18.2,0.87,0.12350000000000001,0.68,0,0,0,7,17.400000000000002,0,0,0,0,0.257,95.29,93.49,0.14,972,2.7,249,0.8 +2014,5,2,8,30,17.3,0.87,0.1033,0.68,0,0,0,7,16.5,0,0,0,0,0.257,95.11,106.5,0.14,973,2.4000000000000004,247,0.8 +2014,5,2,9,30,16.400000000000002,0.85,0.0892,0.68,0,0,0,7,15.5,0,0,0,0,0.257,94.31,119.75,0.14,973,2.2,247,0.9 +2014,5,2,10,30,15.700000000000001,0.8200000000000001,0.08,0.68,0,0,0,7,14.3,0,0,0,0,0.258,91.68,133.07,0.14,973,2,249,0.9 +2014,5,2,11,30,14.9,0.78,0.0751,0.68,0,0,0,4,13.3,0,0,0,0,0.258,89.97,146.24,0.14,973,1.8,254,0.9 +2014,5,2,12,30,14.200000000000001,0.74,0.075,0.68,0,0,0,0,12.200000000000001,0,0,0,0,0.259,87.87,158.66,0.14,972,1.6,262,0.9 +2014,5,2,13,30,13.3,0.71,0.0775,0.68,0,0,0,4,11.100000000000001,0,0,0,0,0.26,86.65,167.52,0.14,972,1.5,269,0.9 +2014,5,2,14,30,12.4,0.68,0.07730000000000001,0.68,0,0,0,8,9.9,0,0,0,0,0.261,84.81,164.38,0.14,972,1.5,274,0.9 +2014,5,2,15,30,11.700000000000001,0.67,0.07350000000000001,0.68,0,0,0,1,8.9,0,0,0,0,0.261,82.82000000000001,153.19,0.14,972,1.4000000000000001,277,0.9 +2014,5,2,16,30,11.200000000000001,0.66,0.0673,0.68,0,0,0,3,8.1,0,0,0,0,0.262,81.24,140.31,0.14,971,1.3,281,0.9 +2014,5,2,17,30,10.700000000000001,0.6900000000000001,0.057100000000000005,0.68,0,0,0,3,7.5,0,0,0,0,0.262,80.86,127.04,0.14,971,1.2000000000000002,284,0.9 +2014,5,2,18,30,10.5,0.75,0.0477,0.68,0,0,0,1,7.2,0,0,0,0,0.263,79.83,113.75,0.14,972,1.2000000000000002,281,1 +2014,5,2,19,30,10.600000000000001,0.65,0.0495,0.68,0,0,0,1,7,0,0,0,0,0.263,78.28,100.60000000000001,0.14,972,1.2000000000000002,277,1.1 +2014,5,2,20,30,11.600000000000001,0.37,0.0709,0.68,19,134,24,1,7.2,19,134,0,24,0.264,74.62,87.51,0.14,973,1.2000000000000002,276,1.5 +2014,5,2,21,30,13.3,0.22,0.0917,0.68,67,552,206,1,8.3,67,552,0,206,0.266,71.84,75.41,0.14,974,1.2000000000000002,273,2.4000000000000004 +2014,5,2,22,30,14.700000000000001,0.22,0.0886,0.68,88,742,413,1,9,88,742,0,413,0.268,68.73,64.04,0.14,974,1.1,269,3.1 +2014,5,2,23,30,15.4,0.25,0.0752,0.68,93,846,589,1,8.5,93,846,0,589,0.269,63.34,54.15,0.14,974,1.1,267,3.3000000000000003 +2014,5,3,0,30,16.900000000000002,0.27,0.0697,0.68,97,894,710,1,7.1000000000000005,97,894,0,710,0.272,52.370000000000005,46.74,0.13,973,1.1,267,3.7 +2014,5,3,1,30,17.5,0.27,0.0655,0.68,97,914,764,1,5.800000000000001,97,914,0,764,0.273,46.13,43.12,0.13,973,1.1,269,3.8000000000000003 +2014,5,3,2,30,17.900000000000002,0.27,0.062200000000000005,0.68,95,913,749,1,4.800000000000001,95,913,0,749,0.275,41.93,44.24,0.13,972,1.1,271,3.8000000000000003 +2014,5,3,3,30,17.900000000000002,0.23,0.0582,0.68,89,892,665,1,4.1000000000000005,89,892,0,665,0.275,39.94,49.78,0.13,972,1.1,272,3.7 +2014,5,3,4,30,17.6,0.23,0.055600000000000004,0.68,80,842,520,8,3.6,310,203,0,416,0.275,39.42,58.49,0.13,972,1.1,272,3.5 +2014,5,3,5,30,16.6,0.26,0.0519,0.68,65,741,329,1,3.3000000000000003,65,741,0,329,0.275,41.160000000000004,69.16,0.13,973,1.1,271,3 +2014,5,3,6,30,14.8,0.31,0.048400000000000006,0.68,41,496,118,1,3.3000000000000003,41,496,0,118,0.275,46.15,80.97,0.13,973,1.2000000000000002,268,2.1 +2014,5,3,7,30,13,0.4,0.0454,0.68,0,0,0,0,3.9000000000000004,0,0,0,0,0.274,54.160000000000004,93.65,0.13,975,1.2000000000000002,265,1.4000000000000001 +2014,5,3,8,30,12,0.48,0.0419,0.68,0,0,0,0,4.1000000000000005,0,0,0,0,0.273,58.52,106.65,0.13,976,1.1,264,1.2000000000000002 +2014,5,3,9,30,11.200000000000001,0.56,0.038400000000000004,0.68,0,0,0,0,4.1000000000000005,0,0,0,0,0.274,61.800000000000004,119.89,0.13,977,1.1,263,1.1 +2014,5,3,10,30,10.600000000000001,0.61,0.0354,0.68,0,0,0,0,4.1000000000000005,0,0,0,0,0.276,64.05,133.21,0.13,977,1.1,261,1.1 +2014,5,3,11,30,9.9,0.63,0.0335,0.68,0,0,0,0,4,0,0,0,0,0.277,66.65,146.39000000000001,0.13,978,1,261,1.1 +2014,5,3,12,30,9.3,0.61,0.033,0.68,0,0,0,0,3.8000000000000003,0,0,0,0,0.279,68.69,158.86,0.13,978,1,263,1.1 +2014,5,3,13,30,8.700000000000001,0.56,0.0346,0.68,0,0,0,0,3.7,0,0,0,0,0.28,70.7,167.81,0.13,978,0.9,267,1 +2014,5,3,14,30,8.1,0.5,0.038200000000000005,0.68,0,0,0,0,3.6,0,0,0,0,0.281,73.26,164.6,0.13,978,0.9,270,1 +2014,5,3,15,30,7.6000000000000005,0.46,0.041100000000000005,0.68,0,0,0,0,3.5,0,0,0,0,0.28200000000000003,75.47,153.32,0.13,978,0.9,271,1.1 +2014,5,3,16,30,7.1000000000000005,0.43,0.0413,0.68,0,0,0,0,3.5,0,0,0,0,0.28200000000000003,77.83,140.41,0.13,978,0.8,275,1.1 +2014,5,3,17,30,6.6000000000000005,0.44,0.0398,0.68,0,0,0,0,3.5,0,0,0,0,0.281,80.45,127.13000000000001,0.13,978,0.8,279,1 +2014,5,3,18,30,6.2,0.47000000000000003,0.0378,0.68,0,0,0,0,3.4000000000000004,0,0,0,0,0.28200000000000003,82.44,113.84,0.13,979,0.7000000000000001,279,1 +2014,5,3,19,30,6,0.5,0.0364,0.68,0,0,0,0,3.4000000000000004,0,0,0,0,0.28400000000000003,83.17,100.7,0.13,979,0.7000000000000001,277,1.1 +2014,5,3,20,30,7,0.53,0.034800000000000005,0.68,17,243,27,1,3.4000000000000004,17,243,0,27,0.28700000000000003,77.81,87.62,0.13,980,0.7000000000000001,275,1.5 +2014,5,3,21,30,9.5,0.58,0.0318,0.68,47,697,221,1,3.6,47,697,0,221,0.289,66.47,75.55,0.13,981,0.8,267,2.5 +2014,5,3,22,30,11.9,0.66,0.028300000000000002,0.68,60,853,431,1,3.1,60,853,0,431,0.29,55.03,64.22,0.13,981,0.8,259,3.4000000000000004 +2014,5,3,23,30,12.9,0.71,0.025900000000000003,0.68,66,921,603,1,2.9000000000000004,66,921,0,603,0.29,50.81,54.370000000000005,0.13,981,0.9,258,3.6 +2014,5,4,0,30,15.100000000000001,0.62,0.0315,0.68,75,944,719,1,3.4000000000000004,75,944,0,719,0.28800000000000003,45.35,47,0.14,980,1,259,3.8000000000000003 +2014,5,4,1,30,16.2,0.62,0.0322,0.68,78,956,772,0,4,78,956,0,772,0.28600000000000003,44.26,43.410000000000004,0.14,980,1,258,3.8000000000000003 +2014,5,4,2,30,16.900000000000002,0.63,0.0317,0.68,77,953,756,0,4.5,77,953,0,756,0.28500000000000003,43.93,44.53,0.14,979,1,257,3.7 +2014,5,4,3,30,17.3,0.5700000000000001,0.0367,0.68,76,924,670,1,4.800000000000001,76,924,0,670,0.28300000000000003,43.54,50.04,0.14,979,1,257,3.5 +2014,5,4,4,30,17.2,0.58,0.0383,0.68,70,869,521,1,4.800000000000001,70,869,0,521,0.28200000000000003,44.04,58.72,0.14,980,1.1,257,3.3000000000000003 +2014,5,4,5,30,16.400000000000002,0.64,0.0397,0.68,59,767,329,0,4.800000000000001,59,767,0,329,0.281,46.29,69.36,0.14,980,1.1,257,2.7 +2014,5,4,6,30,14.600000000000001,0.75,0.0409,0.68,37,528,119,1,5.1000000000000005,37,528,0,119,0.279,53,81.15,0.14,980,1.1,257,1.7000000000000002 +2014,5,4,7,30,12.8,0.89,0.0426,0.68,0,0,0,0,5.5,0,0,0,0,0.278,61.24,93.8,0.14,981,1,258,1.2000000000000002 +2014,5,4,8,30,11.8,1.02,0.0443,0.68,0,0,0,0,5.4,0,0,0,0,0.276,64.9,106.79,0.14,982,1,259,1.1 +2014,5,4,9,30,11,1.09,0.0449,0.68,0,0,0,0,5.4,0,0,0,0,0.274,68.38,120.03,0.14,983,1,262,1 +2014,5,4,10,30,10.3,1.11,0.0442,0.68,0,0,0,0,5.4,0,0,0,0,0.272,71.7,133.35,0.14,983,0.9,266,0.9 +2014,5,4,11,30,9.600000000000001,1.07,0.0422,0.68,0,0,0,0,5.4,0,0,0,0,0.27,75.21000000000001,146.54,0.14,983,0.9,269,0.9 +2014,5,4,12,30,9,0.99,0.0392,0.68,0,0,0,0,5.4,0,0,0,0,0.269,78.15,159.05,0.14,983,0.9,268,0.9 +2014,5,4,13,30,8.4,0.89,0.0361,0.68,0,0,0,0,5.4,0,0,0,0,0.269,81.24,168.09,0.14,984,0.9,265,0.9 +2014,5,4,14,30,8,0.8300000000000001,0.0341,0.68,0,0,0,0,5.300000000000001,0,0,0,0,0.269,83.31,164.8,0.14,984,0.9,263,0.9 +2014,5,4,15,30,7.6000000000000005,0.8,0.0332,0.68,0,0,0,0,5.300000000000001,0,0,0,0,0.269,85.53,153.44,0.14,984,0.9,263,0.9 +2014,5,4,16,30,7.300000000000001,0.8,0.0328,0.68,0,0,0,0,5.300000000000001,0,0,0,0,0.269,87.23,140.5,0.14,984,0.9,263,0.9 +2014,5,4,17,30,7,0.8300000000000001,0.0325,0.68,0,0,0,0,5.300000000000001,0,0,0,0,0.269,89.10000000000001,127.23,0.14,984,0.8,263,0.9 +2014,5,4,18,30,6.7,0.85,0.0322,0.68,0,0,0,0,5.300000000000001,0,0,0,0,0.27,91.09,113.93,0.14,985,0.8,265,0.9 +2014,5,4,19,30,6.5,0.88,0.032,0.68,0,0,0,0,5.4,0,0,0,0,0.271,92.37,100.81,0.14,986,0.8,269,0.8 +2014,5,4,20,30,7.7,0.9,0.031900000000000005,0.68,16,260,26,1,5.4,16,260,0,26,0.271,85.34,87.73,0.14,987,0.8,273,1 +2014,5,4,21,30,10.5,0.92,0.0316,0.68,47,695,218,1,5.7,47,695,0,218,0.271,72.36,75.7,0.14,987,0.9,265,1.4000000000000001 +2014,5,4,22,30,13.5,0.9500000000000001,0.031100000000000003,0.68,61,845,426,1,5.6000000000000005,61,845,0,426,0.271,59.02,64.4,0.14,987,0.9,251,1.9000000000000001 +2014,5,4,23,30,14.9,0.99,0.031200000000000002,0.68,69,910,596,0,4.9,69,910,0,596,0.271,51.03,54.59,0.14,987,1,246,2.2 +2014,5,5,0,30,17.3,0.86,0.035500000000000004,0.68,77,939,714,0,4.3,77,939,0,714,0.271,42.230000000000004,47.26,0.14,987,1,251,2.1 +2014,5,5,1,30,18.5,0.85,0.0354,0.68,79,949,765,0,4.2,79,949,0,765,0.27,38.84,43.7,0.14,986,1.1,255,2 +2014,5,5,2,30,19.3,0.8300000000000001,0.035,0.68,78,945,749,0,4.3,78,945,0,749,0.27,37.27,44.82,0.14,985,1.1,259,2 +2014,5,5,3,30,19.6,0.89,0.033800000000000004,0.68,74,924,664,0,4.5,74,924,0,664,0.269,37.1,50.300000000000004,0.14,985,1.1,259,2 +2014,5,5,4,30,19.400000000000002,0.86,0.0376,0.68,69,871,518,0,4.7,69,871,0,518,0.268,37.95,58.94,0.14,984,1.1,257,1.8 +2014,5,5,5,30,18.2,0.84,0.0413,0.68,59,764,326,3,4.9,181,117,0,222,0.267,41.64,69.55,0.14,985,1.1,256,1.3 +2014,5,5,6,30,16.2,0.8200000000000001,0.046400000000000004,0.68,38,511,116,8,7.4,51,10,3,53,0.266,55.77,81.31,0.14,985,1.1,259,0.8 +2014,5,5,7,30,14.5,0.84,0.0523,0.68,0,0,0,8,7,0,0,0,0,0.265,60.660000000000004,93.95,0.14,986,1.1,262,0.7000000000000001 +2014,5,5,8,30,13.4,0.87,0.057800000000000004,0.68,0,0,0,4,6.5,0,0,0,0,0.264,63.15,106.93,0.14,987,1.1,261,0.8 +2014,5,5,9,30,12.600000000000001,0.91,0.0626,0.68,0,0,0,4,6.1000000000000005,0,0,0,0,0.263,64.58,120.16,0.14,988,1.1,257,0.8 +2014,5,5,10,30,11.9,0.93,0.0661,0.68,0,0,0,0,5.800000000000001,0,0,0,0,0.263,66.14,133.48,0.14,988,1.1,253,0.8 +2014,5,5,11,30,11.100000000000001,0.92,0.06760000000000001,0.68,0,0,0,0,5.5,0,0,0,0,0.262,68.31,146.68,0.14,988,1.1,249,0.8 +2014,5,5,12,30,10.4,0.89,0.0673,0.68,0,0,0,0,5.1000000000000005,0,0,0,0,0.262,69.79,159.23,0.14,988,1,244,0.8 +2014,5,5,13,30,9.700000000000001,0.85,0.06620000000000001,0.68,0,0,0,1,4.800000000000001,0,0,0,0,0.261,71.47,168.37,0.14,988,1,240,0.8 +2014,5,5,14,30,8.9,0.81,0.0648,0.68,0,0,0,0,4.5,0,0,0,0,0.261,73.71000000000001,165.01,0.14,988,1,239,0.8 +2014,5,5,15,30,8.3,0.78,0.0627,0.68,0,0,0,0,4.2,0,0,0,0,0.26,75.22,153.57,0.14,987,1,239,0.8 +2014,5,5,16,30,7.800000000000001,0.75,0.059500000000000004,0.68,0,0,0,0,3.9000000000000004,0,0,0,0,0.258,76.46000000000001,140.6,0.14,987,0.9,238,0.7000000000000001 +2014,5,5,17,30,7.300000000000001,0.73,0.0563,0.68,0,0,0,0,3.7,0,0,0,0,0.256,78.02,127.31,0.14,987,0.9,238,0.7000000000000001 +2014,5,5,18,30,6.9,0.73,0.0533,0.68,0,0,0,0,3.6,0,0,0,0,0.256,79.44,114.03,0.14,987,0.9,240,0.7000000000000001 +2014,5,5,19,30,6.6000000000000005,0.73,0.0505,0.68,0,0,0,1,3.6,0,0,0,0,0.256,80.97,100.91,0.14,988,0.9,241,0.7000000000000001 +2014,5,5,20,30,7.7,0.75,0.0478,0.68,16,195,23,1,3.7,16,195,0,23,0.256,75.9,87.84,0.14,988,0.9,241,1 +2014,5,5,21,30,10.3,0.78,0.044500000000000005,0.68,51,664,213,1,4.1000000000000005,51,664,0,213,0.255,65.2,75.84,0.14,989,0.9,239,1.3 +2014,5,5,22,30,13.5,0.81,0.041600000000000005,0.68,65,822,419,1,4.5,65,822,0,419,0.255,54.65,64.57000000000001,0.14,988,1,225,1.3 +2014,5,5,23,30,15.200000000000001,0.8300000000000001,0.04,0.68,74,897,591,0,5.7,74,897,0,591,0.255,52.97,54.800000000000004,0.14,988,1,215,1.2000000000000002 +2014,5,6,0,30,18.2,0.89,0.0426,0.68,80,931,709,0,6.2,80,931,0,709,0.255,45.56,47.51,0.14,987,1,225,0.7000000000000001 +2014,5,6,1,30,19.200000000000003,0.93,0.0482,0.68,85,936,758,1,6.1000000000000005,85,936,0,758,0.255,42.480000000000004,43.980000000000004,0.14,986,1.1,240,0.7000000000000001 +2014,5,6,2,30,19.6,0.96,0.0539,0.68,87,926,741,0,5.800000000000001,87,926,0,741,0.254,40.47,45.1,0.14,985,1.1,253,0.7000000000000001 +2014,5,6,3,30,19.6,0.98,0.0468,0.68,80,910,658,1,5.6000000000000005,80,910,0,658,0.253,39.82,50.56,0.14,985,1.1,259,0.8 +2014,5,6,4,30,19.3,1,0.0507,0.68,74,850,510,1,5.5,74,850,0,510,0.252,40.38,59.160000000000004,0.14,985,1.2000000000000002,256,0.8 +2014,5,6,5,30,18.400000000000002,1,0.0531,0.68,62,742,319,1,6,62,742,0,319,0.251,44.09,69.74,0.14,985,1.2000000000000002,263,0.5 +2014,5,6,6,30,16.6,1,0.0524,0.68,39,492,112,8,8.4,50,8,3,51,0.25,58.5,81.48,0.14,985,1.3,281,0.4 +2014,5,6,7,30,15,1,0.051800000000000006,0.68,0,0,0,8,7.7,0,0,0,0,0.249,61.550000000000004,94.10000000000001,0.14,985,1.3,284,0.5 +2014,5,6,8,30,14.200000000000001,1,0.0522,0.68,0,0,0,4,6.9,0,0,0,0,0.249,61.32,107.06,0.14,986,1.4000000000000001,271,0.5 +2014,5,6,9,30,13.4,1,0.0533,0.68,0,0,0,3,6.7,0,0,0,0,0.249,63.89,120.28,0.14,986,1.4000000000000001,258,0.6000000000000001 +2014,5,6,10,30,12.600000000000001,0.99,0.0534,0.68,0,0,0,1,6.7,0,0,0,0,0.25,67.25,133.6,0.14,987,1.4000000000000001,250,0.6000000000000001 +2014,5,6,11,30,11.8,0.99,0.0548,0.68,0,0,0,8,6.7,0,0,0,0,0.251,70.94,146.82,0.14,987,1.5,245,0.6000000000000001 +2014,5,6,12,30,11.3,0.99,0.056100000000000004,0.68,0,0,0,8,6.6000000000000005,0,0,0,0,0.253,73,159.41,0.14,987,1.5,238,0.6000000000000001 +2014,5,6,13,30,10.9,1,0.0572,0.68,0,0,0,7,6.7,0,0,0,0,0.255,75.32000000000001,168.64000000000001,0.14,986,1.6,231,0.6000000000000001 +2014,5,6,14,30,10.600000000000001,1.01,0.059000000000000004,0.68,0,0,0,4,6.800000000000001,0,0,0,0,0.256,77.14,165.21,0.14,986,1.6,227,0.6000000000000001 +2014,5,6,15,30,10.4,1.01,0.0592,0.68,0,0,0,7,6.9,0,0,0,0,0.256,78.86,153.69,0.14,986,1.7000000000000002,224,0.6000000000000001 +2014,5,6,16,30,10.3,1.02,0.0613,0.68,0,0,0,4,7.1000000000000005,0,0,0,0,0.256,80.38,140.69,0.14,986,1.8,222,0.6000000000000001 +2014,5,6,17,30,10.3,1.02,0.0634,0.68,0,0,0,4,7.300000000000001,0,0,0,0,0.256,81.53,127.4,0.14,986,1.8,213,0.6000000000000001 +2014,5,6,18,30,10.3,1.02,0.061700000000000005,0.68,0,0,0,8,7.6000000000000005,0,0,0,0,0.256,83.13,114.12,0.14,986,1.9000000000000001,203,0.6000000000000001 +2014,5,6,19,30,10.4,1.01,0.060000000000000005,0.68,0,0,0,8,7.9,0,0,0,0,0.257,84.45,101.02,0.14,987,1.9000000000000001,201,0.6000000000000001 +2014,5,6,20,30,11.100000000000001,1,0.060200000000000004,0.68,15,156,21,7,8.200000000000001,10,0,3,10,0.258,82.49,87.96000000000001,0.14,987,1.9000000000000001,198,0.8 +2014,5,6,21,30,12.9,0.97,0.0538,0.68,51,614,200,7,8.6,89,23,3,95,0.26,75.12,75.99,0.14,987,1.9000000000000001,182,1.1 +2014,5,6,22,30,15.600000000000001,0.9500000000000001,0.046700000000000005,0.68,66,785,401,8,9.3,197,41,0,215,0.261,66,64.75,0.14,988,1.9000000000000001,157,1.6 +2014,5,6,23,30,17.1,0.9400000000000001,0.0439,0.68,74,863,569,8,10.4,236,25,0,250,0.262,64.82000000000001,55.01,0.14,987,1.9000000000000001,144,1.9000000000000001 +2014,5,7,0,30,19.700000000000003,0.72,0.0654,0.68,91,872,678,3,11.100000000000001,353,39,0,379,0.263,57.69,47.76,0.14,987,2,125,2 +2014,5,7,1,30,20.5,0.71,0.0722,0.68,97,881,728,8,11.4,447,199,0,590,0.264,55.730000000000004,44.25,0.14,986,2,117,2 +2014,5,7,2,30,20.8,0.7000000000000001,0.0799,0.68,100,866,708,2,11.3,472,188,0,604,0.264,54.64,45.37,0.14,985,2.1,116,1.9000000000000001 +2014,5,7,3,30,20.8,0.78,0.0747,0.68,93,843,625,2,11.3,389,157,0,488,0.263,54.58,50.81,0.14,985,2.2,117,1.9000000000000001 +2014,5,7,4,30,20.400000000000002,0.78,0.0835,0.68,87,776,483,1,11.4,87,776,0,483,0.262,56.26,59.38,0.14,985,2.2,120,1.8 +2014,5,7,5,30,19.6,0.76,0.0848,0.68,72,655,297,1,11.600000000000001,72,655,0,297,0.261,60.01,69.93,0.14,985,2.3000000000000003,123,1.4000000000000001 +2014,5,7,6,30,18.2,0.75,0.078,0.68,43,400,101,3,12.700000000000001,57,48,3,64,0.259,70.32000000000001,81.64,0.14,986,2.3000000000000003,128,0.9 +2014,5,7,7,30,17,0.74,0.0801,0.68,0,0,0,3,12.9,0,0,0,0,0.258,76.82000000000001,94.24,0.14,987,2.3000000000000003,134,0.8 +2014,5,7,8,30,16.400000000000002,0.71,0.0809,0.68,0,0,0,3,12.8,0,0,0,0,0.258,79.21000000000001,107.19,0.14,987,2.3000000000000003,139,0.9 +2014,5,7,9,30,15.8,0.68,0.0814,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.258,81.55,120.4,0.14,988,2.3000000000000003,143,0.9 +2014,5,7,10,30,15.200000000000001,0.65,0.08020000000000001,0.68,0,0,0,0,12.5,0,0,0,0,0.258,83.81,133.72,0.14,988,2.3000000000000003,147,0.9 +2014,5,7,11,30,14.700000000000001,0.62,0.07780000000000001,0.68,0,0,0,0,12.4,0,0,0,0,0.258,85.91,146.95000000000002,0.14,988,2.2,151,0.9 +2014,5,7,12,30,14.100000000000001,0.59,0.0751,0.68,0,0,0,0,12.4,0,0,0,0,0.258,89.43,159.58,0.14,988,2.2,154,0.9 +2014,5,7,13,30,13.600000000000001,0.55,0.0726,0.68,0,0,0,0,12.5,0,0,0,0,0.257,93.13,168.91,0.14,988,2.2,156,0.8 +2014,5,7,14,30,13.100000000000001,0.51,0.0713,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.256,97.49000000000001,165.4,0.14,987,2.3000000000000003,159,0.8 +2014,5,7,15,30,12.700000000000001,0.47000000000000003,0.0743,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.256,100,153.8,0.14,987,2.3000000000000003,164,0.8 +2014,5,7,16,30,12.5,0.43,0.0814,0.68,0,0,0,0,12.5,0,0,0,0,0.255,100,140.79,0.14,987,2.3000000000000003,168,0.8 +2014,5,7,17,30,12.5,0.4,0.08850000000000001,0.68,0,0,0,1,12.5,0,0,0,0,0.256,100,127.49000000000001,0.14,987,2.4000000000000004,170,0.8 +2014,5,7,18,30,12.5,0.39,0.0978,0.68,0,0,0,0,12.5,0,0,0,0,0.256,100,114.22,0.14,988,2.4000000000000004,172,0.8 +2014,5,7,19,30,12.600000000000001,0.37,0.10490000000000001,0.68,0,0,0,1,12.600000000000001,0,0,0,0,0.257,100,101.12,0.14,989,2.4000000000000004,174,0.8 +2014,5,7,20,30,13.5,0.33,0.1076,0.68,16,46,17,1,13,16,46,1,17,0.258,96.67,88.07000000000001,0.14,989,2.4000000000000004,171,1.3 +2014,5,7,21,30,15.200000000000001,0.33,0.11030000000000001,0.68,68,478,183,1,13.100000000000001,68,478,0,183,0.258,87.33,76.13,0.14,989,2.4000000000000004,162,2 +2014,5,7,22,30,16.7,0.33,0.1081,0.68,92,670,376,1,13.200000000000001,92,670,1,376,0.258,79.64,64.92,0.14,989,2.5,152,2.4000000000000004 +2014,5,7,23,30,17.5,0.33,0.1042,0.68,105,765,541,1,13.200000000000001,105,765,1,541,0.258,75.81,55.22,0.14,989,2.5,146,2.6 +2014,5,8,0,30,19,0.51,0.0868,0.68,102,831,658,1,13.200000000000001,102,831,0,658,0.259,68.95,48.01,0.14,989,2.6,135,2.8000000000000003 +2014,5,8,1,30,19.3,0.52,0.0891,0.68,106,845,709,1,13,106,845,1,709,0.259,66.92,44.53,0.14,988,2.6,132,2.7 +2014,5,8,2,30,19.1,0.51,0.0917,0.68,107,835,691,8,12.9,297,24,0,314,0.26,67.38,45.64,0.14,988,2.7,130,2.6 +2014,5,8,3,30,18.7,0.49,0.1014,0.68,106,797,607,3,12.9,213,24,0,228,0.26,69.15,51.050000000000004,0.14,987,2.7,131,2.5 +2014,5,8,4,30,18.3,0.43,0.1012,0.68,97,733,467,3,13,208,26,0,221,0.261,71.3,59.59,0.14,987,2.7,132,2.3000000000000003 +2014,5,8,5,30,17.6,0.38,0.10020000000000001,0.68,79,608,286,8,13.100000000000001,166,74,0,191,0.262,74.69,70.11,0.14,988,2.7,135,1.8 +2014,5,8,6,30,16.6,0.37,0.09770000000000001,0.68,46,330,93,1,13.200000000000001,46,330,0,93,0.263,80.5,81.79,0.14,988,2.7,140,1.2000000000000002 +2014,5,8,7,30,15.600000000000001,0.37,0.0902,0.68,0,0,0,1,13.200000000000001,0,0,0,0,0.264,85.87,94.38,0.14,989,2.6,143,0.9 +2014,5,8,8,30,15,0.39,0.08360000000000001,0.68,0,0,0,3,13,0,0,0,0,0.265,87.88,107.32000000000001,0.14,989,2.6,146,0.9 +2014,5,8,9,30,14.5,0.4,0.0796,0.68,0,0,0,3,12.8,0,0,0,0,0.267,89.60000000000001,120.52,0.14,990,2.5,149,0.8 +2014,5,8,10,30,14,0.4,0.0781,0.68,0,0,0,1,12.600000000000001,0,0,0,0,0.268,91.43,133.84,0.14,990,2.4000000000000004,154,0.8 +2014,5,8,11,30,13.5,0.39,0.0779,0.68,0,0,0,1,12.5,0,0,0,0,0.269,93.47,147.07,0.14,990,2.4000000000000004,161,0.8 +2014,5,8,12,30,13.100000000000001,0.37,0.07830000000000001,0.68,0,0,0,1,12.3,0,0,0,0,0.27,95.18,159.74,0.14,990,2.3000000000000003,169,0.8 +2014,5,8,13,30,12.700000000000001,0.37,0.0766,0.68,0,0,0,4,12.200000000000001,0,0,0,0,0.271,96.93,169.17000000000002,0.14,990,2.2,167,0.8 +2014,5,8,14,30,12.3,0.38,0.0722,0.68,0,0,0,4,12.100000000000001,0,0,0,0,0.272,98.4,165.59,0.14,989,2.1,159,0.8 +2014,5,8,15,30,12,0.39,0.0669,0.68,0,0,0,4,11.9,0,0,0,0,0.271,99.48,153.92000000000002,0.14,989,2,157,0.8 +2014,5,8,16,30,11.600000000000001,0.4,0.06380000000000001,0.68,0,0,0,4,11.600000000000001,0,0,0,0,0.269,100,140.88,0.14,989,2,166,0.8 +2014,5,8,17,30,11.3,0.41000000000000003,0.06430000000000001,0.68,0,0,0,0,11.3,0,0,0,0,0.266,100,127.58,0.14,989,2,176,0.8 +2014,5,8,18,30,11.100000000000001,0.42,0.06570000000000001,0.68,0,0,0,1,11.100000000000001,0,0,0,0,0.264,100,114.31,0.14,990,2,179,0.8 +2014,5,8,19,30,11.100000000000001,0.44,0.0635,0.68,0,0,0,1,11.100000000000001,0,0,0,0,0.262,100,101.22,0.14,990,2,175,0.8 +2014,5,8,20,30,12,0.43,0.057100000000000005,0.68,15,115,19,1,11.200000000000001,15,115,1,19,0.259,95.17,88.18,0.14,991,1.9000000000000001,172,1.1 +2014,5,8,21,30,14.3,0.43,0.051000000000000004,0.68,52,601,195,1,11.600000000000001,52,601,1,195,0.257,84.03,76.27,0.14,991,1.8,165,1.6 +2014,5,8,22,30,16.900000000000002,0.43,0.0463,0.68,68,779,396,1,12.100000000000001,68,779,0,396,0.257,73.17,65.09,0.14,991,1.7000000000000002,146,2.1 +2014,5,8,23,30,18.2,0.43,0.0442,0.68,77,859,564,0,12.100000000000001,77,859,0,564,0.257,67.67,55.43,0.14,991,1.7000000000000002,135,2.4000000000000004 +2014,5,9,0,30,20.400000000000002,0.45,0.0446,0.68,82,896,679,0,11.700000000000001,82,896,0,679,0.257,57.42,48.25,0.14,991,1.7000000000000002,126,2.5 +2014,5,9,1,30,21.200000000000003,0.47000000000000003,0.0449,0.68,85,914,733,1,11.3,85,914,0,733,0.256,53.230000000000004,44.79,0.14,990,1.6,121,2.4000000000000004 +2014,5,9,2,30,21.5,0.5,0.0432,0.68,83,912,717,0,11,83,912,0,717,0.254,51.28,45.910000000000004,0.14,989,1.6,117,2.4000000000000004 +2014,5,9,3,30,21.5,0.48,0.0471,0.68,81,882,633,1,10.8,81,882,0,633,0.253,50.64,51.29,0.14,988,1.6,116,2.4000000000000004 +2014,5,9,4,30,21.1,0.5,0.046900000000000004,0.68,74,830,491,1,10.8,74,830,0,491,0.251,51.7,59.800000000000004,0.14,988,1.6,116,2.3000000000000003 +2014,5,9,5,30,19.900000000000002,0.52,0.0497,0.68,62,714,303,8,10.8,160,63,0,181,0.25,55.88,70.29,0.14,988,1.7000000000000002,115,1.7000000000000002 +2014,5,9,6,30,18.1,0.55,0.0528,0.68,39,446,101,8,11.9,52,27,3,56,0.25,67.22,81.94,0.14,989,1.7000000000000002,113,1 +2014,5,9,7,30,16.900000000000002,0.5700000000000001,0.0529,0.68,0,0,0,1,12.4,0,0,0,0,0.249,74.65,94.51,0.14,989,1.8,116,0.8 +2014,5,9,8,30,16.3,0.5700000000000001,0.0522,0.68,0,0,0,3,12.600000000000001,0,0,0,0,0.249,78.56,107.44,0.14,990,1.8,121,0.8 +2014,5,9,9,30,15.600000000000001,0.56,0.0505,0.68,0,0,0,3,12.600000000000001,0,0,0,0,0.249,82.39,120.63,0.14,991,1.8,127,0.8 +2014,5,9,10,30,14.9,0.54,0.0477,0.68,0,0,0,1,12.5,0,0,0,0,0.249,85.67,133.95,0.14,991,1.8,133,0.8 +2014,5,9,11,30,14.200000000000001,0.52,0.0451,0.68,0,0,0,1,12.3,0,0,0,0,0.249,88.43,147.19,0.14,991,1.8,139,0.8 +2014,5,9,12,30,13.700000000000001,0.52,0.042300000000000004,0.68,0,0,0,3,12.200000000000001,0,0,0,0,0.25,90.81,159.9,0.14,991,1.8,142,0.8 +2014,5,9,13,30,13.3,0.55,0.040600000000000004,0.68,0,0,0,3,12.200000000000001,0,0,0,0,0.25,92.87,169.43,0.14,990,1.7000000000000002,145,0.8 +2014,5,9,14,30,13,0.55,0.04,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.25,94.45,165.78,0.14,990,1.7000000000000002,153,0.8 +2014,5,9,15,30,12.5,0.54,0.0398,0.68,0,0,0,0,12,0,0,0,0,0.251,97.04,154.03,0.14,990,1.7000000000000002,163,0.8 +2014,5,9,16,30,12.200000000000001,0.54,0.0413,0.68,0,0,0,8,11.9,0,0,0,0,0.251,98.16,140.97,0.14,990,1.8,170,0.8 +2014,5,9,17,30,12,0.55,0.043300000000000005,0.68,0,0,0,7,11.8,0,0,0,0,0.251,98.76,127.67,0.14,990,1.8,173,0.7000000000000001 +2014,5,9,18,30,12,0.58,0.046,0.68,0,0,0,7,11.8,0,0,0,0,0.252,98.44,114.4,0.14,990,1.8,172,0.7000000000000001 +2014,5,9,19,30,12,0.61,0.0482,0.68,0,0,0,6,11.700000000000001,0,0,0,0,0.252,98.3,101.33,0.14,991,1.8,169,0.7000000000000001 +2014,5,9,20,30,12.8,0.62,0.0482,0.68,14,139,18,7,11.700000000000001,10,10,3,10,0.252,93.22,88.29,0.14,992,1.8,171,0.8 +2014,5,9,21,30,14.4,0.61,0.0472,0.68,50,608,193,3,12.100000000000001,49,0,3,49,0.253,86.03,76.42,0.14,992,1.9000000000000001,174,1 +2014,5,9,22,30,15.8,0.63,0.0483,0.68,67,769,389,4,12.4,110,19,0,118,0.254,80.28,65.26,0.14,992,2,160,1.1 +2014,5,9,23,30,16.5,0.66,0.051000000000000004,0.68,78,843,555,1,12.700000000000001,78,843,0,555,0.254,78.26,55.63,0.14,992,2,147,1.2000000000000002 +2014,5,10,0,30,18.6,0.58,0.0713,0.68,94,856,662,1,13,94,856,0,662,0.256,69.88,48.49,0.14,992,2.1,123,1.6 +2014,5,10,1,30,19.700000000000003,0.59,0.0694,0.68,96,872,712,3,12.8,408,60,3,450,0.256,64.32000000000001,45.06,0.14,991,2.2,111,1.6 +2014,5,10,2,30,20.3,0.59,0.0627,0.68,92,874,697,1,12.5,92,874,0,697,0.257,60.96,46.17,0.14,990,2.2,102,1.6 +2014,5,10,3,30,20.5,0.47000000000000003,0.0767,0.68,95,830,612,3,12.4,340,54,0,374,0.258,59.870000000000005,51.53,0.14,990,2.2,98,1.5 +2014,5,10,4,30,20.3,0.49,0.0727,0.68,84,774,471,3,12.3,282,107,0,335,0.258,60.13,60,0.14,990,2.3000000000000003,97,1.4000000000000001 +2014,5,10,5,30,19.400000000000002,0.5,0.0698,0.68,68,661,289,8,12.3,169,103,0,203,0.258,63.43,70.46000000000001,0.14,990,2.3000000000000003,95,1.1 +2014,5,10,6,30,17.900000000000002,0.5700000000000001,0.0762,0.68,41,378,93,4,13,51,27,3,55,0.259,73.11,82.09,0.14,990,2.3000000000000003,91,0.7000000000000001 +2014,5,10,7,30,16.400000000000002,0.61,0.07590000000000001,0.68,0,0,0,3,13.3,0,0,0,0,0.259,82.04,94.64,0.14,990,2.2,84,0.6000000000000001 +2014,5,10,8,30,15.600000000000001,0.62,0.0692,0.68,0,0,0,3,13.200000000000001,0,0,0,0,0.26,85.66,107.55,0.14,991,2.2,78,0.7000000000000001 +2014,5,10,9,30,15.100000000000001,0.62,0.0629,0.68,0,0,0,3,13.200000000000001,0,0,0,0,0.26,88.23,120.74000000000001,0.14,991,2.2,71,0.7000000000000001 +2014,5,10,10,30,14.8,0.62,0.058,0.68,0,0,0,3,13.100000000000001,0,0,0,0,0.26,89.66,134.05,0.14,991,2.2,66,0.7000000000000001 +2014,5,10,11,30,14.8,0.62,0.054400000000000004,0.68,0,0,0,1,13.100000000000001,0,0,0,0,0.26,89.33,147.31,0.14,991,2.2,62,0.7000000000000001 +2014,5,10,12,30,14.700000000000001,0.62,0.0521,0.68,0,0,0,1,13.100000000000001,0,0,0,0,0.26,89.88,160.05,0.14,990,2.2,64,0.5 +2014,5,10,13,30,14.5,0.62,0.0509,0.68,0,0,0,1,13.100000000000001,0,0,0,0,0.26,91.04,169.68,0.14,990,2.2,91,0.30000000000000004 +2014,5,10,14,30,14.100000000000001,0.62,0.0506,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.26,93.57000000000001,165.96,0.14,990,2.2,158,0.30000000000000004 +2014,5,10,15,30,13.600000000000001,0.61,0.0509,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.26,96.76,154.14000000000001,0.14,989,2.2,204,0.4 +2014,5,10,16,30,13,0.6,0.052000000000000005,0.68,0,0,0,0,13,0,0,0,0,0.261,100,141.06,0.14,989,2.2,205,0.6000000000000001 +2014,5,10,17,30,12.600000000000001,0.6,0.053200000000000004,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.262,100,127.75,0.14,989,2.2,203,0.6000000000000001 +2014,5,10,18,30,12.3,0.6,0.0531,0.68,0,0,0,1,12.3,0,0,0,0,0.263,100,114.49000000000001,0.14,990,2.2,204,0.7000000000000001 +2014,5,10,19,30,12.100000000000001,0.6,0.0528,0.68,0,0,0,1,12.100000000000001,0,0,0,0,0.264,100,101.43,0.14,990,2.2,211,0.7000000000000001 +2014,5,10,20,30,12.9,0.6,0.0526,0.68,13,116,17,3,12.700000000000001,7,0,3,7,0.265,98.86,88.41,0.14,991,2.2,217,0.8 +2014,5,10,21,30,15.200000000000001,0.63,0.051300000000000005,0.68,50,589,187,1,12.9,50,589,0,187,0.267,86.15,76.56,0.14,991,2.2,230,0.6000000000000001 +2014,5,10,22,30,18.1,0.67,0.0475,0.68,66,763,384,1,13.5,66,763,0,384,0.268,74.48,65.43,0.14,992,2.2,132,0.5 +2014,5,10,23,30,19.6,0.71,0.043300000000000005,0.68,74,848,551,1,13.4,74,848,0,551,0.269,67.57000000000001,55.84,0.14,991,2.1,22,0.7000000000000001 +2014,5,11,0,30,21.700000000000003,0.7000000000000001,0.0444,0.68,80,885,664,1,13.200000000000001,80,885,0,664,0.269,58.33,48.730000000000004,0.14,991,2.1,26,0.7000000000000001 +2014,5,11,1,30,22.5,0.76,0.041600000000000005,0.68,81,900,714,1,12.9,81,900,0,714,0.269,54.52,45.32,0.14,990,2.2,29,0.6000000000000001 +2014,5,11,2,30,23,0.8,0.0402,0.68,79,898,698,1,12.5,79,898,0,698,0.269,51.77,46.42,0.14,989,2.2,36,0.6000000000000001 +2014,5,11,3,30,23.1,0.59,0.058,0.68,85,851,612,1,12.200000000000001,85,851,0,612,0.27,50.35,51.76,0.14,989,2.2,46,0.6000000000000001 +2014,5,11,4,30,22.900000000000002,0.61,0.0591,0.68,77,794,472,1,12,77,794,0,472,0.27,50.11,60.2,0.14,988,2.2,59,0.7000000000000001 +2014,5,11,5,30,21.900000000000002,0.64,0.0594,0.68,63,680,289,1,11.9,63,680,0,289,0.271,52.99,70.63,0.14,989,2.2,66,0.7000000000000001 +2014,5,11,6,30,19.8,0.6900000000000001,0.060000000000000005,0.68,38,413,94,1,13.5,38,413,0,94,0.271,66.9,82.23,0.14,989,2.2,64,0.7000000000000001 +2014,5,11,7,30,17.900000000000002,0.74,0.0604,0.68,0,0,0,0,13.3,0,0,0,0,0.272,74.71000000000001,94.77,0.14,990,2.2,56,0.7000000000000001 +2014,5,11,8,30,16.900000000000002,0.76,0.061500000000000006,0.68,0,0,0,0,13.3,0,0,0,0,0.272,79.22,107.67,0.14,990,2.2,48,0.7000000000000001 +2014,5,11,9,30,16.3,0.78,0.0616,0.68,0,0,0,0,13.4,0,0,0,0,0.274,82.71000000000001,120.84,0.14,991,2.2,41,0.7000000000000001 +2014,5,11,10,30,15.8,0.79,0.061200000000000004,0.68,0,0,0,0,13.4,0,0,0,0,0.274,85.46000000000001,134.15,0.14,991,2.2,35,0.7000000000000001 +2014,5,11,11,30,15.4,0.79,0.060700000000000004,0.68,0,0,0,0,13.4,0,0,0,0,0.274,87.97,147.42000000000002,0.14,991,2.2,29,0.6000000000000001 +2014,5,11,12,30,15.200000000000001,0.8,0.0603,0.68,0,0,0,0,13.4,0,0,0,0,0.272,88.98,160.19,0.14,991,2.2,16,0.5 +2014,5,11,13,30,15,0.8,0.060000000000000005,0.68,0,0,0,0,13.3,0,0,0,0,0.271,89.79,169.92000000000002,0.14,991,2.2,130,0.30000000000000004 +2014,5,11,14,30,14.600000000000001,0.81,0.0601,0.68,0,0,0,0,13.3,0,0,0,0,0.27,91.68,166.14000000000001,0.14,990,2.2,233,0.4 +2014,5,11,15,30,13.8,0.8200000000000001,0.0609,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.269,96.11,154.25,0.14,990,2.2,206,0.6000000000000001 +2014,5,11,16,30,12.9,0.8300000000000001,0.0621,0.68,0,0,0,0,12.9,0,0,0,0,0.268,100,141.15,0.14,990,2.2,195,0.7000000000000001 +2014,5,11,17,30,12.4,0.84,0.0626,0.68,0,0,0,0,12.4,0,0,0,0,0.268,100,127.84,0.14,991,2.2,189,0.8 +2014,5,11,18,30,12,0.86,0.06280000000000001,0.68,0,0,0,0,12,0,0,0,0,0.268,100,114.59,0.14,991,2.2,184,0.8 +2014,5,11,19,30,11.9,0.87,0.06280000000000001,0.68,0,0,0,0,11.9,0,0,1,0,0.268,100,101.54,0.14,992,2.2,181,0.8 +2014,5,11,20,30,12.9,0.89,0.0631,0.68,13,107,16,1,12.5,13,107,0,16,0.268,97.3,88.51,0.14,993,2.2,179,0.9 +2014,5,11,21,30,15.4,0.9,0.063,0.68,52,571,184,1,12.600000000000001,52,571,0,184,0.268,83.41,76.7,0.14,993,2.2,169,1.2000000000000002 +2014,5,11,22,30,18.3,0.92,0.0631,0.68,71,742,378,1,13,71,742,0,378,0.267,71.32000000000001,65.6,0.14,994,2.2,148,1.3 +2014,5,11,23,30,19.8,0.93,0.0651,0.68,83,821,541,1,13.5,83,821,0,541,0.267,66.97,56.04,0.14,994,2.2,135,1.5 +2014,5,12,0,30,21.700000000000003,0.92,0.0653,0.68,89,861,654,1,13.700000000000001,89,861,0,654,0.266,60.28,48.96,0.14,993,2.2,123,1.7000000000000002 +2014,5,12,1,30,22.3,0.92,0.0687,0.68,93,871,703,1,13.600000000000001,93,871,0,703,0.265,57.97,45.57,0.14,992,2.3000000000000003,120,1.8 +2014,5,12,2,30,22.400000000000002,0.91,0.0743,0.68,95,861,685,1,13.600000000000001,95,861,0,685,0.264,57.46,46.67,0.14,992,2.3000000000000003,119,1.9000000000000001 +2014,5,12,3,30,22.200000000000003,0.92,0.07540000000000001,0.68,91,833,604,1,13.5,91,833,0,604,0.264,57.85,51.980000000000004,0.14,991,2.3000000000000003,118,2 +2014,5,12,4,30,21.6,0.93,0.08410000000000001,0.68,85,764,463,1,13.4,85,764,0,463,0.264,59.64,60.39,0.14,992,2.3000000000000003,117,2 +2014,5,12,5,30,20.700000000000003,0.91,0.0765,0.68,68,655,283,1,13.5,68,655,0,283,0.264,63.24,70.79,0.14,992,2.3000000000000003,115,1.6 +2014,5,12,6,30,19,0.91,0.0736,0.68,39,388,90,1,14,39,388,0,90,0.264,72.98,82.37,0.14,992,2.3000000000000003,114,1.1 +2014,5,12,7,30,17.400000000000002,0.88,0.0695,0.68,0,0,0,0,14.100000000000001,0,0,0,0,0.265,81.09,94.89,0.14,993,2.2,116,0.8 +2014,5,12,8,30,16.6,0.86,0.061700000000000005,0.68,0,0,0,0,13.9,0,0,0,0,0.265,83.94,107.77,0.14,993,2.2,122,0.8 +2014,5,12,9,30,15.9,0.84,0.0551,0.68,0,0,0,0,13.600000000000001,0,0,0,0,0.266,86.49,120.94,0.14,994,2.1,131,0.8 +2014,5,12,10,30,15.200000000000001,0.81,0.0514,0.68,0,0,0,0,13.4,0,0,0,0,0.266,89.08,134.25,0.14,994,2,138,0.8 +2014,5,12,11,30,14.600000000000001,0.72,0.0522,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.267,91.60000000000001,147.52,0.14,994,1.9000000000000001,145,0.8 +2014,5,12,12,30,14.100000000000001,0.59,0.058100000000000006,0.68,0,0,0,1,13.200000000000001,0,0,0,0,0.267,94.52,160.33,0.14,993,1.8,150,0.8 +2014,5,12,13,30,13.600000000000001,0.47000000000000003,0.0669,0.68,0,0,0,0,13.3,0,0,0,0,0.267,98.23,170.16,0.14,993,1.8,155,0.8 +2014,5,12,14,30,13.100000000000001,0.39,0.0743,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.266,100,166.31,0.14,993,1.7000000000000002,159,0.8 +2014,5,12,15,30,12.8,0.37,0.07880000000000001,0.68,0,0,0,0,12.8,0,0,0,0,0.266,100,154.35,0.14,992,1.7000000000000002,162,0.8 +2014,5,12,16,30,12.4,0.37,0.079,0.68,0,0,0,0,12.4,0,0,0,0,0.266,100,141.23,0.14,992,1.7000000000000002,164,0.8 +2014,5,12,17,30,12.200000000000001,0.39,0.0755,0.68,0,0,0,0,12.200000000000001,0,0,0,0,0.266,100,127.93,0.14,992,1.7000000000000002,166,0.8 +2014,5,12,18,30,12,0.42,0.0712,0.68,0,0,0,0,12,0,0,0,0,0.266,100,114.68,0.14,992,1.7000000000000002,168,0.8 +2014,5,12,19,30,11.8,0.45,0.0674,0.68,0,0,0,1,11.8,0,0,0,0,0.266,100,101.64,0.14,993,1.7000000000000002,169,0.8 +2014,5,12,20,30,12.9,0.47000000000000003,0.0644,0.68,13,79,15,1,12.600000000000001,13,79,0,15,0.266,98.14,88.62,0.14,994,1.7000000000000002,171,1.1 +2014,5,12,21,30,15.200000000000001,0.49,0.060200000000000004,0.68,53,573,184,1,12.700000000000001,53,573,0,184,0.265,85.19,76.84,0.14,994,1.7000000000000002,165,1.7000000000000002 +2014,5,12,22,30,17.6,0.52,0.0545,0.68,70,759,381,1,13,70,759,0,381,0.265,74.22,65.77,0.14,994,1.7000000000000002,151,2.4000000000000004 +2014,5,12,23,30,18.8,0.54,0.0512,0.68,79,844,548,1,13,79,844,0,548,0.265,68.89,56.24,0.14,994,1.7000000000000002,144,2.6 +2014,5,13,0,30,20.900000000000002,0.55,0.0502,0.68,84,882,660,1,12.8,84,882,0,660,0.264,59.65,49.19,0.14,993,1.8,137,2.7 +2014,5,13,1,30,21.6,0.55,0.0495,0.68,86,895,709,1,12.4,86,895,0,709,0.264,55.980000000000004,45.82,0.14,992,1.9000000000000001,135,2.7 +2014,5,13,2,30,21.900000000000002,0.53,0.05,0.68,85,890,693,1,12.200000000000001,85,890,0,693,0.263,54.21,46.910000000000004,0.14,991,1.9000000000000001,133,2.6 +2014,5,13,3,30,21.8,0.49,0.056600000000000004,0.68,85,856,609,1,12.100000000000001,85,856,0,609,0.262,54.120000000000005,52.2,0.14,991,1.9000000000000001,131,2.6 +2014,5,13,4,30,21.400000000000002,0.5,0.055400000000000005,0.68,76,798,468,1,12,76,798,0,468,0.262,55.13,60.58,0.14,991,2,130,2.5 +2014,5,13,5,30,20.5,0.5,0.0541,0.68,62,686,286,1,12,62,686,0,286,0.261,58,70.95,0.14,991,2,130,2 +2014,5,13,6,30,18.8,0.53,0.0545,0.68,37,414,91,1,12.4,37,414,0,91,0.261,66.21000000000001,82.51,0.14,991,1.9000000000000001,131,1.3 +2014,5,13,7,30,17.2,0.56,0.0497,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.261,74.69,95.01,0.14,992,1.9000000000000001,134,0.9 +2014,5,13,8,30,16.400000000000002,0.5700000000000001,0.0436,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.261,78.24,107.88,0.14,992,1.8,138,0.9 +2014,5,13,9,30,15.600000000000001,0.6,0.038900000000000004,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.262,82.32000000000001,121.04,0.14,993,1.8,145,0.9 +2014,5,13,10,30,14.9,0.63,0.0354,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.263,86.49,134.34,0.14,993,1.7000000000000002,151,0.9 +2014,5,13,11,30,14.3,0.63,0.033800000000000004,0.68,0,0,0,0,12.8,0,0,0,0,0.264,90.94,147.62,0.14,993,1.7000000000000002,155,0.9 +2014,5,13,12,30,13.8,0.6,0.034800000000000005,0.68,0,0,0,1,13.100000000000001,0,0,0,0,0.265,95.64,160.46,0.14,993,1.7000000000000002,158,0.8 +2014,5,13,13,30,13.4,0.5700000000000001,0.037200000000000004,0.68,0,0,0,1,13.3,0,0,0,0,0.264,99.52,170.39000000000001,0.14,992,1.7000000000000002,161,0.8 +2014,5,13,14,30,13.100000000000001,0.55,0.0405,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.264,100,166.48,0.14,992,1.7000000000000002,163,0.8 +2014,5,13,15,30,12.700000000000001,0.53,0.0441,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.263,100,154.46,0.14,992,1.8,165,0.8 +2014,5,13,16,30,12.5,0.52,0.0459,0.68,0,0,0,1,12.5,0,0,0,0,0.263,100,141.32,0.14,991,1.8,166,0.8 +2014,5,13,17,30,12.200000000000001,0.52,0.046200000000000005,0.68,0,0,0,3,12.200000000000001,0,0,0,0,0.263,100,128.01,0.14,991,1.8,167,0.8 +2014,5,13,18,30,12,0.53,0.0456,0.68,0,0,0,1,12,0,0,0,0,0.263,100,114.77,0.14,992,1.8,168,0.9 +2014,5,13,19,30,11.9,0.52,0.0449,0.68,0,0,0,1,11.9,0,0,0,0,0.263,100,101.74000000000001,0.14,992,1.8,169,0.8 +2014,5,13,20,30,12.9,0.52,0.0444,0.68,12,112,14,1,12.8,12,112,0,14,0.264,99.61,88.73,0.14,993,1.8,171,1.1 +2014,5,13,21,30,15.200000000000001,0.51,0.044500000000000005,0.68,48,597,183,1,13.200000000000001,48,597,0,183,0.264,87.57000000000001,76.98,0.14,993,1.9000000000000001,164,1.6 +2014,5,13,22,30,17.400000000000002,0.5,0.0443,0.68,65,767,378,1,13.700000000000001,65,767,0,378,0.264,78.71000000000001,65.93,0.14,993,1.9000000000000001,147,2.2 +2014,5,13,23,30,18.5,0.49,0.0439,0.68,75,846,543,1,14,75,846,0,543,0.264,75.3,56.43,0.14,993,1.9000000000000001,138,2.5 +2014,5,14,0,30,20.200000000000003,0.36,0.0675,0.68,94,853,648,1,14.100000000000001,94,853,0,648,0.262,68.16,49.42,0.14,993,2,128,2.8000000000000003 +2014,5,14,1,30,20.6,0.38,0.0682,0.68,96,866,697,1,14,96,866,0,697,0.262,65.82000000000001,46.06,0.14,992,2.1,126,2.8000000000000003 +2014,5,14,2,30,20.700000000000003,0.37,0.0683,0.68,95,858,679,1,13.8,95,858,0,679,0.262,64.66,47.15,0.14,991,2.2,123,2.8000000000000003 +2014,5,14,3,30,20.400000000000002,0.41000000000000003,0.0771,0.68,95,821,596,3,13.8,65,10,0,71,0.262,65.85,52.410000000000004,0.14,991,2.2,121,2.8000000000000003 +2014,5,14,4,30,19.900000000000002,0.41000000000000003,0.0789,0.68,86,758,457,3,13.9,207,28,0,221,0.262,68.35000000000001,60.76,0.14,991,2.2,120,2.6 +2014,5,14,5,30,19,0.38,0.0747,0.68,69,640,277,3,14.100000000000001,119,23,0,126,0.262,73.11,71.10000000000001,0.14,991,2.2,121,2.2 +2014,5,14,6,30,17.6,0.37,0.076,0.68,40,347,85,1,14.5,40,347,0,85,0.262,81.8,82.63,0.14,991,2.2,126,1.4000000000000001 +2014,5,14,7,30,16.400000000000002,0.34,0.07540000000000001,0.68,0,0,0,3,14.700000000000001,0,0,0,0,0.263,89.71000000000001,95.12,0.14,992,2.2,133,1 +2014,5,14,8,30,15.8,0.33,0.0742,0.68,0,0,0,3,14.700000000000001,0,0,0,0,0.264,92.97,107.97,0.14,992,2.1,139,0.9 +2014,5,14,9,30,15.4,0.35000000000000003,0.07400000000000001,0.68,0,0,0,3,14.600000000000001,0,0,0,0,0.264,95.05,121.12,0.14,992,2.1,143,0.9 +2014,5,14,10,30,15,0.37,0.0716,0.68,0,0,0,1,14.600000000000001,0,0,0,0,0.265,97.39,134.42000000000002,0.14,993,2.1,145,0.8 +2014,5,14,11,30,14.700000000000001,0.37,0.069,0.68,0,0,0,3,14.600000000000001,0,0,0,0,0.266,99.13,147.71,0.14,993,2.1,146,0.8 +2014,5,14,12,30,14.4,0.41000000000000003,0.0712,0.68,0,0,0,3,14.4,0,0,0,0,0.266,100,160.58,0.14,992,2.1,147,0.8 +2014,5,14,13,30,14.200000000000001,0.41000000000000003,0.0694,0.68,0,0,0,1,14.200000000000001,0,0,0,0,0.265,100,170.62,0.14,992,2,147,0.8 +2014,5,14,14,30,14,0.4,0.0664,0.68,0,0,0,1,14,0,0,0,0,0.265,100,166.64000000000001,0.14,992,2,147,0.8 +2014,5,14,15,30,13.9,0.45,0.0678,0.68,0,0,0,0,13.9,0,0,0,0,0.264,100,154.56,0.14,992,2,147,0.8 +2014,5,14,16,30,13.8,0.46,0.0651,0.68,0,0,0,0,13.8,0,0,0,0,0.264,100,141.41,0.14,992,1.9000000000000001,147,0.8 +2014,5,14,17,30,13.700000000000001,0.47000000000000003,0.059300000000000005,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.264,99.73,128.1,0.14,992,1.9000000000000001,147,0.8 +2014,5,14,18,30,13.600000000000001,0.51,0.0551,0.68,0,0,0,1,13.4,0,0,0,0,0.265,98.97,114.86,0.14,992,1.8,146,0.8 +2014,5,14,19,30,13.5,0.53,0.051800000000000006,0.68,0,0,0,1,13.200000000000001,0,0,0,0,0.265,98.2,101.84,0.14,993,1.8,145,0.8 +2014,5,14,20,30,14.3,0.56,0.0492,0.68,12,96,13,3,13.100000000000001,3,0,3,3,0.265,92.29,88.84,0.14,993,1.8,144,1.1 +2014,5,14,21,30,16,0.58,0.046700000000000005,0.68,49,593,181,1,13.5,49,593,0,181,0.265,84.93,77.12,0.14,994,1.8,139,1.6 +2014,5,14,22,30,17.8,0.6,0.044700000000000004,0.68,65,768,376,1,13.700000000000001,65,768,0,376,0.266,77.10000000000001,66.1,0.14,994,1.8,128,2 +2014,5,14,23,30,18.7,0.62,0.0415,0.68,73,851,541,1,13.700000000000001,73,851,0,541,0.266,72.49,56.63,0.14,994,1.8,121,2.3000000000000003 +2014,5,15,0,30,20.6,0.5,0.053700000000000005,0.68,86,874,652,1,13.200000000000001,86,874,0,652,0.267,62.620000000000005,49.64,0.14,993,1.8,114,2.5 +2014,5,15,1,30,21.400000000000002,0.54,0.0522,0.68,87,889,701,1,12.9,87,889,0,701,0.267,58.27,46.300000000000004,0.14,992,1.9000000000000001,113,2.6 +2014,5,15,2,30,21.700000000000003,0.55,0.05,0.68,85,887,686,1,12.600000000000001,85,887,0,686,0.267,56.1,47.38,0.14,991,1.9000000000000001,111,2.6 +2014,5,15,3,30,21.6,0.47000000000000003,0.0648,0.68,88,840,598,1,12.3,88,840,0,598,0.267,55.59,52.620000000000005,0.14,991,2,111,2.6 +2014,5,15,4,30,21.1,0.49,0.06620000000000001,0.68,80,780,459,1,12.3,80,780,0,459,0.267,57.120000000000005,60.94,0.14,991,2,112,2.4000000000000004 +2014,5,15,5,30,20.1,0.48,0.064,0.68,65,661,277,1,12.4,65,661,0,277,0.267,61.1,71.25,0.14,991,2.1,112,1.8 +2014,5,15,6,30,18.6,0.51,0.0629,0.68,37,379,85,1,12.9,37,379,0,85,0.268,69.66,82.76,0.14,992,2.1,114,1.1 +2014,5,15,7,30,17.1,0.52,0.057,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.268,77.99,95.23,0.14,992,2,119,0.8 +2014,5,15,8,30,16.3,0.52,0.0507,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.269,81.26,108.07000000000001,0.14,993,2,124,0.8 +2014,5,15,9,30,15.700000000000001,0.51,0.0485,0.68,0,0,0,0,13,0,0,0,0,0.269,83.98,121.21000000000001,0.14,993,2,128,0.8 +2014,5,15,10,30,15.100000000000001,0.5,0.0489,0.68,0,0,0,1,13,0,0,0,0,0.269,87.13,134.51,0.14,993,2,132,0.8 +2014,5,15,11,30,14.5,0.48,0.0507,0.68,0,0,0,1,13,0,0,0,0,0.269,90.64,147.79,0.14,993,1.9000000000000001,136,0.8 +2014,5,15,12,30,14,0.46,0.0528,0.68,0,0,0,1,13,0,0,0,0,0.269,93.95,160.70000000000002,0.14,993,1.9000000000000001,139,0.8 +2014,5,15,13,30,13.600000000000001,0.45,0.0551,0.68,0,0,0,1,13.100000000000001,0,0,0,0,0.269,96.66,170.84,0.14,993,1.9000000000000001,142,0.8 +2014,5,15,14,30,13.3,0.44,0.057100000000000005,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.269,98.66,166.8,0.14,992,1.9000000000000001,145,0.8 +2014,5,15,15,30,13,0.43,0.058600000000000006,0.68,0,0,0,3,13,0,0,0,0,0.27,100,154.66,0.14,992,1.9000000000000001,151,0.8 +2014,5,15,16,30,12.8,0.43,0.059300000000000005,0.68,0,0,0,3,12.8,0,0,0,0,0.27,100,141.49,0.14,992,1.9000000000000001,157,0.8 +2014,5,15,17,30,12.5,0.43,0.059000000000000004,0.68,0,0,0,3,12.5,0,0,0,0,0.27,100,128.18,0.14,992,1.9000000000000001,159,0.8 +2014,5,15,18,30,12.4,0.44,0.0574,0.68,0,0,0,3,12.4,0,0,0,0,0.27,100,114.95,0.14,993,2,159,0.8 +2014,5,15,19,30,12.3,0.45,0.0545,0.68,0,0,0,1,12.3,0,0,0,0,0.27,100,101.95,0.14,994,2,159,0.8 +2014,5,15,20,30,13.4,0.47000000000000003,0.0519,0.68,11,78,12,1,13,11,78,0,12,0.27,97.19,88.94,0.14,995,2,158,1 +2014,5,15,21,30,15.700000000000001,0.48,0.05,0.68,49,575,176,1,13.4,49,575,0,176,0.269,86.09,77.25,0.14,995,2,149,1.5 +2014,5,15,22,30,18,0.5,0.0476,0.68,66,754,370,1,14,66,754,0,370,0.269,77.55,66.26,0.14,995,2,131,2 +2014,5,15,23,30,19.1,0.54,0.0436,0.68,74,840,534,1,14.200000000000001,74,840,0,534,0.269,73.48,56.82,0.14,995,2,122,2.2 +2014,5,16,0,30,20.700000000000003,0.46,0.0568,0.68,87,861,642,1,14,87,861,0,642,0.269,65.62,49.86,0.14,995,2.1,113,2.5 +2014,5,16,1,30,21.200000000000003,0.5,0.0655,0.68,93,867,690,1,13.600000000000001,93,867,0,690,0.269,61.96,46.53,0.14,994,2.1,110,2.6 +2014,5,16,2,30,21.3,0.49,0.0741,0.68,97,853,672,3,13.4,298,26,0,315,0.268,60.61,47.61,0.14,993,2.1,108,2.6 +2014,5,16,3,30,21.1,0.61,0.07200000000000001,0.68,90,830,592,1,13.3,90,830,0,592,0.268,60.95,52.82,0.14,993,2.1,106,2.6 +2014,5,16,4,30,20.6,0.61,0.0748,0.68,83,766,453,4,13.200000000000001,184,24,0,195,0.267,62.620000000000005,61.11,0.14,993,2.1,105,2.4000000000000004 +2014,5,16,5,30,19.700000000000003,0.56,0.069,0.68,66,652,274,3,13.3,142,48,0,157,0.265,66.55,71.4,0.14,993,2.1,105,1.9000000000000001 +2014,5,16,6,30,18.2,0.5,0.0653,0.68,37,371,83,4,13.9,41,2,3,41,0.265,76.17,82.88,0.14,994,2,107,1.1 +2014,5,16,7,30,16.8,0.44,0.0631,0.68,0,0,0,1,14.100000000000001,0,0,0,0,0.264,84.31,95.33,0.14,994,2,111,0.8 +2014,5,16,8,30,16.2,0.39,0.062400000000000004,0.68,0,0,0,1,14.100000000000001,0,0,0,0,0.264,87.39,108.16,0.14,995,1.9000000000000001,114,0.8 +2014,5,16,9,30,15.9,0.37,0.0639,0.68,0,0,0,1,14.100000000000001,0,0,0,0,0.263,88.92,121.29,0.14,996,1.9000000000000001,115,0.9 +2014,5,16,10,30,15.8,0.37,0.0651,0.68,0,0,0,0,14,0,0,0,0,0.261,88.91,134.58,0.14,996,1.8,116,0.9 +2014,5,16,11,30,15.700000000000001,0.4,0.06430000000000001,0.68,0,0,0,0,14,0,0,0,0,0.26,89.51,147.88,0.14,996,1.8,116,0.9 +2014,5,16,12,30,15.5,0.45,0.061900000000000004,0.68,0,0,0,3,13.8,0,0,0,0,0.259,89.9,160.81,0.14,995,1.7000000000000002,116,0.9 +2014,5,16,13,30,15.200000000000001,0.49,0.058,0.68,0,0,0,3,13.600000000000001,0,0,0,0,0.258,90.35000000000001,171.05,0.14,995,1.7000000000000002,116,0.9 +2014,5,16,14,30,14.8,0.5,0.054700000000000006,0.68,0,0,0,1,13.4,0,0,0,0,0.259,91.26,166.96,0.14,995,1.7000000000000002,120,0.9 +2014,5,16,15,30,14.5,0.5,0.053500000000000006,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.259,91.55,154.75,0.14,995,1.7000000000000002,124,0.8 +2014,5,16,16,30,14.4,0.49,0.054400000000000004,0.68,0,0,0,0,13,0,0,0,0,0.259,91.57000000000001,141.58,0.14,995,1.7000000000000002,127,0.8 +2014,5,16,17,30,14.4,0.49,0.0548,0.68,0,0,0,0,13,0,0,0,0,0.259,91.32000000000001,128.26,0.14,995,1.7000000000000002,128,0.8 +2014,5,16,18,30,14.3,0.49,0.0555,0.68,0,0,0,3,12.9,0,0,0,0,0.259,91.55,115.04,0.14,995,1.7000000000000002,130,0.8 +2014,5,16,19,30,14.3,0.49,0.055900000000000005,0.68,0,0,0,3,12.9,0,0,0,0,0.259,91.12,102.05,0.14,996,1.7000000000000002,130,0.8 +2014,5,16,20,30,15.100000000000001,0.5,0.055400000000000005,0.68,0,0,0,3,12.8,0,0,3,0,0.259,86.23,89.05,0.14,996,1.7000000000000002,130,0.9 +2014,5,16,21,30,16.6,0.52,0.0533,0.68,50,574,175,1,13.5,50,574,0,175,0.259,81.69,77.39,0.14,997,1.7000000000000002,129,1.3 +2014,5,16,22,30,18.3,0.55,0.0514,0.68,68,756,370,1,13.700000000000001,68,756,0,370,0.259,74.49,66.42,0.14,997,1.7000000000000002,123,1.7000000000000002 +2014,5,16,23,30,19.3,0.58,0.050800000000000005,0.68,78,838,534,2,13.3,288,58,0,319,0.259,68.29,57,0.14,997,1.7000000000000002,117,1.9000000000000001 +2014,5,17,0,30,21.3,0.5,0.0574,0.68,87,870,646,1,12.4,87,870,0,646,0.258,56.730000000000004,50.07,0.14,996,1.7000000000000002,104,2.4000000000000004 +2014,5,17,1,30,21.8,0.52,0.058300000000000005,0.68,90,882,694,1,11.8,90,882,0,694,0.257,52.84,46.76,0.14,995,1.8,100,2.5 +2014,5,17,2,30,21.700000000000003,0.54,0.0555,0.68,88,881,679,1,11.5,88,881,0,679,0.257,52.44,47.83,0.14,994,1.8,99,2.4000000000000004 +2014,5,17,3,30,21.6,0.5,0.0791,0.68,95,826,592,1,11.700000000000001,95,826,0,592,0.257,53.230000000000004,53.02,0.14,994,1.8,100,2.3000000000000003 +2014,5,17,4,30,21.200000000000003,0.53,0.07400000000000001,0.68,83,769,453,1,12,83,769,0,453,0.258,55.620000000000005,61.28,0.14,994,1.9000000000000001,101,2.2 +2014,5,17,5,30,20.200000000000003,0.51,0.0679,0.68,66,655,273,1,12.4,66,655,0,273,0.258,60.83,71.53,0.14,994,1.9000000000000001,103,1.7000000000000002 +2014,5,17,6,30,18.8,0.54,0.0674,0.68,37,366,82,3,13.4,36,0,3,36,0.259,70.79,82.99,0.14,994,1.9000000000000001,107,1.1 +2014,5,17,7,30,17.7,0.53,0.06280000000000001,0.68,0,0,0,3,13.9,0,0,0,0,0.259,78.49,95.43,0.14,994,1.9000000000000001,111,0.8 +2014,5,17,8,30,17.1,0.51,0.0575,0.68,0,0,0,0,14.200000000000001,0,0,0,0,0.259,83.02,108.24000000000001,0.14,995,1.9000000000000001,116,0.8 +2014,5,17,9,30,16.7,0.49,0.057300000000000004,0.68,0,0,0,0,14.4,0,0,0,0,0.258,86.33,121.37,0.14,995,1.9000000000000001,120,0.8 +2014,5,17,10,30,16.3,0.48,0.060000000000000005,0.68,0,0,0,0,14.5,0,0,0,0,0.258,89.3,134.65,0.14,995,1.9000000000000001,124,0.7000000000000001 +2014,5,17,11,30,15.9,0.45,0.0625,0.68,0,0,0,0,14.600000000000001,0,0,0,0,0.258,91.88,147.95000000000002,0.14,995,1.8,126,0.8 +2014,5,17,12,30,15.4,0.43,0.065,0.68,0,0,0,0,14.5,0,0,0,0,0.257,94.44,160.91,0.14,995,1.8,128,0.8 +2014,5,17,13,30,14.9,0.43,0.0659,0.68,0,0,0,3,14.4,0,0,0,0,0.257,96.53,171.26,0.14,995,1.8,132,0.8 +2014,5,17,14,30,14.600000000000001,0.41000000000000003,0.06860000000000001,0.68,0,0,0,3,14.200000000000001,0,0,0,0,0.257,97.56,167.11,0.14,994,1.8,134,0.8 +2014,5,17,15,30,14.4,0.39,0.0738,0.68,0,0,0,0,14,0,0,0,0,0.257,97.73,154.85,0.14,994,1.8,131,0.8 +2014,5,17,16,30,14.5,0.39,0.0794,0.68,0,0,0,0,13.9,0,0,0,0,0.257,96.08,141.66,0.14,994,1.8,126,0.8 +2014,5,17,17,30,14.700000000000001,0.41000000000000003,0.08070000000000001,0.68,0,0,0,1,13.8,0,0,0,0,0.258,94.05,128.35,0.14,994,1.7000000000000002,120,0.8 +2014,5,17,18,30,14.9,0.44,0.0781,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.258,92.42,115.13,0.14,994,1.7000000000000002,117,0.8 +2014,5,17,19,30,15.100000000000001,0.47000000000000003,0.0785,0.68,0,0,0,0,13.600000000000001,0,0,0,0,0.258,90.85000000000001,102.15,0.14,995,1.7000000000000002,115,0.7000000000000001 +2014,5,17,20,30,15.8,0.49,0.0794,0.68,0,0,0,8,13.5,0,0,3,0,0.259,86.45,89.15,0.14,995,1.7000000000000002,112,0.9 +2014,5,17,21,30,17.1,0.54,0.0806,0.68,57,518,169,8,14,36,0,3,36,0.259,81.98,77.52,0.14,996,1.7000000000000002,110,1.2000000000000002 +2014,5,17,22,30,18.2,0.6,0.07880000000000001,0.68,78,714,361,1,13.9,78,714,0,361,0.26,76.01,66.58,0.14,996,1.7000000000000002,104,1.4000000000000001 +2014,5,17,23,30,18.7,0.66,0.0791,0.68,90,804,525,0,13.5,90,804,0,525,0.26,71.63,57.19,0.14,996,1.7000000000000002,101,1.5 +2014,5,18,0,30,19.5,0.67,0.09290000000000001,0.68,103,830,633,1,13,103,830,0,633,0.26,65.91,50.28,0.14,995,1.8,95,1.7000000000000002 +2014,5,18,1,30,19.8,0.76,0.0853,0.68,101,856,685,1,12.5,101,856,0,685,0.26,62.980000000000004,46.99,0.14,994,1.8,92,1.8 +2014,5,18,2,30,20,0.79,0.08,0.68,98,854,669,1,12.100000000000001,98,854,0,669,0.261,60.27,48.050000000000004,0.14,994,1.9000000000000001,91,1.8 +2014,5,18,3,30,20.1,0.81,0.08220000000000001,0.68,94,822,586,7,12,151,24,0,165,0.261,59.46,53.21,0.14,994,2,94,1.7000000000000002 +2014,5,18,4,30,20.1,0.79,0.07740000000000001,0.68,83,766,449,3,12.100000000000001,188,25,0,201,0.262,59.95,61.44,0.14,993,2,96,1.5 +2014,5,18,5,30,19.400000000000002,0.76,0.0745,0.68,66,647,270,1,12.3,66,647,0,270,0.262,63.410000000000004,71.67,0.14,993,2,98,1.1 +2014,5,18,6,30,18.2,0.75,0.0707,0.68,37,363,80,1,13.3,37,363,0,80,0.262,73.23,83.10000000000001,0.14,993,2,101,0.7000000000000001 +2014,5,18,7,30,17.400000000000002,0.74,0.0658,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.261,76.35000000000001,95.52,0.14,994,2,104,0.7000000000000001 +2014,5,18,8,30,17,0.72,0.0614,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.26,78.14,108.32000000000001,0.14,994,2,107,0.7000000000000001 +2014,5,18,9,30,16.6,0.71,0.059000000000000004,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.26,79.82000000000001,121.44,0.14,994,2,108,0.8 +2014,5,18,10,30,16.2,0.71,0.0574,0.68,0,0,0,0,13,0,0,0,0,0.26,81.3,134.72,0.14,994,2,110,0.8 +2014,5,18,11,30,15.8,0.6900000000000001,0.053700000000000005,0.68,0,0,0,0,12.8,0,0,0,0,0.26,82.56,148.02,0.14,994,1.9000000000000001,110,0.8 +2014,5,18,12,30,15.5,0.68,0.0506,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.259,83.4,161.01,0.14,994,1.9000000000000001,109,0.8 +2014,5,18,13,30,15.200000000000001,0.7000000000000001,0.048100000000000004,0.68,0,0,0,0,12.5,0,0,0,0,0.258,84.19,171.46,0.14,994,1.8,108,0.8 +2014,5,18,14,30,15,0.74,0.046400000000000004,0.68,0,0,0,0,12.4,0,0,0,0,0.257,84.49,167.26,0.14,993,1.8,108,0.8 +2014,5,18,15,30,14.8,0.77,0.0441,0.68,0,0,0,0,12.3,0,0,0,0,0.256,84.8,154.94,0.14,993,1.7000000000000002,112,0.8 +2014,5,18,16,30,14.600000000000001,0.79,0.0422,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.255,85.10000000000001,141.74,0.14,992,1.6,117,0.8 +2014,5,18,17,30,14.3,0.81,0.0403,0.68,0,0,0,1,12,0,0,0,0,0.254,85.95,128.43,0.14,993,1.6,125,0.8 +2014,5,18,18,30,14,0.81,0.039900000000000005,0.68,0,0,0,3,11.8,0,0,0,0,0.253,86.8,115.22,0.14,993,1.6,133,0.8 +2014,5,18,19,30,13.9,0.8300000000000001,0.0405,0.68,0,0,0,3,11.8,0,0,0,0,0.252,87.07000000000001,102.25,0.14,994,1.6,139,0.8 +2014,5,18,20,30,14.700000000000001,0.84,0.041,0.68,0,0,0,1,11.8,0,0,0,0,0.25,82.77,89.25,0.14,994,1.6,144,0.9 +2014,5,18,21,30,16.7,0.85,0.0414,0.68,46,604,175,1,12.5,46,604,0,175,0.249,76.12,77.65,0.14,995,1.6,144,1.2000000000000002 +2014,5,18,22,30,18.900000000000002,0.86,0.0409,0.68,62,773,368,3,12.3,104,17,0,111,0.248,65.71000000000001,66.73,0.14,995,1.7000000000000002,130,1.5 +2014,5,18,23,30,19.900000000000002,0.86,0.0414,0.68,72,851,531,3,11.8,148,23,0,160,0.247,59.620000000000005,57.370000000000005,0.14,995,1.7000000000000002,119,1.6 +2014,5,19,0,30,21.6,0.52,0.0796,0.68,98,843,634,3,11.3,381,110,0,450,0.247,51.75,50.49,0.14,994,1.7000000000000002,101,1.7000000000000002 +2014,5,19,1,30,22,0.55,0.0838,0.68,102,854,682,3,11.100000000000001,421,158,0,529,0.246,50.050000000000004,47.2,0.14,993,1.8,95,1.7000000000000002 +2014,5,19,2,30,22.3,0.54,0.08170000000000001,0.68,100,851,666,3,11,318,30,0,337,0.246,48.92,48.26,0.14,992,1.8,90,1.7000000000000002 +2014,5,19,3,30,22.3,0.58,0.06960000000000001,0.68,90,836,588,1,11.100000000000001,90,836,0,588,0.246,49.15,53.4,0.14,992,1.8,85,1.7000000000000002 +2014,5,19,4,30,21.8,0.61,0.0674,0.68,80,777,449,3,11.3,229,43,0,249,0.246,51.14,61.6,0.14,991,1.9000000000000001,82,1.6 +2014,5,19,5,30,20.700000000000003,0.62,0.0655,0.68,64,659,270,1,11.5,64,659,0,270,0.246,55.52,71.8,0.14,991,1.9000000000000001,81,1.2000000000000002 +2014,5,19,6,30,19.1,0.6900000000000001,0.0729,0.68,37,354,79,3,12.9,33,0,3,33,0.247,67.11,83.21000000000001,0.14,992,1.9000000000000001,79,0.8 +2014,5,19,7,30,17.7,0.73,0.06960000000000001,0.68,0,0,0,3,13.3,0,0,0,0,0.248,75.48,95.61,0.14,992,1.9000000000000001,78,0.7000000000000001 +2014,5,19,8,30,16.900000000000002,0.76,0.0614,0.68,0,0,0,0,13.4,0,0,0,0,0.249,79.63,108.4,0.14,992,1.9000000000000001,79,0.7000000000000001 +2014,5,19,9,30,16.400000000000002,0.78,0.0596,0.68,0,0,0,3,13.4,0,0,0,0,0.249,82.41,121.5,0.14,992,1.9000000000000001,82,0.7000000000000001 +2014,5,19,10,30,16,0.79,0.0572,0.68,0,0,0,0,13.5,0,0,0,0,0.249,84.97,134.78,0.14,993,1.9000000000000001,85,0.7000000000000001 +2014,5,19,11,30,15.8,0.8,0.0533,0.68,0,0,0,1,13.5,0,0,0,0,0.249,86.31,148.09,0.14,993,1.9000000000000001,86,0.7000000000000001 +2014,5,19,12,30,15.4,0.8,0.05,0.68,0,0,0,8,13.5,0,0,0,0,0.248,88.43,161.1,0.14,992,1.9000000000000001,89,0.7000000000000001 +2014,5,19,13,30,15.100000000000001,0.8,0.0461,0.68,0,0,0,4,13.5,0,0,0,0,0.248,89.97,171.65,0.14,992,1.9000000000000001,96,0.7000000000000001 +2014,5,19,14,30,14.700000000000001,0.8300000000000001,0.0463,0.68,0,0,0,0,13.4,0,0,0,0,0.247,91.85000000000001,167.4,0.14,992,1.9000000000000001,107,0.7000000000000001 +2014,5,19,15,30,14.5,0.86,0.0458,0.68,0,0,0,8,13.3,0,0,0,0,0.247,92.45,155.04,0.14,991,1.9000000000000001,116,0.7000000000000001 +2014,5,19,16,30,14.100000000000001,0.88,0.045000000000000005,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.247,94.25,141.82,0.14,991,2,126,0.8 +2014,5,19,17,30,13.700000000000001,0.9,0.0437,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.247,95.92,128.51,0.14,991,2,138,0.8 +2014,5,19,18,30,13.3,0.93,0.0439,0.68,0,0,0,1,12.9,0,0,0,0,0.247,97.53,115.31,0.14,991,2,148,0.8 +2014,5,19,19,30,13.100000000000001,0.9500000000000001,0.0448,0.68,0,0,0,1,12.8,0,0,0,0,0.248,97.98,102.35000000000001,0.14,991,2,156,0.7000000000000001 +2014,5,19,20,30,13.9,0.98,0.0434,0.68,0,0,0,1,12.700000000000001,0,0,0,0,0.247,92.62,89.35000000000001,0.14,992,2,164,0.8 +2014,5,19,21,30,16.1,1,0.0409,0.68,45,593,170,1,13,45,593,0,170,0.248,81.96000000000001,77.79,0.14,992,2,157,0.9 +2014,5,19,22,30,18.6,1.03,0.042100000000000005,0.68,62,763,361,1,12.9,62,763,0,361,0.248,69.34,66.89,0.14,992,2,119,0.9 +2014,5,19,23,30,20,1.03,0.044500000000000005,0.68,72,836,521,1,12.100000000000001,72,836,0,521,0.249,60.370000000000005,57.550000000000004,0.14,992,2.1,92,1 +2014,5,20,0,30,20.900000000000002,0.74,0.0884,0.68,99,824,621,8,11.8,387,169,0,494,0.249,56.03,50.69,0.14,991,2.2,95,0.7000000000000001 +2014,5,20,1,30,20.900000000000002,0.75,0.094,0.68,104,836,670,8,11.700000000000001,419,143,0,515,0.249,55.47,47.42,0.14,990,2.2,103,0.6000000000000001 +2014,5,20,2,30,20.900000000000002,0.77,0.0961,0.68,104,829,654,8,11.600000000000001,370,55,0,407,0.249,55.300000000000004,48.46,0.14,989,2.2,101,0.6000000000000001 +2014,5,20,3,30,20.900000000000002,0.8300000000000001,0.07680000000000001,0.68,90,821,578,8,11.600000000000001,357,162,0,453,0.249,55.31,53.58,0.14,989,2.2,103,0.5 +2014,5,20,4,30,20.700000000000003,0.86,0.0811,0.68,83,755,440,7,11.600000000000001,206,31,0,221,0.249,55.92,61.75,0.14,989,2.2,112,0.5 +2014,5,20,5,30,20,0.88,0.0819,0.68,67,630,263,7,12,112,22,0,119,0.248,59.93,71.92,0.14,989,2.2,116,0.4 +2014,5,20,6,30,19.1,0.91,0.0863,0.68,37,333,76,7,13.4,33,0,3,33,0.249,69.76,83.31,0.14,989,2.1,113,0.4 +2014,5,20,7,30,18.5,0.9400000000000001,0.08700000000000001,0.68,0,0,0,8,12.9,0,0,0,0,0.249,69.95,95.7,0.14,989,2.1,112,0.5 +2014,5,20,8,30,18.1,0.96,0.0868,0.68,0,0,0,8,12.5,0,0,0,0,0.25,69.66,108.47,0.14,990,2.1,119,0.5 +2014,5,20,9,30,17.900000000000002,0.98,0.0858,0.68,0,0,0,7,12.200000000000001,0,0,0,0,0.25,69.27,121.57000000000001,0.14,990,2.1,139,0.5 +2014,5,20,10,30,17.5,0.99,0.0834,0.68,0,0,0,7,12.100000000000001,0,0,0,0,0.249,70.53,134.84,0.14,990,2.1,163,0.5 +2014,5,20,11,30,16.8,1,0.0806,0.68,0,0,0,7,12.200000000000001,0,0,0,0,0.248,74.07000000000001,148.15,0.14,990,2.2,183,0.6000000000000001 +2014,5,20,12,30,16.1,0.99,0.0821,0.68,0,0,0,7,12.3,0,0,0,0,0.247,77.97,161.18,0.14,990,2.2,190,0.7000000000000001 +2014,5,20,13,30,15.5,0.99,0.0834,0.68,0,0,0,7,12.4,0,0,0,0,0.246,81.55,171.83,0.14,990,2.3000000000000003,186,0.7000000000000001 +2014,5,20,14,30,14.9,1,0.0847,0.68,0,0,0,7,12.4,0,0,0,0,0.245,84.76,167.54,0.14,990,2.4000000000000004,186,0.6000000000000001 +2014,5,20,15,30,14.600000000000001,1,0.08700000000000001,0.68,0,0,0,4,12.200000000000001,0,0,0,0,0.246,85.52,155.13,0.14,989,2.4000000000000004,183,0.6000000000000001 +2014,5,20,16,30,14.3,1,0.0844,0.68,0,0,0,4,12.100000000000001,0,0,0,0,0.248,86.43,141.9,0.14,989,2.5,184,0.6000000000000001 +2014,5,20,17,30,13.9,0.99,0.0756,0.68,0,0,0,3,11.9,0,0,0,0,0.249,87.48,128.6,0.14,989,2.4000000000000004,189,0.6000000000000001 +2014,5,20,18,30,13.4,0.97,0.06810000000000001,0.68,0,0,0,1,11.5,0,0,0,0,0.25,88.35000000000001,115.4,0.14,989,2.4000000000000004,191,0.6000000000000001 +2014,5,20,19,30,12.8,0.96,0.0649,0.68,0,0,0,0,11.3,0,0,0,0,0.25,90.64,102.45,0.14,989,2.3000000000000003,193,0.7000000000000001 +2014,5,20,20,30,13.4,0.9500000000000001,0.0634,0.68,0,0,0,1,11.200000000000001,0,0,0,0,0.249,86.45,89.45,0.14,990,2.3000000000000003,196,0.8 +2014,5,20,21,30,15.5,0.9400000000000001,0.062200000000000005,0.68,49,542,162,1,11.4,49,542,0,162,0.249,76.76,77.92,0.14,990,2.3000000000000003,190,0.9 +2014,5,20,22,30,18.3,0.9400000000000001,0.060000000000000005,0.68,68,727,351,1,11.700000000000001,68,727,0,351,0.248,65.3,67.04,0.14,990,2.3000000000000003,161,1 +2014,5,20,23,30,19.8,0.9500000000000001,0.0582,0.68,78,813,512,1,12.200000000000001,78,813,0,512,0.248,61.64,57.730000000000004,0.14,990,2.3000000000000003,138,1.1 +2014,5,21,0,30,22,0.96,0.0504,0.68,80,865,625,0,12.3,80,865,0,625,0.248,54.11,50.89,0.13,989,2.2,125,1.3 +2014,5,21,1,30,22.700000000000003,0.97,0.051300000000000005,0.68,82,880,675,0,12.200000000000001,82,880,0,675,0.248,51.63,47.62,0.13,989,2.2,120,1.4000000000000001 +2014,5,21,2,30,23.1,0.98,0.052000000000000005,0.68,81,872,657,0,12.100000000000001,81,872,0,657,0.249,49.93,48.660000000000004,0.13,988,2.3000000000000003,117,1.5 +2014,5,21,3,30,22.900000000000002,1.09,0.046400000000000004,0.68,75,853,579,0,12,75,853,0,579,0.25,50.160000000000004,53.75,0.13,988,2.3000000000000003,114,1.7000000000000002 +2014,5,21,4,30,22.3,1.09,0.0497,0.68,69,793,442,1,12,69,793,0,442,0.252,52.050000000000004,61.89,0.13,988,2.3000000000000003,111,1.8 +2014,5,21,5,30,21.1,1.07,0.0499,0.68,56,676,265,1,12.200000000000001,56,676,0,265,0.253,56.660000000000004,72.04,0.13,988,2.4000000000000004,107,1.4000000000000001 +2014,5,21,6,30,19.200000000000003,1.07,0.051800000000000006,0.68,32,394,77,1,13.3,32,394,0,77,0.253,68.47,83.41,0.13,989,2.4000000000000004,102,0.9 +2014,5,21,7,30,17.400000000000002,1.06,0.049600000000000005,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.253,78.83,95.78,0.13,989,2.4000000000000004,102,0.7000000000000001 +2014,5,21,8,30,16.5,1.04,0.046200000000000005,0.68,0,0,0,1,13.9,0,0,0,0,0.253,84.39,108.54,0.13,990,2.4000000000000004,104,0.7000000000000001 +2014,5,21,9,30,15.9,1.01,0.0449,0.68,0,0,0,0,14,0,0,0,0,0.252,88.63,121.62,0.13,990,2.5,107,0.7000000000000001 +2014,5,21,10,30,15.3,0.97,0.0458,0.68,0,0,0,1,14.3,0,0,0,0,0.251,93.55,134.89000000000001,0.13,991,2.5,110,0.7000000000000001 +2014,5,21,11,30,15,0.9400000000000001,0.047400000000000005,0.68,0,0,0,3,14.5,0,0,0,0,0.25,96.9,148.20000000000002,0.13,991,2.6,116,0.7000000000000001 +2014,5,21,12,30,14.700000000000001,0.93,0.050300000000000004,0.68,0,0,0,1,14.700000000000001,0,0,0,0,0.25,100,161.26,0.13,991,2.6,125,0.6000000000000001 +2014,5,21,13,30,14.5,0.91,0.051800000000000006,0.68,0,0,0,3,14.5,0,0,0,0,0.25,100,172.01,0.13,991,2.7,131,0.6000000000000001 +2014,5,21,14,30,14.4,0.89,0.051300000000000005,0.68,0,0,0,3,14.4,0,0,0,0,0.25,100,167.68,0.13,990,2.8000000000000003,134,0.6000000000000001 +2014,5,21,15,30,14.5,0.89,0.0565,0.68,0,0,0,3,14.5,0,0,0,0,0.251,100,155.22,0.13,990,2.8000000000000003,142,0.6000000000000001 +2014,5,21,16,30,14.700000000000001,0.87,0.0568,0.68,0,0,0,3,14.700000000000001,0,0,0,0,0.251,100,141.98,0.13,990,2.9000000000000004,148,0.6000000000000001 +2014,5,21,17,30,14.8,0.84,0.0517,0.68,0,0,0,1,14.8,0,0,0,0,0.251,100,128.68,0.13,990,2.9000000000000004,148,0.6000000000000001 +2014,5,21,18,30,14.8,0.87,0.0592,0.68,0,0,0,1,14.8,0,0,0,0,0.251,100,115.49000000000001,0.13,990,2.9000000000000004,146,0.6000000000000001 +2014,5,21,19,30,14.8,0.87,0.0611,0.68,0,0,0,3,14.8,0,0,0,0,0.251,100,102.55,0.13,990,2.9000000000000004,142,0.6000000000000001 +2014,5,21,20,30,15.4,0.8300000000000001,0.0558,0.68,0,0,0,3,15,0,0,3,0,0.251,97.73,89.55,0.13,991,2.8000000000000003,138,0.8 +2014,5,21,21,30,16.7,0.86,0.06280000000000001,0.68,49,524,157,1,15.4,49,524,0,157,0.251,91.8,78.05,0.13,991,2.8000000000000003,131,1.1 +2014,5,21,22,30,18.1,0.86,0.06420000000000001,0.68,69,706,342,1,16,69,706,0,342,0.251,87.43,67.19,0.13,992,2.8000000000000003,118,1.3 +2014,5,21,23,30,18.900000000000002,0.89,0.0632,0.68,79,794,501,1,16.7,79,794,0,501,0.251,86.95,57.9,0.13,992,2.8000000000000003,110,1.4000000000000001 +2014,5,22,0,30,20.900000000000002,0.88,0.0835,0.68,94,815,607,3,16.6,360,74,0,407,0.251,76.59,51.08,0.14,990,2.8000000000000003,88,1.5 +2014,5,22,1,30,21.900000000000002,0.89,0.078,0.68,95,838,657,3,16.1,383,63,0,425,0.251,69.73,47.83,0.14,989,2.8000000000000003,80,1.6 +2014,5,22,2,30,22.400000000000002,0.88,0.0694,0.68,90,841,644,3,15.700000000000001,302,27,0,320,0.251,65.87,48.85,0.14,988,2.8000000000000003,78,1.8 +2014,5,22,3,30,22.3,0.88,0.07390000000000001,0.68,88,809,564,3,15.4,256,27,0,272,0.251,65.09,53.92,0.14,988,2.8000000000000003,78,1.8 +2014,5,22,4,30,21.8,0.89,0.0771,0.68,80,742,428,3,15.4,253,85,0,293,0.251,67,62.03,0.14,988,2.9000000000000004,75,1.6 +2014,5,22,5,30,20.8,0.87,0.0763,0.68,64,619,254,8,15.5,154,154,0,201,0.251,71.73,72.16,0.14,988,2.9000000000000004,74,1.2000000000000002 +2014,5,22,6,30,19.400000000000002,0.89,0.0849,0.68,36,312,71,8,16.1,45,101,3,56,0.251,81.39,83.5,0.14,988,2.9000000000000004,75,0.7000000000000001 +2014,5,22,7,30,18.3,0.87,0.0883,0.68,0,0,0,4,16.1,0,0,0,0,0.251,87,95.86,0.14,988,2.9000000000000004,72,0.6000000000000001 +2014,5,22,8,30,17.7,0.84,0.0901,0.68,0,0,0,4,16,0,0,0,0,0.251,89.96000000000001,108.60000000000001,0.14,989,2.9000000000000004,67,0.6000000000000001 +2014,5,22,9,30,17.3,0.8300000000000001,0.09230000000000001,0.68,0,0,0,4,16,0,0,0,0,0.251,92.09,121.68,0.14,989,2.9000000000000004,64,0.6000000000000001 +2014,5,22,10,30,16.900000000000002,0.8300000000000001,0.09240000000000001,0.68,0,0,0,8,16,0,0,0,0,0.251,94.55,134.94,0.14,989,2.9000000000000004,60,0.6000000000000001 +2014,5,22,11,30,16.7,0.8200000000000001,0.09140000000000001,0.68,0,0,0,4,16.1,0,0,0,0,0.25,95.97,148.25,0.14,989,2.9000000000000004,55,0.6000000000000001 +2014,5,22,12,30,16.6,0.8200000000000001,0.09340000000000001,0.68,0,0,0,7,16.1,0,0,0,0,0.25,96.72,161.33,0.14,989,2.8000000000000003,50,0.6000000000000001 +2014,5,22,13,30,16.400000000000002,0.81,0.0915,0.68,0,0,0,7,16.1,0,0,0,0,0.25,98.08,172.18,0.14,989,2.8000000000000003,43,0.6000000000000001 +2014,5,22,14,30,16.3,0.8,0.08710000000000001,0.68,0,0,0,4,16.1,0,0,0,0,0.25,98.61,167.81,0.14,989,2.8000000000000003,40,0.6000000000000001 +2014,5,22,15,30,16.2,0.81,0.0845,0.68,0,0,0,8,16,0,0,0,0,0.251,98.93,155.31,0.14,988,2.7,42,0.6000000000000001 +2014,5,22,16,30,16.1,0.81,0.08120000000000001,0.68,0,0,0,8,16,0,0,0,0,0.252,99.39,142.06,0.14,988,2.7,43,0.6000000000000001 +2014,5,22,17,30,16,0.79,0.07780000000000001,0.68,0,0,0,7,16,0,0,0,0,0.253,99.84,128.76,0.14,988,2.6,41,0.6000000000000001 +2014,5,22,18,30,15.9,0.77,0.0717,0.68,0,0,0,4,15.9,0,0,0,0,0.254,100,115.58,0.14,988,2.5,43,0.6000000000000001 +2014,5,22,19,30,15.700000000000001,0.75,0.0646,0.68,0,0,0,4,15.700000000000001,0,0,0,0,0.255,100,102.65,0.14,989,2.4000000000000004,43,0.7000000000000001 +2014,5,22,20,30,16.3,0.71,0.057600000000000005,0.68,0,0,0,4,15.8,0,0,3,0,0.256,96.73,89.65,0.14,989,2.4000000000000004,40,0.8 +2014,5,22,21,30,18.1,0.6900000000000001,0.0545,0.68,47,540,158,8,16.1,92,140,3,121,0.257,87.93,78.17,0.14,989,2.4000000000000004,34,1 +2014,5,22,22,30,20.3,0.68,0.053000000000000005,0.68,65,726,345,1,16,65,726,0,345,0.258,76.31,67.34,0.14,989,2.4000000000000004,29,1.3 +2014,5,22,23,30,21.200000000000003,0.67,0.0516,0.68,75,812,505,1,15.5,75,812,0,505,0.258,69.95,58.07,0.14,989,2.4000000000000004,26,1.5 +2014,5,23,0,30,22.700000000000003,0.64,0.0737,0.68,92,829,610,1,15.100000000000001,92,829,0,610,0.259,62.11,51.27,0.13,987,2.4000000000000004,17,1.4000000000000001 +2014,5,23,1,30,23.3,0.65,0.0694,0.68,92,851,661,3,14.8,408,112,0,482,0.259,58.730000000000004,48.02,0.13,986,2.4000000000000004,13,1.3 +2014,5,23,2,30,23.5,0.66,0.0679,0.68,90,845,644,3,14.5,387,84,0,442,0.26,57.17,49.04,0.13,986,2.5,12,1.3 +2014,5,23,3,30,23.400000000000002,0.7000000000000001,0.06430000000000001,0.68,84,824,568,3,14.3,352,166,0,449,0.259,56.76,54.08,0.13,985,2.4000000000000004,12,1.2000000000000002 +2014,5,23,4,30,23,0.74,0.0646,0.68,76,765,433,3,14.3,163,22,0,174,0.258,57.84,62.17,0.13,984,2.4000000000000004,14,1 +2014,5,23,5,30,22.200000000000003,0.75,0.0637,0.68,61,644,257,3,14.4,153,152,0,200,0.258,61.25,72.26,0.13,984,2.4000000000000004,26,0.7000000000000001 +2014,5,23,6,30,20.8,0.8,0.06910000000000001,0.68,34,342,72,4,15.8,44,77,3,52,0.258,72.9,83.59,0.13,984,2.4000000000000004,45,0.6000000000000001 +2014,5,23,7,30,19.400000000000002,0.84,0.0679,0.68,0,0,0,4,15.9,0,0,0,0,0.259,80.27,95.93,0.13,985,2.4000000000000004,59,0.6000000000000001 +2014,5,23,8,30,18.5,0.86,0.0648,0.68,0,0,0,4,15.8,0,0,0,0,0.26,84.17,108.66,0.13,985,2.4000000000000004,55,0.7000000000000001 +2014,5,23,9,30,17.900000000000002,0.88,0.0649,0.68,0,0,0,3,15.8,0,0,0,0,0.261,87.7,121.73,0.13,985,2.5,35,0.7000000000000001 +2014,5,23,10,30,17.400000000000002,0.89,0.0648,0.68,0,0,0,4,15.9,0,0,0,0,0.262,90.65,134.99,0.13,986,2.7,187,0.7000000000000001 +2014,5,23,11,30,16.8,0.9,0.064,0.68,0,0,0,4,15.8,0,0,0,0,0.262,93.73,148.3,0.13,986,2.8000000000000003,339,0.7000000000000001 +2014,5,23,12,30,16.3,0.91,0.061700000000000005,0.68,0,0,0,8,15.600000000000001,0,0,0,0,0.263,95.75,161.39000000000001,0.13,985,2.8000000000000003,315,0.7000000000000001 +2014,5,23,13,30,15.700000000000001,0.91,0.0594,0.68,0,0,0,8,15.4,0,0,0,0,0.263,98.16,172.34,0.13,985,2.9000000000000004,295,0.7000000000000001 +2014,5,23,14,30,15.3,0.9,0.057300000000000004,0.68,0,0,0,7,15.100000000000001,0,0,0,0,0.261,99.03,167.94,0.13,985,3,282,0.7000000000000001 +2014,5,23,15,30,15,0.9,0.055600000000000004,0.68,0,0,0,7,14.9,0,0,0,0,0.26,99.63,155.39000000000001,0.13,984,3,276,0.7000000000000001 +2014,5,23,16,30,14.700000000000001,0.9,0.0534,0.68,0,0,0,0,14.700000000000001,0,0,0,0,0.258,100,142.14000000000001,0.13,984,3,276,0.7000000000000001 +2014,5,23,17,30,14.4,0.89,0.0512,0.68,0,0,0,0,14.4,0,0,0,0,0.258,100,128.84,0.13,984,3,278,0.7000000000000001 +2014,5,23,18,30,14.200000000000001,0.88,0.051800000000000006,0.68,0,0,0,0,14.200000000000001,0,0,0,0,0.259,100,115.66,0.13,984,3,276,0.7000000000000001 +2014,5,23,19,30,14,0.86,0.0546,0.68,0,0,0,0,14,0,0,0,0,0.26,100,102.74000000000001,0.13,984,2.9000000000000004,274,0.7000000000000001 +2014,5,23,20,30,14.600000000000001,0.84,0.0575,0.68,0,0,0,1,14,0,0,0,0,0.261,96.36,89.74,0.13,985,2.8000000000000003,272,0.9 +2014,5,23,21,30,16.3,0.84,0.059000000000000004,0.68,47,526,154,1,14.600000000000001,47,526,0,154,0.261,89.47,78.3,0.13,985,2.7,269,1.3 +2014,5,23,22,30,18.5,0.85,0.057800000000000004,0.68,66,716,340,1,15.3,66,716,0,340,0.261,81.4,67.48,0.13,985,2.6,265,1.6 +2014,5,23,23,30,19.8,0.89,0.054900000000000004,0.68,75,805,499,1,15.600000000000001,75,805,0,499,0.262,76.74,58.230000000000004,0.13,985,2.6,262,1.7000000000000002 +2014,5,24,0,30,22.700000000000003,0.84,0.059300000000000005,0.68,83,846,611,1,15.200000000000001,83,846,0,611,0.262,62.61,51.45,0.13,984,2.4000000000000004,248,1.8 +2014,5,24,1,30,23.8,0.86,0.0577,0.68,85,866,662,0,14.600000000000001,85,866,0,662,0.262,56.27,48.21,0.13,984,2.3000000000000003,236,1.7000000000000002 +2014,5,24,2,30,24.400000000000002,0.87,0.0572,0.68,84,862,647,0,13.9,84,862,0,647,0.261,52.04,49.22,0.13,983,2.3000000000000003,225,1.7000000000000002 +2014,5,24,3,30,24.6,0.97,0.0466,0.68,75,851,572,0,13.200000000000001,75,851,0,572,0.261,49,54.24,0.13,982,2.2,216,1.6 +2014,5,24,4,30,24.5,1,0.0488,0.68,68,792,436,0,12.5,68,792,0,436,0.262,47.11,62.29,0.13,982,2.2,208,1.4000000000000001 +2014,5,24,5,30,23.400000000000002,1.02,0.0509,0.68,56,675,261,0,12.200000000000001,56,675,0,261,0.263,49.300000000000004,72.37,0.13,982,2.1,198,0.9 +2014,5,24,6,30,21.400000000000002,1.05,0.051300000000000005,0.68,31,391,74,1,14.200000000000001,31,391,0,74,0.263,63.370000000000005,83.67,0.13,982,2.1,185,0.5 +2014,5,24,7,30,19.5,1.09,0.049800000000000004,0.68,0,0,0,0,13.4,0,0,0,0,0.263,67.76,96,0.13,983,2,173,0.5 +2014,5,24,8,30,18.3,1.1300000000000001,0.0477,0.68,0,0,0,0,12.9,0,0,0,0,0.263,70.72,108.72,0.13,984,2,163,0.5 +2014,5,24,9,30,17.6,1.18,0.0455,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.263,72.76,121.77,0.13,985,2,154,0.5 +2014,5,24,10,30,17,1.24,0.0431,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.263,75.64,135.03,0.13,985,2,148,0.6000000000000001 +2014,5,24,11,30,16.8,1.3,0.0408,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.262,76.47,148.34,0.13,985,2,153,0.6000000000000001 +2014,5,24,12,30,16.5,1.34,0.0388,0.68,0,0,0,0,12.600000000000001,0,0,0,0,0.26,77.69,161.45000000000002,0.13,986,2,171,0.6000000000000001 +2014,5,24,13,30,15.9,1.3800000000000001,0.0376,0.68,0,0,0,0,12.5,0,0,0,0,0.259,80.24,172.49,0.13,986,1.9000000000000001,191,0.6000000000000001 +2014,5,24,14,30,15.200000000000001,1.4000000000000001,0.037000000000000005,0.68,0,0,0,0,12.4,0,0,0,0,0.257,83.60000000000001,168.07,0.13,986,1.9000000000000001,203,0.7000000000000001 +2014,5,24,15,30,14.4,1.42,0.0366,0.68,0,0,0,0,12.4,0,0,0,0,0.256,87.71000000000001,155.48,0.13,985,1.8,209,0.8 +2014,5,24,16,30,13.9,1.43,0.0368,0.68,0,0,0,0,12.3,0,0,0,0,0.256,90.18,142.22,0.13,985,1.8,210,0.9 +2014,5,24,17,30,13.5,1.43,0.0366,0.68,0,0,0,0,12.200000000000001,0,0,0,0,0.255,91.97,128.92000000000002,0.13,986,1.7000000000000002,209,1 +2014,5,24,18,30,13.100000000000001,1.42,0.0361,0.68,0,0,0,0,12.100000000000001,0,0,0,0,0.255,93.38,115.75,0.13,986,1.7000000000000002,211,1 +2014,5,24,19,30,12.9,1.41,0.035500000000000004,0.68,0,0,0,0,11.8,0,0,0,0,0.255,93.32000000000001,102.84,0.13,987,1.7000000000000002,212,1 +2014,5,24,20,30,13.8,1.41,0.035500000000000004,0.68,0,0,0,0,11.600000000000001,0,0,0,0,0.254,86.60000000000001,89.83,0.13,987,1.7000000000000002,211,1 +2014,5,24,21,30,16.2,1.41,0.036000000000000004,0.68,41,601,161,1,12.200000000000001,41,601,0,161,0.255,77.04,78.42,0.13,988,1.7000000000000002,214,1 +2014,5,24,22,30,19.400000000000002,1.41,0.0364,0.68,57,773,351,1,12.100000000000001,57,773,0,351,0.256,62.65,67.62,0.13,988,1.7000000000000002,217,0.8 +2014,5,24,23,30,21.200000000000003,1.42,0.0363,0.68,66,852,512,0,11.8,66,852,0,512,0.256,55.1,58.39,0.13,989,1.7000000000000002,217,0.5 +2014,5,25,0,30,24.400000000000002,1.37,0.0367,0.68,71,890,624,0,10.3,71,890,0,624,0.257,41.13,51.63,0.13,988,1.7000000000000002,202,0.30000000000000004 +2014,5,25,1,30,25.400000000000002,1.3800000000000001,0.0368,0.68,73,905,674,0,9.700000000000001,73,905,0,674,0.257,37.21,48.4,0.13,987,1.7000000000000002,207,0.2 +2014,5,25,2,30,25.900000000000002,1.3800000000000001,0.036500000000000005,0.68,72,901,659,0,9.3,72,901,0,659,0.257,35.19,49.39,0.13,986,1.7000000000000002,220,0.2 +2014,5,25,3,30,26,1.37,0.0371,0.68,69,873,577,0,9,69,873,0,577,0.256,34.14,54.39,0.13,986,1.8,225,0.30000000000000004 +2014,5,25,4,30,25.700000000000003,1.36,0.0376,0.68,63,818,442,0,9,63,818,0,442,0.256,34.83,62.42,0.13,986,1.8,217,0.30000000000000004 +2014,5,25,5,30,24.6,1.35,0.0383,0.68,51,706,264,0,9.4,51,706,0,264,0.255,38.14,72.47,0.13,986,1.8,199,0.2 +2014,5,25,6,30,22.5,1.34,0.039,0.68,28,429,75,0,12.5,28,429,0,75,0.253,53.19,83.75,0.13,987,1.8,102,0.2 +2014,5,25,7,30,20.6,1.32,0.040100000000000004,0.68,0,0,0,0,11.200000000000001,0,0,0,0,0.252,54.730000000000004,96.06,0.13,988,1.8,180,0.30000000000000004 +2014,5,25,8,30,19.400000000000002,1.3,0.0415,0.68,0,0,0,0,10.700000000000001,0,0,0,0,0.251,57.15,108.77,0.13,988,1.8,318,0.30000000000000004 +2014,5,25,9,30,18.1,1.29,0.043000000000000003,0.68,0,0,0,0,11,0,0,0,0,0.25,63.04,121.81,0.13,989,1.8,284,0.5 +2014,5,25,10,30,17,1.28,0.0449,0.68,0,0,0,0,11.4,0,0,0,0,0.249,69.46000000000001,135.06,0.13,989,1.8,265,0.6000000000000001 +2014,5,25,11,30,16,1.26,0.046400000000000004,0.68,0,0,0,0,11.4,0,0,0,0,0.248,74.24,148.38,0.13,990,1.8,252,0.7000000000000001 +2014,5,25,12,30,15.3,1.25,0.0473,0.68,0,0,0,0,11.200000000000001,0,0,0,0,0.248,76.75,161.5,0.13,990,1.8,242,0.7000000000000001 +2014,5,25,13,30,14.700000000000001,1.24,0.048,0.68,0,0,0,0,11,0,0,0,0,0.247,78.45,172.64000000000001,0.13,990,1.8,234,0.8 +2014,5,25,14,30,14.3,1.23,0.047900000000000005,0.68,0,0,0,0,10.700000000000001,0,0,0,0,0.247,79.01,168.19,0.13,989,1.8,230,0.8 +2014,5,25,15,30,14,1.24,0.047,0.68,0,0,0,0,10.5,0,0,0,0,0.247,79.46000000000001,155.56,0.13,989,1.8,227,0.8 +2014,5,25,16,30,13.700000000000001,1.25,0.0459,0.68,0,0,0,0,10.3,0,0,0,0,0.248,79.93,142.3,0.13,989,1.8,223,0.8 +2014,5,25,17,30,13.5,1.26,0.0448,0.68,0,0,0,0,10.200000000000001,0,0,0,0,0.248,80.23,129,0.13,989,1.8,217,0.8 +2014,5,25,18,30,13.4,1.27,0.0438,0.68,0,0,0,0,10.100000000000001,0,0,0,0,0.249,80.39,115.84,0.13,990,1.7000000000000002,210,0.8 +2014,5,25,19,30,13.4,1.27,0.0434,0.68,0,0,0,0,10,0,0,0,0,0.249,79.89,102.94,0.13,990,1.7000000000000002,202,0.8 +2014,5,25,20,30,14,1.28,0.044700000000000004,0.68,0,0,0,1,10,0,0,0,0,0.249,76.74,89.92,0.13,991,1.7000000000000002,194,0.8 +2014,5,25,21,30,15.8,1.29,0.046400000000000004,0.68,43,577,158,1,11,43,577,0,158,0.249,73.18,78.54,0.13,992,1.7000000000000002,188,0.8 +2014,5,25,22,30,18.7,1.31,0.0476,0.68,61,755,347,1,11.200000000000001,61,755,0,347,0.248,61.65,67.76,0.13,992,1.7000000000000002,154,0.7000000000000001 +2014,5,25,23,30,20.400000000000002,1.33,0.048400000000000006,0.68,71,836,508,0,11.3,71,836,0,508,0.248,56.01,58.550000000000004,0.13,992,1.7000000000000002,123,0.5 +2014,5,26,0,30,24.200000000000003,1.12,0.068,0.68,87,855,615,0,10.600000000000001,87,855,0,615,0.247,42.42,51.81,0.14,991,1.7000000000000002,75,0.7000000000000001 +2014,5,26,1,30,25.200000000000003,1.1500000000000001,0.07050000000000001,0.68,90,866,663,0,10.200000000000001,90,866,0,663,0.247,38.94,48.58,0.14,990,1.8,74,0.8 +2014,5,26,2,30,25.6,1.18,0.0734,0.68,90,859,648,0,10.100000000000001,90,859,0,648,0.247,37.69,49.56,0.14,990,1.8,71,1 +2014,5,26,3,30,25.5,1.18,0.0596,0.68,80,846,571,0,10,80,846,0,571,0.247,37.64,54.53,0.14,989,1.8,67,1 +2014,5,26,4,30,24.900000000000002,1.19,0.0584,0.68,72,787,435,0,10,72,787,0,435,0.248,39.06,62.53,0.14,989,1.9000000000000001,65,1.1 +2014,5,26,5,30,23.3,1.2,0.0565,0.68,57,671,258,0,10.5,57,671,0,258,0.249,44.5,72.56,0.14,989,1.9000000000000001,66,0.8 +2014,5,26,6,30,20.8,1.23,0.0585,0.68,31,380,72,0,13.100000000000001,31,380,0,72,0.249,61.53,83.82000000000001,0.14,990,1.9000000000000001,67,0.7000000000000001 +2014,5,26,7,30,18.900000000000002,1.25,0.0584,0.68,0,0,0,0,12.5,0,0,0,0,0.25,66.39,96.12,0.14,990,1.9000000000000001,68,0.7000000000000001 +2014,5,26,8,30,17.900000000000002,1.27,0.0608,0.68,0,0,0,0,12.5,0,0,0,0,0.25,70.57000000000001,108.81,0.14,991,2,70,0.7000000000000001 +2014,5,26,9,30,17.3,1.29,0.0636,0.68,0,0,0,0,12.700000000000001,0,0,0,0,0.25,74.19,121.85000000000001,0.14,991,2,74,0.7000000000000001 +2014,5,26,10,30,17,1.3,0.0645,0.68,0,0,0,0,13,0,0,0,0,0.25,77.46000000000001,135.09,0.14,991,1.9000000000000001,78,0.7000000000000001 +2014,5,26,11,30,16.7,1.31,0.0654,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.25,79.47,148.41,0.14,991,1.9000000000000001,88,0.7000000000000001 +2014,5,26,12,30,16.5,1.32,0.0661,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.25,80.37,161.55,0.14,991,1.9000000000000001,107,0.6000000000000001 +2014,5,26,13,30,16,1.33,0.0655,0.68,0,0,0,0,13.200000000000001,0,0,0,0,0.25,83.38,172.78,0.14,991,1.8,128,0.6000000000000001 +2014,5,26,14,30,15.5,1.33,0.06520000000000001,0.68,0,0,0,0,13.4,0,0,0,0,0.25,87.09,168.31,0.14,990,1.8,147,0.7000000000000001 +2014,5,26,15,30,14.9,1.33,0.06620000000000001,0.68,0,0,0,0,13.600000000000001,0,0,0,0,0.25,91.66,155.65,0.14,990,1.8,163,0.6000000000000001 +2014,5,26,16,30,14.5,1.33,0.0663,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.25,95.02,142.38,0.14,990,1.8,175,0.6000000000000001 +2014,5,26,17,30,14.4,1.33,0.066,0.68,0,0,0,0,13.8,0,0,0,0,0.25,96.41,129.08,0.14,990,1.8,186,0.5 +2014,5,26,18,30,14.200000000000001,1.33,0.0655,0.68,0,0,0,0,13.9,0,0,0,0,0.25,98.18,115.93,0.14,990,1.8,211,0.5 +2014,5,26,19,30,13.8,1.32,0.0641,0.68,0,0,0,0,13.8,0,0,0,0,0.251,100,103.03,0.14,990,1.8,248,0.5 +2014,5,26,20,30,13.9,1.32,0.0625,0.68,0,0,0,0,13.9,0,0,0,0,0.252,100,90.01,0.14,991,1.8,272,0.8 +2014,5,26,21,30,15.600000000000001,1.31,0.0608,0.68,46,545,153,0,14,46,545,0,153,0.253,89.92,78.67,0.14,991,1.8,279,0.9 +2014,5,26,22,30,18.5,1.31,0.059300000000000005,0.68,65,734,341,1,14.100000000000001,65,734,0,341,0.254,75.53,67.9,0.14,991,1.8,306,1.1 +2014,5,26,23,30,20.1,1.31,0.0591,0.68,76,820,501,1,14.100000000000001,76,820,0,501,0.254,68.23,58.71,0.14,991,1.8,329,1.2000000000000002 +2014,5,27,0,30,22.5,1.19,0.0709,0.68,87,849,610,1,13.600000000000001,87,849,0,610,0.254,57.230000000000004,51.980000000000004,0.14,989,1.8,351,1.4000000000000001 +2014,5,27,1,30,23.3,1.21,0.0688,0.68,89,865,659,1,13.100000000000001,89,865,0,659,0.254,52.82,48.75,0.14,988,1.9000000000000001,181,1.4000000000000001 +2014,5,27,2,30,23.900000000000002,1.22,0.06620000000000001,0.68,87,863,645,0,12.9,87,863,0,645,0.255,50.21,49.72,0.14,987,1.9000000000000001,4,1.5 +2014,5,27,3,30,24,1.1300000000000001,0.0732,0.68,86,825,563,1,12.8,86,825,0,563,0.255,49.69,54.67,0.14,986,2,4,1.5 +2014,5,27,4,30,23.700000000000003,1.07,0.077,0.68,78,759,427,1,12.9,78,759,0,427,0.254,50.82,62.65,0.14,986,2,5,1.4000000000000001 +2014,5,27,5,30,22.6,1.03,0.0772,0.68,63,630,251,0,13.100000000000001,63,630,0,251,0.254,55.08,72.65,0.14,986,2.1,13,1.1 +2014,5,27,6,30,20.6,1.01,0.0818,0.68,34,321,68,1,14.8,34,321,0,68,0.254,69.24,83.89,0.14,986,2.1,23,0.8 +2014,5,27,7,30,19.200000000000003,0.99,0.0845,0.68,0,0,0,0,14.8,0,0,0,0,0.255,75.55,96.17,0.14,986,2.2,22,0.8 +2014,5,27,8,30,18.6,0.9500000000000001,0.0859,0.68,0,0,0,0,15,0,0,0,0,0.256,79.73,108.85000000000001,0.14,987,2.2,14,0.8 +2014,5,27,9,30,18.1,0.91,0.0907,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.256,83.23,121.88,0.14,987,2.3000000000000003,183,0.8 +2014,5,27,10,30,17.7,0.86,0.0908,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.257,85.51,135.12,0.14,987,2.3000000000000003,354,0.8 +2014,5,27,11,30,17.2,0.81,0.08990000000000001,0.68,0,0,0,0,15.200000000000001,0,0,0,0,0.258,87.94,148.43,0.14,987,2.3000000000000003,347,0.8 +2014,5,27,12,30,16.8,0.77,0.0898,0.68,0,0,0,0,15.100000000000001,0,0,0,0,0.26,89.78,161.59,0.14,987,2.2,342,0.8 +2014,5,27,13,30,16.3,0.74,0.0892,0.68,0,0,0,0,15,0,0,0,0,0.261,92.13,172.91,0.14,987,2.2,338,0.8 +2014,5,27,14,30,15.9,0.72,0.0886,0.68,0,0,0,3,14.9,0,0,0,0,0.261,93.95,168.42000000000002,0.14,987,2.2,335,0.8 +2014,5,27,15,30,15.600000000000001,0.71,0.0882,0.68,0,0,0,0,14.9,0,0,0,0,0.261,95.39,155.73,0.14,986,2.2,334,0.8 +2014,5,27,16,30,15.3,0.71,0.0858,0.68,0,0,0,0,14.8,0,0,0,0,0.262,97.14,142.45000000000002,0.14,986,2.2,333,0.8 +2014,5,27,17,30,14.8,0.72,0.08220000000000001,0.68,0,0,0,0,14.8,0,0,0,0,0.262,100,129.16,0.14,986,2.1,332,0.8 +2014,5,27,18,30,14.5,0.75,0.07980000000000001,0.68,0,0,0,0,14.5,0,0,0,0,0.262,100,116.01,0.14,987,2.1,332,0.8 +2014,5,27,19,30,14.200000000000001,0.78,0.0782,0.68,0,0,0,0,14.200000000000001,0,0,0,0,0.262,100,103.13,0.14,987,2.1,331,0.8 +2014,5,27,20,30,15,0.81,0.0766,0.68,0,0,0,0,14.8,0,0,0,0,0.261,98.43,90.10000000000001,0.14,987,2.2,325,0.9 +2014,5,27,21,30,17.1,0.85,0.0785,0.68,50,489,145,1,14.9,50,489,0,145,0.261,87.04,78.78,0.14,988,2.2,320,1.3 +2014,5,27,22,30,19.5,0.9,0.08070000000000001,0.68,73,686,330,1,15.100000000000001,73,686,0,330,0.261,75.93,68.04,0.14,988,2.2,321,1.6 +2014,5,27,23,30,20.8,0.91,0.0766,0.68,84,783,489,0,15,84,783,0,489,0.261,69.41,58.86,0.14,988,2.2,322,1.8 +2014,5,28,0,30,23.700000000000003,0.96,0.063,0.68,84,843,602,0,14.5,84,843,0,602,0.26,56.19,52.14,0.14,986,2.2,315,1.9000000000000001 +2014,5,28,1,30,24.900000000000002,0.96,0.0625,0.68,87,860,652,0,14,87,860,0,652,0.259,50.75,48.92,0.14,986,2.2,304,1.9000000000000001 +2014,5,28,2,30,25.6,0.9500000000000001,0.0626,0.68,86,853,636,0,13.8,86,853,0,636,0.258,47.93,49.88,0.14,985,2.3000000000000003,295,1.8 +2014,5,28,3,30,25.700000000000003,0.96,0.065,0.68,83,823,557,0,13.700000000000001,83,823,0,557,0.257,47.33,54.800000000000004,0.14,985,2.3000000000000003,289,1.6 +2014,5,28,4,30,25.3,0.97,0.065,0.68,74,761,423,0,13.600000000000001,74,761,0,423,0.257,48.33,62.75,0.14,984,2.4000000000000004,284,1.3 +2014,5,28,5,30,24.200000000000003,0.97,0.0618,0.68,59,643,250,0,14,59,643,0,250,0.257,52.92,72.73,0.14,985,2.4000000000000004,283,0.8 +2014,5,28,6,30,22.6,1,0.0644,0.68,31,342,67,0,16.2,31,342,0,67,0.258,66.98,83.95,0.14,985,2.5,291,0.5 +2014,5,28,7,30,21.200000000000003,1.01,0.06470000000000001,0.68,0,0,0,0,16.1,0,0,0,0,0.259,72.46000000000001,96.22,0.14,986,2.5,296,0.5 +2014,5,28,8,30,20.3,1.02,0.0636,0.68,0,0,0,0,15.8,0,0,0,0,0.26,75.32000000000001,108.89,0.14,986,2.5,296,0.5 +2014,5,28,9,30,19.6,1.02,0.062200000000000005,0.68,0,0,0,0,15.5,0,0,0,0,0.26,77.29,121.91,0.14,986,2.5,297,0.6000000000000001 +2014,5,28,10,30,18.8,1.01,0.0603,0.68,0,0,0,0,15.3,0,0,0,0,0.261,79.99,135.14000000000001,0.14,987,2.5,297,0.7000000000000001 +2014,5,28,11,30,18.1,1.01,0.058,0.68,0,0,0,0,15,0,0,0,0,0.261,82.26,148.46,0.14,987,2.4000000000000004,297,0.8 +2014,5,28,12,30,17.3,1.02,0.056100000000000004,0.68,0,0,0,0,14.8,0,0,0,0,0.262,85.02,161.63,0.14,987,2.4000000000000004,297,0.8 +2014,5,28,13,30,16.5,1.03,0.0543,0.68,0,0,0,0,14.4,0,0,0,0,0.263,87.68,173.03,0.14,987,2.3000000000000003,297,0.8 +2014,5,28,14,30,15.9,1.05,0.0529,0.68,0,0,0,0,14.100000000000001,0,0,0,0,0.263,88.86,168.54,0.14,987,2.3000000000000003,291,0.8 +2014,5,28,15,30,15.3,1.07,0.051800000000000006,0.68,0,0,0,0,13.700000000000001,0,0,0,0,0.263,90.37,155.81,0.14,987,2.2,280,0.7000000000000001 +2014,5,28,16,30,14.9,1.08,0.0509,0.68,0,0,0,0,13.5,0,0,0,0,0.264,91.51,142.53,0.14,987,2.2,270,0.7000000000000001 +2014,5,28,17,30,14.5,1.09,0.0504,0.68,0,0,0,0,13.3,0,0,0,0,0.263,92.67,129.24,0.14,987,2.2,262,0.7000000000000001 +2014,5,28,18,30,14.100000000000001,1.09,0.0495,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.263,93.98,116.10000000000001,0.14,987,2.1,257,0.7000000000000001 +2014,5,28,19,30,13.8,1.09,0.0492,0.68,0,0,0,0,13.100000000000001,0,0,0,0,0.262,95.44,103.22,0.14,988,2.1,252,0.7000000000000001 +2014,5,28,20,30,14.3,1.09,0.0494,0.68,0,0,0,0,13,0,0,0,0,0.261,92.07000000000001,90.19,0.14,988,2.1,246,0.8 +2014,5,28,21,30,16.3,1.09,0.050300000000000004,0.68,43,545,148,1,13.3,43,545,0,148,0.261,82.44,78.9,0.14,989,2.1,239,0.9 +2014,5,28,22,30,19.200000000000003,1.09,0.051000000000000004,0.68,62,731,334,1,13.600000000000001,62,731,0,334,0.26,69.95,68.17,0.14,989,2.1,229,0.8 +2014,5,28,23,30,20.900000000000002,1.09,0.0523,0.68,73,815,492,0,13.5,73,815,0,492,0.26,62.76,59.01,0.14,989,2.1,223,0.8 +2014,5,29,0,30,24.700000000000003,1.05,0.0606,0.68,83,845,599,0,13.100000000000001,83,845,0,599,0.26,48.42,52.300000000000004,0.14,988,2.2,177,0.7000000000000001 +2014,5,29,1,30,25.8,1.06,0.061500000000000006,0.68,85,861,649,0,13,85,861,0,649,0.259,45.1,49.08,0.14,987,2.2,156,0.8 +2014,5,29,2,30,26,1.05,0.0651,0.68,86,850,632,0,13,86,850,0,632,0.26,44.42,50.03,0.14,986,2.3000000000000003,145,0.9 +2014,5,29,3,30,25.8,1.02,0.07640000000000001,0.68,87,808,551,0,13,87,808,0,551,0.26,45.04,54.93,0.14,986,2.4000000000000004,133,1.1 +2014,5,29,4,30,25,1.04,0.0819,0.68,80,740,418,0,13.100000000000001,80,740,0,418,0.262,47.46,62.85,0.14,986,2.4000000000000004,118,1.2000000000000002 +2014,5,29,5,30,23.5,1.03,0.0818,0.68,64,610,244,1,13.600000000000001,64,610,0,244,0.263,53.93,72.81,0.14,986,2.5,105,1.1 +2014,5,29,6,30,21.3,1.04,0.08710000000000001,0.68,33,300,65,1,15.4,33,300,0,65,0.264,69.01,84.01,0.14,987,2.5,98,0.9 +2014,5,29,7,30,19.5,1.03,0.08900000000000001,0.68,0,0,0,0,15.700000000000001,0,0,0,0,0.264,78.78,96.26,0.14,987,2.5,94,0.8 +2014,5,29,8,30,18.6,1,0.0915,0.68,0,0,0,0,16.1,0,0,0,0,0.265,85.49,108.92,0.14,988,2.6,94,0.8 +2014,5,29,9,30,17.8,0.96,0.0974,0.68,0,0,0,3,16.3,0,0,0,0,0.264,91.13,121.93,0.14,989,2.6,97,0.7000000000000001 +2014,5,29,10,30,17.400000000000002,0.91,0.10300000000000001,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.264,93.99,135.16,0.14,989,2.6,106,0.7000000000000001 +2014,5,29,11,30,17,0.85,0.10700000000000001,0.68,0,0,0,0,16.400000000000002,0,0,0,0,0.263,96.24000000000001,148.47,0.14,989,2.6,118,0.7000000000000001 +2014,5,29,12,30,16.7,0.8,0.11370000000000001,0.68,0,0,0,1,16.3,0,0,0,0,0.263,97.75,161.66,0.14,990,2.6,126,0.7000000000000001 +2014,5,29,13,30,16.6,0.76,0.12390000000000001,0.68,0,0,0,1,16.2,0,0,0,0,0.262,97.34,173.15,0.14,989,2.6,128,0.7000000000000001 +2014,5,29,14,30,16.5,0.74,0.1282,0.68,0,0,0,3,16.1,0,0,0,0,0.262,97.5,168.65,0.14,989,2.6,126,0.8 +2014,5,29,15,30,16.3,0.77,0.1438,0.68,0,0,0,3,16,0,0,0,0,0.262,98.06,155.89000000000001,0.14,989,2.6,125,0.8 +2014,5,29,16,30,16.2,0.77,0.1467,0.68,0,0,0,4,15.8,0,0,0,0,0.262,97.62,142.61,0.14,989,2.5,126,0.8 +2014,5,29,17,30,16,0.75,0.1386,0.68,0,0,0,3,15.700000000000001,0,0,0,0,0.263,97.8,129.32,0.14,989,2.5,131,0.7000000000000001 +2014,5,29,18,30,15.9,0.76,0.1345,0.68,0,0,0,1,15.4,0,0,0,0,0.263,97.15,116.18,0.14,989,2.5,134,0.7000000000000001 +2014,5,29,19,30,15.700000000000001,0.77,0.1274,0.68,0,0,0,3,15.3,0,0,0,0,0.263,97.26,103.31,0.14,990,2.4000000000000004,132,0.7000000000000001 +2014,5,29,20,30,16,0.79,0.1193,0.68,0,0,0,3,15.100000000000001,0,0,0,0,0.263,94.32000000000001,90.87,0.14,991,2.4000000000000004,131,0.9 +2014,5,29,21,30,16.900000000000002,0.81,0.1121,0.68,56,422,136,3,15.5,22,0,3,22,0.263,91.23,79.01,0.14,991,2.4000000000000004,135,1.2000000000000002 +2014,5,29,22,30,18.1,0.8200000000000001,0.1057,0.68,81,642,318,3,15.9,55,7,0,57,0.263,87.05,68.29,0.14,991,2.4000000000000004,134,1.4000000000000001 +2014,5,29,23,30,18.900000000000002,0.84,0.0988,0.68,92,749,476,3,16.1,109,21,0,120,0.263,83.97,59.15,0.14,991,2.4000000000000004,130,1.5 +2014,5,30,0,30,21.1,0.87,0.1328,0.68,114,764,579,3,15.700000000000001,265,26,0,281,0.263,71.3,52.45,0.14,990,2.4000000000000004,116,1.7000000000000002 +2014,5,30,1,30,22.200000000000003,0.88,0.1222,0.68,113,794,631,4,15,229,24,0,245,0.263,63.65,49.230000000000004,0.14,990,2.4000000000000004,114,1.8 +2014,5,30,2,30,22.700000000000003,0.89,0.11860000000000001,0.68,110,792,617,4,14.5,298,29,0,317,0.263,59.75,50.17,0.14,989,2.4000000000000004,113,1.9000000000000001 +2014,5,30,3,30,22.6,0.97,0.155,0.68,118,727,534,4,14.3,238,26,0,253,0.263,59.31,55.050000000000004,0.14,988,2.4000000000000004,111,1.9000000000000001 +2014,5,30,4,30,22,0.99,0.1553,0.68,105,654,402,3,14.200000000000001,240,77,0,275,0.264,61.160000000000004,62.95,0.14,988,2.5,109,1.9000000000000001 +2014,5,30,5,30,21,0.98,0.153,0.68,81,514,233,1,14.200000000000001,81,514,0,233,0.266,65.3,72.88,0.14,988,2.5,107,1.4000000000000001 +2014,5,30,6,30,19.8,1,0.1661,0.68,39,195,59,8,15,37,23,3,39,0.267,73.83,84.06,0.14,989,2.5,103,0.9 +2014,5,30,7,30,18.8,1.01,0.167,0.68,0,0,0,4,15.3,0,0,0,0,0.268,79.91,96.3,0.14,990,2.5,101,0.7000000000000001 +2014,5,30,8,30,18.3,1.01,0.1676,0.68,0,0,0,3,15.3,0,0,0,0,0.269,82.61,108.95,0.14,990,2.4000000000000004,106,0.7000000000000001 +2014,5,30,9,30,17.8,1.01,0.17020000000000002,0.68,0,0,0,1,15.3,0,0,0,0,0.27,85.37,121.96000000000001,0.14,990,2.4000000000000004,114,0.7000000000000001 +2014,5,30,10,30,17.400000000000002,1.02,0.17,0.68,0,0,0,1,15.4,0,0,0,0,0.269,87.78,135.17000000000002,0.14,991,2.4000000000000004,121,0.7000000000000001 +2014,5,30,11,30,16.900000000000002,1.01,0.1685,0.68,0,0,0,7,15.3,0,0,0,0,0.269,90.55,148.49,0.14,990,2.4000000000000004,127,0.7000000000000001 +2014,5,30,12,30,16.6,0.98,0.16290000000000002,0.68,0,0,0,7,15.4,0,0,0,0,0.268,92.44,161.68,0.14,990,2.3000000000000003,132,0.7000000000000001 +2014,5,30,13,30,16.2,0.9500000000000001,0.1562,0.68,0,0,0,3,15.5,0,0,0,0,0.267,95.36,173.26,0.14,990,2.3000000000000003,132,0.6000000000000001 +2014,5,30,14,30,15.9,0.89,0.1429,0.68,0,0,0,1,15.600000000000001,0,0,0,0,0.266,98.02,168.75,0.14,990,2.3000000000000003,131,0.6000000000000001 +2014,5,30,15,30,15.700000000000001,0.85,0.13540000000000002,0.68,0,0,0,4,15.700000000000001,0,0,0,0,0.265,99.83,155.97,0.14,989,2.4000000000000004,130,0.6000000000000001 +2014,5,30,16,30,15.600000000000001,0.81,0.1245,0.68,0,0,0,3,15.600000000000001,0,0,0,0,0.264,100,142.68,0.14,989,2.4000000000000004,126,0.6000000000000001 +2014,5,30,17,30,15.5,0.77,0.11120000000000001,0.68,0,0,0,4,15.5,0,0,0,0,0.264,100,129.4,0.14,989,2.4000000000000004,121,0.6000000000000001 +2014,5,30,18,30,15.5,0.78,0.11170000000000001,0.68,0,0,0,4,15.5,0,0,0,0,0.264,100,116.26,0.14,989,2.4000000000000004,120,0.6000000000000001 +2014,5,30,19,30,15.5,0.78,0.11,0.68,0,0,0,8,15.5,0,0,0,0,0.264,100,103.4,0.14,989,2.4000000000000004,118,0.6000000000000001 +2014,5,30,20,30,15.9,0.77,0.1017,0.68,0,0,0,4,15.700000000000001,0,0,0,0,0.265,98.53,90.97,0.14,990,2.4000000000000004,117,0.7000000000000001 +2014,5,30,21,30,16.8,0.8,0.1029,0.68,54,434,136,8,16.1,76,46,3,84,0.265,95.52,79.13,0.14,990,2.3000000000000003,118,1.1 +2014,5,30,22,30,17.7,0.81,0.0971,0.68,78,653,318,4,16.5,123,20,0,131,0.266,92.7,68.42,0.14,991,2.3000000000000003,114,1.3 +2014,5,30,23,30,18.1,0.8300000000000001,0.082,0.68,86,768,478,8,16.900000000000002,284,95,0,333,0.266,92.58,59.29,0.14,991,2.3000000000000003,109,1.3 +2014,5,31,0,30,19.200000000000003,0.87,0.0729,0.68,89,825,590,7,16.8,314,43,0,340,0.267,86.26,52.6,0.14,990,2.3000000000000003,95,1.6 +2014,5,31,1,30,19.700000000000003,0.92,0.066,0.68,88,850,641,8,16.5,393,115,0,468,0.268,81.88,49.38,0.14,989,2.3000000000000003,89,1.8 +2014,5,31,2,30,20.200000000000003,0.9500000000000001,0.0611,0.68,85,851,628,8,16.1,373,84,0,427,0.268,77.33,50.300000000000004,0.14,988,2.3000000000000003,85,1.8 +2014,5,31,3,30,20.3,0.84,0.08660000000000001,0.68,92,794,546,8,15.600000000000001,313,66,0,351,0.268,74.54,55.160000000000004,0.14,988,2.3000000000000003,85,1.8 +2014,5,31,4,30,20,0.85,0.0824,0.68,81,733,413,8,15.3,141,21,0,150,0.267,74.13,63.04,0.14,987,2.4000000000000004,86,1.7000000000000002 +2014,5,31,5,30,19.1,0.85,0.0751,0.68,62,615,243,8,15.3,133,61,0,151,0.266,78.69,72.95,0.14,987,2.4000000000000004,90,1.1 +2014,5,31,6,30,17.8,0.87,0.0727,0.68,32,315,64,7,15.9,36,20,3,38,0.266,88.58,84.11,0.14,988,2.4000000000000004,93,0.7000000000000001 +2014,5,31,7,30,16.6,0.86,0.066,0.68,0,0,0,7,15.600000000000001,0,0,0,0,0.265,93.54,96.34,0.14,988,2.4000000000000004,93,0.7000000000000001 +2014,5,31,8,30,16.1,0.84,0.0651,0.68,0,0,0,7,15.5,0,0,0,0,0.265,96.29,108.98,0.14,989,2.4000000000000004,94,0.6000000000000001 +2014,5,31,9,30,15.8,0.84,0.0682,0.68,0,0,0,7,15.5,0,0,0,0,0.265,98.4,121.97,0.14,989,2.4000000000000004,97,0.6000000000000001 +2014,5,31,10,30,15.600000000000001,0.8200000000000001,0.0689,0.68,0,0,0,7,15.5,0,0,0,0,0.264,99.26,135.19,0.14,989,2.4000000000000004,98,0.6000000000000001 +2014,5,31,11,30,15.5,0.8,0.0675,0.68,0,0,0,7,15.4,0,0,0,0,0.263,99.12,148.5,0.14,988,2.4000000000000004,98,0.6000000000000001 +2014,5,31,12,30,15.5,0.78,0.069,0.68,0,0,0,7,15.3,0,0,0,0,0.263,98.46000000000001,161.71,0.14,988,2.4000000000000004,100,0.6000000000000001 +2014,5,31,13,30,15.5,0.75,0.06960000000000001,0.68,0,0,0,4,15.200000000000001,0,0,0,0,0.262,97.91,173.36,0.14,987,2.4000000000000004,103,0.6000000000000001 +2014,5,31,14,30,15.5,0.71,0.0717,0.68,0,0,0,4,15.100000000000001,0,0,0,0,0.263,97.18,168.86,0.14,987,2.3000000000000003,104,0.6000000000000001 +2014,5,31,15,30,15.5,0.66,0.07490000000000001,0.68,0,0,0,3,15,0,0,0,0,0.264,96.56,156.05,0.14,987,2.3000000000000003,104,0.6000000000000001 +2014,5,31,16,30,15.4,0.62,0.0733,0.68,0,0,0,1,14.8,0,0,0,0,0.264,96.10000000000001,142.75,0.14,986,2.2,104,0.6000000000000001 +2014,5,31,17,30,15.3,0.6,0.0695,0.68,0,0,0,8,14.600000000000001,0,0,0,0,0.265,95.58,129.47,0.14,986,2.1,106,0.6000000000000001 +2014,5,31,18,30,15.200000000000001,0.61,0.06760000000000001,0.68,0,0,0,8,14.5,0,0,0,0,0.265,95.31,116.34,0.14,987,2.1,110,0.6000000000000001 +2014,5,31,19,30,15.100000000000001,0.62,0.06420000000000001,0.68,0,0,0,8,14.3,0,0,0,0,0.266,95.12,103.49000000000001,0.14,987,2,114,0.6000000000000001 +2014,5,31,20,30,15.4,0.64,0.0604,0.68,0,0,0,3,14.200000000000001,0,0,0,0,0.266,92.49,91.07000000000001,0.14,988,2,116,0.6000000000000001 +2014,5,31,21,30,16.5,0.67,0.055600000000000004,0.68,45,517,142,8,14.8,81,105,3,101,0.265,89.48,79.23,0.14,988,2,111,0.8 +2014,5,31,22,30,18,0.71,0.0519,0.68,63,722,327,8,15.200000000000001,192,144,0,245,0.265,83.68,68.54,0.14,988,2,96,1.1 +2014,5,31,23,30,18.7,0.75,0.0472,0.68,72,814,486,8,15,288,239,0,410,0.265,79.10000000000001,59.42,0.14,988,2.1,85,1.2000000000000002 +2015,6,1,0,30,18.7,1.06,0.0756,0.6900000000000001,89,840,598,7,10.700000000000001,164,2,0,165,0.256,59.74,52.71,0.14,984,1.7000000000000002,246,2.8000000000000003 +2015,6,1,1,30,19.5,1.06,0.0649,0.6900000000000001,87,874,655,8,10.5,289,238,0,443,0.256,56.08,49.49,0.14,984,1.5,245,2.9000000000000004 +2015,6,1,2,30,19.900000000000002,1.04,0.0536,0.6900000000000001,82,888,647,8,10,263,331,0,474,0.256,52.89,50.4,0.14,983,1.3,244,3 +2015,6,1,3,30,19.8,0.86,0.0511,0.6900000000000001,77,866,571,8,9.200000000000001,251,142,0,332,0.256,50.57,55.24,0.14,983,1.2000000000000002,244,2.9000000000000004 +2015,6,1,4,30,19.1,0.8300000000000001,0.0454,0.6900000000000001,68,823,440,8,8.3,179,251,0,293,0.256,49.71,63.1,0.14,983,1,242,2.7 +2015,6,1,5,30,17.7,0.8200000000000001,0.041800000000000004,0.6900000000000001,54,715,263,8,7.7,107,207,0,168,0.257,51.92,73,0.14,983,0.9,242,2 +2015,6,1,6,30,15.4,0.8200000000000001,0.039400000000000004,0.6900000000000001,29,429,73,7,7.9,34,87,3,43,0.258,60.82,84.14,0.14,984,0.8,243,1.3 +2015,6,1,7,30,13.600000000000001,0.84,0.037700000000000004,0.6900000000000001,0,0,0,8,7.1000000000000005,0,0,0,0,0.259,64.74,96.36,0.14,985,0.8,243,1.1 +2015,6,1,8,30,12.600000000000001,0.86,0.037200000000000004,0.6900000000000001,0,0,0,8,6.5,0,0,0,0,0.259,66.49,109,0.14,986,0.8,240,1.1 +2015,6,1,9,30,11.8,0.87,0.0374,0.6900000000000001,0,0,0,8,6.2,0,0,0,0,0.259,68.37,121.98,0.14,986,0.8,235,1.1 +2015,6,1,10,30,11.200000000000001,0.86,0.0379,0.6900000000000001,0,0,0,1,6,0,0,0,0,0.26,70.39,135.19,0.14,987,0.8,231,1.1 +2015,6,1,11,30,10.600000000000001,0.86,0.0378,0.6900000000000001,0,0,0,1,6,0,0,0,0,0.26,73.32000000000001,148.5,0.14,987,0.8,229,1.1 +2015,6,1,12,30,10,0.88,0.0363,0.6900000000000001,0,0,0,0,6.1000000000000005,0,0,0,0,0.26,76.78,161.72,0.14,987,0.8,227,1 +2015,6,1,13,30,9.4,0.91,0.0337,0.6900000000000001,0,0,0,0,6.1000000000000005,0,0,0,0,0.259,80.05,173.43,0.14,987,0.7000000000000001,226,1 +2015,6,1,14,30,8.700000000000001,0.9400000000000001,0.031100000000000003,0.6900000000000001,0,0,0,0,6,0,0,0,0,0.258,83.29,168.93,0.14,987,0.7000000000000001,228,1 +2015,6,1,15,30,8.1,0.97,0.0291,0.6900000000000001,0,0,0,0,5.800000000000001,0,0,0,0,0.258,85.47,156.1,0.14,987,0.7000000000000001,232,0.9 +2015,6,1,16,30,7.5,0.98,0.0273,0.6900000000000001,0,0,0,0,5.5,0,0,0,0,0.259,87.12,142.81,0.14,987,0.7000000000000001,235,0.9 +2015,6,1,17,30,6.800000000000001,0.98,0.026000000000000002,0.6900000000000001,0,0,0,1,5.2,0,0,0,0,0.26,89.35000000000001,129.53,0.14,987,0.6000000000000001,237,0.9 +2015,6,1,18,30,6.2,0.98,0.0251,0.6900000000000001,0,0,0,1,4.9,0,0,0,0,0.262,91.09,116.41,0.14,988,0.6000000000000001,237,0.9 +2015,6,1,19,30,5.7,0.99,0.0246,0.6900000000000001,0,0,0,1,4.5,0,0,0,0,0.264,91.72,103.56,0.14,988,0.6000000000000001,238,0.8 +2015,6,1,20,30,6.2,1,0.024200000000000003,0.6900000000000001,0,0,0,3,4.1000000000000005,0,0,0,0,0.265,86.21000000000001,91.15,0.14,989,0.6000000000000001,238,0.9 +2015,6,1,21,30,8.200000000000001,1.01,0.0235,0.6900000000000001,37,646,157,1,4,37,646,0,157,0.266,74.60000000000001,79.31,0.14,989,0.6000000000000001,233,1.2000000000000002 +2015,6,1,22,30,10.9,1.03,0.0228,0.6900000000000001,52,824,352,1,3.2,52,824,0,352,0.267,59.19,68.63,0.14,990,0.6000000000000001,213,1.3 +2015,6,1,23,30,12.3,1.05,0.0222,0.6900000000000001,60,910,521,1,1.9000000000000001,60,910,0,521,0.268,49.02,59.52,0.14,990,0.5,198,1.3 +2015,6,2,0,30,15.200000000000001,0.75,0.0291,0.6900000000000001,70,937,636,1,1.6,70,937,0,636,0.271,39.79,52.85,0.14,989,0.5,206,0.8 +2015,6,2,1,30,16.400000000000002,0.77,0.028900000000000002,0.6900000000000001,72,953,689,0,2,72,953,0,689,0.271,37.99,49.63,0.14,988,0.5,227,0.6000000000000001 +2015,6,2,2,30,17.2,0.79,0.0285,0.6900000000000001,71,949,674,0,2.2,71,949,0,674,0.272,36.64,50.53,0.14,987,0.5,230,0.6000000000000001 +2015,6,2,3,30,17.5,0.8300000000000001,0.027800000000000002,0.6900000000000001,67,927,594,0,2.1,67,927,0,594,0.272,35.62,55.34,0.14,987,0.5,207,0.5 +2015,6,2,4,30,17.400000000000002,0.85,0.028800000000000003,0.6900000000000001,61,866,451,0,2,61,866,0,451,0.272,35.49,63.18,0.14,986,0.6000000000000001,177,0.5 +2015,6,2,5,30,16.3,0.87,0.029900000000000003,0.6900000000000001,50,753,269,0,2.9000000000000004,50,753,0,269,0.27,40.74,73.06,0.14,987,0.6000000000000001,153,0.4 +2015,6,2,6,30,14.5,0.9500000000000001,0.031100000000000003,0.6900000000000001,28,465,75,1,5.9,28,465,0,75,0.269,56.2,84.19,0.14,987,0.6000000000000001,131,0.4 +2015,6,2,7,30,13.100000000000001,0.98,0.0339,0.6900000000000001,0,0,0,0,4.1000000000000005,0,0,0,0,0.27,54.2,96.39,0.14,988,0.7000000000000001,111,0.4 +2015,6,2,8,30,12.100000000000001,1,0.0341,0.6900000000000001,0,0,0,1,3.7,0,0,0,0,0.27,56.28,109.01,0.14,988,0.7000000000000001,119,0.5 +2015,6,2,9,30,11.100000000000001,1,0.0341,0.6900000000000001,0,0,0,1,3.7,0,0,0,0,0.269,60.160000000000004,121.99000000000001,0.14,988,0.7000000000000001,137,0.7000000000000001 +2015,6,2,10,30,10.200000000000001,1.01,0.0371,0.6900000000000001,0,0,0,0,3.7,0,0,0,0,0.268,64.16,135.2,0.14,989,0.7000000000000001,139,0.8 +2015,6,2,11,30,9.5,1.02,0.0415,0.6900000000000001,0,0,0,0,3.7,0,0,0,0,0.267,67.02,148.51,0.14,989,0.8,142,0.9 +2015,6,2,12,30,8.9,1.02,0.0424,0.6900000000000001,0,0,0,0,3.7,0,0,0,0,0.266,69.65,161.73,0.14,989,0.8,147,0.9 +2015,6,2,13,30,8.4,1.02,0.0434,0.6900000000000001,0,0,0,4,3.4000000000000004,0,0,0,0,0.265,70.85000000000001,173.51,0.14,989,0.8,156,0.9 +2015,6,2,14,30,7.800000000000001,1.03,0.0444,0.6900000000000001,0,0,0,4,3.2,0,0,0,0,0.264,72.91,169.03,0.14,989,0.9,173,0.9 +2015,6,2,15,30,6.9,1.03,0.0426,0.6900000000000001,0,0,0,1,3,0,0,0,0,0.266,76.43,156.18,0.14,989,0.9,192,0.9 +2015,6,2,16,30,6.1000000000000005,1.03,0.0405,0.6900000000000001,0,0,0,4,2.8000000000000003,0,0,0,0,0.267,79.59,142.88,0.14,988,0.9,206,0.9 +2015,6,2,17,30,5.5,1.03,0.0402,0.6900000000000001,0,0,0,4,2.6,0,0,0,0,0.268,81.39,129.6,0.14,988,0.9,214,0.9 +2015,6,2,18,30,5.2,1.05,0.040600000000000004,0.6900000000000001,0,0,0,1,2.3000000000000003,0,0,0,0,0.269,81.31,116.49000000000001,0.14,988,0.9,220,0.9 +2015,6,2,19,30,4.800000000000001,1.06,0.0413,0.6900000000000001,0,0,0,4,2,0,0,0,0,0.271,82.28,103.65,0.14,989,0.9,225,0.9 +2015,6,2,20,30,5.5,1.07,0.040400000000000005,0.6900000000000001,0,0,0,4,1.8,0,0,0,0,0.271,77.28,91.24,0.14,990,0.9,229,0.9 +2015,6,2,21,30,7.800000000000001,1.08,0.0414,0.6900000000000001,41,586,149,4,2.4000000000000004,65,115,3,86,0.271,68.82000000000001,79.42,0.14,990,0.9,230,1 +2015,6,2,22,30,10.700000000000001,1.1,0.0449,0.6900000000000001,60,766,338,3,2.1,136,240,0,223,0.27,55.34,68.75,0.14,990,1,237,0.9 +2015,6,2,23,30,12.200000000000001,1.11,0.0489,0.6900000000000001,72,847,500,1,2.9000000000000004,72,847,0,500,0.27,52.89,59.65,0.14,990,1,246,0.7000000000000001 +2015,6,3,0,30,15.5,0.63,0.064,0.6900000000000001,87,866,609,1,3.6,87,866,0,609,0.269,44.9,52.980000000000004,0.14,989,1,293,0.8 +2015,6,3,1,30,16.8,0.67,0.0651,0.6900000000000001,90,879,658,1,4.3,90,879,0,658,0.268,43.410000000000004,49.76,0.14,988,1.1,306,0.9 +2015,6,3,2,30,17.400000000000002,0.73,0.066,0.6900000000000001,90,875,644,8,4.7,242,404,0,498,0.268,43.02,50.64,0.14,987,1.1,303,1 +2015,6,3,3,30,17.400000000000002,0.64,0.0913,0.6900000000000001,97,813,558,7,4.9,238,265,0,388,0.268,43.49,55.44,0.14,987,1.2000000000000002,289,0.9 +2015,6,3,4,30,16.900000000000002,0.6900000000000001,0.09720000000000001,0.6900000000000001,89,741,422,7,5.1000000000000005,186,172,0,263,0.267,45.79,63.25,0.14,987,1.2000000000000002,271,0.6000000000000001 +2015,6,3,5,30,15.8,0.72,0.099,0.6900000000000001,71,602,246,8,7.300000000000001,99,287,0,182,0.267,56.89,73.11,0.14,987,1.2000000000000002,240,0.30000000000000004 +2015,6,3,6,30,14.4,0.75,0.1003,0.6900000000000001,36,277,64,3,7.9,33,41,3,37,0.268,64.98,84.22,0.14,987,1.2000000000000002,204,0.30000000000000004 +2015,6,3,7,30,13.200000000000001,0.78,0.09670000000000001,0.6900000000000001,0,0,0,8,6.6000000000000005,0,0,0,0,0.268,64.44,96.42,0.14,987,1.2000000000000002,192,0.4 +2015,6,3,8,30,12.3,0.79,0.0876,0.6900000000000001,0,0,0,1,6,0,0,0,0,0.27,65.4,109.03,0.14,988,1.2000000000000002,206,0.5 +2015,6,3,9,30,11.600000000000001,0.78,0.08020000000000001,0.6900000000000001,0,0,0,0,4.800000000000001,0,0,0,0,0.27,63.2,122,0.14,988,1.2000000000000002,229,0.6000000000000001 +2015,6,3,10,30,10.5,0.77,0.077,0.6900000000000001,0,0,0,0,4.3,0,0,0,0,0.269,65.69,135.2,0.14,988,1.1,242,0.8 +2015,6,3,11,30,9.200000000000001,0.77,0.0748,0.6900000000000001,0,0,0,0,4.2,0,0,0,0,0.268,70.77,148.51,0.14,988,1.1,244,0.8 +2015,6,3,12,30,8.200000000000001,0.78,0.0731,0.6900000000000001,0,0,0,1,4,0,0,0,0,0.266,74.63,161.74,0.14,988,1,241,0.8 +2015,6,3,13,30,7.6000000000000005,0.78,0.0714,0.6900000000000001,0,0,0,1,3.6,0,0,0,0,0.264,75.92,173.59,0.14,988,1,237,0.7000000000000001 +2015,6,3,14,30,7.2,0.78,0.07010000000000001,0.6900000000000001,0,0,0,0,3.3000000000000003,0,0,0,0,0.262,76.29,169.12,0.14,988,1,233,0.7000000000000001 +2015,6,3,15,30,6.7,0.78,0.0689,0.6900000000000001,0,0,0,0,3.1,0,0,0,0,0.261,77.73,156.25,0.14,988,0.9,231,0.7000000000000001 +2015,6,3,16,30,6.2,0.79,0.0675,0.6900000000000001,0,0,0,0,2.9000000000000004,0,0,0,0,0.259,79.52,142.95000000000002,0.14,988,0.9,229,0.7000000000000001 +2015,6,3,17,30,5.800000000000001,0.79,0.0663,0.6900000000000001,0,0,0,0,2.8000000000000003,0,0,0,0,0.258,81.09,129.68,0.14,988,0.9,228,0.7000000000000001 +2015,6,3,18,30,5.5,0.79,0.0651,0.6900000000000001,0,0,0,0,2.7,0,0,0,0,0.257,82.4,116.56,0.14,988,0.9,226,0.7000000000000001 +2015,6,3,19,30,5.2,0.8,0.0641,0.6900000000000001,0,0,0,0,2.7,0,0,0,0,0.256,83.84,103.73,0.14,988,0.9,225,0.7000000000000001 +2015,6,3,20,30,6,0.8,0.0634,0.6900000000000001,0,0,0,3,2.7,0,0,0,0,0.255,79.24,91.34,0.14,989,0.9,226,0.7000000000000001 +2015,6,3,21,30,8.200000000000001,0.8,0.063,0.6900000000000001,46,532,143,1,3.4000000000000004,46,532,0,143,0.254,71.91,79.52,0.14,989,0.9,228,0.8 +2015,6,3,22,30,11.200000000000001,0.8,0.0627,0.6900000000000001,67,738,334,1,3.7,67,738,0,334,0.254,59.78,68.86,0.14,989,0.9,252,0.7000000000000001 +2015,6,3,23,30,12.8,0.81,0.062400000000000004,0.6900000000000001,79,830,497,1,4.3,79,830,0,497,0.254,56.2,59.77,0.14,989,0.9,276,0.5 +2015,6,4,0,30,16.6,0.85,0.0534,0.6900000000000001,81,885,612,1,4.6000000000000005,81,885,0,612,0.254,44.84,53.11,0.14,989,0.9,315,1 +2015,6,4,1,30,18,0.87,0.0553,0.6900000000000001,84,900,664,0,5,84,900,0,664,0.254,42.27,49.89,0.14,988,0.9,315,1.2000000000000002 +2015,6,4,2,30,18.8,0.88,0.056,0.6900000000000001,84,891,647,0,5.1000000000000005,84,891,0,647,0.255,40.65,50.76,0.14,987,1,309,1.2000000000000002 +2015,6,4,3,30,19,0.89,0.051000000000000004,0.6900000000000001,77,871,570,1,4.800000000000001,77,871,0,570,0.255,39.32,55.53,0.14,986,1,301,1.1 +2015,6,4,4,30,18.900000000000002,0.91,0.051000000000000004,0.6900000000000001,70,817,437,1,4.5,70,817,0,437,0.255,38.62,63.32,0.14,986,0.9,290,0.9 +2015,6,4,5,30,17.8,0.93,0.050800000000000005,0.6900000000000001,56,698,258,1,4.800000000000001,56,698,0,258,0.255,42.15,73.16,0.14,986,0.9,280,0.6000000000000001 +2015,6,4,6,30,15.8,0.9500000000000001,0.05,0.6900000000000001,30,397,69,0,6.4,30,397,0,69,0.256,53.53,84.26,0.14,986,0.9,273,0.4 +2015,6,4,7,30,14.100000000000001,0.97,0.048400000000000006,0.6900000000000001,0,0,0,1,4.1000000000000005,0,0,0,0,0.256,50.980000000000004,96.44,0.14,986,0.9,265,0.5 +2015,6,4,8,30,12.9,0.99,0.046200000000000005,0.6900000000000001,0,0,0,1,3.3000000000000003,0,0,0,0,0.257,51.99,109.04,0.14,987,0.8,264,0.7000000000000001 +2015,6,4,9,30,11.4,1.02,0.0438,0.6900000000000001,0,0,0,0,3.2,0,0,0,0,0.258,56.93,122,0.14,987,0.8,266,0.8 +2015,6,4,10,30,9.8,1.04,0.0417,0.6900000000000001,0,0,0,1,3.5,0,0,0,0,0.259,65.08,135.2,0.14,988,0.8,264,0.8 +2015,6,4,11,30,8.700000000000001,1.06,0.0395,0.6900000000000001,0,0,0,0,3.5,0,0,0,0,0.26,69.75,148.5,0.14,988,0.8,258,0.8 +2015,6,4,12,30,8.1,1.07,0.0375,0.6900000000000001,0,0,0,1,3.1,0,0,0,0,0.26,70.91,161.74,0.14,988,0.7000000000000001,254,0.8 +2015,6,4,13,30,7.5,1.07,0.0363,0.6900000000000001,0,0,0,1,2.7,0,0,0,0,0.26,71.83,173.66,0.14,987,0.7000000000000001,253,0.8 +2015,6,4,14,30,6.9,1.08,0.035500000000000004,0.6900000000000001,0,0,0,0,2.4000000000000004,0,0,0,0,0.26,73.29,169.22,0.14,987,0.7000000000000001,254,0.8 +2015,6,4,15,30,6.300000000000001,1.1,0.0349,0.6900000000000001,0,0,0,0,2.2,0,0,0,0,0.26,74.91,156.32,0.14,987,0.7000000000000001,255,0.9 +2015,6,4,16,30,5.800000000000001,1.12,0.035300000000000005,0.6900000000000001,0,0,0,0,1.9000000000000001,0,0,0,0,0.26,76.09,143.02,0.14,986,0.7000000000000001,257,0.9 +2015,6,4,17,30,5.4,1.1400000000000001,0.0364,0.6900000000000001,0,0,0,0,1.7000000000000002,0,0,0,0,0.261,77.18,129.75,0.14,986,0.8,259,0.8 +2015,6,4,18,30,5,1.16,0.037700000000000004,0.6900000000000001,0,0,0,0,1.6,0,0,0,0,0.262,78.64,116.64,0.14,986,0.8,262,0.9 +2015,6,4,19,30,4.7,1.18,0.038900000000000004,0.6900000000000001,0,0,0,1,1.5,0,0,0,0,0.262,79.86,103.82000000000001,0.14,986,0.8,264,0.9 +2015,6,4,20,30,5.5,1.19,0.0398,0.6900000000000001,0,0,0,3,1.5,0,0,0,0,0.263,75.44,91.43,0.14,987,0.9,267,1 +2015,6,4,21,30,7.800000000000001,1.22,0.0408,0.6900000000000001,40,585,146,1,2.2,40,585,0,146,0.263,67.82000000000001,79.62,0.14,987,0.9,273,1.4000000000000001 +2015,6,4,22,30,10.8,1.26,0.0419,0.6900000000000001,58,770,334,1,2.2,58,770,0,334,0.263,55.34,68.97,0.14,987,1,267,1.9000000000000001 +2015,6,4,23,30,12.5,1.29,0.0431,0.6900000000000001,68,854,496,1,2.8000000000000003,68,854,0,496,0.263,51.59,59.89,0.14,987,1,259,2.2 +2015,6,5,0,30,15.8,1.27,0.0459,0.6900000000000001,75,885,604,1,3.2,75,885,0,604,0.263,42.97,53.230000000000004,0.14,986,1.2000000000000002,251,2.5 +2015,6,5,1,30,17.1,1.24,0.0507,0.6900000000000001,80,896,656,0,3.6,80,896,0,656,0.264,40.74,50,0.14,985,1.2000000000000002,251,2.6 +2015,6,5,2,30,18,1.21,0.0565,0.6900000000000001,82,882,639,1,4.2,82,882,0,639,0.265,39.93,50.86,0.14,984,1.3,251,2.6 +2015,6,5,3,30,18.2,1.01,0.0451,0.6900000000000001,74,864,562,1,4.800000000000001,74,864,0,562,0.267,41.27,55.61,0.14,984,1.4000000000000001,250,2.6 +2015,6,5,4,30,17.8,0.97,0.048600000000000004,0.6900000000000001,68,801,427,1,5.5,68,801,0,427,0.268,44.22,63.38,0.14,984,1.4000000000000001,248,2.5 +2015,6,5,5,30,16.5,0.9400000000000001,0.051000000000000004,0.6900000000000001,56,677,251,1,6.1000000000000005,56,677,0,251,0.27,50.34,73.2,0.14,984,1.4000000000000001,246,2 +2015,6,5,6,30,14.200000000000001,0.93,0.0505,0.6900000000000001,29,380,67,1,6.4,29,380,0,67,0.273,59.53,84.28,0.14,985,1.3,243,1.4000000000000001 +2015,6,5,7,30,12.5,0.9400000000000001,0.0494,0.6900000000000001,0,0,0,3,5.7,0,0,0,0,0.275,63.46,96.46000000000001,0.14,986,1.3,239,1.1 +2015,6,5,8,30,11.600000000000001,0.96,0.049100000000000005,0.6900000000000001,0,0,0,1,5.4,0,0,0,0,0.275,65.66,109.05,0.14,987,1.3,234,1 +2015,6,5,9,30,10.8,0.97,0.049800000000000004,0.6900000000000001,0,0,0,0,5.2,0,0,0,0,0.272,68.14,122,0.14,988,1.3,232,1 +2015,6,5,10,30,10,0.97,0.050100000000000006,0.6900000000000001,0,0,0,1,5.1000000000000005,0,0,0,0,0.271,71.37,135.19,0.14,988,1.2000000000000002,231,1 +2015,6,5,11,30,9.200000000000001,0.98,0.048600000000000004,0.6900000000000001,0,0,0,1,5,0,0,0,0,0.27,74.95,148.5,0.14,989,1.2000000000000002,233,0.9 +2015,6,5,12,30,8.4,0.98,0.0456,0.6900000000000001,0,0,0,0,4.9,0,0,0,0,0.269,78.83,161.74,0.14,989,1.2000000000000002,236,0.9 +2015,6,5,13,30,7.7,0.99,0.042,0.6900000000000001,0,0,0,1,4.9,0,0,0,0,0.267,82.23,173.73,0.14,989,1.2000000000000002,239,0.9 +2015,6,5,14,30,7.1000000000000005,1.01,0.0393,0.6900000000000001,0,0,0,1,4.800000000000001,0,0,0,0,0.265,85.14,169.31,0.14,989,1.2000000000000002,239,0.9 +2015,6,5,15,30,6.7,1.06,0.0378,0.6900000000000001,0,0,0,0,4.7,0,0,0,0,0.265,86.8,156.39000000000001,0.14,988,1.1,237,0.9 +2015,6,5,16,30,6.300000000000001,1.1300000000000001,0.037200000000000004,0.6900000000000001,0,0,0,0,4.5,0,0,0,0,0.265,88.43,143.09,0.14,988,1.1,235,0.9 +2015,6,5,17,30,6,1.21,0.0381,0.6900000000000001,0,0,0,1,4.4,0,0,0,0,0.264,89.41,129.82,0.14,988,1.1,232,0.9 +2015,6,5,18,30,5.800000000000001,1.31,0.041100000000000005,0.6900000000000001,0,0,0,0,4.3,0,0,0,0,0.264,90,116.72,0.14,989,1.1,231,0.9 +2015,6,5,19,30,5.7,1.37,0.0466,0.6900000000000001,0,0,0,1,4.2,0,0,0,0,0.262,90.29,103.9,0.14,990,1.2000000000000002,230,0.9 +2015,6,5,20,30,6.6000000000000005,1.36,0.052500000000000005,0.6900000000000001,0,0,0,3,4.3,0,0,0,0,0.26,85.25,91.52,0.14,990,1.3,231,1 +2015,6,5,21,30,9,1.28,0.057100000000000005,0.6900000000000001,43,533,139,1,5.1000000000000005,43,533,0,139,0.259,76.57000000000001,79.71000000000001,0.14,991,1.4000000000000001,231,1.4000000000000001 +2015,6,5,22,30,12.100000000000001,1.17,0.0608,0.6900000000000001,65,722,323,1,6,65,722,0,323,0.258,66.25,69.07000000000001,0.14,991,1.5,209,1.9000000000000001 +2015,6,5,23,30,13.8,1.07,0.06520000000000001,0.6900000000000001,78,806,481,1,8.4,78,806,0,481,0.258,69.74,60,0.14,991,1.5,188,2.1 +2015,6,6,0,30,17.2,0.98,0.064,0.6900000000000001,84,849,591,1,10.4,84,849,0,591,0.259,64.49,53.35,0.14,991,1.6,164,2.6 +2015,6,6,1,30,18.3,0.88,0.068,0.6900000000000001,89,858,639,1,11.5,89,858,0,639,0.259,64.43,50.120000000000005,0.14,990,1.7000000000000002,158,2.7 +2015,6,6,2,30,18.8,0.81,0.06670000000000001,0.6900000000000001,88,854,626,1,11.8,88,854,0,626,0.26,63.89,50.96,0.14,990,1.7000000000000002,156,2.7 +2015,6,6,3,30,18.900000000000002,0.77,0.0574,0.6900000000000001,80,834,550,1,12,80,834,0,550,0.26,64.25,55.69,0.14,990,1.8,155,2.6 +2015,6,6,4,30,18.6,0.73,0.0589,0.6900000000000001,73,771,418,2,12.200000000000001,161,349,0,317,0.261,66.27,63.440000000000005,0.14,990,1.8,155,2.4000000000000004 +2015,6,6,5,30,17.6,0.67,0.059300000000000005,0.6900000000000001,59,645,245,1,12.4,59,645,0,245,0.261,71.62,73.24,0.14,990,1.8,156,1.7000000000000002 +2015,6,6,6,30,16.1,0.64,0.0629,0.6900000000000001,31,325,64,3,12.8,33,80,3,41,0.262,80.7,84.31,0.14,991,1.8,161,1.1 +2015,6,6,7,30,14.9,0.5700000000000001,0.06430000000000001,0.6900000000000001,0,0,0,1,12.5,0,0,0,0,0.263,85.79,96.47,0.14,992,1.8,166,1 +2015,6,6,8,30,14.3,0.51,0.0644,0.6900000000000001,0,0,0,1,12.5,0,0,0,0,0.264,88.93,109.05,0.14,993,1.8,168,1 +2015,6,6,9,30,13.9,0.48,0.0646,0.6900000000000001,0,0,0,1,12.600000000000001,0,0,0,0,0.264,91.62,122,0.14,994,1.7000000000000002,166,1.1 +2015,6,6,10,30,13.5,0.48,0.0627,0.6900000000000001,0,0,0,1,12.600000000000001,0,0,0,0,0.264,94.10000000000001,135.18,0.14,994,1.7000000000000002,164,1.1 +2015,6,6,11,30,13,0.49,0.0606,0.6900000000000001,0,0,0,0,12.5,0,0,0,0,0.265,96.92,148.49,0.14,994,1.6,162,1 +2015,6,6,12,30,12.5,0.5,0.0589,0.6900000000000001,0,0,0,0,12.4,0,0,0,0,0.266,99.55,161.74,0.14,994,1.5,161,1 +2015,6,6,13,30,12,0.5,0.0567,0.6900000000000001,0,0,0,1,12,0,0,0,0,0.268,100,173.78,0.14,994,1.4000000000000001,162,1 +2015,6,6,14,30,11.5,0.5,0.0551,0.6900000000000001,0,0,0,0,11.5,0,0,0,0,0.27,100,169.39000000000001,0.14,994,1.3,167,1 +2015,6,6,15,30,11.100000000000001,0.49,0.0551,0.6900000000000001,0,0,0,1,11.100000000000001,0,0,0,0,0.271,100,156.46,0.14,994,1.3,171,1 +2015,6,6,16,30,10.700000000000001,0.48,0.056,0.6900000000000001,0,0,0,1,10.700000000000001,0,0,0,0,0.272,100,143.16,0.14,994,1.2000000000000002,171,1 +2015,6,6,17,30,10.4,0.47000000000000003,0.057100000000000005,0.6900000000000001,0,0,0,0,10.4,0,0,0,0,0.273,100,129.89000000000001,0.14,994,1.2000000000000002,169,1 +2015,6,6,18,30,10.100000000000001,0.47000000000000003,0.0592,0.6900000000000001,0,0,0,1,10.100000000000001,0,0,0,0,0.273,100,116.79,0.14,994,1.2000000000000002,165,1 +2015,6,6,19,30,9.9,0.46,0.060500000000000005,0.6900000000000001,0,0,0,0,9.9,0,0,0,0,0.273,100,103.98,0.14,995,1.2000000000000002,160,0.9 +2015,6,6,20,30,10.700000000000001,0.45,0.059800000000000006,0.6900000000000001,0,0,0,1,10.600000000000001,0,0,0,0,0.273,99.60000000000001,91.60000000000001,0.14,995,1.2000000000000002,159,1 +2015,6,6,21,30,12.8,0.45,0.060500000000000005,0.6900000000000001,46,501,135,1,11,46,501,0,135,0.273,88.7,79.81,0.14,995,1.2000000000000002,157,1.3 +2015,6,6,22,30,15.200000000000001,0.46,0.060200000000000004,0.6900000000000001,67,712,321,1,11.600000000000001,67,712,0,321,0.273,79.02,69.17,0.14,995,1.3,147,1.9000000000000001 +2015,6,6,23,30,16.400000000000002,0.46,0.0592,0.6900000000000001,79,808,481,1,11.9,79,808,0,481,0.273,74.78,60.11,0.14,995,1.3,139,2.1 +2015,6,7,0,30,18.5,0.38,0.07730000000000001,0.6900000000000001,95,828,587,1,12,95,828,0,587,0.273,65.66,53.46,0.14,995,1.4000000000000001,127,2.3000000000000003 +2015,6,7,1,30,19.3,0.39,0.079,0.6900000000000001,98,845,639,1,11.9,98,845,0,639,0.274,62.38,50.22,0.14,994,1.4000000000000001,125,2.3000000000000003 +2015,6,7,2,30,19.6,0.41000000000000003,0.0747,0.6900000000000001,95,843,625,1,11.9,95,843,0,625,0.274,61.1,51.050000000000004,0.14,994,1.5,123,2.2 +2015,6,7,3,30,19.6,0.53,0.064,0.6900000000000001,85,829,551,1,11.8,85,829,0,551,0.274,60.72,55.76,0.14,994,1.5,119,2.1 +2015,6,7,4,30,19.3,0.56,0.06570000000000001,0.6900000000000001,76,765,418,1,11.8,76,765,0,418,0.274,61.82,63.49,0.14,993,1.5,115,1.8 +2015,6,7,5,30,18.1,0.56,0.0626,0.6900000000000001,61,642,245,1,12,61,642,0,245,0.273,67.67,73.27,0.14,993,1.5,112,1.3 +2015,6,7,6,30,16.3,0.6,0.061000000000000006,0.6900000000000001,31,332,64,1,12.600000000000001,31,332,0,64,0.273,78.66,84.33,0.14,994,1.5,111,0.9 +2015,6,7,7,30,14.8,0.63,0.055400000000000005,0.6900000000000001,0,0,0,1,12,0,0,0,0,0.272,83.46000000000001,96.48,0.14,994,1.5,113,0.8 +2015,6,7,8,30,13.9,0.64,0.051000000000000004,0.6900000000000001,0,0,0,0,12,0,0,0,0,0.271,88.04,109.05,0.14,995,1.5,118,0.9 +2015,6,7,9,30,13.3,0.62,0.0494,0.6900000000000001,0,0,0,1,12.100000000000001,0,0,0,0,0.27,92.36,121.99000000000001,0.14,995,1.5,124,0.8 +2015,6,7,10,30,12.8,0.6,0.049100000000000005,0.6900000000000001,0,0,0,1,12.200000000000001,0,0,0,0,0.27,96.39,135.17000000000002,0.14,995,1.5,131,0.8 +2015,6,7,11,30,12.4,0.58,0.0492,0.6900000000000001,0,0,0,1,12.4,0,0,0,0,0.269,99.83,148.47,0.14,995,1.5,140,0.8 +2015,6,7,12,30,12,0.56,0.05,0.6900000000000001,0,0,0,1,12,0,0,0,0,0.269,100,161.73,0.14,994,1.5,151,0.8 +2015,6,7,13,30,11.600000000000001,0.55,0.0517,0.6900000000000001,0,0,0,0,11.600000000000001,0,0,0,0,0.268,100,173.83,0.14,994,1.5,161,0.8 +2015,6,7,14,30,11.3,0.54,0.0533,0.6900000000000001,0,0,0,1,11.3,0,0,0,0,0.267,100,169.48,0.14,994,1.5,166,0.8 +2015,6,7,15,30,11.100000000000001,0.54,0.054,0.6900000000000001,0,0,0,0,11.100000000000001,0,0,0,0,0.267,100,156.53,0.14,993,1.5,164,0.8 +2015,6,7,16,30,11.100000000000001,0.56,0.054400000000000004,0.6900000000000001,0,0,0,0,11.100000000000001,0,0,0,0,0.268,100,143.23,0.14,993,1.5,161,0.8 +2015,6,7,17,30,11.200000000000001,0.59,0.0541,0.6900000000000001,0,0,0,3,11.200000000000001,0,0,0,0,0.268,100,129.96,0.14,993,1.5,161,0.8 +2015,6,7,18,30,11.3,0.63,0.0553,0.6900000000000001,0,0,0,1,11.3,0,0,0,0,0.268,100,116.87,0.14,993,1.5,160,0.7000000000000001 +2015,6,7,19,30,11.3,0.67,0.056100000000000004,0.6900000000000001,0,0,0,1,11.3,0,0,0,0,0.268,100,104.06,0.14,994,1.4000000000000001,161,0.7000000000000001 +2015,6,7,20,30,12,0.71,0.055200000000000006,0.6900000000000001,0,0,0,1,11.8,0,0,0,0,0.268,98.84,91.69,0.14,995,1.4000000000000001,163,0.8 +2015,6,7,21,30,13.700000000000001,0.75,0.055400000000000005,0.6900000000000001,44,515,134,1,12,44,515,0,134,0.267,89.74,79.9,0.14,995,1.4000000000000001,162,0.9 +2015,6,7,22,30,16,0.8,0.0536,0.6900000000000001,63,726,320,1,12.4,63,726,1,320,0.267,79.47,69.27,0.14,995,1.4000000000000001,145,1.1 +2015,6,7,23,30,17.3,0.8300000000000001,0.0509,0.6900000000000001,73,821,481,1,12.4,73,821,0,481,0.267,72.93,60.21,0.14,995,1.4000000000000001,131,1.2000000000000002 +2015,6,8,0,30,19.5,0.7000000000000001,0.058800000000000005,0.6900000000000001,83,855,591,0,12,83,855,0,591,0.267,62.02,53.57,0.13,994,1.4000000000000001,110,1.2000000000000002 +2015,6,8,1,30,20.3,0.72,0.0587,0.6900000000000001,86,873,643,1,11.9,86,873,0,643,0.267,58.34,50.32,0.13,993,1.4000000000000001,101,1.2000000000000002 +2015,6,8,2,30,20.6,0.74,0.058100000000000006,0.6900000000000001,84,866,628,1,11.700000000000001,84,866,0,628,0.267,56.81,51.14,0.13,992,1.5,92,1.2000000000000002 +2015,6,8,3,30,20.6,0.63,0.0695,0.6900000000000001,86,824,549,1,11.600000000000001,86,824,0,549,0.267,56.480000000000004,55.83,0.13,992,1.5,85,1.2000000000000002 +2015,6,8,4,30,20.1,0.66,0.0702,0.6900000000000001,77,761,417,8,11.600000000000001,165,316,0,306,0.267,58.22,63.54,0.13,991,1.5,80,1.1 +2015,6,8,5,30,18.900000000000002,0.67,0.0708,0.6900000000000001,62,632,244,1,11.9,62,632,0,244,0.267,63.77,73.3,0.13,991,1.5,75,0.8 +2015,6,8,6,30,17.2,0.71,0.075,0.6900000000000001,33,308,63,1,13,33,308,0,63,0.268,76.19,84.34,0.13,992,1.5,68,0.6000000000000001 +2015,6,8,7,30,16,0.75,0.0757,0.6900000000000001,0,0,0,1,12.4,0,0,0,0,0.268,79.45,96.48,0.13,992,1.5,62,0.7000000000000001 +2015,6,8,8,30,15.4,0.76,0.0746,0.6900000000000001,0,0,0,1,12.3,0,0,0,0,0.269,81.79,109.05,0.13,993,1.5,59,0.7000000000000001 +2015,6,8,9,30,15,0.78,0.0731,0.6900000000000001,0,0,0,0,12.100000000000001,0,0,0,0,0.268,82.84,121.98,0.13,993,1.4000000000000001,56,0.8 +2015,6,8,10,30,14.700000000000001,0.78,0.0719,0.6900000000000001,0,0,0,0,11.9,0,0,0,0,0.268,83.43,135.16,0.13,993,1.4000000000000001,52,0.8 +2015,6,8,11,30,14.4,0.78,0.0708,0.6900000000000001,0,0,0,4,11.8,0,0,0,0,0.268,84.16,148.46,0.13,993,1.4000000000000001,46,0.8 +2015,6,8,12,30,14.3,0.77,0.0699,0.6900000000000001,0,0,0,3,11.600000000000001,0,0,0,0,0.267,83.93,161.72,0.13,992,1.5,39,0.8 +2015,6,8,13,30,14.4,0.76,0.06910000000000001,0.6900000000000001,0,0,0,3,11.600000000000001,0,0,0,0,0.266,83.13,173.87,0.13,992,1.5,32,0.8 +2015,6,8,14,30,14.600000000000001,0.75,0.0679,0.6900000000000001,0,0,0,4,11.600000000000001,0,0,0,0,0.266,82.17,169.56,0.13,992,1.5,192,0.6000000000000001 +2015,6,8,15,30,14.5,0.74,0.06770000000000001,0.6900000000000001,0,0,0,8,11.600000000000001,0,0,0,0,0.267,82.74,156.6,0.13,992,1.5,313,0.5 +2015,6,8,16,30,13.700000000000001,0.75,0.06860000000000001,0.6900000000000001,0,0,0,1,11.600000000000001,0,0,0,0,0.268,86.87,143.29,0.13,992,1.6,261,0.7000000000000001 +2015,6,8,17,30,12.700000000000001,0.76,0.06960000000000001,0.6900000000000001,0,0,0,4,11.5,0,0,0,0,0.27,92.26,130.03,0.13,992,1.6,246,0.8 +2015,6,8,18,30,12,0.77,0.0687,0.6900000000000001,0,0,0,3,11.4,0,0,0,0,0.271,96.17,116.94,0.13,992,1.6,238,0.8 +2015,6,8,19,30,11.700000000000001,0.78,0.0658,0.6900000000000001,0,0,0,1,11.3,0,0,0,0,0.272,97.61,104.13,0.13,992,1.6,237,0.8 +2015,6,8,20,30,12.100000000000001,0.78,0.061500000000000006,0.6900000000000001,0,0,0,1,11.200000000000001,0,0,0,0,0.273,94.24,91.77,0.13,993,1.6,242,0.8 +2015,6,8,21,30,13.700000000000001,0.79,0.057,0.6900000000000001,43,505,131,1,11.4,43,505,0,131,0.273,86.02,79.99,0.13,993,1.6,249,0.9 +2015,6,8,22,30,16.1,0.8200000000000001,0.0539,0.6900000000000001,63,718,316,1,11.5,63,718,0,316,0.273,73.97,69.37,0.13,993,1.6,265,0.9 +2015,6,8,23,30,17.5,0.85,0.052500000000000005,0.6900000000000001,73,812,475,1,11.8,73,812,0,475,0.272,69.05,60.31,0.13,993,1.6,278,0.8 +2015,6,9,0,30,20.400000000000002,0.74,0.060200000000000004,0.6900000000000001,83,847,585,0,11.8,83,847,0,585,0.272,57.78,53.67,0.14,992,1.6,308,1 +2015,6,9,1,30,21.400000000000002,0.76,0.0597,0.6900000000000001,86,865,637,1,11.9,86,865,0,637,0.272,54.660000000000004,50.42,0.14,991,1.6,309,1 +2015,6,9,2,30,21.900000000000002,0.78,0.057,0.6900000000000001,84,865,625,1,11.9,84,865,0,625,0.272,52.95,51.21,0.14,990,1.6,306,1 +2015,6,9,3,30,22.1,0.85,0.052000000000000005,0.6900000000000001,77,844,551,8,11.8,241,95,0,294,0.272,52.15,55.89,0.14,990,1.6,301,0.8 +2015,6,9,4,30,21.900000000000002,0.87,0.0509,0.6900000000000001,69,787,419,7,11.8,183,99,0,227,0.273,52.64,63.58,0.14,990,1.6,296,0.6000000000000001 +2015,6,9,5,30,20.900000000000002,0.89,0.051800000000000006,0.6900000000000001,56,668,247,8,12.100000000000001,87,376,0,195,0.273,57.230000000000004,73.33,0.14,990,1.5,318,0.30000000000000004 +2015,6,9,6,30,19.200000000000003,0.92,0.0541,0.6900000000000001,30,362,65,8,13.4,32,187,3,50,0.273,68.9,84.35000000000001,0.14,990,1.5,210,0.30000000000000004 +2015,6,9,7,30,17.5,0.9400000000000001,0.0567,0.6900000000000001,0,0,0,4,12.200000000000001,0,0,0,0,0.273,70.87,96.48,0.14,990,1.5,81,0.5 +2015,6,9,8,30,16.400000000000002,0.9500000000000001,0.0591,0.6900000000000001,0,0,0,1,12.3,0,0,0,0,0.273,76.66,109.04,0.14,991,1.5,83,0.6000000000000001 +2015,6,9,9,30,15.9,0.9500000000000001,0.0613,0.6900000000000001,0,0,0,8,12.4,0,0,0,0,0.274,79.60000000000001,121.97,0.14,991,1.5,78,0.6000000000000001 +2015,6,9,10,30,15.5,0.96,0.0637,0.6900000000000001,0,0,0,7,12.5,0,0,0,0,0.274,82.28,135.14000000000001,0.14,991,1.5,68,0.5 +2015,6,9,11,30,15.3,0.96,0.06620000000000001,0.6900000000000001,0,0,0,7,12.600000000000001,0,0,0,0,0.274,83.8,148.44,0.14,991,1.6,48,0.4 +2015,6,9,12,30,15,0.96,0.0687,0.6900000000000001,0,0,0,7,12.600000000000001,0,0,0,0,0.274,85.36,161.71,0.14,991,1.6,177,0.30000000000000004 +2015,6,9,13,30,14.700000000000001,0.9500000000000001,0.0704,0.6900000000000001,0,0,0,7,12.5,0,0,0,0,0.274,86.8,173.91,0.14,991,1.7000000000000002,297,0.30000000000000004 +2015,6,9,14,30,14.200000000000001,0.9500000000000001,0.0716,0.6900000000000001,0,0,0,4,12.5,0,0,0,0,0.274,89.25,169.64000000000001,0.14,991,1.7000000000000002,261,0.4 +2015,6,9,15,30,13.5,0.9400000000000001,0.0728,0.6900000000000001,0,0,0,4,12.3,0,0,0,0,0.274,92.63,156.67000000000002,0.14,991,1.7000000000000002,239,0.6000000000000001 +2015,6,9,16,30,12.700000000000001,0.9400000000000001,0.0737,0.6900000000000001,0,0,0,1,12.100000000000001,0,0,0,0,0.274,96.31,143.36,0.14,991,1.7000000000000002,224,0.7000000000000001 +2015,6,9,17,30,12.200000000000001,0.9500000000000001,0.0748,0.6900000000000001,0,0,0,1,11.8,0,0,0,0,0.275,97.68,130.1,0.14,991,1.7000000000000002,214,0.8 +2015,6,9,18,30,11.8,0.96,0.076,0.6900000000000001,0,0,0,4,11.5,0,0,0,0,0.276,97.96000000000001,117.01,0.14,991,1.8,209,0.8 +2015,6,9,19,30,11.5,0.97,0.0767,0.6900000000000001,0,0,0,1,11.200000000000001,0,0,0,0,0.277,97.83,104.21000000000001,0.14,992,1.8,207,0.7000000000000001 +2015,6,9,20,30,11.9,0.98,0.0767,0.6900000000000001,0,0,0,1,10.9,0,0,0,0,0.278,93.59,91.85000000000001,0.14,993,1.8,204,0.8 +2015,6,9,21,30,13.200000000000001,0.99,0.0766,0.6900000000000001,46,467,127,1,11.100000000000001,46,467,0,127,0.278,86.92,80.07000000000001,0.14,993,1.8,198,1 +2015,6,9,22,30,15.100000000000001,1.02,0.0761,0.6900000000000001,69,683,308,1,10.9,69,683,0,308,0.278,76.16,69.46000000000001,0.14,993,1.8,186,1.1 +2015,6,9,23,30,16.2,1.04,0.0742,0.6900000000000001,81,782,467,0,11.5,81,782,0,467,0.278,73.51,60.4,0.14,994,1.8,178,1 +2015,6,10,0,30,19.6,0.9,0.0794,0.6900000000000001,91,821,576,0,11.600000000000001,91,821,0,576,0.279,60.04,53.76,0.14,993,1.8,143,1.4000000000000001 +2015,6,10,1,30,20.900000000000002,0.88,0.0792,0.6900000000000001,94,840,628,0,11.8,94,840,0,628,0.278,56.06,50.5,0.14,992,1.8,130,1.6 +2015,6,10,2,30,21.400000000000002,0.85,0.0804,0.6900000000000001,94,834,615,0,12,94,834,0,615,0.278,55.09,51.29,0.14,992,1.8,121,1.8 +2015,6,10,3,30,21.400000000000002,0.77,0.08410000000000001,0.6900000000000001,91,800,539,1,12.200000000000001,91,800,0,539,0.278,55.9,55.94,0.14,992,1.8,116,1.9000000000000001 +2015,6,10,4,30,20.900000000000002,0.73,0.0874,0.6900000000000001,83,730,408,3,12.5,163,27,0,175,0.279,58.77,63.61,0.14,992,1.8,114,1.9000000000000001 +2015,6,10,5,30,19.6,0.67,0.08990000000000001,0.6900000000000001,67,588,236,3,13.100000000000001,100,16,0,104,0.279,65.91,73.35000000000001,0.14,992,1.9000000000000001,114,1.4000000000000001 +2015,6,10,6,30,17.6,0.63,0.0917,0.6900000000000001,34,263,60,3,14,23,0,3,23,0.279,79.52,84.36,0.14,992,1.9000000000000001,120,0.9 +2015,6,10,7,30,16.400000000000002,0.59,0.0906,0.6900000000000001,0,0,0,3,13.8,0,0,0,0,0.279,84.54,96.48,0.14,993,2,129,0.9 +2015,6,10,8,30,16,0.55,0.0916,0.6900000000000001,0,0,0,3,14,0,0,0,0,0.279,88.06,109.03,0.14,994,2.1,137,0.9 +2015,6,10,9,30,15.9,0.56,0.1017,0.6900000000000001,0,0,0,3,14.3,0,0,0,0,0.279,90.43,121.95,0.14,994,2.1,143,0.9 +2015,6,10,10,30,15.8,0.55,0.1134,0.6900000000000001,0,0,0,1,14.600000000000001,0,0,0,0,0.279,92.54,135.12,0.14,995,2.2,149,0.9 +2015,6,10,11,30,15.600000000000001,0.53,0.11950000000000001,0.6900000000000001,0,0,0,3,14.8,0,0,0,0,0.279,94.76,148.42000000000002,0.14,995,2.2,154,0.9 +2015,6,10,12,30,15.3,0.54,0.11760000000000001,0.6900000000000001,0,0,0,3,14.700000000000001,0,0,0,0,0.279,96.32000000000001,161.69,0.14,995,2.2,157,1 +2015,6,10,13,30,14.9,0.56,0.1051,0.6900000000000001,0,0,0,3,14.5,0,0,0,0,0.279,97.71000000000001,173.93,0.14,995,2.2,158,1 +2015,6,10,14,30,14.5,0.58,0.09240000000000001,0.6900000000000001,0,0,0,3,14.3,0,0,0,0,0.279,98.84,169.72,0.14,995,2.1,156,1 +2015,6,10,15,30,14.100000000000001,0.59,0.08610000000000001,0.6900000000000001,0,0,0,3,14.100000000000001,0,0,0,0,0.278,100,156.73,0.14,995,2.1,153,1.1 +2015,6,10,16,30,13.8,0.59,0.08410000000000001,0.6900000000000001,0,0,0,3,13.8,0,0,0,0,0.277,100,143.42000000000002,0.14,994,2.1,150,1.1 +2015,6,10,17,30,13.600000000000001,0.5700000000000001,0.08370000000000001,0.6900000000000001,0,0,0,1,13.600000000000001,0,0,0,0,0.277,100,130.17000000000002,0.14,994,2,149,1 +2015,6,10,18,30,13.5,0.55,0.0849,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.277,100,117.08,0.14,995,2,148,1 +2015,6,10,19,30,13.4,0.52,0.0853,0.6900000000000001,0,0,0,3,13.4,0,0,0,0,0.277,100,104.28,0.14,995,1.9000000000000001,146,1 +2015,6,10,20,30,14.200000000000001,0.5,0.085,0.6900000000000001,0,0,0,1,14.200000000000001,0,0,0,0,0.276,100,91.93,0.14,996,1.9000000000000001,144,1.3 +2015,6,10,21,30,15.8,0.49,0.0876,0.6900000000000001,50,420,122,1,14.9,50,420,0,122,0.276,94.21000000000001,80.15,0.14,996,1.9000000000000001,140,2 +2015,6,10,22,30,17.3,0.49,0.0806,0.6900000000000001,73,656,302,1,15.5,73,656,0,302,0.275,89.42,69.54,0.14,997,2,135,2.7 +2015,6,10,23,30,17.900000000000002,0.51,0.07060000000000001,0.6900000000000001,82,770,461,1,15.700000000000001,82,770,0,461,0.275,87.15,60.49,0.14,997,2,133,3 +2015,6,11,0,30,19.200000000000003,0.32,0.1416,0.6900000000000001,122,732,554,3,15.4,96,0,0,96,0.275,78.4,53.85,0.13,996,2.1,126,3.4000000000000004 +2015,6,11,1,30,19.6,0.3,0.1626,0.6900000000000001,136,732,601,1,14.9,136,732,0,601,0.275,74.22,50.58,0.13,995,2.1,123,3.4000000000000004 +2015,6,11,2,30,19.400000000000002,0.27,0.1706,0.6900000000000001,139,718,588,1,14.600000000000001,139,718,0,588,0.274,73.54,51.35,0.13,995,2.1,122,3.2 +2015,6,11,3,30,19,0.3,0.1542,0.6900000000000001,125,703,519,3,14.5,135,0,0,135,0.273,74.93,55.980000000000004,0.13,995,2,123,3 +2015,6,11,4,30,18.400000000000002,0.29,0.1477,0.6900000000000001,109,634,391,3,14.4,84,0,0,84,0.273,77.34,63.64,0.13,995,2,127,2.7 +2015,6,11,5,30,17.3,0.28,0.1368,0.6900000000000001,83,499,226,3,14.3,108,93,0,135,0.273,82.81,73.36,0.13,995,1.9000000000000001,132,2.2 +2015,6,11,6,30,16,0.28,0.1502,0.6900000000000001,40,153,55,3,14.3,30,0,3,30,0.273,89.62,84.36,0.13,996,1.9000000000000001,138,1.6 +2015,6,11,7,30,15,0.31,0.1442,0.6900000000000001,0,0,0,3,13.9,0,0,0,0,0.274,93.3,96.47,0.13,996,1.9000000000000001,143,1.4000000000000001 +2015,6,11,8,30,14.4,0.34,0.1369,0.6900000000000001,0,0,0,3,13.700000000000001,0,0,0,0,0.274,95.48,109.01,0.13,997,1.8,145,1.4000000000000001 +2015,6,11,9,30,14.100000000000001,0.37,0.1252,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.275,95.96000000000001,121.93,0.13,997,1.8,146,1.3 +2015,6,11,10,30,13.700000000000001,0.39,0.1109,0.6900000000000001,0,0,0,3,13.3,0,0,0,0,0.277,97.4,135.09,0.13,997,1.7000000000000002,147,1.2000000000000002 +2015,6,11,11,30,13.4,0.38,0.1004,0.6900000000000001,0,0,0,3,13.100000000000001,0,0,0,0,0.278,98.27,148.39000000000001,0.13,997,1.7000000000000002,149,1.1 +2015,6,11,12,30,13.200000000000001,0.37,0.0964,0.6900000000000001,0,0,0,3,13,0,0,0,0,0.279,98.38,161.67000000000002,0.13,997,1.7000000000000002,149,1.1 +2015,6,11,13,30,13.100000000000001,0.37,0.0936,0.6900000000000001,0,0,0,8,12.8,0,0,0,0,0.279,98.14,173.95000000000002,0.13,997,1.6,150,1.1 +2015,6,11,14,30,12.8,0.38,0.0873,0.6900000000000001,0,0,0,8,12.700000000000001,0,0,0,0,0.279,99.06,169.79,0.13,996,1.6,152,1 +2015,6,11,15,30,12.5,0.39,0.0791,0.6900000000000001,0,0,0,8,12.5,0,0,0,0,0.279,99.71000000000001,156.8,0.13,996,1.5,154,1 +2015,6,11,16,30,12.100000000000001,0.38,0.0752,0.6900000000000001,0,0,0,3,12.100000000000001,0,0,0,0,0.279,100,143.49,0.13,995,1.5,156,1 +2015,6,11,17,30,11.8,0.35000000000000003,0.0741,0.6900000000000001,0,0,0,1,11.8,0,0,0,0,0.278,100,130.23,0.13,995,1.5,158,1 +2015,6,11,18,30,11.700000000000001,0.34,0.0719,0.6900000000000001,0,0,0,1,11.700000000000001,0,0,0,0,0.277,100,117.15,0.13,996,1.6,158,1 +2015,6,11,19,30,11.700000000000001,0.35000000000000003,0.0688,0.6900000000000001,0,0,0,1,11.700000000000001,0,0,0,0,0.276,99.89,104.35000000000001,0.13,996,1.6,157,1 +2015,6,11,20,30,12.3,0.37,0.06720000000000001,0.6900000000000001,0,0,0,3,11.600000000000001,0,0,0,0,0.275,95.53,92,0.13,997,1.6,154,1.2000000000000002 +2015,6,11,21,30,13.600000000000001,0.42,0.0663,0.6900000000000001,46,462,125,8,12.4,58,169,3,86,0.274,92.22,80.23,0.13,997,1.6,149,1.8 +2015,6,11,22,30,14.9,0.45,0.0674,0.6900000000000001,69,684,307,8,13,124,288,0,224,0.274,88.44,69.62,0.13,997,1.6,143,2.2 +2015,6,11,23,30,15.5,0.46,0.0679,0.6900000000000001,81,782,466,8,13.5,199,242,0,318,0.273,87.75,60.58,0.13,997,1.6,141,2.4000000000000004 +2015,6,12,0,30,17.400000000000002,0.39,0.07300000000000001,0.6900000000000001,91,820,574,1,13.700000000000001,91,820,0,574,0.272,78.93,53.93,0.13,996,1.7000000000000002,131,2.7 +2015,6,12,1,30,18.1,0.41000000000000003,0.06570000000000001,0.6900000000000001,90,848,628,3,13.5,276,81,0,327,0.272,74.52,50.660000000000004,0.13,995,1.7000000000000002,127,2.8000000000000003 +2015,6,12,2,30,18.400000000000002,0.41000000000000003,0.06770000000000001,0.6900000000000001,91,839,614,3,13.100000000000001,227,23,0,242,0.272,71.27,51.410000000000004,0.13,995,1.8,124,2.8000000000000003 +2015,6,12,3,30,18.3,0.35000000000000003,0.097,0.6900000000000001,100,774,533,8,12.9,197,424,0,434,0.272,70.62,56.02,0.13,994,1.8,122,2.6 +2015,6,12,4,30,18,0.4,0.08900000000000001,0.6900000000000001,86,718,405,8,12.9,181,92,0,222,0.273,72.06,63.660000000000004,0.13,994,1.8,123,2.1 +2015,6,12,5,30,17.1,0.41000000000000003,0.0864,0.6900000000000001,68,586,236,8,13.200000000000001,96,6,0,98,0.273,77.93,73.37,0.13,994,1.8,127,1.5 +2015,6,12,6,30,16.1,0.39,0.0898,0.6900000000000001,35,250,59,4,13.600000000000001,17,0,3,17,0.273,84.92,84.36,0.13,994,1.9000000000000001,132,1 +2015,6,12,7,30,15.4,0.38,0.0935,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.273,88.29,96.46000000000001,0.13,995,1.9000000000000001,136,1 +2015,6,12,8,30,15,0.36,0.09770000000000001,0.6900000000000001,0,0,0,7,13.5,0,0,0,0,0.273,90.79,109,0.13,995,1.9000000000000001,140,0.9 +2015,6,12,9,30,14.5,0.34,0.09630000000000001,0.6900000000000001,0,0,0,1,13.5,0,0,0,0,0.273,93.95,121.91,0.13,995,1.9000000000000001,144,0.9 +2015,6,12,10,30,14.100000000000001,0.31,0.0974,0.6900000000000001,0,0,0,1,13.600000000000001,0,0,0,0,0.272,96.65,135.07,0.13,995,2,144,0.9 +2015,6,12,11,30,13.9,0.29,0.1004,0.6900000000000001,0,0,0,3,13.700000000000001,0,0,0,0,0.272,98.39,148.36,0.13,995,2,141,0.9 +2015,6,12,12,30,13.8,0.27,0.1066,0.6900000000000001,0,0,0,8,13.700000000000001,0,0,0,0,0.271,99.3,161.64000000000001,0.13,995,2,139,0.9 +2015,6,12,13,30,13.700000000000001,0.27,0.1068,0.6900000000000001,0,0,0,3,13.700000000000001,0,0,0,0,0.27,100,173.97,0.13,994,2,139,0.9 +2015,6,12,14,30,13.600000000000001,0.28,0.10110000000000001,0.6900000000000001,0,0,0,3,13.600000000000001,0,0,0,0,0.269,100,169.86,0.13,994,2,140,0.9 +2015,6,12,15,30,13.4,0.29,0.09730000000000001,0.6900000000000001,0,0,0,4,13.4,0,0,0,0,0.269,100,156.86,0.13,994,2,138,0.9 +2015,6,12,16,30,13.3,0.3,0.09230000000000001,0.6900000000000001,0,0,0,7,13.3,0,0,0,0,0.269,100,143.55,0.13,994,2,137,0.9 +2015,6,12,17,30,13.200000000000001,0.29,0.09040000000000001,0.6900000000000001,0,0,0,7,13.200000000000001,0,0,0,0,0.269,100,130.3,0.13,993,2,137,0.9 +2015,6,12,18,30,13.200000000000001,0.29,0.0902,0.6900000000000001,0,0,0,7,13.200000000000001,0,0,0,0,0.268,100,117.22,0.13,994,2,137,0.9 +2015,6,12,19,30,13.3,0.3,0.0889,0.6900000000000001,0,0,0,3,13.200000000000001,0,0,0,0,0.268,99.24000000000001,104.42,0.13,994,2,136,0.9 +2015,6,12,20,30,13.8,0.3,0.08750000000000001,0.6900000000000001,0,0,0,8,13.100000000000001,0,0,0,0,0.268,95.79,92.08,0.13,994,2,135,1.1 +2015,6,12,21,30,14.9,0.31,0.08750000000000001,0.6900000000000001,50,401,118,8,13.8,59,112,3,77,0.268,93.31,80.31,0.13,995,2.1,136,1.5 +2015,6,12,22,30,16,0.32,0.0857,0.6900000000000001,75,637,296,8,14.5,131,213,0,205,0.268,90.77,69.7,0.13,995,2.1,135,1.9000000000000001 +2015,6,12,23,30,16.5,0.34,0.0839,0.6900000000000001,88,745,453,1,15,88,745,0,453,0.267,90.95,60.660000000000004,0.13,995,2.1,134,2 +2015,6,13,0,30,17.900000000000002,0.26,0.11750000000000001,0.6900000000000001,112,755,556,1,15.100000000000001,112,755,0,556,0.265,83.78,54.01,0.13,994,2.1,122,2.4000000000000004 +2015,6,13,1,30,18.5,0.31,0.11180000000000001,0.6900000000000001,113,785,609,1,14.700000000000001,113,785,0,609,0.264,78.7,50.72,0.13,993,2.1,117,2.4000000000000004 +2015,6,13,2,30,18.6,0.33,0.1058,0.6900000000000001,109,787,599,1,14.4,109,787,0,599,0.263,76.48,51.46,0.13,993,2.1,115,2.2 +2015,6,13,3,30,18.400000000000002,0.38,0.1097,0.6900000000000001,104,751,524,1,14.3,104,751,0,524,0.263,76.89,56.06,0.13,992,2.2,117,2 +2015,6,13,4,30,18,0.41000000000000003,0.1071,0.6900000000000001,92,685,396,1,14.3,92,685,0,396,0.263,79.14,63.68,0.13,992,2.2,121,1.7000000000000002 +2015,6,13,5,30,17.3,0.41000000000000003,0.10260000000000001,0.6900000000000001,72,551,230,1,14.600000000000001,72,551,0,230,0.263,83.91,73.37,0.13,992,2.2,129,1.2000000000000002 +2015,6,13,6,30,16.400000000000002,0.44,0.0993,0.6900000000000001,35,233,58,3,14.700000000000001,17,0,3,17,0.263,89.79,84.35000000000001,0.13,992,2.2,136,0.9 +2015,6,13,7,30,15.700000000000001,0.46,0.0907,0.6900000000000001,0,0,0,4,14.5,0,0,0,0,0.264,92.57000000000001,96.45,0.13,993,2.2,142,0.8 +2015,6,13,8,30,15.200000000000001,0.46,0.0806,0.6900000000000001,0,0,0,1,14.4,0,0,0,0,0.264,94.85000000000001,108.97,0.13,994,2.1,146,0.8 +2015,6,13,9,30,14.8,0.48,0.07740000000000001,0.6900000000000001,0,0,0,4,14.200000000000001,0,0,0,0,0.264,96.38,121.88,0.13,994,2.1,147,0.8 +2015,6,13,10,30,14.4,0.47000000000000003,0.0741,0.6900000000000001,0,0,0,8,14.100000000000001,0,0,0,0,0.264,97.85000000000001,135.04,0.13,994,2,146,0.8 +2015,6,13,11,30,14.100000000000001,0.45,0.0707,0.6900000000000001,0,0,0,8,13.9,0,0,0,0,0.264,98.60000000000001,148.33,0.13,994,2,145,0.8 +2015,6,13,12,30,13.9,0.46,0.0723,0.6900000000000001,0,0,0,4,13.700000000000001,0,0,0,0,0.264,98.71000000000001,161.61,0.13,994,2,144,0.8 +2015,6,13,13,30,13.8,0.46,0.0713,0.6900000000000001,0,0,0,8,13.600000000000001,0,0,0,0,0.264,98.43,173.97,0.13,994,2,143,0.8 +2015,6,13,14,30,13.700000000000001,0.45,0.0687,0.6900000000000001,0,0,0,3,13.4,0,0,0,0,0.264,98.37,169.93,0.13,993,2,142,0.8 +2015,6,13,15,30,13.5,0.47000000000000003,0.0702,0.6900000000000001,0,0,0,4,13.4,0,0,0,0,0.264,99.15,156.92000000000002,0.13,993,2,141,0.8 +2015,6,13,16,30,13.4,0.46,0.06860000000000001,0.6900000000000001,0,0,0,3,13.3,0,0,0,0,0.264,99.3,143.61,0.13,992,1.9000000000000001,140,0.8 +2015,6,13,17,30,13.200000000000001,0.44,0.0646,0.6900000000000001,0,0,0,3,13.200000000000001,0,0,0,0,0.264,99.99000000000001,130.36,0.13,992,1.9000000000000001,141,0.7000000000000001 +2015,6,13,18,30,13.100000000000001,0.47000000000000003,0.0659,0.6900000000000001,0,0,0,4,13.100000000000001,0,0,0,0,0.264,100,117.28,0.13,993,1.9000000000000001,142,0.7000000000000001 +2015,6,13,19,30,13,0.48,0.065,0.6900000000000001,0,0,0,8,13,0,0,0,0,0.263,100,104.49000000000001,0.13,993,1.9000000000000001,142,0.7000000000000001 +2015,6,13,20,30,13.5,0.48,0.0631,0.6900000000000001,0,0,0,3,13,0,0,0,0,0.263,96.99000000000001,92.15,0.13,993,2,143,0.9 +2015,6,13,21,30,14.4,0.52,0.0646,0.6900000000000001,45,457,121,1,13.700000000000001,45,457,0,121,0.263,95.5,80.38,0.13,994,2,147,1.2000000000000002 +2015,6,13,22,30,15.5,0.53,0.064,0.6900000000000001,66,677,300,1,14.3,66,677,0,300,0.263,92.67,69.78,0.13,994,2.1,148,1.4000000000000001 +2015,6,13,23,30,16,0.53,0.0634,0.6900000000000001,78,776,457,1,15,78,776,0,457,0.263,93.74,60.730000000000004,0.13,994,2.1,146,1.4000000000000001 +2015,6,14,0,30,17.900000000000002,0.54,0.0722,0.6900000000000001,89,813,566,1,15.3,89,813,0,566,0.263,85.02,54.08,0.13,993,2.1,131,1.5 +2015,6,14,1,30,18.900000000000002,0.62,0.061500000000000006,0.6900000000000001,86,843,619,1,15.100000000000001,86,843,0,619,0.263,78.82000000000001,50.78,0.13,992,2.2,120,1.6 +2015,6,14,2,30,19.400000000000002,0.65,0.052000000000000005,0.6900000000000001,81,850,610,1,14.8,81,850,0,610,0.263,74.93,51.51,0.13,991,2.2,113,1.7000000000000002 +2015,6,14,3,30,19.5,0.51,0.0906,0.6900000000000001,95,776,528,1,14.600000000000001,95,776,0,528,0.264,73.47,56.09,0.13,991,2.2,110,1.7000000000000002 +2015,6,14,4,30,19,0.55,0.0925,0.6900000000000001,85,706,398,1,14.600000000000001,85,706,0,398,0.265,75.60000000000001,63.690000000000005,0.13,990,2.3000000000000003,107,1.6 +2015,6,14,5,30,18.1,0.53,0.0854,0.6900000000000001,66,581,232,1,15,66,581,0,232,0.265,82.04,73.37,0.13,991,2.3000000000000003,106,1.1 +2015,6,14,6,30,17,0.5700000000000001,0.0887,0.6900000000000001,34,259,59,1,15.5,34,259,0,59,0.264,90.66,84.34,0.13,991,2.3000000000000003,106,0.7000000000000001 +2015,6,14,7,30,16.2,0.55,0.0898,0.6900000000000001,0,0,0,3,15.3,0,0,0,0,0.264,94.22,96.43,0.13,992,2.3000000000000003,107,0.7000000000000001 +2015,6,14,8,30,15.8,0.52,0.08220000000000001,0.6900000000000001,0,0,0,1,15.3,0,0,0,0,0.263,96.71000000000001,108.95,0.13,992,2.3000000000000003,108,0.6000000000000001 +2015,6,14,9,30,15.4,0.58,0.0673,0.6900000000000001,0,0,0,1,15.200000000000001,0,0,0,0,0.262,98.98,121.86,0.13,993,2.3000000000000003,112,0.7000000000000001 +2015,6,14,10,30,15,0.61,0.0606,0.6900000000000001,0,0,0,4,15,0,0,0,0,0.261,100,135.01,0.13,993,2.3000000000000003,117,0.7000000000000001 +2015,6,14,11,30,14.8,0.59,0.0606,0.6900000000000001,0,0,0,3,14.8,0,0,0,0,0.26,100,148.3,0.13,992,2.3000000000000003,121,0.7000000000000001 +2015,6,14,12,30,14.700000000000001,0.62,0.0645,0.6900000000000001,0,0,0,3,14.700000000000001,0,0,0,0,0.26,100,161.58,0.13,992,2.3000000000000003,121,0.7000000000000001 +2015,6,14,13,30,14.5,0.62,0.06280000000000001,0.6900000000000001,0,0,0,1,14.5,0,0,0,0,0.261,100,173.98,0.13,992,2.4000000000000004,122,0.7000000000000001 +2015,6,14,14,30,14.3,0.59,0.0601,0.6900000000000001,0,0,0,1,14.3,0,0,0,0,0.262,100,170,0.13,991,2.4000000000000004,125,0.7000000000000001 +2015,6,14,15,30,14.100000000000001,0.62,0.06470000000000001,0.6900000000000001,0,0,0,1,14.100000000000001,0,0,0,0,0.263,100,156.98,0.13,991,2.4000000000000004,129,0.7000000000000001 +2015,6,14,16,30,13.9,0.62,0.0641,0.6900000000000001,0,0,0,1,13.9,0,0,0,0,0.264,100,143.67000000000002,0.13,991,2.4000000000000004,130,0.7000000000000001 +2015,6,14,17,30,13.700000000000001,0.59,0.0589,0.6900000000000001,0,0,0,1,13.700000000000001,0,0,0,0,0.264,100,130.42000000000002,0.13,991,2.3000000000000003,131,0.7000000000000001 +2015,6,14,18,30,13.5,0.62,0.0599,0.6900000000000001,0,0,0,1,13.5,0,0,0,0,0.265,100,117.34,0.13,991,2.3000000000000003,130,0.7000000000000001 +2015,6,14,19,30,13.3,0.62,0.055400000000000005,0.6900000000000001,0,0,0,1,13.3,0,0,0,0,0.267,100,104.56,0.13,992,2.2,130,0.7000000000000001 +2015,6,14,20,30,13.700000000000001,0.59,0.0505,0.6900000000000001,0,0,0,3,13.4,0,0,0,0,0.268,97.95,92.21000000000001,0.13,992,2.2,132,0.8 +2015,6,14,21,30,15,0.62,0.0517,0.6900000000000001,41,481,121,1,14.200000000000001,41,481,0,121,0.269,95.21000000000001,80.45,0.13,993,2.2,135,1.2000000000000002 +2015,6,14,22,30,16.3,0.62,0.0502,0.6900000000000001,61,697,301,3,15.100000000000001,91,0,0,91,0.269,92.69,69.85000000000001,0.13,993,2.2,131,1.5 +2015,6,14,23,30,16.900000000000002,0.67,0.0405,0.6900000000000001,67,805,460,1,15.700000000000001,67,805,0,460,0.269,92.86,60.800000000000004,0.13,993,2.2,126,1.7000000000000002 +2015,6,15,0,30,18.8,0.46,0.0717,0.6900000000000001,89,807,562,1,15.700000000000001,89,807,0,562,0.269,82.35000000000001,54.14,0.13,992,2.3000000000000003,114,2 +2015,6,15,1,30,19.700000000000003,0.53,0.0641,0.6900000000000001,88,836,616,3,15.100000000000001,180,5,0,184,0.268,74.81,50.84,0.13,991,2.3000000000000003,109,2.1 +2015,6,15,2,30,20,0.5700000000000001,0.058600000000000006,0.6900000000000001,84,837,605,3,14.5,212,15,0,221,0.268,70.62,51.54,0.13,990,2.4000000000000004,107,2 +2015,6,15,3,30,19.900000000000002,0.67,0.06280000000000001,0.6900000000000001,81,806,531,1,14.200000000000001,81,806,0,531,0.268,69.86,56.11,0.13,990,2.4000000000000004,108,2 +2015,6,15,4,30,19.400000000000002,0.6900000000000001,0.06470000000000001,0.6900000000000001,74,741,402,1,14.3,74,741,0,402,0.268,72.58,63.7,0.13,990,2.5,109,1.8 +2015,6,15,5,30,18.5,0.66,0.0618,0.6900000000000001,59,619,236,1,14.700000000000001,59,619,0,236,0.267,78.51,73.36,0.13,990,2.5,112,1.3 +2015,6,15,6,30,17.1,0.67,0.061700000000000005,0.6900000000000001,30,314,61,1,15.100000000000001,30,314,0,61,0.268,87.78,84.33,0.13,990,2.5,116,0.9 +2015,6,15,7,30,16.1,0.64,0.056600000000000004,0.6900000000000001,0,0,0,0,14.700000000000001,0,0,0,0,0.269,91.26,96.41,0.13,991,2.5,120,0.8 +2015,6,15,8,30,15.5,0.62,0.052500000000000005,0.6900000000000001,0,0,0,0,14.4,0,0,0,0,0.269,93.44,108.92,0.13,991,2.5,123,0.8 +2015,6,15,9,30,15,0.61,0.053500000000000006,0.6900000000000001,0,0,0,0,14.4,0,0,0,0,0.269,95.91,121.82000000000001,0.13,992,2.5,126,0.7000000000000001 +2015,6,15,10,30,14.600000000000001,0.6,0.054400000000000004,0.6900000000000001,0,0,0,1,14.3,0,0,0,0,0.269,97.99000000000001,134.97,0.13,992,2.4000000000000004,128,0.7000000000000001 +2015,6,15,11,30,14.3,0.59,0.0553,0.6900000000000001,0,0,0,1,14.200000000000001,0,0,0,0,0.268,99.55,148.26,0.13,991,2.4000000000000004,131,0.7000000000000001 +2015,6,15,12,30,14.100000000000001,0.6,0.059300000000000005,0.6900000000000001,0,0,0,1,14.100000000000001,0,0,0,0,0.268,100,161.55,0.13,991,2.4000000000000004,135,0.7000000000000001 +2015,6,15,13,30,14,0.6,0.060000000000000005,0.6900000000000001,0,0,0,1,14,0,0,0,0,0.267,100,173.97,0.13,990,2.4000000000000004,136,0.6000000000000001 +2015,6,15,14,30,13.9,0.59,0.0574,0.6900000000000001,0,0,0,0,13.9,0,0,0,0,0.267,100,170.06,0.13,990,2.4000000000000004,138,0.6000000000000001 +2015,6,15,15,30,13.8,0.65,0.059800000000000006,0.6900000000000001,0,0,0,1,13.8,0,0,0,0,0.266,100,157.04,0.13,990,2.4000000000000004,140,0.6000000000000001 +2015,6,15,16,30,13.8,0.67,0.058800000000000005,0.6900000000000001,0,0,0,3,13.8,0,0,0,0,0.266,100,143.73,0.13,990,2.5,141,0.6000000000000001 +2015,6,15,17,30,13.8,0.67,0.0543,0.6900000000000001,0,0,0,8,13.8,0,0,0,0,0.266,100,130.48,0.13,990,2.6,137,0.6000000000000001 +2015,6,15,18,30,13.8,0.74,0.058100000000000006,0.6900000000000001,0,0,0,7,13.8,0,0,0,0,0.266,100,117.41,0.13,990,2.6,128,0.6000000000000001 +2015,6,15,19,30,13.9,0.78,0.057100000000000005,0.6900000000000001,0,0,0,3,13.9,0,0,0,0,0.267,100,104.62,0.13,990,2.7,118,0.6000000000000001 +2015,6,15,20,30,14.4,0.78,0.051800000000000006,0.6900000000000001,0,0,0,1,14.3,0,0,0,0,0.269,99.05,92.28,0.13,990,2.7,112,0.7000000000000001 +2015,6,15,21,30,15.5,0.84,0.0538,0.6900000000000001,40,469,118,1,15,40,469,0,118,0.27,96.57000000000001,80.51,0.13,990,2.8000000000000003,109,0.9 +2015,6,15,22,30,16.8,0.85,0.0494,0.6900000000000001,59,686,295,1,15.8,59,686,0,295,0.271,93.66,69.91,0.13,990,2.9000000000000004,104,1.2000000000000002 +2015,6,15,23,30,17.5,0.84,0.043300000000000005,0.6900000000000001,67,787,451,1,16.5,67,787,0,451,0.271,94.12,60.86,0.13,990,2.9000000000000004,101,1.2000000000000002 +2015,6,16,0,30,19.3,0.66,0.0809,0.6900000000000001,90,786,550,8,16.900000000000002,254,210,0,377,0.27,85.93,54.2,0.13,989,3,77,1.5 +2015,6,16,1,30,20.200000000000003,0.74,0.0755,0.6900000000000001,91,811,602,3,16.900000000000002,277,92,0,335,0.269,81.59,50.88,0.13,988,3.1,67,1.6 +2015,6,16,2,30,20.700000000000003,0.73,0.0666,0.6900000000000001,86,816,593,8,16.900000000000002,234,28,0,251,0.268,78.74,51.57,0.13,987,3.1,61,1.7000000000000002 +2015,6,16,3,30,20.6,0.72,0.07970000000000001,0.6900000000000001,87,772,518,1,16.8,87,772,0,518,0.266,78.98,56.120000000000005,0.13,986,3.2,57,1.7000000000000002 +2015,6,16,4,30,20.200000000000003,0.7000000000000001,0.0784,0.6900000000000001,78,710,393,1,16.900000000000002,78,710,0,393,0.264,81.52,63.7,0.13,986,3.2,58,1.6 +2015,6,16,5,30,19.200000000000003,0.66,0.0736,0.6900000000000001,61,587,229,1,17.1,61,587,0,229,0.262,87.89,73.35000000000001,0.13,986,3.2,63,1.2000000000000002 +2015,6,16,6,30,17.900000000000002,0.6900000000000001,0.078,0.6900000000000001,32,274,59,1,17.400000000000002,32,274,0,59,0.261,97.12,84.31,0.13,986,3.2,67,0.8 +2015,6,16,7,30,16.900000000000002,0.7000000000000001,0.0694,0.6900000000000001,0,0,0,3,16.900000000000002,0,0,0,0,0.26,100,96.38,0.13,987,3.2,66,0.6000000000000001 +2015,6,16,8,30,16.5,0.7000000000000001,0.0613,0.6900000000000001,0,0,0,3,16.5,0,0,0,0,0.26,100,108.89,0.13,987,3.2,58,0.6000000000000001 +2015,6,16,9,30,16.3,0.73,0.0611,0.6900000000000001,0,0,0,8,16.3,0,0,0,0,0.26,100,121.79,0.13,988,3.2,50,0.6000000000000001 +2015,6,16,10,30,16.1,0.72,0.060500000000000005,0.6900000000000001,0,0,0,8,16.1,0,0,0,0,0.261,100,134.94,0.13,988,3.2,44,0.7000000000000001 +2015,6,16,11,30,15.8,0.68,0.0572,0.6900000000000001,0,0,0,4,15.8,0,0,0,0,0.262,100,148.22,0.13,987,3.2,38,0.7000000000000001 +2015,6,16,12,30,15.5,0.66,0.0568,0.6900000000000001,0,0,0,8,15.5,0,0,0,0,0.262,100,161.51,0.13,987,3.1,32,0.7000000000000001 +2015,6,16,13,30,15.200000000000001,0.65,0.0568,0.6900000000000001,0,0,0,1,15.200000000000001,0,0,0,0,0.261,100,173.96,0.13,986,3,27,0.7000000000000001 +2015,6,16,14,30,14.9,0.63,0.056400000000000006,0.6900000000000001,0,0,0,8,14.9,0,0,0,0,0.261,100,170.12,0.13,986,2.9000000000000004,27,0.7000000000000001 +2015,6,16,15,30,14.8,0.62,0.0585,0.6900000000000001,0,0,0,8,14.8,0,0,0,0,0.261,100,157.1,0.13,985,2.9000000000000004,30,0.7000000000000001 +2015,6,16,16,30,14.700000000000001,0.59,0.0616,0.6900000000000001,0,0,0,4,14.700000000000001,0,0,0,0,0.261,100,143.79,0.13,984,2.8000000000000003,30,0.8 +2015,6,16,17,30,14.700000000000001,0.54,0.06330000000000001,0.6900000000000001,0,0,0,4,14.700000000000001,0,0,0,0,0.26,100,130.54,0.13,984,2.8000000000000003,23,0.8 +2015,6,16,18,30,14.700000000000001,0.49,0.0675,0.6900000000000001,0,0,0,4,14.700000000000001,0,0,0,0,0.258,100,117.46000000000001,0.13,984,2.8000000000000003,186,0.7000000000000001 +2015,6,16,19,30,14.8,0.47000000000000003,0.07350000000000001,0.6900000000000001,0,0,0,4,14.8,0,0,0,0,0.256,100,104.68,0.13,985,2.9000000000000004,348,0.7000000000000001 +2015,6,16,20,30,15,0.48,0.076,0.6900000000000001,0,0,0,4,15,0,0,0,0,0.255,100,92.34,0.13,985,2.8000000000000003,339,0.6000000000000001 +2015,6,16,21,30,15.700000000000001,0.51,0.0714,0.6900000000000001,45,422,114,8,15.4,30,0,3,30,0.255,98.15,80.57000000000001,0.13,986,2.8000000000000003,337,0.7000000000000001 +2015,6,16,22,30,16.400000000000002,0.56,0.061900000000000004,0.6900000000000001,64,666,293,8,15.9,78,0,0,78,0.255,96.97,69.97,0.13,986,2.7,336,0.9 +2015,6,16,23,30,16.8,0.61,0.0538,0.6900000000000001,73,775,450,7,16.3,112,0,0,112,0.255,97.18,60.92,0.13,985,2.7,335,1 +2015,6,17,0,30,17.8,0.43,0.08950000000000001,0.6900000000000001,96,774,548,8,16.7,37,0,0,37,0.256,93.21000000000001,54.25,0.13,984,2.9000000000000004,341,1.1 +2015,6,17,1,30,18.3,0.44,0.093,0.6900000000000001,101,788,597,6,16.7,30,0,0,30,0.256,90.55,50.92,0.13,983,3.1,349,1.3 +2015,6,17,2,30,18.900000000000002,0.43,0.0932,0.6900000000000001,100,780,584,6,16.8,29,0,0,29,0.258,87.89,51.6,0.13,982,3.3000000000000003,356,1.4000000000000001 +2015,6,17,3,30,19.3,0.55,0.0631,0.6900000000000001,81,786,519,4,17.1,101,0,0,101,0.258,87.01,56.13,0.13,981,3.4000000000000004,180,1.6 +2015,6,17,4,30,19.3,0.5,0.061500000000000006,0.6900000000000001,72,724,394,4,17.3,149,10,0,153,0.259,88,63.690000000000005,0.13,980,3.5,1,1.4000000000000001 +2015,6,17,5,30,18.6,0.46,0.0674,0.6900000000000001,60,585,228,8,17.6,10,0,0,10,0.258,94.03,73.34,0.13,980,3.7,147,0.8 +2015,6,17,6,30,17.6,0.46,0.0898,0.6900000000000001,33,235,57,8,17.6,5,0,3,5,0.256,100,84.29,0.13,981,3.8000000000000003,274,0.6000000000000001 +2015,6,17,7,30,16.7,0.48,0.094,0.6900000000000001,0,0,0,8,16.7,0,0,0,0,0.255,100,96.35000000000001,0.13,982,3.6,252,0.8 +2015,6,17,8,30,16.1,0.58,0.0756,0.6900000000000001,0,0,0,1,16.1,0,0,0,0,0.256,100,108.86,0.13,983,3.1,246,0.7000000000000001 +2015,6,17,9,30,15.3,0.71,0.0626,0.6900000000000001,0,0,0,1,15.3,0,0,0,0,0.259,100,121.75,0.13,983,2.4000000000000004,250,0.7000000000000001 +2015,6,17,10,30,14.4,0.73,0.053200000000000004,0.6900000000000001,0,0,0,3,14.4,0,0,0,0,0.261,100,134.9,0.13,984,1.9000000000000001,257,0.8 +2015,6,17,11,30,13.600000000000001,0.7000000000000001,0.048100000000000004,0.6900000000000001,0,0,0,0,13.600000000000001,0,0,0,0,0.261,100,148.18,0.13,984,1.6,260,0.8 +2015,6,17,12,30,12.9,0.7000000000000001,0.0442,0.6900000000000001,0,0,0,0,12.9,0,0,0,0,0.262,100,161.47,0.13,984,1.4000000000000001,262,0.8 +2015,6,17,13,30,12.200000000000001,0.71,0.0405,0.6900000000000001,0,0,0,0,12.200000000000001,0,0,0,0,0.262,100,173.95000000000002,0.13,984,1.3,264,0.8 +2015,6,17,14,30,11.600000000000001,0.73,0.0366,0.6900000000000001,0,0,0,0,11.600000000000001,0,0,0,0,0.262,100,170.18,0.13,983,1.2000000000000002,264,0.8 +2015,6,17,15,30,11,0.77,0.0332,0.6900000000000001,0,0,0,0,11,0,0,0,0,0.262,100,157.16,0.13,983,1.2000000000000002,265,0.8 +2015,6,17,16,30,10.5,0.8,0.0307,0.6900000000000001,0,0,0,0,10.5,0,0,0,0,0.263,100,143.85,0.13,983,1.1,265,0.7000000000000001 +2015,6,17,17,30,10.100000000000001,0.84,0.028900000000000002,0.6900000000000001,0,0,0,0,10.100000000000001,0,0,0,0,0.264,100,130.6,0.13,983,1.1,264,0.7000000000000001 +2015,6,17,18,30,9.700000000000001,0.86,0.028300000000000002,0.6900000000000001,0,0,0,0,9.700000000000001,0,0,0,0,0.264,100,117.52,0.13,983,1.1,262,0.7000000000000001 +2015,6,17,19,30,9.4,0.87,0.0285,0.6900000000000001,0,0,0,0,9.4,0,0,0,0,0.264,100,104.74000000000001,0.13,984,1.1,260,0.7000000000000001 +2015,6,17,20,30,9.9,0.87,0.0287,0.6900000000000001,0,0,0,0,9.600000000000001,0,0,0,0,0.264,97.78,92.4,0.13,984,1.1,258,0.9 +2015,6,17,21,30,11.5,0.89,0.0292,0.6900000000000001,36,567,128,1,10.3,36,567,0,128,0.263,92.21000000000001,80.63,0.13,985,1.1,256,1.2000000000000002 +2015,6,17,22,30,13.600000000000001,0.91,0.0287,0.6900000000000001,53,769,315,1,11.3,53,769,0,315,0.262,86.22,70.03,0.13,985,1.1,252,1.4000000000000001 +2015,6,17,23,30,14.8,0.9400000000000001,0.0281,0.6900000000000001,61,857,477,1,12.3,61,857,0,477,0.262,84.95,60.97,0.13,985,1.1,250,1.5 +2015,6,18,0,30,18,0.65,0.0383,0.6900000000000001,73,884,589,1,12.100000000000001,73,884,0,589,0.261,68.24,54.300000000000004,0.13,984,1.1,251,1.7000000000000002 +2015,6,18,1,30,19.400000000000002,0.66,0.0383,0.6900000000000001,75,901,643,1,11,75,901,0,643,0.26,58.44,50.96,0.13,983,1.1,257,1.8 +2015,6,18,2,30,20.1,0.67,0.038400000000000004,0.6900000000000001,75,895,630,0,10.3,75,895,0,630,0.26,53.26,51.620000000000005,0.13,982,1.2000000000000002,261,1.9000000000000001 +2015,6,18,3,30,20.3,0.67,0.0396,0.6900000000000001,72,869,556,0,9.9,72,869,0,556,0.26,51.09,56.13,0.13,982,1.2000000000000002,262,1.9000000000000001 +2015,6,18,4,30,19.900000000000002,0.65,0.0425,0.6900000000000001,66,808,425,1,9.700000000000001,66,808,0,425,0.26,51.65,63.68,0.13,981,1.2000000000000002,261,1.7000000000000002 +2015,6,18,5,30,18.6,0.64,0.0461,0.6900000000000001,55,683,251,1,10,55,683,0,251,0.26,57.19,73.32000000000001,0.13,982,1.2000000000000002,259,1.2000000000000002 +2015,6,18,6,30,16.3,0.62,0.049100000000000005,0.6900000000000001,30,371,67,1,11,30,371,0,67,0.261,70.86,84.26,0.13,982,1.3,255,0.8 +2015,6,18,7,30,14.600000000000001,0.6,0.0504,0.6900000000000001,0,0,0,1,9.8,0,0,0,0,0.262,72.93,96.32000000000001,0.13,983,1.3,250,0.8 +2015,6,18,8,30,13.600000000000001,0.6,0.0517,0.6900000000000001,0,0,0,3,9.4,0,0,0,0,0.262,75.83,108.82000000000001,0.13,983,1.3,248,0.8 +2015,6,18,9,30,13.100000000000001,0.62,0.0539,0.6900000000000001,0,0,0,4,9.200000000000001,0,0,0,0,0.263,76.97,121.71000000000001,0.13,984,1.3,249,0.8 +2015,6,18,10,30,12.5,0.64,0.0563,0.6900000000000001,0,0,0,3,9,0,0,0,0,0.264,79.45,134.86,0.13,984,1.3,250,0.8 +2015,6,18,11,30,12,0.66,0.059300000000000005,0.6900000000000001,0,0,0,3,8.9,0,0,0,0,0.265,81.31,148.14000000000001,0.13,984,1.3,249,0.8 +2015,6,18,12,30,11.600000000000001,0.66,0.0609,0.6900000000000001,0,0,0,4,8.8,0,0,0,0,0.265,83.03,161.43,0.13,984,1.3,248,0.8 +2015,6,18,13,30,11.200000000000001,0.65,0.061500000000000006,0.6900000000000001,0,0,0,8,8.700000000000001,0,0,0,0,0.266,84.83,173.93,0.13,983,1.3,248,0.8 +2015,6,18,14,30,10.700000000000001,0.64,0.0608,0.6900000000000001,0,0,0,8,8.6,0,0,0,0,0.266,86.98,170.24,0.13,983,1.3,250,0.9 +2015,6,18,15,30,10.3,0.65,0.059800000000000006,0.6900000000000001,0,0,0,8,8.4,0,0,0,0,0.266,88.18,157.21,0.13,983,1.3,253,0.9 +2015,6,18,16,30,10.100000000000001,0.66,0.0599,0.6900000000000001,0,0,0,1,8.4,0,0,0,0,0.265,88.89,143.9,0.13,983,1.3,258,0.8 +2015,6,18,17,30,9.700000000000001,0.66,0.058,0.6900000000000001,0,0,0,1,8.4,0,0,0,0,0.266,91.68,130.65,0.13,983,1.3,262,0.8 +2015,6,18,18,30,9.1,0.63,0.054200000000000005,0.6900000000000001,0,0,0,3,8.4,0,0,0,0,0.267,95.53,117.58,0.13,983,1.3,259,0.8 +2015,6,18,19,30,8.700000000000001,0.63,0.0517,0.6900000000000001,0,0,0,3,8.4,0,0,0,0,0.267,98.28,104.79,0.13,984,1.3,255,0.8 +2015,6,18,20,30,9.4,0.64,0.050300000000000004,0.6900000000000001,0,0,0,1,8.5,0,0,0,0,0.266,94.04,92.45,0.13,985,1.3,254,0.9 +2015,6,18,21,30,11.3,0.6900000000000001,0.0482,0.6900000000000001,40,509,123,1,8.9,40,509,0,123,0.265,85.09,80.68,0.13,985,1.3,250,1.4000000000000001 +2015,6,18,22,30,13.4,0.76,0.0441,0.6900000000000001,59,733,308,1,9,59,733,0,308,0.266,74.96000000000001,70.08,0.13,985,1.3,244,2.1 +2015,6,18,23,30,14.4,0.8300000000000001,0.0402,0.6900000000000001,67,832,470,1,8.8,67,832,0,470,0.267,69.18,61.02,0.13,985,1.3,240,2.3000000000000003 +2015,6,19,0,30,16.3,0.68,0.0478,0.6900000000000001,77,865,582,0,8.3,77,865,0,582,0.269,59.29,54.33,0.13,984,1.3,242,2.6 +2015,6,19,1,30,17.2,0.6900000000000001,0.047,0.6900000000000001,79,884,636,1,7.9,79,884,0,636,0.269,54.410000000000004,50.980000000000004,0.13,983,1.3,244,2.6 +2015,6,19,2,30,17.8,0.71,0.0451,0.6900000000000001,78,887,628,1,7.6000000000000005,78,887,0,628,0.269,51.32,51.63,0.13,982,1.2000000000000002,245,2.6 +2015,6,19,3,30,18,0.68,0.0465,0.6900000000000001,75,860,554,1,7.4,75,860,0,554,0.269,49.92,56.13,0.13,982,1.2000000000000002,244,2.5 +2015,6,19,4,30,17.6,0.65,0.0492,0.6900000000000001,69,798,423,1,7.300000000000001,69,798,0,423,0.271,50.81,63.660000000000004,0.13,982,1.2000000000000002,243,2.3000000000000003 +2015,6,19,5,30,16.3,0.61,0.0522,0.6900000000000001,57,671,250,1,7.5,57,671,0,250,0.272,55.95,73.29,0.13,982,1.2000000000000002,241,1.7000000000000002 +2015,6,19,6,30,14.3,0.6,0.054200000000000005,0.6900000000000001,31,361,67,2,8.1,20,0,3,20,0.274,66.48,84.23,0.13,983,1.2000000000000002,241,1.2000000000000002 +2015,6,19,7,30,12.8,0.61,0.0538,0.6900000000000001,0,0,0,0,7.7,0,0,0,0,0.275,71.14,96.28,0.13,984,1.3,242,1 +2015,6,19,8,30,12,0.64,0.0509,0.6900000000000001,0,0,0,0,7.6000000000000005,0,0,0,0,0.275,74.7,108.78,0.13,984,1.3,244,0.9 +2015,6,19,9,30,11.3,0.7000000000000001,0.0459,0.6900000000000001,0,0,0,0,7.6000000000000005,0,0,0,0,0.276,77.97,121.67,0.13,985,1.3,247,0.9 +2015,6,19,10,30,10.600000000000001,0.78,0.041,0.6900000000000001,0,0,0,0,7.5,0,0,0,0,0.277,81.10000000000001,134.81,0.13,986,1.3,248,0.9 +2015,6,19,11,30,10,0.85,0.0373,0.6900000000000001,0,0,0,0,7.4,0,0,0,0,0.279,83.81,148.1,0.13,986,1.2000000000000002,247,0.9 +2015,6,19,12,30,9.5,0.89,0.035300000000000005,0.6900000000000001,0,0,0,0,7.300000000000001,0,0,0,0,0.28200000000000003,86.28,161.39000000000001,0.13,986,1.2000000000000002,244,0.9 +2015,6,19,13,30,9,0.92,0.0344,0.6900000000000001,0,0,0,1,7.300000000000001,0,0,0,0,0.28400000000000003,89.25,173.9,0.13,986,1.2000000000000002,239,0.9 +2015,6,19,14,30,8.5,0.9500000000000001,0.034300000000000004,0.6900000000000001,0,0,0,0,7.4,0,0,0,0,0.28600000000000003,92.66,170.29,0.13,986,1.2000000000000002,235,0.9 +2015,6,19,15,30,8.1,0.99,0.0347,0.6900000000000001,0,0,0,0,7.4,0,0,0,0,0.28800000000000003,95.52,157.27,0.13,986,1.2000000000000002,230,0.9 +2015,6,19,16,30,7.800000000000001,1.03,0.0356,0.6900000000000001,0,0,0,0,7.4,0,0,0,0,0.29,97.47,143.95000000000002,0.13,986,1.2000000000000002,224,0.8 +2015,6,19,17,30,7.4,1.06,0.0369,0.6900000000000001,0,0,0,0,7.4,0,0,0,0,0.291,99.72,130.7,0.13,986,1.2000000000000002,218,0.8 +2015,6,19,18,30,7.2,1.07,0.0383,0.6900000000000001,0,0,0,1,7.2,0,0,0,0,0.292,100,117.63,0.13,986,1.2000000000000002,213,0.8 +2015,6,19,19,30,7,1.07,0.038900000000000004,0.6900000000000001,0,0,0,1,7,0,0,0,0,0.292,100,104.85000000000001,0.13,987,1.2000000000000002,208,0.8 +2015,6,19,20,30,7.800000000000001,1.03,0.0393,0.6900000000000001,0,0,0,1,6.9,0,0,0,0,0.292,94.23,92.5,0.13,988,1.2000000000000002,205,0.8 +2015,6,19,21,30,9.8,0.99,0.040100000000000004,0.6900000000000001,38,535,124,1,7.1000000000000005,38,535,0,124,0.293,83.14,80.73,0.13,988,1.2000000000000002,202,1 +2015,6,19,22,30,12.5,0.9400000000000001,0.0412,0.6900000000000001,57,741,309,1,7.2,57,741,0,309,0.294,70.18,70.13,0.13,988,1.2000000000000002,184,1.3 +2015,6,19,23,30,14,0.91,0.0422,0.6900000000000001,68,831,470,1,7.9,68,831,0,470,0.294,66.79,61.06,0.13,988,1.2000000000000002,170,1.5 +2015,6,20,0,30,16.5,0.78,0.046700000000000005,0.6900000000000001,76,869,582,1,8.3,76,869,0,582,0.295,58.45,54.370000000000005,0.13,987,1.2000000000000002,162,1.3 +2015,6,20,1,30,17.5,0.79,0.0473,0.6900000000000001,79,887,637,1,8.4,79,887,0,637,0.295,55.11,51,0.13,986,1.2000000000000002,164,1.2000000000000002 +2015,6,20,2,30,18,0.8,0.047,0.6900000000000001,78,880,625,1,8.3,78,880,0,625,0.295,53.2,51.63,0.13,986,1.3,164,1.1 +2015,6,20,3,30,18.1,0.93,0.0425,0.6900000000000001,72,862,552,0,8.1,72,862,0,552,0.296,52.21,56.120000000000005,0.13,986,1.3,158,1.1 +2015,6,20,4,30,17.8,0.92,0.0438,0.6900000000000001,66,804,423,1,7.9,66,804,0,423,0.297,52.47,63.64,0.13,986,1.3,146,1 +2015,6,20,5,30,16.7,0.9,0.046700000000000005,0.6900000000000001,54,679,250,1,8.1,54,679,0,250,0.299,56.870000000000005,73.26,0.13,986,1.4000000000000001,127,0.9 +2015,6,20,6,30,14.700000000000001,0.91,0.050100000000000006,0.6900000000000001,29,379,68,1,9.9,29,379,0,68,0.3,72.75,84.19,0.13,987,1.4000000000000001,112,0.8 +2015,6,20,7,30,13.200000000000001,0.92,0.0519,0.6900000000000001,0,0,0,1,9.3,0,0,0,0,0.3,77.06,96.24000000000001,0.13,988,1.4000000000000001,108,0.9 +2015,6,20,8,30,12.4,0.93,0.053000000000000005,0.6900000000000001,0,0,0,3,9.200000000000001,0,0,0,0,0.3,80.97,108.74000000000001,0.13,988,1.4000000000000001,113,0.9 +2015,6,20,9,30,11.600000000000001,0.93,0.0558,0.6900000000000001,0,0,0,1,9.200000000000001,0,0,0,0,0.298,85.4,121.63,0.13,989,1.4000000000000001,120,0.8 +2015,6,20,10,30,11,0.91,0.0591,0.6900000000000001,0,0,0,1,9.3,0,0,0,0,0.296,89.26,134.77,0.13,990,1.4000000000000001,127,0.8 +2015,6,20,11,30,10.4,0.88,0.062400000000000004,0.6900000000000001,0,0,0,1,9.4,0,0,0,0,0.294,93.46000000000001,148.05,0.13,990,1.4000000000000001,135,0.8 +2015,6,20,12,30,9.8,0.86,0.0659,0.6900000000000001,0,0,0,1,9.4,0,0,0,0,0.292,97.13,161.34,0.13,990,1.4000000000000001,145,0.9 +2015,6,20,13,30,9.200000000000001,0.87,0.0693,0.6900000000000001,0,0,0,1,9.200000000000001,0,0,0,0,0.292,100,173.87,0.13,990,1.3,154,0.9 +2015,6,20,14,30,8.700000000000001,0.89,0.0713,0.6900000000000001,0,0,0,0,8.700000000000001,0,0,0,0,0.293,100,170.34,0.13,990,1.3,160,0.9 +2015,6,20,15,30,8.200000000000001,0.91,0.0718,0.6900000000000001,0,0,0,0,8.200000000000001,0,0,0,0,0.293,100,157.32,0.13,990,1.2000000000000002,164,0.9 +2015,6,20,16,30,7.800000000000001,0.9,0.0713,0.6900000000000001,0,0,0,0,7.800000000000001,0,0,0,0,0.294,100,144.01,0.13,990,1.2000000000000002,167,0.9 +2015,6,20,17,30,7.4,0.86,0.0713,0.6900000000000001,0,0,0,0,7.4,0,0,0,0,0.294,100,130.75,0.13,990,1.2000000000000002,169,0.9 +2015,6,20,18,30,7.1000000000000005,0.78,0.0718,0.6900000000000001,0,0,0,0,7.1000000000000005,0,0,0,0,0.295,100,117.68,0.13,991,1.2000000000000002,171,0.9 +2015,6,20,19,30,7,0.7000000000000001,0.0714,0.6900000000000001,0,0,0,1,7,0,0,0,0,0.296,100,104.9,0.13,991,1.2000000000000002,173,0.9 +2015,6,20,20,30,7.800000000000001,0.62,0.0694,0.6900000000000001,0,0,0,3,7.800000000000001,0,0,0,0,0.296,100,92.55,0.13,992,1.2000000000000002,175,1 +2015,6,20,21,30,10,0.58,0.0668,0.6900000000000001,44,461,118,1,8.200000000000001,44,461,0,118,0.298,88.57000000000001,80.78,0.13,992,1.2000000000000002,173,1.5 +2015,6,20,22,30,12.5,0.56,0.0608,0.6900000000000001,65,701,303,1,8.700000000000001,65,701,0,303,0.299,77.57000000000001,70.17,0.13,993,1.2000000000000002,163,2 +2015,6,20,23,30,13.8,0.55,0.055900000000000005,0.6900000000000001,75,806,465,1,9.1,75,806,0,465,0.299,73.52,61.1,0.13,993,1.2000000000000002,156,2.2 +2015,6,21,0,30,16.3,0.48,0.0562,0.6900000000000001,82,849,577,1,9.200000000000001,82,849,0,577,0.299,62.99,54.39,0.13,992,1.3,144,2.3000000000000003 +2015,6,21,1,30,17.1,0.47000000000000003,0.0529,0.6900000000000001,83,872,632,1,9.200000000000001,83,872,0,632,0.3,59.54,51.02,0.13,992,1.3,141,2.2 +2015,6,21,2,30,17.6,0.48,0.0495,0.6900000000000001,81,873,623,1,9,81,873,0,623,0.301,57.050000000000004,51.63,0.13,991,1.3,139,2.2 +2015,6,21,3,30,17.6,0.54,0.0456,0.6900000000000001,75,853,551,1,8.9,75,853,0,551,0.3,56.65,56.1,0.13,991,1.3,136,2.2 +2015,6,21,4,30,17.3,0.51,0.047,0.6900000000000001,69,793,421,1,8.9,69,793,0,421,0.299,57.78,63.620000000000005,0.13,991,1.3,134,2.1 +2015,6,21,5,30,16.2,0.47000000000000003,0.05,0.6900000000000001,57,663,248,1,9.1,57,663,0,248,0.297,62.800000000000004,73.23,0.13,991,1.4000000000000001,132,1.5 +2015,6,21,6,30,14.4,0.43,0.0539,0.6900000000000001,31,349,67,1,9.9,31,349,0,67,0.295,74.28,84.15,0.13,991,1.4000000000000001,134,1 +2015,6,21,7,30,13.200000000000001,0.39,0.057600000000000005,0.6900000000000001,0,0,0,1,9.600000000000001,0,0,0,0,0.291,79.07000000000001,96.2,0.13,992,1.4000000000000001,140,0.9 +2015,6,21,8,30,12.600000000000001,0.34,0.060500000000000005,0.6900000000000001,0,0,0,1,9.8,0,0,0,0,0.28800000000000003,82.92,108.7,0.13,993,1.4000000000000001,147,0.9 +2015,6,21,9,30,12.100000000000001,0.3,0.0629,0.6900000000000001,0,0,0,1,9.9,0,0,0,0,0.28600000000000003,86.37,121.58,0.13,993,1.4000000000000001,150,0.9 +2015,6,21,10,30,11.8,0.29,0.06330000000000001,0.6900000000000001,0,0,0,0,10,0,0,0,0,0.28500000000000003,88.86,134.72,0.13,993,1.4000000000000001,153,0.9 +2015,6,21,11,30,11.3,0.27,0.06430000000000001,0.6900000000000001,0,0,0,1,10.200000000000001,0,0,0,0,0.28500000000000003,92.89,148,0.13,994,1.4000000000000001,160,0.8 +2015,6,21,12,30,10.9,0.27,0.0654,0.6900000000000001,0,0,0,3,10.3,0,0,0,0,0.28500000000000003,96.26,161.3,0.13,994,1.4000000000000001,167,0.8 +2015,6,21,13,30,10.4,0.27,0.0664,0.6900000000000001,0,0,0,3,10.4,0,0,0,0,0.28500000000000003,99.96000000000001,173.83,0.13,994,1.4000000000000001,169,0.8 +2015,6,21,14,30,10,0.28,0.0658,0.6900000000000001,0,0,0,3,10,0,0,0,0,0.28500000000000003,100,170.39000000000001,0.13,994,1.4000000000000001,170,0.8 +2015,6,21,15,30,9.700000000000001,0.31,0.06420000000000001,0.6900000000000001,0,0,0,3,9.700000000000001,0,0,0,0,0.28600000000000003,100,157.37,0.13,993,1.3,173,0.8 +2015,6,21,16,30,9.4,0.33,0.061000000000000006,0.6900000000000001,0,0,0,1,9.4,0,0,0,0,0.28600000000000003,100,144.05,0.13,993,1.3,178,0.8 +2015,6,21,17,30,9.200000000000001,0.35000000000000003,0.057300000000000004,0.6900000000000001,0,0,0,1,9.200000000000001,0,0,0,0,0.28600000000000003,100,130.8,0.13,993,1.3,181,0.8 +2015,6,21,18,30,9.1,0.38,0.056400000000000006,0.6900000000000001,0,0,0,3,9.1,0,0,0,0,0.28500000000000003,100,117.73,0.13,993,1.3,183,0.8 +2015,6,21,19,30,8.9,0.39,0.0555,0.6900000000000001,0,0,0,1,8.9,0,0,0,0,0.28400000000000003,100,104.94,0.13,994,1.4000000000000001,186,0.7000000000000001 +2015,6,21,20,30,9.5,0.39,0.0541,0.6900000000000001,0,0,0,3,9.3,0,0,0,0,0.28200000000000003,98.75,92.60000000000001,0.13,994,1.4000000000000001,188,0.9 +2015,6,21,21,30,11.100000000000001,0.42,0.0543,0.6900000000000001,42,475,118,3,9.600000000000001,55,45,3,62,0.28,90.19,80.82000000000001,0.13,995,1.4000000000000001,183,1.3 +2015,6,21,22,30,13.200000000000001,0.44,0.052500000000000005,0.6900000000000001,63,705,301,2,10.200000000000001,131,148,0,181,0.278,82.21000000000001,70.21000000000001,0.13,995,1.4000000000000001,167,1.6 +2015,6,21,23,30,14.4,0.46,0.049,0.6900000000000001,73,808,463,1,11,73,808,0,463,0.278,79.79,61.13,0.13,996,1.4000000000000001,158,1.8 +2015,6,22,0,30,16.8,0.42,0.054200000000000005,0.6900000000000001,81,845,573,1,11.3,81,845,0,573,0.276,69.87,54.410000000000004,0.13,995,1.5,136,1.9000000000000001 +2015,6,22,1,30,17.7,0.46,0.05,0.6900000000000001,82,870,629,2,11.3,197,515,0,521,0.275,66.1,51.02,0.13,994,1.5,126,1.9000000000000001 +2015,6,22,2,30,18.1,0.48,0.051300000000000005,0.6900000000000001,82,865,619,1,11.200000000000001,82,865,0,619,0.274,64.16,51.620000000000005,0.13,993,1.5,120,2 +2015,6,22,3,30,18.1,0.59,0.0528,0.6900000000000001,78,836,545,1,11.100000000000001,78,836,1,545,0.275,63.800000000000004,56.08,0.13,993,1.6,115,2 +2015,6,22,4,30,17.7,0.67,0.0528,0.6900000000000001,70,779,417,3,11.100000000000001,151,12,0,156,0.275,65.31,63.59,0.13,992,1.6,113,1.8 +2015,6,22,5,30,16.8,0.6900000000000001,0.049600000000000005,0.6900000000000001,56,665,248,2,11.4,86,0,0,86,0.276,70.55,73.19,0.13,993,1.6,117,1.2000000000000002 +2015,6,22,6,30,15.3,0.74,0.0512,0.6900000000000001,30,368,68,3,12.100000000000001,20,0,3,20,0.278,81.39,84.11,0.13,993,1.6,125,0.7000000000000001 +2015,6,22,7,30,14.200000000000001,0.75,0.0466,0.6900000000000001,0,0,0,3,11.700000000000001,0,0,0,0,0.279,84.72,96.16,0.13,994,1.5,133,0.7000000000000001 +2015,6,22,8,30,13.600000000000001,0.74,0.043000000000000003,0.6900000000000001,0,0,0,3,11.600000000000001,0,0,0,0,0.279,87.48,108.65,0.13,994,1.5,141,0.7000000000000001 +2015,6,22,9,30,13.200000000000001,0.72,0.041800000000000004,0.6900000000000001,0,0,0,3,11.5,0,0,0,0,0.28,89.14,121.54,0.13,994,1.6,147,0.7000000000000001 +2015,6,22,10,30,12.700000000000001,0.71,0.041100000000000005,0.6900000000000001,0,0,0,3,11.3,0,0,0,0,0.279,91.11,134.67000000000002,0.13,994,1.6,152,0.7000000000000001 +2015,6,22,11,30,12.100000000000001,0.6900000000000001,0.04,0.6900000000000001,0,0,0,1,11.100000000000001,0,0,0,0,0.279,93.69,147.96,0.13,994,1.6,155,0.7000000000000001 +2015,6,22,12,30,11.600000000000001,0.67,0.038900000000000004,0.6900000000000001,0,0,0,0,11,0,0,0,0,0.278,95.95,161.25,0.13,994,1.6,155,0.8 +2015,6,22,13,30,11.100000000000001,0.67,0.0378,0.6900000000000001,0,0,0,0,10.8,0,0,0,0,0.277,98.33,173.8,0.13,994,1.6,156,0.8 +2015,6,22,14,30,10.700000000000001,0.66,0.0371,0.6900000000000001,0,0,0,3,10.700000000000001,0,0,0,0,0.277,100,170.43,0.13,994,1.6,160,0.8 +2015,6,22,15,30,10.3,0.67,0.0373,0.6900000000000001,0,0,0,0,10.3,0,0,0,0,0.277,100,157.41,0.13,993,1.6,165,0.7000000000000001 +2015,6,22,16,30,9.9,0.6900000000000001,0.037200000000000004,0.6900000000000001,0,0,0,1,9.9,0,0,0,0,0.277,100,144.1,0.13,993,1.5,171,0.7000000000000001 +2015,6,22,17,30,9.5,0.7000000000000001,0.0368,0.6900000000000001,0,0,0,0,9.5,0,0,0,0,0.277,100,130.85,0.13,993,1.5,174,0.7000000000000001 +2015,6,22,18,30,9.200000000000001,0.71,0.0367,0.6900000000000001,0,0,0,0,9.200000000000001,0,0,0,0,0.277,100,117.77,0.13,993,1.5,174,0.7000000000000001 +2015,6,22,19,30,8.9,0.71,0.0358,0.6900000000000001,0,0,0,1,8.9,0,0,0,0,0.277,100,104.99000000000001,0.13,993,1.5,174,0.7000000000000001 +2015,6,22,20,30,9.5,0.7000000000000001,0.0347,0.6900000000000001,0,0,0,1,9.5,0,0,0,0,0.277,100,92.64,0.13,994,1.5,178,0.8 +2015,6,22,21,30,11.4,0.72,0.0359,0.6900000000000001,37,524,120,1,9.9,37,524,0,120,0.277,90.61,80.86,0.13,994,1.5,174,1 +2015,6,22,22,30,13.9,0.73,0.0369,0.6900000000000001,56,734,304,1,10.700000000000001,56,734,0,304,0.276,81.10000000000001,70.24,0.13,994,1.5,154,1.2000000000000002 +2015,6,22,23,30,15.200000000000001,0.73,0.036500000000000005,0.6900000000000001,65,826,464,1,11.5,65,826,0,464,0.275,78.5,61.15,0.13,995,1.5,139,1.3 +2015,6,23,0,30,17.7,0.36,0.0698,0.6900000000000001,89,822,567,1,11.600000000000001,89,822,0,567,0.274,67.59,54.43,0.13,994,1.6,112,1.5 +2015,6,23,1,30,18.5,0.39,0.0655,0.6900000000000001,90,848,623,1,11.600000000000001,90,848,0,623,0.274,63.99,51.02,0.13,993,1.6,106,1.6 +2015,6,23,2,30,18.6,0.44,0.063,0.6900000000000001,88,845,613,1,11.4,88,845,0,613,0.274,62.84,51.61,0.13,993,1.7000000000000002,102,1.5 +2015,6,23,3,30,18.5,0.5,0.0806,0.6900000000000001,91,799,537,3,11.100000000000001,212,32,0,230,0.274,62.09,56.050000000000004,0.13,992,1.7000000000000002,97,1.5 +2015,6,23,4,30,18.2,0.56,0.081,0.6900000000000001,82,736,410,3,11,162,25,0,173,0.275,62.82,63.550000000000004,0.13,992,1.7000000000000002,94,1.3 +2015,6,23,5,30,17.2,0.5700000000000001,0.0737,0.6900000000000001,64,618,243,3,11.100000000000001,60,0,0,60,0.275,67.53,73.15,0.13,992,1.7000000000000002,98,0.9 +2015,6,23,6,30,15.700000000000001,0.62,0.07060000000000001,0.6900000000000001,33,321,66,3,12,15,0,3,15,0.276,78.84,84.07000000000001,0.13,992,1.6,107,0.6000000000000001 +2015,6,23,7,30,14.4,0.64,0.0634,0.6900000000000001,0,0,0,3,11.5,0,0,0,0,0.276,82.58,96.11,0.13,993,1.6,116,0.7000000000000001 +2015,6,23,8,30,13.600000000000001,0.65,0.0572,0.6900000000000001,0,0,0,1,11.100000000000001,0,0,0,0,0.277,84.64,108.60000000000001,0.13,993,1.5,122,0.7000000000000001 +2015,6,23,9,30,12.9,0.66,0.0522,0.6900000000000001,0,0,0,0,10.8,0,0,0,0,0.277,87.28,121.49000000000001,0.13,994,1.5,126,0.7000000000000001 +2015,6,23,10,30,12.3,0.6900000000000001,0.047900000000000005,0.6900000000000001,0,0,0,0,10.5,0,0,0,0,0.278,88.86,134.62,0.13,993,1.5,127,0.8 +2015,6,23,11,30,11.8,0.71,0.044000000000000004,0.6900000000000001,0,0,0,0,10.200000000000001,0,0,0,0,0.278,90.2,147.91,0.13,993,1.4000000000000001,125,0.8 +2015,6,23,12,30,11.5,0.75,0.0412,0.6900000000000001,0,0,0,3,10,0,0,0,0,0.279,90.69,161.20000000000002,0.13,992,1.4000000000000001,124,0.8 +2015,6,23,13,30,11.4,0.79,0.039900000000000005,0.6900000000000001,0,0,0,1,9.9,0,0,0,0,0.279,90.4,173.75,0.13,992,1.4000000000000001,127,0.9 +2015,6,23,14,30,11.3,0.8,0.0388,0.6900000000000001,0,0,0,0,9.8,0,0,0,0,0.279,90.3,170.47,0.13,991,1.5,133,0.9 +2015,6,23,15,30,11.200000000000001,0.81,0.0396,0.6900000000000001,0,0,0,0,9.700000000000001,0,0,0,0,0.279,90.53,157.46,0.13,991,1.5,145,0.9 +2015,6,23,16,30,11,0.8200000000000001,0.0409,0.6900000000000001,0,0,0,0,9.8,0,0,0,0,0.279,92.04,144.15,0.13,991,1.5,156,0.9 +2015,6,23,17,30,10.8,0.81,0.0422,0.6900000000000001,0,0,0,0,9.9,0,0,0,0,0.279,93.86,130.89000000000001,0.13,991,1.6,165,0.8 +2015,6,23,18,30,10.5,0.78,0.0444,0.6900000000000001,0,0,0,0,9.9,0,0,0,0,0.278,96.29,117.82000000000001,0.13,991,1.7000000000000002,170,0.8 +2015,6,23,19,30,10.4,0.75,0.046,0.6900000000000001,0,0,0,3,10,0,0,0,0,0.278,97.58,105.03,0.13,992,1.7000000000000002,171,0.7000000000000001 +2015,6,23,20,30,10.9,0.73,0.0472,0.6900000000000001,0,0,0,3,10.200000000000001,0,0,0,0,0.278,95.25,92.68,0.13,992,1.8,169,0.8 +2015,6,23,21,30,12.100000000000001,0.72,0.0494,0.6900000000000001,39,485,116,3,10.600000000000001,33,0,3,33,0.278,90.67,80.89,0.13,992,1.8,165,0.9 +2015,6,23,22,30,13.8,0.72,0.0499,0.6900000000000001,60,700,296,3,11.100000000000001,100,0,0,100,0.279,83.54,70.27,0.13,993,1.9000000000000001,148,0.9 +2015,6,23,23,30,14.700000000000001,0.72,0.0497,0.6900000000000001,71,796,455,3,11.3,201,103,0,251,0.279,80.16,61.17,0.13,993,1.9000000000000001,135,0.9 +2015,6,24,0,30,16.900000000000002,0.5,0.1,0.6900000000000001,101,779,554,3,11.5,224,35,0,244,0.28,70.39,54.44,0.13,992,2,107,0.8 +2015,6,24,1,30,17.6,0.52,0.1022,0.6900000000000001,105,799,608,3,11.5,259,52,0,292,0.28,67.59,51.02,0.13,991,2,90,0.8 +2015,6,24,2,30,17.7,0.56,0.09870000000000001,0.6900000000000001,103,801,600,2,11.5,265,271,0,433,0.28,66.92,51.58,0.13,990,2,78,0.8 +2015,6,24,3,30,17.6,0.55,0.0806,0.6900000000000001,90,792,533,2,11.5,224,305,0,395,0.28,67.39,56.02,0.13,989,2,76,0.9 +2015,6,24,4,30,17.2,0.63,0.08610000000000001,0.6900000000000001,83,722,404,3,11.700000000000001,180,79,0,216,0.281,69.92,63.51,0.13,989,2.1,76,0.9 +2015,6,24,5,30,16.3,0.66,0.0833,0.6900000000000001,65,597,239,2,12,104,225,0,170,0.28200000000000003,75.48,73.10000000000001,0.13,989,2.1,77,0.7000000000000001 +2015,6,24,6,30,15,0.73,0.084,0.6900000000000001,34,294,65,1,12.8,34,294,0,65,0.28300000000000003,86.53,84.02,0.13,990,2.1,81,0.5 +2015,6,24,7,30,13.700000000000001,0.79,0.081,0.6900000000000001,0,0,0,3,12.5,0,0,0,0,0.28400000000000003,92.25,96.06,0.13,990,2.1,85,0.6000000000000001 +2015,6,24,8,30,13,0.8300000000000001,0.0765,0.6900000000000001,0,0,0,4,12.5,0,0,0,0,0.28400000000000003,96.61,108.55,0.13,990,2.1,89,0.6000000000000001 +2015,6,24,9,30,12.5,0.85,0.0753,0.6900000000000001,0,0,0,4,12.5,0,0,0,0,0.28400000000000003,99.91,121.43,0.13,990,2.1,95,0.6000000000000001 +2015,6,24,10,30,12.100000000000001,0.87,0.07400000000000001,0.6900000000000001,0,0,0,3,12.100000000000001,0,0,0,0,0.28400000000000003,100,134.57,0.13,990,2.1,102,0.7000000000000001 +2015,6,24,11,30,11.9,0.88,0.0719,0.6900000000000001,0,0,0,3,11.9,0,0,0,0,0.28400000000000003,100,147.85,0.13,989,2.2,111,0.7000000000000001 +2015,6,24,12,30,11.8,0.88,0.0702,0.6900000000000001,0,0,0,0,11.8,0,0,0,0,0.28500000000000003,100,161.15,0.13,989,2.2,126,0.6000000000000001 +2015,6,24,13,30,11.600000000000001,0.89,0.06810000000000001,0.6900000000000001,0,0,0,0,11.600000000000001,0,0,0,0,0.28600000000000003,100,173.70000000000002,0.13,989,2.2,147,0.6000000000000001 +2015,6,24,14,30,11.4,0.9,0.0661,0.6900000000000001,0,0,0,0,11.4,0,0,0,0,0.28600000000000003,100,170.51,0.13,988,2.2,166,0.7000000000000001 +2015,6,24,15,30,10.8,0.91,0.0658,0.6900000000000001,0,0,0,1,10.8,0,0,0,0,0.28600000000000003,100,157.5,0.13,988,2.2,180,0.7000000000000001 +2015,6,24,16,30,10.200000000000001,0.9,0.067,0.6900000000000001,0,0,0,1,10.200000000000001,0,0,0,0,0.28700000000000003,100,144.19,0.13,988,2.3000000000000003,183,0.8 +2015,6,24,17,30,9.8,0.88,0.06720000000000001,0.6900000000000001,0,0,0,1,9.8,0,0,0,0,0.28800000000000003,100,130.94,0.13,987,2.3000000000000003,182,0.8 +2015,6,24,18,30,9.5,0.87,0.0694,0.6900000000000001,0,0,0,3,9.5,0,0,0,0,0.29,100,117.86,0.13,988,2.3000000000000003,189,0.8 +2015,6,24,19,30,9.600000000000001,0.85,0.07590000000000001,0.6900000000000001,0,0,0,3,9.600000000000001,0,0,0,0,0.291,100,105.07000000000001,0.13,988,2.3000000000000003,200,0.7000000000000001 +2015,6,24,20,30,10.3,0.8300000000000001,0.08410000000000001,0.6900000000000001,0,0,0,4,10.3,0,0,0,0,0.292,100,92.71000000000001,0.13,989,2.4000000000000004,206,0.7000000000000001 +2015,6,24,21,30,11.600000000000001,0.84,0.08950000000000001,0.6900000000000001,45,398,108,7,11,21,0,3,21,0.293,95.92,80.92,0.13,989,2.4000000000000004,207,0.8 +2015,6,24,22,30,12.9,0.87,0.08800000000000001,0.6900000000000001,71,634,284,7,11.3,53,0,0,53,0.295,90.11,70.29,0.13,989,2.4000000000000004,216,1 +2015,6,24,23,30,13.600000000000001,0.88,0.0896,0.6900000000000001,85,737,440,7,11.9,135,0,0,135,0.295,89.45,61.19,0.13,989,2.4000000000000004,224,1 +2015,6,25,0,30,15.4,0.9400000000000001,0.10640000000000001,0.6900000000000001,99,771,547,8,12.4,252,205,0,372,0.297,82.13,54.44,0.13,989,2.5,233,1.2000000000000002 +2015,6,25,1,30,15.9,0.9400000000000001,0.1105,0.6900000000000001,104,788,600,8,12.5,279,104,0,344,0.301,80.32000000000001,51,0.13,988,2.5,233,1.4000000000000001 +2015,6,25,2,30,16.2,0.9500000000000001,0.11130000000000001,0.6900000000000001,104,784,592,7,12.5,278,149,0,371,0.306,78.66,51.550000000000004,0.13,988,2.5,230,1.4000000000000001 +2015,6,25,3,30,16.5,0.96,0.1041,0.6900000000000001,96,762,523,8,12.4,235,75,0,277,0.309,76.84,55.980000000000004,0.13,987,2.5,221,1.2000000000000002 +2015,6,25,4,30,16.400000000000002,1.01,0.0969,0.6900000000000001,84,709,400,8,12.5,153,386,0,325,0.311,77.58,63.46,0.13,987,2.4000000000000004,211,0.9 +2015,6,25,5,30,15.8,1.03,0.09140000000000001,0.6900000000000001,65,591,238,7,12.9,97,4,0,98,0.311,82.97,73.05,0.13,987,2.3000000000000003,206,0.6000000000000001 +2015,6,25,6,30,14.8,1.05,0.08940000000000001,0.6900000000000001,33,299,65,7,13,27,0,3,27,0.31,89.06,83.97,0.13,988,2.3000000000000003,207,0.7000000000000001 +2015,6,25,7,30,13.9,1.06,0.0833,0.6900000000000001,0,0,0,1,12.5,0,0,0,0,0.306,91.04,96.01,0.13,988,2.2,207,0.8 +2015,6,25,8,30,13.100000000000001,1.06,0.0781,0.6900000000000001,0,0,0,3,12.200000000000001,0,0,0,0,0.301,94.07000000000001,108.5,0.13,989,2.2,204,0.8 +2015,6,25,9,30,12.4,1.04,0.077,0.6900000000000001,0,0,0,3,11.9,0,0,0,0,0.294,96.91,121.38,0.13,990,2.2,202,0.8 +2015,6,25,10,30,12,1.01,0.0771,0.6900000000000001,0,0,0,4,11.8,0,0,0,0,0.289,98.57000000000001,134.52,0.13,990,2.2,203,0.8 +2015,6,25,11,30,11.600000000000001,0.97,0.0746,0.6900000000000001,0,0,0,1,11.600000000000001,0,0,0,0,0.28500000000000003,100,147.8,0.13,991,2.1,205,0.8 +2015,6,25,12,30,11.200000000000001,0.9400000000000001,0.0693,0.6900000000000001,0,0,0,0,11.200000000000001,0,0,0,0,0.28200000000000003,100,161.09,0.13,991,2.1,208,0.8 +2015,6,25,13,30,10.8,0.91,0.063,0.6900000000000001,0,0,0,0,10.8,0,0,0,0,0.28,100,173.65,0.13,990,2,207,0.9 +2015,6,25,14,30,10.4,0.87,0.057100000000000005,0.6900000000000001,0,0,0,1,10.4,0,0,0,0,0.279,100,170.54,0.13,990,1.9000000000000001,206,0.9 +2015,6,25,15,30,10.100000000000001,0.8300000000000001,0.0531,0.6900000000000001,0,0,0,1,10.100000000000001,0,0,0,0,0.279,100,157.54,0.13,990,1.9000000000000001,205,0.9 +2015,6,25,16,30,9.8,0.81,0.0511,0.6900000000000001,0,0,0,1,9.8,0,0,0,0,0.279,100,144.23,0.13,990,1.9000000000000001,203,0.9 +2015,6,25,17,30,9.5,0.8,0.0494,0.6900000000000001,0,0,0,1,9.5,0,0,0,0,0.28,100,130.98,0.13,990,1.9000000000000001,198,0.9 +2015,6,25,18,30,9.4,0.77,0.046700000000000005,0.6900000000000001,0,0,0,1,9.4,0,0,0,0,0.281,100,117.9,0.13,990,2,192,0.9 +2015,6,25,19,30,9.4,0.73,0.0441,0.6900000000000001,0,0,0,3,9.4,0,0,0,0,0.28300000000000003,100,105.10000000000001,0.13,991,2.1,188,0.9 +2015,6,25,20,30,10.4,0.66,0.043300000000000005,0.6900000000000001,0,0,0,1,10.4,0,0,0,0,0.28300000000000003,100,92.74,0.13,992,2.2,185,1 +2015,6,25,21,30,12.5,0.6,0.046400000000000004,0.6900000000000001,39,473,113,2,11.4,54,92,3,69,0.28300000000000003,92.89,80.95,0.13,993,2.3000000000000003,178,1.6 +2015,6,25,22,30,14.8,0.54,0.0526,0.6900000000000001,61,681,291,2,12.3,126,217,0,199,0.28300000000000003,85.24,70.31,0.13,993,2.3000000000000003,164,2.3000000000000003 +2015,6,25,23,30,15.9,0.5,0.0585,0.6900000000000001,75,769,446,1,13.3,75,769,0,446,0.28300000000000003,84.46000000000001,61.19,0.13,993,2.4000000000000004,155,2.7 +2015,6,26,0,30,17.900000000000002,0.49,0.07060000000000001,0.6900000000000001,87,803,554,1,13.600000000000001,87,803,0,554,0.28300000000000003,76.16,54.43,0.13,993,2.4000000000000004,144,3 +2015,6,26,1,30,18.6,0.52,0.0645,0.6900000000000001,88,830,610,1,13.600000000000001,88,830,1,610,0.28400000000000003,72.53,50.980000000000004,0.13,993,2.4000000000000004,140,3 +2015,6,26,2,30,18.900000000000002,0.52,0.06430000000000001,0.6900000000000001,87,828,602,3,13.3,261,60,1,298,0.28500000000000003,70.07000000000001,51.52,0.13,992,2.4000000000000004,138,3 +2015,6,26,3,30,18.900000000000002,0.52,0.0843,0.6900000000000001,92,778,527,3,13.100000000000001,226,51,0,255,0.28600000000000003,69.09,55.93,0.13,992,2.4000000000000004,137,2.9000000000000004 +2015,6,26,4,30,18.5,0.47000000000000003,0.0855,0.6900000000000001,83,711,402,3,13.100000000000001,155,376,0,323,0.28600000000000003,70.66,63.410000000000004,0.13,992,2.4000000000000004,138,2.6 +2015,6,26,5,30,17.5,0.42,0.0847,0.6900000000000001,67,580,237,1,13.200000000000001,67,580,0,237,0.28600000000000003,75.83,73,0.13,993,2.4000000000000004,142,1.9000000000000001 +2015,6,26,6,30,16.1,0.41000000000000003,0.0876,0.6900000000000001,36,267,64,2,13.4,35,110,3,47,0.28600000000000003,84.08,83.91,0.13,994,2.4000000000000004,149,1.3 +2015,6,26,7,30,15.100000000000001,0.41000000000000003,0.0886,0.6900000000000001,0,0,0,2,13.3,0,0,0,0,0.28600000000000003,89.23,95.95,0.13,995,2.3000000000000003,156,1.1 +2015,6,26,8,30,14.5,0.39,0.0921,0.6900000000000001,0,0,0,1,13.3,0,0,0,0,0.28500000000000003,92.65,108.44,0.13,996,2.3000000000000003,159,1.1 +2015,6,26,9,30,14,0.38,0.09920000000000001,0.6900000000000001,0,0,0,1,13.3,0,0,0,0,0.28500000000000003,95.60000000000001,121.33,0.13,996,2.3000000000000003,161,1 +2015,6,26,10,30,13.700000000000001,0.37,0.1038,0.6900000000000001,0,0,0,1,13.3,0,0,0,0,0.28400000000000003,97.58,134.46,0.13,996,2.3000000000000003,160,1 +2015,6,26,11,30,13.4,0.35000000000000003,0.1068,0.6900000000000001,0,0,0,1,13.3,0,0,0,0,0.28400000000000003,99.63,147.75,0.13,996,2.2,161,1 +2015,6,26,12,30,13.200000000000001,0.35000000000000003,0.11130000000000001,0.6900000000000001,0,0,0,1,13.200000000000001,0,0,0,0,0.28500000000000003,100,161.04,0.13,996,2.2,161,1 +2015,6,26,13,30,13.200000000000001,0.35000000000000003,0.108,0.6900000000000001,0,0,0,3,13.200000000000001,0,0,0,0,0.28600000000000003,100,173.59,0.13,996,2.2,161,1 +2015,6,26,14,30,13.100000000000001,0.35000000000000003,0.10020000000000001,0.6900000000000001,0,0,0,3,13.100000000000001,0,0,0,0,0.28700000000000003,100,170.57,0.13,996,2.1,161,1 +2015,6,26,15,30,13,0.38,0.0964,0.6900000000000001,0,0,0,3,13,0,0,0,0,0.28800000000000003,100,157.58,0.13,996,2.1,162,1 +2015,6,26,16,30,12.8,0.4,0.0863,0.6900000000000001,0,0,0,3,12.8,0,0,0,0,0.28800000000000003,100,144.27,0.13,995,2.1,163,1 +2015,6,26,17,30,12.5,0.42,0.0762,0.6900000000000001,0,0,0,3,12.5,0,0,0,0,0.28700000000000003,100,131.01,0.13,995,2,164,1 +2015,6,26,18,30,12.100000000000001,0.45,0.0713,0.6900000000000001,0,0,0,3,12.100000000000001,0,0,0,0,0.28600000000000003,100,117.93,0.13,996,2,167,0.9 +2015,6,26,19,30,11.8,0.46,0.06620000000000001,0.6900000000000001,0,0,0,4,11.8,0,0,0,0,0.28500000000000003,100,105.13,0.13,996,1.9000000000000001,169,0.9 +2015,6,26,20,30,12.3,0.46,0.062200000000000005,0.6900000000000001,0,0,0,4,12.3,0,0,0,0,0.28300000000000003,100,92.77,0.13,997,1.9000000000000001,169,1.1 +2015,6,26,21,30,13.8,0.48,0.0616,0.6900000000000001,42,443,112,1,12.600000000000001,42,443,0,112,0.28200000000000003,92.75,80.97,0.13,997,1.9000000000000001,164,1.6 +2015,6,26,22,30,15.600000000000001,0.49,0.0585,0.6900000000000001,64,680,293,1,13.100000000000001,64,680,0,293,0.28200000000000003,85.27,70.32000000000001,0.13,998,1.9000000000000001,154,2.2 +2015,6,26,23,30,16.5,0.5,0.055,0.6900000000000001,74,785,452,1,13.700000000000001,74,785,0,452,0.28200000000000003,83.27,61.2,0.13,998,1.9000000000000001,148,2.3000000000000003 +2015,6,27,0,30,18.5,0.38,0.0838,0.6900000000000001,95,794,557,1,13.9,95,794,0,557,0.281,74.57000000000001,54.42,0.13,997,2,136,2.5 +2015,6,27,1,30,19.200000000000003,0.41000000000000003,0.0789,0.6900000000000001,96,819,612,1,13.9,96,819,0,612,0.281,71.35000000000001,50.95,0.13,996,2.1,131,2.4000000000000004 +2015,6,27,2,30,19.5,0.42,0.0698,0.6900000000000001,91,827,606,1,13.8,91,827,0,606,0.281,69.67,51.480000000000004,0.13,995,2.1,128,2.3000000000000003 +2015,6,27,3,30,19.5,0.54,0.062200000000000005,0.6900000000000001,82,811,537,3,13.8,43,0,0,43,0.28,69.43,55.88,0.13,995,2.1,127,2.2 +2015,6,27,4,30,19.1,0.56,0.0618,0.6900000000000001,74,753,412,1,13.700000000000001,74,753,0,412,0.28,70.93,63.35,0.13,995,2.1,127,2 +2015,6,27,5,30,18.2,0.54,0.0604,0.6900000000000001,60,633,245,2,13.8,85,0,0,85,0.28,75.47,72.94,0.13,995,2.1,129,1.4000000000000001 +2015,6,27,6,30,16.8,0.53,0.0678,0.6900000000000001,33,321,68,1,14.200000000000001,33,321,0,68,0.28,84.78,83.85000000000001,0.13,995,2.1,134,0.9 +2015,6,27,7,30,15.8,0.54,0.0668,0.6900000000000001,0,0,0,3,14,0,0,0,0,0.28,89.11,95.89,0.13,996,2.1,141,0.8 +2015,6,27,8,30,15.200000000000001,0.53,0.064,0.6900000000000001,0,0,0,2,13.9,0,0,0,0,0.28,91.95,108.38,0.13,997,2,147,0.8 +2015,6,27,9,30,14.700000000000001,0.54,0.06380000000000001,0.6900000000000001,0,0,0,1,13.8,0,0,0,0,0.28,94.3,121.27,0.13,997,2,151,0.8 +2015,6,27,10,30,14.200000000000001,0.55,0.064,0.6900000000000001,0,0,0,3,13.700000000000001,0,0,0,0,0.279,96.97,134.41,0.13,998,2.1,153,0.7000000000000001 +2015,6,27,11,30,13.700000000000001,0.55,0.0635,0.6900000000000001,0,0,0,3,13.700000000000001,0,0,0,0,0.279,99.75,147.69,0.13,998,2.1,153,0.7000000000000001 +2015,6,27,12,30,13.3,0.5700000000000001,0.06420000000000001,0.6900000000000001,0,0,0,3,13.3,0,0,0,0,0.278,100,160.98,0.13,998,2,152,0.7000000000000001 +2015,6,27,13,30,12.8,0.58,0.0626,0.6900000000000001,0,0,0,3,12.8,0,0,0,0,0.277,100,173.53,0.13,997,2,151,0.7000000000000001 +2015,6,27,14,30,12.5,0.58,0.059300000000000005,0.6900000000000001,0,0,0,3,12.5,0,0,0,0,0.277,100,170.6,0.13,997,2,151,0.7000000000000001 +2015,6,27,15,30,12.200000000000001,0.61,0.0584,0.6900000000000001,0,0,0,3,12.200000000000001,0,0,0,0,0.277,100,157.62,0.13,996,2,152,0.7000000000000001 +2015,6,27,16,30,12,0.62,0.0574,0.6900000000000001,0,0,0,1,12,0,0,0,0,0.276,100,144.31,0.13,996,1.9000000000000001,154,0.7000000000000001 +2015,6,27,17,30,11.9,0.62,0.055400000000000005,0.6900000000000001,0,0,0,3,11.9,0,0,0,0,0.276,100,131.05,0.13,996,1.9000000000000001,156,0.7000000000000001 +2015,6,27,18,30,11.8,0.64,0.0557,0.6900000000000001,0,0,0,1,11.8,0,0,0,0,0.276,100,117.96000000000001,0.13,996,1.9000000000000001,158,0.7000000000000001 +2015,6,27,19,30,11.8,0.66,0.054,0.6900000000000001,0,0,0,3,11.8,0,0,0,0,0.275,100,105.16,0.13,997,1.9000000000000001,159,0.7000000000000001 +2015,6,27,20,30,12.5,0.68,0.0512,0.6900000000000001,0,0,0,1,12.4,0,0,0,0,0.275,99.13,92.79,0.13,998,1.9000000000000001,160,0.8 +2015,6,27,21,30,14,0.71,0.0489,0.6900000000000001,39,479,114,1,13,39,479,0,114,0.275,93.73,80.98,0.13,998,1.9000000000000001,156,1.1 +2015,6,27,22,30,15.8,0.75,0.044700000000000004,0.6900000000000001,58,710,297,1,13.9,58,710,0,297,0.275,88.62,70.33,0.13,998,1.8,144,1.3 +2015,6,27,23,30,16.8,0.79,0.0391,0.6900000000000001,66,813,458,1,14.9,66,813,0,458,0.275,88.85000000000001,61.19,0.13,998,1.8,134,1.4000000000000001 +2015,6,28,0,30,19.200000000000003,0.48,0.0534,0.6900000000000001,80,838,568,1,15,80,838,0,568,0.274,76.85000000000001,54.4,0.13,997,1.8,118,1.6 +2015,6,28,1,30,20.200000000000003,0.59,0.041600000000000005,0.6900000000000001,77,872,627,1,14.600000000000001,77,872,0,627,0.274,70.02,50.92,0.13,996,1.8,116,1.6 +2015,6,28,2,30,20.6,0.6900000000000001,0.034800000000000005,0.6900000000000001,72,876,618,1,14.100000000000001,72,876,0,618,0.273,66.26,51.43,0.13,996,1.9000000000000001,114,1.6 +2015,6,28,3,30,20.6,0.62,0.0431,0.6900000000000001,73,841,546,1,13.8,73,841,0,546,0.273,64.94,55.82,0.13,995,1.9000000000000001,111,1.6 +2015,6,28,4,30,20.3,0.66,0.043300000000000005,0.6900000000000001,66,786,420,1,13.600000000000001,66,786,0,420,0.274,65.55,63.29,0.13,995,1.9000000000000001,108,1.5 +2015,6,28,5,30,19.3,0.68,0.044000000000000004,0.6900000000000001,54,668,251,2,13.600000000000001,94,339,0,194,0.273,69.78,72.88,0.13,995,2,102,1.1 +2015,6,28,6,30,17.6,0.74,0.049100000000000005,0.6900000000000001,31,377,71,2,14.4,35,147,3,51,0.273,81.58,83.79,0.13,996,2,96,0.7000000000000001 +2015,6,28,7,30,16.400000000000002,0.78,0.048600000000000004,0.6900000000000001,0,0,0,1,14,0,0,0,0,0.273,85.8,95.83,0.13,996,2,92,0.7000000000000001 +2015,6,28,8,30,15.9,0.76,0.0439,0.6900000000000001,0,0,0,1,14.100000000000001,0,0,0,0,0.273,89.15,108.32000000000001,0.13,997,2,91,0.7000000000000001 +2015,6,28,9,30,15.5,0.81,0.047,0.6900000000000001,0,0,0,3,14.200000000000001,0,0,0,0,0.273,91.76,121.21000000000001,0.13,997,2,93,0.7000000000000001 +2015,6,28,10,30,15.100000000000001,0.8300000000000001,0.0475,0.6900000000000001,0,0,0,3,14.200000000000001,0,0,0,0,0.273,94.23,134.35,0.13,998,2,97,0.7000000000000001 +2015,6,28,11,30,14.700000000000001,0.81,0.0443,0.6900000000000001,0,0,0,3,14.200000000000001,0,0,0,0,0.272,96.89,147.63,0.13,998,2,102,0.7000000000000001 +2015,6,28,12,30,14.4,0.85,0.0471,0.6900000000000001,0,0,0,1,14.200000000000001,0,0,0,0,0.272,98.86,160.92000000000002,0.13,997,2,108,0.7000000000000001 +2015,6,28,13,30,14.100000000000001,0.87,0.047900000000000005,0.6900000000000001,0,0,0,3,14.100000000000001,0,0,0,0,0.273,100,173.47,0.13,997,2,112,0.7000000000000001 +2015,6,28,14,30,13.9,0.86,0.0449,0.6900000000000001,0,0,0,3,13.9,0,0,0,0,0.273,100,170.62,0.13,997,2,117,0.7000000000000001 +2015,6,28,15,30,13.700000000000001,0.86,0.0449,0.6900000000000001,0,0,0,3,13.700000000000001,0,0,0,0,0.273,100,157.65,0.13,996,2,123,0.7000000000000001 +2015,6,28,16,30,13.5,0.86,0.044000000000000004,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.272,100,144.34,0.13,996,2,131,0.7000000000000001 +2015,6,28,17,30,13.3,0.86,0.0415,0.6900000000000001,0,0,0,0,13.3,0,0,0,0,0.272,100,131.08,0.13,996,1.9000000000000001,138,0.7000000000000001 +2015,6,28,18,30,13.200000000000001,0.9,0.0429,0.6900000000000001,0,0,0,1,13.200000000000001,0,0,0,0,0.271,100,117.99000000000001,0.13,997,1.9000000000000001,144,0.7000000000000001 +2015,6,28,19,30,13.100000000000001,0.92,0.040600000000000004,0.6900000000000001,0,0,0,3,13.100000000000001,0,0,0,0,0.27,100,105.18,0.13,997,1.9000000000000001,149,0.7000000000000001 +2015,6,28,20,30,13.600000000000001,0.93,0.034800000000000005,0.6900000000000001,0,0,0,3,13.5,0,0,0,0,0.268,99.5,92.81,0.13,998,2,152,0.8 +2015,6,28,21,30,14.600000000000001,0.99,0.0364,0.6900000000000001,36,511,116,3,14.100000000000001,25,0,3,25,0.266,96.86,80.99,0.13,998,2,150,1.2000000000000002 +2015,6,28,22,30,15.8,1.02,0.033800000000000004,0.6900000000000001,53,726,298,3,14.700000000000001,76,0,0,76,0.264,93.47,70.33,0.13,998,2,142,1.5 +2015,6,28,23,30,16.3,1.08,0.0268,0.6900000000000001,60,826,458,3,15.200000000000001,106,0,0,106,0.264,93.22,61.18,0.13,998,2,137,1.6 +2015,6,29,0,30,17.8,0.44,0.083,0.6900000000000001,94,795,557,3,15.200000000000001,180,7,0,184,0.263,85.02,54.370000000000005,0.13,997,2.1,122,1.8 +2015,6,29,1,30,18.400000000000002,0.51,0.0781,0.6900000000000001,95,823,614,3,15,188,7,0,193,0.262,80.62,50.88,0.13,996,2.1,115,1.8 +2015,6,29,2,30,18.7,0.54,0.07350000000000001,0.6900000000000001,92,824,606,3,14.8,140,0,0,140,0.262,77.87,51.370000000000005,0.13,996,2.2,109,1.8 +2015,6,29,3,30,18.7,0.8200000000000001,0.058300000000000005,0.6900000000000001,79,819,540,3,14.600000000000001,222,43,0,246,0.261,77.04,55.76,0.13,995,2.2,106,1.9000000000000001 +2015,6,29,4,30,18.3,0.81,0.0618,0.6900000000000001,73,757,414,3,14.5,35,0,0,35,0.261,78.49,63.22,0.13,995,2.2,104,1.7000000000000002 +2015,6,29,5,30,17.2,0.77,0.0597,0.6900000000000001,59,640,248,3,14.8,111,72,1,132,0.261,85.89,72.81,0.13,995,2.2,104,1.3 +2015,6,29,6,30,15.8,0.79,0.057600000000000005,0.6900000000000001,32,359,71,3,15.200000000000001,32,0,3,32,0.261,96.11,83.73,0.13,995,2.2,107,0.9 +2015,6,29,7,30,14.8,0.76,0.057800000000000004,0.6900000000000001,0,0,0,4,14.600000000000001,0,0,0,0,0.261,98.8,95.77,0.13,995,2.1,110,0.8 +2015,6,29,8,30,14.4,0.73,0.0579,0.6900000000000001,0,0,0,4,14.4,0,0,0,0,0.261,99.88,108.26,0.13,996,2.1,116,0.7000000000000001 +2015,6,29,9,30,14,0.71,0.0579,0.6900000000000001,0,0,0,3,14,0,0,0,0,0.26,100,121.15,0.13,996,2.1,123,0.7000000000000001 +2015,6,29,10,30,13.700000000000001,0.7000000000000001,0.0582,0.6900000000000001,0,0,0,4,13.700000000000001,0,0,0,0,0.26,100,134.29,0.13,996,2.1,128,0.7000000000000001 +2015,6,29,11,30,13.5,0.68,0.0577,0.6900000000000001,0,0,0,4,13.5,0,0,0,0,0.261,100,147.58,0.13,996,2.1,131,0.7000000000000001 +2015,6,29,12,30,13.3,0.68,0.057300000000000004,0.6900000000000001,0,0,0,4,13.3,0,0,0,0,0.261,100,160.87,0.13,996,2,135,0.7000000000000001 +2015,6,29,13,30,13,0.67,0.0558,0.6900000000000001,0,0,0,4,13,0,0,0,0,0.261,100,173.4,0.13,996,2,138,0.7000000000000001 +2015,6,29,14,30,12.700000000000001,0.66,0.0538,0.6900000000000001,0,0,0,4,12.700000000000001,0,0,0,0,0.261,100,170.63,0.13,995,2,144,0.7000000000000001 +2015,6,29,15,30,12.4,0.68,0.053000000000000005,0.6900000000000001,0,0,0,4,12.4,0,0,0,0,0.26,100,157.68,0.13,995,2,151,0.7000000000000001 +2015,6,29,16,30,12.100000000000001,0.6900000000000001,0.0511,0.6900000000000001,0,0,0,4,12.100000000000001,0,0,0,0,0.26,100,144.37,0.13,995,2,157,0.7000000000000001 +2015,6,29,17,30,11.8,0.7000000000000001,0.0482,0.6900000000000001,0,0,0,3,11.8,0,0,0,0,0.259,100,131.11,0.13,995,2,158,0.7000000000000001 +2015,6,29,18,30,11.4,0.73,0.0442,0.6900000000000001,0,0,0,4,11.4,0,0,0,0,0.259,100,118.02,0.13,995,2,157,0.7000000000000001 +2015,6,29,19,30,11.200000000000001,0.77,0.04,0.6900000000000001,0,0,0,1,11.200000000000001,0,0,0,0,0.258,100,105.21000000000001,0.13,995,2,155,0.7000000000000001 +2015,6,29,20,30,11.8,0.81,0.0367,0.6900000000000001,0,0,0,1,11.3,0,0,0,0,0.257,96.75,92.83,0.13,995,2,155,0.8 +2015,6,29,21,30,13.4,0.85,0.034800000000000005,0.6900000000000001,36,513,116,1,12.200000000000001,36,513,0,116,0.257,92.54,81,0.13,995,2,157,0.9 +2015,6,29,22,30,15.200000000000001,0.88,0.0341,0.6900000000000001,54,725,298,2,13.3,116,12,0,120,0.257,88.47,70.33,0.13,995,2,146,1.2000000000000002 +2015,6,29,23,30,16.2,0.9,0.0332,0.6900000000000001,63,818,458,1,14.100000000000001,63,818,0,458,0.257,87.36,61.17,0.13,995,2,134,1.2000000000000002 +2015,6,30,0,30,18.5,0.65,0.0543,0.6900000000000001,80,833,565,1,13.9,80,833,0,565,0.257,74.38,54.34,0.13,994,2.1,118,1.2000000000000002 +2015,6,30,1,30,19.400000000000002,0.6900000000000001,0.053000000000000005,0.6900000000000001,82,852,619,1,13.200000000000001,82,852,0,619,0.257,67.43,50.83,0.13,993,2.2,118,1.2000000000000002 +2015,6,30,2,30,19.8,0.73,0.053500000000000006,0.6900000000000001,81,849,612,1,12.8,81,849,0,612,0.257,63.84,51.31,0.13,992,2.2,115,1.2000000000000002 +2015,6,30,3,30,19.900000000000002,0.87,0.044700000000000004,0.6900000000000001,73,833,543,1,12.600000000000001,73,833,0,543,0.257,62.6,55.69,0.13,992,2.3000000000000003,109,1.2000000000000002 +2015,6,30,4,30,19.6,0.88,0.048,0.6900000000000001,67,775,417,1,12.4,67,775,0,417,0.257,63.33,63.15,0.13,991,2.3000000000000003,102,1.2000000000000002 +2015,6,30,5,30,18.7,0.9,0.0505,0.6900000000000001,55,655,250,8,12.600000000000001,76,485,0,220,0.257,67.75,72.74,0.13,991,2.4000000000000004,97,0.8 +2015,6,30,6,30,17.1,0.93,0.058100000000000006,0.6900000000000001,32,362,72,8,13.700000000000001,33,291,3,65,0.259,80.39,83.66,0.13,992,2.4000000000000004,92,0.6000000000000001 +2015,6,30,7,30,15.9,0.9500000000000001,0.063,0.6900000000000001,0,0,0,8,13.200000000000001,0,0,0,0,0.26,83.85000000000001,95.7,0.13,992,2.4000000000000004,88,0.7000000000000001 +2015,6,30,8,30,15.3,0.96,0.0637,0.6900000000000001,0,0,0,8,13.100000000000001,0,0,0,0,0.261,86.62,108.2,0.13,993,2.5,87,0.7000000000000001 +2015,6,30,9,30,15,0.9500000000000001,0.06620000000000001,0.6900000000000001,0,0,0,1,12.9,0,0,0,0,0.261,87.45,121.09,0.13,993,2.5,90,0.7000000000000001 +2015,6,30,10,30,14.8,0.93,0.0698,0.6900000000000001,0,0,0,1,12.8,0,0,0,0,0.26,88.08,134.23,0.13,993,2.5,94,0.7000000000000001 +2015,6,30,11,30,14.700000000000001,0.92,0.07200000000000001,0.6900000000000001,0,0,0,3,12.8,0,0,0,0,0.26,88.58,147.52,0.13,993,2.5,102,0.6000000000000001 +2015,6,30,12,30,14.600000000000001,0.92,0.0719,0.6900000000000001,0,0,0,1,12.8,0,0,0,0,0.26,88.93,160.8,0.13,992,2.5,124,0.5 +2015,6,30,13,30,14.200000000000001,0.9400000000000001,0.07050000000000001,0.6900000000000001,0,0,0,1,12.8,0,0,0,0,0.261,91.04,173.33,0.13,992,2.5,156,0.5 +2015,6,30,14,30,13.600000000000001,0.96,0.0709,0.6900000000000001,0,0,0,1,12.700000000000001,0,0,0,0,0.263,94.52,170.65,0.13,992,2.5,182,0.6000000000000001 +2015,6,30,15,30,12.9,0.97,0.07440000000000001,0.6900000000000001,0,0,0,1,12.700000000000001,0,0,0,0,0.264,98.86,157.71,0.13,991,2.6,196,0.7000000000000001 +2015,6,30,16,30,12.5,0.96,0.0794,0.6900000000000001,0,0,0,4,12.5,0,0,0,0,0.266,100,144.4,0.13,991,2.6,202,0.7000000000000001 +2015,6,30,17,30,12.200000000000001,0.9500000000000001,0.0811,0.6900000000000001,0,0,0,7,12.200000000000001,0,0,0,0,0.267,100,131.14000000000001,0.13,991,2.6,204,0.7000000000000001 +2015,6,30,18,30,12,0.9500000000000001,0.0813,0.6900000000000001,0,0,0,8,12,0,0,0,0,0.269,100,118.04,0.13,991,2.6,208,0.7000000000000001 +2015,6,30,19,30,11.9,0.9400000000000001,0.0825,0.6900000000000001,0,0,0,3,11.9,0,0,0,0,0.27,100,105.22,0.13,991,2.6,212,0.7000000000000001 +2015,6,30,20,30,12.3,0.93,0.0838,0.6900000000000001,0,0,0,3,12.3,0,0,0,0,0.27,100,92.84,0.13,992,2.6,218,0.7000000000000001 +2015,6,30,21,30,13.600000000000001,0.9400000000000001,0.0907,0.6900000000000001,45,395,106,4,12.600000000000001,50,0,3,50,0.27,93.9,81.01,0.13,992,2.6,223,0.8 +2015,6,30,22,30,15.100000000000001,0.9500000000000001,0.09720000000000001,0.6900000000000001,73,622,282,8,12.8,127,200,0,195,0.269,86.12,70.32000000000001,0.13,992,2.5,229,0.9 +2015,6,30,23,30,15.8,0.97,0.10010000000000001,0.6900000000000001,88,726,439,3,13,202,118,0,259,0.269,83.7,61.14,0.13,992,2.5,232,0.8 +2015,7,1,0,30,18.1,0.98,0.09530000000000001,0.67,95,786,554,1,13.100000000000001,95,786,0,554,0.268,72.74,54.300000000000004,0.13,991,2.4000000000000004,245,0.9 +2015,7,1,1,30,19,1.03,0.09390000000000001,0.67,98,812,611,1,13,98,812,0,611,0.268,68.02,50.77,0.13,990,2.3000000000000003,251,0.9 +2015,7,1,2,30,19.5,1.07,0.0903,0.67,96,816,606,1,12.5,96,816,0,606,0.268,63.95,51.24,0.13,989,2.2,251,1 +2015,7,1,3,30,19.900000000000002,1.03,0.0741,0.67,85,808,541,1,12.200000000000001,85,808,0,541,0.268,61.03,55.620000000000005,0.13,988,2.1,247,1 +2015,7,1,4,30,20,1.1,0.06910000000000001,0.67,75,759,418,1,11.9,75,759,0,418,0.268,59.480000000000004,63.08,0.13,988,2,242,0.9 +2015,7,1,5,30,19.3,1.12,0.0651,0.67,59,647,252,1,11.9,59,647,0,252,0.268,62.160000000000004,72.66,0.13,988,2,240,0.7000000000000001 +2015,7,1,6,30,17.900000000000002,1.1500000000000001,0.0636,0.67,32,373,74,1,12.700000000000001,32,373,0,74,0.269,71.48,83.59,0.13,988,1.9000000000000001,242,0.4 +2015,7,1,7,30,16.7,1.18,0.0613,0.67,0,0,0,0,11.3,0,0,0,0,0.269,70.65,95.63,0.13,988,1.8,245,0.5 +2015,7,1,8,30,15.700000000000001,1.21,0.0585,0.67,0,0,0,1,10.9,0,0,0,0,0.269,73.19,108.13,0.13,989,1.7000000000000002,249,0.6000000000000001 +2015,7,1,9,30,14.4,1.24,0.056600000000000004,0.67,0,0,0,1,10.600000000000001,0,0,0,0,0.27,78.17,121.03,0.13,989,1.6,250,0.7000000000000001 +2015,7,1,10,30,13.100000000000001,1.26,0.0545,0.67,0,0,0,1,10.5,0,0,0,0,0.271,84.31,134.17000000000002,0.13,990,1.6,249,0.8 +2015,7,1,11,30,12.200000000000001,1.28,0.0521,0.67,0,0,0,0,10.3,0,0,0,0,0.271,87.99,147.46,0.13,990,1.5,247,0.8 +2015,7,1,12,30,11.600000000000001,1.3,0.049300000000000004,0.67,0,0,0,1,10,0,0,0,0,0.271,89.64,160.74,0.13,990,1.4000000000000001,245,0.8 +2015,7,1,13,30,11,1.3,0.0472,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.272,91.36,173.25,0.13,989,1.3,243,0.8 +2015,7,1,14,30,10.3,1.3,0.046,0.67,0,0,0,0,9.3,0,0,0,0,0.272,93.78,170.66,0.13,989,1.2000000000000002,242,0.8 +2015,7,1,15,30,9.700000000000001,1.31,0.0446,0.67,0,0,0,0,9,0,0,0,0,0.272,95.23,157.73,0.13,988,1.2000000000000002,242,0.8 +2015,7,1,16,30,9.1,1.31,0.0439,0.67,0,0,0,0,8.6,0,0,0,0,0.271,96.81,144.43,0.13,988,1.1,243,0.8 +2015,7,1,17,30,8.5,1.32,0.044000000000000004,0.67,0,0,0,0,8.3,0,0,0,0,0.272,98.78,131.16,0.13,988,1.1,244,0.8 +2015,7,1,18,30,8,1.33,0.0441,0.67,0,0,0,0,8,0,0,0,0,0.272,100,118.06,0.13,988,1.1,246,0.8 +2015,7,1,19,30,7.6000000000000005,1.33,0.0443,0.67,0,0,0,0,7.6000000000000005,0,0,0,0,0.273,100,105.24000000000001,0.13,989,1.1,248,0.8 +2015,7,1,20,30,8.1,1.33,0.0446,0.67,0,0,0,1,7.5,0,0,0,0,0.273,95.74000000000001,92.84,0.13,990,1.1,250,1 +2015,7,1,21,30,10.100000000000001,1.33,0.0439,0.67,37,534,121,1,7.4,37,534,0,121,0.272,83.36,81,0.13,990,1,251,1.5 +2015,7,1,22,30,12.600000000000001,1.34,0.0424,0.67,56,749,309,1,7.2,56,749,0,309,0.272,69.86,70.31,0.13,990,1,247,1.9000000000000001 +2015,7,1,23,30,13.9,1.35,0.0403,0.67,66,844,473,1,7,66,844,0,473,0.272,62.93,61.120000000000005,0.13,990,1,245,2.1 +2015,7,2,0,30,16.6,1.1300000000000001,0.042800000000000005,0.67,73,889,592,0,6.2,73,889,0,592,0.271,50.29,54.26,0.13,988,0.9,252,2.1 +2015,7,2,1,30,17.8,1.12,0.041600000000000005,0.67,75,908,650,1,5.2,75,908,0,650,0.272,43.56,50.71,0.13,987,0.9,255,2.2 +2015,7,2,2,30,18.400000000000002,1.11,0.0407,0.67,75,912,646,8,4.3,187,542,0,527,0.272,39.38,51.17,0.13,986,0.8,254,2.3000000000000003 +2015,7,2,3,30,18.400000000000002,1.09,0.0425,0.67,72,887,574,8,3.6,221,340,0,413,0.272,37.5,55.54,0.13,985,0.8,251,2.4000000000000004 +2015,7,2,4,30,17.8,1.1,0.0438,0.67,66,832,444,1,3.3000000000000003,66,832,0,444,0.273,38,63,0.13,985,0.8,247,2.3000000000000003 +2015,7,2,5,30,16.1,1.1,0.043500000000000004,0.67,54,723,270,1,3.9000000000000004,54,723,0,270,0.274,44.11,72.59,0.13,986,0.8,245,1.8 +2015,7,2,6,30,13.5,1.08,0.043500000000000004,0.67,31,450,82,3,4.7,34,0,3,34,0.274,55.29,83.52,0.13,986,0.8,245,1.3 +2015,7,2,7,30,11.600000000000001,1.04,0.0436,0.67,0,0,0,0,4,0,0,0,0,0.275,59.53,95.56,0.13,987,0.7000000000000001,244,1.2000000000000002 +2015,7,2,8,30,10.5,1.01,0.043000000000000003,0.67,0,0,0,0,3.6,0,0,0,0,0.275,62.51,108.07000000000001,0.13,988,0.7000000000000001,242,1.2000000000000002 +2015,7,2,9,30,9.600000000000001,0.99,0.042,0.67,0,0,0,0,3.4000000000000004,0,0,0,0,0.276,65.33,120.96000000000001,0.13,988,0.6000000000000001,241,1.2000000000000002 +2015,7,2,10,30,8.8,0.99,0.040100000000000004,0.67,0,0,0,0,3.3000000000000003,0,0,0,0,0.276,68.29,134.11,0.13,988,0.6000000000000001,239,1.2000000000000002 +2015,7,2,11,30,8.1,1.01,0.038400000000000004,0.67,0,0,0,1,3.2,0,0,0,0,0.276,71.16,147.4,0.13,988,0.6000000000000001,235,1.2000000000000002 +2015,7,2,12,30,7.5,1.04,0.037700000000000004,0.67,0,0,0,1,3.1,0,0,0,0,0.276,73.81,160.68,0.13,988,0.6000000000000001,228,1.2000000000000002 +2015,7,2,13,30,7,1.09,0.037200000000000004,0.67,0,0,0,0,3.1,0,0,0,0,0.276,76.32000000000001,173.18,0.13,988,0.6000000000000001,221,1.1 +2015,7,2,14,30,6.6000000000000005,1.1400000000000001,0.0369,0.67,0,0,0,0,3.2,0,0,0,0,0.275,78.83,170.66,0.13,988,0.6000000000000001,215,1.1 +2015,7,2,15,30,6.300000000000001,1.2,0.0363,0.67,0,0,0,0,3.3000000000000003,0,0,0,0,0.275,81.29,157.76,0.13,988,0.6000000000000001,211,1 +2015,7,2,16,30,6,1.25,0.0347,0.67,0,0,0,0,3.5,0,0,0,0,0.275,84.13,144.45000000000002,0.13,988,0.6000000000000001,210,1 +2015,7,2,17,30,5.7,1.3,0.0329,0.67,0,0,0,1,3.7,0,0,0,0,0.277,86.97,131.18,0.13,988,0.6000000000000001,216,1 +2015,7,2,18,30,5.300000000000001,1.33,0.0309,0.67,0,0,0,0,3.8000000000000003,0,0,0,0,0.278,90.09,118.08,0.13,989,0.6000000000000001,224,0.9 +2015,7,2,19,30,4.800000000000001,1.35,0.0287,0.67,0,0,0,1,3.8000000000000003,0,0,0,0,0.279,93.35000000000001,105.25,0.13,989,0.5,228,0.9 +2015,7,2,20,30,5.300000000000001,1.33,0.027700000000000002,0.67,0,0,0,3,3.8000000000000003,0,0,0,0,0.28,90.11,92.85000000000001,0.13,990,0.5,228,0.9 +2015,7,2,21,30,7.4,1.27,0.0287,0.67,34,587,126,1,4.1000000000000005,34,587,0,126,0.281,79.66,81,0.13,990,0.6000000000000001,217,1.2000000000000002 +2015,7,2,22,30,10.3,1.1500000000000001,0.031,0.67,53,787,318,1,4,53,787,0,318,0.281,64.98,70.29,0.13,991,0.6000000000000001,184,1.8 +2015,7,2,23,30,11.9,1.04,0.0333,0.67,64,865,482,1,4.6000000000000005,64,865,0,482,0.28,60.76,61.08,0.13,991,0.7000000000000001,160,2.2 +2015,7,3,0,30,14.9,0.72,0.0431,0.67,75,889,595,1,5.7,75,889,0,595,0.278,54.29,54.21,0.13,990,0.8,144,2.3000000000000003 +2015,7,3,1,30,16.1,0.7000000000000001,0.0446,0.67,79,906,653,1,6.2,79,906,0,653,0.278,52.01,50.64,0.13,989,0.8,138,2.2 +2015,7,3,2,30,16.7,0.68,0.0455,0.67,79,898,643,1,6.4,79,898,0,643,0.277,50.59,51.09,0.13,989,0.9,134,2 +2015,7,3,3,30,16.900000000000002,0.75,0.042,0.67,73,875,570,1,6.6000000000000005,73,875,0,570,0.278,50.51,55.45,0.13,988,1,131,1.9000000000000001 +2015,7,3,4,30,16.7,0.75,0.0412,0.67,66,823,441,1,6.9,66,823,0,441,0.278,52.34,62.910000000000004,0.13,988,1,131,1.7000000000000002 +2015,7,3,5,30,15.5,0.75,0.0409,0.67,54,709,267,1,7.4,54,709,0,267,0.278,58.53,72.5,0.13,989,1.1,131,1.2000000000000002 +2015,7,3,6,30,13.5,0.74,0.0413,0.67,31,435,81,1,8.700000000000001,31,435,0,81,0.276,72.58,83.44,0.13,989,1.1,129,0.9 +2015,7,3,7,30,11.9,0.74,0.042,0.67,0,0,0,0,8.200000000000001,0,0,0,0,0.275,78.3,95.49,0.13,989,1.1,128,0.9 +2015,7,3,8,30,11,0.72,0.0427,0.67,0,0,0,0,8.4,0,0,0,0,0.274,83.88,108,0.13,990,1.1,129,0.9 +2015,7,3,9,30,10.5,0.6900000000000001,0.0441,0.67,0,0,0,0,8.5,0,0,0,0,0.274,87.29,120.9,0.13,990,1.2000000000000002,133,0.9 +2015,7,3,10,30,10.100000000000001,0.64,0.0468,0.67,0,0,0,1,8.700000000000001,0,0,0,0,0.273,90.73,134.05,0.13,991,1.2000000000000002,141,0.9 +2015,7,3,11,30,9.700000000000001,0.5700000000000001,0.050800000000000005,0.67,0,0,0,1,8.8,0,0,0,0,0.273,94.21000000000001,147.34,0.13,991,1.2000000000000002,153,0.9 +2015,7,3,12,30,9.3,0.5,0.056,0.67,0,0,0,1,8.9,0,0,0,0,0.273,97.52,160.62,0.13,990,1.2000000000000002,167,0.9 +2015,7,3,13,30,8.9,0.44,0.062,0.67,0,0,0,1,8.9,0,0,0,0,0.273,100,173.09,0.13,990,1.3,184,0.9 +2015,7,3,14,30,8.4,0.41000000000000003,0.0683,0.67,0,0,0,3,8.4,0,0,0,0,0.273,100,170.66,0.13,990,1.3,200,0.9 +2015,7,3,15,30,7.800000000000001,0.4,0.07540000000000001,0.67,0,0,0,1,7.800000000000001,0,0,0,0,0.272,100,157.78,0.13,990,1.3,204,0.9 +2015,7,3,16,30,7.5,0.41000000000000003,0.07880000000000001,0.67,0,0,0,1,7.5,0,0,0,0,0.271,100,144.47,0.13,990,1.4000000000000001,201,0.8 +2015,7,3,17,30,7.4,0.42,0.0784,0.67,0,0,0,1,7.4,0,0,0,0,0.27,100,131.2,0.13,990,1.4000000000000001,199,0.8 +2015,7,3,18,30,7.4,0.44,0.0782,0.67,0,0,0,1,7.4,0,0,0,0,0.269,100,118.09,0.13,990,1.4000000000000001,197,0.7000000000000001 +2015,7,3,19,30,7.5,0.46,0.076,0.67,0,0,0,3,7.5,0,0,0,0,0.269,100,105.26,0.13,991,1.4000000000000001,196,0.7000000000000001 +2015,7,3,20,30,8.3,0.47000000000000003,0.0727,0.67,0,0,0,3,8.3,0,0,0,0,0.268,100,92.85000000000001,0.13,991,1.4000000000000001,198,0.8 +2015,7,3,21,30,10.100000000000001,0.5,0.0704,0.67,44,438,113,1,8.700000000000001,44,438,0,113,0.268,91.28,80.99,0.13,991,1.4000000000000001,200,0.9 +2015,7,3,22,30,12.600000000000001,0.54,0.0645,0.67,66,687,298,1,9.200000000000001,66,687,0,298,0.268,79.72,70.27,0.13,991,1.4000000000000001,182,0.9 +2015,7,3,23,30,14,0.59,0.058100000000000006,0.67,76,799,463,1,9.8,76,799,0,463,0.268,76,61.04,0.13,991,1.4000000000000001,165,0.8 +2015,7,4,0,30,17,0.52,0.062,0.67,85,842,578,1,10.200000000000001,85,842,0,578,0.267,64.44,54.15,0.14,990,1.4000000000000001,114,0.7000000000000001 +2015,7,4,1,30,18.1,0.55,0.0582,0.67,86,867,637,1,10.200000000000001,86,867,0,637,0.267,59.89,50.57,0.14,989,1.4000000000000001,98,0.7000000000000001 +2015,7,4,2,30,18.7,0.58,0.055600000000000004,0.67,84,868,631,1,10,84,868,0,631,0.268,57.04,51,0.14,988,1.4000000000000001,89,0.7000000000000001 +2015,7,4,3,30,18.8,0.45,0.0658,0.67,86,829,557,1,9.9,86,829,0,557,0.269,56.24,55.36,0.14,988,1.4000000000000001,84,0.7000000000000001 +2015,7,4,4,30,18.6,0.49,0.062200000000000005,0.67,76,776,431,1,9.8,76,776,0,431,0.271,56.51,62.82,0.14,988,1.4000000000000001,77,0.7000000000000001 +2015,7,4,5,30,17.5,0.53,0.060500000000000005,0.67,61,661,261,1,9.8,61,661,0,261,0.272,60.78,72.42,0.14,988,1.4000000000000001,68,0.6000000000000001 +2015,7,4,6,30,15.5,0.55,0.0604,0.67,35,375,78,1,11.200000000000001,35,375,0,78,0.273,75.74,83.36,0.14,988,1.4000000000000001,62,0.6000000000000001 +2015,7,4,7,30,13.8,0.5700000000000001,0.058800000000000005,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.274,81.35000000000001,95.41,0.14,988,1.4000000000000001,58,0.8 +2015,7,4,8,30,13,0.59,0.0579,0.67,0,0,0,0,10.5,0,0,0,0,0.276,84.79,107.93,0.14,989,1.4000000000000001,51,0.8 +2015,7,4,9,30,12.4,0.59,0.0587,0.67,0,0,0,0,10.5,0,0,0,0,0.277,87.99,120.83,0.14,989,1.4000000000000001,36,0.8 +2015,7,4,10,30,11.8,0.58,0.061200000000000004,0.67,0,0,0,0,10.5,0,0,0,0,0.278,91.97,133.98,0.14,990,1.4000000000000001,16,0.8 +2015,7,4,11,30,11.100000000000001,0.5700000000000001,0.0664,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.279,96.95,147.27,0.14,990,1.5,178,0.8 +2015,7,4,12,30,10.4,0.56,0.0729,0.67,0,0,0,1,10.4,0,0,0,0,0.279,100,160.55,0.14,990,1.5,344,0.8 +2015,7,4,13,30,10,0.5700000000000001,0.0796,0.67,0,0,0,1,10,0,0,0,0,0.279,100,173.01,0.14,990,1.5,335,0.8 +2015,7,4,14,30,9.8,0.58,0.084,0.67,0,0,0,3,9.8,0,0,0,0,0.279,100,170.65,0.14,989,1.5,327,0.8 +2015,7,4,15,30,9.600000000000001,0.61,0.0852,0.67,0,0,0,3,9.600000000000001,0,0,0,0,0.278,100,157.79,0.14,989,1.5,315,0.8 +2015,7,4,16,30,9.5,0.66,0.08370000000000001,0.67,0,0,0,1,9.5,0,0,0,0,0.277,100,144.49,0.14,989,1.5,302,0.8 +2015,7,4,17,30,9.200000000000001,0.72,0.0816,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.277,100,131.21,0.14,988,1.4000000000000001,288,0.8 +2015,7,4,18,30,8.9,0.77,0.08080000000000001,0.67,0,0,0,0,8.9,0,0,0,0,0.276,100,118.10000000000001,0.14,989,1.4000000000000001,274,0.8 +2015,7,4,19,30,8.5,0.8200000000000001,0.0804,0.67,0,0,0,0,8.5,0,0,0,0,0.276,100,105.26,0.14,989,1.4000000000000001,261,0.8 +2015,7,4,20,30,9,0.87,0.0792,0.67,0,0,0,1,9,0,0,0,0,0.275,100,92.84,0.14,990,1.3,250,0.9 +2015,7,4,21,30,11,0.9,0.0784,0.67,44,445,114,1,9.5,44,445,0,114,0.274,90.32000000000001,80.97,0.14,990,1.3,246,1.1 +2015,7,4,22,30,14,0.9400000000000001,0.0755,0.67,68,684,299,1,9.8,68,684,0,299,0.273,75.73,70.24,0.14,990,1.3,257,1.1 +2015,7,4,23,30,15.600000000000001,0.96,0.07350000000000001,0.67,81,789,463,1,10.200000000000001,81,789,0,463,0.273,70.26,61,0.14,991,1.3,267,1 +2015,7,5,0,30,18.900000000000002,0.92,0.061700000000000005,0.67,83,848,580,1,9.9,83,848,0,580,0.274,55.82,54.09,0.13,990,1.4000000000000001,290,1.3 +2015,7,5,1,30,20,0.93,0.0618,0.67,86,868,638,1,9.4,86,868,0,638,0.275,50.59,50.49,0.13,989,1.4000000000000001,299,1.3 +2015,7,5,2,30,20.5,0.93,0.0611,0.67,85,867,631,1,9.1,85,867,0,631,0.275,47.82,50.910000000000004,0.13,988,1.4000000000000001,306,1.3 +2015,7,5,3,30,20.6,0.93,0.056100000000000004,0.67,79,848,562,1,8.9,79,848,0,562,0.275,46.9,55.26,0.13,987,1.4000000000000001,311,1.2000000000000002 +2015,7,5,4,30,20.3,0.9400000000000001,0.0585,0.67,72,787,433,1,8.9,72,787,0,433,0.274,47.88,62.730000000000004,0.13,987,1.5,317,1 +2015,7,5,5,30,19,0.93,0.059500000000000004,0.67,59,671,263,1,9.3,59,671,0,263,0.274,53.42,72.33,0.13,987,1.5,329,0.7000000000000001 +2015,7,5,6,30,16.900000000000002,0.9400000000000001,0.060000000000000005,0.67,34,394,80,1,11.4,34,394,0,80,0.273,69.94,83.28,0.13,987,1.5,336,0.6000000000000001 +2015,7,5,7,30,15.4,0.96,0.059300000000000005,0.67,0,0,0,1,10.4,0,0,0,0,0.271,71.96000000000001,95.34,0.13,987,1.5,328,0.7000000000000001 +2015,7,5,8,30,14.4,0.97,0.0574,0.67,0,0,0,1,10.100000000000001,0,0,0,0,0.269,75.23,107.85000000000001,0.13,988,1.5,317,0.8 +2015,7,5,9,30,13.5,0.97,0.0568,0.67,0,0,0,1,10,0,0,0,0,0.268,79.14,120.76,0.13,988,1.6,306,0.8 +2015,7,5,10,30,12.600000000000001,0.97,0.056400000000000006,0.67,0,0,0,3,9.9,0,0,0,0,0.267,83.45,133.92000000000002,0.13,988,1.5,297,0.9 +2015,7,5,11,30,11.9,0.96,0.0546,0.67,0,0,0,3,9.700000000000001,0,0,0,0,0.267,86.14,147.21,0.13,988,1.5,291,0.9 +2015,7,5,12,30,11.3,0.96,0.0533,0.67,0,0,0,0,9.4,0,0,0,0,0.267,87.94,160.49,0.13,988,1.5,291,0.9 +2015,7,5,13,30,10.8,0.9500000000000001,0.0504,0.67,0,0,0,0,9.1,0,0,0,0,0.267,88.99,172.92000000000002,0.13,988,1.5,296,0.9 +2015,7,5,14,30,10.3,0.9500000000000001,0.0475,0.67,0,0,0,0,8.8,0,0,0,0,0.268,90.21000000000001,170.64000000000001,0.13,987,1.4000000000000001,301,0.9 +2015,7,5,15,30,9.8,0.9500000000000001,0.045200000000000004,0.67,0,0,0,0,8.6,0,0,0,0,0.269,92.11,157.8,0.13,987,1.4000000000000001,302,0.8 +2015,7,5,16,30,9.4,0.96,0.043500000000000004,0.67,0,0,0,0,8.4,0,0,0,0,0.269,93.64,144.5,0.13,987,1.4000000000000001,299,0.8 +2015,7,5,17,30,8.9,0.96,0.0422,0.67,0,0,0,0,8.3,0,0,0,0,0.27,95.87,131.22,0.13,987,1.3,297,0.8 +2015,7,5,18,30,8.5,0.96,0.041800000000000004,0.67,0,0,0,0,8.1,0,0,0,0,0.27,97.56,118.11,0.13,987,1.3,296,0.8 +2015,7,5,19,30,8.1,0.9500000000000001,0.0415,0.67,0,0,0,0,8,0,0,0,0,0.27,99.64,105.26,0.13,987,1.3,296,0.8 +2015,7,5,20,30,8.8,0.9500000000000001,0.0408,0.67,0,0,0,3,8,0,0,0,0,0.27,94.69,92.83,0.13,987,1.2000000000000002,298,0.9 +2015,7,5,21,30,11,0.96,0.0396,0.67,37,529,120,1,8.3,37,529,0,120,0.269,83.29,80.95,0.13,988,1.2000000000000002,300,1.2000000000000002 +2015,7,5,22,30,14,0.98,0.0375,0.67,55,748,308,1,8.5,55,748,0,308,0.269,69.57000000000001,70.2,0.13,987,1.2000000000000002,306,1.4000000000000001 +2015,7,5,23,30,15.700000000000001,0.99,0.0358,0.67,65,841,473,1,9,65,841,0,473,0.269,64.38,60.95,0.13,987,1.2000000000000002,311,1.5 +2015,7,6,0,30,19.400000000000002,0.92,0.042300000000000004,0.67,74,881,591,0,8.700000000000001,74,881,0,591,0.268,49.92,54.02,0.13,986,1.1,307,1.8 +2015,7,6,1,30,20.5,0.96,0.0442,0.67,76,895,647,0,8.3,76,895,0,647,0.268,45.33,50.4,0.13,985,1.2000000000000002,300,1.8 +2015,7,6,2,30,21,1,0.0461,0.67,77,891,640,1,8,77,891,0,640,0.268,43.03,50.81,0.13,984,1.2000000000000002,295,1.8 +2015,7,6,3,30,21.200000000000003,1.31,0.0362,0.67,68,881,571,1,7.800000000000001,68,881,0,571,0.268,42.2,55.160000000000004,0.13,983,1.2000000000000002,292,1.8 +2015,7,6,4,30,21,1.32,0.0385,0.67,63,824,441,1,8.1,63,824,0,441,0.269,43.56,62.63,0.13,983,1.3,291,1.6 +2015,7,6,5,30,19.5,1.28,0.0405,0.67,52,711,269,0,8.9,52,711,0,269,0.269,50.29,72.24,0.13,983,1.4000000000000001,295,1.1 +2015,7,6,6,30,17.1,1.23,0.042,0.67,31,449,84,1,10.700000000000001,31,449,0,84,0.269,65.9,83.2,0.13,983,1.4000000000000001,300,0.8 +2015,7,6,7,30,15.200000000000001,1.19,0.0437,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.269,69.26,95.26,0.13,983,1.5,298,0.9 +2015,7,6,8,30,14.200000000000001,1.1400000000000001,0.0463,0.67,0,0,0,0,9.5,0,0,0,0,0.269,73.32000000000001,107.78,0.13,984,1.5,292,0.9 +2015,7,6,9,30,13.600000000000001,1.09,0.0505,0.67,0,0,0,0,9.4,0,0,0,0,0.27,75.53,120.69,0.13,984,1.6,287,0.9 +2015,7,6,10,30,13.100000000000001,1.06,0.054900000000000004,0.67,0,0,0,0,9.3,0,0,0,0,0.27,77.78,133.85,0.13,985,1.6,281,0.9 +2015,7,6,11,30,12.5,1.03,0.0579,0.67,0,0,0,1,9.200000000000001,0,0,0,0,0.27,80.52,147.15,0.13,985,1.6,274,0.8 +2015,7,6,12,30,11.8,1.01,0.058800000000000005,0.67,0,0,0,1,9.1,0,0,0,0,0.27,83.76,160.42000000000002,0.13,984,1.6,267,0.8 +2015,7,6,13,30,11.200000000000001,0.98,0.058600000000000006,0.67,0,0,0,3,9,0,0,0,0,0.27,86.35000000000001,172.82,0.13,984,1.5,259,0.8 +2015,7,6,14,30,10.700000000000001,0.96,0.057800000000000004,0.67,0,0,0,3,8.8,0,0,0,0,0.27,88.11,170.62,0.13,984,1.5,252,0.8 +2015,7,6,15,30,10.200000000000001,0.9400000000000001,0.057,0.67,0,0,0,1,8.5,0,0,0,0,0.27,89.48,157.81,0.13,984,1.4000000000000001,246,0.8 +2015,7,6,16,30,9.700000000000001,0.93,0.0555,0.67,0,0,0,1,8.1,0,0,0,0,0.27,89.75,144.51,0.13,984,1.3,242,0.9 +2015,7,6,17,30,9.200000000000001,0.91,0.0539,0.67,0,0,0,1,7.4,0,0,0,0,0.271,88.55,131.23,0.13,984,1.3,241,0.9 +2015,7,6,18,30,8.700000000000001,0.91,0.0517,0.67,0,0,0,3,6.6000000000000005,0,0,0,0,0.272,86.61,118.11,0.13,985,1.1,244,0.9 +2015,7,6,19,30,8.200000000000001,0.91,0.0487,0.67,0,0,0,1,5.800000000000001,0,0,0,0,0.273,84.63,105.25,0.13,985,1,247,0.9 +2015,7,6,20,30,8.6,0.91,0.0449,0.67,0,0,0,1,4.9,0,0,0,0,0.274,77.69,92.82000000000001,0.13,986,0.9,250,0.9 +2015,7,6,21,30,10.700000000000001,0.92,0.040600000000000004,0.67,37,543,123,1,5,37,543,0,123,0.274,67.91,80.93,0.13,986,0.8,252,1.3 +2015,7,6,22,30,13.4,0.93,0.0356,0.67,55,773,317,1,4.1000000000000005,55,773,0,317,0.275,53.38,70.16,0.13,986,0.7000000000000001,241,1.7000000000000002 +2015,7,6,23,30,14.8,0.99,0.0304,0.67,62,871,486,1,3.2,62,871,0,486,0.275,45.6,60.89,0.13,986,0.7000000000000001,229,1.9000000000000001 +2015,7,7,0,30,17.900000000000002,0.86,0.031900000000000005,0.67,69,918,609,0,2.7,69,918,0,609,0.275,36.12,53.94,0.13,986,0.6000000000000001,203,1.9000000000000001 +2015,7,7,1,30,19.1,0.88,0.0316,0.67,71,936,669,0,2.4000000000000004,71,936,0,669,0.274,32.980000000000004,50.300000000000004,0.13,985,0.6000000000000001,190,1.7000000000000002 +2015,7,7,2,30,19.700000000000003,0.9,0.0323,0.67,71,927,658,0,2.2,71,927,0,658,0.273,31.35,50.7,0.13,984,0.7000000000000001,177,1.6 +2015,7,7,3,30,19.8,0.98,0.0327,0.67,68,906,587,0,2.2,68,906,0,587,0.271,31.03,55.050000000000004,0.13,984,0.7000000000000001,164,1.4000000000000001 +2015,7,7,4,30,19.400000000000002,1.01,0.033800000000000004,0.67,62,849,454,1,2.3000000000000003,62,849,0,454,0.27,32.15,62.53,0.13,984,0.8,149,1.1 +2015,7,7,5,30,17.8,1.04,0.0345,0.67,52,744,280,0,3.3000000000000003,52,744,0,280,0.269,38.08,72.14,0.13,985,0.8,128,0.9 +2015,7,7,6,30,15.4,1.07,0.035300000000000005,0.67,31,486,89,1,6.6000000000000005,31,486,0,89,0.269,55.82,83.11,0.13,985,0.8,112,0.8 +2015,7,7,7,30,13.700000000000001,1.1,0.0362,0.67,0,0,0,1,5.800000000000001,0,0,0,0,0.269,58.97,95.17,0.13,986,0.9,116,0.9 +2015,7,7,8,30,12.600000000000001,1.11,0.0376,0.67,0,0,0,1,5.7,0,0,0,0,0.269,62.68,107.71000000000001,0.13,987,0.9,137,0.9 +2015,7,7,9,30,11.4,1.11,0.0393,0.67,0,0,0,1,6,0,0,0,0,0.268,69.31,120.62,0.13,988,1,156,0.9 +2015,7,7,10,30,10.4,1.11,0.0412,0.67,0,0,0,1,6.2,0,0,0,0,0.268,75.13,133.79,0.13,988,1,162,1 +2015,7,7,11,30,9.600000000000001,1.1300000000000001,0.043300000000000005,0.67,0,0,0,0,6.300000000000001,0,0,0,0,0.268,79.8,147.08,0.13,989,1.1,160,1 +2015,7,7,12,30,9,1.16,0.046200000000000005,0.67,0,0,0,0,6.300000000000001,0,0,0,0,0.268,83.33,160.35,0.13,989,1.1,160,1 +2015,7,7,13,30,8.6,1.18,0.0502,0.67,0,0,0,0,6.5,0,0,0,0,0.268,86.59,172.72,0.13,989,1.1,162,1 +2015,7,7,14,30,8.200000000000001,1.21,0.0553,0.67,0,0,0,0,6.6000000000000005,0,0,0,0,0.268,89.72,170.6,0.13,989,1.2000000000000002,167,1 +2015,7,7,15,30,7.800000000000001,1.22,0.0596,0.67,0,0,0,0,6.7,0,0,0,0,0.268,92.54,157.82,0.13,989,1.2000000000000002,170,1 +2015,7,7,16,30,7.300000000000001,1.2,0.0623,0.67,0,0,0,0,6.7,0,0,0,0,0.268,96.03,144.52,0.13,989,1.1,173,1 +2015,7,7,17,30,6.9,1.11,0.0659,0.67,0,0,0,1,6.800000000000001,0,0,0,0,0.268,99.08,131.24,0.13,989,1.1,176,1 +2015,7,7,18,30,6.6000000000000005,0.9500000000000001,0.0736,0.67,0,0,0,0,6.6000000000000005,0,0,0,0,0.269,100,118.11,0.13,990,1.2000000000000002,178,1 +2015,7,7,19,30,6.4,0.77,0.08460000000000001,0.67,0,0,0,3,6.4,0,0,0,0,0.269,100,105.25,0.13,990,1.2000000000000002,179,0.9 +2015,7,7,20,30,7.300000000000001,0.63,0.0931,0.67,0,0,0,3,7.2,0,0,0,0,0.269,99.31,92.8,0.13,991,1.3,178,1.1 +2015,7,7,21,30,9.700000000000001,0.55,0.09670000000000001,0.67,49,396,112,0,7.800000000000001,49,396,0,112,0.268,87.68,80.9,0.13,991,1.3,171,1.5 +2015,7,7,22,30,12.5,0.49,0.096,0.67,78,639,295,1,8.700000000000001,78,639,0,295,0.268,77.51,70.12,0.13,992,1.4000000000000001,156,2.1 +2015,7,7,23,30,13.9,0.44,0.0976,0.67,94,746,457,1,9.700000000000001,94,746,0,457,0.268,75.98,60.83,0.13,992,1.4000000000000001,148,2.3000000000000003 +2015,7,8,0,30,16.400000000000002,0.63,0.0669,0.67,87,837,580,1,10.3,87,837,0,580,0.268,66.98,53.86,0.13,991,1.5,134,2.5 +2015,7,8,1,30,17.1,0.64,0.0665,0.67,89,858,638,1,10.3,89,858,0,638,0.268,64.27,50.2,0.13,991,1.5,129,2.5 +2015,7,8,2,30,17.2,0.61,0.0693,0.67,91,849,630,1,10.200000000000001,91,849,0,630,0.267,63.45,50.59,0.13,990,1.6,127,2.3000000000000003 +2015,7,8,3,30,17,0.68,0.0799,0.67,91,813,558,3,10.200000000000001,238,278,0,397,0.268,64.16,54.94,0.13,990,1.6,126,2.1 +2015,7,8,4,30,16.400000000000002,0.67,0.08370000000000001,0.67,84,749,431,2,10.4,191,179,0,274,0.268,67.73,62.42,0.13,990,1.6,127,1.9000000000000001 +2015,7,8,5,30,15.5,0.64,0.0806,0.67,67,629,261,1,10.9,67,629,0,261,0.269,74.29,72.05,0.13,990,1.7000000000000002,131,1.3 +2015,7,8,6,30,14.3,0.62,0.0806,0.67,38,343,80,3,11.5,39,9,3,40,0.269,83.52,83.02,0.13,991,1.7000000000000002,138,0.9 +2015,7,8,7,30,13.4,0.59,0.07970000000000001,0.67,0,0,0,1,11.5,0,0,0,0,0.269,88.37,95.09,0.13,991,1.7000000000000002,144,0.8 +2015,7,8,8,30,12.9,0.56,0.0777,0.67,0,0,0,1,11.5,0,0,0,0,0.269,91.19,107.63,0.13,992,1.6,146,0.8 +2015,7,8,9,30,12.3,0.53,0.0757,0.67,0,0,0,1,11.4,0,0,0,0,0.269,94.51,120.55,0.13,993,1.6,149,0.8 +2015,7,8,10,30,11.700000000000001,0.48,0.07540000000000001,0.67,0,0,0,1,11.3,0,0,0,0,0.269,97.24000000000001,133.72,0.13,993,1.6,152,0.8 +2015,7,8,11,30,11.200000000000001,0.42,0.0781,0.67,0,0,0,1,11.100000000000001,0,0,0,0,0.269,99.55,147.02,0.13,993,1.6,156,0.7000000000000001 +2015,7,8,12,30,10.9,0.38,0.0826,0.67,0,0,0,1,10.9,0,0,0,0,0.269,100,160.28,0.13,993,1.6,156,0.7000000000000001 +2015,7,8,13,30,10.700000000000001,0.35000000000000003,0.0849,0.67,0,0,0,1,10.700000000000001,0,0,0,0,0.268,100,172.62,0.13,993,1.6,154,0.7000000000000001 +2015,7,8,14,30,10.600000000000001,0.33,0.0839,0.67,0,0,0,3,10.600000000000001,0,0,0,0,0.268,100,170.57,0.13,993,1.6,156,0.7000000000000001 +2015,7,8,15,30,10.600000000000001,0.34,0.08310000000000001,0.67,0,0,0,3,10.600000000000001,0,0,0,0,0.268,100,157.82,0.13,993,1.6,159,0.7000000000000001 +2015,7,8,16,30,10.4,0.34,0.0811,0.67,0,0,0,3,10.4,0,0,0,0,0.269,100,144.52,0.13,993,1.6,162,0.7000000000000001 +2015,7,8,17,30,10.200000000000001,0.33,0.0779,0.67,0,0,0,3,10.200000000000001,0,0,0,0,0.269,100,131.24,0.13,993,1.5,163,0.7000000000000001 +2015,7,8,18,30,9.9,0.34,0.0751,0.67,0,0,0,3,9.9,0,0,0,0,0.27,100,118.10000000000001,0.13,993,1.5,162,0.7000000000000001 +2015,7,8,19,30,9.700000000000001,0.35000000000000003,0.07150000000000001,0.67,0,0,0,3,9.700000000000001,0,0,0,0,0.27,100,105.23,0.13,994,1.5,161,0.8 +2015,7,8,20,30,10.3,0.36,0.0671,0.67,0,0,0,1,9.8,0,0,0,0,0.269,96.53,92.78,0.13,994,1.5,161,0.9 +2015,7,8,21,30,11.8,0.39,0.06380000000000001,0.67,44,448,115,1,10.4,44,448,0,115,0.269,91.28,80.86,0.13,995,1.5,155,1.2000000000000002 +2015,7,8,22,30,13.700000000000001,0.41000000000000003,0.0603,0.67,66,690,301,2,11.100000000000001,129,200,0,197,0.268,84.48,70.07000000000001,0.13,995,1.5,139,1.6 +2015,7,8,23,30,14.600000000000001,0.44,0.056,0.67,76,798,466,1,11.5,76,798,0,466,0.267,81.42,60.76,0.13,995,1.5,128,1.8 +2015,7,9,0,30,16.7,0.38,0.0882,0.67,99,807,576,2,11.100000000000001,219,400,0,455,0.266,69.54,53.77,0.14,994,1.5,112,2.2 +2015,7,9,1,30,17.400000000000002,0.42,0.08020000000000001,0.67,98,839,637,1,10.200000000000001,98,839,0,637,0.264,62.480000000000004,50.09,0.14,993,1.5,107,2.3000000000000003 +2015,7,9,2,30,17.6,0.46,0.0733,0.67,94,846,633,1,9.600000000000001,94,846,0,633,0.264,59.56,50.47,0.14,993,1.5,103,2.3000000000000003 +2015,7,9,3,30,17.6,0.53,0.0684,0.67,87,827,564,2,9.4,201,443,0,456,0.263,58.64,54.82,0.14,992,1.5,101,2.2 +2015,7,9,4,30,17.2,0.56,0.0673,0.67,78,772,437,2,9.200000000000001,155,10,0,160,0.263,59.39,62.31,0.14,992,1.5,100,2 +2015,7,9,5,30,16.2,0.54,0.0641,0.67,63,660,268,1,9.3,63,660,0,268,0.263,63.61,71.94,0.14,992,1.5,100,1.4000000000000001 +2015,7,9,6,30,14.8,0.5700000000000001,0.0648,0.67,37,381,84,1,10.200000000000001,37,381,0,84,0.263,73.83,82.93,0.14,992,1.5,103,0.8 +2015,7,9,7,30,13.8,0.5700000000000001,0.0599,0.67,0,0,0,1,10,0,0,0,0,0.264,78.08,95.01,0.14,993,1.4000000000000001,109,0.7000000000000001 +2015,7,9,8,30,13.200000000000001,0.55,0.053200000000000004,0.67,0,0,0,1,9.9,0,0,0,0,0.264,80.47,107.55,0.14,993,1.4000000000000001,113,0.7000000000000001 +2015,7,9,9,30,12.700000000000001,0.55,0.051000000000000004,0.67,0,0,0,1,9.700000000000001,0,0,0,0,0.263,82.02,120.48,0.14,993,1.4000000000000001,117,0.7000000000000001 +2015,7,9,10,30,12.3,0.55,0.049100000000000005,0.67,0,0,0,1,9.5,0,0,0,0,0.264,82.78,133.65,0.14,993,1.4000000000000001,119,0.7000000000000001 +2015,7,9,11,30,12,0.54,0.0473,0.67,0,0,0,1,9.200000000000001,0,0,0,0,0.265,83.15,146.95000000000002,0.14,993,1.4000000000000001,122,0.7000000000000001 +2015,7,9,12,30,11.700000000000001,0.56,0.048100000000000004,0.67,0,0,0,1,9,0,0,0,0,0.265,83.59,160.21,0.14,993,1.4000000000000001,125,0.7000000000000001 +2015,7,9,13,30,11.600000000000001,0.5700000000000001,0.0499,0.67,0,0,0,1,8.9,0,0,0,0,0.265,83.31,172.52,0.14,993,1.4000000000000001,129,0.7000000000000001 +2015,7,9,14,30,11.4,0.56,0.0499,0.67,0,0,0,1,8.8,0,0,0,0,0.265,83.82000000000001,170.53,0.14,993,1.4000000000000001,134,0.7000000000000001 +2015,7,9,15,30,11.200000000000001,0.55,0.052500000000000005,0.67,0,0,0,0,8.700000000000001,0,0,0,0,0.265,84.69,157.82,0.14,992,1.4000000000000001,141,0.7000000000000001 +2015,7,9,16,30,10.9,0.55,0.053700000000000005,0.67,0,0,0,1,8.8,0,0,0,0,0.264,86.79,144.53,0.14,992,1.4000000000000001,149,0.7000000000000001 +2015,7,9,17,30,10.5,0.54,0.053200000000000004,0.67,0,0,0,1,8.9,0,0,1,0,0.264,89.8,131.24,0.14,992,1.4000000000000001,153,0.7000000000000001 +2015,7,9,18,30,10.3,0.55,0.0534,0.67,0,0,0,1,9,0,0,1,0,0.263,91.91,118.09,0.14,992,1.5,154,0.7000000000000001 +2015,7,9,19,30,10.200000000000001,0.55,0.0543,0.67,0,0,0,1,9.200000000000001,0,0,1,0,0.262,93.55,105.22,0.14,992,1.5,156,0.6000000000000001 +2015,7,9,20,30,10.600000000000001,0.54,0.055200000000000006,0.67,0,0,0,1,9.4,0,0,1,0,0.262,92.03,92.75,0.14,992,1.6,156,0.7000000000000001 +2015,7,9,21,30,12.200000000000001,0.55,0.0555,0.67,42,473,117,1,9.700000000000001,42,473,1,117,0.263,84.75,80.82000000000001,0.14,992,1.6,153,0.9 +2015,7,9,22,30,14.4,0.56,0.055,0.67,63,698,302,4,9.9,104,0,1,104,0.263,74.29,70.01,0.14,992,1.7000000000000002,136,1.1 +2015,7,9,23,30,15.600000000000001,0.5700000000000001,0.0548,0.67,74,797,465,4,10.100000000000001,172,18,1,181,0.264,69.69,60.68,0.14,992,1.7000000000000002,122,1.1 +2015,7,10,0,30,17.6,0.63,0.0608,0.67,84,837,579,4,10.100000000000001,224,30,1,242,0.264,61.45,53.67,0.14,991,1.8,87,1.1 +2015,7,10,1,30,18.1,0.67,0.0632,0.67,88,852,636,4,10,251,35,1,273,0.263,59.120000000000005,49.980000000000004,0.14,990,1.9000000000000001,72,1 +2015,7,10,2,30,18.2,0.68,0.0668,0.67,89,847,629,4,9.9,248,35,1,270,0.263,58.24,50.35,0.14,989,1.9000000000000001,59,1 +2015,7,10,3,30,17.900000000000002,0.68,0.06620000000000001,0.67,85,820,559,4,9.9,216,28,0,232,0.263,59.38,54.7,0.14,988,2,49,1 +2015,7,10,4,30,17.400000000000002,0.77,0.0728,0.67,79,757,432,4,10.100000000000001,185,58,0,212,0.263,62.14,62.190000000000005,0.14,988,2,45,1 +2015,7,10,5,30,16.5,0.79,0.0713,0.67,64,641,264,2,10.5,115,205,0,179,0.264,67.5,71.84,0.14,988,2.1,47,0.7000000000000001 +2015,7,10,6,30,15,0.85,0.08070000000000001,0.67,38,354,82,1,11.600000000000001,38,354,0,82,0.265,80.33,82.84,0.14,988,2.1,50,0.6000000000000001 +2015,7,10,7,30,13.600000000000001,0.89,0.0824,0.67,0,0,0,1,11.4,0,0,0,0,0.266,86.76,94.92,0.14,988,2.1,49,0.6000000000000001 +2015,7,10,8,30,12.8,0.91,0.0777,0.67,0,0,0,3,11.5,0,0,0,0,0.266,91.56,107.47,0.14,988,2.1,44,0.7000000000000001 +2015,7,10,9,30,12.200000000000001,0.91,0.0733,0.67,0,0,0,4,11.600000000000001,0,0,0,0,0.266,96.15,120.41,0.14,989,2.1,37,0.7000000000000001 +2015,7,10,10,30,11.700000000000001,0.89,0.07100000000000001,0.67,0,0,0,4,11.700000000000001,0,0,0,0,0.266,100,133.58,0.14,989,2.2,31,0.7000000000000001 +2015,7,10,11,30,11.3,0.86,0.0684,0.67,0,0,0,4,11.3,0,0,0,0,0.265,100,146.88,0.14,989,2.2,28,0.7000000000000001 +2015,7,10,12,30,11.100000000000001,0.84,0.06470000000000001,0.67,0,0,0,3,11.100000000000001,0,0,0,0,0.265,100,160.14000000000001,0.14,988,2.2,23,0.7000000000000001 +2015,7,10,13,30,11.200000000000001,0.81,0.0623,0.67,0,0,0,1,11.200000000000001,0,0,0,0,0.265,100,172.41,0.14,988,2.2,180,0.7000000000000001 +2015,7,10,14,30,11.100000000000001,0.79,0.061500000000000006,0.67,0,0,0,3,11.100000000000001,0,0,0,0,0.265,100,170.49,0.14,988,2.3000000000000003,327,0.7000000000000001 +2015,7,10,15,30,10.700000000000001,0.77,0.0601,0.67,0,0,0,1,10.700000000000001,0,0,0,0,0.266,100,157.81,0.14,987,2.3000000000000003,308,0.7000000000000001 +2015,7,10,16,30,10.3,0.76,0.057100000000000005,0.67,0,0,0,1,10.3,0,0,1,0,0.266,100,144.52,0.14,987,2.3000000000000003,304,0.7000000000000001 +2015,7,10,17,30,10.200000000000001,0.76,0.0531,0.67,0,0,0,1,10.200000000000001,0,0,1,0,0.268,100,131.23,0.14,986,2.3000000000000003,303,0.7000000000000001 +2015,7,10,18,30,10,0.79,0.048,0.67,0,0,0,1,10,0,0,1,0,0.269,100,118.08,0.14,986,2.2,304,0.7000000000000001 +2015,7,10,19,30,9.8,0.8300000000000001,0.045000000000000005,0.67,0,0,0,1,9.8,0,0,1,0,0.271,100,105.2,0.14,986,2.2,301,0.7000000000000001 +2015,7,10,20,30,10.5,0.85,0.0451,0.67,0,0,0,1,10.5,0,0,1,0,0.273,100,92.72,0.14,986,2.1,299,0.8 +2015,7,10,21,30,12.4,0.87,0.048,0.67,39,486,117,1,11.200000000000001,39,486,1,117,0.274,92.56,80.78,0.14,986,2.2,305,1.1 +2015,7,10,22,30,14.4,0.88,0.053000000000000005,0.67,61,696,299,1,12.200000000000001,61,696,1,299,0.275,86.74,69.95,0.14,986,2.2,315,1.5 +2015,7,10,23,30,15.4,0.9,0.0587,0.67,74,783,458,1,13.200000000000001,74,783,1,458,0.276,86.63,60.6,0.14,986,2.3000000000000003,318,1.7000000000000002 +2015,7,11,0,30,17.400000000000002,0.89,0.0906,0.67,95,794,566,1,13.600000000000001,95,794,1,566,0.276,78.37,53.57,0.14,985,2.4000000000000004,320,2.1 +2015,7,11,1,30,18.3,0.92,0.1,0.67,102,808,623,1,13.600000000000001,102,808,1,623,0.275,74.03,49.86,0.14,983,2.4000000000000004,319,2.2 +2015,7,11,2,30,18.8,0.9500000000000001,0.1072,0.67,104,799,616,1,13.3,104,799,1,616,0.274,70.34,50.22,0.14,982,2.4000000000000004,318,2.2 +2015,7,11,3,30,19.1,0.9500000000000001,0.1075,0.67,100,775,549,1,12.8,100,775,0,549,0.273,67.02,54.57,0.14,982,2.3000000000000003,319,2.1 +2015,7,11,4,30,19,1.02,0.11420000000000001,0.67,92,708,424,1,12.4,92,708,0,424,0.272,65.68,62.07,0.14,981,2.3000000000000003,320,1.9000000000000001 +2015,7,11,5,30,18.1,1.1,0.1148,0.67,74,589,259,3,12.4,112,256,0,192,0.273,69.5,71.73,0.14,981,2.2,328,1.3 +2015,7,11,6,30,16.400000000000002,1.17,0.1143,0.67,41,321,82,3,13,42,104,3,56,0.273,80.23,82.74,0.14,982,2.1,338,0.9 +2015,7,11,7,30,14.9,1.2,0.1131,0.67,0,0,0,1,12.4,0,0,0,0,0.273,85.25,94.83,0.14,982,2,343,0.9 +2015,7,11,8,30,14,1.2,0.10990000000000001,0.67,0,0,0,0,12.4,0,0,0,0,0.273,90.03,107.39,0.14,982,1.9000000000000001,345,0.9 +2015,7,11,9,30,13.3,1.19,0.10550000000000001,0.67,0,0,0,1,12.5,0,0,0,0,0.273,94.72,120.33,0.14,982,1.9000000000000001,343,0.9 +2015,7,11,10,30,12.8,1.17,0.0993,0.67,0,0,0,0,12.600000000000001,0,0,0,0,0.273,98.96000000000001,133.51,0.14,982,1.9000000000000001,339,1 +2015,7,11,11,30,12.600000000000001,1.16,0.0921,0.67,0,0,0,0,12.600000000000001,0,0,0,0,0.274,100,146.82,0.14,982,1.8,333,1 +2015,7,11,12,30,12.4,1.1500000000000001,0.0853,0.67,0,0,0,0,12.4,0,0,0,0,0.275,100,160.07,0.14,981,1.8,326,1.1 +2015,7,11,13,30,12.200000000000001,1.1400000000000001,0.0779,0.67,0,0,0,0,12.200000000000001,0,0,0,0,0.276,100,172.3,0.14,980,1.7000000000000002,318,1.1 +2015,7,11,14,30,12,1.12,0.0717,0.67,0,0,0,1,12,0,0,0,0,0.277,100,170.44,0.14,980,1.7000000000000002,302,1.1 +2015,7,11,15,30,11.8,1.04,0.07250000000000001,0.67,0,0,0,0,11.8,0,0,0,0,0.277,100,157.8,0.14,980,1.7000000000000002,282,1.2000000000000002 +2015,7,11,16,30,11.5,0.89,0.0733,0.67,0,0,0,8,10.9,0,0,0,0,0.277,95.98,144.52,0.14,980,1.6,266,1.5 +2015,7,11,17,30,11,0.6900000000000001,0.08,0.67,0,0,0,4,8.200000000000001,0,0,0,0,0.278,82.95,131.22,0.14,981,1.5,258,1.9000000000000001 +2015,7,11,18,30,10,0.52,0.0974,0.67,0,0,0,4,6.2,0,0,0,0,0.281,77.31,118.07000000000001,0.14,981,1.4000000000000001,256,2.1 +2015,7,11,19,30,8.8,0.42,0.1028,0.67,0,0,0,7,5.6000000000000005,0,0,0,0,0.28500000000000003,80.23,105.17,0.14,982,1.1,258,2 +2015,7,11,20,30,8.6,0.45,0.08,0.67,0,0,0,2,5.2,0,0,0,0,0.289,79.31,92.69,0.14,983,0.8,259,2.1 +2015,7,11,21,30,9.5,0.59,0.0499,0.67,41,529,126,1,5,41,529,0,126,0.292,73.60000000000001,80.73,0.14,983,0.6000000000000001,258,2.7 +2015,7,11,22,30,10.700000000000001,0.7000000000000001,0.036500000000000005,0.67,56,786,327,1,4.4,56,786,0,327,0.294,64.93,69.89,0.14,983,0.5,255,3.1 +2015,7,11,23,30,11.3,0.71,0.0334,0.67,65,881,498,1,2.8000000000000003,65,881,0,498,0.294,55.83,60.52,0.14,983,0.5,254,3.3000000000000003 +2015,7,12,0,30,13.100000000000001,0.64,0.0358,0.67,72,920,620,1,1.1,72,920,0,620,0.295,44.02,53.46,0.14,982,0.5,257,3.4000000000000004 +2015,7,12,1,30,14,0.65,0.0346,0.67,74,940,682,1,-0.1,74,940,0,682,0.295,38.1,49.730000000000004,0.14,981,0.5,260,3.5 +2015,7,12,2,30,14.600000000000001,0.66,0.034,0.67,74,939,676,1,-0.9,74,939,0,676,0.296,34.49,50.08,0.14,980,0.5,262,3.4000000000000004 +2015,7,12,3,30,14.8,0.66,0.0341,0.67,70,911,600,1,-1.5,70,911,0,600,0.296,32.65,54.43,0.14,980,0.6000000000000001,264,3.3000000000000003 +2015,7,12,4,30,14.600000000000001,0.63,0.036000000000000004,0.67,65,858,469,1,-1.8,65,858,0,469,0.296,32.28,61.95,0.14,979,0.6000000000000001,265,3 +2015,7,12,5,30,13.5,0.59,0.0392,0.67,55,748,291,1,-1.7000000000000002,55,748,0,291,0.296,34.81,71.62,0.14,980,0.6000000000000001,266,2.2 +2015,7,12,6,30,11.3,0.56,0.0425,0.67,34,480,96,1,-0.4,34,480,0,96,0.296,44.51,82.64,0.14,980,0.6000000000000001,267,1.4000000000000001 +2015,7,12,7,30,9.600000000000001,0.52,0.0444,0.67,0,0,0,1,0.1,0,0,0,0,0.296,51.46,94.74,0.14,981,0.7000000000000001,270,1.1 +2015,7,12,8,30,8.8,0.51,0.0459,0.67,0,0,0,0,0.2,0,0,0,0,0.296,54.97,107.31,0.14,982,0.7000000000000001,273,1 +2015,7,12,9,30,8,0.52,0.0476,0.67,0,0,0,1,0.5,0,0,0,0,0.297,59.08,120.26,0.14,982,0.8,277,1 +2015,7,12,10,30,7.300000000000001,0.52,0.047900000000000005,0.67,0,0,0,1,0.7000000000000001,0,0,0,0,0.298,62.940000000000005,133.45,0.14,983,0.8,280,1 +2015,7,12,11,30,6.7,0.51,0.0472,0.67,0,0,0,1,0.8,0,0,0,0,0.298,66.19,146.75,0.14,983,0.9,283,0.9 +2015,7,12,12,30,6.1000000000000005,0.5,0.0468,0.67,0,0,0,1,1,0,0,0,0,0.299,69.57000000000001,159.99,0.14,983,0.9,285,1 +2015,7,12,13,30,5.5,0.49,0.0475,0.67,0,0,0,1,1,0,0,0,0,0.299,72.91,172.18,0.14,983,0.9,286,1 +2015,7,12,14,30,5.1000000000000005,0.5,0.047900000000000005,0.67,0,0,0,1,1.1,0,0,0,0,0.299,75.19,170.39000000000001,0.14,983,0.9,285,1 +2015,7,12,15,30,4.800000000000001,0.52,0.045200000000000004,0.67,0,0,0,1,1,0,0,0,0,0.3,76.62,157.78,0.14,982,0.9,282,1.1 +2015,7,12,16,30,4.6000000000000005,0.55,0.0407,0.67,0,0,0,1,1,0,0,0,0,0.3,77.7,144.51,0.14,982,0.8,282,1.1 +2015,7,12,17,30,4.3,0.6,0.037700000000000004,0.67,0,0,0,1,1.1,0,0,0,0,0.301,79.56,131.21,0.14,982,0.8,286,1.1 +2015,7,12,18,30,4,0.65,0.038,0.67,0,0,0,1,1.1,0,0,0,0,0.302,81.67,118.05,0.14,983,0.8,289,1.1 +2015,7,12,19,30,3.8000000000000003,0.66,0.0395,0.67,0,0,0,1,1.2000000000000002,0,0,0,0,0.303,83.34,105.15,0.14,983,0.8,288,1.2000000000000002 +2015,7,12,20,30,4.7,0.64,0.04,0.67,0,0,0,1,1.3,0,0,0,0,0.304,78.81,92.65,0.14,983,0.9,285,1.5 +2015,7,12,21,30,6.800000000000001,0.63,0.038200000000000005,0.67,38,543,126,2,1.7000000000000002,37,0,3,37,0.305,70.19,80.68,0.14,983,0.9,280,2.4000000000000004 +2015,7,12,22,30,9.200000000000001,0.64,0.035,0.67,56,763,319,1,2,56,763,0,319,0.305,60.550000000000004,69.81,0.14,983,0.9,271,3.2 +2015,7,12,23,30,10.4,0.62,0.0347,0.67,66,854,488,1,2.8000000000000003,66,854,0,488,0.304,59.11,60.42,0.14,983,0.9,266,3.6 +2015,7,13,0,30,12.9,0.48,0.045700000000000005,0.67,78,876,601,1,3.2,78,876,0,601,0.301,51.620000000000005,53.34,0.14,982,1.1,263,4 +2015,7,13,1,30,14.100000000000001,0.48,0.045000000000000005,0.67,80,892,659,1,3.4000000000000004,80,892,0,659,0.3,48.36,49.59,0.14,981,1.2000000000000002,262,4.1000000000000005 +2015,7,13,2,30,14.8,0.53,0.0434,0.67,79,893,654,1,3.5,79,893,0,654,0.299,46.85,49.94,0.14,981,1.2000000000000002,261,4.1000000000000005 +2015,7,13,3,30,14.9,0.6,0.042800000000000005,0.67,75,869,582,1,3.8000000000000003,75,869,0,582,0.299,47.51,54.300000000000004,0.14,980,1.3,258,3.9000000000000004 +2015,7,13,4,30,14.600000000000001,0.71,0.0398,0.67,66,823,455,2,4.2,170,23,0,181,0.3,49.57,61.82,0.14,980,1.3,256,3.6 +2015,7,13,5,30,13.600000000000001,0.84,0.0367,0.67,53,725,283,1,4.4,53,725,0,283,0.3,53.84,71.51,0.14,980,1.3,255,3 +2015,7,13,6,30,11.9,1,0.0323,0.67,31,491,95,1,4.800000000000001,31,491,0,95,0.301,61.660000000000004,82.54,0.14,981,1.3,255,2.1 +2015,7,13,7,30,10.4,1.1300000000000001,0.0302,0.67,0,0,0,0,5.1000000000000005,0,0,0,0,0.301,69.63,94.65,0.14,982,1.3,256,1.6 +2015,7,13,8,30,9.600000000000001,1.2,0.029400000000000003,0.67,0,0,0,0,5.300000000000001,0,0,0,0,0.301,74.42,107.23,0.14,982,1.2000000000000002,256,1.5 +2015,7,13,9,30,9.1,1.24,0.0285,0.67,0,0,0,1,5.4,0,0,0,0,0.302,77.78,120.18,0.14,983,1.1,254,1.6 +2015,7,13,10,30,8.6,1.24,0.0269,0.67,0,0,0,1,5.5,0,0,0,0,0.303,80.83,133.37,0.14,983,1,252,1.6 +2015,7,13,11,30,8.1,1.23,0.024800000000000003,0.67,0,0,0,1,5.5,0,0,0,0,0.305,83.41,146.68,0.14,983,0.9,250,1.6 +2015,7,13,12,30,7.6000000000000005,1.23,0.0235,0.67,0,0,0,1,5.4,0,0,0,0,0.306,85.75,159.92000000000002,0.14,983,0.9,249,1.6 +2015,7,13,13,30,7.2,1.22,0.023200000000000002,0.67,0,0,0,1,5.2,0,0,0,0,0.306,86.93,172.06,0.14,983,0.9,248,1.6 +2015,7,13,14,30,6.7,1.21,0.0233,0.67,0,0,0,0,4.9,0,0,0,0,0.305,88.01,170.33,0.14,983,0.8,249,1.5 +2015,7,13,15,30,6.300000000000001,1.19,0.0235,0.67,0,0,0,0,4.5,0,0,0,0,0.303,88.18,157.76,0.14,983,0.7000000000000001,250,1.5 +2015,7,13,16,30,5.800000000000001,1.17,0.024,0.67,0,0,0,1,4.1000000000000005,0,0,0,0,0.302,88.87,144.49,0.14,983,0.7000000000000001,251,1.5 +2015,7,13,17,30,5.4,1.1400000000000001,0.0247,0.67,0,0,0,0,3.8000000000000003,0,0,0,0,0.3,89.14,131.19,0.14,983,0.7000000000000001,252,1.5 +2015,7,13,18,30,5,1.1,0.0252,0.67,0,0,0,0,3.4000000000000004,0,0,0,0,0.3,89.64,118.02,0.14,983,0.7000000000000001,252,1.4000000000000001 +2015,7,13,19,30,4.7,1.07,0.025500000000000002,0.67,0,0,0,1,3.2,0,0,0,0,0.301,89.81,105.11,0.14,984,0.7000000000000001,251,1.4000000000000001 +2015,7,13,20,30,5.4,1.05,0.0251,0.67,0,0,0,1,2.9000000000000004,0,0,0,0,0.301,83.63,92.60000000000001,0.14,984,0.8,251,1.7000000000000002 +2015,7,13,21,30,7.2,1.04,0.024200000000000003,0.67,34,592,131,1,2.9000000000000004,34,592,0,131,0.3,74.07000000000001,80.62,0.14,985,0.8,250,2.3000000000000003 +2015,7,13,22,30,9.4,1.08,0.023200000000000002,0.67,50,789,323,1,2.6,50,789,0,323,0.3,62.58,69.74,0.14,985,0.9,245,2.8000000000000003 +2015,7,13,23,30,10.600000000000001,1.1400000000000001,0.022600000000000002,0.67,58,875,492,1,2.8000000000000003,58,875,0,492,0.299,58.5,60.32,0.14,985,0.9,242,3 +2015,7,14,0,30,13.8,0.85,0.031200000000000002,0.67,69,905,611,1,3.5,69,905,0,611,0.297,49.85,53.22,0.14,985,0.9,239,3.1 +2015,7,14,1,30,15.4,0.8300000000000001,0.0322,0.67,72,927,675,1,4.1000000000000005,72,927,0,675,0.295,46.87,49.45,0.14,984,0.8,238,3.1 +2015,7,14,2,30,16.3,0.8200000000000001,0.032100000000000004,0.67,72,931,673,1,4.2,72,931,0,673,0.294,44.7,49.79,0.14,983,0.7000000000000001,239,3 +2015,7,14,3,30,16.6,0.8200000000000001,0.031200000000000002,0.67,69,911,602,1,4,69,911,0,602,0.293,43.08,54.15,0.14,983,0.7000000000000001,240,2.9000000000000004 +2015,7,14,4,30,16.2,0.87,0.029500000000000002,0.67,62,865,472,1,3.6,62,865,0,472,0.291,42.980000000000004,61.690000000000005,0.14,983,0.7000000000000001,241,2.7 +2015,7,14,5,30,14.8,0.91,0.0279,0.67,51,770,297,1,3.4000000000000004,51,770,0,297,0.289,46.38,71.39,0.14,983,0.7000000000000001,241,2 +2015,7,14,6,30,12.4,0.9500000000000001,0.0262,0.67,31,536,101,1,4.1000000000000005,31,536,0,101,0.28600000000000003,57.06,82.44,0.14,984,0.7000000000000001,241,1.3 +2015,7,14,7,30,10.5,1,0.0257,0.67,0,0,0,1,4,0,0,0,0,0.28500000000000003,63.99,94.56,0.14,985,0.6000000000000001,243,1 +2015,7,14,8,30,9.5,1.02,0.0261,0.67,0,0,0,0,4,0,0,0,0,0.28500000000000003,68.42,107.15,0.14,985,0.6000000000000001,249,1 +2015,7,14,9,30,8.6,1.02,0.0273,0.67,0,0,0,0,4,0,0,0,0,0.28500000000000003,73.03,120.11,0.14,986,0.6000000000000001,256,0.9 +2015,7,14,10,30,7.800000000000001,1,0.0291,0.67,0,0,0,1,4.1000000000000005,0,0,0,0,0.28500000000000003,77.45,133.3,0.14,986,0.6000000000000001,257,0.9 +2015,7,14,11,30,7,0.97,0.0309,0.67,0,0,0,1,4.2,0,0,0,0,0.28400000000000003,82.26,146.61,0.14,986,0.6000000000000001,259,0.9 +2015,7,14,12,30,6.4,0.9500000000000001,0.031900000000000005,0.67,0,0,0,1,4.3,0,0,0,0,0.28400000000000003,86.51,159.84,0.14,986,0.6000000000000001,263,0.9 +2015,7,14,13,30,5.800000000000001,0.9400000000000001,0.0337,0.67,0,0,0,4,4.4,0,0,0,0,0.28300000000000003,90.89,171.93,0.14,986,0.6000000000000001,263,0.9 +2015,7,14,14,30,5.2,0.93,0.0356,0.67,0,0,0,3,4.5,0,0,0,0,0.28200000000000003,95.17,170.26,0.14,986,0.6000000000000001,257,0.9 +2015,7,14,15,30,4.800000000000001,0.93,0.0358,0.67,0,0,0,0,4.5,0,0,0,0,0.281,97.8,157.74,0.14,986,0.6000000000000001,250,0.9 +2015,7,14,16,30,4.6000000000000005,0.9500000000000001,0.037000000000000005,0.67,0,0,0,4,4.4,0,0,0,0,0.278,98.55,144.47,0.14,985,0.6000000000000001,250,0.8 +2015,7,14,17,30,4.2,0.98,0.0368,0.67,0,0,0,0,4.2,0,0,0,0,0.276,100,131.17000000000002,0.14,985,0.7000000000000001,253,0.8 +2015,7,14,18,30,3.9000000000000004,1.01,0.0367,0.67,0,0,0,4,3.9000000000000004,0,0,0,0,0.274,100,118,0.14,986,0.7000000000000001,252,0.8 +2015,7,14,19,30,3.7,1.04,0.0367,0.67,0,0,0,8,3.7,0,0,0,0,0.273,100,105.08,0.14,986,0.7000000000000001,251,0.8 +2015,7,14,20,30,4.5,1.06,0.035,0.67,0,0,0,4,4,0,0,0,0,0.272,96.28,92.56,0.14,987,0.7000000000000001,253,0.8 +2015,7,14,21,30,6.7,1.08,0.0341,0.67,37,579,132,8,4.1000000000000005,53,3,3,54,0.272,83.31,80.55,0.14,987,0.7000000000000001,261,0.8 +2015,7,14,22,30,9.8,1.1300000000000001,0.0332,0.67,55,786,328,8,4.1000000000000005,132,55,0,151,0.271,67.75,69.66,0.14,987,0.7000000000000001,238,0.8 +2015,7,14,23,30,11.5,1.16,0.0337,0.67,65,868,496,7,3.6,188,34,0,205,0.271,58.34,60.22,0.14,987,0.8,210,0.7000000000000001 +2015,7,15,0,30,14.8,0.71,0.055900000000000005,0.67,82,881,612,8,3,237,350,0,447,0.271,45.2,53.09,0.14,987,0.8,109,0.4 +2015,7,15,1,30,15.700000000000001,0.75,0.0551,0.67,85,898,670,8,2.8000000000000003,295,131,0,380,0.271,41.99,49.300000000000004,0.14,986,0.9,4,0.6000000000000001 +2015,7,15,2,30,16.1,0.8,0.0557,0.67,85,896,665,8,2.7,260,357,0,491,0.271,40.63,49.63,0.14,985,0.9,13,0.7000000000000001 +2015,7,15,3,30,16.2,0.84,0.0589,0.67,82,870,594,8,2.6,251,246,0,396,0.271,40.19,54.01,0.14,984,0.9,17,0.8 +2015,7,15,4,30,15.9,0.9,0.062200000000000005,0.67,76,810,461,8,2.7,140,504,0,380,0.272,41.07,61.56,0.14,984,1,14,0.7000000000000001 +2015,7,15,5,30,15,0.92,0.061000000000000006,0.67,62,698,286,7,3.4000000000000004,113,273,0,201,0.273,45.86,71.27,0.14,984,1.1,12,0.5 +2015,7,15,6,30,13.700000000000001,0.93,0.057800000000000004,0.67,37,447,96,4,6.1000000000000005,43,191,3,69,0.275,60.06,82.33,0.14,985,1.1,7,0.5 +2015,7,15,7,30,12.600000000000001,0.9500000000000001,0.057,0.67,0,0,0,8,5.1000000000000005,0,0,0,0,0.278,60.300000000000004,94.47,0.14,985,1.1,176,0.5 +2015,7,15,8,30,11.9,0.98,0.0574,0.67,0,0,0,1,4.6000000000000005,0,0,0,0,0.279,60.910000000000004,107.06,0.14,986,1.1,345,0.6000000000000001 +2015,7,15,9,30,11.100000000000001,1.01,0.0579,0.67,0,0,0,7,4.7,0,0,0,0,0.28,64.52,120.03,0.14,986,1.2000000000000002,330,0.6000000000000001 +2015,7,15,10,30,10.3,1.04,0.0579,0.67,0,0,0,7,4.800000000000001,0,0,0,0,0.281,68.79,133.23,0.14,986,1.2000000000000002,308,0.8 +2015,7,15,11,30,9.600000000000001,1.08,0.0575,0.67,0,0,0,8,4.800000000000001,0,0,0,0,0.281,72.22,146.54,0.14,986,1.3,285,0.8 +2015,7,15,12,30,9.200000000000001,1.12,0.0565,0.67,0,0,0,8,4.800000000000001,0,0,0,0,0.28200000000000003,73.74,159.76,0.14,985,1.3,266,0.9 +2015,7,15,13,30,8.8,1.12,0.0555,0.67,0,0,0,8,4.6000000000000005,0,0,0,0,0.28200000000000003,74.97,171.8,0.14,985,1.4000000000000001,252,0.9 +2015,7,15,14,30,8.4,1.09,0.0574,0.67,0,0,0,4,4.5,0,0,0,0,0.28300000000000003,76.55,170.18,0.14,985,1.4000000000000001,243,0.9 +2015,7,15,15,30,8.1,1.04,0.059300000000000005,0.67,0,0,0,4,4.4,0,0,0,0,0.28300000000000003,77.31,157.71,0.14,985,1.5,240,0.9 +2015,7,15,16,30,7.6000000000000005,1,0.061500000000000006,0.67,0,0,0,1,4.2,0,0,0,0,0.28400000000000003,79.16,144.45000000000002,0.14,985,1.5,242,0.9 +2015,7,15,17,30,7.2,0.98,0.064,0.67,0,0,0,8,4.2,0,0,0,0,0.28400000000000003,81.03,131.15,0.14,985,1.6,245,0.8 +2015,7,15,18,30,6.800000000000001,0.97,0.06670000000000001,0.67,0,0,0,8,4.1000000000000005,0,0,0,0,0.28400000000000003,83.19,117.97,0.14,985,1.6,249,0.8 +2015,7,15,19,30,6.800000000000001,0.96,0.0702,0.67,0,0,0,8,4.1000000000000005,0,0,0,0,0.28400000000000003,83.08,105.04,0.14,986,1.6,254,0.7000000000000001 +2015,7,15,20,30,7.4,0.97,0.0743,0.67,0,0,0,8,4.3,0,0,0,0,0.28300000000000003,80.44,92.5,0.14,986,1.7000000000000002,258,0.7000000000000001 +2015,7,15,21,30,8.700000000000001,0.97,0.07690000000000001,0.67,44,458,120,7,4.7,51,0,3,51,0.28200000000000003,75.79,80.49,0.14,987,1.6,261,1 +2015,7,15,22,30,10.600000000000001,0.98,0.076,0.67,68,685,307,8,4.5,129,36,0,141,0.28300000000000003,65.85,69.57000000000001,0.14,987,1.6,262,1.2000000000000002 +2015,7,15,23,30,11.8,0.98,0.07390000000000001,0.67,81,788,473,7,4.6000000000000005,190,35,0,207,0.28300000000000003,61.550000000000004,60.11,0.14,986,1.6,263,1.3 +2015,7,16,0,30,14.9,0.91,0.0893,0.67,95,823,591,8,4.7,224,403,0,467,0.28500000000000003,50.54,52.96,0.14,985,1.5,289,1.5 +2015,7,16,1,30,15.9,0.86,0.0959,0.67,102,837,649,7,4.7,266,45,0,296,0.28700000000000003,47.26,49.15,0.14,984,1.5,297,1.7000000000000002 +2015,7,16,2,30,16.400000000000002,0.8200000000000001,0.1085,0.67,108,822,642,7,4.7,245,28,0,263,0.29,45.82,49.47,0.14,983,1.5,297,1.8 +2015,7,16,3,30,16.5,0.85,0.0805,0.67,91,826,578,7,4.800000000000001,260,176,0,364,0.291,45.81,53.85,0.14,982,1.5,292,1.9000000000000001 +2015,7,16,4,30,16.1,0.84,0.0762,0.67,81,775,451,7,5.1000000000000005,201,122,0,259,0.292,47.980000000000004,61.42,0.14,982,1.5,283,1.8 +2015,7,16,5,30,15.100000000000001,0.8,0.0727,0.67,66,666,281,7,5.6000000000000005,110,10,0,113,0.293,52.89,71.15,0.14,982,1.5,272,1.4000000000000001 +2015,7,16,6,30,13.3,0.81,0.0781,0.67,40,395,94,7,7,36,0,3,36,0.294,65.69,82.23,0.14,982,1.4000000000000001,262,0.9 +2015,7,16,7,30,11.8,0.8200000000000001,0.0848,0.67,0,0,0,4,6.6000000000000005,0,0,0,0,0.294,70.58,94.37,0.14,983,1.4000000000000001,256,0.8 +2015,7,16,8,30,10.9,0.8200000000000001,0.08940000000000001,0.67,0,0,0,3,6.300000000000001,0,0,0,0,0.294,73.47,106.98,0.14,984,1.3,252,0.8 +2015,7,16,9,30,10.100000000000001,0.8300000000000001,0.08990000000000001,0.67,0,0,0,4,5.800000000000001,0,0,0,0,0.295,74.53,119.96000000000001,0.14,985,1.2000000000000002,251,0.9 +2015,7,16,10,30,9,0.8300000000000001,0.0819,0.67,0,0,0,1,4.800000000000001,0,0,0,0,0.296,75.2,133.16,0.14,985,1.1,252,0.9 +2015,7,16,11,30,7.800000000000001,0.8300000000000001,0.0703,0.67,0,0,0,1,3.8000000000000003,0,0,0,0,0.296,75.96000000000001,146.47,0.14,985,1,256,0.9 +2015,7,16,12,30,6.800000000000001,0.84,0.0608,0.67,0,0,0,1,2.9000000000000004,0,0,0,0,0.295,76.31,159.68,0.14,985,0.9,260,0.9 +2015,7,16,13,30,5.9,0.85,0.054400000000000004,0.67,0,0,0,1,2.4000000000000004,0,0,0,0,0.294,78.21000000000001,171.67000000000002,0.14,985,0.9,264,0.9 +2015,7,16,14,30,5.2,0.87,0.0506,0.67,0,0,0,1,2.2,0,0,0,0,0.293,80.9,170.1,0.14,985,0.9,266,0.9 +2015,7,16,15,30,4.5,0.91,0.0473,0.67,0,0,0,1,2.2,0,0,0,0,0.293,85.08,157.68,0.14,985,0.9,270,0.9 +2015,7,16,16,30,3.9000000000000004,0.99,0.044500000000000005,0.67,0,0,0,1,2.4000000000000004,0,0,0,0,0.293,89.96000000000001,144.42000000000002,0.14,985,0.8,273,1 +2015,7,16,17,30,3.5,1.07,0.0429,0.67,0,0,0,0,2.7,0,0,0,0,0.294,94.25,131.12,0.14,985,0.7000000000000001,273,1.1 +2015,7,16,18,30,3.2,1.12,0.0427,0.67,0,0,0,1,2.9000000000000004,0,0,0,0,0.294,97.74000000000001,117.93,0.14,985,0.7000000000000001,269,1.3 +2015,7,16,19,30,3,1.1300000000000001,0.0446,0.67,0,0,0,2,2.9000000000000004,0,0,0,0,0.292,99.07000000000001,104.99000000000001,0.14,985,0.7000000000000001,266,1.5 +2015,7,16,20,30,3.7,1.1300000000000001,0.0455,0.67,0,0,0,1,2.7,0,0,0,0,0.29,93.27,92.44,0.14,986,0.7000000000000001,267,1.9000000000000001 +2015,7,16,21,30,5.300000000000001,1.1300000000000001,0.0431,0.67,39,558,132,1,2.6,39,558,0,132,0.29,82.52,80.41,0.14,986,0.8,266,2.9000000000000004 +2015,7,16,22,30,7,1.1500000000000001,0.038700000000000005,0.67,57,773,328,1,2.1,57,773,0,328,0.29,70.84,69.48,0.14,986,0.8,263,3.6 +2015,7,16,23,30,8,1.19,0.0339,0.67,65,869,499,2,1.6,135,550,0,410,0.29,63.980000000000004,59.99,0.14,986,0.8,262,3.8000000000000003 +2015,7,17,0,30,10.600000000000001,0.89,0.0478,0.67,78,889,615,2,1.8,239,349,0,450,0.291,54.620000000000005,52.82,0.14,985,0.9,259,4.1000000000000005 +2015,7,17,1,30,11.8,0.99,0.0519,0.67,83,904,676,1,2.7,83,904,0,676,0.291,53.67,48.99,0.14,984,0.9,256,4.3 +2015,7,17,2,30,12.600000000000001,1.2,0.0519,0.67,82,905,671,2,3.4000000000000004,287,250,0,450,0.291,53.35,49.31,0.14,983,0.9,254,4.3 +2015,7,17,3,30,13.100000000000001,1.45,0.0472,0.67,75,889,602,2,3.6,261,184,0,370,0.292,52.53,53.7,0.14,983,0.9,251,4.2 +2015,7,17,4,30,13,1.43,0.0426,0.67,67,845,473,1,3.6,67,845,0,473,0.292,52.85,61.28,0.14,983,0.9,247,3.9000000000000004 +2015,7,17,5,30,12.3,1.29,0.038400000000000004,0.67,54,755,300,1,3.5,54,755,1,300,0.292,55.04,71.02,0.14,984,0.8,243,3.3000000000000003 +2015,7,17,6,30,10.5,1.16,0.0356,0.67,33,522,105,2,3.6,44,2,3,44,0.292,62.2,82.12,0.14,984,0.8,241,2.3000000000000003 +2015,7,17,7,30,8.9,1.11,0.034300000000000004,0.67,0,0,0,0,3.8000000000000003,0,0,0,0,0.293,70.14,94.27,0.14,985,0.7000000000000001,240,1.6 +2015,7,17,8,30,8,1.08,0.0341,0.67,0,0,0,1,3.8000000000000003,0,0,0,0,0.294,74.72,106.89,0.14,986,0.6000000000000001,239,1.4000000000000001 +2015,7,17,9,30,7.300000000000001,1.04,0.0342,0.67,0,0,0,0,3.7,0,0,0,0,0.295,78.04,119.88,0.14,987,0.6000000000000001,239,1.3 +2015,7,17,10,30,6.6000000000000005,1,0.0342,0.67,0,0,0,1,3.6,0,0,0,0,0.296,80.93,133.09,0.14,987,0.6000000000000001,240,1.2000000000000002 +2015,7,17,11,30,6,0.98,0.034300000000000004,0.67,0,0,0,1,3.4000000000000004,0,0,0,0,0.296,83.19,146.4,0.14,988,0.6000000000000001,242,1.1 +2015,7,17,12,30,5.4,0.98,0.0345,0.67,0,0,0,0,3.2,0,0,0,0,0.296,85.67,159.6,0.14,988,0.5,246,1.1 +2015,7,17,13,30,4.800000000000001,1.01,0.0347,0.67,0,0,0,0,3.1,0,0,0,0,0.296,88.54,171.53,0.14,988,0.5,249,1 +2015,7,17,14,30,4.2,1.04,0.034800000000000005,0.67,0,0,0,0,3,0,0,0,0,0.297,91.82000000000001,170.01,0.14,988,0.5,248,1 +2015,7,17,15,30,3.7,1.08,0.0342,0.67,0,0,0,0,2.9000000000000004,0,0,0,0,0.297,94.69,157.64000000000001,0.14,988,0.5,245,1 +2015,7,17,16,30,3.2,1.1300000000000001,0.0334,0.67,0,0,0,0,2.9000000000000004,0,0,0,0,0.297,97.79,144.39000000000001,0.14,988,0.5,243,1 +2015,7,17,17,30,2.7,1.16,0.0327,0.67,0,0,0,0,2.7,0,0,0,0,0.297,100,131.08,0.14,988,0.5,242,1 +2015,7,17,18,30,2.3000000000000003,1.2,0.031900000000000005,0.67,0,0,0,0,2.3000000000000003,0,0,0,0,0.296,100,117.89,0.14,988,0.5,239,1 +2015,7,17,19,30,1.9000000000000001,1.23,0.031100000000000003,0.67,0,0,0,0,1.9000000000000001,0,0,0,0,0.294,100,104.94,0.14,989,0.4,238,1 +2015,7,17,20,30,2.6,1.27,0.031100000000000003,0.67,0,0,0,3,2.2,0,0,0,0,0.292,96.99000000000001,92.38,0.14,990,0.5,237,1.2000000000000002 +2015,7,17,21,30,4.800000000000001,1.31,0.0304,0.67,36,611,139,1,2,36,611,0,139,0.29,82,80.34,0.14,990,0.5,233,1.5 +2015,7,17,22,30,7.800000000000001,1.37,0.028300000000000002,0.67,53,812,338,1,1.5,53,812,0,338,0.289,64.52,69.38,0.14,991,0.5,218,1.5 +2015,7,17,23,30,9.5,1.3800000000000001,0.0274,0.67,61,897,512,1,1,61,897,0,512,0.28800000000000003,55.31,59.870000000000005,0.14,991,0.5,206,1.3 +2015,7,18,0,30,13.5,0.85,0.0388,0.67,74,915,629,1,0.7000000000000001,74,915,0,629,0.28600000000000003,41.68,52.67,0.14,990,0.6000000000000001,153,1.2000000000000002 +2015,7,18,1,30,15.200000000000001,0.85,0.0388,0.67,77,933,691,1,0.7000000000000001,77,933,0,691,0.28500000000000003,37.28,48.83,0.14,990,0.6000000000000001,139,1.3 +2015,7,18,2,30,16,0.85,0.0391,0.67,77,926,682,0,0.7000000000000001,77,926,0,682,0.28300000000000003,35.53,49.14,0.14,989,0.7000000000000001,133,1.3 +2015,7,18,3,30,16.3,0.9,0.038400000000000004,0.67,73,906,612,0,0.8,73,906,0,612,0.28300000000000003,34.99,53.53,0.14,989,0.7000000000000001,125,1.3 +2015,7,18,4,30,16,0.91,0.0388,0.67,67,852,478,1,0.9,67,852,0,478,0.28300000000000003,36,61.13,0.14,989,0.8,118,1.3 +2015,7,18,5,30,14.600000000000001,0.93,0.039,0.67,55,752,301,1,1.5,55,752,0,301,0.28300000000000003,40.95,70.9,0.14,990,0.8,108,1 +2015,7,18,6,30,12.100000000000001,0.9500000000000001,0.039400000000000004,0.67,35,511,106,1,4.1000000000000005,35,511,0,106,0.28200000000000003,58.01,82.01,0.14,990,0.8,101,0.8 +2015,7,18,7,30,10.100000000000001,0.98,0.0402,0.67,0,0,0,1,3.8000000000000003,0,0,0,0,0.28200000000000003,64.72,94.18,0.14,991,0.9,101,0.9 +2015,7,18,8,30,9.1,1.01,0.042,0.67,0,0,0,1,4.2,0,0,0,0,0.281,71.46000000000001,106.81,0.14,992,0.9,108,0.9 +2015,7,18,9,30,8.5,1.04,0.0444,0.67,0,0,0,0,4.800000000000001,0,0,0,0,0.281,77.67,119.8,0.14,993,1,121,0.9 +2015,7,18,10,30,8,1.04,0.0466,0.67,0,0,0,0,5.5,0,0,0,0,0.28,84.03,133.02,0.14,993,1.1,135,0.9 +2015,7,18,11,30,7.6000000000000005,0.99,0.049600000000000005,0.67,0,0,0,0,6.1000000000000005,0,0,0,0,0.28,90.39,146.33,0.14,994,1.1,147,0.9 +2015,7,18,12,30,7.2,0.9,0.054700000000000006,0.67,0,0,0,0,6.7,0,0,0,0,0.281,96.37,159.52,0.14,994,1.1,158,1 +2015,7,18,13,30,6.6000000000000005,0.8,0.06330000000000001,0.67,0,0,0,1,6.6000000000000005,0,0,0,0,0.28200000000000003,100,171.39000000000001,0.14,994,1.1,168,1 +2015,7,18,14,30,6.2,0.6900000000000001,0.07640000000000001,0.67,0,0,0,0,6.2,0,0,0,0,0.28200000000000003,100,169.91,0.14,994,1.2000000000000002,172,1 +2015,7,18,15,30,6.300000000000001,0.5700000000000001,0.09290000000000001,0.67,0,0,0,3,6.300000000000001,0,0,0,0,0.28400000000000003,100,157.59,0.14,993,1.2000000000000002,173,1 +2015,7,18,16,30,6.4,0.46,0.10830000000000001,0.67,0,0,0,1,6.4,0,0,0,0,0.28500000000000003,100,144.36,0.14,993,1.3,175,1 +2015,7,18,17,30,6.6000000000000005,0.37,0.12430000000000001,0.67,0,0,0,1,6.6000000000000005,0,0,0,0,0.28700000000000003,100,131.05,0.14,993,1.4000000000000001,174,1 +2015,7,18,18,30,6.9,0.31,0.1379,0.67,0,0,0,1,6.9,0,0,0,0,0.28700000000000003,100,117.85000000000001,0.14,993,1.4000000000000001,171,1 +2015,7,18,19,30,7.1000000000000005,0.29,0.1459,0.67,0,0,0,1,7.1000000000000005,0,0,0,0,0.28700000000000003,100,104.89,0.14,993,1.4000000000000001,173,0.9 +2015,7,18,20,30,7.9,0.28,0.14550000000000002,0.67,0,0,0,3,7.800000000000001,0,0,0,0,0.28600000000000003,99.65,92.31,0.14,994,1.5,179,1.1 +2015,7,18,21,30,9.8,0.29,0.1431,0.67,61,318,115,1,8.1,61,318,0,115,0.28500000000000003,89.07000000000001,80.25,0.14,995,1.5,176,1.6 +2015,7,18,22,30,12.100000000000001,0.29,0.13390000000000002,0.67,94,584,301,3,8.6,138,151,0,192,0.28500000000000003,79.25,69.27,0.14,995,1.5,163,2.2 +2015,7,18,23,30,13.3,0.29,0.1237,0.67,108,715,468,1,9.3,108,715,0,468,0.28500000000000003,76.58,59.74,0.14,995,1.5,155,2.4000000000000004 +2015,7,19,0,30,16,0.43,0.094,0.67,102,810,595,1,9.700000000000001,102,810,0,595,0.28200000000000003,66.28,52.52,0.14,994,1.5,138,2.7 +2015,7,19,1,30,16.7,0.4,0.0955,0.67,107,830,656,1,9.8,107,830,0,656,0.279,63.77,48.65,0.14,994,1.5,133,2.7 +2015,7,19,2,30,16.900000000000002,0.38,0.0978,0.67,108,822,648,3,9.700000000000001,296,194,0,423,0.277,62.33,48.96,0.14,993,1.6,131,2.5 +2015,7,19,3,30,16.7,0.35000000000000003,0.1087,0.67,109,783,576,3,9.600000000000001,257,235,0,397,0.275,62.910000000000004,53.370000000000005,0.14,992,1.6,130,2.4000000000000004 +2015,7,19,4,30,16.2,0.37,0.1044,0.67,97,728,450,1,9.700000000000001,97,728,0,450,0.275,65.4,60.980000000000004,0.14,992,1.6,131,2.2 +2015,7,19,5,30,15.4,0.37,0.0961,0.67,77,618,281,1,9.9,77,618,0,281,0.275,69.91,70.77,0.14,993,1.6,134,1.5 +2015,7,19,6,30,14.100000000000001,0.42,0.0965,0.67,46,345,95,4,10.5,47,23,3,50,0.275,79.16,81.9,0.14,993,1.6,140,0.9 +2015,7,19,7,30,13.200000000000001,0.46,0.09530000000000001,0.67,0,0,0,4,10.600000000000001,0,0,0,0,0.275,84.33,94.08,0.14,994,1.6,145,0.8 +2015,7,19,8,30,12.700000000000001,0.5,0.0906,0.67,0,0,0,3,10.8,0,0,0,0,0.276,87.93,106.72,0.14,995,1.6,149,0.8 +2015,7,19,9,30,12.100000000000001,0.55,0.08600000000000001,0.67,0,0,0,3,10.8,0,0,0,0,0.276,91.89,119.72,0.14,996,1.6,152,0.8 +2015,7,19,10,30,11.5,0.59,0.0814,0.67,0,0,0,1,10.700000000000001,0,0,0,0,0.276,95.08,132.94,0.14,996,1.6,155,0.9 +2015,7,19,11,30,11,0.6,0.0787,0.67,0,0,0,1,10.600000000000001,0,0,0,0,0.275,97.52,146.26,0.14,996,1.6,157,0.9 +2015,7,19,12,30,10.5,0.59,0.08080000000000001,0.67,0,0,0,1,10.5,0,0,0,0,0.274,99.98,159.43,0.14,995,1.6,157,0.8 +2015,7,19,13,30,10.3,0.5700000000000001,0.0829,0.67,0,0,0,1,10.3,0,0,0,0,0.274,100,171.24,0.14,995,1.7000000000000002,159,0.8 +2015,7,19,14,30,10.200000000000001,0.54,0.0855,0.67,0,0,0,1,10.200000000000001,0,0,0,0,0.274,100,169.81,0.14,995,1.7000000000000002,162,0.8 +2015,7,19,15,30,10.3,0.54,0.08950000000000001,0.67,0,0,0,3,10.3,0,0,0,0,0.274,100,157.54,0.14,995,1.7000000000000002,165,0.7000000000000001 +2015,7,19,16,30,10.200000000000001,0.54,0.0893,0.67,0,0,0,1,10.200000000000001,0,0,0,0,0.273,100,144.32,0.14,995,1.7000000000000002,167,0.7000000000000001 +2015,7,19,17,30,10.200000000000001,0.53,0.08610000000000001,0.67,0,0,0,3,10.200000000000001,0,0,0,0,0.272,100,131,0.14,995,1.7000000000000002,169,0.7000000000000001 +2015,7,19,18,30,10.100000000000001,0.56,0.0887,0.67,0,0,0,1,10.100000000000001,0,0,0,0,0.272,100,117.8,0.14,995,1.7000000000000002,166,0.7000000000000001 +2015,7,19,19,30,10,0.55,0.0872,0.67,0,0,0,3,10,0,0,0,0,0.272,100,104.83,0.14,996,1.7000000000000002,162,0.8 +2015,7,19,20,30,10.5,0.51,0.08420000000000001,0.67,0,0,0,3,10.200000000000001,0,0,0,0,0.273,98.09,92.24,0.14,996,1.7000000000000002,161,1 +2015,7,19,21,30,11.600000000000001,0.51,0.08710000000000001,0.67,50,425,122,1,10.600000000000001,50,425,0,122,0.273,93.48,80.17,0.14,997,1.7000000000000002,159,1.4000000000000001 +2015,7,19,22,30,12.9,0.5,0.08410000000000001,0.67,75,662,311,2,10.9,136,198,0,207,0.274,87.94,69.16,0.14,997,1.7000000000000002,150,1.8 +2015,7,19,23,30,13.600000000000001,0.49,0.0785,0.67,87,773,478,1,11.3,87,773,0,478,0.274,86.11,59.61,0.14,997,1.7000000000000002,143,2 +2015,7,20,0,30,15.700000000000001,0.46,0.0777,0.67,95,824,598,2,11.4,267,220,0,401,0.275,75.64,52.36,0.14,996,1.7000000000000002,128,2.4000000000000004 +2015,7,20,1,30,16.6,0.48,0.0763,0.67,97,845,657,1,11.100000000000001,97,845,0,657,0.275,69.83,48.480000000000004,0.14,995,1.8,122,2.5 +2015,7,20,2,30,16.900000000000002,0.46,0.082,0.67,100,837,651,3,10.5,269,46,0,299,0.275,65.83,48.78,0.14,995,1.8,120,2.5 +2015,7,20,3,30,16.7,0.51,0.0891,0.67,98,805,581,2,10.200000000000001,264,186,0,375,0.274,65.53,53.2,0.14,994,1.8,120,2.4000000000000004 +2015,7,20,4,30,16.400000000000002,0.48,0.0877,0.67,89,749,454,3,10.200000000000001,92,0,0,92,0.273,66.84,60.83,0.14,994,1.8,122,2.3000000000000003 +2015,7,20,5,30,15.700000000000001,0.44,0.08270000000000001,0.67,72,638,284,3,10.3,108,347,0,223,0.273,70.2,70.64,0.14,995,1.8,126,1.6 +2015,7,20,6,30,14.4,0.44,0.07980000000000001,0.67,43,378,97,3,10.700000000000001,47,178,3,72,0.273,78.45,81.79,0.14,995,1.8,132,1 +2015,7,20,7,30,13.4,0.44,0.07490000000000001,0.67,0,0,0,3,10.5,0,0,0,0,0.273,82.5,93.98,0.14,996,1.8,137,0.9 +2015,7,20,8,30,12.8,0.44,0.0684,0.67,0,0,0,1,10.3,0,0,0,0,0.273,84.52,106.63,0.14,997,1.7000000000000002,139,0.9 +2015,7,20,9,30,12.4,0.45,0.0646,0.67,0,0,0,1,10.100000000000001,0,0,0,0,0.273,86.01,119.64,0.14,997,1.7000000000000002,141,0.9 +2015,7,20,10,30,12.100000000000001,0.46,0.0636,0.67,0,0,0,1,10.100000000000001,0,0,0,0,0.272,87.74,132.87,0.14,997,1.7000000000000002,142,0.9 +2015,7,20,11,30,11.8,0.46,0.06470000000000001,0.67,0,0,0,1,10.200000000000001,0,0,0,0,0.271,90.04,146.18,0.14,997,1.7000000000000002,143,0.9 +2015,7,20,12,30,11.600000000000001,0.45,0.067,0.67,0,0,0,1,10.3,0,0,0,0,0.271,91.99,159.35,0.14,997,1.7000000000000002,144,0.8 +2015,7,20,13,30,11.4,0.45,0.06910000000000001,0.67,0,0,0,3,10.5,0,0,0,0,0.271,94.14,171.09,0.14,997,1.7000000000000002,145,0.8 +2015,7,20,14,30,11.3,0.46,0.07010000000000001,0.67,0,0,0,1,10.600000000000001,0,0,0,0,0.272,95.35000000000001,169.70000000000002,0.14,996,1.7000000000000002,145,0.8 +2015,7,20,15,30,11.3,0.47000000000000003,0.0703,0.67,0,0,0,3,10.600000000000001,0,0,0,0,0.272,95.71000000000001,157.49,0.14,996,1.7000000000000002,143,0.8 +2015,7,20,16,30,11.3,0.49,0.07010000000000001,0.67,0,0,0,3,10.700000000000001,0,0,0,0,0.272,95.82000000000001,144.27,0.14,996,1.7000000000000002,141,0.8 +2015,7,20,17,30,11.200000000000001,0.5,0.06770000000000001,0.67,0,0,0,3,10.700000000000001,0,0,0,0,0.272,96.56,130.96,0.14,996,1.7000000000000002,139,0.8 +2015,7,20,18,30,11.200000000000001,0.53,0.065,0.67,0,0,0,3,10.700000000000001,0,0,0,0,0.272,96.56,117.75,0.14,996,1.7000000000000002,136,0.9 +2015,7,20,19,30,11.3,0.56,0.061900000000000004,0.67,0,0,0,3,10.700000000000001,0,0,0,0,0.272,95.79,104.77,0.14,997,1.7000000000000002,133,0.9 +2015,7,20,20,30,12,0.58,0.0587,0.67,0,0,0,3,10.600000000000001,0,0,0,0,0.272,91.38,92.17,0.14,997,1.8,130,1 +2015,7,20,21,30,13.4,0.6,0.0558,0.67,43,492,128,3,11.100000000000001,37,0,3,37,0.272,85.75,80.07000000000001,0.14,997,1.8,128,1.4000000000000001 +2015,7,20,22,30,15.100000000000001,0.63,0.0523,0.67,63,714,318,2,11.4,109,0,0,109,0.272,78.3,69.05,0.14,998,1.8,120,1.9000000000000001 +2015,7,20,23,30,15.9,0.67,0.0465,0.67,72,816,486,2,11.3,214,103,0,266,0.272,74.19,59.47,0.14,998,1.8,114,2.2 +2015,7,21,0,30,17.5,0.59,0.059300000000000005,0.67,85,843,602,2,11,273,149,0,364,0.27,65.45,52.19,0.14,997,1.9000000000000001,102,2.5 +2015,7,21,1,30,17.8,0.62,0.0631,0.67,90,860,662,2,10.700000000000001,273,343,0,501,0.269,63.27,48.29,0.14,997,1.9000000000000001,99,2.4000000000000004 +2015,7,21,2,30,17.8,0.6,0.063,0.67,89,856,655,1,10.600000000000001,89,856,0,655,0.268,62.75,48.59,0.14,996,2,97,2.4000000000000004 +2015,7,21,3,30,17.7,0.58,0.07780000000000001,0.67,93,815,583,4,10.4,259,84,0,310,0.267,62.300000000000004,53.02,0.14,996,2,96,2.3000000000000003 +2015,7,21,4,30,17.3,0.59,0.0791,0.67,85,761,458,2,10.200000000000001,36,0,0,36,0.267,63.1,60.68,0.14,995,1.9000000000000001,96,2.1 +2015,7,21,5,30,16.5,0.56,0.0721,0.67,68,659,288,1,10.100000000000001,68,659,0,288,0.267,66.1,70.51,0.14,995,1.9000000000000001,97,1.5 +2015,7,21,6,30,15.100000000000001,0.58,0.0666,0.67,41,417,102,1,10.600000000000001,41,417,0,102,0.267,74.26,81.67,0.14,995,1.8,100,1 +2015,7,21,7,30,13.9,0.5700000000000001,0.0589,0.67,0,0,0,3,10.200000000000001,0,0,0,0,0.267,78.16,93.88,0.14,995,1.7000000000000002,102,0.8 +2015,7,21,8,30,13.200000000000001,0.56,0.0529,0.67,0,0,0,1,9.8,0,0,0,0,0.267,79.66,106.54,0.14,995,1.6,103,0.9 +2015,7,21,9,30,12.600000000000001,0.58,0.0492,0.67,0,0,0,1,9.4,0,0,0,0,0.266,80.85000000000001,119.57000000000001,0.14,996,1.6,108,0.9 +2015,7,21,10,30,12,0.59,0.0472,0.67,0,0,0,1,9.1,0,0,0,0,0.266,82.53,132.8,0.14,996,1.5,112,0.9 +2015,7,21,11,30,11.4,0.59,0.046700000000000005,0.67,0,0,0,1,9,0,0,0,0,0.265,85.05,146.11,0.14,996,1.5,113,0.9 +2015,7,21,12,30,11.100000000000001,0.58,0.046400000000000004,0.67,0,0,0,1,8.9,0,0,0,0,0.264,86.25,159.26,0.14,995,1.5,111,0.9 +2015,7,21,13,30,10.9,0.5700000000000001,0.046900000000000004,0.67,0,0,0,1,8.9,0,0,0,0,0.264,87.53,170.94,0.14,995,1.4000000000000001,113,0.9 +2015,7,21,14,30,10.600000000000001,0.55,0.0482,0.67,0,0,0,1,9,0,0,0,0,0.263,89.81,169.58,0.14,994,1.4000000000000001,119,0.9 +2015,7,21,15,30,10.200000000000001,0.53,0.0497,0.67,0,0,0,3,9.200000000000001,0,0,0,0,0.262,93.62,157.43,0.14,994,1.5,128,0.9 +2015,7,21,16,30,9.9,0.52,0.0509,0.67,0,0,0,3,9.600000000000001,0,0,0,0,0.26,97.74000000000001,144.22,0.14,994,1.5,138,0.9 +2015,7,21,17,30,9.5,0.52,0.0519,0.67,0,0,0,3,9.5,0,0,0,0,0.259,100,130.91,0.14,994,1.6,148,0.9 +2015,7,21,18,30,9.200000000000001,0.52,0.0534,0.67,0,0,0,3,9.200000000000001,0,0,0,0,0.258,100,117.69,0.14,994,1.7000000000000002,156,0.8 +2015,7,21,19,30,9.1,0.5,0.055400000000000005,0.67,0,0,0,3,9.1,0,0,0,0,0.258,100,104.7,0.14,995,1.7000000000000002,159,0.8 +2015,7,21,20,30,10.100000000000001,0.48,0.0584,0.67,0,0,0,3,10.100000000000001,0,0,0,0,0.258,100,92.09,0.14,996,1.8,157,0.9 +2015,7,21,21,30,12.3,0.48,0.061700000000000005,0.67,45,478,129,1,10.600000000000001,45,478,0,129,0.257,89.58,79.98,0.14,996,1.8,145,1.2000000000000002 +2015,7,21,22,30,14.8,0.49,0.0632,0.67,68,693,317,1,11.5,68,693,0,317,0.257,80.44,68.93,0.14,996,1.9000000000000001,120,1.6 +2015,7,21,23,30,16.1,0.51,0.0636,0.67,80,788,482,1,12.200000000000001,80,788,0,482,0.257,77.68,59.33,0.14,996,2,106,1.8 +2015,7,22,0,30,17.8,0.43,0.1024,0.67,106,789,592,1,12.4,106,789,0,592,0.257,70.82000000000001,52.02,0.14,995,2.1,89,1.9000000000000001 +2015,7,22,1,30,18.3,0.48,0.1024,0.67,109,811,651,1,12.5,109,811,0,651,0.257,68.78,48.1,0.14,994,2.2,85,1.8 +2015,7,22,2,30,18.400000000000002,0.48,0.09920000000000001,0.67,107,810,645,8,12.5,271,46,0,301,0.257,68.47,48.4,0.14,993,2.3000000000000003,85,1.8 +2015,7,22,3,30,18.1,0.63,0.0897,0.67,97,796,578,8,12.600000000000001,250,57,0,285,0.257,70.28,52.85,0.14,992,2.4000000000000004,86,1.7000000000000002 +2015,7,22,4,30,17.3,0.68,0.08950000000000001,0.67,88,739,451,4,12.9,203,80,0,242,0.257,75.25,60.52,0.14,992,2.5,92,1.3 +2015,7,22,5,30,16.3,0.6900000000000001,0.0897,0.67,72,623,282,7,13.5,112,5,0,113,0.258,83.75,70.37,0.14,992,2.6,103,0.8 +2015,7,22,6,30,15.3,0.72,0.0975,0.67,45,354,97,6,13.9,37,0,3,37,0.259,91.27,81.56,0.14,992,2.7,113,0.6000000000000001 +2015,7,22,7,30,14.600000000000001,0.7000000000000001,0.0947,0.67,0,0,0,6,13.8,0,0,0,0,0.261,95,93.78,0.14,993,2.8000000000000003,120,0.6000000000000001 +2015,7,22,8,30,14,0.65,0.0884,0.67,0,0,0,8,13.8,0,0,0,0,0.262,98.78,106.46000000000001,0.14,993,2.8000000000000003,122,0.6000000000000001 +2015,7,22,9,30,13.700000000000001,0.63,0.0879,0.67,0,0,0,7,13.700000000000001,0,0,0,0,0.264,100,119.49000000000001,0.14,993,2.7,119,0.6000000000000001 +2015,7,22,10,30,13.4,0.61,0.08650000000000001,0.67,0,0,0,7,13.4,0,0,0,0,0.266,100,132.73,0.14,993,2.7,111,0.6000000000000001 +2015,7,22,11,30,13.3,0.5700000000000001,0.08410000000000001,0.67,0,0,0,8,13.3,0,0,0,0,0.268,100,146.04,0.14,993,2.7,102,0.6000000000000001 +2015,7,22,12,30,13.200000000000001,0.58,0.0884,0.67,0,0,0,8,13.200000000000001,0,0,0,0,0.269,100,159.17000000000002,0.14,993,2.6,95,0.6000000000000001 +2015,7,22,13,30,13.200000000000001,0.5700000000000001,0.0877,0.67,0,0,0,4,13.200000000000001,0,0,0,0,0.27,100,170.78,0.14,992,2.6,90,0.7000000000000001 +2015,7,22,14,30,13.100000000000001,0.54,0.08270000000000001,0.67,0,0,0,1,13.100000000000001,0,0,0,0,0.271,100,169.45000000000002,0.14,992,2.6,85,0.7000000000000001 +2015,7,22,15,30,13.100000000000001,0.56,0.08370000000000001,0.67,0,0,0,8,13.100000000000001,0,0,0,0,0.271,100,157.36,0.14,992,2.6,86,0.7000000000000001 +2015,7,22,16,30,13,0.56,0.08170000000000001,0.67,0,0,0,8,13,0,0,0,0,0.271,100,144.17000000000002,0.14,991,2.6,91,0.7000000000000001 +2015,7,22,17,30,12.9,0.53,0.0777,0.67,0,0,0,4,12.9,0,0,0,0,0.271,100,130.85,0.14,991,2.6,96,0.7000000000000001 +2015,7,22,18,30,12.8,0.55,0.0799,0.67,0,0,0,8,12.8,0,0,0,0,0.271,100,117.63,0.14,991,2.6,102,0.7000000000000001 +2015,7,22,19,30,12.8,0.55,0.0794,0.67,0,0,0,3,12.8,0,0,0,0,0.27,100,104.63,0.14,992,2.7,106,0.7000000000000001 +2015,7,22,20,30,13.4,0.53,0.0756,0.67,0,0,0,3,13.4,0,0,0,0,0.27,99.86,92,0.14,992,2.7,105,0.7000000000000001 +2015,7,22,21,30,14.9,0.56,0.07740000000000001,0.67,48,435,124,3,14.200000000000001,19,0,3,19,0.269,95.84,79.87,0.14,992,2.7,99,0.9 +2015,7,22,22,30,16.400000000000002,0.58,0.07300000000000001,0.67,70,664,310,4,15.3,55,0,0,55,0.268,93.22,68.81,0.14,992,2.7,86,1.1 +2015,7,22,23,30,17,0.64,0.0563,0.67,76,785,478,1,16,76,785,0,478,0.268,94.09,59.18,0.14,992,2.7,78,1.2000000000000002 +2015,7,23,0,30,18.7,0.49,0.0867,0.67,97,794,588,1,16,97,794,0,588,0.266,84.15,51.85,0.14,992,2.8000000000000003,58,1.1 +2015,7,23,1,30,19.6,0.5700000000000001,0.07980000000000001,0.67,97,824,649,1,15.4,97,824,0,649,0.266,76.76,47.910000000000004,0.14,991,2.8000000000000003,57,1 +2015,7,23,2,30,20.1,0.62,0.0717,0.67,93,830,646,1,14.9,93,830,0,646,0.266,72.10000000000001,48.2,0.14,990,2.9000000000000004,61,0.9 +2015,7,23,3,30,20.3,0.67,0.0741,0.67,89,805,577,1,14.600000000000001,89,805,0,577,0.265,69.76,52.660000000000004,0.14,989,2.9000000000000004,65,1 +2015,7,23,4,30,20.1,0.6900000000000001,0.077,0.67,82,747,452,1,14.4,82,747,0,452,0.265,69.89,60.36,0.14,989,2.9000000000000004,70,1 +2015,7,23,5,30,19.200000000000003,0.67,0.0765,0.67,68,636,283,1,14.600000000000001,68,636,0,283,0.264,74.62,70.23,0.14,989,3,76,0.8 +2015,7,23,6,30,17.6,0.74,0.0956,0.67,45,357,98,1,15.4,45,357,0,98,0.264,87.14,81.44,0.14,990,3,78,0.6000000000000001 +2015,7,23,7,30,16.400000000000002,0.75,0.10830000000000001,0.67,0,0,0,0,15.200000000000001,0,0,0,0,0.263,92.79,93.68,0.14,990,3,76,0.6000000000000001 +2015,7,23,8,30,15.9,0.7000000000000001,0.1071,0.67,0,0,0,4,15.4,0,0,0,0,0.263,96.7,106.37,0.14,990,3,72,0.6000000000000001 +2015,7,23,9,30,15.600000000000001,0.67,0.1105,0.67,0,0,0,7,15.5,0,0,0,0,0.262,99.58,119.41,0.14,991,3,65,0.6000000000000001 +2015,7,23,10,30,15.4,0.65,0.1091,0.67,0,0,0,8,15.4,0,0,0,0,0.261,100,132.65,0.14,991,3,55,0.6000000000000001 +2015,7,23,11,30,15.3,0.62,0.09870000000000001,0.67,0,0,0,4,15.3,0,0,0,0,0.261,100,145.96,0.14,991,3,46,0.6000000000000001 +2015,7,23,12,30,15.200000000000001,0.67,0.0949,0.67,0,0,0,1,15.200000000000001,0,0,0,0,0.261,100,159.08,0.14,991,2.9000000000000004,38,0.6000000000000001 +2015,7,23,13,30,15.100000000000001,0.7000000000000001,0.0889,0.67,0,0,0,3,15.100000000000001,0,0,0,0,0.26,100,170.62,0.14,990,2.9000000000000004,29,0.6000000000000001 +2015,7,23,14,30,15,0.71,0.0776,0.67,0,0,0,1,15,0,0,0,0,0.26,100,169.31,0.14,990,2.9000000000000004,24,0.6000000000000001 +2015,7,23,15,30,14.9,0.75,0.07250000000000001,0.67,0,0,0,8,14.9,0,0,0,0,0.26,100,157.29,0.14,989,3,19,0.6000000000000001 +2015,7,23,16,30,14.600000000000001,0.78,0.0669,0.67,0,0,0,8,14.600000000000001,0,0,0,0,0.259,100,144.11,0.14,989,3,14,0.6000000000000001 +2015,7,23,17,30,14.4,0.8,0.0599,0.67,0,0,0,8,14.4,0,0,0,0,0.26,100,130.79,0.14,988,3,9,0.7000000000000001 +2015,7,23,18,30,14.100000000000001,0.86,0.058300000000000005,0.67,0,0,0,4,14.100000000000001,0,0,0,0,0.26,100,117.56,0.14,989,3,181,0.7000000000000001 +2015,7,23,19,30,14,0.9,0.0543,0.67,0,0,0,4,14,0,0,0,0,0.261,100,104.55,0.14,989,3.1,351,0.7000000000000001 +2015,7,23,20,30,14.600000000000001,0.92,0.049,0.67,0,0,0,4,14.600000000000001,0,0,1,0,0.26,100,91.91,0.14,990,3.1,343,0.7000000000000001 +2015,7,23,21,30,16.2,0.98,0.0488,0.67,41,498,129,3,15.5,62,104,3,81,0.259,95.47,79.77,0.14,990,3.1,340,1 +2015,7,23,22,30,18.1,1.01,0.0472,0.67,60,702,315,8,16.3,142,174,0,205,0.259,89.17,68.68,0.14,990,3.2,343,1.2000000000000002 +2015,7,23,23,30,19.1,1.04,0.0429,0.67,69,797,479,1,16.6,69,797,0,479,0.258,85.44,59.02,0.14,990,3.2,346,1.4000000000000001 +2015,7,24,0,30,21.400000000000002,0.75,0.0733,0.67,89,809,591,8,16.400000000000002,277,173,0,385,0.258,73.02,51.660000000000004,0.14,989,3.1,348,1.4000000000000001 +2015,7,24,1,30,22.400000000000002,0.78,0.0697,0.67,91,833,652,7,16,284,55,0,321,0.258,67.04,47.71,0.14,988,3.1,346,1.3 +2015,7,24,2,30,23,0.8,0.0678,0.67,89,833,647,1,15.600000000000001,89,833,0,647,0.257,63.120000000000005,48,0.14,987,3.2,345,1.3 +2015,7,24,3,30,23.200000000000003,0.8300000000000001,0.0694,0.67,86,807,577,3,15.4,249,318,0,443,0.255,61.550000000000004,52.480000000000004,0.14,986,3.3000000000000003,342,1.2000000000000002 +2015,7,24,4,30,22.900000000000002,0.84,0.07100000000000001,0.67,79,752,453,1,15.4,79,752,0,453,0.255,62.49,60.2,0.14,986,3.3000000000000003,342,1 +2015,7,24,5,30,21.900000000000002,0.86,0.0697,0.67,65,646,285,1,15.700000000000001,65,646,0,285,0.254,67.77,70.10000000000001,0.14,986,3.4000000000000004,351,0.7000000000000001 +2015,7,24,6,30,20.3,0.91,0.07350000000000001,0.67,41,400,101,1,17,41,400,0,101,0.254,81.5,81.33,0.14,986,3.4000000000000004,180,0.6000000000000001 +2015,7,24,7,30,19,0.9400000000000001,0.0732,0.67,0,0,0,0,16.7,0,0,0,0,0.253,86.43,93.58,0.14,987,3.4000000000000004,2,0.7000000000000001 +2015,7,24,8,30,18.1,0.96,0.0693,0.67,0,0,0,0,16.6,0,0,0,0,0.253,91.07000000000001,106.28,0.14,987,3.5,179,0.7000000000000001 +2015,7,24,9,30,17.400000000000002,0.97,0.0663,0.67,0,0,0,4,16.6,0,0,0,0,0.253,95.31,119.33,0.14,987,3.5,347,0.7000000000000001 +2015,7,24,10,30,16.8,0.97,0.06430000000000001,0.67,0,0,0,8,16.6,0,0,0,0,0.253,98.57000000000001,132.58,0.14,987,3.5,332,0.7000000000000001 +2015,7,24,11,30,16.3,1,0.0587,0.67,0,0,0,8,16.3,0,0,0,0,0.253,100,145.89000000000001,0.14,987,3.4000000000000004,318,0.7000000000000001 +2015,7,24,12,30,15.8,1.05,0.054200000000000005,0.67,0,0,0,3,15.8,0,0,0,0,0.252,100,158.99,0.14,987,3.5,303,0.7000000000000001 +2015,7,24,13,30,15.4,1.1,0.054200000000000005,0.67,0,0,0,4,15.4,0,0,0,0,0.25,100,170.45000000000002,0.14,987,3.5,286,0.7000000000000001 +2015,7,24,14,30,15.100000000000001,1.11,0.0582,0.67,0,0,0,4,15.100000000000001,0,0,0,0,0.25,100,169.17000000000002,0.14,987,3.5,272,0.7000000000000001 +2015,7,24,15,30,15,1.11,0.0654,0.67,0,0,0,4,15,0,0,0,0,0.25,100,157.21,0.14,987,3.6,265,0.6000000000000001 +2015,7,24,16,30,14.9,1.11,0.0717,0.67,0,0,0,4,14.9,0,0,0,0,0.25,100,144.05,0.14,987,3.5,263,0.6000000000000001 +2015,7,24,17,30,14.700000000000001,1.12,0.0762,0.67,0,0,0,4,14.700000000000001,0,0,0,0,0.251,100,130.73,0.14,987,3.4000000000000004,259,0.7000000000000001 +2015,7,24,18,30,14.5,1.1400000000000001,0.07880000000000001,0.67,0,0,0,4,14.5,0,0,0,0,0.252,100,117.49000000000001,0.14,987,3.3000000000000003,252,0.7000000000000001 +2015,7,24,19,30,14.3,1.1500000000000001,0.0799,0.67,0,0,0,4,14.3,0,0,0,0,0.253,100,104.47,0.14,988,3.2,248,0.7000000000000001 +2015,7,24,20,30,14.700000000000001,1.1400000000000001,0.0809,0.67,0,0,0,4,14.5,0,0,0,0,0.253,98.46000000000001,91.81,0.14,989,3.1,250,0.8 +2015,7,24,21,30,15.5,1.1300000000000001,0.0829,0.67,47,447,127,4,15.100000000000001,12,0,3,12,0.254,97.46000000000001,79.66,0.14,990,3.1,257,1.1 +2015,7,24,22,30,16.400000000000002,1.1300000000000001,0.0838,0.67,71,658,311,4,15.5,33,0,0,33,0.254,94.19,68.54,0.14,990,3.1,259,1.3 +2015,7,24,23,30,16.900000000000002,1.12,0.0824,0.67,83,757,475,4,15.5,71,0,0,71,0.254,91.5,58.86,0.14,990,3.1,255,1.3 +2015,7,25,0,30,19.200000000000003,1.1400000000000001,0.1126,0.67,103,779,588,3,14.8,276,108,0,343,0.254,75.43,51.47,0.14,990,3,255,1.5 +2015,7,25,1,30,20.900000000000002,1.1300000000000001,0.1119,0.67,107,801,648,3,13.700000000000001,301,90,0,362,0.255,63.28,47.5,0.14,989,3,269,1.5 +2015,7,25,2,30,22.3,1.1300000000000001,0.10360000000000001,0.67,103,809,647,1,13.100000000000001,103,809,0,647,0.256,55.9,47.79,0.14,988,2.9000000000000004,278,1.5 +2015,7,25,3,30,23,0.98,0.0627,0.67,83,823,587,1,12.8,83,823,0,587,0.255,52.660000000000004,52.29,0.14,987,2.9000000000000004,275,1.6 +2015,7,25,4,30,23,0.97,0.06670000000000001,0.67,77,767,461,1,12.700000000000001,77,767,0,461,0.255,52.4,60.04,0.14,987,2.9000000000000004,268,1.5 +2015,7,25,5,30,22.200000000000003,0.97,0.0723,0.67,66,655,291,1,12.9,66,655,0,291,0.254,55.77,69.96000000000001,0.14,987,2.9000000000000004,261,1 +2015,7,25,6,30,20.700000000000003,0.98,0.0789,0.67,42,404,104,1,14.3,42,404,0,104,0.253,66.71000000000001,81.21000000000001,0.14,987,3,263,0.6000000000000001 +2015,7,25,7,30,19.1,0.99,0.07970000000000001,0.67,0,0,0,0,13.5,0,0,0,0,0.252,70.14,93.48,0.14,988,3,268,0.5 +2015,7,25,8,30,17.900000000000002,0.99,0.07740000000000001,0.67,0,0,0,3,13.4,0,0,0,0,0.252,74.97,106.19,0.14,988,3.1,267,0.5 +2015,7,25,9,30,17,0.99,0.0767,0.67,0,0,0,0,13.200000000000001,0,0,0,0,0.252,78.44,119.25,0.14,989,3.1,262,0.6000000000000001 +2015,7,25,10,30,16.3,0.99,0.0743,0.67,0,0,0,0,13.100000000000001,0,0,0,0,0.253,81.29,132.5,0.14,990,3.1,255,0.6000000000000001 +2015,7,25,11,30,15.600000000000001,1,0.0751,0.67,0,0,0,0,12.9,0,0,0,0,0.253,84.11,145.81,0.14,990,3.1,247,0.7000000000000001 +2015,7,25,12,30,15.200000000000001,1.01,0.0806,0.67,0,0,0,0,12.700000000000001,0,0,0,0,0.254,85.16,158.9,0.14,990,3.1,241,0.7000000000000001 +2015,7,25,13,30,14.8,1.03,0.084,0.67,0,0,0,0,12.5,0,0,0,0,0.255,86.04,170.28,0.14,989,3.1,241,0.7000000000000001 +2015,7,25,14,30,14.4,1.04,0.08800000000000001,0.67,0,0,0,3,12.4,0,0,0,0,0.256,87.54,169.02,0.14,989,3.1,245,0.7000000000000001 +2015,7,25,15,30,13.8,1.04,0.092,0.67,0,0,0,0,12.200000000000001,0,0,0,0,0.257,90.27,157.13,0.14,989,3.1,253,0.7000000000000001 +2015,7,25,16,30,13.3,1.03,0.0942,0.67,0,0,0,4,12.100000000000001,0,0,0,0,0.257,92.54,143.98,0.14,988,3.1,258,0.7000000000000001 +2015,7,25,17,30,12.9,1.02,0.09630000000000001,0.67,0,0,0,1,12,0,0,0,0,0.257,94.26,130.66,0.14,988,3.1,259,0.6000000000000001 +2015,7,25,18,30,12.700000000000001,1.02,0.0994,0.67,0,0,0,1,11.9,0,0,0,0,0.257,95.05,117.41,0.14,989,3.1,262,0.6000000000000001 +2015,7,25,19,30,12.700000000000001,1.01,0.1015,0.67,0,0,0,3,11.9,0,0,0,0,0.256,94.76,104.38,0.14,989,3.2,266,0.6000000000000001 +2015,7,25,20,30,13.5,1.01,0.1005,0.67,0,0,0,3,11.9,0,0,0,0,0.255,90.03,91.71000000000001,0.14,990,3.2,271,0.8 +2015,7,25,21,30,15.5,1.01,0.09670000000000001,0.67,50,423,127,3,12.3,20,0,3,20,0.254,81.15,79.54,0.14,990,3.2,275,1 +2015,7,25,22,30,18.2,1.03,0.09230000000000001,0.67,74,646,312,3,12.9,55,0,0,55,0.254,71.25,68.4,0.14,989,3.2,283,1.3 +2015,7,25,23,30,19.8,1.03,0.0902,0.67,87,747,476,3,14.100000000000001,96,0,0,96,0.253,69.69,58.69,0.14,989,3.2,288,1.6 +2015,7,26,0,30,22.8,1.03,0.10890000000000001,0.67,103,779,590,3,15,270,77,0,319,0.253,61.370000000000005,51.28,0.14,988,3.2,291,2.1 +2015,7,26,1,30,24,1.03,0.11710000000000001,0.67,110,794,648,3,15.600000000000001,281,48,0,314,0.253,59.27,47.29,0.14,987,3.2,291,2.2 +2015,7,26,2,30,24.5,1.03,0.1223,0.67,112,786,642,1,16,112,786,0,642,0.253,59.25,47.58,0.14,986,3.3000000000000003,288,2.3000000000000003 +2015,7,26,3,30,24.400000000000002,0.97,0.10360000000000001,0.67,100,777,578,1,16.400000000000002,100,777,0,578,0.254,60.85,52.09,0.14,985,3.3000000000000003,282,2.3000000000000003 +2015,7,26,4,30,24.1,0.97,0.1033,0.67,91,721,453,1,16.5,91,721,0,453,0.255,62.46,59.870000000000005,0.14,985,3.3000000000000003,274,2.1 +2015,7,26,5,30,23.1,0.96,0.0989,0.67,74,617,286,1,16.5,74,617,0,286,0.255,66.57000000000001,69.82000000000001,0.14,985,3.2,262,1.6 +2015,7,26,6,30,21.200000000000003,0.97,0.10260000000000001,0.67,46,368,103,1,16.8,46,368,0,103,0.257,76.10000000000001,81.09,0.14,985,3.1,250,1.1 +2015,7,26,7,30,19.400000000000002,0.97,0.1044,0.67,0,0,0,1,16,0,0,0,0,0.258,80.84,93.37,0.14,986,2.9000000000000004,240,0.9 +2015,7,26,8,30,18.2,0.97,0.09570000000000001,0.67,0,0,0,0,15,0,0,0,0,0.259,81.60000000000001,106.10000000000001,0.14,988,2.8000000000000003,236,0.9 +2015,7,26,9,30,17,0.97,0.08070000000000001,0.67,0,0,0,0,13.8,0,0,0,0,0.259,81.27,119.17,0.14,989,2.6,236,0.9 +2015,7,26,10,30,15.9,0.96,0.06620000000000001,0.67,0,0,0,0,12.5,0,0,0,0,0.259,80.5,132.43,0.14,989,2.5,240,0.8 +2015,7,26,11,30,14.9,0.96,0.0551,0.67,0,0,0,0,11.4,0,0,0,0,0.259,79.56,145.74,0.14,989,2.4000000000000004,250,0.8 +2015,7,26,12,30,14,0.97,0.048400000000000006,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.259,79.89,158.8,0.14,989,2.3000000000000003,262,0.8 +2015,7,26,13,30,13.200000000000001,1,0.0456,0.67,0,0,0,0,10,0,0,0,0,0.259,81.06,170.1,0.14,989,2.2,270,0.7000000000000001 +2015,7,26,14,30,12.4,1.01,0.0454,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.259,83.21000000000001,168.86,0.14,989,2.1,270,0.8 +2015,7,26,15,30,11.8,1.01,0.0465,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.259,84.16,157.04,0.14,989,2,265,0.8 +2015,7,26,16,30,11.200000000000001,1,0.0482,0.67,0,0,0,0,8.700000000000001,0,0,0,0,0.259,84.79,143.9,0.14,989,2,262,0.8 +2015,7,26,17,30,10.700000000000001,1,0.05,0.67,0,0,0,0,8.3,0,0,0,0,0.258,84.91,130.59,0.14,989,1.9000000000000001,260,0.8 +2015,7,26,18,30,10.3,1.01,0.051800000000000006,0.67,0,0,0,0,7.9,0,0,0,0,0.258,84.86,117.34,0.14,990,1.9000000000000001,258,0.8 +2015,7,26,19,30,9.9,1.04,0.0534,0.67,0,0,0,0,7.5,0,0,0,0,0.258,85.27,104.29,0.14,991,1.9000000000000001,258,0.8 +2015,7,26,20,30,10.700000000000001,1.05,0.0555,0.67,0,0,0,1,7.300000000000001,0,0,0,0,0.257,79.7,91.61,0.14,991,1.9000000000000001,258,1.1 +2015,7,26,21,30,12.8,1.05,0.058300000000000005,0.67,44,519,139,1,7.6000000000000005,44,519,0,139,0.257,70.58,79.41,0.14,992,1.9000000000000001,250,1.6 +2015,7,26,22,30,14.9,1.04,0.0609,0.67,65,718,331,1,7.2,65,718,0,331,0.258,59.97,68.25,0.14,992,1.9000000000000001,236,2 +2015,7,26,23,30,16,1.03,0.0634,0.67,78,806,499,1,6.5,78,806,0,499,0.258,53.38,58.52,0.14,992,1.9000000000000001,229,2.1 +2015,7,27,0,30,18.3,1.08,0.0613,0.67,83,852,618,1,5.9,83,852,0,618,0.259,44.18,51.08,0.13,991,2,234,2.3000000000000003 +2015,7,27,1,30,19.5,1.08,0.060700000000000004,0.67,86,872,680,1,5.4,86,872,0,680,0.259,39.67,47.07,0.13,991,2,239,2.4000000000000004 +2015,7,27,2,30,20.1,1.07,0.059500000000000004,0.67,85,872,676,1,5.1000000000000005,85,872,0,676,0.26,37.27,47.36,0.13,990,2,240,2.5 +2015,7,27,3,30,20.200000000000003,1.16,0.053700000000000005,0.67,79,859,609,8,4.7,237,384,0,474,0.261,36.12,51.9,0.13,990,1.9000000000000001,238,2.5 +2015,7,27,4,30,19.5,1.1300000000000001,0.0506,0.67,71,814,482,8,4.2,164,457,0,394,0.263,36.45,59.7,0.13,990,1.9000000000000001,235,2.4000000000000004 +2015,7,27,5,30,18.1,1.08,0.0494,0.67,59,722,310,8,3.9000000000000004,87,524,0,269,0.265,38.94,69.67,0.13,990,1.7000000000000002,234,1.8 +2015,7,27,6,30,16.1,1.03,0.0509,0.67,39,495,117,8,4.800000000000001,45,337,3,98,0.267,47.06,80.97,0.13,991,1.6,238,1.1 +2015,7,27,7,30,14.600000000000001,0.96,0.0555,0.67,0,0,0,8,4.9,0,0,0,0,0.268,52.120000000000005,93.27,0.13,992,1.5,242,0.9 +2015,7,27,8,30,13.700000000000001,0.93,0.057600000000000005,0.67,0,0,0,1,4.6000000000000005,0,0,0,0,0.269,54.02,106.01,0.13,993,1.4000000000000001,243,0.8 +2015,7,27,9,30,12.9,0.92,0.0582,0.67,0,0,0,1,4.2,0,0,0,0,0.269,55.35,119.09,0.13,993,1.3,240,0.8 +2015,7,27,10,30,12.100000000000001,0.91,0.0601,0.67,0,0,0,8,3.8000000000000003,0,0,0,0,0.269,56.96,132.36,0.13,994,1.2000000000000002,235,0.8 +2015,7,27,11,30,11.200000000000001,0.92,0.058300000000000005,0.67,0,0,0,3,3.6,0,0,0,0,0.269,59.44,145.66,0.13,994,1.2000000000000002,230,0.8 +2015,7,27,12,30,10.100000000000001,0.93,0.052700000000000004,0.67,0,0,0,1,3.3000000000000003,0,0,0,0,0.27,62.54,158.70000000000002,0.13,994,1.2000000000000002,225,0.8 +2015,7,27,13,30,9.200000000000001,0.9500000000000001,0.049100000000000005,0.67,0,0,0,1,3,0,0,0,0,0.27,65.27,169.92000000000002,0.13,994,1.2000000000000002,222,0.8 +2015,7,27,14,30,8.4,0.9500000000000001,0.048,0.67,0,0,0,1,3.1,0,0,0,0,0.269,69.2,168.70000000000002,0.13,994,1.2000000000000002,220,0.8 +2015,7,27,15,30,7.800000000000001,0.93,0.0489,0.67,0,0,0,1,3.2,0,0,0,0,0.269,72.78,156.94,0.13,994,1.2000000000000002,216,0.8 +2015,7,27,16,30,7.300000000000001,0.9,0.0509,0.67,0,0,0,3,3.3000000000000003,0,0,0,0,0.27,75.77,143.82,0.13,994,1.2000000000000002,210,0.8 +2015,7,27,17,30,7,0.85,0.053000000000000005,0.67,0,0,0,3,3.3000000000000003,0,0,0,0,0.271,77.25,130.51,0.13,995,1.2000000000000002,202,0.8 +2015,7,27,18,30,6.800000000000001,0.79,0.0557,0.67,0,0,0,3,3.2,0,0,0,0,0.273,77.73,117.25,0.13,995,1.2000000000000002,195,0.8 +2015,7,27,19,30,6.6000000000000005,0.75,0.056900000000000006,0.67,0,0,0,8,3.1,0,0,0,0,0.276,78.46000000000001,104.2,0.13,996,1.2000000000000002,193,0.8 +2015,7,27,20,30,7.5,0.73,0.0563,0.67,0,0,0,3,3,0,0,0,0,0.278,73.22,91.5,0.13,996,1.1,188,1.1 +2015,7,27,21,30,9.8,0.72,0.054900000000000004,0.67,45,544,146,3,2.9000000000000004,47,0,3,47,0.28,62.35,79.29,0.13,997,1,172,1.5 +2015,7,27,22,30,12.4,0.71,0.052500000000000005,0.67,65,753,346,1,2.9000000000000004,65,753,0,346,0.281,52.51,68.1,0.13,997,1,153,2 +2015,7,27,23,30,13.8,0.73,0.050300000000000004,0.67,75,847,519,1,4,75,847,0,519,0.281,51.75,58.34,0.13,997,1,144,2.2 +2015,7,28,0,30,16.5,0.67,0.054900000000000004,0.67,84,889,645,1,5.1000000000000005,84,889,0,645,0.281,46.87,50.870000000000005,0.13,997,0.9,135,1.9000000000000001 +2015,7,28,1,30,17.5,0.71,0.055200000000000006,0.67,86,908,708,1,5.4,86,908,0,708,0.28,44.87,46.84,0.13,996,0.9,134,1.7000000000000002 +2015,7,28,2,30,18.1,0.74,0.0558,0.67,86,907,703,1,5.2,86,907,0,703,0.28,42.54,47.14,0.13,995,0.9,131,1.6 +2015,7,28,3,30,18.3,0.8,0.055900000000000005,0.67,83,886,632,1,4.800000000000001,83,886,0,632,0.281,40.85,51.69,0.13,995,0.9,126,1.5 +2015,7,28,4,30,18,0.8300000000000001,0.057100000000000005,0.67,76,835,499,1,4.4,76,835,1,499,0.28200000000000003,40.45,59.53,0.13,995,0.9,118,1.5 +2015,7,28,5,30,16.8,0.84,0.0575,0.67,63,734,320,1,4.1000000000000005,63,734,0,320,0.28300000000000003,42.97,69.53,0.13,995,0.9,110,1.2000000000000002 +2015,7,28,6,30,14.5,0.85,0.056100000000000004,0.67,41,504,121,1,5.9,41,504,0,121,0.28300000000000003,56.42,80.85000000000001,0.13,996,0.9,101,0.9 +2015,7,28,7,30,12.4,0.87,0.0538,0.67,0,0,0,3,5.7,0,0,0,0,0.28300000000000003,63.72,93.17,0.13,996,0.9,99,0.9 +2015,7,28,8,30,11.3,0.88,0.051000000000000004,0.67,0,0,0,1,5.7,0,0,0,0,0.28400000000000003,68.5,105.92,0.13,997,0.9,104,0.8 +2015,7,28,9,30,10.5,0.9,0.0487,0.67,0,0,0,0,5.7,0,0,0,0,0.28400000000000003,72.17,119.01,0.13,997,0.9,113,0.8 +2015,7,28,10,30,9.8,0.91,0.0471,0.67,0,0,0,1,5.6000000000000005,0,0,0,0,0.28500000000000003,75.28,132.28,0.13,998,0.9,127,0.8 +2015,7,28,11,30,9.200000000000001,0.92,0.046400000000000004,0.67,0,0,0,1,5.5,0,0,0,0,0.28600000000000003,77.77,145.58,0.13,998,0.9,144,0.8 +2015,7,28,12,30,8.6,0.9400000000000001,0.0465,0.67,0,0,0,1,5.4,0,0,0,0,0.28800000000000003,80.54,158.6,0.13,997,0.9,159,0.8 +2015,7,28,13,30,7.9,0.9500000000000001,0.0475,0.67,0,0,0,1,5.4,0,0,0,0,0.289,83.97,169.73,0.13,997,0.9,171,0.8 +2015,7,28,14,30,7.4,0.9500000000000001,0.0495,0.67,0,0,0,0,5.300000000000001,0,0,0,0,0.289,86.34,168.52,0.13,997,1,181,0.8 +2015,7,28,15,30,6.800000000000001,0.9500000000000001,0.052000000000000005,0.67,0,0,0,0,5.2,0,0,0,0,0.29,89.73,156.84,0.13,997,1,186,0.8 +2015,7,28,16,30,6.4,0.9500000000000001,0.0536,0.67,0,0,0,0,5.2,0,0,0,0,0.291,92.23,143.74,0.13,997,1,187,0.8 +2015,7,28,17,30,6.2,0.93,0.0551,0.67,0,0,0,0,5.300000000000001,0,0,0,0,0.292,93.68,130.42000000000002,0.13,997,1,186,0.8 +2015,7,28,18,30,5.9,0.92,0.0562,0.67,0,0,0,0,5.300000000000001,0,0,0,0,0.293,95.83,117.16,0.13,998,1.1,184,0.8 +2015,7,28,19,30,5.800000000000001,0.91,0.057600000000000005,0.67,0,0,0,3,5.300000000000001,0,0,0,0,0.294,96.64,104.10000000000001,0.13,998,1.1,183,0.8 +2015,7,28,20,30,6.9,0.91,0.058600000000000006,0.67,0,0,0,3,5.300000000000001,0,0,0,0,0.294,89.77,91.39,0.13,999,1.1,185,1 +2015,7,28,21,30,9.4,0.91,0.057600000000000005,0.67,45,544,147,1,5.5,45,544,0,147,0.294,76.59,79.15,0.13,999,1.1,184,1.3 +2015,7,28,22,30,12.600000000000001,0.92,0.0546,0.67,64,751,346,1,5.6000000000000005,64,751,0,346,0.294,62.52,67.95,0.13,999,1.1,165,1.7000000000000002 +2015,7,28,23,30,14.4,0.93,0.0516,0.67,74,844,520,1,6.5,74,844,0,520,0.294,59.04,58.15,0.13,999,1.1,150,2 +2015,7,29,0,30,17.400000000000002,0.81,0.055,0.67,83,884,643,0,7.1000000000000005,83,884,0,643,0.292,50.67,50.660000000000004,0.14,998,1.1,137,1.8 +2015,7,29,1,30,18.400000000000002,0.8,0.054700000000000006,0.67,86,903,706,0,7,86,903,0,706,0.29,47.24,46.61,0.14,997,1.1,131,1.7000000000000002 +2015,7,29,2,30,19,0.81,0.053500000000000006,0.67,85,903,702,0,6.5,85,903,0,702,0.28700000000000003,44.160000000000004,46.910000000000004,0.14,996,1.1,123,1.6 +2015,7,29,3,30,19.1,0.79,0.0541,0.67,82,881,631,0,6.1000000000000005,82,881,0,631,0.28400000000000003,42.58,51.49,0.14,995,1.1,116,1.6 +2015,7,29,4,30,18.8,0.8,0.052500000000000005,0.67,74,834,500,1,5.800000000000001,74,834,0,500,0.28200000000000003,42.53,59.35,0.14,995,1.1,112,1.5 +2015,7,29,5,30,17.6,0.8,0.052500000000000005,0.67,62,735,321,0,5.7,62,735,0,321,0.281,45.6,69.38,0.14,995,1.1,106,1.1 +2015,7,29,6,30,15.3,0.86,0.0507,0.67,40,512,123,1,7.6000000000000005,40,512,0,123,0.28,59.89,80.73,0.14,995,1.1,98,0.8 +2015,7,29,7,30,13.3,0.87,0.0485,0.67,0,0,0,0,7.1000000000000005,0,0,0,0,0.28,66.21000000000001,93.06,0.14,996,1.1,93,0.8 +2015,7,29,8,30,12.3,0.9,0.046,0.67,0,0,0,0,7.300000000000001,0,0,0,0,0.28,71.5,105.83,0.14,996,1.1,94,0.8 +2015,7,29,9,30,11.700000000000001,0.92,0.0436,0.67,0,0,0,0,7.6000000000000005,0,0,0,0,0.281,75.8,118.93,0.14,997,1.1,100,0.8 +2015,7,29,10,30,11.200000000000001,0.9400000000000001,0.0422,0.67,0,0,0,0,7.800000000000001,0,0,0,0,0.28200000000000003,79.73,132.21,0.14,997,1.2000000000000002,111,0.8 +2015,7,29,11,30,10.600000000000001,0.9500000000000001,0.0422,0.67,0,0,0,0,8.200000000000001,0,0,0,0,0.281,85,145.5,0.14,997,1.2000000000000002,124,0.8 +2015,7,29,12,30,10.100000000000001,0.9500000000000001,0.044000000000000004,0.67,0,0,0,1,8.5,0,0,0,0,0.281,90.07000000000001,158.5,0.14,996,1.3,134,0.8 +2015,7,29,13,30,9.700000000000001,0.9400000000000001,0.0472,0.67,0,0,0,0,8.8,0,0,0,0,0.28200000000000003,94.36,169.54,0.14,996,1.4000000000000001,144,0.8 +2015,7,29,14,30,9.3,0.9,0.0505,0.67,0,0,0,0,9.1,0,0,0,0,0.28200000000000003,98.58,168.34,0.14,996,1.5,159,0.8 +2015,7,29,15,30,8.9,0.86,0.054200000000000005,0.67,0,0,0,0,8.9,0,0,0,0,0.28200000000000003,100,156.73,0.14,995,1.5,175,0.8 +2015,7,29,16,30,8.6,0.8300000000000001,0.0603,0.67,0,0,0,0,8.6,0,0,0,0,0.281,100,143.65,0.14,995,1.6,190,0.8 +2015,7,29,17,30,8.3,0.81,0.068,0.67,0,0,0,0,8.3,0,0,0,0,0.28,100,130.34,0.14,994,1.6,199,0.8 +2015,7,29,18,30,8.1,0.81,0.07540000000000001,0.67,0,0,0,1,8.1,0,0,0,0,0.28,100,117.07000000000001,0.14,994,1.7000000000000002,203,0.7000000000000001 +2015,7,29,19,30,8,0.8200000000000001,0.07980000000000001,0.67,0,0,0,3,8,0,0,0,0,0.28,100,103.99000000000001,0.14,994,1.7000000000000002,206,0.7000000000000001 +2015,7,29,20,30,9,0.8,0.0781,0.67,0,0,0,3,9,0,0,0,0,0.28,100,91.27,0.14,995,1.7000000000000002,208,0.9 +2015,7,29,21,30,11.4,0.79,0.0738,0.67,49,499,144,1,9.4,49,499,0,144,0.28200000000000003,87.52,79.02,0.14,995,1.6,199,0.9 +2015,7,29,22,30,14.4,0.8200000000000001,0.0668,0.67,69,718,341,1,10.200000000000001,69,718,1,341,0.28400000000000003,75.87,67.78,0.14,995,1.6,159,0.8 +2015,7,29,23,30,16.1,0.88,0.0594,0.67,78,820,513,1,10.9,78,820,1,513,0.28500000000000003,71.33,57.96,0.14,995,1.6,127,0.7000000000000001 +2015,7,30,0,30,18.6,0.8,0.0626,0.67,86,861,635,1,10.600000000000001,86,861,0,635,0.28600000000000003,59.74,50.44,0.14,994,1.6,92,0.7000000000000001 +2015,7,30,1,30,19.5,0.8300000000000001,0.0623,0.67,89,881,697,1,10.3,89,881,0,697,0.28500000000000003,55.36,46.38,0.14,993,1.6,85,0.7000000000000001 +2015,7,30,2,30,20.1,0.88,0.062,0.67,88,884,695,0,10.100000000000001,88,884,0,695,0.28500000000000003,52.550000000000004,46.68,0.14,992,1.5,80,0.8 +2015,7,30,3,30,20.3,0.89,0.06570000000000001,0.67,86,855,621,1,9.8,86,855,0,621,0.28400000000000003,51.04,51.28,0.14,991,1.6,75,0.8 +2015,7,30,4,30,20,0.93,0.0675,0.67,79,803,491,1,9.600000000000001,79,803,0,491,0.28300000000000003,51.25,59.18,0.14,991,1.6,71,0.8 +2015,7,30,5,30,19,0.9500000000000001,0.06910000000000001,0.67,67,700,315,1,9.5,67,700,0,315,0.28200000000000003,54.230000000000004,69.23,0.14,991,1.6,69,0.7000000000000001 +2015,7,30,6,30,16.900000000000002,0.97,0.0704,0.67,43,467,119,1,11,43,467,0,119,0.281,68.03,80.61,0.14,991,1.6,67,0.6000000000000001 +2015,7,30,7,30,14.8,1,0.06960000000000001,0.67,0,0,0,1,10.9,0,0,0,0,0.28,77.46000000000001,92.96000000000001,0.14,991,1.6,63,0.7000000000000001 +2015,7,30,8,30,13.700000000000001,1.01,0.06810000000000001,0.67,0,0,0,0,10.9,0,0,0,0,0.28,83.3,105.74000000000001,0.14,992,1.6,54,0.7000000000000001 +2015,7,30,9,30,13,1.03,0.067,0.67,0,0,0,0,11,0,0,0,0,0.28,87.79,118.85000000000001,0.14,992,1.6,43,0.7000000000000001 +2015,7,30,10,30,12.4,1.02,0.06570000000000001,0.67,0,0,0,0,11.200000000000001,0,0,0,0,0.28,92.4,132.13,0.14,992,1.5,29,0.8 +2015,7,30,11,30,11.9,1.02,0.0661,0.67,0,0,0,0,11.4,0,0,0,0,0.28,96.62,145.42000000000002,0.14,992,1.5,190,0.8 +2015,7,30,12,30,11.4,1.04,0.06720000000000001,0.67,0,0,0,0,11.4,0,0,0,0,0.279,100,158.4,0.14,991,1.5,345,0.8 +2015,7,30,13,30,10.8,1.04,0.06620000000000001,0.67,0,0,0,0,10.8,0,0,0,0,0.279,100,169.34,0.14,991,1.5,324,0.8 +2015,7,30,14,30,10.3,1.03,0.0648,0.67,0,0,0,0,10.3,0,0,0,0,0.278,100,168.15,0.14,991,1.4000000000000001,310,0.8 +2015,7,30,15,30,9.9,1.03,0.0645,0.67,0,0,0,0,9.9,0,0,0,0,0.277,100,156.62,0.14,990,1.4000000000000001,299,0.7000000000000001 +2015,7,30,16,30,9.5,1.04,0.0653,0.67,0,0,0,0,9.5,0,0,0,0,0.277,100,143.55,0.14,990,1.4000000000000001,291,0.7000000000000001 +2015,7,30,17,30,9.1,1.03,0.0668,0.67,0,0,0,0,9.1,0,0,0,0,0.276,100,130.24,0.14,990,1.5,287,0.7000000000000001 +2015,7,30,18,30,8.9,1.04,0.0728,0.67,0,0,0,0,8.9,0,0,0,0,0.276,100,116.97,0.14,990,1.5,289,0.7000000000000001 +2015,7,30,19,30,8.700000000000001,1.05,0.0731,0.67,0,0,0,1,8.700000000000001,0,0,0,0,0.277,100,103.89,0.14,991,1.5,289,0.7000000000000001 +2015,7,30,20,30,9.600000000000001,1.03,0.0679,0.67,0,0,0,1,9.600000000000001,0,0,0,0,0.278,100,91.14,0.14,991,1.4000000000000001,288,0.9 +2015,7,30,21,30,12,1.01,0.0631,0.67,46,536,150,1,10,46,536,0,150,0.279,87.41,78.88,0.14,991,1.4000000000000001,288,1.1 +2015,7,30,22,30,15,1.01,0.0572,0.67,65,747,350,1,10.3,65,747,0,350,0.28,73.34,67.62,0.14,991,1.3,288,1.4000000000000001 +2015,7,30,23,30,16.7,1.03,0.0546,0.67,75,839,523,1,10.100000000000001,75,839,0,523,0.281,65.11,57.77,0.14,991,1.3,288,1.6 +2015,7,31,0,30,20.1,1.09,0.0534,0.67,81,888,649,8,8.6,237,428,0,511,0.281,47.39,50.22,0.14,991,1.2000000000000002,272,1.9000000000000001 +2015,7,31,1,30,21.400000000000002,1.1300000000000001,0.0533,0.67,83,907,712,0,6.9,83,907,0,712,0.28,39.08,46.14,0.14,990,1.2000000000000002,263,1.9000000000000001 +2015,7,31,2,30,22.200000000000003,1.17,0.053500000000000006,0.67,83,909,709,0,5.7,83,909,0,709,0.281,34.28,46.45,0.14,989,1.1,255,1.8 +2015,7,31,3,30,22.5,1.35,0.052000000000000005,0.67,78,891,638,0,4.9,78,891,0,638,0.281,31.78,51.07,0.14,988,1.1,249,1.6 +2015,7,31,4,30,22.200000000000003,1.36,0.052500000000000005,0.67,72,844,506,0,4.5,72,844,0,506,0.28200000000000003,31.51,59,0.14,987,1.1,242,1.3 +2015,7,31,5,30,21,1.35,0.052700000000000004,0.67,60,744,326,1,4.6000000000000005,60,744,0,326,0.28200000000000003,34.230000000000004,69.09,0.14,987,1.2000000000000002,239,0.9 +2015,7,31,6,30,19,1.34,0.0524,0.67,39,527,126,1,7.5,39,527,0,126,0.28200000000000003,47.18,80.48,0.14,988,1.2000000000000002,244,0.5 +2015,7,31,7,30,17.1,1.32,0.0517,0.67,0,0,0,0,7,0,0,0,0,0.28300000000000003,51.54,92.85000000000001,0.14,988,1.1,245,0.5 +2015,7,31,8,30,15.700000000000001,1.3,0.050800000000000005,0.67,0,0,0,1,6.800000000000001,0,0,0,0,0.28300000000000003,55.28,105.65,0.14,989,1.1,240,0.5 +2015,7,31,9,30,14.4,1.28,0.0499,0.67,0,0,0,0,6.9,0,0,0,0,0.28300000000000003,60.54,118.77,0.14,989,1.1,240,0.6000000000000001 +2015,7,31,10,30,13.4,1.26,0.0487,0.67,0,0,0,0,6.9,0,0,0,0,0.28200000000000003,64.61,132.05,0.14,990,1.1,238,0.7000000000000001 +2015,7,31,11,30,12.5,1.24,0.047900000000000005,0.67,0,0,0,0,6.7,0,0,0,0,0.281,67.91,145.34,0.14,990,1.1,235,0.7000000000000001 +2015,7,31,12,30,11.8,1.24,0.0475,0.67,0,0,0,0,6.4,0,0,0,0,0.28,69.71000000000001,158.29,0.14,990,1.1,231,0.8 +2015,7,31,13,30,11,1.23,0.0472,0.67,0,0,0,0,6.1000000000000005,0,0,0,0,0.28,71.59,169.14000000000001,0.14,990,1.1,227,0.8 +2015,7,31,14,30,10.3,1.23,0.046900000000000004,0.67,0,0,0,0,5.6000000000000005,0,0,0,0,0.279,72.81,167.96,0.14,990,1.1,222,0.9 +2015,7,31,15,30,9.700000000000001,1.24,0.046700000000000005,0.67,0,0,0,0,5.2,0,0,0,0,0.279,73.79,156.5,0.14,989,1.1,216,0.9 +2015,7,31,16,30,9,1.24,0.046700000000000005,0.67,0,0,0,0,4.9,0,0,0,0,0.279,75.73,143.45000000000002,0.14,989,1.1,210,0.9 +2015,7,31,17,30,8.4,1.25,0.046900000000000004,0.67,0,0,0,0,4.7,0,0,0,0,0.279,77.43,130.15,0.14,989,1.1,205,0.9 +2015,7,31,18,30,8.1,1.25,0.0471,0.67,0,0,0,1,4.5,0,0,0,0,0.278,77.81,116.87,0.14,990,1.1,200,0.9 +2015,7,31,19,30,8,1.24,0.0466,0.67,0,0,0,1,4.3,0,0,0,0,0.276,77.24,103.77,0.14,990,1.1,195,0.8 +2015,7,31,20,30,8.9,1.25,0.0463,0.67,0,0,0,1,4.2,0,0,1,0,0.274,72.49,91.02,0.14,991,1.1,196,0.7000000000000001 +2015,7,31,21,30,11,1.27,0.046900000000000004,0.67,42,587,157,1,5.2,42,587,0,157,0.274,67.47,78.73,0.14,991,1.1,220,0.4 +2015,7,31,22,30,14.200000000000001,1.29,0.047900000000000005,0.67,61,770,356,1,5.300000000000001,61,770,0,356,0.273,55.03,67.45,0.14,992,1.2000000000000002,121,0.6000000000000001 +2015,7,31,23,30,16,1.31,0.049100000000000005,0.67,72,853,529,1,6.300000000000001,72,853,0,529,0.273,52.45,57.57,0.14,992,1.2000000000000002,1,0.9 +2019,8,1,0,30,18.400000000000002,0.89,0.056400000000000006,0.67,83,858,635,3,9.8,193,543,0,542,0.311,57.45,49.99,0.12,1001,2,127,2.1 +2019,8,1,1,30,18.8,0.89,0.0609,0.67,88,870,694,3,9.600000000000001,264,198,0,402,0.311,55.09,45.89,0.12,1001,2,128,2 +2019,8,1,2,30,18.7,0.9,0.06620000000000001,0.67,94,855,686,3,9.5,261,171,33,379,0.311,55.08,46.21,0.12,1000,2.1,127,1.9000000000000001 +2019,8,1,3,30,18.400000000000002,0.84,0.0906,0.67,99,813,612,7,9.5,246,109,0,315,0.31,56.050000000000004,50.86,0.12,1000,2.1,126,1.9000000000000001 +2019,8,1,4,30,18,0.85,0.0959,0.67,92,754,482,7,9.5,212,214,0,323,0.309,57.43,58.82,0.12,1000,2.2,124,1.8 +2019,8,1,5,30,17.400000000000002,0.84,0.0945,0.67,76,646,308,7,9.5,112,406,0,258,0.308,59.82,68.94,0.12,1000,2.2,122,1.4000000000000001 +2019,8,1,6,30,16.400000000000002,0.84,0.0969,0.67,50,406,118,7,10.200000000000001,57,95,100,73,0.309,66.6,80.36,0.12,1001,2.2,120,0.8 +2019,8,1,7,30,15.600000000000001,0.84,0.09140000000000001,0.67,0,0,0,7,10.600000000000001,0,0,0,0,0.31,72.01,92.75,0.12,1001,2.2,120,0.7000000000000001 +2019,8,1,8,30,15.200000000000001,0.8200000000000001,0.0833,0.67,0,0,0,7,10.600000000000001,0,0,0,0,0.311,74.10000000000001,105.57000000000001,0.12,1002,2.2,124,0.7000000000000001 +2019,8,1,9,30,14.8,0.81,0.0758,0.67,0,0,0,7,10.600000000000001,0,0,0,0,0.313,76.02,118.69,0.12,1003,2.1,133,0.7000000000000001 +2019,8,1,10,30,14.3,0.79,0.0697,0.67,0,0,0,7,10.5,0,0,0,0,0.314,78.06,131.98,0.12,1003,2.1,142,0.7000000000000001 +2019,8,1,11,30,13.8,0.78,0.0649,0.67,0,0,0,7,10.4,0,0,0,0,0.314,79.98,145.26,0.12,1002,2,150,0.7000000000000001 +2019,8,1,12,30,13.4,0.77,0.0611,0.67,0,0,0,7,10.3,0,0,0,0,0.314,81.72,158.18,0.12,1002,2,156,0.7000000000000001 +2019,8,1,13,30,13,0.77,0.0584,0.67,0,0,0,7,10.3,0,0,0,0,0.313,83.73,168.93,0.12,1002,1.9000000000000001,161,0.7000000000000001 +2019,8,1,14,30,12.600000000000001,0.77,0.056,0.67,0,0,0,7,10.3,0,0,33,0,0.311,85.88,167.74,0.12,1002,1.9000000000000001,169,0.7000000000000001 +2019,8,1,15,30,11.9,0.77,0.0528,0.67,0,0,0,7,10.3,0,0,0,0,0.31,89.85000000000001,156.36,0.12,1001,1.9000000000000001,178,0.7000000000000001 +2019,8,1,16,30,11.200000000000001,0.76,0.05,0.67,0,0,0,0,10.3,0,0,0,0,0.309,94.04,143.34,0.12,1001,1.8,183,0.8 +2019,8,1,17,30,10.600000000000001,0.76,0.0482,0.67,0,0,0,0,10.3,0,0,0,0,0.308,97.8,130.04,0.12,1001,1.8,184,0.8 +2019,8,1,18,30,10.200000000000001,0.76,0.0468,0.67,0,0,0,3,10.200000000000001,0,0,0,0,0.308,100,116.75,0.12,1002,1.8,184,0.8 +2019,8,1,19,30,9.9,0.76,0.0453,0.67,0,0,0,0,9.9,0,0,33,0,0.307,100,103.65,0.12,1002,1.8,184,0.8 +2019,8,1,20,30,10.9,0.75,0.044000000000000004,0.67,6,48,5,0,10.100000000000001,6,48,0,5,0.307,94.88,90.88,0.12,1003,1.8,185,1 +2019,8,1,21,30,13.200000000000001,0.76,0.0432,0.67,44,561,155,0,10.3,44,561,0,155,0.308,82.43,78.58,0.12,1003,1.8,172,1.6 +2019,8,1,22,30,15.9,0.78,0.0413,0.67,61,754,352,0,10.600000000000001,61,754,0,352,0.308,70.91,67.27,0.12,1003,1.8,151,2 +2019,8,1,23,30,17.2,0.8300000000000001,0.0385,0.67,69,842,523,0,10.5,69,842,0,523,0.308,64.82000000000001,57.36,0.12,1003,1.8,141,2.3000000000000003 +2019,8,2,0,30,19.3,0.72,0.051500000000000004,0.67,81,868,642,0,9.9,81,868,0,642,0.308,54.42,49.76,0.12,1002,1.8,132,2.2 +2019,8,2,1,30,20,0.72,0.0536,0.67,86,882,703,3,9.5,245,345,0,486,0.309,50.77,45.64,0.12,1002,1.9000000000000001,127,2.1 +2019,8,2,2,30,20.3,0.71,0.057600000000000005,0.67,89,874,696,0,9.3,89,874,33,696,0.309,49.14,45.97,0.12,1001,1.9000000000000001,121,2.1 +2019,8,2,3,30,20.1,0.71,0.0637,0.67,88,846,624,3,9.200000000000001,167,436,0,443,0.308,49.42,50.65,0.12,1001,1.9000000000000001,116,2.1 +2019,8,2,4,30,19.6,0.72,0.069,0.67,81,789,492,3,9.200000000000001,202,276,0,346,0.306,51.09,58.64,0.12,1001,2,112,2 +2019,8,2,5,30,18.6,0.71,0.0697,0.67,70,683,317,0,9.5,70,683,0,317,0.304,55.49,68.79,0.12,1001,2,109,1.6 +2019,8,2,6,30,17,0.73,0.07490000000000001,0.67,46,446,122,0,10.4,46,446,0,122,0.303,65.27,80.24,0.12,1002,2,108,1 +2019,8,2,7,30,15.600000000000001,0.74,0.07250000000000001,0.67,0,0,0,0,11,0,0,33,0,0.302,73.97,92.65,0.12,1002,2,110,0.8 +2019,8,2,8,30,14.9,0.73,0.06720000000000001,0.67,0,0,0,3,11.100000000000001,0,0,0,0,0.3,78.17,105.48,0.12,1003,2.1,116,0.7000000000000001 +2019,8,2,9,30,14.200000000000001,0.74,0.0621,0.67,0,0,0,0,11.3,0,0,0,0,0.299,82.59,118.61,0.12,1004,2.1,123,0.7000000000000001 +2019,8,2,10,30,13.5,0.75,0.0574,0.67,0,0,0,0,11.4,0,0,0,0,0.299,87.02,131.9,0.12,1004,2.1,131,0.7000000000000001 +2019,8,2,11,30,13,0.76,0.053500000000000006,0.67,0,0,0,0,11.5,0,0,0,0,0.299,90.34,145.18,0.12,1004,2.1,140,0.7000000000000001 +2019,8,2,12,30,12.4,0.76,0.0509,0.67,0,0,0,0,11.5,0,0,0,0,0.298,94.36,158.07,0.12,1003,2.1,152,0.7000000000000001 +2019,8,2,13,30,11.8,0.76,0.05,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.298,98.5,168.72,0.12,1003,2.1,162,0.7000000000000001 +2019,8,2,14,30,11.3,0.76,0.0504,0.67,0,0,0,0,11.3,0,0,33,0,0.299,100,167.53,0.12,1003,2.1,169,0.7000000000000001 +2019,8,2,15,30,10.8,0.76,0.0507,0.67,0,0,0,0,10.8,0,0,0,0,0.299,100,156.23,0.12,1003,2,175,0.7000000000000001 +2019,8,2,16,30,10.5,0.76,0.05,0.67,0,0,0,0,10.5,0,0,0,0,0.299,100,143.23,0.12,1002,2,180,0.7000000000000001 +2019,8,2,17,30,10.100000000000001,0.77,0.049100000000000005,0.67,0,0,0,0,10.100000000000001,0,0,0,0,0.299,100,129.93,0.12,1002,2,183,0.7000000000000001 +2019,8,2,18,30,9.9,0.79,0.0494,0.67,0,0,0,0,9.9,0,0,0,0,0.3,100,116.64,0.12,1003,1.9000000000000001,186,0.8 +2019,8,2,19,30,9.700000000000001,0.8,0.0497,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.299,100,103.53,0.12,1003,1.9000000000000001,190,0.8 +2019,8,2,20,30,10.700000000000001,0.81,0.05,0.67,6,46,6,0,10.200000000000001,6,46,0,6,0.298,96.59,90.14,0.12,1004,1.9000000000000001,195,0.9 +2019,8,2,21,30,12.8,0.8300000000000001,0.0506,0.67,46,549,156,0,10.8,46,549,0,156,0.297,87.58,78.42,0.12,1004,1.9000000000000001,190,1 +2019,8,2,22,30,15.4,0.87,0.0494,0.67,63,744,353,0,11.8,63,744,0,353,0.296,79.33,67.09,0.12,1005,1.9000000000000001,167,1.1 +2019,8,2,23,30,16.8,0.92,0.047900000000000005,0.67,74,832,525,0,12.100000000000001,74,832,0,525,0.295,73.82000000000001,57.15,0.12,1005,1.8,152,1.1 +2019,8,3,0,30,19.6,1.12,0.04,0.67,74,885,649,0,11.100000000000001,74,885,0,649,0.295,57.94,49.52,0.12,1003,1.8,154,1 +2019,8,3,1,30,20.8,1.1500000000000001,0.039900000000000005,0.67,77,902,711,0,9.8,77,902,0,711,0.295,49.4,45.38,0.12,1002,1.8,156,1 +2019,8,3,2,30,21.400000000000002,1.17,0.041100000000000005,0.67,81,894,705,0,8.9,81,894,33,705,0.295,44.77,45.72,0.12,1001,1.8,148,0.9 +2019,8,3,3,30,21.5,0.86,0.0567,0.67,84,861,632,0,8.3,84,861,0,632,0.295,42.64,50.43,0.12,1000,1.8,130,0.8 +2019,8,3,4,30,21.200000000000003,0.88,0.0587,0.67,77,810,501,0,7.9,77,810,0,501,0.294,42.47,58.46,0.12,1000,1.8,105,0.8 +2019,8,3,5,30,20.200000000000003,0.9,0.060200000000000004,0.67,66,710,325,0,7.800000000000001,66,710,0,325,0.293,44.85,68.64,0.12,1000,1.8,81,0.7000000000000001 +2019,8,3,6,30,18.1,0.9400000000000001,0.061900000000000004,0.67,44,487,128,0,9.200000000000001,44,487,0,128,0.293,56.1,80.12,0.12,1000,1.8,59,0.7000000000000001 +2019,8,3,7,30,16.1,0.96,0.0599,0.67,0,0,0,0,9.8,0,0,0,0,0.292,66.12,92.54,0.12,1001,1.8,45,0.8 +2019,8,3,8,30,15,0.97,0.058300000000000005,0.67,0,0,0,0,9.9,0,0,0,0,0.292,71.52,105.39,0.12,1001,1.8,39,0.8 +2019,8,3,9,30,14.4,0.97,0.056600000000000004,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.293,75.94,118.53,0.12,1002,1.8,32,0.7000000000000001 +2019,8,3,10,30,13.8,0.98,0.0553,0.67,0,0,0,0,10.4,0,0,0,0,0.294,80.05,131.83,0.12,1002,1.7000000000000002,22,0.7000000000000001 +2019,8,3,11,30,13.4,0.98,0.0543,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.295,83.3,145.1,0.12,1002,1.7000000000000002,186,0.7000000000000001 +2019,8,3,12,30,13,0.99,0.0534,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.297,86.05,157.96,0.12,1002,1.6,340,0.7000000000000001 +2019,8,3,13,30,12.600000000000001,1,0.052500000000000005,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.298,87.78,168.5,0.12,1001,1.6,310,0.7000000000000001 +2019,8,3,14,30,12,1.01,0.0516,0.67,0,0,0,0,10.4,0,0,33,0,0.301,90.02,167.31,0.12,1001,1.5,288,0.8 +2019,8,3,15,30,11.100000000000001,1.02,0.0506,0.67,0,0,0,0,10.100000000000001,0,0,0,0,0.302,93.48,156.09,0.12,1001,1.5,273,0.8 +2019,8,3,16,30,10.3,1.04,0.0499,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.304,95.3,143.11,0.12,1001,1.4000000000000001,260,0.8 +2019,8,3,17,30,9.9,1.07,0.049300000000000004,0.67,0,0,0,0,8.8,0,0,0,0,0.305,92.92,129.82,0.12,1001,1.3,248,0.8 +2019,8,3,18,30,9.700000000000001,1.11,0.0482,0.67,0,0,0,0,7.800000000000001,0,0,0,0,0.305,88.02,116.53,0.12,1002,1.3,240,0.8 +2019,8,3,19,30,9.5,1.1400000000000001,0.0463,0.67,0,0,0,0,6.7,0,0,0,0,0.304,82.91,103.4,0.12,1002,1.2000000000000002,236,0.7000000000000001 +2019,8,3,20,30,10.600000000000001,1.18,0.0443,0.67,6,66,6,0,5.800000000000001,6,66,0,6,0.304,72.01,90.03,0.12,1002,1.2000000000000002,232,0.8 +2019,8,3,21,30,13,1.21,0.042800000000000005,0.67,44,600,166,0,5.1000000000000005,44,600,0,166,0.304,58.82,78.26,0.12,1002,1.1,229,0.8 +2019,8,3,22,30,16.400000000000002,1.26,0.0419,0.67,60,787,369,0,4.800000000000001,60,787,0,369,0.303,46.26,66.9,0.12,1002,1,211,0.6000000000000001 +2019,8,3,23,30,18.400000000000002,1.3,0.0415,0.67,70,871,545,0,5.300000000000001,70,871,0,545,0.302,42.15,56.94,0.12,1002,1,192,0.5 +2019,8,4,0,30,21.900000000000002,1.19,0.044500000000000005,0.67,76,909,669,0,4.2,76,909,0,669,0.3,31.53,49.28,0.12,1001,1,139,0.6000000000000001 +2019,8,4,1,30,22.900000000000002,1.22,0.044700000000000004,0.67,79,926,732,0,3.6,79,926,0,732,0.299,28.3,45.12,0.12,1000,1,121,0.7000000000000001 +2019,8,4,2,30,23.400000000000002,1.25,0.0453,0.67,81,923,728,0,3.2,81,923,33,728,0.297,26.72,45.46,0.12,999,1,104,0.9 +2019,8,4,3,30,23.5,1.03,0.0494,0.67,79,898,654,0,3,79,898,0,654,0.296,26.23,50.2,0.12,999,1,91,1.1 +2019,8,4,4,30,23,1.05,0.0512,0.67,73,846,518,0,3.2,73,846,0,518,0.296,27.34,58.27,0.12,998,1.1,83,1.4000000000000001 +2019,8,4,5,30,21.6,1.06,0.0533,0.67,63,746,337,0,3.7,63,746,0,337,0.296,30.91,68.49,0.12,999,1.1,78,1.2000000000000002 +2019,8,4,6,30,18.8,1.07,0.0555,0.67,43,522,134,0,6.5,43,522,0,134,0.297,44.78,79.99,0.12,999,1.2000000000000002,73,1 +2019,8,4,7,30,16.400000000000002,1.08,0.057600000000000005,0.67,0,0,0,0,8,0,0,0,0,0.297,57.53,92.44,0.12,1000,1.3,70,0.9 +2019,8,4,8,30,15.3,1.08,0.060000000000000005,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.298,66.92,105.3,0.12,1001,1.4000000000000001,69,0.8 +2019,8,4,9,30,14.600000000000001,1.07,0.0621,0.67,0,0,0,0,10.100000000000001,0,0,0,0,0.297,74.45,118.45,0.12,1001,1.5,68,0.8 +2019,8,4,10,30,14,1.06,0.06380000000000001,0.67,0,0,0,0,10.8,0,0,0,0,0.297,81.04,131.75,0.12,1002,1.6,60,0.8 +2019,8,4,11,30,13.600000000000001,1.05,0.06420000000000001,0.67,0,0,0,0,11.600000000000001,0,0,0,0,0.297,87.7,145.01,0.12,1002,1.6,51,0.8 +2019,8,4,12,30,13.3,1.04,0.0636,0.67,0,0,0,0,11.8,0,0,0,0,0.297,90.68,157.84,0.12,1001,1.6,45,0.7000000000000001 +2019,8,4,13,30,13.100000000000001,1.06,0.0627,0.67,0,0,0,0,11.8,0,0,0,0,0.298,91.86,168.28,0.12,1001,1.5,42,0.7000000000000001 +2019,8,4,14,30,13,1.09,0.061900000000000004,0.67,0,0,0,0,11.600000000000001,0,0,33,0,0.299,91.25,167.09,0.12,1000,1.5,45,0.6000000000000001 +2019,8,4,15,30,13,1.12,0.061900000000000004,0.67,0,0,0,0,11.4,0,0,0,0,0.299,90.07000000000001,155.94,0.12,1000,1.5,60,0.5 +2019,8,4,16,30,12.8,1.16,0.06280000000000001,0.67,0,0,0,7,11.200000000000001,0,0,0,0,0.298,90.29,142.99,0.12,1000,1.5,111,0.4 +2019,8,4,17,30,12.200000000000001,1.2,0.06420000000000001,0.67,0,0,0,0,11.100000000000001,0,0,0,0,0.298,93.05,129.7,0.12,1000,1.4000000000000001,161,0.6000000000000001 +2019,8,4,18,30,11.3,1.23,0.065,0.67,0,0,0,0,11,0,0,0,0,0.298,97.94,116.41,0.12,1000,1.4000000000000001,172,0.8 +2019,8,4,19,30,10.600000000000001,1.26,0.0651,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.298,100,103.27,0.12,1001,1.4000000000000001,173,0.9 +2019,8,4,20,30,11.200000000000001,1.29,0.0653,0.67,7,55,7,0,10.8,7,55,0,7,0.298,97.44,89.91,0.12,1001,1.4000000000000001,175,0.9 +2019,8,4,21,30,13.9,1.32,0.0639,0.67,48,562,164,7,10.8,54,451,67,147,0.298,81.78,78.10000000000001,0.12,1002,1.3,154,0.8 +2019,8,4,22,30,17.2,1.3800000000000001,0.0596,0.67,65,758,365,0,10.100000000000001,65,758,0,365,0.299,62.910000000000004,66.71000000000001,0.12,1002,1.3,100,0.9 +2019,8,4,23,30,18.7,1.41,0.057100000000000005,0.67,76,845,540,0,8.5,76,845,0,540,0.299,51.38,56.72,0.12,1002,1.3,69,1.1 +2019,8,5,0,30,20.700000000000003,1.3800000000000001,0.0609,0.67,83,884,663,0,7.6000000000000005,83,884,0,663,0.3,42.77,49.03,0.12,1001,1.3,63,1.3 +2019,8,5,1,30,21.5,1.4000000000000001,0.0596,0.67,86,903,726,0,7,105,852,0,709,0.3,39.08,44.86,0.12,1000,1.3,61,1.4000000000000001 +2019,8,5,2,30,22,1.4000000000000001,0.0591,0.67,86,902,721,0,6.5,147,624,33,587,0.299,36.7,45.21,0.12,999,1.3,61,1.5 +2019,8,5,3,30,21.900000000000002,1.35,0.0601,0.67,83,879,648,0,6.300000000000001,116,765,0,608,0.298,36.34,49.980000000000004,0.12,998,1.3,63,1.6 +2019,8,5,4,30,21.400000000000002,1.33,0.060500000000000005,0.67,77,829,515,0,6.300000000000001,77,829,0,515,0.297,37.59,58.08,0.12,998,1.4000000000000001,64,1.6 +2019,8,5,5,30,20.200000000000003,1.3,0.060700000000000004,0.67,65,733,336,0,6.6000000000000005,65,733,0,336,0.296,41.18,68.33,0.12,998,1.4000000000000001,63,1.4000000000000001 +2019,8,5,6,30,17.900000000000002,1.29,0.0597,0.67,44,520,135,0,7.800000000000001,44,520,0,135,0.294,51.49,79.87,0.12,998,1.4000000000000001,60,1 +2019,8,5,7,30,15.8,1.27,0.057800000000000004,0.67,0,0,0,0,8.9,0,0,0,0,0.293,63.7,92.33,0.12,999,1.4000000000000001,56,0.8 +2019,8,5,8,30,14.700000000000001,1.26,0.056100000000000004,0.67,0,0,0,0,9.5,0,0,0,0,0.293,71.01,105.21000000000001,0.12,999,1.4000000000000001,51,0.8 +2019,8,5,9,30,14,1.24,0.055200000000000006,0.67,0,0,0,0,10,0,0,0,0,0.293,77.08,118.37,0.12,1000,1.4000000000000001,45,0.8 +2019,8,5,10,30,13.5,1.22,0.0551,0.67,0,0,0,0,10.4,0,0,0,0,0.294,81.60000000000001,131.67000000000002,0.12,1000,1.4000000000000001,37,0.8 +2019,8,5,11,30,13,1.2,0.0555,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.294,85.52,144.93,0.12,1000,1.4000000000000001,25,0.8 +2019,8,5,12,30,12.5,1.2,0.0562,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.293,89,157.72,0.12,1000,1.4000000000000001,12,0.8 +2019,8,5,13,30,12.200000000000001,1.19,0.057100000000000005,0.67,0,0,0,0,10.8,0,0,0,0,0.292,91.04,168.06,0.12,1000,1.4000000000000001,175,0.8 +2019,8,5,14,30,11.8,1.19,0.0582,0.67,0,0,0,0,10.8,0,0,33,0,0.291,93.49,166.86,0.12,999,1.4000000000000001,336,0.8 +2019,8,5,15,30,11.5,1.18,0.0584,0.67,0,0,0,0,10.8,0,0,0,0,0.29,95.39,155.79,0.12,999,1.4000000000000001,319,0.8 +2019,8,5,16,30,11.100000000000001,1.19,0.057600000000000005,0.67,0,0,0,0,10.8,0,0,0,0,0.289,97.8,142.87,0.12,998,1.4000000000000001,307,0.8 +2019,8,5,17,30,10.700000000000001,1.19,0.0562,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.289,100,129.58,0.12,998,1.3,300,0.8 +2019,8,5,18,30,10.5,1.18,0.0545,0.67,0,0,0,0,10.5,0,0,0,0,0.28800000000000003,100,116.28,0.12,998,1.3,295,0.8 +2019,8,5,19,30,10.200000000000001,1.18,0.0531,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.28800000000000003,100,103.14,0.12,998,1.3,287,0.8 +2019,8,5,20,30,11.100000000000001,1.17,0.051500000000000004,0.67,7,66,7,0,10.700000000000001,7,66,0,7,0.28700000000000003,97.09,89.78,0.12,998,1.3,277,0.9 +2019,8,5,21,30,13.8,1.18,0.049100000000000005,0.67,46,592,170,0,10.700000000000001,46,592,0,170,0.28700000000000003,81.51,77.93,0.12,999,1.3,281,0.9 +2019,8,5,22,30,17.1,1.21,0.0453,0.67,62,779,372,0,10.700000000000001,62,779,0,372,0.28700000000000003,65.84,66.52,0.12,999,1.3,324,0.7000000000000001 +2019,8,5,23,30,18.900000000000002,1.25,0.0419,0.67,70,865,548,0,9.3,70,865,0,548,0.28600000000000003,53.84,56.49,0.12,999,1.3,360,0.7000000000000001 +2019,8,6,0,30,21.200000000000003,1,0.049300000000000004,0.67,80,897,671,0,7.9,80,897,0,671,0.28600000000000003,42.27,48.77,0.12,997,1.3,35,0.7000000000000001 +2019,8,6,1,30,22.1,1.03,0.047900000000000005,0.67,82,915,734,0,6.800000000000001,82,915,0,734,0.28600000000000003,37.1,44.59,0.12,996,1.3,53,0.8 +2019,8,6,2,30,22.5,1.05,0.0478,0.67,83,911,728,0,6.1000000000000005,83,911,33,728,0.28600000000000003,34.52,44.94,0.12,995,1.3,61,1 +2019,8,6,3,30,22.5,0.84,0.0545,0.67,84,882,654,3,5.7,188,416,0,457,0.28600000000000003,33.62,49.75,0.12,994,1.3,59,1 +2019,8,6,4,30,22.1,0.8300000000000001,0.058100000000000006,0.67,78,828,518,0,5.5,104,721,0,487,0.28600000000000003,34.1,57.89,0.12,994,1.4000000000000001,56,1.1 +2019,8,6,5,30,20.900000000000002,0.81,0.061700000000000005,0.67,68,724,337,0,5.6000000000000005,80,363,42,215,0.28500000000000003,36.87,68.18,0.12,994,1.4000000000000001,54,1 +2019,8,6,6,30,18.5,0.8200000000000001,0.0659,0.67,47,495,135,0,7.300000000000001,47,495,0,135,0.28500000000000003,47.94,79.74,0.12,994,1.5,54,0.9 +2019,8,6,7,30,16.400000000000002,0.86,0.0675,0.67,0,0,0,0,8.4,0,0,0,0,0.28400000000000003,59.25,92.23,0.12,994,1.5,52,0.9 +2019,8,6,8,30,15.3,0.88,0.0679,0.67,0,0,0,0,9.3,0,0,0,0,0.28400000000000003,67.54,105.11,0.12,995,1.6,47,0.9 +2019,8,6,9,30,14.5,0.89,0.069,0.67,0,0,0,0,10.3,0,0,0,0,0.28300000000000003,76.05,118.29,0.12,995,1.6,41,0.8 +2019,8,6,10,30,13.9,0.89,0.0708,0.67,0,0,0,0,11.200000000000001,0,0,0,0,0.28200000000000003,83.65,131.59,0.12,995,1.6,32,0.8 +2019,8,6,11,30,13.4,0.89,0.07200000000000001,0.67,0,0,0,0,11.8,0,0,0,0,0.281,90.14,144.84,0.12,995,1.7000000000000002,21,0.8 +2019,8,6,12,30,13,0.89,0.0726,0.67,0,0,0,0,12.200000000000001,0,0,0,0,0.28,94.79,157.6,0.12,995,1.7000000000000002,9,0.8 +2019,8,6,13,30,12.600000000000001,0.89,0.0723,0.67,0,0,0,4,12.4,0,0,0,0,0.28,98.39,167.83,0.12,994,1.7000000000000002,178,0.8 +2019,8,6,14,30,12.3,0.9,0.0711,0.67,0,0,0,3,12.3,0,0,33,0,0.28,100,166.62,0.12,994,1.7000000000000002,347,0.8 +2019,8,6,15,30,11.9,0.9,0.069,0.67,0,0,0,4,11.9,0,0,0,0,0.28,100,155.63,0.12,993,1.7000000000000002,338,0.8 +2019,8,6,16,30,11.5,0.89,0.0661,0.67,0,0,0,4,11.5,0,0,0,0,0.28,100,142.73,0.12,993,1.6,329,0.8 +2019,8,6,17,30,11.100000000000001,0.9,0.06280000000000001,0.67,0,0,0,4,11.100000000000001,0,0,0,0,0.28,100,129.45,0.12,993,1.6,318,0.8 +2019,8,6,18,30,10.8,0.9,0.0601,0.67,0,0,0,4,10.8,0,0,0,0,0.279,100,116.15,0.12,993,1.6,305,0.8 +2019,8,6,19,30,10.5,0.89,0.0585,0.67,0,0,0,4,10.5,0,0,0,0,0.277,100,103,0.12,993,1.6,294,0.8 +2019,8,6,20,30,11.600000000000001,0.88,0.057600000000000005,0.67,7,55,7,0,11.5,7,55,0,7,0.276,99.5,89.66,0.12,994,1.7000000000000002,286,0.9 +2019,8,6,21,30,14.4,0.88,0.057800000000000004,0.67,49,560,168,4,11.5,17,0,100,17,0.275,82.55,77.76,0.12,994,1.7000000000000002,286,1.1 +2019,8,6,22,30,17.7,0.87,0.058100000000000006,0.67,68,746,368,4,11.4,74,0,0,74,0.275,66.77,66.32000000000001,0.12,994,1.7000000000000002,299,1.2000000000000002 +2019,8,6,23,30,19.5,0.89,0.058600000000000006,0.67,79,830,540,4,10.4,239,200,0,350,0.275,55.84,56.26,0.12,994,1.8,308,1.3 +2019,8,7,0,30,21.900000000000002,0.9,0.0623,0.67,87,868,662,3,9.5,238,447,0,534,0.275,45.33,48.51,0.12,992,1.8,310,1.2000000000000002 +2019,8,7,1,30,22.700000000000003,0.87,0.0631,0.67,91,882,722,4,9,292,332,0,530,0.276,41.6,44.31,0.12,991,1.9000000000000001,311,1.3 +2019,8,7,2,30,22.6,0.84,0.0673,0.67,93,873,714,4,8.8,325,168,33,444,0.276,41.230000000000004,44.68,0.12,990,2,312,1.4000000000000001 +2019,8,7,3,30,21.8,0.89,0.0741,0.67,92,842,639,4,9,110,0,0,110,0.278,44.12,49.52,0.12,989,2.1,316,1.3 +2019,8,7,4,30,20.700000000000003,0.91,0.077,0.67,84,789,506,4,9.8,66,0,0,66,0.279,49.5,57.7,0.12,989,2.3000000000000003,326,1.2000000000000002 +2019,8,7,5,30,19.200000000000003,0.89,0.0727,0.67,72,685,328,4,11,38,0,0,38,0.28,58.94,68.03,0.12,989,2.4000000000000004,344,0.9 +2019,8,7,6,30,17.6,0.93,0.0829,0.67,49,454,131,0,12.600000000000001,44,412,17,118,0.28200000000000003,72.66,79.61,0.12,989,2.4000000000000004,180,0.7000000000000001 +2019,8,7,7,30,16.3,0.9400000000000001,0.0781,0.67,0,0,0,0,13.5,0,0,0,0,0.28400000000000003,83.67,92.12,0.12,990,2.5,7,0.6000000000000001 +2019,8,7,8,30,15.5,0.9500000000000001,0.0698,0.67,0,0,0,0,13.9,0,0,0,0,0.28500000000000003,90.09,105.02,0.12,990,2.5,6,0.6000000000000001 +2019,8,7,9,30,14.9,0.97,0.064,0.67,0,0,0,4,14,0,0,8,0,0.28500000000000003,94.58,118.21000000000001,0.12,991,2.5,180,0.6000000000000001 +2019,8,7,10,30,14.5,1,0.0589,0.67,0,0,0,4,14,0,0,0,0,0.28500000000000003,97,131.51,0.12,991,2.5,351,0.6000000000000001 +2019,8,7,11,30,14.100000000000001,1.02,0.0538,0.67,0,0,0,4,13.9,0,0,0,0,0.28500000000000003,98.72,144.75,0.12,991,2.5,339,0.6000000000000001 +2019,8,7,12,30,13.8,1.05,0.051800000000000006,0.67,0,0,0,4,13.700000000000001,0,0,0,0,0.28600000000000003,99.46000000000001,157.47,0.12,990,2.4000000000000004,329,0.6000000000000001 +2019,8,7,13,30,13.5,1.09,0.051800000000000006,0.67,0,0,0,3,13.5,0,0,0,0,0.28600000000000003,100,167.59,0.12,990,2.4000000000000004,323,0.6000000000000001 +2019,8,7,14,30,13.200000000000001,1.1400000000000001,0.052000000000000005,0.67,0,0,0,0,13.200000000000001,0,0,33,0,0.28600000000000003,100,166.38,0.12,989,2.3000000000000003,319,0.6000000000000001 +2019,8,7,15,30,12.700000000000001,1.18,0.0529,0.67,0,0,0,0,12.700000000000001,0,0,0,0,0.28600000000000003,100,155.47,0.12,989,2.2,318,0.6000000000000001 +2019,8,7,16,30,12.200000000000001,1.19,0.0538,0.67,0,0,0,0,12.200000000000001,0,0,0,0,0.28600000000000003,100,142.6,0.12,988,2.1,315,0.7000000000000001 +2019,8,7,17,30,11.700000000000001,1.19,0.0541,0.67,0,0,0,0,11.700000000000001,0,0,0,0,0.28500000000000003,100,129.32,0.12,988,1.9000000000000001,312,0.7000000000000001 +2019,8,7,18,30,11.4,1.17,0.0538,0.67,0,0,0,0,11.4,0,0,0,0,0.28300000000000003,100,116.02,0.12,988,1.9000000000000001,307,0.7000000000000001 +2019,8,7,19,30,11.200000000000001,1.1400000000000001,0.0528,0.67,0,0,0,0,11.200000000000001,0,0,0,0,0.28200000000000003,100,102.85000000000001,0.12,988,1.8,301,0.7000000000000001 +2019,8,7,20,30,12,1.1,0.0521,0.67,7,64,8,0,11.200000000000001,7,64,33,8,0.28200000000000003,94.7,89.52,0.12,988,1.8,296,0.9 +2019,8,7,21,30,13.700000000000001,1.07,0.0536,0.67,48,573,171,0,12.3,56,301,50,121,0.281,91.02,77.58,0.12,988,1.8,295,1.3 +2019,8,7,22,30,16,1.06,0.0545,0.67,66,753,371,4,13.5,122,312,0,248,0.28200000000000003,84.95,66.11,0.12,988,1.9000000000000001,297,1.7000000000000002 +2019,8,7,23,30,17.3,1.08,0.0517,0.67,76,838,544,0,14,76,838,0,544,0.28200000000000003,81.17,56.03,0.12,988,1.9000000000000001,298,1.9000000000000001 +2019,8,8,0,30,21.8,1.07,0.048400000000000006,0.67,79,888,670,0,12.9,79,888,0,670,0.28200000000000003,56.85,48.25,0.12,987,1.8,286,2.8000000000000003 +2019,8,8,1,30,23.8,1.1500000000000001,0.042300000000000004,0.67,78,914,735,0,10.4,78,914,0,735,0.28200000000000003,42.82,44.03,0.12,985,1.7000000000000002,278,3.3000000000000003 +2019,8,8,2,30,25,1.21,0.0388,0.67,77,919,733,0,7.7,77,919,33,733,0.28200000000000003,33.26,44.410000000000004,0.12,984,1.5,273,3.5 +2019,8,8,3,30,25.5,1.1,0.04,0.67,75,901,663,0,5.2,75,901,0,663,0.281,27.11,49.28,0.12,983,1.4000000000000001,271,3.6 +2019,8,8,4,30,25.3,0.99,0.0427,0.67,71,854,530,0,3.4000000000000004,71,854,0,530,0.28,24.26,57.51,0.12,983,1.3,271,3.4000000000000004 +2019,8,8,5,30,24.3,0.84,0.0475,0.67,63,754,347,0,2.7,70,705,0,336,0.279,24.46,67.87,0.12,983,1.3,272,2.8000000000000003 +2019,8,8,6,30,22.1,0.74,0.0539,0.67,46,529,142,0,3.6,49,477,17,136,0.278,29.810000000000002,79.49,0.12,983,1.3,272,2 +2019,8,8,7,30,20.200000000000003,0.7000000000000001,0.056600000000000004,0.67,0,0,0,0,4.3,0,0,0,0,0.277,35.09,92.02,0.12,984,1.3,268,1.6 +2019,8,8,8,30,19.3,0.77,0.0478,0.67,0,0,0,0,4.1000000000000005,0,0,0,0,0.276,36.7,104.93,0.12,985,1.3,266,1.6 +2019,8,8,9,30,18.400000000000002,0.92,0.0364,0.67,0,0,0,0,4,0,0,8,0,0.276,38.4,118.13,0.12,986,1.2000000000000002,265,1.6 +2019,8,8,10,30,17.5,0.98,0.0329,0.67,0,0,0,0,4.1000000000000005,0,0,0,0,0.276,41.02,131.44,0.12,987,1.2000000000000002,263,1.5 +2019,8,8,11,30,16.6,0.96,0.0328,0.67,0,0,0,0,4.5,0,0,0,0,0.278,44.63,144.66,0.12,987,1.1,260,1.3 +2019,8,8,12,30,15.600000000000001,0.91,0.0316,0.67,0,0,0,0,4.6000000000000005,0,0,0,0,0.279,48.050000000000004,157.34,0.12,987,0.9,258,1.3 +2019,8,8,13,30,14.600000000000001,0.84,0.030000000000000002,0.67,0,0,0,0,4,0,0,0,0,0.28,48.93,167.35,0.12,987,0.7000000000000001,257,1.2000000000000002 +2019,8,8,14,30,13.5,0.77,0.029300000000000003,0.67,0,0,0,0,3,0,0,33,0,0.281,49,166.13,0.12,987,0.6000000000000001,258,1.2000000000000002 +2019,8,8,15,30,12.4,0.75,0.028800000000000003,0.67,0,0,0,0,2.2,0,0,0,0,0.28,49.9,155.3,0.12,986,0.5,261,1.2000000000000002 +2019,8,8,16,30,11.5,0.78,0.027700000000000002,0.67,0,0,0,0,1.5,0,0,0,0,0.279,50.4,142.45000000000002,0.12,986,0.5,262,1.2000000000000002 +2019,8,8,17,30,10.700000000000001,0.84,0.0267,0.67,0,0,0,0,1,0,0,0,0,0.278,51.15,129.19,0.12,986,0.4,262,1.2000000000000002 +2019,8,8,18,30,9.9,0.88,0.0261,0.67,0,0,0,0,0.6000000000000001,0,0,0,0,0.276,52.25,115.88,0.12,986,0.4,264,1.2000000000000002 +2019,8,8,19,30,9.5,0.88,0.0268,0.67,0,0,0,0,0.2,0,0,0,0,0.275,52.26,102.7,0.12,987,0.4,267,1.2000000000000002 +2019,8,8,20,30,10.600000000000001,0.84,0.0284,0.67,9,97,10,0,0,9,97,0,10,0.275,48.03,89.38,0.12,988,0.5,269,1.5 +2019,8,8,21,30,13.4,0.78,0.0298,0.67,43,677,191,0,0,43,677,0,191,0.275,39.95,77.4,0.12,988,0.5,266,2.3000000000000003 +2019,8,8,22,30,16.2,0.74,0.0307,0.67,59,843,403,0,-0.6000000000000001,59,843,0,403,0.275,31.87,65.91,0.12,988,0.5,260,3.1 +2019,8,8,23,30,17.5,0.6900000000000001,0.0322,0.67,68,917,584,0,-0.5,68,917,0,584,0.275,29.51,55.79,0.12,988,0.5,258,3.4000000000000004 +2019,8,9,0,30,20.3,0.58,0.0407,0.67,79,936,706,0,-1.2000000000000002,79,936,0,706,0.275,23.63,47.980000000000004,0.12,986,0.6000000000000001,263,3.6 +2019,8,9,1,30,21.6,0.54,0.0438,0.67,84,948,769,0,-1.8,84,948,0,769,0.275,20.78,43.74,0.12,985,0.6000000000000001,266,3.7 +2019,8,9,2,30,22.400000000000002,0.5,0.0488,0.67,86,942,762,0,-2.2,86,942,33,762,0.276,19.23,44.14,0.12,985,0.6000000000000001,268,3.8000000000000003 +2019,8,9,3,30,22.6,0.48,0.0507,0.67,85,917,686,0,-2.4000000000000004,85,917,0,686,0.276,18.69,49.050000000000004,0.12,984,0.6000000000000001,270,3.8000000000000003 +2019,8,9,4,30,22.3,0.45,0.0574,0.67,81,862,546,0,-2.5,81,862,0,546,0.276,18.96,57.32,0.12,984,0.6000000000000001,271,3.6 +2019,8,9,5,30,21.1,0.45,0.062400000000000004,0.67,70,763,359,0,-2.4000000000000004,70,763,0,359,0.276,20.53,67.72,0.12,984,0.6000000000000001,271,2.9000000000000004 +2019,8,9,6,30,18.6,0.49,0.0579,0.67,47,546,148,0,-1.4000000000000001,47,546,0,148,0.277,25.78,79.36,0.12,984,0.6000000000000001,272,1.9000000000000001 +2019,8,9,7,30,16.2,0.5,0.058600000000000006,0.67,0,0,0,0,-0.1,0,0,0,0,0.277,33.1,91.91,0.12,985,0.7000000000000001,273,1.3 +2019,8,9,8,30,14.9,0.5,0.060000000000000005,0.67,0,0,0,0,0.30000000000000004,0,0,0,0,0.278,36.95,104.84,0.12,986,0.7000000000000001,274,1.2000000000000002 +2019,8,9,9,30,13.9,0.47000000000000003,0.061500000000000006,0.67,0,0,0,0,0.8,0,0,0,0,0.279,40.76,118.05,0.12,987,0.8,276,1.2000000000000002 +2019,8,9,10,30,13.200000000000001,0.43,0.0623,0.67,0,0,0,0,1,0,0,0,0,0.28,43.44,131.36,0.12,987,0.8,275,1.2000000000000002 +2019,8,9,11,30,12.600000000000001,0.41000000000000003,0.0613,0.67,0,0,0,0,1.1,0,0,0,0,0.281,45.37,144.57,0.12,987,0.9,273,1.2000000000000002 +2019,8,9,12,30,12.200000000000001,0.45,0.0574,0.67,0,0,0,0,1.2000000000000002,0,0,0,0,0.28200000000000003,47.04,157.21,0.12,987,0.9,270,1.2000000000000002 +2019,8,9,13,30,11.9,0.5,0.0528,0.67,0,0,0,0,1.4000000000000001,0,0,0,0,0.28300000000000003,48.46,167.11,0.12,987,0.9,268,1.3 +2019,8,9,14,30,11.5,0.52,0.0509,0.67,0,0,0,0,1.5,0,0,33,0,0.28300000000000003,50.15,165.88,0.12,986,0.9,267,1.3 +2019,8,9,15,30,11,0.49,0.0536,0.67,0,0,0,0,1.6,0,0,0,0,0.28300000000000003,52.25,155.12,0.12,986,0.9,267,1.3 +2019,8,9,16,30,10.5,0.45,0.0601,0.67,0,0,0,0,1.7000000000000002,0,0,0,0,0.28400000000000003,54.33,142.3,0.12,985,0.9,268,1.3 +2019,8,9,17,30,10.100000000000001,0.42,0.0669,0.67,0,0,0,0,1.8,0,0,0,0,0.28400000000000003,56.230000000000004,129.05,0.12,985,0.9,268,1.3 +2019,8,9,18,30,9.700000000000001,0.41000000000000003,0.0709,0.67,0,0,0,0,2,0,0,0,0,0.28500000000000003,58.51,115.73,0.12,985,0.9,268,1.3 +2019,8,9,19,30,9.5,0.43,0.0727,0.67,0,0,0,0,2.2,0,0,0,0,0.28600000000000003,60.36,102.55,0.12,986,1,270,1.2000000000000002 +2019,8,9,20,30,10.700000000000001,0.43,0.0747,0.67,8,44,9,0,2.6,8,44,0,9,0.28600000000000003,57.120000000000005,89.24,0.12,986,1,272,1.5 +2019,8,9,21,30,13.3,0.42,0.08,0.67,59,530,176,0,3,59,530,0,176,0.28700000000000003,49.84,77.21000000000001,0.12,986,1,271,2.3000000000000003 +2019,8,9,22,30,15.8,0.38,0.0876,0.67,83,718,379,0,3.6,83,718,0,379,0.28800000000000003,44.230000000000004,65.69,0.12,986,1,266,3.3000000000000003 +2019,8,9,23,30,16.900000000000002,0.36,0.0946,0.67,98,807,555,0,4.5,98,807,0,555,0.289,43.75,55.550000000000004,0.12,986,1,266,3.7 +2019,8,10,0,30,18.7,0.6900000000000001,0.0426,0.67,78,917,695,0,4.4,78,917,0,695,0.291,38.730000000000004,47.7,0.12,985,1.1,269,4.1000000000000005 +2019,8,10,1,30,19.6,0.75,0.038900000000000004,0.67,79,935,758,0,4,79,935,0,758,0.291,35.76,43.45,0.12,984,1.1,270,4.2 +2019,8,10,2,30,20.1,0.78,0.038,0.67,81,929,751,0,3.6,81,929,33,751,0.291,33.74,43.86,0.12,983,1.1,271,4.3 +2019,8,10,3,30,20.200000000000003,0.8200000000000001,0.0528,0.67,82,896,672,0,3.4000000000000004,82,896,0,672,0.291,32.88,48.81,0.12,982,1.2000000000000002,270,4.3 +2019,8,10,4,30,19.8,0.73,0.0531,0.67,77,846,536,0,3.1,77,846,0,536,0.291,33.14,57.13,0.12,982,1.2000000000000002,269,4.2 +2019,8,10,5,30,18.8,0.67,0.0582,0.67,68,745,352,0,2.8000000000000003,68,745,0,352,0.291,34.51,67.56,0.12,982,1.2000000000000002,267,3.8000000000000003 +2019,8,10,6,30,17.1,0.68,0.060200000000000004,0.67,47,532,146,0,2.5,50,438,25,132,0.292,37.46,79.24,0.12,983,1.2000000000000002,264,3.2 +2019,8,10,7,30,15.5,0.77,0.0543,0.67,0,0,0,0,2.4000000000000004,0,0,0,0,0.293,41.25,91.81,0.12,984,1.1,260,2.6 +2019,8,10,8,30,14.4,0.91,0.0422,0.67,0,0,0,0,2.1,0,0,0,0,0.295,43.52,104.75,0.12,985,1,256,2.3000000000000003 +2019,8,10,9,30,13.4,0.98,0.031200000000000002,0.67,0,0,0,4,1.3,0,0,0,0,0.297,43.65,117.97,0.12,987,0.9,253,2.3000000000000003 +2019,8,10,10,30,12.3,0.96,0.027100000000000003,0.67,0,0,0,0,-0.30000000000000004,0,0,0,0,0.298,41.78,131.28,0.12,988,0.7000000000000001,250,2.2 +2019,8,10,11,30,11.100000000000001,0.9,0.0285,0.67,0,0,0,0,-1.9000000000000001,0,0,0,0,0.299,40.19,144.48,0.12,988,0.6000000000000001,250,2 +2019,8,10,12,30,10.100000000000001,0.92,0.029900000000000003,0.67,0,0,0,0,-2.5,0,0,0,0,0.301,41.25,157.08,0.12,989,0.6000000000000001,250,1.9000000000000001 +2019,8,10,13,30,9.3,1,0.029,0.67,0,0,0,0,-2.1,0,0,0,0,0.302,44.9,166.86,0.12,989,0.6000000000000001,250,2 +2019,8,10,14,30,8.700000000000001,1.08,0.025500000000000002,0.67,0,0,0,0,-1.1,0,0,33,0,0.304,50.09,165.61,0.12,989,0.5,251,2.1 +2019,8,10,15,30,8,1.1500000000000001,0.0223,0.67,0,0,0,0,-0.5,0,0,0,0,0.306,55.19,154.93,0.12,989,0.5,251,2.1 +2019,8,10,16,30,7.5,1.19,0.0205,0.67,0,0,0,0,-0.2,0,0,0,0,0.308,58.14,142.15,0.12,989,0.5,252,2 +2019,8,10,17,30,6.9,1.22,0.020200000000000003,0.67,0,0,0,0,-0.1,0,0,0,0,0.31,60.85,128.9,0.12,989,0.5,253,1.9000000000000001 +2019,8,10,18,30,6.5,1.25,0.02,0.67,0,0,0,0,-0.1,0,0,0,0,0.311,62.690000000000005,115.59,0.12,990,0.5,256,1.7000000000000002 +2019,8,10,19,30,6.2,1.27,0.0195,0.67,0,0,0,0,-0.1,0,0,0,0,0.311,64.24,102.39,0.12,990,0.5,258,1.7000000000000002 +2019,8,10,20,30,7.300000000000001,1.26,0.0189,0.67,9,122,11,0,0,9,122,0,11,0.31,60.02,89.08,0.12,991,0.5,259,2.2 +2019,8,10,21,30,9.600000000000001,1.22,0.0189,0.67,39,712,199,0,0.1,39,712,0,199,0.308,51.45,77.02,0.12,991,0.5,257,3 +2019,8,10,22,30,11.8,1.16,0.019100000000000002,0.67,52,867,412,0,0.1,52,867,0,412,0.307,44.480000000000004,65.48,0.12,991,0.5,256,3.6 +2019,8,10,23,30,12.9,1.1300000000000001,0.0199,0.67,60,937,593,0,-0.6000000000000001,60,937,0,593,0.306,39.410000000000004,55.300000000000004,0.12,991,0.5,257,3.8000000000000003 +2019,8,11,0,30,15.3,0.8200000000000001,0.0298,0.67,72,954,717,0,-1.7000000000000002,72,954,0,717,0.303,31.12,47.42,0.12,989,0.6000000000000001,259,4.1000000000000005 +2019,8,11,1,30,16.5,0.96,0.0279,0.67,71,972,780,0,-2.5,71,972,0,780,0.301,27.21,43.160000000000004,0.12,988,0.6000000000000001,260,4.2 +2019,8,11,2,30,17.5,1.08,0.027200000000000002,0.67,73,967,774,0,-2.8000000000000003,73,967,33,774,0.3,24.95,43.58,0.12,987,0.6000000000000001,262,4.2 +2019,8,11,3,30,18,0.9400000000000001,0.0392,0.67,76,940,698,0,-3,76,940,0,698,0.299,23.87,48.57,0.12,986,0.6000000000000001,263,4.1000000000000005 +2019,8,11,4,30,18.1,0.9500000000000001,0.036500000000000005,0.67,69,900,560,0,-3.1,69,900,0,560,0.299,23.490000000000002,56.93,0.12,986,0.6000000000000001,265,3.8000000000000003 +2019,8,11,5,30,17.400000000000002,0.96,0.034300000000000004,0.67,58,818,372,0,-3.2,58,818,0,372,0.298,24.29,67.4,0.12,986,0.6000000000000001,265,3.2 +2019,8,11,6,30,15.4,0.96,0.033800000000000004,0.67,41,622,159,0,-2.9000000000000004,41,622,0,159,0.297,28.19,79.11,0.12,987,0.6000000000000001,265,2.2 +2019,8,11,7,30,13.3,0.96,0.0342,0.67,0,0,0,0,-1.9000000000000001,0,0,0,0,0.296,34.92,91.7,0.12,988,0.7000000000000001,264,1.5 +2019,8,11,8,30,12.3,0.9400000000000001,0.035,0.67,0,0,0,0,-1.7000000000000002,0,0,0,0,0.296,37.86,104.66,0.12,989,0.7000000000000001,262,1.4000000000000001 +2019,8,11,9,30,11.600000000000001,0.9500000000000001,0.035300000000000005,0.67,0,0,0,0,-1.5,0,0,0,0,0.295,40.06,117.88,0.12,989,0.7000000000000001,261,1.3 +2019,8,11,10,30,11,0.99,0.035300000000000005,0.67,0,0,0,0,-1.3,0,0,0,0,0.294,42.33,131.19,0.12,990,0.8,261,1.3 +2019,8,11,11,30,10.5,1.03,0.036000000000000004,0.67,0,0,0,0,-1,0,0,0,0,0.294,44.83,144.38,0.12,990,0.9,259,1.3 +2019,8,11,12,30,10,1.06,0.0371,0.67,0,0,0,0,-0.4,0,0,0,0,0.294,48.26,156.94,0.12,990,1,254,1.3 +2019,8,11,13,30,9.600000000000001,1.11,0.0371,0.67,0,0,0,0,0.4,0,0,0,0,0.295,52.52,166.61,0.12,991,1.1,248,1.4000000000000001 +2019,8,11,14,30,9.1,1.21,0.0357,0.67,0,0,0,0,1.5,0,0,33,0,0.295,58.84,165.35,0.12,991,1.1,243,1.4000000000000001 +2019,8,11,15,30,8.5,1.3,0.0332,0.67,0,0,0,0,2.7,0,0,0,0,0.294,66.96000000000001,154.74,0.12,991,1,241,1.5 +2019,8,11,16,30,7.800000000000001,1.33,0.029900000000000003,0.67,0,0,0,0,3.5,0,0,0,0,0.293,74,141.99,0.12,991,0.8,241,1.4000000000000001 +2019,8,11,17,30,7,1.33,0.026600000000000002,0.67,0,0,0,0,3.3000000000000003,0,0,0,0,0.292,77.06,128.75,0.12,992,0.6000000000000001,243,1.4000000000000001 +2019,8,11,18,30,6.2,1.31,0.024200000000000003,0.67,0,0,0,0,2.5,0,0,0,0,0.292,77.35000000000001,115.43,0.12,992,0.5,245,1.3 +2019,8,11,19,30,5.6000000000000005,1.3,0.023100000000000002,0.67,0,0,0,0,1.9000000000000001,0,0,0,0,0.291,77.24,102.23,0.12,993,0.5,245,1.3 +2019,8,11,20,30,6.5,1.31,0.023,0.67,13,198,17,0,1.6,13,198,0,17,0.291,70.82000000000001,88.92,0.12,994,0.5,243,1.9000000000000001 +2019,8,11,21,30,8.6,1.32,0.0229,0.67,41,710,203,0,1.2000000000000002,41,710,0,203,0.29,59.82,76.82000000000001,0.12,994,0.5,238,2.8000000000000003 +2019,8,11,22,30,11,1.35,0.0221,0.67,53,867,416,0,-0.1,53,867,0,416,0.289,46.38,65.25,0.12,994,0.5,232,3 +2019,8,11,23,30,12.3,1.37,0.0213,0.67,61,938,598,0,-1.5,61,938,0,598,0.289,38.22,55.04,0.12,994,0.5,229,3 +2019,8,12,0,30,16.1,1.24,0.023700000000000002,0.67,66,970,726,0,-2.8000000000000003,66,970,0,726,0.28800000000000003,27.240000000000002,47.14,0.12,994,0.5,216,2.5 +2019,8,12,1,30,18,1.26,0.0241,0.67,69,977,785,0,-3.6,69,977,0,785,0.28700000000000003,22.69,42.86,0.12,993,0.6000000000000001,208,2 +2019,8,12,2,30,19.3,1.28,0.0253,0.67,71,966,774,0,-3.6,71,966,33,774,0.28700000000000003,20.98,43.300000000000004,0.12,993,0.7000000000000001,200,1.4000000000000001 +2019,8,12,3,30,19.900000000000002,1.07,0.0328,0.67,72,938,696,0,-3,72,938,0,696,0.28700000000000003,21.17,48.33,0.12,993,0.8,182,0.8 +2019,8,12,4,30,19.900000000000002,1.08,0.0363,0.67,69,888,556,0,-2.2,69,888,0,556,0.28800000000000003,22.400000000000002,56.74,0.12,993,0.8,141,0.6000000000000001 +2019,8,12,5,30,19,1.1,0.0407,0.67,60,791,366,0,-1.3,60,791,0,366,0.289,25.36,67.25,0.12,993,0.9,99,0.6000000000000001 +2019,8,12,6,30,16.8,1.1,0.0454,0.67,43,579,154,0,2,43,579,0,154,0.291,36.86,78.99,0.12,994,1,71,0.7000000000000001 +2019,8,12,7,30,14.700000000000001,1.12,0.050800000000000005,0.67,0,0,0,0,3.1,0,0,0,0,0.292,45.7,91.60000000000001,0.12,995,1,58,0.8 +2019,8,12,8,30,13.5,1.1400000000000001,0.0568,0.67,0,0,0,0,3.4000000000000004,0,0,0,0,0.292,50.58,104.58,0.12,996,1.1,62,0.9 +2019,8,12,9,30,12.700000000000001,1.16,0.0626,0.67,0,0,0,0,4,0,0,0,0,0.292,55.63,117.8,0.12,997,1.1,71,0.9 +2019,8,12,10,30,12.200000000000001,1.17,0.0688,0.67,0,0,0,0,4.7,0,0,0,0,0.292,60,131.11,0.12,998,1.2000000000000002,75,0.9 +2019,8,12,11,30,11.8,1.19,0.07440000000000001,0.67,0,0,0,0,5.2,0,0,0,0,0.292,64.05,144.29,0.12,998,1.2000000000000002,72,0.9 +2019,8,12,12,30,11.700000000000001,1.2,0.07780000000000001,0.67,0,0,0,0,5.7,0,0,0,0,0.292,66.57000000000001,156.8,0.12,998,1.3,67,0.8 +2019,8,12,13,30,11.5,1.2,0.07970000000000001,0.67,0,0,0,0,5.9,0,0,0,0,0.292,68.65,166.35,0.12,998,1.3,59,0.7000000000000001 +2019,8,12,14,30,11.200000000000001,1.19,0.08070000000000001,0.67,0,0,0,0,6.1000000000000005,0,0,33,0,0.293,70.89,165.07,0.12,998,1.3,47,0.5 +2019,8,12,15,30,10.8,1.18,0.0805,0.67,0,0,0,0,6.2,0,0,0,0,0.294,73.42,154.55,0.12,997,1.3,99,0.30000000000000004 +2019,8,12,16,30,10.200000000000001,1.16,0.07930000000000001,0.67,0,0,0,0,6.4,0,0,0,0,0.296,77.02,141.83,0.12,997,1.4000000000000001,178,0.30000000000000004 +2019,8,12,17,30,9.5,1.1400000000000001,0.07730000000000001,0.67,0,0,0,0,6.5,0,0,0,0,0.297,81.29,128.59,0.12,997,1.4000000000000001,200,0.5 +2019,8,12,18,30,9,1.11,0.0747,0.67,0,0,0,0,6.6000000000000005,0,0,0,0,0.298,84.96000000000001,115.28,0.12,998,1.4000000000000001,201,0.7000000000000001 +2019,8,12,19,30,8.8,1.09,0.0713,0.67,0,0,0,0,6.800000000000001,0,0,0,0,0.299,87.46000000000001,102.07000000000001,0.12,999,1.4000000000000001,201,0.8 +2019,8,12,20,30,9.9,1.06,0.0679,0.67,13,109,15,0,7.1000000000000005,13,109,0,15,0.301,82.83,88.76,0.12,1000,1.4000000000000001,201,1 +2019,8,12,21,30,12.4,1.03,0.0646,0.67,52,589,188,0,7.5,52,589,0,188,0.301,72.13,76.62,0.12,1000,1.4000000000000001,187,1 +2019,8,12,22,30,15.8,1.01,0.0603,0.67,69,771,394,0,8.200000000000001,69,771,0,394,0.303,60.81,65.03,0.12,1000,1.4000000000000001,140,1 +2019,8,12,23,30,17.6,1.01,0.054900000000000004,0.67,78,855,571,0,8.6,78,855,0,571,0.303,55.54,54.79,0.12,1000,1.4000000000000001,108,1.2000000000000002 +2019,8,13,0,30,19.900000000000002,0.64,0.07880000000000001,0.67,98,865,690,0,8,98,865,0,690,0.306,46.18,46.85,0.12,1000,1.4000000000000001,93,1.3 +2019,8,13,1,30,20.700000000000003,0.64,0.0834,0.67,106,875,750,0,7.5,106,875,0,750,0.307,42.52,42.56,0.12,999,1.5,89,1.3 +2019,8,13,2,30,21.200000000000003,0.63,0.09190000000000001,0.67,112,859,740,0,7.2,112,859,33,740,0.308,40.51,43.01,0.12,998,1.5,84,1.4000000000000001 +2019,8,13,3,30,21.200000000000003,0.5700000000000001,0.1178,0.67,118,812,660,0,7.1000000000000005,148,697,0,614,0.309,40.12,48.09,0.12,998,1.6,78,1.4000000000000001 +2019,8,13,4,30,20.700000000000003,0.58,0.127,0.67,112,746,523,0,7,171,418,0,401,0.31,41.17,56.54,0.12,998,1.6,76,1.5 +2019,8,13,5,30,19.700000000000003,0.6,0.13490000000000002,0.67,96,627,340,0,7.2,103,578,25,328,0.31,44.15,67.09,0.12,998,1.6,76,1.4000000000000001 +2019,8,13,6,30,17.8,0.64,0.14020000000000002,0.67,63,391,139,0,7.9,63,391,0,139,0.311,52.160000000000004,78.86,0.12,998,1.6,75,1 +2019,8,13,7,30,15.8,0.7000000000000001,0.13090000000000002,0.67,3,7,3,0,8.9,3,7,0,3,0.312,63.660000000000004,91.49,0.12,999,1.6,73,0.7000000000000001 +2019,8,13,8,30,14.8,0.75,0.12150000000000001,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.312,69.31,104.49000000000001,0.12,1000,1.7000000000000002,70,0.7000000000000001 +2019,8,13,9,30,14.100000000000001,0.79,0.11750000000000001,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.312,74.29,117.72,0.12,1001,1.7000000000000002,66,0.7000000000000001 +2019,8,13,10,30,13.5,0.8300000000000001,0.11570000000000001,0.67,0,0,0,0,9.9,0,0,0,0,0.311,78.94,131.03,0.12,1001,1.7000000000000002,59,0.8 +2019,8,13,11,30,13.200000000000001,0.87,0.1131,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.312,82.18,144.19,0.12,1001,1.7000000000000002,51,0.8 +2019,8,13,12,30,12.8,0.91,0.1086,0.67,0,0,0,0,10.4,0,0,0,0,0.315,85.59,156.66,0.12,1001,1.7000000000000002,44,0.8 +2019,8,13,13,30,12.700000000000001,0.9400000000000001,0.10350000000000001,0.67,0,0,0,0,10.600000000000001,0,0,0,0,0.319,87.3,166.09,0.12,1001,1.7000000000000002,39,0.8 +2019,8,13,14,30,12.700000000000001,0.96,0.1003,0.67,0,0,0,0,10.8,0,0,33,0,0.322,88.33,164.79,0.12,1001,1.7000000000000002,33,0.6000000000000001 +2019,8,13,15,30,12.700000000000001,0.96,0.0994,0.67,0,0,0,0,10.9,0,0,0,0,0.325,89.02,154.35,0.12,1001,1.8,145,0.30000000000000004 +2019,8,13,16,30,12.3,0.9500000000000001,0.09860000000000001,0.67,0,0,0,0,11,0,0,0,0,0.328,91.67,141.66,0.12,1001,1.8,230,0.2 +2019,8,13,17,30,11.600000000000001,0.9400000000000001,0.0969,0.67,0,0,0,0,11,0,0,8,0,0.328,96.09,128.43,0.12,1001,1.8,194,0.5 +2019,8,13,18,30,10.9,0.93,0.096,0.67,0,0,0,0,10.9,0,0,0,0,0.327,100,115.11,0.12,1001,1.8,184,0.6000000000000001 +2019,8,13,19,30,10.5,0.93,0.095,0.67,0,0,0,0,10.5,0,0,0,0,0.325,100,101.9,0.12,1002,1.8,175,0.6000000000000001 +2019,8,13,20,30,11.3,0.9400000000000001,0.092,0.67,14,85,16,0,10.8,14,85,0,16,0.324,96.45,88.60000000000001,0.12,1002,1.7000000000000002,176,0.8 +2019,8,13,21,30,13.9,0.96,0.0879,0.67,58,544,186,0,10.8,58,544,0,186,0.322,81.33,76.42,0.12,1003,1.7000000000000002,163,0.8 +2019,8,13,22,30,17.1,1,0.08,0.67,76,737,390,0,10.9,76,737,0,390,0.319,66.68,64.8,0.12,1003,1.7000000000000002,102,0.6000000000000001 +2019,8,13,23,30,18.6,1.03,0.07490000000000001,0.67,87,826,566,0,10.100000000000001,87,826,0,566,0.318,57.72,54.53,0.12,1003,1.7000000000000002,60,0.8 +2019,8,14,0,30,20.3,1,0.096,0.67,104,848,687,0,9.4,104,848,0,687,0.313,49.5,46.56,0.12,1002,1.7000000000000002,64,0.8 +2019,8,14,1,30,21,1.03,0.0976,0.67,110,862,748,0,8.6,148,742,0,697,0.312,44.93,42.25,0.12,1001,1.7000000000000002,69,0.7000000000000001 +2019,8,14,2,30,21.3,1.01,0.10830000000000001,0.67,114,849,738,0,7.800000000000001,133,796,33,718,0.31,41.92,42.72,0.12,1001,1.8,70,0.7000000000000001 +2019,8,14,3,30,21.200000000000003,0.99,0.1227,0.67,115,815,662,0,7.4,161,635,0,587,0.308,41.06,47.84,0.12,1000,1.8,72,0.9 +2019,8,14,4,30,20.8,1,0.1242,0.67,104,763,527,4,7.300000000000001,79,145,0,159,0.305,41.660000000000004,56.34,0.12,1000,1.8,75,1.1 +2019,8,14,5,30,20,1.01,0.11800000000000001,0.67,87,660,346,0,7.300000000000001,93,607,0,331,0.302,43.88,66.93,0.12,1000,1.7000000000000002,75,1.2000000000000002 +2019,8,14,6,30,18.3,1.05,0.1288,0.67,60,430,144,0,8.1,60,430,0,144,0.299,51.24,78.73,0.12,1000,1.7000000000000002,72,0.9 +2019,8,14,7,30,16.400000000000002,1.1,0.12430000000000001,0.67,4,15,4,0,8.9,4,15,0,4,0.297,61.050000000000004,91.39,0.12,1001,1.7000000000000002,69,0.7000000000000001 +2019,8,14,8,30,15.3,1.1400000000000001,0.1107,0.67,0,0,0,0,8.9,0,0,0,0,0.295,65.56,104.4,0.12,1001,1.7000000000000002,66,0.8 +2019,8,14,9,30,14.5,1.17,0.1012,0.67,0,0,0,0,9.1,0,0,0,0,0.293,69.82000000000001,117.64,0.12,1002,1.6,64,0.8 +2019,8,14,10,30,13.8,1.18,0.09580000000000001,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.291,73.54,130.95,0.12,1002,1.6,57,0.8 +2019,8,14,11,30,13.3,1.19,0.0925,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.29,76.16,144.09,0.12,1002,1.6,48,0.8 +2019,8,14,12,30,12.9,1.21,0.0898,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.28800000000000003,77.99,156.51,0.12,1002,1.6,35,0.8 +2019,8,14,13,30,12.8,1.21,0.0874,0.67,0,0,0,0,9.1,0,0,0,0,0.28700000000000003,78.32000000000001,165.83,0.12,1002,1.6,21,0.8 +2019,8,14,14,30,12.8,1.21,0.0852,0.67,0,0,0,0,9.1,0,0,33,0,0.28500000000000003,78.14,164.51,0.12,1002,1.5,178,0.6000000000000001 +2019,8,14,15,30,12.700000000000001,1.21,0.08410000000000001,0.67,0,0,0,0,9.1,0,0,0,0,0.28400000000000003,78.67,154.14000000000001,0.12,1001,1.5,316,0.5 +2019,8,14,16,30,12.4,1.2,0.0835,0.67,0,0,0,0,9.1,0,0,0,0,0.28300000000000003,80.38,141.48,0.12,1001,1.5,269,0.4 +2019,8,14,17,30,11.9,1.2,0.0829,0.67,0,0,0,0,9.1,0,0,0,0,0.28300000000000003,82.75,128.27,0.12,1001,1.5,240,0.5 +2019,8,14,18,30,11.4,1.19,0.0823,0.67,0,0,0,0,9,0,0,0,0,0.28300000000000003,85.02,114.95,0.12,1001,1.5,224,0.5 +2019,8,14,19,30,11,1.19,0.0819,0.67,0,0,0,0,8.9,0,0,0,0,0.28300000000000003,86.82000000000001,101.73,0.12,1002,1.5,215,0.7000000000000001 +2019,8,14,20,30,11.600000000000001,1.19,0.08170000000000001,0.67,14,111,17,0,8.8,14,111,0,17,0.28300000000000003,82.85000000000001,88.43,0.12,1002,1.5,213,0.8 +2019,8,14,21,30,14.100000000000001,1.2,0.0804,0.67,57,573,193,0,8.9,57,573,0,193,0.28300000000000003,70.86,76.22,0.12,1003,1.5,252,0.6000000000000001 +2019,8,14,22,30,17.400000000000002,1.22,0.0784,0.67,76,754,400,0,9,76,754,0,400,0.28300000000000003,57.800000000000004,64.57000000000001,0.12,1003,1.4000000000000001,147,0.5 +2019,8,14,23,30,19,1.24,0.0763,0.67,88,839,578,0,8.6,88,839,0,578,0.28300000000000003,50.78,54.26,0.12,1003,1.4000000000000001,5,0.8 +2019,8,15,0,30,21.5,1.25,0.0723,0.67,92,884,703,0,7.800000000000001,92,884,0,703,0.28200000000000003,41.410000000000004,46.26,0.12,1002,1.4000000000000001,12,0.8 +2019,8,15,1,30,22.6,1.25,0.0731,0.67,96,901,766,0,7.1000000000000005,96,901,0,766,0.281,36.75,41.94,0.12,1001,1.4000000000000001,20,0.8 +2019,8,15,2,30,23.1,1.26,0.0728,0.67,99,891,757,0,6.5,185,490,33,547,0.28200000000000003,34.2,42.43,0.12,1000,1.4000000000000001,25,1 +2019,8,15,3,30,23.200000000000003,1.21,0.10400000000000001,0.67,106,848,678,3,6.1000000000000005,232,455,0,539,0.28200000000000003,33.15,47.59,0.12,999,1.4000000000000001,29,1.1 +2019,8,15,4,30,22.8,1.2,0.10700000000000001,0.67,99,792,540,0,6,99,792,0,540,0.28200000000000003,33.61,56.15,0.12,998,1.4000000000000001,32,1.2000000000000002 +2019,8,15,5,30,21.8,1.18,0.1148,0.67,86,679,354,0,5.9,96,571,0,321,0.28200000000000003,35.65,66.78,0.12,998,1.5,38,1.1 +2019,8,15,6,30,19.5,1.18,0.1207,0.67,59,453,148,0,6.9,59,453,0,148,0.281,43.980000000000004,78.61,0.12,998,1.5,45,0.9 +2019,8,15,7,30,17.2,1.19,0.12350000000000001,0.67,4,18,4,0,8.1,4,18,0,4,0.281,55.1,91.28,0.12,999,1.6,46,0.9 +2019,8,15,8,30,15.9,1.2,0.12200000000000001,0.67,0,0,0,0,8.5,0,0,0,0,0.28,61.550000000000004,104.31,0.12,1000,1.6,41,0.9 +2019,8,15,9,30,15.100000000000001,1.2,0.1206,0.67,0,0,0,0,8.9,0,0,0,0,0.279,66.6,117.56,0.12,1000,1.6,33,0.8 +2019,8,15,10,30,14.4,1.19,0.11910000000000001,0.67,0,0,0,0,9.1,0,0,0,0,0.278,70.64,130.86,0.12,1000,1.6,21,0.8 +2019,8,15,11,30,13.8,1.19,0.1163,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.278,74.02,143.99,0.12,1000,1.6,8,0.8 +2019,8,15,12,30,13.200000000000001,1.2,0.11120000000000001,0.67,0,0,0,0,9.3,0,0,33,0,0.278,77.29,156.36,0.12,1000,1.6,176,0.8 +2019,8,15,13,30,12.700000000000001,1.2,0.1072,0.67,0,0,0,0,9.3,0,0,0,0,0.278,79.75,165.56,0.12,1000,1.6,345,0.8 +2019,8,15,14,30,12.3,1.21,0.1034,0.67,0,0,0,0,9.1,0,0,33,0,0.278,81.09,164.22,0.12,999,1.6,338,0.8 +2019,8,15,15,30,12,1.2,0.1018,0.67,0,0,0,0,9,0,0,8,0,0.278,81.88,153.92000000000002,0.12,999,1.6,334,0.8 +2019,8,15,16,30,11.700000000000001,1.2,0.1003,0.67,0,0,0,0,8.9,0,0,8,0,0.278,82.76,141.3,0.12,998,1.6,331,0.8 +2019,8,15,17,30,11.4,1.2,0.09730000000000001,0.67,0,0,0,3,8.8,0,0,0,0,0.277,83.77,128.1,0.12,998,1.6,327,0.7000000000000001 +2019,8,15,18,30,11,1.2,0.0947,0.67,0,0,0,4,8.700000000000001,0,0,0,0,0.277,85.56,114.78,0.12,999,1.6,321,0.7000000000000001 +2019,8,15,19,30,10.9,1.2,0.0922,0.67,0,0,0,3,8.6,0,0,0,0,0.276,85.55,101.55,0.12,999,1.5,316,0.7000000000000001 +2019,8,15,20,30,12,1.21,0.0896,0.67,15,112,18,3,8.5,9,2,67,9,0.276,79.29,88.26,0.12,999,1.5,313,0.9 +2019,8,15,21,30,14.700000000000001,1.22,0.0863,0.67,58,570,196,0,8.6,58,570,0,196,0.277,66.74,76.01,0.12,999,1.5,316,1.2000000000000002 +2019,8,15,22,30,17.900000000000002,1.23,0.0826,0.67,77,750,402,0,8.200000000000001,77,750,0,402,0.278,53.14,64.33,0.12,999,1.5,321,1.4000000000000001 +2019,8,15,23,30,19.6,1.24,0.0794,0.67,88,835,579,0,7.2,88,835,0,579,0.278,44.44,53.99,0.12,999,1.5,322,1.4000000000000001 +2019,8,16,0,30,22.400000000000002,1.25,0.0682,0.67,91,888,708,0,6.6000000000000005,91,888,33,708,0.279,36.11,45.96,0.12,998,1.5,311,1.2000000000000002 +2019,8,16,1,30,23.5,1.25,0.069,0.67,93,906,770,0,6.2,93,906,0,770,0.28,32.88,41.62,0.12,997,1.5,306,1 +2019,8,16,2,30,24.1,1.25,0.0692,0.67,94,901,762,0,5.800000000000001,94,901,33,762,0.28,30.810000000000002,42.14,0.12,996,1.5,303,1 +2019,8,16,3,30,24.200000000000003,1.24,0.0753,0.67,92,875,685,0,5.7,141,738,0,641,0.281,30.28,47.35,0.12,995,1.5,300,1.1 +2019,8,16,4,30,24,1.25,0.07490000000000001,0.67,84,829,548,0,5.6000000000000005,156,552,0,465,0.28200000000000003,30.54,55.95,0.12,994,1.5,298,1.1 +2019,8,16,5,30,23.1,1.24,0.0733,0.67,72,734,363,0,5.6000000000000005,72,734,0,363,0.28400000000000003,32.26,66.62,0.12,994,1.5,300,0.9 +2019,8,16,6,30,20.900000000000002,1.24,0.0762,0.67,50,526,155,0,7.4,50,526,0,155,0.28500000000000003,41.75,78.49,0.12,994,1.5,313,0.7000000000000001 +2019,8,16,7,30,18.7,1.26,0.076,0.67,6,35,5,0,8.6,6,35,0,5,0.28700000000000003,51.85,91.18,0.12,995,1.5,318,0.7000000000000001 +2019,8,16,8,30,17.400000000000002,1.29,0.0734,0.67,0,0,0,0,8.6,0,0,0,0,0.28700000000000003,56.27,104.22,0.12,995,1.5,310,0.8 +2019,8,16,9,30,16.3,1.32,0.0717,0.67,0,0,0,0,8.6,0,0,0,0,0.28700000000000003,60.4,117.48,0.12,995,1.5,306,0.8 +2019,8,16,10,30,15.4,1.34,0.0711,0.67,0,0,0,0,8.4,0,0,0,0,0.28700000000000003,63.24,130.78,0.12,996,1.5,306,0.8 +2019,8,16,11,30,14.5,1.36,0.0708,0.67,0,0,0,0,8.200000000000001,0,0,0,0,0.28700000000000003,65.71000000000001,143.89000000000001,0.12,995,1.5,307,0.9 +2019,8,16,12,30,13.700000000000001,1.3900000000000001,0.0708,0.67,0,0,0,0,7.800000000000001,0,0,0,0,0.28700000000000003,67.49,156.21,0.12,995,1.5,308,0.9 +2019,8,16,13,30,13.200000000000001,1.4000000000000001,0.0711,0.67,0,0,0,0,7.4,0,0,0,0,0.28800000000000003,67.77,165.28,0.12,995,1.5,309,0.9 +2019,8,16,14,30,12.700000000000001,1.41,0.07150000000000001,0.67,0,0,0,0,7,0,0,33,0,0.28800000000000003,68.15,163.92000000000002,0.12,995,1.5,308,0.9 +2019,8,16,15,30,12.200000000000001,1.4000000000000001,0.0722,0.67,0,0,0,0,6.6000000000000005,0,0,0,0,0.28800000000000003,68.66,153.70000000000002,0.12,994,1.5,305,0.8 +2019,8,16,16,30,11.700000000000001,1.3900000000000001,0.0732,0.67,0,0,0,0,6.300000000000001,0,0,0,0,0.28700000000000003,69.62,141.12,0.12,994,1.5,302,0.8 +2019,8,16,17,30,11.3,1.3800000000000001,0.0734,0.67,0,0,0,0,6.2,0,0,0,0,0.28600000000000003,70.61,127.93,0.12,994,1.5,297,0.8 +2019,8,16,18,30,10.9,1.37,0.0731,0.67,0,0,0,0,6.1000000000000005,0,0,0,0,0.28500000000000003,72.3,114.61,0.12,995,1.5,293,0.8 +2019,8,16,19,30,10.700000000000001,1.36,0.07150000000000001,0.67,0,0,0,0,6.2,0,0,0,0,0.28400000000000003,73.51,101.37,0.12,995,1.6,289,0.8 +2019,8,16,20,30,12,1.36,0.07010000000000001,0.67,15,142,20,0,6.4,15,142,0,20,0.28400000000000003,68.82000000000001,88.08,0.12,996,1.6,288,1.1 +2019,8,16,21,30,14.8,1.36,0.0673,0.67,53,606,202,0,6.800000000000001,53,606,0,202,0.28400000000000003,58.64,75.79,0.12,996,1.5,289,1.4000000000000001 +2019,8,16,22,30,18.3,1.37,0.0636,0.67,70,778,410,0,7.1000000000000005,70,778,0,410,0.28400000000000003,48,64.09,0.12,996,1.5,289,1.6 +2019,8,16,23,30,20.1,1.3800000000000001,0.061000000000000006,0.67,79,858,587,0,7,79,858,0,587,0.28400000000000003,42.74,53.72,0.12,996,1.5,287,1.6 +2019,8,17,0,30,23.8,1.41,0.057,0.67,84,902,714,0,6.7,84,902,0,714,0.28500000000000003,33.3,45.660000000000004,0.12,995,1.5,276,1.5 +2019,8,17,1,30,25.1,1.43,0.055900000000000005,0.67,86,921,778,0,6.300000000000001,86,921,0,778,0.28500000000000003,30.03,41.300000000000004,0.12,993,1.4000000000000001,271,1.4000000000000001 +2019,8,17,2,30,25.8,1.45,0.055,0.67,85,919,770,0,5.9,85,919,33,770,0.28500000000000003,27.88,41.84,0.12,992,1.4000000000000001,269,1.4000000000000001 +2019,8,17,3,30,26.1,1.43,0.0584,0.67,84,896,694,0,5.4,84,896,0,694,0.28400000000000003,26.580000000000002,47.1,0.12,992,1.4000000000000001,269,1.3 +2019,8,17,4,30,25.900000000000002,1.44,0.0582,0.67,76,851,555,0,5.2,76,851,0,555,0.28400000000000003,26.47,55.75,0.12,991,1.5,269,1.3 +2019,8,17,5,30,24.8,1.45,0.057100000000000005,0.67,66,762,370,0,5.1000000000000005,66,762,0,370,0.28300000000000003,28.07,66.46000000000001,0.12,991,1.5,272,1 +2019,8,17,6,30,22.3,1.45,0.0568,0.67,45,568,160,0,7.4,45,568,0,160,0.28300000000000003,38.27,78.36,0.12,991,1.5,292,0.7000000000000001 +2019,8,17,7,30,19.700000000000003,1.46,0.0562,0.67,6,50,5,0,8.6,6,50,0,5,0.28300000000000003,48.620000000000005,91.08,0.12,992,1.5,305,0.7000000000000001 +2019,8,17,8,30,18.1,1.47,0.0545,0.67,0,0,0,0,8.6,0,0,0,0,0.28300000000000003,53.870000000000005,104.13,0.12,992,1.5,297,0.8 +2019,8,17,9,30,17.1,1.47,0.0522,0.67,0,0,0,0,8.700000000000001,0,0,0,0,0.28300000000000003,57.69,117.39,0.12,993,1.5,287,0.8 +2019,8,17,10,30,16.3,1.47,0.0509,0.67,0,0,0,0,8.5,0,0,0,0,0.28300000000000003,59.78,130.69,0.12,993,1.5,272,0.8 +2019,8,17,11,30,15.700000000000001,1.46,0.050300000000000004,0.67,0,0,0,0,8.1,0,0,0,0,0.28300000000000003,60.410000000000004,143.79,0.12,994,1.4000000000000001,254,0.8 +2019,8,17,12,30,15,1.46,0.049300000000000004,0.67,0,0,0,0,7.4,0,0,0,0,0.28300000000000003,60.61,156.05,0.12,994,1.4000000000000001,234,0.8 +2019,8,17,13,30,14.200000000000001,1.44,0.0489,0.67,0,0,0,0,6.800000000000001,0,0,0,0,0.28200000000000003,61.2,165,0.12,994,1.4000000000000001,211,0.8 +2019,8,17,14,30,13.4,1.42,0.049600000000000005,0.67,0,0,0,0,6.4,0,0,33,0,0.281,62.61,163.62,0.12,994,1.4000000000000001,185,0.9 +2019,8,17,15,30,12.700000000000001,1.3900000000000001,0.0521,0.67,0,0,0,0,7,0,0,0,0,0.28,68.06,153.48,0.12,994,1.4000000000000001,168,0.9 +2019,8,17,16,30,12.100000000000001,1.34,0.057,0.67,0,0,0,0,8.3,0,0,0,0,0.279,77.4,140.93,0.12,994,1.5,161,0.8 +2019,8,17,17,30,11.8,1.27,0.06380000000000001,0.67,0,0,0,0,9.9,0,0,0,0,0.279,88.33,127.75,0.12,994,1.6,154,0.8 +2019,8,17,18,30,11.600000000000001,1.18,0.0729,0.67,0,0,0,0,11.5,0,0,0,0,0.278,99.05,114.43,0.12,995,1.7000000000000002,150,0.8 +2019,8,17,19,30,11.8,1.1,0.0804,0.67,0,0,0,0,11.8,0,0,0,0,0.277,100,101.18,0.12,995,1.7000000000000002,147,0.8 +2019,8,17,20,30,13.5,1.05,0.08460000000000001,0.67,17,116,21,0,12.700000000000001,17,116,0,21,0.275,95.21000000000001,87.89,0.12,996,1.8,141,1.1 +2019,8,17,21,30,16.400000000000002,1.02,0.09050000000000001,0.67,61,558,200,0,13.100000000000001,61,558,0,200,0.275,80.96000000000001,75.58,0.12,996,1.8,124,1.7000000000000002 +2019,8,17,22,30,19,1.03,0.09000000000000001,0.67,81,736,405,0,13.3,81,736,0,405,0.275,69.53,63.85,0.12,996,1.9000000000000001,103,1.9000000000000001 +2019,8,17,23,30,20.200000000000003,1.08,0.0792,0.67,89,827,582,0,12.8,89,827,0,582,0.275,62.39,53.44,0.12,996,1.9000000000000001,93,1.9000000000000001 +2019,8,18,0,30,22.5,1.1400000000000001,0.0762,0.67,95,871,707,0,12.100000000000001,95,871,0,707,0.276,51.9,45.35,0.12,995,1.9000000000000001,78,1.5 +2019,8,18,1,30,23.6,1.18,0.0752,0.67,97,888,767,0,11.4,97,888,0,767,0.276,46.230000000000004,40.980000000000004,0.12,994,2,67,1.3 +2019,8,18,2,30,24.3,1.19,0.07490000000000001,0.67,98,883,759,0,10.700000000000001,98,883,33,759,0.277,42.35,41.54,0.12,993,2,56,1 +2019,8,18,3,30,24.6,1.2,0.0847,0.67,98,854,682,0,10.100000000000001,98,854,0,682,0.277,40.1,46.85,0.12,992,2,47,0.9 +2019,8,18,4,30,24.400000000000002,1.22,0.0901,0.67,91,801,544,0,9.8,119,692,0,510,0.278,39.53,55.550000000000004,0.12,992,2,45,0.9 +2019,8,18,5,30,23.6,1.22,0.09190000000000001,0.67,78,703,360,0,9.5,78,703,0,360,0.279,40.800000000000004,66.31,0.12,992,2,50,1 +2019,8,18,6,30,21.3,1.24,0.0921,0.67,53,496,154,0,10,53,496,0,154,0.28,48.410000000000004,78.24,0.12,992,2,59,0.9 +2019,8,18,7,30,18.8,1.24,0.09240000000000001,0.67,6,31,5,0,11.100000000000001,6,31,0,5,0.28200000000000003,61.04,90.97,0.12,992,2,59,0.9 +2019,8,18,8,30,17.400000000000002,1.23,0.0945,0.67,0,0,0,0,11.5,0,0,0,0,0.28300000000000003,68.38,104.04,0.12,993,2,52,0.8 +2019,8,18,9,30,16.5,1.22,0.09580000000000001,0.67,0,0,0,0,11.8,0,0,0,0,0.28400000000000003,73.99,117.31,0.12,993,2,42,0.8 +2019,8,18,10,30,15.8,1.21,0.09530000000000001,0.67,0,0,0,0,12,0,0,0,0,0.28500000000000003,78.06,130.61,0.12,993,1.9000000000000001,32,0.8 +2019,8,18,11,30,15.100000000000001,1.2,0.0942,0.67,0,0,0,0,12,0,0,0,0,0.28500000000000003,81.96000000000001,143.68,0.12,993,1.9000000000000001,25,0.8 +2019,8,18,12,30,14.5,1.19,0.09140000000000001,0.67,0,0,0,0,12,0,0,0,0,0.28600000000000003,85.06,155.89000000000001,0.12,993,1.8,19,0.8 +2019,8,18,13,30,14,1.17,0.0868,0.67,0,0,0,0,11.9,0,0,0,0,0.28600000000000003,87.32000000000001,164.72,0.12,993,1.8,8,0.8 +2019,8,18,14,30,13.5,1.1500000000000001,0.0825,0.67,0,0,0,0,11.700000000000001,0,0,33,0,0.28500000000000003,88.94,163.32,0.12,992,1.8,174,0.8 +2019,8,18,15,30,13.100000000000001,1.12,0.0799,0.67,0,0,0,0,11.4,0,0,0,0,0.28500000000000003,89.69,153.25,0.12,991,1.8,341,0.8 +2019,8,18,16,30,12.700000000000001,1.09,0.0784,0.67,0,0,0,0,11.200000000000001,0,0,0,0,0.28500000000000003,90.78,140.73,0.12,991,1.8,331,0.8 +2019,8,18,17,30,12.3,1.07,0.0777,0.67,0,0,0,0,11,0,0,0,0,0.28500000000000003,91.95,127.57000000000001,0.12,991,1.8,324,0.8 +2019,8,18,18,30,12,1.05,0.07740000000000001,0.67,0,0,0,0,10.9,0,0,0,0,0.28600000000000003,92.91,114.25,0.12,991,1.8,312,0.8 +2019,8,18,19,30,11.8,1.03,0.0784,0.67,0,0,0,0,10.9,0,0,0,0,0.28700000000000003,93.92,100.99000000000001,0.12,992,1.8,297,0.8 +2019,8,18,20,30,13.100000000000001,1.03,0.0796,0.67,17,132,22,0,10.9,17,132,0,22,0.28800000000000003,86.33,87.71000000000001,0.12,993,1.8,290,1.2000000000000002 +2019,8,18,21,30,15.9,1.05,0.0786,0.67,59,587,207,0,11,59,587,0,207,0.289,72.47,75.35000000000001,0.12,993,1.7000000000000002,288,2 +2019,8,18,22,30,18.8,1.07,0.076,0.67,76,762,415,0,10.5,76,762,0,415,0.29,58.61,63.6,0.12,993,1.5,282,2.5 +2019,8,18,23,30,20.3,1.05,0.0745,0.67,88,844,594,0,8.9,88,844,0,594,0.291,47.92,53.160000000000004,0.12,993,1.5,278,2.6 +2019,8,19,0,30,23.400000000000002,1.05,0.07010000000000001,0.67,92,891,722,0,7.2,92,891,0,722,0.292,35.42,45.04,0.12,992,1.4000000000000001,269,2.7 +2019,8,19,1,30,24.6,0.92,0.0751,0.67,100,903,785,0,5.9,100,903,0,785,0.292,30.11,40.65,0.12,991,1.3,263,2.9000000000000004 +2019,8,19,2,30,25.200000000000003,0.77,0.0825,0.67,103,894,775,0,4.9,103,894,33,775,0.292,27.02,41.230000000000004,0.12,990,1.3,257,3.2 +2019,8,19,3,30,25.1,0.61,0.08710000000000001,0.67,100,871,699,0,3.9000000000000004,100,871,0,699,0.291,25.43,46.59,0.12,990,1.2000000000000002,253,3.5 +2019,8,19,4,30,24.3,0.5700000000000001,0.07980000000000001,0.67,89,836,564,0,2.8000000000000003,89,836,0,564,0.291,24.63,55.35,0.12,990,1.1,250,3.6 +2019,8,19,5,30,22.8,0.64,0.0673,0.67,71,767,381,0,1.3,71,767,0,381,0.291,24.14,66.15,0.12,991,0.9,247,3.3000000000000003 +2019,8,19,6,30,20.200000000000003,0.78,0.053500000000000006,0.67,47,598,170,0,-0.30000000000000004,47,598,0,170,0.291,25.330000000000002,78.11,0.12,992,0.8,244,2.4000000000000004 +2019,8,19,7,30,17.5,0.9,0.0439,0.67,7,59,6,0,-0.6000000000000001,7,59,0,6,0.291,29.32,90.87,0.12,993,0.7000000000000001,241,1.6 +2019,8,19,8,30,15.8,0.96,0.0379,0.67,0,0,0,0,-1,0,0,0,0,0.291,31.8,103.95,0.12,994,0.6000000000000001,237,1.5 +2019,8,19,9,30,14.5,1.01,0.033800000000000004,0.67,0,0,0,0,-1.2000000000000002,0,0,0,0,0.291,34.03,117.23,0.12,995,0.5,234,1.3 +2019,8,19,10,30,13.4,1.06,0.0307,0.67,0,0,0,0,-1.1,0,0,0,0,0.29,36.65,130.52,0.12,996,0.5,232,1.2000000000000002 +2019,8,19,11,30,12.4,1.11,0.028800000000000003,0.67,0,0,0,0,-1,0,0,0,0,0.28800000000000003,39.46,143.57,0.12,997,0.5,230,1.2000000000000002 +2019,8,19,12,30,11.600000000000001,1.16,0.0287,0.67,0,0,0,0,-1,0,0,0,0,0.28700000000000003,41.63,155.72,0.12,997,0.6000000000000001,227,1.1 +2019,8,19,13,30,10.8,1.22,0.029300000000000003,0.67,0,0,0,0,-0.9,0,0,0,0,0.28600000000000003,44.2,164.43,0.12,997,0.6000000000000001,225,1.1 +2019,8,19,14,30,10.100000000000001,1.27,0.0297,0.67,0,0,0,0,-0.8,0,0,33,0,0.28600000000000003,46.56,163.01,0.12,997,0.6000000000000001,223,1.1 +2019,8,19,15,30,9.4,1.32,0.029300000000000003,0.67,0,0,0,0,-0.7000000000000001,0,0,0,0,0.28600000000000003,49.17,153.01,0.12,997,0.5,224,1 +2019,8,19,16,30,8.700000000000001,1.35,0.0281,0.67,0,0,0,0,-0.7000000000000001,0,0,0,0,0.28500000000000003,51.800000000000004,140.53,0.12,997,0.5,225,1 +2019,8,19,17,30,8,1.3800000000000001,0.026500000000000003,0.67,0,0,0,0,-0.7000000000000001,0,0,0,0,0.28500000000000003,54.09,127.38000000000001,0.12,997,0.5,225,1 +2019,8,19,18,30,7.300000000000001,1.3900000000000001,0.0253,0.67,0,0,0,0,-0.8,0,0,0,0,0.28500000000000003,56.26,114.06,0.12,998,0.5,225,1 +2019,8,19,19,30,6.800000000000001,1.41,0.0245,0.67,0,0,0,0,-1,0,0,0,0,0.28500000000000003,57.74,100.8,0.12,998,0.4,227,0.9 +2019,8,19,20,30,7.9,1.41,0.0236,0.67,18,268,30,0,-0.8,18,268,0,30,0.28400000000000003,54.14,87.51,0.12,999,0.4,225,1.2000000000000002 +2019,8,19,21,30,10.700000000000001,1.42,0.0224,0.67,44,755,238,0,-1.1,44,755,0,238,0.28400000000000003,43.87,75.13,0.12,1000,0.4,203,1.6 +2019,8,19,22,30,13.700000000000001,1.42,0.0212,0.67,56,895,457,0,-2.4000000000000004,56,895,0,457,0.28500000000000003,32.75,63.35,0.12,1000,0.4,172,1.6 +2019,8,19,23,30,15.100000000000001,1.44,0.0205,0.67,62,958,640,0,-3.9000000000000004,62,958,0,640,0.28500000000000003,26.67,52.88,0.12,1000,0.4,160,1.5 +2019,8,20,0,30,18.400000000000002,1.12,0.0268,0.67,70,979,766,0,-5,70,979,0,766,0.28500000000000003,19.91,44.72,0.13,999,0.5,144,1 +2019,8,20,1,30,20,1.1500000000000001,0.0263,0.67,73,992,829,0,-5.9,73,992,0,829,0.28500000000000003,16.86,40.32,0.13,998,0.5,146,0.7000000000000001 +2019,8,20,2,30,21.1,1.18,0.025400000000000002,0.67,73,991,822,0,-6.7,73,991,33,822,0.28500000000000003,14.790000000000001,40.93,0.13,997,0.5,162,0.5 +2019,8,20,3,30,21.700000000000003,0.9500000000000001,0.032100000000000004,0.67,74,972,745,0,-7.4,74,972,0,745,0.28500000000000003,13.540000000000001,46.34,0.13,996,0.4,188,0.5 +2019,8,20,4,30,21.8,0.99,0.0313,0.67,69,935,603,0,-7.9,69,935,0,603,0.28400000000000003,12.98,55.15,0.13,996,0.4,216,0.5 +2019,8,20,5,30,21,1.03,0.0304,0.67,58,857,407,0,-8.200000000000001,58,857,0,407,0.28400000000000003,13.26,66,0.13,996,0.4,246,0.4 +2019,8,20,6,30,18.3,1.05,0.029900000000000003,0.67,43,679,184,0,-3.9000000000000004,43,679,0,184,0.28400000000000003,21.79,77.99,0.13,996,0.4,285,0.4 +2019,8,20,7,30,15.200000000000001,1.06,0.029900000000000003,0.67,7,84,7,0,-0.9,7,84,0,7,0.28300000000000003,33.1,90.18,0.13,997,0.4,302,0.6000000000000001 +2019,8,20,8,30,13.5,1.04,0.0297,0.67,0,0,0,0,-1.8,0,0,0,0,0.28300000000000003,34.800000000000004,103.86,0.13,997,0.4,290,0.7000000000000001 +2019,8,20,9,30,12.4,1.01,0.030100000000000002,0.67,0,0,0,0,-1.9000000000000001,0,0,0,0,0.28300000000000003,37.12,117.14,0.13,998,0.5,275,0.8 +2019,8,20,10,30,11.5,0.96,0.0307,0.67,0,0,0,0,-2.3000000000000003,0,0,0,0,0.28400000000000003,38.08,130.43,0.13,998,0.5,267,0.9 +2019,8,20,11,30,10.9,0.93,0.0307,0.67,0,0,0,0,-2.9000000000000004,0,0,0,0,0.28500000000000003,37.99,143.46,0.13,998,0.5,262,0.9 +2019,8,20,12,30,10.200000000000001,0.93,0.0298,0.67,0,0,0,0,-3,0,0,0,0,0.28700000000000003,39.4,155.55,0.13,998,0.5,258,0.9 +2019,8,20,13,30,9.5,0.96,0.027600000000000003,0.67,0,0,0,0,-2.9000000000000004,0,0,0,0,0.29,41.53,164.14000000000001,0.13,998,0.5,256,0.9 +2019,8,20,14,30,8.9,1.02,0.0252,0.67,0,0,0,0,-2.8000000000000003,0,0,33,0,0.294,43.72,162.69,0.13,997,0.5,256,1 +2019,8,20,15,30,8.3,1.1,0.023,0.67,0,0,0,0,-2.5,0,0,0,0,0.301,46.38,152.77,0.13,997,0.5,258,1 +2019,8,20,16,30,7.9,1.2,0.0218,0.67,0,0,0,0,-2.2,0,0,0,0,0.306,48.7,140.32,0.13,996,0.4,259,1 +2019,8,20,17,30,7.4,1.3,0.021500000000000002,0.67,0,0,0,0,-2,0,0,0,0,0.309,51.49,127.19,0.13,996,0.4,259,1 +2019,8,20,18,30,7,1.3900000000000001,0.0218,0.67,0,0,0,0,-1.7000000000000002,0,0,0,0,0.309,53.81,113.87,0.13,996,0.4,259,1 +2019,8,20,19,30,6.800000000000001,1.45,0.0222,0.67,0,0,0,0,-1.5,0,0,0,0,0.308,55.29,100.60000000000001,0.13,996,0.4,259,1 +2019,8,20,20,30,8.4,1.47,0.0223,0.67,19,285,32,0,-1.2000000000000002,19,285,0,32,0.306,51.02,87.31,0.13,996,0.30000000000000004,259,1.4000000000000001 +2019,8,20,21,30,11.600000000000001,1.47,0.022000000000000002,0.67,44,772,245,0,-0.9,44,772,0,245,0.304,41.83,74.9,0.13,996,0.30000000000000004,248,2.3000000000000003 +2019,8,20,22,30,15,1.46,0.0217,0.67,55,908,466,0,-0.5,55,908,0,466,0.302,34.56,63.09,0.13,996,0.30000000000000004,237,2.9000000000000004 +2019,8,20,23,30,16.7,1.45,0.0217,0.67,62,969,651,0,-0.8,62,969,0,651,0.301,30.43,52.59,0.13,996,0.30000000000000004,237,3 +2019,8,21,0,30,20.8,1.18,0.0285,0.67,72,985,776,0,-1.5,72,985,0,776,0.298,22.32,44.4,0.13,994,0.4,239,3.2 +2019,8,21,1,30,22.5,1.21,0.0309,0.67,76,988,833,0,-1.7000000000000002,76,988,0,833,0.298,19.77,39.99,0.13,993,0.5,239,3.3000000000000003 +2019,8,21,2,30,23.400000000000002,1.24,0.0324,0.67,77,977,819,0,-1.3,77,977,33,819,0.298,19.400000000000002,40.62,0.13,992,0.6000000000000001,240,3.3000000000000003 +2019,8,21,3,30,23.8,1.07,0.0385,0.67,78,949,736,0,-0.4,78,949,0,736,0.298,20.240000000000002,46.08,0.13,991,0.7000000000000001,240,3.3000000000000003 +2019,8,21,4,30,23.5,1.08,0.039400000000000004,0.67,71,905,591,0,0.6000000000000001,71,905,0,591,0.298,22.01,54.95,0.13,991,0.7000000000000001,240,3.2 +2019,8,21,5,30,22.400000000000002,1.1,0.0388,0.67,61,818,396,0,1.3,61,818,0,396,0.297,24.88,65.84,0.13,991,0.8,241,2.8000000000000003 +2019,8,21,6,30,19.900000000000002,1.1300000000000001,0.038,0.67,44,636,178,0,2.4000000000000004,44,636,0,178,0.297,31.220000000000002,77.87,0.13,991,0.8,245,1.8 +2019,8,21,7,30,17.2,1.16,0.037700000000000004,0.67,7,73,7,0,3.3000000000000003,7,73,0,7,0.297,39.42,90.10000000000001,0.13,992,0.8,249,1.2000000000000002 +2019,8,21,8,30,15.8,1.18,0.0379,0.67,0,0,0,0,3,0,0,0,0,0.296,42.4,103.77,0.13,992,0.8,250,1.2000000000000002 +2019,8,21,9,30,14.8,1.19,0.0386,0.67,0,0,0,0,2.8000000000000003,0,0,0,0,0.295,44.58,117.06,0.13,993,0.8,248,1.2000000000000002 +2019,8,21,10,30,14,1.19,0.0386,0.67,0,0,0,0,2.6,0,0,0,0,0.295,46.09,130.34,0.13,993,0.7000000000000001,245,1.3 +2019,8,21,11,30,13.200000000000001,1.21,0.0376,0.67,0,0,0,0,2.3000000000000003,0,0,0,0,0.294,47.74,143.35,0.13,993,0.7000000000000001,243,1.3 +2019,8,21,12,30,12.5,1.27,0.0354,0.67,0,0,0,0,2.3000000000000003,0,0,0,0,0.294,49.67,155.38,0.13,993,0.7000000000000001,242,1.2000000000000002 +2019,8,21,13,30,11.9,1.36,0.0327,0.67,0,0,0,0,2.2,0,0,0,0,0.294,51.6,163.85,0.13,993,0.7000000000000001,241,1.2000000000000002 +2019,8,21,14,30,11.3,1.46,0.0302,0.67,0,0,0,0,2.2,0,0,33,0,0.295,53.63,162.37,0.13,992,0.7000000000000001,241,1.2000000000000002 +2019,8,21,15,30,10.9,1.52,0.0284,0.67,0,0,0,0,2.2,0,0,0,0,0.296,55,152.52,0.13,992,0.7000000000000001,240,1.2000000000000002 +2019,8,21,16,30,10.5,1.56,0.0273,0.67,0,0,0,0,2.3000000000000003,0,0,0,0,0.298,56.99,140.11,0.13,991,0.7000000000000001,239,1.2000000000000002 +2019,8,21,17,30,10.3,1.57,0.0264,0.67,0,0,0,0,2.7,0,0,0,0,0.3,59.27,126.99000000000001,0.13,991,0.7000000000000001,238,1.3 +2019,8,21,18,30,10,1.54,0.026000000000000002,0.67,0,0,0,0,3.2,0,0,0,0,0.298,62.6,113.68,0.13,992,0.7000000000000001,239,1.2000000000000002 +2019,8,21,19,30,9.9,1.47,0.025500000000000002,0.67,0,0,0,0,3.6,0,0,0,0,0.295,65.07000000000001,100.41,0.13,992,0.7000000000000001,242,1.2000000000000002 +2019,8,21,20,30,11.5,1.43,0.0252,0.67,19,266,32,0,4.1000000000000005,19,266,0,32,0.292,60.35,87.11,0.13,992,0.6000000000000001,245,1.7000000000000002 +2019,8,21,21,30,14.200000000000001,1.4000000000000001,0.025,0.67,44,741,240,0,4.5,44,741,0,240,0.293,52.120000000000005,74.67,0.13,992,0.6000000000000001,242,2.8000000000000003 +2019,8,21,22,30,16.8,1.41,0.024800000000000003,0.67,57,879,458,0,4.7,57,879,0,458,0.297,44.75,62.83,0.13,991,0.6000000000000001,237,3.4000000000000004 +2019,8,21,23,30,18.1,1.43,0.0245,0.67,64,944,641,0,4.3,64,944,0,641,0.299,39.92,52.300000000000004,0.13,991,0.6000000000000001,238,3.6 +2019,8,22,0,30,21.200000000000003,0.99,0.0354,0.67,77,962,768,0,3.3000000000000003,77,962,0,768,0.3,30.78,44.07,0.12,990,0.6000000000000001,240,3.9000000000000004 +2019,8,22,1,30,22.6,1.11,0.0358,0.67,77,974,827,0,2.6,77,974,0,827,0.302,26.830000000000002,39.65,0.12,989,0.7000000000000001,241,4.1000000000000005 +2019,8,22,2,30,23.3,1.22,0.0341,0.67,79,969,818,0,2.1,79,969,33,818,0.304,24.96,40.31,0.12,988,0.7000000000000001,242,4.2 +2019,8,22,3,30,23.400000000000002,0.86,0.043000000000000003,0.67,80,939,734,0,1.9000000000000001,80,939,0,734,0.304,24.32,45.83,0.12,987,0.8,242,4.1000000000000005 +2019,8,22,4,30,23.1,0.86,0.0409,0.67,72,895,589,0,1.9000000000000001,72,895,0,589,0.304,24.77,54.75,0.12,987,0.9,239,4 +2019,8,22,5,30,22.1,0.84,0.037700000000000004,0.67,61,811,395,0,2,61,811,0,395,0.302,26.57,65.69,0.12,987,1,235,3.6 +2019,8,22,6,30,20.1,0.8,0.0362,0.67,45,622,177,0,2.5,45,622,0,177,0.301,31.13,77.74,0.12,988,1.1,232,2.6 +2019,8,22,7,30,17.8,0.77,0.0379,0.67,7,66,7,0,3.5,7,66,0,7,0.3,38.61,90.02,0.12,989,1.1,231,1.7000000000000002 +2019,8,22,8,30,16.5,0.72,0.041,0.67,0,0,0,0,4,0,0,0,0,0.3,43.27,103.68,0.12,990,1.2000000000000002,227,1.4000000000000001 +2019,8,22,9,30,15.600000000000001,0.7000000000000001,0.0439,0.67,0,0,0,0,4.3,0,0,0,0,0.3,46.980000000000004,116.98,0.12,992,1.3,217,1.2000000000000002 +2019,8,22,10,30,14.700000000000001,0.7000000000000001,0.0478,0.67,0,0,0,0,4.800000000000001,0,0,0,0,0.3,51.58,130.25,0.12,993,1.4000000000000001,201,1 +2019,8,22,11,30,14.100000000000001,0.68,0.062400000000000004,0.67,0,0,0,0,5.6000000000000005,0,0,0,0,0.299,56.5,143.23,0.12,993,1.5,179,1 +2019,8,22,12,30,13.700000000000001,0.52,0.1232,0.67,0,0,0,0,6.5,0,0,0,0,0.297,61.96,155.21,0.12,994,1.6,158,1.1 +2019,8,22,13,30,13.9,0.34,0.2513,0.67,0,0,0,4,7.6000000000000005,0,0,0,0,0.294,65.95,163.55,0.12,994,1.7000000000000002,141,1.3 +2019,8,22,14,30,14.100000000000001,0.27,0.34240000000000004,0.67,0,0,0,3,8.9,0,0,33,0,0.292,70.82000000000001,162.05,0.12,994,1.6,134,1.3 +2019,8,22,15,30,13.700000000000001,0.25,0.3512,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.291,76.17,152.26,0.12,994,1.6,133,1.1 +2019,8,22,16,30,13,0.26,0.30260000000000004,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.291,80.42,139.9,0.12,995,1.5,135,0.9 +2019,8,22,17,30,12.3,0.29,0.2401,0.67,0,0,0,0,9.4,0,0,0,0,0.291,82.7,126.79,0.12,995,1.4000000000000001,141,0.9 +2019,8,22,18,30,11.700000000000001,0.34,0.19540000000000002,0.67,0,0,0,0,9,0,0,0,0,0.291,83.72,113.48,0.12,996,1.3,149,0.8 +2019,8,22,19,30,11.3,0.37,0.1622,0.67,0,0,0,0,8.6,0,0,0,0,0.291,83.39,100.2,0.12,997,1.2000000000000002,156,0.8 +2019,8,22,20,30,12.3,0.4,0.1342,0.67,26,99,31,0,8,26,99,33,31,0.29,75.14,86.91,0.12,998,1.1,159,1.2000000000000002 +2019,8,22,21,30,14.5,0.41000000000000003,0.1129,0.67,74,550,222,0,7.2,74,550,0,222,0.29,61.51,74.44,0.12,999,1,154,1.9000000000000001 +2019,8,22,22,30,16.6,0.41000000000000003,0.09910000000000001,0.67,93,751,439,0,5.9,93,751,0,439,0.29,49.11,62.57,0.12,999,0.9,143,2.2 +2019,8,22,23,30,17.6,0.43,0.092,0.67,104,842,622,0,4.800000000000001,104,842,0,622,0.29,42.64,52,0.12,999,0.9,137,2.2 +2019,8,23,0,30,20.1,0.55,0.0742,0.67,100,906,754,0,4,100,906,0,754,0.289,34.58,43.75,0.12,999,0.9,125,1.9000000000000001 +2019,8,23,1,30,21.200000000000003,0.56,0.0728,0.67,102,924,817,0,3.4000000000000004,102,924,0,817,0.289,30.990000000000002,39.31,0.12,998,0.9,118,1.9000000000000001 +2019,8,23,2,30,21.900000000000002,0.58,0.0717,0.67,100,922,806,0,3,100,922,33,806,0.289,28.810000000000002,39.99,0.12,997,1,113,1.9000000000000001 +2019,8,23,3,30,22,0.6900000000000001,0.06430000000000001,0.67,93,906,727,0,2.8000000000000003,93,906,0,727,0.29,28.32,45.57,0.12,997,1,108,1.9000000000000001 +2019,8,23,4,30,21.700000000000003,0.6900000000000001,0.0648,0.67,85,857,582,0,3.1,85,857,0,582,0.291,29.41,54.550000000000004,0.12,997,1.1,102,2 +2019,8,23,5,30,20.8,0.6900000000000001,0.0649,0.67,74,764,390,0,3.6,74,764,0,390,0.293,32.34,65.53,0.12,997,1.1,95,1.9000000000000001 +2019,8,23,6,30,18.6,0.68,0.065,0.67,53,562,173,0,4.6000000000000005,53,562,0,173,0.294,39.56,77.62,0.12,998,1.2000000000000002,87,1.3 +2019,8,23,7,30,16.2,0.6900000000000001,0.0644,0.67,7,45,7,0,6.4,7,45,0,7,0.295,52.25,89.92,0.12,999,1.2000000000000002,81,0.9 +2019,8,23,8,30,14.9,0.6900000000000001,0.064,0.67,0,0,0,0,7.4,0,0,0,0,0.295,60.89,103.59,0.12,999,1.2000000000000002,81,0.8 +2019,8,23,9,30,14.100000000000001,0.68,0.06420000000000001,0.67,0,0,0,0,8.5,0,0,0,0,0.294,68.82000000000001,116.89,0.12,1000,1.2000000000000002,85,0.8 +2019,8,23,10,30,13.5,0.67,0.065,0.67,0,0,0,0,9.3,0,0,0,0,0.292,75.53,130.16,0.12,1000,1.2000000000000002,92,0.8 +2019,8,23,11,30,12.9,0.65,0.0658,0.67,0,0,0,0,9.8,0,0,0,0,0.29,81.21000000000001,143.12,0.12,1000,1.2000000000000002,104,0.8 +2019,8,23,12,30,12.4,0.64,0.06620000000000001,0.67,0,0,0,0,10,0,0,0,0,0.289,85.37,155.03,0.12,1000,1.2000000000000002,119,0.8 +2019,8,23,13,30,11.8,0.64,0.0659,0.67,0,0,0,0,10.100000000000001,0,0,0,0,0.28700000000000003,89.62,163.25,0.12,1000,1.1,133,0.8 +2019,8,23,14,30,11.200000000000001,0.65,0.0651,0.67,0,0,0,0,10.200000000000001,0,0,33,0,0.28600000000000003,93.49,161.72,0.12,999,1.1,143,0.8 +2019,8,23,15,30,10.700000000000001,0.66,0.06420000000000001,0.67,0,0,0,0,10.200000000000001,0,0,0,0,0.28500000000000003,96.49000000000001,152.01,0.12,999,1.1,151,0.8 +2019,8,23,16,30,10.4,0.67,0.0636,0.67,0,0,0,0,10.100000000000001,0,0,0,0,0.28500000000000003,97.85000000000001,139.68,0.12,999,1.1,157,0.8 +2019,8,23,17,30,10,0.67,0.0632,0.67,0,0,0,0,10,0,0,0,0,0.28400000000000003,99.76,126.59,0.12,999,1.1,162,0.8 +2019,8,23,18,30,9.8,0.67,0.0637,0.67,0,0,0,0,9.8,0,0,0,0,0.28400000000000003,100,113.28,0.12,999,1.1,171,0.8 +2019,8,23,19,30,9.8,0.67,0.065,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.28400000000000003,99.59,100,0.12,1000,1.1,185,0.7000000000000001 +2019,8,23,20,30,11,0.67,0.0666,0.67,24,206,36,0,9.600000000000001,24,206,0,36,0.28400000000000003,91.03,86.7,0.12,1000,1.1,202,0.8 +2019,8,23,21,30,14,0.68,0.0666,0.67,61,636,234,0,9.5,61,636,0,234,0.28400000000000003,74.48,74.2,0.12,1001,1.1,143,0.8 +2019,8,23,22,30,17.3,0.68,0.0656,0.67,78,796,448,0,9.1,78,796,0,448,0.28400000000000003,58.550000000000004,62.31,0.12,1001,1.1,67,1 +2019,8,23,23,30,18.6,0.6900000000000001,0.0658,0.67,88,871,628,0,8.3,88,871,0,628,0.28300000000000003,51.160000000000004,51.71,0.12,1001,1.1,59,1.2000000000000002 +2019,8,24,0,30,20.900000000000002,0.62,0.0708,0.67,97,904,754,0,7.7,115,856,0,737,0.28400000000000003,42.6,43.410000000000004,0.13,1000,1.1,51,1.2000000000000002 +2019,8,24,1,30,22,0.65,0.0683,0.67,98,923,816,0,7.2,184,702,0,730,0.28400000000000003,38.32,38.96,0.13,999,1.1,45,1.2000000000000002 +2019,8,24,2,30,22.700000000000003,0.67,0.0661,0.67,97,921,806,0,6.6000000000000005,141,806,33,761,0.28500000000000003,35.4,39.68,0.13,998,1.2000000000000002,40,1.2000000000000002 +2019,8,24,3,30,23,0.71,0.06330000000000001,0.67,91,903,726,0,6.1000000000000005,91,903,0,726,0.28500000000000003,33.65,45.32,0.13,997,1.2000000000000002,35,1.2000000000000002 +2019,8,24,4,30,22.8,0.72,0.06280000000000001,0.67,84,858,584,0,5.800000000000001,84,858,0,584,0.28500000000000003,33.31,54.35,0.13,996,1.2000000000000002,34,1.2000000000000002 +2019,8,24,5,30,21.900000000000002,0.73,0.0618,0.67,71,770,392,0,5.7,71,770,0,392,0.28400000000000003,34.89,65.38,0.13,996,1.2000000000000002,36,1.2000000000000002 +2019,8,24,6,30,19.700000000000003,0.75,0.0603,0.67,51,577,176,0,5.9,51,577,0,176,0.28400000000000003,40.63,77.5,0.13,996,1.2000000000000002,45,1 +2019,8,24,7,30,17.1,0.76,0.0584,0.67,7,53,7,0,7.2,7,53,0,7,0.28300000000000003,52.03,89.84,0.13,996,1.2000000000000002,50,0.9 +2019,8,24,8,30,15.600000000000001,0.76,0.057300000000000004,0.67,0,0,0,0,7.6000000000000005,0,0,0,0,0.28200000000000003,59.1,103.51,0.13,996,1.2000000000000002,45,0.9 +2019,8,24,9,30,14.700000000000001,0.76,0.0572,0.67,0,0,0,0,8.3,0,0,0,0,0.28200000000000003,65.39,116.8,0.13,997,1.2000000000000002,36,0.8 +2019,8,24,10,30,13.9,0.76,0.0577,0.67,0,0,0,0,8.8,0,0,0,0,0.28200000000000003,71.2,130.07,0.13,997,1.2000000000000002,24,0.8 +2019,8,24,11,30,13.200000000000001,0.77,0.0585,0.67,0,0,0,0,9.1,0,0,0,0,0.28200000000000003,76.27,143,0.13,997,1.2000000000000002,12,0.8 +2019,8,24,12,30,12.600000000000001,0.79,0.0594,0.67,0,0,0,0,9.4,0,0,0,0,0.28300000000000003,80.73,154.84,0.13,997,1.2000000000000002,182,0.8 +2019,8,24,13,30,12.200000000000001,0.81,0.0604,0.67,0,0,0,0,9.5,0,0,0,0,0.28300000000000003,83.85000000000001,162.94,0.13,996,1.2000000000000002,354,0.8 +2019,8,24,14,30,11.8,0.85,0.061700000000000005,0.67,0,0,0,0,9.700000000000001,0,0,33,0,0.28400000000000003,86.73,161.39000000000001,0.13,996,1.2000000000000002,344,0.8 +2019,8,24,15,30,11.3,0.89,0.0631,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.28400000000000003,89.78,151.74,0.13,995,1.2000000000000002,332,0.8 +2019,8,24,16,30,10.9,0.9400000000000001,0.0649,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.28400000000000003,92.16,139.46,0.13,995,1.2000000000000002,320,0.8 +2019,8,24,17,30,10.4,0.98,0.0666,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.28400000000000003,95.19,126.38000000000001,0.13,995,1.2000000000000002,312,0.8 +2019,8,24,18,30,10,1.02,0.0682,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.28300000000000003,97.86,113.08,0.13,996,1.2000000000000002,306,0.8 +2019,8,24,19,30,9.9,1.06,0.07010000000000001,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.28300000000000003,98.67,99.79,0.13,996,1.2000000000000002,301,0.7000000000000001 +2019,8,24,20,30,11.3,1.09,0.0723,0.67,24,230,38,0,9.8,24,230,0,38,0.28300000000000003,90.29,86.49,0.13,996,1.3,298,0.9 +2019,8,24,21,30,14.4,1.1300000000000001,0.0723,0.67,59,638,235,0,9.9,59,638,0,235,0.28300000000000003,74.48,73.96000000000001,0.13,996,1.3,302,1.4000000000000001 +2019,8,24,22,30,17.900000000000002,1.18,0.0712,0.67,76,793,448,0,10,76,793,0,448,0.28400000000000003,59.95,62.04,0.13,996,1.3,307,1.7000000000000002 +2019,8,24,23,30,19.5,1.21,0.0717,0.67,87,867,628,0,9,87,867,0,628,0.28400000000000003,50.83,51.410000000000004,0.13,996,1.3,307,1.7000000000000002 +2019,8,25,0,30,22.900000000000002,1.22,0.0707,0.67,93,905,754,0,7.6000000000000005,93,905,0,754,0.28500000000000003,37.43,43.08,0.13,995,1.3,296,1.1 +2019,8,25,1,30,24.200000000000003,1.24,0.07060000000000001,0.67,95,921,815,0,6.5,95,921,0,815,0.28600000000000003,32.1,38.61,0.13,994,1.3,289,0.8 +2019,8,25,2,30,25,1.26,0.0703,0.67,93,919,804,0,5.9,93,919,33,804,0.28700000000000003,29.27,39.36,0.13,993,1.4000000000000001,286,0.7000000000000001 +2019,8,25,3,30,25.200000000000003,1.31,0.06380000000000001,0.67,88,902,725,0,5.6000000000000005,88,902,0,725,0.28800000000000003,28.34,45.06,0.13,992,1.4000000000000001,292,0.7000000000000001 +2019,8,25,4,30,25,1.31,0.0655,0.67,82,853,582,0,5.5,82,853,0,582,0.28800000000000003,28.63,54.15,0.13,992,1.5,304,0.7000000000000001 +2019,8,25,5,30,24,1.3,0.066,0.67,71,763,391,0,5.7,71,763,0,391,0.28600000000000003,30.7,65.22,0.13,991,1.5,320,0.6000000000000001 +2019,8,25,6,30,21.900000000000002,1.28,0.068,0.67,51,566,175,0,6.7,51,566,17,175,0.28500000000000003,37.33,77.38,0.13,992,1.6,338,0.5 +2019,8,25,7,30,19.8,1.25,0.0707,0.67,7,55,7,0,8.4,7,55,0,7,0.28600000000000003,47.85,89.76,0.13,992,1.6,175,0.5 +2019,8,25,8,30,18.6,1.22,0.0726,0.67,0,0,0,0,8.9,0,0,0,0,0.28600000000000003,53.08,103.42,0.13,993,1.7000000000000002,8,0.6000000000000001 +2019,8,25,9,30,17.5,1.19,0.0761,0.67,0,0,0,0,9.3,0,0,0,0,0.28700000000000003,58.74,116.72,0.13,993,1.7000000000000002,15,0.7000000000000001 +2019,8,25,10,30,16.6,1.16,0.0779,0.67,0,0,0,0,9.600000000000001,0,0,8,0,0.28700000000000003,63.43,129.97,0.13,994,1.8,16,0.8 +2019,8,25,11,30,15.8,1.1500000000000001,0.0782,0.67,0,0,0,0,9.8,0,0,0,0,0.28700000000000003,67.48,142.88,0.13,994,1.8,10,0.8 +2019,8,25,12,30,15.200000000000001,1.1400000000000001,0.0772,0.67,0,0,0,0,9.9,0,0,17,0,0.28600000000000003,70.51,154.65,0.13,994,1.8,181,0.8 +2019,8,25,13,30,14.700000000000001,1.1300000000000001,0.077,0.67,0,0,0,0,9.9,0,0,0,0,0.28600000000000003,72.85000000000001,162.63,0.13,993,1.8,354,0.8 +2019,8,25,14,30,14.3,1.1300000000000001,0.07730000000000001,0.67,0,0,0,3,9.8,0,0,33,0,0.28600000000000003,74.39,161.05,0.13,993,1.8,344,0.8 +2019,8,25,15,30,13.9,1.12,0.07730000000000001,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.28700000000000003,75.49,151.48,0.13,993,1.8,332,0.8 +2019,8,25,16,30,13.3,1.1400000000000001,0.07540000000000001,0.67,0,0,0,0,9.4,0,0,0,0,0.28700000000000003,77.18,139.23,0.13,993,1.8,317,0.8 +2019,8,25,17,30,12.8,1.1500000000000001,0.0726,0.67,0,0,0,0,9.1,0,0,0,0,0.28800000000000003,78.31,126.17,0.13,993,1.8,299,0.8 +2019,8,25,18,30,12.3,1.16,0.0709,0.67,0,0,0,0,8.9,0,0,0,0,0.28800000000000003,79.67,112.87,0.13,993,1.8,280,0.7000000000000001 +2019,8,25,19,30,12,1.16,0.0711,0.67,0,0,0,0,8.700000000000001,0,0,0,0,0.28800000000000003,80.21000000000001,99.57000000000001,0.13,994,1.8,261,0.7000000000000001 +2019,8,25,20,30,13.3,1.16,0.0728,0.67,25,232,40,0,8.6,25,232,0,40,0.28800000000000003,73.4,86.27,0.13,995,1.8,245,0.8 +2019,8,25,21,30,16.3,1.1500000000000001,0.075,0.67,61,625,236,0,8.5,61,625,0,236,0.28800000000000003,60,73.72,0.13,995,1.7000000000000002,231,1 +2019,8,25,22,30,19.900000000000002,1.16,0.0763,0.67,79,776,446,0,8.4,79,776,0,446,0.28700000000000003,47.58,61.77,0.13,995,1.7000000000000002,216,1 +2019,8,25,23,30,21.8,1.16,0.077,0.67,90,851,624,0,7.7,90,851,0,624,0.28600000000000003,40.37,51.1,0.13,995,1.7000000000000002,209,1 +2019,8,26,0,30,25,1.1500000000000001,0.07970000000000001,0.67,98,886,749,0,7.300000000000001,98,886,0,749,0.28400000000000003,32.4,42.74,0.12,994,1.7000000000000002,191,0.8 +2019,8,26,1,30,26,1.1300000000000001,0.08320000000000001,0.67,104,898,809,0,6.9,104,898,0,809,0.28300000000000003,29.560000000000002,38.26,0.12,993,1.7000000000000002,175,0.7000000000000001 +2019,8,26,2,30,26.5,1.11,0.0907,0.67,109,884,796,0,6.6000000000000005,109,884,33,796,0.28300000000000003,28.13,39.04,0.12,992,1.7000000000000002,154,0.7000000000000001 +2019,8,26,3,30,26.400000000000002,1.1,0.11420000000000001,0.67,115,840,711,0,6.300000000000001,115,840,0,711,0.28200000000000003,27.84,44.800000000000004,0.12,991,1.8,129,0.7000000000000001 +2019,8,26,4,30,25.8,1.1,0.1312,0.67,113,774,568,4,6.2,189,384,0,415,0.281,28.52,53.96,0.12,991,1.8,105,0.8 +2019,8,26,5,30,24.6,1.1,0.1416,0.67,98,663,377,0,6.2,112,503,0,324,0.28,30.78,65.07000000000001,0.12,991,1.8,90,1 +2019,8,26,6,30,22.5,1.1,0.1452,0.67,67,447,166,0,7,68,441,25,165,0.279,36.75,77.25,0.12,992,1.9000000000000001,81,0.9 +2019,8,26,7,30,20.1,1.1,0.1438,0.67,7,26,7,4,8.6,7,26,17,7,0.279,47.68,89.68,0.12,993,1.9000000000000001,74,0.9 +2019,8,26,8,30,18.6,1.09,0.13870000000000002,0.67,0,0,0,4,9.600000000000001,0,0,0,0,0.278,55.84,103.33,0.12,994,2,67,0.9 +2019,8,26,9,30,17.5,1.09,0.1348,0.67,0,0,0,0,10.700000000000001,0,0,0,0,0.278,64.48,116.63,0.12,995,2,61,0.8 +2019,8,26,10,30,16.7,1.07,0.1342,0.67,0,0,0,0,11.8,0,0,0,0,0.277,72.83,129.88,0.12,995,2.1,54,0.7000000000000001 +2019,8,26,11,30,16.1,1.06,0.1341,0.67,0,0,0,0,12.9,0,0,0,0,0.277,81.33,142.75,0.12,995,2.1,47,0.7000000000000001 +2019,8,26,12,30,15.700000000000001,1.05,0.1337,0.67,0,0,0,4,13.700000000000001,0,0,0,0,0.277,88.01,154.46,0.12,995,2.1,43,0.6000000000000001 +2019,8,26,13,30,15.3,1.04,0.13040000000000002,0.67,0,0,0,3,14.200000000000001,0,0,0,0,0.277,93.27,162.31,0.12,994,2.2,42,0.6000000000000001 +2019,8,26,14,30,15,1.04,0.1295,0.67,0,0,0,0,14.5,0,0,33,0,0.277,96.99000000000001,160.71,0.12,994,2.2,44,0.6000000000000001 +2019,8,26,15,30,14.700000000000001,1.04,0.1327,0.67,0,0,0,0,14.700000000000001,0,0,0,0,0.278,99.88,151.20000000000002,0.12,994,2.2,49,0.5 +2019,8,26,16,30,14.5,1.05,0.138,0.67,0,0,0,0,14.5,0,0,0,0,0.279,100,139,0.12,994,2.3000000000000003,54,0.5 +2019,8,26,17,30,14.3,1.05,0.1393,0.67,0,0,0,0,14.3,0,0,0,0,0.28,100,125.96000000000001,0.12,994,2.3000000000000003,53,0.5 +2019,8,26,18,30,14.100000000000001,1.07,0.13620000000000002,0.67,0,0,0,0,14.100000000000001,0,0,0,0,0.281,100,112.66,0.12,995,2.3000000000000003,46,0.5 +2019,8,26,19,30,14,1.08,0.1342,0.67,0,0,0,4,14,0,0,0,0,0.281,100,99.36,0.12,995,2.3000000000000003,35,0.5 +2019,8,26,20,30,15.200000000000001,1.1,0.1297,0.67,27,162,38,4,14.4,15,0,100,15,0.281,95.04,86.05,0.12,996,2.3000000000000003,16,0.6000000000000001 +2019,8,26,21,30,17.7,1.11,0.1241,0.67,72,550,228,4,14.3,92,7,33,94,0.281,80.47,73.47,0.12,997,2.3000000000000003,179,1 +2019,8,26,22,30,20.3,1.1400000000000001,0.11860000000000001,0.67,92,720,436,4,13.8,186,45,0,207,0.281,66.25,61.5,0.12,997,2.3000000000000003,353,1.3 +2019,8,26,23,30,21.400000000000002,1.17,0.1125,0.67,103,805,612,4,13,268,295,0,454,0.281,58.79,50.800000000000004,0.12,996,2.3000000000000003,351,1.3 +2019,8,27,0,30,23.8,1.19,0.1034,0.67,107,854,738,4,12.200000000000001,346,181,0,480,0.281,48.09,42.4,0.12,996,2.3000000000000003,340,1 +2019,8,27,1,30,24.900000000000002,1.19,0.1039,0.67,112,870,798,7,11.3,324,397,0,637,0.281,42.43,37.910000000000004,0.12,995,2.2,331,0.8 +2019,8,27,2,30,25.3,1.18,0.1077,0.67,117,859,787,7,10.3,361,269,67,571,0.28200000000000003,38.89,38.72,0.12,994,2.2,328,0.6000000000000001 +2019,8,27,3,30,25.1,1.19,0.1313,0.67,121,819,705,3,9.600000000000001,255,300,0,469,0.28200000000000003,37.45,44.54,0.12,993,2.2,172,0.4 +2019,8,27,4,30,24.6,1.21,0.1432,0.67,113,759,562,4,9.3,63,1,0,64,0.28300000000000003,37.97,53.76,0.12,993,2.3000000000000003,34,0.6000000000000001 +2019,8,27,5,30,23.700000000000003,1.21,0.1423,0.67,98,651,374,4,9.5,123,106,0,168,0.28400000000000003,40.56,64.91,0.12,993,2.3000000000000003,55,0.9 +2019,8,27,6,30,22.1,1.21,0.15940000000000001,0.67,69,427,164,3,10.100000000000001,76,100,100,98,0.28400000000000003,46.54,77.13,0.12,993,2.4000000000000004,57,1 +2019,8,27,7,30,20.200000000000003,1.22,0.16040000000000001,0.67,7,25,7,4,11.4,7,25,0,7,0.28400000000000003,56.96,89.59,0.12,994,2.4000000000000004,53,0.9 +2019,8,27,8,30,19.1,1.23,0.15180000000000002,0.67,0,0,0,4,12.4,0,0,0,0,0.28500000000000003,64.94,103.24000000000001,0.12,995,2.5,47,0.8 +2019,8,27,9,30,18.2,1.24,0.1482,0.67,0,0,0,4,13.200000000000001,0,0,0,0,0.28400000000000003,72.60000000000001,116.54,0.12,995,2.6,40,0.7000000000000001 +2019,8,27,10,30,17.6,1.23,0.1506,0.67,0,0,0,4,13.8,0,0,0,0,0.28400000000000003,78.23,129.78,0.12,996,2.6,32,0.6000000000000001 +2019,8,27,11,30,17.2,1.21,0.15940000000000001,0.67,0,0,0,4,14.100000000000001,0,0,0,0,0.28300000000000003,81.74,142.62,0.12,996,2.7,21,0.6000000000000001 +2019,8,27,12,30,16.900000000000002,1.19,0.1752,0.67,0,0,0,4,14.200000000000001,0,0,0,0,0.28300000000000003,83.98,154.27,0.12,995,2.8000000000000003,9,0.5 +2019,8,27,13,30,16.7,1.17,0.1862,0.67,0,0,0,4,14.200000000000001,0,0,0,0,0.28300000000000003,85.23,162,0.12,995,2.8000000000000003,181,0.5 +2019,8,27,14,30,16.5,1.17,0.18530000000000002,0.67,0,0,0,4,14.200000000000001,0,0,33,0,0.28300000000000003,86.17,160.37,0.12,994,2.8000000000000003,188,0.5 +2019,8,27,15,30,16,1.19,0.17700000000000002,0.67,0,0,0,4,14.200000000000001,0,0,0,0,0.28200000000000003,89.3,150.92000000000002,0.12,994,2.8000000000000003,13,0.4 +2019,8,27,16,30,15.8,1.18,0.1779,0.67,0,0,0,4,14.3,0,0,0,0,0.281,91.05,138.76,0.12,994,2.8000000000000003,167,0.4 +2019,8,27,17,30,15.600000000000001,1.1500000000000001,0.19290000000000002,0.67,0,0,0,4,14.4,0,0,0,0,0.28,92.32000000000001,125.74000000000001,0.12,994,2.9000000000000004,317,0.5 +2019,8,27,18,30,15.4,1.1400000000000001,0.20170000000000002,0.67,0,0,0,4,14.3,0,0,0,0,0.279,93.16,112.44,0.12,994,2.9000000000000004,302,0.5 +2019,8,27,19,30,15.4,1.1400000000000001,0.19440000000000002,0.67,0,0,0,4,14.200000000000001,0,0,0,0,0.278,92.66,99.14,0.12,995,2.9000000000000004,289,0.5 +2019,8,27,20,30,15.9,1.1400000000000001,0.18380000000000002,0.67,30,124,39,0,14.200000000000001,25,63,33,30,0.277,89.52,85.83,0.12,996,2.9000000000000004,271,0.7000000000000001 +2019,8,27,21,30,17.2,1.1300000000000001,0.1761,0.67,84,485,224,4,14.200000000000001,84,71,0,104,0.276,82.42,73.23,0.12,996,2.9000000000000004,257,1 +2019,8,27,22,30,18.6,1.1300000000000001,0.16740000000000002,0.67,110,662,429,3,13.9,197,210,0,298,0.276,74.09,61.22,0.12,996,2.8000000000000003,248,1.3 +2019,8,27,23,30,19.3,1.12,0.162,0.67,125,751,603,4,13.200000000000001,212,78,0,262,0.276,67.91,50.49,0.12,996,2.8000000000000003,242,1.3 +2019,8,28,0,30,20.6,1.16,0.20140000000000002,0.67,148,770,720,4,12.600000000000001,71,0,0,71,0.276,60.31,42.06,0.13,996,2.8000000000000003,232,1.3 +2019,8,28,1,30,21.1,1.18,0.1902,0.67,149,796,780,3,12.100000000000001,329,356,0,611,0.277,56.27,37.550000000000004,0.13,995,2.8000000000000003,234,1.3 +2019,8,28,2,30,21.1,1.19,0.18510000000000001,0.67,154,783,768,4,11.700000000000001,231,20,33,247,0.277,54.82,38.4,0.13,994,2.8000000000000003,235,1.3 +2019,8,28,3,30,20.8,1.23,0.2366,0.67,161,730,684,4,11.600000000000001,131,1,0,132,0.277,55.550000000000004,44.28,0.13,994,2.8000000000000003,234,1.4000000000000001 +2019,8,28,4,30,20.400000000000002,1.25,0.2429,0.67,148,668,545,4,11.700000000000001,76,0,0,76,0.278,57.22,53.56,0.13,993,2.8000000000000003,230,1.4000000000000001 +2019,8,28,5,30,19.900000000000002,1.26,0.2437,0.67,124,556,361,4,11.8,75,1,0,75,0.279,59.49,64.76,0.13,993,2.8000000000000003,225,1.3 +2019,8,28,6,30,19,1.27,0.24650000000000002,0.67,81,346,159,4,11.9,12,0,100,12,0.28,63.300000000000004,77.01,0.13,994,2.7,216,0.8 +2019,8,28,7,30,17.900000000000002,1.27,0.2358,0.67,6,16,6,4,12.100000000000001,1,0,33,1,0.281,69.02,89.5,0.13,994,2.7,210,0.4 +2019,8,28,8,30,17.1,1.28,0.2273,0.67,0,0,0,0,12.200000000000001,0,0,0,0,0.28300000000000003,73.06,103.15,0.13,995,2.7,213,0.4 +2019,8,28,9,30,16.5,1.28,0.22590000000000002,0.67,0,0,0,3,12.4,0,0,0,0,0.28400000000000003,76.8,116.46000000000001,0.13,996,2.6,209,0.4 +2019,8,28,10,30,16,1.29,0.2136,0.67,0,0,0,4,12.5,0,0,0,0,0.28500000000000003,79.51,129.68,0.13,996,2.5,189,0.5 +2019,8,28,11,30,15.600000000000001,1.33,0.1887,0.67,0,0,0,3,12.4,0,0,0,0,0.28700000000000003,81.03,142.49,0.13,995,2.4000000000000004,149,0.4 +2019,8,28,12,30,15.100000000000001,1.35,0.169,0.67,0,0,0,4,12.3,0,0,0,0,0.28800000000000003,83.12,154.07,0.13,994,2.4000000000000004,238,0.30000000000000004 +2019,8,28,13,30,14.600000000000001,1.33,0.1731,0.67,0,0,0,0,12.4,0,0,0,0,0.29,86.51,161.67000000000002,0.13,994,2.5,333,0.5 +2019,8,28,14,30,14.4,1.3,0.197,0.67,0,0,0,3,12.8,0,0,33,0,0.291,89.97,160.02,0.13,994,2.7,298,0.7000000000000001 +2019,8,28,15,30,14.4,1.27,0.2285,0.67,0,0,0,4,13.200000000000001,0,0,0,0,0.294,92.63,150.64000000000001,0.13,994,2.8000000000000003,279,0.7000000000000001 +2019,8,28,16,30,14.3,1.25,0.24750000000000003,0.67,0,0,0,4,13.4,0,0,0,0,0.297,94.39,138.52,0.13,993,2.8000000000000003,270,0.7000000000000001 +2019,8,28,17,30,14.100000000000001,1.26,0.2336,0.67,0,0,0,4,13.5,0,0,0,0,0.3,95.93,125.51,0.13,994,2.7,260,0.6000000000000001 +2019,8,28,18,30,14,1.27,0.2129,0.67,0,0,0,7,13.4,0,0,0,0,0.303,96.18,112.23,0.13,994,2.7,253,0.7000000000000001 +2019,8,28,19,30,13.9,1.28,0.1952,0.67,0,0,0,4,13.3,0,0,0,0,0.305,96.15,98.92,0.13,995,2.6,250,0.8 +2019,8,28,20,30,14.4,1.27,0.1736,0.67,30,152,42,4,13.200000000000001,8,0,100,8,0.304,92.59,85.61,0.13,996,2.6,252,1.2000000000000002 +2019,8,28,21,30,15.4,1.26,0.153,0.67,78,530,233,4,13.200000000000001,46,0,0,46,0.302,86.93,72.98,0.13,996,2.5,261,1.5 +2019,8,28,22,30,16.5,1.26,0.1233,0.67,92,727,445,7,12.700000000000001,100,1,0,100,0.3,78.12,60.95,0.13,996,2.4000000000000004,271,1.5 +2019,8,28,23,30,17.2,1.27,0.0903,0.67,95,827,625,7,11.200000000000001,73,0,0,73,0.299,67.64,50.18,0.13,996,2.4000000000000004,275,1.4000000000000001 +2019,8,29,0,30,19.700000000000003,1.2,0.0873,0.67,100,876,754,4,9.600000000000001,87,1,25,88,0.297,52,41.71,0.13,995,2.2,280,1.3 +2019,8,29,1,30,21.3,1.21,0.0751,0.67,98,901,816,4,8.200000000000001,68,0,8,68,0.297,42.88,37.19,0.13,994,2.1,276,1.4000000000000001 +2019,8,29,2,30,22.200000000000003,1.22,0.0732,0.67,96,903,807,4,7.1000000000000005,109,0,33,109,0.297,37.660000000000004,38.07,0.13,993,2.1,272,1.5 +2019,8,29,3,30,22.5,1.28,0.06430000000000001,0.67,91,884,727,4,6.5,80,0,0,80,0.297,35.49,44.02,0.13,992,2.1,272,1.5 +2019,8,29,4,30,22.1,1.27,0.0745,0.67,88,827,582,4,6.4,105,0,0,105,0.297,36.11,53.36,0.13,992,2.2,278,1.3 +2019,8,29,5,30,21.1,1.26,0.08310000000000001,0.67,78,730,391,7,6.5,92,0,0,92,0.296,38.59,64.61,0.13,992,2.2,292,1.1 +2019,8,29,6,30,19.400000000000002,1.25,0.085,0.67,56,538,178,4,7.5,27,6,100,28,0.297,46.08,76.89,0.13,993,2.2,318,0.8 +2019,8,29,7,30,17.6,1.26,0.08170000000000001,0.67,7,54,8,4,8.4,2,0,33,2,0.298,54.96,89.41,0.13,994,2.2,346,0.6000000000000001 +2019,8,29,8,30,16.5,1.27,0.0779,0.67,0,0,0,7,8.9,0,0,0,0,0.301,60.61,103.06,0.13,994,2.1,357,0.5 +2019,8,29,9,30,15.600000000000001,1.29,0.0743,0.67,0,0,0,4,9.3,0,0,0,0,0.303,66.28,116.37,0.13,995,2,352,0.4 +2019,8,29,10,30,14.8,1.31,0.0718,0.67,0,0,0,0,9.600000000000001,0,0,0,0,0.305,71.15,129.58,0.13,995,1.9000000000000001,326,0.30000000000000004 +2019,8,29,11,30,14.200000000000001,1.32,0.0702,0.67,0,0,0,0,9.700000000000001,0,0,33,0,0.307,74.13,142.36,0.13,995,1.8,283,0.2 +2019,8,29,12,30,13.700000000000001,1.33,0.0687,0.67,0,0,0,0,9.4,0,0,0,0,0.31,75.43,153.86,0.13,995,1.6,241,0.2 +2019,8,29,13,30,13.100000000000001,1.32,0.06760000000000001,0.67,0,0,0,0,9.1,0,0,0,0,0.312,76.45,161.35,0.13,995,1.6,212,0.30000000000000004 +2019,8,29,14,30,12.4,1.32,0.0675,0.67,0,0,0,0,8.8,0,0,33,0,0.313,78.56,159.67000000000002,0.13,995,1.5,197,0.4 +2019,8,29,15,30,11.600000000000001,1.3,0.06910000000000001,0.67,0,0,0,4,8.6,0,0,0,0,0.314,82.02,150.36,0.13,994,1.5,187,0.6000000000000001 +2019,8,29,16,30,10.9,1.28,0.0719,0.67,0,0,0,0,8.700000000000001,0,0,0,0,0.315,86.45,138.27,0.13,994,1.5,180,0.7000000000000001 +2019,8,29,17,30,10.4,1.25,0.07640000000000001,0.67,0,0,0,0,9,0,0,0,0,0.316,91.25,125.29,0.13,994,1.5,176,0.7000000000000001 +2019,8,29,18,30,10.100000000000001,1.22,0.0835,0.67,0,0,0,0,9.5,0,0,0,0,0.317,96.35000000000001,112.01,0.13,994,1.6,174,0.8 +2019,8,29,19,30,10.4,1.17,0.09050000000000001,0.67,0,0,0,0,10.3,0,0,0,0,0.318,99.02,98.7,0.13,995,1.6,173,0.8 +2019,8,29,20,30,12.200000000000001,1.1300000000000001,0.095,0.67,31,241,50,3,10.9,24,84,67,31,0.32,91.89,85.38,0.13,996,1.6,167,1.2000000000000002 +2019,8,29,21,30,15.200000000000001,1.11,0.10110000000000001,0.67,70,610,251,0,11.4,70,610,0,251,0.323,78.01,72.72,0.13,996,1.6,151,1.7000000000000002 +2019,8,29,22,30,17.900000000000002,1.1300000000000001,0.0979,0.67,87,769,464,0,11.600000000000001,87,769,0,464,0.325,66.42,60.67,0.13,996,1.6,137,1.7000000000000002 +2019,8,29,23,30,19,1.19,0.0867,0.67,96,852,645,0,10.5,96,852,33,645,0.326,57.83,49.86,0.13,996,1.6,132,1.5 +2019,8,30,0,30,21.3,1.23,0.0679,0.67,93,904,772,0,9.1,93,904,0,772,0.328,45.63,41.36,0.13,995,1.6,110,0.8 +2019,8,30,1,30,22.1,1.2,0.0747,0.67,102,910,830,0,8,102,910,0,830,0.329,40.49,36.83,0.13,994,1.7000000000000002,82,0.6000000000000001 +2019,8,30,2,30,22.3,1.18,0.0848,0.67,106,898,816,0,7.300000000000001,106,898,33,816,0.33,38,37.75,0.13,993,1.7000000000000002,63,0.6000000000000001 +2019,8,30,3,30,22.200000000000003,1.2,0.0936,0.67,106,868,733,0,6.800000000000001,106,868,0,733,0.33,36.99,43.76,0.13,992,1.7000000000000002,64,0.8 +2019,8,30,4,30,21.900000000000002,1.22,0.1056,0.67,101,810,587,0,6.6000000000000005,101,810,0,587,0.33,37.06,53.160000000000004,0.13,992,1.7000000000000002,74,1.1 +2019,8,30,5,30,21,1.23,0.10840000000000001,0.67,89,704,393,0,6.6000000000000005,89,704,0,393,0.33,39.24,64.46000000000001,0.13,992,1.7000000000000002,81,1.5 +2019,8,30,6,30,19.400000000000002,1.24,0.1306,0.67,66,480,176,0,7,66,480,0,176,0.33,44.660000000000004,76.77,0.13,993,1.8,85,1.4000000000000001 +2019,8,30,7,30,17.5,1.26,0.1379,0.67,8,37,8,0,8.200000000000001,8,37,0,8,0.33,54.27,89.32000000000001,0.13,993,1.8,86,1 +2019,8,30,8,30,16.3,1.26,0.1374,0.67,0,0,0,0,9.200000000000001,0,0,0,0,0.329,62.7,102.97,0.13,994,1.9000000000000001,86,1 +2019,8,30,9,30,15.4,1.26,0.13720000000000002,0.67,0,0,0,0,10.3,0,0,0,0,0.327,71.43,116.28,0.13,995,1.9000000000000001,88,0.9 +2019,8,30,10,30,14.5,1.24,0.13190000000000002,0.67,0,0,0,0,11,0,0,0,0,0.325,79.76,129.48,0.13,995,1.9000000000000001,96,0.8 +2019,8,30,11,30,13.9,1.22,0.12610000000000002,0.67,0,0,0,3,11.4,0,0,0,0,0.321,85.14,142.23,0.13,995,1.9000000000000001,111,0.7000000000000001 +2019,8,30,12,30,13.3,1.21,0.1197,0.67,0,0,0,3,11.600000000000001,0,0,0,0,0.317,89.71000000000001,153.66,0.13,995,1.8,126,0.6000000000000001 +2019,8,30,13,30,12.700000000000001,1.2,0.1124,0.67,0,0,0,3,11.8,0,0,0,0,0.314,94.06,161.02,0.13,995,1.8,143,0.7000000000000001 +2019,8,30,14,30,12.100000000000001,1.19,0.10540000000000001,0.67,0,0,0,0,11.8,0,0,33,0,0.312,98.17,159.32,0.13,995,1.8,156,0.7000000000000001 +2019,8,30,15,30,11.5,1.19,0.0994,0.67,0,0,0,0,11.5,0,0,0,0,0.311,100,150.07,0.13,994,1.7000000000000002,164,0.7000000000000001 +2019,8,30,16,30,11.100000000000001,1.19,0.0952,0.67,0,0,0,0,11.100000000000001,0,0,0,0,0.311,100,138.02,0.13,994,1.7000000000000002,169,0.7000000000000001 +2019,8,30,17,30,10.700000000000001,1.19,0.09190000000000001,0.67,0,0,0,3,10.700000000000001,0,0,0,0,0.311,100,125.06,0.13,994,1.7000000000000002,173,0.7000000000000001 +2019,8,30,18,30,10.4,1.2,0.0896,0.67,0,0,0,3,10.4,0,0,0,0,0.31,100,111.78,0.13,995,1.6,176,0.7000000000000001 +2019,8,30,19,30,10.5,1.21,0.08600000000000001,0.67,0,0,0,0,10.5,0,0,0,0,0.31,100,98.47,0.13,996,1.6,177,0.8 +2019,8,30,20,30,12.100000000000001,1.23,0.0811,0.67,30,285,54,0,10.9,30,285,0,54,0.308,92.27,85.15,0.13,996,1.5,170,1.2000000000000002 +2019,8,30,21,30,15,1.27,0.0762,0.67,63,658,261,0,11.100000000000001,63,658,0,261,0.306,77.34,72.47,0.13,996,1.5,152,1.6 +2019,8,30,22,30,17.6,1.32,0.0682,0.67,76,809,476,0,10.200000000000001,76,809,0,476,0.304,62.01,60.39,0.13,996,1.5,138,1.6 +2019,8,30,23,30,18.8,1.36,0.0634,0.67,86,882,658,0,8.5,86,882,0,658,0.303,51.35,49.550000000000004,0.13,996,1.5,134,1.6 +2019,8,31,0,30,21.1,1.2,0.0648,0.67,91,918,784,0,7.300000000000001,91,918,0,784,0.3,40.88,41.01,0.13,995,1.4000000000000001,137,1.1 +2019,8,31,1,30,22.200000000000003,1.23,0.0634,0.67,94,933,844,0,6.1000000000000005,94,933,0,844,0.297,35.13,36.47,0.13,994,1.4000000000000001,139,0.9 +2019,8,31,2,30,22.8,1.26,0.0623,0.67,94,930,833,0,4.9,94,930,33,833,0.295,31.330000000000002,37.42,0.13,993,1.4000000000000001,134,0.9 +2019,8,31,3,30,23,1.02,0.06670000000000001,0.67,92,908,751,0,4.2,92,908,0,751,0.293,29.36,43.5,0.13,992,1.3,126,0.9 +2019,8,31,4,30,22.700000000000003,1.01,0.0669,0.67,86,864,606,0,3.8000000000000003,86,864,0,606,0.292,29.05,52.97,0.13,992,1.3,117,1.1 +2019,8,31,5,30,21.900000000000002,1,0.0644,0.67,72,781,411,0,3.6,72,781,0,411,0.292,30.07,64.31,0.13,992,1.3,106,1.2000000000000002 +2019,8,31,6,30,19.8,1.01,0.0621,0.67,53,599,191,0,3.8000000000000003,53,599,0,191,0.291,34.67,76.65,0.13,993,1.3,90,1.1 +2019,8,31,7,30,17.2,1.02,0.060000000000000005,0.67,9,71,10,0,5.5,9,71,0,10,0.291,46.03,89.24,0.13,994,1.3,78,1 +2019,8,31,8,30,15.5,1.03,0.059500000000000004,0.67,0,0,0,0,6.7,0,0,0,0,0.29,55.63,102.88,0.13,994,1.3,76,0.9 +2019,8,31,9,30,14.4,1.02,0.061000000000000006,0.67,0,0,0,0,8,0,0,0,0,0.29,65.28,116.19,0.13,995,1.3,81,0.8 +2019,8,31,10,30,13.600000000000001,1.02,0.0632,0.67,0,0,0,0,9,0,0,0,0,0.29,73.97,129.38,0.13,995,1.4000000000000001,92,0.7000000000000001 +2019,8,31,11,30,13,1.01,0.06520000000000001,0.67,0,0,0,0,9.8,0,0,0,0,0.29,80.98,142.09,0.13,995,1.4000000000000001,111,0.6000000000000001 +2019,8,31,12,30,12.3,1.01,0.06620000000000001,0.67,0,0,0,0,10.3,0,0,0,0,0.29,87.44,153.44,0.13,995,1.4000000000000001,130,0.6000000000000001 +2019,8,31,13,30,11.700000000000001,1.02,0.0651,0.67,0,0,0,0,10.5,0,0,0,0,0.29,92.45,160.69,0.13,995,1.3,147,0.6000000000000001 +2019,8,31,14,30,11.200000000000001,1.04,0.0623,0.67,0,0,0,0,10.5,0,0,33,0,0.291,95.65,158.96,0.13,995,1.3,162,0.7000000000000001 +2019,8,31,15,30,10.8,1.06,0.0587,0.67,0,0,0,0,10.4,0,0,0,0,0.291,97.53,149.77,0.13,994,1.2000000000000002,176,0.7000000000000001 +2019,8,31,16,30,10.5,1.08,0.055200000000000006,0.67,0,0,0,0,10.3,0,0,0,0,0.291,98.64,137.77,0.13,994,1.2000000000000002,193,0.8 +2019,8,31,17,30,10.100000000000001,1.1,0.052500000000000005,0.67,0,0,0,0,10.100000000000001,0,0,0,0,0.291,100,124.82000000000001,0.13,994,1.2000000000000002,208,0.8 +2019,8,31,18,30,9.700000000000001,1.12,0.0509,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.291,100,111.55,0.13,995,1.1,218,0.9 +2019,8,31,19,30,9.700000000000001,1.1300000000000001,0.0502,0.67,0,0,0,0,9.700000000000001,0,0,0,0,0.291,99.86,98.24000000000001,0.13,995,1.1,223,0.9 +2019,8,31,20,30,11.3,1.1500000000000001,0.049800000000000004,0.67,29,362,61,0,9.5,29,362,0,61,0.29,88.48,84.91,0.13,996,1.1,227,1.1 +2019,8,31,21,30,14.8,1.17,0.049,0.67,56,714,274,0,9.3,56,714,0,274,0.289,69.4,72.21000000000001,0.13,996,1.1,217,1.1 +2019,8,31,22,30,18.400000000000002,1.2,0.0477,0.67,69,848,492,0,7.5,69,848,0,492,0.289,48.92,60.1,0.13,997,1.1,202,1 +2019,8,31,23,30,20.1,1.22,0.0472,0.67,78,913,674,0,5.300000000000001,78,913,0,674,0.28800000000000003,38.03,49.230000000000004,0.13,997,1.1,200,1 +2014,9,1,0,30,22.200000000000003,1.3900000000000001,0.0731,0.66,95,918,792,0,8.8,95,918,0,792,0.314,42.39,40.57,0.13,985,1.3,306,1.4000000000000001 +2014,9,1,1,30,23.3,1.4000000000000001,0.077,0.66,99,932,853,0,8,99,932,0,853,0.313,37.550000000000004,36.01,0.13,984,1.2000000000000002,308,1.4000000000000001 +2014,9,1,2,30,23.900000000000002,1.3900000000000001,0.0809,0.66,100,926,840,0,7.5,100,926,0,840,0.31,34.96,37.01,0.13,983,1.2000000000000002,307,1.5 +2014,9,1,3,30,24.200000000000003,1.37,0.0675,0.66,91,917,760,0,7.1000000000000005,91,917,0,760,0.306,33.49,43.17,0.13,982,1.2000000000000002,307,1.5 +2014,9,1,4,30,23.900000000000002,1.35,0.07060000000000001,0.66,85,867,610,0,6.9,85,867,0,610,0.303,33.58,52.71,0.13,982,1.3,309,1.5 +2014,9,1,5,30,23,1.33,0.0718,0.66,73,779,413,0,6.800000000000001,73,779,0,413,0.301,35.27,64.11,0.13,982,1.3,317,1.2000000000000002 +2014,9,1,6,30,20.5,1.31,0.0713,0.66,52,597,192,1,8.700000000000001,52,597,0,192,0.3,46.78,76.49,0.13,982,1.3,329,0.8 +2014,9,1,7,30,17.8,1.29,0.07010000000000001,0.66,0,0,0,8,10.700000000000001,0,0,3,0,0.299,63.01,89.12,0.13,983,1.3,330,0.8 +2014,9,1,8,30,16.1,1.27,0.0689,0.66,0,0,0,0,10.4,0,0,0,0,0.3,68.87,102.75,0.13,983,1.3,322,0.9 +2014,9,1,9,30,15,1.26,0.06860000000000001,0.66,0,0,0,0,10.3,0,0,0,0,0.302,73.36,116.06,0.13,984,1.3,315,0.9 +2014,9,1,10,30,14.100000000000001,1.26,0.07200000000000001,0.66,0,0,0,0,9.9,0,0,0,0,0.304,75.74,129.24,0.13,984,1.3,312,0.9 +2014,9,1,11,30,13.600000000000001,1.27,0.082,0.66,0,0,0,0,9.3,0,0,0,0,0.305,75.19,141.91,0.13,984,1.2000000000000002,313,0.9 +2014,9,1,12,30,13.200000000000001,1.27,0.0912,0.66,0,0,0,0,8.9,0,0,0,0,0.304,75.04,153.18,0.13,983,1.2000000000000002,317,0.9 +2014,9,1,13,30,12.600000000000001,1.28,0.0897,0.66,0,0,0,0,8.5,0,0,0,0,0.304,76.27,160.29,0.13,983,1.2000000000000002,323,0.9 +2014,9,1,14,30,12.200000000000001,1.28,0.098,0.66,0,0,0,0,8.200000000000001,0,0,1,0,0.303,76.64,158.54,0.13,982,1.2000000000000002,325,0.9 +2014,9,1,15,30,12.200000000000001,1.27,0.108,0.66,0,0,0,8,8.3,0,0,0,0,0.304,77.03,149.42000000000002,0.13,982,1.3,323,0.8 +2014,9,1,16,30,12.100000000000001,1.27,0.1082,0.66,0,0,0,4,8.6,0,0,0,0,0.305,79.26,137.47,0.13,982,1.3,323,0.8 +2014,9,1,17,30,12.100000000000001,1.27,0.1159,0.66,0,0,0,8,9,0,0,0,0,0.307,81.4,124.55,0.13,981,1.4000000000000001,327,0.8 +2014,9,1,18,30,12.100000000000001,1.28,0.1143,0.66,0,0,0,0,9.5,0,0,0,0,0.309,84.34,111.29,0.13,981,1.4000000000000001,329,0.8 +2014,9,1,19,30,12.3,1.29,0.1194,0.66,0,0,0,8,10,0,0,0,0,0.31,86.11,97.97,0.13,981,1.4000000000000001,328,0.8 +2014,9,1,20,30,13.200000000000001,1.28,0.12040000000000001,0.66,32,262,56,7,10.700000000000001,13,0,3,13,0.311,84.7,84.63,0.13,982,1.4000000000000001,326,1 +2014,9,1,21,30,15,1.25,0.11860000000000001,0.66,74,617,266,7,11.3,47,3,0,48,0.312,78.69,71.9,0.13,981,1.3,323,1.7000000000000002 +2014,9,1,22,30,17.3,1.21,0.11420000000000001,0.66,94,769,482,7,11.4,226,31,0,241,0.314,68.42,59.76,0.13,981,1.3,317,2.4000000000000004 +2014,9,1,23,30,18.6,1.17,0.111,0.66,106,846,663,7,11.100000000000001,139,25,0,156,0.316,61.71,48.84,0.13,981,1.3,314,2.8000000000000003 +2014,9,2,0,30,22.200000000000003,1.21,0.0862,0.66,102,904,792,0,10.200000000000001,102,904,0,792,0.319,46.61,40.22,0.13,979,1.4000000000000001,301,3.2 +2014,9,2,1,30,23.8,1.18,0.08360000000000001,0.66,103,917,849,0,9.1,103,917,0,849,0.32,39.33,35.64,0.13,978,1.5,291,3.4000000000000004 +2014,9,2,2,30,24.3,1.17,0.0926,0.66,107,907,834,0,7.800000000000001,107,907,0,834,0.322,34.94,36.68,0.13,977,1.5,281,3.4000000000000004 +2014,9,2,3,30,24,1.12,0.0956,0.66,104,882,750,8,6.6000000000000005,436,63,0,483,0.324,32.65,42.910000000000004,0.13,976,1.5,272,3.5 +2014,9,2,4,30,23.200000000000003,1.02,0.09920000000000001,0.66,97,829,601,8,6.1000000000000005,343,62,0,381,0.328,33.08,52.52,0.13,976,1.5,266,3.5 +2014,9,2,5,30,22.1,1,0.10310000000000001,0.66,84,734,406,0,6.5,84,734,0,406,0.332,36.51,63.96,0.13,976,1.4000000000000001,261,3.1 +2014,9,2,6,30,20.1,1.03,0.11040000000000001,0.66,60,528,184,0,7.1000000000000005,60,528,0,184,0.336,42.95,76.38,0.13,977,1.4000000000000001,257,2.4000000000000004 +2014,9,2,7,30,17.900000000000002,1.11,0.1097,0.66,0,0,0,1,7,0,0,0,0,0.339,48.74,89.04,0.13,978,1.2000000000000002,250,1.8 +2014,9,2,8,30,16.3,1.24,0.09720000000000001,0.66,0,0,0,0,5.800000000000001,0,0,0,0,0.341,49.64,102.66,0.13,979,1.1,245,1.6 +2014,9,2,9,30,15,1.4000000000000001,0.0869,0.66,0,0,0,0,4.7,0,0,0,0,0.342,50.04,115.97,0.13,980,1,243,1.6 +2014,9,2,10,30,13.9,1.51,0.082,0.66,0,0,0,0,4,0,0,0,0,0.34400000000000003,51.38,129.13,0.13,980,1,243,1.6 +2014,9,2,11,30,12.8,1.54,0.0762,0.66,0,0,0,0,3.8000000000000003,0,0,0,0,0.34400000000000003,54.33,141.77,0.13,981,0.9,242,1.6 +2014,9,2,12,30,11.9,1.55,0.0704,0.66,0,0,0,0,3.5,0,0,0,0,0.34400000000000003,56.58,152.96,0.13,981,0.9,241,1.7000000000000002 +2014,9,2,13,30,11.100000000000001,1.54,0.06520000000000001,0.66,0,0,0,0,3.4000000000000004,0,0,0,0,0.34400000000000003,59.230000000000004,159.95000000000002,0.13,981,0.9,241,1.8 +2014,9,2,14,30,10.200000000000001,1.52,0.0616,0.66,0,0,0,0,3.4000000000000004,0,0,1,0,0.34500000000000003,62.85,158.18,0.13,980,0.8,242,1.7000000000000002 +2014,9,2,15,30,9.5,1.5,0.058,0.66,0,0,0,0,3.4000000000000004,0,0,0,0,0.34800000000000003,65.63,149.12,0.13,980,0.7000000000000001,245,1.7000000000000002 +2014,9,2,16,30,8.9,1.48,0.0497,0.66,0,0,0,0,3.3000000000000003,0,0,0,0,0.35000000000000003,68.02,137.21,0.13,980,0.7000000000000001,247,1.6 +2014,9,2,17,30,8.4,1.48,0.0414,0.66,0,0,0,0,3.2,0,0,0,0,0.352,69.76,124.31,0.13,980,0.6000000000000001,250,1.6 +2014,9,2,18,30,8,1.5,0.0388,0.66,0,0,0,0,3.1,0,0,0,0,0.354,71.04,111.05,0.13,980,0.6000000000000001,253,1.6 +2014,9,2,19,30,8,1.51,0.0368,0.66,0,0,0,0,3,0,0,0,0,0.357,70.59,97.73,0.13,981,0.6000000000000001,255,1.7000000000000002 +2014,9,2,20,30,9.3,1.49,0.035300000000000005,0.66,26,461,71,1,3.1,26,461,0,71,0.359,65.18,84.39,0.13,981,0.6000000000000001,254,2.4000000000000004 +2014,9,2,21,30,11.3,1.46,0.035,0.66,51,774,295,1,3,51,774,0,295,0.359,56.82,71.64,0.13,981,0.6000000000000001,250,3.3000000000000003 +2014,9,2,22,30,13.100000000000001,1.43,0.0354,0.66,65,888,516,1,2.7,65,888,0,516,0.358,49.42,59.47,0.13,981,0.7000000000000001,247,3.8000000000000003 +2014,9,2,23,30,14,1.4000000000000001,0.0358,0.66,73,947,700,0,2.2,73,947,0,700,0.357,44.89,48.51,0.13,981,0.7000000000000001,246,4 +2014,9,3,0,30,16.6,1.26,0.04,0.66,80,969,824,0,1.8,80,969,0,824,0.353,36.9,39.85,0.13,980,0.8,244,4.1000000000000005 +2014,9,3,1,30,18,1.26,0.0417,0.66,83,980,882,0,1.6,83,980,0,882,0.352,33.4,35.27,0.13,979,0.8,241,4 +2014,9,3,2,30,18.900000000000002,1.28,0.043500000000000004,0.66,83,976,869,0,1.7000000000000002,83,976,0,869,0.35000000000000003,31.64,36.34,0.13,978,0.8,240,3.9000000000000004 +2014,9,3,3,30,19.400000000000002,1.24,0.0477,0.66,82,953,782,0,1.6,82,953,0,782,0.34900000000000003,30.6,42.65,0.13,978,0.8,240,3.8000000000000003 +2014,9,3,4,30,19.3,1.33,0.049100000000000005,0.66,76,910,632,0,1.4000000000000001,76,910,0,632,0.34800000000000003,30.150000000000002,52.32,0.13,978,0.8,240,3.6 +2014,9,3,5,30,18.5,1.4000000000000001,0.0507,0.66,66,835,434,0,0.9,66,835,0,434,0.34700000000000003,30.63,63.81,0.13,978,0.7000000000000001,241,3 +2014,9,3,6,30,16.5,1.52,0.049100000000000005,0.66,47,668,206,0,0.7000000000000001,47,668,0,206,0.34500000000000003,34.36,76.26,0.13,978,0.7000000000000001,244,2 +2014,9,3,7,30,14.100000000000001,1.48,0.0482,0.66,10,161,13,0,1.7000000000000002,10,161,0,13,0.34400000000000003,43.13,88.94,0.13,979,0.7000000000000001,247,1.4000000000000001 +2014,9,3,8,30,12.700000000000001,1.37,0.0446,0.66,0,0,0,1,1.6,0,0,0,0,0.342,46.83,102.57000000000001,0.13,980,0.7000000000000001,247,1.3 +2014,9,3,9,30,11.700000000000001,1.24,0.042,0.66,0,0,0,1,1.4000000000000001,0,0,0,0,0.34,49.29,115.88,0.13,981,0.7000000000000001,244,1.3 +2014,9,3,10,30,10.9,1.1400000000000001,0.041100000000000005,0.66,0,0,0,1,1.1,0,0,0,0,0.338,50.88,129.02,0.13,982,0.6000000000000001,241,1.2000000000000002 +2014,9,3,11,30,10.100000000000001,1.1,0.04,0.66,0,0,0,0,0.8,0,0,0,0,0.336,52.4,141.62,0.13,982,0.6000000000000001,238,1.2000000000000002 +2014,9,3,12,30,9.3,1.08,0.0374,0.66,0,0,0,3,0.5,0,0,0,0,0.335,54.31,152.74,0.13,982,0.6000000000000001,238,1.2000000000000002 +2014,9,3,13,30,8.6,1.12,0.0366,0.66,0,0,0,1,0.30000000000000004,0,0,0,0,0.335,55.96,159.61,0.13,982,0.6000000000000001,241,1.1 +2014,9,3,14,30,8.1,1.2,0.0426,0.66,0,0,0,1,0.1,0,0,1,0,0.334,56.97,157.81,0.13,981,0.7000000000000001,243,1 +2014,9,3,15,30,7.7,1.27,0.053700000000000005,0.66,0,0,0,0,0.2,0,0,0,0,0.335,59.08,148.81,0.13,981,0.7000000000000001,244,1 +2014,9,3,16,30,7.1000000000000005,1.33,0.049100000000000005,0.66,0,0,0,0,0.1,0,0,0,0,0.335,61,136.94,0.13,980,0.7000000000000001,245,1 +2014,9,3,17,30,6.5,1.36,0.0468,0.66,0,0,0,1,-0.30000000000000004,0,0,0,0,0.335,61.72,124.06,0.13,981,0.7000000000000001,246,1 +2014,9,3,18,30,6.300000000000001,1.35,0.0506,0.66,0,0,0,1,-0.4,0,0,0,0,0.335,62.09,110.82000000000001,0.13,981,0.8,248,0.9 +2014,9,3,19,30,6.5,1.33,0.050100000000000006,0.66,0,0,0,3,-0.2,0,0,0,0,0.335,62.410000000000004,97.49000000000001,0.13,982,0.8,251,0.9 +2014,9,3,20,30,8.1,1.31,0.0483,0.66,29,425,72,1,0.4,29,425,0,72,0.336,58.300000000000004,84.15,0.13,983,0.8,253,1.2000000000000002 +2014,9,3,21,30,11.100000000000001,1.28,0.043500000000000004,0.66,55,752,295,1,0,55,752,0,295,0.336,46.29,71.38,0.13,983,0.8,242,1.5 +2014,9,3,22,30,14.4,1.26,0.0385,0.66,67,886,521,0,0.5,67,886,0,521,0.335,38.75,59.18,0.13,983,0.7000000000000001,219,1.6 +2014,9,3,23,30,16,1.24,0.0352,0.66,74,950,707,0,0.2,74,950,0,707,0.335,34.12,48.19,0.13,983,0.7000000000000001,209,1.7000000000000002 +2014,9,4,0,30,18.5,1.09,0.0385,0.66,81,976,834,0,-0.6000000000000001,81,976,0,834,0.333,27.53,39.49,0.13,982,0.7000000000000001,234,1.5 +2014,9,4,1,30,19.700000000000003,1.1,0.040600000000000004,0.66,84,987,893,0,-1.4000000000000001,84,987,0,893,0.33,24.13,34.89,0.13,981,0.7000000000000001,245,1.6 +2014,9,4,2,30,20.5,1.12,0.0444,0.66,85,981,879,0,-2.1,85,981,0,879,0.327,21.82,36.01,0.13,980,0.7000000000000001,247,1.7000000000000002 +2014,9,4,3,30,20.900000000000002,1.09,0.0506,0.66,85,951,787,0,-2.6,85,951,0,787,0.324,20.45,42.4,0.13,979,0.8,246,1.8 +2014,9,4,4,30,20.700000000000003,1.09,0.0546,0.66,80,905,636,0,-2.8000000000000003,80,905,0,636,0.323,20.47,52.13,0.13,979,0.8,245,1.8 +2014,9,4,5,30,19.900000000000002,1.08,0.0565,0.66,70,821,434,0,-2.6,70,821,0,434,0.323,21.8,63.67,0.13,979,0.8,244,1.5 +2014,9,4,6,30,17.8,1.06,0.0555,0.66,51,646,205,0,0.2,51,646,0,205,0.322,30.42,76.14,0.13,979,0.8,252,1 +2014,9,4,7,30,15.4,1.05,0.0533,0.66,11,128,13,0,2.8000000000000003,11,128,0,13,0.321,42.86,88.86,0.13,980,0.9,265,0.7000000000000001 +2014,9,4,8,30,13.700000000000001,1.06,0.051800000000000006,0.66,0,0,0,0,2,0,0,0,0,0.32,44.99,102.48,0.13,981,0.9,270,0.7000000000000001 +2014,9,4,9,30,12.700000000000001,1.06,0.05,0.66,0,0,0,0,2,0,0,0,0,0.32,48.01,115.79,0.13,981,0.9,265,0.6000000000000001 +2014,9,4,10,30,11.8,1.06,0.046900000000000004,0.66,0,0,0,0,2.2,0,0,0,0,0.319,51.97,128.91,0.13,982,0.9,254,0.6000000000000001 +2014,9,4,11,30,11,1.06,0.044700000000000004,0.66,0,0,0,0,2.3000000000000003,0,0,0,0,0.319,54.81,141.47,0.13,982,0.9,239,0.6000000000000001 +2014,9,4,12,30,10.200000000000001,1.08,0.0442,0.66,0,0,0,0,2.1,0,0,0,0,0.319,57.33,152.51,0.13,982,0.9,226,0.6000000000000001 +2014,9,4,13,30,9.600000000000001,1.08,0.0439,0.66,0,0,0,0,2.3000000000000003,0,0,0,0,0.319,60.19,159.27,0.13,982,0.9,215,0.7000000000000001 +2014,9,4,14,30,9,1.1,0.045200000000000004,0.66,0,0,0,0,2.4000000000000004,0,0,1,0,0.32,63.38,157.44,0.13,982,1,205,0.7000000000000001 +2014,9,4,15,30,8.5,1.11,0.0488,0.66,0,0,0,0,2.7,0,0,0,0,0.321,66.69,148.5,0.13,982,1,194,0.8 +2014,9,4,16,30,8.1,1.12,0.05,0.66,0,0,0,0,3,0,0,0,0,0.322,70.4,136.68,0.13,983,1.1,183,0.8 +2014,9,4,17,30,7.7,1.12,0.0504,0.66,0,0,0,0,3.7,0,0,0,0,0.323,75.81,123.82000000000001,0.13,983,1.2000000000000002,171,0.8 +2014,9,4,18,30,7.4,1.11,0.049800000000000004,0.66,0,0,0,0,4.3,0,0,0,0,0.324,80.5,110.58,0.13,984,1.2000000000000002,162,0.9 +2014,9,4,19,30,7.5,1.1,0.0502,0.66,0,0,0,3,4.800000000000001,0,0,0,0,0.325,82.93,97.26,0.13,984,1.2000000000000002,157,0.8 +2014,9,4,20,30,9.5,1.1,0.0511,0.66,30,407,73,1,5.6000000000000005,30,407,0,73,0.325,76.48,83.91,0.13,985,1.2000000000000002,155,1.1 +2014,9,4,21,30,12.8,1.08,0.053500000000000006,0.66,59,717,291,1,5.800000000000001,59,717,0,291,0.325,62.5,71.11,0.13,985,1.3,147,1.5 +2014,9,4,22,30,15.600000000000001,1.08,0.0582,0.66,76,838,509,1,5.6000000000000005,76,838,0,509,0.324,51.2,58.89,0.13,985,1.3,133,1.4000000000000001 +2014,9,4,23,30,16.8,1.08,0.0659,0.66,89,891,687,1,5.7,89,891,0,687,0.323,47.77,47.86,0.13,985,1.4000000000000001,127,1.1 +2014,9,5,0,30,19.1,1.1500000000000001,0.07400000000000001,0.66,99,915,809,0,5.300000000000001,99,915,0,809,0.321,40.47,39.13,0.13,985,1.5,170,0.4 +2014,9,5,1,30,20.200000000000003,1.16,0.0781,0.66,103,926,866,0,4.7,103,926,0,866,0.32,36.07,34.52,0.13,984,1.5,222,0.4 +2014,9,5,2,30,21,1.18,0.07680000000000001,0.66,101,924,852,0,4.1000000000000005,101,924,0,852,0.32,33.02,35.68,0.13,983,1.5,219,0.5 +2014,9,5,3,30,21.3,1.29,0.07640000000000001,0.66,97,904,767,0,4,97,904,0,767,0.32,32.06,42.14,0.13,983,1.5,195,0.6000000000000001 +2014,9,5,4,30,21,1.32,0.07740000000000001,0.66,90,858,619,0,4,90,858,0,619,0.319,32.83,51.94,0.13,983,1.5,172,0.7000000000000001 +2014,9,5,5,30,20.3,1.32,0.0786,0.66,78,771,421,1,4.2,78,771,0,421,0.318,34.660000000000004,63.52,0.13,983,1.5,145,0.7000000000000001 +2014,9,5,6,30,18.400000000000002,1.32,0.0819,0.66,57,585,198,1,5.1000000000000005,57,585,0,198,0.318,41.45,76.03,0.13,984,1.5,118,0.7000000000000001 +2014,9,5,7,30,15.9,1.33,0.079,0.66,11,102,13,8,7.9,4,0,3,4,0.318,59.120000000000005,88.77,0.13,984,1.5,105,0.8 +2014,9,5,8,30,14.3,1.35,0.0699,0.66,0,0,0,0,7.7,0,0,0,0,0.318,64.73,102.39,0.13,985,1.5,105,0.9 +2014,9,5,9,30,13.3,1.36,0.0641,0.66,0,0,0,0,7.9,0,0,0,0,0.317,69.88,115.69,0.13,986,1.6,106,0.8 +2014,9,5,10,30,12.600000000000001,1.36,0.062,0.66,0,0,0,0,8.4,0,0,0,0,0.316,75.74,128.8,0.13,987,1.6,114,0.8 +2014,9,5,11,30,11.700000000000001,1.34,0.060500000000000005,0.66,0,0,0,1,8.9,0,0,0,0,0.316,82.77,141.32,0.13,988,1.7000000000000002,128,0.8 +2014,9,5,12,30,11,1.28,0.0609,0.66,0,0,0,3,9.200000000000001,0,0,0,0,0.315,88.56,152.28,0.13,988,1.7000000000000002,143,0.8 +2014,9,5,13,30,10.3,1.21,0.059800000000000006,0.66,0,0,0,0,9.3,0,0,0,0,0.314,93.53,158.92000000000002,0.13,989,1.6,154,0.7000000000000001 +2014,9,5,14,30,9.700000000000001,1.16,0.057,0.66,0,0,0,0,9.200000000000001,0,0,1,0,0.313,96.62,157.07,0.13,989,1.6,159,0.7000000000000001 +2014,9,5,15,30,9.1,1.11,0.054700000000000006,0.66,0,0,0,0,8.8,0,0,0,0,0.312,98.3,148.18,0.13,988,1.5,161,0.8 +2014,9,5,16,30,8.6,1.06,0.0541,0.66,0,0,0,0,8.4,0,0,0,0,0.312,98.88,136.4,0.13,988,1.5,162,0.8 +2014,9,5,17,30,8.1,0.99,0.0545,0.66,0,0,0,0,8.1,0,0,0,0,0.311,100,123.57000000000001,0.13,989,1.5,163,0.9 +2014,9,5,18,30,7.9,0.9,0.055400000000000005,0.66,0,0,0,0,7.9,0,0,0,0,0.311,100,110.34,0.13,989,1.4000000000000001,163,0.9 +2014,9,5,19,30,8.200000000000001,0.8300000000000001,0.056600000000000004,0.66,0,0,0,0,8.1,0,0,0,0,0.311,99.09,97.01,0.13,990,1.4000000000000001,163,0.9 +2014,9,5,20,30,10.200000000000001,0.77,0.0584,0.66,33,380,75,1,8.200000000000001,33,380,0,75,0.311,87.57000000000001,83.66,0.13,991,1.5,161,1.2000000000000002 +2014,9,5,21,30,13.3,0.75,0.059000000000000004,0.66,63,699,293,1,8.4,63,699,0,293,0.311,72.4,70.85000000000001,0.13,992,1.5,153,1.9000000000000001 +2014,9,5,22,30,15.9,0.73,0.058300000000000005,0.66,79,829,511,0,8.3,79,829,0,511,0.312,60.81,58.6,0.13,992,1.5,144,2.1 +2014,9,5,23,30,16.900000000000002,0.72,0.057,0.66,88,895,692,0,7.9,88,895,0,692,0.312,55.26,47.53,0.13,992,1.5,142,2.1 +2014,9,6,0,30,19.1,0.7000000000000001,0.0618,0.66,95,923,815,0,7.6000000000000005,95,923,0,815,0.312,47.26,38.76,0.13,991,1.5,138,2.1 +2014,9,6,1,30,20.1,0.72,0.0601,0.66,97,938,874,0,7.4,97,938,0,874,0.312,43.86,34.14,0.13,990,1.5,134,2.1 +2014,9,6,2,30,20.5,0.74,0.058600000000000006,0.66,95,934,857,1,7.300000000000001,95,934,0,857,0.312,42.47,35.35,0.13,990,1.6,130,2.3000000000000003 +2014,9,6,3,30,20.5,0.74,0.061900000000000004,0.66,93,910,771,3,7.300000000000001,121,24,0,139,0.312,42.46,41.88,0.13,989,1.6,127,2.5 +2014,9,6,4,30,20,0.73,0.0666,0.66,88,858,620,4,7.5,152,25,0,167,0.311,44.33,51.75,0.13,990,1.7000000000000002,125,2.5 +2014,9,6,5,30,18.900000000000002,0.73,0.0717,0.66,78,762,420,3,7.7,221,51,0,244,0.311,48.32,63.38,0.13,990,1.8,125,2.5 +2014,9,6,6,30,17.2,0.73,0.0794,0.66,59,563,196,8,8.200000000000001,74,11,3,77,0.312,55.46,75.91,0.13,991,1.9000000000000001,124,2 +2014,9,6,7,30,15.4,0.72,0.07780000000000001,0.66,12,71,14,8,9.1,5,0,3,5,0.312,65.98,88.67,0.13,992,1.9000000000000001,124,1.3 +2014,9,6,8,30,14.100000000000001,0.73,0.0702,0.66,0,0,0,1,9.600000000000001,0,0,0,0,0.313,74.15,102.3,0.13,993,1.9000000000000001,126,1 +2014,9,6,9,30,13.200000000000001,0.74,0.065,0.66,0,0,0,3,9.700000000000001,0,0,0,0,0.314,79.09,115.60000000000001,0.13,993,1.9000000000000001,132,0.9 +2014,9,6,10,30,12.600000000000001,0.73,0.0635,0.66,0,0,0,0,9.700000000000001,0,0,0,0,0.315,82.38,128.69,0.13,994,1.9000000000000001,138,0.9 +2014,9,6,11,30,12.100000000000001,0.72,0.067,0.66,0,0,0,0,9.700000000000001,0,0,0,0,0.315,85.46000000000001,141.17000000000002,0.13,994,1.9000000000000001,142,0.8 +2014,9,6,12,30,11.700000000000001,0.71,0.07440000000000001,0.66,0,0,0,0,9.9,0,0,0,0,0.316,88.76,152.04,0.13,994,1.9000000000000001,145,0.8 +2014,9,6,13,30,11.5,0.6900000000000001,0.08030000000000001,0.66,0,0,0,0,10.100000000000001,0,0,0,0,0.316,91.19,158.57,0.13,993,1.9000000000000001,148,0.8 +2014,9,6,14,30,11.3,0.66,0.0848,0.66,0,0,0,0,10.3,0,0,1,0,0.316,93.48,156.70000000000002,0.13,993,1.9000000000000001,151,0.8 +2014,9,6,15,30,11.100000000000001,0.64,0.0901,0.66,0,0,0,1,10.4,0,0,0,0,0.317,95.19,147.87,0.13,993,1.9000000000000001,153,0.8 +2014,9,6,16,30,10.8,0.64,0.095,0.66,0,0,0,4,10.4,0,0,0,0,0.318,97.07000000000001,136.13,0.13,992,1.9000000000000001,153,0.8 +2014,9,6,17,30,10.8,0.67,0.0965,0.66,0,0,0,8,10.3,0,0,0,0,0.319,96.76,123.32000000000001,0.13,992,1.8,153,0.8 +2014,9,6,18,30,10.700000000000001,0.7000000000000001,0.0956,0.66,0,0,0,4,10.200000000000001,0,0,0,0,0.32,96.85000000000001,110.10000000000001,0.13,993,1.8,153,0.8 +2014,9,6,19,30,10.8,0.73,0.093,0.66,0,0,0,4,10.100000000000001,0,0,0,0,0.322,95.4,96.77,0.13,993,1.8,154,0.9 +2014,9,6,20,30,11.700000000000001,0.73,0.0882,0.66,37,319,74,1,10.100000000000001,37,319,0,74,0.323,89.66,83.41,0.13,994,1.9000000000000001,154,1.4000000000000001 +2014,9,6,21,30,13.4,0.73,0.0823,0.66,71,655,288,1,10.100000000000001,71,655,0,288,0.324,80.39,70.58,0.13,994,1.9000000000000001,149,2 +2014,9,6,22,30,15.200000000000001,0.71,0.0786,0.66,87,794,505,1,10.100000000000001,87,794,0,505,0.325,71.79,58.300000000000004,0.13,994,1.9000000000000001,139,2.3000000000000003 +2014,9,6,23,30,16.1,0.7000000000000001,0.0779,0.66,98,863,684,1,10.100000000000001,98,863,0,684,0.325,67.72,47.2,0.13,994,1.9000000000000001,134,2.5 +2014,9,7,0,30,17.6,0.8,0.09140000000000001,0.66,110,885,803,1,10,110,885,0,803,0.326,61.19,38.39,0.13,993,2,125,2.5 +2014,9,7,1,30,18,0.8,0.0906,0.66,112,897,858,1,9.9,112,897,0,858,0.326,59.21,33.76,0.13,993,2.1,121,2.5 +2014,9,7,2,30,18,0.78,0.09380000000000001,0.66,113,891,843,1,9.9,113,891,0,843,0.326,59.050000000000004,35.01,0.13,992,2.1,119,2.5 +2014,9,7,3,30,17.7,0.78,0.1062,0.66,115,854,753,1,9.9,115,854,0,753,0.327,60.370000000000005,41.63,0.13,992,2.2,117,2.4000000000000004 +2014,9,7,4,30,17.1,0.76,0.1139,0.66,109,794,603,8,10,292,30,0,310,0.327,63.13,51.56,0.13,992,2.3000000000000003,116,2.3000000000000003 +2014,9,7,5,30,16.400000000000002,0.71,0.114,0.66,94,697,408,1,10.3,94,697,0,408,0.327,67.06,63.230000000000004,0.13,992,2.3000000000000003,115,2 +2014,9,7,6,30,15.5,0.6900000000000001,0.1136,0.66,67,500,190,7,10.8,74,10,3,77,0.328,73.43,75.8,0.13,993,2.3000000000000003,118,1.3 +2014,9,7,7,30,14.600000000000001,0.66,0.10600000000000001,0.66,12,44,13,7,11.3,5,0,3,5,0.329,80.82000000000001,88.58,0.13,993,2.3000000000000003,123,0.9 +2014,9,7,8,30,14,0.65,0.0983,0.66,0,0,0,7,11.5,0,0,0,0,0.331,85.09,102.21000000000001,0.13,993,2.3000000000000003,128,0.9 +2014,9,7,9,30,13.5,0.65,0.09230000000000001,0.66,0,0,0,7,11.700000000000001,0,0,0,0,0.332,88.64,115.5,0.13,994,2.3000000000000003,130,0.9 +2014,9,7,10,30,13.100000000000001,0.66,0.08800000000000001,0.66,0,0,0,3,11.700000000000001,0,0,0,0,0.332,91.43,128.57,0.13,994,2.2,132,0.8 +2014,9,7,11,30,12.8,0.67,0.0869,0.66,0,0,0,4,11.8,0,0,0,0,0.333,93.38,141.01,0.13,993,2.2,136,0.8 +2014,9,7,12,30,12.4,0.6900000000000001,0.0893,0.66,0,0,0,8,11.8,0,0,0,0,0.333,96.05,151.81,0.13,993,2.2,144,0.7000000000000001 +2014,9,7,13,30,12.100000000000001,0.7000000000000001,0.09190000000000001,0.66,0,0,0,8,11.8,0,0,0,0,0.334,97.94,158.22,0.13,993,2.2,150,0.6000000000000001 +2014,9,7,14,30,11.9,0.71,0.09190000000000001,0.66,0,0,0,4,11.700000000000001,0,0,0,0,0.334,99,156.32,0.13,992,2.1,152,0.6000000000000001 +2014,9,7,15,30,11.700000000000001,0.74,0.09190000000000001,0.66,0,0,0,4,11.700000000000001,0,0,0,0,0.335,99.95,147.54,0.13,992,2.1,151,0.6000000000000001 +2014,9,7,16,30,11.600000000000001,0.74,0.0903,0.66,0,0,0,7,11.600000000000001,0,0,0,0,0.336,100,135.85,0.13,991,2.1,149,0.7000000000000001 +2014,9,7,17,30,11.4,0.71,0.0886,0.66,0,0,0,7,11.4,0,0,0,0,0.337,100,123.06,0.13,991,2.1,148,0.7000000000000001 +2014,9,7,18,30,11.4,0.6900000000000001,0.0901,0.66,0,0,0,8,11.4,0,0,0,0,0.339,100,109.85000000000001,0.13,992,2.1,147,0.7000000000000001 +2014,9,7,19,30,11.8,0.65,0.09050000000000001,0.66,0,0,0,4,11.5,0,0,0,0,0.339,97.94,96.52,0.13,992,2.1,145,0.8 +2014,9,7,20,30,13,0.62,0.0925,0.66,39,309,75,3,11.9,18,0,3,18,0.337,92.88,83.17,0.13,993,2.2,142,1.2000000000000002 +2014,9,7,21,30,14.5,0.6,0.0946,0.66,75,630,288,3,12.600000000000001,76,12,0,80,0.333,88.42,70.31,0.13,993,2.2,135,1.7000000000000002 +2014,9,7,22,30,16.2,0.62,0.0852,0.66,90,780,503,4,13.200000000000001,260,40,0,281,0.329,82.23,58.01,0.13,993,2.2,122,2 +2014,9,7,23,30,17,0.7000000000000001,0.0727,0.66,95,863,685,4,13,358,38,0,385,0.327,77.37,46.87,0.13,993,2.2,114,2.3000000000000003 +2014,9,8,0,30,18.6,0.67,0.0897,0.66,110,879,802,3,12.3,413,32,0,437,0.323,66.78,38.02,0.13,992,2.3000000000000003,102,2.5 +2014,9,8,1,30,19,0.67,0.0975,0.66,117,887,857,3,11.9,71,8,0,78,0.322,63.550000000000004,33.38,0.13,991,2.3000000000000003,99,2.6 +2014,9,8,2,30,18.900000000000002,0.62,0.097,0.66,116,880,840,1,11.700000000000001,116,880,0,840,0.323,63.07,34.68,0.13,990,2.4000000000000004,97,2.6 +2014,9,8,3,30,18.6,0.59,0.1085,0.66,118,846,752,4,11.600000000000001,160,27,0,180,0.323,63.86,41.37,0.13,990,2.4000000000000004,97,2.5 +2014,9,8,4,30,18.3,0.58,0.1097,0.66,109,794,605,3,11.600000000000001,129,24,0,144,0.32,65.02,51.370000000000005,0.13,989,2.4000000000000004,98,2.4000000000000004 +2014,9,8,5,30,17.8,0.54,0.1028,0.66,91,706,411,3,11.600000000000001,148,21,0,157,0.317,67.08,63.09,0.13,990,2.4000000000000004,101,2.1 +2014,9,8,6,30,16.8,0.56,0.1046,0.66,66,509,192,1,11.700000000000001,66,509,0,192,0.313,71.92,75.68,0.13,990,2.4000000000000004,106,1.5 +2014,9,8,7,30,15.600000000000001,0.55,0.1033,0.66,13,44,14,1,12.200000000000001,13,44,0,14,0.31,80.36,88.5,0.13,990,2.3000000000000003,111,0.9 +2014,9,8,8,30,14.9,0.53,0.1003,0.66,0,0,0,3,12.4,0,0,0,0,0.307,85,102.11,0.13,991,2.3000000000000003,116,0.7000000000000001 +2014,9,8,9,30,14.4,0.52,0.0966,0.66,0,0,0,0,12.4,0,0,0,0,0.305,87.65,115.4,0.13,991,2.2,118,0.7000000000000001 +2014,9,8,10,30,14,0.51,0.09380000000000001,0.66,0,0,0,0,12.3,0,0,0,0,0.303,89.61,128.45,0.13,991,2.2,121,0.7000000000000001 +2014,9,8,11,30,13.600000000000001,0.52,0.09190000000000001,0.66,0,0,0,0,12.3,0,0,0,0,0.302,91.68,140.85,0.13,991,2.1,124,0.7000000000000001 +2014,9,8,12,30,13.4,0.54,0.0888,0.66,0,0,0,0,12.3,0,0,0,0,0.3,92.81,151.56,0.13,991,2,127,0.6000000000000001 +2014,9,8,13,30,13.100000000000001,0.56,0.0844,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.299,94.41,157.86,0.13,991,2,131,0.6000000000000001 +2014,9,8,14,30,12.8,0.58,0.0791,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.298,95.89,155.94,0.13,990,1.9000000000000001,135,0.6000000000000001 +2014,9,8,15,30,12.5,0.6,0.07440000000000001,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.298,97.67,147.22,0.13,990,1.9000000000000001,137,0.6000000000000001 +2014,9,8,16,30,12.200000000000001,0.63,0.0703,0.66,0,0,0,1,12.100000000000001,0,0,0,0,0.298,99.53,135.57,0.13,990,1.9000000000000001,138,0.6000000000000001 +2014,9,8,17,30,11.9,0.66,0.0668,0.66,0,0,0,1,11.9,0,0,0,0,0.298,100,122.8,0.13,990,1.9000000000000001,139,0.7000000000000001 +2014,9,8,18,30,11.700000000000001,0.68,0.0649,0.66,0,0,0,1,11.700000000000001,0,0,0,0,0.298,100,109.60000000000001,0.13,990,1.8,138,0.7000000000000001 +2014,9,8,19,30,12,0.71,0.064,0.66,0,0,0,3,12,0,0,0,0,0.297,100,96.28,0.13,990,1.8,134,0.7000000000000001 +2014,9,8,20,30,13.5,0.73,0.0634,0.66,36,391,84,1,12.200000000000001,36,391,0,84,0.296,91.97,82.92,0.13,990,1.8,124,1 +2014,9,8,21,30,15.700000000000001,0.78,0.0632,0.66,65,699,304,1,12.8,65,699,0,304,0.296,82.89,70.04,0.13,990,1.8,101,1.4000000000000001 +2014,9,8,22,30,17.8,0.87,0.056100000000000004,0.66,77,834,522,1,13.100000000000001,77,834,0,522,0.294,74.16,57.71,0.13,990,1.8,78,1.7000000000000002 +2014,9,8,23,30,18.7,0.92,0.047400000000000005,0.66,82,905,704,1,12.9,82,905,0,704,0.293,68.93,46.54,0.13,990,1.8,69,1.8 +2014,9,9,0,30,20.700000000000003,0.9,0.0698,0.66,98,913,820,1,12.5,98,913,0,820,0.291,59.36,37.65,0.13,988,1.9000000000000001,59,1.9000000000000001 +2014,9,9,1,30,21.400000000000002,0.93,0.0658,0.66,98,930,878,1,12.200000000000001,98,930,0,878,0.291,55.7,32.99,0.13,988,1.9000000000000001,55,1.8 +2014,9,9,2,30,21.8,0.9500000000000001,0.0649,0.66,97,925,861,1,11.9,97,925,0,861,0.291,53.49,34.35,0.13,987,2,53,1.8 +2014,9,9,3,30,21.900000000000002,1,0.0543,0.66,88,914,777,1,11.700000000000001,88,914,0,777,0.291,52.51,41.12,0.13,986,2,53,1.8 +2014,9,9,4,30,21.5,1.03,0.0577,0.66,83,866,626,1,11.700000000000001,83,866,0,626,0.292,53.51,51.18,0.13,986,2.1,56,1.8 +2014,9,9,5,30,20.700000000000003,1.02,0.057600000000000005,0.66,72,784,428,1,11.700000000000001,72,784,0,428,0.293,56.45,62.95,0.13,986,2.1,60,1.8 +2014,9,9,6,30,19.200000000000003,1.02,0.065,0.66,54,600,204,1,12,54,600,0,204,0.295,63.2,75.57000000000001,0.13,986,2.1,64,1.4000000000000001 +2014,9,9,7,30,17.3,1.04,0.0654,0.66,13,120,16,1,12.9,13,120,0,16,0.296,75.5,88.41,0.13,986,2.1,66,1 +2014,9,9,8,30,15.9,1.03,0.0641,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.297,84.17,102.02,0.13,987,2.1,62,0.8 +2014,9,9,9,30,15.100000000000001,0.99,0.06380000000000001,0.66,0,0,0,0,13.5,0,0,0,0,0.298,89.91,115.3,0.13,987,2.1,53,0.8 +2014,9,9,10,30,14.5,0.93,0.0646,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.299,94.89,128.34,0.13,987,2.1,41,0.8 +2014,9,9,11,30,14,0.88,0.0654,0.66,0,0,0,0,13.9,0,0,0,0,0.299,99.39,140.69,0.13,987,2.1,30,0.7000000000000001 +2014,9,9,12,30,13.700000000000001,0.86,0.0661,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.3,100,151.32,0.13,986,2.1,20,0.7000000000000001 +2014,9,9,13,30,13.3,0.85,0.0653,0.66,0,0,0,0,13.3,0,0,0,0,0.3,100,157.51,0.13,986,2,10,0.7000000000000001 +2014,9,9,14,30,13.100000000000001,0.85,0.0637,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.301,100,155.56,0.13,985,2,181,0.8 +2014,9,9,15,30,12.8,0.88,0.0646,0.66,0,0,0,0,12.8,0,0,0,0,0.302,100,146.89000000000001,0.13,985,2,352,0.8 +2014,9,9,16,30,12.600000000000001,0.91,0.06420000000000001,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.302,100,135.29,0.13,984,2,346,0.8 +2014,9,9,17,30,12.5,0.93,0.0625,0.66,0,0,0,0,12.5,0,0,0,0,0.301,100,122.54,0.13,984,2,344,0.8 +2014,9,9,18,30,12.4,0.96,0.0648,0.66,0,0,0,0,12.4,0,0,0,0,0.3,100,109.35000000000001,0.13,984,2,345,0.8 +2014,9,9,19,30,12.9,1,0.0708,0.66,0,0,0,1,12.9,0,0,0,0,0.298,100,96.03,0.13,984,2.1,342,0.8 +2014,9,9,20,30,14.700000000000001,1.01,0.0826,0.66,38,369,85,3,13.8,37,0,3,37,0.297,94.08,82.66,0.13,984,2.2,338,1.3 +2014,9,9,21,30,17.3,1,0.0975,0.66,74,647,298,3,14.100000000000001,143,31,0,154,0.297,81.62,69.77,0.13,985,2.3000000000000003,335,2.1 +2014,9,9,22,30,19.8,0.97,0.09910000000000001,0.66,93,777,511,1,14,93,777,0,511,0.297,69.21000000000001,57.410000000000004,0.13,984,2.3000000000000003,330,2.5 +2014,9,9,23,30,21,0.9500000000000001,0.0974,0.66,103,844,687,1,13.4,103,844,0,687,0.297,61.95,46.21,0.13,984,2.4000000000000004,326,2.6 +2014,9,10,0,30,24,1.08,0.07,0.66,96,904,815,0,13,96,904,0,815,0.297,50.36,37.28,0.13,983,2.4000000000000004,314,2.9000000000000004 +2014,9,10,1,30,25.3,1.06,0.0693,0.66,99,918,872,0,12.9,99,918,0,872,0.296,46,32.61,0.13,981,2.4000000000000004,306,3.1 +2014,9,10,2,30,26,1.04,0.07200000000000001,0.66,100,912,855,1,12.8,100,912,0,855,0.297,43.89,34.01,0.13,980,2.4000000000000004,298,3.1 +2014,9,10,3,30,26,0.93,0.0867,0.66,104,876,766,3,12.8,295,23,0,313,0.298,43.85,40.86,0.13,979,2.4000000000000004,291,3 +2014,9,10,4,30,25.700000000000003,0.85,0.0983,0.66,101,817,615,1,12.8,101,817,0,615,0.3,44.85,50.99,0.13,979,2.4000000000000004,282,2.7 +2014,9,10,5,30,25,0.75,0.101,0.66,89,724,420,0,12.9,89,724,0,420,0.302,46.93,62.81,0.13,979,2.2,273,2.1 +2014,9,10,6,30,23.1,0.66,0.09960000000000001,0.66,64,537,199,0,13.4,64,537,0,199,0.303,54.34,75.46000000000001,0.13,979,2,261,1.3 +2014,9,10,7,30,20.6,0.5700000000000001,0.094,0.66,13,64,15,0,13.200000000000001,13,64,1,15,0.306,62.53,88.33,0.13,980,1.7000000000000002,248,1 +2014,9,10,8,30,18.5,0.53,0.0852,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.308,64.58,101.93,0.13,981,1.3,234,0.9 +2014,9,10,9,30,17.1,0.55,0.077,0.66,0,0,0,0,10.3,0,0,1,0,0.31,64.26,115.2,0.13,982,1.1,228,0.9 +2014,9,10,10,30,16,0.6,0.06810000000000001,0.66,0,0,0,0,8.9,0,0,0,0,0.312,62.75,128.21,0.13,982,0.9,228,0.9 +2014,9,10,11,30,14.9,0.66,0.060000000000000005,0.66,0,0,0,0,7.800000000000001,0,0,0,0,0.312,62.4,140.52,0.13,983,0.8,230,0.9 +2014,9,10,12,30,13.9,0.72,0.054,0.66,0,0,0,0,6.7,0,0,0,0,0.312,62.01,151.07,0.13,983,0.7000000000000001,231,0.9 +2014,9,10,13,30,13,0.77,0.0499,0.66,0,0,0,0,5.800000000000001,0,0,0,0,0.312,61.800000000000004,157.15,0.13,983,0.7000000000000001,233,0.9 +2014,9,10,14,30,12.3,0.81,0.0468,0.66,0,0,0,0,5.300000000000001,0,0,0,0,0.311,62.24,155.18,0.13,983,0.7000000000000001,236,0.9 +2014,9,10,15,30,11.700000000000001,0.84,0.044700000000000004,0.66,0,0,0,0,4.800000000000001,0,0,0,0,0.31,62.67,146.56,0.13,983,0.7000000000000001,240,0.9 +2014,9,10,16,30,11.200000000000001,0.85,0.043300000000000005,0.66,0,0,0,0,4.5,0,0,0,0,0.31,63.2,135,0.13,983,0.7000000000000001,242,0.9 +2014,9,10,17,30,10.9,0.86,0.042100000000000005,0.66,0,0,0,0,4.3,0,0,0,0,0.309,63.63,122.28,0.13,983,0.7000000000000001,242,0.9 +2014,9,10,18,30,10.600000000000001,0.87,0.041,0.66,0,0,0,0,4.2,0,0,0,0,0.308,64.69,109.10000000000001,0.13,983,0.7000000000000001,241,0.9 +2014,9,10,19,30,10.8,0.89,0.0398,0.66,0,0,0,0,4.3,0,0,0,0,0.307,64.06,95.78,0.13,984,0.7000000000000001,240,0.8 +2014,9,10,20,30,12.9,0.91,0.038900000000000004,0.66,33,512,101,0,5.2,33,512,0,101,0.307,59.57,82.41,0.13,985,0.7000000000000001,239,1 +2014,9,10,21,30,16.400000000000002,0.93,0.0385,0.66,57,785,332,1,5.1000000000000005,57,785,0,332,0.308,47.09,69.5,0.13,985,0.8,228,1.1 +2014,9,10,22,30,19.900000000000002,0.97,0.0386,0.66,70,897,556,0,5.6000000000000005,70,897,0,556,0.309,39.22,57.120000000000005,0.13,985,0.8,199,1.1 +2014,9,10,23,30,21.700000000000003,1,0.0388,0.66,78,953,741,0,4.9,78,953,0,741,0.309,33.46,45.87,0.13,985,0.8,180,1.1 +2014,9,11,0,30,24.1,0.91,0.043000000000000003,0.66,85,977,866,0,4.4,85,977,0,866,0.309,27.85,36.910000000000004,0.13,985,0.8,174,0.4 +2014,9,11,1,30,25.3,0.93,0.045000000000000005,0.66,88,983,919,0,4,88,983,0,919,0.309,25.34,32.22,0.13,984,0.9,242,0.2 +2014,9,11,2,30,26,0.9500000000000001,0.0473,0.66,89,977,902,1,3.8000000000000003,89,977,0,902,0.308,23.95,33.68,0.13,983,0.9,308,0.2 +2014,9,11,3,30,26.200000000000003,0.93,0.0523,0.66,88,953,811,0,3.8000000000000003,88,953,0,811,0.308,23.53,40.61,0.13,982,0.9,296,0.2 +2014,9,11,4,30,26,0.9400000000000001,0.0546,0.66,82,905,653,0,3.8000000000000003,82,905,0,653,0.307,23.93,50.81,0.13,982,1,255,0.30000000000000004 +2014,9,11,5,30,25,0.9400000000000001,0.056400000000000006,0.66,71,822,449,1,4,71,822,0,449,0.307,25.77,62.67,0.13,982,1,161,0.30000000000000004 +2014,9,11,6,30,22.6,0.9400000000000001,0.0584,0.66,53,648,217,0,5.6000000000000005,53,648,0,217,0.307,33.3,75.35000000000001,0.13,983,1,110,0.30000000000000004 +2014,9,11,7,30,19.8,0.93,0.0604,0.66,13,147,18,0,9.8,13,147,0,18,0.308,52.4,88.23,0.13,984,1.1,140,0.4 +2014,9,11,8,30,18,0.93,0.0631,0.66,0,0,0,0,9.4,0,0,0,0,0.309,57.29,101.83,0.13,985,1.1,160,0.4 +2014,9,11,9,30,16.7,0.93,0.0661,0.66,0,0,0,0,10,0,0,0,0,0.31,64.69,115.10000000000001,0.13,986,1.2000000000000002,158,0.5 +2014,9,11,10,30,15.8,0.9400000000000001,0.0684,0.66,0,0,0,0,10.3,0,0,0,0,0.31,69.83,128.09,0.13,986,1.2000000000000002,152,0.5 +2014,9,11,11,30,15.200000000000001,0.9400000000000001,0.0697,0.66,0,0,0,0,10.4,0,0,0,0,0.31,72.99,140.36,0.13,987,1.2000000000000002,144,0.5 +2014,9,11,12,30,14.8,0.9400000000000001,0.0698,0.66,0,0,0,0,10.4,0,0,0,0,0.31,74.76,150.82,0.13,986,1.2000000000000002,138,0.4 +2014,9,11,13,30,14.5,0.9400000000000001,0.0695,0.66,0,0,0,0,10.3,0,0,0,0,0.31,75.92,156.79,0.13,986,1.2000000000000002,135,0.30000000000000004 +2014,9,11,14,30,14.100000000000001,0.9400000000000001,0.0693,0.66,0,0,0,0,10.3,0,0,0,0,0.309,77.72,154.8,0.13,986,1.2000000000000002,136,0.2 +2014,9,11,15,30,13.700000000000001,0.9400000000000001,0.06960000000000001,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.309,79.63,146.23,0.13,986,1.2000000000000002,132,0.2 +2014,9,11,16,30,13.4,0.93,0.0704,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.309,81.17,134.71,0.13,986,1.2000000000000002,129,0.2 +2014,9,11,17,30,13,0.93,0.07200000000000001,0.66,0,0,0,0,10.3,0,0,0,0,0.309,83.62,122.02,0.13,986,1.2000000000000002,131,0.30000000000000004 +2014,9,11,18,30,12.5,0.92,0.0746,0.66,0,0,0,0,10.4,0,0,0,0,0.309,87.19,108.85000000000001,0.13,987,1.3,133,0.5 +2014,9,11,19,30,12.3,0.91,0.07730000000000001,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.308,89.37,95.53,0.13,987,1.3,134,0.7000000000000001 +2014,9,11,20,30,13.4,0.9,0.0805,0.66,40,405,95,1,11.100000000000001,40,405,0,95,0.307,86.01,82.15,0.13,988,1.4000000000000001,131,0.9 +2014,9,11,21,30,16.2,0.89,0.08310000000000001,0.66,72,696,319,0,12.100000000000001,72,696,0,319,0.307,76.91,69.22,0.13,989,1.4000000000000001,119,1.2000000000000002 +2014,9,11,22,30,19.1,0.92,0.0824,0.66,88,819,537,1,13,88,819,0,537,0.308,67.59,56.82,0.13,989,1.5,105,1.4000000000000001 +2014,9,11,23,30,20.3,0.9500000000000001,0.0792,0.66,97,887,719,0,12.9,97,887,0,719,0.308,62.370000000000005,45.54,0.13,989,1.5,99,1.5 +2014,9,12,0,30,22.8,0.9500000000000001,0.0873,0.66,107,910,838,1,12.600000000000001,107,910,0,838,0.308,52.57,36.53,0.13,989,1.6,90,1.8 +2014,9,12,1,30,23.700000000000003,0.9400000000000001,0.0877,0.66,110,920,891,0,12.4,110,920,0,891,0.309,48.980000000000004,31.830000000000002,0.13,988,1.7000000000000002,87,2 +2014,9,12,2,30,24,0.9400000000000001,0.0852,0.66,107,916,872,0,12,107,916,0,872,0.31,47.160000000000004,33.34,0.13,988,1.8,85,2.1 +2014,9,12,3,30,23.8,0.9500000000000001,0.07250000000000001,0.66,98,905,788,0,11.700000000000001,98,905,0,788,0.311,46.78,40.36,0.13,987,1.8,85,2.1 +2014,9,12,4,30,23.1,0.96,0.0796,0.66,93,851,633,0,11.600000000000001,93,851,0,633,0.312,48.27,50.620000000000005,0.13,987,1.9000000000000001,86,2.1 +2014,9,12,5,30,22,0.9500000000000001,0.0883,0.66,84,751,430,0,11.600000000000001,84,751,0,430,0.313,51.72,62.53,0.13,987,2,88,2.1 +2014,9,12,6,30,20.3,0.9400000000000001,0.109,0.66,66,539,204,1,12,66,539,0,204,0.314,58.75,75.23,0.13,988,2,89,1.8 +2014,9,12,7,30,18.3,0.96,0.11080000000000001,0.66,14,78,17,0,12.9,14,78,0,17,0.315,70.60000000000001,88.14,0.13,989,2,88,1.2000000000000002 +2014,9,12,8,30,16.8,0.97,0.1072,0.66,0,0,0,0,13.5,0,0,0,0,0.316,80.66,101.74000000000001,0.13,989,2,86,1 +2014,9,12,9,30,16,0.96,0.1044,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.316,86.18,115,0.13,990,2,85,0.9 +2014,9,12,10,30,15.4,0.9500000000000001,0.10310000000000001,0.66,0,0,0,0,13.8,0,0,0,0,0.316,90.17,127.97,0.13,990,2,85,0.8 +2014,9,12,11,30,15,0.9400000000000001,0.1038,0.66,0,0,0,0,13.9,0,0,0,0,0.315,93,140.18,0.13,990,2.1,86,0.8 +2014,9,12,12,30,14.8,0.9500000000000001,0.1092,0.66,0,0,0,0,13.9,0,0,0,0,0.315,94.57000000000001,150.56,0.13,990,2.1,85,0.8 +2014,9,12,13,30,14.700000000000001,0.96,0.11040000000000001,0.66,0,0,0,0,13.9,0,0,0,0,0.314,95.04,156.43,0.13,990,2.1,85,0.7000000000000001 +2014,9,12,14,30,14.4,0.96,0.1019,0.66,0,0,0,1,13.8,0,0,0,0,0.314,96.25,154.41,0.13,989,2.1,86,0.7000000000000001 +2014,9,12,15,30,14.100000000000001,0.99,0.1014,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.314,97.05,145.9,0.13,989,2.1,86,0.7000000000000001 +2014,9,12,16,30,13.8,1.02,0.0971,0.66,0,0,0,3,13.4,0,0,0,0,0.314,97.54,134.42000000000002,0.13,989,2.1,86,0.7000000000000001 +2014,9,12,17,30,13.4,1.03,0.0912,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.315,98.59,121.75,0.13,989,2.1,86,0.8 +2014,9,12,18,30,13.100000000000001,1.04,0.0926,0.66,0,0,0,4,13,0,0,0,0,0.315,99.24000000000001,108.60000000000001,0.13,990,2.1,86,0.8 +2014,9,12,19,30,13.4,1.04,0.0932,0.66,0,0,0,1,12.8,0,0,0,0,0.316,96.23,95.28,0.13,990,2.1,86,0.7000000000000001 +2014,9,12,20,30,15.100000000000001,1.04,0.09040000000000001,0.66,42,386,96,1,12.9,42,386,0,96,0.316,86.7,81.9,0.13,991,2.1,83,0.9 +2014,9,12,21,30,17.6,1.05,0.0863,0.66,73,679,317,1,12.8,73,679,0,317,0.318,73.27,68.95,0.13,992,2.1,78,1.4000000000000001 +2014,9,12,22,30,19.3,1.07,0.0829,0.66,89,807,534,3,11.8,229,26,0,243,0.318,61.800000000000004,56.52,0.13,992,2.1,76,1.6 +2014,9,12,23,30,19.900000000000002,1.08,0.0835,0.66,100,870,712,8,11.200000000000001,206,26,0,224,0.318,57.45,45.2,0.13,992,2.1,77,1.6 +2014,9,13,0,30,20.8,1.11,0.1233,0.66,124,868,825,8,11.100000000000001,524,128,0,627,0.314,53.76,36.15,0.13,991,2.2,80,1.5 +2014,9,13,1,30,20.900000000000002,1.11,0.1257,0.66,128,880,880,8,11.100000000000001,521,59,0,571,0.313,53.58,31.44,0.13,990,2.2,84,1.4000000000000001 +2014,9,13,2,30,20.700000000000003,1.12,0.1278,0.66,128,872,860,8,11.100000000000001,422,26,0,444,0.312,54.11,33.01,0.13,989,2.3000000000000003,87,1.3 +2014,9,13,3,30,20.400000000000002,1.1300000000000001,0.1441,0.66,130,835,769,8,11.100000000000001,493,174,0,626,0.312,55.18,40.11,0.13,989,2.3000000000000003,87,1.3 +2014,9,13,4,30,19.8,1.1400000000000001,0.1608,0.66,126,767,615,8,11.200000000000001,361,61,0,400,0.311,57.800000000000004,50.44,0.13,989,2.4000000000000004,84,1.3 +2014,9,13,5,30,19.1,1.1500000000000001,0.1632,0.66,108,667,417,8,11.5,263,139,0,327,0.31,61.480000000000004,62.39,0.13,989,2.4000000000000004,80,1.2000000000000002 +2014,9,13,6,30,18,1.18,0.1673,0.66,77,469,198,6,12.100000000000001,122,104,3,149,0.31,68.46000000000001,75.12,0.13,990,2.4000000000000004,76,0.9 +2014,9,13,7,30,16.6,1.2,0.158,0.66,15,61,17,8,12.9,11,20,3,12,0.309,79,88.05,0.13,990,2.4000000000000004,76,0.7000000000000001 +2014,9,13,8,30,15.600000000000001,1.22,0.1457,0.66,0,0,0,7,12.700000000000001,0,0,0,0,0.31,83.11,101.64,0.13,990,2.4000000000000004,78,0.7000000000000001 +2014,9,13,9,30,14.9,1.23,0.1316,0.66,0,0,0,3,12.700000000000001,0,0,0,0,0.311,86.54,114.9,0.13,991,2.3000000000000003,82,0.7000000000000001 +2014,9,13,10,30,14.3,1.24,0.11910000000000001,0.66,0,0,0,1,12.600000000000001,0,0,0,0,0.312,89.48,127.84,0.13,991,2.3000000000000003,87,0.7000000000000001 +2014,9,13,11,30,13.8,1.24,0.10940000000000001,0.66,0,0,0,4,12.5,0,0,0,0,0.313,92.15,140.01,0.13,991,2.2,91,0.7000000000000001 +2014,9,13,12,30,13.4,1.24,0.1017,0.66,0,0,0,4,12.5,0,0,0,0,0.313,94.60000000000001,150.3,0.13,991,2.2,96,0.7000000000000001 +2014,9,13,13,30,13,1.24,0.0956,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.312,97.19,156.06,0.13,991,2.1,100,0.7000000000000001 +2014,9,13,14,30,12.700000000000001,1.23,0.0913,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.311,99.05,154.03,0.13,990,2.1,105,0.7000000000000001 +2014,9,13,15,30,12.3,1.22,0.0886,0.66,0,0,0,0,12.3,0,0,0,0,0.31,100,145.56,0.13,990,2.1,110,0.8 +2014,9,13,16,30,12,1.22,0.0858,0.66,0,0,0,0,12,0,0,0,0,0.308,100,134.13,0.13,989,2.1,112,0.8 +2014,9,13,17,30,11.700000000000001,1.23,0.0816,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.307,100,121.48,0.13,989,2,113,0.9 +2014,9,13,18,30,11.5,1.24,0.077,0.66,0,0,0,0,11.5,0,0,0,0,0.306,100,108.34,0.13,990,2,114,0.9 +2014,9,13,19,30,11.8,1.24,0.0727,0.66,0,0,0,1,11.8,0,0,0,0,0.306,100,95.02,0.13,990,1.9000000000000001,117,0.9 +2014,9,13,20,30,13.600000000000001,1.24,0.0695,0.66,39,444,104,1,12.5,39,444,0,104,0.305,92.85000000000001,81.64,0.13,990,1.9000000000000001,117,0.9 +2014,9,13,21,30,16.400000000000002,1.23,0.067,0.66,67,718,328,1,13.200000000000001,67,718,0,328,0.305,81.47,68.68,0.13,991,1.9000000000000001,101,1 +2014,9,13,22,30,18.6,1.23,0.06380000000000001,0.66,80,837,546,1,13,80,837,0,546,0.305,69.7,56.22,0.13,991,1.9000000000000001,86,1 +2014,9,13,23,30,19.6,1.22,0.057800000000000004,0.66,87,903,726,0,11.9,87,903,0,726,0.305,61.28,44.87,0.13,990,1.9000000000000001,86,1 +2014,9,14,0,30,21.6,1.05,0.0893,0.66,109,905,843,1,11.3,109,905,0,843,0.304,51.83,35.78,0.14,989,1.9000000000000001,90,0.9 +2014,9,14,1,30,22.400000000000002,1.06,0.082,0.66,108,924,900,1,10.8,108,924,0,900,0.303,47.82,31.05,0.14,988,1.9000000000000001,88,0.9 +2014,9,14,2,30,22.900000000000002,1.07,0.0794,0.66,106,922,882,1,10.4,106,922,0,882,0.302,45.27,32.67,0.14,987,1.9000000000000001,85,1 +2014,9,14,3,30,22.900000000000002,1.07,0.0835,0.66,104,897,792,1,10.100000000000001,104,897,0,792,0.302,44.4,39.86,0.14,986,1.9000000000000001,83,1 +2014,9,14,4,30,22.6,1.09,0.08420000000000001,0.66,96,851,640,1,9.9,96,851,0,640,0.302,44.480000000000004,50.26,0.14,986,1.9000000000000001,80,1 +2014,9,14,5,30,21.900000000000002,1.1,0.08170000000000001,0.66,81,769,439,1,9.8,81,769,0,439,0.302,46.07,62.25,0.14,986,1.9000000000000001,73,1.2000000000000002 +2014,9,14,6,30,20.200000000000003,1.1300000000000001,0.08510000000000001,0.66,60,588,213,1,10,60,588,0,213,0.302,51.81,75.01,0.14,986,1.9000000000000001,63,1.1 +2014,9,14,7,30,17.900000000000002,1.18,0.07930000000000001,0.66,15,137,20,0,11.5,15,137,0,20,0.302,66.13,87.96000000000001,0.14,987,1.9000000000000001,54,0.8 +2014,9,14,8,30,16.3,1.2,0.0761,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.302,73.99,101.55,0.14,987,1.9000000000000001,46,0.8 +2014,9,14,9,30,15.4,1.2,0.0743,0.66,0,0,0,0,11.9,0,0,0,0,0.302,79.49,114.79,0.14,988,1.9000000000000001,37,0.7000000000000001 +2014,9,14,10,30,14.600000000000001,1.19,0.0736,0.66,0,0,0,0,12,0,0,0,0,0.302,84.24,127.71000000000001,0.14,988,1.8,25,0.7000000000000001 +2014,9,14,11,30,14,1.18,0.0732,0.66,0,0,0,0,12,0,0,0,0,0.303,87.8,139.83,0.14,988,1.8,12,0.7000000000000001 +2014,9,14,12,30,13.5,1.17,0.0728,0.66,0,0,0,0,12,0,0,0,0,0.305,90.83,150.04,0.14,987,1.8,176,0.7000000000000001 +2014,9,14,13,30,13,1.16,0.0724,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.308,94.19,155.69,0.14,987,1.8,339,0.7000000000000001 +2014,9,14,14,30,12.600000000000001,1.16,0.07250000000000001,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.307,96.63,153.64000000000001,0.14,986,1.8,324,0.7000000000000001 +2014,9,14,15,30,12.100000000000001,1.1500000000000001,0.0734,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.306,99.71000000000001,145.22,0.14,986,1.8,316,0.7000000000000001 +2014,9,14,16,30,11.600000000000001,1.1400000000000001,0.0745,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.306,100,133.83,0.14,986,1.8,313,0.7000000000000001 +2014,9,14,17,30,11.200000000000001,1.1300000000000001,0.0755,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.307,100,121.21000000000001,0.14,986,1.8,310,0.7000000000000001 +2014,9,14,18,30,10.9,1.12,0.076,0.66,0,0,0,0,10.9,0,0,0,0,0.309,100,108.08,0.14,986,1.8,306,0.7000000000000001 +2014,9,14,19,30,11.200000000000001,1.1300000000000001,0.0765,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.308,100,94.77,0.14,986,1.8,300,0.8 +2014,9,14,20,30,13.200000000000001,1.1400000000000001,0.078,0.66,41,437,107,1,11.9,41,437,0,107,0.306,91.55,81.38,0.14,987,1.8,298,1 +2014,9,14,21,30,16.400000000000002,1.17,0.08,0.66,71,704,330,1,12,71,704,0,330,0.304,75.4,68.4,0.14,987,1.9000000000000001,306,1.3 +2014,9,14,22,30,19.700000000000003,1.19,0.0828,0.66,88,820,547,1,12.100000000000001,88,820,0,547,0.302,61.38,55.92,0.14,987,1.9000000000000001,311,1.5 +2014,9,14,23,30,21.3,1.21,0.0838,0.66,99,881,727,0,11.5,99,881,0,727,0.302,53.620000000000005,44.53,0.14,987,1.9000000000000001,308,1.4000000000000001 +2014,9,15,0,30,24,1.24,0.08270000000000001,0.66,104,912,847,0,10.8,104,912,0,847,0.3,43.42,35.4,0.14,985,2,291,1 +2014,9,15,1,30,24.900000000000002,1.24,0.0843,0.66,108,923,902,0,10.3,108,923,0,902,0.299,39.72,30.66,0.14,984,2,276,0.8 +2014,9,15,2,30,25.200000000000003,1.23,0.0918,0.66,110,910,879,1,9.9,110,910,0,879,0.298,38.06,32.34,0.14,983,2.1,266,0.7000000000000001 +2014,9,15,3,30,25,1.24,0.1139,0.66,116,868,785,0,9.700000000000001,116,868,0,785,0.298,38.02,39.61,0.14,982,2.2,267,0.7000000000000001 +2014,9,15,4,30,24.5,1.26,0.12380000000000001,0.66,111,811,631,0,9.700000000000001,111,811,0,631,0.298,39.22,50.08,0.14,982,2.2,291,0.5 +2014,9,15,5,30,23.6,1.26,0.1288,0.66,96,711,429,0,10,96,711,0,429,0.299,42.09,62.11,0.14,982,2.3000000000000003,162,0.5 +2014,9,15,6,30,22.1,1.26,0.1406,0.66,72,511,205,0,11.100000000000001,72,511,0,205,0.3,49.59,74.9,0.14,982,2.3000000000000003,20,0.7000000000000001 +2014,9,15,7,30,20.1,1.27,0.1458,0.66,15,79,18,0,13.3,15,79,0,18,0.302,65.02,87.87,0.14,983,2.4000000000000004,28,0.8 +2014,9,15,8,30,18.6,1.28,0.1477,0.66,0,0,0,0,14,0,0,0,0,0.304,74.54,101.45,0.14,983,2.4000000000000004,27,0.9 +2014,9,15,9,30,17.7,1.28,0.1442,0.66,0,0,0,0,13.8,0,0,0,0,0.304,78.09,114.68,0.14,984,2.3000000000000003,22,0.8 +2014,9,15,10,30,17.1,1.28,0.1363,0.66,0,0,0,0,13.8,0,0,0,0,0.303,81.01,127.58,0.14,984,2.3000000000000003,17,0.8 +2014,9,15,11,30,16.400000000000002,1.28,0.1272,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.303,84.22,139.65,0.14,984,2.2,12,0.7000000000000001 +2014,9,15,12,30,15.700000000000001,1.28,0.1169,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.303,87.22,149.78,0.14,983,2.1,6,0.7000000000000001 +2014,9,15,13,30,15,1.28,0.1073,0.66,0,0,0,0,13.4,0,0,0,0,0.304,89.99,155.33,0.14,983,2,177,0.8 +2014,9,15,14,30,14.4,1.26,0.1008,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.305,91.95,153.25,0.14,983,2,348,0.8 +2014,9,15,15,30,14,1.24,0.09620000000000001,0.66,0,0,0,0,12.8,0,0,0,0,0.306,92.45,144.88,0.14,982,2,342,0.8 +2014,9,15,16,30,13.5,1.22,0.0936,0.66,0,0,0,0,12.5,0,0,0,0,0.308,93.66,133.53,0.14,982,2,337,0.8 +2014,9,15,17,30,13.100000000000001,1.21,0.09240000000000001,0.66,0,0,0,3,12.3,0,0,0,0,0.311,94.84,120.94,0.14,983,2,334,0.8 +2014,9,15,18,30,12.700000000000001,1.2,0.092,0.66,0,0,0,3,12.200000000000001,0,0,0,0,0.314,96.62,107.82000000000001,0.14,983,2,332,0.7000000000000001 +2014,9,15,19,30,12.9,1.21,0.0921,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.317,95.12,94.51,0.14,984,2,330,0.8 +2014,9,15,20,30,14.600000000000001,1.22,0.09340000000000001,0.66,44,418,108,1,12.3,44,418,0,108,0.32,86.04,81.13,0.14,984,2,328,1 +2014,9,15,21,30,17.5,1.23,0.0947,0.66,76,687,331,0,12.4,76,687,0,331,0.324,71.94,68.13,0.14,984,2,328,1.6 +2014,9,15,22,30,20.700000000000003,1.25,0.09570000000000001,0.66,93,806,549,0,11.9,93,806,0,549,0.327,57.230000000000004,55.620000000000005,0.14,984,2,327,2.2 +2014,9,15,23,30,22.3,1.25,0.09570000000000001,0.66,104,869,727,4,10.9,442,89,0,506,0.329,48.29,44.2,0.14,984,2,325,2.3000000000000003 +2014,9,16,0,30,25.400000000000002,1.26,0.0844,0.66,104,911,850,0,10.200000000000001,104,911,0,850,0.332,38.34,35.02,0.13,982,2,315,2.6 +2014,9,16,1,30,26.6,1.23,0.0838,0.66,106,921,902,0,10,106,921,0,902,0.334,35.230000000000004,30.27,0.13,981,2.1,309,2.7 +2014,9,16,2,30,27.200000000000003,1.2,0.0868,0.66,107,915,883,0,9.9,107,915,0,883,0.336,33.85,32,0.13,980,2.1,306,2.7 +2014,9,16,3,30,27.3,1.19,0.0954,0.66,108,883,790,8,9.8,469,63,0,518,0.336,33.3,39.36,0.13,979,2.2,306,2.7 +2014,9,16,4,30,26.700000000000003,1.18,0.1178,0.66,109,816,634,8,9.600000000000001,407,222,0,550,0.335,34.05,49.9,0.13,978,2.2,308,2.5 +2014,9,16,5,30,25.700000000000003,1.17,0.12840000000000001,0.66,97,713,432,1,9.700000000000001,97,713,0,432,0.333,36.36,61.980000000000004,0.13,978,2.2,316,2 +2014,9,16,6,30,23.700000000000003,1.1500000000000001,0.1207,0.66,68,539,210,7,10.8,129,177,3,175,0.329,44.2,74.79,0.13,979,2.1,331,1.3 +2014,9,16,7,30,21.5,1.1500000000000001,0.10590000000000001,0.66,16,111,20,6,12.4,14,73,3,17,0.327,56.32,87.78,0.13,979,2.1,341,1 +2014,9,16,8,30,20,1.1400000000000001,0.096,0.66,0,0,0,3,12.4,0,0,0,0,0.327,61.78,101.35000000000001,0.13,979,2.1,337,1 +2014,9,16,9,30,19.200000000000003,1.12,0.0921,0.66,0,0,0,0,12.5,0,0,0,0,0.327,65.26,114.57000000000001,0.13,980,2,325,1 +2014,9,16,10,30,18.6,1.11,0.0879,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.327,66.34,127.44,0.13,980,2,309,0.9 +2014,9,16,11,30,17.7,1.1,0.0826,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.328,67.88,139.47,0.13,980,1.9000000000000001,291,0.9 +2014,9,16,12,30,16.7,1.05,0.08220000000000001,0.66,0,0,0,0,11.3,0,0,0,0,0.329,70.27,149.51,0.13,981,1.7000000000000002,278,0.8 +2014,9,16,13,30,15.600000000000001,1,0.08510000000000001,0.66,0,0,0,0,10.8,0,0,0,0,0.329,72.94,154.96,0.13,981,1.6,275,0.8 +2014,9,16,14,30,14.600000000000001,0.97,0.0874,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.328,75.08,152.86,0.13,981,1.5,275,0.8 +2014,9,16,15,30,13.8,0.96,0.08940000000000001,0.66,0,0,0,0,9.8,0,0,0,0,0.327,76.71000000000001,144.54,0.13,981,1.3,276,0.8 +2014,9,16,16,30,13.100000000000001,0.9400000000000001,0.0925,0.66,0,0,0,0,9.3,0,0,0,0,0.327,77.64,133.23,0.13,981,1.3,274,0.8 +2014,9,16,17,30,12.5,0.92,0.097,0.66,0,0,0,0,8.700000000000001,0,0,0,0,0.327,77.79,120.67,0.13,981,1.2000000000000002,273,0.8 +2014,9,16,18,30,12,0.9,0.1005,0.66,0,0,0,0,8.200000000000001,0,0,0,0,0.326,77.4,107.56,0.13,982,1.1,271,0.8 +2014,9,16,19,30,12.200000000000001,0.89,0.1009,0.66,0,0,0,1,7.7,0,0,0,0,0.324,73.81,94.26,0.13,982,1.1,270,0.8 +2014,9,16,20,30,14,0.9,0.09960000000000001,0.66,47,425,115,1,8,47,425,0,115,0.322,67.29,80.87,0.13,983,1.1,267,1 +2014,9,16,21,30,17.2,0.91,0.0984,0.66,78,706,344,1,7.4,78,706,0,344,0.32,52.620000000000005,67.85,0.13,983,1.1,257,1.4000000000000001 +2014,9,16,22,30,20.700000000000003,0.93,0.0971,0.66,95,830,567,0,6.800000000000001,95,830,0,567,0.317,40.52,55.32,0.13,983,1.1,254,1.8 +2014,9,16,23,30,22.3,0.96,0.09580000000000001,0.66,105,894,750,0,5.2,105,894,0,750,0.316,32.89,43.86,0.13,983,1.1,258,2.1 +2014,9,17,0,30,24.6,1.2,0.053500000000000006,0.66,90,966,885,0,5,90,966,0,885,0.314,28.16,34.64,0.14,982,1.1,273,2.5 +2014,9,17,1,30,25.6,1.21,0.0579,0.66,95,974,939,0,5,95,974,0,939,0.312,26.63,29.88,0.14,981,1.1,276,2.8000000000000003 +2014,9,17,2,30,26.200000000000003,1.23,0.0626,0.66,96,966,918,0,4.800000000000001,96,966,0,918,0.312,25.32,31.67,0.14,981,1.1,276,2.9000000000000004 +2014,9,17,3,30,26.3,1.25,0.0674,0.66,94,942,825,0,4.5,94,942,0,825,0.312,24.71,39.12,0.14,980,1.1,276,3 +2014,9,17,4,30,25.900000000000002,1.3,0.07050000000000001,0.66,89,896,668,0,4.1000000000000005,89,896,0,668,0.313,24.580000000000002,49.72,0.14,979,1.1,275,2.9000000000000004 +2014,9,17,5,30,24.900000000000002,1.34,0.07400000000000001,0.66,78,811,461,0,3.8000000000000003,78,811,0,461,0.315,25.52,61.84,0.14,979,1.1,274,2.5 +2014,9,17,6,30,22.6,1.36,0.0784,0.66,58,632,225,0,4.5,58,632,0,225,0.317,30.76,74.68,0.14,980,1.2000000000000002,269,1.6 +2014,9,17,7,30,19.700000000000003,1.35,0.0819,0.66,16,170,23,0,7.300000000000001,16,170,0,23,0.319,44.71,87.68,0.14,980,1.2000000000000002,260,1 +2014,9,17,8,30,17.8,1.35,0.0795,0.66,0,0,0,0,7.2,0,0,0,0,0.32,49.97,101.25,0.14,981,1.2000000000000002,250,0.9 +2014,9,17,9,30,16.6,1.36,0.0761,0.66,0,0,0,0,7.1000000000000005,0,0,0,0,0.322,53.52,114.46000000000001,0.14,982,1.2000000000000002,241,0.8 +2014,9,17,10,30,15.600000000000001,1.35,0.0779,0.66,0,0,0,0,6.7,0,0,0,0,0.324,55.28,127.31,0.14,983,1.2000000000000002,237,0.8 +2014,9,17,11,30,14.700000000000001,1.32,0.0834,0.66,0,0,0,0,6.1000000000000005,0,0,0,0,0.325,56.2,139.28,0.14,983,1.2000000000000002,235,0.9 +2014,9,17,12,30,13.9,1.28,0.0902,0.66,0,0,0,0,5.6000000000000005,0,0,0,0,0.324,57.46,149.23,0.14,983,1.3,233,0.9 +2014,9,17,13,30,13.200000000000001,1.25,0.096,0.66,0,0,0,0,5.6000000000000005,0,0,0,0,0.324,59.82,154.58,0.14,983,1.3,231,0.9 +2014,9,17,14,30,12.600000000000001,1.24,0.0976,0.66,0,0,0,0,5.6000000000000005,0,0,0,0,0.323,62.25,152.47,0.14,983,1.3,232,0.9 +2014,9,17,15,30,12,1.26,0.093,0.66,0,0,0,0,5.6000000000000005,0,0,0,0,0.323,64.68,144.20000000000002,0.14,984,1.2000000000000002,235,0.9 +2014,9,17,16,30,11.5,1.32,0.0853,0.66,0,0,0,1,5.5,0,0,0,0,0.324,66.57000000000001,132.93,0.14,984,1.1,237,0.9 +2014,9,17,17,30,11.100000000000001,1.37,0.0762,0.66,0,0,0,1,5.4,0,0,0,0,0.325,68.01,120.4,0.14,984,1,236,0.9 +2014,9,17,18,30,10.700000000000001,1.41,0.0664,0.66,0,0,0,1,5.300000000000001,0,0,0,0,0.326,69.43,107.3,0.14,985,1,237,0.9 +2014,9,17,19,30,11,1.42,0.057,0.66,0,0,0,3,5.300000000000001,0,0,0,0,0.326,67.79,94,0.14,986,0.9,241,0.9 +2014,9,17,20,30,13,1.41,0.0487,0.66,39,552,129,1,5.9,39,552,0,129,0.326,62.26,80.61,0.14,986,0.9,243,1.1 +2014,9,17,21,30,16.5,1.41,0.0426,0.66,60,803,366,0,5.4,60,803,0,366,0.325,47.95,67.58,0.14,987,0.9,228,1.8 +2014,9,17,22,30,19.400000000000002,1.41,0.038400000000000004,0.66,71,915,595,0,4.800000000000001,71,915,0,595,0.323,38.35,55.02,0.14,987,0.8,219,2.2 +2014,9,17,23,30,20.400000000000002,1.41,0.0358,0.66,77,969,780,0,4.1000000000000005,77,969,0,780,0.322,34.300000000000004,43.52,0.14,987,0.8,224,2.2 +2014,9,18,0,30,22.400000000000002,1.29,0.0398,0.66,84,992,903,0,3.3000000000000003,84,992,0,903,0.321,28.64,34.26,0.14,986,0.8,236,2.2 +2014,9,18,1,30,23.400000000000002,1.29,0.0393,0.66,85,1003,958,1,2.4000000000000004,85,1003,0,958,0.32,25.25,29.48,0.14,985,0.8,238,2.2 +2014,9,18,2,30,24.1,1.29,0.039,0.66,84,999,938,0,1.8,84,999,0,938,0.32,23.19,31.34,0.14,984,0.8,237,2 +2014,9,18,3,30,24.400000000000002,1.22,0.0438,0.66,84,981,848,0,1.3,84,981,0,848,0.32,21.95,38.88,0.14,983,0.7000000000000001,235,1.8 +2014,9,18,4,30,24.200000000000003,1.23,0.0437,0.66,77,942,689,0,0.6000000000000001,77,942,0,689,0.32,21.16,49.550000000000004,0.14,983,0.7000000000000001,234,1.6 +2014,9,18,5,30,23.400000000000002,1.23,0.0431,0.66,67,868,479,0,0.30000000000000004,67,868,0,479,0.318,21.75,61.71,0.14,983,0.7000000000000001,233,1.4000000000000001 +2014,9,18,6,30,21.5,1.24,0.0427,0.66,50,713,240,0,0.7000000000000001,50,713,0,240,0.317,25.060000000000002,74.57000000000001,0.14,984,0.7000000000000001,238,0.8 +2014,9,18,7,30,18.7,1.25,0.0427,0.66,16,260,27,0,4.7,16,260,0,27,0.317,39.67,87.59,0.14,984,0.7000000000000001,249,0.4 +2014,9,18,8,30,16.3,1.26,0.0431,0.66,0,0,0,0,5.9,0,0,0,0,0.317,50.1,101.16,0.14,985,0.7000000000000001,262,0.4 +2014,9,18,9,30,14.9,1.25,0.0443,0.66,0,0,0,0,5.9,0,0,0,0,0.317,55.01,114.35000000000001,0.14,986,0.7000000000000001,276,0.4 +2014,9,18,10,30,13.8,1.23,0.0461,0.66,0,0,0,0,5.9,0,0,0,0,0.317,58.93,127.17,0.14,987,0.7000000000000001,286,0.5 +2014,9,18,11,30,12.8,1.21,0.048,0.66,0,0,0,0,5.800000000000001,0,0,0,0,0.317,62.5,139.09,0.14,987,0.7000000000000001,288,0.6000000000000001 +2014,9,18,12,30,11.9,1.2,0.0494,0.66,0,0,0,0,5.6000000000000005,0,0,0,0,0.317,65.46000000000001,148.96,0.14,987,0.7000000000000001,283,0.7000000000000001 +2014,9,18,13,30,11.100000000000001,1.19,0.0505,0.66,0,0,0,0,5.2,0,0,0,0,0.317,66.95,154.21,0.14,987,0.7000000000000001,271,0.8 +2014,9,18,14,30,10.5,1.18,0.0516,0.66,0,0,0,0,4.4,0,0,0,0,0.317,66.08,152.08,0.14,987,0.7000000000000001,258,0.8 +2014,9,18,15,30,10,1.17,0.0524,0.66,0,0,0,0,3.7,0,0,0,0,0.316,65.03,143.85,0.14,987,0.7000000000000001,247,0.8 +2014,9,18,16,30,9.5,1.16,0.053000000000000005,0.66,0,0,0,0,3.2,0,0,0,0,0.316,64.69,132.63,0.14,987,0.7000000000000001,239,0.8 +2014,9,18,17,30,9,1.1500000000000001,0.053700000000000005,0.66,0,0,0,0,2.7,0,0,0,0,0.317,64.85,120.12,0.14,987,0.7000000000000001,230,0.8 +2014,9,18,18,30,8.700000000000001,1.1500000000000001,0.0545,0.66,0,0,0,0,2.5,0,0,0,0,0.319,64.86,107.04,0.14,988,0.7000000000000001,222,0.8 +2014,9,18,19,30,9.200000000000001,1.1500000000000001,0.055200000000000006,0.66,0,0,0,1,2.4000000000000004,0,0,0,0,0.319,62.28,93.74,0.14,988,0.7000000000000001,216,0.8 +2014,9,18,20,30,11.3,1.1400000000000001,0.056,0.66,41,550,134,0,3.4000000000000004,41,550,0,134,0.318,58.44,80.35000000000001,0.14,988,0.7000000000000001,211,0.8 +2014,9,18,21,30,14.700000000000001,1.1300000000000001,0.057,0.66,66,793,372,0,2.9000000000000004,66,793,0,372,0.316,45.15,67.31,0.14,989,0.7000000000000001,267,0.5 +2014,9,18,22,30,18.400000000000002,1.1300000000000001,0.0577,0.66,80,893,596,0,2.9000000000000004,80,893,0,596,0.313,35.49,54.730000000000004,0.14,989,0.8,331,0.5 +2014,9,18,23,30,20.200000000000003,1.1400000000000001,0.0584,0.66,89,948,780,0,2,89,948,0,780,0.312,29.830000000000002,43.19,0.14,988,0.8,336,0.8 +2014,9,19,0,30,22.700000000000003,1.19,0.0597,0.66,94,971,900,0,2,94,971,0,900,0.31,25.63,33.88,0.13,987,0.9,302,0.9 +2014,9,19,1,30,23.900000000000002,1.21,0.06280000000000001,0.66,98,975,950,0,1.9000000000000001,98,975,0,950,0.31,23.71,29.09,0.13,986,1,290,0.9 +2014,9,19,2,30,24.6,1.21,0.06720000000000001,0.66,99,964,925,0,1.8,99,964,0,925,0.309,22.48,31,0.13,985,1.1,284,0.8 +2014,9,19,3,30,24.8,1.21,0.0707,0.66,97,937,829,0,1.6,97,937,0,829,0.308,22.01,38.63,0.13,984,1.2000000000000002,281,0.8 +2014,9,19,4,30,24.6,1.2,0.0747,0.66,91,890,671,0,1.6,91,890,0,671,0.308,22.240000000000002,49.370000000000005,0.13,983,1.2000000000000002,273,0.8 +2014,9,19,5,30,23.700000000000003,1.2,0.07970000000000001,0.66,80,799,461,0,1.8,80,799,0,461,0.308,23.82,61.58,0.13,983,1.3,257,0.7000000000000001 +2014,9,19,6,30,21.400000000000002,1.23,0.08020000000000001,0.66,60,625,227,0,3.2,60,625,0,227,0.307,30.16,74.46000000000001,0.13,984,1.4000000000000001,190,0.5 +2014,9,19,7,30,18.3,1.22,0.0826,0.66,17,168,25,3,7.800000000000001,9,0,3,9,0.306,50.35,87.49,0.13,984,1.5,132,0.5 +2014,9,19,8,30,16.3,1.21,0.0819,0.66,0,0,0,0,8.5,0,0,0,0,0.307,59.92,101.05,0.13,985,1.5,129,0.5 +2014,9,19,9,30,15.4,1.2,0.0824,0.66,0,0,0,0,8.9,0,0,0,0,0.308,65.28,114.24000000000001,0.13,986,1.6,124,0.5 +2014,9,19,10,30,14.700000000000001,1.17,0.0823,0.66,0,0,0,0,9.4,0,0,0,0,0.31,70.37,127.03,0.13,987,1.6,113,0.5 +2014,9,19,11,30,14.3,1.16,0.0818,0.66,0,0,0,1,9.9,0,0,0,0,0.312,74.63,138.9,0.13,987,1.7000000000000002,91,0.6000000000000001 +2014,9,19,12,30,14,1.1400000000000001,0.0818,0.66,0,0,0,0,10,0,0,0,0,0.312,76.94,148.68,0.13,987,1.7000000000000002,61,0.6000000000000001 +2014,9,19,13,30,13.700000000000001,1.12,0.0848,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.312,79.21000000000001,153.84,0.13,987,1.8,24,0.6000000000000001 +2014,9,19,14,30,13.4,1.12,0.09000000000000001,0.66,0,0,0,0,10.3,0,0,0,0,0.312,81.33,151.69,0.13,986,1.8,167,0.6000000000000001 +2014,9,19,15,30,13,1.1300000000000001,0.095,0.66,0,0,0,3,10.3,0,0,0,0,0.312,83.8,143.51,0.13,986,1.8,316,0.6000000000000001 +2014,9,19,16,30,12.5,1.1500000000000001,0.0976,0.66,0,0,0,0,10.3,0,0,0,0,0.313,86.23,132.33,0.13,986,1.8,288,0.7000000000000001 +2014,9,19,17,30,12,1.16,0.0981,0.66,0,0,0,3,10,0,0,0,0,0.314,87.67,119.85000000000001,0.13,986,1.8,265,0.7000000000000001 +2014,9,19,18,30,11.4,1.17,0.097,0.66,0,0,0,4,9.700000000000001,0,0,0,0,0.315,89.25,106.78,0.13,987,1.8,247,0.8 +2014,9,19,19,30,11.5,1.18,0.0951,0.66,0,0,0,4,9.3,0,0,0,0,0.316,86.34,93.49,0.13,987,1.8,233,0.8 +2014,9,19,20,30,13.5,1.19,0.09380000000000001,0.66,47,455,126,4,9.4,53,3,3,54,0.316,76.47,80.09,0.13,988,1.8,223,0.9 +2014,9,19,21,30,16.900000000000002,1.2,0.09390000000000001,0.66,77,708,353,3,9.200000000000001,167,32,0,180,0.316,60.35,67.03,0.13,989,1.8,246,0.7000000000000001 +2014,9,19,22,30,19.8,1.2,0.0941,0.66,94,822,572,3,9.8,304,45,0,330,0.316,52.42,54.43,0.13,989,1.8,254,0.4 +2014,9,19,23,30,20.900000000000002,1.21,0.0926,0.66,104,884,752,1,9,104,884,0,752,0.315,46.62,42.85,0.13,988,1.8,235,0.2 +2014,9,20,0,30,22.700000000000003,1.16,0.1168,0.66,122,896,869,1,8.4,122,896,0,869,0.314,40.01,33.5,0.13,987,1.8,128,0.5 +2014,9,20,1,30,23.1,1.12,0.13520000000000001,0.66,134,891,916,1,8.3,134,891,0,916,0.313,38.82,28.69,0.13,987,1.9000000000000001,121,0.8 +2014,9,20,2,30,22.900000000000002,1.1,0.15,0.66,141,875,893,1,8.5,141,875,0,893,0.312,39.660000000000004,30.67,0.13,986,1.9000000000000001,115,1.1 +2014,9,20,3,30,22.3,1.11,0.18730000000000002,0.66,152,818,793,3,8.700000000000001,322,23,0,340,0.312,41.92,38.39,0.13,986,2,106,1.5 +2014,9,20,4,30,21.3,1.11,0.19720000000000001,0.66,143,753,635,0,9.200000000000001,143,753,0,635,0.311,45.980000000000004,49.2,0.13,986,2.1,100,2 +2014,9,20,5,30,20,1.1,0.2,0.66,123,647,432,1,9.9,123,647,0,432,0.311,52.35,61.44,0.13,986,2.2,97,2.4000000000000004 +2014,9,20,6,30,18.400000000000002,1.1,0.2414,0.66,95,411,206,1,11,95,411,0,206,0.31,62.18,74.35000000000001,0.13,987,2.2,96,2.3000000000000003 +2014,9,20,7,30,16.8,1.09,0.2641,0.66,17,37,19,4,12.200000000000001,7,0,3,7,0.31,74.15,87.4,0.13,988,2.3000000000000003,99,1.9000000000000001 +2014,9,20,8,30,15.8,1.07,0.2602,0.66,0,0,0,4,12.8,0,0,1,0,0.31,82.27,100.95,0.13,990,2.3000000000000003,104,1.5 +2014,9,20,9,30,15.3,1.07,0.2386,0.66,0,0,0,0,12.9,0,0,0,0,0.311,85.87,114.13,0.13,991,2.3000000000000003,109,1.2000000000000002 +2014,9,20,10,30,14.8,1.08,0.2034,0.66,0,0,0,3,12.9,0,0,0,0,0.311,88.38,126.88000000000001,0.13,991,2.2,112,1 +2014,9,20,11,30,14.3,1.11,0.1651,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.312,89.44,138.70000000000002,0.13,992,2.2,116,0.9 +2014,9,20,12,30,13.8,1.1400000000000001,0.137,0.66,0,0,0,1,12.200000000000001,0,0,0,0,0.313,89.79,148.4,0.13,992,2.1,123,0.8 +2014,9,20,13,30,13.4,1.1500000000000001,0.127,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.314,89.21000000000001,153.46,0.13,992,2.1,128,0.8 +2014,9,20,14,30,13.100000000000001,1.16,0.1247,0.66,0,0,0,0,11.3,0,0,0,0,0.314,88.89,151.29,0.13,991,2.1,132,0.8 +2014,9,20,15,30,12.8,1.17,0.1206,0.66,0,0,0,0,11,0,0,0,0,0.315,88.86,143.16,0.13,991,2.1,136,0.7000000000000001 +2014,9,20,16,30,12.4,1.18,0.1149,0.66,0,0,0,1,10.700000000000001,0,0,0,0,0.316,89.43,132.02,0.13,991,2.1,142,0.7000000000000001 +2014,9,20,17,30,12,1.18,0.1092,0.66,0,0,0,1,10.5,0,0,0,0,0.318,90.32000000000001,119.57000000000001,0.13,991,2.1,146,0.7000000000000001 +2014,9,20,18,30,11.700000000000001,1.16,0.1072,0.66,0,0,0,1,10.3,0,0,0,0,0.319,91.14,106.52,0.13,992,2.1,150,0.7000000000000001 +2014,9,20,19,30,12,1.1300000000000001,0.1063,0.66,0,0,0,8,10.3,0,0,0,0,0.319,89.06,93.23,0.13,992,2.2,150,0.9 +2014,9,20,20,30,13.200000000000001,1.08,0.1087,0.66,52,426,127,1,10.5,52,426,0,127,0.319,83.64,79.83,0.13,993,2.2,144,1.4000000000000001 +2014,9,20,21,30,14.9,1.05,0.10880000000000001,0.66,84,677,351,1,10.700000000000001,84,677,0,351,0.319,76.18,66.76,0.13,994,2.3000000000000003,133,1.9000000000000001 +2014,9,20,22,30,16.6,1.06,0.1038,0.66,100,799,569,1,10.700000000000001,100,799,0,569,0.318,68.32000000000001,54.13,0.13,994,2.3000000000000003,121,2.3000000000000003 +2014,9,20,23,30,17.3,1.07,0.095,0.66,107,869,748,2,10.200000000000001,466,116,0,551,0.318,63.08,42.52,0.13,994,2.3000000000000003,116,2.3000000000000003 +2014,9,21,0,30,18.400000000000002,0.99,0.16340000000000002,0.66,146,843,853,1,9.8,146,843,0,853,0.315,57.43,33.12,0.13,993,2.4000000000000004,111,2.4000000000000004 +2014,9,21,1,30,18.6,0.96,0.15460000000000002,0.66,146,863,906,3,9.9,269,27,0,293,0.312,57.07,28.3,0.13,992,2.4000000000000004,110,2.4000000000000004 +2014,9,21,2,30,18.3,0.92,0.1577,0.66,147,855,884,1,10.200000000000001,147,855,0,884,0.31,59.050000000000004,30.34,0.13,992,2.4000000000000004,107,2.4000000000000004 +2014,9,21,3,30,17.8,0.92,0.15180000000000002,0.66,138,832,792,2,10.600000000000001,499,98,0,576,0.31,62.7,38.15,0.13,992,2.5,104,2.4000000000000004 +2014,9,21,4,30,17.3,0.91,0.1371,0.66,121,793,640,1,11.100000000000001,121,793,0,640,0.311,66.76,49.03,0.13,991,2.5,103,2.4000000000000004 +2014,9,21,5,30,16.900000000000002,0.89,0.12190000000000001,0.66,98,714,441,1,11.600000000000001,98,714,0,441,0.312,70.78,61.31,0.13,991,2.5,105,2.3000000000000003 +2014,9,21,6,30,16.2,0.86,0.1126,0.66,70,544,218,1,12,70,544,0,218,0.313,76.34,74.24,0.13,992,2.4000000000000004,108,1.7000000000000002 +2014,9,21,7,30,15.3,0.85,0.1087,0.66,19,110,25,1,12.5,19,110,0,25,0.315,83.19,87.3,0.13,993,2.4000000000000004,112,1.2000000000000002 +2014,9,21,8,30,14.700000000000001,0.8200000000000001,0.10650000000000001,0.66,0,0,0,8,12.5,0,0,0,0,0.317,86.41,100.85000000000001,0.13,994,2.4000000000000004,118,1 +2014,9,21,9,30,14.3,0.79,0.1039,0.66,0,0,0,4,12.3,0,0,0,0,0.319,87.57000000000001,114.01,0.13,994,2.3000000000000003,126,1 +2014,9,21,10,30,13.9,0.77,0.10010000000000001,0.66,0,0,0,8,12.100000000000001,0,0,0,0,0.321,88.92,126.74000000000001,0.13,994,2.3000000000000003,130,0.9 +2014,9,21,11,30,13.600000000000001,0.75,0.09860000000000001,0.66,0,0,0,4,12,0,0,0,0,0.323,89.8,138.5,0.13,994,2.2,132,0.9 +2014,9,21,12,30,13.5,0.72,0.09720000000000001,0.66,0,0,0,8,11.9,0,0,0,0,0.325,90,148.12,0.13,994,2.2,131,0.9 +2014,9,21,13,30,13.3,0.6900000000000001,0.09580000000000001,0.66,0,0,0,7,11.9,0,0,0,0,0.327,91.15,153.08,0.13,994,2.2,131,0.9 +2014,9,21,14,30,13.200000000000001,0.65,0.0951,0.66,0,0,0,8,11.9,0,0,0,0,0.328,91.9,150.9,0.13,993,2.1,134,0.8 +2014,9,21,15,30,13,0.62,0.0955,0.66,0,0,0,8,11.9,0,0,0,0,0.33,93.08,142.81,0.13,993,2.1,137,0.8 +2014,9,21,16,30,12.9,0.59,0.09910000000000001,0.66,0,0,0,8,11.8,0,0,0,0,0.331,93.33,131.72,0.13,993,2.1,138,0.8 +2014,9,21,17,30,12.9,0.58,0.1056,0.66,0,0,0,4,11.8,0,0,0,0,0.334,93.09,119.29,0.13,993,2.1,135,0.9 +2014,9,21,18,30,13.100000000000001,0.6,0.1121,0.66,0,0,0,1,11.8,0,0,0,0,0.337,91.77,106.26,0.13,993,2.1,129,0.9 +2014,9,21,19,30,13.5,0.63,0.1197,0.66,0,0,0,8,11.8,0,0,0,0,0.339,89.59,92.97,0.13,994,2.1,126,1.1 +2014,9,21,20,30,14.3,0.66,0.1297,0.66,59,381,128,1,12.100000000000001,59,381,0,128,0.342,86.36,79.57000000000001,0.13,994,2.1,123,1.5 +2014,9,21,21,30,15.3,0.6900000000000001,0.1373,0.66,97,638,351,1,12.3,97,638,0,351,0.34400000000000003,82.46000000000001,66.49,0.13,995,2.1,121,1.8 +2014,9,21,22,30,16.3,0.75,0.14200000000000002,0.66,119,760,568,1,12.5,119,760,0,568,0.34500000000000003,78.15,53.83,0.13,995,2.1,119,2.1 +2014,9,21,23,30,16.7,0.8,0.1419,0.66,132,829,746,1,12.4,132,829,0,746,0.34500000000000003,75.54,42.19,0.13,995,2.1,118,2.2 +2014,9,22,0,30,17.8,0.86,0.1369,0.66,136,869,867,8,11.9,327,24,0,347,0.34400000000000003,68.43,32.74,0.13,995,2.1,113,2.5 +2014,9,22,1,30,18.2,0.89,0.1323,0.66,136,886,919,6,11.5,351,23,0,371,0.343,64.85,27.900000000000002,0.13,995,2.1,111,2.6 +2014,9,22,2,30,18.400000000000002,0.91,0.1222,0.66,130,892,902,7,11,306,25,0,327,0.343,62.1,30.01,0.13,994,2,111,2.6 +2014,9,22,3,30,18.3,0.9400000000000001,0.1114,0.66,120,877,812,8,10.600000000000001,505,106,0,588,0.34400000000000003,60.85,37.92,0.13,993,2,111,2.6 +2014,9,22,4,30,18,0.96,0.1085,0.66,109,832,656,6,10.4,347,40,0,373,0.34400000000000003,61.28,48.86,0.13,993,2,111,2.4000000000000004 +2014,9,22,5,30,17.400000000000002,0.97,0.11030000000000001,0.66,94,741,452,7,10.600000000000001,133,21,0,143,0.34400000000000003,64.42,61.18,0.13,994,2,112,1.9000000000000001 +2014,9,22,6,30,16.5,1,0.1194,0.66,72,550,222,8,11.200000000000001,101,22,0,107,0.34400000000000003,71.06,74.13,0.13,994,2,113,1.4000000000000001 +2014,9,22,7,30,15.600000000000001,1.01,0.1254,0.66,20,111,25,1,11.8,20,111,0,25,0.34400000000000003,78.09,87.2,0.13,994,2.1,115,1.1 +2014,9,22,8,30,15,1.01,0.1262,0.66,0,0,0,1,12.100000000000001,0,0,0,0,0.34400000000000003,82.83,100.75,0.13,995,2.1,117,1 +2014,9,22,9,30,14.5,1,0.1264,0.66,0,0,0,4,12.4,0,0,0,0,0.34500000000000003,87.35000000000001,113.89,0.13,995,2.2,120,0.9 +2014,9,22,10,30,14.100000000000001,1,0.12560000000000002,0.66,0,0,0,4,12.600000000000001,0,0,0,0,0.34400000000000003,90.91,126.59,0.13,996,2.2,125,0.8 +2014,9,22,11,30,13.8,0.99,0.1232,0.66,0,0,0,4,12.8,0,0,0,0,0.341,93.5,138.3,0.13,996,2.2,129,0.8 +2014,9,22,12,30,13.600000000000001,0.99,0.12000000000000001,0.66,0,0,0,7,12.8,0,0,0,0,0.337,94.77,147.83,0.13,995,2.2,132,0.8 +2014,9,22,13,30,13.4,0.98,0.1183,0.66,0,0,0,8,12.700000000000001,0,0,0,0,0.333,95.67,152.71,0.13,995,2.2,135,0.8 +2014,9,22,14,30,13.3,0.98,0.11320000000000001,0.66,0,0,0,7,12.600000000000001,0,0,0,0,0.329,95.63,150.51,0.13,994,2.2,137,0.8 +2014,9,22,15,30,13.100000000000001,0.98,0.1037,0.66,0,0,0,4,12.4,0,0,0,0,0.327,95.79,142.46,0.13,994,2.2,141,0.8 +2014,9,22,16,30,12.9,0.9500000000000001,0.09680000000000001,0.66,0,0,0,4,12.200000000000001,0,0,0,0,0.325,95.68,131.41,0.13,994,2.1,143,0.8 +2014,9,22,17,30,12.8,0.9400000000000001,0.0911,0.66,0,0,0,4,12,0,0,0,0,0.324,95.13,119.01,0.13,994,2.1,142,0.9 +2014,9,22,18,30,12.700000000000001,0.9400000000000001,0.0881,0.66,0,0,0,4,11.9,0,0,0,0,0.324,94.71000000000001,106,0.13,994,2.1,140,0.9 +2014,9,22,19,30,13.100000000000001,0.9500000000000001,0.0847,0.66,0,0,0,4,11.700000000000001,0,0,0,0,0.323,91.15,92.72,0.13,995,2,136,1 +2014,9,22,20,30,14.4,0.9500000000000001,0.081,0.66,49,484,138,1,12.100000000000001,49,484,0,138,0.321,86.25,79.32000000000001,0.13,995,2,131,1.5 +2014,9,22,21,30,16.2,0.9500000000000001,0.07730000000000001,0.66,75,732,370,1,12.600000000000001,75,732,0,370,0.319,79.02,66.22,0.13,995,1.9000000000000001,121,2.2 +2014,9,22,22,30,18.1,0.9400000000000001,0.0721,0.66,88,846,590,1,12.5,88,846,0,590,0.315,69.64,53.54,0.13,995,1.9000000000000001,109,2.7 +2014,9,22,23,30,19,0.9500000000000001,0.068,0.66,95,906,770,1,11.5,95,906,0,770,0.313,61.79,41.86,0.13,995,1.9000000000000001,104,2.8000000000000003 +2014,9,23,0,30,20.900000000000002,0.8,0.0814,0.66,109,922,888,3,10.5,319,24,0,339,0.307,51.29,32.36,0.13,994,1.9000000000000001,96,3 +2014,9,23,1,30,21.5,0.8300000000000001,0.0775,0.66,109,937,940,1,10,109,937,0,940,0.303,47.86,27.51,0.13,994,1.9000000000000001,92,3 +2014,9,23,2,30,21.700000000000003,0.86,0.0717,0.66,104,938,919,1,9.8,104,938,0,919,0.301,46.56,29.68,0.13,993,1.9000000000000001,90,3 +2014,9,23,3,30,21.6,1.01,0.058600000000000006,0.66,93,933,831,1,9.700000000000001,93,933,0,831,0.301,46.64,37.68,0.13,992,1.8,88,3 +2014,9,23,4,30,21.200000000000003,1.01,0.057300000000000004,0.66,85,892,673,0,9.700000000000001,85,892,0,673,0.302,47.71,48.69,0.13,992,1.8,86,2.8000000000000003 +2014,9,23,5,30,20.5,1,0.055900000000000005,0.66,73,815,468,0,9.600000000000001,73,815,0,468,0.303,49.7,61.050000000000004,0.13,992,1.8,85,2.5 +2014,9,23,6,30,19,1.02,0.0545,0.66,55,661,237,1,9.700000000000001,55,661,0,237,0.303,54.85,74.02,0.13,992,1.7000000000000002,86,1.8 +2014,9,23,7,30,16.900000000000002,1.04,0.0539,0.66,18,227,29,1,10.600000000000001,18,227,0,29,0.304,66.37,87.11,0.13,993,1.7000000000000002,87,1 +2014,9,23,8,30,15.3,1.06,0.0531,0.66,0,0,0,1,11.3,0,0,0,0,0.303,77.14,100.64,0.13,993,1.6,88,0.8 +2014,9,23,9,30,14.5,1.07,0.0514,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.302,83.01,113.77,0.13,993,1.6,88,0.7000000000000001 +2014,9,23,10,30,13.8,1.08,0.0502,0.66,0,0,0,0,11.9,0,0,0,0,0.301,88.58,126.44,0.13,993,1.6,90,0.7000000000000001 +2014,9,23,11,30,13.4,1.07,0.049800000000000004,0.66,0,0,0,0,12.3,0,0,0,0,0.3,92.84,138.1,0.13,993,1.7000000000000002,95,0.7000000000000001 +2014,9,23,12,30,13.100000000000001,1.07,0.050300000000000004,0.66,0,0,0,3,12.600000000000001,0,0,0,0,0.299,96.60000000000001,147.54,0.13,993,1.7000000000000002,100,0.7000000000000001 +2014,9,23,13,30,13,1.09,0.0529,0.66,0,0,0,3,12.8,0,0,0,0,0.299,98.91,152.33,0.13,993,1.8,105,0.7000000000000001 +2014,9,23,14,30,13.100000000000001,1.12,0.0526,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.299,99.71000000000001,150.11,0.13,993,1.8,112,0.7000000000000001 +2014,9,23,15,30,12.9,1.18,0.0524,0.66,0,0,0,0,12.9,0,0,0,0,0.299,100,142.11,0.13,992,1.8,118,0.7000000000000001 +2014,9,23,16,30,12.700000000000001,1.23,0.049800000000000004,0.66,0,0,0,1,12.700000000000001,0,0,0,0,0.299,100,131.11,0.13,992,1.8,117,0.7000000000000001 +2014,9,23,17,30,12.4,1.25,0.0466,0.66,0,0,0,1,12.4,0,0,0,0,0.3,100,118.73,0.13,992,1.8,113,0.7000000000000001 +2014,9,23,18,30,12.200000000000001,1.25,0.045200000000000004,0.66,0,0,0,3,12.200000000000001,0,0,0,0,0.301,100,105.73,0.13,992,1.8,109,0.8 +2014,9,23,19,30,12.9,1.22,0.0448,0.66,0,0,0,0,12.9,0,0,0,0,0.302,100,92.46000000000001,0.13,992,1.8,106,0.8 +2014,9,23,20,30,14.8,1.18,0.045700000000000005,0.66,42,568,150,3,13.3,48,0,3,48,0.303,90.96000000000001,79.06,0.13,992,1.8,99,1.2000000000000002 +2014,9,23,21,30,17.1,1.1300000000000001,0.0475,0.66,64,782,383,1,14,64,782,0,383,0.303,82.12,65.95,0.13,992,1.8,85,1.6 +2014,9,23,22,30,19.1,1.1,0.0482,0.66,77,876,601,3,13.8,256,26,0,271,0.304,71.53,53.25,0.13,992,1.9000000000000001,70,1.9000000000000001 +2014,9,23,23,30,20.1,1.09,0.051800000000000006,0.66,86,925,779,3,12.8,304,24,0,321,0.304,62.800000000000004,41.52,0.13,992,1.9000000000000001,65,1.9000000000000001 +2014,9,24,0,30,21.8,1.04,0.0703,0.66,101,933,893,1,12,101,933,0,893,0.303,53.88,31.98,0.13,991,2,57,1.9000000000000001 +2014,9,24,1,30,22.5,1.06,0.0758,0.66,106,940,943,1,11.700000000000001,106,940,0,943,0.303,50.480000000000004,27.11,0.13,990,2,57,1.8 +2014,9,24,2,30,23,1.07,0.0741,0.66,104,934,919,1,11.5,104,934,0,919,0.302,48.18,29.35,0.13,989,2.1,58,1.8 +2014,9,24,3,30,23.1,1.06,0.0811,0.66,104,904,822,1,11.3,104,904,0,822,0.301,47.54,37.45,0.13,988,2.2,60,1.9000000000000001 +2014,9,24,4,30,22.700000000000003,1.06,0.0868,0.66,98,854,664,3,11.4,400,86,0,456,0.3,49,48.52,0.13,987,2.2,62,2 +2014,9,24,5,30,21.700000000000003,1.06,0.08900000000000001,0.66,86,766,458,3,11.700000000000001,277,112,0,332,0.3,52.93,60.92,0.13,987,2.3000000000000003,63,2 +2014,9,24,6,30,20.3,1.06,0.0979,0.66,66,580,227,1,12.100000000000001,66,580,0,227,0.299,59.13,73.92,0.13,987,2.4000000000000004,63,1.7000000000000002 +2014,9,24,7,30,18.400000000000002,1.07,0.09960000000000001,0.66,20,150,28,1,12.8,20,150,0,28,0.299,69.76,87.01,0.13,987,2.4000000000000004,62,1.2000000000000002 +2014,9,24,8,30,16.900000000000002,1.07,0.0951,0.66,0,0,0,1,13.4,0,0,0,0,0.3,79.76,100.54,0.13,988,2.4000000000000004,58,0.9 +2014,9,24,9,30,16,1.07,0.08900000000000001,0.66,0,0,0,1,13.5,0,0,0,0,0.301,85.36,113.65,0.13,988,2.4000000000000004,50,0.8 +2014,9,24,10,30,15.3,1.05,0.0844,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.303,89.95,126.29,0.13,989,2.4000000000000004,41,0.7000000000000001 +2014,9,24,11,30,14.8,1.02,0.0824,0.66,0,0,0,0,13.8,0,0,0,0,0.304,93.52,137.89000000000001,0.13,988,2.4000000000000004,32,0.7000000000000001 +2014,9,24,12,30,14.4,0.99,0.0818,0.66,0,0,0,0,13.9,0,0,0,0,0.305,96.93,147.25,0.13,988,2.4000000000000004,23,0.7000000000000001 +2014,9,24,13,30,14.100000000000001,0.96,0.083,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.304,99.68,151.95000000000002,0.13,987,2.5,12,0.7000000000000001 +2014,9,24,14,30,13.8,0.93,0.0844,0.66,0,0,0,0,13.8,0,0,0,0,0.304,100,149.72,0.13,987,2.5,182,0.7000000000000001 +2014,9,24,15,30,13.5,0.9400000000000001,0.0858,0.66,0,0,0,0,13.5,0,0,0,0,0.304,100,141.76,0.13,986,2.5,355,0.7000000000000001 +2014,9,24,16,30,13.3,0.9500000000000001,0.08420000000000001,0.66,0,0,0,3,13.3,0,0,0,0,0.305,100,130.8,0.13,985,2.5,348,0.7000000000000001 +2014,9,24,17,30,13.100000000000001,0.98,0.08170000000000001,0.66,0,0,0,1,13.100000000000001,0,0,0,0,0.305,100,118.46000000000001,0.13,985,2.5,342,0.7000000000000001 +2014,9,24,18,30,13,1.02,0.0826,0.66,0,0,0,1,13,0,0,0,0,0.306,100,105.47,0.13,985,2.5,337,0.7000000000000001 +2014,9,24,19,30,13.600000000000001,1.07,0.0825,0.66,0,0,0,3,13.600000000000001,0,0,0,0,0.306,100,92.2,0.13,985,2.5,334,0.8 +2014,9,24,20,30,15.5,1.1,0.08170000000000001,0.66,49,493,145,1,14,49,493,0,145,0.307,90.98,78.8,0.13,986,2.5,333,1.3 +2014,9,24,21,30,18.2,1.12,0.0819,0.66,75,723,373,1,14.600000000000001,75,723,0,373,0.307,79.43,65.68,0.13,986,2.5,333,1.9000000000000001 +2014,9,24,22,30,20.8,1.1400000000000001,0.08170000000000001,0.66,91,827,589,3,14.3,365,117,0,436,0.306,66.42,52.95,0.13,986,2.6,327,2.2 +2014,9,24,23,30,22,1.12,0.0845,0.66,102,881,764,8,13.700000000000001,389,31,0,413,0.306,59.19,41.19,0.13,985,2.6,324,2.3000000000000003 +2014,9,25,0,30,24.400000000000002,0.99,0.1373,0.66,134,863,869,8,13.4,226,29,0,250,0.306,50.4,31.61,0.13,984,2.8000000000000003,317,2.5 +2014,9,25,1,30,25,1.02,0.17370000000000002,0.66,154,848,911,1,13.4,154,848,0,911,0.305,48.64,26.72,0.13,982,2.9000000000000004,319,2.6 +2014,9,25,2,30,25,1.06,0.198,0.66,163,825,884,8,13.600000000000001,507,38,0,540,0.305,49.230000000000004,29.03,0.13,981,2.9000000000000004,321,2.5 +2014,9,25,3,30,24.6,1.08,0.1953,0.66,155,800,792,0,13.9,155,800,0,792,0.306,51.26,37.22,0.13,980,2.9000000000000004,320,2.3000000000000003 +2014,9,25,4,30,24,1.05,0.2023,0.66,145,739,637,8,14.3,372,49,0,404,0.307,54.57,48.35,0.13,980,2.9000000000000004,317,1.9000000000000001 +2014,9,25,5,30,23.1,1,0.2169,0.66,129,624,434,8,14.9,16,0,0,16,0.307,60.13,60.79,0.13,979,2.9000000000000004,325,1.4000000000000001 +2014,9,25,6,30,21.8,0.98,0.21000000000000002,0.66,91,434,212,4,16.1,120,42,0,132,0.307,69.95,73.81,0.13,980,3,343,0.9 +2014,9,25,7,30,20.1,0.99,0.2051,0.66,21,62,24,8,17.2,3,0,3,3,0.307,83.32000000000001,86.92,0.13,980,3.2,330,0.6000000000000001 +2014,9,25,8,30,19,0.97,0.2363,0.66,0,0,0,3,17.5,0,0,0,0,0.307,91.16,100.43,0.13,980,3.3000000000000003,292,0.7000000000000001 +2014,9,25,9,30,18.2,0.9400000000000001,0.24930000000000002,0.66,0,0,0,1,17.8,0,0,0,0,0.307,97.49000000000001,113.53,0.13,981,2.9000000000000004,276,0.7000000000000001 +2014,9,25,10,30,17.1,0.9500000000000001,0.1587,0.66,0,0,0,1,17.1,0,0,0,0,0.307,100,126.13000000000001,0.13,982,2.2,276,0.7000000000000001 +2014,9,25,11,30,16,0.97,0.09330000000000001,0.66,0,0,0,0,16,0,0,0,0,0.308,100,137.68,0.13,982,1.7000000000000002,275,0.8 +2014,9,25,12,30,15.200000000000001,0.97,0.0792,0.66,0,0,0,1,15.200000000000001,0,0,0,0,0.308,100,146.95000000000002,0.13,982,1.4000000000000001,269,0.8 +2014,9,25,13,30,14.4,0.99,0.0743,0.66,0,0,0,0,14.4,0,0,0,0,0.308,100,151.57,0.13,982,1.4000000000000001,263,0.9 +2014,9,25,14,30,13.700000000000001,1.05,0.0666,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.308,100,149.33,0.13,982,1.4000000000000001,259,0.9 +2014,9,25,15,30,13.100000000000001,1.1300000000000001,0.0603,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.309,97,141.41,0.13,982,1.4000000000000001,260,0.9 +2014,9,25,16,30,12.600000000000001,1.21,0.057800000000000004,0.66,0,0,0,0,11.8,0,0,0,0,0.31,95.04,130.49,0.13,981,1.4000000000000001,263,0.9 +2014,9,25,17,30,12.200000000000001,1.29,0.0575,0.66,0,0,0,0,11.3,0,0,0,0,0.31,94.36,118.18,0.13,981,1.5,266,0.9 +2014,9,25,18,30,11.8,1.34,0.0572,0.66,0,0,0,0,11,0,0,0,0,0.311,94.86,105.21000000000001,0.13,982,1.6,268,0.9 +2014,9,25,19,30,12.200000000000001,1.36,0.0562,0.66,0,0,0,0,10.8,0,0,0,0,0.312,91.18,91.95,0.13,982,1.6,264,1.1 +2014,9,25,20,30,14,1.35,0.0551,0.66,45,574,159,1,11.4,45,574,0,159,0.313,84.61,78.55,0.13,983,1.6,255,1.7000000000000002 +2014,9,25,21,30,16.5,1.35,0.054700000000000006,0.66,66,785,393,1,12.200000000000001,66,785,0,393,0.314,75.85000000000001,65.41,0.13,983,1.7000000000000002,238,2.2 +2014,9,25,22,30,19.400000000000002,1.36,0.055900000000000005,0.66,79,880,613,1,12.3,79,880,0,613,0.315,63.7,52.660000000000004,0.13,983,1.7000000000000002,220,2.2 +2014,9,25,23,30,20.8,1.37,0.057600000000000005,0.66,88,930,792,1,11.4,88,930,0,792,0.315,54.910000000000004,40.87,0.13,983,1.7000000000000002,213,2.1 +2014,9,26,0,30,23.200000000000003,1.17,0.0666,0.66,99,946,908,1,10.8,99,946,0,908,0.315,45.7,31.23,0.13,982,1.8,210,1.6 +2014,9,26,1,30,24.3,1.12,0.0692,0.66,102,954,957,1,10.5,102,954,0,957,0.315,41.68,26.32,0.13,981,1.8,210,1.4000000000000001 +2014,9,26,2,30,24.900000000000002,1.1,0.0698,0.66,102,949,934,1,10.100000000000001,102,949,0,934,0.314,39.33,28.7,0.13,981,1.8,207,1.2000000000000002 +2014,9,26,3,30,25,1.05,0.07680000000000001,0.66,102,918,835,3,10,468,47,0,506,0.314,38.85,36.99,0.13,980,1.9000000000000001,202,1.1 +2014,9,26,4,30,24.700000000000003,1.05,0.0795,0.66,95,869,675,1,10.100000000000001,95,869,0,675,0.312,39.730000000000004,48.19,0.13,980,2,197,0.9 +2014,9,26,5,30,23.900000000000002,1.05,0.0826,0.66,84,784,468,1,10.3,84,784,0,468,0.31,42.14,60.67,0.13,980,2,181,0.7000000000000001 +2014,9,26,6,30,22.3,1.05,0.0883,0.66,64,606,234,1,10.700000000000001,64,606,0,234,0.308,47.84,73.7,0.13,981,2.1,142,0.6000000000000001 +2014,9,26,7,30,20.5,1.05,0.09190000000000001,0.66,21,171,30,1,13.200000000000001,21,171,0,30,0.306,62.77,86.82000000000001,0.13,982,2.2,121,0.5 +2014,9,26,8,30,19.200000000000003,1.04,0.0955,0.66,0,0,0,3,13.9,0,0,0,0,0.306,71.24,100.32000000000001,0.13,983,2.2,116,0.7000000000000001 +2014,9,26,9,30,18,1.04,0.0999,0.66,0,0,0,0,14,0,0,0,0,0.306,77.28,113.4,0.13,984,2.2,103,0.9 +2014,9,26,10,30,17,1.01,0.1046,0.66,0,0,0,3,14,0,0,0,0,0.306,82.71000000000001,125.98,0.13,984,2.2,96,0.8 +2014,9,26,11,30,16.400000000000002,0.98,0.1105,0.66,0,0,0,3,14,0,0,0,0,0.306,85.9,137.47,0.13,985,2.2,94,0.7000000000000001 +2014,9,26,12,30,15.9,0.9400000000000001,0.1242,0.66,0,0,0,3,14.100000000000001,0,0,0,0,0.308,88.88,146.66,0.13,985,2.2,97,0.7000000000000001 +2014,9,26,13,30,15.600000000000001,0.89,0.1418,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.31,91.21000000000001,151.19,0.13,985,2.2,102,0.6000000000000001 +2014,9,26,14,30,15.200000000000001,0.81,0.152,0.66,0,0,0,1,14.3,0,0,0,0,0.314,94.16,148.93,0.13,984,2.2,104,0.6000000000000001 +2014,9,26,15,30,14.9,0.8,0.1802,0.66,0,0,0,1,14.4,0,0,0,0,0.317,96.73,141.06,0.13,984,2.2,104,0.6000000000000001 +2014,9,26,16,30,14.700000000000001,0.81,0.1942,0.66,0,0,0,0,14.4,0,0,0,0,0.319,98.16,130.18,0.13,984,2.2,103,0.5 +2014,9,26,17,30,14.5,0.81,0.1905,0.66,0,0,0,1,14.4,0,0,0,0,0.321,99.07000000000001,117.9,0.13,984,2.1,102,0.5 +2014,9,26,18,30,14.4,0.85,0.19940000000000002,0.66,0,0,0,0,14.3,0,0,0,0,0.323,99.37,104.94,0.13,985,2.1,98,0.4 +2014,9,26,19,30,14.700000000000001,0.89,0.19990000000000002,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.323,97.04,91.69,0.13,985,2.1,87,0.4 +2014,9,26,20,30,16.1,0.92,0.18330000000000002,0.66,70,368,145,1,14.4,70,368,0,145,0.324,89.47,78.29,0.13,986,2.1,67,0.4 +2014,9,26,21,30,18.3,0.99,0.1579,0.66,103,647,375,1,14.100000000000001,103,647,0,375,0.323,76.65,65.14,0.13,986,2.1,197,0.4 +2014,9,26,22,30,20.5,1.08,0.1315,0.66,113,793,597,1,13.200000000000001,113,793,0,597,0.323,63.13,52.370000000000005,0.13,986,2.1,305,0.4 +2014,9,26,23,30,21.5,1.1400000000000001,0.1198,0.66,119,865,776,0,12,119,865,0,776,0.323,54.54,40.54,0.13,986,2.1,271,0.5 +2014,9,27,0,30,23.3,1.19,0.18780000000000002,0.66,157,849,886,0,11.200000000000001,157,849,0,886,0.322,46.37,30.85,0.13,985,2,244,0.6000000000000001 +2014,9,27,1,30,24.1,1.25,0.18180000000000002,0.66,156,867,936,0,10.700000000000001,156,867,0,936,0.321,42.85,25.92,0.13,984,2,235,0.6000000000000001 +2014,9,27,2,30,24.8,1.29,0.1666,0.66,148,872,915,0,10.200000000000001,148,872,0,915,0.32,39.7,28.38,0.13,983,2,222,0.5 +2014,9,27,3,30,25.1,1.29,0.1461,0.66,133,863,824,0,9.700000000000001,133,863,0,824,0.319,37.69,36.76,0.13,982,2,199,0.5 +2014,9,27,4,30,24.900000000000002,1.26,0.15180000000000002,0.66,125,807,665,0,9.200000000000001,125,807,0,665,0.317,36.980000000000004,48.02,0.13,982,2,164,0.6000000000000001 +2014,9,27,5,30,24,1.25,0.15,0.66,107,716,459,1,9,107,716,0,459,0.314,38.51,60.54,0.13,982,2,127,0.8 +2014,9,27,6,30,22.1,1.24,0.1428,0.66,77,544,230,1,9.5,77,544,0,230,0.311,44.64,73.59,0.13,983,2,103,1.1 +2014,9,27,7,30,19.6,1.21,0.13670000000000002,0.66,22,138,30,1,12.600000000000001,22,138,0,30,0.309,63.78,86.72,0.13,984,2,97,1.2000000000000002 +2014,9,27,8,30,17.7,1.1500000000000001,0.1398,0.66,0,0,0,0,13,0,0,0,0,0.308,73.97,100.22,0.13,985,2.1,101,1.1 +2014,9,27,9,30,16.8,1.06,0.1501,0.66,0,0,0,0,13.4,0,0,0,0,0.307,80.32000000000001,113.28,0.13,987,2.2,105,0.9 +2014,9,27,10,30,16.1,0.9500000000000001,0.1678,0.66,0,0,0,4,13.9,0,0,0,0,0.306,87.02,125.82000000000001,0.13,987,2.3000000000000003,107,0.9 +2014,9,27,11,30,15.8,0.86,0.1779,0.66,0,0,0,4,14.5,0,0,0,0,0.305,91.93,137.25,0.13,988,2.2,109,1 +2014,9,27,12,30,15.5,0.88,0.1842,0.66,0,0,0,3,14.8,0,0,0,0,0.305,95.72,146.36,0.13,988,2.2,116,0.9 +2014,9,27,13,30,15.200000000000001,0.91,0.16110000000000002,0.66,0,0,0,1,14.9,0,0,0,0,0.304,97.93,150.81,0.13,988,2.2,125,0.8 +2014,9,27,14,30,14.9,0.92,0.1404,0.66,0,0,0,1,14.700000000000001,0,0,0,0,0.303,98.88,148.54,0.13,988,2.1,131,0.8 +2014,9,27,15,30,14.600000000000001,0.93,0.1292,0.66,0,0,0,2,14.5,0,0,0,0,0.303,99.64,140.70000000000002,0.13,988,2.1,134,0.8 +2014,9,27,16,30,14.3,0.96,0.11760000000000001,0.66,0,0,0,1,14.3,0,0,0,0,0.302,99.9,129.87,0.13,987,2,133,0.8 +2014,9,27,17,30,13.9,0.99,0.1067,0.66,0,0,0,1,13.9,0,0,0,0,0.301,100,117.62,0.13,988,1.9000000000000001,130,0.8 +2014,9,27,18,30,13.600000000000001,1.02,0.09870000000000001,0.66,0,0,0,1,13.600000000000001,0,0,0,0,0.301,100,104.68,0.13,988,1.8,130,0.7000000000000001 +2014,9,27,19,30,13.8,1.04,0.0903,0.66,0,0,0,1,13.4,0,0,0,0,0.301,97.37,91.44,0.13,988,1.8,131,0.8 +2014,9,27,20,30,14.9,1.06,0.0829,0.66,53,530,163,1,13.8,53,530,0,163,0.299,92.85000000000001,78.04,0.13,989,1.7000000000000002,129,1.3 +2014,9,27,21,30,16.6,1.1,0.07740000000000001,0.66,76,759,398,1,14.100000000000001,76,759,0,398,0.298,85.09,64.88,0.13,989,1.7000000000000002,124,1.7000000000000002 +2014,9,27,22,30,18.5,1.16,0.06770000000000001,0.66,86,871,621,1,13.700000000000001,86,871,0,621,0.297,73.61,52.09,0.13,989,1.7000000000000002,118,1.7000000000000002 +2014,9,27,23,30,19.5,1.23,0.056900000000000006,0.66,89,933,802,1,12.600000000000001,89,933,0,802,0.297,64.5,40.22,0.13,989,1.7000000000000002,116,1.7000000000000002 +2014,9,28,0,30,21.900000000000002,0.9400000000000001,0.0944,0.66,115,926,914,1,11.700000000000001,115,926,0,914,0.295,52.49,30.48,0.13,989,1.7000000000000002,108,1.5 +2014,9,28,1,30,22.900000000000002,0.97,0.093,0.66,117,939,964,1,11.200000000000001,117,939,0,964,0.294,47.64,25.53,0.13,988,1.7000000000000002,104,1.4000000000000001 +2014,9,28,2,30,23.5,0.99,0.0867,0.66,112,936,938,1,10.700000000000001,112,936,1,938,0.294,44.53,28.060000000000002,0.13,987,1.8,101,1.4000000000000001 +2014,9,28,3,30,23.700000000000003,1.04,0.08410000000000001,0.66,106,917,843,1,10.4,106,917,0,843,0.293,42.93,36.53,0.13,986,1.8,99,1.5 +2014,9,28,4,30,23.400000000000002,1.09,0.0806,0.66,96,877,684,1,10.100000000000001,96,877,0,684,0.293,43.03,47.86,0.13,986,1.8,95,1.6 +2014,9,28,5,30,22.8,1.12,0.0745,0.66,81,803,477,1,10,81,803,0,477,0.292,44.17,60.410000000000004,0.13,986,1.8,88,1.7000000000000002 +2014,9,28,6,30,21.200000000000003,1.12,0.0779,0.66,62,639,244,1,10.100000000000001,62,639,0,244,0.292,49.04,73.48,0.13,986,1.7000000000000002,81,1.6 +2014,9,28,7,30,18.900000000000002,1.16,0.0728,0.66,21,226,34,1,11.100000000000001,21,226,0,34,0.292,60.7,86.62,0.13,987,1.7000000000000002,74,1.1 +2014,9,28,8,30,17,1.16,0.06960000000000001,0.66,0,0,0,0,12,0,0,0,0,0.292,72.52,100.11,0.13,987,1.7000000000000002,69,0.9 +2014,9,28,9,30,15.9,1.1400000000000001,0.069,0.66,0,0,0,0,12.3,0,0,0,0,0.291,79.38,113.15,0.13,988,1.7000000000000002,66,0.8 +2014,9,28,10,30,15.100000000000001,1.12,0.06960000000000001,0.66,0,0,0,0,12.5,0,0,0,0,0.291,84.52,125.65,0.13,988,1.6,65,0.7000000000000001 +2014,9,28,11,30,14.600000000000001,1.1,0.0707,0.66,0,0,0,0,12.5,0,0,0,0,0.291,87.43,137.03,0.13,989,1.6,64,0.7000000000000001 +2014,9,28,12,30,14.3,1.09,0.0721,0.66,0,0,0,0,12.5,0,0,0,0,0.29,89.04,146.06,0.13,989,1.6,62,0.7000000000000001 +2014,9,28,13,30,14.100000000000001,1.08,0.07390000000000001,0.66,0,0,0,0,12.4,0,0,0,0,0.29,89.79,150.43,0.13,988,1.6,56,0.7000000000000001 +2014,9,28,14,30,13.9,1.07,0.0757,0.66,0,0,0,0,12.4,0,0,0,0,0.289,90.51,148.15,0.13,988,1.6,43,0.7000000000000001 +2014,9,28,15,30,13.600000000000001,1.07,0.0775,0.66,0,0,0,0,12.3,0,0,0,0,0.289,92.09,140.35,0.13,988,1.6,25,0.7000000000000001 +2014,9,28,16,30,13,1.07,0.0791,0.66,0,0,0,0,12.3,0,0,0,0,0.289,95.59,129.56,0.13,987,1.6,187,0.7000000000000001 +2014,9,28,17,30,12.5,1.08,0.08020000000000001,0.66,0,0,0,0,12.3,0,0,0,0,0.29,98.75,117.34,0.13,987,1.6,352,0.7000000000000001 +2014,9,28,18,30,12.200000000000001,1.09,0.081,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.29,100,104.42,0.13,988,1.5,336,0.7000000000000001 +2014,9,28,19,30,12.700000000000001,1.11,0.0816,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.29,97.09,91.18,0.13,988,1.5,318,0.8 +2014,9,28,20,30,14.8,1.1300000000000001,0.082,0.66,53,546,168,1,12.3,53,546,0,168,0.29,84.96000000000001,77.79,0.13,988,1.5,315,0.9 +2014,9,28,21,30,17.7,1.1500000000000001,0.0806,0.66,77,765,406,1,12.3,77,765,0,406,0.289,70.55,64.61,0.13,989,1.5,330,0.9 +2014,9,28,22,30,20.3,1.17,0.07880000000000001,0.66,91,868,628,0,11.8,91,868,0,628,0.289,58.050000000000004,51.800000000000004,0.13,989,1.5,335,0.9 +2014,9,28,23,30,21.5,1.21,0.076,0.66,98,924,807,0,11.4,98,924,0,807,0.289,52.74,39.89,0.13,988,1.5,333,0.8 +2014,9,29,0,30,24.400000000000002,1.27,0.0659,0.66,99,960,930,0,10.700000000000001,99,960,0,930,0.289,42.25,30.1,0.14,987,1.5,330,0.6000000000000001 +2014,9,29,1,30,25.700000000000003,1.3,0.0659,0.66,101,970,979,0,10,101,970,0,979,0.289,37.15,25.13,0.14,986,1.5,341,0.5 +2014,9,29,2,30,26.6,1.31,0.0669,0.66,100,965,954,0,9.5,100,965,1,954,0.29,34.02,27.740000000000002,0.14,985,1.5,178,0.5 +2014,9,29,3,30,27,1.11,0.08410000000000001,0.66,105,928,853,0,9.1,105,928,0,853,0.29,32.47,36.31,0.14,984,1.5,18,0.5 +2014,9,29,4,30,26.8,1.11,0.0857,0.66,98,879,689,0,8.9,98,879,0,689,0.291,32.42,47.7,0.14,984,1.6,40,0.6000000000000001 +2014,9,29,5,30,26,1.11,0.0869,0.66,85,796,479,0,8.8,85,796,0,479,0.291,33.82,60.29,0.14,984,1.6,51,0.8 +2014,9,29,6,30,24.1,1.12,0.08700000000000001,0.66,64,631,244,0,9,64,631,0,244,0.292,38.39,73.38,0.14,984,1.6,53,1 +2014,9,29,7,30,21.1,1.1300000000000001,0.0859,0.66,22,211,34,0,11.700000000000001,22,211,0,34,0.293,54.88,86.52,0.14,985,1.6,52,1.1 +2014,9,29,8,30,18.6,1.1300000000000001,0.08420000000000001,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.294,65.76,99.99000000000001,0.14,986,1.6,47,1 +2014,9,29,9,30,17.3,1.1400000000000001,0.0823,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.294,71.81,113.02,0.14,986,1.6,38,0.9 +2014,9,29,10,30,16.400000000000002,1.1500000000000001,0.08030000000000001,0.66,0,0,0,0,12.4,0,0,0,0,0.294,77.07000000000001,125.49000000000001,0.14,987,1.7000000000000002,26,0.8 +2014,9,29,11,30,15.600000000000001,1.17,0.07830000000000001,0.66,0,0,0,0,12.4,0,0,0,0,0.294,81.32000000000001,136.81,0.14,987,1.7000000000000002,13,0.7000000000000001 +2014,9,29,12,30,15,1.17,0.07680000000000001,0.66,0,0,0,0,12.3,0,0,0,0,0.294,84.10000000000001,145.76,0.14,987,1.7000000000000002,181,0.7000000000000001 +2014,9,29,13,30,14.5,1.18,0.076,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.294,85.95,150.05,0.14,986,1.7000000000000002,351,0.7000000000000001 +2014,9,29,14,30,14,1.18,0.0757,0.66,0,0,0,0,12,0,0,0,0,0.294,87.63,147.75,0.14,986,1.7000000000000002,342,0.7000000000000001 +2014,9,29,15,30,13.600000000000001,1.18,0.0758,0.66,0,0,0,0,11.8,0,0,0,0,0.294,88.7,140,0.14,986,1.7000000000000002,334,0.7000000000000001 +2014,9,29,16,30,13.3,1.19,0.0763,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.295,89.48,129.25,0.14,986,1.7000000000000002,325,0.7000000000000001 +2014,9,29,17,30,12.9,1.19,0.07690000000000001,0.66,0,0,0,0,11.5,0,0,0,0,0.295,91.14,117.06,0.14,986,1.7000000000000002,316,0.7000000000000001 +2014,9,29,18,30,12.5,1.19,0.07730000000000001,0.66,0,0,0,0,11.4,0,0,0,0,0.295,93.08,104.16,0.14,987,1.7000000000000002,310,0.7000000000000001 +2014,9,29,19,30,13,1.19,0.0776,0.66,0,0,0,0,11.4,0,0,0,0,0.294,89.82000000000001,90.93,0.14,987,1.8,307,0.8 +2014,9,29,20,30,15,1.19,0.0779,0.66,52,553,171,1,11.600000000000001,52,553,0,171,0.294,80.28,77.53,0.14,988,1.8,307,0.9 +2014,9,29,21,30,18.2,1.2,0.07690000000000001,0.66,76,765,407,0,11.700000000000001,76,765,0,407,0.294,65.77,64.35,0.14,988,1.8,319,1.1 +2014,9,29,22,30,21.6,1.2,0.0756,0.66,90,864,628,0,11.600000000000001,90,864,0,628,0.295,52.82,51.52,0.14,988,1.8,331,1.1 +2014,9,29,23,30,23.3,1.21,0.07490000000000001,0.66,98,918,806,0,10.8,98,918,0,806,0.294,45.160000000000004,39.57,0.14,987,1.8,333,1 +2014,9,30,0,30,26.900000000000002,1.33,0.0648,0.66,98,954,926,0,9.9,98,954,0,926,0.293,34.37,29.73,0.14,986,1.8,173,0.8 +2014,9,30,1,30,28.3,1.34,0.0651,0.66,100,964,975,0,9.5,100,964,0,975,0.293,30.86,24.740000000000002,0.14,985,1.8,12,0.7000000000000001 +2014,9,30,2,30,29.1,1.34,0.0654,0.66,99,959,950,0,9.200000000000001,99,959,1,950,0.294,28.91,27.42,0.14,984,1.8,27,0.8 +2014,9,30,3,30,29.400000000000002,1.1,0.08420000000000001,0.66,105,920,849,0,9,105,920,0,849,0.294,28.03,36.09,0.14,983,1.8,35,1 +2014,9,30,4,30,29.1,1.1,0.0852,0.66,97,875,688,0,9,97,875,0,688,0.295,28.42,47.54,0.14,983,1.8,40,1.1 +2014,9,30,5,30,28.1,1.1,0.0869,0.66,85,789,477,0,9,85,789,0,477,0.295,30.3,60.160000000000004,0.14,983,1.9000000000000001,43,1.3 +2014,9,30,6,30,25.8,1.1,0.0883,0.66,64,622,243,0,9.700000000000001,64,622,0,243,0.295,36.14,73.27,0.14,983,1.9000000000000001,45,1.4000000000000001 +2014,9,30,7,30,22.6,1.1,0.08900000000000001,0.66,22,203,35,0,13.100000000000001,22,203,0,35,0.295,55.13,86.42,0.14,984,2,47,1.2000000000000002 +2014,9,30,8,30,20.1,1.1,0.08950000000000001,0.66,0,0,0,0,13.8,0,0,0,0,0.295,66.97,99.88,0.14,984,2,44,1.1 +2014,9,30,9,30,18.8,1.11,0.09050000000000001,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.295,74.83,112.89,0.14,985,2.1,35,1 +2014,9,30,10,30,17.900000000000002,1.12,0.0913,0.66,0,0,0,0,14.3,0,0,0,0,0.296,79.66,125.32000000000001,0.14,985,2.1,20,0.9 +2014,9,30,11,30,17.2,1.1300000000000001,0.0912,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.296,82.56,136.59,0.14,985,2.1,185,0.9 +2014,9,30,12,30,16.6,1.1500000000000001,0.09000000000000001,0.66,0,0,0,0,14,0,0,0,0,0.297,84.5,145.45000000000002,0.14,985,2.1,351,0.8 +2014,9,30,13,30,16,1.16,0.0877,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.297,86.05,149.66,0.14,984,2.1,339,0.8 +2014,9,30,14,30,15.5,1.18,0.0845,0.66,0,0,0,0,13.4,0,0,0,0,0.298,87.2,147.36,0.14,984,2.1,331,0.8 +2014,9,30,15,30,15,1.2,0.0811,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.298,88.69,139.65,0.14,984,2,326,0.8 +2014,9,30,16,30,14.4,1.21,0.0789,0.66,0,0,0,0,13,0,0,0,0,0.299,91.08,128.94,0.14,983,2,322,0.8 +2014,9,30,17,30,13.9,1.21,0.0782,0.66,0,0,0,0,12.9,0,0,0,0,0.299,93.48,116.78,0.14,984,2,316,0.8 +2014,9,30,18,30,13.4,1.21,0.07930000000000001,0.66,0,0,0,0,12.8,0,0,0,0,0.3,96.21000000000001,103.9,0.14,984,2,310,0.8 +2014,9,30,19,30,14,1.19,0.0821,0.66,0,0,0,0,12.8,0,0,0,0,0.301,92.63,90.11,0.14,985,2,303,1.1 +2014,9,30,20,30,16.1,1.17,0.0867,0.66,54,537,172,1,13,54,537,0,172,0.304,81.61,77.29,0.14,985,2.1,299,1.7000000000000002 +2014,9,30,21,30,19.1,1.16,0.0918,0.66,81,741,405,1,13.100000000000001,81,741,0,405,0.306,68,64.09,0.14,985,2.1,296,2.1 +2014,9,30,22,30,22.700000000000003,1.1300000000000001,0.09770000000000001,0.66,99,836,622,0,12.9,99,836,0,622,0.307,54,51.24,0.14,985,2.1,290,2.4000000000000004 +2014,9,30,23,30,24.5,1.09,0.1043,0.66,112,885,797,0,12.100000000000001,112,885,0,797,0.308,45.85,39.25,0.14,985,2.1,286,2.5 +2019,10,1,0,30,21.6,0.81,0.2275,0.66,182,801,880,3,12.8,413,102,0,502,0.312,57.42,29.44,0.13,1002,2.6,104,3.2 +2019,10,1,1,30,21.8,0.84,0.2343,0.66,187,814,928,3,12.600000000000001,377,61,0,433,0.31,55.79,24.44,0.13,1002,2.6,101,3.2 +2019,10,1,2,30,21.6,0.87,0.226,0.66,182,812,904,4,12.5,223,105,58,316,0.309,56.36,27.19,0.13,1001,2.6,99,3.1 +2019,10,1,3,30,21.3,0.91,0.22160000000000002,0.66,170,789,809,0,12.600000000000001,200,721,0,784,0.309,57.53,35.93,0.13,1001,2.6,99,3 +2019,10,1,4,30,20.8,0.96,0.21380000000000002,0.66,153,741,654,3,12.5,261,359,0,504,0.309,59.120000000000005,47.44,0.13,1001,2.6,100,2.9000000000000004 +2019,10,1,5,30,20,0.99,0.2019,0.66,127,652,452,7,12.5,175,428,0,388,0.309,61.99,60.08,0.13,1001,2.6,101,2.6 +2019,10,1,6,30,19.1,1.01,0.18910000000000002,0.66,89,481,228,7,12.600000000000001,93,360,33,197,0.309,65.94,73.2,0.13,1002,2.6,103,2.1 +2019,10,1,7,30,18.2,1.02,0.16790000000000002,0.66,27,114,34,3,12.8,25,78,75,30,0.31,70.84,86.35000000000001,0.13,1003,2.6,106,1.6 +2019,10,1,8,30,17.5,1.03,0.1499,0.66,0,0,0,0,13,0,0,0,0,0.311,75.14,99.81,0.13,1003,2.5,111,1.3 +2019,10,1,9,30,17.1,1.05,0.1396,0.66,0,0,0,0,13,0,0,0,0,0.311,76.77,112.8,0.13,1004,2.4000000000000004,115,1.3 +2019,10,1,10,30,16.8,1.07,0.1337,0.66,0,0,0,0,12.9,0,0,0,0,0.31,77.58,125.2,0.13,1004,2.3000000000000003,116,1.3 +2019,10,1,11,30,16.5,1.07,0.1269,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.309,77.97,136.42000000000002,0.13,1004,2.2,114,1.1 +2019,10,1,12,30,16.2,1.06,0.12940000000000002,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.307,79.94,145.21,0.13,1005,2.2,111,0.8 +2019,10,1,13,30,16,1.06,0.1307,0.66,0,0,0,0,12.9,0,0,0,0,0.304,81.62,149.36,0.13,1004,2.2,110,0.8 +2019,10,1,14,30,16,1.12,0.1273,0.66,0,0,0,3,12.9,0,0,33,0,0.303,81.72,147.04,0.13,1004,2.2,117,0.8 +2019,10,1,15,30,15.700000000000001,1.16,0.1211,0.66,0,0,0,7,12.8,0,0,0,0,0.304,83.13,139.36,0.13,1003,2,124,0.8 +2019,10,1,16,30,15.4,1.19,0.11320000000000001,0.66,0,0,0,3,12.8,0,0,0,0,0.305,84.26,128.69,0.13,1003,1.9000000000000001,127,0.8 +2019,10,1,17,30,15.100000000000001,1.2,0.1077,0.66,0,0,0,3,12.600000000000001,0,0,0,0,0.307,85.18,116.55,0.13,1002,1.9000000000000001,126,0.8 +2019,10,1,18,30,14.700000000000001,1.21,0.1029,0.66,0,0,0,3,12.5,0,0,0,0,0.308,86.44,103.68,0.13,1003,1.8,125,0.8 +2019,10,1,19,30,15.3,1.19,0.0999,0.66,6,38,6,0,12.3,6,38,25,6,0.31,82.44,89.93,0.13,1003,1.8,126,1 +2019,10,1,20,30,17.1,1.18,0.09860000000000001,0.66,59,529,177,0,12.700000000000001,59,529,42,177,0.311,75.19,77.08,0.13,1004,1.7000000000000002,120,1.6 +2019,10,1,21,30,19.3,1.17,0.0959,0.66,83,747,412,0,12.3,104,587,0,362,0.312,63.9,63.88,0.13,1004,1.7000000000000002,106,2.2 +2019,10,1,22,30,21.1,1.17,0.09280000000000001,0.66,98,850,633,3,11.100000000000001,263,117,0,337,0.312,52.77,51.01,0.13,1004,1.7000000000000002,98,2.4000000000000004 +2019,10,1,23,30,21.900000000000002,1.1500000000000001,0.0921,0.66,107,905,810,3,10.5,342,205,0,501,0.312,48.21,39,0.13,1004,1.7000000000000002,96,2.4000000000000004 +2019,10,2,0,30,23.700000000000003,0.91,0.114,0.66,126,914,925,2,10,322,437,0,704,0.312,41.800000000000004,29.07,0.13,1004,1.7000000000000002,90,2.5 +2019,10,2,1,30,24.400000000000002,0.93,0.11,0.66,126,928,973,0,9.600000000000001,181,800,0,912,0.311,39.13,24.05,0.13,1003,1.7000000000000002,87,2.5 +2019,10,2,2,30,24.700000000000003,0.9400000000000001,0.1061,0.66,127,920,948,0,9.3,179,810,33,902,0.311,37.68,26.87,0.13,1002,1.7000000000000002,84,2.6 +2019,10,2,3,30,24.6,0.75,0.1233,0.66,129,887,849,0,9.1,129,887,0,849,0.31,37.33,35.72,0.13,1001,1.6,81,2.7 +2019,10,2,4,30,24,0.79,0.1178,0.66,116,845,689,0,9,116,845,0,689,0.31,38.4,47.28,0.13,1001,1.6,78,2.7 +2019,10,2,5,30,23,0.8300000000000001,0.1125,0.66,99,764,481,0,8.9,99,764,0,481,0.31,40.7,59.96,0.13,1001,1.6,76,2.7 +2019,10,2,6,30,21.400000000000002,0.86,0.1077,0.66,73,599,247,0,9,73,599,0,247,0.311,45.1,73.09,0.13,1002,1.5,73,2.2 +2019,10,2,7,30,19.200000000000003,0.89,0.10260000000000001,0.66,27,186,39,0,9.5,27,186,0,39,0.312,53.31,86.25,0.13,1002,1.4000000000000001,69,1.4000000000000001 +2019,10,2,8,30,17.400000000000002,0.93,0.0964,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.313,64.79,99.69,0.13,1003,1.4000000000000001,66,0.9 +2019,10,2,9,30,16.400000000000002,0.97,0.08990000000000001,0.66,0,0,0,0,10.9,0,0,0,0,0.314,69.91,112.66,0.13,1003,1.3,63,0.8 +2019,10,2,10,30,15.600000000000001,1,0.0839,0.66,0,0,0,0,10.9,0,0,0,0,0.315,73.72,125.03,0.13,1003,1.2000000000000002,61,0.7000000000000001 +2019,10,2,11,30,15,1.02,0.0787,0.66,0,0,0,0,10.9,0,0,0,0,0.315,76.52,136.19,0.13,1003,1.2000000000000002,60,0.7000000000000001 +2019,10,2,12,30,14.4,1.04,0.0743,0.66,0,0,0,0,10.8,0,0,0,0,0.315,79.09,144.9,0.13,1003,1.1,62,0.7000000000000001 +2019,10,2,13,30,14,1.05,0.07100000000000001,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.314,80.58,148.98,0.13,1003,1.1,66,0.7000000000000001 +2019,10,2,14,30,13.600000000000001,1.07,0.069,0.66,0,0,0,0,10.600000000000001,0,0,33,0,0.313,82.04,146.65,0.13,1002,1,70,0.8 +2019,10,2,15,30,13.200000000000001,1.08,0.068,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.312,84,139.01,0.13,1002,1,73,0.8 +2019,10,2,16,30,12.8,1.1,0.0675,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.312,86.41,128.38,0.13,1001,1,78,0.8 +2019,10,2,17,30,12.600000000000001,1.11,0.0673,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.312,87.54,116.27,0.13,1001,1,85,0.8 +2019,10,2,18,30,12.4,1.12,0.0673,0.66,0,0,0,0,10.600000000000001,0,0,0,0,0.312,88.59,103.42,0.13,1002,1,93,0.8 +2019,10,2,19,30,12.9,1.1300000000000001,0.0678,0.66,8,59,8,0,10.600000000000001,8,59,0,8,0.311,85.66,89.71000000000001,0.13,1002,1.1,106,0.7000000000000001 +2019,10,2,20,30,15,1.1400000000000001,0.0685,0.66,53,601,190,0,10.8,53,601,0,190,0.311,75.9,76.83,0.13,1003,1.1,93,0.6000000000000001 +2019,10,2,21,30,18.1,1.16,0.06770000000000001,0.66,75,803,432,0,10.4,75,803,0,432,0.31,60.7,63.620000000000005,0.13,1003,1.1,66,0.8 +2019,10,2,22,30,20.6,1.2,0.0661,0.66,86,897,654,0,9.1,86,897,0,654,0.31,47.54,50.730000000000004,0.13,1003,1.2000000000000002,64,0.8 +2019,10,2,23,30,21.700000000000003,1.23,0.065,0.66,95,947,834,0,8,95,947,0,834,0.31,41.36,38.69,0.13,1003,1.2000000000000002,69,0.8 +2019,10,3,0,30,24.5,1.22,0.066,0.66,99,972,952,0,6.9,99,972,0,952,0.31,32.37,28.7,0.13,1001,1.2000000000000002,82,0.9 +2019,10,3,1,30,25.900000000000002,1.24,0.06570000000000001,0.66,102,982,1001,0,6,102,982,0,1001,0.309,28.04,23.66,0.13,1000,1.2000000000000002,78,1.1 +2019,10,3,2,30,26.700000000000003,1.25,0.0656,0.66,102,974,973,0,5.5,102,974,33,973,0.309,25.76,26.560000000000002,0.13,999,1.2000000000000002,73,1.4000000000000001 +2019,10,3,3,30,26.900000000000002,1.12,0.0748,0.66,101,947,872,0,5.2,101,947,0,872,0.309,24.92,35.5,0.13,998,1.2000000000000002,70,1.7000000000000002 +2019,10,3,4,30,26.5,1.1500000000000001,0.0787,0.66,96,899,708,0,5.1000000000000005,96,899,0,708,0.309,25.48,47.13,0.13,998,1.2000000000000002,67,1.9000000000000001 +2019,10,3,5,30,25.5,1.19,0.0858,0.66,86,809,492,0,5.300000000000001,86,809,0,492,0.31,27.35,59.84,0.13,998,1.3,63,2.2 +2019,10,3,6,30,23.5,1.17,0.0903,0.66,66,641,254,0,5.800000000000001,66,641,0,254,0.31,31.93,72.98,0.13,998,1.3,58,2 +2019,10,3,7,30,20.6,1.1300000000000001,0.0879,0.66,26,225,41,0,7.800000000000001,26,225,0,41,0.311,43.61,86.15,0.13,999,1.4000000000000001,54,1.4000000000000001 +2019,10,3,8,30,18.400000000000002,1.09,0.0873,0.66,0,0,0,0,9.5,0,0,0,0,0.312,56.31,99.58,0.13,999,1.5,53,1 +2019,10,3,9,30,17.2,1.06,0.08990000000000001,0.66,0,0,0,0,10.4,0,0,0,0,0.311,64.36,112.53,0.13,1000,1.6,54,0.8 +2019,10,3,10,30,16.3,1.04,0.0941,0.66,0,0,0,0,11,0,0,0,0,0.31,70.71000000000001,124.86,0.13,1000,1.7000000000000002,55,0.7000000000000001 +2019,10,3,11,30,15.600000000000001,1.03,0.098,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.309,75.17,135.96,0.13,1000,1.8,54,0.6000000000000001 +2019,10,3,12,30,15,1.02,0.1003,0.66,0,0,0,0,11.3,0,0,0,0,0.308,78.66,144.6,0.13,1000,1.8,48,0.6000000000000001 +2019,10,3,13,30,14.4,1.03,0.1012,0.66,0,0,0,0,11.3,0,0,0,0,0.306,81.81,148.6,0.13,1000,1.8,35,0.7000000000000001 +2019,10,3,14,30,13.9,1.03,0.10160000000000001,0.66,0,0,0,0,11.200000000000001,0,0,33,0,0.305,83.75,146.26,0.13,1000,1.8,18,0.7000000000000001 +2019,10,3,15,30,13.4,1.05,0.1023,0.66,0,0,0,0,11,0,0,0,0,0.305,85.64,138.66,0.13,999,1.8,182,0.7000000000000001 +2019,10,3,16,30,13,1.07,0.1034,0.66,0,0,0,0,11,0,0,0,0,0.306,87.58,128.07,0.13,999,1.8,346,0.7000000000000001 +2019,10,3,17,30,12.600000000000001,1.08,0.1047,0.66,0,0,0,0,11,0,0,0,0,0.307,89.76,115.99000000000001,0.13,999,1.8,329,0.7000000000000001 +2019,10,3,18,30,12.200000000000001,1.1,0.10600000000000001,0.66,0,0,0,0,10.9,0,0,0,0,0.309,91.99,103.17,0.13,999,1.7000000000000002,315,0.7000000000000001 +2019,10,3,19,30,12.8,1.11,0.1073,0.66,8,42,8,0,10.9,8,42,0,8,0.309,88.26,89.5,0.13,1000,1.7000000000000002,306,0.9 +2019,10,3,20,30,15.200000000000001,1.12,0.10830000000000001,0.66,62,526,184,0,11,62,526,0,184,0.309,75.89,76.59,0.13,1000,1.7000000000000002,313,1.1 +2019,10,3,21,30,18.5,1.1400000000000001,0.1068,0.66,88,740,420,0,10.8,88,740,0,420,0.31,60.84,63.370000000000005,0.13,1000,1.7000000000000002,331,1.2000000000000002 +2019,10,3,22,30,21.400000000000002,1.16,0.1038,0.66,102,845,640,0,9.9,102,845,0,640,0.31,47.980000000000004,50.46,0.13,1000,1.7000000000000002,336,1.1 +2019,10,3,23,30,22.700000000000003,1.18,0.1008,0.66,112,902,819,0,8.8,112,902,0,819,0.31,41.17,38.38,0.13,1000,1.7000000000000002,334,0.9 +2019,10,4,0,30,26.400000000000002,1.1400000000000001,0.1068,0.66,119,929,937,0,7.6000000000000005,119,929,0,937,0.31,30.43,28.34,0.13,998,1.6,223,0.30000000000000004 +2019,10,4,1,30,28,1.16,0.1033,0.66,120,944,987,0,6.9,120,944,0,987,0.31,26.32,23.27,0.13,997,1.5,119,0.5 +2019,10,4,2,30,28.900000000000002,1.18,0.1,0.66,119,938,960,0,6.5,119,938,33,960,0.309,24.39,26.25,0.13,996,1.5,102,0.8 +2019,10,4,3,30,29.1,1.1400000000000001,0.11130000000000001,0.66,118,909,860,0,6.4,118,909,0,860,0.308,23.87,35.29,0.13,995,1.5,83,1 +2019,10,4,4,30,28.700000000000003,1.16,0.1105,0.66,109,863,698,0,6.4,109,863,0,698,0.307,24.47,46.97,0.13,994,1.5,66,1.2000000000000002 +2019,10,4,5,30,27.700000000000003,1.18,0.1105,0.66,94,777,486,0,6.6000000000000005,94,777,0,486,0.306,26.23,59.71,0.13,994,1.5,54,1.6 +2019,10,4,6,30,25.6,1.2,0.111,0.66,71,606,249,0,7.1000000000000005,71,606,0,249,0.305,30.82,72.87,0.13,995,1.6,46,1.7000000000000002 +2019,10,4,7,30,22.5,1.22,0.1115,0.66,26,201,40,0,9.8,26,201,0,40,0.304,44.49,86.05,0.13,995,1.6,42,1.5 +2019,10,4,8,30,20.1,1.23,0.11180000000000001,0.66,0,0,0,0,10.9,0,0,0,0,0.304,55.53,99.46000000000001,0.13,996,1.7000000000000002,39,1.3 +2019,10,4,9,30,18.7,1.23,0.1121,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.304,63.15,112.39,0.13,996,1.7000000000000002,37,1 +2019,10,4,10,30,17.8,1.22,0.11170000000000001,0.66,0,0,0,0,11.9,0,0,0,0,0.303,68.26,124.68,0.13,997,1.8,32,0.9 +2019,10,4,11,30,17,1.21,0.1106,0.66,0,0,0,0,12,0,0,0,0,0.303,72.2,135.73,0.13,997,1.8,26,0.8 +2019,10,4,12,30,16.3,1.21,0.10980000000000001,0.66,0,0,0,0,12,0,0,0,0,0.304,75.82000000000001,144.29,0.13,997,1.8,18,0.7000000000000001 +2019,10,4,13,30,15.700000000000001,1.21,0.1091,0.66,0,0,0,0,12,0,0,0,0,0.305,78.45,148.22,0.13,996,1.8,9,0.7000000000000001 +2019,10,4,14,30,15.200000000000001,1.22,0.1073,0.66,0,0,0,0,11.8,0,0,33,0,0.307,80.17,145.88,0.13,996,1.7000000000000002,179,0.8 +2019,10,4,15,30,14.700000000000001,1.22,0.1047,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.307,81.77,138.31,0.13,995,1.7000000000000002,344,0.7000000000000001 +2019,10,4,16,30,14.200000000000001,1.2,0.1012,0.66,0,0,0,0,11.5,0,0,0,0,0.308,83.58,127.76,0.13,995,1.7000000000000002,328,0.7000000000000001 +2019,10,4,17,30,13.600000000000001,1.19,0.0979,0.66,0,0,0,0,11.3,0,0,0,0,0.309,85.94,115.72,0.13,995,1.6,320,0.7000000000000001 +2019,10,4,18,30,13.100000000000001,1.2,0.0954,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.31,87.81,102.91,0.13,995,1.6,314,0.7000000000000001 +2019,10,4,19,30,13.700000000000001,1.21,0.094,0.66,8,56,9,0,11,8,56,0,9,0.31,83.52,89.29,0.13,995,1.6,303,0.9 +2019,10,4,20,30,15.9,1.22,0.0903,0.66,58,565,191,0,10.9,58,565,0,191,0.309,72.31,76.34,0.13,995,1.6,290,1.2000000000000002 +2019,10,4,21,30,19.5,1.2,0.0877,0.66,82,766,428,0,10.9,82,766,0,428,0.309,57.370000000000005,63.120000000000005,0.13,995,1.7000000000000002,285,1.3 +2019,10,4,22,30,23.8,1.18,0.0874,0.66,95,860,646,0,10.4,95,860,0,646,0.308,42.84,50.19,0.13,995,1.8,269,1.3 +2019,10,4,23,30,26,1.16,0.0891,0.66,106,910,822,0,8.6,132,853,0,804,0.307,33.19,38.07,0.13,995,1.8,251,1.3 +2019,10,5,0,30,30.200000000000003,1.1400000000000001,0.1,0.66,118,922,932,0,6.7,118,922,0,932,0.306,22.88,27.97,0.13,995,2,199,1.2000000000000002 +2019,10,5,1,30,31.6,1.18,0.11040000000000001,0.66,124,923,974,0,6.1000000000000005,124,923,0,974,0.305,20.26,22.88,0.13,994,2.1,180,1.2000000000000002 +2019,10,5,2,30,32.2,1.21,0.1179,0.66,130,903,942,0,6.2,130,903,33,942,0.305,19.75,25.94,0.13,993,2.2,159,1.2000000000000002 +2019,10,5,3,30,31.900000000000002,1.19,0.1527,0.66,140,849,835,0,6.5,140,849,0,835,0.305,20.52,35.08,0.13,992,2.3000000000000003,131,1.4000000000000001 +2019,10,5,4,30,30.6,1.19,0.19110000000000002,0.66,144,764,667,0,7.5,186,644,0,627,0.305,23.54,46.82,0.13,992,2.4000000000000004,108,1.9000000000000001 +2019,10,5,5,30,28.400000000000002,1.16,0.2248,0.66,133,639,456,0,9.3,133,639,0,456,0.306,30.25,59.59,0.13,993,2.6,96,2.6 +2019,10,5,6,30,25.400000000000002,1.07,0.23070000000000002,0.66,98,441,229,0,11.3,101,395,8,218,0.306,41.410000000000004,72.76,0.13,994,2.8000000000000003,87,3 +2019,10,5,7,30,22.200000000000003,0.97,0.2308,0.66,29,85,35,3,13.4,24,23,67,26,0.307,57.38,85.94,0.13,995,2.8000000000000003,80,2.8000000000000003 +2019,10,5,8,30,20,0.89,0.22110000000000002,0.66,0,0,0,0,14.9,0,0,0,0,0.308,72.25,99.34,0.13,996,2.9000000000000004,76,2.5 +2019,10,5,9,30,18.900000000000002,0.84,0.2277,0.66,0,0,0,4,15.5,0,0,0,0,0.308,80.54,112.25,0.13,996,2.8000000000000003,78,2 +2019,10,5,10,30,18.5,0.8300000000000001,0.23850000000000002,0.66,0,0,0,4,15.600000000000001,0,0,0,0,0.307,83.42,124.51,0.13,997,2.8000000000000003,82,1.6 +2019,10,5,11,30,18.2,0.85,0.2281,0.66,0,0,0,4,15.600000000000001,0,0,0,0,0.307,84.61,135.5,0.13,997,2.7,85,1.4000000000000001 +2019,10,5,12,30,17.900000000000002,0.91,0.21980000000000002,0.66,0,0,0,4,15.4,0,0,0,0,0.307,85.39,143.97,0.13,997,2.7,87,1.2000000000000002 +2019,10,5,13,30,17.7,0.97,0.2117,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.308,85.52,147.84,0.13,997,2.7,88,1.1 +2019,10,5,14,30,17.400000000000002,1,0.20020000000000002,0.66,0,0,0,0,15.100000000000001,0,0,33,0,0.308,86.46000000000001,145.49,0.13,996,2.6,91,1 +2019,10,5,15,30,17.1,1.03,0.2066,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.308,87.85000000000001,137.96,0.13,996,2.7,94,0.9 +2019,10,5,16,30,16.8,1.05,0.2142,0.66,0,0,0,0,15,0,0,0,0,0.308,89.41,127.46000000000001,0.13,995,2.7,97,0.8 +2019,10,5,17,30,16.5,1.05,0.20570000000000002,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.308,91.2,115.44,0.13,995,2.7,101,0.6000000000000001 +2019,10,5,18,30,16.2,1.06,0.2018,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.307,93.11,102.65,0.13,996,2.7,107,0.5 +2019,10,5,19,30,16.6,1.07,0.20020000000000002,0.66,8,23,8,0,15.100000000000001,8,23,0,8,0.307,90.8,89.08,0.13,996,2.8000000000000003,106,0.7000000000000001 +2019,10,5,20,30,18.1,1.07,0.1961,0.66,81,405,178,0,15.100000000000001,81,405,0,178,0.306,82.42,76.10000000000001,0.13,997,2.8000000000000003,89,0.9 +2019,10,5,21,30,20.1,1.09,0.1932,0.66,118,627,404,0,14.600000000000001,128,574,8,390,0.305,70.73,62.870000000000005,0.13,997,2.9000000000000004,55,0.7000000000000001 +2019,10,5,22,30,22.3,1.1,0.1908,0.66,139,740,615,0,14.100000000000001,139,740,0,615,0.304,59.620000000000005,49.92,0.13,997,3,185,0.6000000000000001 +2019,10,5,23,30,23.400000000000002,1.1300000000000001,0.1937,0.66,153,801,786,0,13.5,153,801,0,786,0.303,53.85,37.76,0.13,997,3.1,338,0.6000000000000001 +2019,10,6,0,30,26.700000000000003,1.28,0.1192,0.66,123,891,913,0,13,123,891,0,913,0.304,42.65,27.61,0.13,995,3.1,315,0.9 +2019,10,6,1,30,28.700000000000003,1.3,0.11280000000000001,0.66,123,905,959,0,12.3,123,905,0,959,0.305,36.44,22.490000000000002,0.13,993,3,303,0.9 +2019,10,6,2,30,30.3,1.3,0.1165,0.66,126,894,932,0,11.8,126,894,33,932,0.305,32.06,25.63,0.13,992,3,279,0.8 +2019,10,6,3,30,31.200000000000003,1.27,0.1307,0.66,124,863,832,0,11.4,124,863,0,832,0.306,29.64,34.87,0.13,991,3,260,0.7000000000000001 +2019,10,6,4,30,31.3,1.29,0.1341,0.66,116,811,673,0,11.100000000000001,116,811,0,673,0.307,28.88,46.67,0.13,990,2.9000000000000004,255,0.6000000000000001 +2019,10,6,5,30,30.700000000000003,1.3,0.1431,0.66,104,712,466,0,10.9,104,712,0,466,0.307,29.52,59.47,0.13,990,2.9000000000000004,172,0.5 +2019,10,6,6,30,28.8,1.29,0.158,0.66,80,527,237,0,11,80,527,0,237,0.308,33.08,72.66,0.13,990,2.9000000000000004,79,0.9 +2019,10,6,7,30,25.6,1.28,0.1577,0.66,28,156,39,0,13.5,28,156,0,39,0.309,47.12,85.84,0.13,991,2.9000000000000004,66,1.5 +2019,10,6,8,30,22.700000000000003,1.27,0.13770000000000002,0.66,0,0,0,0,14.4,0,0,0,0,0.31,59.46,99.22,0.13,992,2.8000000000000003,63,1.6 +2019,10,6,9,30,21.200000000000003,1.25,0.12440000000000001,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.311,65.97,112.11,0.13,992,2.8000000000000003,60,1.4000000000000001 +2019,10,6,10,30,20.1,1.24,0.11710000000000001,0.66,0,0,0,0,15.3,0,0,0,0,0.311,73.69,124.33,0.13,993,2.7,55,1.1 +2019,10,6,11,30,19.3,1.24,0.11270000000000001,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.311,79.75,135.26,0.13,993,2.7,51,0.9 +2019,10,6,12,30,18.6,1.24,0.1095,0.66,0,0,0,0,16,0,0,0,0,0.31,84.9,143.66,0.13,992,2.6,46,0.7000000000000001 +2019,10,6,13,30,18,1.23,0.1056,0.66,0,0,0,0,16.2,0,0,0,0,0.309,89.17,147.46,0.13,992,2.5,40,0.7000000000000001 +2019,10,6,14,30,17.5,1.2,0.1017,0.66,0,0,0,0,16.2,0,0,33,0,0.309,92.3,145.1,0.13,991,2.5,34,0.6000000000000001 +2019,10,6,15,30,17,1.18,0.101,0.66,0,0,0,0,16.2,0,0,0,0,0.309,94.97,137.62,0.13,991,2.4000000000000004,29,0.6000000000000001 +2019,10,6,16,30,16.6,1.1400000000000001,0.1046,0.66,0,0,0,0,16.1,0,0,0,0,0.31,96.85000000000001,127.15,0.13,991,2.4000000000000004,19,0.6000000000000001 +2019,10,6,17,30,16.2,1.12,0.10980000000000001,0.66,0,0,0,0,15.9,0,0,0,0,0.31,98.3,115.17,0.13,991,2.4000000000000004,174,0.5 +2019,10,6,18,30,15.700000000000001,1.11,0.1135,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.311,100,102.4,0.13,991,2.3000000000000003,327,0.6000000000000001 +2019,10,6,19,30,16.2,1.11,0.1139,0.66,12,66,13,0,15.5,12,66,0,13,0.311,95.37,88.87,0.13,991,2.3000000000000003,303,0.8 +2019,10,6,20,30,18.3,1.12,0.1119,0.66,63,529,192,0,15.100000000000001,63,529,0,192,0.311,81.73,75.86,0.13,991,2.2,288,1.1 +2019,10,6,21,30,21.6,1.1400000000000001,0.1072,0.66,87,740,427,0,14.700000000000001,87,740,0,427,0.31,64.92,62.620000000000005,0.13,991,2.1,288,1.2000000000000002 +2019,10,6,22,30,25.400000000000002,1.16,0.10210000000000001,0.66,100,845,647,0,13.9,100,845,0,647,0.309,48.85,49.65,0.13,991,2.1,291,1.3 +2019,10,6,23,30,27.3,1.18,0.09720000000000001,0.66,108,902,824,0,12.700000000000001,108,902,0,824,0.309,40.52,37.46,0.13,991,2,292,1.3 +2019,10,7,0,30,32.7,1.18,0.1075,0.66,118,922,938,0,11.200000000000001,118,922,0,938,0.308,26.82,27.25,0.13,989,1.9000000000000001,268,1.4000000000000001 +2019,10,7,1,30,35.2,1.27,0.1163,0.66,123,927,982,0,8.9,123,927,0,982,0.308,20.06,22.1,0.13,988,1.9000000000000001,257,1.4000000000000001 +2019,10,7,2,30,36.4,1.36,0.1303,0.66,129,910,952,0,7.5,129,910,33,952,0.307,17.11,25.330000000000002,0.13,987,1.8,261,1.3 +2019,10,7,3,30,36.6,1.36,0.1554,0.66,132,868,846,0,7.1000000000000005,132,868,0,846,0.308,16.46,34.660000000000004,0.13,986,1.9000000000000001,273,1.2000000000000002 +2019,10,7,4,30,36.1,1.4000000000000001,0.17170000000000002,0.66,127,805,681,0,7.2,127,805,0,681,0.308,17.02,46.52,0.13,986,1.9000000000000001,283,1.2000000000000002 +2019,10,7,5,30,35,1.41,0.1841,0.66,113,699,469,0,7.5,113,699,0,469,0.308,18.42,59.35,0.13,986,2,290,1.1 +2019,10,7,6,30,32.4,1.3900000000000001,0.19410000000000002,0.66,84,513,238,0,8.3,94,301,33,184,0.308,22.51,72.55,0.13,986,2.1,314,0.8 +2019,10,7,7,30,29,1.34,0.19110000000000002,0.66,27,144,38,7,13,23,61,100,28,0.308,37.28,85.73,0.13,987,2.2,313,0.6000000000000001 +2019,10,7,8,30,26.700000000000003,1.27,0.1774,0.66,0,0,0,3,14.200000000000001,0,0,0,0,0.307,46.1,99.10000000000001,0.13,988,2.2,289,0.7000000000000001 +2019,10,7,9,30,25.5,1.19,0.1589,0.66,0,0,0,0,14.3,0,0,0,0,0.307,49.9,111.96000000000001,0.13,988,2.2,290,0.7000000000000001 +2019,10,7,10,30,24.6,1.1300000000000001,0.1461,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.306,52.39,124.15,0.13,989,2.2,304,0.8 +2019,10,7,11,30,23.400000000000002,1.1,0.1421,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.305,55.78,135.02,0.13,989,2.2,317,0.9 +2019,10,7,12,30,22.400000000000002,1.1,0.1449,0.66,0,0,0,0,13.8,0,0,0,0,0.304,58.09,143.35,0.13,989,2.2,322,0.9 +2019,10,7,13,30,21.6,1.1,0.1462,0.66,0,0,0,0,13.3,0,0,0,0,0.303,59.28,147.08,0.13,988,2.2,321,0.9 +2019,10,7,14,30,21.1,1.11,0.1458,0.66,0,0,0,4,12.700000000000001,0,0,33,0,0.302,58.67,144.72,0.13,987,2.2,315,0.9 +2019,10,7,15,30,20.700000000000003,1.12,0.14250000000000002,0.66,0,0,0,4,12.200000000000001,0,0,0,0,0.302,58.09,137.27,0.13,987,2.2,306,0.9 +2019,10,7,16,30,20.200000000000003,1.12,0.13720000000000002,0.66,0,0,0,4,11.8,0,0,0,0,0.302,58.480000000000004,126.85000000000001,0.13,987,2.1,296,0.9 +2019,10,7,17,30,19.6,1.12,0.1348,0.66,0,0,0,3,11.4,0,0,0,0,0.302,59.27,114.9,0.13,987,2.1,288,0.9 +2019,10,7,18,30,19.200000000000003,1.11,0.1353,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.302,59.6,102.15,0.13,987,2.1,281,0.9 +2019,10,7,19,30,19.900000000000002,1.09,0.137,0.66,13,59,14,0,10.9,13,59,0,14,0.302,56.1,88.66,0.13,988,2.1,277,1 +2019,10,7,20,30,22,1.08,0.1371,0.66,70,500,194,4,10.600000000000001,35,149,67,72,0.302,48.300000000000004,75.63,0.13,988,2.1,278,1.4000000000000001 +2019,10,7,21,30,25.1,1.06,0.1361,0.66,99,708,427,4,10.200000000000001,126,318,0,273,0.302,39.13,62.38,0.13,988,2.1,284,1.6 +2019,10,7,22,30,28.700000000000003,1.06,0.1351,0.66,116,812,645,0,10.100000000000001,116,812,0,645,0.301,31.34,49.39,0.13,988,2.1,290,1.6 +2019,10,7,23,30,30.6,1.08,0.1359,0.66,128,868,820,0,9.600000000000001,128,868,0,820,0.301,27.17,37.160000000000004,0.13,988,2.1,292,1.7000000000000002 +2019,10,8,0,30,34.9,1.18,0.13540000000000002,0.66,133,897,933,0,8.4,133,897,0,933,0.301,19.72,26.900000000000002,0.13,986,2.1,284,2.4000000000000004 +2019,10,8,1,30,36.4,1.25,0.1545,0.66,143,895,975,4,7.5,254,59,0,309,0.301,17.02,21.71,0.13,985,2,281,2.8000000000000003 +2019,10,8,2,30,36.9,1.27,0.1772,0.66,154,867,940,0,6.800000000000001,281,574,33,801,0.301,15.81,25.03,0.13,984,2,278,3.2 +2019,10,8,3,30,36.800000000000004,1.2,0.2296,0.66,166,808,832,4,6.300000000000001,194,77,0,257,0.301,15.370000000000001,34.46,0.13,983,2,274,3.5 +2019,10,8,4,30,36.2,1.1400000000000001,0.24910000000000002,0.66,157,744,670,4,6.2,260,108,8,335,0.301,15.77,46.37,0.13,982,2.1,269,3.5 +2019,10,8,5,30,35,1.09,0.23240000000000002,0.66,129,654,464,4,6.4,208,144,0,282,0.301,17.11,59.230000000000004,0.13,982,2.1,261,3.3000000000000003 +2019,10,8,6,30,33,1.07,0.21530000000000002,0.66,93,478,237,4,7.2,67,84,33,92,0.301,20.18,72.44,0.13,983,2.3000000000000003,249,2.6 +2019,10,8,7,30,30.1,1.09,0.20720000000000002,0.66,29,120,38,0,9.4,28,91,33,35,0.302,27.61,85.63,0.13,984,2.4000000000000004,237,1.9000000000000001 +2019,10,8,8,30,27.900000000000002,1.1300000000000001,0.1938,0.66,0,0,0,7,10.200000000000001,0,0,0,0,0.302,33.15,98.98,0.13,986,2.5,230,1.7000000000000002 +2019,10,8,9,30,26.6,1.19,0.1645,0.66,0,0,0,4,9.700000000000001,0,0,0,0,0.303,34.550000000000004,111.82000000000001,0.13,987,2.5,228,1.7000000000000002 +2019,10,8,10,30,25.5,1.25,0.135,0.66,0,0,0,4,8.9,0,0,0,0,0.304,34.97,123.97,0.13,988,2.4000000000000004,228,1.6 +2019,10,8,11,30,24.200000000000003,1.32,0.11670000000000001,0.66,0,0,0,0,8,0,0,0,0,0.305,35.49,134.78,0.13,989,2.2,227,1.6 +2019,10,8,12,30,22.900000000000002,1.36,0.1075,0.66,0,0,0,3,6.800000000000001,0,0,0,0,0.306,35.47,143.03,0.13,989,2,225,1.7000000000000002 +2019,10,8,13,30,21.6,1.36,0.10500000000000001,0.66,0,0,0,3,5.6000000000000005,0,0,0,0,0.307,35.2,146.70000000000002,0.13,989,1.9000000000000001,222,1.7000000000000002 +2019,10,8,14,30,20.200000000000003,1.35,0.1068,0.66,0,0,0,4,4.6000000000000005,0,0,33,0,0.308,35.77,144.34,0.13,990,1.7000000000000002,217,1.5 +2019,10,8,15,30,18.8,1.32,0.1087,0.66,0,0,0,4,4,0,0,0,0,0.308,37.62,136.93,0.13,990,1.6,208,1.1 +2019,10,8,16,30,17.6,1.32,0.11180000000000001,0.66,0,0,0,7,4,0,0,0,0,0.309,40.6,126.55,0.13,991,1.4000000000000001,197,0.9 +2019,10,8,17,30,16.6,1.34,0.11510000000000001,0.66,0,0,0,0,4.6000000000000005,0,0,0,0,0.309,44.96,114.62,0.13,991,1.3,190,0.8 +2019,10,8,18,30,15.8,1.35,0.1165,0.66,0,0,0,0,5.4,0,0,0,0,0.309,50.09,101.9,0.13,992,1.3,191,0.8 +2019,10,8,19,30,16.1,1.33,0.12300000000000001,0.66,14,87,16,0,6.300000000000001,14,87,0,16,0.31,52.27,88.44,0.13,993,1.3,187,0.9 +2019,10,8,20,30,17.900000000000002,1.28,0.1283,0.66,68,545,205,0,7,68,545,0,205,0.312,49.03,75.39,0.13,993,1.3,156,1.5 +2019,10,8,21,30,20.1,1.24,0.1283,0.66,96,745,444,0,9.600000000000001,96,745,0,444,0.314,50.94,62.14,0.13,994,1.3,124,1.8 +2019,10,8,22,30,22.1,1.21,0.1265,0.66,112,843,664,0,10.200000000000001,112,843,0,664,0.314,46.660000000000004,49.13,0.13,994,1.4000000000000001,112,1.8 +2019,10,8,23,30,23.1,1.2,0.1268,0.66,122,897,840,0,9.5,231,578,0,693,0.314,41.93,36.87,0.13,994,1.4000000000000001,107,1.7000000000000002 +2019,10,9,0,30,25.3,0.97,0.2549,0.66,186,830,929,3,8.700000000000001,390,270,0,632,0.315,34.83,26.54,0.13,993,1.4000000000000001,94,1.6 +2019,10,9,1,30,26.5,0.97,0.2411,0.66,186,849,977,2,8,377,424,0,772,0.315,31.04,21.330000000000002,0.13,992,1.5,87,1.7000000000000002 +2019,10,9,2,30,27.200000000000003,0.97,0.2338,0.66,202,809,937,2,7.5,384,189,33,556,0.315,28.79,24.73,0.13,992,1.6,83,1.8 +2019,10,9,3,30,27.3,0.9400000000000001,0.3854,0.66,234,711,822,0,7,282,476,8,675,0.315,27.69,34.26,0.13,991,1.6,82,1.9000000000000001 +2019,10,9,4,30,26.900000000000002,0.9400000000000001,0.381,0.66,209,653,661,0,6.6000000000000005,209,653,0,661,0.316,27.48,46.230000000000004,0.13,990,1.7000000000000002,82,2.2 +2019,10,9,5,30,25.6,0.97,0.3584,0.66,168,559,455,0,6.4,168,559,0,455,0.317,29.310000000000002,59.11,0.13,991,1.7000000000000002,85,2.7 +2019,10,9,6,30,23.3,1,0.3345,0.66,115,382,231,0,6.9,115,382,0,231,0.318,34.72,72.33,0.13,991,1.7000000000000002,89,3 +2019,10,9,7,30,20.6,1.04,0.3254,0.66,29,71,35,0,8,29,71,0,35,0.32,44.35,85.51,0.13,993,1.8,94,2.9000000000000004 +2019,10,9,8,30,18.6,1.09,0.3241,0.66,0,0,0,0,9.3,0,0,0,0,0.32,54.85,98.86,0.13,994,1.8,98,2.6 +2019,10,9,9,30,17.400000000000002,1.1300000000000001,0.3271,0.66,0,0,0,3,10.4,0,0,0,0,0.32,63.300000000000004,111.67,0.13,995,1.8,100,2.2 +2019,10,9,10,30,16.6,1.1500000000000001,0.326,0.66,0,0,0,3,11,0,0,0,0,0.32,69.31,123.78,0.13,996,1.8,103,1.7000000000000002 +2019,10,9,11,30,16.1,1.1400000000000001,0.32130000000000003,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.32,72.93,134.54,0.13,996,1.8,109,1.3 +2019,10,9,12,30,16,1.12,0.31370000000000003,0.66,0,0,0,0,11.3,0,0,0,0,0.321,73.89,142.72,0.13,996,1.8,118,1 +2019,10,9,13,30,15.9,1.1,0.3114,0.66,0,0,0,3,11.3,0,0,17,0,0.321,74.23,146.32,0.13,995,1.8,123,0.9 +2019,10,9,14,30,15.8,1.08,0.3231,0.66,0,0,0,3,11.3,0,0,33,0,0.321,74.47,143.96,0.13,995,1.8,124,1 +2019,10,9,15,30,15.700000000000001,1.07,0.3215,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.322,74.57000000000001,136.58,0.13,995,1.8,126,1.1 +2019,10,9,16,30,15.5,1.06,0.31020000000000003,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.323,74.96000000000001,126.25,0.13,994,1.8,128,1.1 +2019,10,9,17,30,15.3,1.06,0.3014,0.66,0,0,0,0,11,0,0,0,0,0.324,75.5,114.36,0.13,994,1.8,131,1 +2019,10,9,18,30,15.100000000000001,1.06,0.2959,0.66,0,0,0,0,10.9,0,0,0,0,0.325,76.19,101.65,0.13,995,1.8,132,0.9 +2019,10,9,19,30,15.5,1.07,0.2831,0.66,13,31,14,0,10.9,12,11,75,12,0.326,73.97,88.22,0.13,995,1.8,132,1.3 +2019,10,9,20,30,16.7,1.08,0.2632,0.66,93,392,193,0,10.8,93,287,25,167,0.326,68.09,75.16,0.13,995,1.7000000000000002,126,2 +2019,10,9,21,30,18.400000000000002,1.1,0.23450000000000001,0.66,131,629,427,0,10.4,160,461,0,377,0.326,59.47,61.9,0.13,996,1.7000000000000002,117,2.3000000000000003 +2019,10,9,22,30,20.1,1.1,0.22260000000000002,0.66,151,752,646,0,9.8,151,752,0,646,0.325,51.51,48.88,0.13,996,1.7000000000000002,108,2.2 +2019,10,9,23,30,21,1.09,0.21280000000000002,0.66,164,818,821,2,9.4,343,308,0,590,0.325,47.29,36.57,0.13,995,1.8,103,2.1 +2019,10,10,0,30,22.900000000000002,1.08,0.265,0.66,194,816,926,3,8.9,350,444,0,748,0.325,40.87,26.19,0.13,994,1.8,90,1.8 +2019,10,10,1,30,23.6,1.06,0.2636,0.66,200,827,972,3,8.5,354,415,0,742,0.326,38.06,20.94,0.13,993,1.8,82,1.6 +2019,10,10,2,30,23.8,1.03,0.2645,0.66,197,818,942,3,8.1,264,103,33,358,0.326,36.74,24.43,0.13,993,1.9000000000000001,77,1.6 +2019,10,10,3,30,23.700000000000003,1.01,0.2545,0.66,188,787,840,0,8.1,264,612,0,771,0.325,36.87,34.06,0.13,992,2,78,1.8 +2019,10,10,4,30,23.1,0.99,0.27,0.66,181,714,676,0,8.3,181,714,0,676,0.326,38.69,46.08,0.13,991,2.1,79,2.1 +2019,10,10,5,30,22,0.96,0.2846,0.66,160,593,466,0,8.6,160,593,0,466,0.327,42.38,58.99,0.13,991,2.1,80,2.4000000000000004 +2019,10,10,6,30,20.6,0.9500000000000001,0.3064,0.66,118,389,237,0,9.1,118,389,0,237,0.327,47.79,72.22,0.13,992,2.2,81,2.5 +2019,10,10,7,30,19.1,0.96,0.3037,0.66,34,72,40,4,9.700000000000001,30,37,75,33,0.327,54.43,85.4,0.13,992,2.2,80,2.3000000000000003 +2019,10,10,8,30,17.8,0.97,0.2903,0.66,0,0,0,0,10.3,0,0,0,0,0.326,61.44,98.73,0.13,993,2.3000000000000003,80,1.9000000000000001 +2019,10,10,9,30,17,0.97,0.28040000000000004,0.66,0,0,0,3,10.8,0,0,0,0,0.326,66.67,111.52,0.13,994,2.3000000000000003,83,1.5 +2019,10,10,10,30,16.5,0.96,0.27640000000000003,0.66,0,0,0,3,11,0,0,0,0,0.325,70.09,123.59,0.13,994,2.3000000000000003,89,1.3 +2019,10,10,11,30,16.1,0.9400000000000001,0.2808,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.325,72.87,134.3,0.13,994,2.3000000000000003,95,1.3 +2019,10,10,12,30,15.8,0.92,0.28550000000000003,0.66,0,0,0,3,11.5,0,0,0,0,0.324,75.60000000000001,142.4,0.13,994,2.3000000000000003,100,1.2000000000000002 +2019,10,10,13,30,15.5,0.92,0.2785,0.66,0,0,0,7,11.8,0,0,0,0,0.323,78.55,145.95000000000002,0.13,994,2.3000000000000003,104,1 +2019,10,10,14,30,15.3,0.92,0.2646,0.66,0,0,0,3,12,0,0,33,0,0.323,80.7,143.58,0.13,993,2.2,110,0.8 +2019,10,10,15,30,14.9,0.9400000000000001,0.24700000000000003,0.66,0,0,0,3,12.100000000000001,0,0,8,0,0.324,83.22,136.24,0.13,993,2.2,115,0.7000000000000001 +2019,10,10,16,30,14.5,0.9500000000000001,0.2291,0.66,0,0,0,0,12,0,0,0,0,0.325,85.08,125.95,0.13,992,2.1,119,0.6000000000000001 +2019,10,10,17,30,14.100000000000001,0.97,0.21580000000000002,0.66,0,0,0,3,11.9,0,0,0,0,0.326,86.85000000000001,114.09,0.13,992,2.1,119,0.6000000000000001 +2019,10,10,18,30,13.8,0.99,0.2069,0.66,0,0,0,0,11.9,0,0,0,0,0.326,88.29,101.41,0.13,993,2.1,119,0.6000000000000001 +2019,10,10,19,30,14.4,1,0.2028,0.66,15,48,17,3,11.9,11,18,50,12,0.325,84.7,88,0.13,993,2.1,117,0.9 +2019,10,10,20,30,15.8,1.02,0.20040000000000002,0.66,87,442,202,0,12.100000000000001,92,333,33,179,0.324,78.62,74.93,0.13,994,2.1,111,1.4000000000000001 +2019,10,10,21,30,17.6,1.04,0.1889,0.66,120,665,436,0,11.8,134,591,0,414,0.324,69.01,61.67,0.13,994,2.1,99,1.6 +2019,10,10,22,30,19.400000000000002,1.06,0.1773,0.66,138,781,654,0,10.8,152,731,0,635,0.322,57.35,48.63,0.13,993,2,85,1.6 +2019,10,10,23,30,20.3,1.05,0.1796,0.66,152,839,828,3,9.9,341,244,0,538,0.322,51.14,36.29,0.13,993,2,78,1.5 +2019,10,11,0,30,21.8,1.06,0.3136,0.66,216,784,922,3,9.4,392,122,0,502,0.32,45.300000000000004,25.84,0.13,991,2,66,1.6 +2019,10,11,1,30,22.3,1.07,0.3004,0.66,214,806,969,3,9.1,315,32,0,345,0.32,42.89,20.56,0.13,990,2,62,1.7000000000000002 +2019,10,11,2,30,22.5,1.06,0.28140000000000004,0.66,204,808,941,2,8.8,442,156,33,584,0.321,41.63,24.14,0.13,990,2.1,62,1.8 +2019,10,11,3,30,22.3,1.05,0.2657,0.66,193,782,842,7,8.8,372,364,0,674,0.322,41.980000000000004,33.86,0.13,989,2.1,67,1.9000000000000001 +2019,10,11,4,30,21.5,1.04,0.26930000000000004,0.66,178,719,678,7,8.9,47,0,0,47,0.324,44.38,45.94,0.13,988,2.2,72,2.1 +2019,10,11,5,30,20.5,1.02,0.2735,0.66,158,602,469,7,9.200000000000001,113,5,0,116,0.326,48.19,58.870000000000005,0.13,988,2.3000000000000003,76,2.2 +2019,10,11,6,30,19.200000000000003,1.02,0.3065,0.66,118,391,238,7,9.700000000000001,115,99,33,145,0.327,53.97,72.11,0.13,989,2.4000000000000004,77,2.2 +2019,10,11,7,30,17.900000000000002,1.01,0.3161,0.66,35,72,41,7,10.3,25,15,100,26,0.328,61.11,85.29,0.13,990,2.4000000000000004,77,2 +2019,10,11,8,30,16.8,0.98,0.3098,0.66,0,0,0,7,11,0,0,0,0,0.329,68.60000000000001,98.60000000000001,0.13,990,2.5,77,1.7000000000000002 +2019,10,11,9,30,16.2,0.96,0.2963,0.66,0,0,0,7,11.700000000000001,0,0,0,0,0.329,74.58,111.37,0.13,990,2.6,79,1.5 +2019,10,11,10,30,15.8,0.9400000000000001,0.2659,0.66,0,0,0,7,12.3,0,0,0,0,0.328,79.72,123.41,0.13,990,2.6,92,1.3 +2019,10,11,11,30,15.4,0.91,0.23170000000000002,0.66,0,0,0,7,12.8,0,0,0,0,0.326,84.64,134.05,0.13,990,2.7,135,1 +2019,10,11,12,30,15,0.87,0.2184,0.66,0,0,0,7,13.200000000000001,0,0,0,0,0.324,89.21000000000001,142.08,0.13,991,2.7,172,0.8 +2019,10,11,13,30,14.4,0.87,0.22560000000000002,0.66,0,0,0,3,13.4,0,0,0,0,0.324,94.02,145.57,0.13,991,2.7,165,0.8 +2019,10,11,14,30,14,0.91,0.2215,0.66,0,0,0,3,13.4,0,0,67,0,0.326,96.01,143.20000000000002,0.13,990,2.6,143,0.9 +2019,10,11,15,30,13.700000000000001,1.01,0.21400000000000002,0.66,0,0,0,6,13.3,0,0,0,0,0.329,97.45,135.9,0.13,990,2.5,131,0.9 +2019,10,11,16,30,13.600000000000001,1.04,0.2371,0.66,0,0,0,9,13.200000000000001,0,0,0,0,0.332,97.42,125.65,0.13,989,2.5,123,1 +2019,10,11,17,30,13.5,1.04,0.27290000000000003,0.66,0,0,0,9,13.100000000000001,0,0,0,0,0.333,97.26,113.82000000000001,0.13,989,2.5,113,1.1 +2019,10,11,18,30,13.5,1.04,0.3059,0.66,0,0,0,9,13.100000000000001,0,0,0,0,0.334,97.15,101.16,0.13,989,2.5,98,1.3 +2019,10,11,19,30,13.700000000000001,1.03,0.29100000000000004,0.66,16,33,17,6,13,13,17,67,14,0.333,95.78,87.79,0.13,988,2.5,87,1.5 +2019,10,11,20,30,14.200000000000001,0.99,0.2585,0.66,97,376,196,7,13.3,97,116,33,128,0.332,94.23,74.71000000000001,0.13,988,2.6,107,1.4000000000000001 +2019,10,11,21,30,14.700000000000001,0.99,0.256,0.66,140,593,424,4,13.700000000000001,46,0,0,46,0.331,93.87,61.43,0.13,989,2.7,153,1.4000000000000001 +2019,10,11,22,30,14.9,1.02,0.23950000000000002,0.66,160,720,638,4,13.600000000000001,60,0,0,60,0.332,91.74,48.38,0.13,989,2.7,188,1.8 +2019,10,11,23,30,14.9,1.06,0.2275,0.66,172,791,812,7,13,166,6,0,171,0.333,88.43,36,0.13,989,2.7,200,2 +2019,10,12,0,30,15.200000000000001,1.1300000000000001,0.2076,0.66,165,855,937,7,12,71,0,17,71,0.336,81.21000000000001,25.5,0.13,989,2.3000000000000003,198,2.3000000000000003 +2019,10,12,1,30,16.1,1.2,0.17020000000000002,0.66,147,901,993,7,11.200000000000001,362,381,0,720,0.337,72.52,20.18,0.13,989,2.1,191,2.3000000000000003 +2019,10,12,2,30,17.6,1.26,0.125,0.66,126,931,977,0,10.4,126,931,33,977,0.337,62.51,23.85,0.13,988,1.8,184,2.2 +2019,10,12,3,30,18.900000000000002,1.29,0.0945,0.66,108,932,884,0,9.5,108,932,0,884,0.335,54.42,33.660000000000004,0.13,987,1.7000000000000002,179,1.9000000000000001 +2019,10,12,4,30,19.700000000000003,1.31,0.0787,0.66,95,899,722,0,8.8,95,899,0,722,0.332,49.45,45.79,0.13,987,1.7000000000000002,176,1.7000000000000002 +2019,10,12,5,30,19.8,1.31,0.0757,0.66,83,823,510,0,8.200000000000001,83,823,0,510,0.33,47.12,58.75,0.13,987,1.7000000000000002,173,1.5 +2019,10,12,6,30,19,1.3,0.07740000000000001,0.66,65,671,272,0,7.7,65,671,0,272,0.329,48.01,72,0.13,987,1.7000000000000002,159,1.1 +2019,10,12,7,30,17,1.33,0.0761,0.66,29,298,54,0,9.4,29,298,0,54,0.328,60.870000000000005,85.18,0.13,988,1.7000000000000002,134,0.8 +2019,10,12,8,30,15.100000000000001,1.35,0.07590000000000001,0.66,0,0,0,0,10.4,0,0,0,0,0.326,73.28,98.48,0.13,988,1.7000000000000002,123,0.7000000000000001 +2019,10,12,9,30,14,1.35,0.07830000000000001,0.66,0,0,0,0,10.4,0,0,0,0,0.324,78.77,111.22,0.13,989,1.6,130,0.7000000000000001 +2019,10,12,10,30,13.3,1.36,0.0823,0.66,0,0,0,0,10.5,0,0,0,0,0.323,83.31,123.21000000000001,0.13,990,1.6,142,0.7000000000000001 +2019,10,12,11,30,12.700000000000001,1.36,0.0874,0.66,0,0,0,0,10.700000000000001,0,0,0,0,0.321,87.52,133.81,0.13,990,1.6,155,0.7000000000000001 +2019,10,12,12,30,12.100000000000001,1.37,0.0926,0.66,0,0,0,0,10.8,0,0,0,0,0.32,91.64,141.77,0.13,990,1.6,166,0.8 +2019,10,12,13,30,11.600000000000001,1.3800000000000001,0.0964,0.66,0,0,0,0,10.9,0,0,0,0,0.318,95.33,145.20000000000002,0.13,990,1.5,174,0.8 +2019,10,12,14,30,11.200000000000001,1.4000000000000001,0.0981,0.66,0,0,0,0,10.9,0,0,67,0,0.317,98.33,142.83,0.13,990,1.5,179,0.8 +2019,10,12,15,30,10.8,1.41,0.1,0.66,0,0,0,0,10.8,0,0,0,0,0.317,100,135.57,0.13,990,1.5,183,0.8 +2019,10,12,16,30,10.5,1.42,0.1018,0.66,0,0,0,0,10.5,0,0,0,0,0.316,100,125.35000000000001,0.13,990,1.5,187,0.8 +2019,10,12,17,30,10.200000000000001,1.43,0.1029,0.66,0,0,0,0,10.200000000000001,0,0,0,0,0.315,100,113.56,0.13,991,1.5,190,0.8 +2019,10,12,18,30,10.100000000000001,1.43,0.1023,0.66,0,0,0,0,10.100000000000001,0,0,0,0,0.313,100,100.92,0.13,991,1.5,193,0.8 +2019,10,12,19,30,11.200000000000001,1.42,0.0983,0.66,18,143,24,0,10.9,18,143,0,24,0.312,98.21000000000001,87.57000000000001,0.13,992,1.5,195,1.1 +2019,10,12,20,30,13.9,1.41,0.09090000000000001,0.66,61,619,227,0,11,61,619,0,227,0.31,82.59,74.48,0.13,993,1.5,189,1.7000000000000002 +2019,10,12,21,30,17,1.41,0.0814,0.66,81,810,471,0,10.8,81,810,0,471,0.309,66.81,61.21,0.13,993,1.4000000000000001,178,1.9000000000000001 +2019,10,12,22,30,19.900000000000002,1.41,0.07200000000000001,0.66,89,906,694,0,10,89,906,0,694,0.307,52.71,48.14,0.13,994,1.4000000000000001,175,1.8 +2019,10,12,23,30,21.1,1.3900000000000001,0.0641,0.66,94,957,871,0,9,94,957,0,871,0.306,45.95,35.72,0.13,993,1.4000000000000001,176,1.6 +2019,10,13,0,30,23.8,1.24,0.0718,0.66,104,973,985,0,8.1,104,973,0,985,0.306,36.76,25.16,0.13,993,1.4000000000000001,155,1.2000000000000002 +2019,10,13,1,30,24.900000000000002,1.21,0.07200000000000001,0.66,106,979,1027,0,7.4,106,979,0,1027,0.305,32.74,19.8,0.13,992,1.5,131,1.1 +2019,10,13,2,30,25.6,1.19,0.0734,0.66,109,968,996,0,6.9,168,825,33,924,0.304,30.39,23.56,0.13,991,1.5,115,1.2000000000000002 +2019,10,13,3,30,25.900000000000002,1.06,0.0867,0.66,110,935,890,0,6.800000000000001,110,935,0,890,0.302,29.55,33.47,0.13,991,1.6,107,1.5 +2019,10,13,4,30,25.6,1.03,0.091,0.66,103,885,722,0,6.800000000000001,103,885,0,722,0.301,30.11,45.65,0.13,990,1.7000000000000002,100,1.7000000000000002 +2019,10,13,5,30,24.700000000000003,1.02,0.0949,0.66,92,800,508,0,7,92,800,0,508,0.3,32.2,58.64,0.13,991,1.7000000000000002,95,2 +2019,10,13,6,30,23.1,1.03,0.0969,0.66,70,639,269,0,7.5,70,639,0,269,0.299,36.71,71.89,0.13,991,1.8,93,2.2 +2019,10,13,7,30,20.5,1.04,0.09290000000000001,0.66,32,258,54,0,9.1,32,258,0,54,0.299,48.03,85.07000000000001,0.13,992,1.9000000000000001,93,1.8 +2019,10,13,8,30,18.3,1.01,0.0922,0.66,0,0,0,0,11.100000000000001,0,0,0,0,0.299,62.77,98.35000000000001,0.13,993,1.9000000000000001,93,1.4000000000000001 +2019,10,13,9,30,17,0.96,0.09480000000000001,0.66,0,0,0,0,12.100000000000001,0,0,0,0,0.299,72.87,111.07000000000001,0.13,994,2,97,1.1 +2019,10,13,10,30,16.1,0.93,0.0985,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.299,80.17,123.02,0.13,994,2,104,0.9 +2019,10,13,11,30,15.4,0.91,0.101,0.66,0,0,0,0,12.9,0,0,0,0,0.298,84.97,133.56,0.13,995,2,113,0.7000000000000001 +2019,10,13,12,30,14.9,0.9,0.10350000000000001,0.66,0,0,0,0,12.9,0,0,0,0,0.298,87.74,141.45000000000002,0.13,995,2.1,123,0.6000000000000001 +2019,10,13,13,30,14.3,0.88,0.1077,0.66,0,0,0,0,12.9,0,0,0,0,0.298,91.03,144.83,0.13,995,2.1,133,0.7000000000000001 +2019,10,13,14,30,13.8,0.86,0.11320000000000001,0.66,0,0,0,0,12.8,0,0,33,0,0.298,93.60000000000001,142.45000000000002,0.13,994,2.1,136,0.7000000000000001 +2019,10,13,15,30,13.600000000000001,0.85,0.1183,0.66,0,0,0,0,12.8,0,0,0,0,0.298,94.61,135.23,0.13,994,2.2,132,0.6000000000000001 +2019,10,13,16,30,13.4,0.86,0.12140000000000001,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.299,95.78,125.06,0.13,994,2.2,126,0.6000000000000001 +2019,10,13,17,30,13.3,0.86,0.12380000000000001,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.299,96.33,113.3,0.13,994,2.3000000000000003,123,0.6000000000000001 +2019,10,13,18,30,13.3,0.89,0.1307,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.299,96.16,100.68,0.13,994,2.4000000000000004,123,0.5 +2019,10,13,19,30,14,0.92,0.1394,0.66,19,84,23,0,12.600000000000001,19,84,0,23,0.298,91.54,87.36,0.13,994,2.5,128,0.5 +2019,10,13,20,30,16.2,0.92,0.1454,0.66,78,500,214,0,12.8,78,500,0,214,0.297,80.06,74.26,0.13,995,2.5,90,0.6000000000000001 +2019,10,13,21,30,18.8,0.88,0.15480000000000002,0.66,112,689,446,0,12.9,112,689,0,446,0.297,68.68,60.980000000000004,0.13,995,2.5,34,0.9 +2019,10,13,22,30,21.1,0.8300000000000001,0.156,0.66,130,794,662,0,12.700000000000001,130,794,0,662,0.296,58.63,47.9,0.13,995,2.5,189,1.1 +2019,10,13,23,30,22.1,0.8,0.14730000000000001,0.66,138,855,835,0,12.3,160,799,0,811,0.297,53.96,35.45,0.13,994,2.4000000000000004,360,1.1 +2019,10,14,0,30,25,0.76,0.17250000000000001,0.66,154,870,944,0,11.9,154,870,0,944,0.298,43.99,24.82,0.13,993,2.4000000000000004,338,1 +2019,10,14,1,30,26.6,0.8200000000000001,0.1534,0.66,152,888,989,0,11.3,152,888,0,989,0.299,38.45,19.43,0.13,992,2.4000000000000004,326,0.9 +2019,10,14,2,30,27.8,0.76,0.1626,0.66,161,863,954,0,10.700000000000001,161,863,33,954,0.299,34.37,23.27,0.13,990,2.5,319,0.8 +2019,10,14,3,30,28.5,0.66,0.20800000000000002,0.66,166,814,847,0,10.3,166,814,0,847,0.299,32.3,33.28,0.13,989,2.6,324,0.8 +2019,10,14,4,30,28.5,0.75,0.191,0.66,144,776,688,0,10.3,144,776,0,688,0.298,32.11,45.51,0.13,988,2.6,336,0.8 +2019,10,14,5,30,27.900000000000002,0.85,0.17070000000000002,0.66,118,700,484,0,10.3,118,700,0,484,0.298,33.34,58.52,0.13,988,2.7,186,0.8 +2019,10,14,6,30,26.200000000000003,0.92,0.1583,0.66,86,541,255,0,10.700000000000001,86,541,0,255,0.298,37.76,71.78,0.13,988,2.7,41,1.2000000000000002 +2019,10,14,7,30,23.400000000000002,0.9500000000000001,0.1458,0.66,34,180,50,0,13.100000000000001,34,180,0,50,0.298,52.230000000000004,84.96000000000001,0.13,989,2.7,54,1.5 +2019,10,14,8,30,20.900000000000002,0.9400000000000001,0.1434,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.298,65.1,98.22,0.13,989,2.7,53,1.5 +2019,10,14,9,30,19.700000000000003,0.93,0.1406,0.66,0,0,0,0,14.5,0,0,0,0,0.298,71.82000000000001,110.91,0.13,990,2.7,50,1.4000000000000001 +2019,10,14,10,30,18.7,0.9500000000000001,0.13920000000000002,0.66,0,0,0,0,14.9,0,0,0,0,0.297,78.63,122.83,0.13,990,2.6,48,1.1 +2019,10,14,11,30,18,0.97,0.1496,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.295,83.52,133.31,0.13,990,2.7,46,0.9 +2019,10,14,12,30,17.5,0.99,0.1705,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.294,86.49,141.13,0.13,990,2.7,47,0.8 +2019,10,14,13,30,17.1,0.98,0.1864,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.293,88.59,144.46,0.13,989,2.8000000000000003,51,0.8 +2019,10,14,14,30,16.7,0.9500000000000001,0.1948,0.66,0,0,0,7,15.200000000000001,0,0,33,0,0.293,90.69,142.08,0.13,989,2.8000000000000003,51,0.7000000000000001 +2019,10,14,15,30,16.400000000000002,0.92,0.2044,0.66,0,0,0,7,15.200000000000001,0,0,0,0,0.293,92.64,134.9,0.13,989,2.8000000000000003,51,0.7000000000000001 +2019,10,14,16,30,16,0.92,0.2199,0.66,0,0,0,7,15.3,0,0,0,0,0.293,95.49,124.77,0.13,989,2.8000000000000003,48,0.7000000000000001 +2019,10,14,17,30,15.700000000000001,0.93,0.23700000000000002,0.66,0,0,0,4,15.4,0,0,0,0,0.294,97.81,113.04,0.13,989,2.8000000000000003,37,0.7000000000000001 +2019,10,14,18,30,15.600000000000001,0.9500000000000001,0.24650000000000002,0.66,0,0,0,0,15.4,0,0,0,0,0.295,98.86,100.44,0.13,989,2.6,29,0.7000000000000001 +2019,10,14,19,30,16.3,1,0.231,0.66,19,62,22,0,15.5,19,62,0,22,0.295,95.12,87.15,0.13,990,2.4000000000000004,28,1 +2019,10,14,20,30,17.900000000000002,1.05,0.2036,0.66,88,459,214,0,15.8,91,396,0,200,0.296,87.75,74.05,0.13,990,2.3000000000000003,17,1.5 +2019,10,14,21,30,19.900000000000002,1.07,0.19210000000000002,0.66,121,672,449,3,15.9,162,265,0,291,0.296,77.8,60.76,0.13,990,2.2,179,1.8 +2019,10,14,22,30,22.200000000000003,1.07,0.1835,0.66,138,786,667,3,15.600000000000001,316,177,0,435,0.296,66.05,47.660000000000004,0.13,990,2.1,352,1.9000000000000001 +2019,10,14,23,30,23.400000000000002,1.07,0.1696,0.66,146,852,842,3,15.100000000000001,384,147,0,504,0.297,59.67,35.18,0.13,989,2.1,350,1.9000000000000001 +2019,10,15,0,30,26.700000000000003,1.1,0.1321,0.66,132,911,961,0,14.700000000000001,184,775,0,889,0.297,47.6,24.490000000000002,0.13,988,2.2,176,1.7000000000000002 +2019,10,15,1,30,28.400000000000002,1.11,0.1237,0.66,131,925,1005,0,14,131,925,0,1005,0.298,41.43,19.05,0.13,987,2.2,8,1.5 +2019,10,15,2,30,29.5,1.1,0.11860000000000001,0.66,134,908,970,0,13.4,134,908,33,970,0.298,37.35,22.990000000000002,0.13,986,2.3000000000000003,27,1.4000000000000001 +2019,10,15,3,30,30,0.99,0.15910000000000002,0.66,141,859,861,0,13,141,859,0,861,0.299,35.22,33.09,0.13,985,2.4000000000000004,46,1.5 +2019,10,15,4,30,29.900000000000002,0.97,0.1602,0.66,132,806,698,0,12.700000000000001,148,758,8,681,0.3,34.87,45.37,0.13,985,2.4000000000000004,62,1.8 +2019,10,15,5,30,29,0.96,0.1613,0.66,115,712,488,0,12.700000000000001,115,712,0,488,0.301,36.74,58.4,0.13,985,2.5,70,2.2 +2019,10,15,6,30,27,0.9500000000000001,0.16290000000000002,0.66,87,535,255,0,13.200000000000001,87,535,0,255,0.302,42.69,71.66,0.13,986,2.6,72,2.6 +2019,10,15,7,30,24.200000000000003,0.93,0.1635,0.66,35,164,50,0,14.700000000000001,35,164,0,50,0.304,55.480000000000004,84.84,0.13,986,2.7,71,2.5 +2019,10,15,8,30,21.900000000000002,0.89,0.1694,0.66,0,0,0,0,16.3,0,0,0,0,0.305,70.49,98.09,0.13,987,2.7,70,2.2 +2019,10,15,9,30,20.6,0.85,0.18000000000000002,0.66,0,0,0,0,17.2,0,0,0,0,0.305,80.67,110.75,0.13,989,2.8000000000000003,69,1.7000000000000002 +2019,10,15,10,30,19.8,0.8300000000000001,0.1877,0.66,0,0,0,0,17.6,0,0,0,0,0.304,87.06,122.63,0.13,989,2.8000000000000003,66,1.2000000000000002 +2019,10,15,11,30,19.3,0.81,0.1894,0.66,0,0,0,0,17.8,0,0,0,0,0.304,91.14,133.06,0.13,990,2.9000000000000004,58,0.9 +2019,10,15,12,30,18.900000000000002,0.8,0.1905,0.66,0,0,0,0,17.900000000000002,0,0,0,0,0.304,93.99,140.81,0.13,990,2.8000000000000003,47,0.7000000000000001 +2019,10,15,13,30,18.5,0.81,0.1895,0.66,0,0,0,0,17.900000000000002,0,0,0,0,0.304,96.4,144.09,0.13,989,2.8000000000000003,37,0.6000000000000001 +2019,10,15,14,30,18.1,0.8300000000000001,0.1874,0.66,0,0,0,0,17.900000000000002,0,0,33,0,0.304,98.91,141.71,0.13,989,2.8000000000000003,32,0.6000000000000001 +2019,10,15,15,30,17.8,0.85,0.18710000000000002,0.66,0,0,0,0,17.8,0,0,0,0,0.304,100,134.57,0.13,989,2.8000000000000003,34,0.6000000000000001 +2019,10,15,16,30,17.5,0.87,0.1864,0.66,0,0,0,0,17.5,0,0,0,0,0.304,100,124.48,0.13,990,2.8000000000000003,33,0.6000000000000001 +2019,10,15,17,30,17.2,0.9,0.1845,0.66,0,0,0,0,17.2,0,0,0,0,0.304,100,112.78,0.13,990,2.7,26,0.6000000000000001 +2019,10,15,18,30,17,0.93,0.18180000000000002,0.66,0,0,0,0,17,0,0,0,0,0.304,100,100.21000000000001,0.13,991,2.7,15,0.7000000000000001 +2019,10,15,19,30,17.900000000000002,0.96,0.1754,0.66,21,86,26,0,17.8,21,86,0,26,0.303,99.17,86.94,0.13,991,2.6,185,1 +2019,10,15,20,30,20.200000000000003,0.98,0.1638,0.66,81,500,220,0,17.8,81,500,0,220,0.302,86.25,73.84,0.13,992,2.5,356,1.7000000000000002 +2019,10,15,21,30,22.900000000000002,1.01,0.151,0.66,107,708,455,0,17.8,126,535,0,389,0.302,73.06,60.550000000000004,0.13,992,2.5,354,2.1 +2019,10,15,22,30,25.5,1.06,0.1373,0.66,117,820,672,0,17.400000000000002,117,820,0,672,0.302,60.88,47.43,0.13,992,2.5,178,2.1 +2019,10,15,23,30,26.700000000000003,1.09,0.1254,0.66,125,881,847,0,16.8,125,881,0,847,0.302,54.49,34.92,0.13,991,2.4000000000000004,0,2.1 +2019,10,16,0,30,29.700000000000003,1.04,0.1265,0.66,130,909,959,0,16.1,130,909,0,959,0.302,43.94,24.16,0.13,990,2.4000000000000004,7,2 +2019,10,16,1,30,31.1,1.05,0.1192,0.66,129,922,1002,0,15.5,129,922,0,1002,0.302,39.07,18.68,0.13,989,2.5,12,2.1 +2019,10,16,2,30,31.900000000000002,1.07,0.1139,0.66,127,916,972,0,15,127,916,33,972,0.302,36.03,22.71,0.13,988,2.5,18,2.1 +2019,10,16,3,30,32.1,1,0.1202,0.66,124,887,869,0,14.700000000000001,124,887,0,869,0.302,34.86,32.910000000000004,0.13,987,2.6,22,2.3000000000000003 +2019,10,16,4,30,31.700000000000003,1,0.12090000000000001,0.66,115,839,706,0,14.5,115,839,0,706,0.301,35.29,45.24,0.13,987,2.6,26,2.4000000000000004 +2019,10,16,5,30,30.8,0.99,0.1216,0.66,101,753,497,0,14.5,101,753,0,497,0.3,37.21,58.28,0.13,987,2.6,29,2.6 +2019,10,16,6,30,29.1,0.97,0.1206,0.66,77,592,264,0,14.8,77,592,0,264,0.299,41.87,71.55,0.13,987,2.6,32,2.4000000000000004 +2019,10,16,7,30,26.5,0.97,0.11800000000000001,0.66,33,224,54,0,16,33,224,0,54,0.298,52.620000000000005,84.73,0.13,988,2.6,37,1.9000000000000001 +2019,10,16,8,30,24.1,0.96,0.11560000000000001,0.66,0,0,0,0,17.400000000000002,0,0,0,0,0.298,66.12,97.95,0.13,988,2.6,36,1.6 +2019,10,16,9,30,22.900000000000002,0.9500000000000001,0.11370000000000001,0.66,0,0,0,0,17.8,0,0,0,0,0.297,73.02,110.59,0.13,989,2.6,28,1.4000000000000001 +2019,10,16,10,30,22,0.92,0.1115,0.66,0,0,0,0,17.8,0,0,0,0,0.296,77.04,122.43,0.13,989,2.6,16,1.2000000000000002 +2019,10,16,11,30,21.3,0.88,0.1102,0.66,0,0,0,0,17.6,0,0,0,0,0.295,79.44,132.81,0.13,990,2.6,183,1.1 +2019,10,16,12,30,20.5,0.85,0.11220000000000001,0.66,0,0,0,0,17.3,0,0,0,0,0.295,82.11,140.5,0.13,990,2.7,356,1 +2019,10,16,13,30,19.900000000000002,0.86,0.1213,0.66,0,0,0,0,17.1,0,0,0,0,0.294,83.91,143.72,0.13,989,2.7,352,1.1 +2019,10,16,14,30,19.200000000000003,0.85,0.1206,0.66,0,0,0,0,17,0,0,33,0,0.294,87,141.35,0.13,988,2.7,351,1.1 +2019,10,16,15,30,18.6,0.85,0.1252,0.66,0,0,0,0,16.900000000000002,0,0,0,0,0.293,90.09,134.24,0.13,988,2.7,352,1 +2019,10,16,16,30,18.2,0.88,0.14170000000000002,0.66,0,0,0,0,16.900000000000002,0,0,0,0,0.291,92.22,124.19,0.13,988,2.8000000000000003,348,0.9 +2019,10,16,17,30,18,0.93,0.18230000000000002,0.66,0,0,0,0,16.900000000000002,0,0,0,0,0.291,93.45,112.53,0.13,989,2.9000000000000004,344,0.8 +2019,10,16,18,30,18.1,0.9500000000000001,0.21910000000000002,0.66,0,0,0,7,16.900000000000002,0,0,0,0,0.291,92.92,99.98,0.13,989,3,339,0.8 +2019,10,16,19,30,18.900000000000002,0.97,0.2411,0.66,24,56,27,0,17,24,56,33,27,0.291,88.59,86.74,0.13,990,3.1,336,1.1 +2019,10,16,20,30,20.200000000000003,0.99,0.2579,0.66,101,394,212,3,17,73,125,33,108,0.291,82.11,73.63,0.13,990,3.2,336,1.8 +2019,10,16,21,30,22.1,1,0.2514,0.66,136,612,439,7,17,147,556,33,422,0.292,73,60.34,0.13,990,3.2,338,2.3000000000000003 +2019,10,16,22,30,24.700000000000003,1.02,0.2063,0.66,141,760,657,7,16.8,226,531,0,587,0.293,61.480000000000004,47.2,0.13,990,3.2,337,2.5 +2019,10,16,23,30,26.3,1.03,0.1555,0.66,139,844,833,0,16.400000000000002,233,628,0,750,0.294,54.59,34.660000000000004,0.13,990,3.1,336,2.5 +2019,10,17,0,30,30.5,1.22,0.1145,0.66,123,907,953,0,15.9,123,907,0,953,0.295,41.36,23.84,0.13,988,3.1,328,2.6 +2019,10,17,1,30,32.300000000000004,1.29,0.11220000000000001,0.66,123,917,994,0,15.4,123,917,0,994,0.296,36.21,18.31,0.13,987,3.2,327,2.8000000000000003 +2019,10,17,2,30,33.6,1.34,0.11230000000000001,0.66,125,905,962,0,15,125,905,33,962,0.296,32.79,22.43,0.13,986,3.2,328,2.9000000000000004 +2019,10,17,3,30,34.1,1.1300000000000001,0.1287,0.66,125,872,859,0,14.700000000000001,125,872,0,859,0.296,31.23,32.72,0.13,984,3.2,328,2.9000000000000004 +2019,10,17,4,30,34,1.11,0.12840000000000001,0.66,118,822,698,0,14.600000000000001,118,822,0,698,0.297,31.12,45.1,0.13,983,3.2,329,2.9000000000000004 +2019,10,17,5,30,33,1.1,0.13620000000000002,0.66,108,723,489,7,14.700000000000001,172,467,0,418,0.297,33.22,58.17,0.13,983,3.3000000000000003,331,2.5 +2019,10,17,6,30,30.400000000000002,1.06,0.15330000000000002,0.66,90,519,255,6,15.5,40,4,0,41,0.295,40.49,71.44,0.13,983,3.8000000000000003,306,1.9000000000000001 +2019,10,17,7,30,26.8,0.97,0.19940000000000002,0.66,38,129,50,7,18.1,5,0,100,5,0.292,58.81,84.61,0.13,985,4.5,290,1.5 +2019,10,17,8,30,24.1,0.93,0.25630000000000003,0.66,0,0,0,7,19.900000000000002,0,0,0,0,0.29,77.35000000000001,97.82000000000001,0.13,987,4.7,320,1.6 +2019,10,17,9,30,23,0.97,0.2194,0.66,0,0,0,0,20.6,0,0,0,0,0.291,86.33,110.43,0.13,988,4.3,341,1.4000000000000001 +2019,10,17,10,30,22.6,0.9400000000000001,0.1776,0.66,0,0,0,0,20.8,0,0,0,0,0.292,89.38,122.24000000000001,0.13,989,3.9000000000000004,334,1.1 +2019,10,17,11,30,22.200000000000003,0.88,0.1636,0.66,0,0,0,0,20.700000000000003,0,0,0,0,0.293,91.45,132.55,0.13,990,3.5,317,0.9 +2019,10,17,12,30,21.6,0.87,0.1514,0.66,0,0,0,0,20.3,0,0,0,0,0.293,92.60000000000001,140.18,0.13,990,3.1,296,0.8 +2019,10,17,13,30,21.1,0.86,0.1365,0.66,0,0,0,0,19.8,0,0,0,0,0.293,92.28,143.36,0.13,990,2.7,275,0.8 +2019,10,17,14,30,20.5,0.86,0.1253,0.66,0,0,0,0,19.1,0,0,33,0,0.293,91.46000000000001,140.99,0.13,989,2.4000000000000004,258,0.8 +2019,10,17,15,30,19.700000000000003,0.86,0.1188,0.66,0,0,0,0,18,0,0,0,0,0.293,89.87,133.92000000000002,0.13,989,2.1,246,0.8 +2019,10,17,16,30,18.900000000000002,0.87,0.11520000000000001,0.66,0,0,0,0,16.7,0,0,0,0,0.294,86.85000000000001,123.91,0.13,989,1.9000000000000001,237,0.7000000000000001 +2019,10,17,17,30,18.1,0.89,0.11320000000000001,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.294,83.21000000000001,112.28,0.13,990,1.8,227,0.8 +2019,10,17,18,30,17.400000000000002,0.91,0.1131,0.66,0,0,0,0,13.8,0,0,0,0,0.294,79.54,99.75,0.13,991,1.8,216,0.8 +2019,10,17,19,30,17.900000000000002,0.91,0.11510000000000001,0.66,25,152,34,0,12.8,25,152,0,34,0.293,72.08,86.53,0.13,992,1.8,204,0.8 +2019,10,17,20,30,20.1,0.9,0.117,0.66,73,575,237,0,12.100000000000001,73,575,0,237,0.293,60.2,73.42,0.13,992,1.8,169,1.1 +2019,10,17,21,30,22.700000000000003,0.89,0.1183,0.66,98,755,474,0,8.9,169,395,0,366,0.293,41.29,60.13,0.13,993,1.9000000000000001,131,1.4000000000000001 +2019,10,17,22,30,25.1,0.89,0.1194,0.66,114,847,692,0,6.800000000000001,187,646,0,628,0.294,31.01,46.980000000000004,0.13,993,1.9000000000000001,109,1.3 +2019,10,17,23,30,26.200000000000003,0.9,0.1192,0.66,123,899,865,0,6.4,173,806,0,838,0.294,28.21,34.4,0.13,994,1.9000000000000001,99,1.2000000000000002 +2019,10,18,0,30,28.5,0.77,0.1568,0.66,150,895,971,0,6.6000000000000005,231,751,0,920,0.295,25.1,23.52,0.13,993,1.9000000000000001,72,1.4000000000000001 +2019,10,18,1,30,29.5,0.77,0.1531,0.66,152,904,1012,0,7.1000000000000005,152,904,0,1012,0.296,24.53,17.94,0.13,992,1.9000000000000001,62,1.7000000000000002 +2019,10,18,2,30,29.900000000000002,0.78,0.1563,0.66,156,887,977,0,7.800000000000001,209,762,33,915,0.296,25.05,22.16,0.13,991,2.1,58,1.9000000000000001 +2019,10,18,3,30,29.900000000000002,0.76,0.1781,0.66,157,846,870,0,8.4,157,846,0,870,0.295,26.080000000000002,32.54,0.13,990,2.2,56,1.9000000000000001 +2019,10,18,4,30,29.400000000000002,0.75,0.1817,0.66,146,791,706,0,8.8,146,791,0,706,0.294,27.560000000000002,44.96,0.13,989,2.2,58,2 +2019,10,18,5,30,28.3,0.75,0.17800000000000002,0.66,126,702,497,0,9.1,126,702,0,497,0.294,30.150000000000002,58.050000000000004,0.13,989,2.2,66,2.1 +2019,10,18,6,30,26.400000000000002,0.76,0.17220000000000002,0.66,95,532,265,0,9.700000000000001,95,532,0,265,0.293,34.910000000000004,71.32000000000001,0.13,989,2.2,73,2.1 +2019,10,18,7,30,23.700000000000003,0.74,0.1675,0.66,39,166,55,0,11.100000000000001,39,166,0,55,0.294,45.17,84.49,0.13,990,2.2,79,1.7000000000000002 +2019,10,18,8,30,21.400000000000002,0.72,0.1676,0.66,0,0,0,0,12.5,0,0,0,0,0.294,56.72,97.68,0.13,992,2.2,83,1.3 +2019,10,18,9,30,20.1,0.68,0.1693,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.294,64,110.27,0.13,993,2.1,83,1 +2019,10,18,10,30,19,0.65,0.17200000000000001,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.294,71.3,122.03,0.13,994,2.1,80,0.8 +2019,10,18,11,30,18.2,0.62,0.17400000000000002,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.295,76.87,132.3,0.13,994,2,79,0.7000000000000001 +2019,10,18,12,30,17.5,0.61,0.1746,0.66,0,0,0,0,14.3,0,0,0,0,0.295,81.5,139.86,0.13,994,2,80,0.6000000000000001 +2019,10,18,13,30,17,0.6,0.1767,0.66,0,0,0,0,14.4,0,0,0,0,0.295,84.61,143,0.13,993,2,83,0.6000000000000001 +2019,10,18,14,30,16.7,0.6,0.1829,0.66,0,0,0,0,14.4,0,0,33,0,0.295,86.46000000000001,140.63,0.13,993,2,82,0.6000000000000001 +2019,10,18,15,30,16.5,0.6,0.1892,0.66,0,0,0,3,14.5,0,0,0,0,0.295,87.75,133.59,0.13,993,2.1,77,0.6000000000000001 +2019,10,18,16,30,16.400000000000002,0.61,0.19290000000000002,0.66,0,0,0,0,14.5,0,0,0,0,0.295,88.51,123.63000000000001,0.13,992,2.1,71,0.6000000000000001 +2019,10,18,17,30,16.5,0.62,0.19590000000000002,0.66,0,0,0,3,14.600000000000001,0,0,0,0,0.295,88.38,112.03,0.13,992,2.1,73,0.6000000000000001 +2019,10,18,18,30,16.6,0.63,0.19820000000000002,0.66,0,0,0,0,14.700000000000001,0,0,0,0,0.296,88.44,99.53,0.13,993,2.1,91,0.5 +2019,10,18,19,30,17.2,0.64,0.20020000000000002,0.66,27,73,32,3,14.8,11,0,100,11,0.296,85.60000000000001,86.33,0.13,993,2.2,118,0.4 +2019,10,18,20,30,19.3,0.65,0.2023,0.66,98,447,227,3,15,88,35,0,98,0.297,76.21000000000001,73.22,0.13,993,2.3000000000000003,78,0.5 +2019,10,18,21,30,22.1,0.66,0.20720000000000002,0.66,136,639,456,3,15.3,211,113,0,268,0.298,65.2,59.92,0.13,993,2.4000000000000004,186,0.7000000000000001 +2019,10,18,22,30,24.6,0.66,0.21880000000000002,0.66,163,736,667,4,15.100000000000001,157,5,0,160,0.298,55.660000000000004,46.76,0.13,993,2.6,335,0.8 +2019,10,18,23,30,25.700000000000003,0.68,0.22440000000000002,0.66,180,793,836,7,15.100000000000001,245,13,0,256,0.297,52.03,34.15,0.13,993,2.6,325,0.9 +2019,10,19,0,30,28.200000000000003,0.84,0.1514,0.66,145,882,956,7,15.100000000000001,85,0,0,85,0.296,44.89,23.21,0.12,992,2.9000000000000004,309,1.1 +2019,10,19,1,30,29.200000000000003,0.88,0.14120000000000002,0.66,142,897,997,7,15,206,17,0,222,0.296,42.02,17.580000000000002,0.12,990,3,305,1.3 +2019,10,19,2,30,29.5,0.9,0.1351,0.66,144,884,964,0,15,144,884,33,964,0.296,41.230000000000004,21.88,0.12,989,3.1,303,1.5 +2019,10,19,3,30,29.200000000000003,0.9,0.163,0.66,148,842,859,4,15.100000000000001,172,283,0,411,0.296,42.39,32.36,0.12,988,3.2,304,1.6 +2019,10,19,4,30,28.400000000000002,0.93,0.1655,0.66,136,791,697,0,15.4,180,686,0,667,0.297,45.08,44.82,0.12,988,3.2,308,1.6 +2019,10,19,5,30,27.5,0.9400000000000001,0.1638,0.66,122,693,490,7,15.600000000000001,34,0,0,34,0.298,48.36,57.93,0.12,987,3.1,318,1.4000000000000001 +2019,10,19,6,30,26.1,0.93,0.1958,0.66,98,503,260,4,16.3,62,93,0,92,0.3,54.730000000000004,71.21000000000001,0.12,987,2.9000000000000004,333,0.9 +2019,10,19,7,30,24,0.92,0.19,0.66,39,163,55,0,17.7,39,163,0,55,0.302,67.98,84.38,0.12,988,2.6,313,0.6000000000000001 +2019,10,19,8,30,22.1,0.92,0.1761,0.66,0,0,0,0,18.1,0,0,0,0,0.304,78,97.54,0.12,988,2.2,266,0.5 +2019,10,19,9,30,20.8,0.93,0.1564,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.305,75.93,110.11,0.12,989,1.6,251,0.5 +2019,10,19,10,30,19.700000000000003,0.9400000000000001,0.135,0.66,0,0,0,0,14.9,0,0,0,0,0.306,73.71000000000001,121.83,0.12,990,1.2000000000000002,256,0.6000000000000001 +2019,10,19,11,30,18.400000000000002,0.9400000000000001,0.1163,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.306,74.02,132.04,0.12,991,0.9,257,0.7000000000000001 +2019,10,19,12,30,17.1,0.97,0.10210000000000001,0.66,0,0,0,0,12.5,0,0,0,0,0.306,74.29,139.54,0.12,991,0.7000000000000001,252,0.8 +2019,10,19,13,30,16.1,1.06,0.09530000000000001,0.66,0,0,0,0,10.9,0,0,0,0,0.306,71.09,142.64000000000001,0.12,990,0.6000000000000001,249,0.8 +2019,10,19,14,30,15.100000000000001,1.22,0.09670000000000001,0.66,0,0,0,0,9,0,0,33,0,0.306,66.96000000000001,140.27,0.12,990,0.5,248,0.9 +2019,10,19,15,30,14.3,1.36,0.1037,0.66,0,0,0,0,6.9,0,0,0,0,0.307,61.07,133.28,0.12,990,0.5,248,0.9 +2019,10,19,16,30,13.8,1.45,0.1107,0.66,0,0,0,0,4.9,0,0,0,0,0.307,54.88,123.35000000000001,0.12,990,0.5,246,1 +2019,10,19,17,30,13.5,1.49,0.11330000000000001,0.66,0,0,0,0,3.3000000000000003,0,0,0,0,0.307,50,111.78,0.12,990,0.5,242,1 +2019,10,19,18,30,13.3,1.49,0.113,0.66,0,0,0,0,1.9000000000000001,0,0,0,0,0.306,46.050000000000004,99.31,0.12,990,0.5,234,1 +2019,10,19,19,30,14.8,1.49,0.11420000000000001,0.66,27,234,43,0,1.4000000000000001,27,234,0,43,0.304,40.26,86.13,0.12,991,0.6000000000000001,216,1.1 +2019,10,19,20,30,18,1.49,0.12140000000000001,0.66,73,634,258,0,1.9000000000000001,73,634,0,258,0.304,34.03,73.02,0.12,992,0.7000000000000001,189,1.7000000000000002 +2019,10,19,21,30,21.6,1.49,0.1326,0.66,102,790,500,0,1.8,102,790,0,500,0.305,27.07,59.730000000000004,0.12,993,0.9,166,2.4000000000000004 +2019,10,19,22,30,24.400000000000002,1.46,0.13920000000000002,0.66,120,869,718,0,5.7,120,869,0,718,0.306,29.89,46.550000000000004,0.12,993,1,155,2.5 +2019,10,19,23,30,25.6,1.42,0.1403,0.66,131,915,890,0,7.1000000000000005,131,915,0,890,0.307,30.810000000000002,33.910000000000004,0.12,993,1.1,152,2.3000000000000003 +2019,10,20,0,30,27.900000000000002,1.43,0.2064,0.66,169,887,986,0,7.4,169,887,0,986,0.309,27.43,22.900000000000002,0.12,993,1.3,138,1.7000000000000002 +2019,10,20,1,30,28.8,1.3900000000000001,0.2232,0.66,180,880,1021,0,7.300000000000001,180,880,0,1021,0.311,25.91,17.21,0.12,992,1.4000000000000001,123,1.7000000000000002 +2019,10,20,2,30,29.3,1.34,0.2457,0.66,184,860,983,0,7.4,184,860,33,983,0.312,25.22,21.62,0.12,991,1.6,110,1.9000000000000001 +2019,10,20,3,30,29.1,1.27,0.2348,0.66,180,821,875,0,7.6000000000000005,180,821,0,875,0.311,25.91,32.18,0.12,991,1.7000000000000002,104,2.2 +2019,10,20,4,30,28.3,1.2,0.2735,0.66,179,735,702,0,8.1,179,735,0,702,0.311,28.150000000000002,44.69,0.12,991,1.9000000000000001,101,2.7 +2019,10,20,5,30,26.6,1.1400000000000001,0.2957,0.66,161,613,488,0,9.200000000000001,161,613,0,488,0.311,33.35,57.81,0.12,991,2.1,102,3.3000000000000003 +2019,10,20,6,30,24.1,1.07,0.30870000000000003,0.66,122,415,256,0,10.8,122,415,0,256,0.311,43.26,71.09,0.12,993,2.3000000000000003,105,3.6 +2019,10,20,7,30,21.400000000000002,1.01,0.3189,0.66,43,94,52,0,12.600000000000001,43,94,0,52,0.311,57.160000000000004,84.25,0.12,994,2.4000000000000004,108,3.4000000000000004 +2019,10,20,8,30,19.5,0.93,0.3426,0.66,0,0,0,0,13.8,0,0,0,0,0.311,69.7,97.4,0.12,996,2.5,111,2.9000000000000004 +2019,10,20,9,30,18.7,0.89,0.37470000000000003,0.66,0,0,0,0,14.3,0,0,0,0,0.312,75.65,109.94,0.12,997,2.5,117,2.4000000000000004 +2019,10,20,10,30,18.3,0.9,0.36760000000000004,0.66,0,0,0,3,14.4,0,0,0,0,0.312,77.95,121.63,0.12,997,2.4000000000000004,124,1.9000000000000001 +2019,10,20,11,30,17.900000000000002,0.91,0.3592,0.66,0,0,0,0,14.4,0,0,0,0,0.312,79.97,131.79,0.12,998,2.4000000000000004,128,1.6 +2019,10,20,12,30,17.5,0.93,0.3516,0.66,0,0,0,0,14.4,0,0,0,0,0.312,82.10000000000001,139.23,0.12,998,2.3000000000000003,130,1.4000000000000001 +2019,10,20,13,30,17.1,0.9400000000000001,0.33540000000000003,0.66,0,0,0,0,14.4,0,0,0,0,0.313,84,142.28,0.12,998,2.3000000000000003,130,1.2000000000000002 +2019,10,20,14,30,16.7,0.9500000000000001,0.31770000000000004,0.66,0,0,0,0,14.3,0,0,33,0,0.313,85.47,139.92000000000002,0.12,997,2.2,130,1.1 +2019,10,20,15,30,16.3,0.9500000000000001,0.2967,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.314,86.75,132.96,0.12,997,2.1,130,1 +2019,10,20,16,30,15.9,0.96,0.2691,0.66,0,0,0,0,13.8,0,0,0,0,0.315,87.26,123.08,0.12,997,2,132,0.9 +2019,10,20,17,30,15.5,0.98,0.2414,0.66,0,0,0,0,13.4,0,0,0,0,0.316,87.26,111.54,0.12,998,1.9000000000000001,132,0.8 +2019,10,20,18,30,15.200000000000001,1.01,0.2152,0.66,0,0,0,3,13,0,0,0,0,0.317,86.45,99.09,0.12,998,1.8,133,0.8 +2019,10,20,19,30,15.9,1.04,0.1943,0.66,30,124,39,0,12.600000000000001,30,124,0,39,0.318,80.97,85.93,0.12,999,1.7000000000000002,133,1.1 +2019,10,20,20,30,17.7,1.08,0.1773,0.66,88,527,244,0,12.700000000000001,88,527,0,244,0.321,72.64,72.83,0.12,999,1.7000000000000002,127,2 +2019,10,20,21,30,19.8,1.11,0.1631,0.66,114,729,484,0,11.8,114,729,0,484,0.324,60.07,59.53,0.12,1000,1.6,120,2.6 +2019,10,20,22,30,21.8,1.12,0.1527,0.66,129,834,705,0,10.100000000000001,129,834,0,705,0.327,47.26,46.34,0.12,1000,1.6,117,2.7 +2019,10,20,23,30,22.6,1.12,0.1438,0.66,137,894,881,0,9,294,469,0,684,0.328,41.94,33.67,0.12,1000,1.5,116,2.7 +2019,10,21,0,30,24.5,1.27,0.22710000000000002,0.66,176,872,981,0,8.3,305,488,0,756,0.328,35.660000000000004,22.59,0.12,999,1.5,113,2.7 +2019,10,21,1,30,25.400000000000002,1.23,0.197,0.66,167,901,1029,0,7.7,348,487,0,814,0.328,32.5,16.85,0.12,999,1.5,111,2.7 +2019,10,21,2,30,25.8,1.16,0.1703,0.66,153,912,1002,0,7.300000000000001,287,582,33,829,0.328,30.7,21.35,0.12,998,1.5,108,2.8000000000000003 +2019,10,21,3,30,25.700000000000003,1.1,0.1371,0.66,135,903,901,0,7,251,643,0,796,0.327,30.400000000000002,32.01,0.12,998,1.6,105,3 +2019,10,21,4,30,25.200000000000003,1.05,0.13540000000000002,0.66,124,857,735,0,7,158,747,0,690,0.328,31.35,44.56,0.12,997,1.6,101,3.1 +2019,10,21,5,30,24.200000000000003,1.03,0.1288,0.66,106,779,522,0,7.300000000000001,106,779,0,522,0.328,33.77,57.69,0.12,998,1.6,97,3.1 +2019,10,21,6,30,22.6,1.03,0.1189,0.66,80,633,286,0,7.7,80,633,0,286,0.329,38.24,70.98,0.12,998,1.6,92,2.9000000000000004 +2019,10,21,7,30,20.6,1.03,0.10840000000000001,0.66,37,286,66,0,8.3,37,286,0,66,0.33,45.17,84.13,0.12,999,1.6,87,2.2 +2019,10,21,8,30,18.7,1.04,0.09910000000000001,0.66,0,0,0,0,9.5,0,0,0,0,0.33,55.03,97.26,0.12,1000,1.6,83,1.4000000000000001 +2019,10,21,9,30,17.5,1.07,0.0926,0.66,0,0,0,0,10.3,0,0,0,0,0.33,62.85,109.78,0.12,1000,1.6,83,1.1 +2019,10,21,10,30,16.7,1.09,0.0887,0.66,0,0,0,0,10.8,0,0,0,0,0.329,67.99,121.42,0.12,1000,1.6,87,0.9 +2019,10,21,11,30,16.1,1.1300000000000001,0.0877,0.66,0,0,0,0,11,0,0,0,0,0.328,71.89,131.53,0.12,1000,1.6,92,0.8 +2019,10,21,12,30,15.5,1.16,0.0893,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.326,75.59,138.91,0.12,1000,1.7000000000000002,96,0.7000000000000001 +2019,10,21,13,30,15.100000000000001,1.18,0.09240000000000001,0.66,0,0,0,0,11.3,0,0,0,0,0.325,77.93,141.92000000000002,0.12,1000,1.7000000000000002,102,0.7000000000000001 +2019,10,21,14,30,14.600000000000001,1.2,0.0955,0.66,0,0,0,0,11.3,0,0,33,0,0.324,80.77,139.57,0.12,999,1.8,108,0.7000000000000001 +2019,10,21,15,30,14.3,1.2,0.098,0.66,0,0,0,0,11.4,0,0,0,0,0.323,82.86,132.65,0.12,999,1.8,116,0.7000000000000001 +2019,10,21,16,30,13.9,1.21,0.0994,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.322,85.82000000000001,122.8,0.12,999,1.9000000000000001,122,0.7000000000000001 +2019,10,21,17,30,13.600000000000001,1.22,0.1003,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.321,88.12,111.3,0.12,999,1.9000000000000001,128,0.7000000000000001 +2019,10,21,18,30,13.5,1.24,0.1022,0.66,0,0,0,0,11.8,0,0,0,0,0.32,89.27,98.87,0.12,999,1.9000000000000001,135,0.7000000000000001 +2019,10,21,19,30,14.600000000000001,1.28,0.1046,0.66,28,223,45,0,11.9,28,223,0,45,0.319,83.88,85.74,0.12,1000,1.9000000000000001,140,0.9 +2019,10,21,20,30,17.2,1.32,0.1061,0.66,71,616,255,0,12.100000000000001,71,616,0,255,0.317,72.10000000000001,72.64,0.12,1000,2,126,1.3 +2019,10,21,21,30,20,1.37,0.10550000000000001,0.66,93,785,493,0,11.8,93,785,0,493,0.315,59.36,59.34,0.12,1000,2,109,1.5 +2019,10,21,22,30,22,1.43,0.1028,0.66,105,874,711,0,11.3,105,874,0,711,0.314,50.65,46.14,0.12,1000,2,108,1.6 +2019,10,21,23,30,22.900000000000002,1.47,0.0994,0.66,113,924,884,0,10.8,137,853,0,849,0.313,46.43,33.43,0.12,1000,2,108,1.6 +2019,10,22,0,30,25.1,1.48,0.1012,0.66,120,946,995,0,10.4,321,490,0,774,0.312,39.51,22.29,0.13,999,2,108,1.7000000000000002 +2019,10,22,1,30,26,1.48,0.1053,0.66,124,951,1036,0,10,327,478,0,785,0.312,36.51,16.5,0.13,998,2,104,1.9000000000000001 +2019,10,22,2,30,26.400000000000002,1.47,0.1072,0.66,131,931,1000,0,9.700000000000001,264,476,33,708,0.312,35.02,21.09,0.13,997,2,98,2.1 +2019,10,22,3,30,26.400000000000002,1.42,0.1577,0.66,141,883,891,0,9.700000000000001,162,839,0,875,0.313,35.02,31.830000000000002,0.13,997,2,92,2.3000000000000003 +2019,10,22,4,30,25.900000000000002,1.4000000000000001,0.1545,0.66,129,837,727,0,9.9,198,615,0,637,0.313,36.5,44.42,0.13,996,2,87,2.6 +2019,10,22,5,30,24.900000000000002,1.3900000000000001,0.1477,0.66,110,758,516,0,10.200000000000001,110,758,0,516,0.312,39.53,57.57,0.13,996,2.1,83,2.7 +2019,10,22,6,30,23.3,1.3800000000000001,0.13570000000000002,0.66,81,614,282,0,10.700000000000001,81,614,0,282,0.31,44.97,70.86,0.13,997,2.1,79,2.7 +2019,10,22,7,30,21.3,1.3800000000000001,0.12290000000000001,0.66,36,284,66,0,11.4,36,284,0,66,0.31,53.11,84.01,0.13,998,2,75,2.1 +2019,10,22,8,30,19.400000000000002,1.37,0.1119,0.66,0,0,0,0,12.4,0,0,0,0,0.31,63.75,97.12,0.13,999,2,73,1.3 +2019,10,22,9,30,18.3,1.37,0.1019,0.66,0,0,0,0,13,0,0,0,0,0.31,71.33,109.61,0.13,999,2,74,1 +2019,10,22,10,30,17.5,1.37,0.09340000000000001,0.66,0,0,0,0,13.4,0,0,0,0,0.309,76.85000000000001,121.22,0.13,1000,1.9000000000000001,78,0.8 +2019,10,22,11,30,16.8,1.36,0.08700000000000001,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.308,81.58,131.27,0.13,1000,1.9000000000000001,86,0.7000000000000001 +2019,10,22,12,30,16.2,1.36,0.0828,0.66,0,0,0,0,13.8,0,0,0,0,0.307,85.5,138.6,0.13,999,1.8,92,0.6000000000000001 +2019,10,22,13,30,15.8,1.35,0.0804,0.66,0,0,0,0,13.9,0,0,0,0,0.307,88.35000000000001,141.57,0.13,999,1.8,98,0.7000000000000001 +2019,10,22,14,30,15.3,1.35,0.0791,0.66,0,0,0,0,13.9,0,0,33,0,0.307,91.59,139.22,0.13,999,1.8,104,0.7000000000000001 +2019,10,22,15,30,14.9,1.34,0.08020000000000001,0.66,0,0,0,0,14,0,0,0,0,0.307,94.13,132.34,0.13,998,1.7000000000000002,109,0.7000000000000001 +2019,10,22,16,30,14.700000000000001,1.34,0.0847,0.66,0,0,0,0,14,0,0,0,0,0.308,95.60000000000001,122.54,0.13,998,1.7000000000000002,115,0.7000000000000001 +2019,10,22,17,30,14.5,1.35,0.0859,0.66,0,0,0,0,14,0,0,0,0,0.308,96.81,111.07000000000001,0.13,998,1.7000000000000002,121,0.6000000000000001 +2019,10,22,18,30,14.4,1.35,0.0877,0.66,0,0,0,0,14,0,0,0,0,0.309,97.17,98.66,0.13,998,1.7000000000000002,125,0.6000000000000001 +2019,10,22,19,30,15.5,1.35,0.0878,0.66,29,267,50,0,13.9,29,267,0,50,0.309,90.24,85.55,0.13,999,1.6,126,0.9 +2019,10,22,20,30,18.1,1.35,0.084,0.66,66,664,266,0,13.8,66,664,33,266,0.309,76.13,72.45,0.13,999,1.6,117,1.4000000000000001 +2019,10,22,21,30,20.6,1.37,0.07690000000000001,0.66,82,830,508,0,13,82,830,0,508,0.309,61.89,59.15,0.13,1000,1.6,104,1.6 +2019,10,22,22,30,22.700000000000003,1.4000000000000001,0.0702,0.66,91,916,728,0,12.100000000000001,91,916,0,728,0.309,51.230000000000004,45.95,0.13,1000,1.6,98,1.7000000000000002 +2019,10,22,23,30,23.700000000000003,1.42,0.0645,0.66,97,963,903,0,11.4,97,963,0,903,0.309,45.99,33.21,0.13,999,1.6,96,1.8 +2019,10,23,0,30,25.900000000000002,1.46,0.0823,0.66,110,972,1011,0,10.8,110,972,0,1011,0.309,38.730000000000004,22,0.13,998,1.6,90,2 +2019,10,23,1,30,26.900000000000002,1.47,0.0779,0.66,108,984,1053,0,10.3,108,984,0,1053,0.31,35.31,16.14,0.13,998,1.6,85,2.2 +2019,10,23,2,30,27.5,1.47,0.07300000000000001,0.66,109,974,1019,0,9.8,109,974,33,1019,0.31,32.99,20.830000000000002,0.13,997,1.7000000000000002,81,2.4000000000000004 +2019,10,23,3,30,27.400000000000002,1.5,0.0937,0.66,111,943,914,0,9.5,111,943,0,914,0.311,32.55,31.66,0.13,996,1.7000000000000002,79,2.6 +2019,10,23,4,30,26.900000000000002,1.5,0.08850000000000001,0.66,100,906,749,0,9.4,100,906,0,749,0.311,33.31,44.29,0.13,996,1.6,78,2.7 +2019,10,23,5,30,25.8,1.49,0.08320000000000001,0.66,87,837,537,0,9.5,87,837,0,537,0.312,35.79,57.46,0.13,996,1.6,76,2.7 +2019,10,23,6,30,24.200000000000003,1.48,0.0779,0.66,66,702,298,0,9.8,66,702,0,298,0.312,40.27,70.74,0.13,996,1.6,74,2.5 +2019,10,23,7,30,21.900000000000002,1.48,0.0732,0.66,33,374,73,0,10.5,33,374,0,73,0.313,48.22,83.88,0.13,997,1.6,69,1.8 +2019,10,23,8,30,19.8,1.48,0.0693,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.314,59.56,96.98,0.13,998,1.5,64,1 +2019,10,23,9,30,18.5,1.49,0.066,0.66,0,0,0,0,12.4,0,0,0,0,0.315,67.5,109.44,0.13,998,1.5,58,0.8 +2019,10,23,10,30,17.6,1.51,0.0635,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.315,72.95,121.01,0.13,999,1.4000000000000001,51,0.7000000000000001 +2019,10,23,11,30,16.8,1.52,0.0621,0.66,0,0,0,0,12.8,0,0,0,0,0.315,77.4,131.02,0.13,999,1.4000000000000001,44,0.7000000000000001 +2019,10,23,12,30,16.2,1.54,0.0626,0.66,0,0,0,0,12.8,0,0,0,0,0.314,80.5,138.28,0.13,998,1.4000000000000001,37,0.7000000000000001 +2019,10,23,13,30,15.700000000000001,1.56,0.06670000000000001,0.66,0,0,0,0,12.9,0,0,0,0,0.314,83.26,141.22,0.13,998,1.4000000000000001,29,0.7000000000000001 +2019,10,23,14,30,15.200000000000001,1.59,0.0757,0.66,0,0,0,0,12.9,0,0,33,0,0.314,85.92,138.88,0.13,997,1.4000000000000001,22,0.7000000000000001 +2019,10,23,15,30,14.9,1.6300000000000001,0.0913,0.66,0,0,0,0,12.9,0,0,0,0,0.314,87.7,132.03,0.13,997,1.4000000000000001,12,0.7000000000000001 +2019,10,23,16,30,14.600000000000001,1.68,0.1136,0.66,0,0,0,0,12.9,0,0,0,0,0.314,89.62,122.27,0.13,996,1.5,178,0.7000000000000001 +2019,10,23,17,30,14.3,1.73,0.1409,0.66,0,0,0,0,13,0,0,0,0,0.315,91.63,110.84,0.13,996,1.5,338,0.7000000000000001 +2019,10,23,18,30,13.9,1.77,0.171,0.66,0,0,0,0,13,0,0,0,0,0.315,94.2,98.46000000000001,0.13,996,1.6,318,0.7000000000000001 +2019,10,23,19,30,14.600000000000001,1.81,0.20220000000000002,0.66,30,179,44,0,13,30,179,0,44,0.315,90.25,85.36,0.13,997,1.7000000000000002,298,0.9 +2019,10,23,20,30,17.1,1.83,0.2305,0.66,93,510,248,0,13.100000000000001,93,510,0,248,0.314,77.26,72.27,0.13,997,1.7000000000000002,310,1 +2019,10,23,21,30,20.3,1.86,0.24780000000000002,0.66,132,677,481,0,12.8,132,677,0,481,0.314,62.04,58.97,0.13,998,1.7000000000000002,344,0.9 +2019,10,23,22,30,23,1.8800000000000001,0.24910000000000002,0.66,154,778,697,0,11.600000000000001,154,778,0,697,0.315,48.76,45.76,0.13,998,1.7000000000000002,192,0.8 +2019,10,23,23,30,24.3,1.8800000000000001,0.2354,0.66,165,840,870,0,10,165,840,0,870,0.315,40.4,32.980000000000004,0.13,997,1.7000000000000002,28,0.6000000000000001 +2019,10,24,0,30,27.400000000000002,1.78,0.163,0.66,142,920,997,0,8.3,142,920,0,997,0.314,30.1,21.71,0.12,996,1.7000000000000002,76,1 +2019,10,24,1,30,28.700000000000003,1.76,0.1439,0.66,137,942,1043,0,7.5,137,942,0,1043,0.314,26.32,15.790000000000001,0.12,995,1.6,79,1.5 +2019,10,24,2,30,29.3,1.74,0.129,0.66,130,942,1012,0,7.2,130,942,33,1012,0.314,24.93,20.57,0.12,994,1.6,75,2 +2019,10,24,3,30,29.3,1.74,0.1297,0.66,124,921,909,0,7.300000000000001,124,921,0,909,0.314,25.17,31.490000000000002,0.12,994,1.6,71,2.4000000000000004 +2019,10,24,4,30,28.6,1.72,0.1194,0.66,111,884,745,0,7.7,111,884,0,745,0.314,26.92,44.160000000000004,0.12,993,1.6,67,2.7 +2019,10,24,5,30,27.400000000000002,1.7,0.11180000000000001,0.66,95,812,533,0,8.3,95,812,0,533,0.314,29.97,57.34,0.12,993,1.6,63,2.8000000000000003 +2019,10,24,6,30,25.5,1.69,0.10590000000000001,0.66,73,670,295,0,9.1,73,670,0,295,0.314,35.46,70.63,0.12,994,1.6,58,2.7 +2019,10,24,7,30,22.900000000000002,1.69,0.1029,0.66,36,341,73,0,10.200000000000001,36,341,0,73,0.314,44.69,83.76,0.12,994,1.5,54,1.9000000000000001 +2019,10,24,8,30,20.5,1.69,0.1022,0.66,0,0,0,0,11.9,0,0,0,0,0.315,57.75,96.83,0.12,995,1.5,52,1.1 +2019,10,24,9,30,19.1,1.69,0.1034,0.66,0,0,0,0,12.8,0,0,0,0,0.314,66.91,109.27,0.12,996,1.5,50,0.9 +2019,10,24,10,30,18.1,1.68,0.1047,0.66,0,0,0,0,13.3,0,0,0,0,0.314,73.64,120.8,0.12,996,1.5,48,0.8 +2019,10,24,11,30,17.3,1.67,0.1046,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.313,78.95,130.76,0.12,996,1.4000000000000001,46,0.7000000000000001 +2019,10,24,12,30,16.6,1.6600000000000001,0.1033,0.66,0,0,0,0,13.8,0,0,0,0,0.313,83.5,137.97,0.12,996,1.4000000000000001,43,0.7000000000000001 +2019,10,24,13,30,16,1.6400000000000001,0.10200000000000001,0.66,0,0,0,0,13.9,0,0,0,0,0.312,87.33,140.87,0.12,996,1.4000000000000001,37,0.7000000000000001 +2019,10,24,14,30,15.4,1.6300000000000001,0.1008,0.66,0,0,0,0,13.9,0,0,33,0,0.312,90.84,138.54,0.12,995,1.4000000000000001,28,0.7000000000000001 +2019,10,24,15,30,14.8,1.62,0.09920000000000001,0.66,0,0,0,0,13.9,0,0,0,0,0.312,94.56,131.73,0.12,995,1.4000000000000001,17,0.7000000000000001 +2019,10,24,16,30,14.3,1.61,0.0981,0.66,0,0,0,0,14,0,0,0,0,0.313,97.84,122.01,0.12,994,1.5,182,0.7000000000000001 +2019,10,24,17,30,13.9,1.6,0.0981,0.66,0,0,0,0,13.9,0,0,0,0,0.314,100,110.61,0.12,995,1.5,345,0.7000000000000001 +2019,10,24,18,30,13.600000000000001,1.6,0.0988,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.314,100,98.25,0.12,995,1.5,331,0.8 +2019,10,24,19,30,14.600000000000001,1.61,0.0998,0.66,30,281,54,0,14,30,281,0,54,0.314,95.91,85.18,0.12,995,1.5,322,0.9 +2019,10,24,20,30,17.5,1.62,0.1,0.66,70,655,271,0,13.9,70,655,0,271,0.314,79.41,72.09,0.12,995,1.5,330,1.2000000000000002 +2019,10,24,21,30,20.5,1.6600000000000001,0.09770000000000001,0.66,89,816,512,0,12.9,89,816,0,512,0.314,61.53,58.800000000000004,0.12,996,1.5,348,1.3 +2019,10,24,22,30,23.1,1.69,0.0959,0.66,103,899,732,0,10.700000000000001,103,899,0,732,0.314,45.54,45.57,0.12,996,1.5,182,1.2000000000000002 +2019,10,24,23,30,24.3,1.71,0.09530000000000001,0.66,110,945,905,0,8.8,110,945,0,905,0.314,37.24,32.77,0.12,995,1.5,8,1.2000000000000002 +2019,10,25,0,30,27.3,1.6,0.1258,0.66,130,947,1012,0,7.2,130,947,0,1012,0.315,27.98,21.43,0.12,994,1.5,25,1.4000000000000001 +2019,10,25,1,30,28.700000000000003,1.62,0.12480000000000001,0.66,132,958,1055,0,6.1000000000000005,132,958,0,1055,0.315,23.92,15.44,0.12,993,1.4000000000000001,33,1.6 +2019,10,25,2,30,29.5,1.6300000000000001,0.12380000000000001,0.66,136,942,1019,0,5.4,136,942,33,1019,0.315,21.82,20.32,0.12,992,1.5,40,1.9000000000000001 +2019,10,25,3,30,29.5,1.61,0.1631,0.66,142,898,909,0,5.2,142,898,0,909,0.315,21.47,31.32,0.12,991,1.5,44,2.3000000000000003 +2019,10,25,4,30,29,1.62,0.16190000000000002,0.66,130,851,742,0,5.5,130,851,0,742,0.314,22.51,44.02,0.12,991,1.5,47,2.5 +2019,10,25,5,30,27.900000000000002,1.6300000000000001,0.15990000000000001,0.66,113,768,529,0,6,113,768,0,529,0.315,24.89,57.22,0.12,990,1.5,47,2.6 +2019,10,25,6,30,26.1,1.6400000000000001,0.1578,0.66,86,612,290,0,6.800000000000001,86,612,0,290,0.315,29.330000000000002,70.51,0.12,991,1.6,46,2.5 +2019,10,25,7,30,23.5,1.6500000000000001,0.1564,0.66,39,279,70,0,8.200000000000001,39,279,0,70,0.315,37.62,83.63,0.12,991,1.6,46,1.9000000000000001 +2019,10,25,8,30,21,1.61,0.1587,0.66,0,0,0,0,10.4,0,0,0,0,0.314,50.620000000000005,96.69,0.12,992,1.7000000000000002,44,1.3 +2019,10,25,9,30,19.6,1.55,0.1625,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.312,60.03,109.09,0.12,992,1.7000000000000002,40,1.1 +2019,10,25,10,30,18.6,1.49,0.1602,0.66,0,0,0,0,12.5,0,0,0,0,0.311,67.44,120.59,0.12,993,1.7000000000000002,32,1 +2019,10,25,11,30,17.8,1.48,0.1539,0.66,0,0,0,0,12.9,0,0,0,0,0.311,73.05,130.5,0.12,993,1.7000000000000002,23,0.9 +2019,10,25,12,30,17.1,1.48,0.1482,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.309,77.43,137.66,0.12,993,1.7000000000000002,16,0.9 +2019,10,25,13,30,16.6,1.49,0.1437,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.308,80.27,140.52,0.12,992,1.7000000000000002,11,0.8 +2019,10,25,14,30,16.1,1.51,0.1406,0.66,0,0,0,0,13.200000000000001,0,0,33,0,0.307,82.93,138.20000000000002,0.12,992,1.7000000000000002,6,0.8 +2019,10,25,15,30,15.600000000000001,1.51,0.14600000000000002,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.306,85.64,131.43,0.12,991,1.7000000000000002,2,0.8 +2019,10,25,16,30,15.100000000000001,1.49,0.1637,0.66,0,0,0,0,13.3,0,0,0,0,0.306,88.73,121.75,0.12,991,1.8,179,0.8 +2019,10,25,17,30,14.700000000000001,1.49,0.1729,0.66,0,0,0,0,13.3,0,0,0,0,0.307,91.27,110.38,0.12,991,1.8,356,0.8 +2019,10,25,18,30,14.4,1.52,0.1577,0.66,0,0,0,0,13.3,0,0,0,0,0.309,93.22,98.05,0.12,992,1.8,351,0.7000000000000001 +2019,10,25,19,30,15.5,1.53,0.1369,0.66,32,243,53,0,13.3,32,243,0,53,0.31,86.9,85.01,0.12,992,1.7000000000000002,344,1.1 +2019,10,25,20,30,18.2,1.52,0.12290000000000001,0.66,74,626,268,0,13.3,74,626,0,268,0.311,73.18,71.92,0.12,992,1.7000000000000002,341,1.9000000000000001 +2019,10,25,21,30,21.1,1.53,0.1121,0.66,94,798,509,0,13,94,798,0,509,0.311,59.74,58.63,0.12,992,1.7000000000000002,341,2.4000000000000004 +2019,10,25,22,30,23.900000000000002,1.54,0.1048,0.66,106,887,729,0,11.8,106,887,0,729,0.311,46.72,45.39,0.12,992,1.7000000000000002,339,2.3000000000000003 +2019,10,25,23,30,25.200000000000003,1.56,0.101,0.66,114,936,903,0,10.3,114,936,0,903,0.311,39.160000000000004,32.56,0.12,992,1.7000000000000002,338,2.2 +2019,10,26,0,30,28.6,1.46,0.1105,0.66,122,955,1013,0,9,122,955,0,1013,0.31,29.25,21.16,0.13,991,1.6,340,2 +2019,10,26,1,30,30.3,1.47,0.1066,0.66,122,966,1055,0,8,122,966,0,1055,0.309,24.900000000000002,15.1,0.13,989,1.6,345,2 +2019,10,26,2,30,31.3,1.49,0.1024,0.66,122,956,1020,0,7.4,122,956,33,1020,0.309,22.61,20.07,0.13,988,1.7000000000000002,349,2 +2019,10,26,3,30,31.6,1.4000000000000001,0.117,0.66,122,924,913,0,7.300000000000001,122,924,0,913,0.308,22,31.16,0.13,987,1.8,349,1.9000000000000001 +2019,10,26,4,30,31.3,1.3800000000000001,0.11660000000000001,0.66,114,877,746,0,7.5,114,877,0,746,0.308,22.69,43.89,0.13,986,1.9000000000000001,351,1.9000000000000001 +2019,10,26,5,30,30.5,1.36,0.1163,0.66,100,796,532,0,7.800000000000001,100,796,0,532,0.307,24.3,57.1,0.13,986,1.9000000000000001,356,2 +2019,10,26,6,30,28.900000000000002,1.34,0.116,0.66,78,645,294,0,8.4,78,645,0,294,0.307,27.66,70.39,0.13,986,2,188,2 +2019,10,26,7,30,26,1.32,0.11610000000000001,0.66,39,308,74,0,9.9,39,308,0,74,0.307,36.410000000000004,83.51,0.13,986,2,20,1.8 +2019,10,26,8,30,23.3,1.31,0.1164,0.66,0,0,0,0,11.9,0,0,0,0,0.307,48.85,96.54,0.13,987,2,25,1.6 +2019,10,26,9,30,21.8,1.3,0.11520000000000001,0.66,0,0,0,0,13,0,0,0,0,0.307,57.370000000000005,108.92,0.13,988,2.1,23,1.5 +2019,10,26,10,30,20.900000000000002,1.26,0.11370000000000001,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.306,62.980000000000004,120.38,0.13,988,2.2,17,1.3 +2019,10,26,11,30,20.1,1.21,0.11230000000000001,0.66,0,0,0,0,13.8,0,0,0,0,0.305,67.29,130.24,0.13,988,2.2,7,1.1 +2019,10,26,12,30,19.400000000000002,1.17,0.11230000000000001,0.66,0,0,0,0,13.9,0,0,0,0,0.304,70.64,137.35,0.13,988,2.3000000000000003,173,0.9 +2019,10,26,13,30,18.7,1.16,0.1153,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.302,74.39,140.18,0.13,988,2.4000000000000004,337,0.9 +2019,10,26,14,30,18.2,1.17,0.11950000000000001,0.66,0,0,0,0,14.200000000000001,0,0,33,0,0.302,77.51,137.87,0.13,988,2.4000000000000004,321,0.8 +2019,10,26,15,30,17.7,1.17,0.12240000000000001,0.66,0,0,0,0,14.3,0,0,0,0,0.302,80.44,131.13,0.13,988,2.4000000000000004,310,0.8 +2019,10,26,16,30,17.3,1.17,0.12250000000000001,0.66,0,0,0,7,14.4,0,0,0,0,0.303,82.84,121.5,0.13,988,2.4000000000000004,306,0.8 +2019,10,26,17,30,16.900000000000002,1.16,0.12010000000000001,0.66,0,0,0,0,14.4,0,0,0,0,0.304,85.01,110.16,0.13,988,2.4000000000000004,305,0.7000000000000001 +2019,10,26,18,30,16.8,1.1400000000000001,0.11570000000000001,0.66,0,0,0,0,14.3,0,0,0,0,0.305,85.36,97.86,0.13,988,2.4000000000000004,303,0.8 +2019,10,26,19,30,17.900000000000002,1.1300000000000001,0.11330000000000001,0.66,34,238,55,0,14.3,34,238,0,55,0.305,79.53,84.83,0.13,989,2.4000000000000004,297,1.2000000000000002 +2019,10,26,20,30,20.400000000000002,1.1300000000000001,0.11380000000000001,0.66,75,609,266,0,14.200000000000001,75,609,0,266,0.304,67.75,71.76,0.13,989,2.3000000000000003,285,1.7000000000000002 +2019,10,26,21,30,23.400000000000002,1.1300000000000001,0.11720000000000001,0.66,99,768,501,0,13.9,99,768,0,501,0.304,55.26,58.46,0.13,989,2.4000000000000004,264,1.6 +2019,10,26,22,30,26.5,1.12,0.12140000000000001,0.66,115,850,714,0,12.9,115,850,0,714,0.304,43.01,45.21,0.13,989,2.4000000000000004,242,1.2000000000000002 +2019,10,26,23,30,27.900000000000002,1.11,0.12390000000000001,0.66,126,897,884,0,11.700000000000001,126,897,0,884,0.303,36.57,32.36,0.13,989,2.4000000000000004,232,0.9 +2019,10,27,0,30,31.1,1.12,0.12040000000000001,0.66,129,926,994,0,11,129,926,0,994,0.303,29.11,20.89,0.13,988,2.4000000000000004,245,0.5 +2019,10,27,1,30,32.5,1.12,0.1177,0.66,130,936,1035,0,10.9,130,936,0,1035,0.304,26.650000000000002,14.75,0.13,987,2.4000000000000004,292,0.4 +2019,10,27,2,30,33.300000000000004,1.12,0.1155,0.66,134,919,999,0,10.9,134,919,33,999,0.306,25.44,19.82,0.13,986,2.5,344,0.5 +2019,10,27,3,30,33.5,1.08,0.157,0.66,147,864,888,0,11,172,806,0,863,0.307,25.36,30.990000000000002,0.13,986,2.6,180,0.8 +2019,10,27,4,30,32.800000000000004,1.06,0.1835,0.66,147,792,719,0,11.200000000000001,147,792,0,719,0.308,26.67,43.76,0.13,985,2.7,10,1 +2019,10,27,5,30,31.1,1.04,0.20090000000000002,0.66,133,688,508,0,11.5,153,595,0,477,0.308,30.080000000000002,56.980000000000004,0.13,985,2.8000000000000003,34,1.3 +2019,10,27,6,30,28.700000000000003,1.01,0.2029,0.66,102,519,277,0,12.5,105,499,0,273,0.308,36.87,70.27,0.13,986,2.9000000000000004,57,1.7000000000000002 +2019,10,27,7,30,25.700000000000003,0.96,0.19940000000000002,0.66,46,185,67,0,14,46,185,0,67,0.309,48.54,83.38,0.13,987,2.9000000000000004,72,1.8 +2019,10,27,8,30,23.200000000000003,0.91,0.2087,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.309,62.230000000000004,96.39,0.13,989,2.8000000000000003,83,1.7000000000000002 +2019,10,27,9,30,21.900000000000002,0.92,0.22460000000000002,0.66,0,0,0,0,16.5,0,0,0,0,0.308,71.23,108.74000000000001,0.13,990,2.7,92,1.5 +2019,10,27,10,30,21.200000000000003,0.9400000000000001,0.22410000000000002,0.66,0,0,0,0,17.2,0,0,0,0,0.306,77.8,120.17,0.13,991,2.7,97,1.5 +2019,10,27,11,30,20.5,0.93,0.2243,0.66,0,0,0,0,17.7,0,0,0,0,0.305,84.01,129.98,0.13,991,2.6,97,1.5 +2019,10,27,12,30,20.1,0.92,0.2379,0.66,0,0,0,0,17.900000000000002,0,0,0,0,0.305,87.3,137.04,0.13,991,2.5,95,1.3 +2019,10,27,13,30,19.8,0.92,0.2331,0.66,0,0,0,3,17.900000000000002,0,0,0,0,0.305,89.04,139.84,0.13,991,2.5,95,1.1 +2019,10,27,14,30,19.5,0.92,0.2214,0.66,0,0,0,0,17.900000000000002,0,0,33,0,0.305,90.45,137.54,0.13,991,2.6,98,1 +2019,10,27,15,30,19.3,0.93,0.2325,0.66,0,0,0,7,17.8,0,0,0,0,0.305,91.12,130.84,0.13,990,2.7,104,0.8 +2019,10,27,16,30,19,0.93,0.2356,0.66,0,0,0,7,17.8,0,0,0,0,0.306,92.51,121.24000000000001,0.13,991,2.7,113,0.8 +2019,10,27,17,30,18.8,0.92,0.23120000000000002,0.66,0,0,0,7,17.6,0,0,0,0,0.306,93.03,109.95,0.13,991,2.7,122,0.8 +2019,10,27,18,30,18.7,0.93,0.24050000000000002,0.66,0,0,0,7,17.5,0,0,0,0,0.306,92.92,97.67,0.13,991,2.7,129,0.8 +2019,10,27,19,30,19.1,0.93,0.24300000000000002,0.66,39,116,50,7,17.400000000000002,28,30,83,31,0.306,90.12,84.66,0.13,992,2.7,135,1.2000000000000002 +2019,10,27,20,30,20.200000000000003,0.93,0.2373,0.66,109,457,253,0,17.400000000000002,105,246,0,183,0.304,84.01,71.59,0.13,992,2.7,134,1.6 +2019,10,27,21,30,21.900000000000002,0.9500000000000001,0.24250000000000002,0.66,146,639,482,7,17.400000000000002,192,24,0,205,0.303,75.55,58.300000000000004,0.13,993,2.7,127,1.7000000000000002 +2019,10,27,22,30,23.900000000000002,0.99,0.2409,0.66,167,748,695,0,17,264,323,0,492,0.301,65.42,45.050000000000004,0.13,993,2.7,123,1.6 +2019,10,27,23,30,25,1.02,0.22260000000000002,0.66,176,815,866,0,16.400000000000002,259,614,0,779,0.301,58.800000000000004,32.160000000000004,0.13,993,2.7,122,1.6 +2019,10,28,0,30,27.6,1.05,0.2549,0.66,196,827,970,7,15.600000000000001,480,183,0,651,0.3,47.99,20.62,0.13,993,2.7,113,1.5 +2019,10,28,1,30,28.5,1.06,0.2421,0.66,195,843,1011,2,14.8,454,266,0,712,0.3,43.15,14.41,0.13,992,2.7,105,1.5 +2019,10,28,2,30,28.6,1.06,0.2426,0.66,191,834,977,2,14,448,138,42,578,0.301,40.95,19.580000000000002,0.13,992,2.8000000000000003,98,1.6 +2019,10,28,3,30,28.200000000000003,1.06,0.2371,0.66,185,804,875,7,13.600000000000001,410,142,0,532,0.302,40.83,30.830000000000002,0.13,992,2.9000000000000004,94,2 +2019,10,28,4,30,27.400000000000002,1.06,0.2474,0.66,171,746,711,7,13.5,255,529,0,638,0.303,42.53,43.63,0.13,992,2.9000000000000004,92,2.5 +2019,10,28,5,30,26.200000000000003,1.05,0.23620000000000002,0.66,147,657,506,0,13.9,155,620,0,494,0.304,46.77,56.86,0.13,992,2.9000000000000004,91,3 +2019,10,28,6,30,24.6,1.04,0.2346,0.66,111,488,277,0,14.700000000000001,112,468,8,271,0.305,53.92,70.15,0.13,993,2.9000000000000004,92,3.2 +2019,10,28,7,30,22.700000000000003,1.01,0.23800000000000002,0.66,49,164,68,7,15.4,48,156,100,66,0.306,63.24,83.25,0.13,994,2.8000000000000003,95,3 +2019,10,28,8,30,21.3,0.97,0.2482,0.66,0,0,0,0,15.8,0,0,0,0,0.306,70.95,96.24000000000001,0.13,995,2.7,101,2.7 +2019,10,28,9,30,20.700000000000003,0.93,0.2599,0.66,0,0,0,0,16,0,0,0,0,0.305,74.66,108.57000000000001,0.13,996,2.7,106,2.4000000000000004 +2019,10,28,10,30,20.200000000000003,0.9400000000000001,0.2669,0.66,0,0,0,0,16.1,0,0,0,0,0.304,77.22,119.95,0.13,997,2.6,112,2.3000000000000003 +2019,10,28,11,30,19.900000000000002,0.9500000000000001,0.2656,0.66,0,0,0,0,16,0,0,0,0,0.304,78.33,129.72,0.13,997,2.5,116,2.2 +2019,10,28,12,30,19.5,0.98,0.2674,0.66,0,0,0,0,15.9,0,0,0,0,0.303,79.57000000000001,136.73,0.13,997,2.4000000000000004,119,2.1 +2019,10,28,13,30,19.200000000000003,1.01,0.2651,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.303,80.27,139.51,0.13,997,2.3000000000000003,119,1.9000000000000001 +2019,10,28,14,30,18.8,1.03,0.25520000000000004,0.66,0,0,0,7,15.5,0,0,33,0,0.302,81.22,137.21,0.13,996,2.2,119,1.7000000000000002 +2019,10,28,15,30,18.5,1.05,0.2592,0.66,0,0,0,7,15.4,0,0,0,0,0.302,81.9,130.55,0.13,996,2.2,120,1.5 +2019,10,28,16,30,18.1,1.07,0.259,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.301,83.4,121,0.13,996,2.1,122,1.2000000000000002 +2019,10,28,17,30,17.7,1.07,0.25630000000000003,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.3,84.93,109.73,0.13,997,2.1,124,1.1 +2019,10,28,18,30,17.5,1.08,0.2601,0.66,0,0,0,0,15,0,0,0,0,0.3,85.09,97.48,0.13,997,2.1,125,1.1 +2019,10,28,19,30,18.1,1.1,0.25670000000000004,0.66,40,134,53,0,14.8,40,134,0,53,0.299,81.18,84.5,0.13,998,2,124,1.5 +2019,10,28,20,30,19.700000000000003,1.1300000000000001,0.2421,0.66,107,485,261,0,14.600000000000001,107,485,0,261,0.299,72.54,71.43,0.13,998,2,116,2.2 +2019,10,28,21,30,21.6,1.17,0.22990000000000002,0.66,137,680,496,0,14,178,369,0,373,0.3,62.01,58.14,0.13,999,1.9000000000000001,107,2.6 +2019,10,28,22,30,23.5,1.24,0.2131,0.66,153,792,714,0,12.9,184,688,0,672,0.3,51.56,44.88,0.13,999,1.9000000000000001,101,2.6 +2019,10,28,23,30,24.5,1.27,0.2021,0.66,162,854,886,0,11.9,162,854,0,886,0.3,45.28,31.970000000000002,0.13,999,1.9000000000000001,98,2.7 +2019,10,29,0,30,26.6,1.28,0.16740000000000002,0.66,152,910,1005,0,11,152,910,0,1005,0.3,37.67,20.37,0.13,998,1.8,91,2.7 +2019,10,29,1,30,27.5,1.29,0.1627,0.66,153,922,1047,0,10.200000000000001,153,922,0,1047,0.3,33.980000000000004,14.08,0.13,997,1.8,87,2.8000000000000003 +2019,10,29,2,30,27.8,1.28,0.161,0.66,154,911,1014,0,9.700000000000001,154,911,33,1014,0.3,32.230000000000004,19.34,0.13,996,1.7000000000000002,85,2.9000000000000004 +2019,10,29,3,30,27.6,1.3,0.18680000000000002,0.66,158,873,909,0,9.5,158,873,0,909,0.3,32.17,30.67,0.13,995,1.7000000000000002,83,3 +2019,10,29,4,30,26.8,1.28,0.1885,0.66,146,821,742,0,9.600000000000001,146,821,0,742,0.3,33.94,43.5,0.13,995,1.7000000000000002,81,3 +2019,10,29,5,30,25.700000000000003,1.26,0.19140000000000001,0.66,130,730,530,0,9.8,130,730,0,530,0.299,36.77,56.74,0.13,995,1.8,78,2.9000000000000004 +2019,10,29,6,30,24.1,1.25,0.18860000000000002,0.66,98,573,294,0,10.200000000000001,98,573,0,294,0.299,41.38,70.02,0.13,996,1.8,75,2.7 +2019,10,29,7,30,22.200000000000003,1.25,0.1816,0.66,46,251,76,0,10.700000000000001,46,251,0,76,0.299,48.06,83.11,0.13,997,1.7000000000000002,71,2.2 +2019,10,29,8,30,20.400000000000002,1.26,0.1771,0.66,0,0,0,0,11.4,0,0,0,0,0.299,56.370000000000005,96.09,0.13,997,1.7000000000000002,68,1.6 +2019,10,29,9,30,19.3,1.27,0.1744,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.299,63.54,108.39,0.13,998,1.7000000000000002,66,1.3 +2019,10,29,10,30,18.6,1.3,0.1777,0.66,0,0,0,0,12.8,0,0,0,0,0.299,69.02,119.74000000000001,0.13,998,1.7000000000000002,65,1.2000000000000002 +2019,10,29,11,30,18.1,1.34,0.1879,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.298,73.13,129.46,0.13,998,1.7000000000000002,64,1 +2019,10,29,12,30,17.8,1.37,0.2084,0.66,0,0,0,0,13.5,0,0,0,0,0.298,75.86,136.42000000000002,0.13,997,1.8,62,0.9 +2019,10,29,13,30,17.5,1.4000000000000001,0.23240000000000002,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.297,78.42,139.17000000000002,0.13,997,1.9000000000000001,60,0.7000000000000001 +2019,10,29,14,30,17.2,1.44,0.2554,0.66,0,0,0,0,13.8,0,0,33,0,0.297,80.47,136.89000000000001,0.13,996,2.1,59,0.6000000000000001 +2019,10,29,15,30,16.8,1.47,0.2816,0.66,0,0,0,0,13.9,0,0,0,0,0.296,83,130.27,0.13,996,2.2,59,0.5 +2019,10,29,16,30,16.5,1.5,0.3012,0.66,0,0,0,7,14,0,0,0,0,0.297,85.05,120.76,0.13,996,2.2,59,0.6000000000000001 +2019,10,29,17,30,16.2,1.53,0.3136,0.66,0,0,0,7,14,0,0,0,0,0.298,86.96000000000001,109.52,0.13,996,2.3000000000000003,60,0.6000000000000001 +2019,10,29,18,30,15.9,1.56,0.3225,0.66,0,0,0,7,14.100000000000001,0,0,0,0,0.299,88.84,97.29,0.13,996,2.3000000000000003,61,0.7000000000000001 +2019,10,29,19,30,16.7,1.58,0.33840000000000003,0.66,39,124,51,7,14.100000000000001,26,1,100,26,0.299,84.71000000000001,84.33,0.13,997,2.4000000000000004,57,0.9 +2019,10,29,20,30,18.6,1.6,0.3653,0.66,121,402,250,7,14.100000000000001,115,352,33,228,0.299,75.07000000000001,71.28,0.13,997,2.4000000000000004,53,1.2000000000000002 +2019,10,29,21,30,20.3,1.62,0.3935,0.66,177,562,475,7,13.700000000000001,111,0,0,111,0.299,65.77,57.99,0.13,997,2.4000000000000004,56,1.3 +2019,10,29,22,30,21.6,1.6600000000000001,0.4173,0.66,216,654,681,7,13.100000000000001,331,270,0,523,0.298,58.59,44.72,0.13,997,2.4000000000000004,62,1.3 +2019,10,29,23,30,22.1,1.69,0.4405,0.66,243,709,846,7,12.600000000000001,363,62,0,416,0.298,54.84,31.79,0.13,997,2.4000000000000004,64,1.3 +2019,10,30,0,30,22.900000000000002,1.67,0.4088,0.66,248,750,952,7,12.100000000000001,369,30,0,397,0.297,50.730000000000004,20.12,0.13,997,2.5,59,1.2000000000000002 +2019,10,30,1,30,23.400000000000002,1.7,0.4499,0.66,262,744,985,4,11.8,460,78,0,536,0.297,47.97,13.75,0.13,996,2.6,59,1.1 +2019,10,30,2,30,24.200000000000003,1.75,0.4731,0.66,266,724,950,7,11.4,249,18,33,266,0.298,44.77,19.1,0.13,995,2.6,65,1.2000000000000002 +2019,10,30,3,30,25.1,1.81,0.5008,0.66,256,684,845,7,11.100000000000001,436,153,0,568,0.3,41.57,30.51,0.13,994,2.6,70,1.4000000000000001 +2019,10,30,4,30,25.400000000000002,1.83,0.5173,0.66,236,616,684,7,10.700000000000001,329,229,0,495,0.302,39.7,43.37,0.13,993,2.5,70,1.6 +2019,10,30,5,30,24.8,1.84,0.5414,0.66,202,506,480,7,10.4,224,309,8,394,0.304,40.38,56.620000000000005,0.13,993,2.5,67,1.8 +2019,10,30,6,30,23.700000000000003,1.84,0.5602,0.66,140,343,258,7,10.3,140,321,83,250,0.305,42.86,69.9,0.13,993,2.5,64,1.9000000000000001 +2019,10,30,7,30,21.900000000000002,1.84,0.5751000000000001,0.66,44,112,58,7,10.5,42,95,100,54,0.306,48.27,82.98,0.13,994,2.5,58,1.4000000000000001 +2019,10,30,8,30,20.200000000000003,1.84,0.5940000000000001,0.66,0,0,0,7,11.100000000000001,0,0,0,0,0.307,55.660000000000004,95.94,0.13,995,2.4000000000000004,53,0.9 +2019,10,30,9,30,19.200000000000003,1.84,0.6088,0.66,0,0,0,7,11.5,0,0,0,0,0.306,60.86,108.21000000000001,0.13,995,2.5,51,0.8 +2019,10,30,10,30,18.5,1.84,0.6144000000000001,0.66,0,0,0,7,11.9,0,0,0,0,0.305,65.45,119.53,0.13,995,2.4000000000000004,50,0.7000000000000001 +2019,10,30,11,30,18,1.84,0.6033000000000001,0.66,0,0,0,0,12.4,0,0,0,0,0.304,69.64,129.2,0.13,995,2.4000000000000004,51,0.7000000000000001 +2019,10,30,12,30,17.5,1.84,0.5779000000000001,0.66,0,0,0,0,12.8,0,0,0,0,0.304,74.03,136.12,0.13,995,2.4000000000000004,52,0.6000000000000001 +2019,10,30,13,30,16.900000000000002,1.84,0.5506,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.304,78.56,138.84,0.13,994,2.3000000000000003,50,0.6000000000000001 +2019,10,30,14,30,16.3,1.83,0.5266000000000001,0.66,0,0,0,0,13.4,0,0,33,0,0.305,82.8,136.57,0.13,994,2.3000000000000003,46,0.6000000000000001 +2019,10,30,15,30,15.8,1.82,0.5072,0.66,0,0,0,0,13.5,0,0,0,0,0.305,86.27,129.99,0.13,993,2.3000000000000003,42,0.6000000000000001 +2019,10,30,16,30,15.4,1.81,0.4934,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.306,89.2,120.52,0.13,993,2.2,39,0.6000000000000001 +2019,10,30,17,30,15.100000000000001,1.8,0.4828,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.307,91.56,109.32000000000001,0.13,994,2.2,38,0.7000000000000001 +2019,10,30,18,30,15.100000000000001,1.8,0.4712,0.66,0,0,0,0,13.8,0,0,0,0,0.307,92,97.12,0.13,994,2.2,41,0.7000000000000001 +2019,10,30,19,30,16.1,1.79,0.45580000000000004,0.66,36,114,48,0,13.9,36,114,0,48,0.307,86.63,84.18,0.13,994,2.3000000000000003,43,0.8 +2019,10,30,20,30,18.6,1.78,0.4349,0.66,123,388,248,0,13.9,123,388,0,248,0.306,74.27,71.13,0.13,995,2.3000000000000003,43,1.2000000000000002 +2019,10,30,21,30,21.1,1.77,0.40850000000000003,0.66,171,574,476,0,13.600000000000001,187,478,0,441,0.306,62.07,57.85,0.13,995,2.3000000000000003,49,1.6 +2019,10,30,22,30,23,1.77,0.37620000000000003,0.66,194,695,689,0,12.700000000000001,275,432,0,583,0.305,52.33,44.57,0.13,995,2.3000000000000003,58,1.7000000000000002 +2019,10,30,23,30,23.900000000000002,1.77,0.3427,0.66,207,767,860,0,11.9,267,645,0,816,0.305,46.88,31.61,0.13,995,2.3000000000000003,62,1.8 +2019,10,31,0,30,26.200000000000003,1.56,0.1549,0.66,144,912,1002,0,11.200000000000001,144,912,0,1002,0.304,39.15,19.88,0.13,994,2.3000000000000003,69,2 +2019,10,31,1,30,27.200000000000003,1.56,0.1482,0.66,142,926,1043,0,10.700000000000001,174,861,0,1011,0.304,35.76,13.42,0.13,993,2.3000000000000003,70,2.3000000000000003 +2019,10,31,2,30,27.5,1.55,0.13870000000000002,0.66,138,924,1012,0,10.4,160,883,33,996,0.305,34.43,18.87,0.13,992,2.3000000000000003,71,2.6 +2019,10,31,3,30,27.400000000000002,1.55,0.1316,0.66,127,908,911,0,10.4,127,908,0,911,0.305,34.46,30.35,0.13,992,2.3000000000000003,71,2.8000000000000003 +2019,10,31,4,30,26.700000000000003,1.52,0.11900000000000001,0.66,114,872,749,7,10.4,297,426,0,607,0.305,36.02,43.24,0.13,991,2.3000000000000003,71,3 +2019,10,31,5,30,25.5,1.5,0.10830000000000001,0.66,97,804,541,0,10.700000000000001,104,775,0,532,0.305,39.38,56.5,0.13,991,2.3000000000000003,70,3 +2019,10,31,6,30,23.900000000000002,1.48,0.10160000000000001,0.66,75,668,306,0,11.200000000000001,78,651,0,303,0.306,44.96,69.78,0.13,992,2.3000000000000003,69,2.8000000000000003 +2019,10,31,7,30,22.1,1.46,0.10010000000000001,0.66,40,356,84,7,12,40,303,100,78,0.307,52.64,82.85000000000001,0.13,993,2.3000000000000003,68,2.3000000000000003 +2019,10,31,8,30,20.6,1.44,0.1003,0.66,0,0,0,7,12.8,0,0,0,0,0.308,60.99,95.78,0.13,993,2.2,66,1.8 +2019,10,31,9,30,19.700000000000003,1.43,0.0988,0.66,0,0,0,7,13.600000000000001,0,0,0,0,0.308,67.95,108.03,0.13,994,2.2,66,1.5 +2019,10,31,10,30,19,1.42,0.0949,0.66,0,0,0,7,14.200000000000001,0,0,0,0,0.309,73.64,119.31,0.13,994,2.2,67,1.1 +2019,10,31,11,30,18.400000000000002,1.41,0.0901,0.66,0,0,0,4,14.5,0,0,0,0,0.309,78.15,128.95,0.13,994,2.2,67,0.9 +2019,10,31,12,30,17.8,1.4000000000000001,0.08650000000000001,0.66,0,0,0,7,14.700000000000001,0,0,0,0,0.309,82.17,135.82,0.13,994,2.1,67,0.7000000000000001 +2019,10,31,13,30,17.400000000000002,1.4000000000000001,0.0852,0.66,0,0,0,0,14.8,0,0,0,0,0.308,84.88,138.52,0.13,994,2.2,67,0.7000000000000001 +2019,10,31,14,30,17.2,1.4000000000000001,0.08460000000000001,0.66,0,0,0,0,14.9,0,0,33,0,0.307,86.23,136.26,0.13,993,2.2,66,0.7000000000000001 +2019,10,31,15,30,17,1.42,0.0863,0.66,0,0,0,0,14.9,0,0,0,0,0.307,87.61,129.72,0.13,993,2.2,66,0.7000000000000001 +2019,10,31,16,30,16.8,1.44,0.0879,0.66,0,0,0,3,15,0,0,0,0,0.307,89.03,120.28,0.13,993,2.2,68,0.7000000000000001 +2019,10,31,17,30,16.7,1.45,0.0874,0.66,0,0,0,3,15,0,0,0,0,0.307,89.95,109.12,0.13,994,2.3000000000000003,69,0.7000000000000001 +2019,10,31,18,30,16.8,1.45,0.0908,0.66,0,0,0,7,15.100000000000001,0,0,0,0,0.306,89.71000000000001,96.94,0.13,994,2.3000000000000003,72,0.7000000000000001 +2019,10,31,19,30,18.1,1.46,0.09340000000000001,0.66,35,320,68,7,15.200000000000001,37,128,100,50,0.306,83.10000000000001,84.02,0.13,995,2.3000000000000003,73,1.1 +2019,10,31,20,30,20.3,1.48,0.0889,0.66,69,666,286,3,15.100000000000001,105,400,0,235,0.306,71.99,70.99,0.13,995,2.4000000000000004,72,1.8 +2019,10,31,21,30,22.1,1.52,0.0814,0.66,85,818,522,0,14.600000000000001,155,552,0,450,0.305,62.36,57.71,0.13,995,2.5,72,2.1 +2019,10,31,22,30,23.6,1.54,0.0772,0.66,96,894,734,7,14,253,449,0,574,0.304,55.03,44.43,0.13,995,2.6,73,2.2 +2019,10,31,23,30,24.3,1.52,0.07780000000000001,0.66,104,934,901,7,13.700000000000001,276,19,0,292,0.304,51.74,31.44,0.13,995,2.7,73,2.3000000000000003 +2020,11,1,0,30,27.400000000000002,0.89,0.061900000000000004,0.66,103,1008,1053,0,8.700000000000001,103,1008,0,1053,0.296,30.77,19.47,0.13,991,1.2000000000000002,264,2.4000000000000004 +2020,11,1,1,30,28.5,0.96,0.059000000000000004,0.66,102,1017,1094,0,8.5,102,1017,0,1094,0.297,28.53,12.85,0.13,990,1.2000000000000002,264,2.4000000000000004 +2020,11,1,2,30,29.3,1.03,0.0565,0.66,102,1011,1061,0,8.3,102,1011,33,1061,0.298,26.86,18.46,0.13,989,1.2000000000000002,262,2.4000000000000004 +2020,11,1,3,30,29.700000000000003,0.93,0.0654,0.66,101,985,953,0,8.1,101,985,0,953,0.299,25.85,30.080000000000002,0.13,989,1.2000000000000002,259,2.3000000000000003 +2020,11,1,4,30,29.5,0.96,0.0639,0.66,93,946,785,0,8.1,93,946,0,785,0.299,26.150000000000002,43.02,0.13,988,1.3,255,2.3000000000000003 +2020,11,1,5,30,28.900000000000002,1,0.061700000000000005,0.66,82,876,568,0,8.4,82,876,0,568,0.299,27.76,56.28,0.13,989,1.4000000000000001,250,2.1 +2020,11,1,6,30,27.5,1.05,0.061500000000000006,0.66,66,744,326,0,9.200000000000001,66,744,0,326,0.299,31.66,69.56,0.13,989,1.4000000000000001,245,1.6 +2020,11,1,7,30,24.900000000000002,1.09,0.0634,0.66,38,431,93,0,11.9,38,431,0,93,0.3,44.22,82.61,0.13,990,1.5,242,1 +2020,11,1,8,30,22.5,1.1,0.0664,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.3,53.59,95.51,0.13,991,1.6,237,0.8 +2020,11,1,9,30,21.200000000000003,1.08,0.06960000000000001,0.66,0,0,0,0,12.200000000000001,0,0,0,0,0.301,56.33,107.71000000000001,0.13,992,1.7000000000000002,225,0.8 +2020,11,1,10,30,20.3,1.04,0.0726,0.66,0,0,0,0,12.3,0,0,0,0,0.3,60.1,118.93,0.13,993,1.8,201,0.8 +2020,11,1,11,30,19.200000000000003,0.98,0.0765,0.66,0,0,0,0,12.700000000000001,0,0,0,0,0.297,65.83,128.49,0.13,994,1.9000000000000001,167,0.9 +2020,11,1,12,30,18.3,0.92,0.0838,0.66,0,0,0,0,13.3,0,0,0,0,0.294,72.45,135.29,0.13,994,2,143,0.9 +2020,11,1,13,30,17.6,0.8300000000000001,0.09870000000000001,0.66,0,0,0,0,14.100000000000001,0,0,0,0,0.293,79.72,137.95000000000002,0.13,994,2.2,131,1 +2020,11,1,14,30,17.3,0.76,0.1199,0.66,0,0,0,0,15,0,0,33,0,0.293,86.36,135.72,0.13,994,2.2,127,1 +2020,11,1,15,30,17.1,0.81,0.155,0.66,0,0,0,0,15.8,0,0,0,0,0.294,91.91,129.24,0.13,994,2.3000000000000003,131,0.9 +2020,11,1,16,30,17,0.81,0.1544,0.66,0,0,0,0,16.1,0,0,0,0,0.295,94.37,119.88,0.13,994,2.2,135,0.8 +2020,11,1,17,30,16.8,0.79,0.14350000000000002,0.66,0,0,0,0,16.1,0,0,0,0,0.296,95.57000000000001,108.78,0.13,995,2.2,138,0.7000000000000001 +2020,11,1,18,30,16.7,0.8200000000000001,0.1442,0.66,0,0,0,0,16,0,0,0,0,0.297,95.34,96.65,0.13,995,2.2,144,0.7000000000000001 +2020,11,1,19,30,17.5,0.84,0.1358,0.66,43,244,69,0,15.8,43,244,0,69,0.297,89.66,83.77,0.13,996,2.2,148,1.1 +2020,11,1,20,30,19.200000000000003,0.85,0.12440000000000001,0.66,84,610,285,0,15.5,84,610,0,285,0.298,79.22,70.75,0.13,996,2.2,143,1.8 +2020,11,1,21,30,21.200000000000003,0.88,0.1193,0.66,105,776,522,3,14.9,188,346,0,374,0.298,67.32000000000001,57.480000000000004,0.13,997,2.3000000000000003,138,2 +2020,11,1,22,30,23.1,0.9,0.11410000000000001,0.66,116,865,736,0,14.4,152,736,0,680,0.299,57.870000000000005,44.19,0.13,997,2.3000000000000003,135,1.9000000000000001 +2020,11,1,23,30,24,0.92,0.1072,0.66,123,915,906,0,14.200000000000001,267,614,0,792,0.3,54.17,31.16,0.13,997,2.3000000000000003,134,1.9000000000000001 +2020,11,2,0,30,26,1.08,0.0818,0.66,113,961,1020,0,14,298,600,0,864,0.305,47.7,19.25,0.12,997,2.3000000000000003,125,1.8 +2020,11,2,1,30,26.700000000000003,1.11,0.0834,0.66,116,966,1059,0,13.9,199,764,0,945,0.308,45.24,12.540000000000001,0.12,996,2.3000000000000003,120,1.8 +2020,11,2,2,30,27,1.1,0.0879,0.66,124,945,1022,0,13.8,154,892,33,1001,0.31,44.19,18.240000000000002,0.12,995,2.4000000000000004,115,2 +2020,11,2,3,30,26.900000000000002,0.96,0.1274,0.66,136,895,912,0,13.700000000000001,255,580,0,758,0.311,44.36,29.92,0.12,995,2.4000000000000004,111,2.2 +2020,11,2,4,30,26.400000000000002,0.88,0.14600000000000002,0.66,137,829,744,3,13.8,251,367,0,520,0.31,45.81,42.89,0.12,995,2.5,107,2.4000000000000004 +2020,11,2,5,30,25.5,0.77,0.1635,0.66,129,722,531,0,13.9,181,433,0,422,0.309,48.77,56.160000000000004,0.12,995,2.5,105,2.7 +2020,11,2,6,30,24.200000000000003,0.65,0.1822,0.66,107,537,296,0,14.100000000000001,118,375,0,250,0.309,53.36,69.43,0.12,995,2.5,105,2.8000000000000003 +2020,11,2,7,30,22.5,0.54,0.1922,0.66,55,201,81,0,14.4,55,201,0,81,0.31,60.13,82.48,0.12,996,2.5,107,2.4000000000000004 +2020,11,2,8,30,20.8,0.47000000000000003,0.1721,0.66,0,0,0,0,14.700000000000001,0,0,0,0,0.311,68.12,95.36,0.12,997,2.5,108,2 +2020,11,2,9,30,19.6,0.48,0.1461,0.66,0,0,0,0,14.700000000000001,0,0,0,0,0.311,73.44,107.53,0.12,998,2.4000000000000004,112,1.7000000000000002 +2020,11,2,10,30,18.7,0.52,0.1318,0.66,0,0,0,0,14.5,0,0,0,0,0.31,76.49,118.72,0.12,998,2.3000000000000003,118,1.6 +2020,11,2,11,30,17.900000000000002,0.55,0.1242,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.31,78.86,128.24,0.12,999,2.3000000000000003,123,1.4000000000000001 +2020,11,2,12,30,17.3,0.58,0.1207,0.66,0,0,0,0,13.9,0,0,0,0,0.31,80.33,135,0.12,999,2.2,128,1.3 +2020,11,2,13,30,16.8,0.61,0.11900000000000001,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.31,81.55,137.64000000000001,0.12,998,2.2,133,1.2000000000000002 +2020,11,2,14,30,16.2,0.62,0.11760000000000001,0.66,0,0,0,0,13.4,0,0,33,0,0.31,83.73,135.42000000000002,0.12,998,2.2,135,1 +2020,11,2,15,30,15.700000000000001,0.65,0.11710000000000001,0.66,0,0,0,0,13.3,0,0,0,0,0.311,85.78,128.98,0.12,997,2.2,136,0.9 +2020,11,2,16,30,15.3,0.68,0.1136,0.66,0,0,0,0,13.3,0,0,0,0,0.311,87.68,119.66,0.12,997,2.1,137,0.8 +2020,11,2,17,30,14.9,0.72,0.1078,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.311,89.55,108.59,0.12,997,2.1,140,0.7000000000000001 +2020,11,2,18,30,14.700000000000001,0.75,0.10060000000000001,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.309,90.33,96.48,0.12,998,2.1,147,0.7000000000000001 +2020,11,2,19,30,15.700000000000001,0.77,0.094,0.66,39,308,73,0,13.200000000000001,39,238,33,65,0.305,84.84,83.63,0.12,998,2,152,1.2000000000000002 +2020,11,2,20,30,17.8,0.79,0.0876,0.66,74,667,295,0,13,74,667,0,295,0.302,73.34,70.62,0.12,999,2,146,2 +2020,11,2,21,30,19.900000000000002,0.8,0.08320000000000001,0.66,92,822,535,0,12.3,92,822,0,535,0.3,61.690000000000005,57.35,0.12,999,2,135,2.4000000000000004 +2020,11,2,22,30,21.8,0.81,0.0799,0.66,102,904,752,0,11.9,102,904,0,752,0.299,53.27,44.06,0.12,998,2,129,2.3000000000000003 +2020,11,2,23,30,22.700000000000003,0.8200000000000001,0.07730000000000001,0.66,109,950,923,0,11.8,109,950,0,923,0.298,50.17,31.01,0.12,998,1.9000000000000001,126,2.2 +2020,11,3,0,30,24.900000000000002,0.73,0.09330000000000001,0.66,124,957,1029,0,11.9,124,957,0,1029,0.297,44.2,19.04,0.12,997,1.9000000000000001,124,2.1 +2020,11,3,1,30,26,0.7000000000000001,0.0975,0.66,128,964,1070,0,12,128,964,0,1070,0.296,41.71,12.22,0.12,996,1.9000000000000001,122,2 +2020,11,3,2,30,26.6,0.71,0.0946,0.66,126,958,1037,0,12,126,958,33,1037,0.294,40.15,18.02,0.12,995,1.9000000000000001,118,2 +2020,11,3,3,30,26.8,0.71,0.1008,0.66,122,934,933,0,11.8,122,934,0,933,0.293,39.17,29.77,0.12,995,1.9000000000000001,111,2.1 +2020,11,3,4,30,26.6,0.74,0.09570000000000001,0.66,110,896,768,0,11.5,110,896,0,768,0.293,38.95,42.76,0.12,994,1.9000000000000001,104,2.1 +2020,11,3,5,30,25.900000000000002,0.76,0.0932,0.66,97,821,556,0,11.3,97,821,0,556,0.293,40.06,56.04,0.12,994,1.9000000000000001,97,2.3000000000000003 +2020,11,3,6,30,24.5,0.76,0.093,0.66,78,679,318,0,11.200000000000001,78,679,0,318,0.293,43.29,69.3,0.12,994,2,91,2.4000000000000004 +2020,11,3,7,30,22.200000000000003,0.77,0.0922,0.66,44,362,92,0,11.5,44,362,0,92,0.294,50.800000000000004,82.34,0.12,995,2,87,1.9000000000000001 +2020,11,3,8,30,19.900000000000002,0.78,0.0912,0.66,0,0,0,0,12.5,0,0,0,0,0.295,62.58,95.2,0.12,995,2.1,87,1.4000000000000001 +2020,11,3,9,30,18.6,0.78,0.091,0.66,0,0,0,0,12.9,0,0,0,0,0.295,69.64,107.35000000000001,0.12,996,2.2,93,1.2000000000000002 +2020,11,3,10,30,17.7,0.78,0.09280000000000001,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.294,74.75,118.5,0.12,996,2.2,104,1 +2020,11,3,11,30,17,0.77,0.096,0.66,0,0,0,0,13.3,0,0,0,0,0.293,78.87,127.98,0.12,997,2.3000000000000003,114,0.8 +2020,11,3,12,30,16.400000000000002,0.76,0.09960000000000001,0.66,0,0,0,0,13.3,0,0,0,0,0.293,82.08,134.7,0.12,996,2.3000000000000003,124,0.7000000000000001 +2020,11,3,13,30,15.8,0.77,0.1028,0.66,0,0,0,0,13.3,0,0,0,0,0.291,85.19,137.33,0.12,996,2.3000000000000003,130,0.7000000000000001 +2020,11,3,14,30,15.3,0.78,0.1057,0.66,0,0,0,0,13.200000000000001,0,0,33,0,0.29,87.57000000000001,135.13,0.12,995,2.3000000000000003,135,0.6000000000000001 +2020,11,3,15,30,14.9,0.81,0.1078,0.66,0,0,0,0,13.200000000000001,0,0,0,0,0.289,89.34,128.72,0.12,994,2.3000000000000003,140,0.6000000000000001 +2020,11,3,16,30,14.5,0.85,0.1077,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.289,91.29,119.44,0.12,994,2.3000000000000003,147,0.6000000000000001 +2020,11,3,17,30,14.100000000000001,0.89,0.10640000000000001,0.66,0,0,0,0,13.100000000000001,0,0,0,0,0.289,93.58,108.41,0.12,994,2.3000000000000003,152,0.6000000000000001 +2020,11,3,18,30,13.9,0.92,0.1047,0.66,0,0,0,0,13,0,0,0,0,0.289,94.58,96.33,0.12,994,2.3000000000000003,156,0.6000000000000001 +2020,11,3,19,30,15,0.9400000000000001,0.10160000000000001,0.66,39,307,74,0,13,38,236,33,65,0.28800000000000003,88.09,83.49,0.12,994,2.3000000000000003,152,0.8 +2020,11,3,20,30,17.3,0.9500000000000001,0.0964,0.66,75,656,294,0,13,75,656,0,294,0.28700000000000003,76.10000000000001,70.49,0.12,995,2.3000000000000003,137,1.2000000000000002 +2020,11,3,21,30,19.700000000000003,0.97,0.0917,0.66,93,811,532,0,12.8,93,811,0,532,0.28600000000000003,64.53,57.230000000000004,0.12,995,2.3000000000000003,119,1.2000000000000002 +2020,11,3,22,30,21.900000000000002,0.99,0.0872,0.66,103,894,747,0,12.600000000000001,103,894,0,747,0.28500000000000003,55.43,43.93,0.12,994,2.3000000000000003,104,0.8 +2020,11,3,23,30,22.900000000000002,1.02,0.08320000000000001,0.66,110,940,917,0,12.600000000000001,110,940,0,917,0.28500000000000003,52.1,30.87,0.12,994,2.3000000000000003,96,0.6000000000000001 +2020,11,4,0,30,25.900000000000002,1.1500000000000001,0.060200000000000004,0.66,101,982,1030,0,12.4,101,982,0,1030,0.28400000000000003,43.21,18.830000000000002,0.13,993,2.3000000000000003,91,0.2 +2020,11,4,1,30,27.400000000000002,1.17,0.0575,0.66,99,992,1070,0,12.200000000000001,99,992,0,1070,0.28400000000000003,38.81,11.91,0.13,991,2.3000000000000003,62,0.2 +2020,11,4,2,30,28.400000000000002,1.21,0.054700000000000006,0.66,106,976,1035,0,12,106,976,33,1035,0.28500000000000003,36.14,17.8,0.13,990,2.3000000000000003,41,0.30000000000000004 +2020,11,4,3,30,28.900000000000002,1.07,0.09680000000000001,0.66,117,930,925,0,11.9,117,930,0,925,0.28500000000000003,35.06,29.62,0.13,989,2.4000000000000004,31,0.4 +2020,11,4,4,30,28.900000000000002,1.07,0.0952,0.66,108,889,762,0,12.100000000000001,108,889,0,762,0.28500000000000003,35.38,42.64,0.13,988,2.4000000000000004,25,0.6000000000000001 +2020,11,4,5,30,28.5,1.07,0.094,0.66,94,815,551,0,12.3,94,815,0,551,0.28500000000000003,36.67,55.92,0.13,988,2.5,24,0.7000000000000001 +2020,11,4,6,30,27.3,1.09,0.0931,0.66,75,678,316,0,12.600000000000001,75,678,0,316,0.28600000000000003,40.27,69.18,0.13,988,2.5,30,1 +2020,11,4,7,30,25,1.1,0.09240000000000001,0.66,42,373,93,0,13.8,42,373,0,93,0.28700000000000003,49.69,82.2,0.13,988,2.6,39,1.2000000000000002 +2020,11,4,8,30,22.400000000000002,1.11,0.0925,0.66,0,0,0,0,15.5,0,0,0,0,0.28800000000000003,65.1,95.04,0.13,988,2.6,45,1.3 +2020,11,4,9,30,20.6,1.11,0.09340000000000001,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.28800000000000003,73.13,107.17,0.13,989,2.6,50,1.3 +2020,11,4,10,30,19.6,1.11,0.09480000000000001,0.66,0,0,0,0,15.3,0,0,0,0,0.28800000000000003,76.41,118.29,0.13,989,2.6,51,1.1 +2020,11,4,11,30,18.8,1.09,0.0976,0.66,0,0,0,0,15.5,0,0,0,0,0.28800000000000003,81.18,127.73,0.13,989,2.6,47,0.9 +2020,11,4,12,30,18.1,1.07,0.1019,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.28800000000000003,85.93,134.41,0.13,989,2.6,44,0.8 +2020,11,4,13,30,17.5,1.04,0.10840000000000001,0.66,0,0,0,0,15.9,0,0,0,0,0.28800000000000003,90.11,137.02,0.13,989,2.6,39,0.7000000000000001 +2020,11,4,14,30,17,1.02,0.1174,0.66,0,0,0,0,16,0,0,33,0,0.28800000000000003,93.77,134.84,0.13,988,2.6,33,0.6000000000000001 +2020,11,4,15,30,16.6,1.03,0.1317,0.66,0,0,0,0,16.1,0,0,0,0,0.289,96.72,128.47,0.13,987,2.6,23,0.6000000000000001 +2020,11,4,16,30,16.400000000000002,1.07,0.1506,0.66,0,0,0,0,16.1,0,0,0,0,0.29,98.27,119.23,0.13,987,2.6,10,0.6000000000000001 +2020,11,4,17,30,16.3,1.1,0.1666,0.66,0,0,0,0,16.1,0,0,0,0,0.291,98.91,108.23,0.13,987,2.6,176,0.6000000000000001 +2020,11,4,18,30,16.3,1.1300000000000001,0.1752,0.66,0,0,0,0,16.1,0,0,0,0,0.291,98.79,96.17,0.13,987,2.6,342,0.7000000000000001 +2020,11,4,19,30,17.400000000000002,1.1400000000000001,0.1726,0.66,44,234,71,0,16.1,44,234,0,71,0.291,92.10000000000001,83.36,0.13,987,2.6,330,1.2000000000000002 +2020,11,4,20,30,19.8,1.1400000000000001,0.1587,0.66,90,580,285,0,16.2,90,580,0,285,0.291,79.84,70.37,0.13,987,2.7,323,2 +2020,11,4,21,30,22.700000000000003,1.16,0.14830000000000002,0.66,113,746,518,0,16.400000000000002,113,746,0,518,0.292,67.7,57.120000000000005,0.13,987,2.8000000000000003,320,2.2 +2020,11,4,22,30,25.6,1.17,0.1474,0.66,127,831,727,0,16.6,127,831,0,727,0.293,57.370000000000005,43.82,0.13,986,2.9000000000000004,319,2.2 +2020,11,4,23,30,27.1,1.17,0.1428,0.66,137,881,894,0,16.6,137,881,0,894,0.293,52.54,30.73,0.13,986,2.9000000000000004,319,2.3000000000000003 +2020,11,5,0,30,30.5,1.1500000000000001,0.15130000000000002,0.66,145,897,995,0,16.6,145,897,0,995,0.296,43.14,18.63,0.12,985,3.2,316,2.3000000000000003 +2020,11,5,1,30,31.900000000000002,1.1400000000000001,0.1472,0.66,145,904,1031,0,16.6,145,904,0,1031,0.297,40.050000000000004,11.61,0.12,983,3.4000000000000004,311,2.5 +2020,11,5,2,30,32.800000000000004,1.1300000000000001,0.1489,0.66,158,876,993,8,16.5,497,200,50,688,0.298,37.75,17.580000000000002,0.12,982,3.5,306,2.7 +2020,11,5,3,30,33.2,1.11,0.2278,0.66,183,801,880,3,16.1,313,353,0,620,0.299,36.03,29.47,0.12,981,3.5,300,2.9000000000000004 +2020,11,5,4,30,33,1.1300000000000001,0.2833,0.66,188,712,713,0,15.600000000000001,249,540,0,647,0.3,35.12,42.51,0.12,980,3.3000000000000003,294,2.9000000000000004 +2020,11,5,5,30,32.1,1.21,0.3433,0.66,170,599,507,3,15.200000000000001,183,162,0,274,0.3,36.04,55.800000000000004,0.12,980,3,284,2.5 +2020,11,5,6,30,30.400000000000002,1.33,0.33380000000000004,0.66,116,473,285,0,15.600000000000001,117,400,8,260,0.299,40.75,69.05,0.12,980,2.8000000000000003,266,2.2 +2020,11,5,7,30,27.700000000000003,1.43,0.24500000000000002,0.66,48,254,83,0,16.8,48,254,0,83,0.298,51.61,82.07000000000001,0.12,981,2.5,248,2.4000000000000004 +2020,11,5,8,30,25.200000000000003,1.37,0.1612,0.66,0,0,0,0,16.1,0,0,0,0,0.298,57.13,94.88,0.12,983,2.3000000000000003,239,2.8000000000000003 +2020,11,5,9,30,23.3,1.19,0.1149,0.66,0,0,0,0,15.4,0,0,0,0,0.299,60.97,106.98,0.12,984,2,234,2.9000000000000004 +2020,11,5,10,30,21.700000000000003,1.09,0.0886,0.66,0,0,0,0,13.9,0,0,0,0,0.298,61.160000000000004,118.07000000000001,0.12,986,1.5,231,2.7 +2020,11,5,11,30,20.1,1.11,0.0644,0.66,0,0,0,0,11.3,0,0,0,0,0.298,56.99,127.48,0.12,986,1.1,227,2.3000000000000003 +2020,11,5,12,30,18.6,1.21,0.0459,0.66,0,0,0,0,8.9,0,0,0,0,0.297,53.27,134.13,0.12,987,0.9,225,2 +2020,11,5,13,30,17.3,1.29,0.037200000000000004,0.66,0,0,0,0,7.6000000000000005,0,0,0,0,0.297,52.86,136.72,0.12,987,0.8,223,1.6 +2020,11,5,14,30,16.1,1.31,0.034,0.66,0,0,0,0,6.800000000000001,0,0,33,0,0.297,53.95,134.55,0.12,987,0.7000000000000001,222,1.4000000000000001 +2020,11,5,15,30,15.200000000000001,1.32,0.033,0.66,0,0,0,0,6.4,0,0,0,0,0.298,55.730000000000004,128.22,0.12,987,0.7000000000000001,225,1.1 +2020,11,5,16,30,14.4,1.33,0.0334,0.66,0,0,0,0,6.4,0,0,0,0,0.298,58.59,119.02,0.12,987,0.7000000000000001,229,0.9 +2020,11,5,17,30,13.700000000000001,1.34,0.034,0.66,0,0,0,0,6.5,0,0,0,0,0.299,61.71,108.06,0.12,987,0.8,235,0.9 +2020,11,5,18,30,13.4,1.36,0.0345,0.66,0,0,0,0,6.6000000000000005,0,0,0,0,0.299,63.52,96.03,0.12,988,0.8,236,0.8 +2020,11,5,19,30,14.600000000000001,1.3900000000000001,0.0347,0.66,32,501,91,0,7.1000000000000005,31,459,8,85,0.3,60.84,83.23,0.12,989,0.9,229,1.1 +2020,11,5,20,30,17.3,1.42,0.0347,0.66,55,799,325,0,6.800000000000001,55,799,0,325,0.3,50.24,70.26,0.12,990,1,195,1.5 +2020,11,5,21,30,20,1.43,0.0349,0.66,68,923,571,0,7.300000000000001,68,923,0,571,0.299,43.67,57.01,0.12,990,1,154,1.7000000000000002 +2020,11,5,22,30,22.200000000000003,1.43,0.035,0.66,77,983,788,0,7.5,77,983,33,788,0.299,38.89,43.71,0.12,990,1.1,136,1.6 +2020,11,5,23,30,23.200000000000003,1.43,0.0346,0.66,82,1020,960,0,7.6000000000000005,82,1020,0,960,0.298,36.83,30.6,0.12,990,1.1,132,1.5 +2020,11,6,0,30,25.6,1.27,0.040600000000000004,0.66,90,1030,1067,0,7.6000000000000005,90,1030,0,1067,0.297,31.810000000000002,18.44,0.12,989,1.2000000000000002,122,1.1 +2020,11,6,1,30,26.900000000000002,1.28,0.0417,0.66,91,1033,1104,0,7.4,91,1033,0,1104,0.296,29.14,11.31,0.12,989,1.3,107,0.7000000000000001 +2020,11,6,2,30,27.900000000000002,1.3,0.0427,0.66,94,1021,1068,0,7.2,94,1021,33,1068,0.295,27.01,17.37,0.12,988,1.4000000000000001,81,0.5 +2020,11,6,3,30,28.3,1.21,0.056400000000000006,0.66,97,991,961,0,7.1000000000000005,97,991,0,961,0.294,26.28,29.32,0.12,987,1.4000000000000001,64,0.5 +2020,11,6,4,30,28.3,1.22,0.060500000000000005,0.66,92,948,792,0,7.300000000000001,92,948,0,792,0.294,26.650000000000002,42.38,0.12,987,1.5,63,0.6000000000000001 +2020,11,6,5,30,27.6,1.22,0.06470000000000001,0.66,83,874,576,0,7.7,83,874,0,576,0.294,28.46,55.67,0.12,987,1.6,61,0.8 +2020,11,6,6,30,26.200000000000003,1.25,0.066,0.66,68,739,334,0,8.3,68,739,0,334,0.293,32.12,68.92,0.12,988,1.7000000000000002,60,1.2000000000000002 +2020,11,6,7,30,23.5,1.22,0.0755,0.66,42,428,102,0,9.9,42,428,0,102,0.294,42.230000000000004,81.93,0.12,989,1.8,64,1.5 +2020,11,6,8,30,20.900000000000002,1.16,0.0843,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.294,59.21,94.72,0.12,990,1.9000000000000001,70,1.6 +2020,11,6,9,30,19.5,1.04,0.09820000000000001,0.66,0,0,0,0,13.3,0,0,0,0,0.294,67.43,106.8,0.12,991,2,78,1.4000000000000001 +2020,11,6,10,30,18.8,0.92,0.12290000000000001,0.66,0,0,0,0,13.9,0,0,33,0,0.294,73.35000000000001,117.86,0.12,992,2.1,83,1.2000000000000002 +2020,11,6,11,30,18.400000000000002,0.81,0.1524,0.66,0,0,0,0,14.5,0,0,0,0,0.295,78.18,127.23,0.12,992,2.2,85,1 +2020,11,6,12,30,18,0.73,0.17800000000000002,0.66,0,0,0,0,14.9,0,0,0,0,0.295,82.08,133.84,0.12,992,2.2,86,0.9 +2020,11,6,13,30,17.8,0.7000000000000001,0.19110000000000002,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.295,84.4,136.42000000000002,0.12,992,2.2,92,0.8 +2020,11,6,14,30,17.5,0.6900000000000001,0.19210000000000002,0.66,0,0,0,0,15.100000000000001,0,0,33,0,0.295,85.79,134.27,0.12,992,2.2,102,0.8 +2020,11,6,15,30,17.2,0.68,0.1923,0.66,0,0,0,0,14.9,0,0,0,0,0.295,86.47,127.98,0.12,992,2.1,111,0.7000000000000001 +2020,11,6,16,30,17,0.68,0.1928,0.66,0,0,0,3,14.700000000000001,0,0,0,0,0.296,86.23,118.82000000000001,0.12,992,2.1,118,0.7000000000000001 +2020,11,6,17,30,16.7,0.6900000000000001,0.19240000000000002,0.66,0,0,0,0,14.4,0,0,0,0,0.297,86.34,107.89,0.12,992,2.1,120,0.6000000000000001 +2020,11,6,18,30,16.6,0.7000000000000001,0.1915,0.66,0,0,0,0,14.200000000000001,0,0,0,0,0.298,85.53,95.88,0.12,993,2.1,119,0.7000000000000001 +2020,11,6,19,30,17.400000000000002,0.71,0.18730000000000002,0.66,50,202,74,0,13.9,47,156,17,66,0.298,80.12,83.11,0.12,993,2,113,1 +2020,11,6,20,30,19,0.73,0.1789,0.66,103,551,290,0,13.3,117,384,0,247,0.297,69.67,70.15,0.12,994,2,99,1.2000000000000002 +2020,11,6,21,30,21,0.74,0.1787,0.66,132,721,526,0,13.100000000000001,196,435,0,433,0.296,60.730000000000004,56.910000000000004,0.12,994,2,80,1.2000000000000002 +2020,11,6,22,30,22.8,0.76,0.1776,0.66,151,814,740,0,13.200000000000001,151,814,0,740,0.295,54.77,43.6,0.12,994,2,66,1 +2020,11,6,23,30,23.700000000000003,0.8,0.1761,0.66,162,868,910,2,13.200000000000001,375,316,0,647,0.295,51.78,30.48,0.12,994,2,61,0.9 +2020,11,7,0,30,25.6,0.8200000000000001,0.3347,0.66,244,784,989,0,12.9,307,645,0,920,0.294,45.36,18.26,0.12,994,2.2,49,0.6000000000000001 +2020,11,7,1,30,26.3,0.87,0.33740000000000003,0.66,245,798,1028,0,12.5,391,462,0,844,0.293,42.410000000000004,11.02,0.12,993,2.3000000000000003,59,0.6000000000000001 +2020,11,7,2,30,27,0.9,0.3236,0.66,219,817,1000,0,12.3,352,464,33,795,0.293,40.09,17.16,0.12,993,2.4000000000000004,79,0.7000000000000001 +2020,11,7,3,30,27.200000000000003,0.92,0.2167,0.66,181,831,907,3,12.200000000000001,312,330,0,600,0.292,39.480000000000004,29.18,0.12,992,2.5,87,1.1 +2020,11,7,4,30,26.6,0.92,0.23320000000000002,0.66,174,764,740,0,12.4,174,764,0,740,0.293,41.24,42.25,0.12,992,2.6,84,1.6 +2020,11,7,5,30,25.5,0.91,0.24600000000000002,0.66,161,652,530,0,12.8,161,652,0,530,0.292,45.27,55.550000000000004,0.12,992,2.7,79,2.3000000000000003 +2020,11,7,6,30,23.8,0.9,0.2823,0.66,132,456,297,0,13.5,132,456,0,297,0.292,52.42,68.79,0.12,993,2.8000000000000003,76,2.7 +2020,11,7,7,30,21.900000000000002,0.88,0.3083,0.66,63,152,85,0,14.200000000000001,63,152,0,85,0.293,61.79,81.78,0.12,994,2.9000000000000004,75,2.7 +2020,11,7,8,30,20.200000000000003,0.86,0.31420000000000003,0.66,0,0,0,0,14.8,0,0,0,0,0.294,71.33,94.56,0.12,995,2.9000000000000004,78,2.4000000000000004 +2020,11,7,9,30,19.3,0.86,0.32880000000000004,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.295,76.91,106.62,0.12,996,2.9000000000000004,85,2 +2020,11,7,10,30,18.8,0.86,0.3173,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.296,79.78,117.65,0.12,997,2.8000000000000003,93,1.6 +2020,11,7,11,30,18.400000000000002,0.86,0.28700000000000003,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.296,81.74,126.98,0.12,997,2.8000000000000003,101,1.4000000000000001 +2020,11,7,12,30,18.2,0.85,0.2565,0.66,0,0,0,3,15.100000000000001,0,0,0,0,0.295,82.26,133.56,0.12,997,2.7,106,1.3 +2020,11,7,13,30,17.900000000000002,0.88,0.23190000000000002,0.66,0,0,0,3,14.9,0,0,0,0,0.295,82.81,136.13,0.12,997,2.6,110,1.4000000000000001 +2020,11,7,14,30,17.7,0.9,0.2086,0.66,0,0,0,3,14.700000000000001,0,0,33,0,0.296,82.82000000000001,134,0.12,997,2.6,114,1.3 +2020,11,7,15,30,17.3,0.91,0.1922,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.296,84.31,127.74000000000001,0.12,997,2.5,118,1.2000000000000002 +2020,11,7,16,30,17,0.9,0.1822,0.66,0,0,0,0,14.5,0,0,0,0,0.296,85.43,118.62,0.12,997,2.5,122,1.1 +2020,11,7,17,30,16.7,0.87,0.1754,0.66,0,0,0,3,14.5,0,0,0,0,0.295,87.04,107.72,0.12,997,2.4000000000000004,123,1.1 +2020,11,7,18,30,16.6,0.8300000000000001,0.1701,0.66,0,0,0,3,14.600000000000001,0,0,0,0,0.295,88,95.75,0.12,998,2.4000000000000004,125,1.2000000000000002 +2020,11,7,19,30,17.3,0.77,0.165,0.66,49,233,77,3,14.700000000000001,22,49,67,28,0.294,84.69,83,0.12,998,2.4000000000000004,126,1.8 +2020,11,7,20,30,18.7,0.75,0.1482,0.66,95,584,294,3,14.600000000000001,59,0,33,59,0.294,77.27,70.04,0.12,999,2.4000000000000004,125,2.7 +2020,11,7,21,30,20.3,0.72,0.14600000000000002,0.66,121,744,528,3,14,144,2,0,145,0.294,67.21000000000001,56.81,0.12,999,2.4000000000000004,123,3.1 +2020,11,7,22,30,21.700000000000003,0.68,0.1492,0.66,138,830,740,3,13.5,100,0,0,100,0.295,59.78,43.5,0.12,999,2.4000000000000004,120,3.2 +2020,11,7,23,30,22.3,0.65,0.14730000000000001,0.66,149,880,908,3,13.3,116,2,0,118,0.296,56.730000000000004,30.36,0.12,999,2.4000000000000004,119,3.2 +2020,11,8,0,30,23.6,0.6900000000000001,0.1647,0.66,161,897,1014,3,13.200000000000001,97,1,0,98,0.297,52.03,18.09,0.13,999,2.4000000000000004,116,3.2 +2020,11,8,1,30,24.1,0.6900000000000001,0.15460000000000002,0.66,159,913,1056,3,13.100000000000001,114,2,0,116,0.298,50.13,10.73,0.13,998,2.4000000000000004,113,3.2 +2020,11,8,2,30,24.1,0.66,0.14450000000000002,0.66,157,906,1024,8,12.9,248,12,33,259,0.299,49.52,16.96,0.13,998,2.4000000000000004,112,3.2 +2020,11,8,3,30,23.700000000000003,0.67,0.16190000000000002,0.66,158,872,920,3,12.700000000000001,279,19,0,296,0.299,49.99,29.03,0.13,998,2.4000000000000004,111,3.3000000000000003 +2020,11,8,4,30,23.3,0.65,0.16390000000000002,0.66,147,824,758,3,12.4,294,66,0,343,0.3,50.19,42.13,0.13,998,2.3000000000000003,111,3.3000000000000003 +2020,11,8,5,30,22.5,0.64,0.15910000000000002,0.66,127,747,551,2,12,221,332,0,409,0.301,51.38,55.42,0.13,998,2.3000000000000003,111,3.2 +2020,11,8,6,30,21.400000000000002,0.67,0.1506,0.66,98,609,320,8,11.600000000000001,146,189,0,215,0.302,53.74,68.66,0.13,998,2.2,110,3 +2020,11,8,7,30,20.1,0.71,0.13670000000000002,0.66,53,319,99,0,11.4,53,303,8,97,0.302,57.13,81.64,0.13,999,2.1,108,2.4000000000000004 +2020,11,8,8,30,18.7,0.73,0.12150000000000001,0.66,0,0,0,3,11.3,0,0,0,0,0.303,62.29,94.4,0.13,1000,2.1,107,1.7000000000000002 +2020,11,8,9,30,17.7,0.76,0.1092,0.66,0,0,0,8,11.700000000000001,0,0,0,0,0.302,67.82000000000001,106.43,0.13,1000,2,107,1.3 +2020,11,8,10,30,17,0.78,0.1013,0.66,0,0,0,8,11.8,0,0,0,0,0.302,71.44,117.43,0.13,1001,1.9000000000000001,111,1.2000000000000002 +2020,11,8,11,30,16.400000000000002,0.79,0.09670000000000001,0.66,0,0,0,0,11.8,0,0,0,0,0.301,74.13,126.73,0.13,1001,1.8,116,1.2000000000000002 +2020,11,8,12,30,15.9,0.78,0.09290000000000001,0.66,0,0,0,0,11.8,0,0,0,0,0.3,76.54,133.28,0.13,1001,1.7000000000000002,120,1 +2020,11,8,13,30,15.4,0.76,0.0893,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.3,78.64,135.84,0.13,1000,1.7000000000000002,124,0.9 +2020,11,8,14,30,15,0.73,0.08700000000000001,0.66,0,0,0,0,11.600000000000001,0,0,33,0,0.299,80.28,133.73,0.13,1000,1.6,127,0.8 +2020,11,8,15,30,14.600000000000001,0.71,0.0859,0.66,0,0,0,0,11.5,0,0,0,0,0.298,81.54,127.51,0.13,999,1.6,129,0.8 +2020,11,8,16,30,14.3,0.7000000000000001,0.0853,0.66,0,0,0,3,11.3,0,0,0,0,0.297,82.43,118.43,0.13,999,1.5,131,0.8 +2020,11,8,17,30,14,0.7000000000000001,0.0862,0.66,0,0,0,0,11.200000000000001,0,0,0,0,0.297,83.02,107.56,0.13,999,1.5,133,0.8 +2020,11,8,18,30,14,0.6900000000000001,0.08610000000000001,0.66,0,0,0,0,11,0,0,0,0,0.297,82.01,95.62,0.13,999,1.4000000000000001,135,0.8 +2020,11,8,19,30,15.3,0.68,0.0853,0.66,43,363,88,0,11,39,165,50,59,0.296,75.68,82.88,0.13,999,1.4000000000000001,134,1.3 +2020,11,8,20,30,17.900000000000002,0.68,0.082,0.66,75,702,316,0,10.9,87,618,0,299,0.296,63.45,69.94,0.13,1000,1.4000000000000001,125,2.1 +2020,11,8,21,30,20.200000000000003,0.68,0.0796,0.66,93,847,558,0,10.3,93,847,0,558,0.297,53.03,56.72,0.13,1000,1.4000000000000001,115,2.6 +2020,11,8,22,30,21.8,0.6900000000000001,0.0796,0.66,105,922,775,0,10,105,922,0,775,0.297,47,43.410000000000004,0.13,999,1.4000000000000001,112,2.7 +2020,11,8,23,30,22.6,0.71,0.078,0.66,111,965,945,0,9.9,165,845,0,895,0.297,44.44,30.25,0.13,999,1.5,111,2.7 +2020,11,9,0,30,24.400000000000002,0.71,0.0694,0.66,112,991,1055,0,9.8,314,620,0,904,0.297,39.65,17.92,0.12,999,1.6,108,2.6 +2020,11,9,1,30,25.200000000000003,0.76,0.0734,0.66,115,995,1094,3,9.700000000000001,289,425,0,707,0.297,37.58,10.44,0.12,998,1.6,106,2.6 +2020,11,9,2,30,25.6,0.77,0.0762,0.66,121,977,1056,3,9.600000000000001,388,296,33,671,0.297,36.53,16.76,0.12,997,1.7000000000000002,104,2.7 +2020,11,9,3,30,25.5,0.78,0.1072,0.66,130,932,946,0,9.600000000000001,202,779,0,884,0.297,36.550000000000004,28.89,0.12,996,1.8,101,2.8000000000000003 +2020,11,9,4,30,24.900000000000002,0.79,0.1206,0.66,127,878,779,3,9.5,323,257,0,514,0.298,37.68,42,0.12,996,1.8,99,2.9000000000000004 +2020,11,9,5,30,24,0.79,0.1253,0.66,113,798,567,0,9.600000000000001,113,798,0,567,0.299,39.980000000000004,55.300000000000004,0.12,996,1.8,98,3 +2020,11,9,6,30,22.700000000000003,0.8,0.12440000000000001,0.66,91,657,331,0,9.8,91,657,0,331,0.3,43.82,68.53,0.12,996,1.8,95,2.9000000000000004 +2020,11,9,7,30,20.900000000000002,0.79,0.1158,0.66,51,367,105,0,10.100000000000001,51,367,0,105,0.3,50.09,81.5,0.12,997,1.8,91,2.4000000000000004 +2020,11,9,8,30,19,0.79,0.1022,0.66,0,0,0,0,10.8,0,0,0,0,0.301,58.870000000000005,94.24,0.12,998,1.8,88,1.6 +2020,11,9,9,30,17.8,0.79,0.09230000000000001,0.66,0,0,0,0,11.4,0,0,0,0,0.301,66.03,106.25,0.12,998,1.8,89,1.2000000000000002 +2020,11,9,10,30,17,0.8,0.0833,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.301,70.57000000000001,117.22,0.12,999,1.7000000000000002,93,1 +2020,11,9,11,30,16.400000000000002,0.8300000000000001,0.0752,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.301,73.65,126.48,0.12,999,1.7000000000000002,99,0.8 +2020,11,9,12,30,15.8,0.86,0.06860000000000001,0.66,0,0,0,0,11.700000000000001,0,0,0,0,0.3,76.45,133.01,0.12,998,1.7000000000000002,106,0.7000000000000001 +2020,11,9,13,30,15.3,0.89,0.0644,0.66,0,0,0,0,11.600000000000001,0,0,0,0,0.299,78.59,135.55,0.12,998,1.7000000000000002,113,0.7000000000000001 +2020,11,9,14,30,14.9,0.91,0.061900000000000004,0.66,0,0,0,0,11.5,0,0,33,0,0.299,80.14,133.46,0.12,997,1.7000000000000002,122,0.7000000000000001 +2020,11,9,15,30,14.4,0.92,0.0606,0.66,0,0,0,0,11.4,0,0,0,0,0.298,82.4,127.29,0.12,996,1.7000000000000002,132,0.7000000000000001 +2020,11,9,16,30,14,0.93,0.0603,0.66,0,0,0,0,11.4,0,0,0,0,0.299,84.46000000000001,118.24000000000001,0.12,996,1.7000000000000002,142,0.7000000000000001 +2020,11,9,17,30,13.600000000000001,0.9400000000000001,0.0601,0.66,0,0,0,0,11.4,0,0,0,0,0.299,86.8,107.41,0.12,997,1.7000000000000002,149,0.7000000000000001 +2020,11,9,18,30,13.600000000000001,0.9500000000000001,0.0601,0.66,0,0,0,0,11.4,0,0,0,0,0.3,86.76,95.49,0.12,997,1.7000000000000002,157,0.7000000000000001 +2020,11,9,19,30,14.9,0.96,0.0608,0.66,38,422,91,0,11.600000000000001,40,361,17,85,0.3,80.76,82.78,0.12,998,1.7000000000000002,159,1 +2020,11,9,20,30,17.7,0.97,0.0604,0.66,66,734,319,0,11.600000000000001,66,734,0,319,0.301,67.48,69.85000000000001,0.12,998,1.7000000000000002,140,1.6 +2020,11,9,21,30,20.3,0.98,0.0603,0.66,82,868,559,0,11.200000000000001,82,868,0,559,0.303,55.94,56.63,0.12,999,1.7000000000000002,119,1.9000000000000001 +2020,11,9,22,30,22.200000000000003,0.99,0.0603,0.66,92,941,776,0,10.9,112,888,0,758,0.304,48.72,43.33,0.12,998,1.6,114,2 +2020,11,9,23,30,23,1.02,0.057100000000000005,0.66,97,983,947,0,10.8,125,925,0,925,0.304,45.97,30.150000000000002,0.12,998,1.6,113,2 +2020,11,10,0,30,25,0.67,0.10650000000000001,0.66,133,961,1048,0,10.600000000000001,222,778,0,963,0.305,40.31,17.77,0.13,997,1.6,106,2.1 +2020,11,10,1,30,26,0.6900000000000001,0.1032,0.66,132,971,1088,2,10.3,483,184,0,664,0.305,37.4,10.16,0.13,996,1.7000000000000002,100,2.2 +2020,11,10,2,30,26.5,0.73,0.0981,0.66,127,969,1056,3,10.100000000000001,416,92,33,504,0.304,35.6,16.56,0.13,995,1.7000000000000002,94,2.4000000000000004 +2020,11,10,3,30,26.6,0.76,0.0912,0.66,119,953,955,0,9.9,320,478,0,739,0.302,35.03,28.740000000000002,0.13,995,1.7000000000000002,89,2.5 +2020,11,10,4,30,26.200000000000003,0.77,0.0889,0.66,110,913,790,0,10,110,913,0,790,0.301,36.14,41.87,0.13,994,1.7000000000000002,84,2.6 +2020,11,10,5,30,25.3,0.78,0.0882,0.66,98,841,578,0,10.3,98,841,0,578,0.299,38.93,55.17,0.13,994,1.8,80,2.5 +2020,11,10,6,30,23.900000000000002,0.81,0.085,0.66,77,715,340,0,10.700000000000001,77,715,0,340,0.298,43.480000000000004,68.4,0.13,994,1.8,76,2.4000000000000004 +2020,11,10,7,30,21.900000000000002,0.85,0.0799,0.66,46,434,111,0,11.3,46,434,0,111,0.298,51.04,81.36,0.13,995,1.8,70,1.8 +2020,11,10,8,30,19.900000000000002,0.89,0.0745,0.66,0,0,0,0,12.600000000000001,0,0,0,0,0.298,62.67,94.08,0.13,996,1.8,66,1.1 +2020,11,10,9,30,18.6,0.93,0.07050000000000001,0.66,0,0,0,0,13.3,0,0,0,0,0.298,71.35000000000001,106.07000000000001,0.13,996,1.8,64,0.9 +2020,11,10,10,30,17.7,0.96,0.0688,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.297,76.91,117.01,0.13,996,1.7000000000000002,64,0.7000000000000001 +2020,11,10,11,30,17,0.98,0.0688,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.295,81,126.24000000000001,0.13,997,1.7000000000000002,66,0.7000000000000001 +2020,11,10,12,30,16.5,1,0.07010000000000001,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.293,83.42,132.73,0.13,996,1.8,69,0.6000000000000001 +2020,11,10,13,30,16,1,0.0718,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.29,85.94,135.27,0.13,996,1.8,74,0.6000000000000001 +2020,11,10,14,30,15.700000000000001,1,0.0736,0.66,0,0,0,0,13.600000000000001,0,0,33,0,0.289,87.37,133.2,0.13,995,1.8,80,0.7000000000000001 +2020,11,10,15,30,15.5,1,0.0755,0.66,0,0,0,0,13.600000000000001,0,0,0,0,0.289,88.25,127.07000000000001,0.13,995,1.9000000000000001,90,0.7000000000000001 +2020,11,10,16,30,15.3,1,0.0772,0.66,0,0,0,0,13.5,0,0,0,0,0.289,89.13,118.06,0.13,995,1.9000000000000001,102,0.7000000000000001 +2020,11,10,17,30,15.100000000000001,1,0.0785,0.66,0,0,0,0,13.5,0,0,0,0,0.289,90.10000000000001,107.26,0.13,995,2,111,0.7000000000000001 +2020,11,10,18,30,15.100000000000001,1,0.07930000000000001,0.66,0,0,0,0,13.4,0,0,0,0,0.289,89.85000000000001,95.37,0.13,995,2,112,0.7000000000000001 +2020,11,10,19,30,16.400000000000002,1,0.07880000000000001,0.66,40,386,89,0,13.600000000000001,40,386,0,89,0.289,83.28,82.68,0.13,996,2,104,0.8 +2020,11,10,20,30,19,1,0.078,0.66,71,702,314,0,13.8,71,702,0,314,0.289,71.62,69.76,0.13,997,2,88,0.9 +2020,11,10,21,30,21.5,1,0.07640000000000001,0.66,88,843,553,0,13.100000000000001,88,843,0,553,0.289,58.86,56.550000000000004,0.13,997,2,76,1 +2020,11,10,22,30,23.5,1.02,0.0745,0.66,99,918,768,0,12.5,140,804,0,726,0.289,49.95,43.25,0.13,996,2,76,1.1 +2020,11,10,23,30,24.400000000000002,1.02,0.07300000000000001,0.66,106,960,937,0,12.100000000000001,106,960,0,937,0.289,46.230000000000004,30.060000000000002,0.13,996,2,78,1.1 +2020,11,11,0,30,26.700000000000003,1.21,0.042100000000000005,0.66,92,1008,1053,0,11.9,92,1008,0,1053,0.289,39.800000000000004,17.62,0.12,995,2,79,1.4000000000000001 +2020,11,11,1,30,27.700000000000003,1.22,0.042800000000000005,0.66,93,1014,1092,0,11.8,93,1014,0,1092,0.29,37.160000000000004,9.89,0.12,994,2,76,1.7000000000000002 +2020,11,11,2,30,28.200000000000003,1.22,0.043000000000000003,0.66,101,997,1058,0,11.600000000000001,231,749,33,950,0.29,35.69,16.36,0.12,993,2,73,1.9000000000000001 +2020,11,11,3,30,28.1,0.84,0.085,0.66,114,952,950,0,11.5,139,879,0,911,0.291,35.730000000000004,28.6,0.12,992,2,70,2.1 +2020,11,11,4,30,27.6,0.84,0.08560000000000001,0.66,107,912,787,0,11.600000000000001,107,912,0,787,0.292,36.89,41.75,0.12,992,2,68,2.3000000000000003 +2020,11,11,5,30,26.700000000000003,0.84,0.08510000000000001,0.66,94,841,576,0,11.600000000000001,94,841,0,576,0.293,39.09,55.050000000000004,0.12,991,2,66,2.3000000000000003 +2020,11,11,6,30,25.3,0.86,0.084,0.66,77,714,341,0,11.8,77,714,0,341,0.294,43.04,68.26,0.12,992,2,62,2.3000000000000003 +2020,11,11,7,30,23.1,0.9,0.0804,0.66,46,435,112,0,12.3,46,435,0,112,0.295,50.49,81.21000000000001,0.12,992,2,59,1.8 +2020,11,11,8,30,21,0.93,0.0775,0.66,0,0,0,0,13.5,0,0,0,0,0.296,62.13,93.92,0.12,992,2,58,1.2000000000000002 +2020,11,11,9,30,19.6,0.9400000000000001,0.077,0.66,0,0,0,0,14,0,0,0,0,0.298,70.31,105.88,0.12,993,2.1,57,0.9 +2020,11,11,10,30,18.7,0.9500000000000001,0.0805,0.66,0,0,0,0,14.3,0,0,0,0,0.299,75.45,116.79,0.12,993,2.1,54,0.8 +2020,11,11,11,30,18,0.97,0.0849,0.66,0,0,0,0,14.4,0,0,0,0,0.3,79.69,126,0.12,993,2.2,51,0.7000000000000001 +2020,11,11,12,30,17.400000000000002,0.98,0.0888,0.66,0,0,0,0,14.5,0,0,0,0,0.301,83.08,132.47,0.12,993,2.3000000000000003,49,0.7000000000000001 +2020,11,11,13,30,16.900000000000002,0.97,0.0913,0.66,0,0,0,0,14.5,0,0,0,0,0.301,85.7,135,0.12,992,2.4000000000000004,48,0.6000000000000001 +2020,11,11,14,30,16.5,0.9400000000000001,0.0945,0.66,0,0,0,0,14.5,0,0,33,0,0.3,87.98,132.95,0.12,992,2.4000000000000004,47,0.6000000000000001 +2020,11,11,15,30,16.2,0.92,0.0956,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.301,90,126.85000000000001,0.12,991,2.4000000000000004,44,0.6000000000000001 +2020,11,11,16,30,15.8,0.92,0.09330000000000001,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.302,92.49,117.89,0.12,991,2.3000000000000003,43,0.6000000000000001 +2020,11,11,17,30,15.600000000000001,0.96,0.0925,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.303,93.94,107.12,0.12,991,2.3000000000000003,41,0.6000000000000001 +2020,11,11,18,30,15.8,0.99,0.0971,0.66,0,0,0,0,14.700000000000001,0,0,0,0,0.304,93.12,95.25,0.12,992,2.2,196,0.4 +2020,11,11,19,30,17.1,1.01,0.10060000000000001,0.66,43,348,88,0,14.8,43,348,0,88,0.304,86.28,82.58,0.12,994,2.3000000000000003,349,0.4 +2020,11,11,20,30,19.5,1.02,0.0976,0.66,77,670,310,0,14.9,100,491,0,271,0.304,74.92,69.68,0.12,994,2.3000000000000003,180,0.9 +2020,11,11,21,30,21.900000000000002,1.04,0.0944,0.66,95,817,546,0,14.4,95,817,0,546,0.303,62.5,56.480000000000004,0.12,994,2.3000000000000003,22,1.4000000000000001 +2020,11,11,22,30,24,1.08,0.08950000000000001,0.66,106,896,759,0,13.8,145,772,0,708,0.303,52.870000000000005,43.17,0.12,993,2.4000000000000004,35,1.6 +2020,11,11,23,30,25,1.1,0.0879,0.66,113,940,927,0,13.100000000000001,113,940,0,927,0.302,47.54,29.97,0.12,993,2.4000000000000004,40,1.8 +2020,11,12,0,30,27.1,1,0.1226,0.66,136,932,1025,0,12.600000000000001,136,932,0,1025,0.302,40.72,17.48,0.12,991,2.5,44,1.9000000000000001 +2020,11,12,1,30,27.900000000000002,1,0.12610000000000002,0.66,140,935,1062,7,12.600000000000001,471,400,0,865,0.302,38.730000000000004,9.620000000000001,0.12,990,2.6,46,2 +2020,11,12,2,30,28.1,1.01,0.1313,0.66,148,914,1026,7,12.700000000000001,473,345,33,804,0.301,38.58,16.16,0.12,989,2.7,49,2.1 +2020,11,12,3,30,27.6,1.02,0.16920000000000002,0.66,156,868,919,0,12.8,245,710,0,869,0.301,39.92,28.46,0.12,989,2.8000000000000003,52,2.2 +2020,11,12,4,30,27,1.04,0.1741,0.66,145,819,757,0,12.700000000000001,145,819,0,757,0.302,41.32,41.62,0.12,988,2.9000000000000004,53,2.3000000000000003 +2020,11,12,5,30,26.3,1.05,0.1683,0.66,124,743,551,0,12.8,124,743,0,551,0.303,43.28,54.92,0.12,988,3,53,2.4000000000000004 +2020,11,12,6,30,25.200000000000003,1.05,0.1573,0.66,96,609,323,0,13,96,609,0,323,0.304,46.85,68.13,0.12,988,3,52,2.5 +2020,11,12,7,30,23.400000000000002,1.01,0.1469,0.66,54,325,104,0,13.5,54,325,0,104,0.304,53.75,81.07000000000001,0.12,989,3,52,1.9000000000000001 +2020,11,12,8,30,21.5,0.96,0.1434,0.66,0,0,0,0,14.600000000000001,0,0,0,0,0.303,64.95,93.76,0.12,989,3,53,1.3 +2020,11,12,9,30,20.3,0.93,0.1454,0.66,0,0,0,0,15.3,0,0,0,0,0.301,72.91,105.7,0.12,990,3,50,1.2000000000000002 +2020,11,12,10,30,19.5,0.92,0.14800000000000002,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.3,78.73,116.58,0.12,990,3,42,1.2000000000000002 +2020,11,12,11,30,18.900000000000002,0.93,0.1511,0.66,0,0,0,0,16,0,0,0,0,0.299,83.32000000000001,125.76,0.12,990,3,34,1.1 +2020,11,12,12,30,18.6,0.96,0.1605,0.66,0,0,0,0,16.1,0,0,0,0,0.298,85.66,132.2,0.12,989,3,26,1 +2020,11,12,13,30,18.5,1,0.169,0.66,0,0,0,8,16.2,0,0,0,0,0.298,86.53,134.73,0.12,989,3.1,18,0.9 +2020,11,12,14,30,18.3,1.04,0.1736,0.66,0,0,0,6,16.2,0,0,33,0,0.298,87.34,132.7,0.12,988,3.2,11,0.9 +2020,11,12,15,30,18.1,1.09,0.1701,0.66,0,0,0,7,16.1,0,0,0,0,0.298,87.91,126.64,0.12,988,3.2,6,0.8 +2020,11,12,16,30,17.900000000000002,1.1400000000000001,0.1653,0.66,0,0,0,7,15.9,0,0,0,0,0.298,88.17,117.72,0.12,987,3.2,181,0.7000000000000001 +2020,11,12,17,30,17.8,1.17,0.1626,0.66,0,0,0,7,15.8,0,0,0,0,0.298,88.07000000000001,106.98,0.12,987,3.3000000000000003,357,0.7000000000000001 +2020,11,12,18,30,17.8,1.2,0.1597,0.66,0,0,0,7,15.700000000000001,0,0,0,0,0.298,87.7,95.14,0.12,988,3.4000000000000004,180,0.7000000000000001 +2020,11,12,19,30,18.400000000000002,1.22,0.1534,0.66,45,280,82,8,15.8,45,189,67,70,0.298,84.62,82.5,0.12,988,3.4000000000000004,6,1 +2020,11,12,20,30,19.900000000000002,1.24,0.1433,0.66,86,602,296,0,15.700000000000001,86,602,0,296,0.298,76.66,69.61,0.12,988,3.3000000000000003,182,1.6 +2020,11,12,21,30,21.8,1.24,0.1351,0.66,109,755,527,7,15.100000000000001,237,123,0,305,0.299,65.93,56.410000000000004,0.12,988,3.3000000000000003,341,2.1 +2020,11,12,22,30,23,1.21,0.1469,0.66,131,824,733,8,14.200000000000001,345,175,0,473,0.298,57.63,43.11,0.12,989,3.3000000000000003,311,2.4000000000000004 +2020,11,12,23,30,23.200000000000003,1.16,0.1658,0.66,149,861,895,6,13.700000000000001,86,0,0,86,0.297,55.29,29.89,0.12,989,3.4000000000000004,296,2.6 +2020,11,13,0,30,22.5,1.02,0.11910000000000001,0.66,132,921,1011,6,13.8,171,6,0,177,0.295,57.99,17.35,0.12,989,3.5,306,1.6 +2020,11,13,1,30,22.700000000000003,1.03,0.1073,0.66,128,942,1057,8,14.100000000000001,176,6,0,182,0.297,58.160000000000004,9.36,0.12,988,3.3000000000000003,166,1.3 +2020,11,13,2,30,24,1.03,0.08950000000000001,0.66,116,955,1034,3,14.200000000000001,393,499,33,873,0.301,54.43,15.97,0.12,986,3,9,1.5 +2020,11,13,3,30,25.700000000000003,0.97,0.07400000000000001,0.66,106,946,939,0,14.5,270,608,0,805,0.305,50.120000000000005,28.32,0.12,985,2.8000000000000003,9,1.7000000000000002 +2020,11,13,4,30,26.700000000000003,0.9,0.0702,0.66,99,905,777,0,14.8,205,662,0,701,0.307,48.09,41.49,0.12,985,2.9000000000000004,9,2 +2020,11,13,5,30,26.8,0.87,0.0763,0.66,92,824,567,0,15,92,824,0,567,0.307,48.4,54.79,0.12,984,3.2,13,2.1 +2020,11,13,6,30,26.1,0.9,0.0878,0.66,79,679,333,8,15.200000000000001,135,362,0,271,0.307,50.95,68,0.12,984,3.3000000000000003,22,2 +2020,11,13,7,30,24.3,0.98,0.09870000000000001,0.66,49,384,110,7,15.700000000000001,50,336,100,103,0.308,58.86,80.93,0.12,984,3.3000000000000003,34,1.6 +2020,11,13,8,30,22.400000000000002,1.09,0.1158,0.66,0,0,0,3,17,0,0,0,0,0.308,71.48,93.59,0.12,985,3.3000000000000003,38,1.2000000000000002 +2020,11,13,9,30,21.400000000000002,1.21,0.1542,0.66,0,0,0,4,17.3,0,0,0,0,0.307,77.33,105.51,0.12,985,3.3000000000000003,37,1.1 +2020,11,13,10,30,20.700000000000003,1.31,0.2049,0.66,0,0,0,7,17.5,0,0,0,0,0.306,81.96000000000001,116.37,0.12,986,3.3000000000000003,36,0.9 +2020,11,13,11,30,20.1,1.33,0.2361,0.66,0,0,0,0,17.7,0,0,0,0,0.304,86.19,125.52,0.12,986,3.4000000000000004,27,0.9 +2020,11,13,12,30,19.400000000000002,1.26,0.2366,0.66,0,0,0,0,17.900000000000002,0,0,0,0,0.301,90.78,131.94,0.12,986,3.3000000000000003,10,1 +2020,11,13,13,30,18.8,1.1400000000000001,0.2136,0.66,0,0,0,0,17.8,0,0,0,0,0.299,93.66,134.46,0.12,986,3.2,179,1 +2020,11,13,14,30,18.2,1.02,0.18630000000000002,0.66,0,0,0,0,17.5,0,0,33,0,0.297,95.81,132.46,0.12,986,3.2,354,0.9 +2020,11,13,15,30,17.8,0.92,0.1719,0.66,0,0,0,0,17.3,0,0,0,0,0.297,96.91,126.44,0.12,985,3.1,350,0.8 +2020,11,13,16,30,17.5,0.86,0.1675,0.66,0,0,0,0,17.2,0,0,0,0,0.297,97.97,117.55,0.12,986,3.2,343,0.8 +2020,11,13,17,30,17.400000000000002,0.81,0.1642,0.66,0,0,0,0,17.1,0,0,0,0,0.297,97.9,106.85000000000001,0.12,986,3.2,335,0.7000000000000001 +2020,11,13,18,30,17.400000000000002,0.78,0.1584,0.66,0,0,0,0,17,0,0,0,0,0.297,97.34,95.03,0.12,987,3.2,327,0.8 +2020,11,13,19,30,18.5,0.78,0.1512,0.66,48,262,83,0,17.2,48,262,0,83,0.297,91.88,82.41,0.12,987,3.1,322,1.2000000000000002 +2020,11,13,20,30,20.6,0.79,0.1414,0.66,89,597,298,0,17.7,89,597,0,298,0.297,83.62,69.53,0.12,988,3,316,2 +2020,11,13,21,30,23.3,0.81,0.13190000000000002,0.66,110,762,532,0,18.1,110,762,0,532,0.297,72.4,56.35,0.12,988,2.9000000000000004,309,2.4000000000000004 +2020,11,13,22,30,26.3,0.8300000000000001,0.1241,0.66,121,854,745,0,17.7,121,854,0,745,0.297,59.28,43.050000000000004,0.12,988,2.8000000000000003,302,2.4000000000000004 +2020,11,13,23,30,27.700000000000003,0.86,0.1153,0.66,127,906,913,0,17.400000000000002,127,906,0,913,0.297,53.59,29.82,0.12,988,2.8000000000000003,299,2.3000000000000003 +2020,11,14,0,30,30.700000000000003,0.89,0.10590000000000001,0.66,126,940,1024,0,16.900000000000002,126,940,0,1024,0.297,43.53,17.23,0.12,986,2.8000000000000003,294,2 +2020,11,14,1,30,32.2,0.9500000000000001,0.1017,0.66,124,952,1064,0,16.1,124,952,0,1064,0.297,37.910000000000004,9.1,0.12,985,2.8000000000000003,292,2 +2020,11,14,2,30,33.300000000000004,1.01,0.09920000000000001,0.66,123,945,1032,0,15.100000000000001,235,651,33,861,0.296,33.61,15.780000000000001,0.12,985,2.9000000000000004,290,2 +2020,11,14,3,30,33.800000000000004,1.03,0.10540000000000001,0.66,120,919,930,0,14.4,141,845,0,886,0.296,31.18,28.18,0.12,984,2.9000000000000004,285,2.1 +2020,11,14,4,30,33.800000000000004,1.02,0.1068,0.66,113,877,771,0,13.8,113,877,0,771,0.296,30.03,41.37,0.12,983,2.9000000000000004,279,2 +2020,11,14,5,30,33.2,1.01,0.1068,0.66,101,804,566,0,13.4,101,804,0,566,0.296,30.21,54.67,0.12,983,2.9000000000000004,271,1.9000000000000001 +2020,11,14,6,30,31.900000000000002,1.01,0.10890000000000001,0.66,82,670,335,0,13.4,82,670,0,335,0.296,32.47,67.86,0.12,984,2.8000000000000003,264,1.4000000000000001 +2020,11,14,7,30,29.200000000000003,1.04,0.11410000000000001,0.66,50,384,112,0,15.100000000000001,50,384,0,112,0.296,42.32,80.78,0.12,985,2.7,258,0.7000000000000001 +2020,11,14,8,30,26.400000000000002,1.07,0.1213,0.66,0,0,0,0,17.7,0,0,0,0,0.296,58.89,93.43,0.12,985,2.6,230,0.4 +2020,11,14,9,30,24.900000000000002,1.11,0.1257,0.66,0,0,0,0,17.7,0,0,0,0,0.295,64.18,105.33,0.12,986,2.4000000000000004,189,0.5 +2020,11,14,10,30,23.900000000000002,1.1500000000000001,0.12560000000000002,0.66,0,0,0,0,17.3,0,0,0,0,0.294,66.39,116.16,0.12,987,2.3000000000000003,171,0.6000000000000001 +2020,11,14,11,30,23,1.16,0.1247,0.66,0,0,0,0,16.8,0,0,0,0,0.293,67.97,125.28,0.12,988,2.2,170,0.7000000000000001 +2020,11,14,12,30,22.200000000000003,1.16,0.12300000000000001,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.292,69.83,131.68,0.12,988,2.1,168,0.7000000000000001 +2020,11,14,13,30,21.3,1.16,0.1208,0.66,0,0,0,0,16.2,0,0,0,0,0.291,72.74,134.2,0.12,988,2.1,165,0.7000000000000001 +2020,11,14,14,30,20.400000000000002,1.1500000000000001,0.1179,0.66,0,0,0,0,16,0,0,33,0,0.291,75.72,132.22,0.12,988,2.1,166,0.7000000000000001 +2020,11,14,15,30,19.6,1.1400000000000001,0.11420000000000001,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.29,77.85000000000001,126.24000000000001,0.12,988,2.1,169,0.8 +2020,11,14,16,30,18.8,1.1300000000000001,0.1109,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.29,79.81,117.39,0.12,988,2.1,168,0.8 +2020,11,14,17,30,18.400000000000002,1.1300000000000001,0.10790000000000001,0.66,0,0,0,0,15,0,0,0,0,0.29,80.8,106.73,0.12,989,2.1,162,0.8 +2020,11,14,18,30,18.3,1.1300000000000001,0.10490000000000001,0.66,0,0,0,0,15.3,0,0,0,0,0.289,82.49,94.93,0.12,989,2.1,155,0.8 +2020,11,14,19,30,19.900000000000002,1.12,0.1017,0.66,42,366,91,0,16,42,366,0,91,0.289,78.12,82.33,0.12,990,2.2,152,1.1 +2020,11,14,20,30,22.8,1.1300000000000001,0.098,0.66,76,679,314,0,16.7,76,679,0,314,0.289,68.62,69.47,0.12,991,2.2,147,1.5 +2020,11,14,21,30,25.6,1.1500000000000001,0.09480000000000001,0.66,94,822,550,0,17.900000000000002,94,822,0,550,0.291,62.31,56.29,0.12,991,2.2,137,1.6 +2020,11,14,22,30,28.1,1.17,0.0926,0.66,105,898,762,0,17.900000000000002,105,898,0,762,0.292,53.84,42.99,0.12,992,2.3000000000000003,128,1.5 +2020,11,14,23,30,29.200000000000003,1.19,0.0912,0.66,112,942,930,0,17.400000000000002,112,942,0,930,0.293,48.89,29.75,0.12,992,2.3000000000000003,124,1.4000000000000001 +2020,11,15,0,30,31.8,1.22,0.08850000000000001,0.66,116,964,1037,0,16.900000000000002,116,964,0,1037,0.294,40.84,17.12,0.12,991,2.4000000000000004,107,1.1 +2020,11,15,1,30,32.9,1.23,0.0921,0.66,119,967,1074,0,16.5,217,752,0,960,0.294,37.410000000000004,8.85,0.12,991,2.5,93,1.2000000000000002 +2020,11,15,2,30,33.5,1.24,0.097,0.66,119,956,1040,0,16.2,119,956,33,1040,0.295,35.49,15.6,0.12,990,2.6,84,1.4000000000000001 +2020,11,15,3,30,33.7,1.21,0.0981,0.66,117,930,938,0,16,117,930,0,938,0.295,34.72,28.04,0.12,990,2.7,80,1.6 +2020,11,15,4,30,33.300000000000004,1.21,0.10450000000000001,0.66,111,883,775,0,16,111,883,0,775,0.295,35.62,41.24,0.12,989,2.8000000000000003,79,1.9000000000000001 +2020,11,15,5,30,32.300000000000004,1.21,0.10740000000000001,0.66,102,799,566,0,16.3,102,799,0,566,0.296,38.4,54.54,0.12,989,2.9000000000000004,78,2.3000000000000003 +2020,11,15,6,30,30.5,1.25,0.1333,0.66,87,643,331,0,17.2,87,643,0,331,0.296,44.9,67.73,0.12,990,3,78,2.6 +2020,11,15,7,30,27.900000000000002,1.26,0.1381,0.66,52,359,110,0,18.6,52,359,0,110,0.297,56.94,80.64,0.12,991,3.1,79,2.5 +2020,11,15,8,30,25.5,1.25,0.14700000000000002,0.66,0,0,0,0,20,0,0,0,0,0.298,71.76,93.27,0.12,992,3.1,80,2.1 +2020,11,15,9,30,24,1.24,0.16010000000000002,0.66,0,0,0,0,20.8,0,0,0,0,0.297,82.43,105.14,0.12,993,3,80,1.6 +2020,11,15,10,30,23.1,1.23,0.1658,0.66,0,0,0,0,21.1,0,0,0,0,0.297,88.45,115.96000000000001,0.12,993,3,81,1.2000000000000002 +2020,11,15,11,30,22.6,1.23,0.1608,0.66,0,0,0,0,21.200000000000003,0,0,0,0,0.296,91.58,125.05,0.12,994,3,82,0.9 +2020,11,15,12,30,22.200000000000003,1.25,0.1637,0.66,0,0,0,0,21.1,0,0,0,0,0.296,93.62,131.43,0.12,994,2.9000000000000004,83,0.7000000000000001 +2020,11,15,13,30,21.8,1.26,0.16040000000000001,0.66,0,0,0,0,21.1,0,0,0,0,0.296,95.8,133.95,0.12,993,2.9000000000000004,85,0.6000000000000001 +2020,11,15,14,30,21.5,1.27,0.15130000000000002,0.66,0,0,0,0,21.1,0,0,33,0,0.295,97.33,131.99,0.12,993,2.8000000000000003,85,0.6000000000000001 +2020,11,15,15,30,21.200000000000003,1.27,0.1537,0.66,0,0,0,0,21,0,0,0,0,0.295,98.71000000000001,126.05,0.12,993,2.8000000000000003,83,0.5 +2020,11,15,16,30,20.900000000000002,1.28,0.1532,0.66,0,0,0,0,20.900000000000002,0,0,0,0,0.295,99.89,117.24000000000001,0.12,992,2.7,78,0.5 +2020,11,15,17,30,20.700000000000003,1.27,0.1492,0.66,0,0,0,0,20.700000000000003,0,0,0,0,0.294,100,106.61,0.12,993,2.7,68,0.5 +2020,11,15,18,30,20.900000000000002,1.26,0.15480000000000002,0.66,0,0,0,0,20.8,0,0,0,0,0.293,99.19,94.84,0.12,993,2.7,57,0.6000000000000001 +2020,11,15,19,30,21.8,1.26,0.1572,0.66,47,295,87,0,20.8,47,295,0,87,0.292,94.17,82.26,0.12,994,2.7,45,0.9 +2020,11,15,20,30,23.6,1.25,0.1482,0.66,88,611,303,0,20.900000000000002,98,349,0,221,0.29,84.77,69.41,0.12,994,2.7,32,1.3 +2020,11,15,21,30,25.700000000000003,1.24,0.1426,0.66,110,766,536,3,20.6,199,316,0,375,0.29,73.38,56.24,0.12,994,2.7,25,1.4000000000000001 +2020,11,15,22,30,27.900000000000002,1.25,0.1356,0.66,122,853,746,0,20.200000000000003,223,464,0,563,0.29,62.88,42.94,0.12,994,2.7,23,1.4000000000000001 +2020,11,15,23,30,29.1,1.26,0.128,0.66,130,903,914,0,19.8,209,708,0,824,0.29,57.300000000000004,29.7,0.12,994,2.8000000000000003,23,1.4000000000000001 +2020,11,16,0,30,32,1.26,0.1312,0.66,135,927,1021,0,19.400000000000002,135,927,0,1021,0.291,47.24,17.02,0.12,992,2.8000000000000003,21,1.4000000000000001 +2020,11,16,1,30,33.4,1.27,0.12380000000000001,0.66,134,940,1063,0,19,160,902,0,1052,0.291,42.59,8.6,0.12,991,2.8000000000000003,23,1.5 +2020,11,16,2,30,34.2,1.28,0.11800000000000001,0.66,136,924,1027,0,18.5,136,924,33,1027,0.291,39.56,15.41,0.12,990,2.9000000000000004,25,1.5 +2020,11,16,3,30,34.6,1.23,0.1676,0.66,146,877,921,3,18,338,501,0,781,0.292,37.6,27.900000000000002,0.12,989,2.9000000000000004,29,1.6 +2020,11,16,4,30,34.4,1.23,0.163,0.66,133,833,761,0,17.7,153,784,0,744,0.293,37.19,41.11,0.12,988,3,33,1.8 +2020,11,16,5,30,33.6,1.22,0.16060000000000002,0.66,119,755,558,0,17.5,119,755,0,558,0.294,38.39,54.410000000000004,0.12,988,3.1,38,2 +2020,11,16,6,30,32,1.22,0.1597,0.66,95,614,329,0,17.5,95,614,0,329,0.296,42.13,67.59,0.12,988,3.2,44,2.3000000000000003 +2020,11,16,7,30,29.400000000000002,1.23,0.1607,0.66,54,336,110,0,18.400000000000002,54,336,0,110,0.297,51.74,80.49,0.12,988,3.3000000000000003,47,2.3000000000000003 +2020,11,16,8,30,27,1.23,0.1647,0.66,0,0,0,0,19.8,0,0,0,0,0.297,64.93,93.10000000000001,0.12,989,3.3000000000000003,45,2.1 +2020,11,16,9,30,25.5,1.24,0.1729,0.66,0,0,0,0,20.3,0,0,0,0,0.296,72.86,104.96000000000001,0.12,990,3.4000000000000004,42,1.8 +2020,11,16,10,30,24.5,1.28,0.1827,0.66,0,0,0,0,20.400000000000002,0,0,0,0,0.294,77.98,115.75,0.12,990,3.4000000000000004,40,1.6 +2020,11,16,11,30,23.700000000000003,1.36,0.1991,0.66,0,0,0,0,20.400000000000002,0,0,0,0,0.294,81.7,124.82000000000001,0.12,990,3.3000000000000003,37,1.4000000000000001 +2020,11,16,12,30,23,1.43,0.21930000000000002,0.66,0,0,0,0,20.3,0,0,0,0,0.293,84.69,131.18,0.12,990,3.2,27,1.1 +2020,11,16,13,30,22.5,1.47,0.2361,0.66,0,0,0,0,20.1,0,0,0,0,0.291,86.54,133.7,0.12,990,3.3000000000000003,187,0.9 +2020,11,16,14,30,22.1,1.46,0.24700000000000003,0.66,0,0,0,0,19.900000000000002,0,0,33,0,0.291,87.26,131.77,0.12,989,3.4000000000000004,346,0.8 +2020,11,16,15,30,21.8,1.42,0.2462,0.66,0,0,0,7,19.6,0,0,0,0,0.29,87.57000000000001,125.86,0.12,989,3.5,338,0.7000000000000001 +2020,11,16,16,30,21.5,1.37,0.2348,0.66,0,0,0,7,19.400000000000002,0,0,0,0,0.289,87.87,117.09,0.12,989,3.6,338,0.8 +2020,11,16,17,30,21.3,1.33,0.2189,0.66,0,0,0,0,19.200000000000003,0,0,0,0,0.28800000000000003,87.63,106.49000000000001,0.12,989,3.7,337,0.8 +2020,11,16,18,30,21.3,1.3,0.21380000000000002,0.66,0,0,0,3,19,0,0,0,0,0.28600000000000003,86.74,94.75,0.12,990,3.9000000000000004,333,0.8 +2020,11,16,19,30,22.1,1.26,0.22660000000000002,0.66,52,217,81,0,19,52,217,0,81,0.28500000000000003,82.45,82.19,0.12,990,4,329,1.2000000000000002 +2020,11,16,20,30,23.8,1.23,0.2217,0.66,104,522,288,4,18.8,107,194,0,175,0.28500000000000003,73.39,69.35000000000001,0.12,991,4.1000000000000005,321,1.6 +2020,11,16,21,30,26.3,1.23,0.19410000000000002,0.66,128,698,516,0,18.6,155,596,0,487,0.28600000000000003,62.660000000000004,56.2,0.12,991,4.1000000000000005,307,1.8 +2020,11,16,22,30,28.8,1.22,0.18560000000000001,0.66,144,787,721,0,18.3,144,787,0,721,0.28800000000000003,53,42.9,0.12,991,4.2,296,1.7000000000000002 +2020,11,16,23,30,30,1.21,0.1927,0.66,159,834,884,8,17.900000000000002,397,382,0,729,0.289,48.44,29.64,0.12,990,4.2,293,1.6 +2020,11,17,0,30,32.4,1.21,0.2459,0.66,192,824,980,8,17.8,484,265,0,738,0.291,41.76,16.92,0.12,990,4.3,284,1.2000000000000002 +2020,11,17,1,30,33.5,1.21,0.2549,0.66,198,829,1018,0,17.6,322,626,0,941,0.292,38.75,8.36,0.12,989,4.4,275,1 +2020,11,17,2,30,33.800000000000004,1.21,0.2546,0.66,195,822,988,4,17.5,492,138,42,625,0.292,37.95,15.23,0.12,989,4.5,262,0.8 +2020,11,17,3,30,33.2,1.2,0.251,0.66,187,794,890,8,17.6,392,120,0,498,0.292,39.58,27.76,0.12,989,4.6000000000000005,225,0.6000000000000001 +2020,11,17,4,30,31.700000000000003,1.18,0.258,0.66,177,736,733,8,18,156,5,0,160,0.292,44.12,40.980000000000004,0.12,989,4.7,159,0.7000000000000001 +2020,11,17,5,30,29.6,1.16,0.26730000000000004,0.66,165,631,533,8,18.8,235,50,0,264,0.291,52.38,54.28,0.12,989,4.9,117,1.4000000000000001 +2020,11,17,6,30,27.1,1.1300000000000001,0.31370000000000003,0.66,139,442,308,8,20.200000000000003,149,245,17,243,0.291,66.14,67.46000000000001,0.12,990,5.1000000000000005,114,2.1 +2020,11,17,7,30,24.900000000000002,1.1,0.36100000000000004,0.66,72,169,100,4,21.200000000000003,30,20,100,33,0.29,79.78,80.34,0.12,991,5.2,118,2.4000000000000004 +2020,11,17,8,30,23.400000000000002,1.07,0.3493,0.66,0,0,0,7,21.5,0,0,0,0,0.29,89.29,92.94,0.12,992,5.2,124,2.4000000000000004 +2020,11,17,9,30,22.5,1.06,0.3244,0.66,0,0,0,7,21.3,0,0,0,0,0.29,93.12,104.78,0.12,993,5.1000000000000005,131,2.3000000000000003 +2020,11,17,10,30,21.900000000000002,1.02,0.2984,0.66,0,0,0,7,20.6,0,0,0,0,0.29,92.45,115.55,0.12,994,5,134,2.2 +2020,11,17,11,30,21.400000000000002,0.96,0.3135,0.66,0,0,0,7,19.900000000000002,0,0,0,0,0.29,91.03,124.59,0.12,995,4.800000000000001,135,2 +2020,11,17,12,30,21,0.92,0.312,0.66,0,0,0,7,19.400000000000002,0,0,0,0,0.291,90.42,130.94,0.12,995,4.5,132,1.9000000000000001 +2020,11,17,13,30,20.6,0.89,0.2943,0.66,0,0,0,7,19,0,0,0,0,0.292,90.77,133.46,0.12,994,4.2,131,1.9000000000000001 +2020,11,17,14,30,20.400000000000002,0.85,0.28,0.66,0,0,0,7,18.8,0,0,33,0,0.293,90.68,131.55,0.12,994,3.9000000000000004,135,2 +2020,11,17,15,30,20.200000000000003,0.8300000000000001,0.2728,0.66,0,0,0,7,18.6,0,0,0,0,0.293,90.55,125.68,0.12,994,3.7,139,2.1 +2020,11,17,16,30,20,0.79,0.2671,0.66,0,0,0,8,18.400000000000002,0,0,0,0,0.292,90.55,116.95,0.12,994,3.5,138,2 +2020,11,17,17,30,19.8,0.76,0.2661,0.66,0,0,0,8,18.2,0,0,0,0,0.291,90.67,106.38,0.12,994,3.4000000000000004,137,1.9000000000000001 +2020,11,17,18,30,19.6,0.74,0.2801,0.66,0,0,0,3,18.1,0,0,0,0,0.29,90.86,94.67,0.12,995,3.3000000000000003,137,2 +2020,11,17,19,30,20.1,0.71,0.29200000000000004,0.66,61,140,80,3,17.900000000000002,49,52,92,56,0.289,87.05,82.13,0.12,996,3.2,138,2.5 +2020,11,17,20,30,21.200000000000003,0.7000000000000001,0.2884,0.66,131,439,286,0,17.6,133,382,0,268,0.289,79.83,69.3,0.12,997,3.1,137,3 +2020,11,17,21,30,22.8,0.71,0.2766,0.66,167,624,514,0,16.900000000000002,202,470,0,464,0.289,69.51,56.160000000000004,0.12,997,3.1,133,3.3000000000000003 +2020,11,17,22,30,24.5,0.72,0.2585,0.66,183,739,725,3,16.400000000000002,308,408,0,607,0.29,60.800000000000004,42.86,0.12,997,3,128,3.2 +2020,11,17,23,30,25.400000000000002,0.73,0.23700000000000002,0.66,191,807,893,3,16.1,443,236,0,648,0.29,56.550000000000004,29.6,0.12,997,3,125,3.2 +2020,11,18,0,30,27.6,0.79,0.1496,0.66,155,904,1020,8,15.9,499,248,0,736,0.291,48.96,16.830000000000002,0.12,996,2.9000000000000004,115,3 +2020,11,18,1,30,28.700000000000003,0.76,0.1494,0.66,158,913,1062,4,15.700000000000001,334,42,0,376,0.292,45.29,8.13,0.12,995,2.8000000000000003,109,3 +2020,11,18,2,30,29.3,0.71,0.15460000000000002,0.66,172,886,1028,3,15.5,489,148,33,632,0.292,43.12,15.06,0.12,995,2.7,104,3.1 +2020,11,18,3,30,29.200000000000003,0.68,0.23070000000000002,0.66,195,818,920,7,15.3,366,37,0,399,0.293,42.77,27.62,0.12,994,2.6,101,3.2 +2020,11,18,4,30,28.5,0.59,0.2479,0.66,191,751,759,8,15.100000000000001,331,62,0,378,0.294,44.01,40.85,0.12,994,2.5,99,3.3000000000000003 +2020,11,18,5,30,27.3,0.53,0.26380000000000003,0.66,174,648,554,8,14.9,247,347,0,450,0.295,46.62,54.15,0.12,994,2.5,99,3.2 +2020,11,18,6,30,25.6,0.51,0.2664,0.66,138,492,328,7,14.700000000000001,155,245,0,249,0.297,51.02,67.32000000000001,0.12,995,2.4000000000000004,99,3.1 +2020,11,18,7,30,23.700000000000003,0.51,0.2501,0.66,74,224,112,7,14.600000000000001,63,55,100,72,0.298,56.6,80.19,0.12,996,2.3000000000000003,99,2.7 +2020,11,18,8,30,22,0.54,0.22490000000000002,0.66,0,0,0,8,14.5,0,0,0,0,0.299,62.54,92.78,0.12,997,2.1,98,2.2 +2020,11,18,9,30,20.8,0.59,0.2001,0.66,0,0,0,3,14.600000000000001,0,0,0,0,0.299,67.51,104.60000000000001,0.12,997,2.1,98,1.8 +2020,11,18,10,30,19.900000000000002,0.64,0.1794,0.66,0,0,0,3,14.600000000000001,0,0,0,0,0.299,71.54,115.34,0.12,997,2,100,1.5 +2020,11,18,11,30,19.3,0.68,0.1658,0.66,0,0,0,0,14.8,0,0,0,0,0.299,75.05,124.37,0.12,997,2,104,1.2000000000000002 +2020,11,18,12,30,18.8,0.71,0.1584,0.66,0,0,0,0,14.9,0,0,0,0,0.298,78.21000000000001,130.7,0.12,997,2,110,1 +2020,11,18,13,30,18.400000000000002,0.72,0.15860000000000002,0.66,0,0,0,0,15,0,0,0,0,0.297,80.81,133.22,0.12,997,2,117,0.9 +2020,11,18,14,30,18.1,0.73,0.1643,0.66,0,0,0,0,15.200000000000001,0,0,33,0,0.297,82.91,131.34,0.12,996,2.1,124,0.9 +2020,11,18,15,30,17.8,0.73,0.1726,0.66,0,0,0,0,15.3,0,0,0,0,0.298,85.37,125.51,0.12,996,2.1,130,0.9 +2020,11,18,16,30,17.5,0.71,0.1776,0.66,0,0,0,8,15.4,0,0,0,0,0.299,87.77,116.82000000000001,0.12,996,2.2,134,0.8 +2020,11,18,17,30,17.2,0.6900000000000001,0.18000000000000002,0.66,0,0,0,8,15.5,0,0,0,0,0.301,89.92,106.28,0.12,996,2.3000000000000003,137,0.8 +2020,11,18,18,30,17.2,0.67,0.1822,0.66,0,0,0,3,15.600000000000001,0,0,0,0,0.302,90.2,94.59,0.12,997,2.3000000000000003,137,0.9 +2020,11,18,19,30,18.400000000000002,0.66,0.1759,0.66,55,247,89,0,15.700000000000001,55,247,0,89,0.302,84.04,82.07000000000001,0.12,998,2.3000000000000003,132,1.5 +2020,11,18,20,30,20.5,0.66,0.1613,0.66,99,589,308,0,15.700000000000001,99,589,0,308,0.302,73.8,69.26,0.12,998,2.3000000000000003,120,2.2 +2020,11,18,21,30,22.700000000000003,0.7000000000000001,0.1394,0.66,116,770,545,0,15.4,116,770,0,545,0.301,63.22,56.120000000000005,0.12,998,2.3000000000000003,110,2.4000000000000004 +2020,11,18,22,30,24.700000000000003,0.74,0.12190000000000001,0.66,124,867,760,0,14.4,124,867,0,760,0.299,52.71,42.83,0.12,998,2.3000000000000003,105,2.5 +2020,11,18,23,30,25.6,0.74,0.1155,0.66,131,918,930,0,13.8,131,918,0,930,0.299,48.19,29.560000000000002,0.12,998,2.3000000000000003,103,2.5 +2020,11,19,0,30,27.6,0.75,0.1928,0.66,176,888,1026,0,13.700000000000001,176,888,0,1026,0.298,42.32,16.76,0.12,997,2.2,101,2.6 +2020,11,19,1,30,28.5,0.74,0.18000000000000002,0.66,171,908,1070,0,13.5,171,908,0,1070,0.297,39.83,7.91,0.12,996,2.2,100,2.7 +2020,11,19,2,30,29,0.73,0.1651,0.66,162,914,1045,0,13.4,162,914,33,1045,0.296,38.39,14.88,0.12,996,2.1,99,2.8000000000000003 +2020,11,19,3,30,28.900000000000002,0.74,0.1477,0.66,147,904,949,0,13.3,147,904,0,949,0.296,38.300000000000004,27.490000000000002,0.12,995,2.1,97,3 +2020,11,19,4,30,28.200000000000003,0.74,0.13540000000000002,0.66,133,870,792,0,13.200000000000001,133,870,0,792,0.296,39.68,40.730000000000004,0.12,995,2.1,94,3 +2020,11,19,5,30,27.1,0.74,0.125,0.66,114,807,588,0,13.200000000000001,114,807,0,588,0.295,42.24,54.02,0.12,995,2,91,3 +2020,11,19,6,30,25.5,0.74,0.116,0.66,90,685,356,0,13.200000000000001,90,685,0,356,0.295,46.5,67.18,0.12,995,2,86,2.9000000000000004 +2020,11,19,7,30,23.400000000000002,0.76,0.108,0.66,55,424,128,0,13.3,55,424,0,128,0.294,53.21,80.05,0.12,996,1.9000000000000001,80,2.3000000000000003 +2020,11,19,8,30,21.400000000000002,0.78,0.10160000000000001,0.66,0,0,0,0,13.8,0,0,0,0,0.294,61.96,92.61,0.12,997,1.9000000000000001,74,1.5 +2020,11,19,9,30,20.1,0.8,0.0969,0.66,0,0,0,0,14.5,0,0,0,0,0.293,70.08,104.42,0.12,997,1.9000000000000001,70,1.1 +2020,11,19,10,30,19.200000000000003,0.8200000000000001,0.0946,0.66,0,0,0,0,14.9,0,0,0,0,0.293,75.98,115.14,0.12,998,1.9000000000000001,70,0.9 +2020,11,19,11,30,18.6,0.8300000000000001,0.0952,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.293,80.43,124.14,0.12,998,1.9000000000000001,72,0.8 +2020,11,19,12,30,18.1,0.84,0.0984,0.66,0,0,0,0,15.4,0,0,0,0,0.293,83.99,130.46,0.12,997,2,79,0.7000000000000001 +2020,11,19,13,30,17.7,0.84,0.1029,0.66,0,0,0,0,15.5,0,0,0,0,0.293,86.72,132.99,0.12,997,2,87,0.7000000000000001 +2020,11,19,14,30,17.3,0.85,0.1053,0.66,0,0,0,0,15.5,0,0,33,0,0.293,89.42,131.13,0.12,996,2.1,92,0.6000000000000001 +2020,11,19,15,30,17.1,0.86,0.10600000000000001,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.293,91.03,125.34,0.12,996,2.1,94,0.6000000000000001 +2020,11,19,16,30,16.900000000000002,0.88,0.1056,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.293,92.89,116.69,0.12,996,2.1,94,0.6000000000000001 +2020,11,19,17,30,16.8,0.9,0.1053,0.66,0,0,0,0,15.9,0,0,0,0,0.292,94.19,106.18,0.12,996,2.2,94,0.6000000000000001 +2020,11,19,18,30,17.1,0.91,0.1095,0.66,0,0,0,0,16,0,0,0,0,0.292,93.23,94.52,0.12,997,2.2,94,0.7000000000000001 +2020,11,19,19,30,18.7,0.93,0.1134,0.66,48,348,96,0,16.2,46,279,17,85,0.291,85.58,82.02,0.12,998,2.2,89,1.1 +2020,11,19,20,30,21.1,0.9400000000000001,0.1111,0.66,82,665,318,0,16.2,82,665,0,318,0.29,73.74,69.22,0.12,998,2.2,81,1.5 +2020,11,19,21,30,23.400000000000002,0.9500000000000001,0.1,0.66,98,821,556,0,15.8,98,821,0,556,0.289,62.300000000000004,56.09,0.12,998,2.1,77,1.5 +2020,11,19,22,30,25.400000000000002,0.96,0.0903,0.66,107,906,772,0,15,107,906,33,772,0.28800000000000003,52.49,42.81,0.12,998,2.1,77,1.5 +2020,11,19,23,30,26.400000000000002,0.96,0.085,0.66,113,952,941,0,14.200000000000001,113,952,0,941,0.28700000000000003,47.07,29.53,0.12,998,2.1,77,1.6 +2020,11,20,0,30,29,0.98,0.0606,0.66,104,998,1060,0,13.5,104,998,0,1060,0.28600000000000003,38.64,16.69,0.12,996,2,83,1.6 +2020,11,20,1,30,30.200000000000003,1.01,0.057100000000000005,0.66,102,1009,1102,0,13,102,1009,0,1102,0.28600000000000003,34.9,7.69,0.12,996,2,86,1.7000000000000002 +2020,11,20,2,30,30.900000000000002,1.05,0.0539,0.66,104,1002,1073,0,12.700000000000001,104,1002,33,1073,0.28600000000000003,32.8,14.71,0.12,995,1.9000000000000001,86,1.9000000000000001 +2020,11,20,3,30,31.1,0.96,0.0728,0.66,108,973,972,0,12.5,108,973,0,972,0.28600000000000003,32.12,27.35,0.12,994,1.9000000000000001,84,2.2 +2020,11,20,4,30,30.700000000000003,0.97,0.07250000000000001,0.66,101,938,813,0,12.600000000000001,101,938,0,813,0.28500000000000003,32.94,40.6,0.12,993,1.8,81,2.4000000000000004 +2020,11,20,5,30,29.700000000000003,0.96,0.0728,0.66,91,873,605,0,12.700000000000001,91,873,0,605,0.28500000000000003,35.25,53.89,0.12,993,1.8,77,2.5 +2020,11,20,6,30,28.1,0.9500000000000001,0.07440000000000001,0.66,76,752,369,0,13.100000000000001,76,752,0,369,0.28500000000000003,39.58,67.04,0.12,994,1.8,71,2.5 +2020,11,20,7,30,25.700000000000003,0.93,0.0761,0.66,49,494,136,0,13.700000000000001,49,494,0,136,0.28500000000000003,47.410000000000004,79.9,0.12,994,1.7000000000000002,66,2 +2020,11,20,8,30,23.200000000000003,0.9,0.0772,0.66,0,0,0,0,15,0,0,0,0,0.28400000000000003,59.93,92.45,0.12,995,1.7000000000000002,63,1.4000000000000001 +2020,11,20,9,30,21.6,0.87,0.079,0.66,0,0,0,0,15.9,0,0,0,0,0.28400000000000003,69.89,104.24000000000001,0.12,996,1.8,62,1.1 +2020,11,20,10,30,20.6,0.85,0.08370000000000001,0.66,0,0,0,0,16.3,0,0,33,0,0.28300000000000003,76.54,114.94,0.12,996,2,62,1 +2020,11,20,11,30,19.8,0.8200000000000001,0.0915,0.66,0,0,0,0,16.7,0,0,0,0,0.28200000000000003,82.11,123.92,0.12,996,2.1,60,0.8 +2020,11,20,12,30,19.1,0.81,0.101,0.66,0,0,0,0,16.8,0,0,0,0,0.281,86.65,130.23,0.12,996,2.1,56,0.7000000000000001 +2020,11,20,13,30,18.6,0.8200000000000001,0.1119,0.66,0,0,0,0,16.8,0,0,0,0,0.281,89.54,132.76,0.12,995,2.1,51,0.6000000000000001 +2020,11,20,14,30,18.1,0.8300000000000001,0.1187,0.66,0,0,0,0,16.8,0,0,33,0,0.28,92.29,130.93,0.12,995,2.1,48,0.6000000000000001 +2020,11,20,15,30,17.8,0.85,0.1203,0.66,0,0,0,0,16.8,0,0,0,0,0.28,93.85000000000001,125.18,0.12,995,2.1,45,0.5 +2020,11,20,16,30,17.400000000000002,0.85,0.1164,0.66,0,0,0,0,16.7,0,0,0,0,0.279,95.95,116.56,0.12,995,2,41,0.6000000000000001 +2020,11,20,17,30,17,0.84,0.1078,0.66,0,0,0,0,16.7,0,0,0,0,0.28,98.12,106.09,0.12,995,2,35,0.6000000000000001 +2020,11,20,18,30,17.1,0.8300000000000001,0.0989,0.66,0,0,0,0,16.6,0,0,0,0,0.28,97.17,94.45,0.12,995,2,25,0.7000000000000001 +2020,11,20,19,30,18.7,0.8300000000000001,0.0915,0.66,45,387,99,0,16.7,45,387,0,99,0.279,87.92,81.97,0.12,996,2,18,0.9 +2020,11,20,20,30,21.5,0.84,0.0855,0.66,75,698,323,0,16.400000000000002,75,698,0,323,0.279,72.87,69.19,0.12,997,2.1,22,1.1 +2020,11,20,21,30,24.1,0.87,0.0813,0.66,91,840,560,0,15.5,91,840,0,560,0.279,58.76,56.07,0.12,997,2.1,37,1.2000000000000002 +2020,11,20,22,30,26.200000000000003,0.89,0.0789,0.66,102,913,772,0,14.600000000000001,102,913,0,772,0.279,48.800000000000004,42.79,0.12,997,2.2,57,1.1 +2020,11,20,23,30,27.3,0.91,0.0779,0.66,110,955,941,0,13.9,110,955,0,941,0.279,43.7,29.51,0.12,997,2.2,68,1.2000000000000002 +2020,11,21,0,30,29.700000000000003,0.92,0.0835,0.66,117,972,1048,0,13.4,117,972,0,1048,0.28,36.77,16.63,0.12,996,2.3000000000000003,83,1.7000000000000002 +2020,11,21,1,30,30.8,0.9400000000000001,0.083,0.66,118,980,1090,0,13,118,980,0,1090,0.281,33.75,7.48,0.12,995,2.3000000000000003,83,2.1 +2020,11,21,2,30,31.3,0.9500000000000001,0.0816,0.66,119,973,1061,0,12.700000000000001,266,765,33,1006,0.281,32.21,14.540000000000001,0.12,994,2.3000000000000003,81,2.4000000000000004 +2020,11,21,3,30,31.3,1,0.0971,0.66,118,947,960,0,12.600000000000001,118,947,0,960,0.28200000000000003,31.900000000000002,27.22,0.12,994,2.2,80,2.6 +2020,11,21,4,30,30.8,1,0.0937,0.66,110,911,803,0,12.5,122,883,0,794,0.28400000000000003,32.68,40.47,0.12,993,2.2,79,2.7 +2020,11,21,5,30,29.8,1.01,0.08900000000000001,0.66,95,851,598,0,12.5,95,851,0,598,0.28600000000000003,34.62,53.76,0.12,993,2.1,78,2.8000000000000003 +2020,11,21,6,30,28.1,1,0.0835,0.66,77,737,366,0,12.8,77,737,0,366,0.28800000000000003,38.87,66.91,0.12,994,2.1,75,2.7 +2020,11,21,7,30,25.8,1,0.0784,0.66,50,490,137,0,13.4,50,490,0,137,0.289,46.28,79.75,0.12,995,2.1,71,2 +2020,11,21,8,30,23.400000000000002,0.98,0.0751,0.66,0,0,0,0,14.700000000000001,0,0,0,0,0.29,58.01,92.29,0.12,995,2.1,65,1.2000000000000002 +2020,11,21,9,30,21.900000000000002,0.97,0.0738,0.66,0,0,0,0,15.700000000000001,0,0,0,0,0.29,68.06,104.06,0.12,996,2.1,61,0.9 +2020,11,21,10,30,20.900000000000002,0.9500000000000001,0.0738,0.66,0,0,0,0,16.3,0,0,0,0,0.29,74.89,114.75,0.12,996,2.1,59,0.8 +2020,11,21,11,30,20.1,0.9400000000000001,0.07400000000000001,0.66,0,0,0,0,16.6,0,0,0,0,0.29,80.21000000000001,123.71000000000001,0.12,996,2.1,57,0.6000000000000001 +2020,11,21,12,30,19.400000000000002,0.92,0.0742,0.66,0,0,0,0,16.7,0,0,0,0,0.289,84.48,130,0.12,996,2.1,58,0.6000000000000001 +2020,11,21,13,30,18.8,0.91,0.0748,0.66,0,0,0,0,16.8,0,0,0,0,0.289,88.10000000000001,132.54,0.12,995,2,59,0.6000000000000001 +2020,11,21,14,30,18.3,0.9,0.0755,0.66,0,0,0,0,16.900000000000002,0,0,33,0,0.289,91.51,130.74,0.12,995,2,59,0.6000000000000001 +2020,11,21,15,30,17.900000000000002,0.88,0.0772,0.66,0,0,0,0,16.900000000000002,0,0,0,0,0.28800000000000003,94.15,125.02,0.12,994,2,56,0.6000000000000001 +2020,11,21,16,30,17.6,0.87,0.08,0.66,0,0,0,0,17,0,0,0,0,0.28800000000000003,96.17,116.44,0.12,994,2,53,0.6000000000000001 +2020,11,21,17,30,17.400000000000002,0.85,0.08310000000000001,0.66,0,0,0,0,17,0,0,0,0,0.28800000000000003,97.33,106,0.12,994,2,49,0.7000000000000001 +2020,11,21,18,30,17.5,0.87,0.0884,0.66,0,0,0,0,16.900000000000002,0,0,0,0,0.289,96.52,94.39,0.12,995,2,47,0.7000000000000001 +2020,11,21,19,30,19,0.9,0.09380000000000001,0.66,46,388,100,0,17,46,388,0,100,0.28800000000000003,87.95,81.93,0.12,996,1.9000000000000001,45,0.7000000000000001 +2020,11,21,20,30,21.400000000000002,0.92,0.0916,0.66,77,699,326,0,16.7,77,699,0,326,0.289,74.43,69.16,0.12,996,1.9000000000000001,46,0.8 +2020,11,21,21,30,23.700000000000003,0.97,0.08320000000000001,0.66,91,847,564,0,15.700000000000001,91,847,0,564,0.289,60.81,56.050000000000004,0.12,996,1.9000000000000001,49,0.9 +2020,11,21,22,30,25.900000000000002,1.03,0.0753,0.66,99,928,780,0,14.700000000000001,99,928,0,780,0.289,50.1,42.78,0.12,996,1.9000000000000001,51,1.1 +2020,11,21,23,30,27,1.06,0.0704,0.66,104,972,950,0,13.700000000000001,104,972,0,950,0.289,43.83,29.490000000000002,0.12,995,1.9000000000000001,52,1.2000000000000002 +2020,11,22,0,30,29.8,1.1,0.0637,0.66,106,999,1063,0,12.600000000000001,106,999,0,1063,0.28800000000000003,34.7,16.580000000000002,0.12,994,1.9000000000000001,58,1.4000000000000001 +2020,11,22,1,30,31.1,1.12,0.0637,0.66,107,1006,1105,0,11.700000000000001,107,1006,0,1105,0.28800000000000003,30.44,7.2700000000000005,0.12,993,1.9000000000000001,61,1.6 +2020,11,22,2,30,31.900000000000002,1.1300000000000001,0.0661,0.66,108,998,1075,0,11.100000000000001,108,998,33,1075,0.28700000000000003,27.98,14.370000000000001,0.12,992,1.9000000000000001,63,1.9000000000000001 +2020,11,22,3,30,32.1,1.12,0.075,0.66,108,974,975,0,10.8,108,974,0,975,0.28700000000000003,27.14,27.080000000000002,0.12,991,1.9000000000000001,64,2.1 +2020,11,22,4,30,31.700000000000003,1.11,0.0732,0.66,100,940,816,0,10.700000000000001,100,940,0,816,0.28700000000000003,27.52,40.34,0.12,991,1.9000000000000001,64,2.2 +2020,11,22,5,30,30.700000000000003,1.09,0.0687,0.66,87,880,609,0,10.700000000000001,87,880,0,609,0.28700000000000003,29.19,53.63,0.12,990,1.9000000000000001,63,2.3000000000000003 +2020,11,22,6,30,29.200000000000003,1.07,0.0664,0.66,71,770,375,7,11,142,286,0,255,0.28700000000000003,32.46,66.77,0.12,990,1.9000000000000001,61,2.2 +2020,11,22,7,30,26.700000000000003,1.06,0.062400000000000004,0.66,47,534,143,0,11.8,47,534,0,143,0.28800000000000003,39.410000000000004,79.61,0.12,991,1.8,59,1.6 +2020,11,22,8,30,23.900000000000002,1.05,0.0603,0.66,0,0,0,0,13.700000000000001,0,0,0,0,0.28800000000000003,52.92,92.13,0.12,991,1.8,58,1 +2020,11,22,9,30,22.200000000000003,1.06,0.0594,0.66,0,0,0,0,14.8,0,0,0,0,0.289,62.800000000000004,103.88,0.12,992,1.8,54,0.9 +2020,11,22,10,30,21.1,1.07,0.0599,0.66,0,0,0,0,15.4,0,0,0,0,0.289,69.83,114.55,0.12,992,1.8,47,0.8 +2020,11,22,11,30,20.200000000000003,1.08,0.0635,0.66,0,0,0,0,15.9,0,0,0,0,0.28800000000000003,76.11,123.5,0.12,992,1.9000000000000001,38,0.8 +2020,11,22,12,30,19.5,1.09,0.0707,0.66,0,0,0,0,16.2,0,0,0,0,0.28800000000000003,81.01,129.78,0.12,992,1.9000000000000001,28,0.7000000000000001 +2020,11,22,13,30,19,1.09,0.0785,0.66,0,0,0,0,16.3,0,0,0,0,0.28700000000000003,84.44,132.33,0.12,991,1.9000000000000001,20,0.7000000000000001 +2020,11,22,14,30,18.5,1.11,0.0858,0.66,0,0,0,0,16.5,0,0,33,0,0.28800000000000003,87.89,130.55,0.12,991,1.9000000000000001,13,0.7000000000000001 +2020,11,22,15,30,18.1,1.1300000000000001,0.09090000000000001,0.66,0,0,0,0,16.6,0,0,0,0,0.29,90.7,124.87,0.12,990,2,183,0.6000000000000001 +2020,11,22,16,30,17.6,1.17,0.09340000000000001,0.66,0,0,0,0,16.6,0,0,0,0,0.291,93.96000000000001,116.33,0.12,990,2,344,0.7000000000000001 +2020,11,22,17,30,17.1,1.23,0.0921,0.66,0,0,0,0,16.6,0,0,0,0,0.292,96.93,105.92,0.12,990,2,323,0.7000000000000001 +2020,11,22,18,30,17.1,1.27,0.0969,0.66,0,0,0,0,16.6,0,0,0,0,0.292,96.59,94.33,0.12,991,2.1,315,0.8 +2020,11,22,19,30,18.400000000000002,1.31,0.10790000000000001,0.66,44,381,98,0,16.5,44,381,0,98,0.293,88.55,81.89,0.12,991,2.1,315,1.3 +2020,11,22,20,30,21,1.36,0.1105,0.66,79,679,321,0,16.400000000000002,79,679,33,321,0.292,74.98,69.14,0.12,991,2.1,315,1.8 +2020,11,22,21,30,23.900000000000002,1.4000000000000001,0.1044,0.66,96,824,556,0,15.600000000000001,96,824,0,556,0.292,59.57,56.04,0.12,991,2.1,314,1.8 +2020,11,22,22,30,26.900000000000002,1.42,0.1023,0.66,108,901,769,0,13.9,108,901,0,769,0.292,44.67,42.77,0.12,990,2.1,315,1.6 +2020,11,22,23,30,28.400000000000002,1.42,0.10070000000000001,0.66,115,945,938,0,11.8,115,945,0,938,0.292,35.67,29.48,0.12,990,2.1,317,1.6 +2020,11,23,0,30,32,1.29,0.10650000000000001,0.66,123,964,1047,0,10.100000000000001,123,964,0,1047,0.291,25.96,16.53,0.12,988,2.1,337,1.7000000000000002 +2020,11,23,1,30,33.6,1.29,0.1043,0.66,124,973,1090,0,9,124,973,0,1090,0.291,22.03,7.08,0.12,987,2.1,346,1.8 +2020,11,23,2,30,34.6,1.29,0.1039,0.66,124,966,1060,0,8.3,124,966,33,1060,0.291,19.92,14.200000000000001,0.12,985,2.1,350,2 +2020,11,23,3,30,34.9,1.28,0.1119,0.66,126,935,959,0,8.1,126,935,0,959,0.291,19.26,26.95,0.12,984,2.2,348,1.9000000000000001 +2020,11,23,4,30,34.6,1.3,0.1282,0.66,123,882,797,0,8.1,123,882,0,797,0.29,19.61,40.21,0.12,983,2.3000000000000003,346,1.9000000000000001 +2020,11,23,5,30,33.9,1.33,0.1371,0.66,111,803,589,0,8.4,111,803,0,589,0.29,20.78,53.5,0.12,983,2.3000000000000003,347,1.8 +2020,11,23,6,30,32.5,1.36,0.14120000000000002,0.66,93,664,356,0,8.9,93,664,0,356,0.289,23.330000000000002,66.63,0.12,983,2.4000000000000004,174,1.7000000000000002 +2020,11,23,7,30,29.700000000000003,1.41,0.1588,0.66,59,386,130,0,10.700000000000001,59,386,0,130,0.28800000000000003,30.87,79.46000000000001,0.12,983,2.5,2,1.3 +2020,11,23,8,30,26.6,1.49,0.1872,0.66,0,0,0,0,14.9,0,0,0,0,0.28800000000000003,48.660000000000004,91.97,0.12,983,2.5,177,1.1 +2020,11,23,9,30,24.8,1.58,0.2164,0.66,0,0,0,0,15.5,0,0,0,0,0.28800000000000003,56.38,103.71000000000001,0.12,983,2.6,350,1.1 +2020,11,23,10,30,23.8,1.6400000000000001,0.24200000000000002,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.28700000000000003,58.76,114.36,0.12,984,2.7,345,1 +2020,11,23,11,30,23.1,1.6500000000000001,0.2454,0.66,0,0,0,0,15,0,0,0,0,0.28700000000000003,60.26,123.29,0.12,984,2.7,342,1 +2020,11,23,12,30,22.5,1.6,0.23520000000000002,0.66,0,0,0,3,14.8,0,0,0,0,0.28700000000000003,61.97,129.56,0.12,983,2.8000000000000003,340,1 +2020,11,23,13,30,21.900000000000002,1.53,0.2182,0.66,0,0,0,4,14.8,0,0,0,0,0.28700000000000003,64.27,132.12,0.12,982,2.8000000000000003,336,1 +2020,11,23,14,30,21.400000000000002,1.48,0.1905,0.66,0,0,0,0,14.9,0,0,33,0,0.28700000000000003,66.48,130.37,0.12,982,2.8000000000000003,331,1 +2020,11,23,15,30,20.900000000000002,1.43,0.1706,0.66,0,0,0,8,15.100000000000001,0,0,0,0,0.28700000000000003,69.5,124.73,0.12,981,2.9000000000000004,326,1 +2020,11,23,16,30,20.6,1.3800000000000001,0.168,0.66,0,0,0,8,15.5,0,0,0,0,0.28700000000000003,72.54,116.23,0.12,981,2.9000000000000004,318,0.9 +2020,11,23,17,30,20.400000000000002,1.34,0.16590000000000002,0.66,0,0,0,7,15.8,0,0,0,0,0.28700000000000003,75.07000000000001,105.85000000000001,0.12,982,3,300,0.7000000000000001 +2020,11,23,18,30,20.3,1.31,0.1668,0.66,0,0,0,7,15.9,0,0,0,0,0.28700000000000003,76.01,94.28,0.12,982,3.1,281,0.6000000000000001 +2020,11,23,19,30,20.900000000000002,1.28,0.1688,0.66,50,292,91,4,16.1,51,152,83,73,0.28800000000000003,74.14,81.86,0.12,983,3.1,270,0.7000000000000001 +2020,11,23,20,30,22.400000000000002,1.25,0.1612,0.66,93,598,306,3,15.9,138,267,0,233,0.289,66.82000000000001,69.12,0.12,984,3.1,271,1 +2020,11,23,21,30,24.6,1.22,0.1517,0.66,115,755,537,3,15.8,191,485,0,462,0.29,57.93,56.03,0.12,984,3.1,273,1 +2020,11,23,22,30,27.400000000000002,1.21,0.1422,0.66,127,844,747,0,15.600000000000001,127,844,0,747,0.292,48.57,42.77,0.12,984,3.2,258,0.7000000000000001 +2020,11,23,23,30,28.900000000000002,1.21,0.1374,0.66,136,893,913,0,15.100000000000001,136,893,0,913,0.292,43.14,29.47,0.12,984,3.2,243,0.5 +2020,11,24,0,30,32.2,1.21,0.1691,0.66,157,893,1013,0,14.700000000000001,157,893,0,1013,0.295,34.69,16.5,0.12,983,3.3000000000000003,175,0.5 +2020,11,24,1,30,33.5,1.22,0.1779,0.66,166,892,1052,0,14.700000000000001,166,892,0,1052,0.297,32.29,6.890000000000001,0.12,982,3.4000000000000004,147,0.6000000000000001 +2020,11,24,2,30,33.800000000000004,1.2,0.1995,0.66,178,865,1017,3,15,385,430,33,802,0.299,32.33,14.040000000000001,0.12,982,3.5,121,0.9 +2020,11,24,3,30,33,1.19,0.2374,0.66,189,811,913,0,15.3,189,811,0,913,0.301,34.62,26.82,0.12,981,3.7,103,1.5 +2020,11,24,4,30,31.5,1.19,0.2806,0.66,195,725,750,0,16,195,725,0,750,0.303,39.300000000000004,40.09,0.12,981,3.9000000000000004,97,2.3000000000000003 +2020,11,24,5,30,29.200000000000003,1.17,0.34190000000000004,0.66,195,581,542,0,17,239,384,0,468,0.305,47.89,53.370000000000005,0.12,981,4.2,98,2.9000000000000004 +2020,11,24,6,30,26.700000000000003,1.1400000000000001,0.4546,0.66,169,369,316,6,18.3,41,0,0,41,0.306,59.92,66.49,0.12,982,4.5,100,3.1 +2020,11,24,7,30,24.400000000000002,1.11,0.5228,0.66,83,133,108,8,19.3,76,119,100,98,0.307,73.28,79.31,0.12,983,4.6000000000000005,101,3.1 +2020,11,24,8,30,22.900000000000002,1.09,0.47900000000000004,0.66,0,0,0,7,19.8,0,0,33,0,0.308,82.8,91.81,0.12,984,4.5,106,2.9000000000000004 +2020,11,24,9,30,22.1,1.08,0.4761,0.66,0,0,0,7,19.900000000000002,0,0,0,0,0.307,87.28,103.53,0.12,985,4.4,113,2.6 +2020,11,24,10,30,21.5,1.02,0.435,0.66,0,0,0,7,19.700000000000003,0,0,0,0,0.306,89.60000000000001,114.17,0.12,986,4.3,119,2.4000000000000004 +2020,11,24,11,30,21,0.96,0.3688,0.66,0,0,0,7,19.5,0,0,0,0,0.305,90.93,123.08,0.12,987,4.1000000000000005,125,2.3000000000000003 +2020,11,24,12,30,20.6,0.91,0.3299,0.66,0,0,0,7,19,0,0,0,0,0.305,90.55,129.35,0.12,987,3.9000000000000004,129,2.2 +2020,11,24,13,30,20.200000000000003,0.87,0.3032,0.66,0,0,0,8,18.400000000000002,0,0,0,0,0.306,89.5,131.91,0.12,986,3.8000000000000003,131,2 +2020,11,24,14,30,19.8,0.84,0.2736,0.66,0,0,0,8,17.900000000000002,0,0,33,0,0.307,88.92,130.2,0.12,986,3.6,131,1.8 +2020,11,24,15,30,19.5,0.8300000000000001,0.2451,0.66,0,0,0,8,17.400000000000002,0,0,0,0,0.307,87.87,124.59,0.12,985,3.4000000000000004,132,1.7000000000000002 +2020,11,24,16,30,19.3,0.8300000000000001,0.22440000000000002,0.66,0,0,0,7,17,0,0,0,0,0.307,86.68,116.13,0.12,985,3.3000000000000003,133,1.5 +2020,11,24,17,30,19.1,0.84,0.2061,0.66,0,0,0,7,16.7,0,0,0,0,0.308,85.98,105.78,0.12,986,3.2,131,1.3 +2020,11,24,18,30,19.200000000000003,0.87,0.19210000000000002,0.66,0,0,0,8,16.400000000000002,0,0,0,0,0.309,83.88,94.24,0.12,986,3.1,127,1.3 +2020,11,24,19,30,20,0.89,0.1777,0.66,53,260,90,3,16.2,21,23,100,24,0.309,78.84,81.83,0.12,987,3.1,122,1.7000000000000002 +2020,11,24,20,30,21.700000000000003,0.91,0.1683,0.66,98,574,303,3,15.9,74,1,0,74,0.308,69.8,69.11,0.12,987,3,117,2.3000000000000003 +2020,11,24,21,30,23.5,0.92,0.1688,0.66,126,725,531,2,15.3,231,310,0,404,0.306,60.07,56.03,0.12,988,3,112,2.5 +2020,11,24,22,30,25.1,0.9,0.18050000000000002,0.66,150,801,738,3,14.9,215,11,0,223,0.304,53.1,42.77,0.12,988,3.1,108,2.5 +2020,11,24,23,30,25.700000000000003,0.88,0.1928,0.66,166,846,903,3,14.9,161,4,0,164,0.303,51.14,29.47,0.12,988,3.1,106,2.5 +2020,11,25,0,30,27.1,0.88,0.17120000000000002,0.66,166,886,1016,3,14.9,384,35,0,418,0.3,47.32,16.47,0.12,987,3.1,100,2.4000000000000004 +2020,11,25,1,30,27.6,0.85,0.18430000000000002,0.66,174,888,1056,3,15.100000000000001,513,98,0,610,0.299,46.32,6.71,0.12,987,3.1,98,2.4000000000000004 +2020,11,25,2,30,27.8,0.8300000000000001,0.191,0.66,176,878,1028,2,15.100000000000001,450,384,42,823,0.298,45.96,13.88,0.12,986,3.1,97,2.4000000000000004 +2020,11,25,3,30,27.700000000000003,0.81,0.18960000000000002,0.66,173,850,932,2,15.200000000000001,409,316,42,691,0.297,46.43,26.68,0.12,986,3.1,98,2.5 +2020,11,25,4,30,27,0.8,0.20600000000000002,0.66,168,791,774,3,15.3,314,269,8,520,0.298,48.620000000000005,39.96,0.12,986,3.1,98,2.7 +2020,11,25,5,30,26.1,0.78,0.2164,0.66,151,704,572,3,15.4,105,0,0,105,0.298,51.620000000000005,53.24,0.12,986,3.1,96,2.8000000000000003 +2020,11,25,6,30,25,0.77,0.2096,0.66,119,570,348,0,15.5,138,383,0,292,0.298,55.6,66.36,0.12,986,3.1,94,2.8000000000000003 +2020,11,25,7,30,23.5,0.77,0.19390000000000002,0.66,71,321,131,0,15.700000000000001,71,321,0,131,0.298,61.51,79.17,0.12,987,3.1,91,2.6 +2020,11,25,8,30,22.1,0.8,0.1777,0.66,0,0,0,0,15.9,0,0,0,0,0.298,68.04,91.65,0.12,988,3.1,87,2.2 +2020,11,25,9,30,21.200000000000003,0.84,0.16090000000000002,0.66,0,0,0,0,16.2,0,0,0,0,0.298,73.16,103.36,0.12,989,3,85,1.9000000000000001 +2020,11,25,10,30,20.5,0.9,0.14500000000000002,0.66,0,0,0,0,16.3,0,0,0,0,0.297,77.10000000000001,113.98,0.12,989,3,84,1.6 +2020,11,25,11,30,20.1,0.9500000000000001,0.134,0.66,0,0,0,0,16.5,0,0,0,0,0.296,79.64,122.88,0.12,990,3,85,1.4000000000000001 +2020,11,25,12,30,19.8,1.01,0.1296,0.66,0,0,0,0,16.5,0,0,0,0,0.296,81.12,129.14000000000001,0.12,989,2.9000000000000004,87,1.1 +2020,11,25,13,30,19.5,1.05,0.1267,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.295,82.42,131.72,0.12,989,2.9000000000000004,90,0.9 +2020,11,25,14,30,19.3,1.07,0.1189,0.66,0,0,0,0,16.3,0,0,33,0,0.293,82.78,130.03,0.12,988,2.8000000000000003,92,0.8 +2020,11,25,15,30,19,1.1,0.1199,0.66,0,0,0,0,16.2,0,0,0,0,0.292,83.82000000000001,124.46000000000001,0.12,988,2.8000000000000003,96,0.7000000000000001 +2020,11,25,16,30,18.7,1.12,0.1197,0.66,0,0,0,0,16.2,0,0,0,0,0.291,85.26,116.03,0.12,988,2.7,103,0.6000000000000001 +2020,11,25,17,30,18.3,1.1300000000000001,0.10990000000000001,0.66,0,0,0,0,16.2,0,0,0,0,0.289,87.47,105.72,0.12,988,2.7,113,0.5 +2020,11,25,18,30,18.2,1.1400000000000001,0.10930000000000001,0.66,0,0,0,0,16.2,0,0,0,0,0.28800000000000003,88.18,94.2,0.12,989,2.7,123,0.5 +2020,11,25,19,30,19.3,1.16,0.1071,0.66,46,372,99,0,16.2,46,372,0,99,0.28600000000000003,82.21000000000001,81.81,0.12,989,2.7,113,0.6000000000000001 +2020,11,25,20,30,21.400000000000002,1.18,0.09870000000000001,0.66,78,679,320,0,15.8,78,679,0,320,0.28600000000000003,70.34,69.10000000000001,0.12,990,2.7,87,0.7000000000000001 +2020,11,25,21,30,23.700000000000003,1.21,0.08940000000000001,0.66,93,825,554,0,15.100000000000001,147,593,0,478,0.28500000000000003,58.68,56.04,0.12,990,2.7,70,0.8 +2020,11,25,22,30,26,1.23,0.084,0.66,103,903,766,0,14.5,103,903,0,766,0.28500000000000003,48.97,42.78,0.12,990,2.7,64,0.8 +2020,11,25,23,30,27.1,1.23,0.0814,0.66,110,947,934,0,14.100000000000001,110,947,0,934,0.28500000000000003,44.96,29.48,0.12,990,2.7,63,0.8 +2020,11,26,0,30,30,1.18,0.1109,0.66,131,945,1037,0,14.100000000000001,131,945,0,1037,0.28600000000000003,37.85,16.45,0.12,989,2.7,78,0.8 +2020,11,26,1,30,31.400000000000002,1.16,0.11720000000000001,0.66,137,948,1079,0,14.100000000000001,170,880,0,1044,0.28600000000000003,34.89,6.54,0.12,988,2.7,87,0.9 +2020,11,26,2,30,32.2,1.1500000000000001,0.125,0.66,150,921,1045,0,14,361,500,33,847,0.28600000000000003,33.21,13.72,0.12,987,2.8000000000000003,89,1.1 +2020,11,26,3,30,32.300000000000004,1.1500000000000001,0.1957,0.66,170,861,940,3,14,335,299,8,602,0.28500000000000003,32.99,26.55,0.12,986,2.8000000000000003,86,1.3 +2020,11,26,4,30,31.8,1.16,0.20750000000000002,0.66,163,806,782,0,14.100000000000001,163,806,0,782,0.28400000000000003,34.11,39.83,0.12,986,2.9000000000000004,81,1.6 +2020,11,26,5,30,30.8,1.17,0.21200000000000002,0.66,145,725,580,0,14.3,145,725,0,580,0.28400000000000003,36.62,53.11,0.12,986,3,74,2 +2020,11,26,6,30,29,1.19,0.2041,0.66,113,595,353,0,14.8,113,595,0,353,0.28300000000000003,41.99,66.22,0.12,986,3.1,68,2.4000000000000004 +2020,11,26,7,30,26.700000000000003,1.2,0.1963,0.66,68,346,134,0,15.600000000000001,68,346,0,134,0.28300000000000003,50.53,79.02,0.12,987,3.1,65,2.5 +2020,11,26,8,30,24.400000000000002,1.19,0.1907,0.66,0,0,0,0,16.6,0,0,0,0,0.28300000000000003,61.730000000000004,91.49,0.12,988,3.2,64,2.3000000000000003 +2020,11,26,9,30,22.8,1.17,0.18780000000000002,0.66,0,0,0,0,17.3,0,0,0,0,0.28300000000000003,71.10000000000001,103.19,0.12,989,3.3000000000000003,65,2.1 +2020,11,26,10,30,21.900000000000002,1.1500000000000001,0.187,0.66,0,0,0,0,17.6,0,0,0,0,0.28300000000000003,76.5,113.79,0.12,990,3.3000000000000003,65,1.8 +2020,11,26,11,30,21.3,1.1300000000000001,0.18910000000000002,0.66,0,0,0,0,17.7,0,0,0,0,0.28300000000000003,79.93,122.69,0.12,991,3.4000000000000004,66,1.4000000000000001 +2020,11,26,12,30,20.8,1.11,0.1922,0.66,0,0,0,0,17.7,0,0,0,0,0.28200000000000003,82.55,128.94,0.12,991,3.4000000000000004,68,1 +2020,11,26,13,30,20.400000000000002,1.1,0.18960000000000002,0.66,0,0,0,0,17.7,0,0,0,0,0.281,84.56,131.53,0.12,991,3.3000000000000003,69,0.8 +2020,11,26,14,30,20.1,1.09,0.1799,0.66,0,0,0,0,17.7,0,0,33,0,0.28,86,129.87,0.12,990,3.2,66,0.7000000000000001 +2020,11,26,15,30,19.8,1.08,0.1718,0.66,0,0,0,0,17.7,0,0,0,0,0.28,87.58,124.34,0.12,990,3.2,59,0.6000000000000001 +2020,11,26,16,30,19.5,1.08,0.1635,0.66,0,0,0,0,17.7,0,0,0,0,0.28,89.13,115.95,0.12,990,3.1,51,0.6000000000000001 +2020,11,26,17,30,19.400000000000002,1.08,0.15180000000000002,0.66,0,0,0,0,17.6,0,0,0,0,0.28,89.59,105.66,0.12,990,3,50,0.5 +2020,11,26,18,30,19.5,1.09,0.1451,0.66,0,0,0,0,17.6,0,0,0,0,0.28,88.98,94.16,0.12,991,2.9000000000000004,58,0.5 +2020,11,26,19,30,20.6,1.1,0.1383,0.66,49,327,96,0,17.6,49,327,0,96,0.279,83.17,81.8,0.12,992,2.8000000000000003,68,0.8 +2020,11,26,20,30,22.6,1.12,0.1245,0.66,85,648,316,0,17.400000000000002,85,648,0,316,0.279,72.39,69.10000000000001,0.12,993,2.7,77,1.1 +2020,11,26,21,30,24.8,1.16,0.10840000000000001,0.66,100,810,552,0,16.7,100,810,0,552,0.278,60.85,56.04,0.12,993,2.6,89,1.4000000000000001 +2020,11,26,22,30,26.900000000000002,1.18,0.0936,0.66,107,900,767,0,16.1,227,493,0,589,0.278,51.76,42.79,0.12,993,2.5,96,1.7000000000000002 +2020,11,26,23,30,27.8,1.19,0.0834,0.66,112,949,938,0,15.700000000000001,195,752,0,850,0.278,47.59,29.490000000000002,0.12,993,2.5,98,1.9000000000000001 +2020,11,27,0,30,29.8,1.23,0.0635,0.66,104,990,1054,0,15.200000000000001,137,931,0,1030,0.278,41.160000000000004,16.44,0.12,992,2.4000000000000004,97,2.3000000000000003 +2020,11,27,1,30,30.6,1.24,0.060200000000000004,0.66,104,1000,1098,0,14.700000000000001,104,1000,0,1098,0.279,38.14,6.38,0.12,992,2.4000000000000004,93,2.6 +2020,11,27,2,30,30.900000000000002,1.22,0.0587,0.66,107,990,1069,0,14.3,107,990,33,1069,0.28,36.550000000000004,13.56,0.12,991,2.5,90,2.8000000000000003 +2020,11,27,3,30,30.700000000000003,1.09,0.08070000000000001,0.66,111,959,970,0,14.100000000000001,111,959,0,970,0.281,36.35,26.42,0.12,991,2.5,89,3 +2020,11,27,4,30,30,1.08,0.0789,0.66,102,925,814,0,13.9,102,925,0,814,0.28200000000000003,37.51,39.7,0.12,991,2.4000000000000004,87,3.1 +2020,11,27,5,30,28.8,1.06,0.0767,0.66,92,864,612,0,13.9,92,864,0,612,0.28400000000000003,40.19,52.97,0.12,991,2.4000000000000004,85,3.1 +2020,11,27,6,30,27.200000000000003,1.05,0.0734,0.66,75,758,382,0,14,75,758,0,382,0.28400000000000003,44.410000000000004,66.08,0.12,991,2.3000000000000003,81,2.9000000000000004 +2020,11,27,7,30,25.1,1.04,0.06960000000000001,0.66,50,532,153,0,14.3,50,532,0,153,0.28300000000000003,51.09,78.87,0.12,992,2.3000000000000003,76,2.5 +2020,11,27,8,30,23.200000000000003,1.04,0.0659,0.66,5,30,4,0,14.700000000000001,5,30,0,4,0.28200000000000003,58.68,91.33,0.12,993,2.2,70,1.9000000000000001 +2020,11,27,9,30,21.8,1.05,0.0625,0.66,0,0,0,0,15.200000000000001,0,0,0,0,0.281,66.01,103.02,0.12,993,2.1,66,1.4000000000000001 +2020,11,27,10,30,20.8,1.07,0.059800000000000006,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.28,72.25,113.61,0.12,994,2,66,1.1 +2020,11,27,11,30,20,1.09,0.058600000000000006,0.66,0,0,0,0,16,0,0,0,0,0.279,77.73,122.49000000000001,0.12,994,2,66,0.9 +2020,11,27,12,30,19.400000000000002,1.1,0.058100000000000006,0.66,0,0,0,0,16.2,0,0,0,0,0.279,82,128.75,0.12,994,2,64,0.7000000000000001 +2020,11,27,13,30,18.8,1.11,0.0574,0.66,0,0,0,0,16.400000000000002,0,0,0,0,0.279,85.87,131.35,0.12,993,2,61,0.6000000000000001 +2020,11,27,14,30,18.3,1.11,0.0568,0.66,0,0,0,0,16.5,0,0,33,0,0.279,89.02,129.72,0.12,992,1.9000000000000001,58,0.6000000000000001 +2020,11,27,15,30,17.8,1.1,0.0572,0.66,0,0,0,0,16.5,0,0,0,0,0.28,92.17,124.23,0.12,992,1.9000000000000001,56,0.6000000000000001 +2020,11,27,16,30,17.400000000000002,1.08,0.0585,0.66,0,0,0,0,16.5,0,0,0,0,0.28,94.62,115.87,0.12,992,1.9000000000000001,53,0.6000000000000001 +2020,11,27,17,30,17.1,1.06,0.0604,0.66,0,0,0,0,16.5,0,0,0,0,0.28,96.5,105.61,0.12,992,1.9000000000000001,47,0.7000000000000001 +2020,11,27,18,30,17.2,1.04,0.062400000000000004,0.66,0,0,0,0,16.5,0,0,0,0,0.281,95.87,94.14,0.12,992,1.9000000000000001,39,0.7000000000000001 +2020,11,27,19,30,18.900000000000002,1.03,0.06380000000000001,0.66,42,458,107,0,16.5,42,458,0,107,0.281,86.19,81.79,0.12,993,1.8,33,1 +2020,11,27,20,30,21.5,1.04,0.0632,0.66,67,748,334,0,16.2,67,748,0,334,0.281,72.02,69.11,0.12,993,1.8,32,1.2000000000000002 +2020,11,27,21,30,23.900000000000002,1.11,0.058300000000000005,0.66,81,882,573,0,15.100000000000001,81,882,0,573,0.28200000000000003,57.92,56.06,0.12,993,1.8,34,1.3 +2020,11,27,22,30,26.200000000000003,1.17,0.054,0.66,88,954,788,0,13.700000000000001,88,954,0,788,0.28300000000000003,46.17,42.81,0.12,993,1.8,37,1.3 +2020,11,27,23,30,27.3,1.19,0.051300000000000005,0.66,94,994,959,0,12.4,94,994,0,959,0.28300000000000003,39.78,29.51,0.12,993,1.8,38,1.3 +2020,11,28,0,30,30.3,0.99,0.06770000000000001,0.66,108,1001,1068,0,11.3,108,1001,0,1068,0.28500000000000003,30.990000000000002,16.43,0.13,991,1.8,42,1.6 +2020,11,28,1,30,31.900000000000002,1.01,0.065,0.66,107,1012,1113,0,10.600000000000001,107,1012,0,1113,0.28600000000000003,26.990000000000002,6.23,0.13,990,1.8,45,1.8 +2020,11,28,2,30,32.9,1.03,0.062400000000000004,0.66,105,1008,1086,0,10.3,105,1008,33,1086,0.28600000000000003,24.96,13.41,0.13,990,1.8,47,2 +2020,11,28,3,30,33.2,1.01,0.0641,0.66,103,989,990,0,10.3,103,989,0,990,0.28600000000000003,24.6,26.29,0.13,989,1.8,50,2.2 +2020,11,28,4,30,32.9,1.01,0.0623,0.66,96,955,832,0,10.5,96,955,0,832,0.28600000000000003,25.41,39.57,0.13,988,1.9000000000000001,51,2.3000000000000003 +2020,11,28,5,30,32,1,0.061200000000000004,0.66,86,894,626,0,10.9,86,894,0,626,0.28500000000000003,27.34,52.84,0.13,988,1.9000000000000001,51,2.4000000000000004 +2020,11,28,6,30,30.5,1,0.060500000000000005,0.66,71,787,392,0,11.3,71,787,0,392,0.28500000000000003,30.76,65.94,0.13,988,1.9000000000000001,50,2.5 +2020,11,28,7,30,28.1,1,0.0597,0.66,49,560,158,0,12.200000000000001,49,560,0,158,0.28500000000000003,37.28,78.73,0.13,989,1.9000000000000001,49,2.1 +2020,11,28,8,30,25.3,0.99,0.059300000000000005,0.66,5,36,4,0,13.8,5,36,0,4,0.28600000000000003,48.85,91.18,0.13,989,1.9000000000000001,46,1.7000000000000002 +2020,11,28,9,30,23.400000000000002,0.99,0.059500000000000004,0.66,0,0,0,0,14.9,0,0,0,0,0.28600000000000003,59,102.85000000000001,0.13,990,1.9000000000000001,42,1.4000000000000001 +2020,11,28,10,30,22.200000000000003,0.98,0.060500000000000005,0.66,0,0,0,0,15.600000000000001,0,0,0,0,0.28700000000000003,66.39,113.43,0.13,990,1.9000000000000001,36,1.3 +2020,11,28,11,30,21.3,0.98,0.06280000000000001,0.66,0,0,0,0,16.1,0,0,0,0,0.28700000000000003,72.21000000000001,122.3,0.13,990,2,28,1.1 +2020,11,28,12,30,20.5,0.98,0.0653,0.66,0,0,0,0,16.3,0,0,0,0,0.28600000000000003,77.07000000000001,128.56,0.13,990,2,19,0.9 +2020,11,28,13,30,19.900000000000002,0.99,0.06760000000000001,0.66,0,0,0,0,16.5,0,0,0,0,0.28600000000000003,80.54,131.17000000000002,0.13,990,2,11,0.8 +2020,11,28,14,30,19.3,0.99,0.06910000000000001,0.66,0,0,0,0,16.5,0,0,33,0,0.28500000000000003,83.8,129.57,0.13,989,1.9000000000000001,182,0.8 +2020,11,28,15,30,18.8,0.99,0.0698,0.66,0,0,0,0,16.5,0,0,0,0,0.28500000000000003,86.66,124.12,0.13,989,1.9000000000000001,354,0.7000000000000001 +2020,11,28,16,30,18.2,0.98,0.07050000000000001,0.66,0,0,0,0,16.6,0,0,0,0,0.28400000000000003,90.13,115.79,0.13,988,1.9000000000000001,345,0.7000000000000001 +2020,11,28,17,30,17.7,0.98,0.0721,0.66,0,0,0,0,16.6,0,0,0,0,0.28400000000000003,93.29,105.56,0.13,989,1.9000000000000001,335,0.7000000000000001 +2020,11,28,18,30,17.7,0.99,0.0752,0.66,0,0,0,0,16.6,0,0,0,0,0.28300000000000003,93.3,94.11,0.13,989,1.9000000000000001,327,0.8 +2020,11,28,19,30,19,1.01,0.079,0.66,44,430,105,0,16.6,44,430,0,105,0.281,85.99,81.78,0.13,990,1.9000000000000001,321,1.3 +2020,11,28,20,30,21.5,1.08,0.0748,0.66,71,732,332,0,16.5,71,732,0,332,0.28,73.07000000000001,69.11,0.13,990,1.9000000000000001,320,1.9000000000000001 +2020,11,28,21,30,24.3,1.1500000000000001,0.0664,0.66,85,873,572,0,15.700000000000001,85,873,0,572,0.279,58.57,56.08,0.13,990,1.8,321,1.9000000000000001 +2020,11,28,22,30,27.400000000000002,1.19,0.061900000000000004,0.66,93,947,787,0,14.5,93,947,0,787,0.278,45.12,42.84,0.13,990,1.8,324,1.9000000000000001 +2020,11,28,23,30,29,1.2,0.059000000000000004,0.66,98,988,958,0,13,98,988,0,958,0.277,37.35,29.53,0.13,989,1.8,325,1.8 +2020,11,29,0,30,33,1.21,0.0563,0.66,101,1013,1073,0,11.600000000000001,101,1013,0,1073,0.277,27.16,16.44,0.16,988,1.8,335,1.8 +2020,11,29,1,30,34.7,1.2,0.055400000000000005,0.66,103,1023,1120,0,10.8,103,1023,0,1120,0.277,23.46,6.09,0.16,986,1.7000000000000002,342,1.9000000000000001 +2020,11,29,2,30,35.800000000000004,1.19,0.0557,0.66,109,1009,1091,0,10.5,109,1009,33,1091,0.277,21.6,13.25,0.16,985,1.7000000000000002,345,1.9000000000000001 +2020,11,29,3,30,36.2,0.78,0.09000000000000001,0.66,120,967,988,0,10.4,120,967,0,988,0.277,20.95,26.16,0.16,984,1.8,345,1.9000000000000001 +2020,11,29,4,30,36.1,0.77,0.0901,0.66,113,926,828,0,10.3,113,926,0,828,0.277,21.01,39.45,0.16,983,1.9000000000000001,343,1.8 +2020,11,29,5,30,35.5,0.77,0.0926,0.66,103,852,619,0,10.4,103,852,0,619,0.276,21.84,52.71,0.16,983,2,341,1.7000000000000002 +2020,11,29,6,30,34.300000000000004,0.8,0.0988,0.66,87,720,382,0,10.700000000000001,87,720,0,382,0.276,23.7,65.81,0.16,983,2.2,347,1.6 +2020,11,29,7,30,31.700000000000003,0.84,0.1101,0.66,61,452,150,0,11.4,61,452,0,150,0.276,28.85,78.59,0.16,983,2.4000000000000004,180,1.4000000000000001 +2020,11,29,8,30,28.5,0.9,0.1285,0.66,4,13,4,0,14.4,4,13,0,4,0.276,42.13,91.02,0.16,984,2.5,181,1.2000000000000002 +2020,11,29,9,30,26.700000000000003,0.98,0.1516,0.66,0,0,0,0,15,0,0,0,0,0.276,48.620000000000005,102.69,0.16,985,2.6,349,1.1 +2020,11,29,10,30,25.8,1.04,0.1716,0.66,0,0,0,0,14.8,0,0,0,0,0.275,50.74,113.26,0.16,985,2.7,339,1 +2020,11,29,11,30,25,1.04,0.1764,0.66,0,0,0,0,14.8,0,0,0,0,0.275,53.230000000000004,122.12,0.16,985,2.8000000000000003,333,1 +2020,11,29,12,30,24.200000000000003,0.99,0.1643,0.66,0,0,0,0,14.700000000000001,0,0,0,0,0.275,55.300000000000004,128.37,0.16,985,2.8000000000000003,328,1 +2020,11,29,13,30,23.400000000000002,0.92,0.1467,0.66,0,0,0,0,14.5,0,0,0,0,0.274,57.29,131,0.16,985,2.8000000000000003,324,1 +2020,11,29,14,30,22.8,0.86,0.1333,0.66,0,0,0,0,14.4,0,0,33,0,0.274,58.96,129.43,0.16,984,2.8000000000000003,320,0.9 +2020,11,29,15,30,22.200000000000003,0.81,0.12840000000000001,0.66,0,0,0,0,14.5,0,0,0,0,0.274,61.730000000000004,124.01,0.16,984,2.9000000000000004,315,0.8 +2020,11,29,16,30,21.6,0.77,0.131,0.66,0,0,0,8,14.8,0,0,0,0,0.275,65.19,115.73,0.16,985,2.9000000000000004,313,0.5 +2020,11,29,17,30,21.1,0.76,0.1368,0.66,0,0,0,0,15.100000000000001,0,0,0,0,0.276,68.46000000000001,105.52,0.16,986,3,212,0.4 +2020,11,29,18,30,21.1,0.76,0.1408,0.66,0,0,0,0,15.4,0,0,0,0,0.278,69.79,94.10000000000001,0.16,987,3,111,0.6000000000000001 +2020,11,29,19,30,22.3,0.77,0.14500000000000002,0.66,51,284,92,0,15.600000000000001,51,275,8,90,0.279,65.71000000000001,81.79,0.16,988,3.1,117,0.9 +2020,11,29,20,30,24.6,0.78,0.1588,0.66,100,568,302,0,15.8,99,566,0,301,0.279,58.160000000000004,69.13,0.16,989,3.2,126,1.4000000000000001 +2020,11,29,21,30,26.700000000000003,0.78,0.1885,0.66,138,690,523,7,16.3,205,430,0,445,0.279,52.85,56.1,0.16,990,3.4000000000000004,127,2 +2020,11,29,22,30,28.400000000000002,0.75,0.22440000000000002,0.66,174,748,722,0,16.900000000000002,174,748,0,722,0.278,49.78,42.87,0.16,990,3.6,121,2.5 +2020,11,29,23,30,29.1,0.71,0.26380000000000003,0.66,203,782,883,0,17.5,229,736,0,869,0.278,49.61,29.560000000000002,0.16,990,3.8000000000000003,118,2.6 +2020,11,30,0,30,30.8,0.67,0.2531,0.66,208,813,988,0,17.900000000000002,208,813,0,988,0.276,46.2,16.44,0.16,989,4.1000000000000005,106,2.7 +2020,11,30,1,30,31.700000000000003,0.63,0.26580000000000004,0.66,219,813,1028,0,18.1,219,813,0,1028,0.276,44.52,5.95,0.16,989,4.3,98,2.6 +2020,11,30,2,30,32,0.6,0.27540000000000003,0.66,217,805,1001,0,18.2,217,805,0,1001,0.276,44.02,13.1,0.16,988,4.5,91,2.6 +2020,11,30,3,30,31.900000000000002,0.59,0.2506,0.66,203,788,911,0,18.2,203,788,33,911,0.277,44.21,26.03,0.16,988,4.5,87,2.5 +2020,11,30,4,30,31.6,0.5700000000000001,0.25830000000000003,0.66,193,733,760,0,18.2,208,703,0,752,0.277,44.99,39.32,0.16,988,4.5,83,2.6 +2020,11,30,5,30,30.8,0.55,0.25930000000000003,0.66,172,647,565,0,18.3,172,647,0,565,0.278,47.31,52.58,0.16,988,4.4,80,2.7 +2020,11,30,6,30,29.400000000000002,0.53,0.2577,0.66,139,505,347,0,18.400000000000002,139,505,0,347,0.278,51.59,65.67,0.16,988,4.2,77,2.8000000000000003 +2020,11,30,7,30,27.3,0.52,0.2484,0.66,82,258,134,0,18.5,82,250,8,132,0.278,58.79,78.44,0.16,988,4.1000000000000005,76,2.8000000000000003 +2020,11,30,8,30,25.3,0.52,0.23450000000000001,0.66,3,1,3,0,18.7,2,0,33,2,0.279,66.97,90.87,0.16,989,3.9000000000000004,78,2.6 +2020,11,30,9,30,23.900000000000002,0.52,0.2295,0.66,0,0,0,0,18.8,0,0,0,0,0.279,73.33,102.52,0.16,990,3.8000000000000003,83,2.5 +2020,11,30,10,30,23.1,0.52,0.2306,0.66,0,0,0,0,18.8,0,0,0,0,0.28,76.93,113.08,0.16,991,3.8000000000000003,88,2.4000000000000004 +2020,11,30,11,30,22.6,0.53,0.21810000000000002,0.66,0,0,0,0,18.8,0,0,0,0,0.28,78.99,121.94,0.16,991,3.7,92,2.2 +2020,11,30,12,30,22.3,0.55,0.2071,0.66,0,0,0,2,18.7,0,0,0,0,0.279,80,128.19,0.16,991,3.7,98,2 +2020,11,30,13,30,22,0.55,0.2028,0.66,0,0,0,3,18.6,0,0,0,0,0.279,81.15,130.84,0.16,991,3.8000000000000003,105,1.9000000000000001 +2020,11,30,14,30,21.700000000000003,0.56,0.1952,0.66,0,0,0,3,18.6,0,0,33,0,0.279,82.38,129.3,0.16,990,3.8000000000000003,109,1.6 +2020,11,30,15,30,21.400000000000002,0.6,0.1961,0.66,0,0,0,3,18.5,0,0,0,0,0.28,83.8,123.92,0.16,990,3.9000000000000004,105,1.3 +2020,11,30,16,30,21.1,0.62,0.1953,0.66,0,0,0,3,18.5,0,0,0,0,0.28,85.32000000000001,115.66,0.16,990,3.9000000000000004,99,1 +2020,11,30,17,30,20.900000000000002,0.63,0.1893,0.66,0,0,0,3,18.6,0,0,0,0,0.28200000000000003,86.45,105.49000000000001,0.16,990,3.9000000000000004,97,0.8 +2020,11,30,18,30,20.900000000000002,0.64,0.18610000000000002,0.66,0,0,0,3,18.6,0,0,0,0,0.28300000000000003,86.71000000000001,94.09,0.16,991,3.8000000000000003,100,0.8 +2020,11,30,19,30,21.900000000000002,0.65,0.1773,0.66,56,239,90,0,18.7,56,239,0,90,0.28300000000000003,81.86,81.79,0.16,992,3.8000000000000003,95,1.2000000000000002 +2020,11,30,20,30,23.8,0.68,0.1656,0.66,101,558,300,3,18.6,79,133,0,126,0.28300000000000003,72.78,69.15,0.16,992,3.8000000000000003,75,1.3 +2020,11,30,21,30,26,0.73,0.1636,0.66,126,719,527,3,18.6,153,2,0,154,0.28300000000000003,63.620000000000005,56.13,0.16,992,3.8000000000000003,45,1.1 +2020,11,30,22,30,28.3,0.78,0.15990000000000001,0.66,139,813,735,3,18.6,350,101,0,424,0.28200000000000003,55.58,42.9,0.16,992,3.8000000000000003,15,1 +2020,11,30,23,30,29.400000000000002,0.8200000000000001,0.1486,0.66,146,870,903,2,18.5,345,460,25,745,0.28200000000000003,52,29.59,0.16,991,3.8000000000000003,2,1 +2016,12,1,0,30,31.400000000000002,0.99,0.09190000000000001,0.67,120,961,1042,0,14.100000000000001,120,961,0,1042,0.29,35.08,16.46,0.12,986,2.8000000000000003,328,2.1 +2016,12,1,1,30,32.9,0.97,0.08750000000000001,0.67,120,972,1087,0,13.9,120,972,0,1087,0.29,31.650000000000002,5.84,0.12,985,2.8000000000000003,324,2.1 +2016,12,1,2,30,33.9,0.9400000000000001,0.0852,0.67,121,965,1061,0,13.600000000000001,121,965,33,1061,0.29,29.43,12.950000000000001,0.12,984,2.8000000000000003,321,2.1 +2016,12,1,3,30,34.300000000000004,0.9400000000000001,0.0954,0.67,121,938,965,0,13.600000000000001,142,906,0,957,0.28800000000000003,28.69,25.900000000000002,0.12,983,2.9000000000000004,321,2 +2016,12,1,4,30,34.1,0.92,0.099,0.67,117,894,810,7,13.600000000000001,282,494,17,665,0.28700000000000003,29.150000000000002,39.19,0.12,982,2.9000000000000004,320,1.9000000000000001 +2016,12,1,5,30,33.2,0.89,0.1082,0.67,111,810,605,7,13.8,216,409,0,465,0.28500000000000003,30.91,52.45,0.12,982,3,324,1.6 +2016,12,1,6,30,31.3,0.91,0.135,0.67,102,653,372,9,14.3,56,1,0,56,0.28500000000000003,35.56,65.54,0.12,982,3.2,181,1.3 +2016,12,1,7,30,28.6,0.9400000000000001,0.1658,0.67,70,379,147,7,16.3,56,106,67,77,0.28500000000000003,47.36,78.3,0.12,983,3.4000000000000004,45,1.4000000000000001 +2016,12,1,8,30,25.8,0.9500000000000001,0.1723,0.67,4,10,4,0,19.3,4,10,8,4,0.28500000000000003,67.27,90.17,0.12,984,3.4000000000000004,57,1.8 +2016,12,1,9,30,23.900000000000002,0.9400000000000001,0.15180000000000002,0.67,0,0,0,0,19.200000000000003,0,0,0,0,0.28400000000000003,75.07000000000001,102.36,0.12,985,3.3000000000000003,56,1.8 +2016,12,1,10,30,22.900000000000002,0.91,0.1428,0.67,0,0,0,0,19.5,0,0,0,0,0.28300000000000003,81.34,112.92,0.12,986,3.2,54,1.6 +2016,12,1,11,30,22.1,0.88,0.1429,0.67,0,0,0,0,19.700000000000003,0,0,0,0,0.28200000000000003,86.16,121.77,0.12,986,3.2,52,1.4000000000000001 +2016,12,1,12,30,21.5,0.85,0.1444,0.67,0,0,0,0,19.700000000000003,0,0,0,0,0.28,89.29,128.02,0.12,986,3.1,50,1.2000000000000002 +2016,12,1,13,30,20.900000000000002,0.84,0.14200000000000002,0.67,0,0,0,0,19.5,0,0,0,0,0.279,91.46000000000001,130.68,0.12,986,3,44,1.1 +2016,12,1,14,30,20.400000000000002,0.8300000000000001,0.13820000000000002,0.67,0,0,0,0,19.1,0,0,33,0,0.278,92.44,129.18,0.12,986,2.8000000000000003,36,0.9 +2016,12,1,15,30,19.900000000000002,0.8200000000000001,0.1371,0.67,0,0,0,0,18.8,0,0,0,0,0.277,93.57000000000001,123.84,0.12,986,2.8000000000000003,27,0.8 +2016,12,1,16,30,19.400000000000002,0.81,0.1351,0.67,0,0,0,0,18.6,0,0,0,0,0.277,95.19,115.62,0.12,986,2.7,15,0.7000000000000001 +2016,12,1,17,30,19,0.81,0.13290000000000002,0.67,0,0,0,0,18.5,0,0,0,0,0.276,96.71000000000001,105.47,0.12,986,2.6,182,0.7000000000000001 +2016,12,1,18,30,18.900000000000002,0.81,0.134,0.67,0,0,0,0,18.400000000000002,0,0,0,0,0.275,96.72,94.09,0.12,987,2.5,349,0.7000000000000001 +2016,12,1,19,30,19.700000000000003,0.8300000000000001,0.1351,0.67,51,316,96,0,18.5,51,316,0,96,0.274,92.99,81.81,0.12,988,2.5,336,1.1 +2016,12,1,20,30,21.400000000000002,0.85,0.1336,0.67,91,628,314,0,19,91,628,0,314,0.274,86.15,69.18,0.12,988,2.5,323,1.5 +2016,12,1,21,30,24,0.88,0.1296,0.67,112,784,548,0,19.1,112,784,0,548,0.273,74.11,56.17,0.12,988,2.5,317,1.7000000000000002 +2016,12,1,22,30,27.1,0.91,0.1202,0.67,121,876,762,0,18.5,121,876,0,762,0.272,59.25,42.94,0.12,988,2.4000000000000004,313,1.6 +2016,12,1,23,30,28.700000000000003,0.93,0.111,0.67,127,927,933,0,17.7,127,927,0,933,0.272,51.27,29.64,0.12,988,2.4000000000000004,311,1.5 +2016,12,2,0,30,32.9,0.97,0.0872,0.67,118,970,1048,0,16.400000000000002,118,970,0,1048,0.272,37.25,16.490000000000002,0.12,987,2.5,295,1.1 +2016,12,2,1,30,34.9,1,0.08460000000000001,0.67,118,980,1093,0,15,118,980,0,1093,0.271,30.51,5.72,0.12,986,2.6,283,0.9 +2016,12,2,2,30,36,1.03,0.08420000000000001,0.67,117,973,1066,0,13.9,117,973,33,1066,0.271,26.76,12.81,0.12,985,2.6,274,0.8 +2016,12,2,3,30,36.5,1.07,0.0857,0.67,114,949,969,0,13.4,114,949,0,969,0.27,25.12,25.77,0.12,985,2.8000000000000003,263,0.7000000000000001 +2016,12,2,4,30,36.4,1.1,0.0944,0.67,112,902,812,0,13.200000000000001,112,902,0,812,0.27,24.98,39.06,0.12,984,2.9000000000000004,233,0.6000000000000001 +2016,12,2,5,30,35.6,1.11,0.1042,0.67,103,827,609,0,13.200000000000001,103,827,0,609,0.27,26.11,52.32,0.12,984,3,162,0.6000000000000001 +2016,12,2,6,30,34,1.1400000000000001,0.1124,0.67,89,700,380,0,13.700000000000001,89,700,0,380,0.269,29.48,65.4,0.12,984,3.1,90,0.9 +2016,12,2,7,30,31.1,1.17,0.11910000000000001,0.67,60,457,154,0,15.700000000000001,60,457,0,154,0.269,39.37,78.16,0.12,985,3.2,65,1.3 +2016,12,2,8,30,28.1,1.18,0.12430000000000001,0.67,5,23,5,0,19.200000000000003,5,23,0,5,0.268,58.56,90.04,0.12,986,3.3000000000000003,65,1.5 +2016,12,2,9,30,26.1,1.17,0.1254,0.67,0,0,0,0,19.8,0,0,0,0,0.267,68.26,102.2,0.12,987,3.3000000000000003,66,1.5 +2016,12,2,10,30,24.900000000000002,1.1400000000000001,0.127,0.67,0,0,0,0,20.1,0,0,0,0,0.266,74.51,112.75,0.12,988,3.4000000000000004,65,1.5 +2016,12,2,11,30,24,1.09,0.1305,0.67,0,0,0,0,20.5,0,0,0,0,0.265,81.04,121.59,0.12,989,3.4000000000000004,63,1.3 +2016,12,2,12,30,23.200000000000003,1.03,0.13570000000000002,0.67,0,0,0,0,21,0,0,0,0,0.263,87.22,127.86,0.12,989,3.4000000000000004,61,1.2000000000000002 +2016,12,2,13,30,22.6,0.96,0.1394,0.67,0,0,0,0,21.200000000000003,0,0,0,0,0.262,91.84,130.53,0.12,988,3.3000000000000003,60,1 +2016,12,2,14,30,22.1,0.91,0.14100000000000001,0.67,0,0,0,0,21.3,0,0,33,0,0.26,95.17,129.06,0.12,988,3.3000000000000003,61,0.8 +2016,12,2,15,30,21.700000000000003,0.89,0.1428,0.67,0,0,0,0,21.200000000000003,0,0,0,0,0.26,97.18,123.75,0.12,988,3.3000000000000003,60,0.7000000000000001 +2016,12,2,16,30,21.3,0.87,0.1431,0.67,0,0,0,0,21.200000000000003,0,0,0,0,0.26,99.18,115.57000000000001,0.12,988,3.3000000000000003,56,0.7000000000000001 +2016,12,2,17,30,21,0.86,0.14150000000000001,0.67,0,0,0,0,21,0,0,0,0,0.26,100,105.45,0.12,988,3.3000000000000003,50,0.7000000000000001 +2016,12,2,18,30,21.1,0.86,0.14600000000000002,0.67,0,0,0,0,20.900000000000002,0,0,0,0,0.261,99.05,94.09,0.12,989,3.4000000000000004,44,0.8 +2016,12,2,19,30,22.400000000000002,0.87,0.14880000000000002,0.67,52,289,93,0,20.900000000000002,52,289,0,93,0.261,90.96000000000001,81.82000000000001,0.12,990,3.4000000000000004,31,1.2000000000000002 +2016,12,2,20,30,24.6,0.89,0.1433,0.67,91,602,305,0,20.5,91,602,0,305,0.261,78.05,69.21000000000001,0.12,990,3.5,19,1.5 +2016,12,2,21,30,27,0.92,0.1345,0.67,112,761,535,0,20.200000000000003,131,640,0,487,0.262,66.22,56.21,0.12,990,3.5,18,1.6 +2016,12,2,22,30,29.6,0.9400000000000001,0.1274,0.67,123,849,744,0,19.8,139,781,0,710,0.262,55.730000000000004,42.99,0.12,990,3.5,21,1.6 +2016,12,2,23,30,30.8,0.96,0.12190000000000001,0.67,131,899,912,0,19.3,131,899,0,912,0.262,50.4,29.68,0.12,990,3.5,23,1.6 +2016,12,3,0,30,34,0.9,0.14170000000000002,0.67,146,911,1019,0,18.5,146,911,0,1019,0.264,39.980000000000004,16.52,0.12,989,3.5,27,1.6 +2016,12,3,1,30,35.5,0.93,0.1338,0.67,143,926,1065,0,17.7,143,926,0,1065,0.265,34.92,5.62,0.12,988,3.5,28,1.6 +2016,12,3,2,30,36.4,0.9400000000000001,0.1303,0.67,144,918,1040,0,17.1,144,918,33,1040,0.266,32.02,12.66,0.12,987,3.6,28,1.6 +2016,12,3,3,30,36.7,0.92,0.1442,0.67,145,886,944,0,16.900000000000002,145,886,0,944,0.267,31.18,25.64,0.12,987,3.7,27,1.7000000000000002 +2016,12,3,4,30,36.4,0.91,0.15560000000000002,0.67,142,832,789,0,17,142,832,0,789,0.268,31.77,38.94,0.12,986,3.8000000000000003,29,1.8 +2016,12,3,5,30,35.5,0.92,0.1705,0.67,132,745,589,0,17.1,132,745,0,589,0.268,33.75,52.19,0.12,986,3.9000000000000004,35,2 +2016,12,3,6,30,33.6,0.9500000000000001,0.18430000000000002,0.67,111,604,364,7,17.7,111,301,0,237,0.27,38.99,65.26,0.12,986,4,46,2.2 +2016,12,3,7,30,30.5,0.99,0.1905,0.67,71,356,145,9,19.400000000000002,8,0,100,8,0.271,51.64,78.02,0.12,987,4.1000000000000005,57,2.2 +2016,12,3,8,30,27.5,0.99,0.1912,0.67,4,11,4,9,21.6,1,0,33,1,0.272,70.4,89.91,0.12,988,4.2,66,2.1 +2016,12,3,9,30,25.5,0.98,0.2137,0.67,0,0,0,9,22.5,0,0,0,0,0.271,83.71000000000001,102.05,0.12,989,4.4,80,2 +2016,12,3,10,30,24.400000000000002,0.98,0.3035,0.67,0,0,0,9,22.700000000000003,0,0,0,0,0.27,90.14,112.58,0.12,991,4.800000000000001,95,1.8 +2016,12,3,11,30,23.700000000000003,1.03,0.45520000000000005,0.67,0,0,0,6,22.700000000000003,0,0,0,0,0.269,94.25,121.43,0.12,992,5,93,1.8 +2016,12,3,12,30,23.3,1.03,0.4978,0.67,0,0,0,7,22.6,0,0,0,0,0.268,95.77,127.69,0.12,992,4.9,77,1.7000000000000002 +2016,12,3,13,30,22.900000000000002,0.98,0.3735,0.67,0,0,0,0,22.400000000000002,0,0,0,0,0.268,97.11,130.39000000000001,0.12,992,4.5,63,1.6 +2016,12,3,14,30,22.5,0.96,0.2601,0.67,0,0,0,7,22.200000000000003,0,0,33,0,0.269,98.01,128.95,0.12,991,4.1000000000000005,52,1.3 +2016,12,3,15,30,22.1,0.98,0.21630000000000002,0.67,0,0,0,7,21.900000000000002,0,0,0,0,0.27,98.76,123.68,0.12,990,3.8000000000000003,42,1 +2016,12,3,16,30,21.700000000000003,1.01,0.187,0.67,0,0,0,0,21.6,0,0,0,0,0.272,99.67,115.53,0.12,990,3.5,35,0.8 +2016,12,3,17,30,21.3,1.04,0.1675,0.67,0,0,0,0,21.3,0,0,0,0,0.274,100,105.43,0.12,990,3.3000000000000003,31,0.6000000000000001 +2016,12,3,18,30,21.3,1.07,0.1572,0.67,0,0,0,0,21.1,0,0,0,0,0.275,98.85000000000001,94.09,0.12,991,3.2,30,0.6000000000000001 +2016,12,3,19,30,22,1.08,0.1502,0.67,50,302,93,0,21.200000000000003,50,302,0,93,0.276,95.14,81.84,0.12,991,3.2,24,0.8 +2016,12,3,20,30,23.400000000000002,1.09,0.14400000000000002,0.67,89,609,305,0,21.5,89,609,0,305,0.277,89.09,69.24,0.12,992,3.2,13,0.9 +2016,12,3,21,30,25.6,1.11,0.13870000000000002,0.67,110,761,533,0,21,110,761,0,533,0.278,75.76,56.25,0.12,992,3.3000000000000003,8,0.9 +2016,12,3,22,30,28.6,1.1300000000000001,0.136,0.67,125,843,741,0,19.3,125,843,0,741,0.277,57.22,43.04,0.12,992,3.4000000000000004,8,0.9 +2016,12,3,23,30,30,1.1400000000000001,0.1389,0.67,136,889,908,0,17.900000000000002,136,889,0,908,0.277,48.38,29.73,0.12,992,3.4000000000000004,8,0.8 +2016,12,4,0,30,33.1,1.07,0.09430000000000001,0.67,122,945,1028,0,17.5,122,945,0,1028,0.276,39.42,16.55,0.12,990,3.6,32,0.8 +2016,12,4,1,30,34.6,1.06,0.094,0.67,123,954,1073,0,17.2,123,954,0,1073,0.276,35.58,5.53,0.12,989,3.6,48,0.9 +2016,12,4,2,30,35.5,1.04,0.0916,0.67,124,945,1047,0,16.900000000000002,124,945,33,1047,0.276,33.36,12.52,0.12,988,3.7,56,1.1 +2016,12,4,3,30,35.7,0.97,0.10940000000000001,0.67,128,914,953,0,16.900000000000002,128,914,0,953,0.277,32.980000000000004,25.51,0.12,987,3.7,58,1.3 +2016,12,4,4,30,35.4,0.9500000000000001,0.11370000000000001,0.67,122,870,800,0,17.1,122,870,0,800,0.277,33.87,38.81,0.12,987,3.8000000000000003,59,1.7000000000000002 +2016,12,4,5,30,34.300000000000004,0.9400000000000001,0.1206,0.67,113,795,602,0,17.400000000000002,113,795,0,602,0.277,36.7,52.06,0.12,987,3.9000000000000004,60,2.2 +2016,12,4,6,30,32.4,0.9400000000000001,0.12990000000000002,0.67,97,663,376,0,17.900000000000002,97,663,0,376,0.277,42.12,65.13,0.12,987,4,61,2.6 +2016,12,4,7,30,29.700000000000003,0.9400000000000001,0.1405,0.67,66,412,153,0,18.8,66,412,0,153,0.277,51.99,77.88,0.12,988,4.1000000000000005,60,2.6 +2016,12,4,8,30,27.200000000000003,0.93,0.1511,0.67,5,16,5,7,20.1,5,16,0,5,0.276,65.4,89.79,0.12,988,4.1000000000000005,58,2.3000000000000003 +2016,12,4,9,30,25.5,0.91,0.1651,0.67,0,0,0,7,20.8,0,0,0,0,0.275,75.35000000000001,101.89,0.12,989,4.2,57,2.1 +2016,12,4,10,30,24.5,0.88,0.18130000000000002,0.67,0,0,0,7,20.900000000000002,0,0,0,0,0.274,80.37,112.42,0.12,990,4.2,56,2 +2016,12,4,11,30,23.900000000000002,0.85,0.192,0.67,0,0,0,7,20.900000000000002,0,0,0,0,0.273,83.51,121.26,0.12,990,4.2,53,1.7000000000000002 +2016,12,4,12,30,23.400000000000002,0.8300000000000001,0.19460000000000002,0.67,0,0,0,7,20.900000000000002,0,0,0,0,0.273,86,127.54,0.12,990,4.1000000000000005,50,1.4000000000000001 +2016,12,4,13,30,23,0.8200000000000001,0.1917,0.67,0,0,0,7,20.900000000000002,0,0,0,0,0.272,88.08,130.25,0.12,990,4.1000000000000005,50,1.1 +2016,12,4,14,30,22.6,0.8,0.1862,0.67,0,0,0,7,20.900000000000002,0,0,33,0,0.272,90.15,128.84,0.12,990,4.1000000000000005,53,0.9 +2016,12,4,15,30,22.3,0.8,0.187,0.67,0,0,0,7,20.900000000000002,0,0,0,0,0.272,91.73,123.61,0.12,990,4.1000000000000005,58,0.8 +2016,12,4,16,30,22,0.81,0.1885,0.67,0,0,0,7,20.8,0,0,0,0,0.272,93.10000000000001,115.49000000000001,0.12,990,4.1000000000000005,59,0.7000000000000001 +2016,12,4,17,30,21.700000000000003,0.8200000000000001,0.19140000000000001,0.67,0,0,0,3,20.8,0,0,0,0,0.273,94.36,105.42,0.12,990,4.1000000000000005,51,0.7000000000000001 +2016,12,4,18,30,21.700000000000003,0.84,0.1973,0.67,0,0,0,0,20.700000000000003,0,0,0,0,0.273,93.87,94.10000000000001,0.12,991,4.1000000000000005,34,0.9 +2016,12,4,19,30,22.700000000000003,0.87,0.1981,0.67,56,229,88,0,20.6,56,229,0,88,0.274,87.73,81.87,0.12,991,4.1000000000000005,190,1.4000000000000001 +2016,12,4,20,30,24.6,0.91,0.1892,0.67,103,540,294,0,20.1,103,540,0,294,0.274,76.21000000000001,69.28,0.12,992,4.1000000000000005,353,1.9000000000000001 +2016,12,4,21,30,26.900000000000002,0.96,0.1804,0.67,128,707,520,0,19.700000000000003,128,707,0,520,0.274,64.54,56.300000000000004,0.12,992,4.1000000000000005,348,2.1 +2016,12,4,22,30,29.3,0.98,0.1728,0.67,142,803,728,0,19.3,142,803,0,728,0.274,54.9,43.09,0.12,991,4.1000000000000005,345,2.1 +2016,12,4,23,30,30.6,1,0.1642,0.67,151,859,896,0,19,151,859,0,896,0.274,49.94,29.79,0.12,991,4.1000000000000005,343,2.2 +2016,12,5,0,30,33.7,0.93,0.17400000000000002,0.67,162,880,1005,0,18.6,162,880,0,1005,0.274,40.96,16.6,0.12,989,4.1000000000000005,333,2.1 +2016,12,5,1,30,35.300000000000004,0.93,0.16620000000000001,0.67,160,895,1051,0,18.3,160,895,0,1051,0.274,36.7,5.45,0.12,988,4.1000000000000005,328,2 +2016,12,5,2,30,36.300000000000004,0.92,0.1607,0.67,156,894,1029,0,18,156,894,33,1029,0.274,34.17,12.370000000000001,0.12,987,4.2,325,1.8 +2016,12,5,3,30,36.800000000000004,0.93,0.15,0.67,147,878,940,0,18.1,242,735,0,906,0.275,33.33,25.38,0.12,986,4.3,326,1.7000000000000002 +2016,12,5,4,30,36.7,0.93,0.1477,0.67,137,836,790,7,18.2,332,435,0,672,0.275,33.89,38.68,0.12,986,4.4,334,1.5 +2016,12,5,5,30,36,0.92,0.15030000000000002,0.67,124,762,594,7,18.400000000000002,239,439,0,510,0.276,35.550000000000004,51.93,0.12,985,4.5,350,1.4000000000000001 +2016,12,5,6,30,34.4,0.9400000000000001,0.15330000000000002,0.67,104,635,372,0,18.7,104,635,0,372,0.277,39.54,64.99,0.12,986,4.6000000000000005,192,1.5 +2016,12,5,7,30,31.8,0.96,0.1547,0.67,68,398,153,0,19.6,68,398,0,153,0.277,48.620000000000005,77.74,0.12,986,4.7,31,1.6 +2016,12,5,8,30,29,0.98,0.1559,0.67,6,17,6,0,22,6,17,0,6,0.277,66.02,89.66,0.12,987,4.7,36,1.7000000000000002 +2016,12,5,9,30,27.3,1.01,0.15230000000000002,0.67,0,0,0,0,22.200000000000003,0,0,0,0,0.277,73.78,101.74000000000001,0.12,987,4.6000000000000005,33,1.7000000000000002 +2016,12,5,10,30,26.400000000000002,1.02,0.14350000000000002,0.67,0,0,0,0,21.8,0,0,0,0,0.276,75.78,112.27,0.12,987,4.5,29,1.6 +2016,12,5,11,30,25.700000000000003,1.04,0.137,0.67,0,0,0,4,21.6,0,0,0,0,0.275,78.14,121.11,0.12,987,4.4,25,1.3 +2016,12,5,12,30,25,1.05,0.1359,0.67,0,0,0,7,21.400000000000002,0,0,0,0,0.274,80.32000000000001,127.39,0.12,987,4.3,18,1.1 +2016,12,5,13,30,24.400000000000002,1.08,0.13970000000000002,0.67,0,0,0,4,21.1,0,0,0,0,0.273,81.64,130.12,0.12,987,4.3,11,0.9 +2016,12,5,14,30,23.8,1.12,0.1516,0.67,0,0,0,7,20.8,0,0,33,0,0.272,83.2,128.74,0.12,987,4.3,25,0.8 +2016,12,5,15,30,23.200000000000003,1.1500000000000001,0.1757,0.67,0,0,0,7,20.700000000000003,0,0,0,0,0.271,85.67,123.55,0.12,988,4.4,51,0.7000000000000001 +2016,12,5,16,30,22.6,1.16,0.20770000000000002,0.67,0,0,0,7,20.700000000000003,0,0,0,0,0.27,88.77,115.46000000000001,0.12,989,4.5,64,0.9 +2016,12,5,17,30,22.1,1.16,0.2396,0.67,0,0,0,7,20.700000000000003,0,0,0,0,0.27,91.87,105.42,0.12,990,4.6000000000000005,64,0.9 +2016,12,5,18,30,21.900000000000002,1.16,0.2579,0.67,0,0,0,9,20.700000000000003,0,0,0,0,0.269,92.7,94.12,0.12,991,4.6000000000000005,57,1.1 +2016,12,5,19,30,22.1,1.16,0.26,0.67,55,196,83,6,20.6,14,0,100,14,0.268,91.01,81.9,0.12,992,4.6000000000000005,42,1.4000000000000001 +2016,12,5,20,30,23.1,1.1500000000000001,0.2474,0.67,112,494,286,6,20.400000000000002,65,0,0,65,0.268,84.56,69.32000000000001,0.12,992,4.5,23,1.8 +2016,12,5,21,30,25.200000000000003,1.16,0.2243,0.67,135,676,510,7,19.700000000000003,248,241,0,382,0.267,71.42,56.35,0.12,992,4.4,9,2.1 +2016,12,5,22,30,27.8,1.17,0.19720000000000001,0.67,147,787,721,7,18.6,261,545,0,659,0.267,57.46,43.15,0.12,991,4.3,181,2.2 +2016,12,5,23,30,29.1,1.18,0.1774,0.67,153,850,890,7,18.1,451,157,0,587,0.267,51.56,29.84,0.12,991,4.2,358,2.3000000000000003 +2016,12,6,0,30,32.7,1.19,0.1665,0.67,153,890,1006,7,18.1,438,456,0,875,0.267,41.86,16.64,0.12,990,4.1000000000000005,345,2.4000000000000004 +2016,12,6,1,30,34.5,1.2,0.15330000000000002,0.67,149,909,1054,7,18.1,447,471,0,916,0.267,38.04,5.38,0.12,988,4.1000000000000005,337,2.5 +2016,12,6,2,30,35.9,1.2,0.14500000000000002,0.67,148,905,1032,0,18.2,148,905,33,1032,0.267,35.33,12.23,0.12,987,4.2,330,2.5 +2016,12,6,3,30,36.800000000000004,1.11,0.15280000000000002,0.67,144,882,942,0,18.1,144,882,0,942,0.266,33.35,25.25,0.12,986,4.1000000000000005,322,2.4000000000000004 +2016,12,6,4,30,37.1,1.12,0.1466,0.67,133,847,795,0,17.7,133,847,0,795,0.266,32.08,38.550000000000004,0.12,985,4.1000000000000005,319,2.2 +2016,12,6,5,30,36.800000000000004,1.1400000000000001,0.1432,0.67,121,774,600,0,17.3,121,774,0,600,0.265,31.84,51.800000000000004,0.12,984,4,322,2 +2016,12,6,6,30,35.800000000000004,1.07,0.1638,0.67,105,636,375,7,17.1,130,520,0,351,0.264,33.17,64.86,0.12,984,3.9000000000000004,332,1.6 +2016,12,6,7,30,33.300000000000004,1.1300000000000001,0.1728,0.67,69,392,153,7,17.7,69,392,100,153,0.264,39.63,77.60000000000001,0.12,984,3.9000000000000004,176,1.1 +2016,12,6,8,30,30.400000000000002,1.22,0.193,0.67,5,18,5,7,20.8,5,18,33,5,0.263,56.44,89.54,0.12,985,3.9000000000000004,15,1.1 +2016,12,6,9,30,28.400000000000002,1.31,0.2189,0.67,0,0,0,6,21.1,0,0,0,0,0.263,64.59,101.59,0.12,986,3.9000000000000004,21,1.4000000000000001 +2016,12,6,10,30,27.1,1.35,0.24020000000000002,0.67,0,0,0,6,20.700000000000003,0,0,0,0,0.262,68.19,112.11,0.12,986,3.9000000000000004,23,1.5 +2016,12,6,11,30,26.200000000000003,1.34,0.2495,0.67,0,0,0,6,20.5,0,0,0,0,0.261,70.83,120.95,0.12,986,4,16,1.3 +2016,12,6,12,30,25.6,1.29,0.2544,0.67,0,0,0,6,20.5,0,0,0,0,0.261,73.56,127.24000000000001,0.12,986,4.2,182,1 +2016,12,6,13,30,24.900000000000002,1.24,0.264,0.67,0,0,0,6,20.5,0,0,0,0,0.261,76.52,130,0.12,986,4.3,354,0.7000000000000001 +2016,12,6,14,30,24.400000000000002,1.2,0.2832,0.67,0,0,0,7,20.400000000000002,0,0,33,0,0.261,78.5,128.65,0.12,986,4.5,191,0.6000000000000001 +2016,12,6,15,30,23.8,1.17,0.3174,0.67,0,0,0,6,20.400000000000002,0,0,0,0,0.261,81.22,123.5,0.12,986,4.6000000000000005,33,0.6000000000000001 +2016,12,6,16,30,23.200000000000003,1.1500000000000001,0.3229,0.67,0,0,0,6,20.3,0,0,0,0,0.261,83.74,115.44,0.12,987,4.6000000000000005,33,0.8 +2016,12,6,17,30,22.6,1.16,0.2962,0.67,0,0,0,6,20.200000000000003,0,0,0,0,0.262,86.5,105.42,0.12,987,4.6000000000000005,23,0.8 +2016,12,6,18,30,22.400000000000002,1.1500000000000001,0.2893,0.67,0,0,0,7,20.200000000000003,0,0,0,0,0.263,87.35000000000001,94.14,0.12,988,4.800000000000001,178,0.7000000000000001 +2016,12,6,19,30,22.900000000000002,1.1300000000000001,0.3045,0.67,58,156,80,7,20,25,0,100,25,0.263,83.87,81.94,0.12,989,5,317,0.7000000000000001 +2016,12,6,20,30,23.900000000000002,1.11,0.3347,0.67,133,408,277,4,19.900000000000002,28,0,0,28,0.264,78.35000000000001,69.37,0.12,990,5.1000000000000005,273,0.8 +2016,12,6,21,30,25.3,1.12,0.3509,0.67,181,564,493,7,19.900000000000002,131,11,0,137,0.263,72.24,56.4,0.12,990,5.2,227,1 +2016,12,6,22,30,27.1,1.12,0.3551,0.67,208,667,694,4,20.3,196,19,0,210,0.263,66.32000000000001,43.21,0.12,990,5.2,184,1.2000000000000002 +2016,12,6,23,30,28,1.12,0.3387,0.67,221,734,857,7,20.6,395,69,0,455,0.262,64.33,29.91,0.12,990,5.2,165,1.2000000000000002 +2016,12,7,0,30,30.200000000000003,1.1500000000000001,0.4086,0.67,264,724,957,4,20.700000000000003,256,16,0,271,0.261,56.99,16.7,0.12,989,5.2,142,1.2000000000000002 +2016,12,7,1,30,30.700000000000003,1.1400000000000001,0.435,0.67,283,720,1000,0,20.5,420,440,0,858,0.26,54.7,5.32,0.12,988,5.300000000000001,138,1 +2016,12,7,2,30,30.8,1.1300000000000001,0.4768,0.67,293,696,974,7,20.5,469,403,33,863,0.26,54.160000000000004,12.1,0.12,988,5.4,139,0.9 +2016,12,7,3,30,30.400000000000002,1.11,0.4924,0.67,288,659,885,7,20.5,453,300,0,725,0.26,55.43,25.12,0.12,987,5.4,143,1 +2016,12,7,4,30,29.6,1.11,0.506,0.67,270,600,740,7,20.6,301,32,0,326,0.26,58.46,38.43,0.12,987,5.5,142,1.2000000000000002 +2016,12,7,5,30,28.400000000000002,1.11,0.5032,0.67,235,512,553,7,20.8,191,36,0,213,0.261,63.49,51.67,0.12,987,5.5,139,1.2000000000000002 +2016,12,7,6,30,27,1.11,0.5083,0.67,182,374,342,7,21.200000000000003,146,47,0,166,0.263,70.53,64.73,0.12,988,5.5,132,1.1 +2016,12,7,7,30,25.6,1.11,0.4934,0.67,99,176,137,7,21.8,22,1,100,22,0.264,79.41,77.46000000000001,0.12,989,5.5,119,1 +2016,12,7,8,30,24.400000000000002,1.12,0.46480000000000005,0.67,4,3,4,7,22.3,2,0,33,2,0.266,88.13,89.41,0.12,989,5.5,106,0.9 +2016,12,7,9,30,23.6,1.11,0.44930000000000003,0.67,0,0,0,7,22.5,0,0,0,0,0.267,93.81,101.44,0.12,990,5.4,93,0.9 +2016,12,7,10,30,23.200000000000003,1.1,0.4287,0.67,0,0,0,7,22.6,0,0,0,0,0.267,96.21000000000001,111.96000000000001,0.12,990,5.2,82,0.9 +2016,12,7,11,30,22.900000000000002,1.09,0.4071,0.67,0,0,0,6,22.5,0,0,0,0,0.267,97.58,120.81,0.12,990,5.1000000000000005,77,0.9 +2016,12,7,12,30,22.6,1.09,0.4136,0.67,0,0,0,7,22.400000000000002,0,0,0,0,0.266,98.56,127.10000000000001,0.12,989,5,77,0.9 +2016,12,7,13,30,22.400000000000002,1.09,0.4237,0.67,0,0,0,6,22.200000000000003,0,0,0,0,0.265,98.83,129.88,0.12,988,5,69,0.9 +2016,12,7,14,30,22.200000000000003,1.08,0.44980000000000003,0.67,0,0,0,7,22.1,0,0,33,0,0.265,99.14,128.57,0.12,988,5.1000000000000005,45,0.8 +2016,12,7,15,30,22.1,1.09,0.5225000000000001,0.67,0,0,0,7,21.900000000000002,0,0,0,0,0.265,98.99000000000001,123.45,0.12,989,5.1000000000000005,36,0.8 +2016,12,7,16,30,21.900000000000002,1.09,0.5024000000000001,0.67,0,0,0,7,21.8,0,0,0,0,0.265,99.31,115.42,0.12,988,5.1000000000000005,47,0.7000000000000001 +2016,12,7,17,30,21.8,1.07,0.49260000000000004,0.67,0,0,0,7,21.700000000000003,0,0,0,0,0.264,99.28,105.43,0.12,988,5.1000000000000005,47,0.6000000000000001 +2016,12,7,18,30,21.8,1.05,0.5358,0.67,0,0,0,7,21.6,0,0,0,0,0.264,98.63,94.17,0.12,988,5.1000000000000005,43,0.6000000000000001 +2016,12,7,19,30,21.900000000000002,1.02,0.5294,0.67,60,82,71,7,21.5,25,0,100,25,0.264,97.68,81.98,0.12,988,5,48,0.9 +2016,12,7,20,30,22.1,1.01,0.4536,0.67,147,342,267,7,21.5,110,54,33,129,0.265,96.13,69.42,0.12,988,4.9,55,1.2000000000000002 +2016,12,7,21,30,22.6,1.02,0.3875,0.67,186,548,489,7,21.3,136,18,33,146,0.265,92.49,56.46,0.12,988,4.7,52,1.3 +2016,12,7,22,30,23.900000000000002,1.05,0.3461,0.67,205,675,696,7,21.3,117,1,0,118,0.266,85.15,43.28,0.12,987,4.7,38,1.3 +2016,12,7,23,30,24.700000000000003,1.08,0.3194,0.67,215,748,863,4,20.900000000000002,284,20,0,301,0.266,79.63,29.98,0.12,987,4.7,29,1.3 +2016,12,8,0,30,28.400000000000002,1.1,0.3065,0.67,220,788,975,8,20.3,432,86,25,514,0.267,61.71,16.75,0.13,986,4.9,182,1.4000000000000001 +2016,12,8,1,30,29.8,1.11,0.3053,0.67,223,801,1021,4,19.900000000000002,128,4,0,132,0.267,55.39,5.2700000000000005,0.13,986,5,346,1.5 +2016,12,8,2,30,30,1.11,0.3065,0.67,211,810,1003,4,19.8,81,0,33,81,0.266,54.29,11.96,0.13,985,5,336,1.6 +2016,12,8,3,30,29.700000000000003,1.09,0.229,0.67,182,820,925,6,19.900000000000002,110,2,0,112,0.266,55.68,25,0.13,985,5,333,1.7000000000000002 +2016,12,8,4,30,29.1,1.08,0.2223,0.67,168,779,779,6,20.1,378,127,0,478,0.266,58.550000000000004,38.300000000000004,0.13,984,5,333,1.9000000000000001 +2016,12,8,5,30,28.200000000000003,1.06,0.2189,0.67,149,705,587,0,20.6,198,560,0,546,0.268,63.45,51.54,0.13,984,5,334,1.8 +2016,12,8,6,30,27.1,1.05,0.2194,0.67,123,572,368,9,21.3,85,7,0,88,0.269,70.65,64.6,0.13,984,5,336,1.8 +2016,12,8,7,30,25.8,1.04,0.2293,0.67,79,331,152,9,22,37,0,100,37,0.269,79.48,77.33,0.13,984,4.9,341,1.8 +2016,12,8,8,30,24.700000000000003,1.05,0.23320000000000002,0.67,6,13,6,9,22.5,2,0,33,2,0.269,87.61,89.29,0.13,985,4.7,353,1.7000000000000002 +2016,12,8,9,30,24.1,1.08,0.2127,0.67,0,0,0,7,22.700000000000003,0,0,0,0,0.27,92.12,101.3,0.13,985,4.5,182,1.6 +2016,12,8,10,30,23.700000000000003,1.11,0.1922,0.67,0,0,0,4,22.700000000000003,0,0,0,0,0.271,94.26,111.82000000000001,0.13,984,4.5,175,1.2000000000000002 +2016,12,8,11,30,23.400000000000002,1.12,0.19770000000000001,0.67,0,0,0,4,22.700000000000003,0,0,0,0,0.272,95.69,120.66,0.13,984,4.7,332,0.9 +2016,12,8,12,30,23.200000000000003,1.1,0.2384,0.67,0,0,0,7,22.6,0,0,0,0,0.272,96.53,126.97,0.13,984,5,317,1.1 +2016,12,8,13,30,23.200000000000003,1.08,0.28750000000000003,0.67,0,0,0,7,22.700000000000003,0,0,0,0,0.269,96.96000000000001,129.78,0.13,985,5.2,319,1.5 +2016,12,8,14,30,23.1,1.09,0.2964,0.67,0,0,0,4,22.700000000000003,0,0,33,0,0.267,97.48,128.5,0.13,985,5.2,321,1.7000000000000002 +2016,12,8,15,30,22.900000000000002,1.09,0.2606,0.67,0,0,0,4,22.6,0,0,0,0,0.267,97.96000000000001,123.41,0.13,985,5.1000000000000005,319,1.7000000000000002 +2016,12,8,16,30,22.700000000000003,1.09,0.2318,0.67,0,0,0,7,22.3,0,0,0,0,0.268,97.65,115.41,0.13,985,4.9,315,1.6 +2016,12,8,17,30,22.400000000000002,1.07,0.2081,0.67,0,0,0,8,22,0,0,0,0,0.27,97.88,105.45,0.13,985,4.800000000000001,312,1.5 +2016,12,8,18,30,22.400000000000002,1.04,0.17750000000000002,0.67,0,0,0,7,21.8,0,0,0,0,0.27,96.56,94.2,0.13,985,4.6000000000000005,310,1.5 +2016,12,8,19,30,22.700000000000003,0.98,0.15860000000000002,0.67,51,262,87,8,21.8,50,186,100,76,0.271,94.56,82.03,0.13,986,4.6000000000000005,303,1.8 +2016,12,8,20,30,23.6,0.88,0.1613,0.67,96,555,291,3,21.900000000000002,132,171,0,192,0.271,89.98,69.48,0.13,986,4.800000000000001,284,2.3000000000000003 +2016,12,8,21,30,24.700000000000003,0.81,0.1683,0.67,126,701,513,7,21.700000000000003,179,9,0,184,0.27,83.63,56.53,0.13,986,4.800000000000001,262,2.8000000000000003 +2016,12,8,22,30,25.6,0.8,0.1759,0.67,146,786,718,7,20.200000000000003,254,52,0,292,0.27,72.14,43.34,0.13,987,4.7,249,3.1 +2016,12,8,23,30,25.900000000000002,0.78,0.17750000000000002,0.67,160,839,886,7,18,401,63,0,456,0.27,61.72,30.05,0.13,987,4.6000000000000005,245,3.1 +2016,12,9,0,30,27,0.8200000000000001,0.1414,0.67,147,904,1012,7,16.1,417,38,0,453,0.27,51.17,16.82,0.13,987,4.1000000000000005,248,3 +2016,12,9,1,30,28,0.8,0.128,0.67,142,930,1068,7,14.3,493,140,0,632,0.27,42.99,5.23,0.13,986,3.6,250,3 +2016,12,9,2,30,28.8,0.79,0.1173,0.67,138,939,1057,7,12.700000000000001,160,5,33,165,0.271,37.03,11.83,0.13,986,3.1,251,3 +2016,12,9,3,30,29.3,0.78,0.112,0.67,130,935,978,6,11.5,189,8,0,196,0.271,33.32,24.87,0.13,986,2.6,251,2.9000000000000004 +2016,12,9,4,30,29.400000000000002,0.78,0.10310000000000001,0.67,118,917,839,6,10.600000000000001,252,18,0,266,0.27,31.12,38.18,0.13,985,2.2,249,2.7 +2016,12,9,5,30,29.200000000000003,0.79,0.0941,0.67,103,873,648,7,9.600000000000001,274,191,0,393,0.269,29.490000000000002,51.410000000000004,0.13,986,1.8,244,2.5 +2016,12,9,6,30,28.200000000000003,0.8200000000000001,0.0879,0.67,85,781,422,7,8.700000000000001,165,274,0,283,0.268,29.36,64.47,0.13,986,1.5,238,1.8 +2016,12,9,7,30,26,0.86,0.0828,0.67,60,579,188,7,10,61,521,58,177,0.267,36.64,77.19,0.13,987,1.3,234,0.9 +2016,12,9,8,30,23.8,0.9,0.0757,0.67,8,60,9,0,12.600000000000001,8,60,0,9,0.266,49.44,89.17,0.13,988,1.2000000000000002,229,0.6000000000000001 +2016,12,9,9,30,22.3,0.92,0.06770000000000001,0.67,0,0,0,7,12.600000000000001,0,0,0,0,0.267,54.11,101.16,0.13,989,1.2000000000000002,215,0.7000000000000001 +2016,12,9,10,30,20.900000000000002,0.91,0.06330000000000001,0.67,0,0,0,7,12.5,0,0,0,0,0.267,58.800000000000004,111.68,0.13,990,1.3,189,0.8 +2016,12,9,11,30,19.8,0.85,0.0679,0.67,0,0,0,6,12.600000000000001,0,0,0,0,0.266,63.14,120.53,0.13,990,1.5,159,0.9 +2016,12,9,12,30,19.400000000000002,0.77,0.0884,0.67,0,0,0,6,13.200000000000001,0,0,0,0,0.265,67.55,126.85000000000001,0.13,991,1.8,138,1.1 +2016,12,9,13,30,19.400000000000002,0.68,0.12240000000000001,0.67,0,0,0,6,14.600000000000001,0,0,0,0,0.264,73.62,129.67000000000002,0.13,991,2,129,1.2000000000000002 +2016,12,9,14,30,19.5,0.62,0.1506,0.67,0,0,0,6,15.9,0,0,33,0,0.264,79.55,128.43,0.13,991,2.2,128,1.2000000000000002 +2016,12,9,15,30,19.400000000000002,0.6,0.1753,0.67,0,0,0,6,16.6,0,0,0,0,0.264,84.12,123.38000000000001,0.13,991,2.3000000000000003,130,1.1 +2016,12,9,16,30,19.1,0.56,0.1774,0.67,0,0,0,7,16.6,0,0,0,0,0.265,85.69,115.41,0.13,992,2.3000000000000003,131,1.1 +2016,12,9,17,30,18.8,0.54,0.1665,0.67,0,0,0,7,16.2,0,0,0,0,0.266,84.99,105.47,0.13,992,2.2,129,1 +2016,12,9,18,30,18.8,0.53,0.1509,0.67,0,0,0,3,15.700000000000001,0,0,0,0,0.266,82.25,94.24,0.13,993,2.2,128,1.2000000000000002 +2016,12,9,19,30,20,0.53,0.1405,0.67,54,283,93,0,15.5,54,283,33,93,0.267,75.3,82.07000000000001,0.13,994,2.2,123,1.9000000000000001 +2016,12,9,20,30,22,0.53,0.1359,0.67,97,610,310,2,15.200000000000001,111,477,17,278,0.268,65.33,69.54,0.13,995,2.1,116,2.7 +2016,12,9,21,30,23.700000000000003,0.52,0.13870000000000002,0.67,122,763,542,0,14.600000000000001,122,763,0,542,0.269,56.81,56.6,0.13,995,2.2,110,3.1 +2016,12,9,22,30,25.1,0.52,0.14170000000000002,0.67,140,847,755,3,14.200000000000001,292,235,0,463,0.268,50.89,43.42,0.13,995,2.2,106,3.2 +2016,12,9,23,30,25.8,0.51,0.14300000000000002,0.67,151,897,927,3,14,324,250,0,540,0.268,48.21,30.12,0.13,995,2.2,103,3.3000000000000003 +2016,12,10,0,30,27,0.5,0.16540000000000002,0.67,176,899,1036,3,13.9,377,398,0,758,0.267,44.53,16.88,0.13,995,2.3000000000000003,98,3.3000000000000003 +2016,12,10,1,30,27.200000000000003,0.51,0.1895,0.67,191,893,1080,3,13.8,499,91,0,590,0.267,43.69,5.21,0.13,994,2.3000000000000003,96,3.2 +2016,12,10,2,30,27,0.52,0.20700000000000002,0.67,199,874,1055,7,13.700000000000001,472,108,33,578,0.268,43.980000000000004,11.69,0.13,994,2.4000000000000004,93,3.2 +2016,12,10,3,30,26.6,0.55,0.2281,0.67,201,837,961,7,13.700000000000001,418,339,0,726,0.269,45.07,24.75,0.13,994,2.4000000000000004,90,3.3000000000000003 +2016,12,10,4,30,25.900000000000002,0.56,0.24180000000000001,0.67,195,779,808,3,13.9,331,372,8,624,0.269,47.43,38.050000000000004,0.13,994,2.4000000000000004,86,3.2 +2016,12,10,5,30,24.900000000000002,0.56,0.2541,0.67,181,685,609,7,14,279,290,0,460,0.269,50.77,51.29,0.13,994,2.5,85,3.1 +2016,12,10,6,30,23.700000000000003,0.6,0.2732,0.67,150,540,384,7,14.200000000000001,160,384,8,326,0.27,55.15,64.34,0.13,995,2.4000000000000004,84,2.9000000000000004 +2016,12,10,7,30,22.5,0.64,0.2636,0.67,95,305,163,3,14.3,85,123,75,113,0.271,59.800000000000004,77.06,0.13,995,2.4000000000000004,85,2.6 +2016,12,10,8,30,21.5,0.65,0.2554,0.67,7,8,7,3,14.5,4,0,33,4,0.272,64.31,89.04,0.13,996,2.4000000000000004,84,2.1 +2016,12,10,9,30,20.700000000000003,0.67,0.2451,0.67,0,0,0,7,14.8,0,0,0,0,0.272,68.87,101.02,0.13,997,2.3000000000000003,85,1.6 +2016,12,10,10,30,20.200000000000003,0.67,0.22870000000000001,0.67,0,0,0,7,15,0,0,0,0,0.272,71.85000000000001,111.54,0.13,997,2.3000000000000003,88,1.4000000000000001 +2016,12,10,11,30,19.8,0.67,0.20420000000000002,0.67,0,0,0,7,15.100000000000001,0,0,0,0,0.272,74.39,120.39,0.13,997,2.2,90,1.3 +2016,12,10,12,30,19.400000000000002,0.67,0.1829,0.67,0,0,0,7,15.200000000000001,0,0,0,0,0.271,76.56,126.73,0.13,996,2.2,93,1.1 +2016,12,10,13,30,19.1,0.68,0.1726,0.67,0,0,0,7,15.200000000000001,0,0,0,0,0.271,78.22,129.58,0.13,996,2.1,94,1 +2016,12,10,14,30,18.900000000000002,0.68,0.1608,0.67,0,0,0,7,15.3,0,0,33,0,0.271,79.42,128.37,0.13,996,2.1,95,0.8 +2016,12,10,15,30,18.5,0.67,0.1501,0.67,0,0,0,7,15.200000000000001,0,0,0,0,0.271,81.21000000000001,123.35000000000001,0.13,995,2,99,0.7000000000000001 +2016,12,10,16,30,18.2,0.67,0.1374,0.67,0,0,0,7,15.200000000000001,0,0,0,0,0.272,82.47,115.41,0.13,995,1.9000000000000001,109,0.7000000000000001 +2016,12,10,17,30,17.900000000000002,0.67,0.1259,0.67,0,0,0,7,15.100000000000001,0,0,0,0,0.273,83.48,105.49000000000001,0.13,995,1.9000000000000001,120,0.7000000000000001 +2016,12,10,18,30,17.900000000000002,0.68,0.11960000000000001,0.67,0,0,0,7,15,0,0,0,0,0.274,82.91,94.28,0.13,996,1.8,128,0.7000000000000001 +2016,12,10,19,30,19.200000000000003,0.6900000000000001,0.1144,0.67,49,341,96,7,15,44,35,100,49,0.274,76.72,82.13,0.13,996,1.8,124,1.3 +2016,12,10,20,30,21.3,0.6900000000000001,0.1046,0.67,83,676,319,7,14.4,108,477,25,274,0.274,64.77,69.60000000000001,0.13,997,1.8,112,2 +2016,12,10,21,30,23.3,0.71,0.0926,0.67,98,835,557,7,13.3,130,709,0,520,0.274,53.35,56.67,0.13,997,1.8,105,2.3000000000000003 +2016,12,10,22,30,25,0.72,0.0854,0.67,108,919,775,7,12.200000000000001,329,334,0,571,0.273,44.79,43.5,0.13,997,1.8,103,2.5 +2016,12,10,23,30,25.700000000000003,0.73,0.0816,0.67,115,966,950,7,11.5,352,444,0,736,0.273,41,30.2,0.13,997,1.8,102,2.6 +2016,12,11,0,30,27.400000000000002,0.71,0.08560000000000001,0.67,123,986,1066,7,11,414,429,0,824,0.271,35.86,16.96,0.13,996,1.8,97,2.8000000000000003 +2016,12,11,1,30,27.900000000000002,0.71,0.08610000000000001,0.67,126,994,1116,7,10.600000000000001,522,231,0,752,0.27,33.97,5.19,0.13,996,1.8,94,2.9000000000000004 +2016,12,11,2,30,28,0.7000000000000001,0.08800000000000001,0.67,128,987,1095,7,10.4,457,454,33,902,0.27,33.28,11.56,0.13,995,1.8,92,2.9000000000000004 +2016,12,11,3,30,27.8,0.6900000000000001,0.09340000000000001,0.67,126,967,1005,7,10.3,453,292,0,718,0.268,33.53,24.62,0.13,995,1.8,91,3 +2016,12,11,4,30,27.200000000000003,0.7000000000000001,0.09290000000000001,0.67,118,933,854,6,10.4,375,103,0,456,0.267,34.910000000000004,37.93,0.13,995,1.8,91,3 +2016,12,11,5,30,26.200000000000003,0.7000000000000001,0.0918,0.67,106,874,654,7,10.5,228,71,0,273,0.265,37.4,51.160000000000004,0.13,995,1.7000000000000002,90,2.9000000000000004 +2016,12,11,6,30,24.8,0.7000000000000001,0.0916,0.67,90,765,423,7,10.9,168,48,0,189,0.264,41.56,64.21000000000001,0.13,996,1.7000000000000002,89,2.6 +2016,12,11,7,30,23.1,0.6900000000000001,0.0911,0.67,64,548,188,7,11.4,83,243,100,138,0.263,47.84,76.93,0.13,996,1.6,86,2.1 +2016,12,11,8,30,21.700000000000003,0.6900000000000001,0.091,0.67,13,66,14,7,12.5,10,32,67,11,0.262,55.82,88.92,0.13,997,1.6,84,1.5 +2016,12,11,9,30,20.8,0.7000000000000001,0.093,0.67,0,0,0,7,13.600000000000001,0,0,0,0,0.261,63.54,100.89,0.13,997,1.6,84,1.2000000000000002 +2016,12,11,10,30,20.200000000000003,0.72,0.0988,0.67,0,0,0,7,14.4,0,0,0,0,0.26,69.28,111.41,0.13,997,1.6,87,1 +2016,12,11,11,30,19.6,0.72,0.10200000000000001,0.67,0,0,0,7,14.9,0,0,0,0,0.258,74.26,120.27,0.13,997,1.6,91,0.9 +2016,12,11,12,30,19.1,0.71,0.1048,0.67,0,0,0,0,15.3,0,0,0,0,0.256,78.45,126.62,0.13,997,1.6,96,0.8 +2016,12,11,13,30,18.6,0.6900000000000001,0.11280000000000001,0.67,0,0,0,7,15.3,0,0,0,0,0.255,81.29,129.49,0.13,997,1.6,100,0.7000000000000001 +2016,12,11,14,30,18.3,0.67,0.1159,0.67,0,0,0,0,15.4,0,0,33,0,0.254,83.07000000000001,128.31,0.13,996,1.7000000000000002,105,0.7000000000000001 +2016,12,11,15,30,18.1,0.65,0.1207,0.67,0,0,0,3,15.4,0,0,0,0,0.254,84.37,123.33,0.13,996,1.7000000000000002,111,0.7000000000000001 +2016,12,11,16,30,17.900000000000002,0.62,0.1254,0.67,0,0,0,0,15.5,0,0,0,0,0.254,85.8,115.42,0.13,996,1.7000000000000002,115,0.7000000000000001 +2016,12,11,17,30,17.8,0.61,0.1257,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.255,86.71000000000001,105.52,0.13,996,1.8,118,0.7000000000000001 +2016,12,11,18,30,18.2,0.61,0.1194,0.67,0,0,0,0,15.700000000000001,0,0,0,0,0.256,85.12,94.33,0.13,997,1.8,121,0.9 +2016,12,11,19,30,19.400000000000002,0.63,0.1124,0.67,50,339,96,0,15.8,50,297,25,90,0.257,79.73,82.19,0.13,998,1.8,118,1.4000000000000001 +2016,12,11,20,30,21.200000000000003,0.65,0.1034,0.67,84,674,318,0,15.600000000000001,84,674,0,318,0.257,70.58,69.67,0.13,998,1.8,110,2 +2016,12,11,21,30,22.700000000000003,0.68,0.0927,0.67,99,833,556,0,15.200000000000001,124,715,0,516,0.258,62.47,56.74,0.13,998,1.9000000000000001,104,2.3000000000000003 +2016,12,11,22,30,24,0.73,0.0821,0.67,107,919,773,0,14.600000000000001,107,919,0,773,0.258,55.730000000000004,43.58,0.13,998,2,101,2.4000000000000004 +2016,12,11,23,30,24.6,0.77,0.07680000000000001,0.67,114,965,947,0,14.200000000000001,196,772,0,863,0.258,52.38,30.28,0.13,998,2,99,2.4000000000000004 +2016,12,12,0,30,25.900000000000002,0.73,0.08940000000000001,0.67,125,976,1058,0,13.9,237,780,0,983,0.258,47.5,17.03,0.13,997,2.1,94,2.6 +2016,12,12,1,30,26.400000000000002,0.76,0.0902,0.67,128,984,1108,7,13.600000000000001,485,393,0,876,0.258,45.21,5.19,0.13,997,2.1,90,2.7 +2016,12,12,2,30,26.400000000000002,0.77,0.092,0.67,130,974,1085,7,13.3,422,416,33,830,0.259,44.52,11.43,0.13,996,2.2,87,2.7 +2016,12,12,3,30,26,0.71,0.10500000000000001,0.67,131,947,993,7,13.3,446,338,0,754,0.26,45.4,24.5,0.13,996,2.3000000000000003,84,2.7 +2016,12,12,4,30,25.5,0.72,0.1053,0.67,124,909,842,7,13.4,341,429,0,680,0.261,47.02,37.800000000000004,0.13,996,2.3000000000000003,82,2.7 +2016,12,12,5,30,24.8,0.72,0.1048,0.67,112,846,644,7,13.5,261,349,0,480,0.262,49.44,51.04,0.13,996,2.3000000000000003,81,2.6 +2016,12,12,6,30,23.900000000000002,0.73,0.1028,0.67,93,739,416,0,13.8,93,739,0,416,0.264,53.04,64.08,0.13,997,2.3000000000000003,81,2.5 +2016,12,12,7,30,22.8,0.75,0.09770000000000001,0.67,65,532,186,0,14.100000000000001,65,532,0,186,0.265,58.03,76.8,0.13,997,2.3000000000000003,79,1.9000000000000001 +2016,12,12,8,30,21.400000000000002,0.77,0.0908,0.67,14,70,15,0,14.9,14,70,0,15,0.267,66.28,88.8,0.13,998,2.2,78,1.2000000000000002 +2016,12,12,9,30,20.3,0.78,0.08370000000000001,0.67,0,0,0,0,15.600000000000001,0,0,0,0,0.267,74.2,100.76,0.13,998,2.1,79,0.9 +2016,12,12,10,30,19.5,0.8,0.0796,0.67,0,0,0,0,15.8,0,0,0,0,0.267,79.2,111.28,0.13,998,2.1,81,0.7000000000000001 +2016,12,12,11,30,19,0.8,0.07830000000000001,0.67,0,0,0,0,15.9,0,0,0,0,0.267,82.43,120.15,0.13,998,2.1,84,0.7000000000000001 +2016,12,12,12,30,18.400000000000002,0.8,0.0772,0.67,0,0,0,0,16,0,0,0,0,0.267,85.86,126.51,0.13,998,2,88,0.7000000000000001 +2016,12,12,13,30,17.8,0.79,0.0772,0.67,0,0,0,0,16,0,0,0,0,0.267,88.95,129.41,0.13,997,2,94,0.7000000000000001 +2016,12,12,14,30,17.400000000000002,0.78,0.0779,0.67,0,0,0,0,15.9,0,0,33,0,0.268,91.09,128.27,0.13,997,1.9000000000000001,99,0.7000000000000001 +2016,12,12,15,30,17.1,0.78,0.0775,0.67,0,0,0,0,15.9,0,0,0,0,0.269,92.52,123.32000000000001,0.13,996,1.9000000000000001,104,0.7000000000000001 +2016,12,12,16,30,16.7,0.78,0.076,0.67,0,0,0,0,15.8,0,0,0,0,0.271,94.62,115.44,0.13,996,1.8,110,0.7000000000000001 +2016,12,12,17,30,16.3,0.78,0.0743,0.67,0,0,0,0,15.8,0,0,0,0,0.273,96.71000000000001,105.56,0.13,996,1.7000000000000002,113,0.8 +2016,12,12,18,30,16.6,0.77,0.0728,0.67,0,0,0,0,15.700000000000001,0,0,0,0,0.274,94.66,94.38,0.13,996,1.7000000000000002,112,0.8 +2016,12,12,19,30,18.6,0.77,0.07050000000000001,0.67,43,426,100,0,15.9,43,426,0,100,0.276,84.06,82.25,0.13,997,1.6,105,1.2000000000000002 +2016,12,12,20,30,21.400000000000002,0.79,0.066,0.67,70,740,326,0,15.700000000000001,70,740,0,326,0.277,69.84,69.74,0.13,997,1.6,92,1.7000000000000002 +2016,12,12,21,30,23.700000000000003,0.8200000000000001,0.060200000000000004,0.67,84,883,567,0,14.8,84,883,0,567,0.277,57.26,56.82,0.13,997,1.5,84,2 +2016,12,12,22,30,25.6,0.85,0.055900000000000005,0.67,93,958,786,0,13.8,93,958,0,786,0.278,48.22,43.660000000000004,0.13,996,1.6,81,2.1 +2016,12,12,23,30,26.5,0.87,0.053000000000000005,0.67,98,1000,961,0,13.3,232,630,0,776,0.278,43.97,30.37,0.13,996,1.6,79,2.2 +2016,12,13,0,30,28.5,0.84,0.053200000000000004,0.67,103,1021,1079,0,12.700000000000001,264,687,0,921,0.279,37.85,17.11,0.13,995,1.6,78,2.3000000000000003 +2016,12,13,1,30,29.400000000000002,0.84,0.0516,0.67,104,1030,1130,0,12.200000000000001,104,1030,0,1130,0.28,34.69,5.19,0.13,994,1.6,79,2.3000000000000003 +2016,12,13,2,30,29.900000000000002,0.84,0.0502,0.67,103,1026,1109,0,11.700000000000001,103,1026,33,1109,0.28,32.68,11.31,0.13,993,1.7000000000000002,79,2.3000000000000003 +2016,12,13,3,30,29.900000000000002,0.79,0.052700000000000004,0.67,101,1009,1020,0,11.5,101,1009,0,1020,0.28,32.06,24.38,0.13,993,1.7000000000000002,79,2.4000000000000004 +2016,12,13,4,30,29.5,0.79,0.051300000000000005,0.67,94,978,868,0,11.4,94,978,0,868,0.28,32.6,37.68,0.13,992,1.7000000000000002,77,2.5 +2016,12,13,5,30,28.6,0.8,0.0502,0.67,86,924,668,0,11.5,86,924,0,668,0.28,34.58,50.92,0.13,992,1.7000000000000002,75,2.6 +2016,12,13,6,30,27.200000000000003,0.78,0.0506,0.67,73,829,437,0,11.9,73,829,0,437,0.28,38.54,63.96,0.13,992,1.7000000000000002,71,2.6 +2016,12,13,7,30,25.1,0.78,0.0497,0.67,53,638,200,0,12.600000000000001,53,638,0,200,0.279,45.71,76.68,0.13,993,1.6,67,2.1 +2016,12,13,8,30,22.900000000000002,0.78,0.0483,0.67,14,129,17,0,14,14,129,0,17,0.278,57.14,88.69,0.13,993,1.6,63,1.4000000000000001 +2016,12,13,9,30,21.3,0.79,0.0466,0.67,0,0,0,0,15.4,0,0,0,0,0.277,68.86,100.63,0.13,994,1.6,61,1 +2016,12,13,10,30,20.400000000000002,0.8,0.045200000000000004,0.67,0,0,0,0,16.1,0,0,0,0,0.276,76.3,111.16,0.13,994,1.5,57,0.8 +2016,12,13,11,30,19.6,0.8,0.0442,0.67,0,0,0,0,16.6,0,0,0,0,0.275,82.66,120.03,0.13,994,1.5,51,0.7000000000000001 +2016,12,13,12,30,19,0.8,0.043500000000000004,0.67,0,0,0,0,16.8,0,0,0,0,0.274,87.18,126.41,0.13,994,1.5,44,0.7000000000000001 +2016,12,13,13,30,18.400000000000002,0.8,0.042800000000000005,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.272,91.2,129.34,0.13,993,1.4000000000000001,36,0.6000000000000001 +2016,12,13,14,30,18,0.8,0.0425,0.67,0,0,0,0,17,0,0,33,0,0.27,94.01,128.23,0.13,993,1.4000000000000001,27,0.6000000000000001 +2016,12,13,15,30,17.400000000000002,0.8,0.0429,0.67,0,0,0,0,17,0,0,0,0,0.269,97.58,123.31,0.13,992,1.4000000000000001,13,0.6000000000000001 +2016,12,13,16,30,17,0.81,0.043300000000000005,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.27,99.68,115.46000000000001,0.13,992,1.4000000000000001,176,0.6000000000000001 +2016,12,13,17,30,16.6,0.8200000000000001,0.0434,0.67,0,0,0,0,16.6,0,0,0,0,0.27,100,105.60000000000001,0.13,992,1.4000000000000001,340,0.7000000000000001 +2016,12,13,18,30,16.900000000000002,0.86,0.045000000000000005,0.67,0,0,0,0,16.7,0,0,0,0,0.27,99.01,94.44,0.13,993,1.4000000000000001,323,0.7000000000000001 +2016,12,13,19,30,18.6,0.89,0.0454,0.67,38,488,103,0,16.6,38,488,0,103,0.27,88.32000000000001,82.32000000000001,0.13,993,1.5,318,0.9 +2016,12,13,20,30,21.400000000000002,0.93,0.0424,0.67,61,782,331,0,16.2,61,782,0,331,0.27,72.23,69.82000000000001,0.13,994,1.5,332,1.1 +2016,12,13,21,30,23.900000000000002,0.99,0.039900000000000005,0.67,74,910,571,0,14.4,74,910,0,571,0.27,55.47,56.910000000000004,0.13,993,1.5,348,1.1 +2016,12,13,22,30,26,1.03,0.038700000000000005,0.67,83,980,791,0,12.600000000000001,83,980,0,791,0.269,43.45,43.75,0.13,993,1.5,184,1 +2016,12,13,23,30,27.1,1.05,0.037200000000000004,0.67,88,1021,968,0,11.3,88,1021,0,968,0.269,37.34,30.46,0.13,993,1.4000000000000001,15,0.9 +2016,12,14,0,30,29.8,0.79,0.048400000000000006,0.67,100,1032,1086,0,10.5,100,1032,0,1086,0.268,30.21,17.2,0.13,991,1.4000000000000001,42,1.2000000000000002 +2016,12,14,1,30,31.1,0.8200000000000001,0.0463,0.67,100,1043,1139,0,10,100,1043,0,1139,0.268,27.18,5.2,0.13,990,1.4000000000000001,49,1.4000000000000001 +2016,12,14,2,30,32,0.84,0.045000000000000005,0.67,101,1039,1120,0,9.700000000000001,126,1001,33,1108,0.267,25.38,11.18,0.13,988,1.4000000000000001,52,1.7000000000000002 +2016,12,14,3,30,32.300000000000004,0.79,0.0488,0.67,99,1021,1030,0,9.600000000000001,99,1021,0,1030,0.267,24.740000000000002,24.26,0.13,987,1.4000000000000001,55,1.9000000000000001 +2016,12,14,4,30,32.1,0.8,0.049100000000000005,0.67,93,988,876,0,9.600000000000001,93,988,0,876,0.268,24.97,37.56,0.13,987,1.5,57,2 +2016,12,14,5,30,31.400000000000002,0.8,0.050100000000000006,0.67,86,932,675,0,9.700000000000001,86,932,0,675,0.268,26.14,50.79,0.13,987,1.5,57,2.1 +2016,12,14,6,30,30,0.8,0.0517,0.67,74,831,440,0,10,74,831,0,440,0.269,28.990000000000002,63.84,0.13,987,1.6,55,2.3000000000000003 +2016,12,14,7,30,27.6,0.8,0.054,0.67,54,628,200,0,10.9,54,628,0,200,0.269,35.35,76.56,0.13,988,1.7000000000000002,51,2.1 +2016,12,14,8,30,24.8,0.8,0.058,0.67,14,118,17,0,13,14,118,0,17,0.269,47.910000000000004,88.58,0.13,988,1.9000000000000001,47,1.7000000000000002 +2016,12,14,9,30,23,0.8300000000000001,0.0654,0.67,0,0,0,0,14.5,0,0,0,0,0.269,58.7,100.51,0.13,989,2,45,1.4000000000000001 +2016,12,14,10,30,21.900000000000002,0.88,0.077,0.67,0,0,0,0,15.4,0,0,0,0,0.269,66.65,111.04,0.13,990,2.2,41,1.1 +2016,12,14,11,30,21,0.9500000000000001,0.092,0.67,0,0,0,0,16,0,0,0,0,0.268,73.21000000000001,119.92,0.13,990,2.4000000000000004,36,0.9 +2016,12,14,12,30,20.400000000000002,1.02,0.1077,0.67,0,0,0,0,16.3,0,0,0,0,0.268,77.32000000000001,126.32000000000001,0.13,990,2.5,28,0.8 +2016,12,14,13,30,19.900000000000002,1.07,0.1193,0.67,0,0,0,0,16.3,0,0,0,0,0.267,79.95,129.28,0.13,989,2.5,18,0.7000000000000001 +2016,12,14,14,30,19.400000000000002,1.09,0.12480000000000001,0.67,0,0,0,0,16.3,0,0,33,0,0.268,82.22,128.2,0.13,989,2.5,8,0.7000000000000001 +2016,12,14,15,30,18.900000000000002,1.1,0.12660000000000002,0.67,0,0,0,0,16.2,0,0,0,0,0.268,84.10000000000001,123.31,0.13,988,2.5,177,0.6000000000000001 +2016,12,14,16,30,18.400000000000002,1.08,0.1253,0.67,0,0,0,0,16,0,0,0,0,0.268,86.18,115.49000000000001,0.13,988,2.5,344,0.6000000000000001 +2016,12,14,17,30,18,1.06,0.12240000000000001,0.67,0,0,0,0,15.9,0,0,0,0,0.268,87.53,105.65,0.13,988,2.5,333,0.6000000000000001 +2016,12,14,18,30,18.1,1.04,0.1194,0.67,0,0,0,0,15.700000000000001,0,0,0,0,0.268,86.06,94.5,0.13,989,2.4000000000000004,323,0.8 +2016,12,14,19,30,19.6,1.02,0.11670000000000001,0.67,46,335,90,0,15.700000000000001,46,335,0,90,0.268,78.18,82.39,0.13,989,2.4000000000000004,318,1.2000000000000002 +2016,12,14,20,30,22.3,1.01,0.113,0.67,82,653,306,0,15.600000000000001,82,653,0,306,0.269,65.86,69.9,0.13,989,2.4000000000000004,318,1.5 +2016,12,14,21,30,25.200000000000003,1,0.10880000000000001,0.67,101,805,540,0,15.4,101,805,0,540,0.269,54.44,56.99,0.13,989,2.4000000000000004,322,1.5 +2016,12,14,22,30,28.1,1,0.10490000000000001,0.67,114,890,756,0,14.8,114,890,0,756,0.268,44.14,43.84,0.13,989,2.4000000000000004,324,1.2000000000000002 +2016,12,14,23,30,29.5,1,0.1019,0.67,121,939,930,0,14,121,939,0,930,0.268,38.81,30.55,0.13,989,2.4000000000000004,324,1 +2016,12,15,0,30,32.800000000000004,1,0.0984,0.67,126,968,1050,0,13.3,126,968,0,1050,0.268,30.7,17.29,0.13,988,2.3000000000000003,39,0.6000000000000001 +2016,12,15,1,30,34.1,1,0.0975,0.67,127,978,1101,0,13,127,978,0,1101,0.268,28,5.23,0.13,987,2.3000000000000003,78,1.1 +2016,12,15,2,30,34.7,1,0.09720000000000001,0.67,131,968,1081,0,13,131,968,33,1081,0.268,27.12,11.06,0.13,986,2.4000000000000004,75,1.6 +2016,12,15,3,30,34.6,0.73,0.11760000000000001,0.67,138,934,990,3,13.200000000000001,295,340,0,605,0.268,27.63,24.14,0.13,985,2.4000000000000004,69,2.1 +2016,12,15,4,30,34,0.73,0.1211,0.67,131,892,839,0,13.600000000000001,232,560,0,677,0.267,29.26,37.44,0.13,985,2.5,64,2.6 +2016,12,15,5,30,32.7,0.73,0.1236,0.67,119,823,641,0,14.100000000000001,119,823,0,641,0.267,32.480000000000004,50.67,0.13,985,2.6,61,3 +2016,12,15,6,30,30.700000000000003,0.72,0.1253,0.67,102,705,414,0,14.9,102,705,0,414,0.267,38.230000000000004,63.72,0.13,985,2.7,59,3.2 +2016,12,15,7,30,28.200000000000003,0.72,0.1262,0.67,72,479,184,0,15.9,72,479,0,184,0.267,47.26,76.44,0.13,986,2.9000000000000004,58,3.1 +2016,12,15,8,30,25.8,0.71,0.1298,0.67,14,49,15,0,17,14,49,0,15,0.267,58.4,88.47,0.13,987,3,60,2.7 +2016,12,15,9,30,24.200000000000003,0.6900000000000001,0.13770000000000002,0.67,0,0,0,0,17.900000000000002,0,0,0,0,0.267,68,100.39,0.13,988,3.1,64,2.3000000000000003 +2016,12,15,10,30,23.3,0.67,0.1496,0.67,0,0,0,0,18.400000000000002,0,0,0,0,0.267,74.19,110.93,0.13,989,3.1,65,2.1 +2016,12,15,11,30,22.8,0.66,0.1607,0.67,0,0,0,0,18.7,0,0,0,0,0.267,77.89,119.82000000000001,0.13,990,3.1,64,1.9000000000000001 +2016,12,15,12,30,22.400000000000002,0.66,0.1631,0.67,0,0,0,0,18.900000000000002,0,0,0,0,0.266,80.47,126.23,0.13,990,3.1,59,1.7000000000000002 +2016,12,15,13,30,22,0.67,0.153,0.67,0,0,0,7,18.900000000000002,0,0,0,0,0.265,82.75,129.22,0.13,989,3,54,1.4000000000000001 +2016,12,15,14,30,21.6,0.6900000000000001,0.1345,0.67,0,0,0,7,18.900000000000002,0,0,33,0,0.265,84.79,128.17000000000002,0.13,989,2.9000000000000004,46,1.1 +2016,12,15,15,30,21.1,0.72,0.12390000000000001,0.67,0,0,0,7,18.900000000000002,0,0,0,0,0.266,87.2,123.32000000000001,0.13,989,2.9000000000000004,41,0.8 +2016,12,15,16,30,20.700000000000003,0.74,0.1135,0.67,0,0,0,0,18.900000000000002,0,0,0,0,0.266,89.16,115.52,0.13,989,2.8000000000000003,39,0.7000000000000001 +2016,12,15,17,30,20.3,0.76,0.1015,0.67,0,0,0,0,18.8,0,0,0,0,0.267,91.33,105.7,0.13,989,2.7,38,0.7000000000000001 +2016,12,15,18,30,20.400000000000002,0.78,0.0926,0.67,0,0,0,7,18.8,0,0,0,0,0.269,90.62,94.57000000000001,0.13,989,2.6,35,0.9 +2016,12,15,19,30,21.700000000000003,0.8,0.08310000000000001,0.67,42,380,92,0,18.8,44,323,50,86,0.27,83.54,82.47,0.13,990,2.5,30,1.5 +2016,12,15,20,30,23.8,0.8300000000000001,0.0704,0.67,70,710,313,7,18.3,86,597,0,290,0.272,71.35000000000001,69.99,0.13,990,2.4000000000000004,25,2.1 +2016,12,15,21,30,25.8,0.84,0.063,0.67,85,856,550,7,17.1,190,483,0,452,0.273,58.72,57.08,0.13,990,2.3000000000000003,25,2.2 +2016,12,15,22,30,27.6,0.87,0.059800000000000006,0.67,94,933,766,7,16.1,328,330,0,566,0.272,49.4,43.93,0.13,990,2.3000000000000003,30,2.2 +2016,12,15,23,30,28.400000000000002,0.9,0.0591,0.67,101,975,940,7,15.100000000000001,373,458,0,767,0.271,44.37,30.64,0.13,990,2.3000000000000003,33,2.1 +2016,12,16,0,30,30.400000000000002,0.8300000000000001,0.0727,0.67,114,987,1056,7,14.3,473,314,0,773,0.269,37.46,17.38,0.13,989,2.3000000000000003,45,2 +2016,12,16,1,30,31.200000000000003,0.8200000000000001,0.07390000000000001,0.67,117,994,1107,7,13.600000000000001,519,246,0,764,0.268,34.32,5.26,0.13,988,2.3000000000000003,53,2 +2016,12,16,2,30,31.700000000000003,0.81,0.0751,0.67,117,988,1087,7,13.200000000000001,464,252,33,711,0.268,32.53,10.94,0.13,987,2.4000000000000004,61,2.1 +2016,12,16,3,30,31.700000000000003,0.79,0.0772,0.67,116,964,997,7,13.3,476,159,0,621,0.268,32.65,24.02,0.13,987,2.6,69,2.2 +2016,12,16,4,30,31.200000000000003,0.77,0.08460000000000001,0.67,114,918,844,7,13.600000000000001,354,396,0,669,0.269,34.33,37.32,0.13,987,2.8000000000000003,74,2.5 +2016,12,16,5,30,30.1,0.78,0.0964,0.67,108,842,643,7,14,240,435,0,516,0.269,37.53,50.550000000000004,0.13,987,3,75,2.7 +2016,12,16,6,30,28.400000000000002,0.8,0.1053,0.67,94,722,415,7,14.600000000000001,187,187,0,270,0.269,42.97,63.6,0.13,987,3.2,74,2.8000000000000003 +2016,12,16,7,30,26.5,0.8200000000000001,0.1072,0.67,66,506,186,7,15.4,91,173,100,132,0.27,50.4,76.32000000000001,0.13,988,3.5,70,2.8000000000000003 +2016,12,16,8,30,24.8,0.8300000000000001,0.1078,0.67,14,67,16,7,16.2,12,30,67,13,0.271,58.81,88.36,0.13,989,3.7,66,2.5 +2016,12,16,9,30,23.700000000000003,0.85,0.1085,0.67,0,0,0,3,16.900000000000002,0,0,0,0,0.273,65.81,100.28,0.13,989,3.9000000000000004,60,2.2 +2016,12,16,10,30,22.900000000000002,0.87,0.11120000000000001,0.67,0,0,0,3,17.5,0,0,0,0,0.274,71.44,110.82000000000001,0.13,990,4,53,2 +2016,12,16,11,30,22.400000000000002,0.87,0.115,0.67,0,0,0,7,17.8,0,0,0,0,0.275,75.41,119.72,0.13,990,4.1000000000000005,46,1.7000000000000002 +2016,12,16,12,30,22,0.86,0.1178,0.67,0,0,0,3,18.1,0,0,0,0,0.276,78.57000000000001,126.15,0.13,990,4.1000000000000005,39,1.5 +2016,12,16,13,30,21.6,0.87,0.11850000000000001,0.67,0,0,0,4,18.3,0,0,0,0,0.276,81.41,129.17000000000002,0.13,989,4.1000000000000005,32,1.3 +2016,12,16,14,30,21.3,0.87,0.11560000000000001,0.67,0,0,0,3,18.400000000000002,0,0,33,0,0.277,83.57000000000001,128.16,0.13,988,4.1000000000000005,25,1.2000000000000002 +2016,12,16,15,30,21,0.88,0.11280000000000001,0.67,0,0,0,0,18.5,0,0,0,0,0.277,85.64,123.34,0.13,988,4,18,1 +2016,12,16,16,30,20.8,0.9,0.1115,0.67,0,0,0,0,18.6,0,0,0,0,0.277,87.10000000000001,115.56,0.13,988,3.9000000000000004,10,1 +2016,12,16,17,30,20.6,0.9,0.10980000000000001,0.67,0,0,0,0,18.6,0,0,0,0,0.275,88.39,105.76,0.13,988,3.8000000000000003,4,0.9 +2016,12,16,18,30,20.8,0.92,0.11040000000000001,0.67,0,0,0,0,18.6,0,0,0,0,0.274,87.48,94.64,0.13,989,3.8000000000000003,177,1 +2016,12,16,19,30,21.8,0.9400000000000001,0.10940000000000001,0.67,45,319,86,0,18.6,45,319,0,86,0.273,82.19,82.55,0.13,989,3.7,350,1.5 +2016,12,16,20,30,23.700000000000003,0.97,0.1013,0.67,77,644,297,0,18.3,77,644,0,297,0.273,71.91,70.07000000000001,0.13,990,3.6,346,1.9000000000000001 +2016,12,16,21,30,25.900000000000002,1.01,0.0927,0.67,95,799,528,0,17.7,95,799,0,528,0.272,60.620000000000005,57.18,0.13,990,3.6,345,1.9000000000000001 +2016,12,16,22,30,28.200000000000003,1.02,0.08650000000000001,0.67,105,884,741,0,16.900000000000002,105,884,0,741,0.272,50.46,44.03,0.13,989,3.5,346,1.8 +2016,12,16,23,30,29.3,1.03,0.0819,0.67,112,932,913,0,16.400000000000002,112,932,0,913,0.272,45.71,30.740000000000002,0.13,989,3.5,346,1.8 +2016,12,17,0,30,32.2,0.89,0.0888,0.67,121,953,1030,0,16.1,121,953,0,1030,0.272,38.08,17.47,0.13,987,3.5,175,1.5 +2016,12,17,1,30,33.5,0.88,0.0835,0.67,120,968,1084,0,16,150,927,0,1073,0.273,35.21,5.3,0.13,986,3.4000000000000004,6,1.4000000000000001 +2016,12,17,2,30,34.4,0.88,0.0796,0.67,125,958,1066,0,16,125,958,33,1066,0.273,33.32,10.82,0.13,985,3.4000000000000004,17,1.3 +2016,12,17,3,30,34.6,0.67,0.1111,0.67,135,919,975,0,16,135,919,0,975,0.272,32.94,23.900000000000002,0.13,985,3.4000000000000004,26,1.4000000000000001 +2016,12,17,4,30,34.2,0.66,0.1197,0.67,132,872,826,0,16,132,872,0,826,0.271,33.76,37.21,0.13,984,3.5,33,1.5 +2016,12,17,5,30,33.2,0.6900000000000001,0.1305,0.67,124,793,629,0,16.1,154,699,0,599,0.269,35.92,50.44,0.13,984,3.8000000000000003,40,1.7000000000000002 +2016,12,17,6,30,31.5,0.75,0.1457,0.67,109,660,404,3,16.400000000000002,155,290,0,284,0.268,40.32,63.480000000000004,0.13,984,4,45,2 +2016,12,17,7,30,29.1,0.81,0.1574,0.67,78,425,179,0,17.3,78,425,0,179,0.267,49.120000000000005,76.2,0.13,985,4.3,48,2.1 +2016,12,17,8,30,26.700000000000003,0.87,0.1726,0.67,14,39,15,7,18.7,13,34,42,14,0.267,61.43,88.26,0.13,986,4.5,49,2 +2016,12,17,9,30,25.200000000000003,0.9500000000000001,0.1952,0.67,0,0,0,7,19.5,0,0,0,0,0.268,70.75,100.16,0.13,987,4.6000000000000005,47,1.9000000000000001 +2016,12,17,10,30,24.3,1.02,0.2162,0.67,0,0,0,7,19.8,0,0,0,0,0.268,76.06,110.71000000000001,0.13,987,4.6000000000000005,42,1.8 +2016,12,17,11,30,23.8,1.07,0.23220000000000002,0.67,0,0,0,4,19.8,0,0,0,0,0.269,78.28,119.63,0.13,987,4.6000000000000005,36,1.7000000000000002 +2016,12,17,12,30,23.400000000000002,1.09,0.23750000000000002,0.67,0,0,0,4,19.700000000000003,0,0,0,0,0.268,79.58,126.08,0.13,987,4.5,29,1.6 +2016,12,17,13,30,23.200000000000003,1.09,0.2331,0.67,0,0,0,4,19.5,0,0,0,0,0.268,79.84,129.13,0.13,987,4.5,21,1.5 +2016,12,17,14,30,23.1,1.06,0.223,0.67,0,0,0,3,19.3,0,0,33,0,0.267,79.39,128.15,0.13,986,4.5,11,1.3 +2016,12,17,15,30,22.900000000000002,1.02,0.2114,0.67,0,0,0,3,19.200000000000003,0,0,0,0,0.267,79.77,123.36,0.13,986,4.5,4,1.2000000000000002 +2016,12,17,16,30,22.700000000000003,0.97,0.1993,0.67,0,0,0,3,19.200000000000003,0,0,0,0,0.266,80.53,115.61,0.13,986,4.5,177,1.1 +2016,12,17,17,30,22.5,0.93,0.1879,0.67,0,0,0,3,19.1,0,0,0,0,0.266,81.37,105.83,0.13,986,4.5,349,0.9 +2016,12,17,18,30,22.400000000000002,0.89,0.1789,0.67,0,0,0,3,19.200000000000003,0,0,0,0,0.266,82.13,94.72,0.13,987,4.4,335,0.9 +2016,12,17,19,30,22.900000000000002,0.87,0.17020000000000002,0.67,49,232,79,3,19.200000000000003,35,5,100,36,0.265,79.91,82.63,0.13,988,4.3,317,1.2000000000000002 +2016,12,17,20,30,24.200000000000003,0.86,0.1595,0.67,94,560,284,3,19.200000000000003,86,7,0,88,0.264,73.78,70.17,0.13,988,4.2,295,1.4000000000000001 +2016,12,17,21,30,26.400000000000002,0.86,0.14880000000000002,0.67,117,733,513,3,19.1,227,185,0,327,0.264,64.22,57.27,0.13,989,4,255,1.3 +2016,12,17,22,30,28.8,0.88,0.13520000000000001,0.67,127,836,727,3,18.8,340,103,0,414,0.263,54.72,44.13,0.13,989,3.8000000000000003,205,1.4000000000000001 +2016,12,17,23,30,30.1,0.9,0.12300000000000001,0.67,132,894,900,3,18.2,401,377,0,725,0.263,49.06,30.84,0.13,989,3.7,183,1.6 +2016,12,18,0,30,32.1,0.87,0.1335,0.67,146,913,1016,0,17.8,146,913,0,1016,0.263,42.480000000000004,17.57,0.13,988,3.7,162,2 +2016,12,18,1,30,32.7,0.88,0.1383,0.67,154,916,1066,2,17.7,398,443,0,839,0.263,40.97,5.3500000000000005,0.13,988,3.8000000000000003,152,2.2 +2016,12,18,2,30,32.5,0.89,0.156,0.67,172,884,1041,0,17.8,196,847,33,1028,0.263,41.52,10.71,0.13,987,3.9000000000000004,140,2.4000000000000004 +2016,12,18,3,30,31.400000000000002,0.85,0.23320000000000002,0.67,200,813,944,3,18,360,199,0,542,0.264,44.910000000000004,23.79,0.13,987,4,128,2.8000000000000003 +2016,12,18,4,30,29.8,0.79,0.2828,0.67,213,724,791,3,18.5,179,141,0,291,0.265,50.86,37.09,0.13,987,4.2,118,3.2 +2016,12,18,5,30,27.900000000000002,0.66,0.34850000000000003,0.67,216,589,592,7,19.200000000000003,269,105,0,336,0.266,59.230000000000004,50.32,0.13,988,4.2,116,3.5 +2016,12,18,6,30,25.900000000000002,0.52,0.4081,0.67,189,411,373,8,19.6,72,4,17,74,0.267,68.3,63.36,0.13,989,4.1000000000000005,118,3.5 +2016,12,18,7,30,24,0.4,0.4071,0.67,116,191,162,4,19.6,33,40,42,43,0.268,76.31,76.09,0.13,990,4,122,3.3000000000000003 +2016,12,18,8,30,22.3,0.34,0.3685,0.67,10,3,10,0,19.400000000000002,5,1,50,5,0.269,83.69,88.15,0.13,991,3.8000000000000003,127,3 +2016,12,18,9,30,21.3,0.36,0.3254,0.67,0,0,0,0,19,0,0,0,0,0.27,86.97,100.06,0.13,991,3.7,133,2.8000000000000003 +2016,12,18,10,30,20.5,0.39,0.2944,0.67,0,0,0,0,18.5,0,0,0,0,0.269,88.17,110.61,0.13,992,3.6,138,2.7 +2016,12,18,11,30,20,0.39,0.2826,0.67,0,0,0,3,18,0,0,0,0,0.27,88.37,119.54,0.13,992,3.5,141,2.5 +2016,12,18,12,30,19.6,0.4,0.2901,0.67,0,0,0,3,17.8,0,0,0,0,0.27,89.08,126.02,0.13,992,3.5,141,2.4000000000000004 +2016,12,18,13,30,19.3,0.39,0.2939,0.67,0,0,0,0,17.6,0,0,8,0,0.27,89.86,129.09,0.13,992,3.4000000000000004,141,2.3000000000000003 +2016,12,18,14,30,19,0.37,0.3008,0.67,0,0,0,3,17.5,0,0,33,0,0.27,90.91,128.15,0.13,991,3.4000000000000004,142,2.3000000000000003 +2016,12,18,15,30,18.8,0.39,0.2995,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.271,91.55,123.39,0.13,991,3.3000000000000003,142,2.2 +2016,12,18,16,30,18.6,0.39,0.2811,0.67,0,0,0,0,17.3,0,0,0,0,0.272,92.32000000000001,115.67,0.13,991,3.2,142,2.1 +2016,12,18,17,30,18.400000000000002,0.38,0.2695,0.67,0,0,0,3,17.3,0,0,0,0,0.272,93.28,105.9,0.13,992,3.1,141,2.1 +2016,12,18,18,30,18.5,0.4,0.2743,0.67,0,0,0,3,17.2,0,0,0,0,0.272,92.36,94.8,0.13,992,3,141,2.1 +2016,12,18,19,30,19,0.38,0.2697,0.67,58,116,73,0,17.3,58,116,0,73,0.271,89.60000000000001,82.72,0.13,993,2.9000000000000004,141,2.3000000000000003 +2016,12,18,20,30,20.1,0.37,0.26380000000000003,0.67,130,430,275,0,17.400000000000002,130,406,8,267,0.27,84.36,70.26,0.13,993,2.9000000000000004,136,2.7 +2016,12,18,21,30,21.8,0.39,0.25170000000000003,0.67,163,630,503,3,17.3,219,204,0,329,0.269,75.42,57.370000000000005,0.13,993,2.8000000000000003,129,3 +2016,12,18,22,30,23.6,0.4,0.2257,0.67,177,758,720,3,16.900000000000002,335,223,0,495,0.269,65.96000000000001,44.230000000000004,0.13,993,2.8000000000000003,122,3 +2016,12,18,23,30,24.6,0.41000000000000003,0.2026,0.67,183,831,896,3,16.6,396,108,0,489,0.268,61.21,30.95,0.13,993,2.8000000000000003,119,3 +2016,12,19,0,30,27,0.41000000000000003,0.2061,0.67,192,866,1017,3,16.400000000000002,363,68,0,428,0.268,52.44,17.67,0.13,992,2.7,110,2.9000000000000004 +2016,12,19,1,30,28,0.43,0.19,0.67,185,893,1074,2,16.2,514,274,0,787,0.268,48.86,5.41,0.13,992,2.7,105,2.8000000000000003 +2016,12,19,2,30,28.400000000000002,0.44,0.17170000000000002,0.67,167,913,1064,3,16.1,494,144,0,636,0.268,47.230000000000004,10.6,0.13,991,2.7,101,2.8000000000000003 +2016,12,19,3,30,28.400000000000002,0.52,0.12140000000000001,0.67,143,923,988,3,16,354,31,0,382,0.268,46.910000000000004,23.67,0.13,990,2.7,97,2.7 +2016,12,19,4,30,27.900000000000002,0.53,0.1197,0.67,134,886,842,3,15.9,277,22,0,295,0.268,48.050000000000004,36.980000000000004,0.13,990,2.7,94,2.8000000000000003 +2016,12,19,5,30,27,0.51,0.1247,0.67,125,814,646,3,15.9,285,112,0,357,0.268,50.57,50.21,0.13,990,2.7,90,2.8000000000000003 +2016,12,19,6,30,25.6,0.5,0.1317,0.67,108,693,420,3,15.9,158,49,0,180,0.268,55.07,63.25,0.13,991,2.7,86,2.8000000000000003 +2016,12,19,7,30,24,0.5,0.13490000000000002,0.67,78,470,192,0,16,78,470,0,192,0.268,60.83,75.97,0.13,991,2.7,82,2.5 +2016,12,19,8,30,22.400000000000002,0.49,0.13340000000000002,0.67,16,51,18,0,16.2,16,51,0,18,0.268,67.81,88.05,0.13,992,2.7,78,1.9000000000000001 +2016,12,19,9,30,21.200000000000003,0.5,0.12890000000000001,0.67,0,0,0,0,16.5,0,0,0,0,0.268,74.5,99.95,0.13,992,2.7,77,1.5 +2016,12,19,10,30,20.5,0.51,0.12440000000000001,0.67,0,0,0,0,16.7,0,0,0,0,0.267,78.69,110.52,0.13,992,2.7,79,1.2000000000000002 +2016,12,19,11,30,19.900000000000002,0.52,0.1233,0.67,0,0,0,0,16.8,0,0,0,0,0.267,82.46000000000001,119.46000000000001,0.13,992,2.8000000000000003,85,1 +2016,12,19,12,30,19.5,0.51,0.1269,0.67,0,0,0,0,16.900000000000002,0,0,0,0,0.266,85.08,125.96000000000001,0.13,992,2.8000000000000003,91,0.8 +2016,12,19,13,30,19.200000000000003,0.51,0.133,0.67,0,0,0,0,17,0,0,0,0,0.266,87.11,129.06,0.13,991,2.9000000000000004,96,0.7000000000000001 +2016,12,19,14,30,19.1,0.52,0.13770000000000002,0.67,0,0,0,3,17.1,0,0,33,0,0.267,87.92,128.15,0.13,990,3,96,0.7000000000000001 +2016,12,19,15,30,19,0.56,0.14170000000000002,0.67,0,0,0,3,17.1,0,0,0,0,0.268,88.83,123.43,0.13,990,3.1,96,0.7000000000000001 +2016,12,19,16,30,18.900000000000002,0.59,0.1414,0.67,0,0,0,3,17.2,0,0,0,0,0.269,89.82000000000001,115.72,0.13,990,3.1,97,0.6000000000000001 +2016,12,19,17,30,18.8,0.6,0.1373,0.67,0,0,0,3,17.3,0,0,0,0,0.27,90.86,105.97,0.13,990,3.2,99,0.6000000000000001 +2016,12,19,18,30,19,0.64,0.1404,0.67,0,0,0,3,17.3,0,0,0,0,0.271,90.04,94.89,0.13,990,3.2,99,0.6000000000000001 +2016,12,19,19,30,20.200000000000003,0.66,0.14170000000000002,0.67,49,249,80,3,17.400000000000002,36,36,100,41,0.271,84.11,82.81,0.13,991,3.3000000000000003,82,0.8 +2016,12,19,20,30,22.200000000000003,0.6900000000000001,0.13770000000000002,0.67,91,584,287,0,17.5,93,571,0,285,0.272,74.92,70.36,0.13,991,3.3000000000000003,52,1 +2016,12,19,21,30,24.3,0.74,0.1336,0.67,114,750,517,0,17.400000000000002,158,494,0,424,0.272,65.36,57.47,0.13,991,3.4000000000000004,31,1.1 +2016,12,19,22,30,26.400000000000002,0.77,0.1264,0.67,126,845,730,7,17.1,330,272,0,525,0.272,56.620000000000005,44.33,0.13,991,3.4000000000000004,20,1.2000000000000002 +2016,12,19,23,30,27.400000000000002,0.8,0.1193,0.67,133,899,903,7,16.8,432,173,0,580,0.272,52.32,31.05,0.13,991,3.4000000000000004,16,1.3 +2016,12,20,0,30,29.8,0.8200000000000001,0.1258,0.67,141,925,1022,7,16.6,481,164,0,637,0.272,44.87,17.78,0.14,989,3.4000000000000004,10,1.4000000000000001 +2016,12,20,1,30,31,0.85,0.1165,0.67,138,942,1076,7,16.5,525,126,0,650,0.271,41.67,5.48,0.14,988,3.5,11,1.4000000000000001 +2016,12,20,2,30,31.700000000000003,0.86,0.1109,0.67,136,942,1062,4,16.400000000000002,395,35,33,429,0.271,39.79,10.49,0.14,987,3.5,13,1.3 +2016,12,20,3,30,31.900000000000002,0.86,0.10830000000000001,0.67,133,920,976,3,16.3,380,353,0,704,0.272,39.17,23.56,0.14,986,3.7,12,1.1 +2016,12,20,4,30,31.400000000000002,0.87,0.1197,0.67,130,874,829,0,16.2,177,754,0,780,0.271,40.06,36.86,0.14,986,3.8000000000000003,19,1 +2016,12,20,5,30,30.6,0.88,0.1277,0.67,121,803,636,0,16.2,141,534,0,484,0.27,42.04,50.09,0.14,986,3.9000000000000004,32,1.1 +2016,12,20,6,30,29.400000000000002,0.89,0.1321,0.67,102,690,414,7,16.5,185,298,0,320,0.27,45.67,63.14,0.14,986,4.1000000000000005,41,1.3 +2016,12,20,7,30,27.5,0.9,0.1263,0.67,71,488,190,6,17.5,90,15,67,94,0.27,54.35,75.87,0.14,987,4.1000000000000005,47,1.5 +2016,12,20,8,30,25.6,0.91,0.1197,0.67,15,74,18,6,18.7,10,0,67,10,0.27,65.81,87.96000000000001,0.14,987,4.2,46,1.5 +2016,12,20,9,30,24.3,0.9,0.1158,0.67,0,0,0,6,19,0,0,0,0,0.271,72.17,99.85000000000001,0.14,988,4.2,41,1.4000000000000001 +2016,12,20,10,30,23.5,0.89,0.1143,0.67,0,0,0,6,19.200000000000003,0,0,0,0,0.272,76.75,110.43,0.14,988,4.2,34,1.2000000000000002 +2016,12,20,11,30,22.900000000000002,0.87,0.1207,0.67,0,0,0,6,19.400000000000002,0,0,0,0,0.272,80.66,119.38,0.14,988,4.3,24,1 +2016,12,20,12,30,22.5,0.86,0.13340000000000002,0.67,0,0,0,6,19.5,0,0,0,0,0.272,83.03,125.91,0.14,988,4.3,9,1 +2016,12,20,13,30,22.200000000000003,0.84,0.1507,0.67,0,0,0,7,19.6,0,0,0,0,0.271,84.98,129.04,0.14,988,4.3,172,0.9 +2016,12,20,14,30,21.900000000000002,0.8300000000000001,0.1598,0.67,0,0,0,6,19.700000000000003,0,0,33,0,0.271,87.17,128.17000000000002,0.14,987,4.3,338,0.8 +2016,12,20,15,30,21.5,0.8300000000000001,0.1568,0.67,0,0,0,6,19.700000000000003,0,0,0,0,0.271,89.71000000000001,123.47,0.14,987,4.2,329,0.7000000000000001 +2016,12,20,16,30,21.1,0.8200000000000001,0.1374,0.67,0,0,0,6,19.8,0,0,0,0,0.272,92.21000000000001,115.79,0.14,987,4.2,320,0.6000000000000001 +2016,12,20,17,30,20.700000000000003,0.8,0.1154,0.67,0,0,0,6,19.700000000000003,0,0,0,0,0.274,94.16,106.06,0.14,987,4.1000000000000005,308,0.6000000000000001 +2016,12,20,18,30,20.700000000000003,0.8,0.1092,0.67,0,0,0,7,19.6,0,0,0,0,0.274,93.67,94.98,0.14,988,4,301,0.8 +2016,12,20,19,30,21.5,0.8300000000000001,0.10890000000000001,0.67,44,294,80,7,19.700000000000003,44,276,100,78,0.276,89.69,82.91,0.14,989,3.9000000000000004,298,1.1 +2016,12,20,20,30,23.200000000000003,0.85,0.10740000000000001,0.67,80,621,288,7,20,93,536,8,272,0.277,82.01,70.46000000000001,0.14,989,3.8000000000000003,293,1.5 +2016,12,20,21,30,25.700000000000003,0.87,0.10250000000000001,0.67,99,781,518,7,20,137,656,0,489,0.277,70.74,57.58,0.14,989,3.7,283,1.8 +2016,12,20,22,30,28.3,0.9,0.0961,0.67,110,872,733,0,19.400000000000002,141,806,0,716,0.278,58.7,44.44,0.14,989,3.5,271,1.8 +2016,12,20,23,30,29.5,0.92,0.0915,0.67,118,923,908,7,18.900000000000002,349,494,0,772,0.278,52.800000000000004,31.16,0.14,989,3.5,265,1.7000000000000002 +2016,12,21,0,30,31.700000000000003,0.91,0.092,0.67,123,954,1031,7,18.5,405,554,0,932,0.279,45.64,17.88,0.14,988,3.2,259,1.3 +2016,12,21,1,30,32.800000000000004,0.93,0.0873,0.67,123,971,1089,7,18.1,470,443,0,911,0.279,41.800000000000004,5.55,0.14,987,3.1,259,1.1 +2016,12,21,2,30,33.7,0.9400000000000001,0.0814,0.67,124,968,1076,7,17.6,471,393,33,858,0.28,38.39,10.38,0.14,986,3,266,1 +2016,12,21,3,30,34.300000000000004,0.81,0.0983,0.67,126,942,990,7,17,443,377,0,789,0.28200000000000003,35.89,23.45,0.14,985,3,283,0.9 +2016,12,21,4,30,34.300000000000004,0.8200000000000001,0.0951,0.67,117,908,845,7,16.6,386,325,0,646,0.28300000000000003,35,36.75,0.14,985,3.1,307,0.8 +2016,12,21,5,30,33.7,0.8300000000000001,0.09670000000000001,0.67,107,844,650,6,16.400000000000002,163,11,0,170,0.28500000000000003,35.58,49.980000000000004,0.14,985,3.3000000000000003,332,0.8 +2016,12,21,6,30,32.4,0.84,0.10010000000000001,0.67,94,728,424,6,16.7,52,3,0,53,0.28600000000000003,39.01,63.03,0.14,985,3.5,172,0.7000000000000001 +2016,12,21,7,30,30.3,0.84,0.11280000000000001,0.67,70,503,194,6,18.1,22,0,67,22,0.28600000000000003,48.22,75.76,0.14,986,3.8000000000000003,23,0.6000000000000001 +2016,12,21,8,30,28.1,0.84,0.1222,0.67,16,72,19,7,21.400000000000002,4,0,67,4,0.28700000000000003,66.91,87.86,0.14,987,4.1000000000000005,66,0.5 +2016,12,21,9,30,26.6,0.87,0.13670000000000002,0.67,0,0,0,0,22.200000000000003,0,0,0,0,0.28600000000000003,76.79,99.76,0.14,988,4.2,91,0.6000000000000001 +2016,12,21,10,30,25.5,0.9,0.1456,0.67,0,0,0,7,21.8,0,0,0,0,0.28500000000000003,80,110.34,0.14,989,4.3,94,0.6000000000000001 +2016,12,21,11,30,24.6,0.9400000000000001,0.14400000000000002,0.67,0,0,0,7,21.700000000000003,0,0,0,0,0.28500000000000003,83.67,119.32000000000001,0.14,989,4.1000000000000005,87,0.5 +2016,12,21,12,30,24,0.96,0.1406,0.67,0,0,0,6,21.6,0,0,0,0,0.28400000000000003,86.67,125.86,0.14,989,3.9000000000000004,87,0.4 +2016,12,21,13,30,23.5,0.98,0.13490000000000002,0.67,0,0,0,0,21.6,0,0,0,0,0.28400000000000003,89.03,129.03,0.14,988,3.7,111,0.5 +2016,12,21,14,30,23,0.99,0.12940000000000002,0.67,0,0,0,0,21.400000000000002,0,0,33,0,0.28300000000000003,90.85000000000001,128.19,0.14,988,3.6,136,0.7000000000000001 +2016,12,21,15,30,22.5,0.97,0.1262,0.67,0,0,0,7,21.1,0,0,0,0,0.281,92.08,123.52,0.14,988,3.5,143,0.9 +2016,12,21,16,30,22.1,0.9400000000000001,0.12610000000000002,0.67,0,0,0,7,21,0,0,0,0,0.28,93.37,115.86,0.14,988,3.4000000000000004,142,0.9 +2016,12,21,17,30,21.6,0.88,0.1311,0.67,0,0,0,7,20.900000000000002,0,0,17,0,0.28,95.86,106.14,0.14,989,3.4000000000000004,140,0.9 +2016,12,21,18,30,21.6,0.81,0.14170000000000002,0.67,0,0,0,7,20.8,0,0,0,0,0.279,95.33,95.07000000000001,0.14,989,3.3000000000000003,139,1.1 +2016,12,21,19,30,22.400000000000002,0.77,0.14800000000000002,0.67,47,238,76,7,20.900000000000002,47,238,100,76,0.278,91.14,83.01,0.14,990,3.3000000000000003,137,1.7000000000000002 +2016,12,21,20,30,23.900000000000002,0.74,0.1497,0.67,95,562,282,7,20.900000000000002,111,416,0,249,0.278,83.31,70.57000000000001,0.14,991,3.4000000000000004,133,2.3000000000000003 +2016,12,21,21,30,25.900000000000002,0.73,0.15510000000000002,0.67,123,721,508,3,20.3,225,91,0,274,0.279,71.35000000000001,57.69,0.14,991,3.4000000000000004,127,2.5 +2016,12,21,22,30,27.8,0.72,0.1574,0.67,142,809,719,7,19.5,251,384,0,525,0.279,60.68,44.550000000000004,0.14,991,3.5,121,2.6 +2016,12,21,23,30,28.700000000000003,0.7000000000000001,0.16290000000000002,0.67,157,859,891,7,19,412,271,0,644,0.279,55.68,31.27,0.14,991,3.5,117,2.6 +2016,12,22,0,30,30.1,0.5700000000000001,0.3946,0.67,282,719,966,7,18.5,385,59,0,441,0.279,49.86,17.990000000000002,0.12,990,3.6,109,2.6 +2016,12,22,1,30,30,0.53,0.42800000000000005,0.67,302,715,1014,7,18.1,527,133,0,659,0.278,48.870000000000005,5.63,0.12,990,3.7,106,2.7 +2016,12,22,2,30,29.400000000000002,0.48,0.4466,0.67,305,704,998,6,17.8,527,129,33,654,0.278,49.84,10.28,0.12,990,3.8000000000000003,104,2.8000000000000003 +2016,12,22,3,30,28.5,0.47000000000000003,0.42810000000000004,0.67,289,686,919,7,17.8,472,208,0,663,0.276,52.4,23.34,0.12,990,3.9000000000000004,102,2.9000000000000004 +2016,12,22,4,30,27.200000000000003,0.46,0.4141,0.67,262,648,782,7,17.8,400,224,0,580,0.275,56.59,36.64,0.12,990,3.9000000000000004,101,3 +2016,12,22,5,30,26,0.46,0.37310000000000004,0.67,215,600,602,7,17.8,287,67,0,330,0.274,60.6,49.88,0.12,990,3.9000000000000004,100,3 +2016,12,22,6,30,24.8,0.5,0.3002,0.67,157,520,394,7,17.6,196,242,0,306,0.274,64.43,62.92,0.12,991,3.8000000000000003,100,2.9000000000000004 +2016,12,22,7,30,23.700000000000003,0.54,0.2531,0.67,98,337,181,7,17.400000000000002,97,61,67,112,0.274,67.85,75.66,0.12,991,3.7,100,2.6 +2016,12,22,8,30,22.8,0.56,0.21380000000000002,0.67,16,27,17,7,17.3,12,0,67,12,0.274,70.94,87.77,0.12,992,3.6,101,2.2 +2016,12,22,9,30,22,0.5700000000000001,0.1915,0.67,0,0,0,7,17.2,0,0,0,0,0.275,74.18,99.67,0.12,992,3.6,103,1.9000000000000001 +2016,12,22,10,30,21.6,0.59,0.1774,0.67,0,0,0,6,17.1,0,0,33,0,0.277,75.71000000000001,110.26,0.12,992,3.5,106,1.9000000000000001 +2016,12,22,11,30,21.200000000000003,0.6,0.1665,0.67,0,0,0,6,17.1,0,0,0,0,0.278,77.24,119.25,0.12,992,3.4000000000000004,110,1.7000000000000002 +2016,12,22,12,30,20.900000000000002,0.64,0.1643,0.67,0,0,0,6,17,0,0,0,0,0.279,78.29,125.83,0.12,992,3.3000000000000003,115,1.5 +2016,12,22,13,30,20.700000000000003,0.66,0.1615,0.67,0,0,0,7,16.900000000000002,0,0,0,0,0.279,78.95,129.02,0.12,992,3.2,119,1.2000000000000002 +2016,12,22,14,30,20.400000000000002,0.64,0.15360000000000001,0.67,0,0,0,7,16.900000000000002,0,0,33,0,0.279,80.2,128.22,0.12,992,3.2,121,1.1 +2016,12,22,15,30,20.1,0.64,0.156,0.67,0,0,0,6,16.8,0,0,0,0,0.279,81.55,123.58,0.12,992,3.2,124,1 +2016,12,22,16,30,20,0.64,0.1595,0.67,0,0,0,7,16.8,0,0,0,0,0.279,81.97,115.94,0.12,992,3.2,127,0.9 +2016,12,22,17,30,19.8,0.63,0.1615,0.67,0,0,0,7,16.8,0,0,0,0,0.281,82.92,106.23,0.12,992,3.2,129,0.8 +2016,12,22,18,30,19.8,0.64,0.16770000000000002,0.67,0,0,0,6,16.8,0,0,0,0,0.28200000000000003,82.85000000000001,95.17,0.12,992,3.2,131,1 +2016,12,22,19,30,20.5,0.65,0.1724,0.67,49,199,73,7,16.7,44,149,100,62,0.28300000000000003,78.79,83.11,0.12,993,3.2,127,1.4000000000000001 +2016,12,22,20,30,21.8,0.65,0.17420000000000002,0.67,101,530,276,7,16.5,111,404,33,245,0.28400000000000003,71.83,70.67,0.12,994,3.2,116,1.8 +2016,12,22,21,30,23.6,0.66,0.1726,0.67,129,706,505,7,16.3,222,324,0,395,0.28500000000000003,63.550000000000004,57.800000000000004,0.12,994,3.2,105,2 +2016,12,22,22,30,25.5,0.67,0.1598,0.67,142,811,719,7,16,305,52,33,342,0.28500000000000003,55.86,44.660000000000004,0.12,993,3.2,99,2.1 +2016,12,22,23,30,26.5,0.66,0.15610000000000002,0.67,154,867,894,7,15.9,300,22,0,319,0.28500000000000003,52.08,31.38,0.12,993,3.2,98,2.2 +2016,12,23,0,30,28.1,0.68,0.153,0.67,157,903,1015,4,15.8,308,26,0,333,0.28400000000000003,47.34,18.1,0.12,993,3.3000000000000003,102,2.2 +2016,12,23,1,30,28.5,0.7000000000000001,0.1405,0.67,152,926,1073,3,15.9,274,15,0,289,0.28200000000000003,46.34,5.72,0.12,992,3.3000000000000003,100,2.4000000000000004 +2016,12,23,2,30,28.6,0.6900000000000001,0.1265,0.67,148,929,1062,3,15.9,332,49,50,380,0.28,46.12,10.18,0.12,991,3.3000000000000003,95,2.5 +2016,12,23,3,30,28.400000000000002,0.68,0.129,0.67,143,912,981,3,15.9,470,179,0,634,0.279,46.660000000000004,23.23,0.12,991,3.2,90,2.6 +2016,12,23,4,30,27.8,0.68,0.1259,0.67,133,880,840,3,15.9,278,30,0,302,0.279,48.370000000000005,36.53,0.12,991,3.2,87,2.6 +2016,12,23,5,30,26.8,0.67,0.1165,0.67,117,823,649,3,15.9,248,276,0,426,0.279,51.42,49.77,0.12,991,3.2,84,2.6 +2016,12,23,6,30,25.6,0.6900000000000001,0.116,0.67,99,718,427,3,16.1,185,66,0,215,0.28,55.7,62.82,0.12,991,3.2,82,2.5 +2016,12,23,7,30,24.200000000000003,0.71,0.1107,0.67,70,521,200,0,16.3,60,246,17,121,0.28200000000000003,61.31,75.56,0.12,991,3.2,80,2.2 +2016,12,23,8,30,23,0.72,0.1046,0.67,17,89,21,3,16.5,6,0,67,6,0.28400000000000003,66.97,87.68,0.12,992,3.2,76,1.8 +2016,12,23,9,30,22,0.75,0.10210000000000001,0.67,0,0,0,7,16.8,0,0,0,0,0.28400000000000003,72.33,99.58,0.12,992,3.1,72,1.4000000000000001 +2016,12,23,10,30,21.400000000000002,0.8,0.09530000000000001,0.67,0,0,0,7,17,0,0,0,0,0.28300000000000003,76.12,110.19,0.12,993,3,70,1.1 +2016,12,23,11,30,20.8,0.84,0.09000000000000001,0.67,0,0,0,7,17.2,0,0,0,0,0.28200000000000003,79.96000000000001,119.2,0.12,992,2.9000000000000004,71,0.9 +2016,12,23,12,30,20.400000000000002,0.87,0.08700000000000001,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.281,82.8,125.79,0.12,992,2.9000000000000004,76,0.7000000000000001 +2016,12,23,13,30,20,0.87,0.08600000000000001,0.67,0,0,0,0,17.5,0,0,0,0,0.28,85.4,129.03,0.12,991,2.8000000000000003,85,0.5 +2016,12,23,14,30,19.700000000000003,0.87,0.0879,0.67,0,0,0,0,17.5,0,0,33,0,0.279,87.2,128.25,0.12,991,2.8000000000000003,94,0.5 +2016,12,23,15,30,19.400000000000002,0.88,0.0932,0.67,0,0,0,0,17.5,0,0,0,0,0.278,88.83,123.64,0.12,990,2.8000000000000003,102,0.5 +2016,12,23,16,30,19.1,0.89,0.09730000000000001,0.67,0,0,0,0,17.5,0,0,0,0,0.278,90.64,116.02,0.12,991,2.8000000000000003,108,0.5 +2016,12,23,17,30,18.900000000000002,0.9,0.09770000000000001,0.67,0,0,0,0,17.5,0,0,0,0,0.277,91.77,106.33,0.12,991,2.8000000000000003,111,0.5 +2016,12,23,18,30,19.200000000000003,0.92,0.10010000000000001,0.67,0,0,0,0,17.5,0,0,0,0,0.277,90.17,95.28,0.12,991,2.8000000000000003,112,0.7000000000000001 +2016,12,23,19,30,20.700000000000003,0.9400000000000001,0.09910000000000001,0.67,41,324,79,0,17.6,41,324,0,79,0.277,82.67,83.22,0.12,992,2.7,108,1.2000000000000002 +2016,12,23,20,30,22.8,0.9500000000000001,0.0877,0.67,73,673,294,3,17.5,106,336,0,217,0.277,71.87,70.79,0.12,992,2.7,101,1.5 +2016,12,23,21,30,24.700000000000003,0.99,0.0679,0.67,84,840,530,3,16.900000000000002,223,101,0,277,0.277,61.92,57.910000000000004,0.12,993,2.7,97,1.6 +2016,12,23,22,30,26.400000000000002,1,0.0584,0.67,91,924,747,0,16.2,134,813,0,711,0.277,53.64,44.78,0.12,993,2.7,96,1.8 +2016,12,23,23,30,27.200000000000003,1,0.055,0.67,98,969,924,3,15.8,403,123,0,508,0.277,49.75,31.5,0.12,993,2.7,95,1.9000000000000001 +2016,12,24,0,30,29,0.86,0.0834,0.67,119,970,1040,3,15.4,398,364,0,744,0.277,43.79,18.22,0.12,992,2.7,91,2.2 +2016,12,24,1,30,29.8,0.87,0.0814,0.67,120,982,1097,0,15,286,665,0,948,0.277,40.76,5.8100000000000005,0.12,991,2.7,88,2.4000000000000004 +2016,12,24,2,30,30.200000000000003,0.86,0.079,0.67,121,977,1083,2,14.700000000000001,518,211,33,726,0.277,38.87,10.08,0.12,991,2.7,85,2.5 +2016,12,24,3,30,30.200000000000003,0.85,0.09330000000000001,0.67,124,953,1000,0,14.4,124,953,0,1000,0.278,38.26,23.12,0.12,990,2.7,82,2.7 +2016,12,24,4,30,29.6,0.85,0.0946,0.67,117,918,856,7,14.4,335,471,0,714,0.278,39.43,36.43,0.12,989,2.7,79,2.7 +2016,12,24,5,30,28.700000000000003,0.84,0.0976,0.67,109,856,663,7,14.4,276,374,0,518,0.278,41.63,49.67,0.12,989,2.7,78,2.7 +2016,12,24,6,30,27.3,0.8200000000000001,0.10350000000000001,0.67,96,744,437,0,14.5,122,606,0,400,0.279,45.6,62.72,0.12,990,2.6,76,2.6 +2016,12,24,7,30,25.5,0.8,0.1115,0.67,72,530,205,0,14.8,75,461,17,191,0.279,51.730000000000004,75.46000000000001,0.12,990,2.6,74,2.2 +2016,12,24,8,30,23.700000000000003,0.79,0.1189,0.67,18,87,22,0,15.4,18,87,0,22,0.279,59.64,87.59,0.12,991,2.6,70,1.8 +2016,12,24,9,30,22.6,0.79,0.12390000000000001,0.67,0,0,0,0,16,0,0,0,0,0.279,66.25,99.5,0.12,991,2.5,69,1.6 +2016,12,24,10,30,21.8,0.79,0.1254,0.67,0,0,0,7,16.3,0,0,0,0,0.279,70.86,110.12,0.12,992,2.5,69,1.4000000000000001 +2016,12,24,11,30,21.1,0.8,0.1246,0.67,0,0,0,7,16.5,0,0,0,0,0.279,75.17,119.15,0.12,992,2.4000000000000004,69,1.2000000000000002 +2016,12,24,12,30,20.5,0.8,0.1213,0.67,0,0,0,3,16.8,0,0,0,0,0.279,79.13,125.77,0.12,991,2.4000000000000004,70,0.9 +2016,12,24,13,30,19.900000000000002,0.78,0.1143,0.67,0,0,0,7,16.900000000000002,0,0,0,0,0.28,83.05,129.04,0.12,991,2.3000000000000003,72,0.7000000000000001 +2016,12,24,14,30,19.3,0.78,0.1081,0.67,0,0,0,0,17,0,0,33,0,0.281,86.61,128.3,0.12,990,2.2,79,0.6000000000000001 +2016,12,24,15,30,18.900000000000002,0.78,0.1015,0.67,0,0,0,0,17.1,0,0,0,0,0.28200000000000003,89.09,123.71000000000001,0.12,990,2.2,94,0.6000000000000001 +2016,12,24,16,30,18.400000000000002,0.79,0.0966,0.67,0,0,0,0,17.1,0,0,0,0,0.28300000000000003,92.19,116.11,0.12,990,2.1,111,0.5 +2016,12,24,17,30,18.1,0.8,0.0918,0.67,0,0,0,0,17.2,0,0,0,0,0.28400000000000003,94.22,106.43,0.12,990,2.1,123,0.6000000000000001 +2016,12,24,18,30,18.3,0.8200000000000001,0.08560000000000001,0.67,0,0,0,0,17.2,0,0,0,0,0.28500000000000003,93.17,95.38,0.12,991,2.1,128,0.8 +2016,12,24,19,30,19.900000000000002,0.8300000000000001,0.08030000000000001,0.67,40,356,81,0,17.2,40,356,8,81,0.28500000000000003,84.38,83.33,0.12,991,2.1,122,1.2000000000000002 +2016,12,24,20,30,22.3,0.86,0.0737,0.67,70,697,298,0,17,68,642,0,278,0.28400000000000003,72.09,70.9,0.12,992,2.2,107,1.6 +2016,12,24,21,30,24.400000000000002,0.91,0.06620000000000001,0.67,84,846,532,3,16.400000000000002,196,185,0,294,0.28400000000000003,60.97,58.03,0.12,992,2.4000000000000004,95,1.9000000000000001 +2016,12,24,22,30,26.200000000000003,0.93,0.0621,0.67,94,921,746,3,15.700000000000001,295,272,0,488,0.28300000000000003,52.550000000000004,44.89,0.12,992,2.6,87,2.1 +2016,12,24,23,30,27.1,0.92,0.061500000000000006,0.67,102,962,921,3,15.600000000000001,426,127,0,534,0.28300000000000003,49.31,31.61,0.12,992,2.7,84,2.2 +2016,12,25,0,30,28.400000000000002,0.87,0.068,0.67,110,971,1032,3,15.9,253,14,0,266,0.28200000000000003,46.7,18.34,0.13,991,3.2,80,2.7 +2016,12,25,1,30,28.400000000000002,0.81,0.07390000000000001,0.67,118,969,1082,8,16.5,240,12,0,252,0.28200000000000003,48.5,5.91,0.13,991,3.5,78,3 +2016,12,25,2,30,27.700000000000003,0.73,0.0845,0.67,126,951,1063,7,17.1,368,46,33,413,0.28200000000000003,52.550000000000004,9.99,0.13,990,3.7,76,3.2 +2016,12,25,3,30,26.700000000000003,0.68,0.10540000000000001,0.67,131,920,978,7,17.6,324,50,0,370,0.281,57.410000000000004,23.02,0.13,990,3.8000000000000003,75,3.2 +2016,12,25,4,30,25.5,0.64,0.1126,0.67,127,880,836,6,17.900000000000002,296,36,0,325,0.28,62.95,36.32,0.13,990,3.8000000000000003,74,3.1 +2016,12,25,5,30,24.400000000000002,0.59,0.1096,0.67,115,820,647,6,18.1,269,45,0,298,0.279,68.12,49.56,0.13,990,3.8000000000000003,73,2.8000000000000003 +2016,12,25,6,30,23.400000000000002,0.58,0.11170000000000001,0.67,99,710,426,7,18.3,201,204,0,295,0.278,73.12,62.620000000000005,0.13,991,3.7,73,2.4000000000000004 +2016,12,25,7,30,22.5,0.56,0.116,0.67,73,501,200,7,18.6,88,8,67,90,0.278,78.56,75.37,0.13,991,3.6,73,1.9000000000000001 +2016,12,25,8,30,21.6,0.54,0.11660000000000001,0.67,19,76,22,7,19.1,9,0,67,9,0.278,85.47,87.51,0.13,992,3.5,75,1.6 +2016,12,25,9,30,21,0.53,0.1119,0.67,0,0,0,0,19.3,0,0,0,0,0.279,90.27,99.42,0.13,992,3.3000000000000003,76,1.4000000000000001 +2016,12,25,10,30,20.6,0.53,0.1041,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.28,93.08,110.06,0.13,993,3.1,76,1.3 +2016,12,25,11,30,20.400000000000002,0.55,0.09730000000000001,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.28,93.83,119.10000000000001,0.13,993,2.9000000000000004,78,1.2000000000000002 +2016,12,25,12,30,20.1,0.5700000000000001,0.0925,0.67,0,0,0,0,19.200000000000003,0,0,0,0,0.28,94.76,125.76,0.13,992,2.7,81,1.1 +2016,12,25,13,30,19.8,0.6,0.08320000000000001,0.67,0,0,0,0,19,0,0,0,0,0.279,95.2,129.05,0.13,992,2.5,84,0.9 +2016,12,25,14,30,19.5,0.62,0.0789,0.67,0,0,0,0,18.7,0,0,33,0,0.277,95.29,128.35,0.13,991,2.4000000000000004,90,0.8 +2016,12,25,15,30,19.200000000000003,0.66,0.0766,0.67,0,0,0,0,18.5,0,0,0,0,0.276,95.60000000000001,123.79,0.13,991,2.4000000000000004,96,0.8 +2016,12,25,16,30,19,0.6900000000000001,0.0747,0.67,0,0,0,0,18.3,0,0,0,0,0.276,95.49,116.21000000000001,0.13,991,2.4000000000000004,100,0.8 +2016,12,25,17,30,18.900000000000002,0.72,0.0708,0.67,0,0,0,0,18.1,0,0,0,0,0.275,94.84,106.53,0.13,991,2.4000000000000004,103,0.8 +2016,12,25,18,30,19.1,0.77,0.0656,0.67,0,0,0,0,17.8,0,0,0,0,0.275,92.45,95.5,0.13,991,2.4000000000000004,104,0.9 +2016,12,25,19,30,20.1,0.8200000000000001,0.0614,0.67,36,383,80,0,18.2,33,343,8,72,0.275,88.69,83.44,0.13,992,2.4000000000000004,102,1.3 +2016,12,25,20,30,21.700000000000003,0.86,0.0558,0.67,64,721,298,3,18.6,73,241,25,151,0.274,82.58,71.02,0.13,992,2.4000000000000004,96,1.9000000000000001 +2016,12,25,21,30,23.700000000000003,0.9400000000000001,0.0463,0.67,75,870,534,0,18.1,75,870,0,534,0.273,71.04,58.14,0.13,992,2.4000000000000004,91,2.3000000000000003 +2016,12,25,22,30,25.700000000000003,0.98,0.041800000000000004,0.67,84,944,751,3,16.8,248,388,0,522,0.273,57.870000000000005,45.01,0.13,992,2.4000000000000004,88,2.5 +2016,12,25,23,30,26.6,0.9500000000000001,0.0426,0.67,90,985,928,0,16.1,224,639,0,767,0.273,52.59,31.73,0.13,992,2.5,86,2.5 +2016,12,26,0,30,28.6,0.66,0.0649,0.67,111,986,1046,3,15.8,421,75,0,492,0.273,45.800000000000004,18.45,0.13,991,2.5,82,2.7 +2016,12,26,1,30,29.400000000000002,0.65,0.0649,0.67,112,996,1103,3,15.5,237,12,0,249,0.273,42.96,6.0200000000000005,0.13,990,2.6,79,2.9000000000000004 +2016,12,26,2,30,29.700000000000003,0.63,0.06420000000000001,0.67,116,988,1089,3,15.3,394,31,33,425,0.273,41.78,9.9,0.13,990,2.6,78,3.1 +2016,12,26,3,30,29.400000000000002,0.52,0.0829,0.67,121,960,1005,0,15.4,210,787,0,935,0.273,42.58,22.92,0.13,989,2.6,77,3.2 +2016,12,26,4,30,28.700000000000003,0.51,0.08460000000000001,0.67,114,927,862,0,15.5,114,927,0,862,0.273,44.78,36.22,0.13,989,2.6,77,3.2 +2016,12,26,5,30,27.6,0.5,0.079,0.67,100,878,671,0,15.700000000000001,100,878,0,671,0.273,48.21,49.46,0.13,989,2.6,77,3.2 +2016,12,26,6,30,26.200000000000003,0.53,0.0702,0.67,84,790,448,0,15.8,84,790,0,448,0.272,52.75,62.53,0.13,989,2.6,76,3 +2016,12,26,7,30,24.6,0.54,0.0669,0.67,61,607,215,0,16.1,61,607,0,215,0.272,59.31,75.28,0.13,990,2.5,75,2.6 +2016,12,26,8,30,23,0.54,0.0639,0.67,19,140,25,3,16.8,10,0,67,10,0.272,68.07000000000001,87.43,0.13,991,2.5,74,1.9000000000000001 +2016,12,26,9,30,21.900000000000002,0.54,0.0646,0.67,0,0,0,0,17.5,0,0,0,0,0.273,76.33,99.35000000000001,0.13,991,2.4000000000000004,73,1.3 +2016,12,26,10,30,21.200000000000003,0.55,0.061500000000000006,0.67,0,0,0,0,17.900000000000002,0,0,0,0,0.273,81.67,110,0.13,992,2.3000000000000003,72,1 +2016,12,26,11,30,20.8,0.58,0.059000000000000004,0.67,0,0,0,0,18.1,0,0,0,0,0.274,84.31,119.07000000000001,0.13,992,2.2,74,0.9 +2016,12,26,12,30,20.5,0.6,0.0608,0.67,0,0,0,0,18,0,0,0,0,0.275,85.63,125.75,0.13,991,2.2,76,0.8 +2016,12,26,13,30,20.200000000000003,0.62,0.061500000000000006,0.67,0,0,0,0,17.900000000000002,0,0,0,0,0.275,86.7,129.08,0.13,991,2.1,77,0.8 +2016,12,26,14,30,20,0.63,0.0587,0.67,0,0,0,0,17.8,0,0,33,0,0.275,86.94,128.41,0.13,990,2.1,80,0.7000000000000001 +2016,12,26,15,30,19.700000000000003,0.65,0.0591,0.67,0,0,0,0,17.6,0,0,0,0,0.275,87.89,123.88000000000001,0.13,990,2,83,0.7000000000000001 +2016,12,26,16,30,19.400000000000002,0.66,0.0587,0.67,0,0,0,0,17.5,0,0,0,0,0.274,88.84,116.31,0.13,990,2,87,0.7000000000000001 +2016,12,26,17,30,19.1,0.67,0.0562,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.273,89.65,106.65,0.13,990,2,90,0.6000000000000001 +2016,12,26,18,30,19.400000000000002,0.68,0.055900000000000005,0.67,0,0,0,0,17.2,0,0,0,0,0.272,87.02,95.61,0.13,990,1.9000000000000001,93,0.8 +2016,12,26,19,30,20.700000000000003,0.68,0.0563,0.67,36,389,80,0,17.2,36,389,0,80,0.271,80.54,83.56,0.13,991,2,94,1.2000000000000002 +2016,12,26,20,30,22.900000000000002,0.67,0.0546,0.67,65,723,299,0,16.900000000000002,65,723,0,299,0.27,68.84,71.14,0.13,991,2,88,1.7000000000000002 +2016,12,26,21,30,24.900000000000002,0.67,0.0522,0.67,79,868,536,0,16.2,93,812,0,520,0.269,58.56,58.26,0.13,992,2,85,2 +2016,12,26,22,30,26.700000000000003,0.6900000000000001,0.0497,0.67,90,943,755,3,15.9,236,372,0,498,0.269,51.57,45.13,0.13,992,2.1,84,2.1 +2016,12,26,23,30,27.6,0.71,0.0471,0.67,95,988,934,0,15.700000000000001,95,988,0,934,0.268,48.39,31.85,0.13,992,2.1,84,2.2 +2016,12,27,0,30,29.400000000000002,0.65,0.0511,0.67,101,1005,1054,0,15.600000000000001,198,797,0,954,0.268,43.1,18.57,0.13,991,2.2,80,2.6 +2016,12,27,1,30,30.200000000000003,0.63,0.0512,0.67,106,1012,1112,0,15.4,178,873,0,1046,0.267,40.660000000000004,6.13,0.13,990,2.3000000000000003,77,2.8000000000000003 +2016,12,27,2,30,30.400000000000002,0.59,0.054200000000000005,0.67,112,999,1096,0,15.4,112,999,33,1096,0.267,40.27,9.82,0.13,989,2.4000000000000004,75,3 +2016,12,27,3,30,30.1,0.43,0.081,0.67,122,963,1010,0,15.600000000000001,122,963,0,1010,0.267,41.480000000000004,22.82,0.13,989,2.4000000000000004,75,3.1 +2016,12,27,4,30,29.5,0.4,0.0873,0.67,119,924,865,0,15.9,119,924,0,865,0.266,43.7,36.12,0.13,989,2.5,76,3.1 +2016,12,27,5,30,28.5,0.39,0.08940000000000001,0.67,108,867,673,0,16.1,108,867,0,673,0.266,46.96,49.370000000000005,0.13,989,2.4000000000000004,76,3 +2016,12,27,6,30,27.200000000000003,0.4,0.0863,0.67,91,772,448,0,16.1,91,772,0,448,0.265,50.79,62.43,0.13,989,2.4000000000000004,75,2.8000000000000003 +2016,12,27,7,30,25.6,0.41000000000000003,0.0801,0.67,67,584,216,0,16.2,67,584,0,216,0.264,56.18,75.19,0.13,990,2.3000000000000003,74,2.4000000000000004 +2016,12,27,8,30,23.900000000000002,0.42,0.0806,0.67,20,118,25,0,16.7,20,118,0,25,0.263,63.92,87.36,0.13,990,2.2,73,1.8 +2016,12,27,9,30,22.700000000000003,0.42,0.0835,0.67,0,0,0,0,17.400000000000002,0,0,0,0,0.262,71.89,99.28,0.13,991,2.1,72,1.4000000000000001 +2016,12,27,10,30,22,0.41000000000000003,0.0839,0.67,0,0,0,0,17.8,0,0,0,0,0.261,77.05,109.95,0.13,991,2.1,72,1.2000000000000002 +2016,12,27,11,30,21.400000000000002,0.41000000000000003,0.08120000000000001,0.67,0,0,0,0,18.1,0,0,0,0,0.261,81.52,119.04,0.13,991,2,73,1 +2016,12,27,12,30,20.900000000000002,0.45,0.07830000000000001,0.67,0,0,0,0,18.3,0,0,0,0,0.261,84.84,125.74000000000001,0.13,991,2,75,0.9 +2016,12,27,13,30,20.6,0.49,0.0737,0.67,0,0,0,0,18.3,0,0,0,0,0.26,86.57000000000001,129.11,0.13,991,2,77,0.9 +2016,12,27,14,30,20.3,0.52,0.0679,0.67,0,0,0,0,18.2,0,0,33,0,0.259,87.58,128.47,0.13,990,1.9000000000000001,80,0.9 +2016,12,27,15,30,20,0.56,0.0618,0.67,0,0,0,0,18,0,0,0,0,0.259,88.35000000000001,123.97,0.13,989,1.9000000000000001,83,0.8 +2016,12,27,16,30,19.700000000000003,0.62,0.0546,0.67,0,0,0,0,17.900000000000002,0,0,0,0,0.26,89.12,116.42,0.13,989,1.8,87,0.7000000000000001 +2016,12,27,17,30,19.400000000000002,0.67,0.0492,0.67,0,0,0,0,17.7,0,0,0,0,0.261,89.74,106.76,0.13,989,1.8,89,0.7000000000000001 +2016,12,27,18,30,19.6,0.71,0.0466,0.67,0,0,0,0,17.5,0,0,0,0,0.262,87.7,95.73,0.13,990,1.7000000000000002,92,0.9 +2016,12,27,19,30,21.1,0.76,0.0444,0.67,34,426,81,0,17.400000000000002,34,426,0,81,0.262,79.26,83.68,0.13,990,1.7000000000000002,94,1.4000000000000001 +2016,12,27,20,30,23.200000000000003,0.8,0.0405,0.67,59,760,303,0,16.5,59,760,0,303,0.263,65.8,71.26,0.13,991,1.7000000000000002,93,1.9000000000000001 +2016,12,27,21,30,25,0.85,0.0371,0.67,72,902,545,0,15.200000000000001,72,902,0,545,0.263,54.46,58.38,0.13,991,1.6,90,2 +2016,12,27,22,30,26.700000000000003,0.9,0.033800000000000004,0.67,79,974,765,0,14.4,101,906,0,739,0.263,46.82,45.25,0.13,991,1.7000000000000002,88,2.1 +2016,12,27,23,30,27.5,0.9,0.0325,0.67,85,1015,946,0,13.8,85,1015,0,946,0.263,43,31.970000000000002,0.13,991,1.7000000000000002,86,2.2 +2016,12,28,0,30,29.6,0.63,0.0482,0.67,101,1020,1067,0,13.4,163,910,0,1025,0.262,37.07,18.7,0.13,990,1.8,80,2.4000000000000004 +2016,12,28,1,30,30.5,0.61,0.047400000000000005,0.67,103,1028,1125,0,13.200000000000001,103,1028,0,1125,0.262,34.76,6.24,0.13,989,1.9000000000000001,77,2.5 +2016,12,28,2,30,30.900000000000002,0.59,0.047,0.67,107,1018,1110,0,13.200000000000001,178,882,33,1047,0.261,33.87,9.74,0.13,988,2,75,2.6 +2016,12,28,3,30,30.8,0.44,0.0663,0.67,113,986,1022,0,13.600000000000001,113,986,0,1022,0.261,35,22.72,0.13,988,2.1,73,2.8000000000000003 +2016,12,28,4,30,30.200000000000003,0.41000000000000003,0.0707,0.67,110,946,875,0,14.3,110,946,0,875,0.262,37.96,36.03,0.13,987,2.2,72,2.8000000000000003 +2016,12,28,5,30,29.200000000000003,0.39,0.0755,0.67,103,882,679,0,15.100000000000001,103,882,0,679,0.262,42.4,49.27,0.13,987,2.3000000000000003,72,2.9000000000000004 +2016,12,28,6,30,27.8,0.37,0.08080000000000001,0.67,91,774,450,0,15.9,91,774,0,450,0.262,48.5,62.34,0.13,988,2.4000000000000004,71,2.8000000000000003 +2016,12,28,7,30,26,0.37,0.0835,0.67,68,575,216,0,16.8,68,575,0,216,0.263,56.74,75.11,0.13,989,2.5,71,2.5 +2016,12,28,8,30,24.3,0.37,0.07980000000000001,0.67,19,117,25,0,17.6,19,117,0,25,0.263,66.33,87.29,0.13,989,2.5,70,2 +2016,12,28,9,30,23.1,0.39,0.07880000000000001,0.67,0,0,0,0,18.5,0,0,0,0,0.263,75.15,99.22,0.13,990,2.5,68,1.6 +2016,12,28,10,30,22.400000000000002,0.42,0.0785,0.67,0,0,0,0,19,0,0,0,0,0.263,81.14,109.9,0.13,990,2.5,65,1.4000000000000001 +2016,12,28,11,30,21.900000000000002,0.43,0.0784,0.67,0,0,0,0,19.400000000000002,0,0,0,0,0.263,85.59,119.01,0.13,990,2.4000000000000004,61,1.2000000000000002 +2016,12,28,12,30,21.5,0.45,0.0826,0.67,0,0,0,0,19.6,0,0,0,0,0.262,89,125.75,0.13,990,2.4000000000000004,56,1 +2016,12,28,13,30,21.200000000000003,0.46,0.0849,0.67,0,0,0,0,19.700000000000003,0,0,0,0,0.261,91.4,129.15,0.13,989,2.3000000000000003,52,0.9 +2016,12,28,14,30,20.900000000000002,0.44,0.0816,0.67,0,0,0,0,19.8,0,0,33,0,0.261,93.46000000000001,128.55,0.13,988,2.3000000000000003,47,0.8 +2016,12,28,15,30,20.6,0.49,0.0854,0.67,0,0,0,0,19.8,0,0,0,0,0.261,95.32000000000001,124.06,0.13,988,2.2,41,0.7000000000000001 +2016,12,28,16,30,20.400000000000002,0.51,0.0852,0.67,0,0,0,0,19.8,0,0,0,0,0.261,96.47,116.53,0.13,988,2.2,36,0.6000000000000001 +2016,12,28,17,30,20.200000000000003,0.49,0.0786,0.67,0,0,0,0,19.8,0,0,0,0,0.261,97.57000000000001,106.88,0.13,988,2.1,35,0.6000000000000001 +2016,12,28,18,30,20.400000000000002,0.54,0.0818,0.67,0,0,0,0,19.8,0,0,0,0,0.261,96.21000000000001,95.85000000000001,0.13,988,2.1,33,0.7000000000000001 +2016,12,28,19,30,21.700000000000003,0.58,0.0806,0.67,39,328,74,0,19.8,39,328,0,74,0.262,88.84,83.8,0.13,989,2.1,31,1.1 +2016,12,28,20,30,23.8,0.6,0.064,0.67,67,705,292,0,19.400000000000002,67,705,0,292,0.262,76.23,71.38,0.13,989,2.1,29,1.4000000000000001 +2016,12,28,21,30,25.900000000000002,0.64,0.0511,0.67,78,867,531,0,18.5,78,867,0,531,0.262,63.84,58.51,0.13,989,2.1,33,1.3 +2016,12,28,22,30,28,0.68,0.0434,0.67,85,950,752,0,17.3,85,950,0,752,0.261,52.22,45.37,0.13,989,2.1,40,1.2000000000000002 +2016,12,28,23,30,29.1,0.7000000000000001,0.0407,0.67,91,994,933,0,15.8,142,850,0,862,0.26,44.68,32.1,0.13,989,2.1,45,1.2000000000000002 +2016,12,29,0,30,31.400000000000002,0.66,0.0454,0.67,98,1012,1056,0,14.700000000000001,98,1012,0,1056,0.258,36.44,18.82,0.13,987,2.2,56,1.3 +2016,12,29,1,30,32.5,0.67,0.045700000000000005,0.67,100,1022,1116,3,14,372,434,0,803,0.257,32.74,6.36,0.13,986,2.2,60,1.5 +2016,12,29,2,30,33.1,0.67,0.046400000000000004,0.67,101,1017,1104,2,13.700000000000001,470,134,33,602,0.256,30.89,9.66,0.13,985,2.2,61,1.7000000000000002 +2016,12,29,3,30,33.2,0.61,0.053700000000000005,0.67,103,996,1022,3,13.600000000000001,350,320,0,645,0.255,30.650000000000002,22.63,0.13,984,2.3000000000000003,60,1.9000000000000001 +2016,12,29,4,30,32.9,0.6,0.0557,0.67,99,962,878,0,13.9,223,606,0,714,0.255,31.69,35.93,0.13,983,2.4000000000000004,59,2.2 +2016,12,29,5,30,31.900000000000002,0.6,0.058100000000000006,0.67,91,907,684,0,14.3,91,907,8,684,0.254,34.44,49.18,0.13,983,2.4000000000000004,57,2.5 +2016,12,29,6,30,30.3,0.61,0.0572,0.67,78,815,457,0,14.9,78,815,0,457,0.253,39.31,62.26,0.13,983,2.5,54,2.7 +2016,12,29,7,30,28.1,0.62,0.057,0.67,58,634,222,0,15.8,58,634,0,222,0.252,47.31,75.03,0.13,984,2.6,51,2.6 +2016,12,29,8,30,25.8,0.63,0.056400000000000006,0.67,19,162,27,0,17,19,162,0,27,0.252,58.36,87.22,0.13,985,2.6,49,2.3000000000000003 +2016,12,29,9,30,24.200000000000003,0.65,0.055900000000000005,0.67,0,0,0,0,18,0,0,0,0,0.252,68.19,99.16,0.13,985,2.6,46,2 +2016,12,29,10,30,23.1,0.67,0.0557,0.67,0,0,0,0,18.5,0,0,0,0,0.252,75.19,109.86,0.13,986,2.6,42,1.8 +2016,12,29,11,30,22.3,0.7000000000000001,0.056600000000000004,0.67,0,0,0,0,18.7,0,0,0,0,0.252,80.29,118.99000000000001,0.13,986,2.6,36,1.3 +2016,12,29,12,30,21.700000000000003,0.72,0.0587,0.67,0,0,0,0,18.900000000000002,0,0,0,0,0.253,84.19,125.76,0.13,985,2.6,28,0.9 +2016,12,29,13,30,21.1,0.73,0.0616,0.67,0,0,0,0,19,0,0,0,0,0.253,87.92,129.2,0.13,985,2.7,15,0.7000000000000001 +2016,12,29,14,30,20.6,0.75,0.06430000000000001,0.67,0,0,0,0,19,0,0,33,0,0.253,90.82000000000001,128.63,0.13,984,2.7,183,0.5 +2016,12,29,15,30,20.200000000000003,0.76,0.06720000000000001,0.67,0,0,0,0,19.1,0,0,0,0,0.254,93.28,124.17,0.13,984,2.7,352,0.5 +2016,12,29,16,30,19.8,0.77,0.0694,0.67,0,0,0,0,19.1,0,0,0,0,0.254,95.76,116.65,0.13,984,2.7,342,0.5 +2016,12,29,17,30,19.5,0.78,0.0707,0.67,0,0,0,0,19.1,0,0,0,0,0.255,97.42,107.01,0.13,984,2.7,333,0.5 +2016,12,29,18,30,19.6,0.8,0.0731,0.67,0,0,0,0,19,0,0,0,0,0.255,96.41,95.98,0.13,984,2.7,326,0.7000000000000001 +2016,12,29,19,30,21.200000000000003,0.8200000000000001,0.0758,0.67,37,326,71,0,19,37,326,0,71,0.255,87.11,83.93,0.13,985,2.7,329,1.1 +2016,12,29,20,30,23.900000000000002,0.85,0.07350000000000001,0.67,68,678,283,0,19.1,68,678,0,283,0.256,74.7,71.51,0.13,985,2.7,337,1.5 +2016,12,29,21,30,26.700000000000003,0.89,0.0659,0.67,83,838,519,0,19,83,838,0,519,0.256,62.690000000000005,58.63,0.13,985,2.7,343,1.5 +2016,12,29,22,30,29.3,0.91,0.0597,0.67,93,922,739,0,18,93,922,0,739,0.256,50.730000000000004,45.5,0.13,984,2.6,350,1.2000000000000002 +2016,12,29,23,30,30.6,0.92,0.057100000000000005,0.67,98,969,918,0,17.1,98,969,0,918,0.256,44.26,32.22,0.13,984,2.6,354,1.1 +2016,12,30,0,30,33.4,0.66,0.0757,0.67,116,976,1039,0,16.400000000000002,116,976,0,1039,0.257,36.17,18.94,0.13,983,2.6,29,1 +2016,12,30,1,30,34.6,0.67,0.0737,0.67,117,989,1100,0,15.700000000000001,117,989,0,1100,0.257,32.38,6.49,0.13,982,2.6,44,1.3 +2016,12,30,2,30,35.300000000000004,0.67,0.0728,0.67,118,985,1089,0,15,118,985,33,1089,0.257,29.86,9.6,0.13,981,2.7,49,1.6 +2016,12,30,3,30,35.4,0.64,0.079,0.67,118,964,1008,0,14.700000000000001,270,629,0,851,0.258,29.11,22.54,0.13,980,2.7,50,2 +2016,12,30,4,30,35,0.62,0.0805,0.67,112,929,865,0,14.8,185,726,0,774,0.258,29.900000000000002,35.84,0.13,980,2.8000000000000003,50,2.3000000000000003 +2016,12,30,5,30,34,0.61,0.0826,0.67,103,869,672,0,15.100000000000001,123,731,0,602,0.258,32.32,49.1,0.13,980,2.9000000000000004,50,2.6 +2016,12,30,6,30,32.4,0.59,0.08420000000000001,0.67,89,767,447,0,15.9,89,767,0,447,0.257,37.08,62.18,0.13,980,3,49,2.9000000000000004 +2016,12,30,7,30,30,0.58,0.08510000000000001,0.67,67,570,215,0,17.2,67,570,0,215,0.257,46.17,74.96000000000001,0.13,981,3.1,47,2.8000000000000003 +2016,12,30,8,30,27.6,0.56,0.0872,0.67,20,116,26,0,19,20,116,0,26,0.257,59.44,87.16,0.13,982,3.2,44,2.5 +2016,12,30,9,30,26,0.55,0.0908,0.67,0,0,0,0,20.400000000000002,0,0,0,0,0.258,71.07000000000001,99.11,0.13,983,3.4000000000000004,40,2.2 +2016,12,30,10,30,25.1,0.54,0.0954,0.67,0,0,0,0,21.1,0,0,0,0,0.258,78.28,109.82000000000001,0.13,983,3.5,36,1.9000000000000001 +2016,12,30,11,30,24.6,0.55,0.1,0.67,0,0,0,0,21.400000000000002,0,0,0,0,0.258,82.54,118.98,0.13,984,3.6,30,1.6 +2016,12,30,12,30,24.200000000000003,0.5700000000000001,0.1042,0.67,0,0,0,0,21.5,0,0,0,0,0.259,85.12,125.78,0.13,983,3.7,24,1.3 +2016,12,30,13,30,23.8,0.58,0.1066,0.67,0,0,0,0,21.6,0,0,0,0,0.259,87.44,129.25,0.13,983,3.8000000000000003,18,1 +2016,12,30,14,30,23.400000000000002,0.6,0.10590000000000001,0.67,0,0,0,0,21.6,0,0,33,0,0.259,89.65,128.71,0.13,983,3.9000000000000004,11,0.7000000000000001 +2016,12,30,15,30,23,0.63,0.10590000000000001,0.67,0,0,0,0,21.6,0,0,0,0,0.26,91.79,124.28,0.13,982,3.9000000000000004,182,0.6000000000000001 +2016,12,30,16,30,22.700000000000003,0.67,0.1082,0.67,0,0,0,0,21.6,0,0,0,0,0.261,93.49,116.77,0.13,982,4,352,0.6000000000000001 +2016,12,30,17,30,22.5,0.72,0.109,0.67,0,0,0,0,21.6,0,0,0,0,0.262,94.61,107.13,0.13,983,4,343,0.6000000000000001 +2016,12,30,18,30,22.6,0.79,0.11180000000000001,0.67,0,0,0,0,21.5,0,0,0,0,0.263,93.75,96.11,0.13,983,4,334,0.8 +2016,12,30,19,30,23.900000000000002,0.85,0.1135,0.67,39,245,64,0,21.5,39,245,0,64,0.263,86.27,84.06,0.13,983,4,326,1.3 +2016,12,30,20,30,26.1,0.9,0.1091,0.67,77,602,267,0,21.200000000000003,77,602,0,267,0.263,74.60000000000001,71.64,0.13,984,3.9000000000000004,321,1.6 +2016,12,30,21,30,28.6,0.9400000000000001,0.1022,0.67,97,771,497,0,20.8,97,771,0,497,0.263,62.870000000000005,58.76,0.13,983,3.9000000000000004,319,1.6 +2016,12,30,22,30,31.200000000000003,0.96,0.0981,0.67,109,862,712,0,20.400000000000002,109,862,0,712,0.263,52.64,45.63,0.13,983,3.9000000000000004,319,1.4000000000000001 +2016,12,30,23,30,32.5,0.96,0.0956,0.67,118,914,890,0,19.8,118,914,0,890,0.263,47.27,32.35,0.13,983,3.8000000000000003,320,1.3 +2016,12,31,0,30,35.4,0.97,0.0857,0.67,118,950,1016,0,19.200000000000003,118,950,0,1016,0.262,38.63,19.07,0.13,981,3.8000000000000003,340,0.9 +2016,12,31,1,30,36.7,0.97,0.08660000000000001,0.67,120,962,1076,0,18.5,120,962,0,1076,0.261,34.480000000000004,6.62,0.13,980,3.7,187,0.9 +2016,12,31,2,30,37.4,0.96,0.0898,0.67,134,942,1063,0,17.900000000000002,134,942,33,1063,0.261,32.04,9.53,0.13,979,3.7,30,1.2000000000000002 +2016,12,31,3,30,37.6,0.86,0.1506,0.67,154,890,976,0,17.8,154,890,0,976,0.26,31.35,22.46,0.13,979,3.8000000000000003,41,1.5 +2016,12,31,4,30,37.1,0.8300000000000001,0.1589,0.67,149,846,836,0,17.8,149,846,0,836,0.259,32.27,35.76,0.13,978,3.8000000000000003,46,1.8 +2016,12,31,5,30,36.1,0.8300000000000001,0.1683,0.67,141,769,645,0,18,141,769,0,645,0.259,34.410000000000004,49.01,0.13,978,3.9000000000000004,49,2.1 +2016,12,31,6,30,34.5,0.8200000000000001,0.1835,0.67,124,641,424,0,18.3,124,641,0,424,0.259,38.47,62.1,0.13,978,4,49,2.4000000000000004 +2016,12,31,7,30,32.6,0.81,0.1925,0.67,90,419,199,0,19,90,419,0,199,0.258,44.75,74.89,0.13,979,4.1000000000000005,47,2.4000000000000004 +2016,12,31,8,30,30.6,0.79,0.2008,0.67,22,54,25,0,20.1,22,54,0,25,0.258,53.64,87.11,0.13,980,4.2,44,2.1 +2016,12,31,9,30,29.200000000000003,0.77,0.2156,0.67,0,0,0,0,20.900000000000002,0,0,0,0,0.258,61.15,99.06,0.13,981,4.3,39,2 +2016,12,31,10,30,28.3,0.76,0.2353,0.67,0,0,0,3,21.3,0,0,0,0,0.257,65.82000000000001,109.79,0.13,981,4.4,32,1.9000000000000001 +2016,12,31,11,30,27.6,0.75,0.2459,0.67,0,0,0,3,21.5,0,0,0,0,0.256,69.27,118.98,0.13,982,4.4,24,1.7000000000000002 +2016,12,31,12,30,27.1,0.74,0.24130000000000001,0.67,0,0,0,3,21.5,0,0,0,0,0.255,71.47,125.81,0.13,981,4.4,13,1.5 +2016,12,31,13,30,26.6,0.74,0.2281,0.67,0,0,0,3,21.5,0,0,0,0,0.254,73.51,129.31,0.13,981,4.3,182,1.3 +2016,12,31,14,30,26.1,0.76,0.2124,0.67,0,0,0,0,21.400000000000002,0,0,33,0,0.254,75.39,128.81,0.13,981,4.2,350,1.2000000000000002 +2016,12,31,15,30,25.5,0.77,0.2006,0.67,0,0,0,0,21.3,0,0,0,0,0.254,77.56,124.4,0.13,981,4.2,340,1.1 +2016,12,31,16,30,25,0.8,0.1913,0.67,0,0,0,0,21.3,0,0,8,0,0.255,79.72,116.9,0.13,981,4.2,335,0.9 +2016,12,31,17,30,24.5,0.8200000000000001,0.1826,0.67,0,0,0,3,21.3,0,0,0,0,0.257,82.25,107.27,0.13,981,4.2,333,0.7000000000000001 +2016,12,31,18,30,24.400000000000002,0.85,0.1753,0.67,0,0,0,0,21.3,0,0,0,0,0.258,83.03,96.25,0.13,982,4.2,333,0.7000000000000001 +2016,12,31,19,30,25.200000000000003,0.87,0.1699,0.67,41,176,59,0,21.400000000000002,41,176,0,59,0.259,79.33,84.19,0.13,982,4.3,330,1 +2016,12,31,20,30,27.1,0.89,0.1627,0.67,91,528,256,0,21.200000000000003,91,528,0,256,0.26,70.34,71.77,0.13,983,4.3,329,1.1 +2016,12,31,21,30,29.400000000000002,0.9,0.15410000000000001,0.67,116,710,483,0,20.700000000000003,116,710,0,483,0.26,59.7,58.89,0.13,983,4.3,341,1 +2016,12,31,22,30,31.8,0.92,0.1461,0.67,130,812,697,0,20,130,812,0,697,0.259,49.660000000000004,45.75,0.13,983,4.3,191,0.9 +2016,12,31,23,30,33,0.92,0.1396,0.67,139,871,874,0,19.200000000000003,139,871,0,874,0.259,44.07,32.47,0.13,983,4.3,31,0.8 diff --git a/resource_files/solar/3.25735_101.656312_2020_himawari8_v3_60min_utc_tz.csv b/resource_files/solar/3.25735_101.656312_2020_himawari8_v3_60min_utc_tz.csv new file mode 100644 index 000000000..87a70107e --- /dev/null +++ b/resource_files/solar/3.25735_101.656312_2020_himawari8_v3_60min_utc_tz.csv @@ -0,0 +1,8763 @@ +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 Units,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 +NSRDB,2260058,-,b'Selangor',b'Malaysia',3.26,101.65,0,155,8,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,3.1.1 +Year,Month,Day,Hour,Minute,Temperature,Alpha,Aerosol Optical Depth,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Ozone,Relative Humidity,Solar Zenith Angle,Surface Albedo,Pressure,Precipitable Water,Wind Direction,Wind Speed +2020,1,1,0,0,23.900000000000002,1.3900000000000001,0.07590000000000001,0.64,42,440,109,0,22.3,42,440,0,109,0.242,90.56,81.22,0.15,995,3.5,38,2.4000000000000004 +2020,1,1,1,0,25.5,1.3900000000000001,0.0709,0.64,71,727,346,0,22.700000000000003,71,727,0,346,0.242,84.72,67.72,0.15,995,3.5,43,3 +2020,1,1,2,0,26.8,1.41,0.0651,0.64,84,852,578,0,23,84,852,0,578,0.242,79.56,54.61,0.15,996,3.6,46,3.2 +2020,1,1,3,0,27.900000000000002,1.3800000000000001,0.0644,0.64,94,911,767,0,23,94,911,0,767,0.242,74.94,42.410000000000004,0.15,996,3.8000000000000003,50,3.2 +2020,1,1,4,0,28.700000000000003,1.41,0.0609,0.64,98,945,897,0,23.200000000000003,98,945,0,897,0.242,72.10000000000001,32.25,0.15,995,3.9000000000000004,55,3.2 +2020,1,1,5,0,29.400000000000002,1.4000000000000001,0.0631,0.64,101,954,954,0,23.3,101,954,0,954,0.242,69.8,26.61,0.15,994,4.1000000000000005,58,3.1 +2020,1,1,6,0,29.8,1.17,0.1182,0.64,131,902,925,0,23.400000000000002,131,902,0,925,0.241,68.42,28.34,0.15,993,4.3,61,2.9000000000000004 +2020,1,1,7,0,29.900000000000002,1.16,0.1193,0.64,126,876,831,2,23.5,318,506,0,725,0.241,68.44,36.42,0.15,992,4.5,63,2.7 +2020,1,1,8,0,29.400000000000002,1.1400000000000001,0.1228,0.64,118,822,671,0,23.8,118,822,1,671,0.241,71.81,47.7,0.15,991,4.6000000000000005,65,2.4000000000000004 +2020,1,1,9,0,28.700000000000003,1.11,0.1296,0.64,104,720,459,0,24.200000000000003,104,720,0,459,0.241,76.76,60.39,0.15,992,4.800000000000001,64,2.1 +2020,1,1,10,0,27.6,1.1400000000000001,0.11710000000000001,0.64,73,549,227,0,24.5,73,549,0,227,0.241,83.15,73.72,0.15,993,4.800000000000001,64,1.6 +2020,1,1,11,0,26,1.18,0.1041,0.64,19,128,25,3,24.200000000000003,9,0,3,9,0.243,90.08,87.21000000000001,0.15,994,4.800000000000001,62,0.9 +2020,1,1,12,0,25.400000000000002,1.2,0.1004,0.64,0,0,0,0,23.900000000000002,0,0,0,0,0.243,91.59,101.23,0.15,995,4.9,56,0.9 +2020,1,1,13,0,24.900000000000002,1.2,0.0998,0.64,0,0,0,0,23.700000000000003,0,0,0,0,0.244,92.99,114.99000000000001,0.15,996,4.9,47,0.9 +2020,1,1,14,0,24.5,1.18,0.1008,0.64,0,0,0,0,23.5,0,0,0,0,0.244,93.94,128.52,0.15,996,4.9,38,0.9 +2020,1,1,15,0,24.200000000000003,1.17,0.10020000000000001,0.64,0,0,0,0,23.3,0,0,0,0,0.243,94.59,141.47,0.15,996,4.9,34,0.9 +2020,1,1,16,0,23.900000000000002,1.18,0.0978,0.64,0,0,0,3,23.1,0,0,0,0,0.242,95.38,152.88,0.15,996,4.800000000000001,33,0.9 +2020,1,1,17,0,23.6,1.22,0.0949,0.64,0,0,0,3,22.900000000000002,0,0,0,0,0.241,95.93,159.84,0.15,995,4.7,32,0.9 +2020,1,1,18,0,23.400000000000002,1.24,0.09430000000000001,0.64,0,0,0,3,22.700000000000003,0,0,0,0,0.24,96.08,157.67000000000002,0.15,995,4.7,31,1 +2020,1,1,19,0,23.1,1.25,0.09230000000000001,0.64,0,0,0,3,22.5,0,0,0,0,0.23900000000000002,96.7,148.19,0.15,994,4.7,30,1.1 +2020,1,1,20,0,22.900000000000002,1.26,0.0877,0.64,0,0,0,3,22.400000000000002,0,0,0,0,0.23900000000000002,96.88,135.9,0.15,994,4.7,28,1.1 +2020,1,1,21,0,22.700000000000003,1.27,0.0826,0.64,0,0,0,3,22.200000000000003,0,0,0,0,0.23800000000000002,97.03,122.63,0.15,994,4.7,24,1.1 +2020,1,1,22,0,22.6,1.27,0.0792,0.64,0,0,0,3,22.1,0,0,0,0,0.23800000000000002,96.73,108.96000000000001,0.15,994,4.800000000000001,23,1.1 +2020,1,1,23,0,22.900000000000002,1.25,0.0784,0.64,0,0,0,3,22.3,0,0,0,0,0.23800000000000002,96.43,95.17,0.15,995,4.800000000000001,23,1.3 +2020,1,2,0,0,24.400000000000002,1.23,0.08030000000000001,0.64,43,410,105,3,23.200000000000003,55,55,3,63,0.23800000000000002,93.14,81.31,0.15,996,4.9,25,2.2 +2020,1,2,1,0,25.8,1.2,0.0815,0.64,76,691,337,3,23.6,156,222,0,240,0.23800000000000002,87.55,67.8,0.15,997,5,36,2.9000000000000004 +2020,1,2,2,0,27.200000000000003,1.19,0.0792,0.64,92,818,565,3,23.6,271,175,0,372,0.23800000000000002,80.87,54.68,0.15,997,5.1000000000000005,42,3.3000000000000003 +2020,1,2,3,0,28.3,1.11,0.1163,0.64,121,848,747,3,23.8,176,3,0,179,0.23900000000000002,76.48,42.46,0.15,996,5.1000000000000005,45,3.2 +2020,1,2,4,0,29.1,1.12,0.1109,0.64,126,889,877,1,23.900000000000002,126,889,0,877,0.24,73.79,32.25,0.15,995,5.2,49,3 +2020,1,2,5,0,29.6,1.1400000000000001,0.1078,0.64,126,905,936,3,24,416,51,0,461,0.241,72.12,26.54,0.15,994,5.300000000000001,53,2.8000000000000003 +2020,1,2,6,0,29.900000000000002,1.1500000000000001,0.108,0.64,126,900,919,0,24.1,126,900,0,919,0.242,71.2,28.22,0.15,993,5.5,57,2.5 +2020,1,2,7,0,29.6,1.1500000000000001,0.1134,0.64,124,872,827,3,24.3,164,3,0,166,0.242,73.04,36.28,0.15,992,5.6000000000000005,62,2.1 +2020,1,2,8,0,29,1.1400000000000001,0.1193,0.64,117,818,668,3,24.5,312,73,0,361,0.243,76.88,47.56,0.15,992,5.7,67,1.7000000000000002 +2020,1,2,9,0,28.200000000000003,1.12,0.1343,0.64,106,710,458,3,24.8,106,0,0,106,0.243,82.04,60.26,0.15,992,5.800000000000001,69,1.4000000000000001 +2020,1,2,10,0,27.3,1.11,0.1363,0.64,78,520,225,3,24.900000000000002,73,0,0,73,0.243,86.94,73.60000000000001,0.15,993,5.800000000000001,69,1.2000000000000002 +2020,1,2,11,0,26.200000000000003,1.11,0.1274,0.64,20,105,25,3,24.900000000000002,8,0,3,8,0.244,92.56,87.10000000000001,0.15,993,5.7,67,0.9 +2020,1,2,12,0,25.6,1.16,0.12340000000000001,0.64,0,0,0,3,24.6,0,0,0,0,0.245,94.49,101.12,0.15,994,5.7,63,0.9 +2020,1,2,13,0,25.1,1.2,0.1194,0.64,0,0,0,3,24.400000000000002,0,0,0,0,0.246,95.67,114.89,0.15,995,5.6000000000000005,59,0.9 +2020,1,2,14,0,24.700000000000003,1.22,0.11760000000000001,0.64,0,0,0,4,24,0,0,0,0,0.247,96.10000000000001,128.44,0.15,996,5.5,52,1.1 +2020,1,2,15,0,24.3,1.24,0.1211,0.64,0,0,0,3,23.700000000000003,0,0,0,0,0.248,96.56,141.41,0.15,996,5.4,44,1.2000000000000002 +2020,1,2,16,0,24,1.26,0.11620000000000001,0.64,0,0,0,3,23.400000000000002,0,0,0,0,0.247,96.61,152.87,0.15,996,5.4,40,1.2000000000000002 +2020,1,2,17,0,23.700000000000003,1.28,0.1075,0.64,0,0,0,3,23.200000000000003,0,0,0,0,0.247,96.88,159.9,0.15,996,5.300000000000001,36,1.2000000000000002 +2020,1,2,18,0,23.400000000000002,1.3,0.1008,0.64,0,0,0,0,22.900000000000002,0,0,0,0,0.247,97.19,157.8,0.15,995,5.2,31,1.2000000000000002 +2020,1,2,19,0,23.200000000000003,1.32,0.09090000000000001,0.64,0,0,0,0,22.700000000000003,0,0,0,0,0.246,97,148.32,0.15,994,5.1000000000000005,27,1.1 +2020,1,2,20,0,23,1.32,0.08270000000000001,0.64,0,0,0,0,22.5,0,0,0,0,0.245,97.09,136.04,0.15,994,5.1000000000000005,25,1.1 +2020,1,2,21,0,22.900000000000002,1.31,0.08080000000000001,0.64,0,0,0,0,22.400000000000002,0,0,0,0,0.244,96.83,122.75,0.15,994,5,26,1 +2020,1,2,22,0,22.8,1.29,0.0809,0.64,0,0,0,8,22.200000000000003,0,0,0,0,0.244,96.59,109.08,0.15,994,5,26,0.9 +2020,1,2,23,0,23.1,1.27,0.07780000000000001,0.64,0,0,0,8,22.400000000000002,0,0,0,0,0.243,95.64,95.28,0.15,994,4.9,25,0.9 +2020,1,3,0,0,24.3,1.26,0.0791,0.64,43,409,104,8,23.1,51,235,3,86,0.243,92.9,81.41,0.13,995,4.9,24,1.7000000000000002 +2020,1,3,1,0,25.700000000000003,1.27,0.0755,0.64,73,700,337,8,23.5,132,399,0,282,0.243,87.76,67.89,0.13,996,4.9,38,2.3000000000000003 +2020,1,3,2,0,27.1,1.27,0.0709,0.64,88,828,566,3,23.5,238,381,0,458,0.242,80.66,54.75,0.13,996,4.9,45,2.7 +2020,1,3,3,0,28.1,0.97,0.1109,0.64,118,853,747,0,23.400000000000002,118,853,0,747,0.242,75.9,42.5,0.13,995,4.9,46,2.7 +2020,1,3,4,0,28.900000000000002,1,0.10740000000000001,0.64,124,892,878,3,23.5,291,17,0,306,0.242,72.69,32.25,0.13,994,5,46,2.6 +2020,1,3,5,0,29.3,1.02,0.1057,0.64,126,907,938,0,23.6,126,907,0,938,0.241,71.57000000000001,26.47,0.13,993,5.1000000000000005,47,2.4000000000000004 +2020,1,3,6,0,29.5,0.98,0.17470000000000002,0.64,159,849,908,3,23.8,465,180,0,623,0.241,71.31,28.1,0.13,992,5.2,47,2.3000000000000003 +2020,1,3,7,0,29.5,0.97,0.1726,0.64,152,825,818,3,23.900000000000002,293,19,0,309,0.241,71.7,36.14,0.13,991,5.300000000000001,47,2.1 +2020,1,3,8,0,29.200000000000003,0.99,0.1675,0.64,138,775,662,3,24,307,337,0,534,0.242,73.83,47.42,0.13,991,5.4,49,1.9000000000000001 +2020,1,3,9,0,28.5,1,0.16590000000000002,0.64,118,678,455,1,24.5,118,678,0,455,0.242,79.02,60.13,0.13,991,5.5,51,1.5 +2020,1,3,10,0,27.5,1.01,0.1632,0.64,85,488,224,3,24.6,114,83,0,138,0.242,84.02,73.48,0.13,992,5.5,55,1.2000000000000002 +2020,1,3,11,0,26.3,1,0.1545,0.64,21,84,25,3,24.6,14,0,3,14,0.242,90.56,86.99,0.13,992,5.5,60,0.7000000000000001 +2020,1,3,12,0,25.900000000000002,1.01,0.13920000000000002,0.64,0,0,0,3,24.400000000000002,0,0,0,0,0.242,91.47,101.02,0.13,993,5.5,62,0.7000000000000001 +2020,1,3,13,0,25.400000000000002,1.08,0.1135,0.64,0,0,0,3,24.200000000000003,0,0,0,0,0.243,93.32000000000001,114.8,0.13,994,5.5,58,0.7000000000000001 +2020,1,3,14,0,24.900000000000002,1.17,0.09430000000000001,0.64,0,0,0,3,24,0,0,0,0,0.243,94.73,128.36,0.13,994,5.4,54,0.7000000000000001 +2020,1,3,15,0,24.5,1.21,0.0873,0.64,0,0,0,3,23.8,0,0,0,0,0.244,95.61,141.36,0.13,994,5.300000000000001,45,0.8 +2020,1,3,16,0,24.1,1.25,0.0815,0.64,0,0,0,7,23.5,0,0,0,0,0.244,96.7,152.85,0.13,994,5.2,37,0.9 +2020,1,3,17,0,23.8,1.28,0.0776,0.64,0,0,0,0,23.3,0,0,0,0,0.244,97.18,159.97,0.13,993,5,32,1 +2020,1,3,18,0,23.5,1.3,0.07780000000000001,0.64,0,0,0,1,23.1,0,0,0,0,0.244,97.51,157.93,0.13,992,4.9,33,1.1 +2020,1,3,19,0,23.3,1.32,0.08120000000000001,0.64,0,0,0,3,22.8,0,0,0,0,0.244,97.23,148.47,0.13,992,4.800000000000001,32,1.1 +2020,1,3,20,0,23.1,1.32,0.0826,0.64,0,0,0,0,22.6,0,0,0,0,0.244,96.88,136.17000000000002,0.13,992,4.7,28,1 +2020,1,3,21,0,22.900000000000002,1.32,0.0879,0.64,0,0,0,1,22.400000000000002,0,0,0,0,0.244,97.02,122.87,0.13,992,4.7,22,1 +2020,1,3,22,0,22.8,1.33,0.091,0.64,0,0,0,8,22.3,0,0,0,0,0.244,96.85000000000001,109.19,0.13,992,4.6000000000000005,23,1.1 +2020,1,3,23,0,23.1,1.34,0.0886,0.64,0,0,0,7,22.400000000000002,0,0,0,0,0.243,95.73,95.38,0.13,993,4.6000000000000005,29,1.3 +2020,1,4,0,0,24.200000000000003,1.34,0.0873,0.64,43,398,102,8,22.8,50,257,3,88,0.243,92.11,81.5,0.13,993,4.6000000000000005,31,2.2 +2020,1,4,1,0,25.3,1.35,0.0854,0.64,75,690,334,7,23,152,248,0,245,0.243,87.34,67.97,0.13,994,4.6000000000000005,38,2.7 +2020,1,4,2,0,26.700000000000003,1.34,0.08,0.64,91,822,565,7,23.200000000000003,249,54,0,280,0.243,81.31,54.81,0.13,994,4.6000000000000005,42,2.9000000000000004 +2020,1,4,3,0,28,1.34,0.07640000000000001,0.64,100,890,755,3,23.400000000000002,305,449,0,636,0.243,76.22,42.54,0.13,993,4.6000000000000005,45,2.9000000000000004 +2020,1,4,4,0,28.900000000000002,1.32,0.0748,0.64,105,925,888,3,23.6,429,270,0,657,0.243,73.15,32.24,0.13,993,4.6000000000000005,48,2.7 +2020,1,4,5,0,29.5,1.31,0.07390000000000001,0.64,107,938,948,1,23.700000000000003,107,938,0,948,0.243,71.23,26.39,0.13,992,4.7,48,2.4000000000000004 +2020,1,4,6,0,29.8,1.3800000000000001,0.06770000000000001,0.64,103,940,933,1,23.8,103,940,0,933,0.243,70.2,27.97,0.13,990,4.800000000000001,49,2.2 +2020,1,4,7,0,29.900000000000002,1.37,0.068,0.64,99,918,842,2,23.8,389,337,0,661,0.242,69.83,36,0.13,989,4.9,51,2 +2020,1,4,8,0,29.6,1.34,0.07200000000000001,0.64,94,870,685,3,23.8,332,176,0,452,0.242,71.25,47.28,0.13,989,5,55,1.9000000000000001 +2020,1,4,9,0,28.900000000000002,1.1400000000000001,0.0975,0.64,93,756,471,0,24.200000000000003,93,756,0,471,0.242,75.73,60,0.13,990,5.1000000000000005,59,1.6 +2020,1,4,10,0,27.700000000000003,1.12,0.10070000000000001,0.64,70,575,235,0,24.400000000000002,70,575,0,235,0.242,82.11,73.35000000000001,0.13,990,5.2,61,1.3 +2020,1,4,11,0,26.3,1.1400000000000001,0.091,0.64,21,157,29,1,24.5,21,157,0,29,0.242,89.61,86.88,0.13,991,5.1000000000000005,61,0.8 +2020,1,4,12,0,25.6,1.17,0.0853,0.64,0,0,0,3,24.200000000000003,0,0,0,0,0.243,91.77,100.91,0.13,992,5,59,0.8 +2020,1,4,13,0,25,1.18,0.0814,0.64,0,0,0,1,23.900000000000002,0,0,0,0,0.244,93.83,114.7,0.13,993,4.800000000000001,55,0.8 +2020,1,4,14,0,24.400000000000002,1.2,0.07640000000000001,0.64,0,0,0,0,23.700000000000003,0,0,0,0,0.245,95.82000000000001,128.28,0.13,993,4.7,49,0.9 +2020,1,4,15,0,24,1.22,0.0751,0.64,0,0,0,0,23.400000000000002,0,0,0,0,0.246,96.71000000000001,141.3,0.13,993,4.5,46,1 +2020,1,4,16,0,23.6,1.22,0.0738,0.64,0,0,0,1,23.200000000000003,0,0,0,0,0.246,97.57000000000001,152.84,0.13,993,4.3,44,1.1 +2020,1,4,17,0,23.200000000000003,1.22,0.0716,0.64,0,0,0,0,22.900000000000002,0,0,0,0,0.246,98.25,160.04,0.13,992,4.1000000000000005,43,1.2000000000000002 +2020,1,4,18,0,22.8,1.23,0.0708,0.64,0,0,0,0,22.6,0,0,0,0,0.246,99.06,158.07,0.13,992,3.9000000000000004,43,1.3 +2020,1,4,19,0,22.5,1.25,0.0694,0.64,0,0,0,0,22.400000000000002,0,0,0,0,0.245,99.2,148.61,0.13,991,3.7,43,1.4000000000000001 +2020,1,4,20,0,22.3,1.28,0.06520000000000001,0.64,0,0,0,0,22.1,0,0,0,0,0.245,98.97,136.3,0.13,991,3.5,44,1.5 +2020,1,4,21,0,22,1.3,0.0626,0.64,0,0,0,0,21.900000000000002,0,0,0,0,0.245,99.43,123,0.13,990,3.3000000000000003,41,1.6 +2020,1,4,22,0,21.8,1.32,0.061500000000000006,0.64,0,0,0,0,21.700000000000003,0,0,0,0,0.245,99.54,109.31,0.13,991,3.1,37,1.6 +2020,1,4,23,0,22,1.33,0.0597,0.64,0,0,0,0,21.700000000000003,0,0,0,0,0.244,97.94,95.48,0.13,991,3,35,1.6 +2020,1,5,0,0,23.8,1.33,0.0597,0.64,40,462,107,0,22.200000000000003,40,462,0,107,0.244,90.61,81.59,0.13,992,3.1,34,2.3000000000000003 +2020,1,5,1,0,25.5,1.33,0.0589,0.64,68,744,346,0,22.6,68,744,0,346,0.244,84.2,68.04,0.13,994,3.2,37,2.7 +2020,1,5,2,0,26.900000000000002,1.31,0.0589,0.64,83,860,578,0,23,83,860,0,578,0.243,79.43,54.870000000000005,0.13,994,3.4000000000000004,39,2.7 +2020,1,5,3,0,28.1,0.9,0.0867,0.64,108,889,763,0,23.400000000000002,108,889,0,763,0.242,75.52,42.57,0.13,993,3.6,41,2.7 +2020,1,5,4,0,29,0.96,0.0772,0.64,109,930,896,3,23.6,437,226,0,628,0.242,72.7,32.22,0.13,993,3.8000000000000003,44,2.5 +2020,1,5,5,0,29.700000000000003,1,0.07400000000000001,0.64,109,943,955,1,23.700000000000003,109,943,0,955,0.242,70.34,26.310000000000002,0.13,991,4.1000000000000005,46,2.4000000000000004 +2020,1,5,6,0,30.1,0.91,0.1106,0.64,129,906,930,3,23.900000000000002,317,19,0,334,0.242,69.55,27.830000000000002,0.13,990,4.4,48,2.2 +2020,1,5,7,0,30.200000000000003,0.89,0.1149,0.64,126,877,837,3,24,415,211,0,586,0.242,69.58,35.85,0.13,989,4.6000000000000005,49,2.1 +2020,1,5,8,0,29.8,0.87,0.1199,0.64,119,821,677,2,24.3,255,499,0,594,0.244,72.19,47.14,0.13,989,4.9,50,2 +2020,1,5,9,0,29,0.86,0.135,0.64,108,711,465,3,24.8,220,253,0,347,0.244,78.01,59.86,0.13,990,5.1000000000000005,52,1.8 +2020,1,5,10,0,27.700000000000003,0.84,0.1429,0.64,82,513,230,3,24.700000000000003,98,367,0,204,0.244,83.63,73.23,0.13,991,5.2,52,1.5 +2020,1,5,11,0,26.3,0.8200000000000001,0.1364,0.64,23,95,28,0,24.700000000000003,23,95,0,28,0.245,91.14,86.78,0.13,992,5.2,53,1 +2020,1,5,12,0,25.700000000000003,0.84,0.1371,0.64,0,0,0,0,24.400000000000002,0,0,0,0,0.245,92.79,100.81,0.13,993,5.2,51,0.8 +2020,1,5,13,0,25.200000000000003,0.87,0.1291,0.64,0,0,0,0,24.1,0,0,0,0,0.245,93.62,114.61,0.13,993,5,45,0.7000000000000001 +2020,1,5,14,0,24.700000000000003,0.88,0.11950000000000001,0.64,0,0,0,0,23.8,0,0,0,0,0.245,94.65,128.21,0.13,994,4.9,38,0.7000000000000001 +2020,1,5,15,0,24.200000000000003,0.9,0.1116,0.64,0,0,0,3,23.400000000000002,0,0,0,0,0.245,95.47,141.26,0.13,993,4.7,35,0.8 +2020,1,5,16,0,23.8,0.91,0.1037,0.64,0,0,0,3,23.1,0,0,0,0,0.246,96.09,152.84,0.13,993,4.6000000000000005,33,0.9 +2020,1,5,17,0,23.400000000000002,0.91,0.0984,0.64,0,0,0,3,22.8,0,0,0,0,0.246,96.63,160.13,0.13,993,4.4,31,1 +2020,1,5,18,0,23,0.92,0.09680000000000001,0.64,0,0,0,3,22.5,0,0,0,0,0.245,96.87,158.22,0.13,992,4.3,32,1.1 +2020,1,5,19,0,22.6,0.93,0.09630000000000001,0.64,0,0,0,3,22.1,0,0,0,0,0.245,96.98,148.76,0.13,992,4.2,30,1.2000000000000002 +2020,1,5,20,0,22.200000000000003,0.96,0.09580000000000001,0.64,0,0,0,3,21.700000000000003,0,0,0,0,0.244,97.05,136.44,0.13,992,4.2,25,1.2000000000000002 +2020,1,5,21,0,21.900000000000002,0.99,0.096,0.64,0,0,0,3,21.400000000000002,0,0,0,0,0.243,96.8,123.12,0.13,992,4.2,20,1.1 +2020,1,5,22,0,21.700000000000003,1.02,0.0983,0.64,0,0,0,0,21.1,0,0,0,0,0.242,96.29,109.42,0.13,992,4.2,17,1.1 +2020,1,5,23,0,22,1.05,0.1012,0.64,0,0,0,0,21.200000000000003,0,0,0,0,0.241,95.01,95.58,0.13,993,4.2,16,1.3 +2020,1,6,0,0,23.400000000000002,1.06,0.1022,0.64,46,363,98,0,21.8,46,363,0,98,0.241,90.71000000000001,81.68,0.13,994,4.2,19,2.1 +2020,1,6,1,0,25.1,1.08,0.0988,0.64,81,670,330,0,22.1,81,670,0,330,0.241,83.45,68.12,0.13,994,4.3,22,2.5 +2020,1,6,2,0,26.900000000000002,1.1,0.0951,0.64,99,805,561,0,22.3,99,805,0,561,0.241,75.95,54.92,0.13,994,4.4,23,2.6 +2020,1,6,3,0,28.400000000000002,1.01,0.0678,0.64,98,897,758,0,22.6,98,897,0,758,0.241,70.93,42.59,0.13,994,4.5,25,2.4000000000000004 +2020,1,6,4,0,29.3,1.03,0.0646,0.64,102,932,891,0,22.8,102,932,0,891,0.241,68.18,32.2,0.13,993,4.6000000000000005,27,2.1 +2020,1,6,5,0,29.700000000000003,1.04,0.06420000000000001,0.64,104,945,952,3,23,468,248,0,690,0.241,67.37,26.22,0.13,992,4.7,27,1.8 +2020,1,6,6,0,29.900000000000002,1.11,0.1148,0.64,129,901,927,3,23.1,233,11,0,242,0.241,67.09,27.69,0.13,991,4.800000000000001,26,1.6 +2020,1,6,7,0,30,1.1,0.1218,0.64,128,871,835,3,23.1,187,6,0,192,0.241,66.66,35.7,0.13,990,5,28,1.4000000000000001 +2020,1,6,8,0,29.700000000000003,1.1,0.1254,0.64,120,819,678,3,23.200000000000003,335,171,0,451,0.241,68.11,47,0.13,990,5.1000000000000005,37,1.2000000000000002 +2020,1,6,9,0,29,1.12,0.1464,0.64,111,705,466,3,24.1,126,0,0,126,0.241,74.89,59.730000000000004,0.13,990,5.300000000000001,49,1 +2020,1,6,10,0,27.700000000000003,1.1300000000000001,0.1585,0.64,84,506,231,3,24.3,116,183,0,169,0.242,81.60000000000001,73.11,0.13,991,5.5,56,1 +2020,1,6,11,0,26.5,1.11,0.165,0.64,23,95,29,3,24.400000000000002,19,0,3,19,0.243,88.08,86.67,0.13,991,5.6000000000000005,59,0.7000000000000001 +2020,1,6,12,0,25.900000000000002,1.1300000000000001,0.18100000000000002,0.64,0,0,0,3,24.3,0,0,0,0,0.243,91.15,100.71000000000001,0.13,992,5.800000000000001,57,0.6000000000000001 +2020,1,6,13,0,25.5,1.1400000000000001,0.1767,0.64,0,0,0,3,24,0,0,0,0,0.243,91.63,114.53,0.13,993,5.800000000000001,50,0.6000000000000001 +2020,1,6,14,0,25.1,1.19,0.1522,0.64,0,0,0,3,23.900000000000002,0,0,0,0,0.243,93,128.14000000000001,0.13,993,5.800000000000001,41,0.6000000000000001 +2020,1,6,15,0,24.6,1.27,0.132,0.64,0,0,0,3,23.700000000000003,0,0,0,0,0.243,94.92,141.21,0.13,993,5.7,31,0.6000000000000001 +2020,1,6,16,0,24.200000000000003,1.32,0.1192,0.64,0,0,0,3,23.5,0,0,0,0,0.243,96,152.84,0.13,993,5.5,24,0.7000000000000001 +2020,1,6,17,0,24,1.34,0.11030000000000001,0.64,0,0,0,0,23.400000000000002,0,0,0,0,0.244,96.31,160.21,0.13,993,5.4,19,0.7000000000000001 +2020,1,6,18,0,23.700000000000003,1.36,0.10590000000000001,0.64,0,0,0,4,23.200000000000003,0,0,0,0,0.244,96.85000000000001,158.37,0.13,992,5.300000000000001,14,0.7000000000000001 +2020,1,6,19,0,23.400000000000002,1.37,0.1019,0.64,0,0,0,4,22.900000000000002,0,0,0,0,0.244,97.28,148.91,0.13,991,5.2,8,0.8 +2020,1,6,20,0,23.200000000000003,1.3800000000000001,0.0974,0.64,0,0,0,3,22.700000000000003,0,0,0,0,0.245,97.16,136.57,0.13,991,5.1000000000000005,2,0.8 +2020,1,6,21,0,23.1,1.3900000000000001,0.0947,0.64,0,0,0,3,22.5,0,0,0,0,0.244,96.67,123.24000000000001,0.13,991,5.1000000000000005,0,0.9 +2020,1,6,22,0,23,1.41,0.0925,0.64,0,0,0,3,22.400000000000002,0,0,0,0,0.244,96.34,109.53,0.13,992,5.1000000000000005,1,0.9 +2020,1,6,23,0,23.3,1.42,0.0898,0.64,0,0,0,1,22.400000000000002,0,0,0,0,0.244,94.96000000000001,95.68,0.13,992,5,2,1 +2020,1,7,0,0,24.3,1.43,0.08800000000000001,0.64,42,388,97,3,22.8,52,133,3,71,0.244,91.44,81.77,0.14,993,5,5,1.7000000000000002 +2020,1,7,1,0,25.5,1.43,0.0859,0.64,75,684,329,8,23,123,444,0,287,0.244,86.08,68.19,0.14,994,5,10,2.1 +2020,1,7,2,0,26.8,1.44,0.08370000000000001,0.64,92,814,559,0,22.900000000000002,92,814,0,559,0.243,79.26,54.980000000000004,0.14,994,5,15,2.3000000000000003 +2020,1,7,3,0,27.900000000000002,1.27,0.1704,0.64,141,806,735,1,22.900000000000002,141,806,0,735,0.242,74.19,42.61,0.14,993,5,20,2.3000000000000003 +2020,1,7,4,0,28.8,1.29,0.16690000000000002,0.64,149,849,868,0,22.900000000000002,149,849,0,868,0.242,70.52,32.17,0.14,993,5.1000000000000005,24,2.1 +2020,1,7,5,0,29.3,1.32,0.1608,0.64,150,870,931,0,22.900000000000002,150,870,0,931,0.241,68.41,26.12,0.14,992,5.1000000000000005,25,2 +2020,1,7,6,0,29.5,1.31,0.1492,0.64,144,875,919,3,22.900000000000002,468,192,0,638,0.241,67.52,27.54,0.14,990,5.2,25,1.7000000000000002 +2020,1,7,7,0,29.5,1.33,0.1499,0.64,138,850,830,3,22.900000000000002,417,209,0,587,0.241,67.56,35.54,0.14,990,5.300000000000001,25,1.5 +2020,1,7,8,0,29.3,1.34,0.1549,0.64,130,796,674,8,23,239,546,0,612,0.242,68.87,46.85,0.14,989,5.4,29,1.4000000000000001 +2020,1,7,9,0,29.1,1.35,0.16160000000000002,0.64,114,696,466,7,23.6,207,344,0,382,0.242,72.14,59.6,0.14,989,5.5,36,1.1 +2020,1,7,10,0,28.1,1.36,0.16970000000000002,0.64,85,504,233,8,23.6,98,375,0,208,0.241,76.72,72.99,0.14,990,5.5,41,1.1 +2020,1,7,11,0,26.700000000000003,1.36,0.1714,0.64,23,109,30,8,24.3,23,109,5,30,0.241,86.59,86.56,0.14,990,5.6000000000000005,48,0.7000000000000001 +2020,1,7,12,0,26.200000000000003,1.36,0.1782,0.64,0,0,0,7,24.1,0,0,0,0,0.241,88.48,100.61,0.14,991,5.6000000000000005,52,0.8 +2020,1,7,13,0,25.8,1.35,0.18560000000000001,0.64,0,0,0,8,24,0,0,0,0,0.241,89.91,114.44,0.14,992,5.7,53,0.8 +2020,1,7,14,0,25.5,1.34,0.1907,0.64,0,0,0,4,23.900000000000002,0,0,0,0,0.241,91.10000000000001,128.07,0.14,992,5.7,49,0.9 +2020,1,7,15,0,25.200000000000003,1.34,0.18530000000000002,0.64,0,0,0,8,23.900000000000002,0,0,0,0,0.241,92.44,141.17000000000002,0.14,992,5.7,42,0.9 +2020,1,7,16,0,24.8,1.35,0.1733,0.64,0,0,0,4,23.8,0,0,0,0,0.241,94.14,152.85,0.14,992,5.7,36,0.9 +2020,1,7,17,0,24.5,1.36,0.1622,0.64,0,0,0,4,23.700000000000003,0,0,0,0,0.241,95.25,160.31,0.14,992,5.6000000000000005,31,0.9 +2020,1,7,18,0,24.3,1.37,0.1497,0.64,0,0,0,4,23.5,0,0,0,0,0.241,95.5,158.52,0.14,991,5.5,26,0.9 +2020,1,7,19,0,24,1.37,0.136,0.64,0,0,0,4,23.400000000000002,0,0,0,0,0.24,96.19,149.06,0.14,991,5.5,20,1 +2020,1,7,20,0,23.700000000000003,1.3800000000000001,0.1221,0.64,0,0,0,3,23.1,0,0,0,0,0.24,96.73,136.71,0.14,991,5.4,17,1 +2020,1,7,21,0,23.5,1.3900000000000001,0.11180000000000001,0.64,0,0,0,4,22.900000000000002,0,0,0,0,0.24,96.68,123.37,0.14,991,5.4,17,1 +2020,1,7,22,0,23.400000000000002,1.4000000000000001,0.10060000000000001,0.64,0,0,0,3,22.700000000000003,0,0,0,0,0.241,96.12,109.64,0.14,991,5.300000000000001,18,1 +2020,1,7,23,0,23.5,1.4000000000000001,0.0925,0.64,0,0,0,4,22.8,0,0,0,0,0.241,95.60000000000001,95.78,0.14,992,5.300000000000001,20,1.1 +2020,1,8,0,0,24.700000000000003,1.42,0.0874,0.64,42,384,96,4,23,40,0,3,40,0.241,90.45,81.85000000000001,0.14,992,5.300000000000001,24,1.9000000000000001 +2020,1,8,1,0,25.900000000000002,1.44,0.08030000000000001,0.64,73,688,328,4,23.3,134,9,0,137,0.241,85.74,68.26,0.14,993,5.300000000000001,28,2.4000000000000004 +2020,1,8,2,0,27.3,1.46,0.0746,0.64,88,821,559,3,23.5,261,252,0,405,0.241,79.64,55.02,0.14,993,5.300000000000001,31,2.5 +2020,1,8,3,0,28.5,1.42,0.0954,0.64,108,868,747,3,23.6,324,408,0,624,0.241,74.83,42.63,0.14,992,5.300000000000001,36,2.6 +2020,1,8,4,0,29.400000000000002,1.41,0.0944,0.64,115,904,881,0,23.8,115,904,0,881,0.241,71.74,32.14,0.14,991,5.300000000000001,39,2.6 +2020,1,8,5,0,29.900000000000002,1.4000000000000001,0.093,0.64,117,920,944,3,23.900000000000002,227,11,0,236,0.241,70.15,26.02,0.14,990,5.300000000000001,43,2.4000000000000004 +2020,1,8,6,0,30.1,1.37,0.14400000000000002,0.64,141,878,920,3,24,468,157,0,607,0.241,69.95,27.38,0.14,989,5.4,46,2.2 +2020,1,8,7,0,29.900000000000002,1.36,0.1401,0.64,134,858,833,3,24.1,415,122,0,515,0.242,71.02,35.38,0.14,988,5.4,51,2 +2020,1,8,8,0,29.6,1.37,0.13390000000000002,0.64,121,815,680,0,24.200000000000003,121,815,0,680,0.243,72.68,46.7,0.14,988,5.4,55,1.9000000000000001 +2020,1,8,9,0,29.200000000000003,1.3900000000000001,0.1293,0.64,103,730,474,2,24.5,122,673,0,464,0.244,75.92,59.46,0.14,988,5.4,60,1.5 +2020,1,8,10,0,28.1,1.3800000000000001,0.1317,0.64,77,550,239,0,24.6,77,550,0,239,0.244,81.11,72.87,0.14,989,5.5,63,1 +2020,1,8,11,0,26.8,1.3800000000000001,0.1269,0.64,23,148,32,0,24.5,23,148,0,32,0.245,87.34,86.46000000000001,0.14,990,5.5,70,0.6000000000000001 +2020,1,8,12,0,26.3,1.36,0.12710000000000002,0.64,0,0,0,3,24.200000000000003,0,0,0,0,0.245,88.39,100.52,0.14,991,5.5,72,0.6000000000000001 +2020,1,8,13,0,25.8,1.35,0.12430000000000001,0.64,0,0,0,0,24.1,0,0,0,0,0.245,90.44,114.36,0.14,991,5.5,70,0.5 +2020,1,8,14,0,25.400000000000002,1.34,0.1206,0.64,0,0,0,0,24,0,0,0,0,0.245,92.09,128.01,0.14,992,5.4,62,0.5 +2020,1,8,15,0,25,1.33,0.1198,0.64,0,0,0,3,23.900000000000002,0,0,0,0,0.245,93.63,141.13,0.14,992,5.300000000000001,52,0.6000000000000001 +2020,1,8,16,0,24.6,1.33,0.1174,0.64,0,0,0,0,23.8,0,0,0,0,0.244,95.05,152.86,0.14,992,5.2,44,0.7000000000000001 +2020,1,8,17,0,24.3,1.34,0.114,0.64,0,0,0,8,23.6,0,0,0,0,0.243,95.67,160.41,0.14,991,5.1000000000000005,35,0.8 +2020,1,8,18,0,24,1.35,0.111,0.64,0,0,0,7,23.400000000000002,0,0,0,0,0.241,96.31,158.69,0.14,990,5,29,1 +2020,1,8,19,0,23.700000000000003,1.37,0.10590000000000001,0.64,0,0,0,8,23.200000000000003,0,0,0,0,0.24,96.98,149.22,0.14,990,4.9,26,1.1 +2020,1,8,20,0,23.400000000000002,1.4000000000000001,0.0998,0.64,0,0,0,7,23,0,0,0,0,0.23900000000000002,97.33,136.85,0.14,989,4.800000000000001,26,1.2000000000000002 +2020,1,8,21,0,23.200000000000003,1.41,0.098,0.64,0,0,0,8,22.700000000000003,0,0,0,0,0.23800000000000002,97.16,123.49000000000001,0.14,990,4.800000000000001,26,1.1 +2020,1,8,22,0,23,1.41,0.0966,0.64,0,0,0,8,22.5,0,0,0,0,0.23800000000000002,97.11,109.75,0.14,990,4.800000000000001,29,1.1 +2020,1,8,23,0,23.3,1.3900000000000001,0.0942,0.64,0,0,0,1,22.700000000000003,0,0,0,0,0.23700000000000002,96.44,95.88,0.14,991,4.9,32,1.2000000000000002 +2020,1,9,0,0,24.700000000000003,1.35,0.0959,0.64,43,369,95,8,23.6,48,219,3,79,0.23700000000000002,93.36,81.93,0.15,992,4.9,32,2 +2020,1,9,1,0,26,1.35,0.0927,0.64,78,673,326,3,23.8,138,342,0,264,0.23800000000000002,87.78,68.32000000000001,0.15,993,5,39,2.5 +2020,1,9,2,0,27.400000000000002,1.36,0.0847,0.64,93,812,558,7,23.6,243,348,0,442,0.23800000000000002,79.95,55.07,0.15,993,5,43,2.7 +2020,1,9,3,0,28.5,1.28,0.1014,0.64,112,864,748,0,23.6,112,864,0,748,0.23800000000000002,74.79,42.64,0.15,992,5,41,2.8000000000000003 +2020,1,9,4,0,29.3,1.3,0.094,0.64,116,905,883,1,23.700000000000003,116,905,0,883,0.23900000000000002,71.77,32.1,0.15,992,5.1000000000000005,40,2.7 +2020,1,9,5,0,29.8,1.31,0.09050000000000001,0.64,117,922,947,3,23.700000000000003,434,62,0,490,0.23900000000000002,69.82000000000001,25.900000000000002,0.15,991,5.2,39,2.5 +2020,1,9,6,0,30,1.31,0.0922,0.64,117,917,933,2,23.8,437,348,0,746,0.23900000000000002,69.4,27.22,0.15,990,5.300000000000001,39,2.3000000000000003 +2020,1,9,7,0,29.8,1.31,0.0898,0.64,112,898,845,0,23.900000000000002,112,898,0,845,0.23900000000000002,70.55,35.22,0.15,989,5.4,40,2 +2020,1,9,8,0,29.6,1.32,0.08660000000000001,0.64,102,856,691,3,24,174,2,0,176,0.23900000000000002,71.91,46.56,0.15,988,5.5,44,1.8 +2020,1,9,9,0,29.1,1.33,0.09280000000000001,0.64,91,767,482,3,24.5,225,77,0,264,0.24,76.25,59.33,0.15,989,5.6000000000000005,49,1.3 +2020,1,9,10,0,28,1.33,0.0985,0.64,70,591,245,0,24.3,70,591,0,245,0.24,80.35000000000001,72.75,0.15,989,5.7,50,1 +2020,1,9,11,0,26.700000000000003,1.35,0.0952,0.64,23,185,35,3,24.5,23,55,3,27,0.24,87.99,86.35000000000001,0.15,990,5.7,57,0.6000000000000001 +2020,1,9,12,0,26.1,1.37,0.0913,0.64,0,0,0,7,24.400000000000002,0,0,0,0,0.24,90.55,100.42,0.15,991,5.7,55,0.7000000000000001 +2020,1,9,13,0,25.6,1.3900000000000001,0.08800000000000001,0.64,0,0,0,7,24.3,0,0,0,0,0.24,92.74,114.28,0.15,991,5.7,47,0.8 +2020,1,9,14,0,25.200000000000003,1.4000000000000001,0.08700000000000001,0.64,0,0,0,7,24.200000000000003,0,0,0,0,0.23900000000000002,94.18,127.95,0.15,992,5.7,38,0.7000000000000001 +2020,1,9,15,0,24.8,1.3800000000000001,0.09240000000000001,0.64,0,0,0,8,24,0,0,0,0,0.23900000000000002,95.4,141.1,0.15,992,5.7,33,0.7000000000000001 +2020,1,9,16,0,24.5,1.37,0.09630000000000001,0.64,0,0,0,8,23.8,0,0,0,0,0.23900000000000002,96.04,152.88,0.15,992,5.7,28,0.6000000000000001 +2020,1,9,17,0,24.200000000000003,1.35,0.09770000000000001,0.64,0,0,0,1,23.6,0,0,0,0,0.23800000000000002,96.64,160.52,0.15,991,5.6000000000000005,19,0.6000000000000001 +2020,1,9,18,0,23.900000000000002,1.33,0.1115,0.64,0,0,0,3,23.400000000000002,0,0,0,0,0.23800000000000002,97.22,158.85,0.15,991,5.6000000000000005,13,0.7000000000000001 +2020,1,9,19,0,23.6,1.32,0.1182,0.64,0,0,0,3,23.200000000000003,0,0,0,0,0.23700000000000002,97.59,149.37,0.15,990,5.6000000000000005,11,0.7000000000000001 +2020,1,9,20,0,23.400000000000002,1.31,0.11750000000000001,0.64,0,0,0,7,23,0,0,0,0,0.23700000000000002,97.56,136.99,0.15,990,5.5,10,0.8 +2020,1,9,21,0,23.200000000000003,1.32,0.1192,0.64,0,0,0,7,22.8,0,0,0,0,0.23700000000000002,97.56,123.61,0.15,990,5.5,9,0.9 +2020,1,9,22,0,23,1.34,0.11510000000000001,0.64,0,0,0,8,22.6,0,0,0,0,0.23700000000000002,97.46000000000001,109.85000000000001,0.15,991,5.4,8,0.9 +2020,1,9,23,0,23.1,1.36,0.1111,0.64,0,0,0,7,22.6,0,0,0,0,0.23600000000000002,97.25,95.97,0.15,991,5.300000000000001,6,1 +2020,1,10,0,0,24.3,1.37,0.109,0.64,43,346,92,8,23.3,50,143,3,70,0.23700000000000002,94.01,82.01,0.14,992,5.300000000000001,6,1.7000000000000002 +2020,1,10,1,0,25.6,1.3900000000000001,0.1073,0.64,81,653,322,7,23.5,134,364,0,268,0.23700000000000002,88.35000000000001,68.38,0.14,992,5.300000000000001,12,2 +2020,1,10,2,0,27.200000000000003,1.3900000000000001,0.1078,0.64,101,787,551,8,23.400000000000002,217,456,0,477,0.23800000000000002,79.78,55.11,0.14,992,5.300000000000001,19,1.9000000000000001 +2020,1,10,3,0,28.400000000000002,1.3900000000000001,0.1096,0.64,115,855,743,7,23.400000000000002,318,420,0,627,0.23800000000000002,74.27,42.65,0.14,992,5.4,23,1.7000000000000002 +2020,1,10,4,0,29.1,1.4000000000000001,0.10890000000000001,0.64,122,892,878,8,23.3,376,425,0,736,0.23900000000000002,71.17,32.05,0.14,992,5.4,27,1.4000000000000001 +2020,1,10,5,0,29.5,1.4000000000000001,0.10890000000000001,0.64,125,908,942,7,23.3,410,417,0,785,0.24,69.25,25.78,0.14,991,5.4,32,1 +2020,1,10,6,0,29.8,1.41,0.1265,0.64,133,891,926,7,23.200000000000003,441,338,0,742,0.24,67.8,27.05,0.14,990,5.5,38,0.9 +2020,1,10,7,0,29.700000000000003,1.41,0.12760000000000002,0.64,128,868,839,7,23.1,414,111,0,505,0.24,67.89,35.050000000000004,0.14,989,5.5,43,0.8 +2020,1,10,8,0,29.5,1.42,0.1263,0.64,118,822,685,7,23.200000000000003,306,52,0,342,0.24,68.89,46.4,0.14,989,5.6000000000000005,53,0.7000000000000001 +2020,1,10,9,0,29.1,1.42,0.1406,0.64,107,720,476,6,23.700000000000003,173,6,0,176,0.24,72.87,59.19,0.14,989,5.6000000000000005,68,0.7000000000000001 +2020,1,10,10,0,28.3,1.42,0.15130000000000002,0.64,82,533,241,6,23.6,31,0,0,31,0.24,75.87,72.62,0.14,990,5.6000000000000005,69,0.6000000000000001 +2020,1,10,11,0,26.900000000000002,1.42,0.1522,0.64,24,138,33,6,24.400000000000002,7,0,3,7,0.241,86.32000000000001,86.25,0.14,991,5.7,82,0.5 +2020,1,10,12,0,26.3,1.42,0.1618,0.64,0,0,0,6,24.200000000000003,0,0,0,0,0.241,88.25,100.33,0.14,991,5.7,98,0.5 +2020,1,10,13,0,25.8,1.41,0.1678,0.64,0,0,0,6,24,0,0,0,0,0.241,89.87,114.2,0.14,992,5.7,107,0.6000000000000001 +2020,1,10,14,0,25.400000000000002,1.4000000000000001,0.1696,0.64,0,0,0,6,24,0,0,0,0,0.242,91.88,127.89,0.14,993,5.7,110,0.6000000000000001 +2020,1,10,15,0,25.1,1.3900000000000001,0.1776,0.64,0,0,0,6,23.900000000000002,0,0,0,0,0.243,92.96000000000001,141.07,0.14,992,5.800000000000001,118,0.6000000000000001 +2020,1,10,16,0,24.900000000000002,1.37,0.1857,0.64,0,0,0,6,23.8,0,0,0,0,0.243,93.51,152.91,0.14,992,5.800000000000001,125,0.6000000000000001 +2020,1,10,17,0,24.8,1.36,0.1885,0.64,0,0,0,7,23.700000000000003,0,0,0,0,0.243,93.39,160.63,0.14,992,5.800000000000001,125,0.5 +2020,1,10,18,0,24.6,1.36,0.19890000000000002,0.64,0,0,0,8,23.5,0,0,0,0,0.243,93.87,159.03,0.14,991,5.800000000000001,125,0.4 +2020,1,10,19,0,24.5,1.36,0.19890000000000002,0.64,0,0,0,7,23.400000000000002,0,0,0,0,0.243,93.57000000000001,149.53,0.14,991,5.7,125,0.4 +2020,1,10,20,0,24.400000000000002,1.36,0.1893,0.64,0,0,0,7,23.3,0,0,0,0,0.243,93.60000000000001,137.13,0.14,991,5.7,317,0.4 +2020,1,10,21,0,24.400000000000002,1.37,0.1897,0.64,0,0,0,7,23.200000000000003,0,0,0,0,0.243,93.11,123.73,0.14,991,5.7,350,0.4 +2020,1,10,22,0,24.3,1.3900000000000001,0.1799,0.64,0,0,0,8,23.1,0,0,0,0,0.244,92.77,109.96000000000001,0.14,991,5.7,24,0.4 +2020,1,10,23,0,24.3,1.41,0.159,0.64,0,0,0,3,23.200000000000003,0,0,0,0,0.244,93.86,96.06,0.14,992,5.6000000000000005,45,0.4 +2020,1,11,0,0,25.200000000000003,1.43,0.1511,0.64,47,295,88,8,23.5,48,7,3,49,0.244,90.49,82.08,0.14,992,5.6000000000000005,41,0.7000000000000001 +2020,1,11,1,0,26.1,1.45,0.1443,0.64,91,609,315,8,23.6,98,0,0,98,0.244,85.9,68.44,0.14,993,5.6000000000000005,51,0.8 +2020,1,11,2,0,27,1.46,0.1351,0.64,111,759,545,3,23.5,128,0,0,128,0.244,81.17,55.14,0.14,993,5.6000000000000005,43,0.8 +2020,1,11,3,0,27.700000000000003,1.46,0.1453,0.64,130,824,737,8,23.5,361,246,0,542,0.243,77.84,42.65,0.14,993,5.6000000000000005,34,0.8 +2020,1,11,4,0,28.3,1.46,0.1495,0.64,141,860,870,7,23.400000000000002,426,287,0,670,0.241,74.87,32,0.14,992,5.7,29,0.8 +2020,1,11,5,0,28.8,1.45,0.1464,0.64,143,879,935,7,23.3,418,50,0,463,0.24,72.32000000000001,25.66,0.14,991,5.7,22,0.9 +2020,1,11,6,0,28.8,1.43,0.1658,0.64,152,862,920,7,23.3,454,296,0,717,0.23900000000000002,72.24,26.88,0.14,990,5.800000000000001,13,1.1 +2020,1,11,7,0,28.5,1.43,0.1751,0.64,150,832,832,8,23.400000000000002,365,417,0,707,0.23800000000000002,73.99,34.88,0.14,989,5.800000000000001,5,1.2000000000000002 +2020,1,11,8,0,28,1.44,0.1718,0.64,136,784,678,8,23.6,270,477,0,599,0.23700000000000002,77.21000000000001,46.25,0.14,989,5.800000000000001,359,1.2000000000000002 +2020,1,11,9,0,27.6,1.44,0.203,0.64,127,664,468,1,24.200000000000003,127,664,0,468,0.23700000000000002,81.72,59.06,0.14,990,5.800000000000001,355,1 +2020,1,11,10,0,26.900000000000002,1.45,0.217,0.64,95,469,236,7,24.200000000000003,33,0,0,33,0.23700000000000002,85.32000000000001,72.5,0.14,990,5.7,350,0.9 +2020,1,11,11,0,26,1.47,0.2102,0.64,25,108,32,7,24.5,8,0,3,8,0.23800000000000002,91.39,86.15,0.14,991,5.7,336,0.7000000000000001 +2020,1,11,12,0,25.700000000000003,1.49,0.2101,0.64,0,0,0,7,24.3,0,0,0,0,0.23900000000000002,92,100.24000000000001,0.14,992,5.6000000000000005,321,0.7000000000000001 +2020,1,11,13,0,25.400000000000002,1.51,0.19870000000000002,0.64,0,0,0,7,24.1,0,0,0,0,0.241,92.51,114.12,0.14,992,5.5,308,0.7000000000000001 +2020,1,11,14,0,25.200000000000003,1.53,0.1852,0.64,0,0,0,6,23.900000000000002,0,0,0,0,0.242,92.49,127.83,0.14,992,5.300000000000001,300,0.7000000000000001 +2020,1,11,15,0,25.1,1.53,0.1806,0.64,0,0,0,7,23.700000000000003,0,0,0,0,0.242,91.88,141.05,0.14,992,5.2,298,0.7000000000000001 +2020,1,11,16,0,24.900000000000002,1.53,0.1819,0.64,0,0,0,8,23.6,0,0,0,0,0.242,92.23,152.93,0.14,992,5.1000000000000005,300,0.7000000000000001 +2020,1,11,17,0,24.6,1.52,0.1879,0.64,0,0,0,8,23.5,0,0,0,0,0.242,93.38,160.75,0.14,991,5.1000000000000005,306,0.7000000000000001 +2020,1,11,18,0,24.5,1.5,0.1952,0.64,0,0,0,7,23.400000000000002,0,0,0,0,0.241,93.5,159.20000000000002,0.14,991,5,314,0.8 +2020,1,11,19,0,24.400000000000002,1.49,0.1953,0.64,0,0,0,7,23.3,0,0,0,0,0.241,93.5,149.70000000000002,0.14,990,5,325,0.7000000000000001 +2020,1,11,20,0,24.3,1.49,0.18380000000000002,0.64,0,0,0,7,23.1,0,0,0,0,0.241,93.25,137.27,0.14,990,5,341,0.6000000000000001 +2020,1,11,21,0,24.1,1.48,0.1826,0.64,0,0,0,7,23,0,0,0,0,0.241,93.41,123.85000000000001,0.14,990,5,2,0.7000000000000001 +2020,1,11,22,0,23.900000000000002,1.48,0.18230000000000002,0.64,0,0,0,8,22.8,0,0,0,0,0.242,93.79,110.06,0.14,991,5,16,0.7000000000000001 +2020,1,11,23,0,23.8,1.48,0.17700000000000002,0.64,0,0,0,8,23,0,0,0,0,0.242,95.3,96.15,0.14,991,5,25,0.7000000000000001 +2020,1,12,0,0,25.3,1.48,0.1796,0.64,47,270,84,3,24,49,122,3,66,0.243,92.55,82.16,0.14,992,4.9,28,1.1 +2020,1,12,1,0,26.700000000000003,1.5,0.1756,0.64,96,582,310,0,24,96,582,0,310,0.244,85.39,68.5,0.14,993,4.9,29,1.2000000000000002 +2020,1,12,2,0,27.900000000000002,1.52,0.1585,0.64,117,743,542,3,23.8,244,339,0,438,0.243,78.53,55.17,0.14,993,4.9,24,1.3 +2020,1,12,3,0,28.700000000000003,1.47,0.26930000000000004,0.64,176,738,719,8,23.700000000000003,345,327,0,585,0.242,74.3,42.65,0.14,992,4.9,19,1.3 +2020,1,12,4,0,29.5,1.47,0.2472,0.64,180,798,857,6,23.8,430,273,0,662,0.242,71.34,31.94,0.14,992,4.9,13,1.2000000000000002 +2020,1,12,5,0,29.900000000000002,1.49,0.2197,0.64,174,835,927,7,23.8,455,317,0,740,0.242,69.79,25.53,0.14,991,4.9,8,1.3 +2020,1,12,6,0,29.900000000000002,1.51,0.2421,0.64,182,818,913,8,23.700000000000003,386,466,0,803,0.242,69.52,26.7,0.14,990,4.9,5,1.3 +2020,1,12,7,0,29.700000000000003,1.51,0.22970000000000002,0.64,168,800,826,7,23.6,406,301,0,654,0.242,69.92,34.71,0.14,989,5,6,1.3 +2020,1,12,8,0,29.5,1.52,0.22060000000000002,0.64,152,754,674,6,23.8,340,136,0,434,0.242,71.38,46.1,0.14,989,5,11,1.2000000000000002 +2020,1,12,9,0,29.200000000000003,1.54,0.2217,0.64,130,657,469,6,24.1,228,251,0,358,0.243,74.27,58.92,0.14,989,5,22,1.1 +2020,1,12,10,0,28.1,1.57,0.2141,0.64,92,482,238,6,24,117,33,0,127,0.243,78.5,72.39,0.14,989,5.1000000000000005,28,1 +2020,1,12,11,0,26.700000000000003,1.59,0.2146,0.64,25,117,33,7,24.1,20,0,3,20,0.244,85.61,86.05,0.14,990,5.2,30,0.7000000000000001 +2020,1,12,12,0,26.3,1.6,0.2225,0.64,0,0,0,7,23.6,0,0,0,0,0.244,84.96000000000001,100.15,0.14,990,5.2,39,0.7000000000000001 +2020,1,12,13,0,25.900000000000002,1.6,0.23340000000000002,0.64,0,0,0,8,23.3,0,0,0,0,0.244,85.74,114.05,0.14,991,5.300000000000001,51,0.6000000000000001 +2020,1,12,14,0,25.400000000000002,1.61,0.2461,0.64,0,0,0,3,23.3,0,0,0,0,0.244,87.94,127.78,0.14,991,5.300000000000001,58,0.6000000000000001 +2020,1,12,15,0,24.900000000000002,1.61,0.2592,0.64,0,0,0,0,23.200000000000003,0,0,0,0,0.245,90.10000000000001,141.03,0.14,991,5.300000000000001,63,0.6000000000000001 +2020,1,12,16,0,24.400000000000002,1.61,0.27290000000000003,0.64,0,0,0,3,23,0,0,0,0,0.245,91.98,152.97,0.14,991,5.2,65,0.5 +2020,1,12,17,0,24,1.6,0.2882,0.64,0,0,0,3,22.900000000000002,0,0,0,0,0.245,93.38,160.88,0.14,990,5.2,61,0.5 +2020,1,12,18,0,23.700000000000003,1.59,0.3035,0.64,0,0,0,8,22.700000000000003,0,0,0,0,0.245,94.41,159.39000000000001,0.14,990,5.1000000000000005,55,0.6000000000000001 +2020,1,12,19,0,23.3,1.58,0.3125,0.64,0,0,0,3,22.6,0,0,0,0,0.246,95.81,149.86,0.14,989,5,46,0.6000000000000001 +2020,1,12,20,0,23.1,1.59,0.3161,0.64,0,0,0,3,22.400000000000002,0,0,0,0,0.246,96.11,137.41,0.14,989,5,40,0.6000000000000001 +2020,1,12,21,0,22.900000000000002,1.6,0.3181,0.64,0,0,0,3,22.3,0,0,0,0,0.247,96.37,123.97,0.14,989,4.9,37,0.6000000000000001 +2020,1,12,22,0,22.700000000000003,1.61,0.3196,0.64,0,0,0,3,22.1,0,0,0,0,0.247,96.48,110.17,0.14,990,4.800000000000001,33,0.7000000000000001 +2020,1,12,23,0,22.900000000000002,1.6300000000000001,0.3185,0.64,0,0,0,3,22.3,0,0,0,0,0.247,96.55,96.24000000000001,0.14,990,4.800000000000001,31,0.8 +2020,1,13,0,0,24.3,1.6400000000000001,0.31870000000000004,0.64,51,185,76,3,23.200000000000003,49,96,3,62,0.247,93.67,82.22,0.15,991,4.7,30,1.5 +2020,1,13,1,0,25.8,1.67,0.3135,0.64,122,473,295,1,23.3,122,473,0,295,0.247,86.34,68.55,0.15,992,4.7,35,1.8 +2020,1,13,2,0,27.400000000000002,1.68,0.3078,0.64,161,633,523,3,22.900000000000002,239,361,1,445,0.247,76.54,55.2,0.15,992,4.6000000000000005,40,1.9000000000000001 +2020,1,13,3,0,28.6,1.68,0.309,0.64,186,719,715,3,22.700000000000003,345,324,0,584,0.246,70.47,42.64,0.15,992,4.6000000000000005,41,1.9000000000000001 +2020,1,13,4,0,29.5,1.67,0.314,0.64,204,763,852,8,22.8,437,240,0,641,0.245,67.2,31.88,0.15,991,4.6000000000000005,41,1.8 +2020,1,13,5,0,30.1,1.6600000000000001,0.3195,0.64,213,780,917,8,23,450,335,0,752,0.245,65.78,25.39,0.15,990,4.6000000000000005,40,1.6 +2020,1,13,6,0,30.400000000000002,1.6400000000000001,0.3206,0.64,212,775,906,8,23.3,473,190,0,644,0.244,65.71000000000001,26.52,0.15,989,4.7,41,1.4000000000000001 +2020,1,13,7,0,30.3,1.6300000000000001,0.3079,0.64,199,756,822,7,23.3,331,27,0,353,0.244,66.25,34.53,0.15,988,4.7,43,1.4000000000000001 +2020,1,13,8,0,29.900000000000002,1.62,0.30060000000000003,0.64,182,703,671,8,23.400000000000002,318,338,0,553,0.244,68.33,45.94,0.15,988,4.800000000000001,48,1.4000000000000001 +2020,1,13,9,0,29.400000000000002,1.62,0.2893,0.64,150,610,466,4,24,220,314,0,382,0.243,72.61,58.79,0.15,988,4.800000000000001,54,1.3 +2020,1,13,10,0,28.200000000000003,1.6,0.29450000000000004,0.64,106,421,234,7,24,119,234,0,190,0.243,77.8,72.27,0.15,989,4.9,60,1.2000000000000002 +2020,1,13,11,0,26.6,1.58,0.29650000000000004,0.64,26,86,32,7,24.200000000000003,25,58,3,29,0.244,86.84,85.95,0.15,990,5,66,0.8 +2020,1,13,12,0,26,1.55,0.29860000000000003,0.64,0,0,0,7,23.900000000000002,0,0,0,0,0.245,88.27,100.06,0.15,990,5.1000000000000005,67,0.8 +2020,1,13,13,0,25.400000000000002,1.53,0.2841,0.64,0,0,0,8,23.8,0,0,0,0,0.245,90.79,113.98,0.15,991,5.1000000000000005,66,0.9 +2020,1,13,14,0,24.8,1.53,0.25980000000000003,0.64,0,0,0,8,23.6,0,0,0,0,0.246,93.01,127.73,0.15,992,5.2,61,1 +2020,1,13,15,0,24.3,1.52,0.2369,0.64,0,0,0,4,23.3,0,0,0,0,0.247,94.44,141.01,0.15,992,5.1000000000000005,57,1 +2020,1,13,16,0,23.8,1.52,0.21430000000000002,0.64,0,0,0,3,23.1,0,0,0,0,0.248,96,153.01,0.15,992,5.1000000000000005,52,1.1 +2020,1,13,17,0,23.5,1.54,0.1904,0.64,0,0,0,8,22.900000000000002,0,0,0,0,0.249,96.28,161.01,0.15,991,5,48,1.2000000000000002 +2020,1,13,18,0,23.1,1.56,0.1714,0.64,0,0,0,8,22.6,0,0,0,0,0.249,97.13,159.58,0.15,991,4.9,46,1.3 +2020,1,13,19,0,22.900000000000002,1.58,0.1521,0.64,0,0,0,4,22.400000000000002,0,0,0,0,0.25,96.93,150.03,0.15,990,4.800000000000001,44,1.4000000000000001 +2020,1,13,20,0,22.6,1.61,0.1353,0.64,0,0,0,3,22.200000000000003,0,0,0,0,0.25,97.60000000000001,137.55,0.15,990,4.7,40,1.4000000000000001 +2020,1,13,21,0,22.5,1.62,0.1263,0.64,0,0,0,3,22,0,0,0,0,0.25,97.19,124.09,0.15,990,4.7,36,1.4000000000000001 +2020,1,13,22,0,22.3,1.62,0.1211,0.64,0,0,0,3,21.900000000000002,0,0,0,0,0.249,97.4,110.27,0.15,990,4.6000000000000005,32,1.3 +2020,1,13,23,0,22.6,1.62,0.12000000000000001,0.64,0,0,0,0,22,0,0,0,0,0.249,96.21000000000001,96.32000000000001,0.15,991,4.6000000000000005,31,1.4000000000000001 +2020,1,14,0,0,24.200000000000003,1.59,0.1273,0.64,42,326,86,0,22.6,42,326,0,86,0.249,90.71000000000001,82.29,0.15,992,4.6000000000000005,38,2.2 +2020,1,14,1,0,25.8,1.58,0.1321,0.64,85,630,315,0,23,85,630,0,315,0.249,84.33,68.60000000000001,0.15,993,4.6000000000000005,46,2.6 +2020,1,14,2,0,27.200000000000003,1.59,0.13340000000000002,0.64,108,768,546,8,23,215,459,0,477,0.249,77.65,55.22,0.15,993,4.7,47,2.5 +2020,1,14,3,0,28.400000000000002,1.41,0.2632,0.64,175,742,721,0,22.900000000000002,175,742,0,721,0.248,72.12,42.62,0.15,993,4.7,47,2.2 +2020,1,14,4,0,29.400000000000002,1.43,0.2533,0.64,182,795,858,0,22.8,182,795,0,858,0.247,67.74,31.810000000000002,0.15,992,4.7,48,1.9000000000000001 +2020,1,14,5,0,30.200000000000003,1.44,0.251,0.64,188,816,926,3,22.700000000000003,480,179,0,641,0.246,64.41,25.240000000000002,0.15,991,4.800000000000001,50,1.7000000000000002 +2020,1,14,6,0,30.5,1.45,0.2962,0.64,205,785,909,3,22.8,461,104,0,554,0.245,63.47,26.330000000000002,0.15,990,4.800000000000001,52,1.4000000000000001 +2020,1,14,7,0,30.6,1.43,0.3138,0.64,204,747,821,3,22.6,416,269,0,638,0.245,62.6,34.35,0.15,989,4.800000000000001,54,1.2000000000000002 +2020,1,14,8,0,30.3,1.41,0.328,0.64,194,680,668,3,22.5,288,442,0,596,0.245,63.21,45.79,0.15,989,4.800000000000001,57,1.1 +2020,1,14,9,0,30,1.41,0.33130000000000004,0.64,165,574,464,3,23.1,209,373,0,403,0.245,66.55,58.65,0.15,989,4.800000000000001,62,1 +2020,1,14,10,0,28.700000000000003,1.4000000000000001,0.3261,0.64,114,391,234,3,23.200000000000003,114,292,0,204,0.245,72.02,72.15,0.15,989,4.800000000000001,66,0.9 +2020,1,14,11,0,27.1,1.3900000000000001,0.3065,0.64,27,76,32,8,23.700000000000003,26,31,3,28,0.244,81.72,85.85000000000001,0.15,990,4.7,75,0.6000000000000001 +2020,1,14,12,0,26.200000000000003,1.3800000000000001,0.28340000000000004,0.64,0,0,0,3,23.3,0,0,0,0,0.244,84.13,99.97,0.15,991,4.7,81,0.7000000000000001 +2020,1,14,13,0,25.6,1.35,0.2548,0.64,0,0,0,3,23.3,0,0,0,0,0.245,87.03,113.91,0.15,991,4.6000000000000005,81,0.9 +2020,1,14,14,0,25,1.29,0.2348,0.64,0,0,0,8,23.3,0,0,0,0,0.245,90.25,127.69,0.15,992,4.6000000000000005,77,1 +2020,1,14,15,0,24.5,1.23,0.2265,0.64,0,0,0,8,23.3,0,0,0,0,0.245,92.78,141,0.15,992,4.6000000000000005,72,1 +2020,1,14,16,0,24.200000000000003,1.2,0.2199,0.64,0,0,0,7,23.200000000000003,0,0,0,0,0.246,94.06,153.05,0.15,992,4.6000000000000005,65,0.9 +2020,1,14,17,0,23.900000000000002,1.17,0.20900000000000002,0.64,0,0,0,7,23.1,0,0,0,0,0.246,95.07000000000001,161.15,0.15,992,4.6000000000000005,57,0.9 +2020,1,14,18,0,23.5,1.16,0.2029,0.64,0,0,0,8,22.900000000000002,0,0,0,0,0.246,96.41,159.77,0.15,991,4.6000000000000005,49,1 +2020,1,14,19,0,23.3,1.1400000000000001,0.19720000000000001,0.64,0,0,0,7,22.8,0,0,0,0,0.246,96.78,150.20000000000002,0.15,991,4.6000000000000005,43,1 +2020,1,14,20,0,23.1,1.1300000000000001,0.18660000000000002,0.64,0,0,0,7,22.6,0,0,0,0,0.246,96.85000000000001,137.69,0.15,991,4.6000000000000005,39,1.2000000000000002 +2020,1,14,21,0,22.900000000000002,1.11,0.1812,0.64,0,0,0,7,22.400000000000002,0,0,0,0,0.246,97.12,124.21000000000001,0.15,991,4.6000000000000005,37,1.3 +2020,1,14,22,0,22.8,1.11,0.1773,0.64,0,0,0,6,22.3,0,0,0,0,0.246,96.95,110.37,0.15,991,4.6000000000000005,36,1.3 +2020,1,14,23,0,23,1.1,0.1696,0.64,0,0,0,7,22.400000000000002,0,0,0,0,0.247,96.18,96.4,0.15,992,4.6000000000000005,37,1.5 +2020,1,15,0,0,24.5,1.12,0.15810000000000002,0.64,48,266,83,7,22.700000000000003,48,52,3,55,0.247,89.59,82.36,0.15,992,4.6000000000000005,40,2.4000000000000004 +2020,1,15,1,0,25.900000000000002,1.1500000000000001,0.14170000000000002,0.64,91,608,313,8,22.900000000000002,132,364,0,264,0.247,83.62,68.64,0.15,993,4.6000000000000005,44,2.7 +2020,1,15,2,0,27.3,1.18,0.12940000000000002,0.64,111,767,548,8,23.1,221,434,0,469,0.247,77.71000000000001,55.24,0.15,993,4.6000000000000005,46,2.6 +2020,1,15,3,0,28.5,1.34,0.1958,0.64,150,791,732,8,23.1,259,565,0,675,0.246,72.75,42.61,0.15,993,4.6000000000000005,50,2.4000000000000004 +2020,1,15,4,0,29.400000000000002,1.35,0.1855,0.64,157,841,872,8,23.200000000000003,409,354,0,710,0.246,69.22,31.740000000000002,0.15,993,4.6000000000000005,54,2.1 +2020,1,15,5,0,30.1,1.34,0.1767,0.64,157,865,941,3,23.200000000000003,474,242,0,693,0.246,66.66,25.09,0.15,992,4.6000000000000005,54,1.8 +2020,1,15,6,0,30.400000000000002,1.37,0.2038,0.64,168,844,926,8,23.200000000000003,444,340,0,750,0.246,65.57000000000001,26.13,0.15,991,4.7,53,1.5 +2020,1,15,7,0,30.400000000000002,1.36,0.19090000000000001,0.64,157,829,843,8,23.200000000000003,405,320,0,669,0.246,65.36,34.17,0.15,990,4.7,52,1.3 +2020,1,15,8,0,30.1,1.36,0.1845,0.64,142,782,689,3,23.200000000000003,271,482,0,608,0.247,66.71000000000001,45.63,0.15,989,4.800000000000001,52,1.3 +2020,1,15,9,0,29.700000000000003,1.36,0.18510000000000001,0.64,123,688,482,3,23.700000000000003,183,491,0,439,0.248,70.43,58.52,0.15,989,4.9,51,1.2000000000000002 +2020,1,15,10,0,28.400000000000002,1.35,0.1841,0.64,90,510,247,3,23.8,114,306,0,208,0.249,76.19,72.03,0.15,990,4.9,52,1.1 +2020,1,15,11,0,26.8,1.34,0.1857,0.64,28,130,37,3,24.200000000000003,26,66,3,31,0.25,85.8,85.75,0.15,991,4.9,54,0.7000000000000001 +2020,1,15,12,0,26.200000000000003,1.33,0.1875,0.64,0,0,0,1,24,0,0,0,0,0.25,87.89,99.89,0.15,991,5,54,0.8 +2020,1,15,13,0,25.6,1.32,0.1874,0.64,0,0,0,0,23.900000000000002,0,0,0,0,0.251,90.18,113.85000000000001,0.15,992,5,54,0.9 +2020,1,15,14,0,25.1,1.32,0.1835,0.64,0,0,0,0,23.8,0,0,0,0,0.25,92.26,127.65,0.15,992,5,53,0.9 +2020,1,15,15,0,24.6,1.32,0.18130000000000002,0.64,0,0,0,0,23.6,0,0,0,0,0.249,93.99,140.99,0.15,992,4.9,49,0.9 +2020,1,15,16,0,24.1,1.34,0.1763,0.64,0,0,0,0,23.3,0,0,0,0,0.248,95.58,153.1,0.15,992,4.800000000000001,46,1 +2020,1,15,17,0,23.8,1.35,0.1678,0.64,0,0,0,0,23.1,0,0,0,0,0.246,96.12,161.3,0.15,992,4.7,42,1 +2020,1,15,18,0,23.5,1.37,0.16010000000000002,0.64,0,0,0,0,22.900000000000002,0,0,0,0,0.245,96.32000000000001,159.97,0.15,991,4.6000000000000005,39,1.1 +2020,1,15,19,0,23.1,1.3900000000000001,0.1504,0.64,0,0,0,0,22.6,0,0,0,0,0.245,96.98,150.37,0.15,990,4.6000000000000005,36,1.2000000000000002 +2020,1,15,20,0,22.8,1.42,0.1381,0.64,0,0,0,0,22.3,0,0,0,0,0.245,96.99000000000001,137.82,0.15,990,4.5,34,1.2000000000000002 +2020,1,15,21,0,22.5,1.44,0.1277,0.64,0,0,0,0,22,0,0,0,0,0.244,96.83,124.32000000000001,0.15,990,4.5,33,1.2000000000000002 +2020,1,15,22,0,22.200000000000003,1.46,0.1199,0.64,0,0,0,0,21.700000000000003,0,0,0,0,0.244,96.87,110.46000000000001,0.15,991,4.5,33,1.1 +2020,1,15,23,0,22.400000000000002,1.47,0.114,0.64,0,0,0,0,21.700000000000003,0,0,0,0,0.243,95.97,96.48,0.15,991,4.5,31,1.3 +2020,1,16,0,0,23.700000000000003,1.48,0.10980000000000001,0.64,41,340,85,0,22.400000000000002,41,340,0,85,0.243,92.32000000000001,82.42,0.14,992,4.5,30,2.2 +2020,1,16,1,0,25.3,1.5,0.1051,0.64,78,659,318,0,22.6,78,659,0,318,0.243,85.25,68.68,0.14,993,4.5,32,2.4000000000000004 +2020,1,16,2,0,27.3,1.52,0.10310000000000001,0.64,97,797,551,0,22.5,97,797,0,551,0.243,75.10000000000001,55.26,0.14,993,4.6000000000000005,34,2.2 +2020,1,16,3,0,28.900000000000002,1.47,0.2056,0.64,151,786,730,0,22.6,151,786,0,730,0.242,68.9,42.58,0.14,993,4.6000000000000005,33,1.7000000000000002 +2020,1,16,4,0,29.900000000000002,1.45,0.2102,0.64,166,825,868,0,22.900000000000002,166,825,0,868,0.242,66.18,31.66,0.14,993,4.7,36,1.2000000000000002 +2020,1,16,5,0,30.6,1.43,0.20520000000000002,0.64,168,846,935,3,23.1,358,25,0,381,0.241,64.33,24.93,0.14,992,4.800000000000001,41,0.8 +2020,1,16,6,0,30.8,1.46,0.24130000000000001,0.64,182,820,919,3,23.200000000000003,473,142,0,601,0.241,63.96,25.93,0.14,991,4.9,49,0.6000000000000001 +2020,1,16,7,0,30.700000000000003,1.46,0.23040000000000002,0.64,171,802,836,3,23.200000000000003,246,12,0,256,0.24,64.44,33.980000000000004,0.14,990,4.9,59,0.6000000000000001 +2020,1,16,8,0,30.400000000000002,1.46,0.2199,0.64,154,757,685,3,23.3,315,56,0,354,0.24,65.86,45.47,0.14,990,5,66,0.7000000000000001 +2020,1,16,9,0,30.1,1.47,0.217,0.64,131,663,479,3,23.8,199,429,0,424,0.24,69.01,58.38,0.14,990,5.1000000000000005,66,0.8 +2020,1,16,10,0,29.1,1.47,0.21880000000000002,0.64,96,482,246,8,23.8,108,361,0,220,0.24,72.97,71.92,0.14,990,5.1000000000000005,62,0.8 +2020,1,16,11,0,27.6,1.47,0.21300000000000002,0.64,28,124,37,1,24.200000000000003,28,124,0,37,0.24,81.85000000000001,85.66,0.14,991,5.2,63,0.6000000000000001 +2020,1,16,12,0,26.900000000000002,1.48,0.21280000000000002,0.64,0,0,0,3,24,0,0,0,0,0.24,84.41,99.81,0.14,991,5.2,65,0.6000000000000001 +2020,1,16,13,0,26.3,1.48,0.2099,0.64,0,0,0,0,23.900000000000002,0,0,0,0,0.241,86.46000000000001,113.79,0.14,992,5.2,66,0.6000000000000001 +2020,1,16,14,0,25.700000000000003,1.47,0.2033,0.64,0,0,0,0,23.700000000000003,0,0,0,0,0.241,88.84,127.61,0.14,993,5.2,66,0.7000000000000001 +2020,1,16,15,0,25.200000000000003,1.47,0.20140000000000002,0.64,0,0,0,0,23.6,0,0,0,0,0.241,90.99,140.99,0.14,993,5.1000000000000005,66,0.8 +2020,1,16,16,0,24.700000000000003,1.46,0.2049,0.64,0,0,0,0,23.5,0,0,0,0,0.241,93.03,153.15,0.14,993,5.1000000000000005,64,0.9 +2020,1,16,17,0,24.200000000000003,1.44,0.2089,0.64,0,0,0,0,23.3,0,0,0,0,0.241,94.93,161.45000000000002,0.14,992,5,57,0.9 +2020,1,16,18,0,23.900000000000002,1.44,0.2076,0.64,0,0,0,0,23.200000000000003,0,0,0,0,0.24,95.71000000000001,160.17000000000002,0.14,992,4.9,49,0.9 +2020,1,16,19,0,23.6,1.45,0.1923,0.64,0,0,0,0,23,0,0,0,0,0.23900000000000002,96.55,150.54,0.14,991,4.800000000000001,40,1 +2020,1,16,20,0,23.400000000000002,1.47,0.1713,0.64,0,0,0,0,22.900000000000002,0,0,0,0,0.23800000000000002,96.82000000000001,137.96,0.14,991,4.7,34,1.1 +2020,1,16,21,0,23.200000000000003,1.49,0.1607,0.64,0,0,0,0,22.700000000000003,0,0,0,0,0.23800000000000002,96.89,124.44,0.14,991,4.7,31,1.1 +2020,1,16,22,0,22.900000000000002,1.5,0.1557,0.64,0,0,0,0,22.5,0,0,0,0,0.23800000000000002,97.55,110.56,0.14,992,4.6000000000000005,31,1.1 +2020,1,16,23,0,23.200000000000003,1.53,0.1517,0.64,0,0,0,0,22.5,0,0,0,0,0.23800000000000002,96.12,96.56,0.14,992,4.6000000000000005,31,1.2000000000000002 +2020,1,17,0,0,24.6,1.55,0.1505,0.64,44,293,82,0,23,44,293,0,82,0.23800000000000002,90.87,82.47,0.14,993,4.6000000000000005,31,2.2 +2020,1,17,1,0,26.1,1.58,0.1451,0.64,88,614,310,0,23.1,88,614,0,310,0.23900000000000002,83.68,68.72,0.14,994,4.6000000000000005,35,2.4000000000000004 +2020,1,17,2,0,27.8,1.61,0.1419,0.64,111,761,544,0,23.1,111,761,0,544,0.23900000000000002,75.64,55.27,0.14,994,4.6000000000000005,37,2.2 +2020,1,17,3,0,29,1.62,0.198,0.64,146,794,731,0,23.200000000000003,146,794,0,731,0.23900000000000002,71.01,42.56,0.14,994,4.6000000000000005,38,2 +2020,1,17,4,0,29.900000000000002,1.6300000000000001,0.1962,0.64,156,838,870,0,23.400000000000002,156,838,0,870,0.23900000000000002,67.99,31.57,0.14,993,4.6000000000000005,39,1.9000000000000001 +2020,1,17,5,0,30.5,1.6300000000000001,0.1981,0.64,161,854,937,0,23.5,161,854,0,937,0.23900000000000002,66.15,24.76,0.14,992,4.7,39,1.8 +2020,1,17,6,0,30.8,1.6400000000000001,0.2275,0.64,173,833,923,0,23.5,173,833,0,923,0.23900000000000002,65.23,25.72,0.14,991,4.7,40,1.7000000000000002 +2020,1,17,7,0,30.700000000000003,1.6400000000000001,0.231,0.64,168,807,838,3,23.400000000000002,422,255,0,634,0.23900000000000002,65.33,33.79,0.14,991,4.7,42,1.7000000000000002 +2020,1,17,8,0,30.3,1.6400000000000001,0.233,0.64,155,754,685,0,23.400000000000002,155,754,0,685,0.23900000000000002,66.64,45.31,0.14,990,4.7,44,1.6 +2020,1,17,9,0,29.8,1.6500000000000001,0.22890000000000002,0.64,133,661,481,0,23.8,133,661,0,481,0.24,70.14,58.25,0.14,990,4.800000000000001,45,1.4000000000000001 +2020,1,17,10,0,28.6,1.6600000000000001,0.2185,0.64,93,493,247,0,23.700000000000003,93,493,0,247,0.24,74.75,71.81,0.14,991,4.800000000000001,45,1.1 +2020,1,17,11,0,26.8,1.67,0.2081,0.64,27,143,38,0,23.900000000000002,27,143,0,38,0.242,84.32000000000001,85.56,0.14,991,4.800000000000001,48,0.7000000000000001 +2020,1,17,12,0,26.200000000000003,1.68,0.1962,0.64,0,0,0,0,23.6,0,0,0,0,0.243,85.55,99.73,0.14,992,4.800000000000001,49,0.7000000000000001 +2020,1,17,13,0,25.6,1.68,0.18180000000000002,0.64,0,0,0,0,23.400000000000002,0,0,0,0,0.245,87.46000000000001,113.73,0.14,993,4.800000000000001,47,0.7000000000000001 +2020,1,17,14,0,25.1,1.69,0.1656,0.64,0,0,0,0,23.3,0,0,0,0,0.246,89.58,127.57000000000001,0.14,993,4.9,42,0.7000000000000001 +2020,1,17,15,0,24.5,1.68,0.1515,0.64,0,0,0,0,23.200000000000003,0,0,0,0,0.247,92.24,140.98,0.14,993,4.9,37,0.8 +2020,1,17,16,0,24.1,1.67,0.1384,0.64,0,0,0,0,23.1,0,0,0,0,0.247,93.9,153.21,0.14,992,4.9,34,0.9 +2020,1,17,17,0,23.8,1.67,0.129,0.64,0,0,0,0,23,0,0,0,0,0.247,95.31,161.61,0.14,992,4.800000000000001,32,1.1 +2020,1,17,18,0,23.5,1.67,0.12490000000000001,0.64,0,0,0,0,22.900000000000002,0,0,0,0,0.246,96.60000000000001,160.38,0.14,991,4.800000000000001,30,1.2000000000000002 +2020,1,17,19,0,23.200000000000003,1.68,0.124,0.64,0,0,0,0,22.8,0,0,0,0,0.246,97.61,150.71,0.14,990,4.7,30,1.2000000000000002 +2020,1,17,20,0,23,1.68,0.1211,0.64,0,0,0,0,22.700000000000003,0,0,0,0,0.245,97.96000000000001,138.1,0.14,990,4.7,30,1.1 +2020,1,17,21,0,22.8,1.68,0.1178,0.64,0,0,0,0,22.5,0,0,0,0,0.245,98.14,124.55,0.14,991,4.7,30,1.1 +2020,1,17,22,0,22.6,1.68,0.1125,0.64,0,0,0,0,22.3,0,0,0,0,0.245,98.04,110.65,0.14,991,4.7,27,0.9 +2020,1,17,23,0,23,1.68,0.1058,0.64,0,0,0,0,22.400000000000002,0,0,0,0,0.245,96.53,96.64,0.14,992,4.800000000000001,25,0.9 +2020,1,18,0,0,24.8,1.68,0.1004,0.64,38,352,84,0,23.1,38,352,0,84,0.245,90.14,82.53,0.14,993,4.800000000000001,28,1.7000000000000002 +2020,1,18,1,0,26.5,1.67,0.09570000000000001,0.64,74,667,316,0,23.3,74,667,0,316,0.246,82.86,68.76,0.14,993,4.9,37,2.2 +2020,1,18,2,0,27.900000000000002,1.6600000000000001,0.091,0.64,92,807,551,0,23.400000000000002,92,807,0,551,0.246,76.73,55.28,0.14,993,4.9,41,2.3000000000000003 +2020,1,18,3,0,28.900000000000002,1.56,0.171,0.64,138,809,735,0,23.6,138,809,0,735,0.246,73.3,42.53,0.14,993,5,42,2 +2020,1,18,4,0,29.700000000000003,1.55,0.153,0.64,139,864,876,0,23.900000000000002,139,864,0,876,0.247,70.96000000000001,31.48,0.14,992,5,42,1.7000000000000002 +2020,1,18,5,0,30.3,1.54,0.1375,0.64,137,891,947,1,24.1,137,891,0,947,0.247,69.4,24.59,0.14,992,5.1000000000000005,46,1.3 +2020,1,18,6,0,30.700000000000003,1.51,0.1956,0.64,163,848,928,3,24.1,463,100,0,553,0.247,68.1,25.51,0.14,991,5.2,51,1.1 +2020,1,18,7,0,30.700000000000003,1.5,0.1817,0.64,151,834,846,3,24.1,429,215,0,609,0.247,68.11,33.6,0.14,990,5.300000000000001,59,1 +2020,1,18,8,0,30.400000000000002,1.49,0.17600000000000002,0.64,138,789,694,3,24.200000000000003,91,0,0,91,0.247,69.55,45.15,0.14,989,5.4,69,1.1 +2020,1,18,9,0,30.1,1.49,0.17980000000000002,0.64,120,695,487,0,24.900000000000002,120,695,0,487,0.247,73.61,58.11,0.14,989,5.5,78,1 +2020,1,18,10,0,28.900000000000002,1.49,0.1837,0.64,90,517,252,0,24.700000000000003,90,517,0,252,0.247,78.33,71.69,0.14,990,5.6000000000000005,81,1.1 +2020,1,18,11,0,27.3,1.49,0.1835,0.64,29,148,40,3,25.400000000000002,22,0,3,22,0.246,89.3,85.47,0.14,991,5.7,89,0.8 +2020,1,18,12,0,26.700000000000003,1.47,0.19060000000000002,0.64,0,0,0,6,25.200000000000003,0,0,0,0,0.246,91.38,99.65,0.14,991,5.800000000000001,92,0.8 +2020,1,18,13,0,26.3,1.44,0.1865,0.64,0,0,0,6,24.900000000000002,0,0,0,0,0.246,92.14,113.67,0.14,992,5.800000000000001,89,0.8 +2020,1,18,14,0,25.900000000000002,1.41,0.1748,0.64,0,0,0,6,24.8,0,0,0,0,0.246,93.42,127.54,0.14,992,5.800000000000001,84,0.9 +2020,1,18,15,0,25.5,1.3900000000000001,0.1761,0.64,0,0,0,6,24.6,0,0,0,0,0.246,94.69,140.99,0.14,993,5.800000000000001,74,1 +2020,1,18,16,0,25,1.4000000000000001,0.16390000000000002,0.64,0,0,0,6,24.3,0,0,0,0,0.246,96.04,153.27,0.14,992,5.7,65,1 +2020,1,18,17,0,24.700000000000003,1.42,0.14650000000000002,0.64,0,0,0,6,24.1,0,0,0,0,0.246,96.46000000000001,161.77,0.14,992,5.6000000000000005,56,1.2000000000000002 +2020,1,18,18,0,24.400000000000002,1.43,0.1401,0.64,0,0,0,6,23.900000000000002,0,0,0,0,0.246,96.94,160.59,0.14,991,5.5,49,1.2000000000000002 +2020,1,18,19,0,24.1,1.46,0.1265,0.64,0,0,0,7,23.700000000000003,0,0,0,0,0.245,97.41,150.88,0.14,991,5.4,46,1.2000000000000002 +2020,1,18,20,0,23.900000000000002,1.49,0.10930000000000001,0.64,0,0,0,1,23.5,0,0,0,0,0.245,97.38,138.24,0.14,990,5.300000000000001,45,1.2000000000000002 +2020,1,18,21,0,23.700000000000003,1.5,0.1013,0.64,0,0,0,0,23.3,0,0,0,0,0.244,97.60000000000001,124.66,0.14,991,5.300000000000001,47,1.1 +2020,1,18,22,0,23.6,1.51,0.0913,0.64,0,0,0,0,23.1,0,0,0,0,0.244,97.2,110.74000000000001,0.14,991,5.2,49,1 +2020,1,18,23,0,23.8,1.52,0.08,0.64,0,0,0,0,23.3,0,0,0,0,0.243,96.87,96.71000000000001,0.14,991,5.2,51,1.2000000000000002 +2020,1,19,0,0,25.1,1.52,0.0795,0.64,37,373,85,0,24,37,373,0,85,0.243,93.71000000000001,82.58,0.14,992,5.2,52,2.1 +2020,1,19,1,0,26.400000000000002,1.51,0.077,0.64,70,686,318,0,24.400000000000002,70,686,0,318,0.244,88.76,68.79,0.14,993,5.2,58,2.7 +2020,1,19,2,0,27.900000000000002,1.51,0.0732,0.64,86,821,553,8,24.400000000000002,189,536,0,494,0.245,81.48,55.28,0.14,993,5.2,62,2.7 +2020,1,19,3,0,29,1.44,0.1534,0.64,132,819,736,3,24.5,323,405,0,622,0.245,76.74,42.49,0.14,993,5.300000000000001,64,2.5 +2020,1,19,4,0,29.900000000000002,1.45,0.1428,0.64,135,868,876,3,24.6,352,496,0,775,0.245,73.35000000000001,31.38,0.14,992,5.4,68,2.2 +2020,1,19,5,0,30.5,1.45,0.13290000000000002,0.64,135,892,947,1,24.700000000000003,135,892,0,947,0.245,71.2,24.41,0.14,992,5.4,71,1.9000000000000001 +2020,1,19,6,0,30.6,1.45,0.18000000000000002,0.64,156,856,930,8,24.8,460,301,0,732,0.244,71.06,25.29,0.14,991,5.6000000000000005,75,1.7000000000000002 +2020,1,19,7,0,30.6,1.43,0.17880000000000001,0.64,151,833,847,3,24.8,389,385,0,710,0.244,71.14,33.410000000000004,0.14,990,5.7,78,1.5 +2020,1,19,8,0,30.3,1.42,0.17800000000000002,0.64,140,785,695,3,24.8,251,543,0,635,0.244,72.64,44.99,0.14,990,5.800000000000001,82,1.4000000000000001 +2020,1,19,9,0,29.8,1.42,0.1849,0.64,123,688,488,8,25.5,172,538,0,457,0.244,77.55,57.980000000000004,0.14,990,5.9,85,1.2000000000000002 +2020,1,19,10,0,28.6,1.41,0.18960000000000002,0.64,92,509,253,8,25.3,125,229,0,197,0.245,82.41,71.58,0.14,990,6,86,1.1 +2020,1,19,11,0,27.200000000000003,1.41,0.18460000000000001,0.64,30,146,42,9,25.5,11,0,3,11,0.246,90.58,85.38,0.14,991,6.1000000000000005,88,0.8 +2020,1,19,12,0,26.700000000000003,1.4000000000000001,0.1825,0.64,0,0,0,6,25.3,0,0,0,0,0.247,92.17,99.58,0.14,992,6.1000000000000005,88,1 +2020,1,19,13,0,26.200000000000003,1.3800000000000001,0.1799,0.64,0,0,0,7,25.200000000000003,0,0,0,0,0.248,94.43,113.62,0.14,993,6.2,83,1.3 +2020,1,19,14,0,25.900000000000002,1.3800000000000001,0.1686,0.64,0,0,0,8,25,0,0,0,0,0.249,94.87,127.51,0.14,993,6.1000000000000005,76,1.5 +2020,1,19,15,0,25.5,1.3900000000000001,0.1652,0.64,0,0,0,7,24.700000000000003,0,0,0,0,0.249,95.62,140.99,0.14,993,6,68,1.7000000000000002 +2020,1,19,16,0,25.1,1.3900000000000001,0.1651,0.64,0,0,0,8,24.400000000000002,0,0,0,0,0.249,96.06,153.34,0.14,993,5.9,61,2.1 +2020,1,19,17,0,24.8,1.4000000000000001,0.1585,0.64,0,0,0,3,24.200000000000003,0,0,0,0,0.248,96.62,161.94,0.14,992,5.7,56,2 +2020,1,19,18,0,24.5,1.42,0.1534,0.64,0,0,0,0,24,0,0,0,0,0.248,97.09,160.81,0.14,991,5.6000000000000005,56,1.8 +2020,1,19,19,0,24.1,1.44,0.14830000000000002,0.64,0,0,0,0,23.8,0,0,0,0,0.247,97.97,151.06,0.14,990,5.4,57,1.7000000000000002 +2020,1,19,20,0,23.900000000000002,1.46,0.1448,0.64,0,0,0,0,23.5,0,0,0,0,0.245,97.71000000000001,138.38,0.14,990,5.4,55,1.6 +2020,1,19,21,0,23.900000000000002,1.47,0.15130000000000002,0.64,0,0,0,0,23.400000000000002,0,0,0,0,0.245,96.99000000000001,124.77,0.14,991,5.4,48,1.5 +2020,1,19,22,0,23.8,1.49,0.151,0.64,0,0,0,0,23.3,0,0,0,0,0.245,97.22,110.83,0.14,992,5.4,43,1.4000000000000001 +2020,1,19,23,0,24,1.51,0.1438,0.64,0,0,0,0,23.400000000000002,0,0,0,0,0.245,96.43,96.78,0.14,992,5.4,45,1.5 +2020,1,20,0,0,24.900000000000002,1.52,0.1404,0.64,42,292,80,0,23.900000000000002,42,292,0,80,0.246,94.09,82.63,0.14,993,5.300000000000001,48,2.3000000000000003 +2020,1,20,1,0,26.1,1.52,0.1381,0.64,87,613,308,0,24.1,87,613,0,308,0.246,89.01,68.81,0.14,993,5.300000000000001,52,2.8000000000000003 +2020,1,20,2,0,27.5,1.54,0.1356,0.64,110,759,542,0,24.1,110,759,0,542,0.247,81.81,55.28,0.14,994,5.300000000000001,53,2.9000000000000004 +2020,1,20,3,0,28.8,1.55,0.137,0.64,124,834,739,0,24.1,124,834,0,739,0.248,75.78,42.45,0.14,994,5.300000000000001,55,2.7 +2020,1,20,4,0,29.8,1.54,0.1365,0.64,132,873,879,0,24.200000000000003,132,873,0,879,0.249,71.96000000000001,31.28,0.14,993,5.4,60,2.5 +2020,1,20,5,0,30.400000000000002,1.52,0.1337,0.64,135,892,948,0,24.3,135,892,0,948,0.25,69.99,24.23,0.14,992,5.4,64,2.3000000000000003 +2020,1,20,6,0,30.700000000000003,1.49,0.1298,0.64,133,893,942,0,24.400000000000002,133,893,0,942,0.25,69.13,25.07,0.14,991,5.4,68,2.1 +2020,1,20,7,0,30.5,1.46,0.12810000000000002,0.64,128,873,858,0,24.400000000000002,128,873,0,858,0.251,69.9,33.22,0.14,990,5.5,72,1.8 +2020,1,20,8,0,30.1,1.43,0.1293,0.64,119,826,705,0,24.5,119,826,0,705,0.251,72,44.83,0.14,990,5.6000000000000005,76,1.6 +2020,1,20,9,0,29.400000000000002,1.3900000000000001,0.1441,0.64,109,726,496,0,24.900000000000002,109,726,0,496,0.25,76.82000000000001,57.85,0.14,990,5.7,77,1.3 +2020,1,20,10,0,28.3,1.34,0.1626,0.64,87,536,258,8,25.200000000000003,25,0,0,25,0.25,83.28,71.47,0.14,991,5.9,78,1.1 +2020,1,20,11,0,27.200000000000003,1.28,0.1801,0.64,31,145,43,8,25.200000000000003,20,0,3,20,0.249,89.09,85.29,0.14,992,6,81,1 +2020,1,20,12,0,26.700000000000003,1.22,0.2059,0.64,0,0,0,3,25.1,0,0,0,0,0.249,91.04,99.51,0.14,993,6.1000000000000005,82,1.3 +2020,1,20,13,0,26.200000000000003,1.19,0.2157,0.64,0,0,0,7,24.900000000000002,0,0,0,0,0.248,92.72,113.57000000000001,0.14,994,6.2,79,1.6 +2020,1,20,14,0,25.8,1.19,0.1986,0.64,0,0,0,6,24.8,0,0,0,0,0.248,93.98,127.48,0.14,995,6.1000000000000005,72,1.7000000000000002 +2020,1,20,15,0,25.3,1.21,0.18460000000000001,0.64,0,0,0,6,24.5,0,0,0,0,0.248,95.22,141,0.14,994,6,63,1.9000000000000001 +2020,1,20,16,0,24.900000000000002,1.24,0.1698,0.64,0,0,0,6,24.200000000000003,0,0,0,0,0.248,95.72,153.41,0.14,994,5.9,56,2 +2020,1,20,17,0,24.6,1.25,0.152,0.64,0,0,0,6,23.900000000000002,0,0,0,0,0.248,95.95,162.12,0.14,993,5.800000000000001,53,2 +2020,1,20,18,0,24.3,1.27,0.1418,0.64,0,0,0,6,23.700000000000003,0,0,0,0,0.247,96.52,161.03,0.14,993,5.7,52,1.8 +2020,1,20,19,0,24.1,1.28,0.1288,0.64,0,0,0,6,23.6,0,0,0,0,0.246,96.82000000000001,151.23,0.14,992,5.6000000000000005,49,1.6 +2020,1,20,20,0,24,1.3,0.11220000000000001,0.64,0,0,0,6,23.5,0,0,0,0,0.244,96.87,138.51,0.14,992,5.5,47,1.5 +2020,1,20,21,0,23.900000000000002,1.32,0.1022,0.64,0,0,0,6,23.400000000000002,0,0,0,0,0.243,96.93,124.88000000000001,0.14,992,5.4,45,1.5 +2020,1,20,22,0,23.900000000000002,1.33,0.09290000000000001,0.64,0,0,0,6,23.3,0,0,0,0,0.243,96.33,110.92,0.14,992,5.2,48,1.7000000000000002 +2020,1,20,23,0,24,1.35,0.082,0.64,0,0,0,7,23.3,0,0,0,0,0.242,95.8,96.84,0.14,993,4.9,51,2.1 +2020,1,21,0,0,24.900000000000002,1.3800000000000001,0.0753,0.64,37,375,85,7,23.6,45,52,3,52,0.242,92.25,82.68,0.14,994,4.7,54,2.7 +2020,1,21,1,0,26,1.42,0.069,0.64,68,699,321,8,23.700000000000003,129,371,0,263,0.244,87.03,68.84,0.14,995,4.6000000000000005,53,3 +2020,1,21,2,0,27.200000000000003,1.45,0.06860000000000001,0.64,85,830,558,8,23.700000000000003,248,314,0,427,0.244,81.10000000000001,55.27,0.14,995,4.6000000000000005,51,3 +2020,1,21,3,0,28.1,1.3900000000000001,0.09580000000000001,0.64,108,871,752,7,23.700000000000003,369,166,0,492,0.245,77.03,42.4,0.14,995,4.7,52,2.9000000000000004 +2020,1,21,4,0,28.700000000000003,1.3900000000000001,0.0954,0.64,115,907,892,8,23.8,364,459,0,757,0.244,74.83,31.17,0.14,995,4.9,55,2.7 +2020,1,21,5,0,28.900000000000002,1.3900000000000001,0.09620000000000001,0.64,119,920,959,3,23.900000000000002,468,97,0,557,0.244,74.33,24.04,0.14,994,5.2,58,2.6 +2020,1,21,6,0,28.900000000000002,1.34,0.2107,0.64,174,835,931,7,24,475,244,0,696,0.243,74.82000000000001,24.85,0.14,992,5.5,61,2.4000000000000004 +2020,1,21,7,0,28.6,1.32,0.21810000000000002,0.64,171,805,846,7,24.200000000000003,435,180,0,586,0.243,77.04,33.02,0.14,992,5.7,64,2.1 +2020,1,21,8,0,28.1,1.31,0.21960000000000002,0.64,158,752,693,7,24.400000000000002,347,236,0,515,0.242,80.42,44.67,0.14,991,5.9,67,1.8 +2020,1,21,9,0,27.6,1.32,0.22060000000000002,0.64,137,657,488,7,24.6,211,29,0,226,0.241,83.91,57.72,0.14,992,5.9,70,1.5 +2020,1,21,10,0,26.8,1.35,0.195,0.64,95,505,256,7,24.8,12,0,0,12,0.241,88.93,71.36,0.14,992,5.9,71,1.1 +2020,1,21,11,0,25.900000000000002,1.4000000000000001,0.1675,0.64,30,165,44,8,24.6,10,0,3,10,0.242,92.63,85.21000000000001,0.14,993,5.7,71,0.8 +2020,1,21,12,0,25.5,1.44,0.15480000000000002,0.64,0,0,0,7,24.400000000000002,0,0,0,0,0.242,93.42,99.44,0.14,994,5.6000000000000005,66,0.9 +2020,1,21,13,0,25.200000000000003,1.46,0.14780000000000001,0.64,0,0,0,7,24.1,0,0,0,0,0.243,93.84,113.52,0.14,994,5.5,58,0.9 +2020,1,21,14,0,24.900000000000002,1.49,0.1423,0.64,0,0,0,7,23.900000000000002,0,0,0,0,0.243,94.41,127.46000000000001,0.14,995,5.300000000000001,48,1 +2020,1,21,15,0,24.6,1.52,0.13670000000000002,0.64,0,0,0,7,23.700000000000003,0,0,0,0,0.243,94.95,141.02,0.14,995,5.2,41,1 +2020,1,21,16,0,24.200000000000003,1.55,0.12840000000000001,0.64,0,0,0,6,23.5,0,0,0,0,0.242,96.07000000000001,153.48,0.14,995,5.1000000000000005,39,1.1 +2020,1,21,17,0,23.8,1.58,0.11750000000000001,0.64,0,0,0,7,23.3,0,0,0,0,0.242,96.96000000000001,162.3,0.14,994,4.9,42,1.2000000000000002 +2020,1,21,18,0,23.400000000000002,1.59,0.1101,0.64,0,0,0,8,23,0,0,0,0,0.242,97.88,161.26,0.14,993,4.800000000000001,44,1.2000000000000002 +2020,1,21,19,0,23.1,1.6,0.1028,0.64,0,0,0,0,22.8,0,0,0,0,0.242,98.2,151.41,0.14,993,4.6000000000000005,45,1.2000000000000002 +2020,1,21,20,0,22.900000000000002,1.59,0.09570000000000001,0.64,0,0,0,7,22.6,0,0,0,0,0.242,98.06,138.65,0.14,992,4.5,44,1.2000000000000002 +2020,1,21,21,0,22.8,1.58,0.0944,0.64,0,0,0,7,22.400000000000002,0,0,0,0,0.243,97.77,124.99000000000001,0.14,993,4.5,45,1.2000000000000002 +2020,1,21,22,0,22.6,1.57,0.0927,0.64,0,0,0,7,22.3,0,0,0,0,0.243,98.01,111,0.14,993,4.4,46,1.2000000000000002 +2020,1,21,23,0,22.900000000000002,1.56,0.0882,0.64,0,0,0,7,22.400000000000002,0,0,0,0,0.243,96.91,96.91,0.14,994,4.3,46,1.3 +2020,1,22,0,0,24.5,1.55,0.0852,0.64,37,367,84,0,23,37,367,0,84,0.243,91.48,82.72,0.14,995,4.3,45,2.3000000000000003 +2020,1,22,1,0,26.1,1.55,0.07980000000000001,0.64,71,691,320,0,23.3,71,691,0,320,0.244,84.44,68.86,0.14,995,4.2,50,2.9000000000000004 +2020,1,22,2,0,27.6,1.55,0.07490000000000001,0.64,87,829,559,0,23.400000000000002,87,829,0,559,0.245,77.88,55.26,0.14,995,4.2,53,2.9000000000000004 +2020,1,22,3,0,28.8,1.5,0.08710000000000001,0.64,103,884,757,0,23.5,103,884,0,757,0.246,73.29,42.35,0.14,995,4.3,57,2.8000000000000003 +2020,1,22,4,0,29.700000000000003,1.51,0.0805,0.64,107,925,899,0,23.6,107,925,0,899,0.246,70.03,31.060000000000002,0.14,994,4.4,61,2.5 +2020,1,22,5,0,30.3,1.51,0.075,0.64,106,944,970,0,23.700000000000003,106,944,0,970,0.246,68.01,23.84,0.14,993,4.5,64,2.2 +2020,1,22,6,0,30.5,1.45,0.1008,0.64,120,920,956,0,23.900000000000002,120,920,0,956,0.246,67.89,24.61,0.14,992,4.7,67,2 +2020,1,22,7,0,30.5,1.44,0.09230000000000001,0.64,112,906,873,0,23.8,112,906,0,873,0.246,67.41,32.82,0.14,991,4.9,70,1.7000000000000002 +2020,1,22,8,0,30.3,1.43,0.0911,0.64,103,864,719,0,23.700000000000003,103,864,0,719,0.246,67.9,44.51,0.14,991,5,75,1.6 +2020,1,22,9,0,29.700000000000003,1.44,0.0883,0.64,89,789,512,0,24.1,89,789,0,512,0.247,71.82000000000001,57.59,0.14,991,5,77,1.4000000000000001 +2020,1,22,10,0,28.6,1.45,0.08360000000000001,0.64,67,641,273,0,24.5,67,641,0,273,0.247,78.76,71.26,0.14,991,5,79,1.1 +2020,1,22,11,0,26.900000000000002,1.45,0.0748,0.64,27,277,50,0,24.5,27,277,0,50,0.247,86.83,85.12,0.14,992,4.9,84,0.8 +2020,1,22,12,0,26.1,1.44,0.0682,0.64,0,0,0,3,24.3,0,0,0,0,0.247,89.64,99.37,0.14,993,4.800000000000001,88,0.8 +2020,1,22,13,0,25.5,1.42,0.0635,0.64,0,0,0,3,24.1,0,0,0,0,0.247,92.05,113.47,0.14,994,4.7,87,0.8 +2020,1,22,14,0,24.900000000000002,1.4000000000000001,0.060500000000000005,0.64,0,0,0,3,23.900000000000002,0,0,0,0,0.246,94.36,127.44,0.14,994,4.5,81,0.8 +2020,1,22,15,0,24.400000000000002,1.3900000000000001,0.0589,0.64,0,0,0,1,23.700000000000003,0,0,0,0,0.245,96,141.03,0.14,994,4.3,71,0.8 +2020,1,22,16,0,24,1.4000000000000001,0.056,0.64,0,0,0,1,23.5,0,0,0,0,0.244,96.95,153.56,0.14,994,4.2,59,0.9 +2020,1,22,17,0,23.6,1.41,0.0522,0.64,0,0,0,0,23.200000000000003,0,0,0,0,0.243,97.75,162.49,0.14,993,4.1000000000000005,46,0.9 +2020,1,22,18,0,23.200000000000003,1.43,0.0511,0.64,0,0,0,0,23,0,0,0,0,0.243,98.75,161.49,0.14,992,4.1000000000000005,32,1 +2020,1,22,19,0,22.900000000000002,1.45,0.051300000000000005,0.64,0,0,0,0,22.8,0,0,0,0,0.243,99.48,151.59,0.14,992,4.2,20,1 +2020,1,22,20,0,22.700000000000003,1.47,0.0507,0.64,0,0,0,0,22.700000000000003,0,0,0,0,0.243,99.75,138.78,0.14,991,4.2,14,1 +2020,1,22,21,0,22.5,1.49,0.0507,0.64,0,0,0,0,22.5,0,0,1,0,0.243,100,125.09,0.14,991,4.3,14,1 +2020,1,22,22,0,22.400000000000002,1.51,0.0502,0.64,0,0,0,1,22.400000000000002,0,0,0,0,0.243,99.98,111.08,0.14,992,4.3,18,1 +2020,1,22,23,0,22.900000000000002,1.52,0.049300000000000004,0.64,0,0,0,0,22.5,0,0,0,0,0.243,97.82000000000001,96.97,0.14,992,4.3,22,1.1 +2020,1,23,0,0,24.8,1.53,0.0483,0.64,33,427,87,0,23.200000000000003,33,427,0,87,0.244,90.65,82.76,0.14,993,4.3,29,2.1 +2020,1,23,1,0,26.6,1.54,0.0473,0.64,61,733,325,0,23.400000000000002,61,733,0,325,0.245,82.47,68.88,0.14,994,4.3,37,2.6 +2020,1,23,2,0,28,1.54,0.0478,0.64,76,855,563,0,23.5,76,855,0,563,0.245,76.51,55.25,0.14,994,4.4,44,2.7 +2020,1,23,3,0,29.1,1.4000000000000001,0.1336,0.64,125,843,748,0,23.6,125,843,0,748,0.245,72.3,42.300000000000004,0.14,994,4.4,49,2.5 +2020,1,23,4,0,30,1.3900000000000001,0.13970000000000002,0.64,136,878,889,0,23.700000000000003,136,878,0,889,0.246,69.14,30.94,0.14,993,4.5,52,2.3000000000000003 +2020,1,23,5,0,30.5,1.3900000000000001,0.14800000000000002,0.64,144,888,957,1,23.8,144,888,0,957,0.247,67.43,23.64,0.14,992,4.6000000000000005,53,2 +2020,1,23,6,0,30.700000000000003,1.45,0.1885,0.64,162,858,944,1,23.8,162,858,0,944,0.248,66.81,24.38,0.14,991,4.7,56,1.8 +2020,1,23,7,0,30.6,1.46,0.19390000000000002,0.64,159,832,860,0,23.700000000000003,159,832,0,860,0.249,66.66,32.62,0.14,990,4.7,59,1.5 +2020,1,23,8,0,30.3,1.46,0.1988,0.64,149,779,706,0,23.700000000000003,149,779,0,706,0.25,67.69,44.35,0.14,990,4.800000000000001,66,1.4000000000000001 +2020,1,23,9,0,29.8,1.47,0.20350000000000001,0.64,130,684,498,0,23.900000000000002,130,684,0,498,0.25,70.72,57.46,0.14,990,4.800000000000001,74,1.3 +2020,1,23,10,0,28.700000000000003,1.48,0.2078,0.64,97,507,261,3,24.3,114,3,0,115,0.25,77.11,71.15,0.14,991,4.800000000000001,78,1 +2020,1,23,11,0,27,1.48,0.2087,0.64,33,149,45,0,24.5,33,149,0,45,0.249,86.05,85.04,0.14,991,4.800000000000001,83,0.7000000000000001 +2020,1,23,12,0,26.400000000000002,1.48,0.2013,0.64,0,0,0,0,24.200000000000003,0,0,0,0,0.249,87.67,99.31,0.14,992,4.800000000000001,85,0.8 +2020,1,23,13,0,25.900000000000002,1.47,0.1971,0.64,0,0,0,0,24,0,0,0,0,0.249,89.10000000000001,113.43,0.14,993,4.7,83,0.8 +2020,1,23,14,0,25.3,1.44,0.18660000000000002,0.64,0,0,0,1,23.900000000000002,0,0,0,0,0.249,92.12,127.43,0.14,993,4.7,76,0.9 +2020,1,23,15,0,24.8,1.41,0.1778,0.64,0,0,0,0,23.700000000000003,0,0,0,0,0.249,93.79,141.05,0.14,993,4.6000000000000005,66,1.1 +2020,1,23,16,0,24.400000000000002,1.3900000000000001,0.1721,0.64,0,0,0,0,23.5,0,0,0,0,0.248,94.89,153.65,0.14,993,4.5,56,1.1 +2020,1,23,17,0,24.1,1.3800000000000001,0.1628,0.64,0,0,0,0,23.3,0,0,0,0,0.248,95.06,162.68,0.14,992,4.4,45,1.4000000000000001 +2020,1,23,18,0,23.900000000000002,1.37,0.1597,0.64,0,0,0,0,23,0,0,0,0,0.248,94.73,161.72,0.14,992,4.3,37,1.6 +2020,1,23,19,0,23.6,1.37,0.1602,0.64,0,0,0,0,22.8,0,0,0,0,0.247,95.17,151.76,0.14,991,4.2,30,1.7000000000000002 +2020,1,23,20,0,23.3,1.37,0.1553,0.64,0,0,0,0,22.6,0,0,0,0,0.247,95.73,138.91,0.14,991,4.2,28,1.7000000000000002 +2020,1,23,21,0,23.1,1.3800000000000001,0.15560000000000002,0.64,0,0,0,0,22.400000000000002,0,0,0,0,0.247,95.60000000000001,125.2,0.14,991,4.1000000000000005,29,1.7000000000000002 +2020,1,23,22,0,22.900000000000002,1.3800000000000001,0.1501,0.64,0,0,0,0,22.200000000000003,0,0,0,0,0.247,95.7,111.16,0.14,992,4.1000000000000005,30,1.5 +2020,1,23,23,0,23,1.4000000000000001,0.1394,0.64,0,0,0,0,22.1,0,0,0,0,0.246,94.94,97.03,0.14,992,4.1000000000000005,32,1.5 +2020,1,24,0,0,24.5,1.42,0.1333,0.64,42,298,80,0,22.400000000000002,42,298,0,80,0.247,87.86,82.8,0.15,993,4.1000000000000005,34,2.3000000000000003 +2020,1,24,1,0,25.900000000000002,1.46,0.1254,0.64,84,635,313,0,22.5,84,635,0,313,0.247,81.43,68.89,0.15,994,4.1000000000000005,36,2.5 +2020,1,24,2,0,27.3,1.49,0.1206,0.64,105,783,551,0,22.6,105,783,0,551,0.247,75.42,55.24,0.15,994,4.2,36,2.5 +2020,1,24,3,0,28.6,1.45,0.0868,0.64,104,885,760,0,22.700000000000003,104,885,0,760,0.247,70.48,42.24,0.15,994,4.2,36,2.4000000000000004 +2020,1,24,4,0,29.5,1.46,0.09380000000000001,0.64,115,917,902,0,22.8,115,917,0,902,0.247,67.31,30.82,0.15,993,4.2,35,2.3000000000000003 +2020,1,24,5,0,30.200000000000003,1.46,0.10070000000000001,0.64,121,928,973,0,22.8,121,928,0,973,0.247,64.79,23.43,0.15,992,4.2,34,2.2 +2020,1,24,6,0,30.5,1.47,0.1325,0.64,136,903,960,0,22.8,136,903,0,960,0.246,63.6,24.14,0.15,991,4.2,34,2 +2020,1,24,7,0,30.5,1.48,0.13720000000000002,0.64,133,879,876,2,22.8,367,437,0,736,0.247,63.56,32.42,0.15,990,4.2,33,1.8 +2020,1,24,8,0,30.200000000000003,1.47,0.1466,0.64,127,827,720,3,22.8,353,215,0,507,0.249,64.75,44.19,0.15,990,4.2,32,1.8 +2020,1,24,9,0,29.6,1.46,0.1589,0.64,116,730,510,3,23.3,248,125,0,315,0.25,68.85000000000001,57.33,0.15,990,4.2,33,1.5 +2020,1,24,10,0,28.5,1.46,0.1715,0.64,91,549,269,1,23.3,91,549,0,269,0.25,73.56,71.05,0.15,990,4.2,36,1.2000000000000002 +2020,1,24,11,0,26.700000000000003,1.46,0.17550000000000002,0.64,33,177,48,1,23.700000000000003,33,177,0,48,0.251,83.63,84.96000000000001,0.15,991,4.2,43,0.8 +2020,1,24,12,0,26,1.46,0.1761,0.64,0,0,0,0,23.3,0,0,0,0,0.252,85.24,99.25,0.15,992,4.1000000000000005,47,0.8 +2020,1,24,13,0,25.400000000000002,1.46,0.1748,0.64,0,0,0,0,23.1,0,0,0,0,0.252,86.92,113.39,0.15,992,4.1000000000000005,48,0.8 +2020,1,24,14,0,24.8,1.46,0.17200000000000001,0.64,0,0,0,0,22.900000000000002,0,0,0,0,0.252,89.04,127.41,0.15,993,4.1000000000000005,49,0.8 +2020,1,24,15,0,24.1,1.45,0.1688,0.64,0,0,0,0,22.6,0,0,0,0,0.252,91.47,141.08,0.15,993,4,47,0.9 +2020,1,24,16,0,23.5,1.45,0.164,0.64,0,0,0,0,22.3,0,0,0,0,0.252,92.94,153.73,0.15,992,3.9000000000000004,46,1 +2020,1,24,17,0,22.900000000000002,1.44,0.1585,0.64,0,0,0,0,22,0,0,0,0,0.252,94.72,162.88,0.15,992,3.8000000000000003,44,1.1 +2020,1,24,18,0,22.400000000000002,1.44,0.15610000000000002,0.64,0,0,0,0,21.700000000000003,0,0,0,0,0.251,95.74000000000001,161.96,0.15,991,3.7,41,1.1 +2020,1,24,19,0,21.900000000000002,1.44,0.1574,0.64,0,0,0,0,21.400000000000002,0,0,0,0,0.251,96.88,151.94,0.15,991,3.7,39,1.1 +2020,1,24,20,0,21.6,1.45,0.1605,0.64,0,0,0,0,21.1,0,0,0,0,0.25,96.89,139.04,0.15,991,3.7,42,1.1 +2020,1,24,21,0,21.400000000000002,1.45,0.1635,0.64,0,0,0,0,20.8,0,0,0,0,0.249,96.65,125.29,0.15,991,3.8000000000000003,46,1.1 +2020,1,24,22,0,21.200000000000003,1.47,0.1577,0.64,0,0,0,0,20.700000000000003,0,0,0,0,0.248,96.95,111.24000000000001,0.15,991,3.8000000000000003,43,1.2000000000000002 +2020,1,24,23,0,21.6,1.48,0.14880000000000002,0.64,0,0,0,0,20.700000000000003,0,0,0,0,0.247,94.85000000000001,97.08,0.15,992,3.8000000000000003,38,1.5 +2020,1,25,0,0,23.400000000000002,1.51,0.1379,0.64,42,298,79,0,21.200000000000003,42,298,0,79,0.245,87.35000000000001,82.83,0.15,992,3.9000000000000004,42,2.5 +2020,1,25,1,0,25.400000000000002,1.54,0.1295,0.64,85,634,313,0,21.5,85,634,0,313,0.244,78.89,68.9,0.15,993,3.9000000000000004,48,2.8000000000000003 +2020,1,25,2,0,27.1,1.55,0.1311,0.64,108,775,550,0,21.6,108,775,0,550,0.243,71.72,55.22,0.15,993,4.1000000000000005,51,2.4000000000000004 +2020,1,25,3,0,28.6,1.56,0.1947,0.64,148,800,741,0,21.700000000000003,148,800,0,741,0.242,66.16,42.18,0.15,993,4.2,56,1.7000000000000002 +2020,1,25,4,0,29.8,1.53,0.2078,0.64,165,834,882,0,21.900000000000002,165,834,0,882,0.243,62.690000000000005,30.69,0.15,993,4.3,62,1.1 +2020,1,25,5,0,30.5,1.52,0.21450000000000002,0.64,173,848,953,3,22.200000000000003,476,106,0,573,0.244,61.38,23.21,0.15,992,4.3,62,0.7000000000000001 +2020,1,25,6,0,31,1.5,0.1885,0.64,162,863,951,0,22.5,162,863,0,951,0.245,60.47,23.89,0.15,991,4.4,56,0.6000000000000001 +2020,1,25,7,0,31.1,1.5,0.19060000000000002,0.64,157,839,867,1,22.6,157,839,0,867,0.246,60.58,32.21,0.15,990,4.4,56,0.7000000000000001 +2020,1,25,8,0,30.8,1.5,0.19390000000000002,0.64,147,788,713,3,22.6,356,203,0,502,0.248,61.800000000000004,44.03,0.15,989,4.4,65,0.8 +2020,1,25,9,0,30.5,1.51,0.19720000000000001,0.64,128,696,505,1,23.1,128,696,0,505,0.249,64.62,57.2,0.15,989,4.4,73,0.8 +2020,1,25,10,0,29.700000000000003,1.52,0.19690000000000002,0.64,95,526,267,1,22.900000000000002,95,526,0,267,0.249,67.08,70.95,0.15,990,4.4,75,0.9 +2020,1,25,11,0,27.6,1.53,0.19260000000000002,0.64,33,170,48,0,23.700000000000003,33,170,0,48,0.249,79.14,84.89,0.15,990,4.4,81,0.7000000000000001 +2020,1,25,12,0,26.700000000000003,1.54,0.1892,0.64,0,0,0,0,23.3,0,0,0,0,0.248,81.46000000000001,99.19,0.15,991,4.4,84,0.7000000000000001 +2020,1,25,13,0,26,1.55,0.1822,0.64,0,0,0,1,22.900000000000002,0,0,0,0,0.247,82.83,113.36,0.15,992,4.4,85,0.7000000000000001 +2020,1,25,14,0,25.200000000000003,1.56,0.17,0.64,0,0,0,0,22.6,0,0,0,0,0.246,85.78,127.4,0.15,992,4.3,82,0.8 +2020,1,25,15,0,24.5,1.57,0.157,0.64,0,0,0,3,22.5,0,0,0,0,0.245,88.5,141.11,0.15,992,4.2,75,0.9 +2020,1,25,16,0,23.900000000000002,1.56,0.149,0.64,0,0,0,1,22.200000000000003,0,0,0,0,0.244,90.41,153.83,0.15,991,4.1000000000000005,67,0.9 +2020,1,25,17,0,23.400000000000002,1.55,0.15180000000000002,0.64,0,0,0,1,22,0,0,0,0,0.244,91.78,163.09,0.15,991,4.1000000000000005,60,0.7000000000000001 +2020,1,25,18,0,23.200000000000003,1.52,0.165,0.64,0,0,0,0,21.8,0,0,0,0,0.243,91.9,162.20000000000002,0.15,991,4.2,48,0.6000000000000001 +2020,1,25,19,0,22.900000000000002,1.5,0.17900000000000002,0.64,0,0,0,0,21.700000000000003,0,0,0,0,0.243,93.04,152.11,0.15,990,4.3,26,0.6000000000000001 +2020,1,25,20,0,22.700000000000003,1.49,0.1884,0.64,0,0,0,1,21.8,0,0,0,0,0.243,94.41,139.17000000000002,0.15,990,4.4,15,0.7000000000000001 +2020,1,25,21,0,22.5,1.49,0.20040000000000002,0.64,0,0,0,1,21.8,0,0,0,0,0.243,95.7,125.39,0.15,990,4.5,15,0.7000000000000001 +2020,1,25,22,0,22.400000000000002,1.48,0.21810000000000002,0.64,0,0,0,0,21.8,0,0,0,0,0.243,96.45,111.31,0.15,991,4.6000000000000005,18,0.7000000000000001 +2020,1,25,23,0,22.900000000000002,1.47,0.2341,0.64,0,0,0,0,22.1,0,0,0,0,0.242,95.04,97.13,0.15,992,4.7,21,0.8 +2020,1,26,0,0,24.6,1.48,0.24700000000000003,0.64,48,195,72,0,22.5,48,195,0,72,0.242,88.31,82.86,0.15,992,4.800000000000001,24,1.4000000000000001 +2020,1,26,1,0,26.6,1.49,0.2482,0.64,113,508,296,0,22.8,113,508,0,296,0.242,79.8,68.9,0.15,993,4.9,18,1.3 +2020,1,26,2,0,28.400000000000002,1.49,0.24880000000000002,0.64,148,667,528,0,23.1,148,667,0,528,0.242,72.98,55.19,0.15,993,4.9,352,1 +2020,1,26,3,0,29.6,1.46,0.21050000000000002,0.64,155,779,733,2,23.6,364,108,3,444,0.242,70.18,42.11,0.15,993,5,329,0.9 +2020,1,26,4,0,30.5,1.46,0.2126,0.64,167,822,875,3,24,396,50,0,439,0.241,68.2,30.560000000000002,0.15,992,5.1000000000000005,307,0.9 +2020,1,26,5,0,31,1.46,0.2056,0.64,170,846,948,3,24.200000000000003,385,31,0,413,0.24,67.33,22.990000000000002,0.15,991,5.2,289,1.1 +2020,1,26,6,0,31.1,1.47,0.2736,0.64,197,801,931,3,24.400000000000002,446,65,0,505,0.24,67.43,23.64,0.15,990,5.300000000000001,278,1.4000000000000001 +2020,1,26,7,0,30.900000000000002,1.46,0.2802,0.64,192,770,846,4,24.400000000000002,323,23,0,343,0.241,68.27,32.01,0.15,989,5.6000000000000005,262,1.7000000000000002 +2020,1,26,8,0,30.1,1.43,0.3017,0.64,185,702,691,3,24.5,315,45,0,347,0.241,72.06,43.88,0.15,989,5.800000000000001,247,1.9000000000000001 +2020,1,26,9,0,28.900000000000002,1.41,0.3614,0.64,178,562,483,3,24.900000000000002,172,3,0,173,0.242,78.92,57.08,0.15,989,6.1000000000000005,243,1.9000000000000001 +2020,1,26,10,0,27.6,1.3900000000000001,0.4026,0.64,132,357,249,3,25.1,134,184,0,194,0.242,86.18,70.85000000000001,0.15,989,6.2,239,1.6 +2020,1,26,11,0,26.6,1.3800000000000001,0.4258,0.64,34,66,40,0,25.3,34,66,0,40,0.243,92.55,84.81,0.15,990,6.300000000000001,233,1.1 +2020,1,26,12,0,26.3,1.3800000000000001,0.4786,0.64,0,0,0,6,25.200000000000003,0,0,0,0,0.245,93.89,99.14,0.15,991,6.300000000000001,226,0.9 +2020,1,26,13,0,26.1,1.3800000000000001,0.48900000000000005,0.64,0,0,0,6,25.200000000000003,0,0,0,0,0.246,94.52,113.32000000000001,0.15,991,6.300000000000001,211,0.7000000000000001 +2020,1,26,14,0,26.1,1.3900000000000001,0.4423,0.64,0,0,0,8,25,0,0,0,0,0.247,93.61,127.4,0.15,992,6.300000000000001,194,0.6000000000000001 +2020,1,26,15,0,25.900000000000002,1.3900000000000001,0.4373,0.64,0,0,0,4,24.900000000000002,0,0,0,0,0.247,93.97,141.14000000000001,0.15,992,6.2,186,0.5 +2020,1,26,16,0,25.6,1.3900000000000001,0.3865,0.64,0,0,0,4,24.700000000000003,0,0,0,0,0.247,94.8,153.92000000000002,0.15,991,6.2,194,0.6000000000000001 +2020,1,26,17,0,25.400000000000002,1.37,0.3224,0.64,0,0,0,4,24.6,0,0,0,0,0.247,95.16,163.29,0.15,991,6,206,0.6000000000000001 +2020,1,26,18,0,25.200000000000003,1.36,0.3346,0.64,0,0,0,4,24.400000000000002,0,0,0,0,0.247,95.62,162.44,0.15,990,5.9,218,0.6000000000000001 +2020,1,26,19,0,25.1,1.35,0.31980000000000003,0.64,0,0,0,4,24.400000000000002,0,0,0,0,0.247,95.68,152.29,0.15,990,5.9,238,0.6000000000000001 +2020,1,26,20,0,24.900000000000002,1.34,0.2757,0.64,0,0,0,4,24.3,0,0,0,0,0.246,96.31,139.3,0.15,990,5.800000000000001,299,0.7000000000000001 +2020,1,26,21,0,24.700000000000003,1.35,0.268,0.64,0,0,0,4,24.200000000000003,0,0,0,0,0.246,96.95,125.49000000000001,0.15,990,5.800000000000001,344,0.7000000000000001 +2020,1,26,22,0,24.6,1.37,0.2346,0.64,0,0,0,8,24.1,0,0,0,0,0.246,97.08,111.38,0.15,990,5.800000000000001,353,0.8 +2020,1,26,23,0,24.8,1.3800000000000001,0.2068,0.64,0,0,0,4,24.3,0,0,0,0,0.245,96.77,97.18,0.15,991,5.7,354,0.9 +2020,1,27,0,0,26.1,1.3800000000000001,0.19460000000000002,0.64,44,223,72,6,24.6,5,0,3,5,0.245,91.72,82.89,0.15,991,5.7,344,1.3 +2020,1,27,1,0,27.3,1.3900000000000001,0.1829,0.64,97,559,298,7,24.6,14,0,1,14,0.245,85.14,68.91,0.15,992,5.7,332,1.4000000000000001 +2020,1,27,2,0,28.5,1.3800000000000001,0.17550000000000002,0.64,123,719,533,4,24.5,165,0,0,165,0.245,79.16,55.160000000000004,0.15,992,5.7,319,1.4000000000000001 +2020,1,27,3,0,29.3,1.36,0.1967,0.64,148,783,729,4,24.6,185,5,0,188,0.246,75.98,42.04,0.15,992,5.800000000000001,301,1.2000000000000002 +2020,1,27,4,0,29.900000000000002,1.36,0.1892,0.64,156,832,873,8,24.8,442,116,0,542,0.248,74,30.42,0.15,992,5.800000000000001,278,1.3 +2020,1,27,5,0,30.200000000000003,1.35,0.18430000000000002,0.64,158,854,946,4,24.8,267,14,0,280,0.25,72.78,22.77,0.15,991,5.800000000000001,261,1.5 +2020,1,27,6,0,30.400000000000002,1.36,0.2033,0.64,166,841,937,4,24.8,410,41,0,448,0.251,71.88,23.39,0.15,990,5.800000000000001,254,1.8 +2020,1,27,7,0,30.3,1.34,0.201,0.64,161,820,858,4,24.8,264,14,0,275,0.251,72.28,31.810000000000002,0.15,989,5.7,249,1.9000000000000001 +2020,1,27,8,0,29.900000000000002,1.33,0.196,0.64,147,775,707,4,24.8,359,172,0,484,0.253,74.16,43.72,0.15,989,5.7,244,1.8 +2020,1,27,9,0,29.200000000000003,1.33,0.21280000000000002,0.64,134,671,499,8,25,252,154,0,336,0.253,77.92,56.96,0.15,989,5.7,241,1.6 +2020,1,27,10,0,28.1,1.33,0.2223,0.64,101,489,262,0,25.200000000000003,101,489,0,262,0.253,84.37,70.76,0.15,989,5.7,241,1.4000000000000001 +2020,1,27,11,0,26.8,1.32,0.2126,0.64,34,144,47,3,25.5,32,99,3,41,0.253,92.41,84.74,0.15,990,5.800000000000001,239,0.9 +2020,1,27,12,0,26.3,1.31,0.2185,0.64,0,0,0,0,25.3,0,0,0,0,0.252,94.34,99.08,0.15,991,5.800000000000001,236,0.8 +2020,1,27,13,0,26.1,1.31,0.1978,0.64,0,0,0,0,25.200000000000003,0,0,0,0,0.252,94.68,113.29,0.15,992,5.9,233,0.7000000000000001 +2020,1,27,14,0,26.1,1.32,0.1656,0.64,0,0,0,0,24.900000000000002,0,0,0,0,0.251,93.33,127.39,0.15,992,5.9,223,0.7000000000000001 +2020,1,27,15,0,26.1,1.32,0.17420000000000002,0.64,0,0,0,0,24.700000000000003,0,0,0,0,0.251,91.88,141.17000000000002,0.15,992,5.800000000000001,158,0.5 +2020,1,27,16,0,25.8,1.32,0.16770000000000002,0.64,0,0,0,3,24.6,0,0,0,0,0.25,93.04,154.02,0.15,992,5.800000000000001,116,0.6000000000000001 +2020,1,27,17,0,25.5,1.33,0.1433,0.64,0,0,0,0,24.5,0,0,0,0,0.248,94.16,163.51,0.15,991,5.7,106,0.6000000000000001 +2020,1,27,18,0,25.200000000000003,1.34,0.1583,0.64,0,0,0,1,24.400000000000002,0,0,0,0,0.247,95.27,162.69,0.15,991,5.7,95,0.6000000000000001 +2020,1,27,19,0,25,1.35,0.1521,0.64,0,0,0,0,24.3,0,0,0,0,0.245,95.83,152.46,0.15,990,5.7,81,0.6000000000000001 +2020,1,27,20,0,24.8,1.37,0.1351,0.64,0,0,0,0,24.200000000000003,0,0,0,0,0.245,96.37,139.42000000000002,0.15,990,5.6000000000000005,72,0.7000000000000001 +2020,1,27,21,0,24.6,1.3800000000000001,0.14550000000000002,0.64,0,0,0,0,24,0,0,0,0,0.245,96.74000000000001,125.58,0.15,990,5.6000000000000005,67,0.8 +2020,1,27,22,0,24.3,1.41,0.1381,0.64,0,0,0,1,23.8,0,0,0,0,0.245,96.97,111.45,0.15,990,5.5,63,0.8 +2020,1,27,23,0,24.5,1.42,0.1321,0.64,0,0,0,0,23.900000000000002,0,0,0,0,0.245,96.49000000000001,97.23,0.15,991,5.5,54,0.9 +2020,1,28,0,0,25.700000000000003,1.43,0.13670000000000002,0.64,40,281,75,0,24.3,40,281,0,75,0.244,92.11,82.91,0.15,992,5.5,50,1.4000000000000001 +2020,1,28,1,0,27,1.41,0.14830000000000002,0.64,89,596,303,0,24.200000000000003,89,596,0,303,0.243,84.62,68.9,0.15,993,5.6000000000000005,57,1.4000000000000001 +2020,1,28,2,0,28.400000000000002,1.4000000000000001,0.15410000000000001,0.64,116,738,538,0,24.1,116,738,0,538,0.242,77.5,55.13,0.15,993,5.7,69,1.1 +2020,1,28,3,0,29.5,1.25,0.28550000000000003,0.64,188,718,722,0,24.200000000000003,188,718,0,722,0.243,73.13,41.97,0.15,992,5.7,85,0.8 +2020,1,28,4,0,30.3,1.26,0.2847,0.64,202,767,864,1,24.3,202,767,0,864,0.244,70.48,30.28,0.15,992,5.800000000000001,105,0.7000000000000001 +2020,1,28,5,0,30.700000000000003,1.26,0.2863,0.64,209,787,936,3,24.5,260,13,0,273,0.244,69.5,22.53,0.15,991,5.9,144,0.8 +2020,1,28,6,0,30.700000000000003,1.27,0.37320000000000003,0.64,243,735,919,3,24.6,480,115,0,585,0.246,70.2,23.13,0.15,990,5.9,178,1 +2020,1,28,7,0,30.3,1.27,0.38330000000000003,0.64,238,703,836,0,24.8,238,703,0,836,0.247,72.54,31.6,0.15,989,6,196,1.3 +2020,1,28,8,0,29.700000000000003,1.26,0.3927,0.64,222,639,685,3,25.200000000000003,308,38,0,335,0.248,76.62,43.56,0.15,989,6.1000000000000005,203,1.4000000000000001 +2020,1,28,9,0,29.1,1.25,0.44920000000000004,0.64,203,502,478,7,25.5,246,247,0,381,0.249,81.14,56.84,0.15,989,6.1000000000000005,210,1.3 +2020,1,28,10,0,28.1,1.24,0.47990000000000005,0.64,145,308,247,7,25.5,131,238,0,210,0.249,86.05,70.66,0.15,990,6.2,220,1.1 +2020,1,28,11,0,27,1.24,0.49420000000000003,0.64,34,48,38,6,25.700000000000003,34,48,5,38,0.249,92.74,84.67,0.15,991,6.300000000000001,219,0.8 +2020,1,28,12,0,26.5,1.23,0.5325,0.64,0,0,0,8,25.6,0,0,0,0,0.25,95,99.03,0.15,992,6.300000000000001,204,0.7000000000000001 +2020,1,28,13,0,26.400000000000002,1.23,0.5197,0.64,0,0,0,8,25.400000000000002,0,0,0,0,0.25,94.53,113.27,0.15,992,6.300000000000001,180,0.7000000000000001 +2020,1,28,14,0,26.3,1.23,0.448,0.64,0,0,0,6,25.1,0,0,0,0,0.251,93.3,127.39,0.15,992,6.300000000000001,163,0.6000000000000001 +2020,1,28,15,0,26,1.23,0.41440000000000005,0.64,0,0,0,6,25,0,0,0,0,0.252,94.51,141.21,0.15,992,6.2,157,0.6000000000000001 +2020,1,28,16,0,25.700000000000003,1.22,0.37470000000000003,0.64,0,0,0,6,25,0,0,0,0,0.252,95.8,154.12,0.15,992,6.1000000000000005,153,0.6000000000000001 +2020,1,28,17,0,25.400000000000002,1.2,0.3452,0.64,0,0,0,6,24.900000000000002,0,0,0,0,0.251,96.97,163.73,0.15,991,6.1000000000000005,144,0.6000000000000001 +2020,1,28,18,0,25.3,1.21,0.35300000000000004,0.64,0,0,0,6,24.8,0,0,0,0,0.251,96.99000000000001,162.94,0.15,991,6.1000000000000005,146,0.6000000000000001 +2020,1,28,19,0,25.3,1.21,0.3486,0.64,0,0,0,6,24.700000000000003,0,0,0,0,0.25,96.63,152.63,0.15,991,6.2,177,0.7000000000000001 +2020,1,28,20,0,25.200000000000003,1.2,0.32120000000000004,0.64,0,0,0,6,24.700000000000003,0,0,0,0,0.249,97.24000000000001,139.54,0.15,991,6.2,193,0.8 +2020,1,28,21,0,25.200000000000003,1.21,0.3148,0.64,0,0,0,7,24.8,0,0,0,0,0.249,97.39,125.67,0.15,992,6.2,184,0.8 +2020,1,28,22,0,25.200000000000003,1.22,0.2791,0.64,0,0,0,7,24.700000000000003,0,0,0,0,0.249,97.18,111.51,0.15,992,6.2,162,0.7000000000000001 +2020,1,28,23,0,25.200000000000003,1.22,0.23440000000000003,0.64,0,0,0,7,24.8,0,0,0,0,0.249,97.82000000000001,97.27,0.15,992,6.1000000000000005,136,0.7000000000000001 +2020,1,29,0,0,26,1.24,0.2268,0.64,45,187,68,7,25.3,5,0,3,5,0.249,96.2,82.93,0.15,993,6.1000000000000005,110,1 +2020,1,29,1,0,27,1.27,0.21330000000000002,0.64,103,524,292,7,25.5,12,0,3,12,0.249,91.7,68.9,0.15,994,6.1000000000000005,65,1.2000000000000002 +2020,1,29,2,0,27.3,1.29,0.2005,0.64,131,694,528,7,24.900000000000002,26,0,0,26,0.248,86.84,55.1,0.15,994,6.1000000000000005,50,1.7000000000000002 +2020,1,29,3,0,27.5,1.29,0.2346,0.64,165,752,725,7,24.700000000000003,56,0,0,56,0.247,84.61,41.89,0.15,994,6.1000000000000005,45,2.1 +2020,1,29,4,0,27.700000000000003,1.3,0.2252,0.64,174,805,870,7,24.5,63,0,0,63,0.247,82.91,30.13,0.15,994,6.2,39,2.1 +2020,1,29,5,0,27.700000000000003,1.3,0.2101,0.64,171,835,944,6,24.400000000000002,88,0,0,88,0.246,82.21000000000001,22.3,0.15,993,6.2,36,2.1 +2020,1,29,6,0,27.5,1.31,0.21480000000000002,0.64,173,831,938,6,24.3,164,5,0,168,0.245,82.9,22.87,0.15,992,6.2,34,2.1 +2020,1,29,7,0,27,1.3,0.2106,0.64,165,811,858,6,24.3,119,0,0,119,0.245,85.25,31.39,0.15,991,6.2,31,2.1 +2020,1,29,8,0,26.5,1.3,0.2015,0.64,148,769,707,7,24.3,331,59,0,374,0.244,87.93,43.410000000000004,0.15,991,6.2,28,2.1 +2020,1,29,9,0,26.1,1.3,0.19010000000000002,0.64,124,689,502,6,24.3,212,25,0,226,0.245,90.08,56.72,0.15,991,6.2,29,2 +2020,1,29,10,0,25.700000000000003,1.31,0.1627,0.64,86,549,268,6,24.3,73,0,0,73,0.245,92.16,70.57000000000001,0.15,991,6.1000000000000005,31,1.7000000000000002 +2020,1,29,11,0,25,1.32,0.1446,0.64,31,202,50,6,24.3,22,0,3,22,0.247,95.69,84.60000000000001,0.15,992,6.1000000000000005,29,1.2000000000000002 +2020,1,29,12,0,24.700000000000003,1.32,0.1452,0.64,0,0,0,6,24,0,0,0,0,0.248,95.97,98.99000000000001,0.15,993,6,27,1.1 +2020,1,29,13,0,24.400000000000002,1.33,0.1497,0.64,0,0,0,6,23.700000000000003,0,0,0,0,0.248,96.07000000000001,113.24000000000001,0.15,993,6,27,1 +2020,1,29,14,0,24.1,1.33,0.1467,0.64,0,0,0,7,23.5,0,0,0,0,0.248,96.56,127.4,0.15,994,6,32,0.8 +2020,1,29,15,0,24,1.34,0.1396,0.64,0,0,0,8,23.3,0,0,0,0,0.247,95.98,141.25,0.15,994,6,45,0.6000000000000001 +2020,1,29,16,0,24,1.36,0.1306,0.64,0,0,0,4,23.200000000000003,0,0,0,0,0.246,95.13,154.23,0.15,994,5.9,59,0.5 +2020,1,29,17,0,23.8,1.36,0.1231,0.64,0,0,0,7,23,0,0,0,0,0.246,95.17,163.95000000000002,0.15,993,5.800000000000001,51,0.5 +2020,1,29,18,0,23.5,1.35,0.12050000000000001,0.64,0,0,0,8,22.8,0,0,0,0,0.247,95.92,163.19,0.15,992,5.6000000000000005,44,0.6000000000000001 +2020,1,29,19,0,23.200000000000003,1.34,0.11850000000000001,0.64,0,0,0,3,22.6,0,0,0,0,0.248,96.69,152.81,0.15,991,5.5,42,0.7000000000000001 +2020,1,29,20,0,22.900000000000002,1.33,0.1139,0.64,0,0,0,8,22.5,0,0,0,0,0.25,97.69,139.66,0.15,991,5.4,36,0.8 +2020,1,29,21,0,22.8,1.31,0.11470000000000001,0.64,0,0,0,0,22.400000000000002,0,0,0,0,0.251,97.64,125.75,0.15,991,5.300000000000001,26,0.8 +2020,1,29,22,0,22.700000000000003,1.31,0.11520000000000001,0.64,0,0,0,0,22.3,0,0,0,0,0.251,97.61,111.57000000000001,0.15,991,5.300000000000001,18,0.8 +2020,1,29,23,0,23,1.31,0.112,0.64,0,0,0,0,22.6,0,0,0,0,0.251,97.43,97.3,0.15,991,5.2,16,0.9 +2020,1,30,0,0,24.400000000000002,1.33,0.11380000000000001,0.64,39,304,76,8,23.400000000000002,5,0,3,5,0.251,94,82.94,0.14,992,5.2,22,1.5 +2020,1,30,1,0,25.8,1.34,0.1159,0.64,80,632,308,3,23.6,137,310,0,249,0.251,87.88,68.89,0.14,993,5.300000000000001,38,1.4000000000000001 +2020,1,30,2,0,27.3,1.35,0.114,0.64,101,777,546,3,23.5,236,374,0,450,0.251,79.91,55.06,0.14,993,5.300000000000001,46,1 +2020,1,30,3,0,28.6,1.24,0.2034,0.64,155,779,736,2,23.6,320,422,3,635,0.25,74.24,41.800000000000004,0.14,993,5.300000000000001,54,0.8 +2020,1,30,4,0,29.400000000000002,1.24,0.1967,0.64,163,828,881,0,23.700000000000003,163,828,0,881,0.25,71.60000000000001,29.98,0.14,992,5.4,65,0.8 +2020,1,30,5,0,29.900000000000002,1.24,0.1902,0.64,165,852,954,1,23.900000000000002,165,852,0,954,0.25,70.43,22.05,0.14,991,5.5,85,0.9 +2020,1,30,6,0,29.900000000000002,1.26,0.2485,0.64,192,812,941,0,24,192,812,0,941,0.25,70.75,22.6,0.14,990,5.6000000000000005,104,1.1 +2020,1,30,7,0,29.3,1.25,0.2503,0.64,186,786,858,0,24.200000000000003,186,786,0,858,0.249,73.93,31.19,0.14,990,5.800000000000001,119,1.3 +2020,1,30,8,0,28.6,1.23,0.2539,0.64,174,731,706,3,24.400000000000002,355,104,0,430,0.249,77.87,43.25,0.14,989,5.9,127,1.5 +2020,1,30,9,0,27.900000000000002,1.23,0.3009,0.64,165,600,495,3,24.700000000000003,42,0,0,42,0.248,82.94,56.6,0.14,989,6.1000000000000005,131,1.5 +2020,1,30,10,0,27,1.21,0.3206,0.64,124,406,259,3,25.1,129,270,0,219,0.248,89.29,70.48,0.14,990,6.2,125,1.3 +2020,1,30,11,0,26.1,1.18,0.3185,0.64,38,89,46,3,25.1,34,87,3,42,0.248,94.35000000000001,84.54,0.14,990,6.4,121,1.1 +2020,1,30,12,0,25.700000000000003,1.17,0.3047,0.64,0,0,0,3,25,0,0,0,0,0.248,96.11,98.94,0.14,991,6.5,121,1.2000000000000002 +2020,1,30,13,0,25.5,1.1500000000000001,0.24000000000000002,0.64,0,0,0,3,24.900000000000002,0,0,0,0,0.248,96.62,113.22,0.14,992,6.4,118,1.1 +2020,1,30,14,0,25.200000000000003,1.1400000000000001,0.1816,0.64,0,0,0,3,24.6,0,0,0,0,0.248,96.76,127.4,0.14,992,6.300000000000001,104,1.2000000000000002 +2020,1,30,15,0,24.8,1.18,0.1763,0.64,0,0,0,4,24.3,0,0,0,0,0.249,96.9,141.29,0.14,992,6.2,90,1 +2020,1,30,16,0,24.400000000000002,1.2,0.1801,0.64,0,0,0,4,23.900000000000002,0,0,0,0,0.249,97.3,154.34,0.14,993,6.1000000000000005,71,0.8 +2020,1,30,17,0,24.1,1.21,0.18050000000000002,0.64,0,0,0,4,23.6,0,0,0,0,0.249,97.21000000000001,164.18,0.14,992,6,45,0.8 +2020,1,30,18,0,23.8,1.23,0.1779,0.64,0,0,0,3,23.400000000000002,0,0,0,0,0.248,97.47,163.44,0.14,992,5.9,28,0.9 +2020,1,30,19,0,23.6,1.25,0.167,0.64,0,0,0,4,23.1,0,0,0,0,0.247,97.18,152.98,0.14,991,5.800000000000001,21,1 +2020,1,30,20,0,23.400000000000002,1.27,0.1574,0.64,0,0,0,4,22.900000000000002,0,0,1,0,0.247,97.10000000000001,139.78,0.14,991,5.7,14,1 +2020,1,30,21,0,23.200000000000003,1.29,0.1497,0.64,0,0,0,4,22.700000000000003,0,0,0,0,0.248,97.11,125.83,0.14,991,5.6000000000000005,8,1 +2020,1,30,22,0,23.1,1.31,0.14250000000000002,0.64,0,0,0,3,22.6,0,0,0,0,0.249,96.88,111.63,0.14,992,5.5,7,0.9 +2020,1,30,23,0,23.3,1.32,0.13490000000000002,0.64,0,0,0,3,22.6,0,0,0,0,0.249,95.96000000000001,97.34,0.14,992,5.5,7,1 +2020,1,31,0,0,24,1.32,0.1285,0.64,40,284,75,4,22.900000000000002,43,32,3,47,0.249,93.74,82.95,0.14,993,5.5,13,1.7000000000000002 +2020,1,31,1,0,25.1,1.35,0.11460000000000001,0.64,80,632,308,3,23.3,150,172,3,212,0.249,89.96000000000001,68.88,0.14,994,5.5,32,2.1 +2020,1,31,2,0,26.400000000000002,1.3800000000000001,0.10010000000000001,0.64,96,791,549,3,23.3,260,253,3,405,0.249,83.34,55.01,0.14,994,5.4,47,2.6 +2020,1,31,3,0,27.3,1.3800000000000001,0.0918,0.64,105,870,754,3,23.200000000000003,329,399,0,627,0.249,78.28,41.72,0.14,994,5.4,51,2.8000000000000003 +2020,1,31,4,0,27.900000000000002,1.3800000000000001,0.0867,0.64,110,911,900,4,23.1,442,105,0,533,0.248,75.2,29.82,0.14,993,5.5,51,2.7 +2020,1,31,5,0,28.3,1.37,0.0843,0.64,112,929,974,4,23.1,493,150,0,632,0.247,73.39,21.8,0.14,992,5.5,52,2.6 +2020,1,31,6,0,28.400000000000002,1.29,0.1,0.64,120,916,967,8,23.1,459,343,0,777,0.246,73.03,22.34,0.14,991,5.5,51,2.4000000000000004 +2020,1,31,7,0,28.3,1.26,0.1027,0.64,118,895,885,8,23.200000000000003,442,228,0,638,0.246,73.72,30.98,0.14,991,5.5,52,2.1 +2020,1,31,8,0,27.900000000000002,1.24,0.10310000000000001,0.64,110,853,733,3,23.3,324,384,1,605,0.245,76.3,43.1,0.14,990,5.5,54,1.9000000000000001 +2020,1,31,9,0,27.400000000000002,1.22,0.1068,0.64,98,770,524,3,23.8,213,425,0,448,0.245,80.57000000000001,56.49,0.14,991,5.6000000000000005,57,1.7000000000000002 +2020,1,31,10,0,26.6,1.19,0.1082,0.64,77,614,283,7,24,113,0,0,113,0.245,85.76,70.4,0.14,991,5.5,61,1.4000000000000001 +2020,1,31,11,0,25.400000000000002,1.19,0.0998,0.64,32,255,56,7,24.1,23,0,3,23,0.246,92.49,84.48,0.14,992,5.5,66,1 +2020,1,31,12,0,25,1.19,0.0922,0.64,0,0,0,8,23.900000000000002,0,0,0,0,0.247,93.66,98.9,0.14,992,5.4,70,1.1 +2020,1,31,13,0,24.6,1.19,0.09040000000000001,0.64,0,0,0,8,23.8,0,0,0,0,0.247,95.21000000000001,113.2,0.14,993,5.4,73,1.1 +2020,1,31,14,0,24.3,1.17,0.0901,0.64,0,0,0,3,23.6,0,0,0,0,0.247,96.15,127.41,0.14,993,5.4,74,1.2000000000000002 +2020,1,31,15,0,24,1.16,0.0897,0.64,0,0,0,3,23.5,0,0,0,0,0.247,96.95,141.34,0.14,993,5.300000000000001,71,1.2000000000000002 +2020,1,31,16,0,23.8,1.1500000000000001,0.0903,0.64,0,0,0,3,23.3,0,0,0,0,0.247,97.11,154.45000000000002,0.14,993,5.300000000000001,65,1.2000000000000002 +2020,1,31,17,0,23.6,1.1400000000000001,0.0898,0.64,0,0,0,3,23.1,0,0,0,0,0.247,97.13,164.42000000000002,0.14,992,5.2,59,1.2000000000000002 +2020,1,31,18,0,23.400000000000002,1.1500000000000001,0.0926,0.64,0,0,0,0,23,0,0,0,0,0.247,97.48,163.70000000000002,0.14,992,5.2,56,1.1 +2020,1,31,19,0,23.400000000000002,1.16,0.09230000000000001,0.64,0,0,0,0,22.900000000000002,0,0,0,0,0.247,96.82000000000001,153.14000000000001,0.14,991,5.1000000000000005,55,1.1 +2020,1,31,20,0,23.3,1.1400000000000001,0.0918,0.64,0,0,0,0,22.8,0,0,0,0,0.247,96.96000000000001,139.89000000000001,0.14,991,5.1000000000000005,55,1.1 +2020,1,31,21,0,23.3,1.12,0.0983,0.64,0,0,0,0,22.8,0,0,0,0,0.246,96.74000000000001,125.91,0.14,991,5.1000000000000005,54,1 +2020,1,31,22,0,23.200000000000003,1.1,0.10360000000000001,0.64,0,0,0,0,22.700000000000003,0,0,0,0,0.246,97.3,111.68,0.14,992,5.2,52,1.1 +2020,1,31,23,0,23.6,1.06,0.1033,0.64,0,0,0,0,23,0,0,0,0,0.246,96.43,97.37,0.14,992,5.2,50,1.2000000000000002 +2020,2,1,0,0,24.8,1.05,0.1062,0.62,40,301,77,0,23.700000000000003,40,301,0,77,0.245,93.73,82.96000000000001,0.14,993,5.2,49,2.2 +2020,2,1,1,0,26.1,1.04,0.1046,0.62,80,640,311,0,24,80,640,0,311,0.245,88.03,68.86,0.14,993,5.2,54,3.1 +2020,2,1,2,0,27.5,1.02,0.0985,0.62,99,790,553,0,23.900000000000002,99,790,0,553,0.245,80.95,54.97,0.14,993,5.2,53,3.5 +2020,2,1,3,0,28.700000000000003,0.91,0.2401,0.62,176,745,733,0,23.900000000000002,176,745,0,733,0.245,75.47,41.63,0.14,993,5.1000000000000005,53,3.5 +2020,2,1,4,0,29.6,0.9500000000000001,0.20900000000000002,0.62,174,816,883,0,24,174,816,0,883,0.246,71.98,29.66,0.14,992,5.2,54,3.3000000000000003 +2020,2,1,5,0,30.200000000000003,0.96,0.1884,0.62,169,851,961,1,24.1,169,851,0,961,0.248,69.96000000000001,21.55,0.14,991,5.2,56,3.1 +2020,2,1,6,0,30.5,0.97,0.1915,0.62,170,847,955,3,24.200000000000003,493,197,0,675,0.248,69.11,22.06,0.14,990,5.300000000000001,59,2.7 +2020,2,1,7,0,30.400000000000002,0.93,0.18130000000000002,0.62,160,831,874,3,24.3,386,45,0,424,0.248,69.81,30.78,0.14,990,5.4,65,2.3000000000000003 +2020,2,1,8,0,29.8,0.87,0.1766,0.62,148,786,723,3,24.400000000000002,345,76,0,400,0.249,72.77,42.95,0.14,990,5.4,72,2.2 +2020,2,1,9,0,28.900000000000002,0.8200000000000001,0.1836,0.62,132,688,513,3,24.6,211,22,0,223,0.249,77.53,56.38,0.14,990,5.5,76,2 +2020,2,1,10,0,27.700000000000003,0.76,0.1855,0.62,102,509,273,3,24.700000000000003,133,246,0,216,0.248,83.61,70.31,0.14,991,5.6000000000000005,79,1.7000000000000002 +2020,2,1,11,0,26.3,0.7000000000000001,0.17370000000000002,0.62,39,145,53,3,24.700000000000003,33,0,3,33,0.248,90.71000000000001,84.42,0.14,991,5.5,79,1.5 +2020,2,1,12,0,25.700000000000003,0.68,0.1593,0.62,0,0,0,3,24.3,0,0,0,0,0.248,92.24,98.86,0.14,992,5.4,76,1.9000000000000001 +2020,2,1,13,0,25.1,0.71,0.1341,0.62,0,0,0,3,24,0,0,0,0,0.248,93.52,113.19,0.14,993,5.300000000000001,70,2.2 +2020,2,1,14,0,24.6,0.71,0.124,0.62,0,0,0,3,23.6,0,0,0,0,0.248,94.26,127.42,0.14,993,5.300000000000001,63,2.4000000000000004 +2020,2,1,15,0,24.200000000000003,0.73,0.12380000000000001,0.62,0,0,0,3,23.3,0,0,0,0,0.247,94.85000000000001,141.39000000000001,0.14,993,5.2,58,2.4000000000000004 +2020,2,1,16,0,23.8,0.74,0.1258,0.62,0,0,0,3,23.1,0,0,0,0,0.246,95.8,154.56,0.14,993,5.2,54,2.2 +2020,2,1,17,0,23.6,0.74,0.1232,0.62,0,0,0,3,22.900000000000002,0,0,0,0,0.245,96,164.65,0.14,993,5.1000000000000005,51,2.1 +2020,2,1,18,0,23.5,0.77,0.1254,0.62,0,0,0,3,22.8,0,0,0,0,0.244,95.82000000000001,163.96,0.14,993,5.1000000000000005,51,2.2 +2020,2,1,19,0,23.400000000000002,0.78,0.1265,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.244,95.64,153.31,0.14,992,5,51,2.4000000000000004 +2020,2,1,20,0,23.3,0.77,0.12490000000000001,0.62,0,0,0,0,22.5,0,0,0,0,0.244,95.48,140,0.14,992,4.9,51,2.4000000000000004 +2020,2,1,21,0,23.1,0.76,0.1279,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.243,95.86,125.99000000000001,0.14,992,4.800000000000001,49,2.3000000000000003 +2020,2,1,22,0,23,0.77,0.13240000000000002,0.62,0,0,0,0,22.3,0,0,0,0,0.243,95.59,111.73,0.14,992,4.7,47,2.2 +2020,2,1,23,0,23,0.77,0.131,0.62,0,0,0,0,22.3,0,0,0,0,0.243,95.61,97.4,0.14,993,4.6000000000000005,45,2 +2020,2,2,0,0,24.400000000000002,0.78,0.1269,0.62,44,261,76,0,22.5,44,261,0,76,0.243,89.42,82.97,0.14,994,4.5,48,3 +2020,2,2,1,0,25.900000000000002,0.8,0.11850000000000001,0.62,87,621,311,3,22.6,143,261,0,237,0.243,82.11,68.84,0.14,995,4.5,51,3.7 +2020,2,2,2,0,27.3,0.8200000000000001,0.1124,0.62,107,779,555,8,22.700000000000003,229,406,0,463,0.242,75.83,54.92,0.14,995,4.4,53,3.7 +2020,2,2,3,0,28.400000000000002,0.98,0.1486,0.62,136,826,754,3,22.8,330,398,0,628,0.242,71.55,41.53,0.14,995,4.4,56,3.4000000000000004 +2020,2,2,4,0,29.400000000000002,1,0.1532,0.62,147,865,900,0,22.900000000000002,147,865,0,900,0.242,68.01,29.5,0.14,994,4.4,59,3.1 +2020,2,2,5,0,30.1,1,0.16090000000000002,0.62,156,878,975,3,23,410,486,0,863,0.242,65.71000000000001,21.29,0.14,993,4.4,60,2.8000000000000003 +2020,2,2,6,0,30.400000000000002,1.04,0.18480000000000002,0.62,167,861,967,8,23,486,253,0,721,0.241,64.87,21.79,0.14,992,4.4,60,2.6 +2020,2,2,7,0,30.400000000000002,1.05,0.1829,0.62,161,841,885,8,23,436,272,0,670,0.241,64.81,30.57,0.14,992,4.4,59,2.4000000000000004 +2020,2,2,8,0,29.900000000000002,1.05,0.1864,0.62,151,790,731,7,23,334,356,0,595,0.241,66.66,42.800000000000004,0.14,991,4.4,59,2.3000000000000003 +2020,2,2,9,0,29.200000000000003,1.07,0.18150000000000002,0.62,130,706,522,8,23.200000000000003,202,475,0,465,0.241,70.33,56.27,0.14,991,4.4,58,2.1 +2020,2,2,10,0,27.8,1.07,0.1825,0.62,99,536,280,7,23.700000000000003,120,356,0,241,0.242,78.31,70.23,0.14,992,4.3,58,1.6 +2020,2,2,11,0,26.1,1.08,0.1761,0.62,38,175,55,8,23.6,38,175,5,55,0.243,86.12,84.36,0.14,992,4.3,62,1.2000000000000002 +2020,2,2,12,0,25.3,1.11,0.166,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.244,88.38,98.83,0.14,993,4.2,63,1.3 +2020,2,2,13,0,24.5,1.1300000000000001,0.1603,0.62,0,0,0,7,23.1,0,0,0,0,0.245,91.76,113.17,0.14,994,4.1000000000000005,61,1.3 +2020,2,2,14,0,23.900000000000002,1.1500000000000001,0.1555,0.62,0,0,0,7,22.900000000000002,0,0,0,0,0.245,94.04,127.44,0.14,995,4,55,1.4000000000000001 +2020,2,2,15,0,23.3,1.17,0.15080000000000002,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.245,96.16,141.44,0.14,995,3.9000000000000004,50,1.5 +2020,2,2,16,0,22.900000000000002,1.19,0.1479,0.62,0,0,0,8,22.400000000000002,0,0,0,0,0.245,96.95,154.68,0.14,995,3.7,46,1.6 +2020,2,2,17,0,22.400000000000002,1.18,0.14730000000000001,0.62,0,0,0,0,22.1,0,0,0,0,0.244,98.08,164.9,0.14,994,3.6,42,1.7000000000000002 +2020,2,2,18,0,22.1,1.1500000000000001,0.1524,0.62,0,0,0,8,21.8,0,0,0,0,0.244,97.99000000000001,164.22,0.14,993,3.5,38,1.7000000000000002 +2020,2,2,19,0,21.700000000000003,1.1300000000000001,0.1625,0.62,0,0,0,8,21.400000000000002,0,0,0,0,0.244,98.4,153.47,0.14,993,3.4000000000000004,37,1.7000000000000002 +2020,2,2,20,0,21.400000000000002,1.1300000000000001,0.1729,0.62,0,0,0,1,21.200000000000003,0,0,0,0,0.244,98.51,140.11,0.14,993,3.4000000000000004,37,1.6 +2020,2,2,21,0,21.200000000000003,1.1500000000000001,0.18530000000000002,0.62,0,0,0,3,20.900000000000002,0,0,0,0,0.244,98.22,126.06,0.14,993,3.4000000000000004,35,1.4000000000000001 +2020,2,2,22,0,21,1.18,0.1968,0.62,0,0,0,0,20.700000000000003,0,0,0,0,0.244,98.23,111.78,0.14,993,3.4000000000000004,35,1.3 +2020,2,2,23,0,21.400000000000002,1.21,0.2061,0.62,0,0,0,0,20.8,0,0,0,0,0.244,96.32000000000001,97.42,0.14,994,3.4000000000000004,33,1.4000000000000001 +2020,2,3,0,0,23.1,1.24,0.21230000000000002,0.62,47,210,73,0,21.400000000000002,47,210,0,73,0.244,90.09,82.97,0.14,994,3.5,34,2.4000000000000004 +2020,2,3,1,0,24.700000000000003,1.3,0.2088,0.62,107,550,306,0,21.6,107,550,0,306,0.244,83.03,68.82000000000001,0.14,995,3.5,40,3 +2020,2,3,2,0,26.400000000000002,1.35,0.20470000000000002,0.62,138,715,549,0,21.700000000000003,138,715,0,549,0.244,75.2,54.86,0.14,995,3.5,42,3.1 +2020,2,3,3,0,27.700000000000003,1.3800000000000001,0.2041,0.62,155,801,755,8,21.700000000000003,269,552,0,683,0.245,69.66,41.43,0.14,995,3.5,44,2.9000000000000004 +2020,2,3,4,0,28.700000000000003,1.3900000000000001,0.1986,0.62,164,849,904,0,21.700000000000003,164,849,0,904,0.245,65.95,29.330000000000002,0.14,995,3.6,44,2.4000000000000004 +2020,2,3,5,0,29.6,1.3900000000000001,0.19720000000000001,0.62,168,869,980,3,21.8,403,523,0,892,0.246,62.95,21.03,0.14,994,3.6,43,2 +2020,2,3,6,0,30.1,1.3800000000000001,0.1943,0.62,167,869,975,3,21.900000000000002,474,304,0,757,0.246,61.44,21.51,0.14,993,3.7,40,1.6 +2020,2,3,7,0,30.200000000000003,1.36,0.2025,0.62,166,840,890,3,21.900000000000002,449,176,0,602,0.246,61.14,30.37,0.14,992,3.8000000000000003,39,1.4000000000000001 +2020,2,3,8,0,29.900000000000002,1.32,0.2185,0.62,161,779,733,3,21.900000000000002,365,135,0,464,0.247,62.29,42.660000000000004,0.14,991,3.8000000000000003,43,1.2000000000000002 +2020,2,3,9,0,29.400000000000002,1.29,0.2417,0.62,149,667,520,3,22.200000000000003,242,302,0,410,0.247,65.27,56.160000000000004,0.14,991,3.9000000000000004,48,1.1 +2020,2,3,10,0,28.3,1.27,0.2721,0.62,117,465,275,3,22.6,128,300,0,230,0.246,71.06,70.16,0.14,992,4,51,0.9 +2020,2,3,11,0,26.700000000000003,1.27,0.2751,0.62,40,125,52,0,22.8,40,125,0,52,0.246,79.43,84.31,0.14,992,4.1000000000000005,60,0.6000000000000001 +2020,2,3,12,0,26,1.28,0.2713,0.62,0,0,0,1,22.6,0,0,0,0,0.245,81.42,98.8,0.14,993,4.1000000000000005,66,0.6000000000000001 +2020,2,3,13,0,25.200000000000003,1.28,0.26780000000000004,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.245,84.52,113.16,0.14,993,4.1000000000000005,67,0.7000000000000001 +2020,2,3,14,0,24.5,1.27,0.2615,0.62,0,0,0,0,22.3,0,0,0,0,0.244,87.34,127.45,0.14,993,4,64,0.8 +2020,2,3,15,0,23.8,1.26,0.2594,0.62,0,0,0,0,22.1,0,0,0,0,0.244,90.06,141.5,0.14,993,4,57,0.9 +2020,2,3,16,0,23.3,1.25,0.2636,0.62,0,0,0,3,21.900000000000002,0,0,0,0,0.243,91.63,154.8,0.14,993,3.9000000000000004,49,0.9 +2020,2,3,17,0,22.8,1.23,0.2727,0.62,0,0,0,1,21.700000000000003,0,0,0,0,0.242,93.67,165.14000000000001,0.14,993,3.9000000000000004,40,0.9 +2020,2,3,18,0,22.400000000000002,1.23,0.2771,0.62,0,0,0,1,21.6,0,0,0,0,0.241,95.05,164.48,0.14,992,3.9000000000000004,32,0.9 +2020,2,3,19,0,22,1.25,0.26990000000000003,0.62,0,0,0,3,21.400000000000002,0,0,0,0,0.24,96.48,153.63,0.14,992,3.8000000000000003,28,1 +2020,2,3,20,0,21.6,1.26,0.2585,0.62,0,0,0,8,21.3,0,0,0,0,0.24,97.95,140.21,0.14,992,3.7,29,1 +2020,2,3,21,0,21.3,1.28,0.248,0.62,0,0,0,3,21.1,0,0,0,0,0.24,98.72,126.13000000000001,0.14,992,3.7,35,1.1 +2020,2,3,22,0,21,1.31,0.234,0.62,0,0,0,0,20.900000000000002,0,0,0,0,0.24,99.43,111.82000000000001,0.14,992,3.6,37,1.2000000000000002 +2020,2,3,23,0,21.3,1.34,0.21980000000000002,0.62,0,0,0,8,20.900000000000002,0,0,0,0,0.24,97.37,97.44,0.14,992,3.5,34,1.3 +2020,2,4,0,0,23.200000000000003,1.3900000000000001,0.2028,0.62,46,228,74,1,21.200000000000003,46,228,0,74,0.24,88.42,82.97,0.14,993,3.4000000000000004,33,2.3000000000000003 +2020,2,4,1,0,25,1.45,0.19010000000000002,0.62,100,577,309,8,21.200000000000003,122,415,0,272,0.241,79.31,68.79,0.14,994,3.3000000000000003,34,2.4000000000000004 +2020,2,4,2,0,26.8,1.49,0.18560000000000001,0.62,128,736,553,0,21,128,736,0,553,0.241,70.54,54.800000000000004,0.14,994,3.4000000000000004,32,2.2 +2020,2,4,3,0,28.200000000000003,1.54,0.24150000000000002,0.62,167,779,751,0,20.900000000000002,167,779,0,751,0.242,64.74,41.33,0.14,994,3.4000000000000004,32,1.8 +2020,2,4,4,0,29.200000000000003,1.55,0.2469,0.62,181,819,896,1,21,181,819,0,896,0.243,61.29,29.16,0.14,993,3.6,36,1.5 +2020,2,4,5,0,29.900000000000002,1.55,0.2524,0.62,189,835,970,8,21.1,491,246,0,721,0.244,59.11,20.76,0.14,993,3.7,39,1.3 +2020,2,4,6,0,30.200000000000003,1.58,0.2831,0.62,200,814,958,3,21.1,448,59,0,503,0.244,58.17,21.23,0.14,992,3.9000000000000004,41,1.3 +2020,2,4,7,0,30.200000000000003,1.58,0.2936,0.62,199,782,875,8,21.1,359,490,0,782,0.245,58.22,30.16,0.14,991,4,43,1.2000000000000002 +2020,2,4,8,0,29.900000000000002,1.57,0.30960000000000004,0.62,189,719,719,8,21.200000000000003,324,47,0,359,0.245,59.550000000000004,42.51,0.14,990,4.1000000000000005,49,1.2000000000000002 +2020,2,4,9,0,29.5,1.55,0.3302,0.62,170,607,509,8,21.8,225,385,0,441,0.245,63.25,56.06,0.14,991,4.2,56,1.1 +2020,2,4,10,0,28.400000000000002,1.55,0.3437,0.62,125,424,269,8,22,115,399,0,251,0.246,68.11,70.08,0.14,991,4.3,62,0.9 +2020,2,4,11,0,26.6,1.54,0.3498,0.62,38,113,50,3,22.400000000000002,35,51,3,40,0.247,77.91,84.26,0.14,992,4.3,66,0.6000000000000001 +2020,2,4,12,0,25.900000000000002,1.54,0.34740000000000004,0.62,0,0,0,3,22.200000000000003,0,0,0,0,0.249,80,98.77,0.14,992,4.4,67,0.6000000000000001 +2020,2,4,13,0,25.3,1.55,0.3372,0.62,0,0,0,3,22,0,0,0,0,0.25,82.15,113.16,0.14,993,4.4,65,0.6000000000000001 +2020,2,4,14,0,24.700000000000003,1.55,0.3225,0.62,0,0,0,3,22,0,0,0,0,0.25,84.91,127.47,0.14,993,4.4,61,0.6000000000000001 +2020,2,4,15,0,24.1,1.55,0.311,0.62,0,0,0,3,21.900000000000002,0,0,0,0,0.251,87.61,141.56,0.14,993,4.4,56,0.7000000000000001 +2020,2,4,16,0,23.5,1.53,0.30460000000000004,0.62,0,0,0,3,21.900000000000002,0,0,0,0,0.251,90.52,154.93,0.14,993,4.4,50,0.7000000000000001 +2020,2,4,17,0,23,1.52,0.3018,0.62,0,0,0,3,21.8,0,0,0,0,0.25,93.06,165.39000000000001,0.14,992,4.4,44,0.7000000000000001 +2020,2,4,18,0,22.6,1.51,0.29810000000000003,0.62,0,0,0,8,21.8,0,0,0,0,0.25,95.17,164.75,0.14,992,4.4,39,0.8 +2020,2,4,19,0,22.3,1.51,0.2887,0.62,0,0,0,8,21.700000000000003,0,0,0,0,0.25,96.58,153.79,0.14,991,4.4,34,0.9 +2020,2,4,20,0,22,1.51,0.2796,0.62,0,0,0,8,21.6,0,0,0,0,0.25,97.83,140.31,0.14,991,4.4,31,1 +2020,2,4,21,0,21.8,1.52,0.2721,0.62,0,0,0,8,21.5,0,0,0,0,0.251,98.31,126.2,0.14,991,4.3,28,1 +2020,2,4,22,0,21.700000000000003,1.53,0.2669,0.62,0,0,0,7,21.400000000000002,0,0,0,0,0.252,98.08,111.86,0.14,991,4.3,27,1 +2020,2,4,23,0,22.1,1.54,0.2586,0.62,0,0,0,7,21.5,0,0,0,0,0.252,96.43,97.46000000000001,0.14,992,4.3,29,1.1 +2020,2,5,0,0,23.900000000000002,1.56,0.24050000000000002,0.62,46,204,71,7,21.900000000000002,31,0,3,31,0.253,88.45,82.96000000000001,0.14,993,4.3,33,2.2 +2020,2,5,1,0,25.700000000000003,1.58,0.21860000000000002,0.62,106,542,302,7,22.1,152,148,0,206,0.253,80.45,68.76,0.14,993,4.3,40,2.5 +2020,2,5,2,0,27.400000000000002,1.59,0.2021,0.62,133,713,544,7,22.200000000000003,237,377,0,455,0.253,73.43,54.74,0.14,994,4.3,45,2.5 +2020,2,5,3,0,28.700000000000003,1.59,0.1948,0.62,149,800,751,8,22.3,282,516,0,670,0.253,68.5,41.230000000000004,0.14,993,4.4,50,2.3000000000000003 +2020,2,5,4,0,29.6,1.58,0.1797,0.62,152,853,899,0,22.5,152,853,0,899,0.252,65.62,28.990000000000002,0.14,993,4.5,54,2 +2020,2,5,5,0,30.200000000000003,1.58,0.16040000000000001,0.62,149,884,977,1,22.6,149,884,0,977,0.252,63.81,20.490000000000002,0.14,992,4.6000000000000005,56,1.7000000000000002 +2020,2,5,6,0,30.400000000000002,1.57,0.1443,0.62,140,894,975,2,22.700000000000003,457,360,0,794,0.252,63.7,20.95,0.14,991,4.7,60,1.4000000000000001 +2020,2,5,7,0,30.3,1.56,0.13770000000000002,0.62,133,878,894,3,22.8,451,203,0,626,0.251,64.23,29.96,0.14,990,4.800000000000001,66,1.3 +2020,2,5,8,0,30,1.55,0.1328,0.62,122,837,741,3,23,332,372,0,607,0.251,66.11,42.37,0.14,990,4.9,74,1.3 +2020,2,5,9,0,29.400000000000002,1.54,0.1306,0.62,106,758,531,3,23.5,167,1,0,167,0.251,70.69,55.95,0.14,990,5,81,1.2000000000000002 +2020,2,5,10,0,28.200000000000003,1.53,0.1302,0.62,81,604,288,3,23.6,141,86,0,170,0.25,76.08,70.01,0.14,990,5,85,1.1 +2020,2,5,11,0,26.6,1.52,0.1254,0.62,34,251,59,3,23.900000000000002,35,47,3,40,0.25,84.99,84.21000000000001,0.14,991,5,87,0.7000000000000001 +2020,2,5,12,0,25.900000000000002,1.46,0.1282,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.251,87.75,98.74000000000001,0.14,992,5,86,0.9 +2020,2,5,13,0,25.400000000000002,1.3900000000000001,0.1325,0.62,0,0,0,3,23.8,0,0,0,0,0.251,90.67,113.15,0.14,993,5.1000000000000005,82,1.1 +2020,2,5,14,0,24.900000000000002,1.35,0.1246,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.253,92.98,127.5,0.14,994,5,78,1.3 +2020,2,5,15,0,24.5,1.36,0.1192,0.62,0,0,0,3,23.5,0,0,0,0,0.253,94.04,141.62,0.14,994,5,71,1.2000000000000002 +2020,2,5,16,0,24.1,1.3800000000000001,0.1105,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.254,95.01,155.05,0.14,994,4.9,61,1.2000000000000002 +2020,2,5,17,0,23.700000000000003,1.4000000000000001,0.09970000000000001,0.62,0,0,0,1,23,0,0,0,0,0.253,95.67,165.65,0.14,993,4.9,51,1.4000000000000001 +2020,2,5,18,0,23.3,1.41,0.09630000000000001,0.62,0,0,0,1,22.700000000000003,0,0,0,0,0.252,96.45,165.01,0.14,992,4.800000000000001,42,1.5 +2020,2,5,19,0,23,1.41,0.09570000000000001,0.62,0,0,0,3,22.5,0,0,0,0,0.25,96.89,153.95000000000002,0.14,991,4.7,37,1.5 +2020,2,5,20,0,22.700000000000003,1.4000000000000001,0.09290000000000001,0.62,0,0,0,1,22.3,0,0,0,0,0.248,97.48,140.41,0.14,991,4.6000000000000005,34,1.4000000000000001 +2020,2,5,21,0,22.5,1.4000000000000001,0.0954,0.62,0,0,0,0,22.1,0,0,0,0,0.248,97.46000000000001,126.26,0.14,991,4.6000000000000005,33,1.2000000000000002 +2020,2,5,22,0,22.400000000000002,1.4000000000000001,0.0978,0.62,0,0,0,3,21.900000000000002,0,0,0,0,0.248,97.08,111.9,0.14,991,4.6000000000000005,36,1.1 +2020,2,5,23,0,22.700000000000003,1.4000000000000001,0.09720000000000001,0.62,0,0,0,3,22.1,0,0,0,0,0.247,96.43,97.47,0.14,992,4.6000000000000005,35,1.3 +2020,2,6,0,0,24.200000000000003,1.4000000000000001,0.09910000000000001,0.62,38,329,79,0,22.8,38,329,0,79,0.247,91.64,82.96000000000001,0.14,993,4.6000000000000005,34,2.3000000000000003 +2020,2,6,1,0,25.8,1.43,0.0984,0.62,77,660,316,1,22.8,77,660,0,316,0.247,83.73,68.73,0.14,994,4.7,39,2.7 +2020,2,6,2,0,27.400000000000002,1.45,0.09860000000000001,0.62,97,800,560,0,22.6,97,800,0,560,0.247,75.26,54.68,0.14,994,4.7,39,2.7 +2020,2,6,3,0,28.6,1.33,0.17070000000000002,0.62,141,811,752,0,22.5,141,811,0,752,0.248,69.78,41.12,0.14,994,4.800000000000001,40,2.5 +2020,2,6,4,0,29.700000000000003,1.34,0.16740000000000002,0.62,151,857,901,0,22.6,151,857,0,901,0.249,65.84,28.810000000000002,0.14,993,4.800000000000001,42,2.3000000000000003 +2020,2,6,5,0,30.400000000000002,1.35,0.1671,0.62,155,875,976,0,22.8,155,875,0,976,0.25,63.980000000000004,20.21,0.14,992,4.9,45,2 +2020,2,6,6,0,30.700000000000003,1.4000000000000001,0.2826,0.62,205,801,954,0,23,205,801,0,954,0.25,63.7,20.66,0.14,991,4.9,48,1.7000000000000002 +2020,2,6,7,0,30.700000000000003,1.3900000000000001,0.2827,0.62,198,777,872,1,23,198,777,0,872,0.25,63.730000000000004,29.76,0.14,990,4.9,53,1.5 +2020,2,6,8,0,30.5,1.4000000000000001,0.2862,0.62,184,723,720,3,23,190,5,0,194,0.249,64.2,42.230000000000004,0.14,990,4.9,59,1.3 +2020,2,6,9,0,29.900000000000002,1.4000000000000001,0.2938,0.62,161,622,510,3,23.5,173,3,0,175,0.248,68.8,55.86,0.14,990,5,63,1.1 +2020,2,6,10,0,28.700000000000003,1.4000000000000001,0.3033,0.62,120,442,271,3,23.6,142,94,0,174,0.247,73.95,69.94,0.14,990,5,67,1 +2020,2,6,11,0,27.1,1.3900000000000001,0.313,0.62,40,116,52,3,24,40,116,5,52,0.246,83.28,84.17,0.14,991,5,72,0.6000000000000001 +2020,2,6,12,0,26.400000000000002,1.3900000000000001,0.326,0.62,0,0,0,3,23.6,0,0,0,0,0.247,84.79,98.72,0.14,992,5,73,0.6000000000000001 +2020,2,6,13,0,25.900000000000002,1.3800000000000001,0.3312,0.62,0,0,0,3,23.5,0,0,0,0,0.247,86.59,113.15,0.14,993,5.1000000000000005,70,0.6000000000000001 +2020,2,6,14,0,25.3,1.3800000000000001,0.3267,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.247,89.35000000000001,127.52,0.14,994,5.1000000000000005,65,0.7000000000000001 +2020,2,6,15,0,24.8,1.3800000000000001,0.3169,0.62,0,0,0,8,23.3,0,0,0,0,0.247,91.4,141.68,0.14,994,5.1000000000000005,60,0.9 +2020,2,6,16,0,24.3,1.37,0.3008,0.62,0,0,0,8,23.1,0,0,0,0,0.247,93.04,155.18,0.14,993,5.1000000000000005,53,1 +2020,2,6,17,0,23.900000000000002,1.3800000000000001,0.2822,0.62,0,0,0,8,22.900000000000002,0,0,0,0,0.246,94.35000000000001,165.91,0.14,993,5,46,1.1 +2020,2,6,18,0,23.6,1.3900000000000001,0.2637,0.62,0,0,0,7,22.8,0,0,0,0,0.246,95.26,165.27,0.14,992,4.9,41,1.2000000000000002 +2020,2,6,19,0,23.400000000000002,1.41,0.2427,0.62,0,0,0,7,22.6,0,0,0,0,0.246,95.47,154.1,0.14,991,4.9,39,1.4000000000000001 +2020,2,6,20,0,23.200000000000003,1.41,0.22310000000000002,0.62,0,0,0,3,22.5,0,0,0,0,0.245,95.79,140.5,0.14,991,4.800000000000001,37,1.4000000000000001 +2020,2,6,21,0,23,1.41,0.2127,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.245,96.27,126.32000000000001,0.14,992,4.800000000000001,36,1.3 +2020,2,6,22,0,22.8,1.4000000000000001,0.2028,0.62,0,0,0,1,22.3,0,0,0,0,0.244,96.77,111.93,0.14,992,4.800000000000001,35,1.3 +2020,2,6,23,0,23.1,1.4000000000000001,0.1904,0.62,0,0,0,3,22.3,0,0,0,0,0.243,95.4,97.48,0.14,993,4.800000000000001,35,1.5 +2020,2,7,0,0,24.6,1.41,0.1859,0.62,45,234,74,3,22.6,40,0,3,40,0.244,88.49,82.94,0.14,994,4.7,35,2.5 +2020,2,7,1,0,26,1.43,0.1842,0.62,100,567,306,8,22.6,123,413,0,273,0.245,81.54,68.7,0.14,995,4.7,39,2.7 +2020,2,7,2,0,27.3,1.46,0.184,0.62,129,722,547,8,22.400000000000002,224,434,0,475,0.247,74.85000000000001,54.61,0.14,995,4.7,40,2.7 +2020,2,7,3,0,28.400000000000002,1.48,0.17850000000000002,0.62,144,808,754,3,22.200000000000003,376,212,3,536,0.247,69.12,41.01,0.14,995,4.7,39,2.8000000000000003 +2020,2,7,4,0,29.3,1.5,0.1799,0.62,155,851,902,8,22,370,473,0,786,0.247,64.81,28.62,0.14,994,4.7,40,2.9000000000000004 +2020,2,7,5,0,29.900000000000002,1.5,0.1837,0.62,162,868,977,8,21.900000000000002,425,427,0,827,0.247,62.25,19.92,0.14,993,4.7,40,2.9000000000000004 +2020,2,7,6,0,30.200000000000003,1.5,0.22510000000000002,0.62,180,840,967,8,21.900000000000002,474,317,0,771,0.248,61.22,20.37,0.14,992,4.7,41,2.9000000000000004 +2020,2,7,7,0,30.1,1.49,0.2323,0.62,177,812,883,8,21.900000000000002,335,24,0,356,0.247,61.690000000000005,29.560000000000002,0.14,991,4.800000000000001,40,2.7 +2020,2,7,8,0,29.8,1.48,0.2371,0.62,166,760,729,8,22,369,143,0,476,0.247,62.92,42.1,0.14,990,4.800000000000001,39,2.5 +2020,2,7,9,0,29.1,1.46,0.2419,0.62,145,665,520,8,22.3,214,441,1,462,0.247,66.9,55.76,0.14,990,4.800000000000001,40,2 +2020,2,7,10,0,27.700000000000003,1.45,0.24280000000000002,0.62,109,495,279,8,22.900000000000002,104,479,0,269,0.248,75.25,69.87,0.14,991,4.800000000000001,40,1.4000000000000001 +2020,2,7,11,0,25.700000000000003,1.44,0.2396,0.62,39,158,55,8,23,39,158,5,55,0.248,84.98,84.12,0.14,992,4.800000000000001,43,0.9 +2020,2,7,12,0,25,1.43,0.2361,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.248,86.93,98.7,0.14,992,4.7,44,1 +2020,2,7,13,0,24.5,1.43,0.2366,0.62,0,0,0,3,22.5,0,0,0,0,0.248,88.58,113.15,0.14,993,4.7,42,1 +2020,2,7,14,0,23.900000000000002,1.44,0.24550000000000002,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.248,91.11,127.55,0.14,994,4.7,38,0.9 +2020,2,7,15,0,23.5,1.45,0.2597,0.62,0,0,0,0,22.3,0,0,0,0,0.248,92.74,141.74,0.14,994,4.7,28,0.8 +2020,2,7,16,0,23.1,1.47,0.2674,0.62,0,0,0,0,22.1,0,0,0,0,0.248,94.34,155.31,0.14,994,4.6000000000000005,18,0.9 +2020,2,7,17,0,22.8,1.49,0.2647,0.62,0,0,0,0,22,0,0,0,0,0.247,95.38,166.17000000000002,0.14,994,4.6000000000000005,13,1.1 +2020,2,7,18,0,22.5,1.51,0.2554,0.62,0,0,0,0,21.8,0,0,0,0,0.246,96.11,165.54,0.14,993,4.5,13,1.2000000000000002 +2020,2,7,19,0,22.1,1.53,0.24430000000000002,0.62,0,0,0,0,21.700000000000003,0,0,0,0,0.245,97.31,154.25,0.14,992,4.4,15,1.3 +2020,2,7,20,0,21.8,1.53,0.2338,0.62,0,0,0,3,21.5,0,0,0,0,0.245,97.99000000000001,140.59,0.14,992,4.3,17,1.3 +2020,2,7,21,0,21.5,1.53,0.22010000000000002,0.62,0,0,0,3,21.200000000000003,0,0,1,0,0.244,98.33,126.37,0.14,992,4.2,19,1.2000000000000002 +2020,2,7,22,0,21.200000000000003,1.53,0.2058,0.62,0,0,0,0,21,0,0,0,0,0.244,98.52,111.96000000000001,0.14,992,4.1000000000000005,21,1.1 +2020,2,7,23,0,21.5,1.53,0.1918,0.62,0,0,0,0,21,0,0,0,0,0.243,96.88,97.49000000000001,0.14,993,4,21,1.1 +2020,2,8,0,0,23.400000000000002,1.53,0.1779,0.62,43,253,74,8,21.5,43,156,3,62,0.243,89.12,82.93,0.14,994,4,23,1.9000000000000001 +2020,2,8,1,0,25.200000000000003,1.55,0.1638,0.62,93,599,311,3,21.400000000000002,142,281,0,244,0.242,79.28,68.66,0.14,995,3.9000000000000004,26,2 +2020,2,8,2,0,26.900000000000002,1.56,0.152,0.62,116,760,557,8,20.700000000000003,204,502,0,495,0.243,69.02,54.54,0.14,996,3.9000000000000004,30,1.9000000000000001 +2020,2,8,3,0,28.1,1.4000000000000001,0.22510000000000002,0.62,161,782,752,7,20.3,334,396,0,634,0.244,62.47,40.89,0.14,995,3.9000000000000004,36,1.8 +2020,2,8,4,0,29.1,1.41,0.21780000000000002,0.62,170,832,902,7,20.200000000000003,423,363,0,743,0.244,58.63,28.44,0.14,995,4,42,1.8 +2020,2,8,5,0,29.700000000000003,1.42,0.21450000000000002,0.62,175,853,979,7,20.3,478,315,0,774,0.244,56.99,19.64,0.14,994,4.1000000000000005,45,1.7000000000000002 +2020,2,8,6,0,30.1,1.3800000000000001,0.18130000000000002,0.62,161,872,980,6,20.5,497,222,0,706,0.243,56.42,20.080000000000002,0.14,993,4.2,48,1.5 +2020,2,8,7,0,30.200000000000003,1.36,0.1852,0.62,157,847,896,6,20.700000000000003,448,243,0,660,0.243,56.92,29.36,0.14,992,4.3,49,1.4000000000000001 +2020,2,8,8,0,29.900000000000002,1.34,0.1877,0.62,148,798,741,7,20.900000000000002,356,291,0,572,0.242,58.660000000000004,41.96,0.14,991,4.4,51,1.3 +2020,2,8,9,0,29.6,1.33,0.19,0.62,130,708,529,7,21.5,235,354,0,435,0.242,61.730000000000004,55.67,0.14,991,4.5,49,1.2000000000000002 +2020,2,8,10,0,28.5,1.34,0.1829,0.62,97,550,287,6,21.8,142,79,0,169,0.243,67.02,69.81,0.14,992,4.5,47,0.9 +2020,2,8,11,0,26.8,1.35,0.17400000000000002,0.62,38,202,59,6,22.200000000000003,30,0,3,30,0.244,76.16,84.09,0.14,993,4.5,49,0.6000000000000001 +2020,2,8,12,0,26.1,1.36,0.1651,0.62,0,0,0,6,22.200000000000003,0,0,0,0,0.245,79.06,98.68,0.14,994,4.5,54,0.6000000000000001 +2020,2,8,13,0,25.5,1.3800000000000001,0.1578,0.62,0,0,0,7,22.1,0,0,0,0,0.245,81.31,113.16,0.14,994,4.5,56,0.6000000000000001 +2020,2,8,14,0,24.900000000000002,1.4000000000000001,0.1525,0.62,0,0,0,8,22.1,0,0,0,0,0.246,84.33,127.58,0.14,995,4.5,55,0.7000000000000001 +2020,2,8,15,0,24.400000000000002,1.42,0.14800000000000002,0.62,0,0,0,8,22.1,0,0,0,0,0.246,87.03,141.81,0.14,995,4.5,47,0.7000000000000001 +2020,2,8,16,0,23.900000000000002,1.44,0.14100000000000001,0.62,0,0,0,3,22.1,0,0,0,0,0.246,89.64,155.44,0.14,994,4.5,35,0.7000000000000001 +2020,2,8,17,0,23.400000000000002,1.47,0.13390000000000002,0.62,0,0,0,0,22.1,0,0,0,0,0.246,92.23,166.44,0.14,994,4.5,26,0.8 +2020,2,8,18,0,23,1.49,0.1242,0.62,0,0,0,3,22.1,0,0,0,0,0.246,94.52,165.8,0.14,994,4.5,23,0.9 +2020,2,8,19,0,22.8,1.52,0.1149,0.62,0,0,0,0,22.1,0,0,0,0,0.247,95.69,154.39000000000001,0.14,993,4.5,22,1 +2020,2,8,20,0,22.6,1.53,0.1038,0.62,0,0,0,8,22.1,0,0,0,0,0.247,96.85000000000001,140.68,0.14,993,4.5,20,1.1 +2020,2,8,21,0,22.400000000000002,1.54,0.095,0.62,0,0,0,1,22,0,0,0,0,0.247,97.47,126.42,0.14,993,4.4,14,1.1 +2020,2,8,22,0,22.200000000000003,1.53,0.0916,0.62,0,0,0,8,21.8,0,0,0,0,0.248,97.82000000000001,111.98,0.14,993,4.3,10,1 +2020,2,8,23,0,22.6,1.5,0.0911,0.62,0,0,0,7,22,0,0,0,0,0.248,96.64,97.49000000000001,0.14,994,4.3,10,1.2000000000000002 +2020,2,9,0,0,24.400000000000002,1.47,0.0921,0.62,38,346,81,7,22.700000000000003,44,65,3,52,0.248,90.25,82.91,0.14,994,4.2,14,2.1 +2020,2,9,1,0,26.1,1.43,0.09280000000000001,0.62,76,672,321,7,23,145,252,0,237,0.249,83.03,68.61,0.14,995,4.3,17,2.5 +2020,2,9,2,0,27.6,1.4000000000000001,0.09480000000000001,0.62,97,806,566,6,23.1,271,181,0,376,0.25,76.34,54.47,0.14,995,4.4,20,2.6 +2020,2,9,3,0,28.6,1.3900000000000001,0.08700000000000001,0.62,106,883,775,7,23.3,369,264,0,569,0.25,72.95,40.78,0.14,994,4.5,23,2.4000000000000004 +2020,2,9,4,0,29.400000000000002,1.37,0.0814,0.62,110,922,922,7,23.5,428,346,0,733,0.249,70.7,28.25,0.14,994,4.800000000000001,29,2.2 +2020,2,9,5,0,29.900000000000002,1.34,0.07640000000000001,0.62,111,940,998,7,23.6,471,338,0,790,0.248,69.11,19.35,0.14,992,5,35,1.9000000000000001 +2020,2,9,6,0,30.1,1.24,0.0878,0.62,117,928,990,7,23.700000000000003,484,290,0,757,0.247,68.53,19.79,0.14,991,5.300000000000001,42,1.7000000000000002 +2020,2,9,7,0,30,1.18,0.09340000000000001,0.62,117,903,905,7,23.8,454,206,0,634,0.246,69.28,29.16,0.14,990,5.6000000000000005,50,1.6 +2020,2,9,8,0,29.3,1.11,0.10310000000000001,0.62,114,853,749,7,24,371,141,0,476,0.246,73.38,41.83,0.14,990,5.800000000000001,56,1.6 +2020,2,9,9,0,28.5,1.04,0.1358,0.62,113,742,533,7,24.900000000000002,256,238,0,391,0.246,80.87,55.58,0.14,990,6,59,1.6 +2020,2,9,10,0,27.400000000000002,0.97,0.1628,0.62,95,549,285,7,24.900000000000002,83,0,0,83,0.247,86.45,69.75,0.14,991,6.1000000000000005,57,1.3 +2020,2,9,11,0,26.3,0.89,0.16840000000000002,0.62,40,174,58,7,25.1,11,0,3,11,0.248,92.97,84.05,0.14,992,6.2,56,0.9 +2020,2,9,12,0,25.8,0.89,0.1655,0.62,0,0,0,8,24.900000000000002,0,0,0,0,0.249,94.64,98.67,0.14,992,6.2,53,0.9 +2020,2,9,13,0,25.400000000000002,0.93,0.1421,0.62,0,0,0,6,24.6,0,0,0,0,0.25,95.37,113.17,0.14,993,6.1000000000000005,47,0.8 +2020,2,9,14,0,25,1.01,0.1179,0.62,0,0,0,7,24.3,0,0,0,0,0.252,95.97,127.62,0.14,994,6,38,0.9 +2020,2,9,15,0,24.700000000000003,1.05,0.10250000000000001,0.62,0,0,0,6,24.1,0,0,0,0,0.252,96.37,141.88,0.14,994,5.9,28,1 +2020,2,9,16,0,24.400000000000002,1.04,0.0921,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.252,97.01,155.57,0.14,993,5.9,18,1 +2020,2,9,17,0,24.3,1.02,0.0862,0.62,0,0,0,6,23.700000000000003,0,0,0,0,0.251,96.67,166.71,0.14,993,6,10,1 +2020,2,9,18,0,24.1,1.02,0.0825,0.62,0,0,0,6,23.5,0,0,0,0,0.25,96.74000000000001,166.07,0.14,992,6,6,1 +2020,2,9,19,0,23.900000000000002,1.04,0.08,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.25,96.91,154.53,0.14,992,5.9,4,1 +2020,2,9,20,0,23.700000000000003,1.07,0.0785,0.62,0,0,0,6,23.200000000000003,0,0,0,0,0.25,96.83,140.76,0.14,991,5.9,6,0.9 +2020,2,9,21,0,23.5,1.09,0.0779,0.62,0,0,0,6,23,0,0,0,0,0.249,96.93,126.47,0.14,991,5.9,11,0.9 +2020,2,9,22,0,23.400000000000002,1.1,0.07970000000000001,0.62,0,0,0,7,22.900000000000002,0,0,0,0,0.248,96.77,112,0.14,992,5.9,15,0.8 +2020,2,9,23,0,23.6,1.09,0.08080000000000001,0.62,0,0,0,7,23,0,0,0,0,0.247,96.47,97.49000000000001,0.14,993,5.9,16,0.8 +2020,2,10,0,0,24.6,1.08,0.0855,0.62,38,332,79,7,23.5,44,145,3,62,0.246,93.62,82.89,0.14,993,6,18,1.5 +2020,2,10,1,0,25.6,1.07,0.08900000000000001,0.62,76,658,317,7,23.900000000000002,149,224,0,230,0.247,90.55,68.57000000000001,0.14,994,6,28,1.9000000000000001 +2020,2,10,2,0,26.5,1.07,0.084,0.62,94,802,561,6,24.1,225,25,0,240,0.247,86.64,54.39,0.14,995,6,42,2.1 +2020,2,10,3,0,27.3,1.06,0.0945,0.62,111,863,765,6,24.1,378,137,0,483,0.247,82.47,40.660000000000004,0.14,994,6,50,2.2 +2020,2,10,4,0,27.900000000000002,0.99,0.09870000000000001,0.62,121,896,912,6,24,406,51,0,451,0.246,79.45,28.060000000000002,0.14,994,6.1000000000000005,56,2.1 +2020,2,10,5,0,28.1,0.91,0.1022,0.62,127,909,987,6,24,401,33,0,432,0.245,78.61,19.05,0.14,993,6.1000000000000005,62,1.9000000000000001 +2020,2,10,6,0,28,0.81,0.1043,0.62,129,906,983,6,24.200000000000003,420,40,0,457,0.243,79.7,19.5,0.14,992,6.2,70,1.6 +2020,2,10,7,0,27.6,0.76,0.1216,0.62,134,873,897,6,24.3,372,35,0,403,0.242,82.45,28.97,0.14,991,6.2,79,1.5 +2020,2,10,8,0,27.200000000000003,0.71,0.1356,0.62,132,816,742,6,24.6,307,32,0,331,0.241,85.88,41.7,0.14,991,6.2,84,1.3 +2020,2,10,9,0,26.8,0.72,0.15430000000000002,0.62,124,715,529,7,24.8,180,5,0,183,0.241,88.89,55.49,0.14,991,6.2,83,1.1 +2020,2,10,10,0,26.1,0.72,0.1588,0.62,96,544,285,6,24.700000000000003,25,0,0,25,0.242,92.23,69.69,0.14,991,6.2,79,0.8 +2020,2,10,11,0,25.400000000000002,0.73,0.1527,0.62,40,180,59,6,24.6,16,0,3,16,0.243,95.07000000000001,84.02,0.14,992,6.1000000000000005,77,0.6000000000000001 +2020,2,10,12,0,25,0.77,0.1452,0.62,0,0,0,7,24.3,0,0,0,0,0.243,96.06,98.65,0.14,993,6.1000000000000005,71,0.6000000000000001 +2020,2,10,13,0,24.8,0.8200000000000001,0.1335,0.62,0,0,0,7,24.1,0,0,0,0,0.243,96.14,113.18,0.14,994,6,64,0.7000000000000001 +2020,2,10,14,0,24.5,0.87,0.124,0.62,0,0,0,7,24,0,0,0,0,0.243,97,127.65,0.14,994,5.9,55,0.8 +2020,2,10,15,0,24.3,0.91,0.11510000000000001,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.243,97.35000000000001,141.95000000000002,0.14,994,5.800000000000001,47,0.9 +2020,2,10,16,0,24.1,0.9400000000000001,0.108,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.243,97.53,155.71,0.14,994,5.7,43,1 +2020,2,10,17,0,23.900000000000002,0.9500000000000001,0.10200000000000001,0.62,0,0,0,8,23.5,0,0,0,0,0.244,97.56,166.98,0.14,993,5.6000000000000005,41,1.1 +2020,2,10,18,0,23.700000000000003,0.96,0.09620000000000001,0.62,0,0,0,8,23.3,0,0,0,0,0.244,97.57000000000001,166.33,0.14,992,5.6000000000000005,42,1.1 +2020,2,10,19,0,23.5,1,0.0884,0.62,0,0,0,7,23.1,0,0,0,0,0.244,97.74000000000001,154.67000000000002,0.14,992,5.5,43,1.1 +2020,2,10,20,0,23.400000000000002,1.02,0.078,0.62,0,0,0,8,23,0,0,0,0,0.244,97.36,140.84,0.14,991,5.5,43,1.1 +2020,2,10,21,0,23.3,1.06,0.0736,0.62,0,0,0,8,22.8,0,0,0,0,0.244,97.27,126.51,0.14,992,5.5,42,1.1 +2020,2,10,22,0,23.200000000000003,1.1,0.0697,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.243,97.21000000000001,112.02,0.14,992,5.5,38,1 +2020,2,10,23,0,23.6,1.12,0.065,0.62,0,0,0,7,23.1,0,0,0,0,0.242,96.75,97.49000000000001,0.14,993,5.6000000000000005,39,1.2000000000000002 +2020,2,11,0,0,24.900000000000002,1.1500000000000001,0.0658,0.62,36,370,82,7,23.900000000000002,44,112,3,58,0.242,94.23,82.86,0.14,993,5.6000000000000005,41,1.9000000000000001 +2020,2,11,1,0,26.200000000000003,1.18,0.061700000000000005,0.62,67,699,323,7,24.400000000000002,154,143,0,206,0.243,90.07000000000001,68.52,0.14,994,5.7,53,2.5 +2020,2,11,2,0,27.3,1.19,0.0562,0.62,82,835,569,6,24.5,270,114,0,337,0.242,84.56,54.31,0.14,994,5.7,59,2.8000000000000003 +2020,2,11,3,0,28.200000000000003,1.19,0.055600000000000004,0.62,91,900,775,6,24.400000000000002,357,70,0,410,0.242,79.71000000000001,40.53,0.14,994,5.800000000000001,62,2.7 +2020,2,11,4,0,28.700000000000003,1.2,0.056600000000000004,0.62,98,933,923,7,24.400000000000002,458,131,0,574,0.241,77.48,27.86,0.14,993,5.9,65,2.6 +2020,2,11,5,0,28.900000000000002,1.2,0.0582,0.62,102,946,998,7,24.400000000000002,504,197,0,691,0.241,76.58,18.75,0.14,992,6,69,2.5 +2020,2,11,6,0,28.900000000000002,0.99,0.13490000000000002,0.62,143,886,980,7,24.3,495,120,0,608,0.24,76.4,19.2,0.14,991,6.1000000000000005,73,2.3000000000000003 +2020,2,11,7,0,28.8,1,0.1332,0.62,138,867,898,7,24.400000000000002,429,332,0,720,0.23900000000000002,77.09,28.77,0.14,991,6.2,77,2.2 +2020,2,11,8,0,28.3,1,0.1331,0.62,128,824,744,8,24.5,345,344,0,602,0.23900000000000002,80.10000000000001,41.58,0.14,990,6.300000000000001,82,2 +2020,2,11,9,0,27.700000000000003,0.99,0.13820000000000002,0.62,115,738,534,7,24.900000000000002,250,290,0,414,0.23800000000000002,84.79,55.410000000000004,0.14,991,6.300000000000001,84,1.8 +2020,2,11,10,0,27,0.99,0.14,0.62,89,577,290,7,25.200000000000003,73,0,0,73,0.23800000000000002,89.82000000000001,69.64,0.14,991,6.300000000000001,84,1.5 +2020,2,11,11,0,26,1,0.1336,0.62,38,219,61,6,25.1,6,0,3,6,0.23800000000000002,94.54,83.99,0.14,992,6.300000000000001,84,1.2000000000000002 +2020,2,11,12,0,25.6,1.04,0.1223,0.62,0,0,0,7,24.8,0,0,0,0,0.23800000000000002,95.56,98.64,0.14,993,6.2,82,1.4000000000000001 +2020,2,11,13,0,25.3,1.07,0.11420000000000001,0.62,0,0,0,7,24.6,0,0,0,0,0.23900000000000002,96.05,113.19,0.14,994,6.2,78,1.8 +2020,2,11,14,0,25,1.1,0.1071,0.62,0,0,0,8,24.3,0,0,0,0,0.23900000000000002,96.17,127.69,0.14,995,6.1000000000000005,75,2.1 +2020,2,11,15,0,24.6,1.1300000000000001,0.10650000000000001,0.62,0,0,0,6,24.1,0,0,0,0,0.23900000000000002,96.87,142.02,0.14,995,6,72,2.3000000000000003 +2020,2,11,16,0,24.3,1.1500000000000001,0.1048,0.62,0,0,0,7,23.8,0,0,0,0,0.23900000000000002,96.97,155.84,0.14,994,5.800000000000001,69,2.4000000000000004 +2020,2,11,17,0,24.1,1.17,0.0978,0.62,0,0,0,6,23.6,0,0,0,0,0.23800000000000002,96.92,167.25,0.14,993,5.7,68,2.4000000000000004 +2020,2,11,18,0,23.900000000000002,1.21,0.0937,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.23800000000000002,97.14,166.59,0.14,992,5.6000000000000005,67,2.4000000000000004 +2020,2,11,19,0,23.8,1.25,0.0877,0.62,0,0,0,7,23.3,0,0,0,0,0.23800000000000002,97.27,154.8,0.14,992,5.6000000000000005,66,2.2 +2020,2,11,20,0,23.700000000000003,1.28,0.0809,0.62,0,0,0,7,23.3,0,0,0,0,0.23800000000000002,97.45,140.91,0.14,992,5.5,64,2 +2020,2,11,21,0,23.6,1.3,0.0813,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.23900000000000002,97.5,126.55,0.14,992,5.5,61,1.8 +2020,2,11,22,0,23.5,1.32,0.0809,0.62,0,0,0,8,23.1,0,0,0,0,0.24,97.55,112.04,0.14,992,5.5,57,1.7000000000000002 +2020,2,11,23,0,23.700000000000003,1.34,0.07930000000000001,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.24,96.94,97.48,0.14,992,5.5,54,1.8 +2020,2,12,0,0,24.900000000000002,1.35,0.08370000000000001,0.62,38,348,81,8,23.700000000000003,44,157,3,63,0.24,92.88,82.84,0.14,993,5.6000000000000005,54,2.5 +2020,2,12,1,0,26.3,1.36,0.0876,0.62,75,668,320,8,23.900000000000002,153,100,0,190,0.24,86.43,68.47,0.14,994,5.6000000000000005,57,2.8000000000000003 +2020,2,12,2,0,27.8,1.36,0.0918,0.62,96,800,564,8,23.900000000000002,266,249,0,411,0.24,79.26,54.230000000000004,0.14,995,5.7,63,2.6 +2020,2,12,3,0,29,1.35,0.10250000000000001,0.62,113,860,768,8,24,338,392,0,637,0.241,74.62,40.410000000000004,0.14,995,5.800000000000001,72,2.4000000000000004 +2020,2,12,4,0,29.8,1.35,0.1032,0.62,121,898,917,7,24.200000000000003,434,334,0,730,0.241,72.05,27.67,0.14,994,5.800000000000001,81,2.3000000000000003 +2020,2,12,5,0,30.200000000000003,1.36,0.10250000000000001,0.62,125,915,993,8,24.400000000000002,423,465,0,865,0.242,71.05,18.44,0.14,993,5.800000000000001,89,2.2 +2020,2,12,6,0,30.200000000000003,1.34,0.1101,0.62,128,909,988,7,24.400000000000002,502,210,0,701,0.243,71.34,18.900000000000002,0.14,992,5.800000000000001,95,2.2 +2020,2,12,7,0,30.1,1.33,0.1101,0.62,124,890,906,6,24.5,388,41,0,424,0.244,72.01,28.580000000000002,0.14,991,5.9,99,2.2 +2020,2,12,8,0,29.700000000000003,1.32,0.109,0.62,115,850,752,7,24.6,352,72,0,406,0.245,74.31,41.46,0.14,991,5.9,99,2.2 +2020,2,12,9,0,29,1.31,0.11080000000000001,0.62,102,772,541,7,25,240,343,0,435,0.246,79.21000000000001,55.33,0.14,991,5.9,97,2 +2020,2,12,10,0,27.900000000000002,1.28,0.1119,0.62,80,620,296,7,25.3,131,304,0,238,0.246,85.78,69.59,0.14,991,5.9,93,1.6 +2020,2,12,11,0,26.6,1.27,0.1077,0.62,35,266,63,7,25.3,36,204,3,57,0.247,92.51,83.96000000000001,0.14,992,5.9,91,1.1 +2020,2,12,12,0,26.1,1.25,0.1058,0.62,0,0,0,7,25.1,0,0,0,0,0.248,94.12,98.64,0.14,993,5.9,90,1.2000000000000002 +2020,2,12,13,0,25.700000000000003,1.21,0.11040000000000001,0.62,0,0,0,7,24.900000000000002,0,0,0,0,0.249,95.32000000000001,113.2,0.14,993,5.9,85,1.2000000000000002 +2020,2,12,14,0,25.3,1.16,0.11610000000000001,0.62,0,0,0,8,24.700000000000003,0,0,0,0,0.249,96.47,127.73,0.14,994,5.800000000000001,82,1.3 +2020,2,12,15,0,25,1.1400000000000001,0.12390000000000001,0.62,0,0,0,8,24.400000000000002,0,0,0,0,0.25,96.7,142.1,0.14,994,5.7,77,1.3 +2020,2,12,16,0,24.6,1.1300000000000001,0.12840000000000001,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.249,97.37,155.98,0.14,994,5.6000000000000005,72,1.4000000000000001 +2020,2,12,17,0,24.3,1.1300000000000001,0.1272,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.248,97.48,167.53,0.14,993,5.6000000000000005,68,1.4000000000000001 +2020,2,12,18,0,24,1.16,0.1254,0.62,0,0,0,3,23.6,0,0,0,0,0.247,97.85000000000001,166.86,0.14,992,5.5,64,1.3 +2020,2,12,19,0,23.8,1.19,0.11950000000000001,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.246,97.86,154.92000000000002,0.14,991,5.4,61,1.4000000000000001 +2020,2,12,20,0,23.6,1.23,0.1095,0.62,0,0,0,0,23.3,0,0,0,0,0.245,98.17,140.98,0.14,991,5.300000000000001,59,1.4000000000000001 +2020,2,12,21,0,23.5,1.28,0.1068,0.62,0,0,0,8,23.1,0,0,0,0,0.245,97.9,126.58,0.14,991,5.300000000000001,56,1.4000000000000001 +2020,2,12,22,0,23.400000000000002,1.33,0.10600000000000001,0.62,0,0,0,1,23,0,0,0,0,0.244,97.82000000000001,112.05,0.14,992,5.300000000000001,51,1.3 +2020,2,12,23,0,23.8,1.36,0.10360000000000001,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.244,96.29,97.47,0.14,992,5.300000000000001,44,1.5 +2020,2,13,0,0,25.1,1.3800000000000001,0.1019,0.62,40,326,80,3,23.700000000000003,32,0,3,32,0.243,92.17,82.8,0.14,993,5.2,43,2.4000000000000004 +2020,2,13,1,0,26.700000000000003,1.41,0.0978,0.62,78,659,321,3,24,154,148,3,209,0.244,85.17,68.41,0.14,994,5.2,46,2.8000000000000003 +2020,2,13,2,0,28.3,1.42,0.0979,0.62,99,797,565,3,24,273,173,3,374,0.245,77.71000000000001,54.15,0.14,994,5.300000000000001,50,2.6 +2020,2,13,3,0,29.5,1.3800000000000001,0.1699,0.62,143,809,760,0,24.200000000000003,143,809,0,760,0.245,73.34,40.28,0.14,994,5.4,55,2.2 +2020,2,13,4,0,30.200000000000003,1.37,0.1673,0.62,152,854,909,0,24.400000000000002,152,854,0,909,0.245,71.37,27.47,0.14,993,5.4,60,2 +2020,2,13,5,0,30.700000000000003,1.37,0.16290000000000002,0.62,154,876,986,0,24.700000000000003,154,876,0,986,0.245,70.62,18.14,0.14,992,5.4,64,1.9000000000000001 +2020,2,13,6,0,30.900000000000002,1.4000000000000001,0.17170000000000002,0.62,158,869,981,3,24.900000000000002,363,24,0,386,0.245,70.35000000000001,18.61,0.14,991,5.5,70,1.6 +2020,2,13,7,0,30.8,1.3900000000000001,0.1774,0.62,155,844,897,3,24.8,459,168,0,607,0.245,70.51,28.400000000000002,0.14,990,5.6000000000000005,80,1.3 +2020,2,13,8,0,30.5,1.3800000000000001,0.1841,0.62,147,792,742,3,25,357,301,0,583,0.246,72.35000000000001,41.34,0.14,990,5.7,94,1.2000000000000002 +2020,2,13,9,0,30,1.37,0.2056,0.62,136,689,528,6,25.6,263,203,0,378,0.247,77.44,55.25,0.14,990,5.800000000000001,101,1 +2020,2,13,10,0,29,1.36,0.2257,0.62,107,504,284,6,25.3,145,111,0,184,0.247,80.39,69.54,0.14,990,5.9,101,1 +2020,2,13,11,0,27.5,1.35,0.2306,0.62,41,160,58,6,25.700000000000003,31,0,3,31,0.247,90.17,83.94,0.14,991,6,107,0.7000000000000001 +2020,2,13,12,0,26.8,1.34,0.2412,0.62,0,0,0,6,25.5,0,0,0,0,0.247,92.67,98.63,0.14,992,6.1000000000000005,107,0.7000000000000001 +2020,2,13,13,0,26.400000000000002,1.31,0.2464,0.62,0,0,0,7,25.3,0,0,0,0,0.247,93.73,113.22,0.14,992,6.1000000000000005,106,0.7000000000000001 +2020,2,13,14,0,26.1,1.29,0.2462,0.62,0,0,0,0,25.1,0,0,0,0,0.246,94.45,127.77,0.14,993,6.1000000000000005,104,0.7000000000000001 +2020,2,13,15,0,25.900000000000002,1.27,0.2577,0.62,0,0,0,0,24.900000000000002,0,0,0,0,0.246,94.25,142.17000000000002,0.14,993,6.1000000000000005,103,0.6000000000000001 +2020,2,13,16,0,25.5,1.25,0.2666,0.62,0,0,0,0,24.700000000000003,0,0,0,0,0.246,95.28,156.11,0.14,993,6,101,0.5 +2020,2,13,17,0,25.200000000000003,1.24,0.2621,0.62,0,0,0,0,24.5,0,0,0,0,0.246,95.7,167.81,0.14,992,5.9,100,0.5 +2020,2,13,18,0,24.900000000000002,1.24,0.2761,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.246,96.05,167.11,0.14,991,5.7,95,0.5 +2020,2,13,19,0,24.5,1.25,0.2756,0.62,0,0,0,0,24,0,0,0,0,0.246,97.27,155.05,0.14,991,5.6000000000000005,90,0.5 +2020,2,13,20,0,24.200000000000003,1.26,0.25420000000000004,0.62,0,0,0,1,23.8,0,0,0,0,0.245,97.77,141.04,0.14,990,5.5,87,0.5 +2020,2,13,21,0,24,1.28,0.26,0.62,0,0,0,0,23.6,0,0,0,0,0.245,97.60000000000001,126.61,0.14,990,5.300000000000001,86,0.6000000000000001 +2020,2,13,22,0,23.8,1.3,0.2617,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.245,97.52,112.05,0.14,990,5.1000000000000005,84,0.6000000000000001 +2020,2,13,23,0,24,1.31,0.24750000000000003,0.62,0,0,0,0,23.5,0,0,0,0,0.246,97.15,97.46000000000001,0.14,991,5,74,0.8 +2020,2,14,0,0,25,1.32,0.2472,0.62,49,186,73,0,24,49,186,0,73,0.247,94.47,82.77,0.14,992,5,57,1.4000000000000001 +2020,2,14,1,0,26.3,1.35,0.2404,0.62,115,514,304,1,24.3,115,514,0,304,0.248,88.55,68.35000000000001,0.14,993,5,48,1.7000000000000002 +2020,2,14,2,0,28,1.3800000000000001,0.224,0.62,144,687,548,1,24.3,144,687,0,548,0.249,80.35000000000001,54.06,0.14,993,5.1000000000000005,45,1.6 +2020,2,14,3,0,29.5,1.4000000000000001,0.2354,0.62,169,764,753,0,24.400000000000002,169,764,0,753,0.249,74.21000000000001,40.15,0.14,993,5.1000000000000005,47,1.2000000000000002 +2020,2,14,4,0,30.5,1.4000000000000001,0.22940000000000002,0.62,179,815,903,0,24.6,179,815,0,903,0.248,70.65,27.27,0.14,992,5.1000000000000005,52,1 +2020,2,14,5,0,31,1.4000000000000001,0.2247,0.62,182,837,979,3,24.700000000000003,477,77,0,551,0.248,69.04,17.82,0.14,991,5.2,48,0.9 +2020,2,14,6,0,31.1,1.4000000000000001,0.2348,0.62,186,830,974,3,24.8,462,364,0,807,0.248,69.16,18.31,0.14,990,5.2,16,0.9 +2020,2,14,7,0,30.8,1.3800000000000001,0.23700000000000002,0.62,181,805,890,7,24.900000000000002,277,15,0,290,0.248,70.69,28.21,0.14,989,5.4,262,1.1 +2020,2,14,8,0,30.3,1.36,0.2354,0.62,168,756,736,9,25,54,0,0,54,0.248,73.41,41.22,0.14,989,5.5,248,1.4000000000000001 +2020,2,14,9,0,29.400000000000002,1.31,0.2755,0.62,159,634,521,9,25.5,31,0,0,31,0.249,79.56,55.18,0.14,989,5.6000000000000005,248,1.5 +2020,2,14,10,0,28.200000000000003,1.28,0.2947,0.62,122,445,278,9,25.700000000000003,54,0,0,54,0.249,86.44,69.5,0.14,990,5.7,250,1.3 +2020,2,14,11,0,27,1.26,0.2923,0.62,42,121,55,7,25.900000000000002,11,0,3,11,0.25,93.51,83.92,0.14,990,5.800000000000001,246,1 +2020,2,14,12,0,26.5,1.26,0.31980000000000003,0.62,0,0,0,7,25.8,0,0,0,0,0.25,96.2,98.63,0.14,991,5.800000000000001,231,0.8 +2020,2,14,13,0,26.3,1.26,0.3119,0.62,0,0,0,7,25.700000000000003,0,0,0,0,0.251,96.56,113.24000000000001,0.14,992,5.9,205,0.7000000000000001 +2020,2,14,14,0,26.1,1.26,0.2707,0.62,0,0,0,8,25.5,0,0,0,0,0.251,96.63,127.81,0.14,993,5.9,177,0.6000000000000001 +2020,2,14,15,0,25.900000000000002,1.27,0.2398,0.62,0,0,0,6,25.400000000000002,0,0,0,0,0.251,96.81,142.25,0.14,993,5.9,158,0.5 +2020,2,14,16,0,25.6,1.28,0.21180000000000002,0.62,0,0,0,6,25.200000000000003,0,0,0,0,0.251,97.44,156.25,0.14,993,5.9,144,0.5 +2020,2,14,17,0,25.400000000000002,1.28,0.18780000000000002,0.62,0,0,0,6,25,0,0,0,0,0.25,97.72,168.09,0.14,992,6,140,0.5 +2020,2,14,18,0,25.1,1.29,0.1867,0.62,0,0,0,7,24.900000000000002,0,0,0,0,0.248,98.57000000000001,167.37,0.14,992,6,137,0.5 +2020,2,14,19,0,24.900000000000002,1.29,0.18530000000000002,0.62,0,0,0,7,24.700000000000003,0,0,0,0,0.247,98.65,155.16,0.14,991,6.1000000000000005,131,0.6000000000000001 +2020,2,14,20,0,24.700000000000003,1.3,0.1756,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.246,98.45,141.1,0.14,991,6,119,0.6000000000000001 +2020,2,14,21,0,24.6,1.33,0.17450000000000002,0.62,0,0,0,7,24.3,0,0,0,0,0.246,98.03,126.64,0.14,991,6,113,0.5 +2020,2,14,22,0,24.5,1.34,0.17400000000000002,0.62,0,0,0,4,24.1,0,0,0,0,0.247,97.86,112.06,0.14,992,5.9,108,0.5 +2020,2,14,23,0,24.6,1.35,0.16720000000000002,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.247,97.35000000000001,97.44,0.14,993,5.800000000000001,94,0.6000000000000001 +2020,2,15,0,0,25.5,1.36,0.18180000000000002,0.62,45,237,75,8,24.5,42,0,3,42,0.248,94.05,82.73,0.14,994,5.6000000000000005,85,1 +2020,2,15,1,0,27.200000000000003,1.3800000000000001,0.1857,0.62,101,563,309,7,25,142,28,0,152,0.248,87.98,68.29,0.14,995,5.5,88,1.1 +2020,2,15,2,0,29.1,1.4000000000000001,0.16290000000000002,0.62,122,737,556,7,25.200000000000003,256,314,0,441,0.249,79.71000000000001,53.97,0.14,995,5.300000000000001,85,1.1 +2020,2,15,3,0,30.6,1.35,0.2056,0.62,156,784,757,7,25.1,364,307,0,600,0.249,72.72,40.02,0.14,994,5.2,84,1 +2020,2,15,4,0,31,1.37,0.20220000000000002,0.62,166,833,908,3,24.5,445,86,0,521,0.25,68.60000000000001,27.060000000000002,0.14,993,5,85,0.8 +2020,2,15,5,0,30.900000000000002,1.3800000000000001,0.18860000000000002,0.62,165,862,987,8,24.3,495,104,0,594,0.25,67.87,17.51,0.14,992,5,77,0.8 +2020,2,15,6,0,31.1,1.36,0.18780000000000002,0.62,165,862,985,3,24.400000000000002,498,116,0,608,0.25,67.55,18.01,0.14,991,4.9,79,0.9 +2020,2,15,7,0,31,1.36,0.1998,0.62,165,833,900,3,24.400000000000002,435,323,0,720,0.25,68,28.03,0.14,990,4.9,85,1 +2020,2,15,8,0,30.5,1.34,0.2025,0.62,154,783,744,3,24.3,364,274,0,571,0.25,69.63,41.11,0.14,990,5,95,1.1 +2020,2,15,9,0,29.8,1.34,0.222,0.62,142,680,531,8,24.400000000000002,264,118,0,331,0.25,72.93,55.11,0.14,990,5,100,1.1 +2020,2,15,10,0,28.8,1.35,0.2214,0.62,107,513,287,3,24.700000000000003,146,151,0,199,0.25,78.77,69.46000000000001,0.14,990,5,118,1 +2020,2,15,11,0,27.5,1.33,0.20720000000000002,0.62,40,178,59,0,25.3,40,178,0,59,0.25,87.88,83.9,0.14,991,5,151,0.9 +2020,2,15,12,0,26.8,1.32,0.19720000000000001,0.62,0,0,0,0,25.200000000000003,0,0,0,0,0.25,90.92,98.63,0.14,992,5,155,0.8 +2020,2,15,13,0,26.400000000000002,1.31,0.18910000000000002,0.62,0,0,0,0,25,0,0,0,0,0.25,92.01,113.26,0.14,993,5,134,0.8 +2020,2,15,14,0,26,1.3,0.17900000000000002,0.62,0,0,0,0,24.8,0,0,0,0,0.25,93.21000000000001,127.86,0.14,994,4.9,109,0.8 +2020,2,15,15,0,25.6,1.29,0.1708,0.62,0,0,0,0,24.6,0,0,0,0,0.25,93.97,142.33,0.14,994,4.800000000000001,97,0.8 +2020,2,15,16,0,25.200000000000003,1.28,0.16490000000000002,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.25,95.18,156.39000000000001,0.14,994,4.800000000000001,87,0.8 +2020,2,15,17,0,24.8,1.27,0.16140000000000002,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.25,96.49000000000001,168.37,0.14,993,4.800000000000001,69,0.9 +2020,2,15,18,0,24.400000000000002,1.27,0.1589,0.62,0,0,0,0,24.1,0,0,0,0,0.249,97.97,167.62,0.14,993,4.7,53,0.9 +2020,2,15,19,0,24.1,1.28,0.1544,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.249,98.60000000000001,155.28,0.14,992,4.7,44,0.9 +2020,2,15,20,0,23.8,1.29,0.1505,0.62,0,0,0,0,23.6,0,0,0,0,0.25,99.04,141.15,0.14,992,4.6000000000000005,38,0.9 +2020,2,15,21,0,23.6,1.29,0.1542,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.25,98.75,126.66,0.14,992,4.6000000000000005,39,0.9 +2020,2,15,22,0,23.5,1.3,0.1585,0.62,0,0,0,1,23.200000000000003,0,0,0,0,0.25,98.04,112.05,0.14,992,4.5,46,0.8 +2020,2,15,23,0,23.8,1.3,0.1545,0.62,0,0,0,0,23.3,0,0,0,0,0.25,97.04,97.42,0.14,993,4.5,49,0.7000000000000001 +2020,2,16,0,0,25.400000000000002,1.32,0.1494,0.62,43,273,78,1,23.700000000000003,43,273,0,78,0.249,90.59,82.69,0.14,994,4.5,46,1 +2020,2,16,1,0,27.200000000000003,1.35,0.1422,0.62,90,614,318,8,23.8,133,363,0,268,0.25,81.88,68.23,0.14,995,4.5,29,1 +2020,2,16,2,0,28.700000000000003,1.37,0.1342,0.62,112,769,565,8,24,179,581,0,521,0.25,75.83,53.88,0.14,995,4.5,15,1.3 +2020,2,16,3,0,29.8,1.3800000000000001,0.12430000000000001,0.62,122,852,776,3,24.1,323,434,0,656,0.25,71.42,39.88,0.14,994,4.6000000000000005,12,1.3 +2020,2,16,4,0,30.700000000000003,1.41,0.1217,0.62,129,894,927,8,24,376,488,0,811,0.25,67.64,26.86,0.14,994,4.6000000000000005,13,1.2000000000000002 +2020,2,16,5,0,31.3,1.42,0.12000000000000001,0.62,131,911,1002,8,23.900000000000002,429,473,0,881,0.249,64.85,17.19,0.14,993,4.7,15,1 +2020,2,16,6,0,31.5,1.43,0.1458,0.62,144,892,994,3,23.8,496,109,0,600,0.249,63.59,17.71,0.14,992,4.800000000000001,21,0.9 +2020,2,16,7,0,31.3,1.4000000000000001,0.1542,0.62,143,865,908,8,23.6,434,328,0,724,0.248,63.82,27.85,0.14,991,5,34,0.9 +2020,2,16,8,0,30.8,1.3900000000000001,0.1587,0.62,136,816,752,6,23.6,377,157,0,495,0.248,65.48,41,0.14,991,5.1000000000000005,54,0.9 +2020,2,16,9,0,30.1,1.37,0.1819,0.62,128,713,537,6,24.1,251,64,0,287,0.249,70.16,55.04,0.14,991,5.2,64,0.9 +2020,2,16,10,0,29.3,1.3800000000000001,0.19140000000000001,0.62,100,542,290,6,24,145,82,0,173,0.249,73.04,69.42,0.14,992,5.2,63,0.9 +2020,2,16,11,0,27.8,1.3900000000000001,0.1794,0.62,39,203,60,6,24.6,25,0,3,25,0.251,83,83.88,0.14,992,5.2,59,0.6000000000000001 +2020,2,16,12,0,27.200000000000003,1.4000000000000001,0.1791,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.252,84.87,98.64,0.14,993,5.1000000000000005,51,0.6000000000000001 +2020,2,16,13,0,26.5,1.4000000000000001,0.17420000000000002,0.62,0,0,0,7,24.5,0,0,0,0,0.252,88.84,113.28,0.14,994,5.1000000000000005,50,0.7000000000000001 +2020,2,16,14,0,25.900000000000002,1.41,0.1656,0.62,0,0,0,7,24.3,0,0,0,0,0.252,90.93,127.9,0.14,994,5,50,0.7000000000000001 +2020,2,16,15,0,25.400000000000002,1.41,0.161,0.62,0,0,0,7,24.1,0,0,0,0,0.252,92.54,142.41,0.14,995,4.9,52,0.6000000000000001 +2020,2,16,16,0,25,1.41,0.1588,0.62,0,0,0,7,23.8,0,0,0,0,0.253,92.96000000000001,156.53,0.14,994,4.9,55,0.6000000000000001 +2020,2,16,17,0,24.5,1.41,0.15460000000000002,0.62,0,0,0,3,23.6,0,0,0,0,0.253,94.59,168.65,0.14,994,4.800000000000001,54,0.6000000000000001 +2020,2,16,18,0,24.1,1.42,0.15,0.62,0,0,0,8,23.3,0,0,0,0,0.253,95.46000000000001,167.87,0.14,993,4.7,49,0.7000000000000001 +2020,2,16,19,0,23.6,1.43,0.1453,0.62,0,0,0,0,23.1,0,0,0,0,0.253,97.23,155.38,0.14,993,4.5,43,0.7000000000000001 +2020,2,16,20,0,23.200000000000003,1.44,0.1395,0.62,0,0,0,0,22.900000000000002,0,0,0,0,0.252,98.17,141.20000000000002,0.14,992,4.4,39,0.8 +2020,2,16,21,0,22.900000000000002,1.46,0.133,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.252,98.71000000000001,126.68,0.14,992,4.3,33,0.9 +2020,2,16,22,0,22.6,1.49,0.12510000000000002,0.62,0,0,0,0,22.5,0,0,0,0,0.252,99.42,112.05,0.14,993,4.2,28,0.9 +2020,2,16,23,0,23,1.51,0.11710000000000001,0.62,0,0,0,0,22.5,0,0,0,0,0.252,97.24000000000001,97.39,0.14,993,4.1000000000000005,26,1.2000000000000002 +2020,2,17,0,0,24.700000000000003,1.53,0.1111,0.62,39,333,82,0,22.900000000000002,39,333,0,82,0.252,89.63,82.65,0.14,994,4,26,2 +2020,2,17,1,0,26.400000000000002,1.55,0.1073,0.62,79,665,327,0,22.900000000000002,79,665,0,327,0.252,80.91,68.16,0.14,995,3.9000000000000004,28,2.1 +2020,2,17,2,0,28.200000000000003,1.55,0.1072,0.62,100,804,575,0,22.5,100,804,0,575,0.251,71.19,53.78,0.14,995,3.9000000000000004,30,2 +2020,2,17,3,0,29.3,1.51,0.13620000000000002,0.62,126,851,780,0,22.1,126,851,0,780,0.251,65.12,39.75,0.14,995,4,34,1.9000000000000001 +2020,2,17,4,0,29.900000000000002,1.51,0.1343,0.62,134,891,931,1,21.6,134,891,0,931,0.251,61.28,26.650000000000002,0.14,994,4.1000000000000005,40,1.8 +2020,2,17,5,0,30.3,1.5,0.13540000000000002,0.62,139,907,1006,3,21.3,494,285,0,767,0.251,58.71,16.87,0.14,994,4.2,47,1.7000000000000002 +2020,2,17,6,0,30.400000000000002,1.49,0.12610000000000002,0.62,135,910,1003,3,21.200000000000003,503,236,0,728,0.251,57.92,17.41,0.14,993,4.4,55,1.6 +2020,2,17,7,0,30.200000000000003,1.48,0.13040000000000002,0.62,132,886,917,1,21.3,132,886,0,917,0.252,59.160000000000004,27.68,0.14,992,4.6000000000000005,63,1.5 +2020,2,17,8,0,30,1.48,0.1316,0.62,124,841,760,0,21.6,124,841,0,760,0.252,60.63,40.9,0.14,992,4.800000000000001,72,1.3 +2020,2,17,9,0,29.6,1.49,0.1277,0.62,108,764,546,0,22,108,764,0,546,0.252,63.620000000000005,54.980000000000004,0.14,992,5,78,1.2000000000000002 +2020,2,17,10,0,28.3,1.48,0.1257,0.62,83,613,299,0,22.700000000000003,83,613,0,299,0.253,71.62,69.38,0.14,992,5.2,80,1.1 +2020,2,17,11,0,26.700000000000003,1.48,0.12150000000000001,0.62,36,263,64,0,23.400000000000002,36,263,0,64,0.253,81.97,83.87,0.14,993,5.4,83,0.7000000000000001 +2020,2,17,12,0,26.200000000000003,1.48,0.1169,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.253,84.43,98.64,0.14,994,5.5,84,0.7000000000000001 +2020,2,17,13,0,25.700000000000003,1.47,0.113,0.62,0,0,0,8,23.6,0,0,0,0,0.253,88.12,113.31,0.14,994,5.6000000000000005,82,0.7000000000000001 +2020,2,17,14,0,25.200000000000003,1.46,0.1119,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.252,91.37,127.95,0.14,995,5.7,77,0.7000000000000001 +2020,2,17,15,0,24.900000000000002,1.44,0.11760000000000001,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.251,93.29,142.49,0.14,995,5.7,71,0.7000000000000001 +2020,2,17,16,0,24.700000000000003,1.42,0.12250000000000001,0.62,0,0,0,3,23.8,0,0,0,0,0.25,94.47,156.66,0.14,995,5.7,66,0.7000000000000001 +2020,2,17,17,0,24.5,1.4000000000000001,0.12240000000000001,0.62,0,0,0,1,23.700000000000003,0,0,0,0,0.25,95.41,168.94,0.14,994,5.800000000000001,61,0.7000000000000001 +2020,2,17,18,0,24.400000000000002,1.3800000000000001,0.12440000000000001,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.249,95.8,168.12,0.14,993,5.800000000000001,55,0.8 +2020,2,17,19,0,24.200000000000003,1.37,0.12290000000000001,0.62,0,0,0,8,23.6,0,0,0,0,0.249,96.62,155.48,0.14,993,5.800000000000001,52,0.9 +2020,2,17,20,0,24.1,1.36,0.11560000000000001,0.62,0,0,0,4,23.5,0,0,0,0,0.248,96.59,141.25,0.14,993,5.7,49,1 +2020,2,17,21,0,23.900000000000002,1.34,0.1145,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.248,96.91,126.7,0.14,993,5.7,46,1 +2020,2,17,22,0,23.700000000000003,1.31,0.11460000000000001,0.62,0,0,0,4,23.200000000000003,0,0,0,0,0.248,97.29,112.04,0.14,993,5.7,45,1.1 +2020,2,17,23,0,23.900000000000002,1.27,0.113,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.248,97.09,97.37,0.14,994,5.7,48,1.2000000000000002 +2020,2,18,0,0,24.8,1.24,0.11,0.62,41,313,82,8,23.900000000000002,43,234,3,73,0.249,94.81,82.60000000000001,0.14,994,5.7,55,2 +2020,2,18,1,0,25.700000000000003,1.23,0.1023,0.62,80,650,323,8,24.3,151,230,0,237,0.25,92.19,68.1,0.14,995,5.7,61,2.4000000000000004 +2020,2,18,2,0,26.400000000000002,1.21,0.0941,0.62,98,797,570,4,24.3,87,0,0,87,0.251,88.33,53.69,0.14,995,5.7,65,2.8000000000000003 +2020,2,18,3,0,26.900000000000002,1.19,0.0916,0.62,109,869,779,3,24.1,100,0,0,100,0.251,84.65,39.61,0.14,995,5.7,68,3 +2020,2,18,4,0,27.3,1.21,0.0844,0.62,113,912,929,8,23.900000000000002,305,17,0,321,0.251,81.9,26.44,0.14,995,5.7,71,3.1 +2020,2,18,5,0,27.6,1.2,0.082,0.62,115,930,1006,7,23.8,228,12,0,239,0.249,79.95,16.54,0.14,994,5.6000000000000005,72,3.1 +2020,2,18,6,0,27.700000000000003,1.09,0.1187,0.62,135,902,996,7,23.700000000000003,505,135,0,634,0.248,79.07000000000001,17.11,0.14,993,5.6000000000000005,74,3 +2020,2,18,7,0,27.700000000000003,1.07,0.1221,0.62,132,880,913,7,23.700000000000003,356,28,0,381,0.247,78.92,27.5,0.14,992,5.6000000000000005,76,2.9000000000000004 +2020,2,18,8,0,27.6,1.05,0.1233,0.62,124,837,757,6,23.8,183,5,0,186,0.246,79.96000000000001,40.800000000000004,0.14,992,5.6000000000000005,77,2.8000000000000003 +2020,2,18,9,0,27.200000000000003,1.05,0.1206,0.62,108,761,545,7,24.1,228,30,0,245,0.247,83.10000000000001,54.92,0.14,992,5.5,77,2.4000000000000004 +2020,2,18,10,0,26.400000000000002,1.07,0.1183,0.62,82,611,298,7,24.3,147,124,0,191,0.248,88.28,69.35000000000001,0.14,992,5.5,76,1.9000000000000001 +2020,2,18,11,0,25.200000000000003,1.09,0.11120000000000001,0.62,36,258,63,7,24,33,0,3,33,0.249,93.31,83.86,0.14,993,5.5,73,1.4000000000000001 +2020,2,18,12,0,24.700000000000003,1.11,0.10880000000000001,0.62,0,0,0,8,23.8,0,0,0,0,0.251,94.5,98.65,0.14,994,5.4,70,1.5 +2020,2,18,13,0,24.3,1.11,0.11170000000000001,0.62,0,0,0,8,23.5,0,0,0,0,0.252,95.36,113.34,0.14,995,5.300000000000001,64,1.6 +2020,2,18,14,0,23.900000000000002,1.07,0.11720000000000001,0.62,0,0,0,8,23.200000000000003,0,0,0,0,0.254,96.01,128,0.14,995,5.1000000000000005,58,1.6 +2020,2,18,15,0,23.5,1.05,0.12200000000000001,0.62,0,0,0,8,22.900000000000002,0,0,1,0,0.254,96.71000000000001,142.57,0.14,995,5,55,1.6 +2020,2,18,16,0,23.1,1.05,0.12490000000000001,0.62,0,0,0,4,22.700000000000003,0,0,1,0,0.255,97.59,156.8,0.14,995,4.800000000000001,52,1.5 +2020,2,18,17,0,22.900000000000002,1.04,0.1282,0.62,0,0,0,4,22.5,0,0,0,0,0.255,97.56,169.22,0.14,994,4.800000000000001,52,1.5 +2020,2,18,18,0,22.700000000000003,1.05,0.1327,0.62,0,0,0,4,22.3,0,0,0,0,0.255,97.86,168.36,0.14,994,4.7,51,1.5 +2020,2,18,19,0,22.6,1.06,0.1325,0.62,0,0,0,4,22.200000000000003,0,0,0,0,0.255,97.66,155.58,0.14,993,4.7,50,1.5 +2020,2,18,20,0,22.5,1.06,0.1257,0.62,0,0,0,8,22.1,0,0,0,0,0.255,97.55,141.29,0.14,993,4.6000000000000005,49,1.5 +2020,2,18,21,0,22.400000000000002,1.07,0.1237,0.62,0,0,0,4,22,0,0,0,0,0.255,97.31,126.71000000000001,0.14,993,4.6000000000000005,48,1.4000000000000001 +2020,2,18,22,0,22.200000000000003,1.06,0.1222,0.62,0,0,0,4,21.8,0,0,0,0,0.254,97.56,112.03,0.14,993,4.5,45,1.2000000000000002 +2020,2,18,23,0,22.6,1.05,0.1177,0.62,0,0,0,4,22,0,0,0,0,0.253,96.29,97.34,0.14,994,4.5,40,1.3 +2020,2,19,0,0,24.1,1.06,0.11460000000000001,0.62,43,307,83,3,22.700000000000003,30,0,3,30,0.252,92.17,82.55,0.14,995,4.5,41,2.2 +2020,2,19,1,0,25.6,1.08,0.1072,0.62,83,651,327,4,23.1,157,131,0,206,0.252,85.89,68.02,0.14,995,4.5,49,3 +2020,2,19,2,0,27.200000000000003,1.12,0.09670000000000001,0.62,99,803,576,3,23.1,271,242,0,415,0.251,78.43,53.59,0.14,995,4.5,51,3.2 +2020,2,19,3,0,28.400000000000002,0.93,0.1292,0.62,128,843,779,3,23.200000000000003,348,378,0,639,0.251,73.52,39.47,0.14,995,4.5,53,3.1 +2020,2,19,4,0,29.3,1.03,0.10990000000000001,0.62,126,899,933,4,23.3,465,133,0,584,0.251,70.25,26.23,0.14,995,4.6000000000000005,55,3 +2020,2,19,5,0,29.8,1.12,0.09530000000000001,0.62,121,927,1011,3,23.3,508,226,0,725,0.252,68.35000000000001,16.21,0.14,993,4.7,57,2.8000000000000003 +2020,2,19,6,0,30.1,1.1500000000000001,0.08990000000000001,0.62,118,930,1008,0,23.3,118,930,0,1008,0.252,67.07000000000001,16.81,0.14,992,4.800000000000001,56,2.6 +2020,2,19,7,0,30.200000000000003,1.1400000000000001,0.08800000000000001,0.62,114,912,924,0,23.3,114,912,0,924,0.253,66.61,27.34,0.14,992,4.9,56,2.3000000000000003 +2020,2,19,8,0,29.900000000000002,1.1,0.08950000000000001,0.62,108,871,768,0,23.3,108,871,0,768,0.254,67.66,40.7,0.14,991,5,55,2 +2020,2,19,9,0,29.400000000000002,1.04,0.0925,0.62,97,792,553,0,23.6,97,792,0,553,0.255,70.93,54.86,0.14,991,5.1000000000000005,55,1.7000000000000002 +2020,2,19,10,0,28.3,0.98,0.09340000000000001,0.62,76,643,303,0,23.900000000000002,76,643,0,303,0.256,77.21000000000001,69.32000000000001,0.14,991,5.1000000000000005,55,1.3 +2020,2,19,11,0,26.6,0.91,0.09380000000000001,0.62,36,276,65,0,24,36,276,0,65,0.256,85.89,83.85000000000001,0.14,992,5.1000000000000005,57,0.8 +2020,2,19,12,0,25.900000000000002,0.87,0.0884,0.62,0,0,0,0,23.8,0,0,0,0,0.257,88.44,98.66,0.14,993,5.1000000000000005,57,0.8 +2020,2,19,13,0,25.200000000000003,0.87,0.082,0.62,0,0,0,1,23.700000000000003,0,0,0,0,0.256,91.41,113.37,0.14,994,5.1000000000000005,54,0.8 +2020,2,19,14,0,24.6,0.84,0.083,0.62,0,0,0,0,23.5,0,0,0,0,0.256,93.57000000000001,128.05,0.14,994,5,49,1 +2020,2,19,15,0,24.200000000000003,0.81,0.0881,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.255,95.06,142.65,0.14,995,4.9,44,1.2000000000000002 +2020,2,19,16,0,23.8,0.78,0.09480000000000001,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.255,96.27,156.94,0.14,994,4.7,43,1.3 +2020,2,19,17,0,23.400000000000002,0.76,0.0994,0.62,0,0,0,4,23,0,0,0,0,0.255,97.34,169.51,0.14,994,4.6000000000000005,40,1.3 +2020,2,19,18,0,23.1,0.78,0.1,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.255,97.66,168.59,0.14,993,4.4,38,1.3 +2020,2,19,19,0,22.8,0.8,0.098,0.62,0,0,0,0,22.5,0,0,0,0,0.254,97.98,155.66,0.14,992,4.3,39,1.2000000000000002 +2020,2,19,20,0,22.6,0.8200000000000001,0.0907,0.62,0,0,0,0,22.3,0,0,0,0,0.253,98.03,141.32,0.14,992,4.2,40,1.2000000000000002 +2020,2,19,21,0,22.5,0.85,0.0926,0.62,0,0,0,0,22.1,0,0,0,0,0.253,97.66,126.71000000000001,0.14,992,4.1000000000000005,40,1.2000000000000002 +2020,2,19,22,0,22.400000000000002,0.85,0.0975,0.62,0,0,0,0,22,0,0,0,0,0.252,97.65,112.02,0.14,993,4,39,1.2000000000000002 +2020,2,19,23,0,22.8,0.8200000000000001,0.10010000000000001,0.62,0,0,0,0,22.1,0,0,0,0,0.251,95.92,97.3,0.14,993,4,37,1.4000000000000001 +2020,2,20,0,0,24.400000000000002,0.79,0.101,0.62,43,321,85,0,22.6,43,321,0,85,0.25,89.49,82.5,0.14,994,3.9000000000000004,38,2.4000000000000004 +2020,2,20,1,0,26.1,0.77,0.0952,0.62,82,666,332,0,22.8,82,666,0,332,0.25,81.92,67.95,0.14,995,3.9000000000000004,42,3.1 +2020,2,20,2,0,27.5,0.77,0.08660000000000001,0.62,98,814,583,0,22.900000000000002,98,814,0,583,0.25,76.05,53.49,0.14,995,4,43,3.3000000000000003 +2020,2,20,3,0,28.6,0.73,0.0648,0.62,100,905,799,0,23,100,905,0,799,0.249,71.96000000000001,39.33,0.14,994,4,45,3.3000000000000003 +2020,2,20,4,0,29.5,0.78,0.058300000000000005,0.62,102,943,950,0,23.1,102,943,0,950,0.248,68.7,26.02,0.14,993,4.2,47,3.3000000000000003 +2020,2,20,5,0,30,0.86,0.055900000000000005,0.62,103,960,1026,0,23.200000000000003,103,960,0,1026,0.247,67.17,15.88,0.14,992,4.3,50,3.2 +2020,2,20,6,0,30.3,1.06,0.0951,0.62,123,928,1013,3,23.400000000000002,491,92,0,579,0.247,66.49,16.51,0.14,991,4.5,52,3 +2020,2,20,7,0,30.200000000000003,1.09,0.0893,0.62,115,914,929,3,23.400000000000002,457,118,0,562,0.247,67.07000000000001,27.17,0.14,991,4.6000000000000005,53,2.8000000000000003 +2020,2,20,8,0,29.900000000000002,1.1,0.0902,0.62,108,873,771,0,23.400000000000002,108,873,0,771,0.249,68.12,40.61,0.14,990,4.7,54,2.7 +2020,2,20,9,0,29.200000000000003,1.1,0.0896,0.62,95,800,556,0,23.6,95,800,0,556,0.251,71.87,54.81,0.14,990,4.7,54,2.4000000000000004 +2020,2,20,10,0,27.900000000000002,1.06,0.08650000000000001,0.62,74,657,306,0,23.900000000000002,74,657,0,306,0.252,79.13,69.3,0.14,991,4.7,55,1.8 +2020,2,20,11,0,26.1,1.01,0.0789,0.62,34,307,67,3,23.900000000000002,37,31,3,40,0.254,87.59,83.84,0.14,992,4.7,58,1.2000000000000002 +2020,2,20,12,0,25.3,0.93,0.07350000000000001,0.62,0,0,0,3,23.6,0,0,0,0,0.254,90.42,98.68,0.14,993,4.6000000000000005,58,1.1 +2020,2,20,13,0,24.700000000000003,0.87,0.0697,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.254,92.71000000000001,113.4,0.14,994,4.5,55,1.1 +2020,2,20,14,0,24.3,0.8300000000000001,0.0704,0.62,0,0,0,3,23.3,0,0,0,0,0.255,94.32000000000001,128.11,0.14,995,4.4,49,1.1 +2020,2,20,15,0,23.8,0.81,0.08020000000000001,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.255,96.48,142.73,0.14,995,4.4,47,1.1 +2020,2,20,16,0,23.5,0.85,0.1068,0.62,0,0,0,0,23.1,0,0,0,0,0.255,97.45,157.07,0.14,995,4.4,47,1.1 +2020,2,20,17,0,23.3,0.92,0.1327,0.62,0,0,0,0,22.900000000000002,0,0,0,0,0.256,97.58,169.79,0.14,994,4.5,44,1.1 +2020,2,20,18,0,23.1,1.02,0.1451,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.257,97.61,168.82,0.14,994,4.5,41,1.1 +2020,2,20,19,0,22.900000000000002,1.11,0.1517,0.62,0,0,0,0,22.5,0,0,0,0,0.257,97.53,155.75,0.14,993,4.5,39,1 +2020,2,20,20,0,22.8,1.16,0.156,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.257,97.32000000000001,141.35,0.14,993,4.6000000000000005,41,1 +2020,2,20,21,0,22.700000000000003,1.19,0.1612,0.62,0,0,0,0,22.200000000000003,0,0,0,0,0.256,97.21000000000001,126.71000000000001,0.14,993,4.7,41,1 +2020,2,20,22,0,22.700000000000003,1.2,0.1552,0.62,0,0,0,0,22.200000000000003,0,0,0,0,0.256,96.85000000000001,112,0.14,994,4.7,40,1.1 +2020,2,20,23,0,23.1,1.19,0.1317,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.255,95.84,97.27,0.14,994,4.6000000000000005,35,1.2000000000000002 +2020,2,21,0,0,24.6,1.21,0.1101,0.62,42,324,85,0,23.1,42,324,0,85,0.254,91.22,82.45,0.14,995,4.4,41,2.1 +2020,2,21,1,0,26.1,1.24,0.08610000000000001,0.62,75,686,334,0,23.400000000000002,75,686,0,334,0.254,85.3,67.88,0.14,996,4.1000000000000005,49,2.9000000000000004 +2020,2,21,2,0,27.400000000000002,1.27,0.069,0.62,87,840,588,0,23.3,87,840,0,588,0.254,78.58,53.39,0.14,996,3.9000000000000004,51,3.3000000000000003 +2020,2,21,3,0,28.5,1.28,0.059800000000000006,0.62,93,916,803,0,23.200000000000003,93,916,0,803,0.254,72.96000000000001,39.19,0.14,996,3.8000000000000003,52,3.5 +2020,2,21,4,0,29.3,1.27,0.0538,0.62,96,958,958,0,23,96,958,0,958,0.254,68.82000000000001,25.810000000000002,0.14,995,3.6,54,3.6 +2020,2,21,5,0,29.900000000000002,1.23,0.0522,0.62,98,975,1038,3,22.8,418,36,0,452,0.254,65.92,15.55,0.14,994,3.5,55,3.6 +2020,2,21,6,0,30.1,1.18,0.0531,0.62,99,974,1034,1,22.8,99,974,0,1034,0.254,65.16,16.22,0.14,993,3.5,56,3.5 +2020,2,21,7,0,30.200000000000003,1.08,0.054900000000000004,0.62,98,956,949,2,22.900000000000002,442,311,0,719,0.255,64.88,27.02,0.14,992,3.5,57,3.4000000000000004 +2020,2,21,8,0,29.900000000000002,0.92,0.0618,0.62,96,910,788,0,23,96,910,0,788,0.256,66.57000000000001,40.52,0.14,991,3.6,59,3.2 +2020,2,21,9,0,29.200000000000003,0.97,0.10350000000000001,0.62,103,795,561,3,23.5,268,165,0,363,0.256,71.57000000000001,54.76,0.14,992,3.7,59,2.6 +2020,2,21,10,0,28,0.91,0.10500000000000001,0.62,81,638,307,0,24.200000000000003,81,638,0,307,0.257,79.67,69.27,0.14,992,3.9000000000000004,58,1.9000000000000001 +2020,2,21,11,0,26.1,0.87,0.101,0.62,37,271,66,2,24.1,37,153,3,54,0.257,88.84,83.84,0.14,993,4,58,1.2000000000000002 +2020,2,21,12,0,25.400000000000002,0.84,0.0941,0.62,0,0,0,1,23.900000000000002,0,0,0,0,0.258,91.69,98.69,0.14,994,4.1000000000000005,53,1.1 +2020,2,21,13,0,24.900000000000002,0.8200000000000001,0.0863,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.259,93.93,113.43,0.14,995,4.1000000000000005,46,1.1 +2020,2,21,14,0,24.5,0.8300000000000001,0.0781,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.259,95.54,128.16,0.14,996,4.1000000000000005,39,1.1 +2020,2,21,15,0,24.1,0.86,0.0704,0.62,0,0,0,0,23.5,0,0,0,0,0.258,96.65,142.81,0.14,996,4,36,1.1 +2020,2,21,16,0,23.700000000000003,0.88,0.0656,0.62,0,0,0,0,23.3,0,0,0,0,0.257,97.38,157.21,0.14,996,3.9000000000000004,36,1.1 +2020,2,21,17,0,23.400000000000002,0.9,0.06330000000000001,0.62,0,0,0,0,22.900000000000002,0,0,0,0,0.256,97.3,170.08,0.14,995,3.9000000000000004,36,1.1 +2020,2,21,18,0,23.3,0.93,0.06380000000000001,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.255,96.51,169.04,0.14,994,3.8000000000000003,36,1.2000000000000002 +2020,2,21,19,0,23.1,0.96,0.06420000000000001,0.62,0,0,0,3,22.6,0,0,0,0,0.253,96.8,155.82,0.14,994,3.8000000000000003,36,1.2000000000000002 +2020,2,21,20,0,23,0.9500000000000001,0.06280000000000001,0.62,0,0,0,3,22.400000000000002,0,0,0,0,0.252,96.65,141.38,0.14,994,3.9000000000000004,37,1.2000000000000002 +2020,2,21,21,0,22.900000000000002,0.9400000000000001,0.0656,0.62,0,0,0,3,22.3,0,0,0,0,0.251,96.58,126.71000000000001,0.14,994,4,38,1.3 +2020,2,21,22,0,22.8,0.92,0.0678,0.62,0,0,0,0,22.200000000000003,0,0,0,0,0.251,96.5,111.97,0.14,994,4.1000000000000005,39,1.2000000000000002 +2020,2,21,23,0,23.200000000000003,0.9,0.0656,0.62,0,0,0,3,22.5,0,0,0,0,0.251,95.9,97.23,0.14,995,4.1000000000000005,41,1.4000000000000001 +2020,2,22,0,0,24.6,0.89,0.0671,0.62,38,385,89,3,23.400000000000002,6,0,3,6,0.25,93.12,82.39,0.14,995,4.2,46,2.4000000000000004 +2020,2,22,1,0,26,0.9,0.0623,0.62,70,711,338,3,23.700000000000003,44,0,0,44,0.25,87.34,67.8,0.14,996,4.3,52,3.3000000000000003 +2020,2,22,2,0,27.400000000000002,0.92,0.056100000000000004,0.62,83,846,590,3,23.6,176,3,0,177,0.25,79.67,53.28,0.14,996,4.3,56,4 +2020,2,22,3,0,28.400000000000002,0.93,0.1631,0.62,145,818,780,3,23.400000000000002,327,36,0,355,0.251,74.41,39.050000000000004,0.14,996,4.3,61,4.2 +2020,2,22,4,0,29.200000000000003,0.96,0.1463,0.62,146,874,934,3,23.3,153,3,0,156,0.252,70.58,25.6,0.14,995,4.3,65,4.2 +2020,2,22,5,0,29.700000000000003,0.98,0.134,0.62,144,902,1015,0,23.200000000000003,144,902,0,1015,0.253,68.15,15.21,0.14,994,4.2,68,4.2 +2020,2,22,6,0,29.900000000000002,1.04,0.1761,0.62,165,872,1003,1,23.1,165,872,0,1003,0.253,67.05,15.92,0.14,993,4.2,70,4.1000000000000005 +2020,2,22,7,0,29.700000000000003,1.05,0.1635,0.62,153,862,922,0,23,153,862,0,922,0.254,67.24,26.86,0.14,992,4.1000000000000005,71,4 +2020,2,22,8,0,29.200000000000003,1.04,0.1496,0.62,137,828,767,2,22.8,286,511,0,675,0.254,68.58,40.44,0.14,992,4.1000000000000005,71,3.8000000000000003 +2020,2,22,9,0,28.400000000000002,1.04,0.1272,0.62,111,768,554,0,22.900000000000002,111,768,0,554,0.254,72.03,54.72,0.14,992,4,71,3.4000000000000004 +2020,2,22,10,0,27.1,1.03,0.1085,0.62,81,636,306,0,23.200000000000003,81,636,0,306,0.254,79.06,69.25,0.14,993,3.9000000000000004,71,2.6 +2020,2,22,11,0,25.200000000000003,1.01,0.0944,0.62,35,290,67,0,23.1,35,290,0,67,0.254,88.10000000000001,83.84,0.14,994,3.8000000000000003,71,1.7000000000000002 +2020,2,22,12,0,24.400000000000002,1,0.0826,0.62,0,0,0,0,22.900000000000002,0,0,0,0,0.254,91.48,98.71000000000001,0.14,994,3.7,68,1.6 +2020,2,22,13,0,23.8,0.98,0.0777,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.254,93.73,113.47,0.14,995,3.6,63,1.5 +2020,2,22,14,0,23.400000000000002,0.9400000000000001,0.077,0.62,0,0,0,0,22.6,0,0,0,0,0.255,95.26,128.21,0.14,996,3.6,56,1.4000000000000001 +2020,2,22,15,0,23.1,0.92,0.0775,0.62,0,0,0,0,22.5,0,0,0,0,0.255,96.59,142.9,0.14,996,3.5,52,1.4000000000000001 +2020,2,22,16,0,23,0.91,0.0781,0.62,0,0,0,1,22.5,0,0,0,0,0.255,96.81,157.34,0.14,995,3.6,48,1.3 +2020,2,22,17,0,22.8,0.91,0.0756,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.255,97.49000000000001,170.36,0.14,994,3.6,45,1.3 +2020,2,22,18,0,22.6,0.9500000000000001,0.07390000000000001,0.62,0,0,0,0,22.3,0,0,0,0,0.255,97.99000000000001,169.25,0.14,993,3.6,44,1.3 +2020,2,22,19,0,22.5,0.98,0.0703,0.62,0,0,0,0,22.200000000000003,0,0,0,0,0.254,97.92,155.89000000000001,0.14,993,3.7,46,1.2000000000000002 +2020,2,22,20,0,22.400000000000002,0.99,0.064,0.62,0,0,0,0,22,0,0,0,0,0.254,97.88,141.4,0.14,993,3.8000000000000003,45,1.2000000000000002 +2020,2,22,21,0,22.400000000000002,1.02,0.065,0.62,0,0,0,0,22,0,0,1,0,0.254,97.64,126.7,0.14,993,3.8000000000000003,46,1.4000000000000001 +2020,2,22,22,0,22.400000000000002,1.03,0.0646,0.62,0,0,0,0,22,0,0,0,0,0.255,97.55,111.95,0.14,993,3.8000000000000003,47,1.4000000000000001 +2020,2,22,23,0,22.900000000000002,1.04,0.0604,0.62,0,0,0,0,22.200000000000003,0,0,0,0,0.255,96.04,97.18,0.14,994,3.9000000000000004,46,1.6 +2020,2,23,0,0,24.400000000000002,1.08,0.0567,0.62,37,416,92,0,23,37,416,0,92,0.255,91.76,82.33,0.14,995,3.9000000000000004,47,2.4000000000000004 +2020,2,23,1,0,26.1,1.1300000000000001,0.049800000000000004,0.62,64,737,344,0,23.200000000000003,64,737,0,344,0.254,84.03,67.72,0.14,995,3.9000000000000004,51,3.2 +2020,2,23,2,0,27.6,1.18,0.0446,0.62,77,865,595,0,23.200000000000003,77,865,0,595,0.254,76.95,53.18,0.14,995,4,52,3.5 +2020,2,23,3,0,28.700000000000003,1.03,0.0776,0.62,103,894,799,1,23.200000000000003,103,894,0,799,0.254,72.36,38.9,0.14,995,4.1000000000000005,54,3.5 +2020,2,23,4,0,29.6,1.09,0.0679,0.62,104,937,951,0,23.3,104,937,0,951,0.254,69.16,25.38,0.14,994,4.2,57,3.3000000000000003 +2020,2,23,5,0,30.200000000000003,1.11,0.066,0.62,106,953,1027,1,23.5,106,953,0,1027,0.255,67.39,14.870000000000001,0.14,993,4.3,59,3.1 +2020,2,23,6,0,30.6,1.03,0.166,0.62,159,877,1004,2,23.6,504,255,0,749,0.256,66.11,15.63,0.14,992,4.4,60,2.8000000000000003 +2020,2,23,7,0,30.700000000000003,1.01,0.1584,0.62,151,861,920,0,23.5,151,861,0,920,0.257,65.58,26.71,0.14,991,4.5,60,2.7 +2020,2,23,8,0,30.3,1.01,0.15810000000000002,0.62,140,815,761,0,23.5,140,815,0,761,0.258,66.94,40.36,0.14,990,4.6000000000000005,61,2.5 +2020,2,23,9,0,29.5,0.99,0.1636,0.62,125,725,544,0,23.700000000000003,125,725,0,544,0.259,71.03,54.68,0.14,990,4.7,62,2.2 +2020,2,23,10,0,28.1,0.96,0.16740000000000002,0.62,97,556,295,0,23.900000000000002,97,556,0,295,0.259,78.09,69.24,0.14,991,4.7,63,1.8 +2020,2,23,11,0,26.400000000000002,0.92,0.1585,0.62,40,196,61,3,23.8,34,0,3,34,0.259,85.71000000000001,83.85000000000001,0.14,992,4.7,66,1.4000000000000001 +2020,2,23,12,0,25.6,0.91,0.1394,0.62,0,0,0,1,23.400000000000002,0,0,0,0,0.259,87.92,98.73,0.14,993,4.7,64,1.4000000000000001 +2020,2,23,13,0,24.900000000000002,0.9,0.12340000000000001,0.62,0,0,0,1,23.200000000000003,0,0,0,0,0.259,90.24,113.5,0.14,994,4.6000000000000005,61,1.3 +2020,2,23,14,0,24.3,0.91,0.11180000000000001,0.62,0,0,0,3,23,0,0,0,0,0.259,92.4,128.27,0.14,995,4.6000000000000005,55,1.4000000000000001 +2020,2,23,15,0,23.8,0.92,0.1106,0.62,0,0,0,3,22.8,0,0,0,0,0.258,94.37,142.98,0.14,995,4.6000000000000005,49,1.4000000000000001 +2020,2,23,16,0,23.400000000000002,0.9500000000000001,0.112,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.257,95.88,157.47,0.14,995,4.5,43,1.3 +2020,2,23,17,0,23.1,0.98,0.1153,0.62,0,0,0,0,22.5,0,0,0,0,0.255,96.56,170.64000000000001,0.14,994,4.5,39,1.3 +2020,2,23,18,0,22.900000000000002,1.02,0.1188,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.254,96.85000000000001,169.46,0.14,994,4.5,37,1.3 +2020,2,23,19,0,22.700000000000003,1.05,0.11670000000000001,0.62,0,0,0,0,22.200000000000003,0,0,0,0,0.253,97.03,155.95000000000002,0.14,993,4.5,39,1.3 +2020,2,23,20,0,22.6,1.06,0.10790000000000001,0.62,0,0,0,0,22.1,0,0,0,0,0.252,96.86,141.41,0.14,993,4.5,40,1.3 +2020,2,23,21,0,22.400000000000002,1.09,0.1046,0.62,0,0,0,0,21.900000000000002,0,0,0,0,0.252,97.27,126.69,0.14,993,4.5,38,1.2000000000000002 +2020,2,23,22,0,22.200000000000003,1.1,0.1017,0.62,0,0,0,0,21.8,0,0,0,0,0.252,97.82000000000001,111.92,0.14,993,4.5,36,1.2000000000000002 +2020,2,23,23,0,22.700000000000003,1.11,0.09580000000000001,0.62,0,0,0,0,22,0,0,0,0,0.251,95.71000000000001,97.14,0.14,993,4.5,36,1.5 +2020,2,24,0,0,24.400000000000002,1.12,0.09290000000000001,0.62,41,351,89,0,22.5,41,351,0,89,0.251,89.18,82.27,0.14,993,4.5,39,2.5 +2020,2,24,1,0,26.3,1.1300000000000001,0.0874,0.62,77,680,335,0,22.900000000000002,77,680,0,335,0.252,81.61,67.64,0.14,994,4.5,46,3.3000000000000003 +2020,2,24,2,0,27.8,1.1300000000000001,0.0813,0.62,93,819,586,0,23.200000000000003,93,819,0,586,0.252,76.06,53.07,0.14,994,4.6000000000000005,49,3.4000000000000004 +2020,2,24,3,0,29,1.03,0.1274,0.62,128,846,787,0,23.5,128,846,0,787,0.252,72.07000000000001,38.76,0.14,994,4.7,50,3.2 +2020,2,24,4,0,29.900000000000002,1.05,0.12200000000000001,0.62,133,889,937,0,23.700000000000003,133,889,0,937,0.253,69.39,25.17,0.14,993,4.800000000000001,51,3 +2020,2,24,5,0,30.6,1.06,0.12440000000000001,0.62,138,903,1013,1,23.900000000000002,138,903,0,1013,0.253,67.45,14.530000000000001,0.14,992,4.9,52,2.7 +2020,2,24,6,0,30.900000000000002,1.11,0.1869,0.62,168,859,996,3,24,506,120,0,622,0.254,66.75,15.34,0.14,990,5,53,2.4000000000000004 +2020,2,24,7,0,30.900000000000002,1.08,0.18510000000000001,0.62,162,837,911,3,24,458,254,0,685,0.254,66.89,26.57,0.14,990,5.1000000000000005,55,2.2 +2020,2,24,8,0,30.5,1.05,0.1888,0.62,152,786,752,0,24.1,152,786,0,752,0.255,68.52,40.28,0.14,989,5.300000000000001,59,2.1 +2020,2,24,9,0,29.6,1,0.19690000000000002,0.62,137,690,536,1,24.3,137,690,0,536,0.255,73.07000000000001,54.64,0.14,989,5.4,64,1.9000000000000001 +2020,2,24,10,0,28.3,0.9400000000000001,0.20400000000000001,0.62,107,512,288,0,24.5,107,512,0,288,0.255,80.02,69.23,0.14,990,5.5,69,1.5 +2020,2,24,11,0,26.700000000000003,0.87,0.19990000000000002,0.62,42,153,58,0,24.6,42,153,0,58,0.255,88.45,83.85000000000001,0.14,991,5.5,74,1.1 +2020,2,24,12,0,26,0.8300000000000001,0.1938,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.255,90.69,98.75,0.14,992,5.4,75,1.2000000000000002 +2020,2,24,13,0,25.3,0.84,0.17470000000000002,0.62,0,0,0,1,24.1,0,0,0,0,0.255,93.03,113.54,0.14,993,5.300000000000001,75,1.1 +2020,2,24,14,0,24.700000000000003,0.8300000000000001,0.1605,0.62,0,0,0,0,23.8,0,0,0,0,0.255,94.58,128.33,0.14,993,5.2,72,1.1 +2020,2,24,15,0,24.200000000000003,0.85,0.1505,0.62,0,0,0,0,23.5,0,0,0,0,0.255,95.96000000000001,143.06,0.14,994,5.1000000000000005,63,1.2000000000000002 +2020,2,24,16,0,23.8,0.89,0.1368,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.256,96.61,157.6,0.14,993,5,54,1.3 +2020,2,24,17,0,23.400000000000002,0.9400000000000001,0.125,0.62,0,0,0,0,22.900000000000002,0,0,0,0,0.256,97.28,170.92000000000002,0.14,993,4.800000000000001,48,1.3 +2020,2,24,18,0,23.1,1.01,0.12090000000000001,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.256,97.47,169.65,0.14,992,4.7,45,1.2000000000000002 +2020,2,24,19,0,22.8,1.07,0.117,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.256,97.84,156.01,0.14,991,4.6000000000000005,43,1.2000000000000002 +2020,2,24,20,0,22.700000000000003,1.11,0.1091,0.62,0,0,0,0,22.3,0,0,0,0,0.255,97.35000000000001,141.42000000000002,0.14,991,4.5,42,1.2000000000000002 +2020,2,24,21,0,22.5,1.16,0.1077,0.62,0,0,0,0,22.1,0,0,0,0,0.256,97.59,126.68,0.14,991,4.4,40,1.2000000000000002 +2020,2,24,22,0,22.400000000000002,1.2,0.1056,0.62,0,0,0,0,22,0,0,0,0,0.256,97.45,111.89,0.14,991,4.4,41,1.3 +2020,2,24,23,0,22.8,1.21,0.1034,0.62,0,0,0,0,22.1,0,0,0,0,0.256,95.88,97.09,0.14,992,4.4,42,1.5 +2020,2,25,0,0,24.5,1.23,0.1014,0.62,42,345,89,0,22.5,42,345,0,89,0.257,88.66,82.21000000000001,0.14,993,4.4,43,2.4000000000000004 +2020,2,25,1,0,26.200000000000003,1.25,0.0971,0.62,79,672,335,0,22.6,79,672,0,335,0.256,80.73,67.56,0.14,993,4.4,45,2.8000000000000003 +2020,2,25,2,0,27.8,1.28,0.09340000000000001,0.62,97,810,585,0,22.700000000000003,97,810,0,585,0.256,73.81,52.96,0.14,993,4.5,44,2.6 +2020,2,25,3,0,29.200000000000003,1.29,0.0889,0.62,107,883,797,0,22.8,107,883,0,797,0.255,68.49,38.61,0.14,993,4.5,43,2.3000000000000003 +2020,2,25,4,0,30.200000000000003,1.28,0.0947,0.62,117,913,945,0,22.900000000000002,117,913,0,945,0.255,64.99,24.96,0.14,992,4.6000000000000005,46,2 +2020,2,25,5,0,30.900000000000002,1.26,0.1057,0.62,126,921,1019,0,23.1,126,921,0,1019,0.255,63.27,14.19,0.14,991,4.6000000000000005,51,1.8 +2020,2,25,6,0,31.200000000000003,1.36,0.21760000000000002,0.62,179,845,995,0,23.3,179,845,0,995,0.255,62.76,15.05,0.14,990,4.7,55,1.7000000000000002 +2020,2,25,7,0,31,1.34,0.22030000000000002,0.62,174,821,909,0,23.3,174,821,0,909,0.255,63.67,26.43,0.14,989,4.7,57,1.5 +2020,2,25,8,0,30.6,1.35,0.21780000000000002,0.62,160,774,752,3,23.400000000000002,369,277,0,580,0.256,65.46000000000001,40.21,0.14,989,4.800000000000001,61,1.5 +2020,2,25,9,0,30,1.35,0.2146,0.62,139,688,537,3,23.900000000000002,249,55,0,281,0.256,70.05,54.6,0.14,989,4.9,65,1.4000000000000001 +2020,2,25,10,0,28.700000000000003,1.36,0.2139,0.62,104,523,290,3,24.1,147,142,0,197,0.257,76.10000000000001,69.22,0.14,989,4.9,68,1.2000000000000002 +2020,2,25,11,0,26.900000000000002,1.35,0.21300000000000002,0.62,40,176,59,0,24.400000000000002,40,176,0,59,0.258,86.34,83.86,0.14,990,4.9,73,0.9 +2020,2,25,12,0,26.200000000000003,1.35,0.20800000000000002,0.62,0,0,0,3,24.1,0,0,0,0,0.258,88.16,98.78,0.14,991,4.800000000000001,75,1.1 +2020,2,25,13,0,25.6,1.36,0.1957,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.259,90.5,113.58,0.14,992,4.800000000000001,72,1.1 +2020,2,25,14,0,25,1.37,0.17830000000000001,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.261,92.45,128.38,0.14,992,4.6000000000000005,67,1.2000000000000002 +2020,2,25,15,0,24.5,1.4000000000000001,0.1632,0.62,0,0,0,1,23.5,0,0,0,0,0.261,94.25,143.14000000000001,0.14,992,4.5,61,1.4000000000000001 +2020,2,25,16,0,24,1.42,0.1506,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.261,96.25,157.73,0.14,992,4.4,55,1.5 +2020,2,25,17,0,23.6,1.45,0.1403,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.26,97.32000000000001,171.20000000000002,0.14,992,4.3,50,1.4000000000000001 +2020,2,25,18,0,23.3,1.49,0.1351,0.62,0,0,0,0,22.900000000000002,0,0,0,0,0.258,97.43,169.84,0.14,991,4.2,43,1.2000000000000002 +2020,2,25,19,0,23,1.53,0.1306,0.62,0,0,0,0,22.6,0,0,0,0,0.256,97.68,156.05,0.14,991,4.2,33,1 +2020,2,25,20,0,22.700000000000003,1.57,0.1236,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.254,98.15,141.43,0.14,991,4.2,19,1 +2020,2,25,21,0,22.6,1.6,0.11950000000000001,0.62,0,0,0,0,22.200000000000003,0,0,0,0,0.253,97.86,126.66,0.14,991,4.2,18,1.2000000000000002 +2020,2,25,22,0,22.5,1.62,0.11470000000000001,0.62,0,0,0,0,22.1,0,0,0,0,0.253,97.64,111.85000000000001,0.14,991,4.1000000000000005,23,1.4000000000000001 +2020,2,25,23,0,22.900000000000002,1.6400000000000001,0.10880000000000001,0.62,0,0,0,0,22.3,0,0,0,0,0.253,96.36,97.04,0.14,992,4.1000000000000005,27,1.8 +2020,2,26,0,0,24.3,1.6500000000000001,0.10690000000000001,0.62,40,358,89,0,23.1,40,358,0,89,0.254,92.87,82.14,0.14,992,4.1000000000000005,32,2.6 +2020,2,26,1,0,26,1.6600000000000001,0.1058,0.62,79,672,336,0,23.400000000000002,79,672,0,336,0.254,85.77,67.47,0.14,993,4.1000000000000005,36,2.8000000000000003 +2020,2,26,2,0,28,1.67,0.10600000000000001,0.62,99,805,586,0,23.1,99,805,0,586,0.254,74.9,52.85,0.14,993,4.2,39,2.7 +2020,2,26,3,0,29.400000000000002,1.57,0.20090000000000002,0.62,151,802,778,0,22.8,151,802,0,778,0.254,67.81,38.47,0.14,993,4.3,42,2.4000000000000004 +2020,2,26,4,0,30.400000000000002,1.58,0.1995,0.62,161,845,928,0,22.8,161,845,0,928,0.254,63.99,24.740000000000002,0.14,993,4.4,43,2.2 +2020,2,26,5,0,31.1,1.58,0.1993,0.62,166,863,1004,2,23,485,340,0,816,0.254,62.02,13.84,0.14,992,4.4,43,2 +2020,2,26,6,0,31.3,1.56,0.1751,0.62,156,877,1004,3,23,515,190,0,699,0.254,61.620000000000005,14.76,0.14,990,4.5,42,2 +2020,2,26,7,0,31.3,1.54,0.17750000000000002,0.62,152,853,917,3,23.1,458,259,0,690,0.254,62,26.29,0.14,990,4.6000000000000005,42,2 +2020,2,26,8,0,30.900000000000002,1.53,0.17800000000000002,0.62,142,807,759,0,23.200000000000003,142,807,0,759,0.254,63.77,40.15,0.14,989,4.7,44,2 +2020,2,26,9,0,30.3,1.53,0.17220000000000002,0.62,122,727,544,3,23.8,225,421,0,469,0.254,68.41,54.57,0.14,989,4.800000000000001,47,1.7000000000000002 +2020,2,26,10,0,28.8,1.55,0.15410000000000001,0.62,88,587,297,0,24.200000000000003,88,587,0,297,0.253,76.05,69.21000000000001,0.14,990,4.800000000000001,49,1.5 +2020,2,26,11,0,26.8,1.56,0.1332,0.62,35,255,62,6,24.5,25,0,3,25,0.254,87.19,83.87,0.14,991,4.9,54,0.9 +2020,2,26,12,0,26.1,1.56,0.1163,0.62,0,0,0,7,24.3,0,0,0,0,0.254,89.85000000000001,98.8,0.14,992,4.9,54,0.9 +2020,2,26,13,0,25.6,1.56,0.1039,0.62,0,0,0,0,24.1,0,0,0,0,0.254,91.52,113.62,0.14,992,4.9,50,1 +2020,2,26,14,0,25.1,1.57,0.095,0.62,0,0,0,8,24,0,0,0,0,0.254,93.62,128.44,0.14,993,4.800000000000001,47,1.1 +2020,2,26,15,0,24.700000000000003,1.58,0.0917,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.253,95.29,143.22,0.14,993,4.7,45,1.3 +2020,2,26,16,0,24.3,1.6,0.0941,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.252,96.74000000000001,157.85,0.14,993,4.6000000000000005,41,1.4000000000000001 +2020,2,26,17,0,23.900000000000002,1.61,0.10160000000000001,0.62,0,0,0,0,23.5,0,0,0,0,0.251,97.86,171.47,0.14,992,4.5,36,1.4000000000000001 +2020,2,26,18,0,23.6,1.6300000000000001,0.1121,0.62,0,0,0,3,23.3,0,0,0,0,0.249,98.01,170.01,0.14,991,4.4,34,1.5 +2020,2,26,19,0,23.3,1.6400000000000001,0.11950000000000001,0.62,0,0,0,0,22.900000000000002,0,0,0,0,0.249,97.81,156.09,0.14,990,4.4,35,1.4000000000000001 +2020,2,26,20,0,23,1.6600000000000001,0.1253,0.62,0,0,0,0,22.6,0,0,0,0,0.249,97.46000000000001,141.43,0.14,990,4.4,36,1.3 +2020,2,26,21,0,22.700000000000003,1.6600000000000001,0.1323,0.62,0,0,0,0,22.3,0,0,0,0,0.25,97.32000000000001,126.64,0.14,991,4.5,35,1.1 +2020,2,26,22,0,22.6,1.6600000000000001,0.1358,0.62,0,0,0,0,22,0,0,0,0,0.251,96.69,111.81,0.14,991,4.5,33,1 +2020,2,26,23,0,23.1,1.6600000000000001,0.1331,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.251,96.11,96.98,0.14,992,4.4,33,1.2000000000000002 +2020,2,27,0,0,24.5,1.6500000000000001,0.1315,0.62,43,328,88,0,23.3,43,328,0,88,0.251,93.29,82.07000000000001,0.14,993,4.4,36,2.3000000000000003 +2020,2,27,1,0,26.1,1.6500000000000001,0.1265,0.62,85,648,334,0,23.700000000000003,85,648,0,334,0.251,86.87,67.38,0.14,993,4.3,46,2.8000000000000003 +2020,2,27,2,0,27.900000000000002,1.6500000000000001,0.1192,0.62,105,792,584,0,23.5,105,792,0,584,0.251,77.04,52.74,0.14,993,4.3,51,2.9000000000000004 +2020,2,27,3,0,29.200000000000003,1.55,0.1779,0.62,143,818,785,0,23.400000000000002,143,818,0,785,0.251,71.07000000000001,38.32,0.14,993,4.3,52,2.8000000000000003 +2020,2,27,4,0,30.200000000000003,1.55,0.1804,0.62,154,857,934,0,23.5,154,857,0,934,0.251,67.36,24.53,0.14,992,4.4,54,2.6 +2020,2,27,5,0,30.900000000000002,1.55,0.18760000000000002,0.62,163,870,1009,0,23.6,163,870,0,1009,0.251,65.32000000000001,13.5,0.14,991,4.5,57,2.3000000000000003 +2020,2,27,6,0,31.200000000000003,1.57,0.2902,0.62,206,806,986,0,23.700000000000003,206,806,0,986,0.25,64.53,14.48,0.14,990,4.6000000000000005,61,2.2 +2020,2,27,7,0,31.200000000000003,1.54,0.31320000000000003,0.62,209,767,897,1,23.700000000000003,209,767,0,897,0.25,64.47,26.17,0.14,989,4.800000000000001,65,2.1 +2020,2,27,8,0,30.900000000000002,1.52,0.33790000000000003,0.62,202,699,736,3,23.700000000000003,362,309,0,598,0.25,65.45,40.08,0.14,988,4.9,68,1.9000000000000001 +2020,2,27,9,0,30.400000000000002,1.51,0.3472,0.62,176,596,522,0,23.900000000000002,176,596,0,522,0.25,68.39,54.550000000000004,0.14,988,5,68,1.6 +2020,2,27,10,0,29.1,1.52,0.3386,0.62,126,432,280,1,24.3,126,432,0,280,0.249,75.49,69.2,0.14,989,4.9,66,1.2000000000000002 +2020,2,27,11,0,27.3,1.54,0.30970000000000003,0.62,40,135,54,0,24.6,40,135,0,54,0.249,85.01,83.88,0.14,990,4.9,67,0.8 +2020,2,27,12,0,26.5,1.56,0.2863,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.25,87.47,98.83,0.14,991,4.800000000000001,67,0.9 +2020,2,27,13,0,25.900000000000002,1.57,0.2646,0.62,0,0,0,0,24,0,0,0,0,0.25,89.09,113.67,0.14,992,4.7,64,1 +2020,2,27,14,0,25.3,1.58,0.2459,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.25,91,128.5,0.14,992,4.6000000000000005,60,1.3 +2020,2,27,15,0,24.700000000000003,1.57,0.23240000000000002,0.62,0,0,0,0,23.6,0,0,0,0,0.25,93.85000000000001,143.3,0.14,993,4.5,57,1.4000000000000001 +2020,2,27,16,0,24.200000000000003,1.56,0.2214,0.62,0,0,0,0,23.5,0,0,0,0,0.25,95.93,157.98,0.14,992,4.5,54,1.5 +2020,2,27,17,0,23.8,1.55,0.2097,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.249,97.37,171.74,0.14,992,4.4,50,1.7000000000000002 +2020,2,27,18,0,23.5,1.54,0.1988,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.248,97.99000000000001,170.17000000000002,0.14,991,4.3,49,1.8 +2020,2,27,19,0,23.200000000000003,1.52,0.1887,0.62,0,0,0,0,22.900000000000002,0,0,1,0,0.248,98.36,156.12,0.14,990,4.1000000000000005,49,1.9000000000000001 +2020,2,27,20,0,22.900000000000002,1.51,0.1774,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.247,98.87,141.42000000000002,0.14,990,4,50,1.8 +2020,2,27,21,0,22.700000000000003,1.49,0.17,0.62,0,0,0,0,22.5,0,0,0,0,0.247,98.87,126.61,0.14,990,4,48,1.6 +2020,2,27,22,0,22.400000000000002,1.48,0.16590000000000002,0.62,0,0,0,0,22.3,0,0,0,0,0.248,99.54,111.77,0.14,990,3.9000000000000004,44,1.4000000000000001 +2020,2,27,23,0,22.8,1.47,0.16040000000000001,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.249,97.37,96.93,0.14,991,3.9000000000000004,42,1.5 +2020,2,28,0,0,24.5,1.48,0.1534,0.62,47,304,89,0,22.8,47,304,0,89,0.249,90.18,82,0.14,992,3.9000000000000004,43,2.5 +2020,2,28,1,0,26.200000000000003,1.52,0.1416,0.62,91,634,336,0,22.900000000000002,91,634,0,336,0.249,82.10000000000001,67.29,0.14,992,4,46,3 +2020,2,28,2,0,27.8,1.56,0.1338,0.62,111,782,586,0,22.8,111,782,0,586,0.249,74.35000000000001,52.63,0.14,993,4,48,3 +2020,2,28,3,0,29.1,1.6,0.1159,0.62,118,869,801,0,22.700000000000003,118,869,0,801,0.248,68.4,38.18,0.14,992,4,51,2.9000000000000004 +2020,2,28,4,0,30.1,1.61,0.114,0.62,125,907,952,0,22.700000000000003,125,907,0,952,0.248,64.6,24.32,0.14,992,4.1000000000000005,54,2.7 +2020,2,28,5,0,30.8,1.6,0.11560000000000001,0.62,129,921,1026,0,22.8,129,921,0,1026,0.248,62.49,13.15,0.14,990,4.2,57,2.5 +2020,2,28,6,0,31.200000000000003,1.58,0.1246,0.62,134,913,1019,0,23,134,913,0,1019,0.248,61.67,14.200000000000001,0.14,989,4.3,59,2.3000000000000003 +2020,2,28,7,0,31.200000000000003,1.55,0.1325,0.62,133,887,930,0,23,133,887,1,930,0.249,61.77,26.04,0.14,989,4.4,60,2.2 +2020,2,28,8,0,30.8,1.52,0.1439,0.62,130,834,769,0,23,130,834,0,769,0.25,63.31,40.03,0.14,988,4.5,61,2 +2020,2,28,9,0,30.200000000000003,1.5,0.15180000000000002,0.62,116,746,550,0,23.3,116,746,0,550,0.251,66.79,54.52,0.14,988,4.6000000000000005,61,1.7000000000000002 +2020,2,28,10,0,28.900000000000002,1.48,0.1598,0.62,91,580,297,0,23.900000000000002,91,580,0,297,0.251,74.26,69.2,0.14,989,4.7,61,1.3 +2020,2,28,11,0,27,1.46,0.16190000000000002,0.62,38,222,61,0,24.200000000000003,38,222,0,61,0.252,84.92,83.9,0.14,990,4.800000000000001,63,0.9 +2020,2,28,12,0,26.3,1.43,0.1582,0.62,0,0,0,0,24,0,0,0,0,0.252,87.10000000000001,98.86,0.14,991,4.800000000000001,65,1 +2020,2,28,13,0,25.700000000000003,1.3900000000000001,0.1507,0.62,0,0,0,0,23.6,0,0,0,0,0.252,88.3,113.71000000000001,0.14,991,4.800000000000001,66,1.1 +2020,2,28,14,0,25.1,1.36,0.1428,0.62,0,0,0,0,23.5,0,0,0,0,0.252,90.72,128.56,0.14,992,4.7,65,1.3 +2020,2,28,15,0,24.5,1.33,0.1384,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.251,93.4,143.38,0.14,992,4.6000000000000005,63,1.4000000000000001 +2020,2,28,16,0,23.900000000000002,1.31,0.1371,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.251,96,158.1,0.14,992,4.5,56,1.4000000000000001 +2020,2,28,17,0,23.5,1.31,0.13720000000000002,0.62,0,0,0,0,23,0,0,0,0,0.25,97.08,172,0.14,991,4.3,48,1.4000000000000001 +2020,2,28,18,0,23.1,1.31,0.1383,0.62,0,0,0,1,22.8,0,0,0,0,0.249,98.04,170.32,0.14,990,4.2,39,1.4000000000000001 +2020,2,28,19,0,22.8,1.32,0.1393,0.62,0,0,0,8,22.6,0,0,0,0,0.249,98.55,156.15,0.14,989,4,31,1.4000000000000001 +2020,2,28,20,0,22.700000000000003,1.34,0.137,0.62,0,0,0,0,22.400000000000002,0,0,0,0,0.249,98.11,141.41,0.14,989,3.9000000000000004,28,1.5 +2020,2,28,21,0,22.400000000000002,1.35,0.13520000000000001,0.62,0,0,0,3,22.200000000000003,0,0,0,0,0.25,98.58,126.58,0.14,989,3.8000000000000003,31,1.4000000000000001 +2020,2,28,22,0,22.1,1.36,0.1356,0.62,0,0,0,3,21.900000000000002,0,0,0,0,0.251,98.91,111.72,0.14,989,3.8000000000000003,36,1.3 +2020,2,28,23,0,22.400000000000002,1.37,0.13570000000000002,0.62,0,0,0,0,21.900000000000002,0,0,0,0,0.251,97,96.87,0.14,990,3.8000000000000003,42,1.4000000000000001 +2020,3,1,0,0,25,1.51,0.2742,0.6,53,209,83,4,23,51,100,3,65,0.25,88.64,81.85000000000001,0.14,992,4.5,33,2.1 +2020,3,1,1,0,26.5,1.53,0.26230000000000003,0.6,119,522,322,8,23.200000000000003,136,395,0,289,0.25,81.9,67.11,0.14,993,4.4,33,2.3000000000000003 +2020,3,1,2,0,28.3,1.56,0.2564,0.6,152,681,567,7,23.200000000000003,235,447,0,508,0.25,73.97,52.410000000000004,0.14,993,4.4,30,2.2 +2020,3,1,3,0,29.8,1.57,0.24380000000000002,0.6,168,772,778,7,23.400000000000002,301,507,0,701,0.25,68.43,37.88,0.14,993,4.4,25,1.9000000000000001 +2020,3,1,4,0,30.8,1.58,0.24100000000000002,0.6,179,818,927,8,23.5,398,444,0,803,0.25,65,23.900000000000002,0.14,992,4.5,24,1.7000000000000002 +2020,3,1,5,0,31.3,1.59,0.23950000000000002,0.6,184,838,1002,7,23.5,447,415,0,852,0.25,63.49,12.450000000000001,0.14,991,4.5,26,1.6 +2020,3,1,6,0,31.6,1.59,0.2398,0.6,184,837,997,7,23.6,498,295,0,785,0.25,62.480000000000004,13.66,0.14,990,4.5,29,1.5 +2020,3,1,7,0,31.5,1.6,0.24080000000000001,0.6,178,814,910,8,23.5,470,177,0,629,0.25,62.65,25.82,0.14,989,4.5,32,1.4000000000000001 +2020,3,1,8,0,31.200000000000003,1.6,0.2424,0.6,165,763,750,7,23.400000000000002,369,90,0,438,0.251,63.49,39.93,0.14,989,4.6000000000000005,39,1.4000000000000001 +2020,3,1,9,0,30.8,1.61,0.24300000000000002,0.6,143,674,534,7,23.8,265,103,0,325,0.252,66.19,54.49,0.14,988,4.6000000000000005,45,1.2000000000000002 +2020,3,1,10,0,29.700000000000003,1.62,0.23950000000000002,0.6,106,511,287,8,23.700000000000003,136,278,0,235,0.252,70.38,69.21000000000001,0.14,989,4.6000000000000005,47,1.1 +2020,3,1,11,0,27.6,1.6300000000000001,0.23500000000000001,0.6,38,176,56,8,24.200000000000003,37,134,3,51,0.253,81.55,83.94,0.14,990,4.7,53,0.7000000000000001 +2020,3,1,12,0,26.8,1.6300000000000001,0.2285,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.253,83.18,98.93,0.14,990,4.7,57,0.7000000000000001 +2020,3,1,13,0,26.1,1.6300000000000001,0.2189,0.6,0,0,0,7,23.5,0,0,0,0,0.252,85.37,113.8,0.14,991,4.7,59,0.6000000000000001 +2020,3,1,14,0,25.5,1.62,0.20650000000000002,0.6,0,0,0,8,23.3,0,0,0,0,0.252,87.82000000000001,128.68,0.14,992,4.7,59,0.6000000000000001 +2020,3,1,15,0,24.900000000000002,1.6,0.1943,0.6,0,0,0,8,23.200000000000003,0,0,0,0,0.252,90.45,143.54,0.14,992,4.7,60,0.6000000000000001 +2020,3,1,16,0,24.400000000000002,1.58,0.1841,0.6,0,0,0,3,23.1,0,0,0,0,0.252,92.2,158.33,0.14,992,4.6000000000000005,56,0.7000000000000001 +2020,3,1,17,0,23.900000000000002,1.57,0.17600000000000002,0.6,0,0,0,0,22.900000000000002,0,0,0,0,0.251,93.87,172.5,0.14,991,4.5,50,0.7000000000000001 +2020,3,1,18,0,23.400000000000002,1.56,0.1685,0.6,0,0,0,3,22.700000000000003,0,0,0,0,0.25,95.59,170.57,0.14,991,4.3,44,0.8 +2020,3,1,19,0,23,1.57,0.1603,0.6,0,0,0,3,22.400000000000002,0,0,0,0,0.25,96.67,156.18,0.14,990,4.2,38,0.9 +2020,3,1,20,0,22.700000000000003,1.58,0.15230000000000002,0.6,0,0,0,0,22.200000000000003,0,0,0,0,0.25,97.23,141.37,0.14,990,4,35,0.9 +2020,3,1,21,0,22.5,1.59,0.1461,0.6,0,0,0,1,22,0,0,0,0,0.25,97.19,126.5,0.14,990,3.9000000000000004,33,1 +2020,3,1,22,0,22.200000000000003,1.61,0.1394,0.6,0,0,0,0,21.8,0,0,0,0,0.25,97.64,111.62,0.14,990,3.8000000000000003,32,1 +2020,3,1,23,0,22.6,1.6300000000000001,0.1322,0.6,0,0,0,0,22,0,0,0,0,0.25,96.39,96.74000000000001,0.14,991,3.7,30,1.3 +2020,3,2,0,0,24.1,1.6500000000000001,0.1258,0.6,44,352,94,0,22.8,44,352,0,94,0.251,92.32000000000001,81.78,0.14,992,3.6,31,2.1 +2020,3,2,1,0,26.1,1.67,0.1194,0.6,83,669,344,0,22.8,83,669,0,344,0.25,82.32000000000001,67.02,0.14,992,3.6,35,2.4000000000000004 +2020,3,2,2,0,28.200000000000003,1.69,0.1165,0.6,104,806,597,0,22.3,104,806,0,597,0.25,70.21000000000001,52.29,0.14,993,3.6,42,2.3000000000000003 +2020,3,2,3,0,29.700000000000003,1.6600000000000001,0.13570000000000002,0.6,126,859,805,3,22.1,339,419,0,670,0.25,63.6,37.74,0.14,993,3.7,42,2 +2020,3,2,4,0,30.700000000000003,1.67,0.1373,0.6,135,895,954,8,22.200000000000003,390,498,0,846,0.251,60.46,23.69,0.14,992,3.8000000000000003,37,1.6 +2020,3,2,5,0,31.400000000000002,1.67,0.1416,0.6,141,907,1028,3,22.400000000000002,520,212,0,726,0.25,58.92,12.1,0.14,991,3.9000000000000004,31,1.3 +2020,3,2,6,0,31.700000000000003,1.6400000000000001,0.2632,0.6,193,829,1000,3,22.700000000000003,518,182,0,696,0.25,58.84,13.4,0.14,990,4,26,1.3 +2020,3,2,7,0,31.6,1.62,0.26630000000000004,0.6,190,803,913,3,22.900000000000002,418,53,0,466,0.25,59.88,25.71,0.14,989,4.1000000000000005,23,1.3 +2020,3,2,8,0,31.200000000000003,1.6,0.2681,0.6,176,750,752,3,23,351,350,0,620,0.25,61.980000000000004,39.88,0.14,988,4.2,23,1.3 +2020,3,2,9,0,30.8,1.59,0.2665,0.6,152,659,534,3,23.700000000000003,265,222,0,394,0.25,66.05,54.480000000000004,0.14,988,4.3,25,1.3 +2020,3,2,10,0,29.6,1.59,0.254,0.6,109,500,286,3,23.8,135,290,0,238,0.25,71.22,69.22,0.14,989,4.3,26,1.2000000000000002 +2020,3,2,11,0,27.700000000000003,1.6,0.24230000000000002,0.6,38,171,56,3,24.6,37,86,3,46,0.251,83.28,83.96000000000001,0.14,990,4.4,33,0.8 +2020,3,2,12,0,27,1.6,0.2338,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.252,85.59,98.96000000000001,0.14,991,4.4,41,0.8 +2020,3,2,13,0,26.400000000000002,1.6,0.22710000000000002,0.6,0,0,0,8,24.3,0,0,0,0,0.253,88.18,113.85000000000001,0.14,991,4.4,46,0.7000000000000001 +2020,3,2,14,0,25.900000000000002,1.59,0.22310000000000002,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.254,90.11,128.74,0.14,992,4.4,48,0.7000000000000001 +2020,3,2,15,0,25.400000000000002,1.57,0.2225,0.6,0,0,0,8,24.1,0,0,0,0,0.254,92.26,143.62,0.14,992,4.4,48,0.7000000000000001 +2020,3,2,16,0,24.900000000000002,1.55,0.22360000000000002,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.254,94.39,158.44,0.14,992,4.4,47,0.8 +2020,3,2,17,0,24.5,1.53,0.22030000000000002,0.6,0,0,0,8,23.8,0,0,0,0,0.253,95.83,172.73,0.14,991,4.4,43,0.8 +2020,3,2,18,0,24.200000000000003,1.5,0.21430000000000002,0.6,0,0,0,8,23.6,0,0,0,0,0.252,96.64,170.68,0.14,990,4.4,39,0.9 +2020,3,2,19,0,24,1.49,0.2054,0.6,0,0,0,8,23.5,0,0,0,0,0.251,96.86,156.18,0.14,990,4.4,37,0.9 +2020,3,2,20,0,23.700000000000003,1.49,0.19640000000000002,0.6,0,0,0,7,23.3,0,0,0,0,0.25,97.59,141.34,0.14,990,4.4,35,0.9 +2020,3,2,21,0,23.6,1.5,0.19160000000000002,0.6,0,0,0,8,23.200000000000003,0,0,0,0,0.25,97.32000000000001,126.46000000000001,0.14,990,4.4,33,0.9 +2020,3,2,22,0,23.400000000000002,1.52,0.18050000000000002,0.6,0,0,0,7,23,0,0,0,0,0.25,97.60000000000001,111.56,0.14,991,4.3,30,1 +2020,3,2,23,0,23.700000000000003,1.54,0.1633,0.6,0,0,0,7,23.1,0,0,0,0,0.25,96.56,96.67,0.14,991,4.2,27,1.3 +2020,3,3,0,0,24.900000000000002,1.56,0.1512,0.6,47,317,93,7,23.700000000000003,52,113,3,68,0.251,93.31,81.7,0.14,992,4.1000000000000005,28,2.1 +2020,3,3,1,0,26.3,1.58,0.1409,0.6,90,640,340,7,23.8,162,79,0,193,0.251,86.3,66.92,0.14,993,4,35,2.5 +2020,3,3,2,0,28.1,1.6,0.1317,0.6,110,786,592,8,23.5,227,471,0,515,0.251,76.22,52.18,0.14,993,4,41,2.5 +2020,3,3,3,0,29.6,1.58,0.1575,0.6,135,839,800,0,23.5,135,839,0,800,0.251,69.69,37.59,0.14,993,3.9000000000000004,41,2.3000000000000003 +2020,3,3,4,0,30.5,1.58,0.153,0.6,143,882,952,3,23.700000000000003,422,50,0,468,0.251,66.96000000000001,23.48,0.14,992,3.9000000000000004,39,1.9000000000000001 +2020,3,3,5,0,31.1,1.57,0.15,0.6,146,900,1027,3,23.8,447,420,0,858,0.251,65.4,11.74,0.14,991,4,38,1.6 +2020,3,3,6,0,31.400000000000002,1.52,0.30610000000000004,0.6,214,801,993,3,24,514,230,0,738,0.251,64.77,13.15,0.14,990,4.1000000000000005,41,1.4000000000000001 +2020,3,3,7,0,31.400000000000002,1.51,0.3139,0.6,211,771,906,3,24,449,86,0,526,0.251,64.91,25.61,0.14,989,4.2,49,1.2000000000000002 +2020,3,3,8,0,31.1,1.49,0.3244,0.6,199,711,744,8,24,302,472,0,665,0.252,65.92,39.85,0.14,989,4.3,61,1.2000000000000002 +2020,3,3,9,0,30.5,1.49,0.3266,0.6,171,613,528,8,24.1,241,358,0,449,0.252,68.89,54.47,0.14,989,4.4,71,1.2000000000000002 +2020,3,3,10,0,29.6,1.49,0.3255,0.6,125,440,281,3,24.6,128,337,0,248,0.252,74.66,69.23,0.14,989,4.5,77,1 +2020,3,3,11,0,27.900000000000002,1.48,0.3382,0.6,41,117,53,3,25,41,117,5,53,0.252,84.29,83.99,0.14,990,4.6000000000000005,82,0.7000000000000001 +2020,3,3,12,0,27.200000000000003,1.46,0.33630000000000004,0.6,0,0,0,7,24.8,0,0,0,0,0.252,86.74,99,0.14,991,4.7,84,0.7000000000000001 +2020,3,3,13,0,26.700000000000003,1.45,0.3281,0.6,0,0,0,8,24.5,0,0,0,0,0.251,87.96000000000001,113.9,0.14,991,4.800000000000001,82,0.7000000000000001 +2020,3,3,14,0,26.3,1.44,0.3095,0.6,0,0,0,0,24.400000000000002,0,0,0,0,0.252,89.16,128.8,0.14,992,4.800000000000001,77,0.7000000000000001 +2020,3,3,15,0,25.8,1.43,0.2864,0.6,0,0,0,8,24.3,0,0,0,0,0.252,91.26,143.70000000000002,0.14,992,4.7,69,0.7000000000000001 +2020,3,3,16,0,25.3,1.41,0.2772,0.6,0,0,0,1,24.200000000000003,0,0,0,0,0.251,93.4,158.54,0.14,992,4.6000000000000005,62,0.8 +2020,3,3,17,0,24.8,1.4000000000000001,0.274,0.6,0,0,0,1,24,0,0,0,0,0.251,95.46000000000001,172.96,0.14,991,4.6000000000000005,56,0.8 +2020,3,3,18,0,24.5,1.3900000000000001,0.2787,0.6,0,0,0,1,23.8,0,0,0,0,0.251,96.09,170.76,0.14,990,4.5,51,0.8 +2020,3,3,19,0,24.200000000000003,1.3900000000000001,0.2813,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.251,96.91,156.17000000000002,0.14,990,4.5,50,0.8 +2020,3,3,20,0,24,1.3900000000000001,0.2766,0.6,0,0,0,8,23.5,0,0,0,0,0.251,97.21000000000001,141.31,0.14,990,4.4,49,0.9 +2020,3,3,21,0,23.8,1.4000000000000001,0.2706,0.6,0,0,0,1,23.400000000000002,0,0,0,0,0.252,97.54,126.41,0.14,990,4.4,47,1 +2020,3,3,22,0,23.700000000000003,1.42,0.26130000000000003,0.6,0,0,0,8,23.3,0,0,0,0,0.252,97.45,111.5,0.14,991,4.4,46,1.1 +2020,3,3,23,0,24,1.43,0.24430000000000002,0.6,0,0,0,8,23.3,0,0,0,0,0.251,95.96000000000001,96.60000000000001,0.14,991,4.4,44,1.4000000000000001 +2020,3,4,0,0,25.5,1.46,0.2205,0.6,54,250,90,7,23.5,51,18,3,53,0.251,88.85000000000001,81.62,0.14,992,4.3,44,2.3000000000000003 +2020,3,4,1,0,27.200000000000003,1.5,0.1951,0.6,105,582,334,8,23.700000000000003,149,320,0,275,0.251,81.18,66.83,0.14,993,4.3,45,2.5 +2020,3,4,2,0,28.8,1.52,0.17850000000000002,0.6,129,742,585,0,23.900000000000002,129,742,0,585,0.25,74.73,52.06,0.14,993,4.3,46,2.3000000000000003 +2020,3,4,3,0,30.1,1.5,0.2921,0.6,189,741,777,1,24,189,741,0,777,0.25,70.10000000000001,37.45,0.14,993,4.3,44,2.1 +2020,3,4,4,0,31,1.49,0.2763,0.6,196,796,927,0,24.200000000000003,196,796,0,927,0.25,67.1,23.28,0.14,992,4.4,43,1.8 +2020,3,4,5,0,31.6,1.49,0.2662,0.6,198,822,1003,3,24.3,522,199,0,717,0.25,65.24,11.39,0.14,991,4.4,45,1.5 +2020,3,4,6,0,31.8,1.46,0.22340000000000002,0.6,179,844,1002,1,24.200000000000003,179,844,0,1002,0.251,64.15,12.9,0.14,990,4.5,48,1.2000000000000002 +2020,3,4,7,0,31.8,1.46,0.2076,0.6,167,832,917,1,24.1,167,832,0,917,0.251,63.85,25.52,0.14,989,4.6000000000000005,52,1.1 +2020,3,4,8,0,31.6,1.46,0.2058,0.6,154,785,756,8,24.1,326,420,0,648,0.252,64.35,39.81,0.14,988,4.7,59,1.1 +2020,3,4,9,0,31.200000000000003,1.47,0.2089,0.6,135,695,538,3,24.3,247,329,0,438,0.252,66.99,54.47,0.14,988,4.800000000000001,68,1 +2020,3,4,10,0,30.200000000000003,1.48,0.20670000000000002,0.6,101,531,289,7,24.3,18,0,0,18,0.251,70.92,69.25,0.14,989,4.9,75,1 +2020,3,4,11,0,28.3,1.47,0.2109,0.6,38,178,56,8,25.1,5,0,3,5,0.251,82.7,84.01,0.14,990,5.1000000000000005,85,0.7000000000000001 +2020,3,4,12,0,27.5,1.46,0.21710000000000002,0.6,0,0,0,8,25,0,0,0,0,0.251,86.06,99.04,0.14,991,5.2,91,0.7000000000000001 +2020,3,4,13,0,27,1.46,0.2189,0.6,0,0,0,7,24.6,0,0,0,0,0.251,86.94,113.95,0.14,991,5.300000000000001,94,0.7000000000000001 +2020,3,4,14,0,26.700000000000003,1.44,0.21930000000000002,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.251,87.01,128.86,0.14,992,5.4,91,0.6000000000000001 +2020,3,4,15,0,26.200000000000003,1.42,0.2225,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.251,88.66,143.77,0.14,992,5.5,87,0.7000000000000001 +2020,3,4,16,0,25.700000000000003,1.4000000000000001,0.22030000000000002,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.251,91.28,158.64000000000001,0.14,992,5.6000000000000005,81,0.8 +2020,3,4,17,0,25.200000000000003,1.3900000000000001,0.2122,0.6,0,0,0,3,24.1,0,0,0,0,0.251,93.39,173.18,0.14,992,5.6000000000000005,70,0.9 +2020,3,4,18,0,24.900000000000002,1.37,0.2114,0.6,0,0,0,3,23.900000000000002,0,0,0,0,0.25,94.28,170.83,0.14,991,5.6000000000000005,57,1 +2020,3,4,19,0,24.6,1.37,0.2129,0.6,0,0,0,3,23.8,0,0,0,0,0.25,95.35000000000001,156.16,0.14,990,5.6000000000000005,51,1 +2020,3,4,20,0,24.3,1.37,0.21610000000000001,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.25,96.26,141.27,0.14,990,5.6000000000000005,53,0.9 +2020,3,4,21,0,24.200000000000003,1.37,0.23600000000000002,0.6,0,0,0,3,23.6,0,0,0,0,0.25,96.18,126.36,0.14,990,5.6000000000000005,55,0.8 +2020,3,4,22,0,24,1.3800000000000001,0.23900000000000002,0.6,0,0,0,3,23.5,0,0,0,0,0.251,96.95,111.44,0.14,991,5.5,55,0.8 +2020,3,4,23,0,24.400000000000002,1.3900000000000001,0.22890000000000002,0.6,0,0,0,1,23.6,0,0,0,0,0.251,95.56,96.53,0.14,991,5.5,52,1 +2020,3,5,0,0,25.8,1.41,0.22660000000000002,0.6,54,239,89,8,23.900000000000002,51,197,3,80,0.251,89.42,81.53,0.14,992,5.4,47,1.7000000000000002 +2020,3,5,1,0,27.3,1.42,0.221,0.6,111,550,328,7,24.1,158,262,0,261,0.252,82.59,66.73,0.14,993,5.4,51,1.7000000000000002 +2020,3,5,2,0,28.700000000000003,1.43,0.21200000000000002,0.6,140,705,574,7,24.3,267,325,0,468,0.252,77.06,51.95,0.14,993,5.4,55,1.4000000000000001 +2020,3,5,3,0,29.700000000000003,1.43,0.2111,0.6,158,784,782,7,24.400000000000002,389,262,0,598,0.252,73.44,37.300000000000004,0.14,993,5.5,59,1.1 +2020,3,5,4,0,30.1,1.42,0.21930000000000002,0.6,173,821,928,7,24.400000000000002,461,300,0,737,0.25,71.57000000000001,23.07,0.14,992,5.6000000000000005,66,1 +2020,3,5,5,0,30.3,1.41,0.22790000000000002,0.6,181,832,998,6,24.400000000000002,522,150,0,669,0.249,70.58,11.040000000000001,0.14,992,5.800000000000001,75,1 +2020,3,5,6,0,30.3,1.4000000000000001,0.27090000000000003,0.6,201,804,986,6,24.3,499,92,0,588,0.248,70.31,12.65,0.14,991,5.9,89,1 +2020,3,5,7,0,29.8,1.4000000000000001,0.28090000000000004,0.6,198,775,897,6,24.400000000000002,312,18,0,328,0.247,72.76,25.44,0.14,990,6,98,1.1 +2020,3,5,8,0,29.400000000000002,1.4000000000000001,0.2823,0.6,183,723,739,6,24.900000000000002,316,33,0,342,0.247,76.86,39.78,0.14,990,6,103,1.1 +2020,3,5,9,0,28.6,1.3900000000000001,0.30610000000000004,0.6,165,612,521,6,25.1,47,0,0,47,0.247,81.29,54.47,0.14,990,6.1000000000000005,99,1.1 +2020,3,5,10,0,27.6,1.3800000000000001,0.31880000000000003,0.6,125,431,277,6,24.900000000000002,47,0,0,47,0.248,85.5,69.26,0.14,990,6.1000000000000005,96,1 +2020,3,5,11,0,26.6,1.36,0.3161,0.6,39,113,51,6,25.400000000000002,15,0,3,15,0.249,93,84.04,0.14,991,6.2,101,0.8 +2020,3,5,12,0,26.200000000000003,1.34,0.3171,0.6,0,0,0,9,25.3,0,0,0,0,0.25,94.89,99.08,0.14,992,6.2,102,0.9 +2020,3,5,13,0,25.900000000000002,1.33,0.30710000000000004,0.6,0,0,0,6,25.3,0,0,0,0,0.251,96.24000000000001,114,0.14,993,6.2,104,1 +2020,3,5,14,0,25.700000000000003,1.32,0.2934,0.6,0,0,0,7,25.200000000000003,0,0,0,0,0.252,96.98,128.92000000000002,0.14,994,6.2,105,0.9 +2020,3,5,15,0,25.400000000000002,1.32,0.2907,0.6,0,0,0,6,25.1,0,0,0,0,0.252,97.96000000000001,143.85,0.14,994,6.2,105,0.9 +2020,3,5,16,0,25.200000000000003,1.31,0.2902,0.6,0,0,0,6,24.900000000000002,0,0,0,0,0.253,98.29,158.74,0.14,994,6.2,100,0.9 +2020,3,5,17,0,25,1.31,0.2932,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.252,98.21000000000001,173.38,0.14,993,6.2,91,0.8 +2020,3,5,18,0,24.8,1.3,0.3146,0.6,0,0,0,7,24.5,0,0,0,0,0.252,98.21000000000001,170.89000000000001,0.14,992,6.2,86,0.8 +2020,3,5,19,0,24.700000000000003,1.3,0.34,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.252,98.06,156.14000000000001,0.14,992,6.2,95,0.8 +2020,3,5,20,0,24.6,1.3,0.3398,0.6,0,0,0,7,24.3,0,0,0,0,0.251,97.97,141.23,0.14,991,6.2,112,0.9 +2020,3,5,21,0,24.6,1.3,0.3275,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.251,97.36,126.3,0.14,992,6.1000000000000005,123,1 +2020,3,5,22,0,24.5,1.32,0.3053,0.6,0,0,0,4,24,0,0,0,0,0.251,97.33,111.37,0.14,992,6.1000000000000005,125,0.9 +2020,3,5,23,0,24.6,1.34,0.2752,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.251,97.35000000000001,96.45,0.14,993,6,118,0.8 +2020,3,6,0,0,25.400000000000002,1.3800000000000001,0.24300000000000002,0.6,55,226,89,3,24.400000000000002,47,0,3,47,0.252,94.38,81.45,0.15,993,5.9,96,1.2000000000000002 +2020,3,6,1,0,26.400000000000002,1.42,0.21860000000000002,0.6,112,551,330,0,24.1,112,551,0,330,0.252,87.09,66.63,0.15,994,5.800000000000001,87,1.3 +2020,3,6,2,0,27.700000000000003,1.44,0.2046,0.6,138,710,576,3,23.3,277,276,0,448,0.252,77.15,51.83,0.15,994,5.7,81,1.3 +2020,3,6,3,0,29,1.45,0.1963,0.6,153,794,785,7,23,392,249,0,591,0.252,70.26,37.160000000000004,0.15,994,5.7,72,1.1 +2020,3,6,4,0,30,1.46,0.1928,0.6,162,837,933,7,23,448,343,0,764,0.251,66.25,22.87,0.15,994,5.7,66,1 +2020,3,6,5,0,30.400000000000002,1.46,0.1928,0.6,168,855,1008,7,23,522,208,0,726,0.251,64.77,10.69,0.15,993,5.7,67,0.8 +2020,3,6,6,0,30.5,1.46,0.19790000000000002,0.6,169,850,999,8,23,498,301,0,792,0.25,64.22,12.42,0.15,992,5.800000000000001,72,0.8 +2020,3,6,7,0,30.3,1.46,0.20350000000000001,0.6,166,825,911,7,23,357,27,0,381,0.249,65.18,25.36,0.15,991,5.800000000000001,78,0.9 +2020,3,6,8,0,30.3,1.46,0.2033,0.6,154,778,752,6,23.700000000000003,342,52,0,382,0.249,67.81,39.76,0.15,991,5.800000000000001,87,0.9 +2020,3,6,9,0,29.400000000000002,1.46,0.21200000000000002,0.6,137,685,535,9,24,79,0,0,79,0.248,72.92,54.47,0.15,991,5.800000000000001,96,0.9 +2020,3,6,10,0,28.200000000000003,1.48,0.20650000000000002,0.6,101,525,287,9,24,14,0,0,14,0.248,77.93,69.28,0.15,992,5.800000000000001,104,0.9 +2020,3,6,11,0,27.1,1.52,0.1869,0.6,37,194,57,9,24.3,5,0,3,5,0.249,84.92,84.07000000000001,0.15,992,5.800000000000001,119,0.7000000000000001 +2020,3,6,12,0,26.6,1.53,0.17700000000000002,0.6,0,0,0,6,24.1,0,0,0,0,0.25,86.37,99.12,0.15,993,5.7,127,0.7000000000000001 +2020,3,6,13,0,26.400000000000002,1.53,0.1763,0.6,0,0,0,9,23.8,0,0,0,0,0.252,85.88,114.05,0.15,994,5.7,129,0.7000000000000001 +2020,3,6,14,0,26.3,1.52,0.1781,0.6,0,0,0,6,23.5,0,0,0,0,0.253,84.37,128.98,0.15,994,5.7,123,0.6000000000000001 +2020,3,6,15,0,26.200000000000003,1.51,0.1837,0.6,0,0,0,6,23.200000000000003,0,0,0,0,0.253,83.49,143.92000000000002,0.15,995,5.7,116,0.5 +2020,3,6,16,0,26,1.5,0.1912,0.6,0,0,0,7,23.1,0,0,0,0,0.253,83.84,158.83,0.15,994,5.800000000000001,105,0.4 +2020,3,6,17,0,25.6,1.49,0.1973,0.6,0,0,0,8,23,0,0,0,0,0.252,85.63,173.56,0.15,994,5.800000000000001,85,0.4 +2020,3,6,18,0,25.200000000000003,1.48,0.2091,0.6,0,0,0,7,23,0,0,0,0,0.251,87.72,170.92000000000002,0.15,993,5.800000000000001,64,0.4 +2020,3,6,19,0,24.900000000000002,1.47,0.2152,0.6,0,0,0,7,23,0,0,0,0,0.251,89,156.11,0.15,993,5.800000000000001,65,0.4 +2020,3,6,20,0,24.700000000000003,1.47,0.2107,0.6,0,0,0,7,22.900000000000002,0,0,0,0,0.251,89.81,141.18,0.15,992,5.800000000000001,65,0.4 +2020,3,6,21,0,24.5,1.47,0.2117,0.6,0,0,0,8,22.8,0,0,0,0,0.252,90.16,126.24000000000001,0.15,992,5.800000000000001,62,0.4 +2020,3,6,22,0,24.3,1.47,0.21180000000000002,0.6,0,0,0,4,22.700000000000003,0,0,0,0,0.252,90.99,111.31,0.15,993,5.800000000000001,61,0.4 +2020,3,6,23,0,24.400000000000002,1.47,0.2087,0.6,0,0,0,4,23.200000000000003,0,0,0,0,0.252,92.98,96.37,0.15,993,5.800000000000001,56,0.5 +2020,3,7,0,0,25.8,1.46,0.2233,0.6,55,248,92,8,24.1,53,44,3,60,0.253,90.44,81.36,0.14,994,5.800000000000001,34,0.7000000000000001 +2020,3,7,1,0,27.700000000000003,1.45,0.2374,0.6,117,536,331,4,24.3,161,55,0,183,0.253,81.8,66.54,0.14,995,5.9,359,0.8 +2020,3,7,2,0,28.1,1.45,0.2293,0.6,148,690,576,3,24,275,294,3,457,0.253,78.49,51.72,0.14,995,5.9,328,1 +2020,3,7,3,0,28.8,1.43,0.29760000000000003,0.6,194,725,772,8,24.200000000000003,377,319,0,632,0.253,76.44,37.02,0.14,995,6,314,1.4000000000000001 +2020,3,7,4,0,29,1.43,0.3064,0.6,211,765,917,3,24.3,468,99,0,559,0.253,75.92,22.67,0.14,994,6.1000000000000005,309,1.8 +2020,3,7,5,0,29,1.43,0.3008,0.6,215,788,990,7,24.400000000000002,522,206,0,725,0.252,76.29,10.34,0.14,993,6.2,303,2.1 +2020,3,7,6,0,28.5,1.43,0.41200000000000003,0.6,258,726,968,8,24.400000000000002,326,18,0,344,0.251,78.5,12.19,0.14,992,6.300000000000001,300,2.2 +2020,3,7,7,0,27.700000000000003,1.42,0.4343,0.6,256,688,878,4,24.400000000000002,460,108,0,557,0.251,82.31,25.29,0.14,991,6.4,297,2.4000000000000004 +2020,3,7,8,0,27,1.42,0.43,0.6,234,634,722,9,24.400000000000002,234,11,0,243,0.251,85.85000000000001,39.74,0.14,991,6.4,296,2.3000000000000003 +2020,3,7,9,0,26.400000000000002,1.42,0.4741,0.6,210,510,506,9,24.5,73,0,0,73,0.251,89.23,54.47,0.14,991,6.4,299,1.9000000000000001 +2020,3,7,10,0,26,1.42,0.4756,0.6,147,338,266,6,24.6,91,0,0,91,0.252,92.02,69.3,0.14,991,6.4,303,1.3 +2020,3,7,11,0,25.6,1.42,0.43660000000000004,0.6,38,79,46,7,24.700000000000003,22,0,3,22,0.254,94.68,84.11,0.14,992,6.4,300,0.8 +2020,3,7,12,0,25.5,1.41,0.4203,0.6,0,0,0,7,24.6,0,0,0,0,0.255,94.54,99.16,0.14,992,6.5,292,0.7000000000000001 +2020,3,7,13,0,25.5,1.4000000000000001,0.4218,0.6,0,0,0,8,24.5,0,0,0,0,0.255,94.11,114.10000000000001,0.14,993,6.5,290,0.6000000000000001 +2020,3,7,14,0,25.400000000000002,1.3800000000000001,0.4365,0.6,0,0,0,7,24.3,0,0,0,0,0.255,93.89,129.04,0.14,993,6.6000000000000005,291,0.5 +2020,3,7,15,0,25.3,1.36,0.4565,0.6,0,0,0,8,24.3,0,0,0,0,0.255,94.09,143.99,0.14,993,6.6000000000000005,126,0.4 +2020,3,7,16,0,25,1.35,0.43820000000000003,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.254,95.22,158.92000000000002,0.14,993,6.6000000000000005,118,0.5 +2020,3,7,17,0,24.8,1.35,0.4026,0.6,0,0,0,7,24.1,0,0,0,0,0.253,95.8,173.73,0.14,993,6.6000000000000005,105,0.6000000000000001 +2020,3,7,18,0,24.6,1.35,0.4098,0.6,0,0,0,8,24,0,0,0,0,0.252,96.43,170.94,0.14,992,6.5,88,0.6000000000000001 +2020,3,7,19,0,24.6,1.34,0.42900000000000005,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.251,95.91,156.07,0.14,992,6.4,74,0.6000000000000001 +2020,3,7,20,0,24.5,1.35,0.4288,0.6,0,0,0,7,23.8,0,0,0,0,0.251,96.03,141.13,0.14,991,6.300000000000001,56,0.6000000000000001 +2020,3,7,21,0,24.5,1.37,0.4182,0.6,0,0,0,8,23.8,0,0,1,0,0.25,95.95,126.18,0.14,992,6.1000000000000005,24,0.6000000000000001 +2020,3,7,22,0,24.5,1.3900000000000001,0.3815,0.6,0,0,0,7,23.8,0,0,0,0,0.25,95.63,111.23,0.14,992,6,350,0.6000000000000001 +2020,3,7,23,0,24.5,1.42,0.3376,0.6,0,0,0,3,23.8,0,0,0,0,0.25,95.82000000000001,96.3,0.14,993,5.800000000000001,321,0.5 +2020,3,8,0,0,25.5,1.45,0.2944,0.6,56,203,87,7,24.5,6,0,3,6,0.25,94.01,81.27,0.14,993,5.6000000000000005,296,0.4 +2020,3,8,1,0,27.400000000000002,1.5,0.23870000000000002,0.6,113,540,328,7,24,102,0,0,102,0.25,81.97,66.44,0.14,994,5.5,324,0.4 +2020,3,8,2,0,29.6,1.54,0.2038,0.6,134,715,579,7,22.5,262,356,0,483,0.248,65.75,51.6,0.14,994,5.4,3,0.8 +2020,3,8,3,0,30.5,1.56,0.18710000000000002,0.6,145,805,788,7,21.6,395,246,0,591,0.247,59.11,36.87,0.14,993,5.300000000000001,356,1.1 +2020,3,8,4,0,30.900000000000002,1.59,0.1748,0.6,149,854,939,8,21.6,477,242,0,700,0.246,57.71,22.48,0.14,992,5.2,347,1.3 +2020,3,8,5,0,31.3,1.6,0.17250000000000001,0.6,153,873,1012,8,21.900000000000002,448,437,0,878,0.246,57.35,9.99,0.14,991,5.2,340,1.5 +2020,3,8,6,0,31.400000000000002,1.61,0.1837,0.6,157,864,1002,8,22.1,496,309,0,799,0.245,57.97,11.98,0.14,990,5.2,336,1.6 +2020,3,8,7,0,31.1,1.6,0.19790000000000002,0.6,157,834,911,6,22.400000000000002,470,152,0,607,0.245,59.96,25.22,0.14,990,5.2,335,1.5 +2020,3,8,8,0,30.700000000000003,1.59,0.2134,0.6,151,776,748,3,22.8,324,422,0,649,0.246,62.85,39.730000000000004,0.14,990,5.2,331,1.4000000000000001 +2020,3,8,9,0,30.400000000000002,1.58,0.22560000000000002,0.6,135,679,529,7,23,252,63,0,288,0.246,64.72,54.49,0.14,990,5.2,327,1.2000000000000002 +2020,3,8,10,0,29.1,1.58,0.23900000000000002,0.6,102,502,280,6,23.3,134,283,0,234,0.246,70.95,69.33,0.14,990,5.2,321,1.1 +2020,3,8,11,0,27.3,1.57,0.2536,0.6,36,153,52,6,24.5,32,0,3,32,0.247,84.5,84.14,0.14,991,5.300000000000001,307,0.8 +2020,3,8,12,0,26.8,1.55,0.27,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.247,86.73,99.21000000000001,0.14,992,5.300000000000001,302,0.8 +2020,3,8,13,0,26.5,1.53,0.2882,0.6,0,0,0,7,24.3,0,0,0,0,0.247,87.97,114.15,0.14,992,5.4,300,0.7000000000000001 +2020,3,8,14,0,26.200000000000003,1.52,0.3037,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.247,89.76,129.1,0.14,993,5.4,287,0.7000000000000001 +2020,3,8,15,0,25.900000000000002,1.5,0.31470000000000004,0.6,0,0,0,0,24.400000000000002,0,0,0,0,0.248,91.35000000000001,144.06,0.14,993,5.4,276,0.8 +2020,3,8,16,0,25.5,1.49,0.3219,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.248,93.42,159.01,0.14,992,5.300000000000001,277,0.8 +2020,3,8,17,0,25.200000000000003,1.47,0.33130000000000004,0.6,0,0,0,0,24.3,0,0,0,0,0.247,94.7,173.88,0.14,991,5.300000000000001,282,0.8 +2020,3,8,18,0,24.900000000000002,1.45,0.3428,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.247,96.05,170.94,0.14,990,5.300000000000001,287,0.8 +2020,3,8,19,0,24.700000000000003,1.44,0.3446,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.246,96.93,156.02,0.14,990,5.2,288,0.9 +2020,3,8,20,0,24.6,1.43,0.3416,0.6,0,0,0,7,24.1,0,0,0,0,0.246,97.25,141.07,0.14,990,5.2,283,0.9 +2020,3,8,21,0,24.700000000000003,1.42,0.35200000000000004,0.6,0,0,0,0,24.1,0,0,0,0,0.245,96.67,126.11,0.14,990,5.2,283,0.9 +2020,3,8,22,0,24.900000000000002,1.41,0.3546,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.246,95.64,111.16,0.14,990,5.300000000000001,285,0.7000000000000001 +2020,3,8,23,0,25.3,1.41,0.3401,0.6,0,0,0,8,24.5,0,0,0,0,0.246,95.57000000000001,96.21000000000001,0.14,991,5.300000000000001,288,0.6000000000000001 +2020,3,9,0,0,26.700000000000003,1.45,0.3143,0.6,58,195,88,8,25.400000000000002,46,0,3,46,0.246,92.83,81.19,0.14,992,5.300000000000001,285,0.7000000000000001 +2020,3,9,1,0,28,1.44,0.3134,0.6,130,482,323,3,25,158,277,0,270,0.246,83.8,66.34,0.14,993,5.4,296,0.7000000000000001 +2020,3,9,2,0,29.200000000000003,1.42,0.3109,0.6,169,636,565,0,24.700000000000003,169,636,0,565,0.246,76.87,51.49,0.14,993,5.4,17,0.7000000000000001 +2020,3,9,3,0,30.3,1.3800000000000001,0.2485,0.6,173,759,782,0,24.6,173,759,0,782,0.246,71.61,36.730000000000004,0.14,992,5.4,38,0.8 +2020,3,9,4,0,31.1,1.3900000000000001,0.2411,0.6,182,809,930,0,24.6,182,809,0,930,0.246,68.41,22.29,0.14,991,5.300000000000001,25,0.8 +2020,3,9,5,0,31.6,1.3900000000000001,0.2295,0.6,181,834,1003,0,24.6,181,834,0,1003,0.245,66.62,9.64,0.14,990,5.300000000000001,1,0.9 +2020,3,9,6,0,31.6,1.4000000000000001,0.26630000000000004,0.6,197,810,991,0,24.700000000000003,197,810,0,991,0.245,66.83,11.77,0.14,989,5.300000000000001,333,1.1 +2020,3,9,7,0,31.200000000000003,1.3900000000000001,0.2641,0.6,189,787,902,3,24.700000000000003,457,276,0,707,0.246,68.61,25.17,0.14,988,5.4,309,1.3 +2020,3,9,8,0,30.700000000000003,1.3800000000000001,0.265,0.6,176,736,742,7,24.900000000000002,369,279,0,584,0.246,71.15,39.72,0.14,988,5.4,286,1.3 +2020,3,9,9,0,29.900000000000002,1.36,0.30060000000000003,0.6,164,617,522,8,25.200000000000003,224,420,0,468,0.246,75.9,54.5,0.14,988,5.5,270,1.4000000000000001 +2020,3,9,10,0,28.8,1.34,0.3244,0.6,124,424,274,7,25.6,134,279,0,233,0.246,82.91,69.36,0.14,989,5.6000000000000005,263,1.3 +2020,3,9,11,0,27.6,1.34,0.3089,0.6,39,112,50,6,26,20,0,3,20,0.246,90.8,84.18,0.14,990,5.6000000000000005,257,0.9 +2020,3,9,12,0,27.1,1.34,0.2995,0.6,0,0,0,7,25.900000000000002,0,0,0,0,0.247,93.16,99.25,0.14,990,5.6000000000000005,252,0.9 +2020,3,9,13,0,26.700000000000003,1.35,0.2878,0.6,0,0,0,6,25.8,0,0,0,0,0.247,94.88,114.2,0.14,991,5.5,250,0.8 +2020,3,9,14,0,26.400000000000002,1.35,0.26730000000000004,0.6,0,0,0,3,25.700000000000003,0,0,0,0,0.247,95.77,129.16,0.14,991,5.5,250,0.7000000000000001 +2020,3,9,15,0,26.3,1.36,0.2516,0.6,0,0,0,0,25.5,0,0,0,0,0.248,95.48,144.12,0.14,991,5.4,248,0.7000000000000001 +2020,3,9,16,0,26.200000000000003,1.36,0.2436,0.6,0,0,0,0,25.400000000000002,0,0,0,0,0.248,95.26,159.08,0.14,991,5.300000000000001,236,0.6000000000000001 +2020,3,9,17,0,26.200000000000003,1.36,0.2411,0.6,0,0,0,1,25.3,0,0,0,0,0.247,94.56,174.01,0.14,990,5.2,204,0.5 +2020,3,9,18,0,25.900000000000002,1.35,0.25020000000000003,0.6,0,0,0,0,25.1,0,0,0,0,0.247,95.37,170.92000000000002,0.14,989,5.2,163,0.5 +2020,3,9,19,0,25.700000000000003,1.35,0.2587,0.6,0,0,0,0,25,0,0,0,0,0.247,95.73,155.97,0.14,989,5.2,123,0.5 +2020,3,9,20,0,25.400000000000002,1.34,0.26130000000000003,0.6,0,0,0,0,24.8,0,0,0,0,0.247,96.55,141.01,0.14,989,5.2,96,0.6000000000000001 +2020,3,9,21,0,25.3,1.34,0.27,0.6,0,0,0,0,24.700000000000003,0,0,0,0,0.247,96.42,126.04,0.14,989,5.2,85,0.6000000000000001 +2020,3,9,22,0,25.200000000000003,1.34,0.2718,0.6,0,0,0,0,24.6,0,0,0,0,0.248,96.45,111.08,0.14,990,5.2,79,0.6000000000000001 +2020,3,9,23,0,25.400000000000002,1.34,0.26480000000000004,0.6,0,0,0,0,24.8,0,0,0,0,0.248,96.60000000000001,96.13,0.14,990,5.1000000000000005,78,0.6000000000000001 +2020,3,10,0,0,26.8,1.36,0.25220000000000004,0.6,58,231,94,0,25.5,58,231,0,94,0.249,92.75,81.10000000000001,0.14,991,5.1000000000000005,117,0.6000000000000001 +2020,3,10,1,0,28.400000000000002,1.3800000000000001,0.22640000000000002,0.6,114,551,336,0,25.5,114,551,0,336,0.25,84.3,66.24,0.14,991,5.1000000000000005,143,0.6000000000000001 +2020,3,10,2,0,29.6,1.41,0.1988,0.6,135,720,584,0,25.200000000000003,135,720,0,584,0.25,77.4,51.370000000000005,0.14,992,5.1000000000000005,153,0.8 +2020,3,10,3,0,30.5,1.42,0.2064,0.6,157,791,792,0,25.3,157,791,0,792,0.25,73.76,36.6,0.14,991,5.1000000000000005,188,0.9 +2020,3,10,4,0,31.3,1.43,0.1925,0.6,160,841,939,1,25.400000000000002,160,841,0,939,0.249,71.04,22.1,0.14,991,5.2,228,1.1 +2020,3,10,5,0,31.700000000000003,1.43,0.17250000000000001,0.6,156,871,1015,0,25.400000000000002,156,871,0,1015,0.248,69.35000000000001,9.3,0.14,990,5.2,244,1.2000000000000002 +2020,3,10,6,0,31.8,1.4000000000000001,0.2001,0.6,169,850,1002,1,25.3,169,850,0,1002,0.247,68.55,11.57,0.14,989,5.300000000000001,258,1.2000000000000002 +2020,3,10,7,0,31.400000000000002,1.3900000000000001,0.2089,0.6,168,822,912,3,25.3,468,217,0,664,0.246,69.97,25.12,0.14,989,5.4,270,1.3 +2020,3,10,8,0,30.900000000000002,1.37,0.2189,0.6,160,766,749,3,25.3,353,342,0,616,0.246,72.01,39.71,0.14,989,5.5,268,1.3 +2020,3,10,9,0,30.1,1.36,0.2685,0.6,156,639,527,6,25.5,154,0,0,154,0.246,76.34,54.52,0.14,989,5.6000000000000005,264,1.3 +2020,3,10,10,0,29.1,1.36,0.2811,0.6,118,456,278,3,25.700000000000003,130,312,0,240,0.247,81.93,69.39,0.14,989,5.7,261,1.2000000000000002 +2020,3,10,11,0,27.900000000000002,1.36,0.26180000000000003,0.6,39,133,52,8,26,34,26,3,37,0.248,89.42,84.22,0.14,990,5.7,260,0.9 +2020,3,10,12,0,27.400000000000002,1.36,0.25880000000000003,0.6,0,0,0,7,26,0,0,0,0,0.248,91.98,99.3,0.14,990,5.7,265,0.9 +2020,3,10,13,0,27,1.35,0.24550000000000002,0.6,0,0,0,4,25.900000000000002,0,0,0,0,0.248,93.66,114.26,0.14,991,5.7,269,0.8 +2020,3,10,14,0,26.8,1.35,0.2227,0.6,0,0,0,3,25.8,0,0,0,0,0.248,94.33,129.22,0.14,992,5.7,272,0.8 +2020,3,10,15,0,26.6,1.34,0.2154,0.6,0,0,0,0,25.700000000000003,0,0,0,0,0.248,94.58,144.19,0.14,992,5.7,269,0.8 +2020,3,10,16,0,26.400000000000002,1.33,0.20980000000000001,0.6,0,0,0,7,25.5,0,0,0,0,0.247,95.07000000000001,159.16,0.14,992,5.7,261,0.7000000000000001 +2020,3,10,17,0,26.3,1.34,0.2016,0.6,0,0,0,0,25.400000000000002,0,0,0,0,0.247,94.73,174.12,0.14,991,5.6000000000000005,205,0.6000000000000001 +2020,3,10,18,0,25.900000000000002,1.33,0.2162,0.6,0,0,0,3,25.200000000000003,0,0,0,0,0.247,95.9,170.88,0.14,990,5.6000000000000005,107,0.7000000000000001 +2020,3,10,19,0,25.5,1.33,0.2331,0.6,0,0,0,3,25,0,0,0,0,0.248,97.14,155.91,0.14,990,5.5,97,0.8 +2020,3,10,20,0,25.3,1.31,0.23140000000000002,0.6,0,0,0,3,24.8,0,0,0,0,0.248,97.34,140.94,0.14,990,5.5,90,0.8 +2020,3,10,21,0,25.1,1.29,0.24100000000000002,0.6,0,0,0,3,24.700000000000003,0,0,0,0,0.249,97.78,125.97,0.14,990,5.4,81,0.8 +2020,3,10,22,0,25,1.28,0.23620000000000002,0.6,0,0,0,3,24.6,0,0,0,0,0.25,97.88,111.01,0.14,991,5.4,55,0.9 +2020,3,10,23,0,25.3,1.28,0.21350000000000002,0.6,0,0,0,1,24.8,0,0,0,0,0.25,97.13,96.05,0.14,992,5.300000000000001,27,1 +2020,3,11,0,0,26.400000000000002,1.29,0.1963,0.6,55,273,98,7,25.200000000000003,46,0,3,46,0.251,93.02,81.01,0.14,992,5.2,21,1.4000000000000001 +2020,3,11,1,0,27.5,1.32,0.16540000000000002,0.6,100,607,345,6,25.400000000000002,16,0,0,16,0.252,88.53,66.14,0.14,993,5,21,1.5 +2020,3,11,2,0,28.900000000000002,1.35,0.13920000000000002,0.6,115,770,597,3,25.5,274,313,0,470,0.252,82,51.26,0.14,993,4.9,19,1.6 +2020,3,11,3,0,30,1.45,0.2773,0.6,184,747,784,0,25.400000000000002,184,747,0,784,0.252,76.43,36.46,0.14,993,4.800000000000001,21,1.6 +2020,3,11,4,0,30.900000000000002,1.45,0.2444,0.6,182,812,935,0,25.3,182,812,0,935,0.252,72.02,21.91,0.14,992,4.7,23,1.6 +2020,3,11,5,0,31.6,1.46,0.2343,0.6,183,836,1009,0,25.1,183,836,0,1009,0.252,68.58,8.96,0.14,991,4.7,23,1.5 +2020,3,11,6,0,32,1.47,0.24880000000000002,0.6,188,826,998,0,24.900000000000002,188,826,0,998,0.252,66.19,11.39,0.14,990,4.7,24,1.5 +2020,3,11,7,0,31.900000000000002,1.47,0.2515,0.6,182,801,908,2,24.700000000000003,437,345,0,749,0.252,65.72,25.07,0.14,990,4.7,26,1.6 +2020,3,11,8,0,31.700000000000003,1.48,0.2434,0.6,166,756,748,8,24.5,255,604,0,720,0.252,65.82000000000001,39.71,0.14,989,4.7,27,1.6 +2020,3,11,9,0,31.200000000000003,1.49,0.24230000000000002,0.6,143,667,530,6,24.900000000000002,61,0,0,61,0.253,69.21000000000001,54.54,0.14,989,4.7,25,1.5 +2020,3,11,10,0,30.200000000000003,1.5,0.23620000000000002,0.6,103,503,280,7,24.8,142,191,0,209,0.253,73.02,69.42,0.14,990,4.7,27,1.4000000000000001 +2020,3,11,11,0,28.1,1.51,0.2237,0.6,35,165,52,7,25.3,25,0,3,25,0.253,84.81,84.26,0.14,991,4.7,13,1.1 +2020,3,11,12,0,27.200000000000003,1.52,0.2165,0.6,0,0,0,7,25,0,0,0,0,0.254,87.99,99.35000000000001,0.14,992,4.6000000000000005,359,1.1 +2020,3,11,13,0,26.6,1.52,0.2117,0.6,0,0,0,6,24.900000000000002,0,0,0,0,0.254,90.4,114.31,0.14,992,4.6000000000000005,359,1.1 +2020,3,11,14,0,26.200000000000003,1.51,0.20980000000000001,0.6,0,0,0,7,24.8,0,0,0,0,0.255,91.86,129.28,0.14,993,4.5,6,1 +2020,3,11,15,0,25.8,1.51,0.21100000000000002,0.6,0,0,0,3,24.6,0,0,0,0,0.255,93.04,144.25,0.14,993,4.4,17,1 +2020,3,11,16,0,25.400000000000002,1.51,0.21480000000000002,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.255,94.08,159.23,0.14,993,4.4,27,0.9 +2020,3,11,17,0,25,1.52,0.2194,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.255,95.23,174.20000000000002,0.14,993,4.3,33,0.9 +2020,3,11,18,0,24.6,1.52,0.22340000000000002,0.6,0,0,0,0,24,0,0,0,0,0.255,96.29,170.82,0.14,992,4.2,34,0.8 +2020,3,11,19,0,24.3,1.53,0.2257,0.6,0,0,0,0,23.8,0,0,0,0,0.255,96.86,155.84,0.14,992,4.2,32,0.8 +2020,3,11,20,0,23.900000000000002,1.53,0.2257,0.6,0,0,0,0,23.5,0,0,0,0,0.255,97.82000000000001,140.87,0.14,991,4.1000000000000005,30,0.8 +2020,3,11,21,0,23.6,1.54,0.2265,0.6,0,0,0,0,23.3,0,0,0,0,0.255,98.45,125.89,0.14,992,4.1000000000000005,29,0.8 +2020,3,11,22,0,23.400000000000002,1.55,0.226,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.256,98.58,110.92,0.14,992,4.1000000000000005,30,0.8 +2020,3,11,23,0,23.900000000000002,1.56,0.22460000000000002,0.6,0,0,0,0,23.5,0,0,0,0,0.256,97.58,95.96000000000001,0.14,993,4.2,30,0.9 +2020,3,12,0,0,25.5,1.58,0.22260000000000002,0.6,54,275,98,0,24.3,54,275,0,98,0.256,92.92,80.91,0.14,993,4.2,28,1.6 +2020,3,12,1,0,27.1,1.61,0.21960000000000002,0.6,109,572,342,0,24.200000000000003,109,572,0,342,0.256,84.4,66.03,0.14,994,4.3,29,1.8 +2020,3,12,2,0,29,1.62,0.2217,0.6,140,712,587,0,23.900000000000002,140,712,0,587,0.254,74.03,51.15,0.14,994,4.4,26,1.7000000000000002 +2020,3,12,3,0,30.3,1.6300000000000001,0.2576,0.6,172,765,789,3,23.8,395,259,0,603,0.254,68.1,36.32,0.14,994,4.5,24,1.6 +2020,3,12,4,0,31.200000000000003,1.6300000000000001,0.2691,0.6,188,801,932,0,23.8,188,801,0,932,0.253,64.99,21.73,0.14,994,4.6000000000000005,21,1.5 +2020,3,12,5,0,31.700000000000003,1.61,0.28400000000000003,0.6,200,810,1001,3,23.900000000000002,521,232,0,750,0.254,63.59,8.620000000000001,0.14,993,4.6000000000000005,16,1.5 +2020,3,12,6,0,31.900000000000002,1.67,0.4423,0.6,258,726,970,0,24,258,726,0,970,0.254,63.230000000000004,11.22,0.14,991,4.7,10,1.5 +2020,3,12,7,0,31.700000000000003,1.6600000000000001,0.45780000000000004,0.6,252,690,878,3,24.1,470,160,0,615,0.255,64.29,25.04,0.14,991,4.9,11,1.5 +2020,3,12,8,0,31.3,1.6500000000000001,0.45220000000000005,0.6,229,635,718,1,24.200000000000003,229,635,0,718,0.255,65.96000000000001,39.71,0.14,990,5,16,1.4000000000000001 +2020,3,12,9,0,30.900000000000002,1.6400000000000001,0.44570000000000004,0.6,192,538,504,6,24.700000000000003,263,105,0,324,0.256,69.65,54.56,0.14,991,5.2,24,1.3 +2020,3,12,10,0,29.700000000000003,1.6400000000000001,0.4325,0.6,132,373,263,6,24.5,58,0,0,58,0.257,73.76,69.45,0.14,991,5.300000000000001,35,1.2000000000000002 +2020,3,12,11,0,28,1.6400000000000001,0.42760000000000004,0.6,35,91,44,7,25.400000000000002,33,17,3,35,0.259,85.92,84.3,0.14,992,5.4,48,0.8 +2020,3,12,12,0,27.400000000000002,1.6400000000000001,0.41700000000000004,0.6,0,0,0,8,25.3,0,0,0,0,0.261,88.10000000000001,99.39,0.14,993,5.5,59,0.8 +2020,3,12,13,0,26.8,1.6300000000000001,0.4015,0.6,0,0,0,3,25.1,0,0,0,0,0.262,90.33,114.36,0.14,993,5.5,66,0.7000000000000001 +2020,3,12,14,0,26.400000000000002,1.61,0.3846,0.6,0,0,0,0,24.900000000000002,0,0,0,0,0.262,91.72,129.33,0.14,994,5.5,66,0.7000000000000001 +2020,3,12,15,0,26,1.59,0.3695,0.6,0,0,0,7,24.8,0,0,0,0,0.263,93.02,144.31,0.14,994,5.5,62,0.7000000000000001 +2020,3,12,16,0,25.700000000000003,1.56,0.3577,0.6,0,0,0,8,24.700000000000003,0,0,0,0,0.264,94.01,159.29,0.14,994,5.4,58,0.7000000000000001 +2020,3,12,17,0,25.200000000000003,1.54,0.33340000000000003,0.6,0,0,0,3,24.5,0,0,0,0,0.264,95.79,174.26,0.14,993,5.300000000000001,52,0.7000000000000001 +2020,3,12,18,0,24.8,1.53,0.305,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.263,96.36,170.75,0.14,992,5.1000000000000005,46,0.7000000000000001 +2020,3,12,19,0,24.3,1.52,0.2807,0.6,0,0,0,0,23.8,0,0,0,0,0.262,97.22,155.77,0.14,992,4.9,43,0.7000000000000001 +2020,3,12,20,0,24,1.52,0.2615,0.6,0,0,0,0,23.5,0,0,0,0,0.261,97.23,140.79,0.14,992,4.7,39,0.7000000000000001 +2020,3,12,21,0,23.8,1.51,0.251,0.6,0,0,0,0,23.3,0,0,0,0,0.261,97.01,125.81,0.14,992,4.6000000000000005,38,0.6000000000000001 +2020,3,12,22,0,23.6,1.51,0.2424,0.6,0,0,0,0,23.1,0,0,0,0,0.261,97.15,110.84,0.14,993,4.7,38,0.6000000000000001 +2020,3,12,23,0,24,1.52,0.22690000000000002,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.26,96.33,95.87,0.14,993,4.7,33,0.8 +2020,3,13,0,0,25.5,1.54,0.2159,0.6,55,277,99,0,24,55,277,0,99,0.259,91.37,80.82000000000001,0.14,994,4.7,32,1.3 +2020,3,13,1,0,27.5,1.56,0.2129,0.6,108,573,342,1,23.8,108,573,0,342,0.258,80.07000000000001,65.93,0.14,995,4.800000000000001,40,1.5 +2020,3,13,2,0,29.200000000000003,1.58,0.19690000000000002,0.6,133,727,590,0,23.3,133,727,0,590,0.258,70.7,51.03,0.14,995,4.800000000000001,44,1.4000000000000001 +2020,3,13,3,0,30.5,1.56,0.24580000000000002,0.6,170,769,790,0,23.3,170,769,0,790,0.259,65.58,36.19,0.14,995,4.800000000000001,45,1.3 +2020,3,13,4,0,31.400000000000002,1.57,0.2343,0.6,177,818,937,3,23.3,480,124,0,595,0.259,62.33,21.55,0.14,994,4.9,49,1.2000000000000002 +2020,3,13,5,0,32,1.56,0.2278,0.6,179,838,1009,1,23.3,179,838,0,1009,0.258,60.15,8.28,0.14,992,5,55,1.1 +2020,3,13,6,0,32.2,1.54,0.2308,0.6,180,833,998,3,23.5,520,199,0,715,0.257,60.26,11.05,0.14,991,5.1000000000000005,59,1.2000000000000002 +2020,3,13,7,0,32.1,1.51,0.2351,0.6,176,807,908,0,23.700000000000003,176,807,0,908,0.256,61.370000000000005,25.01,0.14,990,5.2,66,1.2000000000000002 +2020,3,13,8,0,31.700000000000003,1.48,0.2401,0.6,167,753,746,3,24,381,174,0,515,0.255,63.730000000000004,39.72,0.14,990,5.300000000000001,75,1.3 +2020,3,13,9,0,31.200000000000003,1.46,0.24300000000000002,0.6,145,659,528,0,24.6,145,659,0,528,0.255,67.87,54.58,0.14,990,5.4,80,1.3 +2020,3,13,10,0,30,1.43,0.24600000000000002,0.6,109,486,279,0,24.6,109,486,0,279,0.255,72.79,69.49,0.14,990,5.300000000000001,82,1.2000000000000002 +2020,3,13,11,0,28.3,1.41,0.2437,0.6,37,143,51,0,25.400000000000002,37,143,0,51,0.256,84.49,84.34,0.14,991,5.300000000000001,86,0.8 +2020,3,13,12,0,27.700000000000003,1.3900000000000001,0.2361,0.6,0,0,0,0,25.400000000000002,0,0,0,0,0.257,87.56,99.44,0.14,992,5.2,89,0.8 +2020,3,13,13,0,27.1,1.37,0.2248,0.6,0,0,0,0,25.3,0,0,0,0,0.258,89.99,114.41,0.14,992,5.2,87,0.7000000000000001 +2020,3,13,14,0,26.700000000000003,1.35,0.2126,0.6,0,0,0,0,25,0,0,0,0,0.26,90.68,129.39000000000001,0.14,993,5.1000000000000005,82,0.7000000000000001 +2020,3,13,15,0,26.3,1.33,0.20070000000000002,0.6,0,0,0,0,24.900000000000002,0,0,0,0,0.26,92.10000000000001,144.37,0.14,993,5,78,0.6000000000000001 +2020,3,13,16,0,25.900000000000002,1.3,0.1885,0.6,0,0,0,1,24.700000000000003,0,0,0,0,0.258,92.95,159.34,0.14,993,4.9,74,0.7000000000000001 +2020,3,13,17,0,25.400000000000002,1.28,0.1776,0.6,0,0,0,1,24.5,0,0,0,0,0.256,94.82000000000001,174.29,0.14,992,4.800000000000001,72,0.7000000000000001 +2020,3,13,18,0,25,1.27,0.1686,0.6,0,0,0,0,24.3,0,0,0,0,0.254,95.94,170.65,0.14,991,4.800000000000001,71,0.8 +2020,3,13,19,0,24.700000000000003,1.27,0.15860000000000002,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.253,96.81,155.69,0.14,991,4.7,68,0.8 +2020,3,13,20,0,24.5,1.28,0.1457,0.6,0,0,0,0,24,0,0,0,0,0.253,97.08,140.71,0.14,991,4.6000000000000005,66,0.9 +2020,3,13,21,0,24.200000000000003,1.29,0.1351,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.253,98.06,125.73,0.14,991,4.6000000000000005,63,0.9 +2020,3,13,22,0,24,1.31,0.1274,0.6,0,0,0,0,23.8,0,0,0,0,0.253,98.53,110.75,0.14,991,4.6000000000000005,60,1 +2020,3,13,23,0,24.5,1.33,0.1183,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.254,96.45,95.78,0.14,992,4.7,57,1.2000000000000002 +2020,3,14,0,0,26,1.36,0.1076,0.6,48,385,110,0,24.200000000000003,48,385,0,110,0.255,89.71000000000001,80.73,0.12,992,4.7,55,2 +2020,3,14,1,0,27.5,1.3900000000000001,0.09620000000000001,0.6,80,688,362,0,24.3,80,688,0,362,0.255,82.84,65.83,0.12,993,4.7,58,2.3000000000000003 +2020,3,14,2,0,28.900000000000002,1.42,0.08950000000000001,0.6,96,818,612,0,24.400000000000002,96,818,0,612,0.256,76.54,50.92,0.12,993,4.7,62,2.3000000000000003 +2020,3,14,3,0,29.900000000000002,1.42,0.10840000000000001,0.6,116,866,816,0,24.400000000000002,116,866,0,816,0.256,72.54,36.06,0.12,993,4.800000000000001,69,2.2 +2020,3,14,4,0,30.700000000000003,1.41,0.10250000000000001,0.6,120,904,961,8,24.5,477,256,0,715,0.255,69.46000000000001,21.38,0.12,992,4.9,77,2.1 +2020,3,14,5,0,31.1,1.4000000000000001,0.1,0.6,122,918,1031,3,24.5,452,436,3,884,0.253,68.01,7.95,0.12,991,5.1000000000000005,81,2 +2020,3,14,6,0,31,1.42,0.2053,0.6,171,847,1002,3,24.5,519,147,0,663,0.253,68.34,10.9,0.12,990,5.2,83,2 +2020,3,14,7,0,30.8,1.41,0.20850000000000002,0.6,166,821,910,8,24.5,398,421,0,780,0.253,69.11,24.98,0.12,989,5.4,83,2 +2020,3,14,8,0,30.400000000000002,1.42,0.20980000000000001,0.6,154,771,748,0,24.6,154,771,0,748,0.254,71.36,39.730000000000004,0.12,989,5.5,84,1.9000000000000001 +2020,3,14,9,0,29.6,1.43,0.2157,0.6,136,679,529,0,24.900000000000002,136,679,0,529,0.255,75.82000000000001,54.61,0.12,989,5.5,85,1.7000000000000002 +2020,3,14,10,0,28.5,1.45,0.21480000000000002,0.6,101,512,280,0,25.200000000000003,101,512,0,280,0.256,82.32000000000001,69.53,0.12,989,5.5,87,1.3 +2020,3,14,11,0,27.3,1.46,0.2111,0.6,35,163,51,0,25.3,35,163,0,51,0.257,88.87,84.39,0.12,990,5.5,90,0.9 +2020,3,14,12,0,26.700000000000003,1.46,0.2091,0.6,0,0,0,0,25.1,0,0,0,0,0.258,91.15,99.49000000000001,0.12,991,5.4,92,1 +2020,3,14,13,0,26.3,1.46,0.2088,0.6,0,0,0,8,25,0,0,0,0,0.259,92.58,114.47,0.12,992,5.300000000000001,93,1 +2020,3,14,14,0,25.900000000000002,1.46,0.2063,0.6,0,0,0,0,24.8,0,0,0,0,0.26,93.94,129.44,0.12,992,5.2,91,1 +2020,3,14,15,0,25.5,1.47,0.2015,0.6,0,0,0,0,24.700000000000003,0,0,0,0,0.26,95.10000000000001,144.42000000000002,0.12,992,5.1000000000000005,86,1 +2020,3,14,16,0,25.1,1.47,0.19690000000000002,0.6,0,0,0,8,24.5,0,0,0,0,0.261,96.21000000000001,159.39000000000001,0.12,992,5.1000000000000005,79,1.1 +2020,3,14,17,0,24.8,1.46,0.1932,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.261,96.75,174.3,0.12,991,5,71,1.1 +2020,3,14,18,0,24.6,1.45,0.191,0.6,0,0,0,0,24.1,0,0,0,0,0.261,96.94,170.54,0.12,990,5,62,1.1 +2020,3,14,19,0,24.400000000000002,1.44,0.1882,0.6,0,0,0,3,24,0,0,0,0,0.261,97.46000000000001,155.6,0.12,990,5,55,1.2000000000000002 +2020,3,14,20,0,24.3,1.43,0.1799,0.6,0,0,0,3,23.900000000000002,0,0,0,0,0.26,97.52,140.62,0.12,990,4.9,49,1.2000000000000002 +2020,3,14,21,0,24.200000000000003,1.43,0.1739,0.6,0,0,0,0,23.8,0,0,0,0,0.26,97.72,125.64,0.12,990,4.9,46,1.2000000000000002 +2020,3,14,22,0,24.1,1.44,0.1671,0.6,0,0,0,0,23.8,0,0,0,0,0.26,98.07000000000001,110.67,0.12,990,5,45,1.2000000000000002 +2020,3,14,23,0,24.5,1.44,0.15760000000000002,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.258,96.67,95.69,0.12,991,5,46,1.3 +2020,3,15,0,0,25.8,1.46,0.1504,0.6,52,337,107,0,24.400000000000002,52,337,0,107,0.258,91.97,80.63,0.12,992,5.1000000000000005,50,2 +2020,3,15,1,0,27.1,1.48,0.1424,0.6,93,636,355,0,24.700000000000003,93,636,0,355,0.257,86.88,65.73,0.12,992,5.2,57,2.3000000000000003 +2020,3,15,2,0,28.400000000000002,1.49,0.1378,0.6,114,771,602,0,24.700000000000003,114,771,0,602,0.256,80.24,50.81,0.12,993,5.300000000000001,63,2.4000000000000004 +2020,3,15,3,0,29.3,1.5,0.1716,0.6,141,815,801,0,24.5,141,815,0,801,0.255,75.32000000000001,35.93,0.12,993,5.300000000000001,71,2.4000000000000004 +2020,3,15,4,0,30,1.49,0.165,0.6,148,858,947,8,24.400000000000002,420,403,0,796,0.255,71.84,21.21,0.12,992,5.300000000000001,78,2.3000000000000003 +2020,3,15,5,0,30.3,1.47,0.1598,0.6,150,877,1020,0,24.3,150,877,0,1020,0.255,70.51,7.63,0.12,991,5.300000000000001,82,2.3000000000000003 +2020,3,15,6,0,30.3,1.45,0.16970000000000002,0.6,154,868,1007,0,24.400000000000002,154,868,0,1007,0.254,70.68,10.77,0.12,990,5.300000000000001,83,2.3000000000000003 +2020,3,15,7,0,30.1,1.43,0.1645,0.6,147,850,917,8,24.400000000000002,470,192,0,644,0.254,71.54,24.97,0.12,989,5.4,85,2.3000000000000003 +2020,3,15,8,0,29.5,1.41,0.156,0.6,133,811,756,7,24.5,229,10,0,237,0.255,74.64,39.75,0.12,989,5.4,86,2.2 +2020,3,15,9,0,28.900000000000002,1.41,0.1464,0.6,113,736,539,6,24.8,35,0,0,35,0.256,78.67,54.65,0.12,989,5.4,84,2 +2020,3,15,10,0,27.900000000000002,1.43,0.133,0.6,82,592,289,6,25.1,14,0,0,14,0.257,84.59,69.57000000000001,0.12,989,5.4,80,1.6 +2020,3,15,11,0,26.6,1.43,0.1213,0.6,32,237,55,6,25,5,0,3,5,0.258,90.99,84.43,0.12,990,5.300000000000001,79,1.1 +2020,3,15,12,0,26.1,1.43,0.1126,0.6,0,0,0,6,24.8,0,0,0,0,0.26,92.66,99.54,0.12,991,5.300000000000001,77,1.1 +2020,3,15,13,0,25.700000000000003,1.43,0.1062,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.261,94.08,114.52,0.12,992,5.300000000000001,72,1.2000000000000002 +2020,3,15,14,0,25.3,1.42,0.1013,0.6,0,0,0,7,24.5,0,0,0,0,0.261,95.53,129.49,0.12,992,5.2,67,1.3 +2020,3,15,15,0,25.1,1.41,0.09820000000000001,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.26,96.13,144.47,0.12,993,5.2,65,1.3 +2020,3,15,16,0,24.8,1.41,0.0951,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.259,97.44,159.43,0.12,993,5.2,63,1.4000000000000001 +2020,3,15,17,0,24.6,1.42,0.0912,0.6,0,0,0,3,24.3,0,0,0,0,0.258,97.96000000000001,174.27,0.12,992,5.1000000000000005,60,1.4000000000000001 +2020,3,15,18,0,24.400000000000002,1.43,0.0898,0.6,0,0,0,3,24.1,0,0,0,0,0.257,98.32000000000001,170.42000000000002,0.12,991,5.1000000000000005,57,1.3 +2020,3,15,19,0,24.3,1.45,0.0883,0.6,0,0,0,0,24,0,0,0,0,0.257,98.36,155.5,0.12,991,5.1000000000000005,57,1.3 +2020,3,15,20,0,24.200000000000003,1.45,0.08420000000000001,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.256,98.44,140.53,0.12,991,5.1000000000000005,58,1.3 +2020,3,15,21,0,24.200000000000003,1.43,0.0853,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.256,98.10000000000001,125.56,0.12,991,5.1000000000000005,57,1.3 +2020,3,15,22,0,24.200000000000003,1.4000000000000001,0.0854,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.256,97.93,110.58,0.12,991,5.1000000000000005,56,1.3 +2020,3,15,23,0,24.5,1.35,0.0838,0.6,0,0,0,0,24.1,0,0,0,0,0.256,97.44,95.60000000000001,0.12,992,5.1000000000000005,56,1.3 +2020,3,16,0,0,25.6,1.31,0.0887,0.6,45,413,113,0,24.700000000000003,45,413,0,113,0.256,95.06,80.54,0.12,993,5,56,2.1 +2020,3,16,1,0,26.700000000000003,1.29,0.0887,0.6,78,694,365,0,25,78,694,0,365,0.257,90.42,65.63,0.12,994,5,58,2.8000000000000003 +2020,3,16,2,0,27.900000000000002,1.3,0.08600000000000001,0.6,95,818,613,0,24.700000000000003,95,818,0,613,0.258,82.68,50.7,0.12,994,5,60,2.9000000000000004 +2020,3,16,3,0,29,1.32,0.11620000000000001,0.6,119,857,814,0,24.3,119,857,0,814,0.257,75.92,35.81,0.12,994,4.9,63,2.9000000000000004 +2020,3,16,4,0,29.8,1.36,0.1169,0.6,127,893,961,0,24.1,127,893,0,961,0.258,71.5,21.05,0.12,993,4.800000000000001,66,2.8000000000000003 +2020,3,16,5,0,30.5,1.3900000000000001,0.1252,0.6,133,904,1029,0,23.900000000000002,133,904,0,1029,0.259,67.78,7.3100000000000005,0.12,992,4.7,69,2.6 +2020,3,16,6,0,30.900000000000002,1.41,0.13,0.6,136,898,1019,0,23.6,136,898,0,1019,0.258,65.14,10.65,0.12,991,4.7,73,2.3000000000000003 +2020,3,16,7,0,31,1.4000000000000001,0.1396,0.6,135,872,926,0,23.3,135,872,0,926,0.257,63.61,24.96,0.12,991,4.6000000000000005,74,2.2 +2020,3,16,8,0,30.6,1.37,0.1471,0.6,129,822,761,0,23.1,129,822,0,761,0.256,64.48,39.77,0.12,991,4.6000000000000005,75,2 +2020,3,16,9,0,30.1,1.31,0.15180000000000002,0.6,116,735,541,0,23.3,116,735,0,541,0.256,67.07000000000001,54.68,0.12,991,4.6000000000000005,76,1.7000000000000002 +2020,3,16,10,0,29,1.24,0.1544,0.6,90,568,288,0,23.6,90,568,0,288,0.256,72.7,69.61,0.12,991,4.7,75,1.4000000000000001 +2020,3,16,11,0,26.900000000000002,1.16,0.1522,0.6,35,192,54,0,24,35,192,0,54,0.256,84.23,84.48,0.12,992,4.7,76,0.9 +2020,3,16,12,0,26.1,1.1,0.14780000000000001,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.256,86.63,99.59,0.12,993,4.7,74,0.9 +2020,3,16,13,0,25.6,1.05,0.1422,0.6,0,0,0,0,23.5,0,0,0,0,0.257,88.17,114.57000000000001,0.12,993,4.7,70,1 +2020,3,16,14,0,25.1,1.01,0.1361,0.6,0,0,0,0,23.3,0,0,0,0,0.258,89.98,129.55,0.12,994,4.7,66,1.1 +2020,3,16,15,0,24.700000000000003,0.99,0.131,0.6,0,0,0,3,23.200000000000003,0,0,0,0,0.258,91.36,144.52,0.12,994,4.6000000000000005,63,1.1 +2020,3,16,16,0,24.200000000000003,0.98,0.13,0.6,0,0,0,1,23,0,0,0,0,0.258,93.3,159.47,0.12,994,4.6000000000000005,59,1.2000000000000002 +2020,3,16,17,0,23.8,0.98,0.1337,0.6,0,0,0,0,22.900000000000002,0,0,0,0,0.257,94.92,174.22,0.12,993,4.5,56,1.2000000000000002 +2020,3,16,18,0,23.400000000000002,1,0.14020000000000002,0.6,0,0,0,0,22.8,0,0,0,0,0.257,96.72,170.28,0.12,992,4.5,52,1.2000000000000002 +2020,3,16,19,0,23.200000000000003,1.04,0.14450000000000002,0.6,0,0,0,0,22.8,0,0,0,0,0.257,97.52,155.4,0.12,992,4.4,46,1.2000000000000002 +2020,3,16,20,0,23,1.1,0.1446,0.6,0,0,0,0,22.700000000000003,0,0,0,0,0.256,98.25,140.44,0.12,992,4.3,43,1.3 +2020,3,16,21,0,22.8,1.17,0.1414,0.6,0,0,0,0,22.6,0,0,0,0,0.256,98.56,125.46000000000001,0.12,992,4.2,42,1.4000000000000001 +2020,3,16,22,0,22.6,1.24,0.1386,0.6,0,0,0,3,22.400000000000002,0,0,0,0,0.256,98.89,110.49000000000001,0.12,992,4.1000000000000005,41,1.4000000000000001 +2020,3,16,23,0,23,1.3,0.1371,0.6,0,0,0,8,22.5,0,0,0,0,0.256,96.86,95.51,0.12,993,4,41,1.6 +2020,3,17,0,0,25,1.37,0.13240000000000002,0.6,51,368,112,7,22.900000000000002,60,145,3,84,0.257,88.28,80.44,0.12,993,4,44,2.7 +2020,3,17,1,0,26.8,1.44,0.1252,0.6,88,666,364,8,23.1,137,440,0,319,0.257,80.11,65.53,0.12,994,4,48,3.2 +2020,3,17,2,0,28.3,1.48,0.12430000000000001,0.6,109,795,614,0,23,109,795,0,614,0.256,73.11,50.59,0.12,995,4,52,3.3000000000000003 +2020,3,17,3,0,29.6,1.53,0.11810000000000001,0.6,119,865,821,7,22.900000000000002,382,322,0,644,0.255,67.33,35.69,0.12,994,4.2,53,3.1 +2020,3,17,4,0,30.400000000000002,1.54,0.1199,0.6,127,897,965,8,22.900000000000002,396,514,0,876,0.254,64.18,20.89,0.12,994,4.3,52,2.7 +2020,3,17,5,0,31,1.55,0.12250000000000001,0.6,131,909,1034,0,22.8,131,909,0,1034,0.254,61.72,7,0.12,993,4.4,51,2.3000000000000003 +2020,3,17,6,0,31.200000000000003,1.49,0.17200000000000001,0.6,155,872,1012,0,22.8,155,872,0,1012,0.254,60.910000000000004,10.540000000000001,0.12,992,4.6000000000000005,51,1.8 +2020,3,17,7,0,31.1,1.48,0.1738,0.6,150,848,919,8,22.700000000000003,377,507,0,837,0.255,61.17,24.95,0.12,991,4.7,54,1.5 +2020,3,17,8,0,30.8,1.46,0.1782,0.6,141,798,754,0,22.700000000000003,141,798,0,754,0.256,62.09,39.800000000000004,0.12,991,4.800000000000001,57,1.3 +2020,3,17,9,0,30.5,1.47,0.16590000000000002,0.6,118,722,535,0,23.1,118,722,0,535,0.256,64.71000000000001,54.72,0.12,991,4.9,55,1 +2020,3,17,10,0,29.5,1.49,0.151,0.6,86,574,286,0,23,86,574,0,286,0.257,67.99,69.66,0.12,991,5,50,0.9 +2020,3,17,11,0,27.8,1.49,0.1463,0.6,33,212,53,1,23.8,33,212,0,53,0.257,79.09,84.52,0.12,992,5,46,0.6000000000000001 +2020,3,17,12,0,27,1.48,0.1419,0.6,0,0,0,3,23.400000000000002,0,0,0,0,0.258,80.94,99.64,0.12,992,5.1000000000000005,47,0.7000000000000001 +2020,3,17,13,0,26.3,1.46,0.1414,0.6,0,0,0,0,23.3,0,0,0,0,0.259,83.66,114.62,0.12,993,5.1000000000000005,49,0.6000000000000001 +2020,3,17,14,0,25.8,1.43,0.1424,0.6,0,0,0,1,23.3,0,0,0,0,0.26,86.22,129.6,0.12,994,5.2,49,0.6000000000000001 +2020,3,17,15,0,25.3,1.41,0.1463,0.6,0,0,0,7,23.3,0,0,0,0,0.261,88.64,144.56,0.12,994,5.2,48,0.6000000000000001 +2020,3,17,16,0,24.900000000000002,1.3800000000000001,0.1527,0.6,0,0,0,7,23.3,0,0,0,0,0.261,90.7,159.5,0.12,994,5.2,42,0.6000000000000001 +2020,3,17,17,0,24.6,1.37,0.1585,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.261,92.13,174.15,0.12,993,5.2,33,0.6000000000000001 +2020,3,17,18,0,24.3,1.36,0.1613,0.6,0,0,0,3,23.200000000000003,0,0,0,0,0.261,93.51,170.12,0.12,992,5.1000000000000005,26,0.8 +2020,3,17,19,0,24.1,1.37,0.1598,0.6,0,0,0,0,23.1,0,0,0,0,0.26,94.39,155.29,0.12,991,5,24,1 +2020,3,17,20,0,23.900000000000002,1.3800000000000001,0.1574,0.6,0,0,0,1,23.1,0,0,0,0,0.259,95.35000000000001,140.34,0.12,991,5,26,1 +2020,3,17,21,0,23.8,1.3800000000000001,0.1583,0.6,0,0,0,3,23.1,0,0,0,0,0.258,95.68,125.37,0.12,991,5,25,1 +2020,3,17,22,0,23.700000000000003,1.3900000000000001,0.1625,0.6,0,0,0,1,23,0,0,0,0,0.258,96.06,110.39,0.12,991,5,23,1 +2020,3,17,23,0,24,1.3900000000000001,0.1668,0.6,0,0,0,3,23.200000000000003,0,0,0,0,0.257,95.46000000000001,95.41,0.12,992,5,21,1.1 +2020,3,18,0,0,25.1,1.3900000000000001,0.1744,0.6,56,318,109,3,23.5,59,170,3,88,0.257,90.76,80.35000000000001,0.12,992,5,22,1.9000000000000001 +2020,3,18,1,0,26.400000000000002,1.4000000000000001,0.1842,0.6,105,597,354,1,23.6,105,597,0,354,0.258,84.63,65.43,0.12,993,5.1000000000000005,20,2.1 +2020,3,18,2,0,28,1.3900000000000001,0.2018,0.6,138,718,595,0,23.700000000000003,138,718,0,595,0.258,77.60000000000001,50.49,0.12,994,5.2,14,2 +2020,3,18,3,0,29.200000000000003,1.43,0.3204,0.6,200,717,783,0,23.8,200,717,0,783,0.258,72.9,35.57,0.12,994,5.2,4,1.8 +2020,3,18,4,0,29.8,1.43,0.3115,0.6,210,766,926,0,24,210,766,0,926,0.259,70.92,20.740000000000002,0.12,993,5.300000000000001,357,1.7000000000000002 +2020,3,18,5,0,30.1,1.43,0.29760000000000003,0.6,210,792,997,3,24.1,464,386,0,847,0.26,70.13,6.7,0.12,992,5.4,352,1.7000000000000002 +2020,3,18,6,0,30.200000000000003,1.43,0.3624,0.6,235,754,976,7,24.1,496,311,0,801,0.26,69.99,10.450000000000001,0.12,991,5.4,346,1.6 +2020,3,18,7,0,30,1.43,0.3649,0.6,226,725,884,3,24.200000000000003,461,251,0,688,0.261,71.2,24.96,0.12,990,5.5,337,1.5 +2020,3,18,8,0,29.6,1.43,0.3562,0.6,206,675,724,3,24.3,380,172,0,511,0.262,73.24,39.83,0.12,990,5.5,328,1.4000000000000001 +2020,3,18,9,0,29,1.44,0.3587,0.6,176,575,508,6,24.6,30,0,0,30,0.262,77.06,54.76,0.12,990,5.6000000000000005,322,1.4000000000000001 +2020,3,18,10,0,28,1.45,0.3456,0.6,124,408,265,6,24.900000000000002,14,0,0,14,0.262,83.27,69.7,0.12,990,5.6000000000000005,319,1.2000000000000002 +2020,3,18,11,0,26.900000000000002,1.45,0.3302,0.6,35,100,44,7,25.200000000000003,5,0,3,5,0.262,90.54,84.57000000000001,0.12,991,5.7,322,0.9 +2020,3,18,12,0,26.5,1.44,0.3375,0.6,0,0,0,6,25.200000000000003,0,0,0,0,0.261,92.41,99.69,0.12,992,5.7,337,0.8 +2020,3,18,13,0,26.200000000000003,1.44,0.30970000000000003,0.6,0,0,0,7,25,0,0,0,0,0.261,93.31,114.67,0.12,992,5.7,357,0.8 +2020,3,18,14,0,25.900000000000002,1.43,0.2755,0.6,0,0,0,7,24.900000000000002,0,0,0,0,0.261,94.15,129.64000000000001,0.12,993,5.6000000000000005,13,0.9 +2020,3,18,15,0,25.6,1.41,0.2649,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.261,94.62,144.6,0.12,993,5.5,22,0.9 +2020,3,18,16,0,25.3,1.37,0.2444,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.261,94.92,159.52,0.12,993,5.5,29,0.9 +2020,3,18,17,0,24.900000000000002,1.33,0.22610000000000002,0.6,0,0,0,7,24.1,0,0,0,0,0.26,95.58,174.05,0.12,992,5.4,36,0.8 +2020,3,18,18,0,24.5,1.31,0.22970000000000002,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.259,96.18,169.95000000000002,0.12,991,5.300000000000001,43,0.8 +2020,3,18,19,0,24.200000000000003,1.29,0.22610000000000002,0.6,0,0,0,7,23.6,0,0,0,0,0.259,96.39,155.18,0.12,991,5.2,49,0.7000000000000001 +2020,3,18,20,0,23.8,1.28,0.21230000000000002,0.6,0,0,0,7,23.3,0,0,0,0,0.258,97.01,140.24,0.12,991,5.1000000000000005,50,0.7000000000000001 +2020,3,18,21,0,23.5,1.28,0.2088,0.6,0,0,0,8,23,0,0,0,0,0.259,97.22,125.27,0.12,991,4.9,43,0.7000000000000001 +2020,3,18,22,0,23.200000000000003,1.29,0.19970000000000002,0.6,0,0,0,8,22.8,0,0,0,0,0.259,97.46000000000001,110.3,0.12,992,4.800000000000001,36,0.8 +2020,3,18,23,0,23.3,1.31,0.1841,0.6,0,0,0,3,22.700000000000003,0,0,0,0,0.259,96.46000000000001,95.32000000000001,0.12,992,4.6000000000000005,34,1.1 +2020,3,19,0,0,24,1.33,0.1739,0.6,55,321,110,7,22.900000000000002,47,0,3,47,0.26,93.67,80.25,0.12,993,4.5,37,1.7000000000000002 +2020,3,19,1,0,25.1,1.3800000000000001,0.1598,0.6,98,627,360,8,22.900000000000002,173,210,0,261,0.26,87.55,65.33,0.12,994,4.3,40,2 +2020,3,19,2,0,26.700000000000003,1.43,0.14750000000000002,0.6,117,772,609,1,22.400000000000002,117,772,0,609,0.26,77.42,50.38,0.12,994,4.2,39,2.1 +2020,3,19,3,0,28.200000000000003,1.45,0.12090000000000001,0.6,120,863,822,7,22.1,408,186,0,559,0.26,69.72,35.45,0.12,994,4.1000000000000005,32,1.8 +2020,3,19,4,0,29.3,1.48,0.1197,0.6,126,900,969,1,21.8,126,900,0,969,0.26,64.06,20.59,0.12,993,4,23,1.5 +2020,3,19,5,0,29.900000000000002,1.5,0.1221,0.6,131,913,1038,7,21.5,513,273,0,785,0.259,60.92,6.41,0.12,992,4,14,1.4000000000000001 +2020,3,19,6,0,30.200000000000003,1.56,0.1947,0.6,162,864,1012,6,21.5,471,59,0,529,0.258,59.660000000000004,10.370000000000001,0.12,991,4,7,1.3 +2020,3,19,7,0,30.1,1.56,0.20350000000000001,0.6,160,836,918,6,21.5,384,35,0,416,0.258,60.18,24.97,0.12,990,4,1,1.3 +2020,3,19,8,0,29.8,1.56,0.21050000000000002,0.6,150,783,752,7,21.700000000000003,319,36,0,346,0.258,61.77,39.86,0.12,990,4,359,1.2000000000000002 +2020,3,19,9,0,29.5,1.56,0.21910000000000002,0.6,133,688,529,7,22.200000000000003,260,103,0,319,0.258,64.91,54.800000000000004,0.12,990,4,358,1.1 +2020,3,19,10,0,28.5,1.58,0.22390000000000002,0.6,99,515,277,8,22.3,104,461,0,264,0.259,69.32000000000001,69.75,0.12,990,4,356,1 +2020,3,19,11,0,26.5,1.6,0.21860000000000002,0.6,32,165,48,7,23,32,165,5,48,0.26,80.89,84.62,0.12,991,4,351,0.8 +2020,3,19,12,0,25.8,1.62,0.2152,0.6,0,0,0,8,22.5,0,0,0,0,0.26,82.23,99.74000000000001,0.12,992,4,350,0.9 +2020,3,19,13,0,25.3,1.6400000000000001,0.21450000000000002,0.6,0,0,0,3,22.3,0,0,0,0,0.261,83.52,114.72,0.12,993,4,356,0.9 +2020,3,19,14,0,24.900000000000002,1.6400000000000001,0.21710000000000002,0.6,0,0,0,7,22,0,0,0,0,0.261,84.01,129.69,0.12,993,4.1000000000000005,5,0.8 +2020,3,19,15,0,24.5,1.6500000000000001,0.2225,0.6,0,0,0,0,21.700000000000003,0,0,0,0,0.261,84.58,144.64000000000001,0.12,993,4.1000000000000005,15,0.8 +2020,3,19,16,0,23.900000000000002,1.6400000000000001,0.22990000000000002,0.6,0,0,0,0,21.5,0,0,0,0,0.261,86.54,159.54,0.12,993,4.2,23,0.8 +2020,3,19,17,0,23.3,1.6400000000000001,0.2368,0.6,0,0,0,0,21.3,0,0,0,0,0.26,88.74,173.92000000000002,0.12,993,4.2,28,0.7000000000000001 +2020,3,19,18,0,22.8,1.6300000000000001,0.2421,0.6,0,0,0,8,21.1,0,0,0,0,0.259,90.11,169.77,0.12,992,4.2,30,0.7000000000000001 +2020,3,19,19,0,22.3,1.62,0.24750000000000003,0.6,0,0,0,0,20.8,0,0,0,0,0.259,91.37,155.06,0.12,991,4.3,30,0.8 +2020,3,19,20,0,22,1.61,0.251,0.6,0,0,0,0,20.6,0,0,0,0,0.259,91.93,140.13,0.12,991,4.3,33,0.8 +2020,3,19,21,0,21.700000000000003,1.6,0.25420000000000004,0.6,0,0,0,0,20.5,0,0,0,0,0.259,93.02,125.17,0.12,992,4.3,39,0.9 +2020,3,19,22,0,21.6,1.58,0.25780000000000003,0.6,0,0,0,7,20.5,0,0,0,0,0.26,93.32000000000001,110.2,0.12,992,4.4,46,0.9 +2020,3,19,23,0,22,1.56,0.2594,0.6,0,0,0,7,20.900000000000002,0,0,0,0,0.261,93.31,95.22,0.12,993,4.4,52,1.1 +2020,3,20,0,0,23.5,1.55,0.2594,0.6,62,264,107,7,21.6,58,234,3,98,0.261,88.93,80.16,0.12,993,4.5,57,1.8 +2020,3,20,1,0,25.3,1.54,0.2564,0.6,121,545,350,8,22.200000000000003,152,365,0,305,0.261,82.97,65.23,0.12,994,4.6000000000000005,65,1.8 +2020,3,20,2,0,27.6,1.56,0.2504,0.6,152,691,594,0,22.1,152,691,0,594,0.261,72.21000000000001,50.28,0.12,994,4.6000000000000005,63,1.4000000000000001 +2020,3,20,3,0,29.3,1.62,0.44970000000000004,0.6,237,655,772,0,22,237,655,0,772,0.261,64.77,35.33,0.12,994,4.7,46,0.9 +2020,3,20,4,0,30.5,1.61,0.45420000000000005,0.6,257,700,912,0,22,257,700,0,912,0.261,60.44,20.45,0.12,993,4.7,9,0.5 +2020,3,20,5,0,31.3,1.61,0.4622,0.6,267,716,979,8,22,515,265,0,779,0.261,57.99,6.13,0.12,992,4.7,337,0.5 +2020,3,20,6,0,31.6,1.62,0.4938,0.6,279,698,965,8,22.1,445,441,0,879,0.261,57.33,10.31,0.12,991,4.800000000000001,325,0.7000000000000001 +2020,3,20,7,0,31.6,1.61,0.5026,0.6,270,665,873,3,22.200000000000003,468,150,0,604,0.262,57.69,24.990000000000002,0.12,990,4.800000000000001,322,0.8 +2020,3,20,8,0,31.3,1.61,0.5142,0.6,250,600,710,3,22.400000000000002,351,333,0,607,0.262,59.09,39.9,0.12,990,4.9,323,0.9 +2020,3,20,9,0,31,1.61,0.5141,0.6,210,498,496,3,22.900000000000002,242,325,0,429,0.262,61.940000000000005,54.85,0.12,990,4.9,324,0.8 +2020,3,20,10,0,30,1.61,0.5229,0.6,143,323,255,8,22.6,140,96,0,173,0.262,64.55,69.8,0.12,990,4.9,332,0.7000000000000001 +2020,3,20,11,0,28.400000000000002,1.61,0.5323,0.6,31,63,37,8,23.400000000000002,31,5,3,31,0.262,74.58,84.67,0.12,991,4.9,11,0.5 +2020,3,20,12,0,27.5,1.6,0.5281,0.6,0,0,0,6,23.6,0,0,0,0,0.262,79.33,99.79,0.12,991,4.9,79,0.6000000000000001 +2020,3,20,13,0,26.5,1.6,0.5055000000000001,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.261,84.79,114.77,0.12,992,4.9,84,0.7000000000000001 +2020,3,20,14,0,25.8,1.58,0.4808,0.6,0,0,0,3,23.6,0,0,1,0,0.259,87.48,129.73,0.12,992,4.9,84,0.8 +2020,3,20,15,0,25.200000000000003,1.56,0.46380000000000005,0.6,0,0,0,0,23.5,0,0,0,0,0.258,90.07000000000001,144.68,0.12,993,4.9,84,0.8 +2020,3,20,16,0,24.700000000000003,1.52,0.463,0.6,0,0,0,0,23.3,0,0,0,0,0.257,92.12,159.54,0.12,993,5,82,0.8 +2020,3,20,17,0,24.3,1.5,0.4641,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.257,93.65,173.77,0.12,993,5,77,0.7000000000000001 +2020,3,20,18,0,23.900000000000002,1.47,0.4586,0.6,0,0,0,0,23,0,0,0,0,0.256,94.99,169.57,0.12,992,5,71,0.7000000000000001 +2020,3,20,19,0,23.6,1.46,0.4439,0.6,0,0,0,0,22.900000000000002,0,0,0,0,0.257,95.89,154.93,0.12,992,5,62,0.7000000000000001 +2020,3,20,20,0,23.3,1.45,0.42800000000000005,0.6,0,0,0,0,22.700000000000003,0,0,0,0,0.257,96.7,140.03,0.12,992,5,54,0.7000000000000001 +2020,3,20,21,0,23.1,1.44,0.4252,0.6,0,0,0,0,22.6,0,0,0,0,0.257,97.04,125.07000000000001,0.12,992,5,48,0.7000000000000001 +2020,3,20,22,0,23,1.43,0.42960000000000004,0.6,0,0,0,0,22.5,0,0,0,0,0.257,97,110.10000000000001,0.12,992,5.1000000000000005,45,0.8 +2020,3,20,23,0,23.400000000000002,1.42,0.432,0.6,0,0,0,0,22.6,0,0,0,0,0.256,95.41,95.13,0.12,993,5.1000000000000005,43,1 +2020,3,21,0,0,25,1.42,0.43570000000000003,0.6,72,164,100,0,22.900000000000002,72,164,0,100,0.256,87.98,80.06,0.12,993,5.2,46,1.7000000000000002 +2020,3,21,1,0,26.700000000000003,1.42,0.4349,0.6,160,418,336,3,23.1,169,51,3,190,0.256,80.82000000000001,65.13,0.12,994,5.300000000000001,49,1.7000000000000002 +2020,3,21,2,0,28.3,1.42,0.40900000000000003,0.6,204,581,576,3,23.400000000000002,230,18,0,241,0.257,74.9,50.18,0.12,994,5.300000000000001,46,1.4000000000000001 +2020,3,21,3,0,29.400000000000002,1.43,0.4284,0.6,238,655,774,3,23.700000000000003,315,25,0,336,0.257,71.43,35.22,0.12,994,5.4,41,1.2000000000000002 +2020,3,21,4,0,30.200000000000003,1.42,0.4258,0.6,255,703,914,1,23.8,255,703,0,914,0.257,68.76,20.32,0.12,993,5.5,33,0.9 +2020,3,21,5,0,30.700000000000003,1.42,0.42060000000000003,0.6,261,725,982,3,23.8,433,37,0,470,0.257,66.73,5.86,0.12,992,5.6000000000000005,17,0.8 +2020,3,21,6,0,30.900000000000002,1.43,0.5082,0.6,290,679,959,8,23.700000000000003,517,134,0,649,0.256,65.76,10.26,0.12,991,5.7,354,0.9 +2020,3,21,7,0,30.6,1.44,0.5135000000000001,0.6,280,648,867,6,23.8,305,18,0,321,0.256,67.15,25.01,0.12,990,5.800000000000001,335,1 +2020,3,21,8,0,30.200000000000003,1.45,0.5178,0.6,257,586,706,6,24.200000000000003,55,0,0,55,0.256,70.41,39.94,0.12,990,5.9,325,1.1 +2020,3,21,9,0,29.400000000000002,1.45,0.5568000000000001,0.6,224,464,491,9,24.6,30,0,0,30,0.255,75.53,54.89,0.12,990,6,318,1 +2020,3,21,10,0,28.3,1.46,0.5727,0.6,152,287,251,6,24.700000000000003,36,0,0,36,0.254,80.96000000000001,69.85000000000001,0.12,990,6.1000000000000005,321,0.9 +2020,3,21,11,0,27.200000000000003,1.45,0.6203000000000001,0.6,30,42,34,7,24.8,17,0,3,17,0.254,86.71000000000001,84.72,0.12,991,6.300000000000001,325,0.6000000000000001 +2020,3,21,12,0,26.6,1.44,0.7013,0.6,0,0,0,7,25,0,0,0,0,0.254,91.08,99.85000000000001,0.12,992,6.300000000000001,61,0.4 +2020,3,21,13,0,26.200000000000003,1.44,0.7489,0.6,0,0,0,6,24.900000000000002,0,0,0,0,0.255,92.63,114.82000000000001,0.12,992,6.4,81,0.6000000000000001 +2020,3,21,14,0,25.900000000000002,1.42,0.7481,0.6,0,0,0,7,24.8,0,0,1,0,0.255,93.56,129.78,0.12,993,6.5,90,0.6000000000000001 +2020,3,21,15,0,25.8,1.3900000000000001,0.6843,0.6,0,0,0,6,24.6,0,0,0,0,0.255,93.05,144.71,0.12,993,6.5,109,0.5 +2020,3,21,16,0,25.6,1.37,0.5750000000000001,0.6,0,0,0,6,24.5,0,0,0,0,0.254,93.61,159.55,0.12,993,6.5,129,0.4 +2020,3,21,17,0,25.3,1.36,0.48910000000000003,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.254,94.95,173.6,0.12,992,6.5,133,0.4 +2020,3,21,18,0,24.900000000000002,1.3800000000000001,0.44620000000000004,0.6,0,0,0,7,24.3,0,0,0,0,0.253,96.27,169.36,0.12,992,6.4,133,0.5 +2020,3,21,19,0,24.6,1.3900000000000001,0.42410000000000003,0.6,0,0,0,3,24.1,0,0,0,0,0.252,96.79,154.8,0.12,991,6.300000000000001,136,0.6000000000000001 +2020,3,21,20,0,24.400000000000002,1.4000000000000001,0.4021,0.6,0,0,0,3,23.900000000000002,0,0,0,0,0.252,96.88,139.91,0.12,991,6.300000000000001,136,0.7000000000000001 +2020,3,21,21,0,24.200000000000003,1.43,0.382,0.6,0,0,0,3,23.700000000000003,0,0,0,0,0.253,97.32000000000001,124.97,0.12,992,6.2,127,0.7000000000000001 +2020,3,21,22,0,24.200000000000003,1.46,0.3518,0.6,0,0,0,7,23.6,0,0,0,0,0.253,96.49000000000001,110,0.12,992,6.1000000000000005,109,0.6000000000000001 +2020,3,21,23,0,24.200000000000003,1.47,0.33130000000000004,0.6,0,0,0,8,23.6,0,0,0,0,0.254,96.69,95.03,0.12,993,6,99,0.6000000000000001 +2020,3,22,0,0,24.900000000000002,1.48,0.3173,0.6,64,222,103,8,23.900000000000002,62,176,3,92,0.255,94.32000000000001,79.97,0.12,993,6,91,0.9 +2020,3,22,1,0,25.900000000000002,1.49,0.30760000000000004,0.6,131,499,341,3,24,170,254,3,278,0.255,89.2,65.04,0.12,994,6,81,1.1 +2020,3,22,2,0,26.900000000000002,1.48,0.3057,0.6,167,643,580,3,23.5,274,342,0,494,0.256,81.53,50.08,0.12,994,6,77,1 +2020,3,22,3,0,28.1,1.46,0.3564,0.6,211,693,778,0,23.400000000000002,211,693,0,778,0.257,75.56,35.12,0.12,994,5.9,79,0.8 +2020,3,22,4,0,29,1.47,0.3493,0.6,223,742,920,3,23.3,430,50,0,476,0.258,71.27,20.19,0.12,993,5.9,107,0.6000000000000001 +2020,3,22,5,0,29.400000000000002,1.47,0.33740000000000003,0.6,225,767,988,3,23.3,322,18,0,340,0.259,69.63,5.62,0.12,992,5.9,172,0.7000000000000001 +2020,3,22,6,0,29.3,1.47,0.34190000000000004,0.6,225,761,974,8,23.3,299,16,0,315,0.259,70.15,10.23,0.12,991,6,222,0.9 +2020,3,22,7,0,29,1.47,0.3518,0.6,222,729,883,7,23.400000000000002,455,269,0,699,0.259,71.94,25.04,0.12,991,6,238,1.1 +2020,3,22,8,0,28.3,1.46,0.3604,0.6,208,669,720,6,23.6,54,0,0,54,0.259,75.83,39.980000000000004,0.12,990,6,240,1.2000000000000002 +2020,3,22,9,0,27.700000000000003,1.44,0.4083,0.6,190,540,500,9,24,31,0,0,31,0.258,80.53,54.94,0.12,990,6.1000000000000005,240,1 +2020,3,22,10,0,26.900000000000002,1.43,0.43820000000000003,0.6,138,346,257,9,24.1,14,0,0,14,0.257,84.60000000000001,69.9,0.12,991,6.1000000000000005,243,0.8 +2020,3,22,11,0,26.1,1.42,0.4544,0.6,33,62,38,9,24.400000000000002,5,0,3,5,0.257,90.27,84.77,0.12,991,6.1000000000000005,242,0.5 +2020,3,22,12,0,25.900000000000002,1.41,0.4912,0.6,0,0,0,6,24.3,0,0,0,0,0.257,91.16,99.9,0.12,992,6.2,233,0.4 +2020,3,22,13,0,25.900000000000002,1.41,0.5016,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.258,90.54,114.86,0.12,992,6.2,216,0.30000000000000004 +2020,3,22,14,0,25.900000000000002,1.41,0.4788,0.6,0,0,0,6,24.200000000000003,0,0,1,0,0.258,90.3,129.82,0.12,993,6.300000000000001,199,0.30000000000000004 +2020,3,22,15,0,25.6,1.4000000000000001,0.4922,0.6,0,0,0,7,24,0,0,0,0,0.257,90.79,144.74,0.12,993,6.300000000000001,182,0.4 +2020,3,22,16,0,25.3,1.3900000000000001,0.4451,0.6,0,0,0,7,24,0,0,0,0,0.257,92.55,159.54,0.12,992,6.4,180,0.5 +2020,3,22,17,0,25,1.3900000000000001,0.3815,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.256,93.75,173.41,0.12,992,6.4,189,0.5 +2020,3,22,18,0,24.8,1.3900000000000001,0.3558,0.6,0,0,0,7,23.8,0,0,0,0,0.255,94.24,169.14000000000001,0.12,991,6.300000000000001,187,0.5 +2020,3,22,19,0,24.700000000000003,1.4000000000000001,0.3164,0.6,0,0,0,6,23.700000000000003,0,0,0,0,0.255,94.36,154.66,0.12,990,6.300000000000001,177,0.6000000000000001 +2020,3,22,20,0,24.6,1.41,0.274,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.255,94.63,139.8,0.12,990,6.2,163,0.5 +2020,3,22,21,0,24.700000000000003,1.42,0.24860000000000002,0.6,0,0,0,7,23.6,0,0,0,0,0.255,93.79,124.86,0.12,990,6.2,75,0.4 +2020,3,22,22,0,24.700000000000003,1.43,0.22560000000000002,0.6,0,0,0,7,23.6,0,0,0,0,0.255,93.48,109.9,0.12,991,6.1000000000000005,31,0.5 +2020,3,22,23,0,24.8,1.44,0.20620000000000002,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.255,93.82000000000001,94.93,0.12,992,6.1000000000000005,43,0.5 +2020,3,23,0,0,25.400000000000002,1.45,0.201,0.6,58,304,112,7,24.3,61,216,3,99,0.256,93.58,79.87,0.12,992,6.1000000000000005,49,0.7000000000000001 +2020,3,23,1,0,26.5,1.46,0.1996,0.6,108,584,356,7,24.6,174,231,0,272,0.256,89.33,64.94,0.12,993,6,53,0.8 +2020,3,23,2,0,27.5,1.47,0.1938,0.6,134,723,599,7,24.400000000000002,276,53,0,309,0.257,83.08,49.980000000000004,0.12,993,6,57,0.7000000000000001 +2020,3,23,3,0,28.1,1.47,0.20220000000000002,0.6,155,789,801,6,23.900000000000002,410,145,0,529,0.258,77.82000000000001,35.01,0.12,993,6,53,0.6000000000000001 +2020,3,23,4,0,28.400000000000002,1.46,0.2094,0.6,168,823,940,6,23.6,489,159,0,639,0.258,75.49,20.07,0.12,992,6,40,0.5 +2020,3,23,5,0,28.5,1.46,0.21810000000000002,0.6,176,833,1005,7,23.6,521,122,0,642,0.257,75.01,5.39,0.12,991,6.1000000000000005,4,0.5 +2020,3,23,6,0,28.400000000000002,1.46,0.3009,0.6,211,782,980,6,23.700000000000003,361,22,0,382,0.256,75.8,10.22,0.12,990,6.1000000000000005,326,0.6000000000000001 +2020,3,23,7,0,28.200000000000003,1.45,0.30870000000000003,0.6,206,751,887,6,23.900000000000002,175,6,0,180,0.256,77.35000000000001,25.080000000000002,0.12,990,6.2,311,0.8 +2020,3,23,8,0,27.8,1.44,0.3153,0.6,191,694,722,6,24.1,55,0,0,55,0.255,80.13,40.03,0.12,989,6.2,309,0.7000000000000001 +2020,3,23,9,0,27.3,1.43,0.3658,0.6,179,564,502,6,24.3,75,0,0,75,0.254,83.91,55,0.12,989,6.300000000000001,332,0.5 +2020,3,23,10,0,26.700000000000003,1.42,0.4113,0.6,133,359,256,6,24.200000000000003,134,48,0,150,0.253,86.41,69.95,0.12,989,6.4,40,0.5 +2020,3,23,11,0,25.900000000000002,1.4000000000000001,0.4409,0.6,32,62,38,6,24.5,29,0,3,29,0.253,92.11,84.82000000000001,0.12,990,6.5,64,0.4 +2020,3,23,12,0,25.700000000000003,1.3900000000000001,0.49500000000000005,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.253,92.3,99.95,0.12,990,6.6000000000000005,66,0.30000000000000004 +2020,3,23,13,0,25.5,1.3800000000000001,0.47600000000000003,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.253,92.76,114.91,0.12,991,6.7,63,0.30000000000000004 +2020,3,23,14,0,25.400000000000002,1.37,0.42750000000000005,0.6,0,0,0,7,24.1,0,0,1,0,0.253,92.52,129.86,0.12,991,6.7,63,0.30000000000000004 +2020,3,23,15,0,25.1,1.36,0.41700000000000004,0.6,0,0,0,7,24,0,0,0,0,0.254,93.86,144.76,0.12,991,6.800000000000001,75,0.4 +2020,3,23,16,0,24.8,1.35,0.3915,0.6,0,0,0,7,24,0,0,0,0,0.255,95.44,159.53,0.12,991,6.7,89,0.5 +2020,3,23,17,0,24.6,1.34,0.3598,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.256,96.12,173.21,0.12,990,6.7,98,0.5 +2020,3,23,18,0,24.400000000000002,1.34,0.35300000000000004,0.6,0,0,0,4,23.900000000000002,0,0,0,0,0.256,96.93,168.91,0.12,990,6.6000000000000005,102,0.6000000000000001 +2020,3,23,19,0,24.3,1.35,0.3342,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.256,97.34,154.51,0.12,990,6.5,103,0.6000000000000001 +2020,3,23,20,0,24.3,1.37,0.3048,0.6,0,0,0,8,23.900000000000002,0,0,1,0,0.256,97.41,139.68,0.12,989,6.4,101,0.6000000000000001 +2020,3,23,21,0,24.200000000000003,1.4000000000000001,0.2944,0.6,0,0,0,8,23.8,0,0,0,0,0.256,97.8,124.76,0.12,989,6.300000000000001,90,0.6000000000000001 +2020,3,23,22,0,24.200000000000003,1.43,0.27140000000000003,0.6,0,0,0,0,23.8,0,0,0,0,0.256,97.36,109.8,0.12,990,6.2,75,0.6000000000000001 +2020,3,23,23,0,24.200000000000003,1.45,0.2414,0.6,0,0,0,0,23.8,0,0,0,0,0.255,97.75,94.83,0.12,990,6.1000000000000005,65,0.7000000000000001 +2020,3,24,0,0,25.1,1.46,0.22490000000000002,0.6,60,287,111,0,24.400000000000002,60,287,0,111,0.255,96.08,79.78,0.12,991,6,62,1.2000000000000002 +2020,3,24,1,0,26.200000000000003,1.5,0.2034,0.6,107,583,355,0,24.400000000000002,107,583,0,355,0.255,89.86,64.85,0.12,992,5.9,68,1.4000000000000001 +2020,3,24,2,0,27.200000000000003,1.51,0.1882,0.6,130,729,600,0,23.5,130,729,0,600,0.254,80.25,49.88,0.12,992,5.800000000000001,69,1.6 +2020,3,24,3,0,28.1,1.5,0.1915,0.6,148,798,802,0,23.400000000000002,148,798,0,802,0.254,75.66,34.910000000000004,0.12,992,5.800000000000001,67,1.5 +2020,3,24,4,0,29,1.49,0.19060000000000002,0.6,157,836,943,3,23.400000000000002,489,197,0,674,0.254,71.93,19.96,0.12,991,5.800000000000001,66,1.4000000000000001 +2020,3,24,5,0,29.400000000000002,1.49,0.1854,0.6,160,855,1011,3,23.400000000000002,527,188,0,715,0.254,70.17,5.18,0.12,990,5.800000000000001,68,1.3 +2020,3,24,6,0,29.6,1.48,0.1781,0.6,156,856,998,6,23.400000000000002,263,14,0,277,0.254,69.58,10.22,0.12,989,5.800000000000001,71,1.1 +2020,3,24,7,0,29.700000000000003,1.49,0.1714,0.6,147,838,906,6,23.6,406,46,0,448,0.254,69.61,25.12,0.12,988,5.9,74,1.1 +2020,3,24,8,0,29.6,1.49,0.16390000000000002,0.6,134,797,744,9,23.700000000000003,54,0,0,54,0.254,70.69,40.08,0.12,988,5.9,77,1 +2020,3,24,9,0,29.3,1.48,0.1731,0.6,119,705,523,6,24.3,209,19,0,219,0.254,74.68,55.050000000000004,0.12,987,5.9,78,0.9 +2020,3,24,10,0,28.5,1.47,0.1777,0.6,91,535,274,7,24.3,136,195,0,203,0.254,78.05,70.01,0.12,988,5.9,82,0.8 +2020,3,24,11,0,27.200000000000003,1.46,0.1744,0.6,32,170,47,7,24.5,30,23,3,32,0.254,85.3,84.88,0.12,988,5.9,91,0.5 +2020,3,24,12,0,26.6,1.43,0.17200000000000001,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.254,86.74,100,0.12,989,5.9,96,0.6000000000000001 +2020,3,24,13,0,26.200000000000003,1.3800000000000001,0.1734,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.254,88.66,114.96000000000001,0.12,990,5.9,95,0.7000000000000001 +2020,3,24,14,0,25.700000000000003,1.32,0.1738,0.6,0,0,0,6,24.200000000000003,0,0,1,0,0.254,91.39,129.89000000000001,0.12,990,5.9,91,0.9 +2020,3,24,15,0,25.200000000000003,1.28,0.1689,0.6,0,0,0,7,24.1,0,0,0,0,0.254,93.9,144.78,0.12,990,5.800000000000001,89,0.9 +2020,3,24,16,0,24.8,1.26,0.16,0.6,0,0,0,8,24,0,0,0,0,0.255,95.4,159.51,0.12,990,5.7,88,0.9 +2020,3,24,17,0,24.5,1.27,0.14850000000000002,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.255,96.24000000000001,172.98,0.12,989,5.6000000000000005,86,0.9 +2020,3,24,18,0,24.200000000000003,1.29,0.1414,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.255,96.88,168.67000000000002,0.12,989,5.4,84,0.9 +2020,3,24,19,0,23.900000000000002,1.32,0.1356,0.6,0,0,0,3,23.5,0,0,0,0,0.255,97.44,154.37,0.12,988,5.300000000000001,83,1 +2020,3,24,20,0,23.700000000000003,1.34,0.1263,0.6,0,0,0,3,23.3,0,0,0,0,0.254,97.63,139.56,0.12,988,5.1000000000000005,81,1.1 +2020,3,24,21,0,23.5,1.36,0.1241,0.6,0,0,0,3,23.200000000000003,0,0,0,0,0.253,98.02,124.65,0.12,988,5,78,1.1 +2020,3,24,22,0,23.400000000000002,1.3800000000000001,0.1206,0.6,0,0,0,3,23,0,0,0,0,0.252,97.76,109.7,0.12,988,4.800000000000001,75,1.1 +2020,3,24,23,0,23.8,1.4000000000000001,0.11470000000000001,0.6,0,0,0,3,23.3,0,0,0,0,0.251,97,94.74,0.12,989,4.800000000000001,67,1.2000000000000002 +2020,3,25,0,0,25.200000000000003,1.42,0.1135,0.6,51,408,124,0,24,51,408,0,124,0.251,93.23,79.68,0.12,990,4.7,60,1.9000000000000001 +2020,3,25,1,0,26.700000000000003,1.47,0.1073,0.6,84,685,376,0,24.1,84,685,0,376,0.251,85.73,64.75,0.12,991,4.7,62,2.2 +2020,3,25,2,0,28.400000000000002,1.52,0.1005,0.6,99,810,622,0,23.700000000000003,99,810,0,622,0.25,75.59,49.79,0.12,991,4.7,68,2.2 +2020,3,25,3,0,29.8,1.48,0.11320000000000001,0.6,116,862,824,0,23.3,116,862,0,824,0.251,68.04,34.82,0.12,991,4.7,77,2.1 +2020,3,25,4,0,30.700000000000003,1.48,0.11570000000000001,0.6,124,894,965,0,23.200000000000003,124,894,0,965,0.251,64.35,19.85,0.12,990,4.7,83,2.1 +2020,3,25,5,0,31.400000000000002,1.46,0.12040000000000001,0.6,130,904,1031,0,23.3,130,904,0,1031,0.252,62.11,4.99,0.12,989,4.7,86,2 +2020,3,25,6,0,31.700000000000003,1.43,0.12290000000000001,0.6,131,899,1016,0,23.400000000000002,131,899,0,1016,0.253,61.35,10.23,0.12,988,4.7,88,2 +2020,3,25,7,0,31.6,1.41,0.1287,0.6,129,874,920,0,23.400000000000002,129,874,0,920,0.254,61.940000000000005,25.17,0.12,988,4.800000000000001,90,2 +2020,3,25,8,0,31.200000000000003,1.4000000000000001,0.13140000000000002,0.6,121,827,754,0,23.5,121,827,0,754,0.255,63.57,40.14,0.12,987,4.9,92,1.9000000000000001 +2020,3,25,9,0,30.6,1.3900000000000001,0.1336,0.6,107,743,532,0,23.900000000000002,107,743,0,532,0.256,67.32000000000001,55.11,0.12,987,4.9,90,1.7000000000000002 +2020,3,25,10,0,29.5,1.3900000000000001,0.1301,0.6,80,587,280,0,24.1,80,587,0,280,0.256,72.91,70.07000000000001,0.12,987,4.9,89,1.4000000000000001 +2020,3,25,11,0,27.6,1.3900000000000001,0.1269,0.6,30,209,48,0,24.8,30,209,0,48,0.257,84.89,84.93,0.12,988,5,91,0.9 +2020,3,25,12,0,26.900000000000002,1.3900000000000001,0.12190000000000001,0.6,0,0,0,0,24.6,0,0,0,0,0.258,87.17,100.05,0.12,989,4.9,93,0.9 +2020,3,25,13,0,26.3,1.3900000000000001,0.1155,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.258,89.34,115,0.12,990,4.9,91,1 +2020,3,25,14,0,25.700000000000003,1.3900000000000001,0.1107,0.6,0,0,0,3,24.200000000000003,0,0,1,0,0.258,91.62,129.93,0.12,990,4.9,86,1 +2020,3,25,15,0,25.200000000000003,1.3800000000000001,0.1067,0.6,0,0,0,0,24.1,0,0,0,0,0.258,93.5,144.8,0.12,991,4.800000000000001,79,1 +2020,3,25,16,0,24.700000000000003,1.37,0.10490000000000001,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.257,95.21000000000001,159.48,0.12,990,4.7,74,1.1 +2020,3,25,17,0,24.3,1.34,0.1061,0.6,0,0,0,3,23.8,0,0,0,0,0.257,96.78,172.74,0.12,990,4.7,70,1.2000000000000002 +2020,3,25,18,0,24.1,1.34,0.10880000000000001,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.257,97.35000000000001,168.43,0.12,989,4.6000000000000005,65,1.2000000000000002 +2020,3,25,19,0,23.900000000000002,1.35,0.10690000000000001,0.6,0,0,0,0,23.6,0,0,0,0,0.256,98.02,154.21,0.12,989,4.5,58,1.3 +2020,3,25,20,0,23.700000000000003,1.37,0.0995,0.6,0,0,0,0,23.5,0,0,0,0,0.255,98.55,139.43,0.12,988,4.4,53,1.3 +2020,3,25,21,0,23.5,1.4000000000000001,0.09730000000000001,0.6,0,0,0,0,23.3,0,0,0,0,0.254,98.86,124.53,0.12,988,4.4,50,1.2000000000000002 +2020,3,25,22,0,23.400000000000002,1.42,0.0954,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.254,98.63,109.60000000000001,0.12,989,4.4,51,1.1 +2020,3,25,23,0,23.900000000000002,1.44,0.0921,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.254,97.01,94.64,0.12,990,4.4,56,1.3 +2020,3,26,0,0,25.8,1.47,0.0884,0.6,47,447,128,0,23.900000000000002,47,447,0,128,0.254,89.44,79.59,0.12,990,4.5,60,2.2 +2020,3,26,1,0,27.5,1.51,0.0829,0.6,76,714,381,0,24.1,76,714,0,381,0.254,81.57000000000001,64.66,0.12,991,4.6000000000000005,64,2.6 +2020,3,26,2,0,29.1,1.53,0.0811,0.6,92,828,627,0,24,92,828,0,627,0.254,73.89,49.7,0.12,991,4.7,68,2.5 +2020,3,26,3,0,30.400000000000002,1.47,0.0961,0.6,108,875,828,0,23.900000000000002,108,875,0,828,0.254,68.39,34.72,0.12,991,4.7,69,2.3000000000000003 +2020,3,26,4,0,31.3,1.48,0.09580000000000001,0.6,115,906,968,0,23.900000000000002,115,906,0,968,0.254,64.91,19.75,0.12,991,4.800000000000001,68,1.9000000000000001 +2020,3,26,5,0,31.900000000000002,1.48,0.09730000000000001,0.6,118,919,1034,0,23.900000000000002,118,919,0,1034,0.254,62.72,4.83,0.12,990,4.800000000000001,65,1.5 +2020,3,26,6,0,32.2,1.37,0.1322,0.6,135,890,1011,0,24.1,135,890,0,1011,0.253,62.26,10.27,0.12,989,4.9,63,1.4000000000000001 +2020,3,26,7,0,32.1,1.35,0.1375,0.6,134,865,917,0,23.900000000000002,134,865,0,917,0.253,61.99,25.23,0.12,989,4.9,63,1.4000000000000001 +2020,3,26,8,0,31.6,1.36,0.1341,0.6,122,823,751,3,23.8,269,545,0,685,0.252,63.54,40.2,0.12,989,5,66,1.3 +2020,3,26,9,0,31.3,1.37,0.1341,0.6,106,741,529,3,24.400000000000002,260,143,0,341,0.251,66.83,55.17,0.12,989,5,68,1.2000000000000002 +2020,3,26,10,0,30.1,1.3800000000000001,0.1332,0.6,81,581,278,0,24.5,81,581,0,278,0.251,72,70.12,0.12,989,5.1000000000000005,72,1.1 +2020,3,26,11,0,28.3,1.3800000000000001,0.12810000000000002,0.6,29,205,47,0,25,29,205,0,47,0.252,82.26,84.98,0.12,990,5.2,79,0.7000000000000001 +2020,3,26,12,0,27.5,1.3800000000000001,0.12430000000000001,0.6,0,0,0,8,24.700000000000003,0,0,0,0,0.253,84.73,100.10000000000001,0.12,991,5.300000000000001,85,0.7000000000000001 +2020,3,26,13,0,27,1.35,0.1226,0.6,0,0,0,3,24.6,0,0,0,0,0.254,86.5,115.04,0.12,991,5.300000000000001,86,0.7000000000000001 +2020,3,26,14,0,26.400000000000002,1.33,0.1199,0.6,0,0,0,8,24.5,0,0,0,0,0.254,89.33,129.96,0.12,992,5.300000000000001,81,0.7000000000000001 +2020,3,26,15,0,25.8,1.3,0.1194,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.255,91.98,144.81,0.12,992,5.2,70,0.7000000000000001 +2020,3,26,16,0,25.3,1.26,0.1218,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.256,93.83,159.44,0.12,992,5.2,59,0.8 +2020,3,26,17,0,24.900000000000002,1.24,0.1262,0.6,0,0,0,8,24.1,0,0,0,0,0.258,95.16,172.49,0.12,991,5.2,50,0.8 +2020,3,26,18,0,24.700000000000003,1.24,0.1326,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.258,95.43,168.17000000000002,0.12,990,5.2,44,0.8 +2020,3,26,19,0,24.5,1.25,0.137,0.6,0,0,0,0,23.8,0,0,0,0,0.258,95.66,154.05,0.12,990,5.2,36,0.7000000000000001 +2020,3,26,20,0,24.3,1.26,0.1369,0.6,0,0,0,3,23.6,0,0,0,0,0.257,95.96000000000001,139.3,0.12,990,5.2,25,0.6000000000000001 +2020,3,26,21,0,24.200000000000003,1.27,0.1439,0.6,0,0,0,3,23.5,0,0,0,0,0.257,95.77,124.42,0.12,990,5.2,16,0.6000000000000001 +2020,3,26,22,0,24.1,1.27,0.15380000000000002,0.6,0,0,0,3,23.400000000000002,0,0,0,0,0.257,95.93,109.49000000000001,0.12,990,5.2,17,0.6000000000000001 +2020,3,26,23,0,24.5,1.28,0.1575,0.6,0,0,0,3,23.8,0,0,0,0,0.256,95.62,94.54,0.12,991,5.300000000000001,19,0.7000000000000001 +2020,3,27,0,0,26,1.3,0.1631,0.6,58,346,121,3,24.3,66,134,3,91,0.256,90.27,79.49,0.12,992,5.300000000000001,22,1.3 +2020,3,27,1,0,27.5,1.34,0.1605,0.6,101,624,369,3,24.400000000000002,170,280,0,290,0.255,83.14,64.57000000000001,0.12,993,5.300000000000001,24,1.4000000000000001 +2020,3,27,2,0,28.8,1.37,0.1507,0.6,120,760,612,8,24.5,273,356,0,504,0.255,77.55,49.61,0.12,993,5.300000000000001,21,1.3 +2020,3,27,3,0,30,1.33,0.23950000000000002,0.6,171,764,800,3,24.6,387,320,0,650,0.254,72.71000000000001,34.63,0.12,993,5.4,22,1.2000000000000002 +2020,3,27,4,0,30.700000000000003,1.34,0.2379,0.6,179,805,937,3,24.6,450,351,0,781,0.254,69.9,19.66,0.12,992,5.5,21,1.1 +2020,3,27,5,0,31.1,1.35,0.2288,0.6,180,826,1003,8,24.5,459,395,0,852,0.254,68.09,4.7,0.12,991,5.6000000000000005,15,1.2000000000000002 +2020,3,27,6,0,31.200000000000003,1.36,0.23770000000000002,0.6,182,817,986,8,24.6,443,428,0,864,0.254,67.84,10.31,0.12,990,5.7,9,1.3 +2020,3,27,7,0,31.1,1.36,0.23600000000000002,0.6,175,793,892,8,24.6,388,433,0,779,0.254,68.52,25.29,0.12,990,5.800000000000001,9,1.4000000000000001 +2020,3,27,8,0,30.6,1.36,0.2396,0.6,163,739,727,8,24.8,368,108,0,450,0.253,71.04,40.26,0.12,989,6,11,1.4000000000000001 +2020,3,27,9,0,30.1,1.36,0.2596,0.6,146,631,506,9,25.400000000000002,46,0,0,46,0.253,75.81,55.230000000000004,0.12,989,6,16,1.2000000000000002 +2020,3,27,10,0,28.900000000000002,1.36,0.2661,0.6,108,449,260,6,25.3,136,78,0,162,0.254,80.81,70.18,0.12,990,6,18,1.1 +2020,3,27,11,0,27.700000000000003,1.36,0.2521,0.6,31,112,41,7,25.700000000000003,31,112,5,41,0.255,88.78,85.04,0.12,991,6,10,0.8 +2020,3,27,12,0,27.200000000000003,1.37,0.2374,0.6,0,0,0,7,25.400000000000002,0,0,0,0,0.256,89.71000000000001,100.15,0.12,991,5.9,359,0.8 +2020,3,27,13,0,26.900000000000002,1.3800000000000001,0.2187,0.6,0,0,0,8,25.1,0,0,0,0,0.257,90.04,115.08,0.12,992,5.800000000000001,344,0.7000000000000001 +2020,3,27,14,0,26.6,1.3800000000000001,0.2011,0.6,0,0,0,0,24.900000000000002,0,0,0,0,0.258,90.39,129.99,0.12,992,5.7,337,0.7000000000000001 +2020,3,27,15,0,26.400000000000002,1.3800000000000001,0.18780000000000002,0.6,0,0,0,0,24.700000000000003,0,0,0,0,0.258,90.31,144.82,0.12,993,5.6000000000000005,336,0.7000000000000001 +2020,3,27,16,0,26.3,1.3800000000000001,0.17750000000000002,0.6,0,0,0,0,24.5,0,0,0,0,0.258,89.92,159.4,0.12,992,5.5,338,0.6000000000000001 +2020,3,27,17,0,26.1,1.3800000000000001,0.17250000000000001,0.6,0,0,0,0,24.400000000000002,0,0,0,0,0.257,90.39,172.23,0.12,992,5.4,351,0.5 +2020,3,27,18,0,25.8,1.37,0.1709,0.6,0,0,0,0,24.3,0,0,0,0,0.256,91.29,167.91,0.12,991,5.300000000000001,15,0.4 +2020,3,27,19,0,25.400000000000002,1.37,0.1706,0.6,0,0,0,8,24.1,0,0,0,0,0.255,92.46000000000001,153.89000000000001,0.12,990,5.1000000000000005,38,0.5 +2020,3,27,20,0,24.900000000000002,1.36,0.17120000000000002,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.255,94.06,139.17000000000002,0.12,990,5,41,0.5 +2020,3,27,21,0,24.5,1.36,0.1767,0.6,0,0,0,3,23.6,0,0,0,0,0.255,95.02,124.31,0.12,990,4.9,36,0.6000000000000001 +2020,3,27,22,0,24.3,1.36,0.18430000000000002,0.6,0,0,0,1,23.5,0,0,0,0,0.256,95.28,109.39,0.12,990,4.9,32,0.6000000000000001 +2020,3,27,23,0,24.6,1.36,0.192,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.256,95.76,94.44,0.12,991,4.9,33,0.6000000000000001 +2020,3,28,0,0,26,1.37,0.1995,0.6,61,318,119,0,24.700000000000003,61,318,0,119,0.256,92.60000000000001,79.4,0.12,992,4.9,37,1 +2020,3,28,1,0,27.8,1.41,0.2,0.6,110,592,365,0,24.8,110,592,0,365,0.257,83.87,64.48,0.12,992,5,48,0.9 +2020,3,28,2,0,29.200000000000003,1.44,0.2015,0.6,137,723,606,0,24.5,137,723,0,606,0.257,75.75,49.52,0.12,993,5.1000000000000005,51,0.8 +2020,3,28,3,0,30.3,1.45,0.1688,0.6,141,816,813,0,24.3,141,816,0,813,0.258,70.45,34.550000000000004,0.12,993,5.1000000000000005,42,0.6000000000000001 +2020,3,28,4,0,31.1,1.47,0.17300000000000001,0.6,151,849,951,3,24.200000000000003,490,190,0,669,0.258,66.66,19.57,0.12,992,5.2,19,0.6000000000000001 +2020,3,28,5,0,31.400000000000002,1.48,0.17120000000000002,0.6,154,866,1016,3,24,510,97,0,607,0.257,64.89,4.6000000000000005,0.12,991,5.2,3,0.7000000000000001 +2020,3,28,6,0,31.400000000000002,1.46,0.2972,0.6,208,786,981,3,23.900000000000002,316,17,0,333,0.257,64.45,10.38,0.12,990,5.300000000000001,359,0.8 +2020,3,28,7,0,31.200000000000003,1.46,0.29560000000000003,0.6,199,761,887,8,23.900000000000002,464,193,0,639,0.256,65.13,25.35,0.12,989,5.300000000000001,358,0.8 +2020,3,28,8,0,31.1,1.48,0.2889,0.6,181,712,723,7,24.1,346,334,0,601,0.256,66.26,40.32,0.12,989,5.4,358,0.7000000000000001 +2020,3,28,9,0,30.900000000000002,1.49,0.2908,0.6,155,614,505,8,24.3,233,341,0,428,0.256,67.84,55.29,0.12,988,5.4,352,0.7000000000000001 +2020,3,28,10,0,29.900000000000002,1.5,0.2869,0.6,111,441,260,0,24.200000000000003,111,441,0,260,0.256,71.49,70.24,0.12,989,5.4,344,0.7000000000000001 +2020,3,28,11,0,28.6,1.52,0.27030000000000004,0.6,31,113,40,1,24.900000000000002,31,113,0,40,0.257,80.2,85.09,0.12,989,5.4,332,0.6000000000000001 +2020,3,28,12,0,28,1.54,0.2599,0.6,0,0,0,3,24.8,0,0,0,0,0.258,82.86,100.19,0.12,990,5.4,327,0.6000000000000001 +2020,3,28,13,0,27.6,1.56,0.25470000000000004,0.6,0,0,0,0,24.6,0,0,0,0,0.259,83.82000000000001,115.12,0.12,991,5.4,340,0.6000000000000001 +2020,3,28,14,0,27.3,1.57,0.2511,0.6,0,0,0,0,24.400000000000002,0,0,0,0,0.26,84.22,130.02,0.12,991,5.300000000000001,9,0.5 +2020,3,28,15,0,26.900000000000002,1.58,0.2501,0.6,0,0,0,0,24.3,0,0,0,0,0.26,85.46000000000001,144.82,0.12,991,5.2,40,0.5 +2020,3,28,16,0,26.5,1.58,0.2504,0.6,0,0,0,1,24.1,0,0,0,0,0.26,86.82000000000001,159.35,0.12,991,5.1000000000000005,59,0.5 +2020,3,28,17,0,26,1.59,0.25270000000000004,0.6,0,0,0,0,24,0,0,0,0,0.259,88.64,171.96,0.12,991,5,63,0.5 +2020,3,28,18,0,25.400000000000002,1.59,0.2586,0.6,0,0,0,0,23.8,0,0,0,0,0.259,90.8,167.64000000000001,0.12,990,4.9,61,0.5 +2020,3,28,19,0,24.900000000000002,1.58,0.2682,0.6,0,0,0,8,23.6,0,0,0,0,0.258,92.32000000000001,153.72,0.12,989,4.9,55,0.6000000000000001 +2020,3,28,20,0,24.5,1.58,0.28,0.6,0,0,0,8,23.400000000000002,0,0,0,0,0.256,93.62,139.04,0.12,989,4.800000000000001,47,0.6000000000000001 +2020,3,28,21,0,24.200000000000003,1.57,0.2899,0.6,0,0,0,0,23.3,0,0,0,0,0.255,94.54,124.19,0.12,989,4.800000000000001,39,0.6000000000000001 +2020,3,28,22,0,23.900000000000002,1.57,0.2958,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.254,95.63,109.28,0.12,989,4.7,33,0.7000000000000001 +2020,3,28,23,0,24.3,1.58,0.29700000000000004,0.6,0,0,0,0,23.5,0,0,0,0,0.254,95.12,94.34,0.12,990,4.7,32,0.8 +2020,3,29,0,0,26.1,1.59,0.2931,0.6,68,264,117,0,24,68,264,0,117,0.255,88.13,79.31,0.15,990,4.6000000000000005,38,1.3 +2020,3,29,1,0,27.700000000000003,1.6,0.2937,0.6,132,527,359,0,24.200000000000003,132,527,0,359,0.256,81.25,64.39,0.15,991,4.6000000000000005,39,1.3 +2020,3,29,2,0,29.3,1.6,0.28140000000000004,0.6,162,673,600,0,24.5,162,673,0,600,0.256,75.3,49.43,0.15,991,4.6000000000000005,33,1.2000000000000002 +2020,3,29,3,0,30.400000000000002,1.6,0.27490000000000003,0.6,182,752,802,0,24.6,182,752,0,802,0.256,71.22,34.47,0.15,991,4.7,24,1.2000000000000002 +2020,3,29,4,0,31.1,1.59,0.2695,0.6,192,796,942,1,24.700000000000003,192,796,0,942,0.257,68.94,19.5,0.15,991,4.7,16,1.3 +2020,3,29,5,0,31.400000000000002,1.58,0.2667,0.6,196,813,1006,3,24.900000000000002,526,196,0,721,0.257,68.33,4.53,0.15,990,4.800000000000001,11,1.5 +2020,3,29,6,0,31.6,1.57,0.3108,0.6,213,783,983,3,24.900000000000002,515,136,0,648,0.256,67.89,10.450000000000001,0.15,989,4.9,8,1.6 +2020,3,29,7,0,31.5,1.57,0.2747,0.6,190,777,892,3,24.900000000000002,464,181,0,628,0.256,68.22,25.42,0.15,988,5,6,1.6 +2020,3,29,8,0,31,1.58,0.2554,0.6,168,737,729,2,25,279,507,0,665,0.255,70.38,40.39,0.15,988,5.1000000000000005,3,1.6 +2020,3,29,9,0,30.5,1.57,0.256,0.6,143,642,508,3,25.3,258,166,0,352,0.255,73.98,55.35,0.15,987,5.2,359,1.4000000000000001 +2020,3,29,10,0,29.5,1.56,0.2654,0.6,106,459,261,3,25.6,122,308,0,226,0.254,79.56,70.3,0.15,988,5.300000000000001,354,1.2000000000000002 +2020,3,29,11,0,28.1,1.54,0.2695,0.6,30,113,40,0,25.900000000000002,30,113,0,40,0.254,87.74,85.14,0.15,988,5.4,337,0.9 +2020,3,29,12,0,27.5,1.53,0.2733,0.6,0,0,0,3,25.8,0,0,0,0,0.254,90.47,100.24000000000001,0.15,989,5.5,323,0.8 +2020,3,29,13,0,27.200000000000003,1.52,0.2741,0.6,0,0,0,3,25.700000000000003,0,0,0,0,0.254,91.37,115.16,0.15,990,5.5,338,0.7000000000000001 +2020,3,29,14,0,27,1.52,0.2718,0.6,0,0,0,0,25.5,0,0,0,0,0.254,91.37,130.04,0.15,991,5.6000000000000005,30,0.7000000000000001 +2020,3,29,15,0,26.5,1.5,0.2745,0.6,0,0,0,0,25.400000000000002,0,0,0,0,0.255,93.9,144.82,0.15,991,5.5,53,0.7000000000000001 +2020,3,29,16,0,26.1,1.49,0.2726,0.6,0,0,0,0,25.3,0,0,0,0,0.254,95.5,159.3,0.15,991,5.4,58,0.7000000000000001 +2020,3,29,17,0,25.8,1.48,0.2702,0.6,0,0,0,0,25.1,0,0,0,0,0.254,95.83,171.67000000000002,0.15,990,5.300000000000001,61,0.7000000000000001 +2020,3,29,18,0,25.400000000000002,1.46,0.2911,0.6,0,0,0,0,24.900000000000002,0,0,0,0,0.254,96.81,167.36,0.15,990,5.2,62,0.7000000000000001 +2020,3,29,19,0,25.200000000000003,1.44,0.3093,0.6,0,0,0,0,24.6,0,0,0,0,0.254,96.56,153.55,0.15,989,5.1000000000000005,62,0.7000000000000001 +2020,3,29,20,0,24.900000000000002,1.42,0.3099,0.6,0,0,0,1,24.400000000000002,0,0,0,0,0.255,96.86,138.9,0.15,989,5,60,0.7000000000000001 +2020,3,29,21,0,24.700000000000003,1.4000000000000001,0.32170000000000004,0.6,0,0,0,1,24.200000000000003,0,0,0,0,0.256,96.93,124.07000000000001,0.15,990,5,57,0.7000000000000001 +2020,3,29,22,0,24.5,1.3900000000000001,0.326,0.6,0,0,0,3,24,0,0,0,0,0.257,97.13,109.17,0.15,990,5,53,0.7000000000000001 +2020,3,29,23,0,24.8,1.3800000000000001,0.3109,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.257,96.72,94.24,0.15,991,5,51,0.9 +2020,3,30,0,0,25.8,1.3800000000000001,0.3119,0.6,73,240,118,3,24.700000000000003,45,0,3,45,0.257,93.8,79.21000000000001,0.14,992,5,51,1.4000000000000001 +2020,3,30,1,0,27.1,1.4000000000000001,0.3023,0.6,136,511,358,3,24.900000000000002,78,0,0,78,0.257,87.62,64.3,0.14,992,5,48,1.5 +2020,3,30,2,0,28.8,1.43,0.2702,0.6,163,673,601,8,24.900000000000002,33,0,0,33,0.256,79.49,49.35,0.14,992,5,35,1.4000000000000001 +2020,3,30,3,0,30,1.45,0.272,0.6,182,748,799,3,25,306,22,0,324,0.255,74.56,34.39,0.14,992,5,20,1.3 +2020,3,30,4,0,30.8,1.46,0.259,0.6,188,798,941,3,25,435,52,0,484,0.255,71.21000000000001,19.43,0.14,991,4.9,9,1.4000000000000001 +2020,3,30,5,0,31.400000000000002,1.46,0.2431,0.6,187,823,1007,0,24.900000000000002,187,823,0,1007,0.255,68.56,4.5,0.14,990,4.9,4,1.5 +2020,3,30,6,0,31.6,1.49,0.1802,0.6,157,858,1000,2,24.900000000000002,494,319,3,807,0.254,67.63,10.55,0.14,990,4.9,2,1.6 +2020,3,30,7,0,31.400000000000002,1.48,0.1937,0.6,158,826,904,8,24.8,378,467,0,799,0.254,68.1,25.5,0.14,989,4.9,1,1.6 +2020,3,30,8,0,31,1.46,0.2034,0.6,150,770,736,0,24.8,150,770,0,736,0.254,69.72,40.46,0.14,989,4.9,1,1.6 +2020,3,30,9,0,30.400000000000002,1.43,0.23220000000000002,0.6,138,657,511,1,25.1,138,657,0,511,0.253,73.54,55.42,0.14,989,4.9,6,1.5 +2020,3,30,10,0,29.6,1.42,0.2383,0.6,102,476,262,0,25.1,102,476,0,262,0.253,76.84,70.36,0.14,989,4.9,10,1.3 +2020,3,30,11,0,28.200000000000003,1.43,0.2245,0.6,30,128,41,3,25.5,28,12,3,29,0.253,85.51,85.2,0.14,989,4.800000000000001,10,1 +2020,3,30,12,0,27.6,1.44,0.21250000000000002,0.6,0,0,0,3,25.3,0,0,0,0,0.254,87.13,100.29,0.14,990,4.800000000000001,17,0.9 +2020,3,30,13,0,27.1,1.45,0.2073,0.6,0,0,0,0,25,0,0,0,0,0.255,88.3,115.2,0.14,991,4.800000000000001,27,0.9 +2020,3,30,14,0,26.8,1.45,0.2082,0.6,0,0,0,0,24.8,0,0,0,0,0.256,88.63,130.06,0.14,991,4.7,35,0.9 +2020,3,30,15,0,26.3,1.46,0.2116,0.6,0,0,0,0,24.6,0,0,0,0,0.257,90.39,144.82,0.14,992,4.7,31,1 +2020,3,30,16,0,25.700000000000003,1.47,0.2154,0.6,0,0,0,0,24.400000000000002,0,0,0,0,0.256,92.49,159.24,0.14,991,4.6000000000000005,22,1 +2020,3,30,17,0,25.200000000000003,1.49,0.2187,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.255,93.99,171.38,0.14,991,4.5,15,1 +2020,3,30,18,0,24.700000000000003,1.51,0.2197,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.253,95.24,167.08,0.14,990,4.5,10,1 +2020,3,30,19,0,24.3,1.53,0.223,0.6,0,0,0,0,23.5,0,0,0,0,0.252,95.59,153.38,0.14,989,4.4,10,1 +2020,3,30,20,0,24.1,1.54,0.23020000000000002,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.251,94.81,138.76,0.14,989,4.4,17,0.8 +2020,3,30,21,0,24,1.54,0.2391,0.6,0,0,0,1,23,0,0,0,0,0.25,93.98,123.95,0.14,990,4.5,34,0.7000000000000001 +2020,3,30,22,0,23.8,1.54,0.2411,0.6,0,0,0,0,22.700000000000003,0,0,0,0,0.251,93.81,109.07000000000001,0.14,990,4.5,50,0.6000000000000001 +2020,3,30,23,0,24,1.55,0.2354,0.6,0,0,0,0,23,0,0,0,0,0.251,94.23,94.14,0.14,991,4.4,47,0.7000000000000001 +2020,3,31,0,0,25.3,1.56,0.2225,0.6,64,318,124,0,23.6,64,318,0,124,0.251,90.18,79.12,0.14,992,4.4,41,1.2000000000000002 +2020,3,31,1,0,27.3,1.58,0.2039,0.6,109,600,370,0,23.8,109,600,0,370,0.251,81.35000000000001,64.22,0.14,992,4.4,47,1.5 +2020,3,31,2,0,29.1,1.6,0.19590000000000002,0.6,134,736,614,0,23.8,134,736,0,614,0.251,73.17,49.27,0.14,992,4.4,43,1.5 +2020,3,31,3,0,30.400000000000002,1.57,0.2587,0.6,173,764,804,0,23.8,173,764,0,804,0.251,68.01,34.32,0.14,992,4.4,42,1.3 +2020,3,31,4,0,31.3,1.57,0.25880000000000003,0.6,186,803,943,0,23.8,186,803,0,943,0.251,64.53,19.37,0.14,992,4.5,44,1 +2020,3,31,5,0,32,1.56,0.25830000000000003,0.6,191,819,1007,3,23.8,515,259,0,773,0.251,61.95,4.5,0.14,991,4.5,43,0.9 +2020,3,31,6,0,32.300000000000004,1.55,0.2447,0.6,184,822,992,3,23.8,466,58,0,523,0.251,61.04,10.65,0.14,990,4.6000000000000005,40,0.9 +2020,3,31,7,0,32.1,1.54,0.24750000000000003,0.6,179,794,896,3,23.900000000000002,451,265,0,690,0.25,61.81,25.580000000000002,0.14,989,4.7,35,0.9 +2020,3,31,8,0,31.700000000000003,1.52,0.2467,0.6,165,743,730,8,23.900000000000002,367,229,0,541,0.25,63.33,40.54,0.14,989,4.7,32,1 +2020,3,31,9,0,31.3,1.53,0.2417,0.6,140,652,510,9,24.3,30,0,0,30,0.25,66.27,55.49,0.14,989,4.800000000000001,29,0.9 +2020,3,31,10,0,30.3,1.53,0.2351,0.6,100,482,261,6,24.1,118,11,0,122,0.25,69.46000000000001,70.42,0.14,989,4.9,29,0.9 +2020,3,31,11,0,28.700000000000003,1.54,0.22940000000000002,0.6,29,129,40,7,24.700000000000003,24,0,3,24,0.25,78.97,85.25,0.14,990,4.9,28,0.6000000000000001 +2020,3,31,12,0,28.200000000000003,1.54,0.22160000000000002,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.251,79.69,100.34,0.14,990,5,31,0.6000000000000001 +2020,3,31,13,0,27.700000000000003,1.54,0.21400000000000002,0.6,0,0,0,7,24.1,0,0,0,0,0.251,81.01,115.24000000000001,0.14,991,5,49,0.5 +2020,3,31,14,0,27.3,1.53,0.20670000000000002,0.6,0,0,0,7,24,0,0,0,0,0.251,82.42,130.09,0.14,991,5.1000000000000005,66,0.5 +2020,3,31,15,0,26.700000000000003,1.53,0.1983,0.6,0,0,0,7,24.1,0,0,0,0,0.25,85.63,144.81,0.14,992,5.1000000000000005,78,0.5 +2020,3,31,16,0,26.1,1.52,0.1905,0.6,0,0,0,3,24,0,0,0,0,0.25,88.18,159.17000000000002,0.14,991,5.1000000000000005,86,0.5 +2020,3,31,17,0,25.6,1.51,0.1836,0.6,0,0,0,8,23.8,0,0,0,0,0.249,89.9,171.09,0.14,991,5.1000000000000005,91,0.5 +2020,3,31,18,0,25.200000000000003,1.5,0.1784,0.6,0,0,0,0,23.6,0,0,0,0,0.248,90.92,166.8,0.14,990,5,92,0.5 +2020,3,31,19,0,24.900000000000002,1.48,0.17500000000000002,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.247,91.57000000000001,153.20000000000002,0.14,989,5,82,0.5 +2020,3,31,20,0,24.6,1.46,0.1734,0.6,0,0,0,0,23.3,0,0,0,0,0.246,92.41,138.62,0.14,989,5,62,0.5 +2020,3,31,21,0,24.3,1.45,0.1731,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.246,93.42,123.83,0.14,990,5,52,0.5 +2020,3,31,22,0,24.1,1.44,0.1733,0.6,0,0,0,0,23.1,0,0,0,0,0.246,94.01,108.96000000000001,0.14,990,5.1000000000000005,53,0.6000000000000001 +2020,3,31,23,0,24.5,1.43,0.1734,0.6,0,0,0,0,23.6,0,0,0,0,0.246,94.66,94.04,0.14,991,5.1000000000000005,57,0.7000000000000001 +2020,4,1,0,0,26.400000000000002,1.44,0.1716,0.6,60,356,128,0,24.700000000000003,60,356,0,128,0.247,90.5,79.03,0.13,992,5.2,71,1 +2020,4,1,1,0,28.5,1.44,0.1693,0.6,103,622,374,0,24.700000000000003,103,622,0,374,0.247,79.88,64.13,0.13,992,5.300000000000001,83,1.1 +2020,4,1,2,0,29.700000000000003,1.46,0.1583,0.6,122,756,616,0,24.3,122,756,0,616,0.248,72.89,49.19,0.13,992,5.4,87,1 +2020,4,1,3,0,30.8,1.47,0.2275,0.6,164,774,804,0,24.3,164,774,0,804,0.249,68.34,34.25,0.13,992,5.4,83,0.9 +2020,4,1,4,0,31.5,1.48,0.2263,0.6,174,813,941,0,24.3,174,813,0,941,0.25,65.85,19.31,0.13,991,5.4,68,0.7000000000000001 +2020,4,1,5,0,32.1,1.49,0.2321,0.6,180,825,1003,0,24.400000000000002,180,825,0,1003,0.251,63.800000000000004,4.54,0.13,990,5.5,53,0.6000000000000001 +2020,4,1,6,0,32.300000000000004,1.5,0.2511,0.6,188,809,983,3,24.400000000000002,447,47,0,493,0.252,63.08,10.77,0.13,989,5.6000000000000005,42,0.7000000000000001 +2020,4,1,7,0,32.1,1.5,0.2622,0.6,184,777,884,3,24.3,461,149,0,595,0.252,63.63,25.67,0.13,988,5.7,33,0.7000000000000001 +2020,4,1,8,0,31.6,1.52,0.2602,0.6,168,726,719,3,24.400000000000002,291,468,0,647,0.252,65.68,40.61,0.13,988,5.800000000000001,21,0.8 +2020,4,1,9,0,31.200000000000003,1.51,0.2795,0.6,151,617,501,6,24.8,243,67,0,281,0.252,68.7,55.550000000000004,0.13,988,5.800000000000001,338,0.8 +2020,4,1,10,0,30,1.49,0.3075,0.6,114,419,253,6,25,125,29,0,134,0.251,74.52,70.48,0.13,989,5.9,289,0.8 +2020,4,1,11,0,28.6,1.49,0.30810000000000004,0.6,29,90,37,8,25.5,29,90,5,37,0.252,83.53,85.3,0.13,990,5.9,259,0.8 +2020,4,1,12,0,27.8,1.49,0.311,0.6,0,0,0,8,25.700000000000003,0,0,0,0,0.252,88.59,100.38,0.13,990,5.9,247,0.7000000000000001 +2020,4,1,13,0,27.400000000000002,1.49,0.3057,0.6,0,0,0,6,25.700000000000003,0,0,0,0,0.252,90.31,115.27,0.13,991,5.9,235,0.7000000000000001 +2020,4,1,14,0,27.3,1.49,0.2934,0.6,0,0,0,9,25.400000000000002,0,0,0,0,0.252,89.49,130.1,0.13,991,5.9,198,0.5 +2020,4,1,15,0,27.1,1.48,0.2862,0.6,0,0,0,9,25.200000000000003,0,0,0,0,0.252,89.52,144.8,0.13,991,5.800000000000001,141,0.5 +2020,4,1,16,0,26.5,1.47,0.27740000000000004,0.6,0,0,0,6,25.200000000000003,0,0,0,0,0.253,92.39,159.09,0.13,991,5.7,119,0.6000000000000001 +2020,4,1,17,0,26,1.44,0.2715,0.6,0,0,0,3,25,0,0,0,0,0.253,94.31,170.78,0.13,990,5.6000000000000005,110,0.6000000000000001 +2020,4,1,18,0,25.6,1.4000000000000001,0.27740000000000004,0.6,0,0,0,4,24.8,0,0,0,0,0.253,95.58,166.51,0.13,989,5.5,103,0.7000000000000001 +2020,4,1,19,0,25.400000000000002,1.37,0.2651,0.6,0,0,0,3,24.700000000000003,0,0,0,0,0.252,95.78,153.01,0.13,989,5.5,92,0.5 +2020,4,1,20,0,25.3,1.35,0.24300000000000002,0.6,0,0,0,3,24.5,0,0,0,0,0.252,95.53,138.48,0.13,989,5.5,77,0.4 +2020,4,1,21,0,25.200000000000003,1.35,0.23570000000000002,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.252,95.45,123.71000000000001,0.13,990,5.5,80,0.4 +2020,4,1,22,0,25.1,1.37,0.2172,0.6,0,0,0,1,24.3,0,0,0,0,0.252,95.08,108.85000000000001,0.13,990,5.4,89,0.4 +2020,4,1,23,0,25.400000000000002,1.3800000000000001,0.19340000000000002,0.6,0,0,0,0,24.6,0,0,0,0,0.252,95.12,93.95,0.13,991,5.300000000000001,92,0.5 +2020,4,2,0,0,26.700000000000003,1.4000000000000001,0.17450000000000002,0.6,61,353,129,4,25.1,59,0,3,59,0.252,90.93,78.94,0.13,991,5.300000000000001,82,0.8 +2020,4,2,1,0,28,1.42,0.15360000000000001,0.6,98,637,377,4,25.1,184,100,0,228,0.252,84.15,64.05,0.13,992,5.300000000000001,77,1 +2020,4,2,2,0,29.400000000000002,1.45,0.12860000000000002,0.6,112,781,622,3,24.900000000000002,302,106,3,371,0.252,76.94,49.120000000000005,0.13,992,5.300000000000001,70,0.9 +2020,4,2,3,0,30.5,1.46,0.10400000000000001,0.6,113,862,826,2,24.900000000000002,411,135,3,523,0.252,72.16,34.18,0.13,992,5.300000000000001,56,0.9 +2020,4,2,4,0,31.1,1.48,0.0994,0.6,117,897,964,0,24.900000000000002,117,897,0,964,0.251,69.49,19.27,0.13,991,5.300000000000001,46,1 +2020,4,2,5,0,31.6,1.49,0.0937,0.6,117,913,1028,0,24.900000000000002,117,913,0,1028,0.25,67.54,4.61,0.13,990,5.300000000000001,39,1.2000000000000002 +2020,4,2,6,0,31.900000000000002,1.46,0.12510000000000002,0.6,132,889,1005,3,24.700000000000003,375,24,0,399,0.25,65.94,10.9,0.13,989,5.300000000000001,34,1.3 +2020,4,2,7,0,31.700000000000003,1.47,0.1197,0.6,125,871,909,6,24.6,261,14,0,273,0.25,66.11,25.76,0.13,988,5.4,35,1.4000000000000001 +2020,4,2,8,0,31.400000000000002,1.47,0.1144,0.6,113,832,744,6,24.6,187,6,0,191,0.25,67.27,40.69,0.13,988,5.4,38,1.5 +2020,4,2,9,0,31,1.46,0.1139,0.6,99,751,523,9,25.1,30,0,0,30,0.25,70.94,55.620000000000005,0.13,988,5.5,46,1.3 +2020,4,2,10,0,29.8,1.44,0.11760000000000001,0.6,76,588,272,9,24.900000000000002,104,0,0,104,0.25,75.21000000000001,70.54,0.13,989,5.6000000000000005,53,1.3 +2020,4,2,11,0,28,1.42,0.1164,0.6,28,201,44,9,25.700000000000003,13,0,3,13,0.251,87.56,85.35000000000001,0.13,989,5.7,61,0.9 +2020,4,2,12,0,27.3,1.4000000000000001,0.12150000000000001,0.6,0,0,0,9,25.6,0,0,0,0,0.251,90.48,100.43,0.13,990,5.800000000000001,69,0.9 +2020,4,2,13,0,26.900000000000002,1.36,0.12390000000000001,0.6,0,0,0,6,25.3,0,0,0,0,0.251,91.16,115.3,0.13,991,5.9,74,0.9 +2020,4,2,14,0,26.5,1.31,0.12100000000000001,0.6,0,0,0,9,25.1,0,0,0,0,0.251,92.15,130.12,0.13,992,6,78,0.8 +2020,4,2,15,0,26,1.27,0.1179,0.6,0,0,0,9,25,0,0,0,0,0.252,94.47,144.79,0.13,992,6,77,0.8 +2020,4,2,16,0,25.700000000000003,1.24,0.1105,0.6,0,0,0,6,24.900000000000002,0,0,0,0,0.251,95.21000000000001,159.01,0.13,991,6,73,0.8 +2020,4,2,17,0,25.400000000000002,1.22,0.1009,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.251,95.98,170.47,0.13,991,5.9,69,0.8 +2020,4,2,18,0,25.1,1.22,0.10360000000000001,0.6,0,0,0,8,24.5,0,0,0,0,0.25,96.57000000000001,166.22,0.13,990,5.9,64,0.7000000000000001 +2020,4,2,19,0,24.900000000000002,1.23,0.0988,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.249,96.79,152.83,0.13,990,5.800000000000001,57,0.7000000000000001 +2020,4,2,20,0,24.700000000000003,1.22,0.0893,0.6,0,0,0,4,24.200000000000003,0,0,0,0,0.249,97.11,138.34,0.13,990,5.7,48,0.7000000000000001 +2020,4,2,21,0,24.6,1.24,0.0911,0.6,0,0,0,8,24.1,0,0,0,0,0.248,96.9,123.59,0.13,990,5.6000000000000005,44,0.7000000000000001 +2020,4,2,22,0,24.5,1.25,0.0907,0.6,0,0,0,7,24,0,0,0,0,0.248,96.82000000000001,108.74000000000001,0.13,991,5.6000000000000005,46,0.7000000000000001 +2020,4,2,23,0,24.8,1.25,0.08750000000000001,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.247,96.73,93.85000000000001,0.13,991,5.6000000000000005,50,0.9 +2020,4,3,0,0,25.900000000000002,1.26,0.08750000000000001,0.6,50,454,138,8,24.8,49,0,3,49,0.248,93.39,78.86,0.13,992,5.6000000000000005,58,1.6 +2020,4,3,1,0,27,1.29,0.0825,0.6,79,709,390,8,24.8,152,10,3,156,0.248,87.85000000000001,63.97,0.13,993,5.6000000000000005,67,2 +2020,4,3,2,0,28.3,1.3,0.07690000000000001,0.6,92,823,632,3,24.5,235,18,0,247,0.249,79.96000000000001,49.050000000000004,0.13,993,5.7,74,2.1 +2020,4,3,3,0,29.200000000000003,1.34,0.1399,0.6,130,831,818,1,24.400000000000002,130,831,0,818,0.249,75.42,34.12,0.13,993,5.7,74,2.2 +2020,4,3,4,0,29.900000000000002,1.35,0.1353,0.6,136,868,955,0,24.5,136,868,0,955,0.249,72.8,19.23,0.13,992,5.7,68,2.1 +2020,4,3,5,0,30.5,1.35,0.1346,0.6,139,881,1017,0,24.6,139,881,0,1017,0.249,71.01,4.71,0.13,991,5.800000000000001,63,2 +2020,4,3,6,0,30.700000000000003,1.34,0.135,0.6,138,877,999,3,24.8,507,242,0,745,0.248,70.66,11.040000000000001,0.13,990,5.800000000000001,59,1.9000000000000001 +2020,4,3,7,0,30.700000000000003,1.34,0.1431,0.6,137,850,902,8,24.8,448,266,0,687,0.248,70.86,25.86,0.13,989,5.9,59,1.7000000000000002 +2020,4,3,8,0,30.3,1.34,0.1489,0.6,129,799,735,7,24.8,369,172,0,499,0.248,72.68,40.77,0.13,989,6,62,1.6 +2020,4,3,9,0,29.700000000000003,1.35,0.15230000000000002,0.6,113,711,514,7,25.3,254,144,0,335,0.247,77.35000000000001,55.69,0.13,989,6,66,1.4000000000000001 +2020,4,3,10,0,28.700000000000003,1.35,0.15990000000000001,0.6,86,536,264,7,25.400000000000002,118,316,0,223,0.247,82.37,70.60000000000001,0.13,989,6.1000000000000005,70,1.1 +2020,4,3,11,0,27.400000000000002,1.34,0.15760000000000002,0.6,29,156,41,6,25.6,25,0,3,25,0.247,90.02,85.41,0.13,990,6.1000000000000005,79,0.7000000000000001 +2020,4,3,12,0,26.8,1.32,0.1607,0.6,0,0,0,7,25.400000000000002,0,0,0,0,0.247,92.08,100.47,0.13,991,6.1000000000000005,86,0.7000000000000001 +2020,4,3,13,0,26.400000000000002,1.3,0.16010000000000002,0.6,0,0,0,7,25.200000000000003,0,0,0,0,0.247,93.18,115.33,0.13,992,6.1000000000000005,86,0.7000000000000001 +2020,4,3,14,0,26,1.28,0.1563,0.6,0,0,0,7,25.1,0,0,0,0,0.246,94.52,130.13,0.13,992,6,83,0.6000000000000001 +2020,4,3,15,0,25.700000000000003,1.27,0.15480000000000002,0.6,0,0,0,7,24.900000000000002,0,0,0,0,0.247,95.23,144.77,0.13,992,6,80,0.6000000000000001 +2020,4,3,16,0,25.3,1.26,0.1496,0.6,0,0,0,0,24.700000000000003,0,0,0,0,0.247,96.4,158.92000000000002,0.13,992,5.9,78,0.6000000000000001 +2020,4,3,17,0,25.1,1.25,0.1421,0.6,0,0,0,0,24.5,0,0,0,0,0.248,96.46000000000001,170.16,0.13,992,5.800000000000001,74,0.6000000000000001 +2020,4,3,18,0,24.8,1.25,0.14100000000000001,0.6,0,0,0,0,24.3,0,0,0,0,0.248,97.02,165.92000000000002,0.13,991,5.7,69,0.6000000000000001 +2020,4,3,19,0,24.6,1.25,0.136,0.6,0,0,0,0,24.1,0,0,0,0,0.249,97.06,152.64000000000001,0.13,990,5.7,61,0.6000000000000001 +2020,4,3,20,0,24.400000000000002,1.26,0.12560000000000002,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.249,97.25,138.19,0.13,990,5.6000000000000005,52,0.7000000000000001 +2020,4,3,21,0,24.3,1.27,0.12300000000000001,0.6,0,0,0,0,23.8,0,0,0,0,0.249,97.02,123.47,0.13,990,5.5,47,0.7000000000000001 +2020,4,3,22,0,24.200000000000003,1.28,0.11960000000000001,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.249,97.01,108.63,0.13,990,5.5,48,0.8 +2020,4,3,23,0,24.700000000000003,1.27,0.112,0.6,0,0,0,0,24.1,0,0,0,0,0.249,96.51,93.75,0.13,991,5.5,50,1.1 +2020,4,4,0,0,25.8,1.27,0.11030000000000001,0.6,54,426,137,0,24.8,54,426,0,137,0.249,94.21000000000001,78.77,0.13,991,5.4,51,1.9000000000000001 +2020,4,4,1,0,27.1,1.27,0.1048,0.6,86,685,387,0,25,86,685,0,387,0.25,88.27,63.89,0.13,992,5.4,54,2.5 +2020,4,4,2,0,28.5,1.26,0.0983,0.6,101,804,629,0,24.700000000000003,101,804,0,629,0.249,80.08,48.980000000000004,0.13,992,5.4,55,2.6 +2020,4,4,3,0,29.700000000000003,1.25,0.08700000000000001,0.6,107,872,830,0,24.6,107,872,0,830,0.25,74.02,34.07,0.13,992,5.4,56,2.6 +2020,4,4,4,0,30.5,1.24,0.0896,0.6,115,901,966,0,24.5,115,901,0,966,0.25,70.39,19.2,0.13,991,5.4,57,2.5 +2020,4,4,5,0,31,1.23,0.0942,0.6,120,910,1027,3,24.400000000000002,523,207,0,728,0.25,67.99,4.84,0.13,990,5.4,59,2.4000000000000004 +2020,4,4,6,0,31.3,1.27,0.12430000000000001,0.6,133,886,1002,3,24.3,489,308,0,791,0.251,66.52,11.19,0.13,990,5.4,61,2.1 +2020,4,4,7,0,31.200000000000003,1.28,0.12860000000000002,0.6,130,861,904,3,24.3,376,455,0,785,0.251,66.96000000000001,25.96,0.13,989,5.5,61,1.9000000000000001 +2020,4,4,8,0,30.8,1.29,0.1241,0.6,118,819,738,1,24.400000000000002,118,819,0,738,0.252,68.94,40.86,0.13,989,5.6000000000000005,63,1.7000000000000002 +2020,4,4,9,0,30.3,1.3,0.1262,0.6,104,735,517,9,24.900000000000002,29,0,0,29,0.253,72.8,55.77,0.13,989,5.7,63,1.4000000000000001 +2020,4,4,10,0,29.200000000000003,1.31,0.1292,0.6,78,568,266,6,25,13,0,0,13,0.254,78.21000000000001,70.67,0.13,990,5.800000000000001,62,1.1 +2020,4,4,11,0,27.8,1.3,0.128,0.6,27,178,41,6,25.400000000000002,4,0,3,4,0.256,86.57000000000001,85.46000000000001,0.13,991,5.9,61,0.6000000000000001 +2020,4,4,12,0,27.200000000000003,1.31,0.1254,0.6,0,0,0,6,25.3,0,0,0,0,0.257,89.35000000000001,100.51,0.13,991,5.9,60,0.7000000000000001 +2020,4,4,13,0,26.700000000000003,1.32,0.11330000000000001,0.6,0,0,0,6,25.3,0,0,0,0,0.259,91.87,115.36,0.13,992,5.9,58,0.8 +2020,4,4,14,0,26.200000000000003,1.36,0.0988,0.6,0,0,0,7,25.1,0,0,0,0,0.26,93.68,130.14000000000001,0.13,992,5.800000000000001,54,1 +2020,4,4,15,0,25.8,1.3800000000000001,0.0897,0.6,0,0,0,8,24.900000000000002,0,0,0,0,0.261,95,144.75,0.13,992,5.7,53,1.2000000000000002 +2020,4,4,16,0,25.400000000000002,1.41,0.0853,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.261,96.16,158.82,0.13,991,5.5,53,1.3 +2020,4,4,17,0,25.1,1.42,0.0857,0.6,0,0,0,8,24.5,0,0,0,0,0.261,96.39,169.84,0.13,991,5.4,52,1.1 +2020,4,4,18,0,24.700000000000003,1.43,0.0907,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.26,96.82000000000001,165.62,0.13,990,5.300000000000001,49,0.9 +2020,4,4,19,0,24.400000000000002,1.43,0.0952,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.259,96.81,152.45000000000002,0.13,990,5.2,40,0.8 +2020,4,4,20,0,24.1,1.44,0.0985,0.6,0,0,0,8,23.6,0,0,0,0,0.258,97.09,138.05,0.13,990,5.2,26,0.7000000000000001 +2020,4,4,21,0,24,1.44,0.1028,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.257,96.65,123.34,0.13,991,5.2,14,0.7000000000000001 +2020,4,4,22,0,23.8,1.45,0.10210000000000001,0.6,0,0,0,3,23.3,0,0,0,0,0.258,96.9,108.53,0.13,991,5.2,10,0.8 +2020,4,4,23,0,24.3,1.47,0.0976,0.6,0,0,0,1,23.700000000000003,0,0,0,0,0.258,96.28,93.66,0.13,992,5.1000000000000005,12,1.1 +2020,4,5,0,0,25.700000000000003,1.47,0.09390000000000001,0.6,50,456,140,0,24.400000000000002,50,456,0,140,0.258,92.66,78.68,0.13,993,5.1000000000000005,25,1.9000000000000001 +2020,4,5,1,0,27.3,1.46,0.09090000000000001,0.6,80,704,390,8,24.700000000000003,148,434,0,339,0.259,85.8,63.82,0.13,993,5.2,42,2.3000000000000003 +2020,4,5,2,0,28.900000000000002,1.44,0.0915,0.6,97,812,630,3,24.700000000000003,270,380,0,520,0.258,78,48.910000000000004,0.13,993,5.300000000000001,55,2.4000000000000004 +2020,4,5,3,0,30,1.37,0.11750000000000001,0.6,120,849,823,7,24.700000000000003,376,360,0,674,0.258,73.22,34.02,0.13,993,5.4,64,2.1 +2020,4,5,4,0,30.6,1.35,0.1262,0.6,131,874,956,7,24.700000000000003,420,403,0,801,0.258,70.89,19.18,0.13,992,5.6000000000000005,69,1.6 +2020,4,5,5,0,31,1.33,0.1422,0.6,142,875,1013,8,24.8,523,152,0,674,0.257,69.45,4.99,0.13,991,5.800000000000001,73,1.3 +2020,4,5,6,0,31.200000000000003,1.33,0.1603,0.6,149,858,991,8,24.700000000000003,514,177,0,687,0.256,68.46000000000001,11.35,0.13,990,5.9,78,1.3 +2020,4,5,7,0,31.1,1.31,0.1743,0.6,151,826,893,8,24.8,449,257,0,679,0.257,69.12,26.060000000000002,0.13,990,6,82,1.4000000000000001 +2020,4,5,8,0,30.5,1.29,0.1817,0.6,143,771,725,9,25.200000000000003,51,0,0,51,0.257,73.49,40.94,0.13,989,6.2,87,1.6 +2020,4,5,9,0,29.8,1.24,0.2106,0.6,133,656,502,6,25.700000000000003,29,0,0,29,0.257,78.79,55.84,0.13,989,6.300000000000001,83,1.5 +2020,4,5,10,0,28.8,1.17,0.23470000000000002,0.6,104,454,254,6,25.8,29,0,0,29,0.257,83.82000000000001,70.73,0.13,990,6.4,81,1.3 +2020,4,5,11,0,27.5,1.08,0.25,0.6,30,81,36,6,25.900000000000002,4,0,3,4,0.257,91.05,85.51,0.13,991,6.4,84,0.9 +2020,4,5,12,0,26.900000000000002,1.01,0.28800000000000003,0.6,0,0,0,6,25.900000000000002,0,0,0,0,0.257,94.10000000000001,100.55,0.13,992,6.5,89,0.8 +2020,4,5,13,0,26.6,0.9500000000000001,0.3079,0.6,0,0,0,7,25.8,0,0,0,0,0.257,95.13,115.39,0.13,993,6.5,88,0.7000000000000001 +2020,4,5,14,0,26.200000000000003,0.92,0.3043,0.6,0,0,0,7,25.6,0,0,0,0,0.258,96.5,130.15,0.13,993,6.4,81,0.6000000000000001 +2020,4,5,15,0,25.900000000000002,0.92,0.3265,0.6,0,0,0,7,25.400000000000002,0,0,0,0,0.258,97.05,144.72,0.13,993,6.300000000000001,74,0.6000000000000001 +2020,4,5,16,0,25.6,0.91,0.3346,0.6,0,0,0,7,25.3,0,0,0,0,0.258,98.08,158.72,0.13,993,6.2,78,0.6000000000000001 +2020,4,5,17,0,25.400000000000002,0.91,0.3043,0.6,0,0,0,8,25.1,0,0,0,0,0.257,98.15,169.52,0.13,992,6.1000000000000005,93,0.8 +2020,4,5,18,0,25.200000000000003,0.9400000000000001,0.2947,0.6,0,0,0,8,24.900000000000002,0,0,0,0,0.256,98.16,165.32,0.13,991,5.9,116,0.9 +2020,4,5,19,0,25,0.98,0.2743,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.256,98.29,152.26,0.13,991,5.800000000000001,150,0.9 +2020,4,5,20,0,25,1.01,0.2411,0.6,0,0,0,7,24.6,0,0,0,0,0.256,97.37,137.9,0.13,991,5.7,174,0.9 +2020,4,5,21,0,25,1.05,0.222,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.256,96.61,123.22,0.13,992,5.6000000000000005,163,0.7000000000000001 +2020,4,5,22,0,25,1.07,0.2051,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.255,95.59,108.42,0.13,992,5.5,120,0.7000000000000001 +2020,4,5,23,0,25,1.1,0.18480000000000002,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.254,95.61,93.56,0.13,993,5.4,128,0.7000000000000001 +2020,4,6,0,0,25.8,1.1300000000000001,0.1716,0.6,64,351,134,8,24.8,62,324,3,126,0.253,94.47,78.60000000000001,0.13,993,5.4,114,0.9 +2020,4,6,1,0,26.5,1.19,0.1494,0.6,100,638,383,8,24.6,156,393,0,330,0.253,89.10000000000001,63.74,0.13,994,5.300000000000001,96,1.3 +2020,4,6,2,0,27.200000000000003,1.2,0.139,0.6,118,768,623,8,24.400000000000002,236,478,0,551,0.252,84.84,48.85,0.13,994,5.300000000000001,93,1.5 +2020,4,6,3,0,28,1.21,0.1365,0.6,130,834,821,0,24.3,130,834,0,821,0.251,80.14,33.97,0.13,994,5.300000000000001,95,1.6 +2020,4,6,4,0,28.700000000000003,1.22,0.1376,0.6,138,866,956,3,24.1,408,461,0,844,0.25,76.34,19.16,0.13,993,5.300000000000001,96,1.5 +2020,4,6,5,0,29.3,1.22,0.1401,0.6,142,878,1016,1,24,142,878,0,1016,0.249,73.02,5.17,0.13,992,5.300000000000001,97,1.3 +2020,4,6,6,0,29.6,1.27,0.2126,0.6,175,828,986,3,23.900000000000002,512,187,0,696,0.248,71.3,11.52,0.13,991,5.300000000000001,98,1 +2020,4,6,7,0,29.8,1.28,0.2109,0.6,167,804,889,6,23.8,418,61,0,473,0.248,70.26,26.17,0.13,990,5.300000000000001,107,0.8 +2020,4,6,8,0,29.700000000000003,1.29,0.2078,0.6,152,756,722,3,23.8,296,448,0,634,0.248,70.81,41.03,0.13,990,5.300000000000001,130,0.7000000000000001 +2020,4,6,9,0,29.700000000000003,1.29,0.21450000000000002,0.6,133,658,502,9,24.200000000000003,29,0,0,29,0.248,72.38,55.910000000000004,0.13,989,5.300000000000001,175,0.7000000000000001 +2020,4,6,10,0,29,1.3,0.2218,0.6,100,474,256,9,24.200000000000003,13,0,0,13,0.249,75.48,70.79,0.13,990,5.4,216,0.7000000000000001 +2020,4,6,11,0,27.700000000000003,1.3,0.2258,0.6,29,106,37,6,24.5,4,0,3,4,0.25,82.52,85.56,0.13,991,5.4,229,0.6000000000000001 +2020,4,6,12,0,27.200000000000003,1.3,0.23500000000000001,0.6,0,0,0,6,24.3,0,0,0,0,0.251,84.22,100.59,0.13,992,5.4,227,0.6000000000000001 +2020,4,6,13,0,26.900000000000002,1.29,0.24710000000000001,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.252,85.25,115.42,0.13,992,5.5,205,0.6000000000000001 +2020,4,6,14,0,26.700000000000003,1.28,0.2536,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.253,86.26,130.15,0.13,993,5.5,181,0.7000000000000001 +2020,4,6,15,0,26.3,1.27,0.2604,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.254,88.46000000000001,144.69,0.13,993,5.5,169,0.7000000000000001 +2020,4,6,16,0,26,1.26,0.2631,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.254,89.76,158.61,0.13,993,5.5,168,0.7000000000000001 +2020,4,6,17,0,25.700000000000003,1.25,0.2523,0.6,0,0,0,6,24.1,0,0,0,0,0.254,90.75,169.20000000000002,0.13,992,5.5,171,0.8 +2020,4,6,18,0,25.5,1.27,0.2419,0.6,0,0,0,6,24,0,0,0,0,0.254,91.16,165.02,0.13,991,5.4,176,0.8 +2020,4,6,19,0,25.3,1.29,0.2278,0.6,0,0,0,6,23.8,0,0,0,0,0.254,91.66,152.06,0.13,991,5.4,175,0.8 +2020,4,6,20,0,25.1,1.29,0.20950000000000002,0.6,0,0,0,6,23.8,0,0,0,0,0.254,92.44,137.75,0.13,991,5.4,168,0.8 +2020,4,6,21,0,24.900000000000002,1.31,0.1966,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.254,93.25,123.09,0.13,991,5.300000000000001,159,0.8 +2020,4,6,22,0,24.8,1.33,0.1806,0.6,0,0,0,7,23.6,0,0,0,0,0.253,93.11,108.31,0.13,991,5.300000000000001,152,0.8 +2020,4,6,23,0,24.900000000000002,1.34,0.16870000000000002,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.252,94.44,93.47,0.13,992,5.2,149,0.8 +2020,4,7,0,0,26.400000000000002,1.35,0.1647,0.6,62,372,136,7,24.700000000000003,73,70,3,87,0.251,90.60000000000001,78.52,0.13,993,5.1000000000000005,147,1.1 +2020,4,7,1,0,28,1.36,0.1578,0.6,101,636,383,7,24.6,186,192,0,271,0.251,81.96000000000001,63.67,0.13,993,5,149,1.3 +2020,4,7,2,0,29.1,1.37,0.14780000000000001,0.6,120,765,624,8,24.3,263,407,0,531,0.251,75.44,48.79,0.13,993,5,146,1.3 +2020,4,7,3,0,29.400000000000002,1.3900000000000001,0.1549,0.6,137,824,820,8,24,382,355,0,676,0.251,72.93,33.93,0.13,993,5,143,1.3 +2020,4,7,4,0,29.8,1.3900000000000001,0.15860000000000002,0.6,146,855,954,8,24.1,485,221,0,694,0.251,71.42,19.16,0.13,992,5.1000000000000005,140,1.3 +2020,4,7,5,0,30.1,1.3900000000000001,0.1567,0.6,149,870,1014,7,24.1,519,222,0,740,0.252,70.16,5.37,0.13,991,5.1000000000000005,137,1.4000000000000001 +2020,4,7,6,0,30.200000000000003,1.3900000000000001,0.17930000000000001,0.6,159,850,991,8,24.1,463,59,0,521,0.252,69.92,11.700000000000001,0.13,990,5.2,136,1.4000000000000001 +2020,4,7,7,0,29.900000000000002,1.3900000000000001,0.18760000000000002,0.6,156,821,892,8,24.1,368,491,0,808,0.253,71.07000000000001,26.29,0.13,989,5.300000000000001,134,1.3 +2020,4,7,8,0,29.5,1.4000000000000001,0.1821,0.6,142,775,726,8,24.3,314,39,0,344,0.253,73.5,41.12,0.13,989,5.4,133,1.2000000000000002 +2020,4,7,9,0,29.1,1.3900000000000001,0.20170000000000002,0.6,129,669,503,6,24.700000000000003,30,0,0,30,0.254,77.27,55.99,0.13,989,5.5,130,1 +2020,4,7,10,0,28.5,1.3900000000000001,0.2073,0.6,96,488,256,6,24.6,12,0,0,12,0.254,79.38,70.86,0.13,990,5.5,121,1 +2020,4,7,11,0,27.400000000000002,1.3900000000000001,0.19840000000000002,0.6,28,124,38,6,25,4,0,3,4,0.254,86.86,85.61,0.13,990,5.5,123,0.7000000000000001 +2020,4,7,12,0,27.1,1.4000000000000001,0.19870000000000002,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.255,86.74,100.63,0.13,991,5.5,117,0.7000000000000001 +2020,4,7,13,0,26.900000000000002,1.41,0.1899,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.256,86.46000000000001,115.44,0.13,991,5.5,102,0.6000000000000001 +2020,4,7,14,0,26.6,1.42,0.1773,0.6,0,0,0,7,24.3,0,0,0,0,0.257,87,130.16,0.13,992,5.5,83,0.6000000000000001 +2020,4,7,15,0,26.200000000000003,1.41,0.17600000000000002,0.6,0,0,0,7,24.1,0,0,0,0,0.257,88.35000000000001,144.65,0.13,992,5.5,71,0.5 +2020,4,7,16,0,25.900000000000002,1.41,0.1729,0.6,0,0,0,7,24,0,0,0,0,0.257,89.14,158.5,0.13,992,5.5,67,0.5 +2020,4,7,17,0,25.700000000000003,1.41,0.165,0.6,0,0,0,4,23.900000000000002,0,0,0,0,0.257,89.68,168.87,0.13,992,5.5,60,0.4 +2020,4,7,18,0,25.400000000000002,1.41,0.16640000000000002,0.6,0,0,0,4,23.8,0,0,0,0,0.257,91.01,164.72,0.13,991,5.5,46,0.4 +2020,4,7,19,0,25.200000000000003,1.41,0.1666,0.6,0,0,0,3,23.700000000000003,0,0,0,0,0.257,91.55,151.86,0.13,991,5.5,347,0.4 +2020,4,7,20,0,24.900000000000002,1.41,0.1621,0.6,0,0,0,0,23.6,0,0,0,0,0.256,92.49,137.6,0.13,991,5.5,301,0.5 +2020,4,7,21,0,24.700000000000003,1.41,0.16390000000000002,0.6,0,0,0,0,23.5,0,0,0,0,0.256,92.96000000000001,122.97,0.13,991,5.4,297,0.5 +2020,4,7,22,0,24.5,1.41,0.16640000000000002,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.255,93.63,108.2,0.13,991,5.300000000000001,299,0.6000000000000001 +2020,4,7,23,0,24.700000000000003,1.42,0.1676,0.6,0,0,0,0,23.8,0,0,0,0,0.255,94.67,93.37,0.13,992,5.2,301,0.6000000000000001 +2020,4,8,0,0,26.5,1.43,0.16670000000000001,0.6,62,374,137,3,24.900000000000002,70,215,3,113,0.255,90.93,78.44,0.13,993,5.2,309,0.7000000000000001 +2020,4,8,1,0,27.6,1.43,0.16690000000000002,0.6,104,628,383,3,24.3,159,383,0,329,0.256,82.07000000000001,63.6,0.13,993,5.2,7,0.6000000000000001 +2020,4,8,2,0,28.6,1.42,0.1731,0.6,129,744,620,0,23.900000000000002,129,744,0,620,0.255,75.94,48.730000000000004,0.13,994,5.2,49,0.6000000000000001 +2020,4,8,3,0,29.5,1.43,0.2078,0.6,158,786,810,0,23.8,158,786,0,810,0.254,71.57000000000001,33.89,0.13,993,5.2,79,0.5 +2020,4,8,4,0,30.1,1.44,0.2093,0.6,168,822,945,0,23.8,168,822,0,945,0.254,69.03,19.16,0.13,993,5.1000000000000005,129,0.4 +2020,4,8,5,0,30.5,1.45,0.2101,0.6,172,836,1004,8,23.8,468,365,0,831,0.253,67.69,5.59,0.13,992,5.1000000000000005,226,0.5 +2020,4,8,6,0,30.700000000000003,1.46,0.2664,0.6,194,799,976,3,23.900000000000002,480,75,0,553,0.253,66.96000000000001,11.89,0.13,991,5.1000000000000005,258,0.8 +2020,4,8,7,0,30.6,1.47,0.2665,0.6,187,773,879,3,23.900000000000002,446,258,0,677,0.253,67.43,26.400000000000002,0.13,990,5.1000000000000005,264,1 +2020,4,8,8,0,30.1,1.48,0.2647,0.6,171,720,712,6,23.900000000000002,51,0,0,51,0.253,69.56,41.21,0.13,990,5.2,266,1 +2020,4,8,9,0,29.5,1.49,0.2732,0.6,149,617,493,6,24.1,29,0,0,29,0.253,72.89,56.06,0.13,990,5.2,284,1 +2020,4,8,10,0,28.700000000000003,1.5,0.2767,0.6,107,435,249,6,24.6,12,0,0,12,0.252,78.63,70.92,0.13,991,5.300000000000001,294,0.9 +2020,4,8,11,0,27.400000000000002,1.5,0.2768,0.6,27,93,34,6,25,8,0,3,8,0.253,86.73,85.66,0.13,991,5.300000000000001,298,0.8 +2020,4,8,12,0,26.8,1.49,0.2841,0.6,0,0,0,8,24.900000000000002,0,0,0,0,0.253,89.61,100.67,0.13,992,5.4,300,0.8 +2020,4,8,13,0,26.5,1.5,0.2753,0.6,0,0,0,7,24.8,0,0,0,0,0.254,90.54,115.46000000000001,0.13,993,5.4,320,0.7000000000000001 +2020,4,8,14,0,26.3,1.49,0.2637,0.6,0,0,0,7,24.6,0,0,0,0,0.256,90.64,130.15,0.13,993,5.300000000000001,352,0.7000000000000001 +2020,4,8,15,0,26,1.49,0.259,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.257,91.07000000000001,144.62,0.13,993,5.300000000000001,24,0.7000000000000001 +2020,4,8,16,0,25.8,1.48,0.2514,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.258,91.13,158.38,0.13,993,5.2,51,0.7000000000000001 +2020,4,8,17,0,25.5,1.48,0.2379,0.6,0,0,0,7,24.1,0,0,0,0,0.258,91.75,168.54,0.13,993,5,61,0.7000000000000001 +2020,4,8,18,0,25.1,1.48,0.2325,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.259,92.98,164.41,0.13,992,4.9,62,0.7000000000000001 +2020,4,8,19,0,24.8,1.48,0.22390000000000002,0.6,0,0,0,3,23.700000000000003,0,0,0,0,0.259,93.77,151.66,0.13,992,4.7,62,0.7000000000000001 +2020,4,8,20,0,24.400000000000002,1.48,0.2137,0.6,0,0,0,7,23.5,0,0,0,0,0.258,94.99,137.45000000000002,0.13,991,4.5,63,0.7000000000000001 +2020,4,8,21,0,24.200000000000003,1.48,0.2126,0.6,0,0,0,6,23.400000000000002,0,0,0,0,0.258,95.38,122.85000000000001,0.13,991,4.4,67,0.7000000000000001 +2020,4,8,22,0,24,1.48,0.21100000000000002,0.6,0,0,0,7,23.3,0,0,0,0,0.257,95.89,108.10000000000001,0.13,992,4.2,69,0.7000000000000001 +2020,4,8,23,0,24.3,1.49,0.2086,0.6,0,0,0,7,23.6,0,0,0,0,0.256,95.63,93.28,0.13,992,4.1000000000000005,68,0.7000000000000001 +2020,4,9,0,0,25.6,1.5,0.2132,0.6,66,343,136,0,24.200000000000003,66,343,0,136,0.256,91.98,78.36,0.13,993,4.1000000000000005,64,1.3 +2020,4,9,1,0,27,1.52,0.21930000000000002,0.6,115,593,380,0,24.5,115,593,0,380,0.257,86.05,63.53,0.13,994,4.1000000000000005,59,1.5 +2020,4,9,2,0,28.5,1.53,0.2267,0.6,145,716,618,0,24.3,145,716,0,618,0.258,78.16,48.68,0.13,994,4,54,1.6 +2020,4,9,3,0,29.6,1.55,0.2406,0.6,168,777,813,0,24.1,168,777,0,813,0.259,72.24,33.86,0.13,993,4,55,1.7000000000000002 +2020,4,9,4,0,30.400000000000002,1.55,0.2457,0.6,180,813,948,0,23.8,180,813,0,948,0.259,68.04,19.17,0.13,993,3.9000000000000004,59,1.6 +2020,4,9,5,0,31,1.55,0.24910000000000002,0.6,186,826,1007,1,23.6,186,826,0,1007,0.259,64.68,5.82,0.13,992,3.9000000000000004,62,1.5 +2020,4,9,6,0,31.3,1.56,0.2883,0.6,200,799,981,1,23.3,200,799,0,981,0.258,62.68,12.08,0.13,991,3.9000000000000004,66,1.4000000000000001 +2020,4,9,7,0,31.400000000000002,1.55,0.29400000000000004,0.6,194,768,881,0,23.200000000000003,194,768,0,881,0.258,61.79,26.52,0.13,990,3.9000000000000004,71,1.4000000000000001 +2020,4,9,8,0,31.5,1.54,0.3019,0.6,180,708,713,3,23.3,312,408,0,619,0.257,61.79,41.300000000000004,0.13,990,3.9000000000000004,75,1.4000000000000001 +2020,4,9,9,0,31.1,1.53,0.3189,0.6,160,596,492,2,23.200000000000003,201,440,0,446,0.256,62.85,56.14,0.13,990,4,74,1.3 +2020,4,9,10,0,29.700000000000003,1.53,0.32530000000000003,0.6,113,409,246,0,23.5,113,409,0,246,0.256,69.24,70.98,0.13,990,4.1000000000000005,73,1.1 +2020,4,9,11,0,28.200000000000003,1.53,0.31470000000000004,0.6,26,84,32,0,24.3,26,84,0,32,0.256,79.38,85.71000000000001,0.13,991,4.1000000000000005,73,0.8 +2020,4,9,12,0,27.400000000000002,1.54,0.2908,0.6,0,0,0,0,24,0,0,0,0,0.256,81.85000000000001,100.71000000000001,0.13,992,4.1000000000000005,72,0.8 +2020,4,9,13,0,26.700000000000003,1.56,0.2559,0.6,0,0,0,3,23.900000000000002,0,0,0,0,0.256,84.64,115.48,0.13,993,4,70,0.8 +2020,4,9,14,0,25.900000000000002,1.56,0.2301,0.6,0,0,0,0,23.6,0,0,0,0,0.257,87.34,130.15,0.13,993,3.9000000000000004,66,0.7000000000000001 +2020,4,9,15,0,25.3,1.54,0.2134,0.6,0,0,0,3,23.400000000000002,0,0,0,0,0.257,89.25,144.57,0.13,993,3.8000000000000003,62,0.6000000000000001 +2020,4,9,16,0,24.700000000000003,1.52,0.2048,0.6,0,0,0,3,23.200000000000003,0,0,0,0,0.257,91.52,158.25,0.13,993,3.6,57,0.6000000000000001 +2020,4,9,17,0,24.200000000000003,1.5,0.2008,0.6,0,0,0,0,23.1,0,0,0,0,0.257,93.5,168.22,0.13,993,3.5,50,0.6000000000000001 +2020,4,9,18,0,23.700000000000003,1.48,0.1971,0.6,0,0,0,7,23,0,0,0,0,0.257,95.60000000000001,164.1,0.13,992,3.4000000000000004,42,0.7000000000000001 +2020,4,9,19,0,23.3,1.48,0.193,0.6,0,0,0,7,22.900000000000002,0,0,0,0,0.258,97.42,151.46,0.13,992,3.4000000000000004,38,0.8 +2020,4,9,20,0,23,1.48,0.1884,0.6,0,0,0,7,22.8,0,0,0,0,0.258,98.74000000000001,137.29,0.13,992,3.4000000000000004,36,0.9 +2020,4,9,21,0,22.8,1.48,0.1836,0.6,0,0,0,7,22.700000000000003,0,0,0,0,0.259,99.43,122.72,0.13,992,3.4000000000000004,37,1 +2020,4,9,22,0,22.6,1.49,0.1792,0.6,0,0,0,1,22.6,0,0,0,0,0.259,100,107.99000000000001,0.13,992,3.4000000000000004,38,1 +2020,4,9,23,0,23.200000000000003,1.5,0.1733,0.6,0,0,0,8,22.8,0,0,0,0,0.258,97.47,93.19,0.13,993,3.5,39,1.2000000000000002 +2020,4,10,0,0,25.200000000000003,1.51,0.1623,0.6,61,401,143,6,23.3,74,152,3,105,0.258,89.13,78.28,0.13,994,3.5,44,2.1 +2020,4,10,1,0,26.900000000000002,1.54,0.1495,0.6,98,663,394,8,23.400000000000002,163,367,0,327,0.258,81.26,63.47,0.13,994,3.6,47,2.4000000000000004 +2020,4,10,2,0,28.400000000000002,1.57,0.1376,0.6,114,789,635,8,23.3,258,428,0,541,0.258,73.79,48.63,0.13,994,3.7,51,2.3000000000000003 +2020,4,10,3,0,29.700000000000003,1.58,0.16010000000000002,0.6,135,833,828,0,22.900000000000002,135,833,0,828,0.258,67.11,33.83,0.13,994,3.8000000000000003,55,2.2 +2020,4,10,4,0,30.700000000000003,1.6,0.15280000000000002,0.6,140,871,963,0,22.8,140,871,0,963,0.257,62.71,19.19,0.13,993,3.9000000000000004,60,2.2 +2020,4,10,5,0,31.3,1.6,0.1514,0.6,142,882,1020,0,22.700000000000003,142,882,0,1020,0.257,60.45,6.07,0.13,992,4.1000000000000005,65,2 +2020,4,10,6,0,31.700000000000003,1.6,0.14250000000000002,0.6,137,883,1000,0,22.700000000000003,137,883,0,1000,0.256,58.980000000000004,12.280000000000001,0.13,991,4.2,70,1.7000000000000002 +2020,4,10,7,0,31.8,1.58,0.14830000000000002,0.6,135,854,899,0,22.700000000000003,135,854,0,899,0.256,58.56,26.64,0.13,991,4.4,76,1.4000000000000001 +2020,4,10,8,0,31.5,1.57,0.1532,0.6,127,802,728,1,22.700000000000003,127,802,0,728,0.256,59.65,41.39,0.13,990,4.6000000000000005,80,1.4000000000000001 +2020,4,10,9,0,31.1,1.55,0.1622,0.6,114,707,507,0,23,114,707,0,507,0.257,62.18,56.21,0.13,990,4.7,80,1.2000000000000002 +2020,4,10,10,0,29.900000000000002,1.54,0.1656,0.6,85,532,257,0,23.3,85,532,0,257,0.257,67.71000000000001,71.04,0.13,991,4.9,78,1 +2020,4,10,11,0,28.1,1.53,0.17200000000000001,0.6,26,144,37,0,24.5,26,144,0,37,0.257,80.65,85.76,0.13,992,5.1000000000000005,80,0.7000000000000001 +2020,4,10,12,0,27.400000000000002,1.51,0.185,0.6,0,0,0,3,24.5,0,0,0,0,0.257,84.01,100.74000000000001,0.13,993,5.2,81,0.7000000000000001 +2020,4,10,13,0,27.1,1.48,0.2026,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.258,85.27,115.5,0.13,993,5.300000000000001,81,0.6000000000000001 +2020,4,10,14,0,26.8,1.46,0.2152,0.6,0,0,0,3,24.3,0,0,0,0,0.259,86.45,130.14000000000001,0.13,994,5.4,78,0.6000000000000001 +2020,4,10,15,0,26.5,1.45,0.2242,0.6,0,0,0,0,24.3,0,0,0,0,0.259,87.66,144.53,0.13,994,5.4,74,0.5 +2020,4,10,16,0,26.1,1.44,0.229,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.259,89.21000000000001,158.12,0.13,994,5.300000000000001,71,0.5 +2020,4,10,17,0,25.700000000000003,1.43,0.22710000000000002,0.6,0,0,0,0,24,0,0,0,0,0.258,90.46000000000001,167.89000000000001,0.13,993,5.300000000000001,68,0.6000000000000001 +2020,4,10,18,0,25.3,1.42,0.2325,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.257,91.73,163.8,0.13,993,5.2,64,0.7000000000000001 +2020,4,10,19,0,24.900000000000002,1.41,0.23320000000000002,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.257,93.17,151.26,0.13,992,5.1000000000000005,58,0.8 +2020,4,10,20,0,24.5,1.41,0.2263,0.6,0,0,0,0,23.6,0,0,0,0,0.256,94.7,137.14000000000001,0.13,992,5,55,0.9 +2020,4,10,21,0,24.3,1.42,0.2202,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.256,94.91,122.60000000000001,0.13,992,4.9,52,0.9 +2020,4,10,22,0,24,1.44,0.2119,0.6,0,0,0,0,23.3,0,0,0,0,0.256,95.83,107.89,0.13,992,4.9,51,0.9 +2020,4,10,23,0,24.3,1.45,0.2039,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.255,94.61,93.10000000000001,0.13,993,4.9,55,1.2000000000000002 +2020,4,11,0,0,25.400000000000002,1.47,0.1967,0.6,66,354,138,8,23.6,66,289,3,126,0.255,89.87,78.2,0.13,994,4.9,64,1.8 +2020,4,11,1,0,27,1.48,0.19110000000000002,0.6,108,610,381,7,23.700000000000003,181,256,0,296,0.255,82.01,63.4,0.13,994,4.9,68,2.2 +2020,4,11,2,0,28.400000000000002,1.49,0.19,0.6,134,733,618,7,23.700000000000003,281,343,0,508,0.256,75.68,48.58,0.13,994,5,66,2.2 +2020,4,11,3,0,29.700000000000003,1.48,0.1694,0.6,141,813,816,0,23.8,141,813,0,816,0.257,70.47,33.81,0.13,994,5,71,1.9000000000000001 +2020,4,11,4,0,30.400000000000002,1.48,0.17550000000000002,0.6,152,842,947,0,23.700000000000003,152,842,0,947,0.257,67.65,19.21,0.13,994,5.1000000000000005,80,1.7000000000000002 +2020,4,11,5,0,30.8,1.47,0.18050000000000002,0.6,157,852,1004,3,23.700000000000003,498,297,3,794,0.257,65.8,6.33,0.13,993,5.2,90,1.6 +2020,4,11,6,0,30.900000000000002,1.45,0.1658,0.6,150,856,985,8,23.5,452,372,0,815,0.256,64.96000000000001,12.49,0.13,992,5.300000000000001,100,1.5 +2020,4,11,7,0,30.700000000000003,1.46,0.165,0.6,143,832,887,7,23.5,416,63,0,472,0.256,65.45,26.77,0.13,991,5.4,112,1.5 +2020,4,11,8,0,30.400000000000002,1.48,0.1626,0.6,131,787,721,7,23.5,255,16,0,267,0.257,66.79,41.49,0.13,991,5.4,122,1.5 +2020,4,11,9,0,30,1.48,0.16770000000000002,0.6,116,695,502,7,23.900000000000002,162,1,0,163,0.257,69.79,56.29,0.13,991,5.4,124,1.3 +2020,4,11,10,0,29.200000000000003,1.46,0.1811,0.6,89,510,254,7,23.8,88,0,0,88,0.257,72.92,71.10000000000001,0.13,991,5.5,122,1.2000000000000002 +2020,4,11,11,0,27.700000000000003,1.45,0.1904,0.6,27,125,36,0,24.900000000000002,27,125,0,36,0.258,84.82000000000001,85.8,0.13,991,5.5,122,0.8 +2020,4,11,12,0,27.200000000000003,1.44,0.19210000000000002,0.6,0,0,0,3,24.8,0,0,0,0,0.259,86.5,100.78,0.13,992,5.5,116,0.8 +2020,4,11,13,0,26.8,1.44,0.18710000000000002,0.6,0,0,0,1,24.6,0,0,0,0,0.26,87.73,115.52,0.13,992,5.5,104,0.9 +2020,4,11,14,0,26.3,1.44,0.1763,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.261,89.35000000000001,130.13,0.13,993,5.5,90,0.9 +2020,4,11,15,0,25.900000000000002,1.44,0.16740000000000002,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.261,90.10000000000001,144.48,0.13,993,5.4,84,1 +2020,4,11,16,0,25.5,1.43,0.16160000000000002,0.6,0,0,0,7,24,0,0,0,0,0.26,91.18,157.98,0.13,993,5.4,80,1 +2020,4,11,17,0,25.1,1.42,0.154,0.6,0,0,0,3,23.8,0,0,0,0,0.259,92.48,167.55,0.13,993,5.4,76,1 +2020,4,11,18,0,24.700000000000003,1.4000000000000001,0.1486,0.6,0,0,0,3,23.6,0,0,0,0,0.258,93.86,163.49,0.13,992,5.4,72,1 +2020,4,11,19,0,24.5,1.3900000000000001,0.1495,0.6,0,0,0,3,23.6,0,0,0,0,0.257,94.68,151.06,0.13,991,5.4,69,0.9 +2020,4,11,20,0,24.3,1.3900000000000001,0.151,0.6,0,0,0,8,23.6,0,0,0,0,0.257,95.73,136.99,0.13,991,5.300000000000001,67,0.8 +2020,4,11,21,0,24.200000000000003,1.3900000000000001,0.15280000000000002,0.6,0,0,0,8,23.5,0,0,0,0,0.256,96.09,122.47,0.13,991,5.300000000000001,64,0.8 +2020,4,11,22,0,24.200000000000003,1.4000000000000001,0.1537,0.6,0,0,0,1,23.5,0,0,0,0,0.256,96.15,107.78,0.13,992,5.300000000000001,59,0.8 +2020,4,11,23,0,24.700000000000003,1.41,0.151,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.254,95.05,93.01,0.13,992,5.2,55,1 +2020,4,12,0,0,26.3,1.42,0.1431,0.6,61,406,144,0,24.3,61,406,0,144,0.254,88.56,78.13,0.14,992,5.2,58,1.6 +2020,4,12,1,0,27.700000000000003,1.44,0.13340000000000002,0.6,94,662,391,0,24.6,94,662,0,391,0.254,83.21000000000001,63.34,0.14,993,5.2,61,1.8 +2020,4,12,2,0,29,1.46,0.1275,0.6,112,781,629,0,24.700000000000003,112,781,0,629,0.255,77.57000000000001,48.54,0.14,993,5.2,59,1.9000000000000001 +2020,4,12,3,0,30,1.48,0.19210000000000002,0.6,151,795,812,0,24.6,151,795,0,812,0.257,72.91,33.79,0.14,993,5.300000000000001,61,1.7000000000000002 +2020,4,12,4,0,30.6,1.47,0.19440000000000002,0.6,161,828,943,0,24.5,161,828,0,943,0.259,70.06,19.25,0.14,992,5.300000000000001,67,1.5 +2020,4,12,5,0,31.1,1.47,0.197,0.6,166,840,1000,0,24.5,166,840,0,1000,0.26,68.08,6.6000000000000005,0.14,991,5.4,73,1.3 +2020,4,12,6,0,31.3,1.46,0.1882,0.6,161,840,981,3,24.400000000000002,346,21,0,366,0.26,66.97,12.700000000000001,0.14,990,5.4,81,1.1 +2020,4,12,7,0,31.200000000000003,1.45,0.1945,0.6,157,811,881,3,24.400000000000002,329,22,0,349,0.26,67.21000000000001,26.89,0.14,989,5.5,92,1.1 +2020,4,12,8,0,30.900000000000002,1.46,0.1932,0.6,144,763,715,3,24.5,318,387,0,607,0.26,68.7,41.58,0.14,989,5.5,102,1.2000000000000002 +2020,4,12,9,0,30.700000000000003,1.45,0.2071,0.6,129,660,494,8,25.1,142,620,0,485,0.26,72.23,56.370000000000005,0.14,989,5.6000000000000005,107,1 +2020,4,12,10,0,29.700000000000003,1.44,0.22340000000000002,0.6,97,469,248,9,25,12,0,0,12,0.26,75.8,71.16,0.14,989,5.6000000000000005,110,1 +2020,4,12,11,0,28.3,1.44,0.2205,0.6,26,107,34,6,25.700000000000003,4,0,3,4,0.261,86,85.85000000000001,0.14,990,5.6000000000000005,121,0.7000000000000001 +2020,4,12,12,0,27.8,1.44,0.22260000000000002,0.6,0,0,0,7,25.6,0,0,0,0,0.263,87.8,100.81,0.14,991,5.6000000000000005,131,0.7000000000000001 +2020,4,12,13,0,27.400000000000002,1.44,0.2223,0.6,0,0,0,8,25.5,0,0,0,0,0.264,89.21000000000001,115.53,0.14,992,5.6000000000000005,135,0.7000000000000001 +2020,4,12,14,0,27.200000000000003,1.44,0.2154,0.6,0,0,0,3,25.3,0,0,0,0,0.265,89.16,130.12,0.14,992,5.6000000000000005,134,0.7000000000000001 +2020,4,12,15,0,26.900000000000002,1.44,0.21350000000000002,0.6,0,0,0,8,25.1,0,0,0,0,0.266,89.63,144.42000000000002,0.14,993,5.6000000000000005,125,0.6000000000000001 +2020,4,12,16,0,26.400000000000002,1.43,0.2106,0.6,0,0,0,3,24.900000000000002,0,0,0,0,0.265,91.37,157.84,0.14,992,5.6000000000000005,114,0.6000000000000001 +2020,4,12,17,0,26,1.42,0.2024,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.264,92.55,167.22,0.14,991,5.5,100,0.5 +2020,4,12,18,0,25.6,1.41,0.1971,0.6,0,0,0,7,24.6,0,0,0,0,0.263,93.96000000000001,163.18,0.14,990,5.5,90,0.5 +2020,4,12,19,0,25.3,1.4000000000000001,0.18810000000000002,0.6,0,0,0,7,24.5,0,0,0,0,0.262,95.10000000000001,150.85,0.14,990,5.5,96,0.5 +2020,4,12,20,0,25,1.3800000000000001,0.1764,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.261,96.51,136.84,0.14,989,5.5,116,0.6000000000000001 +2020,4,12,21,0,24.900000000000002,1.37,0.1817,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.259,97.02,122.35000000000001,0.14,989,5.6000000000000005,134,0.7000000000000001 +2020,4,12,22,0,24.8,1.35,0.1766,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.259,97.4,107.68,0.14,989,5.7,143,0.8 +2020,4,12,23,0,25.1,1.34,0.16740000000000002,0.6,0,0,0,6,24.700000000000003,0,0,0,0,0.259,97.39,92.92,0.14,989,5.9,141,0.9 +2020,4,13,0,0,26.1,1.32,0.1751,0.6,65,366,141,7,25.3,69,0,3,69,0.259,95.31,78.06,0.14,990,6.1000000000000005,136,1.5 +2020,4,13,1,0,27,1.32,0.1741,0.6,107,615,384,8,25.700000000000003,173,34,0,188,0.259,92.42,63.29,0.14,991,6.2,126,1.7000000000000002 +2020,4,13,2,0,27.6,1.32,0.1652,0.6,128,742,619,8,25.5,276,364,0,517,0.258,88.25,48.5,0.14,992,6.300000000000001,122,1.6 +2020,4,13,3,0,28.200000000000003,1.35,0.1961,0.6,154,784,806,8,25.400000000000002,315,511,0,740,0.257,85.03,33.77,0.14,993,6.4,115,1.3 +2020,4,13,4,0,28.5,1.3800000000000001,0.17370000000000002,0.6,154,835,941,3,25.400000000000002,406,450,0,831,0.255,83.45,19.29,0.14,992,6.300000000000001,115,1.2000000000000002 +2020,4,13,5,0,28.900000000000002,1.4000000000000001,0.1479,0.6,144,865,1003,8,25.400000000000002,456,381,0,834,0.254,81.34,6.88,0.14,991,6.1000000000000005,110,1 +2020,4,13,6,0,29.200000000000003,1.42,0.1927,0.6,163,833,975,8,25.3,489,286,0,767,0.254,79.47,12.91,0.14,990,6,76,0.9 +2020,4,13,7,0,29.3,1.44,0.17170000000000002,0.6,146,823,880,8,25.3,439,268,0,678,0.255,78.9,27.02,0.14,989,5.9,52,1.1 +2020,4,13,8,0,29.3,1.46,0.1582,0.6,129,787,716,6,25.6,51,0,0,51,0.256,80.53,41.68,0.14,988,5.7,52,1.1 +2020,4,13,9,0,28.900000000000002,1.46,0.1549,0.6,110,702,498,6,25.400000000000002,122,0,0,122,0.258,81.39,56.44,0.14,988,5.7,52,1.1 +2020,4,13,10,0,28.200000000000003,1.46,0.1572,0.6,82,530,252,9,25.700000000000003,12,0,0,12,0.26,86.12,71.22,0.14,989,5.6000000000000005,49,0.7000000000000001 +2020,4,13,11,0,27.5,1.45,0.1605,0.6,25,141,35,9,25.1,4,0,3,4,0.262,86.64,85.89,0.14,990,5.6000000000000005,46,0.5 +2020,4,13,12,0,27.200000000000003,1.46,0.16290000000000002,0.6,0,0,0,9,24.900000000000002,0,0,0,0,0.264,87.18,100.84,0.14,991,5.5,40,0.5 +2020,4,13,13,0,26.700000000000003,1.46,0.1607,0.6,0,0,0,6,24.8,0,0,0,0,0.265,89.54,115.54,0.14,992,5.5,34,0.5 +2020,4,13,14,0,26.400000000000002,1.47,0.15480000000000002,0.6,0,0,0,6,24.700000000000003,0,0,0,0,0.266,90.29,130.11,0.14,992,5.4,35,0.5 +2020,4,13,15,0,25.900000000000002,1.48,0.1515,0.6,0,0,0,6,24.5,0,0,0,0,0.267,92.24,144.36,0.14,993,5.300000000000001,45,0.6000000000000001 +2020,4,13,16,0,25.400000000000002,1.48,0.1491,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.267,94.06,157.70000000000002,0.14,992,5.2,56,0.7000000000000001 +2020,4,13,17,0,24.900000000000002,1.47,0.1499,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.267,95.98,166.89000000000001,0.14,992,5,59,0.9 +2020,4,13,18,0,24.6,1.45,0.1557,0.6,0,0,0,7,24,0,0,0,0,0.267,96.54,162.88,0.14,991,4.9,59,0.9 +2020,4,13,19,0,24.3,1.43,0.1641,0.6,0,0,0,7,23.8,0,0,0,0,0.267,97,150.65,0.14,991,4.800000000000001,56,0.9 +2020,4,13,20,0,24,1.42,0.1713,0.6,0,0,0,8,23.6,0,0,0,0,0.266,97.55,136.68,0.14,991,4.7,52,0.9 +2020,4,13,21,0,23.8,1.44,0.1751,0.6,0,0,0,3,23.400000000000002,0,0,0,0,0.265,97.51,122.23,0.14,991,4.6000000000000005,47,0.9 +2020,4,13,22,0,23.700000000000003,1.46,0.1762,0.6,0,0,0,8,23.200000000000003,0,0,0,0,0.265,97.12,107.58,0.14,991,4.5,45,1 +2020,4,13,23,0,24,1.49,0.1772,0.6,0,0,0,3,23.400000000000002,0,0,0,0,0.263,96.62,92.84,0.14,992,4.4,48,1.3 +2020,4,14,0,0,25,1.51,0.1812,0.6,64,378,143,1,24,64,378,0,143,0.263,94.10000000000001,77.99,0.14,992,4.4,52,2.1 +2020,4,14,1,0,26.200000000000003,1.54,0.18460000000000001,0.6,107,623,388,0,24.200000000000003,107,623,0,388,0.263,88.65,63.230000000000004,0.14,993,4.3,56,2.5 +2020,4,14,2,0,27.6,1.56,0.19,0.6,133,739,623,3,24,290,305,0,493,0.263,80.8,48.46,0.14,993,4.3,58,2.4000000000000004 +2020,4,14,3,0,28.900000000000002,1.57,0.21930000000000002,0.6,159,786,813,7,23.6,408,228,0,598,0.263,73.18,33.76,0.14,993,4.3,62,2.2 +2020,4,14,4,0,29.900000000000002,1.58,0.228,0.6,172,817,943,6,23.5,485,200,0,673,0.263,68.5,19.34,0.14,992,4.3,66,1.9000000000000001 +2020,4,14,5,0,30.700000000000003,1.59,0.2333,0.6,178,828,1000,6,23.5,517,202,0,717,0.263,65.49,7.16,0.14,991,4.3,67,1.6 +2020,4,14,6,0,31.3,1.56,0.1746,0.6,153,858,988,7,23.5,482,305,0,779,0.264,63.190000000000005,13.13,0.14,990,4.3,67,1.4000000000000001 +2020,4,14,7,0,31.5,1.56,0.1773,0.6,148,832,888,6,23.400000000000002,451,180,0,611,0.266,62.07,27.150000000000002,0.14,990,4.3,68,1.3 +2020,4,14,8,0,31.400000000000002,1.56,0.17950000000000002,0.6,138,782,721,3,23.200000000000003,338,312,0,570,0.268,61.97,41.77,0.14,989,4.3,71,1.3 +2020,4,14,9,0,31.200000000000003,1.54,0.188,0.6,121,684,499,7,23.6,220,39,0,242,0.269,64.12,56.52,0.14,990,4.3,74,1.2000000000000002 +2020,4,14,10,0,30.200000000000003,1.54,0.1932,0.6,90,504,251,3,23.700000000000003,90,504,5,251,0.27,68.19,71.28,0.14,990,4.4,76,0.9 +2020,4,14,11,0,28.5,1.53,0.1971,0.6,25,124,34,8,24.3,25,124,5,34,0.27,77.87,85.93,0.14,991,4.5,79,0.6000000000000001 +2020,4,14,12,0,27.8,1.5,0.20550000000000002,0.6,0,0,0,7,24.1,0,0,0,0,0.27,80.5,100.87,0.14,992,4.5,83,0.7000000000000001 +2020,4,14,13,0,27.1,1.47,0.21250000000000002,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.269,84.24,115.55,0.14,992,4.6000000000000005,87,0.7000000000000001 +2020,4,14,14,0,26.5,1.45,0.21610000000000001,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.268,87.2,130.09,0.14,993,4.7,90,0.8 +2020,4,14,15,0,26,1.43,0.21400000000000002,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.267,89.75,144.3,0.14,993,4.7,90,0.8 +2020,4,14,16,0,25.5,1.41,0.2073,0.6,0,0,0,3,24,0,0,0,0,0.266,91.66,157.55,0.14,993,4.7,86,0.8 +2020,4,14,17,0,25,1.41,0.2013,0.6,0,0,0,3,23.8,0,0,0,0,0.265,93.15,166.56,0.14,992,4.7,78,0.8 +2020,4,14,18,0,24.5,1.4000000000000001,0.2,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.263,95.10000000000001,162.57,0.14,992,4.6000000000000005,66,0.8 +2020,4,14,19,0,24.200000000000003,1.4000000000000001,0.20070000000000002,0.6,0,0,0,7,23.6,0,0,0,0,0.261,96.18,150.45000000000002,0.14,991,4.6000000000000005,55,0.8 +2020,4,14,20,0,24.1,1.4000000000000001,0.2011,0.6,0,0,0,7,23.5,0,0,0,0,0.26,96.36,136.53,0.14,991,4.6000000000000005,50,0.8 +2020,4,14,21,0,23.900000000000002,1.41,0.20020000000000002,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.26,97.09,122.10000000000001,0.14,991,4.6000000000000005,46,0.9 +2020,4,14,22,0,23.8,1.42,0.1967,0.6,0,0,0,7,23.3,0,0,0,0,0.26,97.29,107.48,0.14,992,4.6000000000000005,43,0.9 +2020,4,14,23,0,24.200000000000003,1.43,0.19210000000000002,0.6,0,0,0,7,23.6,0,0,0,0,0.26,96.3,92.76,0.14,993,4.6000000000000005,40,1 +2020,4,15,0,0,25.900000000000002,1.44,0.1874,0.6,66,369,143,7,23.900000000000002,77,76,3,93,0.261,88.98,77.92,0.14,993,4.6000000000000005,43,1.7000000000000002 +2020,4,15,1,0,27.400000000000002,1.45,0.1864,0.6,109,616,387,7,24.200000000000003,172,324,0,318,0.261,82.7,63.18,0.14,994,4.7,46,1.9000000000000001 +2020,4,15,2,0,28.8,1.45,0.1882,0.6,134,735,622,7,24.400000000000002,286,325,0,501,0.26,77.23,48.43,0.14,994,4.7,48,1.8 +2020,4,15,3,0,29.8,1.44,0.226,0.6,164,776,809,3,24.5,320,487,3,726,0.261,73.41,33.76,0.14,993,4.6000000000000005,52,1.6 +2020,4,15,4,0,30.400000000000002,1.44,0.23070000000000002,0.6,176,809,939,8,24.5,404,478,0,854,0.261,70.94,19.39,0.14,993,4.6000000000000005,55,1.5 +2020,4,15,5,0,30.700000000000003,1.44,0.2363,0.6,182,820,995,7,24.5,480,337,0,814,0.261,69.48,7.45,0.14,992,4.6000000000000005,59,1.3 +2020,4,15,6,0,30.700000000000003,1.46,0.3125,0.6,211,772,962,8,24.400000000000002,478,323,0,793,0.26,69.02,13.36,0.14,991,4.6000000000000005,62,1.2000000000000002 +2020,4,15,7,0,30.6,1.47,0.31170000000000003,0.6,202,744,863,3,24.3,384,405,0,744,0.259,69.34,27.29,0.14,990,4.6000000000000005,67,1 +2020,4,15,8,0,30.6,1.48,0.2962,0.6,179,697,698,7,24.6,349,93,0,418,0.258,70.5,41.87,0.14,990,4.7,75,1 +2020,4,15,9,0,30.1,1.48,0.2924,0.6,151,599,481,0,24.400000000000002,151,599,0,481,0.257,71.41,56.59,0.14,990,4.800000000000001,86,0.9 +2020,4,15,10,0,29.1,1.49,0.2931,0.6,106,416,239,0,24.6,106,416,0,239,0.257,76.65,71.34,0.14,990,4.9,94,0.8 +2020,4,15,11,0,28.1,1.5,0.28300000000000003,0.6,24,82,30,8,24.900000000000002,24,82,5,30,0.257,82.77,85.98,0.14,991,5,107,0.6000000000000001 +2020,4,15,12,0,27.700000000000003,1.51,0.27090000000000003,0.6,0,0,0,6,24.6,0,0,0,0,0.257,83.28,100.89,0.14,992,5,110,0.7000000000000001 +2020,4,15,13,0,27.1,1.52,0.2611,0.6,0,0,0,6,24.6,0,0,0,0,0.258,85.99,115.55,0.14,992,5.1000000000000005,107,0.7000000000000001 +2020,4,15,14,0,26.6,1.51,0.2524,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.258,87.96000000000001,130.07,0.14,992,5.1000000000000005,97,0.7000000000000001 +2020,4,15,15,0,26.200000000000003,1.49,0.24780000000000002,0.6,0,0,0,1,24.3,0,0,0,0,0.259,89.43,144.23,0.14,993,5.1000000000000005,86,0.6000000000000001 +2020,4,15,16,0,25.8,1.46,0.2417,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.259,90.69,157.39000000000001,0.14,992,5.1000000000000005,76,0.6000000000000001 +2020,4,15,17,0,25.400000000000002,1.44,0.23600000000000002,0.6,0,0,0,0,24,0,0,0,0,0.26,91.81,166.23,0.14,991,5.1000000000000005,64,0.6000000000000001 +2020,4,15,18,0,25,1.42,0.23450000000000001,0.6,0,0,0,0,23.8,0,0,0,0,0.26,93.17,162.27,0.14,991,5.1000000000000005,52,0.6000000000000001 +2020,4,15,19,0,24.700000000000003,1.4000000000000001,0.24070000000000003,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.26,94.35000000000001,150.24,0.14,990,5.1000000000000005,51,0.6000000000000001 +2020,4,15,20,0,24.6,1.3900000000000001,0.2424,0.6,0,0,0,0,23.8,0,0,0,0,0.259,95.2,136.38,0.14,990,5.2,56,0.7000000000000001 +2020,4,15,21,0,24.400000000000002,1.4000000000000001,0.2401,0.6,0,0,0,1,23.8,0,0,0,0,0.259,96.48,121.98,0.14,991,5.2,61,0.7000000000000001 +2020,4,15,22,0,24.3,1.41,0.2295,0.6,0,0,0,0,23.8,0,0,0,0,0.259,96.99000000000001,107.38,0.14,991,5.2,68,0.9 +2020,4,15,23,0,24.700000000000003,1.42,0.2107,0.6,0,0,0,0,24.1,0,0,0,0,0.26,96.45,92.67,0.14,991,5.1000000000000005,75,1.2000000000000002 +2020,4,16,0,0,25.8,1.44,0.1981,0.6,67,358,143,0,24.8,67,358,0,143,0.26,94.15,77.85000000000001,0.14,992,5,75,2.1 +2020,4,16,1,0,27.3,1.45,0.18910000000000002,0.6,109,612,386,0,25.1,109,612,0,386,0.26,87.72,63.13,0.14,992,5,75,2.5 +2020,4,16,2,0,28.900000000000002,1.48,0.1776,0.6,129,741,621,0,25,129,741,0,621,0.26,79.29,48.4,0.14,992,5,70,2.3000000000000003 +2020,4,16,3,0,29.900000000000002,1.49,0.1943,0.6,150,793,809,0,24.900000000000002,150,793,0,809,0.26,74.55,33.76,0.14,992,5.1000000000000005,61,1.9000000000000001 +2020,4,16,4,0,30.6,1.51,0.1781,0.6,152,838,942,0,24.8,152,838,0,942,0.26,71.24,19.45,0.14,992,5.1000000000000005,61,1.5 +2020,4,16,5,0,31,1.52,0.1671,0.6,150,858,1001,3,24.700000000000003,507,254,0,758,0.26,69.26,7.74,0.14,991,5.1000000000000005,68,1.1 +2020,4,16,6,0,31.200000000000003,1.5,0.16820000000000002,0.6,149,853,978,3,24.6,491,101,0,589,0.26,68.23,13.58,0.14,990,5.1000000000000005,72,1 +2020,4,16,7,0,31.200000000000003,1.5,0.1661,0.6,142,830,879,8,24.5,423,317,0,704,0.261,67.76,27.42,0.14,990,5.1000000000000005,75,0.8 +2020,4,16,8,0,30.900000000000002,1.51,0.1615,0.6,129,786,714,9,24.5,134,0,0,134,0.261,68.59,41.97,0.14,989,5.1000000000000005,89,0.6000000000000001 +2020,4,16,9,0,30.8,1.52,0.15990000000000001,0.6,111,699,495,9,24.700000000000003,28,0,0,28,0.262,69.81,56.67,0.14,989,5.1000000000000005,96,0.6000000000000001 +2020,4,16,10,0,29.900000000000002,1.51,0.1633,0.6,82,524,250,9,25,12,0,0,12,0.261,74.92,71.4,0.14,989,5.1000000000000005,106,0.5 +2020,4,16,11,0,28.700000000000003,1.51,0.1643,0.6,24,138,34,6,24.5,4,0,3,4,0.261,77.95,86.02,0.14,990,5.1000000000000005,121,0.4 +2020,4,16,12,0,28.200000000000003,1.51,0.1645,0.6,0,0,0,7,24.1,0,0,0,0,0.261,78.45,100.92,0.14,990,5.1000000000000005,122,0.4 +2020,4,16,13,0,27.400000000000002,1.52,0.1628,0.6,0,0,0,7,24.3,0,0,0,0,0.26,83.17,115.56,0.14,991,5,105,0.5 +2020,4,16,14,0,26.6,1.51,0.1615,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.26,86.47,130.04,0.14,992,5,95,0.6000000000000001 +2020,4,16,15,0,26,1.49,0.16060000000000002,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.259,88.15,144.16,0.14,992,4.9,89,0.6000000000000001 +2020,4,16,16,0,25.6,1.47,0.1585,0.6,0,0,0,7,23.6,0,0,0,0,0.259,88.86,157.23,0.14,992,4.800000000000001,83,0.6000000000000001 +2020,4,16,17,0,25.200000000000003,1.46,0.1558,0.6,0,0,0,7,23.3,0,0,0,0,0.259,89.29,165.9,0.14,991,4.7,78,0.5 +2020,4,16,18,0,24.900000000000002,1.43,0.15610000000000002,0.6,0,0,0,7,23,0,0,0,0,0.259,89.38,161.97,0.14,991,4.6000000000000005,81,0.5 +2020,4,16,19,0,24.5,1.41,0.1592,0.6,0,0,0,8,22.900000000000002,0,0,0,0,0.259,90.64,150.04,0.14,990,4.6000000000000005,94,0.5 +2020,4,16,20,0,23.900000000000002,1.37,0.1631,0.6,0,0,0,7,22.8,0,0,0,0,0.258,93.42,136.23,0.14,990,4.6000000000000005,97,0.6000000000000001 +2020,4,16,21,0,23.5,1.34,0.1652,0.6,0,0,0,6,22.700000000000003,0,0,0,0,0.258,95.11,121.86,0.14,990,4.5,91,0.7000000000000001 +2020,4,16,22,0,23.3,1.33,0.1655,0.6,0,0,0,6,22.6,0,0,0,0,0.258,95.9,107.28,0.14,991,4.5,86,0.8 +2020,4,16,23,0,23.700000000000003,1.32,0.1637,0.6,0,0,0,6,23,0,0,0,0,0.257,95.72,92.59,0.14,991,4.4,81,1 +2020,4,17,0,0,25.1,1.34,0.1648,0.6,64,392,147,7,23.8,75,197,3,117,0.258,92.29,77.79,0.14,992,4.4,79,1.6 +2020,4,17,1,0,26.8,1.3800000000000001,0.1565,0.6,101,645,393,8,24.1,168,348,0,326,0.258,85.19,63.08,0.14,993,4.4,84,1.6 +2020,4,17,2,0,28.6,1.41,0.15030000000000002,0.6,120,767,629,7,23.700000000000003,274,372,0,521,0.258,74.82000000000001,48.370000000000005,0.14,993,4.4,98,1.4000000000000001 +2020,4,17,3,0,30,1.42,0.1462,0.6,131,832,822,7,23.5,330,455,0,708,0.258,68.37,33.76,0.14,993,4.4,114,1.2000000000000002 +2020,4,17,4,0,30.900000000000002,1.44,0.1479,0.6,139,863,953,7,23.6,434,365,0,778,0.258,65.06,19.52,0.14,993,4.4,121,1.2000000000000002 +2020,4,17,5,0,31.5,1.45,0.1492,0.6,143,875,1009,6,23.6,514,207,0,719,0.258,62.96,8.040000000000001,0.14,992,4.4,124,1.2000000000000002 +2020,4,17,6,0,31.900000000000002,1.4000000000000001,0.2217,0.6,175,825,976,6,23.5,491,103,0,591,0.259,61.32,13.81,0.14,991,4.3,125,1.2000000000000002 +2020,4,17,7,0,32,1.41,0.2177,0.6,166,802,877,6,23.400000000000002,397,51,0,442,0.259,60.58,27.560000000000002,0.14,990,4.3,125,1.2000000000000002 +2020,4,17,8,0,31.700000000000003,1.42,0.2137,0.6,150,754,709,6,23.400000000000002,357,170,0,483,0.26,61.49,42.07,0.14,989,4.2,126,1.2000000000000002 +2020,4,17,9,0,31.5,1.43,0.2101,0.6,127,663,491,6,23.900000000000002,243,175,0,339,0.26,63.99,56.74,0.14,989,4.2,131,1.2000000000000002 +2020,4,17,10,0,30.400000000000002,1.43,0.21400000000000002,0.6,93,480,245,8,23.6,118,242,0,195,0.26,66.88,71.46000000000001,0.14,989,4.2,135,1.2000000000000002 +2020,4,17,11,0,28.1,1.43,0.21730000000000002,0.6,24,105,31,8,24.8,23,16,3,24,0.26,82.18,86.06,0.14,990,4.2,149,0.9 +2020,4,17,12,0,27.5,1.44,0.22490000000000002,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.26,83.41,100.94,0.14,991,4.3,158,0.9 +2020,4,17,13,0,27.3,1.45,0.2376,0.6,0,0,0,1,24.200000000000003,0,0,0,0,0.26,83.34,115.56,0.14,992,4.4,156,0.7000000000000001 +2020,4,17,14,0,26.900000000000002,1.47,0.2494,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.26,85,130.01,0.14,993,4.5,137,0.7000000000000001 +2020,4,17,15,0,26.3,1.48,0.26080000000000003,0.6,0,0,0,6,24.1,0,0,0,0,0.26,87.66,144.09,0.14,993,4.5,125,0.7000000000000001 +2020,4,17,16,0,25.8,1.48,0.2808,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.26,89.54,157.07,0.14,993,4.5,117,0.7000000000000001 +2020,4,17,17,0,25.5,1.48,0.3057,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.26,90.04,165.57,0.14,993,4.5,103,0.5 +2020,4,17,18,0,25.200000000000003,1.47,0.33140000000000003,0.6,0,0,0,0,23.5,0,0,0,0,0.26,90.53,161.66,0.14,992,4.6000000000000005,75,0.4 +2020,4,17,19,0,24.8,1.47,0.3533,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.259,91.93,149.83,0.14,992,4.6000000000000005,37,0.5 +2020,4,17,20,0,24.5,1.47,0.3652,0.6,0,0,0,0,23.3,0,0,0,0,0.258,92.86,136.08,0.14,991,4.6000000000000005,17,0.6000000000000001 +2020,4,17,21,0,24.200000000000003,1.48,0.3677,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.258,93.98,121.74000000000001,0.14,992,4.6000000000000005,10,0.6000000000000001 +2020,4,17,22,0,24,1.5,0.35810000000000003,0.6,0,0,0,0,23.1,0,0,0,0,0.258,94.45,107.18,0.14,992,4.7,15,0.7000000000000001 +2020,4,17,23,0,24.400000000000002,1.51,0.3425,0.6,0,0,0,0,23.3,0,0,0,0,0.257,93.57000000000001,92.51,0.14,992,4.7,29,0.7000000000000001 +2020,4,18,0,0,25.8,1.53,0.3261,0.6,79,273,137,0,23.8,79,273,0,137,0.256,88.63,77.73,0.14,993,4.7,51,1.2000000000000002 +2020,4,18,1,0,27.5,1.55,0.309,0.6,137,523,375,0,24,137,523,0,375,0.255,81.13,63.04,0.14,993,4.800000000000001,67,1.3 +2020,4,18,2,0,29,1.56,0.29810000000000003,0.6,168,659,606,0,23.8,168,659,0,606,0.254,73.62,48.35,0.14,993,4.800000000000001,76,1.3 +2020,4,18,3,0,30.1,1.51,0.2061,0.6,155,786,809,0,23.900000000000002,155,786,0,809,0.254,69.49,33.77,0.14,993,4.9,86,1.2000000000000002 +2020,4,18,4,0,31,1.52,0.20550000000000002,0.6,164,822,938,0,24,164,822,0,938,0.254,66.55,19.6,0.14,992,4.9,91,1.2000000000000002 +2020,4,18,5,0,31.5,1.52,0.2117,0.6,170,831,993,8,24.1,445,399,0,840,0.254,65.02,8.34,0.14,991,4.9,91,1.2000000000000002 +2020,4,18,6,0,31.700000000000003,1.53,0.2752,0.6,195,788,959,3,24.200000000000003,494,244,0,731,0.254,64.6,14.040000000000001,0.14,991,5,92,1.2000000000000002 +2020,4,18,7,0,31.6,1.53,0.2899,0.6,194,753,860,3,24.3,416,68,0,477,0.254,65.31,27.69,0.14,990,5,94,1.3 +2020,4,18,8,0,31.200000000000003,1.52,0.30210000000000004,0.6,182,689,692,0,24.5,182,689,0,692,0.254,67.45,42.160000000000004,0.14,990,5.1000000000000005,96,1.4000000000000001 +2020,4,18,9,0,30.8,1.52,0.2967,0.6,152,592,476,8,25.1,182,485,0,448,0.253,71.9,56.82,0.14,990,5.2,98,1.3 +2020,4,18,10,0,29.5,1.51,0.3084,0.6,109,400,236,6,24.900000000000002,116,265,0,200,0.252,76.43,71.51,0.14,990,5.300000000000001,100,1.3 +2020,4,18,11,0,28,1.51,0.3196,0.6,23,68,28,9,25.700000000000003,19,0,3,19,0.253,87.41,86.09,0.14,991,5.300000000000001,106,0.9 +2020,4,18,12,0,27.400000000000002,1.51,0.3257,0.6,0,0,0,6,25.6,0,0,0,0,0.253,89.73,100.96000000000001,0.14,992,5.300000000000001,110,0.9 +2020,4,18,13,0,26.900000000000002,1.5,0.3276,0.6,0,0,0,7,25.400000000000002,0,0,0,0,0.254,91.55,115.56,0.14,992,5.300000000000001,112,0.9 +2020,4,18,14,0,26.400000000000002,1.51,0.3114,0.6,0,0,0,7,25.3,0,0,0,0,0.255,93.51,129.98,0.14,993,5.1000000000000005,112,0.9 +2020,4,18,15,0,25.900000000000002,1.52,0.2887,0.6,0,0,0,6,25,0,0,0,0,0.256,94.77,144.01,0.14,993,5,107,0.9 +2020,4,18,16,0,25.400000000000002,1.53,0.2682,0.6,0,0,0,7,24.6,0,0,0,0,0.256,95.59,156.9,0.14,992,4.800000000000001,97,0.9 +2020,4,18,17,0,24.900000000000002,1.53,0.2523,0.6,0,0,0,7,24.3,0,0,0,0,0.256,96.53,165.25,0.14,991,4.7,85,0.9 +2020,4,18,18,0,24.5,1.52,0.24150000000000002,0.6,0,0,0,7,24,0,0,0,0,0.256,96.9,161.36,0.14,990,4.6000000000000005,73,0.8 +2020,4,18,19,0,24.1,1.52,0.23770000000000002,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.256,97.52,149.63,0.14,990,4.5,57,0.7000000000000001 +2020,4,18,20,0,23.900000000000002,1.5,0.24200000000000002,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.255,97.19,135.92000000000002,0.14,990,4.6000000000000005,40,0.7000000000000001 +2020,4,18,21,0,23.700000000000003,1.48,0.25270000000000004,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.255,97.18,121.63,0.14,991,4.7,32,0.6000000000000001 +2020,4,18,22,0,23.6,1.47,0.2513,0.6,0,0,0,0,23.1,0,0,0,0,0.255,96.96000000000001,107.09,0.14,991,4.800000000000001,32,0.7000000000000001 +2020,4,18,23,0,24.200000000000003,1.47,0.2346,0.6,0,0,0,0,23.5,0,0,0,0,0.255,96.10000000000001,92.44,0.14,992,4.9,40,0.8 +2020,4,19,0,0,25.8,1.48,0.2142,0.6,70,350,144,0,24.5,70,350,0,144,0.255,92.43,77.67,0.14,993,4.9,59,1.4000000000000001 +2020,4,19,1,0,27.900000000000002,1.52,0.18680000000000002,0.6,108,616,388,0,24.5,108,616,0,388,0.255,81.65,63,0.14,993,5,75,1.7000000000000002 +2020,4,19,2,0,29.6,1.53,0.1699,0.6,127,747,623,0,24,127,747,0,623,0.255,72.10000000000001,48.33,0.14,993,5,85,1.8 +2020,4,19,3,0,30.8,1.49,0.2331,0.6,166,768,804,0,23.900000000000002,166,768,0,804,0.254,66.7,33.79,0.14,993,4.9,89,1.8 +2020,4,19,4,0,31.6,1.47,0.21860000000000002,0.6,170,813,935,0,23.8,170,813,0,935,0.253,63.25,19.68,0.14,992,4.9,89,1.7000000000000002 +2020,4,19,5,0,32.2,1.46,0.2102,0.6,170,831,992,0,23.6,170,831,0,992,0.252,60.63,8.64,0.14,991,4.9,88,1.6 +2020,4,19,6,0,32.5,1.45,0.2454,0.6,183,804,962,1,23.5,183,804,0,962,0.251,59.21,14.280000000000001,0.14,990,5,86,1.5 +2020,4,19,7,0,32.4,1.43,0.2499,0.6,178,774,862,1,23.6,178,774,0,862,0.25,59.69,27.830000000000002,0.14,989,5,84,1.4000000000000001 +2020,4,19,8,0,32.1,1.42,0.257,0.6,167,715,696,0,23.6,167,715,0,696,0.25,60.86,42.26,0.14,989,5.1000000000000005,81,1.3 +2020,4,19,9,0,31.900000000000002,1.42,0.2604,0.6,143,614,479,0,24,143,614,0,479,0.249,62.88,56.89,0.14,989,5.2,81,1.1 +2020,4,19,10,0,30.700000000000003,1.42,0.2651,0.6,103,427,238,0,23.6,103,427,0,238,0.248,66,71.57000000000001,0.14,989,5.300000000000001,82,1.1 +2020,4,19,11,0,28.8,1.42,0.27040000000000003,0.6,24,77,29,2,25,17,0,3,17,0.249,80.16,86.13,0.14,990,5.300000000000001,86,0.7000000000000001 +2020,4,19,12,0,28.1,1.43,0.277,0.6,0,0,0,3,25,0,0,0,0,0.249,83.42,100.98,0.14,991,5.4,90,0.7000000000000001 +2020,4,19,13,0,27.6,1.44,0.2841,0.6,0,0,0,8,24.900000000000002,0,0,0,0,0.25,85.06,115.56,0.14,991,5.4,92,0.7000000000000001 +2020,4,19,14,0,27.1,1.45,0.2878,0.6,0,0,0,0,24.8,0,0,0,0,0.25,87.27,129.95,0.14,992,5.4,93,0.8 +2020,4,19,15,0,26.700000000000003,1.46,0.29000000000000004,0.6,0,0,0,0,24.700000000000003,0,0,0,0,0.251,88.85000000000001,143.93,0.14,992,5.300000000000001,91,0.7000000000000001 +2020,4,19,16,0,26.200000000000003,1.47,0.2896,0.6,0,0,0,0,24.6,0,0,0,0,0.251,90.81,156.73,0.14,992,5.2,87,0.7000000000000001 +2020,4,19,17,0,25.8,1.47,0.2889,0.6,0,0,0,0,24.400000000000002,0,0,0,0,0.251,92.07000000000001,164.92000000000002,0.14,991,5,81,0.7000000000000001 +2020,4,19,18,0,25.400000000000002,1.46,0.2914,0.6,0,0,0,0,24.3,0,0,0,0,0.25,93.44,161.07,0.14,991,5,74,0.8 +2020,4,19,19,0,25.1,1.45,0.2872,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.25,94.8,149.43,0.14,990,5,69,0.8 +2020,4,19,20,0,24.900000000000002,1.45,0.2669,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.249,95.66,135.77,0.14,990,5,65,0.9 +2020,4,19,21,0,24.700000000000003,1.44,0.2485,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.25,96.76,121.51,0.14,990,5.1000000000000005,65,0.9 +2020,4,19,22,0,24.700000000000003,1.44,0.22820000000000001,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.251,96.9,106.99000000000001,0.14,991,5.1000000000000005,64,0.9 +2020,4,19,23,0,25,1.43,0.2061,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.252,96.44,92.36,0.14,991,5.1000000000000005,64,1 +2020,4,20,0,0,26.3,1.43,0.1862,0.6,68,373,149,3,24.8,52,0,3,52,0.253,91.41,77.61,0.14,992,5.1000000000000005,65,1.8 +2020,4,20,1,0,27.700000000000003,1.43,0.16240000000000002,0.6,104,636,393,0,25.1,104,636,0,393,0.254,85.87,62.96,0.14,993,5,68,2.1 +2020,4,20,2,0,29,1.42,0.1428,0.6,119,767,629,0,25.1,119,767,0,629,0.255,79.7,48.32,0.14,993,5,69,2.1 +2020,4,20,3,0,30,1.3900000000000001,0.10540000000000001,0.6,115,855,826,0,25.1,115,855,0,826,0.255,74.92,33.8,0.14,992,5,72,2.1 +2020,4,20,4,0,30.6,1.3900000000000001,0.10490000000000001,0.6,121,885,954,0,25,121,885,0,954,0.256,71.97,19.77,0.14,992,5,74,2 +2020,4,20,5,0,30.900000000000002,1.3900000000000001,0.10700000000000001,0.6,125,894,1008,0,24.8,125,894,0,1008,0.256,69.92,8.94,0.14,991,5.1000000000000005,76,2.1 +2020,4,20,6,0,31,1.4000000000000001,0.168,0.6,151,848,972,1,24.6,151,848,0,972,0.255,68.81,14.51,0.14,990,5.2,77,2 +2020,4,20,7,0,30.900000000000002,1.4000000000000001,0.1713,0.6,148,821,873,3,24.400000000000002,354,30,0,381,0.255,68.57000000000001,27.97,0.14,989,5.300000000000001,77,2 +2020,4,20,8,0,30.6,1.4000000000000001,0.1663,0.6,134,776,707,0,24.5,134,776,0,707,0.255,70.10000000000001,42.36,0.14,989,5.300000000000001,77,1.8 +2020,4,20,9,0,30.200000000000003,1.4000000000000001,0.1625,0.6,113,689,489,6,24.8,27,0,0,27,0.255,72.99,56.96,0.14,989,5.4,76,1.4000000000000001 +2020,4,20,10,0,29.200000000000003,1.41,0.15910000000000002,0.6,83,519,246,6,24.700000000000003,44,0,0,44,0.255,76.98,71.62,0.14,989,5.5,76,1.2000000000000002 +2020,4,20,11,0,27.8,1.43,0.15380000000000002,0.6,24,135,33,9,25.200000000000003,15,0,3,15,0.255,85.81,86.16,0.14,990,5.6000000000000005,77,0.7000000000000001 +2020,4,20,12,0,27.3,1.43,0.1515,0.6,0,0,0,9,24.900000000000002,0,0,0,0,0.255,86.82000000000001,100.99000000000001,0.14,991,5.6000000000000005,75,0.6000000000000001 +2020,4,20,13,0,26.900000000000002,1.44,0.14830000000000002,0.6,0,0,0,9,24.700000000000003,0,0,0,0,0.255,87.7,115.55,0.14,991,5.6000000000000005,72,0.6000000000000001 +2020,4,20,14,0,26.6,1.46,0.1442,0.6,0,0,0,6,24.5,0,0,0,0,0.255,88.18,129.92000000000002,0.14,992,5.7,70,0.6000000000000001 +2020,4,20,15,0,26.200000000000003,1.47,0.1418,0.6,0,0,0,7,24.3,0,0,0,0,0.255,89.29,143.85,0.14,992,5.7,68,0.7000000000000001 +2020,4,20,16,0,25.8,1.46,0.14120000000000002,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.255,90.66,156.56,0.14,992,5.6000000000000005,67,0.7000000000000001 +2020,4,20,17,0,25.400000000000002,1.45,0.1405,0.6,0,0,0,3,24,0,0,0,0,0.254,92.04,164.6,0.14,991,5.6000000000000005,65,0.7000000000000001 +2020,4,20,18,0,25.1,1.43,0.1391,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.254,92.95,160.77,0.14,990,5.5,63,0.7000000000000001 +2020,4,20,19,0,24.8,1.4000000000000001,0.139,0.6,0,0,0,0,23.8,0,0,0,0,0.253,94,149.22,0.14,990,5.4,60,0.8 +2020,4,20,20,0,24.5,1.36,0.1393,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.252,95.34,135.63,0.14,990,5.4,58,0.8 +2020,4,20,21,0,24.400000000000002,1.32,0.13870000000000002,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.252,95.76,121.39,0.14,990,5.4,56,0.8 +2020,4,20,22,0,24.400000000000002,1.29,0.136,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.251,96.09,106.9,0.14,990,5.5,55,0.9 +2020,4,20,23,0,24.8,1.26,0.1315,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.25,96.26,92.29,0.14,991,5.6000000000000005,56,0.9 +2020,4,21,0,0,26,1.24,0.1264,0.6,60,429,153,0,24.900000000000002,60,429,0,153,0.251,93.41,77.56,0.14,991,5.7,57,1.5 +2020,4,21,1,0,27.3,1.23,0.1198,0.6,92,670,397,0,25.3,92,670,0,397,0.251,89.02,62.92,0.14,992,5.800000000000001,60,1.9000000000000001 +2020,4,21,2,0,28.5,1.23,0.1155,0.6,109,782,629,0,25.200000000000003,109,782,0,629,0.251,82.54,48.300000000000004,0.14,992,5.9,64,2.1 +2020,4,21,3,0,29.3,1.3,0.1869,0.6,151,788,805,0,25,151,788,0,805,0.251,77.92,33.83,0.14,992,6,68,2.1 +2020,4,21,4,0,29.900000000000002,1.28,0.18660000000000002,0.6,159,822,932,0,25,159,822,0,932,0.251,74.96000000000001,19.86,0.14,991,6,74,2 +2020,4,21,5,0,30,1.25,0.1937,0.6,166,829,985,3,24.900000000000002,443,46,0,488,0.251,74.34,9.25,0.14,991,6.1000000000000005,79,1.8 +2020,4,21,6,0,30,1.31,0.29150000000000004,0.6,206,766,946,0,25,206,766,0,946,0.25,74.61,14.75,0.14,990,6.2,83,1.7000000000000002 +2020,4,21,7,0,30,1.29,0.2993,0.6,201,733,848,3,25.200000000000003,356,31,0,383,0.249,75.55,28.11,0.14,989,6.2,88,1.6 +2020,4,21,8,0,29.700000000000003,1.27,0.3049,0.6,186,672,682,8,25.5,352,198,0,498,0.249,78.38,42.46,0.14,989,6.300000000000001,91,1.4000000000000001 +2020,4,21,9,0,29,1.23,0.3239,0.6,164,556,466,7,25.700000000000003,189,455,0,436,0.248,82.26,57.03,0.14,989,6.300000000000001,91,1.3 +2020,4,21,10,0,28.1,1.2,0.3347,0.6,116,359,229,6,25.8,61,0,0,61,0.248,87.36,71.67,0.14,990,6.300000000000001,90,1 +2020,4,21,11,0,27.200000000000003,1.16,0.3305,0.6,23,44,26,6,25.8,11,0,3,11,0.249,92.34,86.19,0.14,990,6.300000000000001,94,0.8 +2020,4,21,12,0,26.8,1.1400000000000001,0.3226,0.6,0,0,0,6,25.700000000000003,0,0,0,0,0.251,93.9,101.01,0.14,991,6.300000000000001,98,0.7000000000000001 +2020,4,21,13,0,26.6,1.1300000000000001,0.3017,0.6,0,0,0,6,25.6,0,0,0,0,0.252,94.37,115.54,0.14,991,6.2,99,0.7000000000000001 +2020,4,21,14,0,26.3,1.12,0.2726,0.6,0,0,0,7,25.5,0,0,0,0,0.253,95.21000000000001,129.88,0.14,992,6.1000000000000005,97,0.7000000000000001 +2020,4,21,15,0,26,1.12,0.24750000000000003,0.6,0,0,0,7,25.3,0,0,0,0,0.253,96.04,143.76,0.14,992,6,91,0.8 +2020,4,21,16,0,25.700000000000003,1.1300000000000001,0.223,0.6,0,0,0,8,25.200000000000003,0,0,0,0,0.253,96.88,156.38,0.14,992,5.9,82,0.8 +2020,4,21,17,0,25.400000000000002,1.1400000000000001,0.19920000000000002,0.6,0,0,0,7,25,0,0,0,0,0.253,97.74000000000001,164.27,0.14,991,5.9,76,0.9 +2020,4,21,18,0,25.200000000000003,1.1400000000000001,0.18000000000000002,0.6,0,0,0,8,24.900000000000002,0,0,0,0,0.253,98.01,160.47,0.14,990,5.7,68,0.9 +2020,4,21,19,0,25,1.16,0.1646,0.6,0,0,0,8,24.700000000000003,0,0,0,0,0.253,98.26,149.02,0.14,990,5.7,62,0.9 +2020,4,21,20,0,24.900000000000002,1.17,0.15130000000000002,0.6,0,0,0,7,24.5,0,0,0,0,0.253,97.87,135.48,0.14,989,5.6000000000000005,58,0.9 +2020,4,21,21,0,24.700000000000003,1.19,0.1409,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.253,98.21000000000001,121.28,0.14,989,5.6000000000000005,54,0.9 +2020,4,21,22,0,24.700000000000003,1.21,0.1318,0.6,0,0,0,8,24.3,0,0,0,0,0.253,97.56,106.81,0.14,990,5.6000000000000005,51,0.9 +2020,4,21,23,0,25,1.23,0.1212,0.6,0,0,0,8,24.5,0,0,0,0,0.253,97.13,92.22,0.14,990,5.6000000000000005,49,0.9 +2020,4,22,0,0,26.200000000000003,1.25,0.1111,0.6,58,450,155,3,25.200000000000003,75,229,3,124,0.254,94.37,77.51,0.14,991,5.7,49,1.4000000000000001 +2020,4,22,1,0,27.900000000000002,1.31,0.09630000000000001,0.6,84,696,401,8,25.5,166,20,0,175,0.255,87.08,62.89,0.14,992,5.7,63,1.6 +2020,4,22,2,0,29.1,1.34,0.09090000000000001,0.6,98,804,633,0,24.900000000000002,98,804,0,633,0.255,78.01,48.300000000000004,0.14,992,5.800000000000001,72,1.6 +2020,4,22,3,0,30,1.34,0.1414,0.6,130,821,812,0,24.6,130,821,0,812,0.254,72.79,33.85,0.14,992,5.9,78,1.5 +2020,4,22,4,0,30.6,1.33,0.1489,0.6,141,847,936,3,24.400000000000002,448,69,0,513,0.254,69.77,19.96,0.14,991,6,79,1.3 +2020,4,22,5,0,30.700000000000003,1.32,0.1568,0.6,148,853,990,3,24.400000000000002,428,39,0,467,0.253,69.07000000000001,9.55,0.14,990,6,78,1.1 +2020,4,22,6,0,30.700000000000003,1.32,0.1791,0.6,157,833,962,3,24.400000000000002,247,13,0,260,0.252,69.01,14.98,0.14,989,6.1000000000000005,74,1 +2020,4,22,7,0,30.5,1.32,0.1988,0.6,159,795,860,3,24.400000000000002,377,407,0,735,0.251,70.04,28.25,0.14,989,6.2,70,1 +2020,4,22,8,0,30.200000000000003,1.32,0.2088,0.6,150,737,693,8,25.1,349,217,0,509,0.251,74.07000000000001,42.56,0.14,989,6.300000000000001,65,0.9 +2020,4,22,9,0,29.400000000000002,1.32,0.2281,0.6,135,627,476,9,25.200000000000003,102,0,0,102,0.251,78.01,57.11,0.14,989,6.4,59,0.9 +2020,4,22,10,0,28.200000000000003,1.31,0.23070000000000002,0.6,98,442,236,9,24.900000000000002,42,0,0,42,0.251,82.48,71.72,0.14,989,6.5,60,0.9 +2020,4,22,11,0,27.1,1.3,0.22740000000000002,0.6,24,82,30,9,25.3,9,0,3,9,0.252,89.73,86.23,0.14,990,6.5,61,0.6000000000000001 +2020,4,22,12,0,26.6,1.28,0.23700000000000002,0.6,0,0,0,6,25.3,0,0,0,0,0.253,92.7,101.02,0.14,991,6.6000000000000005,60,0.7000000000000001 +2020,4,22,13,0,26.200000000000003,1.28,0.22740000000000002,0.6,0,0,0,6,25.3,0,0,0,0,0.254,94.79,115.53,0.14,991,6.6000000000000005,59,0.7000000000000001 +2020,4,22,14,0,25.900000000000002,1.29,0.20500000000000002,0.6,0,0,0,6,25.200000000000003,0,0,0,0,0.254,96.11,129.84,0.14,992,6.5,60,0.7000000000000001 +2020,4,22,15,0,25.700000000000003,1.31,0.2051,0.6,0,0,0,7,25.1,0,0,0,0,0.256,96.67,143.67000000000002,0.14,992,6.4,62,0.6000000000000001 +2020,4,22,16,0,25.5,1.33,0.19840000000000002,0.6,0,0,0,7,25,0,0,0,0,0.256,96.96000000000001,156.20000000000002,0.14,991,6.300000000000001,67,0.6000000000000001 +2020,4,22,17,0,25.3,1.34,0.18610000000000002,0.6,0,0,0,8,24.900000000000002,0,0,0,0,0.257,97.51,163.95000000000002,0.14,991,6.300000000000001,75,0.6000000000000001 +2020,4,22,18,0,25.1,1.36,0.19110000000000002,0.6,0,0,0,3,24.8,0,0,0,0,0.257,98.10000000000001,160.18,0.14,990,6.2,87,0.6000000000000001 +2020,4,22,19,0,25,1.37,0.19190000000000002,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.257,98.06,148.82,0.14,989,6.2,94,0.6000000000000001 +2020,4,22,20,0,25,1.3800000000000001,0.1842,0.6,0,0,0,7,24.6,0,0,0,0,0.257,97.52,135.33,0.14,989,6.2,96,0.6000000000000001 +2020,4,22,21,0,25,1.3900000000000001,0.1874,0.6,0,0,0,3,24.5,0,0,0,0,0.256,97.28,121.17,0.14,990,6.2,85,0.5 +2020,4,22,22,0,24.900000000000002,1.4000000000000001,0.18630000000000002,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.256,97.24000000000001,106.72,0.14,990,6.1000000000000005,60,0.5 +2020,4,22,23,0,25.1,1.41,0.1807,0.6,0,0,0,0,24.6,0,0,0,0,0.255,97.16,92.15,0.14,991,6.1000000000000005,40,0.4 +2020,4,23,0,0,25.8,1.43,0.17880000000000001,0.6,67,379,149,0,25,67,379,0,149,0.255,95.61,77.46000000000001,0.14,992,6.1000000000000005,43,0.8 +2020,4,23,1,0,26.900000000000002,1.44,0.1724,0.6,105,621,389,0,25.200000000000003,105,621,0,389,0.255,90.64,62.86,0.14,993,6.1000000000000005,59,1.1 +2020,4,23,2,0,27.900000000000002,1.44,0.1603,0.6,124,745,620,0,24.900000000000002,124,745,0,620,0.254,83.77,48.29,0.14,993,6.1000000000000005,68,1.3 +2020,4,23,3,0,28.5,1.44,0.15380000000000002,0.6,135,811,808,0,24.6,135,811,0,808,0.254,79.33,33.88,0.14,993,6.1000000000000005,71,1.4000000000000001 +2020,4,23,4,0,29.1,1.45,0.1535,0.6,142,843,934,3,24.5,459,318,0,758,0.254,76.35000000000001,20.07,0.14,992,6.1000000000000005,68,1.3 +2020,4,23,5,0,29.6,1.46,0.1492,0.6,144,858,989,3,24.5,511,157,0,665,0.254,74.08,9.86,0.14,991,6.1000000000000005,59,1 +2020,4,23,6,0,29.8,1.47,0.1495,0.6,143,853,965,7,24.5,352,22,0,374,0.254,73.05,15.22,0.14,990,6.2,49,0.8 +2020,4,23,7,0,29.8,1.47,0.1497,0.6,137,829,867,9,24.5,103,0,0,103,0.253,73.43,28.39,0.14,989,6.2,41,0.8 +2020,4,23,8,0,29.6,1.48,0.1481,0.6,126,783,702,9,25,99,0,0,99,0.253,76.26,42.65,0.14,989,6.2,33,0.9 +2020,4,23,9,0,29.200000000000003,1.47,0.15460000000000002,0.6,111,691,485,9,25.400000000000002,27,0,0,27,0.252,79.98,57.18,0.14,989,6.2,38,1 +2020,4,23,10,0,28.3,1.46,0.1602,0.6,82,513,243,9,25.1,12,0,0,12,0.252,82.60000000000001,71.77,0.14,989,6.300000000000001,44,1 +2020,4,23,11,0,27.1,1.46,0.1555,0.6,23,130,32,9,25.400000000000002,4,0,3,4,0.253,90.29,86.25,0.14,990,6.300000000000001,49,0.6000000000000001 +2020,4,23,12,0,26.5,1.46,0.15480000000000002,0.6,0,0,0,6,25.200000000000003,0,0,0,0,0.254,92.61,101.03,0.14,991,6.300000000000001,55,0.5 +2020,4,23,13,0,26.1,1.47,0.1474,0.6,0,0,0,6,24.900000000000002,0,0,0,0,0.256,93.08,115.52,0.14,992,6.2,61,0.5 +2020,4,23,14,0,25.8,1.49,0.135,0.6,0,0,0,6,24.5,0,0,0,0,0.257,92.68,129.79,0.14,992,6.1000000000000005,62,0.5 +2020,4,23,15,0,25.5,1.5,0.1247,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.258,92.72,143.58,0.14,992,6,62,0.5 +2020,4,23,16,0,25.3,1.51,0.1184,0.6,0,0,0,6,24,0,0,0,0,0.258,92.77,156.02,0.14,992,5.800000000000001,60,0.5 +2020,4,23,17,0,25,1.5,0.11660000000000001,0.6,0,0,0,6,23.8,0,0,0,0,0.257,93.34,163.64000000000001,0.14,991,5.7,55,0.5 +2020,4,23,18,0,24.700000000000003,1.48,0.1188,0.6,0,0,0,6,23.700000000000003,0,0,0,0,0.256,93.99,159.89000000000001,0.14,990,5.6000000000000005,52,0.5 +2020,4,23,19,0,24.400000000000002,1.47,0.1206,0.6,0,0,0,6,23.5,0,0,0,0,0.256,94.93,148.62,0.14,990,5.5,51,0.5 +2020,4,23,20,0,24.1,1.47,0.12010000000000001,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.255,95.76,135.19,0.14,989,5.4,50,0.6000000000000001 +2020,4,23,21,0,24,1.47,0.1218,0.6,0,0,0,7,23.3,0,0,0,0,0.255,95.60000000000001,121.06,0.14,990,5.4,41,0.6000000000000001 +2020,4,23,22,0,23.900000000000002,1.47,0.12190000000000001,0.6,0,0,0,3,23.1,0,0,0,0,0.254,95.25,106.64,0.14,990,5.300000000000001,31,0.6000000000000001 +2020,4,23,23,0,24.3,1.47,0.11960000000000001,0.6,0,0,0,8,23.5,0,0,0,0,0.254,95.39,92.09,0.14,990,5.300000000000001,24,0.6000000000000001 +2020,4,24,0,0,26.1,1.49,0.11520000000000001,0.6,57,455,156,8,24.5,68,326,3,139,0.254,90.7,77.41,0.14,991,5.300000000000001,38,0.9 +2020,4,24,1,0,28,1.5,0.1129,0.6,88,683,400,8,24.400000000000002,151,439,0,352,0.254,80.7,62.83,0.14,992,5.300000000000001,65,1.1 +2020,4,24,2,0,29,1.5,0.1126,0.6,105,789,630,8,24,247,451,0,547,0.254,74.49,48.29,0.14,992,5.4,70,1.2000000000000002 +2020,4,24,3,0,30,1.32,0.1957,0.6,154,783,804,7,24,369,368,0,674,0.254,70.19,33.92,0.14,992,5.5,69,1.3 +2020,4,24,4,0,30.700000000000003,1.31,0.19990000000000002,0.6,165,814,929,8,24,399,471,0,841,0.253,67.73,20.18,0.14,991,5.6000000000000005,67,1.3 +2020,4,24,5,0,31,1.3,0.20470000000000002,0.6,170,823,980,0,24.1,170,823,0,980,0.253,66.84,10.16,0.14,990,5.800000000000001,62,1.3 +2020,4,24,6,0,31,1.22,0.1525,0.6,146,849,964,0,24.200000000000003,146,849,0,964,0.253,67.17,15.46,0.14,989,5.9,56,1.3 +2020,4,24,7,0,30.8,1.21,0.1608,0.6,143,819,863,7,24.3,428,271,0,666,0.253,68.21000000000001,28.53,0.14,988,6,53,1.4000000000000001 +2020,4,24,8,0,30.3,1.2,0.1681,0.6,135,764,696,6,24.5,210,9,0,217,0.253,71.12,42.75,0.14,988,6.1000000000000005,56,1.3 +2020,4,24,9,0,29.700000000000003,1.2,0.1834,0.6,122,660,479,6,25.1,229,256,0,368,0.253,76.48,57.24,0.14,988,6.2,62,1 +2020,4,24,10,0,28.700000000000003,1.21,0.1893,0.6,90,475,238,7,24.900000000000002,117,222,0,186,0.253,79.77,71.82000000000001,0.14,989,6.2,65,1 +2020,4,24,11,0,27.5,1.21,0.1806,0.6,24,99,30,7,25.3,22,44,3,25,0.254,87.84,86.28,0.14,990,6.2,72,0.6000000000000001 +2020,4,24,12,0,26.8,1.22,0.1726,0.6,0,0,0,7,25.200000000000003,0,0,0,0,0.255,91.12,101.04,0.14,991,6.1000000000000005,79,0.6000000000000001 +2020,4,24,13,0,26.400000000000002,1.24,0.1636,0.6,0,0,0,6,25.1,0,0,0,0,0.256,92.54,115.5,0.14,991,6.1000000000000005,84,0.6000000000000001 +2020,4,24,14,0,26,1.25,0.1573,0.6,0,0,0,6,25,0,0,0,0,0.257,94.01,129.75,0.14,992,6,84,0.7000000000000001 +2020,4,24,15,0,25.6,1.25,0.15560000000000002,0.6,0,0,0,7,24.8,0,0,0,0,0.257,95.26,143.49,0.14,992,5.9,78,0.7000000000000001 +2020,4,24,16,0,25.3,1.26,0.1545,0.6,0,0,0,7,24.6,0,0,0,0,0.257,95.9,155.83,0.14,991,5.9,71,0.8 +2020,4,24,17,0,25,1.26,0.154,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.257,96.76,163.32,0.14,991,5.800000000000001,65,0.8 +2020,4,24,18,0,24.8,1.26,0.1524,0.6,0,0,0,7,24.3,0,0,0,0,0.257,96.92,159.61,0.14,990,5.7,58,0.9 +2020,4,24,19,0,24.5,1.26,0.14730000000000001,0.6,0,0,0,7,24.1,0,0,0,0,0.257,97.60000000000001,148.42000000000002,0.14,989,5.7,54,0.9 +2020,4,24,20,0,24.3,1.26,0.1391,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.257,97.74000000000001,135.04,0.14,989,5.6000000000000005,51,0.9 +2020,4,24,21,0,24.1,1.27,0.1308,0.6,0,0,0,4,23.700000000000003,0,0,0,0,0.257,97.79,120.95,0.14,989,5.5,48,0.9 +2020,4,24,22,0,24,1.28,0.1222,0.6,0,0,0,8,23.6,0,0,0,0,0.256,97.36,106.55,0.14,989,5.4,44,0.9 +2020,4,24,23,0,24.400000000000002,1.28,0.1174,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.256,96.82000000000001,92.02,0.14,990,5.4,41,1 +2020,4,25,0,0,25.6,1.27,0.1154,0.6,59,449,157,8,24.400000000000002,71,288,3,134,0.256,93.3,77.36,0.14,991,5.4,41,1.6 +2020,4,25,1,0,26.8,1.27,0.1136,0.6,90,678,400,8,24.6,177,304,0,316,0.256,87.86,62.81,0.14,992,5.4,51,1.8 +2020,4,25,2,0,28.1,1.27,0.11220000000000001,0.6,107,786,630,8,24.5,288,310,0,495,0.255,80.86,48.29,0.14,992,5.5,59,1.9000000000000001 +2020,4,25,3,0,29.200000000000003,1.2,0.1208,0.6,122,835,815,8,24.5,320,476,0,715,0.255,75.76,33.96,0.14,992,5.5,67,1.8 +2020,4,25,4,0,30,1.19,0.11950000000000001,0.6,129,866,941,3,24.6,403,423,0,799,0.255,72.8,20.29,0.14,991,5.5,75,1.7000000000000002 +2020,4,25,5,0,30.400000000000002,1.2,0.1208,0.6,132,876,993,8,24.6,492,281,0,768,0.254,71.27,10.46,0.14,990,5.6000000000000005,81,1.6 +2020,4,25,6,0,30.400000000000002,1.25,0.11560000000000001,0.6,128,875,970,8,24.6,491,229,0,711,0.254,71.16,15.69,0.14,989,5.7,84,1.6 +2020,4,25,7,0,30.3,1.25,0.1194,0.6,124,849,869,0,24.700000000000003,124,849,0,869,0.254,71.87,28.67,0.14,989,5.800000000000001,85,1.6 +2020,4,25,8,0,29.700000000000003,1.23,0.12490000000000001,0.6,117,798,703,3,24.900000000000002,286,435,0,605,0.255,75.67,42.84,0.14,989,5.9,86,1.6 +2020,4,25,9,0,29.1,1.21,0.1468,0.6,109,692,483,8,25.6,139,606,0,466,0.254,81.29,57.31,0.14,989,6.1000000000000005,83,1.5 +2020,4,25,10,0,28.1,1.19,0.1563,0.6,83,507,241,9,25.5,37,0,0,37,0.253,85.84,71.86,0.14,990,6.2,78,1.4000000000000001 +2020,4,25,11,0,27,1.17,0.1492,0.6,24,117,31,6,25.6,8,0,3,8,0.254,92.18,86.31,0.14,990,6.2,74,1.2000000000000002 +2020,4,25,12,0,26.5,1.18,0.1458,0.6,0,0,0,6,25.5,0,0,0,0,0.254,94.34,101.05,0.14,991,6.2,70,1.3 +2020,4,25,13,0,26.1,1.21,0.1318,0.6,0,0,0,6,25.3,0,0,0,0,0.254,95.47,115.49000000000001,0.14,992,6.2,66,1.4000000000000001 +2020,4,25,14,0,25.700000000000003,1.25,0.11330000000000001,0.6,0,0,0,6,25.1,0,0,0,0,0.254,96.38,129.7,0.14,992,6.1000000000000005,65,1.5 +2020,4,25,15,0,25.400000000000002,1.27,0.10200000000000001,0.6,0,0,0,6,24.900000000000002,0,0,0,0,0.254,96.99000000000001,143.39000000000001,0.14,992,6,63,1.5 +2020,4,25,16,0,25.1,1.28,0.09630000000000001,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.255,97.43,155.65,0.14,992,5.9,62,1.3 +2020,4,25,17,0,24.900000000000002,1.29,0.09190000000000001,0.6,0,0,0,7,24.5,0,0,0,0,0.256,97.39,163.01,0.14,992,5.9,61,1.2000000000000002 +2020,4,25,18,0,24.8,1.3,0.08950000000000001,0.6,0,0,0,7,24.3,0,0,0,0,0.256,96.98,159.32,0.14,991,5.9,60,1.1 +2020,4,25,19,0,24.700000000000003,1.32,0.0868,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.256,96.78,148.23,0.14,990,5.800000000000001,60,1 +2020,4,25,20,0,24.6,1.34,0.08460000000000001,0.6,0,0,0,8,24.1,0,0,0,0,0.255,96.76,134.9,0.14,990,5.800000000000001,62,1 +2020,4,25,21,0,24.5,1.35,0.0858,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.255,96.74000000000001,120.84,0.14,990,5.800000000000001,62,1 +2020,4,25,22,0,24.400000000000002,1.36,0.0874,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.255,96.85000000000001,106.47,0.14,991,5.800000000000001,61,0.9 +2020,4,25,23,0,24.700000000000003,1.37,0.08700000000000001,0.6,0,0,0,7,24,0,0,0,0,0.255,96.14,91.96000000000001,0.14,991,5.800000000000001,60,1 +2020,4,26,0,0,25.400000000000002,1.3800000000000001,0.0853,0.6,53,490,160,8,24.400000000000002,80,152,3,113,0.255,94.11,77.32000000000001,0.14,992,5.9,58,1.6 +2020,4,26,1,0,26.200000000000003,1.3900000000000001,0.083,0.6,79,710,403,8,24.3,174,32,0,188,0.256,89.5,62.79,0.14,993,5.9,57,1.9000000000000001 +2020,4,26,2,0,27.200000000000003,1.3900000000000001,0.08170000000000001,0.6,93,810,633,8,24,131,0,0,131,0.255,82.8,48.29,0.14,993,6,58,2 +2020,4,26,3,0,28,1.3900000000000001,0.08220000000000001,0.6,103,863,818,8,23.900000000000002,407,132,0,516,0.254,78.24,34,0.14,993,6,60,1.8 +2020,4,26,4,0,28.6,1.3900000000000001,0.08170000000000001,0.6,109,890,943,3,23.900000000000002,415,390,0,780,0.253,75.58,20.41,0.14,992,6.1000000000000005,60,1.6 +2020,4,26,5,0,29,1.4000000000000001,0.081,0.6,110,901,995,7,23.900000000000002,499,247,0,742,0.252,73.99,10.76,0.14,991,6.2,58,1.3 +2020,4,26,6,0,29.1,1.34,0.0898,0.6,114,890,969,6,23.900000000000002,334,20,0,354,0.252,73.7,15.93,0.14,990,6.2,55,1.1 +2020,4,26,7,0,29.1,1.35,0.08990000000000001,0.6,109,869,871,7,24,427,263,0,658,0.252,73.88,28.810000000000002,0.14,990,6.2,54,1 +2020,4,26,8,0,28.900000000000002,1.37,0.08650000000000001,0.6,99,829,706,7,24,308,379,0,586,0.253,75.01,42.94,0.14,989,6.300000000000001,56,0.9 +2020,4,26,9,0,28.700000000000003,1.3900000000000001,0.09230000000000001,0.6,88,744,490,7,24.400000000000002,236,188,0,337,0.254,77.60000000000001,57.38,0.14,989,6.300000000000001,55,0.9 +2020,4,26,10,0,28,1.3900000000000001,0.09630000000000001,0.6,67,579,247,6,24.700000000000003,115,239,0,189,0.256,82.10000000000001,71.91,0.14,990,6.300000000000001,53,0.8 +2020,4,26,11,0,26.900000000000002,1.3900000000000001,0.095,0.6,22,178,33,6,24.700000000000003,22,50,3,25,0.257,87.87,86.33,0.14,991,6.4,53,0.6000000000000001 +2020,4,26,12,0,26.3,1.4000000000000001,0.09630000000000001,0.6,0,0,0,6,24.5,0,0,0,0,0.258,90.09,101.05,0.14,992,6.4,52,0.5 +2020,4,26,13,0,26,1.4000000000000001,0.0944,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.259,91.14,115.47,0.14,992,6.4,50,0.5 +2020,4,26,14,0,25.6,1.41,0.0893,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.259,92.94,129.64000000000001,0.14,993,6.300000000000001,44,0.6000000000000001 +2020,4,26,15,0,25.3,1.43,0.0824,0.6,0,0,0,6,24.3,0,0,0,0,0.259,94.08,143.29,0.14,993,6.300000000000001,38,0.6000000000000001 +2020,4,26,16,0,25,1.44,0.0772,0.6,0,0,0,7,24.1,0,0,0,0,0.259,94.89,155.46,0.14,992,6.2,36,0.6000000000000001 +2020,4,26,17,0,24.8,1.43,0.076,0.6,0,0,0,7,24,0,0,0,0,0.259,95.3,162.70000000000002,0.14,992,6.2,39,0.6000000000000001 +2020,4,26,18,0,24.6,1.43,0.07730000000000001,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.259,95.89,159.04,0.14,991,6.2,40,0.6000000000000001 +2020,4,26,19,0,24.5,1.42,0.0775,0.6,0,0,0,6,23.900000000000002,0,0,0,0,0.259,96.25,148.03,0.14,991,6.2,41,0.6000000000000001 +2020,4,26,20,0,24.400000000000002,1.41,0.075,0.6,0,0,0,7,23.8,0,0,0,0,0.258,96.47,134.76,0.14,991,6.2,47,0.5 +2020,4,26,21,0,24.400000000000002,1.4000000000000001,0.07490000000000001,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.258,96.08,120.73,0.14,991,6.2,54,0.5 +2020,4,26,22,0,24.3,1.41,0.0733,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.258,96.18,106.39,0.14,991,6.2,61,0.6000000000000001 +2020,4,26,23,0,24.5,1.41,0.0688,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.258,96.48,91.9,0.14,992,6.1000000000000005,58,0.6000000000000001 +2020,4,27,0,0,25.5,1.42,0.0664,0.6,49,517,163,4,24.400000000000002,64,0,3,64,0.258,93.37,77.28,0.14,993,6.1000000000000005,38,1 +2020,4,27,1,0,27,1.43,0.0639,0.6,72,730,406,4,24.3,184,57,0,210,0.258,85.39,62.77,0.14,993,6.1000000000000005,34,1.1 +2020,4,27,2,0,28.3,1.44,0.0631,0.6,85,826,635,8,24,305,110,0,378,0.258,77.74,48.300000000000004,0.14,993,6.1000000000000005,19,0.9 +2020,4,27,3,0,29.6,1.44,0.0678,0.6,96,873,820,8,24,356,389,0,678,0.257,72.07000000000001,34.05,0.14,993,6.1000000000000005,4,0.8 +2020,4,27,4,0,30,1.45,0.0737,0.6,105,896,943,7,23.900000000000002,446,329,0,754,0.256,70.02,20.54,0.14,993,6.1000000000000005,5,0.9 +2020,4,27,5,0,30.5,1.46,0.0766,0.6,108,904,995,8,24,487,289,0,771,0.254,68.43,11.06,0.14,992,6.1000000000000005,3,0.9 +2020,4,27,6,0,30.200000000000003,1.44,0.091,0.6,115,889,969,7,24,450,350,0,786,0.251,69.48,16.16,0.14,991,6.1000000000000005,354,0.9 +2020,4,27,7,0,30.1,1.45,0.0983,0.6,113,863,869,7,24.1,416,303,0,681,0.249,70.26,28.95,0.14,990,6.1000000000000005,335,0.9 +2020,4,27,8,0,29.8,1.46,0.09860000000000001,0.6,105,819,704,7,24.200000000000003,343,231,0,511,0.248,71.96000000000001,43.03,0.14,990,6.1000000000000005,319,1 +2020,4,27,9,0,29,1.46,0.112,0.6,96,726,486,6,24.5,153,0,0,153,0.248,76.62,57.44,0.14,990,6.2,320,0.9 +2020,4,27,10,0,28.200000000000003,1.46,0.1222,0.6,74,549,244,9,24.5,11,0,0,11,0.248,80.22,71.95,0.14,990,6.2,334,0.8 +2020,4,27,11,0,27.1,1.46,0.1222,0.6,23,153,32,6,25,4,0,3,4,0.25,88.52,86.35000000000001,0.14,991,6.2,342,0.5 +2020,4,27,12,0,26.6,1.45,0.1307,0.6,0,0,0,6,25,0,0,0,0,0.251,90.71000000000001,101.05,0.14,992,6.2,357,0.5 +2020,4,27,13,0,26.400000000000002,1.42,0.1383,0.6,0,0,0,7,24.8,0,0,0,0,0.253,91.2,115.44,0.14,993,6.300000000000001,19,0.5 +2020,4,27,14,0,26,1.3900000000000001,0.1391,0.6,0,0,0,7,24.8,0,0,0,0,0.255,93.03,129.59,0.14,994,6.300000000000001,34,0.7000000000000001 +2020,4,27,15,0,25.6,1.3900000000000001,0.1287,0.6,0,0,0,7,24.6,0,0,0,0,0.256,94.28,143.18,0.14,994,6.2,35,0.8 +2020,4,27,16,0,25.200000000000003,1.3900000000000001,0.11520000000000001,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.255,95.33,155.27,0.14,993,6.2,28,0.8 +2020,4,27,17,0,25,1.3900000000000001,0.10700000000000001,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.255,95.34,162.39000000000001,0.14,993,6.1000000000000005,25,0.8 +2020,4,27,18,0,24.700000000000003,1.36,0.1046,0.6,0,0,0,7,24,0,0,0,0,0.254,95.97,158.76,0.14,992,6.1000000000000005,22,0.8 +2020,4,27,19,0,24.6,1.32,0.10540000000000001,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.254,95.83,147.84,0.14,992,6.1000000000000005,17,0.8 +2020,4,27,20,0,24.5,1.3,0.1029,0.6,0,0,0,7,23.8,0,0,0,0,0.254,95.66,134.62,0.14,991,6.1000000000000005,5,0.7000000000000001 +2020,4,27,21,0,24.400000000000002,1.31,0.09870000000000001,0.6,0,0,0,8,23.6,0,0,0,0,0.253,95.12,120.63,0.14,991,6.1000000000000005,346,0.6000000000000001 +2020,4,27,22,0,24.3,1.32,0.0966,0.6,0,0,0,3,23.400000000000002,0,0,0,0,0.253,94.79,106.31,0.14,992,6.1000000000000005,328,0.6000000000000001 +2020,4,27,23,0,24.400000000000002,1.32,0.0961,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.252,95.78,91.84,0.14,992,6.1000000000000005,317,0.6000000000000001 +2020,4,28,0,0,25.3,1.34,0.0954,0.6,55,476,160,8,24.200000000000003,45,0,3,45,0.252,93.73,77.25,0.13,993,6.1000000000000005,320,1 +2020,4,28,1,0,26.700000000000003,1.35,0.09380000000000001,0.6,83,696,401,8,24.6,163,17,0,171,0.253,88.29,62.75,0.13,993,6.1000000000000005,349,1.1 +2020,4,28,2,0,27.5,1.36,0.0942,0.6,99,797,629,7,24.200000000000003,305,112,0,379,0.253,82.03,48.31,0.13,994,6.1000000000000005,5,1.2000000000000002 +2020,4,28,3,0,28,1.3,0.1052,0.6,114,843,812,7,23.900000000000002,407,185,0,561,0.252,78.38,34.09,0.13,993,6.1000000000000005,12,1.1 +2020,4,28,4,0,28.5,1.32,0.1063,0.6,121,871,936,7,23.900000000000002,324,20,0,343,0.251,76.34,20.66,0.13,993,6.1000000000000005,13,1 +2020,4,28,5,0,28.700000000000003,1.32,0.1056,0.6,123,883,988,6,23.900000000000002,498,113,0,609,0.249,75.54,11.35,0.13,992,6.1000000000000005,12,1 +2020,4,28,6,0,28.6,1.32,0.1085,0.6,123,875,963,6,24,442,55,0,495,0.247,76.07000000000001,16.39,0.13,991,6.2,15,0.9 +2020,4,28,7,0,28.400000000000002,1.32,0.11230000000000001,0.6,120,851,863,6,24,435,138,0,556,0.245,77.11,29.09,0.13,990,6.2,26,0.9 +2020,4,28,8,0,28.1,1.32,0.1107,0.6,110,807,699,7,24.200000000000003,347,162,0,465,0.244,79.35000000000001,43.12,0.13,990,6.2,38,0.9 +2020,4,28,9,0,27.8,1.31,0.1298,0.6,102,706,482,7,24.6,236,146,0,314,0.243,82.97,57.51,0.13,990,6.2,48,1 +2020,4,28,10,0,26.900000000000002,1.31,0.1327,0.6,76,533,241,7,24.6,120,79,0,144,0.243,87.2,71.99,0.13,990,6.300000000000001,52,0.9 +2020,4,28,11,0,26,1.31,0.1231,0.6,23,144,32,7,24.6,20,0,3,20,0.244,92.17,86.37,0.13,991,6.300000000000001,55,0.7000000000000001 +2020,4,28,12,0,25.5,1.32,0.1193,0.6,0,0,0,7,24.5,0,0,0,0,0.245,94.17,101.05,0.13,992,6.300000000000001,57,0.7000000000000001 +2020,4,28,13,0,25.200000000000003,1.33,0.1072,0.6,0,0,0,7,24.3,0,0,0,0,0.246,94.88,115.42,0.13,992,6.2,57,0.7000000000000001 +2020,4,28,14,0,24.900000000000002,1.32,0.09480000000000001,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.246,95.79,129.53,0.13,993,6.1000000000000005,53,0.7000000000000001 +2020,4,28,15,0,24.700000000000003,1.29,0.0922,0.6,0,0,0,6,24,0,0,0,0,0.247,95.99000000000001,143.08,0.13,993,6,49,0.7000000000000001 +2020,4,28,16,0,24.5,1.26,0.09330000000000001,0.6,0,0,0,6,23.900000000000002,0,0,0,0,0.247,96.2,155.08,0.13,992,6,47,0.7000000000000001 +2020,4,28,17,0,24.3,1.22,0.09480000000000001,0.6,0,0,0,6,23.700000000000003,0,0,0,0,0.248,96.29,162.09,0.13,991,6,46,0.7000000000000001 +2020,4,28,18,0,24.1,1.2,0.0981,0.6,0,0,0,6,23.5,0,0,0,0,0.247,96.23,158.49,0.13,990,6,43,0.6000000000000001 +2020,4,28,19,0,24,1.18,0.1013,0.6,0,0,0,7,23.3,0,0,0,0,0.247,95.79,147.65,0.13,990,6,38,0.6000000000000001 +2020,4,28,20,0,23.900000000000002,1.16,0.10250000000000001,0.6,0,0,0,8,23.1,0,0,0,0,0.247,95.32000000000001,134.49,0.13,989,6,29,0.6000000000000001 +2020,4,28,21,0,23.8,1.16,0.1037,0.6,0,0,0,8,23,0,0,0,0,0.248,95.04,120.53,0.13,990,6.1000000000000005,15,0.6000000000000001 +2020,4,28,22,0,23.700000000000003,1.16,0.1028,0.6,0,0,0,8,22.8,0,0,0,0,0.249,94.73,106.24000000000001,0.13,990,6.1000000000000005,3,0.5 +2020,4,28,23,0,24,1.17,0.1018,0.6,0,0,0,3,23.1,0,0,0,0,0.249,94.96000000000001,91.79,0.13,991,6.1000000000000005,355,0.6000000000000001 +2020,4,29,0,0,25.400000000000002,1.18,0.1009,0.6,57,465,160,0,23.700000000000003,57,465,0,160,0.25,90.54,77.21000000000001,0.13,991,6.1000000000000005,5,0.8 +2020,4,29,1,0,27.200000000000003,1.2,0.1017,0.6,86,686,400,8,23.700000000000003,167,358,0,332,0.25,81.07000000000001,62.74,0.13,992,6.2,48,0.7000000000000001 +2020,4,29,2,0,28.400000000000002,1.22,0.1022,0.6,102,788,626,8,23.5,264,399,0,529,0.251,74.88,48.32,0.13,992,6.300000000000001,52,0.7000000000000001 +2020,4,29,3,0,29,1.24,0.10490000000000001,0.6,114,841,810,4,23.3,398,251,0,606,0.251,71.23,34.15,0.13,992,6.300000000000001,31,0.7000000000000001 +2020,4,29,4,0,29.5,1.26,0.1066,0.6,121,869,933,4,23.400000000000002,453,303,0,736,0.251,69.59,20.8,0.13,991,6.300000000000001,20,0.8 +2020,4,29,5,0,29.900000000000002,1.27,0.1068,0.6,123,880,985,0,23.6,123,880,0,985,0.251,68.82000000000001,11.65,0.13,990,6.300000000000001,15,0.8 +2020,4,29,6,0,29.900000000000002,1.24,0.1222,0.6,130,864,957,0,23.700000000000003,130,864,0,957,0.25,69.4,16.62,0.13,990,6.4,12,0.8 +2020,4,29,7,0,29.8,1.24,0.1255,0.6,126,839,858,3,23.8,431,229,0,631,0.25,70.34,29.22,0.13,989,6.4,9,0.9 +2020,4,29,8,0,29.5,1.25,0.12610000000000002,0.6,117,792,694,6,24,321,61,0,365,0.25,72.29,43.22,0.13,989,6.4,1,0.9 +2020,4,29,9,0,28.900000000000002,1.26,0.135,0.6,104,699,479,9,24.5,26,0,0,26,0.249,77.13,57.57,0.13,989,6.5,346,0.9 +2020,4,29,10,0,28.200000000000003,1.26,0.1439,0.6,79,518,239,9,24.6,11,0,0,11,0.249,80.82000000000001,72.03,0.13,989,6.5,346,0.9 +2020,4,29,11,0,27.1,1.26,0.1437,0.6,23,123,31,9,25.200000000000003,4,0,3,4,0.25,89.13,86.39,0.13,990,6.5,355,0.6000000000000001 +2020,4,29,12,0,26.700000000000003,1.26,0.1448,0.6,0,0,0,9,25.1,0,0,0,0,0.252,91.13,101.05,0.13,991,6.5,6,0.6000000000000001 +2020,4,29,13,0,26.400000000000002,1.26,0.1414,0.6,0,0,0,6,25,0,0,0,0,0.254,91.89,115.4,0.13,992,6.5,23,0.6000000000000001 +2020,4,29,14,0,26.1,1.27,0.1348,0.6,0,0,0,9,24.8,0,0,0,0,0.255,92.55,129.48,0.13,992,6.5,40,0.7000000000000001 +2020,4,29,15,0,25.700000000000003,1.27,0.1307,0.6,0,0,0,6,24.6,0,0,0,0,0.256,93.76,142.97,0.13,993,6.5,56,0.7000000000000001 +2020,4,29,16,0,25.400000000000002,1.26,0.1273,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.256,94.43,154.89000000000001,0.13,992,6.5,73,0.7000000000000001 +2020,4,29,17,0,25.200000000000003,1.25,0.12480000000000001,0.6,0,0,0,6,24.3,0,0,0,0,0.254,94.71000000000001,161.79,0.13,992,6.4,82,0.7000000000000001 +2020,4,29,18,0,24.900000000000002,1.24,0.1272,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.254,95.67,158.22,0.13,991,6.4,80,0.6000000000000001 +2020,4,29,19,0,24.8,1.22,0.1301,0.6,0,0,0,8,24.1,0,0,0,0,0.254,95.81,147.46,0.13,990,6.4,64,0.6000000000000001 +2020,4,29,20,0,24.700000000000003,1.21,0.13190000000000002,0.6,0,0,0,1,24.1,0,0,0,0,0.254,96.23,134.35,0.13,990,6.4,42,0.6000000000000001 +2020,4,29,21,0,24.6,1.21,0.14200000000000002,0.6,0,0,0,0,24.1,0,0,0,0,0.255,96.78,120.43,0.13,991,6.4,18,0.6000000000000001 +2020,4,29,22,0,24.6,1.22,0.1447,0.6,0,0,0,0,24,0,0,0,0,0.256,96.26,106.16,0.13,991,6.4,359,0.7000000000000001 +2020,4,29,23,0,24.900000000000002,1.23,0.1391,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.256,96.08,91.74,0.13,992,6.4,350,0.7000000000000001 +2020,4,30,0,0,26,1.26,0.1366,0.6,63,422,156,0,24.700000000000003,63,422,0,156,0.256,92.32000000000001,77.18,0.13,992,6.4,7,0.9 +2020,4,30,1,0,27.400000000000002,1.29,0.13540000000000002,0.6,96,651,394,0,24.8,96,651,0,394,0.257,85.81,62.730000000000004,0.13,993,6.4,18,0.8 +2020,4,30,2,0,28.3,1.32,0.126,0.6,111,768,621,0,24.6,111,768,0,621,0.257,80.18,48.34,0.13,993,6.4,330,0.8 +2020,4,30,3,0,29.3,1.31,0.12710000000000002,0.6,123,824,805,3,24.6,377,64,0,430,0.258,76.07000000000001,34.2,0.13,992,6.4,310,0.9 +2020,4,30,4,0,30,1.32,0.1257,0.6,130,855,928,8,24.700000000000003,476,168,0,632,0.257,73.46000000000001,20.93,0.13,992,6.4,320,1.1 +2020,4,30,5,0,30.200000000000003,1.32,0.1255,0.6,132,866,979,3,24.8,502,209,0,707,0.257,72.86,11.94,0.13,991,6.5,328,1.2000000000000002 +2020,4,30,6,0,29.900000000000002,1.32,0.1404,0.6,138,851,952,8,24.900000000000002,364,25,0,388,0.255,74.76,16.85,0.13,990,6.5,330,1.3 +2020,4,30,7,0,29.400000000000002,1.31,0.1477,0.6,135,822,852,9,25.1,71,0,0,71,0.253,77.87,29.36,0.13,989,6.6000000000000005,323,1.3 +2020,4,30,8,0,28.8,1.3,0.1459,0.6,124,775,688,9,25.3,175,4,0,178,0.251,81.53,43.31,0.13,989,6.7,321,1.3 +2020,4,30,9,0,28.1,1.3,0.1709,0.6,115,666,472,6,25.5,47,0,0,47,0.25,85.65,57.63,0.13,989,6.7,329,1.1 +2020,4,30,10,0,27.400000000000002,1.29,0.1811,0.6,86,478,234,6,25.6,12,0,0,12,0.25,90.04,72.07000000000001,0.13,989,6.800000000000001,354,0.7000000000000001 +2020,4,30,11,0,26.700000000000003,1.27,0.1767,0.6,23,100,29,9,25.6,4,0,3,4,0.25,93.7,86.41,0.13,990,6.800000000000001,35,0.5 +2020,4,30,12,0,26.400000000000002,1.26,0.2051,0.6,0,0,0,6,25.5,0,0,0,0,0.25,95.06,101.05,0.13,991,6.800000000000001,59,0.4 +2020,4,30,13,0,26.200000000000003,1.24,0.2131,0.6,0,0,0,9,25.400000000000002,0,0,0,0,0.249,95.52,115.37,0.13,991,6.800000000000001,71,0.5 +2020,4,30,14,0,26.1,1.23,0.19140000000000001,0.6,0,0,0,6,25.400000000000002,0,0,0,0,0.249,95.76,129.42000000000002,0.13,991,6.800000000000001,77,0.5 +2020,4,30,15,0,26,1.23,0.2026,0.6,0,0,0,6,25.3,0,0,0,0,0.249,95.94,142.86,0.13,992,6.800000000000001,79,0.6000000000000001 +2020,4,30,16,0,25.900000000000002,1.22,0.2021,0.6,0,0,0,6,25.200000000000003,0,0,0,0,0.249,96.06,154.69,0.13,992,6.7,252,0.7000000000000001 +2020,4,30,17,0,25.700000000000003,1.2,0.1824,0.6,0,0,0,6,25.200000000000003,0,0,0,0,0.249,96.81,161.49,0.13,991,6.7,252,0.9 +2020,4,30,18,0,25.5,1.19,0.1915,0.6,0,0,0,7,25.1,0,0,0,0,0.249,97.68,157.95000000000002,0.13,990,6.7,256,0.9 +2020,4,30,19,0,25.5,1.16,0.1814,0.6,0,0,0,7,25.1,0,0,0,0,0.249,97.60000000000001,147.28,0.13,990,6.7,255,0.9 +2020,4,30,20,0,25.5,1.12,0.15460000000000002,0.6,0,0,0,7,25,0,0,0,0,0.249,97.33,134.22,0.13,990,6.7,135,0.9 +2020,4,30,21,0,25.400000000000002,1.09,0.16160000000000002,0.6,0,0,0,7,25,0,0,0,0,0.25,97.39,120.33,0.13,990,6.7,142,1 +2020,4,30,22,0,25.3,1.05,0.1563,0.6,0,0,0,7,24.900000000000002,0,0,0,0,0.251,97.57000000000001,106.09,0.13,990,6.7,151,1 +2020,4,30,23,0,25.400000000000002,1.02,0.1368,0.6,0,0,0,7,25,0,0,0,0,0.251,97.48,91.69,0.13,991,6.6000000000000005,164,1 +2020,5,1,0,0,26,1.02,0.1342,0.61,63,416,156,6,25.400000000000002,66,0,3,66,0.251,96.64,77.15,0.13,992,6.5,176,1.1 +2020,5,1,1,0,26.700000000000003,1.03,0.12200000000000001,0.61,93,660,395,6,25.6,174,33,0,190,0.252,93.69,62.72,0.13,992,6.4,189,1.2000000000000002 +2020,5,1,2,0,27.1,1.05,0.1019,0.61,103,785,625,6,25.3,146,0,0,146,0.252,89.89,48.36,0.13,992,6.300000000000001,198,1.4000000000000001 +2020,5,1,3,0,27.3,1.06,0.0946,0.61,109,847,809,6,24.900000000000002,189,7,0,195,0.251,86.94,34.26,0.13,992,6.300000000000001,208,1.8 +2020,5,1,4,0,27.5,1.05,0.0877,0.61,111,880,933,6,24.8,369,29,0,396,0.25,85.49,21.07,0.13,992,6.2,214,2 +2020,5,1,5,0,27.700000000000003,1.02,0.0889,0.61,114,889,983,7,24.900000000000002,407,34,0,440,0.249,84.64,12.23,0.13,991,6.300000000000001,223,2.3000000000000003 +2020,5,1,6,0,27.900000000000002,1,0.1034,0.61,122,874,957,7,24.900000000000002,450,63,0,510,0.248,83.89,17.080000000000002,0.13,990,6.300000000000001,232,2.4000000000000004 +2020,5,1,7,0,27.8,0.97,0.1085,0.61,119,848,857,6,25,399,62,0,452,0.248,84.59,29.5,0.13,989,6.2,239,2.5 +2020,5,1,8,0,27.5,0.9400000000000001,0.111,0.61,112,800,693,7,25,343,126,0,435,0.247,86.35000000000001,43.39,0.13,989,6.2,243,2.3000000000000003 +2020,5,1,9,0,27.1,0.97,0.11520000000000001,0.61,98,712,479,8,25.200000000000003,184,449,0,424,0.248,89.17,57.69,0.13,989,6.2,247,2 +2020,5,1,10,0,26.6,0.99,0.1085,0.61,72,552,241,7,25.3,115,212,0,180,0.249,92.85000000000001,72.11,0.13,989,6.1000000000000005,249,1.4000000000000001 +2020,5,1,11,0,25.8,1.01,0.09960000000000001,0.61,22,150,32,7,25.1,22,37,3,24,0.251,96.08,86.43,0.13,990,6.1000000000000005,250,0.9 +2020,5,1,12,0,25.5,1.04,0.0976,0.61,0,0,0,6,24.900000000000002,0,0,0,0,0.252,96.45,101.04,0.13,990,6.1000000000000005,254,0.9 +2020,5,1,13,0,25.400000000000002,1.06,0.0965,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.253,96.11,115.34,0.13,991,6,258,0.8 +2020,5,1,14,0,25.200000000000003,1.07,0.093,0.61,0,0,0,6,24.6,0,0,0,0,0.254,96.25,129.35,0.13,991,6,264,0.8 +2020,5,1,15,0,25.1,1.08,0.0927,0.61,0,0,0,6,24.400000000000002,0,0,0,0,0.254,96.07000000000001,142.75,0.13,991,6,267,0.8 +2020,5,1,16,0,25.1,1.09,0.0936,0.61,0,0,0,7,24.3,0,0,0,0,0.254,95.44,154.5,0.13,991,6.1000000000000005,268,0.8 +2020,5,1,17,0,24.900000000000002,1.09,0.0936,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.255,96.16,161.20000000000002,0.13,991,6.1000000000000005,268,0.8 +2020,5,1,18,0,24.8,1.11,0.09570000000000001,0.61,0,0,0,8,24.200000000000003,0,0,0,0,0.254,96.35000000000001,157.69,0.13,990,6.1000000000000005,268,0.8 +2020,5,1,19,0,24.6,1.12,0.0985,0.61,0,0,0,0,24.1,0,0,0,0,0.254,97.13,147.09,0.13,989,6.1000000000000005,268,0.8 +2020,5,1,20,0,24.6,1.1300000000000001,0.097,0.61,0,0,0,4,24.1,0,0,0,0,0.254,97.09,134.09,0.13,989,6.2,270,0.8 +2020,5,1,21,0,24.5,1.1500000000000001,0.10450000000000001,0.61,0,0,0,7,24.1,0,0,0,0,0.254,97.55,120.23,0.13,989,6.2,277,0.8 +2020,5,1,22,0,24.5,1.17,0.1071,0.61,0,0,0,7,24.1,0,0,0,0,0.254,97.45,106.02,0.13,990,6.300000000000001,287,0.8 +2020,5,1,23,0,24.8,1.19,0.10060000000000001,0.61,0,0,0,3,24.400000000000002,0,0,0,0,0.254,97.5,91.64,0.13,990,6.2,296,0.8 +2020,5,2,0,0,25.900000000000002,1.22,0.09730000000000001,0.61,55,472,161,4,25.1,18,0,3,18,0.254,95.13,77.12,0.13,991,6.2,303,1.4000000000000001 +2020,5,2,1,0,26.700000000000003,1.27,0.09050000000000001,0.61,81,698,401,4,25.200000000000003,63,0,0,63,0.254,91.5,62.72,0.13,991,6.2,308,1.8 +2020,5,2,2,0,27.400000000000002,1.29,0.0867,0.61,95,802,628,4,25,224,14,0,233,0.253,86.57000000000001,48.38,0.13,991,6.1000000000000005,311,2 +2020,5,2,3,0,28.200000000000003,1.31,0.0862,0.61,104,855,811,8,25,406,159,0,537,0.253,82.91,34.33,0.13,991,6.1000000000000005,311,2.1 +2020,5,2,4,0,28.8,1.33,0.0853,0.61,109,884,933,8,25.1,391,479,0,837,0.252,80.5,21.21,0.13,991,6.1000000000000005,311,2.3000000000000003 +2020,5,2,5,0,29.3,1.34,0.08460000000000001,0.61,110,894,984,8,25.200000000000003,441,378,0,811,0.252,78.49,12.51,0.13,990,6.1000000000000005,312,2.4000000000000004 +2020,5,2,6,0,29.400000000000002,1.34,0.0883,0.61,111,887,958,8,25.1,488,199,0,677,0.251,77.9,17.31,0.13,989,6.2,315,2.5 +2020,5,2,7,0,29.200000000000003,1.32,0.0921,0.61,109,863,859,3,25.200000000000003,350,454,0,744,0.251,79.05,29.63,0.13,988,6.2,318,2.5 +2020,5,2,8,0,28.8,1.3,0.09670000000000001,0.61,103,815,694,3,25.3,333,262,0,523,0.251,81.46000000000001,43.480000000000004,0.13,988,6.300000000000001,323,2.3000000000000003 +2020,5,2,9,0,28.200000000000003,1.29,0.114,0.61,96,717,479,0,25.700000000000003,96,717,0,479,0.251,86.57000000000001,57.75,0.13,988,6.300000000000001,326,1.7000000000000002 +2020,5,2,10,0,27.5,1.3,0.12200000000000001,0.61,73,541,239,8,25.700000000000003,93,404,0,217,0.251,89.93,72.14,0.13,988,6.4,333,1.4000000000000001 +2020,5,2,11,0,26.700000000000003,1.3,0.1218,0.61,22,141,31,6,25.8,22,141,5,31,0.252,94.9,86.44,0.13,989,6.4,345,0.9 +2020,5,2,12,0,26.400000000000002,1.31,0.12710000000000002,0.61,0,0,0,6,25.6,0,0,0,0,0.253,95.57000000000001,101.04,0.13,989,6.4,13,0.9 +2020,5,2,13,0,26.200000000000003,1.32,0.129,0.61,0,0,0,9,25.5,0,0,0,0,0.254,95.9,115.3,0.13,990,6.4,37,0.9 +2020,5,2,14,0,26,1.34,0.1257,0.61,0,0,0,6,25.3,0,0,0,0,0.256,96.17,129.29,0.13,990,6.4,54,0.8 +2020,5,2,15,0,25.8,1.34,0.1265,0.61,0,0,0,9,25.200000000000003,0,0,0,0,0.257,96.46000000000001,142.63,0.13,990,6.4,61,0.8 +2020,5,2,16,0,25.6,1.32,0.12890000000000001,0.61,0,0,0,9,25.1,0,0,0,0,0.257,96.97,154.31,0.13,990,6.4,62,0.8 +2020,5,2,17,0,25.5,1.3,0.12810000000000002,0.61,0,0,0,6,25,0,0,0,0,0.257,96.99000000000001,160.91,0.13,990,6.4,59,0.7000000000000001 +2020,5,2,18,0,25.400000000000002,1.27,0.1476,0.61,0,0,0,6,24.900000000000002,0,0,0,0,0.257,97.09,157.43,0.13,990,6.4,52,0.8 +2020,5,2,19,0,25.400000000000002,1.26,0.158,0.61,0,0,0,6,24.8,0,0,0,0,0.256,96.64,146.91,0.13,989,6.4,38,0.8 +2020,5,2,20,0,25.3,1.25,0.14880000000000002,0.61,0,0,0,6,24.8,0,0,0,0,0.256,96.85000000000001,133.96,0.13,989,6.4,14,0.8 +2020,5,2,21,0,25.3,1.26,0.15360000000000001,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.255,96.43,120.14,0.13,989,6.4,341,0.9 +2020,5,2,22,0,25.1,1.27,0.1532,0.61,0,0,0,7,24.6,0,0,0,0,0.255,97.01,105.95,0.13,989,6.300000000000001,311,0.9 +2020,5,2,23,0,25.200000000000003,1.27,0.1443,0.61,0,0,0,4,24.8,0,0,0,0,0.255,97.63,91.59,0.13,990,6.300000000000001,305,0.9 +2020,5,3,0,0,26,1.28,0.1439,0.61,64,416,157,4,25.3,81,48,3,92,0.255,96.14,77.10000000000001,0.13,991,6.300000000000001,320,1.1 +2020,5,3,1,0,26.900000000000002,1.3,0.1342,0.61,95,652,394,8,25.5,193,145,0,260,0.255,92.04,62.71,0.13,992,6.300000000000001,6,1.1 +2020,5,3,2,0,27.6,1.33,0.11950000000000001,0.61,108,773,621,0,25.1,108,773,0,621,0.255,86.37,48.4,0.13,992,6.2,16,1.2000000000000002 +2020,5,3,3,0,28.200000000000003,1.34,0.1131,0.61,117,834,805,0,24.900000000000002,117,834,0,805,0.255,82.11,34.39,0.13,992,6.2,5,1.3 +2020,5,3,4,0,28.700000000000003,1.36,0.10740000000000001,0.61,120,867,928,3,24.700000000000003,415,379,0,768,0.255,79,21.35,0.13,991,6.2,352,1.4000000000000001 +2020,5,3,5,0,29.1,1.37,0.10540000000000001,0.61,121,879,979,3,24.6,480,312,0,785,0.254,76.92,12.8,0.13,990,6.2,340,1.4000000000000001 +2020,5,3,6,0,29.3,1.33,0.14650000000000002,0.61,139,846,946,8,24.6,411,455,0,845,0.253,75.96000000000001,17.53,0.13,989,6.2,329,1.5 +2020,5,3,7,0,29.200000000000003,1.34,0.14400000000000002,0.61,132,824,848,2,24.700000000000003,430,129,3,541,0.252,76.65,29.76,0.13,989,6.2,316,1.6 +2020,5,3,8,0,28.900000000000002,1.35,0.1426,0.61,121,778,685,9,24.700000000000003,46,0,0,46,0.251,78.21000000000001,43.57,0.13,988,6.300000000000001,305,1.6 +2020,5,3,9,0,28.400000000000002,1.37,0.1404,0.61,104,693,473,9,24.900000000000002,25,0,0,25,0.25,81.47,57.800000000000004,0.13,988,6.300000000000001,290,1.4000000000000001 +2020,5,3,10,0,27.700000000000003,1.3900000000000001,0.1368,0.61,75,526,237,6,25.200000000000003,107,13,0,111,0.25,86.32000000000001,72.17,0.13,989,6.300000000000001,276,1.1 +2020,5,3,11,0,26.6,1.4000000000000001,0.13570000000000002,0.61,22,134,30,6,25.3,16,0,3,16,0.252,92.39,86.45,0.13,989,6.2,265,0.8 +2020,5,3,12,0,26.1,1.4000000000000001,0.1393,0.61,0,0,0,8,25.1,0,0,0,0,0.253,94.15,101.03,0.13,990,6.300000000000001,260,0.7000000000000001 +2020,5,3,13,0,25.900000000000002,1.4000000000000001,0.1437,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.253,94.47,115.27,0.13,991,6.300000000000001,262,0.7000000000000001 +2020,5,3,14,0,25.8,1.4000000000000001,0.1469,0.61,0,0,0,3,24.8,0,0,0,0,0.254,94.37,129.22,0.13,991,6.300000000000001,269,0.7000000000000001 +2020,5,3,15,0,25.700000000000003,1.4000000000000001,0.1521,0.61,0,0,0,8,24.700000000000003,0,0,0,0,0.255,94.34,142.52,0.13,991,6.2,277,0.7000000000000001 +2020,5,3,16,0,25.6,1.4000000000000001,0.156,0.61,0,0,0,7,24.6,0,0,0,0,0.256,94.26,154.11,0.13,991,6.2,285,0.7000000000000001 +2020,5,3,17,0,25.5,1.3900000000000001,0.158,0.61,0,0,0,7,24.5,0,0,0,0,0.256,94.23,160.62,0.13,991,6.2,293,0.7000000000000001 +2020,5,3,18,0,25.400000000000002,1.3900000000000001,0.1635,0.61,0,0,0,3,24.400000000000002,0,0,0,0,0.256,94.15,157.17000000000002,0.13,990,6.2,298,0.7000000000000001 +2020,5,3,19,0,25.5,1.3900000000000001,0.168,0.61,0,0,0,0,24.3,0,0,0,0,0.255,93.08,146.74,0.13,990,6.2,297,0.7000000000000001 +2020,5,3,20,0,25.400000000000002,1.3900000000000001,0.1665,0.61,0,0,0,0,24.200000000000003,0,0,0,0,0.254,93.22,133.83,0.13,990,6.2,293,0.7000000000000001 +2020,5,3,21,0,25.400000000000002,1.3900000000000001,0.1673,0.61,0,0,0,0,24.1,0,0,0,0,0.253,92.81,120.05,0.13,990,6.2,293,0.6000000000000001 +2020,5,3,22,0,25.5,1.3900000000000001,0.1661,0.61,0,0,0,0,24.1,0,0,0,0,0.252,92.01,105.89,0.13,990,6.2,296,0.6000000000000001 +2020,5,3,23,0,25.700000000000003,1.4000000000000001,0.1641,0.61,0,0,0,0,24.3,0,0,0,0,0.252,91.85000000000001,91.55,0.13,991,6.2,300,0.5 +2020,5,4,0,0,26.5,1.4000000000000001,0.1685,0.61,66,395,155,3,25,83,95,3,104,0.252,91.28,77.08,0.13,992,6.2,315,0.30000000000000004 +2020,5,4,1,0,27.8,1.41,0.1748,0.61,107,616,389,0,24.8,107,616,0,389,0.253,83.71000000000001,62.71,0.13,992,6.300000000000001,108,0.2 +2020,5,4,2,0,28.8,1.41,0.1756,0.61,129,728,612,3,24.6,306,181,0,426,0.253,77.93,48.43,0.13,992,6.300000000000001,253,0.2 +2020,5,4,3,0,29.200000000000003,1.36,0.1637,0.61,138,796,795,3,24.400000000000002,379,316,0,640,0.253,75.23,34.46,0.13,992,6.300000000000001,263,0.6000000000000001 +2020,5,4,4,0,29.400000000000002,1.3800000000000001,0.1691,0.61,148,825,915,3,24.5,464,245,3,692,0.253,74.81,21.5,0.13,992,6.300000000000001,257,1 +2020,5,4,5,0,29.400000000000002,1.3800000000000001,0.1676,0.61,150,837,966,7,24.6,480,291,0,764,0.252,75.63,13.08,0.13,991,6.300000000000001,252,1.4000000000000001 +2020,5,4,6,0,29.200000000000003,1.34,0.1564,0.61,144,838,943,8,24.8,411,419,0,810,0.251,77.23,17.75,0.13,991,6.300000000000001,245,1.6 +2020,5,4,7,0,28.900000000000002,1.35,0.1582,0.61,139,813,844,3,24.900000000000002,359,421,3,724,0.251,78.97,29.89,0.13,990,6.300000000000001,238,1.6 +2020,5,4,8,0,28.400000000000002,1.35,0.152,0.61,126,770,683,8,25,256,19,0,270,0.25,81.8,43.65,0.13,990,6.2,232,1.6 +2020,5,4,9,0,28,1.35,0.1516,0.61,108,682,471,9,25.3,73,0,0,73,0.249,85.11,57.86,0.13,989,6.2,225,1.2000000000000002 +2020,5,4,10,0,27.5,1.37,0.1458,0.61,78,516,236,6,25.200000000000003,88,0,0,88,0.249,87.24,72.21000000000001,0.13,989,6.1000000000000005,217,0.9 +2020,5,4,11,0,26.8,1.3800000000000001,0.1353,0.61,22,133,31,6,25,13,0,3,13,0.249,90.03,86.46000000000001,0.13,990,6,215,0.6000000000000001 +2020,5,4,12,0,26.6,1.3900000000000001,0.1275,0.61,0,0,0,7,24.5,0,0,0,0,0.25,88.51,101.02,0.13,990,6,224,0.5 +2020,5,4,13,0,26.5,1.3900000000000001,0.1232,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.251,88.18,115.23,0.13,991,6,254,0.6000000000000001 +2020,5,4,14,0,26,1.3900000000000001,0.1223,0.61,0,0,0,7,24.6,0,0,0,0,0.253,91.77,129.15,0.13,991,6.1000000000000005,298,0.8 +2020,5,4,15,0,25.6,1.3800000000000001,0.12660000000000002,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.254,94.83,142.4,0.13,992,6.1000000000000005,313,0.9 +2020,5,4,16,0,25.400000000000002,1.37,0.1315,0.61,0,0,0,8,24.700000000000003,0,0,0,0,0.254,96.11,153.92000000000002,0.13,992,6.1000000000000005,313,0.9 +2020,5,4,17,0,25.3,1.36,0.132,0.61,0,0,0,8,24.700000000000003,0,0,0,0,0.254,96.54,160.34,0.13,992,6.1000000000000005,308,0.9 +2020,5,4,18,0,25.1,1.35,0.134,0.61,0,0,0,3,24.6,0,0,0,0,0.253,97.15,156.92000000000002,0.13,991,6.1000000000000005,298,0.9 +2020,5,4,19,0,24.900000000000002,1.36,0.135,0.61,0,0,0,3,24.5,0,0,0,0,0.252,97.77,146.56,0.13,991,6.1000000000000005,287,0.9 +2020,5,4,20,0,24.8,1.36,0.13520000000000001,0.61,0,0,0,0,24.400000000000002,0,0,0,0,0.251,97.46000000000001,133.71,0.13,990,6.1000000000000005,278,0.9 +2020,5,4,21,0,24.700000000000003,1.37,0.13570000000000002,0.61,0,0,0,0,24.200000000000003,0,0,0,0,0.251,97.29,119.96000000000001,0.13,990,6.1000000000000005,275,0.9 +2020,5,4,22,0,24.6,1.3900000000000001,0.1348,0.61,0,0,0,0,24.1,0,0,0,0,0.251,97.07000000000001,105.83,0.13,991,6,273,0.8 +2020,5,4,23,0,25,1.41,0.1327,0.61,0,0,0,0,24.400000000000002,0,0,0,0,0.251,96.4,91.51,0.13,991,6,270,0.8 +2020,5,5,0,0,26.3,1.43,0.1306,0.61,60,438,158,0,24.8,60,438,0,158,0.252,91.52,77.06,0.13,991,6,267,1.2000000000000002 +2020,5,5,1,0,27.5,1.45,0.129,0.61,91,660,394,0,24.6,91,660,0,394,0.251,84.3,62.72,0.13,992,6,269,1.4000000000000001 +2020,5,5,2,0,28.700000000000003,1.45,0.1337,0.61,111,762,616,0,24.200000000000003,111,762,0,616,0.251,76.54,48.46,0.13,992,6,272,1.5 +2020,5,5,3,0,29.5,1.4000000000000001,0.1298,0.61,122,821,799,0,24.200000000000003,122,821,0,799,0.25,73.19,34.53,0.13,991,6.1000000000000005,277,1.5 +2020,5,5,4,0,30.200000000000003,1.3800000000000001,0.1374,0.61,132,846,918,0,24.5,132,846,0,918,0.25,71.49,21.64,0.13,991,6.1000000000000005,280,1.5 +2020,5,5,5,0,30.400000000000002,1.36,0.1481,0.61,141,850,967,8,24.700000000000003,427,463,0,877,0.25,71.5,13.35,0.13,990,6.2,279,1.5 +2020,5,5,6,0,30.3,1.41,0.22760000000000002,0.61,173,794,928,8,24.8,408,446,0,833,0.25,72.4,17.97,0.13,989,6.300000000000001,278,1.6 +2020,5,5,7,0,29.900000000000002,1.4000000000000001,0.2398,0.61,171,760,828,8,25,356,427,0,726,0.249,74.9,30.02,0.13,989,6.4,271,1.6 +2020,5,5,8,0,29.3,1.3900000000000001,0.2499,0.61,160,699,665,7,25.3,333,247,0,512,0.249,79.25,43.730000000000004,0.13,989,6.4,256,1.5 +2020,5,5,9,0,28.8,1.36,0.2854,0.61,148,574,453,7,25.8,207,340,0,388,0.248,83.89,57.910000000000004,0.13,989,6.5,243,1.3 +2020,5,5,10,0,28.1,1.36,0.3045,0.61,106,376,221,7,25.8,114,207,0,177,0.248,87.18,72.23,0.13,989,6.5,224,1.1 +2020,5,5,11,0,27.1,1.37,0.2868,0.61,22,59,25,6,26.1,21,34,3,23,0.247,94.05,86.47,0.13,990,6.6000000000000005,210,0.8 +2020,5,5,12,0,26.8,1.37,0.2933,0.61,0,0,0,7,25.900000000000002,0,0,0,0,0.247,94.55,101,0.13,990,6.6000000000000005,203,0.8 +2020,5,5,13,0,26.700000000000003,1.3800000000000001,0.2919,0.61,0,0,0,6,25.6,0,0,0,0,0.248,93.9,115.2,0.13,990,6.6000000000000005,198,0.8 +2020,5,5,14,0,26.700000000000003,1.3800000000000001,0.2685,0.61,0,0,0,6,25.5,0,0,0,0,0.249,92.99,129.08,0.13,991,6.6000000000000005,195,0.7000000000000001 +2020,5,5,15,0,26.5,1.3900000000000001,0.24830000000000002,0.61,0,0,0,6,25.3,0,0,0,0,0.249,93.4,142.29,0.13,991,6.5,192,0.6000000000000001 +2020,5,5,16,0,26.3,1.3900000000000001,0.21050000000000002,0.61,0,0,0,7,25.3,0,0,0,0,0.249,93.97,153.72,0.13,991,6.5,197,0.7000000000000001 +2020,5,5,17,0,26.1,1.3900000000000001,0.1829,0.61,0,0,0,8,25.200000000000003,0,0,0,0,0.249,94.84,160.06,0.13,990,6.5,208,0.7000000000000001 +2020,5,5,18,0,25.900000000000002,1.3900000000000001,0.17850000000000002,0.61,0,0,0,4,25.200000000000003,0,0,0,0,0.248,95.89,156.68,0.13,990,6.4,229,0.8 +2020,5,5,19,0,25.6,1.3900000000000001,0.1656,0.61,0,0,0,3,25.1,0,0,0,0,0.248,97.17,146.39000000000001,0.13,990,6.300000000000001,253,0.8 +2020,5,5,20,0,25.400000000000002,1.4000000000000001,0.1492,0.61,0,0,0,8,25,0,0,0,0,0.248,97.85000000000001,133.59,0.13,990,6.2,266,0.9 +2020,5,5,21,0,25.3,1.41,0.13720000000000002,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.248,97.85000000000001,119.88,0.13,990,6.1000000000000005,272,0.9 +2020,5,5,22,0,25.200000000000003,1.42,0.1257,0.61,0,0,0,8,24.8,0,0,0,0,0.249,97.5,105.77,0.13,990,6.1000000000000005,271,0.9 +2020,5,5,23,0,25.5,1.42,0.11720000000000001,0.61,0,0,0,8,25,0,0,0,0,0.249,97.3,91.47,0.13,990,6,267,0.8 +2020,5,6,0,0,26.6,1.42,0.11380000000000001,0.61,57,458,159,4,25.6,37,0,3,37,0.249,94.29,77.04,0.13,991,6,256,1.2000000000000002 +2020,5,6,1,0,27.8,1.43,0.11470000000000001,0.61,86,674,395,4,25.200000000000003,169,25,0,180,0.249,85.97,62.72,0.13,992,6,251,1.4000000000000001 +2020,5,6,2,0,28.700000000000003,1.42,0.11850000000000001,0.61,105,774,617,8,24.700000000000003,280,330,0,499,0.248,79,48.5,0.13,992,6.1000000000000005,257,1.5 +2020,5,6,3,0,29.700000000000003,1.4000000000000001,0.15230000000000002,0.61,131,805,793,7,24.900000000000002,403,165,0,539,0.248,75.45,34.61,0.13,991,6.1000000000000005,260,1.6 +2020,5,6,4,0,30.3,1.3900000000000001,0.1547,0.61,140,834,915,7,25.200000000000003,453,282,0,715,0.248,74.25,21.79,0.13,990,6.1000000000000005,263,1.8 +2020,5,6,5,0,30.6,1.3800000000000001,0.1607,0.61,146,841,964,8,25.5,432,390,0,811,0.248,74.25,13.63,0.13,990,6.1000000000000005,269,1.9000000000000001 +2020,5,6,6,0,30.700000000000003,1.3800000000000001,0.1791,0.61,153,824,936,7,25.6,465,289,0,740,0.247,74.37,18.18,0.13,989,6.1000000000000005,274,2 +2020,5,6,7,0,30.6,1.37,0.19110000000000002,0.61,152,791,836,7,25.700000000000003,407,304,0,670,0.246,75.17,30.150000000000002,0.13,988,6.2,277,2 +2020,5,6,8,0,30.200000000000003,1.37,0.20170000000000002,0.61,144,732,673,7,25.8,337,222,0,497,0.246,77.26,43.82,0.13,987,6.2,276,1.9000000000000001 +2020,5,6,9,0,29.5,1.35,0.2288,0.61,132,616,459,6,26,219,61,0,251,0.246,81.35000000000001,57.96,0.13,987,6.2,274,1.7000000000000002 +2020,5,6,10,0,28.6,1.34,0.2611,0.61,100,407,224,7,26.200000000000003,10,0,0,10,0.246,87.05,72.26,0.13,988,6.2,270,1.4000000000000001 +2020,5,6,11,0,27.400000000000002,1.34,0.2808,0.61,22,59,25,9,26.3,3,0,3,3,0.247,93.68,86.48,0.13,988,6.300000000000001,265,0.9 +2020,5,6,12,0,27,1.34,0.3144,0.61,0,0,0,6,26.1,0,0,0,0,0.249,94.94,100.99000000000001,0.13,989,6.300000000000001,254,0.7000000000000001 +2020,5,6,13,0,26.8,1.34,0.34740000000000004,0.61,0,0,0,6,25.900000000000002,0,0,0,0,0.25,95,115.16,0.13,989,6.300000000000001,236,0.7000000000000001 +2020,5,6,14,0,26.6,1.34,0.3745,0.61,0,0,0,7,25.8,0,0,0,0,0.251,95.31,129.01,0.13,990,6.300000000000001,219,0.6000000000000001 +2020,5,6,15,0,26.5,1.34,0.4237,0.61,0,0,0,7,25.700000000000003,0,0,0,0,0.251,95.22,142.17000000000002,0.13,990,6.4,213,0.6000000000000001 +2020,5,6,16,0,26.3,1.34,0.46830000000000005,0.61,0,0,0,7,25.6,0,0,0,0,0.252,95.77,153.53,0.13,990,6.4,215,0.6000000000000001 +2020,5,6,17,0,26.200000000000003,1.34,0.48090000000000005,0.61,0,0,0,7,25.5,0,0,0,0,0.252,95.71000000000001,159.79,0.13,990,6.5,220,0.7000000000000001 +2020,5,6,18,0,26.1,1.35,0.49870000000000003,0.61,0,0,0,6,25.400000000000002,0,0,0,0,0.251,95.66,156.43,0.13,989,6.5,225,0.7000000000000001 +2020,5,6,19,0,25.900000000000002,1.36,0.5063,0.61,0,0,0,6,25.200000000000003,0,0,0,0,0.251,96.14,146.22,0.13,989,6.4,228,0.7000000000000001 +2020,5,6,20,0,25.8,1.37,0.4868,0.61,0,0,0,9,25.1,0,0,0,0,0.25,96.15,133.47,0.13,988,6.4,227,0.7000000000000001 +2020,5,6,21,0,25.700000000000003,1.3800000000000001,0.4806,0.61,0,0,0,9,25.1,0,0,0,0,0.25,96.38,119.79,0.13,988,6.4,226,0.8 +2020,5,6,22,0,25.6,1.3900000000000001,0.47940000000000005,0.61,0,0,0,9,25.1,0,0,0,0,0.25,96.87,105.71000000000001,0.13,989,6.300000000000001,222,0.8 +2020,5,6,23,0,25.900000000000002,1.3900000000000001,0.46780000000000005,0.61,0,0,0,6,25.3,0,0,0,0,0.249,96.45,91.44,0.13,989,6.300000000000001,220,0.8 +2020,5,7,0,0,26.900000000000002,1.4000000000000001,0.39540000000000003,0.61,90,234,143,6,25.6,66,0,3,66,0.249,92.49,77.03,0.13,990,6.300000000000001,219,1.3 +2020,5,7,1,0,27.6,1.41,0.3025,0.61,139,514,375,6,25.6,191,95,0,234,0.249,89.06,62.730000000000004,0.13,990,6.4,223,1.5 +2020,5,7,2,0,28.200000000000003,1.41,0.2447,0.61,153,675,600,7,25.6,304,126,0,388,0.249,85.91,48.53,0.13,990,6.5,221,1.7000000000000002 +2020,5,7,3,0,28.6,1.28,0.3962,0.61,225,649,759,7,25.700000000000003,398,225,0,583,0.249,84.34,34.68,0.13,990,6.5,212,1.8 +2020,5,7,4,0,28.900000000000002,1.27,0.3584,0.61,225,708,882,7,25.8,445,308,0,731,0.249,83.23,21.94,0.13,990,6.6000000000000005,207,1.8 +2020,5,7,5,0,29.1,1.26,0.3341,0.61,219,735,932,8,25.8,473,307,0,771,0.248,82.53,13.89,0.13,989,6.7,203,2 +2020,5,7,6,0,29,1.24,0.3184,0.61,213,736,910,8,25.8,482,206,0,677,0.247,83,18.39,0.13,988,6.800000000000001,197,2.1 +2020,5,7,7,0,28.8,1.23,0.3074,0.61,199,713,815,8,25.8,402,336,0,692,0.246,84.06,30.28,0.13,988,6.800000000000001,193,2.1 +2020,5,7,8,0,28.3,1.23,0.2934,0.61,178,664,657,7,25.8,329,261,0,518,0.246,86.58,43.89,0.13,987,6.7,190,2 +2020,5,7,9,0,28,1.25,0.28390000000000004,0.61,148,570,450,6,26.1,26,0,0,26,0.246,89.28,58.01,0.13,988,6.6000000000000005,186,1.7000000000000002 +2020,5,7,10,0,27.5,1.28,0.2288,0.61,93,430,224,9,26.1,11,0,0,11,0.246,92.08,72.29,0.13,988,6.5,183,1.1 +2020,5,7,11,0,26.700000000000003,1.3,0.17830000000000001,0.61,22,98,28,6,25.700000000000003,4,0,3,4,0.247,94.36,86.48,0.13,989,6.4,185,0.8 +2020,5,7,12,0,26.5,1.32,0.1572,0.61,0,0,0,6,25.400000000000002,0,0,0,0,0.248,93.85000000000001,100.97,0.13,989,6.300000000000001,198,0.7000000000000001 +2020,5,7,13,0,26.400000000000002,1.34,0.1404,0.61,0,0,0,7,25.200000000000003,0,0,0,0,0.25,93.27,115.11,0.13,990,6.2,218,0.7000000000000001 +2020,5,7,14,0,26.3,1.36,0.12350000000000001,0.61,0,0,0,7,25.1,0,0,0,0,0.251,93.04,128.94,0.13,991,6.1000000000000005,232,0.7000000000000001 +2020,5,7,15,0,26.1,1.37,0.11410000000000001,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.251,93.34,142.05,0.13,991,6.1000000000000005,241,0.6000000000000001 +2020,5,7,16,0,25.900000000000002,1.37,0.11130000000000001,0.61,0,0,0,3,24.8,0,0,0,0,0.251,93.75,153.34,0.13,991,6.1000000000000005,247,0.6000000000000001 +2020,5,7,17,0,25.8,1.36,0.10980000000000001,0.61,0,0,0,4,24.700000000000003,0,0,0,0,0.251,93.72,159.52,0.13,990,6.1000000000000005,249,0.6000000000000001 +2020,5,7,18,0,25.700000000000003,1.36,0.1095,0.61,0,0,0,4,24.6,0,0,0,0,0.251,93.76,156.19,0.13,989,6.1000000000000005,250,0.6000000000000001 +2020,5,7,19,0,25.700000000000003,1.36,0.1097,0.61,0,0,0,0,24.5,0,0,0,0,0.25,93.02,146.05,0.13,989,6.1000000000000005,257,0.6000000000000001 +2020,5,7,20,0,25.6,1.36,0.10880000000000001,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.249,93.16,133.36,0.13,988,6.1000000000000005,267,0.6000000000000001 +2020,5,7,21,0,25.5,1.36,0.112,0.61,0,0,0,8,24.3,0,0,0,0,0.248,93.31,119.71000000000001,0.13,988,6.1000000000000005,273,0.6000000000000001 +2020,5,7,22,0,25.5,1.3800000000000001,0.11470000000000001,0.61,0,0,0,0,24.3,0,0,0,0,0.248,93.01,105.65,0.13,988,6,272,0.5 +2020,5,7,23,0,25.700000000000003,1.3900000000000001,0.11330000000000001,0.61,0,0,0,8,24.6,0,0,0,0,0.248,93.73,91.4,0.13,989,6,250,0.4 +2020,5,8,0,0,26.700000000000003,1.41,0.1154,0.61,57,456,160,8,25.400000000000002,78,226,3,129,0.249,92.38,77.01,0.13,989,5.9,175,0.6000000000000001 +2020,5,8,1,0,28,1.44,0.1109,0.61,86,678,396,8,25.400000000000002,181,270,0,305,0.251,85.68,62.74,0.13,990,5.9,164,0.8 +2020,5,8,2,0,28.8,1.44,0.1153,0.61,105,776,618,7,24.900000000000002,294,263,0,468,0.252,79.55,48.57,0.13,991,6,167,1 +2020,5,8,3,0,29.5,1.32,0.1457,0.61,130,808,793,8,24.700000000000003,341,406,0,674,0.252,75.52,34.76,0.13,991,6,183,1 +2020,5,8,4,0,30.3,1.34,0.1477,0.61,138,837,914,8,24.8,390,433,0,791,0.252,72.58,22.09,0.13,990,6,196,1 +2020,5,8,5,0,30.700000000000003,1.35,0.1477,0.61,141,849,964,8,24.900000000000002,486,254,0,733,0.251,71.32000000000001,14.16,0.13,989,6,199,1 +2020,5,8,6,0,30.900000000000002,1.35,0.161,0.61,146,834,936,6,25,471,261,0,718,0.25,70.86,18.6,0.13,988,6.1000000000000005,191,1 +2020,5,8,7,0,30.8,1.36,0.1622,0.61,140,809,838,6,25.1,415,94,0,497,0.249,71.7,30.400000000000002,0.13,987,6.1000000000000005,175,1.2000000000000002 +2020,5,8,8,0,30.5,1.37,0.1612,0.61,129,761,676,6,25.400000000000002,292,38,0,319,0.247,74.12,43.97,0.13,987,6.1000000000000005,157,1.3 +2020,5,8,9,0,30.3,1.3900000000000001,0.1563,0.61,109,676,467,6,25.700000000000003,220,67,0,256,0.246,76.51,58.06,0.13,986,6.1000000000000005,146,1.2000000000000002 +2020,5,8,10,0,29.5,1.4000000000000001,0.15460000000000002,0.61,79,505,233,6,25.5,9,0,0,9,0.246,79.08,72.31,0.13,987,6.1000000000000005,146,1.1 +2020,5,8,11,0,28.200000000000003,1.3900000000000001,0.1558,0.61,22,117,29,6,25.900000000000002,3,0,3,3,0.248,87.53,86.48,0.13,988,6.1000000000000005,174,0.7000000000000001 +2020,5,8,12,0,27.6,1.3800000000000001,0.16,0.61,0,0,0,7,25.700000000000003,0,0,0,0,0.249,89.27,100.95,0.13,989,6.1000000000000005,200,0.8 +2020,5,8,13,0,27.1,1.37,0.1633,0.61,0,0,0,7,25.5,0,0,0,0,0.25,91.17,115.07000000000001,0.13,990,6,212,0.8 +2020,5,8,14,0,26.700000000000003,1.36,0.1633,0.61,0,0,0,6,25.400000000000002,0,0,0,0,0.251,92.49,128.86,0.13,990,5.9,216,0.8 +2020,5,8,15,0,26.400000000000002,1.35,0.1635,0.61,0,0,0,9,25.200000000000003,0,0,0,0,0.251,93.14,141.92000000000002,0.13,991,5.800000000000001,211,0.7000000000000001 +2020,5,8,16,0,26.1,1.33,0.1626,0.61,0,0,0,6,25.1,0,0,0,0,0.25,93.97,153.15,0.13,990,5.7,200,0.8 +2020,5,8,17,0,25.8,1.31,0.16190000000000002,0.61,0,0,0,6,24.900000000000002,0,0,0,0,0.25,95.03,159.25,0.13,990,5.7,192,0.8 +2020,5,8,18,0,25.5,1.28,0.1706,0.61,0,0,0,6,24.8,0,0,0,0,0.25,96.10000000000001,155.96,0.13,989,5.6000000000000005,191,0.8 +2020,5,8,19,0,25.400000000000002,1.26,0.17950000000000002,0.61,0,0,0,6,24.8,0,0,0,0,0.25,96.23,145.89000000000001,0.13,988,5.6000000000000005,196,0.8 +2020,5,8,20,0,25.200000000000003,1.23,0.17650000000000002,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.249,97.12,133.25,0.13,988,5.7,200,0.8 +2020,5,8,21,0,25.200000000000003,1.24,0.1797,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.25,97,119.63,0.13,989,5.7,198,0.8 +2020,5,8,22,0,25.200000000000003,1.26,0.17220000000000002,0.61,0,0,0,7,24.6,0,0,0,0,0.25,96.67,105.60000000000001,0.13,989,5.7,192,0.8 +2020,5,8,23,0,25.6,1.26,0.1564,0.61,0,0,0,7,25.1,0,0,0,0,0.251,96.82000000000001,91.37,0.13,990,5.7,181,0.8 +2020,5,9,0,0,26.8,1.29,0.1373,0.61,63,427,159,7,25.8,83,80,3,101,0.252,94.01,77.01,0.13,990,5.800000000000001,168,1.4000000000000001 +2020,5,9,1,0,27.8,1.33,0.11720000000000001,0.61,90,670,396,6,26,165,20,0,174,0.252,89.86,62.75,0.13,991,5.800000000000001,165,1.6 +2020,5,9,2,0,28.700000000000003,1.35,0.1056,0.61,102,784,620,7,25.5,285,302,0,485,0.253,82.81,48.61,0.13,991,5.800000000000001,165,1.6 +2020,5,9,3,0,29.6,1.29,0.1303,0.61,124,818,796,7,25.3,399,128,0,504,0.254,77.72,34.84,0.13,991,5.9,167,1.6 +2020,5,9,4,0,30.1,1.29,0.134,0.61,132,845,915,7,25.3,440,316,0,733,0.254,75.43,22.25,0.13,991,6,171,1.7000000000000002 +2020,5,9,5,0,30.3,1.3,0.1338,0.61,135,856,964,7,25.200000000000003,494,136,0,626,0.253,74.16,14.42,0.13,990,6.1000000000000005,173,1.8 +2020,5,9,6,0,30.400000000000002,1.29,0.1549,0.61,143,836,935,7,25.1,475,234,0,697,0.252,73.5,18.8,0.13,989,6.2,173,1.8 +2020,5,9,7,0,30.1,1.3,0.1658,0.61,142,805,835,6,25.1,387,56,0,435,0.251,74.65,30.52,0.13,989,6.2,175,1.9000000000000001 +2020,5,9,8,0,29.700000000000003,1.31,0.15810000000000002,0.61,128,761,675,6,25.200000000000003,336,117,0,420,0.25,76.86,44.04,0.13,988,6.2,178,1.8 +2020,5,9,9,0,29.200000000000003,1.33,0.167,0.61,113,664,464,7,25.400000000000002,201,360,0,391,0.25,80.26,58.1,0.13,988,6.2,174,1.5 +2020,5,9,10,0,28.400000000000002,1.34,0.163,0.61,81,493,231,8,25.5,81,478,0,226,0.249,84.36,72.33,0.13,988,6.2,163,1.4000000000000001 +2020,5,9,11,0,27.3,1.36,0.1474,0.61,22,121,30,7,25.8,22,121,5,30,0.249,91.39,86.48,0.13,989,6.2,155,1 +2020,5,9,12,0,26.8,1.3800000000000001,0.1332,0.61,0,0,0,7,25.5,0,0,0,0,0.25,92.72,100.93,0.13,989,6.1000000000000005,146,1 +2020,5,9,13,0,26.5,1.3900000000000001,0.1222,0.61,0,0,0,7,25.3,0,0,0,0,0.251,93.32000000000001,115.02,0.13,990,6.1000000000000005,137,0.9 +2020,5,9,14,0,26.3,1.3900000000000001,0.115,0.61,0,0,0,8,25.200000000000003,0,0,0,0,0.252,93.43,128.78,0.13,990,6.1000000000000005,125,0.9 +2020,5,9,15,0,26.1,1.3900000000000001,0.1116,0.61,0,0,0,8,25,0,0,0,0,0.253,93.58,141.8,0.13,990,6.1000000000000005,113,0.9 +2020,5,9,16,0,26,1.3800000000000001,0.1114,0.61,0,0,0,8,24.8,0,0,0,0,0.253,93.26,152.95000000000002,0.13,991,6.1000000000000005,105,0.8 +2020,5,9,17,0,25.8,1.36,0.11520000000000001,0.61,0,0,0,3,24.700000000000003,0,0,0,0,0.252,93.60000000000001,158.99,0.13,990,6.2,102,0.8 +2020,5,9,18,0,25.700000000000003,1.34,0.11960000000000001,0.61,0,0,0,7,24.6,0,0,0,0,0.252,93.69,155.73,0.13,990,6.2,98,0.7000000000000001 +2020,5,9,19,0,25.6,1.33,0.1223,0.61,0,0,0,3,24.5,0,0,0,0,0.251,93.76,145.73,0.13,989,6.1000000000000005,98,0.6000000000000001 +2020,5,9,20,0,25.400000000000002,1.32,0.12430000000000001,0.61,0,0,0,3,24.5,0,0,0,0,0.25,94.5,133.14000000000001,0.13,989,6.1000000000000005,105,0.7000000000000001 +2020,5,9,21,0,25.1,1.32,0.1258,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.25,95.97,119.56,0.13,989,6.1000000000000005,107,0.7000000000000001 +2020,5,9,22,0,25,1.33,0.1245,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.25,96.51,105.55,0.13,989,6.1000000000000005,111,0.8 +2020,5,9,23,0,25.3,1.35,0.12090000000000001,0.61,0,0,0,3,24.8,0,0,0,0,0.25,97.12,91.35000000000001,0.13,990,6.1000000000000005,124,0.8 +2020,5,10,0,0,26.6,1.36,0.11960000000000001,0.61,59,449,160,8,25.400000000000002,81,164,3,118,0.251,93.14,77,0.13,991,6.1000000000000005,136,1.5 +2020,5,10,1,0,27.8,1.37,0.1193,0.61,89,666,394,8,25.700000000000003,163,375,0,334,0.252,88.33,62.77,0.13,991,6.1000000000000005,139,1.9000000000000001 +2020,5,10,2,0,28.6,1.36,0.12200000000000001,0.61,108,767,615,7,25.6,278,331,0,497,0.252,84.03,48.65,0.13,992,6.2,135,2.1 +2020,5,10,3,0,29.200000000000003,1.33,0.1403,0.61,128,809,791,7,25.6,395,113,0,488,0.252,81.06,34.92,0.13,992,6.2,133,2.2 +2020,5,10,4,0,29.700000000000003,1.31,0.1454,0.61,137,836,910,8,25.700000000000003,387,37,0,421,0.252,79.04,22.400000000000002,0.13,991,6.300000000000001,132,2.3000000000000003 +2020,5,10,5,0,30,1.29,0.149,0.61,142,844,958,8,25.700000000000003,426,44,0,469,0.251,77.9,14.67,0.13,990,6.4,131,2.3000000000000003 +2020,5,10,6,0,30.200000000000003,1.3,0.2847,0.61,198,755,912,7,25.700000000000003,304,17,0,320,0.25,77,19,0.13,989,6.4,129,2.2 +2020,5,10,7,0,30.1,1.28,0.29150000000000004,0.61,192,722,813,6,25.700000000000003,259,14,0,271,0.249,77.51,30.64,0.13,988,6.5,129,2 +2020,5,10,8,0,29.700000000000003,1.25,0.2916,0.61,176,664,653,6,26,217,10,0,224,0.248,80.68,44.12,0.13,988,6.6000000000000005,129,1.7000000000000002 +2020,5,10,9,0,29.1,1.22,0.321,0.61,158,541,444,6,26.3,49,0,0,49,0.247,84.79,58.14,0.13,988,6.6000000000000005,128,1.5 +2020,5,10,10,0,28.3,1.21,0.3383,0.61,112,342,216,6,26.5,39,0,0,39,0.247,90.01,72.35000000000001,0.13,989,6.7,127,1.2000000000000002 +2020,5,10,11,0,27.400000000000002,1.19,0.3381,0.61,21,38,23,9,26.5,8,0,3,8,0.246,94.81,86.48,0.13,989,6.7,124,0.9 +2020,5,10,12,0,27,1.18,0.337,0.61,0,0,0,9,26.3,0,0,0,0,0.247,96.07000000000001,100.91,0.13,990,6.6000000000000005,122,1 +2020,5,10,13,0,26.8,1.17,0.33390000000000003,0.61,0,0,0,6,26.200000000000003,0,0,0,0,0.247,96.4,114.98,0.13,990,6.6000000000000005,120,1.1 +2020,5,10,14,0,26.6,1.16,0.3234,0.61,0,0,0,7,26.1,0,0,0,0,0.248,97.02,128.7,0.13,991,6.5,120,1.2000000000000002 +2020,5,10,15,0,26.400000000000002,1.16,0.315,0.61,0,0,0,6,26,0,0,0,0,0.25,97.72,141.68,0.13,991,6.4,118,1.2000000000000002 +2020,5,10,16,0,26.200000000000003,1.16,0.3038,0.61,0,0,0,7,25.900000000000002,0,0,0,0,0.251,98.4,152.76,0.13,990,6.4,113,1.2000000000000002 +2020,5,10,17,0,26.1,1.17,0.2808,0.61,0,0,0,7,25.8,0,0,0,0,0.251,98.44,158.73,0.13,990,6.300000000000001,108,1.2000000000000002 +2020,5,10,18,0,25.900000000000002,1.19,0.2787,0.61,0,0,0,7,25.700000000000003,0,0,0,0,0.251,98.8,155.51,0.13,989,6.300000000000001,107,1.1 +2020,5,10,19,0,25.8,1.2,0.2761,0.61,0,0,0,7,25.6,0,0,0,0,0.251,98.54,145.58,0.13,989,6.300000000000001,114,0.9 +2020,5,10,20,0,25.700000000000003,1.19,0.2615,0.61,0,0,0,7,25.400000000000002,0,0,0,0,0.25,98.45,133.03,0.13,989,6.4,129,0.9 +2020,5,10,21,0,25.700000000000003,1.2,0.258,0.61,0,0,0,7,25.400000000000002,0,0,0,0,0.249,98.06,119.49000000000001,0.13,990,6.4,141,0.9 +2020,5,10,22,0,25.6,1.22,0.2421,0.61,0,0,0,8,25.3,0,0,0,0,0.248,98.16,105.51,0.13,990,6.4,140,0.9 +2020,5,10,23,0,25.6,1.24,0.21830000000000002,0.61,0,0,0,0,25.400000000000002,0,0,0,0,0.247,98.72,91.32000000000001,0.13,990,6.300000000000001,131,1 +2020,5,11,0,0,26.5,1.26,0.2043,0.61,73,355,153,8,25.900000000000002,83,84,3,102,0.247,96.68,76.99,0.13,991,6.300000000000001,123,1.7000000000000002 +2020,5,11,1,0,27,1.27,0.1928,0.61,112,594,384,4,26.1,137,0,0,137,0.248,94.92,62.79,0.13,991,6.2,120,2.2 +2020,5,11,2,0,27.6,1.28,0.1814,0.61,132,717,605,0,26.1,132,717,0,605,0.249,91.33,48.7,0.13,991,6.300000000000001,118,2.2 +2020,5,11,3,0,28.200000000000003,1.31,0.1738,0.61,142,784,784,0,25.8,142,784,0,784,0.25,86.67,35.01,0.13,992,6.4,118,1.9000000000000001 +2020,5,11,4,0,28.700000000000003,1.31,0.16970000000000002,0.61,148,818,904,3,25.5,466,186,0,638,0.251,82.74,22.55,0.13,991,6.5,122,1.6 +2020,5,11,5,0,28.900000000000002,1.31,0.16720000000000002,0.61,150,831,953,0,25.3,150,831,0,953,0.251,80.95,14.93,0.13,991,6.5,123,1.4000000000000001 +2020,5,11,6,0,29.1,1.34,0.1825,0.61,155,816,925,0,25.200000000000003,155,816,0,925,0.251,79.52,19.2,0.13,990,6.5,121,1.3 +2020,5,11,7,0,29.1,1.35,0.17950000000000002,0.61,147,793,829,0,25.1,147,793,0,829,0.251,79.06,30.75,0.13,989,6.5,122,1.2000000000000002 +2020,5,11,8,0,29,1.35,0.17750000000000002,0.61,135,745,669,0,25.200000000000003,135,745,0,669,0.251,79.84,44.19,0.13,988,6.5,127,1.1 +2020,5,11,9,0,28.700000000000003,1.34,0.1822,0.61,117,649,459,0,25.6,117,649,0,459,0.251,83.27,58.18,0.13,989,6.6000000000000005,135,1 +2020,5,11,10,0,28.1,1.35,0.1925,0.61,87,462,227,3,25.700000000000003,112,215,0,177,0.251,86.93,72.37,0.13,989,6.6000000000000005,138,0.9 +2020,5,11,11,0,27.200000000000003,1.35,0.18910000000000002,0.61,23,95,28,6,25.8,15,0,3,15,0.252,91.99,86.47,0.13,990,6.5,142,0.7000000000000001 +2020,5,11,12,0,26.900000000000002,1.36,0.1872,0.61,0,0,0,6,25.5,0,0,0,0,0.252,92.23,100.88,0.13,990,6.5,136,0.8 +2020,5,11,13,0,26.6,1.37,0.1875,0.61,0,0,0,9,25.400000000000002,0,0,0,0,0.253,93.41,114.93,0.13,991,6.5,127,0.8 +2020,5,11,14,0,26.3,1.3900000000000001,0.18610000000000002,0.61,0,0,0,6,25.400000000000002,0,0,0,0,0.254,94.56,128.62,0.13,991,6.5,121,0.8 +2020,5,11,15,0,26.1,1.3900000000000001,0.1893,0.61,0,0,0,6,25.200000000000003,0,0,0,0,0.254,94.96000000000001,141.56,0.13,991,6.5,118,0.8 +2020,5,11,16,0,25.8,1.3800000000000001,0.199,0.61,0,0,0,6,25.1,0,0,0,0,0.254,95.91,152.57,0.13,991,6.5,115,0.7000000000000001 +2020,5,11,17,0,25.6,1.36,0.2134,0.61,0,0,0,6,25,0,0,0,0,0.254,96.46000000000001,158.48,0.13,990,6.5,108,0.7000000000000001 +2020,5,11,18,0,25.3,1.34,0.2323,0.61,0,0,0,6,24.900000000000002,0,0,0,0,0.254,97.71000000000001,155.29,0.13,989,6.4,103,0.7000000000000001 +2020,5,11,19,0,25.200000000000003,1.32,0.2551,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.254,98.17,145.43,0.13,989,6.4,102,0.7000000000000001 +2020,5,11,20,0,25.1,1.29,0.2778,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.253,98.78,132.93,0.13,989,6.4,104,0.7000000000000001 +2020,5,11,21,0,25.1,1.27,0.32080000000000003,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.253,98.81,119.42,0.13,989,6.5,108,0.7000000000000001 +2020,5,11,22,0,25.1,1.25,0.3632,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.253,98.87,105.46000000000001,0.13,989,6.5,112,0.7000000000000001 +2020,5,11,23,0,25.400000000000002,1.23,0.3799,0.61,0,0,0,7,25.200000000000003,0,0,0,0,0.253,98.83,91.3,0.13,990,6.5,112,0.7000000000000001 +2020,5,12,0,0,26.400000000000002,1.23,0.405,0.61,92,218,141,7,25.6,92,218,5,141,0.253,95.56,76.99,0.13,990,6.5,110,1.2000000000000002 +2020,5,12,1,0,27.400000000000002,1.24,0.39690000000000003,0.61,161,443,364,8,26.1,164,368,0,332,0.253,92.5,62.81,0.13,991,6.5,112,1.5 +2020,5,12,2,0,28.200000000000003,1.25,0.35800000000000004,0.61,190,594,582,8,26.3,282,310,0,486,0.253,89.46000000000001,48.75,0.13,991,6.5,112,1.7000000000000002 +2020,5,12,3,0,28.8,1.25,0.2859,0.61,187,708,766,8,26.3,376,306,0,627,0.253,86.55,35.1,0.13,991,6.5,111,1.9000000000000001 +2020,5,12,4,0,29.400000000000002,1.28,0.2725,0.61,192,753,887,0,26.3,192,753,0,887,0.253,83.28,22.71,0.13,990,6.5,112,1.9000000000000001 +2020,5,12,5,0,29.700000000000003,1.29,0.26830000000000004,0.61,194,769,936,3,26.200000000000003,493,177,0,664,0.253,81.51,15.17,0.13,990,6.6000000000000005,113,1.8 +2020,5,12,6,0,29.8,1.32,0.3373,0.61,219,724,901,1,26.1,219,724,0,901,0.253,80.81,19.39,0.13,989,6.7,116,1.7000000000000002 +2020,5,12,7,0,29.700000000000003,1.33,0.3482,0.61,213,688,804,7,26.200000000000003,417,238,0,622,0.252,81.47,30.87,0.13,988,6.7,121,1.7000000000000002 +2020,5,12,8,0,29.200000000000003,1.32,0.35250000000000004,0.61,196,626,644,6,26.400000000000002,111,0,0,111,0.253,84.91,44.25,0.13,988,6.800000000000001,126,1.5 +2020,5,12,9,0,28.8,1.32,0.3831,0.61,172,503,437,9,26.700000000000003,25,0,0,25,0.253,88.34,58.22,0.13,988,6.800000000000001,127,1.3 +2020,5,12,10,0,28.1,1.32,0.403,0.61,118,308,212,6,26.6,11,0,0,11,0.253,91.65,72.38,0.13,989,6.800000000000001,124,1.1 +2020,5,12,11,0,27.200000000000003,1.31,0.4072,0.61,20,33,22,6,26.6,4,0,3,4,0.253,96.47,86.47,0.13,989,6.9,124,0.8 +2020,5,12,12,0,26.900000000000002,1.31,0.4262,0.61,0,0,0,6,26.5,0,0,0,0,0.254,97.4,100.85000000000001,0.13,990,6.9,120,0.9 +2020,5,12,13,0,26.700000000000003,1.3,0.4292,0.61,0,0,0,6,26.400000000000002,0,0,0,0,0.254,98.09,114.88,0.13,991,6.9,116,1 +2020,5,12,14,0,26.6,1.3,0.40080000000000005,0.61,0,0,0,6,26.3,0,0,0,0,0.254,98.09,128.54,0.13,991,7,115,1.1 +2020,5,12,15,0,26.5,1.29,0.3956,0.61,0,0,0,6,26.200000000000003,0,0,0,0,0.254,98.17,141.43,0.13,991,7,113,1.2000000000000002 +2020,5,12,16,0,26.400000000000002,1.29,0.372,0.61,0,0,0,6,26.1,0,0,0,0,0.253,98.27,152.39000000000001,0.13,991,7,109,1.4000000000000001 +2020,5,12,17,0,26.3,1.29,0.3321,0.61,0,0,0,8,26,0,0,0,0,0.252,98.29,158.24,0.13,990,6.9,105,1.4000000000000001 +2020,5,12,18,0,26.200000000000003,1.3,0.3178,0.61,0,0,0,8,25.900000000000002,0,0,0,0,0.251,98.33,155.07,0.13,989,6.800000000000001,98,1.2000000000000002 +2020,5,12,19,0,26,1.31,0.28550000000000003,0.61,0,0,0,7,25.8,0,0,0,0,0.249,98.68,145.28,0.13,989,6.800000000000001,80,0.9 +2020,5,12,20,0,25.8,1.31,0.2422,0.61,0,0,0,7,25.6,0,0,0,0,0.248,99,132.83,0.13,989,6.800000000000001,76,0.9 +2020,5,12,21,0,25.700000000000003,1.35,0.2192,0.61,0,0,0,7,25.5,0,0,0,0,0.247,98.89,119.35000000000001,0.13,989,6.7,72,0.8 +2020,5,12,22,0,25.6,1.37,0.1976,0.61,0,0,0,6,25.3,0,0,0,0,0.247,98.4,105.42,0.13,989,6.6000000000000005,61,0.8 +2020,5,12,23,0,25.6,1.37,0.1864,0.61,0,0,0,6,25.3,0,0,0,0,0.247,98.49000000000001,91.28,0.13,990,6.5,55,0.8 +2020,5,13,0,0,26.3,1.37,0.191,0.61,70,372,154,6,25.8,32,0,3,32,0.248,96.84,76.99,0.13,991,6.5,65,1.1 +2020,5,13,1,0,26.8,1.36,0.1993,0.61,113,589,382,6,25.900000000000002,129,0,0,129,0.248,94.77,62.83,0.13,992,6.5,97,1.5 +2020,5,13,2,0,27.200000000000003,1.36,0.197,0.61,136,705,600,6,25.8,269,44,0,298,0.249,92.31,48.79,0.13,992,6.5,114,1.7000000000000002 +2020,5,13,3,0,27.8,1.35,0.1883,0.61,147,773,779,7,25.700000000000003,358,53,0,402,0.249,88.12,35.18,0.13,992,6.4,126,1.7000000000000002 +2020,5,13,4,0,28.400000000000002,1.36,0.18430000000000002,0.61,154,809,899,7,25.400000000000002,425,61,0,481,0.248,84.08,22.86,0.13,991,6.300000000000001,136,1.6 +2020,5,13,5,0,28.900000000000002,1.37,0.1839,0.61,156,822,948,7,25.200000000000003,430,47,0,475,0.248,80.48,15.42,0.13,990,6.2,143,1.5 +2020,5,13,6,0,29.1,1.3800000000000001,0.1978,0.61,161,807,922,6,25,460,89,0,543,0.247,78.67,19.580000000000002,0.13,990,6.1000000000000005,147,1.3 +2020,5,13,7,0,29.200000000000003,1.3900000000000001,0.2043,0.61,157,778,824,8,24.8,424,158,0,559,0.247,77.44,30.98,0.13,989,6,145,1.2000000000000002 +2020,5,13,8,0,29,1.4000000000000001,0.2093,0.61,146,724,664,7,24.8,336,169,0,457,0.247,78.15,44.32,0.13,988,5.9,145,1.2000000000000002 +2020,5,13,9,0,28.8,1.42,0.2097,0.61,125,630,456,2,25.200000000000003,135,592,3,446,0.247,80.97,58.25,0.13,988,5.9,147,1 +2020,5,13,10,0,28.200000000000003,1.46,0.2038,0.61,89,457,227,1,25.200000000000003,89,457,0,227,0.247,83.74,72.39,0.13,989,5.9,150,1 +2020,5,13,11,0,27,1.5,0.19460000000000002,0.61,22,101,29,0,25.3,22,101,0,29,0.247,90.23,86.46000000000001,0.13,989,5.9,165,0.8 +2020,5,13,12,0,26.5,1.52,0.1887,0.61,0,0,0,0,24.900000000000002,0,0,0,0,0.249,90.9,100.82000000000001,0.13,990,5.9,177,0.8 +2020,5,13,13,0,26.200000000000003,1.53,0.1837,0.61,0,0,0,0,24.700000000000003,0,0,0,0,0.25,91.34,114.82000000000001,0.13,990,5.9,183,0.8 +2020,5,13,14,0,26,1.54,0.1816,0.61,0,0,0,0,24.5,0,0,0,0,0.252,91.37,128.46,0.13,990,5.9,184,0.8 +2020,5,13,15,0,25.8,1.53,0.17980000000000002,0.61,0,0,0,0,24.3,0,0,0,0,0.254,91.51,141.31,0.13,990,5.800000000000001,171,0.8 +2020,5,13,16,0,25.5,1.53,0.17550000000000002,0.61,0,0,0,0,24.200000000000003,0,0,0,0,0.254,92.34,152.20000000000002,0.13,990,5.800000000000001,142,0.8 +2020,5,13,17,0,25.200000000000003,1.53,0.1718,0.61,0,0,0,3,24.1,0,0,0,0,0.255,93.37,157.99,0.13,990,5.800000000000001,115,0.9 +2020,5,13,18,0,24.8,1.52,0.16870000000000002,0.61,0,0,0,8,24,0,0,0,0,0.255,95.04,154.86,0.13,989,5.7,99,0.9 +2020,5,13,19,0,24.400000000000002,1.5,0.16620000000000001,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.254,96.82000000000001,145.13,0.13,989,5.7,88,0.9 +2020,5,13,20,0,24.1,1.49,0.16390000000000002,0.61,0,0,0,0,23.8,0,0,0,0,0.253,97.98,132.73,0.13,988,5.7,81,0.9 +2020,5,13,21,0,23.900000000000002,1.48,0.1626,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.252,98.75,119.29,0.13,989,5.6000000000000005,76,1 +2020,5,13,22,0,23.700000000000003,1.48,0.1602,0.61,0,0,0,0,23.6,0,0,0,0,0.253,99.44,105.38,0.13,989,5.6000000000000005,73,1 +2020,5,13,23,0,24.3,1.48,0.1557,0.61,0,0,0,0,23.900000000000002,0,0,0,0,0.253,97.74000000000001,91.26,0.13,990,5.6000000000000005,73,1.2000000000000002 +2020,5,14,0,0,26,1.48,0.152,0.61,64,417,158,0,24.5,64,417,0,158,0.254,91.25,77,0.13,990,5.6000000000000005,86,1.8 +2020,5,14,1,0,27.6,1.48,0.14830000000000002,0.61,97,640,389,0,24.700000000000003,97,640,0,389,0.255,84.43,62.85,0.13,991,5.7,101,2 +2020,5,14,2,0,28.900000000000002,1.49,0.1447,0.61,116,750,609,0,24.8,116,750,0,609,0.255,78.60000000000001,48.85,0.13,991,5.7,111,2.1 +2020,5,14,3,0,29.900000000000002,1.58,0.11610000000000001,0.61,115,829,792,0,24.900000000000002,115,829,0,792,0.255,74.77,35.27,0.13,991,5.800000000000001,120,1.9000000000000001 +2020,5,14,4,0,30.6,1.59,0.1096,0.61,118,861,911,0,25,118,861,0,911,0.255,72.29,23.02,0.13,991,5.9,129,1.8 +2020,5,14,5,0,30.900000000000002,1.58,0.10880000000000001,0.61,120,872,960,0,25,120,872,0,960,0.255,71.05,15.66,0.13,990,5.9,136,1.7000000000000002 +2020,5,14,6,0,31,1.4000000000000001,0.1317,0.61,130,850,930,0,25,130,850,0,930,0.255,70.59,19.77,0.13,989,6,142,1.6 +2020,5,14,7,0,30.900000000000002,1.3800000000000001,0.1391,0.61,128,821,831,0,25,128,821,0,831,0.255,70.92,31.080000000000002,0.13,988,6.1000000000000005,146,1.5 +2020,5,14,8,0,30.6,1.37,0.1416,0.61,119,772,671,3,25.1,320,76,0,375,0.256,72.49,44.38,0.13,987,6.1000000000000005,144,1.5 +2020,5,14,9,0,30.200000000000003,1.36,0.1502,0.61,106,677,462,3,25.5,227,172,0,318,0.256,76.11,58.29,0.13,987,6.1000000000000005,137,1.2000000000000002 +2020,5,14,10,0,29.400000000000002,1.36,0.15610000000000002,0.61,79,499,230,9,25.5,9,0,0,9,0.255,79.4,72.4,0.13,988,6.1000000000000005,130,1.1 +2020,5,14,11,0,28.1,1.37,0.15330000000000002,0.61,22,119,30,6,25.900000000000002,3,0,3,3,0.255,87.9,86.45,0.13,988,6.1000000000000005,129,0.8 +2020,5,14,12,0,27.6,1.3800000000000001,0.1501,0.61,0,0,0,6,25.6,0,0,0,0,0.255,88.89,100.79,0.13,989,6,127,0.8 +2020,5,14,13,0,27.200000000000003,1.3900000000000001,0.1474,0.61,0,0,0,6,25.400000000000002,0,0,0,0,0.254,89.79,114.77,0.13,989,6,123,0.9 +2020,5,14,14,0,26.900000000000002,1.4000000000000001,0.1452,0.61,0,0,0,6,25.200000000000003,0,0,0,0,0.254,90.4,128.38,0.13,990,5.9,113,0.9 +2020,5,14,15,0,26.6,1.41,0.14300000000000002,0.61,0,0,0,7,25,0,0,0,0,0.254,90.84,141.18,0.13,990,5.9,102,0.9 +2020,5,14,16,0,26.3,1.43,0.1421,0.61,0,0,0,7,24.8,0,0,0,0,0.254,91.38,152.02,0.13,989,5.800000000000001,83,0.8 +2020,5,14,17,0,25.900000000000002,1.43,0.14250000000000002,0.61,0,0,0,3,24.6,0,0,0,0,0.254,92.62,157.76,0.13,988,5.7,64,0.8 +2020,5,14,18,0,25.400000000000002,1.44,0.1461,0.61,0,0,0,8,24.5,0,0,0,0,0.255,94.53,154.66,0.13,988,5.7,54,0.7000000000000001 +2020,5,14,19,0,25.1,1.43,0.1549,0.61,0,0,0,0,24.3,0,0,0,0,0.254,95.26,145,0.13,987,5.7,51,0.7000000000000001 +2020,5,14,20,0,25,1.4000000000000001,0.16870000000000002,0.61,0,0,0,3,24.200000000000003,0,0,0,0,0.254,95.31,132.64000000000001,0.13,987,5.7,50,0.6000000000000001 +2020,5,14,21,0,25,1.3800000000000001,0.1837,0.61,0,0,0,0,24.200000000000003,0,0,0,0,0.253,95.29,119.23,0.13,988,5.800000000000001,61,0.6000000000000001 +2020,5,14,22,0,24.900000000000002,1.37,0.195,0.61,0,0,0,0,24.200000000000003,0,0,0,0,0.254,95.79,105.35000000000001,0.13,988,5.9,84,0.7000000000000001 +2020,5,14,23,0,25.200000000000003,1.36,0.199,0.61,0,0,0,0,24.6,0,0,0,0,0.254,96.55,91.25,0.13,989,5.9,98,0.8 +2020,5,15,0,0,26.6,1.3800000000000001,0.194,0.61,71,370,154,0,25.400000000000002,71,370,0,154,0.255,93.3,77,0.13,989,5.9,112,1.4000000000000001 +2020,5,15,1,0,27.900000000000002,1.41,0.1832,0.61,108,605,384,0,25.5,108,605,0,384,0.255,86.7,62.88,0.13,989,5.9,119,1.8 +2020,5,15,2,0,29,1.43,0.1738,0.61,127,724,603,0,25.400000000000002,127,724,0,603,0.256,81.01,48.9,0.13,990,6,123,2 +2020,5,15,3,0,30,1.42,0.1773,0.61,142,782,779,0,25.5,142,782,0,779,0.256,76.68,35.37,0.13,989,6.1000000000000005,124,2 +2020,5,15,4,0,30.6,1.43,0.1757,0.61,149,814,898,0,25.5,149,814,0,898,0.255,74.3,23.17,0.13,988,6.2,124,1.8 +2020,5,15,5,0,30.900000000000002,1.43,0.17300000000000001,0.61,150,827,945,0,25.6,150,827,0,945,0.255,73.42,15.89,0.13,988,6.300000000000001,128,1.7000000000000002 +2020,5,15,6,0,31.1,1.43,0.1406,0.61,135,842,926,7,25.6,461,275,0,719,0.254,72.65,19.95,0.13,987,6.4,135,1.6 +2020,5,15,7,0,30.900000000000002,1.42,0.1507,0.61,134,811,828,3,25.700000000000003,364,392,3,700,0.253,73.75,31.19,0.13,986,6.5,140,1.6 +2020,5,15,8,0,30.400000000000002,1.41,0.15710000000000002,0.61,126,758,667,0,25.900000000000002,126,758,0,667,0.252,76.99,44.44,0.13,986,6.6000000000000005,143,1.6 +2020,5,15,9,0,29.8,1.4000000000000001,0.1756,0.61,114,654,457,1,26.3,114,654,0,457,0.252,81.38,58.32,0.13,985,6.6000000000000005,144,1.5 +2020,5,15,10,0,28.8,1.3800000000000001,0.1883,0.61,86,466,226,8,26.3,103,8,0,105,0.252,86.48,72.41,0.13,986,6.6000000000000005,141,1.4000000000000001 +2020,5,15,11,0,27.700000000000003,1.36,0.19260000000000002,0.61,23,94,28,3,26.5,21,55,3,25,0.252,93.45,86.44,0.13,986,6.6000000000000005,141,1.1 +2020,5,15,12,0,27.400000000000002,1.33,0.2064,0.61,0,0,0,8,26.400000000000002,0,0,0,0,0.253,94.12,100.76,0.13,987,6.7,140,1.1 +2020,5,15,13,0,27.1,1.3,0.22240000000000001,0.61,0,0,0,6,26.3,0,0,0,0,0.254,95.26,114.71000000000001,0.13,988,6.7,139,1.1 +2020,5,15,14,0,26.900000000000002,1.27,0.2359,0.61,0,0,0,6,26.200000000000003,0,0,0,0,0.255,95.91,128.29,0.13,988,6.7,140,1.2000000000000002 +2020,5,15,15,0,26.700000000000003,1.25,0.25830000000000003,0.61,0,0,0,7,26.1,0,0,0,0,0.255,96.59,141.06,0.13,988,6.7,138,1.2000000000000002 +2020,5,15,16,0,26.5,1.24,0.24910000000000002,0.61,0,0,0,3,26,0,0,0,0,0.256,97.29,151.83,0.13,988,6.6000000000000005,136,1.3 +2020,5,15,17,0,26.3,1.23,0.21730000000000002,0.61,0,0,0,7,25.900000000000002,0,0,0,0,0.255,97.86,157.52,0.13,987,6.5,134,1.3 +2020,5,15,18,0,26.1,1.24,0.2097,0.61,0,0,0,0,25.8,0,0,0,0,0.255,98.25,154.46,0.13,986,6.5,122,1.1 +2020,5,15,19,0,26,1.25,0.2026,0.61,0,0,0,0,25.700000000000003,0,0,0,0,0.255,98.14,144.86,0.13,987,6.6000000000000005,99,0.9 +2020,5,15,20,0,25.900000000000002,1.25,0.1892,0.61,0,0,0,0,25.6,0,0,0,0,0.254,98.23,132.55,0.13,987,6.6000000000000005,108,1 +2020,5,15,21,0,25.8,1.27,0.1968,0.61,0,0,0,0,25.5,0,0,0,0,0.252,98.48,119.17,0.13,987,6.5,116,1.1 +2020,5,15,22,0,25.700000000000003,1.29,0.19110000000000002,0.61,0,0,0,0,25.400000000000002,0,0,0,0,0.251,98.5,105.32000000000001,0.13,988,6.5,116,1 +2020,5,15,23,0,25.900000000000002,1.3,0.1748,0.61,0,0,0,8,25.6,0,0,0,0,0.25,98.24000000000001,91.24,0.13,988,6.4,114,1 +2020,5,16,0,0,26.700000000000003,1.32,0.1779,0.61,69,381,155,0,26.1,69,381,0,155,0.25,96.25,77.01,0.13,989,6.4,120,1.6 +2020,5,16,1,0,27.3,1.35,0.1704,0.61,105,613,384,0,26.1,105,613,0,384,0.25,93.37,62.910000000000004,0.13,989,6.4,122,2 +2020,5,16,2,0,28.1,1.36,0.16040000000000001,0.61,123,732,603,0,26.1,123,732,0,603,0.25,88.77,48.96,0.13,989,6.300000000000001,120,2.3000000000000003 +2020,5,16,3,0,28.900000000000002,1.07,0.3069,0.61,196,689,757,0,26,196,689,0,757,0.251,84.34,35.46,0.13,989,6.300000000000001,119,2.4000000000000004 +2020,5,16,4,0,29.6,1.08,0.3034,0.61,206,729,875,0,25.900000000000002,206,729,0,875,0.251,80.69,23.330000000000002,0.13,988,6.300000000000001,119,2.2 +2020,5,16,5,0,30,1.08,0.30560000000000004,0.61,211,741,923,7,25.900000000000002,473,278,0,740,0.251,78.61,16.12,0.13,987,6.300000000000001,117,1.9000000000000001 +2020,5,16,6,0,30.200000000000003,1.09,0.28900000000000003,0.61,202,744,900,7,25.8,463,262,0,709,0.25,77.57000000000001,20.12,0.13,987,6.4,117,1.6 +2020,5,16,7,0,30.200000000000003,1.11,0.3003,0.61,197,709,803,7,25.8,398,74,0,462,0.249,77.55,31.29,0.13,986,6.4,119,1.4000000000000001 +2020,5,16,8,0,30.1,1.1300000000000001,0.2869,0.61,176,661,647,7,26.200000000000003,296,44,0,327,0.249,79.52,44.5,0.13,986,6.4,123,1.2000000000000002 +2020,5,16,9,0,29.700000000000003,1.1400000000000001,0.31070000000000003,0.61,156,542,440,9,26.400000000000002,62,0,0,62,0.248,82.3,58.35,0.13,986,6.4,121,1.1 +2020,5,16,10,0,28.8,1.1500000000000001,0.3262,0.61,111,345,215,9,26.400000000000002,28,0,0,28,0.248,86.79,72.42,0.13,986,6.4,127,1 +2020,5,16,11,0,27.900000000000002,1.1500000000000001,0.32130000000000003,0.61,22,41,24,9,26.5,7,0,3,7,0.249,91.88,86.43,0.13,987,6.5,141,0.7000000000000001 +2020,5,16,12,0,27.6,1.1400000000000001,0.3377,0.61,0,0,0,9,26.200000000000003,0,0,0,0,0.25,91.97,100.73,0.13,987,6.6000000000000005,161,0.7000000000000001 +2020,5,16,13,0,27.3,1.12,0.35850000000000004,0.61,0,0,0,9,26.1,0,0,0,0,0.251,93.44,114.66,0.13,988,6.7,188,0.7000000000000001 +2020,5,16,14,0,27.1,1.09,0.3643,0.61,0,0,0,9,26.200000000000003,0,0,0,0,0.251,94.60000000000001,128.21,0.13,989,6.7,204,0.7000000000000001 +2020,5,16,15,0,26.8,1.08,0.3683,0.61,0,0,0,6,26.1,0,0,0,0,0.252,96.19,140.93,0.13,989,6.7,203,0.7000000000000001 +2020,5,16,16,0,26.5,1.06,0.3549,0.61,0,0,0,9,26,0,0,0,0,0.252,97.22,151.65,0.13,988,6.7,198,0.7000000000000001 +2020,5,16,17,0,26.3,1.06,0.31720000000000004,0.61,0,0,0,6,25.900000000000002,0,0,0,0,0.252,97.52,157.3,0.13,988,6.6000000000000005,192,0.8 +2020,5,16,18,0,26.1,1.08,0.27540000000000003,0.61,0,0,0,6,25.700000000000003,0,0,0,0,0.252,97.75,154.26,0.13,987,6.5,183,0.8 +2020,5,16,19,0,25.900000000000002,1.1,0.24180000000000001,0.61,0,0,0,6,25.6,0,0,0,0,0.252,98.11,144.73,0.13,986,6.300000000000001,168,0.9 +2020,5,16,20,0,25.700000000000003,1.1,0.222,0.61,0,0,0,6,25.5,0,0,0,0,0.252,98.9,132.47,0.13,985,6.300000000000001,162,0.9 +2020,5,16,21,0,25.900000000000002,1.11,0.2308,0.61,0,0,0,6,25.5,0,0,0,0,0.252,97.39,119.12,0.13,986,6.300000000000001,186,0.6000000000000001 +2020,5,16,22,0,26.1,1.1400000000000001,0.22990000000000002,0.61,0,0,0,6,25.400000000000002,0,0,0,0,0.252,95.73,105.29,0.13,987,6.5,283,0.4 +2020,5,16,23,0,26,1.16,0.19970000000000002,0.61,0,0,0,7,25.5,0,0,0,0,0.251,96.92,91.23,0.13,988,6.5,256,0.6000000000000001 +2020,5,17,0,0,26.6,1.2,0.19090000000000001,0.61,71,363,153,7,26.1,70,0,3,70,0.25,97.34,77.02,0.13,989,6.4,259,1 +2020,5,17,1,0,27.400000000000002,1.26,0.1715,0.61,104,609,382,7,26.5,189,173,0,268,0.25,94.85000000000001,62.940000000000005,0.13,990,6.4,257,1.2000000000000002 +2020,5,17,2,0,28.200000000000003,1.31,0.1422,0.61,114,745,603,7,26.5,299,119,0,377,0.25,90.59,49.01,0.13,990,6.300000000000001,250,1.3 +2020,5,17,3,0,28.5,1.35,0.1396,0.61,125,806,780,7,25.8,325,33,0,351,0.25,85.57000000000001,35.550000000000004,0.13,990,6.2,253,1.6 +2020,5,17,4,0,28.6,1.37,0.1255,0.61,125,846,900,7,25.6,444,279,0,700,0.249,83.93,23.48,0.13,989,6.2,264,1.9000000000000001 +2020,5,17,5,0,28.700000000000003,1.36,0.1236,0.61,125,858,949,8,25.6,417,404,0,805,0.249,83.58,16.34,0.13,989,6.2,269,2.1 +2020,5,17,6,0,28.6,1.36,0.12840000000000001,0.61,127,849,924,8,25.6,396,435,0,804,0.248,83.94,20.29,0.13,989,6.2,271,2.3000000000000003 +2020,5,17,7,0,28.400000000000002,1.36,0.1241,0.61,120,829,828,7,25.6,418,130,0,529,0.247,84.74,31.38,0.13,988,6.2,272,2.3000000000000003 +2020,5,17,8,0,28.1,1.37,0.1114,0.61,105,794,671,8,25.6,323,261,0,509,0.246,86.10000000000001,44.550000000000004,0.13,988,6.1000000000000005,274,2.3000000000000003 +2020,5,17,9,0,27.700000000000003,1.3900000000000001,0.10590000000000001,0.61,90,718,466,3,25.6,149,543,0,434,0.246,88.16,58.370000000000005,0.13,988,6,277,2.1 +2020,5,17,10,0,27.1,1.41,0.10070000000000001,0.61,65,562,235,7,25.700000000000003,99,332,0,200,0.247,91.8,72.42,0.13,988,5.9,280,1.6 +2020,5,17,11,0,26.200000000000003,1.42,0.09870000000000001,0.61,20,171,31,6,25.400000000000002,22,109,3,29,0.248,95.60000000000001,86.41,0.13,988,5.800000000000001,284,1 +2020,5,17,12,0,25.8,1.42,0.1019,0.61,0,0,0,7,25.200000000000003,0,0,0,0,0.249,96.54,100.69,0.13,989,5.800000000000001,286,0.9 +2020,5,17,13,0,25.6,1.44,0.10210000000000001,0.61,0,0,0,6,25,0,0,0,0,0.251,96.46000000000001,114.60000000000001,0.13,989,5.7,286,0.9 +2020,5,17,14,0,25.400000000000002,1.46,0.0988,0.61,0,0,0,6,24.8,0,0,0,0,0.253,96.24000000000001,128.12,0.13,990,5.7,285,0.8 +2020,5,17,15,0,25.200000000000003,1.47,0.0976,0.61,0,0,0,7,24.5,0,0,0,0,0.254,96.11,140.81,0.13,990,5.7,278,0.8 +2020,5,17,16,0,25,1.47,0.0971,0.61,0,0,0,7,24.3,0,0,0,0,0.255,96.10000000000001,151.47,0.13,989,5.7,257,0.7000000000000001 +2020,5,17,17,0,24.8,1.47,0.09620000000000001,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.257,96.32000000000001,157.07,0.13,989,5.7,246,0.7000000000000001 +2020,5,17,18,0,24.6,1.46,0.099,0.61,0,0,0,7,24,0,0,0,0,0.257,96.53,154.07,0.13,988,5.7,244,0.7000000000000001 +2020,5,17,19,0,24.5,1.46,0.1005,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.256,96.29,144.6,0.13,988,5.7,236,0.6000000000000001 +2020,5,17,20,0,24.3,1.46,0.09910000000000001,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.255,96.7,132.38,0.13,988,5.7,224,0.6000000000000001 +2020,5,17,21,0,24.200000000000003,1.45,0.09960000000000001,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.254,96.77,119.07000000000001,0.13,988,5.7,216,0.6000000000000001 +2020,5,17,22,0,24.1,1.45,0.09720000000000001,0.61,0,0,0,7,23.6,0,0,0,0,0.253,96.91,105.26,0.13,988,5.7,210,0.7000000000000001 +2020,5,17,23,0,24.700000000000003,1.44,0.0935,0.61,0,0,0,7,24,0,0,0,0,0.252,95.69,91.22,0.13,988,5.7,201,0.7000000000000001 +2020,5,18,0,0,26.400000000000002,1.46,0.0897,0.61,53,488,163,3,24.5,75,256,3,132,0.252,89.25,77.03,0.13,989,5.800000000000001,192,0.8 +2020,5,18,1,0,28.200000000000003,1.48,0.0859,0.61,77,699,395,8,24.1,146,447,0,349,0.252,78.35000000000001,62.980000000000004,0.13,990,5.800000000000001,180,0.6000000000000001 +2020,5,18,2,0,29.700000000000003,1.5,0.08510000000000001,0.61,92,797,614,3,23.900000000000002,238,448,0,532,0.253,71.19,49.07,0.13,990,5.800000000000001,186,0.5 +2020,5,18,3,0,30.8,1.51,0.08650000000000001,0.61,102,847,790,0,24.200000000000003,102,847,0,790,0.253,68.01,35.65,0.13,990,5.9,225,0.6000000000000001 +2020,5,18,4,0,31.6,1.5,0.09050000000000001,0.61,110,872,908,0,24.5,110,872,0,908,0.252,66.23,23.63,0.13,989,5.9,234,0.7000000000000001 +2020,5,18,5,0,32,1.48,0.0971,0.61,115,877,955,0,24.8,115,877,0,955,0.252,65.61,16.56,0.13,988,6,244,0.7000000000000001 +2020,5,18,6,0,32.1,1.47,0.1043,0.61,118,867,930,7,24.900000000000002,396,432,0,800,0.252,65.67,20.46,0.13,987,6,261,0.7000000000000001 +2020,5,18,7,0,32,1.47,0.11270000000000001,0.61,117,838,832,8,24.900000000000002,333,467,0,731,0.251,66.21000000000001,31.48,0.13,987,6.1000000000000005,259,0.7000000000000001 +2020,5,18,8,0,31.6,1.46,0.124,0.61,112,784,671,7,24.900000000000002,311,314,0,535,0.251,67.78,44.6,0.13,986,6.2,227,0.8 +2020,5,18,9,0,31.1,1.46,0.1433,0.61,104,683,461,7,25.3,224,204,0,331,0.25,71.53,58.39,0.13,986,6.2,203,0.8 +2020,5,18,10,0,30.5,1.45,0.16060000000000002,0.61,80,495,230,7,25.400000000000002,115,68,0,135,0.25,74.13,72.42,0.13,987,6.2,202,0.8 +2020,5,18,11,0,28.900000000000002,1.46,0.16390000000000002,0.61,23,118,30,7,26,19,0,3,19,0.251,84.61,86.39,0.13,987,6.2,195,0.7000000000000001 +2020,5,18,12,0,28.200000000000003,1.47,0.1688,0.61,0,0,0,7,26,0,0,0,0,0.252,87.98,100.65,0.13,988,6.2,195,0.7000000000000001 +2020,5,18,13,0,27.8,1.47,0.1698,0.61,0,0,0,7,25.8,0,0,0,0,0.253,88.77,114.54,0.13,989,6.2,195,0.7000000000000001 +2020,5,18,14,0,27.5,1.48,0.16340000000000002,0.61,0,0,0,7,25.5,0,0,0,0,0.254,88.87,128.03,0.13,989,6.1000000000000005,193,0.7000000000000001 +2020,5,18,15,0,27.3,1.48,0.1552,0.61,0,0,0,7,25.200000000000003,0,0,0,0,0.255,88.4,140.68,0.13,989,6.1000000000000005,186,0.7000000000000001 +2020,5,18,16,0,27,1.48,0.1492,0.61,0,0,0,0,25,0,0,0,0,0.256,88.85000000000001,151.3,0.13,989,6.1000000000000005,169,0.7000000000000001 +2020,5,18,17,0,26.700000000000003,1.48,0.1436,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.255,89.65,156.86,0.13,989,6,154,0.7000000000000001 +2020,5,18,18,0,26.400000000000002,1.48,0.1375,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.255,90.53,153.89000000000001,0.13,988,6,134,0.7000000000000001 +2020,5,18,19,0,26,1.48,0.1331,0.61,0,0,0,7,24.6,0,0,0,0,0.255,92.18,144.48,0.13,988,6,112,0.7000000000000001 +2020,5,18,20,0,25.6,1.47,0.1317,0.61,0,0,0,8,24.6,0,0,0,0,0.254,94.02,132.3,0.13,988,6,102,0.7000000000000001 +2020,5,18,21,0,25.400000000000002,1.47,0.13090000000000002,0.61,0,0,0,7,24.5,0,0,0,0,0.254,94.81,119.02,0.13,988,5.9,110,0.8 +2020,5,18,22,0,25.3,1.46,0.1298,0.61,0,0,0,3,24.5,0,0,0,0,0.254,95.14,105.23,0.13,988,5.9,125,0.8 +2020,5,18,23,0,25.700000000000003,1.44,0.1283,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.253,95.31,91.22,0.13,989,5.9,139,0.9 +2020,5,19,0,0,27.200000000000003,1.43,0.12480000000000001,0.61,59,443,159,8,25.3,69,328,3,143,0.253,89.59,77.05,0.13,989,5.800000000000001,150,1.4000000000000001 +2020,5,19,1,0,28.5,1.4000000000000001,0.1237,0.61,90,659,389,3,25.6,168,332,0,319,0.254,84.52,63.01,0.13,990,5.800000000000001,158,1.8 +2020,5,19,2,0,29.400000000000002,1.3800000000000001,0.1246,0.61,108,762,606,8,25.8,218,497,0,544,0.255,80.93,49.13,0.13,990,5.800000000000001,160,1.9000000000000001 +2020,5,19,3,0,30.1,0.87,0.18180000000000002,0.61,149,768,772,3,25.8,313,452,0,680,0.255,77.75,35.74,0.13,989,5.800000000000001,163,1.6 +2020,5,19,4,0,30.6,0.91,0.17750000000000002,0.61,154,805,891,3,25.700000000000003,431,317,0,722,0.255,75.12,23.79,0.13,989,5.800000000000001,170,1.3 +2020,5,19,5,0,31,0.9400000000000001,0.17800000000000002,0.61,157,817,939,3,25.5,484,213,3,688,0.255,72.72,16.77,0.13,988,5.800000000000001,186,1.1 +2020,5,19,6,0,31.1,0.93,0.1859,0.61,159,805,913,7,25.400000000000002,396,424,0,793,0.254,71.65,20.62,0.13,987,5.9,210,1 +2020,5,19,7,0,30.900000000000002,0.9400000000000001,0.1918,0.61,155,776,816,3,25.3,350,416,0,704,0.254,72.25,31.57,0.13,987,5.9,223,1.1 +2020,5,19,8,0,30.5,0.9500000000000001,0.1955,0.61,144,721,657,8,25.5,290,391,0,569,0.254,74.54,44.65,0.13,986,5.9,227,1.1 +2020,5,19,9,0,30.200000000000003,0.99,0.1904,0.61,122,631,452,8,25.900000000000002,220,232,0,342,0.254,77.7,58.410000000000004,0.13,987,6,232,1 +2020,5,19,10,0,29.400000000000002,1.01,0.1885,0.61,88,452,225,7,25.700000000000003,53,0,0,53,0.256,80.43,72.42,0.13,987,6,236,0.9 +2020,5,19,11,0,28.3,1.03,0.1834,0.61,23,84,29,9,26,10,0,3,10,0.258,87.55,86.37,0.13,988,6,233,0.7000000000000001 +2020,5,19,12,0,28.1,1.04,0.1759,0.61,0,0,0,6,25.6,0,0,0,0,0.26,86.21000000000001,100.61,0.13,989,6.1000000000000005,228,0.7000000000000001 +2020,5,19,13,0,28,1.04,0.17250000000000001,0.61,0,0,0,9,25.200000000000003,0,0,0,0,0.262,84.79,114.48,0.13,989,6.1000000000000005,226,0.7000000000000001 +2020,5,19,14,0,27.900000000000002,1.04,0.17250000000000001,0.61,0,0,0,9,24.900000000000002,0,0,0,0,0.263,83.9,127.95,0.13,990,6.1000000000000005,221,0.6000000000000001 +2020,5,19,15,0,27.700000000000003,1.04,0.17420000000000002,0.61,0,0,0,6,24.8,0,0,0,0,0.263,84.03,140.56,0.13,990,6.1000000000000005,208,0.5 +2020,5,19,16,0,27.3,1.02,0.17850000000000002,0.61,0,0,0,9,24.700000000000003,0,0,0,0,0.262,85.93,151.12,0.13,990,6.1000000000000005,190,0.5 +2020,5,19,17,0,26.8,1.01,0.1864,0.61,0,0,0,9,24.700000000000003,0,0,0,0,0.262,88.36,156.64000000000001,0.13,989,6.2,176,0.6000000000000001 +2020,5,19,18,0,26.3,0.99,0.1966,0.61,0,0,0,9,24.700000000000003,0,0,0,0,0.261,90.84,153.71,0.13,988,6.2,168,0.7000000000000001 +2020,5,19,19,0,25.8,0.97,0.2101,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.261,93.61,144.36,0.13,988,6.2,163,0.7000000000000001 +2020,5,19,20,0,25.6,0.93,0.2283,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.259,94.89,132.23,0.13,988,6.2,161,0.8 +2020,5,19,21,0,25.5,0.91,0.25270000000000004,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.259,95.36,118.97,0.13,988,6.300000000000001,167,0.7000000000000001 +2020,5,19,22,0,25.6,0.9,0.2649,0.61,0,0,0,6,24.6,0,0,0,0,0.259,94.18,105.21000000000001,0.13,989,6.4,179,0.6000000000000001 +2020,5,19,23,0,26,0.93,0.2579,0.61,0,0,0,7,24.8,0,0,0,0,0.258,92.94,91.22,0.13,989,6.4,205,0.5 +2020,5,20,0,0,27,0.97,0.25270000000000004,0.61,80,294,146,7,25.6,64,0,3,64,0.258,91.83,77.07000000000001,0.14,990,6.4,191,0.7000000000000001 +2020,5,20,1,0,27.900000000000002,1.02,0.2457,0.61,128,535,371,7,25.700000000000003,187,191,0,273,0.258,87.79,63.050000000000004,0.14,991,6.300000000000001,171,1.1 +2020,5,20,2,0,28.400000000000002,1.06,0.232,0.61,151,668,587,8,25.5,292,238,0,447,0.257,84.56,49.19,0.14,991,6.300000000000001,158,1.3 +2020,5,20,3,0,28.900000000000002,1.09,0.2227,0.61,163,741,764,7,25.3,387,231,0,574,0.257,81.05,35.84,0.14,991,6.2,145,1.3 +2020,5,20,4,0,29.400000000000002,1.11,0.21660000000000001,0.61,170,780,883,0,25,170,780,0,883,0.256,77.39,23.94,0.14,990,6.2,139,1.3 +2020,5,20,5,0,29.700000000000003,1.12,0.21330000000000002,0.61,172,795,932,8,25,477,243,0,710,0.257,75.78,16.98,0.14,990,6.2,148,1.2000000000000002 +2020,5,20,6,0,29.8,1.1300000000000001,0.21450000000000002,0.61,170,788,907,8,25.1,398,412,0,783,0.257,76.06,20.78,0.14,989,6.2,176,1.3 +2020,5,20,7,0,29.700000000000003,1.1300000000000001,0.2137,0.61,163,762,812,3,25.3,413,116,0,512,0.257,77.18,31.66,0.14,989,6.2,196,1.4000000000000001 +2020,5,20,8,0,29.400000000000002,1.1300000000000001,0.20800000000000002,0.61,147,714,655,7,25.5,318,279,0,516,0.257,79.56,44.7,0.14,988,6.1000000000000005,198,1.4000000000000001 +2020,5,20,9,0,28.8,1.1300000000000001,0.2044,0.61,125,622,451,8,25.5,194,374,0,390,0.257,82.43,58.43,0.14,988,6.1000000000000005,185,1.3 +2020,5,20,10,0,28,1.1400000000000001,0.19310000000000002,0.61,88,453,225,7,25.6,103,297,0,193,0.257,86.79,72.42,0.14,989,6.1000000000000005,171,1.1 +2020,5,20,11,0,27,1.1400000000000001,0.1777,0.61,23,94,29,7,25.8,22,81,3,27,0.259,93.4,86.35000000000001,0.14,989,6.1000000000000005,159,0.8 +2020,5,20,12,0,26.6,1.1500000000000001,0.16340000000000002,0.61,0,0,0,6,25.6,0,0,0,0,0.262,94.41,100.57000000000001,0.14,990,6,157,0.8 +2020,5,20,13,0,26.400000000000002,1.1500000000000001,0.1504,0.61,0,0,0,7,25.400000000000002,0,0,0,0,0.263,94.4,114.42,0.14,991,6,164,0.8 +2020,5,20,14,0,26.1,1.1500000000000001,0.1409,0.61,0,0,0,3,25.200000000000003,0,0,0,0,0.264,95.07000000000001,127.86,0.14,991,5.9,175,0.8 +2020,5,20,15,0,25.900000000000002,1.16,0.13520000000000001,0.61,0,0,0,6,25.1,0,0,0,0,0.265,95.32000000000001,140.44,0.14,991,5.9,189,0.8 +2020,5,20,16,0,25.6,1.16,0.1342,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.265,96.18,150.95000000000002,0.14,991,5.800000000000001,201,0.8 +2020,5,20,17,0,25.400000000000002,1.17,0.1342,0.61,0,0,0,6,24.8,0,0,0,0,0.265,96.44,156.44,0.14,990,5.800000000000001,209,0.8 +2020,5,20,18,0,25.400000000000002,1.18,0.135,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.264,95.65,153.54,0.14,990,5.800000000000001,218,0.7000000000000001 +2020,5,20,19,0,25.400000000000002,1.19,0.1369,0.61,0,0,0,6,24.5,0,0,0,0,0.263,94.77,144.24,0.14,989,5.800000000000001,235,0.5 +2020,5,20,20,0,25.6,1.2,0.14100000000000001,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.262,93.06,132.16,0.14,989,5.800000000000001,281,0.30000000000000004 +2020,5,20,21,0,25.5,1.22,0.1481,0.61,0,0,0,7,24.3,0,0,0,0,0.262,92.95,118.93,0.14,989,5.9,332,0.30000000000000004 +2020,5,20,22,0,25.3,1.24,0.15080000000000002,0.61,0,0,0,8,24.200000000000003,0,0,0,0,0.262,93.72,105.19,0.14,989,5.9,347,0.5 +2020,5,20,23,0,25.400000000000002,1.27,0.14930000000000002,0.61,0,0,0,3,24.6,0,0,0,0,0.261,95.16,91.22,0.14,990,5.9,355,0.6000000000000001 +2020,5,21,0,0,26.8,1.3,0.1438,0.61,63,415,156,3,25.200000000000003,81,61,3,95,0.262,91.13,77.09,0.14,990,5.9,7,0.8 +2020,5,21,1,0,28.900000000000002,1.32,0.14150000000000001,0.61,95,638,384,3,24.700000000000003,61,0,0,61,0.262,78.17,63.09,0.14,991,5.9,47,0.8 +2020,5,21,2,0,30,1.33,0.14500000000000002,0.61,117,742,601,3,24.1,298,174,1,411,0.263,70.89,49.26,0.14,991,5.9,53,1 +2020,5,21,3,0,30.6,1.1500000000000001,0.17550000000000002,0.61,143,776,771,0,24,143,776,0,771,0.264,68.04,35.93,0.14,991,5.9,44,1 +2020,5,21,4,0,31.200000000000003,1.16,0.18050000000000002,0.61,153,804,888,0,24.200000000000003,153,804,0,888,0.265,66.36,24.080000000000002,0.14,990,6,26,0.9 +2020,5,21,5,0,31.6,1.18,0.1829,0.61,157,815,935,0,24.400000000000002,157,815,0,935,0.266,65.79,17.19,0.14,989,6.1000000000000005,11,1 +2020,5,21,6,0,31.5,1.05,0.229,0.61,177,777,903,3,24.6,421,362,0,759,0.266,67.07000000000001,20.93,0.14,989,6.2,358,1.1 +2020,5,21,7,0,31,1.05,0.24350000000000002,0.61,176,740,805,8,24.900000000000002,343,428,0,707,0.266,70.12,31.740000000000002,0.14,988,6.300000000000001,339,1.3 +2020,5,21,8,0,30.400000000000002,1.05,0.2538,0.61,165,677,646,7,25.400000000000002,120,0,0,120,0.266,74.49,44.74,0.14,988,6.4,319,1.4000000000000001 +2020,5,21,9,0,29.6,1.08,0.2952,0.61,152,548,439,6,25.8,24,0,0,24,0.267,79.99,58.45,0.14,988,6.5,308,1.4000000000000001 +2020,5,21,10,0,28.700000000000003,1.1,0.3246,0.61,111,341,214,6,25.900000000000002,90,0,0,90,0.267,84.84,72.41,0.14,989,6.6000000000000005,302,1.3 +2020,5,21,11,0,27.700000000000003,1.1,0.33740000000000003,0.61,22,37,24,6,26.3,14,0,3,14,0.267,92.18,86.33,0.14,989,6.6000000000000005,299,0.9 +2020,5,21,12,0,27.3,1.1300000000000001,0.38070000000000004,0.61,0,0,0,7,26.3,0,0,0,0,0.268,94.34,100.53,0.14,990,6.6000000000000005,297,0.8 +2020,5,21,13,0,27.200000000000003,1.1500000000000001,0.38930000000000003,0.61,0,0,0,7,26.200000000000003,0,0,0,0,0.268,94.42,114.35000000000001,0.14,991,6.7,296,0.7000000000000001 +2020,5,21,14,0,27,1.1500000000000001,0.3553,0.61,0,0,0,7,26.1,0,0,1,0,0.269,95.02,127.77,0.14,991,6.7,298,0.6000000000000001 +2020,5,21,15,0,26.900000000000002,1.18,0.34690000000000004,0.61,0,0,0,7,26.1,0,0,0,0,0.269,95.13,140.31,0.14,991,6.7,307,0.7000000000000001 +2020,5,21,16,0,26.8,1.19,0.3146,0.61,0,0,0,7,26,0,0,0,0,0.268,95.22,150.79,0.14,991,6.7,320,0.7000000000000001 +2020,5,21,17,0,26.6,1.18,0.2738,0.61,0,0,0,7,25.900000000000002,0,0,0,0,0.267,95.86,156.24,0.14,990,6.7,332,0.8 +2020,5,21,18,0,26.400000000000002,1.18,0.2677,0.61,0,0,0,7,25.8,0,0,0,0,0.266,96.39,153.37,0.14,989,6.7,339,0.8 +2020,5,21,19,0,26.200000000000003,1.17,0.2411,0.61,0,0,0,8,25.700000000000003,0,0,0,0,0.264,96.86,144.13,0.14,989,6.7,352,0.9 +2020,5,21,20,0,26,1.1300000000000001,0.22080000000000002,0.61,0,0,0,6,25.5,0,0,0,0,0.261,97.16,132.09,0.14,988,6.7,1,1 +2020,5,21,21,0,25.900000000000002,1.1,0.2359,0.61,0,0,0,6,25.400000000000002,0,0,0,0,0.26,97.09,118.89,0.14,988,6.7,6,1.1 +2020,5,21,22,0,25.700000000000003,1.07,0.225,0.61,0,0,0,6,25.3,0,0,0,0,0.259,97.57000000000001,105.18,0.14,988,6.7,12,1 +2020,5,21,23,0,25.8,1.04,0.2099,0.61,0,0,0,7,25.3,0,0,0,0,0.259,97.35000000000001,91.22,0.14,989,6.6000000000000005,28,0.8 +2020,5,22,0,0,26.5,1.06,0.2175,0.61,75,328,148,7,25.6,54,0,3,54,0.259,94.91,77.11,0.13,990,6.5,63,0.8 +2020,5,22,1,0,27.3,1.09,0.1937,0.61,112,581,375,7,25.700000000000003,186,87,0,225,0.259,91.11,63.13,0.13,991,6.4,69,0.8 +2020,5,22,2,0,28.400000000000002,1.12,0.1713,0.61,127,715,593,3,25.700000000000003,297,180,0,414,0.26,85.17,49.32,0.13,991,6.2,63,0.6000000000000001 +2020,5,22,3,0,29.3,1.31,0.1506,0.61,131,794,773,8,25.200000000000003,366,314,0,620,0.261,78.68,36.03,0.13,991,6.2,87,0.5 +2020,5,22,4,0,29.700000000000003,1.34,0.1565,0.61,140,821,889,8,24.8,438,285,0,698,0.262,74.84,24.23,0.13,991,6.2,91,0.4 +2020,5,22,5,0,29.900000000000002,1.34,0.15860000000000002,0.61,144,831,937,8,24.8,408,425,0,813,0.261,74.10000000000001,17.38,0.13,990,6.300000000000001,60,0.4 +2020,5,22,6,0,29.8,1.16,0.2313,0.61,176,776,900,7,24.900000000000002,416,370,0,761,0.261,75.04,21.07,0.13,990,6.4,17,0.6000000000000001 +2020,5,22,7,0,29.400000000000002,1.1400000000000001,0.2539,0.61,178,734,802,7,25,384,62,0,436,0.259,77.17,31.82,0.13,989,6.5,331,0.8 +2020,5,22,8,0,28.900000000000002,1.11,0.2634,0.61,167,672,643,6,25.3,211,9,0,218,0.259,80.94,44.78,0.13,989,6.6000000000000005,308,1 +2020,5,22,9,0,28.200000000000003,1.11,0.30920000000000003,0.61,155,538,436,6,25.5,24,0,0,24,0.258,85.39,58.46,0.13,989,6.7,305,1.1 +2020,5,22,10,0,27.400000000000002,1.08,0.3201,0.61,110,343,214,8,25.5,116,93,0,144,0.258,89.51,72.4,0.13,989,6.800000000000001,305,1.2000000000000002 +2020,5,22,11,0,26.6,1.02,0.3176,0.61,22,37,25,3,25.6,20,0,3,20,0.258,94.4,86.3,0.13,990,6.800000000000001,295,1 +2020,5,22,12,0,26.3,1.01,0.371,0.61,0,0,0,8,25.700000000000003,0,0,0,0,0.258,96.41,100.49000000000001,0.13,991,6.800000000000001,273,0.9 +2020,5,22,13,0,26.200000000000003,0.97,0.33080000000000004,0.61,0,0,0,8,25.700000000000003,0,0,0,0,0.259,97.04,114.29,0.13,991,6.800000000000001,246,0.9 +2020,5,22,14,0,26.1,0.9400000000000001,0.2697,0.61,0,0,0,8,25.6,0,0,0,0,0.26,97.32000000000001,127.68,0.13,992,6.800000000000001,233,0.8 +2020,5,22,15,0,26,0.96,0.2554,0.61,0,0,0,3,25.5,0,0,0,0,0.26,97.24000000000001,140.19,0.13,992,6.800000000000001,229,0.8 +2020,5,22,16,0,25.8,0.97,0.2335,0.61,0,0,0,8,25.400000000000002,0,0,0,0,0.26,97.47,150.62,0.13,992,6.800000000000001,232,0.8 +2020,5,22,17,0,25.6,0.96,0.20520000000000002,0.61,0,0,0,3,25.1,0,0,0,0,0.26,97.32000000000001,156.04,0.13,991,6.7,235,0.8 +2020,5,22,18,0,25.400000000000002,1.01,0.2044,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.258,97.22,153.21,0.13,991,6.7,236,1 +2020,5,22,19,0,25.200000000000003,1.03,0.18560000000000001,0.61,0,0,0,3,24.700000000000003,0,0,0,0,0.257,97.03,144.03,0.13,990,6.6000000000000005,237,1.1 +2020,5,22,20,0,25,1.04,0.15910000000000002,0.61,0,0,0,4,24.5,0,0,0,0,0.256,97.17,132.03,0.13,990,6.5,240,1.2000000000000002 +2020,5,22,21,0,24.8,1.09,0.14930000000000002,0.61,0,0,0,4,24.3,0,0,0,0,0.256,97.19,118.86,0.13,991,6.4,244,1.1 +2020,5,22,22,0,24.5,1.1300000000000001,0.1439,0.61,0,0,0,7,24,0,0,0,0,0.256,97,105.17,0.13,991,6.300000000000001,252,0.8 +2020,5,22,23,0,24.6,1.1500000000000001,0.1381,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.256,95.64,91.23,0.13,992,6.2,265,0.6000000000000001 +2020,5,23,0,0,25.1,1.18,0.1278,0.61,60,427,155,7,24,81,68,3,96,0.256,93.62,77.13,0.13,993,6.2,282,0.9 +2020,5,23,1,0,25.6,1.22,0.113,0.61,86,662,385,6,23.8,165,24,0,176,0.256,89.98,63.17,0.13,993,6.1000000000000005,279,1 +2020,5,23,2,0,26.8,1.26,0.1023,0.61,99,775,603,6,23.900000000000002,206,10,0,213,0.256,84.18,49.39,0.13,993,6.1000000000000005,257,0.7000000000000001 +2020,5,23,3,0,28.6,1.27,0.1071,0.61,111,826,778,7,23.6,377,87,0,447,0.256,74.3,36.13,0.13,992,6,228,0.7000000000000001 +2020,5,23,4,0,29.5,1.31,0.1053,0.61,116,857,896,7,23.6,446,249,0,673,0.256,70.67,24.38,0.13,991,5.9,244,0.8 +2020,5,23,5,0,30.1,1.32,0.1032,0.61,118,869,946,7,23.8,444,63,0,504,0.255,68.99,17.580000000000002,0.13,990,5.9,267,0.9 +2020,5,23,6,0,30.3,1.12,0.1474,0.61,139,832,914,7,24,443,323,0,744,0.254,69.12,21.22,0.13,990,5.9,287,1.1 +2020,5,23,7,0,30,1.1,0.1617,0.61,140,797,817,8,24.1,386,331,0,667,0.253,70.86,31.89,0.13,989,6,288,1.2000000000000002 +2020,5,23,8,0,29.1,1.09,0.17220000000000002,0.61,133,739,658,7,24.1,331,163,0,447,0.252,74.36,44.81,0.13,989,6.1000000000000005,270,1.1 +2020,5,23,9,0,28.3,1.11,0.2071,0.61,126,618,449,6,24.5,125,0,0,125,0.251,79.77,58.47,0.13,990,6.2,245,1.2000000000000002 +2020,5,23,10,0,27.400000000000002,1.1300000000000001,0.2157,0.61,93,431,223,6,24.5,11,0,0,11,0.252,84.3,72.39,0.13,990,6.2,237,1.3 +2020,5,23,11,0,26.3,1.1500000000000001,0.2005,0.61,24,84,29,6,24.700000000000003,4,0,3,4,0.253,91.13,86.28,0.13,991,6.1000000000000005,235,0.9 +2020,5,23,12,0,25.900000000000002,1.16,0.19160000000000002,0.61,0,0,0,8,24.6,0,0,0,0,0.255,92.47,100.44,0.13,991,6.1000000000000005,234,0.8 +2020,5,23,13,0,25.6,1.17,0.1837,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.256,93.3,114.22,0.13,992,6.1000000000000005,232,0.8 +2020,5,23,14,0,25.5,1.18,0.1714,0.61,0,0,0,3,24.3,0,0,0,0,0.257,93.10000000000001,127.59,0.13,992,6.1000000000000005,232,0.8 +2020,5,23,15,0,25.400000000000002,1.18,0.1577,0.61,0,0,0,8,24.200000000000003,0,0,0,0,0.257,92.86,140.07,0.13,992,6,238,0.7000000000000001 +2020,5,23,16,0,25.200000000000003,1.18,0.1474,0.61,0,0,0,7,24,0,0,0,0,0.257,93.29,150.46,0.13,992,6,249,0.6000000000000001 +2020,5,23,17,0,25.200000000000003,1.17,0.14350000000000002,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.256,92.55,155.85,0.13,992,6,255,0.6000000000000001 +2020,5,23,18,0,25.3,1.16,0.14880000000000002,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.256,91.12,153.05,0.13,991,6,254,0.5 +2020,5,23,19,0,25.3,1.16,0.1555,0.61,0,0,0,8,23.6,0,0,0,0,0.254,90.58,143.93,0.13,991,6,236,0.4 +2020,5,23,20,0,25.3,1.16,0.15960000000000002,0.61,0,0,0,0,23.6,0,0,0,0,0.253,90.5,131.97,0.13,991,6,214,0.30000000000000004 +2020,5,23,21,0,25.1,1.17,0.1608,0.61,0,0,0,3,23.5,0,0,0,0,0.252,90.94,118.83,0.13,991,6,203,0.4 +2020,5,23,22,0,24.900000000000002,1.19,0.1584,0.61,0,0,0,0,23.5,0,0,0,0,0.252,91.77,105.16,0.13,991,5.9,197,0.5 +2020,5,23,23,0,25,1.2,0.1542,0.61,0,0,0,0,23.900000000000002,0,0,0,0,0.253,93.42,91.24,0.13,992,5.9,195,0.5 +2020,5,24,0,0,26.200000000000003,1.23,0.1477,0.61,64,406,154,7,24.5,68,333,3,142,0.254,90.62,77.16,0.13,992,5.800000000000001,196,0.8 +2020,5,24,1,0,27.8,1.27,0.1405,0.61,96,636,382,7,24.6,181,231,0,285,0.255,82.99,63.22,0.13,992,5.800000000000001,194,1.2000000000000002 +2020,5,24,2,0,29.400000000000002,1.3,0.14070000000000002,0.61,115,744,598,7,24.5,290,230,0,439,0.255,75.04,49.45,0.13,993,5.800000000000001,191,1.4000000000000001 +2020,5,24,3,0,30,1.31,0.1467,0.61,129,797,772,7,24.200000000000003,373,81,0,438,0.255,71.25,36.22,0.13,992,5.800000000000001,195,1.4000000000000001 +2020,5,24,4,0,30.3,1.32,0.15460000000000002,0.61,140,822,888,7,24.200000000000003,441,265,0,682,0.255,69.84,24.52,0.13,992,5.9,200,1.3 +2020,5,24,5,0,30.5,1.32,0.1656,0.61,148,827,935,7,24.200000000000003,413,43,0,454,0.255,69.24,17.76,0.13,992,5.9,198,1.4000000000000001 +2020,5,24,6,0,30.5,1.22,0.2918,0.61,200,742,891,6,24.3,403,43,0,443,0.255,69.52,21.35,0.13,991,6,200,1.5 +2020,5,24,7,0,30.200000000000003,1.21,0.29910000000000003,0.61,195,709,796,7,24.400000000000002,407,245,0,615,0.255,71.26,31.970000000000002,0.13,990,6,204,1.6 +2020,5,24,8,0,29.6,1.2,0.2866,0.61,174,660,642,0,24.900000000000002,174,660,0,642,0.254,75.73,44.85,0.13,990,6,209,1.4000000000000001 +2020,5,24,9,0,29.1,1.19,0.30610000000000004,0.61,154,545,439,0,25.3,154,545,0,439,0.253,80.02,58.480000000000004,0.13,990,6,209,1.3 +2020,5,24,10,0,28.200000000000003,1.19,0.314,0.61,108,356,216,0,25.200000000000003,108,356,0,216,0.252,83.8,72.38,0.13,991,6,208,1.1 +2020,5,24,11,0,27,1.19,0.29410000000000003,0.61,23,53,27,7,25.6,23,53,5,27,0.252,92.12,86.25,0.13,991,6,215,0.7000000000000001 +2020,5,24,12,0,26.6,1.18,0.28650000000000003,0.61,0,0,0,8,25.400000000000002,0,0,0,0,0.252,93.38,100.39,0.13,992,6,219,0.7000000000000001 +2020,5,24,13,0,26.3,1.16,0.2796,0.61,0,0,0,3,25.400000000000002,0,0,0,0,0.253,94.73,114.16,0.13,993,6.1000000000000005,218,0.7000000000000001 +2020,5,24,14,0,26.1,1.1500000000000001,0.26890000000000003,0.61,0,0,0,8,25.3,0,0,0,0,0.253,95.49,127.51,0.13,993,6.1000000000000005,216,0.7000000000000001 +2020,5,24,15,0,26,1.1400000000000001,0.2564,0.61,0,0,0,8,25.200000000000003,0,0,0,0,0.254,95.55,139.95000000000002,0.13,993,6.1000000000000005,216,0.7000000000000001 +2020,5,24,16,0,25.8,1.1300000000000001,0.2461,0.61,0,0,0,8,25.1,0,0,0,0,0.255,96.09,150.3,0.13,993,6,215,0.8 +2020,5,24,17,0,25.5,1.12,0.2393,0.61,0,0,0,3,25,0,0,0,0,0.254,97.11,155.67000000000002,0.13,993,5.9,211,0.8 +2020,5,24,18,0,25.3,1.12,0.231,0.61,0,0,0,0,24.8,0,0,0,0,0.253,97.35000000000001,152.91,0.13,992,5.800000000000001,204,0.8 +2020,5,24,19,0,25.1,1.1400000000000001,0.217,0.61,0,0,0,1,24.700000000000003,0,0,0,0,0.252,97.63,143.83,0.13,992,5.7,193,0.8 +2020,5,24,20,0,25,1.1500000000000001,0.20120000000000002,0.61,0,0,0,3,24.5,0,0,0,0,0.25,97.3,131.91,0.13,991,5.7,185,0.8 +2020,5,24,21,0,24.900000000000002,1.17,0.19820000000000002,0.61,0,0,0,4,24.400000000000002,0,0,0,0,0.25,97.22,118.8,0.13,991,5.6000000000000005,182,0.8 +2020,5,24,22,0,24.900000000000002,1.2,0.1965,0.61,0,0,0,8,24.3,0,0,0,0,0.25,96.72,105.15,0.13,992,5.7,183,0.8 +2020,5,24,23,0,25.3,1.22,0.191,0.61,0,0,0,4,24.6,0,0,0,0,0.25,96.06,91.25,0.13,992,5.7,185,0.7000000000000001 +2020,5,25,0,0,26.5,1.25,0.18630000000000002,0.61,70,367,151,8,25.3,75,242,3,128,0.25,93.29,77.18,0.13,993,5.800000000000001,182,1 +2020,5,25,1,0,27.6,1.29,0.1777,0.61,106,601,377,0,25.200000000000003,106,601,0,377,0.251,87.03,63.26,0.13,993,5.800000000000001,180,1.1 +2020,5,25,2,0,28.6,1.3,0.1771,0.61,128,713,591,7,24.5,257,377,0,502,0.252,78.62,49.52,0.13,993,5.9,182,1 +2020,5,25,3,0,29.5,1.36,0.2195,0.61,158,746,760,8,24.3,302,469,0,680,0.252,73.60000000000001,36.32,0.13,993,6,180,1 +2020,5,25,4,0,30.200000000000003,1.36,0.22010000000000002,0.61,168,780,876,3,24.400000000000002,407,361,0,735,0.252,70.99,24.66,0.13,992,6,180,1.1 +2020,5,25,5,0,30.6,1.36,0.2214,0.61,172,792,925,0,24.400000000000002,172,792,0,925,0.252,69.77,17.94,0.13,992,6,182,1.2000000000000002 +2020,5,25,6,0,30.700000000000003,1.41,0.2811,0.61,194,751,893,0,24.5,194,751,0,893,0.252,69.51,21.48,0.13,991,6,180,1.2000000000000002 +2020,5,25,7,0,30.6,1.42,0.2757,0.61,183,727,800,0,24.5,183,727,0,800,0.252,70.02,32.04,0.13,991,6,175,1.4000000000000001 +2020,5,25,8,0,30.3,1.43,0.2677,0.61,165,677,645,2,24.6,247,485,0,590,0.253,71.71000000000001,44.88,0.13,991,6,173,1.5 +2020,5,25,9,0,29.8,1.44,0.2655,0.61,140,582,444,3,25.1,175,452,0,411,0.254,76,58.49,0.13,991,6,176,1.3 +2020,5,25,10,0,29,1.44,0.264,0.61,99,405,221,3,25.1,99,405,5,221,0.254,79.59,72.37,0.13,991,6,176,1.2000000000000002 +2020,5,25,11,0,27.6,1.45,0.2499,0.61,24,81,29,6,25.6,24,81,5,29,0.256,88.96000000000001,86.22,0.13,992,6,184,0.8 +2020,5,25,12,0,27.1,1.45,0.2391,0.61,0,0,0,6,25.3,0,0,0,0,0.256,90.15,100.35000000000001,0.13,992,6,191,0.8 +2020,5,25,13,0,26.8,1.46,0.2268,0.61,0,0,0,3,25.1,0,0,0,0,0.257,90.66,114.09,0.13,993,5.9,194,0.8 +2020,5,25,14,0,26.6,1.46,0.21630000000000002,0.61,0,0,0,8,25,0,0,0,0,0.256,90.71000000000001,127.42,0.13,993,5.9,191,0.8 +2020,5,25,15,0,26.5,1.45,0.2068,0.61,0,0,0,0,24.8,0,0,0,0,0.255,90.16,139.83,0.13,993,5.9,190,0.8 +2020,5,25,16,0,26.5,1.45,0.19890000000000002,0.61,0,0,0,0,24.6,0,0,0,0,0.254,89.09,150.14000000000001,0.13,993,5.9,194,0.7000000000000001 +2020,5,25,17,0,26.3,1.44,0.1933,0.61,0,0,0,0,24.400000000000002,0,0,0,0,0.254,89.42,155.49,0.13,993,5.800000000000001,195,0.6000000000000001 +2020,5,25,18,0,26.1,1.44,0.1904,0.61,0,0,0,3,24.3,0,0,0,0,0.253,89.96000000000001,152.76,0.13,992,5.800000000000001,190,0.6000000000000001 +2020,5,25,19,0,25.900000000000002,1.43,0.1907,0.61,0,0,0,0,24.200000000000003,0,0,0,0,0.253,90.60000000000001,143.74,0.13,992,5.800000000000001,189,0.6000000000000001 +2020,5,25,20,0,25.700000000000003,1.42,0.194,0.61,0,0,0,0,24.200000000000003,0,0,0,0,0.252,91.29,131.86,0.13,991,5.800000000000001,183,0.5 +2020,5,25,21,0,25.5,1.41,0.1981,0.61,0,0,0,0,24.200000000000003,0,0,0,0,0.252,92.35000000000001,118.77,0.13,992,5.800000000000001,170,0.6000000000000001 +2020,5,25,22,0,25.3,1.41,0.2001,0.61,0,0,0,0,24.1,0,0,0,0,0.252,93.33,105.14,0.13,992,5.800000000000001,183,0.6000000000000001 +2020,5,25,23,0,25.400000000000002,1.4000000000000001,0.1995,0.61,0,0,0,1,24.5,0,0,0,0,0.251,94.65,91.26,0.13,993,5.800000000000001,206,0.6000000000000001 +2020,5,26,0,0,26.3,1.4000000000000001,0.1966,0.61,70,363,150,0,24.900000000000002,70,363,0,150,0.251,91.9,77.21000000000001,0.13,993,5.800000000000001,218,0.8 +2020,5,26,1,0,27.400000000000002,1.4000000000000001,0.1908,0.61,109,591,375,3,25.200000000000003,29,0,0,29,0.252,87.60000000000001,63.31,0.13,994,5.800000000000001,200,1.2000000000000002 +2020,5,26,2,0,28.3,1.4000000000000001,0.1892,0.61,132,705,589,7,25.3,181,5,0,184,0.253,83.74,49.59,0.13,994,5.800000000000001,199,1.4000000000000001 +2020,5,26,3,0,28.8,1.41,0.20170000000000002,0.61,151,760,762,3,25.3,235,11,0,244,0.253,81.27,36.42,0.13,994,5.7,201,1.5 +2020,5,26,4,0,29.200000000000003,1.4000000000000001,0.19260000000000002,0.61,156,799,880,3,25.200000000000003,298,17,0,314,0.253,79.25,24.8,0.13,993,5.7,200,1.5 +2020,5,26,5,0,29.5,1.3900000000000001,0.18610000000000002,0.61,156,815,930,3,25.200000000000003,453,312,0,750,0.252,77.82000000000001,18.12,0.13,992,5.7,200,1.5 +2020,5,26,6,0,29.6,1.37,0.1771,0.61,151,815,908,8,25.200000000000003,376,503,0,844,0.251,77.18,21.61,0.13,991,5.7,201,1.5 +2020,5,26,7,0,29.5,1.37,0.17880000000000001,0.61,145,789,814,7,25.200000000000003,364,46,0,403,0.25,77.57000000000001,32.1,0.13,991,5.7,204,1.5 +2020,5,26,8,0,29.200000000000003,1.37,0.1764,0.61,133,741,658,7,25.200000000000003,264,444,0,578,0.249,78.98,44.910000000000004,0.13,990,5.7,208,1.5 +2020,5,26,9,0,28.8,1.3800000000000001,0.1829,0.61,116,646,454,8,25.700000000000003,168,478,0,418,0.249,83.22,58.49,0.13,991,5.7,214,1.3 +2020,5,26,10,0,28.1,1.3800000000000001,0.18710000000000002,0.61,86,469,228,6,25.6,17,0,0,17,0.249,86.15,72.35000000000001,0.13,991,5.7,222,1.1 +2020,5,26,11,0,26.900000000000002,1.3800000000000001,0.18230000000000002,0.61,24,110,31,7,25.6,5,0,3,5,0.25,92.87,86.19,0.13,992,5.7,234,0.8 +2020,5,26,12,0,26.400000000000002,1.3900000000000001,0.1796,0.61,0,0,0,7,25.400000000000002,0,0,0,0,0.251,94.23,100.3,0.13,993,5.7,242,0.8 +2020,5,26,13,0,26.1,1.3900000000000001,0.1733,0.61,0,0,0,7,25.200000000000003,0,0,0,0,0.251,94.85000000000001,114.03,0.13,993,5.7,247,0.8 +2020,5,26,14,0,25.900000000000002,1.3900000000000001,0.16790000000000002,0.61,0,0,0,6,25.1,0,0,0,0,0.251,95.35000000000001,127.33,0.13,994,5.7,253,0.8 +2020,5,26,15,0,25.700000000000003,1.3900000000000001,0.16590000000000002,0.61,0,0,0,7,25,0,0,0,0,0.251,95.7,139.72,0.13,994,5.6000000000000005,257,0.7000000000000001 +2020,5,26,16,0,25.5,1.3900000000000001,0.1638,0.61,0,0,0,7,24.8,0,0,0,0,0.25,95.81,149.99,0.13,993,5.6000000000000005,261,0.7000000000000001 +2020,5,26,17,0,25.400000000000002,1.3800000000000001,0.1608,0.61,0,0,0,7,24.6,0,0,0,0,0.25,95.43,155.32,0.13,993,5.6000000000000005,265,0.8 +2020,5,26,18,0,25.200000000000003,1.3800000000000001,0.16290000000000002,0.61,0,0,0,7,24.5,0,0,0,0,0.249,95.63,152.62,0.13,992,5.6000000000000005,268,0.8 +2020,5,26,19,0,25.1,1.3800000000000001,0.16340000000000002,0.61,0,0,0,8,24.3,0,0,0,0,0.248,95.47,143.65,0.13,992,5.6000000000000005,269,0.8 +2020,5,26,20,0,25,1.3800000000000001,0.1613,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.247,95.41,131.81,0.13,992,5.6000000000000005,270,0.7000000000000001 +2020,5,26,21,0,25,1.3800000000000001,0.1623,0.61,0,0,0,7,24.1,0,0,0,0,0.246,94.94,118.75,0.13,992,5.5,279,0.7000000000000001 +2020,5,26,22,0,25,1.3900000000000001,0.1628,0.61,0,0,0,7,24.1,0,0,0,0,0.246,94.49,105.14,0.13,992,5.5,293,0.7000000000000001 +2020,5,26,23,0,25.200000000000003,1.3900000000000001,0.1625,0.61,0,0,0,7,24.3,0,0,0,0,0.246,94.93,91.27,0.13,992,5.4,309,0.6000000000000001 +2020,5,27,0,0,26.400000000000002,1.41,0.1565,0.61,64,403,153,7,25.1,68,327,3,140,0.247,92.5,77.24,0.13,993,5.4,304,0.5 +2020,5,27,1,0,28,1.43,0.1504,0.61,98,630,380,8,25.200000000000003,133,489,0,352,0.247,84.57000000000001,63.36,0.13,993,5.4,163,0.30000000000000004 +2020,5,27,2,0,29.400000000000002,1.43,0.15360000000000001,0.61,119,735,594,3,24.900000000000002,259,367,0,497,0.248,76.94,49.660000000000004,0.13,993,5.5,149,0.5 +2020,5,27,3,0,30.400000000000002,1.42,0.1678,0.61,137,784,767,7,24.700000000000003,356,335,0,625,0.248,71.68,36.51,0.13,993,5.5,156,0.6000000000000001 +2020,5,27,4,0,31.200000000000003,1.42,0.18050000000000002,0.61,150,807,882,6,24.8,448,218,0,646,0.249,68.94,24.94,0.13,992,5.5,161,0.6000000000000001 +2020,5,27,5,0,30.900000000000002,1.41,0.187,0.61,156,815,930,7,24.200000000000003,472,239,0,699,0.249,67.76,18.29,0.13,992,5.6000000000000005,172,0.7000000000000001 +2020,5,27,6,0,30.6,1.41,0.1991,0.61,160,801,904,7,24.1,465,198,0,649,0.249,68.18,21.73,0.13,991,5.6000000000000005,182,0.8 +2020,5,27,7,0,30.5,1.41,0.2086,0.61,157,769,808,7,24.200000000000003,414,183,0,569,0.249,69.08,32.160000000000004,0.13,991,5.7,192,0.9 +2020,5,27,8,0,30.1,1.42,0.2097,0.61,145,717,652,7,24.400000000000002,300,338,0,540,0.248,71.69,44.93,0.13,991,5.800000000000001,202,1 +2020,5,27,9,0,29.8,1.44,0.2175,0.61,126,618,449,6,24.900000000000002,171,9,0,175,0.248,75.19,58.49,0.13,991,5.800000000000001,205,0.9 +2020,5,27,10,0,29,1.44,0.22640000000000002,0.61,92,436,225,6,24.8,11,0,0,11,0.248,78.04,72.34,0.13,991,5.800000000000001,204,0.9 +2020,5,27,11,0,27.400000000000002,1.46,0.2218,0.61,24,95,31,9,25.400000000000002,4,0,3,4,0.248,89.05,86.16,0.13,991,5.800000000000001,218,0.7000000000000001 +2020,5,27,12,0,26.8,1.47,0.21960000000000002,0.61,0,0,0,8,25.200000000000003,0,0,0,0,0.249,91.02,100.25,0.13,992,5.800000000000001,224,0.8 +2020,5,27,13,0,26.3,1.47,0.21610000000000001,0.61,0,0,0,3,25.1,0,0,0,0,0.25,93.31,113.96000000000001,0.13,992,5.7,226,0.9 +2020,5,27,14,0,26,1.46,0.2124,0.61,0,0,0,3,25.1,0,0,0,0,0.25,94.75,127.24000000000001,0.13,993,5.7,229,0.8 +2020,5,27,15,0,25.700000000000003,1.44,0.2097,0.61,0,0,0,7,25,0,0,0,0,0.251,96.09,139.6,0.13,993,5.7,233,0.8 +2020,5,27,16,0,25.6,1.42,0.20550000000000002,0.61,0,0,0,8,25,0,0,0,0,0.251,96.3,149.85,0.13,993,5.7,239,0.8 +2020,5,27,17,0,25.5,1.4000000000000001,0.19640000000000002,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.251,96.38,155.15,0.13,992,5.7,244,0.7000000000000001 +2020,5,27,18,0,25.400000000000002,1.3900000000000001,0.193,0.61,0,0,0,8,24.8,0,0,0,0,0.251,96.41,152.49,0.13,991,5.7,246,0.7000000000000001 +2020,5,27,19,0,25.400000000000002,1.3900000000000001,0.1864,0.61,0,0,0,4,24.700000000000003,0,0,0,0,0.251,95.88,143.57,0.13,991,5.7,250,0.7000000000000001 +2020,5,27,20,0,25.3,1.3900000000000001,0.1757,0.61,0,0,0,8,24.6,0,0,0,0,0.25,95.76,131.76,0.13,991,5.7,254,0.7000000000000001 +2020,5,27,21,0,25.400000000000002,1.3900000000000001,0.1728,0.61,0,0,0,8,24.5,0,0,0,0,0.25,94.61,118.73,0.13,991,5.6000000000000005,257,0.6000000000000001 +2020,5,27,22,0,25.6,1.4000000000000001,0.17200000000000001,0.61,0,0,0,4,24.400000000000002,0,0,0,0,0.25,93.07000000000001,105.14,0.13,991,5.6000000000000005,256,0.5 +2020,5,27,23,0,25.900000000000002,1.4000000000000001,0.16970000000000002,0.61,0,0,0,4,24.6,0,0,0,0,0.249,92.60000000000001,91.29,0.13,991,5.6000000000000005,243,0.30000000000000004 +2020,5,28,0,0,26.900000000000002,1.44,0.15760000000000002,0.61,64,401,152,8,25.200000000000003,74,246,3,128,0.249,90.54,77.28,0.13,992,5.6000000000000005,198,0.30000000000000004 +2020,5,28,1,0,28.5,1.48,0.14700000000000002,0.61,96,632,379,0,25,96,632,0,379,0.25,81.16,63.4,0.13,992,5.6000000000000005,208,0.30000000000000004 +2020,5,28,2,0,30.1,1.48,0.1482,0.61,116,739,594,3,24.6,293,135,0,380,0.25,72.32000000000001,49.72,0.13,992,5.6000000000000005,214,0.4 +2020,5,28,3,0,31.3,1.49,0.19240000000000002,0.61,146,767,761,4,24.400000000000002,372,84,0,439,0.25,66.79,36.61,0.13,992,5.6000000000000005,210,0.5 +2020,5,28,4,0,32.1,1.49,0.2068,0.61,160,790,876,3,24.700000000000003,404,362,0,732,0.251,65.04,25.07,0.13,992,5.7,202,0.7000000000000001 +2020,5,28,5,0,31.5,1.49,0.21180000000000002,0.61,166,799,923,0,24,166,799,0,923,0.252,64.63,18.45,0.13,991,5.800000000000001,211,0.8 +2020,5,28,6,0,31.1,1.55,0.3765,0.61,227,702,878,3,24.200000000000003,423,351,0,748,0.253,66.68,21.84,0.13,990,5.9,225,0.9 +2020,5,28,7,0,30.8,1.54,0.387,0.61,220,666,783,3,24.400000000000002,412,132,0,524,0.254,68.83,32.22,0.13,990,6.1000000000000005,227,1 +2020,5,28,8,0,30.200000000000003,1.54,0.399,0.61,204,601,629,6,24.8,46,0,0,46,0.256,72.72,44.95,0.13,990,6.2,222,1.1 +2020,5,28,9,0,29.6,1.52,0.44370000000000004,0.61,180,473,427,9,25.200000000000003,97,0,0,97,0.256,77.33,58.49,0.13,990,6.300000000000001,219,1 +2020,5,28,10,0,28.700000000000003,1.51,0.4716,0.61,123,286,210,6,25.200000000000003,114,57,0,132,0.257,81.25,72.32000000000001,0.13,990,6.300000000000001,203,0.9 +2020,5,28,11,0,27.6,1.52,0.46430000000000005,0.61,21,41,24,8,25.900000000000002,20,0,3,20,0.257,90.33,86.12,0.13,991,6.300000000000001,195,0.7000000000000001 +2020,5,28,12,0,27.200000000000003,1.53,0.4652,0.61,0,0,0,6,25.700000000000003,0,0,0,0,0.258,91.74,100.2,0.13,991,6.300000000000001,195,0.6000000000000001 +2020,5,28,13,0,26.900000000000002,1.53,0.4595,0.61,0,0,0,6,25.6,0,0,0,0,0.259,92.65,113.89,0.13,992,6.300000000000001,199,0.6000000000000001 +2020,5,28,14,0,26.700000000000003,1.54,0.445,0.61,0,0,0,1,25.5,0,0,0,0,0.26,93.10000000000001,127.15,0.13,992,6.300000000000001,203,0.6000000000000001 +2020,5,28,15,0,26.5,1.53,0.4505,0.61,0,0,0,3,25.400000000000002,0,0,0,0,0.261,93.7,139.49,0.13,993,6.300000000000001,208,0.6000000000000001 +2020,5,28,16,0,26.400000000000002,1.52,0.46530000000000005,0.61,0,0,0,6,25.3,0,0,0,0,0.261,93.68,149.70000000000002,0.13,993,6.300000000000001,210,0.6000000000000001 +2020,5,28,17,0,26.1,1.5,0.4813,0.61,0,0,0,9,25.200000000000003,0,0,0,0,0.26,94.88,154.99,0.13,992,6.300000000000001,205,0.6000000000000001 +2020,5,28,18,0,26,1.47,0.517,0.61,0,0,0,9,25.200000000000003,0,0,0,0,0.26,95.11,152.36,0.13,991,6.300000000000001,192,0.6000000000000001 +2020,5,28,19,0,25.8,1.45,0.5429,0.61,0,0,0,9,25.1,0,0,0,0,0.258,96.08,143.49,0.13,991,6.300000000000001,178,0.6000000000000001 +2020,5,28,20,0,25.700000000000003,1.44,0.5365,0.61,0,0,0,6,25.1,0,0,0,0,0.258,96.49000000000001,131.72,0.13,991,6.300000000000001,165,0.6000000000000001 +2020,5,28,21,0,25.6,1.42,0.5585,0.61,0,0,0,6,25,0,0,0,0,0.257,96.73,118.72,0.13,991,6.300000000000001,155,0.6000000000000001 +2020,5,28,22,0,25.400000000000002,1.41,0.5623,0.61,0,0,0,7,25,0,0,0,0,0.257,97.55,105.14,0.13,991,6.300000000000001,152,0.6000000000000001 +2020,5,28,23,0,25.6,1.41,0.5369,0.61,0,0,0,7,25.200000000000003,0,0,0,0,0.256,97.5,91.31,0.13,992,6.300000000000001,157,0.6000000000000001 +2020,5,29,0,0,26.3,1.4000000000000001,0.5307000000000001,0.61,93,173,131,7,25.6,75,11,3,77,0.256,95.79,77.31,0.13,992,6.300000000000001,163,1 +2020,5,29,1,0,26.900000000000002,1.41,0.4933,0.61,172,390,346,8,25.8,16,0,0,16,0.256,93.72,63.45,0.13,993,6.300000000000001,171,1.3 +2020,5,29,2,0,27.5,1.41,0.42350000000000004,0.61,202,552,559,7,25.700000000000003,91,0,0,91,0.256,90.14,49.79,0.13,993,6.2,180,1.4000000000000001 +2020,5,29,3,0,28,1.42,0.367,0.61,210,655,735,7,25.400000000000002,57,0,0,57,0.257,85.84,36.7,0.13,993,6.2,187,1.5 +2020,5,29,4,0,28.5,1.44,0.30410000000000004,0.61,199,729,859,6,25.200000000000003,295,17,0,311,0.256,82.22,25.2,0.13,992,6,187,1.6 +2020,5,29,5,0,28.8,1.44,0.2664,0.61,188,765,913,7,25,476,204,0,669,0.256,80.19,18.61,0.13,991,5.9,189,1.5 +2020,5,29,6,0,29,1.43,0.2524,0.61,181,767,892,6,24.900000000000002,405,45,0,447,0.254,78.75,21.95,0.13,991,5.9,200,1.2000000000000002 +2020,5,29,7,0,29.1,1.42,0.24380000000000002,0.61,170,745,801,7,24.8,379,343,0,669,0.253,77.85000000000001,32.27,0.13,990,5.9,219,1.1 +2020,5,29,8,0,28.900000000000002,1.43,0.2323,0.61,152,700,648,7,24.900000000000002,306,316,0,529,0.253,78.83,44.97,0.13,990,5.9,233,1.1 +2020,5,29,9,0,28.6,1.44,0.2311,0.61,130,608,447,7,25.3,211,279,0,357,0.253,82.18,58.480000000000004,0.13,990,5.800000000000001,235,0.9 +2020,5,29,10,0,28.200000000000003,1.44,0.2348,0.61,94,429,224,3,24.900000000000002,90,404,0,213,0.253,82.39,72.3,0.13,990,5.800000000000001,225,0.6000000000000001 +2020,5,29,11,0,27.5,1.45,0.2291,0.61,25,93,31,8,24.700000000000003,25,93,5,31,0.253,84.84,86.09,0.13,991,5.800000000000001,203,0.4 +2020,5,29,12,0,27.200000000000003,1.45,0.2348,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.254,83.89,100.15,0.13,992,5.800000000000001,188,0.5 +2020,5,29,13,0,26.900000000000002,1.46,0.23620000000000002,0.61,0,0,0,7,24,0,0,0,0,0.255,84.35000000000001,113.83,0.13,993,5.800000000000001,183,0.5 +2020,5,29,14,0,26.700000000000003,1.47,0.2298,0.61,0,0,0,7,23.8,0,0,0,0,0.255,84.26,127.07000000000001,0.13,993,5.800000000000001,186,0.5 +2020,5,29,15,0,26.3,1.47,0.2257,0.61,0,0,0,6,23.700000000000003,0,0,0,0,0.255,85.82000000000001,139.38,0.13,993,5.800000000000001,202,0.5 +2020,5,29,16,0,26,1.46,0.2243,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.255,87.22,149.56,0.13,993,5.800000000000001,222,0.6000000000000001 +2020,5,29,17,0,25.6,1.45,0.2247,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.255,89.25,154.84,0.13,993,5.800000000000001,234,0.7000000000000001 +2020,5,29,18,0,25.3,1.44,0.2263,0.61,0,0,0,8,23.6,0,0,0,0,0.255,90.56,152.24,0.13,992,5.800000000000001,239,0.7000000000000001 +2020,5,29,19,0,25.1,1.42,0.22640000000000002,0.61,0,0,0,7,23.6,0,0,0,0,0.255,91.39,143.42000000000002,0.13,992,5.800000000000001,241,0.6000000000000001 +2020,5,29,20,0,25,1.41,0.2252,0.61,0,0,0,8,23.5,0,0,0,0,0.254,91.61,131.68,0.13,992,5.800000000000001,240,0.6000000000000001 +2020,5,29,21,0,25.1,1.4000000000000001,0.22460000000000002,0.61,0,0,0,7,23.5,0,0,0,0,0.254,90.68,118.7,0.13,992,5.800000000000001,241,0.5 +2020,5,29,22,0,25.1,1.41,0.22240000000000001,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.254,90.41,105.15,0.13,992,5.800000000000001,245,0.4 +2020,5,29,23,0,25.3,1.42,0.215,0.61,0,0,0,7,23.8,0,0,0,0,0.254,91.25,91.33,0.13,992,5.800000000000001,248,0.30000000000000004 +2020,5,30,0,0,26.3,1.44,0.2078,0.61,71,351,147,7,24.8,78,169,3,115,0.254,91.31,77.35000000000001,0.13,993,5.800000000000001,219,0.4 +2020,5,30,1,0,27.8,1.46,0.2011,0.61,111,581,370,7,24.6,170,294,0,301,0.254,82.77,63.51,0.13,993,5.800000000000001,171,0.7000000000000001 +2020,5,30,2,0,28.900000000000002,1.46,0.20120000000000002,0.61,135,695,583,7,24.400000000000002,280,269,0,453,0.254,76.61,49.86,0.13,993,5.800000000000001,149,0.7000000000000001 +2020,5,30,3,0,29.5,1.46,0.2097,0.61,153,752,755,8,24.1,353,354,0,636,0.253,72.93,36.79,0.13,993,5.800000000000001,130,0.8 +2020,5,30,4,0,29.900000000000002,1.46,0.2155,0.61,164,782,871,8,24.1,365,467,0,786,0.252,71.24,25.330000000000002,0.13,992,5.800000000000001,125,0.8 +2020,5,30,5,0,30.200000000000003,1.46,0.21630000000000002,0.61,168,795,920,3,24.200000000000003,463,270,0,718,0.252,70.43,18.76,0.13,992,5.800000000000001,131,0.9 +2020,5,30,6,0,30.400000000000002,1.43,0.2074,0.61,163,794,899,8,24.3,384,446,0,797,0.252,70.14,22.06,0.13,991,5.800000000000001,141,1.1 +2020,5,30,7,0,30.200000000000003,1.43,0.2107,0.61,158,766,805,7,24.5,413,148,0,538,0.251,71.43,32.32,0.13,990,5.9,146,1.2000000000000002 +2020,5,30,8,0,29.8,1.44,0.2116,0.61,145,714,650,7,24.700000000000003,259,23,0,276,0.251,73.99,44.99,0.13,990,5.9,149,1.3 +2020,5,30,9,0,29.5,1.43,0.23670000000000002,0.61,132,602,446,3,25.3,218,239,0,343,0.251,78.02,58.480000000000004,0.13,990,6,149,1.1 +2020,5,30,10,0,28.700000000000003,1.42,0.2529,0.61,97,413,223,3,25,99,337,0,202,0.251,80.27,72.27,0.13,991,6,138,1 +2020,5,30,11,0,27.5,1.44,0.2431,0.61,25,88,31,7,25.400000000000002,23,49,3,27,0.252,88.54,86.05,0.13,991,6,139,0.7000000000000001 +2020,5,30,12,0,27.200000000000003,1.46,0.23370000000000002,0.61,0,0,0,7,25,0,0,0,0,0.252,88,100.10000000000001,0.13,992,6,141,0.7000000000000001 +2020,5,30,13,0,27,1.47,0.22690000000000002,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.253,87.45,113.76,0.13,993,6,139,0.7000000000000001 +2020,5,30,14,0,26.700000000000003,1.47,0.2245,0.61,0,0,0,7,24.5,0,0,0,0,0.253,87.66,126.98,0.13,993,6,130,0.7000000000000001 +2020,5,30,15,0,26.5,1.46,0.23220000000000002,0.61,0,0,0,6,24.400000000000002,0,0,0,0,0.254,88.06,139.27,0.13,994,6,121,0.7000000000000001 +2020,5,30,16,0,26.1,1.44,0.23920000000000002,0.61,0,0,0,9,24.3,0,0,0,0,0.255,89.9,149.42000000000002,0.13,993,6,116,0.7000000000000001 +2020,5,30,17,0,25.8,1.43,0.24350000000000002,0.61,0,0,0,6,24.3,0,0,0,0,0.255,91.27,154.69,0.13,993,6,111,0.6000000000000001 +2020,5,30,18,0,25.5,1.42,0.2466,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.255,92.49,152.13,0.13,992,6,104,0.6000000000000001 +2020,5,30,19,0,25.200000000000003,1.4000000000000001,0.2524,0.61,0,0,0,7,24.1,0,0,0,0,0.254,93.72,143.35,0.13,992,6,97,0.6000000000000001 +2020,5,30,20,0,25,1.3900000000000001,0.25620000000000004,0.61,0,0,0,7,24,0,0,0,0,0.252,94.4,131.65,0.13,992,6,88,0.6000000000000001 +2020,5,30,21,0,24.8,1.3800000000000001,0.2605,0.61,0,0,0,7,24,0,0,0,0,0.251,95.11,118.69,0.13,992,6,80,0.6000000000000001 +2020,5,30,22,0,24.700000000000003,1.3800000000000001,0.2619,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.25,95.43,105.16,0.13,993,6,78,0.6000000000000001 +2020,5,30,23,0,25,1.37,0.258,0.61,0,0,0,8,24.3,0,0,0,0,0.249,95.69,91.35000000000001,0.13,993,5.9,80,0.7000000000000001 +2020,5,31,0,0,26.5,1.3800000000000001,0.25930000000000003,0.61,77,306,144,8,25.200000000000003,77,306,5,144,0.249,92.7,77.38,0.13,994,5.9,111,1.1 +2020,5,31,1,0,27.700000000000003,1.3800000000000001,0.26680000000000004,0.61,128,526,362,8,25.400000000000002,140,450,0,340,0.249,87.54,63.56,0.13,994,5.800000000000001,129,1.5 +2020,5,31,2,0,28.5,1.3900000000000001,0.2581,0.61,154,652,574,8,25.1,219,478,0,526,0.249,82.11,49.93,0.13,994,5.800000000000001,136,1.7000000000000002 +2020,5,31,3,0,29.400000000000002,1.35,0.2205,0.61,158,743,753,3,25.1,363,72,0,420,0.249,77.79,36.89,0.13,994,5.7,142,1.7000000000000002 +2020,5,31,4,0,30,1.33,0.2169,0.61,166,780,870,8,25.1,168,6,0,173,0.249,75.2,25.45,0.13,993,5.7,148,1.6 +2020,5,31,5,0,30.5,1.3,0.2119,0.61,168,795,920,8,25.200000000000003,460,276,0,721,0.25,73.22,18.91,0.13,992,5.7,156,1.6 +2020,5,31,6,0,30.700000000000003,1.27,0.1887,0.61,156,803,900,8,25.200000000000003,426,61,0,483,0.25,72.36,22.16,0.13,991,5.800000000000001,163,1.5 +2020,5,31,7,0,30.700000000000003,1.24,0.19540000000000002,0.61,153,773,806,7,25.1,384,67,0,441,0.25,72.01,32.37,0.13,990,5.800000000000001,168,1.5 +2020,5,31,8,0,30.3,1.23,0.1976,0.61,142,721,651,8,25.1,230,528,0,603,0.249,73.65,45,0.13,990,5.9,172,1.5 +2020,5,31,9,0,29.700000000000003,1.23,0.21280000000000002,0.61,126,616,449,7,25.3,208,300,0,365,0.249,77.4,58.47,0.13,990,5.9,175,1.4000000000000001 +2020,5,31,10,0,28.900000000000002,1.23,0.22310000000000002,0.61,94,430,225,0,25.6,94,430,0,225,0.249,82.37,72.25,0.13,990,6,180,1.2000000000000002 +2020,5,31,11,0,27.5,1.22,0.22,0.61,26,87,32,0,25.900000000000002,26,87,0,32,0.249,90.91,86.01,0.13,991,6,186,0.9 +2020,5,31,12,0,27,1.22,0.2187,0.61,0,0,0,1,25.8,0,0,0,0,0.25,92.99,100.04,0.13,992,6,192,0.8 +2020,5,31,13,0,26.700000000000003,1.21,0.2147,0.61,0,0,0,8,25.6,0,0,0,0,0.251,93.85000000000001,113.69,0.13,993,6,193,0.7000000000000001 +2020,5,31,14,0,26.5,1.21,0.2084,0.61,0,0,0,8,25.400000000000002,0,0,0,0,0.252,93.83,126.9,0.13,993,6,193,0.7000000000000001 +2020,5,31,15,0,26.3,1.2,0.2066,0.61,0,0,0,8,25.200000000000003,0,0,0,0,0.253,93.84,139.16,0.13,994,6,193,0.7000000000000001 +2020,5,31,16,0,26.200000000000003,1.2,0.2061,0.61,0,0,0,8,25,0,0,0,0,0.254,93.36,149.29,0.13,994,6,190,0.6000000000000001 +2020,5,31,17,0,26.200000000000003,1.2,0.2028,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.255,92.61,154.55,0.13,993,6,181,0.6000000000000001 +2020,5,31,18,0,26,1.2,0.1965,0.61,0,0,0,8,24.8,0,0,0,0,0.255,93.05,152.02,0.13,992,5.9,163,0.6000000000000001 +2020,5,31,19,0,25.8,1.21,0.1898,0.61,0,0,0,1,24.700000000000003,0,0,0,0,0.254,93.60000000000001,143.29,0.13,992,5.9,138,0.6000000000000001 +2020,5,31,20,0,25.5,1.23,0.1827,0.61,0,0,0,0,24.6,0,0,0,0,0.253,94.53,131.62,0.13,991,5.800000000000001,125,0.6000000000000001 +2020,5,31,21,0,25.200000000000003,1.24,0.1766,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.252,95.52,118.68,0.13,991,5.7,122,0.7000000000000001 +2020,5,31,22,0,25,1.25,0.1729,0.61,0,0,0,3,24.3,0,0,0,0,0.252,95.97,105.17,0.13,992,5.7,123,0.8 +2020,5,31,23,0,25.200000000000003,1.25,0.1738,0.61,0,0,0,0,24.6,0,0,0,0,0.252,96.47,91.38,0.13,992,5.7,130,0.8 +2020,6,1,0,0,26.6,1.24,0.1768,0.61,67,369,148,0,25.3,67,369,0,148,0.253,92.61,77.42,0.13,993,5.7,147,1.2000000000000002 +2020,6,1,1,0,27.700000000000003,1.25,0.1768,0.61,105,595,370,0,25.400000000000002,105,595,0,370,0.254,87.26,63.61,0.13,994,5.800000000000001,167,1.4000000000000001 +2020,6,1,2,0,28.5,1.26,0.1641,0.61,123,718,585,0,25.3,123,718,0,585,0.255,82.61,50,0.13,994,5.9,184,1.6 +2020,6,1,3,0,29.1,1.27,0.1764,0.61,141,770,756,3,25.200000000000003,205,8,0,211,0.256,79.72,36.980000000000004,0.13,993,5.9,190,1.9000000000000001 +2020,6,1,4,0,29.6,1.28,0.163,0.61,143,812,875,1,25.200000000000003,143,812,0,875,0.256,77.39,25.57,0.13,993,5.9,192,2.1 +2020,6,1,5,0,29.8,1.28,0.1549,0.61,142,829,926,0,25.200000000000003,142,829,0,926,0.255,76.28,19.05,0.13,992,5.9,191,2.1 +2020,6,1,6,0,29.900000000000002,1.29,0.21610000000000001,0.61,168,786,895,3,25.1,452,99,0,543,0.255,75.60000000000001,22.25,0.13,991,5.800000000000001,188,2.1 +2020,6,1,7,0,29.700000000000003,1.27,0.21180000000000002,0.61,159,762,803,3,25.1,351,39,0,384,0.255,76.29,32.410000000000004,0.13,991,5.800000000000001,186,2 +2020,6,1,8,0,29.3,1.26,0.19840000000000002,0.61,141,721,651,7,25.200000000000003,328,139,0,427,0.255,78.58,45.01,0.13,990,5.800000000000001,184,1.8 +2020,6,1,9,0,28.700000000000003,1.26,0.2093,0.61,125,620,449,0,25.5,125,620,0,449,0.255,82.71000000000001,58.46,0.13,990,5.800000000000001,179,1.5 +2020,6,1,10,0,27.8,1.26,0.2046,0.61,90,449,227,0,25.400000000000002,90,449,0,227,0.254,86.99,72.22,0.13,991,5.800000000000001,173,1.4000000000000001 +2020,6,1,11,0,26.700000000000003,1.25,0.18680000000000002,0.61,26,107,33,1,25.6,26,107,0,33,0.255,93.73,85.97,0.13,991,5.800000000000001,173,1 +2020,6,1,12,0,26.3,1.25,0.1767,0.61,0,0,0,8,25.400000000000002,0,0,0,0,0.255,94.9,99.99000000000001,0.13,992,5.800000000000001,171,1 +2020,6,1,13,0,25.900000000000002,1.24,0.1598,0.61,0,0,0,7,25.200000000000003,0,0,0,0,0.256,96.16,113.62,0.13,992,5.7,170,1 +2020,6,1,14,0,25.700000000000003,1.23,0.1419,0.61,0,0,0,7,25.1,0,0,0,0,0.257,96.46000000000001,126.81,0.13,993,5.6000000000000005,169,1.1 +2020,6,1,15,0,25.400000000000002,1.21,0.13140000000000002,0.61,0,0,0,6,24.900000000000002,0,0,0,0,0.258,97.35000000000001,139.06,0.13,992,5.6000000000000005,166,1.2000000000000002 +2020,6,1,16,0,25.200000000000003,1.18,0.12610000000000002,0.61,0,0,0,7,24.8,0,0,0,0,0.259,97.8,149.16,0.13,992,5.6000000000000005,167,1.2000000000000002 +2020,6,1,17,0,25,1.16,0.11950000000000001,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.259,97.96000000000001,154.41,0.13,992,5.6000000000000005,171,1.1 +2020,6,1,18,0,24.8,1.19,0.1242,0.61,0,0,0,3,24.5,0,0,0,0,0.258,98.35000000000001,151.92000000000002,0.13,992,5.6000000000000005,173,1 +2020,6,1,19,0,24.700000000000003,1.22,0.12430000000000001,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.257,98.16,143.23,0.13,991,5.6000000000000005,174,1 +2020,6,1,20,0,24.6,1.24,0.11800000000000001,0.61,0,0,0,8,24.200000000000003,0,0,0,0,0.256,97.91,131.59,0.13,991,5.6000000000000005,174,1 +2020,6,1,21,0,24.5,1.26,0.12760000000000002,0.61,0,0,0,8,24.200000000000003,0,0,0,0,0.256,98.11,118.68,0.13,991,5.5,176,1 +2020,6,1,22,0,24.400000000000002,1.28,0.1325,0.61,0,0,0,1,24.1,0,0,0,0,0.255,98.19,105.18,0.13,992,5.4,179,1 +2020,6,1,23,0,24.8,1.29,0.1277,0.61,0,0,0,3,24.400000000000002,0,0,0,0,0.254,97.36,91.4,0.13,992,5.4,180,0.9 +2020,6,2,0,0,25.700000000000003,1.32,0.1308,0.61,60,423,152,0,24.900000000000002,60,423,0,152,0.254,95.2,77.46000000000001,0.13,993,5.300000000000001,180,1.3 +2020,6,2,1,0,26.700000000000003,1.37,0.12300000000000001,0.61,89,651,378,0,24.900000000000002,89,651,0,378,0.254,90.02,63.660000000000004,0.13,993,5.300000000000001,171,1.5 +2020,6,2,2,0,27.700000000000003,1.41,0.1109,0.61,102,768,595,8,24.3,217,481,0,526,0.254,81.57000000000001,50.07,0.13,993,5.2,162,1.5 +2020,6,2,3,0,28.700000000000003,1.36,0.10110000000000001,0.61,109,831,772,7,24,336,382,0,640,0.253,76,37.07,0.13,993,5.2,161,1.4000000000000001 +2020,6,2,4,0,29.6,1.37,0.09920000000000001,0.61,114,862,890,7,23.900000000000002,421,315,0,704,0.252,71.66,25.69,0.13,992,5.1000000000000005,171,1.1 +2020,6,2,5,0,30.1,1.3800000000000001,0.09920000000000001,0.61,116,873,941,8,23.900000000000002,395,476,0,844,0.25,69.27,19.18,0.13,991,5,201,0.8 +2020,6,2,6,0,30.200000000000003,1.3800000000000001,0.1131,0.61,121,859,916,2,23.8,394,401,0,765,0.249,68.51,22.34,0.13,991,5,235,0.7000000000000001 +2020,6,2,7,0,30.200000000000003,1.3800000000000001,0.1144,0.61,117,836,823,0,23.700000000000003,117,836,0,823,0.248,68.36,32.44,0.13,990,5,249,0.8 +2020,6,2,8,0,29.900000000000002,1.3800000000000001,0.1178,0.61,110,790,668,3,23.700000000000003,316,82,0,374,0.247,69.61,45.02,0.13,989,4.9,250,0.8 +2020,6,2,9,0,29.8,1.3900000000000001,0.124,0.61,97,702,465,7,24.1,185,408,0,399,0.247,71.43,58.45,0.13,989,5,217,0.6000000000000001 +2020,6,2,10,0,29.200000000000003,1.3900000000000001,0.1296,0.61,74,533,237,8,24.1,73,527,0,234,0.248,74.13,72.19,0.13,990,5.1000000000000005,150,0.7000000000000001 +2020,6,2,11,0,27.700000000000003,1.3900000000000001,0.1312,0.61,25,159,36,3,24.5,24,108,3,32,0.25,82.72,85.93,0.13,990,5.1000000000000005,127,0.7000000000000001 +2020,6,2,12,0,27,1.4000000000000001,0.1307,0.61,0,0,0,3,24.3,0,0,0,0,0.251,85.07000000000001,99.94,0.13,991,5.2,125,0.7000000000000001 +2020,6,2,13,0,26.6,1.41,0.1274,0.61,0,0,0,6,24,0,0,0,0,0.252,85.56,113.56,0.13,992,5.300000000000001,123,0.8 +2020,6,2,14,0,26.200000000000003,1.42,0.1222,0.61,0,0,0,6,23.700000000000003,0,0,0,0,0.254,85.98,126.73,0.13,993,5.300000000000001,119,0.8 +2020,6,2,15,0,26,1.42,0.1192,0.61,0,0,0,7,23.3,0,0,0,0,0.255,85.17,138.96,0.13,993,5.300000000000001,106,0.7000000000000001 +2020,6,2,16,0,25.700000000000003,1.43,0.1155,0.61,0,0,0,8,22.900000000000002,0,0,0,0,0.256,84.77,149.04,0.13,993,5.300000000000001,81,0.6000000000000001 +2020,6,2,17,0,25.200000000000003,1.44,0.1119,0.61,0,0,0,7,22.700000000000003,0,0,0,0,0.257,85.96000000000001,154.28,0.13,992,5.2,50,0.6000000000000001 +2020,6,2,18,0,24.700000000000003,1.45,0.1097,0.61,0,0,0,7,22.5,0,0,0,0,0.257,87.53,151.82,0.13,991,5.2,28,0.6000000000000001 +2020,6,2,19,0,24.1,1.45,0.1081,0.61,0,0,0,8,22.3,0,0,0,0,0.256,89.93,143.18,0.13,990,5.1000000000000005,21,0.7000000000000001 +2020,6,2,20,0,23.8,1.46,0.1068,0.61,0,0,0,3,22.200000000000003,0,0,0,0,0.255,90.76,131.57,0.13,990,5,20,0.8 +2020,6,2,21,0,23.700000000000003,1.46,0.1058,0.61,0,0,0,3,22,0,0,0,0,0.255,90.27,118.68,0.13,990,5,24,0.7000000000000001 +2020,6,2,22,0,23.8,1.47,0.1051,0.61,0,0,0,3,21.8,0,0,0,0,0.254,88.73,105.2,0.13,991,5.1000000000000005,34,0.7000000000000001 +2020,6,2,23,0,24.3,1.47,0.1033,0.61,0,0,0,3,22.3,0,0,0,0,0.254,88.85000000000001,91.43,0.13,991,5.1000000000000005,51,0.6000000000000001 +2020,6,3,0,0,25.8,1.48,0.1008,0.61,54,464,154,0,22.700000000000003,54,464,0,154,0.254,82.85000000000001,77.5,0.13,992,5.1000000000000005,113,0.8 +2020,6,3,1,0,27.400000000000002,1.49,0.09870000000000001,0.61,81,679,381,0,22.8,81,679,0,381,0.254,76.16,63.72,0.13,992,5.1000000000000005,143,1.4000000000000001 +2020,6,3,2,0,28.6,1.49,0.09870000000000001,0.61,97,779,596,0,23.3,97,779,0,596,0.254,73.15,50.14,0.13,992,5.1000000000000005,146,1.5 +2020,6,3,3,0,29.5,1.36,0.1428,0.61,126,800,764,0,23.700000000000003,126,800,0,764,0.255,71.15,37.15,0.13,991,5.1000000000000005,142,1.5 +2020,6,3,4,0,30.3,1.35,0.15030000000000002,0.61,137,825,879,0,24.1,137,825,0,879,0.256,69.42,25.8,0.13,991,5.2,138,1.5 +2020,6,3,5,0,30.700000000000003,1.33,0.1637,0.61,146,828,927,3,24.400000000000002,409,390,0,777,0.256,68.97,19.31,0.13,990,5.2,137,1.4000000000000001 +2020,6,3,6,0,30.900000000000002,1.32,0.18610000000000002,0.61,154,807,900,3,24.5,378,34,0,410,0.256,68.8,22.42,0.13,990,5.300000000000001,135,1.3 +2020,6,3,7,0,30.700000000000003,1.31,0.1995,0.61,154,773,806,3,24.5,131,0,0,131,0.256,69.69,32.480000000000004,0.13,989,5.4,135,1.3 +2020,6,3,8,0,30.200000000000003,1.31,0.20370000000000002,0.61,143,719,651,8,24.6,255,460,0,580,0.255,72.10000000000001,45.02,0.13,989,5.5,136,1.3 +2020,6,3,9,0,29.700000000000003,1.33,0.21180000000000002,0.61,125,621,450,7,25.200000000000003,223,104,0,278,0.255,76.7,58.43,0.13,989,5.5,136,1.1 +2020,6,3,10,0,28.900000000000002,1.35,0.22080000000000002,0.61,92,440,227,7,24.900000000000002,110,248,0,186,0.255,78.87,72.16,0.13,989,5.6000000000000005,131,1.1 +2020,6,3,11,0,27.6,1.36,0.2179,0.61,26,100,33,7,25.6,24,71,3,29,0.255,88.82000000000001,85.89,0.13,990,5.7,133,0.7000000000000001 +2020,6,3,12,0,27.1,1.3900000000000001,0.2117,0.61,0,0,0,7,25.400000000000002,0,0,0,0,0.256,90.31,99.88,0.13,991,5.7,131,0.8 +2020,6,3,13,0,26.700000000000003,1.41,0.20350000000000001,0.61,0,0,0,7,25.1,0,0,0,0,0.257,91.2,113.49000000000001,0.13,991,5.7,124,0.9 +2020,6,3,14,0,26.3,1.42,0.20120000000000002,0.61,0,0,0,7,25,0,0,0,0,0.257,92.48,126.65,0.13,991,5.7,118,0.9 +2020,6,3,15,0,26.1,1.42,0.2083,0.61,0,0,0,8,24.8,0,0,0,0,0.257,92.67,138.86,0.13,992,5.800000000000001,120,0.9 +2020,6,3,16,0,26,1.41,0.22,0.61,0,0,0,7,24.6,0,0,0,0,0.258,91.82000000000001,148.92000000000002,0.13,992,5.800000000000001,134,0.8 +2020,6,3,17,0,25.8,1.3900000000000001,0.23020000000000002,0.61,0,0,0,6,24.400000000000002,0,0,0,0,0.257,91.86,154.16,0.13,991,5.9,147,0.7000000000000001 +2020,6,3,18,0,25.6,1.37,0.23970000000000002,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.257,92.24,151.73,0.13,991,5.9,151,0.7000000000000001 +2020,6,3,19,0,25.400000000000002,1.35,0.2484,0.61,0,0,0,6,24.1,0,0,0,0,0.256,92.74,143.13,0.13,990,5.9,142,0.7000000000000001 +2020,6,3,20,0,25.1,1.33,0.2545,0.61,0,0,0,6,24.1,0,0,0,0,0.256,94.07000000000001,131.55,0.13,990,5.800000000000001,133,0.7000000000000001 +2020,6,3,21,0,24.8,1.31,0.27,0.61,0,0,0,7,24,0,0,0,0,0.255,95.53,118.68,0.13,990,5.800000000000001,137,0.8 +2020,6,3,22,0,24.6,1.3,0.278,0.61,0,0,0,7,24.1,0,0,0,0,0.256,96.98,105.21000000000001,0.13,990,5.800000000000001,142,0.9 +2020,6,3,23,0,24.900000000000002,1.29,0.26780000000000004,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.256,97.22,91.46000000000001,0.13,990,5.7,143,1.1 +2020,6,4,0,0,25.900000000000002,1.28,0.2696,0.61,78,289,140,7,25.1,40,0,3,40,0.256,95.22,77.54,0.13,991,5.7,142,1.5 +2020,6,4,1,0,27.1,1.3,0.2446,0.61,123,537,360,6,25.6,91,0,0,91,0.257,91.5,63.77,0.13,992,5.800000000000001,152,1.6 +2020,6,4,2,0,28,1.31,0.22440000000000002,0.61,143,672,573,7,25.6,95,0,0,95,0.258,86.65,50.21,0.13,993,5.800000000000001,159,1.4000000000000001 +2020,6,4,3,0,28.6,1.32,0.21380000000000002,0.61,155,744,747,7,25.3,49,0,0,49,0.258,82.54,37.24,0.13,992,5.9,167,1.5 +2020,6,4,4,0,28.900000000000002,1.31,0.21430000000000002,0.61,164,777,863,7,25.1,244,12,0,255,0.258,80.21000000000001,25.91,0.13,992,6,179,1.5 +2020,6,4,5,0,29.1,1.31,0.21380000000000002,0.61,168,790,913,7,25,395,37,0,429,0.258,78.63,19.43,0.13,991,6.1000000000000005,191,1.4000000000000001 +2020,6,4,6,0,29.1,1.32,0.2454,0.61,179,766,886,7,24.900000000000002,80,0,0,80,0.257,78.28,22.5,0.13,990,6.1000000000000005,195,1.6 +2020,6,4,7,0,28.700000000000003,1.32,0.25020000000000003,0.61,173,736,794,6,25,344,36,0,374,0.257,80.38,32.5,0.13,990,6.2,198,1.8 +2020,6,4,8,0,28.1,1.32,0.2354,0.61,154,693,644,6,25.1,327,131,0,420,0.256,83.81,45.02,0.13,989,6.2,200,1.8 +2020,6,4,9,0,27.5,1.32,0.25520000000000004,0.61,138,584,444,7,25.3,205,315,0,370,0.256,87.96000000000001,58.410000000000004,0.13,989,6.2,199,1.5 +2020,6,4,10,0,26.900000000000002,1.33,0.25270000000000004,0.61,98,411,224,7,25.200000000000003,107,277,0,192,0.256,90.51,72.13,0.13,990,6.2,194,1.3 +2020,6,4,11,0,26.1,1.33,0.2328,0.61,26,92,33,7,25.1,26,92,5,33,0.257,94.06,85.85000000000001,0.13,990,6.1000000000000005,192,0.9 +2020,6,4,12,0,25.700000000000003,1.34,0.2286,0.61,0,0,0,7,24.8,0,0,0,0,0.257,94.95,99.83,0.13,991,6.1000000000000005,190,0.8 +2020,6,4,13,0,25.5,1.35,0.2099,0.61,0,0,0,7,24.6,0,0,0,0,0.257,94.75,113.42,0.13,992,6.1000000000000005,195,0.8 +2020,6,4,14,0,25.3,1.34,0.18580000000000002,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.257,94.67,126.57000000000001,0.13,992,6,202,0.8 +2020,6,4,15,0,25.1,1.34,0.1754,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.257,94.93,138.76,0.13,992,6,206,0.9 +2020,6,4,16,0,24.8,1.33,0.1613,0.61,0,0,0,7,24.1,0,0,0,0,0.256,96.04,148.81,0.13,992,6,208,1 +2020,6,4,17,0,24.6,1.31,0.1489,0.61,0,0,0,7,24,0,0,0,0,0.255,96.62,154.04,0.13,992,5.9,214,1 +2020,6,4,18,0,24.5,1.28,0.1554,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.254,96.51,151.65,0.13,991,5.9,223,1 +2020,6,4,19,0,24.5,1.27,0.1643,0.61,0,0,0,8,23.8,0,0,0,0,0.253,96,143.09,0.13,991,6,234,0.9 +2020,6,4,20,0,24.400000000000002,1.27,0.1648,0.61,0,0,0,8,23.8,0,0,0,0,0.252,96.23,131.54,0.13,991,6,238,0.9 +2020,6,4,21,0,24.3,1.3,0.1655,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.251,96.66,118.69,0.13,991,6,237,0.9 +2020,6,4,22,0,24.200000000000003,1.33,0.1521,0.61,0,0,0,7,23.6,0,0,0,0,0.25,96.7,105.23,0.13,991,5.9,238,0.9 +2020,6,4,23,0,24.400000000000002,1.35,0.1322,0.61,0,0,0,7,23.8,0,0,0,0,0.249,96.54,91.5,0.13,992,5.9,241,0.9 +2020,6,5,0,0,25.3,1.36,0.12440000000000001,0.61,58,426,150,7,24.400000000000002,76,40,3,85,0.249,94.56,77.59,0.13,992,5.800000000000001,239,1.3 +2020,6,5,1,0,26.200000000000003,1.3800000000000001,0.1153,0.61,86,655,375,6,24.5,178,74,0,210,0.249,90.57000000000001,63.83,0.13,993,5.800000000000001,231,1.5 +2020,6,5,2,0,27,1.3900000000000001,0.11040000000000001,0.61,102,763,589,6,24.200000000000003,235,24,0,251,0.25,84.64,50.27,0.13,993,5.800000000000001,223,1.7000000000000002 +2020,6,5,3,0,27.700000000000003,1.37,0.1124,0.61,113,817,763,7,24.200000000000003,281,20,0,297,0.251,81.14,37.33,0.13,993,5.800000000000001,219,1.8 +2020,6,5,4,0,28.3,1.33,0.1189,0.61,123,841,879,7,24.3,369,35,0,401,0.251,78.96000000000001,26.02,0.13,992,5.800000000000001,218,1.9000000000000001 +2020,6,5,5,0,28.5,1.3,0.1202,0.61,126,851,928,7,24.400000000000002,474,181,0,645,0.252,78.43,19.54,0.13,992,5.9,220,2.1 +2020,6,5,6,0,28.5,1.28,0.1231,0.61,126,844,906,8,24.3,428,336,0,738,0.251,78.23,22.57,0.13,991,5.9,219,2.2 +2020,6,5,7,0,28.3,1.28,0.1226,0.61,121,823,815,7,24.3,403,105,0,492,0.251,78.9,32.53,0.13,990,5.9,218,2.2 +2020,6,5,8,0,27.900000000000002,1.28,0.116,0.61,109,784,663,7,24.3,313,278,0,510,0.25,80.69,45.02,0.13,990,5.800000000000001,214,2 +2020,6,5,9,0,27.400000000000002,1.3,0.1158,0.61,95,703,463,7,24.5,194,370,0,388,0.249,84.13,58.39,0.13,990,5.800000000000001,206,1.6 +2020,6,5,10,0,26.900000000000002,1.32,0.1105,0.61,70,551,239,7,24.6,108,264,0,190,0.249,87.34,72.10000000000001,0.13,990,5.7,195,1.2000000000000002 +2020,6,5,11,0,25.900000000000002,1.34,0.10260000000000001,0.61,25,188,38,7,24.6,25,85,3,31,0.249,92.32000000000001,85.81,0.13,991,5.7,182,0.7000000000000001 +2020,6,5,12,0,25.5,1.36,0.09910000000000001,0.61,0,0,0,7,24.3,0,0,0,0,0.249,93.02,99.77,0.13,991,5.7,168,0.8 +2020,6,5,13,0,25.3,1.37,0.0995,0.61,0,0,0,7,24.1,0,0,0,0,0.249,93.22,113.36,0.13,992,5.7,162,0.8 +2020,6,5,14,0,25,1.37,0.1039,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.25,93.85000000000001,126.49000000000001,0.13,992,5.7,166,0.8 +2020,6,5,15,0,24.8,1.35,0.11470000000000001,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.251,94.49,138.67000000000002,0.13,993,5.800000000000001,179,0.7000000000000001 +2020,6,5,16,0,24.700000000000003,1.31,0.1325,0.61,0,0,0,7,23.8,0,0,0,0,0.251,95.03,148.70000000000002,0.13,993,6,194,0.8 +2020,6,5,17,0,24.6,1.28,0.152,0.61,0,0,0,6,23.900000000000002,0,0,0,0,0.251,95.97,153.93,0.13,992,6.1000000000000005,203,0.8 +2020,6,5,18,0,24.5,1.26,0.1705,0.61,0,0,0,6,24,0,0,0,0,0.252,96.98,151.57,0.13,991,6.2,208,0.8 +2020,6,5,19,0,24.5,1.22,0.1845,0.61,0,0,0,6,24.1,0,0,0,0,0.252,97.53,143.05,0.13,991,6.2,208,0.9 +2020,6,5,20,0,24.5,1.19,0.1816,0.61,0,0,0,6,24.1,0,0,0,0,0.252,97.92,131.53,0.13,991,6.2,202,0.9 +2020,6,5,21,0,24.5,1.2,0.18560000000000001,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.252,97.97,118.69,0.13,991,6.1000000000000005,192,1 +2020,6,5,22,0,24.5,1.21,0.1701,0.61,0,0,0,6,24.1,0,0,0,0,0.253,97.43,105.25,0.13,991,6.1000000000000005,185,1.2000000000000002 +2020,6,5,23,0,24.700000000000003,1.23,0.14020000000000002,0.61,0,0,0,6,24.1,0,0,0,0,0.253,96.73,91.53,0.13,992,5.9,178,1.3 +2020,6,6,0,0,25.400000000000002,1.25,0.13340000000000002,0.61,60,411,148,6,24.5,53,0,3,53,0.254,94.68,77.63,0.13,992,5.800000000000001,177,1.9000000000000001 +2020,6,6,1,0,25.900000000000002,1.27,0.1302,0.61,91,637,372,7,24.6,173,248,0,282,0.254,92.32000000000001,63.88,0.13,992,5.7,179,2.2 +2020,6,6,2,0,26.5,1.28,0.11900000000000001,0.61,106,754,587,7,24.200000000000003,270,296,0,459,0.254,87.15,50.34,0.13,993,5.7,183,2.3000000000000003 +2020,6,6,3,0,27.3,1.16,0.1426,0.61,127,792,756,7,23.700000000000003,348,57,0,394,0.254,80.84,37.410000000000004,0.13,992,5.7,191,2.2 +2020,6,6,4,0,27.900000000000002,1.1400000000000001,0.1448,0.61,136,822,873,7,23.5,357,31,0,384,0.254,76.84,26.12,0.13,992,5.7,199,2.2 +2020,6,6,5,0,28.200000000000003,1.11,0.14700000000000002,0.61,140,832,923,7,23.400000000000002,439,66,0,502,0.254,75.21000000000001,19.650000000000002,0.13,991,5.7,203,2.1 +2020,6,6,6,0,28.400000000000002,1.09,0.1448,0.61,138,828,902,7,23.400000000000002,452,245,0,678,0.253,74.44,22.63,0.13,991,5.7,206,1.9000000000000001 +2020,6,6,7,0,28.3,1.07,0.1448,0.61,132,805,811,8,23.400000000000002,362,47,0,401,0.253,74.96000000000001,32.55,0.13,990,5.6000000000000005,208,1.8 +2020,6,6,8,0,28,1.06,0.1444,0.61,122,758,658,8,23.5,323,228,0,484,0.253,76.55,45.01,0.13,989,5.7,208,1.6 +2020,6,6,9,0,27.700000000000003,1.05,0.1419,0.61,105,674,459,8,23.8,218,74,0,257,0.253,79.17,58.370000000000005,0.13,989,5.7,206,1.4000000000000001 +2020,6,6,10,0,27.1,1.05,0.1379,0.61,78,513,235,8,23.900000000000002,117,160,0,166,0.252,82.77,72.07000000000001,0.13,990,5.7,204,1.1 +2020,6,6,11,0,25.900000000000002,1.06,0.1333,0.61,27,145,37,8,24.1,25,31,3,27,0.252,89.65,85.76,0.13,990,5.7,205,0.8 +2020,6,6,12,0,25.6,1.06,0.12810000000000002,0.61,0,0,0,7,23.8,0,0,0,0,0.253,89.67,99.72,0.13,991,5.7,209,0.8 +2020,6,6,13,0,25.3,1.06,0.12250000000000001,0.61,0,0,0,8,23.6,0,0,0,0,0.254,90.45,113.29,0.13,992,5.7,213,0.9 +2020,6,6,14,0,25.1,1.06,0.11750000000000001,0.61,0,0,0,8,23.5,0,0,0,0,0.255,90.77,126.41,0.13,992,5.7,221,0.9 +2020,6,6,15,0,25.1,1.06,0.1139,0.61,0,0,0,8,23.3,0,0,0,0,0.256,89.75,138.58,0.13,992,5.7,232,0.8 +2020,6,6,16,0,25,1.06,0.113,0.61,0,0,0,4,23.1,0,0,0,0,0.257,89.37,148.59,0.13,992,5.7,244,0.8 +2020,6,6,17,0,24.900000000000002,1.06,0.11380000000000001,0.61,0,0,0,8,23,0,0,0,0,0.258,89.24,153.82,0.13,991,5.7,252,0.8 +2020,6,6,18,0,24.700000000000003,1.06,0.11420000000000001,0.61,0,0,0,8,22.900000000000002,0,0,0,0,0.258,89.99,151.5,0.13,991,5.7,256,0.7000000000000001 +2020,6,6,19,0,24.6,1.06,0.1153,0.61,0,0,0,8,22.900000000000002,0,0,0,0,0.258,90.22,143.01,0.13,990,5.7,258,0.7000000000000001 +2020,6,6,20,0,24.5,1.06,0.1173,0.61,0,0,0,4,22.900000000000002,0,0,0,0,0.258,90.57000000000001,131.52,0.13,990,5.6000000000000005,260,0.7000000000000001 +2020,6,6,21,0,24.5,1.07,0.1192,0.61,0,0,0,4,22.8,0,0,0,0,0.259,90.28,118.7,0.13,990,5.6000000000000005,257,0.7000000000000001 +2020,6,6,22,0,24.5,1.08,0.12100000000000001,0.61,0,0,0,3,22.8,0,0,0,0,0.259,90.02,105.28,0.13,990,5.6000000000000005,253,0.6000000000000001 +2020,6,6,23,0,24.8,1.08,0.1232,0.61,0,0,0,4,23.200000000000003,0,0,0,0,0.259,90.78,91.56,0.13,991,5.6000000000000005,250,0.5 +2020,6,7,0,0,26.3,1.09,0.126,0.61,59,414,147,8,23.900000000000002,72,10,3,74,0.258,86.81,77.67,0.13,991,5.6000000000000005,223,0.8 +2020,6,7,1,0,27.6,1.1,0.12990000000000002,0.61,92,634,370,7,24.1,166,291,0,294,0.258,81.23,63.940000000000005,0.13,991,5.6000000000000005,201,1.3 +2020,6,7,2,0,28.5,1.11,0.131,0.61,111,742,583,7,24.200000000000003,278,251,0,438,0.257,77.47,50.410000000000004,0.13,991,5.6000000000000005,202,1.6 +2020,6,7,3,0,29,1.08,0.1422,0.61,127,791,755,7,24.3,348,340,0,617,0.257,75.67,37.49,0.13,991,5.7,207,1.8 +2020,6,7,4,0,29.200000000000003,1.09,0.14650000000000002,0.61,136,819,871,7,24.3,437,240,0,653,0.257,75.14,26.22,0.13,990,5.800000000000001,212,1.9000000000000001 +2020,6,7,5,0,29.200000000000003,1.09,0.15030000000000002,0.61,141,828,921,7,24.400000000000002,440,332,0,752,0.257,75.31,19.75,0.13,990,5.800000000000001,219,2 +2020,6,7,6,0,29.1,1.03,0.1945,0.61,160,792,892,7,24.400000000000002,438,300,0,715,0.257,75.67,22.69,0.13,989,5.9,224,2 +2020,6,7,7,0,28.8,1.03,0.1991,0.61,156,765,800,6,24.400000000000002,411,176,0,559,0.257,77.06,32.57,0.13,988,5.9,226,1.9000000000000001 +2020,6,7,8,0,28.400000000000002,1.02,0.19690000000000002,0.61,143,715,649,7,24.6,309,297,0,519,0.256,79.69,45,0.13,988,5.9,226,1.7000000000000002 +2020,6,7,9,0,28,1.05,0.2051,0.61,126,617,450,8,24.700000000000003,201,335,0,377,0.255,82.25,58.35,0.13,988,5.9,229,1.4000000000000001 +2020,6,7,10,0,27.3,1.07,0.19970000000000002,0.61,91,449,229,3,24.8,107,287,0,195,0.255,86.06,72.03,0.13,988,5.800000000000001,234,1 +2020,6,7,11,0,26.5,1.09,0.18580000000000002,0.61,28,107,36,8,24.6,28,107,5,36,0.255,89.58,85.72,0.13,989,5.7,243,0.7000000000000001 +2020,6,7,12,0,26.1,1.1,0.17470000000000002,0.61,0,0,0,3,24.3,0,0,0,0,0.255,89.67,99.66,0.13,990,5.7,252,0.7000000000000001 +2020,6,7,13,0,26,1.12,0.1637,0.61,0,0,0,7,24.1,0,0,0,0,0.256,89.08,113.23,0.13,990,5.6000000000000005,261,0.7000000000000001 +2020,6,7,14,0,25.8,1.1400000000000001,0.1517,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.256,89.31,126.34,0.13,991,5.6000000000000005,269,0.7000000000000001 +2020,6,7,15,0,25.6,1.16,0.14200000000000002,0.61,0,0,0,6,23.8,0,0,0,0,0.257,89.63,138.49,0.13,991,5.5,277,0.8 +2020,6,7,16,0,25.400000000000002,1.18,0.1359,0.61,0,0,0,6,23.700000000000003,0,0,0,0,0.257,90.23,148.49,0.13,991,5.5,281,0.8 +2020,6,7,17,0,25.200000000000003,1.2,0.13140000000000002,0.61,0,0,0,6,23.6,0,0,0,0,0.257,90.95,153.73,0.13,991,5.5,283,0.8 +2020,6,7,18,0,25,1.23,0.1291,0.61,0,0,0,6,23.5,0,0,0,0,0.257,91.62,151.43,0.13,990,5.5,286,0.8 +2020,6,7,19,0,24.900000000000002,1.25,0.1268,0.61,0,0,0,7,23.5,0,0,0,0,0.256,91.94,142.99,0.13,990,5.4,291,0.7000000000000001 +2020,6,7,20,0,24.700000000000003,1.28,0.1241,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.256,92.76,131.52,0.13,989,5.4,300,0.7000000000000001 +2020,6,7,21,0,24.6,1.31,0.12390000000000001,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.256,93.02,118.72,0.13,989,5.4,315,0.7000000000000001 +2020,6,7,22,0,24.6,1.33,0.1254,0.61,0,0,0,8,23.3,0,0,0,0,0.256,92.76,105.3,0.13,990,5.300000000000001,341,0.6000000000000001 +2020,6,7,23,0,24.700000000000003,1.34,0.1258,0.61,0,0,0,8,23.6,0,0,0,0,0.256,93.38,91.60000000000001,0.13,990,5.300000000000001,24,0.5 +2020,6,8,0,0,25.6,1.37,0.1242,0.61,58,425,148,0,24.1,58,425,0,148,0.255,91.39,77.72,0.13,991,5.300000000000001,63,0.7000000000000001 +2020,6,8,1,0,27,1.4000000000000001,0.1183,0.61,86,652,372,3,24,180,114,3,230,0.256,83.76,63.99,0.13,991,5.300000000000001,97,0.8 +2020,6,8,2,0,28.400000000000002,1.42,0.1174,0.61,103,759,586,0,23.6,103,759,0,586,0.255,75.47,50.47,0.13,991,5.300000000000001,108,0.9 +2020,6,8,3,0,29.3,1.2,0.1685,0.61,138,775,752,8,23.5,272,538,0,698,0.255,71.02,37.57,0.13,991,5.300000000000001,112,0.9 +2020,6,8,4,0,30,1.21,0.1729,0.61,147,805,869,7,23.5,442,201,0,623,0.256,68.06,26.32,0.13,991,5.300000000000001,113,0.8 +2020,6,8,5,0,30.5,1.21,0.182,0.61,154,811,917,8,23.400000000000002,394,453,0,820,0.256,66,19.85,0.13,990,5.4,106,0.6000000000000001 +2020,6,8,6,0,30.700000000000003,1.2,0.18630000000000002,0.61,155,803,896,8,23.400000000000002,383,427,0,777,0.255,65.23,22.740000000000002,0.13,989,5.4,80,0.5 +2020,6,8,7,0,30.700000000000003,1.19,0.1932,0.61,152,774,804,8,23.400000000000002,327,454,0,709,0.255,65.24,32.58,0.13,989,5.4,46,0.5 +2020,6,8,8,0,30.400000000000002,1.19,0.2011,0.61,143,719,651,8,23.5,288,378,0,555,0.255,66.72,44.99,0.13,989,5.300000000000001,19,0.5 +2020,6,8,9,0,30.3,1.21,0.20600000000000002,0.61,125,624,452,3,24.1,218,71,0,255,0.255,69.65,58.32,0.13,988,5.300000000000001,41,0.4 +2020,6,8,10,0,29.6,1.23,0.202,0.61,90,456,231,1,24,90,456,0,231,0.255,71.86,71.99,0.13,989,5.300000000000001,91,0.5 +2020,6,8,11,0,28.5,1.24,0.2046,0.61,28,107,36,1,24.200000000000003,28,107,0,36,0.256,77.57000000000001,85.68,0.13,989,5.300000000000001,138,0.5 +2020,6,8,12,0,27.900000000000002,1.25,0.2094,0.61,0,0,0,0,23.900000000000002,0,0,0,0,0.257,78.95,99.61,0.13,990,5.300000000000001,155,0.6000000000000001 +2020,6,8,13,0,27.400000000000002,1.26,0.2089,0.61,0,0,0,1,23.8,0,0,0,0,0.257,80.93,113.16,0.13,991,5.300000000000001,167,0.6000000000000001 +2020,6,8,14,0,27.1,1.26,0.2078,0.61,0,0,0,1,23.700000000000003,0,0,0,0,0.257,81.92,126.26,0.13,992,5.300000000000001,178,0.6000000000000001 +2020,6,8,15,0,26.700000000000003,1.26,0.2147,0.61,0,0,0,0,23.700000000000003,0,0,0,0,0.257,83.7,138.4,0.13,992,5.300000000000001,200,0.6000000000000001 +2020,6,8,16,0,26.400000000000002,1.25,0.21730000000000002,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.257,85.04,148.39000000000001,0.13,992,5.300000000000001,210,0.6000000000000001 +2020,6,8,17,0,26.1,1.24,0.21960000000000002,0.61,0,0,0,0,23.6,0,0,0,0,0.257,86.2,153.64000000000001,0.13,991,5.300000000000001,212,0.6000000000000001 +2020,6,8,18,0,25.900000000000002,1.23,0.2232,0.61,0,0,0,8,23.5,0,0,0,0,0.256,86.89,151.37,0.13,991,5.2,210,0.5 +2020,6,8,19,0,25.700000000000003,1.22,0.2242,0.61,0,0,0,7,23.5,0,0,0,0,0.256,87.57000000000001,142.96,0.13,990,5.1000000000000005,211,0.4 +2020,6,8,20,0,25.5,1.22,0.22240000000000001,0.61,0,0,0,8,23.5,0,0,0,0,0.256,88.57000000000001,131.52,0.13,990,5,226,0.30000000000000004 +2020,6,8,21,0,25.200000000000003,1.22,0.2184,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.255,89.64,118.73,0.13,990,5,308,0.30000000000000004 +2020,6,8,22,0,24.900000000000002,1.22,0.21530000000000002,0.61,0,0,0,0,23.3,0,0,0,0,0.255,90.83,105.33,0.13,990,4.9,352,0.4 +2020,6,8,23,0,25,1.22,0.2154,0.61,0,0,0,0,23.8,0,0,0,0,0.254,93.05,91.64,0.13,990,4.9,96,0.5 +2020,6,9,0,0,26.3,1.22,0.2199,0.61,72,323,140,3,24.400000000000002,72,220,3,118,0.254,89.52,77.77,0.13,991,4.9,134,1 +2020,6,9,1,0,27.6,1.21,0.22310000000000002,0.61,117,553,359,8,24.8,128,487,0,341,0.254,84.54,64.05,0.13,991,4.9,137,1.6 +2020,6,9,2,0,28.6,1.21,0.222,0.61,143,674,571,0,25,143,674,0,571,0.254,80.78,50.54,0.13,991,4.9,138,1.8 +2020,6,9,3,0,29.5,1.2,0.1928,0.61,148,760,749,0,25.1,148,760,0,749,0.255,77.28,37.65,0.13,991,4.9,137,1.8 +2020,6,9,4,0,30.1,1.21,0.19340000000000002,0.61,156,794,867,0,25.200000000000003,156,794,0,867,0.257,74.93,26.41,0.13,990,4.9,137,1.7000000000000002 +2020,6,9,5,0,30.5,1.21,0.19870000000000002,0.61,162,804,918,0,25.200000000000003,162,804,0,918,0.257,73.46000000000001,19.94,0.13,989,4.9,140,1.7000000000000002 +2020,6,9,6,0,30.700000000000003,1.21,0.2626,0.61,187,758,886,0,25.200000000000003,187,758,0,886,0.258,72.52,22.79,0.13,989,5,146,1.6 +2020,6,9,7,0,30.5,1.2,0.26580000000000004,0.61,181,729,795,0,25.200000000000003,181,729,0,795,0.258,73.18,32.59,0.13,988,5.1000000000000005,152,1.6 +2020,6,9,8,0,30.1,1.21,0.24810000000000001,0.61,160,686,645,3,25.400000000000002,303,58,0,344,0.258,75.83,44.980000000000004,0.13,988,5.2,158,1.5 +2020,6,9,9,0,29.6,1.22,0.24830000000000002,0.61,137,591,447,3,25.700000000000003,214,271,0,356,0.258,79.48,58.29,0.13,988,5.300000000000001,157,1.3 +2020,6,9,10,0,28.6,1.22,0.2587,0.61,101,407,227,6,25.6,104,6,0,106,0.258,83.69,71.95,0.13,988,5.4,151,1.3 +2020,6,9,11,0,27.400000000000002,1.22,0.2504,0.61,28,85,34,7,25.900000000000002,19,0,3,19,0.259,91.28,85.63,0.13,989,5.5,146,0.9 +2020,6,9,12,0,27,1.23,0.25320000000000004,0.61,0,0,0,6,25.6,0,0,0,0,0.259,92.07000000000001,99.55,0.13,990,5.6000000000000005,141,0.9 +2020,6,9,13,0,26.6,1.23,0.2524,0.61,0,0,0,9,25.5,0,0,0,0,0.26,93.54,113.10000000000001,0.13,990,5.7,132,1 +2020,6,9,14,0,26.400000000000002,1.24,0.24880000000000002,0.61,0,0,0,6,25.400000000000002,0,0,0,0,0.261,94.11,126.19,0.13,991,5.800000000000001,124,1 +2020,6,9,15,0,26.1,1.24,0.2485,0.61,0,0,0,9,25.200000000000003,0,0,0,0,0.262,95.02,138.32,0.13,991,5.800000000000001,116,1 +2020,6,9,16,0,25.8,1.25,0.24280000000000002,0.61,0,0,0,9,25.1,0,0,0,0,0.263,95.75,148.3,0.13,991,5.800000000000001,112,1 +2020,6,9,17,0,25.5,1.25,0.23600000000000002,0.61,0,0,0,6,24.900000000000002,0,0,0,0,0.263,96.63,153.55,0.13,991,5.800000000000001,109,0.9 +2020,6,9,18,0,25.3,1.25,0.2291,0.61,0,0,0,7,24.8,0,0,0,0,0.262,96.86,151.32,0.13,990,5.800000000000001,112,0.9 +2020,6,9,19,0,25.1,1.26,0.21830000000000002,0.61,0,0,0,6,24.6,0,0,0,0,0.262,97.21000000000001,142.94,0.13,989,5.800000000000001,123,0.9 +2020,6,9,20,0,24.900000000000002,1.27,0.1971,0.61,0,0,0,6,24.6,0,0,0,0,0.262,98.11,131.52,0.13,989,5.7,138,1 +2020,6,9,21,0,24.8,1.28,0.1773,0.61,0,0,0,7,24.5,0,0,0,0,0.262,98.39,118.75,0.13,989,5.7,145,1 +2020,6,9,22,0,24.8,1.3,0.1577,0.61,0,0,0,7,24.5,0,0,0,0,0.261,98.17,105.36,0.13,989,5.6000000000000005,144,1.1 +2020,6,9,23,0,25,1.31,0.14170000000000002,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.259,98.38,91.68,0.13,989,5.5,137,1 +2020,6,10,0,0,26.1,1.32,0.1398,0.61,60,402,145,8,25.5,73,197,3,114,0.259,96.62,77.81,0.13,990,5.6000000000000005,121,1.3 +2020,6,10,1,0,26.900000000000002,1.33,0.14070000000000002,0.61,93,625,367,7,25.900000000000002,107,0,0,107,0.26,94.05,64.1,0.13,991,5.6000000000000005,125,1.5 +2020,6,10,2,0,27.700000000000003,1.37,0.1323,0.61,109,742,580,7,25.900000000000002,230,22,0,244,0.261,89.84,50.6,0.13,991,5.6000000000000005,130,1.6 +2020,6,10,3,0,28.400000000000002,1.23,0.1569,0.61,132,781,750,7,25.200000000000003,369,95,0,444,0.26,82.89,37.72,0.13,991,5.6000000000000005,144,1.6 +2020,6,10,4,0,29.1,1.26,0.15460000000000002,0.61,138,815,868,8,24.900000000000002,359,456,0,767,0.26,78.24,26.490000000000002,0.13,990,5.6000000000000005,156,1.5 +2020,6,10,5,0,29.700000000000003,1.27,0.1557,0.61,142,827,919,8,24.8,450,295,0,727,0.259,74.84,20.02,0.13,990,5.6000000000000005,166,1.4000000000000001 +2020,6,10,6,0,30,1.28,0.1821,0.61,152,805,894,8,24.6,439,294,0,710,0.259,72.93,22.830000000000002,0.13,989,5.6000000000000005,175,1.4000000000000001 +2020,6,10,7,0,29.900000000000002,1.28,0.1913,0.61,150,774,802,3,24.5,389,299,3,640,0.259,72.96000000000001,32.59,0.13,989,5.7,184,1.4000000000000001 +2020,6,10,8,0,29.6,1.28,0.19640000000000002,0.61,140,721,651,8,24.5,324,220,0,479,0.259,74.33,44.96,0.13,988,5.7,188,1.4000000000000001 +2020,6,10,9,0,29.200000000000003,1.3,0.20040000000000002,0.61,122,629,453,7,25.1,218,247,0,347,0.259,78.61,58.26,0.13,988,5.7,186,1.1 +2020,6,10,10,0,28.400000000000002,1.32,0.21080000000000002,0.61,91,451,231,7,24.900000000000002,111,25,0,118,0.259,81.47,71.91,0.13,988,5.7,178,1.1 +2020,6,10,11,0,27.3,1.33,0.21080000000000002,0.61,28,111,37,7,25.3,21,0,3,21,0.26,88.85000000000001,85.58,0.13,989,5.7,173,0.8 +2020,6,10,12,0,27,1.35,0.2131,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.26,88.19,99.5,0.13,990,5.7,158,0.8 +2020,6,10,13,0,26.8,1.36,0.2154,0.61,0,0,0,7,24.6,0,0,0,0,0.26,87.66,113.04,0.13,990,5.7,130,0.8 +2020,6,10,14,0,26.5,1.37,0.2197,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.261,88.3,126.12,0.13,991,5.7,101,0.8 +2020,6,10,15,0,26.200000000000003,1.37,0.2245,0.61,0,0,0,8,24.3,0,0,0,0,0.262,89.38,138.24,0.13,991,5.7,75,0.7000000000000001 +2020,6,10,16,0,25.900000000000002,1.37,0.22920000000000001,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.262,90.53,148.22,0.13,991,5.7,56,0.7000000000000001 +2020,6,10,17,0,25.6,1.37,0.231,0.61,0,0,0,8,24.1,0,0,0,0,0.262,91.4,153.47,0.13,990,5.7,41,0.7000000000000001 +2020,6,10,18,0,25.3,1.37,0.2351,0.61,0,0,0,0,23.900000000000002,0,0,0,0,0.262,92.21000000000001,151.27,0.13,989,5.7,34,0.6000000000000001 +2020,6,10,19,0,25.1,1.37,0.2404,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.261,92.83,142.93,0.13,989,5.7,37,0.6000000000000001 +2020,6,10,20,0,24.8,1.36,0.2461,0.61,0,0,0,8,23.8,0,0,0,0,0.261,94.15,131.53,0.13,989,5.7,45,0.6000000000000001 +2020,6,10,21,0,24.6,1.36,0.24580000000000002,0.61,0,0,0,4,23.700000000000003,0,0,0,0,0.26,95.02,118.78,0.13,989,5.7,52,0.7000000000000001 +2020,6,10,22,0,24.400000000000002,1.36,0.2421,0.61,0,0,0,4,23.700000000000003,0,0,0,0,0.26,95.72,105.4,0.13,989,5.7,62,0.8 +2020,6,10,23,0,24.700000000000003,1.37,0.2351,0.61,0,0,0,4,23.900000000000002,0,0,0,0,0.26,95.53,91.72,0.13,990,5.7,68,0.9 +2020,6,11,0,0,25.6,1.3800000000000001,0.22890000000000002,0.61,71,318,138,7,24.200000000000003,73,31,3,80,0.259,92.24,77.86,0.13,990,5.6000000000000005,74,1.7000000000000002 +2020,6,11,1,0,26.5,1.3800000000000001,0.2247,0.61,116,552,356,8,24.5,177,182,0,257,0.258,88.75,64.16,0.13,990,5.5,85,1.9000000000000001 +2020,6,11,2,0,27.700000000000003,1.3800000000000001,0.22540000000000002,0.61,142,670,567,0,24.6,142,670,0,567,0.258,83.11,50.67,0.13,990,5.5,88,2 +2020,6,11,3,0,28.5,1.43,0.33640000000000003,0.61,198,669,726,3,24.6,315,413,0,641,0.257,79.38,37.800000000000004,0.13,990,5.5,92,1.6 +2020,6,11,4,0,29.1,1.42,0.3426,0.61,212,704,842,8,24.5,359,450,0,762,0.256,76.37,26.580000000000002,0.13,990,5.6000000000000005,96,1 +2020,6,11,5,0,29.5,1.41,0.3385,0.61,216,721,893,8,24.400000000000002,399,408,0,782,0.255,74.19,20.1,0.13,989,5.6000000000000005,116,0.6000000000000001 +2020,6,11,6,0,29.5,1.36,0.26890000000000003,0.61,188,753,882,7,24.400000000000002,457,213,0,653,0.254,73.98,22.86,0.13,989,5.6000000000000005,160,0.5 +2020,6,11,7,0,29.5,1.36,0.2655,0.61,179,729,794,7,24.3,401,250,0,611,0.254,73.87,32.59,0.13,988,5.5,203,0.5 +2020,6,11,8,0,29.3,1.37,0.2615,0.61,163,679,644,7,24.6,329,163,0,444,0.254,75.86,44.94,0.13,987,5.5,203,0.6000000000000001 +2020,6,11,9,0,29.200000000000003,1.3800000000000001,0.2601,0.61,139,586,448,7,24.8,221,221,0,338,0.254,77.33,58.230000000000004,0.13,987,5.5,147,0.6000000000000001 +2020,6,11,10,0,28.400000000000002,1.37,0.2665,0.61,101,408,228,6,24.900000000000002,11,0,0,11,0.254,81.31,71.87,0.13,988,5.5,125,0.6000000000000001 +2020,6,11,11,0,27.5,1.37,0.2679,0.61,28,89,35,6,24.900000000000002,4,0,3,4,0.256,85.81,85.54,0.13,988,5.5,128,0.6000000000000001 +2020,6,11,12,0,27.1,1.37,0.2813,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.257,86.89,99.44,0.13,989,5.5,130,0.6000000000000001 +2020,6,11,13,0,26.700000000000003,1.37,0.2928,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.259,89,112.98,0.13,990,5.6000000000000005,132,0.7000000000000001 +2020,6,11,14,0,26.400000000000002,1.36,0.29810000000000003,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.259,90.31,126.05,0.13,990,5.6000000000000005,132,0.7000000000000001 +2020,6,11,15,0,26.200000000000003,1.36,0.3043,0.61,0,0,0,8,24.6,0,0,0,0,0.26,90.77,138.16,0.13,990,5.6000000000000005,131,0.7000000000000001 +2020,6,11,16,0,26,1.35,0.3094,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.26,90.9,148.13,0.13,990,5.6000000000000005,127,0.6000000000000001 +2020,6,11,17,0,25.700000000000003,1.35,0.3074,0.61,0,0,0,8,24.200000000000003,0,0,0,0,0.26,91.47,153.4,0.13,989,5.6000000000000005,120,0.5 +2020,6,11,18,0,25.400000000000002,1.36,0.3034,0.61,0,0,0,8,24,0,0,0,0,0.261,92.03,151.23,0.13,989,5.5,97,0.4 +2020,6,11,19,0,25.1,1.36,0.3022,0.61,0,0,0,3,23.900000000000002,0,0,0,0,0.261,92.88,142.92000000000002,0.13,988,5.5,74,0.4 +2020,6,11,20,0,24.900000000000002,1.36,0.30260000000000004,0.61,0,0,0,0,23.700000000000003,0,0,0,0,0.261,93.3,131.54,0.13,988,5.5,69,0.5 +2020,6,11,21,0,24.700000000000003,1.35,0.30820000000000003,0.61,0,0,0,3,23.6,0,0,0,0,0.261,93.79,118.8,0.13,988,5.5,68,0.5 +2020,6,11,22,0,24.6,1.35,0.3109,0.61,0,0,0,3,23.5,0,0,0,0,0.261,93.81,105.43,0.13,988,5.5,66,0.5 +2020,6,11,23,0,24.8,1.36,0.3058,0.61,0,0,0,0,23.8,0,0,0,0,0.26,94.46000000000001,91.76,0.13,989,5.5,56,0.4 +2020,6,12,0,0,26,1.36,0.29860000000000003,0.61,78,266,133,3,24.200000000000003,75,72,3,90,0.259,89.66,77.91,0.13,990,5.5,92,0.5 +2020,6,12,1,0,27.1,1.3800000000000001,0.2866,0.61,130,503,349,0,24.400000000000002,130,503,0,349,0.259,85.13,64.21000000000001,0.13,990,5.5,148,0.5 +2020,6,12,2,0,28,1.3900000000000001,0.2712,0.61,156,638,560,0,24.5,156,638,0,560,0.258,81.21000000000001,50.730000000000004,0.13,990,5.5,198,0.4 +2020,6,12,3,0,28.700000000000003,1.41,0.2737,0.61,175,705,732,0,24.5,175,705,0,732,0.257,78.12,37.87,0.13,990,5.6000000000000005,269,0.30000000000000004 +2020,6,12,4,0,29.200000000000003,1.4000000000000001,0.27590000000000003,0.61,187,741,849,3,24.5,441,192,0,613,0.257,75.79,26.66,0.13,989,5.6000000000000005,273,0.5 +2020,6,12,5,0,29.3,1.4000000000000001,0.2805,0.61,193,751,898,8,24.6,430,60,0,486,0.256,75.71000000000001,20.17,0.13,988,5.800000000000001,261,1 +2020,6,12,6,0,29.1,1.4000000000000001,0.30670000000000003,0.61,201,731,875,3,24.8,410,52,0,458,0.256,77.5,22.89,0.13,988,5.800000000000001,256,1.4000000000000001 +2020,6,12,7,0,28.6,1.41,0.3173,0.61,197,698,785,8,25,397,90,0,473,0.256,80.87,32.58,0.13,987,5.9,256,1.6 +2020,6,12,8,0,28.200000000000003,1.4000000000000001,0.3129,0.61,179,645,636,8,25.400000000000002,270,29,0,291,0.256,84.73,44.92,0.13,987,6,260,1.7000000000000002 +2020,6,12,9,0,27.700000000000003,1.3900000000000001,0.3391,0.61,159,531,439,7,25.6,200,32,0,217,0.257,88.11,58.19,0.13,987,6,264,1.5 +2020,6,12,10,0,26.900000000000002,1.3900000000000001,0.3422,0.61,112,356,223,6,25.400000000000002,94,0,0,94,0.257,91.36,71.83,0.13,988,6,272,1.3 +2020,6,12,11,0,26,1.3900000000000001,0.3095,0.61,28,77,34,6,25.3,18,0,3,18,0.258,95.76,85.49,0.13,989,6,280,0.9 +2020,6,12,12,0,25.6,1.3900000000000001,0.2805,0.61,0,0,0,6,25,0,0,0,0,0.258,96.71000000000001,99.39,0.13,989,5.9,290,0.9 +2020,6,12,13,0,25.3,1.4000000000000001,0.2464,0.61,0,0,0,6,24.900000000000002,0,0,0,0,0.26,97.46000000000001,112.91,0.13,990,5.800000000000001,299,0.9 +2020,6,12,14,0,25.1,1.4000000000000001,0.216,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.261,97.45,125.98,0.13,991,5.7,306,1 +2020,6,12,15,0,24.900000000000002,1.4000000000000001,0.19870000000000002,0.61,0,0,0,6,24.400000000000002,0,0,0,0,0.262,97.3,138.09,0.13,991,5.6000000000000005,309,0.9 +2020,6,12,16,0,24.6,1.41,0.1822,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.262,97.56,148.06,0.13,990,5.6000000000000005,307,0.9 +2020,6,12,17,0,24.400000000000002,1.42,0.164,0.61,0,0,0,6,23.900000000000002,0,0,0,0,0.262,97.29,153.33,0.13,990,5.5,301,0.8 +2020,6,12,18,0,24.3,1.43,0.1531,0.61,0,0,0,6,23.700000000000003,0,0,0,0,0.261,96.45,151.20000000000002,0.13,989,5.4,295,0.8 +2020,6,12,19,0,24.3,1.43,0.1464,0.61,0,0,0,6,23.5,0,0,0,0,0.261,95.41,142.92000000000002,0.13,988,5.4,286,0.7000000000000001 +2020,6,12,20,0,24.3,1.44,0.1398,0.61,0,0,0,6,23.400000000000002,0,0,0,0,0.26,94.5,131.55,0.13,988,5.300000000000001,274,0.6000000000000001 +2020,6,12,21,0,24.200000000000003,1.44,0.1371,0.61,0,0,0,6,23.200000000000003,0,0,0,0,0.26,93.98,118.83,0.13,988,5.300000000000001,267,0.6000000000000001 +2020,6,12,22,0,24.1,1.45,0.1341,0.61,0,0,0,6,23,0,0,0,0,0.26,93.42,105.47,0.13,988,5.300000000000001,268,0.6000000000000001 +2020,6,12,23,0,24.3,1.46,0.12860000000000002,0.61,0,0,0,6,23.3,0,0,0,0,0.26,93.9,91.8,0.13,989,5.300000000000001,266,0.5 +2020,6,13,0,0,25.6,1.49,0.1187,0.61,55,429,145,7,23.6,75,60,3,87,0.26,88.9,77.96000000000001,0.13,989,5.4,250,0.7000000000000001 +2020,6,13,1,0,27.700000000000003,1.51,0.11280000000000001,0.61,84,655,368,7,23.3,157,24,0,168,0.26,77.05,64.27,0.13,990,5.4,230,0.9 +2020,6,13,2,0,28.8,1.49,0.11570000000000001,0.61,102,757,580,7,23,269,66,0,311,0.26,71.01,50.79,0.13,990,5.5,233,1.1 +2020,6,13,3,0,29.200000000000003,1.44,0.13,0.61,119,802,751,8,23.1,234,12,0,243,0.259,69.62,37.93,0.13,990,5.6000000000000005,235,1.5 +2020,6,13,4,0,29.5,1.43,0.1384,0.61,129,826,867,7,23.400000000000002,433,244,0,651,0.259,69.78,26.73,0.13,990,5.7,236,1.8 +2020,6,13,5,0,29.700000000000003,1.41,0.1501,0.61,137,830,916,7,23.8,447,302,0,730,0.258,70.8,20.23,0.13,989,5.800000000000001,238,2 +2020,6,13,6,0,29.5,1.3900000000000001,0.1885,0.61,154,801,891,7,24.200000000000003,440,287,0,704,0.259,73.06,22.92,0.13,989,5.800000000000001,238,2 +2020,6,13,7,0,29.1,1.37,0.2038,0.61,154,766,799,8,24.400000000000002,386,307,0,645,0.259,75.64,32.58,0.13,988,5.9,238,2 +2020,6,13,8,0,28.5,1.36,0.21130000000000002,0.61,145,711,648,7,24.6,309,301,0,522,0.259,79.53,44.89,0.13,988,5.9,238,1.8 +2020,6,13,9,0,27.900000000000002,1.37,0.21530000000000002,0.61,126,618,452,8,24.900000000000002,185,413,0,403,0.259,83.75,58.160000000000004,0.13,988,5.9,237,1.4000000000000001 +2020,6,13,10,0,27.3,1.3900000000000001,0.2124,0.61,91,453,233,7,24.8,38,0,0,38,0.259,86.21000000000001,71.79,0.13,988,5.800000000000001,238,1.1 +2020,6,13,11,0,26.400000000000002,1.4000000000000001,0.1993,0.61,28,126,38,6,24.900000000000002,9,0,3,9,0.26,91.69,85.44,0.13,989,5.800000000000001,234,0.7000000000000001 +2020,6,13,12,0,25.900000000000002,1.41,0.1879,0.61,0,0,0,7,24.6,0,0,0,0,0.261,92.51,99.33,0.13,989,5.800000000000001,226,0.7000000000000001 +2020,6,13,13,0,25.6,1.42,0.1791,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.262,93.2,112.85000000000001,0.13,990,5.7,214,0.7000000000000001 +2020,6,13,14,0,25.3,1.42,0.1726,0.61,0,0,0,0,24.3,0,0,0,0,0.263,94.10000000000001,125.92,0.13,990,5.7,204,0.7000000000000001 +2020,6,13,15,0,25.1,1.42,0.1693,0.61,0,0,0,8,24.1,0,0,0,0,0.263,94.35000000000001,138.02,0.13,990,5.7,206,0.7000000000000001 +2020,6,13,16,0,25,1.41,0.16640000000000002,0.61,0,0,0,8,24,0,0,0,0,0.264,94.06,147.99,0.13,990,5.7,215,0.7000000000000001 +2020,6,13,17,0,24.8,1.41,0.1628,0.61,0,0,0,8,23.8,0,0,0,0,0.264,94.2,153.28,0.13,990,5.7,219,0.6000000000000001 +2020,6,13,18,0,24.6,1.41,0.1643,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.263,94.53,151.17000000000002,0.13,989,5.7,222,0.6000000000000001 +2020,6,13,19,0,24.5,1.4000000000000001,0.1668,0.61,0,0,0,7,23.6,0,0,0,0,0.262,94.68,142.92000000000002,0.13,989,5.7,226,0.7000000000000001 +2020,6,13,20,0,24.3,1.4000000000000001,0.1676,0.61,0,0,0,7,23.6,0,0,0,0,0.262,95.65,131.57,0.13,989,5.800000000000001,231,0.7000000000000001 +2020,6,13,21,0,24.200000000000003,1.3900000000000001,0.1721,0.61,0,0,0,7,23.6,0,0,0,0,0.261,96.26,118.86,0.13,989,5.800000000000001,226,0.8 +2020,6,13,22,0,24.1,1.3900000000000001,0.17250000000000001,0.61,0,0,0,7,23.6,0,0,0,0,0.261,97.01,105.5,0.13,990,5.800000000000001,214,0.8 +2020,6,13,23,0,24.5,1.3900000000000001,0.1668,0.61,0,0,0,8,24,0,0,0,0,0.26,97.11,91.85000000000001,0.13,990,5.800000000000001,204,1 +2020,6,14,0,0,25.900000000000002,1.4000000000000001,0.16240000000000002,0.61,62,374,140,3,24.700000000000003,71,199,3,113,0.26,92.83,78.01,0.13,991,5.800000000000001,198,1.7000000000000002 +2020,6,14,1,0,27,1.42,0.1554,0.61,96,609,360,7,24.900000000000002,148,382,0,313,0.261,88.09,64.32000000000001,0.13,991,5.800000000000001,197,2.1 +2020,6,14,2,0,28,1.43,0.1517,0.61,115,724,572,7,24.8,234,424,0,502,0.261,82.98,50.85,0.13,991,5.800000000000001,194,2.2 +2020,6,14,3,0,28.8,1.44,0.18230000000000002,0.61,140,763,742,3,24.900000000000002,295,457,0,655,0.261,79.37,38,0.13,991,5.800000000000001,192,2.1 +2020,6,14,4,0,29.400000000000002,1.42,0.1882,0.61,151,793,858,7,24.900000000000002,411,334,0,709,0.26,76.82000000000001,26.8,0.13,990,5.800000000000001,193,2 +2020,6,14,5,0,29.8,1.3900000000000001,0.19770000000000001,0.61,159,799,908,8,24.900000000000002,392,460,0,823,0.26,75.04,20.29,0.13,989,5.9,195,1.9000000000000001 +2020,6,14,6,0,29.900000000000002,1.18,0.1458,0.61,137,825,896,7,24.900000000000002,451,241,0,673,0.26,74.53,22.93,0.13,989,6,199,1.8 +2020,6,14,7,0,29.8,1.17,0.15280000000000002,0.61,134,797,806,8,24.8,410,172,0,555,0.259,74.8,32.56,0.13,988,6.1000000000000005,203,1.8 +2020,6,14,8,0,29.5,1.16,0.15710000000000002,0.61,126,747,655,3,24.900000000000002,326,205,0,471,0.259,76.29,44.86,0.13,988,6.1000000000000005,205,1.7000000000000002 +2020,6,14,9,0,28.900000000000002,1.17,0.1757,0.61,115,645,456,3,25.3,216,262,0,355,0.259,80.79,58.120000000000005,0.13,988,6.2,206,1.5 +2020,6,14,10,0,28.1,1.17,0.1867,0.61,88,468,235,3,25.400000000000002,111,261,0,193,0.259,85.34,71.74,0.13,989,6.2,204,1.2000000000000002 +2020,6,14,11,0,27,1.1500000000000001,0.1825,0.61,29,123,39,0,25.700000000000003,29,123,0,39,0.259,92.64,85.39,0.13,990,6.2,203,0.8 +2020,6,14,12,0,26.5,1.1400000000000001,0.1817,0.61,0,0,0,3,25.5,0,0,0,0,0.26,94.34,99.28,0.13,990,6.2,199,0.9 +2020,6,14,13,0,26.200000000000003,1.12,0.17200000000000001,0.61,0,0,0,0,25.400000000000002,0,0,0,0,0.261,95.24,112.8,0.13,991,6.1000000000000005,193,0.9 +2020,6,14,14,0,26,1.12,0.15660000000000002,0.61,0,0,0,1,25.200000000000003,0,0,0,0,0.262,95.5,125.85000000000001,0.13,991,6,187,0.9 +2020,6,14,15,0,25.700000000000003,1.1,0.1489,0.61,0,0,0,8,25.1,0,0,0,0,0.263,96.28,137.95000000000002,0.13,991,5.9,178,0.9 +2020,6,14,16,0,25.5,1.09,0.1497,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.263,96.53,147.92000000000002,0.13,991,5.9,169,0.8 +2020,6,14,17,0,25.400000000000002,1.07,0.1509,0.61,0,0,0,3,24.8,0,0,0,0,0.263,96.28,153.22,0.13,991,5.9,181,0.8 +2020,6,14,18,0,25.3,1.07,0.1487,0.61,0,0,0,0,24.6,0,0,0,0,0.262,96.05,151.15,0.13,991,5.9,201,0.8 +2020,6,14,19,0,25.1,1.08,0.1438,0.61,0,0,0,4,24.5,0,0,0,0,0.261,96.54,142.92000000000002,0.13,990,5.9,207,0.8 +2020,6,14,20,0,24.900000000000002,1.08,0.1368,0.61,0,0,0,4,24.400000000000002,0,0,0,0,0.26,97.09,131.59,0.13,990,5.9,205,0.8 +2020,6,14,21,0,24.700000000000003,1.1,0.1301,0.61,0,0,0,8,24.3,0,0,0,0,0.26,97.71000000000001,118.89,0.13,990,5.800000000000001,198,0.9 +2020,6,14,22,0,24.6,1.1,0.1247,0.61,0,0,0,8,24.3,0,0,0,0,0.26,97.98,105.54,0.13,990,5.7,189,0.9 +2020,6,14,23,0,24.900000000000002,1.1,0.1212,0.61,0,0,0,8,24.5,0,0,0,0,0.26,97.91,91.89,0.13,991,5.7,180,0.9 +2020,6,15,0,0,26.3,1.1,0.12000000000000001,0.61,57,411,142,3,25.1,72,184,3,110,0.26,92.88,78.06,0.13,991,5.6000000000000005,171,1.5 +2020,6,15,1,0,27.3,1.11,0.1188,0.61,88,640,364,0,25.3,88,640,0,364,0.261,88.64,64.38,0.13,992,5.5,169,2.1 +2020,6,15,2,0,28.1,1.1,0.11660000000000001,0.61,104,750,577,3,25.3,236,411,0,496,0.261,84.75,50.910000000000004,0.13,992,5.5,167,2.4000000000000004 +2020,6,15,3,0,28.8,1.08,0.1389,0.61,125,791,748,0,25.200000000000003,125,791,0,748,0.261,81.08,38.06,0.13,991,5.5,165,2.4000000000000004 +2020,6,15,4,0,29.200000000000003,1.05,0.1468,0.61,136,817,865,0,25.1,136,817,0,865,0.26,78.82000000000001,26.86,0.13,991,5.5,163,2.4000000000000004 +2020,6,15,5,0,29.5,1.02,0.1535,0.61,143,824,915,3,25,420,53,0,470,0.26,76.91,20.34,0.13,990,5.6000000000000005,162,2.3000000000000003 +2020,6,15,6,0,29.5,1.06,0.22870000000000001,0.61,174,771,884,0,24.900000000000002,174,771,0,884,0.259,76.44,22.94,0.13,990,5.6000000000000005,162,2.2 +2020,6,15,7,0,29.3,1.03,0.22660000000000002,0.61,167,746,796,8,24.8,386,72,0,446,0.259,76.9,32.55,0.13,989,5.6000000000000005,161,2 +2020,6,15,8,0,29.1,1.01,0.22340000000000002,0.61,153,696,646,6,25,43,0,0,43,0.259,78.44,44.83,0.13,989,5.7,160,1.8 +2020,6,15,9,0,28.6,1,0.22540000000000002,0.61,133,601,450,6,25.3,205,39,0,225,0.259,82.28,58.08,0.13,989,5.7,159,1.4000000000000001 +2020,6,15,10,0,27.8,1,0.2262,0.61,97,426,231,6,25.400000000000002,12,0,0,12,0.259,86.56,71.7,0.13,990,5.7,154,1.2000000000000002 +2020,6,15,11,0,26.900000000000002,1,0.2184,0.61,30,95,38,6,25.400000000000002,4,0,3,4,0.259,91.52,85.34,0.13,990,5.7,152,0.9 +2020,6,15,12,0,26.5,1,0.2088,0.61,0,0,0,6,25.1,0,0,0,0,0.259,92.2,99.22,0.13,991,5.7,149,0.9 +2020,6,15,13,0,26.200000000000003,1,0.202,0.61,0,0,0,7,25,0,0,0,0,0.26,93.10000000000001,112.74000000000001,0.13,991,5.7,141,0.9 +2020,6,15,14,0,26,1.01,0.1971,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.26,93.76,125.79,0.13,992,5.7,129,1 +2020,6,15,15,0,25.700000000000003,1.02,0.1932,0.61,0,0,0,8,24.8,0,0,0,0,0.26,94.72,137.89000000000001,0.13,992,5.7,122,1 +2020,6,15,16,0,25.5,1.02,0.1898,0.61,0,0,0,8,24.700000000000003,0,0,0,0,0.259,95.21000000000001,147.86,0.13,991,5.6000000000000005,118,1 +2020,6,15,17,0,25.200000000000003,1.03,0.1877,0.61,0,0,0,0,24.6,0,0,0,0,0.259,96.36,153.18,0.13,991,5.6000000000000005,120,0.9 +2020,6,15,18,0,25,1.03,0.1888,0.61,0,0,0,7,24.5,0,0,0,0,0.258,96.84,151.14000000000001,0.13,990,5.5,141,0.9 +2020,6,15,19,0,24.8,1.03,0.19110000000000002,0.61,0,0,0,3,24.400000000000002,0,0,0,0,0.258,97.52,142.93,0.13,990,5.5,155,0.9 +2020,6,15,20,0,24.700000000000003,1.04,0.19460000000000002,0.61,0,0,0,8,24.3,0,0,0,0,0.257,97.74000000000001,131.62,0.13,990,5.5,162,0.9 +2020,6,15,21,0,24.700000000000003,1.06,0.20070000000000002,0.61,0,0,0,8,24.3,0,0,0,0,0.257,97.44,118.93,0.13,990,5.5,170,0.8 +2020,6,15,22,0,24.700000000000003,1.09,0.2013,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.257,97.03,105.59,0.13,990,5.5,177,0.8 +2020,6,15,23,0,24.900000000000002,1.11,0.1918,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.257,97.16,91.94,0.13,991,5.5,186,0.8 +2020,6,16,0,0,26,1.1400000000000001,0.19090000000000001,0.61,67,333,136,3,25.200000000000003,74,124,3,99,0.257,95.27,78.11,0.13,991,5.6000000000000005,181,1.1 +2020,6,16,1,0,26.900000000000002,1.17,0.18560000000000001,0.61,107,575,355,8,25.400000000000002,177,121,0,229,0.258,91.45,64.43,0.13,992,5.6000000000000005,165,1.5 +2020,6,16,2,0,27.5,1.19,0.1733,0.61,125,703,568,6,25.200000000000003,281,194,0,403,0.258,87.23,50.97,0.13,992,5.6000000000000005,160,1.6 +2020,6,16,3,0,28.1,1.2,0.182,0.61,143,760,740,7,25,358,284,0,581,0.258,83.28,38.12,0.13,992,5.6000000000000005,156,1.6 +2020,6,16,4,0,28.6,1.2,0.17250000000000001,0.61,146,800,860,6,24.900000000000002,437,217,0,630,0.257,80.55,26.92,0.13,991,5.6000000000000005,155,1.6 +2020,6,16,5,0,29,1.21,0.1673,0.61,147,817,913,7,24.900000000000002,444,309,0,733,0.256,78.57000000000001,20.38,0.13,990,5.6000000000000005,154,1.5 +2020,6,16,6,0,29.200000000000003,1.23,0.2066,0.61,163,788,888,8,24.900000000000002,411,358,0,741,0.255,77.49,22.95,0.13,990,5.6000000000000005,152,1.5 +2020,6,16,7,0,29.200000000000003,1.22,0.2026,0.61,155,766,801,8,24.8,405,223,0,593,0.254,77.31,32.52,0.13,989,5.6000000000000005,149,1.5 +2020,6,16,8,0,28.900000000000002,1.21,0.1967,0.61,141,720,652,6,24.900000000000002,309,66,0,356,0.253,79.26,44.800000000000004,0.13,989,5.7,141,1.3 +2020,6,16,9,0,28.6,1.22,0.2054,0.61,124,624,455,6,25.3,98,0,0,98,0.254,82.5,58.04,0.13,989,5.7,128,1.1 +2020,6,16,10,0,27.8,1.23,0.2182,0.61,94,444,234,7,25.3,110,282,0,198,0.254,86.48,71.65,0.13,989,5.800000000000001,118,1 +2020,6,16,11,0,26.8,1.23,0.2162,0.61,30,111,39,8,25.400000000000002,30,111,5,39,0.255,91.84,85.29,0.13,990,5.800000000000001,109,0.8 +2020,6,16,12,0,26.400000000000002,1.23,0.2187,0.61,0,0,0,7,25.1,0,0,0,0,0.255,92.74,99.17,0.13,991,5.9,103,0.8 +2020,6,16,13,0,26.200000000000003,1.23,0.21880000000000002,0.61,0,0,0,7,25,0,0,0,0,0.256,93.10000000000001,112.68,0.13,991,5.9,100,0.8 +2020,6,16,14,0,25.900000000000002,1.22,0.21200000000000002,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.256,94.18,125.74000000000001,0.13,992,6,97,0.7000000000000001 +2020,6,16,15,0,25.700000000000003,1.22,0.20770000000000002,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.257,94.48,137.83,0.13,992,6,93,0.7000000000000001 +2020,6,16,16,0,25.5,1.21,0.2044,0.61,0,0,0,8,24.6,0,0,0,0,0.257,94.77,147.8,0.13,992,6,94,0.7000000000000001 +2020,6,16,17,0,25.3,1.2,0.20170000000000002,0.61,0,0,0,7,24.5,0,0,0,0,0.258,95.09,153.14000000000001,0.13,991,5.9,101,0.7000000000000001 +2020,6,16,18,0,25.1,1.19,0.2036,0.61,0,0,0,0,24.3,0,0,0,0,0.258,95.54,151.13,0.13,990,5.9,117,0.6000000000000001 +2020,6,16,19,0,24.900000000000002,1.19,0.2044,0.61,0,0,0,8,24.3,0,0,0,0,0.258,96.23,142.95000000000002,0.13,990,5.9,143,0.7000000000000001 +2020,6,16,20,0,24.8,1.18,0.2023,0.61,0,0,0,4,24.200000000000003,0,0,0,0,0.257,96.3,131.65,0.13,989,5.9,165,0.7000000000000001 +2020,6,16,21,0,24.900000000000002,1.19,0.2149,0.61,0,0,0,8,24.1,0,0,0,0,0.258,95.47,118.96000000000001,0.13,989,5.9,186,0.7000000000000001 +2020,6,16,22,0,24.900000000000002,1.2,0.22690000000000002,0.61,0,0,0,4,24.1,0,0,0,0,0.259,95.09,105.63,0.13,990,5.9,253,0.6000000000000001 +2020,6,16,23,0,25.1,1.2,0.2267,0.61,0,0,0,0,24.400000000000002,0,0,0,0,0.259,95.99000000000001,91.99,0.13,990,5.9,317,0.5 +2020,6,17,0,0,26.400000000000002,1.24,0.2333,0.61,71,299,132,0,25.1,71,299,0,132,0.259,92.83,78.16,0.13,991,5.9,180,0.6000000000000001 +2020,6,17,1,0,27.6,1.27,0.23520000000000002,0.61,118,533,348,0,24.900000000000002,118,533,0,348,0.259,85.47,64.49,0.13,992,5.9,152,1 +2020,6,17,2,0,28.400000000000002,1.29,0.2068,0.61,136,677,562,0,24.8,136,677,0,562,0.258,80.79,51.02,0.13,992,5.9,143,1.2000000000000002 +2020,6,17,3,0,29.200000000000003,1.25,0.1922,0.61,146,752,737,0,24.8,146,752,0,737,0.257,77,38.18,0.13,992,5.9,143,1.2000000000000002 +2020,6,17,4,0,29.700000000000003,1.25,0.1975,0.61,157,782,854,0,24.700000000000003,157,782,0,854,0.257,74.79,26.98,0.13,991,6,157,1.3 +2020,6,17,5,0,30,1.24,0.189,0.61,157,801,907,8,24.700000000000003,419,361,0,757,0.256,73.14,20.42,0.13,990,6.1000000000000005,166,1.3 +2020,6,17,6,0,30,1.22,0.21580000000000002,0.61,167,779,884,8,24.6,192,9,0,200,0.256,72.78,22.95,0.13,990,6.1000000000000005,172,1.5 +2020,6,17,7,0,29.6,1.22,0.22490000000000002,0.61,164,748,795,7,24.6,409,199,0,577,0.256,74.76,32.5,0.13,989,6.2,175,1.6 +2020,6,17,8,0,28.8,1.21,0.21810000000000002,0.61,149,702,647,6,24.900000000000002,207,9,0,213,0.257,79.43,44.76,0.13,989,6.300000000000001,171,1.7000000000000002 +2020,6,17,9,0,28.200000000000003,1.2,0.2505,0.61,138,586,449,8,25.200000000000003,213,287,0,365,0.257,83.91,57.99,0.13,989,6.300000000000001,164,1.6 +2020,6,17,10,0,27.400000000000002,1.19,0.2533,0.61,101,412,231,7,25.3,10,0,0,10,0.257,88.10000000000001,71.60000000000001,0.13,989,6.4,151,1.5 +2020,6,17,11,0,26.5,1.18,0.2354,0.61,31,99,39,6,25.400000000000002,4,0,3,4,0.257,93.44,85.24,0.13,990,6.4,143,1.2000000000000002 +2020,6,17,12,0,26.200000000000003,1.16,0.2245,0.61,0,0,0,7,25.200000000000003,0,0,0,0,0.257,94.39,99.12,0.13,991,6.4,138,1.2000000000000002 +2020,6,17,13,0,25.900000000000002,1.1500000000000001,0.2025,0.61,0,0,0,6,25.1,0,0,0,0,0.258,95.44,112.63,0.13,992,6.300000000000001,132,1.2000000000000002 +2020,6,17,14,0,25.700000000000003,1.1300000000000001,0.18430000000000002,0.61,0,0,0,6,25,0,0,0,0,0.259,95.75,125.68,0.13,992,6.300000000000001,125,1 +2020,6,17,15,0,25.400000000000002,1.12,0.1744,0.61,0,0,0,6,24.8,0,0,0,0,0.259,96.45,137.77,0.13,993,6.2,119,0.9 +2020,6,17,16,0,25.1,1.12,0.1656,0.61,0,0,0,6,24.5,0,0,0,0,0.259,96.76,147.75,0.13,993,6.2,115,0.7000000000000001 +2020,6,17,17,0,24.900000000000002,1.1300000000000001,0.1557,0.61,0,0,0,7,24.3,0,0,0,0,0.259,96.43,153.11,0.13,992,6.1000000000000005,113,0.6000000000000001 +2020,6,17,18,0,24.700000000000003,1.1400000000000001,0.15080000000000002,0.61,0,0,0,7,24,0,0,0,0,0.26,96.12,151.12,0.13,991,6.1000000000000005,109,0.5 +2020,6,17,19,0,24.5,1.1400000000000001,0.149,0.61,0,0,0,8,23.8,0,0,0,0,0.26,96.01,142.97,0.13,991,6.1000000000000005,107,0.5 +2020,6,17,20,0,24.400000000000002,1.1400000000000001,0.14700000000000002,0.61,0,0,0,4,23.6,0,0,0,0,0.26,95.56,131.68,0.13,991,6.1000000000000005,106,0.5 +2020,6,17,21,0,24.400000000000002,1.1500000000000001,0.1458,0.61,0,0,0,4,23.5,0,0,0,0,0.26,94.61,119,0.13,991,6.1000000000000005,112,0.5 +2020,6,17,22,0,24.3,1.16,0.1457,0.61,0,0,0,4,23.3,0,0,0,0,0.26,94.4,105.67,0.13,991,6.1000000000000005,127,0.5 +2020,6,17,23,0,24.6,1.17,0.1414,0.61,0,0,0,3,23.700000000000003,0,0,0,0,0.259,94.67,92.03,0.13,992,6.1000000000000005,154,0.4 +2020,6,18,0,0,26.1,1.2,0.1474,0.61,60,377,137,8,24.5,55,0,3,55,0.26,91.10000000000001,78.21000000000001,0.13,993,6,159,0.5 +2020,6,18,1,0,27.400000000000002,1.25,0.153,0.61,96,604,356,8,24.200000000000003,151,18,0,159,0.26,82.89,64.54,0.13,993,6,179,0.7000000000000001 +2020,6,18,2,0,28.400000000000002,1.28,0.13970000000000002,0.61,112,729,570,8,24.1,237,29,0,255,0.26,77.68,51.08,0.13,993,6,219,0.8 +2020,6,18,3,0,29.1,1.25,0.2252,0.61,158,728,730,3,24,171,5,0,175,0.26,74.21000000000001,38.24,0.13,993,6.1000000000000005,235,0.9 +2020,6,18,4,0,29.1,1.24,0.23240000000000002,0.61,171,759,847,3,23.900000000000002,439,148,0,571,0.259,73.64,27.03,0.13,992,6.2,237,1.1 +2020,6,18,5,0,29.200000000000003,1.23,0.2305,0.61,174,774,899,3,24.1,455,265,0,704,0.258,73.88,20.45,0.13,991,6.2,233,1.3 +2020,6,18,6,0,28.8,1.26,0.3387,0.61,215,707,866,3,24.200000000000003,455,217,0,655,0.258,76.33,22.94,0.13,990,6.300000000000001,233,1.5 +2020,6,18,7,0,28.200000000000003,1.23,0.36010000000000003,0.61,214,666,777,8,24.400000000000002,341,35,0,370,0.257,80.07000000000001,32.47,0.13,990,6.4,230,1.6 +2020,6,18,8,0,27.6,1.2,0.3511,0.61,194,614,631,7,24.700000000000003,329,140,0,429,0.256,84.08,44.72,0.13,989,6.5,227,1.6 +2020,6,18,9,0,27,1.18,0.4067,0.61,179,480,433,7,24.900000000000002,48,0,0,48,0.256,88.12,57.95,0.13,989,6.6000000000000005,230,1.5 +2020,6,18,10,0,26.400000000000002,1.1500000000000001,0.4182,0.61,125,300,220,7,24.900000000000002,122,118,0,159,0.256,91.66,71.55,0.13,990,6.6000000000000005,232,1.2000000000000002 +2020,6,18,11,0,25.8,1.12,0.35150000000000003,0.61,30,56,35,7,24.900000000000002,27,0,3,27,0.257,94.83,85.19,0.13,990,6.6000000000000005,228,0.9 +2020,6,18,12,0,25.6,1.11,0.319,0.61,0,0,0,7,24.8,0,0,0,0,0.258,95.53,99.06,0.13,991,6.6000000000000005,221,0.7000000000000001 +2020,6,18,13,0,25.400000000000002,1.1,0.26880000000000004,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.259,95.94,112.57000000000001,0.13,992,6.7,215,0.6000000000000001 +2020,6,18,14,0,25.3,1.08,0.22460000000000002,0.61,0,0,0,7,24.5,0,0,0,0,0.26,95.62,125.62,0.13,992,6.6000000000000005,210,0.5 +2020,6,18,15,0,25.1,1.1,0.2258,0.61,0,0,0,7,24.3,0,0,0,0,0.261,95.38,137.72,0.13,992,6.6000000000000005,208,0.5 +2020,6,18,16,0,24.900000000000002,1.11,0.20600000000000002,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.262,95.62,147.71,0.13,992,6.5,208,0.6000000000000001 +2020,6,18,17,0,24.700000000000003,1.12,0.1758,0.61,0,0,0,8,24,0,0,0,0,0.262,96.11,153.08,0.13,992,6.4,211,0.6000000000000001 +2020,6,18,18,0,24.5,1.1400000000000001,0.15860000000000002,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.263,96.53,151.13,0.13,991,6.2,217,0.6000000000000001 +2020,6,18,19,0,24.3,1.16,0.1394,0.61,0,0,0,8,23.8,0,0,0,0,0.263,96.77,142.99,0.13,991,6.1000000000000005,231,0.6000000000000001 +2020,6,18,20,0,24,1.17,0.12200000000000001,0.61,0,0,0,8,23.5,0,0,0,0,0.263,97.22,131.72,0.13,991,6,246,0.7000000000000001 +2020,6,18,21,0,23.900000000000002,1.19,0.11660000000000001,0.61,0,0,0,0,23.3,0,0,0,0,0.263,96.61,119.05,0.13,991,5.9,246,0.7000000000000001 +2020,6,18,22,0,23.8,1.22,0.1124,0.61,0,0,0,3,23.200000000000003,0,0,0,0,0.263,96.16,105.72,0.13,991,5.9,240,0.7000000000000001 +2020,6,18,23,0,24.1,1.23,0.1048,0.61,0,0,0,1,23.400000000000002,0,0,1,0,0.263,95.75,92.08,0.13,991,6,237,0.7000000000000001 +2020,6,19,0,0,25.1,1.26,0.0983,0.61,51,437,140,0,23.900000000000002,51,437,0,140,0.263,93.15,78.26,0.13,992,6,236,1.1 +2020,6,19,1,0,26.3,1.29,0.09040000000000001,0.61,76,668,363,0,24.1,76,668,0,363,0.264,87.67,64.59,0.13,993,6.1000000000000005,234,1.3 +2020,6,19,2,0,27.1,1.3,0.08600000000000001,0.61,90,774,576,8,23.8,248,361,0,474,0.264,82.32000000000001,51.13,0.13,993,6.2,234,1.4000000000000001 +2020,6,19,3,0,27.6,1.31,0.0978,0.61,105,820,748,1,23.8,105,820,0,748,0.264,80.03,38.29,0.13,993,6.2,236,1.5 +2020,6,19,4,0,27.8,1.32,0.1042,0.61,114,844,866,8,24,439,188,0,606,0.263,79.65,27.080000000000002,0.13,992,6.300000000000001,239,1.6 +2020,6,19,5,0,27.8,1.31,0.0978,0.61,114,860,920,3,24.1,469,171,0,629,0.262,80.14,20.48,0.13,991,6.300000000000001,240,1.7000000000000002 +2020,6,19,6,0,27.6,1.11,0.1436,0.61,136,823,893,8,24.200000000000003,459,179,0,624,0.261,81.68,22.93,0.13,991,6.4,240,1.7000000000000002 +2020,6,19,7,0,27.200000000000003,1.1400000000000001,0.1459,0.61,131,799,806,8,24.3,410,155,0,541,0.261,84.18,32.44,0.13,990,6.4,239,1.8 +2020,6,19,8,0,26.8,1.1500000000000001,0.12940000000000002,0.61,115,768,661,6,24.400000000000002,70,0,0,70,0.26,86.84,44.68,0.13,990,6.4,236,1.8 +2020,6,19,9,0,26.400000000000002,1.21,0.1398,0.61,103,678,464,6,24.5,24,0,0,24,0.26,89.47,57.9,0.13,990,6.4,230,1.6 +2020,6,19,10,0,26,1.25,0.13390000000000002,0.61,76,528,244,8,24.5,117,39,0,129,0.26,91.3,71.5,0.13,990,6.4,225,1.1 +2020,6,19,11,0,25.400000000000002,1.28,0.1184,0.61,28,193,44,8,24.3,5,0,1,5,0.26,93.91,85.14,0.13,990,6.4,221,0.6000000000000001 +2020,6,19,12,0,25.200000000000003,1.3,0.11470000000000001,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.261,93.94,99.01,0.13,991,6.4,218,0.5 +2020,6,19,13,0,25,1.32,0.11230000000000001,0.61,0,0,0,7,24,0,0,0,0,0.262,94.02,112.52,0.13,992,6.4,220,0.5 +2020,6,19,14,0,24.900000000000002,1.32,0.109,0.61,0,0,0,7,23.8,0,0,0,0,0.263,93.5,125.57000000000001,0.13,992,6.300000000000001,224,0.5 +2020,6,19,15,0,24.700000000000003,1.32,0.1101,0.61,0,0,0,6,23.6,0,0,0,0,0.263,93.83,137.67000000000002,0.13,992,6.300000000000001,232,0.5 +2020,6,19,16,0,24.400000000000002,1.32,0.10980000000000001,0.61,0,0,0,6,23.6,0,0,0,0,0.263,95.06,147.67000000000002,0.13,992,6.300000000000001,239,0.6000000000000001 +2020,6,19,17,0,24.200000000000003,1.32,0.10700000000000001,0.61,0,0,0,6,23.400000000000002,0,0,0,0,0.263,95.58,153.06,0.13,991,6.300000000000001,244,0.6000000000000001 +2020,6,19,18,0,24,1.32,0.1077,0.61,0,0,0,7,23.3,0,0,0,0,0.262,96.16,151.14000000000001,0.13,991,6.2,249,0.7000000000000001 +2020,6,19,19,0,23.8,1.33,0.10690000000000001,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.262,96.7,143.02,0.13,990,6.2,255,0.7000000000000001 +2020,6,19,20,0,23.6,1.34,0.10300000000000001,0.61,0,0,0,7,23.1,0,0,0,0,0.261,97.31,131.76,0.13,990,6.1000000000000005,261,0.7000000000000001 +2020,6,19,21,0,23.5,1.35,0.108,0.61,0,0,0,8,23,0,0,0,0,0.261,97.28,119.09,0.13,990,6.1000000000000005,264,0.7000000000000001 +2020,6,19,22,0,23.3,1.35,0.10880000000000001,0.61,0,0,0,3,22.900000000000002,0,0,0,0,0.261,97.75,105.77,0.13,990,6.1000000000000005,265,0.7000000000000001 +2020,6,19,23,0,23.6,1.36,0.1029,0.61,0,0,0,8,23.1,0,0,0,0,0.261,97.24000000000001,92.13,0.13,991,6,266,0.9 +2020,6,20,0,0,24.5,1.3800000000000001,0.1081,0.61,52,426,139,8,23.700000000000003,61,0,3,61,0.262,95.10000000000001,78.31,0.12,991,6,261,1.4000000000000001 +2020,6,20,1,0,25.900000000000002,1.3900000000000001,0.1101,0.61,82,648,360,8,24.1,150,17,0,157,0.262,90.06,64.64,0.12,992,6,245,1.5 +2020,6,20,2,0,26.900000000000002,1.4000000000000001,0.10590000000000001,0.61,97,758,573,7,24,257,51,0,289,0.262,83.95,51.18,0.12,992,6,237,1.6 +2020,6,20,3,0,27.5,1.3900000000000001,0.1106,0.61,110,811,746,6,24,191,7,0,197,0.262,81.27,38.34,0.12,992,6,243,1.6 +2020,6,20,4,0,28,1.3900000000000001,0.117,0.61,120,837,864,6,24.200000000000003,244,12,0,255,0.261,79.9,27.12,0.12,991,6.1000000000000005,253,1.8 +2020,6,20,5,0,28.1,1.3800000000000001,0.1203,0.61,124,846,916,6,24.3,266,14,0,279,0.26,79.95,20.490000000000002,0.12,991,6.2,261,1.9000000000000001 +2020,6,20,6,0,27.900000000000002,1.37,0.1421,0.61,133,827,895,6,24.3,423,63,0,482,0.26,80.95,22.91,0.12,990,6.2,269,2 +2020,6,20,7,0,27.6,1.36,0.14800000000000002,0.61,130,801,807,7,24.400000000000002,411,164,0,549,0.259,82.66,32.4,0.12,990,6.2,275,1.9000000000000001 +2020,6,20,8,0,27.200000000000003,1.36,0.1399,0.61,118,763,661,6,24.400000000000002,296,47,0,330,0.258,84.79,44.63,0.12,989,6.2,278,1.8 +2020,6,20,9,0,26.8,1.36,0.14550000000000002,0.61,104,677,464,6,24.5,222,76,0,262,0.257,87.28,57.85,0.12,989,6.2,272,1.3 +2020,6,20,10,0,26.400000000000002,1.37,0.14450000000000002,0.61,78,521,244,6,24.5,50,0,0,50,0.257,89.35000000000001,71.45,0.12,989,6.1000000000000005,260,0.8 +2020,6,20,11,0,25.6,1.37,0.13670000000000002,0.61,29,182,45,7,24.3,9,0,3,9,0.257,92.54,85.09,0.12,990,6.1000000000000005,244,0.5 +2020,6,20,12,0,25.400000000000002,1.37,0.1322,0.61,0,0,0,7,24,0,0,0,0,0.258,92.08,98.96000000000001,0.12,990,6,231,0.5 +2020,6,20,13,0,25.200000000000003,1.37,0.12860000000000002,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.259,92.5,112.47,0.12,991,6,225,0.6000000000000001 +2020,6,20,14,0,25.1,1.3800000000000001,0.1254,0.61,0,0,0,8,23.8,0,0,0,0,0.26,92.32000000000001,125.53,0.12,991,6,228,0.6000000000000001 +2020,6,20,15,0,25,1.37,0.1241,0.61,0,0,0,4,23.6,0,0,0,0,0.261,92.01,137.63,0.12,991,6,237,0.6000000000000001 +2020,6,20,16,0,24.900000000000002,1.37,0.1226,0.61,0,0,0,8,23.5,0,0,0,0,0.261,91.9,147.63,0.12,991,6,248,0.6000000000000001 +2020,6,20,17,0,24.700000000000003,1.37,0.11900000000000001,0.61,0,0,0,3,23.400000000000002,0,0,0,0,0.262,92.51,153.05,0.12,991,6,254,0.6000000000000001 +2020,6,20,18,0,24.400000000000002,1.37,0.1223,0.61,0,0,0,8,23.400000000000002,0,0,0,0,0.261,93.89,151.15,0.12,990,6,254,0.6000000000000001 +2020,6,20,19,0,24.200000000000003,1.37,0.12040000000000001,0.61,0,0,0,3,23.3,0,0,0,0,0.261,94.85000000000001,143.06,0.12,989,6,251,0.7000000000000001 +2020,6,20,20,0,24.1,1.36,0.11330000000000001,0.61,0,0,0,8,23.3,0,0,0,0,0.261,95.25,131.8,0.12,989,6,248,0.7000000000000001 +2020,6,20,21,0,24,1.35,0.1207,0.61,0,0,0,4,23.3,0,0,0,0,0.26,95.61,119.14,0.12,989,6,246,0.7000000000000001 +2020,6,20,22,0,24,1.35,0.12190000000000001,0.61,0,0,0,4,23.200000000000003,0,0,0,0,0.26,95.39,105.82000000000001,0.12,989,6,240,0.8 +2020,6,20,23,0,24.3,1.34,0.1145,0.61,0,0,0,4,23.700000000000003,0,0,0,0,0.26,96.41,92.18,0.12,990,6,231,0.8 +2020,6,21,0,0,25.6,1.34,0.11320000000000001,0.61,54,418,138,3,24.400000000000002,70,170,3,105,0.26,93.29,78.36,0.13,990,6,213,1.4000000000000001 +2020,6,21,1,0,26.6,1.33,0.1105,0.61,83,646,360,3,24.700000000000003,159,301,3,287,0.26,89.32000000000001,64.69,0.13,991,6,196,2 +2020,6,21,2,0,27.5,1.31,0.10880000000000001,0.61,100,754,572,3,24.8,273,239,0,423,0.26,85.13,51.230000000000004,0.13,991,6,189,2.4000000000000004 +2020,6,21,3,0,28.200000000000003,1.09,0.1439,0.61,127,783,740,1,24.8,127,783,0,740,0.26,81.94,38.38,0.13,990,6,190,2.5 +2020,6,21,4,0,28.8,1.09,0.1391,0.61,132,819,860,3,24.8,390,50,0,434,0.259,79.03,27.16,0.13,990,6,201,2.4000000000000004 +2020,6,21,5,0,29.1,1.09,0.1318,0.61,132,837,916,3,24.8,389,36,0,423,0.257,77.45,20.51,0.13,989,5.9,214,2.3000000000000003 +2020,6,21,6,0,29.3,1.03,0.163,0.61,145,810,892,8,24.700000000000003,456,213,0,652,0.256,76.29,22.89,0.13,988,6,217,2.3000000000000003 +2020,6,21,7,0,29.200000000000003,1,0.1683,0.61,143,784,805,8,24.6,410,138,0,527,0.255,76.44,32.36,0.13,987,6,213,2.4000000000000004 +2020,6,21,8,0,28.8,0.97,0.1647,0.61,131,739,657,6,24.6,330,181,0,459,0.254,78.15,44.59,0.13,987,5.9,210,2.3000000000000003 +2020,6,21,9,0,28.3,0.98,0.164,0.61,114,654,462,6,24.700000000000003,229,144,0,306,0.254,81.10000000000001,57.81,0.13,987,5.9,210,2 +2020,6,21,10,0,27.5,0.98,0.1547,0.61,83,501,243,7,24.900000000000002,112,275,0,200,0.254,85.9,71.41,0.13,987,5.800000000000001,210,1.5 +2020,6,21,11,0,26.1,0.98,0.1461,0.61,31,155,44,8,24.900000000000002,29,82,3,36,0.255,92.97,85.05,0.13,988,5.800000000000001,208,1 +2020,6,21,12,0,25.6,0.98,0.14170000000000002,0.61,0,0,0,8,24.6,0,0,0,0,0.256,94.31,98.91,0.13,989,5.800000000000001,205,0.9 +2020,6,21,13,0,25.3,0.99,0.14,0.61,0,0,0,8,24.5,0,0,0,0,0.256,95.19,112.42,0.13,990,5.800000000000001,200,0.9 +2020,6,21,14,0,25.1,1,0.1391,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.256,95.63,125.48,0.13,990,5.800000000000001,194,0.9 +2020,6,21,15,0,24.8,1.02,0.13870000000000002,0.61,0,0,0,0,24.3,0,0,0,0,0.255,96.81,137.59,0.13,990,5.800000000000001,187,1 +2020,6,21,16,0,24.6,1.04,0.1385,0.61,0,0,0,0,24.200000000000003,0,0,0,0,0.256,97.39,147.6,0.13,990,5.800000000000001,183,1 +2020,6,21,17,0,24.400000000000002,1.08,0.13720000000000002,0.61,0,0,0,8,24.1,0,0,0,0,0.256,97.95,153.05,0.13,989,5.800000000000001,183,1 +2020,6,21,18,0,24.200000000000003,1.1300000000000001,0.14,0.61,0,0,0,8,24,0,0,0,0,0.255,98.55,151.18,0.13,989,5.800000000000001,185,1 +2020,6,21,19,0,24.1,1.17,0.1411,0.61,0,0,0,7,23.8,0,0,0,0,0.255,98.48,143.09,0.13,988,5.800000000000001,190,1 +2020,6,21,20,0,24,1.2,0.1389,0.61,0,0,0,7,23.8,0,0,0,0,0.255,98.59,131.85,0.13,988,5.800000000000001,196,1 +2020,6,21,21,0,24,1.22,0.1453,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.256,98.35000000000001,119.19,0.13,988,5.800000000000001,204,1 +2020,6,21,22,0,24,1.22,0.149,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.256,98.07000000000001,105.87,0.13,988,5.9,210,1.1 +2020,6,21,23,0,24.5,1.22,0.1446,0.61,0,0,0,7,24.1,0,0,0,0,0.255,97.46000000000001,92.23,0.13,989,6,214,1.1 +2020,6,22,0,0,25.6,1.23,0.149,0.61,59,371,134,8,24.8,62,304,3,123,0.256,95.15,78.41,0.13,990,6,207,1.7000000000000002 +2020,6,22,1,0,26.400000000000002,1.25,0.1448,0.61,94,610,354,8,25,143,388,0,309,0.256,91.87,64.74,0.13,991,6,203,2.1 +2020,6,22,2,0,27,1.25,0.13620000000000002,0.61,110,730,567,7,24.8,231,418,0,493,0.256,87.86,51.28,0.13,991,6,207,2.2 +2020,6,22,3,0,27.700000000000003,1.09,0.1681,0.61,137,764,736,7,24.700000000000003,271,520,0,679,0.256,83.76,38.43,0.13,991,6,212,2.3000000000000003 +2020,6,22,4,0,28.1,1.1,0.152,0.61,138,810,858,8,24.6,428,252,0,652,0.256,81.24,27.19,0.13,990,6,218,2.4000000000000004 +2020,6,22,5,0,28.400000000000002,1.11,0.1409,0.61,136,830,913,4,24.5,451,87,0,532,0.255,79.39,20.51,0.13,990,6,223,2.3000000000000003 +2020,6,22,6,0,28.5,1.09,0.1454,0.61,137,823,895,8,24.400000000000002,459,179,0,624,0.254,78.36,22.86,0.13,989,6,227,2.3000000000000003 +2020,6,22,7,0,28.5,1.09,0.1454,0.61,132,801,809,7,24.3,401,253,0,615,0.254,78.06,32.31,0.13,988,6,228,2.2 +2020,6,22,8,0,28.200000000000003,1.08,0.14500000000000002,0.61,122,756,661,7,24.400000000000002,309,309,0,529,0.255,79.72,44.54,0.13,988,6,228,2 +2020,6,22,9,0,27.6,1.09,0.16590000000000002,0.61,113,655,463,8,24.6,188,413,0,408,0.255,83.78,57.75,0.13,988,6,229,1.7000000000000002 +2020,6,22,10,0,27,1.1,0.17750000000000002,0.61,88,481,242,7,24.8,100,375,0,220,0.256,87.82000000000001,71.35000000000001,0.13,988,6,226,1.4000000000000001 +2020,6,22,11,0,25.900000000000002,1.12,0.1705,0.61,31,143,44,8,24.900000000000002,29,142,3,41,0.257,94.02,85,0.13,989,6,220,0.9 +2020,6,22,12,0,25.5,1.1500000000000001,0.163,0.61,0,0,0,8,24.6,0,0,0,0,0.258,95.02,98.86,0.13,990,6,214,0.9 +2020,6,22,13,0,25.3,1.19,0.1517,0.61,0,0,0,7,24.5,0,0,0,0,0.259,95.16,112.38,0.13,990,5.9,204,0.9 +2020,6,22,14,0,25,1.23,0.1446,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.26,96.26,125.44,0.13,991,5.9,195,0.9 +2020,6,22,15,0,24.8,1.25,0.14200000000000002,0.61,0,0,0,7,24.3,0,0,0,0,0.26,96.82000000000001,137.55,0.13,991,5.800000000000001,191,0.9 +2020,6,22,16,0,24.700000000000003,1.27,0.1396,0.61,0,0,0,7,24.1,0,0,0,0,0.261,96.68,147.58,0.13,991,5.800000000000001,190,0.9 +2020,6,22,17,0,24.5,1.28,0.137,0.61,0,0,0,3,24,0,0,0,0,0.262,96.88,153.05,0.13,990,5.800000000000001,196,0.9 +2020,6,22,18,0,24.3,1.29,0.1375,0.61,0,0,0,3,23.8,0,0,0,0,0.262,97.13,151.20000000000002,0.13,989,5.800000000000001,208,0.8 +2020,6,22,19,0,24.200000000000003,1.3,0.1363,0.61,0,0,0,1,23.700000000000003,0,0,0,0,0.263,96.92,143.14000000000001,0.13,989,5.800000000000001,224,0.8 +2020,6,22,20,0,24.1,1.3,0.13290000000000002,0.61,0,0,0,3,23.5,0,0,0,0,0.264,96.68,131.89000000000001,0.13,989,5.800000000000001,241,0.7000000000000001 +2020,6,22,21,0,24.1,1.31,0.1326,0.61,0,0,0,3,23.400000000000002,0,0,0,0,0.264,95.94,119.24000000000001,0.13,989,5.800000000000001,247,0.7000000000000001 +2020,6,22,22,0,24,1.29,0.13440000000000002,0.61,0,0,0,7,23.3,0,0,0,0,0.265,95.89,105.92,0.13,989,5.800000000000001,236,0.8 +2020,6,22,23,0,24.3,1.27,0.1381,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.265,96.58,92.28,0.13,990,5.9,215,0.9 +2020,6,23,0,0,25.400000000000002,1.26,0.1472,0.61,59,373,133,8,24.400000000000002,70,151,3,100,0.265,94.4,78.46000000000001,0.13,991,5.9,197,1.7000000000000002 +2020,6,23,1,0,26.1,1.26,0.1469,0.61,94,607,353,8,24.8,173,95,0,213,0.266,92.32000000000001,64.79,0.13,992,5.9,191,2.2 +2020,6,23,2,0,26.8,1.26,0.139,0.61,111,727,566,7,24.700000000000003,258,312,0,453,0.266,88.4,51.32,0.13,992,5.9,194,2.2 +2020,6,23,3,0,27.6,1.27,0.1404,0.61,124,787,740,7,24.700000000000003,277,499,0,668,0.266,84.18,38.47,0.13,991,5.9,205,2.2 +2020,6,23,4,0,28.1,1.27,0.1323,0.61,128,825,862,8,24.700000000000003,344,503,0,791,0.266,81.86,27.21,0.13,991,5.9,215,2.1 +2020,6,23,5,0,28.400000000000002,1.26,0.1237,0.61,127,844,917,3,24.700000000000003,441,322,0,743,0.266,80.61,20.51,0.13,990,5.9,222,2.1 +2020,6,23,6,0,28.400000000000002,1.25,0.12290000000000001,0.61,126,840,900,7,24.700000000000003,397,385,0,752,0.266,80.43,22.82,0.13,990,5.9,226,2 +2020,6,23,7,0,28.3,1.24,0.1227,0.61,121,820,814,7,24.6,411,189,0,570,0.266,80.44,32.27,0.13,989,5.9,229,1.9000000000000001 +2020,6,23,8,0,28,1.24,0.1202,0.61,111,779,666,7,24.6,296,355,0,550,0.266,81.74,44.49,0.13,989,5.9,230,1.6 +2020,6,23,9,0,27.6,1.26,0.1303,0.61,100,690,469,7,24.900000000000002,216,282,0,366,0.265,85.21000000000001,57.7,0.13,989,6,223,1.2000000000000002 +2020,6,23,10,0,26.900000000000002,1.28,0.1306,0.61,76,536,248,7,24.8,99,380,0,221,0.265,88.08,71.3,0.13,989,6,211,1 +2020,6,23,11,0,26,1.28,0.1232,0.61,29,196,47,3,24.8,28,1,3,28,0.265,93.11,84.95,0.13,990,6,203,0.7000000000000001 +2020,6,23,12,0,25.6,1.29,0.11900000000000001,0.61,0,0,0,7,24.6,0,0,0,0,0.266,94.04,98.82000000000001,0.13,991,6,198,0.7000000000000001 +2020,6,23,13,0,25.3,1.29,0.11470000000000001,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.267,94.82000000000001,112.33,0.13,991,6,195,0.7000000000000001 +2020,6,23,14,0,25,1.29,0.1087,0.61,0,0,0,8,24.3,0,0,0,0,0.268,95.78,125.4,0.13,992,6,192,0.8 +2020,6,23,15,0,24.8,1.29,0.10500000000000001,0.61,0,0,0,8,24.1,0,0,0,0,0.269,96.01,137.52,0.13,992,5.9,190,0.7000000000000001 +2020,6,23,16,0,24.5,1.29,0.1033,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.269,96.63,147.56,0.13,992,5.9,187,0.7000000000000001 +2020,6,23,17,0,24.3,1.29,0.10160000000000001,0.61,0,0,0,6,23.700000000000003,0,0,0,0,0.269,96.64,153.06,0.13,991,5.9,184,0.7000000000000001 +2020,6,23,18,0,24.1,1.29,0.10250000000000001,0.61,0,0,0,6,23.6,0,0,0,0,0.27,97.15,151.24,0.13,991,5.800000000000001,184,0.7000000000000001 +2020,6,23,19,0,23.900000000000002,1.3,0.10060000000000001,0.61,0,0,0,7,23.5,0,0,0,0,0.269,97.75,143.18,0.13,990,5.800000000000001,184,0.8 +2020,6,23,20,0,23.8,1.3,0.09580000000000001,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.269,97.89,131.95,0.13,990,5.800000000000001,184,0.8 +2020,6,23,21,0,23.700000000000003,1.32,0.09670000000000001,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.269,98.09,119.29,0.13,990,5.800000000000001,180,0.9 +2020,6,23,22,0,23.700000000000003,1.35,0.09330000000000001,0.61,0,0,0,7,23.3,0,0,0,0,0.268,97.85000000000001,105.97,0.13,990,5.7,174,1 +2020,6,23,23,0,24.1,1.37,0.08560000000000001,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.267,97.83,92.33,0.13,991,5.7,169,1.2000000000000002 +2020,6,24,0,0,25.1,1.37,0.0876,0.61,49,450,139,3,24.400000000000002,68,198,3,107,0.267,96.03,78.51,0.13,991,5.6000000000000005,168,1.9000000000000001 +2020,6,24,1,0,25.900000000000002,1.3800000000000001,0.0843,0.61,75,675,362,3,24.8,168,224,0,263,0.267,93.68,64.83,0.13,991,5.6000000000000005,170,2.4000000000000004 +2020,6,24,2,0,26.700000000000003,1.37,0.0809,0.61,88,780,575,0,24.900000000000002,88,780,0,575,0.267,89.72,51.370000000000005,0.13,991,5.7,171,2.5 +2020,6,24,3,0,27.5,1.02,0.1495,0.61,130,777,738,3,24.700000000000003,371,189,0,519,0.267,84.8,38.5,0.13,991,5.800000000000001,173,2.3000000000000003 +2020,6,24,4,0,28.1,1,0.1502,0.61,138,809,857,8,24.700000000000003,80,0,0,80,0.267,81.60000000000001,27.240000000000002,0.13,991,5.9,178,2.1 +2020,6,24,5,0,28.3,1,0.1468,0.61,139,824,911,8,24.6,456,262,0,701,0.267,80.26,20.5,0.13,990,6,182,1.9000000000000001 +2020,6,24,6,0,28.200000000000003,1.01,0.1264,0.61,129,835,898,8,24.5,430,328,0,732,0.266,80.3,22.78,0.13,990,6,181,1.8 +2020,6,24,7,0,27.8,1.02,0.132,0.61,126,809,811,6,24.400000000000002,61,0,0,61,0.265,81.87,32.21,0.13,989,6.1000000000000005,180,1.8 +2020,6,24,8,0,27.3,1.02,0.1316,0.61,117,766,664,9,24.6,165,3,0,167,0.264,85.02,44.43,0.13,989,6.1000000000000005,177,1.8 +2020,6,24,9,0,26.700000000000003,1.05,0.1386,0.61,104,679,468,7,24.900000000000002,229,109,0,287,0.263,89.66,57.65,0.13,989,6.1000000000000005,177,1.7000000000000002 +2020,6,24,10,0,26,1.07,0.1338,0.61,78,528,248,6,24.900000000000002,117,33,0,128,0.263,93.84,71.25,0.13,990,6.1000000000000005,175,1.6 +2020,6,24,11,0,25.3,1.07,0.12610000000000002,0.61,30,184,47,6,24.8,24,0,3,24,0.264,96.98,84.9,0.13,990,6,173,1.4000000000000001 +2020,6,24,12,0,25.1,1.11,0.1223,0.61,0,0,0,6,24.6,0,0,0,0,0.264,97.24000000000001,98.77,0.13,991,6,170,1.5 +2020,6,24,13,0,24.900000000000002,1.1500000000000001,0.11230000000000001,0.61,0,0,0,6,24.5,0,0,0,0,0.266,97.5,112.29,0.13,992,5.9,168,1.4000000000000001 +2020,6,24,14,0,24.700000000000003,1.18,0.10200000000000001,0.61,0,0,0,7,24.3,0,0,0,0,0.267,97.57000000000001,125.36,0.13,992,5.800000000000001,169,1.4000000000000001 +2020,6,24,15,0,24.5,1.2,0.1023,0.61,0,0,0,7,24.1,0,0,0,0,0.268,97.58,137.49,0.13,992,5.800000000000001,170,1.4000000000000001 +2020,6,24,16,0,24.3,1.22,0.10210000000000001,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.268,97.60000000000001,147.55,0.13,992,5.7,174,1.3 +2020,6,24,17,0,24.1,1.23,0.098,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.268,97.61,153.07,0.13,991,5.6000000000000005,179,1.2000000000000002 +2020,6,24,18,0,23.900000000000002,1.25,0.09970000000000001,0.61,0,0,0,3,23.5,0,0,0,0,0.268,97.65,151.28,0.13,991,5.6000000000000005,187,1.1 +2020,6,24,19,0,23.700000000000003,1.26,0.0974,0.61,0,0,0,4,23.3,0,0,0,0,0.267,97.47,143.24,0.13,990,5.5,195,1 +2020,6,24,20,0,23.6,1.27,0.09090000000000001,0.61,0,0,0,4,23.1,0,0,0,0,0.266,96.86,132,0.13,990,5.5,204,0.9 +2020,6,24,21,0,23.5,1.29,0.08990000000000001,0.61,0,0,0,4,22.900000000000002,0,0,0,0,0.265,96.52,119.34,0.13,990,5.5,210,0.9 +2020,6,24,22,0,23.3,1.32,0.0849,0.61,0,0,0,4,22.8,0,0,0,0,0.265,96.74000000000001,106.02,0.13,990,5.4,215,0.9 +2020,6,24,23,0,23.900000000000002,1.35,0.07590000000000001,0.61,0,0,0,4,23.200000000000003,0,0,0,0,0.264,95.81,92.39,0.13,990,5.4,218,1 +2020,6,25,0,0,25.400000000000002,1.37,0.07050000000000001,0.61,46,474,140,4,24,68,21,3,72,0.264,92.23,78.56,0.13,991,5.4,211,1.6 +2020,6,25,1,0,26.8,1.3900000000000001,0.0651,0.61,68,698,365,4,24,173,145,0,235,0.264,84.78,64.88,0.13,991,5.4,198,2.1 +2020,6,25,2,0,27.900000000000002,1.3800000000000001,0.0639,0.61,82,798,579,7,23.8,270,251,0,426,0.264,78.63,51.410000000000004,0.13,991,5.4,193,2.2 +2020,6,25,3,0,28.900000000000002,0.98,0.0903,0.61,104,825,749,3,24,331,372,0,622,0.264,74.69,38.53,0.13,990,5.5,193,2.2 +2020,6,25,4,0,29.5,0.96,0.0944,0.61,112,851,869,3,24.1,411,316,0,692,0.263,72.94,27.25,0.13,990,5.6000000000000005,195,2.1 +2020,6,25,5,0,29.8,0.9500000000000001,0.09910000000000001,0.61,117,859,922,8,24.200000000000003,391,441,0,804,0.263,71.92,20.48,0.13,989,5.7,196,2.1 +2020,6,25,6,0,29.900000000000002,0.92,0.1389,0.61,135,826,897,8,24.200000000000003,406,369,0,746,0.263,71.44,22.73,0.13,988,5.800000000000001,198,2 +2020,6,25,7,0,29.5,0.91,0.1507,0.61,136,795,809,3,24.200000000000003,406,232,0,602,0.262,73.12,32.160000000000004,0.13,988,5.9,199,2 +2020,6,25,8,0,28.900000000000002,0.9,0.15410000000000001,0.61,127,746,661,8,24.3,255,464,0,587,0.261,76.2,44.38,0.13,988,6,199,1.9000000000000001 +2020,6,25,9,0,28.200000000000003,0.93,0.1665,0.61,115,652,464,8,24.8,171,479,0,428,0.26,81.67,57.6,0.13,988,6,196,1.6 +2020,6,25,10,0,27.3,0.9400000000000001,0.164,0.61,86,492,245,7,24.6,102,370,0,221,0.26,85.42,71.2,0.13,988,6,190,1.5 +2020,6,25,11,0,26.200000000000003,0.9500000000000001,0.1461,0.61,32,160,46,7,24.8,32,160,5,46,0.261,92.17,84.85000000000001,0.13,989,5.9,189,1 +2020,6,25,12,0,25.700000000000003,0.96,0.131,0.61,0,0,0,6,24.6,0,0,0,0,0.262,93.74,98.73,0.13,989,5.800000000000001,186,0.9 +2020,6,25,13,0,25.400000000000002,0.96,0.12010000000000001,0.61,0,0,0,9,24.400000000000002,0,0,0,0,0.262,93.97,112.25,0.13,990,5.800000000000001,181,0.9 +2020,6,25,14,0,25.1,0.97,0.113,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.263,94.61,125.32000000000001,0.13,991,5.7,175,0.9 +2020,6,25,15,0,24.900000000000002,0.98,0.10890000000000001,0.61,0,0,0,7,24,0,0,0,0,0.264,94.78,137.47,0.13,991,5.7,172,0.9 +2020,6,25,16,0,24.8,0.99,0.1057,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.264,94.55,147.55,0.13,991,5.7,172,0.9 +2020,6,25,17,0,24.5,1,0.1044,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.264,95.51,153.09,0.13,990,5.7,175,0.9 +2020,6,25,18,0,24.3,1.01,0.1034,0.61,0,0,0,7,23.6,0,0,0,0,0.264,96.07000000000001,151.33,0.13,989,5.7,177,0.9 +2020,6,25,19,0,24.1,1.02,0.10300000000000001,0.61,0,0,0,3,23.6,0,0,0,0,0.264,96.86,143.29,0.13,989,5.7,178,1 +2020,6,25,20,0,23.900000000000002,1.03,0.1038,0.61,0,0,0,4,23.6,0,0,0,0,0.263,97.95,132.06,0.13,989,5.7,181,1 +2020,6,25,21,0,23.900000000000002,1.06,0.1066,0.61,0,0,0,8,23.6,0,0,0,0,0.263,98.17,119.4,0.13,989,5.7,183,1.1 +2020,6,25,22,0,23.900000000000002,1.07,0.1109,0.61,0,0,0,4,23.6,0,0,0,0,0.263,98.12,106.08,0.13,989,5.7,191,1 +2020,6,25,23,0,24.3,1.08,0.1144,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.262,97.72,92.44,0.13,990,5.7,211,0.9 +2020,6,26,0,0,25.6,1.11,0.1207,0.61,55,396,133,4,24.8,65,2,3,65,0.263,95.53,78.60000000000001,0.13,991,5.7,210,1.3 +2020,6,26,1,0,26.400000000000002,1.1500000000000001,0.1216,0.61,87,630,354,4,25.1,158,34,0,172,0.263,92.68,64.92,0.13,991,5.7,199,1.8 +2020,6,26,2,0,27,1.18,0.11960000000000001,0.61,104,743,567,4,25,256,52,0,288,0.263,88.73,51.45,0.13,992,5.7,198,2 +2020,6,26,3,0,27.3,1.12,0.1447,0.61,127,783,739,8,24.5,370,127,0,469,0.262,84.8,38.56,0.13,991,5.7,198,2.1 +2020,6,26,4,0,27.5,1.12,0.1519,0.61,138,811,859,8,24.400000000000002,436,134,0,555,0.261,83.11,27.26,0.13,991,5.6000000000000005,200,2.2 +2020,6,26,5,0,27.5,1.12,0.1582,0.61,144,821,912,4,24.3,468,190,0,646,0.26,82.67,20.46,0.13,991,5.6000000000000005,204,2.2 +2020,6,26,6,0,27.400000000000002,1.12,0.165,0.61,146,812,895,8,24.1,420,60,0,475,0.258,82.34,22.68,0.13,990,5.6000000000000005,208,2.2 +2020,6,26,7,0,27.200000000000003,1.12,0.16640000000000002,0.61,141,789,809,8,24,409,207,0,585,0.258,82.64,32.1,0.13,990,5.6000000000000005,211,2.2 +2020,6,26,8,0,26.900000000000002,1.12,0.16140000000000002,0.61,129,747,663,8,23.900000000000002,331,193,0,469,0.257,83.43,44.32,0.13,989,5.5,213,2.1 +2020,6,26,9,0,26.6,1.1300000000000001,0.15130000000000002,0.61,109,673,470,8,23.900000000000002,204,346,0,390,0.257,84.93,57.54,0.13,989,5.4,208,1.8 +2020,6,26,10,0,26,1.1400000000000001,0.1409,0.61,80,527,250,7,24,124,85,0,152,0.257,88.85000000000001,71.15,0.13,990,5.300000000000001,201,1.4000000000000001 +2020,6,26,11,0,25,1.16,0.1291,0.61,31,192,48,7,23.8,29,148,3,43,0.258,93.04,84.81,0.13,990,5.1000000000000005,195,0.9 +2020,6,26,12,0,24.6,1.17,0.1192,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.258,93.25,98.68,0.13,990,5,195,0.8 +2020,6,26,13,0,24.700000000000003,1.17,0.1163,0.61,0,0,0,6,23.200000000000003,0,0,0,0,0.259,91.41,112.21000000000001,0.13,991,4.9,203,0.7000000000000001 +2020,6,26,14,0,24.8,1.1500000000000001,0.11810000000000001,0.61,0,0,0,6,23.1,0,0,0,0,0.259,90.15,125.29,0.13,992,4.800000000000001,257,0.4 +2020,6,26,15,0,24.6,1.1400000000000001,0.11860000000000001,0.61,0,0,0,7,22.900000000000002,0,0,0,0,0.259,90.5,137.45000000000002,0.13,992,4.800000000000001,306,0.5 +2020,6,26,16,0,24.3,1.1300000000000001,0.1187,0.61,0,0,0,7,22.8,0,0,0,0,0.259,91.21000000000001,147.54,0.13,992,4.800000000000001,297,0.5 +2020,6,26,17,0,24.1,1.12,0.12000000000000001,0.61,0,0,0,7,22.6,0,0,0,0,0.259,91.24,153.12,0.13,991,4.800000000000001,283,0.5 +2020,6,26,18,0,23.900000000000002,1.1,0.12240000000000001,0.61,0,0,0,7,22.400000000000002,0,0,0,0,0.258,91.24,151.38,0.13,991,4.800000000000001,274,0.5 +2020,6,26,19,0,23.8,1.09,0.1252,0.61,0,0,0,7,22.200000000000003,0,0,0,0,0.257,90.7,143.35,0.13,990,4.800000000000001,269,0.5 +2020,6,26,20,0,23.700000000000003,1.08,0.12840000000000001,0.61,0,0,0,7,22,0,0,0,0,0.256,90.28,132.12,0.13,990,4.800000000000001,265,0.5 +2020,6,26,21,0,23.6,1.07,0.1303,0.61,0,0,0,7,21.900000000000002,0,0,0,0,0.256,89.99,119.46000000000001,0.13,990,4.9,264,0.4 +2020,6,26,22,0,23.700000000000003,1.06,0.1301,0.61,0,0,0,7,21.8,0,0,0,0,0.255,88.91,106.13,0.13,990,4.9,260,0.4 +2020,6,26,23,0,23.900000000000002,1.06,0.13040000000000002,0.61,0,0,0,7,22.1,0,0,0,0,0.254,89.83,92.49,0.13,991,5,243,0.5 +2020,6,27,0,0,25,1.07,0.1323,0.61,57,382,132,6,23.3,70,70,3,84,0.254,90.29,78.65,0.13,991,5,197,0.6000000000000001 +2020,6,27,1,0,26.5,1.08,0.13440000000000002,0.61,91,619,352,7,23.5,172,130,0,228,0.255,83.45,64.97,0.13,991,5,174,1.1 +2020,6,27,2,0,28,1.1,0.1408,0.61,112,727,565,8,23.1,278,134,0,362,0.255,74.81,51.480000000000004,0.13,991,5.1000000000000005,171,1.6 +2020,6,27,3,0,28.8,1.1,0.2773,0.61,179,693,721,4,23.3,372,159,0,496,0.256,72.09,38.59,0.13,991,5.2,169,1.8 +2020,6,27,4,0,29.3,1.12,0.2902,0.61,195,725,839,8,23.6,412,310,0,688,0.257,71.54,27.27,0.13,991,5.300000000000001,170,1.9000000000000001 +2020,6,27,5,0,29.6,1.1300000000000001,0.3042,0.61,205,732,891,7,23.900000000000002,449,288,0,719,0.258,71.53,20.43,0.13,990,5.4,173,2 +2020,6,27,6,0,29.700000000000003,1.1400000000000001,0.33740000000000003,0.61,217,708,870,6,24.1,415,55,0,467,0.259,71.82000000000001,22.62,0.13,989,5.6000000000000005,176,2 +2020,6,27,7,0,29.6,1.1500000000000001,0.3504,0.61,213,673,783,7,24.200000000000003,348,37,0,379,0.259,72.66,32.04,0.13,989,5.7,179,2 +2020,6,27,8,0,29.1,1.1500000000000001,0.3614,0.61,199,611,636,7,24.3,319,78,0,374,0.259,75.52,44.26,0.13,989,5.800000000000001,179,2 +2020,6,27,9,0,28.400000000000002,1.17,0.3679,0.61,171,510,445,7,24.700000000000003,231,123,0,297,0.259,80.54,57.49,0.13,989,5.800000000000001,178,1.8 +2020,6,27,10,0,27.5,1.18,0.37020000000000003,0.61,121,338,231,8,25,82,0,0,82,0.259,86.04,71.10000000000001,0.13,989,5.800000000000001,177,1.6 +2020,6,27,11,0,26.400000000000002,1.18,0.34590000000000004,0.61,34,71,40,4,25.1,18,0,3,18,0.259,92.84,84.76,0.13,990,5.800000000000001,175,1.2000000000000002 +2020,6,27,12,0,26,1.18,0.3216,0.61,0,0,0,8,25,0,0,0,0,0.26,94.35000000000001,98.64,0.13,990,5.7,170,1.1 +2020,6,27,13,0,25.700000000000003,1.17,0.2934,0.61,0,0,0,3,24.900000000000002,0,0,0,0,0.26,95.44,112.17,0.13,991,5.6000000000000005,162,1.1 +2020,6,27,14,0,25.400000000000002,1.1500000000000001,0.27190000000000003,0.61,0,0,0,8,24.8,0,0,0,0,0.261,96.73,125.27,0.13,992,5.5,157,1 +2020,6,27,15,0,25.200000000000003,1.1300000000000001,0.2591,0.61,0,0,0,8,24.8,0,0,0,0,0.261,97.47,137.43,0.13,992,5.4,155,1 +2020,6,27,16,0,25,1.11,0.2474,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.262,98.10000000000001,147.55,0.13,992,5.4,159,1 +2020,6,27,17,0,24.900000000000002,1.09,0.2356,0.61,0,0,0,7,24.6,0,0,0,0,0.263,98.08,153.16,0.13,991,5.300000000000001,167,1 +2020,6,27,18,0,24.700000000000003,1.06,0.2267,0.61,0,0,0,3,24.5,0,0,0,0,0.262,98.69,151.44,0.13,991,5.2,175,1 +2020,6,27,19,0,24.5,1.04,0.2212,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.261,99.22,143.42000000000002,0.13,990,5.1000000000000005,177,1 +2020,6,27,20,0,24.400000000000002,1.02,0.2141,0.61,0,0,0,0,24.3,0,0,0,0,0.26,99.22,132.18,0.13,990,5,171,1 +2020,6,27,21,0,24.3,1.01,0.2131,0.61,0,0,0,3,24.200000000000003,0,0,0,0,0.259,99.31,119.51,0.13,990,5,160,1 +2020,6,27,22,0,24.1,1.01,0.2156,0.61,0,0,0,0,24.1,0,0,0,0,0.258,100,106.18,0.13,990,5,151,1.1 +2020,6,27,23,0,24.5,1,0.2099,0.61,0,0,0,3,24.3,0,0,0,0,0.257,98.91,92.54,0.13,991,5.1000000000000005,147,1.2000000000000002 +2020,6,28,0,0,25.8,1,0.20320000000000002,0.61,67,301,126,7,24.8,67,301,5,126,0.256,94.38,78.7,0.13,991,5.1000000000000005,148,2 +2020,6,28,1,0,26.6,1,0.1829,0.61,106,566,345,8,24.900000000000002,142,381,0,303,0.257,90.46000000000001,65.01,0.13,992,5.2,150,2.5 +2020,6,28,2,0,27.5,0.99,0.166,0.61,123,702,560,8,24.900000000000002,225,433,0,495,0.257,85.51,51.51,0.13,992,5.300000000000001,152,2.7 +2020,6,28,3,0,28.400000000000002,0.98,0.1635,0.61,136,769,736,7,24.8,321,389,0,625,0.258,80.66,38.61,0.13,991,5.300000000000001,154,2.7 +2020,6,28,4,0,28.900000000000002,0.98,0.1656,0.61,145,802,857,7,24.700000000000003,429,246,0,647,0.258,77.97,27.27,0.13,991,5.300000000000001,155,2.6 +2020,6,28,5,0,29,0.97,0.16970000000000002,0.61,150,813,912,7,24.6,448,293,0,722,0.258,77.10000000000001,20.39,0.13,990,5.300000000000001,158,2.4000000000000004 +2020,6,28,6,0,29,0.97,0.171,0.61,150,808,896,7,24.6,408,365,0,745,0.258,77.08,22.56,0.13,989,5.300000000000001,162,2.3000000000000003 +2020,6,28,7,0,29.200000000000003,0.96,0.1699,0.61,144,786,811,7,24.6,413,160,0,549,0.258,76.15,31.970000000000002,0.13,989,5.300000000000001,166,2.3000000000000003 +2020,6,28,8,0,29.1,0.9500000000000001,0.16770000000000002,0.61,133,741,664,7,24.6,307,325,0,540,0.258,76.72,44.2,0.13,989,5.300000000000001,169,2.3000000000000003 +2020,6,28,9,0,28.700000000000003,0.96,0.1704,0.61,117,654,469,7,24.8,228,209,0,341,0.257,79.46000000000001,57.43,0.13,988,5.2,171,2.2 +2020,6,28,10,0,27.700000000000003,0.97,0.16840000000000002,0.61,88,494,248,1,25.1,88,494,0,248,0.257,85.65,71.05,0.13,989,5.2,170,1.8 +2020,6,28,11,0,26.3,0.96,0.1597,0.61,33,155,47,8,25.1,30,61,3,36,0.258,93.01,84.72,0.13,989,5.1000000000000005,170,1.3 +2020,6,28,12,0,25.700000000000003,0.9500000000000001,0.1545,0.61,0,0,0,3,24.900000000000002,0,0,0,0,0.258,95.2,98.60000000000001,0.13,990,5.1000000000000005,168,1.3 +2020,6,28,13,0,25.400000000000002,0.93,0.15230000000000002,0.61,0,0,0,8,24.8,0,0,0,0,0.259,96.53,112.14,0.13,990,5.1000000000000005,166,1.2000000000000002 +2020,6,28,14,0,25.200000000000003,0.92,0.1521,0.61,0,0,0,7,24.8,0,0,0,0,0.259,97.55,125.24000000000001,0.13,991,5.1000000000000005,165,1.2000000000000002 +2020,6,28,15,0,25,0.92,0.1542,0.61,0,0,0,8,24.700000000000003,0,0,0,0,0.26,98.3,137.42000000000002,0.13,991,5.1000000000000005,164,1.1 +2020,6,28,16,0,24.900000000000002,0.93,0.15460000000000002,0.61,0,0,0,8,24.6,0,0,0,0,0.26,98.33,147.56,0.13,991,5.1000000000000005,157,1 +2020,6,28,17,0,24.8,0.9500000000000001,0.15430000000000002,0.61,0,0,0,0,24.6,0,0,0,0,0.261,98.57000000000001,153.20000000000002,0.13,991,5.1000000000000005,153,1 +2020,6,28,18,0,24.6,0.98,0.165,0.61,0,0,0,0,24.5,0,0,0,0,0.262,99.25,151.5,0.13,990,5.1000000000000005,154,1 +2020,6,28,19,0,24.5,1,0.1753,0.61,0,0,0,0,24.400000000000002,0,0,0,0,0.262,99.46000000000001,143.49,0.13,989,5.2,154,1 +2020,6,28,20,0,24.400000000000002,1,0.1801,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.262,99.76,132.25,0.13,989,5.2,154,1 +2020,6,28,21,0,24.400000000000002,1.02,0.1913,0.61,0,0,0,3,24.3,0,0,0,0,0.261,99.43,119.58,0.13,989,5.2,156,1 +2020,6,28,22,0,24.3,1.03,0.19240000000000002,0.61,0,0,0,8,24.3,0,0,0,0,0.261,99.72,106.24000000000001,0.13,990,5.300000000000001,159,1.1 +2020,6,28,23,0,24.700000000000003,1.03,0.1874,0.61,0,0,0,8,24.5,0,0,0,0,0.26,98.77,92.59,0.13,990,5.300000000000001,160,1 +2020,6,29,0,0,26.1,1.05,0.1849,0.61,64,319,126,8,25.200000000000003,66,19,3,70,0.26,94.8,78.74,0.14,991,5.300000000000001,160,1.6 +2020,6,29,1,0,27,1.06,0.1791,0.61,104,571,345,0,25.400000000000002,104,571,0,345,0.26,90.87,65.05,0.14,991,5.300000000000001,162,2.3000000000000003 +2020,6,29,2,0,27.8,1.06,0.1812,0.61,128,691,558,8,25.400000000000002,278,142,0,366,0.259,86.62,51.550000000000004,0.14,991,5.300000000000001,165,2.6 +2020,6,29,3,0,28.400000000000002,1.06,0.1996,0.61,150,744,731,8,25.3,340,337,0,603,0.259,83.34,38.63,0.14,991,5.300000000000001,166,2.7 +2020,6,29,4,0,28.8,1.06,0.2083,0.61,163,774,851,8,25.200000000000003,437,143,0,564,0.26,81.12,27.27,0.14,991,5.300000000000001,170,2.7 +2020,6,29,5,0,29,1.06,0.2078,0.61,167,789,907,8,25.200000000000003,414,369,0,760,0.261,79.85000000000001,20.35,0.14,990,5.300000000000001,175,2.6 +2020,6,29,6,0,28.900000000000002,1.1300000000000001,0.32120000000000004,0.61,211,719,875,7,25.1,435,308,0,719,0.261,79.96000000000001,22.490000000000002,0.14,989,5.300000000000001,179,2.4000000000000004 +2020,6,29,7,0,28.700000000000003,1.11,0.321,0.61,203,692,791,6,25.1,413,149,0,539,0.261,80.79,31.900000000000002,0.14,989,5.300000000000001,183,2.2 +2020,6,29,8,0,28.400000000000002,1.1,0.32270000000000004,0.61,188,637,645,9,25.1,50,0,0,50,0.261,82.29,44.14,0.14,988,5.2,184,2 +2020,6,29,9,0,28,1.11,0.3269,0.61,162,538,452,9,25.3,184,14,0,192,0.261,85.10000000000001,57.38,0.14,988,5.1000000000000005,184,1.7000000000000002 +2020,6,29,10,0,27.200000000000003,1.1300000000000001,0.327,0.61,116,368,236,6,25.400000000000002,70,0,0,70,0.26,89.79,71,0.14,989,5.1000000000000005,184,1.3 +2020,6,29,11,0,26.200000000000003,1.1400000000000001,0.3261,0.61,35,77,42,6,25.200000000000003,10,0,3,10,0.261,94.2,84.67,0.14,989,5,179,1 +2020,6,29,12,0,25.8,1.1500000000000001,0.3257,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.262,94.96000000000001,98.56,0.14,990,4.9,174,1 +2020,6,29,13,0,25.5,1.16,0.323,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.262,95.35000000000001,112.11,0.14,990,4.9,169,0.9 +2020,6,29,14,0,25.200000000000003,1.17,0.324,0.61,0,0,0,7,24.5,0,0,0,0,0.263,96.12,125.22,0.14,991,4.800000000000001,165,0.9 +2020,6,29,15,0,25.1,1.18,0.3305,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.263,95.79,137.41,0.14,991,4.800000000000001,160,0.9 +2020,6,29,16,0,24.900000000000002,1.18,0.3388,0.61,0,0,0,6,24.3,0,0,0,0,0.263,96.2,147.58,0.14,991,4.9,152,0.9 +2020,6,29,17,0,24.700000000000003,1.19,0.3406,0.61,0,0,0,7,24.1,0,0,0,0,0.263,96.52,153.25,0.14,990,4.9,149,0.9 +2020,6,29,18,0,24.5,1.2,0.3365,0.61,0,0,0,7,24,0,0,0,0,0.264,96.88,151.57,0.14,990,4.9,147,0.9 +2020,6,29,19,0,24.3,1.21,0.3274,0.61,0,0,0,7,23.8,0,0,0,0,0.264,97.2,143.56,0.14,989,4.9,140,0.9 +2020,6,29,20,0,24.1,1.22,0.3113,0.61,0,0,0,3,23.700000000000003,0,0,0,0,0.263,97.64,132.31,0.14,989,4.9,131,0.9 +2020,6,29,21,0,24,1.23,0.2958,0.61,0,0,0,0,23.6,0,0,0,0,0.263,97.47,119.64,0.14,989,4.9,131,1 +2020,6,29,22,0,23.8,1.22,0.28150000000000003,0.61,0,0,0,1,23.400000000000002,0,0,0,0,0.263,97.87,106.3,0.14,989,4.9,138,1 +2020,6,29,23,0,24.1,1.2,0.2677,0.61,0,0,0,8,23.8,0,0,0,0,0.262,98.08,92.64,0.14,990,4.9,146,1 +2020,6,30,0,0,25.5,1.18,0.2585,0.61,68,264,120,0,24.6,68,264,0,120,0.262,94.53,78.79,0.14,990,5,154,1.6 +2020,6,30,1,0,26.5,1.1500000000000001,0.2525,0.61,121,511,336,8,25,134,425,0,313,0.262,91.46000000000001,65.08,0.14,991,5,156,2.1 +2020,6,30,2,0,27.6,1.1400000000000001,0.24550000000000002,0.61,148,644,548,7,25,269,246,0,422,0.262,85.98,51.57,0.14,991,5.1000000000000005,156,2.4000000000000004 +2020,6,30,3,0,28.400000000000002,1.12,0.2409,0.61,164,717,724,8,25,280,485,0,659,0.262,81.85000000000001,38.64,0.14,991,5.2,158,2.5 +2020,6,30,4,0,28.900000000000002,1.11,0.23370000000000002,0.61,172,759,846,0,25,172,759,0,846,0.262,79.43,27.26,0.14,990,5.300000000000001,161,2.4000000000000004 +2020,6,30,5,0,29.200000000000003,1.1,0.22360000000000002,0.61,172,780,904,7,25,469,185,0,643,0.262,78.03,20.3,0.14,990,5.300000000000001,163,2.3000000000000003 +2020,6,30,6,0,29.200000000000003,1.16,0.3064,0.61,203,727,876,7,24.900000000000002,391,400,0,762,0.263,77.67,22.41,0.14,989,5.4,164,2.2 +2020,6,30,7,0,29,1.1500000000000001,0.29250000000000004,0.61,190,709,793,7,24.8,408,230,0,603,0.262,78.29,31.830000000000002,0.14,988,5.4,163,2.1 +2020,6,30,8,0,28.700000000000003,1.1400000000000001,0.2674,0.61,167,673,650,8,25,262,451,0,586,0.262,80.35000000000001,44.07,0.14,988,5.4,159,1.9000000000000001 +2020,6,30,9,0,28.3,1.1500000000000001,0.259,0.61,141,587,458,7,25.3,232,170,0,324,0.262,83.83,57.32,0.14,988,5.4,154,1.6 +2020,6,30,10,0,27.6,1.1500000000000001,0.2514,0.61,102,425,241,8,25.5,95,423,0,234,0.262,88.11,70.95,0.14,988,5.4,151,1.3 +2020,6,30,11,0,26.5,1.1300000000000001,0.2335,0.61,34,116,45,7,25.400000000000002,34,116,5,45,0.262,93.82000000000001,84.63,0.14,989,5.4,147,0.9 +2020,6,30,12,0,26.1,1.12,0.2252,0.61,0,0,0,7,25.200000000000003,0,0,0,0,0.262,94.58,98.52,0.14,990,5.4,139,0.9 +2020,6,30,13,0,25.8,1.12,0.2144,0.61,0,0,0,8,25,0,0,0,0,0.262,95.27,112.08,0.14,990,5.4,134,0.9 +2020,6,30,14,0,25.6,1.11,0.2026,0.61,0,0,0,8,24.900000000000002,0,0,0,0,0.262,95.71000000000001,125.2,0.14,991,5.4,132,0.9 +2020,6,30,15,0,25.400000000000002,1.1,0.19090000000000001,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.262,96.06,137.41,0.14,991,5.4,126,0.9 +2020,6,30,16,0,25.200000000000003,1.08,0.18180000000000002,0.61,0,0,0,8,24.6,0,0,0,0,0.262,96.34,147.6,0.14,991,5.4,118,0.9 +2020,6,30,17,0,24.900000000000002,1.07,0.17600000000000002,0.61,0,0,0,3,24.400000000000002,0,0,0,0,0.262,97.02,153.3,0.14,990,5.300000000000001,119,1 +2020,6,30,18,0,24.6,1.06,0.17370000000000002,0.61,0,0,0,3,24.200000000000003,0,0,0,0,0.262,97.84,151.65,0.14,990,5.300000000000001,124,1 +2020,6,30,19,0,24.400000000000002,1.05,0.1706,0.61,0,0,0,8,24.1,0,0,0,0,0.261,98.01,143.64000000000001,0.14,989,5.300000000000001,131,1 +2020,6,30,20,0,24.200000000000003,1.04,0.16540000000000002,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.261,98.34,132.38,0.14,989,5.300000000000001,135,1 +2020,6,30,21,0,24.1,1.04,0.16240000000000002,0.61,0,0,0,3,23.8,0,0,0,0,0.261,98.19,119.7,0.14,989,5.2,142,1 +2020,6,30,22,0,24,1.04,0.156,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.261,98.13,106.35000000000001,0.14,989,5.2,145,1 +2020,6,30,23,0,24.3,1.05,0.1474,0.61,0,0,0,0,24,0,0,0,0,0.26,98.11,92.69,0.14,990,5.2,144,1 +2020,7,1,0,0,25.6,1.08,0.13970000000000002,0.62,57,368,129,0,24.700000000000003,57,368,0,129,0.26,94.57000000000001,78.83,0.14,990,5.1000000000000005,140,1.7000000000000002 +2020,7,1,1,0,26.5,1.1,0.1295,0.62,89,622,350,8,25,138,402,0,307,0.26,91.24,65.12,0.14,991,5.1000000000000005,139,2.2 +2020,7,1,2,0,27.400000000000002,1.1300000000000001,0.12290000000000001,0.62,105,742,567,0,24.8,105,742,0,567,0.26,85.86,51.6,0.14,991,5.1000000000000005,136,2.4000000000000004 +2020,7,1,3,0,28,1.08,0.233,0.62,162,721,725,8,24.6,301,431,0,638,0.26,81.8,38.660000000000004,0.14,991,5.2,138,2.3000000000000003 +2020,7,1,4,0,28.400000000000002,1.08,0.228,0.62,170,763,848,0,24.5,170,763,0,848,0.26,79.34,27.240000000000002,0.14,990,5.2,145,2.1 +2020,7,1,5,0,28.400000000000002,1.08,0.22130000000000002,0.62,171,782,905,3,24.400000000000002,414,369,0,760,0.26,78.79,20.25,0.14,990,5.2,154,2 +2020,7,1,6,0,28.400000000000002,1.09,0.22820000000000001,0.62,173,774,889,0,24.3,173,774,0,889,0.26,78.3,22.330000000000002,0.14,989,5.2,162,1.8 +2020,7,1,7,0,28.3,1.09,0.22340000000000002,0.62,164,753,805,0,24.200000000000003,164,753,0,805,0.259,78.37,31.76,0.14,988,5.2,168,1.7000000000000002 +2020,7,1,8,0,28,1.1,0.21880000000000002,0.62,151,707,660,8,24.3,269,435,0,582,0.26,80.15,44.01,0.14,988,5.2,169,1.6 +2020,7,1,9,0,27.6,1.12,0.21630000000000002,0.62,130,621,466,3,24.6,233,168,0,324,0.26,83.52,57.26,0.14,988,5.2,166,1.3 +2020,7,1,10,0,27,1.1400000000000001,0.20900000000000002,0.62,95,463,247,8,24.700000000000003,95,463,5,247,0.26,87.37,70.9,0.14,989,5.2,162,1.1 +2020,7,1,11,0,26.1,1.16,0.19460000000000002,0.62,34,144,48,8,24.6,34,144,5,48,0.262,91.44,84.59,0.14,989,5.2,157,0.9 +2020,7,1,12,0,25.700000000000003,1.18,0.1847,0.62,0,0,0,8,24.3,0,0,0,0,0.263,92.05,98.49000000000001,0.14,990,5.2,151,1 +2020,7,1,13,0,25.400000000000002,1.19,0.1773,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.263,93.07000000000001,112.05,0.14,991,5.2,144,1 +2020,7,1,14,0,25.200000000000003,1.2,0.1703,0.62,0,0,0,7,24.1,0,0,0,0,0.264,93.61,125.19,0.14,991,5.2,140,1 +2020,7,1,15,0,25,1.2,0.1663,0.62,0,0,0,8,24,0,0,0,0,0.265,94.33,137.41,0.14,991,5.2,138,1 +2020,7,1,16,0,24.700000000000003,1.19,0.1653,0.62,0,0,0,6,24,0,0,0,0,0.265,95.74000000000001,147.63,0.14,991,5.2,138,1 +2020,7,1,17,0,24.400000000000002,1.18,0.16770000000000002,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.265,97.16,153.36,0.14,990,5.2,143,1 +2020,7,1,18,0,24.3,1.16,0.17170000000000002,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.265,97.46000000000001,151.73,0.14,989,5.2,154,0.9 +2020,7,1,19,0,24.200000000000003,1.1500000000000001,0.1739,0.62,0,0,0,7,23.8,0,0,0,0,0.265,97.89,143.72,0.14,989,5.2,173,0.9 +2020,7,1,20,0,24.1,1.1400000000000001,0.1734,0.62,0,0,0,8,23.8,0,0,0,0,0.265,98.28,132.46,0.14,989,5.2,193,0.8 +2020,7,1,21,0,24.1,1.16,0.1734,0.62,0,0,0,7,23.8,0,0,0,0,0.266,98.17,119.76,0.14,989,5.2,193,0.9 +2020,7,1,22,0,24,1.17,0.1736,0.62,0,0,0,7,23.8,0,0,0,0,0.266,98.83,106.41,0.14,989,5.2,184,0.9 +2020,7,1,23,0,24.3,1.17,0.1708,0.62,0,0,0,7,24,0,0,0,0,0.267,98.22,92.74,0.14,989,5.2,175,0.9 +2020,7,2,0,0,25.6,1.17,0.18230000000000002,0.62,62,325,125,8,24.8,64,228,3,108,0.267,95.25,78.87,0.14,990,5.2,160,1.3 +2020,7,2,1,0,26.6,1.19,0.1859,0.62,105,568,343,8,25,148,344,0,293,0.266,90.89,65.15,0.14,990,5.2,159,1.7000000000000002 +2020,7,2,2,0,27.5,1.2,0.1769,0.62,125,697,558,7,24.900000000000002,266,74,0,312,0.265,85.79,51.620000000000005,0.14,991,5.2,162,1.9000000000000001 +2020,7,2,3,0,28.200000000000003,1.23,0.2442,0.62,164,717,724,7,24.8,371,151,0,489,0.264,81.68,38.660000000000004,0.14,990,5.2,169,2 +2020,7,2,4,0,28.6,1.22,0.2462,0.62,175,753,845,3,24.700000000000003,417,294,0,678,0.262,79.37,27.22,0.14,990,5.300000000000001,176,2.1 +2020,7,2,5,0,28.8,1.2,0.24450000000000002,0.62,179,770,902,3,24.6,397,409,0,781,0.261,78.05,20.18,0.14,989,5.300000000000001,180,2.1 +2020,7,2,6,0,29,1.16,0.2243,0.62,172,777,890,3,24.6,397,43,0,437,0.259,77.07000000000001,22.25,0.14,989,5.4,181,2.1 +2020,7,2,7,0,29,1.1500000000000001,0.22610000000000002,0.62,166,752,806,3,24.5,406,246,0,615,0.258,76.94,31.68,0.14,988,5.4,178,2 +2020,7,2,8,0,28.6,1.1400000000000001,0.22560000000000002,0.62,153,702,659,8,24.5,249,488,0,600,0.258,78.65,43.94,0.14,988,5.5,176,1.9000000000000001 +2020,7,2,9,0,28.1,1.16,0.22920000000000001,0.62,134,611,464,3,24.700000000000003,206,349,0,395,0.259,82.06,57.21,0.14,988,5.5,175,1.6 +2020,7,2,10,0,27.3,1.18,0.22540000000000002,0.62,98,450,246,3,25.1,97,419,0,234,0.26,87.97,70.85000000000001,0.14,989,5.5,174,1.2000000000000002 +2020,7,2,11,0,26.200000000000003,1.2,0.2104,0.62,35,136,48,3,25,35,136,5,48,0.261,93.03,84.55,0.14,989,5.4,176,1 +2020,7,2,12,0,25.8,1.21,0.19970000000000002,0.62,0,0,0,8,24.700000000000003,0,0,0,0,0.262,93.62,98.46000000000001,0.14,990,5.4,176,1 +2020,7,2,13,0,25.5,1.21,0.19590000000000002,0.62,0,0,0,7,24.5,0,0,0,0,0.263,94.43,112.03,0.14,991,5.4,171,1 +2020,7,2,14,0,25.3,1.22,0.1943,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.263,94.85000000000001,125.18,0.14,991,5.5,161,1 +2020,7,2,15,0,25.1,1.22,0.194,0.62,0,0,0,7,24.3,0,0,0,0,0.264,95.47,137.42000000000002,0.14,991,5.5,157,1 +2020,7,2,16,0,24.900000000000002,1.23,0.1938,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.264,96.06,147.66,0.14,991,5.5,154,1 +2020,7,2,17,0,24.700000000000003,1.24,0.1967,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.265,96.78,153.43,0.14,991,5.5,150,1 +2020,7,2,18,0,24.5,1.24,0.20320000000000002,0.62,0,0,0,8,24.1,0,0,0,0,0.265,97.44,151.82,0.14,990,5.6000000000000005,148,1 +2020,7,2,19,0,24.400000000000002,1.25,0.2073,0.62,0,0,0,3,24,0,0,0,0,0.265,97.76,143.8,0.14,990,5.6000000000000005,149,1 +2020,7,2,20,0,24.200000000000003,1.25,0.2086,0.62,0,0,0,7,24,0,0,0,0,0.264,98.58,132.53,0.14,990,5.6000000000000005,149,1 +2020,7,2,21,0,24.1,1.25,0.2149,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.263,98.83,119.83,0.14,990,5.6000000000000005,153,1 +2020,7,2,22,0,24,1.26,0.22,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.262,99.13,106.46000000000001,0.14,990,5.6000000000000005,159,1 +2020,7,2,23,0,24.3,1.26,0.22490000000000002,0.62,0,0,0,7,24,0,0,0,0,0.26,98.15,92.79,0.14,991,5.5,166,1 +2020,7,3,0,0,25.400000000000002,1.27,0.231,0.62,66,285,121,7,24.6,60,279,3,114,0.259,95.19,78.91,0.14,992,5.5,176,1.4000000000000001 +2020,7,3,1,0,26.1,1.29,0.2311,0.62,115,530,337,7,24.6,164,234,0,262,0.259,91.69,65.18,0.14,992,5.5,184,1.7000000000000002 +2020,7,3,2,0,26.8,1.31,0.2286,0.62,142,658,550,7,24.400000000000002,276,188,0,392,0.259,86.85000000000001,51.64,0.14,992,5.5,192,1.8 +2020,7,3,3,0,27.5,1.35,0.2358,0.62,161,723,726,7,24.200000000000003,346,316,0,592,0.259,82.33,38.67,0.14,992,5.5,201,1.8 +2020,7,3,4,0,28,1.36,0.23820000000000002,0.62,172,759,847,7,24.1,370,404,0,729,0.259,79.60000000000001,27.2,0.14,991,5.6000000000000005,210,1.7000000000000002 +2020,7,3,5,0,28.3,1.36,0.2406,0.62,177,773,903,7,24,458,258,0,700,0.26,77.67,20.12,0.14,990,5.6000000000000005,217,1.5 +2020,7,3,6,0,28.3,1.35,0.2305,0.62,172,775,890,8,23.900000000000002,379,475,0,818,0.26,77,22.16,0.14,990,5.6000000000000005,220,1.3 +2020,7,3,7,0,28.3,1.36,0.2258,0.62,164,755,806,8,23.700000000000003,323,486,0,737,0.261,76.3,31.6,0.14,989,5.6000000000000005,222,1.2000000000000002 +2020,7,3,8,0,28.1,1.37,0.2192,0.62,149,711,661,7,23.700000000000003,314,304,0,533,0.261,77.07000000000001,43.87,0.14,989,5.6000000000000005,226,1 +2020,7,3,9,0,27.900000000000002,1.3900000000000001,0.2194,0.62,129,624,467,7,24.1,219,285,0,374,0.261,79.73,57.15,0.14,989,5.6000000000000005,223,0.8 +2020,7,3,10,0,27.400000000000002,1.4000000000000001,0.2195,0.62,96,464,248,8,23.900000000000002,110,324,0,217,0.261,81.43,70.8,0.14,989,5.6000000000000005,212,0.7000000000000001 +2020,7,3,11,0,26.6,1.41,0.2165,0.62,34,146,48,0,24,34,146,0,48,0.262,85.45,84.51,0.14,990,5.6000000000000005,205,0.6000000000000001 +2020,7,3,12,0,26.200000000000003,1.42,0.21350000000000002,0.62,0,0,0,0,23.6,0,0,0,0,0.263,85.67,98.43,0.14,991,5.6000000000000005,199,0.7000000000000001 +2020,7,3,13,0,25.900000000000002,1.42,0.20900000000000002,0.62,0,0,0,7,23.5,0,0,0,0,0.263,86.74,112.01,0.14,991,5.6000000000000005,192,0.7000000000000001 +2020,7,3,14,0,25.700000000000003,1.42,0.2043,0.62,0,0,0,7,23.5,0,0,0,0,0.264,87.53,125.17,0.14,992,5.6000000000000005,180,0.8 +2020,7,3,15,0,25.5,1.41,0.2018,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.264,88.32000000000001,137.43,0.14,992,5.6000000000000005,163,0.8 +2020,7,3,16,0,25.200000000000003,1.3900000000000001,0.19970000000000002,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.264,89.56,147.70000000000002,0.14,991,5.6000000000000005,143,0.7000000000000001 +2020,7,3,17,0,24.900000000000002,1.37,0.1978,0.62,0,0,0,3,23.3,0,0,0,0,0.264,90.87,153.51,0.14,991,5.5,124,0.8 +2020,7,3,18,0,24.6,1.34,0.1971,0.62,0,0,0,8,23.3,0,0,0,0,0.264,92.24,151.91,0.14,990,5.5,106,0.8 +2020,7,3,19,0,24.3,1.31,0.2,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.264,93.82000000000001,143.89000000000001,0.14,990,5.5,85,0.8 +2020,7,3,20,0,24.1,1.28,0.2049,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.264,95.01,132.61,0.14,990,5.5,76,0.8 +2020,7,3,21,0,24.1,1.26,0.21000000000000002,0.62,0,0,0,8,23.200000000000003,0,0,0,0,0.264,94.86,119.89,0.14,990,5.5,77,0.8 +2020,7,3,22,0,24,1.24,0.2121,0.62,0,0,0,8,23.200000000000003,0,0,0,0,0.263,95.21000000000001,106.52,0.14,990,5.5,81,0.8 +2020,7,3,23,0,24.200000000000003,1.23,0.2074,0.62,0,0,0,8,23.5,0,0,0,0,0.262,96.12,92.83,0.14,991,5.5,88,0.7000000000000001 +2020,7,4,0,0,25.400000000000002,1.23,0.2107,0.62,65,299,122,8,24.3,65,204,3,104,0.262,93.45,78.95,0.14,991,5.4,103,1.1 +2020,7,4,1,0,26.400000000000002,1.25,0.2102,0.62,110,546,339,3,24.6,148,341,0,291,0.262,90.12,65.21000000000001,0.14,992,5.4,118,1.6 +2020,7,4,2,0,27.1,1.26,0.2029,0.62,134,676,553,0,24.6,134,676,0,553,0.262,86.39,51.660000000000004,0.14,992,5.4,120,1.7000000000000002 +2020,7,4,3,0,27.700000000000003,1.29,0.2082,0.62,152,741,730,0,24.6,152,741,0,730,0.261,83.14,38.67,0.14,991,5.4,119,1.7000000000000002 +2020,7,4,4,0,28,1.31,0.20550000000000002,0.62,160,779,853,1,24.5,160,779,0,853,0.261,81.3,27.17,0.14,991,5.5,115,1.6 +2020,7,4,5,0,28.200000000000003,1.31,0.2033,0.62,163,795,909,3,24.400000000000002,463,236,0,684,0.261,79.75,20.04,0.14,991,5.6000000000000005,112,1.4000000000000001 +2020,7,4,6,0,28.3,1.31,0.2137,0.62,166,785,893,3,24.200000000000003,461,192,0,639,0.261,78.58,22.06,0.14,990,5.6000000000000005,108,1.2000000000000002 +2020,7,4,7,0,28.3,1.32,0.2053,0.62,156,767,810,6,24.1,400,86,0,473,0.262,77.93,31.51,0.14,989,5.7,97,1 +2020,7,4,8,0,28,1.33,0.2031,0.62,144,721,663,7,24.1,331,106,0,407,0.263,79.35000000000001,43.81,0.14,989,5.800000000000001,84,0.9 +2020,7,4,9,0,27.8,1.34,0.216,0.62,128,625,468,6,24.6,190,18,0,200,0.264,82.8,57.09,0.14,989,5.800000000000001,72,0.8 +2020,7,4,10,0,27.200000000000003,1.34,0.23720000000000002,0.62,100,446,247,6,24.6,123,45,0,138,0.264,85.51,70.76,0.14,990,5.800000000000001,64,0.8 +2020,7,4,11,0,26.200000000000003,1.36,0.2338,0.62,35,134,48,7,24.700000000000003,31,16,3,32,0.265,91.22,84.47,0.14,990,5.800000000000001,58,0.7000000000000001 +2020,7,4,12,0,25.8,1.36,0.2427,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.266,91.91,98.4,0.14,991,5.800000000000001,51,0.7000000000000001 +2020,7,4,13,0,25.5,1.37,0.24680000000000002,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.266,92.79,111.99000000000001,0.14,991,5.800000000000001,48,0.8 +2020,7,4,14,0,25.200000000000003,1.37,0.2409,0.62,0,0,0,6,24.1,0,0,0,0,0.266,93.5,125.16,0.14,992,5.800000000000001,48,0.8 +2020,7,4,15,0,24.900000000000002,1.3800000000000001,0.23720000000000002,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.266,94.10000000000001,137.45000000000002,0.14,992,5.7,51,0.8 +2020,7,4,16,0,24.6,1.3800000000000001,0.2356,0.62,0,0,0,6,23.700000000000003,0,0,0,0,0.266,94.81,147.75,0.14,992,5.7,55,0.8 +2020,7,4,17,0,24.400000000000002,1.36,0.23420000000000002,0.62,0,0,0,4,23.6,0,0,0,0,0.267,95.08,153.59,0.14,991,5.6000000000000005,62,0.8 +2020,7,4,18,0,24.1,1.35,0.2341,0.62,0,0,0,8,23.400000000000002,0,0,0,0,0.267,96.03,152.01,0.14,990,5.5,67,0.8 +2020,7,4,19,0,23.900000000000002,1.34,0.2348,0.62,0,0,0,8,23.400000000000002,0,0,0,0,0.267,96.75,143.98,0.14,990,5.5,70,0.8 +2020,7,4,20,0,23.900000000000002,1.34,0.23070000000000002,0.62,0,0,0,8,23.3,0,0,0,0,0.266,96.53,132.68,0.14,990,5.4,73,0.8 +2020,7,4,21,0,23.8,1.34,0.2318,0.62,0,0,0,3,23.3,0,0,0,0,0.265,96.89,119.96000000000001,0.14,990,5.4,81,0.8 +2020,7,4,22,0,23.8,1.33,0.2335,0.62,0,0,0,1,23.3,0,0,0,0,0.264,96.75,106.58,0.14,990,5.300000000000001,91,0.8 +2020,7,4,23,0,24.1,1.32,0.22970000000000002,0.62,0,0,0,4,23.6,0,0,0,0,0.263,96.82000000000001,92.88,0.14,990,5.300000000000001,100,0.8 +2020,7,5,0,0,25.200000000000003,1.31,0.22820000000000001,0.62,66,288,121,3,24.3,68,114,3,89,0.262,94.87,78.99,0.14,991,5.300000000000001,109,1.4000000000000001 +2020,7,5,1,0,26.3,1.3,0.22510000000000002,0.62,113,535,338,0,24.8,113,535,0,338,0.262,91.26,65.24,0.14,991,5.300000000000001,116,1.8 +2020,7,5,2,0,27.3,1.31,0.2157,0.62,138,668,552,0,24.700000000000003,138,668,0,552,0.261,85.88,51.68,0.14,991,5.300000000000001,123,1.9000000000000001 +2020,7,5,3,0,28.1,1.24,0.1502,0.62,128,782,738,3,24.6,367,219,0,538,0.261,81.3,38.660000000000004,0.14,990,5.4,122,1.8 +2020,7,5,4,0,28.900000000000002,1.25,0.1468,0.62,134,818,862,0,24.5,134,818,0,862,0.261,77.22,27.13,0.14,990,5.4,116,1.6 +2020,7,5,5,0,29.400000000000002,1.26,0.14700000000000002,0.62,137,831,918,0,24.3,137,831,0,918,0.26,74.29,19.96,0.14,989,5.5,115,1.3 +2020,7,5,6,0,29.700000000000003,1.27,0.14300000000000002,0.62,134,831,905,2,24.200000000000003,452,255,3,688,0.26,72.52,21.96,0.14,988,5.5,113,1.1 +2020,7,5,7,0,29.8,1.27,0.1469,0.62,131,806,819,1,24.1,131,806,0,819,0.26,71.71000000000001,31.43,0.14,988,5.6000000000000005,107,0.9 +2020,7,5,8,0,29.700000000000003,1.28,0.1486,0.62,122,762,672,1,24.200000000000003,122,762,0,672,0.259,72.25,43.74,0.14,987,5.6000000000000005,106,0.8 +2020,7,5,9,0,29.3,1.29,0.1527,0.62,109,678,477,8,24.5,222,59,0,255,0.259,75.58,57.03,0.14,987,5.7,115,0.7000000000000001 +2020,7,5,10,0,28.400000000000002,1.28,0.1658,0.62,85,510,254,8,24.700000000000003,110,330,0,219,0.259,80.42,70.71000000000001,0.14,988,5.800000000000001,73,0.6000000000000001 +2020,7,5,11,0,27.3,1.26,0.1728,0.62,34,169,50,6,24.8,32,146,3,46,0.259,86.10000000000001,84.44,0.14,988,5.800000000000001,269,0.5 +2020,7,5,12,0,26.8,1.26,0.18610000000000002,0.62,0,0,0,3,24.5,0,0,0,0,0.26,87.35000000000001,98.37,0.14,989,5.800000000000001,266,0.5 +2020,7,5,13,0,26.5,1.25,0.1993,0.62,0,0,0,8,24.3,0,0,0,0,0.261,87.86,111.98,0.14,989,5.9,291,0.5 +2020,7,5,14,0,26.200000000000003,1.24,0.2031,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.262,88.78,125.16,0.14,990,5.9,301,0.5 +2020,7,5,15,0,26.1,1.24,0.21000000000000002,0.62,0,0,0,8,24.1,0,0,0,0,0.263,88.64,137.47,0.14,990,5.9,329,0.4 +2020,7,5,16,0,25.8,1.24,0.2146,0.62,0,0,0,8,24,0,0,0,0,0.264,90.06,147.8,0.14,990,5.9,61,0.5 +2020,7,5,17,0,25.3,1.24,0.2132,0.62,0,0,0,7,24,0,0,0,0,0.264,92.7,153.68,0.14,990,5.9,91,0.6000000000000001 +2020,7,5,18,0,24.900000000000002,1.23,0.2222,0.62,0,0,0,3,24,0,0,0,0,0.263,94.59,152.12,0.14,989,5.9,104,0.7000000000000001 +2020,7,5,19,0,24.5,1.22,0.2325,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.263,96.5,144.07,0.14,989,5.9,110,0.8 +2020,7,5,20,0,24.3,1.21,0.23700000000000002,0.62,0,0,0,4,23.8,0,0,0,0,0.262,97.06,132.76,0.14,988,5.9,114,0.8 +2020,7,5,21,0,24.200000000000003,1.21,0.25470000000000004,0.62,0,0,0,4,23.700000000000003,0,0,0,0,0.262,97.06,120.03,0.14,988,5.800000000000001,112,0.8 +2020,7,5,22,0,24.1,1.21,0.2657,0.62,0,0,0,4,23.6,0,0,0,0,0.262,97.04,106.63,0.14,989,5.800000000000001,106,0.8 +2020,7,5,23,0,24.5,1.2,0.2644,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.262,96.60000000000001,92.93,0.14,989,5.800000000000001,101,0.7000000000000001 +2020,7,6,0,0,25.900000000000002,1.2,0.2743,0.62,70,245,117,4,24.700000000000003,63,6,3,64,0.262,93.38,79.02,0.15,990,5.800000000000001,122,1 +2020,7,6,1,0,27.200000000000003,1.22,0.2843,0.62,128,483,330,8,25,151,318,0,284,0.263,87.7,65.27,0.15,990,5.800000000000001,129,1.2000000000000002 +2020,7,6,2,0,28.3,1.24,0.2679,0.62,155,626,543,8,24.8,197,503,0,509,0.262,81.58,51.69,0.15,990,5.800000000000001,119,1 +2020,7,6,3,0,29.400000000000002,1.28,0.37870000000000004,0.62,212,634,707,8,24.6,282,480,0,657,0.262,75.64,38.660000000000004,0.15,990,5.9,97,0.9 +2020,7,6,4,0,29.6,1.28,0.38270000000000004,0.62,228,674,829,4,24.5,439,147,0,569,0.262,74.13,27.09,0.15,990,5.9,109,0.8 +2020,7,6,5,0,29.700000000000003,1.28,0.37310000000000004,0.62,231,696,886,4,24.5,385,34,0,417,0.262,73.83,19.87,0.15,989,6,157,0.9 +2020,7,6,6,0,29.700000000000003,1.27,0.37170000000000003,0.62,229,692,872,4,24.6,367,30,0,395,0.262,74.11,21.85,0.15,988,6.1000000000000005,168,1.2000000000000002 +2020,7,6,7,0,29.3,1.27,0.3773,0.62,222,663,788,8,24.700000000000003,416,138,0,534,0.262,76.22,31.34,0.15,987,6.1000000000000005,169,1.3 +2020,7,6,8,0,28.700000000000003,1.27,0.3629,0.62,199,616,645,8,24.900000000000002,282,412,0,580,0.262,80.04,43.660000000000004,0.15,987,6.2,163,1.6 +2020,7,6,9,0,28,1.27,0.39680000000000004,0.62,178,500,451,9,25.3,120,0,0,120,0.263,85.37,56.980000000000004,0.15,987,6.2,163,1.5 +2020,7,6,10,0,27.200000000000003,1.27,0.3866,0.62,125,340,237,9,25.200000000000003,76,0,0,76,0.263,89.08,70.66,0.15,988,6.2,147,1.4000000000000001 +2020,7,6,11,0,26.400000000000002,1.27,0.3519,0.62,36,82,44,6,25.3,7,0,3,7,0.263,93.7,84.4,0.15,988,6.2,143,1.3 +2020,7,6,12,0,25.900000000000002,1.29,0.3355,0.62,0,0,0,6,25.1,0,0,0,0,0.263,95.53,98.34,0.15,989,6.1000000000000005,140,1.3 +2020,7,6,13,0,25.6,1.3,0.3144,0.62,0,0,0,6,24.900000000000002,0,0,0,0,0.263,95.92,111.96000000000001,0.15,989,6.1000000000000005,139,1.4000000000000001 +2020,7,6,14,0,25.3,1.29,0.30260000000000004,0.62,0,0,0,6,24.700000000000003,0,0,0,0,0.264,96.54,125.17,0.15,990,6,139,1.4000000000000001 +2020,7,6,15,0,25,1.28,0.3064,0.62,0,0,0,6,24.6,0,0,0,0,0.265,97.4,137.49,0.15,990,6,140,1.1 +2020,7,6,16,0,24.8,1.26,0.309,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.266,97.69,147.85,0.15,990,6.1000000000000005,143,0.9 +2020,7,6,17,0,24.700000000000003,1.25,0.3003,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.267,97.13,153.77,0.15,990,6,152,0.8 +2020,7,6,18,0,24.6,1.24,0.30010000000000003,0.62,0,0,0,7,24.1,0,0,0,0,0.267,96.8,152.23,0.15,990,6,169,0.7000000000000001 +2020,7,6,19,0,24.6,1.23,0.28900000000000003,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.267,96.11,144.17000000000002,0.15,989,6,183,0.5 +2020,7,6,20,0,24.5,1.22,0.2621,0.62,0,0,0,7,23.8,0,0,0,0,0.267,96.12,132.85,0.15,989,6,153,0.4 +2020,7,6,21,0,24.400000000000002,1.23,0.26180000000000003,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.267,95.96000000000001,120.10000000000001,0.15,989,6,126,0.4 +2020,7,6,22,0,24.400000000000002,1.24,0.2605,0.62,0,0,0,3,23.6,0,0,0,0,0.266,95.5,106.69,0.15,990,6,142,0.4 +2020,7,6,23,0,24.6,1.23,0.2509,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.266,95.98,92.98,0.15,990,5.9,150,0.4 +2020,7,7,0,0,25.6,1.25,0.2674,0.62,69,252,117,0,24.700000000000003,69,252,0,117,0.267,94.71000000000001,79.06,0.15,991,5.9,151,0.7000000000000001 +2020,7,7,1,0,26.700000000000003,1.28,0.2733,0.62,125,493,331,3,25,143,368,0,297,0.267,90.38,65.29,0.15,992,5.9,130,1.1 +2020,7,7,2,0,27.3,1.29,0.2541,0.62,151,636,545,3,24.6,239,379,0,474,0.267,85.44,51.7,0.15,992,6,123,1.3 +2020,7,7,3,0,27.8,1.31,0.274,0.62,176,695,719,3,24.400000000000002,350,300,0,584,0.267,81.86,38.64,0.15,992,6,117,1.4000000000000001 +2020,7,7,4,0,28.200000000000003,1.31,0.2621,0.62,183,742,844,8,24.400000000000002,415,74,0,481,0.266,79.67,27.05,0.15,991,6,111,1.4000000000000001 +2020,7,7,5,0,28.400000000000002,1.3,0.2436,0.62,180,769,903,4,24.3,388,35,0,421,0.265,78.32000000000001,19.77,0.15,990,6,108,1.5 +2020,7,7,6,0,28.3,1.3,0.2741,0.62,191,747,885,8,24.200000000000003,390,39,0,426,0.264,78.5,21.740000000000002,0.15,990,6,108,1.6 +2020,7,7,7,0,28,1.3,0.2847,0.62,188,716,801,8,24.200000000000003,414,125,0,520,0.264,79.8,31.25,0.15,989,6,108,1.6 +2020,7,7,8,0,27.700000000000003,1.31,0.2659,0.62,167,678,658,7,24.200000000000003,254,19,0,268,0.264,81.5,43.59,0.15,989,6,111,1.6 +2020,7,7,9,0,27.400000000000002,1.31,0.2881,0.62,150,572,462,6,24.5,99,0,0,99,0.264,84.28,56.92,0.15,989,5.9,121,1.4000000000000001 +2020,7,7,10,0,26.700000000000003,1.3,0.2869,0.62,110,408,245,7,24.200000000000003,125,195,0,190,0.264,86.25,70.62,0.15,989,5.9,128,1.2000000000000002 +2020,7,7,11,0,25.8,1.29,0.2634,0.62,36,117,48,7,24.400000000000002,32,54,3,38,0.264,92.18,84.37,0.15,990,5.9,151,0.8 +2020,7,7,12,0,25.400000000000002,1.29,0.2584,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.265,92.89,98.32000000000001,0.15,991,5.9,180,0.8 +2020,7,7,13,0,25.1,1.3,0.2333,0.62,0,0,0,6,24.1,0,0,0,0,0.266,93.94,111.95,0.15,992,5.800000000000001,203,0.8 +2020,7,7,14,0,24.8,1.3,0.2018,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.267,94.9,125.17,0.15,992,5.7,221,0.7000000000000001 +2020,7,7,15,0,24.5,1.29,0.1842,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.267,95.26,137.52,0.15,992,5.7,232,0.7000000000000001 +2020,7,7,16,0,24.400000000000002,1.28,0.17500000000000002,0.62,0,0,0,6,23.5,0,0,0,0,0.268,94.79,147.92000000000002,0.15,992,5.6000000000000005,238,0.7000000000000001 +2020,7,7,17,0,24.3,1.27,0.16640000000000002,0.62,0,0,0,6,23.3,0,0,0,0,0.268,94.39,153.87,0.15,991,5.6000000000000005,242,0.7000000000000001 +2020,7,7,18,0,24.1,1.26,0.1663,0.62,0,0,0,6,23.200000000000003,0,0,0,0,0.267,94.91,152.34,0.15,991,5.6000000000000005,243,0.7000000000000001 +2020,7,7,19,0,24,1.25,0.1642,0.62,0,0,0,7,23.1,0,0,0,0,0.266,94.81,144.27,0.15,990,5.6000000000000005,243,0.7000000000000001 +2020,7,7,20,0,23.900000000000002,1.25,0.15610000000000002,0.62,0,0,0,6,23,0,0,0,0,0.266,94.88,132.93,0.15,990,5.5,243,0.7000000000000001 +2020,7,7,21,0,23.8,1.26,0.16290000000000002,0.62,0,0,0,6,23,0,0,0,0,0.266,95.05,120.17,0.15,990,5.5,243,0.7000000000000001 +2020,7,7,22,0,23.8,1.27,0.167,0.62,0,0,0,6,22.900000000000002,0,0,0,0,0.266,94.62,106.75,0.15,990,5.5,243,0.7000000000000001 +2020,7,7,23,0,24.1,1.28,0.1602,0.62,0,0,0,6,23.3,0,0,0,0,0.266,95.15,93.02,0.15,991,5.5,245,0.6000000000000001 +2020,7,8,0,0,25.3,1.3,0.1648,0.62,59,341,123,7,24,64,18,3,68,0.267,92.56,79.09,0.15,991,5.5,236,1 +2020,7,8,1,0,26.400000000000002,1.31,0.16740000000000002,0.62,99,584,343,7,24,170,115,0,218,0.267,86.86,65.31,0.15,992,5.6000000000000005,225,1 +2020,7,8,2,0,27,1.32,0.1641,0.62,120,706,558,3,23.6,119,0,0,119,0.267,81.58,51.7,0.15,992,5.6000000000000005,219,1 +2020,7,8,3,0,27.5,1.3,0.23040000000000002,0.62,160,725,726,0,23.5,160,725,0,726,0.267,78.66,38.63,0.15,992,5.7,223,1 +2020,7,8,4,0,27.900000000000002,1.31,0.23120000000000002,0.62,171,762,850,3,23.5,71,0,0,71,0.266,76.81,27,0.15,991,5.7,233,1 +2020,7,8,5,0,28.1,1.32,0.22560000000000002,0.62,173,781,908,8,23.400000000000002,165,6,0,171,0.265,75.88,19.67,0.15,991,5.800000000000001,241,1 +2020,7,8,6,0,28.1,1.37,0.323,0.62,210,722,881,7,23.400000000000002,206,10,0,215,0.263,75.67,21.63,0.15,990,5.800000000000001,247,1 +2020,7,8,7,0,27.8,1.3900000000000001,0.31370000000000003,0.62,198,703,799,7,23.5,310,22,0,329,0.261,77.26,31.16,0.15,989,5.800000000000001,255,1.1 +2020,7,8,8,0,27.400000000000002,1.4000000000000001,0.2899,0.62,174,666,657,6,23.8,115,0,0,115,0.26,80.62,43.52,0.15,989,5.800000000000001,258,1.2000000000000002 +2020,7,8,9,0,27.1,1.41,0.2844,0.62,148,579,465,6,24,151,0,0,151,0.259,83.02,56.86,0.15,989,5.800000000000001,260,1.1 +2020,7,8,10,0,26.700000000000003,1.41,0.2797,0.62,107,419,247,8,23.900000000000002,129,119,0,169,0.259,84.58,70.57000000000001,0.15,989,5.800000000000001,263,0.8 +2020,7,8,11,0,25.900000000000002,1.42,0.2622,0.62,36,127,49,7,23.700000000000003,33,66,3,39,0.26,87.54,84.33,0.15,990,5.800000000000001,269,0.5 +2020,7,8,12,0,25.700000000000003,1.44,0.24480000000000002,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.261,86.17,98.3,0.15,990,5.800000000000001,276,0.5 +2020,7,8,13,0,25.6,1.46,0.22640000000000002,0.62,0,0,0,7,23,0,0,0,0,0.262,85.82000000000001,111.95,0.15,991,5.7,293,0.5 +2020,7,8,14,0,25.400000000000002,1.48,0.2119,0.62,0,0,0,7,23,0,0,0,0,0.263,86.78,125.18,0.15,991,5.7,342,0.5 +2020,7,8,15,0,25,1.49,0.2051,0.62,0,0,0,7,23,0,0,0,0,0.263,88.82000000000001,137.55,0.15,991,5.7,23,0.7000000000000001 +2020,7,8,16,0,24.8,1.48,0.20270000000000002,0.62,0,0,0,6,22.900000000000002,0,0,0,0,0.264,89.2,147.98,0.15,991,5.6000000000000005,31,0.6000000000000001 +2020,7,8,17,0,24.8,1.48,0.2033,0.62,0,0,0,6,22.8,0,0,0,0,0.264,88.59,153.98,0.15,990,5.7,27,0.4 +2020,7,8,18,0,24.700000000000003,1.46,0.20470000000000002,0.62,0,0,0,7,22.8,0,0,0,0,0.263,89.07000000000001,152.46,0.15,990,5.7,282,0.2 +2020,7,8,19,0,24.400000000000002,1.45,0.203,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.262,90,144.38,0.15,990,5.7,248,0.5 +2020,7,8,20,0,24,1.43,0.19870000000000002,0.62,0,0,0,7,22.6,0,0,0,0,0.261,91.64,133.02,0.15,989,5.7,245,0.7000000000000001 +2020,7,8,21,0,23.8,1.41,0.2008,0.62,0,0,0,7,22.5,0,0,0,0,0.26,92.27,120.23,0.15,989,5.7,244,0.7000000000000001 +2020,7,8,22,0,23.6,1.3900000000000001,0.196,0.62,0,0,0,7,22.400000000000002,0,0,0,0,0.26,92.93,106.8,0.15,989,5.6000000000000005,247,0.7000000000000001 +2020,7,8,23,0,23.900000000000002,1.37,0.1841,0.62,0,0,0,7,22.900000000000002,0,0,0,0,0.26,94.25,93.06,0.15,990,5.6000000000000005,251,0.7000000000000001 +2020,7,9,0,0,25.200000000000003,1.37,0.1822,0.62,59,326,120,7,23.900000000000002,67,72,3,80,0.261,92.38,79.13,0.15,990,5.6000000000000005,255,1.2000000000000002 +2020,7,9,1,0,26.200000000000003,1.3800000000000001,0.1653,0.62,96,587,341,8,23.900000000000002,140,9,0,143,0.262,87.4,65.33,0.15,991,5.6000000000000005,261,1.4000000000000001 +2020,7,9,2,0,26.8,1.3800000000000001,0.1544,0.62,115,715,558,8,23.8,244,38,0,268,0.263,83.53,51.71,0.15,991,5.6000000000000005,267,1.5 +2020,7,9,3,0,27.400000000000002,1.3800000000000001,0.1583,0.62,130,776,736,7,23.900000000000002,342,59,0,388,0.263,81.09,38.61,0.15,991,5.6000000000000005,274,1.6 +2020,7,9,4,0,27.900000000000002,1.3800000000000001,0.1574,0.62,137,811,860,7,23.900000000000002,427,95,0,511,0.263,79.08,26.94,0.15,990,5.7,280,1.8 +2020,7,9,5,0,28.1,1.3800000000000001,0.1507,0.62,138,829,918,7,24,472,190,0,651,0.263,78.46000000000001,19.56,0.15,989,5.800000000000001,280,1.9000000000000001 +2020,7,9,6,0,28,1.36,0.1691,0.62,146,813,903,8,24,148,4,0,152,0.263,79.03,21.5,0.15,989,5.800000000000001,279,2 +2020,7,9,7,0,27.700000000000003,1.35,0.1802,0.62,145,784,817,8,24,275,16,0,289,0.262,80.41,31.060000000000002,0.15,988,5.9,277,2 +2020,7,9,8,0,27.1,1.34,0.17200000000000001,0.62,131,745,672,8,24.1,292,38,0,319,0.262,83.91,43.45,0.15,988,5.9,275,1.8 +2020,7,9,9,0,26.6,1.35,0.18660000000000002,0.62,120,651,476,8,24.400000000000002,236,113,0,297,0.262,87.5,56.81,0.15,988,5.9,268,1.4000000000000001 +2020,7,9,10,0,26,1.36,0.1832,0.62,89,498,255,8,24.3,114,314,0,218,0.262,90.45,70.53,0.15,988,5.9,263,1 +2020,7,9,11,0,25.400000000000002,1.36,0.1636,0.62,34,186,52,7,24.3,32,152,3,47,0.264,93.54,84.3,0.15,989,5.9,257,0.6000000000000001 +2020,7,9,12,0,25.1,1.37,0.15080000000000002,0.62,0,0,0,7,24,0,0,0,0,0.265,93.79,98.28,0.15,990,5.9,248,0.5 +2020,7,9,13,0,25,1.3800000000000001,0.14100000000000001,0.62,0,0,0,7,23.8,0,0,0,0,0.266,93.17,111.94,0.15,991,5.800000000000001,242,0.5 +2020,7,9,14,0,24.8,1.3900000000000001,0.1336,0.62,0,0,0,7,23.6,0,0,0,0,0.266,93.16,125.2,0.15,991,5.800000000000001,238,0.5 +2020,7,9,15,0,24.700000000000003,1.3800000000000001,0.1345,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.266,92.67,137.59,0.15,991,5.800000000000001,230,0.5 +2020,7,9,16,0,24.5,1.36,0.1371,0.62,0,0,0,7,23.3,0,0,0,0,0.266,93.05,148.06,0.15,991,5.800000000000001,221,0.5 +2020,7,9,17,0,24.3,1.36,0.1343,0.62,0,0,0,6,23.200000000000003,0,0,0,0,0.265,93.61,154.1,0.15,991,5.800000000000001,214,0.6000000000000001 +2020,7,9,18,0,24,1.36,0.1322,0.62,0,0,0,9,23.200000000000003,0,0,0,0,0.264,95.21000000000001,152.59,0.15,990,5.800000000000001,209,0.8 +2020,7,9,19,0,23.8,1.35,0.12860000000000002,0.62,0,0,0,9,23.200000000000003,0,0,0,0,0.263,96.39,144.49,0.15,990,5.800000000000001,210,0.8 +2020,7,9,20,0,23.700000000000003,1.32,0.12710000000000002,0.62,0,0,0,6,23.200000000000003,0,0,0,0,0.263,96.87,133.1,0.15,990,5.9,213,0.8 +2020,7,9,21,0,23.8,1.31,0.12860000000000002,0.62,0,0,0,6,23.200000000000003,0,0,0,0,0.262,96.34,120.3,0.15,990,5.9,214,0.7000000000000001 +2020,7,9,22,0,23.8,1.32,0.1228,0.62,0,0,0,6,23.1,0,0,0,0,0.262,95.92,106.86,0.15,990,5.9,223,0.7000000000000001 +2020,7,9,23,0,23.700000000000003,1.33,0.11180000000000001,0.62,0,0,0,6,23.3,0,0,0,0,0.262,97.35000000000001,93.11,0.15,991,5.9,225,0.7000000000000001 +2020,7,10,0,0,24.400000000000002,1.36,0.1071,0.62,50,406,126,6,23.8,43,0,3,43,0.263,96.71000000000001,79.16,0.15,992,5.800000000000001,222,1.2000000000000002 +2020,7,10,1,0,25.1,1.3800000000000001,0.10260000000000001,0.62,79,649,350,7,24,144,14,0,150,0.264,93.9,65.35,0.15,992,5.7,215,1.5 +2020,7,10,2,0,25.8,1.4000000000000001,0.0976,0.62,95,763,568,7,23.900000000000002,260,61,0,297,0.265,89.44,51.71,0.15,992,5.7,214,1.5 +2020,7,10,3,0,26.6,1.41,0.0965,0.62,106,823,749,7,23.5,225,11,0,234,0.265,82.94,38.59,0.15,992,5.6000000000000005,218,1.4000000000000001 +2020,7,10,4,0,27.3,1.42,0.0969,0.62,112,853,873,8,23.3,263,14,0,275,0.264,79,26.88,0.15,991,5.6000000000000005,221,1.2000000000000002 +2020,7,10,5,0,27.900000000000002,1.43,0.09720000000000001,0.62,115,866,931,7,23.3,449,79,0,523,0.263,76.12,19.45,0.15,991,5.6000000000000005,223,1.1 +2020,7,10,6,0,28.3,1.43,0.0978,0.62,115,863,918,7,23.200000000000003,390,38,0,425,0.262,74.07000000000001,21.38,0.15,990,5.6000000000000005,225,1.1 +2020,7,10,7,0,28.3,1.43,0.0989,0.62,111,844,835,7,23.200000000000003,411,105,0,501,0.261,73.86,30.96,0.15,989,5.5,232,1.1 +2020,7,10,8,0,28,1.44,0.0993,0.62,103,804,688,7,23.200000000000003,317,306,1,539,0.261,75.27,43.37,0.15,989,5.5,241,1.1 +2020,7,10,9,0,27.700000000000003,1.44,0.1032,0.62,92,728,491,8,23.700000000000003,207,360,0,405,0.261,78.77,56.75,0.15,989,5.5,248,1 +2020,7,10,10,0,27.1,1.45,0.1052,0.62,71,583,266,8,23.6,119,24,0,127,0.262,81.4,70.49,0.15,989,5.5,248,0.8 +2020,7,10,11,0,26.1,1.45,0.1046,0.62,31,251,56,8,23.8,27,0,3,27,0.263,87.23,84.28,0.15,990,5.5,249,0.6000000000000001 +2020,7,10,12,0,25.6,1.46,0.1032,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.263,87.93,98.27,0.15,991,5.5,243,0.6000000000000001 +2020,7,10,13,0,25.200000000000003,1.46,0.1008,0.62,0,0,0,4,23.200000000000003,0,0,0,0,0.264,88.71000000000001,111.94,0.15,991,5.5,236,0.6000000000000001 +2020,7,10,14,0,25,1.46,0.0984,0.62,0,0,0,0,23,0,0,0,0,0.264,88.69,125.21000000000001,0.15,992,5.4,230,0.7000000000000001 +2020,7,10,15,0,24.8,1.44,0.09770000000000001,0.62,0,0,0,0,22.8,0,0,0,0,0.265,88.66,137.63,0.15,992,5.4,229,0.7000000000000001 +2020,7,10,16,0,24.6,1.42,0.0969,0.62,0,0,0,0,22.6,0,0,0,0,0.266,88.78,148.14000000000001,0.15,992,5.5,233,0.7000000000000001 +2020,7,10,17,0,24.400000000000002,1.4000000000000001,0.0949,0.62,0,0,0,3,22.5,0,0,0,0,0.265,89.13,154.22,0.15,991,5.5,235,0.7000000000000001 +2020,7,10,18,0,24.200000000000003,1.3900000000000001,0.09230000000000001,0.62,0,0,0,8,22.400000000000002,0,0,0,0,0.265,89.60000000000001,152.72,0.15,990,5.4,235,0.7000000000000001 +2020,7,10,19,0,24.1,1.3800000000000001,0.0893,0.62,0,0,0,4,22.3,0,0,0,0,0.264,89.7,144.6,0.15,990,5.4,234,0.7000000000000001 +2020,7,10,20,0,24,1.37,0.08660000000000001,0.62,0,0,0,4,22.200000000000003,0,0,0,0,0.263,89.89,133.19,0.15,989,5.4,232,0.7000000000000001 +2020,7,10,21,0,24,1.37,0.0855,0.62,0,0,0,3,22.200000000000003,0,0,0,0,0.263,89.69,120.37,0.15,989,5.4,229,0.7000000000000001 +2020,7,10,22,0,23.900000000000002,1.37,0.0847,0.62,0,0,0,4,22.200000000000003,0,0,0,0,0.263,90.23,106.91,0.15,989,5.4,221,0.7000000000000001 +2020,7,10,23,0,24.1,1.3800000000000001,0.0838,0.62,0,0,0,1,22.700000000000003,0,0,0,0,0.263,92.10000000000001,93.15,0.15,990,5.4,211,0.6000000000000001 +2020,7,11,0,0,25.6,1.3900000000000001,0.0833,0.62,46,440,129,0,23.700000000000003,46,440,0,129,0.263,89.4,79.19,0.15,990,5.4,193,1 +2020,7,11,1,0,26.900000000000002,1.3900000000000001,0.085,0.62,74,670,353,0,23.900000000000002,74,670,0,353,0.264,83.74,65.37,0.15,991,5.4,180,1.5 +2020,7,11,2,0,27.8,1.3800000000000001,0.0901,0.62,92,771,570,0,24,92,771,0,570,0.264,79.86,51.71,0.15,991,5.5,175,1.7000000000000002 +2020,7,11,3,0,28.400000000000002,1.3,0.1058,0.62,109,816,747,0,24.200000000000003,109,816,0,747,0.263,77.95,38.56,0.15,991,5.5,174,1.7000000000000002 +2020,7,11,4,0,28.6,1.29,0.1101,0.62,119,844,872,3,24.200000000000003,430,100,0,519,0.262,77.18,26.82,0.15,990,5.5,176,1.6 +2020,7,11,5,0,28.700000000000003,1.28,0.1121,0.62,123,855,929,3,24.200000000000003,463,103,0,560,0.262,76.67,19.330000000000002,0.15,990,5.6000000000000005,178,1.6 +2020,7,11,6,0,28.6,1.17,0.1612,0.62,145,818,908,0,24.1,145,818,0,908,0.261,76.84,21.25,0.15,990,5.6000000000000005,177,1.6 +2020,7,11,7,0,28.3,1.16,0.16240000000000002,0.62,141,796,824,7,24.1,297,19,0,314,0.26,78.08,30.86,0.15,989,5.6000000000000005,174,1.6 +2020,7,11,8,0,27.900000000000002,1.16,0.15990000000000001,0.62,130,754,678,6,24.6,173,4,0,176,0.259,82.13,43.300000000000004,0.15,989,5.5,173,1.3 +2020,7,11,9,0,27.3,1.16,0.1762,0.62,118,658,480,8,24.400000000000002,82,0,0,82,0.259,84.39,56.69,0.15,989,5.6000000000000005,173,1.3 +2020,7,11,10,0,26.6,1.18,0.1713,0.62,89,506,258,7,24.6,37,0,0,37,0.258,88.61,70.45,0.15,990,5.6000000000000005,170,1.2000000000000002 +2020,7,11,11,0,25.700000000000003,1.18,0.1572,0.62,35,185,53,6,24.6,9,0,3,9,0.259,93.75,84.25,0.15,990,5.6000000000000005,167,0.9 +2020,7,11,12,0,25.3,1.19,0.1444,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.26,94.66,98.25,0.15,991,5.6000000000000005,163,0.9 +2020,7,11,13,0,25,1.2,0.137,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.26,95.34,111.94,0.15,991,5.6000000000000005,158,1 +2020,7,11,14,0,24.8,1.21,0.1333,0.62,0,0,0,8,24,0,0,0,0,0.261,95.60000000000001,125.23,0.15,991,5.6000000000000005,157,1 +2020,7,11,15,0,24.6,1.21,0.13390000000000002,0.62,0,0,0,4,23.900000000000002,0,0,0,0,0.261,96.09,137.68,0.15,992,5.6000000000000005,158,1 +2020,7,11,16,0,24.3,1.21,0.1359,0.62,0,0,0,4,23.8,0,0,0,0,0.262,96.97,148.22,0.15,991,5.6000000000000005,167,1 +2020,7,11,17,0,24.1,1.21,0.1373,0.62,0,0,0,4,23.700000000000003,0,0,0,0,0.262,97.51,154.35,0.15,990,5.5,178,1.1 +2020,7,11,18,0,24,1.21,0.14400000000000002,0.62,0,0,0,4,23.6,0,0,0,0,0.261,97.68,152.86,0.15,990,5.5,187,1.1 +2020,7,11,19,0,23.900000000000002,1.21,0.1486,0.62,0,0,0,4,23.5,0,0,0,0,0.26,97.91,144.71,0.15,989,5.5,193,1.1 +2020,7,11,20,0,24,1.21,0.14930000000000002,0.62,0,0,0,4,23.5,0,0,0,0,0.259,97.02,133.28,0.15,990,5.6000000000000005,212,0.9 +2020,7,11,21,0,24,1.23,0.1572,0.62,0,0,0,4,23.400000000000002,0,0,0,0,0.258,96.39,120.45,0.15,990,5.6000000000000005,240,0.8 +2020,7,11,22,0,23.900000000000002,1.26,0.1505,0.62,0,0,0,4,23.200000000000003,0,0,0,0,0.258,96.06,106.97,0.15,990,5.6000000000000005,247,0.8 +2020,7,11,23,0,24.1,1.28,0.1351,0.62,0,0,0,3,23.5,0,0,0,0,0.258,96.46000000000001,93.19,0.15,991,5.5,245,0.8 +2020,7,12,0,0,25.3,1.3,0.1255,0.62,53,382,125,3,24.3,65,42,3,73,0.258,94.14,79.21000000000001,0.15,991,5.5,238,1.4000000000000001 +2020,7,12,1,0,26.200000000000003,1.33,0.1163,0.62,84,635,349,8,24.3,169,129,0,223,0.258,89.48,65.38,0.15,991,5.5,227,1.9000000000000001 +2020,7,12,2,0,26.8,1.33,0.11170000000000001,0.62,101,752,567,8,24,269,83,0,320,0.258,84.57000000000001,51.7,0.15,991,5.5,219,2.1 +2020,7,12,3,0,27.5,1.27,0.1226,0.62,118,803,746,3,24,364,241,0,552,0.258,81.26,38.53,0.15,991,5.4,215,2.2 +2020,7,12,4,0,28,1.25,0.1218,0.62,124,836,871,0,24.1,124,836,0,871,0.258,79.26,26.75,0.15,990,5.4,214,2.2 +2020,7,12,5,0,28.400000000000002,1.23,0.11860000000000001,0.62,126,852,930,1,24.1,126,852,0,930,0.258,77.8,19.2,0.15,990,5.4,214,2.2 +2020,7,12,6,0,28.6,1.17,0.167,0.62,148,816,909,3,24.1,400,42,0,439,0.258,76.89,21.11,0.15,989,5.4,216,2.1 +2020,7,12,7,0,28.6,1.1500000000000001,0.1582,0.62,139,800,827,0,24.1,139,800,0,827,0.257,76.61,30.76,0.15,988,5.4,220,1.9000000000000001 +2020,7,12,8,0,28.5,1.1400000000000001,0.15080000000000002,0.62,126,762,681,1,24,126,762,0,681,0.257,76.75,43.22,0.15,988,5.4,221,1.7000000000000002 +2020,7,12,9,0,28,1.17,0.1442,0.62,108,688,486,8,24.1,220,301,0,386,0.257,79.57000000000001,56.64,0.15,988,5.4,219,1.5 +2020,7,12,10,0,27.200000000000003,1.18,0.1375,0.62,81,543,263,8,24.400000000000002,113,8,0,116,0.257,84.56,70.41,0.15,988,5.5,217,1.2000000000000002 +2020,7,12,11,0,25.900000000000002,1.19,0.1293,0.62,34,214,55,6,24.3,25,0,3,25,0.258,90.97,84.22,0.15,989,5.5,216,0.8 +2020,7,12,12,0,25.400000000000002,1.2,0.1242,0.62,0,0,0,6,24,0,0,0,0,0.259,92.14,98.24000000000001,0.15,990,5.5,215,0.8 +2020,7,12,13,0,25.1,1.21,0.12040000000000001,0.62,0,0,0,6,23.8,0,0,0,0,0.26,92.72,111.95,0.15,990,5.5,214,0.8 +2020,7,12,14,0,24.900000000000002,1.22,0.1169,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.261,93.14,125.26,0.15,991,5.5,213,0.8 +2020,7,12,15,0,24.8,1.23,0.11410000000000001,0.62,0,0,0,6,23.6,0,0,0,0,0.261,93.04,137.73,0.15,991,5.6000000000000005,211,0.8 +2020,7,12,16,0,24.700000000000003,1.24,0.1124,0.62,0,0,0,6,23.5,0,0,0,0,0.26,93.09,148.31,0.15,991,5.6000000000000005,212,0.8 +2020,7,12,17,0,24.5,1.24,0.1126,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.26,93.84,154.48,0.15,990,5.5,212,0.8 +2020,7,12,18,0,24.3,1.25,0.1143,0.62,0,0,0,4,23.400000000000002,0,0,0,0,0.259,94.9,153,0.15,990,5.5,209,0.8 +2020,7,12,19,0,24.200000000000003,1.26,0.11660000000000001,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.259,95.34,144.83,0.15,989,5.5,206,0.8 +2020,7,12,20,0,24.1,1.28,0.11810000000000001,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.26,95.91,133.37,0.15,989,5.5,203,0.8 +2020,7,12,21,0,24,1.29,0.1226,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.26,96.28,120.52,0.15,989,5.5,205,0.8 +2020,7,12,22,0,23.900000000000002,1.3,0.1279,0.62,0,0,0,8,23.3,0,0,0,0,0.26,96.58,107.02,0.15,990,5.5,209,0.8 +2020,7,12,23,0,24.1,1.3,0.136,0.62,0,0,0,7,23.5,0,0,0,0,0.26,96.69,93.23,0.15,990,5.6000000000000005,206,0.7000000000000001 +2020,7,13,0,0,25.1,1.29,0.149,0.62,56,353,122,6,24.400000000000002,24,0,3,24,0.26,95.77,79.24,0.15,991,5.6000000000000005,192,1 +2020,7,13,1,0,25.900000000000002,1.29,0.1554,0.62,96,593,343,6,24.700000000000003,21,0,0,21,0.26,93.11,65.39,0.15,992,5.7,188,1.4000000000000001 +2020,7,13,2,0,26.400000000000002,1.29,0.16010000000000002,0.62,119,709,559,6,24.400000000000002,55,0,0,55,0.259,89.05,51.7,0.15,992,5.7,193,1.5 +2020,7,13,3,0,26.700000000000003,1.3,0.1626,0.62,134,772,739,6,24,298,28,0,320,0.259,85.27,38.5,0.15,992,5.7,200,1.7000000000000002 +2020,7,13,4,0,27,1.33,0.15480000000000002,0.62,139,813,865,6,23.8,350,29,0,376,0.258,82.74,26.68,0.15,991,5.7,201,1.8 +2020,7,13,5,0,27.3,1.35,0.1424,0.62,137,836,927,6,23.8,400,39,0,437,0.258,81.12,19.07,0.15,991,5.6000000000000005,202,1.8 +2020,7,13,6,0,27.6,1.37,0.12840000000000001,0.62,130,842,916,6,23.8,395,39,0,432,0.257,79.62,20.97,0.15,990,5.6000000000000005,204,1.8 +2020,7,13,7,0,27.6,1.3800000000000001,0.11910000000000001,0.62,121,829,834,6,23.700000000000003,308,22,0,327,0.257,79.34,30.66,0.15,990,5.6000000000000005,206,1.7000000000000002 +2020,7,13,8,0,27.3,1.3900000000000001,0.112,0.62,109,794,688,7,23.700000000000003,328,83,0,388,0.257,80.61,43.15,0.15,989,5.6000000000000005,207,1.5 +2020,7,13,9,0,27,1.4000000000000001,0.1062,0.62,93,726,493,7,24.1,228,65,0,264,0.257,83.96000000000001,56.58,0.15,989,5.5,208,1.1 +2020,7,13,10,0,26.400000000000002,1.41,0.1003,0.62,71,590,269,7,23.8,25,0,0,25,0.257,85.64,70.37,0.15,989,5.5,213,1 +2020,7,13,11,0,25.400000000000002,1.42,0.0949,0.62,31,266,58,7,23.900000000000002,9,0,3,9,0.258,91.27,84.2,0.15,990,5.4,221,0.7000000000000001 +2020,7,13,12,0,25,1.42,0.091,0.62,0,0,0,7,23.5,0,0,0,0,0.259,91.67,98.23,0.15,990,5.4,226,0.7000000000000001 +2020,7,13,13,0,24.700000000000003,1.42,0.0889,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.26,92.53,111.95,0.15,991,5.4,233,0.7000000000000001 +2020,7,13,14,0,24.5,1.43,0.08710000000000001,0.62,0,0,0,8,23.3,0,0,0,0,0.261,92.93,125.28,0.15,991,5.300000000000001,239,0.8 +2020,7,13,15,0,24.200000000000003,1.44,0.0863,0.62,0,0,0,8,23.1,0,0,0,0,0.262,93.71000000000001,137.79,0.15,991,5.4,243,0.8 +2020,7,13,16,0,24,1.44,0.08750000000000001,0.62,0,0,0,4,23,0,0,0,0,0.263,93.87,148.41,0.15,991,5.4,243,0.8 +2020,7,13,17,0,23.900000000000002,1.43,0.0901,0.62,0,0,0,7,22.8,0,0,0,0,0.264,93.69,154.62,0.15,990,5.4,242,0.8 +2020,7,13,18,0,23.8,1.43,0.0932,0.62,0,0,0,8,22.700000000000003,0,0,0,0,0.264,93.71000000000001,153.15,0.15,990,5.4,242,0.8 +2020,7,13,19,0,23.700000000000003,1.44,0.09430000000000001,0.62,0,0,0,8,22.6,0,0,0,0,0.263,93.65,144.95000000000002,0.15,989,5.4,242,0.8 +2020,7,13,20,0,23.6,1.45,0.09390000000000001,0.62,0,0,0,3,22.5,0,0,0,0,0.263,93.77,133.46,0.15,989,5.4,240,0.8 +2020,7,13,21,0,23.700000000000003,1.45,0.09970000000000001,0.62,0,0,0,8,22.5,0,0,0,0,0.263,92.94,120.59,0.15,989,5.4,236,0.8 +2020,7,13,22,0,23.700000000000003,1.44,0.1042,0.62,0,0,0,8,22.5,0,0,0,0,0.263,92.92,107.08,0.15,989,5.4,226,0.7000000000000001 +2020,7,13,23,0,24,1.44,0.1042,0.62,0,0,0,3,23,0,0,0,0,0.262,94.02,93.27,0.15,990,5.4,205,0.7000000000000001 +2020,7,14,0,0,25.200000000000003,1.45,0.10690000000000001,0.62,50,408,126,8,23.900000000000002,59,267,3,109,0.262,92.4,79.26,0.15,990,5.4,173,1 +2020,7,14,1,0,26.200000000000003,1.47,0.10490000000000001,0.62,81,649,351,7,24.1,169,137,0,226,0.262,88.4,65.4,0.15,991,5.4,153,1.3 +2020,7,14,2,0,27.200000000000003,1.48,0.10400000000000001,0.62,98,761,569,7,23.8,269,84,0,321,0.262,81.89,51.69,0.15,991,5.4,141,1.6 +2020,7,14,3,0,28.200000000000003,1.49,0.10400000000000001,0.62,109,820,750,8,23.900000000000002,351,301,0,587,0.261,77.67,38.46,0.15,991,5.4,141,1.9000000000000001 +2020,7,14,4,0,28.900000000000002,1.48,0.10600000000000001,0.62,116,849,875,8,24,422,288,0,680,0.26,75.07000000000001,26.6,0.15,990,5.5,148,2 +2020,7,14,5,0,29.200000000000003,1.44,0.1125,0.62,122,857,933,7,24.1,425,357,0,763,0.26,74.06,18.93,0.15,990,5.5,153,1.9000000000000001 +2020,7,14,6,0,29.1,1.3900000000000001,0.1217,0.62,126,847,918,7,24,444,299,0,724,0.259,74.26,20.830000000000002,0.15,989,5.6000000000000005,155,1.9000000000000001 +2020,7,14,7,0,28.8,1.35,0.132,0.62,126,820,833,3,24,361,393,0,699,0.26,75.27,30.55,0.15,989,5.6000000000000005,154,1.9000000000000001 +2020,7,14,8,0,28.3,1.33,0.14120000000000002,0.62,121,771,684,8,24.200000000000003,260,472,0,605,0.26,78.43,43.07,0.15,988,5.7,152,1.7000000000000002 +2020,7,14,9,0,27.700000000000003,1.3,0.16340000000000002,0.62,114,672,484,7,24.3,230,252,0,369,0.261,81.76,56.53,0.15,989,5.7,148,1.6 +2020,7,14,10,0,26.900000000000002,1.28,0.1822,0.62,91,500,259,6,24.5,104,0,0,104,0.261,86.5,70.33,0.15,989,5.7,144,1.4000000000000001 +2020,7,14,11,0,25.900000000000002,1.27,0.1864,0.62,36,168,53,6,24.700000000000003,25,0,3,25,0.261,93,84.18,0.15,990,5.7,139,1.1 +2020,7,14,12,0,25.5,1.28,0.1852,0.62,0,0,0,6,24.5,0,0,0,0,0.261,94.12,98.22,0.15,990,5.800000000000001,132,1.1 +2020,7,14,13,0,25.200000000000003,1.28,0.18280000000000002,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.262,95.07000000000001,111.96000000000001,0.15,991,5.800000000000001,128,1.1 +2020,7,14,14,0,25,1.3,0.1784,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.262,95.55,125.32000000000001,0.15,991,5.800000000000001,126,1.1 +2020,7,14,15,0,24.700000000000003,1.31,0.1772,0.62,0,0,0,3,24.1,0,0,0,0,0.262,96.67,137.85,0.15,991,5.800000000000001,124,1.1 +2020,7,14,16,0,24.5,1.33,0.1776,0.62,0,0,0,1,24,0,0,0,0,0.262,97.21000000000001,148.51,0.15,991,5.800000000000001,122,1.1 +2020,7,14,17,0,24.3,1.34,0.1762,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.261,97.59,154.77,0.15,990,5.800000000000001,120,1.1 +2020,7,14,18,0,24.1,1.35,0.18050000000000002,0.62,0,0,0,8,23.8,0,0,0,0,0.261,97.99000000000001,153.3,0.15,989,5.7,119,1.1 +2020,7,14,19,0,23.900000000000002,1.36,0.18630000000000002,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.26,98.52,145.07,0.15,989,5.7,119,1 +2020,7,14,20,0,23.8,1.36,0.1864,0.62,0,0,0,0,23.5,0,0,0,0,0.26,98.49000000000001,133.56,0.15,988,5.7,123,1 +2020,7,14,21,0,23.8,1.37,0.1966,0.62,0,0,0,0,23.5,0,0,0,0,0.26,98.12,120.66,0.15,988,5.7,129,1 +2020,7,14,22,0,23.8,1.3800000000000001,0.2088,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.26,97.85000000000001,107.13,0.15,989,5.7,135,1 +2020,7,14,23,0,24.200000000000003,1.3800000000000001,0.20520000000000002,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.259,97.15,93.31,0.15,989,5.7,143,0.9 +2020,7,15,0,0,25.5,1.4000000000000001,0.2019,0.62,62,306,118,1,24.1,62,306,0,118,0.259,91.76,79.29,0.14,990,5.7,150,1.3 +2020,7,15,1,0,26.700000000000003,1.42,0.1895,0.62,104,565,339,7,24.1,169,118,0,218,0.259,85.87,65.4,0.14,990,5.7,156,1.3 +2020,7,15,2,0,27.8,1.45,0.1753,0.62,123,700,558,0,24.200000000000003,123,700,0,558,0.259,80.87,51.67,0.14,990,5.6000000000000005,160,1.1 +2020,7,15,3,0,28.900000000000002,1.41,0.1653,0.62,134,773,740,0,24.3,134,773,0,740,0.259,76.08,38.42,0.14,990,5.6000000000000005,151,0.8 +2020,7,15,4,0,29.5,1.4000000000000001,0.1623,0.62,141,810,866,0,24.3,141,810,0,866,0.258,73.52,26.51,0.14,989,5.6000000000000005,108,0.6000000000000001 +2020,7,15,5,0,29.900000000000002,1.4000000000000001,0.1605,0.62,144,825,925,0,24.3,144,825,0,925,0.258,71.84,18.78,0.14,989,5.6000000000000005,51,0.5 +2020,7,15,6,0,30,1.42,0.2192,0.62,168,786,903,3,24.200000000000003,446,81,0,522,0.258,71.31,20.68,0.14,988,5.7,12,0.6000000000000001 +2020,7,15,7,0,30,1.43,0.2141,0.62,160,766,820,7,24.200000000000003,212,10,0,221,0.258,71.23,30.45,0.14,987,5.7,340,0.7000000000000001 +2020,7,15,8,0,29.6,1.43,0.2136,0.62,148,720,674,8,24.3,289,406,0,586,0.258,73.31,43,0.14,987,5.7,292,0.8 +2020,7,15,9,0,28.900000000000002,1.42,0.2348,0.62,134,618,476,8,24.700000000000003,236,212,0,353,0.258,78.17,56.480000000000004,0.14,987,5.800000000000001,253,0.9 +2020,7,15,10,0,28.200000000000003,1.41,0.2447,0.62,102,450,254,3,24.8,119,283,0,215,0.257,81.94,70.3,0.14,988,5.9,243,0.8 +2020,7,15,11,0,27,1.41,0.23820000000000002,0.62,37,143,52,6,25.200000000000003,37,143,5,52,0.258,89.69,84.16,0.14,988,5.9,232,0.7000000000000001 +2020,7,15,12,0,26.400000000000002,1.41,0.2437,0.62,0,0,0,9,25.1,0,0,0,0,0.259,92.8,98.22,0.14,989,6,218,0.7000000000000001 +2020,7,15,13,0,26,1.3900000000000001,0.24980000000000002,0.62,0,0,0,9,25,0,0,0,0,0.26,93.95,111.98,0.14,990,6,209,0.7000000000000001 +2020,7,15,14,0,25.700000000000003,1.37,0.24500000000000002,0.62,0,0,0,6,24.8,0,0,0,0,0.261,94.87,125.35000000000001,0.14,990,6.1000000000000005,202,0.8 +2020,7,15,15,0,25.5,1.34,0.25420000000000004,0.62,0,0,0,6,24.700000000000003,0,0,0,0,0.261,95.41,137.91,0.14,990,6.1000000000000005,190,0.8 +2020,7,15,16,0,25.3,1.3,0.26530000000000004,0.62,0,0,0,8,24.6,0,0,0,0,0.262,96.10000000000001,148.62,0.14,990,6.1000000000000005,171,0.8 +2020,7,15,17,0,25.1,1.25,0.26940000000000003,0.62,0,0,0,4,24.6,0,0,0,0,0.262,96.9,154.92000000000002,0.14,990,6.1000000000000005,154,0.8 +2020,7,15,18,0,25,1.23,0.28400000000000003,0.62,0,0,0,3,24.5,0,0,0,0,0.261,96.99000000000001,153.46,0.14,989,6,142,0.9 +2020,7,15,19,0,24.8,1.21,0.2747,0.62,0,0,0,3,24.400000000000002,0,0,0,0,0.26,97.59,145.20000000000002,0.14,988,6,135,0.9 +2020,7,15,20,0,24.700000000000003,1.19,0.2477,0.62,0,0,0,3,24.3,0,0,0,0,0.259,97.68,133.65,0.14,988,6,130,1 +2020,7,15,21,0,24.6,1.18,0.22970000000000002,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.259,97.76,120.73,0.14,988,5.9,129,1 +2020,7,15,22,0,24.5,1.18,0.20140000000000002,0.62,0,0,0,8,24.1,0,0,0,0,0.258,97.79,107.18,0.14,988,5.9,130,1 +2020,7,15,23,0,24.900000000000002,1.18,0.1736,0.62,0,0,0,1,24.400000000000002,0,0,0,0,0.257,97.17,93.34,0.14,989,5.9,130,1.1 +2020,7,16,0,0,26,1.2,0.16160000000000002,0.62,58,334,120,3,25,44,0,3,44,0.256,94.09,79.31,0.14,989,5.9,132,1.7000000000000002 +2020,7,16,1,0,26.900000000000002,1.23,0.1496,0.62,93,597,341,3,25.200000000000003,103,0,0,103,0.257,90.45,65.41,0.14,990,5.9,129,1.8 +2020,7,16,2,0,27.700000000000003,1.25,0.1393,0.62,111,726,561,0,25.1,111,726,0,561,0.258,85.72,51.660000000000004,0.14,990,5.800000000000001,122,1.8 +2020,7,16,3,0,28.6,1.28,0.1388,0.62,123,790,742,1,25,123,790,0,742,0.259,80.79,38.38,0.14,989,5.800000000000001,109,1.6 +2020,7,16,4,0,29.200000000000003,1.3,0.1422,0.62,133,821,868,3,24.900000000000002,288,17,0,302,0.26,77.8,26.42,0.14,988,5.800000000000001,92,1.6 +2020,7,16,5,0,29.6,1.3,0.1374,0.62,134,838,928,3,24.900000000000002,429,55,0,481,0.261,75.85000000000001,18.63,0.14,988,5.800000000000001,81,1.6 +2020,7,16,6,0,29.5,1.27,0.17350000000000002,0.62,150,812,910,8,24.900000000000002,463,230,0,679,0.261,76.36,20.53,0.14,987,5.800000000000001,78,1.6 +2020,7,16,7,0,29.3,1.27,0.18610000000000002,0.62,150,782,825,8,25,359,39,0,392,0.26,77.69,30.34,0.14,986,5.800000000000001,81,1.7000000000000002 +2020,7,16,8,0,28.900000000000002,1.28,0.1772,0.62,135,743,679,7,25.200000000000003,343,168,0,466,0.26,80.7,42.93,0.14,986,5.800000000000001,86,1.8 +2020,7,16,9,0,28.400000000000002,1.29,0.1938,0.62,123,648,481,8,25.5,239,178,0,338,0.259,84.4,56.43,0.14,986,5.800000000000001,87,1.6 +2020,7,16,10,0,27.6,1.3,0.20040000000000002,0.62,94,485,258,8,25.200000000000003,49,0,0,49,0.259,86.85000000000001,70.26,0.14,986,5.800000000000001,85,1.4000000000000001 +2020,7,16,11,0,26.6,1.3,0.1956,0.62,36,164,53,8,25.400000000000002,16,0,3,16,0.26,93.09,84.14,0.14,987,5.9,90,0.9 +2020,7,16,12,0,26.200000000000003,1.31,0.2068,0.62,0,0,0,3,25.1,0,0,0,0,0.261,93.76,98.22,0.14,988,5.9,94,0.8 +2020,7,16,13,0,25.900000000000002,1.3,0.2156,0.62,0,0,0,6,24.900000000000002,0,0,0,0,0.262,94.03,111.99000000000001,0.14,989,6,98,0.7000000000000001 +2020,7,16,14,0,25.700000000000003,1.28,0.2189,0.62,0,0,0,6,24.6,0,0,0,0,0.262,93.87,125.39,0.14,990,6,101,0.6000000000000001 +2020,7,16,15,0,25.5,1.26,0.24050000000000002,0.62,0,0,0,6,24.5,0,0,0,0,0.262,93.98,137.98,0.14,991,6.1000000000000005,101,0.6000000000000001 +2020,7,16,16,0,25.3,1.24,0.2485,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.262,94.56,148.73,0.14,991,6.1000000000000005,98,0.5 +2020,7,16,17,0,25,1.23,0.2291,0.62,0,0,0,6,24.3,0,0,0,0,0.262,95.62,155.08,0.14,990,6,95,0.4 +2020,7,16,18,0,24.8,1.24,0.23220000000000002,0.62,0,0,0,6,24.1,0,0,0,0,0.261,95.88,153.62,0.14,989,6,92,0.4 +2020,7,16,19,0,24.6,1.25,0.23320000000000002,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.261,96.11,145.32,0.14,989,5.9,82,0.4 +2020,7,16,20,0,24.400000000000002,1.25,0.2195,0.62,0,0,0,7,23.8,0,0,0,0,0.26,96.45,133.75,0.14,988,5.800000000000001,65,0.4 +2020,7,16,21,0,24.200000000000003,1.26,0.2278,0.62,0,0,0,4,23.700000000000003,0,0,0,0,0.26,97.18,120.8,0.14,989,5.800000000000001,38,0.5 +2020,7,16,22,0,24,1.28,0.22490000000000002,0.62,0,0,0,3,23.6,0,0,0,0,0.26,97.57000000000001,107.23,0.14,989,5.7,21,0.7000000000000001 +2020,7,16,23,0,24.3,1.29,0.2061,0.62,0,0,0,0,23.8,0,0,0,0,0.259,97.3,93.38,0.14,989,5.5,20,0.7000000000000001 +2020,7,17,0,0,25.5,1.32,0.2026,0.62,62,302,118,0,24.5,62,302,1,118,0.26,94.37,79.32000000000001,0.14,990,5.4,62,1.1 +2020,7,17,1,0,27,1.34,0.1883,0.62,104,566,340,0,24.6,104,566,0,340,0.261,86.63,65.41,0.14,990,5.300000000000001,93,1.2000000000000002 +2020,7,17,2,0,28.1,1.34,0.1693,0.62,122,706,560,0,24.200000000000003,122,706,0,560,0.262,79.24,51.64,0.14,990,5.2,105,1 +2020,7,17,3,0,28.900000000000002,1.32,0.12040000000000001,0.62,116,808,750,0,24,116,808,0,750,0.262,74.97,38.33,0.14,990,5.2,117,0.9 +2020,7,17,4,0,29.3,1.33,0.11710000000000001,0.62,122,842,876,0,24,122,842,0,876,0.262,73.3,26.330000000000002,0.14,990,5.300000000000001,133,1 +2020,7,17,5,0,29.6,1.32,0.11910000000000001,0.62,126,854,936,3,24.1,458,87,0,540,0.261,72.57000000000001,18.47,0.14,989,5.300000000000001,145,1.2000000000000002 +2020,7,17,6,0,29.700000000000003,1.28,0.10990000000000001,0.62,121,857,924,3,24.200000000000003,353,25,0,376,0.261,72.5,20.37,0.14,988,5.4,154,1.4000000000000001 +2020,7,17,7,0,29.5,1.28,0.1188,0.62,121,831,839,3,24.3,352,35,0,382,0.26,73.72,30.23,0.14,988,5.4,162,1.6 +2020,7,17,8,0,28.900000000000002,1.27,0.12190000000000001,0.62,113,787,690,3,24.5,313,336,0,559,0.26,77.02,42.85,0.14,988,5.5,175,1.7000000000000002 +2020,7,17,9,0,28.400000000000002,1.28,0.161,0.62,113,677,487,3,24.900000000000002,231,70,0,269,0.26,81.23,56.38,0.14,988,5.5,179,1.4000000000000001 +2020,7,17,10,0,27.6,1.29,0.1865,0.62,92,499,260,3,24.700000000000003,66,0,0,66,0.26,84.26,70.23,0.14,988,5.6000000000000005,172,1.1 +2020,7,17,11,0,26.5,1.29,0.1773,0.62,36,178,54,1,24.900000000000002,36,178,0,54,0.26,91.17,84.13,0.14,989,5.6000000000000005,179,0.7000000000000001 +2020,7,17,12,0,26,1.31,0.17950000000000002,0.62,0,0,0,0,24.700000000000003,0,0,1,0,0.261,92.62,98.22,0.14,989,5.6000000000000005,195,0.6000000000000001 +2020,7,17,13,0,25.700000000000003,1.34,0.16490000000000002,0.62,0,0,0,0,24.1,0,0,0,0,0.261,90.8,112.01,0.14,990,5.5,207,0.6000000000000001 +2020,7,17,14,0,25.5,1.3800000000000001,0.1443,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.261,89.56,125.43,0.14,990,5.4,219,0.6000000000000001 +2020,7,17,15,0,25.3,1.4000000000000001,0.13,0.62,0,0,0,9,23.400000000000002,0,0,0,0,0.262,89.11,138.05,0.14,991,5.4,236,0.5 +2020,7,17,16,0,25.1,1.41,0.12000000000000001,0.62,0,0,0,6,23.200000000000003,0,0,0,0,0.264,89.24,148.85,0.14,990,5.300000000000001,268,0.5 +2020,7,17,17,0,24.8,1.42,0.113,0.62,0,0,0,7,23.1,0,0,0,0,0.265,90.26,155.24,0.14,990,5.300000000000001,314,0.6000000000000001 +2020,7,17,18,0,24.5,1.43,0.10880000000000001,0.62,0,0,0,6,23,0,0,0,0,0.266,91.17,153.78,0.14,989,5.4,353,0.6000000000000001 +2020,7,17,19,0,24.3,1.43,0.1072,0.62,0,0,0,7,22.8,0,0,0,0,0.266,91.57000000000001,145.45000000000002,0.14,989,5.4,14,0.7000000000000001 +2020,7,17,20,0,24.200000000000003,1.43,0.1071,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.266,91.41,133.84,0.14,989,5.5,25,0.7000000000000001 +2020,7,17,21,0,24,1.42,0.108,0.62,0,0,0,6,22.6,0,0,0,0,0.266,91.95,120.87,0.14,989,5.5,33,0.7000000000000001 +2020,7,17,22,0,23.8,1.42,0.1085,0.62,0,0,0,7,22.6,0,0,0,0,0.266,92.77,107.28,0.14,990,5.6000000000000005,40,0.7000000000000001 +2020,7,17,23,0,24.1,1.41,0.1073,0.62,0,0,0,7,23.1,0,0,0,0,0.266,93.93,93.41,0.14,990,5.6000000000000005,46,0.7000000000000001 +2020,7,18,0,0,25.3,1.42,0.1044,0.62,49,407,124,0,23.700000000000003,49,407,0,124,0.265,91.03,79.34,0.14,990,5.7,61,1.3 +2020,7,18,1,0,26.700000000000003,1.42,0.10200000000000001,0.62,79,650,349,8,24,157,275,0,272,0.265,85.32000000000001,65.41,0.14,990,5.7,86,1.6 +2020,7,18,2,0,27.900000000000002,1.41,0.1057,0.62,98,757,568,8,24,256,312,0,450,0.265,79.3,51.620000000000005,0.14,990,5.800000000000001,96,1.9000000000000001 +2020,7,18,3,0,28.5,1.34,0.1211,0.62,116,804,747,1,24.200000000000003,116,804,0,747,0.264,77.56,38.28,0.14,990,5.800000000000001,103,2.1 +2020,7,18,4,0,28.900000000000002,1.33,0.1317,0.62,128,829,872,8,24.400000000000002,427,277,0,676,0.263,76.78,26.23,0.14,990,5.800000000000001,108,2.1 +2020,7,18,5,0,29.1,1.32,0.14450000000000002,0.62,137,834,929,6,24.5,477,145,0,614,0.263,76.13,18.31,0.14,989,5.9,111,1.8 +2020,7,18,6,0,29.1,1.25,0.24020000000000002,0.62,179,770,902,2,24.5,397,409,0,781,0.262,76.2,20.21,0.14,989,5.9,116,1.6 +2020,7,18,7,0,28.900000000000002,1.26,0.25620000000000004,0.62,179,737,816,3,24.6,422,196,0,592,0.262,77.78,30.12,0.14,989,5.9,124,1.5 +2020,7,18,8,0,28.5,1.27,0.2605,0.62,167,685,670,8,24.900000000000002,340,114,0,423,0.262,80.9,42.78,0.14,989,5.9,128,1.4000000000000001 +2020,7,18,9,0,28,1.28,0.28400000000000003,0.62,151,580,472,9,25.1,222,48,0,249,0.262,84.49,56.33,0.14,989,5.9,127,1.3 +2020,7,18,10,0,27.200000000000003,1.31,0.2856,0.62,111,416,252,9,25,82,0,0,82,0.262,87.59,70.2,0.14,989,5.9,125,1.2000000000000002 +2020,7,18,11,0,26.200000000000003,1.33,0.262,0.62,38,128,51,9,25.1,5,0,3,5,0.263,93.81,84.11,0.14,990,5.9,121,0.9 +2020,7,18,12,0,25.700000000000003,1.35,0.23850000000000002,0.62,0,0,0,9,24.8,0,0,0,0,0.263,95.06,98.22,0.14,990,5.800000000000001,117,0.9 +2020,7,18,13,0,25.400000000000002,1.36,0.22010000000000002,0.62,0,0,0,6,24.700000000000003,0,0,0,0,0.263,95.68,112.03,0.14,991,5.800000000000001,110,1 +2020,7,18,14,0,25.1,1.37,0.20320000000000002,0.62,0,0,0,6,24.5,0,0,0,0,0.264,96.23,125.48,0.14,991,5.7,99,1 +2020,7,18,15,0,24.8,1.37,0.1884,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.265,96.69,138.13,0.14,991,5.6000000000000005,88,0.9 +2020,7,18,16,0,24.5,1.3800000000000001,0.1757,0.62,0,0,0,7,24,0,0,0,0,0.265,97.27,148.97,0.14,991,5.6000000000000005,83,0.8 +2020,7,18,17,0,24.3,1.3800000000000001,0.1635,0.62,0,0,0,7,23.8,0,0,0,0,0.265,97.07000000000001,155.41,0.14,990,5.5,83,0.8 +2020,7,18,18,0,24,1.37,0.1559,0.62,0,0,0,8,23.6,0,0,0,0,0.265,97.46000000000001,153.95000000000002,0.14,989,5.4,86,0.8 +2020,7,18,19,0,23.900000000000002,1.37,0.1492,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.265,97.11,145.58,0.14,989,5.4,92,0.8 +2020,7,18,20,0,23.8,1.36,0.1418,0.62,0,0,0,3,23.3,0,0,0,0,0.264,96.88,133.94,0.14,989,5.300000000000001,99,0.8 +2020,7,18,21,0,23.8,1.35,0.1395,0.62,0,0,0,4,23.200000000000003,0,0,0,0,0.263,96.3,120.94,0.14,989,5.300000000000001,109,0.8 +2020,7,18,22,0,23.8,1.35,0.1366,0.62,0,0,0,4,23.1,0,0,0,0,0.263,95.89,107.33,0.14,989,5.300000000000001,128,0.7000000000000001 +2020,7,18,23,0,24.1,1.35,0.1306,0.62,0,0,0,4,23.5,0,0,0,0,0.262,96.34,93.44,0.14,990,5.300000000000001,172,0.6000000000000001 +2020,7,19,0,0,25.5,1.37,0.1212,0.62,52,386,123,4,24.3,44,0,3,44,0.261,93.3,79.36,0.14,990,5.300000000000001,190,1 +2020,7,19,1,0,26.700000000000003,1.4000000000000001,0.1124,0.62,83,641,349,4,24.3,168,101,0,210,0.261,86.77,65.41,0.14,991,5.4,183,1.4000000000000001 +2020,7,19,2,0,27.700000000000003,1.41,0.10830000000000001,0.62,99,757,570,3,23.900000000000002,213,465,0,501,0.261,79.67,51.59,0.14,991,5.4,180,1.5 +2020,7,19,3,0,28.700000000000003,1.31,0.1454,0.62,127,788,746,0,23.8,127,788,0,746,0.261,75.05,38.230000000000004,0.14,990,5.4,177,1.5 +2020,7,19,4,0,29.400000000000002,1.3,0.1442,0.62,134,823,873,0,24,134,823,0,873,0.262,72.76,26.13,0.14,990,5.4,177,1.4000000000000001 +2020,7,19,5,0,29.8,1.29,0.1444,0.62,137,837,933,0,24.1,137,837,0,933,0.263,71.44,18.14,0.14,989,5.4,180,1.3 +2020,7,19,6,0,30.1,1.28,0.1316,0.62,131,843,923,1,24.1,131,843,0,923,0.264,70.17,20.04,0.14,988,5.4,182,1.3 +2020,7,19,7,0,30.1,1.27,0.1365,0.62,128,819,838,3,24,414,252,0,632,0.265,69.71000000000001,30.01,0.14,987,5.4,181,1.2000000000000002 +2020,7,19,8,0,29.900000000000002,1.27,0.1371,0.62,120,777,690,8,23.900000000000002,331,269,0,529,0.265,70.17,42.7,0.14,987,5.4,173,1.1 +2020,7,19,9,0,29.5,1.28,0.1512,0.62,110,686,490,6,24.200000000000003,223,50,0,251,0.265,73.23,56.28,0.14,987,5.5,166,1.1 +2020,7,19,10,0,28.700000000000003,1.29,0.1588,0.62,85,527,264,0,24.400000000000002,85,527,0,264,0.265,77.68,70.17,0.14,987,5.6000000000000005,166,1.1 +2020,7,19,11,0,27.200000000000003,1.29,0.1562,0.62,35,197,55,0,24.900000000000002,35,197,0,55,0.265,87.49,84.10000000000001,0.14,988,5.7,171,0.9 +2020,7,19,12,0,26.5,1.28,0.16010000000000002,0.62,0,0,0,0,24.8,0,0,0,0,0.266,90.14,98.23,0.14,989,5.7,178,1 +2020,7,19,13,0,26.1,1.27,0.1635,0.62,0,0,0,0,24.6,0,0,0,0,0.266,91.26,112.06,0.14,989,5.800000000000001,179,1 +2020,7,19,14,0,25.8,1.25,0.16340000000000002,0.62,0,0,0,8,24.5,0,0,0,0,0.266,92.37,125.53,0.14,990,5.800000000000001,178,1 +2020,7,19,15,0,25.6,1.23,0.1647,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.266,92.84,138.21,0.14,990,5.800000000000001,173,0.9 +2020,7,19,16,0,25.3,1.23,0.16290000000000002,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.265,93.57000000000001,149.1,0.14,990,5.800000000000001,164,0.9 +2020,7,19,17,0,25,1.22,0.158,0.62,0,0,0,0,24,0,0,0,0,0.265,94.08,155.59,0.14,989,5.7,148,0.9 +2020,7,19,18,0,24.8,1.23,0.1525,0.62,0,0,0,0,23.8,0,0,0,0,0.264,94.29,154.13,0.14,989,5.6000000000000005,129,0.9 +2020,7,19,19,0,24.400000000000002,1.24,0.14730000000000001,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.264,95.78,145.72,0.14,988,5.5,112,0.9 +2020,7,19,20,0,24.200000000000003,1.25,0.1433,0.62,0,0,0,0,23.6,0,0,0,0,0.264,96.29,134.03,0.14,988,5.4,104,0.9 +2020,7,19,21,0,24,1.26,0.1433,0.62,0,0,0,0,23.5,0,0,0,0,0.264,96.91,121.01,0.14,988,5.4,103,1 +2020,7,19,22,0,23.8,1.26,0.1461,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.264,97.77,107.38,0.14,988,5.300000000000001,105,1 +2020,7,19,23,0,24.400000000000002,1.25,0.1501,0.62,0,0,0,0,23.8,0,0,0,0,0.263,96.56,93.47,0.14,989,5.300000000000001,106,1 +2020,7,20,0,0,25.8,1.25,0.15480000000000002,0.62,57,344,120,0,24.5,57,344,0,120,0.264,92.28,79.37,0.14,990,5.300000000000001,122,1.7000000000000002 +2020,7,20,1,0,27,1.26,0.152,0.62,95,599,344,3,24.8,166,202,0,250,0.264,87.73,65.4,0.14,990,5.2,133,2.1 +2020,7,20,2,0,28.1,1.26,0.1479,0.62,115,723,564,0,24.900000000000002,115,723,0,564,0.265,82.79,51.56,0.14,990,5.2,138,2.1 +2020,7,20,3,0,28.900000000000002,1.23,0.1558,0.62,132,781,746,0,25,132,781,0,746,0.264,79.3,38.17,0.14,990,5.2,142,1.9000000000000001 +2020,7,20,4,0,29.5,1.23,0.1532,0.62,139,818,874,0,24.900000000000002,139,818,0,874,0.264,76.56,26.02,0.14,989,5.2,145,1.7000000000000002 +2020,7,20,5,0,29.8,1.23,0.1573,0.62,144,829,933,3,24.900000000000002,479,150,0,621,0.264,74.94,17.96,0.14,988,5.300000000000001,143,1.5 +2020,7,20,6,0,29.900000000000002,1.22,0.17270000000000002,0.62,150,816,918,0,24.8,150,816,0,918,0.263,73.97,19.88,0.14,988,5.300000000000001,132,1.3 +2020,7,20,7,0,29.900000000000002,1.23,0.1779,0.62,147,791,833,3,24.6,387,57,0,437,0.262,73.45,29.900000000000002,0.14,987,5.4,118,1.3 +2020,7,20,8,0,29.6,1.24,0.1757,0.62,135,748,685,3,24.8,345,161,0,464,0.261,75.37,42.63,0.14,987,5.4,115,1.2000000000000002 +2020,7,20,9,0,29.200000000000003,1.25,0.21660000000000001,0.62,131,632,482,3,25,227,286,0,386,0.261,78.10000000000001,56.230000000000004,0.14,987,5.5,121,1.2000000000000002 +2020,7,20,10,0,28.400000000000002,1.26,0.2414,0.62,104,451,257,0,25.200000000000003,104,451,0,257,0.262,82.95,70.15,0.14,987,5.5,128,1.2000000000000002 +2020,7,20,11,0,27.200000000000003,1.25,0.23270000000000002,0.62,38,140,52,0,25.6,38,140,0,52,0.262,90.94,84.09,0.14,988,5.6000000000000005,138,0.9 +2020,7,20,12,0,26.6,1.25,0.2518,0.62,0,0,0,8,25.400000000000002,0,0,0,0,0.264,93.18,98.24000000000001,0.14,989,5.6000000000000005,142,1 +2020,7,20,13,0,26.3,1.25,0.2501,0.62,0,0,0,8,25.3,0,0,1,0,0.265,93.97,112.09,0.14,989,5.6000000000000005,140,1 +2020,7,20,14,0,26.1,1.24,0.22820000000000001,0.62,0,0,0,8,25.200000000000003,0,0,1,0,0.266,94.58,125.58,0.14,990,5.5,136,1.1 +2020,7,20,15,0,25.8,1.23,0.21810000000000002,0.62,0,0,0,3,25.1,0,0,1,0,0.266,95.75,138.3,0.14,990,5.4,130,1.1 +2020,7,20,16,0,25.5,1.23,0.2001,0.62,0,0,0,3,24.900000000000002,0,0,1,0,0.266,96.72,149.23,0.14,990,5.300000000000001,123,1.2000000000000002 +2020,7,20,17,0,25.3,1.21,0.1794,0.62,0,0,0,0,24.8,0,0,0,0,0.265,97.12,155.77,0.14,989,5.2,119,1.3 +2020,7,20,18,0,25,1.19,0.1739,0.62,0,0,0,0,24.700000000000003,0,0,1,0,0.264,98.11,154.31,0.14,988,5.1000000000000005,115,1.3 +2020,7,20,19,0,24.700000000000003,1.18,0.1482,0.62,0,0,0,0,24.5,0,0,0,0,0.263,98.60000000000001,145.85,0.14,988,5,103,1 +2020,7,20,20,0,24.5,1.19,0.1165,0.62,0,0,0,1,24.200000000000003,0,0,0,0,0.263,98.03,134.13,0.14,988,5,79,0.9 +2020,7,20,21,0,24.3,1.22,0.1063,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.262,97.89,121.08,0.14,989,5,78,0.9 +2020,7,20,22,0,24.1,1.22,0.1023,0.62,0,0,0,0,23.8,0,0,0,0,0.262,98.08,107.43,0.14,989,4.800000000000001,89,1 +2020,7,20,23,0,24.5,1.21,0.0979,0.62,0,0,0,0,24.1,0,0,0,0,0.262,97.68,93.5,0.14,990,4.7,96,1 +2020,7,21,0,0,25.900000000000002,1.23,0.10070000000000001,0.62,50,412,125,0,24.700000000000003,50,412,0,125,0.263,93.38,79.38,0.14,990,4.7,109,1.6 +2020,7,21,1,0,27,1.26,0.0964,0.62,79,661,354,0,24.900000000000002,79,661,0,354,0.264,88.38,65.39,0.14,991,4.7,115,1.8 +2020,7,21,2,0,28.1,1.27,0.09290000000000001,0.62,94,775,577,0,24.700000000000003,94,775,0,577,0.264,82.06,51.53,0.14,991,4.7,115,1.7000000000000002 +2020,7,21,3,0,29,1.26,0.0981,0.62,107,829,759,0,24.6,107,829,0,759,0.265,77.04,38.11,0.14,991,4.800000000000001,115,1.7000000000000002 +2020,7,21,4,0,29.6,1.27,0.1,0.62,114,858,886,0,24.5,114,858,0,886,0.265,73.93,25.91,0.14,990,4.9,119,1.7000000000000002 +2020,7,21,5,0,30.1,1.28,0.1023,0.62,118,869,945,3,24.5,480,162,0,634,0.265,71.95,17.78,0.14,990,5,125,1.7000000000000002 +2020,7,21,6,0,30.3,1.27,0.1187,0.62,125,855,930,3,24.5,472,180,0,642,0.264,71.21000000000001,19.7,0.14,989,5,129,1.7000000000000002 +2020,7,21,7,0,30.3,1.26,0.12480000000000001,0.62,123,830,844,1,24.5,123,830,0,844,0.264,71.13,29.78,0.14,988,5.1000000000000005,131,1.8 +2020,7,21,8,0,29.900000000000002,1.26,0.1265,0.62,115,787,694,3,24.5,306,368,0,577,0.264,72.91,42.56,0.14,988,5.2,130,1.8 +2020,7,21,9,0,29.3,1.27,0.1351,0.62,104,702,495,0,25,104,702,0,495,0.265,77.57000000000001,56.19,0.14,988,5.300000000000001,134,1.6 +2020,7,21,10,0,28.400000000000002,1.25,0.1452,0.62,83,542,267,3,25,83,542,5,267,0.266,81.73,70.12,0.14,988,5.4,131,1.3 +2020,7,21,11,0,27,1.25,0.1456,0.62,35,206,56,3,25.400000000000002,34,114,3,46,0.266,90.72,84.09,0.14,989,5.5,137,0.9 +2020,7,21,12,0,26.5,1.25,0.14800000000000002,0.62,0,0,0,7,25.1,0,0,0,0,0.266,92.08,98.25,0.14,989,5.5,141,0.9 +2020,7,21,13,0,26.200000000000003,1.25,0.1466,0.62,0,0,0,7,24.900000000000002,0,0,0,0,0.266,92.63,112.12,0.14,990,5.5,142,0.9 +2020,7,21,14,0,25.900000000000002,1.25,0.14300000000000002,0.62,0,0,0,7,24.700000000000003,0,0,0,0,0.266,92.95,125.63000000000001,0.14,990,5.5,143,0.9 +2020,7,21,15,0,25.6,1.25,0.1395,0.62,0,0,0,8,24.400000000000002,0,0,0,0,0.267,93.32000000000001,138.39000000000001,0.14,990,5.5,137,0.9 +2020,7,21,16,0,25.400000000000002,1.24,0.1361,0.62,0,0,0,9,24.200000000000003,0,0,0,0,0.267,93.19,149.37,0.14,990,5.5,122,0.8 +2020,7,21,17,0,25,1.24,0.1331,0.62,0,0,0,6,24,0,0,0,0,0.267,94.4,155.96,0.14,989,5.4,102,0.8 +2020,7,21,18,0,24.6,1.23,0.1332,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.267,95.77,154.49,0.14,989,5.4,82,0.8 +2020,7,21,19,0,24.3,1.22,0.1403,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.267,96.37,145.99,0.14,988,5.4,65,0.7000000000000001 +2020,7,21,20,0,24.1,1.2,0.1565,0.62,0,0,0,7,23.6,0,0,0,0,0.266,96.8,134.23,0.14,989,5.5,45,0.6000000000000001 +2020,7,21,21,0,24.1,1.18,0.18180000000000002,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.265,96.14,121.14,0.14,989,5.5,25,0.6000000000000001 +2020,7,21,22,0,24,1.18,0.1966,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.265,96.22,107.47,0.14,990,5.6000000000000005,11,0.5 +2020,7,21,23,0,24.400000000000002,1.17,0.1958,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.265,95.68,93.53,0.14,990,5.6000000000000005,12,0.5 +2020,7,22,0,0,26.1,1.2,0.22340000000000002,0.62,64,275,115,8,24.6,64,275,5,115,0.265,91.23,79.39,0.14,991,5.6000000000000005,64,0.6000000000000001 +2020,7,22,1,0,27.400000000000002,1.24,0.24630000000000002,0.62,119,513,333,3,24.400000000000002,138,393,0,302,0.266,83.78,65.38,0.14,991,5.6000000000000005,93,0.7000000000000001 +2020,7,22,2,0,28.200000000000003,1.27,0.22820000000000001,0.62,143,658,553,8,24,270,245,0,423,0.266,77.81,51.5,0.14,991,5.6000000000000005,95,0.7000000000000001 +2020,7,22,3,0,29.3,1.27,0.2907,0.62,184,690,727,8,23.900000000000002,374,194,0,527,0.266,72.78,38.04,0.14,991,5.6000000000000005,103,0.7000000000000001 +2020,7,22,4,0,29.900000000000002,1.29,0.29200000000000004,0.62,196,730,853,4,23.8,373,37,0,406,0.266,69.93,25.79,0.14,990,5.6000000000000005,104,0.7000000000000001 +2020,7,22,5,0,30.200000000000003,1.29,0.28700000000000003,0.62,199,749,914,3,23.900000000000002,475,122,0,591,0.265,68.96000000000001,17.6,0.14,990,5.7,116,0.8 +2020,7,22,6,0,30,1.27,0.2873,0.62,198,746,901,8,24,474,167,0,631,0.265,70.5,19.53,0.14,989,5.7,146,1.1 +2020,7,22,7,0,29.400000000000002,1.27,0.3161,0.62,202,704,814,3,24.400000000000002,423,213,0,608,0.265,74.34,29.67,0.14,989,5.800000000000001,165,1.4000000000000001 +2020,7,22,8,0,28.700000000000003,1.26,0.32,0.62,188,649,666,8,24.6,320,321,0,557,0.265,78.65,42.49,0.14,988,5.9,175,1.4000000000000001 +2020,7,22,9,0,27.900000000000002,1.26,0.38920000000000005,0.62,179,513,465,3,25,225,302,0,393,0.264,84.47,56.14,0.14,988,6,179,1.3 +2020,7,22,10,0,27,1.27,0.4214,0.62,132,329,244,0,24.900000000000002,132,329,0,244,0.264,88.49,70.10000000000001,0.14,988,6.1000000000000005,169,1.2000000000000002 +2020,7,22,11,0,26.200000000000003,1.27,0.4208,0.62,38,70,45,8,25,38,70,5,45,0.265,93.10000000000001,84.08,0.14,989,6.1000000000000005,161,1 +2020,7,22,12,0,25.8,1.27,0.48900000000000005,0.62,0,0,0,9,24.900000000000002,0,0,0,0,0.265,94.78,98.26,0.14,990,6.2,154,0.9 +2020,7,22,13,0,25.5,1.28,0.4833,0.62,0,0,0,9,24.8,0,0,0,0,0.266,95.67,112.15,0.14,990,6.2,149,1 +2020,7,22,14,0,25.3,1.27,0.436,0.62,0,0,0,6,24.700000000000003,0,0,0,0,0.266,96.27,125.69,0.14,991,6.1000000000000005,149,1 +2020,7,22,15,0,25.1,1.27,0.4112,0.62,0,0,0,6,24.6,0,0,0,0,0.266,96.83,138.48,0.14,991,6.1000000000000005,150,0.9 +2020,7,22,16,0,24.900000000000002,1.25,0.377,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.265,97.33,149.51,0.14,991,6,156,0.8 +2020,7,22,17,0,24.8,1.24,0.3307,0.62,0,0,0,7,24.3,0,0,0,0,0.264,97.18,156.16,0.14,991,6,175,0.8 +2020,7,22,18,0,24.6,1.24,0.2939,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.263,97.46000000000001,154.68,0.14,990,6,195,0.8 +2020,7,22,19,0,24.400000000000002,1.24,0.24830000000000002,0.62,0,0,0,7,24,0,0,0,0,0.262,97.81,146.13,0.14,990,5.9,209,0.8 +2020,7,22,20,0,24.3,1.25,0.2099,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.261,97.44,134.32,0.14,989,5.9,217,0.8 +2020,7,22,21,0,24.200000000000003,1.27,0.2099,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.261,96.98,121.21000000000001,0.14,989,5.800000000000001,228,0.7000000000000001 +2020,7,22,22,0,24.1,1.29,0.20020000000000002,0.62,0,0,0,7,23.5,0,0,0,0,0.261,96.52,107.52,0.14,990,5.800000000000001,241,0.7000000000000001 +2020,7,22,23,0,24.3,1.31,0.17830000000000001,0.62,0,0,0,7,23.6,0,0,0,0,0.26,96.13,93.55,0.14,990,5.7,249,0.7000000000000001 +2020,7,23,0,0,25.3,1.34,0.1673,0.62,58,333,119,7,24.200000000000003,64,151,3,92,0.26,93.42,79.39,0.14,990,5.6000000000000005,247,1.1 +2020,7,23,1,0,26.400000000000002,1.37,0.14550000000000002,0.62,92,607,345,3,24.1,131,0,0,131,0.26,87.42,65.37,0.14,990,5.5,236,1.1 +2020,7,23,2,0,27.200000000000003,1.3800000000000001,0.1264,0.62,106,742,569,0,23.700000000000003,106,742,0,569,0.26,81.37,51.46,0.14,991,5.5,222,1.2000000000000002 +2020,7,23,3,0,27.900000000000002,1.41,0.10930000000000001,0.62,111,817,755,0,23.700000000000003,111,817,0,755,0.26,77.95,37.97,0.14,990,5.5,212,1.3 +2020,7,23,4,0,28.400000000000002,1.42,0.11080000000000001,0.62,118,847,882,3,23.700000000000003,171,6,0,177,0.26,75.87,25.67,0.14,990,5.6000000000000005,206,1.4000000000000001 +2020,7,23,5,0,28.700000000000003,1.42,0.1135,0.62,123,858,942,3,23.700000000000003,410,401,0,792,0.261,74.5,17.400000000000002,0.14,989,5.7,197,1.3 +2020,7,23,6,0,28.8,1.41,0.1242,0.62,127,848,927,3,23.700000000000003,450,316,0,748,0.261,73.93,19.35,0.14,989,5.800000000000001,184,1.2000000000000002 +2020,7,23,7,0,28.700000000000003,1.41,0.133,0.62,126,822,841,8,23.700000000000003,117,0,0,117,0.26,74.3,29.560000000000002,0.14,988,5.9,167,1.2000000000000002 +2020,7,23,8,0,28.3,1.4000000000000001,0.13820000000000002,0.62,119,776,692,6,24,49,0,0,49,0.26,77.65,42.42,0.14,988,6,151,1.1 +2020,7,23,9,0,27.8,1.3900000000000001,0.16340000000000002,0.62,113,677,491,6,24.400000000000002,233,71,0,273,0.26,81.94,56.1,0.14,988,6,138,1 +2020,7,23,10,0,27.1,1.4000000000000001,0.1729,0.62,88,516,264,7,24.200000000000003,126,237,0,207,0.26,84.2,70.08,0.14,989,6,126,1 +2020,7,23,11,0,26.3,1.42,0.1658,0.62,35,195,55,7,24.700000000000003,33,194,3,53,0.26,90.81,84.08,0.14,989,6,117,0.7000000000000001 +2020,7,23,12,0,25.900000000000002,1.43,0.1587,0.62,0,0,0,7,24.5,0,0,0,0,0.261,91.87,98.28,0.14,990,6,110,0.7000000000000001 +2020,7,23,13,0,25.6,1.45,0.1489,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.261,92.19,112.19,0.14,990,5.9,103,0.7000000000000001 +2020,7,23,14,0,25.400000000000002,1.46,0.13970000000000002,0.62,0,0,0,7,24.1,0,0,0,0,0.262,92.41,125.76,0.14,991,5.9,95,0.8 +2020,7,23,15,0,25.200000000000003,1.46,0.13290000000000002,0.62,0,0,0,7,24,0,0,0,0,0.262,92.85000000000001,138.58,0.14,991,5.800000000000001,91,0.8 +2020,7,23,16,0,24.900000000000002,1.46,0.1273,0.62,0,0,0,7,23.8,0,0,0,0,0.262,93.88,149.66,0.14,991,5.800000000000001,89,0.8 +2020,7,23,17,0,24.6,1.45,0.1221,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.262,94.76,156.36,0.14,990,5.7,89,0.9 +2020,7,23,18,0,24.3,1.45,0.1184,0.62,0,0,0,7,23.5,0,0,0,0,0.262,95.58,154.87,0.14,989,5.7,89,0.8 +2020,7,23,19,0,24.1,1.44,0.1158,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.262,95.97,146.27,0.14,989,5.6000000000000005,89,0.8 +2020,7,23,20,0,23.900000000000002,1.43,0.1144,0.62,0,0,0,3,23.3,0,0,0,0,0.261,96.32000000000001,134.42000000000002,0.14,989,5.6000000000000005,88,0.8 +2020,7,23,21,0,23.700000000000003,1.42,0.11560000000000001,0.62,0,0,0,8,23.200000000000003,0,0,0,0,0.261,96.76,121.28,0.14,989,5.5,88,0.8 +2020,7,23,22,0,23.6,1.41,0.11800000000000001,0.62,0,0,0,0,23.1,0,0,0,0,0.261,96.77,107.56,0.14,989,5.5,92,0.8 +2020,7,23,23,0,24,1.4000000000000001,0.1197,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.261,96.45,93.57000000000001,0.14,990,5.5,94,0.8 +2020,7,24,0,0,25.200000000000003,1.4000000000000001,0.1206,0.62,51,386,123,3,23.900000000000002,63,184,3,96,0.261,92.74,79.4,0.14,991,5.5,118,1.1 +2020,7,24,1,0,26.400000000000002,1.3900000000000001,0.1231,0.62,86,630,349,8,24.200000000000003,106,0,0,106,0.261,87.71000000000001,65.35,0.14,991,5.5,138,1.3 +2020,7,24,2,0,27.3,1.3900000000000001,0.1282,0.62,107,740,568,8,24.200000000000003,279,169,0,385,0.261,83.02,51.43,0.14,991,5.6000000000000005,143,1.1 +2020,7,24,3,0,28,1.21,0.2828,0.62,181,694,729,3,24.1,374,121,0,469,0.261,79.17,37.9,0.14,991,5.6000000000000005,124,0.9 +2020,7,24,4,0,28.5,1.22,0.2931,0.62,197,728,854,0,24,197,728,0,854,0.261,76.43,25.55,0.14,991,5.7,87,0.8 +2020,7,24,5,0,28.6,1.21,0.3178,0.62,212,731,911,3,23.8,329,20,0,348,0.26,75.32000000000001,17.2,0.14,990,5.800000000000001,71,0.7000000000000001 +2020,7,24,6,0,28.700000000000003,1.22,0.3488,0.62,223,710,894,0,23.700000000000003,223,710,0,894,0.26,74.27,19.17,0.14,990,5.9,65,0.8 +2020,7,24,7,0,28.5,1.23,0.3584,0.62,218,680,810,8,23.6,415,94,0,498,0.26,75.05,29.45,0.14,989,5.9,66,0.9 +2020,7,24,8,0,28.200000000000003,1.25,0.34900000000000003,0.62,197,632,664,7,24,342,225,0,508,0.26,78.09,42.35,0.14,988,6,76,0.9 +2020,7,24,9,0,27.8,1.26,0.37310000000000004,0.62,175,524,467,6,24.3,84,0,0,84,0.26,81.13,56.06,0.14,988,6,87,0.9 +2020,7,24,10,0,27,1.28,0.3749,0.62,126,358,248,9,23.900000000000002,59,0,0,59,0.261,83.3,70.06,0.14,989,6,95,1 +2020,7,24,11,0,26,1.29,0.3546,0.62,38,89,48,9,24.5,33,3,3,33,0.261,91.33,84.08,0.14,989,6,109,0.8 +2020,7,24,12,0,25.5,1.31,0.34340000000000004,0.62,0,0,0,9,24.3,0,0,0,0,0.262,93.05,98.3,0.14,990,6,117,0.8 +2020,7,24,13,0,25.200000000000003,1.34,0.3216,0.62,0,0,0,6,24,0,0,0,0,0.263,93.19,112.23,0.14,991,5.9,121,0.9 +2020,7,24,14,0,24.900000000000002,1.36,0.2918,0.62,0,0,0,6,23.8,0,0,0,0,0.263,93.49,125.82000000000001,0.14,991,5.9,122,0.9 +2020,7,24,15,0,24.6,1.37,0.2672,0.62,0,0,0,6,23.6,0,0,0,0,0.263,94.06,138.68,0.14,991,5.800000000000001,114,0.9 +2020,7,24,16,0,24.3,1.3800000000000001,0.2456,0.62,0,0,0,6,23.400000000000002,0,0,0,0,0.263,94.8,149.81,0.14,991,5.800000000000001,104,0.9 +2020,7,24,17,0,24,1.3900000000000001,0.2272,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.262,95.4,156.57,0.14,991,5.7,98,0.9 +2020,7,24,18,0,23.700000000000003,1.4000000000000001,0.2142,0.62,0,0,0,3,23,0,0,0,0,0.261,95.97,155.07,0.14,990,5.6000000000000005,95,0.9 +2020,7,24,19,0,23.5,1.4000000000000001,0.2039,0.62,0,0,0,0,22.8,0,0,0,0,0.26,96.10000000000001,146.41,0.14,989,5.6000000000000005,94,0.9 +2020,7,24,20,0,23.3,1.3900000000000001,0.1956,0.62,0,0,0,8,22.700000000000003,0,0,0,0,0.259,96.52,134.52,0.14,989,5.5,95,0.9 +2020,7,24,21,0,23.1,1.3800000000000001,0.1888,0.62,0,0,0,0,22.6,0,0,0,0,0.259,97.04,121.34,0.14,989,5.5,99,0.9 +2020,7,24,22,0,23,1.3800000000000001,0.1817,0.62,0,0,0,0,22.5,0,0,0,0,0.259,96.97,107.60000000000001,0.14,989,5.5,103,0.9 +2020,7,24,23,0,23.400000000000002,1.37,0.1753,0.62,0,0,0,0,22.900000000000002,0,0,0,0,0.258,96.84,93.60000000000001,0.14,990,5.5,103,0.9 +2020,7,25,0,0,24.8,1.36,0.16620000000000001,0.62,57,335,119,0,23.700000000000003,57,335,0,119,0.258,93.69,79.4,0.14,991,5.5,113,1.3 +2020,7,25,1,0,26.3,1.35,0.1607,0.62,97,592,344,0,24.1,97,592,0,344,0.259,87.74,65.34,0.14,991,5.5,133,1.7000000000000002 +2020,7,25,2,0,27.6,1.36,0.14830000000000002,0.62,115,724,567,0,24.1,115,724,0,567,0.259,81.27,51.38,0.14,991,5.5,140,1.7000000000000002 +2020,7,25,3,0,28.5,1.31,0.1441,0.62,127,790,751,0,24.200000000000003,127,790,0,751,0.259,77.56,37.83,0.14,991,5.6000000000000005,145,1.8 +2020,7,25,4,0,29,1.29,0.1394,0.62,132,827,880,3,24.3,390,380,0,734,0.259,75.72,25.42,0.14,990,5.6000000000000005,153,1.8 +2020,7,25,5,0,29.3,1.27,0.1405,0.62,136,840,940,8,24.400000000000002,407,415,0,804,0.259,74.93,17,0.14,990,5.7,162,2 +2020,7,25,6,0,29.400000000000002,1.1,0.20550000000000002,0.62,166,793,916,8,24.400000000000002,411,385,0,776,0.259,74.67,18.990000000000002,0.14,989,5.7,169,2.1 +2020,7,25,7,0,29.3,1.06,0.21330000000000002,0.62,164,764,830,8,24.400000000000002,333,503,0,772,0.26,75.06,29.34,0.14,989,5.800000000000001,173,2.2 +2020,7,25,8,0,28.8,1.02,0.2169,0.62,154,713,681,7,24.5,346,191,0,488,0.261,77.78,42.28,0.14,988,5.800000000000001,175,2.2 +2020,7,25,9,0,28.1,1.03,0.26880000000000004,0.62,150,586,477,7,24.900000000000002,226,298,0,393,0.261,82.82000000000001,56.02,0.14,988,5.9,177,2 +2020,7,25,10,0,27.200000000000003,1.02,0.2952,0.62,116,397,252,9,25.1,52,0,0,52,0.262,88.2,70.04,0.14,989,6,178,1.7000000000000002 +2020,7,25,11,0,26.200000000000003,1.01,0.2823,0.62,39,99,50,9,25.200000000000003,34,72,3,42,0.262,93.98,84.08,0.14,989,6,177,1.3 +2020,7,25,12,0,25.900000000000002,1.02,0.28650000000000003,0.62,0,0,0,6,25,0,0,0,0,0.262,95.07000000000001,98.32000000000001,0.14,990,6.1000000000000005,176,1.3 +2020,7,25,13,0,25.6,1.02,0.2701,0.62,0,0,0,0,25,0,0,0,0,0.262,96.22,112.27,0.14,991,6.1000000000000005,174,1.3 +2020,7,25,14,0,25.400000000000002,1.02,0.2419,0.62,0,0,0,4,24.8,0,0,0,0,0.263,96.77,125.89,0.14,991,6.1000000000000005,171,1.2000000000000002 +2020,7,25,15,0,25.200000000000003,1.04,0.223,0.62,0,0,0,4,24.700000000000003,0,0,0,0,0.264,97.18,138.79,0.14,991,6,164,1.1 +2020,7,25,16,0,25,1.07,0.2053,0.62,0,0,0,3,24.6,0,0,0,0,0.265,97.48,149.97,0.14,991,5.9,154,1.1 +2020,7,25,17,0,24.700000000000003,1.09,0.1814,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.265,98.23,156.78,0.14,990,5.9,148,1.1 +2020,7,25,18,0,24.5,1.1400000000000001,0.1638,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.266,98.47,155.27,0.14,990,5.7,141,1.1 +2020,7,25,19,0,24.3,1.17,0.14830000000000002,0.62,0,0,0,3,24.1,0,0,0,0,0.266,98.63,146.55,0.14,989,5.6000000000000005,129,1 +2020,7,25,20,0,24.200000000000003,1.2,0.132,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.266,98.37,134.61,0.14,989,5.5,117,1.1 +2020,7,25,21,0,24,1.22,0.1279,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.266,98.46000000000001,121.41,0.14,988,5.4,112,1.1 +2020,7,25,22,0,23.8,1.21,0.1293,0.62,0,0,0,0,23.6,0,0,0,0,0.265,98.76,107.64,0.14,989,5.300000000000001,111,1.1 +2020,7,25,23,0,24.3,1.18,0.1332,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.265,97.52,93.61,0.14,989,5.2,114,1.3 +2020,7,26,0,0,25.400000000000002,1.16,0.1544,0.62,57,340,120,3,24.5,63,23,3,67,0.264,94.72,79.4,0.14,990,5.2,124,2 +2020,7,26,1,0,26.3,1.16,0.1605,0.62,98,589,344,0,24.700000000000003,98,589,0,344,0.264,90.8,65.32000000000001,0.14,991,5.300000000000001,139,2.4000000000000004 +2020,7,26,2,0,27.3,1.1500000000000001,0.15810000000000002,0.62,120,714,566,3,24.6,279,180,3,392,0.264,85.32000000000001,51.34,0.14,991,5.300000000000001,149,2.5 +2020,7,26,3,0,28.1,1.09,0.1701,0.62,139,770,748,0,24.5,139,770,0,748,0.264,80.66,37.75,0.14,991,5.4,154,2.5 +2020,7,26,4,0,28.700000000000003,1.05,0.1773,0.62,151,800,874,0,24.400000000000002,151,800,0,874,0.263,77.49,25.29,0.14,990,5.5,157,2.4000000000000004 +2020,7,26,5,0,29,1.02,0.1824,0.62,158,811,934,0,24.3,158,811,0,934,0.262,75.97,16.79,0.14,990,5.5,159,2.3000000000000003 +2020,7,26,6,0,29.1,0.98,0.2013,0.62,166,794,918,0,24.3,166,794,0,918,0.261,75.38,18.8,0.14,989,5.6000000000000005,159,2.2 +2020,7,26,7,0,28.900000000000002,0.98,0.20600000000000002,0.62,162,769,833,0,24.400000000000002,162,769,0,833,0.261,76.57000000000001,29.22,0.14,988,5.6000000000000005,160,2.1 +2020,7,26,8,0,28.5,0.96,0.19970000000000002,0.62,148,726,686,3,24.700000000000003,348,173,0,476,0.261,79.85000000000001,42.22,0.14,988,5.6000000000000005,160,2 +2020,7,26,9,0,28,0.97,0.2033,0.62,130,637,487,8,24.900000000000002,188,461,0,446,0.261,83.32000000000001,55.980000000000004,0.14,988,5.6000000000000005,160,1.8 +2020,7,26,10,0,27.200000000000003,0.97,0.20850000000000002,0.62,100,469,260,7,25,46,0,0,46,0.261,88.05,70.03,0.14,988,5.7,160,1.6 +2020,7,26,11,0,26.200000000000003,0.98,0.2018,0.62,38,143,53,6,25.200000000000003,21,0,3,21,0.261,94.13,84.09,0.14,989,5.800000000000001,161,1.2000000000000002 +2020,7,26,12,0,25.8,0.98,0.1993,0.62,0,0,0,6,25.1,0,0,0,0,0.261,95.74000000000001,98.35000000000001,0.14,990,5.800000000000001,163,1.2000000000000002 +2020,7,26,13,0,25.6,0.98,0.19240000000000002,0.62,0,0,0,7,25,0,0,0,0,0.262,96.52,112.32000000000001,0.14,990,5.9,163,1.2000000000000002 +2020,7,26,14,0,25.400000000000002,0.99,0.1786,0.62,0,0,0,8,24.900000000000002,0,0,0,0,0.263,97.27,125.97,0.14,990,5.9,161,1.2000000000000002 +2020,7,26,15,0,25.200000000000003,1.01,0.16640000000000002,0.62,0,0,0,7,24.8,0,0,0,0,0.264,97.85000000000001,138.9,0.14,990,5.9,154,1.1 +2020,7,26,16,0,25,1.02,0.15660000000000002,0.62,0,0,0,4,24.700000000000003,0,0,0,0,0.264,98.36,150.14000000000001,0.14,990,5.800000000000001,149,1.1 +2020,7,26,17,0,24.900000000000002,1.02,0.14550000000000002,0.62,0,0,0,3,24.6,0,0,0,0,0.265,98.24000000000001,157,0.14,989,5.800000000000001,149,1.2000000000000002 +2020,7,26,18,0,24.8,1.03,0.1462,0.62,0,0,0,3,24.5,0,0,0,0,0.265,98.05,155.47,0.14,988,5.800000000000001,152,1.2000000000000002 +2020,7,26,19,0,24.700000000000003,1.03,0.1502,0.62,0,0,0,3,24.3,0,0,0,0,0.265,97.72,146.69,0.14,988,5.9,158,1 +2020,7,26,20,0,24.6,1.02,0.1517,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.263,97.61,134.71,0.14,989,5.9,164,0.8 +2020,7,26,21,0,24.5,1.04,0.1554,0.62,0,0,0,3,24.1,0,0,0,0,0.262,97.8,121.47,0.14,989,6,163,0.9 +2020,7,26,22,0,24.400000000000002,1.06,0.1489,0.62,0,0,0,3,24.1,0,0,0,0,0.261,98.03,107.68,0.14,989,5.9,159,1 +2020,7,26,23,0,24.700000000000003,1.07,0.1338,0.62,0,0,0,3,24.3,0,0,0,0,0.26,97.63,93.63,0.14,990,5.9,155,1.2000000000000002 +2020,7,27,0,0,25.6,1.09,0.13090000000000002,0.62,54,362,121,4,24.8,33,0,3,33,0.26,95.54,79.4,0.14,990,5.800000000000001,152,2 +2020,7,27,1,0,26.200000000000003,1.11,0.1255,0.62,88,622,348,4,25,49,0,0,49,0.261,93.21000000000001,65.29,0.14,991,5.800000000000001,153,2.5 +2020,7,27,2,0,26.8,1.11,0.11860000000000001,0.62,105,745,571,4,25,235,28,0,252,0.26,89.78,51.29,0.14,991,5.800000000000001,154,2.7 +2020,7,27,3,0,27.400000000000002,0.92,0.15560000000000002,0.62,135,776,749,4,24.8,320,36,0,348,0.259,85.77,37.67,0.14,990,5.800000000000001,156,2.8000000000000003 +2020,7,27,4,0,27.8,0.9500000000000001,0.14930000000000002,0.62,140,816,878,4,24.700000000000003,448,133,0,568,0.258,83.34,25.150000000000002,0.14,990,5.9,157,2.7 +2020,7,27,5,0,28,0.98,0.1434,0.62,140,834,939,4,24.700000000000003,477,237,0,703,0.256,82.19,16.57,0.14,990,6,157,2.6 +2020,7,27,6,0,28.1,0.77,0.2187,0.62,177,777,914,8,24.6,400,445,0,822,0.255,81.52,18.61,0.14,989,6,157,2.5 +2020,7,27,7,0,28,0.79,0.21780000000000002,0.62,170,755,830,8,24.6,407,76,0,474,0.255,81.86,29.11,0.14,989,6.1000000000000005,156,2.4000000000000004 +2020,7,27,8,0,27.700000000000003,0.81,0.2092,0.62,154,713,683,7,24.700000000000003,346,201,0,495,0.255,83.62,42.15,0.14,988,6.1000000000000005,154,2.3000000000000003 +2020,7,27,9,0,27.1,0.84,0.21200000000000002,0.62,135,624,484,6,24.900000000000002,28,0,0,28,0.255,87.92,55.95,0.14,988,6.1000000000000005,154,2 +2020,7,27,10,0,26.400000000000002,0.86,0.2086,0.62,101,463,259,7,25.1,11,0,0,11,0.256,92.64,70.02,0.14,989,6.1000000000000005,154,1.7000000000000002 +2020,7,27,11,0,25.6,0.87,0.1986,0.62,38,137,52,7,24.900000000000002,5,0,3,5,0.257,96.13,84.10000000000001,0.14,989,6,153,1.3 +2020,7,27,12,0,25.200000000000003,0.9,0.1816,0.62,0,0,0,7,24.700000000000003,0,0,0,0,0.258,97.22,98.37,0.14,990,6,153,1.3 +2020,7,27,13,0,24.900000000000002,0.9400000000000001,0.1602,0.62,0,0,0,7,24.5,0,0,0,0,0.259,97.72,112.37,0.14,990,5.9,152,1.3 +2020,7,27,14,0,24.700000000000003,0.96,0.1466,0.62,0,0,0,7,24.3,0,0,0,0,0.259,97.91,126.05,0.14,991,5.800000000000001,151,1.3 +2020,7,27,15,0,24.6,0.98,0.1378,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.26,97.48,139.02,0.14,991,5.7,149,1.2000000000000002 +2020,7,27,16,0,24.400000000000002,0.98,0.131,0.62,0,0,0,3,24,0,0,0,0,0.261,97.65,150.3,0.14,990,5.7,148,1.1 +2020,7,27,17,0,24.200000000000003,0.97,0.12560000000000002,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.262,98,157.22,0.14,990,5.7,153,1 +2020,7,27,18,0,24.1,0.97,0.12810000000000002,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.263,97.81,155.68,0.14,989,5.7,162,1 +2020,7,27,19,0,24.1,0.96,0.1313,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.263,97.4,146.84,0.14,989,5.7,172,1 +2020,7,27,20,0,24.1,0.9500000000000001,0.12660000000000002,0.62,0,0,0,4,23.6,0,0,0,0,0.263,97.3,134.8,0.14,989,5.800000000000001,180,1 +2020,7,27,21,0,24.1,0.99,0.1355,0.62,0,0,0,4,23.700000000000003,0,0,0,0,0.263,97.41,121.53,0.14,989,5.800000000000001,181,1 +2020,7,27,22,0,24.1,1.01,0.1343,0.62,0,0,0,4,23.700000000000003,0,0,0,0,0.263,97.48,107.71000000000001,0.14,990,5.800000000000001,181,1.1 +2020,7,27,23,0,24.5,1.01,0.12150000000000001,0.62,0,0,0,4,24.1,0,0,0,0,0.262,97.39,93.65,0.14,990,5.800000000000001,182,1.3 +2020,7,28,0,0,25.6,1.04,0.12150000000000001,0.62,53,372,122,0,24.8,53,372,0,122,0.262,95.48,79.39,0.15,991,5.800000000000001,180,2.1 +2020,7,28,1,0,26.200000000000003,1.07,0.11220000000000001,0.62,85,635,350,0,25,85,635,0,350,0.262,92.9,65.27,0.15,992,5.800000000000001,175,2.5 +2020,7,28,2,0,26.6,1.08,0.1033,0.62,100,759,575,4,24.8,279,113,0,349,0.262,90.08,51.24,0.15,992,5.800000000000001,172,2.7 +2020,7,28,3,0,27.200000000000003,1,0.1129,0.62,116,810,758,3,24.700000000000003,368,259,0,573,0.262,85.99,37.58,0.15,991,5.9,170,2.9000000000000004 +2020,7,28,4,0,27.700000000000003,1.04,0.1085,0.62,120,846,887,3,24.5,413,343,0,724,0.262,82.67,25.01,0.15,991,5.9,168,3 +2020,7,28,5,0,28,1.08,0.1052,0.62,122,862,949,3,24.400000000000002,472,98,0,566,0.263,80.66,16.35,0.15,990,5.9,167,3 +2020,7,28,6,0,28,1.09,0.1131,0.62,125,854,935,7,24.3,457,292,0,733,0.263,80.54,18.42,0.15,990,5.9,167,2.9000000000000004 +2020,7,28,7,0,27.700000000000003,1.11,0.1129,0.62,120,835,851,8,24.400000000000002,430,179,0,587,0.262,82.3,29,0.15,989,5.9,168,2.8000000000000003 +2020,7,28,8,0,27.1,1.1300000000000001,0.1068,0.62,109,800,703,8,24.5,307,375,0,586,0.262,85.84,42.09,0.15,989,5.9,169,2.5 +2020,7,28,9,0,26.6,1.17,0.1015,0.62,93,732,503,6,24.700000000000003,162,2,0,164,0.262,89.34,55.92,0.15,989,5.9,170,2.2 +2020,7,28,10,0,26,1.21,0.0949,0.62,71,598,275,6,24.8,13,0,0,13,0.262,93.3,70.01,0.15,990,5.800000000000001,170,1.7000000000000002 +2020,7,28,11,0,25.200000000000003,1.24,0.09140000000000001,0.62,31,266,59,6,24.6,20,0,3,20,0.261,96.35000000000001,84.11,0.15,990,5.800000000000001,173,1.3 +2020,7,28,12,0,24.900000000000002,1.27,0.0881,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.261,96.77,98.41,0.15,991,5.800000000000001,175,1.2000000000000002 +2020,7,28,13,0,24.6,1.29,0.08420000000000001,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.261,97.4,112.43,0.15,992,5.7,179,1.2000000000000002 +2020,7,28,14,0,24.5,1.3,0.08220000000000001,0.62,0,0,0,8,24,0,0,0,0,0.261,96.85000000000001,126.13000000000001,0.15,992,5.7,183,1.2000000000000002 +2020,7,28,15,0,24.3,1.32,0.0796,0.62,0,0,0,8,23.8,0,0,0,0,0.261,96.8,139.13,0.15,992,5.7,187,1.2000000000000002 +2020,7,28,16,0,24.1,1.33,0.0765,0.62,0,0,0,8,23.5,0,0,0,0,0.261,96.54,150.48,0.15,992,5.6000000000000005,191,1.2000000000000002 +2020,7,28,17,0,23.900000000000002,1.32,0.0747,0.62,0,0,0,7,23.3,0,0,0,0,0.261,96.34,157.45000000000002,0.15,991,5.6000000000000005,194,1.1 +2020,7,28,18,0,23.700000000000003,1.31,0.0748,0.62,0,0,0,7,23.1,0,0,0,0,0.261,96.32000000000001,155.89000000000001,0.15,990,5.5,197,1.2000000000000002 +2020,7,28,19,0,23.6,1.3,0.0751,0.62,0,0,0,7,22.900000000000002,0,0,0,0,0.262,96.01,146.98,0.15,990,5.5,199,1.2000000000000002 +2020,7,28,20,0,23.5,1.29,0.0751,0.62,0,0,0,7,22.8,0,0,0,0,0.262,95.81,134.9,0.15,989,5.4,199,1.2000000000000002 +2020,7,28,21,0,23.400000000000002,1.27,0.077,0.62,0,0,0,4,22.700000000000003,0,0,0,0,0.262,95.89,121.59,0.15,990,5.4,201,1.1 +2020,7,28,22,0,23.3,1.25,0.0794,0.62,0,0,0,3,22.6,0,0,0,0,0.262,95.89,107.75,0.15,990,5.4,204,1.1 +2020,7,28,23,0,23.700000000000003,1.24,0.08120000000000001,0.62,0,0,0,8,22.900000000000002,0,0,0,0,0.261,95.56,93.66,0.15,991,5.5,210,1 +2020,7,29,0,0,24.8,1.24,0.0835,0.62,47,431,126,8,23.700000000000003,6,0,3,6,0.261,93.37,79.39,0.15,991,5.5,212,1.4000000000000001 +2020,7,29,1,0,25.700000000000003,1.25,0.0833,0.62,75,673,357,4,23.8,54,0,0,54,0.261,89.54,65.24,0.15,992,5.5,203,1.8 +2020,7,29,2,0,26.6,1.26,0.0825,0.62,91,782,581,4,23.6,238,30,0,257,0.261,83.64,51.19,0.15,992,5.5,201,2 +2020,7,29,3,0,27.400000000000002,1.23,0.08750000000000001,0.62,103,835,766,4,23.5,266,17,0,280,0.261,79.52,37.49,0.15,992,5.5,204,2 +2020,7,29,4,0,28,1.24,0.0884,0.62,110,865,895,4,23.6,448,214,0,642,0.261,77.04,24.86,0.15,991,5.5,209,2 +2020,7,29,5,0,28.3,1.25,0.0892,0.62,113,877,956,4,23.6,461,79,0,537,0.26,75.91,16.12,0.15,991,5.5,213,1.9000000000000001 +2020,7,29,6,0,28.400000000000002,1.29,0.0884,0.62,112,876,944,3,23.6,475,126,0,594,0.26,75.33,18.23,0.15,990,5.5,215,1.8 +2020,7,29,7,0,28.400000000000002,1.28,0.0916,0.62,110,855,858,7,23.6,410,294,0,668,0.26,75.08,28.89,0.15,989,5.6000000000000005,217,1.7000000000000002 +2020,7,29,8,0,28.1,1.27,0.09480000000000001,0.62,103,813,707,7,23.5,324,319,0,561,0.26,76.25,42.03,0.15,989,5.6000000000000005,218,1.6 +2020,7,29,9,0,27.700000000000003,1.28,0.098,0.62,92,738,506,7,23.8,217,346,0,412,0.26,79.48,55.89,0.15,989,5.6000000000000005,214,1.3 +2020,7,29,10,0,27.1,1.3,0.09530000000000001,0.62,71,601,276,7,24,133,84,0,162,0.26,83.02,70,0.15,989,5.5,205,1.1 +2020,7,29,11,0,26,1.31,0.09140000000000001,0.62,31,269,59,7,24.1,21,0,3,21,0.26,89.29,84.12,0.15,990,5.5,199,0.8 +2020,7,29,12,0,25.6,1.31,0.091,0.62,0,0,0,8,23.8,0,0,0,0,0.261,89.68,98.44,0.15,991,5.5,194,0.9 +2020,7,29,13,0,25.400000000000002,1.3,0.09190000000000001,0.62,0,0,0,8,23.6,0,0,0,0,0.261,90.04,112.48,0.15,991,5.4,189,0.9 +2020,7,29,14,0,25.200000000000003,1.29,0.0935,0.62,0,0,0,7,23.6,0,0,0,0,0.262,90.63,126.21000000000001,0.15,992,5.4,182,0.9 +2020,7,29,15,0,24.900000000000002,1.28,0.09620000000000001,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.262,91.66,139.26,0.15,992,5.4,175,0.9 +2020,7,29,16,0,24.700000000000003,1.26,0.10020000000000001,0.62,0,0,0,7,23.3,0,0,0,0,0.262,92.19,150.65,0.15,992,5.4,168,0.9 +2020,7,29,17,0,24.400000000000002,1.25,0.10590000000000001,0.62,0,0,0,7,23.3,0,0,0,0,0.263,93.35000000000001,157.68,0.15,991,5.4,165,0.8 +2020,7,29,18,0,24.200000000000003,1.23,0.11280000000000001,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.263,94.08,156.1,0.15,991,5.4,164,0.8 +2020,7,29,19,0,23.900000000000002,1.21,0.1211,0.62,0,0,0,8,23.1,0,0,0,0,0.264,95.4,147.12,0.15,990,5.4,165,0.9 +2020,7,29,20,0,23.700000000000003,1.19,0.1291,0.62,0,0,0,8,23.1,0,0,0,0,0.265,96.26,134.99,0.15,990,5.4,166,0.9 +2020,7,29,21,0,23.5,1.19,0.1371,0.62,0,0,0,7,23,0,0,0,0,0.265,97.15,121.65,0.15,990,5.4,169,0.9 +2020,7,29,22,0,23.400000000000002,1.18,0.1439,0.62,0,0,0,7,23,0,0,0,0,0.265,97.62,107.78,0.15,991,5.4,173,0.9 +2020,7,29,23,0,23.8,1.18,0.1489,0.62,0,0,0,8,23.3,0,0,0,0,0.265,96.97,93.67,0.15,991,5.5,176,0.9 +2020,7,30,0,0,25,1.19,0.15280000000000002,0.62,57,342,120,8,24,49,0,3,49,0.265,93.98,79.38,0.15,992,5.5,180,1.4000000000000001 +2020,7,30,1,0,26.200000000000003,1.22,0.1477,0.62,93,604,347,7,24.3,169,85,0,204,0.266,89.29,65.21000000000001,0.15,992,5.5,183,1.7000000000000002 +2020,7,30,2,0,27.400000000000002,1.24,0.14450000000000002,0.62,114,727,570,7,23.900000000000002,279,208,0,409,0.266,81.46000000000001,51.13,0.15,992,5.6000000000000005,192,1.8 +2020,7,30,3,0,28.3,1.19,0.17550000000000002,0.62,141,768,751,8,23.8,281,513,0,689,0.267,76.60000000000001,37.4,0.15,991,5.6000000000000005,203,2 +2020,7,30,4,0,29,1.17,0.1835,0.62,154,798,879,3,24.1,400,369,0,735,0.267,74.76,24.72,0.15,991,5.7,212,2.1 +2020,7,30,5,0,29.200000000000003,1.17,0.18730000000000002,0.62,159,811,939,0,24.200000000000003,159,811,0,939,0.267,74.64,15.89,0.15,990,5.7,218,2.1 +2020,7,30,6,0,29.200000000000003,1.17,0.1766,0.62,154,815,928,8,24.3,414,387,0,782,0.267,74.92,18.03,0.15,990,5.7,223,2.1 +2020,7,30,7,0,29,1.18,0.17880000000000001,0.62,149,791,843,7,24.3,426,231,0,628,0.267,75.66,28.79,0.15,989,5.800000000000001,224,2 +2020,7,30,8,0,28.5,1.19,0.1766,0.62,137,748,693,3,24.3,313,359,0,580,0.267,78,41.97,0.15,989,5.800000000000001,223,1.8 +2020,7,30,9,0,28,1.23,0.23700000000000002,0.62,138,619,486,0,24.6,138,619,0,486,0.267,81.92,55.86,0.15,989,5.7,225,1.4000000000000001 +2020,7,30,10,0,27.400000000000002,1.25,0.22990000000000002,0.62,102,463,260,1,24.700000000000003,102,463,0,260,0.267,85.01,70,0.15,989,5.7,228,1.1 +2020,7,30,11,0,26.3,1.27,0.22360000000000002,0.62,37,145,52,0,24.700000000000003,37,145,0,52,0.267,91.16,84.14,0.15,990,5.7,235,0.7000000000000001 +2020,7,30,12,0,26,1.28,0.22,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.267,91.07000000000001,98.48,0.15,991,5.6000000000000005,243,0.8 +2020,7,30,13,0,25.8,1.28,0.21530000000000002,0.62,0,0,0,7,24.3,0,0,0,0,0.266,91.39,112.54,0.15,991,5.6000000000000005,247,0.8 +2020,7,30,14,0,25.5,1.28,0.2101,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.266,92.81,126.3,0.15,992,5.6000000000000005,249,0.9 +2020,7,30,15,0,25.200000000000003,1.28,0.2058,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.265,94.32000000000001,139.38,0.15,992,5.6000000000000005,250,0.9 +2020,7,30,16,0,25,1.27,0.19840000000000002,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.265,95.19,150.84,0.15,992,5.6000000000000005,252,1 +2020,7,30,17,0,24.700000000000003,1.26,0.1862,0.62,0,0,0,6,24.1,0,0,0,0,0.264,96.45,157.92000000000002,0.15,991,5.6000000000000005,256,1 +2020,7,30,18,0,24.5,1.25,0.17750000000000002,0.62,0,0,0,6,24,0,0,0,0,0.263,96.88,156.31,0.15,990,5.6000000000000005,263,1 +2020,7,30,19,0,24.3,1.24,0.17070000000000002,0.62,0,0,0,6,23.8,0,0,0,0,0.263,97.24000000000001,147.27,0.15,990,5.7,273,0.9 +2020,7,30,20,0,24.200000000000003,1.21,0.16970000000000002,0.62,0,0,0,6,23.700000000000003,0,0,0,0,0.262,97.05,135.08,0.15,990,5.7,287,0.9 +2020,7,30,21,0,24,1.19,0.18660000000000002,0.62,0,0,0,9,23.6,0,0,0,0,0.262,97.52,121.7,0.15,990,5.800000000000001,287,0.8 +2020,7,30,22,0,23.900000000000002,1.19,0.1925,0.62,0,0,0,6,23.400000000000002,0,0,0,0,0.261,97.23,107.81,0.15,991,5.800000000000001,274,0.8 +2020,7,30,23,0,24,1.19,0.18530000000000002,0.62,0,0,0,6,23.5,0,0,0,0,0.26,97.04,93.68,0.15,991,5.800000000000001,264,0.7000000000000001 +2020,7,31,0,0,24.8,1.2,0.1794,0.62,60,316,118,6,24,7,0,3,7,0.259,95.51,79.36,0.14,992,5.7,259,1.1 +2020,7,31,1,0,25.400000000000002,1.21,0.17020000000000002,0.62,100,582,345,6,24,67,0,0,67,0.259,91.92,65.18,0.14,992,5.7,249,1.3 +2020,7,31,2,0,26.200000000000003,1.22,0.16140000000000002,0.62,121,713,569,7,23.8,226,21,0,239,0.259,86.82000000000001,51.07,0.14,992,5.7,243,1.4000000000000001 +2020,7,31,3,0,26.900000000000002,1.25,0.20800000000000002,0.62,153,746,747,7,23.400000000000002,369,90,0,441,0.26,81.32000000000001,37.31,0.14,992,5.7,240,1.5 +2020,7,31,4,0,27.6,1.25,0.2064,0.62,162,785,876,6,23.6,425,72,0,491,0.261,78.93,24.560000000000002,0.14,991,5.7,239,1.6 +2020,7,31,5,0,28.1,1.24,0.2034,0.62,165,802,938,7,23.8,487,155,0,636,0.262,77.59,15.65,0.14,990,5.7,240,1.8 +2020,7,31,6,0,28.200000000000003,1.17,0.1776,0.62,154,814,928,7,23.900000000000002,480,179,0,651,0.263,77.73,17.84,0.14,989,5.800000000000001,241,1.9000000000000001 +2020,7,31,7,0,28.1,1.17,0.17880000000000001,0.62,149,792,844,7,24,431,201,0,607,0.263,78.56,28.68,0.14,989,5.800000000000001,244,1.9000000000000001 +2020,7,31,8,0,27.900000000000002,1.17,0.17700000000000002,0.62,137,748,694,7,24,346,221,0,511,0.264,79.59,41.910000000000004,0.14,988,5.800000000000001,246,1.8 +2020,7,31,9,0,27.5,1.19,0.1773,0.62,120,666,494,7,24.200000000000003,243,103,0,301,0.264,82.02,55.84,0.14,988,5.7,245,1.5 +2020,7,31,10,0,26.900000000000002,1.22,0.1699,0.62,89,517,266,8,24.400000000000002,94,474,0,256,0.265,86.07000000000001,70,0.14,989,5.7,246,1.1 +2020,7,31,11,0,25.8,1.24,0.15940000000000001,0.62,35,190,54,7,24.200000000000003,35,190,5,54,0.265,91.07000000000001,84.16,0.14,989,5.7,246,0.6000000000000001 +2020,7,31,12,0,25.400000000000002,1.26,0.15,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.266,91.18,98.52,0.14,990,5.6000000000000005,245,0.6000000000000001 +2020,7,31,13,0,25.200000000000003,1.27,0.14500000000000002,0.62,0,0,0,7,23.6,0,0,0,0,0.266,90.82000000000001,112.60000000000001,0.14,991,5.6000000000000005,244,0.6000000000000001 +2020,7,31,14,0,25,1.27,0.1429,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.267,90.84,126.39,0.14,991,5.6000000000000005,243,0.6000000000000001 +2020,7,31,15,0,24.8,1.27,0.1441,0.62,0,0,0,3,23.3,0,0,0,0,0.267,91.18,139.51,0.14,991,5.7,244,0.7000000000000001 +2020,7,31,16,0,24.700000000000003,1.25,0.14750000000000002,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.267,91.26,151.02,0.14,991,5.7,246,0.7000000000000001 +2020,7,31,17,0,24.5,1.23,0.1509,0.62,0,0,0,1,23.1,0,0,0,0,0.267,92.07000000000001,158.17000000000002,0.14,991,5.800000000000001,247,0.7000000000000001 +2020,7,31,18,0,24.3,1.21,0.1512,0.62,0,0,0,3,23.1,0,0,0,0,0.267,93.2,156.53,0.14,990,5.800000000000001,243,0.8 +2020,7,31,19,0,24,1.2,0.1469,0.62,0,0,0,8,23.1,0,0,0,0,0.266,94.8,147.41,0.14,989,5.800000000000001,237,0.9 +2020,7,31,20,0,23.8,1.19,0.1416,0.62,0,0,0,8,23.1,0,0,0,0,0.265,95.99000000000001,135.17000000000002,0.14,989,5.9,230,0.9 +2020,7,31,21,0,23.700000000000003,1.18,0.1381,0.62,0,0,0,3,23.1,0,0,0,0,0.265,96.57000000000001,121.76,0.14,989,5.9,223,1 +2020,7,31,22,0,23.6,1.19,0.1305,0.62,0,0,0,3,23.1,0,0,0,0,0.264,97.31,107.84,0.14,989,5.800000000000001,219,1 +2020,7,31,23,0,24.200000000000003,1.19,0.1174,0.62,0,0,0,8,23.6,0,0,0,0,0.263,96.67,93.68,0.14,990,5.800000000000001,219,1.2000000000000002 +2020,8,1,0,0,25.5,1.2,0.1148,0.62,51,388,123,8,24.5,57,287,3,110,0.262,94,79.35000000000001,0.14,990,5.800000000000001,213,2 +2020,8,1,1,0,26.3,1.21,0.10590000000000001,0.62,82,647,354,7,24.700000000000003,150,336,0,291,0.262,91.07000000000001,65.14,0.14,991,5.800000000000001,206,2.5 +2020,8,1,2,0,27.1,1.2,0.10010000000000001,0.62,98,765,579,8,24.6,246,375,0,482,0.263,86.04,51.01,0.14,991,5.800000000000001,205,2.8000000000000003 +2020,8,1,3,0,27.8,0.99,0.1306,0.62,124,799,760,8,24.400000000000002,292,480,0,674,0.262,81.78,37.21,0.14,991,5.800000000000001,205,2.9000000000000004 +2020,8,1,4,0,28.3,1.01,0.1213,0.62,127,839,891,0,24.3,127,839,0,891,0.262,79.07000000000001,24.41,0.14,990,5.800000000000001,206,2.9000000000000004 +2020,8,1,5,0,28.6,1.04,0.11510000000000001,0.62,127,857,953,0,24.3,127,857,0,953,0.261,77.56,15.41,0.14,990,5.800000000000001,209,2.7 +2020,8,1,6,0,28.700000000000003,0.92,0.1605,0.62,149,822,932,3,24.200000000000003,480,193,0,664,0.26,76.73,17.64,0.14,989,5.800000000000001,212,2.6 +2020,8,1,7,0,28.6,0.93,0.1568,0.62,142,804,848,3,24.1,383,371,0,709,0.26,76.79,28.57,0.14,988,5.800000000000001,215,2.4000000000000004 +2020,8,1,8,0,28.3,0.9400000000000001,0.15030000000000002,0.62,129,765,698,7,24.1,331,297,0,552,0.26,78.03,41.86,0.14,988,5.800000000000001,217,2.1 +2020,8,1,9,0,27.8,0.98,0.14850000000000002,0.62,111,687,497,7,24.200000000000003,232,277,0,388,0.261,81.01,55.81,0.14,988,5.800000000000001,220,1.6 +2020,8,1,10,0,27.1,1.01,0.1424,0.62,84,539,268,6,24.3,73,0,0,73,0.261,84.75,70,0.14,989,5.800000000000001,224,1.2000000000000002 +2020,8,1,11,0,26.200000000000003,1.04,0.1333,0.62,34,204,55,6,24.3,28,0,3,28,0.262,89.48,84.18,0.14,989,5.7,229,0.7000000000000001 +2020,8,1,12,0,26,1.06,0.1268,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.263,88.15,98.56,0.14,990,5.7,233,0.7000000000000001 +2020,8,1,13,0,25.900000000000002,1.07,0.1233,0.62,0,0,0,6,23.6,0,0,0,0,0.263,87.19,112.67,0.14,991,5.7,234,0.6000000000000001 +2020,8,1,14,0,25.8,1.07,0.12140000000000001,0.62,0,0,0,6,23.400000000000002,0,0,0,0,0.264,86.58,126.48,0.14,991,5.7,232,0.6000000000000001 +2020,8,1,15,0,25.700000000000003,1.07,0.12150000000000001,0.62,0,0,0,6,23.3,0,0,0,0,0.264,86.38,139.65,0.14,991,5.7,231,0.6000000000000001 +2020,8,1,16,0,25.6,1.07,0.1233,0.62,0,0,0,6,23.1,0,0,0,0,0.265,86.34,151.21,0.14,991,5.7,233,0.6000000000000001 +2020,8,1,17,0,25.400000000000002,1.07,0.12510000000000002,0.62,0,0,0,6,23.1,0,0,0,0,0.265,87.01,158.42000000000002,0.14,991,5.7,237,0.6000000000000001 +2020,8,1,18,0,25.1,1.07,0.1277,0.62,0,0,0,6,23,0,0,0,0,0.265,88.3,156.75,0.14,990,5.7,240,0.6000000000000001 +2020,8,1,19,0,24.900000000000002,1.06,0.1311,0.62,0,0,0,6,23,0,0,0,0,0.265,89.32000000000001,147.56,0.14,990,5.6000000000000005,245,0.6000000000000001 +2020,8,1,20,0,24.6,1.06,0.136,0.62,0,0,0,7,23,0,0,0,0,0.264,90.88,135.26,0.14,989,5.7,255,0.7000000000000001 +2020,8,1,21,0,24.200000000000003,1.06,0.1422,0.62,0,0,0,6,23,0,0,0,0,0.264,93.23,121.81,0.14,989,5.6000000000000005,259,0.8 +2020,8,1,22,0,24,1.06,0.14850000000000002,0.62,0,0,0,6,23.1,0,0,0,0,0.264,94.46000000000001,107.87,0.14,989,5.6000000000000005,260,0.8 +2020,8,1,23,0,24.400000000000002,1.07,0.1531,0.62,0,0,0,6,23.5,0,0,0,0,0.264,94.69,93.69,0.14,990,5.6000000000000005,260,0.8 +2020,8,2,0,0,25.8,1.09,0.16060000000000002,0.62,58,331,119,7,24.400000000000002,65,54,3,75,0.264,91.98,79.33,0.15,990,5.6000000000000005,253,1.1 +2020,8,2,1,0,26.900000000000002,1.1300000000000001,0.1652,0.62,100,586,347,7,24.5,162,262,0,272,0.265,86.52,65.1,0.15,991,5.5,240,1.4000000000000001 +2020,8,2,2,0,27.8,1.1500000000000001,0.15910000000000002,0.62,121,716,572,0,24.400000000000002,121,716,0,572,0.265,81.60000000000001,50.95,0.15,991,5.5,235,1.7000000000000002 +2020,8,2,3,0,28.6,1,0.19840000000000002,0.62,153,750,752,8,24.5,305,447,0,661,0.265,78.38,37.12,0.15,991,5.5,233,1.8 +2020,8,2,4,0,29,1.01,0.1904,0.62,159,794,883,3,24.6,455,158,0,598,0.264,77.15,24.25,0.15,990,5.4,235,1.9000000000000001 +2020,8,2,5,0,29.3,1.02,0.1768,0.62,157,819,947,8,24.6,463,307,0,759,0.264,75.9,15.16,0.15,990,5.4,235,2 +2020,8,2,6,0,29.200000000000003,0.96,0.1928,0.62,164,804,931,7,24.5,462,286,0,735,0.263,75.82000000000001,17.44,0.15,989,5.4,235,2 +2020,8,2,7,0,29,0.96,0.1796,0.62,152,791,848,7,24.400000000000002,432,205,0,612,0.262,76.19,28.47,0.15,988,5.4,234,1.9000000000000001 +2020,8,2,8,0,28.700000000000003,0.98,0.168,0.62,136,754,699,7,24.400000000000002,312,368,0,586,0.261,77.57000000000001,41.81,0.15,988,5.4,231,1.6 +2020,8,2,9,0,28.200000000000003,1.01,0.1627,0.62,117,677,497,3,24.6,215,362,0,419,0.261,80.73,55.79,0.15,988,5.4,224,1.3 +2020,8,2,10,0,27.400000000000002,1.04,0.1567,0.62,87,527,268,7,24.6,59,0,0,59,0.261,84.73,70,0.15,988,5.4,214,1.1 +2020,8,2,11,0,26.3,1.06,0.1471,0.62,35,191,54,7,24.900000000000002,28,0,3,28,0.262,92.08,84.2,0.15,989,5.4,198,0.8 +2020,8,2,12,0,25.8,1.07,0.14120000000000002,0.62,0,0,0,1,24.6,0,0,0,0,0.262,93.22,98.61,0.15,989,5.300000000000001,187,0.9 +2020,8,2,13,0,25.400000000000002,1.08,0.1391,0.62,0,0,0,3,24.400000000000002,0,0,0,0,0.263,94.35000000000001,112.74000000000001,0.15,990,5.300000000000001,182,0.9 +2020,8,2,14,0,25.1,1.07,0.1406,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.264,94.97,126.58,0.15,990,5.2,179,1 +2020,8,2,15,0,24.8,1.05,0.14730000000000001,0.62,0,0,0,3,24.1,0,0,0,0,0.265,95.95,139.78,0.15,991,5.2,174,1 +2020,8,2,16,0,24.6,1.04,0.1567,0.62,0,0,0,3,24,0,0,0,0,0.266,96.56,151.41,0.15,991,5.2,169,0.9 +2020,8,2,17,0,24.400000000000002,1.05,0.169,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.266,97.16,158.67000000000002,0.15,990,5.300000000000001,165,0.9 +2020,8,2,18,0,24.3,1.06,0.1802,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.266,97.48,156.98,0.15,990,5.300000000000001,165,0.9 +2020,8,2,19,0,24.200000000000003,1.08,0.18810000000000002,0.62,0,0,0,4,23.8,0,0,0,0,0.266,97.74000000000001,147.70000000000002,0.15,989,5.4,165,0.9 +2020,8,2,20,0,24.1,1.1,0.1962,0.62,0,0,0,8,23.8,0,0,0,0,0.266,98.13,135.35,0.15,989,5.4,162,0.9 +2020,8,2,21,0,24,1.12,0.2033,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.266,98.45,121.86,0.15,989,5.5,166,0.9 +2020,8,2,22,0,23.900000000000002,1.1500000000000001,0.2046,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.265,98.72,107.89,0.15,989,5.5,172,0.9 +2020,8,2,23,0,24.1,1.16,0.20650000000000002,0.62,0,0,0,7,23.8,0,0,0,0,0.264,98.4,93.69,0.15,989,5.5,175,0.9 +2020,8,3,0,0,25.3,1.18,0.21250000000000002,0.62,64,286,117,8,24.5,59,264,3,108,0.263,95.14,79.32000000000001,0.15,990,5.6000000000000005,175,1.4000000000000001 +2020,8,3,1,0,26.200000000000003,1.21,0.20850000000000002,0.62,111,549,343,8,24.700000000000003,153,324,0,290,0.263,91.7,65.06,0.15,990,5.6000000000000005,179,1.7000000000000002 +2020,8,3,2,0,27,1.23,0.2025,0.62,136,683,567,3,24.8,226,20,0,239,0.262,87.8,50.88,0.15,990,5.6000000000000005,181,2 +2020,8,3,3,0,27.6,1.18,0.218,0.62,159,741,751,8,24.700000000000003,355,328,0,616,0.262,84.47,37.01,0.15,990,5.6000000000000005,180,2.1 +2020,8,3,4,0,28.200000000000003,1.19,0.2182,0.62,169,779,880,3,24.700000000000003,401,48,0,445,0.263,81.51,24.09,0.15,989,5.6000000000000005,175,2.2 +2020,8,3,5,0,28.700000000000003,1.21,0.21430000000000002,0.62,172,797,942,3,24.700000000000003,479,252,0,723,0.263,79.09,14.91,0.15,989,5.6000000000000005,172,2.1 +2020,8,3,6,0,28.900000000000002,1.1,0.2917,0.62,205,746,918,3,24.6,469,267,0,724,0.263,77.73,17.240000000000002,0.15,988,5.6000000000000005,174,1.9000000000000001 +2020,8,3,7,0,28.8,1.1400000000000001,0.2953,0.62,199,720,832,3,24.5,162,5,0,166,0.263,77.69,28.37,0.15,988,5.6000000000000005,181,1.8 +2020,8,3,8,0,28.400000000000002,1.17,0.2924,0.62,181,671,682,7,24.6,332,297,0,554,0.263,80.02,41.76,0.15,987,5.6000000000000005,186,1.6 +2020,8,3,9,0,27.900000000000002,1.22,0.3007,0.62,158,574,481,7,24.900000000000002,222,330,0,408,0.264,83.78,55.78,0.15,987,5.6000000000000005,188,1.3 +2020,8,3,10,0,27.3,1.24,0.3163,0.62,118,396,254,7,24.900000000000002,132,181,0,194,0.264,86.88,70.01,0.15,988,5.7,193,1.2000000000000002 +2020,8,3,11,0,26.3,1.27,0.3158,0.62,38,99,48,8,25,24,0,3,24,0.264,92.77,84.23,0.15,988,5.7,197,0.8 +2020,8,3,12,0,25.900000000000002,1.3,0.3141,0.62,0,0,0,0,24.8,0,0,0,0,0.265,93.62,98.65,0.15,989,5.7,197,0.8 +2020,8,3,13,0,25.700000000000003,1.33,0.30210000000000004,0.62,0,0,0,8,24.6,0,0,0,0,0.266,93.92,112.81,0.15,989,5.7,194,0.8 +2020,8,3,14,0,25.5,1.35,0.2874,0.62,0,0,0,8,24.5,0,0,0,0,0.266,94.41,126.68,0.15,990,5.6000000000000005,188,0.8 +2020,8,3,15,0,25.3,1.37,0.2751,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.267,94.89,139.92000000000002,0.15,990,5.6000000000000005,181,0.8 +2020,8,3,16,0,25.1,1.37,0.2691,0.62,0,0,0,7,24.3,0,0,0,0,0.268,95.36,151.61,0.15,990,5.5,176,0.8 +2020,8,3,17,0,24.900000000000002,1.36,0.2667,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.268,95.67,158.94,0.15,989,5.5,174,0.8 +2020,8,3,18,0,24.700000000000003,1.35,0.264,0.62,0,0,0,7,24.1,0,0,0,0,0.268,96.2,157.20000000000002,0.15,989,5.5,175,0.8 +2020,8,3,19,0,24.5,1.34,0.2605,0.62,0,0,0,8,24,0,0,0,0,0.268,96.78,147.84,0.15,988,5.5,180,0.8 +2020,8,3,20,0,24.400000000000002,1.34,0.2513,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.267,96.79,135.44,0.15,988,5.5,183,0.8 +2020,8,3,21,0,24.3,1.34,0.2414,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.266,96.57000000000001,121.91,0.15,988,5.5,192,0.8 +2020,8,3,22,0,24.200000000000003,1.35,0.23170000000000002,0.62,0,0,0,8,23.6,0,0,0,0,0.265,96.55,107.91,0.15,988,5.4,201,0.8 +2020,8,3,23,0,24.400000000000002,1.35,0.228,0.62,0,0,0,7,23.8,0,0,0,0,0.265,96.43,93.69,0.15,989,5.4,203,0.7000000000000001 +2020,8,4,0,0,25.400000000000002,1.37,0.22640000000000002,0.62,64,286,117,7,24.700000000000003,66,109,3,86,0.265,95.73,79.3,0.15,989,5.4,196,0.7000000000000001 +2020,8,4,1,0,26.700000000000003,1.42,0.2078,0.62,109,557,345,7,24.6,173,143,0,233,0.265,88.44,65.02,0.15,990,5.5,196,1 +2020,8,4,2,0,27.700000000000003,1.42,0.202,0.62,134,688,569,8,23.8,247,377,0,486,0.265,79.37,50.82,0.15,990,5.5,215,1.2000000000000002 +2020,8,4,3,0,28.3,1.3900000000000001,0.1499,0.62,130,792,763,3,23.5,299,467,0,672,0.264,75.19,36.910000000000004,0.15,990,5.6000000000000005,228,1.3 +2020,8,4,4,0,28.8,1.3800000000000001,0.15760000000000002,0.62,141,821,891,7,23.6,394,388,0,748,0.263,73.43,23.92,0.15,989,5.7,238,1.4000000000000001 +2020,8,4,5,0,29.200000000000003,1.37,0.1663,0.62,149,829,951,8,23.8,416,421,0,823,0.262,72.82000000000001,14.65,0.15,989,5.800000000000001,243,1.5 +2020,8,4,6,0,29.400000000000002,1.48,0.1321,0.62,132,848,943,0,24,132,848,0,943,0.262,72.63,17.04,0.15,988,5.9,250,1.4000000000000001 +2020,8,4,7,0,29,1.46,0.1438,0.62,132,820,855,0,24,132,820,0,855,0.261,74.48,28.27,0.15,988,5.9,255,1.4000000000000001 +2020,8,4,8,0,28.400000000000002,1.46,0.1441,0.62,123,778,704,8,24.400000000000002,255,513,0,638,0.26,78.9,41.71,0.15,987,5.9,251,1.2000000000000002 +2020,8,4,9,0,27.900000000000002,1.45,0.1612,0.62,113,685,499,3,24.400000000000002,204,410,0,434,0.261,81.13,55.76,0.15,987,5.9,242,1.1 +2020,8,4,10,0,27.3,1.44,0.1701,0.62,88,523,267,3,24.5,123,273,0,216,0.262,84.60000000000001,70.02,0.15,988,5.9,231,0.9 +2020,8,4,11,0,26.400000000000002,1.43,0.1686,0.62,35,188,53,4,24.700000000000003,33,124,3,45,0.264,90.58,84.26,0.15,989,5.800000000000001,211,0.7000000000000001 +2020,8,4,12,0,26.1,1.42,0.1651,0.62,0,0,0,6,24.5,0,0,0,0,0.266,90.89,98.71000000000001,0.15,989,5.800000000000001,186,0.7000000000000001 +2020,8,4,13,0,25.8,1.43,0.1545,0.62,0,0,0,7,24.3,0,0,0,0,0.267,91.53,112.88,0.15,990,5.800000000000001,174,0.7000000000000001 +2020,8,4,14,0,25.5,1.44,0.1419,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.269,92.39,126.78,0.15,990,5.7,173,0.8 +2020,8,4,15,0,25.3,1.44,0.1348,0.62,0,0,0,8,24.1,0,0,0,0,0.27,92.88,140.07,0.15,990,5.7,167,0.9 +2020,8,4,16,0,25,1.42,0.1335,0.62,0,0,0,8,24,0,0,0,0,0.27,94.24,151.81,0.15,990,5.7,164,0.9 +2020,8,4,17,0,24.8,1.41,0.1335,0.62,0,0,0,7,24,0,0,0,0,0.271,95.17,159.20000000000002,0.15,990,5.7,163,0.9 +2020,8,4,18,0,24.6,1.4000000000000001,0.136,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.271,95.98,157.43,0.15,989,5.7,166,0.9 +2020,8,4,19,0,24.5,1.37,0.14070000000000002,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.271,96.37,147.99,0.15,989,5.7,173,1 +2020,8,4,20,0,24.3,1.35,0.1375,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.27,97.35000000000001,135.52,0.15,989,5.7,178,1 +2020,8,4,21,0,24.3,1.36,0.1287,0.62,0,0,0,4,23.8,0,0,0,0,0.27,97.10000000000001,121.96000000000001,0.15,989,5.6000000000000005,182,1 +2020,8,4,22,0,24.200000000000003,1.37,0.1216,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.27,97.18,107.93,0.15,989,5.5,186,1 +2020,8,4,23,0,24.5,1.3800000000000001,0.11420000000000001,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.27,96.48,93.69,0.15,989,5.4,183,1.1 +2020,8,5,0,0,25.8,1.3900000000000001,0.1102,0.62,51,404,126,4,24.400000000000002,63,18,3,67,0.27,91.91,79.27,0.15,990,5.300000000000001,177,1.7000000000000002 +2020,8,5,1,0,26.700000000000003,1.3900000000000001,0.1092,0.62,83,652,359,1,24.400000000000002,83,652,0,359,0.27,87.04,64.98,0.15,991,5.2,174,2 +2020,8,5,2,0,27.400000000000002,1.37,0.11170000000000001,0.62,103,763,585,0,24.200000000000003,103,763,0,585,0.27,82.75,50.75,0.15,991,5.1000000000000005,175,2.1 +2020,8,5,3,0,27.900000000000002,1.37,0.1039,0.62,111,830,775,3,24.1,368,284,0,596,0.27,79.84,36.800000000000004,0.15,990,5.1000000000000005,182,1.9000000000000001 +2020,8,5,4,0,28.400000000000002,1.37,0.10200000000000001,0.62,117,863,906,4,24.1,456,190,0,630,0.27,77.60000000000001,23.76,0.15,990,5.1000000000000005,192,1.7000000000000002 +2020,8,5,5,0,29.1,1.37,0.09920000000000001,0.62,118,877,968,8,24.1,471,290,0,752,0.271,74.44,14.39,0.15,989,5.1000000000000005,201,1.4000000000000001 +2020,8,5,6,0,29.400000000000002,1.2,0.1184,0.62,128,860,951,4,24,481,216,0,687,0.271,72.91,16.84,0.15,989,5.1000000000000005,210,1.3 +2020,8,5,7,0,29.5,1.2,0.1241,0.62,126,837,863,7,24,403,333,0,697,0.271,72.15,28.17,0.15,988,5.1000000000000005,206,1.2000000000000002 +2020,8,5,8,0,29.3,1.19,0.1301,0.62,119,789,709,8,24,352,186,0,491,0.271,73.18,41.67,0.15,988,5.2,193,1.1 +2020,8,5,9,0,29,1.19,0.1365,0.62,107,706,504,8,24.400000000000002,243,212,0,362,0.271,76.35000000000001,55.75,0.15,988,5.2,183,0.9 +2020,8,5,10,0,28.5,1.2,0.14100000000000001,0.62,83,548,270,7,24.200000000000003,11,0,0,11,0.271,77.79,70.03,0.15,988,5.300000000000001,179,0.8 +2020,8,5,11,0,27.3,1.21,0.14070000000000002,0.62,34,202,54,8,24.6,4,0,3,4,0.271,85.01,84.29,0.15,989,5.4,171,0.7000000000000001 +2020,8,5,12,0,26.700000000000003,1.22,0.1385,0.62,0,0,0,4,24.400000000000002,0,0,0,0,0.271,87.44,98.76,0.15,990,5.4,163,0.9 +2020,8,5,13,0,26.200000000000003,1.22,0.138,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.271,90.09,112.96000000000001,0.15,991,5.4,157,0.9 +2020,8,5,14,0,25.8,1.22,0.1389,0.62,0,0,0,8,24.400000000000002,0,0,0,0,0.272,91.98,126.89,0.15,991,5.5,154,1 +2020,8,5,15,0,25.5,1.21,0.1449,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.273,93.46000000000001,140.21,0.15,991,5.5,154,1.1 +2020,8,5,16,0,25.200000000000003,1.19,0.1572,0.62,0,0,0,3,24.400000000000002,0,0,0,0,0.273,95.11,152.02,0.15,991,5.5,154,1.1 +2020,8,5,17,0,25,1.17,0.1703,0.62,0,0,0,3,24.3,0,0,0,0,0.273,96.02,159.47,0.15,991,5.4,156,1 +2020,8,5,18,0,24.8,1.17,0.17350000000000002,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.273,96.48,157.66,0.15,990,5.4,158,1 +2020,8,5,19,0,24.700000000000003,1.17,0.16870000000000002,0.62,0,0,0,7,24.1,0,0,0,0,0.273,96.27,148.13,0.15,989,5.300000000000001,159,1 +2020,8,5,20,0,24.6,1.19,0.1612,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.273,96.14,135.61,0.15,989,5.2,154,0.9 +2020,8,5,21,0,24.5,1.2,0.1549,0.62,0,0,0,7,23.8,0,0,0,0,0.272,96.09,122,0.15,989,5.2,146,0.9 +2020,8,5,22,0,24.3,1.21,0.1494,0.62,0,0,0,7,23.8,0,0,0,0,0.272,96.77,107.95,0.15,989,5.2,141,0.9 +2020,8,5,23,0,24.400000000000002,1.22,0.14650000000000002,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.271,97.16,93.68,0.15,990,5.1000000000000005,133,0.9 +2020,8,6,0,0,25.6,1.24,0.1403,0.62,55,365,123,7,24.5,61,0,3,61,0.271,93.89,79.25,0.15,991,5.1000000000000005,131,1.3 +2020,8,6,1,0,26.700000000000003,1.26,0.131,0.62,90,628,356,7,24.700000000000003,163,46,0,183,0.271,88.71000000000001,64.93,0.15,991,5.1000000000000005,144,1.6 +2020,8,6,2,0,27.700000000000003,1.28,0.12610000000000002,0.62,108,750,584,3,24.6,250,371,0,486,0.271,83.26,50.67,0.15,991,5.1000000000000005,150,1.6 +2020,8,6,3,0,28.5,1.28,0.126,0.62,121,812,772,8,24.5,352,345,0,628,0.271,78.77,36.69,0.15,991,5.2,148,1.4000000000000001 +2020,8,6,4,0,29.1,1.28,0.1285,0.62,129,843,902,3,24.200000000000003,449,248,0,676,0.27,74.91,23.59,0.15,990,5.2,142,1.2000000000000002 +2020,8,6,5,0,29.5,1.29,0.1316,0.62,134,854,962,8,24,461,324,0,776,0.269,72.41,14.120000000000001,0.15,990,5.300000000000001,144,1 +2020,8,6,6,0,29.8,1.29,0.1342,0.62,134,849,948,7,23.900000000000002,459,308,0,754,0.267,70.66,16.64,0.15,989,5.4,158,0.9 +2020,8,6,7,0,29.8,1.29,0.13720000000000002,0.62,131,827,860,3,23.900000000000002,427,251,0,648,0.266,70.51,28.080000000000002,0.15,988,5.4,177,1 +2020,8,6,8,0,29.6,1.3,0.1391,0.62,122,782,707,3,24.1,323,337,0,575,0.265,72.24,41.62,0.15,988,5.5,191,1.1 +2020,8,6,9,0,29.400000000000002,1.29,0.1287,0.62,103,713,504,4,24.5,242,217,0,365,0.265,75.06,55.74,0.15,988,5.5,185,1 +2020,8,6,10,0,28.6,1.29,0.1297,0.62,79,562,271,3,24.5,133,158,0,187,0.265,78.42,70.05,0.15,988,5.5,156,1 +2020,8,6,11,0,27.3,1.29,0.1253,0.62,33,220,54,7,24.8,32,38,3,36,0.265,86.48,84.33,0.15,989,5.5,137,0.8 +2020,8,6,12,0,26.700000000000003,1.29,0.11900000000000001,0.62,0,0,0,7,24.5,0,0,0,0,0.265,88.01,98.82000000000001,0.15,990,5.4,128,0.9 +2020,8,6,13,0,26.3,1.29,0.1136,0.62,0,0,0,7,24.5,0,0,0,0,0.265,89.60000000000001,113.04,0.15,990,5.4,123,1 +2020,8,6,14,0,25.900000000000002,1.29,0.1085,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.266,91.31,127,0.15,991,5.300000000000001,124,1 +2020,8,6,15,0,25.6,1.27,0.1057,0.62,0,0,0,7,24.3,0,0,0,0,0.267,92.31,140.36,0.15,991,5.300000000000001,126,1 +2020,8,6,16,0,25.400000000000002,1.25,0.1058,0.62,0,0,0,7,24.1,0,0,0,0,0.268,92.78,152.23,0.15,991,5.300000000000001,130,0.9 +2020,8,6,17,0,25.200000000000003,1.23,0.1073,0.62,0,0,0,8,24,0,0,0,0,0.268,93.17,159.75,0.15,990,5.300000000000001,133,0.9 +2020,8,6,18,0,25,1.22,0.1076,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.269,93.5,157.89000000000001,0.15,989,5.2,133,0.8 +2020,8,6,19,0,24.900000000000002,1.21,0.10650000000000001,0.62,0,0,0,8,23.8,0,0,0,0,0.269,93.5,148.27,0.15,989,5.2,132,0.7000000000000001 +2020,8,6,20,0,24.8,1.22,0.1043,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.27,93.63,135.69,0.15,989,5.2,131,0.7000000000000001 +2020,8,6,21,0,24.700000000000003,1.22,0.10250000000000001,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.27,93.98,122.05,0.15,989,5.1000000000000005,142,0.7000000000000001 +2020,8,6,22,0,24.5,1.23,0.10200000000000001,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.27,95.04,107.97,0.15,989,5.1000000000000005,157,0.7000000000000001 +2020,8,6,23,0,24.6,1.25,0.10300000000000001,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.269,96,93.68,0.15,990,5.2,160,0.7000000000000001 +2020,8,7,0,0,25.8,1.28,0.10930000000000001,0.62,51,404,126,3,24.700000000000003,66,44,3,74,0.269,93.7,79.22,0.15,990,5.2,160,1.1 +2020,8,7,1,0,26.900000000000002,1.31,0.1126,0.62,84,648,359,0,25.1,84,648,0,359,0.27,90.11,64.88,0.15,991,5.300000000000001,166,1.7000000000000002 +2020,8,7,2,0,27.700000000000003,1.34,0.11410000000000001,0.62,103,760,585,4,25.200000000000003,49,0,0,49,0.269,86.16,50.6,0.15,991,5.4,171,1.8 +2020,8,7,3,0,28.3,1.3800000000000001,0.1816,0.62,142,772,762,0,25,142,772,0,762,0.268,82.47,36.58,0.15,991,5.4,178,1.8 +2020,8,7,4,0,29,1.3900000000000001,0.1832,0.62,152,807,892,3,25,377,35,0,408,0.268,78.99,23.41,0.15,990,5.5,188,1.8 +2020,8,7,5,0,29.400000000000002,1.4000000000000001,0.18130000000000002,0.62,155,823,954,3,25,490,215,0,699,0.267,77.45,13.85,0.15,990,5.5,198,1.8 +2020,8,7,6,0,29.5,1.44,0.1986,0.62,161,810,937,8,25.1,485,194,0,671,0.266,77.25,16.44,0.15,989,5.5,205,1.9000000000000001 +2020,8,7,7,0,29.400000000000002,1.44,0.19110000000000002,0.62,152,793,852,8,25.1,410,331,0,702,0.266,77.87,27.98,0.15,988,5.4,210,1.9000000000000001 +2020,8,7,8,0,29.1,1.43,0.1809,0.62,137,754,701,8,25.200000000000003,329,317,0,566,0.266,79.47,41.58,0.15,988,5.4,213,2 +2020,8,7,9,0,28.6,1.44,0.16820000000000002,0.62,114,682,498,7,25.5,37,0,0,37,0.267,83.51,55.730000000000004,0.15,988,5.300000000000001,214,1.7000000000000002 +2020,8,7,10,0,27.8,1.44,0.154,0.62,83,542,268,6,25.700000000000003,28,0,0,28,0.267,88.27,70.06,0.15,988,5.1000000000000005,214,1.3 +2020,8,7,11,0,26.6,1.44,0.14250000000000002,0.62,32,211,53,7,25.5,20,0,3,20,0.268,93.7,84.37,0.15,988,5,213,0.8 +2020,8,7,12,0,26.3,1.42,0.13540000000000002,0.62,0,0,0,7,25.1,0,0,0,0,0.269,93.39,98.88,0.15,989,4.9,211,0.8 +2020,8,7,13,0,26.1,1.41,0.1293,0.62,0,0,0,6,24.900000000000002,0,0,0,0,0.269,93.28,113.12,0.15,990,4.800000000000001,208,0.8 +2020,8,7,14,0,25.900000000000002,1.41,0.1241,0.62,0,0,0,3,24.8,0,0,0,0,0.27,93.45,127.11,0.15,990,4.7,202,0.8 +2020,8,7,15,0,25.700000000000003,1.4000000000000001,0.12240000000000001,0.62,0,0,0,0,24.700000000000003,0,0,0,0,0.269,94.01,140.52,0.15,991,4.7,194,0.8 +2020,8,7,16,0,25.400000000000002,1.3900000000000001,0.12430000000000001,0.62,0,0,0,0,24.6,0,0,0,0,0.269,95.08,152.45000000000002,0.15,991,4.7,187,0.8 +2020,8,7,17,0,25.200000000000003,1.37,0.12940000000000002,0.62,0,0,0,8,24.400000000000002,0,0,0,0,0.268,95.56,160.03,0.15,990,4.800000000000001,189,0.7000000000000001 +2020,8,7,18,0,25.1,1.35,0.1383,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.267,95.8,158.13,0.15,990,4.800000000000001,199,0.7000000000000001 +2020,8,7,19,0,25,1.33,0.14850000000000002,0.62,0,0,0,3,24.3,0,0,0,0,0.267,95.97,148.41,0.15,989,4.9,206,0.6000000000000001 +2020,8,7,20,0,24.900000000000002,1.32,0.1582,0.62,0,0,0,0,24.3,0,0,0,0,0.267,96.29,135.77,0.15,989,5,215,0.6000000000000001 +2020,8,7,21,0,24.8,1.32,0.1686,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.267,96.34,122.09,0.15,989,5.1000000000000005,225,0.6000000000000001 +2020,8,7,22,0,24.700000000000003,1.32,0.1729,0.62,0,0,0,0,24.1,0,0,0,0,0.267,96.32000000000001,107.98,0.15,989,5.2,232,0.7000000000000001 +2020,8,7,23,0,24.900000000000002,1.32,0.1713,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.266,96.06,93.67,0.15,989,5.2,226,0.6000000000000001 +2020,8,8,0,0,26,1.33,0.1645,0.62,58,344,122,1,25.1,58,344,0,122,0.266,95.07000000000001,79.19,0.15,990,5.2,205,0.9 +2020,8,8,1,0,27,1.34,0.1574,0.62,97,605,354,0,25.5,97,605,0,354,0.266,91.26,64.83,0.15,990,5.2,196,1.7000000000000002 +2020,8,8,2,0,27.700000000000003,1.34,0.1535,0.62,118,729,581,0,25.5,118,729,0,581,0.266,87.65,50.52,0.15,991,5.2,198,2.2 +2020,8,8,3,0,28.400000000000002,1.29,0.1231,0.62,119,816,775,0,25.200000000000003,119,816,0,775,0.266,82.81,36.47,0.15,990,5.1000000000000005,204,2.4000000000000004 +2020,8,8,4,0,29,1.29,0.12140000000000001,0.62,126,851,908,0,25,126,851,0,908,0.265,79.23,23.240000000000002,0.15,990,5,211,2.5 +2020,8,8,5,0,29.3,1.28,0.11800000000000001,0.62,127,867,970,3,24.8,482,101,0,581,0.265,77,13.57,0.15,989,4.9,218,2.4000000000000004 +2020,8,8,6,0,29.400000000000002,1.27,0.1163,0.62,126,867,958,0,24.6,126,867,0,958,0.265,75.65,16.240000000000002,0.15,988,4.800000000000001,223,2.2 +2020,8,8,7,0,29.200000000000003,1.26,0.1131,0.62,120,850,871,3,24.5,360,431,0,741,0.264,76.05,27.89,0.15,988,4.7,228,2 +2020,8,8,8,0,29,1.26,0.10830000000000001,0.62,109,813,718,0,24.6,109,813,0,718,0.264,77.28,41.550000000000004,0.15,987,4.7,230,1.6 +2020,8,8,9,0,28.6,1.26,0.1071,0.62,95,739,511,3,24.700000000000003,177,500,0,459,0.263,79.4,55.730000000000004,0.15,988,4.7,231,1.3 +2020,8,8,10,0,27.8,1.26,0.1046,0.62,73,595,276,3,24.8,123,271,3,215,0.263,83.96000000000001,70.08,0.15,988,4.7,229,0.9 +2020,8,8,11,0,26.900000000000002,1.26,0.1018,0.62,31,247,55,8,24.400000000000002,31,247,5,55,0.263,86.29,84.41,0.15,989,4.800000000000001,226,0.7000000000000001 +2020,8,8,12,0,26.700000000000003,1.25,0.1012,0.62,0,0,0,7,24,0,0,0,0,0.264,85.02,98.94,0.15,989,4.9,226,0.7000000000000001 +2020,8,8,13,0,26.5,1.25,0.0999,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.265,84.66,113.21000000000001,0.15,990,5,227,0.6000000000000001 +2020,8,8,14,0,26.3,1.26,0.0978,0.62,0,0,0,0,23.5,0,0,0,0,0.265,84.87,127.23,0.15,990,5.1000000000000005,227,0.7000000000000001 +2020,8,8,15,0,26.1,1.27,0.09770000000000001,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.266,85.34,140.67000000000002,0.15,991,5.1000000000000005,228,0.7000000000000001 +2020,8,8,16,0,25.900000000000002,1.28,0.0994,0.62,0,0,0,0,23.3,0,0,0,0,0.266,85.79,152.66,0.15,991,5.2,226,0.7000000000000001 +2020,8,8,17,0,25.6,1.3,0.1028,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.266,86.87,160.31,0.15,990,5.300000000000001,225,0.7000000000000001 +2020,8,8,18,0,25.3,1.31,0.1076,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.266,88.42,158.36,0.15,990,5.4,225,0.7000000000000001 +2020,8,8,19,0,25,1.32,0.11380000000000001,0.62,0,0,0,3,23.3,0,0,0,0,0.265,90.15,148.55,0.15,989,5.5,227,0.8 +2020,8,8,20,0,24.900000000000002,1.33,0.1221,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.264,91.18,135.84,0.15,989,5.6000000000000005,227,0.9 +2020,8,8,21,0,24.900000000000002,1.33,0.1287,0.62,0,0,0,0,23.5,0,0,0,0,0.264,91.95,122.13,0.15,989,5.7,224,0.9 +2020,8,8,22,0,24.8,1.34,0.1298,0.62,0,0,0,0,23.6,0,0,0,0,0.263,93.01,107.99000000000001,0.15,990,5.6000000000000005,220,0.9 +2020,8,8,23,0,25.1,1.33,0.12660000000000002,0.62,0,0,0,7,24,0,0,0,0,0.263,93.67,93.66,0.15,990,5.5,215,0.8 +2020,8,9,0,0,26.5,1.32,0.1236,0.62,52,388,125,7,24.900000000000002,67,70,3,80,0.263,90.7,79.16,0.15,990,5.5,210,1.2000000000000002 +2020,8,9,1,0,27.5,1.31,0.1213,0.62,86,640,359,7,25,162,279,0,281,0.262,86.23,64.78,0.15,991,5.4,207,1.6 +2020,8,9,2,0,28.200000000000003,1.29,0.1194,0.62,105,757,587,7,25,267,312,0,466,0.262,82.89,50.44,0.15,991,5.300000000000001,210,2 +2020,8,9,3,0,28.6,1.18,0.2155,0.62,159,749,762,8,25,319,425,0,661,0.262,80.84,36.36,0.15,991,5.2,215,2.2 +2020,8,9,4,0,29,1.17,0.1938,0.62,160,802,898,7,25,461,175,0,622,0.261,78.87,23.06,0.15,990,5,219,2.3000000000000003 +2020,8,9,5,0,29.200000000000003,1.16,0.17600000000000002,0.62,156,829,963,7,24.900000000000002,492,131,0,620,0.261,77.69,13.290000000000001,0.15,989,4.9,220,2.3000000000000003 +2020,8,9,6,0,29.400000000000002,1.18,0.1869,0.62,160,819,947,7,24.8,474,262,0,727,0.26,76.14,16.04,0.15,989,4.9,219,2.2 +2020,8,9,7,0,29.3,1.17,0.1683,0.62,146,810,863,7,24.6,403,344,0,707,0.26,75.81,27.810000000000002,0.15,988,4.800000000000001,220,2.1 +2020,8,9,8,0,29.1,1.17,0.153,0.62,129,777,711,8,24.5,318,370,0,595,0.261,76.39,41.52,0.15,988,4.7,221,1.8 +2020,8,9,9,0,28.700000000000003,1.18,0.1395,0.62,107,708,506,7,24.700000000000003,246,186,0,350,0.262,78.85000000000001,55.730000000000004,0.15,988,4.7,220,1.4000000000000001 +2020,8,9,10,0,27.900000000000002,1.2,0.126,0.62,78,570,272,0,24.8,78,570,0,272,0.263,83.25,70.11,0.15,988,4.6000000000000005,218,1.1 +2020,8,9,11,0,26.6,1.21,0.1148,0.62,32,228,54,8,24.400000000000002,31,18,3,33,0.264,87.92,84.45,0.15,989,4.6000000000000005,216,0.8 +2020,8,9,12,0,26.200000000000003,1.21,0.1076,0.62,0,0,0,7,24,0,0,0,0,0.265,87.72,99,0.15,989,4.5,211,0.9 +2020,8,9,13,0,25.900000000000002,1.22,0.1041,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.265,88.56,113.3,0.15,990,4.5,203,0.9 +2020,8,9,14,0,25.6,1.22,0.1051,0.62,0,0,0,0,23.8,0,0,0,0,0.265,89.66,127.34,0.15,991,4.5,196,0.9 +2020,8,9,15,0,25.400000000000002,1.22,0.10840000000000001,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.266,90.33,140.83,0.15,991,4.6000000000000005,191,1 +2020,8,9,16,0,25.200000000000003,1.23,0.11230000000000001,0.62,0,0,0,0,23.6,0,0,0,0,0.266,91.06,152.89000000000001,0.15,991,4.6000000000000005,188,1 +2020,8,9,17,0,25,1.23,0.1164,0.62,0,0,0,1,23.6,0,0,0,0,0.266,91.93,160.6,0.15,991,4.6000000000000005,189,1 +2020,8,9,18,0,24.8,1.23,0.12050000000000001,0.62,0,0,0,0,23.6,0,0,0,0,0.267,92.92,158.6,0.15,990,4.6000000000000005,191,1 +2020,8,9,19,0,24.6,1.23,0.12390000000000001,0.62,0,0,0,0,23.6,0,0,0,0,0.267,94.07000000000001,148.69,0.15,990,4.6000000000000005,195,1 +2020,8,9,20,0,24.5,1.24,0.1259,0.62,0,0,0,3,23.6,0,0,0,0,0.268,94.68,135.92000000000002,0.15,990,4.5,197,1 +2020,8,9,21,0,24.400000000000002,1.25,0.1278,0.62,0,0,0,0,23.6,0,0,0,0,0.267,95.34,122.17,0.15,990,4.5,206,1 +2020,8,9,22,0,24.200000000000003,1.25,0.1307,0.62,0,0,0,0,23.6,0,0,0,0,0.266,96.7,108,0.15,990,4.5,214,1 +2020,8,9,23,0,24.400000000000002,1.26,0.1345,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.265,97.18,93.64,0.15,991,4.5,219,0.9 +2020,8,10,0,0,25.8,1.26,0.1368,0.62,55,377,126,0,24.8,55,377,0,126,0.264,94.33,79.13,0.15,991,4.5,218,1.1 +2020,8,10,1,0,27,1.27,0.13470000000000001,0.62,91,632,360,0,25.200000000000003,91,632,0,360,0.264,90.03,64.72,0.15,992,4.6000000000000005,203,1.5 +2020,8,10,2,0,27.900000000000002,1.27,0.1327,0.62,110,751,590,1,25.400000000000002,110,751,0,590,0.264,86.11,50.36,0.15,992,4.6000000000000005,203,1.7000000000000002 +2020,8,10,3,0,28.6,1.25,0.1383,0.62,125,809,778,8,25.400000000000002,348,368,0,645,0.264,82.86,36.24,0.15,992,4.7,209,1.8 +2020,8,10,4,0,29.200000000000003,1.24,0.1434,0.62,136,838,908,1,25.400000000000002,136,838,0,908,0.264,80.06,22.88,0.15,991,4.800000000000001,217,1.7000000000000002 +2020,8,10,5,0,29.5,1.23,0.14980000000000002,0.62,143,848,969,0,25.3,143,848,0,969,0.264,78.17,13.01,0.15,990,4.800000000000001,227,1.6 +2020,8,10,6,0,29.700000000000003,1.22,0.1432,0.62,139,848,955,0,25.1,139,848,0,955,0.264,76.60000000000001,15.84,0.15,990,4.9,234,1.5 +2020,8,10,7,0,29.5,1.22,0.149,0.62,136,822,864,0,25,136,822,0,864,0.263,76.62,27.72,0.15,989,5.1000000000000005,241,1.4000000000000001 +2020,8,10,8,0,29.1,1.22,0.14980000000000002,0.62,127,777,708,3,24.900000000000002,320,354,0,584,0.263,78.29,41.480000000000004,0.15,989,5.2,247,1.4000000000000001 +2020,8,10,9,0,28.700000000000003,1.24,0.15,0.62,110,696,502,0,25.3,110,696,0,502,0.262,82,55.730000000000004,0.15,989,5.2,252,1.1 +2020,8,10,10,0,27.900000000000002,1.25,0.149,0.62,83,541,267,7,25.3,131,188,0,195,0.262,85.71000000000001,70.13,0.15,990,5.300000000000001,253,0.9 +2020,8,10,11,0,27,1.26,0.1477,0.62,33,191,51,3,25.1,31,36,3,35,0.263,89.24,84.5,0.15,990,5.300000000000001,250,0.6000000000000001 +2020,8,10,12,0,26.700000000000003,1.27,0.1492,0.62,0,0,0,7,24.6,0,0,1,0,0.264,88.54,99.07000000000001,0.15,991,5.4,241,0.6000000000000001 +2020,8,10,13,0,26.6,1.27,0.1484,0.62,0,0,0,7,24.5,0,0,0,0,0.265,88.11,113.39,0.15,992,5.4,234,0.7000000000000001 +2020,8,10,14,0,26.400000000000002,1.27,0.1489,0.62,0,0,0,7,24.3,0,0,0,0,0.265,88.3,127.46000000000001,0.15,992,5.5,227,0.7000000000000001 +2020,8,10,15,0,26.3,1.26,0.15330000000000002,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.266,88.15,140.99,0.15,992,5.5,219,0.7000000000000001 +2020,8,10,16,0,26,1.25,0.1645,0.62,0,0,0,6,24.1,0,0,0,0,0.267,89.31,153.11,0.15,992,5.5,214,0.7000000000000001 +2020,8,10,17,0,25.8,1.24,0.17500000000000002,0.62,0,0,0,7,24.1,0,0,0,0,0.267,90.2,160.9,0.15,992,5.5,220,0.7000000000000001 +2020,8,10,18,0,25.6,1.23,0.18330000000000002,0.62,0,0,0,7,24,0,0,0,0,0.268,90.89,158.84,0.15,991,5.5,231,0.7000000000000001 +2020,8,10,19,0,25.6,1.22,0.1948,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.267,90.34,148.82,0.15,991,5.5,233,0.6000000000000001 +2020,8,10,20,0,25.6,1.21,0.2044,0.62,0,0,0,7,23.8,0,0,0,0,0.266,89.91,135.99,0.15,991,5.5,228,0.6000000000000001 +2020,8,10,21,0,25.400000000000002,1.21,0.2053,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.266,90.23,122.2,0.15,991,5.5,234,0.6000000000000001 +2020,8,10,22,0,25.200000000000003,1.23,0.1991,0.62,0,0,0,7,23.5,0,0,0,0,0.265,90.53,108.01,0.15,991,5.5,242,0.6000000000000001 +2020,8,10,23,0,25.1,1.24,0.19060000000000002,0.62,0,0,0,6,23.6,0,0,0,0,0.265,91.51,93.63,0.15,991,5.5,247,0.6000000000000001 +2020,8,11,0,0,26,1.26,0.1852,0.62,61,322,122,6,24.6,46,0,3,46,0.264,91.84,79.09,0.15,992,5.4,239,0.7000000000000001 +2020,8,11,1,0,27.3,1.28,0.17830000000000001,0.62,103,585,353,6,24.400000000000002,107,0,0,107,0.265,84.02,64.66,0.15,992,5.4,219,0.9 +2020,8,11,2,0,28.700000000000003,1.29,0.1771,0.62,127,710,580,6,23.700000000000003,255,39,0,280,0.265,74.24,50.28,0.15,992,5.4,213,1.1 +2020,8,11,3,0,29.3,1.29,0.19460000000000002,0.62,149,765,767,6,23.3,382,102,0,465,0.264,69.98,36.12,0.15,992,5.300000000000001,214,1.2000000000000002 +2020,8,11,4,0,29.5,1.28,0.201,0.62,161,797,896,7,23.3,444,285,0,707,0.263,69.16,22.7,0.15,991,5.4,220,1.2000000000000002 +2020,8,11,5,0,29.700000000000003,1.27,0.21200000000000002,0.62,170,805,955,7,23.5,493,129,0,620,0.263,69.52,12.72,0.15,991,5.5,224,1.2000000000000002 +2020,8,11,6,0,29.6,1.26,0.23020000000000002,0.62,178,790,939,6,23.700000000000003,462,76,0,535,0.262,70.81,15.64,0.15,990,5.5,227,1.2000000000000002 +2020,8,11,7,0,29.5,1.26,0.2412,0.62,176,759,848,7,24,439,190,0,607,0.262,72.27,27.64,0.15,990,5.6000000000000005,232,1.2000000000000002 +2020,8,11,8,0,29.200000000000003,1.27,0.23570000000000002,0.62,160,714,695,7,24.3,350,225,0,519,0.262,74.82000000000001,41.46,0.15,989,5.6000000000000005,235,1.1 +2020,8,11,9,0,28.8,1.29,0.2331,0.62,137,627,490,7,24.400000000000002,234,277,0,389,0.262,76.96000000000001,55.74,0.15,989,5.6000000000000005,230,1 +2020,8,11,10,0,28,1.3,0.2301,0.62,101,464,259,7,24.400000000000002,94,0,0,94,0.262,80.77,70.16,0.15,990,5.6000000000000005,215,0.9 +2020,8,11,11,0,27.1,1.32,0.2187,0.62,35,139,48,8,24.8,21,0,3,21,0.263,87.4,84.54,0.15,990,5.6000000000000005,189,0.7000000000000001 +2020,8,11,12,0,26.6,1.33,0.20980000000000001,0.62,0,0,0,7,24.5,0,0,0,0,0.264,88.52,99.14,0.15,991,5.6000000000000005,176,0.8 +2020,8,11,13,0,26.3,1.34,0.20550000000000002,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.264,89.32000000000001,113.48,0.15,992,5.6000000000000005,181,0.8 +2020,8,11,14,0,26,1.33,0.2064,0.62,0,0,0,7,24.3,0,0,0,0,0.264,90.4,127.58,0.15,993,5.6000000000000005,185,0.8 +2020,8,11,15,0,25.8,1.33,0.2087,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.264,91.04,141.15,0.15,993,5.7,192,0.8 +2020,8,11,16,0,25.6,1.32,0.2099,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.264,91.83,153.34,0.15,993,5.7,195,0.8 +2020,8,11,17,0,25.3,1.31,0.2086,0.62,0,0,0,7,24.1,0,0,0,0,0.264,93.16,161.20000000000002,0.15,992,5.6000000000000005,197,0.8 +2020,8,11,18,0,25.1,1.3,0.20650000000000002,0.62,0,0,0,7,24.1,0,0,0,0,0.263,93.94,159.08,0.15,992,5.6000000000000005,196,0.8 +2020,8,11,19,0,24.900000000000002,1.3,0.20350000000000001,0.62,0,0,0,7,24,0,0,0,0,0.262,94.60000000000001,148.96,0.15,991,5.6000000000000005,189,0.8 +2020,8,11,20,0,24.700000000000003,1.3,0.19840000000000002,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.261,95.31,136.07,0.15,991,5.6000000000000005,185,0.8 +2020,8,11,21,0,24.5,1.3,0.19110000000000002,0.62,0,0,0,7,23.8,0,0,0,0,0.261,95.85000000000001,122.23,0.15,991,5.5,186,0.9 +2020,8,11,22,0,24.3,1.3,0.1872,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.262,96.5,108.01,0.15,991,5.5,191,0.9 +2020,8,11,23,0,24.6,1.3,0.186,0.62,0,0,0,8,24,0,0,0,0,0.262,96.36,93.61,0.15,992,5.4,193,0.8 +2020,8,12,0,0,25.8,1.29,0.18680000000000002,0.62,61,323,122,7,24.8,66,37,3,73,0.263,94.28,79.05,0.15,993,5.4,194,1.3 +2020,8,12,1,0,26.8,1.3,0.18150000000000002,0.62,104,584,354,6,25.200000000000003,174,83,0,209,0.264,90.88,64.61,0.15,993,5.4,187,1.7000000000000002 +2020,8,12,2,0,27.6,1.32,0.1716,0.62,125,715,583,7,25.1,286,101,0,350,0.266,86.27,50.2,0.15,994,5.4,189,1.8 +2020,8,12,3,0,28.200000000000003,1.3,0.1366,0.62,125,806,777,8,24.700000000000003,354,355,0,640,0.266,81.33,36,0.15,994,5.4,193,1.8 +2020,8,12,4,0,28.8,1.31,0.1373,0.62,133,839,908,7,24.5,181,8,0,188,0.266,77.4,22.52,0.15,993,5.4,195,1.7000000000000002 +2020,8,12,5,0,29.1,1.31,0.1388,0.62,137,852,969,7,24.3,431,45,0,476,0.265,75.52,12.42,0.15,992,5.4,199,1.7000000000000002 +2020,8,12,6,0,29.3,1.3,0.2164,0.62,170,799,941,7,24.200000000000003,259,14,0,272,0.264,74.14,15.44,0.15,991,5.5,201,1.6 +2020,8,12,7,0,29.200000000000003,1.29,0.2159,0.62,164,776,852,6,24.1,253,13,0,265,0.263,74.21000000000001,27.560000000000002,0.15,991,5.5,202,1.6 +2020,8,12,8,0,28.900000000000002,1.29,0.21080000000000002,0.62,150,732,698,6,24.1,252,16,0,264,0.263,75.29,41.43,0.15,990,5.5,203,1.5 +2020,8,12,9,0,28.3,1.31,0.2026,0.62,127,652,494,7,24.5,245,107,0,305,0.262,79.86,55.74,0.15,990,5.4,204,1.3 +2020,8,12,10,0,27.5,1.32,0.1978,0.62,94,494,261,7,24.5,30,0,0,30,0.262,83.56,70.19,0.15,990,5.4,205,1.2000000000000002 +2020,8,12,11,0,26.200000000000003,1.32,0.19210000000000002,0.62,33,155,48,7,24.700000000000003,4,0,3,4,0.262,91.25,84.59,0.15,991,5.4,207,0.8 +2020,8,12,12,0,25.700000000000003,1.32,0.1893,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.261,92.27,99.21000000000001,0.15,992,5.4,206,0.8 +2020,8,12,13,0,25.3,1.33,0.1867,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.261,93.65,113.58,0.15,993,5.4,207,0.8 +2020,8,12,14,0,25,1.34,0.1812,0.62,0,0,0,7,24,0,0,0,0,0.262,94.44,127.71000000000001,0.15,993,5.4,210,0.8 +2020,8,12,15,0,24.8,1.34,0.1763,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.263,94.8,141.32,0.15,994,5.4,215,0.8 +2020,8,12,16,0,24.6,1.35,0.1724,0.62,0,0,0,8,23.8,0,0,0,0,0.264,95.33,153.57,0.15,993,5.300000000000001,218,0.8 +2020,8,12,17,0,24.3,1.35,0.16920000000000002,0.62,0,0,0,4,23.700000000000003,0,0,0,0,0.264,96.65,161.5,0.15,993,5.300000000000001,219,0.8 +2020,8,12,18,0,24.1,1.37,0.1653,0.62,0,0,0,8,23.6,0,0,0,0,0.264,97.29,159.31,0.15,992,5.300000000000001,216,0.8 +2020,8,12,19,0,24,1.3900000000000001,0.1622,0.62,0,0,0,4,23.6,0,0,0,0,0.264,97.38,149.09,0.15,991,5.300000000000001,211,0.8 +2020,8,12,20,0,23.900000000000002,1.4000000000000001,0.15760000000000002,0.62,0,0,0,8,23.5,0,0,0,0,0.263,97.67,136.14000000000001,0.15,991,5.300000000000001,205,0.9 +2020,8,12,21,0,23.900000000000002,1.41,0.15760000000000002,0.62,0,0,0,3,23.5,0,0,0,0,0.262,97.37,122.26,0.15,991,5.300000000000001,201,0.9 +2020,8,12,22,0,23.900000000000002,1.42,0.15760000000000002,0.62,0,0,0,8,23.400000000000002,0,0,0,0,0.261,97.06,108.02,0.15,991,5.300000000000001,201,0.8 +2020,8,12,23,0,24.200000000000003,1.43,0.157,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.261,96.91,93.59,0.15,992,5.2,206,0.7000000000000001 +2020,8,13,0,0,25.6,1.45,0.1573,0.62,57,361,125,3,24.400000000000002,66,169,3,99,0.261,93.23,79.01,0.15,992,5.2,199,1.1 +2020,8,13,1,0,26.700000000000003,1.46,0.1537,0.62,95,615,359,3,24.5,156,332,0,299,0.261,87.94,64.55,0.15,992,5.300000000000001,191,1.4000000000000001 +2020,8,13,2,0,27.700000000000003,1.47,0.15360000000000001,0.62,117,734,587,8,24.200000000000003,244,416,0,511,0.261,81.08,50.11,0.15,993,5.300000000000001,199,1.3 +2020,8,13,3,0,28.6,1.45,0.14830000000000002,0.62,128,801,778,3,23.900000000000002,302,477,0,689,0.261,75.92,35.88,0.15,992,5.300000000000001,216,1.2000000000000002 +2020,8,13,4,0,29.3,1.44,0.1544,0.62,139,830,907,7,23.900000000000002,383,445,0,795,0.261,72.83,22.34,0.15,992,5.4,239,1.2000000000000002 +2020,8,13,5,0,29.6,1.43,0.1636,0.62,148,838,967,8,23.900000000000002,427,436,0,853,0.261,71.56,12.120000000000001,0.15,991,5.4,256,1.4000000000000001 +2020,8,13,6,0,29.5,1.42,0.1802,0.62,154,824,949,3,23.900000000000002,479,104,0,579,0.261,71.77,15.25,0.15,990,5.5,265,1.7000000000000002 +2020,8,13,7,0,29.3,1.41,0.18480000000000002,0.62,150,799,859,8,23.8,418,299,0,684,0.26,72.52,27.490000000000002,0.15,989,5.5,267,1.8 +2020,8,13,8,0,28.900000000000002,1.41,0.1787,0.62,137,757,705,0,24.1,137,757,0,705,0.26,75.13,41.410000000000004,0.15,989,5.5,266,1.9000000000000001 +2020,8,13,9,0,28.3,1.4000000000000001,0.1918,0.62,124,662,496,8,24.400000000000002,244,98,0,298,0.26,79.45,55.75,0.15,989,5.6000000000000005,264,1.6 +2020,8,13,10,0,27.400000000000002,1.3900000000000001,0.1988,0.62,94,494,261,7,24.400000000000002,133,126,0,175,0.26,83.91,70.23,0.15,989,5.6000000000000005,261,1.3 +2020,8,13,11,0,26.3,1.3900000000000001,0.1928,0.62,33,156,47,3,24.700000000000003,33,156,5,47,0.26,91.15,84.65,0.15,990,5.6000000000000005,258,0.7000000000000001 +2020,8,13,12,0,26,1.4000000000000001,0.1971,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.261,91.17,99.28,0.15,991,5.6000000000000005,257,0.7000000000000001 +2020,8,13,13,0,26,1.4000000000000001,0.1978,0.62,0,0,0,7,24.1,0,0,0,0,0.262,89.48,113.67,0.15,991,5.6000000000000005,262,0.6000000000000001 +2020,8,13,14,0,26.1,1.4000000000000001,0.197,0.62,0,0,0,8,23.8,0,0,0,0,0.262,87.26,127.83,0.15,992,5.6000000000000005,268,0.5 +2020,8,13,15,0,26.200000000000003,1.3900000000000001,0.2026,0.62,0,0,0,7,23.6,0,0,0,0,0.263,85.41,141.49,0.15,992,5.6000000000000005,281,0.30000000000000004 +2020,8,13,16,0,26.1,1.3900000000000001,0.2104,0.62,0,0,0,7,23.5,0,0,0,0,0.263,85.62,153.81,0.15,992,5.7,339,0.2 +2020,8,13,17,0,25.8,1.3800000000000001,0.2137,0.62,0,0,0,6,23.5,0,0,0,0,0.263,87.11,161.81,0.15,991,5.7,104,0.4 +2020,8,13,18,0,25.400000000000002,1.36,0.23070000000000002,0.62,0,0,0,6,23.5,0,0,0,0,0.263,89.16,159.55,0.15,991,5.7,129,0.5 +2020,8,13,19,0,25,1.36,0.22870000000000001,0.62,0,0,0,6,23.5,0,0,0,0,0.263,91.39,149.22,0.15,990,5.7,148,0.6000000000000001 +2020,8,13,20,0,24.700000000000003,1.36,0.2087,0.62,0,0,0,6,23.5,0,0,0,0,0.263,93.18,136.2,0.15,990,5.7,161,0.7000000000000001 +2020,8,13,21,0,24.700000000000003,1.36,0.2076,0.62,0,0,0,6,23.5,0,0,0,0,0.263,92.96000000000001,122.29,0.15,990,5.6000000000000005,169,0.7000000000000001 +2020,8,13,22,0,24.6,1.37,0.2021,0.62,0,0,0,6,23.400000000000002,0,0,0,0,0.263,92.97,108.02,0.15,990,5.6000000000000005,174,0.6000000000000001 +2020,8,13,23,0,24.6,1.3800000000000001,0.1883,0.62,0,0,0,6,23.5,0,0,0,0,0.263,93.89,93.57000000000001,0.15,991,5.6000000000000005,182,0.5 +2020,8,14,0,0,25.400000000000002,1.3900000000000001,0.1857,0.62,61,330,125,7,24.3,21,0,3,21,0.264,93.65,78.97,0.15,992,5.5,205,0.6000000000000001 +2020,8,14,1,0,26.5,1.41,0.17350000000000002,0.62,102,595,359,6,24.6,42,0,0,42,0.265,89.52,64.48,0.15,992,5.5,208,0.8 +2020,8,14,2,0,27.6,1.43,0.1573,0.62,119,730,588,7,24,202,10,0,208,0.266,80.87,50.02,0.15,992,5.4,221,0.9 +2020,8,14,3,0,28.400000000000002,1.46,0.21330000000000002,0.62,155,757,770,8,23.5,392,182,0,541,0.266,75.03,35.76,0.15,992,5.300000000000001,221,1 +2020,8,14,4,0,29.1,1.44,0.21350000000000002,0.62,165,793,900,7,23.400000000000002,465,151,0,605,0.266,71.38,22.150000000000002,0.15,992,5.4,133,0.8 +2020,8,14,5,0,28.900000000000002,1.43,0.2107,0.62,168,810,961,8,23.200000000000003,427,408,0,826,0.266,71.55,11.82,0.15,991,5.4,104,1.3 +2020,8,14,6,0,29.1,1.47,0.2144,0.62,168,805,946,7,23.3,491,187,0,672,0.265,70.77,15.06,0.15,990,5.300000000000001,89,1.2000000000000002 +2020,8,14,7,0,29.1,1.48,0.20220000000000002,0.62,157,790,858,7,23.200000000000003,403,60,0,457,0.265,70.41,27.42,0.15,989,5.300000000000001,74,1.2000000000000002 +2020,8,14,8,0,29.200000000000003,1.48,0.1943,0.62,142,748,704,8,23.1,347,96,0,419,0.264,69.85000000000001,41.4,0.15,989,5.300000000000001,70,1 +2020,8,14,9,0,29,1.49,0.1849,0.62,120,671,498,7,23.200000000000003,246,116,0,311,0.264,71.04,55.77,0.15,989,5.300000000000001,67,0.8 +2020,8,14,10,0,28.1,1.51,0.1763,0.62,87,519,262,7,23.200000000000003,129,60,0,149,0.264,74.61,70.26,0.15,989,5.300000000000001,66,0.8 +2020,8,14,11,0,26.900000000000002,1.52,0.1686,0.62,31,180,48,7,23.6,30,11,3,31,0.264,82.38,84.7,0.15,990,5.2,76,0.6000000000000001 +2020,8,14,12,0,26.400000000000002,1.53,0.1618,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.264,82.69,99.36,0.15,990,5.2,105,0.7000000000000001 +2020,8,14,13,0,25.8,1.52,0.1584,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.265,85.58,113.77,0.15,991,5.2,107,0.7000000000000001 +2020,8,14,14,0,25.3,1.51,0.1577,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.265,88.21000000000001,127.96000000000001,0.15,991,5.2,97,0.8 +2020,8,14,15,0,24.8,1.51,0.15760000000000002,0.62,0,0,0,8,23.1,0,0,0,0,0.266,90.29,141.66,0.15,991,5.1000000000000005,82,0.8 +2020,8,14,16,0,24.400000000000002,1.5,0.15940000000000001,0.62,0,0,0,8,22.900000000000002,0,0,0,0,0.266,91.62,154.04,0.15,991,5.1000000000000005,71,0.8 +2020,8,14,17,0,24.1,1.49,0.16060000000000002,0.62,0,0,0,7,22.8,0,0,0,0,0.266,92.67,162.12,0.15,991,5.1000000000000005,66,0.8 +2020,8,14,18,0,23.8,1.49,0.1617,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.266,93.38,159.79,0.15,990,5.1000000000000005,64,0.8 +2020,8,14,19,0,23.400000000000002,1.49,0.16090000000000002,0.62,0,0,0,4,22.400000000000002,0,0,0,0,0.265,94.36,149.35,0.15,990,5.1000000000000005,64,0.8 +2020,8,14,20,0,23.200000000000003,1.49,0.15910000000000002,0.62,0,0,0,7,22.3,0,0,0,0,0.264,94.55,136.27,0.15,990,5.1000000000000005,67,0.8 +2020,8,14,21,0,23,1.48,0.1567,0.62,0,0,0,7,22.200000000000003,0,0,0,0,0.263,95.05,122.32000000000001,0.15,990,5.1000000000000005,66,0.8 +2020,8,14,22,0,23,1.48,0.15510000000000002,0.62,0,0,0,8,22.1,0,0,0,0,0.263,94.68,108.02,0.15,990,5.1000000000000005,64,0.9 +2020,8,14,23,0,23.400000000000002,1.47,0.15430000000000002,0.62,0,0,0,8,22.5,0,0,0,0,0.263,94.72,93.55,0.15,990,5.1000000000000005,63,0.9 +2020,8,15,0,0,25,1.48,0.1519,0.62,57,371,128,8,23,68,136,3,94,0.263,88.91,78.93,0.15,991,5.1000000000000005,70,1.2000000000000002 +2020,8,15,1,0,26.8,1.49,0.1476,0.62,94,624,364,0,23,94,624,0,364,0.263,79.81,64.42,0.15,992,5.1000000000000005,91,1.2000000000000002 +2020,8,15,2,0,28.400000000000002,1.49,0.1468,0.62,116,742,593,8,22.900000000000002,272,309,0,471,0.263,72.12,49.94,0.15,992,5.1000000000000005,108,1.2000000000000002 +2020,8,15,3,0,29.5,1.47,0.1691,0.62,138,789,779,3,23,376,288,0,610,0.263,68.15,35.64,0.15,991,5.2,120,1 +2020,8,15,4,0,30.200000000000003,1.44,0.17370000000000002,0.62,149,820,909,3,23.200000000000003,444,317,0,738,0.263,66.09,21.97,0.15,991,5.2,126,0.9 +2020,8,15,5,0,30.5,1.42,0.1779,0.62,155,831,970,3,23.200000000000003,473,77,0,548,0.263,65.24,11.52,0.15,990,5.300000000000001,127,0.8 +2020,8,15,6,0,30.5,1.35,0.16110000000000002,0.62,147,837,956,3,23.200000000000003,102,0,0,102,0.263,65.22,14.870000000000001,0.15,989,5.4,128,0.7000000000000001 +2020,8,15,7,0,30.6,1.34,0.1696,0.62,146,809,865,3,23.400000000000002,387,47,0,428,0.263,65.31,27.35,0.15,989,5.4,131,0.6000000000000001 +2020,8,15,8,0,30.200000000000003,1.35,0.1704,0.62,135,763,707,4,23.5,321,52,0,360,0.263,67.6,41.38,0.15,989,5.5,139,0.7000000000000001 +2020,8,15,9,0,30,1.37,0.22560000000000002,0.62,135,635,492,0,24.200000000000003,135,635,0,492,0.263,70.95,55.78,0.15,989,5.6000000000000005,130,0.6000000000000001 +2020,8,15,10,0,29.200000000000003,1.37,0.2374,0.62,102,459,257,4,23.900000000000002,128,50,0,145,0.263,73.03,70.3,0.15,989,5.6000000000000005,109,0.6000000000000001 +2020,8,15,11,0,27.8,1.37,0.24100000000000002,0.62,34,123,45,4,24.6,29,6,3,30,0.264,82.56,84.76,0.15,990,5.7,123,0.6000000000000001 +2020,8,15,12,0,27.1,1.36,0.257,0.62,0,0,0,0,24.700000000000003,0,0,0,0,0.265,86.92,99.44,0.15,991,5.7,133,0.6000000000000001 +2020,8,15,13,0,26.6,1.36,0.2654,0.62,0,0,0,0,24.6,0,0,0,0,0.266,88.86,113.87,0.15,991,5.7,135,0.6000000000000001 +2020,8,15,14,0,26.3,1.35,0.2707,0.62,0,0,0,4,24.5,0,0,0,0,0.266,89.81,128.09,0.15,992,5.7,133,0.7000000000000001 +2020,8,15,15,0,25.8,1.34,0.2886,0.62,0,0,0,4,24.400000000000002,0,0,0,0,0.266,92.16,141.83,0.15,992,5.800000000000001,130,0.7000000000000001 +2020,8,15,16,0,25.5,1.33,0.3022,0.62,0,0,0,4,24.400000000000002,0,0,0,0,0.266,93.51,154.28,0.15,992,5.800000000000001,126,0.8 +2020,8,15,17,0,25.1,1.33,0.3055,0.62,0,0,0,4,24.3,0,0,0,0,0.266,95.10000000000001,162.43,0.15,991,5.800000000000001,122,0.9 +2020,8,15,18,0,24.900000000000002,1.32,0.316,0.62,0,0,0,4,24.1,0,0,0,0,0.266,95.56,160.03,0.15,990,5.9,118,1 +2020,8,15,19,0,24.700000000000003,1.31,0.3265,0.62,0,0,0,4,24.1,0,0,0,0,0.266,96.24000000000001,149.48,0.15,990,5.9,115,0.9 +2020,8,15,20,0,24.5,1.3,0.3315,0.62,0,0,0,3,24,0,0,0,0,0.266,97.21000000000001,136.33,0.15,990,6,112,0.9 +2020,8,15,21,0,24.400000000000002,1.29,0.3382,0.62,0,0,0,4,24,0,0,0,0,0.266,97.60000000000001,122.34,0.15,990,6,107,0.8 +2020,8,15,22,0,24.400000000000002,1.28,0.32730000000000004,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.266,97.17,108.01,0.15,990,6.1000000000000005,100,0.7000000000000001 +2020,8,15,23,0,24.5,1.27,0.30610000000000004,0.62,0,0,0,3,24,0,0,0,0,0.266,97.33,93.52,0.15,991,6.1000000000000005,98,0.7000000000000001 +2020,8,16,0,0,25.3,1.27,0.29760000000000003,0.62,73,239,119,0,24.400000000000002,73,239,0,119,0.267,95.05,78.88,0.14,992,6.1000000000000005,119,1.1 +2020,8,16,1,0,26.1,1.27,0.2817,0.62,130,501,347,3,24.6,177,173,0,252,0.268,91.58,64.35,0.14,992,6,130,1.2000000000000002 +2020,8,16,2,0,26.700000000000003,1.28,0.25670000000000004,0.62,155,652,576,8,24.1,277,287,0,463,0.268,85.84,49.85,0.14,992,5.9,141,1.3 +2020,8,16,3,0,27.400000000000002,1.32,0.29400000000000004,0.62,188,703,760,3,24.1,374,297,0,616,0.267,82.39,35.51,0.14,992,5.800000000000001,151,1.4000000000000001 +2020,8,16,4,0,28.3,1.33,0.273,0.62,192,756,893,1,24.3,192,756,0,893,0.267,78.9,21.78,0.14,991,5.7,158,1.4000000000000001 +2020,8,16,5,0,29.1,1.33,0.25070000000000003,0.62,187,784,956,8,24.400000000000002,421,39,0,460,0.266,75.95,11.21,0.14,990,5.7,169,1.5 +2020,8,16,6,0,29.5,1.26,0.2099,0.62,169,804,946,7,24.400000000000002,281,15,0,296,0.265,74.17,14.69,0.14,989,5.7,178,1.6 +2020,8,16,7,0,29.5,1.25,0.20950000000000002,0.62,163,781,856,6,24.3,152,4,0,155,0.264,73.78,27.29,0.14,988,5.7,182,1.6 +2020,8,16,8,0,29.1,1.24,0.20470000000000002,0.62,149,736,701,6,24.400000000000002,120,0,0,120,0.264,75.91,41.37,0.14,988,5.7,185,1.6 +2020,8,16,9,0,28.5,1.24,0.2333,0.62,138,625,490,8,24.900000000000002,225,321,0,406,0.264,80.79,55.800000000000004,0.14,988,5.7,188,1.3 +2020,8,16,10,0,27.6,1.24,0.25120000000000003,0.62,106,441,254,6,24.700000000000003,12,0,0,12,0.265,84.38,70.34,0.14,988,5.800000000000001,186,1.2000000000000002 +2020,8,16,11,0,26.400000000000002,1.23,0.2521,0.62,34,107,43,6,25,4,0,3,4,0.266,91.9,84.82000000000001,0.14,989,5.800000000000001,188,0.9 +2020,8,16,12,0,25.900000000000002,1.22,0.272,0.62,0,0,0,6,24.8,0,0,0,0,0.267,93.54,99.52,0.14,990,5.800000000000001,187,0.9 +2020,8,16,13,0,25.6,1.2,0.278,0.62,0,0,0,6,24.6,0,0,0,0,0.268,94.37,113.98,0.14,991,5.9,185,0.9 +2020,8,16,14,0,25.400000000000002,1.19,0.2692,0.62,0,0,0,6,24.5,0,0,0,0,0.268,94.82000000000001,128.22,0.14,991,5.9,190,0.8 +2020,8,16,15,0,25.200000000000003,1.19,0.2674,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.268,95.22,142,0.14,991,5.9,207,0.6000000000000001 +2020,8,16,16,0,25.200000000000003,1.19,0.2591,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.268,94.2,154.52,0.14,991,5.800000000000001,231,0.5 +2020,8,16,17,0,25.1,1.2,0.24200000000000002,0.62,0,0,0,4,24,0,0,0,0,0.268,93.76,162.75,0.14,991,5.800000000000001,261,0.5 +2020,8,16,18,0,24.900000000000002,1.21,0.234,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.268,94.06,160.27,0.14,991,5.7,284,0.6000000000000001 +2020,8,16,19,0,24.6,1.22,0.2222,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.267,94.95,149.6,0.14,990,5.7,295,0.9 +2020,8,16,20,0,24.3,1.25,0.201,0.62,0,0,0,3,23.6,0,0,0,0,0.266,95.66,136.39000000000001,0.14,990,5.6000000000000005,300,1 +2020,8,16,21,0,24.1,1.26,0.1957,0.62,0,0,0,3,23.3,0,0,0,0,0.266,95.4,122.36,0.14,990,5.5,303,1 +2020,8,16,22,0,24,1.28,0.1895,0.62,0,0,0,3,23.1,0,0,0,0,0.265,94.83,108.01,0.14,991,5.4,308,0.9 +2020,8,16,23,0,24.200000000000003,1.29,0.18030000000000002,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.264,94.34,93.49,0.14,991,5.4,322,0.8 +2020,8,17,0,0,25.400000000000002,1.3,0.17250000000000001,0.62,61,343,127,3,23.700000000000003,64,3,3,65,0.264,90.37,78.84,0.14,992,5.4,341,0.8 +2020,8,17,1,0,27.5,1.31,0.1691,0.62,102,601,362,3,22.5,150,13,0,156,0.265,74.23,64.29,0.14,992,5.300000000000001,196,0.5 +2020,8,17,2,0,28.900000000000002,1.32,0.1678,0.62,125,723,592,3,21.5,249,31,0,269,0.266,64.55,49.76,0.14,992,5.300000000000001,193,0.7000000000000001 +2020,8,17,3,0,29.400000000000002,1.24,0.1648,0.62,138,789,781,3,21.5,300,23,0,318,0.266,62.6,35.39,0.14,992,5.4,214,0.6000000000000001 +2020,8,17,4,0,29.6,1.25,0.1704,0.62,149,820,912,3,21.900000000000002,435,67,0,498,0.266,63.190000000000005,21.59,0.14,991,5.4,232,0.8 +2020,8,17,5,0,29.700000000000003,1.24,0.1731,0.62,154,832,971,3,22.200000000000003,500,209,0,705,0.266,64.3,10.89,0.14,990,5.5,240,1.1 +2020,8,17,6,0,29.5,1.23,0.19010000000000002,0.62,161,817,952,3,22.6,490,218,0,700,0.266,66.42,14.51,0.14,990,5.5,240,1.3 +2020,8,17,7,0,29.1,1.23,0.19970000000000002,0.62,159,788,859,3,23,409,64,0,466,0.266,69.61,27.23,0.14,989,5.6000000000000005,236,1.4000000000000001 +2020,8,17,8,0,28.6,1.23,0.19590000000000002,0.62,146,742,703,3,23.3,175,5,0,179,0.265,73.28,41.36,0.14,989,5.6000000000000005,231,1.4000000000000001 +2020,8,17,9,0,28,1.23,0.2212,0.62,135,635,491,8,23.700000000000003,156,0,0,156,0.264,77.37,55.83,0.14,989,5.6000000000000005,228,1.4000000000000001 +2020,8,17,10,0,27.200000000000003,1.24,0.2265,0.62,101,462,256,3,23.8,120,277,0,213,0.264,81.71000000000001,70.39,0.14,989,5.6000000000000005,227,1.2000000000000002 +2020,8,17,11,0,26.200000000000003,1.24,0.2151,0.62,33,126,44,7,24.400000000000002,16,0,3,16,0.264,89.74,84.88,0.14,989,5.5,224,0.8 +2020,8,17,12,0,25.700000000000003,1.26,0.2046,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.264,91.53,99.61,0.14,990,5.5,220,0.8 +2020,8,17,13,0,25.400000000000002,1.26,0.19390000000000002,0.62,0,0,0,4,24,0,0,0,0,0.265,92.24,114.08,0.14,990,5.4,214,0.8 +2020,8,17,14,0,25.200000000000003,1.26,0.1859,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.265,92.46000000000001,128.36,0.14,991,5.4,208,0.8 +2020,8,17,15,0,25,1.26,0.18000000000000002,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.266,92.60000000000001,142.18,0.14,991,5.300000000000001,201,0.8 +2020,8,17,16,0,24.8,1.26,0.1751,0.62,0,0,0,0,23.6,0,0,0,0,0.266,92.99,154.77,0.14,991,5.300000000000001,195,0.8 +2020,8,17,17,0,24.700000000000003,1.25,0.1719,0.62,0,0,0,3,23.5,0,0,0,0,0.266,92.86,163.08,0.14,990,5.300000000000001,194,0.7000000000000001 +2020,8,17,18,0,24.6,1.25,0.1705,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.266,92.96000000000001,160.51,0.14,990,5.300000000000001,198,0.7000000000000001 +2020,8,17,19,0,24.400000000000002,1.24,0.1678,0.62,0,0,0,3,23.3,0,0,0,0,0.265,93.60000000000001,149.72,0.14,989,5.300000000000001,198,0.7000000000000001 +2020,8,17,20,0,24.200000000000003,1.24,0.1641,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.264,94.4,136.45,0.14,989,5.300000000000001,197,0.7000000000000001 +2020,8,17,21,0,24,1.23,0.1638,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.264,95.26,122.38,0.14,989,5.300000000000001,201,0.7000000000000001 +2020,8,17,22,0,23.900000000000002,1.23,0.1651,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.264,95.58,108,0.14,989,5.300000000000001,214,0.7000000000000001 +2020,8,17,23,0,24.200000000000003,1.22,0.1678,0.62,0,0,0,3,23.5,0,0,0,0,0.264,95.66,93.46000000000001,0.14,990,5.4,237,0.6000000000000001 +2020,8,18,0,0,25.6,1.23,0.1698,0.62,61,344,128,3,24,69,52,3,79,0.264,90.95,78.79,0.14,991,5.4,231,1 +2020,8,18,1,0,26.700000000000003,1.23,0.1719,0.62,103,596,362,0,24,103,596,0,362,0.265,85.25,64.22,0.14,992,5.5,211,1.5 +2020,8,18,2,0,27.5,1.22,0.17550000000000002,0.62,128,714,591,0,24.1,128,714,0,591,0.265,81.77,49.660000000000004,0.14,992,5.6000000000000005,207,1.7000000000000002 +2020,8,18,3,0,28,1.24,0.18780000000000002,0.62,148,772,778,0,24.200000000000003,148,772,0,778,0.265,79.77,35.26,0.14,992,5.6000000000000005,202,2 +2020,8,18,4,0,28.3,1.23,0.18860000000000002,0.62,157,807,908,0,24.200000000000003,157,807,0,908,0.265,78.42,21.400000000000002,0.14,991,5.7,200,2.1 +2020,8,18,5,0,28.5,1.22,0.18860000000000002,0.62,162,821,969,3,24.200000000000003,497,121,0,616,0.264,77.47,10.58,0.14,991,5.7,199,2.1 +2020,8,18,6,0,28.5,1.21,0.1937,0.62,163,814,952,6,24.1,238,13,0,250,0.264,77.25,14.33,0.14,990,5.7,199,2 +2020,8,18,7,0,28.3,1.19,0.1953,0.62,158,790,860,6,24,131,0,0,131,0.264,77.75,27.18,0.14,989,5.7,201,1.9000000000000001 +2020,8,18,8,0,27.900000000000002,1.2,0.18610000000000002,0.62,142,749,704,8,24.200000000000003,354,125,0,448,0.263,80.19,41.36,0.14,989,5.7,203,1.7000000000000002 +2020,8,18,9,0,27.3,1.2,0.1965,0.62,127,653,493,8,24.6,79,0,0,79,0.263,84.99,55.85,0.14,989,5.800000000000001,205,1.3 +2020,8,18,10,0,26.6,1.21,0.20320000000000002,0.62,96,480,257,8,24.5,19,0,0,19,0.264,88.07000000000001,70.43,0.14,989,5.800000000000001,204,1.1 +2020,8,18,11,0,25.700000000000003,1.21,0.1928,0.62,32,136,44,8,24.6,10,0,3,10,0.265,93.73,84.95,0.14,989,5.800000000000001,200,0.7000000000000001 +2020,8,18,12,0,25.3,1.22,0.1898,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.265,94.87,99.69,0.14,990,5.800000000000001,200,0.7000000000000001 +2020,8,18,13,0,25,1.23,0.1822,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.266,95.53,114.19,0.14,991,5.800000000000001,209,0.7000000000000001 +2020,8,18,14,0,24.8,1.24,0.1719,0.62,0,0,0,7,24,0,0,0,0,0.266,95.59,128.49,0.14,991,5.800000000000001,216,0.7000000000000001 +2020,8,18,15,0,24.6,1.25,0.1658,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.266,95.68,142.36,0.14,991,5.800000000000001,218,0.7000000000000001 +2020,8,18,16,0,24.5,1.25,0.1658,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.266,95.56,155.01,0.14,991,5.800000000000001,222,0.7000000000000001 +2020,8,18,17,0,24.5,1.24,0.1701,0.62,0,0,0,7,23.6,0,0,0,0,0.266,94.89,163.4,0.14,990,5.800000000000001,232,0.7000000000000001 +2020,8,18,18,0,24.400000000000002,1.24,0.1779,0.62,0,0,0,7,23.6,0,0,0,0,0.266,95.08,160.75,0.14,990,5.800000000000001,243,0.6000000000000001 +2020,8,18,19,0,24.3,1.25,0.1849,0.62,0,0,0,0,23.5,0,0,0,0,0.266,95.05,149.84,0.14,989,5.800000000000001,255,0.6000000000000001 +2020,8,18,20,0,24.200000000000003,1.25,0.18730000000000002,0.62,0,0,0,4,23.400000000000002,0,0,0,0,0.266,95.21000000000001,136.5,0.14,989,5.800000000000001,264,0.6000000000000001 +2020,8,18,21,0,24.200000000000003,1.26,0.1952,0.62,0,0,0,7,23.3,0,0,0,0,0.266,94.77,122.4,0.14,989,5.800000000000001,269,0.6000000000000001 +2020,8,18,22,0,24.200000000000003,1.27,0.20070000000000002,0.62,0,0,0,8,23.200000000000003,0,0,0,0,0.265,94.24,107.99000000000001,0.14,989,5.800000000000001,270,0.6000000000000001 +2020,8,18,23,0,24.400000000000002,1.28,0.19540000000000002,0.62,0,0,0,4,23.400000000000002,0,0,0,0,0.264,94.32000000000001,93.43,0.14,990,5.800000000000001,266,0.5 +2020,8,19,0,0,25.3,1.3,0.1965,0.62,64,322,127,4,24.1,42,0,3,42,0.264,92.83,78.74,0.14,990,5.800000000000001,243,0.6000000000000001 +2020,8,19,1,0,26.5,1.31,0.19770000000000001,0.62,110,574,360,4,24.400000000000002,128,0,0,128,0.264,88.42,64.15,0.14,991,5.800000000000001,215,0.8 +2020,8,19,2,0,27.3,1.32,0.1973,0.62,136,699,589,7,24.3,289,241,3,445,0.265,83.65,49.57,0.14,991,5.800000000000001,208,0.9 +2020,8,19,3,0,28.1,1.3,0.1963,0.62,151,767,778,8,24,338,404,0,668,0.265,78.29,35.14,0.14,991,5.800000000000001,214,1 +2020,8,19,4,0,28.400000000000002,1.31,0.2015,0.62,163,800,909,0,23.900000000000002,163,800,0,909,0.265,76.79,21.22,0.14,990,5.800000000000001,224,1.1 +2020,8,19,5,0,28.400000000000002,1.32,0.20170000000000002,0.62,167,814,968,1,24.1,167,814,0,968,0.265,77.45,10.26,0.14,989,5.800000000000001,231,1.4000000000000001 +2020,8,19,6,0,28.3,1.32,0.2253,0.62,176,796,948,3,24.200000000000003,478,278,0,747,0.265,78.62,14.16,0.14,989,5.800000000000001,233,1.5 +2020,8,19,7,0,28,1.33,0.23020000000000002,0.62,171,770,856,8,24.400000000000002,398,53,0,445,0.264,80.66,27.13,0.14,988,5.800000000000001,234,1.6 +2020,8,19,8,0,27.700000000000003,1.34,0.2142,0.62,152,731,701,7,24.5,341,79,0,401,0.264,82.84,41.36,0.14,988,5.800000000000001,235,1.6 +2020,8,19,9,0,27.200000000000003,1.34,0.23390000000000002,0.62,137,627,489,6,24.8,28,0,0,28,0.263,86.55,55.88,0.14,988,5.800000000000001,234,1.5 +2020,8,19,10,0,26.6,1.34,0.24650000000000002,0.62,103,447,253,6,24.700000000000003,89,0,0,89,0.263,89.56,70.48,0.14,988,5.800000000000001,230,1.1 +2020,8,19,11,0,25.8,1.34,0.2343,0.62,32,117,42,6,24.700000000000003,29,31,3,31,0.263,93.46000000000001,85.02,0.14,989,5.9,225,0.7000000000000001 +2020,8,19,12,0,25.6,1.34,0.2349,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.263,93,99.78,0.14,990,5.9,216,0.6000000000000001 +2020,8,19,13,0,25.6,1.34,0.2273,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.263,91.93,114.3,0.14,991,5.9,205,0.6000000000000001 +2020,8,19,14,0,25.5,1.34,0.2126,0.62,0,0,0,7,24,0,0,0,0,0.264,91.48,128.63,0.14,991,5.800000000000001,195,0.6000000000000001 +2020,8,19,15,0,25.5,1.34,0.20470000000000002,0.62,0,0,0,1,23.8,0,0,0,0,0.264,90.58,142.54,0.14,991,5.800000000000001,184,0.6000000000000001 +2020,8,19,16,0,25.400000000000002,1.35,0.195,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.265,90.47,155.26,0.14,991,5.800000000000001,178,0.5 +2020,8,19,17,0,25.3,1.35,0.18280000000000002,0.62,0,0,0,4,23.6,0,0,0,0,0.265,90.52,163.74,0.14,991,5.7,172,0.5 +2020,8,19,18,0,25.1,1.36,0.17800000000000002,0.62,0,0,0,8,23.5,0,0,0,0,0.266,90.96000000000001,160.99,0.14,990,5.6000000000000005,175,0.4 +2020,8,19,19,0,25,1.36,0.1752,0.62,0,0,0,8,23.400000000000002,0,0,0,0,0.265,90.66,149.96,0.14,989,5.5,224,0.30000000000000004 +2020,8,19,20,0,24.900000000000002,1.36,0.171,0.62,0,0,0,8,23.3,0,0,0,0,0.264,90.57000000000001,136.55,0.14,989,5.5,296,0.30000000000000004 +2020,8,19,21,0,24.8,1.36,0.1718,0.62,0,0,0,8,23.1,0,0,0,0,0.263,90.51,122.41,0.14,989,5.4,294,0.30000000000000004 +2020,8,19,22,0,24.700000000000003,1.36,0.1759,0.62,0,0,0,8,23.1,0,0,0,0,0.262,90.82000000000001,107.97,0.14,990,5.4,267,0.30000000000000004 +2020,8,19,23,0,24.700000000000003,1.36,0.17880000000000001,0.62,0,0,0,3,23.3,0,0,0,0,0.26,91.9,93.4,0.14,990,5.300000000000001,237,0.4 +2020,8,20,0,0,25.5,1.37,0.1826,0.62,63,341,130,8,24.200000000000003,40,0,3,40,0.259,92.37,78.69,0.14,991,5.300000000000001,202,0.7000000000000001 +2020,8,20,1,0,26.900000000000002,1.41,0.1686,0.62,102,607,367,8,24.5,104,0,0,104,0.259,86.64,64.08,0.14,991,5.300000000000001,190,1.1 +2020,8,20,2,0,27.900000000000002,1.44,0.1496,0.62,118,742,600,3,23.8,248,29,0,267,0.259,78.62,49.480000000000004,0.14,991,5.300000000000001,194,1.2000000000000002 +2020,8,20,3,0,28.700000000000003,1.5,0.18030000000000002,0.62,142,785,785,8,23.700000000000003,371,323,0,636,0.259,74.63,35.01,0.14,991,5.300000000000001,193,1.2000000000000002 +2020,8,20,4,0,29.400000000000002,1.5,0.1763,0.62,149,822,917,0,23.8,149,822,0,917,0.259,71.91,21.03,0.14,990,5.300000000000001,192,1.2000000000000002 +2020,8,20,5,0,29.700000000000003,1.49,0.1763,0.62,153,836,976,3,23.900000000000002,459,59,0,518,0.259,70.94,9.93,0.14,989,5.300000000000001,197,1.3 +2020,8,20,6,0,29.700000000000003,1.47,0.1883,0.62,159,824,958,0,23.900000000000002,159,824,0,958,0.26,71.19,13.99,0.14,989,5.300000000000001,200,1.5 +2020,8,20,7,0,29.6,1.46,0.19440000000000002,0.62,155,797,865,3,24,355,31,0,383,0.26,71.72,27.080000000000002,0.14,988,5.4,200,1.5 +2020,8,20,8,0,29.200000000000003,1.45,0.194,0.62,143,750,706,8,24.1,322,353,0,587,0.261,73.87,41.36,0.14,988,5.4,195,1.6 +2020,8,20,9,0,28.6,1.43,0.2086,0.62,129,651,494,3,24.6,241,230,0,370,0.262,79.01,55.910000000000004,0.14,988,5.4,189,1.4000000000000001 +2020,8,20,10,0,27.8,1.41,0.2152,0.62,97,477,256,1,24.8,97,477,0,256,0.262,83.55,70.54,0.14,988,5.4,180,1.3 +2020,8,20,11,0,26.6,1.3900000000000001,0.2122,0.62,31,131,42,0,25.200000000000003,31,131,0,42,0.262,91.86,85.09,0.14,989,5.300000000000001,172,1 +2020,8,20,12,0,26.1,1.37,0.2127,0.62,0,0,0,0,25,0,0,0,0,0.262,93.64,99.87,0.14,990,5.300000000000001,163,1 +2020,8,20,13,0,25.8,1.34,0.2079,0.62,0,0,0,0,24.8,0,0,0,0,0.263,94.42,114.41,0.14,990,5.2,153,1 +2020,8,20,14,0,25.5,1.3,0.20320000000000002,0.62,0,0,0,8,24.700000000000003,0,0,0,0,0.263,95.5,128.77,0.14,991,5.1000000000000005,142,1 +2020,8,20,15,0,25.3,1.25,0.2031,0.62,0,0,0,0,24.6,0,0,0,0,0.263,96.15,142.72,0.14,991,5.1000000000000005,130,1 +2020,8,20,16,0,25,1.2,0.2044,0.62,0,0,0,0,24.6,0,0,0,0,0.264,97.36,155.51,0.14,991,5.1000000000000005,122,1 +2020,8,20,17,0,24.8,1.17,0.2019,0.62,0,0,0,0,24.5,0,0,0,0,0.265,98.02,164.07,0.14,991,5.1000000000000005,121,1 +2020,8,20,18,0,24.700000000000003,1.1400000000000001,0.19920000000000002,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.266,98.04,161.23,0.14,990,5.1000000000000005,125,1 +2020,8,20,19,0,24.5,1.1300000000000001,0.1928,0.62,0,0,0,8,24.3,0,0,0,0,0.266,98.78,150.07,0.14,990,5.1000000000000005,127,1 +2020,8,20,20,0,24.400000000000002,1.12,0.1801,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.266,98.97,136.6,0.14,990,5.1000000000000005,129,1.1 +2020,8,20,21,0,24.3,1.1300000000000001,0.17950000000000002,0.62,0,0,0,3,24.1,0,0,0,0,0.266,99.10000000000001,122.42,0.14,990,5.1000000000000005,130,1.1 +2020,8,20,22,0,24.200000000000003,1.1400000000000001,0.1759,0.62,0,0,0,3,24.1,0,0,0,0,0.267,99.27,107.96000000000001,0.14,990,5.1000000000000005,134,1.1 +2020,8,20,23,0,24.5,1.1300000000000001,0.1668,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.267,98.4,93.36,0.14,991,5,138,1 +2020,8,21,0,0,25.6,1.1300000000000001,0.17070000000000002,0.62,63,345,131,1,24.700000000000003,63,345,0,131,0.267,94.98,78.63,0.14,992,5,137,1.6 +2020,8,21,1,0,26.5,1.1300000000000001,0.16670000000000001,0.62,104,604,369,1,24.900000000000002,104,604,0,369,0.267,90.78,64,0.14,992,5,139,2.1 +2020,8,21,2,0,27.400000000000002,1.1300000000000001,0.1612,0.62,125,730,600,0,24.900000000000002,125,730,0,600,0.266,86.41,49.38,0.14,993,5.1000000000000005,142,2.3000000000000003 +2020,8,21,3,0,28.3,1.17,0.1884,0.62,150,776,786,0,24.900000000000002,150,776,0,786,0.266,81.78,34.88,0.14,992,5.1000000000000005,149,2.3000000000000003 +2020,8,21,4,0,28.900000000000002,1.18,0.1796,0.62,155,818,919,0,24.900000000000002,155,818,0,919,0.266,78.85000000000001,20.84,0.14,992,5.1000000000000005,158,2.2 +2020,8,21,5,0,29.3,1.19,0.1748,0.62,156,834,979,3,24.8,489,93,0,581,0.265,76.77,9.61,0.14,991,5.2,167,2.1 +2020,8,21,6,0,29.400000000000002,1.21,0.18130000000000002,0.62,158,827,961,0,24.700000000000003,158,827,0,961,0.264,75.82000000000001,13.83,0.14,990,5.2,176,2 +2020,8,21,7,0,29.3,1.22,0.1894,0.62,155,798,866,8,24.6,340,531,0,813,0.263,75.97,27.04,0.14,990,5.300000000000001,184,1.9000000000000001 +2020,8,21,8,0,29.1,1.23,0.1903,0.62,144,749,706,3,24.700000000000003,336,69,0,387,0.263,77.31,41.37,0.14,990,5.300000000000001,186,1.7000000000000002 +2020,8,21,9,0,28.700000000000003,1.24,0.203,0.62,129,651,493,3,25.1,236,69,0,275,0.263,81.02,55.95,0.14,990,5.4,186,1.3 +2020,8,21,10,0,27.900000000000002,1.25,0.2127,0.62,97,473,254,1,25,97,473,0,254,0.264,84.29,70.59,0.14,990,5.4,181,1.1 +2020,8,21,11,0,27,1.27,0.2018,0.62,31,128,42,0,24.900000000000002,31,128,0,42,0.265,88.23,85.16,0.14,990,5.4,168,0.7000000000000001 +2020,8,21,12,0,26.8,1.31,0.1897,0.62,0,0,0,0,24.3,0,0,0,0,0.266,86.32000000000001,99.96000000000001,0.14,991,5.4,139,0.7000000000000001 +2020,8,21,13,0,26.400000000000002,1.34,0.1817,0.62,0,0,0,0,24.1,0,0,0,0,0.267,87.42,114.53,0.14,991,5.4,107,0.7000000000000001 +2020,8,21,14,0,26.1,1.35,0.1844,0.62,0,0,0,8,24,0,0,0,0,0.267,88.26,128.91,0.14,992,5.4,94,0.7000000000000001 +2020,8,21,15,0,26,1.34,0.2005,0.62,0,0,0,7,23.8,0,0,0,0,0.268,87.92,142.9,0.14,992,5.5,99,0.6000000000000001 +2020,8,21,16,0,25.8,1.31,0.2218,0.62,0,0,0,3,23.8,0,0,0,0,0.268,88.67,155.76,0.14,992,5.6000000000000005,126,0.6000000000000001 +2020,8,21,17,0,25.400000000000002,1.28,0.24200000000000002,0.62,0,0,0,6,23.8,0,0,0,0,0.268,91.10000000000001,164.41,0.14,992,5.7,153,0.6000000000000001 +2020,8,21,18,0,25.1,1.25,0.2621,0.62,0,0,0,6,23.8,0,0,0,0,0.268,92.74,161.46,0.14,991,5.7,160,0.6000000000000001 +2020,8,21,19,0,24.8,1.24,0.2685,0.62,0,0,0,6,23.8,0,0,0,0,0.268,94.45,150.18,0.14,991,5.7,163,0.7000000000000001 +2020,8,21,20,0,24.6,1.23,0.2647,0.62,0,0,0,6,23.8,0,0,0,0,0.268,95.18,136.64000000000001,0.14,990,5.6000000000000005,165,0.7000000000000001 +2020,8,21,21,0,24.5,1.22,0.26930000000000004,0.62,0,0,0,6,23.700000000000003,0,0,0,0,0.268,95.18,122.43,0.14,991,5.6000000000000005,165,0.7000000000000001 +2020,8,21,22,0,24.5,1.2,0.2721,0.62,0,0,0,7,23.6,0,0,0,0,0.268,94.46000000000001,107.94,0.14,991,5.7,163,0.6000000000000001 +2020,8,21,23,0,24.6,1.18,0.26890000000000003,0.62,0,0,0,7,23.8,0,0,0,0,0.267,95.16,93.33,0.14,992,5.7,174,0.5 +2020,8,22,0,0,25.5,1.17,0.2777,0.62,74,254,124,7,24.3,70,43,3,79,0.267,93.27,78.58,0.14,993,5.800000000000001,178,0.9 +2020,8,22,1,0,26.5,1.17,0.28140000000000004,0.62,133,505,355,7,24.5,175,58,0,200,0.267,88.98,63.93,0.14,994,5.800000000000001,167,1.2000000000000002 +2020,8,22,2,0,27.400000000000002,1.16,0.2756,0.62,165,641,583,7,24.200000000000003,297,124,0,378,0.267,82.8,49.29,0.14,994,5.800000000000001,169,1.3 +2020,8,22,3,0,28.200000000000003,1.17,0.2831,0.62,188,709,770,8,24,381,292,0,621,0.266,78.15,34.76,0.14,994,5.9,179,1.3 +2020,8,22,4,0,28.8,1.18,0.2737,0.62,195,755,902,8,23.900000000000002,467,117,0,577,0.265,74.83,20.650000000000002,0.14,993,5.9,192,1.3 +2020,8,22,5,0,28.900000000000002,1.19,0.2611,0.62,195,778,963,6,23.8,484,85,0,568,0.264,73.81,9.28,0.14,992,5.9,202,1.3 +2020,8,22,6,0,28.900000000000002,1.19,0.2642,0.62,194,772,945,8,23.700000000000003,479,91,0,567,0.264,73.56,13.68,0.14,991,5.9,209,1.4000000000000001 +2020,8,22,7,0,28.700000000000003,1.19,0.26280000000000003,0.62,186,747,852,8,23.700000000000003,305,19,0,322,0.264,74.55,27.01,0.14,991,5.9,212,1.5 +2020,8,22,8,0,28.3,1.19,0.24750000000000003,0.62,166,706,696,8,23.8,341,283,0,553,0.264,76.73,41.38,0.14,990,5.800000000000001,215,1.5 +2020,8,22,9,0,28,1.2,0.2406,0.62,141,618,487,7,24.1,236,70,0,275,0.264,79.61,55.99,0.14,990,5.800000000000001,216,1.3 +2020,8,22,10,0,27.200000000000003,1.2,0.23340000000000002,0.62,102,450,251,7,24.200000000000003,93,0,0,93,0.264,83.72,70.65,0.14,991,5.7,216,1.1 +2020,8,22,11,0,26,1.2,0.21430000000000002,0.62,31,113,40,8,24.5,21,0,3,21,0.265,91.22,85.23,0.14,991,5.7,221,0.8 +2020,8,22,12,0,25.6,1.19,0.2006,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.266,92.02,100.06,0.14,992,5.6000000000000005,227,0.8 +2020,8,22,13,0,25.3,1.18,0.19310000000000002,0.62,0,0,0,8,24.1,0,0,0,0,0.267,92.9,114.64,0.14,992,5.5,228,0.8 +2020,8,22,14,0,25.1,1.16,0.1895,0.62,0,0,0,0,24,0,0,0,0,0.267,93.41,129.05,0.14,993,5.4,227,0.8 +2020,8,22,15,0,24.900000000000002,1.1400000000000001,0.19,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.267,93.28,143.08,0.14,993,5.4,228,0.7000000000000001 +2020,8,22,16,0,24.8,1.1300000000000001,0.19240000000000002,0.62,0,0,0,4,23.5,0,0,0,0,0.266,92.68,156.02,0.14,993,5.4,230,0.7000000000000001 +2020,8,22,17,0,24.8,1.11,0.196,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.266,91.99,164.75,0.14,993,5.4,231,0.6000000000000001 +2020,8,22,18,0,24.700000000000003,1.11,0.2029,0.62,0,0,0,8,23.3,0,0,0,0,0.265,92.07000000000001,161.69,0.14,992,5.5,226,0.6000000000000001 +2020,8,22,19,0,24.6,1.11,0.2078,0.62,0,0,0,0,23.3,0,0,0,0,0.264,92.34,150.28,0.14,992,5.5,215,0.5 +2020,8,22,20,0,24.400000000000002,1.11,0.2089,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.263,93,136.69,0.14,991,5.5,208,0.5 +2020,8,22,21,0,24.3,1.12,0.2122,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.262,93.32000000000001,122.43,0.14,991,5.5,207,0.5 +2020,8,22,22,0,24.200000000000003,1.1400000000000001,0.21130000000000002,0.62,0,0,0,3,23.1,0,0,0,0,0.263,93.63,107.92,0.14,991,5.4,208,0.5 +2020,8,22,23,0,24.5,1.1500000000000001,0.20670000000000002,0.62,0,0,0,8,23.400000000000002,0,0,0,0,0.263,93.83,93.29,0.14,992,5.4,202,0.4 +2020,8,23,0,0,25.8,1.18,0.1981,0.62,66,322,130,3,24.200000000000003,70,167,3,103,0.263,91.14,78.52,0.14,992,5.300000000000001,171,0.9 +2020,8,23,1,0,27.1,1.19,0.194,0.62,111,581,367,3,24.3,166,305,0,301,0.264,84.75,63.86,0.14,993,5.300000000000001,160,1.4000000000000001 +2020,8,23,2,0,28,1.19,0.191,0.62,135,708,598,3,24.3,266,358,0,500,0.264,80.58,49.19,0.14,993,5.2,158,1.7000000000000002 +2020,8,23,3,0,28.700000000000003,1.17,0.404,0.62,231,644,761,7,24.5,355,377,0,665,0.264,77.98,34.63,0.14,993,5.2,155,1.9000000000000001 +2020,8,23,4,0,29.1,1.16,0.398,0.62,244,689,890,7,24.6,401,409,0,784,0.263,76.62,20.47,0.14,992,5.300000000000001,151,1.9000000000000001 +2020,8,23,5,0,29.400000000000002,1.1400000000000001,0.3961,0.62,250,707,949,8,24.6,435,408,0,838,0.263,75.23,8.950000000000001,0.14,991,5.300000000000001,151,2 +2020,8,23,6,0,29.3,1.1300000000000001,0.4012,0.62,251,698,930,8,24.400000000000002,473,303,0,768,0.262,75.04,13.530000000000001,0.14,991,5.4,150,2.2 +2020,8,23,7,0,28.8,1.12,0.3927,0.62,237,673,837,8,24.3,407,349,0,718,0.261,76.8,26.98,0.14,990,5.5,148,2.4000000000000004 +2020,8,23,8,0,28.200000000000003,1.1,0.3657,0.62,209,630,682,7,24.400000000000002,356,134,0,456,0.26,80.03,41.4,0.14,990,5.5,147,2.4000000000000004 +2020,8,23,9,0,27.5,1.12,0.3111,0.62,162,565,478,6,24.5,28,0,0,28,0.26,83.81,56.03,0.14,991,5.5,149,2.4000000000000004 +2020,8,23,10,0,26.6,1.1400000000000001,0.2446,0.62,104,439,249,6,24.700000000000003,93,0,0,93,0.26,89.19,70.71000000000001,0.14,991,5.4,153,2 +2020,8,23,11,0,25.5,1.1500000000000001,0.1948,0.62,30,120,40,7,24.6,23,0,3,23,0.261,95.02,85.31,0.14,992,5.2,160,1.4000000000000001 +2020,8,23,12,0,25.1,1.1300000000000001,0.1668,0.62,0,0,0,8,24.5,0,0,0,0,0.261,96.27,100.15,0.14,992,5,169,1.2000000000000002 +2020,8,23,13,0,24.8,1.1,0.1537,0.62,0,0,0,8,24.3,0,0,0,0,0.262,97.24000000000001,114.76,0.14,993,4.9,173,1.1 +2020,8,23,14,0,24.6,1.07,0.1441,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.263,97.69,129.2,0.14,993,4.9,175,1.1 +2020,8,23,15,0,24.5,1.08,0.14550000000000002,0.62,0,0,0,8,24.1,0,0,0,0,0.264,97.55,143.27,0.14,993,4.9,175,1 +2020,8,23,16,0,24.5,1.11,0.14200000000000002,0.62,0,0,0,4,23.900000000000002,0,0,0,0,0.264,96.51,156.27,0.14,993,4.9,168,0.9 +2020,8,23,17,0,24.3,1.1300000000000001,0.12840000000000001,0.62,0,0,0,4,23.700000000000003,0,0,0,0,0.264,96.53,165.1,0.14,992,4.800000000000001,152,0.8 +2020,8,23,18,0,24,1.17,0.1264,0.62,0,0,0,7,23.5,0,0,0,0,0.264,97.08,161.92000000000002,0.14,991,4.6000000000000005,139,0.9 +2020,8,23,19,0,23.700000000000003,1.19,0.1247,0.62,0,0,0,7,23.3,0,0,0,0,0.264,97.81,150.38,0.14,990,4.5,128,0.9 +2020,8,23,20,0,23.6,1.2,0.1148,0.62,0,0,0,7,23.3,0,0,0,0,0.264,98.08,136.72,0.14,990,4.5,115,1 +2020,8,23,21,0,23.5,1.22,0.11710000000000001,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.264,98.46000000000001,122.44,0.14,990,4.5,107,1.1 +2020,8,23,22,0,23.5,1.24,0.11420000000000001,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.263,98.10000000000001,107.9,0.14,991,4.5,100,1.1 +2020,8,23,23,0,23.900000000000002,1.24,0.1039,0.62,0,0,0,7,23.5,0,0,0,0,0.263,97.37,93.25,0.14,991,4.6000000000000005,92,1.1 +2020,8,24,0,0,25.1,1.26,0.1095,0.62,54,430,140,7,24.1,37,0,3,37,0.264,94.18,78.46000000000001,0.14,992,4.6000000000000005,93,1.7000000000000002 +2020,8,24,1,0,26.1,1.3,0.10690000000000001,0.62,85,674,383,7,24.200000000000003,183,113,0,233,0.264,89.07000000000001,63.78,0.14,993,4.7,102,1.8 +2020,8,24,2,0,27.200000000000003,1.35,0.09820000000000001,0.62,99,791,618,8,23.8,257,396,0,516,0.264,81.66,49.09,0.14,993,4.800000000000001,105,1.9000000000000001 +2020,8,24,3,0,28.3,1.45,0.0824,0.62,102,861,811,0,23.5,102,861,0,811,0.264,75.38,34.5,0.14,993,4.9,111,2 +2020,8,24,4,0,29,1.44,0.08510000000000001,0.62,110,887,942,0,23.5,110,887,0,942,0.264,72.23,20.28,0.14,992,5,117,1.9000000000000001 +2020,8,24,5,0,29.400000000000002,1.42,0.0884,0.62,114,895,999,0,23.5,114,895,0,999,0.264,70.66,8.61,0.14,991,5.1000000000000005,119,1.8 +2020,8,24,6,0,29.6,1.3900000000000001,0.09430000000000001,0.62,116,888,980,2,23.5,424,412,0,825,0.264,69.79,13.39,0.14,990,5.1000000000000005,118,1.7000000000000002 +2020,8,24,7,0,29.5,1.3800000000000001,0.098,0.62,114,865,884,3,23.5,375,38,0,409,0.264,70.02,26.95,0.14,990,5.2,115,1.6 +2020,8,24,8,0,29.3,1.37,0.10060000000000001,0.62,106,821,722,0,23.5,106,821,0,722,0.264,70.88,41.42,0.14,989,5.2,111,1.5 +2020,8,24,9,0,28.900000000000002,1.3900000000000001,0.1039,0.62,94,741,508,3,24,227,305,0,397,0.264,74.75,56.07,0.14,989,5.2,105,1.2000000000000002 +2020,8,24,10,0,28,1.4000000000000001,0.1062,0.62,72,585,265,0,24,72,585,0,265,0.264,78.86,70.78,0.14,990,5.2,99,1.2000000000000002 +2020,8,24,11,0,26.8,1.42,0.1034,0.62,27,211,44,0,24.5,27,211,1,44,0.264,87.41,85.39,0.14,990,5.2,92,0.8 +2020,8,24,12,0,26.400000000000002,1.43,0.10590000000000001,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.264,87.71000000000001,100.25,0.14,991,5.1000000000000005,88,0.8 +2020,8,24,13,0,26.1,1.43,0.1063,0.62,0,0,0,0,24,0,0,0,0,0.265,88.31,114.88,0.14,992,5.1000000000000005,89,0.8 +2020,8,24,14,0,25.700000000000003,1.42,0.1033,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.266,89.71000000000001,129.34,0.14,992,5.1000000000000005,92,0.9 +2020,8,24,15,0,25.5,1.42,0.10310000000000001,0.62,0,0,0,0,23.8,0,0,0,0,0.266,90.07000000000001,143.45000000000002,0.14,992,5.1000000000000005,96,0.9 +2020,8,24,16,0,25.200000000000003,1.41,0.1032,0.62,0,0,0,0,23.6,0,0,0,0,0.266,90.89,156.53,0.14,992,5,97,0.8 +2020,8,24,17,0,25,1.41,0.1018,0.62,0,0,0,0,23.5,0,0,0,0,0.266,91.17,165.45000000000002,0.14,992,5,92,0.8 +2020,8,24,18,0,24.700000000000003,1.41,0.1015,0.62,0,0,0,0,23.3,0,0,0,0,0.266,91.99,162.15,0.14,991,5,87,0.8 +2020,8,24,19,0,24.400000000000002,1.41,0.1008,0.62,0,0,0,0,23.1,0,0,0,0,0.266,92.7,150.48,0.14,991,5.1000000000000005,84,0.8 +2020,8,24,20,0,24.1,1.4000000000000001,0.10070000000000001,0.62,0,0,0,0,23,0,0,0,0,0.266,93.46000000000001,136.76,0.14,991,5.1000000000000005,82,0.8 +2020,8,24,21,0,23.900000000000002,1.3900000000000001,0.10060000000000001,0.62,0,0,0,0,22.8,0,0,0,0,0.266,93.82000000000001,122.44,0.14,991,5.1000000000000005,76,0.8 +2020,8,24,22,0,23.8,1.3900000000000001,0.1009,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.266,93.68,107.88,0.14,991,5.1000000000000005,73,0.8 +2020,8,24,23,0,24.1,1.3800000000000001,0.101,0.62,0,0,0,0,23.1,0,0,0,0,0.265,94.15,93.2,0.14,992,5.1000000000000005,75,0.8 +2020,8,25,0,0,25.400000000000002,1.3900000000000001,0.0998,0.62,52,445,142,0,23.6,52,445,0,142,0.265,89.62,78.4,0.14,992,5,89,1.2000000000000002 +2020,8,25,1,0,27.1,1.3900000000000001,0.09920000000000001,0.62,82,682,385,0,24.1,82,682,0,385,0.265,83.61,63.7,0.14,993,5,116,1.6 +2020,8,25,2,0,28.400000000000002,1.3800000000000001,0.1015,0.62,101,788,617,0,24.3,101,788,0,617,0.265,78.37,49,0.14,993,5,120,1.8 +2020,8,25,3,0,29.200000000000003,1.28,0.1217,0.62,121,829,806,0,24.200000000000003,121,829,0,806,0.265,74.36,34.38,0.14,992,5,123,1.9000000000000001 +2020,8,25,4,0,29.900000000000002,1.26,0.1301,0.62,132,855,935,3,24.1,470,117,0,579,0.265,71.03,20.1,0.14,992,5,125,1.9000000000000001 +2020,8,25,5,0,30.200000000000003,1.24,0.1395,0.62,140,861,992,3,24,444,382,0,822,0.264,69.37,8.27,0.14,991,5,126,1.9000000000000001 +2020,8,25,6,0,30.200000000000003,1.23,0.15,0.62,144,851,972,3,23.900000000000002,152,4,0,156,0.264,69.14,13.25,0.14,990,5,128,1.8 +2020,8,25,7,0,29.900000000000002,1.22,0.1555,0.62,141,825,876,0,24,141,825,0,876,0.263,70.54,26.94,0.14,989,5,130,1.7000000000000002 +2020,8,25,8,0,29.6,1.23,0.153,0.62,129,780,714,6,24.3,319,48,0,355,0.263,73.13,41.44,0.14,989,5.1000000000000005,133,1.4000000000000001 +2020,8,25,9,0,29,1.23,0.1695,0.62,118,680,497,7,24.3,220,338,0,409,0.263,75.67,56.120000000000005,0.14,989,5.1000000000000005,133,1.4000000000000001 +2020,8,25,10,0,27.900000000000002,1.23,0.1799,0.62,90,501,254,6,24.3,127,78,0,153,0.263,80.84,70.84,0.14,990,5.2,135,1.4000000000000001 +2020,8,25,11,0,26.5,1.23,0.1715,0.62,29,136,39,6,24.700000000000003,25,0,3,25,0.264,90.10000000000001,85.47,0.14,991,5.2,143,1.1 +2020,8,25,12,0,25.900000000000002,1.23,0.1598,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.265,91.58,100.35000000000001,0.14,991,5.2,152,1.2000000000000002 +2020,8,25,13,0,25.400000000000002,1.22,0.1489,0.62,0,0,0,7,24.200000000000003,0,0,0,0,0.267,93.18,114.99000000000001,0.14,992,5.2,162,1.2000000000000002 +2020,8,25,14,0,25.1,1.19,0.1443,0.62,0,0,0,3,24.1,0,0,0,0,0.267,94.13,129.49,0.14,992,5.1000000000000005,172,1.2000000000000002 +2020,8,25,15,0,24.8,1.1500000000000001,0.1442,0.62,0,0,0,3,24,0,0,0,0,0.268,95.36,143.64000000000001,0.14,993,5.1000000000000005,176,1.2000000000000002 +2020,8,25,16,0,24.5,1.1,0.14830000000000002,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.269,96.45,156.78,0.14,992,5.1000000000000005,177,1.2000000000000002 +2020,8,25,17,0,24.3,1.07,0.1487,0.62,0,0,0,0,23.8,0,0,0,0,0.27,97.13,165.8,0.14,992,5.1000000000000005,176,1.1 +2020,8,25,18,0,24.200000000000003,1.08,0.1479,0.62,0,0,0,1,23.700000000000003,0,0,0,0,0.271,97.10000000000001,162.38,0.14,991,5.1000000000000005,176,1.1 +2020,8,25,19,0,24.1,1.09,0.14170000000000002,0.62,0,0,0,3,23.6,0,0,0,0,0.271,96.9,150.58,0.14,991,5,174,1 +2020,8,25,20,0,24,1.09,0.1326,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.272,96.66,136.79,0.14,991,5,169,1 +2020,8,25,21,0,23.900000000000002,1.11,0.12990000000000002,0.62,0,0,0,0,23.3,0,0,0,0,0.272,96.41,122.43,0.14,991,5,160,1 +2020,8,25,22,0,23.8,1.1300000000000001,0.1262,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.272,96.23,107.85000000000001,0.14,991,4.9,150,1 +2020,8,25,23,0,24.1,1.1400000000000001,0.1199,0.62,0,0,0,1,23.5,0,0,0,0,0.271,96.47,93.16,0.14,992,4.9,138,1 +2020,8,26,0,0,25.5,1.16,0.112,0.62,55,424,141,0,24.200000000000003,55,424,0,141,0.271,92.58,78.34,0.14,992,4.9,143,1.6 +2020,8,26,1,0,26.700000000000003,1.2,0.1034,0.62,85,676,385,0,24.3,85,676,0,385,0.271,86.47,63.620000000000005,0.14,993,4.9,147,2 +2020,8,26,2,0,28.1,1.22,0.09920000000000001,0.62,100,790,620,3,23.900000000000002,293,87,0,351,0.271,77.97,48.9,0.14,992,4.9,151,2.1 +2020,8,26,3,0,29.200000000000003,1.2,0.10160000000000001,0.62,112,844,810,0,23.900000000000002,112,844,0,810,0.271,73.21000000000001,34.25,0.14,992,5,158,2.1 +2020,8,26,4,0,29.900000000000002,1.18,0.1058,0.62,121,871,940,3,24,477,184,0,649,0.271,70.63,19.92,0.14,991,5.1000000000000005,167,2 +2020,8,26,5,0,30.400000000000002,1.1500000000000001,0.11330000000000001,0.62,128,877,996,3,24,509,190,0,697,0.271,68.81,7.94,0.14,990,5.2,178,1.9000000000000001 +2020,8,26,6,0,30.5,1.11,0.12440000000000001,0.62,133,865,975,8,24,499,164,0,659,0.27,68.34,13.13,0.14,990,5.2,186,1.8 +2020,8,26,7,0,30.200000000000003,1.09,0.1351,0.62,133,835,877,7,23.900000000000002,436,104,0,529,0.269,69.09,26.92,0.14,989,5.300000000000001,189,1.8 +2020,8,26,8,0,29.900000000000002,1.06,0.1433,0.62,126,783,713,1,23.900000000000002,126,783,0,713,0.268,70.31,41.47,0.14,989,5.4,187,1.8 +2020,8,26,9,0,29.200000000000003,1.06,0.1638,0.62,117,679,495,8,24.200000000000003,153,571,0,471,0.267,74.60000000000001,56.17,0.14,989,5.4,184,1.7000000000000002 +2020,8,26,10,0,28.1,1.05,0.1736,0.62,90,499,253,3,24.400000000000002,94,445,0,240,0.267,80.44,70.91,0.14,989,5.4,182,1.6 +2020,8,26,11,0,26.700000000000003,1.04,0.1608,0.62,29,129,39,8,24.8,29,129,5,39,0.267,89.08,85.55,0.14,990,5.4,181,1.2000000000000002 +2020,8,26,12,0,26,1.02,0.1504,0.62,0,0,0,6,24.5,0,0,0,0,0.268,91.45,100.45,0.14,990,5.300000000000001,176,1.2000000000000002 +2020,8,26,13,0,25.5,1,0.14070000000000002,0.62,0,0,0,6,24.3,0,0,0,0,0.268,92.95,115.12,0.14,991,5.2,172,1.2000000000000002 +2020,8,26,14,0,25.1,0.98,0.1313,0.62,0,0,0,7,24.1,0,0,0,0,0.268,94.08,129.63,0.14,991,5.1000000000000005,169,1.3 +2020,8,26,15,0,24.700000000000003,0.9500000000000001,0.1233,0.62,0,0,0,7,24,0,0,0,0,0.268,95.65,143.82,0.14,992,5,168,1.2000000000000002 +2020,8,26,16,0,24.400000000000002,0.9400000000000001,0.11470000000000001,0.62,0,0,0,1,23.8,0,0,0,0,0.268,96.61,157.04,0.14,991,4.9,164,1.1 +2020,8,26,17,0,24.1,0.9400000000000001,0.10550000000000001,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.267,97.67,166.15,0.14,991,4.9,161,1.1 +2020,8,26,18,0,23.900000000000002,0.9400000000000001,0.1013,0.62,0,0,0,0,23.6,0,0,0,0,0.267,97.99000000000001,162.6,0.14,990,4.800000000000001,161,1 +2020,8,26,19,0,23.700000000000003,0.9400000000000001,0.0995,0.62,0,0,0,3,23.5,0,0,0,0,0.267,98.51,150.67000000000002,0.14,989,4.7,162,1 +2020,8,26,20,0,23.5,0.93,0.0966,0.62,0,0,0,8,23.400000000000002,0,0,0,0,0.267,99.18,136.82,0.14,989,4.6000000000000005,165,1 +2020,8,26,21,0,23.5,0.96,0.10070000000000001,0.62,0,0,0,3,23.3,0,0,0,0,0.266,98.69,122.43,0.14,989,4.6000000000000005,171,1 +2020,8,26,22,0,23.5,0.97,0.1004,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.266,98.19,107.82000000000001,0.14,990,4.6000000000000005,181,0.9 +2020,8,26,23,0,24,0.99,0.0935,0.62,0,0,0,0,23.5,0,0,0,0,0.266,96.86,93.11,0.14,990,4.6000000000000005,191,0.8 +2020,8,27,0,0,25.700000000000003,1.03,0.0876,0.62,52,459,145,0,24,52,459,0,145,0.266,90.38,78.28,0.14,991,4.6000000000000005,181,1.5 +2020,8,27,1,0,27.1,1.1,0.0777,0.62,77,708,392,0,24,77,708,0,392,0.265,83.07000000000001,63.54,0.14,992,4.6000000000000005,180,2.1 +2020,8,27,2,0,28.3,1.12,0.0736,0.62,90,816,628,0,23.900000000000002,90,816,0,628,0.264,76.93,48.800000000000004,0.14,992,4.6000000000000005,183,2.3000000000000003 +2020,8,27,3,0,29.3,1.01,0.0901,0.62,108,856,817,0,23.900000000000002,108,856,0,817,0.263,72.58,34.12,0.14,991,4.6000000000000005,189,2.4000000000000004 +2020,8,27,4,0,29.900000000000002,0.98,0.0954,0.62,117,881,947,3,23.900000000000002,474,219,0,680,0.263,70.22,19.740000000000002,0.14,991,4.7,195,2.4000000000000004 +2020,8,27,5,0,30.200000000000003,0.9400000000000001,0.10300000000000001,0.62,124,887,1004,3,23.8,496,269,0,763,0.262,68.74,7.59,0.14,990,4.7,200,2.4000000000000004 +2020,8,27,6,0,30.200000000000003,0.91,0.1136,0.62,129,875,981,3,23.700000000000003,496,221,0,711,0.262,68.23,13.01,0.14,989,4.800000000000001,204,2.3000000000000003 +2020,8,27,7,0,29.900000000000002,0.88,0.1246,0.62,130,844,882,8,23.6,366,436,0,756,0.262,69.08,26.91,0.14,988,4.9,206,2.2 +2020,8,27,8,0,29.6,0.86,0.1312,0.62,123,793,717,8,23.6,161,3,0,163,0.262,70.14,41.5,0.14,988,4.9,204,2 +2020,8,27,9,0,28.900000000000002,0.88,0.1426,0.62,111,698,499,4,23.900000000000002,210,28,0,225,0.263,74.39,56.230000000000004,0.14,988,4.9,199,1.6 +2020,8,27,10,0,28,0.89,0.1457,0.62,84,525,255,3,24.1,123,209,0,192,0.263,79.32000000000001,70.98,0.14,988,5,192,1.4000000000000001 +2020,8,27,11,0,26.6,0.89,0.1381,0.62,28,138,39,0,24.6,28,138,0,39,0.265,88.87,85.64,0.14,989,5,187,0.9 +2020,8,27,12,0,26.1,0.89,0.1325,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.266,90.29,100.56,0.14,990,5,182,0.9 +2020,8,27,13,0,25.700000000000003,0.88,0.12940000000000002,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.266,91.65,115.24000000000001,0.14,990,5,178,0.9 +2020,8,27,14,0,25.5,0.88,0.1296,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.266,92.4,129.78,0.14,990,5.1000000000000005,169,0.9 +2020,8,27,15,0,25.200000000000003,0.87,0.1361,0.62,0,0,0,3,24.1,0,0,0,0,0.266,93.75,144.01,0.14,991,5.1000000000000005,157,0.9 +2020,8,27,16,0,24.900000000000002,0.85,0.1479,0.62,0,0,0,3,24.1,0,0,0,0,0.266,95.22,157.3,0.14,990,5.2,147,0.9 +2020,8,27,17,0,24.6,0.84,0.1583,0.62,0,0,0,1,24.1,0,0,0,0,0.265,96.84,166.51,0.14,990,5.300000000000001,142,1 +2020,8,27,18,0,24.400000000000002,0.86,0.1705,0.62,0,0,0,1,24,0,0,0,0,0.265,97.69,162.81,0.14,989,5.300000000000001,140,1 +2020,8,27,19,0,24.3,0.88,0.17830000000000001,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.265,97.84,150.75,0.14,988,5.300000000000001,146,0.9 +2020,8,27,20,0,24.200000000000003,0.89,0.1792,0.62,0,0,0,1,23.900000000000002,0,0,0,0,0.266,98.01,136.85,0.14,988,5.300000000000001,167,0.9 +2020,8,27,21,0,24.1,0.91,0.1832,0.62,0,0,0,0,23.8,0,0,1,0,0.266,98.05,122.42,0.14,988,5.2,184,0.9 +2020,8,27,22,0,24,0.92,0.1826,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.266,98.22,107.79,0.14,988,5.1000000000000005,193,1 +2020,8,27,23,0,24.400000000000002,0.93,0.17370000000000002,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.267,97.02,93.06,0.14,989,5.1000000000000005,205,1 +2020,8,28,0,0,25.700000000000003,0.9500000000000001,0.16920000000000002,0.62,66,350,137,3,24.3,74,116,3,98,0.267,91.93,78.22,0.14,990,5,207,1.6 +2020,8,28,1,0,26.8,0.98,0.155,0.62,103,621,380,3,24.3,166,330,0,314,0.268,85.99,63.46,0.14,990,4.9,202,1.9000000000000001 +2020,8,28,2,0,27.8,1.02,0.14,0.62,119,753,616,3,24,268,368,0,511,0.268,80.04,48.7,0.14,991,4.9,204,1.8 +2020,8,28,3,0,28.700000000000003,0.96,0.1801,0.62,150,785,801,3,23.700000000000003,386,296,0,632,0.268,74.3,34,0.14,990,4.9,210,1.9000000000000001 +2020,8,28,4,0,29.400000000000002,0.9400000000000001,0.1841,0.62,161,816,930,8,23.5,400,441,0,816,0.268,70.48,19.56,0.14,990,5,216,2.1 +2020,8,28,5,0,29.8,0.93,0.1879,0.62,166,828,987,3,23.3,464,59,0,523,0.267,68.24,7.25,0.14,989,5,220,2.1 +2020,8,28,6,0,30,0.93,0.1897,0.62,166,822,967,8,23.200000000000003,439,377,0,807,0.266,66.83,12.9,0.14,988,5,224,2 +2020,8,28,7,0,30,0.93,0.19240000000000002,0.62,161,796,870,7,23,435,260,0,666,0.265,66.27,26.91,0.14,988,5,227,1.9000000000000001 +2020,8,28,8,0,29.700000000000003,0.93,0.1908,0.62,148,747,707,3,22.900000000000002,326,56,0,368,0.264,67.04,41.53,0.14,988,5,227,1.7000000000000002 +2020,8,28,9,0,29.200000000000003,0.96,0.19770000000000001,0.62,130,650,491,8,23.400000000000002,231,60,1,264,0.263,70.95,56.28,0.14,988,5,220,1.3 +2020,8,28,10,0,28.400000000000002,0.98,0.19140000000000001,0.62,94,478,249,8,23.3,90,0,0,90,0.263,74,71.06,0.14,988,5,212,1 +2020,8,28,11,0,27,1.01,0.1767,0.62,28,111,36,8,24,16,0,3,16,0.263,83.48,85.72,0.14,988,5,206,0.7000000000000001 +2020,8,28,12,0,26.5,1.03,0.1633,0.62,0,0,0,8,23.5,0,0,0,0,0.264,83.66,100.66,0.14,989,5.1000000000000005,203,0.7000000000000001 +2020,8,28,13,0,26.200000000000003,1.05,0.15480000000000002,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.266,83.67,115.36,0.14,989,5.1000000000000005,203,0.7000000000000001 +2020,8,28,14,0,25.900000000000002,1.05,0.1507,0.62,0,0,0,0,23,0,0,0,0,0.267,83.9,129.93,0.14,990,5.1000000000000005,204,0.8 +2020,8,28,15,0,25.700000000000003,1.05,0.1506,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.268,83.53,144.19,0.14,990,5.1000000000000005,213,0.7000000000000001 +2020,8,28,16,0,25.5,1.04,0.1547,0.62,0,0,0,0,22.5,0,0,0,0,0.269,83.48,157.56,0.14,990,5.1000000000000005,233,0.6000000000000001 +2020,8,28,17,0,25.3,1.03,0.16110000000000002,0.62,0,0,0,3,22.400000000000002,0,0,0,0,0.269,84.13,166.87,0.14,989,5.1000000000000005,254,0.5 +2020,8,28,18,0,25,1.02,0.16920000000000002,0.62,0,0,0,3,22.400000000000002,0,0,0,0,0.269,85.63,163.03,0.14,989,5.2,270,0.5 +2020,8,28,19,0,24.700000000000003,1.01,0.1787,0.62,0,0,0,3,22.5,0,0,0,0,0.269,87.5,150.83,0.14,988,5.2,282,0.4 +2020,8,28,20,0,24.5,1,0.1875,0.62,0,0,0,8,22.5,0,0,0,0,0.269,88.85000000000001,136.87,0.14,988,5.300000000000001,289,0.5 +2020,8,28,21,0,24.3,1,0.1937,0.62,0,0,0,7,22.6,0,0,0,0,0.269,90.03,122.41,0.14,988,5.300000000000001,294,0.5 +2020,8,28,22,0,24.200000000000003,1,0.1955,0.62,0,0,0,3,22.5,0,0,0,0,0.269,90.37,107.76,0.14,988,5.300000000000001,300,0.5 +2020,8,28,23,0,24.400000000000002,1.01,0.1971,0.62,0,0,0,3,22.900000000000002,0,0,0,0,0.269,91.31,93.01,0.14,989,5.300000000000001,315,0.5 +2020,8,29,0,0,26.1,1.01,0.19840000000000002,0.62,69,323,136,3,23.5,75,78,3,91,0.269,85.49,78.15,0.14,989,5.300000000000001,162,0.7000000000000001 +2020,8,29,1,0,27.6,1,0.2056,0.62,117,572,373,3,23.400000000000002,181,236,0,287,0.269,77.76,63.38,0.14,990,5.300000000000001,152,1.1 +2020,8,29,2,0,28.5,1,0.216,0.62,147,689,603,1,23.5,147,689,0,603,0.269,74.22,48.6,0.14,990,5.4,150,1.3 +2020,8,29,3,0,29.200000000000003,1.02,0.29460000000000003,0.62,196,707,783,3,23.6,217,10,0,225,0.268,71.89,33.88,0.14,990,5.4,159,1.3 +2020,8,29,4,0,29.700000000000003,1.04,0.29660000000000003,0.62,209,745,912,3,23.700000000000003,458,298,0,739,0.267,70.2,19.38,0.14,990,5.5,172,1.3 +2020,8,29,5,0,29.900000000000002,1.05,0.3,0.62,214,759,967,7,23.700000000000003,493,285,0,776,0.266,69.62,6.91,0.14,989,5.6000000000000005,182,1.4000000000000001 +2020,8,29,6,0,29.8,1.07,0.3141,0.62,218,745,945,8,23.8,493,241,0,728,0.265,70.3,12.81,0.14,988,5.7,187,1.5 +2020,8,29,7,0,29.6,1.08,0.32120000000000004,0.62,212,714,848,7,24,446,144,0,574,0.264,71.76,26.91,0.14,988,5.7,190,1.6 +2020,8,29,8,0,29,1.08,0.32220000000000004,0.62,195,656,685,8,24.3,353,217,0,515,0.263,75.65,41.57,0.14,987,5.800000000000001,190,1.6 +2020,8,29,9,0,28.400000000000002,1.09,0.3512,0.62,174,535,470,6,24.700000000000003,95,0,0,95,0.262,80.29,56.34,0.14,987,5.800000000000001,184,1.4000000000000001 +2020,8,29,10,0,27.400000000000002,1.09,0.36010000000000003,0.62,123,343,234,8,24.8,123,343,5,234,0.262,85.68,71.13,0.14,988,5.800000000000001,173,1.3 +2020,8,29,11,0,26.5,1.08,0.3351,0.62,26,47,30,1,25.1,26,47,0,30,0.262,91.94,85.81,0.14,988,5.800000000000001,166,1 +2020,8,29,12,0,26,1.07,0.3179,0.62,0,0,0,6,25,0,0,0,0,0.263,94.04,100.77,0.14,989,5.800000000000001,161,1 +2020,8,29,13,0,25.700000000000003,1.05,0.2983,0.62,0,0,0,6,24.900000000000002,0,0,0,0,0.263,95.09,115.49000000000001,0.14,989,5.7,154,1 +2020,8,29,14,0,25.400000000000002,1.04,0.2731,0.62,0,0,0,8,24.700000000000003,0,0,0,0,0.264,96.04,130.08,0.14,990,5.7,144,0.9 +2020,8,29,15,0,25.1,1.05,0.2548,0.62,0,0,0,0,24.6,0,0,0,0,0.264,96.91,144.38,0.14,990,5.6000000000000005,137,0.9 +2020,8,29,16,0,24.900000000000002,1.06,0.23770000000000002,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.264,96.92,157.81,0.14,989,5.5,136,0.9 +2020,8,29,17,0,24.700000000000003,1.07,0.2225,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.264,97.05,167.23,0.14,989,5.5,140,0.8 +2020,8,29,18,0,24.5,1.08,0.2167,0.62,0,0,0,0,24,0,0,0,0,0.265,97.15,163.24,0.14,988,5.4,148,0.8 +2020,8,29,19,0,24.400000000000002,1.08,0.2122,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.265,96.9,150.91,0.14,988,5.4,167,0.8 +2020,8,29,20,0,24.200000000000003,1.08,0.2043,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.265,97.22,136.89000000000001,0.14,988,5.4,187,0.8 +2020,8,29,21,0,24,1.09,0.19940000000000002,0.62,0,0,0,0,23.6,0,0,0,0,0.265,97.46000000000001,122.4,0.14,988,5.300000000000001,192,0.9 +2020,8,29,22,0,23.900000000000002,1.09,0.1907,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.264,97.27,107.72,0.14,988,5.300000000000001,188,0.9 +2020,8,29,23,0,24.3,1.1,0.1796,0.62,0,0,0,3,23.8,0,0,0,0,0.264,97,92.96000000000001,0.14,989,5.300000000000001,175,1 +2020,8,30,0,0,25.6,1.11,0.16970000000000002,0.62,65,359,139,3,24.400000000000002,75,99,3,96,0.264,93.18,78.08,0.14,990,5.300000000000001,166,1.8 +2020,8,30,1,0,26.8,1.1300000000000001,0.15410000000000001,0.62,101,625,382,0,24.5,101,625,0,382,0.265,87.24,63.300000000000004,0.14,990,5.300000000000001,160,2.2 +2020,8,30,2,0,28,1.1400000000000001,0.1421,0.62,119,753,617,1,24.3,119,753,0,617,0.266,80.59,48.5,0.14,990,5.300000000000001,158,2.4000000000000004 +2020,8,30,3,0,28.900000000000002,0.91,0.23320000000000002,0.62,173,745,793,0,24.3,173,745,0,793,0.266,76.38,33.75,0.14,990,5.4,161,2.5 +2020,8,30,4,0,29.5,0.89,0.22310000000000002,0.62,179,788,924,0,24.3,179,788,0,924,0.266,73.87,19.21,0.14,989,5.4,166,2.5 +2020,8,30,5,0,29.8,0.88,0.2147,0.62,180,808,982,3,24.3,493,290,0,781,0.266,72.56,6.5600000000000005,0.14,988,5.4,170,2.5 +2020,8,30,6,0,29.900000000000002,0.88,0.2091,0.62,176,806,962,8,24.3,481,289,0,763,0.266,72.03,12.72,0.14,988,5.5,172,2.4000000000000004 +2020,8,30,7,0,29.8,0.89,0.20570000000000002,0.62,167,783,865,7,24.200000000000003,413,338,0,714,0.265,72.15,26.92,0.14,987,5.5,173,2.3000000000000003 +2020,8,30,8,0,29.5,0.89,0.2028,0.62,153,734,701,6,24.200000000000003,243,14,0,253,0.265,73.22,41.62,0.14,987,5.5,171,2.1 +2020,8,30,9,0,28.900000000000002,0.93,0.2026,0.62,131,641,486,6,24.400000000000002,27,0,0,27,0.265,76.91,56.410000000000004,0.14,987,5.5,167,1.8 +2020,8,30,10,0,28,0.97,0.1975,0.62,95,467,245,8,24.6,102,385,0,226,0.265,81.81,71.21000000000001,0.14,987,5.5,163,1.5 +2020,8,30,11,0,26.6,1,0.1817,0.62,27,100,34,7,24.900000000000002,27,100,5,34,0.266,90.5,85.9,0.14,988,5.5,163,1 +2020,8,30,12,0,26.1,1.02,0.16820000000000002,0.62,0,0,0,6,24.6,0,0,0,0,0.266,91.48,100.87,0.14,988,5.4,163,1 +2020,8,30,13,0,25.700000000000003,1.04,0.1583,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.266,92.64,115.61,0.14,989,5.4,161,1.1 +2020,8,30,14,0,25.400000000000002,1.05,0.1515,0.62,0,0,0,7,24.3,0,0,0,0,0.267,93.54,130.23,0.14,990,5.4,160,1.1 +2020,8,30,15,0,25.1,1.06,0.14500000000000002,0.62,0,0,0,4,24.200000000000003,0,0,0,0,0.267,94.54,144.57,0.14,990,5.4,157,1.1 +2020,8,30,16,0,24.8,1.07,0.1376,0.62,0,0,0,3,24.1,0,0,0,0,0.267,95.61,158.07,0.14,990,5.300000000000001,156,1.1 +2020,8,30,17,0,24.400000000000002,1.08,0.1293,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.267,97.28,167.6,0.14,989,5.300000000000001,158,1.2000000000000002 +2020,8,30,18,0,24.1,1.07,0.12440000000000001,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.267,98.54,163.44,0.14,988,5.2,160,1.2000000000000002 +2020,8,30,19,0,24,1.05,0.1232,0.62,0,0,0,3,23.8,0,0,0,0,0.267,98.64,150.98,0.14,988,5.2,165,1 +2020,8,30,20,0,24.1,1.04,0.12040000000000001,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.267,97.57000000000001,136.9,0.14,988,5.2,175,0.9 +2020,8,30,21,0,24.1,1.05,0.126,0.62,0,0,0,0,23.6,0,0,0,0,0.266,97.16,122.38,0.14,988,5.300000000000001,187,0.9 +2020,8,30,22,0,24.1,1.06,0.1264,0.62,0,0,0,3,23.6,0,0,0,0,0.266,97.03,107.69,0.14,989,5.4,188,0.9 +2020,8,30,23,0,24.400000000000002,1.06,0.11960000000000001,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.265,97.3,92.91,0.14,989,5.4,180,0.9 +2020,8,31,0,0,25.900000000000002,1.07,0.12240000000000001,0.62,58,414,144,3,24.700000000000003,74,37,3,82,0.265,93.15,78.02,0.14,990,5.5,175,1.6 +2020,8,31,1,0,26.900000000000002,1.09,0.1194,0.62,91,659,388,0,24.8,91,659,0,388,0.265,88.35000000000001,63.22,0.14,991,5.6000000000000005,170,2.1 +2020,8,31,2,0,27.700000000000003,1.09,0.11510000000000001,0.62,108,774,622,0,24.6,108,774,0,622,0.266,83.41,48.410000000000004,0.14,991,5.7,166,2.2 +2020,8,31,3,0,28.400000000000002,1.04,0.1226,0.62,123,826,811,3,24.5,397,93,0,474,0.265,79.27,33.63,0.14,990,5.7,167,2.2 +2020,8,31,4,0,28.900000000000002,1.02,0.12860000000000002,0.62,134,852,939,8,24.400000000000002,403,465,0,842,0.265,76.77,19.04,0.14,990,5.800000000000001,171,2.2 +2020,8,31,5,0,29.3,0.99,0.1327,0.62,139,862,995,0,24.400000000000002,139,862,0,995,0.264,74.81,6.22,0.14,989,5.800000000000001,176,2.2 +2020,8,31,6,0,29.3,0.97,0.1401,0.62,142,852,973,3,24.3,500,145,0,642,0.263,74.54,12.64,0.14,989,5.800000000000001,178,2.2 +2020,8,31,7,0,29.200000000000003,0.98,0.1365,0.62,134,832,876,8,24.3,394,49,0,437,0.262,74.77,26.94,0.14,988,5.800000000000001,177,2.1 +2020,8,31,8,0,28.8,0.99,0.1255,0.62,119,795,713,8,24.400000000000002,282,455,0,621,0.261,77.18,41.660000000000004,0.14,987,5.800000000000001,176,2 +2020,8,31,9,0,28.200000000000003,1.01,0.1245,0.62,103,713,497,8,24.700000000000003,223,317,0,398,0.261,81.37,56.47,0.14,987,5.7,170,1.8 +2020,8,31,10,0,27.5,1.02,0.1223,0.62,77,549,253,7,25,122,198,0,186,0.261,86.27,71.29,0.14,988,5.6000000000000005,161,1.5 +2020,8,31,11,0,26.3,1.02,0.1169,0.62,25,151,36,8,25.1,23,10,3,24,0.261,93.18,85.99,0.14,988,5.5,152,1.1 +2020,8,31,12,0,25.900000000000002,1.01,0.1135,0.62,0,0,0,8,24.900000000000002,0,0,0,0,0.262,94.22,100.98,0.14,989,5.4,143,1.1 +2020,8,31,13,0,25.6,0.99,0.11220000000000001,0.62,0,0,0,8,24.700000000000003,0,0,0,0,0.263,94.85000000000001,115.74000000000001,0.14,989,5.300000000000001,131,1.1 +2020,8,31,14,0,25.400000000000002,0.97,0.11560000000000001,0.62,0,0,0,8,24.6,0,0,0,0,0.263,95.29,130.38,0.14,990,5.2,122,1.1 +2020,8,31,15,0,25.1,0.9400000000000001,0.1255,0.62,0,0,0,8,24.5,0,0,0,0,0.263,96.42,144.75,0.14,990,5.2,118,1.1 +2020,8,31,16,0,24.700000000000003,0.91,0.1383,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.263,98.03,158.33,0.14,990,5.1000000000000005,120,1 +2020,8,31,17,0,24.5,0.89,0.1463,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.263,98.36,167.97,0.14,990,5.1000000000000005,128,1 +2020,8,31,18,0,24.200000000000003,0.89,0.1474,0.62,0,0,0,8,24,0,0,0,0,0.262,98.97,163.64000000000001,0.14,989,5,138,1 +2020,8,31,19,0,24,0.89,0.1422,0.62,0,0,0,7,23.8,0,0,0,0,0.262,99.06,151.05,0.14,989,4.9,147,1 +2020,8,31,20,0,23.8,0.89,0.1322,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.261,99.17,136.91,0.14,989,4.800000000000001,150,1 +2020,8,31,21,0,23.6,0.9,0.12350000000000001,0.62,0,0,0,3,23.5,0,0,0,0,0.261,99.38,122.36,0.14,989,4.800000000000001,151,1.1 +2020,8,31,22,0,23.400000000000002,0.92,0.1144,0.62,0,0,0,8,23.400000000000002,0,0,0,0,0.261,99.8,107.65,0.14,989,4.7,147,1.1 +2020,8,31,23,0,23.900000000000002,0.93,0.1047,0.62,0,0,0,3,23.6,0,0,0,0,0.261,98.24000000000001,92.85000000000001,0.14,989,4.7,141,1.1 +2020,9,1,0,0,25.700000000000003,0.96,0.0976,0.6,55,450,149,3,24.200000000000003,74,178,3,111,0.262,91.67,77.95,0.14,990,4.7,140,1.8 +2020,9,1,1,0,27.3,1.04,0.0867,0.6,81,702,398,3,24.200000000000003,183,239,0,291,0.263,83.22,63.14,0.14,990,4.7,145,2.1 +2020,9,1,2,0,28.6,1.09,0.0838,0.6,96,809,634,0,23.8,96,809,0,634,0.263,75.33,48.31,0.14,990,4.800000000000001,150,2.3000000000000003 +2020,9,1,3,0,29.700000000000003,0.8,0.1579,0.6,143,802,812,0,23.700000000000003,143,802,0,812,0.264,70.06,33.51,0.14,990,4.800000000000001,156,2.5 +2020,9,1,4,0,30.400000000000002,0.8200000000000001,0.17170000000000002,0.6,157,826,939,1,23.700000000000003,157,826,0,939,0.264,67.64,18.88,0.14,990,4.9,162,2.6 +2020,9,1,5,0,30.8,0.8,0.1894,0.6,170,827,993,1,23.900000000000002,170,827,0,993,0.263,66.66,5.88,0.14,989,4.9,168,2.6 +2020,9,1,6,0,30.8,0.78,0.2016,0.6,174,813,968,0,24,174,813,0,968,0.264,67.08,12.57,0.14,988,5,172,2.6 +2020,9,1,7,0,30.5,0.76,0.2117,0.6,172,780,868,8,24,443,124,0,554,0.264,68.49,26.96,0.14,988,5,172,2.6 +2020,9,1,8,0,30.1,0.76,0.2137,0.6,160,726,701,7,24.1,317,371,0,594,0.264,70.35000000000001,41.71,0.14,987,5,172,2.4000000000000004 +2020,9,1,9,0,29.3,0.78,0.20450000000000002,0.6,134,636,485,3,24.400000000000002,232,268,0,379,0.263,75.17,56.54,0.14,987,5.1000000000000005,169,2.1 +2020,9,1,10,0,28.1,0.79,0.19770000000000001,0.6,97,458,243,7,24.700000000000003,113,16,0,118,0.264,82.02,71.37,0.14,988,5.1000000000000005,164,1.8 +2020,9,1,11,0,26.6,0.81,0.18810000000000002,0.6,26,79,32,1,25.1,26,79,0,32,0.266,91.48,86.09,0.14,988,5.2,159,1.2000000000000002 +2020,9,1,12,0,26.1,0.8300000000000001,0.1779,0.6,0,0,0,8,25,0,0,0,0,0.267,93.53,101.09,0.14,989,5.2,153,1.2000000000000002 +2020,9,1,13,0,25.8,0.85,0.1696,0.6,0,0,0,7,24.900000000000002,0,0,0,0,0.269,94.68,115.86,0.14,990,5.300000000000001,145,1.2000000000000002 +2020,9,1,14,0,25.6,0.88,0.1656,0.6,0,0,0,8,24.8,0,0,0,0,0.27,95.29,130.53,0.14,991,5.300000000000001,136,1.2000000000000002 +2020,9,1,15,0,25.3,0.89,0.1668,0.6,0,0,0,4,24.700000000000003,0,0,0,0,0.269,96.4,144.94,0.14,991,5.4,131,1.2000000000000002 +2020,9,1,16,0,25.1,0.89,0.1716,0.6,0,0,0,3,24.6,0,0,0,0,0.269,96.94,158.58,0.14,991,5.5,130,1.1 +2020,9,1,17,0,24.900000000000002,0.9,0.1759,0.6,0,0,0,4,24.5,0,0,0,0,0.268,97.54,168.34,0.14,990,5.5,134,1.1 +2020,9,1,18,0,24.8,0.92,0.1776,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.268,97.60000000000001,163.84,0.14,989,5.6000000000000005,136,1.2000000000000002 +2020,9,1,19,0,24.6,0.96,0.1752,0.6,0,0,0,3,24.3,0,0,0,0,0.267,98.36,151.11,0.14,989,5.6000000000000005,137,1.2000000000000002 +2020,9,1,20,0,24.5,0.99,0.169,0.6,0,0,0,3,24.3,0,0,0,0,0.267,98.51,136.92000000000002,0.14,989,5.5,136,1.2000000000000002 +2020,9,1,21,0,24.400000000000002,1.02,0.1685,0.6,0,0,0,1,24.200000000000003,0,0,0,0,0.267,98.67,122.34,0.14,989,5.5,133,1.2000000000000002 +2020,9,1,22,0,24.3,1.04,0.1648,0.6,0,0,0,8,24.1,0,0,0,0,0.267,98.65,107.61,0.14,989,5.5,130,1.1 +2020,9,1,23,0,24.6,1.04,0.154,0.6,0,0,0,3,24.3,0,0,0,0,0.267,97.96000000000001,92.8,0.14,990,5.5,129,1.1 +2020,9,2,0,0,25.6,1.07,0.1479,0.6,63,386,144,8,24.700000000000003,61,365,3,138,0.267,94.92,77.88,0.14,990,5.5,138,1.8 +2020,9,2,1,0,26.400000000000002,1.12,0.134,0.6,96,647,389,7,24.8,174,304,0,312,0.267,90.89,63.06,0.14,991,5.5,146,2.2 +2020,9,2,2,0,27.400000000000002,1.1500000000000001,0.1221,0.6,111,771,625,7,24.5,263,403,0,531,0.267,84.44,48.21,0.14,991,5.5,150,2.1 +2020,9,2,3,0,28.5,1.1,0.1267,0.6,125,826,815,7,24.3,342,419,0,693,0.267,78.05,33.39,0.14,991,5.5,158,2.1 +2020,9,2,4,0,29.3,1.1,0.1263,0.6,132,858,945,8,24.200000000000003,400,486,0,861,0.267,74.18,18.71,0.14,991,5.5,171,1.9000000000000001 +2020,9,2,5,0,29.8,1.08,0.12840000000000001,0.6,136,868,1001,8,24.200000000000003,446,431,0,874,0.267,71.85000000000001,5.53,0.14,990,5.5,182,1.9000000000000001 +2020,9,2,6,0,29.900000000000002,1.06,0.13240000000000002,0.6,137,860,977,8,24.1,431,402,0,823,0.267,71.17,12.51,0.14,989,5.6000000000000005,192,1.8 +2020,9,2,7,0,29.8,1.05,0.13570000000000002,0.6,134,835,878,7,24.1,433,270,0,674,0.267,71.32000000000001,26.98,0.14,988,5.6000000000000005,197,1.7000000000000002 +2020,9,2,8,0,29.5,1.05,0.1364,0.6,124,788,712,8,24.1,356,155,0,472,0.267,72.73,41.77,0.14,988,5.6000000000000005,197,1.7000000000000002 +2020,9,2,9,0,28.900000000000002,1.06,0.1442,0.6,110,695,492,8,24.5,231,268,0,379,0.267,77.12,56.61,0.14,988,5.6000000000000005,186,1.5 +2020,9,2,10,0,27.900000000000002,1.07,0.1492,0.6,83,517,247,6,24.6,41,0,0,41,0.268,82.12,71.46000000000001,0.14,989,5.6000000000000005,171,1.4000000000000001 +2020,9,2,11,0,26.6,1.08,0.1501,0.6,25,116,32,6,25,15,0,3,15,0.268,90.85000000000001,86.18,0.14,989,5.7,165,1.1 +2020,9,2,12,0,26.1,1.09,0.154,0.6,0,0,0,6,24.8,0,0,0,0,0.269,92.44,101.2,0.14,990,5.7,164,1.1 +2020,9,2,13,0,25.8,1.09,0.1592,0.6,0,0,0,6,24.700000000000003,0,0,0,0,0.27,93.52,115.99000000000001,0.14,991,5.7,159,1.1 +2020,9,2,14,0,25.6,1.09,0.1661,0.6,0,0,0,6,24.6,0,0,0,0,0.27,94.24,130.68,0.14,992,5.800000000000001,152,1 +2020,9,2,15,0,25.400000000000002,1.08,0.1779,0.6,0,0,0,6,24.5,0,0,0,0,0.27,94.82000000000001,145.12,0.14,992,5.800000000000001,146,1 +2020,9,2,16,0,25.200000000000003,1.08,0.19190000000000002,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.27,95.46000000000001,158.84,0.14,992,5.9,145,0.9 +2020,9,2,17,0,25,1.07,0.2019,0.6,0,0,0,6,24.3,0,0,0,0,0.27,95.93,168.71,0.14,991,5.9,145,0.8 +2020,9,2,18,0,24.900000000000002,1.08,0.2107,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.269,95.67,164.03,0.14,990,5.9,144,0.8 +2020,9,2,19,0,24.8,1.1,0.2139,0.6,0,0,0,3,24,0,0,0,0,0.268,95.57000000000001,151.17000000000002,0.14,990,5.9,150,0.8 +2020,9,2,20,0,24.700000000000003,1.12,0.21230000000000002,0.6,0,0,0,3,23.900000000000002,0,0,0,0,0.267,95.56,136.93,0.14,989,5.9,159,0.8 +2020,9,2,21,0,24.5,1.1400000000000001,0.21200000000000002,0.6,0,0,0,3,23.900000000000002,0,0,0,0,0.266,96.28,122.32000000000001,0.14,989,5.9,167,0.8 +2020,9,2,22,0,24.3,1.16,0.20570000000000002,0.6,0,0,0,0,23.8,0,0,0,0,0.266,97.16,107.56,0.14,990,5.800000000000001,164,1 +2020,9,2,23,0,24.5,1.16,0.1947,0.6,0,0,0,0,24.1,0,0,0,0,0.265,97.4,92.74,0.14,990,5.800000000000001,164,1.1 +2020,9,3,0,0,25.5,1.18,0.1942,0.6,69,344,142,0,24.6,69,344,0,142,0.265,95.06,77.81,0.14,991,5.7,166,1.9000000000000001 +2020,9,3,1,0,26.400000000000002,1.21,0.1749,0.6,108,610,385,0,24.900000000000002,108,610,0,385,0.265,91.56,62.980000000000004,0.14,991,5.7,163,2 +2020,9,3,2,0,27.400000000000002,1.23,0.1487,0.6,121,749,622,0,24.8,121,749,0,622,0.265,85.89,48.11,0.14,992,5.800000000000001,161,1.8 +2020,9,3,3,0,28.3,1.06,0.1912,0.6,154,778,805,0,24.700000000000003,154,778,0,805,0.265,80.74,33.28,0.14,992,5.800000000000001,163,1.5 +2020,9,3,4,0,28.900000000000002,1.07,0.1955,0.6,165,809,932,0,24.6,165,809,0,932,0.264,77.47,18.56,0.14,991,5.9,164,1.4000000000000001 +2020,9,3,5,0,29.3,1.07,0.19840000000000002,0.6,170,820,987,3,24.5,392,27,0,419,0.262,75.29,5.19,0.14,991,6,165,1.3 +2020,9,3,6,0,29.3,1.07,0.21860000000000002,0.6,178,802,961,3,24.400000000000002,436,389,0,816,0.261,75.18,12.47,0.14,990,6.1000000000000005,166,1.3 +2020,9,3,7,0,28.900000000000002,1.07,0.24450000000000002,0.6,182,760,858,3,24.5,417,69,0,478,0.26,77.26,27.02,0.14,989,6.1000000000000005,167,1.5 +2020,9,3,8,0,28.200000000000003,1.05,0.257,0.6,172,697,691,7,24.900000000000002,356,150,0,468,0.258,82.08,41.83,0.14,989,6.1000000000000005,176,1.4000000000000001 +2020,9,3,9,0,27.6,1.08,0.3286,0.6,167,546,467,6,25,203,24,0,216,0.258,85.65,56.69,0.14,989,6.2,178,1.2000000000000002 +2020,9,3,10,0,27,1.09,0.37410000000000004,0.6,123,327,227,6,25,118,39,0,130,0.258,88.88,71.55,0.14,989,6.2,175,1 +2020,9,3,11,0,26.3,1.1,0.3778,0.6,22,31,24,6,25.3,18,0,3,18,0.26,94.01,86.28,0.14,990,6.300000000000001,177,0.7000000000000001 +2020,9,3,12,0,26,1.1,0.3985,0.6,0,0,0,7,25.1,0,0,0,0,0.262,95.05,101.32000000000001,0.14,991,6.300000000000001,178,0.7000000000000001 +2020,9,3,13,0,25.900000000000002,1.11,0.4062,0.6,0,0,0,0,25.1,0,0,0,0,0.263,95.12,116.12,0.14,991,6.300000000000001,173,0.7000000000000001 +2020,9,3,14,0,25.700000000000003,1.1,0.4027,0.6,0,0,0,8,25,0,0,0,0,0.264,95.88,130.82,0.14,992,6.300000000000001,169,0.7000000000000001 +2020,9,3,15,0,25.5,1.1,0.4011,0.6,0,0,0,8,24.900000000000002,0,0,0,0,0.265,96.56,145.31,0.14,992,6.4,156,0.7000000000000001 +2020,9,3,16,0,25.3,1.08,0.3975,0.6,0,0,0,7,24.8,0,0,0,0,0.265,97.23,159.09,0.14,992,6.300000000000001,142,0.8 +2020,9,3,17,0,25.1,1.07,0.3816,0.6,0,0,0,4,24.700000000000003,0,0,0,0,0.266,97.74000000000001,169.09,0.14,991,6.300000000000001,132,0.8 +2020,9,3,18,0,24.8,1.08,0.3607,0.6,0,0,0,3,24.6,0,0,0,0,0.266,98.64,164.21,0.14,991,6.2,125,0.9 +2020,9,3,19,0,24.700000000000003,1.09,0.3357,0.6,0,0,0,0,24.400000000000002,0,0,0,0,0.267,98.29,151.22,0.14,990,6.2,123,0.9 +2020,9,3,20,0,24.5,1.11,0.2894,0.6,0,0,0,0,24.3,0,0,0,0,0.267,98.67,136.93,0.14,990,6.1000000000000005,129,0.8 +2020,9,3,21,0,24.5,1.1400000000000001,0.2748,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.267,97.95,122.29,0.14,990,6,147,0.8 +2020,9,3,22,0,24.400000000000002,1.16,0.2577,0.6,0,0,0,0,24,0,0,0,0,0.268,97.88,107.52,0.14,990,6,164,0.9 +2020,9,3,23,0,24.6,1.17,0.23040000000000002,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.268,97.88,92.68,0.14,991,6,168,1 +2020,9,4,0,0,25.400000000000002,1.2,0.223,0.6,73,319,141,0,24.700000000000003,73,319,0,141,0.269,96.2,77.74,0.14,992,6,166,1.6 +2020,9,4,1,0,26.1,1.24,0.2006,0.6,115,587,383,0,25,115,587,0,383,0.27,93.69,62.89,0.14,992,6,156,2 +2020,9,4,2,0,26.700000000000003,1.26,0.17700000000000002,0.6,132,727,618,0,25,132,727,0,618,0.27,90.18,48.02,0.14,992,6,150,2.2 +2020,9,4,3,0,27.200000000000003,1.27,0.2268,0.6,167,757,801,0,24.8,167,757,0,801,0.27,86.93,33.160000000000004,0.14,992,6,149,2.3000000000000003 +2020,9,4,4,0,27.8,1.28,0.2023,0.6,166,808,933,0,24.700000000000003,166,808,0,933,0.27,83.48,18.400000000000002,0.14,991,6,149,2.4000000000000004 +2020,9,4,5,0,28.1,1.27,0.1829,0.6,161,833,991,8,24.700000000000003,454,50,0,503,0.269,81.64,4.8500000000000005,0.14,990,6,152,2.4000000000000004 +2020,9,4,6,0,28.1,1.27,0.1724,0.6,155,835,970,8,24.6,356,22,0,378,0.268,81.17,12.43,0.14,989,6,153,2.4000000000000004 +2020,9,4,7,0,27.900000000000002,1.26,0.16340000000000002,0.6,144,817,872,7,24.5,251,13,0,262,0.267,81.87,27.05,0.14,989,6,154,2.3000000000000003 +2020,9,4,8,0,27.5,1.26,0.15180000000000002,0.6,128,778,708,7,24.5,297,33,0,322,0.266,83.91,41.89,0.14,988,5.9,154,2.2 +2020,9,4,9,0,27,1.26,0.1464,0.6,109,695,490,6,24.700000000000003,233,77,0,275,0.266,87.37,56.77,0.14,988,5.9,155,1.9000000000000001 +2020,9,4,10,0,26.3,1.27,0.13920000000000002,0.6,79,530,246,9,24.8,12,0,0,12,0.266,91.61,71.64,0.14,989,5.9,155,1.4000000000000001 +2020,9,4,11,0,25.400000000000002,1.28,0.12890000000000001,0.6,23,137,32,6,24.6,4,0,3,4,0.266,95.52,86.37,0.14,989,5.800000000000001,161,0.9 +2020,9,4,12,0,25,1.28,0.1228,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.267,96.28,101.43,0.14,990,5.800000000000001,173,0.8 +2020,9,4,13,0,24.8,1.28,0.1187,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.267,96.39,116.25,0.14,991,5.800000000000001,184,0.8 +2020,9,4,14,0,24.700000000000003,1.3,0.1131,0.6,0,0,0,7,24,0,0,0,0,0.268,95.93,130.97,0.14,991,5.800000000000001,194,0.7000000000000001 +2020,9,4,15,0,24.6,1.31,0.1097,0.6,0,0,0,8,23.8,0,0,0,0,0.268,95.41,145.49,0.14,991,5.7,204,0.7000000000000001 +2020,9,4,16,0,24.5,1.32,0.1077,0.6,0,0,0,8,23.6,0,0,0,0,0.268,95.02,159.34,0.14,991,5.7,211,0.7000000000000001 +2020,9,4,17,0,24.400000000000002,1.32,0.1051,0.6,0,0,0,3,23.5,0,0,0,0,0.268,94.56,169.46,0.14,990,5.7,219,0.6000000000000001 +2020,9,4,18,0,24.400000000000002,1.32,0.10350000000000001,0.6,0,0,0,1,23.3,0,0,0,0,0.267,93.60000000000001,164.38,0.14,989,5.6000000000000005,231,0.5 +2020,9,4,19,0,24.3,1.33,0.09820000000000001,0.6,0,0,0,4,23.200000000000003,0,0,0,0,0.267,93.34,151.27,0.14,989,5.6000000000000005,243,0.4 +2020,9,4,20,0,24.200000000000003,1.34,0.0903,0.6,0,0,0,4,23,0,0,0,0,0.266,93.02,136.93,0.14,989,5.6000000000000005,251,0.4 +2020,9,4,21,0,24.1,1.35,0.0891,0.6,0,0,0,4,22.900000000000002,0,0,0,0,0.266,92.86,122.26,0.14,989,5.6000000000000005,262,0.5 +2020,9,4,22,0,24,1.35,0.0903,0.6,0,0,0,4,22.8,0,0,0,0,0.265,92.75,107.47,0.14,989,5.6000000000000005,266,0.5 +2020,9,4,23,0,24.3,1.36,0.09090000000000001,0.6,0,0,0,4,23,0,0,0,0,0.264,92.73,92.62,0.14,990,5.6000000000000005,259,0.5 +2020,9,5,0,0,25.5,1.3800000000000001,0.09140000000000001,0.6,53,473,154,8,23.8,73,11,3,76,0.265,90.36,77.67,0.14,991,5.6000000000000005,232,0.8 +2020,9,5,1,0,26.700000000000003,1.4000000000000001,0.0916,0.6,82,699,401,4,23.6,160,14,0,166,0.265,83.37,62.81,0.14,991,5.6000000000000005,197,1.2000000000000002 +2020,9,5,2,0,27.700000000000003,1.4000000000000001,0.0947,0.6,99,800,635,8,23.400000000000002,287,57,0,325,0.266,77.53,47.92,0.14,991,5.6000000000000005,182,1.4000000000000001 +2020,9,5,3,0,28.5,1.3900000000000001,0.0983,0.6,111,852,825,7,23.5,411,212,0,588,0.265,74.3,33.05,0.14,991,5.6000000000000005,177,1.6 +2020,9,5,4,0,29.1,1.3800000000000001,0.1023,0.6,120,878,954,8,23.6,486,178,0,654,0.264,72.46000000000001,18.25,0.14,991,5.6000000000000005,179,1.8 +2020,9,5,5,0,29.5,1.36,0.1066,0.6,124,886,1008,7,23.8,512,225,0,736,0.263,71.38,4.5200000000000005,0.14,990,5.6000000000000005,183,2 +2020,9,5,6,0,29.6,1.33,0.11040000000000001,0.6,125,879,984,3,23.900000000000002,499,129,0,625,0.261,71.37,12.41,0.14,989,5.6000000000000005,186,2.2 +2020,9,5,7,0,29.400000000000002,1.31,0.10930000000000001,0.6,120,858,884,8,23.900000000000002,438,250,0,660,0.26,72.37,27.1,0.14,988,5.6000000000000005,186,2.3000000000000003 +2020,9,5,8,0,29,1.3,0.1037,0.6,108,818,717,6,24.1,313,45,0,346,0.259,74.69,41.96,0.14,988,5.6000000000000005,184,2.3000000000000003 +2020,9,5,9,0,28.200000000000003,1.28,0.1032,0.6,94,737,497,6,24.400000000000002,154,0,0,154,0.259,80.11,56.85,0.14,988,5.6000000000000005,181,2.2 +2020,9,5,10,0,27.1,1.25,0.1003,0.6,70,576,250,7,24.6,107,7,0,109,0.259,86.19,71.73,0.14,988,5.6000000000000005,176,1.9000000000000001 +2020,9,5,11,0,25.900000000000002,1.22,0.09770000000000001,0.6,22,162,32,7,24.700000000000003,15,0,3,15,0.26,93.09,86.47,0.14,989,5.5,169,1.4000000000000001 +2020,9,5,12,0,25.400000000000002,1.2,0.095,0.6,0,0,0,8,24.6,0,0,0,0,0.261,95.28,101.54,0.14,990,5.5,159,1.5 +2020,9,5,13,0,25.1,1.21,0.0889,0.6,0,0,0,4,24.5,0,0,0,0,0.262,96.60000000000001,116.38,0.14,991,5.5,150,1.6 +2020,9,5,14,0,24.900000000000002,1.23,0.07930000000000001,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.262,96.92,131.12,0.14,991,5.4,149,1.7000000000000002 +2020,9,5,15,0,24.6,1.26,0.07640000000000001,0.6,0,0,0,4,24.200000000000003,0,0,0,0,0.263,97.65,145.67000000000002,0.14,991,5.4,153,1.5 +2020,9,5,16,0,24.400000000000002,1.27,0.0748,0.6,0,0,0,4,24,0,0,0,0,0.263,97.62,159.59,0.14,991,5.4,162,1.3 +2020,9,5,17,0,24.1,1.27,0.0733,0.6,0,0,0,8,23.8,0,0,0,0,0.262,98,169.84,0.14,990,5.4,172,1.2000000000000002 +2020,9,5,18,0,23.900000000000002,1.26,0.0794,0.6,0,0,0,7,23.6,0,0,0,0,0.262,97.94,164.55,0.14,989,5.4,184,1 +2020,9,5,19,0,23.700000000000003,1.25,0.0845,0.6,0,0,0,8,23.400000000000002,0,0,0,0,0.262,98.05,151.32,0.14,989,5.4,199,0.9 +2020,9,5,20,0,23.6,1.23,0.08510000000000001,0.6,0,0,0,4,23.200000000000003,0,0,0,0,0.262,97.73,136.92000000000002,0.14,989,5.4,211,0.9 +2020,9,5,21,0,23.5,1.24,0.0945,0.6,0,0,0,8,23.1,0,0,0,0,0.262,97.73,122.23,0.14,989,5.4,219,0.9 +2020,9,5,22,0,23.400000000000002,1.26,0.09570000000000001,0.6,0,0,0,8,23,0,0,0,0,0.262,97.77,107.42,0.14,990,5.4,224,0.9 +2020,9,5,23,0,23.900000000000002,1.27,0.08800000000000001,0.6,0,0,0,4,23.400000000000002,0,0,0,0,0.263,96.87,92.56,0.14,990,5.4,224,1 +2020,9,6,0,0,25.200000000000003,1.29,0.0874,0.6,53,479,156,4,24,58,0,3,58,0.263,92.91,77.60000000000001,0.14,991,5.4,214,1.7000000000000002 +2020,9,6,1,0,26.3,1.32,0.0834,0.6,79,709,404,4,24,149,4,0,150,0.264,87.45,62.730000000000004,0.14,991,5.4,205,2.2 +2020,9,6,2,0,27.5,1.33,0.0787,0.6,93,815,640,4,24,191,6,0,195,0.264,81.26,47.83,0.14,992,5.5,200,2.4000000000000004 +2020,9,6,3,0,28.3,1.05,0.1383,0.6,132,820,820,8,24,414,148,0,538,0.265,77.35000000000001,32.94,0.14,991,5.5,199,2.5 +2020,9,6,4,0,28.8,1.07,0.1335,0.6,137,854,949,8,24,408,445,0,831,0.265,75.16,18.11,0.14,991,5.6000000000000005,199,2.6 +2020,9,6,5,0,29.1,1.08,0.1303,0.6,138,868,1003,3,23.900000000000002,502,274,0,775,0.265,73.61,4.19,0.14,990,5.7,200,2.6 +2020,9,6,6,0,29.200000000000003,1.03,0.16820000000000002,0.6,155,837,973,3,23.900000000000002,504,182,0,681,0.265,72.97,12.4,0.14,989,5.7,200,2.5 +2020,9,6,7,0,29.200000000000003,1.03,0.1663,0.6,148,813,872,0,23.8,148,813,0,872,0.265,72.58,27.14,0.14,989,5.800000000000001,201,2.3000000000000003 +2020,9,6,8,0,28.900000000000002,1.03,0.165,0.6,136,765,704,8,23.700000000000003,259,514,0,640,0.265,73.41,42.03,0.14,988,5.800000000000001,202,2.1 +2020,9,6,9,0,28.400000000000002,1.05,0.1673,0.6,118,671,484,3,23.900000000000002,190,447,0,434,0.265,76.47,56.93,0.14,988,5.800000000000001,198,1.7000000000000002 +2020,9,6,10,0,27.5,1.06,0.1671,0.6,86,491,239,0,24.1,86,491,0,239,0.266,81.64,71.82000000000001,0.14,989,5.800000000000001,193,1.4000000000000001 +2020,9,6,11,0,26.3,1.07,0.1613,0.6,23,94,28,8,24.5,23,94,5,28,0.266,89.8,86.57000000000001,0.14,990,5.800000000000001,190,0.8 +2020,9,6,12,0,25.8,1.08,0.1555,0.6,0,0,0,8,24.3,0,0,0,0,0.267,91.34,101.66,0.14,991,5.7,186,0.8 +2020,9,6,13,0,25.5,1.1,0.1496,0.6,0,0,0,0,24.1,0,0,0,0,0.267,92,116.5,0.14,991,5.7,178,0.8 +2020,9,6,14,0,25.3,1.11,0.14300000000000002,0.6,0,0,0,0,24,0,0,0,0,0.268,92.25,131.27,0.14,992,5.6000000000000005,167,0.9 +2020,9,6,15,0,24.900000000000002,1.12,0.13620000000000002,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.268,93.3,145.85,0.14,992,5.5,158,1 +2020,9,6,16,0,24.6,1.12,0.1311,0.6,0,0,0,7,23.5,0,0,0,0,0.267,93.8,159.84,0.14,991,5.4,154,1 +2020,9,6,17,0,24.400000000000002,1.1300000000000001,0.1295,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.267,93.92,170.23,0.14,990,5.4,156,1 +2020,9,6,18,0,24.200000000000003,1.1300000000000001,0.1328,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.267,94.08,164.72,0.14,990,5.300000000000001,155,0.9 +2020,9,6,19,0,24.1,1.1300000000000001,0.1396,0.6,0,0,0,7,23.1,0,0,0,0,0.265,93.87,151.36,0.14,989,5.4,135,0.7000000000000001 +2020,9,6,20,0,24,1.1300000000000001,0.1474,0.6,0,0,0,7,22.900000000000002,0,0,0,0,0.265,93.77,136.91,0.14,989,5.4,64,0.7000000000000001 +2020,9,6,21,0,23.900000000000002,1.1400000000000001,0.1549,0.6,0,0,0,8,22.8,0,0,0,0,0.264,93.83,122.2,0.14,990,5.4,40,0.7000000000000001 +2020,9,6,22,0,23.8,1.1400000000000001,0.16240000000000002,0.6,0,0,0,0,22.8,0,0,0,0,0.264,93.96000000000001,107.37,0.14,990,5.4,46,0.7000000000000001 +2020,9,6,23,0,24,1.1400000000000001,0.1683,0.6,0,0,0,3,23.1,0,0,0,0,0.264,94.7,92.5,0.14,991,5.5,68,0.8 +2020,9,7,0,0,25.5,1.16,0.168,0.6,67,378,148,8,23.6,79,59,3,91,0.265,89.48,77.53,0.14,991,5.5,123,1.3 +2020,9,7,1,0,26.900000000000002,1.18,0.1632,0.6,106,626,393,4,23.8,194,138,0,258,0.265,83.4,62.65,0.14,992,5.5,140,1.8 +2020,9,7,2,0,28,1.2,0.15610000000000002,0.6,125,747,628,3,23.900000000000002,299,276,0,485,0.266,78.22,47.74,0.14,992,5.6000000000000005,142,2 +2020,9,7,3,0,28.900000000000002,1.23,0.1463,0.6,134,816,820,8,23.8,323,486,0,731,0.266,73.85000000000001,32.83,0.14,992,5.6000000000000005,145,2.1 +2020,9,7,4,0,29.6,1.22,0.1467,0.6,142,848,948,7,23.700000000000003,466,293,0,745,0.265,70.63,17.97,0.14,991,5.6000000000000005,149,2.1 +2020,9,7,5,0,30,1.19,0.1496,0.6,146,857,1002,8,23.700000000000003,449,435,0,884,0.264,68.95,3.86,0.14,991,5.6000000000000005,152,2.1 +2020,9,7,6,0,30,1.17,0.158,0.6,149,846,975,8,23.6,491,262,0,748,0.264,68.77,12.4,0.14,990,5.7,155,2 +2020,9,7,7,0,29.900000000000002,1.1400000000000001,0.16140000000000002,0.6,145,819,873,6,23.6,273,15,0,286,0.264,68.97,27.2,0.14,989,5.7,155,1.9000000000000001 +2020,9,7,8,0,29.6,1.12,0.163,0.6,134,768,704,6,23.6,285,27,0,305,0.264,70.39,42.1,0.14,989,5.7,153,1.8 +2020,9,7,9,0,28.900000000000002,1.1300000000000001,0.1791,0.6,121,663,482,7,24.1,240,154,0,324,0.263,75.18,57.01,0.14,989,5.7,151,1.6 +2020,9,7,10,0,27.900000000000002,1.1300000000000001,0.19140000000000001,0.6,91,468,236,8,24.200000000000003,89,443,1,227,0.263,80.44,71.91,0.14,989,5.800000000000001,150,1.5 +2020,9,7,11,0,26.5,1.12,0.19190000000000002,0.6,22,76,26,8,24.700000000000003,22,76,5,26,0.264,89.65,86.67,0.14,990,5.800000000000001,147,1.1 +2020,9,7,12,0,26,1.12,0.2069,0.6,0,0,0,0,24.5,0,0,0,0,0.265,91.69,101.77,0.14,991,5.800000000000001,144,1.1 +2020,9,7,13,0,25.700000000000003,1.12,0.21930000000000002,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.266,92.77,116.63,0.14,991,5.9,141,1.1 +2020,9,7,14,0,25.400000000000002,1.12,0.2247,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.266,94.06,131.42000000000002,0.14,992,5.9,139,1.1 +2020,9,7,15,0,25.200000000000003,1.12,0.2341,0.6,0,0,0,0,24.3,0,0,0,0,0.267,94.77,146.03,0.14,992,5.9,136,1.1 +2020,9,7,16,0,25,1.11,0.2434,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.268,95.38,160.09,0.14,992,5.9,135,1 +2020,9,7,17,0,24.8,1.11,0.2501,0.6,0,0,0,8,24.1,0,0,0,0,0.268,95.83,170.61,0.14,991,5.9,137,0.9 +2020,9,7,18,0,24.5,1.1,0.25630000000000003,0.6,0,0,0,3,24,0,0,0,0,0.268,96.84,164.87,0.14,991,5.9,140,0.9 +2020,9,7,19,0,24.3,1.1,0.2541,0.6,0,0,0,0,23.8,0,0,0,0,0.267,97.25,151.39000000000001,0.14,990,5.800000000000001,144,0.9 +2020,9,7,20,0,24.200000000000003,1.1,0.2442,0.6,0,0,0,1,23.700000000000003,0,0,0,0,0.267,97.24000000000001,136.9,0.14,990,5.800000000000001,145,1 +2020,9,7,21,0,24.1,1.12,0.23420000000000002,0.6,0,0,0,3,23.6,0,0,0,0,0.266,97.21000000000001,122.16,0.14,990,5.800000000000001,143,1 +2020,9,7,22,0,24,1.1300000000000001,0.221,0.6,0,0,0,0,23.6,0,0,0,0,0.266,97.34,107.32000000000001,0.14,991,5.7,138,1 +2020,9,7,23,0,24.3,1.1400000000000001,0.20450000000000002,0.6,0,0,0,3,23.8,0,0,0,0,0.266,97.28,92.44,0.14,991,5.6000000000000005,135,1.2000000000000002 +2020,9,8,0,0,25.5,1.17,0.18780000000000002,0.6,70,359,148,0,24.5,70,359,0,148,0.267,94.13,77.46000000000001,0.14,992,5.5,140,1.9000000000000001 +2020,9,8,1,0,26.700000000000003,1.21,0.1671,0.6,107,624,394,0,24.6,107,624,0,394,0.268,88.06,62.57,0.14,992,5.5,142,2.2 +2020,9,8,2,0,28,1.25,0.1535,0.6,124,752,631,0,24.200000000000003,124,752,0,631,0.268,79.81,47.65,0.14,993,5.4,143,2.3000000000000003 +2020,9,8,3,0,29.1,1.11,0.1991,0.6,158,779,813,0,24,158,779,0,813,0.268,74.08,32.730000000000004,0.14,992,5.4,146,2.4000000000000004 +2020,9,8,4,0,29.8,1.09,0.1995,0.6,167,813,941,8,24.1,409,466,0,853,0.268,71.43,17.84,0.14,992,5.4,153,2.3000000000000003 +2020,9,8,5,0,30.200000000000003,1.08,0.2028,0.6,173,823,994,3,24.1,446,408,0,853,0.268,70.02,3.5500000000000003,0.14,991,5.5,161,2.3000000000000003 +2020,9,8,6,0,30.3,1.05,0.2291,0.6,183,800,965,8,24.200000000000003,465,340,0,797,0.267,69.75,12.42,0.14,990,5.5,167,2.2 +2020,9,8,7,0,30,1.03,0.2451,0.6,183,762,860,3,24.1,374,37,0,407,0.267,70.81,27.26,0.14,989,5.6000000000000005,170,2.2 +2020,9,8,8,0,29.5,1.02,0.2581,0.6,173,697,689,3,24.200000000000003,324,342,0,577,0.267,73.33,42.18,0.14,989,5.6000000000000005,167,2.1 +2020,9,8,9,0,28.8,1.04,0.2947,0.6,158,567,466,3,24.700000000000003,171,6,0,174,0.266,78.39,57.1,0.14,989,5.7,160,1.8 +2020,9,8,10,0,27.8,1.06,0.3104,0.6,112,362,224,4,24.8,34,0,0,34,0.266,83.91,72.01,0.14,990,5.800000000000001,151,1.6 +2020,9,8,11,0,26.6,1.06,0.3079,0.6,20,33,21,3,25.1,4,0,3,4,0.266,91.60000000000001,86.77,0.14,990,5.800000000000001,144,1.2000000000000002 +2020,9,8,12,0,26.200000000000003,1.08,0.3069,0.6,0,0,0,8,25,0,0,0,0,0.265,93.16,101.89,0.14,991,5.800000000000001,139,1.3 +2020,9,8,13,0,25.900000000000002,1.1,0.29560000000000003,0.6,0,0,0,6,24.900000000000002,0,0,0,0,0.265,94.43,116.76,0.14,992,5.800000000000001,136,1.4000000000000001 +2020,9,8,14,0,25.6,1.1,0.2843,0.6,0,0,0,6,24.900000000000002,0,0,0,0,0.266,95.81,131.56,0.14,992,5.800000000000001,132,1.4000000000000001 +2020,9,8,15,0,25.400000000000002,1.09,0.28340000000000004,0.6,0,0,0,7,24.8,0,0,0,0,0.266,96.61,146.21,0.14,992,5.7,130,1.4000000000000001 +2020,9,8,16,0,25.200000000000003,1.08,0.2686,0.6,0,0,0,3,24.8,0,0,0,0,0.266,97.39,160.33,0.14,992,5.6000000000000005,133,1.4000000000000001 +2020,9,8,17,0,25,1.06,0.23140000000000002,0.6,0,0,0,4,24.6,0,0,0,0,0.267,97.8,170.99,0.14,991,5.6000000000000005,139,1.4000000000000001 +2020,9,8,18,0,24.8,1.05,0.2091,0.6,0,0,0,8,24.5,0,0,0,0,0.267,98.05,165.02,0.14,990,5.5,145,1.4000000000000001 +2020,9,8,19,0,24.5,1.04,0.18960000000000002,0.6,0,0,0,8,24.3,0,0,0,0,0.267,98.78,151.42000000000002,0.14,990,5.5,150,1.3 +2020,9,8,20,0,24.400000000000002,1.02,0.1758,0.6,0,0,0,3,24.1,0,0,0,0,0.267,98.2,136.89000000000001,0.14,990,5.5,156,1.1 +2020,9,8,21,0,24.3,1.02,0.1764,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.266,97.64,122.13,0.14,990,5.5,163,1.1 +2020,9,8,22,0,24.200000000000003,1.03,0.17120000000000002,0.6,0,0,0,0,23.8,0,0,0,0,0.266,97.42,107.27,0.14,991,5.5,169,1.1 +2020,9,8,23,0,24.6,1.03,0.16090000000000002,0.6,0,0,0,3,24,0,0,0,0,0.266,96.7,92.37,0.14,991,5.5,170,1.1 +2020,9,9,0,0,25.900000000000002,1.04,0.157,0.6,67,389,152,0,24.6,67,389,0,152,0.266,92.36,77.38,0.14,991,5.4,170,1.9000000000000001 +2020,9,9,1,0,27.1,1.05,0.1504,0.6,103,638,398,0,24.6,103,638,0,398,0.267,86.2,62.49,0.14,992,5.4,168,2 +2020,9,9,2,0,28.3,1.07,0.1466,0.6,123,755,632,3,24.5,282,47,3,313,0.267,79.71000000000001,47.56,0.14,992,5.5,168,2.1 +2020,9,9,3,0,29.200000000000003,1.06,0.1474,0.6,136,815,823,0,24.400000000000002,136,815,0,823,0.267,75.48,32.63,0.14,992,5.5,176,2.1 +2020,9,9,4,0,29.700000000000003,1.06,0.1509,0.6,145,845,950,0,24.400000000000002,145,845,0,950,0.266,73.18,17.72,0.14,991,5.5,185,1.9000000000000001 +2020,9,9,5,0,30,1.06,0.15230000000000002,0.6,149,856,1003,3,24.3,452,441,0,893,0.265,71.78,3.25,0.14,990,5.5,192,1.8 +2020,9,9,6,0,30.1,1.05,0.22410000000000002,0.6,181,803,965,4,24.200000000000003,343,20,0,363,0.264,70.87,12.44,0.14,989,5.6000000000000005,199,1.6 +2020,9,9,7,0,30,1.05,0.2335,0.6,178,770,862,8,24.1,447,183,0,610,0.263,70.82000000000001,27.32,0.14,988,5.6000000000000005,200,1.5 +2020,9,9,8,0,29.6,1.06,0.2257,0.6,160,721,693,8,24.1,42,0,0,42,0.262,72.39,42.26,0.14,988,5.6000000000000005,196,1.4000000000000001 +2020,9,9,9,0,29,1.08,0.2437,0.6,142,608,472,8,24.400000000000002,188,14,0,196,0.262,76.45,57.19,0.14,987,5.6000000000000005,197,1.4000000000000001 +2020,9,9,10,0,28.200000000000003,1.11,0.2509,0.6,102,410,228,6,24.6,12,0,0,12,0.263,81.08,72.11,0.14,988,5.6000000000000005,196,1.2000000000000002 +2020,9,9,11,0,26.900000000000002,1.11,0.2485,0.6,20,48,23,7,25,4,0,3,4,0.264,89.54,86.87,0.14,988,5.7,206,0.8 +2020,9,9,12,0,26.400000000000002,1.12,0.2656,0.6,0,0,0,7,24.900000000000002,0,0,0,0,0.265,91.47,102,0.14,989,5.7,217,0.7000000000000001 +2020,9,9,13,0,26.200000000000003,1.12,0.27390000000000003,0.6,0,0,0,6,24.700000000000003,0,0,0,0,0.267,91.5,116.89,0.14,990,5.7,219,0.7000000000000001 +2020,9,9,14,0,26,1.12,0.2723,0.6,0,0,0,6,24.5,0,0,0,0,0.268,91.57000000000001,131.71,0.14,991,5.800000000000001,214,0.7000000000000001 +2020,9,9,15,0,25.900000000000002,1.11,0.2811,0.6,0,0,0,7,24.3,0,0,0,0,0.269,90.89,146.38,0.14,991,5.800000000000001,202,0.7000000000000001 +2020,9,9,16,0,25.8,1.1,0.2922,0.6,0,0,0,3,24.1,0,0,0,0,0.27,90.41,160.57,0.14,990,5.800000000000001,180,0.6000000000000001 +2020,9,9,17,0,25.6,1.09,0.2987,0.6,0,0,0,3,24,0,0,0,0,0.27,90.98,171.38,0.14,990,5.800000000000001,152,0.5 +2020,9,9,18,0,25.400000000000002,1.08,0.32070000000000004,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.27,91.35000000000001,165.16,0.14,989,5.9,131,0.5 +2020,9,9,19,0,25.200000000000003,1.07,0.33740000000000003,0.6,0,0,0,7,23.8,0,0,0,0,0.269,91.89,151.44,0.14,988,5.9,118,0.4 +2020,9,9,20,0,25.1,1.06,0.3426,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.268,92.09,136.87,0.14,988,5.9,111,0.4 +2020,9,9,21,0,25,1.06,0.3593,0.6,0,0,0,3,23.700000000000003,0,0,0,0,0.268,92.32000000000001,122.09,0.14,988,5.9,123,0.4 +2020,9,9,22,0,24.900000000000002,1.06,0.3607,0.6,0,0,0,3,23.6,0,0,0,0,0.267,92.75,107.22,0.14,988,6,164,0.5 +2020,9,9,23,0,24.900000000000002,1.06,0.33990000000000004,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.266,94.46000000000001,92.31,0.14,989,6,193,0.6000000000000001 +2020,9,10,0,0,25.700000000000003,1.07,0.3642,0.6,90,223,139,8,24.6,80,51,3,91,0.266,93.51,77.31,0.14,989,6.1000000000000005,198,1.1 +2020,9,10,1,0,26.400000000000002,1.09,0.376,0.6,162,456,374,3,24.900000000000002,187,57,0,213,0.266,91.23,62.410000000000004,0.14,990,6.2,201,1.6 +2020,9,10,2,0,26.8,1.11,0.337,0.6,190,615,606,3,24.8,282,46,0,313,0.266,88.66,47.47,0.14,990,6.2,208,2 +2020,9,10,3,0,27.3,1.12,0.24300000000000002,0.6,176,747,806,3,24.8,408,255,0,623,0.265,86.37,32.53,0.14,990,6.300000000000001,210,2.4000000000000004 +2020,9,10,4,0,27.400000000000002,1.1400000000000001,0.2328,0.6,182,790,934,3,24.8,110,0,0,110,0.263,85.64,17.6,0.14,989,6.300000000000001,207,2.6 +2020,9,10,5,0,27.3,1.12,0.2008,0.6,171,822,992,8,24.700000000000003,519,151,0,670,0.262,85.96000000000001,2.98,0.14,989,6.300000000000001,203,2.8000000000000003 +2020,9,10,6,0,27.200000000000003,1.1300000000000001,0.22540000000000002,0.6,181,801,962,7,24.700000000000003,171,7,0,178,0.26,85.99,12.48,0.14,988,6.300000000000001,200,2.9000000000000004 +2020,9,10,7,0,26.900000000000002,1.12,0.2223,0.6,172,776,861,7,24.5,228,11,0,238,0.26,86.81,27.400000000000002,0.14,987,6.300000000000001,199,2.9000000000000004 +2020,9,10,8,0,26.5,1.1,0.1835,0.6,143,750,697,9,24.400000000000002,85,0,0,85,0.26,88.28,42.34,0.14,987,6.2,200,2.7 +2020,9,10,9,0,26,1.12,0.1757,0.6,120,663,478,6,24.400000000000002,25,0,0,25,0.26,90.79,57.28,0.14,987,6.2,202,2.3000000000000003 +2020,9,10,10,0,25.5,1.1300000000000001,0.1511,0.6,81,504,235,6,24.400000000000002,29,0,0,29,0.26,93.66,72.21000000000001,0.14,987,6.1000000000000005,205,1.8 +2020,9,10,11,0,25,1.16,0.1369,0.6,20,100,25,7,24.200000000000003,6,0,1,6,0.262,95.32000000000001,86.98,0.14,988,6.1000000000000005,214,1.2000000000000002 +2020,9,10,12,0,24.700000000000003,1.19,0.1456,0.6,0,0,0,7,24,0,0,0,0,0.263,95.93,102.12,0.14,989,6.1000000000000005,230,0.9 +2020,9,10,13,0,24.6,1.23,0.1453,0.6,0,0,0,6,23.900000000000002,0,0,0,0,0.263,95.7,117.01,0.14,990,6,243,0.8 +2020,9,10,14,0,24.400000000000002,1.26,0.13520000000000001,0.6,0,0,0,7,23.8,0,0,0,0,0.264,96.35000000000001,131.85,0.14,991,5.9,251,0.8 +2020,9,10,15,0,24.200000000000003,1.29,0.1346,0.6,0,0,0,8,23.6,0,0,0,0,0.265,96.54,146.55,0.14,991,5.800000000000001,262,0.7000000000000001 +2020,9,10,16,0,24.1,1.3,0.136,0.6,0,0,0,8,23.5,0,0,0,0,0.266,96.35000000000001,160.8,0.14,991,5.7,273,0.7000000000000001 +2020,9,10,17,0,23.900000000000002,1.3,0.13570000000000002,0.6,0,0,0,8,23.400000000000002,0,0,0,0,0.266,97.01,171.77,0.14,991,5.7,280,0.7000000000000001 +2020,9,10,18,0,23.8,1.31,0.1428,0.6,0,0,0,8,23.3,0,0,0,0,0.267,96.96000000000001,165.29,0.14,990,5.6000000000000005,286,0.8 +2020,9,10,19,0,23.6,1.31,0.1486,0.6,0,0,0,8,23.200000000000003,0,0,0,0,0.267,97.48,151.46,0.14,990,5.6000000000000005,290,0.8 +2020,9,10,20,0,23.5,1.31,0.1512,0.6,0,0,0,7,23,0,0,0,0,0.266,97.28,136.85,0.14,989,5.6000000000000005,291,0.7000000000000001 +2020,9,10,21,0,23.400000000000002,1.31,0.16160000000000002,0.6,0,0,0,8,23,0,0,0,0,0.266,97.33,122.04,0.14,989,5.5,293,0.7000000000000001 +2020,9,10,22,0,23.400000000000002,1.32,0.1676,0.6,0,0,0,8,22.8,0,0,0,0,0.265,96.67,107.16,0.14,990,5.5,297,0.7000000000000001 +2020,9,10,23,0,23.6,1.32,0.1648,0.6,0,0,0,8,23,0,0,1,0,0.265,96.52,92.25,0.14,990,5.5,300,0.7000000000000001 +2020,9,11,0,0,24.700000000000003,1.34,0.1661,0.6,67,395,154,8,23.5,73,275,3,134,0.265,92.91,77.24,0.14,991,5.5,298,1 +2020,9,11,1,0,25.700000000000003,1.36,0.167,0.6,106,631,399,8,23.6,166,386,0,345,0.265,88.25,62.33,0.14,992,5.5,272,0.9 +2020,9,11,2,0,26.700000000000003,1.3800000000000001,0.1544,0.6,124,755,635,3,23.3,301,281,3,492,0.265,81.52,47.38,0.14,992,5.5,249,0.8 +2020,9,11,3,0,27.8,1.3900000000000001,0.14830000000000002,0.6,134,820,826,8,23.3,339,445,0,714,0.264,76.56,32.43,0.14,992,5.6000000000000005,240,0.8 +2020,9,11,4,0,28.6,1.3900000000000001,0.151,0.6,143,848,952,7,23.400000000000002,472,283,0,742,0.263,73.61,17.48,0.14,991,5.7,239,0.9 +2020,9,11,5,0,29,1.3900000000000001,0.155,0.6,148,857,1004,7,23.5,514,232,0,746,0.262,72.22,2.72,0.14,990,5.7,239,1 +2020,9,11,6,0,29.1,1.3800000000000001,0.16620000000000001,0.6,152,844,976,7,23.5,505,179,0,680,0.261,71.83,12.530000000000001,0.14,989,5.800000000000001,233,1 +2020,9,11,7,0,28.700000000000003,1.3800000000000001,0.1757,0.6,149,813,871,7,23.6,445,138,0,567,0.261,73.85000000000001,27.47,0.14,989,5.800000000000001,216,0.9 +2020,9,11,8,0,28.3,1.3800000000000001,0.1804,0.6,139,759,699,7,23.900000000000002,332,308,0,559,0.26,77.07000000000001,42.43,0.14,989,5.9,190,0.9 +2020,9,11,9,0,27.700000000000003,1.37,0.2126,0.6,130,638,474,9,24.3,157,1,0,157,0.259,81.63,57.38,0.14,989,5.9,179,0.9 +2020,9,11,10,0,26.900000000000002,1.37,0.2335,0.6,96,433,227,9,24.1,42,0,0,42,0.259,84.63,72.31,0.14,989,5.9,171,0.9 +2020,9,11,11,0,25.900000000000002,1.37,0.23240000000000002,0.6,19,60,22,9,24.5,7,0,3,7,0.26,92.10000000000001,87.08,0.14,990,5.9,170,0.7000000000000001 +2020,9,11,12,0,25.5,1.37,0.2446,0.6,0,0,0,9,24.400000000000002,0,0,0,0,0.261,93.42,102.24000000000001,0.14,991,5.9,164,0.7000000000000001 +2020,9,11,13,0,25.3,1.37,0.2464,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.262,93.59,117.14,0.14,991,5.9,158,0.7000000000000001 +2020,9,11,14,0,25.200000000000003,1.3800000000000001,0.2325,0.6,0,0,0,6,24,0,0,0,0,0.263,93.21000000000001,131.99,0.14,992,5.9,148,0.6000000000000001 +2020,9,11,15,0,25.1,1.37,0.22490000000000002,0.6,0,0,0,6,23.8,0,0,0,0,0.264,92.63,146.72,0.14,992,5.9,139,0.5 +2020,9,11,16,0,25,1.37,0.2185,0.6,0,0,0,6,23.6,0,0,0,0,0.264,92.05,161.03,0.14,992,5.9,151,0.4 +2020,9,11,17,0,24.900000000000002,1.36,0.20720000000000002,0.6,0,0,0,6,23.5,0,0,0,0,0.265,91.88,172.16,0.14,992,5.9,203,0.4 +2020,9,11,18,0,24.700000000000003,1.36,0.2063,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.265,92.34,165.41,0.14,991,5.9,238,0.4 +2020,9,11,19,0,24.400000000000002,1.37,0.2038,0.6,0,0,0,8,23.3,0,0,0,0,0.264,93.58,151.48,0.14,991,5.9,243,0.5 +2020,9,11,20,0,24.1,1.37,0.19490000000000002,0.6,0,0,0,4,23.200000000000003,0,0,0,0,0.264,94.77,136.83,0.14,990,5.800000000000001,241,0.6000000000000001 +2020,9,11,21,0,23.900000000000002,1.36,0.2059,0.6,0,0,0,4,23.1,0,0,0,0,0.264,95.57000000000001,122,0.14,991,5.800000000000001,234,0.7000000000000001 +2020,9,11,22,0,23.8,1.35,0.2112,0.6,0,0,0,4,23.1,0,0,0,0,0.264,95.79,107.11,0.14,991,5.800000000000001,223,0.7000000000000001 +2020,9,11,23,0,24.1,1.35,0.19640000000000002,0.6,0,0,0,8,23.5,0,0,0,0,0.263,96.25,92.18,0.14,992,5.9,211,0.8 +2020,9,12,0,0,25.400000000000002,1.36,0.1933,0.6,71,369,153,8,24.200000000000003,77,13,3,80,0.263,93.18,77.17,0.14,992,5.9,202,1.5 +2020,9,12,1,0,26.400000000000002,1.37,0.1802,0.6,110,618,398,3,24.200000000000003,145,1,3,146,0.264,87.97,62.25,0.14,993,5.9,196,1.8 +2020,9,12,2,0,27.200000000000003,1.3800000000000001,0.1569,0.6,125,752,635,3,24.1,317,160,3,425,0.263,83.33,47.300000000000004,0.14,993,5.9,190,2 +2020,9,12,3,0,28,1.29,0.1696,0.6,144,802,822,3,24.3,411,246,0,619,0.263,80.14,32.34,0.14,993,5.9,190,2.2 +2020,9,12,4,0,28.6,1.27,0.1595,0.6,148,841,950,4,24.3,348,22,0,369,0.263,77.60000000000001,17.38,0.14,992,5.9,193,2.3000000000000003 +2020,9,12,5,0,28.900000000000002,1.25,0.1482,0.6,146,860,1004,4,24.3,317,17,0,334,0.263,76.11,2.5100000000000002,0.14,991,5.9,197,2.3000000000000003 +2020,9,12,6,0,29,1.23,0.1504,0.6,145,852,977,4,24.200000000000003,463,63,0,524,0.263,75.17,12.6,0.14,991,5.9,203,2.4000000000000004 +2020,9,12,7,0,28.8,1.2,0.151,0.6,140,827,873,3,24,389,46,0,430,0.263,75.3,27.55,0.14,990,5.9,206,2.3000000000000003 +2020,9,12,8,0,28.400000000000002,1.19,0.1449,0.6,126,782,703,3,23.900000000000002,352,163,0,473,0.264,76.85000000000001,42.52,0.14,990,5.9,208,2 +2020,9,12,9,0,27.6,1.19,0.15480000000000002,0.6,112,683,479,8,24.1,201,25,0,214,0.264,81.34,57.47,0.14,990,5.9,209,1.7000000000000002 +2020,9,12,10,0,26.700000000000003,1.2,0.1502,0.6,80,505,233,7,24.200000000000003,10,0,0,10,0.265,86.11,72.41,0.14,990,5.9,205,1.3 +2020,9,12,11,0,25.6,1.2,0.1374,0.6,19,94,23,6,24.200000000000003,3,0,3,3,0.266,92.08,87.18,0.14,991,5.9,200,0.9 +2020,9,12,12,0,25.200000000000003,1.19,0.1318,0.6,0,0,0,8,24,0,0,0,0,0.267,93.18,102.35000000000001,0.14,992,5.9,195,0.8 +2020,9,12,13,0,24.900000000000002,1.18,0.12860000000000002,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.268,93.96000000000001,117.27,0.14,993,5.800000000000001,191,0.9 +2020,9,12,14,0,24.6,1.18,0.1246,0.6,0,0,0,4,23.700000000000003,0,0,0,0,0.269,94.77,132.13,0.14,993,5.800000000000001,189,0.9 +2020,9,12,15,0,24.400000000000002,1.17,0.12810000000000002,0.6,0,0,0,8,23.5,0,0,0,0,0.27,94.82000000000001,146.89000000000001,0.14,993,5.800000000000001,193,0.7000000000000001 +2020,9,12,16,0,24.5,1.1400000000000001,0.1471,0.6,0,0,0,4,23.3,0,0,0,0,0.27,92.77,161.26,0.14,993,5.9,235,0.4 +2020,9,12,17,0,24.400000000000002,1.12,0.165,0.6,0,0,0,4,23.1,0,0,0,0,0.27,92.73,172.55,0.14,993,5.9,296,0.30000000000000004 +2020,9,12,18,0,24.3,1.1300000000000001,0.1749,0.6,0,0,0,4,23.1,0,0,0,0,0.269,93.04,165.52,0.14,992,5.9,300,0.30000000000000004 +2020,9,12,19,0,24.200000000000003,1.1500000000000001,0.1761,0.6,0,0,0,3,23.1,0,0,0,0,0.268,93.44,151.48,0.14,992,5.9,299,0.30000000000000004 +2020,9,12,20,0,24.1,1.17,0.17300000000000001,0.6,0,0,0,3,23,0,0,0,0,0.268,93.46000000000001,136.8,0.14,991,5.800000000000001,304,0.30000000000000004 +2020,9,12,21,0,24,1.18,0.1751,0.6,0,0,0,8,22.900000000000002,0,0,0,0,0.267,93.45,121.96000000000001,0.14,991,5.800000000000001,291,0.30000000000000004 +2020,9,12,22,0,23.900000000000002,1.19,0.17350000000000002,0.6,0,0,0,3,22.700000000000003,0,0,0,0,0.266,93.29,107.05,0.14,992,5.7,274,0.4 +2020,9,12,23,0,24,1.2,0.16870000000000002,0.6,0,0,0,4,22.900000000000002,0,0,0,0,0.265,93.82000000000001,92.12,0.14,992,5.7,262,0.4 +2020,9,13,0,0,25,1.22,0.1685,0.6,68,390,156,4,23.700000000000003,24,0,3,24,0.265,92.47,77.10000000000001,0.14,993,5.7,236,0.7000000000000001 +2020,9,13,1,0,26.200000000000003,1.25,0.1647,0.6,107,632,402,4,23.5,66,0,0,66,0.265,84.95,62.17,0.14,993,5.7,202,1.2000000000000002 +2020,9,13,2,0,27.200000000000003,1.25,0.1656,0.6,129,745,635,4,23.400000000000002,271,35,0,295,0.265,79.87,47.22,0.14,994,5.7,196,1.5 +2020,9,13,3,0,27.900000000000002,1.24,0.19360000000000002,0.6,155,787,820,4,23.5,377,54,0,423,0.265,76.88,32.25,0.14,993,5.7,198,1.7000000000000002 +2020,9,13,4,0,28.3,1.24,0.2078,0.6,170,811,945,4,23.6,487,219,0,696,0.266,75.58,17.28,0.14,993,5.7,199,1.8 +2020,9,13,5,0,28.5,1.23,0.216,0.6,177,818,994,8,23.6,472,352,0,823,0.267,75.01,2.33,0.14,992,5.800000000000001,200,1.8 +2020,9,13,6,0,28.400000000000002,1.23,0.2238,0.6,179,807,966,7,23.700000000000003,430,416,0,836,0.267,75.66,12.67,0.14,991,5.800000000000001,200,1.9000000000000001 +2020,9,13,7,0,28.1,1.23,0.22340000000000002,0.6,171,780,862,4,23.8,364,34,0,394,0.267,77.3,27.64,0.14,990,5.800000000000001,201,1.9000000000000001 +2020,9,13,8,0,27.6,1.25,0.2112,0.6,152,734,692,4,23.900000000000002,212,9,0,218,0.267,80.18,42.61,0.14,990,5.800000000000001,203,1.7000000000000002 +2020,9,13,9,0,27.1,1.26,0.2137,0.6,130,634,470,7,24.200000000000003,65,0,0,65,0.267,84.24,57.57,0.14,990,5.800000000000001,200,1.4000000000000001 +2020,9,13,10,0,26.400000000000002,1.28,0.2087,0.6,91,448,226,7,24.3,30,0,0,30,0.267,88.36,72.51,0.14,991,5.800000000000001,195,1 +2020,9,13,11,0,25.6,1.3,0.18860000000000002,0.6,18,67,21,7,24.3,6,0,3,6,0.268,92.58,87.29,0.14,991,5.800000000000001,193,0.6000000000000001 +2020,9,13,12,0,25.400000000000002,1.32,0.17020000000000002,0.6,0,0,0,7,24,0,0,0,0,0.268,91.76,102.47,0.14,992,5.7,191,0.5 +2020,9,13,13,0,25.3,1.34,0.157,0.6,0,0,0,7,23.8,0,0,0,0,0.27,91.28,117.39,0.14,993,5.6000000000000005,191,0.5 +2020,9,13,14,0,25.1,1.35,0.14800000000000002,0.6,0,0,0,7,23.6,0,0,1,0,0.271,91.14,132.27,0.14,993,5.5,196,0.5 +2020,9,13,15,0,25,1.35,0.14250000000000002,0.6,0,0,0,6,23.400000000000002,0,0,0,0,0.271,90.71000000000001,147.05,0.14,993,5.5,208,0.5 +2020,9,13,16,0,24.8,1.35,0.138,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.272,90.97,161.48,0.14,993,5.4,222,0.6000000000000001 +2020,9,13,17,0,24.6,1.35,0.1363,0.6,0,0,0,7,23.1,0,0,0,0,0.272,91.36,172.94,0.14,992,5.300000000000001,234,0.7000000000000001 +2020,9,13,18,0,24.400000000000002,1.34,0.1398,0.6,0,0,0,7,23,0,0,0,0,0.272,91.95,165.63,0.14,991,5.300000000000001,248,0.6000000000000001 +2020,9,13,19,0,24.200000000000003,1.32,0.1476,0.6,0,0,0,8,23,0,0,0,0,0.271,92.76,151.49,0.14,991,5.300000000000001,269,0.6000000000000001 +2020,9,13,20,0,24.1,1.32,0.15330000000000002,0.6,0,0,0,4,22.900000000000002,0,0,0,0,0.271,93.02,136.77,0.14,991,5.4,285,0.6000000000000001 +2020,9,13,21,0,24,1.33,0.1585,0.6,0,0,0,8,22.900000000000002,0,0,0,0,0.27,93.58,121.91,0.14,991,5.4,285,0.6000000000000001 +2020,9,13,22,0,23.900000000000002,1.35,0.15710000000000002,0.6,0,0,0,3,22.8,0,0,0,0,0.27,93.82000000000001,106.99000000000001,0.14,991,5.4,279,0.7000000000000001 +2020,9,13,23,0,24.1,1.36,0.15,0.6,0,0,0,8,23.1,0,0,0,0,0.269,94.14,92.05,0.14,991,5.4,267,0.6000000000000001 +2020,9,14,0,0,25.200000000000003,1.3900000000000001,0.1444,0.6,64,426,160,4,23.8,83,81,3,101,0.269,92.14,77.03,0.14,992,5.4,236,0.8 +2020,9,14,1,0,26.400000000000002,1.42,0.13720000000000002,0.6,97,663,408,4,23.700000000000003,80,0,0,80,0.269,85.25,62.1,0.14,993,5.5,216,1 +2020,9,14,2,0,27.400000000000002,1.44,0.1356,0.6,116,773,642,4,23.3,318,172,0,435,0.269,78.52,47.14,0.14,993,5.5,215,1 +2020,9,14,3,0,28.200000000000003,1.44,0.1398,0.6,131,828,831,4,23.3,341,32,0,368,0.269,74.71000000000001,32.17,0.14,993,5.6000000000000005,223,1 +2020,9,14,4,0,28.8,1.43,0.14450000000000002,0.6,140,855,956,0,23.400000000000002,140,855,0,956,0.268,72.46000000000001,17.19,0.14,992,5.7,236,1.1 +2020,9,14,5,0,29,1.42,0.1495,0.6,145,862,1006,4,23.400000000000002,132,0,0,132,0.267,72.02,2.22,0.14,991,5.800000000000001,250,1.2000000000000002 +2020,9,14,6,0,29.1,1.42,0.161,0.6,149,849,976,6,23.5,212,11,0,223,0.266,71.67,12.76,0.14,990,5.800000000000001,261,1.3 +2020,9,14,7,0,29,1.42,0.16770000000000002,0.6,146,819,870,9,23.6,73,0,0,73,0.266,72.49,27.73,0.14,990,5.9,271,1.5 +2020,9,14,8,0,28.400000000000002,1.42,0.1645,0.6,132,771,699,6,23.700000000000003,47,0,0,47,0.265,75.85000000000001,42.71,0.14,989,5.9,277,1.5 +2020,9,14,9,0,27.8,1.41,0.1889,0.6,121,657,472,6,24.200000000000003,65,0,0,65,0.265,80.83,57.67,0.14,989,5.9,278,1.3 +2020,9,14,10,0,27.200000000000003,1.42,0.19790000000000002,0.6,88,461,225,9,24.1,16,0,0,16,0.266,83.42,72.62,0.14,989,5.9,288,0.9 +2020,9,14,11,0,26.5,1.43,0.19240000000000002,0.6,17,69,20,6,24.200000000000003,4,0,3,4,0.266,87.47,87.39,0.14,990,5.9,320,0.4 +2020,9,14,12,0,26.200000000000003,1.45,0.21580000000000002,0.6,0,0,0,6,24,0,0,0,0,0.266,87.54,102.58,0.14,991,5.9,46,0.30000000000000004 +2020,9,14,13,0,25.900000000000002,1.45,0.23450000000000001,0.6,0,0,0,7,23.8,0,0,0,0,0.267,88.33,117.52,0.14,992,5.9,120,0.4 +2020,9,14,14,0,25.400000000000002,1.43,0.2437,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.268,91.46000000000001,132.41,0.14,992,6,149,0.6000000000000001 +2020,9,14,15,0,25.1,1.41,0.26430000000000003,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.268,93.23,147.21,0.14,993,6,162,0.7000000000000001 +2020,9,14,16,0,24.900000000000002,1.3800000000000001,0.2516,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.269,93.98,161.70000000000002,0.14,992,6,182,0.6000000000000001 +2020,9,14,17,0,24.6,1.36,0.21300000000000002,0.6,0,0,0,8,23.8,0,0,0,0,0.269,95.49,173.33,0.14,992,5.9,215,0.7000000000000001 +2020,9,14,18,0,24.400000000000002,1.35,0.20520000000000002,0.6,0,0,0,8,23.8,0,0,0,0,0.269,96.44,165.72,0.14,991,5.9,237,0.9 +2020,9,14,19,0,24.3,1.35,0.18630000000000002,0.6,0,0,0,8,23.8,0,0,0,0,0.269,96.83,151.49,0.14,991,5.800000000000001,245,1.1 +2020,9,14,20,0,24.200000000000003,1.36,0.1517,0.6,0,0,0,4,23.700000000000003,0,0,0,0,0.269,96.93,136.74,0.14,990,5.800000000000001,247,1.2000000000000002 +2020,9,14,21,0,24.1,1.37,0.1516,0.6,0,0,0,4,23.6,0,0,0,0,0.269,96.91,121.86,0.14,991,5.7,246,1.2000000000000002 +2020,9,14,22,0,23.900000000000002,1.3800000000000001,0.1378,0.6,0,0,0,4,23.400000000000002,0,0,0,0,0.269,96.85000000000001,106.93,0.14,991,5.6000000000000005,248,1 +2020,9,14,23,0,24.1,1.4000000000000001,0.1216,0.6,0,0,0,4,23.400000000000002,0,0,0,0,0.269,96.12,91.98,0.14,991,5.5,251,0.9 +2020,9,15,0,0,25.200000000000003,1.41,0.1193,0.6,60,457,163,8,24,40,0,3,40,0.269,92.95,76.96000000000001,0.14,992,5.5,249,1.4000000000000001 +2020,9,15,1,0,26.200000000000003,1.43,0.1134,0.6,90,689,413,8,23.8,182,37,0,199,0.269,86.66,62.02,0.14,993,5.4,245,1.5 +2020,9,15,2,0,27.1,1.43,0.1066,0.6,105,799,649,3,23.400000000000002,285,362,0,532,0.269,80.44,47.06,0.14,993,5.4,234,1.5 +2020,9,15,3,0,28.1,1.4000000000000001,0.097,0.6,111,861,841,3,23.400000000000002,402,293,3,650,0.268,75.7,32.09,0.14,993,5.4,228,1.7000000000000002 +2020,9,15,4,0,28.8,1.41,0.0981,0.6,118,889,967,4,23.6,463,76,0,535,0.267,73.45,17.11,0.14,992,5.300000000000001,230,2 +2020,9,15,5,0,29.200000000000003,1.41,0.0998,0.6,121,899,1019,4,23.700000000000003,508,103,0,611,0.266,72.42,2.17,0.14,991,5.2,234,2.2 +2020,9,15,6,0,29.3,1.34,0.1283,0.6,134,874,986,4,23.700000000000003,501,131,0,629,0.266,72.09,12.86,0.14,990,5.2,237,2.4000000000000004 +2020,9,15,7,0,29.200000000000003,1.33,0.1291,0.6,128,849,879,4,23.700000000000003,446,167,0,593,0.265,72.23,27.830000000000002,0.14,990,5.2,237,2.4000000000000004 +2020,9,15,8,0,28.900000000000002,1.34,0.1291,0.6,118,802,706,8,23.6,351,181,0,483,0.265,73.31,42.800000000000004,0.14,989,5.1000000000000005,235,2.3000000000000003 +2020,9,15,9,0,28.3,1.33,0.131,0.6,102,710,481,4,23.900000000000002,224,266,0,366,0.264,77.07000000000001,57.77,0.14,989,5.1000000000000005,234,1.9000000000000001 +2020,9,15,10,0,27.400000000000002,1.34,0.1318,0.6,74,529,231,7,24.1,114,73,0,136,0.264,82.38,72.72,0.14,990,5.1000000000000005,234,1.5 +2020,9,15,11,0,26,1.34,0.1317,0.6,17,94,21,8,24.200000000000003,13,0,3,13,0.264,89.85000000000001,87.49,0.14,991,5.1000000000000005,236,0.8 +2020,9,15,12,0,25.700000000000003,1.35,0.1318,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.264,89.76,102.7,0.14,991,5.2,239,0.8 +2020,9,15,13,0,25.5,1.36,0.1321,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.264,89.95,117.64,0.14,992,5.2,245,0.8 +2020,9,15,14,0,25.3,1.36,0.13390000000000002,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.263,90.63,132.55,0.14,993,5.2,252,0.8 +2020,9,15,15,0,25.1,1.35,0.1375,0.6,0,0,0,8,23.6,0,0,0,0,0.263,91.41,147.37,0.14,993,5.300000000000001,254,0.8 +2020,9,15,16,0,24.8,1.34,0.1418,0.6,0,0,0,8,23.6,0,0,0,0,0.262,92.93,161.91,0.14,993,5.300000000000001,250,0.8 +2020,9,15,17,0,24.6,1.32,0.14600000000000002,0.6,0,0,0,7,23.6,0,0,0,0,0.262,94.14,173.72,0.14,992,5.4,243,1 +2020,9,15,18,0,24.5,1.29,0.149,0.6,0,0,0,7,23.6,0,0,0,0,0.262,94.81,165.81,0.14,991,5.4,237,1.1 +2020,9,15,19,0,24.400000000000002,1.27,0.14830000000000002,0.6,0,0,0,6,23.6,0,0,0,0,0.262,95.24,151.48,0.14,991,5.4,229,1.3 +2020,9,15,20,0,24.200000000000003,1.25,0.1495,0.6,0,0,0,6,23.400000000000002,0,0,0,0,0.262,95.22,136.70000000000002,0.14,991,5.4,225,1.2000000000000002 +2020,9,15,21,0,24,1.23,0.15460000000000002,0.6,0,0,0,6,23.1,0,0,0,0,0.262,94.8,121.81,0.14,991,5.5,223,1 +2020,9,15,22,0,23.700000000000003,1.23,0.15510000000000002,0.6,0,0,0,6,22.900000000000002,0,0,0,0,0.262,95.18,106.87,0.14,991,5.4,215,1 +2020,9,15,23,0,23.8,1.23,0.15230000000000002,0.6,0,0,0,6,23,0,0,0,0,0.261,95.02,91.92,0.14,992,5.4,206,1 +2020,9,16,0,0,24.8,1.24,0.1564,0.6,67,411,161,6,23.5,66,0,3,66,0.261,92.24,76.89,0.14,992,5.4,199,1.5 +2020,9,16,1,0,25.6,1.25,0.16290000000000002,0.6,107,639,407,6,23.200000000000003,162,11,0,167,0.262,86.71000000000001,61.95,0.14,993,5.4,200,1.8 +2020,9,16,2,0,26.400000000000002,1.25,0.1683,0.6,131,747,641,6,22.8,311,92,0,374,0.262,80.8,46.980000000000004,0.14,993,5.4,206,1.9000000000000001 +2020,9,16,3,0,27.1,1.26,0.1704,0.6,146,807,830,6,22.700000000000003,415,112,0,510,0.262,76.91,32.01,0.14,993,5.4,215,1.9000000000000001 +2020,9,16,4,0,27.8,1.27,0.1676,0.6,152,841,956,6,22.700000000000003,460,71,0,528,0.262,74.03,17.04,0.14,992,5.4,225,1.9000000000000001 +2020,9,16,5,0,28.3,1.28,0.1623,0.6,153,856,1008,7,22.900000000000002,521,175,0,696,0.262,72.53,2.19,0.14,991,5.4,233,2 +2020,9,16,6,0,28.5,1.28,0.1584,0.6,149,852,979,7,23.1,480,308,0,780,0.261,72.43,12.97,0.14,990,5.5,239,2.2 +2020,9,16,7,0,28.5,1.27,0.15810000000000002,0.6,143,826,873,7,23.200000000000003,418,322,0,702,0.26,73.22,27.93,0.14,990,5.5,243,2.1 +2020,9,16,8,0,28.200000000000003,1.27,0.159,0.6,131,775,699,8,23.400000000000002,278,454,0,611,0.26,75.06,42.910000000000004,0.14,990,5.5,245,2 +2020,9,16,9,0,27.700000000000003,1.29,0.15430000000000002,0.6,111,685,475,8,23.6,179,472,0,430,0.26,78.55,57.88,0.14,990,5.5,246,1.7000000000000002 +2020,9,16,10,0,26.900000000000002,1.31,0.1442,0.6,77,510,228,7,24,112,58,0,130,0.26,84.29,72.83,0.14,990,5.5,246,1.3 +2020,9,16,11,0,25.700000000000003,1.32,0.1396,0.6,16,83,20,3,24.1,13,0,3,13,0.261,90.99,87.60000000000001,0.14,990,5.5,243,0.7000000000000001 +2020,9,16,12,0,25.6,1.32,0.1398,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.262,89.45,102.81,0.14,991,5.5,238,0.7000000000000001 +2020,9,16,13,0,25.700000000000003,1.33,0.137,0.6,0,0,0,8,23.5,0,0,0,0,0.263,87.45,117.76,0.14,992,5.4,235,0.7000000000000001 +2020,9,16,14,0,25.6,1.35,0.1321,0.6,0,0,0,7,23.3,0,0,0,0,0.264,87.22,132.68,0.14,993,5.4,237,0.6000000000000001 +2020,9,16,15,0,25.400000000000002,1.3800000000000001,0.1268,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.265,87.89,147.53,0.14,992,5.300000000000001,249,0.7000000000000001 +2020,9,16,16,0,25,1.4000000000000001,0.1255,0.6,0,0,0,7,23.3,0,0,0,0,0.266,90.09,162.12,0.14,992,5.300000000000001,262,0.8 +2020,9,16,17,0,24.6,1.41,0.1273,0.6,0,0,0,6,23.3,0,0,0,0,0.266,92.28,174.12,0.14,991,5.300000000000001,268,0.8 +2020,9,16,18,0,24.3,1.41,0.13040000000000002,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.266,93.77,165.88,0.14,990,5.300000000000001,271,0.8 +2020,9,16,19,0,24.1,1.41,0.135,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.265,94.65,151.47,0.14,990,5.300000000000001,272,0.8 +2020,9,16,20,0,23.900000000000002,1.41,0.14070000000000002,0.6,0,0,0,8,23.1,0,0,0,0,0.264,95.51,136.66,0.14,990,5.300000000000001,270,0.8 +2020,9,16,21,0,23.700000000000003,1.41,0.14800000000000002,0.6,0,0,0,3,23.1,0,0,0,0,0.263,96.35000000000001,121.75,0.14,990,5.300000000000001,263,0.8 +2020,9,16,22,0,23.6,1.4000000000000001,0.156,0.6,0,0,0,0,23,0,0,0,0,0.262,96.72,106.81,0.14,990,5.300000000000001,256,0.8 +2020,9,16,23,0,24,1.4000000000000001,0.1593,0.6,0,0,0,0,23.3,0,0,0,0,0.261,96.15,91.85000000000001,0.14,990,5.4,251,0.8 +2020,9,17,0,0,25.700000000000003,1.4000000000000001,0.1598,0.6,67,415,161,3,24,82,197,3,127,0.26,90.45,76.82000000000001,0.14,991,5.4,247,1.3 +2020,9,17,1,0,27.1,1.42,0.154,0.6,102,651,408,8,23.900000000000002,140,517,0,384,0.26,82.78,61.88,0.14,992,5.5,250,1.6 +2020,9,17,2,0,28.200000000000003,1.41,0.1585,0.6,124,758,642,7,23.8,299,315,0,514,0.26,77.22,46.910000000000004,0.14,992,5.5,254,1.7000000000000002 +2020,9,17,3,0,28.900000000000002,1.36,0.165,0.6,141,812,830,6,24,422,195,0,587,0.26,75.01,31.94,0.14,992,5.6000000000000005,255,2 +2020,9,17,4,0,29.200000000000003,1.33,0.1689,0.6,151,840,954,6,24.200000000000003,493,187,0,672,0.26,74.3,16.98,0.14,992,5.7,257,2.3000000000000003 +2020,9,17,5,0,29.3,1.31,0.1665,0.6,153,852,1005,6,24.200000000000003,518,135,0,654,0.259,73.89,2.2800000000000002,0.14,991,5.7,258,2.7 +2020,9,17,6,0,29.200000000000003,1.36,0.1885,0.6,161,832,972,6,24.1,339,20,0,358,0.258,73.91,13.09,0.14,990,5.7,259,3 +2020,9,17,7,0,28.900000000000002,1.37,0.1794,0.6,150,812,867,7,24,437,243,0,652,0.258,75.03,28.04,0.14,989,5.7,259,3 +2020,9,17,8,0,28.400000000000002,1.3900000000000001,0.16840000000000002,0.6,132,769,694,7,24.1,322,335,0,567,0.258,77.55,43.01,0.14,989,5.6000000000000005,259,2.9000000000000004 +2020,9,17,9,0,27.700000000000003,1.3900000000000001,0.1638,0.6,111,678,471,7,24.3,182,13,0,189,0.257,81.59,57.980000000000004,0.14,989,5.6000000000000005,257,2.5 +2020,9,17,10,0,26.8,1.4000000000000001,0.1582,0.6,78,496,224,8,24.6,78,496,5,224,0.257,87.59,72.94,0.14,989,5.5,256,1.7000000000000002 +2020,9,17,11,0,25.6,1.41,0.1522,0.6,15,77,18,7,24.5,15,77,5,18,0.258,93.86,87.7,0.14,990,5.4,255,0.9 +2020,9,17,12,0,25.200000000000003,1.4000000000000001,0.15080000000000002,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.259,94.46000000000001,102.93,0.14,990,5.300000000000001,257,0.8 +2020,9,17,13,0,25.1,1.4000000000000001,0.1481,0.6,0,0,0,7,24.1,0,0,0,0,0.259,94.02,117.88,0.14,991,5.300000000000001,259,0.7000000000000001 +2020,9,17,14,0,25.1,1.3900000000000001,0.1431,0.6,0,0,0,6,23.900000000000002,0,0,0,0,0.26,92.85000000000001,132.81,0.14,991,5.2,258,0.7000000000000001 +2020,9,17,15,0,24.8,1.3800000000000001,0.14170000000000002,0.6,0,0,0,6,23.700000000000003,0,0,0,0,0.261,93.56,147.68,0.14,992,5.2,257,0.7000000000000001 +2020,9,17,16,0,24.6,1.36,0.1461,0.6,0,0,0,6,23.6,0,0,0,0,0.262,94.04,162.32,0.14,991,5.300000000000001,262,0.7000000000000001 +2020,9,17,17,0,24.400000000000002,1.34,0.1504,0.6,0,0,0,7,23.5,0,0,0,0,0.262,94.8,174.51,0.14,991,5.300000000000001,267,0.7000000000000001 +2020,9,17,18,0,24.200000000000003,1.32,0.15610000000000002,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.263,95.54,165.94,0.14,990,5.4,267,0.7000000000000001 +2020,9,17,19,0,24,1.3,0.1605,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.263,96.27,151.45000000000002,0.14,989,5.5,265,0.8 +2020,9,17,20,0,23.900000000000002,1.28,0.16240000000000002,0.6,0,0,0,8,23.3,0,0,0,0,0.263,96.37,136.62,0.14,989,5.5,260,0.8 +2020,9,17,21,0,23.900000000000002,1.27,0.16440000000000002,0.6,0,0,0,3,23.200000000000003,0,0,0,0,0.263,95.95,121.7,0.14,989,5.6000000000000005,250,0.7000000000000001 +2020,9,17,22,0,23.900000000000002,1.27,0.1612,0.6,0,0,0,3,23.1,0,0,0,0,0.262,95.44,106.75,0.14,989,5.7,239,0.7000000000000001 +2020,9,17,23,0,24.3,1.27,0.1527,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.261,94.82000000000001,91.79,0.14,990,5.7,226,0.8 +2020,9,18,0,0,25.900000000000002,1.28,0.1434,0.6,65,429,163,8,24.1,78,1,3,78,0.261,89.72,76.75,0.14,991,5.7,216,1.5 +2020,9,18,1,0,27.1,1.28,0.1345,0.6,97,667,412,3,24.1,186,306,0,330,0.262,83.44,61.800000000000004,0.14,991,5.7,210,2.1 +2020,9,18,2,0,28.1,1.27,0.12840000000000001,0.6,114,780,648,7,24,321,170,0,438,0.263,78.34,46.84,0.14,991,5.7,205,2.4000000000000004 +2020,9,18,3,0,28.900000000000002,1.26,0.12510000000000002,0.6,125,839,837,8,23.900000000000002,407,286,0,649,0.263,74.61,31.87,0.14,991,5.7,203,2.5 +2020,9,18,4,0,29.3,1.23,0.1216,0.6,130,871,963,7,23.900000000000002,481,263,0,733,0.262,72.63,16.92,0.14,990,5.7,205,2.7 +2020,9,18,5,0,29.6,1.2,0.1192,0.6,132,883,1014,7,23.8,497,305,0,802,0.261,71.05,2.44,0.14,989,5.7,208,2.9000000000000004 +2020,9,18,6,0,29.6,1.17,0.1227,0.6,132,873,983,6,23.700000000000003,499,232,0,725,0.261,70.66,13.22,0.14,988,5.800000000000001,209,3 +2020,9,18,7,0,29.400000000000002,1.1500000000000001,0.1212,0.6,126,850,876,7,23.6,444,196,0,617,0.261,71.02,28.150000000000002,0.14,987,5.800000000000001,209,2.9000000000000004 +2020,9,18,8,0,28.900000000000002,1.1400000000000001,0.1159,0.6,114,806,702,7,23.6,331,299,0,549,0.26,72.96000000000001,43.12,0.14,987,5.800000000000001,207,2.8000000000000003 +2020,9,18,9,0,28.3,1.16,0.11420000000000001,0.6,97,719,477,7,23.700000000000003,218,289,0,371,0.261,76.37,58.09,0.14,987,5.800000000000001,206,2.3000000000000003 +2020,9,18,10,0,27.5,1.19,0.10550000000000001,0.6,68,549,228,6,24,112,71,0,133,0.261,81.45,73.04,0.14,988,5.7,205,1.5 +2020,9,18,11,0,26.3,1.23,0.0961,0.6,15,103,19,6,24.200000000000003,11,0,3,11,0.262,88.06,87.81,0.14,988,5.7,206,0.7000000000000001 +2020,9,18,12,0,26.200000000000003,1.25,0.0903,0.6,0,0,0,7,23.6,0,0,0,0,0.263,85.85000000000001,103.04,0.14,989,5.7,207,0.5 +2020,9,18,13,0,26.200000000000003,1.26,0.08710000000000001,0.6,0,0,0,7,23.3,0,0,0,0,0.264,84.09,118,0.14,990,5.6000000000000005,216,0.5 +2020,9,18,14,0,26,1.26,0.0876,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.265,84.73,132.94,0.14,990,5.6000000000000005,244,0.4 +2020,9,18,15,0,25.700000000000003,1.26,0.0921,0.6,0,0,0,7,23.3,0,0,0,0,0.266,86.5,147.83,0.14,991,5.6000000000000005,266,0.4 +2020,9,18,16,0,25.5,1.24,0.0995,0.6,0,0,0,6,23.1,0,0,0,0,0.267,86.75,162.52,0.14,990,5.7,236,0.5 +2020,9,18,17,0,25.1,1.23,0.1067,0.6,0,0,0,6,23.200000000000003,0,0,0,0,0.267,89.11,174.91,0.14,990,5.7,217,0.6000000000000001 +2020,9,18,18,0,24.6,1.23,0.11220000000000001,0.6,0,0,0,6,23.200000000000003,0,0,0,0,0.267,92.17,166,0.14,989,5.7,213,0.7000000000000001 +2020,9,18,19,0,24.200000000000003,1.22,0.11960000000000001,0.6,0,0,0,6,23.3,0,0,0,0,0.267,94.59,151.43,0.14,988,5.7,209,0.8 +2020,9,18,20,0,24.1,1.2,0.1337,0.6,0,0,0,7,23.3,0,0,0,0,0.266,95.06,136.57,0.14,988,5.800000000000001,188,0.8 +2020,9,18,21,0,24,1.19,0.15230000000000002,0.6,0,0,0,6,23.3,0,0,0,0,0.266,95.81,121.64,0.14,988,5.800000000000001,166,0.9 +2020,9,18,22,0,23.8,1.18,0.1627,0.6,0,0,0,6,23.400000000000002,0,0,0,0,0.266,97.4,106.69,0.14,989,5.800000000000001,170,1 +2020,9,18,23,0,24,1.19,0.1631,0.6,0,0,0,6,23.6,0,0,0,0,0.265,97.91,91.72,0.14,989,5.800000000000001,168,1.2000000000000002 +2020,9,19,0,0,25,1.21,0.1757,0.6,71,393,162,6,24.200000000000003,72,0,3,72,0.266,95.60000000000001,76.68,0.14,990,5.800000000000001,166,2 +2020,9,19,1,0,26,1.22,0.17850000000000002,0.6,112,625,408,7,24.6,198,218,0,302,0.266,92.05,61.74,0.14,991,5.800000000000001,162,2.6 +2020,9,19,2,0,27,1.23,0.1704,0.6,132,745,642,7,24.400000000000002,300,317,0,517,0.267,85.93,46.77,0.14,991,5.800000000000001,157,2.9000000000000004 +2020,9,19,3,0,27.8,1.34,0.11220000000000001,0.6,119,850,842,2,24.200000000000003,407,286,3,650,0.267,80.93,31.810000000000002,0.14,991,5.7,156,2.8000000000000003 +2020,9,19,4,0,28.400000000000002,1.36,0.113,0.6,126,878,966,8,24.1,447,357,0,789,0.266,77.55,16.87,0.14,990,5.7,158,2.5 +2020,9,19,5,0,28.8,1.3800000000000001,0.117,0.6,130,886,1015,6,24,480,65,0,546,0.264,75.46000000000001,2.64,0.14,989,5.7,163,2.3000000000000003 +2020,9,19,6,0,28.900000000000002,1.51,0.11120000000000001,0.6,125,885,986,7,23.900000000000002,497,244,0,735,0.263,74.59,13.36,0.14,988,5.7,168,2.2 +2020,9,19,7,0,28.8,1.51,0.1154,0.6,122,859,878,0,23.8,122,859,0,878,0.261,74.62,28.27,0.14,987,5.6000000000000005,173,2 +2020,9,19,8,0,28.6,1.51,0.1211,0.6,114,807,702,3,23.900000000000002,307,44,0,340,0.26,75.57000000000001,43.230000000000004,0.14,987,5.6000000000000005,178,1.9000000000000001 +2020,9,19,9,0,28.200000000000003,1.51,0.1295,0.6,101,710,475,0,24.1,101,710,0,475,0.26,78.42,58.2,0.14,987,5.6000000000000005,181,1.6 +2020,9,19,10,0,27.6,1.52,0.1317,0.6,73,524,225,0,24.3,73,524,0,225,0.26,82.29,73.15,0.14,988,5.6000000000000005,180,1.3 +2020,9,19,11,0,26.3,1.55,0.1258,0.6,14,91,18,0,24.400000000000002,14,91,0,18,0.262,89.23,87.91,0.14,989,5.5,182,0.9 +2020,9,19,12,0,25.900000000000002,1.56,0.11910000000000001,0.6,0,0,0,0,24,0,0,0,0,0.263,89.38,103.16,0.14,989,5.4,181,0.9 +2020,9,19,13,0,25.6,1.57,0.11280000000000001,0.6,0,0,0,8,23.8,0,0,0,0,0.264,89.68,118.12,0.14,990,5.4,177,0.9 +2020,9,19,14,0,25.3,1.57,0.10830000000000001,0.6,0,0,0,7,23.6,0,0,0,0,0.265,90.21000000000001,133.07,0.14,990,5.300000000000001,174,1 +2020,9,19,15,0,25,1.55,0.10640000000000001,0.6,0,0,0,7,23.5,0,0,0,0,0.265,91.15,147.97,0.14,990,5.300000000000001,172,1 +2020,9,19,16,0,24.700000000000003,1.53,0.1046,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.265,92.32000000000001,162.71,0.14,990,5.300000000000001,169,1 +2020,9,19,17,0,24.3,1.52,0.1023,0.6,0,0,0,7,23.3,0,0,0,0,0.265,94.15,175.3,0.14,989,5.2,166,1 +2020,9,19,18,0,24.200000000000003,1.48,0.10360000000000001,0.6,0,0,0,7,23.3,0,0,0,0,0.265,94.48,166.04,0.14,988,5.2,161,0.9 +2020,9,19,19,0,24.1,1.44,0.111,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.266,95,151.41,0.14,988,5.300000000000001,137,0.7000000000000001 +2020,9,19,20,0,24.1,1.4000000000000001,0.12000000000000001,0.6,0,0,0,8,23.200000000000003,0,0,0,0,0.266,94.84,136.53,0.14,989,5.4,42,0.6000000000000001 +2020,9,19,21,0,24,1.37,0.1265,0.6,0,0,0,3,23.200000000000003,0,0,0,0,0.266,95.13,121.59,0.14,989,5.5,36,0.6000000000000001 +2020,9,19,22,0,23.900000000000002,1.35,0.13240000000000002,0.6,0,0,0,0,23.1,0,0,0,0,0.265,95.48,106.63,0.14,990,5.5,44,0.7000000000000001 +2020,9,19,23,0,24,1.31,0.1393,0.6,0,0,0,8,23.3,0,0,0,0,0.265,95.87,91.65,0.14,990,5.6000000000000005,43,0.7000000000000001 +2020,9,20,0,0,25,1.28,0.1462,0.6,67,430,166,4,23.8,31,0,3,31,0.265,93.3,76.61,0.15,991,5.6000000000000005,56,0.9 +2020,9,20,1,0,26.1,1.25,0.1509,0.6,104,653,414,7,24.1,202,180,0,288,0.265,89.02,61.67,0.15,992,5.7,98,1.1 +2020,9,20,2,0,27.1,1.26,0.1467,0.6,123,766,648,7,24.3,314,254,0,488,0.265,84.82000000000001,46.7,0.15,992,5.7,117,1.4000000000000001 +2020,9,20,3,0,27.700000000000003,1.27,0.1423,0.6,134,827,837,8,24.200000000000003,352,427,0,716,0.265,81.27,31.75,0.15,992,5.800000000000001,123,1.4000000000000001 +2020,9,20,4,0,28.200000000000003,1.29,0.1379,0.6,139,861,962,7,24,458,340,0,784,0.265,77.82000000000001,16.84,0.15,991,5.800000000000001,129,1.3 +2020,9,20,5,0,28.400000000000002,1.29,0.14,0.6,142,869,1010,6,23.8,405,30,0,435,0.265,76.22,2.89,0.15,991,5.9,136,1.2000000000000002 +2020,9,20,6,0,28.5,1.11,0.2169,0.6,178,811,966,7,23.8,497,118,0,612,0.265,75.59,13.51,0.15,990,5.9,144,1.2000000000000002 +2020,9,20,7,0,28.6,1.11,0.2187,0.6,171,781,858,7,23.8,397,53,0,443,0.266,75.44,28.39,0.15,989,5.9,146,1.1 +2020,9,20,8,0,28.5,1.1300000000000001,0.2137,0.6,154,729,684,8,23.900000000000002,326,311,0,553,0.268,76.38,43.34,0.15,989,5.9,139,1 +2020,9,20,9,0,28.3,1.16,0.2139,0.6,131,626,459,8,24.200000000000003,226,220,0,342,0.268,78.36,58.31,0.15,989,5.9,111,0.8 +2020,9,20,10,0,27.5,1.19,0.20980000000000001,0.6,90,430,214,6,23.900000000000002,32,0,0,32,0.269,80.9,73.26,0.15,990,5.9,74,0.7000000000000001 +2020,9,20,11,0,26.6,1.23,0.197,0.6,13,40,15,6,24.1,5,0,3,5,0.27,85.96000000000001,88.01,0.15,990,5.9,54,0.6000000000000001 +2020,9,20,12,0,26,1.25,0.19210000000000002,0.6,0,0,0,6,23.900000000000002,0,0,0,0,0.271,88.29,103.27,0.15,991,5.9,46,0.6000000000000001 +2020,9,20,13,0,25.5,1.26,0.19010000000000002,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.272,90.71000000000001,118.24000000000001,0.15,992,5.9,41,0.7000000000000001 +2020,9,20,14,0,25,1.28,0.1842,0.6,0,0,0,6,23.8,0,0,0,0,0.271,92.97,133.19,0.15,992,6,38,0.8 +2020,9,20,15,0,24.700000000000003,1.29,0.1726,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.271,94.06,148.11,0.15,992,6,35,0.8 +2020,9,20,16,0,24.400000000000002,1.32,0.1573,0.6,0,0,0,8,23.6,0,0,0,0,0.271,95.19,162.89000000000001,0.15,992,5.9,33,0.9 +2020,9,20,17,0,24.200000000000003,1.34,0.1394,0.6,0,0,0,8,23.5,0,0,0,0,0.271,95.66,175.69,0.15,991,5.9,34,0.9 +2020,9,20,18,0,24,1.37,0.1227,0.6,0,0,0,4,23.3,0,0,0,0,0.271,95.97,166.07,0.15,990,5.800000000000001,41,0.8 +2020,9,20,19,0,23.900000000000002,1.3800000000000001,0.11230000000000001,0.6,0,0,0,4,23.200000000000003,0,0,0,0,0.271,95.86,151.38,0.15,990,5.800000000000001,53,0.7000000000000001 +2020,9,20,20,0,23.8,1.3900000000000001,0.10450000000000001,0.6,0,0,0,4,23.1,0,0,0,0,0.271,95.89,136.48,0.15,990,5.7,64,0.7000000000000001 +2020,9,20,21,0,23.700000000000003,1.4000000000000001,0.09720000000000001,0.6,0,0,0,8,23,0,0,0,0,0.27,95.87,121.53,0.15,990,5.6000000000000005,73,0.6000000000000001 +2020,9,20,22,0,23.8,1.41,0.0922,0.6,0,0,0,8,22.900000000000002,0,0,0,0,0.27,94.72,106.56,0.15,990,5.6000000000000005,82,0.6000000000000001 +2020,9,20,23,0,24.200000000000003,1.42,0.0892,0.6,0,0,0,4,23.200000000000003,0,0,0,0,0.269,94.24,91.59,0.15,991,5.5,92,0.6000000000000001 +2020,9,21,0,0,25.6,1.44,0.0858,0.6,55,512,174,4,23.900000000000002,73,0,3,73,0.269,90.29,76.54,0.15,992,5.5,92,0.7000000000000001 +2020,9,21,1,0,27.6,1.44,0.0857,0.6,82,723,426,4,23.8,190,47,0,213,0.269,79.63,61.6,0.15,992,5.5,87,1 +2020,9,21,2,0,28.700000000000003,1.42,0.0893,0.6,99,818,660,3,23.3,280,395,0,551,0.27,72.59,46.64,0.15,992,5.5,94,1 +2020,9,21,3,0,29.6,1.24,0.11710000000000001,0.6,123,848,844,7,23.3,425,191,0,587,0.269,68.9,31.69,0.15,992,5.5,97,0.8 +2020,9,21,4,0,30,1.21,0.1268,0.6,134,869,967,8,23.3,471,303,0,762,0.268,67.54,16.81,0.15,992,5.5,80,0.6000000000000001 +2020,9,21,5,0,30.200000000000003,1.18,0.13870000000000002,0.6,143,871,1013,3,23.400000000000002,512,111,0,624,0.267,67.07000000000001,3.17,0.15,991,5.6000000000000005,43,0.6000000000000001 +2020,9,21,6,0,30.200000000000003,1.17,0.1353,0.6,140,866,981,3,23.5,499,122,0,617,0.266,67.37,13.67,0.15,990,5.7,356,0.7000000000000001 +2020,9,21,7,0,29.8,1.17,0.1497,0.6,140,830,869,7,23.6,189,8,0,196,0.265,69.52,28.52,0.15,989,5.800000000000001,304,0.7000000000000001 +2020,9,21,8,0,29.200000000000003,1.17,0.156,0.6,131,774,693,6,24.200000000000003,234,13,0,244,0.264,74.64,43.46,0.15,989,5.800000000000001,216,0.9 +2020,9,21,9,0,28.400000000000002,1.2,0.1912,0.6,123,646,462,7,24.400000000000002,186,16,1,195,0.262,78.75,58.42,0.15,989,5.9,188,0.9 +2020,9,21,10,0,27.400000000000002,1.2,0.2024,0.6,88,436,213,8,24.3,88,436,5,213,0.262,83.01,73.37,0.15,990,5.9,149,0.9 +2020,9,21,11,0,26.400000000000002,1.19,0.1923,0.6,13,37,14,7,24.900000000000002,13,37,5,14,0.263,91.49,88.11,0.15,991,6,147,0.8 +2020,9,21,12,0,25.900000000000002,1.19,0.2038,0.6,0,0,0,6,24.8,0,0,0,0,0.263,93.82000000000001,103.38,0.15,991,6,145,0.9 +2020,9,21,13,0,25.5,1.18,0.1981,0.6,0,0,0,6,24.700000000000003,0,0,0,0,0.264,95.2,118.35000000000001,0.15,992,6,143,1 +2020,9,21,14,0,25.200000000000003,1.17,0.1826,0.6,0,0,0,6,24.5,0,0,0,0,0.264,96.10000000000001,133.32,0.15,992,6,143,1 +2020,9,21,15,0,25,1.16,0.1908,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.264,96.72,148.25,0.15,993,6,142,1 +2020,9,21,16,0,24.8,1.16,0.1859,0.6,0,0,0,7,24.3,0,0,0,0,0.264,97.26,163.06,0.15,993,6,141,1 +2020,9,21,17,0,24.5,1.1400000000000001,0.1688,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.264,98.2,176.09,0.15,992,5.9,143,0.9 +2020,9,21,18,0,24.400000000000002,1.1400000000000001,0.1708,0.6,0,0,0,8,24,0,0,0,0,0.264,97.91,166.09,0.15,991,5.9,151,0.9 +2020,9,21,19,0,24.200000000000003,1.1300000000000001,0.16820000000000002,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.263,98.19,151.34,0.15,990,5.9,170,0.9 +2020,9,21,20,0,24.1,1.1300000000000001,0.15760000000000002,0.6,0,0,0,4,23.8,0,0,0,0,0.263,98.15,136.43,0.15,990,5.9,181,0.9 +2020,9,21,21,0,24,1.1500000000000001,0.16440000000000002,0.6,0,0,0,4,23.700000000000003,0,0,0,0,0.264,98.05,121.47,0.15,990,5.800000000000001,184,0.9 +2020,9,21,22,0,23.8,1.17,0.1653,0.6,0,0,0,8,23.5,0,0,0,0,0.264,98.49000000000001,106.5,0.15,991,5.800000000000001,190,0.9 +2020,9,21,23,0,24.200000000000003,1.19,0.1559,0.6,0,0,0,4,23.8,0,0,0,0,0.263,97.35000000000001,91.52,0.15,991,5.7,194,1 +2020,9,22,0,0,25.3,1.22,0.157,0.6,69,419,167,8,24.3,86,52,3,98,0.264,94.08,76.48,0.15,992,5.7,182,1.6 +2020,9,22,1,0,26.6,1.23,0.1574,0.6,107,648,415,0,24.3,107,648,0,415,0.264,87.27,61.54,0.15,992,5.7,163,1.2000000000000002 +2020,9,22,2,0,28,1.25,0.1562,0.6,127,760,650,0,24.200000000000003,127,760,0,650,0.264,79.77,46.58,0.15,992,5.7,113,0.8 +2020,9,22,3,0,29.200000000000003,1.26,0.1432,0.6,135,828,840,0,24.1,135,828,0,840,0.264,74.21000000000001,31.64,0.15,992,5.7,323,0.7000000000000001 +2020,9,22,4,0,29.900000000000002,1.27,0.1466,0.6,143,856,962,1,24.200000000000003,143,856,0,962,0.264,71.39,16.79,0.15,991,5.800000000000001,302,1 +2020,9,22,5,0,30.200000000000003,1.28,0.1516,0.6,148,863,1010,3,24.3,519,220,0,738,0.264,70.71000000000001,3.47,0.15,990,5.800000000000001,295,1.3 +2020,9,22,6,0,30.200000000000003,1.25,0.1335,0.6,138,867,980,8,24.400000000000002,429,42,0,470,0.263,71.02,13.84,0.15,989,5.9,289,1.4000000000000001 +2020,9,22,7,0,29.700000000000003,1.25,0.1464,0.6,138,833,869,8,24.400000000000002,441,136,0,560,0.263,73.24,28.650000000000002,0.15,989,6,278,1.4000000000000001 +2020,9,22,8,0,29,1.25,0.15130000000000002,0.6,128,777,692,7,24.700000000000003,233,13,0,242,0.263,77.87,43.58,0.15,989,6,257,1.3 +2020,9,22,9,0,28.3,1.28,0.1865,0.6,121,650,460,3,24.900000000000002,183,439,0,412,0.263,81.7,58.53,0.15,989,6.1000000000000005,246,1.2000000000000002 +2020,9,22,10,0,27.6,1.3,0.20140000000000002,0.6,87,439,212,3,24.8,110,115,0,143,0.264,84.5,73.48,0.15,989,6.1000000000000005,235,1 +2020,9,22,11,0,26.700000000000003,1.3,0.197,0.6,12,37,13,6,25.1,9,0,3,9,0.265,90.91,88.22,0.15,990,6.2,208,0.6000000000000001 +2020,9,22,12,0,26.3,1.3,0.22080000000000002,0.6,0,0,0,9,25,0,0,0,0,0.265,92.33,103.49000000000001,0.15,990,6.2,174,0.6000000000000001 +2020,9,22,13,0,26,1.29,0.2353,0.6,0,0,0,9,24.8,0,0,0,0,0.265,93.34,118.47,0.15,991,6.300000000000001,154,0.7000000000000001 +2020,9,22,14,0,25.700000000000003,1.28,0.2325,0.6,0,0,0,6,24.700000000000003,0,0,0,0,0.265,94.44,133.43,0.15,992,6.300000000000001,140,0.8 +2020,9,22,15,0,25.5,1.27,0.2429,0.6,0,0,0,9,24.6,0,0,0,0,0.265,95.03,148.38,0.15,992,6.4,131,1 +2020,9,22,16,0,25.3,1.27,0.2223,0.6,0,0,0,7,24.6,0,0,0,0,0.265,95.81,163.23,0.15,991,6.4,126,1 +2020,9,22,17,0,25.200000000000003,1.26,0.18560000000000001,0.6,0,0,0,7,24.6,0,0,0,0,0.264,96.2,176.48,0.15,990,6.4,117,1 +2020,9,22,18,0,25,1.28,0.1819,0.6,0,0,0,7,24.5,0,0,0,0,0.264,97.24000000000001,166.1,0.15,990,6.4,107,0.7000000000000001 +2020,9,22,19,0,25,1.28,0.1716,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.264,96.53,151.3,0.15,989,6.5,86,0.5 +2020,9,22,20,0,24.900000000000002,1.28,0.16190000000000002,0.6,0,0,0,8,24.3,0,0,0,0,0.264,96.46000000000001,136.37,0.15,989,6.5,54,0.4 +2020,9,22,21,0,24.8,1.29,0.1699,0.6,0,0,0,4,24.200000000000003,0,0,0,0,0.263,96.37,121.41,0.15,990,6.4,29,0.5 +2020,9,22,22,0,24.700000000000003,1.29,0.1786,0.6,0,0,0,7,24.1,0,0,0,0,0.263,96.37,106.43,0.15,990,6.4,344,0.5 +2020,9,22,23,0,24.6,1.29,0.1849,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.262,97.72,91.46000000000001,0.15,991,6.4,276,0.8 +2020,9,23,0,0,25.1,1.3,0.215,0.6,78,365,163,7,24.5,82,245,3,139,0.261,96.60000000000001,76.41,0.15,992,6.300000000000001,256,1.3 +2020,9,23,1,0,25.5,1.3,0.2175,0.6,124,595,408,8,24.6,160,448,0,374,0.261,94.8,61.480000000000004,0.15,993,6.300000000000001,248,1.6 +2020,9,23,2,0,26,1.31,0.1962,0.6,142,728,643,0,24.6,142,728,0,643,0.261,91.92,46.53,0.15,993,6.300000000000001,252,1.9000000000000001 +2020,9,23,3,0,26.400000000000002,1.24,0.1583,0.6,142,815,836,3,24.400000000000002,396,331,3,679,0.262,88.89,31.6,0.15,993,6.300000000000001,258,2.1 +2020,9,23,4,0,26.700000000000003,1.28,0.1617,0.6,151,844,959,3,24.200000000000003,480,97,0,572,0.262,86.18,16.78,0.15,992,6.2,260,2.2 +2020,9,23,5,0,27,1.31,0.1484,0.6,147,864,1009,4,24,414,32,0,445,0.262,83.87,3.79,0.15,991,6.1000000000000005,262,2.1 +2020,9,23,6,0,27.200000000000003,1.34,0.1529,0.6,147,854,976,4,24,499,128,0,623,0.262,82.65,14.02,0.15,991,6.1000000000000005,263,2.1 +2020,9,23,7,0,27.200000000000003,1.3800000000000001,0.1535,0.6,141,829,867,4,23.900000000000002,368,36,0,400,0.263,82.23,28.78,0.15,990,6,263,1.9000000000000001 +2020,9,23,8,0,27.1,1.4000000000000001,0.1457,0.6,125,784,692,9,23.900000000000002,142,0,0,142,0.262,82.60000000000001,43.7,0.15,990,6,260,1.7000000000000002 +2020,9,23,9,0,26.8,1.41,0.1467,0.6,107,688,465,9,24,26,0,0,26,0.262,84.66,58.64,0.15,990,5.9,256,1.4000000000000001 +2020,9,23,10,0,26.3,1.42,0.1419,0.6,75,502,216,6,24,109,77,0,130,0.262,87.38,73.59,0.15,990,5.9,253,0.9 +2020,9,23,11,0,25.5,1.44,0.13390000000000002,0.6,12,64,14,9,23.8,8,0,3,8,0.262,90.59,88.32000000000001,0.15,991,5.800000000000001,250,0.6000000000000001 +2020,9,23,12,0,25.400000000000002,1.45,0.12840000000000001,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.263,88.71000000000001,103.60000000000001,0.15,991,5.800000000000001,245,0.5 +2020,9,23,13,0,25.400000000000002,1.46,0.1245,0.6,0,0,0,6,23.1,0,0,0,0,0.263,87.05,118.58,0.15,992,5.7,234,0.4 +2020,9,23,14,0,25.3,1.46,0.1222,0.6,0,0,0,6,22.8,0,0,0,0,0.264,86.19,133.55,0.15,992,5.7,224,0.5 +2020,9,23,15,0,25.200000000000003,1.45,0.12190000000000001,0.6,0,0,0,6,22.700000000000003,0,0,0,0,0.265,86.05,148.5,0.15,993,5.7,227,0.5 +2020,9,23,16,0,25,1.44,0.12010000000000001,0.6,0,0,0,8,22.6,0,0,0,0,0.266,86.39,163.38,0.15,992,5.6000000000000005,241,0.5 +2020,9,23,17,0,24.700000000000003,1.43,0.1168,0.6,0,0,0,7,22.5,0,0,0,0,0.266,87.54,176.87,0.15,992,5.6000000000000005,248,0.5 +2020,9,23,18,0,24.5,1.42,0.1145,0.6,0,0,0,4,22.5,0,0,0,0,0.266,88.42,166.1,0.15,991,5.6000000000000005,249,0.6000000000000001 +2020,9,23,19,0,24.200000000000003,1.41,0.11230000000000001,0.6,0,0,0,8,22.400000000000002,0,0,0,0,0.266,89.92,151.26,0.15,991,5.6000000000000005,250,0.6000000000000001 +2020,9,23,20,0,24,1.41,0.11,0.6,0,0,0,4,22.400000000000002,0,0,0,0,0.265,90.94,136.31,0.15,991,5.5,253,0.7000000000000001 +2020,9,23,21,0,23.700000000000003,1.41,0.1085,0.6,0,0,0,4,22.400000000000002,0,0,0,0,0.265,92.67,121.34,0.15,991,5.5,250,0.8 +2020,9,23,22,0,23.6,1.4000000000000001,0.10880000000000001,0.6,0,0,0,7,22.5,0,0,0,0,0.265,93.58,106.37,0.15,992,5.5,243,1 +2020,9,23,23,0,23.8,1.3800000000000001,0.1121,0.6,0,0,0,8,22.900000000000002,0,0,0,0,0.265,94.57000000000001,91.39,0.15,992,5.5,234,1.2000000000000002 +2020,9,24,0,0,24.8,1.35,0.1218,0.6,63,468,173,8,23.6,76,322,3,152,0.265,93.22,76.35000000000001,0.15,993,5.5,227,1.8 +2020,9,24,1,0,25.700000000000003,1.32,0.1318,0.6,98,678,423,7,24.1,183,31,0,197,0.265,90.94,61.410000000000004,0.15,993,5.4,226,2.3000000000000003 +2020,9,24,2,0,26.6,1.3,0.1369,0.6,120,780,657,8,24.200000000000003,325,180,0,449,0.264,86.67,46.47,0.15,993,5.300000000000001,227,2.6 +2020,9,24,3,0,27.5,1.29,0.13340000000000002,0.6,131,840,847,0,24.1,131,840,0,847,0.264,81.75,31.560000000000002,0.15,993,5.2,225,2.4000000000000004 +2020,9,24,4,0,28.200000000000003,1.32,0.1441,0.6,143,863,969,0,23.900000000000002,143,863,0,969,0.263,77.76,16.79,0.15,993,5.1000000000000005,222,2.2 +2020,9,24,5,0,28.700000000000003,1.35,0.1572,0.6,151,866,1015,0,23.8,151,866,0,1015,0.262,74.8,4.12,0.15,992,5,221,1.9000000000000001 +2020,9,24,6,0,28.900000000000002,1.37,0.1784,0.6,159,846,979,3,23.6,497,239,0,728,0.262,73.06,14.21,0.15,991,5,218,1.6 +2020,9,24,7,0,29,1.3900000000000001,0.19110000000000002,0.6,157,810,866,3,23.400000000000002,434,244,0,648,0.261,71.73,28.92,0.15,991,5,210,1.3 +2020,9,24,8,0,28.900000000000002,1.42,0.19770000000000001,0.6,146,751,688,7,23.5,332,277,0,531,0.26,72.51,43.82,0.15,990,5,193,1.1 +2020,9,24,9,0,28.6,1.44,0.1976,0.6,123,649,460,7,23.700000000000003,199,364,0,388,0.26,75.06,58.76,0.15,990,5,165,1 +2020,9,24,10,0,27.400000000000002,1.45,0.19690000000000002,0.6,85,449,211,3,23.900000000000002,93,327,0,185,0.26,81.49,73.7,0.15,991,5.1000000000000005,144,1 +2020,9,24,11,0,26.200000000000003,1.46,0.1927,0.6,11,40,12,8,24,10,0,3,10,0.261,87.53,88.42,0.15,991,5.1000000000000005,125,0.8 +2020,9,24,12,0,25.8,1.46,0.1841,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.262,88.42,103.71000000000001,0.15,992,5.1000000000000005,110,0.9 +2020,9,24,13,0,25.5,1.45,0.17450000000000002,0.6,0,0,0,6,23.5,0,0,0,0,0.263,88.87,118.69,0.15,992,5,85,0.8 +2020,9,24,14,0,25.200000000000003,1.45,0.1655,0.6,0,0,0,7,23.3,0,0,0,0,0.264,89.24,133.66,0.15,993,5,54,0.7000000000000001 +2020,9,24,15,0,24.8,1.43,0.1615,0.6,0,0,0,7,23.1,0,0,0,0,0.265,90.4,148.63,0.15,993,5,31,0.7000000000000001 +2020,9,24,16,0,24.5,1.41,0.15910000000000002,0.6,0,0,0,7,23,0,0,0,0,0.266,91.28,163.53,0.15,993,4.9,22,0.7000000000000001 +2020,9,24,17,0,24.200000000000003,1.41,0.1562,0.6,0,0,0,8,22.900000000000002,0,0,0,0,0.267,92.25,177.25,0.15,992,4.9,22,0.7000000000000001 +2020,9,24,18,0,23.900000000000002,1.42,0.1539,0.6,0,0,0,8,22.700000000000003,0,0,0,0,0.267,93.11,166.09,0.15,992,4.800000000000001,24,0.7000000000000001 +2020,9,24,19,0,23.700000000000003,1.43,0.1553,0.6,0,0,0,4,22.6,0,0,0,0,0.266,93.34,151.21,0.15,991,4.7,25,0.7000000000000001 +2020,9,24,20,0,23.5,1.43,0.1588,0.6,0,0,0,0,22.400000000000002,0,0,0,0,0.266,93.62,136.25,0.15,991,4.7,26,0.7000000000000001 +2020,9,24,21,0,23.400000000000002,1.45,0.1595,0.6,0,0,0,8,22.3,0,0,0,0,0.266,93.62,121.28,0.15,991,4.800000000000001,26,0.7000000000000001 +2020,9,24,22,0,23.3,1.45,0.15940000000000001,0.6,0,0,0,4,22.3,0,0,0,0,0.266,93.84,106.3,0.15,992,4.9,24,0.7000000000000001 +2020,9,24,23,0,23.700000000000003,1.45,0.1622,0.6,0,0,0,8,22.6,0,0,0,0,0.265,93.69,91.33,0.15,992,5,21,0.7000000000000001 +2020,9,25,0,0,25.6,1.45,0.1652,0.6,70,427,171,8,23.6,8,0,3,8,0.265,88.9,76.29,0.15,993,5.1000000000000005,27,0.7000000000000001 +2020,9,25,1,0,27.6,1.45,0.16670000000000001,0.6,108,650,419,3,23.200000000000003,33,0,3,33,0.266,77.12,61.36,0.15,993,5.2,155,0.6000000000000001 +2020,9,25,2,0,28.700000000000003,1.46,0.16770000000000002,0.6,130,758,653,3,22.900000000000002,317,253,3,491,0.266,70.99,46.42,0.15,993,5.300000000000001,155,1 +2020,9,25,3,0,29.400000000000002,1.46,0.1693,0.6,144,816,840,8,23.1,59,0,0,59,0.265,69.09,31.53,0.15,993,5.300000000000001,158,1.1 +2020,9,25,4,0,29.8,1.48,0.17450000000000002,0.6,154,843,961,8,23.400000000000002,178,7,0,185,0.265,68.42,16.8,0.15,992,5.4,166,1.2000000000000002 +2020,9,25,5,0,30,1.48,0.183,0.6,161,848,1006,7,23.5,518,129,0,646,0.265,68.2,4.47,0.15,992,5.5,175,1.3 +2020,9,25,6,0,29.8,1.42,0.23620000000000002,0.6,184,807,965,0,23.6,184,807,0,965,0.265,69.26,14.4,0.15,991,5.5,184,1.4000000000000001 +2020,9,25,7,0,29.5,1.42,0.25730000000000003,0.6,183,764,851,7,23.6,315,21,0,333,0.265,70.81,29.060000000000002,0.15,990,5.6000000000000005,190,1.5 +2020,9,25,8,0,28.900000000000002,1.43,0.2671,0.6,170,698,673,4,24,192,6,0,197,0.264,74.81,43.94,0.15,990,5.7,197,1.4000000000000001 +2020,9,25,9,0,28.3,1.42,0.3084,0.6,154,560,443,8,24.5,171,8,0,175,0.264,79.79,58.88,0.15,990,5.7,203,1.2000000000000002 +2020,9,25,10,0,27.200000000000003,1.42,0.32630000000000003,0.6,103,342,199,7,24.3,9,0,0,9,0.264,83.98,73.81,0.15,990,5.800000000000001,205,1.1 +2020,9,25,11,0,26.1,1.44,0.3146,0.6,8,17,9,9,24.8,2,0,3,2,0.265,92.41,88.52,0.15,991,5.800000000000001,215,0.7000000000000001 +2020,9,25,12,0,25.6,1.45,0.30660000000000004,0.6,0,0,0,6,24.6,0,0,0,0,0.265,94.45,103.82000000000001,0.15,992,5.800000000000001,222,0.6000000000000001 +2020,9,25,13,0,25.3,1.46,0.2927,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.265,94.86,118.8,0.15,993,5.7,223,0.6000000000000001 +2020,9,25,14,0,24.900000000000002,1.47,0.2727,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.265,95.77,133.78,0.15,993,5.7,225,0.7000000000000001 +2020,9,25,15,0,24.700000000000003,1.47,0.2586,0.6,0,0,0,6,24.1,0,0,0,0,0.265,96.18,148.74,0.15,993,5.6000000000000005,231,0.7000000000000001 +2020,9,25,16,0,24.400000000000002,1.45,0.2536,0.6,0,0,0,4,23.900000000000002,0,0,0,0,0.265,97.26,163.67000000000002,0.15,993,5.6000000000000005,241,0.7000000000000001 +2020,9,25,17,0,24.3,1.43,0.25270000000000004,0.6,0,0,0,7,23.8,0,0,0,0,0.265,97.13,177.63,0.15,992,5.6000000000000005,258,0.7000000000000001 +2020,9,25,18,0,24.1,1.41,0.2559,0.6,0,0,0,6,23.700000000000003,0,0,0,0,0.265,97.76,166.07,0.15,992,5.6000000000000005,274,0.7000000000000001 +2020,9,25,19,0,24,1.4000000000000001,0.249,0.6,0,0,0,7,23.6,0,0,0,0,0.265,97.83,151.16,0.15,992,5.7,279,0.8 +2020,9,25,20,0,23.8,1.3900000000000001,0.2338,0.6,0,0,0,8,23.5,0,0,0,0,0.264,98.45,136.19,0.15,991,5.6000000000000005,278,0.8 +2020,9,25,21,0,23.700000000000003,1.3900000000000001,0.23500000000000001,0.6,0,0,0,8,23.5,0,0,0,0,0.264,98.53,121.22,0.15,991,5.6000000000000005,278,0.9 +2020,9,25,22,0,23.700000000000003,1.3900000000000001,0.22990000000000002,0.6,0,0,0,8,23.400000000000002,0,0,0,0,0.265,98.11,106.24000000000001,0.15,992,5.7,278,0.9 +2020,9,25,23,0,23.900000000000002,1.3900000000000001,0.2109,0.6,0,0,0,8,23.6,0,0,0,0,0.265,98.11,91.26,0.15,992,5.7,278,0.9 +2020,9,26,0,0,25,1.3900000000000001,0.1995,0.6,76,389,169,0,24.200000000000003,76,389,0,169,0.265,95.52,76.23,0.15,993,5.7,278,1.5 +2020,9,26,1,0,25.900000000000002,1.3800000000000001,0.18710000000000002,0.6,114,628,415,0,24.3,114,628,0,415,0.266,90.84,61.300000000000004,0.15,993,5.800000000000001,277,1.6 +2020,9,26,2,0,26.5,1.36,0.1814,0.6,136,744,649,0,24,136,744,0,649,0.267,86.09,46.37,0.15,993,5.800000000000001,272,1.6 +2020,9,26,3,0,26.900000000000002,1.34,0.3069,0.6,201,723,818,0,23.900000000000002,201,723,0,818,0.266,83.78,31.5,0.15,993,5.9,267,1.6 +2020,9,26,4,0,27.200000000000003,1.32,0.30110000000000003,0.6,211,762,940,3,23.8,492,222,0,704,0.265,81.85000000000001,16.82,0.15,993,5.9,266,1.7000000000000002 +2020,9,26,5,0,27.1,1.31,0.2816,0.6,206,785,989,6,23.700000000000003,515,241,0,755,0.264,81.5,4.82,0.15,992,5.9,264,1.8 +2020,9,26,6,0,26.8,1.32,0.2712,0.6,199,783,957,6,23.6,502,148,0,645,0.262,82.55,14.6,0.15,991,5.9,263,1.9000000000000001 +2020,9,26,7,0,26.3,1.33,0.2566,0.6,184,761,849,7,23.6,432,109,0,528,0.261,84.87,29.21,0.15,991,5.9,263,1.8 +2020,9,26,8,0,25.8,1.34,0.23850000000000002,0.6,159,714,673,6,23.6,182,5,0,186,0.261,87.58,44.07,0.15,991,5.9,260,1.8 +2020,9,26,9,0,25.200000000000003,1.35,0.2227,0.6,129,620,449,6,23.700000000000003,67,0,0,67,0.26,91.34,58.99,0.15,991,5.800000000000001,252,1.4000000000000001 +2020,9,26,10,0,24.8,1.36,0.2079,0.6,86,429,205,6,23.700000000000003,10,0,0,10,0.26,93.53,73.92,0.15,991,5.800000000000001,243,0.9 +2020,9,26,11,0,24.3,1.3800000000000001,0.1912,0.6,10,32,10,6,23.6,2,0,3,2,0.261,95.76,88.61,0.15,992,5.800000000000001,231,0.5 +2020,9,26,12,0,24.1,1.3900000000000001,0.1752,0.6,0,0,0,6,23.400000000000002,0,0,0,0,0.262,95.59,103.92,0.15,993,5.800000000000001,214,0.4 +2020,9,26,13,0,24,1.3900000000000001,0.1625,0.6,0,0,0,6,23.200000000000003,0,0,0,0,0.263,95.02,118.9,0.15,993,5.800000000000001,202,0.4 +2020,9,26,14,0,23.900000000000002,1.4000000000000001,0.14930000000000002,0.6,0,0,0,7,23,0,0,0,0,0.264,94.53,133.88,0.15,994,5.7,200,0.5 +2020,9,26,15,0,23.700000000000003,1.42,0.1363,0.6,0,0,0,6,22.8,0,0,0,0,0.265,94.43,148.86,0.15,994,5.7,204,0.6000000000000001 +2020,9,26,16,0,23.400000000000002,1.44,0.1257,0.6,0,0,0,7,22.5,0,0,0,0,0.265,94.9,163.8,0.15,994,5.7,213,0.6000000000000001 +2020,9,26,17,0,23.200000000000003,1.45,0.1174,0.6,0,0,0,7,22.3,0,0,0,0,0.265,94.9,178.01,0.15,993,5.6000000000000005,221,0.6000000000000001 +2020,9,26,18,0,22.900000000000002,1.45,0.11570000000000001,0.6,0,0,0,7,22.200000000000003,0,0,0,0,0.265,95.64,166.04,0.15,992,5.5,228,0.7000000000000001 +2020,9,26,19,0,22.8,1.44,0.1169,0.6,0,0,0,7,22.1,0,0,0,0,0.264,95.57000000000001,151.1,0.15,991,5.5,231,0.8 +2020,9,26,20,0,22.6,1.44,0.11850000000000001,0.6,0,0,0,7,22,0,0,0,0,0.264,96.52,136.13,0.15,991,5.5,231,0.9 +2020,9,26,21,0,22.6,1.43,0.124,0.6,0,0,0,7,22,0,0,0,0,0.263,96.5,121.15,0.15,991,5.4,228,0.9 +2020,9,26,22,0,22.6,1.43,0.12490000000000001,0.6,0,0,0,8,22,0,0,0,0,0.264,96.59,106.17,0.15,991,5.4,225,0.9 +2020,9,26,23,0,22.900000000000002,1.44,0.1202,0.6,0,0,0,8,22.400000000000002,0,0,0,0,0.265,96.75,91.2,0.15,992,5.4,225,1 +2020,9,27,0,0,24.1,1.44,0.127,0.6,64,470,176,7,23.1,90,67,3,106,0.266,94.27,76.17,0.15,992,5.300000000000001,226,1.6 +2020,9,27,1,0,25.200000000000003,1.45,0.1278,0.6,96,687,427,6,23.5,173,18,0,182,0.267,90.06,61.25,0.15,993,5.300000000000001,229,1.9000000000000001 +2020,9,27,2,0,26.3,1.46,0.1199,0.6,112,798,663,7,23.5,319,96,0,386,0.267,84.5,46.33,0.15,993,5.300000000000001,231,1.9000000000000001 +2020,9,27,3,0,27.3,1.48,0.1148,0.6,121,856,851,7,23.5,385,370,0,701,0.267,79.88,31.470000000000002,0.15,993,5.300000000000001,238,1.8 +2020,9,27,4,0,28.1,1.48,0.1153,0.6,127,884,973,7,23.6,477,289,0,754,0.267,76.44,16.85,0.15,992,5.300000000000001,245,1.7000000000000002 +2020,9,27,5,0,28.400000000000002,1.48,0.1189,0.6,131,890,1018,7,23.6,502,310,0,812,0.266,75.10000000000001,5.18,0.15,991,5.4,251,1.7000000000000002 +2020,9,27,6,0,28.5,1.47,0.1263,0.6,133,878,982,7,23.5,477,323,0,789,0.266,74.31,14.81,0.15,991,5.4,254,1.6 +2020,9,27,7,0,28.3,1.47,0.1313,0.6,129,849,870,8,23.400000000000002,441,170,0,589,0.266,74.64,29.35,0.15,990,5.4,253,1.5 +2020,9,27,8,0,28,1.48,0.1302,0.6,118,799,691,7,23.400000000000002,333,261,0,520,0.266,76.17,44.2,0.15,990,5.4,248,1.5 +2020,9,27,9,0,27.5,1.49,0.1263,0.6,99,709,463,7,23.8,222,212,0,331,0.266,80.12,59.11,0.15,990,5.300000000000001,238,1.3 +2020,9,27,10,0,26.700000000000003,1.5,0.12140000000000001,0.6,69,523,212,7,23.8,106,117,0,138,0.266,84.13,74.03,0.15,990,5.300000000000001,227,1.1 +2020,9,27,11,0,25.400000000000002,1.51,0.1143,0.6,10,64,11,7,23.8,6,0,3,6,0.267,90.97,88.71000000000001,0.15,991,5.2,214,0.9 +2020,9,27,12,0,25,1.51,0.10740000000000001,0.6,0,0,0,7,23.5,0,0,0,0,0.267,91.14,104.03,0.15,991,5.1000000000000005,209,0.9 +2020,9,27,13,0,24.6,1.51,0.10160000000000001,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.267,92.14,119.01,0.15,992,5,206,0.9 +2020,9,27,14,0,24.3,1.51,0.0976,0.6,0,0,0,7,23,0,0,0,0,0.268,92.53,133.99,0.15,992,4.9,202,0.9 +2020,9,27,15,0,24.1,1.5,0.09670000000000001,0.6,0,0,0,7,22.8,0,0,0,0,0.268,92.62,148.96,0.15,992,4.9,202,0.9 +2020,9,27,16,0,23.8,1.48,0.09870000000000001,0.6,0,0,0,7,22.700000000000003,0,0,0,0,0.269,93.61,163.93,0.15,992,4.9,209,0.8 +2020,9,27,17,0,23.6,1.46,0.10200000000000001,0.6,0,0,0,7,22.6,0,0,0,0,0.27,94.32000000000001,178.37,0.15,992,5,222,0.8 +2020,9,27,18,0,23.400000000000002,1.45,0.10600000000000001,0.6,0,0,0,7,22.6,0,0,0,0,0.27,95.12,165.99,0.15,991,5,235,0.8 +2020,9,27,19,0,23.200000000000003,1.43,0.11,0.6,0,0,0,7,22.6,0,0,0,0,0.269,96.15,151.04,0.15,990,5.1000000000000005,245,0.7000000000000001 +2020,9,27,20,0,23.1,1.42,0.113,0.6,0,0,0,7,22.6,0,0,0,0,0.268,96.82000000000001,136.06,0.15,990,5.2,249,0.7000000000000001 +2020,9,27,21,0,23.1,1.42,0.1184,0.6,0,0,0,7,22.6,0,0,0,0,0.268,96.95,121.08,0.15,990,5.2,247,0.8 +2020,9,27,22,0,23.1,1.42,0.1207,0.6,0,0,0,7,22.6,0,0,0,0,0.267,97.17,106.11,0.15,991,5.300000000000001,241,0.8 +2020,9,27,23,0,23.5,1.42,0.1189,0.6,0,0,0,7,22.900000000000002,0,0,0,0,0.267,96.42,91.14,0.15,991,5.300000000000001,234,0.8 +2020,9,28,0,0,25,1.42,0.12250000000000001,0.6,64,477,178,7,23.8,68,0,3,68,0.267,92.94,76.11,0.15,992,5.300000000000001,227,1.5 +2020,9,28,1,0,26.200000000000003,1.44,0.1212,0.6,94,694,429,8,24,181,361,0,356,0.268,87.88,61.19,0.15,992,5.4,218,2.1 +2020,9,28,2,0,27.1,1.43,0.12560000000000002,0.6,114,792,661,8,24,288,380,0,551,0.269,83.37,46.29,0.15,993,5.5,215,2.5 +2020,9,28,3,0,27.8,1.52,0.1193,0.6,122,852,849,3,24,413,282,0,653,0.269,80.04,31.45,0.15,992,5.6000000000000005,212,2.7 +2020,9,28,4,0,28.200000000000003,1.46,0.1278,0.6,133,874,969,0,24.1,133,874,0,969,0.268,78.27,16.89,0.15,992,5.6000000000000005,208,2.9000000000000004 +2020,9,28,5,0,28.5,1.41,0.1327,0.6,138,880,1014,0,24,138,880,0,1014,0.267,76.69,5.55,0.15,991,5.6000000000000005,205,2.9000000000000004 +2020,9,28,6,0,28.5,1.04,0.19970000000000002,0.6,172,824,967,0,23.900000000000002,172,824,0,967,0.266,76.05,15.030000000000001,0.15,990,5.6000000000000005,201,2.8000000000000003 +2020,9,28,7,0,28.5,1.08,0.19840000000000002,0.6,163,796,856,8,23.8,378,401,0,728,0.265,75.60000000000001,29.51,0.15,990,5.6000000000000005,197,2.6 +2020,9,28,8,0,28.200000000000003,1.11,0.1953,0.6,147,742,678,7,23.700000000000003,290,418,0,589,0.264,76.43,44.33,0.15,989,5.6000000000000005,192,2.4000000000000004 +2020,9,28,9,0,27.5,1.1400000000000001,0.1915,0.6,123,640,450,8,23.8,126,623,0,445,0.264,80.48,59.230000000000004,0.15,989,5.6000000000000005,187,1.9000000000000001 +2020,9,28,10,0,26.700000000000003,1.17,0.17880000000000001,0.6,82,446,203,7,24,82,446,5,203,0.264,85.35000000000001,74.15,0.15,989,5.6000000000000005,182,1.4000000000000001 +2020,9,28,11,0,25.6,1.18,0.1663,0.6,9,26,10,6,24.1,9,0,3,9,0.264,91.22,88.81,0.15,990,5.5,176,0.9 +2020,9,28,12,0,25.3,1.18,0.1597,0.6,0,0,0,7,23.8,0,0,0,0,0.265,91.34,104.13,0.15,991,5.5,167,0.9 +2020,9,28,13,0,25,1.18,0.15410000000000001,0.6,0,0,0,7,23.6,0,0,0,0,0.265,92.13,119.11,0.15,992,5.5,158,1 +2020,9,28,14,0,24.8,1.17,0.149,0.6,0,0,0,7,23.5,0,0,0,0,0.266,92.44,134.09,0.15,992,5.5,153,1 +2020,9,28,15,0,24.6,1.17,0.1459,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.266,93,149.07,0.15,992,5.5,149,1 +2020,9,28,16,0,24.3,1.17,0.1432,0.6,0,0,0,6,23.3,0,0,0,0,0.267,94.11,164.04,0.15,992,5.6000000000000005,142,1.1 +2020,9,28,17,0,24,1.16,0.1418,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.266,95.38,178.71,0.15,991,5.6000000000000005,138,1.1 +2020,9,28,18,0,23.8,1.1400000000000001,0.1391,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.266,96.49000000000001,165.94,0.15,990,5.6000000000000005,135,1.1 +2020,9,28,19,0,23.700000000000003,1.1300000000000001,0.1336,0.6,0,0,0,3,23.3,0,0,0,0,0.265,97.35000000000001,150.97,0.15,990,5.6000000000000005,135,1.1 +2020,9,28,20,0,23.6,1.12,0.12840000000000001,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.265,97.88,135.99,0.15,989,5.6000000000000005,133,1.1 +2020,9,28,21,0,23.5,1.1,0.1263,0.6,0,0,0,8,23.200000000000003,0,0,0,0,0.265,98.31,121.02,0.15,989,5.5,136,1.1 +2020,9,28,22,0,23.5,1.08,0.127,0.6,0,0,0,3,23.200000000000003,0,0,0,0,0.265,98.15,106.04,0.15,990,5.5,140,1.1 +2020,9,28,23,0,23.8,1.04,0.1316,0.6,0,0,0,8,23.400000000000002,0,0,0,0,0.266,97.55,91.07000000000001,0.15,990,5.4,145,1 +2020,9,29,0,0,25.1,1.02,0.14300000000000002,0.6,70,440,176,0,24.1,70,440,0,176,0.266,94.08,76.05,0.15,991,5.4,158,1.7000000000000002 +2020,9,29,1,0,26.200000000000003,1.01,0.14850000000000002,0.6,106,660,425,0,24.400000000000002,106,660,0,425,0.266,89.81,61.15,0.15,992,5.4,163,2.2 +2020,9,29,2,0,27,1.01,0.14800000000000002,0.6,127,769,658,0,24.400000000000002,127,769,0,658,0.266,85.52,46.25,0.15,993,5.4,168,2.3000000000000003 +2020,9,29,3,0,27.6,1.01,0.15080000000000002,0.6,141,825,845,3,24.3,408,302,0,665,0.266,82.23,31.44,0.15,992,5.4,171,2.4000000000000004 +2020,9,29,4,0,28.200000000000003,1,0.1522,0.6,149,853,965,0,24.3,149,853,0,965,0.265,79.29,16.94,0.15,991,5.5,173,2.3000000000000003 +2020,9,29,5,0,28.400000000000002,1,0.14750000000000002,0.6,149,867,1011,0,24.200000000000003,149,867,0,1011,0.265,78.11,5.92,0.15,990,5.5,174,2.3000000000000003 +2020,9,29,6,0,28.5,0.8200000000000001,0.1991,0.6,174,820,966,7,24.1,479,84,0,560,0.265,77.35000000000001,15.25,0.15,989,5.6000000000000005,177,2.2 +2020,9,29,7,0,28.400000000000002,0.84,0.18760000000000002,0.6,161,799,855,6,24.1,149,2,0,151,0.264,77.57000000000001,29.66,0.15,988,5.7,180,2.1 +2020,9,29,8,0,28.1,0.87,0.1796,0.6,143,748,677,6,24.1,323,72,0,374,0.263,78.95,44.46,0.15,988,5.7,182,2 +2020,9,29,9,0,27.6,0.91,0.1763,0.6,120,647,449,6,24.3,182,16,0,191,0.263,82.49,59.35,0.15,988,5.7,178,1.7000000000000002 +2020,9,29,10,0,26.8,0.9400000000000001,0.1726,0.6,82,440,201,6,24.5,97,19,3,103,0.262,87.35000000000001,74.26,0.15,988,5.7,172,1.3 +2020,9,29,11,0,25.700000000000003,0.96,0.1666,0.6,9,17,9,6,24.6,4,0,3,4,0.263,93.57000000000001,88.9,0.15,989,5.800000000000001,166,0.9 +2020,9,29,12,0,25.3,0.99,0.16590000000000002,0.6,0,0,0,9,24.3,0,0,0,0,0.264,94.4,104.23,0.15,990,5.800000000000001,159,0.9 +2020,9,29,13,0,25,1.02,0.168,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.265,95.15,119.21000000000001,0.15,991,5.800000000000001,150,0.9 +2020,9,29,14,0,24.8,1.03,0.1731,0.6,0,0,0,3,24.1,0,0,0,0,0.266,95.74000000000001,134.18,0.15,991,5.800000000000001,144,0.9 +2020,9,29,15,0,24.6,1.03,0.1786,0.6,0,0,0,3,24,0,0,0,0,0.266,96.45,149.16,0.15,991,5.800000000000001,146,0.9 +2020,9,29,16,0,24.5,1.03,0.18330000000000002,0.6,0,0,0,0,23.900000000000002,0,0,0,0,0.267,96.54,164.14000000000001,0.15,991,5.800000000000001,149,0.9 +2020,9,29,17,0,24.400000000000002,1.03,0.1834,0.6,0,0,0,0,23.8,0,0,0,0,0.267,96.58,179.01,0.15,990,5.800000000000001,151,0.8 +2020,9,29,18,0,24.3,1.04,0.18280000000000002,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.267,96.66,165.88,0.15,989,5.800000000000001,158,0.8 +2020,9,29,19,0,24.200000000000003,1.05,0.18000000000000002,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.267,96.79,150.9,0.15,989,5.800000000000001,158,0.8 +2020,9,29,20,0,24.1,1.06,0.17320000000000002,0.6,0,0,0,3,23.6,0,0,0,0,0.267,96.85000000000001,135.93,0.15,988,5.800000000000001,160,0.8 +2020,9,29,21,0,23.900000000000002,1.09,0.1652,0.6,0,0,0,0,23.5,0,0,0,0,0.266,97.63,120.95,0.15,989,5.7,154,0.9 +2020,9,29,22,0,23.8,1.11,0.16090000000000002,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.266,97.71000000000001,105.98,0.15,989,5.7,145,0.9 +2020,9,29,23,0,24,1.1300000000000001,0.15380000000000002,0.6,0,0,0,3,23.6,0,0,0,0,0.265,97.76,91.01,0.15,990,5.6000000000000005,137,0.9 +2020,9,30,0,0,25.3,1.16,0.1479,0.6,70,441,177,8,24.5,84,256,3,146,0.265,95.13,76,0.15,991,5.5,133,1.4000000000000001 +2020,9,30,1,0,26.3,1.19,0.13820000000000002,0.6,102,674,428,3,24.6,209,163,0,288,0.265,90.4,61.1,0.15,991,5.5,130,1.9000000000000001 +2020,9,30,2,0,27.400000000000002,1.19,0.1327,0.6,119,785,662,2,24.200000000000003,286,390,3,557,0.265,82.77,46.22,0.15,991,5.5,124,2.1 +2020,9,30,3,0,28.3,1.1300000000000001,0.1376,0.6,134,837,848,0,24.1,134,837,0,848,0.264,77.83,31.43,0.15,991,5.4,120,2.1 +2020,9,30,4,0,28.900000000000002,1.1500000000000001,0.1341,0.6,139,868,969,3,24,495,205,0,691,0.264,75.08,17,0.15,990,5.5,121,1.8 +2020,9,30,5,0,29.1,1.17,0.1336,0.6,141,879,1014,3,24,139,1,0,141,0.263,74.07000000000001,6.29,0.15,989,5.5,122,1.6 +2020,9,30,6,0,29.1,0.97,0.1796,0.6,163,837,970,3,24,274,15,0,288,0.263,73.98,15.48,0.15,988,5.5,125,1.4000000000000001 +2020,9,30,7,0,28.900000000000002,0.99,0.1807,0.6,156,807,856,3,24,361,437,0,741,0.263,74.69,29.82,0.15,987,5.6000000000000005,133,1.3 +2020,9,30,8,0,28.5,0.99,0.18000000000000002,0.6,142,750,676,3,24.1,311,55,0,350,0.262,77.26,44.59,0.15,987,5.7,144,1.3 +2020,9,30,9,0,28.1,1.03,0.2101,0.6,130,619,444,3,24.6,218,222,0,331,0.262,81.54,59.46,0.15,987,5.7,155,1.1 +2020,9,30,10,0,27.400000000000002,1.05,0.23070000000000002,0.6,91,386,195,3,24.400000000000002,103,142,3,142,0.262,83.92,74.37,0.15,987,5.7,166,1 +2020,9,30,11,0,26.400000000000002,1.05,0.2356,0.6,0,0,0,0,24.900000000000002,0,0,0,0,0.263,91.38,89,0.15,988,5.800000000000001,181,0.7000000000000001 +2020,9,30,12,0,26.1,1.06,0.24980000000000002,0.6,0,0,0,0,24.700000000000003,0,0,0,0,0.263,92.05,104.33,0.15,989,5.800000000000001,191,0.7000000000000001 +2020,9,30,13,0,25.900000000000002,1.06,0.2601,0.6,0,0,0,0,24.6,0,0,0,0,0.264,92.34,119.3,0.15,990,5.800000000000001,196,0.7000000000000001 +2020,9,30,14,0,25.700000000000003,1.06,0.2631,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.264,92.4,134.28,0.15,990,5.9,193,0.7000000000000001 +2020,9,30,15,0,25.5,1.05,0.2797,0.6,0,0,0,8,24.3,0,0,0,0,0.265,92.9,149.25,0.15,990,5.9,188,0.7000000000000001 +2020,9,30,16,0,25.200000000000003,1.04,0.29760000000000003,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.265,94.26,164.23,0.15,990,5.9,185,0.7000000000000001 +2020,9,30,17,0,25,1.01,0.3048,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.266,95.24,179.21,0.15,990,6,182,0.7000000000000001 +2020,9,30,18,0,24.700000000000003,1.01,0.3306,0.6,0,0,0,4,24.1,0,0,0,0,0.266,96.73,165.81,0.15,989,6,181,0.7000000000000001 +2020,9,30,19,0,24.6,1,0.3295,0.6,0,0,0,4,24.1,0,0,0,0,0.265,97.2,150.83,0.15,988,6.1000000000000005,180,0.7000000000000001 +2020,9,30,20,0,24.6,0.98,0.27790000000000004,0.6,0,0,0,8,24.1,0,0,0,0,0.265,97.27,135.85,0.15,988,6.2,177,0.8 +2020,9,30,21,0,24.6,1.01,0.26980000000000004,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.264,97.35000000000001,120.88,0.15,988,6.300000000000001,174,0.9 +2020,9,30,22,0,24.5,1.02,0.2409,0.6,0,0,0,9,24.1,0,0,0,0,0.264,97.65,105.91,0.15,988,6.300000000000001,180,0.8 +2020,9,30,23,0,24.700000000000003,1.02,0.1942,0.6,0,0,0,8,24.200000000000003,0,0,0,0,0.264,97.21000000000001,90.95,0.15,989,6.300000000000001,194,0.8 +2020,10,1,0,0,25.400000000000002,1.08,0.1922,0.61,78,388,172,3,24.700000000000003,88,26,0,94,0.265,96.06,75.95,0.15,990,6.300000000000001,210,1.2000000000000002 +2020,10,1,1,0,26.1,1.11,0.1618,0.61,108,647,421,3,25,194,46,3,217,0.266,93.68,61.050000000000004,0.15,990,6.2,215,1.5 +2020,10,1,2,0,26.700000000000003,1.1400000000000001,0.1406,0.61,120,774,656,3,25,321,245,0,491,0.267,90.53,46.19,0.15,991,6.2,221,1.6 +2020,10,1,3,0,27.400000000000002,1.12,0.18780000000000002,0.61,156,797,836,8,24.900000000000002,430,164,0,569,0.267,86.44,31.43,0.15,991,6.2,229,1.7000000000000002 +2020,10,1,4,0,27.5,1.1400000000000001,0.21860000000000002,0.61,178,809,951,3,24.900000000000002,343,21,0,363,0.267,85.61,17.07,0.15,990,6.2,236,1.8 +2020,10,1,5,0,27.400000000000002,1.1400000000000001,0.2137,0.61,179,823,996,1,24.8,179,823,0,996,0.267,85.88,6.66,0.15,989,6.2,244,2 +2020,10,1,6,0,27.200000000000003,1.01,0.2766,0.61,206,772,950,3,24.8,501,160,0,655,0.265,86.94,15.71,0.15,988,6.2,251,2.1 +2020,10,1,7,0,26.8,1.01,0.3098,0.61,210,719,833,3,24.900000000000002,221,10,0,230,0.264,89.19,29.98,0.15,988,6.300000000000001,253,2.2 +2020,10,1,8,0,26.5,1,0.26890000000000003,0.61,176,681,660,7,24.900000000000002,292,38,0,318,0.264,91.05,44.72,0.15,988,6.300000000000001,254,2.3000000000000003 +2020,10,1,9,0,26.1,1.04,0.2401,0.61,138,591,437,4,25,138,0,0,138,0.264,93.62,59.58,0.15,988,6.2,256,2 +2020,10,1,10,0,25.700000000000003,1.08,0.1719,0.61,79,442,198,6,25,19,0,3,19,0.264,95.78,74.47,0.15,988,6.2,256,1.4000000000000001 +2020,10,1,11,0,25.200000000000003,1.1300000000000001,0.13520000000000001,0.61,0,0,0,9,24.700000000000003,0,0,3,0,0.265,96.95,89.09,0.15,989,6.1000000000000005,254,1 +2020,10,1,12,0,25,1.18,0.1302,0.61,0,0,0,9,24.5,0,0,0,0,0.265,96.95,104.43,0.15,990,6,249,1 +2020,10,1,13,0,24.8,1.23,0.125,0.61,0,0,0,6,24.3,0,0,0,0,0.266,97.05,119.4,0.15,991,6,241,0.9 +2020,10,1,14,0,24.5,1.28,0.1148,0.61,0,0,0,6,23.900000000000002,0,0,0,0,0.266,96.53,134.37,0.15,991,5.9,236,0.9 +2020,10,1,15,0,24.200000000000003,1.31,0.11040000000000001,0.61,0,0,0,7,23.5,0,0,0,0,0.266,96.14,149.34,0.15,991,5.9,238,0.8 +2020,10,1,16,0,23.900000000000002,1.32,0.10690000000000001,0.61,0,0,0,8,23.3,0,0,0,0,0.266,96.57000000000001,164.31,0.15,991,5.800000000000001,248,0.8 +2020,10,1,17,0,23.700000000000003,1.31,0.10450000000000001,0.61,0,0,0,4,23.200000000000003,0,0,0,0,0.266,96.82000000000001,179.23,0.15,990,5.800000000000001,262,0.8 +2020,10,1,18,0,23.5,1.28,0.1107,0.61,0,0,0,3,23,0,0,0,0,0.265,97.27,165.73,0.15,989,5.800000000000001,271,0.9 +2020,10,1,19,0,23.400000000000002,1.25,0.1135,0.61,0,0,0,3,23,0,0,0,0,0.265,97.52,150.75,0.15,989,5.7,275,0.9 +2020,10,1,20,0,23.3,1.22,0.1102,0.61,0,0,0,8,22.900000000000002,0,0,0,0,0.265,97.8,135.78,0.15,989,5.6000000000000005,274,0.9 +2020,10,1,21,0,23.3,1.19,0.12040000000000001,0.61,0,0,0,0,22.900000000000002,0,0,0,0,0.265,97.35000000000001,120.81,0.15,989,5.5,267,0.9 +2020,10,1,22,0,23.3,1.16,0.1227,0.61,0,0,0,3,22.8,0,0,0,0,0.265,96.9,105.85000000000001,0.15,990,5.4,257,0.8 +2020,10,1,23,0,23.6,1.1400000000000001,0.114,0.61,0,0,0,3,23.1,0,0,0,0,0.264,96.8,90.9,0.15,990,5.4,252,0.8 +2020,10,2,0,0,24.900000000000002,1.1500000000000001,0.1221,0.61,65,475,181,8,24,78,341,3,161,0.264,94.48,75.89,0.15,991,5.4,250,1.3 +2020,10,2,1,0,26.1,1.19,0.11520000000000001,0.61,94,699,433,7,24.3,194,301,0,340,0.264,89.98,61.01,0.15,991,5.5,263,1.5 +2020,10,2,2,0,26.900000000000002,1.21,0.1082,0.61,108,806,667,7,24.1,327,207,0,470,0.264,84.57000000000001,46.160000000000004,0.15,992,5.6000000000000005,274,1.3 +2020,10,2,3,0,27.5,1.24,0.1077,0.61,118,860,852,7,24,426,126,0,533,0.263,81.31,31.43,0.15,992,5.7,285,1.2000000000000002 +2020,10,2,4,0,27.8,1.24,0.1155,0.61,128,882,970,8,24,187,8,0,195,0.262,79.96000000000001,17.150000000000002,0.15,991,5.7,289,1.4000000000000001 +2020,10,2,5,0,27.8,1.24,0.12140000000000001,0.61,133,886,1013,7,24,158,5,0,163,0.261,80.07000000000001,7.04,0.15,990,5.800000000000001,288,1.5 +2020,10,2,6,0,27.700000000000003,1.24,0.12890000000000001,0.61,135,874,975,4,24.1,152,4,0,155,0.26,80.7,15.950000000000001,0.15,990,5.800000000000001,285,1.6 +2020,10,2,7,0,27.5,1.25,0.1333,0.61,131,844,861,7,24.1,324,23,0,344,0.26,81.71000000000001,30.150000000000002,0.15,989,5.800000000000001,281,1.5 +2020,10,2,8,0,27.200000000000003,1.25,0.1338,0.61,120,791,680,7,24.200000000000003,329,260,0,513,0.26,83.47,44.86,0.15,989,5.800000000000001,275,1.4000000000000001 +2020,10,2,9,0,26.8,1.27,0.13570000000000002,0.61,102,691,451,7,24.400000000000002,200,331,0,367,0.26,86.96000000000001,59.7,0.15,989,5.800000000000001,273,1.1 +2020,10,2,10,0,26.3,1.29,0.1358,0.61,71,489,201,7,24.5,102,145,3,140,0.26,89.68,74.58,0.15,990,5.800000000000001,279,0.9 +2020,10,2,11,0,25.5,1.3,0.1317,0.61,0,0,0,7,24.400000000000002,0,0,3,0,0.261,93.42,89.18,0.15,990,5.800000000000001,281,0.6000000000000001 +2020,10,2,12,0,25.3,1.32,0.128,0.61,0,0,0,7,24.1,0,0,0,0,0.261,93.07000000000001,104.53,0.15,991,5.7,283,0.7000000000000001 +2020,10,2,13,0,25.200000000000003,1.33,0.1253,0.61,0,0,0,6,23.900000000000002,0,0,0,0,0.261,92.65,119.49000000000001,0.15,992,5.7,288,0.7000000000000001 +2020,10,2,14,0,25.1,1.34,0.12290000000000001,0.61,0,0,0,6,23.8,0,0,0,0,0.262,92.29,134.45,0.15,992,5.6000000000000005,295,0.7000000000000001 +2020,10,2,15,0,25,1.34,0.124,0.61,0,0,0,6,23.6,0,0,0,0,0.263,91.98,149.42000000000002,0.15,991,5.6000000000000005,301,0.7000000000000001 +2020,10,2,16,0,24.8,1.33,0.13,0.61,0,0,0,6,23.5,0,0,0,0,0.263,92.27,164.39000000000001,0.15,991,5.6000000000000005,290,0.6000000000000001 +2020,10,2,17,0,24.5,1.31,0.1383,0.61,0,0,0,6,23.3,0,0,0,0,0.264,93.26,179.07,0.15,991,5.6000000000000005,265,0.7000000000000001 +2020,10,2,18,0,24.1,1.3,0.1449,0.61,0,0,0,7,23.3,0,0,0,0,0.264,95.03,165.64000000000001,0.15,991,5.6000000000000005,254,0.7000000000000001 +2020,10,2,19,0,23.8,1.3,0.1441,0.61,0,0,0,8,23.1,0,0,0,0,0.264,96.15,150.67000000000002,0.15,990,5.6000000000000005,247,0.7000000000000001 +2020,10,2,20,0,23.700000000000003,1.29,0.1423,0.61,0,0,0,4,23.1,0,0,0,0,0.264,96.26,135.71,0.15,990,5.6000000000000005,246,0.7000000000000001 +2020,10,2,21,0,23.6,1.29,0.14500000000000002,0.61,0,0,0,7,23,0,0,0,0,0.265,96.31,120.74000000000001,0.15,990,5.6000000000000005,243,0.7000000000000001 +2020,10,2,22,0,23.5,1.29,0.1427,0.61,0,0,0,8,22.900000000000002,0,0,0,0,0.265,96.32000000000001,105.79,0.15,991,5.6000000000000005,238,0.7000000000000001 +2020,10,2,23,0,23.8,1.29,0.13670000000000002,0.61,0,0,0,8,23.1,0,0,0,0,0.265,95.78,90.84,0.15,991,5.6000000000000005,232,0.7000000000000001 +2020,10,3,0,0,24.900000000000002,1.29,0.1399,0.61,68,458,180,8,23.8,28,0,0,28,0.266,93.59,75.85000000000001,0.14,992,5.6000000000000005,227,1.4000000000000001 +2020,10,3,1,0,25.6,1.31,0.1315,0.61,99,685,431,8,23.900000000000002,131,0,0,131,0.266,90.15,60.97,0.14,992,5.6000000000000005,226,1.8 +2020,10,3,2,0,26.5,1.32,0.1245,0.61,114,794,664,8,23.700000000000003,329,168,0,446,0.266,84.8,46.14,0.14,993,5.6000000000000005,226,2.1 +2020,10,3,3,0,27.400000000000002,1.1,0.16720000000000002,0.61,147,815,842,4,23.8,419,259,0,640,0.265,80.82000000000001,31.44,0.14,992,5.6000000000000005,223,2.2 +2020,10,3,4,0,28,1.1,0.1607,0.61,151,850,963,8,23.900000000000002,425,409,0,815,0.264,78.48,17.240000000000002,0.14,992,5.6000000000000005,221,2 +2020,10,3,5,0,28.400000000000002,1.11,0.1539,0.61,150,864,1008,8,23.8,465,54,0,519,0.263,76.41,7.42,0.14,991,5.6000000000000005,219,1.8 +2020,10,3,6,0,28.5,1.07,0.21150000000000002,0.61,176,817,960,7,23.700000000000003,492,115,0,603,0.262,75.34,16.19,0.14,990,5.7,217,1.6 +2020,10,3,7,0,28.200000000000003,1.06,0.1993,0.61,162,795,849,7,23.6,407,346,0,705,0.261,76.09,30.310000000000002,0.14,990,5.7,212,1.5 +2020,10,3,8,0,27.8,1.04,0.1889,0.61,144,743,670,3,23.6,338,184,0,468,0.261,77.99,44.99,0.14,990,5.800000000000001,207,1.4000000000000001 +2020,10,3,9,0,27.3,1.04,0.1772,0.61,118,646,442,6,23.900000000000002,176,13,0,183,0.261,81.64,59.82,0.14,990,5.800000000000001,207,1.3 +2020,10,3,10,0,26.5,1.04,0.16670000000000001,0.61,78,443,195,6,23.900000000000002,86,0,3,86,0.261,85.67,74.69,0.14,990,5.800000000000001,210,1.1 +2020,10,3,11,0,25.6,1.03,0.1554,0.61,0,0,0,7,24.1,0,0,3,0,0.262,91.57000000000001,89.27,0.14,991,5.7,213,0.8 +2020,10,3,12,0,25.200000000000003,1.03,0.1472,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.263,92.26,104.62,0.14,992,5.7,218,0.8 +2020,10,3,13,0,25,1.04,0.138,0.61,0,0,0,8,23.6,0,0,0,0,0.264,92.16,119.58,0.14,993,5.7,223,0.8 +2020,10,3,14,0,24.900000000000002,1.06,0.1285,0.61,0,0,0,4,23.400000000000002,0,0,0,0,0.265,91.57000000000001,134.54,0.14,993,5.6000000000000005,229,0.8 +2020,10,3,15,0,24.8,1.08,0.1218,0.61,0,0,0,4,23.3,0,0,0,0,0.266,91.35000000000001,149.5,0.14,993,5.6000000000000005,238,0.8 +2020,10,3,16,0,24.700000000000003,1.1,0.11750000000000001,0.61,0,0,0,4,23.200000000000003,0,0,0,0,0.267,91.34,164.45000000000002,0.14,992,5.6000000000000005,252,0.8 +2020,10,3,17,0,24.400000000000002,1.1300000000000001,0.115,0.61,0,0,0,3,23.200000000000003,0,0,0,0,0.268,93.02,178.8,0.14,992,5.6000000000000005,267,0.8 +2020,10,3,18,0,24.200000000000003,1.1400000000000001,0.1159,0.61,0,0,0,8,23.200000000000003,0,0,0,0,0.269,94.26,165.54,0.14,991,5.6000000000000005,282,0.8 +2020,10,3,19,0,24,1.1500000000000001,0.11750000000000001,0.61,0,0,0,8,23.200000000000003,0,0,0,0,0.269,95.28,150.59,0.14,990,5.6000000000000005,294,0.9 +2020,10,3,20,0,23.900000000000002,1.16,0.11850000000000001,0.61,0,0,0,8,23.1,0,0,0,0,0.268,95.48,135.63,0.14,990,5.6000000000000005,302,0.9 +2020,10,3,21,0,23.900000000000002,1.19,0.12150000000000001,0.61,0,0,0,4,23.1,0,0,0,0,0.268,95.26,120.68,0.14,991,5.6000000000000005,304,0.8 +2020,10,3,22,0,23.900000000000002,1.21,0.12440000000000001,0.61,0,0,0,4,23,0,0,0,0,0.268,94.91,105.72,0.14,991,5.5,307,0.8 +2020,10,3,23,0,24.1,1.24,0.12660000000000002,0.61,0,0,0,4,23.200000000000003,0,0,0,0,0.268,94.8,90.21000000000001,0.14,991,5.5,314,0.7000000000000001 +2020,10,4,0,0,25.400000000000002,1.27,0.1291,0.61,67,472,182,4,24,58,0,0,58,0.267,91.82000000000001,75.8,0.14,992,5.5,314,0.9 +2020,10,4,1,0,26.900000000000002,1.32,0.1279,0.61,98,690,433,4,23.8,163,8,0,167,0.268,83.24,60.94,0.14,993,5.4,290,0.7000000000000001 +2020,10,4,2,0,28.1,1.34,0.13140000000000002,0.61,118,790,666,4,23.3,330,160,0,441,0.268,75.37,46.12,0.14,993,5.4,238,0.7000000000000001 +2020,10,4,3,0,29,1.29,0.1549,0.61,140,828,847,4,23.3,392,60,0,443,0.267,71.34,31.45,0.14,993,5.4,211,0.9 +2020,10,4,4,0,29.700000000000003,1.29,0.16060000000000002,0.61,150,854,965,8,23.400000000000002,438,381,0,802,0.266,68.93,17.330000000000002,0.14,992,5.4,205,1.1 +2020,10,4,5,0,30.1,1.3,0.1655,0.61,155,861,1007,8,23.5,460,379,0,835,0.266,67.73,7.8,0.14,991,5.4,205,1.3 +2020,10,4,6,0,30,1.27,0.19160000000000002,0.61,165,834,965,8,23.5,426,414,0,823,0.265,68.26,16.44,0.14,990,5.5,205,1.5 +2020,10,4,7,0,29.8,1.27,0.1925,0.61,157,804,851,7,23.6,435,146,0,561,0.264,69.26,30.48,0.14,989,5.5,204,1.6 +2020,10,4,8,0,29.5,1.27,0.1908,0.61,143,747,670,7,23.8,321,74,0,373,0.263,71.28,45.13,0.14,989,5.5,203,1.5 +2020,10,4,9,0,28.900000000000002,1.28,0.1983,0.61,122,635,440,6,24,204,296,0,352,0.263,75.10000000000001,59.94,0.14,989,5.4,199,1.2000000000000002 +2020,10,4,10,0,27.900000000000002,1.29,0.2001,0.61,83,419,192,6,24,22,0,3,22,0.263,79.42,74.8,0.14,989,5.4,193,1 +2020,10,4,11,0,26.8,1.3,0.1887,0.61,0,0,0,6,24.6,0,0,3,0,0.263,87.92,89.36,0.14,990,5.4,194,0.6000000000000001 +2020,10,4,12,0,26.400000000000002,1.31,0.17980000000000002,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.264,87.76,104.71000000000001,0.14,991,5.300000000000001,197,0.6000000000000001 +2020,10,4,13,0,26.3,1.31,0.1748,0.61,0,0,0,6,23.700000000000003,0,0,0,0,0.265,85.85000000000001,119.66,0.14,991,5.300000000000001,201,0.6000000000000001 +2020,10,4,14,0,26.200000000000003,1.31,0.1716,0.61,0,0,0,6,23.400000000000002,0,0,0,0,0.266,84.67,134.61,0.14,992,5.2,208,0.6000000000000001 +2020,10,4,15,0,26,1.31,0.17070000000000002,0.61,0,0,0,6,23.200000000000003,0,0,0,0,0.267,84.68,149.56,0.14,992,5.2,228,0.5 +2020,10,4,16,0,25.700000000000003,1.31,0.17200000000000001,0.61,0,0,0,8,23.1,0,0,0,0,0.268,85.8,164.49,0.14,991,5.2,259,0.5 +2020,10,4,17,0,25.200000000000003,1.3,0.1771,0.61,0,0,0,1,23.200000000000003,0,0,0,0,0.268,88.64,178.47,0.14,991,5.2,279,0.6000000000000001 +2020,10,4,18,0,24.700000000000003,1.29,0.1882,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.268,91.5,165.43,0.14,990,5.300000000000001,275,0.7000000000000001 +2020,10,4,19,0,24.400000000000002,1.26,0.2018,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.268,93.26,150.51,0.14,990,5.4,266,0.8 +2020,10,4,20,0,24.200000000000003,1.24,0.21450000000000002,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.268,94.34,135.56,0.14,990,5.5,258,0.8 +2020,10,4,21,0,24.200000000000003,1.23,0.2202,0.61,0,0,0,8,23.200000000000003,0,0,0,0,0.268,94.13,120.61,0.14,990,5.5,259,0.8 +2020,10,4,22,0,24.1,1.24,0.21630000000000002,0.61,0,0,0,8,23.200000000000003,0,0,0,0,0.268,94.54,105.66,0.14,990,5.5,269,0.8 +2020,10,4,23,0,24.3,1.25,0.2093,0.61,0,0,0,1,23.5,0,0,0,0,0.268,95.26,90.17,0.14,991,5.5,285,0.8 +2020,10,5,0,0,25.900000000000002,1.26,0.20570000000000002,0.61,80,391,176,8,24.200000000000003,93,71,0,111,0.268,90.11,75.75,0.14,991,5.5,287,1.1 +2020,10,5,1,0,27.3,1.28,0.2,0.61,121,622,423,8,24.200000000000003,208,208,0,309,0.268,83.12,60.910000000000004,0.14,992,5.6000000000000005,275,1.3 +2020,10,5,2,0,28.3,1.29,0.1933,0.61,142,739,655,2,24.3,302,340,3,538,0.267,78.82000000000001,46.11,0.14,992,5.7,265,1.3 +2020,10,5,3,0,29,1.27,0.3019,0.61,200,729,822,3,24.3,430,159,0,566,0.266,75.86,31.470000000000002,0.14,992,5.800000000000001,249,1.5 +2020,10,5,4,0,29.200000000000003,1.25,0.3168,0.61,218,755,938,0,24.400000000000002,218,755,0,938,0.265,75.37,17.44,0.14,992,5.9,242,1.9000000000000001 +2020,10,5,5,0,29.1,1.23,0.3095,0.61,218,769,980,0,24.5,218,769,0,980,0.264,76.18,8.18,0.14,991,6,240,2.3000000000000003 +2020,10,5,6,0,28.8,1.17,0.30720000000000003,0.61,216,759,943,3,24.6,408,36,0,442,0.262,78.24,16.69,0.14,990,6,242,2.6 +2020,10,5,7,0,28.3,1.1500000000000001,0.3269,0.61,213,713,826,6,24.700000000000003,93,0,0,93,0.26,81.01,30.650000000000002,0.14,989,6.1000000000000005,243,2.6 +2020,10,5,8,0,27.700000000000003,1.1300000000000001,0.30660000000000004,0.61,186,659,650,6,24.8,44,0,0,44,0.259,84.31,45.27,0.14,989,6,245,2.5 +2020,10,5,9,0,27.200000000000003,1.1500000000000001,0.32170000000000004,0.61,158,530,423,8,24.900000000000002,179,16,0,188,0.259,87.43,60.06,0.14,989,6,246,2.1 +2020,10,5,10,0,26.6,1.16,0.304,0.61,98,322,182,8,25.1,51,0,3,51,0.259,91.27,74.9,0.14,989,5.9,247,1.5 +2020,10,5,11,0,25.700000000000003,1.18,0.25,0.61,0,0,0,7,24.900000000000002,0,0,3,0,0.261,95.27,89.44,0.14,990,5.800000000000001,251,0.8 +2020,10,5,12,0,25.400000000000002,1.19,0.21880000000000002,0.61,0,0,0,7,24.5,0,0,0,0,0.262,94.99,104.8,0.14,991,5.800000000000001,256,0.7000000000000001 +2020,10,5,13,0,25.200000000000003,1.2,0.19890000000000002,0.61,0,0,0,8,24.3,0,0,0,0,0.263,94.69,119.74000000000001,0.14,992,5.7,261,0.7000000000000001 +2020,10,5,14,0,25.1,1.21,0.1825,0.61,0,0,0,7,24.1,0,0,0,0,0.264,94.08,134.69,0.14,992,5.7,266,0.6000000000000001 +2020,10,5,15,0,24.900000000000002,1.21,0.1711,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.265,94.2,149.63,0.14,992,5.6000000000000005,273,0.6000000000000001 +2020,10,5,16,0,24.700000000000003,1.22,0.1618,0.61,0,0,0,7,23.8,0,0,0,0,0.266,94.54,164.53,0.14,992,5.5,280,0.7000000000000001 +2020,10,5,17,0,24.5,1.21,0.1563,0.61,0,0,0,7,23.6,0,0,0,0,0.266,94.82000000000001,178.12,0.14,991,5.5,281,0.7000000000000001 +2020,10,5,18,0,24.400000000000002,1.2,0.1554,0.61,0,0,0,7,23.5,0,0,0,0,0.267,94.52,165.32,0.14,990,5.5,272,0.6000000000000001 +2020,10,5,19,0,24.200000000000003,1.18,0.15810000000000002,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.266,95.03,150.42000000000002,0.14,990,5.5,266,0.6000000000000001 +2020,10,5,20,0,24.1,1.17,0.16290000000000002,0.61,0,0,0,7,23.3,0,0,0,0,0.266,95.03,135.48,0.14,989,5.6000000000000005,272,0.6000000000000001 +2020,10,5,21,0,24.1,1.16,0.16920000000000002,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.266,94.8,120.54,0.14,990,5.6000000000000005,284,0.6000000000000001 +2020,10,5,22,0,24.1,1.17,0.1645,0.61,0,0,0,6,23.1,0,0,0,0,0.266,94.3,105.60000000000001,0.14,990,5.6000000000000005,273,0.6000000000000001 +2020,10,5,23,0,24.200000000000003,1.18,0.1572,0.61,0,0,0,6,23.200000000000003,0,0,0,0,0.265,94.02,90.12,0.14,990,5.6000000000000005,268,0.5 +2020,10,6,0,0,25.1,1.19,0.1552,0.61,71,441,180,6,23.900000000000002,84,1,0,85,0.265,92.97,75.71000000000001,0.14,991,5.6000000000000005,261,0.6000000000000001 +2020,10,6,1,0,26.700000000000003,1.21,0.1512,0.61,105,666,429,6,24,197,48,0,220,0.264,85.31,60.88,0.14,992,5.6000000000000005,227,0.8 +2020,10,6,2,0,27.8,1.2,0.1539,0.61,127,770,661,7,23.5,328,206,0,471,0.264,77.39,46.1,0.14,992,5.6000000000000005,206,1.3 +2020,10,6,3,0,28.700000000000003,1.18,0.1819,0.61,153,807,841,8,23.700000000000003,393,355,0,696,0.263,74.26,31.5,0.14,992,5.7,207,1.5 +2020,10,6,4,0,29.3,1.18,0.1879,0.61,163,833,958,7,24,488,250,0,726,0.261,73.14,17.56,0.14,991,5.7,214,1.7000000000000002 +2020,10,6,5,0,29.400000000000002,1.17,0.19060000000000002,0.61,167,841,999,7,24.1,492,320,0,808,0.259,73.32000000000001,8.55,0.14,990,5.800000000000001,220,1.9000000000000001 +2020,10,6,6,0,29.3,1.19,0.2828,0.61,205,775,947,7,24.200000000000003,489,110,0,594,0.258,73.99,16.94,0.14,989,5.800000000000001,225,2.1 +2020,10,6,7,0,28.900000000000002,1.18,0.2873,0.61,197,739,832,8,24.3,433,200,0,605,0.256,76.19,30.82,0.14,988,5.800000000000001,227,2.1 +2020,10,6,8,0,28.5,1.16,0.27490000000000003,0.61,175,682,654,8,24.400000000000002,334,209,0,480,0.255,78.48,45.4,0.14,988,5.800000000000001,226,2.1 +2020,10,6,9,0,27.900000000000002,1.1500000000000001,0.2893,0.61,149,554,425,6,24.6,217,120,0,277,0.256,82.2,60.18,0.14,988,5.800000000000001,226,1.8 +2020,10,6,10,0,27.1,1.16,0.2894,0.61,96,331,182,6,24.8,10,0,3,10,0.257,87.17,75.01,0.14,989,5.800000000000001,226,1.3 +2020,10,6,11,0,26.1,1.17,0.261,0.61,0,0,0,6,24.8,0,0,3,0,0.259,92.54,89.52,0.14,989,5.800000000000001,225,0.8 +2020,10,6,12,0,25.700000000000003,1.2,0.234,0.61,0,0,0,7,24.5,0,0,0,0,0.26,92.93,104.89,0.14,990,5.7,223,0.7000000000000001 +2020,10,6,13,0,25.5,1.22,0.2106,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.262,92.66,119.82000000000001,0.14,991,5.7,223,0.7000000000000001 +2020,10,6,14,0,25.3,1.23,0.1912,0.61,0,0,0,7,24,0,0,0,0,0.263,92.57000000000001,134.76,0.14,991,5.6000000000000005,224,0.7000000000000001 +2020,10,6,15,0,25.1,1.24,0.1821,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.264,92.92,149.68,0.14,991,5.6000000000000005,231,0.7000000000000001 +2020,10,6,16,0,24.8,1.24,0.1821,0.61,0,0,0,6,23.8,0,0,0,0,0.265,94.34,164.56,0.14,991,5.6000000000000005,240,0.8 +2020,10,6,17,0,24.5,1.22,0.1902,0.61,0,0,0,8,23.8,0,0,0,0,0.265,96.09,177.76,0.14,990,5.6000000000000005,244,0.9 +2020,10,6,18,0,24.5,1.2,0.21300000000000002,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.265,96.47,165.20000000000002,0.14,989,5.6000000000000005,244,1.1 +2020,10,6,19,0,24.5,1.18,0.2209,0.61,0,0,0,6,24,0,0,0,0,0.265,96.92,150.33,0.14,988,5.6000000000000005,244,1.3 +2020,10,6,20,0,24.5,1.16,0.2079,0.61,0,0,0,6,24,0,0,0,0,0.265,97.2,135.4,0.14,988,5.6000000000000005,244,1.4000000000000001 +2020,10,6,21,0,24.5,1.1500000000000001,0.2185,0.61,0,0,0,6,24,0,0,0,0,0.265,97.18,120.47,0.14,988,5.6000000000000005,257,1.3 +2020,10,6,22,0,24.400000000000002,1.1400000000000001,0.2187,0.61,0,0,0,6,23.900000000000002,0,0,0,0,0.266,97.33,105.54,0.14,989,5.800000000000001,277,1.1 +2020,10,6,23,0,24.5,1.1500000000000001,0.1953,0.61,0,0,0,6,24.1,0,0,0,0,0.267,97.48,90.08,0.14,990,5.7,270,1 +2020,10,7,0,0,25.3,1.17,0.1791,0.61,76,415,178,6,24.6,84,0,0,84,0.267,96.13,75.67,0.14,990,5.7,278,1.3 +2020,10,7,1,0,25.900000000000002,1.19,0.17250000000000001,0.61,112,645,427,6,24.8,206,75,0,242,0.268,93.8,60.85,0.14,991,5.7,292,1.6 +2020,10,7,2,0,26.5,1.21,0.16290000000000002,0.61,130,763,659,6,24.700000000000003,330,183,0,457,0.268,90.06,46.09,0.14,991,5.7,302,1.8 +2020,10,7,3,0,27.200000000000003,1.21,0.1511,0.61,138,829,845,7,24.5,423,243,0,631,0.268,84.98,31.53,0.14,991,5.7,306,1.8 +2020,10,7,4,0,27.700000000000003,1.19,0.1544,0.61,147,855,962,7,24.3,431,47,0,475,0.267,81.68,17.68,0.14,991,5.800000000000001,302,1.9000000000000001 +2020,10,7,5,0,27.900000000000002,1.17,0.1582,0.61,151,861,1002,7,24.200000000000003,369,23,0,392,0.267,80.51,8.93,0.14,990,5.9,295,2.1 +2020,10,7,6,0,27.8,1.1400000000000001,0.1643,0.61,153,848,963,7,24.200000000000003,229,12,0,241,0.266,80.87,17.2,0.14,989,6,288,2.3000000000000003 +2020,10,7,7,0,27.5,1.12,0.1641,0.61,146,819,847,6,24.200000000000003,134,0,0,134,0.265,82.43,31,0.14,988,6.1000000000000005,283,2.4000000000000004 +2020,10,7,8,0,27,1.09,0.163,0.61,132,762,666,9,24.400000000000002,81,0,0,81,0.265,85.63,45.54,0.14,988,6.1000000000000005,279,2.5 +2020,10,7,9,0,26.5,1.07,0.1693,0.61,114,650,436,6,24.6,95,0,0,95,0.265,89.51,60.29,0.14,988,6.1000000000000005,278,2.3000000000000003 +2020,10,7,10,0,25.8,1.04,0.1733,0.61,78,427,188,6,24.8,67,0,3,67,0.266,94.29,75.11,0.14,988,6.1000000000000005,279,1.9000000000000001 +2020,10,7,11,0,25.3,1.03,0.1617,0.61,0,0,0,6,24.8,0,0,3,0,0.266,96.82000000000001,89.60000000000001,0.14,989,6.1000000000000005,279,1.5 +2020,10,7,12,0,25.1,1.05,0.1499,0.61,0,0,0,6,24.6,0,0,0,0,0.267,97.23,104.97,0.14,990,6,280,1.5 +2020,10,7,13,0,24.900000000000002,1.07,0.1395,0.61,0,0,0,6,24.400000000000002,0,0,0,0,0.268,97.29,119.9,0.14,991,5.9,286,1.6 +2020,10,7,14,0,24.8,1.07,0.13340000000000002,0.61,0,0,0,6,24.3,0,0,0,0,0.27,96.9,134.82,0.14,991,5.9,292,1.6 +2020,10,7,15,0,24.6,1.07,0.1331,0.61,0,0,0,6,24.1,0,0,0,0,0.271,97.12,149.73,0.14,991,5.800000000000001,295,1.6 +2020,10,7,16,0,24.400000000000002,1.07,0.1337,0.61,0,0,0,6,23.900000000000002,0,0,0,0,0.271,97.25,164.58,0.14,991,5.800000000000001,295,1.6 +2020,10,7,17,0,24.1,1.07,0.1336,0.61,0,0,0,6,23.8,0,0,0,0,0.27,97.92,177.39000000000001,0.14,990,5.7,293,1.5 +2020,10,7,18,0,23.900000000000002,1.06,0.1358,0.61,0,0,0,7,23.6,0,0,0,0,0.27,98.14,165.07,0.14,989,5.7,290,1.4000000000000001 +2020,10,7,19,0,23.8,1.03,0.1395,0.61,0,0,0,6,23.5,0,0,0,0,0.269,97.97,150.23,0.14,988,5.7,288,1.3 +2020,10,7,20,0,23.700000000000003,1.01,0.14250000000000002,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.269,97.99000000000001,135.32,0.14,988,5.7,290,1.2000000000000002 +2020,10,7,21,0,23.6,0.99,0.1491,0.61,0,0,0,7,23.3,0,0,0,0,0.268,98.07000000000001,120.4,0.14,988,5.800000000000001,287,1.1 +2020,10,7,22,0,23.5,0.98,0.1531,0.61,0,0,0,7,23.3,0,0,0,0,0.268,98.57000000000001,105.48,0.14,989,5.800000000000001,278,1.1 +2020,10,7,23,0,23.8,0.9400000000000001,0.1524,0.61,0,0,0,7,23.5,0,0,0,0,0.267,98.06,90.04,0.14,989,5.9,268,1.1 +2020,10,8,0,0,24.700000000000003,0.92,0.1633,0.61,76,421,180,7,24.1,87,10,0,90,0.267,96.71000000000001,75.63,0.14,990,6,260,1.7000000000000002 +2020,10,8,1,0,25.6,0.88,0.1689,0.61,115,640,427,7,24.700000000000003,196,303,0,344,0.266,94.60000000000001,60.83,0.14,990,6,263,2.2 +2020,10,8,2,0,26.700000000000003,0.84,0.163,0.61,135,754,658,8,24.900000000000002,287,406,0,569,0.266,90.08,46.09,0.14,990,6.1000000000000005,267,2.7 +2020,10,8,3,0,27.8,0.84,0.1889,0.61,160,794,836,8,24.900000000000002,381,383,0,708,0.265,84.43,31.57,0.14,990,6.2,275,3.1 +2020,10,8,4,0,28.400000000000002,0.8200000000000001,0.19060000000000002,0.61,169,823,953,4,24.8,450,60,0,507,0.264,80.93,17.81,0.14,989,6.300000000000001,279,3.5 +2020,10,8,5,0,28.6,0.79,0.1872,0.61,171,835,994,4,24.8,520,164,0,682,0.263,79.88,9.31,0.14,989,6.300000000000001,280,3.6 +2020,10,8,6,0,28.3,0.8,0.19390000000000002,0.61,171,821,954,8,24.8,489,251,0,729,0.262,81.39,17.46,0.14,988,6.300000000000001,279,3.6 +2020,10,8,7,0,27.8,0.8200000000000001,0.184,0.61,158,797,841,8,24.8,381,388,0,713,0.262,83.94,31.17,0.14,988,6.4,275,3.4000000000000004 +2020,10,8,8,0,27.200000000000003,0.84,0.1638,0.61,136,755,663,0,24.8,136,755,0,663,0.261,86.79,45.68,0.14,988,6.300000000000001,268,3 +2020,10,8,9,0,26.5,0.91,0.15560000000000002,0.61,111,657,435,8,24.8,193,344,0,362,0.261,90.37,60.410000000000004,0.14,988,6.300000000000001,257,2.4000000000000004 +2020,10,8,10,0,25.900000000000002,0.97,0.1308,0.61,70,471,191,8,24.8,67,0,3,67,0.26,93.44,75.21000000000001,0.14,988,6.2,247,1.9000000000000001 +2020,10,8,11,0,25.400000000000002,1.04,0.10650000000000001,0.61,0,0,0,7,24.400000000000002,0,0,3,0,0.261,94.23,89.68,0.14,989,6,248,1.7000000000000002 +2020,10,8,12,0,25.1,1.08,0.0969,0.61,0,0,0,7,24.1,0,0,0,0,0.261,94.29,105.05,0.14,989,5.9,249,1.6 +2020,10,8,13,0,24.8,1.09,0.0949,0.61,0,0,0,7,24,0,0,0,0,0.262,95.18,119.97,0.14,990,5.9,248,1.1 +2020,10,8,14,0,24.700000000000003,1.07,0.0975,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.263,95.14,134.88,0.14,991,5.9,263,0.9 +2020,10,8,15,0,24.5,1.03,0.10350000000000001,0.61,0,0,0,9,23.8,0,0,0,0,0.264,96.17,149.78,0.14,991,6,275,0.9 +2020,10,8,16,0,24.3,0.99,0.1107,0.61,0,0,0,6,23.8,0,0,0,0,0.264,97.22,164.58,0.14,991,6,268,0.9 +2020,10,8,17,0,24.200000000000003,0.9400000000000001,0.11570000000000001,0.61,0,0,0,6,23.8,0,0,1,0,0.264,97.49000000000001,177.01,0.14,990,6,258,0.9 +2020,10,8,18,0,24.1,0.9,0.12660000000000002,0.61,0,0,0,7,23.8,0,0,0,0,0.263,97.93,164.93,0.14,989,6.1000000000000005,254,0.9 +2020,10,8,19,0,24.1,0.86,0.1399,0.61,0,0,0,7,23.8,0,0,0,0,0.262,98.11,150.14000000000001,0.14,989,6.2,254,0.8 +2020,10,8,20,0,24,0.8300000000000001,0.1469,0.61,0,0,0,8,23.8,0,0,0,0,0.262,98.62,135.24,0.14,989,6.2,251,0.7000000000000001 +2020,10,8,21,0,24.1,0.84,0.1525,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.261,97.62,120.33,0.14,989,6.2,243,0.6000000000000001 +2020,10,8,22,0,24.3,0.85,0.1526,0.61,0,0,0,7,23.6,0,0,0,0,0.261,95.81,105.42,0.14,989,6.1000000000000005,225,0.6000000000000001 +2020,10,8,23,0,24.5,0.87,0.14600000000000002,0.61,0,0,0,6,23.6,0,0,0,0,0.261,94.8,90,0.14,990,6.1000000000000005,206,0.4 +2020,10,9,0,0,25.3,0.91,0.1403,0.61,71,449,183,7,24.400000000000002,95,73,0,113,0.261,94.85000000000001,75.60000000000001,0.14,990,6.1000000000000005,191,0.5 +2020,10,9,1,0,26.200000000000003,0.9400000000000001,0.13540000000000002,0.61,103,675,432,7,24.1,212,175,0,298,0.261,88.48,60.81,0.14,991,6.1000000000000005,222,0.4 +2020,10,9,2,0,27.1,0.9500000000000001,0.1333,0.61,121,782,663,7,23.900000000000002,324,101,0,395,0.261,82.83,46.09,0.14,991,6.1000000000000005,265,0.5 +2020,10,9,3,0,27.700000000000003,1.01,0.1404,0.61,136,833,846,7,23.400000000000002,429,144,0,552,0.261,77.27,31.61,0.14,991,6.1000000000000005,282,0.8 +2020,10,9,4,0,28.1,1.05,0.1375,0.61,141,865,964,8,23.200000000000003,478,288,0,752,0.261,74.86,17.95,0.14,990,6,289,1.1 +2020,10,9,5,0,28.400000000000002,1.07,0.1285,0.61,138,881,1006,7,23.400000000000002,500,291,1,787,0.261,74.39,9.69,0.14,989,6,293,1 +2020,10,9,6,0,28.6,1.08,0.12660000000000002,0.61,135,874,968,7,23.6,493,226,0,708,0.261,74.4,17.72,0.14,988,6,291,1.1 +2020,10,9,7,0,28.5,1.09,0.12340000000000001,0.61,127,849,852,6,23.700000000000003,416,90,0,494,0.261,75.44,31.35,0.14,988,6,283,1.1 +2020,10,9,8,0,28,1.1,0.1182,0.61,114,800,671,7,24,327,241,0,495,0.262,78.88,45.82,0.14,988,6,264,1.1 +2020,10,9,9,0,27.400000000000002,1.1400000000000001,0.1189,0.61,97,700,441,7,24.5,197,318,0,353,0.262,84.25,60.53,0.14,988,6,245,1.1 +2020,10,9,10,0,26.700000000000003,1.17,0.11950000000000001,0.61,67,491,191,7,24.5,73,430,3,182,0.262,87.93,75.32000000000001,0.14,988,6,237,1.1 +2020,10,9,11,0,25.700000000000003,1.19,0.11470000000000001,0.61,0,0,0,7,24.6,0,0,3,0,0.263,93.77,89.76,0.14,989,6,233,0.7000000000000001 +2020,10,9,12,0,25.400000000000002,1.22,0.1085,0.61,0,0,0,6,24.400000000000002,0,0,0,0,0.264,94.10000000000001,105.13,0.14,990,6,233,0.7000000000000001 +2020,10,9,13,0,25.3,1.25,0.1004,0.61,0,0,0,6,24.1,0,0,0,0,0.265,93.27,120.04,0.14,990,5.9,232,0.7000000000000001 +2020,10,9,14,0,25.1,1.28,0.093,0.61,0,0,0,6,23.900000000000002,0,0,0,0,0.266,93.25,134.94,0.14,990,5.9,234,0.7000000000000001 +2020,10,9,15,0,25,1.31,0.0908,0.61,0,0,0,7,23.8,0,0,0,0,0.267,93.03,149.81,0.14,991,5.9,236,0.7000000000000001 +2020,10,9,16,0,24.8,1.33,0.0916,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.268,93.41,164.57,0.14,990,5.9,240,0.7000000000000001 +2020,10,9,17,0,24.6,1.34,0.09290000000000001,0.61,0,0,0,7,23.5,0,0,0,0,0.269,93.82000000000001,176.64000000000001,0.14,990,5.800000000000001,245,0.7000000000000001 +2020,10,9,18,0,24.5,1.34,0.09340000000000001,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.269,93.60000000000001,164.79,0.14,989,5.800000000000001,249,0.6000000000000001 +2020,10,9,19,0,24.400000000000002,1.35,0.09230000000000001,0.61,0,0,0,6,23.3,0,0,0,0,0.268,93.67,150.04,0.14,988,5.7,249,0.6000000000000001 +2020,10,9,20,0,24.3,1.35,0.0897,0.61,0,0,0,6,23.200000000000003,0,0,0,0,0.268,93.38,135.16,0.14,988,5.7,247,0.6000000000000001 +2020,10,9,21,0,24.3,1.36,0.0879,0.61,0,0,0,6,23,0,0,0,0,0.267,92.67,120.27,0.14,988,5.7,252,0.6000000000000001 +2020,10,9,22,0,24.1,1.3800000000000001,0.08460000000000001,0.61,0,0,0,6,22.900000000000002,0,0,0,0,0.267,93.29,105.37,0.14,989,5.6000000000000005,260,0.6000000000000001 +2020,10,9,23,0,24.200000000000003,1.3800000000000001,0.0811,0.61,0,0,0,6,23.1,0,0,3,0,0.267,93.49,89.96000000000001,0.14,989,5.6000000000000005,256,0.6000000000000001 +2020,10,10,0,0,25.3,1.3900000000000001,0.07930000000000001,0.61,57,547,193,7,23.900000000000002,95,125,0,127,0.266,92.16,75.56,0.14,989,5.5,241,0.8 +2020,10,10,1,0,26.8,1.41,0.0758,0.61,80,749,445,3,24,180,393,0,372,0.265,84.62,60.79,0.14,990,5.5,224,1 +2020,10,10,2,0,27.900000000000002,1.41,0.0755,0.61,94,842,678,8,23.3,301,53,0,337,0.265,75.99,46.1,0.14,990,5.5,225,1.1 +2020,10,10,3,0,28.700000000000003,1.41,0.07730000000000001,0.61,104,889,860,7,23.3,426,225,0,618,0.264,72.56,31.66,0.14,990,5.5,227,1.3 +2020,10,10,4,0,29.200000000000003,1.41,0.0785,0.61,109,913,977,8,23.5,417,437,0,832,0.263,71.41,18.1,0.14,989,5.5,230,1.6 +2020,10,10,5,0,29.5,1.42,0.0792,0.61,112,921,1018,7,23.700000000000003,461,375,0,830,0.262,71.12,10.07,0.14,988,5.5,233,1.9000000000000001 +2020,10,10,6,0,29.6,1.41,0.08,0.61,110,913,979,6,23.8,495,149,0,637,0.262,71.2,17.98,0.14,988,5.5,233,2.2 +2020,10,10,7,0,29.400000000000002,1.4000000000000001,0.0811,0.61,106,887,862,7,23.8,430,205,0,605,0.261,71.86,31.52,0.14,987,5.5,232,2.3000000000000003 +2020,10,10,8,0,28.900000000000002,1.3900000000000001,0.0814,0.61,97,838,679,7,23.8,333,156,0,441,0.261,73.9,45.96,0.14,987,5.5,231,2.1 +2020,10,10,9,0,28.3,1.3900000000000001,0.0835,0.61,83,742,447,8,23.900000000000002,199,297,0,345,0.261,77.31,60.64,0.14,988,5.6000000000000005,229,1.7000000000000002 +2020,10,10,10,0,27.3,1.3900000000000001,0.0833,0.61,58,544,195,6,24,81,0,3,81,0.262,82.26,75.41,0.14,988,5.6000000000000005,229,1.2000000000000002 +2020,10,10,11,0,26.200000000000003,1.3900000000000001,0.081,0.61,0,0,0,7,24.200000000000003,0,0,3,0,0.263,88.99,89.83,0.14,989,5.6000000000000005,228,0.7000000000000001 +2020,10,10,12,0,25.8,1.3800000000000001,0.07970000000000001,0.61,0,0,0,6,24,0,0,0,0,0.263,89.55,105.21000000000001,0.14,990,5.6000000000000005,227,0.7000000000000001 +2020,10,10,13,0,25.700000000000003,1.3900000000000001,0.078,0.61,0,0,0,6,23.700000000000003,0,0,0,0,0.264,88.79,120.10000000000001,0.14,990,5.7,229,0.7000000000000001 +2020,10,10,14,0,25.6,1.41,0.0746,0.61,0,0,0,7,23.5,0,0,0,0,0.265,88.2,134.99,0.14,991,5.7,230,0.6000000000000001 +2020,10,10,15,0,25.5,1.42,0.07440000000000001,0.61,0,0,0,8,23.3,0,0,0,0,0.265,87.86,149.84,0.14,991,5.800000000000001,228,0.6000000000000001 +2020,10,10,16,0,25.1,1.42,0.07680000000000001,0.61,0,0,0,7,23.3,0,0,0,0,0.265,89.75,164.55,0.14,991,5.800000000000001,231,0.6000000000000001 +2020,10,10,17,0,24.8,1.42,0.0805,0.61,0,0,0,8,23.3,0,0,0,0,0.264,91.12,176.26,0.14,990,5.800000000000001,238,0.7000000000000001 +2020,10,10,18,0,24.400000000000002,1.42,0.08420000000000001,0.61,0,0,0,3,23.200000000000003,0,0,0,0,0.264,93.07000000000001,164.65,0.14,989,5.9,243,0.7000000000000001 +2020,10,10,19,0,24.200000000000003,1.42,0.08940000000000001,0.61,0,0,0,4,23.200000000000003,0,0,0,0,0.264,93.98,149.94,0.14,988,5.9,244,0.7000000000000001 +2020,10,10,20,0,24,1.41,0.0941,0.61,0,0,0,4,23.1,0,0,0,0,0.264,94.95,135.08,0.14,988,5.9,243,0.7000000000000001 +2020,10,10,21,0,24,1.41,0.10310000000000001,0.61,0,0,0,4,23.200000000000003,0,0,0,0,0.263,95.05,120.2,0.14,988,5.9,244,0.7000000000000001 +2020,10,10,22,0,24,1.42,0.10590000000000001,0.61,0,0,0,8,23.200000000000003,0,0,0,0,0.263,95.10000000000001,105.31,0.14,989,5.9,244,0.6000000000000001 +2020,10,10,23,0,24.3,1.43,0.0976,0.61,0,0,0,4,23.400000000000002,0,0,3,0,0.262,94.48,89.92,0.14,989,5.800000000000001,243,0.5 +2020,10,11,0,0,25.3,1.44,0.1003,0.61,61,519,190,6,24.200000000000003,15,0,0,15,0.262,93.47,75.53,0.14,990,5.800000000000001,237,0.9 +2020,10,11,1,0,26.200000000000003,1.46,0.09860000000000001,0.61,88,724,441,6,24.3,23,0,0,23,0.263,89.15,60.78,0.14,990,5.800000000000001,224,1.2000000000000002 +2020,10,11,2,0,27.3,1.47,0.0922,0.61,101,826,673,6,24.200000000000003,44,0,0,44,0.264,83.04,46.11,0.14,990,5.800000000000001,223,1.2000000000000002 +2020,10,11,3,0,28.3,1.48,0.0889,0.61,109,879,857,6,24.1,283,16,0,296,0.264,77.81,31.720000000000002,0.14,990,5.800000000000001,229,1.2000000000000002 +2020,10,11,4,0,29,1.47,0.09090000000000001,0.61,115,903,973,6,24.1,438,52,0,488,0.264,74.77,18.26,0.14,989,5.800000000000001,240,1.3 +2020,10,11,5,0,29.400000000000002,1.46,0.0937,0.61,118,909,1012,6,24.200000000000003,480,69,0,548,0.263,73.47,10.450000000000001,0.14,988,5.800000000000001,250,1.5 +2020,10,11,6,0,29.400000000000002,1.45,0.09580000000000001,0.61,117,900,972,6,24.200000000000003,482,100,0,577,0.262,73.77,18.25,0.14,988,5.800000000000001,256,1.6 +2020,10,11,7,0,29.1,1.45,0.09680000000000001,0.61,112,873,856,7,24.200000000000003,429,205,0,603,0.261,75.14,31.7,0.14,987,5.800000000000001,257,1.6 +2020,10,11,8,0,28.700000000000003,1.47,0.0941,0.61,101,825,674,6,24.400000000000002,299,50,0,333,0.26,77.79,46.09,0.14,987,5.800000000000001,255,1.4000000000000001 +2020,10,11,9,0,28.3,1.49,0.08990000000000001,0.61,85,735,444,6,24.8,169,10,0,174,0.26,81.24,60.76,0.14,986,5.7,253,1.1 +2020,10,11,10,0,27.5,1.5,0.08600000000000001,0.61,57,540,193,6,24.700000000000003,73,0,3,73,0.26,84.66,75.51,0.14,987,5.7,249,0.9 +2020,10,11,11,0,26.3,1.51,0.0818,0.61,0,0,0,7,24.8,0,0,3,0,0.261,91.46000000000001,89.91,0.14,988,5.6000000000000005,236,0.7000000000000001 +2020,10,11,12,0,25.900000000000002,1.51,0.0792,0.61,0,0,0,8,24.5,0,0,0,0,0.262,91.94,105.28,0.14,988,5.6000000000000005,226,0.7000000000000001 +2020,10,11,13,0,25.5,1.5,0.0784,0.61,0,0,0,8,24.3,0,0,0,0,0.262,93.13,120.16,0.14,989,5.7,222,0.7000000000000001 +2020,10,11,14,0,25.3,1.49,0.0792,0.61,0,0,0,8,24.200000000000003,0,0,0,0,0.263,93.42,135.03,0.14,989,5.7,221,0.8 +2020,10,11,15,0,25.1,1.46,0.0821,0.61,0,0,0,4,24,0,0,0,0,0.264,93.73,149.87,0.14,989,5.7,220,0.8 +2020,10,11,16,0,24.900000000000002,1.44,0.0854,0.61,0,0,0,4,23.900000000000002,0,0,0,0,0.264,94.21000000000001,164.53,0.14,989,5.800000000000001,221,0.7000000000000001 +2020,10,11,17,0,24.6,1.43,0.08900000000000001,0.61,0,0,0,8,23.8,0,0,0,0,0.263,95.52,175.88,0.14,989,5.800000000000001,221,0.8 +2020,10,11,18,0,24.5,1.41,0.0956,0.61,0,0,0,7,23.8,0,0,0,0,0.263,95.97,164.49,0.14,988,5.9,221,0.8 +2020,10,11,19,0,24.3,1.3900000000000001,0.1039,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.262,97.45,149.84,0.14,988,5.9,219,0.8 +2020,10,11,20,0,24.3,1.36,0.1085,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.263,97.7,135,0.14,988,6,216,0.9 +2020,10,11,21,0,24.200000000000003,1.35,0.113,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.263,98.26,120.13,0.14,988,5.9,216,0.9 +2020,10,11,22,0,24.1,1.35,0.10980000000000001,0.61,0,0,0,3,23.8,0,0,0,0,0.264,98.39,105.26,0.14,988,5.9,212,0.9 +2020,10,11,23,0,24.200000000000003,1.34,0.10310000000000001,0.61,0,0,0,8,23.900000000000002,0,0,3,0,0.264,98.18,89.89,0.14,989,5.800000000000001,211,0.9 +2020,10,12,0,0,25.200000000000003,1.33,0.1048,0.61,63,512,191,7,24.6,96,77,0,115,0.265,96.42,75.51,0.14,989,5.7,207,1.2000000000000002 +2020,10,12,1,0,26,1.33,0.10590000000000001,0.61,91,716,441,7,24.8,202,275,0,337,0.266,93.01,60.76,0.14,989,5.7,199,1.6 +2020,10,12,2,0,26.8,1.33,0.1027,0.61,106,817,672,7,24.700000000000003,323,250,0,497,0.266,88.44,46.13,0.14,990,5.7,197,1.8 +2020,10,12,3,0,27.6,1.33,0.1038,0.61,117,868,855,8,24.400000000000002,430,159,0,565,0.266,82.97,31.78,0.14,990,5.7,201,1.9000000000000001 +2020,10,12,4,0,28.3,1.31,0.1078,0.61,125,891,970,7,24.3,396,32,0,426,0.265,78.77,18.42,0.14,989,5.7,209,2.1 +2020,10,12,5,0,28.5,1.29,0.11170000000000001,0.61,129,896,1009,7,24.200000000000003,512,236,0,744,0.264,77.43,10.82,0.14,988,5.800000000000001,217,2.1 +2020,10,12,6,0,28.400000000000002,1.27,0.11320000000000001,0.61,128,886,968,7,24.1,484,263,0,733,0.262,77.35000000000001,18.51,0.14,988,5.800000000000001,222,2.1 +2020,10,12,7,0,28.1,1.27,0.11120000000000001,0.61,121,861,852,7,24,373,399,0,712,0.261,78.46000000000001,31.88,0.14,987,5.800000000000001,225,2 +2020,10,12,8,0,27.700000000000003,1.27,0.10700000000000001,0.61,108,812,670,7,24,310,314,0,527,0.259,80.38,46.230000000000004,0.14,987,5.800000000000001,224,1.8 +2020,10,12,9,0,27.3,1.29,0.10790000000000001,0.61,92,713,439,7,24.1,211,100,0,259,0.259,82.5,60.870000000000005,0.14,987,5.800000000000001,225,1.4000000000000001 +2020,10,12,10,0,26.700000000000003,1.3,0.10550000000000001,0.61,63,509,189,7,24.1,59,0,3,59,0.259,85.72,75.61,0.14,987,5.7,228,0.9 +2020,10,12,11,0,26,1.31,0.09960000000000001,0.61,0,0,0,7,23.900000000000002,0,0,3,0,0.259,88.12,89.98,0.14,988,5.7,230,0.6000000000000001 +2020,10,12,12,0,25.900000000000002,1.32,0.0966,0.61,0,0,0,7,23.5,0,0,0,0,0.26,86.39,105.35000000000001,0.14,989,5.7,233,0.5 +2020,10,12,13,0,26,1.31,0.09580000000000001,0.61,0,0,0,6,23.3,0,0,0,0,0.261,84.89,120.22,0.14,989,5.7,234,0.5 +2020,10,12,14,0,26,1.32,0.0926,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.262,84.48,135.08,0.14,990,5.7,238,0.5 +2020,10,12,15,0,25.8,1.33,0.0898,0.61,0,0,0,6,23.1,0,0,0,0,0.263,84.9,149.89000000000001,0.14,990,5.7,249,0.5 +2020,10,12,16,0,25.6,1.33,0.0898,0.61,0,0,0,7,23,0,0,0,0,0.264,85.68,164.49,0.14,990,5.800000000000001,260,0.5 +2020,10,12,17,0,25.3,1.33,0.09190000000000001,0.61,0,0,0,7,23,0,0,0,0,0.265,87.14,175.51,0.14,989,5.800000000000001,265,0.5 +2020,10,12,18,0,25.1,1.33,0.0965,0.61,0,0,0,6,23,0,0,0,0,0.266,88.11,164.34,0.14,988,5.800000000000001,264,0.4 +2020,10,12,19,0,24.8,1.32,0.1034,0.61,0,0,0,6,23,0,0,0,0,0.265,89.84,149.73,0.14,988,5.9,252,0.4 +2020,10,12,20,0,24.5,1.32,0.1039,0.61,0,0,0,6,23,0,0,0,0,0.265,91.61,134.92000000000002,0.14,988,5.9,237,0.5 +2020,10,12,21,0,24.3,1.33,0.1091,0.61,0,0,0,6,23,0,0,0,0,0.264,92.74,120.07000000000001,0.14,988,5.9,229,0.5 +2020,10,12,22,0,24.1,1.33,0.1135,0.61,0,0,0,6,23,0,0,0,0,0.265,93.85000000000001,105.21000000000001,0.14,989,6,225,0.5 +2020,10,12,23,0,24.200000000000003,1.32,0.1158,0.61,0,0,0,6,23.3,0,0,3,0,0.264,94.55,89.86,0.14,989,6.1000000000000005,220,0.5 +2020,10,13,0,0,25,1.33,0.1305,0.61,68,479,188,6,24,57,0,0,57,0.264,94.35000000000001,75.48,0.14,990,6.2,215,0.6000000000000001 +2020,10,13,1,0,25.700000000000003,1.33,0.13090000000000002,0.61,99,688,435,7,24.200000000000003,214,152,0,288,0.265,91.57000000000001,60.76,0.14,991,6.4,195,0.8 +2020,10,13,2,0,26.3,1.32,0.125,0.61,115,795,665,7,24.400000000000002,325,242,0,492,0.265,89.25,46.14,0.14,991,6.4,190,0.9 +2020,10,13,3,0,26.700000000000003,1.28,0.1693,0.61,147,816,840,8,24.3,399,67,0,455,0.265,86.62,31.84,0.14,990,6.4,197,1 +2020,10,13,4,0,27,1.27,0.20090000000000002,0.61,168,825,950,8,24.3,436,384,0,800,0.265,85.08,18.59,0.14,990,6.4,204,1.2000000000000002 +2020,10,13,5,0,27.200000000000003,1.25,0.19720000000000001,0.61,170,836,990,4,24.200000000000003,384,26,0,410,0.265,83.60000000000001,11.200000000000001,0.14,989,6.4,205,1.5 +2020,10,13,6,0,27.200000000000003,1.23,0.2313,0.61,183,805,945,7,24.200000000000003,488,242,0,717,0.265,83.54,18.78,0.14,988,6.300000000000001,207,1.7000000000000002 +2020,10,13,7,0,27,1.23,0.2451,0.61,179,764,827,8,24.200000000000003,342,471,0,741,0.265,84.45,32.06,0.14,988,6.2,209,1.8 +2020,10,13,8,0,26.700000000000003,1.22,0.2156,0.61,152,721,649,8,24.200000000000003,294,370,0,550,0.264,86.18,46.37,0.14,988,6.2,207,1.7000000000000002 +2020,10,13,9,0,26.3,1.23,0.2185,0.61,127,605,421,8,24.400000000000002,182,381,0,367,0.264,89.16,60.980000000000004,0.14,988,6.1000000000000005,201,1.5 +2020,10,13,10,0,25.8,1.24,0.20220000000000002,0.61,80,395,178,6,24.6,90,25,3,96,0.264,92.88,75.7,0.14,988,6,195,1.1 +2020,10,13,11,0,25.1,1.26,0.15810000000000002,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.265,95.63,90.04,0.14,989,5.9,188,0.8 +2020,10,13,12,0,24.900000000000002,1.27,0.1313,0.61,0,0,0,7,24.1,0,0,0,0,0.266,95.21000000000001,105.42,0.14,990,5.800000000000001,182,0.9 +2020,10,13,13,0,24.8,1.28,0.11570000000000001,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.267,94.66,120.27,0.14,991,5.7,180,0.9 +2020,10,13,14,0,24.700000000000003,1.29,0.1029,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.268,94.06,135.11,0.14,991,5.6000000000000005,190,0.8 +2020,10,13,15,0,24.5,1.29,0.09480000000000001,0.61,0,0,0,7,23.5,0,0,0,0,0.269,94.25,149.9,0.14,991,5.6000000000000005,206,0.8 +2020,10,13,16,0,24.3,1.28,0.0906,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.27,94.67,164.44,0.14,991,5.7,216,0.9 +2020,10,13,17,0,24.1,1.28,0.0882,0.61,0,0,0,7,23.3,0,0,0,0,0.271,95.11,175.13,0.14,990,5.7,223,0.9 +2020,10,13,18,0,23.900000000000002,1.27,0.0876,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.271,95.75,164.17000000000002,0.14,990,5.7,227,0.9 +2020,10,13,19,0,23.8,1.27,0.08800000000000001,0.61,0,0,0,7,23.1,0,0,0,0,0.271,95.79,149.63,0.14,989,5.800000000000001,230,0.9 +2020,10,13,20,0,23.6,1.28,0.0873,0.61,0,0,0,7,23,0,0,0,0,0.27,96.67,134.84,0.14,989,5.800000000000001,231,0.9 +2020,10,13,21,0,23.6,1.28,0.0878,0.61,0,0,0,8,23,0,0,0,0,0.269,96.45,120.01,0.14,990,5.800000000000001,233,0.9 +2020,10,13,22,0,23.6,1.3,0.0879,0.61,0,0,0,8,22.900000000000002,0,0,0,0,0.269,96.11,105.16,0.14,990,5.800000000000001,235,0.9 +2020,10,13,23,0,23.8,1.31,0.0874,0.61,0,0,0,7,23.1,0,0,3,0,0.269,96.01,89.82000000000001,0.14,990,5.800000000000001,235,0.9 +2020,10,14,0,0,25.200000000000003,1.32,0.08700000000000001,0.61,59,536,194,7,24.1,96,153,0,134,0.269,93.64,75.46000000000001,0.14,991,5.800000000000001,232,1.3 +2020,10,14,1,0,26,1.33,0.0858,0.61,84,738,445,7,24.3,198,301,0,345,0.268,90.4,60.75,0.14,991,5.800000000000001,221,1.7000000000000002 +2020,10,14,2,0,26.900000000000002,1.34,0.0848,0.61,99,832,675,7,24.200000000000003,329,206,0,472,0.268,85.37,46.17,0.14,991,5.800000000000001,212,2.1 +2020,10,14,3,0,27.6,1.16,0.0988,0.61,115,870,854,8,24.200000000000003,374,398,0,712,0.267,81.98,31.91,0.14,991,5.800000000000001,210,2.2 +2020,10,14,4,0,28.1,1.17,0.0981,0.61,121,897,970,8,24.3,428,399,0,806,0.265,79.85000000000001,18.77,0.14,991,5.800000000000001,211,2.3000000000000003 +2020,10,14,5,0,28.400000000000002,1.17,0.097,0.61,122,906,1009,7,24.3,507,256,0,757,0.263,78.71000000000001,11.57,0.14,990,5.800000000000001,213,2.3000000000000003 +2020,10,14,6,0,28.5,1.1400000000000001,0.1027,0.61,123,893,967,6,24.3,490,133,0,616,0.262,78.24,19.05,0.14,989,5.800000000000001,215,2.2 +2020,10,14,7,0,28.3,1.1400000000000001,0.1024,0.61,117,866,850,6,24.3,164,4,0,167,0.261,79,32.24,0.14,989,5.9,217,2.1 +2020,10,14,8,0,27.900000000000002,1.1400000000000001,0.1008,0.61,106,815,667,6,24.3,54,0,0,54,0.26,80.88,46.5,0.14,989,5.9,215,1.9000000000000001 +2020,10,14,9,0,27.3,1.16,0.09960000000000001,0.61,89,718,437,6,24.6,28,0,0,28,0.26,85.06,61.09,0.14,989,5.800000000000001,210,1.6 +2020,10,14,10,0,26.6,1.18,0.0983,0.61,61,511,187,6,24.700000000000003,10,0,3,10,0.26,89.28,75.79,0.14,989,5.800000000000001,205,1.2000000000000002 +2020,10,14,11,0,25.6,1.19,0.0956,0.61,0,0,0,6,24.6,0,0,0,0,0.26,93.95,90.11,0.14,990,5.7,201,0.8 +2020,10,14,12,0,25.3,1.21,0.0931,0.61,0,0,0,6,24.3,0,0,0,0,0.261,94.42,105.48,0.14,991,5.7,198,0.8 +2020,10,14,13,0,25.200000000000003,1.23,0.0902,0.61,0,0,0,6,24.1,0,0,0,0,0.262,93.9,120.32000000000001,0.14,991,5.6000000000000005,198,0.8 +2020,10,14,14,0,25.1,1.24,0.08600000000000001,0.61,0,0,0,7,24,0,0,0,0,0.263,93.60000000000001,135.15,0.14,992,5.5,202,0.8 +2020,10,14,15,0,24.900000000000002,1.23,0.0844,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.264,94.03,149.9,0.14,992,5.5,212,0.8 +2020,10,14,16,0,24.6,1.22,0.08460000000000001,0.61,0,0,0,7,23.8,0,0,0,0,0.265,95.24,164.38,0.14,991,5.4,224,0.9 +2020,10,14,17,0,24.400000000000002,1.19,0.0876,0.61,0,0,0,7,23.8,0,0,0,0,0.265,96.37,174.76,0.14,991,5.4,232,0.9 +2020,10,14,18,0,24.200000000000003,1.17,0.0936,0.61,0,0,0,8,23.8,0,0,0,0,0.266,97.48,164.01,0.14,990,5.5,237,1 +2020,10,14,19,0,24.200000000000003,1.1400000000000001,0.10210000000000001,0.61,0,0,0,7,23.8,0,0,0,0,0.266,97.66,149.52,0.14,989,5.5,239,1.1 +2020,10,14,20,0,24.1,1.12,0.1116,0.61,0,0,0,7,23.8,0,0,0,0,0.265,98.19,134.76,0.14,989,5.6000000000000005,239,1.1 +2020,10,14,21,0,24.1,1.12,0.12860000000000002,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.265,97.85000000000001,119.94,0.14,990,5.7,233,1.1 +2020,10,14,22,0,24.1,1.12,0.1361,0.61,0,0,0,7,23.6,0,0,0,0,0.265,96.91,105.11,0.14,990,5.7,225,1 +2020,10,14,23,0,24.200000000000003,1.12,0.133,0.61,0,0,0,7,23.6,0,0,3,0,0.264,96.25,89.79,0.14,991,5.7,221,1 +2020,10,15,0,0,25.1,1.1500000000000001,0.12940000000000002,0.61,69,478,189,7,24.1,77,0,0,77,0.264,94.3,75.44,0.14,991,5.6000000000000005,223,1.3 +2020,10,15,1,0,25.900000000000002,1.18,0.1212,0.61,97,700,439,6,24.1,141,0,0,141,0.264,89.97,60.75,0.14,991,5.6000000000000005,222,1.6 +2020,10,15,2,0,26.900000000000002,1.2,0.1101,0.61,110,810,671,6,23.8,291,43,0,321,0.264,83.26,46.2,0.14,992,5.6000000000000005,225,1.6 +2020,10,15,3,0,27.8,1.21,0.1057,0.61,119,867,854,6,23.5,416,94,0,496,0.264,77.7,31.990000000000002,0.14,991,5.6000000000000005,229,1.4000000000000001 +2020,10,15,4,0,28.700000000000003,1.21,0.1027,0.61,123,895,969,7,23.5,494,188,0,672,0.264,73.57000000000001,18.96,0.14,991,5.6000000000000005,232,1.5 +2020,10,15,5,0,29.200000000000003,1.21,0.1028,0.61,125,903,1008,6,23.6,487,79,0,564,0.264,71.92,11.94,0.14,990,5.7,231,1.6 +2020,10,15,6,0,29.3,1.17,0.1097,0.61,126,889,965,7,23.700000000000003,492,154,0,637,0.263,71.72,19.31,0.14,989,5.7,230,1.9000000000000001 +2020,10,15,7,0,29.200000000000003,1.18,0.109,0.61,120,862,848,8,23.6,412,281,0,649,0.263,71.98,32.410000000000004,0.14,989,5.7,230,2 +2020,10,15,8,0,28.8,1.18,0.10790000000000001,0.61,109,809,664,7,23.6,326,203,0,466,0.263,73.60000000000001,46.64,0.14,988,5.800000000000001,230,2 +2020,10,15,9,0,28.200000000000003,1.2,0.1097,0.61,92,708,433,3,23.900000000000002,190,37,0,208,0.263,77.38,61.2,0.14,988,5.7,228,1.6 +2020,10,15,10,0,27.3,1.21,0.1076,0.61,63,498,184,3,24,79,339,3,162,0.263,82.34,75.88,0.14,989,5.7,228,1.1 +2020,10,15,11,0,26.1,1.22,0.10450000000000001,0.61,0,0,0,8,24.1,0,0,0,0,0.264,89.02,90.17,0.14,989,5.7,229,0.7000000000000001 +2020,10,15,12,0,25.8,1.23,0.1014,0.61,0,0,0,7,23.8,0,0,0,0,0.264,88.99,105.54,0.14,990,5.7,230,0.7000000000000001 +2020,10,15,13,0,25.700000000000003,1.23,0.10070000000000001,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.265,88.58,120.37,0.14,991,5.7,229,0.7000000000000001 +2020,10,15,14,0,25.6,1.22,0.10210000000000001,0.61,0,0,0,7,23.6,0,0,0,0,0.266,88.67,135.17000000000002,0.14,991,5.7,223,0.7000000000000001 +2020,10,15,15,0,25.400000000000002,1.19,0.1075,0.61,0,0,0,6,23.6,0,0,0,0,0.268,89.77,149.9,0.14,991,5.800000000000001,216,0.7000000000000001 +2020,10,15,16,0,25.1,1.16,0.11570000000000001,0.61,0,0,0,6,23.700000000000003,0,0,0,0,0.269,91.72,164.3,0.14,991,5.800000000000001,211,0.7000000000000001 +2020,10,15,17,0,24.8,1.12,0.1254,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.27,93.75,174.39000000000001,0.14,991,5.9,209,0.8 +2020,10,15,18,0,24.400000000000002,1.07,0.1389,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.27,96.16,163.84,0.14,990,5.9,206,0.9 +2020,10,15,19,0,24.200000000000003,1,0.1583,0.61,0,0,0,8,23.8,0,0,0,0,0.27,97.38,149.41,0.14,989,6,206,1 +2020,10,15,20,0,24.1,0.9400000000000001,0.1718,0.61,0,0,0,7,23.8,0,0,0,0,0.27,98.36,134.68,0.14,989,6.1000000000000005,205,1 +2020,10,15,21,0,24.1,0.97,0.19010000000000002,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.27,98.61,119.88,0.14,989,6.2,207,1 +2020,10,15,22,0,24.1,0.98,0.1859,0.61,0,0,0,6,23.900000000000002,0,0,0,0,0.269,98.56,105.06,0.14,989,6.2,207,1 +2020,10,15,23,0,24.3,0.99,0.1567,0.61,0,0,0,6,23.900000000000002,0,0,3,0,0.268,97.88,89.77,0.14,990,6.2,205,1 +2020,10,16,0,0,24.900000000000002,1.04,0.14880000000000002,0.61,73,449,186,7,24.200000000000003,97,77,0,116,0.268,96.06,75.42,0.14,990,6.1000000000000005,200,1.4000000000000001 +2020,10,16,1,0,25.6,1.11,0.1302,0.61,101,688,437,7,24.3,203,276,0,337,0.268,92.8,60.76,0.14,990,5.9,195,1.7000000000000002 +2020,10,16,2,0,26.6,1.17,0.1038,0.61,108,815,672,8,24.1,294,377,0,555,0.267,86.26,46.230000000000004,0.14,990,5.7,194,1.8 +2020,10,16,3,0,27.6,1.1300000000000001,0.10840000000000001,0.61,120,865,854,8,23.900000000000002,398,342,0,688,0.266,80.16,32.07,0.14,990,5.4,193,1.6 +2020,10,16,4,0,28.400000000000002,1.16,0.09720000000000001,0.61,120,901,972,7,23.8,474,297,0,754,0.266,76.32000000000001,19.14,0.14,989,5.300000000000001,202,1.4000000000000001 +2020,10,16,5,0,28.900000000000002,1.19,0.09190000000000001,0.61,119,914,1012,8,23.900000000000002,440,439,0,869,0.265,74.24,12.31,0.14,988,5.2,219,1.4000000000000001 +2020,10,16,6,0,29.1,1.16,0.0988,0.61,121,901,970,8,23.8,429,395,0,801,0.264,73.32000000000001,19.580000000000002,0.14,987,5.1000000000000005,229,1.6 +2020,10,16,7,0,29,1.17,0.09630000000000001,0.61,114,877,853,8,23.8,343,462,0,732,0.263,73.75,32.59,0.14,987,5,231,1.8 +2020,10,16,8,0,28.6,1.18,0.0936,0.61,103,828,670,7,23.900000000000002,318,258,0,495,0.262,75.56,46.77,0.14,986,4.9,229,1.8 +2020,10,16,9,0,28.1,1.19,0.0902,0.61,86,734,438,7,24.200000000000003,209,167,0,290,0.262,79.23,61.31,0.14,987,4.9,228,1.5 +2020,10,16,10,0,27.200000000000003,1.2,0.08600000000000001,0.61,58,532,187,8,24.3,80,0,3,80,0.262,84.36,75.97,0.14,987,4.800000000000001,228,1.2000000000000002 +2020,10,16,11,0,25.8,1.21,0.0819,0.61,0,0,0,8,24,0,0,0,0,0.264,90.07000000000001,90.23,0.14,988,4.7,226,0.9 +2020,10,16,12,0,25.5,1.22,0.0786,0.61,0,0,0,0,23.700000000000003,0,0,0,0,0.264,89.69,105.60000000000001,0.14,989,4.6000000000000005,224,0.9 +2020,10,16,13,0,25.3,1.24,0.0762,0.61,0,0,0,0,23.400000000000002,0,0,0,0,0.266,89.15,120.41,0.14,989,4.6000000000000005,222,0.9 +2020,10,16,14,0,25.3,1.25,0.0758,0.61,0,0,0,0,23.1,0,0,0,0,0.267,87.84,135.2,0.14,990,4.6000000000000005,224,0.9 +2020,10,16,15,0,25.200000000000003,1.26,0.0786,0.61,0,0,0,7,23,0,0,0,0,0.268,87.54,149.9,0.14,990,4.6000000000000005,228,0.9 +2020,10,16,16,0,25,1.27,0.0847,0.61,0,0,0,7,22.900000000000002,0,0,0,0,0.269,88.14,164.22,0.14,990,4.7,230,0.9 +2020,10,16,17,0,24.8,1.27,0.09380000000000001,0.61,0,0,0,7,22.900000000000002,0,0,0,0,0.269,88.95,174.02,0.14,989,4.800000000000001,233,0.8 +2020,10,16,18,0,24.6,1.25,0.10590000000000001,0.61,0,0,0,7,22.8,0,0,0,0,0.269,89.93,163.66,0.14,988,4.9,233,0.9 +2020,10,16,19,0,24.3,1.23,0.1179,0.61,0,0,0,7,22.900000000000002,0,0,0,0,0.268,91.73,149.31,0.14,988,5,231,0.9 +2020,10,16,20,0,24,1.22,0.1258,0.61,0,0,0,7,22.900000000000002,0,0,0,0,0.268,93.68,134.6,0.14,988,5.1000000000000005,225,1 +2020,10,16,21,0,23.8,1.21,0.1278,0.61,0,0,0,8,23,0,0,0,0,0.268,95.09,119.82000000000001,0.14,988,5.2,222,0.9 +2020,10,16,22,0,23.8,1.22,0.12490000000000001,0.61,0,0,0,3,23,0,0,0,0,0.268,95.21000000000001,105.02,0.14,988,5.300000000000001,221,0.9 +2020,10,16,23,0,24.1,1.24,0.11960000000000001,0.61,0,0,0,0,23.200000000000003,0,0,0,0,0.268,94.79,89.74,0.14,988,5.300000000000001,217,0.9 +2020,10,17,0,0,25.8,1.26,0.11520000000000001,0.61,65,503,192,0,24.1,65,503,0,192,0.268,90.44,75.41,0.14,989,5.2,214,1.4000000000000001 +2020,10,17,1,0,27,1.29,0.10980000000000001,0.61,92,717,442,0,24.1,92,717,0,442,0.268,84.23,60.77,0.14,990,5.2,209,1.9000000000000001 +2020,10,17,2,0,27.8,1.31,0.10540000000000001,0.61,107,819,673,8,23.700000000000003,275,435,0,576,0.268,78.45,46.27,0.14,990,5.2,210,2.3000000000000003 +2020,10,17,3,0,28.5,1.16,0.1394,0.61,135,844,849,8,23.3,337,489,0,751,0.267,73.42,32.160000000000004,0.14,990,5.2,212,2.4000000000000004 +2020,10,17,4,0,29.1,1.17,0.1341,0.61,139,875,964,7,23,475,290,0,749,0.267,69.73,19.34,0.14,989,5.300000000000001,215,2.6 +2020,10,17,5,0,29.5,1.18,0.1317,0.61,139,885,1003,3,22.900000000000002,515,191,0,701,0.266,67.81,12.68,0.14,989,5.300000000000001,220,2.7 +2020,10,17,6,0,29.8,1.16,0.1663,0.61,154,852,955,7,23,417,421,0,813,0.265,66.89,19.85,0.14,988,5.300000000000001,225,2.7 +2020,10,17,7,0,29.8,1.1500000000000001,0.17320000000000002,0.61,150,816,835,7,23.1,398,329,0,675,0.264,67.45,32.77,0.14,988,5.4,229,2.6 +2020,10,17,8,0,29.5,1.1500000000000001,0.1819,0.61,139,749,651,8,23.3,231,537,0,597,0.263,69.44,46.910000000000004,0.14,987,5.4,232,2.4000000000000004 +2020,10,17,9,0,28.900000000000002,1.1500000000000001,0.186,0.61,118,632,420,8,23.700000000000003,175,399,0,366,0.262,73.56,61.410000000000004,0.14,988,5.4,235,1.8 +2020,10,17,10,0,27.8,1.1500000000000001,0.1867,0.61,77,402,174,0,24,77,402,0,174,0.262,80.07000000000001,76.06,0.14,988,5.4,236,1.3 +2020,10,17,11,0,26.6,1.1400000000000001,0.18530000000000002,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.263,86.57000000000001,90.87,0.14,988,5.4,233,0.8 +2020,10,17,12,0,26.3,1.12,0.18380000000000002,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.263,86.49,105.66,0.14,989,5.300000000000001,230,0.8 +2020,10,17,13,0,26.200000000000003,1.1,0.1819,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.264,86.06,120.45,0.14,990,5.300000000000001,229,0.8 +2020,10,17,14,0,26.200000000000003,1.07,0.1789,0.61,0,0,0,7,23.6,0,0,0,0,0.265,85.48,135.22,0.14,990,5.4,230,0.8 +2020,10,17,15,0,26,1.04,0.1757,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.266,86.95,149.88,0.14,991,5.6000000000000005,230,0.8 +2020,10,17,16,0,25.6,1.02,0.1782,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.267,90.08,164.13,0.14,991,5.800000000000001,231,0.9 +2020,10,17,17,0,25.200000000000003,1.01,0.1845,0.61,0,0,0,3,24.1,0,0,0,0,0.267,93.61,173.65,0.14,990,5.9,234,1 +2020,10,17,18,0,25,1.02,0.1905,0.61,0,0,0,3,24.200000000000003,0,0,0,0,0.267,95.16,163.49,0.14,989,6,236,1.2000000000000002 +2020,10,17,19,0,24.900000000000002,1.04,0.1897,0.61,0,0,0,3,24.200000000000003,0,0,0,0,0.267,95.68,149.20000000000002,0.14,989,6,234,1.2000000000000002 +2020,10,17,20,0,24.8,1.05,0.17830000000000001,0.61,0,0,0,0,24.1,0,0,0,0,0.268,96.01,134.53,0.14,989,5.9,232,1.2000000000000002 +2020,10,17,21,0,24.700000000000003,1.09,0.1646,0.61,0,0,0,0,24,0,0,0,0,0.268,95.9,119.76,0.14,989,5.800000000000001,232,1 +2020,10,17,22,0,24.700000000000003,1.12,0.1481,0.61,0,0,0,0,23.8,0,0,0,0,0.268,94.95,104.97,0.14,989,5.7,233,0.9 +2020,10,17,23,0,24.900000000000002,1.1400000000000001,0.1359,0.61,0,0,0,3,23.900000000000002,0,0,3,0,0.268,94.04,89.72,0.14,990,5.6000000000000005,237,0.7000000000000001 +2020,10,18,0,0,26.1,1.16,0.12890000000000001,0.61,69,481,190,8,24.700000000000003,80,359,0,171,0.268,91.77,75.4,0.14,991,5.5,235,0.9 +2020,10,18,1,0,27.1,1.19,0.1221,0.61,98,701,440,8,24.5,165,466,0,392,0.267,85.9,60.78,0.14,991,5.5,235,1.1 +2020,10,18,2,0,28,1.21,0.1189,0.61,114,804,670,7,24.1,291,385,0,558,0.267,79.42,46.31,0.14,992,5.5,239,1.1 +2020,10,18,3,0,28.700000000000003,1.22,0.1197,0.61,125,857,850,7,23.6,407,307,0,667,0.267,73.79,32.25,0.14,992,5.5,242,1.3 +2020,10,18,4,0,29,1.24,0.1139,0.61,128,889,966,7,23.200000000000003,466,318,0,766,0.267,70.9,19.54,0.14,991,5.4,246,1.6 +2020,10,18,5,0,29.3,1.26,0.10550000000000001,0.61,126,903,1006,6,22.900000000000002,514,166,0,676,0.267,68.63,13.040000000000001,0.14,990,5.4,251,1.8 +2020,10,18,6,0,29.5,1.28,0.0974,0.61,119,901,965,7,22.700000000000003,441,369,0,788,0.267,66.98,20.12,0.14,989,5.4,256,1.8 +2020,10,18,7,0,29.700000000000003,1.31,0.0911,0.61,110,879,848,7,22.5,411,275,0,642,0.267,65.45,32.95,0.14,988,5.4,261,1.8 +2020,10,18,8,0,29.5,1.32,0.0911,0.61,100,828,665,7,22.6,283,396,0,554,0.267,66.39,47.04,0.14,988,5.300000000000001,264,1.5 +2020,10,18,9,0,29.200000000000003,1.32,0.09290000000000001,0.61,85,728,433,7,22.6,182,361,0,354,0.267,67.5,61.52,0.14,988,5.300000000000001,267,1.2000000000000002 +2020,10,18,10,0,28.3,1.32,0.0931,0.61,58,518,182,7,22.900000000000002,92,119,3,120,0.267,72.37,76.14,0.14,989,5.300000000000001,270,0.8 +2020,10,18,11,0,27.400000000000002,1.34,0.0912,0.61,0,0,0,7,23,0,0,0,0,0.267,77.12,90.94,0.14,989,5.300000000000001,269,0.6000000000000001 +2020,10,18,12,0,27.3,1.36,0.08950000000000001,0.61,0,0,0,7,22.5,0,0,0,0,0.268,75.01,105.71000000000001,0.14,990,5.300000000000001,270,0.6000000000000001 +2020,10,18,13,0,27.3,1.37,0.09000000000000001,0.61,0,0,0,7,22.1,0,0,0,0,0.269,73.25,120.49000000000001,0.14,991,5.300000000000001,287,0.5 +2020,10,18,14,0,27.200000000000003,1.37,0.0917,0.61,0,0,0,8,21.900000000000002,0,0,0,0,0.27,72.87,135.23,0.14,991,5.300000000000001,327,0.4 +2020,10,18,15,0,26.700000000000003,1.3800000000000001,0.09290000000000001,0.61,0,0,0,7,22,0,0,0,0,0.271,75.49,149.86,0.14,991,5.300000000000001,360,0.5 +2020,10,18,16,0,26.200000000000003,1.3800000000000001,0.0951,0.61,0,0,0,7,22.1,0,0,0,0,0.272,78.19,164.03,0.14,991,5.300000000000001,23,0.5 +2020,10,18,17,0,25.8,1.3900000000000001,0.09620000000000001,0.61,0,0,0,7,22.1,0,0,0,0,0.273,80.27,173.29,0.14,990,5.300000000000001,48,0.6000000000000001 +2020,10,18,18,0,25.200000000000003,1.3900000000000001,0.0976,0.61,0,0,0,7,22.3,0,0,0,0,0.272,83.85000000000001,163.31,0.14,989,5.300000000000001,60,0.7000000000000001 +2020,10,18,19,0,24.6,1.3800000000000001,0.0998,0.61,0,0,0,7,22.400000000000002,0,0,0,0,0.272,87.53,149.09,0.14,989,5.2,61,0.8 +2020,10,18,20,0,24.1,1.3800000000000001,0.10260000000000001,0.61,0,0,0,8,22.400000000000002,0,0,0,0,0.272,90.24,134.45,0.14,989,5.2,57,0.8 +2020,10,18,21,0,23.8,1.3800000000000001,0.10640000000000001,0.61,0,0,0,7,22.400000000000002,0,0,0,0,0.272,91.63,119.7,0.14,989,5.2,53,0.8 +2020,10,18,22,0,23.6,1.37,0.11410000000000001,0.61,0,0,0,7,22.400000000000002,0,0,0,0,0.271,92.74,104.93,0.14,989,5.2,52,0.8 +2020,10,18,23,0,23.8,1.37,0.1213,0.61,0,0,0,8,22.700000000000003,0,0,3,0,0.271,93.5,89.7,0.14,990,5.300000000000001,57,0.8 +2020,10,19,0,0,24.900000000000002,1.37,0.1274,0.61,67,490,191,7,23.200000000000003,96,161,3,137,0.27,90.37,75.39,0.14,991,5.4,68,1.2000000000000002 +2020,10,19,1,0,26.1,1.36,0.1331,0.61,100,693,439,7,23.400000000000002,181,392,0,373,0.27,85.17,60.79,0.14,991,5.4,92,1.2000000000000002 +2020,10,19,2,0,27.400000000000002,1.37,0.1386,0.61,120,790,665,8,23.6,262,465,0,583,0.27,80.01,46.35,0.14,991,5.5,116,1.1 +2020,10,19,3,0,28.200000000000003,1.36,0.23870000000000002,0.61,175,775,830,8,23.8,392,356,0,693,0.269,77.08,32.35,0.14,991,5.5,122,1 +2020,10,19,4,0,28.8,1.35,0.2393,0.61,185,807,944,7,23.8,448,360,0,787,0.267,74.47,19.75,0.14,990,5.5,119,0.8 +2020,10,19,5,0,29,1.36,0.2396,0.61,187,816,981,0,23.8,187,816,0,981,0.266,73.54,13.4,0.14,989,5.6000000000000005,115,0.7000000000000001 +2020,10,19,6,0,29.1,1.3900000000000001,0.2871,0.61,202,777,931,1,23.8,202,777,0,931,0.264,73.16,20.38,0.14,989,5.6000000000000005,116,0.8 +2020,10,19,7,0,29,1.3900000000000001,0.2843,0.61,192,744,815,3,23.8,423,148,1,547,0.263,73.65,33.13,0.14,988,5.6000000000000005,116,0.8 +2020,10,19,8,0,28.900000000000002,1.3900000000000001,0.2778,0.61,171,681,634,8,24,284,391,0,550,0.262,74.8,47.17,0.14,988,5.7,116,0.8 +2020,10,19,9,0,28.8,1.4000000000000001,0.27090000000000003,0.61,138,566,407,8,24.400000000000002,165,10,0,170,0.261,77.02,61.620000000000005,0.14,988,5.7,107,0.7000000000000001 +2020,10,19,10,0,28.3,1.4000000000000001,0.26780000000000004,0.61,84,338,165,8,24.200000000000003,71,0,3,71,0.262,78.47,76.22,0.14,989,5.7,102,0.6000000000000001 +2020,10,19,11,0,27.6,1.41,0.26130000000000003,0.61,0,0,0,8,24,0,0,0,0,0.262,80.54,91,0.14,989,5.7,114,0.5 +2020,10,19,12,0,27.400000000000002,1.41,0.25720000000000004,0.61,0,0,0,3,23.5,0,0,0,0,0.263,79.17,105.76,0.14,990,5.7,110,0.5 +2020,10,19,13,0,27.3,1.41,0.2529,0.61,0,0,0,6,23.200000000000003,0,0,0,0,0.264,78.48,120.52,0.14,991,5.7,71,0.4 +2020,10,19,14,0,26.900000000000002,1.42,0.2482,0.61,0,0,0,9,23.200000000000003,0,0,0,0,0.265,80.29,135.24,0.14,991,5.7,37,0.4 +2020,10,19,15,0,26.5,1.43,0.24230000000000002,0.61,0,0,0,9,23.3,0,0,0,0,0.266,82.57000000000001,149.84,0.14,991,5.800000000000001,38,0.5 +2020,10,19,16,0,25.900000000000002,1.42,0.2424,0.61,0,0,0,6,23.3,0,0,0,0,0.266,85.49,163.93,0.14,991,5.800000000000001,51,0.6000000000000001 +2020,10,19,17,0,25.400000000000002,1.41,0.2442,0.61,0,0,0,6,23.200000000000003,0,0,0,0,0.266,87.73,172.93,0.14,991,5.800000000000001,65,0.5 +2020,10,19,18,0,25.1,1.4000000000000001,0.25070000000000003,0.61,0,0,0,6,23.1,0,0,0,0,0.266,88.68,163.12,0.14,990,5.800000000000001,76,0.4 +2020,10,19,19,0,24.8,1.4000000000000001,0.25670000000000004,0.61,0,0,0,6,23,0,0,0,0,0.265,89.53,148.98,0.14,990,5.800000000000001,92,0.30000000000000004 +2020,10,19,20,0,24.5,1.3800000000000001,0.2581,0.61,0,0,0,6,22.900000000000002,0,0,0,0,0.264,90.91,134.37,0.14,989,5.800000000000001,123,0.4 +2020,10,19,21,0,24.400000000000002,1.37,0.2664,0.61,0,0,0,6,22.8,0,0,0,0,0.264,90.94,119.65,0.14,989,5.800000000000001,147,0.4 +2020,10,19,22,0,24.3,1.35,0.2635,0.61,0,0,0,6,22.8,0,0,0,0,0.264,91.24,104.89,0.14,990,5.800000000000001,156,0.5 +2020,10,19,23,0,24.3,1.35,0.2479,0.61,0,0,0,6,23,0,0,3,0,0.263,92.21000000000001,89.68,0.14,990,5.9,158,0.5 +2020,10,20,0,0,25.1,1.33,0.2454,0.61,86,369,179,7,23.8,76,0,0,76,0.263,92.44,75.39,0.14,991,5.9,165,0.7000000000000001 +2020,10,20,1,0,26.3,1.33,0.2353,0.61,129,599,421,4,24.1,48,0,0,48,0.263,87.71000000000001,60.81,0.14,992,5.9,168,1 +2020,10,20,2,0,26.8,1.33,0.21610000000000001,0.61,148,727,650,8,23.900000000000002,279,34,0,302,0.263,84.08,46.4,0.14,992,5.9,175,1.3 +2020,10,20,3,0,27.3,1.22,0.16390000000000002,0.61,144,823,839,0,23.700000000000003,144,823,0,839,0.263,80.84,32.45,0.14,992,5.800000000000001,184,1.4000000000000001 +2020,10,20,4,0,27.900000000000002,1.24,0.1642,0.61,152,852,953,3,23.8,410,448,0,831,0.263,78.5,19.96,0.14,991,5.800000000000001,194,1.3 +2020,10,20,5,0,28.400000000000002,1.26,0.15910000000000002,0.61,151,865,990,6,23.900000000000002,510,140,0,647,0.263,76.44,13.76,0.14,990,5.800000000000001,215,1.3 +2020,10,20,6,0,28.5,1.25,0.16870000000000002,0.61,154,848,947,3,23.8,489,178,0,655,0.263,75.92,20.650000000000002,0.14,989,5.9,231,1.3 +2020,10,20,7,0,28.400000000000002,1.27,0.168,0.61,146,818,829,7,23.8,420,215,0,600,0.263,76.35000000000001,33.31,0.14,989,5.9,236,1.3 +2020,10,20,8,0,28.1,1.28,0.16540000000000002,0.61,131,761,647,1,23.900000000000002,131,761,0,647,0.263,77.79,47.300000000000004,0.14,988,5.9,234,1.3 +2020,10,20,9,0,27.6,1.3,0.1709,0.61,111,645,417,8,24.200000000000003,177,22,0,187,0.263,81.73,61.72,0.14,988,5.9,232,1.2000000000000002 +2020,10,20,10,0,26.900000000000002,1.31,0.17220000000000002,0.61,73,417,171,0,24.3,73,417,0,171,0.263,85.82000000000001,76.3,0.14,989,5.9,233,1.1 +2020,10,20,11,0,25.900000000000002,1.33,0.163,0.61,0,0,0,0,24.400000000000002,0,0,0,0,0.263,91.58,91.06,0.14,989,5.800000000000001,238,0.8 +2020,10,20,12,0,25.5,1.34,0.1587,0.61,0,0,0,8,24.1,0,0,0,0,0.264,92.02,105.8,0.14,990,5.800000000000001,243,0.7000000000000001 +2020,10,20,13,0,25.3,1.34,0.15910000000000002,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.265,91.75,120.54,0.14,991,5.800000000000001,242,0.7000000000000001 +2020,10,20,14,0,25.3,1.34,0.1622,0.61,0,0,0,7,23.6,0,0,0,0,0.266,90.53,135.24,0.14,991,5.9,238,0.7000000000000001 +2020,10,20,15,0,25.200000000000003,1.33,0.1711,0.61,0,0,0,6,23.5,0,0,0,0,0.267,90.38,149.81,0.14,992,6,232,0.7000000000000001 +2020,10,20,16,0,25.1,1.32,0.1786,0.61,0,0,0,6,23.400000000000002,0,0,0,0,0.267,90.54,163.81,0.14,991,6.1000000000000005,228,0.7000000000000001 +2020,10,20,17,0,24.900000000000002,1.31,0.1776,0.61,0,0,0,9,23.400000000000002,0,0,0,0,0.267,91.39,172.57,0.14,991,6.1000000000000005,230,0.7000000000000001 +2020,10,20,18,0,24.8,1.3,0.1771,0.61,0,0,0,9,23.3,0,0,0,0,0.266,91.60000000000001,162.94,0.14,990,6.1000000000000005,234,0.8 +2020,10,20,19,0,24.700000000000003,1.3,0.1632,0.61,0,0,0,6,23.3,0,0,0,0,0.265,91.71000000000001,148.87,0.14,989,6.1000000000000005,236,0.7000000000000001 +2020,10,20,20,0,24.5,1.3,0.14450000000000002,0.61,0,0,0,6,23.1,0,0,0,0,0.265,91.99,134.29,0.14,990,6,244,0.6000000000000001 +2020,10,20,21,0,24.3,1.32,0.1373,0.61,0,0,0,6,22.900000000000002,0,0,0,0,0.264,92.13,119.59,0.14,990,5.9,244,0.6000000000000001 +2020,10,20,22,0,24.200000000000003,1.34,0.11860000000000001,0.61,0,0,0,8,22.700000000000003,0,0,0,0,0.265,91.45,104.86,0.14,990,5.800000000000001,224,0.5 +2020,10,20,23,0,24.200000000000003,1.36,0.10300000000000001,0.61,0,0,0,8,22.700000000000003,0,0,3,0,0.265,91.3,89.66,0.14,991,5.7,212,0.4 +2020,10,21,0,0,24.8,1.3800000000000001,0.0985,0.61,60,526,193,0,23.200000000000003,60,526,0,193,0.265,90.69,75.39,0.14,991,5.6000000000000005,195,0.4 +2020,10,21,1,0,26.200000000000003,1.3900000000000001,0.0979,0.61,87,729,442,0,22.900000000000002,87,729,0,442,0.265,82.06,60.83,0.14,992,5.6000000000000005,211,0.4 +2020,10,21,2,0,28.1,1.4000000000000001,0.0988,0.61,104,824,672,3,22.900000000000002,331,157,3,439,0.265,73.23,46.45,0.14,992,5.5,279,0.4 +2020,10,21,3,0,28.900000000000002,1.02,0.2175,0.61,171,783,830,4,22.6,377,49,0,418,0.265,69.01,32.56,0.14,992,5.6000000000000005,320,0.8 +2020,10,21,4,0,29.5,1.03,0.2122,0.61,177,818,945,0,23.1,177,818,0,945,0.264,68.51,20.17,0.14,991,5.6000000000000005,320,1.2000000000000002 +2020,10,21,5,0,29.8,1.04,0.20450000000000002,0.61,175,832,982,8,23.5,446,396,0,830,0.262,69.05,14.120000000000001,0.14,990,5.7,317,1.4000000000000001 +2020,10,21,6,0,29.8,1.08,0.2556,0.61,195,789,932,8,23.8,328,19,0,346,0.261,70.2,20.92,0.14,989,5.800000000000001,317,1.6 +2020,10,21,7,0,29.6,1.11,0.2551,0.61,184,755,814,8,24,291,18,0,306,0.26,71.95,33.480000000000004,0.14,989,5.800000000000001,314,1.7000000000000002 +2020,10,21,8,0,29.3,1.1300000000000001,0.24450000000000002,0.61,162,696,633,6,24.200000000000003,281,40,0,308,0.259,74.12,47.43,0.14,988,5.9,309,1.7000000000000002 +2020,10,21,9,0,28.5,1.16,0.24730000000000002,0.61,134,573,405,6,24.8,134,0,0,134,0.259,80.53,61.82,0.14,988,5.9,308,1.5 +2020,10,21,10,0,27.5,1.19,0.2444,0.61,84,342,164,6,24.900000000000002,9,0,3,9,0.259,85.84,76.38,0.14,988,5.9,312,1.3 +2020,10,21,11,0,26.400000000000002,1.2,0.2364,0.61,0,0,0,6,25.1,0,0,0,0,0.26,92.79,91.12,0.14,989,5.9,322,0.9 +2020,10,21,12,0,26.1,1.22,0.2305,0.61,0,0,0,6,25,0,0,0,0,0.26,93.47,105.84,0.14,990,5.9,347,0.8 +2020,10,21,13,0,25.700000000000003,1.23,0.2184,0.61,0,0,0,6,24.8,0,0,0,0,0.261,94.64,120.57000000000001,0.14,990,5.9,21,0.9 +2020,10,21,14,0,25.3,1.24,0.20170000000000002,0.61,0,0,0,6,24.6,0,0,0,0,0.261,95.8,135.24,0.14,991,5.9,41,0.9 +2020,10,21,15,0,25,1.24,0.19190000000000002,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.262,96.27,149.77,0.14,991,5.800000000000001,53,0.8 +2020,10,21,16,0,25,1.24,0.1821,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.261,95.15,163.68,0.14,991,5.800000000000001,56,0.7000000000000001 +2020,10,21,17,0,25,1.24,0.1685,0.61,0,0,0,7,24,0,0,0,0,0.261,93.99,172.21,0.14,990,5.7,17,0.7000000000000001 +2020,10,21,18,0,24.700000000000003,1.22,0.16040000000000001,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.26,95.18,162.75,0.14,990,5.7,304,0.9 +2020,10,21,19,0,24.3,1.19,0.1537,0.61,0,0,0,6,23.8,0,0,0,0,0.26,97.12,148.76,0.14,990,5.7,280,1 +2020,10,21,20,0,24.1,1.16,0.1448,0.61,0,0,0,6,23.8,0,0,0,0,0.259,97.99000000000001,134.22,0.14,989,5.7,270,1.1 +2020,10,21,21,0,24.1,1.16,0.13390000000000002,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.259,97.83,119.54,0.14,990,5.7,267,1.1 +2020,10,21,22,0,24.1,1.17,0.12050000000000001,0.61,0,0,0,7,23.6,0,0,0,0,0.26,97.08,104.82000000000001,0.14,990,5.7,270,1.1 +2020,10,21,23,0,24.200000000000003,1.2,0.10940000000000001,0.61,0,0,0,7,23.700000000000003,0,0,3,0,0.259,97.13,89.64,0.14,991,5.7,273,1 +2020,10,22,0,0,25.3,1.24,0.1076,0.61,63,511,192,7,24.400000000000002,56,0,0,56,0.259,94.73,75.39,0.14,992,5.7,278,1.5 +2020,10,22,1,0,25.900000000000002,1.27,0.10740000000000001,0.61,91,717,440,7,24.400000000000002,86,0,0,86,0.26,91.29,60.85,0.14,992,5.7,289,1.9000000000000001 +2020,10,22,2,0,26.6,1.3,0.10400000000000001,0.61,105,818,668,7,24.200000000000003,164,1,0,164,0.26,86.56,46.51,0.14,993,5.7,292,2.2 +2020,10,22,3,0,27.3,1.34,0.1,0.61,113,873,848,7,23.900000000000002,423,228,0,614,0.26,81.87,32.67,0.14,993,5.7,295,2.5 +2020,10,22,4,0,27.900000000000002,1.37,0.097,0.61,117,901,962,6,23.8,445,60,0,501,0.26,78.35000000000001,20.39,0.14,992,5.7,297,2.9000000000000004 +2020,10,22,5,0,28.200000000000003,1.37,0.0976,0.61,120,908,999,6,23.700000000000003,504,120,0,620,0.259,76.66,14.47,0.14,991,5.800000000000001,296,3.2 +2020,10,22,6,0,28.3,1.34,0.10110000000000001,0.61,120,897,956,6,23.6,486,153,0,629,0.259,75.86,21.18,0.14,990,5.800000000000001,294,3.4000000000000004 +2020,10,22,7,0,28.1,1.28,0.1085,0.61,118,863,836,6,23.5,377,53,0,422,0.258,76.33,33.660000000000004,0.14,990,5.9,293,3.4000000000000004 +2020,10,22,8,0,27.6,1.23,0.11420000000000001,0.61,110,802,652,6,23.5,238,16,0,248,0.258,78.35000000000001,47.550000000000004,0.14,990,5.9,290,3.1 +2020,10,22,9,0,26.900000000000002,1.21,0.12090000000000001,0.61,95,691,421,6,23.700000000000003,117,0,0,117,0.258,82.51,61.92,0.14,990,5.9,286,2.5 +2020,10,22,10,0,26,1.22,0.1211,0.61,64,470,174,6,23.900000000000002,55,0,3,55,0.258,88.06,76.45,0.14,990,5.800000000000001,281,1.8 +2020,10,22,11,0,25.1,1.22,0.12010000000000001,0.61,0,0,0,6,23.900000000000002,0,0,0,0,0.259,93.09,91.18,0.14,991,5.7,278,1.2000000000000002 +2020,10,22,12,0,24.8,1.22,0.1211,0.61,0,0,0,6,23.8,0,0,0,0,0.26,93.93,105.88,0.14,992,5.7,277,1.1 +2020,10,22,13,0,24.700000000000003,1.23,0.12150000000000001,0.61,0,0,0,6,23.6,0,0,0,0,0.261,93.78,120.58,0.14,992,5.6000000000000005,283,1 +2020,10,22,14,0,24.5,1.24,0.1187,0.61,0,0,0,6,23.5,0,0,0,0,0.262,94.17,135.24,0.14,993,5.6000000000000005,293,1 +2020,10,22,15,0,24.3,1.26,0.1143,0.61,0,0,0,7,23.3,0,0,0,0,0.263,94.41,149.72,0.14,993,5.5,299,1 +2020,10,22,16,0,24.1,1.27,0.11080000000000001,0.61,0,0,0,4,23.200000000000003,0,0,0,0,0.264,94.59,163.55,0.14,992,5.5,300,0.9 +2020,10,22,17,0,24,1.28,0.1085,0.61,0,0,0,8,23.1,0,0,0,0,0.265,94.47,171.86,0.14,992,5.4,305,0.9 +2020,10,22,18,0,23.8,1.3,0.1052,0.61,0,0,0,4,22.900000000000002,0,0,0,0,0.264,94.96000000000001,162.57,0.14,991,5.4,306,0.9 +2020,10,22,19,0,23.6,1.32,0.10070000000000001,0.61,0,0,0,8,22.8,0,0,0,0,0.264,95.22,148.65,0.14,990,5.300000000000001,303,0.9 +2020,10,22,20,0,23.400000000000002,1.33,0.09720000000000001,0.61,0,0,0,8,22.6,0,0,0,0,0.263,95.5,134.14000000000001,0.14,990,5.300000000000001,299,0.8 +2020,10,22,21,0,23.400000000000002,1.34,0.0936,0.61,0,0,0,8,22.400000000000002,0,0,1,0,0.263,94.32000000000001,119.49000000000001,0.14,990,5.300000000000001,287,0.8 +2020,10,22,22,0,23.400000000000002,1.36,0.0893,0.61,0,0,0,8,22.200000000000003,0,0,0,0,0.263,93.10000000000001,104.79,0.14,990,5.300000000000001,275,0.7000000000000001 +2020,10,22,23,0,23.6,1.37,0.0872,0.61,0,0,0,7,22.400000000000002,0,0,3,0,0.262,93.09,89.63,0.14,991,5.2,280,0.6000000000000001 +2020,10,23,0,0,25.200000000000003,1.3900000000000001,0.0848,0.61,58,548,196,7,22.900000000000002,92,230,0,150,0.262,86.89,75.39,0.14,991,5.300000000000001,303,0.9 +2020,10,23,1,0,27.1,1.4000000000000001,0.0835,0.61,82,747,446,7,22.400000000000002,194,325,0,353,0.261,75.41,60.88,0.14,992,5.300000000000001,306,1.4000000000000001 +2020,10,23,2,0,28.200000000000003,1.42,0.08320000000000001,0.61,97,840,674,7,21.900000000000002,324,239,0,488,0.261,68.81,46.57,0.14,992,5.300000000000001,305,1.7000000000000002 +2020,10,23,3,0,28.900000000000002,1.42,0.0844,0.61,106,889,853,7,22.3,419,247,0,627,0.26,67.44,32.78,0.14,992,5.300000000000001,303,1.7000000000000002 +2020,10,23,4,0,29.400000000000002,1.42,0.0877,0.61,113,911,965,7,22.6,479,260,0,722,0.26,66.94,20.61,0.14,991,5.4,302,1.8 +2020,10,23,5,0,29.700000000000003,1.4000000000000001,0.09330000000000001,0.61,117,913,1000,7,22.900000000000002,451,384,0,822,0.26,67.09,14.83,0.14,990,5.5,297,1.9000000000000001 +2020,10,23,6,0,29.6,1.37,0.0998,0.61,119,899,956,7,23.200000000000003,460,318,0,756,0.259,68.68,21.44,0.14,990,5.6000000000000005,293,1.9000000000000001 +2020,10,23,7,0,29.200000000000003,1.35,0.10640000000000001,0.61,116,865,835,7,23.5,406,281,0,639,0.259,71.41,33.83,0.14,989,5.800000000000001,289,2 +2020,10,23,8,0,28.700000000000003,1.32,0.11330000000000001,0.61,109,805,650,6,23.900000000000002,318,117,0,397,0.259,75.12,47.68,0.14,989,5.800000000000001,284,2 +2020,10,23,9,0,27.900000000000002,1.29,0.1371,0.61,100,676,417,6,24.3,195,60,1,223,0.259,80.78,62.01,0.14,989,5.9,276,1.7000000000000002 +2020,10,23,10,0,26.900000000000002,1.28,0.1451,0.61,68,440,170,6,24.6,59,0,3,59,0.26,87.15,76.52,0.14,990,6,269,1.4000000000000001 +2020,10,23,11,0,25.8,1.27,0.1416,0.61,0,0,0,6,24.8,0,0,0,0,0.26,94.45,91.23,0.14,991,6,263,1 +2020,10,23,12,0,25.5,1.27,0.1364,0.61,0,0,0,7,24.8,0,0,0,0,0.262,95.65,105.92,0.14,991,5.9,263,0.9 +2020,10,23,13,0,25.3,1.25,0.1318,0.61,0,0,0,8,24.700000000000003,0,0,0,0,0.263,96.26,120.60000000000001,0.14,992,5.9,266,0.8 +2020,10,23,14,0,25.200000000000003,1.24,0.126,0.61,0,0,0,7,24.5,0,0,0,0,0.265,96.14,135.23,0.14,992,5.800000000000001,270,0.8 +2020,10,23,15,0,25.1,1.23,0.1242,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.266,96.03,149.67000000000002,0.14,992,5.800000000000001,274,0.7000000000000001 +2020,10,23,16,0,25.1,1.22,0.12510000000000002,0.61,0,0,0,6,24.3,0,0,0,0,0.267,95.35000000000001,163.41,0.14,992,5.800000000000001,278,0.7000000000000001 +2020,10,23,17,0,25.1,1.2,0.1274,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.267,94.77,171.51,0.14,992,5.800000000000001,275,0.7000000000000001 +2020,10,23,18,0,24.900000000000002,1.19,0.13670000000000002,0.61,0,0,0,6,24.1,0,0,0,0,0.267,95.2,162.38,0.14,991,5.800000000000001,258,0.6000000000000001 +2020,10,23,19,0,24.700000000000003,1.19,0.1416,0.61,0,0,0,6,24,0,0,0,0,0.266,95.64,148.53,0.14,990,5.800000000000001,248,0.7000000000000001 +2020,10,23,20,0,24.400000000000002,1.19,0.13540000000000002,0.61,0,0,0,7,23.8,0,0,0,0,0.266,96.69,134.07,0.14,990,5.800000000000001,255,0.7000000000000001 +2020,10,23,21,0,24.3,1.21,0.1326,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.266,96.61,119.44,0.14,991,5.800000000000001,261,0.8 +2020,10,23,22,0,24.1,1.22,0.12610000000000002,0.61,0,0,0,7,23.6,0,0,0,0,0.266,96.79,104.76,0.14,991,5.7,264,0.8 +2020,10,23,23,0,24.200000000000003,1.23,0.12000000000000001,0.61,0,0,0,7,23.700000000000003,0,0,3,0,0.266,96.91,89.62,0.14,992,5.7,266,0.8 +2020,10,24,0,0,25.3,1.24,0.11720000000000001,0.61,65,499,191,0,24.3,65,499,0,191,0.267,94.39,75.4,0.14,992,5.7,272,1.1 +2020,10,24,1,0,26.3,1.25,0.11510000000000001,0.61,94,709,438,7,24.200000000000003,176,418,0,379,0.267,88,60.910000000000004,0.14,993,5.7,284,1.5 +2020,10,24,2,0,27.1,1.25,0.1148,0.61,111,808,665,7,23.8,296,365,0,547,0.267,82.4,46.64,0.14,993,5.7,282,1.7000000000000002 +2020,10,24,3,0,27.900000000000002,1.25,0.1371,0.61,132,844,840,7,23.700000000000003,393,348,0,685,0.266,78.13,32.9,0.14,993,5.800000000000001,279,1.6 +2020,10,24,4,0,28.400000000000002,1.26,0.1341,0.61,137,874,953,7,23.700000000000003,461,324,0,764,0.265,75.73,20.84,0.14,992,5.800000000000001,275,1.6 +2020,10,24,5,0,28.6,1.26,0.1301,0.61,137,885,991,7,23.6,497,267,0,755,0.264,74.5,15.17,0.14,991,5.800000000000001,267,1.6 +2020,10,24,6,0,28.5,1.23,0.1945,0.61,165,830,937,8,23.6,451,348,0,774,0.263,74.9,21.7,0.14,990,5.9,259,1.7000000000000002 +2020,10,24,7,0,28.1,1.21,0.1938,0.61,157,798,818,6,23.6,279,16,0,293,0.263,76.77,34,0.14,990,6,252,1.8 +2020,10,24,8,0,27.700000000000003,1.21,0.1893,0.61,140,738,636,6,23.8,309,83,0,365,0.262,79.31,47.800000000000004,0.14,989,6,247,1.7000000000000002 +2020,10,24,9,0,27.1,1.21,0.18810000000000002,0.61,116,624,408,6,24.200000000000003,158,6,0,161,0.262,84.07000000000001,62.1,0.14,990,6,246,1.4000000000000001 +2020,10,24,10,0,26.3,1.21,0.18780000000000002,0.61,75,390,165,7,24.200000000000003,84,216,3,134,0.262,88.35000000000001,76.59,0.14,990,6,249,1.1 +2020,10,24,11,0,25.400000000000002,1.22,0.1816,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.263,94.06,91.28,0.14,991,6,250,0.7000000000000001 +2020,10,24,12,0,25,1.23,0.1764,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.264,95.44,105.95,0.14,992,6,254,0.7000000000000001 +2020,10,24,13,0,24.8,1.23,0.1728,0.61,0,0,0,7,24.1,0,0,0,0,0.264,95.82000000000001,120.61,0.14,992,6,257,0.7000000000000001 +2020,10,24,14,0,24.6,1.23,0.1726,0.61,0,0,0,7,24,0,0,0,0,0.264,96.49000000000001,135.21,0.14,993,6,259,0.7000000000000001 +2020,10,24,15,0,24.400000000000002,1.22,0.17470000000000002,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.264,97.13,149.62,0.14,993,6,260,0.8 +2020,10,24,16,0,24.200000000000003,1.22,0.1757,0.61,0,0,0,8,23.8,0,0,0,0,0.263,97.63,163.26,0.14,992,6,262,0.8 +2020,10,24,17,0,24,1.22,0.1773,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.263,98.15,171.16,0.14,992,6,268,0.9 +2020,10,24,18,0,23.900000000000002,1.22,0.18580000000000002,0.61,0,0,0,8,23.6,0,0,0,0,0.262,98.08,162.19,0.14,991,6,278,0.9 +2020,10,24,19,0,23.8,1.22,0.1953,0.61,0,0,0,7,23.5,0,0,0,0,0.262,98.13,148.42000000000002,0.14,991,6,285,0.9 +2020,10,24,20,0,23.6,1.22,0.19460000000000002,0.61,0,0,0,3,23.400000000000002,0,0,0,0,0.262,98.53,134,0.14,991,6,287,1 +2020,10,24,21,0,23.5,1.23,0.19190000000000002,0.61,0,0,0,8,23.200000000000003,0,0,0,0,0.262,98.26,119.39,0.14,991,6,282,0.9 +2020,10,24,22,0,23.400000000000002,1.25,0.1849,0.61,0,0,0,3,23.1,0,0,0,0,0.262,98.18,104.73,0.14,992,6,274,0.9 +2020,10,24,23,0,23.5,1.26,0.1752,0.61,0,0,0,1,23.200000000000003,0,0,0,0,0.262,98.24000000000001,89.61,0.14,992,6,269,0.8 +2020,10,25,0,0,24.400000000000002,1.27,0.1713,0.61,76,436,186,3,23.6,92,238,0,152,0.262,95.56,75.41,0.14,993,6.1000000000000005,277,1 +2020,10,25,1,0,25.3,1.28,0.17450000000000002,0.61,113,650,428,7,23.700000000000003,211,98,0,259,0.261,90.74,60.95,0.14,993,6.1000000000000005,314,1 +2020,10,25,2,0,26,1.28,0.1777,0.61,136,754,653,7,23.5,318,268,0,502,0.261,86.09,46.71,0.14,994,6.2,298,1.2000000000000002 +2020,10,25,3,0,26.400000000000002,1.3,0.2147,0.61,165,787,824,7,23.400000000000002,424,208,0,598,0.26,83.58,33.03,0.14,993,6.2,275,1.4000000000000001 +2020,10,25,4,0,26.6,1.29,0.2174,0.61,174,816,936,7,23.400000000000002,480,246,0,711,0.26,82.87,21.06,0.14,993,6.2,265,1.4000000000000001 +2020,10,25,5,0,26.8,1.29,0.2076,0.61,172,832,974,6,23.6,492,98,0,587,0.26,82.66,15.52,0.14,992,6.1000000000000005,261,1.5 +2020,10,25,6,0,27,1.3,0.2306,0.61,179,807,928,6,23.700000000000003,215,10,0,225,0.26,82.37,21.96,0.14,991,6.1000000000000005,258,1.6 +2020,10,25,7,0,27.1,1.31,0.215,0.61,164,785,813,6,23.8,111,0,0,111,0.26,82.3,34.17,0.14,990,6,254,1.7000000000000002 +2020,10,25,8,0,26.900000000000002,1.31,0.19720000000000001,0.61,140,734,632,7,24,296,328,0,516,0.26,83.95,47.92,0.14,990,6,249,1.7000000000000002 +2020,10,25,9,0,26.400000000000002,1.31,0.18660000000000002,0.61,113,628,406,7,24.200000000000003,200,207,0,297,0.26,87.65,62.190000000000005,0.14,990,5.9,246,1.5 +2020,10,25,10,0,25.700000000000003,1.32,0.17650000000000002,0.61,71,406,165,3,24.400000000000002,83,224,3,135,0.26,92.4,76.66,0.14,990,5.800000000000001,244,1 +2020,10,25,11,0,24.900000000000002,1.32,0.16390000000000002,0.61,0,0,0,8,24.1,0,0,0,0,0.261,95.36,91.33,0.14,991,5.800000000000001,242,0.6000000000000001 +2020,10,25,12,0,24.700000000000003,1.32,0.1529,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.261,95.08,105.97,0.14,992,5.7,244,0.6000000000000001 +2020,10,25,13,0,24.6,1.32,0.14120000000000002,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.262,94.63,120.62,0.14,992,5.6000000000000005,251,0.6000000000000001 +2020,10,25,14,0,24.5,1.33,0.13140000000000002,0.61,0,0,0,7,23.5,0,0,0,0,0.262,94.33,135.19,0.14,993,5.6000000000000005,262,0.6000000000000001 +2020,10,25,15,0,24.400000000000002,1.34,0.12480000000000001,0.61,0,0,0,8,23.400000000000002,0,0,0,0,0.263,94.07000000000001,149.56,0.14,993,5.6000000000000005,265,0.7000000000000001 +2020,10,25,16,0,24.200000000000003,1.34,0.12000000000000001,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.264,94.43,163.11,0.14,992,5.5,264,0.7000000000000001 +2020,10,25,17,0,23.900000000000002,1.34,0.1159,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.264,95.65,170.82,0.14,992,5.5,261,0.8 +2020,10,25,18,0,23.700000000000003,1.34,0.11760000000000001,0.61,0,0,0,8,23.1,0,0,0,0,0.264,96.69,162,0.14,991,5.5,261,0.9 +2020,10,25,19,0,23.6,1.33,0.1203,0.61,0,0,0,8,23.200000000000003,0,0,0,0,0.264,97.45,148.32,0.14,991,5.6000000000000005,262,1 +2020,10,25,20,0,23.400000000000002,1.31,0.1218,0.61,0,0,0,3,23.1,0,0,0,0,0.263,98.47,133.92000000000002,0.14,991,5.7,268,1 +2020,10,25,21,0,23.3,1.28,0.1312,0.61,0,0,0,7,23.1,0,0,0,0,0.263,98.52,119.34,0.14,991,5.800000000000001,277,0.9 +2020,10,25,22,0,23.3,1.27,0.1378,0.61,0,0,0,7,23,0,0,0,0,0.262,98.21000000000001,104.7,0.14,992,5.9,285,0.8 +2020,10,25,23,0,23.400000000000002,1.29,0.1312,0.61,0,0,0,7,23.1,0,0,3,0,0.262,98.16,89.61,0.14,992,5.800000000000001,286,0.8 +2020,10,26,0,0,24.200000000000003,1.31,0.1246,0.61,66,491,189,7,23.6,95,46,0,107,0.263,96.32000000000001,75.42,0.14,993,5.800000000000001,287,1.3 +2020,10,26,1,0,24.700000000000003,1.35,0.1153,0.61,93,710,437,7,23.6,208,79,0,246,0.263,93.79,60.99,0.14,993,5.7,292,1.6 +2020,10,26,2,0,25.8,1.37,0.1081,0.61,106,815,665,7,23.6,318,268,0,502,0.264,87.64,46.78,0.14,993,5.7,293,1.8 +2020,10,26,3,0,27,1.3800000000000001,0.1051,0.61,115,870,844,7,23.700000000000003,425,155,0,554,0.265,81.98,33.15,0.14,993,5.6000000000000005,285,1.9000000000000001 +2020,10,26,4,0,27.8,1.3900000000000001,0.10010000000000001,0.61,119,900,958,7,23.8,419,45,0,461,0.265,78.79,21.3,0.14,992,5.6000000000000005,279,2.1 +2020,10,26,5,0,28.1,1.4000000000000001,0.09290000000000001,0.61,117,914,996,7,23.900000000000002,484,85,0,566,0.265,77.96000000000001,15.860000000000001,0.14,992,5.5,277,2.2 +2020,10,26,6,0,28.1,1.42,0.0858,0.61,111,910,954,7,23.900000000000002,424,49,0,469,0.265,77.91,22.22,0.14,991,5.5,275,2.3000000000000003 +2020,10,26,7,0,28,1.43,0.0787,0.61,103,889,837,7,23.700000000000003,395,77,0,458,0.264,77.68,34.34,0.14,990,5.5,271,2.3000000000000003 +2020,10,26,8,0,27.5,1.44,0.0724,0.61,91,843,655,7,23.5,302,72,0,350,0.264,78.92,48.04,0.14,990,5.5,267,2.1 +2020,10,26,9,0,26.900000000000002,1.45,0.0675,0.61,75,753,425,8,23.5,183,330,0,336,0.263,81.64,62.28,0.14,990,5.4,260,1.6 +2020,10,26,10,0,26.1,1.47,0.0634,0.61,50,552,177,7,23.6,74,334,3,151,0.262,86.37,76.72,0.14,990,5.4,254,1 +2020,10,26,11,0,25.1,1.48,0.0608,0.61,0,0,0,6,23.6,0,0,0,0,0.262,91.2,91.37,0.14,991,5.300000000000001,246,0.5 +2020,10,26,12,0,25,1.49,0.059500000000000004,0.61,0,0,0,6,23.200000000000003,0,0,0,0,0.262,89.63,106,0.14,991,5.2,238,0.5 +2020,10,26,13,0,24.900000000000002,1.5,0.058,0.61,0,0,0,7,23,0,0,0,0,0.262,89.10000000000001,120.62,0.14,992,5.1000000000000005,234,0.5 +2020,10,26,14,0,24.6,1.51,0.0568,0.61,0,0,0,7,22.8,0,0,0,0,0.263,89.74,135.17000000000002,0.14,992,5,238,0.6000000000000001 +2020,10,26,15,0,24.3,1.52,0.057600000000000005,0.61,0,0,0,7,22.700000000000003,0,0,0,0,0.264,90.76,149.49,0.14,992,5,246,0.6000000000000001 +2020,10,26,16,0,23.900000000000002,1.52,0.0603,0.61,0,0,0,4,22.6,0,0,0,0,0.265,92.32000000000001,162.95000000000002,0.14,992,5,259,0.6000000000000001 +2020,10,26,17,0,23.700000000000003,1.51,0.0632,0.61,0,0,0,4,22.400000000000002,0,0,0,0,0.265,92.69,170.47,0.14,991,5,272,0.7000000000000001 +2020,10,26,18,0,23.400000000000002,1.51,0.0659,0.61,0,0,0,4,22.3,0,0,0,0,0.264,93.76,161.81,0.14,991,5,283,0.7000000000000001 +2020,10,26,19,0,23.3,1.52,0.067,0.61,0,0,0,8,22.200000000000003,0,0,0,0,0.263,93.63,148.21,0.14,990,5,288,0.7000000000000001 +2020,10,26,20,0,23.1,1.53,0.0663,0.61,0,0,0,8,22.1,0,0,0,0,0.262,94.2,133.85,0.14,990,5,289,0.7000000000000001 +2020,10,26,21,0,23,1.54,0.0673,0.61,0,0,0,3,22,0,0,0,0,0.262,94.18,119.3,0.14,990,5.1000000000000005,288,0.7000000000000001 +2020,10,26,22,0,23,1.54,0.0683,0.61,0,0,0,0,21.900000000000002,0,0,0,0,0.262,93.64,104.68,0.14,990,5.1000000000000005,287,0.7000000000000001 +2020,10,26,23,0,23.3,1.55,0.0683,0.61,0,0,0,0,22.200000000000003,0,0,0,0,0.262,93.27,89.60000000000001,0.14,990,5.1000000000000005,289,0.7000000000000001 +2020,10,27,0,0,25,1.56,0.06910000000000001,0.61,54,574,198,0,22.8,54,574,0,198,0.261,87.84,75.44,0.14,991,5.1000000000000005,290,1.1 +2020,10,27,1,0,26.700000000000003,1.58,0.0693,0.61,76,766,447,8,22.8,200,290,0,340,0.262,79.29,61.03,0.14,992,5.1000000000000005,283,1.4000000000000001 +2020,10,27,2,0,28.1,1.57,0.0733,0.61,91,851,673,4,23.1,311,299,0,516,0.262,74.35000000000001,46.85,0.14,992,5.2,278,1.6 +2020,10,27,3,0,29.1,1.49,0.099,0.61,112,879,847,0,23.5,112,879,0,847,0.262,71.97,33.29,0.14,991,5.2,274,1.9000000000000001 +2020,10,27,4,0,29.8,1.48,0.10600000000000001,0.61,121,900,958,0,23.900000000000002,121,900,0,958,0.262,70.71000000000001,21.53,0.14,991,5.2,270,2.2 +2020,10,27,5,0,30,1.47,0.1135,0.61,126,901,992,8,24.1,470,347,0,803,0.263,70.74,16.2,0.14,990,5.300000000000001,267,2.4000000000000004 +2020,10,27,6,0,30,1.44,0.11620000000000001,0.61,126,890,948,8,24.200000000000003,483,170,0,641,0.263,71.14,22.47,0.14,989,5.300000000000001,265,2.5 +2020,10,27,7,0,29.700000000000003,1.43,0.1221,0.61,123,857,829,3,24.200000000000003,406,264,0,624,0.263,72.41,34.51,0.14,989,5.300000000000001,262,2.4000000000000004 +2020,10,27,8,0,29.3,1.44,0.12100000000000001,0.61,111,801,646,3,24.200000000000003,319,159,0,425,0.263,74.15,48.160000000000004,0.14,988,5.300000000000001,258,2.2 +2020,10,27,9,0,28.700000000000003,1.45,0.1203,0.61,93,696,416,8,24.5,145,510,0,382,0.262,77.99,62.36,0.14,989,5.300000000000001,255,1.8 +2020,10,27,10,0,27.700000000000003,1.47,0.1174,0.61,61,478,170,3,24.700000000000003,81,246,3,137,0.261,83.88,76.78,0.14,989,5.2,251,1.3 +2020,10,27,11,0,26.3,1.49,0.11080000000000001,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.261,90.73,91.41,0.14,990,5.2,245,0.8 +2020,10,27,12,0,25.900000000000002,1.51,0.10550000000000001,0.61,0,0,0,3,24.3,0,0,0,0,0.262,90.68,106.02,0.14,991,5.1000000000000005,244,0.7000000000000001 +2020,10,27,13,0,25.8,1.52,0.1022,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.262,89.4,120.62,0.14,992,5.1000000000000005,247,0.7000000000000001 +2020,10,27,14,0,25.700000000000003,1.52,0.1019,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.263,88.67,135.14000000000001,0.14,992,5.2,250,0.7000000000000001 +2020,10,27,15,0,25.6,1.52,0.10360000000000001,0.61,0,0,0,3,23.5,0,0,0,0,0.264,88.28,149.42000000000002,0.14,992,5.2,252,0.7000000000000001 +2020,10,27,16,0,25.5,1.51,0.108,0.61,0,0,0,0,23.400000000000002,0,0,0,0,0.264,88.14,162.78,0.14,992,5.300000000000001,256,0.7000000000000001 +2020,10,27,17,0,25.3,1.49,0.1149,0.61,0,0,0,0,23.3,0,0,0,0,0.264,88.67,170.14000000000001,0.14,991,5.300000000000001,262,0.7000000000000001 +2020,10,27,18,0,24.900000000000002,1.47,0.1242,0.61,0,0,0,0,23.3,0,0,0,0,0.263,90.64,161.62,0.14,990,5.4,269,0.8 +2020,10,27,19,0,24.6,1.44,0.13770000000000002,0.61,0,0,0,3,23.3,0,0,0,0,0.263,92.63,148.1,0.14,990,5.6000000000000005,273,0.9 +2020,10,27,20,0,24.200000000000003,1.41,0.1565,0.61,0,0,0,3,23.400000000000002,0,0,0,0,0.262,95.25,133.79,0.14,989,5.7,273,1 +2020,10,27,21,0,24,1.37,0.1827,0.61,0,0,0,3,23.5,0,0,0,0,0.262,97.13,119.26,0.14,990,5.9,270,0.9 +2020,10,27,22,0,24,1.33,0.20950000000000002,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.262,97.94,104.66,0.14,990,6,265,0.9 +2020,10,27,23,0,24.200000000000003,1.3,0.2207,0.61,0,0,0,3,23.900000000000002,0,0,3,0,0.261,97.95,89.60000000000001,0.14,991,6.1000000000000005,263,0.9 +2020,10,28,0,0,25,1.3,0.2267,0.61,85,383,181,8,24.400000000000002,97,93,3,121,0.261,96.24000000000001,75.46000000000001,0.14,992,6.1000000000000005,259,1.1 +2020,10,28,1,0,25.700000000000003,1.32,0.21450000000000002,0.61,126,616,423,7,24.5,206,242,0,323,0.261,93.03,61.07,0.14,992,6,259,1.3 +2020,10,28,2,0,26.400000000000002,1.36,0.18580000000000002,0.61,139,751,652,7,24.400000000000002,328,173,0,446,0.261,88.79,46.93,0.14,992,5.9,263,1.3 +2020,10,28,3,0,27.200000000000003,1.43,0.218,0.61,165,790,824,8,24.200000000000003,336,474,0,732,0.261,83.57000000000001,33.42,0.14,992,5.7,264,1.1 +2020,10,28,4,0,27.900000000000002,1.44,0.1967,0.61,164,836,940,8,24.1,405,446,0,819,0.26,79.83,21.76,0.14,991,5.5,262,0.9 +2020,10,28,5,0,28.3,1.45,0.18580000000000002,0.61,162,852,979,8,24,480,330,0,797,0.259,77.42,16.54,0.14,990,5.4,256,1 +2020,10,28,6,0,28.400000000000002,1.48,0.23320000000000002,0.61,179,813,928,8,23.900000000000002,397,481,0,840,0.258,76.49,22.72,0.14,990,5.300000000000001,252,1.1 +2020,10,28,7,0,28.200000000000003,1.48,0.229,0.61,168,782,811,7,23.8,403,275,0,630,0.257,76.92,34.67,0.14,989,5.300000000000001,246,1.1 +2020,10,28,8,0,28,1.48,0.2233,0.61,150,721,629,7,24,312,238,0,470,0.256,79.05,48.28,0.14,989,5.2,238,1 +2020,10,28,9,0,27.8,1.49,0.21280000000000002,0.61,120,612,403,7,24.200000000000003,183,322,0,332,0.255,80.64,62.440000000000005,0.14,989,5.1000000000000005,226,0.8 +2020,10,28,10,0,27.1,1.5,0.2025,0.61,74,389,162,7,24.3,84,190,3,127,0.255,84.67,76.84,0.14,990,5,220,0.7000000000000001 +2020,10,28,11,0,26.1,1.51,0.1902,0.61,0,0,0,6,23.8,0,0,0,0,0.256,87.36,91.45,0.14,990,4.9,214,0.7000000000000001 +2020,10,28,12,0,25.8,1.52,0.1777,0.61,0,0,0,6,23.5,0,0,0,0,0.256,87.23,106.04,0.14,991,4.9,213,0.7000000000000001 +2020,10,28,13,0,25.700000000000003,1.52,0.1668,0.61,0,0,0,6,23.3,0,0,0,0,0.257,86.41,120.62,0.14,992,4.800000000000001,214,0.7000000000000001 +2020,10,28,14,0,25.8,1.52,0.1588,0.61,0,0,0,7,23,0,0,0,0,0.259,84.76,135.11,0.14,992,4.800000000000001,215,0.7000000000000001 +2020,10,28,15,0,25.6,1.51,0.1553,0.61,0,0,0,7,22.900000000000002,0,0,0,0,0.26,85.15,149.35,0.14,992,4.9,223,0.6000000000000001 +2020,10,28,16,0,25.3,1.49,0.1554,0.61,0,0,0,6,22.900000000000002,0,0,0,0,0.261,86.76,162.61,0.14,992,5,231,0.6000000000000001 +2020,10,28,17,0,25,1.46,0.1593,0.61,0,0,0,6,22.900000000000002,0,0,0,0,0.262,88.06,169.8,0.14,991,5,237,0.7000000000000001 +2020,10,28,18,0,24.700000000000003,1.43,0.1675,0.61,0,0,0,8,22.900000000000002,0,0,0,0,0.262,89.65,161.43,0.14,990,5.2,241,0.8 +2020,10,28,19,0,24.400000000000002,1.3900000000000001,0.17980000000000002,0.61,0,0,0,8,23,0,0,0,0,0.262,91.7,147.99,0.14,990,5.300000000000001,249,0.8 +2020,10,28,20,0,24.3,1.35,0.1957,0.61,0,0,0,3,23,0,0,0,0,0.263,92.51,133.72,0.14,990,5.5,262,0.8 +2020,10,28,21,0,24.400000000000002,1.32,0.2119,0.61,0,0,0,8,23,0,0,0,0,0.263,92.10000000000001,119.22,0.14,990,5.6000000000000005,280,0.8 +2020,10,28,22,0,24.400000000000002,1.3,0.22590000000000002,0.61,0,0,0,8,23,0,0,0,0,0.264,92.19,104.64,0.14,991,5.7,290,0.7000000000000001 +2020,10,28,23,0,24.5,1.31,0.22790000000000002,0.61,0,0,0,7,23.3,0,0,3,0,0.263,92.82000000000001,89.60000000000001,0.14,991,5.7,286,0.6000000000000001 +2020,10,29,0,0,25.700000000000003,1.33,0.2225,0.61,83,390,181,0,24.3,83,390,0,181,0.264,92.2,75.48,0.14,992,5.6000000000000005,269,0.7000000000000001 +2020,10,29,1,0,27.1,1.33,0.2197,0.61,126,613,422,0,24.6,126,613,0,422,0.264,86.12,61.120000000000005,0.14,992,5.6000000000000005,233,0.7000000000000001 +2020,10,29,2,0,28,1.33,0.21860000000000002,0.61,151,727,646,0,24.400000000000002,151,727,0,646,0.264,80.71000000000001,47.02,0.14,992,5.6000000000000005,209,0.8 +2020,10,29,3,0,28.6,1.3800000000000001,0.2731,0.61,189,753,816,0,24.1,189,753,0,816,0.264,76.83,33.56,0.14,992,5.6000000000000005,199,0.9 +2020,10,29,4,0,28.900000000000002,1.3900000000000001,0.2651,0.61,195,791,929,8,24.200000000000003,432,380,0,785,0.263,75.82000000000001,22,0.14,991,5.6000000000000005,208,1.2000000000000002 +2020,10,29,5,0,28.900000000000002,1.3900000000000001,0.2577,0.61,195,805,965,3,24.400000000000002,504,207,0,702,0.263,76.51,16.87,0.14,990,5.6000000000000005,218,1.5 +2020,10,29,6,0,28.900000000000002,1.37,0.2501,0.61,188,798,923,8,24.5,400,443,0,809,0.262,77.02,22.97,0.14,990,5.7,219,1.7000000000000002 +2020,10,29,7,0,28.700000000000003,1.37,0.25120000000000003,0.61,179,762,804,7,24.5,415,158,0,545,0.261,78.01,34.84,0.14,989,5.7,219,1.9000000000000001 +2020,10,29,8,0,28.1,1.37,0.24070000000000003,0.61,157,702,624,9,24.700000000000003,134,0,0,134,0.261,81.73,48.39,0.14,989,5.800000000000001,218,1.9000000000000001 +2020,10,29,9,0,27.400000000000002,1.3800000000000001,0.2511,0.61,132,573,397,9,24.900000000000002,21,0,0,21,0.26,86,62.52,0.14,989,5.7,218,1.6 +2020,10,29,10,0,26.700000000000003,1.3900000000000001,0.24000000000000002,0.61,80,346,158,6,25,25,0,3,25,0.26,90.34,76.89,0.14,990,5.7,219,1.1 +2020,10,29,11,0,25.900000000000002,1.41,0.21030000000000001,0.61,0,0,0,6,24.8,0,0,0,0,0.26,93.46000000000001,91.48,0.14,991,5.6000000000000005,221,0.6000000000000001 +2020,10,29,12,0,25.8,1.42,0.189,0.61,0,0,0,6,24.400000000000002,0,0,0,0,0.261,92.07000000000001,106.05,0.14,992,5.5,224,0.6000000000000001 +2020,10,29,13,0,25.700000000000003,1.43,0.1731,0.61,0,0,0,7,24.1,0,0,0,0,0.262,91.12,120.61,0.14,992,5.4,230,0.5 +2020,10,29,14,0,25.700000000000003,1.44,0.1621,0.61,0,0,0,8,24,0,0,0,0,0.263,90.23,135.07,0.14,993,5.300000000000001,240,0.5 +2020,10,29,15,0,25.6,1.44,0.1583,0.61,0,0,0,7,23.900000000000002,0,0,0,0,0.264,90.22,149.26,0.14,993,5.2,252,0.4 +2020,10,29,16,0,25.3,1.44,0.15610000000000002,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.264,90.92,162.44,0.14,992,5.1000000000000005,263,0.4 +2020,10,29,17,0,25,1.43,0.1577,0.61,0,0,0,7,23.6,0,0,0,0,0.264,91.8,169.47,0.14,991,5.1000000000000005,265,0.4 +2020,10,29,18,0,24.700000000000003,1.43,0.16440000000000002,0.61,0,0,0,6,23.5,0,0,0,0,0.263,93.08,161.24,0.14,991,5,263,0.5 +2020,10,29,19,0,24.5,1.42,0.1754,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.262,93.67,147.89000000000001,0.14,990,5,252,0.5 +2020,10,29,20,0,24.400000000000002,1.44,0.1825,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.262,93.98,133.66,0.14,990,5,241,0.5 +2020,10,29,21,0,24.400000000000002,1.44,0.1973,0.61,0,0,0,7,23.3,0,0,0,0,0.262,93.65,119.18,0.14,990,5.1000000000000005,4,0.4 +2020,10,29,22,0,24.1,1.42,0.2129,0.61,0,0,0,7,23.200000000000003,0,0,0,0,0.261,94.79,104.63,0.14,991,5.2,19,0.5 +2020,10,29,23,0,24.200000000000003,1.41,0.2242,0.61,0,0,0,8,23.3,0,0,3,0,0.261,94.66,89.61,0.14,992,5.300000000000001,1,0.5 +2020,10,30,0,0,25.3,1.41,0.2343,0.61,85,384,181,8,24.200000000000003,93,204,0,145,0.26,93.59,75.51,0.14,992,5.4,11,0.30000000000000004 +2020,10,30,1,0,26.8,1.43,0.2343,0.61,131,604,422,8,24,162,476,0,391,0.26,84.89,61.17,0.14,993,5.5,162,0.6000000000000001 +2020,10,30,2,0,27.700000000000003,1.44,0.2333,0.61,156,719,645,8,23.400000000000002,297,353,0,537,0.26,77.65,47.11,0.14,993,5.5,175,0.9 +2020,10,30,3,0,28.400000000000002,1.45,0.23620000000000002,0.61,173,779,822,0,23.400000000000002,173,779,0,822,0.26,74.32000000000001,33.7,0.14,993,5.5,195,0.9 +2020,10,30,4,0,29.200000000000003,1.47,0.2192,0.61,175,822,935,0,23.6,175,822,0,935,0.261,71.77,22.240000000000002,0.14,992,5.5,226,0.9 +2020,10,30,5,0,29.5,1.48,0.20650000000000002,0.61,170,839,971,1,23.700000000000003,170,839,0,971,0.262,70.88,17.2,0.14,991,5.5,244,1.2000000000000002 +2020,10,30,6,0,29.6,1.51,0.24400000000000002,0.61,184,806,925,0,23.700000000000003,184,806,0,925,0.262,70.84,23.22,0.14,990,5.4,244,1.4000000000000001 +2020,10,30,7,0,29.6,1.52,0.23270000000000002,0.61,170,779,809,8,23.8,392,315,0,650,0.262,71.11,35,0.14,989,5.300000000000001,245,1.5 +2020,10,30,8,0,29.200000000000003,1.51,0.22820000000000001,0.61,152,717,627,7,23.900000000000002,225,13,0,233,0.263,72.96000000000001,48.5,0.14,989,5.300000000000001,242,1.5 +2020,10,30,9,0,28.6,1.5,0.23850000000000002,0.61,128,588,398,9,24.1,21,0,0,21,0.262,76.69,62.6,0.14,989,5.300000000000001,235,1.4000000000000001 +2020,10,30,10,0,27.8,1.52,0.22510000000000002,0.61,77,366,160,9,24.5,9,0,3,9,0.262,82.06,76.94,0.14,990,5.300000000000001,225,1.1 +2020,10,30,11,0,26.6,1.53,0.2117,0.61,0,0,0,6,24.700000000000003,0,0,0,0,0.262,89.39,91.51,0.14,991,5.300000000000001,217,0.8 +2020,10,30,12,0,26.1,1.52,0.2109,0.61,0,0,0,7,24.400000000000002,0,0,0,0,0.263,90.3,106.06,0.14,992,5.4,218,0.8 +2020,10,30,13,0,26,1.52,0.21380000000000002,0.61,0,0,0,6,24.200000000000003,0,0,0,0,0.264,89.88,120.59,0.14,992,5.4,219,0.8 +2020,10,30,14,0,26.1,1.52,0.2112,0.61,0,0,0,6,24,0,0,0,0,0.265,88.29,135.03,0.14,992,5.5,226,0.7000000000000001 +2020,10,30,15,0,26.1,1.51,0.21860000000000002,0.61,0,0,0,7,23.8,0,0,0,0,0.266,87.38,149.18,0.14,992,5.5,249,0.6000000000000001 +2020,10,30,16,0,26,1.48,0.2306,0.61,0,0,0,7,23.700000000000003,0,0,0,0,0.266,87.41,162.26,0.14,992,5.6000000000000005,333,0.5 +2020,10,30,17,0,25.700000000000003,1.47,0.233,0.61,0,0,0,8,23.700000000000003,0,0,0,0,0.266,88.71000000000001,169.15,0.14,992,5.6000000000000005,15,0.5 +2020,10,30,18,0,25.3,1.45,0.2536,0.61,0,0,0,7,23.6,0,0,0,0,0.265,90.54,161.05,0.14,991,5.7,29,0.5 +2020,10,30,19,0,25.1,1.44,0.26430000000000003,0.61,0,0,0,6,23.6,0,0,0,0,0.264,91.43,147.78,0.14,991,5.800000000000001,36,0.6000000000000001 +2020,10,30,20,0,24.900000000000002,1.43,0.2558,0.61,0,0,0,6,23.5,0,0,0,0,0.263,92.09,133.59,0.14,990,5.800000000000001,44,0.6000000000000001 +2020,10,30,21,0,24.700000000000003,1.43,0.2548,0.61,0,0,0,6,23.5,0,0,0,0,0.263,92.82000000000001,119.14,0.14,990,5.800000000000001,52,0.6000000000000001 +2020,10,30,22,0,24.5,1.42,0.25370000000000004,0.61,0,0,0,7,23.400000000000002,0,0,0,0,0.263,93.86,104.61,0.14,991,5.9,65,0.6000000000000001 +2020,10,30,23,0,24.5,1.41,0.2409,0.61,0,0,0,6,23.700000000000003,0,0,3,0,0.262,95.19,89.61,0.14,991,5.9,77,0.6000000000000001 +2020,10,31,0,0,25.5,1.4000000000000001,0.2524,0.61,88,366,179,6,24.400000000000002,9,0,0,9,0.262,93.60000000000001,75.54,0.14,992,5.9,100,0.9 +2020,10,31,1,0,26.400000000000002,1.4000000000000001,0.2586,0.61,137,581,417,7,24.6,48,0,0,48,0.262,90.01,61.230000000000004,0.14,992,6,117,1.4000000000000001 +2020,10,31,2,0,26.8,1.41,0.24200000000000002,0.61,159,709,641,7,24.5,325,133,0,415,0.262,87.35000000000001,47.2,0.14,992,6,120,1.6 +2020,10,31,3,0,27.5,1.32,0.2247,0.61,170,782,819,8,24.400000000000002,393,334,0,671,0.262,83.28,33.85,0.14,992,6,118,1.3 +2020,10,31,4,0,28.3,1.33,0.2369,0.61,184,805,927,8,24.3,482,212,0,678,0.262,78.96000000000001,22.48,0.14,992,6.1000000000000005,118,0.9 +2020,10,31,5,0,28.900000000000002,1.35,0.2146,0.61,176,829,967,3,24.3,477,319,0,782,0.261,76.09,17.52,0.14,991,6,145,0.8 +2020,10,31,6,0,29,1.3800000000000001,0.34700000000000003,0.61,227,739,905,8,24.3,476,134,0,599,0.26,75.96000000000001,23.46,0.14,990,6,213,1.2000000000000002 +2020,10,31,7,0,28.700000000000003,1.3900000000000001,0.3644,0.61,221,692,786,3,24.5,406,249,0,610,0.259,78.26,35.160000000000004,0.14,989,6,226,1.6 +2020,10,31,8,0,28.1,1.3900000000000001,0.3597,0.61,196,622,607,7,24.8,299,72,0,347,0.258,82.31,48.6,0.14,989,6,234,1.7000000000000002 +2020,10,31,9,0,27.400000000000002,1.37,0.39430000000000004,0.61,165,470,381,6,25,198,101,0,245,0.258,86.86,62.67,0.14,989,6.1000000000000005,246,1.6 +2020,10,31,10,0,26.5,1.37,0.3909,0.61,93,243,148,7,25.1,93,243,5,148,0.258,91.93,76.99,0.14,990,6.1000000000000005,253,1.4000000000000001 +2020,10,31,11,0,25.900000000000002,1.36,0.3546,0.61,0,0,0,6,25.1,0,0,0,0,0.259,95.09,91.54,0.14,991,6.1000000000000005,255,1.1 +2020,10,31,12,0,25.700000000000003,1.36,0.32530000000000003,0.61,0,0,0,6,25,0,0,0,0,0.26,95.84,106.07000000000001,0.14,992,6.1000000000000005,255,0.9 +2020,10,31,13,0,25.5,1.36,0.2748,0.61,0,0,0,7,24.900000000000002,0,0,0,0,0.261,96.5,120.58,0.14,992,6.1000000000000005,259,0.8 +2020,10,31,14,0,25.5,1.37,0.23240000000000002,0.61,0,0,0,7,24.8,0,0,0,0,0.262,96.12,134.99,0.14,993,6.2,263,0.7000000000000001 +2020,10,31,15,0,25.3,1.37,0.21960000000000002,0.61,0,0,0,7,24.700000000000003,0,0,0,0,0.263,96.63,149.09,0.14,992,6.2,266,0.7000000000000001 +2020,10,31,16,0,25.200000000000003,1.37,0.21030000000000001,0.61,0,0,0,8,24.6,0,0,0,0,0.264,96.5,162.07,0.14,992,6.2,268,0.7000000000000001 +2020,10,31,17,0,25,1.35,0.2019,0.61,0,0,0,8,24.400000000000002,0,0,0,0,0.264,96.74000000000001,168.83,0.14,991,6.300000000000001,267,0.7000000000000001 +2020,10,31,18,0,24.700000000000003,1.33,0.2025,0.61,0,0,0,7,24.3,0,0,0,0,0.264,97.63,160.87,0.14,991,6.300000000000001,271,0.7000000000000001 +2020,10,31,19,0,24.5,1.32,0.19160000000000002,0.61,0,0,0,7,24.200000000000003,0,0,0,0,0.263,98.10000000000001,147.68,0.14,990,6.2,278,0.8 +2020,10,31,20,0,24.400000000000002,1.33,0.1708,0.61,0,0,0,8,24.1,0,0,0,0,0.262,98.39,133.53,0.14,990,6.2,285,0.9 +2020,10,31,21,0,24.200000000000003,1.33,0.15660000000000002,0.61,0,0,0,3,24,0,0,0,0,0.261,99.04,119.11,0.14,991,6.1000000000000005,291,1 +2020,10,31,22,0,24.1,1.33,0.1456,0.61,0,0,0,8,23.900000000000002,0,0,0,0,0.261,98.75,104.60000000000001,0.14,991,6.1000000000000005,292,0.9 +2020,10,31,23,0,24.1,1.33,0.1332,0.61,0,0,0,3,23.900000000000002,0,0,3,0,0.26,98.71000000000001,89.62,0.14,992,6,284,0.8 +2020,11,1,0,0,24.8,1.34,0.1255,0.6,66,489,187,8,24.200000000000003,10,0,0,10,0.259,96.19,75.57000000000001,0.14,993,6,271,1.1 +2020,11,1,1,0,25.400000000000002,1.35,0.12050000000000001,0.6,94,703,432,7,24,19,0,0,19,0.259,92.11,61.29,0.14,993,6,256,1.2000000000000002 +2020,11,1,2,0,25.700000000000003,1.35,0.1159,0.6,110,807,657,7,23.700000000000003,169,2,0,170,0.26,88.86,47.29,0.14,994,6,242,1.3 +2020,11,1,3,0,26.1,1.36,0.11280000000000001,0.6,119,863,834,8,23.8,342,454,0,718,0.26,86.93,34,0.14,994,6,244,1.4000000000000001 +2020,11,1,4,0,26.5,1.36,0.11610000000000001,0.6,127,887,945,8,23.900000000000002,425,50,0,471,0.261,85.85000000000001,22.72,0.14,993,6,252,1.5 +2020,11,1,5,0,26.8,1.36,0.1163,0.6,129,894,980,8,24.1,498,232,0,719,0.262,85.18,17.84,0.14,992,6,259,1.7000000000000002 +2020,11,1,6,0,26.900000000000002,1.34,0.12660000000000002,0.6,132,877,936,8,24.200000000000003,398,443,0,803,0.262,85.17,23.7,0.14,991,6,259,1.8 +2020,11,1,7,0,26.900000000000002,1.33,0.13770000000000002,0.6,131,840,817,7,24.3,382,65,0,435,0.262,85.58,35.31,0.14,990,6,253,1.9000000000000001 +2020,11,1,8,0,26.700000000000003,1.31,0.1443,0.6,122,774,633,6,24.400000000000002,48,0,0,48,0.262,87.37,48.71,0.14,990,6.1000000000000005,248,2 +2020,11,1,9,0,26.200000000000003,1.29,0.1688,0.6,109,639,402,7,24.700000000000003,200,147,0,267,0.262,91.21000000000001,62.74,0.14,990,6.1000000000000005,243,1.9000000000000001 +2020,11,1,10,0,25.700000000000003,1.26,0.1824,0.6,72,388,159,7,24.8,75,308,3,144,0.263,94.84,77.04,0.14,990,6.2,239,1.5 +2020,11,1,11,0,25.200000000000003,1.24,0.1814,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.263,97.23,91.56,0.14,991,6.2,235,1.2000000000000002 +2020,11,1,12,0,25.1,1.23,0.2031,0.6,0,0,0,6,24.700000000000003,0,0,0,0,0.263,97.49000000000001,106.07000000000001,0.14,992,6.300000000000001,231,1.2000000000000002 +2020,11,1,13,0,25.1,1.2,0.22030000000000002,0.6,0,0,0,7,24.6,0,0,0,0,0.263,97.03,120.56,0.14,992,6.4,230,1.2000000000000002 +2020,11,1,14,0,25,1.16,0.2238,0.6,0,0,0,8,24.5,0,0,0,0,0.263,97.15,134.94,0.14,992,6.4,229,1.3 +2020,11,1,15,0,24.8,1.16,0.23370000000000002,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.263,97.56,148.99,0.14,992,6.4,230,1.2000000000000002 +2020,11,1,16,0,24.6,1.1400000000000001,0.2122,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.263,97.73,161.88,0.14,992,6.300000000000001,236,1.2000000000000002 +2020,11,1,17,0,24.5,1.12,0.1835,0.6,0,0,0,7,24.1,0,0,0,0,0.263,97.52,168.51,0.14,992,6.2,245,1.2000000000000002 +2020,11,1,18,0,24.400000000000002,1.12,0.1761,0.6,0,0,0,7,24,0,0,0,0,0.262,97.68,160.68,0.14,991,6,258,1.4000000000000001 +2020,11,1,19,0,24.400000000000002,1.1,0.1605,0.6,0,0,0,7,24,0,0,0,0,0.262,97.84,147.58,0.14,991,5.9,268,1.7000000000000002 +2020,11,1,20,0,24.200000000000003,1.09,0.1433,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.262,98.35000000000001,133.47,0.14,991,5.7,273,1.5 +2020,11,1,21,0,24,1.11,0.1386,0.6,0,0,0,8,23.8,0,0,0,0,0.262,98.56,119.08,0.14,991,5.6000000000000005,285,1.3 +2020,11,1,22,0,23.900000000000002,1.1300000000000001,0.1338,0.6,0,0,0,7,23.6,0,0,0,0,0.262,98.51,104.59,0.14,991,5.5,305,1.2000000000000002 +2020,11,1,23,0,24,1.1400000000000001,0.1291,0.6,0,0,0,7,23.700000000000003,0,0,3,0,0.262,98.28,89.63,0.14,992,5.5,326,1.1 +2020,11,2,0,0,25,1.16,0.1316,0.6,69,477,187,8,24.400000000000002,76,398,0,175,0.262,96.69,75.61,0.14,992,5.5,341,1.4000000000000001 +2020,11,2,1,0,25.900000000000002,1.18,0.133,0.6,101,689,431,8,24.8,153,508,0,397,0.262,93.57000000000001,61.35,0.14,993,5.5,351,1.6 +2020,11,2,2,0,26.8,1.21,0.1293,0.6,117,796,656,7,24.900000000000002,289,378,0,545,0.261,89.12,47.39,0.14,993,5.5,359,1.6 +2020,11,2,3,0,27.700000000000003,1.07,0.165,0.6,146,822,826,7,24.700000000000003,420,194,0,580,0.261,83.81,34.15,0.14,993,5.6000000000000005,3,1.6 +2020,11,2,4,0,28.3,1.1,0.1706,0.6,155,848,936,7,24.5,460,305,0,741,0.261,79.93,22.97,0.14,993,5.6000000000000005,360,1.5 +2020,11,2,5,0,28.700000000000003,1.1300000000000001,0.1753,0.6,159,853,970,8,24.3,496,240,0,724,0.261,77.24,18.16,0.14,992,5.7,353,1.6 +2020,11,2,6,0,28.700000000000003,1.17,0.162,0.6,150,852,928,6,24.200000000000003,80,0,1,80,0.261,76.67,23.94,0.14,991,5.800000000000001,349,1.6 +2020,11,2,7,0,28.5,1.19,0.17170000000000002,0.6,146,813,809,6,24.1,412,161,0,543,0.261,77.32000000000001,35.46,0.14,991,5.800000000000001,346,1.7000000000000002 +2020,11,2,8,0,28.1,1.22,0.17120000000000002,0.6,132,752,627,6,24.3,168,1,0,169,0.261,79.76,48.81,0.14,990,5.800000000000001,347,1.6 +2020,11,2,9,0,27.6,1.23,0.17600000000000002,0.6,111,632,399,7,24.8,142,0,0,142,0.261,84.51,62.81,0.14,990,5.800000000000001,342,1.4000000000000001 +2020,11,2,10,0,26.8,1.24,0.1811,0.6,71,389,158,6,24.8,85,80,3,103,0.26,88.85000000000001,77.08,0.14,991,5.800000000000001,334,1.2000000000000002 +2020,11,2,11,0,25.900000000000002,1.26,0.1774,0.6,0,0,0,9,24.8,0,0,0,0,0.26,93.7,91.58,0.14,991,5.800000000000001,326,0.9 +2020,11,2,12,0,25.5,1.27,0.1738,0.6,0,0,0,6,24.6,0,0,0,0,0.26,94.52,106.07000000000001,0.14,992,5.800000000000001,320,0.9 +2020,11,2,13,0,25.3,1.27,0.1713,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.261,94.79,120.53,0.14,993,5.800000000000001,319,0.9 +2020,11,2,14,0,25,1.28,0.16920000000000002,0.6,0,0,0,7,24.3,0,0,0,0,0.262,95.72,134.88,0.14,994,5.7,326,0.9 +2020,11,2,15,0,24.900000000000002,1.28,0.1665,0.6,0,0,0,7,24.1,0,0,0,0,0.263,95.47,148.89000000000001,0.14,994,5.7,336,0.8 +2020,11,2,16,0,24.900000000000002,1.29,0.16140000000000002,0.6,0,0,0,7,24,0,0,0,0,0.263,94.52,161.69,0.14,993,5.7,353,0.7000000000000001 +2020,11,2,17,0,24.8,1.29,0.1592,0.6,0,0,0,7,23.8,0,0,0,0,0.263,94.36,168.19,0.14,993,5.7,18,0.6000000000000001 +2020,11,2,18,0,24.6,1.3,0.15710000000000002,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.263,94.73,160.5,0.14,992,5.6000000000000005,44,0.6000000000000001 +2020,11,2,19,0,24.6,1.3,0.15660000000000002,0.6,0,0,0,8,23.6,0,0,0,0,0.263,94.10000000000001,147.48,0.14,992,5.6000000000000005,62,0.5 +2020,11,2,20,0,24.5,1.3,0.1557,0.6,0,0,0,8,23.5,0,0,0,0,0.263,94.09,133.42000000000002,0.14,992,5.6000000000000005,80,0.5 +2020,11,2,21,0,24.400000000000002,1.3,0.1579,0.6,0,0,0,8,23.3,0,0,0,0,0.263,93.79,119.05,0.14,992,5.6000000000000005,86,0.5 +2020,11,2,22,0,24.3,1.29,0.1623,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.264,93.75,104.59,0.14,992,5.6000000000000005,83,0.5 +2020,11,2,23,0,24.400000000000002,1.28,0.1665,0.6,0,0,0,1,23.400000000000002,0,0,0,0,0.263,94.31,89.65,0.14,993,5.6000000000000005,70,0.4 +2020,11,3,0,0,25.400000000000002,1.29,0.1758,0.6,77,431,183,3,24.3,87,275,0,156,0.263,93.85000000000001,75.64,0.14,993,5.6000000000000005,73,0.6000000000000001 +2020,11,3,1,0,26.700000000000003,1.33,0.16920000000000002,0.6,112,656,426,3,24.700000000000003,115,0,0,115,0.262,88.55,61.410000000000004,0.14,994,5.6000000000000005,93,0.6000000000000001 +2020,11,3,2,0,27.700000000000003,1.37,0.1521,0.6,126,779,652,8,24.200000000000003,318,246,0,484,0.261,81.17,47.49,0.14,994,5.6000000000000005,96,0.6000000000000001 +2020,11,3,3,0,28.5,1.3900000000000001,0.15330000000000002,0.6,138,834,827,8,24.1,194,7,0,199,0.261,76.93,34.31,0.14,994,5.7,89,0.5 +2020,11,3,4,0,29.3,1.41,0.15280000000000002,0.6,145,863,938,8,23.900000000000002,401,439,0,805,0.261,72.85000000000001,23.21,0.14,993,5.7,91,0.5 +2020,11,3,5,0,29.6,1.42,0.1529,0.6,147,871,973,6,23.8,496,128,0,617,0.261,71.01,18.47,0.14,992,5.7,139,0.6000000000000001 +2020,11,3,6,0,29.400000000000002,1.41,0.1636,0.6,149,854,928,6,23.8,395,38,0,429,0.261,71.81,24.18,0.14,991,5.7,205,0.9 +2020,11,3,7,0,29.1,1.42,0.16920000000000002,0.6,144,818,809,6,23.900000000000002,393,84,0,461,0.261,73.73,35.61,0.14,990,5.800000000000001,219,1.2000000000000002 +2020,11,3,8,0,28.6,1.42,0.1738,0.6,132,752,626,7,24.1,299,289,0,489,0.261,76.84,48.910000000000004,0.14,990,5.9,221,1.4000000000000001 +2020,11,3,9,0,28,1.41,0.19210000000000002,0.6,115,620,398,8,24.6,164,409,0,351,0.261,81.60000000000001,62.870000000000005,0.14,990,5.9,223,1.3 +2020,11,3,10,0,27.1,1.3900000000000001,0.21100000000000002,0.6,75,366,157,7,24.700000000000003,77,269,3,137,0.261,86.7,77.12,0.14,991,6,221,1.1 +2020,11,3,11,0,26,1.3800000000000001,0.2174,0.6,0,0,0,7,25,0,0,0,0,0.262,94.06,91.60000000000001,0.14,992,6,223,0.7000000000000001 +2020,11,3,12,0,25.700000000000003,1.37,0.23270000000000002,0.6,0,0,0,7,24.8,0,0,0,0,0.262,94.75,106.06,0.14,992,6,221,0.7000000000000001 +2020,11,3,13,0,25.400000000000002,1.36,0.2358,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.263,95.77,120.5,0.14,993,6,221,0.7000000000000001 +2020,11,3,14,0,25.3,1.35,0.2262,0.6,0,0,0,7,24.6,0,0,0,0,0.264,95.63,134.82,0.14,993,6,223,0.7000000000000001 +2020,11,3,15,0,25.1,1.34,0.24300000000000002,0.6,0,0,0,6,24.5,0,0,0,0,0.265,96.32000000000001,148.79,0.14,994,6.1000000000000005,229,0.8 +2020,11,3,16,0,24.900000000000002,1.33,0.24130000000000001,0.6,0,0,0,9,24.400000000000002,0,0,0,0,0.265,96.96000000000001,161.49,0.14,993,6.1000000000000005,236,0.8 +2020,11,3,17,0,24.8,1.32,0.219,0.6,0,0,0,9,24.3,0,0,0,0,0.265,97.23,167.88,0.14,993,6.1000000000000005,238,0.8 +2020,11,3,18,0,24.6,1.32,0.23340000000000002,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.264,97.86,160.32,0.14,992,6.1000000000000005,236,0.8 +2020,11,3,19,0,24.5,1.32,0.21830000000000002,0.6,0,0,0,9,24.1,0,0,0,0,0.264,97.88,147.38,0.14,992,6,233,0.8 +2020,11,3,20,0,24.400000000000002,1.33,0.17950000000000002,0.6,0,0,0,6,24,0,0,0,0,0.264,97.78,133.37,0.14,992,6,230,0.8 +2020,11,3,21,0,24.3,1.34,0.1792,0.6,0,0,0,9,23.900000000000002,0,0,0,0,0.264,97.38,119.03,0.14,992,5.9,229,0.8 +2020,11,3,22,0,24.200000000000003,1.35,0.15940000000000001,0.6,0,0,0,6,23.6,0,0,0,0,0.265,96.57000000000001,104.59,0.14,992,5.9,231,0.7000000000000001 +2020,11,3,23,0,24.200000000000003,1.36,0.1325,0.6,0,0,0,6,23.5,0,0,3,0,0.264,96.15,89.67,0.14,993,5.800000000000001,236,0.6000000000000001 +2020,11,4,0,0,24.900000000000002,1.3800000000000001,0.12810000000000002,0.6,67,486,187,6,24,20,0,0,20,0.264,95,75.69,0.14,993,5.7,249,0.7000000000000001 +2020,11,4,1,0,25.8,1.4000000000000001,0.1193,0.6,95,705,432,6,23.900000000000002,159,5,0,161,0.264,89.18,61.480000000000004,0.14,994,5.7,253,0.7000000000000001 +2020,11,4,2,0,26.8,1.41,0.1124,0.6,110,812,657,9,23.6,200,7,0,204,0.264,82.48,47.59,0.14,994,5.6000000000000005,252,0.6000000000000001 +2020,11,4,3,0,27.400000000000002,1.41,0.11130000000000001,0.6,120,866,834,9,23.3,290,18,0,305,0.264,78.60000000000001,34.46,0.14,994,5.6000000000000005,261,0.7000000000000001 +2020,11,4,4,0,27.900000000000002,1.42,0.1085,0.6,124,895,945,6,23.3,340,22,0,360,0.264,76.24,23.45,0.14,993,5.6000000000000005,273,0.9 +2020,11,4,5,0,28.200000000000003,1.42,0.10790000000000001,0.6,126,903,981,6,23.400000000000002,414,38,0,450,0.263,75.31,18.78,0.14,992,5.6000000000000005,281,1.1 +2020,11,4,6,0,28.3,1.41,0.111,0.6,125,891,937,6,23.6,412,46,0,454,0.262,75.55,24.41,0.14,991,5.7,282,1.2000000000000002 +2020,11,4,7,0,28.200000000000003,1.42,0.111,0.6,119,862,819,6,23.700000000000003,290,19,0,305,0.262,76.51,35.76,0.14,990,5.7,279,1.4000000000000001 +2020,11,4,8,0,27.900000000000002,1.43,0.1072,0.6,107,810,638,6,23.8,242,20,0,255,0.261,78.37,49,0.14,990,5.7,274,1.4000000000000001 +2020,11,4,9,0,27.400000000000002,1.44,0.11130000000000001,0.6,90,700,409,6,24,157,8,0,160,0.26,81.76,62.940000000000005,0.14,990,5.7,267,1.3 +2020,11,4,10,0,26.8,1.47,0.10740000000000001,0.6,59,481,166,7,24.1,48,0,3,48,0.259,85.43,77.15,0.14,990,5.7,262,1 +2020,11,4,11,0,25.700000000000003,1.48,0.1014,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.259,91.33,91.61,0.14,991,5.7,255,0.5 +2020,11,4,12,0,25.400000000000002,1.48,0.1024,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.258,91.3,106.05,0.14,992,5.7,238,0.5 +2020,11,4,13,0,25.200000000000003,1.49,0.10400000000000001,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.258,91.34,120.47,0.14,992,5.6000000000000005,221,0.5 +2020,11,4,14,0,25,1.49,0.1053,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.258,91.04,134.76,0.14,992,5.6000000000000005,214,0.5 +2020,11,4,15,0,25,1.48,0.1134,0.6,0,0,0,7,23.3,0,0,0,0,0.259,90.14,148.68,0.14,992,5.6000000000000005,194,0.5 +2020,11,4,16,0,24.900000000000002,1.48,0.12040000000000001,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.259,90.23,161.3,0.14,992,5.7,139,0.30000000000000004 +2020,11,4,17,0,24.700000000000003,1.48,0.1223,0.6,0,0,0,7,23.1,0,0,0,0,0.26,90.78,167.58,0.14,992,5.800000000000001,114,0.30000000000000004 +2020,11,4,18,0,24.6,1.47,0.13190000000000002,0.6,0,0,0,7,23,0,0,0,0,0.26,90.72,160.14000000000001,0.14,991,5.800000000000001,102,0.30000000000000004 +2020,11,4,19,0,24.5,1.46,0.1375,0.6,0,0,0,1,22.900000000000002,0,0,0,0,0.26,90.63,147.29,0.14,991,5.800000000000001,47,0.2 +2020,11,4,20,0,24.400000000000002,1.46,0.1365,0.6,0,0,0,7,22.8,0,0,0,0,0.261,91.02,133.31,0.14,990,5.9,12,0.30000000000000004 +2020,11,4,21,0,24.200000000000003,1.47,0.1398,0.6,0,0,0,7,22.8,0,0,0,0,0.261,91.87,119.01,0.14,991,5.9,40,0.4 +2020,11,4,22,0,24.1,1.46,0.1432,0.6,0,0,0,3,22.700000000000003,0,0,0,0,0.261,92.08,104.59,0.14,991,6,53,0.4 +2020,11,4,23,0,24.200000000000003,1.47,0.1432,0.6,0,0,0,4,23,0,0,3,0,0.261,92.76,89.69,0.14,992,6,51,0.4 +2020,11,5,0,0,25.5,1.48,0.14250000000000002,0.6,70,470,185,8,23.700000000000003,85,299,0,159,0.262,90.06,75.73,0.14,993,6,58,0.4 +2020,11,5,1,0,26.900000000000002,1.49,0.14400000000000002,0.6,103,681,427,3,24.1,191,323,0,345,0.263,84.8,61.550000000000004,0.14,993,6,188,0.30000000000000004 +2020,11,5,2,0,28.1,1.48,0.14550000000000002,0.6,123,783,650,8,23.6,267,445,0,566,0.263,76.45,47.7,0.14,994,6,206,0.5 +2020,11,5,3,0,28.700000000000003,1.47,0.17120000000000002,0.6,146,820,821,0,23.400000000000002,146,820,0,821,0.263,72.99,34.62,0.14,993,6,218,0.8 +2020,11,5,4,0,28.8,1.47,0.1825,0.6,159,842,929,8,23.5,446,349,0,766,0.262,73.05,23.7,0.14,993,6,229,1.1 +2020,11,5,5,0,29,1.48,0.18000000000000002,0.6,160,852,965,4,23.700000000000003,290,16,0,305,0.261,73.35000000000001,19.080000000000002,0.14,992,6.1000000000000005,231,1.4000000000000001 +2020,11,5,6,0,28.900000000000002,1.46,0.19770000000000001,0.6,165,830,919,7,23.900000000000002,412,47,0,454,0.259,74.66,24.63,0.14,991,6.1000000000000005,231,1.7000000000000002 +2020,11,5,7,0,28.6,1.46,0.19690000000000002,0.6,156,797,802,6,24.1,59,0,0,59,0.257,76.69,35.9,0.14,990,6.1000000000000005,231,1.8 +2020,11,5,8,0,28,1.46,0.1869,0.6,137,741,623,6,24.3,38,0,0,38,0.256,80.53,49.09,0.14,990,6.1000000000000005,234,1.8 +2020,11,5,9,0,27.400000000000002,1.46,0.1917,0.6,115,621,397,6,24.6,20,0,0,20,0.256,84.97,62.99,0.14,990,6.1000000000000005,235,1.5 +2020,11,5,10,0,26.6,1.46,0.18680000000000002,0.6,72,390,158,7,24.700000000000003,57,0,3,57,0.256,89.48,77.18,0.14,990,6.1000000000000005,230,1.1 +2020,11,5,11,0,25.8,1.47,0.1701,0.6,0,0,0,3,24.700000000000003,0,0,0,0,0.257,93.4,91.62,0.14,991,6,220,0.6000000000000001 +2020,11,5,12,0,25.6,1.48,0.1587,0.6,0,0,0,6,24.3,0,0,0,0,0.258,92.59,106.04,0.14,992,6,200,0.5 +2020,11,5,13,0,25.3,1.49,0.1476,0.6,0,0,0,8,24.1,0,0,0,0,0.259,93.34,120.43,0.14,992,5.9,180,0.6000000000000001 +2020,11,5,14,0,25.1,1.49,0.138,0.6,0,0,0,8,24,0,0,0,0,0.26,93.89,134.7,0.14,992,5.9,163,0.7000000000000001 +2020,11,5,15,0,25,1.48,0.13490000000000002,0.6,0,0,0,3,23.900000000000002,0,0,0,0,0.261,93.72,148.57,0.14,992,5.9,144,0.7000000000000001 +2020,11,5,16,0,24.8,1.46,0.1343,0.6,0,0,0,3,23.8,0,0,0,0,0.262,93.99,161.09,0.14,992,5.9,130,0.6000000000000001 +2020,11,5,17,0,24.700000000000003,1.43,0.13540000000000002,0.6,0,0,0,7,23.6,0,0,0,0,0.261,93.73,167.28,0.14,992,5.9,120,0.6000000000000001 +2020,11,5,18,0,24.6,1.4000000000000001,0.1452,0.6,0,0,0,7,23.5,0,0,0,0,0.261,93.73,159.96,0.14,992,6,108,0.5 +2020,11,5,19,0,24.6,1.37,0.1552,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.26,93.25,147.19,0.14,991,6,104,0.4 +2020,11,5,20,0,24.5,1.37,0.1567,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.259,93.34,133.27,0.14,991,6,138,0.4 +2020,11,5,21,0,24.400000000000002,1.37,0.1592,0.6,0,0,0,7,23.3,0,0,0,0,0.258,93.33,118.99000000000001,0.14,991,5.9,174,0.4 +2020,11,5,22,0,24.400000000000002,1.3800000000000001,0.1582,0.6,0,0,0,3,23.200000000000003,0,0,0,0,0.257,93.06,104.59,0.14,991,5.9,219,0.4 +2020,11,5,23,0,24.400000000000002,1.3900000000000001,0.1567,0.6,0,0,0,8,23.400000000000002,0,0,3,0,0.257,94.15,89.71000000000001,0.14,991,5.800000000000001,239,0.5 +2020,11,6,0,0,25.700000000000003,1.3900000000000001,0.17350000000000002,0.6,75,434,182,8,24.400000000000002,41,0,3,41,0.258,92.60000000000001,75.78,0.14,992,5.9,218,0.9 +2020,11,6,1,0,26.8,1.4000000000000001,0.1814,0.6,115,644,421,7,24.6,187,344,0,350,0.259,87.97,61.63,0.14,993,5.9,207,1.2000000000000002 +2020,11,6,2,0,27.6,1.41,0.17020000000000002,0.6,133,762,645,3,24.5,286,381,0,542,0.259,83.24,47.81,0.14,993,6,206,1.3 +2020,11,6,3,0,28.400000000000002,1.47,0.3312,0.6,209,716,797,1,24.6,209,716,0,797,0.26,79.88,34.79,0.14,993,6,206,1.3 +2020,11,6,4,0,29,1.47,0.3166,0.6,214,759,908,8,24.700000000000003,459,90,0,542,0.26,77.66,23.94,0.14,993,6,209,1.5 +2020,11,6,5,0,29.3,1.46,0.29700000000000004,0.6,209,780,945,7,24.700000000000003,475,329,0,786,0.26,76.35000000000001,19.38,0.14,991,6.1000000000000005,210,1.7000000000000002 +2020,11,6,6,0,29.3,1.42,0.2444,0.6,185,799,910,7,24.700000000000003,446,77,0,516,0.259,76.13,24.85,0.14,990,6.1000000000000005,212,1.9000000000000001 +2020,11,6,7,0,29,1.41,0.22820000000000001,0.6,169,775,795,7,24.8,394,90,0,467,0.258,78.07000000000001,36.04,0.14,990,6.1000000000000005,214,1.9000000000000001 +2020,11,6,8,0,28.400000000000002,1.41,0.21100000000000002,0.6,146,722,618,6,25,69,0,0,69,0.256,82.08,49.18,0.14,989,6.1000000000000005,213,1.8 +2020,11,6,9,0,27.900000000000002,1.3900000000000001,0.2132,0.6,121,600,393,9,25.200000000000003,36,0,0,36,0.256,85.26,63.050000000000004,0.14,990,6.1000000000000005,213,1.5 +2020,11,6,10,0,27.1,1.4000000000000001,0.2029,0.6,74,372,156,9,25.200000000000003,21,0,3,21,0.256,89.29,77.21000000000001,0.14,990,6,212,1.2000000000000002 +2020,11,6,11,0,26.1,1.41,0.1814,0.6,0,0,0,6,25.1,0,0,0,0,0.256,94.15,91.62,0.14,991,6,211,0.8 +2020,11,6,12,0,25.700000000000003,1.42,0.1642,0.6,0,0,0,6,24.8,0,0,0,0,0.257,94.97,106.02,0.14,991,5.9,210,0.7000000000000001 +2020,11,6,13,0,25.400000000000002,1.44,0.1511,0.6,0,0,0,6,24.6,0,0,0,0,0.259,95.49,120.39,0.14,992,5.9,200,0.7000000000000001 +2020,11,6,14,0,25.200000000000003,1.45,0.14,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.26,95.48,134.63,0.14,992,5.9,185,0.7000000000000001 +2020,11,6,15,0,25.200000000000003,1.44,0.13620000000000002,0.6,0,0,0,6,24.3,0,0,0,0,0.261,94.54,148.45000000000002,0.14,992,5.9,174,0.7000000000000001 +2020,11,6,16,0,25.3,1.43,0.1353,0.6,0,0,0,7,24.1,0,0,0,0,0.262,93.2,160.89000000000001,0.14,992,5.800000000000001,156,0.4 +2020,11,6,17,0,25,1.42,0.135,0.6,0,0,0,8,24,0,0,0,0,0.262,93.97,166.98,0.14,992,5.800000000000001,344,0.5 +2020,11,6,18,0,24.700000000000003,1.42,0.139,0.6,0,0,0,1,23.8,0,0,0,0,0.262,94.95,159.79,0.14,992,5.800000000000001,338,0.5 +2020,11,6,19,0,24.6,1.41,0.1436,0.6,0,0,0,3,23.700000000000003,0,0,0,0,0.262,94.91,147.1,0.14,991,5.800000000000001,323,0.5 +2020,11,6,20,0,24.5,1.42,0.1447,0.6,0,0,0,3,23.6,0,0,0,0,0.262,94.91,133.22,0.14,991,5.800000000000001,312,0.4 +2020,11,6,21,0,24.5,1.42,0.14830000000000002,0.6,0,0,0,3,23.5,0,0,0,0,0.261,94.34,118.97,0.14,991,5.800000000000001,290,0.30000000000000004 +2020,11,6,22,0,24.400000000000002,1.42,0.15080000000000002,0.6,0,0,0,3,23.5,0,0,0,0,0.261,94.48,104.60000000000001,0.14,992,5.800000000000001,262,0.4 +2020,11,6,23,0,24.400000000000002,1.41,0.14980000000000002,0.6,0,0,0,8,23.6,0,0,3,0,0.26,95.19,89.73,0.14,992,5.800000000000001,246,0.4 +2020,11,7,0,0,25.6,1.42,0.14700000000000002,0.6,70,463,183,4,24.400000000000002,21,0,3,21,0.26,93.26,75.83,0.14,993,5.800000000000001,219,0.9 +2020,11,7,1,0,26.8,1.42,0.1454,0.6,103,678,424,4,24.400000000000002,51,0,0,51,0.261,86.63,61.71,0.14,993,5.800000000000001,209,1.3 +2020,11,7,2,0,27.6,1.43,0.1408,0.6,121,787,648,4,24.200000000000003,311,87,0,369,0.261,81.61,47.92,0.14,993,5.800000000000001,215,1.3 +2020,11,7,3,0,28.3,1.33,0.19720000000000001,0.6,158,800,814,4,24.200000000000003,403,95,0,481,0.261,78.71000000000001,34.95,0.14,993,5.800000000000001,224,1.2000000000000002 +2020,11,7,4,0,28.900000000000002,1.36,0.1748,0.6,156,847,929,7,24.3,477,152,0,615,0.261,76.48,24.18,0.14,992,5.7,239,1.1 +2020,11,7,5,0,29.200000000000003,1.3900000000000001,0.1588,0.6,150,866,966,8,24.400000000000002,469,327,0,777,0.261,75.39,19.67,0.14,991,5.800000000000001,248,1.2000000000000002 +2020,11,7,6,0,29.200000000000003,1.4000000000000001,0.1554,0.6,146,859,924,8,24.400000000000002,416,393,0,772,0.26,75.37,25.07,0.14,991,5.800000000000001,248,1.4000000000000001 +2020,11,7,7,0,29,1.4000000000000001,0.1568,0.6,139,827,807,8,24.3,381,334,0,650,0.259,75.8,36.18,0.14,990,5.800000000000001,244,1.5 +2020,11,7,8,0,28.6,1.4000000000000001,0.1559,0.6,126,766,626,6,24.3,284,53,0,319,0.257,77.46000000000001,49.27,0.14,990,5.9,237,1.6 +2020,11,7,9,0,27.8,1.4000000000000001,0.1763,0.6,111,633,397,6,24.5,192,74,0,225,0.257,82.45,63.1,0.14,990,5.9,229,1.5 +2020,11,7,10,0,26.900000000000002,1.42,0.1764,0.6,70,399,158,7,24.700000000000003,80,215,3,128,0.257,87.71000000000001,77.23,0.14,991,5.9,227,1.3 +2020,11,7,11,0,25.8,1.45,0.15660000000000002,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.258,93.73,91.62,0.14,991,5.800000000000001,235,0.9 +2020,11,7,12,0,25.3,1.47,0.1469,0.6,0,0,0,8,24.5,0,0,0,0,0.259,95.06,106,0.14,991,5.7,248,0.8 +2020,11,7,13,0,25.1,1.46,0.14650000000000002,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.26,94.88,120.35000000000001,0.14,992,5.7,247,0.7000000000000001 +2020,11,7,14,0,25,1.43,0.1495,0.6,0,0,0,7,24,0,0,0,0,0.261,94.18,134.55,0.14,993,5.800000000000001,231,0.5 +2020,11,7,15,0,25,1.43,0.15660000000000002,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.262,93.39,148.33,0.14,993,5.800000000000001,232,0.5 +2020,11,7,16,0,24.900000000000002,1.44,0.1532,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.262,92.93,160.69,0.14,993,5.800000000000001,251,0.5 +2020,11,7,17,0,24.8,1.46,0.1421,0.6,0,0,0,7,23.6,0,0,0,0,0.262,92.78,166.69,0.14,992,5.7,265,0.5 +2020,11,7,18,0,24.6,1.46,0.1423,0.6,0,0,0,8,23.5,0,0,0,0,0.262,93.4,159.61,0.14,991,5.7,274,0.5 +2020,11,7,19,0,24.400000000000002,1.47,0.1378,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.261,94.16,147.02,0.14,991,5.7,286,0.6000000000000001 +2020,11,7,20,0,24.1,1.47,0.12840000000000001,0.6,0,0,0,8,23.3,0,0,0,0,0.259,95.46000000000001,133.18,0.14,990,5.7,298,0.7000000000000001 +2020,11,7,21,0,24,1.48,0.12810000000000002,0.6,0,0,0,7,23.3,0,0,0,0,0.258,95.8,118.96000000000001,0.14,991,5.7,307,0.8 +2020,11,7,22,0,24,1.48,0.1283,0.6,0,0,0,8,23.200000000000003,0,0,0,0,0.258,95.43,104.61,0.14,991,5.7,314,0.8 +2020,11,7,23,0,24.200000000000003,1.48,0.1259,0.6,0,0,0,8,23.5,0,0,3,0,0.258,95.67,89.76,0.14,992,5.7,320,0.7000000000000001 +2020,11,8,0,0,25.5,1.49,0.1296,0.6,66,484,184,3,24.400000000000002,90,223,3,144,0.258,93.59,75.88,0.14,992,5.800000000000001,322,0.9 +2020,11,8,1,0,26.900000000000002,1.49,0.134,0.6,98,690,424,8,24.5,171,417,0,369,0.258,86.92,61.79,0.14,993,5.800000000000001,328,1 +2020,11,8,2,0,27.6,1.49,0.1358,0.6,118,792,647,8,24.200000000000003,310,273,0,492,0.258,81.89,48.04,0.14,993,5.800000000000001,329,1.1 +2020,11,8,3,0,28.200000000000003,1.48,0.14350000000000002,0.6,133,841,821,8,24.200000000000003,407,109,0,496,0.258,79.05,35.12,0.14,993,5.800000000000001,330,1.1 +2020,11,8,4,0,28.900000000000002,1.49,0.1456,0.6,141,868,930,8,24.3,398,437,0,796,0.257,76.19,24.42,0.14,992,5.9,332,1 +2020,11,8,5,0,29.200000000000003,1.49,0.14350000000000002,0.6,142,877,966,8,24.3,485,266,0,735,0.256,74.88,19.96,0.14,991,5.9,327,1 +2020,11,8,6,0,29.3,1.48,0.1515,0.6,143,862,922,7,24.3,455,292,0,719,0.255,74.5,25.29,0.14,990,5.9,311,1.1 +2020,11,8,7,0,29,1.47,0.15910000000000002,0.6,139,825,803,7,24.400000000000002,384,320,0,642,0.255,76.46000000000001,36.31,0.14,990,6,292,1.2000000000000002 +2020,11,8,8,0,28.5,1.46,0.1656,0.6,128,759,622,6,24.700000000000003,258,29,0,277,0.255,80.01,49.35,0.14,989,6,272,1.2000000000000002 +2020,11,8,9,0,27.8,1.44,0.186,0.6,113,625,395,9,25,20,0,0,20,0.255,84.7,63.14,0.14,990,6.1000000000000005,268,1.1 +2020,11,8,10,0,26.900000000000002,1.44,0.1961,0.6,73,379,156,6,24.900000000000002,8,0,3,8,0.256,88.65,77.25,0.14,990,6.1000000000000005,267,1 +2020,11,8,11,0,26,1.44,0.1991,0.6,0,0,0,9,25,0,0,0,0,0.257,94.4,91.62,0.14,991,6.1000000000000005,262,0.7000000000000001 +2020,11,8,12,0,25.700000000000003,1.43,0.21830000000000002,0.6,0,0,0,6,24.8,0,0,0,0,0.258,95.03,105.98,0.14,991,6.1000000000000005,261,0.6000000000000001 +2020,11,8,13,0,25.5,1.43,0.2313,0.6,0,0,0,6,24.6,0,0,0,0,0.259,94.88,120.3,0.14,992,6.1000000000000005,261,0.4 +2020,11,8,14,0,25.6,1.43,0.2288,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.259,92.23,134.47,0.14,992,6.1000000000000005,272,0.30000000000000004 +2020,11,8,15,0,25.400000000000002,1.43,0.2351,0.6,0,0,0,6,24.1,0,0,0,0,0.26,92.4,148.21,0.14,992,6.1000000000000005,111,0.2 +2020,11,8,16,0,25.200000000000003,1.42,0.22010000000000002,0.6,0,0,0,7,24,0,0,0,0,0.261,92.86,160.48,0.14,992,6,137,0.30000000000000004 +2020,11,8,17,0,24.900000000000002,1.42,0.1771,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.261,94.17,166.4,0.14,991,6,162,0.5 +2020,11,8,18,0,24.6,1.41,0.1694,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.261,95.79,159.44,0.14,990,6,189,0.7000000000000001 +2020,11,8,19,0,24.400000000000002,1.3900000000000001,0.1495,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.26,96.98,146.93,0.14,990,6,203,0.9 +2020,11,8,20,0,24.3,1.3900000000000001,0.1115,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.259,97.66,133.14000000000001,0.14,990,6,210,1.2000000000000002 +2020,11,8,21,0,24.3,1.3800000000000001,0.11910000000000001,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.259,97.49000000000001,118.95,0.14,990,6.1000000000000005,214,1.3 +2020,11,8,22,0,24.200000000000003,1.37,0.1105,0.6,0,0,0,8,23.8,0,0,0,0,0.258,97.62,104.63,0.14,990,6.1000000000000005,216,1.1 +2020,11,8,23,0,24.3,1.3800000000000001,0.0961,0.6,0,0,0,7,23.8,0,0,3,0,0.258,97.25,89.79,0.14,991,6,214,0.9 +2020,11,9,0,0,25,1.36,0.11230000000000001,0.6,62,500,183,7,24.400000000000002,93,157,3,131,0.258,96.26,75.94,0.14,992,6,215,1 +2020,11,9,1,0,25.700000000000003,1.3800000000000001,0.1121,0.6,90,710,425,7,24.400000000000002,198,264,0,323,0.258,92.60000000000001,61.870000000000005,0.14,992,5.9,212,1.1 +2020,11,9,2,0,26.1,1.4000000000000001,0.1029,0.6,102,818,648,7,23.900000000000002,303,301,0,504,0.258,87.81,48.160000000000004,0.14,993,5.9,216,1.1 +2020,11,9,3,0,26.5,1.42,0.10640000000000001,0.6,115,869,824,7,23.6,409,239,0,603,0.258,84.07000000000001,35.29,0.14,992,5.800000000000001,226,0.9 +2020,11,9,4,0,26.900000000000002,1.43,0.10790000000000001,0.6,121,894,934,7,23.5,472,223,0,675,0.257,81.56,24.67,0.14,992,5.800000000000001,244,0.9 +2020,11,9,5,0,27.1,1.44,0.1073,0.6,123,903,969,7,23.5,478,292,0,752,0.257,80.5,20.25,0.14,991,5.800000000000001,259,1.1 +2020,11,9,6,0,27.1,1.37,0.1278,0.6,132,878,924,3,23.400000000000002,409,405,0,774,0.256,80.46000000000001,25.5,0.14,990,5.800000000000001,264,1.2000000000000002 +2020,11,9,7,0,27,1.37,0.1278,0.6,125,848,808,8,23.400000000000002,284,591,0,760,0.256,80.93,36.44,0.14,990,5.800000000000001,263,1.2000000000000002 +2020,11,9,8,0,26.8,1.3800000000000001,0.1262,0.6,113,792,628,7,23.5,300,269,0,475,0.256,82.02,49.43,0.14,989,5.7,259,1.1 +2020,11,9,9,0,26.5,1.3900000000000001,0.1268,0.6,94,683,402,8,23.700000000000003,147,487,0,366,0.256,84.79,63.190000000000005,0.14,989,5.7,256,0.9 +2020,11,9,10,0,26.1,1.41,0.1257,0.6,61,455,161,8,23.900000000000002,71,344,3,146,0.256,87.55,77.27,0.14,989,5.7,254,0.7000000000000001 +2020,11,9,11,0,25.5,1.43,0.1231,0.6,0,0,0,7,23.6,0,0,0,0,0.256,89.13,91.62,0.14,990,5.7,241,0.5 +2020,11,9,12,0,25.400000000000002,1.44,0.12090000000000001,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.256,87.75,105.95,0.14,991,5.7,229,0.5 +2020,11,9,13,0,25.400000000000002,1.45,0.1194,0.6,0,0,0,7,23,0,0,0,0,0.257,86.53,120.25,0.14,991,5.6000000000000005,219,0.4 +2020,11,9,14,0,25.400000000000002,1.46,0.1197,0.6,0,0,0,8,22.8,0,0,0,0,0.257,85.63,134.39000000000001,0.14,992,5.7,208,0.30000000000000004 +2020,11,9,15,0,25.3,1.46,0.1217,0.6,0,0,0,7,22.8,0,0,0,0,0.257,85.97,148.08,0.14,992,5.7,215,0.30000000000000004 +2020,11,9,16,0,25,1.45,0.1237,0.6,0,0,0,8,22.700000000000003,0,0,0,0,0.257,86.9,160.27,0.14,992,5.7,251,0.4 +2020,11,9,17,0,24.5,1.45,0.12480000000000001,0.6,0,0,0,0,22.5,0,0,0,0,0.257,88.91,166.12,0.14,991,5.7,275,0.5 +2020,11,9,18,0,24.200000000000003,1.44,0.12610000000000002,0.6,0,0,0,3,22.5,0,0,0,0,0.257,90.46000000000001,159.28,0.14,991,5.7,286,0.6000000000000001 +2020,11,9,19,0,24,1.43,0.1264,0.6,0,0,0,0,22.5,0,0,0,0,0.257,91.34,146.85,0.14,990,5.7,293,0.7000000000000001 +2020,11,9,20,0,23.900000000000002,1.42,0.1259,0.6,0,0,0,0,22.5,0,0,0,0,0.257,91.81,133.1,0.14,990,5.7,296,0.7000000000000001 +2020,11,9,21,0,23.8,1.41,0.1246,0.6,0,0,0,0,22.400000000000002,0,0,0,0,0.257,92.11,118.94,0.14,990,5.6000000000000005,295,0.7000000000000001 +2020,11,9,22,0,23.700000000000003,1.4000000000000001,0.12340000000000001,0.6,0,0,0,0,22.400000000000002,0,0,0,0,0.257,92.4,104.64,0.14,990,5.6000000000000005,290,0.6000000000000001 +2020,11,9,23,0,23.900000000000002,1.4000000000000001,0.12100000000000001,0.6,0,0,0,8,22.700000000000003,0,0,3,0,0.257,93.05,89.82000000000001,0.14,991,5.6000000000000005,293,0.5 +2020,11,10,0,0,25.5,1.4000000000000001,0.11960000000000001,0.6,64,493,183,8,23.6,79,0,3,79,0.256,89.25,76,0.14,991,5.6000000000000005,273,0.6000000000000001 +2020,11,10,1,0,26.900000000000002,1.4000000000000001,0.117,0.6,93,706,424,7,23.5,207,127,0,267,0.256,81.8,61.96,0.14,992,5.6000000000000005,249,0.8 +2020,11,10,2,0,27.700000000000003,1.4000000000000001,0.10840000000000001,0.6,106,815,649,7,23.6,318,202,0,453,0.256,78.61,48.28,0.14,992,5.6000000000000005,247,1 +2020,11,10,3,0,28.400000000000002,1.3800000000000001,0.1102,0.6,117,867,823,7,23.900000000000002,414,163,0,547,0.256,76.43,35.46,0.14,992,5.6000000000000005,252,1.2000000000000002 +2020,11,10,4,0,28.900000000000002,1.3900000000000001,0.10260000000000001,0.6,119,899,935,7,24,441,70,0,505,0.256,74.93,24.91,0.14,991,5.6000000000000005,257,1.4000000000000001 +2020,11,10,5,0,29.1,1.4000000000000001,0.101,0.6,120,908,970,7,24.1,483,108,0,584,0.256,74.58,20.53,0.14,990,5.7,255,1.6 +2020,11,10,6,0,29.1,1.37,0.1075,0.6,121,894,927,7,24.1,459,103,0,551,0.256,74.62,25.7,0.14,989,5.7,250,1.8 +2020,11,10,7,0,28.900000000000002,1.3800000000000001,0.10690000000000001,0.6,115,866,810,7,24,375,350,0,656,0.256,75.01,36.57,0.14,988,5.7,244,1.9000000000000001 +2020,11,10,8,0,28.5,1.3800000000000001,0.1073,0.6,105,809,630,7,24,265,416,0,535,0.257,76.61,49.5,0.14,988,5.7,238,1.9000000000000001 +2020,11,10,9,0,27.900000000000002,1.3900000000000001,0.11850000000000001,0.6,91,691,403,8,24.200000000000003,170,372,0,337,0.257,80.12,63.230000000000004,0.14,988,5.800000000000001,234,1.7000000000000002 +2020,11,10,10,0,26.900000000000002,1.4000000000000001,0.12250000000000001,0.6,61,458,162,8,24.400000000000002,69,367,3,149,0.257,86.34,77.28,0.14,989,5.800000000000001,232,1.3 +2020,11,10,11,0,25.700000000000003,1.41,0.1217,0.6,0,0,0,7,24.5,0,0,0,0,0.258,93.18,91.61,0.14,989,5.800000000000001,231,0.7000000000000001 +2020,11,10,12,0,25.400000000000002,1.42,0.1242,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.258,93.19,105.92,0.14,990,5.800000000000001,229,0.6000000000000001 +2020,11,10,13,0,25.400000000000002,1.43,0.1253,0.6,0,0,0,7,24,0,0,0,0,0.259,91.7,120.2,0.14,991,5.7,225,0.5 +2020,11,10,14,0,25.400000000000002,1.43,0.12510000000000002,0.6,0,0,0,7,23.8,0,0,0,0,0.26,90.75,134.31,0.14,991,5.7,212,0.5 +2020,11,10,15,0,25.200000000000003,1.43,0.1292,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.261,91.44,147.95000000000002,0.14,991,5.7,145,0.5 +2020,11,10,16,0,24.8,1.43,0.13470000000000001,0.6,0,0,0,7,23.700000000000003,0,0,0,0,0.261,93.58,160.06,0.14,991,5.800000000000001,91,0.6000000000000001 +2020,11,10,17,0,24.5,1.42,0.138,0.6,0,0,0,7,23.6,0,0,0,0,0.261,94.73,165.84,0.14,990,5.800000000000001,78,0.6000000000000001 +2020,11,10,18,0,24.400000000000002,1.42,0.1424,0.6,0,0,0,8,23.5,0,0,0,0,0.261,94.65,159.12,0.14,990,5.800000000000001,64,0.6000000000000001 +2020,11,10,19,0,24.3,1.41,0.1467,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.26,94.45,146.77,0.14,989,5.800000000000001,50,0.5 +2020,11,10,20,0,24.400000000000002,1.41,0.14700000000000002,0.6,0,0,0,7,23.3,0,0,0,0,0.259,93.47,133.07,0.14,989,5.9,37,0.4 +2020,11,10,21,0,24.400000000000002,1.41,0.15180000000000002,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.258,93.02,118.94,0.14,990,5.9,35,0.30000000000000004 +2020,11,10,22,0,24.400000000000002,1.41,0.1519,0.6,0,0,0,8,23.1,0,0,0,0,0.257,92.33,104.66,0.14,990,5.9,156,0.30000000000000004 +2020,11,10,23,0,24.400000000000002,1.42,0.14550000000000002,0.6,0,0,0,8,23.400000000000002,0,0,3,0,0.257,93.91,89.86,0.14,991,5.9,184,0.4 +2020,11,11,0,0,25.900000000000002,1.46,0.13490000000000002,0.6,67,473,181,8,24.1,90,207,3,140,0.257,89.56,76.07000000000001,0.14,991,5.9,180,0.6000000000000001 +2020,11,11,1,0,27.200000000000003,1.48,0.1288,0.6,98,693,423,0,23.700000000000003,98,693,0,423,0.257,81.46000000000001,62.050000000000004,0.14,992,5.9,183,0.9 +2020,11,11,2,0,28.200000000000003,1.48,0.1222,0.6,113,802,645,3,23.8,297,321,0,511,0.258,76.91,48.4,0.14,992,5.9,187,1 +2020,11,11,3,0,29,1.58,0.09870000000000001,0.6,113,875,824,3,23.900000000000002,410,214,0,584,0.258,74.21000000000001,35.63,0.14,992,5.9,190,1.3 +2020,11,11,4,0,29.5,1.56,0.10940000000000001,0.6,123,893,932,3,24.1,213,10,0,222,0.258,72.85000000000001,25.150000000000002,0.14,991,6,196,1.5 +2020,11,11,5,0,29.8,1.55,0.1154,0.6,128,897,966,8,24.200000000000003,471,311,0,762,0.258,72.13,20.8,0.14,990,6,202,1.7000000000000002 +2020,11,11,6,0,29.8,1.11,0.2997,0.6,212,757,893,8,24.3,470,179,0,632,0.258,72.46000000000001,25.900000000000002,0.14,989,6.1000000000000005,205,1.9000000000000001 +2020,11,11,7,0,29.5,1.11,0.3109,0.6,205,713,776,6,24.400000000000002,102,0,0,102,0.258,74.3,36.69,0.14,989,6.1000000000000005,206,2 +2020,11,11,8,0,29.1,1.12,0.3007,0.6,180,647,600,6,24.6,38,0,0,38,0.259,76.79,49.57,0.14,988,6.1000000000000005,206,2 +2020,11,11,9,0,28.5,1.1300000000000001,0.3054,0.6,148,514,379,9,24.900000000000002,20,0,0,20,0.259,81.13,63.26,0.14,989,6.1000000000000005,206,1.7000000000000002 +2020,11,11,10,0,27.6,1.1400000000000001,0.2849,0.6,86,289,149,6,25.1,8,0,3,8,0.259,86.04,77.29,0.14,989,6.1000000000000005,202,1.3 +2020,11,11,11,0,26.5,1.16,0.2506,0.6,0,0,0,6,25.200000000000003,0,0,0,0,0.26,92.36,91.59,0.14,990,6,195,0.8 +2020,11,11,12,0,26.1,1.17,0.23970000000000002,0.6,0,0,0,7,24.8,0,0,0,0,0.26,92.66,105.88,0.14,990,5.9,185,0.7000000000000001 +2020,11,11,13,0,25.8,1.18,0.23140000000000002,0.6,0,0,0,7,24.6,0,0,0,0,0.26,93.08,120.14,0.14,991,5.9,170,0.8 +2020,11,11,14,0,25.6,1.18,0.2212,0.6,0,0,0,8,24.400000000000002,0,0,0,0,0.261,93.31,134.22,0.14,991,5.9,152,0.8 +2020,11,11,15,0,25.200000000000003,1.18,0.2192,0.6,0,0,0,3,24.3,0,0,0,0,0.261,94.89,147.82,0.14,991,5.800000000000001,133,0.8 +2020,11,11,16,0,24.900000000000002,1.17,0.2177,0.6,0,0,0,3,24.200000000000003,0,0,0,0,0.261,95.86,159.85,0.14,991,5.800000000000001,116,0.8 +2020,11,11,17,0,24.6,1.1500000000000001,0.22,0.6,0,0,0,3,24,0,0,0,0,0.26,96.67,165.57,0.14,990,5.800000000000001,108,0.8 +2020,11,11,18,0,24.400000000000002,1.16,0.22210000000000002,0.6,0,0,0,8,24,0,0,0,0,0.26,97.35000000000001,158.96,0.14,990,5.7,111,0.7000000000000001 +2020,11,11,19,0,24.3,1.18,0.21680000000000002,0.6,0,0,0,8,23.8,0,0,0,0,0.26,97.22,146.69,0.14,989,5.7,126,0.7000000000000001 +2020,11,11,20,0,24.1,1.21,0.2023,0.6,0,0,0,3,23.700000000000003,0,0,0,0,0.259,97.88,133.04,0.14,989,5.6000000000000005,131,0.8 +2020,11,11,21,0,24,1.24,0.1975,0.6,0,0,0,0,23.700000000000003,0,0,0,0,0.258,97.98,118.94,0.14,990,5.6000000000000005,122,0.8 +2020,11,11,22,0,23.900000000000002,1.28,0.1928,0.6,0,0,0,3,23.6,0,0,0,0,0.257,98,104.68,0.14,990,5.5,112,0.9 +2020,11,11,23,0,24.200000000000003,1.31,0.1852,0.6,0,0,0,8,23.8,0,0,3,0,0.256,97.44,89.9,0.14,991,5.4,108,0.9 +2020,11,12,0,0,25.5,1.34,0.1879,0.6,77,413,176,8,24.5,92,145,3,127,0.256,94.17,76.13,0.14,992,5.4,113,1.5 +2020,11,12,1,0,26.700000000000003,1.36,0.18760000000000002,0.6,117,636,414,4,24.5,203,199,0,296,0.256,87.97,62.14,0.14,993,5.4,121,1.8 +2020,11,12,2,0,27.900000000000002,1.3900000000000001,0.182,0.6,137,754,637,7,24.3,309,256,0,479,0.256,80.74,48.52,0.14,993,5.300000000000001,122,1.9000000000000001 +2020,11,12,3,0,29,1.4000000000000001,0.1758,0.6,148,819,813,7,24.1,394,296,0,634,0.256,75.11,35.800000000000004,0.14,993,5.300000000000001,120,1.9000000000000001 +2020,11,12,4,0,29.8,1.42,0.16870000000000002,0.6,153,855,925,8,24.1,382,496,0,831,0.257,71.64,25.38,0.14,992,5.2,120,1.8 +2020,11,12,5,0,30.3,1.43,0.16190000000000002,0.6,152,869,962,3,24.1,361,24,0,384,0.257,69.41,21.07,0.14,991,5.2,125,1.7000000000000002 +2020,11,12,6,0,30.6,1.42,0.16110000000000002,0.6,149,859,920,7,24,461,253,0,688,0.257,67.81,26.1,0.14,990,5.2,130,1.6 +2020,11,12,7,0,30.5,1.41,0.1627,0.6,142,826,803,8,23.900000000000002,317,485,0,706,0.257,67.74,36.81,0.14,989,5.2,135,1.5 +2020,11,12,8,0,30.3,1.3900000000000001,0.16570000000000001,0.6,130,762,623,8,23.900000000000002,294,295,0,485,0.257,68.61,49.64,0.14,989,5.2,137,1.5 +2020,11,12,9,0,29.700000000000003,1.3900000000000001,0.1762,0.6,111,637,397,7,24.400000000000002,180,40,0,198,0.257,73.2,63.29,0.14,989,5.1000000000000005,136,1.3 +2020,11,12,10,0,28.700000000000003,1.3800000000000001,0.183,0.6,72,394,158,7,24.6,84,80,3,102,0.256,78.59,77.3,0.14,989,5.1000000000000005,131,1.1 +2020,11,12,11,0,27.3,1.37,0.184,0.6,0,0,0,7,25.200000000000003,0,0,0,0,0.257,88.54,91.58,0.14,990,5.1000000000000005,119,0.8 +2020,11,12,12,0,26.8,1.36,0.183,0.6,0,0,0,8,25,0,0,0,0,0.257,89.95,105.85000000000001,0.14,990,5.1000000000000005,104,0.8 +2020,11,12,13,0,26.3,1.34,0.18100000000000002,0.6,0,0,0,7,24.8,0,0,0,0,0.258,91.75,120.08,0.14,991,5.2,92,0.9 +2020,11,12,14,0,25.900000000000002,1.31,0.17500000000000002,0.6,0,0,0,8,24.8,0,0,0,0,0.258,93.45,134.13,0.14,991,5.2,84,1 +2020,11,12,15,0,25.6,1.29,0.16770000000000002,0.6,0,0,0,8,24.700000000000003,0,0,0,0,0.259,94.63,147.68,0.14,991,5.300000000000001,78,1.1 +2020,11,12,16,0,25.3,1.29,0.15510000000000002,0.6,0,0,0,3,24.6,0,0,0,0,0.259,95.77,159.64000000000001,0.14,991,5.300000000000001,73,1.1 +2020,11,12,17,0,24.900000000000002,1.31,0.1447,0.6,0,0,0,8,24.5,0,0,0,0,0.259,97.36,165.3,0.14,991,5.300000000000001,69,1 +2020,11,12,18,0,24.6,1.33,0.1437,0.6,0,0,0,3,24.3,0,0,0,0,0.259,98.25,158.8,0.14,990,5.300000000000001,66,1 +2020,11,12,19,0,24.400000000000002,1.35,0.13970000000000002,0.6,0,0,0,3,24.1,0,0,0,0,0.259,98.43,146.62,0.14,989,5.2,63,1 +2020,11,12,20,0,24.200000000000003,1.3800000000000001,0.1292,0.6,0,0,0,3,24,0,0,0,0,0.258,98.56,133.01,0.14,989,5.1000000000000005,61,1 +2020,11,12,21,0,24,1.41,0.1241,0.6,0,0,0,1,23.8,0,0,0,0,0.258,98.79,118.94,0.14,989,5,58,1.1 +2020,11,12,22,0,23.900000000000002,1.43,0.11910000000000001,0.6,0,0,0,3,23.6,0,0,0,0,0.258,98.49000000000001,104.71000000000001,0.14,989,4.9,53,1.1 +2020,11,12,23,0,24.200000000000003,1.45,0.1131,0.6,0,0,0,0,23.8,0,0,0,0,0.258,97.38,89.94,0.14,990,4.9,49,1.2000000000000002 +2020,11,13,0,0,25.700000000000003,1.47,0.1119,0.6,63,504,183,0,24.200000000000003,63,504,0,183,0.259,91.42,76.2,0.14,991,4.9,52,1.9000000000000001 +2020,11,13,1,0,27.200000000000003,1.49,0.11080000000000001,0.6,91,716,425,0,24.400000000000002,91,716,0,425,0.259,84.49,62.24,0.14,991,5,57,2 +2020,11,13,2,0,28.6,1.5,0.1116,0.6,109,815,647,0,24.400000000000002,109,815,0,647,0.26,77.97,48.65,0.14,992,5.1000000000000005,68,1.8 +2020,11,13,3,0,29.700000000000003,1.06,0.1658,0.6,147,822,812,0,24.3,147,822,0,812,0.26,72.77,35.97,0.14,991,5.2,80,1.7000000000000002 +2020,11,13,4,0,30.400000000000002,1.08,0.1627,0.6,152,854,922,0,24.200000000000003,152,854,0,922,0.261,69.69,25.62,0.14,991,5.300000000000001,89,1.7000000000000002 +2020,11,13,5,0,30.8,1.09,0.16090000000000002,0.6,153,863,958,3,24.200000000000003,488,133,0,612,0.261,67.82000000000001,21.34,0.14,990,5.4,96,1.6 +2020,11,13,6,0,30.8,1,0.1991,0.6,170,824,908,3,24.200000000000003,469,167,0,619,0.261,67.99,26.29,0.14,988,5.5,99,1.5 +2020,11,13,7,0,30.700000000000003,0.99,0.20700000000000002,0.6,165,783,791,8,24.3,330,452,0,692,0.261,68.67,36.92,0.14,988,5.6000000000000005,99,1.5 +2020,11,13,8,0,30.3,0.99,0.20980000000000001,0.6,150,714,611,7,24.5,308,133,0,394,0.262,71.11,49.7,0.14,987,5.7,98,1.6 +2020,11,13,9,0,29.6,1,0.2217,0.6,127,579,387,7,25.1,192,219,0,290,0.262,77,63.32,0.14,988,5.800000000000001,94,1.3 +2020,11,13,10,0,28.400000000000002,1,0.2303,0.6,80,325,152,6,25,7,0,3,7,0.263,81.75,77.3,0.14,988,5.9,92,1.3 +2020,11,13,11,0,27.1,0.99,0.22290000000000001,0.6,0,0,0,6,25.400000000000002,0,0,0,0,0.263,90.2,91.56,0.14,989,6,90,1 +2020,11,13,12,0,26.6,0.98,0.2149,0.6,0,0,0,7,25.200000000000003,0,0,0,0,0.264,92.21000000000001,105.8,0.14,990,6,88,1 +2020,11,13,13,0,26.200000000000003,1,0.19790000000000002,0.6,0,0,0,7,25.1,0,0,0,0,0.265,93.91,120.01,0.14,991,6.1000000000000005,87,1.1 +2020,11,13,14,0,25.8,1.04,0.1734,0.6,0,0,0,8,25,0,0,0,0,0.265,95.4,134.03,0.14,991,6,82,1.3 +2020,11,13,15,0,25.5,1.1,0.1516,0.6,0,0,0,8,24.900000000000002,0,0,0,0,0.265,96.46000000000001,147.54,0.14,991,5.9,78,1.4000000000000001 +2020,11,13,16,0,25.200000000000003,1.1500000000000001,0.1325,0.6,0,0,0,8,24.700000000000003,0,0,0,0,0.264,97.06,159.43,0.14,990,5.800000000000001,76,1.6 +2020,11,13,17,0,24.900000000000002,1.17,0.11720000000000001,0.6,0,0,0,7,24.5,0,0,0,0,0.264,97.5,165.04,0.14,989,5.6000000000000005,73,1.7000000000000002 +2020,11,13,18,0,24.6,1.17,0.115,0.6,0,0,0,7,24.3,0,0,0,0,0.263,97.93,158.65,0.14,988,5.5,68,1.5 +2020,11,13,19,0,24.400000000000002,1.1400000000000001,0.12240000000000001,0.6,0,0,0,8,24,0,0,0,0,0.263,97.59,146.55,0.14,988,5.5,56,1.1 +2020,11,13,20,0,24.1,1.11,0.1333,0.6,0,0,0,8,23.8,0,0,0,0,0.263,98.24000000000001,132.98,0.14,989,5.5,31,0.9 +2020,11,13,21,0,24.200000000000003,1.12,0.1404,0.6,0,0,0,0,23.8,0,0,0,0,0.263,97.60000000000001,118.95,0.14,990,5.5,17,0.9 +2020,11,13,22,0,24.1,1.16,0.1326,0.6,0,0,0,1,23.6,0,0,0,0,0.264,97.24000000000001,104.74000000000001,0.14,990,5.4,14,0.8 +2020,11,13,23,0,24.200000000000003,1.19,0.1213,0.6,0,0,0,1,23.700000000000003,0,0,0,0,0.264,97.26,89.98,0.14,991,5.300000000000001,16,0.8 +2020,11,14,0,0,25.6,1.22,0.11420000000000001,0.6,64,490,180,0,24.400000000000002,64,490,0,180,0.264,92.9,76.27,0.14,991,5.300000000000001,20,1.6 +2020,11,14,1,0,27.1,1.26,0.10540000000000001,0.6,91,716,423,3,24.3,183,339,0,340,0.265,84.85000000000001,62.33,0.14,992,5.2,30,1.7000000000000002 +2020,11,14,2,0,28.700000000000003,1.3,0.0983,0.6,104,824,647,8,24,240,498,0,568,0.265,75.79,48.78,0.14,992,5.2,39,1.3 +2020,11,14,3,0,30,1.21,0.11510000000000001,0.6,122,862,819,7,23.900000000000002,375,372,0,675,0.265,69.72,36.15,0.14,991,5.300000000000001,55,1 +2020,11,14,4,0,30.8,1.2,0.1148,0.6,128,890,929,7,23.900000000000002,400,423,0,780,0.265,66.66,25.86,0.14,990,5.300000000000001,71,0.9 +2020,11,14,5,0,31.200000000000003,1.2,0.11370000000000001,0.6,129,899,965,8,24,410,447,0,825,0.265,65.47,21.6,0.14,989,5.4,79,0.9 +2020,11,14,6,0,31.3,1.11,0.1484,0.6,145,862,916,3,24,405,407,3,769,0.264,65.24,26.47,0.14,988,5.5,85,0.9 +2020,11,14,7,0,31.1,1.1,0.15510000000000002,0.6,140,825,799,8,24,321,473,0,699,0.263,66.08,37.03,0.14,987,5.6000000000000005,92,1.1 +2020,11,14,8,0,30.6,1.09,0.15940000000000001,0.6,129,758,619,7,24.200000000000003,279,357,0,510,0.263,68.62,49.76,0.14,987,5.7,99,1.2000000000000002 +2020,11,14,9,0,30,1.11,0.1762,0.6,112,626,393,7,24.900000000000002,182,298,0,316,0.263,74.09,63.35,0.14,987,5.800000000000001,105,1.1 +2020,11,14,10,0,28.8,1.11,0.1862,0.6,73,375,156,8,24.8,82,183,3,122,0.263,78.91,77.3,0.14,988,5.800000000000001,107,1.2000000000000002 +2020,11,14,11,0,27.400000000000002,1.1,0.1817,0.6,0,0,0,3,25.400000000000002,0,0,0,0,0.263,88.91,91.53,0.14,989,5.9,112,0.9 +2020,11,14,12,0,26.8,1.09,0.1781,0.6,0,0,0,8,25.200000000000003,0,0,0,0,0.263,91.14,105.76,0.14,990,5.9,113,1 +2020,11,14,13,0,26.400000000000002,1.08,0.1686,0.6,0,0,0,3,25.1,0,0,0,0,0.263,92.53,119.94,0.14,990,6,111,1.1 +2020,11,14,14,0,26,1.04,0.15710000000000002,0.6,0,0,0,3,25,0,0,0,0,0.264,94.24,133.94,0.14,991,6,106,1.2000000000000002 +2020,11,14,15,0,25.700000000000003,1.01,0.1486,0.6,0,0,0,8,24.900000000000002,0,0,0,0,0.264,95.39,147.4,0.14,991,6,97,1.2000000000000002 +2020,11,14,16,0,25.400000000000002,1,0.13670000000000002,0.6,0,0,0,8,24.8,0,0,0,0,0.263,96.60000000000001,159.22,0.14,991,5.9,92,1.3 +2020,11,14,17,0,25.200000000000003,0.99,0.1203,0.6,0,0,0,3,24.700000000000003,0,0,0,0,0.262,97.08,164.79,0.14,990,5.9,90,1.5 +2020,11,14,18,0,24.900000000000002,1,0.1223,0.6,0,0,0,4,24.5,0,0,0,0,0.261,97.81,158.5,0.14,989,5.9,80,1.2000000000000002 +2020,11,14,19,0,24.700000000000003,1,0.128,0.6,0,0,0,0,24.3,0,0,0,0,0.261,97.85000000000001,146.49,0.14,989,5.9,55,1 +2020,11,14,20,0,24.5,1.02,0.12140000000000001,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.26,98.16,132.96,0.14,989,5.9,46,1 +2020,11,14,21,0,24.400000000000002,1.06,0.1198,0.6,0,0,0,0,24.1,0,0,0,0,0.26,97.97,118.95,0.14,990,5.9,50,0.9 +2020,11,14,22,0,24.3,1.09,0.1174,0.6,0,0,0,3,23.900000000000002,0,0,0,0,0.26,97.9,104.77,0.14,990,5.800000000000001,49,0.9 +2020,11,14,23,0,24.5,1.1,0.1124,0.6,0,0,0,3,24.1,0,0,0,0,0.26,97.37,90.02,0.14,991,5.800000000000001,44,1 +2020,11,15,0,0,25.400000000000002,1.12,0.11270000000000001,0.6,64,485,179,3,24.5,90,175,3,131,0.261,94.64,76.35000000000001,0.15,992,5.800000000000001,45,1.6 +2020,11,15,1,0,26.1,1.1400000000000001,0.10990000000000001,0.6,93,705,419,0,24.700000000000003,93,705,0,419,0.262,91.98,62.43,0.15,992,5.800000000000001,55,2 +2020,11,15,2,0,26.900000000000002,1.16,0.1056,0.6,108,812,642,3,24.700000000000003,281,376,0,528,0.263,87.96000000000001,48.910000000000004,0.15,993,5.800000000000001,64,2.2 +2020,11,15,3,0,27.6,1.1500000000000001,0.1458,0.6,137,834,809,3,24.700000000000003,311,24,0,331,0.263,84.08,36.32,0.15,992,5.800000000000001,67,2.2 +2020,11,15,4,0,28.200000000000003,1.16,0.1418,0.6,142,867,921,3,24.6,470,194,0,643,0.263,80.9,26.09,0.15,991,5.7,66,2.2 +2020,11,15,5,0,28.6,1.16,0.1395,0.6,143,877,958,0,24.6,143,877,0,958,0.263,78.77,21.85,0.15,990,5.7,67,2 +2020,11,15,6,0,28.8,1.17,0.1764,0.6,158,841,909,1,24.5,158,841,0,909,0.261,77.69,26.650000000000002,0.15,989,5.800000000000001,70,1.7000000000000002 +2020,11,15,7,0,28.900000000000002,1.16,0.17750000000000002,0.6,151,807,794,0,24.5,151,807,0,794,0.26,77.07000000000001,37.13,0.15,989,5.800000000000001,76,1.6 +2020,11,15,8,0,28.8,1.16,0.17800000000000002,0.6,136,744,616,3,24.6,308,182,0,426,0.259,77.87,49.81,0.15,988,5.800000000000001,81,1.4000000000000001 +2020,11,15,9,0,28.400000000000002,1.1500000000000001,0.1845,0.6,115,619,392,7,24.900000000000002,160,11,0,165,0.258,81.44,63.370000000000005,0.15,988,5.800000000000001,83,1.1 +2020,11,15,10,0,27.5,1.1300000000000001,0.1991,0.6,75,363,155,9,24.8,8,0,3,8,0.258,85.19,77.29,0.15,989,5.9,83,0.9 +2020,11,15,11,0,26.5,1.11,0.2069,0.6,0,0,0,9,25,0,0,0,0,0.258,91.25,91.51,0.15,990,5.9,90,0.6000000000000001 +2020,11,15,12,0,26.1,1.09,0.2127,0.6,0,0,0,9,24.700000000000003,0,0,0,0,0.259,92.22,105.71000000000001,0.15,991,5.9,93,0.6000000000000001 +2020,11,15,13,0,25.8,1.08,0.2126,0.6,0,0,0,6,24.6,0,0,0,0,0.26,92.94,119.87,0.15,991,5.9,93,0.6000000000000001 +2020,11,15,14,0,25.5,1.07,0.21030000000000001,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.26,93.73,133.83,0.15,992,5.9,91,0.6000000000000001 +2020,11,15,15,0,25.200000000000003,1.06,0.2083,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.26,94.47,147.26,0.15,992,5.800000000000001,86,0.6000000000000001 +2020,11,15,16,0,25,1.05,0.2041,0.6,0,0,0,7,24.1,0,0,0,0,0.26,94.94,159.01,0.15,992,5.800000000000001,75,0.6000000000000001 +2020,11,15,17,0,24.700000000000003,1.05,0.1965,0.6,0,0,0,8,24,0,0,0,0,0.259,95.94,164.53,0.15,991,5.7,59,0.6000000000000001 +2020,11,15,18,0,24.5,1.06,0.1894,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.258,96.32000000000001,158.36,0.15,990,5.7,48,0.6000000000000001 +2020,11,15,19,0,24.3,1.07,0.1811,0.6,0,0,0,7,23.8,0,0,0,0,0.257,96.87,146.42000000000002,0.15,990,5.7,46,0.6000000000000001 +2020,11,15,20,0,24.1,1.09,0.1689,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.257,97.4,132.94,0.15,989,5.7,48,0.7000000000000001 +2020,11,15,21,0,23.900000000000002,1.1300000000000001,0.15940000000000001,0.6,0,0,0,7,23.5,0,0,0,0,0.256,97.88,118.97,0.15,989,5.7,51,0.8 +2020,11,15,22,0,23.8,1.17,0.14830000000000002,0.6,0,0,0,3,23.400000000000002,0,0,0,0,0.256,97.86,104.81,0.15,990,5.6000000000000005,52,0.8 +2020,11,15,23,0,24,1.21,0.1338,0.6,0,0,0,1,23.6,0,0,0,0,0.256,97.59,90.07000000000001,0.15,990,5.6000000000000005,51,1 +2020,11,16,0,0,25.1,1.25,0.1227,0.6,65,476,177,3,24.200000000000003,85,247,3,143,0.257,94.62,76.43,0.15,991,5.6000000000000005,48,1.9000000000000001 +2020,11,16,1,0,26.1,1.3,0.11030000000000001,0.6,92,708,419,8,24.3,160,450,0,368,0.258,89.83,62.53,0.15,992,5.6000000000000005,48,2.3000000000000003 +2020,11,16,2,0,27.5,1.34,0.1004,0.6,104,820,642,0,24,104,820,0,642,0.259,81.49,49.050000000000004,0.15,992,5.6000000000000005,53,2.4000000000000004 +2020,11,16,3,0,28.8,1.3,0.1012,0.6,116,871,816,1,23.900000000000002,116,871,0,816,0.26,74.78,36.5,0.15,992,5.7,56,2.4000000000000004 +2020,11,16,4,0,29.700000000000003,1.29,0.1004,0.6,121,899,927,1,24,121,899,0,927,0.26,71.31,26.32,0.15,991,5.7,58,2.3000000000000003 +2020,11,16,5,0,30.200000000000003,1.27,0.101,0.6,123,906,963,0,24,123,906,0,963,0.26,69.59,22.1,0.15,990,5.800000000000001,61,2.2 +2020,11,16,6,0,30.3,1.16,0.1491,0.6,145,860,912,3,24.1,462,232,0,669,0.259,69.45,26.830000000000002,0.15,989,5.9,65,2 +2020,11,16,7,0,30.1,1.1300000000000001,0.155,0.6,141,823,796,3,24.200000000000003,400,129,0,503,0.259,70.67,37.230000000000004,0.15,988,6,69,1.9000000000000001 +2020,11,16,8,0,29.700000000000003,1.1300000000000001,0.1521,0.6,126,764,619,3,24.400000000000002,305,115,0,379,0.258,73.09,49.86,0.15,988,6,74,1.8 +2020,11,16,9,0,29,1.1500000000000001,0.15330000000000002,0.6,105,649,396,0,24.8,105,649,0,396,0.258,78.28,63.38,0.15,988,6,76,1.5 +2020,11,16,10,0,27.900000000000002,1.17,0.1489,0.6,67,419,159,3,24.900000000000002,78,254,3,134,0.257,83.75,77.29,0.15,989,6,77,1.2000000000000002 +2020,11,16,11,0,26.700000000000003,1.18,0.1383,0.6,0,0,0,9,25.200000000000003,0,0,0,0,0.258,91.28,91.47,0.15,990,6,82,0.7000000000000001 +2020,11,16,12,0,26.3,1.2,0.1307,0.6,0,0,0,9,25,0,0,0,0,0.258,92.37,105.66,0.15,990,5.9,84,0.6000000000000001 +2020,11,16,13,0,25.900000000000002,1.2,0.12380000000000001,0.6,0,0,0,9,24.8,0,0,0,0,0.258,93.63,119.8,0.15,991,5.800000000000001,81,0.6000000000000001 +2020,11,16,14,0,25.6,1.21,0.1174,0.6,0,0,0,6,24.6,0,0,0,0,0.259,94.32000000000001,133.73,0.15,992,5.800000000000001,72,0.5 +2020,11,16,15,0,25.3,1.21,0.1134,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.26,94.89,147.12,0.15,992,5.7,62,0.5 +2020,11,16,16,0,25,1.22,0.1092,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.26,95.35000000000001,158.8,0.15,991,5.7,53,0.5 +2020,11,16,17,0,24.700000000000003,1.25,0.10310000000000001,0.6,0,0,0,6,24,0,0,0,0,0.261,95.94,164.29,0.15,991,5.6000000000000005,43,0.5 +2020,11,16,18,0,24.5,1.28,0.1022,0.6,0,0,0,6,23.8,0,0,0,0,0.261,95.85000000000001,158.22,0.15,990,5.6000000000000005,36,0.5 +2020,11,16,19,0,24.3,1.3,0.0998,0.6,0,0,0,7,23.6,0,0,0,0,0.26,95.86,146.36,0.15,989,5.6000000000000005,31,0.5 +2020,11,16,20,0,24.1,1.33,0.0947,0.6,0,0,0,8,23.400000000000002,0,0,0,0,0.26,96.06,132.93,0.15,989,5.6000000000000005,27,0.5 +2020,11,16,21,0,24,1.35,0.0952,0.6,0,0,0,8,23.3,0,0,0,0,0.26,95.85000000000001,118.98,0.15,989,5.6000000000000005,25,0.5 +2020,11,16,22,0,23.900000000000002,1.36,0.0951,0.6,0,0,0,8,23.200000000000003,0,0,0,0,0.26,95.95,104.84,0.15,990,5.7,23,0.5 +2020,11,16,23,0,24.1,1.35,0.0946,0.6,0,0,0,3,23.400000000000002,0,0,0,0,0.26,96.14,90.12,0.15,990,5.9,23,0.6000000000000001 +2020,11,17,0,0,25.1,1.33,0.0974,0.6,60,508,178,8,24,83,266,3,145,0.261,93.55,76.51,0.15,991,6,22,1.1 +2020,11,17,1,0,25.700000000000003,1.29,0.10300000000000001,0.6,89,712,416,3,24,96,0,0,96,0.261,90.59,62.64,0.15,992,6.2,31,1.5 +2020,11,17,2,0,26.3,1.27,0.1057,0.6,107,810,637,3,24.1,309,112,0,383,0.262,87.55,49.18,0.15,992,6.2,39,1.8 +2020,11,17,3,0,26.8,1.31,0.09770000000000001,0.6,114,871,813,0,24,114,871,0,813,0.263,84.71000000000001,36.67,0.15,992,6.2,49,1.9000000000000001 +2020,11,17,4,0,27.200000000000003,1.3,0.0979,0.6,120,898,923,0,23.8,120,898,0,923,0.263,81.96000000000001,26.55,0.15,991,6.2,57,2 +2020,11,17,5,0,27.3,1.29,0.0956,0.6,120,908,960,3,23.8,215,10,0,224,0.263,81.04,22.35,0.15,991,6.1000000000000005,62,1.9000000000000001 +2020,11,17,6,0,27.3,1.19,0.1361,0.6,139,868,912,8,23.700000000000003,439,325,0,729,0.263,80.67,27,0.15,990,6.1000000000000005,66,1.7000000000000002 +2020,11,17,7,0,27.200000000000003,1.21,0.1269,0.6,128,846,800,3,23.6,374,340,0,644,0.263,80.97,37.33,0.15,989,6,71,1.6 +2020,11,17,8,0,27,1.23,0.11420000000000001,0.6,110,799,625,8,23.8,257,435,0,538,0.263,82.56,49.910000000000004,0.15,988,6,76,1.4000000000000001 +2020,11,17,9,0,26.6,1.25,0.10830000000000001,0.6,90,699,403,8,24,183,286,0,312,0.263,85.8,63.4,0.15,988,5.9,79,1.2000000000000002 +2020,11,17,10,0,25.900000000000002,1.27,0.1046,0.6,59,479,165,9,24,8,0,3,8,0.263,89.19,77.27,0.15,989,5.9,79,1.1 +2020,11,17,11,0,25.1,1.28,0.10020000000000001,0.6,0,0,0,9,23.900000000000002,0,0,0,0,0.263,93.04,91.44,0.15,990,5.9,78,0.7000000000000001 +2020,11,17,12,0,24.8,1.29,0.0959,0.6,0,0,0,9,23.700000000000003,0,0,0,0,0.264,93.43,105.60000000000001,0.15,990,5.9,73,0.7000000000000001 +2020,11,17,13,0,24.6,1.3,0.092,0.6,0,0,0,9,23.5,0,0,0,0,0.264,93.75,119.72,0.15,991,5.9,69,0.8 +2020,11,17,14,0,24.400000000000002,1.3,0.0882,0.6,0,0,0,9,23.400000000000002,0,0,0,0,0.264,94.15,133.63,0.15,991,5.9,65,0.8 +2020,11,17,15,0,24.1,1.31,0.0849,0.6,0,0,0,9,23.3,0,0,0,0,0.264,95.28,146.97,0.15,991,5.9,59,0.8 +2020,11,17,16,0,23.900000000000002,1.32,0.0811,0.6,0,0,0,6,23.200000000000003,0,0,0,0,0.263,95.98,158.6,0.15,991,5.9,54,0.9 +2020,11,17,17,0,23.8,1.34,0.076,0.6,0,0,0,6,23.1,0,0,0,0,0.262,96.06,164.05,0.15,991,5.800000000000001,48,0.9 +2020,11,17,18,0,23.6,1.36,0.0717,0.6,0,0,0,6,23,0,0,0,0,0.261,96.57000000000001,158.08,0.15,990,5.800000000000001,42,0.9 +2020,11,17,19,0,23.400000000000002,1.3800000000000001,0.06810000000000001,0.6,0,0,0,7,22.900000000000002,0,0,0,0,0.261,96.99000000000001,146.31,0.15,989,5.7,36,1 +2020,11,17,20,0,23.200000000000003,1.4000000000000001,0.0648,0.6,0,0,0,8,22.8,0,0,0,0,0.261,97.41,132.92000000000002,0.15,988,5.7,32,1 +2020,11,17,21,0,23.1,1.41,0.0629,0.6,0,0,0,8,22.6,0,0,0,0,0.261,97.2,119,0.15,988,5.7,28,0.9 +2020,11,17,22,0,23,1.43,0.061000000000000006,0.6,0,0,0,8,22.5,0,0,0,0,0.261,96.99000000000001,104.89,0.15,989,5.7,23,0.9 +2020,11,17,23,0,23.3,1.43,0.0597,0.6,0,0,0,4,22.700000000000003,0,0,0,0,0.261,96.46000000000001,90.17,0.15,989,5.7,19,0.8 +2020,11,18,0,0,24.6,1.44,0.0599,0.6,51,565,182,4,23.5,89,80,3,108,0.261,93.72,76.59,0.15,990,5.7,23,1.4000000000000001 +2020,11,18,1,0,26.400000000000002,1.46,0.058300000000000005,0.6,73,766,424,4,24.1,195,238,0,304,0.262,86.95,62.75,0.15,991,5.7,43,1.4000000000000001 +2020,11,18,2,0,27.8,1.48,0.0579,0.6,85,859,645,0,23.8,85,859,0,645,0.263,78.69,49.32,0.15,991,5.800000000000001,65,1.1 +2020,11,18,3,0,28.900000000000002,1.31,0.0852,0.6,108,884,815,3,23.700000000000003,406,173,0,544,0.263,73.5,36.85,0.15,991,5.800000000000001,81,0.8 +2020,11,18,4,0,29.700000000000003,1.33,0.0888,0.6,114,907,925,0,23.6,114,907,0,925,0.263,69.69,26.77,0.15,990,5.800000000000001,92,0.6000000000000001 +2020,11,18,5,0,30.1,1.36,0.095,0.6,119,911,960,0,23.5,119,911,0,960,0.263,67.66,22.580000000000002,0.15,989,5.800000000000001,101,0.6000000000000001 +2020,11,18,6,0,30.200000000000003,1.3,0.135,0.6,137,872,913,3,23.400000000000002,233,11,0,243,0.263,66.94,27.17,0.15,988,5.800000000000001,105,0.6000000000000001 +2020,11,18,7,0,30.1,1.31,0.1439,0.6,134,835,798,3,23.400000000000002,181,5,0,185,0.262,67.38,37.42,0.15,987,5.800000000000001,108,0.7000000000000001 +2020,11,18,8,0,29.8,1.32,0.1464,0.6,123,773,620,6,23.6,222,13,0,231,0.262,69.4,49.95,0.15,987,5.800000000000001,119,0.8 +2020,11,18,9,0,29.400000000000002,1.32,0.16790000000000002,0.6,109,639,395,9,24.1,37,0,0,37,0.262,73.29,63.410000000000004,0.15,987,5.9,130,0.7000000000000001 +2020,11,18,10,0,28.400000000000002,1.32,0.183,0.6,72,389,158,9,24,33,0,3,33,0.261,76.92,77.26,0.15,988,5.9,115,0.6000000000000001 +2020,11,18,11,0,27.1,1.32,0.1862,0.6,0,0,0,6,24.6,0,0,0,0,0.262,86,91.4,0.15,989,6,40,0.4 +2020,11,18,12,0,26.6,1.31,0.2093,0.6,0,0,0,6,24.6,0,0,0,0,0.263,88.75,105.54,0.15,990,6.1000000000000005,2,0.4 +2020,11,18,13,0,26.200000000000003,1.31,0.2223,0.6,0,0,0,6,24.3,0,0,0,0,0.263,89.06,119.64,0.15,991,6.1000000000000005,19,0.4 +2020,11,18,14,0,25.900000000000002,1.3,0.222,0.6,0,0,0,7,24.1,0,0,0,0,0.263,89.66,133.52,0.15,991,6.1000000000000005,30,0.5 +2020,11,18,15,0,25.6,1.31,0.229,0.6,0,0,0,7,24,0,0,0,0,0.262,91.03,146.83,0.15,991,6.2,35,0.5 +2020,11,18,16,0,25.200000000000003,1.3,0.2288,0.6,0,0,0,7,24,0,0,0,0,0.261,92.82000000000001,158.39000000000001,0.15,991,6.2,36,0.6000000000000001 +2020,11,18,17,0,24.900000000000002,1.3,0.22360000000000002,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.261,93.91,163.81,0.15,990,6.2,36,0.5 +2020,11,18,18,0,24.700000000000003,1.3,0.2303,0.6,0,0,0,7,23.8,0,0,0,0,0.26,94.64,157.95000000000002,0.15,990,6.2,31,0.5 +2020,11,18,19,0,24.5,1.3,0.2358,0.6,0,0,0,6,23.700000000000003,0,0,0,0,0.258,95.35000000000001,146.26,0.15,989,6.1000000000000005,23,0.5 +2020,11,18,20,0,24.400000000000002,1.3,0.2313,0.6,0,0,0,7,23.6,0,0,0,0,0.257,95.4,132.91,0.15,988,6.1000000000000005,13,0.6000000000000001 +2020,11,18,21,0,24.400000000000002,1.3,0.24650000000000002,0.6,0,0,0,6,23.5,0,0,0,0,0.257,94.79,119.02,0.15,989,6.1000000000000005,5,0.6000000000000001 +2020,11,18,22,0,24.5,1.31,0.24780000000000002,0.6,0,0,0,8,23.400000000000002,0,0,0,0,0.257,93.60000000000001,104.93,0.15,989,6.1000000000000005,356,0.6000000000000001 +2020,11,18,23,0,24.700000000000003,1.32,0.23120000000000002,0.6,0,0,0,8,23.6,0,0,0,0,0.257,93.66,90.23,0.15,990,6.1000000000000005,346,0.5 +2020,11,19,0,0,26,1.33,0.2393,0.6,82,351,163,3,24.5,80,288,3,146,0.257,91.44,76.67,0.15,991,6.1000000000000005,353,0.6000000000000001 +2020,11,19,1,0,27.200000000000003,1.36,0.2403,0.6,130,581,396,3,24.700000000000003,193,248,0,306,0.258,86.24,62.85,0.15,991,6.1000000000000005,12,0.7000000000000001 +2020,11,19,2,0,28,1.3900000000000001,0.2232,0.6,151,714,616,3,24.700000000000003,287,335,0,505,0.259,82.4,49.45,0.15,991,6.1000000000000005,13,0.8 +2020,11,19,3,0,28.900000000000002,1.4000000000000001,0.2378,0.6,173,769,787,7,24.6,349,43,0,383,0.259,77.81,37.03,0.15,991,6.1000000000000005,16,0.9 +2020,11,19,4,0,29.6,1.41,0.24810000000000001,0.6,187,796,896,7,24.5,440,79,0,511,0.259,74.08,26.990000000000002,0.15,990,6.1000000000000005,16,1.1 +2020,11,19,5,0,29.5,1.4000000000000001,0.24650000000000002,0.6,189,807,933,8,24.5,486,202,0,672,0.258,74.51,22.82,0.15,989,6.1000000000000005,13,1.1 +2020,11,19,6,0,29.200000000000003,1.37,0.2882,0.6,204,769,887,3,24.6,349,26,0,372,0.258,76.37,27.330000000000002,0.15,988,6.2,4,1 +2020,11,19,7,0,28.700000000000003,1.36,0.3043,0.6,199,722,772,3,24.700000000000003,375,333,0,640,0.257,79.03,37.51,0.15,987,6.300000000000001,339,0.9 +2020,11,19,8,0,28,1.35,0.2948,0.6,175,657,598,9,24.8,72,0,0,72,0.257,82.9,49.99,0.15,987,6.4,277,0.9 +2020,11,19,9,0,27.400000000000002,1.29,0.3377,0.6,154,498,376,6,25,20,0,0,20,0.256,86.59,63.410000000000004,0.15,987,6.4,250,0.9 +2020,11,19,10,0,26.700000000000003,1.26,0.34840000000000004,0.6,91,256,147,6,25.1,8,0,3,8,0.257,91.21000000000001,77.24,0.15,988,6.5,277,0.8 +2020,11,19,11,0,26.1,1.23,0.3229,0.6,0,0,0,6,25.3,0,0,0,0,0.257,95.22,91.36,0.15,989,6.6000000000000005,301,0.6000000000000001 +2020,11,19,12,0,25.900000000000002,1.22,0.3352,0.6,0,0,0,6,25.200000000000003,0,0,0,0,0.258,96.05,105.48,0.15,990,6.6000000000000005,1,0.5 +2020,11,19,13,0,25.6,1.2,0.30060000000000003,0.6,0,0,0,6,25.1,0,0,0,0,0.259,97.34,119.55,0.15,990,6.7,40,0.5 +2020,11,19,14,0,25.400000000000002,1.19,0.2526,0.6,0,0,0,6,25.1,0,0,0,0,0.259,98.01,133.41,0.15,991,6.7,55,0.5 +2020,11,19,15,0,25.200000000000003,1.21,0.25,0.6,0,0,0,6,24.900000000000002,0,0,0,0,0.259,98.46000000000001,146.68,0.15,990,6.7,56,0.6000000000000001 +2020,11,19,16,0,25,1.21,0.2056,0.6,0,0,0,6,24.8,0,0,0,0,0.259,98.76,158.19,0.15,990,6.6000000000000005,50,0.6000000000000001 +2020,11,19,17,0,24.8,1.22,0.1714,0.6,0,0,0,6,24.6,0,0,0,0,0.259,98.99000000000001,163.58,0.15,990,6.6000000000000005,34,0.7000000000000001 +2020,11,19,18,0,24.6,1.24,0.1898,0.6,0,0,0,6,24.5,0,0,0,0,0.259,99.26,157.83,0.15,989,6.5,16,0.8 +2020,11,19,19,0,24.400000000000002,1.25,0.18380000000000002,0.6,0,0,0,7,24.3,0,0,0,0,0.259,99.14,146.21,0.15,989,6.300000000000001,10,0.8 +2020,11,19,20,0,24.200000000000003,1.26,0.1635,0.6,0,0,0,7,24,0,0,0,0,0.259,98.92,132.91,0.15,988,6.1000000000000005,11,0.8 +2020,11,19,21,0,24.1,1.28,0.1565,0.6,0,0,0,7,23.8,0,0,0,0,0.259,98.03,119.05,0.15,989,6,12,0.7000000000000001 +2020,11,19,22,0,24.200000000000003,1.31,0.1434,0.6,0,0,0,7,23.5,0,0,0,0,0.259,96.12,104.98,0.15,989,5.800000000000001,18,0.5 +2020,11,19,23,0,24.200000000000003,1.33,0.1298,0.6,0,0,0,7,23.5,0,0,0,0,0.259,96.03,90.87,0.15,990,5.7,56,0.30000000000000004 +2020,11,20,0,0,24.900000000000002,1.37,0.1174,0.6,63,479,173,7,23.900000000000002,84,217,3,134,0.26,94.34,76.76,0.15,991,5.6000000000000005,58,0.5 +2020,11,20,1,0,26.200000000000003,1.41,0.1058,0.6,90,712,413,8,24,165,414,0,353,0.261,87.60000000000001,62.96,0.15,991,5.5,61,0.9 +2020,11,20,2,0,27.8,1.43,0.1018,0.6,105,818,635,7,23.8,291,315,0,495,0.262,78.91,49.59,0.15,992,5.5,60,0.8 +2020,11,20,3,0,29.1,1.42,0.1082,0.6,118,867,808,7,23.900000000000002,385,302,0,626,0.263,73.52,37.2,0.15,991,5.6000000000000005,55,0.6000000000000001 +2020,11,20,4,0,29.900000000000002,1.41,0.111,0.6,125,892,918,7,23.900000000000002,440,319,0,724,0.264,70.41,27.21,0.15,991,5.7,56,0.5 +2020,11,20,5,0,30.700000000000003,1.42,0.1105,0.6,127,900,956,6,24,486,177,0,650,0.264,67.65,23.04,0.15,990,5.7,65,0.4 +2020,11,20,6,0,30.8,1.34,0.1462,0.6,142,864,909,7,24.1,443,307,0,715,0.264,67.56,27.48,0.15,989,5.800000000000001,78,0.6000000000000001 +2020,11,20,7,0,30.6,1.34,0.14780000000000001,0.6,136,832,795,7,24.200000000000003,390,273,0,606,0.264,68.59,37.59,0.15,988,5.9,87,0.8 +2020,11,20,8,0,29.900000000000002,1.35,0.1454,0.6,122,774,619,7,24.1,257,437,0,537,0.264,71.05,50.03,0.15,987,6,92,1 +2020,11,20,9,0,29.400000000000002,1.35,0.1544,0.6,105,653,397,7,24.3,183,288,0,312,0.263,74.22,63.410000000000004,0.15,987,6,91,0.9 +2020,11,20,10,0,28.5,1.35,0.1636,0.6,69,412,160,6,24.200000000000003,83,172,3,121,0.263,77.69,77.21000000000001,0.15,988,6.1000000000000005,87,0.9 +2020,11,20,11,0,27.3,1.34,0.167,0.6,0,0,0,6,25.1,0,0,0,0,0.262,87.78,91.32000000000001,0.15,989,6.1000000000000005,89,0.6000000000000001 +2020,11,20,12,0,26.8,1.32,0.18080000000000002,0.6,0,0,0,7,25,0,0,0,0,0.262,89.8,105.42,0.15,990,6.2,89,0.6000000000000001 +2020,11,20,13,0,26.400000000000002,1.3,0.1917,0.6,0,0,0,7,24.900000000000002,0,0,0,0,0.262,91.27,119.47,0.15,991,6.2,87,0.6000000000000001 +2020,11,20,14,0,26.1,1.28,0.1991,0.6,0,0,0,7,24.700000000000003,0,0,0,0,0.262,92.28,133.3,0.15,991,6.300000000000001,82,0.5 +2020,11,20,15,0,25.900000000000002,1.26,0.21430000000000002,0.6,0,0,0,8,24.6,0,0,0,0,0.262,92.66,146.53,0.15,991,6.300000000000001,73,0.5 +2020,11,20,16,0,25.6,1.26,0.2207,0.6,0,0,0,8,24.5,0,0,0,0,0.262,93.48,157.98,0.15,991,6.300000000000001,60,0.5 +2020,11,20,17,0,25.400000000000002,1.25,0.2144,0.6,0,0,0,7,24.3,0,0,0,0,0.262,93.67,163.36,0.15,990,6.300000000000001,47,0.4 +2020,11,20,18,0,25.200000000000003,1.26,0.2192,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.261,93.99,157.70000000000002,0.15,989,6.300000000000001,38,0.5 +2020,11,20,19,0,25.1,1.27,0.2124,0.6,0,0,0,3,24.1,0,0,0,0,0.26,94.12,146.17000000000002,0.15,988,6.2,35,0.5 +2020,11,20,20,0,24.900000000000002,1.28,0.19440000000000002,0.6,0,0,0,7,24.1,0,0,0,0,0.259,95.37,132.91,0.15,988,6.2,39,0.5 +2020,11,20,21,0,24.900000000000002,1.3,0.1966,0.6,0,0,0,6,24,0,0,0,0,0.258,94.88,119.07000000000001,0.15,988,6.2,40,0.4 +2020,11,20,22,0,24.900000000000002,1.32,0.19590000000000002,0.6,0,0,0,7,23.8,0,0,0,0,0.258,93.71000000000001,105.03,0.15,989,6.2,50,0.4 +2020,11,20,23,0,24.900000000000002,1.33,0.19140000000000001,0.6,0,0,0,6,23.900000000000002,0,0,0,0,0.258,94.31,90.94,0.15,990,6.2,63,0.30000000000000004 +2020,11,21,0,0,25.400000000000002,1.34,0.2131,0.6,78,370,162,6,24.3,20,0,3,20,0.258,93.83,76.85000000000001,0.15,991,6.2,25,0.5 +2020,11,21,1,0,26.1,1.36,0.2217,0.6,124,594,394,6,24.5,113,0,0,113,0.258,91.06,63.08,0.15,992,6.2,20,0.7000000000000001 +2020,11,21,2,0,27,1.3800000000000001,0.2122,0.6,147,721,613,6,24.3,222,13,0,231,0.259,85.44,49.730000000000004,0.15,992,6.2,353,0.7000000000000001 +2020,11,21,3,0,27.8,1.3800000000000001,0.225,0.6,168,776,785,6,24.200000000000003,336,36,0,365,0.259,80.63,37.38,0.15,992,6.2,321,0.6000000000000001 +2020,11,21,4,0,28.3,1.3900000000000001,0.23040000000000002,0.6,179,806,895,6,24.200000000000003,78,0,0,78,0.259,78.38,27.43,0.15,991,6.1000000000000005,272,0.7000000000000001 +2020,11,21,5,0,28.8,1.4000000000000001,0.2184,0.6,177,824,934,6,24.200000000000003,470,98,0,560,0.258,76.32000000000001,23.26,0.15,990,6.1000000000000005,240,0.7000000000000001 +2020,11,21,6,0,28.900000000000002,1.3900000000000001,0.2263,0.6,178,809,894,6,24.200000000000003,456,116,0,558,0.258,75.68,27.63,0.15,989,6.1000000000000005,212,0.8 +2020,11,21,7,0,28.700000000000003,1.4000000000000001,0.22510000000000002,0.6,168,775,782,7,24.200000000000003,397,232,0,580,0.258,76.86,37.660000000000004,0.15,988,6.2,219,1 +2020,11,21,8,0,28,1.4000000000000001,0.2197,0.6,149,713,607,6,24.400000000000002,307,162,0,411,0.258,80.96000000000001,50.06,0.15,988,6.300000000000001,230,1.3 +2020,11,21,9,0,27.1,1.3800000000000001,0.2582,0.6,134,561,385,6,24.700000000000003,20,0,0,20,0.257,86.82000000000001,63.410000000000004,0.15,989,6.300000000000001,242,1.2000000000000002 +2020,11,21,10,0,26.400000000000002,1.3800000000000001,0.2805,0.6,84,310,153,6,24.700000000000003,9,0,3,9,0.257,90.15,77.19,0.15,989,6.300000000000001,255,0.9 +2020,11,21,11,0,25.700000000000003,1.37,0.2649,0.6,0,0,0,6,24.6,0,0,0,0,0.258,93.67,91.27,0.15,990,6.4,262,0.6000000000000001 +2020,11,21,12,0,25.400000000000002,1.37,0.2899,0.6,0,0,0,6,24.400000000000002,0,0,0,0,0.258,94.33,105.35000000000001,0.15,991,6.4,275,0.4 +2020,11,21,13,0,25.3,1.36,0.2883,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.259,93.77,119.38,0.15,991,6.4,43,0.30000000000000004 +2020,11,21,14,0,25.200000000000003,1.35,0.25470000000000004,0.6,0,0,0,6,24.3,0,0,0,0,0.259,94.84,133.18,0.15,992,6.5,77,0.30000000000000004 +2020,11,21,15,0,25.1,1.34,0.2579,0.6,0,0,0,7,24,0,0,0,0,0.259,93.4,146.38,0.15,991,6.5,81,0.4 +2020,11,21,16,0,25,1.32,0.2414,0.6,0,0,0,7,24,0,0,0,0,0.259,94.28,157.78,0.15,991,6.5,80,0.4 +2020,11,21,17,0,24.8,1.31,0.2046,0.6,0,0,0,7,24.1,0,0,0,0,0.258,95.75,163.14000000000001,0.15,991,6.5,65,0.5 +2020,11,21,18,0,24.6,1.3,0.21330000000000002,0.6,0,0,0,8,24.1,0,0,0,0,0.257,96.94,157.59,0.15,990,6.5,47,0.6000000000000001 +2020,11,21,19,0,24.400000000000002,1.3,0.2116,0.6,0,0,0,7,24,0,0,0,0,0.257,97.74000000000001,146.13,0.15,990,6.5,34,0.8 +2020,11,21,20,0,24.200000000000003,1.29,0.1892,0.6,0,0,0,8,23.900000000000002,0,0,0,0,0.256,98.26,132.91,0.15,990,6.4,31,0.8 +2020,11,21,21,0,24.1,1.3,0.1998,0.6,0,0,0,8,23.8,0,0,0,0,0.256,98.33,119.10000000000001,0.15,990,6.300000000000001,32,0.7000000000000001 +2020,11,21,22,0,24.1,1.31,0.1918,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.256,97.7,105.08,0.15,991,6.2,35,0.7000000000000001 +2020,11,21,23,0,24.200000000000003,1.32,0.16670000000000001,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.256,97.25,91.01,0.15,991,6.1000000000000005,2,0.5 +2020,11,22,0,0,24.8,1.35,0.1525,0.6,68,431,166,7,24.1,47,0,3,47,0.256,96.15,76.94,0.15,992,6,244,0.6000000000000001 +2020,11,22,1,0,25.6,1.4000000000000001,0.1345,0.6,98,677,403,7,24.1,197,112,0,247,0.256,91.62,63.190000000000005,0.15,993,6,232,0.7000000000000001 +2020,11,22,2,0,26.6,1.42,0.1226,0.6,112,796,626,8,24.3,247,23,0,262,0.257,87,49.870000000000005,0.15,993,5.9,232,1 +2020,11,22,3,0,27.400000000000002,1.4000000000000001,0.1343,0.6,130,844,799,8,24,398,224,0,575,0.257,81.76,37.550000000000004,0.15,992,5.9,239,1.2000000000000002 +2020,11,22,4,0,27.900000000000002,1.41,0.12940000000000002,0.6,134,877,911,7,24.200000000000003,448,98,0,535,0.257,80.10000000000001,27.64,0.15,992,5.9,247,1.4000000000000001 +2020,11,22,5,0,28.3,1.41,0.1202,0.6,132,892,950,7,24.3,484,156,0,627,0.256,78.95,23.48,0.15,991,5.9,255,1.5 +2020,11,22,6,0,28.400000000000002,1.41,0.11220000000000001,0.6,126,889,913,7,24.400000000000002,447,287,0,701,0.256,78.89,27.77,0.15,990,5.9,262,1.6 +2020,11,22,7,0,28.400000000000002,1.4000000000000001,0.1097,0.6,119,863,801,7,24.400000000000002,386,288,0,613,0.255,79.2,37.74,0.15,989,5.9,266,1.8 +2020,11,22,8,0,28.1,1.3900000000000001,0.1087,0.6,107,807,625,7,24.5,288,312,0,488,0.254,80.9,50.08,0.15,989,6,268,1.8 +2020,11,22,9,0,27.5,1.36,0.127,0.6,96,682,402,7,24.8,191,234,0,295,0.254,85.01,63.4,0.15,989,6,269,1.6 +2020,11,22,10,0,26.700000000000003,1.34,0.1385,0.6,66,442,164,8,24.8,69,377,3,153,0.254,89.57000000000001,77.16,0.15,990,6,268,1.3 +2020,11,22,11,0,25.8,1.33,0.13770000000000002,0.6,0,0,0,7,24.900000000000002,0,0,0,0,0.255,94.56,91.22,0.15,991,6.1000000000000005,261,1 +2020,11,22,12,0,25.400000000000002,1.3,0.1552,0.6,0,0,0,6,24.8,0,0,0,0,0.256,96.4,105.28,0.15,992,6.1000000000000005,253,0.9 +2020,11,22,13,0,25.200000000000003,1.26,0.16620000000000001,0.6,0,0,0,6,24.700000000000003,0,0,0,0,0.257,97.15,119.29,0.15,992,6.2,230,0.9 +2020,11,22,14,0,25.1,1.22,0.1643,0.6,0,0,0,6,24.700000000000003,0,0,0,0,0.257,97.67,133.06,0.15,993,6.300000000000001,189,0.9 +2020,11,22,15,0,25,1.17,0.1772,0.6,0,0,0,6,24.6,0,0,0,0,0.258,97.86,146.23,0.15,993,6.4,173,1 +2020,11,22,16,0,24.900000000000002,1.11,0.17170000000000002,0.6,0,0,0,6,24.6,0,0,0,0,0.258,97.95,157.58,0.15,992,6.5,167,1.2000000000000002 +2020,11,22,17,0,24.8,1.04,0.1502,0.6,0,0,0,7,24.5,0,0,0,0,0.258,97.93,162.93,0.15,991,6.5,159,1.2000000000000002 +2020,11,22,18,0,24.6,1.01,0.17600000000000002,0.6,0,0,0,7,24.400000000000002,0,0,0,0,0.257,98.65,157.48,0.15,991,6.5,147,1.1 +2020,11,22,19,0,24.5,0.96,0.1597,0.6,0,0,0,7,24.3,0,0,0,0,0.256,98.66,146.09,0.15,990,6.5,118,1.1 +2020,11,22,20,0,24.3,0.91,0.11850000000000001,0.6,0,0,0,7,24.200000000000003,0,0,0,0,0.256,99.29,132.92000000000002,0.15,990,6.5,86,1.1 +2020,11,22,21,0,24.200000000000003,0.97,0.1471,0.6,0,0,0,7,24.1,0,0,0,0,0.257,99.46000000000001,119.14,0.15,990,6.5,73,1.1 +2020,11,22,22,0,24.200000000000003,0.98,0.127,0.6,0,0,0,7,24,0,0,0,0,0.257,98.92,105.14,0.15,990,6.4,71,1.3 +2020,11,22,23,0,24.200000000000003,0.98,0.10840000000000001,0.6,0,0,0,7,24,0,0,0,0,0.257,98.87,91.08,0.15,991,6.300000000000001,66,1.4000000000000001 +2020,11,23,0,0,24.700000000000003,1.1,0.1322,0.6,64,443,163,8,24.3,76,299,3,144,0.257,97.60000000000001,77.04,0.15,992,6.1000000000000005,50,1.9000000000000001 +2020,11,23,1,0,25,1.16,0.1236,0.6,95,683,402,8,24.400000000000002,160,427,0,352,0.258,96.44,63.300000000000004,0.15,993,5.9,35,2.3000000000000003 +2020,11,23,2,0,25.400000000000002,1.19,0.1056,0.6,107,810,627,8,24.200000000000003,261,421,0,532,0.258,93.28,50.01,0.15,994,5.6000000000000005,31,2.5 +2020,11,23,3,0,26,1.25,0.097,0.6,114,874,805,8,24,314,483,0,696,0.258,88.96000000000001,37.72,0.15,994,5.5,32,2.3000000000000003 +2020,11,23,4,0,26.6,1.31,0.08170000000000001,0.6,112,916,921,7,23.900000000000002,446,286,0,699,0.258,84.9,27.85,0.15,993,5.300000000000001,31,2.1 +2020,11,23,5,0,27.1,1.34,0.0757,0.6,110,929,960,6,23.8,233,11,0,243,0.257,82.02,23.69,0.15,992,5.300000000000001,22,1.9000000000000001 +2020,11,23,6,0,27.400000000000002,1.33,0.0761,0.6,108,920,921,7,23.700000000000003,185,7,0,191,0.257,80.25,27.91,0.15,991,5.4,16,1.6 +2020,11,23,7,0,27.5,1.33,0.0772,0.6,103,892,808,7,23.700000000000003,386,285,0,611,0.255,79.87,37.800000000000004,0.15,991,5.5,11,1.5 +2020,11,23,8,0,27.5,1.33,0.0781,0.6,94,838,631,8,23.900000000000002,240,481,0,549,0.254,80.81,50.1,0.15,990,5.6000000000000005,13,1.5 +2020,11,23,9,0,27.200000000000003,1.36,0.083,0.6,81,732,409,6,24.3,155,7,0,158,0.254,84.13,63.39,0.15,990,5.7,14,1.3 +2020,11,23,10,0,26.400000000000002,1.37,0.083,0.6,55,518,170,8,24.3,85,135,3,116,0.253,88.14,77.12,0.15,991,5.7,9,1.1 +2020,11,23,11,0,25.400000000000002,1.37,0.0766,0.6,0,0,0,4,24.3,0,0,0,0,0.254,93.63,91.16,0.15,992,5.7,356,0.8 +2020,11,23,12,0,24.900000000000002,1.3800000000000001,0.0717,0.6,0,0,0,6,23.900000000000002,0,0,0,0,0.254,94.39,105.21000000000001,0.15,992,5.6000000000000005,355,0.8 +2020,11,23,13,0,24.5,1.3800000000000001,0.069,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.255,95.23,119.19,0.15,993,5.6000000000000005,360,0.8 +2020,11,23,14,0,24.200000000000003,1.37,0.06910000000000001,0.6,0,0,0,7,23.5,0,0,0,0,0.256,95.85000000000001,132.95,0.15,993,5.5,2,0.9 +2020,11,23,15,0,24,1.35,0.07200000000000001,0.6,0,0,0,6,23.400000000000002,0,0,0,0,0.257,96.51,146.08,0.15,993,5.5,2,0.9 +2020,11,23,16,0,23.900000000000002,1.33,0.07350000000000001,0.6,0,0,0,6,23.3,0,0,0,0,0.257,96.7,157.39000000000001,0.15,993,5.5,4,0.9 +2020,11,23,17,0,23.700000000000003,1.32,0.0727,0.6,0,0,0,6,23.200000000000003,0,0,0,0,0.257,97.18,162.73,0.15,992,5.5,3,0.9 +2020,11,23,18,0,23.6,1.3,0.0728,0.6,0,0,0,6,23.1,0,0,0,0,0.257,97.01,157.37,0.15,992,5.5,360,0.9 +2020,11,23,19,0,23.400000000000002,1.29,0.0729,0.6,0,0,0,6,22.900000000000002,0,0,0,0,0.257,97.25,146.06,0.15,991,5.6000000000000005,356,0.9 +2020,11,23,20,0,23.200000000000003,1.28,0.0734,0.6,0,0,0,6,22.8,0,0,0,0,0.258,97.54,132.93,0.15,991,5.6000000000000005,354,0.9 +2020,11,23,21,0,23.1,1.29,0.0753,0.6,0,0,0,7,22.6,0,0,0,0,0.259,97.2,119.18,0.15,992,5.6000000000000005,352,0.9 +2020,11,23,22,0,23,1.31,0.0753,0.6,0,0,0,7,22.5,0,0,0,0,0.261,96.91,105.2,0.15,992,5.6000000000000005,351,0.8 +2020,11,23,23,0,23.3,1.32,0.0742,0.6,0,0,0,4,22.6,0,0,0,0,0.262,95.99000000000001,91.16,0.15,992,5.6000000000000005,349,0.7000000000000001 +2020,11,24,0,0,24.5,1.33,0.07400000000000001,0.6,54,530,172,3,23.200000000000003,81,227,3,132,0.263,92.58,77.13,0.15,993,5.6000000000000005,348,1 +2020,11,24,1,0,25.700000000000003,1.34,0.0741,0.6,79,742,411,0,23,79,742,0,411,0.263,85.15,63.42,0.15,993,5.6000000000000005,4,1.2000000000000002 +2020,11,24,2,0,26.700000000000003,1.35,0.0747,0.6,93,840,632,4,22.8,283,334,0,497,0.262,79.24,50.15,0.15,993,5.6000000000000005,15,1.1 +2020,11,24,3,0,27.5,1.33,0.0791,0.6,105,888,806,6,23,389,100,0,467,0.261,76.39,37.9,0.15,993,5.7,26,1 +2020,11,24,4,0,28,1.32,0.0801,0.6,110,914,917,7,23.1,430,72,0,493,0.26,74.82000000000001,28.060000000000002,0.15,992,5.800000000000001,34,1 +2020,11,24,5,0,28.200000000000003,1.32,0.0814,0.6,113,921,955,7,23.200000000000003,479,132,0,599,0.259,74.25,23.89,0.15,991,5.800000000000001,39,1.1 +2020,11,24,6,0,28.1,1.33,0.0862,0.6,113,908,915,6,23.200000000000003,387,39,0,422,0.259,74.76,28.04,0.15,991,5.9,41,1.2000000000000002 +2020,11,24,7,0,27.8,1.34,0.0882,0.6,109,880,804,6,23.1,330,34,0,357,0.258,75.86,37.87,0.15,990,5.9,45,1.2000000000000002 +2020,11,24,8,0,27.400000000000002,1.37,0.0863,0.6,98,829,630,6,23.400000000000002,160,0,0,160,0.258,78.93,50.120000000000005,0.15,990,5.800000000000001,47,1.2000000000000002 +2020,11,24,9,0,26.8,1.3900000000000001,0.0891,0.6,84,725,409,6,23.8,131,0,0,131,0.257,83.76,63.38,0.15,990,5.800000000000001,48,1.1 +2020,11,24,10,0,25.900000000000002,1.4000000000000001,0.08750000000000001,0.6,56,512,171,6,23.5,37,0,3,37,0.257,86.7,77.09,0.15,990,5.800000000000001,50,1 +2020,11,24,11,0,25,1.42,0.0833,0.6,0,0,0,7,23.8,0,0,0,0,0.257,92.89,91.11,0.15,991,5.7,55,0.6000000000000001 +2020,11,24,12,0,24.6,1.43,0.07970000000000001,0.6,0,0,0,6,23.5,0,0,0,0,0.257,93.64,105.13,0.15,991,5.7,58,0.6000000000000001 +2020,11,24,13,0,24.3,1.44,0.0777,0.6,0,0,0,7,23.3,0,0,0,0,0.258,94.06,119.10000000000001,0.15,992,5.6000000000000005,55,0.7000000000000001 +2020,11,24,14,0,24,1.44,0.07680000000000001,0.6,0,0,0,6,23.1,0,0,0,0,0.258,94.62,132.83,0.15,992,5.6000000000000005,49,0.7000000000000001 +2020,11,24,15,0,23.700000000000003,1.43,0.0761,0.6,0,0,0,6,22.900000000000002,0,0,0,0,0.258,95.2,145.93,0.15,992,5.5,43,0.7000000000000001 +2020,11,24,16,0,23.400000000000002,1.42,0.076,0.6,0,0,0,8,22.700000000000003,0,0,0,0,0.258,95.9,157.19,0.15,992,5.5,37,0.6000000000000001 +2020,11,24,17,0,23.200000000000003,1.41,0.0747,0.6,0,0,0,8,22.6,0,0,0,0,0.257,96.29,162.53,0.15,991,5.5,31,0.6000000000000001 +2020,11,24,18,0,23,1.3900000000000001,0.07490000000000001,0.6,0,0,0,7,22.400000000000002,0,0,0,0,0.257,96.66,157.27,0.15,991,5.5,26,0.6000000000000001 +2020,11,24,19,0,22.900000000000002,1.3800000000000001,0.0753,0.6,0,0,0,6,22.3,0,0,0,0,0.257,96.52,146.03,0.15,990,5.5,22,0.7000000000000001 +2020,11,24,20,0,22.700000000000003,1.37,0.0746,0.6,0,0,0,7,22.200000000000003,0,0,0,0,0.257,97.01,132.94,0.15,990,5.5,20,0.7000000000000001 +2020,11,24,21,0,22.6,1.36,0.0717,0.6,0,0,0,6,22.1,0,0,0,0,0.257,96.76,119.22,0.15,990,5.5,17,0.6000000000000001 +2020,11,24,22,0,22.5,1.37,0.06810000000000001,0.6,0,0,0,7,21.900000000000002,0,0,0,0,0.257,96.14,105.26,0.15,990,5.5,16,0.6000000000000001 +2020,11,24,23,0,22.700000000000003,1.3800000000000001,0.0653,0.6,0,0,0,7,22,0,0,0,0,0.257,95.72,91.24,0.15,991,5.5,13,0.6000000000000001 +2020,11,25,0,0,23.900000000000002,1.4000000000000001,0.0627,0.6,51,549,172,7,22.6,75,0,3,75,0.257,92.39,77.23,0.15,992,5.4,11,1.2000000000000002 +2020,11,25,1,0,25.1,1.41,0.0616,0.6,74,758,412,7,22.8,195,148,0,261,0.256,87.31,63.54,0.15,992,5.5,17,1.5 +2020,11,25,2,0,26.400000000000002,1.42,0.0613,0.6,87,854,633,8,22.900000000000002,287,310,0,485,0.256,81.13,50.29,0.15,992,5.5,24,1.6 +2020,11,25,3,0,27.3,1.43,0.0609,0.6,96,905,808,8,23.1,365,359,0,647,0.255,77.79,38.07,0.15,992,5.6000000000000005,25,1.5 +2020,11,25,4,0,28,1.43,0.060500000000000005,0.6,100,931,920,7,23.200000000000003,434,324,0,720,0.254,75.39,28.26,0.15,991,5.6000000000000005,27,1.4000000000000001 +2020,11,25,5,0,28.5,1.42,0.061700000000000005,0.6,102,938,958,6,23.3,464,92,0,548,0.253,73.53,24.080000000000002,0.15,990,5.7,34,1.1 +2020,11,25,6,0,28.8,1.29,0.07440000000000001,0.6,108,919,918,6,23.3,352,27,0,376,0.252,72.41,28.17,0.15,989,5.800000000000001,56,0.9 +2020,11,25,7,0,28.700000000000003,1.27,0.0823,0.6,106,885,805,6,23.3,320,30,0,344,0.252,72.78,37.92,0.15,988,5.9,74,1 +2020,11,25,8,0,28.1,1.25,0.08950000000000001,0.6,100,825,629,6,23.5,193,6,0,197,0.251,75.95,50.13,0.15,988,6,74,1.1 +2020,11,25,9,0,27.400000000000002,1.24,0.1265,0.6,97,682,402,6,24.1,57,0,0,57,0.251,82.29,63.36,0.15,988,6.1000000000000005,72,1 +2020,11,25,10,0,26.6,1.24,0.14700000000000002,0.6,68,431,165,7,23.900000000000002,83,29,3,90,0.251,85.38,77.04,0.15,989,6.2,65,1 +2020,11,25,11,0,25.8,1.24,0.1447,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.252,90.99,91.05,0.15,990,6.2,55,0.7000000000000001 +2020,11,25,12,0,25.400000000000002,1.25,0.1535,0.6,0,0,0,7,24.3,0,0,0,0,0.252,93.46000000000001,105.05,0.15,990,6.2,48,0.5 +2020,11,25,13,0,25.1,1.26,0.14550000000000002,0.6,0,0,0,7,24.1,0,0,0,0,0.253,94.47,119,0.15,991,6.2,47,0.5 +2020,11,25,14,0,24.8,1.28,0.1282,0.6,0,0,0,6,24,0,0,0,0,0.254,95.38,132.71,0.15,991,6.2,46,0.7000000000000001 +2020,11,25,15,0,24.6,1.3,0.1192,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.255,95.64,145.78,0.15,991,6.1000000000000005,40,0.7000000000000001 +2020,11,25,16,0,24.3,1.32,0.1101,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.255,96.37,157,0.15,991,6.1000000000000005,33,0.7000000000000001 +2020,11,25,17,0,24.1,1.33,0.1005,0.6,0,0,0,8,23.5,0,0,0,0,0.254,96.43,162.33,0.15,991,6,27,0.7000000000000001 +2020,11,25,18,0,23.900000000000002,1.34,0.09770000000000001,0.6,0,0,0,8,23.3,0,0,0,0,0.253,96.57000000000001,157.17000000000002,0.15,990,5.9,22,0.8 +2020,11,25,19,0,23.700000000000003,1.35,0.09390000000000001,0.6,0,0,0,7,23.1,0,0,0,0,0.252,96.73,146,0.15,989,5.9,17,0.8 +2020,11,25,20,0,23.5,1.36,0.0881,0.6,0,0,0,8,23,0,0,0,0,0.251,96.95,132.96,0.15,989,5.800000000000001,14,0.8 +2020,11,25,21,0,23.400000000000002,1.36,0.0874,0.6,0,0,0,8,22.8,0,0,0,0,0.25,96.54,119.26,0.15,989,5.800000000000001,10,0.8 +2020,11,25,22,0,23.200000000000003,1.36,0.08900000000000001,0.6,0,0,0,8,22.700000000000003,0,0,0,0,0.25,96.86,105.32000000000001,0.15,990,5.800000000000001,7,0.8 +2020,11,25,23,0,23.400000000000002,1.36,0.091,0.6,0,0,0,3,22.8,0,0,0,0,0.25,96.46000000000001,91.32000000000001,0.15,990,5.800000000000001,5,0.7000000000000001 +2020,11,26,0,0,24.5,1.35,0.0964,0.6,58,493,166,8,23.3,84,95,3,105,0.25,93.22,77.33,0.15,991,5.800000000000001,7,1.3 +2020,11,26,1,0,25.5,1.36,0.09920000000000001,0.6,87,711,403,4,23.700000000000003,193,106,0,240,0.25,89.93,63.660000000000004,0.15,992,5.800000000000001,21,1.6 +2020,11,26,2,0,26.6,1.37,0.09820000000000001,0.6,103,816,623,0,23.8,103,816,0,623,0.251,84.85000000000001,50.44,0.15,992,5.9,34,1.8 +2020,11,26,3,0,27.400000000000002,1.36,0.10200000000000001,0.6,115,868,797,0,23.900000000000002,115,868,0,797,0.251,81.27,38.24,0.15,992,5.9,42,1.7000000000000002 +2020,11,26,4,0,27.900000000000002,1.35,0.10690000000000001,0.6,124,892,908,0,23.900000000000002,124,892,0,908,0.251,78.7,28.46,0.15,991,6,48,1.5 +2020,11,26,5,0,28.1,1.34,0.11120000000000001,0.6,128,898,947,0,23.8,128,898,0,947,0.25,77.56,24.27,0.15,990,6,52,1.3 +2020,11,26,6,0,28.1,1.34,0.11660000000000001,0.6,129,885,908,0,23.700000000000003,129,885,0,908,0.25,77.12,28.29,0.15,989,6.1000000000000005,56,1.2000000000000002 +2020,11,26,7,0,28.1,1.33,0.12000000000000001,0.6,124,854,797,8,23.6,387,278,0,606,0.25,76.75,37.980000000000004,0.15,988,6.1000000000000005,59,1.2000000000000002 +2020,11,26,8,0,27.8,1.33,0.11900000000000001,0.6,112,798,624,8,23.8,281,346,0,503,0.25,78.66,50.14,0.15,988,6.1000000000000005,63,1.2000000000000002 +2020,11,26,9,0,27.400000000000002,1.33,0.1264,0.6,97,684,403,6,24.3,76,0,0,76,0.251,83.31,63.34,0.15,989,6.1000000000000005,68,1.1 +2020,11,26,10,0,26.700000000000003,1.32,0.13,0.6,65,455,167,7,24.1,8,0,3,8,0.251,85.79,77,0.15,989,6.2,68,1 +2020,11,26,11,0,25.700000000000003,1.31,0.1227,0.6,0,0,0,6,24.5,0,0,0,0,0.252,92.88,90.98,0.15,990,6.2,71,0.6000000000000001 +2020,11,26,12,0,25.3,1.3,0.11510000000000001,0.6,0,0,0,7,24.3,0,0,0,0,0.253,94.44,104.97,0.15,991,6.2,72,0.6000000000000001 +2020,11,26,13,0,25,1.28,0.1085,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.253,95.59,118.9,0.15,992,6.2,71,0.6000000000000001 +2020,11,26,14,0,24.8,1.26,0.1012,0.6,0,0,0,7,24.1,0,0,0,0,0.253,96.03,132.59,0.15,992,6.2,72,0.6000000000000001 +2020,11,26,15,0,24.6,1.24,0.0965,0.6,0,0,0,8,24,0,0,0,0,0.253,96.41,145.63,0.15,992,6.2,68,0.7000000000000001 +2020,11,26,16,0,24.400000000000002,1.23,0.0935,0.6,0,0,0,3,23.900000000000002,0,0,0,0,0.252,96.85000000000001,156.81,0.15,992,6.2,63,0.7000000000000001 +2020,11,26,17,0,24.200000000000003,1.23,0.0898,0.6,0,0,0,8,23.700000000000003,0,0,0,0,0.252,97.33,162.15,0.15,991,6.1000000000000005,58,0.7000000000000001 +2020,11,26,18,0,24,1.24,0.0937,0.6,0,0,0,7,23.6,0,0,0,0,0.251,97.88,157.08,0.15,991,6.1000000000000005,52,0.8 +2020,11,26,19,0,23.8,1.26,0.0893,0.6,0,0,0,8,23.5,0,0,0,0,0.251,98.26,145.99,0.15,990,6,48,0.8 +2020,11,26,20,0,23.700000000000003,1.27,0.08020000000000001,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.25,98.05,132.98,0.15,990,6,47,0.8 +2020,11,26,21,0,23.6,1.3,0.0781,0.6,0,0,0,4,23.3,0,0,0,0,0.249,97.98,119.31,0.15,990,6,48,0.8 +2020,11,26,22,0,23.5,1.32,0.0758,0.6,0,0,0,7,23.1,0,0,0,0,0.248,97.81,105.39,0.15,990,5.9,52,0.8 +2020,11,26,23,0,23.700000000000003,1.34,0.0717,0.6,0,0,0,6,23.200000000000003,0,0,0,0,0.247,97.17,91.41,0.15,990,5.9,57,0.8 +2020,11,27,0,0,24.6,1.35,0.0751,0.6,53,522,167,6,23.8,43,0,3,43,0.247,95.26,77.43,0.15,991,5.9,62,1.5 +2020,11,27,1,0,25.400000000000002,1.36,0.0747,0.6,78,738,404,7,24.1,193,163,0,265,0.248,92.45,63.78,0.15,992,6,67,2 +2020,11,27,2,0,26,1.35,0.0733,0.6,93,839,625,6,24.200000000000003,302,200,0,429,0.248,89.66,50.58,0.15,992,6,70,2.3000000000000003 +2020,11,27,3,0,26.400000000000002,1.26,0.07930000000000001,0.6,105,885,799,7,24.200000000000003,247,12,0,256,0.248,87.59,38.410000000000004,0.15,992,6.1000000000000005,69,2.4000000000000004 +2020,11,27,4,0,26.700000000000003,1.28,0.0775,0.6,109,914,911,8,24.200000000000003,442,94,0,524,0.249,86.29,28.66,0.15,992,6.1000000000000005,67,2.3000000000000003 +2020,11,27,5,0,26.900000000000002,1.28,0.07640000000000001,0.6,110,923,950,8,24.3,394,36,0,427,0.249,85.58,24.46,0.15,991,6.2,66,2.1 +2020,11,27,6,0,26.900000000000002,1.26,0.07740000000000001,0.6,109,914,913,4,24.3,158,3,0,161,0.25,85.88,28.400000000000002,0.15,990,6.2,67,2 +2020,11,27,7,0,26.8,1.26,0.0771,0.6,104,888,804,8,24.400000000000002,368,63,0,418,0.251,86.87,38.02,0.15,989,6.2,68,1.7000000000000002 +2020,11,27,8,0,26.6,1.25,0.0755,0.6,94,838,631,8,24.700000000000003,290,307,0,486,0.252,89.28,50.14,0.15,989,6.2,71,1.5 +2020,11,27,9,0,26.3,1.24,0.07680000000000001,0.6,80,738,411,6,24.8,180,38,0,197,0.252,91.25,63.31,0.15,989,6.2,68,1.3 +2020,11,27,10,0,25.700000000000003,1.23,0.0732,0.6,54,533,174,6,24.8,8,0,3,8,0.252,94.92,76.95,0.15,989,6.2,66,1.1 +2020,11,27,11,0,25.1,1.21,0.06670000000000001,0.6,0,0,0,7,24.6,0,0,0,0,0.252,96.91,90.92,0.15,990,6.2,67,1.1 +2020,11,27,12,0,25,1.21,0.06280000000000001,0.6,0,0,0,6,24.5,0,0,0,0,0.252,96.82000000000001,104.89,0.15,991,6.2,67,1.3 +2020,11,27,13,0,24.8,1.21,0.060500000000000005,0.6,0,0,0,6,24.3,0,0,0,0,0.252,97.28,118.8,0.15,992,6.2,68,1.6 +2020,11,27,14,0,24.700000000000003,1.2,0.0614,0.6,0,0,0,6,24.200000000000003,0,0,0,0,0.253,97.05,132.46,0.15,992,6.2,71,1.7000000000000002 +2020,11,27,15,0,24.5,1.2,0.06720000000000001,0.6,0,0,0,6,24,0,0,0,0,0.253,97.27,145.48,0.15,992,6.2,73,1.6 +2020,11,27,16,0,24.3,1.2,0.0702,0.6,0,0,0,6,23.900000000000002,0,0,0,0,0.253,97.34,156.63,0.15,992,6.1000000000000005,67,1.6 +2020,11,27,17,0,24.1,1.2,0.0693,0.6,0,0,0,6,23.700000000000003,0,0,0,0,0.253,97.42,161.97,0.15,991,6,61,1.5 +2020,11,27,18,0,23.900000000000002,1.21,0.0732,0.6,0,0,0,7,23.5,0,0,0,0,0.252,97.71000000000001,156.99,0.15,990,6,58,1.5 +2020,11,27,19,0,23.8,1.22,0.07400000000000001,0.6,0,0,0,7,23.400000000000002,0,0,0,0,0.252,97.67,145.97,0.15,990,5.9,59,1.4000000000000001 +2020,11,27,20,0,23.700000000000003,1.22,0.0712,0.6,0,0,0,7,23.3,0,0,0,0,0.251,97.5,133,0.15,989,5.9,60,1.3 +2020,11,27,21,0,23.6,1.23,0.0743,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.25,97.64,119.36,0.15,990,5.9,61,1.3 +2020,11,27,22,0,23.6,1.22,0.076,0.6,0,0,0,6,23.200000000000003,0,0,0,0,0.25,97.34,105.46000000000001,0.15,990,5.9,60,1.3 +2020,11,27,23,0,23.700000000000003,1.19,0.0748,0.6,0,0,0,7,23.3,0,0,0,0,0.249,97.61,91.49,0.15,991,5.800000000000001,59,1.5 +2020,11,28,0,0,24.700000000000003,1.17,0.0789,0.6,54,510,164,7,23.900000000000002,81,187,3,121,0.249,95.57000000000001,77.53,0.15,992,5.800000000000001,59,2.2 +2020,11,28,1,0,25.8,1.17,0.0755,0.6,79,734,402,6,24.400000000000002,189,87,0,228,0.249,91.98,63.9,0.15,993,5.9,67,2.5 +2020,11,28,2,0,26.900000000000002,1.1500000000000001,0.0731,0.6,93,837,623,6,24.5,289,76,0,337,0.249,86.89,50.72,0.15,994,5.9,75,2.6 +2020,11,28,3,0,27.700000000000003,1.1400000000000001,0.07150000000000001,0.6,102,891,798,6,24.700000000000003,362,60,0,409,0.25,83.59,38.57,0.15,993,6,84,2.5 +2020,11,28,4,0,28.3,1.1400000000000001,0.0714,0.6,107,918,911,6,24.700000000000003,402,50,0,445,0.251,80.79,28.85,0.15,993,6,95,2.4000000000000004 +2020,11,28,5,0,28.5,1.1300000000000001,0.0698,0.6,108,928,951,6,24.5,418,48,0,461,0.252,79.10000000000001,24.63,0.15,992,6,111,2.3000000000000003 +2020,11,28,6,0,28.200000000000003,1.1500000000000001,0.0724,0.6,107,918,914,6,24.5,445,99,0,532,0.253,80.21000000000001,28.51,0.15,991,6,131,2.3000000000000003 +2020,11,28,7,0,27.700000000000003,1.16,0.0707,0.6,101,894,805,6,24.5,388,100,0,467,0.253,82.53,38.07,0.15,990,6,148,2.4000000000000004 +2020,11,28,8,0,27.1,1.17,0.0651,0.6,90,849,634,6,24.400000000000002,180,3,0,182,0.253,85.32000000000001,50.14,0.15,990,5.9,159,2.4000000000000004 +2020,11,28,9,0,26.6,1.22,0.06330000000000001,0.6,75,756,415,6,24.5,92,0,0,92,0.253,88.14,63.29,0.15,990,5.9,163,2.1 +2020,11,28,10,0,26,1.26,0.0574,0.6,51,562,178,6,24.6,14,0,3,14,0.253,91.92,76.9,0.15,991,5.7,164,1.6 +2020,11,28,11,0,25.200000000000003,1.27,0.0526,0.6,0,0,0,7,24.3,0,0,0,0,0.254,94.51,90.85000000000001,0.15,991,5.6000000000000005,163,1.1 +2020,11,28,12,0,24.900000000000002,1.3,0.0507,0.6,0,0,0,8,24,0,0,0,0,0.255,94.53,104.8,0.15,992,5.6000000000000005,159,1.1 +2020,11,28,13,0,24.700000000000003,1.33,0.0489,0.6,0,0,0,8,23.8,0,0,0,0,0.256,94.48,118.7,0.15,993,5.5,149,1 +2020,11,28,14,0,24.6,1.36,0.0461,0.6,0,0,0,3,23.6,0,0,0,0,0.257,93.97,132.34,0.15,993,5.4,133,0.9 +2020,11,28,15,0,24.400000000000002,1.37,0.0453,0.6,0,0,0,0,23.400000000000002,0,0,0,0,0.257,93.92,145.33,0.15,993,5.4,99,0.8 +2020,11,28,16,0,24.200000000000003,1.3800000000000001,0.046900000000000004,0.6,0,0,0,4,23.1,0,0,0,0,0.258,93.66,156.45000000000002,0.15,993,5.5,56,0.7000000000000001 +2020,11,28,17,0,24,1.37,0.049,0.6,0,0,0,4,22.900000000000002,0,0,0,0,0.257,93.81,161.79,0.15,992,5.5,26,0.6000000000000001 +2020,11,28,18,0,23.8,1.3800000000000001,0.0519,0.6,0,0,0,6,22.700000000000003,0,0,0,0,0.257,93.84,156.91,0.15,992,5.5,350,0.6000000000000001 +2020,11,28,19,0,23.5,1.4000000000000001,0.0528,0.6,0,0,0,6,22.6,0,0,0,0,0.256,94.51,145.96,0.15,991,5.4,333,0.6000000000000001 +2020,11,28,20,0,23.200000000000003,1.42,0.0505,0.6,0,0,0,7,22.400000000000002,0,0,0,0,0.256,95.26,133.03,0.15,991,5.4,330,0.7000000000000001 +2020,11,28,21,0,23.200000000000003,1.45,0.047,0.6,0,0,0,7,22.200000000000003,0,0,0,0,0.255,94.18,119.41,0.15,991,5.300000000000001,332,0.7000000000000001 +2020,11,28,22,0,23.1,1.49,0.0429,0.6,0,0,0,8,22,0,0,0,0,0.254,93.67,105.53,0.15,991,5.300000000000001,340,0.7000000000000001 +2020,11,28,23,0,23.200000000000003,1.52,0.040600000000000004,0.6,0,0,0,8,22.1,0,0,0,0,0.253,93.82000000000001,91.58,0.15,992,5.2,349,0.6000000000000001 +2020,11,29,0,0,24.6,1.54,0.0402,0.6,44,580,168,8,23,7,0,3,7,0.253,90.88,77.64,0.15,992,5.2,353,0.8 +2020,11,29,1,0,26.900000000000002,1.56,0.04,0.6,64,784,408,7,22.5,72,0,0,72,0.253,77.11,64.02,0.15,993,5.2,332,0.8 +2020,11,29,2,0,28.200000000000003,1.56,0.0434,0.6,78,873,629,7,22.200000000000003,294,252,0,453,0.253,69.78,50.86,0.15,993,5.2,312,1.2000000000000002 +2020,11,29,3,0,28.5,1.25,0.06910000000000001,0.6,100,899,801,8,22.400000000000002,355,388,0,657,0.253,69.73,38.74,0.15,993,5.2,310,1.4000000000000001 +2020,11,29,4,0,29,1.24,0.07640000000000001,0.6,108,919,912,7,22.8,369,474,0,783,0.253,69.15,29.03,0.15,992,5.300000000000001,312,1.4000000000000001 +2020,11,29,5,0,29.3,1.22,0.08460000000000001,0.6,114,921,950,7,23.1,398,446,0,803,0.253,69.13,24.810000000000002,0.15,991,5.4,311,1.4000000000000001 +2020,11,29,6,0,29.3,1.07,0.1534,0.6,148,858,901,7,23.200000000000003,457,213,0,644,0.252,69.8,28.61,0.15,990,5.5,309,1.3 +2020,11,29,7,0,29.1,1.06,0.1589,0.6,144,823,791,7,23.3,371,342,0,639,0.252,70.91,38.1,0.15,989,5.5,310,1.3 +2020,11,29,8,0,28.700000000000003,1.09,0.152,0.6,127,768,619,7,23.6,273,379,0,516,0.251,74.16,50.14,0.15,989,5.6000000000000005,316,1 +2020,11,29,9,0,28.400000000000002,1.12,0.14170000000000002,0.6,103,667,403,8,23.8,113,627,0,395,0.251,76.08,63.25,0.15,989,5.6000000000000005,324,0.7000000000000001 +2020,11,29,10,0,27.700000000000003,1.1400000000000001,0.1366,0.6,67,447,169,7,23.6,84,221,3,134,0.251,78.49,76.85000000000001,0.15,990,5.6000000000000005,337,0.6000000000000001 +2020,11,29,11,0,26.8,1.16,0.13,0.6,0,0,0,7,23.900000000000002,0,0,0,0,0.252,84.34,90.21000000000001,0.15,991,5.6000000000000005,348,0.5 +2020,11,29,12,0,26.6,1.17,0.12760000000000002,0.6,0,0,0,7,23.6,0,0,0,0,0.253,83.47,104.71000000000001,0.15,991,5.6000000000000005,360,0.5 +2020,11,29,13,0,26.3,1.18,0.12760000000000002,0.6,0,0,0,7,23.3,0,0,0,0,0.253,83.84,118.59,0.15,992,5.6000000000000005,9,0.5 +2020,11,29,14,0,26.1,1.18,0.1291,0.6,0,0,0,7,23.200000000000003,0,0,0,0,0.254,84.12,132.21,0.15,992,5.7,15,0.5 +2020,11,29,15,0,25.700000000000003,1.17,0.1325,0.6,0,0,0,8,23.200000000000003,0,0,0,0,0.254,86.05,145.18,0.15,992,5.7,15,0.6000000000000001 +2020,11,29,16,0,25.400000000000002,1.17,0.1364,0.6,0,0,0,4,23.200000000000003,0,0,0,0,0.254,87.48,156.27,0.15,992,5.7,13,0.6000000000000001 +2020,11,29,17,0,25,1.17,0.1405,0.6,0,0,0,8,23.1,0,0,0,0,0.253,89.39,161.62,0.15,991,5.7,8,0.6000000000000001 +2020,11,29,18,0,24.700000000000003,1.16,0.14600000000000002,0.6,0,0,0,4,23.1,0,0,0,0,0.253,90.95,156.84,0.15,991,5.7,2,0.6000000000000001 +2020,11,29,19,0,24.5,1.17,0.1512,0.6,0,0,0,8,23.1,0,0,0,0,0.252,91.85000000000001,145.95000000000002,0.15,990,5.800000000000001,352,0.6000000000000001 +2020,11,29,20,0,24.200000000000003,1.17,0.1522,0.6,0,0,0,8,23.1,0,0,0,0,0.251,93.33,133.06,0.15,990,5.800000000000001,341,0.7000000000000001 +2020,11,29,21,0,24.1,1.18,0.15460000000000002,0.6,0,0,0,8,23,0,0,0,0,0.251,93.37,119.47,0.15,990,5.800000000000001,334,0.7000000000000001 +2020,11,29,22,0,24,1.19,0.16490000000000002,0.6,0,0,0,0,22.900000000000002,0,0,0,0,0.252,93.73,105.60000000000001,0.15,990,5.800000000000001,333,0.7000000000000001 +2020,11,29,23,0,24.1,1.19,0.1689,0.6,0,0,0,0,23.200000000000003,0,0,0,0,0.252,94.79,91.67,0.15,991,5.9,336,0.7000000000000001 +2020,11,30,0,0,25.3,1.21,0.1713,0.6,69,386,151,4,24.1,79,187,3,119,0.252,93.27,77.74,0.15,992,5.9,338,1 +2020,11,30,1,0,26.6,1.22,0.1743,0.6,110,625,383,3,24.5,172,327,0,315,0.253,88.11,64.14,0.15,992,5.9,342,1.3 +2020,11,30,2,0,27.200000000000003,1.24,0.1711,0.6,132,747,602,4,24.5,288,79,0,338,0.253,84.97,51,0.15,992,5.9,342,1.4000000000000001 +2020,11,30,3,0,27.700000000000003,1.29,0.1564,0.6,139,822,779,4,24.400000000000002,138,0,0,138,0.252,82.12,38.9,0.15,992,6,346,1.4000000000000001 +2020,11,30,4,0,28.200000000000003,1.31,0.16010000000000002,0.6,148,852,892,1,24.3,148,852,0,892,0.252,79.41,29.21,0.15,991,6,349,1.3 +2020,11,30,5,0,28.6,1.32,0.1589,0.6,150,863,933,4,24.3,478,157,0,621,0.25,77.56,24.97,0.15,990,6,345,1.1 +2020,11,30,6,0,28.700000000000003,1.26,0.21380000000000002,0.6,173,815,889,8,24.3,448,266,0,682,0.249,76.98,28.7,0.15,989,6,330,1.1 +2020,11,30,7,0,28.6,1.27,0.2185,0.6,167,779,780,6,24.3,285,19,0,299,0.248,77.79,38.13,0.15,989,6,311,1 +2020,11,30,8,0,28,1.27,0.21450000000000002,0.6,149,718,609,6,24.6,36,0,0,36,0.247,81.98,50.13,0.15,988,6.1000000000000005,291,1 +2020,11,30,9,0,27.5,1.29,0.2272,0.6,127,589,393,6,24.900000000000002,58,0,0,58,0.247,85.99,63.21,0.15,989,6.1000000000000005,279,0.9 +2020,11,30,10,0,26.8,1.31,0.23090000000000002,0.6,81,356,163,6,24.8,8,0,3,8,0.247,88.98,76.79,0.15,989,6.1000000000000005,277,0.8 +2020,11,30,11,0,26.200000000000003,1.31,0.22310000000000002,0.6,0,0,0,7,25,0,0,0,0,0.247,93.3,90.15,0.15,990,6.1000000000000005,274,0.5 +2020,11,30,12,0,26,1.32,0.224,0.6,0,0,0,8,24.700000000000003,0,0,0,0,0.248,92.51,104.62,0.15,991,6.1000000000000005,264,0.4 +2020,11,30,13,0,26.1,1.32,0.225,0.6,0,0,0,0,24.3,0,0,0,0,0.249,90.11,118.48,0.15,991,6,107,0.2 +2020,11,30,14,0,25.900000000000002,1.32,0.2207,0.6,0,0,0,3,24.400000000000002,0,0,0,0,0.25,91.52,132.09,0.15,992,6,95,0.4 +2020,11,30,15,0,25.6,1.31,0.21710000000000002,0.6,0,0,0,0,24.200000000000003,0,0,0,0,0.251,91.87,145.03,0.15,992,6,106,0.4 +2020,11,30,16,0,25.400000000000002,1.3,0.2026,0.6,0,0,0,0,24.1,0,0,0,0,0.251,92.59,156.09,0.15,992,6,130,0.5 +2020,11,30,17,0,25.1,1.3,0.1816,0.6,0,0,0,3,24.1,0,0,0,0,0.251,93.96000000000001,161.46,0.15,991,6.1000000000000005,154,0.5 +2020,11,30,18,0,24.900000000000002,1.3,0.18130000000000002,0.6,0,0,0,7,24,0,0,0,0,0.25,95.02,156.77,0.15,990,6.1000000000000005,173,0.6000000000000001 +2020,11,30,19,0,24.8,1.3,0.16340000000000002,0.6,0,0,0,7,24.1,0,0,0,0,0.249,95.78,145.95000000000002,0.15,990,6.1000000000000005,187,0.7000000000000001 +2020,11,30,20,0,24.700000000000003,1.29,0.1331,0.6,0,0,0,7,24.1,0,0,0,0,0.247,96.3,133.1,0.15,989,6.1000000000000005,199,0.8 +2020,11,30,21,0,24.6,1.3,0.1343,0.6,0,0,0,7,24,0,0,0,0,0.246,96.72,119.53,0.15,990,6.2,214,0.8 +2020,11,30,22,0,24.400000000000002,1.29,0.1159,0.6,0,0,0,6,23.900000000000002,0,0,0,0,0.246,97.07000000000001,105.68,0.15,990,6.1000000000000005,230,0.8 +2020,11,30,23,0,24.400000000000002,1.27,0.1017,0.6,0,0,0,6,24,0,0,0,0,0.246,97.41,91.77,0.15,991,6.1000000000000005,253,0.8 +2020,12,1,0,0,25.1,1.26,0.12660000000000002,0.62,59,437,151,6,24.700000000000003,53,0,3,53,0.246,97.68,77.85000000000001,0.15,992,6.1000000000000005,267,0.9 +2020,12,1,1,0,25.6,1.27,0.12040000000000001,0.62,90,680,385,6,25,189,136,0,248,0.247,96.48,64.27,0.15,993,6,275,1.3 +2020,12,1,2,0,25.900000000000002,1.27,0.1052,0.62,102,806,608,7,25,292,251,0,449,0.248,94.81,51.14,0.15,993,5.9,283,1.7000000000000002 +2020,12,1,3,0,26.3,1.08,0.152,0.62,137,824,777,6,25,384,255,0,582,0.248,92.58,39.06,0.15,993,5.7,284,2.2 +2020,12,1,4,0,26.8,1.12,0.1279,0.62,133,876,896,7,24.900000000000002,433,312,0,704,0.247,89.51,29.39,0.15,992,5.6000000000000005,284,2.5 +2020,12,1,5,0,27.1,1.1500000000000001,0.11040000000000001,0.62,127,900,941,7,24.8,475,220,0,674,0.247,87.17,25.13,0.15,991,5.5,282,2.5 +2020,12,1,6,0,27.200000000000003,1.19,0.09680000000000001,0.62,118,903,909,7,24.5,418,62,0,473,0.247,85.33,28.79,0.15,990,5.5,280,2.3000000000000003 +2020,12,1,7,0,27.1,1.22,0.0847,0.62,106,886,803,6,24.3,274,17,0,287,0.247,84.72,38.160000000000004,0.15,990,5.5,278,2.1 +2020,12,1,8,0,26.8,1.25,0.0748,0.62,92,844,633,6,24.200000000000003,37,0,0,37,0.247,85.86,50.11,0.15,989,5.5,274,2 +2020,12,1,9,0,26.5,1.29,0.0688,0.62,75,754,416,7,24.400000000000002,186,49,0,208,0.247,88.41,63.17,0.15,989,5.5,272,1.6 +2020,12,1,10,0,25.900000000000002,1.32,0.0664,0.62,52,555,179,6,24.6,83,11,3,85,0.248,92.57000000000001,76.73,0.15,990,5.4,274,1.2000000000000002 +2020,12,1,11,0,25.1,1.32,0.0675,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.248,95.02,90.08,0.15,990,5.4,272,0.9 +2020,12,1,12,0,24.8,1.32,0.07,0.62,0,0,0,7,24,0,0,0,0,0.249,95.55,104.53,0.15,991,5.300000000000001,269,1 +2020,12,1,13,0,24.5,1.3,0.0727,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.249,96.44,118.37,0.15,992,5.2,270,1 +2020,12,1,14,0,24.3,1.29,0.0748,0.62,0,0,0,7,23.8,0,0,0,0,0.25,97.10000000000001,131.96,0.15,992,5.2,273,1 +2020,12,1,15,0,24.200000000000003,1.27,0.0771,0.62,0,0,0,8,23.8,0,0,0,0,0.25,97.55,144.88,0.15,992,5.300000000000001,277,1 +2020,12,1,16,0,24.1,1.26,0.0796,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.251,97.71000000000001,155.92000000000002,0.15,991,5.4,281,1.1 +2020,12,1,17,0,24,1.26,0.0815,0.62,0,0,0,7,23.6,0,0,0,0,0.251,97.84,161.31,0.15,991,5.4,285,1.1 +2020,12,1,18,0,23.900000000000002,1.26,0.085,0.62,0,0,0,7,23.5,0,0,0,0,0.251,97.66,156.70000000000002,0.15,990,5.5,288,1.1 +2020,12,1,19,0,23.700000000000003,1.24,0.0897,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.25,97.96000000000001,145.95000000000002,0.15,990,5.6000000000000005,291,1.1 +2020,12,1,20,0,23.6,1.23,0.0918,0.62,0,0,0,8,23.200000000000003,0,0,0,0,0.25,97.85000000000001,133.14000000000001,0.15,990,5.6000000000000005,294,1.1 +2020,12,1,21,0,23.5,1.22,0.09430000000000001,0.62,0,0,0,7,23.1,0,0,0,0,0.25,97.68,119.59,0.15,990,5.7,299,1 +2020,12,1,22,0,23.400000000000002,1.2,0.09580000000000001,0.62,0,0,0,8,23,0,0,0,0,0.251,97.59,105.76,0.15,990,5.7,304,1 +2020,12,1,23,0,23.5,1.19,0.0954,0.62,0,0,0,8,23.1,0,0,0,0,0.25,97.7,91.86,0.15,991,5.7,306,1 +2020,12,2,0,0,24.6,1.18,0.0947,0.62,55,477,154,7,23.6,79,135,3,108,0.25,94.37,77.96000000000001,0.15,991,5.800000000000001,308,1.5 +2020,12,2,1,0,25.6,1.17,0.0937,0.62,83,708,389,8,23.900000000000002,170,32,0,184,0.25,90.38,64.39,0.15,992,5.800000000000001,309,1.6 +2020,12,2,2,0,26.5,1.16,0.0956,0.62,100,814,609,8,24,287,273,0,458,0.25,86.03,51.29,0.15,992,5.800000000000001,304,1.7000000000000002 +2020,12,2,3,0,27.200000000000003,1.03,0.11460000000000001,0.62,121,853,782,4,24.3,387,231,0,566,0.25,84.12,39.22,0.15,992,5.800000000000001,295,1.7000000000000002 +2020,12,2,4,0,27.6,1.04,0.1168,0.62,129,882,896,1,24.6,129,882,0,896,0.251,83.72,29.560000000000002,0.15,991,5.800000000000001,285,1.7000000000000002 +2020,12,2,5,0,27.700000000000003,1.05,0.11380000000000001,0.62,129,894,938,7,24.8,447,338,0,752,0.25,84.35000000000001,25.28,0.15,990,5.800000000000001,278,1.9000000000000001 +2020,12,2,6,0,27.700000000000003,0.85,0.15510000000000002,0.62,151,851,896,0,24.900000000000002,151,851,0,896,0.25,84.96000000000001,28.87,0.15,989,5.9,270,2 +2020,12,2,7,0,27.5,0.9,0.1431,0.62,137,831,791,8,25,396,221,0,570,0.249,86.42,38.18,0.15,989,5.9,264,2.2 +2020,12,2,8,0,27.1,0.9400000000000001,0.1274,0.62,118,788,623,6,25.1,141,0,0,141,0.249,88.87,50.09,0.15,988,5.800000000000001,259,2.1 +2020,12,2,9,0,26.700000000000003,0.98,0.12200000000000001,0.62,97,687,407,6,25.3,20,0,0,20,0.249,91.81,63.13,0.15,988,5.800000000000001,256,1.8 +2020,12,2,10,0,26.1,1.02,0.11320000000000001,0.62,64,478,174,6,25.3,21,0,3,21,0.249,95.44,76.67,0.15,989,5.800000000000001,254,1.2000000000000002 +2020,12,2,11,0,25.3,1.05,0.10600000000000001,0.62,0,0,0,6,24.8,0,0,0,0,0.25,97.31,90.01,0.15,989,5.800000000000001,258,0.8 +2020,12,2,12,0,25.1,1.07,0.1051,0.62,0,0,0,6,24.6,0,0,0,0,0.251,97.08,104.44,0.15,990,5.800000000000001,270,0.8 +2020,12,2,13,0,25,1.07,0.1071,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.251,96.69,118.27,0.15,991,5.800000000000001,285,0.8 +2020,12,2,14,0,24.900000000000002,1.07,0.1102,0.62,0,0,0,8,24.3,0,0,0,0,0.252,96.48,131.84,0.15,991,5.9,302,0.9 +2020,12,2,15,0,24.8,1.05,0.1169,0.62,0,0,0,3,24.200000000000003,0,0,0,0,0.252,96.37,144.73,0.15,991,5.9,310,0.9 +2020,12,2,16,0,24.6,1.02,0.12490000000000001,0.62,0,0,0,0,24,0,0,0,0,0.253,96.74000000000001,155.75,0.15,991,5.9,309,0.9 +2020,12,2,17,0,24.400000000000002,0.97,0.13240000000000002,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.254,96.96000000000001,161.16,0.15,991,5.9,308,0.9 +2020,12,2,18,0,24.200000000000003,0.93,0.1421,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.255,97.29,156.65,0.15,990,5.9,305,0.9 +2020,12,2,19,0,24.1,0.91,0.1439,0.62,0,0,0,7,23.6,0,0,0,0,0.255,97.14,145.96,0.15,989,5.800000000000001,301,0.9 +2020,12,2,20,0,23.900000000000002,0.9,0.138,0.62,0,0,0,7,23.5,0,0,0,0,0.256,97.54,133.18,0.15,989,5.800000000000001,299,0.9 +2020,12,2,21,0,23.8,0.93,0.13190000000000002,0.62,0,0,0,7,23.3,0,0,0,0,0.257,97.14,119.65,0.15,989,5.7,300,1 +2020,12,2,22,0,23.6,0.9500000000000001,0.12660000000000002,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.257,97.52,105.84,0.15,990,5.7,302,1 +2020,12,2,23,0,23.8,0.96,0.12090000000000001,0.62,0,0,0,7,23.3,0,0,0,0,0.257,97.11,91.96000000000001,0.15,991,5.7,307,1 +2020,12,3,0,0,25,1,0.1179,0.62,60,435,150,8,24.200000000000003,58,0,3,58,0.257,95.32000000000001,78.07000000000001,0.15,992,5.7,324,1.3 +2020,12,3,1,0,25.900000000000002,1.06,0.10930000000000001,0.62,90,688,386,8,24.1,149,5,0,151,0.256,89.60000000000001,64.51,0.15,992,5.6000000000000005,322,1.6 +2020,12,3,2,0,26.8,1.07,0.1047,0.62,106,803,606,8,23.700000000000003,296,198,0,419,0.255,83.14,51.43,0.15,993,5.7,320,1.7000000000000002 +2020,12,3,3,0,27.6,0.86,0.138,0.62,135,831,777,3,23.700000000000003,369,314,0,612,0.253,79.15,39.38,0.15,992,5.7,314,1.7000000000000002 +2020,12,3,4,0,28.200000000000003,0.87,0.1326,0.62,139,867,892,4,23.8,446,119,0,550,0.252,77.12,29.73,0.15,992,5.7,303,1.7000000000000002 +2020,12,3,5,0,28.5,0.89,0.126,0.62,138,883,935,3,23.900000000000002,460,289,0,722,0.25,76.36,25.42,0.15,991,5.7,288,1.7000000000000002 +2020,12,3,6,0,28.6,1.01,0.1014,0.62,122,896,907,8,24,444,281,0,690,0.249,76.28,28.95,0.15,990,5.7,275,1.8 +2020,12,3,7,0,28.400000000000002,1.02,0.1028,0.62,117,868,799,3,24,378,312,0,623,0.248,77.29,38.2,0.15,989,5.7,265,2 +2020,12,3,8,0,28.1,1.03,0.10020000000000001,0.62,105,816,629,8,24.1,305,218,0,445,0.247,78.99,50.07,0.15,989,5.7,259,1.9000000000000001 +2020,12,3,9,0,27.6,1.05,0.1017,0.62,90,713,413,8,24.5,25,0,0,25,0.246,83.09,63.08,0.15,989,5.7,255,1.5 +2020,12,3,10,0,26.8,1.07,0.10260000000000001,0.62,62,497,177,6,24.200000000000003,46,0,3,46,0.246,85.69,76.60000000000001,0.15,989,5.7,255,1.2000000000000002 +2020,12,3,11,0,26,1.07,0.10300000000000001,0.62,0,0,0,9,24.200000000000003,0,0,3,0,0.246,90.09,89.95,0.15,990,5.7,272,0.7000000000000001 +2020,12,3,12,0,25.8,1.08,0.10540000000000001,0.62,0,0,0,9,23.8,0,0,0,0,0.247,88.92,104.34,0.15,991,5.800000000000001,337,0.7000000000000001 +2020,12,3,13,0,25.400000000000002,1.09,0.1087,0.62,0,0,0,6,23.700000000000003,0,0,0,0,0.249,90.13,118.15,0.15,992,5.800000000000001,25,0.7000000000000001 +2020,12,3,14,0,24.900000000000002,1.11,0.1124,0.62,0,0,0,7,23.6,0,0,0,0,0.251,92.4,131.71,0.15,992,5.800000000000001,40,0.7000000000000001 +2020,12,3,15,0,24.6,1.1300000000000001,0.11460000000000001,0.62,0,0,0,8,23.400000000000002,0,0,0,0,0.252,93.24,144.59,0.15,992,5.800000000000001,54,0.7000000000000001 +2020,12,3,16,0,24.3,1.1400000000000001,0.1153,0.62,0,0,0,7,23.3,0,0,0,0,0.253,94.06,155.59,0.15,992,5.800000000000001,72,0.6000000000000001 +2020,12,3,17,0,24.1,1.1500000000000001,0.1145,0.62,0,0,0,7,23.1,0,0,0,0,0.252,94.19,161.02,0.15,991,5.800000000000001,94,0.6000000000000001 +2020,12,3,18,0,23.900000000000002,1.1500000000000001,0.1159,0.62,0,0,0,7,22.900000000000002,0,0,0,0,0.251,94.4,156.59,0.15,991,5.800000000000001,116,0.6000000000000001 +2020,12,3,19,0,23.700000000000003,1.1400000000000001,0.11950000000000001,0.62,0,0,0,8,22.8,0,0,0,0,0.25,94.86,145.97,0.15,990,5.800000000000001,132,0.6000000000000001 +2020,12,3,20,0,23.6,1.11,0.11760000000000001,0.62,0,0,0,7,22.8,0,0,0,0,0.249,95.07000000000001,133.23,0.15,990,5.800000000000001,138,0.6000000000000001 +2020,12,3,21,0,23.5,1.08,0.12000000000000001,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.249,95.29,119.72,0.15,990,5.9,146,0.6000000000000001 +2020,12,3,22,0,23.5,1.04,0.1222,0.62,0,0,0,6,22.700000000000003,0,0,0,0,0.249,95.01,105.93,0.15,990,5.9,162,0.5 +2020,12,3,23,0,23.700000000000003,1.01,0.12100000000000001,0.62,0,0,0,7,22.8,0,0,0,0,0.248,94.85000000000001,92.06,0.15,991,6,182,0.4 +2020,12,4,0,0,24.400000000000002,1.01,0.1325,0.62,63,412,147,7,23.400000000000002,44,0,3,44,0.249,94.16,78.18,0.15,991,6,205,0.4 +2020,12,4,1,0,25.400000000000002,1.01,0.1428,0.62,101,645,378,8,23.900000000000002,182,75,0,214,0.249,91.46000000000001,64.64,0.15,992,6.1000000000000005,45,0.6000000000000001 +2020,12,4,2,0,26.1,0.98,0.1589,0.62,129,748,594,7,24,289,95,0,348,0.249,88.49,51.56,0.15,992,6.2,38,0.8 +2020,12,4,3,0,26.400000000000002,1,0.195,0.62,159,785,764,7,24,390,173,0,523,0.249,86.71000000000001,39.53,0.15,992,6.2,35,1 +2020,12,4,4,0,26.3,0.97,0.2134,0.62,176,806,875,6,23.900000000000002,452,157,0,588,0.249,86.83,29.900000000000002,0.15,992,6.2,37,1.2000000000000002 +2020,12,4,5,0,26.200000000000003,0.92,0.2222,0.62,184,810,915,6,23.900000000000002,472,130,0,589,0.249,87.42,25.560000000000002,0.15,991,6.300000000000001,40,1.4000000000000001 +2020,12,4,6,0,26.1,0.85,0.2701,0.62,204,766,874,6,24.1,306,18,0,321,0.249,88.66,29.02,0.15,990,6.300000000000001,40,1.5 +2020,12,4,7,0,25.900000000000002,0.8200000000000001,0.28240000000000004,0.62,200,721,766,6,24.200000000000003,368,64,0,418,0.249,90.37,38.21,0.15,989,6.300000000000001,39,1.4000000000000001 +2020,12,4,8,0,25.700000000000003,0.77,0.2646,0.62,175,663,601,7,24.3,307,202,0,437,0.248,92.18,50.04,0.15,989,6.300000000000001,40,1.3 +2020,12,4,9,0,25.5,0.78,0.26780000000000004,0.62,145,535,388,7,24.5,200,140,0,264,0.248,94.19,63.03,0.15,989,6.2,41,1.1 +2020,12,4,10,0,25.200000000000003,0.8,0.23620000000000002,0.62,87,328,164,7,24.5,86,233,3,140,0.247,96.10000000000001,76.53,0.15,990,6.2,42,0.7000000000000001 +2020,12,4,11,0,24.6,0.8200000000000001,0.1983,0.62,0,0,0,7,24.200000000000003,0,0,3,0,0.247,97.38,89.87,0.15,991,6.1000000000000005,46,0.6000000000000001 +2020,12,4,12,0,24.400000000000002,0.85,0.1759,0.62,0,0,0,0,23.900000000000002,0,0,0,0,0.248,97.04,104.24000000000001,0.15,992,6.1000000000000005,45,0.6000000000000001 +2020,12,4,13,0,24.200000000000003,0.86,0.15860000000000002,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.248,97.12,118.04,0.15,992,6,44,0.7000000000000001 +2020,12,4,14,0,24,0.86,0.1442,0.62,0,0,0,1,23.6,0,0,0,0,0.249,97.42,131.58,0.15,993,6,39,0.7000000000000001 +2020,12,4,15,0,23.900000000000002,0.84,0.1364,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.25,97.25,144.44,0.15,993,6,34,0.7000000000000001 +2020,12,4,16,0,23.700000000000003,0.8200000000000001,0.132,0.62,0,0,0,4,23.3,0,0,0,0,0.251,97.65,155.43,0.15,992,6,31,0.7000000000000001 +2020,12,4,17,0,23.6,0.8,0.1288,0.62,0,0,0,4,23.200000000000003,0,0,0,0,0.251,97.5,160.88,0.15,992,6,28,0.8 +2020,12,4,18,0,23.5,0.8,0.1297,0.62,0,0,0,4,23,0,0,0,0,0.25,97.17,156.55,0.15,991,6,26,0.8 +2020,12,4,19,0,23.400000000000002,0.8,0.12860000000000002,0.62,0,0,0,3,22.900000000000002,0,0,0,0,0.25,97.08,145.99,0.15,991,5.9,28,0.9 +2020,12,4,20,0,23.3,0.8,0.124,0.62,0,0,0,8,22.8,0,0,0,0,0.249,96.96000000000001,133.28,0.15,990,5.9,34,1 +2020,12,4,21,0,23.200000000000003,0.8200000000000001,0.1237,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.249,97.05,119.79,0.15,991,5.9,38,1 +2020,12,4,22,0,23.200000000000003,0.84,0.1232,0.62,0,0,0,0,22.6,0,0,0,0,0.249,96.41,106.02,0.15,991,5.9,36,0.9 +2020,12,4,23,0,23.3,0.85,0.1245,0.62,0,0,0,0,22.700000000000003,0,0,0,0,0.248,96.4,92.16,0.15,992,5.9,35,0.9 +2020,12,5,0,0,24.200000000000003,0.85,0.1283,0.62,63,408,145,8,23.200000000000003,69,285,3,127,0.248,94.18,78.29,0.15,993,5.9,33,1.5 +2020,12,5,1,0,25,0.86,0.12890000000000001,0.62,98,656,378,8,23.5,146,449,0,337,0.248,91.58,64.76,0.15,993,5.9,44,2 +2020,12,5,2,0,25.900000000000002,0.86,0.129,0.62,118,774,598,7,23.700000000000003,278,304,0,467,0.248,87.61,51.7,0.15,994,5.9,53,2.3000000000000003 +2020,12,5,3,0,26.700000000000003,0.87,0.1273,0.62,129,838,774,7,23.700000000000003,345,398,0,651,0.248,83.78,39.69,0.15,993,5.9,59,2.3000000000000003 +2020,12,5,4,0,27.200000000000003,0.88,0.12840000000000001,0.62,137,869,889,7,23.8,436,288,0,685,0.247,81.71000000000001,30.060000000000002,0.15,993,5.9,65,2.3000000000000003 +2020,12,5,5,0,27.5,0.87,0.1323,0.62,141,876,931,1,23.8,141,876,0,931,0.247,80.33,25.69,0.15,992,6,73,2.2 +2020,12,5,6,0,27.6,0.86,0.1396,0.62,143,863,897,3,23.8,74,0,0,74,0.246,79.83,29.080000000000002,0.15,991,6,83,2.1 +2020,12,5,7,0,27.400000000000002,0.85,0.14750000000000002,0.62,140,827,790,7,24,388,99,0,465,0.246,81.52,38.21,0.15,990,6,95,2 +2020,12,5,8,0,27,0.8200000000000001,0.1553,0.62,131,759,619,6,24.3,283,55,0,318,0.245,85.05,50.01,0.15,990,6.1000000000000005,106,1.9000000000000001 +2020,12,5,9,0,26.400000000000002,0.78,0.168,0.62,115,632,402,7,24.5,199,189,0,285,0.245,89.52,62.97,0.15,990,6.1000000000000005,111,1.7000000000000002 +2020,12,5,10,0,25.8,0.76,0.1728,0.62,78,394,170,7,24.700000000000003,49,0,3,49,0.245,93.57000000000001,76.45,0.15,990,6.1000000000000005,112,1.3 +2020,12,5,11,0,25.1,0.76,0.16190000000000002,0.62,0,0,0,7,24.5,0,0,3,0,0.247,96.60000000000001,89.8,0.15,991,6,108,1 +2020,12,5,12,0,24.900000000000002,0.79,0.1515,0.62,0,0,0,8,24.3,0,0,0,0,0.247,96.72,104.14,0.15,992,6,100,1 +2020,12,5,13,0,24.700000000000003,0.8300000000000001,0.1421,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.248,96.78,117.93,0.15,992,5.9,92,1.1 +2020,12,5,14,0,24.5,0.87,0.1302,0.62,0,0,0,3,24,0,0,0,0,0.248,96.84,131.46,0.15,993,5.800000000000001,84,1.1 +2020,12,5,15,0,24.3,0.93,0.11720000000000001,0.62,0,0,0,0,23.8,0,0,0,0,0.249,96.89,144.3,0.15,993,5.7,74,1.1 +2020,12,5,16,0,24,0.99,0.1058,0.62,0,0,0,3,23.5,0,0,0,0,0.249,97.25,155.27,0.15,992,5.6000000000000005,64,1.2000000000000002 +2020,12,5,17,0,23.8,1.03,0.09870000000000001,0.62,0,0,0,0,23.3,0,0,0,0,0.249,96.83,160.75,0.15,991,5.5,56,1.2000000000000002 +2020,12,5,18,0,23.5,1.07,0.09680000000000001,0.62,0,0,0,3,23,0,0,0,0,0.249,97.31,156.51,0.15,991,5.4,44,1.3 +2020,12,5,19,0,23.400000000000002,1.1,0.0985,0.62,0,0,0,8,22.8,0,0,0,0,0.249,96.63,146.01,0.15,990,5.4,34,1.4000000000000001 +2020,12,5,20,0,23.200000000000003,1.1300000000000001,0.0984,0.62,0,0,0,8,22.700000000000003,0,0,0,0,0.249,96.74000000000001,133.33,0.15,990,5.4,27,1.4000000000000001 +2020,12,5,21,0,23,1.17,0.09620000000000001,0.62,0,0,0,8,22.5,0,0,0,0,0.248,96.81,119.87,0.15,991,5.4,24,1.3 +2020,12,5,22,0,22.900000000000002,1.21,0.0931,0.62,0,0,0,8,22.200000000000003,0,0,0,0,0.248,96.08,106.11,0.15,991,5.4,23,1.1 +2020,12,5,23,0,23,1.24,0.0906,0.62,0,0,0,4,22.3,0,0,0,0,0.248,95.97,92.26,0.15,992,5.4,22,1.1 +2020,12,6,0,0,24.3,1.27,0.0877,0.62,53,480,149,8,23,70,270,3,124,0.248,92.43,78.4,0.14,993,5.4,20,1.9000000000000001 +2020,12,6,1,0,25.8,1.31,0.083,0.62,79,721,385,4,23.200000000000003,176,258,0,286,0.248,85.5,64.89,0.14,993,5.300000000000001,21,2.1 +2020,12,6,2,0,27.400000000000002,1.34,0.0805,0.62,94,831,607,3,23,263,369,0,491,0.248,77.04,51.84,0.14,993,5.300000000000001,25,2 +2020,12,6,3,0,28.5,1.18,0.0932,0.62,110,874,781,7,23,342,402,0,651,0.248,72.37,39.84,0.14,993,5.4,28,1.9000000000000001 +2020,12,6,4,0,29.400000000000002,1.17,0.0974,0.62,118,900,896,8,23.200000000000003,354,509,0,794,0.249,69.43,30.21,0.14,993,5.4,28,1.7000000000000002 +2020,12,6,5,0,30.1,1.1400000000000001,0.10300000000000001,0.62,124,905,939,7,23.400000000000002,412,408,0,779,0.248,67.36,25.82,0.14,992,5.5,27,1.5 +2020,12,6,6,0,30.3,1.04,0.11900000000000001,0.62,131,884,903,7,23.5,426,343,0,726,0.248,66.9,29.14,0.14,991,5.5,23,1.3 +2020,12,6,7,0,30.200000000000003,1,0.1376,0.62,134,840,794,8,23.5,325,457,0,684,0.249,67.29,38.21,0.14,990,5.6000000000000005,16,1.2000000000000002 +2020,12,6,8,0,29.6,0.99,0.15910000000000002,0.62,131,762,621,7,23.5,269,402,0,528,0.249,69.95,49.97,0.14,990,5.7,4,1 +2020,12,6,9,0,29.1,1,0.1867,0.62,119,622,402,3,24,161,443,0,362,0.249,74.06,62.910000000000004,0.14,990,5.800000000000001,347,0.9 +2020,12,6,10,0,28.3,1.02,0.2068,0.62,82,375,170,8,24,92,128,3,122,0.249,77.66,76.38,0.14,990,5.800000000000001,334,0.8 +2020,12,6,11,0,27.200000000000003,1.03,0.2092,0.62,0,0,0,8,24.400000000000002,0,0,3,0,0.249,84.9,89.72,0.14,991,5.800000000000001,314,0.6000000000000001 +2020,12,6,12,0,26.8,1.03,0.21730000000000002,0.62,0,0,0,8,24.200000000000003,0,0,0,0,0.249,85.49,104.04,0.14,992,5.9,316,0.6000000000000001 +2020,12,6,13,0,26.6,1.04,0.2232,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.249,85.19,117.81,0.14,993,5.9,344,0.5 +2020,12,6,14,0,26.3,1.03,0.22460000000000002,0.62,0,0,0,3,23.8,0,0,0,0,0.248,86.22,131.33,0.14,993,5.800000000000001,10,0.5 +2020,12,6,15,0,25.8,1.03,0.23770000000000002,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.248,89.17,144.16,0.14,993,5.800000000000001,19,0.5 +2020,12,6,16,0,25.400000000000002,1.01,0.2571,0.62,0,0,0,7,24,0,0,0,0,0.247,91.91,155.12,0.14,993,5.800000000000001,26,0.6000000000000001 +2020,12,6,17,0,25.1,0.98,0.27140000000000003,0.62,0,0,0,7,24,0,0,0,0,0.247,93.37,160.63,0.14,992,5.9,32,0.6000000000000001 +2020,12,6,18,0,24.8,0.97,0.29000000000000004,0.62,0,0,0,8,23.8,0,0,0,0,0.246,94.28,156.47,0.14,991,5.800000000000001,34,0.6000000000000001 +2020,12,6,19,0,24.5,0.96,0.3068,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.246,95.29,146.04,0.14,991,5.800000000000001,35,0.7000000000000001 +2020,12,6,20,0,24.3,0.9400000000000001,0.3135,0.62,0,0,0,0,23.6,0,0,0,0,0.246,95.91,133.39000000000001,0.14,991,5.800000000000001,36,0.7000000000000001 +2020,12,6,21,0,24.1,0.9400000000000001,0.3145,0.62,0,0,0,0,23.5,0,0,0,0,0.245,96.37,119.95,0.14,991,5.800000000000001,34,0.7000000000000001 +2020,12,6,22,0,24,0.9500000000000001,0.3148,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.245,96.29,106.2,0.14,991,5.800000000000001,29,0.7000000000000001 +2020,12,6,23,0,24.1,0.9500000000000001,0.315,0.62,0,0,0,3,23.5,0,0,0,0,0.245,96.48,92.36,0.14,992,5.7,23,0.8 +2020,12,7,0,0,25.200000000000003,0.96,0.3073,0.62,83,234,130,3,23.900000000000002,70,1,3,70,0.245,92.27,78.52,0.14,993,5.7,19,1.4000000000000001 +2020,12,7,1,0,26.1,0.98,0.2918,0.62,143,501,354,0,24,143,501,0,354,0.246,87.98,65.01,0.14,994,5.7,17,1.8 +2020,12,7,2,0,27,1,0.2767,0.62,172,651,572,0,23.900000000000002,172,651,0,572,0.246,83.37,51.980000000000004,0.14,994,5.7,16,1.9000000000000001 +2020,12,7,3,0,27.8,1,0.24750000000000003,0.62,179,747,752,0,23.900000000000002,179,747,0,752,0.246,79.58,39.980000000000004,0.14,993,5.7,17,2 +2020,12,7,4,0,28.3,0.99,0.2431,0.62,188,788,868,3,24,431,300,0,690,0.246,77.33,30.36,0.14,993,5.7,17,2 +2020,12,7,5,0,28.5,0.98,0.2335,0.62,187,806,912,8,23.900000000000002,405,422,0,784,0.246,76.18,25.93,0.14,992,5.800000000000001,11,1.9000000000000001 +2020,12,7,6,0,28.400000000000002,0.98,0.2581,0.62,196,780,877,7,23.8,440,291,0,695,0.245,76.17,29.19,0.14,991,5.800000000000001,1,1.7000000000000002 +2020,12,7,7,0,28.200000000000003,0.99,0.24760000000000001,0.62,182,754,774,7,23.700000000000003,395,125,0,494,0.244,76.82000000000001,38.2,0.14,990,5.9,350,1.6 +2020,12,7,8,0,27.900000000000002,0.99,0.23670000000000002,0.62,161,696,609,6,23.900000000000002,277,47,0,308,0.244,78.75,49.93,0.14,990,5.9,342,1.4000000000000001 +2020,12,7,9,0,27.5,1.02,0.23420000000000002,0.62,133,580,397,6,24.1,181,32,0,195,0.243,81.95,62.85,0.14,990,5.9,340,1.2000000000000002 +2020,12,7,10,0,26.700000000000003,1.03,0.2212,0.62,84,363,170,7,24.200000000000003,92,130,3,123,0.244,86.13,76.3,0.14,991,5.9,339,1 +2020,12,7,11,0,25.8,1.05,0.20220000000000002,0.62,0,0,0,7,24.1,0,0,3,0,0.244,90.42,89.64,0.14,992,5.800000000000001,321,0.7000000000000001 +2020,12,7,12,0,25.5,1.07,0.18460000000000001,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.245,89.72,103.93,0.14,993,5.7,296,0.6000000000000001 +2020,12,7,13,0,25.400000000000002,1.08,0.1671,0.62,0,0,0,8,23.400000000000002,0,0,0,0,0.246,88.69,117.7,0.14,994,5.5,314,0.5 +2020,12,7,14,0,25.200000000000003,1.08,0.1575,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.247,88.57000000000001,131.2,0.14,994,5.4,35,0.6000000000000001 +2020,12,7,15,0,24.6,1.06,0.1554,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.248,91.95,144.02,0.14,994,5.300000000000001,46,0.8 +2020,12,7,16,0,24.200000000000003,1.05,0.1534,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.248,94.2,154.97,0.14,993,5.300000000000001,38,0.8 +2020,12,7,17,0,24.1,1.04,0.1429,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.248,94.62,160.51,0.14,992,5.300000000000001,30,0.9 +2020,12,7,18,0,23.900000000000002,1.05,0.12990000000000002,0.62,0,0,0,7,23.1,0,0,0,0,0.248,95.45,156.45000000000002,0.14,992,5.2,22,0.9 +2020,12,7,19,0,23.8,1.07,0.11960000000000001,0.62,0,0,0,7,23.1,0,0,0,0,0.248,95.61,146.07,0.14,991,5.2,14,1 +2020,12,7,20,0,23.6,1.08,0.11130000000000001,0.62,0,0,0,7,23,0,0,0,0,0.248,96.43,133.45,0.14,991,5.2,8,1 +2020,12,7,21,0,23.5,1.1,0.1038,0.62,0,0,0,6,22.900000000000002,0,0,0,0,0.248,96.43,120.03,0.14,991,5.2,5,1 +2020,12,7,22,0,23.400000000000002,1.12,0.099,0.62,0,0,0,6,22.8,0,0,0,0,0.248,96.4,106.29,0.14,992,5.2,7,0.9 +2020,12,7,23,0,23.5,1.1500000000000001,0.0961,0.62,0,0,0,7,23,0,0,0,0,0.248,96.83,92.47,0.14,992,5.1000000000000005,8,0.9 +2020,12,8,0,0,24.700000000000003,1.17,0.0954,0.62,54,462,145,7,23.700000000000003,75,100,3,95,0.248,94.02,78.63,0.15,993,5.1000000000000005,10,1.4000000000000001 +2020,12,8,1,0,26.1,1.19,0.095,0.62,83,704,379,6,24.1,173,51,0,194,0.248,88.8,65.14,0.15,994,5.1000000000000005,5,1.4000000000000001 +2020,12,8,2,0,27,1.22,0.0966,0.62,101,814,601,6,23.8,224,17,0,235,0.248,82.73,52.11,0.15,994,5.1000000000000005,2,1.6 +2020,12,8,3,0,27.6,1.24,0.10250000000000001,0.62,114,868,778,6,23.8,310,29,0,332,0.248,79.96000000000001,40.13,0.15,993,5.1000000000000005,3,1.6 +2020,12,8,4,0,28.200000000000003,1.25,0.1014,0.62,120,899,894,6,23.900000000000002,371,36,0,402,0.248,77.34,30.5,0.15,993,5.2,8,1.6 +2020,12,8,5,0,28.5,1.26,0.09920000000000001,0.62,121,911,939,6,23.900000000000002,449,82,0,523,0.248,76.12,26.04,0.15,992,5.2,16,1.5 +2020,12,8,6,0,28.5,1.25,0.1044,0.62,121,899,906,6,23.8,447,109,0,541,0.248,75.93,29.23,0.15,991,5.300000000000001,22,1.4000000000000001 +2020,12,8,7,0,28.3,1.26,0.1095,0.62,118,868,800,7,23.8,385,287,0,611,0.248,76.44,38.19,0.15,990,5.4,24,1.2000000000000002 +2020,12,8,8,0,28.200000000000003,1.26,0.11180000000000001,0.62,109,812,632,6,24,300,88,0,357,0.248,77.97,49.89,0.15,990,5.4,21,1.1 +2020,12,8,9,0,27.8,1.27,0.1252,0.62,96,696,414,7,24.3,197,228,0,302,0.248,81.35000000000001,62.78,0.15,990,5.5,21,0.9 +2020,12,8,10,0,27.1,1.28,0.1332,0.62,67,473,180,7,24.200000000000003,93,81,3,112,0.249,84.35000000000001,76.22,0.15,991,5.5,19,0.8 +2020,12,8,11,0,26.3,1.3,0.127,0.62,0,0,0,7,24.3,0,0,3,0,0.25,88.73,89.56,0.15,991,5.5,23,0.6000000000000001 +2020,12,8,12,0,26,1.32,0.12090000000000001,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.251,88.31,103.83,0.15,992,5.5,28,0.6000000000000001 +2020,12,8,13,0,25.700000000000003,1.34,0.1121,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.252,88.73,117.58,0.15,993,5.5,29,0.6000000000000001 +2020,12,8,14,0,25.400000000000002,1.36,0.10160000000000001,0.62,0,0,0,8,23.5,0,0,0,0,0.253,89.21000000000001,131.08,0.15,993,5.4,25,0.5 +2020,12,8,15,0,25.1,1.3800000000000001,0.095,0.62,0,0,0,8,23.3,0,0,0,0,0.255,89.87,143.88,0.15,992,5.4,19,0.5 +2020,12,8,16,0,24.8,1.3900000000000001,0.0916,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.255,90.8,154.82,0.15,992,5.4,15,0.5 +2020,12,8,17,0,24.6,1.3900000000000001,0.0915,0.62,0,0,0,0,23.1,0,0,0,0,0.255,91.19,160.41,0.15,992,5.5,13,0.5 +2020,12,8,18,0,24.400000000000002,1.3900000000000001,0.0936,0.62,0,0,0,8,22.900000000000002,0,0,0,0,0.255,91.62,156.42000000000002,0.15,991,5.5,6,0.5 +2020,12,8,19,0,24.200000000000003,1.36,0.0998,0.62,0,0,0,7,22.900000000000002,0,0,0,0,0.254,92.33,146.1,0.15,991,5.6000000000000005,356,0.5 +2020,12,8,20,0,24.1,1.34,0.1086,0.62,0,0,0,8,22.8,0,0,0,0,0.253,92.69,133.51,0.15,991,5.7,345,0.5 +2020,12,8,21,0,24.1,1.32,0.1165,0.62,0,0,0,1,22.8,0,0,0,0,0.252,92.67,120.11,0.15,991,5.7,345,0.5 +2020,12,8,22,0,23.900000000000002,1.31,0.1218,0.62,0,0,0,0,22.8,0,0,0,0,0.251,93.55,106.39,0.15,991,5.7,354,0.5 +2020,12,8,23,0,24,1.32,0.1236,0.62,0,0,0,8,23,0,0,0,0,0.251,94.05,92.57000000000001,0.15,992,5.7,5,0.5 +2020,12,9,0,0,25,1.33,0.1222,0.62,57,424,139,0,23.700000000000003,57,424,0,139,0.251,92.74,78.74,0.15,993,5.7,14,1 +2020,12,9,1,0,26.400000000000002,1.34,0.12200000000000001,0.62,90,671,371,0,24.1,90,671,0,371,0.251,86.96000000000001,65.26,0.15,993,5.6000000000000005,22,1.2000000000000002 +2020,12,9,2,0,27.3,1.36,0.1212,0.62,109,788,592,7,23.8,247,419,0,503,0.252,81.18,52.24,0.15,993,5.6000000000000005,32,1.3 +2020,12,9,3,0,28,1.21,0.1777,0.62,148,802,760,8,23.6,305,475,0,668,0.252,77.23,40.27,0.15,993,5.7,39,1.4000000000000001 +2020,12,9,4,0,28.5,1.2,0.1908,0.62,163,828,875,3,23.700000000000003,354,502,0,786,0.251,75.29,30.64,0.15,992,5.7,43,1.3 +2020,12,9,5,0,28.8,1.19,0.198,0.62,169,835,919,3,23.700000000000003,457,290,0,717,0.25,74.17,26.150000000000002,0.15,991,5.7,39,1.1 +2020,12,9,6,0,28.700000000000003,1.19,0.2137,0.62,174,816,885,8,23.700000000000003,421,357,0,733,0.249,74.36,29.27,0.15,990,5.800000000000001,33,1 +2020,12,9,7,0,28.400000000000002,1.21,0.2227,0.62,169,778,781,8,23.8,331,445,0,681,0.248,76.34,38.17,0.15,989,5.800000000000001,29,1 +2020,12,9,8,0,28.1,1.22,0.22,0.62,153,717,615,9,24.400000000000002,130,0,0,130,0.248,80.46000000000001,49.84,0.15,989,5.800000000000001,27,1 +2020,12,9,9,0,27.6,1.23,0.24070000000000003,0.62,133,584,401,6,24.5,137,0,0,137,0.248,83.05,62.71,0.15,989,5.9,22,1 +2020,12,9,10,0,26.8,1.25,0.2543,0.62,88,350,172,7,24.5,92,48,3,103,0.248,87.08,76.13,0.15,990,5.9,20,0.9 +2020,12,9,11,0,26,1.26,0.24960000000000002,0.62,0,0,0,7,24.700000000000003,0,0,3,0,0.248,92.55,89.48,0.15,990,5.9,18,0.6000000000000001 +2020,12,9,12,0,25.700000000000003,1.27,0.251,0.62,0,0,0,7,24.400000000000002,0,0,0,0,0.248,92.69,103.72,0.15,991,5.9,15,0.6000000000000001 +2020,12,9,13,0,25.5,1.29,0.2442,0.62,0,0,0,7,24.3,0,0,0,0,0.248,93.06,117.47,0.15,992,5.9,13,0.5 +2020,12,9,14,0,25.200000000000003,1.31,0.2281,0.62,0,0,0,7,24,0,0,0,0,0.248,93.35000000000001,130.95,0.15,992,5.9,9,0.5 +2020,12,9,15,0,25,1.32,0.21530000000000002,0.62,0,0,0,7,23.8,0,0,0,0,0.249,92.96000000000001,143.74,0.15,991,5.800000000000001,2,0.5 +2020,12,9,16,0,24.700000000000003,1.33,0.2074,0.62,0,0,0,7,23.6,0,0,0,0,0.249,93.57000000000001,154.68,0.15,991,5.7,352,0.5 +2020,12,9,17,0,24.6,1.34,0.19740000000000002,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.249,93.06,160.3,0.15,991,5.7,342,0.6000000000000001 +2020,12,9,18,0,24.400000000000002,1.34,0.19190000000000002,0.62,0,0,0,7,23.3,0,0,0,0,0.248,93.33,156.41,0.15,990,5.6000000000000005,334,0.6000000000000001 +2020,12,9,19,0,24.3,1.34,0.1877,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.248,93.34,146.14000000000001,0.15,989,5.6000000000000005,329,0.6000000000000001 +2020,12,9,20,0,24.200000000000003,1.34,0.1822,0.62,0,0,0,6,23.1,0,0,0,0,0.248,93.53,133.58,0.15,989,5.5,324,0.7000000000000001 +2020,12,9,21,0,24.200000000000003,1.34,0.1773,0.62,0,0,0,6,23,0,0,0,0,0.248,92.84,120.2,0.15,990,5.5,326,0.7000000000000001 +2020,12,9,22,0,24.200000000000003,1.35,0.1706,0.62,0,0,0,8,22.900000000000002,0,0,0,0,0.248,92.25,106.49000000000001,0.15,990,5.5,332,0.7000000000000001 +2020,12,9,23,0,24.3,1.35,0.1642,0.62,0,0,0,7,23.1,0,0,0,0,0.248,92.93,92.68,0.15,991,5.5,339,0.6000000000000001 +2020,12,10,0,0,25.6,1.36,0.1563,0.62,62,383,136,6,24.1,8,0,3,8,0.248,91.67,78.86,0.15,991,5.5,347,0.7000000000000001 +2020,12,10,1,0,27.400000000000002,1.3800000000000001,0.14450000000000002,0.62,97,647,367,8,24.200000000000003,176,220,0,268,0.248,82.89,65.39,0.15,992,5.6000000000000005,343,0.6000000000000001 +2020,12,10,2,0,28.5,1.4000000000000001,0.1282,0.62,112,782,589,7,23.8,275,297,0,456,0.249,75.82000000000001,52.38,0.15,992,5.6000000000000005,318,0.7000000000000001 +2020,12,10,3,0,28.900000000000002,1.19,0.14700000000000002,0.62,135,827,765,7,23.6,376,251,0,568,0.249,72.98,40.410000000000004,0.15,992,5.6000000000000005,295,1 +2020,12,10,4,0,29.1,1.22,0.1342,0.62,136,870,883,7,23.700000000000003,430,298,0,686,0.249,72.7,30.77,0.15,991,5.6000000000000005,284,1.3 +2020,12,10,5,0,29.1,1.24,0.1265,0.62,134,888,930,7,24,470,135,0,591,0.248,73.97,26.240000000000002,0.15,991,5.6000000000000005,277,1.5 +2020,12,10,6,0,29,1.25,0.12610000000000002,0.62,132,881,901,7,24.200000000000003,453,132,0,568,0.247,75.24,29.3,0.15,990,5.6000000000000005,271,1.7000000000000002 +2020,12,10,7,0,28.6,1.26,0.12240000000000001,0.62,125,856,798,7,24.200000000000003,370,66,0,422,0.246,77.36,38.15,0.15,989,5.7,265,1.8 +2020,12,10,8,0,28.1,1.28,0.1131,0.62,109,810,632,6,24.5,261,31,0,282,0.245,80.85000000000001,49.78,0.15,989,5.7,258,1.8 +2020,12,10,9,0,27.400000000000002,1.29,0.11610000000000001,0.62,94,707,419,7,24.8,202,195,0,291,0.244,85.51,62.64,0.15,989,5.7,255,1.5 +2020,12,10,10,0,26.6,1.32,0.1076,0.62,63,511,186,4,24.700000000000003,92,188,3,138,0.244,89.27,76.04,0.15,990,5.7,257,1.2000000000000002 +2020,12,10,11,0,25.700000000000003,1.34,0.0978,0.62,0,0,0,6,24.6,0,0,3,0,0.244,93.94,89.39,0.15,991,5.7,262,0.6000000000000001 +2020,12,10,12,0,25.400000000000002,1.36,0.0916,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.245,93.31,103.61,0.15,991,5.6000000000000005,271,0.5 +2020,12,10,13,0,25.3,1.3800000000000001,0.0883,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.245,91.98,117.35000000000001,0.15,992,5.6000000000000005,287,0.4 +2020,12,10,14,0,25.200000000000003,1.3900000000000001,0.08750000000000001,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.246,91.46000000000001,130.82,0.15,992,5.6000000000000005,319,0.4 +2020,12,10,15,0,25.1,1.3900000000000001,0.0897,0.62,0,0,0,4,23.6,0,0,0,0,0.246,91.31,143.61,0.15,992,5.6000000000000005,334,0.4 +2020,12,10,16,0,24.900000000000002,1.3800000000000001,0.0927,0.62,0,0,0,4,23.5,0,0,0,0,0.246,92.11,154.55,0.15,992,5.6000000000000005,318,0.5 +2020,12,10,17,0,24.5,1.37,0.09580000000000001,0.62,0,0,0,8,23.5,0,0,0,0,0.245,93.96000000000001,160.21,0.15,991,5.7,284,0.6000000000000001 +2020,12,10,18,0,24.3,1.37,0.0983,0.62,0,0,0,4,23.400000000000002,0,0,0,0,0.244,94.67,156.4,0.15,991,5.7,273,0.7000000000000001 +2020,12,10,19,0,24.1,1.3800000000000001,0.09620000000000001,0.62,0,0,0,4,23.3,0,0,0,0,0.243,95.21000000000001,146.19,0.15,990,5.7,271,0.7000000000000001 +2020,12,10,20,0,24.1,1.37,0.092,0.62,0,0,0,4,23.200000000000003,0,0,0,0,0.242,94.52,133.66,0.15,990,5.7,268,0.7000000000000001 +2020,12,10,21,0,24.1,1.37,0.0949,0.62,0,0,0,4,23.1,0,0,0,0,0.242,94.02,120.28,0.15,990,5.800000000000001,259,0.6000000000000001 +2020,12,10,22,0,24.1,1.37,0.1018,0.62,0,0,0,3,23,0,0,0,0,0.242,93.74,106.59,0.15,991,5.800000000000001,225,0.6000000000000001 +2020,12,10,23,0,24.1,1.37,0.1004,0.62,0,0,0,0,23.1,0,0,0,0,0.242,94.16,92.79,0.15,991,5.800000000000001,203,0.6000000000000001 +2020,12,11,0,0,24.900000000000002,1.35,0.1198,0.62,55,421,136,3,24,72,149,3,100,0.243,94.67,78.98,0.14,992,5.800000000000001,185,0.6000000000000001 +2020,12,11,1,0,26.1,1.36,0.1322,0.62,93,657,365,0,24.200000000000003,93,657,0,365,0.243,89.51,65.51,0.14,993,5.9,147,0.7000000000000001 +2020,12,11,2,0,26.5,1.36,0.1343,0.62,114,774,584,0,23.400000000000002,114,774,0,584,0.243,83.27,52.51,0.14,993,5.9,138,0.8 +2020,12,11,3,0,26.900000000000002,1.17,0.21080000000000002,0.62,162,775,750,3,23.400000000000002,325,429,0,651,0.244,81.02,40.54,0.14,992,6,155,0.7000000000000001 +2020,12,11,4,0,27.200000000000003,1.19,0.2215,0.62,175,805,866,3,23.400000000000002,433,284,0,676,0.244,79.95,30.900000000000002,0.14,992,6,294,0.7000000000000001 +2020,12,11,5,0,27.3,1.19,0.2189,0.62,178,819,912,8,23.5,462,266,0,701,0.245,79.75,26.330000000000002,0.14,991,6.1000000000000005,322,0.8 +2020,12,11,6,0,27.1,1.16,0.2335,0.62,183,800,880,7,23.6,456,192,0,624,0.245,81.27,29.32,0.14,990,6.1000000000000005,308,1 +2020,12,11,7,0,26.8,1.1500000000000001,0.2589,0.62,184,750,774,6,23.8,154,1,0,155,0.245,83.44,38.12,0.14,989,6.2,288,1.2000000000000002 +2020,12,11,8,0,26.3,1.1400000000000001,0.2538,0.62,166,688,611,8,23.900000000000002,269,412,0,535,0.245,86.91,49.72,0.14,989,6.2,272,1.3 +2020,12,11,9,0,25.900000000000002,1.16,0.3017,0.62,150,532,396,7,24.200000000000003,204,162,0,279,0.246,90.18,62.56,0.14,989,6.300000000000001,270,1.2000000000000002 +2020,12,11,10,0,25.5,1.16,0.31370000000000003,0.62,97,302,170,3,24.400000000000002,25,0,3,25,0.246,93.7,75.95,0.14,990,6.300000000000001,271,0.9 +2020,12,11,11,0,25.1,1.16,0.27790000000000004,0.62,0,0,0,7,24.400000000000002,0,0,3,0,0.247,95.74000000000001,89.3,0.14,990,6.300000000000001,267,0.8 +2020,12,11,12,0,25,1.17,0.2722,0.62,0,0,0,3,24.3,0,0,0,0,0.248,95.88,103.5,0.14,991,6.300000000000001,262,0.7000000000000001 +2020,12,11,13,0,24.900000000000002,1.18,0.2543,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.249,95.79,117.23,0.14,992,6.300000000000001,247,0.6000000000000001 +2020,12,11,14,0,24.8,1.17,0.2283,0.62,0,0,0,3,24.1,0,0,0,0,0.249,95.76,130.7,0.14,992,6.300000000000001,211,0.6000000000000001 +2020,12,11,15,0,24.700000000000003,1.18,0.2222,0.62,0,0,0,3,24,0,0,0,0,0.249,95.91,143.48,0.14,992,6.300000000000001,185,0.7000000000000001 +2020,12,11,16,0,24.400000000000002,1.18,0.2043,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.249,97.16,154.42000000000002,0.14,992,6.4,178,0.8 +2020,12,11,17,0,24.3,1.18,0.17650000000000002,0.62,0,0,0,8,23.8,0,0,0,0,0.248,97.05,160.12,0.14,991,6.4,181,0.9 +2020,12,11,18,0,24.1,1.19,0.1711,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.247,97.61,156.39000000000001,0.14,991,6.300000000000001,188,1.1 +2020,12,11,19,0,24,1.2,0.1461,0.62,0,0,0,8,23.6,0,0,0,0,0.246,97.36,146.24,0.14,990,6.300000000000001,199,1.1 +2020,12,11,20,0,23.8,1.2,0.11760000000000001,0.62,0,0,0,8,23.5,0,0,0,0,0.245,97.95,133.73,0.14,990,6.2,209,1.1 +2020,12,11,21,0,23.700000000000003,1.21,0.115,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.245,98.10000000000001,120.38,0.14,990,6.2,216,1.2000000000000002 +2020,12,11,22,0,23.6,1.19,0.1033,0.62,0,0,0,8,23.3,0,0,0,0,0.244,98.23,106.69,0.14,991,6.1000000000000005,220,1.1 +2020,12,11,23,0,23.700000000000003,1.17,0.09050000000000001,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.244,98.46000000000001,92.9,0.14,991,6,221,1.1 +2020,12,12,0,0,24.5,1.17,0.09050000000000001,0.62,50,453,136,7,24,67,234,3,111,0.244,97.23,79.09,0.14,992,6,212,1.3 +2020,12,12,1,0,25.1,1.18,0.0823,0.62,77,709,369,7,24.3,153,375,0,308,0.244,95.51,65.63,0.14,992,6.1000000000000005,212,1.4000000000000001 +2020,12,12,2,0,25.8,1.19,0.0724,0.62,88,830,591,7,24.5,288,153,0,381,0.244,92.67,52.64,0.14,992,6.1000000000000005,224,1.5 +2020,12,12,3,0,26.3,1.21,0.0879,0.62,105,873,768,7,24.400000000000002,376,245,0,561,0.244,89.56,40.67,0.14,992,6.1000000000000005,233,1.6 +2020,12,12,4,0,26.700000000000003,1.23,0.09910000000000001,0.62,117,895,884,7,24.5,411,360,0,719,0.244,87.96000000000001,31.03,0.14,991,6.1000000000000005,245,1.6 +2020,12,12,5,0,26.8,1.23,0.10300000000000001,0.62,121,903,929,7,24.6,459,281,0,710,0.244,87.67,26.42,0.14,990,6.1000000000000005,265,1.8 +2020,12,12,6,0,26.6,1.24,0.1287,0.62,133,877,897,7,24.700000000000003,442,286,0,691,0.244,89.17,29.34,0.14,990,6.1000000000000005,277,1.9000000000000001 +2020,12,12,7,0,26.400000000000002,1.25,0.1398,0.62,133,841,794,6,24.8,95,0,0,95,0.243,90.72,38.09,0.14,989,6.1000000000000005,283,1.9000000000000001 +2020,12,12,8,0,26.200000000000003,1.24,0.12250000000000001,0.62,114,800,631,6,24.900000000000002,38,0,0,38,0.243,92.7,49.660000000000004,0.14,988,6.2,288,1.8 +2020,12,12,9,0,25.900000000000002,1.24,0.1228,0.62,96,698,419,6,25.1,20,0,0,20,0.243,95.32000000000001,62.480000000000004,0.14,988,6.2,305,1.4000000000000001 +2020,12,12,10,0,25.6,1.24,0.1067,0.62,63,512,188,6,25.1,19,0,3,19,0.243,96.92,75.86,0.14,989,6.2,329,1 +2020,12,12,11,0,25.1,1.25,0.0908,0.62,0,0,0,6,24.700000000000003,0,0,3,0,0.244,97.86,89.21000000000001,0.14,989,6.2,346,0.9 +2020,12,12,12,0,25,1.27,0.1062,0.62,0,0,0,9,24.6,0,0,0,0,0.245,97.56,103.39,0.14,990,6.2,360,0.9 +2020,12,12,13,0,24.8,1.28,0.10070000000000001,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.245,97.79,117.12,0.14,991,6.2,12,0.9 +2020,12,12,14,0,24.700000000000003,1.28,0.0872,0.62,0,0,0,6,24.3,0,0,0,0,0.246,97.38,130.57,0.14,991,6.2,27,0.8 +2020,12,12,15,0,24.6,1.29,0.1004,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.246,97.41,143.35,0.14,991,6.2,36,0.8 +2020,12,12,16,0,24.400000000000002,1.28,0.0956,0.62,0,0,0,7,24.1,0,0,0,0,0.247,97.95,154.29,0.14,991,6.2,48,0.8 +2020,12,12,17,0,24.3,1.26,0.08560000000000001,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.247,97.66,160.04,0.14,990,6.2,59,0.7000000000000001 +2020,12,12,18,0,24.1,1.26,0.11,0.62,0,0,0,7,23.8,0,0,0,0,0.247,98.02,156.4,0.14,990,6.2,65,0.7000000000000001 +2020,12,12,19,0,24,1.26,0.10990000000000001,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.246,98.11,146.29,0.14,990,6.1000000000000005,77,0.7000000000000001 +2020,12,12,20,0,23.900000000000002,1.25,0.09580000000000001,0.62,0,0,0,7,23.6,0,0,0,0,0.246,97.95,133.81,0.14,989,6.1000000000000005,92,0.7000000000000001 +2020,12,12,21,0,23.900000000000002,1.25,0.11570000000000001,0.62,0,0,0,4,23.400000000000002,0,0,0,0,0.245,97.23,120.47,0.14,990,6,98,0.7000000000000001 +2020,12,12,22,0,23.900000000000002,1.26,0.11,0.62,0,0,0,3,23.3,0,0,0,0,0.245,96.45,106.79,0.14,990,6,102,0.7000000000000001 +2020,12,12,23,0,23.900000000000002,1.25,0.0966,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.245,96.76,93.01,0.14,991,5.9,267,0.6000000000000001 +2020,12,13,0,0,24.400000000000002,1.27,0.10790000000000001,0.62,54,428,134,4,23.8,52,0,3,52,0.244,96.57000000000001,79.21000000000001,0.14,992,5.9,286,0.8 +2020,12,13,1,0,25.200000000000003,1.26,0.1131,0.62,88,673,364,4,23.6,141,3,0,142,0.245,91.14,65.76,0.14,992,5.9,325,1 +2020,12,13,2,0,25.700000000000003,1.26,0.10690000000000001,0.62,104,796,586,4,23.700000000000003,232,22,0,245,0.244,88.78,52.76,0.14,993,6,315,1.1 +2020,12,13,3,0,26.3,1.23,0.1277,0.62,125,840,761,8,23.700000000000003,374,248,0,562,0.244,85.55,40.800000000000004,0.14,992,6,294,1.1 +2020,12,13,4,0,26.700000000000003,1.23,0.1379,0.62,137,865,878,8,23.700000000000003,358,475,0,765,0.243,83.54,31.14,0.14,992,6,288,1.1 +2020,12,13,5,0,27,1.23,0.1431,0.62,142,873,923,7,23.700000000000003,390,454,0,796,0.242,82.2,26.490000000000002,0.14,991,6.1000000000000005,288,1.1 +2020,12,13,6,0,27,1.22,0.1587,0.62,148,854,893,7,23.8,445,271,0,682,0.242,82.43,29.35,0.14,990,6.1000000000000005,281,1.2000000000000002 +2020,12,13,7,0,26.700000000000003,1.22,0.16920000000000002,0.62,146,818,790,7,23.8,387,287,0,612,0.242,84.08,38.050000000000004,0.14,989,6.1000000000000005,272,1.3 +2020,12,13,8,0,26.3,1.21,0.16670000000000001,0.62,132,762,626,7,23.8,313,159,0,416,0.242,86.26,49.59,0.14,988,6.1000000000000005,266,1.3 +2020,12,13,9,0,25.8,1.23,0.1942,0.62,120,628,411,8,23.900000000000002,165,441,0,370,0.242,89.49,62.39,0.14,989,6.2,259,1.4000000000000001 +2020,12,13,10,0,25.200000000000003,1.24,0.19310000000000002,0.62,81,414,182,6,23.900000000000002,9,0,3,9,0.242,92.45,75.76,0.14,989,6.2,253,1.2000000000000002 +2020,12,13,11,0,24.6,1.26,0.17020000000000002,0.62,0,0,0,6,23.700000000000003,0,0,3,0,0.242,94.56,89.12,0.14,990,6.1000000000000005,251,1.1 +2020,12,13,12,0,24.200000000000003,1.28,0.1626,0.62,0,0,0,6,23.400000000000002,0,0,0,0,0.242,95.28,103.28,0.14,990,6.1000000000000005,251,1.1 +2020,12,13,13,0,23.900000000000002,1.31,0.1482,0.62,0,0,0,8,23.1,0,0,0,0,0.243,95.48,117,0.14,991,6,255,1 +2020,12,13,14,0,23.6,1.33,0.1336,0.62,0,0,0,7,22.900000000000002,0,0,0,0,0.243,95.66,130.45,0.14,991,5.9,260,1 +2020,12,13,15,0,23.3,1.33,0.1318,0.62,0,0,0,7,22.6,0,0,0,0,0.244,96.04,143.22,0.14,991,5.9,266,0.9 +2020,12,13,16,0,23.1,1.34,0.1307,0.62,0,0,0,7,22.5,0,0,0,0,0.245,96.16,154.17000000000002,0.14,991,5.9,271,0.8 +2020,12,13,17,0,23,1.33,0.1269,0.62,0,0,0,7,22.3,0,0,0,0,0.245,95.84,159.97,0.14,990,5.9,277,0.7000000000000001 +2020,12,13,18,0,22.8,1.33,0.1295,0.62,0,0,0,7,22.200000000000003,0,0,0,0,0.246,96.37,156.41,0.14,990,5.9,280,0.7000000000000001 +2020,12,13,19,0,22.8,1.34,0.1291,0.62,0,0,0,7,22.1,0,0,0,0,0.247,95.69,146.35,0.14,989,5.9,285,0.6000000000000001 +2020,12,13,20,0,22.700000000000003,1.34,0.1252,0.62,0,0,0,8,22,0,0,0,0,0.247,95.81,133.89000000000001,0.14,989,5.9,290,0.6000000000000001 +2020,12,13,21,0,22.6,1.35,0.12350000000000001,0.62,0,0,0,4,22,0,0,0,0,0.247,96.15,120.57000000000001,0.14,989,5.9,301,0.5 +2020,12,13,22,0,22.6,1.37,0.1211,0.62,0,0,0,8,22,0,0,0,0,0.247,96.18,106.9,0.14,990,5.800000000000001,314,0.5 +2020,12,13,23,0,22.700000000000003,1.3800000000000001,0.1164,0.62,0,0,0,8,22.1,0,0,0,0,0.246,96.42,93.12,0.14,990,5.800000000000001,325,0.5 +2020,12,14,0,0,23.6,1.4000000000000001,0.1135,0.62,54,422,132,3,22.700000000000003,66,13,3,69,0.246,94.51,79.33,0.14,991,5.800000000000001,341,0.8 +2020,12,14,1,0,24.700000000000003,1.42,0.1125,0.62,87,676,364,4,23.1,176,103,0,218,0.246,90.63,65.88,0.14,991,5.7,8,0.9 +2020,12,14,2,0,26.200000000000003,1.43,0.1115,0.62,106,794,585,8,23.400000000000002,246,406,0,491,0.247,84.56,52.89,0.14,992,5.7,31,1 +2020,12,14,3,0,27.3,1.42,0.10740000000000001,0.62,115,859,764,8,23.6,369,274,0,575,0.247,80.03,40.92,0.14,992,5.800000000000001,29,1 +2020,12,14,4,0,27.700000000000003,1.41,0.10940000000000001,0.62,122,890,883,3,23.6,344,27,0,367,0.247,78.28,31.25,0.14,991,5.800000000000001,21,1 +2020,12,14,5,0,27.8,1.4000000000000001,0.11230000000000001,0.62,126,898,929,8,23.6,469,221,0,667,0.246,78.02,26.560000000000002,0.14,990,5.9,15,1.1 +2020,12,14,6,0,27.8,1.3900000000000001,0.1207,0.62,129,885,901,6,23.700000000000003,78,0,0,78,0.245,78.25,29.35,0.14,990,5.9,4,1.2000000000000002 +2020,12,14,7,0,27.5,1.3900000000000001,0.12100000000000001,0.62,123,859,800,7,23.700000000000003,374,340,0,641,0.244,79.78,38,0.14,989,5.9,352,1.2000000000000002 +2020,12,14,8,0,27.1,1.41,0.1116,0.62,109,814,637,8,23.8,256,458,0,553,0.243,82.16,49.52,0.14,989,5.9,343,1.2000000000000002 +2020,12,14,9,0,26.700000000000003,1.41,0.1188,0.62,95,709,424,6,24,207,135,0,270,0.243,85.25,62.300000000000004,0.14,989,5.800000000000001,342,0.9 +2020,12,14,10,0,26.200000000000003,1.42,0.1194,0.62,66,506,191,6,23.8,58,0,3,58,0.243,86.68,75.67,0.14,990,5.800000000000001,354,0.7000000000000001 +2020,12,14,11,0,25.6,1.44,0.10940000000000001,0.62,0,0,0,9,23.700000000000003,0,0,3,0,0.243,89.05,89.02,0.14,990,5.800000000000001,345,0.5 +2020,12,14,12,0,25.400000000000002,1.44,0.1042,0.62,0,0,0,6,23.3,0,0,0,0,0.244,88.05,103.17,0.14,991,5.800000000000001,345,0.5 +2020,12,14,13,0,25.3,1.45,0.099,0.62,0,0,0,6,23,0,0,0,0,0.243,87.36,116.88,0.14,992,5.800000000000001,3,0.6000000000000001 +2020,12,14,14,0,25.1,1.45,0.0927,0.62,0,0,0,8,22.900000000000002,0,0,0,0,0.243,87.51,130.33,0.14,992,5.800000000000001,23,0.5 +2020,12,14,15,0,24.900000000000002,1.45,0.0897,0.62,0,0,0,3,22.8,0,0,0,0,0.243,88.04,143.1,0.14,992,5.800000000000001,44,0.5 +2020,12,14,16,0,24.6,1.43,0.08700000000000001,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.243,89.27,154.06,0.14,992,5.800000000000001,65,0.6000000000000001 +2020,12,14,17,0,24.200000000000003,1.42,0.0834,0.62,0,0,0,7,22.6,0,0,0,0,0.243,91.01,159.9,0.14,991,5.800000000000001,73,0.6000000000000001 +2020,12,14,18,0,23.900000000000002,1.42,0.0795,0.62,0,0,0,7,22.6,0,0,0,0,0.243,92.43,156.42000000000002,0.14,991,5.800000000000001,73,0.6000000000000001 +2020,12,14,19,0,23.700000000000003,1.41,0.07680000000000001,0.62,0,0,0,6,22.6,0,0,0,0,0.243,93.29,146.41,0.14,990,5.800000000000001,67,0.6000000000000001 +2020,12,14,20,0,23.6,1.4000000000000001,0.0747,0.62,0,0,0,7,22.5,0,0,0,0,0.243,93.84,133.98,0.14,990,5.800000000000001,51,0.6000000000000001 +2020,12,14,21,0,23.6,1.4000000000000001,0.0731,0.62,0,0,0,7,22.5,0,0,0,0,0.243,93.81,120.66,0.14,990,5.800000000000001,31,0.6000000000000001 +2020,12,14,22,0,23.6,1.41,0.07010000000000001,0.62,0,0,0,6,22.5,0,0,0,0,0.243,93.62,107,0.14,991,5.800000000000001,14,0.6000000000000001 +2020,12,14,23,0,23.6,1.43,0.0663,0.62,0,0,0,6,22.6,0,0,0,0,0.243,94.35000000000001,93.24,0.14,991,5.7,8,0.5 +2020,12,15,0,0,24.8,1.44,0.0637,0.62,46,493,136,6,23.5,36,0,3,36,0.243,92.57000000000001,79.44,0.15,992,5.7,12,0.9 +2020,12,15,1,0,26.5,1.47,0.060000000000000005,0.62,70,739,370,7,23.900000000000002,176,140,0,233,0.243,85.63,66,0.15,993,5.6000000000000005,21,1.3 +2020,12,15,2,0,27.8,1.48,0.0603,0.62,84,846,593,3,23.5,246,401,0,488,0.244,77.37,53.01,0.15,993,5.5,25,1.5 +2020,12,15,3,0,28.6,1.42,0.06670000000000001,0.62,97,896,772,7,23.6,379,158,0,499,0.244,74.33,41.04,0.15,992,5.5,28,1.6 +2020,12,15,4,0,29.200000000000003,1.41,0.068,0.62,103,924,892,8,23.8,415,72,0,476,0.245,72.69,31.36,0.15,992,5.5,32,1.5 +2020,12,15,5,0,29.400000000000002,1.41,0.0693,0.62,105,934,940,8,23.900000000000002,469,218,0,664,0.245,72.25,26.62,0.15,991,5.5,36,1.5 +2020,12,15,6,0,29.5,1.24,0.1119,0.62,127,893,905,8,23.900000000000002,331,22,0,350,0.245,72.03,29.35,0.15,990,5.5,38,1.5 +2020,12,15,7,0,29.400000000000002,1.23,0.1115,0.62,121,868,805,7,24,340,39,0,370,0.244,72.61,37.95,0.15,989,5.5,37,1.5 +2020,12,15,8,0,29,1.24,0.108,0.62,109,818,640,4,24,312,124,0,393,0.243,74.58,49.44,0.15,989,5.6000000000000005,39,1.4000000000000001 +2020,12,15,9,0,28.6,1.28,0.11470000000000001,0.62,94,714,427,3,24.5,199,263,0,321,0.243,78.46000000000001,62.21,0.15,989,5.6000000000000005,40,1.3 +2020,12,15,10,0,27.700000000000003,1.3,0.11610000000000001,0.62,66,511,194,8,24.6,98,127,3,130,0.244,83.25,75.57000000000001,0.15,990,5.6000000000000005,40,1.1 +2020,12,15,11,0,26.5,1.31,0.11030000000000001,0.62,10,50,11,6,24.700000000000003,5,0,3,5,0.244,89.76,88.93,0.15,990,5.6000000000000005,40,0.7000000000000001 +2020,12,15,12,0,26.1,1.31,0.10840000000000001,0.62,0,0,0,6,24.3,0,0,0,0,0.245,89.92,103.06,0.15,992,5.6000000000000005,41,0.7000000000000001 +2020,12,15,13,0,25.8,1.33,0.10300000000000001,0.62,0,0,0,8,24.1,0,0,0,0,0.246,90.49,116.76,0.15,993,5.7,40,0.7000000000000001 +2020,12,15,14,0,25.5,1.33,0.098,0.62,0,0,0,4,23.900000000000002,0,0,0,0,0.247,90.96000000000001,130.21,0.15,993,5.7,36,0.7000000000000001 +2020,12,15,15,0,25.3,1.35,0.09340000000000001,0.62,0,0,0,0,23.8,0,0,0,0,0.247,91.34,142.98,0.15,993,5.7,34,0.7000000000000001 +2020,12,15,16,0,24.900000000000002,1.36,0.0896,0.62,0,0,0,3,23.700000000000003,0,0,0,0,0.248,93.15,153.95000000000002,0.15,993,5.7,30,0.7000000000000001 +2020,12,15,17,0,24.6,1.37,0.0863,0.62,0,0,0,8,23.6,0,0,0,0,0.248,94.15,159.84,0.15,992,5.7,27,0.7000000000000001 +2020,12,15,18,0,24.400000000000002,1.37,0.0854,0.62,0,0,0,8,23.5,0,0,0,0,0.248,94.82000000000001,156.44,0.15,992,5.7,25,0.6000000000000001 +2020,12,15,19,0,24.1,1.3800000000000001,0.0855,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.248,95.69,146.48,0.15,991,5.7,23,0.6000000000000001 +2020,12,15,20,0,23.900000000000002,1.3800000000000001,0.08460000000000001,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.247,95.91,134.07,0.15,991,5.6000000000000005,18,0.6000000000000001 +2020,12,15,21,0,23.6,1.4000000000000001,0.0843,0.62,0,0,0,7,23,0,0,0,0,0.247,96.29,120.77,0.15,991,5.6000000000000005,12,0.6000000000000001 +2020,12,15,22,0,23.5,1.42,0.0834,0.62,0,0,0,7,22.8,0,0,0,0,0.246,95.65,107.11,0.15,992,5.6000000000000005,7,0.7000000000000001 +2020,12,15,23,0,23.5,1.43,0.081,0.62,0,0,0,7,22.900000000000002,0,0,0,0,0.246,96.19,93.35000000000001,0.15,992,5.5,8,0.6000000000000001 +2020,12,16,0,0,24.900000000000002,1.45,0.0796,0.62,48,466,132,7,23.8,67,153,3,95,0.247,93.60000000000001,79.56,0.15,993,5.5,11,0.9 +2020,12,16,1,0,26.5,1.45,0.0791,0.62,76,714,365,7,23.900000000000002,153,350,0,295,0.248,85.65,66.12,0.15,994,5.5,25,1.1 +2020,12,16,2,0,27.3,1.44,0.0809,0.62,93,824,587,7,23.400000000000002,256,356,0,470,0.249,79.46000000000001,53.13,0.15,994,5.5,38,1.2000000000000002 +2020,12,16,3,0,28,1.3,0.11710000000000001,0.62,121,850,761,7,23.400000000000002,357,318,0,597,0.25,75.89,41.160000000000004,0.15,993,5.6000000000000005,49,1 +2020,12,16,4,0,28.400000000000002,1.29,0.12140000000000001,0.62,130,880,880,7,23.400000000000002,434,263,0,658,0.25,74.28,31.46,0.15,993,5.6000000000000005,59,0.9 +2020,12,16,5,0,28.6,1.29,0.1254,0.62,134,888,928,8,23.400000000000002,447,321,0,733,0.25,73.57000000000001,26.68,0.15,992,5.7,63,0.9 +2020,12,16,6,0,28.5,1.29,0.1434,0.62,142,869,899,8,23.400000000000002,449,256,0,671,0.248,74.08,29.34,0.15,991,5.7,64,0.8 +2020,12,16,7,0,28.3,1.31,0.1491,0.62,138,837,798,6,23.5,316,28,0,338,0.247,75.35000000000001,37.9,0.15,990,5.800000000000001,65,0.8 +2020,12,16,8,0,28.1,1.32,0.1496,0.62,126,781,635,3,23.8,270,419,0,542,0.246,77.59,49.36,0.15,989,5.800000000000001,70,0.8 +2020,12,16,9,0,27.700000000000003,1.34,0.166,0.62,112,662,421,6,24.1,181,26,0,193,0.246,80.98,62.120000000000005,0.15,990,5.800000000000001,64,0.6000000000000001 +2020,12,16,10,0,26.700000000000003,1.35,0.1726,0.62,78,448,190,7,24,93,18,3,97,0.246,85.39,75.46000000000001,0.15,990,5.800000000000001,55,0.6000000000000001 +2020,12,16,11,0,25.8,1.35,0.1656,0.62,10,33,10,6,24.200000000000003,4,0,3,4,0.247,90.95,88.83,0.15,991,5.800000000000001,42,0.4 +2020,12,16,12,0,25.400000000000002,1.37,0.1641,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.247,91.41,102.94,0.15,992,5.800000000000001,35,0.4 +2020,12,16,13,0,25,1.3800000000000001,0.1516,0.62,0,0,0,7,23.6,0,0,0,0,0.248,91.95,116.65,0.15,993,5.800000000000001,32,0.5 +2020,12,16,14,0,24.5,1.4000000000000001,0.1315,0.62,0,0,0,6,23.5,0,0,0,0,0.248,93.89,130.09,0.15,993,5.7,30,0.6000000000000001 +2020,12,16,15,0,24.200000000000003,1.41,0.1187,0.62,0,0,0,7,23.3,0,0,0,0,0.248,94.49,142.86,0.15,993,5.7,28,0.6000000000000001 +2020,12,16,16,0,23.900000000000002,1.41,0.1086,0.62,0,0,0,7,23.1,0,0,0,0,0.249,95.19,153.84,0.15,993,5.6000000000000005,26,0.6000000000000001 +2020,12,16,17,0,23.6,1.41,0.0999,0.62,0,0,0,6,22.900000000000002,0,0,0,0,0.249,95.91,159.78,0.15,992,5.5,21,0.7000000000000001 +2020,12,16,18,0,23.400000000000002,1.41,0.09390000000000001,0.62,0,0,0,6,22.8,0,0,0,0,0.249,96.17,156.47,0.15,991,5.5,14,0.7000000000000001 +2020,12,16,19,0,23.200000000000003,1.41,0.0888,0.62,0,0,0,7,22.6,0,0,0,0,0.249,96.31,146.56,0.15,990,5.4,5,0.7000000000000001 +2020,12,16,20,0,23,1.41,0.08460000000000001,0.62,0,0,0,7,22.400000000000002,0,0,0,0,0.249,96.45,134.16,0.15,990,5.4,355,0.7000000000000001 +2020,12,16,21,0,22.900000000000002,1.4000000000000001,0.0816,0.62,0,0,0,7,22.200000000000003,0,0,0,0,0.249,96.10000000000001,120.87,0.15,990,5.4,348,0.7000000000000001 +2020,12,16,22,0,22.8,1.3900000000000001,0.079,0.62,0,0,0,8,22.1,0,0,0,0,0.249,95.88,107.22,0.15,991,5.4,346,0.7000000000000001 +2020,12,16,23,0,22.900000000000002,1.3800000000000001,0.0772,0.62,0,0,0,7,22.200000000000003,0,0,0,0,0.249,96.01,93.46000000000001,0.15,991,5.4,346,0.8 +2020,12,17,0,0,23.900000000000002,1.37,0.07730000000000001,0.62,48,465,131,6,22.8,59,0,3,59,0.25,93.71000000000001,79.67,0.15,992,5.4,350,1.4000000000000001 +2020,12,17,1,0,25,1.35,0.07690000000000001,0.62,76,714,364,6,23,86,0,0,86,0.251,88.7,66.24,0.15,993,5.5,0,1.7000000000000002 +2020,12,17,2,0,26.3,1.31,0.07980000000000001,0.62,94,823,586,7,22.900000000000002,281,208,0,405,0.251,81.77,53.25,0.15,993,5.5,15,1.9000000000000001 +2020,12,17,3,0,27.200000000000003,1.26,0.0845,0.62,106,878,766,6,23.200000000000003,364,90,0,432,0.251,79.01,41.27,0.15,992,5.6000000000000005,22,2 +2020,12,17,4,0,27.900000000000002,1.23,0.08660000000000001,0.62,113,907,886,7,23.6,355,32,0,382,0.25,77.55,31.55,0.15,992,5.6000000000000005,25,2 +2020,12,17,5,0,28.400000000000002,1.21,0.0878,0.62,116,917,935,7,23.8,400,42,0,438,0.248,76.23,26.72,0.15,991,5.7,27,2 +2020,12,17,6,0,28.5,1.19,0.09340000000000001,0.62,118,906,908,7,23.900000000000002,405,52,0,451,0.246,76.15,29.32,0.15,990,5.800000000000001,31,1.9000000000000001 +2020,12,17,7,0,28.200000000000003,1.17,0.0988,0.62,116,876,807,7,24,400,130,0,503,0.245,77.99,37.84,0.15,989,5.9,33,1.7000000000000002 +2020,12,17,8,0,27.700000000000003,1.1500000000000001,0.1012,0.62,107,822,644,7,24.3,302,78,0,353,0.243,81.92,49.28,0.15,989,6,37,1.5 +2020,12,17,9,0,27.1,1.1500000000000001,0.1174,0.62,97,708,429,7,24.6,177,19,0,186,0.243,86.42,62.02,0.15,989,6.1000000000000005,40,1.3 +2020,12,17,10,0,26.3,1.1400000000000001,0.1189,0.62,69,505,196,6,24.5,77,0,3,77,0.243,89.8,75.36,0.15,990,6.1000000000000005,43,1.1 +2020,12,17,11,0,25.5,1.12,0.11120000000000001,0.62,11,49,12,6,24.5,4,0,3,4,0.244,94.35000000000001,88.73,0.15,990,6.1000000000000005,51,0.7000000000000001 +2020,12,17,12,0,25.1,1.12,0.1097,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.245,95.74000000000001,102.83,0.15,991,6.1000000000000005,55,0.7000000000000001 +2020,12,17,13,0,24.900000000000002,1.11,0.10400000000000001,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.247,96.14,116.53,0.15,992,6.1000000000000005,57,0.7000000000000001 +2020,12,17,14,0,24.6,1.08,0.0974,0.62,0,0,0,7,24.1,0,0,0,0,0.248,97.01,129.97,0.15,992,6.1000000000000005,54,0.7000000000000001 +2020,12,17,15,0,24.400000000000002,1.05,0.0965,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.248,97.22,142.74,0.15,992,6,46,0.7000000000000001 +2020,12,17,16,0,24.1,1.05,0.093,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.248,97.67,153.74,0.15,992,5.9,36,0.7000000000000001 +2020,12,17,17,0,23.900000000000002,1.03,0.09050000000000001,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.248,97.15,159.74,0.15,991,5.800000000000001,26,0.6000000000000001 +2020,12,17,18,0,23.6,1,0.0925,0.62,0,0,0,7,23.1,0,0,0,0,0.248,97.26,156.51,0.15,991,5.7,18,0.7000000000000001 +2020,12,17,19,0,23.400000000000002,0.97,0.0947,0.62,0,0,0,8,22.900000000000002,0,0,0,0,0.247,96.81,146.63,0.15,990,5.5,12,0.7000000000000001 +2020,12,17,20,0,23.200000000000003,0.9500000000000001,0.09580000000000001,0.62,0,0,0,7,22.6,0,0,0,0,0.246,96.42,134.26,0.15,990,5.4,10,0.7000000000000001 +2020,12,17,21,0,23,0.93,0.0975,0.62,0,0,0,7,22.400000000000002,0,0,0,0,0.246,96.23,120.97,0.15,990,5.300000000000001,7,0.7000000000000001 +2020,12,17,22,0,22.8,0.93,0.09770000000000001,0.62,0,0,0,7,22.1,0,0,1,0,0.245,95.92,107.33,0.15,990,5.2,4,0.7000000000000001 +2020,12,17,23,0,23,0.9400000000000001,0.0952,0.62,0,0,0,7,22.3,0,0,0,0,0.245,95.57000000000001,93.58,0.15,991,5.2,0,0.7000000000000001 +2020,12,18,0,0,24.3,0.9500000000000001,0.0907,0.62,51,429,127,6,23.200000000000003,50,0,3,50,0.245,93.35000000000001,79.79,0.14,992,5.2,1,1.2000000000000002 +2020,12,18,1,0,25.700000000000003,0.99,0.0857,0.62,80,699,360,7,23.1,172,106,0,215,0.245,85.77,66.35,0.14,992,5.2,17,1.5 +2020,12,18,2,0,26.6,1.03,0.0828,0.62,96,819,585,6,22.900000000000002,209,12,0,216,0.245,80.07000000000001,53.36,0.14,993,5.2,31,1.6 +2020,12,18,3,0,27.3,1.06,0.08020000000000001,0.62,105,882,766,6,23,254,14,0,265,0.245,77.18,41.38,0.14,993,5.300000000000001,33,1.6 +2020,12,18,4,0,27.700000000000003,1.09,0.0762,0.62,108,917,889,6,23,342,27,0,365,0.244,75.73,31.64,0.14,992,5.300000000000001,30,1.7000000000000002 +2020,12,18,5,0,27.900000000000002,1.1,0.07390000000000001,0.62,109,930,940,6,23.1,224,11,0,233,0.243,75.29,26.76,0.14,991,5.300000000000001,25,1.8 +2020,12,18,6,0,27.900000000000002,1.12,0.0728,0.62,107,925,914,6,23.200000000000003,161,4,0,164,0.243,75.63,29.29,0.14,990,5.4,23,1.8 +2020,12,18,7,0,27.700000000000003,1.1400000000000001,0.0714,0.62,102,902,815,6,23.200000000000003,70,0,0,70,0.242,76.66,37.77,0.14,989,5.5,22,1.8 +2020,12,18,8,0,27.3,1.17,0.0689,0.62,93,858,653,6,23.400000000000002,73,0,0,73,0.241,79.3,49.19,0.14,989,5.5,22,1.7000000000000002 +2020,12,18,9,0,26.8,1.21,0.0693,0.62,80,768,441,6,23.700000000000003,106,0,0,106,0.241,83.13,61.92,0.14,989,5.6000000000000005,21,1.6 +2020,12,18,10,0,25.900000000000002,1.23,0.0678,0.62,57,585,206,6,23.700000000000003,24,0,1,24,0.241,87.62,75.25,0.14,990,5.6000000000000005,21,1.2000000000000002 +2020,12,18,11,0,25,1.26,0.061900000000000004,0.62,12,106,14,6,23.700000000000003,3,0,3,3,0.242,92.66,88.63,0.14,991,5.6000000000000005,22,0.8 +2020,12,18,12,0,24.6,1.28,0.057600000000000005,0.62,0,0,0,6,23.5,0,0,0,0,0.243,93.78,102.72,0.14,992,5.7,21,0.7000000000000001 +2020,12,18,13,0,24.3,1.3,0.054400000000000004,0.62,0,0,0,6,23.3,0,0,0,0,0.244,94.44,116.41,0.14,992,5.7,18,0.8 +2020,12,18,14,0,24.1,1.3,0.052500000000000005,0.62,0,0,0,6,23.200000000000003,0,0,0,0,0.245,94.78,129.86,0.14,992,5.7,16,0.8 +2020,12,18,15,0,23.900000000000002,1.3,0.0514,0.62,0,0,0,6,23.1,0,0,0,0,0.245,95.29,142.63,0.14,992,5.7,13,0.9 +2020,12,18,16,0,23.700000000000003,1.28,0.0506,0.62,0,0,0,6,23,0,0,0,0,0.245,95.84,153.64000000000001,0.14,992,5.800000000000001,11,0.8 +2020,12,18,17,0,23.700000000000003,1.25,0.050800000000000005,0.62,0,0,0,6,22.900000000000002,0,0,0,0,0.245,95.25,159.70000000000002,0.14,991,5.800000000000001,8,0.7000000000000001 +2020,12,18,18,0,23.700000000000003,1.22,0.053500000000000006,0.62,0,0,0,6,22.8,0,0,0,0,0.244,94.93,156.55,0.14,991,6,355,0.6000000000000001 +2020,12,18,19,0,23.6,1.18,0.0572,0.62,0,0,0,6,22.8,0,0,0,0,0.244,95.12,146.71,0.14,990,6.1000000000000005,349,0.6000000000000001 +2020,12,18,20,0,23.5,1.1300000000000001,0.059800000000000006,0.62,0,0,0,6,22.700000000000003,0,0,0,0,0.243,95.52,134.36,0.14,990,6.2,359,0.7000000000000001 +2020,12,18,21,0,23.3,1.11,0.0703,0.62,0,0,0,6,22.8,0,0,0,0,0.243,96.8,121.08,0.14,990,6.1000000000000005,2,0.8 +2020,12,18,22,0,23.200000000000003,1.11,0.0736,0.62,0,0,0,6,22.700000000000003,0,0,0,0,0.243,97.21000000000001,107.44,0.14,991,6,8,0.9 +2020,12,18,23,0,23.200000000000003,1.1500000000000001,0.0699,0.62,0,0,0,6,22.8,0,0,0,0,0.242,97.43,93.69,0.14,992,5.9,14,0.9 +2020,12,19,0,0,23.8,1.21,0.065,0.62,45,474,128,7,23.1,59,0,3,59,0.242,96.08,79.9,0.15,993,5.7,16,1.2000000000000002 +2020,12,19,1,0,24.3,1.25,0.0603,0.62,70,732,362,7,23.1,105,0,0,105,0.243,93.14,66.47,0.15,993,5.6000000000000005,29,1.5 +2020,12,19,2,0,24.900000000000002,1.25,0.0574,0.62,84,845,587,7,23.1,213,14,0,221,0.243,89.71000000000001,53.480000000000004,0.15,994,5.5,37,1.6 +2020,12,19,3,0,25.6,1.25,0.0557,0.62,92,904,769,7,23,341,56,0,384,0.243,85.4,41.49,0.15,993,5.5,41,1.6 +2020,12,19,4,0,26.400000000000002,1.24,0.055600000000000004,0.62,97,933,891,7,22.900000000000002,417,77,0,482,0.242,81.28,31.73,0.15,993,5.6000000000000005,43,1.6 +2020,12,19,5,0,27,1.23,0.056,0.62,99,943,941,6,23,422,56,0,472,0.241,78.60000000000001,26.8,0.15,992,5.7,44,1.5 +2020,12,19,6,0,27.5,1.23,0.0572,0.62,99,937,916,7,23,419,64,0,474,0.24,76.36,29.26,0.15,991,5.7,46,1.3 +2020,12,19,7,0,27.900000000000002,1.24,0.058,0.62,95,913,818,6,23,302,23,0,320,0.23900000000000002,74.71000000000001,37.7,0.15,990,5.800000000000001,52,1.2000000000000002 +2020,12,19,8,0,27.900000000000002,1.25,0.0563,0.62,87,870,656,7,23,316,129,0,400,0.23800000000000002,74.88,49.1,0.15,989,5.800000000000001,58,1.1 +2020,12,19,9,0,27.6,1.26,0.0613,0.62,77,778,444,7,23.5,196,49,0,219,0.23700000000000002,78.53,61.82,0.15,989,5.800000000000001,60,1 +2020,12,19,10,0,26.8,1.27,0.0637,0.62,56,593,208,8,23.700000000000003,71,0,3,71,0.23700000000000002,83.22,75.15,0.15,990,5.800000000000001,58,0.9 +2020,12,19,11,0,25.8,1.25,0.0635,0.62,12,109,15,7,23.700000000000003,5,0,3,5,0.23800000000000002,88.35000000000001,88.53,0.15,991,5.800000000000001,60,0.6000000000000001 +2020,12,19,12,0,25.5,1.24,0.0659,0.62,0,0,0,8,23.5,0,0,0,0,0.23800000000000002,88.56,102.60000000000001,0.15,992,5.800000000000001,57,0.6000000000000001 +2020,12,19,13,0,25.200000000000003,1.24,0.0668,0.62,0,0,0,7,23.3,0,0,0,0,0.23800000000000002,89.46000000000001,116.3,0.15,993,5.800000000000001,52,0.6000000000000001 +2020,12,19,14,0,25,1.23,0.06770000000000001,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.23900000000000002,89.73,129.74,0.15,993,5.800000000000001,41,0.6000000000000001 +2020,12,19,15,0,24.8,1.24,0.07440000000000001,0.62,0,0,0,7,23.1,0,0,0,0,0.23900000000000002,90.16,142.52,0.15,993,5.800000000000001,28,0.6000000000000001 +2020,12,19,16,0,24.6,1.25,0.081,0.62,0,0,0,7,23,0,0,0,0,0.24,90.68,153.55,0.15,993,5.800000000000001,16,0.6000000000000001 +2020,12,19,17,0,24.3,1.26,0.08310000000000001,0.62,0,0,0,7,22.900000000000002,0,0,0,0,0.24,91.77,159.67000000000002,0.15,992,5.800000000000001,4,0.6000000000000001 +2020,12,19,18,0,24,1.26,0.10310000000000001,0.62,0,0,0,7,22.8,0,0,0,0,0.24,93.02,156.59,0.15,992,5.800000000000001,3,0.6000000000000001 +2020,12,19,19,0,23.700000000000003,1.26,0.1135,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.24,94.02,146.8,0.15,991,5.800000000000001,4,0.6000000000000001 +2020,12,19,20,0,23.400000000000002,1.27,0.1039,0.62,0,0,0,7,22.6,0,0,0,0,0.24,95.31,134.46,0.15,991,5.800000000000001,3,0.6000000000000001 +2020,12,19,21,0,23.200000000000003,1.29,0.10880000000000001,0.62,0,0,0,7,22.5,0,0,0,0,0.24,95.8,121.19,0.15,991,5.800000000000001,5,0.6000000000000001 +2020,12,19,22,0,23,1.31,0.1032,0.62,0,0,0,6,22.400000000000002,0,0,0,0,0.24,96.49000000000001,107.55,0.15,992,5.800000000000001,10,0.7000000000000001 +2020,12,19,23,0,23.1,1.32,0.0902,0.62,0,0,0,6,22.6,0,0,0,0,0.23900000000000002,96.82000000000001,93.8,0.15,993,5.800000000000001,15,0.8 +2020,12,20,0,0,24,1.32,0.08170000000000001,0.62,47,446,125,6,23.200000000000003,22,0,3,22,0.24,95.06,80.02,0.15,993,5.7,20,1.5 +2020,12,20,1,0,24.700000000000003,1.31,0.0732,0.62,74,714,358,6,23.5,51,0,0,51,0.241,93,66.58,0.15,994,5.7,25,2 +2020,12,20,2,0,25.6,1.27,0.0674,0.62,88,833,583,6,23.700000000000003,228,23,0,241,0.241,89.02,53.59,0.15,994,5.7,32,2.2 +2020,12,20,3,0,26.6,1.18,0.0668,0.62,98,891,764,6,23.6,295,26,0,315,0.241,83.60000000000001,41.59,0.15,993,5.800000000000001,39,2.3000000000000003 +2020,12,20,4,0,27.3,1.12,0.0688,0.62,104,919,886,6,23.6,274,15,0,287,0.241,80.37,31.8,0.15,992,5.9,41,2.4000000000000004 +2020,12,20,5,0,27.8,1.05,0.0761,0.62,111,924,935,6,23.8,419,54,0,467,0.241,78.95,26.82,0.15,991,6,41,2.5 +2020,12,20,6,0,27.700000000000003,0.99,0.0897,0.62,117,907,909,6,24,318,20,0,335,0.241,80.11,29.22,0.15,990,6,41,2.5 +2020,12,20,7,0,27.400000000000002,0.93,0.1004,0.62,118,873,809,6,24.1,293,20,0,309,0.241,82.3,37.62,0.15,990,6,43,2.3000000000000003 +2020,12,20,8,0,27.1,0.89,0.1041,0.62,110,818,647,6,24.3,174,2,0,176,0.241,84.51,49,0.15,989,6,46,2 +2020,12,20,9,0,26.6,0.89,0.108,0.62,95,717,435,6,24.400000000000002,197,49,0,220,0.241,87.89,61.72,0.15,990,6,48,1.6 +2020,12,20,10,0,26,0.9,0.1034,0.62,67,526,203,6,24.5,98,30,3,106,0.241,91.47,75.04,0.15,990,6,49,1.1 +2020,12,20,11,0,25.1,0.93,0.09570000000000001,0.62,13,65,14,6,24.3,7,0,3,7,0.241,95.45,88.42,0.15,991,6,54,0.7000000000000001 +2020,12,20,12,0,24.8,0.96,0.092,0.62,0,0,0,7,24.1,0,0,0,0,0.241,96.04,102.49000000000001,0.15,992,6,52,0.7000000000000001 +2020,12,20,13,0,24.6,1,0.0888,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.241,96.01,116.19,0.15,992,5.9,49,0.7000000000000001 +2020,12,20,14,0,24.3,1.04,0.0847,0.62,0,0,0,7,23.700000000000003,0,0,0,0,0.241,96.47,129.63,0.15,993,5.9,44,0.7000000000000001 +2020,12,20,15,0,24,1.09,0.08,0.62,0,0,0,7,23.400000000000002,0,0,0,0,0.242,96.64,142.42000000000002,0.15,992,5.800000000000001,38,0.7000000000000001 +2020,12,20,16,0,23.8,1.12,0.0782,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.243,96.38,153.47,0.15,992,5.800000000000001,34,0.7000000000000001 +2020,12,20,17,0,23.6,1.1300000000000001,0.0776,0.62,0,0,0,8,23,0,0,0,0,0.243,96.3,159.64000000000001,0.15,992,5.7,30,0.7000000000000001 +2020,12,20,18,0,23.400000000000002,1.1300000000000001,0.0795,0.62,0,0,0,8,22.8,0,0,0,0,0.243,96.31,156.65,0.15,991,5.7,25,0.7000000000000001 +2020,12,20,19,0,23.3,1.1300000000000001,0.08170000000000001,0.62,0,0,0,8,22.6,0,0,0,0,0.243,95.9,146.89000000000001,0.15,991,5.7,19,0.7000000000000001 +2020,12,20,20,0,23.1,1.1300000000000001,0.0823,0.62,0,0,0,8,22.400000000000002,0,0,0,0,0.243,95.93,134.56,0.15,990,5.7,12,0.7000000000000001 +2020,12,20,21,0,23,1.1500000000000001,0.0819,0.62,0,0,0,4,22.3,0,0,0,0,0.243,95.66,121.3,0.15,991,5.7,5,0.6000000000000001 +2020,12,20,22,0,22.900000000000002,1.16,0.08170000000000001,0.62,0,0,0,1,22.1,0,0,0,0,0.243,95.36,107.67,0.15,991,5.6000000000000005,1,0.6000000000000001 +2020,12,20,23,0,23.1,1.17,0.0806,0.62,0,0,0,0,22.3,0,0,0,0,0.243,95.2,93.92,0.15,991,5.6000000000000005,357,0.6000000000000001 +2020,12,21,0,0,24.6,1.19,0.078,0.62,45,445,122,3,23.200000000000003,27,0,3,27,0.243,92.09,80.13,0.15,992,5.6000000000000005,358,1.1 +2020,12,21,1,0,26,1.21,0.0756,0.62,73,709,354,0,23.3,73,709,0,354,0.242,85.18,66.69,0.15,992,5.6000000000000005,9,1.5 +2020,12,21,2,0,27,1.23,0.07400000000000001,0.62,89,826,578,2,23.1,171,1,3,172,0.243,79.34,53.69,0.15,992,5.6000000000000005,16,1.4000000000000001 +2020,12,21,3,0,28,1.24,0.07440000000000001,0.62,99,886,760,3,23.200000000000003,325,43,0,357,0.243,75.12,41.69,0.15,992,5.6000000000000005,20,1.3 +2020,12,21,4,0,28.700000000000003,1.25,0.0772,0.62,106,914,882,3,23.3,429,279,0,666,0.243,72.76,31.87,0.15,991,5.7,25,1.2000000000000002 +2020,12,21,5,0,29.1,1.25,0.07980000000000001,0.62,110,924,934,7,23.400000000000002,378,33,0,407,0.242,71.27,26.84,0.15,990,5.7,31,1 +2020,12,21,6,0,29.5,1.27,0.0858,0.62,111,914,909,7,23.400000000000002,450,115,0,551,0.242,69.95,29.18,0.15,989,5.800000000000001,39,0.9 +2020,12,21,7,0,29.5,1.28,0.09190000000000001,0.62,110,885,812,3,23.400000000000002,365,382,0,667,0.241,69.8,37.54,0.15,988,5.800000000000001,60,0.7000000000000001 +2020,12,21,8,0,28.900000000000002,1.29,0.093,0.62,101,836,651,3,23.6,174,2,0,176,0.24,73.07000000000001,48.910000000000004,0.15,988,5.800000000000001,117,0.8 +2020,12,21,9,0,28.1,1.3,0.11520000000000001,0.62,95,719,437,7,24.200000000000003,213,162,0,290,0.24,79.25,61.61,0.15,988,5.9,156,0.9 +2020,12,21,10,0,27.400000000000002,1.31,0.1278,0.62,71,509,203,3,24.1,101,192,3,151,0.24,82.15,74.93,0.15,989,5.9,153,0.7000000000000001 +2020,12,21,11,0,26.400000000000002,1.31,0.12940000000000002,0.62,13,63,14,3,24.5,8,0,3,8,0.241,89.55,88.32000000000001,0.15,990,6,158,0.5 +2020,12,21,12,0,26.1,1.31,0.1444,0.62,0,0,0,3,24.400000000000002,0,0,0,0,0.242,90.33,102.37,0.15,991,6,143,0.4 +2020,12,21,13,0,25.900000000000002,1.3,0.1496,0.62,0,0,0,3,24,0,0,0,0,0.243,89.32000000000001,116.07000000000001,0.15,991,6,112,0.30000000000000004 +2020,12,21,14,0,25.6,1.28,0.1459,0.62,0,0,0,4,23.900000000000002,0,0,0,0,0.244,90.31,129.52,0.15,991,6,90,0.4 +2020,12,21,15,0,25.3,1.25,0.154,0.62,0,0,0,4,23.8,0,0,0,0,0.245,91.38,142.31,0.15,991,5.9,66,0.4 +2020,12,21,16,0,25,1.22,0.1615,0.62,0,0,0,4,23.700000000000003,0,0,0,0,0.245,92.59,153.39000000000001,0.15,991,5.9,42,0.4 +2020,12,21,17,0,24.8,1.18,0.15910000000000002,0.62,0,0,0,3,23.6,0,0,0,0,0.245,93.14,159.62,0.15,990,5.9,27,0.5 +2020,12,21,18,0,24.5,1.17,0.1889,0.62,0,0,0,3,23.5,0,0,0,0,0.245,94.07000000000001,156.70000000000002,0.15,990,5.800000000000001,19,0.7000000000000001 +2020,12,21,19,0,24.200000000000003,1.1500000000000001,0.2,0.62,0,0,0,0,23.400000000000002,0,0,0,0,0.244,95.02,146.99,0.15,989,5.800000000000001,12,0.8 +2020,12,21,20,0,24,1.1400000000000001,0.18380000000000002,0.62,0,0,0,0,23.3,0,0,0,0,0.244,95.62,134.67000000000002,0.15,989,5.800000000000001,5,0.8 +2020,12,21,21,0,23.8,1.1500000000000001,0.2063,0.62,0,0,0,0,23.200000000000003,0,0,0,0,0.243,96.35000000000001,121.41,0.15,989,5.7,359,0.8 +2020,12,21,22,0,23.700000000000003,1.17,0.2111,0.62,0,0,0,0,23.1,0,0,0,0,0.243,96.63,107.78,0.15,990,5.7,358,0.8 +2020,12,21,23,0,23.700000000000003,1.19,0.189,0.62,0,0,0,3,23.1,0,0,0,0,0.243,96.69,94.03,0.15,990,5.6000000000000005,360,0.8 +2020,12,22,0,0,24.400000000000002,1.2,0.1807,0.62,57,311,110,8,23.200000000000003,63,138,3,86,0.243,93.26,80.24,0.15,991,5.5,4,1.3 +2020,12,22,1,0,25,1.22,0.1653,0.62,98,605,336,7,23.1,146,366,0,290,0.243,89.10000000000001,66.8,0.15,991,5.5,6,1.8 +2020,12,22,2,0,25.8,1.23,0.1491,0.62,116,753,561,7,22.900000000000002,232,434,0,488,0.243,83.88,53.800000000000004,0.15,992,5.4,8,2 +2020,12,22,3,0,26.6,1.11,0.2696,0.62,185,729,729,7,22.6,345,350,0,606,0.243,78.79,41.78,0.15,991,5.4,13,1.9000000000000001 +2020,12,22,4,0,27.3,1.11,0.24700000000000003,0.62,186,786,853,7,22.6,432,263,0,655,0.244,75.35000000000001,31.94,0.15,991,5.5,13,1.7000000000000002 +2020,12,22,5,0,28,1.1,0.2306,0.62,183,813,908,7,22.6,437,359,0,757,0.245,72.63,26.85,0.15,990,5.5,5,1.4000000000000001 +2020,12,22,6,0,28.5,1.03,0.24380000000000002,0.62,190,796,885,3,22.8,426,348,0,730,0.245,71.17,29.13,0.15,989,5.5,350,1.2000000000000002 +2020,12,22,7,0,28.6,1.02,0.254,0.62,186,758,787,7,22.900000000000002,366,388,0,673,0.246,71.27,37.45,0.15,988,5.5,334,1.1 +2020,12,22,8,0,28.5,1.02,0.25680000000000003,0.62,170,693,627,3,23,320,161,0,426,0.246,72.21000000000001,48.800000000000004,0.15,988,5.5,323,1.1 +2020,12,22,9,0,28.200000000000003,1.04,0.2654,0.62,145,573,419,3,23.400000000000002,124,0,0,124,0.246,75.25,61.5,0.15,988,5.5,327,0.9 +2020,12,22,10,0,27.700000000000003,1.04,0.2716,0.62,99,354,191,8,23.700000000000003,103,66,3,121,0.246,78.82000000000001,74.81,0.15,989,5.6000000000000005,327,0.7000000000000001 +2020,12,22,11,0,26.900000000000002,1.05,0.26230000000000003,0.62,11,16,12,8,23.6,9,0,3,9,0.245,82.42,88.22,0.15,989,5.5,294,0.5 +2020,12,22,12,0,26.6,1.07,0.25070000000000003,0.62,0,0,0,8,23.3,0,0,0,0,0.245,81.96000000000001,102.26,0.15,990,5.5,265,0.4 +2020,12,22,13,0,26.400000000000002,1.08,0.24380000000000002,0.62,0,0,0,8,23,0,0,0,0,0.245,81.39,115.96000000000001,0.15,990,5.4,271,0.30000000000000004 +2020,12,22,14,0,26.1,1.08,0.2432,0.62,0,0,0,3,22.900000000000002,0,0,0,0,0.245,82.81,129.41,0.15,990,5.300000000000001,79,0.30000000000000004 +2020,12,22,15,0,25.6,1.06,0.2559,0.62,0,0,0,4,22.8,0,0,0,0,0.244,84.76,142.22,0.15,990,5.300000000000001,78,0.4 +2020,12,22,16,0,25.200000000000003,1.03,0.2802,0.62,0,0,0,4,22.900000000000002,0,0,0,0,0.244,86.89,153.32,0.15,990,5.4,77,0.5 +2020,12,22,17,0,25,1,0.30910000000000004,0.62,0,0,0,4,22.900000000000002,0,0,0,0,0.243,88.10000000000001,159.61,0.15,990,5.4,69,0.5 +2020,12,22,18,0,24.700000000000003,1.01,0.3276,0.62,0,0,0,8,23,0,0,0,0,0.243,90.10000000000001,156.77,0.15,990,5.4,23,0.5 +2020,12,22,19,0,24.400000000000002,1.02,0.32270000000000004,0.62,0,0,0,8,23,0,0,0,0,0.242,92.10000000000001,147.08,0.15,989,5.4,341,0.6000000000000001 +2020,12,22,20,0,24.1,1.02,0.2889,0.62,0,0,0,7,23.1,0,0,0,0,0.242,93.96000000000001,134.78,0.15,989,5.4,330,0.7000000000000001 +2020,12,22,21,0,24,1.04,0.2857,0.62,0,0,0,8,23,0,0,0,0,0.242,94.39,121.52,0.15,989,5.300000000000001,333,0.8 +2020,12,22,22,0,24.1,1.06,0.27,0.62,0,0,0,7,23,0,0,0,0,0.242,93.4,107.9,0.15,989,5.2,343,0.8 +2020,12,22,23,0,24.200000000000003,1.06,0.24280000000000002,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.242,94.01,94.15,0.15,990,5.1000000000000005,356,0.7000000000000001 +2020,12,23,0,0,25.6,1.09,0.2233,0.62,64,263,108,7,23.900000000000002,64,263,5,108,0.241,90.37,80.35000000000001,0.15,991,5,359,1 +2020,12,23,1,0,26.900000000000002,1.1500000000000001,0.1855,0.62,107,585,337,8,23.8,146,358,0,287,0.24,83.17,66.91,0.15,991,4.9,340,1.1 +2020,12,23,2,0,28.1,1.18,0.1603,0.62,123,745,562,8,24,236,417,0,482,0.24,78.51,53.9,0.15,991,4.9,313,1.2000000000000002 +2020,12,23,3,0,29,1.1500000000000001,0.1652,0.62,140,812,746,3,24.3,339,369,0,614,0.24,75.7,41.86,0.15,990,4.9,295,1.4000000000000001 +2020,12,23,4,0,29.5,1.18,0.1438,0.62,138,867,873,8,24.5,393,53,0,438,0.24,74.46000000000001,32,0.15,989,4.9,285,1.6 +2020,12,23,5,0,29.8,1.2,0.1296,0.62,134,891,928,8,24.6,380,496,0,822,0.24,73.85000000000001,26.85,0.15,989,5,279,1.9000000000000001 +2020,12,23,6,0,29.700000000000003,1.08,0.2179,0.62,178,819,894,0,24.700000000000003,178,819,0,894,0.24,74.4,29.07,0.15,988,5,276,2.1 +2020,12,23,7,0,29.6,1.09,0.2051,0.62,165,799,800,3,24.6,396,102,0,477,0.24,74.72,37.36,0.15,987,5.1000000000000005,274,2.2 +2020,12,23,8,0,29.200000000000003,1.1,0.191,0.62,145,752,641,0,24.6,145,752,0,641,0.24,76.29,48.7,0.15,986,5.1000000000000005,273,2.2 +2020,12,23,9,0,28.6,1.1500000000000001,0.1799,0.62,118,658,433,0,24.900000000000002,118,658,0,433,0.24,80.24,61.39,0.15,986,5.1000000000000005,271,1.9000000000000001 +2020,12,23,10,0,27.6,1.18,0.1688,0.62,80,466,203,0,24.900000000000002,80,466,0,203,0.24,85.33,74.7,0.15,987,5.1000000000000005,272,1.6 +2020,12,23,11,0,26.3,1.2,0.1602,0.62,14,51,15,8,25,14,51,5,15,0.241,92.56,88.11,0.15,988,5.1000000000000005,267,1.1 +2020,12,23,12,0,25.900000000000002,1.22,0.15610000000000002,0.62,0,0,0,8,24.700000000000003,0,0,0,0,0.241,92.97,102.15,0.15,988,5.1000000000000005,266,1 +2020,12,23,13,0,25.6,1.23,0.1554,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.241,93.23,115.85000000000001,0.15,989,5.2,270,0.9 +2020,12,23,14,0,25.400000000000002,1.22,0.1574,0.62,0,0,0,6,24.200000000000003,0,0,0,0,0.241,93.03,129.3,0.15,990,5.2,278,0.9 +2020,12,23,15,0,25.1,1.21,0.16440000000000002,0.62,0,0,0,7,24,0,0,0,0,0.241,93.78,142.12,0.15,990,5.300000000000001,291,0.9 +2020,12,23,16,0,24.900000000000002,1.19,0.1726,0.62,0,0,0,8,23.900000000000002,0,0,0,0,0.241,94.35000000000001,153.25,0.15,990,5.300000000000001,303,0.8 +2020,12,23,17,0,24.6,1.18,0.1772,0.62,0,0,0,7,23.900000000000002,0,0,0,0,0.241,95.67,159.61,0.15,989,5.4,314,0.9 +2020,12,23,18,0,24.5,1.17,0.18230000000000002,0.62,0,0,0,0,23.8,0,0,0,0,0.24,95.91,156.84,0.15,989,5.4,321,0.9 +2020,12,23,19,0,24.3,1.16,0.1857,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.23900000000000002,96.5,147.19,0.15,988,5.4,321,0.9 +2020,12,23,20,0,24.200000000000003,1.1500000000000001,0.1824,0.62,0,0,0,0,23.6,0,0,0,0,0.23900000000000002,96.71000000000001,134.89000000000001,0.15,988,5.4,316,0.9 +2020,12,23,21,0,24.1,1.1500000000000001,0.1875,0.62,0,0,0,0,23.6,0,0,0,0,0.23800000000000002,96.82000000000001,121.64,0.15,988,5.4,308,0.9 +2020,12,23,22,0,24,1.1500000000000001,0.1894,0.62,0,0,0,3,23.5,0,0,0,0,0.23800000000000002,97.13,108.01,0.15,989,5.4,300,0.9 +2020,12,23,23,0,24.1,1.1400000000000001,0.1824,0.62,0,0,0,8,23.6,0,0,0,0,0.23800000000000002,97.16,94.26,0.15,989,5.4,302,0.8 +2020,12,24,0,0,25.3,1.1400000000000001,0.17950000000000002,0.62,59,303,109,8,24.200000000000003,57,253,3,99,0.23900000000000002,93.8,80.46000000000001,0.15,990,5.4,308,1.1 +2020,12,24,1,0,26.3,1.17,0.1658,0.62,101,601,336,8,24.400000000000002,134,430,0,301,0.23900000000000002,89.31,67.02,0.15,991,5.4,295,1.3 +2020,12,24,2,0,27.400000000000002,1.21,0.14980000000000002,0.62,120,751,562,6,24.400000000000002,277,137,0,357,0.24,83.86,54,0.15,991,5.4,276,1.3 +2020,12,24,3,0,28.1,1.26,0.1605,0.62,137,813,742,7,24.400000000000002,360,90,0,426,0.24,80.31,41.95,0.15,991,5.5,255,1.2000000000000002 +2020,12,24,4,0,28.6,1.29,0.1487,0.62,140,860,869,8,24.3,433,256,0,650,0.24,77.68,32.05,0.15,990,5.5,241,1.4000000000000001 +2020,12,24,5,0,28.8,1.3,0.1436,0.62,141,878,924,7,24.3,394,39,0,428,0.24,76.58,26.85,0.15,989,5.5,238,1.6 +2020,12,24,6,0,28.700000000000003,1.28,0.1641,0.62,149,857,898,6,24.200000000000003,459,205,0,638,0.24,76.91,29.01,0.15,988,5.6000000000000005,238,1.8 +2020,12,24,7,0,28.400000000000002,1.27,0.1621,0.62,142,832,804,6,24.3,331,32,0,357,0.23900000000000002,78.28,37.26,0.15,988,5.6000000000000005,236,1.8 +2020,12,24,8,0,27.900000000000002,1.26,0.15760000000000002,0.62,129,781,645,7,24.200000000000003,306,298,0,503,0.23900000000000002,80.47,48.59,0.15,987,5.6000000000000005,232,1.8 +2020,12,24,9,0,27.3,1.27,0.152,0.62,108,687,438,6,24.5,210,80,0,248,0.23900000000000002,84.51,61.27,0.15,988,5.5,229,1.4000000000000001 +2020,12,24,10,0,26.5,1.28,0.1438,0.62,74,499,207,6,24.5,20,0,3,20,0.241,88.65,74.58,0.15,988,5.5,227,1.1 +2020,12,24,11,0,25.6,1.3,0.1328,0.62,14,74,17,6,24.400000000000002,4,0,3,4,0.243,93.19,88,0.15,988,5.5,223,0.6000000000000001 +2020,12,24,12,0,25.3,1.31,0.1247,0.62,0,0,0,7,24.1,0,0,0,0,0.243,92.83,102.03,0.15,989,5.4,219,0.6000000000000001 +2020,12,24,13,0,25.200000000000003,1.32,0.1193,0.62,0,0,0,7,23.8,0,0,0,0,0.244,91.69,115.74000000000001,0.15,990,5.4,213,0.5 +2020,12,24,14,0,25.1,1.32,0.1168,0.62,0,0,0,7,23.5,0,0,0,0,0.244,91.04,129.2,0.15,990,5.4,208,0.5 +2020,12,24,15,0,25,1.31,0.11910000000000001,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.244,90.62,142.03,0.15,990,5.4,208,0.5 +2020,12,24,16,0,25,1.31,0.12250000000000001,0.62,0,0,0,8,23.3,0,0,0,0,0.244,90.04,153.18,0.15,990,5.5,211,0.4 +2020,12,24,17,0,24.900000000000002,1.3,0.12510000000000002,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.245,90.07000000000001,159.61,0.15,990,5.6000000000000005,208,0.30000000000000004 +2020,12,24,18,0,24.6,1.29,0.1283,0.62,0,0,0,8,23,0,0,0,0,0.245,91.08,156.92000000000002,0.15,989,5.6000000000000005,116,0.30000000000000004 +2020,12,24,19,0,24.3,1.29,0.1316,0.62,0,0,0,4,23,0,0,0,0,0.245,92.57000000000001,147.29,0.15,989,5.6000000000000005,52,0.4 +2020,12,24,20,0,24.1,1.29,0.1322,0.62,0,0,0,4,22.900000000000002,0,0,0,0,0.245,93.29,135.01,0.15,989,5.7,52,0.4 +2020,12,24,21,0,24,1.3,0.1338,0.62,0,0,0,4,22.900000000000002,0,0,0,0,0.245,93.31,121.76,0.15,989,5.7,64,0.4 +2020,12,24,22,0,23.8,1.31,0.13540000000000002,0.62,0,0,0,8,22.700000000000003,0,0,0,0,0.245,93.82000000000001,108.13,0.15,989,5.7,83,0.5 +2020,12,24,23,0,23.8,1.31,0.13570000000000002,0.62,0,0,0,3,22.900000000000002,0,0,0,0,0.245,94.84,94.37,0.15,990,5.6000000000000005,87,0.5 +2020,12,25,0,0,25.1,1.32,0.1369,0.62,52,354,110,1,23.8,52,354,0,110,0.245,92.58,80.57000000000001,0.15,991,5.7,94,0.9 +2020,12,25,1,0,26.6,1.34,0.13490000000000002,0.62,91,635,338,0,24,91,635,0,338,0.246,85.7,67.12,0.15,991,5.7,111,1.1 +2020,12,25,2,0,27.5,1.36,0.1326,0.62,112,767,562,0,23.700000000000003,112,767,0,562,0.246,79.7,54.09,0.15,991,5.7,126,1.1 +2020,12,25,3,0,28.3,1.34,0.133,0.62,126,835,746,0,23.8,126,835,0,746,0.246,76.58,42.03,0.15,991,5.7,142,1.1 +2020,12,25,4,0,28.900000000000002,1.35,0.1343,0.62,134,869,871,0,23.900000000000002,134,869,0,871,0.245,74.46000000000001,32.1,0.15,991,5.800000000000001,154,1.1 +2020,12,25,5,0,29.200000000000003,1.36,0.1318,0.62,136,885,926,3,24,472,185,0,637,0.243,73.49,26.84,0.15,990,5.800000000000001,164,1.1 +2020,12,25,6,0,29.200000000000003,1.32,0.1374,0.62,138,876,904,3,24,455,234,0,660,0.242,73.66,28.94,0.15,989,5.800000000000001,171,1.2000000000000002 +2020,12,25,7,0,29,1.32,0.13920000000000002,0.62,133,849,810,3,24,408,194,0,563,0.24,74.60000000000001,37.160000000000004,0.15,988,5.800000000000001,173,1.4000000000000001 +2020,12,25,8,0,28.700000000000003,1.32,0.1375,0.62,121,799,651,3,24.1,300,62,0,341,0.24,76.44,48.47,0.15,987,5.800000000000001,170,1.4000000000000001 +2020,12,25,9,0,28.3,1.34,0.14020000000000002,0.62,105,699,442,8,24.700000000000003,205,280,0,340,0.24,80.96000000000001,61.160000000000004,0.15,988,5.800000000000001,163,1.1 +2020,12,25,10,0,27.5,1.33,0.1463,0.62,76,498,210,8,24.6,75,0,3,75,0.24,84.18,74.47,0.15,988,5.800000000000001,150,1 +2020,12,25,11,0,26.5,1.33,0.1441,0.62,15,73,18,6,24.8,8,0,3,8,0.241,90.14,87.89,0.15,989,5.800000000000001,136,0.7000000000000001 +2020,12,25,12,0,26.200000000000003,1.33,0.1454,0.62,0,0,0,6,24.5,0,0,0,0,0.242,90.19,101.92,0.15,990,5.800000000000001,117,0.7000000000000001 +2020,12,25,13,0,25.8,1.32,0.14750000000000002,0.62,0,0,0,6,24.400000000000002,0,0,0,0,0.243,91.77,115.63,0.15,991,5.800000000000001,103,0.7000000000000001 +2020,12,25,14,0,25.5,1.3,0.1501,0.62,0,0,0,7,24.3,0,0,0,0,0.243,92.85000000000001,129.1,0.15,991,5.800000000000001,95,0.8 +2020,12,25,15,0,25.1,1.29,0.1517,0.62,0,0,0,4,24.200000000000003,0,0,0,0,0.243,94.51,141.94,0.15,991,5.9,93,0.8 +2020,12,25,16,0,24.8,1.27,0.1501,0.62,0,0,0,8,24,0,0,0,0,0.242,95.35000000000001,153.12,0.15,991,5.9,93,1 +2020,12,25,17,0,24.5,1.26,0.14500000000000002,0.62,0,0,0,4,23.900000000000002,0,0,0,0,0.241,96.24000000000001,159.62,0.15,991,5.9,95,1 +2020,12,25,18,0,24.200000000000003,1.28,0.1376,0.62,0,0,0,4,23.8,0,0,0,0,0.24,97.35000000000001,157,0.15,990,5.800000000000001,99,1.1 +2020,12,25,19,0,24.1,1.3,0.1268,0.62,0,0,0,4,23.700000000000003,0,0,0,0,0.24,97.35000000000001,147.4,0.15,989,5.7,102,1.2000000000000002 +2020,12,25,20,0,23.900000000000002,1.31,0.11460000000000001,0.62,0,0,0,4,23.6,0,0,0,0,0.24,98.14,135.12,0.15,989,5.6000000000000005,106,1.4000000000000001 +2020,12,25,21,0,23.900000000000002,1.32,0.11280000000000001,0.62,0,0,0,4,23.6,0,0,0,0,0.241,97.92,121.87,0.15,989,5.6000000000000005,103,1.4000000000000001 +2020,12,25,22,0,23.8,1.3,0.1174,0.62,0,0,0,3,23.5,0,0,0,0,0.241,97.98,108.24000000000001,0.15,989,5.6000000000000005,89,1.2000000000000002 +2020,12,25,23,0,24,1.28,0.12190000000000001,0.62,0,0,0,4,23.6,0,0,0,0,0.241,97.88,94.49,0.15,990,5.7,74,1.1 +2020,12,26,0,0,25.1,1.28,0.1263,0.62,52,362,110,3,24.400000000000002,59,145,3,83,0.241,95.86,80.68,0.14,991,5.7,68,1.7000000000000002 +2020,12,26,1,0,26.1,1.29,0.1228,0.62,89,646,339,8,24.900000000000002,138,397,0,291,0.241,92.99,67.22,0.14,992,5.7,76,2.1 +2020,12,26,2,0,27.200000000000003,1.31,0.114,0.62,106,784,565,3,25,275,181,0,381,0.241,87.75,54.19,0.14,992,5.6000000000000005,82,2.2 +2020,12,26,3,0,28.1,1.26,0.12150000000000001,0.62,122,844,748,3,24.900000000000002,350,323,0,589,0.241,82.98,42.1,0.14,992,5.6000000000000005,89,2.1 +2020,12,26,4,0,28.700000000000003,1.27,0.1173,0.62,127,883,875,4,24.8,323,23,0,342,0.241,79.53,32.14,0.14,992,5.6000000000000005,100,1.9000000000000001 +2020,12,26,5,0,29.1,1.28,0.1169,0.62,130,896,929,3,24.6,471,163,0,617,0.241,76.69,26.82,0.14,991,5.7,112,1.8 +2020,12,26,6,0,29.3,1.22,0.1565,0.62,148,861,902,4,24.3,449,105,0,540,0.24,74.73,28.86,0.14,990,5.7,123,1.7000000000000002 +2020,12,26,7,0,29.200000000000003,1.22,0.15810000000000002,0.62,143,834,808,3,24.200000000000003,360,404,0,682,0.24,74.47,37.050000000000004,0.14,989,5.7,134,1.7000000000000002 +2020,12,26,8,0,28.8,1.22,0.1558,0.62,130,783,650,6,24.3,273,33,0,295,0.24,76.54,48.36,0.14,989,5.6000000000000005,140,1.7000000000000002 +2020,12,26,9,0,28.5,1.23,0.16010000000000002,0.62,113,679,442,6,24.700000000000003,22,0,0,22,0.23900000000000002,80.02,61.04,0.14,989,5.6000000000000005,142,1.4000000000000001 +2020,12,26,10,0,27.5,1.24,0.164,0.62,81,479,210,6,24.400000000000002,91,0,3,91,0.24,83.04,74.35000000000001,0.14,989,5.6000000000000005,140,1.2000000000000002 +2020,12,26,11,0,26.3,1.25,0.159,0.62,16,65,18,8,24.6,9,0,3,9,0.241,90.45,87.79,0.14,990,5.6000000000000005,138,0.9 +2020,12,26,12,0,25.900000000000002,1.26,0.1516,0.62,0,0,0,8,24.3,0,0,0,0,0.242,90.89,101.81,0.14,991,5.6000000000000005,129,0.9 +2020,12,26,13,0,25.5,1.27,0.14350000000000002,0.62,0,0,0,6,24.1,0,0,0,0,0.242,91.86,115.52,0.14,992,5.5,121,1 +2020,12,26,14,0,25.1,1.28,0.13470000000000001,0.62,0,0,0,6,23.900000000000002,0,0,0,0,0.243,92.98,129,0.14,992,5.5,118,1 +2020,12,26,15,0,24.700000000000003,1.27,0.1285,0.62,0,0,0,6,23.700000000000003,0,0,0,0,0.243,94.24,141.86,0.14,992,5.4,118,1.1 +2020,12,26,16,0,24.3,1.26,0.12660000000000002,0.62,0,0,0,7,23.5,0,0,0,0,0.243,95.3,153.07,0.14,991,5.300000000000001,110,1.1 +2020,12,26,17,0,24,1.24,0.1298,0.62,0,0,0,7,23.3,0,0,0,0,0.242,96.04,159.64000000000001,0.14,991,5.2,88,0.9 +2020,12,26,18,0,23.8,1.24,0.1404,0.62,0,0,0,6,23.1,0,0,0,0,0.242,96.12,157.09,0.14,991,5.2,55,0.7000000000000001 +2020,12,26,19,0,23.6,1.24,0.1423,0.62,0,0,0,7,23,0,0,0,0,0.243,96.31,147.52,0.14,991,5.2,45,0.7000000000000001 +2020,12,26,20,0,23.400000000000002,1.24,0.1369,0.62,0,0,0,8,22.8,0,0,0,0,0.244,96.56,135.24,0.14,990,5.2,46,0.8 +2020,12,26,21,0,23.3,1.26,0.13240000000000002,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.244,96.55,121.99000000000001,0.14,991,5.2,49,0.8 +2020,12,26,22,0,23.1,1.28,0.1252,0.62,0,0,0,7,22.6,0,0,0,0,0.243,97.02,108.36,0.14,991,5.1000000000000005,51,0.8 +2020,12,26,23,0,23.3,1.31,0.11610000000000001,0.62,0,0,0,3,22.8,0,0,0,0,0.242,97.09,94.60000000000001,0.14,991,5.1000000000000005,50,0.9 +2020,12,27,0,0,24.5,1.33,0.1082,0.62,49,388,111,8,23.6,59,124,3,79,0.242,94.96000000000001,80.78,0.14,992,5.1000000000000005,49,1.5 +2020,12,27,1,0,25.900000000000002,1.36,0.09860000000000001,0.62,81,678,343,8,24,150,309,0,269,0.241,89.17,67.32000000000001,0.14,993,5.1000000000000005,60,1.7000000000000002 +2020,12,27,2,0,27.1,1.4000000000000001,0.0921,0.62,97,810,570,0,23.6,97,810,0,570,0.241,81.11,54.27,0.14,992,5.1000000000000005,67,1.6 +2020,12,27,3,0,28.200000000000003,1.5,0.0811,0.62,102,884,757,0,23.6,102,884,0,757,0.24,76.03,42.17,0.14,992,5.1000000000000005,66,1.5 +2020,12,27,4,0,29,1.52,0.0829,0.62,109,915,883,3,23.6,353,478,0,758,0.241,72.57000000000001,32.17,0.14,991,5.2,63,1.4000000000000001 +2020,12,27,5,0,29.5,1.51,0.0891,0.62,115,922,938,0,23.6,115,922,0,938,0.24,70.73,26.79,0.14,990,5.300000000000001,64,1.3 +2020,12,27,6,0,29.6,1.2,0.11800000000000001,0.62,130,892,912,3,23.700000000000003,261,13,0,272,0.24,70.44,28.77,0.14,989,5.4,68,1.2000000000000002 +2020,12,27,7,0,29.400000000000002,1.18,0.1302,0.62,131,857,816,3,23.700000000000003,300,21,0,317,0.241,71.46000000000001,36.94,0.14,989,5.5,74,1.3 +2020,12,27,8,0,29.1,1.18,0.1342,0.62,122,802,656,7,24,305,315,0,515,0.241,73.84,48.24,0.14,988,5.6000000000000005,80,1.4000000000000001 +2020,12,27,9,0,28.6,1.19,0.14250000000000002,0.62,107,697,446,7,24.400000000000002,167,7,0,171,0.241,78.19,60.92,0.14,988,5.7,81,1.2000000000000002 +2020,12,27,10,0,27.5,1.2,0.1491,0.62,78,496,213,8,24.200000000000003,109,91,3,134,0.241,82.32000000000001,74.23,0.14,989,5.7,79,1.1 +2020,12,27,11,0,26.400000000000002,1.21,0.1436,0.62,17,75,20,4,24.6,4,0,3,4,0.242,89.99,87.68,0.14,989,5.7,79,0.7000000000000001 +2020,12,27,12,0,25.900000000000002,1.22,0.1361,0.62,0,0,0,4,24.3,0,0,0,0,0.243,91.12,101.7,0.14,990,5.6000000000000005,79,0.8 +2020,12,27,13,0,25.5,1.23,0.1272,0.62,0,0,0,4,24.1,0,0,0,0,0.243,92.04,115.42,0.14,991,5.6000000000000005,78,0.8 +2020,12,27,14,0,25.1,1.23,0.1228,0.62,0,0,0,4,23.900000000000002,0,0,0,0,0.243,93.22,128.9,0.14,991,5.6000000000000005,75,0.9 +2020,12,27,15,0,24.700000000000003,1.21,0.1227,0.62,0,0,0,8,23.8,0,0,0,0,0.243,94.69,141.78,0.14,991,5.6000000000000005,72,0.9 +2020,12,27,16,0,24.400000000000002,1.19,0.1259,0.62,0,0,0,8,23.700000000000003,0,0,0,0,0.242,95.60000000000001,153.03,0.14,990,5.6000000000000005,68,0.8 +2020,12,27,17,0,24.200000000000003,1.17,0.1295,0.62,0,0,0,3,23.6,0,0,0,0,0.242,96.19,159.66,0.14,990,5.6000000000000005,62,0.8 +2020,12,27,18,0,24.1,1.18,0.1389,0.62,0,0,0,4,23.5,0,0,0,0,0.241,96.22,157.19,0.14,989,5.6000000000000005,53,0.8 +2020,12,27,19,0,23.900000000000002,1.19,0.1441,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.241,96.87,147.64000000000001,0.14,989,5.6000000000000005,44,0.8 +2020,12,27,20,0,23.8,1.2,0.1398,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.241,96.68,135.36,0.14,989,5.6000000000000005,35,0.7000000000000001 +2020,12,27,21,0,23.6,1.23,0.1437,0.62,0,0,0,3,23.1,0,0,0,0,0.24,96.93,122.11,0.14,989,5.5,33,0.8 +2020,12,27,22,0,23.5,1.25,0.1413,0.62,0,0,0,3,23,0,0,0,0,0.24,96.82000000000001,108.47,0.14,989,5.5,35,0.8 +2020,12,27,23,0,23.700000000000003,1.28,0.1295,0.62,0,0,0,4,23.1,0,0,0,0,0.24,96.66,94.71000000000001,0.14,990,5.4,37,0.8 +2020,12,28,0,0,24.8,1.32,0.1192,0.62,50,368,108,4,23.700000000000003,58,141,3,80,0.24,93.84,80.89,0.14,991,5.4,35,1.6 +2020,12,28,1,0,26,1.36,0.1062,0.62,83,666,338,0,24,83,666,0,338,0.241,88.65,67.42,0.14,992,5.4,36,1.8 +2020,12,28,2,0,27.5,1.3800000000000001,0.0961,0.62,98,803,566,0,23.900000000000002,98,803,0,566,0.241,80.67,54.36,0.14,992,5.4,40,1.7000000000000002 +2020,12,28,3,0,28.5,1.34,0.09670000000000001,0.62,110,867,751,1,24,110,867,0,751,0.241,76.63,42.24,0.14,992,5.4,43,1.7000000000000002 +2020,12,28,4,0,29.200000000000003,1.34,0.093,0.62,115,904,879,8,24.1,422,301,0,677,0.241,74.10000000000001,32.2,0.14,991,5.4,44,1.5 +2020,12,28,5,0,29.6,1.34,0.0891,0.62,115,920,936,3,24.200000000000003,443,337,0,743,0.24,72.60000000000001,26.76,0.14,990,5.5,45,1.3 +2020,12,28,6,0,29.700000000000003,1.34,0.0912,0.62,116,914,918,3,24.1,405,401,0,757,0.24,72.11,28.68,0.14,989,5.5,49,1.1 +2020,12,28,7,0,29.6,1.35,0.093,0.62,112,889,824,8,24.1,399,274,0,618,0.24,72.58,36.83,0.14,988,5.6000000000000005,53,1 +2020,12,28,8,0,29.3,1.35,0.095,0.62,104,840,665,7,24.3,282,39,0,308,0.24,74.34,48.120000000000005,0.14,988,5.7,57,0.9 +2020,12,28,9,0,28.900000000000002,1.36,0.11750000000000001,0.62,98,727,453,7,24.8,220,140,0,288,0.24,78.8,60.800000000000004,0.14,988,5.7,59,0.8 +2020,12,28,10,0,28,1.37,0.13,0.62,74,526,218,3,24.8,98,4,3,99,0.241,82.87,74.11,0.14,988,5.800000000000001,56,0.8 +2020,12,28,11,0,26.8,1.37,0.12940000000000002,0.62,17,97,21,8,25.200000000000003,21,0,3,21,0.242,90.72,87.57000000000001,0.14,989,5.800000000000001,55,0.6000000000000001 +2020,12,28,12,0,26.3,1.36,0.151,0.62,0,0,0,8,24.900000000000002,0,0,0,0,0.242,91.94,101.59,0.14,990,5.9,53,0.6000000000000001 +2020,12,28,13,0,25.900000000000002,1.36,0.1563,0.62,0,0,0,8,24.8,0,0,0,0,0.243,93.5,115.31,0.14,991,5.9,49,0.5 +2020,12,28,14,0,25.6,1.34,0.1532,0.62,0,0,0,7,24.6,0,0,0,0,0.244,94.28,128.81,0.14,991,6,47,0.5 +2020,12,28,15,0,25.3,1.32,0.1778,0.62,0,0,0,7,24.5,0,0,0,0,0.244,95.14,141.70000000000002,0.14,991,6,48,0.5 +2020,12,28,16,0,25.1,1.31,0.1683,0.62,0,0,0,0,24.400000000000002,0,0,0,0,0.244,95.62,152.98,0.14,991,6,47,0.5 +2020,12,28,17,0,24.8,1.31,0.13390000000000002,0.62,0,0,0,0,24.200000000000003,0,0,0,0,0.244,96.57000000000001,159.69,0.14,990,6,36,0.6000000000000001 +2020,12,28,18,0,24.6,1.33,0.159,0.62,0,0,0,0,24.1,0,0,0,0,0.244,96.88,157.29,0.14,989,6,28,0.6000000000000001 +2020,12,28,19,0,24.400000000000002,1.34,0.1681,0.62,0,0,0,1,23.900000000000002,0,0,0,0,0.244,97.2,147.76,0.14,989,6,22,0.6000000000000001 +2020,12,28,20,0,24.200000000000003,1.34,0.1522,0.62,0,0,0,0,23.8,0,0,0,0,0.243,97.64,135.49,0.14,989,5.9,15,0.7000000000000001 +2020,12,28,21,0,24,1.35,0.1698,0.62,0,0,0,0,23.700000000000003,0,0,0,0,0.243,98.04,122.23,0.14,989,5.9,14,0.7000000000000001 +2020,12,28,22,0,23.900000000000002,1.36,0.161,0.62,0,0,0,0,23.5,0,0,0,0,0.242,97.82000000000001,108.59,0.14,990,5.9,14,0.8 +2020,12,28,23,0,23.900000000000002,1.3800000000000001,0.14100000000000001,0.62,0,0,0,3,23.5,0,0,0,0,0.241,97.76,94.82000000000001,0.14,990,5.800000000000001,13,0.9 +2020,12,29,0,0,24.5,1.4000000000000001,0.14800000000000002,0.62,52,331,103,3,23.8,40,0,3,40,0.241,96.04,80.99,0.15,991,5.800000000000001,15,1.4000000000000001 +2020,12,29,1,0,25.3,1.43,0.1496,0.62,94,616,329,3,24,161,194,0,235,0.241,92.45,67.51,0.15,992,5.7,21,1.6 +2020,12,29,2,0,26.200000000000003,1.45,0.1414,0.62,114,758,555,7,23.900000000000002,172,2,0,173,0.241,87.22,54.44,0.15,992,5.7,25,1.4000000000000001 +2020,12,29,3,0,27,1.28,0.19240000000000002,0.62,152,786,733,4,23.700000000000003,270,18,0,283,0.241,81.95,42.300000000000004,0.15,992,5.7,21,1.2000000000000002 +2020,12,29,4,0,27.5,1.27,0.19990000000000002,0.62,165,821,860,4,23.5,437,134,0,551,0.241,78.97,32.22,0.15,992,5.6000000000000005,13,0.9 +2020,12,29,5,0,27.700000000000003,1.28,0.1904,0.62,165,844,919,0,23.5,165,844,0,919,0.241,78.16,26.72,0.15,991,5.6000000000000005,351,0.7000000000000001 +2020,12,29,6,0,27.700000000000003,1.3,0.22640000000000002,0.62,179,815,895,3,23.6,441,87,0,518,0.24,78.58,28.59,0.15,990,5.6000000000000005,302,0.8 +2020,12,29,7,0,27.700000000000003,1.32,0.2257,0.62,171,789,804,3,23.8,411,164,0,543,0.24,79.21000000000001,36.71,0.15,989,5.5,264,1.1 +2020,12,29,8,0,27.400000000000002,1.33,0.21450000000000002,0.62,153,740,648,7,23.8,326,197,0,457,0.24,80.56,47.99,0.15,988,5.5,246,1.2000000000000002 +2020,12,29,9,0,26.900000000000002,1.34,0.22660000000000002,0.62,134,626,440,6,24,212,68,0,245,0.24,84.25,60.67,0.15,989,5.5,247,1 +2020,12,29,10,0,26.200000000000003,1.36,0.2174,0.62,91,437,212,6,23.900000000000002,107,40,3,118,0.24,87.09,73.99,0.15,989,5.5,247,0.8 +2020,12,29,11,0,25.5,1.3800000000000001,0.2064,0.62,17,62,20,7,24.1,13,0,3,13,0.241,91.8,87.46000000000001,0.15,990,5.5,242,0.5 +2020,12,29,12,0,25.3,1.3900000000000001,0.21180000000000002,0.62,0,0,0,3,23.900000000000002,0,0,0,0,0.241,92,101.48,0.15,991,5.5,249,0.4 +2020,12,29,13,0,25.3,1.3800000000000001,0.2109,0.62,0,0,0,8,23.6,0,0,0,0,0.241,90.54,115.21000000000001,0.15,991,5.5,190,0.30000000000000004 +2020,12,29,14,0,25.3,1.3800000000000001,0.2013,0.62,0,0,0,7,23.5,0,0,0,0,0.242,89.89,128.72,0.15,992,5.6000000000000005,101,0.4 +2020,12,29,15,0,25,1.37,0.20320000000000002,0.62,0,0,0,8,23.5,0,0,0,0,0.241,91.15,141.63,0.15,991,5.6000000000000005,92,0.5 +2020,12,29,16,0,24.8,1.3800000000000001,0.19540000000000002,0.62,0,0,0,3,23.400000000000002,0,0,0,0,0.241,91.7,152.95000000000002,0.15,991,5.6000000000000005,90,0.5 +2020,12,29,17,0,24.700000000000003,1.37,0.1837,0.62,0,0,0,0,23.3,0,0,0,0,0.241,91.7,159.73,0.15,991,5.6000000000000005,84,0.5 +2020,12,29,18,0,24.400000000000002,1.37,0.1951,0.62,0,0,0,3,23.200000000000003,0,0,0,0,0.241,92.84,157.4,0.15,990,5.5,75,0.5 +2020,12,29,19,0,24.1,1.37,0.195,0.62,0,0,0,3,23.1,0,0,0,0,0.24,93.94,147.89000000000001,0.15,990,5.5,69,0.6000000000000001 +2020,12,29,20,0,23.900000000000002,1.3900000000000001,0.1801,0.62,0,0,0,3,22.900000000000002,0,0,0,0,0.23900000000000002,94.26,135.61,0.15,990,5.4,57,0.6000000000000001 +2020,12,29,21,0,23.700000000000003,1.4000000000000001,0.1806,0.62,0,0,0,7,22.8,0,0,0,0,0.23900000000000002,94.67,122.35000000000001,0.15,990,5.300000000000001,45,0.6000000000000001 +2020,12,29,22,0,23.5,1.41,0.17900000000000002,0.62,0,0,0,7,22.700000000000003,0,0,0,0,0.23900000000000002,95.13,108.7,0.15,990,5.2,42,0.6000000000000001 +2020,12,29,23,0,23.5,1.43,0.1678,0.62,0,0,0,0,22.8,0,0,0,0,0.23900000000000002,95.9,94.93,0.15,991,5.1000000000000005,37,0.6000000000000001 +2020,12,30,0,0,24.700000000000003,1.45,0.15860000000000002,0.62,52,323,102,8,23.6,52,323,5,102,0.23900000000000002,93.73,81.09,0.15,992,4.9,33,1.2000000000000002 +2020,12,30,1,0,25.8,1.49,0.1482,0.62,93,624,331,0,23.8,93,624,0,331,0.23900000000000002,88.56,67.6,0.15,992,4.800000000000001,37,1.5 +2020,12,30,2,0,26.900000000000002,1.51,0.1418,0.62,114,765,558,0,23.3,114,765,0,558,0.23900000000000002,80.77,54.52,0.15,992,4.7,39,1.7000000000000002 +2020,12,30,3,0,27.900000000000002,1.5,0.0927,0.62,107,877,756,0,23,107,877,0,756,0.23900000000000002,74.86,42.35,0.15,992,4.7,39,1.7000000000000002 +2020,12,30,4,0,28.6,1.51,0.0945,0.62,115,910,884,0,23,115,910,0,884,0.23800000000000002,71.77,32.24,0.15,991,4.7,39,1.6 +2020,12,30,5,0,29,1.52,0.0955,0.62,118,923,943,0,23,118,923,0,943,0.23800000000000002,70.15,26.67,0.15,990,4.7,39,1.4000000000000001 +2020,12,30,6,0,29.200000000000003,1.48,0.11270000000000001,0.62,125,904,920,3,22.900000000000002,461,212,0,647,0.23700000000000002,69.07000000000001,28.48,0.15,989,4.800000000000001,41,1.3 +2020,12,30,7,0,29.200000000000003,1.47,0.11520000000000001,0.62,122,879,828,1,22.900000000000002,122,879,0,828,0.23700000000000002,68.92,36.58,0.15,988,4.800000000000001,47,1.2000000000000002 +2020,12,30,8,0,29,1.47,0.1174,0.62,113,828,668,0,23.1,113,828,0,668,0.23700000000000002,70.38,47.86,0.15,988,4.9,54,1.2000000000000002 +2020,12,30,9,0,28.6,1.48,0.12100000000000001,0.62,98,732,458,8,23.5,98,732,5,458,0.23700000000000002,74,60.550000000000004,0.15,988,5,59,1.1 +2020,12,30,10,0,27.6,1.49,0.1232,0.62,72,547,224,3,23.5,102,287,3,181,0.23700000000000002,78.35000000000001,73.87,0.15,989,5,61,1 +2020,12,30,11,0,26.3,1.51,0.1211,0.62,18,122,23,0,23.900000000000002,18,122,0,23,0.23700000000000002,86.76,87.35000000000001,0.15,989,5,65,0.6000000000000001 +2020,12,30,12,0,25.8,1.53,0.1203,0.62,0,0,0,0,23.5,0,0,0,0,0.23700000000000002,87.28,101.37,0.15,990,4.9,68,0.6000000000000001 +2020,12,30,13,0,25.200000000000003,1.53,0.1227,0.62,0,0,0,7,23.200000000000003,0,0,0,0,0.23800000000000002,88.89,115.11,0.15,991,4.800000000000001,68,0.6000000000000001 +2020,12,30,14,0,24.700000000000003,1.53,0.1283,0.62,0,0,0,7,23.1,0,0,0,0,0.23900000000000002,90.58,128.63,0.15,991,4.6000000000000005,64,0.7000000000000001 +2020,12,30,15,0,24.1,1.51,0.13820000000000002,0.62,0,0,0,7,23,0,0,0,0,0.241,93.34,141.56,0.15,991,4.5,54,0.7000000000000001 +2020,12,30,16,0,23.700000000000003,1.48,0.1487,0.62,0,0,0,8,22.900000000000002,0,0,0,0,0.241,95.19,152.92000000000002,0.15,991,4.5,45,0.8 +2020,12,30,17,0,23.400000000000002,1.47,0.152,0.62,0,0,0,8,22.8,0,0,0,0,0.242,96.43,159.78,0.15,990,4.4,40,0.9 +2020,12,30,18,0,23.1,1.46,0.1521,0.62,0,0,0,7,22.6,0,0,0,0,0.242,97.28,157.52,0.15,990,4.3,36,0.9 +2020,12,30,19,0,22.700000000000003,1.46,0.1511,0.62,0,0,0,3,22.400000000000002,0,0,0,0,0.242,98.07000000000001,148.02,0.15,989,4.3,33,0.8 +2020,12,30,20,0,22.5,1.45,0.1484,0.62,0,0,0,3,22.1,0,0,0,0,0.243,97.86,135.74,0.15,990,4.3,30,0.7000000000000001 +2020,12,30,21,0,22.3,1.46,0.1423,0.62,0,0,0,3,21.900000000000002,0,0,0,0,0.243,97.75,122.47,0.15,990,4.4,26,0.7000000000000001 +2020,12,30,22,0,22.1,1.47,0.134,0.62,0,0,0,8,21.8,0,0,0,0,0.244,97.97,108.82000000000001,0.15,991,4.4,22,0.7000000000000001 +2020,12,30,23,0,22.400000000000002,1.48,0.1254,0.62,0,0,0,7,21.900000000000002,0,0,0,0,0.244,97.07000000000001,95.04,0.15,991,4.5,17,0.7000000000000001 +2020,12,31,0,0,24.1,1.48,0.11910000000000001,0.62,47,369,104,8,22.700000000000003,52,248,3,90,0.244,92.14,81.19,0.15,992,4.6000000000000005,16,1.3 +2020,12,31,1,0,25.8,1.49,0.10990000000000001,0.62,83,665,335,7,22.900000000000002,147,314,0,266,0.244,84.17,67.69,0.15,993,4.7,23,1.5 +2020,12,31,2,0,27.200000000000003,1.49,0.1062,0.62,101,797,563,0,22.900000000000002,101,797,0,563,0.244,77.53,54.59,0.15,993,4.800000000000001,29,1.5 +2020,12,31,3,0,28.200000000000003,1.1300000000000001,0.162,0.62,141,812,741,8,23.1,327,396,0,620,0.244,73.69,42.4,0.15,992,4.9,36,1.6 +2020,12,31,4,0,28.8,1.12,0.1578,0.62,148,854,870,3,23.3,432,255,0,647,0.244,72.09,32.25,0.15,992,5,43,1.5 +2020,12,31,5,0,29.200000000000003,1.1300000000000001,0.14880000000000002,0.62,147,876,930,3,23.400000000000002,458,285,0,713,0.243,70.81,26.62,0.15,990,5.1000000000000005,51,1.5 +2020,12,31,6,0,29.400000000000002,1.03,0.18000000000000002,0.62,162,846,906,3,23.400000000000002,230,11,0,239,0.242,69.99,28.37,0.15,989,5.2,59,1.5 +2020,12,31,7,0,29.3,1.02,0.1836,0.62,157,815,813,3,23.400000000000002,413,179,0,557,0.241,70.61,36.45,0.15,989,5.4,67,1.5 +2020,12,31,8,0,28.8,1.01,0.18460000000000001,0.62,145,759,655,3,24,228,12,0,236,0.241,75.12,47.730000000000004,0.15,988,5.5,73,1.5 +2020,12,31,9,0,27.8,1,0.2043,0.62,130,637,445,3,24.3,209,298,0,356,0.24,81.42,60.42,0.15,989,5.7,75,1.4000000000000001 +2020,12,31,10,0,26.8,0.98,0.2184,0.62,96,421,214,3,24.3,96,421,5,214,0.24,86.34,73.75,0.15,989,5.800000000000001,76,1.2000000000000002 +2020,12,31,11,0,26,0.96,0.2119,0.62,19,45,21,6,24.6,19,45,5,21,0.24,91.96000000000001,87.24,0.15,990,5.800000000000001,79,1 +2020,12,31,12,0,25.6,0.99,0.20700000000000002,0.62,0,0,0,6,24.5,0,0,0,0,0.241,93.46000000000001,101.26,0.15,991,5.800000000000001,78,0.9 +2020,12,31,13,0,25.200000000000003,1.03,0.1882,0.62,0,0,0,6,24.3,0,0,0,0,0.241,94.55,115.01,0.15,992,5.7,73,1 +2020,12,31,14,0,24.8,1.05,0.1709,0.62,0,0,0,7,24,0,0,0,0,0.241,95.4,128.54,0.15,992,5.7,65,1.1 +2020,12,31,15,0,24.400000000000002,1.06,0.1685,0.62,0,0,0,6,23.8,0,0,0,0,0.242,96.18,141.49,0.15,992,5.6000000000000005,58,1.2000000000000002 +2020,12,31,16,0,24.1,1.02,0.1804,0.62,0,0,0,6,23.5,0,0,0,0,0.242,96.29,152.89000000000001,0.15,992,5.6000000000000005,53,1.5 +2020,12,31,17,0,23.8,0.9500000000000001,0.198,0.62,0,0,0,6,23.3,0,0,0,0,0.241,96.78,159.83,0.15,992,5.6000000000000005,49,1.6 +2020,12,31,18,0,23.6,0.9,0.21710000000000002,0.62,0,0,0,6,23,0,0,0,0,0.241,96.65,157.64000000000001,0.15,991,5.5,46,1.5 +2020,12,31,19,0,23.400000000000002,0.84,0.22990000000000002,0.62,0,0,0,6,22.8,0,0,0,0,0.241,96.64,148.15,0.15,990,5.5,44,1.3 +2020,12,31,20,0,23.200000000000003,0.79,0.2272,0.62,0,0,0,6,22.700000000000003,0,0,0,0,0.241,96.87,135.87,0.15,990,5.5,42,1.2000000000000002 +2020,12,31,21,0,23.1,0.76,0.223,0.62,0,0,0,6,22.5,0,0,0,0,0.241,96.68,122.60000000000001,0.15,990,5.5,38,1.1 +2020,12,31,22,0,23,0.76,0.2121,0.62,0,0,0,6,22.400000000000002,0,0,0,0,0.241,96.71000000000001,108.93,0.15,991,5.5,33,1 +2020,12,31,23,0,23.200000000000003,0.76,0.1933,0.62,0,0,0,6,22.5,0,0,0,0,0.24,96.09,95.14,0.15,991,5.5,30,1.1 diff --git a/resource_files/solar/41.9077_12.4368_2008_nsrdb_msg_v4_60min_utc_tz.csv b/resource_files/solar/41.9077_12.4368_2008_nsrdb_msg_v4_60min_utc_tz.csv new file mode 100644 index 000000000..3e0f3372c --- /dev/null +++ b/resource_files/solar/41.9077_12.4368_2008_nsrdb_msg_v4_60min_utc_tz.csv @@ -0,0 +1,8763 @@ +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 Units,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 +NSRDB,734994,-,-,-,41.89,12.42,0,68,1,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,4.0.0 +Year,Month,Day,Hour,Minute,Temperature,Alpha,Aerosol Optical Depth,Asymmetry,Clearsky DHI,Clearsky DNI,Clearsky GHI,Cloud Type,Dew Point,DHI,DNI,Fill Flag,GHI,Solar Zenith Angle,Surface Albedo,Precipitable Water,Relative Humidity,Pressure,Wind Direction,Wind Speed +2008,1,1,0,30,3,1.16,0.057,0.63,0,0,0,0,1,0,0,0,0,155.32,0.13,0.8,86.69,1007,46,2.5 +2008,1,1,1,30,2.7,1.22,0.055,0.63,0,0,0,1,0.6000000000000001,0,0,0,0,145.94,0.13,0.7000000000000001,86.32000000000001,1007,46,2.5 +2008,1,1,2,30,2.3000000000000003,1.28,0.051000000000000004,0.63,0,0,0,0,0.2,0,0,0,0,135.21,0.13,0.7000000000000001,85.87,1007,46,2.4000000000000004 +2008,1,1,3,30,2,1.34,0.047,0.63,0,0,0,0,-0.4,0,0,0,0,124.08,0.13,0.7000000000000001,83.93,1007,46,2.4000000000000004 +2008,1,1,4,30,1.9000000000000001,1.3900000000000001,0.043000000000000003,0.63,0,0,0,0,-1,0,0,0,0,113,0.13,0.6000000000000001,81.21000000000001,1007,46,2.4000000000000004 +2008,1,1,5,30,1.8,1.42,0.041,0.63,0,0,0,0,-1.4000000000000001,0,0,0,0,102.25,0.13,0.6000000000000001,79.04,1007,46,2.4000000000000004 +2008,1,1,6,30,2.7,1.44,0.039,0.63,0,0,0,0,-1.8,0,0,0,0,92.13,0.13,0.5,72.21000000000001,1008,45,2.5 +2008,1,1,7,30,5.2,1.46,0.036000000000000004,0.63,33,555,103,0,-1.4000000000000001,33,555,0,103,82.82000000000001,0.13,0.5,62.54,1008,44,3.2 +2008,1,1,8,30,7.4,1.46,0.035,0.63,50,765,247,0,-1.8,50,765,0,247,75.08,0.13,0.5,51.95,1009,44,4 +2008,1,1,9,30,8.700000000000001,1.32,0.039,0.63,61,848,363,0,-3.2,61,848,0,363,69.17,0.13,0.5,43.12,1008,43,4 +2008,1,1,10,30,9.600000000000001,1.35,0.039,0.63,65,888,431,0,-4.2,65,888,0,431,65.67,0.13,0.5,37.42,1008,39,3.8000000000000003 +2008,1,1,11,30,10.100000000000001,1.3800000000000001,0.039,0.63,66,887,441,0,-4.7,66,887,0,441,65,0.13,0.6000000000000001,35.09,1007,34,3.9000000000000004 +2008,1,1,12,30,10.200000000000001,1.34,0.043000000000000003,0.63,65,857,397,8,-4.7,192,245,0,287,67.24,0.13,0.6000000000000001,34.84,1007,33,4 +2008,1,1,13,30,9.4,1.35,0.045,0.63,59,788,301,7,-4.4,130,23,0,137,72.12,0.13,0.6000000000000001,37.410000000000004,1007,33,3.7 +2008,1,1,14,30,7.2,1.37,0.047,0.63,46,640,167,0,-3.4000000000000004,46,640,0,167,79.10000000000001,0.13,0.6000000000000001,46.89,1007,32,2.9000000000000004 +2008,1,1,15,30,5,1.3,0.057,0.63,18,248,29,0,-2.2,18,248,0,29,87.52,0.13,0.6000000000000001,59.480000000000004,1008,32,2.3000000000000003 +2008,1,1,16,30,4.2,1.31,0.062,0.63,0,0,0,0,-2.3000000000000003,0,0,0,0,97.54,0.13,0.7000000000000001,62.43,1008,37,2.4000000000000004 +2008,1,1,17,30,3.6,1.34,0.065,0.63,0,0,0,5,-2.2,0,0,0,0,108.04,0.13,0.7000000000000001,65.62,1009,43,2.2 +2008,1,1,18,30,3,1.37,0.065,0.63,0,0,0,4,-2.1,0,0,0,0,119,0.13,0.7000000000000001,69.03,1009,47,2 +2008,1,1,19,30,2.5,1.3900000000000001,0.065,0.63,0,0,0,0,-2.1,0,0,0,0,130.14000000000001,0.13,0.7000000000000001,71.89,1009,49,1.8 +2008,1,1,20,30,2.1,1.41,0.067,0.63,0,0,0,0,-2.1,0,0,0,0,141.12,0.13,0.7000000000000001,74,1009,52,1.7000000000000002 +2008,1,1,21,30,2,1.42,0.069,0.63,0,0,0,4,-2,0,0,0,0,151.29,0.13,0.8,74.57000000000001,1009,56,1.5 +2008,1,1,22,30,1.8,1.42,0.07,0.63,0,0,0,7,-2,0,0,0,0,159.01,0.13,0.8,75.75,1008,59,1.5 +2008,1,1,23,30,1.6,1.44,0.07,0.63,0,0,0,7,-2.1,0,0,0,0,160.8,0.13,0.8,76.47,1008,61,1.5 +2008,1,2,0,30,1.2000000000000002,1.45,0.07100000000000001,0.63,0,0,0,0,-2.2,0,0,0,0,155.32,0.13,0.8,78.34,1008,64,1.5 +2008,1,2,1,30,0.9,1.46,0.07,0.63,0,0,0,0,-2.3000000000000003,0,0,0,0,145.97,0.13,0.8,79.36,1008,66,1.5 +2008,1,2,2,30,0.6000000000000001,1.47,0.07,0.63,0,0,0,0,-2.5,0,0,0,0,135.25,0.13,0.8,79.98,1008,68,1.5 +2008,1,2,3,30,0.4,1.47,0.07100000000000001,0.63,0,0,0,0,-2.5,0,0,0,0,124.12,0.13,0.8,80.65,1008,69,1.5 +2008,1,2,4,30,0.30000000000000004,1.48,0.07200000000000001,0.63,0,0,0,0,-2.6,0,0,0,0,113.03,0.13,0.8,81.04,1008,73,1.6 +2008,1,2,5,30,0.2,1.48,0.074,0.63,0,0,0,0,-2.6,0,0,0,0,102.28,0.13,0.8,81.29,1008,78,1.6 +2008,1,2,6,30,1.2000000000000002,1.48,0.076,0.63,0,0,0,1,-2.7,0,0,0,0,92.14,0.13,0.8,75.45,1008,83,1.7000000000000002 +2008,1,2,7,30,3.7,1.48,0.079,0.63,39,444,94,2,-1.9000000000000001,30,0,7,30,82.83,0.13,0.8,66.68,1008,91,2.3000000000000003 +2008,1,2,8,30,6.300000000000001,1.47,0.084,0.63,63,655,232,4,-1.8,33,0,0,33,75.06,0.13,0.9,56.15,1008,109,2.6 +2008,1,2,9,30,8,1.46,0.088,0.63,76,752,344,2,-1.6,211,70,0,237,69.13,0.13,0.9,50.9,1008,141,2.3000000000000003 +2008,1,2,10,30,9,1.46,0.093,0.63,84,787,409,2,-0.8,245,78,0,278,65.6,0.13,1,50.1,1007,173,2.2 +2008,1,2,11,30,9.3,1.46,0.098,0.63,87,784,420,5,-0.7000000000000001,250,61,0,276,64.91,0.13,1.1,49.800000000000004,1007,192,2.1 +2008,1,2,12,30,9.200000000000001,1.41,0.132,0.63,94,715,372,2,-0.6000000000000001,225,46,0,243,67.13,0.13,1.1,50.410000000000004,1007,200,2 +2008,1,2,13,30,8.6,1.42,0.133,0.63,83,638,280,4,-0.5,57,0,0,57,71.99,0.13,1.1,52.95,1006,196,1.6 +2008,1,2,14,30,7,1.43,0.134,0.63,61,473,152,4,0.7000000000000001,20,0,0,20,78.97,0.13,1.2000000000000002,64.18,1006,187,1.2000000000000002 +2008,1,2,15,30,5.6000000000000005,1.45,0.153,0.63,20,122,25,5,0.8,5,0,7,5,87.4,0.13,1.2000000000000002,71.21000000000001,1006,176,1.1 +2008,1,2,16,30,5,1.44,0.156,0.63,0,0,0,4,0.6000000000000001,0,0,0,0,97.4,0.13,1.2000000000000002,73.42,1006,158,1.3 +2008,1,2,17,30,4.5,1.44,0.161,0.63,0,0,0,7,0.9,0,0,0,0,107.9,0.13,1.3,77.69,1006,143,1.5 +2008,1,2,18,30,4.1000000000000005,1.42,0.169,0.63,0,0,0,4,1.2000000000000002,0,0,0,0,118.86,0.13,1.3,81.35000000000001,1006,134,1.6 +2008,1,2,19,30,4,1.3900000000000001,0.176,0.63,0,0,0,4,1.4000000000000001,0,0,0,0,130,0.13,1.4000000000000001,83.10000000000001,1006,128,1.7000000000000002 +2008,1,2,20,30,4.1000000000000005,1.35,0.18,0.63,0,0,0,4,1.5,0,0,0,0,140.98,0.13,1.4000000000000001,83,1006,125,1.9000000000000001 +2008,1,2,21,30,4.2,1.3,0.182,0.63,0,0,0,4,1.4000000000000001,0,0,0,0,151.15,0.13,1.5,81.84,1005,127,2.3000000000000003 +2008,1,2,22,30,4.7,1.24,0.183,0.63,0,0,0,4,1.3,0,0,0,0,158.88,0.13,1.5,78.8,1005,127,2.9000000000000004 +2008,1,2,23,30,5.1000000000000005,1.19,0.17400000000000002,0.63,0,0,0,4,1.4000000000000001,0,0,0,0,160.73,0.13,1.6,76.79,1005,124,3.7 +2008,1,3,0,30,5.2,1.18,0.161,0.63,0,0,0,4,1.3,0,0,0,0,155.31,0.13,1.6,75.94,1005,121,4.1000000000000005 +2008,1,3,1,30,5.2,1.18,0.14400000000000002,0.63,0,0,0,4,1.2000000000000002,0,0,0,0,145.99,0.13,1.6,75.25,1004,121,4.5 +2008,1,3,2,30,5.2,1.18,0.13,0.63,0,0,0,4,1.1,0,0,0,0,135.28,0.13,1.5,74.68,1004,121,4.7 +2008,1,3,3,30,5.1000000000000005,1.2,0.122,0.63,0,0,0,4,0.8,0,0,0,0,124.16,0.13,1.5,73.73,1004,116,4.800000000000001 +2008,1,3,4,30,5.1000000000000005,1.21,0.121,0.63,0,0,0,8,0.5,0,0,0,0,113.07000000000001,0.13,1.6,72.22,1003,112,4.7 +2008,1,3,5,30,5.300000000000001,1.21,0.122,0.63,0,0,0,7,0.4,0,0,0,0,102.31,0.13,1.6,70.79,1003,111,4.7 +2008,1,3,6,30,5.7,1.19,0.129,0.63,0,0,0,6,0.6000000000000001,0,0,0,0,92.16,0.13,1.6,69.82000000000001,1003,112,4.800000000000001 +2008,1,3,7,30,6.300000000000001,1.18,0.131,0.63,45,325,86,7,1.1,4,0,7,4,82.82000000000001,0.13,1.6,69.21000000000001,1004,113,4.9 +2008,1,3,8,30,6.800000000000001,1.18,0.128,0.63,74,559,219,7,1.4000000000000001,18,0,0,18,75.04,0.13,1.6,68.7,1004,112,4.9 +2008,1,3,9,30,7.6000000000000005,1.16,0.13,0.63,90,667,328,7,1.9000000000000001,150,23,0,158,69.08,0.13,1.6,66.97,1004,114,5.1000000000000005 +2008,1,3,10,30,8.3,1.2,0.136,0.63,100,710,394,7,2.3000000000000003,114,4,0,116,65.53,0.13,1.6,65.96000000000001,1004,116,5.4 +2008,1,3,11,30,8.9,1.21,0.14300000000000002,0.63,103,712,406,5,2.9000000000000004,83,0,0,83,64.81,0.13,1.6,65.84,1003,117,5.4 +2008,1,3,12,30,9.3,1.19,0.152,0.63,102,672,364,5,3.4000000000000004,171,9,0,175,67.02,0.13,1.6,66.57000000000001,1003,117,5.4 +2008,1,3,13,30,9.4,1.23,0.157,0.63,90,589,273,3,3.9000000000000004,182,52,0,198,71.87,0.13,1.6,68.44,1002,118,5.300000000000001 +2008,1,3,14,30,8.700000000000001,1.29,0.14200000000000002,0.63,63,450,150,5,4.2,44,0,0,44,78.84,0.13,1.6,73.39,1002,118,4.800000000000001 +2008,1,3,15,30,7.800000000000001,1.31,0.138,0.63,21,126,27,4,4.2,6,0,7,6,87.27,0.13,1.6,78.18,1003,118,4.5 +2008,1,3,16,30,7.300000000000001,1.3,0.146,0.63,0,0,0,3,4.1000000000000005,0,0,0,0,97.26,0.13,1.6,80.15,1003,117,4.5 +2008,1,3,17,30,7.2,1.27,0.145,0.63,0,0,0,3,4,0,0,0,0,107.76,0.13,1.6,80.29,1003,115,4.6000000000000005 +2008,1,3,18,30,7.2,1.24,0.15,0.63,0,0,0,4,4,0,0,0,0,118.72,0.13,1.6,80.14,1003,116,4.6000000000000005 +2008,1,3,19,30,7.2,1.21,0.159,0.63,0,0,0,4,4,0,0,0,0,129.86,0.13,1.6,80.05,1003,118,4.800000000000001 +2008,1,3,20,30,7.1000000000000005,1.21,0.14300000000000002,0.63,0,0,0,4,4,0,0,0,0,140.84,0.13,1.7000000000000002,80.62,1003,116,5 +2008,1,3,21,30,6.800000000000001,1.2,0.139,0.63,0,0,0,4,3.8000000000000003,0,0,0,0,151.01,0.13,1.7000000000000002,81.24,1003,113,4.800000000000001 +2008,1,3,22,30,6.5,1.21,0.14100000000000001,0.63,0,0,0,4,3.6,0,0,0,0,158.75,0.13,1.7000000000000002,81.58,1003,112,4.5 +2008,1,3,23,30,6.300000000000001,1.2,0.132,0.63,0,0,0,4,3.5,0,0,0,0,160.66,0.13,1.7000000000000002,82.10000000000001,1003,112,4.1000000000000005 +2008,1,4,0,30,6.1000000000000005,1.19,0.136,0.63,0,0,0,3,3.5,0,0,0,0,155.29,0.13,1.7000000000000002,83.19,1003,111,3.9000000000000004 +2008,1,4,1,30,5.9,1.21,0.138,0.63,0,0,0,4,3.4000000000000004,0,0,0,0,146,0.13,1.6,84.04,1003,109,3.8000000000000003 +2008,1,4,2,30,5.800000000000001,1.23,0.127,0.63,0,0,0,4,3.3000000000000003,0,0,0,0,135.31,0.13,1.6,83.95,1003,107,3.8000000000000003 +2008,1,4,3,30,5.7,1.25,0.12,0.63,0,0,0,0,3.3000000000000003,0,0,0,0,124.19,0.13,1.6,84.44,1003,104,3.6 +2008,1,4,4,30,5.6000000000000005,1.27,0.117,0.63,0,0,0,0,3.2,0,0,0,0,113.09,0.13,1.6,84.68,1003,102,3.3000000000000003 +2008,1,4,5,30,5.5,1.29,0.109,0.63,0,0,0,0,3.2,0,0,0,0,102.32000000000001,0.13,1.6,84.97,1004,102,3.1 +2008,1,4,6,30,6.2,1.28,0.10200000000000001,0.63,0,0,0,3,3.1,0,0,0,0,92.16,0.13,1.6,80.49,1004,103,3.2 +2008,1,4,7,30,8.1,1.27,0.1,0.63,42,375,89,3,3.5,18,0,7,18,82.82000000000001,0.13,1.6,72.89,1004,103,3.9000000000000004 +2008,1,4,8,30,10.3,1.27,0.094,0.63,66,612,224,7,4.1000000000000005,132,60,0,147,75.01,0.13,1.6,65.41,1005,105,4.9 +2008,1,4,9,30,12.100000000000001,1.42,0.079,0.63,74,740,339,8,4.5,176,218,0,254,69.03,0.13,1.6,59.71,1004,113,5.800000000000001 +2008,1,4,10,30,13.4,1.3800000000000001,0.082,0.63,81,778,404,8,5.1000000000000005,204,214,0,293,65.45,0.13,1.7000000000000002,57.36,1004,120,6.300000000000001 +2008,1,4,11,30,13.8,1.31,0.08700000000000001,0.63,84,773,414,7,5.800000000000001,206,76,0,239,64.71000000000001,0.13,1.9000000000000001,58.57,1003,122,6.1000000000000005 +2008,1,4,12,30,13.5,1.23,0.1,0.63,85,724,369,6,6.4,13,0,0,13,66.89,0.13,2.1,62.39,1003,121,5.4 +2008,1,4,13,30,12.600000000000001,1.11,0.131,0.63,84,604,273,6,7.2,11,0,0,11,71.73,0.13,2.2,69.46000000000001,1004,117,4.7 +2008,1,4,14,30,11.600000000000001,0.98,0.153,0.63,67,409,147,6,7.6000000000000005,4,0,0,4,78.7,0.13,2.2,76.21000000000001,1004,113,4.3 +2008,1,4,15,30,10.9,0.9,0.17300000000000001,0.63,22,74,25,7,7.7,4,0,7,4,87.13,0.13,2.1,80.45,1005,109,4.3 +2008,1,4,16,30,10.5,0.8200000000000001,0.178,0.63,0,0,0,4,7.6000000000000005,0,0,0,0,97.11,0.13,2,82.08,1005,104,4.3 +2008,1,4,17,30,10.200000000000001,0.73,0.176,0.63,0,0,0,7,7.300000000000001,0,0,0,0,107.61,0.13,1.8,82,1006,101,4.2 +2008,1,4,18,30,9.700000000000001,0.64,0.17,0.63,0,0,0,7,6.9,0,0,0,0,118.57000000000001,0.13,1.7000000000000002,82.75,1006,101,3.8000000000000003 +2008,1,4,19,30,9.1,0.5700000000000001,0.161,0.63,0,0,0,7,6.6000000000000005,0,0,0,0,129.72,0.13,1.5,84.47,1006,103,3.4000000000000004 +2008,1,4,20,30,8.8,0.53,0.151,0.63,0,0,0,9,6.7,0,0,0,0,140.69,0.13,1.5,86.76,1006,108,3.1 +2008,1,4,21,30,8.8,0.51,0.14400000000000002,0.63,0,0,0,7,7.1000000000000005,0,0,0,0,150.86,0.13,1.4000000000000001,89.01,1006,114,2.9000000000000004 +2008,1,4,22,30,9.1,0.51,0.14300000000000002,0.63,0,0,0,4,7.6000000000000005,0,0,0,0,158.62,0.13,1.5,90.25,1007,119,2.8000000000000003 +2008,1,4,23,30,9.5,0.51,0.14,0.63,0,0,0,4,8.200000000000001,0,0,0,0,160.57,0.13,1.5,91.3,1007,121,2.7 +2008,1,5,0,30,9.600000000000001,0.54,0.139,0.63,0,0,0,7,8.6,0,0,0,0,155.27,0.13,1.6,93.54,1007,121,2.6 +2008,1,5,1,30,9.5,0.56,0.139,0.63,0,0,0,7,8.9,0,0,0,0,146.01,0.13,1.6,95.84,1007,120,2.5 +2008,1,5,2,30,9.200000000000001,0.55,0.136,0.63,0,0,0,4,8.8,0,0,0,0,135.33,0.13,1.7000000000000002,97.60000000000001,1007,118,2.5 +2008,1,5,3,30,9.3,0.55,0.136,0.63,0,0,0,7,8.8,0,0,0,0,124.21000000000001,0.13,1.8,96.77,1007,121,2.6 +2008,1,5,4,30,9.600000000000001,0.58,0.138,0.63,0,0,0,6,9,0,0,0,0,113.11,0.13,1.9000000000000001,95.93,1008,128,2.7 +2008,1,5,5,30,10.100000000000001,0.64,0.139,0.63,0,0,0,8,9.4,0,0,0,0,102.34,0.13,2,95.47,1008,135,2.9000000000000004 +2008,1,5,6,30,10.700000000000001,0.74,0.151,0.63,0,0,0,4,9.9,0,0,0,0,92.16,0.13,2,94.91,1009,140,3 +2008,1,5,7,30,11.3,0.8,0.161,0.63,49,252,81,7,10.4,8,0,7,8,82.8,0.13,2,93.99,1009,142,3.2 +2008,1,5,8,30,12,0.78,0.162,0.63,84,487,211,8,10.8,4,0,0,4,74.97,0.13,1.9000000000000001,92.26,1009,144,3.3000000000000003 +2008,1,5,9,30,12.5,0.71,0.169,0.63,105,592,318,7,11.100000000000001,73,1,0,73,68.96000000000001,0.13,1.9000000000000001,91.07000000000001,1009,147,3.3000000000000003 +2008,1,5,10,30,12.9,0.62,0.179,0.63,119,630,381,6,11.3,73,1,0,73,65.36,0.13,1.9000000000000001,89.93,1009,149,3.4000000000000004 +2008,1,5,11,30,13.3,0.55,0.178,0.63,121,638,395,9,11.4,8,0,0,8,64.6,0.13,1.9000000000000001,88.12,1009,150,3.4000000000000004 +2008,1,5,12,30,13.4,0.97,0.084,0.63,81,744,374,6,11.3,7,0,0,7,66.76,0.13,1.9000000000000001,87.26,1008,152,3.2 +2008,1,5,13,30,12.8,0.96,0.08600000000000001,0.63,72,670,284,6,11.200000000000001,11,0,0,11,71.59,0.13,1.9000000000000001,89.9,1009,154,2.7 +2008,1,5,14,30,11.9,0.9500000000000001,0.08600000000000001,0.63,55,517,158,9,10.8,4,0,0,4,78.55,0.13,1.9000000000000001,92.93,1009,154,2.3000000000000003 +2008,1,5,15,30,10.9,0.91,0.08700000000000001,0.63,21,169,30,9,10.4,7,0,7,7,86.99,0.13,1.9000000000000001,96.55,1009,150,2.2 +2008,1,5,16,30,10,0.8300000000000001,0.08,0.63,0,0,0,6,10,0,0,0,0,96.96000000000001,0.13,1.9000000000000001,100,1009,148,2.1 +2008,1,5,17,30,9.3,0.73,0.081,0.63,0,0,0,8,9.3,0,0,0,0,107.46000000000001,0.13,1.9000000000000001,100,1009,151,2 +2008,1,5,18,30,9,0.67,0.082,0.63,0,0,0,4,9,0,0,0,0,118.42,0.13,1.9000000000000001,100,1009,159,1.9000000000000001 +2008,1,5,19,30,8.700000000000001,0.62,0.089,0.63,0,0,0,3,8.700000000000001,0,0,0,0,129.57,0.13,1.8,100,1009,167,1.9000000000000001 +2008,1,5,20,30,8.700000000000001,0.54,0.10400000000000001,0.63,0,0,0,0,8.700000000000001,0,0,0,0,140.54,0.13,1.8,100,1009,175,1.8 +2008,1,5,21,30,9,0.53,0.127,0.63,0,0,0,0,8.8,0,0,0,0,150.71,0.13,1.8,98.82000000000001,1009,181,1.7000000000000002 +2008,1,5,22,30,9,0.53,0.133,0.63,0,0,0,0,8.9,0,0,0,0,158.48,0.13,1.7000000000000002,99.36,1009,186,1.7000000000000002 +2008,1,5,23,30,9.200000000000001,0.5,0.124,0.63,0,0,0,0,8.700000000000001,0,0,0,0,160.48,0.13,1.7000000000000002,96.79,1009,190,1.8 +2008,1,6,0,30,9.600000000000001,0.53,0.117,0.63,0,0,0,4,9.1,0,0,0,0,155.23,0.14,1.7000000000000002,96.59,1009,190,1.9000000000000001 +2008,1,6,1,30,9.5,0.56,0.094,0.63,0,0,0,7,9.4,0,0,0,0,146.02,0.14,1.7000000000000002,99.07000000000001,1009,185,1.9000000000000001 +2008,1,6,2,30,9.5,0.62,0.07100000000000001,0.63,0,0,0,7,9.200000000000001,0,0,0,0,135.34,0.14,1.8,98.08,1008,183,2.1 +2008,1,6,3,30,9.9,0.76,0.057,0.63,0,0,0,6,9.3,0,0,0,0,124.23,0.14,2,95.8,1008,186,2.6 +2008,1,6,4,30,10.5,0.88,0.051000000000000004,0.63,0,0,0,6,9.600000000000001,0,0,0,0,113.13,0.14,2.2,94.08,1007,193,3.3000000000000003 +2008,1,6,5,30,10.9,0.9500000000000001,0.055,0.63,0,0,0,6,10.100000000000001,0,0,0,0,102.34,0.14,2.3000000000000003,94.91,1007,202,3.8000000000000003 +2008,1,6,6,30,11.200000000000001,0.96,0.064,0.63,0,0,0,9,10.4,0,0,0,0,92.16,0.14,2.4000000000000004,94.95,1007,209,4 +2008,1,6,7,30,11.700000000000001,0.96,0.062,0.63,37,413,89,6,10.700000000000001,4,0,7,4,82.78,0.14,2.4000000000000004,93.3,1008,216,4.2 +2008,1,6,8,30,11.9,0.96,0.061,0.63,58,635,223,6,10.700000000000001,4,0,0,4,74.93,0.14,2.5,92.16,1008,222,4.4 +2008,1,6,9,30,12.100000000000001,1,0.07200000000000001,0.63,73,720,332,6,10.5,6,0,0,6,68.9,0.14,2.5,89.89,1008,229,5 +2008,1,6,10,30,12.100000000000001,0.91,0.078,0.63,81,756,398,7,10.100000000000001,8,0,0,8,65.27,0.14,2.5,87.54,1008,231,5.2 +2008,1,6,11,30,12.100000000000001,0.78,0.088,0.63,87,749,410,8,10.100000000000001,9,0,0,9,64.48,0.14,2.5,87.32000000000001,1007,225,5 +2008,1,6,12,30,12.100000000000001,0.72,0.11900000000000001,0.63,95,680,365,7,10.4,6,0,0,6,66.63,0.14,2.5,89.36,1007,220,4.800000000000001 +2008,1,6,13,30,12.200000000000001,0.63,0.135,0.63,90,580,275,7,10.700000000000001,10,0,0,10,71.44,0.14,2.4000000000000004,90.59,1006,218,4.5 +2008,1,6,14,30,12.3,0.56,0.14300000000000002,0.63,70,404,151,6,10.9,4,0,0,4,78.4,0.14,2.3000000000000003,91.47,1006,218,4.1000000000000005 +2008,1,6,15,30,12.200000000000001,0.62,0.162,0.63,24,72,28,7,11.100000000000001,9,0,7,9,86.84,0.14,2.3000000000000003,93.16,1006,222,3.5 +2008,1,6,16,30,12.100000000000001,0.62,0.15,0.63,0,0,0,4,11.3,0,0,0,0,96.81,0.14,2.2,94.65,1007,227,2.7 +2008,1,6,17,30,11.8,0.62,0.135,0.63,0,0,0,4,11.3,0,0,0,0,107.31,0.14,2.2,96.81,1007,231,2 +2008,1,6,18,30,11.600000000000001,0.68,0.145,0.63,0,0,0,3,11.3,0,0,0,0,118.27,0.14,2.2,98.22,1008,230,1.6 +2008,1,6,19,30,11.5,0.71,0.139,0.63,0,0,0,4,11.5,0,0,0,0,129.42000000000002,0.14,2.3000000000000003,99.7,1008,224,1.5 +2008,1,6,20,30,11.5,0.73,0.124,0.63,0,0,0,7,11.5,0,0,0,0,140.39000000000001,0.14,2.3000000000000003,100,1009,217,1.4000000000000001 +2008,1,6,21,30,11.4,0.79,0.123,0.63,0,0,0,4,11.4,0,0,0,0,150.55,0.14,2.4000000000000004,100,1009,210,1.3 +2008,1,6,22,30,11.3,0.8200000000000001,0.116,0.63,0,0,0,3,11.3,0,0,0,0,158.33,0.14,2.4000000000000004,100,1009,202,1.2000000000000002 +2008,1,6,23,30,11.200000000000001,0.8300000000000001,0.1,0.63,0,0,0,8,11.200000000000001,0,0,0,0,160.37,0.14,2.4000000000000004,100,1009,191,1.2000000000000002 +2008,1,7,0,30,11,0.86,0.094,0.63,0,0,0,0,11,0,0,0,0,155.20000000000002,0.13,2.4000000000000004,100,1009,178,1.2000000000000002 +2008,1,7,1,30,10.8,0.88,0.085,0.63,0,0,0,0,10.8,0,0,0,0,146.01,0.13,2.4000000000000004,100,1009,168,1.3 +2008,1,7,2,30,10.700000000000001,0.88,0.075,0.63,0,0,0,0,10.700000000000001,0,0,0,0,135.35,0.13,2.4000000000000004,100,1009,163,1.3 +2008,1,7,3,30,10.8,0.91,0.074,0.63,0,0,0,3,10.8,0,0,0,0,124.24000000000001,0.13,2.3000000000000003,100,1009,161,1.4000000000000001 +2008,1,7,4,30,10.8,0.93,0.07,0.63,0,0,0,3,10.8,0,0,0,0,113.14,0.13,2.3000000000000003,100,1009,160,1.4000000000000001 +2008,1,7,5,30,10.700000000000001,0.9500000000000001,0.061,0.63,0,0,0,3,10.700000000000001,0,0,0,0,102.34,0.13,2.3000000000000003,100,1009,158,1.4000000000000001 +2008,1,7,6,30,11.3,0.99,0.063,0.63,0,0,0,1,10.8,0,0,0,0,92.14,0.13,2.3000000000000003,96.83,1010,153,1.4000000000000001 +2008,1,7,7,30,12.600000000000001,1.02,0.062,0.63,37,420,90,3,11.5,6,0,7,6,82.75,0.13,2.3000000000000003,92.98,1010,148,2.1 +2008,1,7,8,30,13.700000000000001,1.05,0.055,0.63,56,654,227,3,12.100000000000001,8,0,0,8,74.88,0.13,2.3000000000000003,90.02,1010,149,2.9000000000000004 +2008,1,7,9,30,14.5,1.1,0.053,0.63,66,757,339,5,12.100000000000001,53,0,0,53,68.82000000000001,0.13,2.3000000000000003,85.37,1010,156,3.3000000000000003 +2008,1,7,10,30,15.100000000000001,1.11,0.054,0.63,71,799,406,3,11.9,50,0,0,50,65.17,0.13,2.3000000000000003,81.05,1009,166,3.4000000000000004 +2008,1,7,11,30,15.4,1.11,0.054,0.63,72,808,422,3,11.600000000000001,65,0,0,65,64.35,0.13,2.3000000000000003,78.25,1009,176,3.3000000000000003 +2008,1,7,12,30,15.3,0.86,0.077,0.63,79,748,377,1,11.4,79,748,0,377,66.48,0.13,2.3000000000000003,77.56,1008,184,3.2 +2008,1,7,13,30,14.8,0.91,0.081,0.63,72,675,288,2,11.4,27,0,0,27,71.29,0.13,2.3000000000000003,79.87,1008,191,2.8000000000000003 +2008,1,7,14,30,13.8,0.9400000000000001,0.082,0.63,56,527,163,1,11.5,56,527,0,163,78.24,0.13,2.3000000000000003,86.02,1008,199,1.8 +2008,1,7,15,30,12.600000000000001,0.99,0.095,0.63,23,175,34,0,11.600000000000001,23,175,0,34,86.69,0.13,2.3000000000000003,93.73,1008,205,1.1 +2008,1,7,16,30,12,1.04,0.094,0.63,0,0,0,4,11.600000000000001,0,0,0,0,96.65,0.13,2.2,97.23,1009,206,0.9 +2008,1,7,17,30,11.700000000000001,1.06,0.085,0.63,0,0,0,1,11.600000000000001,0,0,0,0,107.15,0.13,2.2,99.3,1009,200,0.8 +2008,1,7,18,30,11.5,1.1,0.08600000000000001,0.63,0,0,0,0,11.5,0,0,0,0,118.12,0.13,2.1,100,1009,193,0.7000000000000001 +2008,1,7,19,30,11.4,1.1400000000000001,0.08600000000000001,0.63,0,0,0,1,11.4,0,0,0,0,129.26,0.13,2.1,99.79,1009,182,0.7000000000000001 +2008,1,7,20,30,11.3,1.18,0.083,0.63,0,0,0,0,11.200000000000001,0,0,0,0,140.23,0.13,2.1,99.4,1009,161,0.7000000000000001 +2008,1,7,21,30,11.100000000000001,1.21,0.084,0.63,0,0,0,0,11,0,0,0,0,150.39000000000001,0.13,2,99.55,1009,142,0.8 +2008,1,7,22,30,10.8,1.23,0.084,0.63,0,0,0,0,10.8,0,0,0,0,158.17000000000002,0.13,1.9000000000000001,100,1009,129,0.9 +2008,1,7,23,30,10.5,1.24,0.083,0.63,0,0,0,0,10.5,0,0,0,0,160.26,0.13,1.9000000000000001,100,1009,119,1 +2008,1,8,0,30,10.3,1.25,0.09,0.63,0,0,0,5,10.3,0,0,0,0,155.15,0.12,1.8,100,1009,112,1 +2008,1,8,1,30,10,1.25,0.096,0.63,0,0,0,7,10,0,0,0,0,146,0.12,1.8,100,1009,108,1.1 +2008,1,8,2,30,9.8,1.26,0.096,0.63,0,0,0,3,9.8,0,0,0,0,135.36,0.12,1.7000000000000002,100,1010,103,1.2000000000000002 +2008,1,8,3,30,9.8,1.27,0.10200000000000001,0.63,0,0,0,3,9.8,0,0,0,0,124.25,0.12,1.6,100,1010,98,1.2000000000000002 +2008,1,8,4,30,9.9,1.3,0.105,0.63,0,0,0,1,9.8,0,0,0,0,113.14,0.12,1.6,99.02,1010,90,1.2000000000000002 +2008,1,8,5,30,9.9,1.34,0.097,0.63,0,0,0,0,9.4,0,0,0,0,102.34,0.12,1.6,96.89,1010,83,1.1 +2008,1,8,6,30,10.3,1.37,0.096,0.63,0,0,0,0,9,0,0,0,0,92.12,0.12,1.5,91.89,1011,77,1.1 +2008,1,8,7,30,11.700000000000001,1.41,0.091,0.63,41,404,92,2,9.1,32,0,7,33,82.71000000000001,0.12,1.5,84.19,1011,74,1.3 +2008,1,8,8,30,13.5,1.45,0.081,0.63,64,648,233,1,8.9,64,648,0,233,74.82000000000001,0.12,1.4000000000000001,73.52,1012,79,1.4000000000000001 +2008,1,8,9,30,15.200000000000001,1.1500000000000001,0.084,0.63,78,740,346,0,8.6,78,740,0,346,68.74,0.12,1.4000000000000001,64.74,1012,110,0.8 +2008,1,8,10,30,16.400000000000002,1.16,0.081,0.63,83,791,416,0,8.6,83,791,0,416,65.06,0.12,1.4000000000000001,60.07,1011,177,0.5 +2008,1,8,11,30,16.900000000000002,1.19,0.075,0.63,82,808,433,0,8.5,82,808,0,433,64.22,0.12,1.4000000000000001,57.78,1011,230,0.6000000000000001 +2008,1,8,12,30,17,0.89,0.084,0.63,83,766,390,0,8.4,83,766,0,390,66.33,0.12,1.4000000000000001,56.76,1011,242,0.9 +2008,1,8,13,30,16.5,0.91,0.083,0.63,74,699,300,0,8.3,74,699,0,300,71.13,0.12,1.4000000000000001,58.52,1011,241,1 +2008,1,8,14,30,14.700000000000001,0.93,0.082,0.63,57,554,171,0,9.3,57,554,0,171,78.08,0.12,1.4000000000000001,70.17,1011,243,1 +2008,1,8,15,30,12.700000000000001,0.66,0.1,0.63,26,164,36,0,9.5,26,164,0,36,86.54,0.12,1.4000000000000001,80.73,1011,249,1 +2008,1,8,16,30,11.8,0.68,0.10400000000000001,0.63,0,0,0,3,8.700000000000001,0,0,0,0,96.49000000000001,0.12,1.4000000000000001,81.3,1012,251,1.1 +2008,1,8,17,30,11.5,0.68,0.11,0.63,0,0,0,0,8.700000000000001,0,0,0,0,106.99000000000001,0.12,1.5,82.94,1012,243,1 +2008,1,8,18,30,11.200000000000001,0.68,0.122,0.63,0,0,0,0,8.8,0,0,0,0,117.96000000000001,0.12,1.5,85.08,1012,220,0.8 +2008,1,8,19,30,10.9,0.6900000000000001,0.132,0.63,0,0,0,0,8.9,0,0,0,0,129.1,0.12,1.5,87.46000000000001,1012,190,0.8 +2008,1,8,20,30,10.600000000000001,0.7000000000000001,0.134,0.63,0,0,0,3,9,0,0,0,0,140.07,0.12,1.5,89.93,1012,163,0.8 +2008,1,8,21,30,10.4,0.75,0.135,0.63,0,0,0,1,9.1,0,0,0,0,150.23,0.12,1.4000000000000001,91.51,1012,145,0.9 +2008,1,8,22,30,10.200000000000001,0.8200000000000001,0.127,0.63,0,0,0,3,9,0,0,0,0,158.01,0.12,1.4000000000000001,92.56,1012,133,1 +2008,1,8,23,30,9.9,0.87,0.116,0.63,0,0,0,0,8.9,0,0,0,0,160.14000000000001,0.12,1.4000000000000001,93.31,1012,126,1.1 +2008,1,9,0,30,9.600000000000001,0.9400000000000001,0.113,0.63,0,0,0,0,8.6,0,0,0,0,155.09,0.13,1.4000000000000001,93.19,1012,123,1.2000000000000002 +2008,1,9,1,30,9.200000000000001,1,0.108,0.63,0,0,0,3,8.1,0,0,0,0,145.98,0.13,1.4000000000000001,92.89,1012,124,1.3 +2008,1,9,2,30,8.9,1.05,0.099,0.63,0,0,0,4,7.5,0,0,0,0,135.35,0.13,1.4000000000000001,91.07000000000001,1012,126,1.3 +2008,1,9,3,30,8.700000000000001,1.1,0.094,0.63,0,0,0,4,6.9,0,0,0,0,124.25,0.13,1.3,88.43,1012,126,1.3 +2008,1,9,4,30,8.6,1.1400000000000001,0.09,0.63,0,0,0,3,6.300000000000001,0,0,0,0,113.13,0.13,1.3,85.44,1012,125,1.3 +2008,1,9,5,30,8.6,1.16,0.08600000000000001,0.63,0,0,0,4,5.9,0,0,0,0,102.32000000000001,0.13,1.3,83,1012,125,1.3 +2008,1,9,6,30,9.200000000000001,1.19,0.085,0.63,0,0,0,4,5.800000000000001,0,0,0,0,92.10000000000001,0.13,1.4000000000000001,79.19,1013,125,1.4000000000000001 +2008,1,9,7,30,10.600000000000001,1.2,0.08600000000000001,0.63,42,407,94,5,6.4,6,0,7,6,82.67,0.13,1.4000000000000001,75.09,1013,125,1.9000000000000001 +2008,1,9,8,30,11.9,1.21,0.089,0.63,67,631,232,7,6.2,65,3,7,66,74.75,0.13,1.4000000000000001,68.28,1013,129,2.5 +2008,1,9,9,30,13.100000000000001,0.89,0.117,0.63,90,688,341,7,6.7,185,115,0,227,68.65,0.13,1.4000000000000001,65.11,1013,140,2.7 +2008,1,9,10,30,14.100000000000001,0.93,0.12,0.63,98,736,410,7,7.7,190,44,0,209,64.94,0.13,1.4000000000000001,65.44,1012,155,2.8000000000000003 +2008,1,9,11,30,14.4,0.98,0.114,0.63,98,756,428,8,8.5,217,254,0,328,64.08,0.13,1.4000000000000001,67.53,1012,166,2.8000000000000003 +2008,1,9,12,30,14.3,1.16,0.112,0.63,92,734,388,8,8.8,189,49,0,209,66.18,0.13,1.5,69.54,1011,172,2.6 +2008,1,9,13,30,13.8,1.23,0.113,0.63,82,662,298,8,9.1,170,133,0,213,70.96000000000001,0.13,1.6,73.29,1011,175,1.9000000000000001 +2008,1,9,14,30,12.700000000000001,1.27,0.109,0.63,62,517,170,7,9.9,66,5,0,67,77.91,0.13,1.8,83.25,1011,177,1.3 +2008,1,9,15,30,11.700000000000001,1.29,0.11900000000000001,0.63,26,183,37,7,9.9,5,0,7,5,86.37,0.13,2,88.74,1012,180,1.1 +2008,1,9,16,30,11.200000000000001,1.3,0.128,0.63,0,0,0,7,9.9,0,0,0,0,96.32000000000001,0.13,2.1,91.8,1012,181,1.1 +2008,1,9,17,30,10.700000000000001,1.29,0.125,0.63,0,0,0,7,10.100000000000001,0,0,0,0,106.83,0.13,2.2,96.34,1012,182,1.1 +2008,1,9,18,30,10.3,1.28,0.121,0.63,0,0,0,8,10.200000000000001,0,0,0,0,117.8,0.13,2.2,99.37,1013,180,1.1 +2008,1,9,19,30,10.100000000000001,1.27,0.114,0.63,0,0,0,5,10.100000000000001,0,0,0,0,128.94,0.13,2.3000000000000003,100,1013,177,1.1 +2008,1,9,20,30,9.9,1.27,0.106,0.63,0,0,0,5,9.9,0,0,0,0,139.91,0.13,2.3000000000000003,100,1013,173,1.1 +2008,1,9,21,30,9.700000000000001,1.27,0.107,0.63,0,0,0,5,9.700000000000001,0,0,0,0,150.06,0.13,2.3000000000000003,100,1013,167,1.1 +2008,1,9,22,30,9.700000000000001,1.27,0.11,0.63,0,0,0,4,9.700000000000001,0,0,0,0,157.85,0.13,2.3000000000000003,100,1013,162,1.1 +2008,1,9,23,30,9.600000000000001,1.27,0.111,0.63,0,0,0,4,9.600000000000001,0,0,0,0,160.02,0.13,2.2,100,1013,157,1.1 +2008,1,10,0,30,9.4,1.27,0.115,0.63,0,0,0,4,9.4,0,0,0,0,155.03,0.13,2.2,100,1013,151,1.2000000000000002 +2008,1,10,1,30,9.3,1.26,0.11800000000000001,0.63,0,0,0,4,9.3,0,0,0,0,145.95000000000002,0.13,2.2,100,1012,147,1.2000000000000002 +2008,1,10,2,30,9.3,1.25,0.116,0.63,0,0,0,4,9.200000000000001,0,0,0,0,135.34,0.13,2.2,99.65,1012,146,1.2000000000000002 +2008,1,10,3,30,9.3,1.25,0.121,0.63,0,0,0,4,9.200000000000001,0,0,0,0,124.24000000000001,0.13,2.2,99.43,1012,145,1.2000000000000002 +2008,1,10,4,30,9.4,1.24,0.124,0.63,0,0,0,4,9.200000000000001,0,0,0,0,113.13,0.13,2.2,98.85000000000001,1012,145,1.2000000000000002 +2008,1,10,5,30,9.5,1.23,0.122,0.63,0,0,0,4,9.3,0,0,0,0,102.31,0.13,2.3000000000000003,98.49000000000001,1013,144,1.1 +2008,1,10,6,30,9.9,1.23,0.123,0.63,0,0,0,4,9.3,0,0,0,0,92.07000000000001,0.13,2.3000000000000003,96.03,1013,142,1 +2008,1,10,7,30,10.9,1.23,0.12,0.63,45,336,88,5,9.700000000000001,5,0,7,5,82.62,0.13,2.3000000000000003,92.10000000000001,1014,143,1 +2008,1,10,8,30,12,1.23,0.112,0.63,71,573,222,8,10.4,20,0,0,20,74.68,0.13,2.3000000000000003,90.09,1014,147,1.1 +2008,1,10,9,30,12.8,1,0.14200000000000002,0.63,96,637,329,5,10.600000000000001,49,0,0,49,68.55,0.13,2.3000000000000003,86.44,1014,160,1.2000000000000002 +2008,1,10,10,30,13.5,1.05,0.126,0.63,98,711,401,5,10.4,144,1,0,145,64.82000000000001,0.13,2.2,81.52,1014,177,1.2000000000000002 +2008,1,10,11,30,13.8,1.07,0.11,0.63,94,741,420,5,10,46,0,0,46,63.93,0.13,2.2,78.08,1014,188,1.4000000000000001 +2008,1,10,12,30,13.9,1.11,0.10400000000000001,0.63,88,724,383,4,9.700000000000001,15,0,0,15,66.02,0.13,2.2,75.78,1013,194,1.5 +2008,1,10,13,30,13.700000000000001,1.1300000000000001,0.1,0.63,78,662,295,4,9.4,50,0,0,50,70.79,0.13,2.2,75.31,1013,195,1.4000000000000001 +2008,1,10,14,30,12.9,1.1300000000000001,0.098,0.63,60,523,171,4,9.4,22,0,0,22,77.74,0.13,2.1,79.4,1013,193,1 +2008,1,10,15,30,12,1.1400000000000001,0.10300000000000001,0.63,26,200,39,4,9.4,6,0,7,6,86.21000000000001,0.13,2.1,84.38,1013,183,0.7000000000000001 +2008,1,10,16,30,11.600000000000001,1.1500000000000001,0.108,0.63,0,0,0,4,9.200000000000001,0,0,0,0,96.16,0.13,2.2,84.95,1014,165,0.8 +2008,1,10,17,30,11.200000000000001,1.1500000000000001,0.109,0.63,0,0,0,4,9.200000000000001,0,0,0,0,106.67,0.13,2.2,87.58,1014,147,0.9 +2008,1,10,18,30,10.8,1.16,0.117,0.63,0,0,0,4,9.3,0,0,0,0,117.64,0.13,2.2,90.3,1014,140,1 +2008,1,10,19,30,10.4,1.1500000000000001,0.127,0.63,0,0,0,5,9.3,0,0,0,0,128.78,0.13,2.3000000000000003,93.16,1014,139,1 +2008,1,10,20,30,10.200000000000001,1.1300000000000001,0.136,0.63,0,0,0,4,9.4,0,0,0,0,139.75,0.13,2.3000000000000003,94.87,1013,139,1 +2008,1,10,21,30,10.100000000000001,1.1300000000000001,0.149,0.63,0,0,0,4,9.5,0,0,0,0,149.89000000000001,0.13,2.3000000000000003,95.95,1013,143,1 +2008,1,10,22,30,10.100000000000001,1.12,0.154,0.63,0,0,0,4,9.5,0,0,0,0,157.67000000000002,0.13,2.3000000000000003,96.13,1013,147,1 +2008,1,10,23,30,10.100000000000001,1.12,0.15,0.63,0,0,0,4,9.600000000000001,0,0,0,0,159.88,0.13,2.2,96.54,1013,153,1 +2008,1,11,0,30,10.200000000000001,1.1300000000000001,0.15,0.63,0,0,0,4,9.700000000000001,0,0,0,0,154.96,0.13,2.2,96.51,1013,157,1.1 +2008,1,11,1,30,10.200000000000001,1.1300000000000001,0.146,0.63,0,0,0,4,9.700000000000001,0,0,0,0,145.92000000000002,0.13,2.2,96.88,1013,159,1.1 +2008,1,11,2,30,10.100000000000001,1.1,0.138,0.63,0,0,0,4,9.8,0,0,0,0,135.33,0.13,2.1,97.71000000000001,1013,161,1.2000000000000002 +2008,1,11,3,30,10,1.08,0.136,0.63,0,0,0,4,9.700000000000001,0,0,0,0,124.23,0.13,2.1,98.06,1012,161,1.2000000000000002 +2008,1,11,4,30,9.8,1.05,0.132,0.63,0,0,0,4,9.600000000000001,0,0,0,0,113.11,0.13,2.1,98.87,1012,161,1.3 +2008,1,11,5,30,9.700000000000001,1.03,0.126,0.63,0,0,0,4,9.5,0,0,0,0,102.28,0.13,2.1,98.94,1012,162,1.4000000000000001 +2008,1,11,6,30,10.3,1.04,0.129,0.63,0,0,0,4,9.4,0,0,0,0,92.03,0.13,2.2,93.92,1012,164,1.6 +2008,1,11,7,30,11.5,1.05,0.133,0.63,47,312,87,3,10.100000000000001,8,0,7,8,82.56,0.13,2.2,91.09,1013,166,2.3000000000000003 +2008,1,11,8,30,12.3,1.05,0.135,0.63,77,539,220,5,10.600000000000001,78,0,7,78,74.60000000000001,0.13,2.2,89.18,1013,167,3 +2008,1,11,9,30,12.9,1.06,0.148,0.63,97,635,331,4,10.600000000000001,13,0,0,13,68.44,0.13,2.2,85.94,1012,168,3.3000000000000003 +2008,1,11,10,30,13.4,1.06,0.152,0.63,107,683,399,8,10.5,9,0,7,9,64.68,0.13,2.2,82.5,1012,170,3.5 +2008,1,11,11,30,13.600000000000001,1.04,0.153,0.63,109,692,415,7,10.4,52,0,0,52,63.78,0.13,2.2,80.79,1011,171,3.7 +2008,1,11,12,30,13.4,1.03,0.17200000000000001,0.63,111,645,375,7,10.3,76,1,0,76,65.85,0.13,2.2,81.72,1010,169,3.6 +2008,1,11,13,30,13.100000000000001,1.03,0.178,0.63,100,564,287,8,10.600000000000001,49,0,7,49,70.62,0.13,2.2,84.99,1010,162,3.2 +2008,1,11,14,30,12.600000000000001,1.02,0.163,0.63,73,430,166,5,11,22,0,0,22,77.56,0.13,2.2,90.24,1010,159,3 +2008,1,11,15,30,12,1.02,0.153,0.63,29,142,38,8,11,10,0,7,10,86.04,0.13,2.2,93.72,1009,160,3.1 +2008,1,11,16,30,11.600000000000001,1.01,0.14,0.63,0,0,0,4,11,0,0,0,0,95.98,0.13,2.2,96.15,1010,161,3.2 +2008,1,11,17,30,11.5,1.01,0.13,0.63,0,0,0,4,11.100000000000001,0,0,0,0,106.5,0.13,2.1,97.08,1010,160,3.4000000000000004 +2008,1,11,18,30,11.4,1.05,0.135,0.63,0,0,0,3,11,0,0,0,0,117.47,0.13,2.1,97.19,1010,159,3.5 +2008,1,11,19,30,11.4,1.09,0.138,0.63,0,0,0,8,10.8,0,0,0,0,128.61,0.13,2.1,96.25,1010,157,3.6 +2008,1,11,20,30,11.200000000000001,1.12,0.14,0.63,0,0,0,7,10.700000000000001,0,0,0,0,139.58,0.13,2.1,96.52,1009,155,3.5 +2008,1,11,21,30,11.100000000000001,1.1500000000000001,0.152,0.63,0,0,0,5,10.600000000000001,0,0,0,0,149.71,0.13,2.1,96.61,1009,154,3.4000000000000004 +2008,1,11,22,30,11.100000000000001,1.17,0.157,0.63,0,0,0,8,10.5,0,0,0,0,157.49,0.13,2.1,96.05,1009,158,3.7 +2008,1,11,23,30,11.3,1.19,0.162,0.63,0,0,0,5,10.600000000000001,0,0,0,0,159.74,0.13,2,95.38,1008,164,4.1000000000000005 +2008,1,12,0,30,11.600000000000001,1.21,0.17200000000000001,0.63,0,0,0,4,10.700000000000001,0,0,0,0,154.88,0.13,2,94.15,1008,167,4.6000000000000005 +2008,1,12,1,30,11.700000000000001,1.2,0.168,0.63,0,0,0,4,10.8,0,0,0,0,145.88,0.13,2,94.51,1007,168,5.1000000000000005 +2008,1,12,2,30,11.700000000000001,1.1400000000000001,0.149,0.63,0,0,0,4,10.9,0,0,0,0,135.3,0.13,1.9000000000000001,94.73,1006,168,5.4 +2008,1,12,3,30,11.700000000000001,1.08,0.14,0.63,0,0,0,4,10.8,0,0,0,0,124.21000000000001,0.13,1.9000000000000001,94.28,1006,166,5.5 +2008,1,12,4,30,11.600000000000001,1.04,0.134,0.63,0,0,0,4,10.700000000000001,0,0,0,0,113.09,0.13,1.9000000000000001,94.02,1005,164,5.5 +2008,1,12,5,30,11.5,1,0.13,0.63,0,0,0,5,10.600000000000001,0,0,0,0,102.25,0.13,2,94.23,1005,161,5.6000000000000005 +2008,1,12,6,30,11.8,0.96,0.131,0.63,0,0,0,3,10.600000000000001,0,0,0,0,91.98,0.13,2,92.26,1005,160,5.9 +2008,1,12,7,30,12.5,0.92,0.134,0.63,48,309,88,4,10.9,17,0,7,17,82.5,0.13,2,89.71000000000001,1005,161,6.5 +2008,1,12,8,30,13.100000000000001,0.87,0.148,0.63,82,518,221,4,11.3,8,0,0,8,74.52,0.13,2.1,88.65,1004,164,7.2 +2008,1,12,9,30,13.3,0.85,0.177,0.63,108,597,329,3,11.3,91,0,0,91,68.33,0.13,2.1,87.77,1004,167,7.7 +2008,1,12,10,30,13.3,0.8200000000000001,0.20400000000000001,0.63,126,619,392,5,11.200000000000001,92,0,0,92,64.55,0.13,2.2,87.37,1003,167,8 +2008,1,12,11,30,13.200000000000001,0.73,0.199,0.63,128,633,409,8,11.200000000000001,7,0,0,7,63.620000000000005,0.13,2.2,87.95,1001,168,8 +2008,1,12,12,30,13.100000000000001,0.72,0.25,0.63,138,552,366,8,11.4,6,0,0,6,65.67,0.13,2.2,89.51,1000,170,7.9 +2008,1,12,13,30,13.100000000000001,0.62,0.24,0.63,121,478,281,7,11.600000000000001,61,1,0,61,70.44,0.13,2.1,90.66,1000,176,7.6000000000000005 +2008,1,12,14,30,12.8,0.56,0.23,0.63,89,327,160,7,11.700000000000001,4,0,0,4,77.38,0.13,2.1,93.21000000000001,999,191,7 +2008,1,12,15,30,12.100000000000001,0.66,0.24,0.63,31,64,36,7,11.3,3,0,7,3,85.87,0.13,2,94.75,1000,213,6.1000000000000005 +2008,1,12,16,30,11.100000000000001,0.72,0.17400000000000002,0.63,0,0,0,8,10.100000000000001,0,0,0,0,95.81,0.13,1.8,93.53,1000,230,5.2 +2008,1,12,17,30,10.100000000000001,0.72,0.108,0.63,0,0,0,7,8.4,0,0,0,0,106.33,0.13,1.6,89.46000000000001,1001,235,4.1000000000000005 +2008,1,12,18,30,9.4,0.68,0.09,0.63,0,0,0,7,7.300000000000001,0,0,0,0,117.3,0.13,1.4000000000000001,86.94,1002,233,3.1 +2008,1,12,19,30,9,0.59,0.083,0.63,0,0,0,7,6.800000000000001,0,0,0,0,128.44,0.13,1.3,85.96000000000001,1002,229,2.7 +2008,1,12,20,30,8.700000000000001,0.51,0.084,0.63,0,0,0,0,6.4,0,0,0,0,139.4,0.13,1.3,85.56,1002,224,2.6 +2008,1,12,21,30,8.700000000000001,0.5,0.106,0.63,0,0,0,0,6.2,0,0,0,0,149.53,0.13,1.3,84.3,1002,216,2.5 +2008,1,12,22,30,8.8,0.46,0.125,0.63,0,0,0,0,6.300000000000001,0,0,0,0,157.31,0.13,1.3,84.10000000000001,1002,206,2.4000000000000004 +2008,1,12,23,30,8.8,0.42,0.125,0.63,0,0,0,8,6.300000000000001,0,0,0,0,159.59,0.13,1.3,84.24,1002,199,2.4000000000000004 +2008,1,13,0,30,8.700000000000001,0.45,0.128,0.63,0,0,0,6,6.1000000000000005,0,0,0,0,154.79,0.13,1.3,83.95,1002,194,2.4000000000000004 +2008,1,13,1,30,8.4,0.49,0.11900000000000001,0.63,0,0,0,9,5.9,0,0,0,0,145.84,0.13,1.3,84.08,1002,189,2.3000000000000003 +2008,1,13,2,30,8.200000000000001,0.52,0.108,0.63,0,0,0,9,5.6000000000000005,0,0,0,0,135.27,0.13,1.2000000000000002,83.79,1002,182,2.3000000000000003 +2008,1,13,3,30,7.9,0.6,0.108,0.63,0,0,0,9,5.4,0,0,0,0,124.18,0.13,1.2000000000000002,84.10000000000001,1003,173,2.2 +2008,1,13,4,30,7.7,0.65,0.11,0.63,0,0,0,9,5.1000000000000005,0,0,0,0,113.06,0.13,1.3,83.78,1003,164,2.1 +2008,1,13,5,30,7.5,0.68,0.11,0.63,0,0,0,9,5,0,0,0,0,102.21000000000001,0.13,1.3,84.21000000000001,1003,157,1.9000000000000001 +2008,1,13,6,30,7.6000000000000005,0.71,0.111,0.63,0,0,0,6,5,0,0,0,0,91.93,0.13,1.3,83.37,1004,151,1.9000000000000001 +2008,1,13,7,30,8.1,0.72,0.115,0.63,47,339,92,7,5.300000000000001,8,0,7,8,82.43,0.13,1.3,82.52,1004,146,2.2 +2008,1,13,8,30,8.6,0.73,0.11900000000000001,0.63,77,573,231,0,5.6000000000000005,77,573,0,231,74.42,0.13,1.3,81.44,1005,145,2.8000000000000003 +2008,1,13,9,30,8.8,0.8,0.097,0.63,84,719,351,0,5.7,84,719,0,351,68.21000000000001,0.13,1.3,80.8,1005,147,3.4000000000000004 +2008,1,13,10,30,8.8,0.84,0.10400000000000001,0.63,93,761,422,6,5.5,95,1,0,96,64.4,0.13,1.3,79.97,1004,146,3.7 +2008,1,13,11,30,8.6,0.8300000000000001,0.115,0.63,99,757,438,6,5.300000000000001,125,4,0,127,63.45,0.13,1.3,79.88,1004,140,3.9000000000000004 +2008,1,13,12,30,8.4,0.8200000000000001,0.117,0.63,97,730,399,7,5.1000000000000005,207,59,0,231,65.49,0.13,1.3,79.99,1004,132,3.8000000000000003 +2008,1,13,13,30,8.1,0.8200000000000001,0.123,0.63,88,649,308,0,5.1000000000000005,88,649,0,308,70.25,0.13,1.4000000000000001,81.57000000000001,1004,121,3.3000000000000003 +2008,1,13,14,30,7.5,0.8200000000000001,0.126,0.63,69,497,180,0,5.300000000000001,69,497,0,180,77.19,0.13,1.4000000000000001,86.03,1004,106,2.5 +2008,1,13,15,30,6.9,0.86,0.128,0.63,31,183,45,0,5.300000000000001,31,183,0,45,85.69,0.13,1.4000000000000001,89.55,1004,91,2.1 +2008,1,13,16,30,6.6000000000000005,0.9,0.121,0.63,0,0,0,0,4.800000000000001,0,0,0,0,95.63,0.13,1.4000000000000001,88.48,1004,79,2.1 +2008,1,13,17,30,6.5,0.93,0.108,0.63,0,0,0,0,4.5,0,0,0,0,106.15,0.13,1.4000000000000001,87.25,1005,69,2.1 +2008,1,13,18,30,6.4,0.97,0.1,0.63,0,0,0,0,4.2,0,0,0,0,117.13,0.13,1.3,85.93,1005,64,2 +2008,1,13,19,30,6.2,1.02,0.093,0.63,0,0,0,0,3.9000000000000004,0,0,0,0,128.27,0.13,1.3,85.35000000000001,1005,63,1.9000000000000001 +2008,1,13,20,30,6,1.07,0.085,0.63,0,0,0,0,3.6,0,0,0,0,139.23,0.13,1.3,84.46000000000001,1005,63,1.7000000000000002 +2008,1,13,21,30,5.800000000000001,1.11,0.081,0.63,0,0,0,0,3.2,0,0,0,0,149.35,0.13,1.2000000000000002,83.61,1006,59,1.6 +2008,1,13,22,30,5.4,1.1500000000000001,0.078,0.63,0,0,0,0,3,0,0,0,0,157.12,0.13,1.2000000000000002,84.3,1006,53,1.5 +2008,1,13,23,30,4.9,1.18,0.073,0.63,0,0,0,0,2.8000000000000003,0,0,0,0,159.43,0.13,1.2000000000000002,86.03,1006,48,1.5 +2008,1,14,0,30,4.5,1.22,0.068,0.63,0,0,0,0,2.6,0,0,0,0,154.70000000000002,0.13,1.1,87.22,1006,44,1.5 +2008,1,14,1,30,4.3,1.26,0.061,0.63,0,0,0,0,2.4000000000000004,0,0,0,0,145.78,0.13,1.1,87.4,1006,40,1.5 +2008,1,14,2,30,4.3,1.31,0.056,0.63,0,0,0,0,2.3000000000000003,0,0,0,0,135.24,0.13,1.1,86.92,1007,36,1.4000000000000001 +2008,1,14,3,30,4.3,1.36,0.053,0.63,0,0,0,1,2.3000000000000003,0,0,0,0,124.15,0.13,1.1,86.62,1007,31,1.3 +2008,1,14,4,30,4.2,1.4000000000000001,0.05,0.63,0,0,0,1,2.2,0,0,0,0,113.03,0.13,1,87.05,1008,26,1.2000000000000002 +2008,1,14,5,30,4.1000000000000005,1.44,0.048,0.63,0,0,0,1,2.2,0,0,0,0,102.17,0.13,1,87.13,1008,25,1.2000000000000002 +2008,1,14,6,30,4.800000000000001,1.47,0.046,0.63,0,0,0,0,2,0,0,0,0,91.88,0.13,1,82.31,1008,25,1.1 +2008,1,14,7,30,6.6000000000000005,1.5,0.044,0.63,35,522,105,1,3.1,35,522,0,105,82.36,0.13,1,78.32000000000001,1009,20,1.2000000000000002 +2008,1,14,8,30,8.6,1.51,0.043000000000000003,0.63,53,733,252,0,3.5,53,733,0,252,74.32000000000001,0.13,1,70.22,1009,180,1.4000000000000001 +2008,1,14,9,30,10.4,1.31,0.048,0.63,65,816,370,0,3.6,65,816,0,370,68.08,0.13,1,62.7,1010,332,1.5 +2008,1,14,10,30,11.600000000000001,1.34,0.048,0.63,70,859,443,0,2.9000000000000004,70,859,0,443,64.25,0.13,1,55.230000000000004,1009,314,1.7000000000000002 +2008,1,14,11,30,12,1.37,0.05,0.63,72,866,462,0,2.5,72,866,0,462,63.27,0.13,1,52.2,1009,303,1.7000000000000002 +2008,1,14,12,30,12,1.24,0.058,0.63,73,833,421,2,2.3000000000000003,247,92,0,285,65.3,0.13,1,51.63,1009,294,1.6 +2008,1,14,13,30,11.600000000000001,1.27,0.061,0.63,67,769,329,2,2.3000000000000003,194,42,0,208,70.06,0.13,1,52.730000000000004,1009,278,1.4000000000000001 +2008,1,14,14,30,10.100000000000001,1.29,0.065,0.63,55,634,197,2,2.9000000000000004,81,2,0,82,77,0.13,1,61.050000000000004,1009,260,1.1 +2008,1,14,15,30,8.5,1.31,0.07100000000000001,0.63,28,319,52,2,4.2,21,0,7,21,85.51,0.13,1.1,74.23,1009,249,1.1 +2008,1,14,16,30,7.9,1.31,0.077,0.63,0,0,0,5,3.4000000000000004,0,0,0,0,95.45,0.13,1.1,73.15,1010,242,1.1 +2008,1,14,17,30,7.9,1.32,0.079,0.63,0,0,0,8,3.5,0,0,0,0,105.98,0.13,1.1,73.77,1010,228,1 +2008,1,14,18,30,7.800000000000001,1.32,0.078,0.63,0,0,0,8,3.5,0,0,0,0,116.96000000000001,0.13,1.1,74.28,1010,206,0.9 +2008,1,14,19,30,7.4,1.31,0.075,0.63,0,0,0,8,3.5,0,0,0,0,128.1,0.13,1.1,76.11,1010,175,0.9 +2008,1,14,20,30,6.800000000000001,1.3,0.073,0.63,0,0,0,8,3.4000000000000004,0,0,0,0,139.05,0.13,1.1,79.08,1010,150,1.1 +2008,1,14,21,30,5.9,1.28,0.07100000000000001,0.63,0,0,0,5,3.3000000000000003,0,0,0,0,149.16,0.13,1.1,83.41,1010,137,1.3 +2008,1,14,22,30,5.4,1.26,0.07,0.63,0,0,0,7,3.1,0,0,0,0,156.93,0.13,1.1,85.14,1010,133,1.5 +2008,1,14,23,30,5,1.25,0.07100000000000001,0.63,0,0,0,8,2.9000000000000004,0,0,0,0,159.27,0.13,1.1,86.34,1010,130,1.6 +2008,1,15,0,30,4.6000000000000005,1.25,0.07200000000000001,0.63,0,0,0,5,2.9000000000000004,0,0,0,0,154.59,0.13,1.2000000000000002,88.45,1009,127,1.8 +2008,1,15,1,30,4.3,1.25,0.07100000000000001,0.63,0,0,0,5,3,0,0,0,0,145.72,0.13,1.2000000000000002,91.55,1009,125,1.9000000000000001 +2008,1,15,2,30,4.3,1.25,0.074,0.63,0,0,0,5,3.3000000000000003,0,0,0,0,135.2,0.13,1.3,93.45,1009,124,2 +2008,1,15,3,30,4.5,1.24,0.084,0.63,0,0,0,4,3.7,0,0,0,0,124.12,0.13,1.4000000000000001,94.45,1009,123,2.2 +2008,1,15,4,30,4.800000000000001,1.25,0.092,0.63,0,0,0,7,4.1000000000000005,0,0,0,0,112.99000000000001,0.13,1.5,94.99,1009,122,2.4000000000000004 +2008,1,15,5,30,5.2,1.27,0.096,0.63,0,0,0,4,4.4,0,0,0,0,102.12,0.13,1.6,94.56,1009,121,2.5 +2008,1,15,6,30,6.300000000000001,1.27,0.10200000000000001,0.63,0,0,0,7,4.7,0,0,0,0,91.81,0.13,1.8,89.37,1009,121,2.9000000000000004 +2008,1,15,7,30,8,1.26,0.111,0.63,44,369,94,8,5.2,9,0,7,9,82.27,0.13,1.9000000000000001,82.73,1009,120,3.7 +2008,1,15,8,30,9.3,1.23,0.12,0.63,73,578,231,8,5.9,25,0,0,25,74.21000000000001,0.13,1.9000000000000001,79.44,1009,124,4.1000000000000005 +2008,1,15,9,30,10.100000000000001,1.19,0.122,0.63,89,679,344,8,6.6000000000000005,149,21,0,157,67.95,0.13,2,78.96000000000001,1009,131,4.2 +2008,1,15,10,30,10.5,1.12,0.125,0.63,98,723,414,8,7.300000000000001,141,10,0,146,64.09,0.13,2,80.49,1009,137,4.2 +2008,1,15,11,30,10.700000000000001,1.06,0.127,0.63,101,731,432,7,7.800000000000001,52,0,0,52,63.09,0.13,2,82.54,1008,140,4.2 +2008,1,15,12,30,10.700000000000001,1.11,0.13,0.63,98,706,395,7,8.3,96,3,0,97,65.11,0.13,2,84.94,1007,139,4.2 +2008,1,15,13,30,10.5,1.09,0.139,0.63,90,627,306,6,8.5,16,0,0,16,69.86,0.13,2,87.69,1007,137,3.9000000000000004 +2008,1,15,14,30,10,1.05,0.14200000000000002,0.63,71,480,180,6,8.6,7,0,0,7,76.81,0.13,2,91.25,1007,135,3.6 +2008,1,15,15,30,9.5,1.03,0.155,0.63,33,174,47,7,8.5,5,0,7,5,85.32000000000001,0.13,2,93.42,1007,134,3.5 +2008,1,15,16,30,9.200000000000001,1.02,0.159,0.63,0,0,0,7,8.3,0,0,0,0,95.27,0.13,2,94.2,1007,133,3.6 +2008,1,15,17,30,9.1,0.99,0.148,0.63,0,0,0,4,8.200000000000001,0,0,0,0,105.8,0.13,2,94.12,1007,134,3.7 +2008,1,15,18,30,9.200000000000001,1,0.149,0.63,0,0,0,4,8.200000000000001,0,0,0,0,116.78,0.13,1.9000000000000001,93.66,1006,136,3.9000000000000004 +2008,1,15,19,30,9.3,0.99,0.14300000000000002,0.63,0,0,0,3,8.4,0,0,0,0,127.92,0.13,1.9000000000000001,93.84,1006,140,3.8000000000000003 +2008,1,15,20,30,9.600000000000001,0.9500000000000001,0.125,0.63,0,0,0,4,8.6,0,0,0,0,138.87,0.13,1.8,93.2,1006,146,3.7 +2008,1,15,21,30,9.8,0.96,0.131,0.63,0,0,0,1,8.8,0,0,0,0,148.97,0.13,1.7000000000000002,93.37,1005,151,3.5 +2008,1,15,22,30,9.9,0.9500000000000001,0.11,0.63,0,0,0,3,9,0,0,0,0,156.73,0.13,1.6,93.92,1005,155,3.1 +2008,1,15,23,30,9.700000000000001,0.9400000000000001,0.081,0.63,0,0,0,3,9.1,0,0,0,0,159.1,0.13,1.4000000000000001,95.79,1005,159,2.6 +2008,1,16,0,30,9.3,1,0.078,0.63,0,0,0,1,8.9,0,0,0,0,154.48,0.12,1.3,97.10000000000001,1004,172,2 +2008,1,16,1,30,9.1,1.05,0.068,0.63,0,0,0,0,8.6,0,0,0,0,145.65,0.12,1.2000000000000002,96.65,1004,191,1.5 +2008,1,16,2,30,8.9,1.1,0.054,0.63,0,0,0,0,8.3,0,0,0,0,135.15,0.12,1.1,95.7,1004,204,1.4000000000000001 +2008,1,16,3,30,8.9,1.1300000000000001,0.062,0.63,0,0,0,4,7.800000000000001,0,0,0,0,124.07000000000001,0.12,1.1,93.12,1003,208,1.4000000000000001 +2008,1,16,4,30,9,1.11,0.067,0.63,0,0,0,3,7.800000000000001,0,0,0,0,112.94,0.12,1.1,92.36,1003,209,1.5 +2008,1,16,5,30,9,1.07,0.065,0.63,0,0,0,3,7.7,0,0,0,0,102.07000000000001,0.12,1.1,91.49,1003,204,1.6 +2008,1,16,6,30,9.4,1.05,0.068,0.63,0,0,0,7,7.5,0,0,0,0,91.74,0.12,1.2000000000000002,87.95,1003,192,1.9000000000000001 +2008,1,16,7,30,10.600000000000001,1.04,0.066,0.63,40,456,102,6,8.1,5,0,7,5,82.19,0.12,1.4000000000000001,84.53,1003,182,2.9000000000000004 +2008,1,16,8,30,11.600000000000001,1.03,0.063,0.63,60,673,245,7,8.4,93,10,0,95,74.10000000000001,0.12,1.6,80.81,1003,179,4.2 +2008,1,16,9,30,12.4,0.81,0.082,0.63,79,737,357,5,8.1,13,0,0,13,67.81,0.12,1.7000000000000002,75.01,1003,179,5.1000000000000005 +2008,1,16,10,30,12.8,0.85,0.078,0.63,83,787,429,7,7.6000000000000005,45,0,0,45,63.92,0.12,1.8,70.78,1002,179,5.7 +2008,1,16,11,30,12.600000000000001,0.86,0.08700000000000001,0.63,88,784,445,7,7.5,68,0,0,69,62.910000000000004,0.12,1.9000000000000001,71,1001,179,5.9 +2008,1,16,12,30,12.100000000000001,0.78,0.115,0.63,96,720,401,7,7.800000000000001,39,0,0,39,64.91,0.12,2,74.81,1000,176,5.6000000000000005 +2008,1,16,13,30,11.5,0.8,0.124,0.63,89,642,312,8,8.3,54,1,0,55,69.66,0.12,2,80.64,1000,168,4.9 +2008,1,16,14,30,11,0.81,0.127,0.63,71,497,186,7,8.9,29,0,0,30,76.61,0.12,2,87.18,999,160,4.5 +2008,1,16,15,30,10.700000000000001,0.81,0.132,0.63,34,191,50,6,9.3,10,0,7,10,85.14,0.12,2.1,91.01,999,157,4.5 +2008,1,16,16,30,10.600000000000001,0.79,0.127,0.63,0,0,0,6,9.4,0,0,0,0,95.08,0.12,2.1,92.44,999,158,4.5 +2008,1,16,17,30,10.600000000000001,0.8,0.121,0.63,0,0,0,6,9.5,0,0,0,0,105.62,0.12,2.1,92.73,998,160,4.6000000000000005 +2008,1,16,18,30,10.5,0.84,0.126,0.63,0,0,0,6,9.5,0,0,0,0,116.60000000000001,0.12,2.1,93.28,998,160,4.7 +2008,1,16,19,30,10.600000000000001,0.8300000000000001,0.129,0.63,0,0,0,6,9.4,0,0,0,0,127.75,0.12,2.1,92.45,998,160,4.800000000000001 +2008,1,16,20,30,10.700000000000001,0.79,0.128,0.63,0,0,0,6,9.5,0,0,0,0,138.69,0.12,2.1,92.48,997,159,4.9 +2008,1,16,21,30,10.9,0.8300000000000001,0.139,0.63,0,0,0,6,9.600000000000001,0,0,0,0,148.78,0.12,2.1,91.97,997,160,5 +2008,1,16,22,30,11.200000000000001,0.8200000000000001,0.14,0.63,0,0,0,7,9.8,0,0,0,0,156.52,0.12,2.1,90.9,996,164,5.2 +2008,1,16,23,30,11.3,0.8200000000000001,0.132,0.63,0,0,0,4,9.9,0,0,0,0,158.92000000000002,0.12,2.1,90.83,996,167,5.4 +2008,1,17,0,30,11.200000000000001,0.81,0.145,0.63,0,0,0,4,9.8,0,0,0,0,154.36,0.13,2.1,91.04,996,164,5.4 +2008,1,17,1,30,11.100000000000001,0.76,0.158,0.63,0,0,0,6,9.8,0,0,0,0,145.58,0.13,2.1,91.46000000000001,996,157,5.4 +2008,1,17,2,30,11.200000000000001,0.67,0.169,0.63,0,0,0,8,9.9,0,0,0,0,135.09,0.13,2.2,91.69,995,153,5.300000000000001 +2008,1,17,3,30,11.3,0.67,0.196,0.63,0,0,0,6,10.100000000000001,0,0,0,0,124.02,0.13,2.2,92.48,995,154,4.6000000000000005 +2008,1,17,4,30,11.200000000000001,0.66,0.169,0.63,0,0,0,8,10.200000000000001,0,0,0,0,112.89,0.13,2.1,93.77,995,165,3.4000000000000004 +2008,1,17,5,30,10.8,0.68,0.148,0.63,0,0,0,9,10.100000000000001,0,0,0,0,102,0.13,2.1,95.59,996,190,2.1 +2008,1,17,6,30,10.700000000000001,0.77,0.131,0.63,0,0,0,6,9.5,0,0,0,0,91.66,0.13,2,92.52,996,216,1.5 +2008,1,17,7,30,11.3,0.86,0.124,0.63,48,333,94,3,9.700000000000001,13,0,7,13,82.09,0.13,2,90.05,997,228,1.9000000000000001 +2008,1,17,8,30,11.8,0.92,0.108,0.63,73,590,235,8,9.8,126,30,0,134,73.98,0.13,1.9000000000000001,87.8,998,235,2.4000000000000004 +2008,1,17,9,30,12.100000000000001,1,0.10300000000000001,0.63,85,707,353,8,9.600000000000001,10,0,0,10,67.66,0.13,1.9000000000000001,84.48,999,244,2.7 +2008,1,17,10,30,12.4,1.05,0.106,0.63,92,753,425,8,9.3,33,0,0,33,63.75,0.13,1.9000000000000001,81.19,1000,250,2.6 +2008,1,17,11,30,12.700000000000001,1.09,0.099,0.63,91,774,446,8,9,204,45,0,224,62.71,0.13,1.9000000000000001,78.31,1000,253,2.3000000000000003 +2008,1,17,12,30,12.9,1.27,0.093,0.63,84,764,411,4,8.8,160,2,0,161,64.7,0.13,1.9000000000000001,76.26,1000,254,2.1 +2008,1,17,13,30,12.8,1.29,0.096,0.63,77,699,322,2,8.700000000000001,135,3,0,136,69.45,0.13,1.9000000000000001,76.04,1001,260,1.7000000000000002 +2008,1,17,14,30,12.200000000000001,1.31,0.096,0.63,62,573,196,0,8.8,62,573,0,196,76.41,0.13,1.8,79.67,1001,259,0.9 +2008,1,17,15,30,11.5,1.32,0.106,0.63,32,273,56,0,9,32,273,0,56,84.95,0.13,1.8,84.81,1002,219,0.5 +2008,1,17,16,30,11,1.33,0.113,0.63,0,0,0,1,8.4,0,0,0,0,94.89,0.13,1.7000000000000002,84.18,1003,191,0.6000000000000001 +2008,1,17,17,30,10.600000000000001,1.33,0.115,0.63,0,0,0,0,8.3,0,0,0,0,105.43,0.13,1.7000000000000002,85.77,1003,198,0.7000000000000001 +2008,1,17,18,30,10.200000000000001,1.32,0.123,0.63,0,0,0,0,8.3,0,0,0,0,116.42,0.13,1.7000000000000002,87.81,1004,202,0.8 +2008,1,17,19,30,10,1.31,0.125,0.63,0,0,0,0,8.200000000000001,0,0,0,0,127.57000000000001,0.13,1.7000000000000002,88.77,1005,195,0.8 +2008,1,17,20,30,9.8,1.32,0.113,0.63,0,0,0,0,8.1,0,0,0,0,138.5,0.13,1.6,89.45,1005,179,0.7000000000000001 +2008,1,17,21,30,9.5,1.32,0.108,0.63,0,0,0,1,7.9,0,0,0,0,148.58,0.13,1.5,90.03,1005,171,0.7000000000000001 +2008,1,17,22,30,9.3,1.33,0.10200000000000001,0.63,0,0,0,0,7.800000000000001,0,0,0,0,156.31,0.13,1.5,90.44,1006,178,0.7000000000000001 +2008,1,17,23,30,9.200000000000001,1.33,0.098,0.63,0,0,0,0,7.7,0,0,0,0,158.73,0.13,1.5,90.51,1006,186,0.6000000000000001 +2008,1,18,0,30,9.200000000000001,1.31,0.108,0.63,0,0,0,0,7.7,0,0,0,0,154.24,0.13,1.4000000000000001,90.32000000000001,1006,180,0.5 +2008,1,18,1,30,9.1,1.31,0.111,0.63,0,0,0,4,7.6000000000000005,0,0,0,0,145.49,0.13,1.4000000000000001,90.58,1007,152,0.4 +2008,1,18,2,30,9,1.32,0.10400000000000001,0.63,0,0,0,3,7.5,0,0,0,0,135.03,0.13,1.3,90.38,1007,126,0.5 +2008,1,18,3,30,8.8,1.32,0.1,0.63,0,0,0,3,7.300000000000001,0,0,0,0,123.96000000000001,0.13,1.3,90.46000000000001,1007,117,0.6000000000000001 +2008,1,18,4,30,8.8,1.34,0.096,0.63,0,0,0,7,7.1000000000000005,0,0,0,0,112.83,0.13,1.3,89.31,1008,110,0.7000000000000001 +2008,1,18,5,30,8.8,1.36,0.091,0.63,0,0,0,4,7,0,0,0,0,101.93,0.13,1.4000000000000001,88.44,1009,107,0.7000000000000001 +2008,1,18,6,30,9.200000000000001,1.36,0.093,0.63,0,0,0,7,6.800000000000001,0,0,0,0,91.58,0.13,1.5,85.17,1009,102,0.7000000000000001 +2008,1,18,7,30,9.9,1.36,0.098,0.63,44,416,102,9,7.4,3,0,0,3,81.99,0.13,1.5,84.58,1010,94,0.7000000000000001 +2008,1,18,8,30,10.700000000000001,1.36,0.098,0.63,69,631,245,6,7.9,30,0,0,30,73.85000000000001,0.13,1.6,82.66,1010,99,0.8 +2008,1,18,9,30,11.8,1.41,0.094,0.63,81,739,364,7,7.2,184,144,7,239,67.51,0.13,1.6,73.44,1011,131,0.5 +2008,1,18,10,30,13,1.44,0.08600000000000001,0.63,84,796,438,8,7,221,144,0,285,63.57,0.13,1.6,67.04,1011,226,0.2 +2008,1,18,11,30,13.8,1.46,0.079,0.63,84,815,460,0,6.7,84,815,0,460,62.51,0.13,1.6,62.06,1011,307,0.5 +2008,1,18,12,30,14,1.03,0.10300000000000001,0.63,92,761,419,0,6.4,92,761,0,419,64.49,0.13,1.5,60.1,1011,317,0.7000000000000001 +2008,1,18,13,30,13.700000000000001,1.03,0.107,0.63,84,693,330,3,6.2,144,6,0,146,69.24,0.13,1.5,60.5,1011,315,0.8 +2008,1,18,14,30,12.700000000000001,1.06,0.105,0.63,67,567,202,3,6.6000000000000005,109,4,0,110,76.2,0.13,1.4000000000000001,66.38,1011,306,0.8 +2008,1,18,15,30,11,0.9500000000000001,0.114,0.63,36,255,59,0,7.800000000000001,36,255,0,59,84.75,0.13,1.4000000000000001,80.38,1012,308,1 +2008,1,18,16,30,9.8,0.98,0.114,0.63,0,0,0,8,6.800000000000001,0,0,0,0,94.7,0.13,1.4000000000000001,81.38,1013,323,1.2000000000000002 +2008,1,18,17,30,9.1,1,0.113,0.63,0,0,0,7,6.6000000000000005,0,0,0,0,105.25,0.13,1.4000000000000001,84.4,1014,343,1.3 +2008,1,18,18,30,8.6,1.01,0.111,0.63,0,0,0,8,6.6000000000000005,0,0,0,0,116.24000000000001,0.13,1.4000000000000001,87.24,1014,186,1.3 +2008,1,18,19,30,8.1,1.03,0.107,0.63,0,0,0,5,6.5,0,0,0,0,127.38000000000001,0.13,1.4000000000000001,89.61,1015,27,1.3 +2008,1,18,20,30,7.800000000000001,1.03,0.10200000000000001,0.63,0,0,0,0,6.300000000000001,0,0,0,0,138.31,0.13,1.4000000000000001,89.96000000000001,1015,46,1.3 +2008,1,18,21,30,7.6000000000000005,1.03,0.097,0.63,0,0,0,0,6,0,0,0,0,148.38,0.13,1.4000000000000001,89.39,1015,61,1.3 +2008,1,18,22,30,7.4,1.04,0.095,0.63,0,0,0,0,5.7,0,0,0,0,156.1,0.13,1.4000000000000001,88.88,1015,72,1.4000000000000001 +2008,1,18,23,30,7.300000000000001,1.05,0.094,0.63,0,0,0,0,5.4,0,0,0,0,158.53,0.13,1.4000000000000001,87.92,1015,78,1.4000000000000001 +2008,1,19,0,30,7.300000000000001,1.06,0.096,0.63,0,0,0,0,5.2,0,0,0,0,154.1,0.13,1.4000000000000001,86.68,1016,84,1.4000000000000001 +2008,1,19,1,30,7.2,1.08,0.095,0.63,0,0,0,0,5,0,0,0,0,145.4,0.13,1.4000000000000001,86.08,1016,91,1.4000000000000001 +2008,1,19,2,30,7,1.1,0.092,0.63,0,0,0,0,4.9,0,0,0,0,134.96,0.13,1.5,86.27,1016,95,1.4000000000000001 +2008,1,19,3,30,6.6000000000000005,1.11,0.089,0.63,0,0,0,0,4.800000000000001,0,0,0,0,123.9,0.13,1.5,88.05,1016,98,1.4000000000000001 +2008,1,19,4,30,6.2,1.1300000000000001,0.088,0.63,0,0,0,0,4.7,0,0,0,0,112.76,0.13,1.5,90.22,1016,103,1.5 +2008,1,19,5,30,5.9,1.1500000000000001,0.08700000000000001,0.63,0,0,0,0,4.7,0,0,0,0,101.86,0.13,1.5,92.03,1016,107,1.5 +2008,1,19,6,30,6.9,1.16,0.08600000000000001,0.63,0,0,0,0,4.800000000000001,0,0,0,0,91.49,0.13,1.6,86.19,1016,111,1.4000000000000001 +2008,1,19,7,30,9.4,1.18,0.085,0.63,44,432,105,3,5.7,13,0,7,13,81.88,0.13,1.6,77.95,1017,114,1.7000000000000002 +2008,1,19,8,30,11.9,1.19,0.085,0.63,68,647,249,7,6.1000000000000005,143,74,0,163,73.72,0.13,1.7000000000000002,67.48,1017,127,1.5 +2008,1,19,9,30,13.8,1.23,0.085,0.63,80,748,368,0,6.1000000000000005,80,748,0,368,67.35,0.13,1.7000000000000002,59.89,1017,189,0.7000000000000001 +2008,1,19,10,30,15.100000000000001,1.25,0.084,0.63,86,793,441,0,5.6000000000000005,86,793,0,441,63.38,0.13,1.8,53.18,1017,253,0.8 +2008,1,19,11,30,15.700000000000001,1.27,0.082,0.63,86,806,461,0,5.2,86,806,0,461,62.31,0.13,1.8,49.74,1017,270,1.3 +2008,1,19,12,30,15.8,1.3900000000000001,0.076,0.63,81,795,426,0,5.1000000000000005,81,795,0,426,64.28,0.13,1.8,48.89,1016,279,1.6 +2008,1,19,13,30,15.3,1.4000000000000001,0.076,0.63,73,738,337,0,5,73,738,0,337,69.02,0.13,1.8,50.27,1016,284,1.6 +2008,1,19,14,30,13.4,1.41,0.074,0.63,58,622,209,8,6.4,124,149,7,160,75.99,0.13,1.7000000000000002,62.52,1016,285,1.4000000000000001 +2008,1,19,15,30,11.100000000000001,1.43,0.07100000000000001,0.63,31,355,65,0,7.4,31,355,0,65,84.55,0.13,1.7000000000000002,77.77,1016,291,1.3 +2008,1,19,16,30,9.9,1.44,0.066,0.63,0,0,0,3,5.9,0,0,0,0,94.5,0.13,1.6,76,1016,304,1.4000000000000001 +2008,1,19,17,30,9.4,1.45,0.061,0.63,0,0,0,0,5.5,0,0,0,0,105.06,0.13,1.5,76.54,1017,320,1.4000000000000001 +2008,1,19,18,30,9.1,1.45,0.057,0.63,0,0,0,0,5.1000000000000005,0,0,0,0,116.06,0.13,1.5,76.3,1017,338,1.4000000000000001 +2008,1,19,19,30,8.9,1.45,0.054,0.63,0,0,0,0,4.800000000000001,0,0,0,0,127.2,0.13,1.4000000000000001,75.63,1017,176,1.3 +2008,1,19,20,30,8.700000000000001,1.45,0.05,0.63,0,0,0,0,4.5,0,0,0,0,138.12,0.13,1.4000000000000001,74.88,1017,14,1.3 +2008,1,19,21,30,8.5,1.45,0.048,0.63,0,0,0,0,4.2,0,0,0,0,148.18,0.13,1.3,74.18,1017,27,1.2000000000000002 +2008,1,19,22,30,8.200000000000001,1.45,0.046,0.63,0,0,0,0,3.9000000000000004,0,0,0,0,155.88,0.13,1.3,74.26,1017,33,1.3 +2008,1,19,23,30,8,1.45,0.044,0.63,0,0,0,0,3.6,0,0,0,0,158.33,0.13,1.2000000000000002,73.73,1017,36,1.3 +2008,1,20,0,30,8,1.45,0.043000000000000003,0.63,0,0,0,0,3.3000000000000003,0,0,0,0,153.96,0.13,1.2000000000000002,72.08,1017,38,1.3 +2008,1,20,1,30,8.1,1.46,0.042,0.63,0,0,0,0,2.9000000000000004,0,0,0,0,145.3,0.13,1.2000000000000002,69.7,1016,40,1.3 +2008,1,20,2,30,8.200000000000001,1.46,0.041,0.63,0,0,0,0,2.5,0,0,0,0,134.88,0.13,1.1,67.28,1016,45,1.2000000000000002 +2008,1,20,3,30,8.200000000000001,1.47,0.04,0.63,0,0,0,0,2.1,0,0,0,0,123.83,0.13,1.1,65.46000000000001,1016,55,1.2000000000000002 +2008,1,20,4,30,8,1.47,0.039,0.63,0,0,0,0,1.7000000000000002,0,0,0,0,112.69,0.13,1.1,64.64,1017,69,1.1 +2008,1,20,5,30,7.7,1.47,0.038,0.63,0,0,0,0,1.3,0,0,0,0,101.78,0.13,1.1,64.09,1017,84,1.1 +2008,1,20,6,30,8.3,1.47,0.038,0.63,0,0,0,0,1.1,0,0,0,0,91.39,0.13,1.1,60.4,1017,96,1 +2008,1,20,7,30,10.200000000000001,1.47,0.038,0.63,36,552,115,0,3.1,36,552,0,115,81.76,0.13,1.1,61.4,1017,109,1.1 +2008,1,20,8,30,12.200000000000001,1.47,0.039,0.63,54,748,265,0,3.1,54,748,0,265,73.58,0.13,1.1,53.660000000000004,1018,139,1 +2008,1,20,9,30,13.8,1.35,0.045,0.63,65,828,386,0,2.9000000000000004,65,828,0,386,67.18,0.13,1.1,47.89,1018,187,1 +2008,1,20,10,30,14.8,1.36,0.046,0.63,70,868,462,0,3.4000000000000004,70,868,0,462,63.190000000000005,0.13,1.1,46.43,1018,227,1.2000000000000002 +2008,1,20,11,30,15.3,1.3800000000000001,0.047,0.63,72,877,482,0,3.8000000000000003,72,877,0,482,62.09,0.13,1.1,46.27,1017,249,1.4000000000000001 +2008,1,20,12,30,15.3,1.34,0.052000000000000005,0.63,72,856,447,0,4.2,72,856,0,447,64.05,0.13,1,47.62,1017,262,1.6 +2008,1,20,13,30,14.700000000000001,1.37,0.052000000000000005,0.63,66,802,356,0,4.6000000000000005,66,802,0,356,68.8,0.13,1,50.88,1017,270,1.5 +2008,1,20,14,30,12.9,1.3900000000000001,0.052000000000000005,0.63,54,687,223,0,5.9,54,687,0,223,75.78,0.13,1,62.25,1017,276,1.3 +2008,1,20,15,30,10.8,1.25,0.055,0.63,31,410,71,0,7.1000000000000005,31,410,0,71,84.35000000000001,0.13,1,77.8,1017,283,1.2000000000000002 +2008,1,20,16,30,9.700000000000001,1.27,0.055,0.63,0,0,0,0,5.800000000000001,0,0,0,0,94.31,0.13,1,76.72,1017,296,1.3 +2008,1,20,17,30,9.200000000000001,1.29,0.055,0.63,0,0,0,0,5.9,0,0,0,0,104.87,0.13,0.9,79.76,1017,312,1.1 +2008,1,20,18,30,8.9,1.31,0.055,0.63,0,0,0,0,6,0,0,0,0,115.87,0.13,0.9,82.26,1017,332,0.9 +2008,1,20,19,30,8.700000000000001,1.32,0.056,0.63,0,0,0,0,6.1000000000000005,0,0,0,0,127.01,0.13,0.9,83.68,1017,176,0.8 +2008,1,20,20,30,8.3,1.34,0.056,0.63,0,0,0,0,6,0,0,0,0,137.93,0.13,0.9,85.66,1017,19,0.7000000000000001 +2008,1,20,21,30,7.800000000000001,1.35,0.056,0.63,0,0,0,0,5.9,0,0,0,0,147.97,0.13,0.9,87.66,1017,32,0.7000000000000001 +2008,1,20,22,30,7.4,1.36,0.056,0.63,0,0,0,0,5.6000000000000005,0,0,0,0,155.66,0.13,1,88.43,1017,39,0.7000000000000001 +2008,1,20,23,30,7.4,1.37,0.057,0.63,0,0,0,0,5.4,0,0,0,0,158.12,0.13,1,86.86,1017,41,0.6000000000000001 +2008,1,21,0,30,7.4,1.3800000000000001,0.058,0.63,0,0,0,0,5.1000000000000005,0,0,0,0,153.81,0.13,1,85.5,1017,38,0.6000000000000001 +2008,1,21,1,30,7.5,1.3800000000000001,0.059000000000000004,0.63,0,0,0,0,5,0,0,0,0,145.20000000000002,0.13,1,84,1016,26,0.5 +2008,1,21,2,30,7.4,1.37,0.061,0.63,0,0,0,0,4.9,0,0,0,0,134.8,0.13,1,84.12,1016,186,0.4 +2008,1,21,3,30,7.2,1.37,0.066,0.63,0,0,0,0,4.9,0,0,0,0,123.76,0.13,1.1,85.05,1016,353,0.4 +2008,1,21,4,30,6.9,1.36,0.07,0.63,0,0,0,1,4.800000000000001,0,0,0,0,112.61,0.13,1.1,86.54,1016,352,0.4 +2008,1,21,5,30,6.7,1.35,0.07100000000000001,0.63,0,0,0,0,4.800000000000001,0,0,0,0,101.69,0.13,1.1,87.49,1016,353,0.30000000000000004 +2008,1,21,6,30,7.1000000000000005,1.34,0.075,0.63,0,0,0,1,4.7,0,0,0,0,91.29,0.13,1.1,84.93,1016,322,0.2 +2008,1,21,7,30,8.1,1.33,0.078,0.63,44,473,112,3,5.1000000000000005,25,0,7,25,81.64,0.13,1.1,81.19,1017,275,0.4 +2008,1,21,8,30,9.5,1.32,0.078,0.63,66,681,260,3,5.7,9,0,0,9,73.43,0.13,1.2000000000000002,77.19,1017,253,0.9 +2008,1,21,9,30,10.9,1.34,0.081,0.63,79,776,382,3,6.300000000000001,37,0,0,37,67,0.13,1.2000000000000002,73.13,1016,247,1.4000000000000001 +2008,1,21,10,30,11.8,1.35,0.083,0.63,86,818,457,3,6.800000000000001,84,0,0,84,62.980000000000004,0.13,1.2000000000000002,71.37,1016,247,1.8 +2008,1,21,11,30,12.3,1.36,0.083,0.63,88,830,479,3,7.2,75,0,0,75,61.870000000000005,0.13,1.2000000000000002,71.11,1015,250,2.1 +2008,1,21,12,30,12.4,0.88,0.109,0.63,97,767,435,3,7.5,76,0,1,76,63.83,0.13,1.2000000000000002,72.22,1015,251,2.2 +2008,1,21,13,30,12.100000000000001,0.9500000000000001,0.10400000000000001,0.63,86,714,347,3,7.7,39,0,1,39,68.57000000000001,0.13,1.2000000000000002,74.33,1014,250,2.1 +2008,1,21,14,30,11.100000000000001,1.01,0.099,0.63,68,599,218,3,7.7,21,0,1,21,75.56,0.13,1.1,79.67,1014,248,1.6 +2008,1,21,15,30,9.9,1.01,0.10200000000000001,0.63,38,314,70,3,8.1,7,0,1,7,84.14,0.13,1.1,88.49,1014,245,1.1 +2008,1,21,16,30,9.4,1.05,0.10300000000000001,0.63,0,0,0,3,7.9,0,0,1,0,94.11,0.13,1.1,90.53,1014,240,1 +2008,1,21,17,30,9.1,1.08,0.10200000000000001,0.63,0,0,0,3,7.800000000000001,0,0,1,0,104.68,0.13,1.2000000000000002,91.47,1013,233,1 +2008,1,21,18,30,8.9,1.12,0.105,0.63,0,0,0,3,7.7,0,0,0,0,115.68,0.13,1.2000000000000002,92.24,1013,221,1 +2008,1,21,19,30,8.8,1.1500000000000001,0.101,0.63,0,0,0,1,7.9,0,0,0,0,126.82000000000001,0.13,1.2000000000000002,93.83,1013,208,1 +2008,1,21,20,30,8.8,1.16,0.095,0.63,0,0,0,3,8,0,0,0,0,137.74,0.13,1.3,94.49,1012,202,1.1 +2008,1,21,21,30,8.9,1.16,0.106,0.63,0,0,0,4,8.1,0,0,0,0,147.76,0.13,1.3,94.58,1012,203,1.2000000000000002 +2008,1,21,22,30,9,1.1400000000000001,0.111,0.63,0,0,0,4,8.1,0,0,0,0,155.43,0.13,1.4000000000000001,94.16,1011,206,1.3 +2008,1,21,23,30,8.9,1.11,0.109,0.63,0,0,0,4,8.3,0,0,0,0,157.91,0.13,1.4000000000000001,95.77,1010,209,1.4000000000000001 +2008,1,22,0,30,8.9,1.07,0.122,0.63,0,0,0,4,8.4,0,0,0,0,153.65,0.13,1.5,96.91,1009,211,1.5 +2008,1,22,1,30,9.1,1.02,0.125,0.63,0,0,0,3,8.6,0,0,0,0,145.08,0.13,1.6,96.82000000000001,1008,215,1.7000000000000002 +2008,1,22,2,30,9.4,0.98,0.122,0.63,0,0,0,4,8.8,0,0,0,0,134.71,0.13,1.6,96.26,1007,219,1.9000000000000001 +2008,1,22,3,30,9.700000000000001,0.97,0.13,0.63,0,0,0,4,8.9,0,0,1,0,123.67,0.13,1.7000000000000002,95.03,1007,218,2.1 +2008,1,22,4,30,10.100000000000001,0.96,0.131,0.63,0,0,0,3,9,0,0,1,0,112.52,0.13,1.6,92.77,1006,217,2.4000000000000004 +2008,1,22,5,30,10.4,0.93,0.122,0.63,0,0,0,3,8.9,0,0,1,0,101.60000000000001,0.13,1.6,90.71000000000001,1006,220,2.5 +2008,1,22,6,30,10.8,0.91,0.131,0.63,0,0,0,3,8.9,0,0,0,0,91.18,0.13,1.7000000000000002,88.12,1005,219,2.7 +2008,1,22,7,30,11.600000000000001,0.87,0.134,0.63,53,347,104,3,9.200000000000001,7,0,7,7,81.52,0.13,1.7000000000000002,84.96000000000001,1004,212,3.5 +2008,1,22,8,30,12.4,0.78,0.14100000000000001,0.63,85,558,246,4,9.5,9,0,0,9,73.28,0.13,1.7000000000000002,82.52,1003,207,4.6000000000000005 +2008,1,22,9,30,12.600000000000001,0.74,0.169,0.63,111,633,360,8,9.5,19,0,1,19,66.82000000000001,0.13,1.7000000000000002,81.26,1002,207,5.2 +2008,1,22,10,30,12.5,0.67,0.187,0.63,127,661,429,9,9.600000000000001,9,0,0,9,62.78,0.13,1.8,82.53,1001,208,5 +2008,1,22,11,30,12.3,0.6,0.191,0.63,132,666,448,6,10,9,0,0,9,61.65,0.13,1.8,85.91,1000,213,4.2 +2008,1,22,12,30,12.5,0.66,0.197,0.63,129,639,413,5,10.3,17,0,0,17,63.59,0.13,1.8,86.58,999,225,3 +2008,1,22,13,30,12.700000000000001,0.66,0.185,0.63,112,583,327,5,10.4,13,0,0,13,68.35000000000001,0.13,1.8,85.79,998,261,1.9000000000000001 +2008,1,22,14,30,12.100000000000001,0.6900000000000001,0.14,0.63,79,508,207,4,10.200000000000001,8,0,0,8,75.34,0.13,1.7000000000000002,88.31,998,308,1.4000000000000001 +2008,1,22,15,30,10.700000000000001,0.8,0.122,0.63,40,265,68,2,9.8,13,0,7,13,83.94,0.13,1.6,94.43,998,335,1.6 +2008,1,22,16,30,9.700000000000001,0.88,0.1,0.63,0,0,0,0,9.1,0,0,0,0,93.91,0.13,1.5,96.19,998,343,2.1 +2008,1,22,17,30,9,0.9400000000000001,0.081,0.63,0,0,0,0,8.6,0,0,0,0,104.48,0.13,1.4000000000000001,97.64,999,348,2.5 +2008,1,22,18,30,8.3,1,0.074,0.63,0,0,0,3,8.1,0,0,0,0,115.49000000000001,0.13,1.3,98.73,1000,354,2.7 +2008,1,22,19,30,7.800000000000001,1.07,0.068,0.63,0,0,0,0,7.5,0,0,0,0,126.63000000000001,0.13,1.3,98.26,1000,180,3.1 +2008,1,22,20,30,7.6000000000000005,1.1300000000000001,0.061,0.63,0,0,0,0,7,0,0,0,0,137.54,0.13,1.3,95.97,1001,3,3.7 +2008,1,22,21,30,7.5,1.17,0.056,0.63,0,0,0,0,6.4,0,0,0,0,147.55,0.13,1.2000000000000002,92.42,1001,4,4.3 +2008,1,22,22,30,7.4,1.28,0.057,0.63,0,0,0,0,5.7,0,0,0,0,155.19,0.13,1.2000000000000002,89.17,1002,7,4.7 +2008,1,22,23,30,7.4,1.37,0.053,0.63,0,0,0,0,5.4,0,0,0,0,157.69,0.13,1.2000000000000002,86.94,1002,16,4.800000000000001 +2008,1,23,0,30,7.1000000000000005,1.3800000000000001,0.05,0.63,0,0,0,0,5,0,0,0,0,153.48,0.13,1,86.53,1003,24,4.3 +2008,1,23,1,30,6.7,1.36,0.051000000000000004,0.63,0,0,0,0,3.9000000000000004,0,0,0,0,144.96,0.13,0.9,82.39,1004,29,4.4 +2008,1,23,2,30,6.4,1.28,0.044,0.63,0,0,0,0,2.3000000000000003,0,0,0,0,134.61,0.13,0.7000000000000001,75.31,1005,30,5.1000000000000005 +2008,1,23,3,30,6.2,1.18,0.037,0.63,0,0,0,0,1.1,0,0,0,0,123.58,0.13,0.5,69.96000000000001,1006,30,5.4 +2008,1,23,4,30,5.7,1.1400000000000001,0.034,0.63,0,0,0,0,-0.2,0,0,0,0,112.43,0.13,0.4,65.81,1006,31,5.4 +2008,1,23,5,30,5.2,1.1300000000000001,0.031,0.63,0,0,0,0,-1.3,0,0,0,0,101.5,0.13,0.4,62.92,1007,32,5.300000000000001 +2008,1,23,6,30,5.800000000000001,1.1300000000000001,0.03,0.63,0,0,0,0,-2,0,0,0,0,91.07000000000001,0.13,0.30000000000000004,57.2,1008,33,5.800000000000001 +2008,1,23,7,30,7.300000000000001,1.1300000000000001,0.029,0.63,37,641,133,0,-2.3000000000000003,37,641,0,133,81.38,0.13,0.30000000000000004,50.61,1009,35,6.9 +2008,1,23,8,30,8.700000000000001,1.1,0.029,0.63,52,816,289,0,-2.6,52,816,0,289,73.12,0.13,0.4,44.9,1010,37,7.7 +2008,1,23,9,30,9.700000000000001,1.01,0.033,0.63,63,893,417,0,-2.7,63,893,0,417,66.64,0.13,0.4,41.72,1011,38,7.7 +2008,1,23,10,30,10.4,1.07,0.033,0.63,67,933,497,0,-2.7,67,933,0,497,62.56,0.13,0.4,39.74,1011,36,7.4 +2008,1,23,11,30,10.700000000000001,1.12,0.033,0.63,68,942,519,0,-2.8000000000000003,68,942,0,519,61.42,0.13,0.4,38.65,1012,33,7 +2008,1,23,12,30,10.600000000000001,1.05,0.037,0.63,68,919,481,0,-3,68,919,0,481,63.36,0.13,0.4,38.46,1012,31,6.5 +2008,1,23,13,30,10,1.11,0.036000000000000004,0.63,62,873,387,0,-3.1,62,873,0,387,68.11,0.13,0.4,39.78,1013,29,5.9 +2008,1,23,14,30,8.5,1.1500000000000001,0.037,0.63,52,766,249,0,-2.9000000000000004,52,766,0,249,75.12,0.13,0.4,44.5,1013,27,4.800000000000001 +2008,1,23,15,30,6.300000000000001,1.1,0.042,0.63,32,503,87,0,-2,32,503,0,87,83.73,0.13,0.4,55.27,1014,24,3.8000000000000003 +2008,1,23,16,30,4.6000000000000005,1.11,0.041,0.63,0,0,0,0,-1.6,0,0,0,0,93.7,0.13,0.4,64.15,1014,23,3.4000000000000004 +2008,1,23,17,30,4,1.11,0.039,0.63,0,0,0,0,-1.5,0,0,0,0,104.29,0.13,0.4,67.15,1014,25,3.3000000000000003 +2008,1,23,18,30,3.5,1.1,0.036000000000000004,0.63,0,0,0,0,-1.6,0,0,0,0,115.3,0.13,0.4,69.27,1014,27,3.3000000000000003 +2008,1,23,19,30,3.2,1.1,0.033,0.63,0,0,0,0,-1.7000000000000002,0,0,0,0,126.44,0.13,0.4,70.07000000000001,1014,30,3.2 +2008,1,23,20,30,2.8000000000000003,1.1300000000000001,0.031,0.63,0,0,0,0,-2,0,0,0,0,137.34,0.13,0.4,70.54,1015,33,3 +2008,1,23,21,30,2.4000000000000004,1.16,0.029,0.63,0,0,0,0,-2.4000000000000004,0,0,0,0,147.33,0.13,0.4,70.45,1015,35,2.6 +2008,1,23,22,30,2,1.17,0.028,0.63,0,0,0,0,-2.8000000000000003,0,0,0,0,154.96,0.13,0.4,70.5,1015,34,2.3000000000000003 +2008,1,23,23,30,1.7000000000000002,1.19,0.028,0.63,0,0,0,0,-3.1,0,0,0,0,157.46,0.13,0.4,70.36,1015,34,2.2 +2008,1,24,0,30,1.4000000000000001,1.22,0.029,0.63,0,0,0,0,-3.4000000000000004,0,0,0,0,153.31,0.13,0.4,70.57000000000001,1015,34,2.1 +2008,1,24,1,30,1.3,1.25,0.029,0.63,0,0,0,0,-3.6,0,0,0,0,144.83,0.13,0.4,69.72,1015,36,2 +2008,1,24,2,30,1.2000000000000002,1.28,0.03,0.63,0,0,0,0,-3.9000000000000004,0,0,0,0,134.5,0.13,0.4,68.72,1015,39,1.8 +2008,1,24,3,30,1.3,1.31,0.03,0.63,0,0,0,0,-4.2,0,0,0,0,123.49000000000001,0.13,0.4,66.67,1015,40,1.7000000000000002 +2008,1,24,4,30,1.5,1.33,0.03,0.63,0,0,0,0,-4.5,0,0,0,0,112.33,0.13,0.4,64.14,1016,38,1.5 +2008,1,24,5,30,1.9000000000000001,1.34,0.03,0.63,0,0,0,0,-4.9,0,0,0,0,101.39,0.13,0.5,60.82,1016,33,1.3 +2008,1,24,6,30,3.2,1.36,0.03,0.63,0,0,0,1,-4.9,0,0,0,0,90.95,0.13,0.5,55.34,1017,26,1 +2008,1,24,7,30,5.6000000000000005,1.37,0.03,0.63,37,622,131,1,-2.2,37,622,0,131,81.24,0.13,0.5,57.42,1017,25,1.1 +2008,1,24,8,30,8.1,1.37,0.03,0.63,52,800,287,0,-3.8000000000000003,52,800,0,287,72.95,0.13,0.6000000000000001,42.86,1018,42,1.3 +2008,1,24,9,30,10.100000000000001,1.35,0.031,0.63,61,883,414,0,-3.8000000000000003,61,883,0,414,66.44,0.13,0.6000000000000001,37.28,1018,78,1 +2008,1,24,10,30,11.8,1.34,0.033,0.63,66,918,492,0,-4.1000000000000005,66,918,0,492,62.34,0.13,0.6000000000000001,32.77,1018,156,0.9 +2008,1,24,11,30,12.9,1.33,0.035,0.63,68,918,511,0,-4.5,68,918,0,511,61.18,0.13,0.7000000000000001,29.41,1017,222,1.4000000000000001 +2008,1,24,12,30,13.100000000000001,1.23,0.042,0.63,70,892,473,0,-4,70,892,0,473,63.11,0.13,0.7000000000000001,30.23,1017,234,2 +2008,1,24,13,30,12.5,1.23,0.044,0.63,65,839,381,0,-3.2,65,839,0,381,67.87,0.13,0.7000000000000001,33.33,1017,236,1.9000000000000001 +2008,1,24,14,30,10.600000000000001,1.21,0.045,0.63,54,724,242,0,-0.2,54,724,0,242,74.89,0.13,0.8,47.1,1017,240,1.5 +2008,1,24,15,30,8.4,1.16,0.047,0.63,33,470,86,0,1.8,33,470,0,86,83.51,0.13,0.8,62.99,1017,247,1.3 +2008,1,24,16,30,7.800000000000001,1.1400000000000001,0.048,0.63,0,0,0,0,-0.2,0,0,0,0,93.5,0.13,0.8,56.99,1018,250,1.2000000000000002 +2008,1,24,17,30,8.1,1.1300000000000001,0.05,0.63,0,0,0,0,-0.8,0,0,0,0,104.09,0.13,0.8,53.5,1018,238,0.8 +2008,1,24,18,30,7.9,1.1300000000000001,0.051000000000000004,0.63,0,0,0,0,-1.2000000000000002,0,0,0,0,115.11,0.13,0.8,52.59,1018,196,0.6000000000000001 +2008,1,24,19,30,7.300000000000001,1.1400000000000001,0.052000000000000005,0.63,0,0,0,0,-1.2000000000000002,0,0,0,0,126.25,0.13,0.9,54.7,1018,159,0.7000000000000001 +2008,1,24,20,30,6.6000000000000005,1.1500000000000001,0.054,0.63,0,0,0,0,-1.1,0,0,0,0,137.14000000000001,0.13,0.9,57.95,1019,152,1 +2008,1,24,21,30,6.1000000000000005,1.1500000000000001,0.054,0.63,0,0,0,0,-1,0,0,0,0,147.11,0.13,0.9,60.4,1019,153,1.2000000000000002 +2008,1,24,22,30,5.7,1.16,0.054,0.63,0,0,0,0,-0.9,0,0,0,0,154.72,0.13,0.9,62.690000000000005,1019,153,1.2000000000000002 +2008,1,24,23,30,5.5,1.17,0.054,0.63,0,0,0,0,-0.7000000000000001,0,0,0,0,157.23,0.13,0.9,64.53,1019,148,1.2000000000000002 +2008,1,25,0,30,5.300000000000001,1.17,0.054,0.63,0,0,0,0,-0.4,0,0,0,0,153.13,0.13,0.9,66.48,1019,138,1.1 +2008,1,25,1,30,5.1000000000000005,1.17,0.054,0.63,0,0,0,1,-0.4,0,0,0,0,144.70000000000002,0.13,0.9,67.62,1018,125,1.1 +2008,1,25,2,30,4.800000000000001,1.18,0.053,0.63,0,0,0,0,-0.5,0,0,0,0,134.39000000000001,0.13,0.9,68.35000000000001,1018,109,1 +2008,1,25,3,30,4.3,1.19,0.052000000000000005,0.63,0,0,0,1,-0.9,0,0,0,0,123.38000000000001,0.13,1,69.14,1018,96,1.1 +2008,1,25,4,30,3.9000000000000004,1.2,0.052000000000000005,0.63,0,0,0,1,-1.3,0,0,0,0,112.23,0.13,1,69.04,1018,87,1.1 +2008,1,25,5,30,3.9000000000000004,1.22,0.05,0.63,0,0,0,0,-1.7000000000000002,0,0,0,0,101.28,0.13,1,66.86,1019,82,1.2000000000000002 +2008,1,25,6,30,5.2,1.23,0.049,0.63,0,0,0,1,-1.9000000000000001,0,0,0,0,90.19,0.13,1.1,60.300000000000004,1019,81,1 +2008,1,25,7,30,7.7,1.25,0.048,0.63,40,546,125,0,0.6000000000000001,40,546,0,125,81.09,0.13,1.1,60.83,1020,77,0.9 +2008,1,25,8,30,10.100000000000001,1.28,0.047,0.63,58,744,278,0,0,58,744,0,278,72.78,0.13,1.1,49.47,1020,42,0.6000000000000001 +2008,1,25,9,30,12.100000000000001,1.26,0.048,0.63,68,835,404,0,-0.30000000000000004,68,835,0,404,66.24,0.13,1,42.32,1020,153,0.5 +2008,1,25,10,30,13.5,1.27,0.047,0.63,72,877,482,0,-1.1,72,877,0,482,62.120000000000005,0.13,1,36.59,1019,297,0.8 +2008,1,25,11,30,14.4,1.29,0.047,0.63,73,883,502,0,-1.4000000000000001,73,883,0,502,60.94,0.13,1.1,33.660000000000004,1019,299,1 +2008,1,25,12,30,14.9,1.19,0.055,0.63,75,855,465,0,-1.4000000000000001,75,855,0,465,62.870000000000005,0.13,1.1,32.57,1019,301,1.2000000000000002 +2008,1,25,13,30,14.600000000000001,1.19,0.058,0.63,70,799,374,0,-1,70,799,0,374,67.63,0.13,1.1,34.37,1018,298,1.2000000000000002 +2008,1,25,14,30,12.8,1.18,0.061,0.63,58,680,238,0,2.5,58,680,0,238,74.66,0.13,1.2000000000000002,49.52,1018,304,1 +2008,1,25,15,30,10.4,1.11,0.074,0.63,37,402,84,3,4,45,1,7,45,83.3,0.13,1.2000000000000002,64.4,1019,327,1 +2008,1,25,16,30,9,1.09,0.082,0.63,0,0,0,3,2.7,0,0,0,0,93.29,0.13,1.3,64.61,1019,182,0.9 +2008,1,25,17,30,8.3,1.08,0.091,0.63,0,0,0,5,2.7,0,0,0,0,103.89,0.13,1.4000000000000001,67.59,1020,39,0.9 +2008,1,25,18,30,7.9,1.05,0.099,0.63,0,0,0,5,2.5,0,0,0,0,114.91,0.13,1.4000000000000001,68.69,1020,63,0.9 +2008,1,25,19,30,7.5,1.02,0.106,0.63,0,0,0,0,2.3000000000000003,0,0,0,0,126.05,0.13,1.5,69.51,1021,71,1 +2008,1,25,20,30,7,0.99,0.112,0.63,0,0,0,0,2.2,0,0,0,0,136.93,0.13,1.5,71.36,1021,68,1 +2008,1,25,21,30,6.6000000000000005,0.97,0.11900000000000001,0.63,0,0,0,3,2.2,0,0,0,0,146.89000000000001,0.13,1.5,73.4,1021,61,1.1 +2008,1,25,22,30,6.2,0.97,0.125,0.63,0,0,0,1,2.2,0,0,0,0,154.47,0.13,1.5,75.58,1021,56,1.2000000000000002 +2008,1,25,23,30,6,0.96,0.126,0.63,0,0,0,5,2.2,0,0,0,0,156.98,0.13,1.5,76.81,1021,53,1.2000000000000002 +2008,1,26,0,30,5.9,0.96,0.125,0.63,0,0,0,1,2.2,0,0,0,0,152.94,0.13,1.5,76.97,1021,50,1.3 +2008,1,26,1,30,5.9,0.9500000000000001,0.12,0.63,0,0,0,1,2.1,0,0,0,0,144.56,0.13,1.4000000000000001,76.37,1020,46,1.2000000000000002 +2008,1,26,2,30,5.7,0.93,0.11,0.63,0,0,0,1,1.9000000000000001,0,0,0,0,134.27,0.13,1.4000000000000001,76.44,1020,40,1.2000000000000002 +2008,1,26,3,30,5.1000000000000005,0.9,0.099,0.63,0,0,0,0,1.8,0,0,0,0,123.28,0.13,1.3,79.06,1020,39,1.3 +2008,1,26,4,30,4.3,0.86,0.089,0.63,0,0,0,1,1.6,0,0,0,0,112.12,0.13,1.2000000000000002,82.89,1020,46,1.4000000000000001 +2008,1,26,5,30,3.9000000000000004,0.8300000000000001,0.081,0.63,0,0,0,1,1.4000000000000001,0,0,0,0,101.16,0.13,1.1,83.84,1020,59,1.4000000000000001 +2008,1,26,6,30,5.1000000000000005,0.81,0.074,0.63,0,0,0,0,1.3,0,0,0,0,90.07000000000001,0.13,1,76.29,1020,75,1.5 +2008,1,26,7,30,7.800000000000001,0.81,0.069,0.63,45,499,124,0,3.1,45,499,0,124,80.94,0.13,0.9,72.42,1020,90,1.9000000000000001 +2008,1,26,8,30,10.4,0.84,0.066,0.63,65,713,278,0,3.5,65,713,0,278,72.60000000000001,0.13,0.9,62.4,1021,114,2.2 +2008,1,26,9,30,12.8,0.88,0.065,0.63,75,810,404,0,3.6,75,810,0,404,66.03,0.13,0.9,53.660000000000004,1021,150,2.2 +2008,1,26,10,30,14.4,0.9400000000000001,0.064,0.63,80,861,486,0,3.3000000000000003,80,861,0,486,61.89,0.13,0.8,47.38,1021,179,2.3000000000000003 +2008,1,26,11,30,15.200000000000001,0.99,0.063,0.63,81,874,508,0,3.5,81,874,0,508,60.69,0.13,0.8,45.660000000000004,1020,195,2.2 +2008,1,26,12,30,15.4,1.05,0.061,0.63,78,865,476,0,3.7,78,865,0,476,62.61,0.13,0.7000000000000001,45.64,1020,208,2.1 +2008,1,26,13,30,15,1.09,0.058,0.63,70,819,385,0,3.9000000000000004,70,819,0,385,67.38,0.13,0.7000000000000001,47.26,1020,218,1.8 +2008,1,26,14,30,13,1.12,0.057,0.63,58,720,251,0,5.5,58,720,0,251,74.42,0.13,0.6000000000000001,60.480000000000004,1020,231,1.4000000000000001 +2008,1,26,15,30,10.5,0.93,0.058,0.63,37,464,93,0,6.2,37,464,0,93,83.08,0.13,0.6000000000000001,74.79,1020,244,1.3 +2008,1,26,16,30,9.4,0.93,0.056,0.63,0,0,0,0,4.4,0,0,0,0,93.08,0.13,0.6000000000000001,70.9,1021,252,1.3 +2008,1,26,17,30,9.3,0.92,0.053,0.63,0,0,0,0,3.9000000000000004,0,0,0,0,103.69,0.13,0.6000000000000001,69.23,1021,257,1.1 +2008,1,26,18,30,9.3,0.92,0.051000000000000004,0.63,0,0,0,0,3.6,0,0,0,0,114.72,0.13,0.6000000000000001,67.47,1021,253,0.6000000000000001 +2008,1,26,19,30,9.200000000000001,0.93,0.049,0.63,0,0,0,0,3.3000000000000003,0,0,0,0,125.86,0.13,0.5,66.39,1021,192,0.4 +2008,1,26,20,30,8.700000000000001,0.9500000000000001,0.047,0.63,0,0,0,0,2.8000000000000003,0,0,0,0,136.73,0.13,0.5,66.69,1021,125,0.5 +2008,1,26,21,30,8.1,0.9500000000000001,0.046,0.63,0,0,0,0,2.5,0,0,0,0,146.66,0.13,0.5,67.77,1021,109,0.8 +2008,1,26,22,30,7.7,0.96,0.046,0.63,0,0,0,0,2.1,0,0,0,0,154.22,0.13,0.5,67.81,1021,97,1 +2008,1,26,23,30,7.300000000000001,0.99,0.046,0.63,0,0,0,0,1.6,0,0,0,0,156.74,0.13,0.5,67.32000000000001,1021,80,1.1 +2008,1,27,0,30,7,1.03,0.046,0.63,0,0,0,3,1,0,0,0,0,152.74,0.13,0.5,65.71000000000001,1020,71,1.2000000000000002 +2008,1,27,1,30,6.9,1.04,0.044,0.63,0,0,0,0,0.4,0,0,0,0,144.41,0.13,0.5,63.29,1020,73,1 +2008,1,27,2,30,6.800000000000001,1.06,0.042,0.63,0,0,0,0,-0.1,0,0,0,0,134.15,0.13,0.5,61.38,1019,79,0.9 +2008,1,27,3,30,6.5,1.06,0.042,0.63,0,0,0,0,-0.4,0,0,0,0,123.16,0.13,0.5,61.45,1019,77,0.9 +2008,1,27,4,30,6.1000000000000005,1.07,0.042,0.63,0,0,0,7,-0.5,0,0,0,0,112,0.13,0.5,62.72,1019,66,1 +2008,1,27,5,30,6,1.08,0.043000000000000003,0.63,0,0,0,7,-0.6000000000000001,0,0,0,0,101.03,0.13,0.5,62.58,1019,65,1 +2008,1,27,6,30,6.6000000000000005,1.08,0.044,0.63,0,0,0,6,-0.7000000000000001,0,0,7,0,89.96000000000001,0.13,0.5,59.620000000000005,1019,68,0.9 +2008,1,27,7,30,8,1.08,0.043000000000000003,0.63,41,597,137,6,1,3,0,0,3,80.78,0.13,0.5,61.410000000000004,1019,65,0.7000000000000001 +2008,1,27,8,30,9.5,1.08,0.043000000000000003,0.63,58,787,296,6,2.9000000000000004,63,1,0,64,72.41,0.13,0.5,63.42,1019,65,0.6000000000000001 +2008,1,27,9,30,10.8,1.07,0.043000000000000003,0.63,68,874,426,7,0.8,176,52,0,198,65.82000000000001,0.13,0.5,49.910000000000004,1019,192,0.5 +2008,1,27,10,30,11.600000000000001,1.1,0.048,0.63,75,907,505,6,0.5,175,16,0,182,61.65,0.13,0.5,46.47,1018,314,0.9 +2008,1,27,11,30,11.9,1.1300000000000001,0.065,0.63,83,895,525,6,0.5,239,82,0,279,60.43,0.13,0.5,45.67,1017,314,1.3 +2008,1,27,12,30,11.8,1.12,0.073,0.63,83,860,482,6,1,226,71,0,259,62.35,0.13,0.6000000000000001,47.39,1016,317,1.3 +2008,1,27,13,30,11.4,1.1,0.066,0.63,74,811,389,7,1.6,175,56,0,197,67.13,0.13,0.7000000000000001,51.06,1016,319,1.1 +2008,1,27,14,30,10.600000000000001,1.08,0.066,0.63,61,690,249,7,3.3000000000000003,138,56,0,153,74.19,0.13,0.9,60.64,1015,322,0.9 +2008,1,27,15,30,9.8,1.06,0.069,0.63,38,435,92,7,3.2,49,5,7,50,82.86,0.13,1,63.56,1015,324,0.7000000000000001 +2008,1,27,16,30,9.3,1.07,0.067,0.63,0,0,0,6,2.3000000000000003,0,0,0,0,92.87,0.13,1.1,61.49,1014,337,0.4 +2008,1,27,17,30,8.8,1.11,0.066,0.63,0,0,0,7,1.9000000000000001,0,0,0,0,103.49000000000001,0.13,1.1,62,1014,203,0.30000000000000004 +2008,1,27,18,30,8.200000000000001,1.16,0.065,0.63,0,0,0,7,1.9000000000000001,0,0,0,0,114.52,0.13,1.2000000000000002,64.55,1014,63,0.4 +2008,1,27,19,30,7.7,1.2,0.066,0.63,0,0,0,6,2.1,0,0,0,0,125.66,0.13,1.3,67.74,1014,75,0.6000000000000001 +2008,1,27,20,30,7.4,1.23,0.069,0.63,0,0,0,6,2.3000000000000003,0,0,0,0,136.52,0.13,1.4000000000000001,69.94,1014,78,0.8 +2008,1,27,21,30,6.800000000000001,1.25,0.07200000000000001,0.63,0,0,0,6,2.4000000000000004,0,0,0,0,146.43,0.13,1.4000000000000001,73.47,1013,71,1 +2008,1,27,22,30,6.4,1.25,0.07200000000000001,0.63,0,0,0,6,2.4000000000000004,0,0,0,0,153.96,0.13,1.4000000000000001,75.33,1013,61,1.2000000000000002 +2008,1,27,23,30,6.2,1.25,0.07,0.63,0,0,0,7,2.1,0,0,0,0,156.49,0.13,1.3,75.23,1012,52,1.3 +2008,1,28,0,30,6,1.24,0.067,0.63,0,0,0,7,1.9000000000000001,0,0,0,0,152.54,0.13,1.3,74.78,1012,41,1.4000000000000001 +2008,1,28,1,30,5.6000000000000005,1.23,0.063,0.63,0,0,0,7,1.6,0,0,0,0,144.25,0.13,1.2000000000000002,75.35000000000001,1012,28,1.5 +2008,1,28,2,30,5.300000000000001,1.22,0.058,0.63,0,0,0,7,1.3,0,0,0,0,134.02,0.13,1.1,75.38,1012,16,1.6 +2008,1,28,3,30,5.2,1.24,0.051000000000000004,0.63,0,0,0,7,1.1,0,0,0,0,123.04,0.13,1.1,74.87,1012,10,1.7000000000000002 +2008,1,28,4,30,5.5,1.26,0.042,0.63,0,0,0,7,1.2000000000000002,0,0,0,0,111.88,0.13,1.1,73.98,1012,11,1.7000000000000002 +2008,1,28,5,30,6,1.28,0.034,0.63,0,0,0,7,0.9,0,0,0,0,100.9,0.13,1.1,70,1012,23,1.7000000000000002 +2008,1,28,6,30,7.7,1.27,0.031,0.63,0,0,0,7,0.7000000000000001,0,0,7,0,89.85000000000001,0.13,1,61.04,1013,48,1.5 +2008,1,28,7,30,10.9,1.28,0.029,0.63,37,609,136,7,2.9000000000000004,79,29,7,84,80.61,0.13,1,57.59,1014,80,1.6 +2008,1,28,8,30,13.9,1.29,0.027,0.63,51,792,293,8,3.5,151,69,0,172,72.22,0.13,1,49.56,1015,103,2.2 +2008,1,28,9,30,15.700000000000001,0.92,0.05,0.63,70,835,415,7,2.3000000000000003,201,146,0,262,65.6,0.13,1,40.410000000000004,1015,113,2.7 +2008,1,28,10,30,16.8,0.89,0.053,0.63,77,871,493,7,3,221,123,0,280,61.410000000000004,0.13,1,39.75,1016,119,2.4000000000000004 +2008,1,28,11,30,17.5,0.91,0.054,0.63,79,881,517,8,3.9000000000000004,229,325,0,390,60.17,0.13,1,40.47,1015,117,1.6 +2008,1,28,12,30,17.900000000000002,0.85,0.061,0.63,79,849,477,3,4.3,274,151,0,344,62.09,0.13,1.1,40.42,1015,85,0.7000000000000001 +2008,1,28,13,30,17.6,0.85,0.061,0.63,73,798,386,3,4.3,229,69,0,256,66.88,0.13,1.1,41.22,1016,201,0.4 +2008,1,28,14,30,16.2,0.87,0.059000000000000004,0.63,60,694,252,8,6.6000000000000005,125,28,0,133,73.95,0.13,1.1,52.910000000000004,1016,329,0.4 +2008,1,28,15,30,14.5,0.91,0.056,0.63,37,459,96,0,6.4,37,459,0,96,82.64,0.13,1.2000000000000002,58.46,1016,315,0.5 +2008,1,28,16,30,13.4,0.97,0.056,0.63,0,0,0,0,4.9,0,0,0,0,92.65,0.13,1.2000000000000002,56.56,1017,165,0.4 +2008,1,28,17,30,12.3,1.02,0.057,0.63,0,0,0,0,4.800000000000001,0,0,0,0,103.29,0.13,1.2000000000000002,60.09,1017,45,0.4 +2008,1,28,18,30,11.100000000000001,1.06,0.058,0.63,0,0,0,0,4.6000000000000005,0,0,0,0,114.32000000000001,0.13,1.2000000000000002,64.38,1018,89,0.7000000000000001 +2008,1,28,19,30,10,1.09,0.059000000000000004,0.63,0,0,0,0,4.6000000000000005,0,0,0,0,125.46000000000001,0.13,1.2000000000000002,69.08,1018,105,0.8 +2008,1,28,20,30,9.200000000000001,1.1,0.061,0.63,0,0,0,0,4.5,0,0,0,0,136.31,0.13,1.2000000000000002,72.48,1018,109,0.9 +2008,1,28,21,30,8.8,1.1,0.064,0.63,0,0,0,0,4.5,0,0,0,0,146.20000000000002,0.13,1.3,74.19,1019,109,0.9 +2008,1,28,22,30,8.4,1.07,0.068,0.63,0,0,0,0,4.4,0,0,0,0,153.71,0.13,1.3,75.95,1019,111,0.9 +2008,1,28,23,30,8.3,1.03,0.073,0.63,0,0,0,0,4.3,0,0,0,0,156.23,0.13,1.3,76.13,1019,115,1 +2008,1,29,0,30,8.5,1,0.078,0.63,0,0,0,0,4.3,0,0,0,0,152.33,0.13,1.4000000000000001,75.08,1019,126,1 +2008,1,29,1,30,8.700000000000001,0.98,0.081,0.63,0,0,0,0,4.5,0,0,0,0,144.08,0.13,1.5,74.83,1018,142,1.1 +2008,1,29,2,30,8.700000000000001,0.97,0.084,0.63,0,0,0,0,4.9,0,0,0,0,133.88,0.13,1.5,77.13,1018,149,1.1 +2008,1,29,3,30,8.4,0.97,0.085,0.63,0,0,0,0,5.300000000000001,0,0,0,0,122.91,0.13,1.6,81.03,1018,141,1.1 +2008,1,29,4,30,7.9,0.98,0.084,0.63,0,0,0,0,5.5,0,0,0,0,111.75,0.13,1.6,84.97,1019,129,1.1 +2008,1,29,5,30,7.4,0.99,0.082,0.63,0,0,0,0,5.5,0,0,0,0,100.76,0.13,1.6,87.79,1019,121,1.2000000000000002 +2008,1,29,6,30,8.1,1.01,0.079,0.63,0,0,0,0,5.4,0,0,0,0,89.72,0.13,1.5,82.99,1019,117,1.2000000000000002 +2008,1,29,7,30,10.3,1.03,0.076,0.63,47,491,128,3,6.300000000000001,38,0,7,38,80.44,0.13,1.5,76.09,1019,126,1.2000000000000002 +2008,1,29,8,30,12.5,1.05,0.073,0.63,67,695,281,0,6.300000000000001,67,695,0,281,72.02,0.13,1.5,65.97,1019,160,1.4000000000000001 +2008,1,29,9,30,13.9,1.06,0.07100000000000001,0.63,77,790,406,0,6.300000000000001,77,790,0,406,65.38,0.13,1.5,60,1019,191,1.5 +2008,1,29,10,30,14.700000000000001,1.09,0.068,0.63,82,837,485,0,6,82,837,0,485,61.160000000000004,0.13,1.5,56.01,1018,203,1.6 +2008,1,29,11,30,15.200000000000001,1.12,0.065,0.63,82,852,509,0,6,82,852,0,509,59.910000000000004,0.13,1.5,54.01,1017,211,1.8 +2008,1,29,12,30,15.3,1.1300000000000001,0.062,0.63,78,839,475,0,5.7,78,839,0,475,61.83,0.13,1.5,52.85,1017,216,1.9000000000000001 +2008,1,29,13,30,14.9,1.1400000000000001,0.059000000000000004,0.63,71,794,386,0,5.5,71,794,0,386,66.62,0.13,1.5,53.31,1017,218,1.8 +2008,1,29,14,30,13.3,1.1400000000000001,0.056,0.63,58,695,253,0,5.7,58,695,0,253,73.7,0.13,1.5,59.93,1017,217,1.4000000000000001 +2008,1,29,15,30,11.3,1.1500000000000001,0.054,0.63,37,473,99,0,7.4,37,473,0,99,82.41,0.13,1.4000000000000001,77,1016,215,1.1 +2008,1,29,16,30,10.3,1.1500000000000001,0.054,0.63,0,0,0,0,6,0,0,0,0,92.44,0.13,1.4000000000000001,74.5,1017,210,1.1 +2008,1,29,17,30,10.100000000000001,1.1500000000000001,0.055,0.63,0,0,0,0,6,0,0,0,0,103.08,0.13,1.4000000000000001,75.72,1017,196,1 +2008,1,29,18,30,9.700000000000001,1.1300000000000001,0.055,0.63,0,0,0,0,6.300000000000001,0,0,0,0,114.12,0.13,1.3,79.54,1017,172,1 +2008,1,29,19,30,9,1.12,0.054,0.63,0,0,0,0,6.6000000000000005,0,0,0,0,125.26,0.13,1.3,84.85000000000001,1017,153,1.1 +2008,1,29,20,30,8.200000000000001,1.12,0.054,0.63,0,0,0,0,6.7,0,0,0,0,136.1,0.13,1.3,90.37,1017,144,1.3 +2008,1,29,21,30,7.5,1.1300000000000001,0.057,0.63,0,0,0,0,6.7,0,0,0,0,145.97,0.13,1.3,94.91,1017,139,1.4000000000000001 +2008,1,29,22,30,7,1.1300000000000001,0.062,0.63,0,0,0,0,6.7,0,0,0,0,153.44,0.13,1.2000000000000002,97.72,1017,137,1.5 +2008,1,29,23,30,6.6000000000000005,1.11,0.065,0.63,0,0,0,1,6.5,0,0,0,0,155.96,0.13,1.2000000000000002,99.41,1016,135,1.6 +2008,1,30,0,30,6.300000000000001,1.09,0.069,0.63,0,0,0,1,6.300000000000001,0,0,0,0,152.11,0.13,1.2000000000000002,99.98,1016,133,1.7000000000000002 +2008,1,30,1,30,6,1.07,0.07200000000000001,0.63,0,0,0,1,6,0,0,0,0,143.91,0.13,1.1,99.88,1015,133,1.7000000000000002 +2008,1,30,2,30,6.2,1.05,0.078,0.63,0,0,0,1,5.7,0,0,0,0,133.73,0.13,1.1,96.66,1015,134,1.7000000000000002 +2008,1,30,3,30,6.6000000000000005,1.06,0.084,0.63,0,0,0,1,5.7,0,0,0,0,122.78,0.13,1.1,94.31,1015,134,1.7000000000000002 +2008,1,30,4,30,6.9,1.07,0.083,0.63,0,0,0,1,6,0,0,0,0,111.62,0.13,1.1,93.88,1015,131,1.7000000000000002 +2008,1,30,5,30,7.300000000000001,1.07,0.078,0.63,0,0,0,1,6.300000000000001,0,0,0,0,100.62,0.13,1.1,93.16,1015,129,1.7000000000000002 +2008,1,30,6,30,8.5,1.1400000000000001,0.081,0.63,0,0,0,3,6.6000000000000005,0,0,7,0,89.59,0.13,1.2000000000000002,87.66,1015,128,1.9000000000000001 +2008,1,30,7,30,10.100000000000001,1.16,0.084,0.63,49,497,133,3,7.2,35,0,7,35,80.26,0.13,1.2000000000000002,81.98,1015,132,2.5 +2008,1,30,8,30,11.4,1.1500000000000001,0.08,0.63,70,700,289,8,7.5,52,1,7,52,71.82000000000001,0.13,1.2000000000000002,76.83,1016,146,2.7 +2008,1,30,9,30,12.600000000000001,0.81,0.111,0.63,95,744,408,3,8.4,149,0,0,149,65.14,0.13,1.2000000000000002,75.76,1016,162,2.8000000000000003 +2008,1,30,10,30,13.5,0.87,0.1,0.63,97,806,489,3,8.8,233,20,0,242,60.9,0.13,1.2000000000000002,73.36,1015,177,2.8000000000000003 +2008,1,30,11,30,14.100000000000001,0.9,0.088,0.63,94,833,515,1,8.700000000000001,94,833,0,515,59.64,0.13,1.2000000000000002,69.74,1014,189,2.7 +2008,1,30,12,30,14.200000000000001,0.65,0.108,0.63,102,783,475,2,8.4,166,1,0,166,61.550000000000004,0.13,1.2000000000000002,68.14,1013,199,2.7 +2008,1,30,13,30,13.9,0.71,0.098,0.63,89,743,387,0,8.1,89,743,0,387,66.36,0.13,1.2000000000000002,68.04,1013,204,2.6 +2008,1,30,14,30,12.5,0.78,0.089,0.63,72,649,256,0,7.9,72,649,0,256,73.46000000000001,0.13,1.1,73.72,1013,206,1.9000000000000001 +2008,1,30,15,30,10.5,0.49,0.117,0.63,51,333,96,0,8.6,51,333,0,96,82.19,0.13,1.1,87.94,1012,208,1.2000000000000002 +2008,1,30,16,30,9.3,0.49,0.11800000000000001,0.63,0,0,0,0,8.200000000000001,0,0,0,0,92.22,0.13,1.1,92.57000000000001,1012,206,1.2000000000000002 +2008,1,30,17,30,8.9,0.46,0.11800000000000001,0.63,0,0,0,0,8.5,0,0,0,0,102.87,0.13,1,97.44,1012,199,1.2000000000000002 +2008,1,30,18,30,8.5,0.46,0.124,0.63,0,0,0,1,8.5,0,0,0,0,113.92,0.13,1,100,1012,194,1.2000000000000002 +2008,1,30,19,30,8.200000000000001,0.49,0.11800000000000001,0.63,0,0,0,0,8.200000000000001,0,0,0,0,125.06,0.13,1.1,100,1013,193,1.3 +2008,1,30,20,30,7.9,0.55,0.10300000000000001,0.63,0,0,0,3,7.9,0,0,0,0,135.89000000000001,0.13,1.1,100,1013,190,1.3 +2008,1,30,21,30,7.800000000000001,0.63,0.096,0.63,0,0,0,4,7.800000000000001,0,0,0,0,145.73,0.13,1.2000000000000002,100,1012,182,1.3 +2008,1,30,22,30,7.7,0.6900000000000001,0.094,0.63,0,0,0,4,7.7,0,0,0,0,153.18,0.13,1.2000000000000002,100,1012,173,1.3 +2008,1,30,23,30,7.7,0.72,0.094,0.63,0,0,0,4,7.7,0,0,0,0,155.69,0.13,1.3,100,1012,167,1.3 +2008,1,31,0,30,7.5,0.77,0.105,0.63,0,0,0,4,7.5,0,0,0,0,151.88,0.13,1.3,100,1011,162,1.4000000000000001 +2008,1,31,1,30,7.4,0.79,0.115,0.63,0,0,0,4,7.4,0,0,0,0,143.73,0.13,1.4000000000000001,100,1011,161,1.4000000000000001 +2008,1,31,2,30,7.7,0.78,0.122,0.63,0,0,0,4,7.7,0,0,0,0,133.58,0.13,1.4000000000000001,99.9,1010,164,1.5 +2008,1,31,3,30,8.1,0.8300000000000001,0.149,0.63,0,0,0,4,7.4,0,0,0,0,122.63,0.13,1.4000000000000001,95.63,1010,172,1.5 +2008,1,31,4,30,8.4,0.85,0.16,0.63,0,0,0,4,7.300000000000001,0,0,0,0,111.48,0.13,1.4000000000000001,92.57000000000001,1010,180,1.4000000000000001 +2008,1,31,5,30,8.700000000000001,0.8300000000000001,0.16,0.63,0,0,0,4,7.1000000000000005,0,0,0,0,100.47,0.13,1.4000000000000001,89.41,1010,185,1.3 +2008,1,31,6,30,9.200000000000001,0.84,0.18,0.63,0,0,0,8,6.9,0,0,7,0,89.45,0.13,1.4000000000000001,85.81,1010,188,1.2000000000000002 +2008,1,31,7,30,10.200000000000001,0.84,0.189,0.63,68,327,124,7,7.4,3,0,0,3,80.08,0.13,1.4000000000000001,82.79,1010,187,1.4000000000000001 +2008,1,31,8,30,11,0.81,0.185,0.63,102,543,273,7,7.7,69,2,0,69,71.61,0.13,1.4000000000000001,80.12,1010,189,1.7000000000000002 +2008,1,31,9,30,11.5,0.86,0.194,0.63,123,644,396,7,7.5,8,0,0,8,64.91,0.13,1.4000000000000001,76.46000000000001,1010,196,2 +2008,1,31,10,30,11.8,0.88,0.199,0.63,134,691,473,7,7.4,31,0,0,31,60.64,0.13,1.4000000000000001,74.24,1010,206,2.2 +2008,1,31,11,30,12,0.88,0.194,0.63,135,707,495,7,7.2,116,3,0,118,59.36,0.13,1.5,72.58,1009,218,2.2 +2008,1,31,12,30,11.9,0.87,0.232,0.63,143,645,453,7,7.300000000000001,216,38,0,234,61.28,0.13,1.6,73.59,1009,231,2.2 +2008,1,31,13,30,11.600000000000001,0.88,0.227,0.63,129,588,367,5,7.6000000000000005,75,0,0,75,66.09,0.13,1.6,76.56,1009,242,2 +2008,1,31,14,30,10.9,0.86,0.217,0.63,102,469,237,8,8.1,27,0,0,27,73.21000000000001,0.13,1.7000000000000002,82.91,1008,251,1.4000000000000001 +2008,1,31,15,30,9.9,0.87,0.232,0.63,59,218,90,4,8.3,7,0,7,7,81.96000000000001,0.13,1.7000000000000002,90.02,1008,256,1.1 +2008,1,31,16,30,9.3,0.85,0.228,0.63,0,0,0,3,7.800000000000001,0,0,0,0,92.01,0.13,1.7000000000000002,90.23,1009,258,1.2000000000000002 +2008,1,31,17,30,9,0.8200000000000001,0.212,0.63,0,0,0,4,7.7,0,0,0,0,102.67,0.13,1.6,91.51,1009,258,1.2000000000000002 +2008,1,31,18,30,8.8,0.81,0.20600000000000002,0.63,0,0,0,4,7.6000000000000005,0,0,0,0,113.72,0.13,1.6,92.31,1009,253,1.2000000000000002 +2008,1,31,19,30,8.6,0.8,0.188,0.63,0,0,0,0,7.5,0,0,0,0,124.85000000000001,0.13,1.5,92.95,1009,243,1.2000000000000002 +2008,1,31,20,30,8.3,0.78,0.17200000000000001,0.63,0,0,0,0,7.4,0,0,0,0,135.67000000000002,0.13,1.5,94.28,1009,226,1.1 +2008,1,31,21,30,8,0.77,0.163,0.63,0,0,0,0,7.300000000000001,0,0,0,0,145.49,0.13,1.5,95.52,1009,206,1.1 +2008,1,31,22,30,7.6000000000000005,0.76,0.151,0.63,0,0,0,0,7.2,0,0,0,0,152.91,0.13,1.4000000000000001,97.22,1009,190,1.2000000000000002 +2008,1,31,23,30,7.2,0.74,0.14,0.63,0,0,0,0,7.1000000000000005,0,0,0,0,155.42000000000002,0.13,1.4000000000000001,98.99000000000001,1009,183,1.2000000000000002 +2008,2,1,0,30,7,0.75,0.139,0.64,0,0,0,0,7,0,0,0,0,151.65,0.13,1.3,99.7,1009,178,1.3 +2008,2,1,1,30,6.9,0.75,0.136,0.64,0,0,0,3,6.9,0,0,0,0,143.55,0.13,1.3,99.74000000000001,1008,174,1.3 +2008,2,1,2,30,6.9,0.74,0.13,0.64,0,0,0,4,6.7,0,0,0,0,133.42000000000002,0.13,1.3,98.62,1008,169,1.3 +2008,2,1,3,30,7,0.77,0.138,0.64,0,0,0,4,6.5,0,0,0,0,122.49000000000001,0.13,1.3,96.49000000000001,1008,163,1.3 +2008,2,1,4,30,7.300000000000001,0.8,0.14200000000000002,0.64,0,0,0,4,6.4,0,0,0,0,111.33,0.13,1.3,94.11,1008,155,1.3 +2008,2,1,5,30,7.6000000000000005,0.8200000000000001,0.138,0.64,0,0,0,3,6.4,0,0,0,0,100.31,0.13,1.3,92.23,1008,148,1.4000000000000001 +2008,2,1,6,30,8.5,0.88,0.15,0.64,0,0,0,3,6.5,0,0,7,0,89.3,0.13,1.3,87.31,1009,142,1.9000000000000001 +2008,2,1,7,30,9.700000000000001,0.92,0.153,0.64,62,387,130,1,7.1000000000000005,62,387,0,130,79.89,0.13,1.3,83.85000000000001,1009,143,2.7 +2008,2,1,8,30,10.600000000000001,0.93,0.14300000000000002,0.64,90,609,284,0,7.2,90,609,0,284,71.39,0.13,1.3,79.66,1009,150,3 +2008,2,1,9,30,11.3,1.07,0.14,0.64,103,717,410,0,7.300000000000001,103,717,0,410,64.66,0.13,1.4000000000000001,76.41,1009,161,3 +2008,2,1,10,30,12,1.1,0.14100000000000001,0.64,111,764,489,1,7.300000000000001,111,764,0,489,60.370000000000005,0.13,1.4000000000000001,73.07000000000001,1008,174,2.9000000000000004 +2008,2,1,11,30,12.5,1.11,0.134,0.64,111,784,514,4,7.300000000000001,219,5,0,221,59.08,0.13,1.4000000000000001,70.61,1008,188,2.9000000000000004 +2008,2,1,12,30,12.8,1.11,0.148,0.64,113,747,475,4,7.2,86,0,0,86,61,0.13,1.5,68.54,1007,201,3 +2008,2,1,13,30,12.600000000000001,1.1500000000000001,0.139,0.64,100,703,388,0,7,100,703,0,388,65.83,0.13,1.5,68.58,1007,210,3 +2008,2,1,14,30,11.700000000000001,1.16,0.124,0.64,79,612,259,3,7,9,0,0,9,72.96000000000001,0.13,1.4000000000000001,72.68,1007,215,2.5 +2008,2,1,15,30,10.100000000000001,1.01,0.134,0.64,52,355,103,4,7.6000000000000005,19,0,7,19,81.73,0.13,1.4000000000000001,84.63,1007,217,1.8 +2008,2,1,16,30,8.8,0.93,0.124,0.64,0,0,0,4,7.2,0,0,0,0,91.79,0.13,1.4000000000000001,89.4,1007,216,1.7000000000000002 +2008,2,1,17,30,8.200000000000001,0.85,0.108,0.64,0,0,0,3,7.1000000000000005,0,0,0,0,102.46000000000001,0.13,1.3,92.67,1007,212,1.7000000000000002 +2008,2,1,18,30,8,0.81,0.105,0.64,0,0,0,4,7.1000000000000005,0,0,0,0,113.52,0.13,1.3,94.19,1007,209,1.8 +2008,2,1,19,30,8.3,0.8,0.1,0.64,0,0,0,4,7,0,0,0,0,124.65,0.13,1.4000000000000001,91.78,1007,205,1.9000000000000001 +2008,2,1,20,30,8.6,0.8200000000000001,0.08700000000000001,0.64,0,0,0,4,7,0,0,0,0,135.45,0.13,1.4000000000000001,89.87,1007,202,2.1 +2008,2,1,21,30,8.4,0.88,0.081,0.64,0,0,0,4,6.9,0,0,0,0,145.25,0.13,1.5,90.36,1007,198,2.2 +2008,2,1,22,30,8.3,0.89,0.08,0.64,0,0,0,4,6.800000000000001,0,0,0,0,152.63,0.13,1.5,90.13,1006,194,2.3000000000000003 +2008,2,1,23,30,8.200000000000001,0.88,0.084,0.64,0,0,0,4,6.6000000000000005,0,0,0,0,155.14000000000001,0.13,1.5,89.82000000000001,1006,191,2.3000000000000003 +2008,2,2,0,30,8,0.89,0.088,0.64,0,0,0,4,6.5,0,0,0,0,151.41,0.14,1.5,90.43,1005,189,2.3000000000000003 +2008,2,2,1,30,7.800000000000001,0.88,0.08600000000000001,0.64,0,0,0,4,6.4,0,0,0,0,143.36,0.14,1.5,91.02,1005,189,2.4000000000000004 +2008,2,2,2,30,7.800000000000001,0.87,0.08600000000000001,0.64,0,0,0,4,6.5,0,0,0,0,133.26,0.14,1.6,91.4,1004,188,2.4000000000000004 +2008,2,2,3,30,8,0.85,0.094,0.64,0,0,0,4,6.800000000000001,0,0,0,0,122.33,0.14,1.6,91.91,1004,187,2.5 +2008,2,2,4,30,8.5,0.84,0.107,0.64,0,0,0,4,7.1000000000000005,0,0,0,0,111.18,0.14,1.7000000000000002,90.74,1004,186,2.6 +2008,2,2,5,30,9,0.84,0.111,0.64,0,0,0,4,7.4,0,0,0,0,100.15,0.14,1.6,89.7,1004,188,2.8000000000000003 +2008,2,2,6,30,9.9,0.87,0.12,0.64,0,0,0,4,7.7,0,0,7,0,89.15,0.14,1.6,86.39,1005,192,3.1 +2008,2,2,7,30,11,0.88,0.10400000000000001,0.64,55,459,137,4,8.5,11,0,7,11,79.7,0.14,1.5,84.39,1005,196,3.8000000000000003 +2008,2,2,8,30,12,0.91,0.081,0.64,72,693,295,4,9,11,0,0,11,71.17,0.14,1.5,81.86,1006,200,4.6000000000000005 +2008,2,2,9,30,12.700000000000001,0.9500000000000001,0.075,0.64,81,796,424,4,8.6,116,0,0,116,64.41,0.14,1.4000000000000001,76.02,1006,200,5 +2008,2,2,10,30,13.200000000000001,0.9500000000000001,0.075,0.64,86,838,504,4,7.9,213,2,0,214,60.1,0.14,1.4000000000000001,70.17,1005,198,4.9 +2008,2,2,11,30,13.4,0.9400000000000001,0.073,0.64,87,854,530,3,7.6000000000000005,88,0,0,88,58.800000000000004,0.14,1.3,67.77,1005,195,4.7 +2008,2,2,12,30,13.4,0.92,0.079,0.64,87,830,494,0,7.2,87,830,0,494,60.71,0.14,1.3,66.31,1005,191,4.5 +2008,2,2,13,30,13.200000000000001,0.9400000000000001,0.078,0.64,80,782,404,4,6.9,100,0,0,100,65.55,0.14,1.3,65.55,1004,184,4.1000000000000005 +2008,2,2,14,30,12.200000000000001,0.96,0.079,0.64,68,676,268,3,6.800000000000001,107,2,0,108,72.71000000000001,0.14,1.3,69.35000000000001,1005,174,3.2 +2008,2,2,15,30,10.3,0.91,0.093,0.64,47,423,109,0,7.4,47,423,0,109,81.49,0.14,1.3,82.31,1005,163,2.2 +2008,2,2,16,30,8.8,0.9500000000000001,0.1,0.64,0,0,0,0,7.2,0,0,0,0,91.57000000000001,0.14,1.3,89.53,1005,154,2 +2008,2,2,17,30,8.3,0.98,0.111,0.64,0,0,0,0,7.4,0,0,0,0,102.25,0.14,1.4000000000000001,94.25,1006,146,2 +2008,2,2,18,30,7.9,1,0.126,0.64,0,0,0,3,7.800000000000001,0,0,0,0,113.31,0.14,1.5,99.12,1007,139,2 +2008,2,2,19,30,7.800000000000001,1,0.145,0.64,0,0,0,4,7.800000000000001,0,0,0,0,124.44,0.14,1.5,100,1007,133,2 +2008,2,2,20,30,8,1,0.165,0.64,0,0,0,5,7.9,0,0,0,0,135.23,0.14,1.5,99.52,1008,130,2.1 +2008,2,2,21,30,8.200000000000001,1.01,0.182,0.64,0,0,0,3,7.9,0,0,0,0,145.01,0.14,1.6,98.04,1008,131,2.2 +2008,2,2,22,30,8.4,1.02,0.192,0.64,0,0,0,0,7.9,0,0,0,0,152.35,0.14,1.6,96.51,1008,133,2.1 +2008,2,2,23,30,8.5,1.01,0.19,0.64,0,0,0,0,7.9,0,0,0,0,154.85,0.14,1.6,95.81,1008,135,2 +2008,2,3,0,30,8.5,1.01,0.188,0.64,0,0,0,8,7.7,0,0,0,0,151.17000000000002,0.14,1.6,95.02,1008,134,2 +2008,2,3,1,30,8.4,1.01,0.178,0.64,0,0,0,4,7.6000000000000005,0,0,0,0,143.16,0.14,1.6,94.64,1009,130,2.1 +2008,2,3,2,30,8.1,1.01,0.165,0.64,0,0,0,8,7.300000000000001,0,0,0,0,133.09,0.14,1.6,94.99,1009,125,2.2 +2008,2,3,3,30,7.7,1.02,0.16,0.64,0,0,0,8,7.1000000000000005,0,0,0,0,122.17,0.14,1.5,96.10000000000001,1009,120,2.5 +2008,2,3,4,30,7.5,1.03,0.163,0.64,0,0,0,3,7,0,0,0,0,111.02,0.14,1.6,96.42,1010,116,2.7 +2008,2,3,5,30,7.6000000000000005,1.04,0.168,0.64,0,0,0,7,6.9,0,0,0,0,99.99000000000001,0.14,1.6,95.15,1010,114,3 +2008,2,3,6,30,8.5,1.03,0.17500000000000002,0.64,9,21,9,7,7.2,2,0,7,2,88.99,0.14,1.6,91.38,1011,119,3.4000000000000004 +2008,2,3,7,30,9.9,1.03,0.182,0.64,66,360,132,7,8,3,0,0,3,79.5,0.14,1.7000000000000002,88.22,1011,131,3.8000000000000003 +2008,2,3,8,30,11.200000000000001,1.04,0.187,0.64,100,556,281,7,9.200000000000001,6,0,0,6,70.95,0.14,1.7000000000000002,87.27,1012,141,4 +2008,2,3,9,30,12.200000000000001,1.04,0.23,0.64,131,616,399,8,9.5,154,11,0,158,64.16,0.14,1.7000000000000002,83.39,1012,145,4.2 +2008,2,3,10,30,12.9,1,0.225,0.64,142,671,479,4,9.1,94,0,0,94,59.82,0.14,1.7000000000000002,77.91,1011,151,4.3 +2008,2,3,11,30,13.100000000000001,0.9500000000000001,0.233,0.64,148,673,499,8,8.4,84,1,0,84,58.51,0.14,1.8,73.39,1011,155,4.3 +2008,2,3,12,30,12.9,0.92,0.254,0.64,151,632,462,7,8.1,118,2,0,119,60.43,0.14,1.8,72.41,1010,156,4.1000000000000005 +2008,2,3,13,30,12.200000000000001,0.9,0.27,0.64,142,554,373,7,7.9,39,0,0,39,65.28,0.14,1.8,74.87,1010,153,3.6 +2008,2,3,14,30,11.200000000000001,0.91,0.272,0.64,115,431,245,7,8.200000000000001,13,0,0,13,72.45,0.14,1.8,81.54,1010,148,2.7 +2008,2,3,15,30,10.100000000000001,0.93,0.26,0.64,65,221,99,7,8.4,3,0,0,3,81.26,0.14,1.8,89.22,1010,142,2.3000000000000003 +2008,2,3,16,30,9.700000000000001,0.9500000000000001,0.23700000000000002,0.64,0,0,0,7,8.200000000000001,0,0,0,0,91.35000000000001,0.14,1.9000000000000001,90.67,1010,138,2.4000000000000004 +2008,2,3,17,30,9.700000000000001,0.96,0.215,0.64,0,0,0,7,8.3,0,0,0,0,102.04,0.14,1.9000000000000001,91.12,1010,138,2.7 +2008,2,3,18,30,9.700000000000001,0.99,0.223,0.64,0,0,0,4,8.4,0,0,0,0,113.11,0.14,1.9000000000000001,91.58,1010,137,2.7 +2008,2,3,19,30,9.700000000000001,1,0.215,0.64,0,0,0,4,8.5,0,0,0,0,124.23,0.14,1.9000000000000001,92.2,1010,137,2.8000000000000003 +2008,2,3,20,30,9.8,0.98,0.188,0.64,0,0,0,8,8.700000000000001,0,0,0,0,135.01,0.14,1.9000000000000001,92.57000000000001,1010,140,3 +2008,2,3,21,30,10.100000000000001,1,0.186,0.64,0,0,0,7,8.8,0,0,0,0,144.76,0.14,1.9000000000000001,91.58,1009,147,3.6 +2008,2,3,22,30,10.4,0.98,0.166,0.64,0,0,0,5,9,0,0,0,0,152.07,0.14,1.9000000000000001,90.85000000000001,1009,156,4.1000000000000005 +2008,2,3,23,30,10.600000000000001,0.9500000000000001,0.139,0.64,0,0,0,4,9.1,0,0,0,0,154.56,0.14,1.8,90.67,1009,161,4.6000000000000005 +2008,2,4,0,30,10.8,0.92,0.128,0.64,0,0,0,4,9.3,0,0,0,0,150.92000000000002,0.14,1.7000000000000002,90.26,1008,163,4.9 +2008,2,4,1,30,10.8,0.8300000000000001,0.113,0.64,0,0,0,4,9.5,0,0,0,0,142.95000000000002,0.14,1.7000000000000002,91.59,1008,165,5.2 +2008,2,4,2,30,11.100000000000001,0.76,0.12,0.64,0,0,0,3,9.8,0,0,0,0,132.91,0.14,1.8,91.7,1008,168,5.2 +2008,2,4,3,30,11.5,0.79,0.164,0.64,0,0,0,7,10.3,0,0,0,0,122.01,0.14,1.8,92.31,1007,174,5 +2008,2,4,4,30,11.700000000000001,0.79,0.171,0.64,0,0,0,7,10.600000000000001,0,0,0,0,110.85000000000001,0.14,1.8,92.77,1007,179,4.7 +2008,2,4,5,30,11.8,0.76,0.163,0.64,0,0,0,3,10.5,0,0,0,0,99.81,0.14,1.7000000000000002,91.64,1008,181,4.5 +2008,2,4,6,30,12,0.8200000000000001,0.20500000000000002,0.64,10,11,10,5,10.4,2,0,7,2,88.83,0.14,1.7000000000000002,89.76,1008,181,4.5 +2008,2,4,7,30,12.5,0.8,0.212,0.64,74,316,133,3,10.5,30,0,7,30,79.29,0.14,1.7000000000000002,87.73,1008,180,4.7 +2008,2,4,8,30,13,0.76,0.20600000000000002,0.64,110,524,283,2,10.600000000000001,134,4,0,135,70.71000000000001,0.14,1.7000000000000002,85.62,1008,178,5.1000000000000005 +2008,2,4,9,30,13.5,0.76,0.197,0.64,126,640,408,5,10.700000000000001,73,0,0,73,63.9,0.14,1.7000000000000002,83.06,1008,176,5.6000000000000005 +2008,2,4,10,30,14.100000000000001,0.77,0.198,0.64,137,690,486,5,10.4,144,0,0,144,59.54,0.14,1.7000000000000002,78.16,1008,173,6.1000000000000005 +2008,2,4,11,30,14.3,0.76,0.197,0.64,139,704,510,4,9.8,22,0,0,22,58.21,0.14,1.7000000000000002,74.53,1007,169,6.6000000000000005 +2008,2,4,12,30,14.200000000000001,0.74,0.17400000000000002,0.64,127,708,480,8,9.5,217,42,7,238,60.13,0.14,1.7000000000000002,73.39,1006,166,7 +2008,2,4,13,30,13.700000000000001,0.6900000000000001,0.188,0.64,122,632,389,5,9.4,65,0,0,65,65,0.14,1.7000000000000002,75.38,1005,163,7.2 +2008,2,4,14,30,12.9,0.61,0.20400000000000001,0.64,106,488,255,7,9.4,145,27,0,154,72.19,0.14,1.7000000000000002,79.35000000000001,1005,161,6.9 +2008,2,4,15,30,12.3,0.59,0.225,0.64,67,231,103,7,9.700000000000001,18,0,7,18,81.02,0.14,1.7000000000000002,84.28,1005,159,6.7 +2008,2,4,16,30,12.100000000000001,0.56,0.225,0.64,0,0,0,7,10,0,0,0,0,91.12,0.14,1.7000000000000002,86.85000000000001,1004,159,6.7 +2008,2,4,17,30,12.100000000000001,0.54,0.20700000000000002,0.64,0,0,0,8,10.200000000000001,0,0,0,0,101.83,0.14,1.8,88.09,1004,160,6.7 +2008,2,4,18,30,12.100000000000001,0.59,0.226,0.64,0,0,0,4,10.3,0,0,0,0,112.9,0.14,1.8,88.63,1003,163,6.6000000000000005 +2008,2,4,19,30,12.100000000000001,0.62,0.228,0.64,0,0,0,4,10.4,0,0,0,0,124.02,0.14,1.9000000000000001,89.55,1003,168,6.2 +2008,2,4,20,30,12.100000000000001,0.64,0.245,0.64,0,0,0,6,10.8,0,0,0,0,134.79,0.14,2,91.52,1002,180,5.6000000000000005 +2008,2,4,21,30,12,0.6900000000000001,0.274,0.64,0,0,0,6,11,0,0,0,0,144.51,0.14,2,93.39,1001,207,5.300000000000001 +2008,2,4,22,30,11.5,0.67,0.214,0.64,0,0,0,4,10.5,0,0,0,0,151.79,0.14,1.8,93.29,1001,241,5.1000000000000005 +2008,2,4,23,30,10.600000000000001,0.65,0.14300000000000002,0.64,0,0,0,3,9.3,0,0,0,0,154.26,0.14,1.5,91.66,1002,267,4.7 +2008,2,5,0,30,9.4,0.6900000000000001,0.11,0.64,0,0,0,4,7.5,0,0,0,0,150.66,0.14,1.2000000000000002,88.03,1002,281,4 +2008,2,5,1,30,8.6,0.62,0.106,0.64,0,0,0,7,6.2,0,0,0,0,142.74,0.14,1.1,85.13,1003,286,3.2 +2008,2,5,2,30,8.200000000000001,0.59,0.108,0.64,0,0,0,1,5.9,0,0,0,0,132.73,0.14,1.1,85.17,1003,287,2.7 +2008,2,5,3,30,8.1,0.67,0.129,0.64,0,0,0,8,5.800000000000001,0,0,0,0,121.84,0.14,1.2000000000000002,85.51,1003,290,2.3000000000000003 +2008,2,5,4,30,8,0.77,0.162,0.64,0,0,0,0,5.9,0,0,0,0,110.68,0.14,1.3,86.65,1004,299,2 +2008,2,5,5,30,7.800000000000001,0.85,0.20800000000000002,0.64,0,0,0,7,5.9,0,0,0,0,99.64,0.14,1.3,87.85000000000001,1005,310,1.8 +2008,2,5,6,30,8.4,0.98,0.244,0.64,10,14,11,0,6.1000000000000005,10,14,0,11,88.65,0.14,1.3,85.34,1006,324,2.1 +2008,2,5,7,30,9.5,1.11,0.209,0.64,73,360,141,1,6.5,73,360,0,141,79.08,0.14,1.2000000000000002,81.66,1006,335,2.8000000000000003 +2008,2,5,8,30,10.600000000000001,1.25,0.14400000000000002,0.64,89,642,304,0,6.1000000000000005,89,642,0,304,70.48,0.14,1.1,73.74,1007,342,3 +2008,2,5,9,30,11.700000000000001,1.51,0.101,0.64,89,796,442,0,5.4,89,796,0,442,63.63,0.14,1,65.5,1008,342,2.9000000000000004 +2008,2,5,10,30,12.700000000000001,1.52,0.088,0.64,90,852,526,0,4.800000000000001,90,852,0,526,59.25,0.14,1,58.74,1008,335,2.9000000000000004 +2008,2,5,11,30,13.4,1.52,0.081,0.64,89,871,552,0,4.3,89,871,0,552,57.910000000000004,0.14,1,54.03,1008,327,3.1 +2008,2,5,12,30,13.600000000000001,1.54,0.078,0.64,85,855,515,0,3.9000000000000004,85,855,0,515,59.84,0.14,1.1,52.050000000000004,1009,324,3.3000000000000003 +2008,2,5,13,30,13.5,1.54,0.07200000000000001,0.64,77,816,426,0,3.8000000000000003,77,816,0,426,64.72,0.14,1.1,51.86,1009,323,3.4000000000000004 +2008,2,5,14,30,12.4,1.52,0.066,0.64,64,725,289,0,4,64,725,0,289,71.93,0.14,1.2000000000000002,56.730000000000004,1010,321,2.8000000000000003 +2008,2,5,15,30,10.4,1.45,0.066,0.64,43,521,126,0,5.9,43,521,0,126,80.79,0.14,1.2000000000000002,73.47,1011,319,2.1 +2008,2,5,16,30,8.9,1.42,0.066,0.64,0,0,0,0,5.7,0,0,0,0,90.9,0.14,1.3,80.35000000000001,1011,324,2 +2008,2,5,17,30,8.4,1.41,0.067,0.64,0,0,0,0,5.800000000000001,0,0,0,0,101.62,0.14,1.3,83.48,1012,333,2 +2008,2,5,18,30,7.9,1.3900000000000001,0.068,0.64,0,0,0,0,5.9,0,0,0,0,112.69,0.14,1.3,87.11,1012,343,2.1 +2008,2,5,19,30,7.4,1.3800000000000001,0.066,0.64,0,0,0,0,6.1000000000000005,0,0,0,0,123.81,0.14,1.3,91.15,1013,352,2 +2008,2,5,20,30,6.9,1.37,0.062,0.64,0,0,0,0,6,0,0,0,0,134.57,0.14,1.3,94.28,1013,180,2 +2008,2,5,21,30,6.4,1.35,0.061,0.64,0,0,0,0,5.9,0,0,0,0,144.26,0.14,1.3,96.45,1013,7,1.9000000000000001 +2008,2,5,22,30,6.1000000000000005,1.34,0.063,0.64,0,0,0,0,5.6000000000000005,0,0,0,0,151.5,0.14,1.3,96.62,1013,15,1.8 +2008,2,5,23,30,5.9,1.33,0.068,0.64,0,0,0,0,5.300000000000001,0,0,0,0,153.96,0.14,1.3,96.13,1014,25,1.8 +2008,2,6,0,30,5.800000000000001,1.33,0.075,0.64,0,0,0,0,5.1000000000000005,0,0,0,0,150.39000000000001,0.14,1.3,95.04,1014,34,1.7000000000000002 +2008,2,6,1,30,5.800000000000001,1.33,0.078,0.64,0,0,0,0,4.9,0,0,0,0,142.52,0.14,1.3,93.81,1014,44,1.6 +2008,2,6,2,30,5.800000000000001,1.34,0.079,0.64,0,0,0,0,4.7,0,0,0,0,132.53,0.14,1.3,92.7,1014,52,1.5 +2008,2,6,3,30,5.7,1.35,0.078,0.64,0,0,0,0,4.6000000000000005,0,0,0,0,121.66,0.14,1.3,92.46000000000001,1014,59,1.5 +2008,2,6,4,30,5.6000000000000005,1.36,0.08,0.64,0,0,0,0,4.5,0,0,0,0,110.5,0.14,1.3,92.76,1015,66,1.5 +2008,2,6,5,30,5.800000000000001,1.36,0.082,0.64,0,0,0,0,4.5,0,0,0,0,99.45,0.14,1.3,91.22,1015,73,1.4000000000000001 +2008,2,6,6,30,7.5,1.37,0.083,0.64,13,124,17,1,4.6000000000000005,13,124,0,17,88.47,0.14,1.3,81.58,1016,80,1.5 +2008,2,6,7,30,10.3,1.37,0.084,0.64,53,542,158,0,5.7,53,542,0,158,78.86,0.14,1.3,73.12,1016,98,1.4000000000000001 +2008,2,6,8,30,12.5,1.3800000000000001,0.08600000000000001,0.64,74,717,316,0,5.300000000000001,74,717,0,316,70.23,0.14,1.3,61.53,1017,152,1 +2008,2,6,9,30,14,1.36,0.088,0.64,86,800,445,0,5.1000000000000005,86,800,0,445,63.36,0.14,1.3,55.08,1016,202,1.1 +2008,2,6,10,30,14.9,1.37,0.088,0.64,92,841,526,0,5.300000000000001,92,841,0,526,58.95,0.14,1.3,52.72,1016,225,1.4000000000000001 +2008,2,6,11,30,15.3,1.3800000000000001,0.091,0.64,94,849,549,0,5.5,94,849,0,549,57.61,0.14,1.3,52.160000000000004,1015,245,1.8 +2008,2,6,12,30,15.3,1.44,0.099,0.64,95,825,513,0,5.800000000000001,95,825,0,513,59.54,0.14,1.3,52.96,1015,257,2 +2008,2,6,13,30,14.9,1.43,0.10200000000000001,0.64,88,773,422,3,5.9,251,64,0,278,64.44,0.14,1.3,54.85,1014,264,2.2 +2008,2,6,14,30,13.600000000000001,1.41,0.109,0.64,77,663,286,0,6.1000000000000005,77,663,0,286,71.67,0.14,1.3,60.59,1014,266,1.9000000000000001 +2008,2,6,15,30,11.200000000000001,1.36,0.12,0.64,53,435,124,0,7.9,53,435,0,124,80.55,0.14,1.3,80.2,1014,268,1.6 +2008,2,6,16,30,9.4,1.3900000000000001,0.108,0.64,0,0,0,0,7.1000000000000005,0,0,0,0,90.08,0.14,1.3,85.63,1014,276,1.6 +2008,2,6,17,30,8.5,1.3900000000000001,0.10200000000000001,0.64,0,0,0,7,6.800000000000001,0,0,0,0,101.4,0.14,1.3,88.91,1015,289,1.6 +2008,2,6,18,30,8,1.3900000000000001,0.101,0.64,0,0,0,0,6.800000000000001,0,0,0,0,112.48,0.14,1.3,91.9,1015,304,1.5 +2008,2,6,19,30,7.800000000000001,1.36,0.105,0.64,0,0,0,0,6.800000000000001,0,0,0,0,123.60000000000001,0.14,1.3,93.14,1015,324,1.4000000000000001 +2008,2,6,20,30,7.7,1.34,0.10300000000000001,0.64,0,0,0,7,6.6000000000000005,0,0,0,0,134.34,0.14,1.3,92.91,1014,168,1.3 +2008,2,6,21,30,7.300000000000001,1.33,0.098,0.64,0,0,0,7,6.4,0,0,0,0,144.01,0.14,1.3,94.05,1014,9,1.3 +2008,2,6,22,30,6.9,1.32,0.096,0.64,0,0,0,6,6.1000000000000005,0,0,0,0,151.21,0.14,1.3,94.76,1013,20,1.4000000000000001 +2008,2,6,23,30,6.300000000000001,1.33,0.092,0.64,0,0,0,7,5.800000000000001,0,0,0,0,153.66,0.14,1.2000000000000002,96.55,1013,21,1.5 +2008,2,7,0,30,5.800000000000001,1.35,0.085,0.64,0,0,0,7,5.4,0,0,0,0,150.12,0.14,1.1,97.59,1013,15,1.6 +2008,2,7,1,30,5.300000000000001,1.35,0.083,0.64,0,0,0,7,5.2,0,0,0,0,142.29,0.14,1.1,99.15,1012,8,1.8 +2008,2,7,2,30,4.9,1.34,0.085,0.64,0,0,0,0,4.9,0,0,0,0,132.34,0.14,1,100,1012,5,2 +2008,2,7,3,30,4.6000000000000005,1.33,0.088,0.64,0,0,0,0,4.6000000000000005,0,0,0,0,121.47,0.14,1,100,1012,9,2.2 +2008,2,7,4,30,4.4,1.35,0.08600000000000001,0.64,0,0,0,0,4.4,0,0,0,0,110.32000000000001,0.14,0.9,100,1012,16,2.4000000000000004 +2008,2,7,5,30,4.6000000000000005,1.3800000000000001,0.079,0.64,0,0,0,0,4,0,0,0,0,99.26,0.14,0.9,95.59,1013,24,2.7 +2008,2,7,6,30,6.4,1.3900000000000001,0.068,0.64,14,170,19,0,3.3000000000000003,14,170,0,19,88.28,0.14,0.8,80.82000000000001,1013,32,3.6 +2008,2,7,7,30,9.200000000000001,1.42,0.059000000000000004,0.64,48,611,168,0,3.4000000000000004,48,611,0,168,78.64,0.14,0.8,67.18,1014,34,4.2 +2008,2,7,8,30,12.100000000000001,1.46,0.054,0.64,64,787,333,0,4,64,787,0,333,69.98,0.14,0.8,57.77,1015,32,4.4 +2008,2,7,9,30,14.600000000000001,1.51,0.054,0.64,72,861,462,0,4.4,72,861,0,462,63.09,0.14,0.9,50.550000000000004,1015,29,4.9 +2008,2,7,10,30,15.700000000000001,1.51,0.063,0.64,81,879,538,0,4.4,81,879,0,538,58.660000000000004,0.14,1.1,46.84,1015,24,5.2 +2008,2,7,11,30,15.8,1.5,0.08600000000000001,0.64,92,860,556,0,4.6000000000000005,92,860,0,556,57.300000000000004,0.14,1.2000000000000002,47.230000000000004,1015,21,5.5 +2008,2,7,12,30,15.3,1.45,0.11,0.64,99,814,515,0,5,99,814,0,515,59.230000000000004,0.14,1.3,50.18,1015,22,5.800000000000001 +2008,2,7,13,30,14.5,1.3800000000000001,0.11,0.64,92,768,426,0,4.5,92,768,0,426,64.15,0.14,1.2000000000000002,51.1,1015,26,5.5 +2008,2,7,14,30,13,1.37,0.083,0.64,70,712,297,0,3.6,70,712,0,297,71.41,0.14,1,52.79,1016,27,4.4 +2008,2,7,15,30,10.5,1.35,0.056,0.64,43,568,139,0,3.6,43,568,0,139,80.31,0.14,0.8,62.45,1016,24,3.2 +2008,2,7,16,30,8.5,1.27,0.043000000000000003,0.64,0,0,0,0,3.2,0,0,0,0,89.89,0.14,0.6000000000000001,69.44,1016,23,3 +2008,2,7,17,30,7.6000000000000005,1.22,0.038,0.64,0,0,0,0,2.7,0,0,0,0,101.19,0.14,0.6000000000000001,71.04,1017,25,3.1 +2008,2,7,18,30,7,1.22,0.036000000000000004,0.64,0,0,0,0,2.4000000000000004,0,0,0,0,112.28,0.14,0.6000000000000001,72.69,1017,27,3.1 +2008,2,7,19,30,6.6000000000000005,1.24,0.033,0.64,0,0,0,0,2.2,0,0,0,0,123.39,0.14,0.5,73.38,1018,31,3.2 +2008,2,7,20,30,6.2,1.25,0.03,0.64,0,0,0,0,1.7000000000000002,0,0,0,0,134.11,0.14,0.5,72.69,1018,35,3.2 +2008,2,7,21,30,5.6000000000000005,1.26,0.031,0.64,0,0,0,0,0.8,0,0,0,0,143.75,0.14,0.5,71.3,1018,36,3.1 +2008,2,7,22,30,5.1000000000000005,1.29,0.036000000000000004,0.64,0,0,0,0,0,0,0,0,0,150.91,0.14,0.5,69.60000000000001,1018,32,3.1 +2008,2,7,23,30,4.9,1.32,0.04,0.64,0,0,0,0,-0.4,0,0,0,0,153.35,0.14,0.5,68.73,1018,28,3.4000000000000004 +2008,2,8,0,30,4.7,1.33,0.042,0.64,0,0,0,0,-0.5,0,0,0,0,149.85,0.14,0.5,69.24,1018,25,3.7 +2008,2,8,1,30,4.4,1.33,0.041,0.64,0,0,0,0,-0.7000000000000001,0,0,0,0,142.06,0.14,0.5,69.71000000000001,1017,24,3.8000000000000003 +2008,2,8,2,30,4,1.32,0.038,0.64,0,0,0,0,-1,0,0,0,0,132.13,0.14,0.5,70.14,1017,24,3.8000000000000003 +2008,2,8,3,30,3.7,1.29,0.036000000000000004,0.64,0,0,0,0,-1.2000000000000002,0,0,0,0,121.28,0.14,0.5,70.25,1017,27,3.7 +2008,2,8,4,30,3.4000000000000004,1.29,0.037,0.64,0,0,0,0,-1.4000000000000001,0,0,0,0,110.13,0.14,0.4,70.97,1017,30,3.5 +2008,2,8,5,30,3.6,1.3,0.038,0.64,0,0,0,0,-1.6,0,0,0,0,99.07000000000001,0.14,0.4,69.04,1017,33,3.3000000000000003 +2008,2,8,6,30,5.4,1.1400000000000001,0.046,0.64,15,235,23,0,-1.4000000000000001,15,235,0,23,88.09,0.14,0.4,61.44,1018,36,3.8000000000000003 +2008,2,8,7,30,8,1.19,0.047,0.64,47,665,181,0,-0.9,47,665,0,181,78.41,0.14,0.4,53.28,1018,39,4.6000000000000005 +2008,2,8,8,30,10,1.25,0.046,0.64,63,819,346,0,-1.3,63,819,0,346,69.73,0.14,0.5,45.32,1018,43,5.1000000000000005 +2008,2,8,9,30,11.4,1.1300000000000001,0.053,0.64,74,876,475,0,-1.5,74,876,0,475,62.81,0.14,0.6000000000000001,40.83,1018,45,5.4 +2008,2,8,10,30,12.3,1.16,0.054,0.64,80,905,555,0,-1.3,80,905,0,555,58.35,0.14,0.7000000000000001,38.85,1018,45,5.4 +2008,2,8,11,30,12.700000000000001,1.21,0.052000000000000005,0.64,80,918,580,0,-1.1,80,918,0,580,56.980000000000004,0.14,0.7000000000000001,38.42,1017,43,5.300000000000001 +2008,2,8,12,30,12.8,1.1300000000000001,0.058,0.64,81,890,540,0,-0.9,81,890,0,540,58.93,0.14,0.8,38.660000000000004,1016,41,5.300000000000001 +2008,2,8,13,30,12.200000000000001,1.17,0.058,0.64,74,847,447,0,-0.7000000000000001,74,847,0,447,63.86,0.14,0.8,40.800000000000004,1016,42,5.2 +2008,2,8,14,30,10.9,1.22,0.056,0.64,63,760,309,0,-0.4,63,760,0,309,71.15,0.14,0.8,45.660000000000004,1016,43,4.1000000000000005 +2008,2,8,15,30,8.4,1.09,0.068,0.64,47,541,140,0,0.9,47,541,0,140,80.06,0.14,0.8,59.43,1016,40,2.9000000000000004 +2008,2,8,16,30,6.300000000000001,1.12,0.07,0.64,0,0,0,0,1.3,0,0,0,0,89.7,0.14,0.8,70.51,1017,39,2.5 +2008,2,8,17,30,5.5,1.2,0.07100000000000001,0.64,0,0,0,0,1.1,0,0,0,0,100.98,0.14,0.8,73.23,1017,40,2.5 +2008,2,8,18,30,4.9,1.25,0.07,0.64,0,0,0,0,0.9,0,0,0,0,112.07000000000001,0.14,0.8,75.54,1017,42,2.4000000000000004 +2008,2,8,19,30,4.5,1.28,0.07100000000000001,0.64,0,0,0,0,0.8,0,0,0,0,123.17,0.14,0.8,77.17,1017,45,2.3000000000000003 +2008,2,8,20,30,4.4,1.29,0.07,0.64,0,0,0,0,0.9,0,0,0,0,133.88,0.14,0.9,77.99,1017,51,2.3000000000000003 +2008,2,8,21,30,4.3,1.29,0.07,0.64,0,0,0,0,1,0,0,0,0,143.49,0.14,0.9,79.32000000000001,1017,54,2.2 +2008,2,8,22,30,4.2,1.3,0.07100000000000001,0.64,0,0,0,0,1,0,0,0,0,150.61,0.14,0.9,79.95,1017,55,2.1 +2008,2,8,23,30,4.1000000000000005,1.31,0.07100000000000001,0.64,0,0,0,0,1,0,0,0,0,153.03,0.14,0.9,80.08,1016,54,2.1 +2008,2,9,0,30,3.9000000000000004,1.31,0.07,0.64,0,0,0,0,0.9,0,0,0,0,149.56,0.14,0.8,80.64,1016,52,2.1 +2008,2,9,1,30,3.7,1.31,0.07100000000000001,0.64,0,0,0,0,0.8,0,0,0,0,141.82,0.14,0.8,81.46000000000001,1016,52,2.1 +2008,2,9,2,30,3.5,1.34,0.07100000000000001,0.64,0,0,0,0,0.8,0,0,0,0,131.92000000000002,0.14,0.8,82.22,1016,54,2.1 +2008,2,9,3,30,3.3000000000000003,1.36,0.07100000000000001,0.64,0,0,0,0,0.7000000000000001,0,0,0,0,121.09,0.14,0.8,83.06,1016,58,2.1 +2008,2,9,4,30,3.2,1.4000000000000001,0.073,0.64,0,0,0,0,0.7000000000000001,0,0,0,0,109.94,0.14,0.8,83.5,1017,62,2 +2008,2,9,5,30,3.6,1.44,0.077,0.64,0,0,0,0,0.6000000000000001,0,0,0,0,98.87,0.14,0.8,80.95,1017,64,1.8 +2008,2,9,6,30,5.7,1.48,0.077,0.64,16,186,23,0,0.8,16,186,0,23,87.89,0.14,0.8,70.99,1017,60,1.6 +2008,2,9,7,30,8.8,1.48,0.076,0.64,52,591,173,0,2.4000000000000004,52,591,0,173,78.18,0.14,0.8,64.27,1017,61,2.1 +2008,2,9,8,30,11.100000000000001,1.49,0.074,0.64,71,762,338,0,1.4000000000000001,71,762,0,338,69.47,0.14,0.8,51.28,1018,68,2.7 +2008,2,9,9,30,12.700000000000001,1.53,0.07200000000000001,0.64,81,845,471,0,1,81,845,0,471,62.52,0.14,0.8,44.85,1018,71,2.5 +2008,2,9,10,30,13.8,1.51,0.07200000000000001,0.64,86,884,554,0,0.5,86,884,0,554,58.04,0.14,0.8,40.17,1017,64,2.1 +2008,2,9,11,30,14.4,1.49,0.07200000000000001,0.64,88,889,576,0,0,88,889,0,576,56.67,0.14,0.9,37.37,1017,52,1.9000000000000001 +2008,2,9,12,30,14.5,1.41,0.076,0.64,87,869,539,0,0,87,869,0,539,58.620000000000005,0.14,0.9,37.14,1016,43,1.9000000000000001 +2008,2,9,13,30,14.100000000000001,1.37,0.078,0.64,82,821,447,0,0.30000000000000004,82,821,0,447,63.57,0.14,0.9,38.85,1016,42,2.1 +2008,2,9,14,30,12.700000000000001,1.36,0.08,0.64,71,725,308,0,0.9,71,725,0,308,70.88,0.14,0.9,44.410000000000004,1016,41,1.9000000000000001 +2008,2,9,15,30,10.200000000000001,1.03,0.109,0.64,55,469,138,0,3.3000000000000003,55,469,0,138,79.82000000000001,0.14,0.9,62.28,1016,41,1.7000000000000002 +2008,2,9,16,30,8.1,1.03,0.111,0.64,0,0,0,0,2.7,0,0,0,0,89.51,0.14,0.9,68.78,1016,44,2 +2008,2,9,17,30,6.9,1.1300000000000001,0.115,0.64,0,0,0,0,2.5,0,0,0,0,100.76,0.14,0.9,73.60000000000001,1017,46,2.2 +2008,2,9,18,30,5.9,1.25,0.117,0.64,0,0,0,0,2.4000000000000004,0,0,0,0,111.86,0.14,0.9,78.03,1017,47,2.1 +2008,2,9,19,30,5.1000000000000005,1.33,0.117,0.64,0,0,0,0,2.2,0,0,0,0,122.96000000000001,0.14,0.9,81.57000000000001,1017,43,1.9000000000000001 +2008,2,9,20,30,4.6000000000000005,1.3800000000000001,0.116,0.64,0,0,0,0,2,0,0,0,0,133.65,0.14,0.9,83.42,1017,39,1.8 +2008,2,9,21,30,4.1000000000000005,1.4000000000000001,0.116,0.64,0,0,0,0,2,0,0,0,0,143.23,0.14,0.9,85.95,1017,36,1.8 +2008,2,9,22,30,3.8000000000000003,1.42,0.11800000000000001,0.64,0,0,0,0,2,0,0,0,0,150.31,0.14,0.9,87.8,1017,35,1.8 +2008,2,9,23,30,3.6,1.44,0.123,0.64,0,0,0,0,2.1,0,0,0,0,152.71,0.14,0.9,89.69,1017,35,1.9000000000000001 +2008,2,10,0,30,3.5,1.45,0.128,0.64,0,0,0,0,2.2,0,0,0,0,149.28,0.14,0.9,91.08,1017,36,2 +2008,2,10,1,30,3.4000000000000004,1.46,0.134,0.64,0,0,0,0,2.3000000000000003,0,0,0,0,141.58,0.14,0.9,92.21000000000001,1016,37,2 +2008,2,10,2,30,3.3000000000000003,1.47,0.14300000000000002,0.64,0,0,0,0,2.3000000000000003,0,0,0,0,131.71,0.14,0.9,93.06,1016,39,2.1 +2008,2,10,3,30,3.1,1.48,0.148,0.64,0,0,0,0,2.2,0,0,0,0,120.89,0.14,0.9,94.01,1016,43,2.2 +2008,2,10,4,30,2.9000000000000004,1.5,0.147,0.64,0,0,0,0,2.1,0,0,0,0,109.74000000000001,0.14,0.9,94.19,1016,47,2.1 +2008,2,10,5,30,3.1,1.51,0.146,0.64,0,0,0,0,1.8,0,0,0,0,98.66,0.14,0.9,91.37,1016,51,2.1 +2008,2,10,6,30,5,1.6300000000000001,0.137,0.64,18,136,23,0,1.8,18,136,0,23,87.68,0.14,0.9,79.79,1017,52,2.5 +2008,2,10,7,30,7.800000000000001,1.6400000000000001,0.132,0.64,63,517,171,0,2.4000000000000004,63,517,0,171,77.94,0.14,0.9,68.57000000000001,1017,59,3.1 +2008,2,10,8,30,10.200000000000001,1.6400000000000001,0.125,0.64,86,699,334,0,1.9000000000000001,86,699,0,334,69.21000000000001,0.14,0.9,56.18,1017,72,2.8000000000000003 +2008,2,10,9,30,11.9,1.6600000000000001,0.125,0.64,100,785,466,0,1,100,785,0,466,62.230000000000004,0.14,0.9,47.22,1017,80,1.7000000000000002 +2008,2,10,10,30,13,1.6300000000000001,0.123,0.64,106,829,549,0,0,106,829,0,549,57.730000000000004,0.14,0.9,40.78,1016,186,0.7000000000000001 +2008,2,10,11,30,13.4,1.6,0.122,0.64,108,840,574,8,-0.4,264,324,0,444,56.35,0.14,0.9,38.57,1016,287,1 +2008,2,10,12,30,13.3,1.57,0.131,0.64,109,815,537,0,-0.30000000000000004,109,815,0,537,58.300000000000004,0.14,0.9,39.2,1015,283,1.6 +2008,2,10,13,30,12.8,1.53,0.14,0.64,103,756,443,0,-0.1,103,756,0,443,63.28,0.14,0.9,41.12,1015,286,1.8 +2008,2,10,14,30,11.700000000000001,1.51,0.146,0.64,89,649,305,0,0.8,89,649,0,305,70.61,0.14,0.9,47.26,1015,291,1.5 +2008,2,10,15,30,9.700000000000001,1.48,0.145,0.64,60,444,140,3,4.5,21,0,0,21,79.58,0.14,1,69.94,1015,312,1.1 +2008,2,10,16,30,7.800000000000001,1.5,0.14300000000000002,0.64,0,0,0,7,3.3000000000000003,0,0,7,0,89.31,0.14,0.9,73.11,1015,168,1.3 +2008,2,10,17,30,6.7,1.49,0.14,0.64,0,0,0,3,2.2,0,0,0,0,100.55,0.14,0.9,73.10000000000001,1016,21,1.9000000000000001 +2008,2,10,18,30,5.9,1.47,0.14,0.64,0,0,0,0,1.4000000000000001,0,0,0,0,111.65,0.14,0.9,73.05,1016,41,2.5 +2008,2,10,19,30,4.9,1.43,0.139,0.64,0,0,0,0,1.1,0,0,0,0,122.74000000000001,0.14,0.8,76.35000000000001,1016,53,2.5 +2008,2,10,20,30,4.1000000000000005,1.3900000000000001,0.137,0.64,0,0,0,0,0.9,0,0,0,0,133.42000000000002,0.14,0.8,79.51,1017,61,2.2 +2008,2,10,21,30,3.7,1.35,0.14400000000000002,0.64,0,0,0,0,0.6000000000000001,0,0,0,0,142.97,0.14,0.8,80.29,1017,69,1.9000000000000001 +2008,2,10,22,30,3.7,1.34,0.15,0.64,0,0,0,0,0.4,0,0,0,0,150.01,0.14,0.8,79.18,1017,72,1.6 +2008,2,10,23,30,3.8000000000000003,1.34,0.146,0.64,0,0,0,4,0.2,0,0,0,0,152.39000000000001,0.14,0.8,77.42,1017,67,1.4000000000000001 +2008,2,11,0,30,3.8000000000000003,1.35,0.148,0.64,0,0,0,4,-0.1,0,0,0,0,148.98,0.14,0.8,75.54,1016,56,1.3 +2008,2,11,1,30,3.6,1.37,0.145,0.64,0,0,0,1,-0.2,0,0,0,0,141.33,0.14,0.9,76.05,1016,43,1.3 +2008,2,11,2,30,3.2,1.3900000000000001,0.138,0.64,0,0,0,1,-0.1,0,0,0,0,131.49,0.14,0.9,78.91,1016,36,1.5 +2008,2,11,3,30,2.8000000000000003,1.3900000000000001,0.133,0.64,0,0,0,4,0.2,0,0,0,0,120.68,0.14,0.9,82.89,1016,35,1.7000000000000002 +2008,2,11,4,30,2.6,1.3900000000000001,0.126,0.64,0,0,0,4,0.4,0,0,0,0,109.54,0.14,0.8,85.52,1016,37,1.9000000000000001 +2008,2,11,5,30,2.9000000000000004,1.3900000000000001,0.11800000000000001,0.64,0,0,0,4,0.4,0,0,0,0,98.45,0.14,0.8,83.84,1016,41,2 +2008,2,11,6,30,4.7,1.33,0.122,0.64,19,143,26,0,0.7000000000000001,19,143,0,26,87.47,0.14,0.8,75.17,1016,47,2.6 +2008,2,11,7,30,7.300000000000001,1.32,0.116,0.64,63,537,177,0,1.2000000000000002,63,537,0,177,77.7,0.14,0.8,65.12,1017,58,3.3000000000000003 +2008,2,11,8,30,9.4,1.34,0.111,0.64,84,717,342,0,0.7000000000000001,84,717,0,342,68.94,0.14,0.8,54.480000000000004,1017,80,3 +2008,2,11,9,30,10.700000000000001,1.27,0.129,0.64,104,780,471,0,-0.1,104,780,0,471,61.93,0.14,0.8,47.35,1017,113,2.1 +2008,2,11,10,30,11.4,1.26,0.133,0.64,113,818,554,2,-0.5,327,96,0,378,57.410000000000004,0.14,0.8,43.63,1016,152,1.6 +2008,2,11,11,30,11.600000000000001,1.25,0.14,0.64,118,818,575,2,-0.9,341,126,0,411,56.02,0.14,0.9,42.06,1016,182,1.6 +2008,2,11,12,30,11.5,1.25,0.18,0.64,129,762,533,5,-0.9,313,227,0,434,57.99,0.14,0.9,42.39,1016,198,1.7000000000000002 +2008,2,11,13,30,11.100000000000001,1.25,0.187,0.64,122,702,441,0,-0.8,122,702,0,441,62.99,0.14,0.9,43.57,1016,211,1.6 +2008,2,11,14,30,10.200000000000001,1.27,0.185,0.64,102,600,304,0,-0.7000000000000001,102,600,0,304,70.34,0.14,0.9,46.69,1016,231,1.1 +2008,2,11,15,30,8.9,1.35,0.221,0.64,71,364,139,0,2.5,71,364,0,139,79.33,0.14,0.9,64.17,1016,273,0.8 +2008,2,11,16,30,7.5,1.3800000000000001,0.213,0.64,0,0,0,0,0.9,0,0,0,0,89.12,0.14,0.9,62.88,1017,327,0.9 +2008,2,11,17,30,6.300000000000001,1.3900000000000001,0.20600000000000002,0.64,0,0,0,0,0.9,0,0,0,0,100.33,0.14,0.9,68.23,1017,184,1.2000000000000002 +2008,2,11,18,30,5.300000000000001,1.3900000000000001,0.20600000000000002,0.64,0,0,0,0,0.8,0,0,0,0,111.43,0.14,0.9,72.89,1017,28,1.5 +2008,2,11,19,30,4.5,1.4000000000000001,0.203,0.64,0,0,0,0,0.5,0,0,0,0,122.53,0.14,0.9,75.45,1017,46,1.8 +2008,2,11,20,30,3.7,1.41,0.198,0.64,0,0,0,0,0.2,0,0,0,0,133.19,0.14,0.9,78.12,1017,56,1.9000000000000001 +2008,2,11,21,30,3.1,1.4000000000000001,0.191,0.64,0,0,0,0,-0.1,0,0,0,0,142.70000000000002,0.14,0.9,79.24,1017,63,1.8 +2008,2,11,22,30,2.6,1.3900000000000001,0.184,0.64,0,0,0,0,-0.6000000000000001,0,0,0,0,149.70000000000002,0.14,0.8,79.66,1017,69,1.7000000000000002 +2008,2,11,23,30,2.4000000000000004,1.37,0.176,0.64,0,0,0,0,-0.9,0,0,0,0,152.06,0.14,0.8,78.59,1017,74,1.6 +2008,2,12,0,30,2.2,1.35,0.171,0.64,0,0,0,0,-1.3,0,0,0,0,148.68,0.14,0.8,77.55,1017,75,1.6 +2008,2,12,1,30,2.2,1.32,0.167,0.64,0,0,0,0,-1.6,0,0,0,0,141.07,0.14,0.8,76.12,1017,75,1.5 +2008,2,12,2,30,2.2,1.29,0.164,0.64,0,0,0,0,-1.7000000000000002,0,0,0,0,131.26,0.14,0.8,75.29,1017,75,1.5 +2008,2,12,3,30,2,1.26,0.165,0.64,0,0,0,0,-1.7000000000000002,0,0,0,0,120.47,0.14,0.9,76.52,1017,78,1.5 +2008,2,12,4,30,1.7000000000000002,1.24,0.167,0.64,0,0,0,0,-1.5,0,0,0,0,109.33,0.14,0.9,79.17,1018,83,1.5 +2008,2,12,5,30,1.9000000000000001,1.22,0.17,0.64,0,0,0,0,-1.3,0,0,0,0,98.24000000000001,0.14,0.9,79.14,1018,89,1.4000000000000001 +2008,2,12,6,30,3.9000000000000004,1.19,0.187,0.64,21,88,25,0,-0.8,21,88,0,25,87.26,0.14,1,71.52,1018,96,1.7000000000000002 +2008,2,12,7,30,6.7,1.19,0.191,0.64,77,433,171,1,0.6000000000000001,77,433,0,171,77.45,0.14,1,64.92,1018,114,2.1 +2008,2,12,8,30,8.8,1.2,0.193,0.64,108,612,331,0,0,108,612,0,331,68.66,0.14,1,53.980000000000004,1018,145,2.2 +2008,2,12,9,30,10.3,1.2,0.17300000000000001,0.64,119,726,464,0,-0.4,119,726,0,464,61.63,0.14,1,47.46,1018,176,2.1 +2008,2,12,10,30,11,1.21,0.18,0.64,131,760,544,0,-0.5,131,760,0,544,57.09,0.14,1.1,45.050000000000004,1018,196,2 +2008,2,12,11,30,11.3,1.23,0.192,0.64,137,762,567,0,-0.5,137,762,0,567,55.69,0.14,1.1,44.09,1017,211,2.1 +2008,2,12,12,30,11.200000000000001,1.01,0.243,0.64,154,689,523,7,-0.5,266,121,0,331,57.67,0.14,1.1,44.51,1017,222,2.1 +2008,2,12,13,30,10.8,1,0.276,0.64,152,603,428,2,-0.4,286,129,0,345,62.690000000000005,0.14,1.1,45.800000000000004,1017,229,2 +2008,2,12,14,30,9.8,0.99,0.296,0.64,130,473,292,1,-0.30000000000000004,130,473,0,292,70.07000000000001,0.14,1.1,49.49,1017,233,1.6 +2008,2,12,15,30,8.200000000000001,1.01,0.319,0.64,84,254,133,2,2.5,43,0,0,43,79.09,0.14,1.1,67.09,1017,234,1.1 +2008,2,12,16,30,7.1000000000000005,1.01,0.336,0.64,7,5,7,8,1.9000000000000001,2,0,7,2,88.91,0.14,1.1,69.5,1017,234,1.1 +2008,2,12,17,30,7.1000000000000005,1,0.34500000000000003,0.64,0,0,0,1,1.2000000000000002,0,0,0,0,100.11,0.14,1.1,65.92,1018,229,0.9 +2008,2,12,18,30,7.2,0.99,0.358,0.64,0,0,0,4,0.7000000000000001,0,0,0,0,111.22,0.14,1.2000000000000002,63.410000000000004,1018,208,0.7000000000000001 +2008,2,12,19,30,7.1000000000000005,0.98,0.37,0.64,0,0,0,4,0.6000000000000001,0,0,0,0,122.31,0.14,1.2000000000000002,63.32,1018,164,0.6000000000000001 +2008,2,12,20,30,6.9,0.98,0.373,0.64,0,0,0,4,0.7000000000000001,0,0,0,0,132.95,0.14,1.2000000000000002,64.56,1019,128,0.8 +2008,2,12,21,30,6.4,0.98,0.368,0.64,0,0,0,4,0.7000000000000001,0,0,0,0,142.43,0.14,1.2000000000000002,66.98,1019,115,1 +2008,2,12,22,30,5.9,0.99,0.358,0.64,0,0,0,0,0.6000000000000001,0,0,0,0,149.39000000000001,0.14,1.2000000000000002,68.72,1019,110,1.1 +2008,2,12,23,30,5.7,1,0.35000000000000003,0.64,0,0,0,0,0.5,0,0,0,0,151.73,0.14,1.1,69.3,1019,109,1.1 +2008,2,13,0,30,5.7,1.01,0.342,0.64,0,0,0,0,0.5,0,0,0,0,148.38,0.14,1.1,68.99,1019,108,1.1 +2008,2,13,1,30,5.7,1.02,0.335,0.64,0,0,0,0,0.4,0,0,0,0,140.81,0.14,1.1,68.5,1019,103,1 +2008,2,13,2,30,5.5,1.02,0.327,0.64,0,0,0,0,0.2,0,0,0,0,131.03,0.14,1.1,68.71000000000001,1019,96,1 +2008,2,13,3,30,5,1.04,0.318,0.64,0,0,0,0,0,0,0,0,0,120.25,0.14,1.1,70.28,1020,90,1 +2008,2,13,4,30,4.7,1.05,0.309,0.64,0,0,0,0,-0.1,0,0,0,0,109.11,0.14,1.1,70.85000000000001,1020,87,1.1 +2008,2,13,5,30,4.7,1.05,0.302,0.64,0,0,0,1,-0.30000000000000004,0,0,0,0,98.01,0.14,1,70.03,1020,88,1.1 +2008,2,13,6,30,5.9,1.1,0.264,0.64,22,55,25,0,0,22,55,0,25,87.04,0.14,1,65.87,1021,90,1.2000000000000002 +2008,2,13,7,30,8.1,1.11,0.26,0.64,89,364,170,0,1.4000000000000001,89,364,0,170,77.2,0.14,1,62.440000000000005,1021,104,0.9 +2008,2,13,8,30,10.200000000000001,1.1300000000000001,0.253,0.64,126,553,330,0,0.30000000000000004,126,553,0,330,68.38,0.14,1,50.25,1021,184,0.7000000000000001 +2008,2,13,9,30,11.600000000000001,1.1400000000000001,0.245,0.64,145,658,460,0,0.2,145,658,1,460,61.33,0.14,1,45.5,1021,259,1 +2008,2,13,10,30,12.4,1.1500000000000001,0.241,0.64,154,710,543,0,0.30000000000000004,154,710,0,543,56.77,0.14,1,43.31,1021,270,1.5 +2008,2,13,11,30,12.8,1.1500000000000001,0.23700000000000002,0.64,156,726,568,0,0.30000000000000004,156,726,0,568,55.36,0.14,1,42.39,1020,275,1.9000000000000001 +2008,2,13,12,30,12.9,1.23,0.231,0.64,149,720,537,0,0.4,149,720,0,537,57.35,0.14,0.9,42.34,1020,278,2.2 +2008,2,13,13,30,12.700000000000001,1.24,0.228,0.64,136,670,446,0,0.5,136,670,0,446,62.39,0.14,0.9,43.19,1020,280,2.4000000000000004 +2008,2,13,14,30,11.600000000000001,1.25,0.221,0.64,112,571,310,0,0.8,112,571,0,310,69.8,0.14,0.9,47.45,1020,281,2.1 +2008,2,13,15,30,9.3,1.1500000000000001,0.216,0.64,75,368,146,0,3.6,75,368,0,146,78.84,0.14,0.9,67.38,1020,281,1.6 +2008,2,13,16,30,7.300000000000001,1.1400000000000001,0.20600000000000002,0.64,11,27,12,0,3.1,11,27,0,12,88.71000000000001,0.14,0.9,74.74,1020,287,1.6 +2008,2,13,17,30,6.6000000000000005,1.1400000000000001,0.197,0.64,0,0,0,0,2.7,0,0,0,0,99.9,0.14,0.9,75.93,1021,296,1.6 +2008,2,13,18,30,6.2,1.1300000000000001,0.19,0.64,0,0,0,0,2.4000000000000004,0,0,0,0,111.01,0.14,0.9,76.57000000000001,1021,305,1.5 +2008,2,13,19,30,6.1000000000000005,1.1300000000000001,0.184,0.64,0,0,0,0,2.1,0,0,0,0,122.09,0.14,0.8,75.64,1021,315,1.4000000000000001 +2008,2,13,20,30,6,1.1400000000000001,0.179,0.64,0,0,0,0,1.8,0,0,0,0,132.72,0.14,0.8,74.71000000000001,1021,326,1.2000000000000002 +2008,2,13,21,30,5.9,1.1500000000000001,0.17300000000000001,0.64,0,0,0,0,1.6,0,0,0,0,142.16,0.14,0.8,73.92,1021,341,1.1 +2008,2,13,22,30,5.7,1.16,0.167,0.64,0,0,0,0,1.3,0,0,0,0,149.07,0.14,0.8,73.49,1021,177,1 +2008,2,13,23,30,5.5,1.17,0.162,0.64,0,0,0,0,1,0,0,0,0,151.39000000000001,0.14,0.8,72.98,1021,11,1 +2008,2,14,0,30,5.4,1.17,0.156,0.64,0,0,0,0,0.7000000000000001,0,0,0,0,148.07,0.14,0.8,71.95,1021,22,1 +2008,2,14,1,30,5.2,1.18,0.149,0.64,0,0,0,0,0.4,0,0,0,0,140.54,0.14,0.7000000000000001,71.4,1021,30,1.2000000000000002 +2008,2,14,2,30,4.9,1.19,0.14400000000000002,0.64,0,0,0,0,0.1,0,0,0,0,130.79,0.14,0.7000000000000001,71.36,1021,39,1.3 +2008,2,14,3,30,4.5,1.2,0.139,0.64,0,0,0,0,-0.1,0,0,0,0,120.02,0.14,0.7000000000000001,71.95,1020,47,1.3 +2008,2,14,4,30,4.4,1.2,0.137,0.64,0,0,0,0,-0.4,0,0,0,0,108.89,0.14,0.7000000000000001,71.13,1020,53,1.3 +2008,2,14,5,30,4.7,1.21,0.135,0.64,0,0,0,0,-0.7000000000000001,0,0,0,0,97.79,0.14,0.7000000000000001,68.17,1021,59,1.2000000000000002 +2008,2,14,6,30,6.2,1.1300000000000001,0.139,0.64,24,148,32,0,-0.6000000000000001,24,148,0,32,86.81,0.14,0.7000000000000001,61.65,1021,64,1.1 +2008,2,14,7,30,8.5,1.1400000000000001,0.137,0.64,71,524,189,0,1.1,71,524,0,189,76.94,0.14,0.7000000000000001,59.79,1021,48,0.8 +2008,2,14,8,30,10.8,1.1500000000000001,0.137,0.64,94,697,354,0,-0.4,94,697,0,354,68.1,0.14,0.7000000000000001,45.83,1021,164,1 +2008,2,14,9,30,12.3,1.29,0.129,0.64,105,796,490,0,-0.5,105,796,0,490,61.02,0.14,0.7000000000000001,41.13,1021,290,1.6 +2008,2,14,10,30,13,1.3,0.129,0.64,112,837,574,0,-0.1,112,837,0,574,56.44,0.14,0.7000000000000001,40.62,1021,278,1.9000000000000001 +2008,2,14,11,30,13.3,1.31,0.128,0.64,113,849,600,0,0.4,113,849,0,600,55.02,0.14,0.7000000000000001,41.17,1020,273,2.1 +2008,2,14,12,30,13.3,1.28,0.131,0.64,112,830,563,0,0.8,112,830,0,563,57.02,0.14,0.7000000000000001,42.37,1019,271,2.2 +2008,2,14,13,30,12.9,1.28,0.132,0.64,104,782,470,0,1.1,104,782,0,470,62.09,0.14,0.7000000000000001,44.59,1019,270,2.2 +2008,2,14,14,30,11.700000000000001,1.28,0.133,0.64,90,685,329,0,1.5,90,685,0,329,69.53,0.14,0.7000000000000001,49.72,1019,269,1.8 +2008,2,14,15,30,9.4,0.48,0.18,0.64,77,370,150,0,4.5,77,370,0,150,78.60000000000001,0.14,0.7000000000000001,71.36,1019,266,1.4000000000000001 +2008,2,14,16,30,7.5,0.47000000000000003,0.185,0.64,12,12,12,0,3.6,12,12,0,12,88.51,0.14,0.7000000000000001,76.48,1019,266,1.4000000000000001 +2008,2,14,17,30,7,0.46,0.189,0.64,0,0,0,0,3.2,0,0,0,0,99.68,0.14,0.7000000000000001,76.67,1019,269,1.4000000000000001 +2008,2,14,18,30,6.9,0.46,0.19,0.64,0,0,0,0,3.1,0,0,0,0,110.8,0.14,0.7000000000000001,76.66,1019,272,1.3 +2008,2,14,19,30,7,0.47000000000000003,0.192,0.64,0,0,0,0,3.1,0,0,0,0,121.87,0.14,0.7000000000000001,76.08,1019,274,1.1 +2008,2,14,20,30,7.1000000000000005,0.48,0.198,0.64,0,0,0,0,3,0,0,0,0,132.48,0.14,0.7000000000000001,75.19,1019,277,0.8 +2008,2,14,21,30,7.1000000000000005,0.5,0.203,0.64,0,0,0,0,3,0,0,0,0,141.89000000000001,0.14,0.8,75.07000000000001,1019,296,0.4 +2008,2,14,22,30,6.800000000000001,0.53,0.20500000000000002,0.64,0,0,0,0,3,0,0,0,0,148.76,0.14,0.8,76.68,1019,182,0.4 +2008,2,14,23,30,6.1000000000000005,0.56,0.203,0.64,0,0,0,0,2.9000000000000004,0,0,0,0,151.06,0.14,0.8,80.09,1018,57,0.7000000000000001 +2008,2,15,0,30,5.4,0.62,0.197,0.64,0,0,0,8,2.8000000000000003,0,0,0,0,147.75,0.14,0.8,83.22,1017,65,1 +2008,2,15,1,30,5,0.67,0.191,0.64,0,0,0,5,2.6,0,0,0,0,140.26,0.14,0.8,84.52,1017,69,1.1 +2008,2,15,2,30,4.6000000000000005,0.72,0.185,0.64,0,0,0,0,2.4000000000000004,0,0,0,0,130.54,0.14,0.8,85.68,1016,71,1.1 +2008,2,15,3,30,4.3,0.75,0.178,0.64,0,0,0,0,2.2,0,0,0,0,119.79,0.14,0.8,86.46000000000001,1016,74,1.2000000000000002 +2008,2,15,4,30,4,0.77,0.168,0.64,0,0,0,0,2.1,0,0,0,0,108.67,0.14,0.8,87.24,1016,77,1.3 +2008,2,15,5,30,4.2,0.78,0.159,0.64,0,0,0,0,1.9000000000000001,0,0,0,0,97.56,0.14,0.8,85.02,1016,80,1.2000000000000002 +2008,2,15,6,30,5.9,0.61,0.179,0.64,26,80,31,0,1.9000000000000001,26,80,0,31,86.58,0.14,0.8,75.72,1016,83,1.2000000000000002 +2008,2,15,7,30,8.5,0.62,0.176,0.64,83,439,184,0,2.9000000000000004,83,439,0,184,76.68,0.14,0.8,67.65,1016,58,1 +2008,2,15,8,30,10.5,0.64,0.17200000000000001,0.64,111,630,349,0,2.9000000000000004,111,630,0,349,67.81,0.14,0.8,59.19,1016,180,0.9 +2008,2,15,9,30,11.8,0.53,0.19,0.64,136,698,478,0,2.7,136,698,0,478,60.7,0.14,0.8,53.730000000000004,1015,322,1.4000000000000001 +2008,2,15,10,30,12.600000000000001,0.55,0.188,0.64,144,748,562,0,2.6,144,748,0,562,56.1,0.14,0.8,50.68,1015,316,1.8 +2008,2,15,11,30,13.100000000000001,0.58,0.186,0.64,146,764,588,0,2.6,146,764,0,588,54.68,0.14,0.8,48.89,1014,315,2.3000000000000003 +2008,2,15,12,30,13.3,0.8,0.158,0.64,127,782,556,0,2.5,127,782,0,556,56.69,0.14,0.9,47.95,1013,317,2.6 +2008,2,15,13,30,13.100000000000001,0.85,0.155,0.64,115,737,463,0,2.3000000000000003,115,737,0,463,61.79,0.14,0.9,47.97,1012,320,2.8000000000000003 +2008,2,15,14,30,12.100000000000001,0.89,0.152,0.64,97,641,324,0,2.3000000000000003,97,641,0,324,69.26,0.14,0.9,51.06,1012,319,2.4000000000000004 +2008,2,15,15,30,9.700000000000001,0.68,0.161,0.64,72,418,156,0,4.2,72,418,0,156,78.35000000000001,0.14,0.8,68.62,1012,316,1.8 +2008,2,15,16,30,7.6000000000000005,0.68,0.157,0.64,14,34,15,0,3.8000000000000003,14,34,0,15,88.3,0.14,0.8,76.62,1012,322,1.8 +2008,2,15,17,30,6.7,0.73,0.159,0.64,0,0,0,0,3.2,0,0,0,0,99.47,0.14,0.8,78.21000000000001,1012,338,1.9000000000000001 +2008,2,15,18,30,5.9,0.8300000000000001,0.17300000000000001,0.64,0,0,0,0,2.8000000000000003,0,0,0,0,110.59,0.14,0.8,80.3,1012,179,2 +2008,2,15,19,30,5.1000000000000005,0.97,0.198,0.64,0,0,0,0,2.3000000000000003,0,0,0,0,121.66,0.14,0.8,82.17,1012,19,2.2 +2008,2,15,20,30,4.5,1.1300000000000001,0.231,0.64,0,0,0,0,1.8,0,0,0,0,132.24,0.14,0.7000000000000001,82.9,1012,34,2.3000000000000003 +2008,2,15,21,30,4.1000000000000005,1.24,0.256,0.64,0,0,0,0,1.5,0,0,0,0,141.62,0.14,0.7000000000000001,83.27,1012,44,2.4000000000000004 +2008,2,15,22,30,3.8000000000000003,1.31,0.264,0.64,0,0,0,0,1.3,0,0,0,0,148.44,0.14,0.7000000000000001,83.55,1013,51,2.4000000000000004 +2008,2,15,23,30,3.6,1.35,0.255,0.64,0,0,0,0,0.9,0,0,0,0,150.71,0.14,0.7000000000000001,82.7,1013,55,2.5 +2008,2,16,0,30,3.3000000000000003,1.36,0.241,0.64,0,0,0,0,0.4,0,0,0,0,147.44,0.14,0.7000000000000001,81.39,1013,57,2.8000000000000003 +2008,2,16,1,30,3.1,1.36,0.231,0.64,0,0,0,0,-0.30000000000000004,0,0,0,0,139.99,0.14,0.7000000000000001,78.41,1013,56,3.1 +2008,2,16,2,30,2.7,1.35,0.215,0.64,0,0,0,0,-1.1,0,0,0,0,130.29,0.14,0.7000000000000001,75.78,1013,53,3.3000000000000003 +2008,2,16,3,30,2.4000000000000004,1.33,0.184,0.64,0,0,0,0,-1.9000000000000001,0,0,0,0,119.56,0.14,0.6000000000000001,72.99,1014,49,3.4000000000000004 +2008,2,16,4,30,2,1.28,0.139,0.64,0,0,0,0,-2.6,0,0,0,0,108.44,0.14,0.5,71.62,1015,45,3.7 +2008,2,16,5,30,2.2,1.19,0.093,0.64,0,0,0,0,-3.2,0,0,0,0,97.32000000000001,0.14,0.4,67.41,1015,42,4.1000000000000005 +2008,2,16,6,30,3.6,0.97,0.065,0.64,24,306,44,0,-3.6,24,306,0,44,86.34,0.14,0.30000000000000004,59.1,1016,41,5.1000000000000005 +2008,2,16,7,30,5.6000000000000005,0.93,0.049,0.64,53,729,224,0,-4.1000000000000005,53,729,0,224,76.41,0.14,0.2,49.76,1017,45,6.1000000000000005 +2008,2,16,8,30,7.2,0.87,0.045,0.64,67,863,397,0,-5.300000000000001,67,863,0,397,67.52,0.14,0.30000000000000004,40.51,1018,47,6.4 +2008,2,16,9,30,8.3,0.76,0.049,0.64,78,925,535,0,-6.1000000000000005,78,925,0,535,60.39,0.14,0.30000000000000004,35.480000000000004,1019,46,6.1000000000000005 +2008,2,16,10,30,9,0.75,0.047,0.64,81,960,622,0,-6.6000000000000005,81,960,0,622,55.76,0.14,0.30000000000000004,32.53,1019,45,5.7 +2008,2,16,11,30,9.5,0.74,0.045,0.64,82,972,648,0,-6.9,82,972,0,648,54.34,0.14,0.30000000000000004,30.76,1019,41,5.4 +2008,2,16,12,30,9.600000000000001,0.68,0.057,0.64,86,942,608,0,-7,86,942,0,608,56.36,0.14,0.30000000000000004,30.240000000000002,1019,37,5.300000000000001 +2008,2,16,13,30,9.1,0.75,0.055,0.64,80,907,513,0,-7.1000000000000005,80,907,0,513,61.49,0.14,0.30000000000000004,31.18,1019,35,5.2 +2008,2,16,14,30,7.9,0.87,0.054,0.64,69,831,367,0,-6.9,69,831,0,367,68.98,0.14,0.30000000000000004,34.230000000000004,1020,36,4.7 +2008,2,16,15,30,5.5,0.97,0.053,0.64,51,667,188,0,-5.800000000000001,51,667,0,188,78.11,0.14,0.30000000000000004,43.94,1021,39,3.6 +2008,2,16,16,30,3,1,0.053,0.64,16,216,23,0,-4.2,16,216,0,23,88.08,0.14,0.30000000000000004,59.18,1022,43,2.9000000000000004 +2008,2,16,17,30,1.9000000000000001,1.02,0.055,0.64,0,0,0,0,-4.3,0,0,0,0,99.25,0.14,0.30000000000000004,63.32,1022,45,2.8000000000000003 +2008,2,16,18,30,1.2000000000000002,1.03,0.057,0.64,0,0,0,0,-4.6000000000000005,0,0,0,0,110.37,0.14,0.4,65.5,1023,46,2.6 +2008,2,16,19,30,0.9,1.02,0.061,0.64,0,0,0,0,-4.7,0,0,0,0,121.44,0.14,0.4,66.22,1023,48,2.6 +2008,2,16,20,30,0.6000000000000001,0.99,0.069,0.64,0,0,0,0,-4.7,0,0,0,0,132,0.14,0.4,67.52,1024,50,2.6 +2008,2,16,21,30,0.2,0.9500000000000001,0.07200000000000001,0.64,0,0,0,0,-4.9,0,0,0,0,141.34,0.14,0.4,68.49,1025,52,2.5 +2008,2,16,22,30,-0.5,0.93,0.067,0.64,0,0,0,0,-5.4,0,0,0,0,148.12,0.14,0.30000000000000004,69.22,1026,54,2.3000000000000003 +2008,2,16,23,30,-1.2000000000000002,0.88,0.059000000000000004,0.64,0,0,0,0,-6.2,0,0,0,0,150.37,0.14,0.30000000000000004,68.64,1026,55,2.1 +2008,2,17,0,30,-1.6,0.84,0.053,0.64,0,0,0,0,-6.9,0,0,0,0,147.11,0.14,0.30000000000000004,67.16,1027,57,2 +2008,2,17,1,30,-1.8,0.8200000000000001,0.05,0.64,0,0,0,0,-7.300000000000001,0,0,0,0,139.70000000000002,0.14,0.30000000000000004,66.18,1027,60,1.9000000000000001 +2008,2,17,2,30,-1.9000000000000001,0.8,0.049,0.64,0,0,0,0,-7.4,0,0,0,0,130.04,0.14,0.30000000000000004,65.95,1028,62,1.9000000000000001 +2008,2,17,3,30,-1.9000000000000001,0.77,0.049,0.64,0,0,0,0,-7.4,0,0,0,0,119.32000000000001,0.14,0.30000000000000004,65.99,1028,65,1.9000000000000001 +2008,2,17,4,30,-2,0.74,0.048,0.64,0,0,0,0,-7.4,0,0,0,0,108.2,0.14,0.30000000000000004,66.64,1028,67,1.8 +2008,2,17,5,30,-1.3,0.72,0.048,0.64,0,0,0,0,-7.4,0,0,0,0,97.08,0.14,0.30000000000000004,63.29,1029,66,1.7000000000000002 +2008,2,17,6,30,0.7000000000000001,0.7000000000000001,0.054,0.64,26,330,48,0,-6.300000000000001,26,330,0,48,86.09,0.14,0.30000000000000004,59.53,1029,66,2.2 +2008,2,17,7,30,3,0.71,0.055,0.64,57,700,224,0,-7.7,57,700,0,224,76.14,0.14,0.30000000000000004,45.35,1029,68,2.8000000000000003 +2008,2,17,8,30,4.7,0.74,0.054,0.64,72,837,396,0,-8.1,72,837,0,396,67.22,0.14,0.4,38.99,1029,69,2.5 +2008,2,17,9,30,6.2,0.74,0.052000000000000005,0.64,80,911,534,0,-8.3,80,911,0,534,60.06,0.14,0.4,34.53,1029,66,1.9000000000000001 +2008,2,17,10,30,7.4,0.74,0.051000000000000004,0.64,84,946,621,0,-8.9,84,946,0,621,55.42,0.14,0.4,30.5,1028,42,1 +2008,2,17,11,30,8.4,0.76,0.05,0.64,84,956,647,0,-9.4,84,956,0,647,53.99,0.14,0.4,27.29,1027,150,0.7000000000000001 +2008,2,17,12,30,8.9,0.75,0.053,0.64,84,940,609,0,-9.200000000000001,84,940,0,609,56.03,0.14,0.4,26.72,1027,274,1.6 +2008,2,17,13,30,8.9,0.73,0.054,0.64,79,890,508,0,-8.3,79,890,0,508,61.18,0.14,0.5,28.68,1027,267,2.4000000000000004 +2008,2,17,14,30,7.9,0.75,0.055,0.64,69,808,363,0,-7.2,69,808,0,363,68.71000000000001,0.14,0.5,33.56,1026,265,2.5 +2008,2,17,15,30,5.5,0.72,0.063,0.64,54,621,185,0,-3,54,621,0,185,77.86,0.14,0.5,54.410000000000004,1026,268,1.9000000000000001 +2008,2,17,16,30,3.5,0.74,0.063,0.64,17,175,24,0,-2.9000000000000004,17,175,0,24,87.87,0.14,0.5,63.11,1026,281,1.6 +2008,2,17,17,30,3.1,0.74,0.062,0.64,0,0,0,0,-3.6,0,0,0,0,99.03,0.14,0.5,61.49,1026,300,1.3 +2008,2,17,18,30,3,0.75,0.06,0.64,0,0,0,0,-4.2,0,0,0,0,110.16,0.14,0.5,59.2,1026,330,0.9 +2008,2,17,19,30,2.7,0.76,0.059000000000000004,0.64,0,0,0,0,-4.800000000000001,0,0,0,0,121.21000000000001,0.14,0.5,57.57,1026,212,0.5 +2008,2,17,20,30,2.4000000000000004,0.77,0.059000000000000004,0.64,0,0,0,0,-5.300000000000001,0,0,0,0,131.76,0.14,0.5,56.730000000000004,1026,87,0.5 +2008,2,17,21,30,1.9000000000000001,0.79,0.06,0.64,0,0,0,0,-5.7,0,0,0,0,141.07,0.14,0.5,56.92,1026,98,0.7000000000000001 +2008,2,17,22,30,1.3,0.8,0.061,0.64,0,0,0,1,-6.2,0,0,0,0,147.8,0.14,0.5,57.57,1025,97,0.8 +2008,2,17,23,30,0.9,0.81,0.061,0.64,0,0,0,4,-6.4,0,0,0,0,150.02,0.14,0.5,58.19,1025,99,0.9 +2008,2,18,0,30,0.8,0.81,0.061,0.64,0,0,0,4,-6.6000000000000005,0,0,0,0,146.78,0.14,0.5,57.59,1025,103,1 +2008,2,18,1,30,0.7000000000000001,0.81,0.06,0.64,0,0,0,0,-6.9,0,0,0,0,139.41,0.14,0.5,56.93,1024,104,1 +2008,2,18,2,30,0.7000000000000001,0.81,0.059000000000000004,0.64,0,0,0,0,-7.1000000000000005,0,0,0,0,129.78,0.14,0.5,56.11,1024,104,1.1 +2008,2,18,3,30,0.5,0.8200000000000001,0.06,0.64,0,0,0,1,-7.1000000000000005,0,0,0,0,119.08,0.14,0.5,56.63,1024,103,1.1 +2008,2,18,4,30,0.30000000000000004,0.8300000000000001,0.06,0.64,0,0,0,0,-7.1000000000000005,0,0,0,0,107.96000000000001,0.14,0.5,57.56,1024,102,1.2000000000000002 +2008,2,18,5,30,0.8,0.84,0.06,0.64,0,0,0,1,-7.1000000000000005,0,0,0,0,96.84,0.14,0.5,55.64,1023,102,1.1 +2008,2,18,6,30,2.8000000000000003,0.8300000000000001,0.062,0.64,26,324,50,0,-5.6000000000000005,26,324,0,50,85.84,0.14,0.4,54.01,1023,102,1.4000000000000001 +2008,2,18,7,30,5.1000000000000005,0.86,0.063,0.64,58,683,225,0,-6.1000000000000005,58,683,0,225,75.86,0.14,0.4,44.19,1023,107,1.5 +2008,2,18,8,30,6.800000000000001,0.88,0.065,0.64,75,826,398,0,-6,75,826,0,398,66.93,0.14,0.4,39.52,1023,130,0.8 +2008,2,18,9,30,8.3,0.96,0.065,0.64,84,899,537,0,-6.4,84,899,0,537,59.74,0.14,0.4,34.660000000000004,1022,192,0.7000000000000001 +2008,2,18,10,30,9.4,0.98,0.066,0.64,89,933,623,0,-6.4,89,933,0,623,55.07,0.14,0.4,32.230000000000004,1022,246,1.2000000000000002 +2008,2,18,11,30,10.100000000000001,1.02,0.067,0.64,91,941,649,0,-5.800000000000001,91,941,0,649,53.64,0.14,0.4,32.11,1021,261,1.8 +2008,2,18,12,30,10.4,1.02,0.07,0.64,90,925,611,0,-5.5,90,925,0,611,55.7,0.14,0.4,32.18,1020,269,2.2 +2008,2,18,13,30,10.200000000000001,1.08,0.07200000000000001,0.64,84,875,510,0,-5.4,84,875,0,510,60.88,0.14,0.5,33.01,1020,275,2.3000000000000003 +2008,2,18,14,30,9.200000000000001,1.1400000000000001,0.074,0.64,74,791,365,0,-5.2,74,791,0,365,68.43,0.14,0.5,35.89,1019,280,1.8 +2008,2,18,15,30,6.9,0.93,0.078,0.64,57,607,187,0,-0.8,57,607,0,187,77.61,0.14,0.5,57.82,1019,286,1.4000000000000001 +2008,2,18,16,30,5.1000000000000005,0.99,0.082,0.64,18,171,25,0,-2,18,171,0,25,87.66,0.14,0.5,60.33,1019,293,1.5 +2008,2,18,17,30,4.6000000000000005,1.04,0.089,0.64,0,0,0,0,-2.9000000000000004,0,0,0,0,98.82000000000001,0.14,0.5,58.230000000000004,1019,303,1.5 +2008,2,18,18,30,4.5,1.08,0.095,0.64,0,0,0,0,-3,0,0,0,0,109.94,0.14,0.5,58.120000000000005,1019,315,1.4000000000000001 +2008,2,18,19,30,4.4,1.12,0.10300000000000001,0.64,0,0,0,0,-3.1,0,0,0,0,120.99000000000001,0.14,0.5,58.370000000000005,1020,330,1.3 +2008,2,18,20,30,4.3,1.1500000000000001,0.11,0.64,0,0,0,0,-3.1,0,0,0,0,131.52,0.14,0.6000000000000001,58.61,1020,347,1.1 +2008,2,18,21,30,4,1.17,0.116,0.64,0,0,0,0,-3,0,0,0,0,140.79,0.14,0.6000000000000001,60.38,1019,183,0.9 +2008,2,18,22,30,3.7,1.18,0.121,0.64,0,0,0,0,-2.8000000000000003,0,0,0,0,147.47,0.14,0.6000000000000001,62.4,1019,18,0.9 +2008,2,18,23,30,3.4000000000000004,1.19,0.126,0.64,0,0,0,0,-2.8000000000000003,0,0,0,0,149.67000000000002,0.14,0.6000000000000001,64.08,1019,33,0.9 +2008,2,19,0,30,3.1,1.19,0.129,0.64,0,0,0,0,-2.8000000000000003,0,0,0,0,146.45000000000002,0.14,0.7000000000000001,65.31,1018,45,1 +2008,2,19,1,30,2.9000000000000004,1.2,0.13,0.64,0,0,0,0,-2.8000000000000003,0,0,0,0,139.12,0.14,0.7000000000000001,65.99,1018,52,1 +2008,2,19,2,30,2.9000000000000004,1.2,0.13,0.64,0,0,0,0,-2.9000000000000004,0,0,0,0,129.51,0.14,0.7000000000000001,65.75,1018,56,1 +2008,2,19,3,30,3,1.2,0.13,0.64,0,0,0,0,-2.9000000000000004,0,0,0,0,118.83,0.14,0.7000000000000001,65.09,1018,59,0.9 +2008,2,19,4,30,3.2,1.19,0.13,0.64,0,0,0,0,-2.9000000000000004,0,0,0,0,107.72,0.14,0.7000000000000001,64.28,1018,59,0.8 +2008,2,19,5,30,3.5,1.19,0.131,0.64,0,0,0,0,-2.8000000000000003,0,0,0,0,96.59,0.14,0.7000000000000001,63.63,1018,58,0.7000000000000001 +2008,2,19,6,30,4.9,1.18,0.15,0.64,31,198,46,0,-1.9000000000000001,31,198,0,46,85.59,0.14,0.8,61.28,1018,50,0.7000000000000001 +2008,2,19,7,30,6.800000000000001,1.18,0.149,0.64,76,540,210,0,-0.7000000000000001,76,540,0,210,75.59,0.14,0.8,58.980000000000004,1019,194,0.8 +2008,2,19,8,30,8.5,1.19,0.147,0.64,100,704,379,0,0.4,100,704,0,379,66.62,0.14,0.8,56.64,1019,327,0.7000000000000001 +2008,2,19,9,30,9.700000000000001,1.24,0.125,0.64,105,811,518,0,0.5,105,811,0,518,59.410000000000004,0.14,0.8,52.76,1018,283,0.7000000000000001 +2008,2,19,10,30,10.700000000000001,1.25,0.12,0.64,110,854,603,0,0.5,110,854,0,603,54.730000000000004,0.14,0.8,49.160000000000004,1018,248,1 +2008,2,19,11,30,11.3,1.26,0.116,0.64,110,869,630,0,0.4,110,869,0,630,53.29,0.14,0.8,47.1,1018,235,1.6 +2008,2,19,12,30,11.5,1.05,0.128,0.64,115,837,590,0,0.6000000000000001,115,837,0,590,55.36,0.14,0.8,47.01,1017,231,2 +2008,2,19,13,30,11.200000000000001,1.05,0.126,0.64,106,794,496,0,0.8,106,794,0,496,60.57,0.14,0.8,48.69,1017,227,2.2 +2008,2,19,14,30,10.200000000000001,1.04,0.124,0.64,91,706,354,0,1.1,91,706,0,354,68.16,0.14,0.8,53.18,1017,223,1.9000000000000001 +2008,2,19,15,30,8,0.81,0.165,0.64,77,451,176,0,2.8000000000000003,77,451,0,176,77.37,0.14,0.8,69.48,1017,221,1.4000000000000001 +2008,2,19,16,30,6.2,0.79,0.162,0.64,21,71,24,0,2.7,21,71,0,24,87.45,0.14,0.7000000000000001,78.10000000000001,1017,217,1.2000000000000002 +2008,2,19,17,30,6,0.77,0.158,0.64,0,0,0,0,2.1,0,0,0,0,98.60000000000001,0.14,0.7000000000000001,76.01,1017,205,1.2000000000000002 +2008,2,19,18,30,5.9,0.74,0.154,0.64,0,0,0,0,2.2,0,0,0,0,109.73,0.14,0.7000000000000001,76.86,1017,179,1.1 +2008,2,19,19,30,5.4,0.71,0.149,0.64,0,0,0,0,2.2,0,0,0,0,120.77,0.14,0.7000000000000001,79.7,1017,148,1.1 +2008,2,19,20,30,4.6000000000000005,0.6900000000000001,0.14300000000000002,0.64,0,0,0,0,2.1,0,0,0,0,131.28,0.14,0.7000000000000001,83.85000000000001,1017,130,1.3 +2008,2,19,21,30,3.9000000000000004,0.66,0.137,0.64,0,0,0,0,1.9000000000000001,0,0,0,0,140.51,0.14,0.7000000000000001,86.92,1017,126,1.5 +2008,2,19,22,30,3.4000000000000004,0.65,0.13,0.64,0,0,0,0,1.7000000000000002,0,0,0,0,147.14000000000001,0.14,0.7000000000000001,88.49,1017,126,1.6 +2008,2,19,23,30,3,0.64,0.124,0.64,0,0,0,0,1.5,0,0,0,0,149.31,0.14,0.7000000000000001,89.63,1017,128,1.6 +2008,2,20,0,30,2.7,0.63,0.12,0.64,0,0,0,0,1.3,0,0,0,0,146.11,0.14,0.7000000000000001,90.56,1017,130,1.6 +2008,2,20,1,30,2.5,0.64,0.117,0.64,0,0,0,1,1.2000000000000002,0,0,0,0,138.82,0.14,0.8,91.44,1017,130,1.7000000000000002 +2008,2,20,2,30,2.4000000000000004,0.65,0.114,0.64,0,0,0,1,1.3,0,0,0,0,129.24,0.14,0.8,92.33,1017,128,1.7000000000000002 +2008,2,20,3,30,2.4000000000000004,0.6900000000000001,0.111,0.64,0,0,0,4,1.4000000000000001,0,0,0,0,118.57000000000001,0.14,0.8,93.19,1017,124,1.7000000000000002 +2008,2,20,4,30,2.5,0.74,0.106,0.64,0,0,0,4,1.6,0,0,0,0,107.47,0.14,0.8,93.61,1017,120,1.7000000000000002 +2008,2,20,5,30,3.4000000000000004,0.77,0.101,0.64,0,0,0,5,1.7000000000000002,0,0,0,0,96.34,0.14,0.9,88.86,1017,117,1.7000000000000002 +2008,2,20,6,30,5.5,0.99,0.083,0.64,30,289,53,4,2.3000000000000003,16,0,7,16,85.34,0.14,0.9,79.72,1017,115,2.2 +2008,2,20,7,30,7.9,1.04,0.083,0.64,63,628,223,5,2.8000000000000003,138,160,7,179,75.3,0.14,1,70.18,1017,123,2.9000000000000004 +2008,2,20,8,30,9.600000000000001,1.07,0.085,0.64,82,772,392,8,3.1,200,80,0,232,66.31,0.14,1,64.09,1017,138,3 +2008,2,20,9,30,10.9,0.49,0.19,0.64,141,702,501,7,3.5,259,75,0,298,59.07,0.14,1.1,60.13,1017,150,3.1 +2008,2,20,10,30,11.8,0.5,0.193,0.64,151,744,584,7,3.8000000000000003,272,354,0,478,54.370000000000005,0.14,1.1,57.800000000000004,1017,158,3 +2008,2,20,11,30,12.3,0.5,0.193,0.64,151,753,605,7,4,301,268,0,463,52.93,0.14,1.2000000000000002,56.97,1016,163,3 +2008,2,20,12,30,12.5,0.45,0.218,0.64,158,704,562,7,4.2,301,190,0,410,55.02,0.14,1.3,56.910000000000004,1015,164,3 +2008,2,20,13,30,12.3,0.46,0.226,0.64,149,640,467,7,4.3,268,165,0,350,60.26,0.14,1.4000000000000001,58.11,1015,162,2.8000000000000003 +2008,2,20,14,30,11.4,0.48,0.23500000000000001,0.64,129,524,327,5,4.5,201,13,0,206,67.88,0.14,1.5,62.35,1015,158,2.1 +2008,2,20,15,30,9.8,0.47000000000000003,0.27,0.64,95,289,159,5,6.1000000000000005,6,0,0,6,77.12,0.14,1.6,77.74,1015,154,1.5 +2008,2,20,16,30,8.5,0.49,0.278,0.64,18,14,18,8,5.300000000000001,4,0,7,4,87.24,0.14,1.6,80.48,1015,148,1.5 +2008,2,20,17,30,8,0.49,0.289,0.64,0,0,0,4,4.800000000000001,0,0,0,0,98.38,0.14,1.7000000000000002,80.03,1015,136,1.6 +2008,2,20,18,30,7.6000000000000005,0.48,0.293,0.64,0,0,0,8,4.6000000000000005,0,0,0,0,109.52,0.14,1.7000000000000002,81.44,1015,124,1.7000000000000002 +2008,2,20,19,30,7.1000000000000005,0.48,0.291,0.64,0,0,0,4,4.3,0,0,0,0,120.55,0.14,1.7000000000000002,82.65,1015,116,1.7000000000000002 +2008,2,20,20,30,6.800000000000001,0.48,0.291,0.64,0,0,0,8,4,0,0,0,0,131.03,0.14,1.7000000000000002,82.4,1015,113,1.8 +2008,2,20,21,30,6.800000000000001,0.48,0.29,0.64,0,0,0,4,3.8000000000000003,0,0,0,0,140.22,0.14,1.7000000000000002,81.41,1015,114,1.8 +2008,2,20,22,30,6.800000000000001,0.49,0.292,0.64,0,0,0,4,3.7,0,0,0,0,146.81,0.14,1.8,80.66,1015,115,1.8 +2008,2,20,23,30,6.9,0.51,0.3,0.64,0,0,0,4,3.7,0,0,0,0,148.95000000000002,0.14,1.8,79.86,1014,115,1.8 +2008,2,21,0,30,7,0.54,0.31,0.64,0,0,0,4,3.8000000000000003,0,0,0,0,145.77,0.14,1.9000000000000001,79.84,1014,113,1.7000000000000002 +2008,2,21,1,30,7.1000000000000005,0.5700000000000001,0.318,0.64,0,0,0,7,3.9000000000000004,0,0,0,0,138.51,0.14,1.9000000000000001,80.19,1014,111,1.7000000000000002 +2008,2,21,2,30,7.1000000000000005,0.58,0.321,0.64,0,0,0,8,4.1000000000000005,0,0,0,0,128.97,0.14,1.9000000000000001,81.04,1014,110,1.7000000000000002 +2008,2,21,3,30,7.1000000000000005,0.59,0.325,0.64,0,0,0,6,4.1000000000000005,0,0,0,0,118.31,0.14,1.9000000000000001,81.46000000000001,1014,108,1.8 +2008,2,21,4,30,7.1000000000000005,0.61,0.322,0.64,0,0,0,6,4.3,0,0,0,0,107.21000000000001,0.14,1.9000000000000001,82.52,1014,105,1.9000000000000001 +2008,2,21,5,30,7.300000000000001,0.62,0.308,0.64,0,0,0,7,4.4,0,0,0,0,96.08,0.14,1.9000000000000001,81.58,1014,103,2 +2008,2,21,6,30,8.200000000000001,0.62,0.298,0.64,37,57,41,7,4.7,13,0,7,13,85.08,0.14,2,78.55,1014,102,2.1 +2008,2,21,7,30,9.700000000000001,0.62,0.291,0.64,108,329,193,7,6,10,0,0,10,75.02,0.14,2,77.62,1015,102,2.3000000000000003 +2008,2,21,8,30,11,0.62,0.28200000000000003,0.64,147,507,353,7,6.4,124,7,0,127,66,0.14,2,73.16,1015,103,2.6 +2008,2,21,9,30,12,0.7000000000000001,0.17,0.64,128,713,498,7,6.6000000000000005,165,7,0,169,58.74,0.14,2,69.76,1015,104,2.6 +2008,2,21,10,30,12.600000000000001,0.7000000000000001,0.176,0.64,139,748,579,7,6.800000000000001,261,94,0,316,54.02,0.14,2,67.56,1015,101,2.6 +2008,2,21,11,30,13,0.71,0.17400000000000002,0.64,140,762,603,8,6.7,272,53,0,305,52.58,0.14,2,65.5,1014,97,2.4000000000000004 +2008,2,21,12,30,13.3,0.74,0.184,0.64,140,736,566,8,6.5,164,5,0,166,54.68,0.14,2,63.53,1014,95,2.3000000000000003 +2008,2,21,13,30,13.5,0.76,0.17300000000000001,0.64,126,702,478,5,6.300000000000001,163,0,0,163,59.95,0.14,1.9000000000000001,61.85,1013,99,2.2 +2008,2,21,14,30,13.100000000000001,0.76,0.164,0.64,106,616,341,4,6.1000000000000005,56,0,0,56,67.61,0.14,1.9000000000000001,62.65,1013,105,1.9000000000000001 +2008,2,21,15,30,11.700000000000001,0.77,0.167,0.64,78,429,175,5,7.2,6,0,0,6,76.87,0.14,1.9000000000000001,73.86,1014,115,1.5 +2008,2,21,16,30,10.4,0.77,0.171,0.64,23,72,26,5,6.800000000000001,5,0,7,5,87.02,0.14,1.8,78.18,1014,118,1.2000000000000002 +2008,2,21,17,30,10,0.75,0.17400000000000002,0.64,0,0,0,3,6.2,0,0,0,0,98.16,0.14,1.8,77.12,1014,105,1.1 +2008,2,21,18,30,9.700000000000001,0.74,0.177,0.64,0,0,0,4,5.9,0,0,0,0,109.3,0.14,1.8,77.24,1015,88,1.2000000000000002 +2008,2,21,19,30,9,0.72,0.17300000000000001,0.64,0,0,0,4,5.5,0,0,0,0,120.32000000000001,0.14,1.8,78.98,1015,79,1.5 +2008,2,21,20,30,7.9,0.72,0.165,0.64,0,0,0,4,5.2,0,0,0,0,130.78,0.14,1.8,83.09,1016,73,1.6 +2008,2,21,21,30,7.1000000000000005,0.73,0.161,0.64,0,0,0,4,4.7,0,0,0,0,139.94,0.14,1.7000000000000002,84.87,1016,66,1.7000000000000002 +2008,2,21,22,30,6.7,0.75,0.159,0.64,0,0,0,1,4.3,0,0,0,0,146.48,0.14,1.7000000000000002,84.60000000000001,1016,64,1.6 +2008,2,21,23,30,6.6000000000000005,0.76,0.154,0.64,0,0,0,1,4,0,0,0,0,148.59,0.14,1.7000000000000002,83.45,1015,67,1.6 +2008,2,22,0,30,6.800000000000001,0.77,0.151,0.64,0,0,0,0,3.8000000000000003,0,0,0,0,145.43,0.14,1.6,80.99,1015,67,1.5 +2008,2,22,1,30,7.2,0.77,0.146,0.64,0,0,0,0,3.6,0,0,0,0,138.20000000000002,0.14,1.6,78.07000000000001,1015,65,1.4000000000000001 +2008,2,22,2,30,7.5,0.77,0.14,0.64,0,0,0,0,3.6,0,0,0,0,128.69,0.14,1.5,76.09,1015,62,1.3 +2008,2,22,3,30,7.5,0.76,0.135,0.64,0,0,0,1,3.5,0,0,0,0,118.05,0.14,1.5,75.9,1016,65,1.3 +2008,2,22,4,30,7.4,0.74,0.128,0.64,0,0,0,4,3.4000000000000004,0,0,0,0,106.96000000000001,0.14,1.4000000000000001,76.01,1016,72,1.3 +2008,2,22,5,30,7.7,0.72,0.12,0.64,0,0,0,0,3.3000000000000003,0,0,0,0,95.82000000000001,0.14,1.4000000000000001,73.95,1016,81,1.2000000000000002 +2008,2,22,6,30,9.200000000000001,0.7000000000000001,0.108,0.64,34,242,56,0,4.1000000000000005,34,242,0,56,84.81,0.14,1.3,70.48,1017,91,1.3 +2008,2,22,7,30,11.700000000000001,0.6900000000000001,0.106,0.64,72,579,224,0,4.9,72,579,0,224,74.73,0.14,1.3,62.910000000000004,1017,119,1.3 +2008,2,22,8,30,13.9,0.7000000000000001,0.107,0.64,92,729,392,0,5.4,92,729,0,392,65.69,0.14,1.3,56.56,1017,158,1.4000000000000001 +2008,2,22,9,30,15.4,0.72,0.107,0.64,103,806,526,0,6.1000000000000005,103,806,0,526,58.4,0.14,1.3,53.9,1017,182,1.7000000000000002 +2008,2,22,10,30,16.2,0.75,0.11,0.64,111,841,609,0,6.6000000000000005,111,841,0,609,53.660000000000004,0.14,1.3,52.84,1017,197,1.7000000000000002 +2008,2,22,11,30,16.6,0.78,0.114,0.64,114,847,633,0,6.9,114,847,0,633,52.21,0.14,1.3,52.550000000000004,1017,215,1.7000000000000002 +2008,2,22,12,30,16.6,0.81,0.113,0.64,111,834,597,0,6.800000000000001,111,834,0,597,54.34,0.14,1.3,52.28,1016,231,1.8 +2008,2,22,13,30,16.2,0.85,0.117,0.64,105,787,503,0,6.6000000000000005,105,787,0,503,59.64,0.14,1.3,52.85,1016,243,2 +2008,2,22,14,30,15.200000000000001,0.88,0.11900000000000001,0.64,92,698,361,0,6.300000000000001,92,698,0,361,67.33,0.14,1.3,55.230000000000004,1016,249,2 +2008,2,22,15,30,12.8,0.9,0.121,0.64,69,521,189,0,7.4,69,521,0,189,76.63,0.14,1.3,69.8,1016,251,1.7000000000000002 +2008,2,22,16,30,10.4,0.92,0.12,0.64,24,144,32,0,7.6000000000000005,24,144,0,32,86.8,0.14,1.2000000000000002,82.98,1017,256,1.5 +2008,2,22,17,30,9.3,0.9400000000000001,0.121,0.64,0,0,0,0,6.9,0,0,0,0,97.95,0.14,1.2000000000000002,85.16,1017,264,1.4000000000000001 +2008,2,22,18,30,8.9,0.9500000000000001,0.122,0.64,0,0,0,0,6.7,0,0,0,0,109.09,0.14,1.2000000000000002,85.85000000000001,1018,272,1.3 +2008,2,22,19,30,8.8,0.96,0.121,0.64,0,0,0,0,6.4,0,0,0,0,120.10000000000001,0.14,1.2000000000000002,84.88,1018,279,1.1 +2008,2,22,20,30,9,0.97,0.12,0.64,0,0,0,0,6.2,0,0,0,0,130.54,0.14,1.2000000000000002,82.63,1018,285,0.7000000000000001 +2008,2,22,21,30,9.1,0.98,0.12,0.64,0,0,0,0,6,0,0,0,0,139.65,0.14,1.3,80.86,1018,148,0.30000000000000004 +2008,2,22,22,30,9,0.99,0.11900000000000001,0.64,0,0,0,0,5.800000000000001,0,0,0,0,146.14000000000001,0.14,1.3,80.51,1018,44,0.30000000000000004 +2008,2,22,23,30,8.5,1,0.11800000000000001,0.64,0,0,0,0,5.7,0,0,0,0,148.23,0.14,1.4000000000000001,82.5,1018,82,0.6000000000000001 +2008,2,23,0,30,8,1.01,0.117,0.64,0,0,0,0,5.5,0,0,0,0,145.08,0.15,1.4000000000000001,84.09,1018,87,0.8 +2008,2,23,1,30,7.6000000000000005,1.02,0.114,0.64,0,0,0,0,5.2,0,0,0,0,137.89000000000001,0.15,1.5,84.55,1017,93,0.9 +2008,2,23,2,30,7.300000000000001,1.03,0.11,0.64,0,0,0,0,4.800000000000001,0,0,0,0,128.4,0.15,1.5,84.39,1017,99,1 +2008,2,23,3,30,7.1000000000000005,1.04,0.108,0.64,0,0,0,0,4.6000000000000005,0,0,0,0,117.78,0.15,1.5,83.95,1017,104,1 +2008,2,23,4,30,7,1.04,0.106,0.64,0,0,0,0,4.3,0,0,0,0,106.69,0.15,1.5,83.22,1017,107,1 +2008,2,23,5,30,7.4,1.05,0.106,0.64,0,0,0,0,4.2,0,0,0,0,95.55,0.15,1.5,79.97,1018,106,0.9 +2008,2,23,6,30,9.3,1.02,0.128,0.64,36,245,60,0,4.5,36,245,0,60,84.54,0.15,1.5,71.97,1018,101,0.8 +2008,2,23,7,30,11.9,1.03,0.126,0.64,75,562,226,0,5.2,75,562,0,226,74.43,0.15,1.6,63.49,1018,200,0.7000000000000001 +2008,2,23,8,30,14.100000000000001,1.05,0.122,0.64,95,715,393,0,4.6000000000000005,95,715,0,393,65.37,0.15,1.6,52.96,1018,298,1.2000000000000002 +2008,2,23,9,30,15.600000000000001,1.09,0.11900000000000001,0.64,106,795,527,0,4.4,106,795,0,527,58.050000000000004,0.15,1.6,47.09,1018,295,1.9000000000000001 +2008,2,23,10,30,16.400000000000002,1.12,0.122,0.64,113,829,608,0,4.5,113,829,0,608,53.29,0.15,1.6,45.2,1018,296,2.1 +2008,2,23,11,30,17,1.1400000000000001,0.11900000000000001,0.64,113,842,633,0,4.7,113,842,0,633,51.85,0.15,1.6,44.03,1017,300,2.2 +2008,2,23,12,30,17.2,1.1400000000000001,0.117,0.64,110,832,599,0,4.800000000000001,110,832,0,599,54,0.15,1.5,44.01,1017,304,2.3000000000000003 +2008,2,23,13,30,17.1,1.1400000000000001,0.116,0.64,102,791,506,0,5,102,791,0,506,59.33,0.15,1.5,44.660000000000004,1016,305,2.3000000000000003 +2008,2,23,14,30,16.2,1.1500000000000001,0.114,0.64,88,709,364,0,5.2,88,709,0,364,67.06,0.15,1.5,48.13,1016,301,1.9000000000000001 +2008,2,23,15,30,13.8,1.05,0.117,0.64,67,534,193,0,7.9,67,534,0,193,76.38,0.15,1.5,67.51,1016,295,1.6 +2008,2,23,16,30,11.5,1.04,0.109,0.64,24,172,34,0,7.7,24,172,0,34,86.59,0.15,1.5,77.51,1017,296,1.6 +2008,2,23,17,30,10.600000000000001,1.03,0.10200000000000001,0.64,0,0,0,0,7,0,0,0,0,97.73,0.15,1.5,78.63,1017,305,1.6 +2008,2,23,18,30,10.200000000000001,1.03,0.098,0.64,0,0,0,0,7,0,0,0,0,108.87,0.15,1.4000000000000001,80.27,1017,319,1.5 +2008,2,23,19,30,10,1.03,0.097,0.64,0,0,0,0,6.800000000000001,0,0,0,0,119.88,0.15,1.4000000000000001,80.7,1018,337,1.3 +2008,2,23,20,30,9.9,1.04,0.097,0.64,0,0,0,0,6.7,0,0,0,0,130.29,0.15,1.4000000000000001,80.37,1018,180,1.1 +2008,2,23,21,30,9.700000000000001,1.06,0.098,0.64,0,0,0,0,6.4,0,0,0,0,139.36,0.15,1.4000000000000001,80.09,1018,26,0.9 +2008,2,23,22,30,9.600000000000001,1.08,0.099,0.64,0,0,0,0,6.1000000000000005,0,0,0,0,145.8,0.15,1.4000000000000001,78.81,1018,52,0.9 +2008,2,23,23,30,9.4,1.1,0.098,0.64,0,0,0,0,5.7,0,0,0,0,147.86,0.15,1.4000000000000001,77.89,1018,70,0.9 +2008,2,24,0,30,9.200000000000001,1.11,0.097,0.64,0,0,0,0,5.4,0,0,0,0,144.72,0.14,1.4000000000000001,76.86,1018,82,1 +2008,2,24,1,30,9.1,1.12,0.095,0.64,0,0,0,0,4.9,0,0,0,0,137.57,0.14,1.4000000000000001,75.23,1018,88,1.1 +2008,2,24,2,30,8.8,1.12,0.093,0.64,0,0,0,0,4.5,0,0,0,0,128.11,0.14,1.3,74.48,1018,90,1.2000000000000002 +2008,2,24,3,30,8.5,1.1300000000000001,0.092,0.64,0,0,0,0,4.1000000000000005,0,0,0,0,117.51,0.14,1.3,73.88,1018,88,1.3 +2008,2,24,4,30,8.200000000000001,1.1300000000000001,0.091,0.64,0,0,0,0,3.7,0,0,0,0,106.43,0.14,1.3,73.48,1018,87,1.4000000000000001 +2008,2,24,5,30,8.6,1.1400000000000001,0.089,0.64,0,0,0,0,3.4000000000000004,0,0,0,0,95.28,0.14,1.3,69.75,1018,90,1.3 +2008,2,24,6,30,10.8,0.99,0.089,0.64,34,319,66,0,4.3,34,319,0,66,84.27,0.14,1.3,64.38,1018,100,1.3 +2008,2,24,7,30,13.5,1.02,0.089,0.64,67,630,239,0,5.5,67,630,0,239,74.14,0.14,1.3,58.44,1019,128,1.2000000000000002 +2008,2,24,8,30,15.8,1.04,0.09,0.64,85,767,408,0,5.300000000000001,85,767,0,408,65.05,0.14,1.3,49.63,1019,175,1.2000000000000002 +2008,2,24,9,30,17.6,0.96,0.092,0.64,97,834,542,0,5.800000000000001,97,834,0,542,57.7,0.14,1.3,45.77,1019,203,1.6 +2008,2,24,10,30,18.400000000000002,0.99,0.092,0.64,102,865,624,0,6.300000000000001,102,865,0,624,52.93,0.14,1.4000000000000001,45.01,1018,208,1.9000000000000001 +2008,2,24,11,30,18.8,1.01,0.093,0.64,104,874,648,0,6.6000000000000005,104,874,0,648,51.49,0.14,1.4000000000000001,44.9,1018,212,2.1 +2008,2,24,12,30,18.6,1.02,0.095,0.64,102,858,611,0,6.9,102,858,0,611,53.65,0.14,1.4000000000000001,46.45,1017,217,2.3000000000000003 +2008,2,24,13,30,18,1.03,0.098,0.64,97,814,516,0,7.2,97,814,0,516,59.02,0.14,1.4000000000000001,49.370000000000005,1017,223,2.4000000000000004 +2008,2,24,14,30,16.7,1.03,0.101,0.64,86,729,373,0,7.5,86,729,0,373,66.78,0.14,1.4000000000000001,54.53,1017,229,2.2 +2008,2,24,15,30,14.100000000000001,0.62,0.11800000000000001,0.64,71,520,196,0,8.700000000000001,71,520,0,196,76.13,0.14,1.4000000000000001,69.94,1017,237,1.6 +2008,2,24,16,30,11.700000000000001,0.62,0.12,0.64,27,140,36,0,9.200000000000001,27,140,0,36,86.37,0.14,1.4000000000000001,84.75,1017,246,1.2000000000000002 +2008,2,24,17,30,11.100000000000001,0.63,0.122,0.64,0,0,0,0,8.6,0,0,0,0,97.51,0.14,1.3,84.38,1018,251,0.9 +2008,2,24,18,30,11.100000000000001,0.64,0.123,0.64,0,0,0,0,8.4,0,0,0,0,108.66,0.14,1.3,83.66,1018,212,0.5 +2008,2,24,19,30,10.700000000000001,0.66,0.123,0.64,0,0,0,0,8.4,0,0,0,0,119.65,0.14,1.3,85.59,1018,144,0.4 +2008,2,24,20,30,10.100000000000001,0.6900000000000001,0.122,0.64,0,0,0,0,8.3,0,0,0,0,130.04,0.14,1.3,88.68,1018,119,0.8 +2008,2,24,21,30,9.9,0.72,0.11900000000000001,0.64,0,0,0,0,8.200000000000001,0,0,0,0,139.07,0.14,1.3,89.3,1018,125,0.9 +2008,2,24,22,30,9.700000000000001,0.76,0.116,0.64,0,0,0,0,8.1,0,0,0,0,145.46,0.14,1.2000000000000002,89.83,1017,133,1 +2008,2,24,23,30,9.600000000000001,0.79,0.114,0.64,0,0,0,0,8.1,0,0,0,0,147.49,0.14,1.2000000000000002,90.07000000000001,1017,139,1 +2008,2,25,0,30,9.4,0.81,0.112,0.64,0,0,0,0,8,0,0,0,0,144.37,0.14,1.2000000000000002,91.03,1017,140,1 +2008,2,25,1,30,9.1,0.84,0.11,0.64,0,0,0,0,7.9,0,0,0,0,137.25,0.14,1.2000000000000002,92.49,1016,139,1.1 +2008,2,25,2,30,8.700000000000001,0.86,0.108,0.64,0,0,0,0,7.9,0,0,0,0,127.82000000000001,0.14,1.2000000000000002,94.59,1016,139,1.2000000000000002 +2008,2,25,3,30,8.1,0.88,0.11,0.64,0,0,0,0,7.800000000000001,0,0,0,0,117.24000000000001,0.14,1.2000000000000002,97.99000000000001,1016,138,1.3 +2008,2,25,4,30,7.5,0.89,0.117,0.64,0,0,0,0,7.5,0,0,0,0,106.16,0.14,1.2000000000000002,100,1016,136,1.4000000000000001 +2008,2,25,5,30,7.800000000000001,0.91,0.124,0.64,0,0,0,0,7.5,0,0,0,0,95.01,0.14,1.2000000000000002,97.92,1016,135,1.4000000000000001 +2008,2,25,6,30,10,0.78,0.166,0.64,44,208,65,1,7.5,44,208,0,65,83.99,0.14,1.2000000000000002,84.71000000000001,1016,140,1.7000000000000002 +2008,2,25,7,30,12.600000000000001,0.8200000000000001,0.167,0.64,90,518,234,0,8.3,90,518,0,234,73.84,0.14,1.3,75.27,1016,159,2.2 +2008,2,25,8,30,14.200000000000001,0.87,0.167,0.64,114,673,402,1,8.9,114,673,0,402,64.72,0.14,1.3,70.29,1017,179,2.4000000000000004 +2008,2,25,9,30,15.4,0.9400000000000001,0.157,0.64,124,766,537,3,8.9,94,0,0,94,57.35,0.14,1.3,65.27,1016,189,2.5 +2008,2,25,10,30,16.1,0.98,0.158,0.64,131,801,618,3,8.700000000000001,181,0,0,181,52.56,0.14,1.4000000000000001,61.64,1016,196,2.6 +2008,2,25,11,30,16.400000000000002,1,0.159,0.64,133,811,642,8,8.5,226,15,7,235,51.120000000000005,0.14,1.4000000000000001,59.52,1015,202,2.6 +2008,2,25,12,30,16.400000000000002,1.34,0.097,0.64,102,863,618,8,8.3,294,199,0,412,53.31,0.14,1.4000000000000001,58.870000000000005,1015,206,2.6 +2008,2,25,13,30,15.9,1.36,0.097,0.64,96,824,524,1,8.200000000000001,96,824,0,524,58.71,0.14,1.4000000000000001,60.4,1014,208,2.4000000000000004 +2008,2,25,14,30,14.8,1.34,0.097,0.64,84,745,381,7,8.1,200,185,0,273,66.5,0.14,1.4000000000000001,64.36,1014,211,2 +2008,2,25,15,30,12.9,1.21,0.106,0.64,67,574,207,7,8.6,111,22,0,116,75.88,0.14,1.3,75.32000000000001,1014,218,1.4000000000000001 +2008,2,25,16,30,11.3,1.22,0.10400000000000001,0.64,27,218,41,7,9.200000000000001,15,0,7,15,86.15,0.14,1.3,86.64,1014,226,1 +2008,2,25,17,30,10.8,1.21,0.105,0.64,0,0,0,0,8.6,0,0,0,0,97.3,0.14,1.3,86.19,1014,227,0.9 +2008,2,25,18,30,10.700000000000001,1.19,0.107,0.64,0,0,0,4,8.5,0,0,0,0,108.44,0.14,1.3,86.28,1014,222,0.7000000000000001 +2008,2,25,19,30,10.600000000000001,1.18,0.109,0.64,0,0,0,3,8.5,0,0,0,0,119.42,0.14,1.4000000000000001,87.07000000000001,1014,209,0.4 +2008,2,25,20,30,10.600000000000001,1.19,0.112,0.64,0,0,0,8,8.5,0,0,0,0,129.79,0.14,1.4000000000000001,87.08,1014,195,0.2 +2008,2,25,21,30,10.5,1.18,0.11800000000000001,0.64,0,0,0,8,8.5,0,0,0,0,138.78,0.14,1.4000000000000001,87.5,1014,260,0.1 +2008,2,25,22,30,10.5,1.16,0.126,0.64,0,0,0,4,8.5,0,0,0,0,145.12,0.14,1.4000000000000001,87.35000000000001,1014,173,0.1 +2008,2,25,23,30,10.4,1.12,0.134,0.64,0,0,0,7,8.5,0,0,0,0,147.12,0.14,1.4000000000000001,87.72,1013,59,0.1 +2008,2,26,0,30,10.3,1.09,0.148,0.64,0,0,0,8,8.4,0,0,0,0,144.01,0.14,1.4000000000000001,88.22,1013,123,0.2 +2008,2,26,1,30,10.200000000000001,1.05,0.161,0.64,0,0,0,4,8.4,0,0,0,0,136.92000000000002,0.14,1.4000000000000001,88.69,1012,149,0.4 +2008,2,26,2,30,9.9,0.98,0.168,0.64,0,0,0,8,8.4,0,0,0,0,127.52,0.14,1.5,90.51,1012,151,0.6000000000000001 +2008,2,26,3,30,9.600000000000001,0.92,0.179,0.64,0,0,0,5,8.4,0,0,0,0,116.96000000000001,0.14,1.5,92.4,1012,149,0.8 +2008,2,26,4,30,9.3,0.88,0.183,0.64,0,0,0,5,8.4,0,0,0,0,105.89,0.14,1.5,94.33,1012,150,0.9 +2008,2,26,5,30,9.600000000000001,0.86,0.177,0.64,0,0,0,4,8.4,0,0,0,0,94.74,0.14,1.4000000000000001,92.44,1012,152,1.1 +2008,2,26,6,30,10.700000000000001,0.84,0.187,0.64,46,198,67,3,8.8,24,0,7,24,83.71000000000001,0.14,1.4000000000000001,87.84,1012,156,1.6 +2008,2,26,7,30,11.9,0.79,0.196,0.64,97,482,233,0,8.9,97,482,0,233,73.53,0.14,1.5,81.96000000000001,1012,163,2.1 +2008,2,26,8,30,13,0.71,0.192,0.64,124,634,398,0,8.9,124,634,0,398,64.39,0.14,1.6,76.26,1012,174,2.2 +2008,2,26,9,30,14.100000000000001,0.56,0.23600000000000002,0.64,159,665,521,0,8.6,159,665,0,521,57,0.14,1.6,69.67,1012,186,2.3000000000000003 +2008,2,26,10,30,14.700000000000001,0.53,0.232,0.64,167,708,602,0,8.5,167,708,0,602,52.19,0.14,1.7000000000000002,66.3,1012,199,2.4000000000000004 +2008,2,26,11,30,15,0.51,0.217,0.64,164,732,628,3,8.5,375,75,0,422,50.75,0.14,1.7000000000000002,65.08,1011,209,2.4000000000000004 +2008,2,26,12,30,15.100000000000001,0.43,0.262,0.64,180,669,583,3,8.5,309,14,0,317,52.96,0.14,1.7000000000000002,64.79,1011,217,2.4000000000000004 +2008,2,26,13,30,14.8,0.42,0.243,0.64,161,634,493,3,8.5,90,0,0,90,58.4,0.14,1.7000000000000002,65.8,1010,223,2.4000000000000004 +2008,2,26,14,30,14.100000000000001,0.41000000000000003,0.226,0.64,135,550,356,3,8.3,15,0,0,15,66.23,0.14,1.7000000000000002,68.23,1010,227,2.2 +2008,2,26,15,30,12.600000000000001,0.42,0.28800000000000003,0.64,109,304,184,3,8.4,8,0,0,8,75.64,0.14,1.6,75.66,1010,231,1.7000000000000002 +2008,2,26,16,30,10.8,0.44,0.279,0.64,30,35,33,0,9.1,30,35,0,33,85.93,0.14,1.6,89.22,1010,236,1.2000000000000002 +2008,2,26,17,30,10,0.44,0.274,0.64,0,0,0,0,8.8,0,0,0,0,97.08,0.14,1.6,92.24,1010,242,1.1 +2008,2,26,18,30,10,0.43,0.278,0.64,0,0,0,0,9,0,0,0,0,108.22,0.14,1.6,93.4,1010,250,1 +2008,2,26,19,30,10.100000000000001,0.42,0.281,0.64,0,0,0,0,9.1,0,0,0,0,119.2,0.14,1.6,93.51,1010,262,0.8 +2008,2,26,20,30,10.200000000000001,0.42,0.274,0.64,0,0,0,0,9.200000000000001,0,0,0,0,129.54,0.14,1.6,93.23,1010,275,0.6000000000000001 +2008,2,26,21,30,10.200000000000001,0.43,0.278,0.64,0,0,0,0,9.1,0,0,0,0,138.49,0.14,1.7000000000000002,93.19,1010,237,0.30000000000000004 +2008,2,26,22,30,10,0.44,0.277,0.64,0,0,0,0,9.1,0,0,0,0,144.78,0.14,1.8,93.89,1010,168,0.30000000000000004 +2008,2,26,23,30,9.600000000000001,0.43,0.257,0.64,0,0,0,0,8.9,0,0,0,0,146.74,0.14,1.9000000000000001,95.48,1010,147,0.6000000000000001 +2008,2,27,0,30,9.200000000000001,0.46,0.251,0.64,0,0,0,1,8.700000000000001,0,0,0,0,143.65,0.14,1.9000000000000001,97,1010,156,0.9 +2008,2,27,1,30,9,0.48,0.244,0.64,0,0,0,4,8.6,0,0,0,0,136.59,0.14,1.9000000000000001,97.21000000000001,1009,163,1 +2008,2,27,2,30,8.9,0.47000000000000003,0.228,0.64,0,0,0,4,8.5,0,0,0,0,127.22,0.14,2,97.35000000000001,1009,166,1.1 +2008,2,27,3,30,9,0.51,0.23700000000000002,0.64,0,0,0,4,8.5,0,0,0,0,116.67,0.14,2,96.7,1009,165,1.2000000000000002 +2008,2,27,4,30,9.200000000000001,0.55,0.243,0.64,0,0,0,4,8.6,0,0,0,0,105.61,0.14,2,95.87,1009,164,1.3 +2008,2,27,5,30,9.700000000000001,0.56,0.24,0.64,0,0,0,4,8.700000000000001,0,0,0,0,94.46000000000001,0.14,2,93.51,1009,164,1.6 +2008,2,27,6,30,10.700000000000001,0.55,0.28600000000000003,0.64,51,101,63,5,9.200000000000001,3,0,7,3,83.43,0.14,2,90.34,1010,167,2.1 +2008,2,27,7,30,11.600000000000001,0.5700000000000001,0.28800000000000003,0.64,118,366,224,8,9.700000000000001,4,0,0,4,73.23,0.14,2,87.96000000000001,1010,174,2.6 +2008,2,27,8,30,12.200000000000001,0.56,0.268,0.64,150,541,386,7,10.100000000000001,22,0,0,22,64.06,0.14,2.1,86.92,1010,185,2.7 +2008,2,27,9,30,12.700000000000001,0.58,0.273,0.64,171,625,515,3,10.5,24,0,0,24,56.64,0.14,2.1,86.21000000000001,1010,198,2.6 +2008,2,27,10,30,13.100000000000001,0.59,0.26,0.64,177,680,597,4,10.600000000000001,134,0,0,134,51.82,0.14,2.1,84.91,1009,208,2.7 +2008,2,27,11,30,13.4,0.58,0.23800000000000002,0.64,171,710,624,4,10.700000000000001,82,0,0,82,50.370000000000005,0.14,2.1,83.94,1009,214,2.7 +2008,2,27,12,30,13.700000000000001,0.55,0.293,0.64,189,646,581,4,10.8,53,0,0,53,52.61,0.14,2,82.4,1008,216,2.6 +2008,2,27,13,30,13.9,0.58,0.271,0.64,167,614,492,4,10.600000000000001,121,0,0,121,58.08,0.14,2,80.51,1008,214,2.4000000000000004 +2008,2,27,14,30,13.600000000000001,0.5700000000000001,0.23,0.64,133,556,360,4,10.4,40,0,0,40,65.95,0.14,1.9000000000000001,80.79,1008,212,2 +2008,2,27,15,30,12.700000000000001,0.62,0.225,0.64,96,386,194,4,10.600000000000001,7,0,0,7,75.39,0.14,1.9000000000000001,86.85000000000001,1008,212,1.4000000000000001 +2008,2,27,16,30,11.8,0.64,0.214,0.64,32,81,38,3,10.700000000000001,7,0,7,7,85.71000000000001,0.14,1.9000000000000001,92.93,1008,211,1.1 +2008,2,27,17,30,11.4,0.64,0.197,0.64,0,0,0,4,10.5,0,0,0,0,96.87,0.14,1.9000000000000001,94.46000000000001,1009,207,1 +2008,2,27,18,30,11.100000000000001,0.68,0.191,0.64,0,0,0,3,10.600000000000001,0,0,0,0,108.01,0.14,1.9000000000000001,96.5,1009,203,1 +2008,2,27,19,30,10.8,0.71,0.176,0.64,0,0,0,3,10.600000000000001,0,0,0,0,118.97,0.14,1.9000000000000001,98.46000000000001,1009,198,1 +2008,2,27,20,30,10.600000000000001,0.72,0.165,0.64,0,0,0,4,10.5,0,0,0,0,129.28,0.14,1.9000000000000001,99.43,1010,188,1 +2008,2,27,21,30,10.4,0.76,0.171,0.64,0,0,0,4,10.4,0,0,0,0,138.19,0.14,2,100,1010,170,1 +2008,2,27,22,30,10.200000000000001,0.8,0.17300000000000001,0.64,0,0,0,4,10.200000000000001,0,0,0,0,144.43,0.14,2,100,1010,153,1 +2008,2,27,23,30,10,0.81,0.17300000000000001,0.64,0,0,0,4,10,0,0,0,0,146.37,0.14,2,100,1009,141,1.1 +2008,2,28,0,30,9.8,0.84,0.178,0.64,0,0,0,4,9.8,0,0,0,0,143.28,0.15,2,100,1009,132,1.1 +2008,2,28,1,30,9.700000000000001,0.86,0.182,0.64,0,0,0,4,9.700000000000001,0,0,0,0,136.26,0.15,2.1,100,1009,124,1.1 +2008,2,28,2,30,9.5,0.87,0.183,0.64,0,0,0,4,9.5,0,0,0,0,126.92,0.15,2.1,100,1010,119,1.1 +2008,2,28,3,30,9.3,0.9,0.19,0.64,0,0,0,4,9.3,0,0,0,0,116.39,0.15,2.1,99.7,1010,115,1.2000000000000002 +2008,2,28,4,30,9.3,0.92,0.196,0.64,0,0,0,7,8.9,0,0,0,0,105.33,0.15,2.1,97.22,1010,112,1.3 +2008,2,28,5,30,9.8,0.92,0.194,0.64,0,0,0,7,8.5,0,0,0,0,94.17,0.15,2.2,91.65,1011,112,1.3 +2008,2,28,6,30,11.100000000000001,0.93,0.193,0.64,48,209,73,5,8.8,4,0,7,4,83.14,0.15,2.2,85.82000000000001,1011,114,1.7000000000000002 +2008,2,28,7,30,12.8,0.9400000000000001,0.188,0.64,95,497,241,4,8.8,10,0,0,10,72.92,0.15,2.2,76.46000000000001,1011,126,2 +2008,2,28,8,30,14.5,0.9500000000000001,0.177,0.64,117,654,406,4,9.600000000000001,40,0,0,40,63.730000000000004,0.15,2.2,72.49,1011,150,1.7000000000000002 +2008,2,28,9,30,15.700000000000001,0.87,0.218,0.64,148,689,530,4,9.8,236,2,0,237,56.29,0.15,2.2,67.89,1011,169,1.7000000000000002 +2008,2,28,10,30,16.3,0.89,0.209,0.64,153,738,613,3,9.5,348,62,0,386,51.44,0.15,2.2,64.13,1011,182,1.9000000000000001 +2008,2,28,11,30,16.3,0.89,0.2,0.64,151,756,637,3,9.200000000000001,305,19,0,317,50,0.15,2.2,63.02,1011,194,2.1 +2008,2,28,12,30,15.9,0.87,0.271,0.64,175,679,591,4,9.1,262,1,0,262,52.26,0.15,2.2,63.870000000000005,1011,203,2.3000000000000003 +2008,2,28,13,30,15.3,0.89,0.278,0.64,164,622,496,5,9.1,156,0,0,156,57.77,0.15,2.3000000000000003,66.44,1011,210,2.2 +2008,2,28,14,30,14.700000000000001,0.9,0.261,0.64,137,542,360,4,9.200000000000001,57,0,0,57,65.67,0.15,2.3000000000000003,69.72,1011,216,2 +2008,2,28,15,30,13.4,0.92,0.234,0.64,95,399,197,4,9.600000000000001,8,0,0,8,75.15,0.15,2.2,77.58,1012,222,1.4000000000000001 +2008,2,28,16,30,11.9,0.9500000000000001,0.227,0.64,33,101,41,4,10.200000000000001,4,0,7,4,85.49,0.15,2.2,89.59,1012,227,1 +2008,2,28,17,30,11.3,0.96,0.221,0.64,0,0,0,4,10,0,0,0,0,96.65,0.15,2.2,91.55,1012,227,0.9 +2008,2,28,18,30,11.3,0.97,0.224,0.64,0,0,0,0,10.200000000000001,0,0,0,0,107.79,0.15,2.2,92.92,1013,219,0.7000000000000001 +2008,2,28,19,30,11.200000000000001,0.96,0.22,0.64,0,0,0,0,10.4,0,0,0,0,118.74000000000001,0.15,2.2,94.51,1013,198,0.5 +2008,2,28,20,30,11.100000000000001,0.9500000000000001,0.21,0.64,0,0,0,0,10.4,0,0,0,0,129.03,0.15,2.2,95.68,1013,172,0.5 +2008,2,28,21,30,10.9,0.93,0.20600000000000002,0.64,0,0,0,0,10.4,0,0,0,0,137.89000000000001,0.15,2.2,96.91,1013,150,0.5 +2008,2,28,22,30,10.600000000000001,0.92,0.198,0.64,0,0,0,0,10.3,0,0,0,0,144.08,0.15,2.2,98.3,1013,135,0.6000000000000001 +2008,2,28,23,30,10.3,0.9,0.185,0.64,0,0,0,0,10.200000000000001,0,0,0,0,145.99,0.15,2.1,99.53,1013,126,0.7000000000000001 +2008,3,1,0,30,9.8,1.01,0.223,0.62,0,0,0,3,9.8,0,0,0,0,142.54,0.15,1.9000000000000001,100,1009,215,1.2000000000000002 +2008,3,1,1,30,9.9,1.01,0.242,0.62,0,0,0,3,9.9,0,0,0,0,135.58,0.15,1.9000000000000001,100,1008,221,1.2000000000000002 +2008,3,1,2,30,10,1,0.242,0.62,0,0,0,3,10,0,0,0,0,126.3,0.15,1.9000000000000001,99.84,1008,218,1.3 +2008,3,1,3,30,10.100000000000001,1.01,0.253,0.62,0,0,0,4,10,0,0,0,0,115.8,0.15,1.9000000000000001,99.49000000000001,1007,213,1.6 +2008,3,1,4,30,10.3,1,0.24,0.62,0,0,0,7,10,0,0,0,0,104.76,0.15,1.8,98.13,1007,215,2.1 +2008,3,1,5,30,11,0.97,0.202,0.62,0,0,0,7,10,0,0,0,0,93.60000000000001,0.15,1.8,93.77,1006,218,2.8000000000000003 +2008,3,1,6,30,11.9,0.99,0.196,0.62,52,238,83,7,10.4,6,0,7,6,82.55,0.15,1.8,90.45,1006,217,3.6 +2008,3,1,7,30,12.700000000000001,0.98,0.177,0.62,94,529,255,4,10.700000000000001,10,0,0,10,72.29,0.15,1.9000000000000001,87.48,1006,217,4.4 +2008,3,1,8,30,13.600000000000001,0.9400000000000001,0.153,0.62,110,691,424,8,10.8,7,0,0,7,63.050000000000004,0.15,2,82.92,1005,220,5.2 +2008,3,1,9,30,14.3,0.65,0.248,0.62,164,662,538,7,11,11,0,0,11,55.56,0.15,2,80.32000000000001,1004,225,5.800000000000001 +2008,3,1,10,30,14.600000000000001,0.63,0.211,0.62,159,735,625,6,11,26,0,0,26,50.68,0.15,2,79.19,1004,230,6.2 +2008,3,1,11,30,14.4,0.66,0.169,0.62,143,785,656,6,10.8,32,0,0,32,49.24,0.15,2,78.76,1002,233,6.300000000000001 +2008,3,1,12,30,14.100000000000001,0.71,0.17200000000000001,0.62,140,766,616,6,10.8,50,0,0,50,51.56,0.15,2.1,80.39,1001,234,6.300000000000001 +2008,3,1,13,30,14,0.74,0.177,0.62,133,717,522,9,10.9,29,0,0,29,57.14,0.15,2.1,81.46000000000001,1001,236,6.1000000000000005 +2008,3,1,14,30,13.9,0.74,0.182,0.62,118,624,380,9,10.8,11,0,0,11,65.12,0.15,2.1,81.83,1000,240,5.5 +2008,3,1,15,30,13.100000000000001,0.74,0.177,0.62,88,465,211,6,10.9,13,0,0,13,74.66,0.15,2,86.69,1000,242,4.1000000000000005 +2008,3,1,16,30,11.9,0.6900000000000001,0.161,0.62,36,154,50,9,11,5,0,7,5,85.05,0.15,1.7000000000000002,94.47,1000,240,2.8000000000000003 +2008,3,1,17,30,11,0.65,0.159,0.62,0,0,0,9,11,0,0,0,0,96.22,0.15,1.6,100,1000,242,2 +2008,3,1,18,30,10.700000000000001,0.68,0.154,0.62,0,0,0,9,10.700000000000001,0,0,0,0,107.36,0.15,1.5,100,1001,238,1.5 +2008,3,1,19,30,10.5,0.7000000000000001,0.135,0.62,0,0,0,9,10.5,0,0,0,0,118.28,0.15,1.5,100,1001,226,1.2000000000000002 +2008,3,1,20,30,10.200000000000001,0.73,0.12,0.62,0,0,0,6,10.200000000000001,0,0,0,0,128.51,0.15,1.5,100,1001,213,1.1 +2008,3,1,21,30,10.100000000000001,0.74,0.111,0.62,0,0,0,7,10.100000000000001,0,0,0,0,137.3,0.15,1.6,100,1001,199,1 +2008,3,1,22,30,10.100000000000001,0.74,0.106,0.62,0,0,0,0,10.100000000000001,0,0,0,0,143.38,0.15,1.6,100,1001,174,0.9 +2008,3,1,23,30,9.8,0.75,0.10400000000000001,0.62,0,0,0,0,9.8,0,0,0,0,145.22,0.15,1.7000000000000002,100,1001,141,1 +2008,3,2,0,30,9.200000000000001,0.77,0.10400000000000001,0.62,0,0,0,0,9.200000000000001,0,0,0,0,142.17000000000002,0.15,1.6,100,1001,119,1.2000000000000002 +2008,3,2,1,30,8.5,0.8,0.1,0.62,0,0,0,0,8.5,0,0,0,0,135.24,0.15,1.6,100,1001,108,1.4000000000000001 +2008,3,2,2,30,8,0.8200000000000001,0.095,0.62,0,0,0,0,8,0,0,0,0,125.98,0.15,1.5,100,1001,102,1.5 +2008,3,2,3,30,8,0.86,0.089,0.62,0,0,0,0,8,0,0,0,0,115.5,0.15,1.4000000000000001,100,1001,103,1.5 +2008,3,2,4,30,8.4,0.89,0.083,0.62,0,0,0,0,8.3,0,0,0,0,104.47,0.15,1.3,99.29,1002,109,1.4000000000000001 +2008,3,2,5,30,9.5,0.9,0.08,0.62,0,0,0,0,8,0,0,0,0,93.31,0.15,1.2000000000000002,90.55,1002,115,1.2000000000000002 +2008,3,2,6,30,11.8,0.74,0.1,0.62,46,371,96,0,8.700000000000001,46,371,0,96,82.26,0.15,1.2000000000000002,81.08,1003,123,0.9 +2008,3,2,7,30,14.3,0.78,0.095,0.62,75,656,278,0,9.3,75,656,0,278,71.97,0.15,1.2000000000000002,72.04,1004,178,0.7000000000000001 +2008,3,2,8,30,16.2,0.8300000000000001,0.088,0.62,89,793,453,0,9.8,89,793,0,453,62.71,0.15,1.2000000000000002,65.89,1004,228,0.7000000000000001 +2008,3,2,9,30,17.5,0.75,0.101,0.62,106,840,585,0,10.100000000000001,106,840,0,585,55.19,0.15,1.2000000000000002,61.63,1004,225,1.2000000000000002 +2008,3,2,10,30,18.3,0.79,0.098,0.62,109,873,667,0,10.3,109,873,0,667,50.300000000000004,0.15,1.3,59.57,1004,225,1.7000000000000002 +2008,3,2,11,30,18.7,0.8300000000000001,0.097,0.62,109,883,690,0,10.4,109,883,0,690,48.86,0.15,1.3,58.58,1004,230,2.2 +2008,3,2,12,30,18.6,0.89,0.093,0.62,105,875,653,0,10.4,105,875,0,653,51.2,0.15,1.3,58.81,1004,233,2.6 +2008,3,2,13,30,18,0.91,0.095,0.62,99,835,556,0,10.3,99,835,0,556,56.83,0.15,1.3,60.67,1004,231,2.7 +2008,3,2,14,30,17.1,0.92,0.096,0.62,88,758,410,8,10.200000000000001,207,251,0,314,64.85,0.15,1.3,63.83,1004,225,2.6 +2008,3,2,15,30,15.100000000000001,0.87,0.099,0.62,70,603,232,8,10.200000000000001,126,249,7,193,74.41,0.15,1.3,72.62,1004,217,1.9000000000000001 +2008,3,2,16,30,12.700000000000001,0.88,0.097,0.62,33,272,58,8,10.9,26,1,7,26,84.83,0.15,1.3,88.9,1004,207,1.4000000000000001 +2008,3,2,17,30,11.600000000000001,0.88,0.10300000000000001,0.62,0,0,0,8,10.700000000000001,0,0,0,0,96,0.15,1.4000000000000001,94.26,1004,196,1.3 +2008,3,2,18,30,11.200000000000001,0.87,0.108,0.62,0,0,0,8,11.100000000000001,0,0,0,0,107.14,0.15,1.4000000000000001,99.65,1004,183,1.3 +2008,3,2,19,30,10.700000000000001,0.87,0.105,0.62,0,0,0,7,10.700000000000001,0,0,0,0,118.05,0.15,1.4000000000000001,100,1005,173,1.3 +2008,3,2,20,30,10.3,0.9,0.095,0.62,0,0,0,8,10.3,0,0,0,0,128.26,0.15,1.5,100,1005,166,1.3 +2008,3,2,21,30,10,0.93,0.093,0.62,0,0,0,3,10,0,0,0,0,136.99,0.15,1.5,100,1005,160,1.4000000000000001 +2008,3,2,22,30,9.700000000000001,0.9400000000000001,0.094,0.62,0,0,0,0,9.700000000000001,0,0,0,0,143.03,0.15,1.5,100,1005,154,1.4000000000000001 +2008,3,2,23,30,9.4,0.9400000000000001,0.096,0.62,0,0,0,8,9.4,0,0,0,0,144.84,0.15,1.5,100,1005,149,1.5 +2008,3,3,0,30,9.1,0.9500000000000001,0.096,0.62,0,0,0,8,9.1,0,0,0,0,141.79,0.15,1.5,100,1004,144,1.6 +2008,3,3,1,30,8.8,0.9500000000000001,0.096,0.62,0,0,0,8,8.8,0,0,0,0,134.89000000000001,0.15,1.5,100,1004,140,1.7000000000000002 +2008,3,3,2,30,8.6,0.9400000000000001,0.095,0.62,0,0,0,1,8.6,0,0,0,0,125.66,0.15,1.4000000000000001,100,1004,138,1.7000000000000002 +2008,3,3,3,30,8.5,0.9500000000000001,0.095,0.62,0,0,0,4,8.5,0,0,0,0,115.2,0.15,1.4000000000000001,100,1004,140,1.8 +2008,3,3,4,30,8.700000000000001,0.9500000000000001,0.093,0.62,0,0,0,0,8.700000000000001,0,0,0,0,104.18,0.15,1.3,100,1004,143,1.9000000000000001 +2008,3,3,5,30,9.9,0.93,0.095,0.62,0,0,0,3,9.4,0,0,0,0,93.01,0.15,1.3,96.48,1004,144,2.4000000000000004 +2008,3,3,6,30,11.9,0.73,0.129,0.62,51,334,98,0,9.700000000000001,51,334,0,98,81.96000000000001,0.15,1.2000000000000002,86.33,1004,148,3.3000000000000003 +2008,3,3,7,30,13.4,0.77,0.128,0.62,86,612,279,0,10.200000000000001,86,612,0,279,71.65,0.15,1.2000000000000002,80.96000000000001,1005,159,3.8000000000000003 +2008,3,3,8,30,14.700000000000001,0.8,0.116,0.62,101,759,453,3,10.5,141,0,7,141,62.370000000000005,0.15,1.2000000000000002,75.97,1005,168,3.8000000000000003 +2008,3,3,9,30,15.9,0.87,0.109,0.62,108,833,588,3,10.600000000000001,160,0,0,160,54.82,0.15,1.3,70.77,1005,176,3.8000000000000003 +2008,3,3,10,30,16.7,0.9,0.10300000000000001,0.62,111,872,672,3,10.5,282,4,0,285,49.910000000000004,0.15,1.3,66.98,1004,184,3.7 +2008,3,3,11,30,17.1,0.92,0.098,0.62,110,885,696,1,10.600000000000001,110,885,0,696,48.480000000000004,0.15,1.3,65.46000000000001,1004,191,3.8000000000000003 +2008,3,3,12,30,17,0.98,0.08700000000000001,0.62,102,885,660,0,10.5,102,885,0,660,50.85,0.15,1.3,65.41,1003,195,3.9000000000000004 +2008,3,3,13,30,16.6,1,0.082,0.62,93,854,564,0,10.3,93,854,0,564,56.52,0.15,1.3,66.52,1003,195,3.9000000000000004 +2008,3,3,14,30,15.8,1.02,0.078,0.62,81,787,419,0,10.100000000000001,81,787,0,419,64.57000000000001,0.15,1.3,68.9,1003,191,3.8000000000000003 +2008,3,3,15,30,14.200000000000001,0.9400000000000001,0.079,0.62,64,646,241,0,9.9,64,646,0,241,74.17,0.15,1.2000000000000002,75.32000000000001,1002,184,3.1 +2008,3,3,16,30,12.200000000000001,0.98,0.074,0.62,32,333,63,0,10.200000000000001,32,333,0,63,84.61,0.15,1.2000000000000002,87.74,1002,172,2.3000000000000003 +2008,3,3,17,30,11,1.03,0.07100000000000001,0.62,0,0,0,0,10.200000000000001,0,0,0,0,95.79,0.15,1.2000000000000002,94.67,1002,161,2.3000000000000003 +2008,3,3,18,30,10.5,1.07,0.07,0.62,0,0,0,0,10.4,0,0,0,0,106.92,0.15,1.2000000000000002,99.2,1002,152,2.4000000000000004 +2008,3,3,19,30,10.100000000000001,1.07,0.074,0.62,0,0,0,0,10.100000000000001,0,0,0,0,117.82000000000001,0.15,1.2000000000000002,100,1002,148,2.5 +2008,3,3,20,30,9.9,1.04,0.081,0.62,0,0,0,0,9.9,0,0,0,0,128,0.15,1.3,100,1001,147,2.6 +2008,3,3,21,30,9.8,1.01,0.09,0.62,0,0,0,0,9.8,0,0,0,0,136.69,0.15,1.2000000000000002,100,1001,150,2.7 +2008,3,3,22,30,9.700000000000001,0.97,0.096,0.62,0,0,0,0,9.700000000000001,0,0,0,0,142.68,0.15,1.2000000000000002,100,1001,154,2.5 +2008,3,3,23,30,9.8,0.92,0.101,0.62,0,0,0,0,9.8,0,0,0,0,144.45000000000002,0.15,1.2000000000000002,100,1000,161,2.4000000000000004 +2008,3,4,0,30,10,0.85,0.11,0.62,0,0,0,0,10,0,0,0,0,141.41,0.15,1.3,100,1000,168,2.3000000000000003 +2008,3,4,1,30,10.100000000000001,0.79,0.123,0.62,0,0,0,0,10.100000000000001,0,0,0,0,134.54,0.15,1.3,100,999,172,2.2 +2008,3,4,2,30,10.3,0.73,0.136,0.62,0,0,0,0,10.3,0,0,0,0,125.34,0.15,1.4000000000000001,100,999,174,2.4000000000000004 +2008,3,4,3,30,10.5,0.74,0.157,0.62,0,0,0,3,10.4,0,0,0,0,114.9,0.15,1.5,99.34,999,174,2.7 +2008,3,4,4,30,10.700000000000001,0.76,0.16,0.62,0,0,0,3,10.4,0,0,0,0,103.88,0.15,1.5,98.07000000000001,998,177,2.8000000000000003 +2008,3,4,5,30,11.3,0.77,0.152,0.62,0,0,0,3,10.5,0,0,0,0,92.72,0.15,1.5,94.93,998,182,3.1 +2008,3,4,6,30,12.4,0.8300000000000001,0.146,0.62,54,324,101,4,10.700000000000001,4,0,0,4,81.65,0.15,1.4000000000000001,89.3,998,192,3.6 +2008,3,4,7,30,13.4,0.8200000000000001,0.131,0.62,87,617,285,3,10.3,64,0,0,64,71.33,0.15,1.2000000000000002,81.35000000000001,998,202,4 +2008,3,4,8,30,14.3,0.8300000000000001,0.106,0.62,97,780,463,0,9.3,97,780,0,463,62.02,0.15,1.1,72.06,998,211,4 +2008,3,4,9,30,15.200000000000001,0.86,0.089,0.62,100,868,605,0,8.3,100,868,0,605,54.45,0.15,1,63.230000000000004,997,221,3.8000000000000003 +2008,3,4,10,30,16,0.79,0.091,0.62,107,899,690,0,6.9,107,899,0,690,49.52,0.15,0.9,54.85,997,231,3.8000000000000003 +2008,3,4,11,30,16.400000000000002,0.77,0.091,0.62,108,906,713,0,5.9,108,906,0,713,48.1,0.15,0.9,49.78,996,237,3.8000000000000003 +2008,3,4,12,30,16.5,0.8300000000000001,0.084,0.62,102,902,676,0,5,102,902,1,676,50.49,0.15,0.9,46.57,996,239,3.8000000000000003 +2008,3,4,13,30,16,0.78,0.089,0.62,98,854,573,0,4.3,98,854,0,573,56.2,0.15,1,45.87,995,237,3.8000000000000003 +2008,3,4,14,30,15.100000000000001,0.73,0.097,0.62,91,768,424,0,4.3,91,768,0,424,64.3,0.15,1,48.31,995,234,3.7 +2008,3,4,15,30,13.4,0.61,0.11900000000000001,0.62,78,576,238,7,5.2,131,281,7,209,73.92,0.15,1.1,57.58,995,234,3.1 +2008,3,4,16,30,11.700000000000001,0.59,0.122,0.62,38,234,61,8,7.300000000000001,33,1,7,33,84.39,0.15,1.1,74.43,995,236,2.2 +2008,3,4,17,30,10.5,0.58,0.128,0.62,0,0,0,0,8.1,0,0,0,0,95.57000000000001,0.15,1.1,85.04,995,240,1.9000000000000001 +2008,3,4,18,30,9.8,0.5700000000000001,0.132,0.62,0,0,0,3,8,0,0,0,0,106.71000000000001,0.15,1.2000000000000002,88.66,995,242,1.6 +2008,3,4,19,30,9.3,0.59,0.135,0.62,0,0,0,3,7.9,0,0,0,0,117.59,0.15,1.2000000000000002,90.72,995,244,1.5 +2008,3,4,20,30,9.200000000000001,0.6,0.137,0.62,0,0,0,0,7.5,0,0,0,0,127.74000000000001,0.15,1.3,89.35000000000001,995,250,1.4000000000000001 +2008,3,4,21,30,9.200000000000001,0.6,0.145,0.62,0,0,0,5,7.2,0,0,0,0,136.39000000000001,0.15,1.3,87.36,995,256,1.3 +2008,3,4,22,30,9.1,0.59,0.154,0.62,0,0,0,2,7.1000000000000005,0,0,0,0,142.32,0.15,1.3,87.19,995,255,1.3 +2008,3,4,23,30,8.9,0.56,0.162,0.62,0,0,0,0,6.9,0,0,0,0,144.06,0.15,1.3,87.57000000000001,995,249,1.2000000000000002 +2008,3,5,0,30,8.700000000000001,0.56,0.163,0.62,0,0,0,4,6.7,0,0,0,0,141.03,0.15,1.3,87.48,995,240,1.2000000000000002 +2008,3,5,1,30,8.3,0.55,0.16,0.62,0,0,0,4,6.4,0,0,0,0,134.19,0.15,1.4000000000000001,88.01,995,231,1.3 +2008,3,5,2,30,7.9,0.54,0.151,0.62,0,0,0,4,6.2,0,0,0,0,125.01,0.15,1.4000000000000001,88.95,994,222,1.3 +2008,3,5,3,30,7.6000000000000005,0.55,0.146,0.62,0,0,0,4,6,0,0,0,0,114.59,0.15,1.4000000000000001,89.64,994,213,1.3 +2008,3,5,4,30,7.300000000000001,0.5700000000000001,0.14,0.62,0,0,0,4,5.9,0,0,0,0,103.58,0.15,1.4000000000000001,90.59,994,205,1.3 +2008,3,5,5,30,8,0.55,0.14100000000000001,0.62,0,0,0,4,5.9,0,0,0,0,92.42,0.15,1.5,86.34,994,196,1.5 +2008,3,5,6,30,9.200000000000001,0.59,0.159,0.62,58,295,102,4,6.800000000000001,4,0,0,4,81.35000000000001,0.15,1.5,84.67,995,192,2.2 +2008,3,5,7,30,9.600000000000001,0.61,0.147,0.62,93,577,281,7,6.800000000000001,41,0,0,41,71,0.15,1.6,82.81,995,188,2.7 +2008,3,5,8,30,9.600000000000001,0.6,0.134,0.62,109,724,453,7,6.6000000000000005,77,0,0,77,61.68,0.15,1.6,81.69,995,178,2.6 +2008,3,5,9,30,9.700000000000001,0.58,0.099,0.62,106,834,595,6,6.4,142,4,0,145,54.08,0.15,1.5,79.94,995,163,2.3000000000000003 +2008,3,5,10,30,9.9,0.5700000000000001,0.101,0.62,113,863,677,6,6.1000000000000005,136,1,0,137,49.13,0.15,1.5,77.2,994,144,2 +2008,3,5,11,30,10.100000000000001,0.58,0.097,0.62,111,875,700,6,5.800000000000001,162,2,0,163,47.72,0.15,1.5,74.87,994,127,2 +2008,3,5,12,30,10.3,0.66,0.083,0.62,102,879,665,6,5.7,216,9,0,221,50.14,0.15,1.5,73.07000000000001,994,115,1.9000000000000001 +2008,3,5,13,30,10.4,0.77,0.088,0.62,97,838,567,7,5.7,74,0,0,74,55.89,0.15,1.5,72.54,994,101,1.8 +2008,3,5,14,30,10.3,0.84,0.09,0.62,86,767,422,6,5.9,106,2,0,107,64.02,0.15,1.4000000000000001,74.41,994,77,1.4000000000000001 +2008,3,5,15,30,9.600000000000001,0.89,0.092,0.62,68,623,244,6,6.800000000000001,18,0,0,18,73.68,0.15,1.4000000000000001,82.85000000000001,993,55,1.3 +2008,3,5,16,30,8.700000000000001,0.91,0.095,0.62,35,304,66,6,6.4,5,0,7,5,84.17,0.15,1.4000000000000001,85.23,994,41,1.5 +2008,3,5,17,30,8.1,0.88,0.11,0.62,0,0,0,9,5.4,0,0,0,0,95.35000000000001,0.15,1.5,83,994,34,1.9000000000000001 +2008,3,5,18,30,7.5,0.87,0.105,0.62,0,0,0,9,5,0,0,0,0,106.49000000000001,0.15,1.5,84.19,994,33,3 +2008,3,5,19,30,6.800000000000001,0.93,0.091,0.62,0,0,0,9,4.1000000000000005,0,0,0,0,117.36,0.15,1.5,83.10000000000001,994,34,4.1000000000000005 +2008,3,5,20,30,6.4,0.97,0.089,0.62,0,0,0,9,3.4000000000000004,0,0,0,0,127.47,0.15,1.5,80.95,994,36,4.3 +2008,3,5,21,30,6.4,0.97,0.10400000000000001,0.62,0,0,0,6,2.9000000000000004,0,0,0,0,136.08,0.15,1.5,78.58,994,39,4.4 +2008,3,5,22,30,6.300000000000001,0.99,0.122,0.62,0,0,0,8,2.7,0,0,0,0,141.96,0.15,1.5,77.56,994,45,5.1000000000000005 +2008,3,5,23,30,6.2,0.97,0.117,0.62,0,0,0,7,2,0,0,0,0,143.67000000000002,0.15,1.5,74.57000000000001,994,51,5.7 +2008,3,6,0,30,6.1000000000000005,0.9500000000000001,0.117,0.62,0,0,0,4,1.6,0,0,0,0,140.65,0.13,1.4000000000000001,72.81,993,53,5.4 +2008,3,6,1,30,6.1000000000000005,0.9500000000000001,0.117,0.62,0,0,0,4,1.4000000000000001,0,0,0,0,133.83,0.13,1.4000000000000001,71.71000000000001,993,53,4.7 +2008,3,6,2,30,6.1000000000000005,0.93,0.11900000000000001,0.62,0,0,0,7,1.4000000000000001,0,0,0,0,124.69,0.13,1.3,71.86,993,53,4 +2008,3,6,3,30,5.9,0.91,0.125,0.62,0,0,0,8,1.6,0,0,0,0,114.28,0.13,1.3,73.7,993,54,3.8000000000000003 +2008,3,6,4,30,5.9,0.92,0.135,0.62,0,0,0,8,1.6,0,0,0,0,103.28,0.13,1.3,73.95,993,56,4.1000000000000005 +2008,3,6,5,30,6.2,0.91,0.14100000000000001,0.62,0,0,0,4,1.6,0,0,0,0,92.12,0.13,1.3,72.56,993,59,4.4 +2008,3,6,6,30,7.1000000000000005,0.91,0.166,0.62,58,325,108,7,1.7000000000000002,3,0,0,3,81.04,0.13,1.3,68.60000000000001,993,63,4.4 +2008,3,6,7,30,8.5,0.9400000000000001,0.199,0.62,104,542,284,5,1.9000000000000001,11,0,0,11,70.68,0.13,1.4000000000000001,63.42,994,70,4.2 +2008,3,6,8,30,10.200000000000001,0.9500000000000001,0.217,0.62,135,658,450,5,2.5,19,0,0,19,61.33,0.13,1.4000000000000001,58.65,994,85,3.7 +2008,3,6,9,30,11.600000000000001,0.98,0.2,0.62,143,748,586,4,3.7,97,0,0,97,53.71,0.13,1.4000000000000001,58.4,994,109,3.3000000000000003 +2008,3,6,10,30,12.600000000000001,0.97,0.20500000000000002,0.62,153,776,665,4,5.300000000000001,323,24,0,339,48.74,0.13,1.5,60.97,994,131,3.3000000000000003 +2008,3,6,11,30,13.100000000000001,0.9400000000000001,0.216,0.62,160,774,685,8,6,231,9,0,238,47.33,0.13,1.5,62.26,994,146,3.4000000000000004 +2008,3,6,12,30,13.3,1,0.185,0.62,143,787,651,4,6.300000000000001,110,0,0,110,49.78,0.13,1.5,62.58,994,156,3.4000000000000004 +2008,3,6,13,30,13.100000000000001,0.97,0.192,0.62,137,736,553,4,6.4,135,0,0,135,55.58,0.13,1.5,63.64,994,164,3.1 +2008,3,6,14,30,12.5,0.92,0.20600000000000002,0.62,125,633,405,7,6.5,81,1,0,81,63.75,0.13,1.6,66.61,994,170,2.6 +2008,3,6,15,30,11.4,0.92,0.295,0.62,113,388,223,8,7,7,0,0,7,73.44,0.13,1.6,74.59,994,172,1.7000000000000002 +2008,3,6,16,30,10.100000000000001,0.91,0.35000000000000003,0.62,46,89,55,5,8,6,0,7,6,83.95,0.13,1.6,86.53,995,175,1.1 +2008,3,6,17,30,9.5,0.9,0.352,0.62,0,0,0,8,7.5,0,0,0,0,95.14,0.13,1.6,87.43,995,178,0.9 +2008,3,6,18,30,9.200000000000001,0.92,0.418,0.62,0,0,0,6,7.2,0,0,0,0,106.27,0.13,1.6,87.5,995,171,0.8 +2008,3,6,19,30,8.8,0.9400000000000001,0.44,0.62,0,0,0,6,7,0,0,0,0,117.12,0.13,1.6,88.73,995,158,1 +2008,3,6,20,30,8.4,0.86,0.451,0.62,0,0,0,6,6.800000000000001,0,0,0,0,127.21000000000001,0.13,1.6,89.97,995,156,1.2000000000000002 +2008,3,6,21,30,8,0.76,0.447,0.62,0,0,0,6,6.800000000000001,0,0,0,0,135.77,0.13,1.6,91.88,995,160,1.2000000000000002 +2008,3,6,22,30,7.800000000000001,0.7000000000000001,0.452,0.62,0,0,0,9,6.6000000000000005,0,0,0,0,141.6,0.13,1.6,92.17,995,160,1.2000000000000002 +2008,3,6,23,30,7.6000000000000005,0.64,0.421,0.62,0,0,0,6,6.5,0,0,0,0,143.28,0.13,1.6,92.74,995,156,1.2000000000000002 +2008,3,7,0,30,7.5,0.62,0.41100000000000003,0.62,0,0,0,6,6.300000000000001,0,0,0,0,140.26,0.13,1.6,92.38,994,155,1.2000000000000002 +2008,3,7,1,30,7.5,0.63,0.397,0.62,0,0,0,9,6.2,0,0,0,0,133.48,0.13,1.5,91.43,994,150,0.9 +2008,3,7,2,30,7.6000000000000005,0.64,0.376,0.62,0,0,0,9,6,0,0,0,0,124.36,0.13,1.5,89.87,993,130,0.8 +2008,3,7,3,30,7.6000000000000005,0.72,0.39,0.62,0,0,0,9,6,0,0,0,0,113.97,0.13,1.5,89.69,993,118,0.9 +2008,3,7,4,30,7.5,0.8,0.395,0.62,0,0,0,9,6,0,0,0,0,102.98,0.13,1.5,90.4,993,133,0.6000000000000001 +2008,3,7,5,30,7.6000000000000005,0.77,0.403,0.62,0,0,0,9,5.9,0,0,0,0,91.81,0.13,1.6,89,993,133,0.2 +2008,3,7,6,30,7.9,0.8200000000000001,0.435,0.62,75,123,95,9,6.300000000000001,3,0,0,3,80.73,0.13,1.6,89.41,993,142,0.30000000000000004 +2008,3,7,7,30,8,0.91,0.433,0.62,150,344,266,6,6.1000000000000005,6,0,0,6,70.35000000000001,0.13,1.6,87.95,993,174,0.5 +2008,3,7,8,30,8,0.88,0.41200000000000003,0.62,191,493,431,7,5.7,10,0,0,10,60.97,0.13,1.6,85.63,993,193,0.8 +2008,3,7,9,30,8.200000000000001,0.8200000000000001,0.654,0.62,281,431,538,7,5.5,12,0,0,12,53.33,0.13,1.6,82.81,993,205,1.4000000000000001 +2008,3,7,10,30,8.3,0.92,0.658,0.62,299,482,620,7,5.1000000000000005,40,0,0,40,48.35,0.13,1.5,80.3,994,208,1.8 +2008,3,7,11,30,8.3,0.97,0.646,0.62,299,503,643,7,4.800000000000001,74,0,0,74,46.94,0.13,1.5,78.81,994,203,2.1 +2008,3,7,12,30,8.200000000000001,1.03,0.862,0.62,333,397,591,7,4.6000000000000005,95,0,0,95,49.43,0.13,1.5,78.17,994,193,2.2 +2008,3,7,13,30,8.1,1.11,0.795,0.62,288,381,506,7,4.4,194,5,0,196,55.26,0.13,1.4000000000000001,77.39,994,183,2.2 +2008,3,7,14,30,8,1.1400000000000001,0.718,0.62,226,326,372,7,4.2,102,1,0,103,63.480000000000004,0.13,1.4000000000000001,76.98,994,170,2 +2008,3,7,15,30,7.7,1.11,0.523,0.62,139,265,215,7,4.3,16,0,0,16,73.2,0.13,1.4000000000000001,78.87,995,151,1.5 +2008,3,7,16,30,7.1000000000000005,1.12,0.467,0.62,46,75,54,7,5.1000000000000005,14,0,7,14,83.73,0.13,1.4000000000000001,86.88,995,130,1.1 +2008,3,7,17,30,6.6000000000000005,1.1500000000000001,0.399,0.62,0,0,0,8,4.7,0,0,0,0,94.93,0.13,1.4000000000000001,87.88,995,116,1.2000000000000002 +2008,3,7,18,30,6.4,1.19,0.338,0.62,0,0,0,8,4.6000000000000005,0,0,0,0,106.05,0.13,1.3,88.48,996,108,1.4000000000000001 +2008,3,7,19,30,6.1000000000000005,1.24,0.275,0.62,0,0,0,4,4.5,0,0,0,0,116.89,0.13,1.3,89.33,996,101,1.5 +2008,3,7,20,30,5.800000000000001,1.27,0.233,0.62,0,0,0,0,4.2,0,0,0,0,126.95,0.13,1.3,89.22,996,98,1.6 +2008,3,7,21,30,5.800000000000001,1.29,0.20500000000000002,0.62,0,0,0,0,3.9000000000000004,0,0,0,0,135.46,0.13,1.3,87.32000000000001,996,99,1.6 +2008,3,7,22,30,5.9,1.3,0.182,0.62,0,0,0,0,3.5,0,0,0,0,141.24,0.13,1.2000000000000002,84.69,996,98,1.5 +2008,3,7,23,30,5.800000000000001,1.31,0.161,0.62,0,0,0,4,3.2,0,0,0,0,142.89000000000001,0.13,1.2000000000000002,83.32000000000001,996,91,1.4000000000000001 +2008,3,8,0,30,5.5,1.3,0.146,0.62,0,0,0,4,2.9000000000000004,0,0,0,0,139.87,0.13,1.2000000000000002,83.08,996,82,1.4000000000000001 +2008,3,8,1,30,5.2,1.29,0.135,0.62,0,0,0,4,2.5,0,0,0,0,133.12,0.13,1.1,82.8,996,74,1.4000000000000001 +2008,3,8,2,30,4.9,1.29,0.126,0.62,0,0,0,4,2.2,0,0,0,0,124.02,0.13,1.1,82.5,996,74,1.5 +2008,3,8,3,30,4.5,1.28,0.11800000000000001,0.62,0,0,0,0,1.9000000000000001,0,0,0,0,113.66,0.13,1.1,82.99,996,81,1.5 +2008,3,8,4,30,4.2,1.26,0.111,0.62,0,0,0,0,1.6,0,0,0,0,102.67,0.13,1.1,83.24,996,86,1.6 +2008,3,8,5,30,5.4,1.22,0.107,0.62,0,0,0,1,1.5,0,0,0,0,91.51,0.13,1.1,76.03,997,89,1.7000000000000002 +2008,3,8,6,30,7.9,1.28,0.093,0.62,47,473,126,0,3.5,47,473,0,126,80.42,0.13,1.1,73.66,997,93,2.2 +2008,3,8,7,30,10.3,1.17,0.095,0.62,75,692,311,0,3.9000000000000004,75,692,0,311,70.02,0.13,1.2000000000000002,64.49,998,107,2.8000000000000003 +2008,3,8,8,30,12,1.06,0.099,0.62,93,797,483,0,4.6000000000000005,93,797,0,483,60.620000000000005,0.13,1.2000000000000002,60.370000000000005,998,125,3.1 +2008,3,8,9,30,13,0.91,0.101,0.62,104,848,615,0,5,104,848,0,615,52.95,0.13,1.3,58.49,998,134,3.1 +2008,3,8,10,30,13.5,0.92,0.099,0.62,108,880,697,0,5.5,108,880,0,697,47.96,0.13,1.3,58.44,998,138,3 +2008,3,8,11,30,13.700000000000001,0.9400000000000001,0.091,0.62,105,892,719,0,5.7,105,892,0,719,46.56,0.13,1.4000000000000001,58.27,998,139,2.9000000000000004 +2008,3,8,12,30,13.600000000000001,0.8300000000000001,0.109,0.62,112,859,675,0,5.5,112,859,0,675,49.07,0.13,1.4000000000000001,58.04,997,141,2.7 +2008,3,8,13,30,13.3,0.8,0.117,0.62,109,812,575,2,5.4,218,1,0,219,54.95,0.13,1.4000000000000001,58.58,997,142,2.5 +2008,3,8,14,30,12.9,0.75,0.121,0.62,99,730,428,2,5.300000000000001,166,1,0,167,63.21,0.13,1.4000000000000001,59.86,998,146,2.1 +2008,3,8,15,30,11.600000000000001,0.74,0.13,0.62,80,571,248,7,5.7,5,0,0,5,72.96000000000001,0.13,1.4000000000000001,67.09,998,154,1.5 +2008,3,8,16,30,9.9,0.73,0.14400000000000002,0.62,42,243,70,8,7.2,7,0,7,7,83.52,0.13,1.4000000000000001,83.11,998,161,1.1 +2008,3,8,17,30,8.8,0.71,0.151,0.62,0,0,0,4,6.300000000000001,0,0,0,0,94.71000000000001,0.13,1.4000000000000001,84.52,999,163,1.2000000000000002 +2008,3,8,18,30,8.1,0.72,0.151,0.62,0,0,0,4,6.2,0,0,0,0,105.84,0.13,1.4000000000000001,87.87,1000,159,1.2000000000000002 +2008,3,8,19,30,7.6000000000000005,0.75,0.14300000000000002,0.62,0,0,0,4,6.4,0,0,0,0,116.66,0.13,1.4000000000000001,91.96000000000001,1000,153,1.2000000000000002 +2008,3,8,20,30,7.1000000000000005,0.76,0.133,0.62,0,0,0,4,6.5,0,0,0,0,126.69,0.13,1.4000000000000001,96.06,1000,146,1.3 +2008,3,8,21,30,6.800000000000001,0.76,0.125,0.62,0,0,0,4,6.5,0,0,0,0,135.16,0.13,1.3,98.26,1000,137,1.3 +2008,3,8,22,30,6.6000000000000005,0.76,0.11800000000000001,0.62,0,0,0,4,6.5,0,0,0,0,140.88,0.13,1.3,99.10000000000001,1000,128,1.4000000000000001 +2008,3,8,23,30,6.300000000000001,0.75,0.111,0.62,0,0,0,3,6.300000000000001,0,0,0,0,142.5,0.13,1.3,100,1001,119,1.4000000000000001 +2008,3,9,0,30,6,0.74,0.105,0.62,0,0,0,1,6,0,0,0,0,139.49,0.13,1.3,100,1000,111,1.5 +2008,3,9,1,30,5.7,0.73,0.10200000000000001,0.62,0,0,0,0,5.7,0,0,0,0,132.75,0.13,1.3,99.74000000000001,1000,106,1.5 +2008,3,9,2,30,5.300000000000001,0.7000000000000001,0.10300000000000001,0.62,0,0,0,3,5.300000000000001,0,0,0,0,123.69,0.13,1.2000000000000002,99.97,1000,103,1.6 +2008,3,9,3,30,5,0.67,0.108,0.62,0,0,0,4,5,0,0,0,0,113.34,0.13,1.2000000000000002,99.72,1000,101,1.6 +2008,3,9,4,30,5,0.66,0.114,0.62,0,0,0,3,4.6000000000000005,0,0,0,0,102.36,0.13,1.2000000000000002,97.51,1000,101,1.7000000000000002 +2008,3,9,5,30,6.2,0.63,0.11900000000000001,0.62,0,0,0,0,4.4,0,0,0,0,91.2,0.13,1.2000000000000002,88.18,1001,102,1.8 +2008,3,9,6,30,8.700000000000001,0.62,0.109,0.62,53,420,126,0,5.4,53,420,0,126,80.11,0.13,1.2000000000000002,79.63,1001,110,2.2 +2008,3,9,7,30,11.200000000000001,0.58,0.115,0.62,85,650,310,0,5.9,85,650,0,310,69.69,0.13,1.2000000000000002,70.10000000000001,1002,128,2.7 +2008,3,9,8,30,12.9,0.54,0.116,0.62,103,766,483,0,5.800000000000001,103,766,0,483,60.27,0.13,1.2000000000000002,61.84,1002,147,2.9000000000000004 +2008,3,9,9,30,13.700000000000001,0.54,0.112,0.62,111,830,616,0,5.2,111,830,0,616,52.57,0.13,1.3,56.550000000000004,1002,162,3.1 +2008,3,9,10,30,14.100000000000001,0.55,0.117,0.62,119,856,697,0,5.4,119,856,0,697,47.56,0.13,1.3,55.620000000000005,1002,173,3.3000000000000003 +2008,3,9,11,30,14.100000000000001,0.53,0.121,0.62,123,859,717,4,5.6000000000000005,197,0,0,197,46.17,0.13,1.3,56.5,1001,181,3.5 +2008,3,9,12,30,13.8,0.45,0.159,0.62,139,800,667,4,5.800000000000001,199,0,0,199,48.72,0.13,1.4000000000000001,58.46,1001,185,3.5 +2008,3,9,13,30,13.4,0.4,0.17,0.62,136,743,566,3,6,256,7,0,260,54.64,0.13,1.4000000000000001,60.800000000000004,1001,189,3.3000000000000003 +2008,3,9,14,30,12.8,0.36,0.169,0.62,120,658,420,0,6.1000000000000005,120,658,0,420,62.940000000000005,0.13,1.4000000000000001,63.81,1001,191,3 +2008,3,9,15,30,11.600000000000001,0.37,0.164,0.62,93,507,244,4,6.300000000000001,9,0,0,9,72.72,0.13,1.4000000000000001,70.11,1001,191,2.2 +2008,3,9,16,30,9.8,0.35000000000000003,0.161,0.62,46,198,69,0,7.4,46,198,0,69,83.3,0.13,1.4000000000000001,85.06,1001,188,1.4000000000000001 +2008,3,9,17,30,8.700000000000001,0.32,0.15,0.62,0,0,0,0,6.800000000000001,0,0,0,0,94.5,0.13,1.4000000000000001,87.89,1002,184,1.3 +2008,3,9,18,30,8.200000000000001,0.3,0.14,0.62,0,0,0,0,6.9,0,0,0,0,105.62,0.13,1.4000000000000001,91.45,1002,177,1.4000000000000001 +2008,3,9,19,30,7.9,0.29,0.131,0.62,0,0,0,0,7,0,0,0,0,116.42,0.13,1.4000000000000001,94.19,1002,173,1.4000000000000001 +2008,3,9,20,30,7.6000000000000005,0.31,0.123,0.62,0,0,0,3,7.1000000000000005,0,0,0,0,126.42,0.13,1.4000000000000001,96.34,1002,169,1.4000000000000001 +2008,3,9,21,30,7.4,0.36,0.11800000000000001,0.62,0,0,0,0,7,0,0,0,0,134.84,0.13,1.4000000000000001,97.09,1002,166,1.4000000000000001 +2008,3,9,22,30,7.2,0.45,0.112,0.62,0,0,0,4,6.800000000000001,0,0,0,0,140.52,0.13,1.5,97.21000000000001,1002,162,1.5 +2008,3,9,23,30,7.2,0.5700000000000001,0.106,0.62,0,0,0,3,6.6000000000000005,0,0,0,0,142.1,0.13,1.5,96.15,1002,156,1.5 +2008,3,10,0,30,7.2,0.72,0.108,0.62,0,0,0,4,6.5,0,0,0,0,139.1,0.13,1.5,95.62,1001,151,1.6 +2008,3,10,1,30,7.2,0.8200000000000001,0.112,0.62,0,0,0,4,6.5,0,0,0,0,132.39000000000001,0.13,1.6,95.61,1001,146,1.6 +2008,3,10,2,30,7.300000000000001,0.86,0.113,0.62,0,0,0,4,6.5,0,0,0,0,123.35000000000001,0.13,1.6,94.86,1000,144,1.7000000000000002 +2008,3,10,3,30,7.5,0.88,0.12,0.62,0,0,0,4,6.6000000000000005,0,0,0,0,113.02,0.13,1.7000000000000002,94.11,1000,146,1.8 +2008,3,10,4,30,7.800000000000001,0.89,0.122,0.62,0,0,0,8,6.800000000000001,0,0,0,0,102.06,0.13,1.7000000000000002,93.18,1000,149,2 +2008,3,10,5,30,8.700000000000001,0.91,0.123,0.62,0,0,0,7,7.1000000000000005,0,0,0,0,90.89,0.13,1.8,89.94,1000,150,2.4000000000000004 +2008,3,10,6,30,9.9,0.93,0.139,0.62,59,391,128,8,8,3,0,0,3,79.79,0.13,1.8,87.88,1001,155,3.2 +2008,3,10,7,30,10.700000000000001,0.93,0.147,0.62,94,613,310,8,8.6,17,0,0,17,69.36,0.13,1.8,87.10000000000001,1001,166,3.9000000000000004 +2008,3,10,8,30,11.4,0.92,0.14100000000000001,0.62,111,737,481,8,9,9,0,0,9,59.910000000000004,0.13,1.8,85.39,1001,178,4.4 +2008,3,10,9,30,12.100000000000001,0.9400000000000001,0.139,0.62,121,806,615,4,9.200000000000001,27,0,0,27,52.19,0.13,1.7000000000000002,82.43,1000,184,4.9 +2008,3,10,10,30,12.700000000000001,0.93,0.133,0.62,125,842,697,5,8.9,210,0,0,210,47.160000000000004,0.13,1.7000000000000002,77.69,1000,187,5.2 +2008,3,10,11,30,13.100000000000001,0.9,0.12,0.62,121,863,723,3,8.200000000000001,384,85,0,443,45.78,0.13,1.6,72,999,188,5.5 +2008,3,10,12,30,13.100000000000001,0.9400000000000001,0.114,0.62,115,856,684,3,7.5,310,9,0,316,48.36,0.13,1.6,68.87,998,189,5.7 +2008,3,10,13,30,12.8,0.93,0.122,0.62,111,810,584,5,7.1000000000000005,309,52,0,339,54.33,0.13,1.6,68.37,997,186,5.7 +2008,3,10,14,30,12.3,0.92,0.129,0.62,101,725,434,4,7.1000000000000005,196,1,0,196,62.67,0.13,1.7000000000000002,70.59,996,179,5.5 +2008,3,10,15,30,11.4,0.9400000000000001,0.156,0.62,87,550,253,4,7.5,31,0,0,31,72.48,0.13,1.7000000000000002,76.86,996,171,4.7 +2008,3,10,16,30,10.700000000000001,0.93,0.17200000000000001,0.62,47,239,76,4,8.200000000000001,7,0,7,7,83.08,0.13,1.7000000000000002,84.71000000000001,995,164,4.1000000000000005 +2008,3,10,17,30,10.5,0.9,0.167,0.62,0,0,0,4,8.8,0,0,0,0,94.28,0.13,1.8,89.03,995,165,4.2 +2008,3,10,18,30,10.9,0.9,0.183,0.62,0,0,0,4,9.200000000000001,0,0,0,0,105.4,0.13,1.8,89.5,994,178,4.3 +2008,3,10,19,30,11.100000000000001,0.86,0.165,0.62,0,0,0,8,9.700000000000001,0,0,0,0,116.19,0.13,1.8,91.02,994,203,4.1000000000000005 +2008,3,10,20,30,10.9,0.85,0.132,0.62,0,0,0,7,9.600000000000001,0,0,0,0,126.15,0.13,1.7000000000000002,91.87,994,230,3.9000000000000004 +2008,3,10,21,30,10.3,0.85,0.122,0.62,0,0,0,6,8.9,0,0,0,0,134.53,0.13,1.6,90.83,994,246,3.6 +2008,3,10,22,30,9.8,0.81,0.13,0.62,0,0,0,7,7.9,0,0,0,0,140.16,0.13,1.5,87.8,994,250,3.3000000000000003 +2008,3,10,23,30,9.4,0.78,0.156,0.62,0,0,0,8,7.300000000000001,0,0,0,0,141.71,0.13,1.6,86.8,993,245,3.3000000000000003 +2008,3,11,0,30,9.1,0.8300000000000001,0.192,0.62,0,0,0,8,7.300000000000001,0,0,0,0,138.70000000000002,0.14,1.7000000000000002,88.36,993,235,3.5 +2008,3,11,1,30,8.9,0.81,0.20500000000000002,0.62,0,0,0,6,7.4,0,0,0,0,132.02,0.14,1.8,90.53,992,223,3.7 +2008,3,11,2,30,9,0.74,0.158,0.62,0,0,0,7,7.5,0,0,0,0,123.01,0.14,1.8,90.53,992,214,4.2 +2008,3,11,3,30,9.5,0.74,0.155,0.62,0,0,0,7,7.800000000000001,0,0,0,0,112.7,0.14,1.8,88.88,991,210,4.5 +2008,3,11,4,30,10.200000000000001,0.67,0.177,0.62,0,0,0,4,8.5,0,0,0,0,101.74000000000001,0.14,1.8,89.08,991,214,4.5 +2008,3,11,5,30,11,0.59,0.171,0.62,0,0,0,8,9,0,0,0,0,90.02,0.14,1.7000000000000002,87.59,991,227,4.7 +2008,3,11,6,30,11.700000000000001,0.5700000000000001,0.17400000000000002,0.62,69,333,129,4,9.3,5,0,0,5,79.48,0.14,1.6,84.94,991,241,5 +2008,3,11,7,30,12.3,0.48,0.179,0.62,110,564,312,4,9,13,0,0,13,69.02,0.14,1.5,80.39,991,252,5.5 +2008,3,11,8,30,12.9,0.4,0.183,0.62,135,681,481,4,8.4,154,0,0,154,59.56,0.14,1.5,73.9,992,259,5.800000000000001 +2008,3,11,9,30,13.5,0.4,0.181,0.62,149,755,616,3,7.6000000000000005,253,2,0,254,51.81,0.14,1.4000000000000001,67.35,992,265,5.9 +2008,3,11,10,30,14.100000000000001,0.4,0.152,0.62,142,818,702,0,7,142,818,0,702,46.77,0.14,1.4000000000000001,62.51,992,272,5.9 +2008,3,11,11,30,14.3,0.42,0.139,0.62,137,839,727,4,6.800000000000001,365,47,0,398,45.39,0.14,1.4000000000000001,60.49,991,278,5.9 +2008,3,11,12,30,14.3,0.5,0.156,0.62,141,808,681,0,6.800000000000001,141,808,0,681,48.01,0.14,1.5,60.59,991,286,5.7 +2008,3,11,13,30,14.200000000000001,0.5700000000000001,0.163,0.62,134,761,581,2,6.9,323,55,0,356,54.02,0.14,1.5,61.56,992,294,5.5 +2008,3,11,14,30,14,0.64,0.146,0.62,112,706,439,0,7.1000000000000005,112,706,0,439,62.4,0.14,1.4000000000000001,62.95,992,299,5.1000000000000005 +2008,3,11,15,30,13.200000000000001,0.86,0.127,0.62,81,597,263,0,7.300000000000001,81,597,0,263,72.24,0.14,1.4000000000000001,67.66,993,302,4.2 +2008,3,11,16,30,11.5,0.99,0.115,0.62,42,333,83,0,7.800000000000001,42,333,0,83,82.87,0.14,1.3,78.08,994,304,3.3000000000000003 +2008,3,11,17,30,10,1.02,0.098,0.62,0,0,0,0,7.7,0,0,0,0,94.07000000000001,0.14,1.2000000000000002,85.64,995,308,2.9000000000000004 +2008,3,11,18,30,9,1.01,0.08600000000000001,0.62,0,0,0,0,7.4,0,0,0,0,105.18,0.14,1.1,89.95,996,314,2.6 +2008,3,11,19,30,8.200000000000001,0.99,0.081,0.62,0,0,0,0,7.2,0,0,0,0,115.95,0.14,1,93.25,997,319,2.3000000000000003 +2008,3,11,20,30,7.6000000000000005,0.97,0.078,0.62,0,0,0,0,7,0,0,0,0,125.89,0.14,1,95.76,998,325,2 +2008,3,11,21,30,7.4,0.9400000000000001,0.076,0.62,0,0,0,0,6.800000000000001,0,0,0,0,134.22,0.14,1,96.01,999,334,1.8 +2008,3,11,22,30,7.300000000000001,0.9,0.075,0.62,0,0,0,0,6.6000000000000005,0,0,0,0,139.79,0.14,1,95.62,999,346,1.6 +2008,3,11,23,30,7.300000000000001,0.87,0.077,0.62,0,0,0,0,6.5,0,0,0,0,141.31,0.14,1.1,94.56,999,183,1.5 +2008,3,12,0,30,7.2,0.85,0.078,0.62,0,0,0,0,6.300000000000001,0,0,0,0,138.31,0.15,1.1,93.86,999,26,1.3 +2008,3,12,1,30,6.9,0.8300000000000001,0.075,0.62,0,0,0,0,6,0,0,0,0,131.66,0.15,1.2000000000000002,93.9,1000,50,1.3 +2008,3,12,2,30,6.6000000000000005,0.8300000000000001,0.074,0.62,0,0,0,0,5.6000000000000005,0,0,0,0,122.67,0.15,1.3,93.32000000000001,1000,72,1.3 +2008,3,12,3,30,6.4,0.84,0.076,0.62,0,0,0,0,5.2,0,0,0,0,112.38,0.15,1.4000000000000001,92.03,1000,92,1.4000000000000001 +2008,3,12,4,30,6.5,0.84,0.083,0.62,0,0,0,1,4.9,0,0,0,0,101.43,0.15,1.5,89.42,1000,109,1.5 +2008,3,12,5,30,8.1,0.8200000000000001,0.093,0.62,0,0,0,0,4.800000000000001,0,0,0,0,89.75,0.15,1.5,79.89,1001,123,1.7000000000000002 +2008,3,12,6,30,10.8,0.81,0.099,0.62,56,471,145,0,6.4,56,471,0,145,79.16,0.15,1.6,74.21000000000001,1001,138,2.4000000000000004 +2008,3,12,7,30,13.200000000000001,0.8,0.112,0.62,87,668,329,0,7.4,87,668,0,329,68.69,0.15,1.7000000000000002,67.94,1002,163,2.9000000000000004 +2008,3,12,8,30,14.8,0.8,0.122,0.62,107,763,498,3,9.600000000000001,298,127,0,364,59.2,0.15,1.8,70.88,1002,184,3.3000000000000003 +2008,3,12,9,30,15.600000000000001,0.74,0.139,0.62,126,804,627,7,10.5,269,328,0,473,51.43,0.15,1.8,71.49,1002,192,3.7 +2008,3,12,10,30,15.600000000000001,0.71,0.152,0.62,138,821,705,6,11,345,124,0,431,46.37,0.15,1.8,74.10000000000001,1001,198,4.1000000000000005 +2008,3,12,11,30,15.4,0.67,0.168,0.62,148,815,725,7,11.4,332,286,0,534,45,0.15,1.7000000000000002,76.84,1001,205,4.3 +2008,3,12,12,30,15.100000000000001,0.62,0.196,0.62,159,778,683,6,11.5,334,81,0,388,47.65,0.15,1.5,79.21000000000001,1000,213,4.4 +2008,3,12,13,30,14.8,0.58,0.198,0.62,152,739,589,7,11.4,307,106,0,370,53.71,0.15,1.2000000000000002,80.34,1000,222,4.4 +2008,3,12,14,30,14.200000000000001,0.53,0.19,0.62,133,664,443,7,11.100000000000001,231,87,7,271,62.13,0.15,1.1,81.69,1000,231,4.2 +2008,3,12,15,30,13.5,0.58,0.18,0.62,101,526,264,7,10.8,31,0,0,31,72,0.15,1.1,83.57000000000001,1000,234,3.2 +2008,3,12,16,30,12.3,0.5700000000000001,0.177,0.62,54,230,83,8,11,8,0,7,8,82.65,0.15,1.1,91.47,1000,231,2.1 +2008,3,12,17,30,11,0.56,0.167,0.62,0,0,0,3,11,0,0,0,0,93.86,0.15,1.2000000000000002,100,1000,229,1.5 +2008,3,12,18,30,10.200000000000001,0.58,0.158,0.62,0,0,0,3,10.200000000000001,0,0,0,0,104.97,0.15,1.3,100,1000,227,1.3 +2008,3,12,19,30,9.9,0.5700000000000001,0.139,0.62,0,0,0,8,9.9,0,0,0,0,115.72,0.15,1.4000000000000001,100,1000,225,1.3 +2008,3,12,20,30,10,0.56,0.11900000000000001,0.62,0,0,0,0,10,0,0,0,0,125.62,0.15,1.4000000000000001,100,1000,224,1.2000000000000002 +2008,3,12,21,30,10.200000000000001,0.59,0.11900000000000001,0.62,0,0,0,0,10.200000000000001,0,0,0,0,133.91,0.15,1.4000000000000001,100,1000,219,1 +2008,3,12,22,30,10.3,0.61,0.124,0.62,0,0,0,0,10.3,0,0,0,0,139.43,0.15,1.4000000000000001,100,1000,227,0.9 +2008,3,12,23,30,10.3,0.59,0.132,0.62,0,0,0,0,10.3,0,0,0,0,140.91,0.15,1.4000000000000001,100,1000,248,0.8 +2008,3,13,0,30,10.600000000000001,0.5700000000000001,0.134,0.62,0,0,0,0,10.600000000000001,0,0,0,0,137.92000000000002,0.15,1.3,100,1000,279,0.7000000000000001 +2008,3,13,1,30,10.3,0.5700000000000001,0.132,0.62,0,0,0,0,10.3,0,0,0,0,131.29,0.15,1.2000000000000002,100,1000,323,0.8 +2008,3,13,2,30,9.5,0.5700000000000001,0.13,0.62,0,0,0,0,9.5,0,0,0,0,122.33,0.15,1.2000000000000002,100,1001,173,1.1 +2008,3,13,3,30,8.700000000000001,0.61,0.131,0.62,0,0,0,0,8.700000000000001,0,0,0,0,112.05,0.15,1.1,100,1001,10,1.3 +2008,3,13,4,30,8.1,0.67,0.126,0.62,0,0,0,0,8.1,0,0,0,0,101.12,0.15,1,100,1002,27,1.3 +2008,3,13,5,30,9.1,0.73,0.116,0.62,0,0,0,0,9.1,0,0,0,0,89.48,0.15,1,99.78,1002,42,1.4000000000000001 +2008,3,13,6,30,11.700000000000001,0.76,0.111,0.62,60,477,152,0,9.200000000000001,60,477,0,152,78.84,0.15,0.9,84.53,1003,42,1.7000000000000002 +2008,3,13,7,30,14.3,0.8,0.10300000000000001,0.62,84,710,346,0,9.3,84,710,0,346,68.35000000000001,0.15,0.9,71.81,1004,19,1.9000000000000001 +2008,3,13,8,30,16.7,0.8300000000000001,0.093,0.62,95,829,524,0,8.3,95,829,0,524,58.84,0.15,0.9,57.660000000000004,1004,168,2.1 +2008,3,13,9,30,18.400000000000002,0.8300000000000001,0.08700000000000001,0.62,102,891,662,0,6.2,102,891,0,662,51.050000000000004,0.15,0.9,44.9,1004,324,2.3000000000000003 +2008,3,13,10,30,19.3,0.87,0.085,0.62,105,920,745,0,5.300000000000001,105,920,0,745,45.97,0.15,0.9,39.800000000000004,1004,297,2.4000000000000004 +2008,3,13,11,30,19.5,0.9,0.088,0.62,107,920,762,0,5.4,107,920,0,762,44.61,0.15,1,39.67,1004,270,2.7 +2008,3,13,12,30,19.200000000000003,0.92,0.091,0.62,106,901,717,0,6.2,106,901,0,717,47.300000000000004,0.15,1.1,42.67,1003,251,3.1 +2008,3,13,13,30,18.3,0.93,0.092,0.62,100,861,614,0,7.1000000000000005,100,861,0,614,53.4,0.15,1.2000000000000002,48.160000000000004,1003,237,3.4000000000000004 +2008,3,13,14,30,17.1,0.93,0.094,0.62,90,791,463,0,7.9,90,791,0,463,61.870000000000005,0.15,1.2000000000000002,54.65,1003,227,3.4000000000000004 +2008,3,13,15,30,15.100000000000001,0.9500000000000001,0.095,0.62,74,662,281,0,8.4,74,662,0,281,71.77,0.15,1.2000000000000002,64.13,1004,218,2.5 +2008,3,13,16,30,12.600000000000001,0.92,0.096,0.62,43,381,93,0,9.700000000000001,43,381,0,93,82.43,0.15,1.2000000000000002,82.76,1004,204,1.6 +2008,3,13,17,30,10.9,0.87,0.095,0.62,0,0,0,0,9.5,0,0,0,0,93.65,0.15,1.1,91.17,1004,187,1.4000000000000001 +2008,3,13,18,30,10.200000000000001,0.8200000000000001,0.098,0.62,0,0,0,0,9.8,0,0,0,0,104.75,0.15,1.1,97.15,1004,168,1.3 +2008,3,13,19,30,9.4,0.77,0.10400000000000001,0.62,0,0,0,0,9.4,0,0,0,0,115.48,0.15,1.1,100,1004,152,1.3 +2008,3,13,20,30,8.9,0.72,0.112,0.62,0,0,0,0,8.9,0,0,0,0,125.35000000000001,0.15,1.1,100,1004,139,1.4000000000000001 +2008,3,13,21,30,8.4,0.7000000000000001,0.115,0.62,0,0,0,0,8.4,0,0,0,0,133.59,0.15,1.1,100,1004,135,1.5 +2008,3,13,22,30,8.1,0.68,0.117,0.62,0,0,0,1,8.1,0,0,0,0,139.06,0.15,1.1,100,1004,137,1.5 +2008,3,13,23,30,7.7,0.67,0.11900000000000001,0.62,0,0,0,0,7.7,0,0,0,0,140.52,0.15,1.1,100,1004,138,1.5 +2008,3,14,0,30,7.4,0.65,0.122,0.62,0,0,0,0,7.4,0,0,0,0,137.52,0.16,1.1,100,1003,136,1.6 +2008,3,14,1,30,7.1000000000000005,0.63,0.125,0.62,0,0,0,0,7.1000000000000005,0,0,0,0,130.92000000000002,0.16,1.1,100,1003,132,1.6 +2008,3,14,2,30,6.9,0.62,0.13,0.62,0,0,0,0,6.9,0,0,0,0,121.98,0.16,1.2000000000000002,100,1004,127,1.8 +2008,3,14,3,30,6.800000000000001,0.62,0.138,0.62,0,0,0,0,6.800000000000001,0,0,0,0,111.73,0.16,1.2000000000000002,100,1004,123,1.9000000000000001 +2008,3,14,4,30,7.1000000000000005,0.64,0.14400000000000002,0.62,0,0,0,0,7.1000000000000005,0,0,0,0,100.8,0.16,1.2000000000000002,100,1004,122,2.1 +2008,3,14,5,30,8.700000000000001,0.65,0.14400000000000002,0.62,0,0,0,1,7.800000000000001,0,0,0,0,89.21000000000001,0.16,1.2000000000000002,93.97,1004,122,3 +2008,3,14,6,30,11.200000000000001,0.8300000000000001,0.124,0.62,64,460,155,0,8.200000000000001,64,460,0,155,78.52,0.16,1.2000000000000002,81.57000000000001,1004,130,4.1000000000000005 +2008,3,14,7,30,13.100000000000001,0.89,0.123,0.62,92,677,345,0,8.5,92,677,0,345,68.01,0.16,1.3,73.68,1005,142,4.9 +2008,3,14,8,30,14.5,0.92,0.117,0.62,105,792,519,0,8.5,105,792,0,519,58.480000000000004,0.16,1.3,67.08,1005,152,5.1000000000000005 +2008,3,14,9,30,15.700000000000001,0.92,0.115,0.62,114,847,652,0,8.5,114,847,0,652,50.660000000000004,0.16,1.4000000000000001,62.4,1005,161,4.800000000000001 +2008,3,14,10,30,16.5,0.93,0.113,0.62,119,877,733,0,8.700000000000001,119,877,0,733,45.57,0.16,1.4000000000000001,60.160000000000004,1005,169,4.4 +2008,3,14,11,30,17,0.93,0.107,0.62,118,889,755,0,8.9,118,889,0,755,44.22,0.16,1.4000000000000001,58.78,1005,176,4.1000000000000005 +2008,3,14,12,30,17.1,0.86,0.108,0.62,116,874,713,0,8.9,116,874,0,713,46.94,0.16,1.4000000000000001,58.7,1005,183,3.8000000000000003 +2008,3,14,13,30,16.8,0.88,0.10300000000000001,0.62,107,843,614,0,9,107,843,0,614,53.1,0.16,1.4000000000000001,59.96,1004,190,3.5 +2008,3,14,14,30,16.1,0.9,0.101,0.62,95,781,467,0,9,95,781,0,467,61.6,0.16,1.3,62.82,1004,195,3.3000000000000003 +2008,3,14,15,30,14.600000000000001,0.68,0.129,0.62,87,603,278,0,9.1,87,603,0,278,71.53,0.16,1.3,69.56,1004,198,2.5 +2008,3,14,16,30,12.4,0.68,0.13,0.62,50,312,92,0,9.9,50,312,0,92,82.22,0.16,1.4000000000000001,84.61,1005,202,1.7000000000000002 +2008,3,14,17,30,10.8,0.7000000000000001,0.127,0.62,0,0,0,0,9.600000000000001,0,0,0,0,93.43,0.16,1.4000000000000001,92.29,1005,202,1.3 +2008,3,14,18,30,10.3,0.73,0.129,0.62,0,0,0,0,9.700000000000001,0,0,0,0,104.53,0.16,1.4000000000000001,95.95,1005,195,1.2000000000000002 +2008,3,14,19,30,10,0.76,0.136,0.62,0,0,0,0,9.700000000000001,0,0,0,0,115.25,0.16,1.4000000000000001,98.31,1005,181,1.2000000000000002 +2008,3,14,20,30,9.700000000000001,0.77,0.138,0.62,0,0,0,0,9.700000000000001,0,0,0,0,125.08,0.16,1.4000000000000001,100,1005,164,1.2000000000000002 +2008,3,14,21,30,9.4,0.8,0.14200000000000002,0.62,0,0,0,1,9.4,0,0,0,0,133.28,0.16,1.3,100,1005,149,1.2000000000000002 +2008,3,14,22,30,9.1,0.8300000000000001,0.14400000000000002,0.62,0,0,0,3,9.1,0,0,0,0,138.70000000000002,0.16,1.3,100,1005,141,1.3 +2008,3,14,23,30,8.9,0.85,0.138,0.62,0,0,0,1,8.9,0,0,0,0,140.12,0.16,1.2000000000000002,100,1005,140,1.3 +2008,3,15,0,30,8.6,0.89,0.14300000000000002,0.62,0,0,0,3,8.6,0,0,0,0,137.13,0.16,1.2000000000000002,100,1005,141,1.3 +2008,3,15,1,30,8.4,0.93,0.146,0.62,0,0,0,1,8.4,0,0,0,0,130.55,0.16,1.2000000000000002,100,1005,141,1.3 +2008,3,15,2,30,8.1,0.96,0.138,0.62,0,0,0,1,8.1,0,0,0,0,121.64,0.16,1.3,100,1005,137,1.3 +2008,3,15,3,30,8,0.99,0.136,0.62,0,0,0,0,8,0,0,0,0,111.4,0.16,1.3,100,1005,132,1.3 +2008,3,15,4,30,8.1,1.02,0.135,0.62,0,0,0,0,8.1,0,0,0,0,100.48,0.16,1.4000000000000001,100,1005,126,1.2000000000000002 +2008,3,15,5,30,9.5,1.03,0.13,0.62,10,39,11,0,8,10,39,0,11,88.93,0.16,1.4000000000000001,90.5,1005,121,1.4000000000000001 +2008,3,15,6,30,11.9,1.17,0.11800000000000001,0.62,61,490,161,0,8.4,61,490,0,161,78.2,0.16,1.4000000000000001,79.12,1005,126,1.5 +2008,3,15,7,30,14,1.2,0.113,0.62,87,700,353,0,8.200000000000001,87,700,0,353,67.68,0.16,1.4000000000000001,68.08,1006,143,1.2000000000000002 +2008,3,15,8,30,15.8,1.22,0.106,0.62,99,810,527,1,8.1,99,810,0,527,58.120000000000005,0.16,1.4000000000000001,60.39,1006,178,1 +2008,3,15,9,30,17,1.18,0.108,0.62,110,861,661,3,8.4,327,25,0,344,50.28,0.16,1.4000000000000001,56.81,1005,213,1.3 +2008,3,15,10,30,17.8,1.2,0.11,0.62,116,883,739,3,8.9,327,8,0,333,45.17,0.16,1.5,55.97,1005,226,1.9000000000000001 +2008,3,15,11,30,18.1,1.2,0.113,0.62,118,887,758,3,9.4,364,36,0,390,43.83,0.16,1.5,56.64,1005,229,2.4000000000000004 +2008,3,15,12,30,18,1.22,0.115,0.62,117,872,716,2,9.700000000000001,404,123,0,488,46.59,0.16,1.5,58.25,1005,227,2.7 +2008,3,15,13,30,17.5,1.21,0.115,0.62,110,837,616,1,9.8,110,837,0,616,52.79,0.16,1.5,60.800000000000004,1005,221,2.8000000000000003 +2008,3,15,14,30,16.6,1.2,0.115,0.62,98,768,467,0,9.9,98,768,0,467,61.34,0.16,1.5,64.39,1004,215,2.8000000000000003 +2008,3,15,15,30,15.200000000000001,1.09,0.123,0.62,82,626,283,0,9.8,82,626,0,283,71.3,0.16,1.5,70.27,1004,210,2.3000000000000003 +2008,3,15,16,30,12.9,1.08,0.125,0.62,48,353,97,0,10.4,48,353,0,97,82.01,0.16,1.5,84.89,1004,208,1.6 +2008,3,15,17,30,11.3,1.09,0.126,0.62,0,0,0,0,10.200000000000001,0,0,0,0,93.22,0.16,1.5,93.13,1005,204,1.2000000000000002 +2008,3,15,18,30,10.8,1.1,0.131,0.62,0,0,0,7,10.3,0,0,0,0,104.31,0.16,1.5,96.63,1005,195,1.1 +2008,3,15,19,30,10.700000000000001,1.08,0.14300000000000002,0.62,0,0,0,5,10.4,0,0,0,0,115.01,0.16,1.5,97.93,1005,181,1 +2008,3,15,20,30,10.600000000000001,1.03,0.156,0.62,0,0,0,8,10.4,0,0,0,0,124.81,0.16,1.5,98.77,1005,168,1 +2008,3,15,21,30,10.600000000000001,0.98,0.17,0.62,0,0,0,5,10.4,0,0,0,0,132.96,0.16,1.5,98.56,1005,158,1.1 +2008,3,15,22,30,10.600000000000001,0.9400000000000001,0.186,0.62,0,0,0,7,10.4,0,0,0,0,138.33,0.16,1.5,98.46000000000001,1004,152,1.2000000000000002 +2008,3,15,23,30,10.600000000000001,0.85,0.20800000000000002,0.62,0,0,0,8,10.4,0,0,0,0,139.72,0.16,1.5,98.63,1004,145,1.4000000000000001 +2008,3,16,0,30,10.5,0.71,0.255,0.62,0,0,0,3,10.4,0,0,0,0,136.73,0.16,1.7000000000000002,99.18,1004,140,1.5 +2008,3,16,1,30,10.3,0.56,0.307,0.62,0,0,0,3,10.3,0,0,0,0,130.17000000000002,0.16,1.9000000000000001,99.75,1003,137,1.5 +2008,3,16,2,30,10,0.48,0.329,0.62,0,0,0,4,10,0,0,0,0,121.29,0.16,2,100,1003,134,1.6 +2008,3,16,3,30,9.9,0.47000000000000003,0.33,0.62,0,0,0,4,9.9,0,0,0,0,111.07000000000001,0.16,2,100,1003,129,1.8 +2008,3,16,4,30,9.9,0.48,0.31,0.62,0,0,0,3,9.700000000000001,0,0,0,0,100.16,0.16,2,98.81,1003,125,2.2 +2008,3,16,5,30,10.8,0.49,0.273,0.62,7,2,7,3,9.5,2,0,7,2,88.65,0.16,2,91.38,1003,126,3.2 +2008,3,16,6,30,12.600000000000001,0.49,0.249,0.62,85,282,144,3,9.5,6,0,0,6,77.88,0.16,2,81.51,1002,138,4.1000000000000005 +2008,3,16,7,30,14.200000000000001,0.49,0.23900000000000002,0.62,130,515,328,6,10,53,0,0,54,67.34,0.16,1.9000000000000001,76.02,1002,160,4.4 +2008,3,16,8,30,15.5,0.53,0.228,0.62,152,651,499,7,10.600000000000001,258,122,0,323,57.76,0.16,1.9000000000000001,72.66,1003,176,4.800000000000001 +2008,3,16,9,30,16.3,0.55,0.229,0.62,167,720,631,7,11.100000000000001,302,87,0,358,49.89,0.16,1.8,71.21000000000001,1002,186,5.1000000000000005 +2008,3,16,10,30,16.7,0.62,0.20700000000000002,0.62,165,778,717,7,11.200000000000001,354,202,0,498,44.77,0.16,1.7000000000000002,70.14,1002,192,5.2 +2008,3,16,11,30,16.8,0.7000000000000001,0.185,0.62,156,810,744,7,11.100000000000001,358,152,0,468,43.44,0.16,1.6,69.02,1001,196,5.2 +2008,3,16,12,30,16.7,0.49,0.246,0.62,182,732,689,6,10.9,309,32,0,331,46.24,0.16,1.6,68.43,1001,198,5.1000000000000005 +2008,3,16,13,30,16.3,0.51,0.224,0.62,160,708,592,8,10.600000000000001,13,0,0,13,52.49,0.16,1.6,68.9,1000,198,4.800000000000001 +2008,3,16,14,30,15.600000000000001,0.58,0.185,0.62,128,672,453,5,10.3,20,0,0,20,61.08,0.16,1.5,70.67,1000,198,4.4 +2008,3,16,15,30,14.5,0.66,0.161,0.62,95,561,277,3,10.200000000000001,83,0,7,83,71.07000000000001,0.16,1.5,75.22,1000,199,3.6 +2008,3,16,16,30,12.9,0.72,0.161,0.62,54,284,95,3,10.5,16,0,7,16,81.79,0.16,1.6,85.29,1000,199,2.4000000000000004 +2008,3,16,17,30,11.8,0.76,0.168,0.62,0,0,0,3,10.9,0,0,0,0,93.01,0.16,1.6,94.21000000000001,1000,197,1.8 +2008,3,16,18,30,11.600000000000001,0.81,0.166,0.62,0,0,0,7,11.200000000000001,0,0,0,0,104.10000000000001,0.16,1.6,97.64,1000,195,1.8 +2008,3,16,19,30,11.700000000000001,0.84,0.145,0.62,0,0,0,4,11.4,0,0,0,0,114.77,0.16,1.5,97.9,1000,197,1.9000000000000001 +2008,3,16,20,30,11.5,0.84,0.128,0.62,0,0,0,8,11.3,0,0,0,0,124.54,0.16,1.5,98.59,999,203,1.9000000000000001 +2008,3,16,21,30,11.200000000000001,0.84,0.129,0.62,0,0,0,1,11.200000000000001,0,0,0,0,132.64000000000001,0.16,1.4000000000000001,99.84,999,216,1.7000000000000002 +2008,3,16,22,30,10.5,0.81,0.11900000000000001,0.62,0,0,0,1,10.5,0,0,0,0,137.96,0.16,1.4000000000000001,100,999,234,1.6 +2008,3,16,23,30,9.700000000000001,0.75,0.108,0.62,0,0,0,0,9.700000000000001,0,0,0,0,139.32,0.16,1.4000000000000001,100,998,251,1.6 +2008,3,17,0,30,9.3,0.71,0.115,0.62,0,0,0,0,9.3,0,0,0,0,136.34,0.16,1.5,100,998,260,1.6 +2008,3,17,1,30,9,0.67,0.125,0.62,0,0,0,0,9,0,0,0,0,129.8,0.16,1.5,100,998,259,1.6 +2008,3,17,2,30,8.8,0.64,0.122,0.62,0,0,0,0,8.8,0,0,0,0,120.94,0.16,1.5,100,998,255,1.6 +2008,3,17,3,30,8.700000000000001,0.62,0.112,0.62,0,0,0,0,8.700000000000001,0,0,0,0,110.74000000000001,0.16,1.5,100,998,252,1.5 +2008,3,17,4,30,8.8,0.56,0.107,0.62,0,0,0,0,8.8,0,0,0,0,99.85000000000001,0.16,1.4000000000000001,100,997,246,1.4000000000000001 +2008,3,17,5,30,10.3,0.5,0.107,0.62,14,49,15,0,9.1,14,49,0,15,88.36,0.16,1.4000000000000001,92.41,997,241,1.6 +2008,3,17,6,30,12.600000000000001,0.48,0.129,0.62,69,451,166,0,9.600000000000001,69,451,0,166,77.56,0.16,1.4000000000000001,81.71000000000001,997,248,2.2 +2008,3,17,7,30,14.100000000000001,0.51,0.11900000000000001,0.62,94,676,359,0,8.5,94,676,0,359,67,0.16,1.4000000000000001,68.9,997,256,2.7 +2008,3,17,8,30,15,0.54,0.112,0.62,108,790,533,0,7.7,108,790,0,533,57.4,0.16,1.4000000000000001,61.7,998,254,2.8000000000000003 +2008,3,17,9,30,15.5,0.56,0.113,0.62,118,846,667,8,7.4,299,284,0,483,49.51,0.16,1.4000000000000001,58.34,998,250,3 +2008,3,17,10,30,16,0.58,0.106,0.62,119,880,749,8,7.2,332,329,0,567,44.37,0.16,1.4000000000000001,56,997,248,3.3000000000000003 +2008,3,17,11,30,16.400000000000002,0.55,0.099,0.62,117,893,769,0,7.2,117,893,0,769,43.050000000000004,0.16,1.4000000000000001,54.410000000000004,997,247,3.6 +2008,3,17,12,30,16.400000000000002,0.5,0.1,0.62,115,877,726,4,7.1000000000000005,307,4,0,310,45.89,0.16,1.4000000000000001,54.09,997,247,3.8000000000000003 +2008,3,17,13,30,16.1,0.44,0.107,0.62,112,832,623,0,7,112,832,0,623,52.18,0.16,1.4000000000000001,54.95,997,249,3.9000000000000004 +2008,3,17,14,30,15.4,0.4,0.113,0.62,104,753,471,0,7,104,753,0,471,60.82,0.16,1.4000000000000001,57.370000000000005,997,251,3.7 +2008,3,17,15,30,14.200000000000001,0.43,0.129,0.62,89,598,285,0,7.2,89,598,0,285,70.84,0.16,1.4000000000000001,62.800000000000004,997,250,2.9000000000000004 +2008,3,17,16,30,12.200000000000001,0.47000000000000003,0.117,0.62,51,341,101,0,8.6,51,341,0,101,81.58,0.16,1.4000000000000001,78.72,997,244,1.9000000000000001 +2008,3,17,17,30,10.600000000000001,0.58,0.093,0.62,0,0,0,0,8.9,0,0,0,0,92.8,0.16,1.4000000000000001,89.41,997,237,1.5 +2008,3,17,18,30,10,0.62,0.08600000000000001,0.62,0,0,0,0,9.200000000000001,0,0,0,0,103.88,0.16,1.5,94.84,997,230,1.5 +2008,3,17,19,30,9.5,0.59,0.089,0.62,0,0,0,0,9.5,0,0,0,0,114.54,0.16,1.5,100,997,223,1.4000000000000001 +2008,3,17,20,30,9.3,0.5700000000000001,0.095,0.62,0,0,0,0,9.3,0,0,0,0,124.27,0.16,1.6,100,997,217,1.3 +2008,3,17,21,30,9.1,0.58,0.114,0.62,0,0,0,0,9.1,0,0,0,0,132.33,0.16,1.6,100,996,213,1.4000000000000001 +2008,3,17,22,30,9.1,0.59,0.127,0.62,0,0,0,3,9.1,0,0,0,0,137.59,0.16,1.6,100,996,215,1.5 +2008,3,17,23,30,9.3,0.63,0.13,0.62,0,0,0,8,9.1,0,0,0,0,138.92000000000002,0.16,1.6,98.91,995,221,1.6 +2008,3,18,0,30,9.600000000000001,0.71,0.15,0.62,0,0,0,7,8.9,0,0,0,0,135.94,0.16,1.7000000000000002,95.64,995,224,1.7000000000000002 +2008,3,18,1,30,9.700000000000001,0.76,0.167,0.62,0,0,0,8,8.8,0,0,0,0,129.42000000000002,0.16,1.7000000000000002,94.27,995,226,1.7000000000000002 +2008,3,18,2,30,9.600000000000001,0.79,0.165,0.62,0,0,0,7,8.6,0,0,0,0,120.59,0.16,1.7000000000000002,93.76,994,227,1.7000000000000002 +2008,3,18,3,30,9.600000000000001,0.86,0.17200000000000001,0.62,0,0,0,3,8.5,0,0,0,0,110.41,0.16,1.7000000000000002,93.05,994,228,1.6 +2008,3,18,4,30,9.700000000000001,0.86,0.152,0.62,0,0,0,8,8.5,0,0,0,0,99.52,0.16,1.7000000000000002,92.43,994,229,1.5 +2008,3,18,5,30,10.700000000000001,0.81,0.126,0.62,15,64,17,0,8.6,15,64,0,17,88.07000000000001,0.16,1.6,86.74,994,228,2 +2008,3,18,6,30,12.4,0.8300000000000001,0.13,0.62,67,475,172,0,9.1,67,475,0,172,77.23,0.16,1.6,80.17,995,227,2.9000000000000004 +2008,3,18,7,30,13.700000000000001,0.8300000000000001,0.11900000000000001,0.62,91,688,363,0,8.8,91,688,0,363,66.66,0.16,1.6,72.15,995,229,3.6 +2008,3,18,8,30,14.5,0.8,0.109,0.62,103,798,538,2,8.6,245,10,0,250,57.04,0.16,1.6,67.78,995,228,4 +2008,3,18,9,30,14.9,0.8,0.11900000000000001,0.62,118,839,667,5,8.6,275,3,0,278,49.120000000000005,0.16,1.7000000000000002,65.99,995,222,4.3 +2008,3,18,10,30,15.3,0.84,0.12,0.62,123,863,744,8,8.8,144,1,0,144,43.97,0.16,1.8,65.27,995,218,4.5 +2008,3,18,11,30,15.3,0.87,0.124,0.62,126,866,763,8,8.9,156,2,0,157,42.660000000000004,0.16,1.8,65.68,994,216,4.5 +2008,3,18,12,30,15.100000000000001,0.92,0.124,0.62,123,851,719,8,8.8,335,260,0,517,45.53,0.16,1.9000000000000001,66.23,994,214,4.3 +2008,3,18,13,30,14.8,0.9400000000000001,0.123,0.62,115,819,621,8,8.8,94,1,7,94,51.88,0.16,1.8,67.1,994,212,3.8000000000000003 +2008,3,18,14,30,14.5,0.9500000000000001,0.115,0.62,100,759,473,4,8.5,91,0,0,91,60.56,0.16,1.8,67.43,994,206,3.3000000000000003 +2008,3,18,15,30,13.8,0.97,0.11800000000000001,0.62,82,630,291,4,8.4,65,0,0,65,70.61,0.16,1.8,69.68,994,195,2.4000000000000004 +2008,3,18,16,30,12.200000000000001,0.98,0.121,0.62,50,370,105,4,9.200000000000001,4,0,0,4,81.37,0.16,1.7000000000000002,81.68,994,178,1.5 +2008,3,18,17,30,11,0.98,0.125,0.62,0,0,0,3,9,0,0,0,0,92.59,0.16,1.7000000000000002,87.74,994,164,1.2000000000000002 +2008,3,18,18,30,10.600000000000001,0.99,0.136,0.62,0,0,0,0,8.9,0,0,0,0,103.66,0.16,1.8,89.36,994,154,1.2000000000000002 +2008,3,18,19,30,10.600000000000001,1.01,0.14300000000000002,0.62,0,0,0,3,8.9,0,0,0,0,114.3,0.16,1.8,89.34,994,143,1.2000000000000002 +2008,3,18,20,30,10.700000000000001,1.01,0.147,0.62,0,0,0,0,8.8,0,0,0,0,124,0.16,1.8,88.14,994,127,1.1 +2008,3,18,21,30,10.8,1.02,0.152,0.62,0,0,0,0,8.6,0,0,0,0,132.01,0.16,1.8,86.2,994,109,1 +2008,3,18,22,30,10.8,1.03,0.156,0.62,0,0,0,4,8.3,0,0,0,0,137.23,0.16,1.8,84.31,994,88,0.9 +2008,3,18,23,30,10.5,1.03,0.161,0.62,0,0,0,4,7.9,0,0,0,0,138.52,0.16,1.8,83.78,994,69,1 +2008,3,19,0,30,10.100000000000001,1.04,0.169,0.62,0,0,0,4,7.5,0,0,0,0,135.54,0.16,1.8,83.92,994,56,1.1 +2008,3,19,1,30,9.700000000000001,1.06,0.179,0.62,0,0,0,4,7.2,0,0,0,0,129.05,0.16,1.8,84.25,994,56,1.1 +2008,3,19,2,30,9.200000000000001,1.07,0.187,0.62,0,0,0,4,6.9,0,0,0,0,120.24000000000001,0.16,1.8,85.46000000000001,994,61,1.2000000000000002 +2008,3,19,3,30,8.6,1.08,0.194,0.62,0,0,0,4,6.6000000000000005,0,0,0,0,110.08,0.16,1.8,87.33,994,67,1.2000000000000002 +2008,3,19,4,30,8.3,1.09,0.195,0.62,0,0,0,0,6.300000000000001,0,0,0,0,99.2,0.16,1.8,87.48,994,72,1.4000000000000001 +2008,3,19,5,30,9.1,1.08,0.193,0.62,17,53,19,3,6.300000000000001,4,0,7,4,87.77,0.16,1.7000000000000002,82.64,994,78,2.1 +2008,3,19,6,30,10.600000000000001,1.1400000000000001,0.171,0.62,75,446,176,0,6.9,75,446,0,176,76.91,0.16,1.6,77.75,995,87,2.9000000000000004 +2008,3,19,7,30,12.100000000000001,1.16,0.17500000000000002,0.62,108,639,364,3,6.9,202,17,7,209,66.32000000000001,0.16,1.6,70.4,995,107,2.8000000000000003 +2008,3,19,8,30,13.600000000000001,1.16,0.176,0.62,128,742,535,0,6.800000000000001,128,742,0,535,56.68,0.16,1.6,63.440000000000005,996,140,2.6 +2008,3,19,9,30,14.5,1.22,0.162,0.62,134,813,670,0,7.300000000000001,134,813,0,670,48.730000000000004,0.16,1.6,61.83,996,169,2.6 +2008,3,19,10,30,14.8,1.26,0.159,0.62,138,844,750,2,7.800000000000001,429,159,0,544,43.56,0.16,1.6,62.72,996,184,2.8000000000000003 +2008,3,19,11,30,14.600000000000001,1.26,0.161,0.62,140,848,768,0,7.9,140,848,0,768,42.27,0.16,1.6,64.16,995,191,3 +2008,3,19,12,30,14.4,1.28,0.185,0.62,147,815,722,2,8.1,410,106,0,484,45.18,0.16,1.6,66.09,995,192,3 +2008,3,19,13,30,14.200000000000001,1.27,0.201,0.62,144,762,618,2,8.4,306,26,0,322,51.58,0.16,1.6,67.88,995,192,2.8000000000000003 +2008,3,19,14,30,14,1.26,0.188,0.62,124,699,471,1,8.5,124,699,0,471,60.300000000000004,0.16,1.6,69.3,995,191,2.6 +2008,3,19,15,30,13.3,1.28,0.185,0.62,98,571,290,0,8.5,98,571,0,290,70.38,0.16,1.6,72.62,995,184,2.1 +2008,3,19,16,30,12,1.26,0.185,0.62,56,314,105,2,9.5,9,0,0,9,81.16,0.16,1.7000000000000002,84.46000000000001,996,175,1.5 +2008,3,19,17,30,11.200000000000001,1.2,0.185,0.62,0,0,0,1,9.5,0,0,0,0,92.38,0.16,1.7000000000000002,89.17,996,170,1.4000000000000001 +2008,3,19,18,30,10.9,1.16,0.199,0.62,0,0,0,4,9.600000000000001,0,0,0,0,103.45,0.16,1.7000000000000002,91.49,996,170,1.5 +2008,3,19,19,30,10.600000000000001,1.1300000000000001,0.186,0.62,0,0,0,4,9.5,0,0,0,0,114.06,0.16,1.7000000000000002,93.16,996,174,1.5 +2008,3,19,20,30,10.200000000000001,1.11,0.152,0.62,0,0,0,4,9.5,0,0,0,0,123.73,0.16,1.7000000000000002,95.36,997,184,1.4000000000000001 +2008,3,19,21,30,9.700000000000001,1.11,0.136,0.62,0,0,0,0,9.3,0,0,0,0,131.69,0.16,1.6,97.07000000000001,997,199,1.4000000000000001 +2008,3,19,22,30,9.4,1.12,0.123,0.62,0,0,0,0,9,0,0,0,0,136.86,0.16,1.6,97.19,996,212,1.3 +2008,3,19,23,30,9,1.1500000000000001,0.111,0.62,0,0,0,8,8.6,0,0,0,0,138.13,0.16,1.6,97.37,996,224,1.3 +2008,3,20,0,30,8.8,1.19,0.113,0.62,0,0,0,8,8.200000000000001,0,0,0,0,135.14000000000001,0.16,1.5,96.15,995,231,1.3 +2008,3,20,1,30,8.8,1.21,0.11900000000000001,0.62,0,0,0,4,7.9,0,0,0,0,128.67000000000002,0.16,1.5,94.17,995,233,1.2000000000000002 +2008,3,20,2,30,8.8,1.2,0.127,0.62,0,0,0,4,7.7,0,0,0,0,119.89,0.16,1.5,92.94,994,226,1.1 +2008,3,20,3,30,8.700000000000001,1.19,0.145,0.62,0,0,0,4,7.5,0,0,0,0,109.75,0.16,1.5,92.35000000000001,994,210,1 +2008,3,20,4,30,8.5,1.18,0.164,0.62,0,0,0,3,7.300000000000001,0,0,0,0,98.88,0.16,1.5,92.2,994,193,1.1 +2008,3,20,5,30,9.4,1.16,0.182,0.62,19,75,22,4,7.300000000000001,7,0,7,7,87.47,0.16,1.5,86.67,995,184,1.5 +2008,3,20,6,30,10.9,1.17,0.209,0.62,81,413,177,4,8.5,7,0,0,7,76.59,0.16,1.6,85.16,995,189,2 +2008,3,20,7,30,11.8,1.19,0.216,0.62,119,602,364,0,8.6,119,602,0,364,65.98,0.16,1.6,80.60000000000001,995,206,2.3000000000000003 +2008,3,20,8,30,12.200000000000001,1.18,0.223,0.62,144,702,534,2,8.1,308,46,0,333,56.32,0.16,1.6,75.88,995,226,2.6 +2008,3,20,9,30,12.200000000000001,1.23,0.26,0.62,172,735,660,7,7.800000000000001,70,0,7,70,48.35,0.16,1.6,74.48,995,244,3 +2008,3,20,10,30,12.200000000000001,1.22,0.28200000000000003,0.62,189,752,738,7,7.800000000000001,346,55,7,385,43.160000000000004,0.16,1.5,74.35000000000001,995,264,3.4000000000000004 +2008,3,20,11,30,12.4,1.21,0.257,0.62,182,779,762,8,7.6000000000000005,39,0,7,39,41.88,0.16,1.4000000000000001,72.63,995,289,3.9000000000000004 +2008,3,20,12,30,12.5,1.29,0.23,0.62,166,789,725,4,7,364,37,0,391,44.83,0.16,1.3,69.09,994,312,4.1000000000000005 +2008,3,20,13,30,12.200000000000001,1.33,0.199,0.62,144,778,630,0,5.800000000000001,144,778,0,630,51.28,0.16,1.2000000000000002,65.16,994,327,4.3 +2008,3,20,14,30,11.700000000000001,1.31,0.152,0.62,113,752,488,2,4.7,264,32,0,280,60.04,0.16,1.1,62.02,994,335,4.5 +2008,3,20,15,30,10.700000000000001,1.29,0.132,0.62,85,648,305,0,3.7,85,648,0,305,70.15,0.16,1.1,61.78,994,338,4.4 +2008,3,20,16,30,8.8,1.26,0.127,0.62,51,404,114,0,3.3000000000000003,51,404,0,114,80.95,0.16,1.1,68.54,995,341,4.1000000000000005 +2008,3,20,17,30,7.1000000000000005,1.26,0.121,0.62,0,0,0,0,3,0,0,0,0,92.18,0.16,1,75.09,995,347,4.1000000000000005 +2008,3,20,18,30,6.300000000000001,1.3,0.11900000000000001,0.62,0,0,0,0,2.5,0,0,0,0,103.23,0.16,1,76.5,995,176,4.4 +2008,3,20,19,30,5.9,1.37,0.125,0.62,0,0,0,0,2.2,0,0,0,0,113.82000000000001,0.16,1,76.96000000000001,996,6,4.5 +2008,3,20,20,30,5.6000000000000005,1.41,0.133,0.62,0,0,0,0,2.1,0,0,0,0,123.46000000000001,0.16,0.9,78.02,996,14,4.3 +2008,3,20,21,30,5.2,1.41,0.134,0.62,0,0,0,0,1.9000000000000001,0,0,0,0,131.37,0.16,0.9,79.23,996,18,3.9000000000000004 +2008,3,20,22,30,4.6000000000000005,1.4000000000000001,0.129,0.62,0,0,0,0,1.6,0,0,0,0,136.49,0.16,0.8,81.17,996,21,3.3000000000000003 +2008,3,20,23,30,3.9000000000000004,1.37,0.123,0.62,0,0,0,0,1.5,0,0,0,0,137.73,0.16,0.8,84.06,996,24,2.6 +2008,3,21,0,30,3.3000000000000003,1.33,0.123,0.62,0,0,0,0,1.2000000000000002,0,0,0,0,134.75,0.15,0.7000000000000001,86.28,996,24,2.2 +2008,3,21,1,30,2.7,1.28,0.117,0.62,0,0,0,0,1,0,0,0,0,128.3,0.15,0.6000000000000001,88.34,995,26,1.9000000000000001 +2008,3,21,2,30,2.2,1.26,0.099,0.62,0,0,0,0,0.6000000000000001,0,0,0,0,119.54,0.15,0.6000000000000001,89.03,995,32,1.7000000000000002 +2008,3,21,3,30,2.1,1.24,0.083,0.62,0,0,0,0,0.2,0,0,0,0,109.41,0.15,0.6000000000000001,87.55,995,43,1.4000000000000001 +2008,3,21,4,30,2.5,1.22,0.073,0.62,0,0,0,0,-0.2,0,0,0,0,98.56,0.15,0.5,82.19,995,59,1.2000000000000002 +2008,3,21,5,30,4.3,1.21,0.069,0.62,19,241,31,0,-0.5,19,241,0,31,87.16,0.15,0.5,71.14,995,90,1.1 +2008,3,21,6,30,6.9,1.25,0.067,0.62,55,652,210,0,-0.1,55,652,0,210,76.26,0.15,0.6000000000000001,61.14,994,146,1.2000000000000002 +2008,3,21,7,30,9.5,1.25,0.07100000000000001,0.62,76,811,410,3,-0.9,243,71,0,272,65.64,0.15,0.6000000000000001,48.230000000000004,994,194,1.9000000000000001 +2008,3,21,8,30,11.3,1.26,0.073,0.62,88,887,585,0,-2.5,88,887,0,585,55.95,0.15,0.7000000000000001,38.17,994,208,3.3000000000000003 +2008,3,21,9,30,12.3,0.93,0.122,0.62,120,870,702,0,-1.7000000000000002,120,870,0,702,47.96,0.15,0.9,37.89,993,208,5 +2008,3,21,10,30,12.9,0.93,0.14200000000000002,0.62,134,870,772,5,0.2,339,7,0,344,42.76,0.15,1.1,41.76,992,212,6.6000000000000005 +2008,3,21,11,30,12.600000000000001,0.8200000000000001,0.18,0.62,155,833,779,4,2.4000000000000004,340,5,0,343,41.49,0.15,1.3,49.77,991,219,7.6000000000000005 +2008,3,21,12,30,11.9,0.73,0.189,0.62,156,802,729,4,3.4000000000000004,121,0,0,121,44.49,0.15,1.5,56.07,990,226,7.800000000000001 +2008,3,21,13,30,11.3,0.64,0.219,0.62,161,728,619,4,3.9000000000000004,29,0,0,29,50.980000000000004,0.15,1.6,60.18,989,231,7.5 +2008,3,21,14,30,10.9,0.62,0.25,0.62,154,616,464,8,4.4,126,3,0,128,59.79,0.15,1.7000000000000002,64.06,988,235,7 +2008,3,21,15,30,10.600000000000001,0.66,0.311,0.62,136,416,279,7,5,11,0,0,11,69.93,0.15,1.8,68.13,987,239,6.6000000000000005 +2008,3,21,16,30,10.3,0.64,0.322,0.62,73,162,99,7,5.4,26,0,7,26,80.74,0.15,1.8,71.5,987,243,6.300000000000001 +2008,3,21,17,30,10,0.61,0.297,0.62,0,0,0,7,5.6000000000000005,0,0,0,0,91.97,0.15,1.8,74.25,987,247,6.4 +2008,3,21,18,30,9.600000000000001,0.61,0.28500000000000003,0.62,0,0,0,9,5.800000000000001,0,0,0,0,103.01,0.15,1.9000000000000001,76.98,987,249,6.7 +2008,3,21,19,30,9.1,0.6,0.272,0.62,0,0,0,9,5.9,0,0,0,0,113.59,0.15,1.9000000000000001,80.55,987,245,6.6000000000000005 +2008,3,21,20,30,8.9,0.58,0.28700000000000003,0.62,0,0,0,7,6.2,0,0,0,0,123.18,0.15,1.9000000000000001,83.33,986,239,6.300000000000001 +2008,3,21,21,30,9.1,0.6,0.325,0.62,0,0,0,8,6.5,0,0,0,0,131.05,0.15,1.9000000000000001,83.7,986,236,6.2 +2008,3,21,22,30,9.3,0.54,0.32,0.62,0,0,0,6,6.5,0,0,0,0,136.12,0.15,1.9000000000000001,82.94,985,237,6.1000000000000005 +2008,3,21,23,30,9.5,0.48,0.28700000000000003,0.62,0,0,0,6,6.7,0,0,0,0,137.33,0.15,1.9000000000000001,82.77,984,240,6 +2008,3,22,0,30,9.8,0.51,0.28300000000000003,0.62,0,0,0,6,7,0,0,0,0,134.35,0.15,1.9000000000000001,82.75,983,242,6 +2008,3,22,1,30,10,0.52,0.259,0.62,0,0,0,6,7.2,0,0,0,0,127.92,0.15,1.9000000000000001,82.86,983,243,6.1000000000000005 +2008,3,22,2,30,10,0.52,0.23700000000000002,0.62,0,0,0,6,7.4,0,0,0,0,119.19,0.15,1.9000000000000001,83.92,983,242,6.1000000000000005 +2008,3,22,3,30,10,0.5700000000000001,0.249,0.62,0,0,0,7,7.6000000000000005,0,0,0,0,109.08,0.15,1.9000000000000001,85.02,982,238,6.2 +2008,3,22,4,30,10.100000000000001,0.5700000000000001,0.234,0.62,0,0,0,6,7.9,0,0,0,0,98.24000000000001,0.15,1.9000000000000001,85.99,982,234,6.4 +2008,3,22,5,30,10.3,0.56,0.217,0.62,23,39,25,7,8.200000000000001,4,0,7,4,86.87,0.15,1.9000000000000001,86.62,982,230,6.5 +2008,3,22,6,30,10.600000000000001,0.64,0.20400000000000001,0.62,88,394,184,7,8.4,4,0,0,4,75.94,0.15,1.9000000000000001,86.28,981,227,6.6000000000000005 +2008,3,22,7,30,10.9,0.65,0.197,0.62,122,599,372,7,8.6,7,0,0,7,65.31,0.15,1.9000000000000001,85.66,981,224,6.800000000000001 +2008,3,22,8,30,11.100000000000001,0.63,0.191,0.62,141,708,541,6,8.700000000000001,13,0,0,13,55.59,0.15,2,84.87,982,222,7 +2008,3,22,9,30,11.4,0.59,0.272,0.62,188,696,657,6,8.6,21,0,0,21,47.58,0.15,2,82.66,982,219,7 +2008,3,22,10,30,11.700000000000001,0.58,0.241,0.62,183,752,739,6,8.6,48,0,0,48,42.36,0.15,2,81.08,981,218,6.800000000000001 +2008,3,22,11,30,11.9,0.5700000000000001,0.19,0.62,162,803,768,7,8.700000000000001,186,2,0,187,41.1,0.15,1.9000000000000001,80.58,981,217,6.6000000000000005 +2008,3,22,12,30,12.100000000000001,0.56,0.218,0.62,171,763,719,6,8.700000000000001,222,4,0,226,44.14,0.15,1.9000000000000001,79.79,981,218,6.300000000000001 +2008,3,22,13,30,12.3,0.5700000000000001,0.224,0.62,164,719,619,6,8.700000000000001,101,0,0,102,50.69,0.15,1.8,78.65,980,219,5.800000000000001 +2008,3,22,14,30,12.100000000000001,0.5700000000000001,0.229,0.62,148,637,471,6,8.5,42,0,0,42,59.53,0.15,1.7000000000000002,78.8,980,222,4.7 +2008,3,22,15,30,11.4,0.6,0.219,0.62,116,510,293,6,8.6,25,0,0,25,69.7,0.15,1.6,82.83,980,226,3.4000000000000004 +2008,3,22,16,30,10.5,0.61,0.198,0.62,66,275,111,6,8.8,3,0,0,3,80.53,0.15,1.5,88.92,981,233,2.5 +2008,3,22,17,30,9.9,0.62,0.192,0.62,0,0,0,4,8.1,0,0,0,0,91.76,0.15,1.5,88.43,981,240,2.3000000000000003 +2008,3,22,18,30,9.5,0.64,0.187,0.62,0,0,0,8,7.5,0,0,0,0,102.79,0.15,1.5,87.05,982,243,2.3000000000000003 +2008,3,22,19,30,9.1,0.64,0.17200000000000001,0.62,0,0,0,4,6.9,0,0,0,0,113.35000000000001,0.15,1.5,86.28,982,245,2.2 +2008,3,22,20,30,8.700000000000001,0.66,0.165,0.62,0,0,0,1,6.6000000000000005,0,0,0,0,122.91,0.15,1.4000000000000001,86.46000000000001,983,246,2 +2008,3,22,21,30,8.200000000000001,0.67,0.157,0.62,0,0,0,4,6.2,0,0,0,0,130.73,0.15,1.4000000000000001,87.34,983,243,1.6 +2008,3,22,22,30,8,0.67,0.14400000000000002,0.62,0,0,0,4,5.7,0,0,0,0,135.75,0.15,1.3,85.16,983,240,1.4000000000000001 +2008,3,22,23,30,8.1,0.68,0.131,0.62,0,0,0,5,5.5,0,0,0,0,136.93,0.15,1.3,83.9,983,233,1.3 +2008,3,23,0,30,8.200000000000001,0.71,0.124,0.62,0,0,0,8,5.5,0,0,0,0,133.95,0.14,1.3,83.21000000000001,983,216,1.2000000000000002 +2008,3,23,1,30,7.7,0.71,0.116,0.62,0,0,0,6,5.300000000000001,0,0,0,0,127.54,0.14,1.3,84.82000000000001,983,196,1.3 +2008,3,23,2,30,7.1000000000000005,0.68,0.108,0.62,0,0,0,6,5.1000000000000005,0,0,0,0,118.83,0.14,1.3,86.86,983,181,1.4000000000000001 +2008,3,23,3,30,6.7,0.68,0.108,0.62,0,0,0,7,5,0,0,0,0,108.75,0.14,1.4000000000000001,89.02,982,166,1.6 +2008,3,23,4,30,7,0.7000000000000001,0.109,0.62,0,0,0,7,5.2,0,0,0,0,97.92,0.14,1.4000000000000001,88.37,982,153,1.8 +2008,3,23,5,30,8.700000000000001,0.73,0.114,0.62,24,142,33,4,5.800000000000001,7,0,7,7,86.56,0.14,1.6,81.92,982,144,2.8000000000000003 +2008,3,23,6,30,10.8,0.76,0.138,0.62,75,496,198,7,7.1000000000000005,4,0,0,4,75.62,0.14,1.7000000000000002,78.05,982,140,4.3 +2008,3,23,7,30,11.5,0.73,0.186,0.62,117,619,379,6,7.7,50,0,0,50,64.97,0.14,1.9000000000000001,77.49,981,144,5.4 +2008,3,23,8,30,11.700000000000001,0.71,0.218,0.62,150,689,542,6,8.6,12,0,0,12,55.230000000000004,0.14,2,81.09,980,151,6.4 +2008,3,23,9,30,12.3,0.71,0.315,0.62,201,669,656,9,9.700000000000001,20,0,0,20,47.19,0.14,2.1,84.04,979,162,7.6000000000000005 +2008,3,23,10,30,12.9,0.6900000000000001,0.353,0.62,226,674,727,6,10.5,25,0,0,25,41.96,0.14,2.1,85.63,978,170,8.5 +2008,3,23,11,30,13.200000000000001,0.62,0.312,0.62,213,706,749,8,10.8,21,0,0,21,40.71,0.14,2.1,85.21000000000001,977,173,9 +2008,3,23,12,30,13.5,0.62,0.271,0.62,192,722,713,4,10.8,183,0,0,183,43.79,0.14,2,83.64,976,179,9.200000000000001 +2008,3,23,13,30,13.8,0.51,0.23600000000000002,0.62,169,702,617,7,11,138,1,0,139,50.39,0.14,2,83.42,975,187,9.5 +2008,3,23,14,30,13.600000000000001,0.4,0.234,0.62,153,620,469,7,10.9,86,0,0,87,59.28,0.14,1.9000000000000001,83.93,975,198,9.700000000000001 +2008,3,23,15,30,11.9,0.43,0.312,0.62,142,405,283,4,10.3,12,0,0,12,69.48,0.14,1.8,90.02,975,222,9 +2008,3,23,16,30,9.5,0.54,0.333,0.62,78,158,105,3,8.9,15,0,7,15,80.32000000000001,0.14,1.6,96.35000000000001,977,253,8.4 +2008,3,23,17,30,7.7,0.71,0.279,0.62,0,0,0,4,6.5,0,0,0,0,91.55,0.14,1.4000000000000001,92.35000000000001,980,273,7.4 +2008,3,23,18,30,6.800000000000001,0.88,0.248,0.62,0,0,0,4,5.2,0,0,0,0,102.58,0.14,1.4000000000000001,89.39,982,283,5.6000000000000005 +2008,3,23,19,30,6.6000000000000005,0.92,0.226,0.62,0,0,0,4,4.9,0,0,0,0,113.11,0.14,1.3,89.01,984,284,3.8000000000000003 +2008,3,23,20,30,6.9,0.88,0.196,0.62,0,0,0,4,5,0,0,0,0,122.64,0.14,1.2000000000000002,87.96000000000001,984,268,2.6 +2008,3,23,21,30,7.4,0.87,0.215,0.62,0,0,0,0,5.300000000000001,0,0,0,0,130.41,0.14,1.1,86.31,985,246,2.1 +2008,3,23,22,30,7.4,0.84,0.166,0.62,0,0,0,4,5.2,0,0,0,0,135.39000000000001,0.14,0.9,85.94,984,241,1.8 +2008,3,23,23,30,7,0.81,0.11800000000000001,0.62,0,0,0,8,4.7,0,0,0,0,136.53,0.14,0.9,85.09,984,241,1.7000000000000002 +2008,3,24,0,30,6.7,0.8,0.121,0.62,0,0,0,0,3.9000000000000004,0,0,0,0,133.55,0.14,0.9,82.28,983,233,2 +2008,3,24,1,30,6.9,0.77,0.138,0.62,0,0,0,4,3.9000000000000004,0,0,0,0,127.17,0.14,0.9,81.16,983,228,2.6 +2008,3,24,2,30,7,0.75,0.149,0.62,0,0,0,7,3.9000000000000004,0,0,0,0,118.48,0.14,0.9,80.82000000000001,983,231,3.3000000000000003 +2008,3,24,3,30,6.9,0.78,0.153,0.62,0,0,0,7,3.7,0,0,0,0,108.41,0.14,1,80.25,984,237,3.7 +2008,3,24,4,30,6.9,0.77,0.14200000000000002,0.62,0,0,0,9,3.4000000000000004,0,0,0,0,97.59,0.14,1,78.18,984,243,4.3 +2008,3,24,5,30,7.4,0.73,0.14,0.62,27,134,36,9,3.3000000000000003,18,0,7,18,86.25,0.14,1,75.19,984,248,5.2 +2008,3,24,6,30,8.1,0.6900000000000001,0.154,0.62,81,498,207,8,3.4000000000000004,136,67,0,153,75.29,0.14,0.9,72.22,985,251,6.1000000000000005 +2008,3,24,7,30,8.6,0.65,0.14200000000000002,0.62,106,701,407,8,2.1,219,253,0,327,64.63,0.14,0.8,63.72,985,251,6.7 +2008,3,24,8,30,9.200000000000001,0.66,0.122,0.62,114,821,586,4,0.6000000000000001,333,72,0,374,54.870000000000005,0.14,0.8,54.72,985,251,6.800000000000001 +2008,3,24,9,30,9.600000000000001,0.65,0.131,0.62,128,862,718,7,-0.2,60,0,0,60,46.81,0.14,0.8,50.26,984,251,6.800000000000001 +2008,3,24,10,30,9.700000000000001,0.62,0.14400000000000002,0.62,140,871,792,0,-0.2,140,871,0,792,41.56,0.14,0.9,50.06,983,254,7 +2008,3,24,11,30,9.4,0.62,0.178,0.62,158,841,799,7,0.9,384,267,0,587,40.32,0.14,1,55.43,983,257,7.1000000000000005 +2008,3,24,12,30,8.9,0.6900000000000001,0.28700000000000003,0.62,201,735,734,7,2.3000000000000003,360,350,0,614,43.45,0.14,1.1,63.24,983,261,7 +2008,3,24,13,30,8.5,0.74,0.28,0.62,185,699,633,6,2.9000000000000004,279,26,0,296,50.1,0.14,1.1,67.99,983,263,6.5 +2008,3,24,14,30,8.200000000000001,0.72,0.243,0.62,152,650,487,6,3.1,168,6,0,171,59.03,0.14,1.1,70.15,983,264,5.5 +2008,3,24,15,30,7.4,0.75,0.225,0.62,118,531,306,6,3.3000000000000003,7,0,0,7,69.26,0.14,1.1,75.3,983,269,4 +2008,3,24,16,30,6.4,0.76,0.211,0.62,68,292,118,9,3.8000000000000003,3,0,0,3,80.12,0.14,1.1,83.53,983,285,2.4000000000000004 +2008,3,24,17,30,5.7,0.8200000000000001,0.179,0.62,0,0,0,9,4,0,0,0,0,91.35000000000001,0.14,1,88.9,984,307,1.9000000000000001 +2008,3,24,18,30,5.300000000000001,0.9500000000000001,0.16,0.62,0,0,0,4,3.7,0,0,0,0,102.36,0.14,1,89.71000000000001,985,319,2.1 +2008,3,24,19,30,4.9,1.07,0.14300000000000002,0.62,0,0,0,0,3.4000000000000004,0,0,0,0,112.87,0.14,0.9,90.25,985,323,2.2 +2008,3,24,20,30,4.5,1.1400000000000001,0.127,0.62,0,0,0,4,3.2,0,0,0,0,122.36,0.14,0.9,91.25,986,323,2.2 +2008,3,24,21,30,4,1.17,0.121,0.62,0,0,0,4,3,0,0,0,0,130.09,0.14,0.9,92.94,987,319,1.9000000000000001 +2008,3,24,22,30,3.6,1.18,0.117,0.62,0,0,0,0,2.7,0,0,0,0,135.02,0.14,0.8,93.62,987,310,1.8 +2008,3,24,23,30,3.5,1.17,0.115,0.62,0,0,0,1,2.5,0,0,0,0,136.14000000000001,0.14,0.9,92.99,988,297,1.9000000000000001 +2008,3,25,0,30,4,1.1300000000000001,0.11800000000000001,0.62,0,0,0,8,2.4000000000000004,0,0,0,0,133.16,0.14,0.9,89.59,988,288,2.3000000000000003 +2008,3,25,1,30,4.7,1.07,0.122,0.62,0,0,0,4,2.4000000000000004,0,0,0,0,126.79,0.14,0.9,84.98,988,286,2.9000000000000004 +2008,3,25,2,30,5.2,0.96,0.128,0.62,0,0,0,0,1.8,0,0,0,0,118.13,0.14,0.8,78.63,988,291,3.3000000000000003 +2008,3,25,3,30,4.7,0.97,0.108,0.62,0,0,0,1,1.2000000000000002,0,0,0,0,108.08,0.14,0.7000000000000001,78.09,989,297,3.2 +2008,3,25,4,30,4.2,0.96,0.079,0.62,0,0,0,4,0.6000000000000001,0,0,0,0,97.27,0.14,0.8,77.55,989,301,2.5 +2008,3,25,5,30,5.9,0.9,0.07200000000000001,0.62,25,269,44,4,1.3,14,0,7,14,85.94,0.14,0.9,72.13,989,298,2 +2008,3,25,6,30,8.4,0.8300000000000001,0.079,0.62,62,621,223,4,2.8000000000000003,8,0,0,8,74.97,0.14,1.1,67.71000000000001,989,282,2.4000000000000004 +2008,3,25,7,30,9.700000000000001,0.79,0.101,0.62,90,748,414,7,3.8000000000000003,170,19,0,178,64.29,0.14,1.2000000000000002,66.68,990,266,3 +2008,3,25,8,30,10.4,0.73,0.117,0.62,111,813,583,5,5.2,341,94,0,395,54.52,0.14,1.3,70.17,990,258,3.4000000000000004 +2008,3,25,9,30,11.200000000000001,0.77,0.147,0.62,134,832,707,4,6.2,172,0,0,172,46.42,0.14,1.4000000000000001,71.51,990,257,3.7 +2008,3,25,10,30,12.600000000000001,0.77,0.128,0.62,130,874,788,3,6.7,438,140,0,543,41.160000000000004,0.14,1.4000000000000001,67.48,990,262,4.4 +2008,3,25,11,30,13.700000000000001,0.73,0.10200000000000001,0.62,119,906,813,3,6.7,386,39,0,416,39.93,0.14,1.3,62.61,990,266,5 +2008,3,25,12,30,14.100000000000001,0.77,0.106,0.62,117,890,766,2,6.1000000000000005,342,13,0,352,43.11,0.14,1.3,58.65,990,269,5.2 +2008,3,25,13,30,14.100000000000001,0.76,0.097,0.62,107,868,667,1,5.7,107,868,0,667,49.81,0.14,1.2000000000000002,57.04,990,271,5.1000000000000005 +2008,3,25,14,30,13.700000000000001,0.76,0.093,0.62,95,811,515,0,5.300000000000001,95,811,0,515,58.78,0.14,1.2000000000000002,56.95,990,275,4.7 +2008,3,25,15,30,12.8,0.79,0.099,0.62,80,689,327,0,5.1000000000000005,80,689,0,327,69.03,0.14,1.2000000000000002,59.67,990,280,3.7 +2008,3,25,16,30,10.8,0.8300000000000001,0.1,0.62,53,454,132,0,6.300000000000001,53,454,0,132,79.91,0.14,1.2000000000000002,73.55,991,284,2.4000000000000004 +2008,3,25,17,30,9,0.89,0.097,0.62,0,0,0,0,6.300000000000001,0,0,0,0,91.14,0.14,1.1,83.24,991,292,1.9000000000000001 +2008,3,25,18,30,8.3,0.98,0.095,0.62,0,0,0,0,5.800000000000001,0,0,0,0,102.14,0.14,1.1,84.35000000000001,992,307,1.7000000000000002 +2008,3,25,19,30,7.7,1.06,0.088,0.62,0,0,0,0,5.1000000000000005,0,0,0,0,112.63,0.14,1.1,83.76,992,331,1.5 +2008,3,25,20,30,7.1000000000000005,1.1300000000000001,0.082,0.62,0,0,0,0,4.4,0,0,0,0,122.09,0.14,1,82.92,993,185,1.3 +2008,3,25,21,30,6.4,1.17,0.078,0.62,0,0,0,0,3.8000000000000003,0,0,0,0,129.77,0.14,1,83.18,993,40,1.2000000000000002 +2008,3,25,22,30,5.9,1.2,0.077,0.62,0,0,0,0,3.3000000000000003,0,0,0,0,134.65,0.14,1,83.37,993,69,1.3 +2008,3,25,23,30,5.5,1.21,0.077,0.62,0,0,0,0,3.1,0,0,0,0,135.74,0.14,1,84.61,993,90,1.5 +2008,3,26,0,30,5.1000000000000005,1.22,0.078,0.62,0,0,0,0,3.2,0,0,0,0,132.76,0.14,1.1,87.27,993,103,1.6 +2008,3,26,1,30,4.7,1.22,0.081,0.62,0,0,0,0,3.4000000000000004,0,0,0,0,126.41,0.14,1.1,91.03,993,111,1.8 +2008,3,26,2,30,4.5,1.22,0.085,0.62,0,0,0,0,3.6,0,0,0,0,117.78,0.14,1.2000000000000002,93.72,993,116,1.9000000000000001 +2008,3,26,3,30,4.4,1.2,0.09,0.62,0,0,0,0,3.7,0,0,0,0,107.75,0.14,1.3,95.3,993,120,2 +2008,3,26,4,30,4.9,1.18,0.098,0.62,0,0,0,0,3.8000000000000003,0,0,0,0,96.95,0.14,1.3,92.75,994,123,2.1 +2008,3,26,5,30,7.2,1.1500000000000001,0.109,0.62,28,227,45,0,4.1000000000000005,28,227,0,45,85.63,0.14,1.4000000000000001,80.88,994,125,2.9000000000000004 +2008,3,26,6,30,10.100000000000001,1.1500000000000001,0.115,0.62,70,571,221,0,5,70,571,0,221,74.65,0.14,1.5,70.52,994,134,3.8000000000000003 +2008,3,26,7,30,11.8,1.1,0.133,0.62,99,712,412,4,6.1000000000000005,112,0,0,112,63.96,0.14,1.5,68.1,995,149,3.9000000000000004 +2008,3,26,8,30,12.700000000000001,1.06,0.129,0.62,113,802,583,4,6.5,169,0,0,169,54.160000000000004,0.14,1.6,65.85,995,157,3.9000000000000004 +2008,3,26,9,30,12.9,0.99,0.181,0.62,146,804,704,4,6.4,113,0,0,113,46.04,0.14,1.6,64.56,995,159,4.1000000000000005 +2008,3,26,10,30,12.700000000000001,0.97,0.201,0.62,161,814,777,4,6.5,167,0,0,167,40.76,0.14,1.6,65.8,995,161,4.2 +2008,3,26,11,30,12.700000000000001,0.92,0.193,0.62,160,824,795,4,6.6000000000000005,290,0,0,290,39.550000000000004,0.14,1.6,66.4,994,164,4.1000000000000005 +2008,3,26,12,30,12.700000000000001,0.9,0.177,0.62,150,822,753,4,6.6000000000000005,324,2,0,326,42.77,0.14,1.6,66.56,993,170,4 +2008,3,26,13,30,12.8,0.85,0.178,0.62,142,781,650,2,6.6000000000000005,331,53,0,366,49.52,0.14,1.6,65.92,993,177,3.9000000000000004 +2008,3,26,14,30,12.600000000000001,0.76,0.17200000000000001,0.62,127,716,501,4,6.5,22,0,0,22,58.53,0.14,1.5,66.31,993,184,3.6 +2008,3,26,15,30,12,0.74,0.188,0.62,109,569,315,3,6.5,17,0,0,17,68.81,0.14,1.5,69.01,992,189,2.9000000000000004 +2008,3,26,16,30,10.8,0.72,0.189,0.62,68,320,125,4,7.1000000000000005,22,0,7,22,79.7,0.14,1.5,77.76,992,189,1.9000000000000001 +2008,3,26,17,30,9.700000000000001,0.71,0.17200000000000001,0.62,0,0,0,4,7.2,0,0,0,0,90.93,0.14,1.5,84.33,992,186,1.4000000000000001 +2008,3,26,18,30,9.5,0.76,0.166,0.62,0,0,0,0,6.9,0,0,0,0,101.93,0.14,1.5,83.95,992,183,1.3 +2008,3,26,19,30,9.5,0.81,0.164,0.62,0,0,0,4,6.9,0,0,0,0,112.39,0.14,1.5,83.77,992,179,1.2000000000000002 +2008,3,26,20,30,9.5,0.8200000000000001,0.16,0.62,0,0,0,1,6.9,0,0,0,0,121.81,0.14,1.5,83.84,992,176,1.1 +2008,3,26,21,30,9.4,0.87,0.176,0.62,0,0,0,7,6.9,0,0,0,0,129.45,0.14,1.5,84.58,992,180,1.1 +2008,3,26,22,30,9.1,0.9,0.179,0.62,0,0,0,3,6.9,0,0,0,0,134.28,0.14,1.5,86.08,991,189,1.1 +2008,3,26,23,30,8.9,0.89,0.168,0.62,0,0,0,4,6.9,0,0,0,0,135.34,0.14,1.6,87.45,991,197,1.1 +2008,3,27,0,30,8.6,0.91,0.167,0.62,0,0,0,7,6.9,0,0,0,0,132.37,0.15,1.6,88.81,990,199,1.1 +2008,3,27,1,30,8.4,0.92,0.156,0.62,0,0,0,5,6.800000000000001,0,0,0,0,126.04,0.15,1.6,89.46000000000001,990,193,1.1 +2008,3,27,2,30,8.3,0.92,0.138,0.62,0,0,0,5,6.800000000000001,0,0,0,0,117.42,0.15,1.6,90.19,990,182,1.2000000000000002 +2008,3,27,3,30,8.3,0.9500000000000001,0.14300000000000002,0.62,0,0,0,7,6.9,0,0,0,0,107.41,0.15,1.6,90.64,989,173,1.2000000000000002 +2008,3,27,4,30,8.5,0.9500000000000001,0.15,0.62,0,0,0,3,7.1000000000000005,0,0,0,0,96.63,0.15,1.6,90.60000000000001,989,166,1.4000000000000001 +2008,3,27,5,30,9.700000000000001,0.9400000000000001,0.15,0.62,32,173,46,5,7.6000000000000005,5,0,7,5,85.33,0.15,1.6,87.05,989,163,2.1 +2008,3,27,6,30,10.9,0.9500000000000001,0.158,0.62,82,509,219,7,8.6,36,0,0,36,74.33,0.15,1.6,85.54,989,164,3 +2008,3,27,7,30,11.600000000000001,0.9500000000000001,0.14400000000000002,0.62,104,695,413,7,8.5,186,34,0,201,63.620000000000005,0.15,1.6,81.16,989,164,3.4000000000000004 +2008,3,27,8,30,12.3,0.9400000000000001,0.124,0.62,112,806,587,6,8.200000000000001,206,11,0,213,53.800000000000004,0.15,1.6,75.82000000000001,989,158,3.3000000000000003 +2008,3,27,9,30,13,0.9500000000000001,0.11800000000000001,0.62,118,860,719,7,7.7,339,120,0,422,45.660000000000004,0.15,1.6,70.39,988,153,3 +2008,3,27,10,30,13.5,0.97,0.117,0.62,123,884,797,7,7.4,323,347,0,588,40.36,0.15,1.6,66.7,988,154,2.6 +2008,3,27,11,30,13.600000000000001,0.97,0.121,0.62,126,886,813,6,7.2,342,36,0,370,39.160000000000004,0.15,1.6,65.09,988,158,2.2 +2008,3,27,12,30,13.3,1.01,0.11800000000000001,0.62,121,873,766,7,6.9,109,0,0,109,42.43,0.15,1.7000000000000002,65.28,988,167,1.9000000000000001 +2008,3,27,13,30,12.700000000000001,1,0.129,0.62,120,829,661,7,6.9,27,0,0,27,49.230000000000004,0.15,1.7000000000000002,67.87,988,181,1.6 +2008,3,27,14,30,12.100000000000001,1.01,0.128,0.62,107,763,508,6,7.1000000000000005,88,1,0,88,58.29,0.15,1.8,71.64,988,202,1.3 +2008,3,27,15,30,11.200000000000001,1.04,0.135,0.62,90,639,323,6,7.7,95,3,0,96,68.60000000000001,0.15,1.8,79.09,988,225,1.1 +2008,3,27,16,30,10.200000000000001,1.06,0.14300000000000002,0.62,60,399,132,7,8.4,3,0,0,3,79.5,0.15,1.8,88.43,989,245,1 +2008,3,27,17,30,9.600000000000001,1.07,0.146,0.62,0,0,0,8,8.200000000000001,0,0,0,0,90.14,0.15,1.8,91.23,989,264,1 +2008,3,27,18,30,9.4,1.11,0.185,0.62,0,0,0,8,8.200000000000001,0,0,0,0,101.71000000000001,0.15,1.8,92.31,989,281,1.2000000000000002 +2008,3,27,19,30,9.200000000000001,1.1300000000000001,0.193,0.62,0,0,0,7,8.1,0,0,0,0,112.15,0.15,1.8,93,989,294,1.3 +2008,3,27,20,30,9,1.1400000000000001,0.183,0.62,0,0,0,7,8,0,0,0,0,121.54,0.15,1.8,93.63,989,303,1.3 +2008,3,27,21,30,8.700000000000001,1.16,0.223,0.62,0,0,0,7,7.9,0,0,0,0,129.13,0.15,1.8,94.57000000000001,989,311,1.3 +2008,3,27,22,30,8.6,1.19,0.246,0.62,0,0,0,7,7.7,0,0,0,0,133.92000000000002,0.15,1.8,93.95,989,316,1.3 +2008,3,27,23,30,8.4,1.19,0.247,0.62,0,0,0,7,7.5,0,0,0,0,134.95,0.15,1.8,94.09,989,319,1.3 +2008,3,28,0,30,8.200000000000001,1.2,0.275,0.62,0,0,0,4,7.300000000000001,0,0,0,0,131.97,0.14,1.8,93.8,988,326,1.4000000000000001 +2008,3,28,1,30,7.9,1.21,0.28200000000000003,0.62,0,0,0,7,7,0,0,0,0,125.66,0.14,1.8,93.83,988,335,1.4000000000000001 +2008,3,28,2,30,7.7,1.23,0.271,0.62,0,0,0,6,6.6000000000000005,0,0,0,0,117.07000000000001,0.14,1.8,92.78,988,347,1.4000000000000001 +2008,3,28,3,30,7.4,1.22,0.273,0.62,0,0,0,6,6.300000000000001,0,0,0,0,107.08,0.14,1.8,92.53,988,178,1.4000000000000001 +2008,3,28,4,30,7.4,1.19,0.261,0.62,0,0,0,7,6.1000000000000005,0,0,0,0,96.31,0.14,1.8,91.18,989,7,1.6 +2008,3,28,5,30,8,1.1300000000000001,0.234,0.62,35,129,46,7,6.2,3,0,7,3,85.02,0.14,1.8,88.14,989,14,2.3000000000000003 +2008,3,28,6,30,9.1,1.03,0.213,0.62,93,453,218,5,6.300000000000001,12,0,0,12,74.01,0.14,1.8,82.92,990,21,3 +2008,3,28,7,30,11.100000000000001,0.88,0.209,0.62,126,623,406,8,6.7,141,7,0,144,63.29,0.14,1.8,74.2,991,34,3.3000000000000003 +2008,3,28,8,30,13.8,0.68,0.226,0.62,154,696,569,8,7.1000000000000005,297,145,0,383,53.45,0.14,1.8,64.16,992,56,3.2 +2008,3,28,9,30,16,0.62,0.14400000000000002,0.62,132,823,711,2,7.2,408,182,0,536,45.28,0.14,1.8,55.95,993,74,3 +2008,3,28,10,30,17.1,0.55,0.14100000000000001,0.62,137,849,787,0,7.4,137,849,0,787,39.97,0.14,1.8,52.94,994,76,2.8000000000000003 +2008,3,28,11,30,17.6,0.53,0.14200000000000002,0.62,139,852,803,0,7.7,139,852,0,803,38.78,0.14,1.8,52.4,994,71,2.7 +2008,3,28,12,30,17.900000000000002,0.51,0.133,0.62,132,846,759,0,7.9,132,846,0,759,42.09,0.14,1.8,51.870000000000005,995,68,2.6 +2008,3,28,13,30,17.900000000000002,0.6,0.132,0.62,124,814,658,0,8,124,814,0,658,48.95,0.14,1.8,52.24,996,64,2.4000000000000004 +2008,3,28,14,30,17.7,0.7000000000000001,0.139,0.62,113,743,507,2,8,305,84,0,349,58.04,0.14,1.8,52.86,997,59,2.1 +2008,3,28,15,30,16.8,0.78,0.14400000000000002,0.62,95,620,324,2,8.1,180,14,0,185,68.38,0.14,1.8,56.32,998,51,1.5 +2008,3,28,16,30,14.700000000000001,0.84,0.14400000000000002,0.62,62,392,135,0,10.4,62,392,0,135,79.3,0.14,1.7000000000000002,75.55,999,44,1.1 +2008,3,28,17,30,12.8,0.89,0.14300000000000002,0.62,0,0,0,0,9.200000000000001,0,0,0,0,89.97,0.14,1.7000000000000002,78.79,1001,43,1.3 +2008,3,28,18,30,11.700000000000001,0.92,0.14400000000000002,0.62,0,0,0,0,8.5,0,0,0,0,101.5,0.14,1.7000000000000002,80.99,1002,47,1.4000000000000001 +2008,3,28,19,30,10.8,0.93,0.145,0.62,0,0,0,0,8.1,0,0,0,0,111.91,0.14,1.7000000000000002,83.37,1003,53,1.5 +2008,3,28,20,30,10,0.93,0.145,0.62,0,0,0,0,7.6000000000000005,0,0,0,0,121.26,0.14,1.7000000000000002,85.12,1003,61,1.5 +2008,3,28,21,30,9.5,0.93,0.146,0.62,0,0,0,0,7.1000000000000005,0,0,0,0,128.81,0.14,1.7000000000000002,84.97,1004,67,1.5 +2008,3,28,22,30,9.4,0.93,0.147,0.62,0,0,0,0,6.6000000000000005,0,0,0,0,133.55,0.14,1.7000000000000002,82.39,1004,69,1.4000000000000001 +2008,3,28,23,30,9.8,0.9400000000000001,0.148,0.62,0,0,0,0,6.1000000000000005,0,0,0,0,134.55,0.14,1.7000000000000002,77.7,1005,64,1.1 +2008,3,29,0,30,10.200000000000001,0.97,0.149,0.62,0,0,0,0,5.6000000000000005,0,0,0,0,131.58,0.14,1.7000000000000002,73.24,1005,42,0.8 +2008,3,29,1,30,10.200000000000001,0.99,0.146,0.62,0,0,0,0,5.4,0,0,0,0,125.29,0.14,1.7000000000000002,71.89,1005,186,0.8 +2008,3,29,2,30,9.9,0.99,0.14,0.62,0,0,0,0,5.4,0,0,0,0,116.72,0.14,1.6,73.74,1006,350,1 +2008,3,29,3,30,9.4,0.99,0.134,0.62,0,0,0,0,5.5,0,0,0,0,106.75,0.14,1.5,76.47,1006,177,1.2000000000000002 +2008,3,29,4,30,9.200000000000001,0.98,0.127,0.62,0,0,0,0,5.6000000000000005,0,0,0,0,95.99000000000001,0.14,1.4000000000000001,78.05,1006,9,1.2000000000000002 +2008,3,29,5,30,10.600000000000001,0.98,0.11800000000000001,0.62,34,247,56,1,6.1000000000000005,34,247,0,56,84.71000000000001,0.14,1.3,73.59,1006,17,1.4000000000000001 +2008,3,29,6,30,13.200000000000001,1.03,0.111,0.62,71,599,239,0,7.2,71,599,0,239,73.69,0.14,1.2000000000000002,66.88,1007,184,2 +2008,3,29,7,30,15.3,1.05,0.11,0.62,93,759,438,1,7.2,93,759,0,438,62.96,0.14,1.1,58.65,1007,340,2.5 +2008,3,29,8,30,16.7,1.07,0.109,0.62,105,843,611,0,7.2,105,843,0,611,53.09,0.14,1.1,53.38,1008,324,2.7 +2008,3,29,9,30,17.7,1.23,0.105,0.62,111,894,744,0,6.800000000000001,111,894,0,744,44.9,0.14,1.1,48.67,1008,314,2.9000000000000004 +2008,3,29,10,30,18.5,1.28,0.109,0.62,117,909,818,0,6.300000000000001,117,909,0,818,39.57,0.14,1.2000000000000002,45.03,1008,307,3 +2008,3,29,11,30,18.900000000000002,1.28,0.11900000000000001,0.62,123,905,832,0,6.1000000000000005,123,905,0,832,38.4,0.14,1.2000000000000002,43.17,1008,302,3.1 +2008,3,29,12,30,19,1.36,0.12,0.62,119,892,785,0,6,119,892,0,785,41.75,0.14,1.2000000000000002,42.56,1008,298,3.1 +2008,3,29,13,30,18.900000000000002,1.35,0.117,0.62,112,862,681,0,5.9,112,862,0,681,48.660000000000004,0.14,1.2000000000000002,42.61,1007,294,3 +2008,3,29,14,30,18.3,1.32,0.114,0.62,100,808,530,0,5.9,100,808,0,530,57.800000000000004,0.14,1.1,44.22,1007,290,3.1 +2008,3,29,15,30,16.900000000000002,1.2,0.113,0.62,83,696,343,0,6.2,83,696,0,343,68.16,0.14,1.1,49.2,1008,284,2.8000000000000003 +2008,3,29,16,30,14.200000000000001,1.16,0.116,0.62,56,471,145,0,8.6,56,471,0,145,79.09,0.14,1.1,68.92,1008,280,2.3000000000000003 +2008,3,29,17,30,11.9,1.12,0.12,0.62,0,0,0,0,8.700000000000001,0,0,0,0,89.79,0.14,1.1,81.04,1008,285,2 +2008,3,29,18,30,10.8,1.1,0.12,0.62,0,0,0,0,8.5,0,0,0,0,101.28,0.14,1.1,85.84,1009,295,1.8 +2008,3,29,19,30,10.100000000000001,1.07,0.12,0.62,0,0,0,0,8.4,0,0,0,0,111.67,0.14,1,89.23,1009,308,1.6 +2008,3,29,20,30,9.700000000000001,1.05,0.121,0.62,0,0,0,0,8.200000000000001,0,0,0,0,120.99000000000001,0.14,1,90.25,1009,322,1.5 +2008,3,29,21,30,9.600000000000001,1.05,0.123,0.62,0,0,0,0,7.9,0,0,0,0,128.48,0.14,1,89.39,1009,338,1.4000000000000001 +2008,3,29,22,30,9.700000000000001,1.05,0.124,0.62,0,0,0,0,7.5,0,0,0,0,133.18,0.14,1,86.41,1009,176,1.3 +2008,3,29,23,30,9.8,1.05,0.123,0.62,0,0,0,0,7,0,0,0,0,134.16,0.14,1,82.68,1009,13,1.3 +2008,3,30,0,30,9.8,1.05,0.123,0.62,0,0,0,0,6.4,0,0,0,0,131.18,0.14,1,79.62,1009,30,1.4000000000000001 +2008,3,30,1,30,9.5,1.06,0.124,0.62,0,0,0,0,5.9,0,0,0,0,124.92,0.14,0.9,78.36,1009,46,1.4000000000000001 +2008,3,30,2,30,9.1,1.05,0.123,0.62,0,0,0,0,5.4,0,0,0,0,116.37,0.14,0.9,77.66,1009,62,1.5 +2008,3,30,3,30,8.4,1.05,0.122,0.62,0,0,0,0,4.9,0,0,0,0,106.42,0.14,0.9,78.85000000000001,1009,75,1.6 +2008,3,30,4,30,8.200000000000001,1.04,0.122,0.62,0,0,0,0,4.6000000000000005,0,0,0,0,95.67,0.14,0.8,77.95,1009,85,1.6 +2008,3,30,5,30,10.200000000000001,1.03,0.123,0.62,35,270,62,0,5.2,35,270,0,62,84.4,0.14,0.8,71.36,1009,93,2 +2008,3,30,6,30,13.3,0.96,0.133,0.62,78,582,245,0,6.1000000000000005,78,582,0,245,73.37,0.14,0.9,61.74,1010,108,2.5 +2008,3,30,7,30,15.9,0.97,0.136,0.62,103,737,442,0,5.9,103,737,0,442,62.63,0.14,0.9,51.53,1010,137,2.6 +2008,3,30,8,30,17.7,0.97,0.14100000000000001,0.62,120,814,612,0,6.300000000000001,120,814,0,612,52.74,0.14,1,47.32,1010,164,2.8000000000000003 +2008,3,30,9,30,18.7,1.01,0.14,0.62,128,864,744,0,6.9,128,864,0,744,44.52,0.14,1,46.22,1010,177,3.1 +2008,3,30,10,30,19.3,1.03,0.14400000000000002,0.62,136,880,818,0,7.4,136,880,0,818,39.17,0.14,1.1,46.09,1010,185,3.4000000000000004 +2008,3,30,11,30,19.400000000000002,1.05,0.149,0.62,139,881,833,0,7.800000000000001,139,881,0,833,38.02,0.14,1.1,46.87,1009,191,3.6 +2008,3,30,12,30,19.1,0.97,0.17500000000000002,0.62,148,844,780,0,8,148,844,0,780,41.42,0.14,1.1,48.410000000000004,1009,195,3.6 +2008,3,30,13,30,18.5,0.97,0.18,0.62,142,803,675,0,8,142,803,0,675,48.38,0.14,1.1,50.27,1008,198,3.4000000000000004 +2008,3,30,14,30,17.7,0.97,0.185,0.62,129,729,520,7,7.9,245,376,0,447,57.56,0.14,1.1,52.68,1008,199,3 +2008,3,30,15,30,16.400000000000002,1.03,0.159,0.62,99,642,340,2,7.9,222,79,0,251,67.95,0.14,1,57.36,1008,199,2.3000000000000003 +2008,3,30,16,30,14.3,1.03,0.146,0.62,63,431,146,1,9.5,63,431,0,146,78.89,0.14,1,72.77,1008,201,1.4000000000000001 +2008,3,30,17,30,12.5,1.01,0.139,0.62,0,0,0,1,9.4,0,0,0,0,89.62,0.14,0.9,81.13,1008,197,1.1 +2008,3,30,18,30,11.9,1.01,0.139,0.62,0,0,0,0,8.5,0,0,0,0,101.06,0.14,0.9,79.83,1008,180,1 +2008,3,30,19,30,11.4,1,0.147,0.62,0,0,0,1,8.3,0,0,0,0,111.43,0.14,0.9,81.36,1007,157,1 +2008,3,30,20,30,10.8,1.01,0.158,0.62,0,0,0,5,8.200000000000001,0,0,0,0,120.71000000000001,0.14,0.9,83.74,1007,139,1.1 +2008,3,30,21,30,10.4,1.01,0.164,0.62,0,0,0,5,7.9,0,0,0,0,128.16,0.14,0.9,84.55,1007,129,1.3 +2008,3,30,22,30,10,1.01,0.17,0.62,0,0,0,8,7.6000000000000005,0,0,0,0,132.82,0.14,0.8,84.79,1007,125,1.4000000000000001 +2008,3,30,23,30,9.8,1,0.17500000000000002,0.62,0,0,0,4,7.1000000000000005,0,0,0,0,133.77,0.14,0.8,83.5,1006,124,1.5 +2008,3,31,0,30,9.700000000000001,0.98,0.178,0.62,0,0,0,4,6.800000000000001,0,0,0,0,130.79,0.14,0.8,82.37,1005,126,1.6 +2008,3,31,1,30,9.600000000000001,0.97,0.181,0.62,0,0,0,4,6.5,0,0,0,0,124.54,0.14,0.8,81.16,1005,132,1.6 +2008,3,31,2,30,9.4,0.96,0.185,0.62,0,0,0,5,6.300000000000001,0,0,0,0,116.02,0.14,0.9,80.98,1005,139,1.7000000000000002 +2008,3,31,3,30,9,0.9500000000000001,0.186,0.62,0,0,0,1,6.300000000000001,0,0,0,0,106.09,0.14,1,83.24,1004,140,1.8 +2008,3,31,4,30,9.1,0.9500000000000001,0.182,0.62,0,0,0,0,6.300000000000001,0,0,0,0,95.35000000000001,0.14,1,82.63,1004,137,1.9000000000000001 +2008,3,31,5,30,11,0.96,0.178,0.62,41,203,62,0,7,41,203,0,62,84.10000000000001,0.14,1.1,76.24,1004,135,2.5 +2008,3,31,6,30,13.4,0.97,0.182,0.62,91,520,243,0,7.5,91,520,0,243,73.05,0.14,1.1,67.46000000000001,1004,140,3.5 +2008,3,31,7,30,15.100000000000001,1,0.188,0.62,122,675,436,0,7.6000000000000005,122,675,0,436,62.300000000000004,0.14,1.2000000000000002,61.050000000000004,1004,149,4.1000000000000005 +2008,3,31,8,30,16.2,1.03,0.19,0.62,139,765,606,0,7.300000000000001,139,765,0,606,52.39,0.14,1.2000000000000002,55.58,1004,154,4.3 +2008,3,31,9,30,16.5,0.78,0.254,0.62,181,755,723,8,7.5,319,430,0,627,44.14,0.14,1.2000000000000002,55.31,1003,158,4.2 +2008,3,31,10,30,16.7,0.79,0.253,0.62,187,781,796,7,7.7,323,440,0,666,38.78,0.14,1.3,55.370000000000005,1003,159,4.2 +2008,3,31,11,30,16.7,0.8,0.256,0.62,190,784,811,7,7.9,340,417,0,670,37.64,0.14,1.3,55.94,1003,158,4.3 +2008,3,31,12,30,16.8,0.89,0.177,0.62,151,834,780,8,8,318,450,0,657,41.08,0.14,1.3,56.13,1002,157,4.3 +2008,3,31,13,30,16.7,0.92,0.189,0.62,148,788,674,0,8.200000000000001,148,788,0,674,48.1,0.14,1.3,57.25,1002,155,4.1000000000000005 +2008,3,31,14,30,16.5,0.9500000000000001,0.201,0.62,137,708,519,0,8.4,137,708,0,519,57.32,0.14,1.3,58.67,1002,153,3.9000000000000004 +2008,3,31,15,30,15.700000000000001,0.99,0.17,0.62,103,617,337,8,8.5,192,223,0,277,67.73,0.14,1.4000000000000001,62.25,1002,151,3 +2008,3,31,16,30,13.8,0.99,0.167,0.62,67,395,145,1,9.700000000000001,67,395,0,145,78.69,0.14,1.4000000000000001,76.37,1002,149,1.9000000000000001 +2008,3,31,17,30,12.100000000000001,0.98,0.167,0.62,0,0,0,7,9.8,0,0,7,0,89.45,0.14,1.4000000000000001,85.85000000000001,1002,144,1.5 +2008,3,31,18,30,11.5,0.98,0.176,0.62,0,0,0,0,9.3,0,0,0,0,100.85000000000001,0.14,1.4000000000000001,86.49,1002,133,1.4000000000000001 +2008,3,31,19,30,11.100000000000001,0.98,0.188,0.62,0,0,0,0,9.1,0,0,0,0,111.19,0.14,1.4000000000000001,87.22,1002,115,1.4000000000000001 +2008,3,31,20,30,10.8,1,0.2,0.62,0,0,0,0,8.700000000000001,0,0,0,0,120.44,0.14,1.4000000000000001,86.9,1002,95,1.4000000000000001 +2008,3,31,21,30,10.600000000000001,1.04,0.21,0.62,0,0,0,0,8.3,0,0,0,0,127.84,0.14,1.3,85.52,1002,78,1.4000000000000001 +2008,3,31,22,30,10.5,1.1,0.221,0.62,0,0,0,0,7.7,0,0,0,0,132.45,0.14,1.3,83.03,1002,63,1.4000000000000001 +2008,3,31,23,30,10.3,1.18,0.23500000000000001,0.62,0,0,0,0,7.2,0,0,0,0,133.38,0.14,1.2000000000000002,80.95,1001,52,1.4000000000000001 +2008,4,1,0,30,10.100000000000001,1.24,0.249,0.63,0,0,0,0,6.7,0,0,0,0,130.4,0.14,1.2000000000000002,79.31,1001,47,1.5 +2008,4,1,1,30,9.8,1.26,0.256,0.63,0,0,0,0,6.300000000000001,0,0,0,0,124.17,0.14,1.1,78.58,1001,49,1.5 +2008,4,1,2,30,9.5,1.24,0.254,0.63,0,0,0,0,5.800000000000001,0,0,0,0,115.67,0.14,1.1,77.67,1000,52,1.6 +2008,4,1,3,30,9.1,1.18,0.245,0.63,0,0,0,1,5.300000000000001,0,0,0,0,105.76,0.14,1.1,77.26,1000,52,1.8 +2008,4,1,4,30,9.3,1.1,0.23,0.63,0,0,0,3,4.800000000000001,0,0,0,0,95.03,0.14,1.1,73.38,1001,53,2.2 +2008,4,1,5,30,11.200000000000001,1.03,0.214,0.63,44,187,64,3,4.800000000000001,22,0,7,22,83.79,0.14,1.1,64.79,1001,54,3.1 +2008,4,1,6,30,14,0.99,0.20600000000000002,0.63,97,500,245,0,4.4,97,500,0,245,72.74,0.14,1.1,52.410000000000004,1001,53,3.7 +2008,4,1,7,30,17,0.99,0.2,0.63,126,673,442,0,4.9,126,673,0,442,61.97,0.14,1,44.64,1002,58,3.5 +2008,4,1,8,30,19.6,1,0.196,0.63,143,767,615,0,4.800000000000001,143,767,0,615,52.04,0.14,1,37.7,1002,68,3 +2008,4,1,9,30,21.1,1.03,0.168,0.63,142,842,750,0,4.3,142,842,0,750,43.77,0.14,1,33.2,1002,69,2.1 +2008,4,1,10,30,22.1,1.04,0.17200000000000001,0.63,149,863,826,0,3.6,149,863,0,826,38.39,0.14,1,29.86,1002,51,1.3 +2008,4,1,11,30,22.6,1.03,0.17500000000000002,0.63,152,865,840,7,3.2,311,465,0,681,37.26,0.14,1,28.05,1002,187,0.8 +2008,4,1,12,30,22.6,1.04,0.166,0.63,144,854,791,0,3.4000000000000004,144,854,0,791,40.75,0.14,1.1,28.47,1002,318,1 +2008,4,1,13,30,22.200000000000003,1.04,0.17300000000000001,0.63,139,809,682,7,4.2,288,411,0,564,47.82,0.14,1.2000000000000002,30.76,1002,291,1.4000000000000001 +2008,4,1,14,30,21.3,1.04,0.179,0.63,127,734,526,0,5.1000000000000005,127,734,0,526,57.08,0.14,1.3,34.72,1002,281,1.9000000000000001 +2008,4,1,15,30,19.6,1.04,0.203,0.63,111,590,337,0,6.7,111,590,0,337,67.52,0.14,1.3,43.13,1002,281,1.8 +2008,4,1,16,30,17.2,1.03,0.202,0.63,72,363,144,0,10.9,72,363,0,144,78.49,0.14,1.4000000000000001,66.54,1003,300,1.3 +2008,4,1,17,30,15.100000000000001,1.01,0.2,0.63,0,0,0,0,10.100000000000001,0,0,0,0,89.28,0.14,1.3,72.17,1003,160,1.2000000000000002 +2008,4,1,18,30,13.9,0.98,0.195,0.63,0,0,0,0,9.4,0,0,0,0,100.63,0.14,1.3,74.4,1004,18,1.4000000000000001 +2008,4,1,19,30,13,0.9500000000000001,0.19,0.63,0,0,0,3,8.8,0,0,0,0,110.95,0.14,1.2000000000000002,75.7,1004,43,1.8 +2008,4,1,20,30,12,0.92,0.183,0.63,0,0,0,1,8.3,0,0,0,0,120.16,0.14,1.2000000000000002,78.24,1005,56,2 +2008,4,1,21,30,11.100000000000001,0.92,0.17400000000000002,0.63,0,0,0,3,7.6000000000000005,0,0,0,0,127.52,0.14,1.2000000000000002,79.23,1005,64,2.2 +2008,4,1,22,30,10.4,0.93,0.165,0.63,0,0,0,3,6.9,0,0,0,0,132.09,0.14,1.2000000000000002,79.13,1005,68,2.2 +2008,4,1,23,30,9.8,0.9500000000000001,0.16,0.63,0,0,0,0,6.300000000000001,0,0,0,0,132.99,0.14,1.2000000000000002,79.07000000000001,1005,69,2.2 +2008,4,2,0,30,9.4,0.98,0.16,0.63,0,0,0,0,5.7,0,0,0,0,130.01,0.14,1.2000000000000002,77.71000000000001,1005,67,2.1 +2008,4,2,1,30,9.1,1,0.167,0.63,0,0,0,0,5.1000000000000005,0,0,0,0,123.8,0.14,1.2000000000000002,75.96000000000001,1005,64,2 +2008,4,2,2,30,8.8,1.03,0.177,0.63,0,0,0,0,4.5,0,0,0,0,115.33,0.14,1.2000000000000002,74.34,1005,63,2 +2008,4,2,3,30,8.700000000000001,1.04,0.187,0.63,0,0,0,1,4,0,0,0,0,105.43,0.14,1.1,72.19,1005,65,1.9000000000000001 +2008,4,2,4,30,9.200000000000001,1.04,0.191,0.63,0,0,0,1,3.6,0,0,0,0,94.72,0.14,1.1,67.88,1005,70,1.7000000000000002 +2008,4,2,5,30,11.600000000000001,1.05,0.19,0.63,45,222,70,3,4.4,61,32,7,65,83.48,0.14,1.1,61.49,1005,76,1.8 +2008,4,2,6,30,14.8,0.97,0.202,0.63,97,508,251,8,4.7,164,151,0,210,72.43,0.14,1.1,50.870000000000005,1006,89,1.7000000000000002 +2008,4,2,7,30,17.400000000000002,0.98,0.201,0.63,126,667,443,3,3.4000000000000004,283,98,0,330,61.64,0.14,1.2000000000000002,39.17,1006,137,1.3 +2008,4,2,8,30,19.1,1.01,0.193,0.63,142,765,616,7,2.7,270,361,0,493,51.7,0.14,1.2000000000000002,33.56,1006,193,1.5 +2008,4,2,9,30,19.900000000000002,0.92,0.214,0.63,162,792,738,7,3.3000000000000003,308,448,0,634,43.39,0.14,1.3,33.37,1006,222,2 +2008,4,2,10,30,20,0.92,0.247,0.63,182,790,805,7,4.1000000000000005,323,445,0,673,38,0.14,1.4000000000000001,35.01,1005,240,2.6 +2008,4,2,11,30,19.400000000000002,0.92,0.28500000000000003,0.63,201,767,815,7,4.6000000000000005,346,433,0,693,36.88,0.14,1.4000000000000001,37.68,1005,248,3 +2008,4,2,12,30,18.6,0.93,0.303,0.63,203,736,763,0,4.9,203,736,0,763,40.42,0.14,1.5,40.58,1004,251,3.2 +2008,4,2,13,30,18.2,0.97,0.297,0.63,186,700,659,7,5.300000000000001,314,359,0,556,47.550000000000004,0.14,1.5,42.61,1003,259,3.4000000000000004 +2008,4,2,14,30,17.6,0.99,0.311,0.63,170,615,506,7,5.6000000000000005,264,64,0,299,56.85,0.14,1.5,45.24,1003,268,3.1 +2008,4,2,15,30,16.2,1,0.28200000000000003,0.63,133,511,330,7,6.300000000000001,174,31,0,186,67.31,0.14,1.5,51.89,1003,273,2 +2008,4,2,16,30,14.600000000000001,1.04,0.297,0.63,84,281,141,6,9.4,31,0,0,31,78.29,0.14,1.5,70.97,1003,274,1.2000000000000002 +2008,4,2,17,30,13.600000000000001,1.04,0.296,0.63,0,0,0,6,9.700000000000001,0,0,7,0,89.10000000000001,0.14,1.6,77.25,1002,280,1 +2008,4,2,18,30,13.100000000000001,1.04,0.296,0.63,0,0,0,6,9.600000000000001,0,0,0,0,100.41,0.14,1.7000000000000002,79.15,1002,293,1 +2008,4,2,19,30,12.8,1.04,0.297,0.63,0,0,0,3,9.600000000000001,0,0,0,0,110.71000000000001,0.14,1.7000000000000002,80.82000000000001,1002,309,1 +2008,4,2,20,30,12.100000000000001,1.05,0.268,0.63,0,0,0,5,9.600000000000001,0,0,0,0,119.88,0.14,1.7000000000000002,84.57000000000001,1002,330,1.1 +2008,4,2,21,30,11.100000000000001,1.06,0.24,0.63,0,0,0,4,9.3,0,0,0,0,127.2,0.14,1.6,88.5,1001,172,1.3 +2008,4,2,22,30,10.3,1.07,0.214,0.63,0,0,0,1,9.1,0,0,0,0,131.73,0.14,1.4000000000000001,92.28,1001,8,1.5 +2008,4,2,23,30,9.600000000000001,1.04,0.17300000000000001,0.63,0,0,0,0,8.6,0,0,0,0,132.6,0.14,1.2000000000000002,93.77,1001,17,1.8 +2008,4,3,0,30,8.9,1.02,0.132,0.63,0,0,0,0,7.7,0,0,0,0,129.63,0.14,1,92.02,1001,20,2.2 +2008,4,3,1,30,8.200000000000001,1.02,0.107,0.63,0,0,0,0,6.4,0,0,0,0,123.43,0.14,0.9,88.47,1001,22,2.6 +2008,4,3,2,30,7.5,1.04,0.096,0.63,0,0,0,0,5.300000000000001,0,0,0,0,114.98,0.14,0.8,86.18,1001,24,2.7 +2008,4,3,3,30,6.800000000000001,1.06,0.08700000000000001,0.63,0,0,0,0,4.5,0,0,0,0,105.10000000000001,0.14,0.7000000000000001,85.54,1001,24,2.7 +2008,4,3,4,30,7,1.07,0.079,0.63,0,0,0,0,4.2,0,0,0,0,94.4,0.14,0.7000000000000001,82.13,1001,23,3 +2008,4,3,5,30,8.700000000000001,1.08,0.077,0.63,36,406,84,0,4.6000000000000005,36,406,0,84,83.18,0.14,0.7000000000000001,75.71000000000001,1001,20,3.7 +2008,4,3,6,30,11.3,1.17,0.069,0.63,63,712,282,0,5.2,63,712,0,282,72.11,0.14,0.7000000000000001,65.93,1002,20,4.5 +2008,4,3,7,30,13.9,1.17,0.066,0.63,78,845,484,0,4.6000000000000005,78,845,0,484,61.32,0.14,0.7000000000000001,53.32,1002,19,4.9 +2008,4,3,8,30,15.700000000000001,1.17,0.063,0.63,86,912,656,0,3.3000000000000003,86,912,0,656,51.35,0.14,0.8,43.31,1002,16,5 +2008,4,3,9,30,16.900000000000002,1.17,0.061,0.63,92,951,787,0,2.5,92,951,0,787,43.02,0.14,0.8,38.160000000000004,1001,13,5 +2008,4,3,10,30,17.6,1.16,0.061,0.63,94,965,859,0,2.5,94,965,0,859,37.61,0.14,0.9,36.49,1001,11,5 +2008,4,3,11,30,17.8,1.18,0.062,0.63,95,967,873,0,2.8000000000000003,95,967,0,873,36.51,0.14,0.9,36.79,1001,9,5 +2008,4,3,12,30,17.400000000000002,1.16,0.069,0.63,96,945,820,0,3,96,945,0,820,40.1,0.14,1,38.25,1000,9,5.2 +2008,4,3,13,30,16.7,1.19,0.07200000000000001,0.63,93,914,713,0,3,93,914,0,713,47.27,0.14,1,39.96,1000,11,5.2 +2008,4,3,14,30,15.700000000000001,1.21,0.077,0.63,86,851,555,8,2.8000000000000003,225,387,0,438,56.61,0.14,1.1,41.910000000000004,1000,13,5 +2008,4,3,15,30,14.3,1.2,0.08600000000000001,0.63,76,741,364,7,2.7,187,217,0,271,67.1,0.14,1.1,45.63,1000,13,4.1000000000000005 +2008,4,3,16,30,12.3,1.26,0.092,0.63,54,536,164,8,4,82,11,0,84,78.09,0.14,1.1,56.78,1000,8,2.7 +2008,4,3,17,30,10.5,1.3,0.105,0.63,10,72,12,8,5.800000000000001,3,0,7,3,88.91,0.14,1.1,72.86,1001,181,2.2 +2008,4,3,18,30,9.700000000000001,1.27,0.135,0.63,0,0,0,0,5.7,0,0,0,0,100.2,0.14,1.1,76.23,1001,359,2.7 +2008,4,3,19,30,9.1,1.3,0.151,0.63,0,0,0,0,5.6000000000000005,0,0,0,0,110.47,0.14,1.1,78.95,1001,182,3.1 +2008,4,3,20,30,8.3,1.3800000000000001,0.133,0.63,0,0,0,0,5.6000000000000005,0,0,0,0,119.61,0.14,1.1,83.21000000000001,1001,6,3.1 +2008,4,3,21,30,7.800000000000001,1.3900000000000001,0.105,0.63,0,0,0,3,5.5,0,0,0,0,126.88000000000001,0.14,1.1,85.42,1001,9,3.2 +2008,4,3,22,30,7.6000000000000005,1.33,0.091,0.63,0,0,0,0,5.4,0,0,0,0,131.36,0.14,1.1,85.89,1001,9,3.3000000000000003 +2008,4,3,23,30,7.6000000000000005,1.22,0.095,0.63,0,0,0,0,5.4,0,0,0,0,132.21,0.14,1.1,85.88,1000,4,3.3000000000000003 +2008,4,4,0,30,7.7,1.09,0.112,0.63,0,0,0,0,5.5,0,0,0,0,129.24,0.14,1.2000000000000002,86.02,1000,1,3.5 +2008,4,4,1,30,7.800000000000001,0.9400000000000001,0.123,0.63,0,0,0,0,5.6000000000000005,0,0,0,0,123.07000000000001,0.14,1.3,86.05,1000,2,3.8000000000000003 +2008,4,4,2,30,7.800000000000001,0.8200000000000001,0.122,0.63,0,0,0,0,5.5,0,0,0,0,114.64,0.14,1.4000000000000001,85.41,1000,4,4 +2008,4,4,3,30,7.7,0.76,0.11,0.63,0,0,0,8,5.4,0,0,0,0,104.78,0.14,1.4000000000000001,85.63,1000,4,4.1000000000000005 +2008,4,4,4,30,7.800000000000001,0.79,0.101,0.63,0,0,0,5,5.5,0,0,0,0,94.09,0.14,1.5,85.15,1000,3,4.3 +2008,4,4,5,30,8.4,0.8300000000000001,0.105,0.63,39,329,80,7,5.6000000000000005,7,0,7,7,82.88,0.14,1.5,82.3,1000,4,4.7 +2008,4,4,6,30,9.4,0.8200000000000001,0.107,0.63,74,620,267,7,5.7,19,0,0,19,71.8,0.14,1.5,77.54,1000,9,5.1000000000000005 +2008,4,4,7,30,10.700000000000001,0.84,0.111,0.63,95,756,462,7,5.9,148,7,0,152,61,0.14,1.5,72.14,1001,17,5.2 +2008,4,4,8,30,12.200000000000001,0.84,0.113,0.63,110,831,633,6,6,162,3,0,164,51.01,0.14,1.5,65.69,1001,26,5.2 +2008,4,4,9,30,13.5,0.77,0.242,0.63,178,762,739,6,5.9,192,2,0,194,42.65,0.14,1.5,60.120000000000005,1001,32,5.1000000000000005 +2008,4,4,10,30,14.5,0.79,0.275,0.63,199,764,807,7,5.9,378,334,0,644,37.22,0.14,1.5,56.14,1001,36,5.1000000000000005 +2008,4,4,11,30,14.9,0.8300000000000001,0.303,0.63,211,751,817,7,5.5,387,286,0,618,36.14,0.14,1.5,53.51,1002,36,5 +2008,4,4,12,30,14.9,0.87,0.324,0.63,213,721,767,6,5.2,371,182,0,511,39.77,0.14,1.5,52.36,1002,32,4.9 +2008,4,4,13,30,14.700000000000001,0.9400000000000001,0.352,0.63,209,664,663,7,5,353,271,0,538,47,0.14,1.4000000000000001,52.39,1002,27,4.800000000000001 +2008,4,4,14,30,14.3,0.99,0.369,0.63,191,578,511,7,5.1000000000000005,280,99,0,335,56.38,0.14,1.4000000000000001,54.02,1002,23,4.5 +2008,4,4,15,30,13.600000000000001,1.02,0.38,0.63,155,443,329,6,5.6000000000000005,172,21,0,180,66.89,0.14,1.4000000000000001,58.51,1002,21,3.9000000000000004 +2008,4,4,16,30,12,1.03,0.378,0.63,93,237,143,6,6.300000000000001,19,0,0,19,77.89,0.14,1.4000000000000001,67.98,1002,20,3.1 +2008,4,4,17,30,10.3,1.04,0.356,0.63,7,6,7,7,6.300000000000001,2,0,7,2,88.73,0.14,1.3,76.08,1003,21,2.7 +2008,4,4,18,30,9.3,1.04,0.326,0.63,0,0,0,7,5.9,0,0,0,0,99.98,0.14,1.3,79.22,1003,22,2.6 +2008,4,4,19,30,8.5,1.04,0.307,0.63,0,0,0,7,5.5,0,0,0,0,110.23,0.14,1.2000000000000002,81.65,1003,23,2.5 +2008,4,4,20,30,7.9,1.03,0.28200000000000003,0.63,0,0,0,7,5.2,0,0,0,0,119.33,0.14,1.2000000000000002,82.85000000000001,1003,23,2.4000000000000004 +2008,4,4,21,30,7.300000000000001,0.98,0.261,0.63,0,0,0,8,4.800000000000001,0,0,0,0,126.56,0.14,1.2000000000000002,84.13,1003,20,2.3000000000000003 +2008,4,4,22,30,6.9,0.93,0.256,0.63,0,0,0,0,4.5,0,0,0,0,131,0.14,1.1,84.8,1003,18,2.2 +2008,4,4,23,30,6.5,0.89,0.257,0.63,0,0,0,0,4.4,0,0,0,0,131.83,0.14,1.1,86.23,1002,18,2.3000000000000003 +2008,4,5,0,30,6.2,0.84,0.258,0.63,0,0,0,0,4.3,0,0,0,0,128.86,0.14,1.1,87.35000000000001,1002,22,2.2 +2008,4,5,1,30,6.300000000000001,0.79,0.264,0.63,0,0,0,0,4.1000000000000005,0,0,0,0,122.7,0.14,1.1,85.75,1002,29,2.2 +2008,4,5,2,30,6.5,0.76,0.27,0.63,0,0,0,0,4,0,0,0,0,114.29,0.14,1.1,84.24,1001,35,2.2 +2008,4,5,3,30,6.2,0.73,0.264,0.63,0,0,0,0,3.9000000000000004,0,0,0,0,104.46000000000001,0.14,1.1,85.46000000000001,1001,37,2.2 +2008,4,5,4,30,6.6000000000000005,0.7000000000000001,0.252,0.63,0,0,0,0,3.6,0,0,0,0,93.78,0.14,1.1,81.29,1001,38,2.3000000000000003 +2008,4,5,5,30,8.6,0.67,0.242,0.63,54,174,77,0,4.2,54,174,0,77,82.57000000000001,0.14,1.1,73.88,1001,39,2.9000000000000004 +2008,4,5,6,30,11.3,0.65,0.194,0.63,100,518,265,0,4.4,100,518,0,265,71.5,0.14,1,62.370000000000005,1001,47,3.4000000000000004 +2008,4,5,7,30,13.600000000000001,0.64,0.186,0.63,126,684,461,0,3.7,126,684,0,461,60.68,0.14,1,51.36,1001,52,2.7 +2008,4,5,8,30,15.200000000000001,0.63,0.177,0.63,140,780,634,0,2.7,140,780,0,634,50.67,0.14,1,42.93,1000,37,1.8 +2008,4,5,9,30,16.3,0.64,0.171,0.63,148,834,765,0,2.3000000000000003,148,834,0,765,42.29,0.14,1,39.08,1000,188,1.4000000000000001 +2008,4,5,10,30,16.900000000000002,0.66,0.169,0.63,152,856,837,0,2.5,152,856,0,837,36.83,0.14,1.1,38.06,999,349,1.6 +2008,4,5,11,30,17.2,0.6900000000000001,0.17,0.63,154,861,852,0,2.8000000000000003,154,861,0,852,35.76,0.14,1.1,38.2,998,341,1.8 +2008,4,5,12,30,17.2,0.72,0.182,0.63,155,837,801,0,3.2,155,837,0,801,39.45,0.14,1.1,39.31,997,336,2.2 +2008,4,5,13,30,17,0.76,0.17300000000000001,0.63,142,809,697,2,3.3000000000000003,375,74,0,426,46.730000000000004,0.14,1.1,40.13,997,334,2.8000000000000003 +2008,4,5,14,30,16.400000000000002,0.8,0.166,0.63,125,749,542,0,3.3000000000000003,125,749,0,542,56.15,0.14,1.2000000000000002,41.63,996,336,3.4000000000000004 +2008,4,5,15,30,15.200000000000001,0.84,0.168,0.63,105,633,355,2,3.4000000000000004,215,243,7,311,66.68,0.14,1.2000000000000002,45.15,996,341,3.6 +2008,4,5,16,30,13.100000000000001,0.89,0.163,0.63,70,426,161,0,4.4,70,426,0,161,77.69,0.14,1.2000000000000002,55.4,997,342,3.1 +2008,4,5,17,30,11.100000000000001,0.9500000000000001,0.157,0.63,11,37,12,0,5.7,11,37,0,12,88.55,0.14,1.2000000000000002,69.45,997,343,2.5 +2008,4,5,18,30,10.100000000000001,0.92,0.178,0.63,0,0,0,5,5.6000000000000005,0,0,0,0,99.77,0.14,1.1,73.73,997,346,2.2 +2008,4,5,19,30,9.4,0.97,0.179,0.63,0,0,0,5,5.4,0,0,0,0,109.99000000000001,0.14,1.1,76.12,997,351,1.8 +2008,4,5,20,30,8.9,1.02,0.178,0.63,0,0,0,4,5,0,0,0,0,119.06,0.14,1.1,76.4,997,177,1.6 +2008,4,5,21,30,8.700000000000001,1.06,0.17300000000000001,0.63,0,0,0,5,4.4,0,0,0,0,126.24000000000001,0.14,1.1,74.2,997,4,1.4000000000000001 +2008,4,5,22,30,8.700000000000001,1.08,0.166,0.63,0,0,0,3,3.7,0,0,0,0,130.64000000000001,0.14,1.1,71.01,996,14,1.1 +2008,4,5,23,30,8.5,1.09,0.156,0.63,0,0,0,0,3.3000000000000003,0,0,0,0,131.45,0.14,1.1,69.9,996,27,0.8 +2008,4,6,0,30,8.3,1.1,0.145,0.63,0,0,0,0,3.2,0,0,0,0,128.48,0.14,1.1,70.33,995,56,0.6000000000000001 +2008,4,6,1,30,8,1.1,0.139,0.63,0,0,0,0,3.4000000000000004,0,0,0,0,122.34,0.14,1.1,72.58,995,100,0.5 +2008,4,6,2,30,7.5,1.07,0.136,0.63,0,0,0,0,3.7,0,0,0,0,113.95,0.14,1.1,76.86,995,133,0.7000000000000001 +2008,4,6,3,30,6.800000000000001,1.05,0.133,0.63,0,0,0,0,4.1000000000000005,0,0,0,0,104.13,0.14,1.1,83.05,995,150,1 +2008,4,6,4,30,7.1000000000000005,1.02,0.14200000000000002,0.63,0,0,0,0,4.5,0,0,0,0,93.47,0.14,1.2000000000000002,83.75,994,160,1.1 +2008,4,6,5,30,9.1,0.99,0.164,0.63,49,286,87,0,5.6000000000000005,49,286,0,87,82.28,0.14,1.3,78.75,995,170,1.8 +2008,4,6,6,30,11.5,0.92,0.199,0.63,99,527,269,0,6.5,99,527,0,269,71.19,0.14,1.3,71.58,995,185,3 +2008,4,6,7,30,13.100000000000001,0.9,0.192,0.63,125,684,463,0,7.300000000000001,125,684,0,463,60.36,0.14,1.3,67.84,995,196,3.8000000000000003 +2008,4,6,8,30,14.3,0.87,0.179,0.63,138,779,635,1,7.300000000000001,138,779,0,635,50.33,0.14,1.3,62.86,995,201,4.4 +2008,4,6,9,30,15.200000000000001,0.88,0.169,0.63,144,832,762,2,7.7,406,90,0,473,41.92,0.14,1.4000000000000001,60.81,995,208,4.9 +2008,4,6,10,30,15.700000000000001,0.88,0.165,0.63,148,855,835,4,8.4,240,0,0,240,36.45,0.14,1.5,61.910000000000004,995,214,5.300000000000001 +2008,4,6,11,30,15.700000000000001,0.84,0.163,0.63,148,857,846,4,9.1,204,0,0,204,35.4,0.14,1.6,64.75,994,218,5.6000000000000005 +2008,4,6,12,30,15.600000000000001,0.8,0.176,0.63,153,833,799,3,9.4,426,87,0,494,39.13,0.14,1.5,66.53,994,219,5.6000000000000005 +2008,4,6,13,30,15.5,0.74,0.171,0.63,142,803,695,4,9.4,203,0,0,203,46.46,0.14,1.4000000000000001,67.03,994,219,5.5 +2008,4,6,14,30,15.200000000000001,0.72,0.18,0.63,133,728,540,3,9.200000000000001,226,0,0,226,55.92,0.14,1.4000000000000001,67.31,994,216,5.300000000000001 +2008,4,6,15,30,14.600000000000001,0.75,0.197,0.63,116,593,352,0,9,116,593,0,352,66.48,0.14,1.4000000000000001,69.11,994,209,4.9 +2008,4,6,16,30,13.3,0.77,0.196,0.63,77,376,159,0,9.4,77,376,0,159,77.5,0.14,1.5,77.17,994,196,4 +2008,4,6,17,30,11.9,0.78,0.193,0.63,12,21,13,0,10.3,12,21,0,13,88.37,0.14,1.5,89.87,995,182,3.3000000000000003 +2008,4,6,18,30,11.100000000000001,0.8,0.193,0.63,0,0,0,0,10.700000000000001,0,0,0,0,99.55,0.14,1.5,97.59,995,173,3.1 +2008,4,6,19,30,10.8,0.8,0.187,0.63,0,0,0,0,10.8,0,0,0,0,109.75,0.14,1.5,100,995,169,3 +2008,4,6,20,30,10.600000000000001,0.78,0.176,0.63,0,0,0,0,10.600000000000001,0,0,0,0,118.78,0.14,1.4000000000000001,100,995,165,2.8000000000000003 +2008,4,6,21,30,10.3,0.77,0.168,0.63,0,0,0,3,10.3,0,0,0,0,125.93,0.14,1.3,100,995,158,2.7 +2008,4,6,22,30,10.200000000000001,0.76,0.158,0.63,0,0,0,0,10.200000000000001,0,0,0,0,130.29,0.14,1.2000000000000002,100,995,153,2.8000000000000003 +2008,4,6,23,30,10.3,0.75,0.146,0.63,0,0,0,0,10.3,0,0,0,0,131.07,0.14,1.1,100,995,152,3.1 +2008,4,7,0,30,10.5,0.78,0.156,0.63,0,0,0,0,10.5,0,0,0,0,128.1,0.14,1.1,100,994,154,3.3000000000000003 +2008,4,7,1,30,10.600000000000001,0.81,0.164,0.63,0,0,0,0,10.600000000000001,0,0,0,0,121.98,0.14,1.1,100,994,157,3.4000000000000004 +2008,4,7,2,30,10.700000000000001,0.8200000000000001,0.155,0.63,0,0,0,0,10.600000000000001,0,0,0,0,113.61,0.14,1.2000000000000002,99.21000000000001,994,160,3.6 +2008,4,7,3,30,10.600000000000001,0.87,0.161,0.63,0,0,0,0,10.4,0,0,0,0,103.81,0.14,1.2000000000000002,98.68,994,163,3.8000000000000003 +2008,4,7,4,30,11,0.89,0.157,0.63,0,0,0,0,10.3,0,0,0,0,93.16,0.14,1.2000000000000002,95.29,995,162,4.1000000000000005 +2008,4,7,5,30,12.200000000000001,0.88,0.14400000000000002,0.63,49,314,93,0,10.4,49,314,0,93,81.98,0.14,1.3,88.65,995,160,4.800000000000001 +2008,4,7,6,30,13.9,0.76,0.156,0.63,91,574,278,0,10.600000000000001,91,574,0,278,70.89,0.14,1.3,80.59,995,166,5.5 +2008,4,7,7,30,15.600000000000001,0.79,0.147,0.63,111,729,475,0,10.3,111,729,0,475,60.050000000000004,0.14,1.3,70.62,995,176,5.9 +2008,4,7,8,30,17,0.84,0.14300000000000002,0.63,123,810,644,0,9.700000000000001,123,810,0,644,49.99,0.14,1.4000000000000001,62.21,996,184,6.1000000000000005 +2008,4,7,9,30,17.900000000000002,0.76,0.158,0.63,139,839,767,0,9.5,139,839,0,767,41.56,0.14,1.4000000000000001,58,995,188,6.2 +2008,4,7,10,30,18.5,0.6900000000000001,0.17,0.63,151,846,835,0,9.5,151,846,0,835,36.07,0.14,1.5,55.620000000000005,995,191,6.2 +2008,4,7,11,30,18.7,0.64,0.184,0.63,159,837,844,0,9.5,159,837,0,844,35.03,0.14,1.5,54.94,995,192,6.1000000000000005 +2008,4,7,12,30,18.7,0.65,0.191,0.63,158,814,792,5,9.5,456,120,0,549,38.81,0.14,1.6,55.22,995,193,6 +2008,4,7,13,30,18.3,0.65,0.215,0.63,160,754,682,5,9.700000000000001,400,98,0,468,46.2,0.14,1.7000000000000002,57.15,995,193,5.7 +2008,4,7,14,30,17.5,0.66,0.241,0.63,153,659,525,2,9.9,336,129,0,409,55.7,0.14,1.8,60.83,995,188,5.300000000000001 +2008,4,7,15,30,16.5,0.7000000000000001,0.247,0.63,129,530,343,0,10.200000000000001,129,530,0,343,66.27,0.14,1.9000000000000001,66.33,995,180,4.7 +2008,4,7,16,30,15.200000000000001,0.72,0.245,0.63,84,317,154,0,10.9,84,317,0,154,77.3,0.14,2,75.29,995,168,3.9000000000000004 +2008,4,7,17,30,13.9,0.6900000000000001,0.242,0.63,11,11,12,0,11.700000000000001,11,11,0,12,88.19,0.14,2,86.85000000000001,995,156,3.5 +2008,4,7,18,30,13.200000000000001,0.65,0.23800000000000002,0.63,0,0,0,3,12.200000000000001,0,0,0,0,99.34,0.14,2,93.43,996,148,3.6 +2008,4,7,19,30,12.9,0.65,0.234,0.63,0,0,0,0,12.200000000000001,0,0,0,0,109.51,0.14,2,95.76,996,142,3.8000000000000003 +2008,4,7,20,30,12.700000000000001,0.64,0.225,0.63,0,0,0,0,12.200000000000001,0,0,0,0,118.51,0.14,2,96.48,996,137,4 +2008,4,7,21,30,12.4,0.66,0.225,0.63,0,0,0,0,11.9,0,0,0,0,125.61,0.14,2,96.52,995,131,4.1000000000000005 +2008,4,7,22,30,12,0.65,0.229,0.63,0,0,0,7,11.4,0,0,0,0,129.93,0.14,2,95.98,995,125,4 +2008,4,7,23,30,11.700000000000001,0.61,0.23,0.63,0,0,0,8,10.600000000000001,0,0,0,0,130.69,0.14,1.9000000000000001,92.83,995,121,4.1000000000000005 +2008,4,8,0,30,11.4,0.58,0.23500000000000001,0.63,0,0,0,7,9.600000000000001,0,0,0,0,127.72,0.15,1.9000000000000001,88.5,994,121,4.2 +2008,4,8,1,30,11.3,0.51,0.247,0.63,0,0,0,7,8.700000000000001,0,0,0,0,121.62,0.15,2,83.81,994,120,4.5 +2008,4,8,2,30,11.4,0.46,0.28600000000000003,0.63,0,0,0,7,8.200000000000001,0,0,0,0,113.28,0.15,2,80.65,994,119,4.800000000000001 +2008,4,8,3,30,11.700000000000001,0.42,0.329,0.63,0,0,0,6,8.3,0,0,0,0,103.49000000000001,0.15,2.1,79.82000000000001,994,121,4.7 +2008,4,8,4,30,12.3,0.43,0.343,0.63,0,0,0,6,9,0,0,0,0,92.86,0.15,2.2,80.46000000000001,994,125,4.7 +2008,4,8,5,30,13.5,0.43,0.354,0.63,62,97,76,6,10.100000000000001,3,0,0,3,81.68,0.15,2.3000000000000003,79.9,994,129,4.9 +2008,4,8,6,30,15.100000000000001,0.43,0.38,0.63,142,317,248,5,11.4,11,0,0,11,70.59,0.15,2.4000000000000004,78.38,994,139,5 +2008,4,8,7,30,16.5,0.45,0.399,0.63,194,462,427,7,12.700000000000001,51,0,0,51,59.74,0.15,2.5,78.32000000000001,994,157,5.2 +2008,4,8,8,30,17.900000000000002,0.47000000000000003,0.40700000000000003,0.63,227,556,587,7,13.200000000000001,105,0,0,106,49.660000000000004,0.15,2.5,73.88,995,172,5.4 +2008,4,8,9,30,19,0.45,0.382,0.63,238,630,712,7,13.200000000000001,35,0,0,35,41.2,0.15,2.5,69.08,994,182,5.800000000000001 +2008,4,8,10,30,19.5,0.43,0.34400000000000003,0.63,233,683,788,6,13.100000000000001,177,1,0,178,35.69,0.15,2.5,66.38,994,185,6.300000000000001 +2008,4,8,11,30,19.1,0.43,0.328,0.63,228,697,801,6,12.8,314,12,0,324,34.660000000000004,0.15,2.6,67.03,994,185,6.6000000000000005 +2008,4,8,12,30,17.7,0.46,0.352,0.63,233,662,751,9,12.5,81,0,0,81,38.49,0.15,2.7,71.52,994,181,6.300000000000001 +2008,4,8,13,30,16.3,0.46,0.4,0.63,236,584,642,9,12.700000000000001,96,0,0,96,45.94,0.15,2.8000000000000003,79.19,994,178,5.800000000000001 +2008,4,8,14,30,15.3,0.45,0.41200000000000003,0.63,215,496,497,9,13.200000000000001,25,0,0,25,55.47,0.15,2.7,87.32000000000001,994,184,5 +2008,4,8,15,30,14.9,0.53,0.396,0.63,169,387,325,6,13.600000000000001,33,0,0,33,66.07000000000001,0.15,2.5,91.96000000000001,993,200,3.9000000000000004 +2008,4,8,16,30,14.5,0.56,0.278,0.63,92,273,153,5,13.8,6,0,0,6,77.11,0.15,2.3000000000000003,95.35000000000001,993,219,2.8000000000000003 +2008,4,8,17,30,14,0.55,0.219,0.63,13,14,14,5,13.600000000000001,6,0,7,6,88,0.15,2.1,97.12,994,235,2.5 +2008,4,8,18,30,13.4,0.54,0.194,0.63,0,0,0,4,13.200000000000001,0,0,0,0,99.13,0.15,2,98.77,995,246,2.6 +2008,4,8,19,30,12.5,0.51,0.153,0.63,0,0,0,3,12.5,0,0,0,0,109.27,0.15,2,100,995,253,2.2 +2008,4,8,20,30,11.600000000000001,0.52,0.14200000000000002,0.63,0,0,0,0,11.600000000000001,0,0,0,0,118.23,0.15,2,100,996,252,1.6 +2008,4,8,21,30,11.200000000000001,0.55,0.14300000000000002,0.63,0,0,0,0,11.200000000000001,0,0,0,0,125.29,0.15,1.9000000000000001,100,996,241,1.5 +2008,4,8,22,30,11,0.56,0.147,0.63,0,0,0,1,11,0,0,0,0,129.57,0.15,1.9000000000000001,100,996,233,1.5 +2008,4,8,23,30,11,0.56,0.146,0.63,0,0,0,3,11,0,0,0,0,130.31,0.15,1.9000000000000001,100,996,233,1.4000000000000001 +2008,4,9,0,30,10.9,0.59,0.152,0.63,0,0,0,0,10.9,0,0,0,0,127.34,0.15,1.9000000000000001,99.78,996,231,1.3 +2008,4,9,1,30,10.9,0.6,0.147,0.63,0,0,0,0,10.8,0,0,0,0,121.26,0.15,1.9000000000000001,99.33,996,223,1.2000000000000002 +2008,4,9,2,30,11,0.61,0.14300000000000002,0.63,0,0,0,3,10.8,0,0,0,0,112.94,0.15,1.8,98.54,996,212,1.2000000000000002 +2008,4,9,3,30,11,0.65,0.147,0.63,0,0,0,1,10.700000000000001,0,0,0,0,103.18,0.15,1.8,98.11,996,200,1.1 +2008,4,9,4,30,11.5,0.68,0.14100000000000001,0.63,0,0,0,0,10.700000000000001,0,0,0,0,92.56,0.15,1.8,94.79,996,187,1.1 +2008,4,9,5,30,12.9,0.6900000000000001,0.128,0.63,51,332,101,0,11.5,51,332,0,101,81.39,0.15,1.9000000000000001,90.96000000000001,996,181,1.6 +2008,4,9,6,30,14.3,0.76,0.114,0.63,81,623,291,0,12.3,81,623,0,291,70.29,0.15,1.9000000000000001,87.75,997,187,2.3000000000000003 +2008,4,9,7,30,15.600000000000001,0.79,0.105,0.63,97,762,485,1,12.3,97,762,0,485,59.43,0.15,2,80.66,997,197,2.6 +2008,4,9,8,30,17.1,0.8200000000000001,0.097,0.63,105,840,652,8,11.9,222,520,0,561,49.33,0.15,2.1,71.36,997,206,2.8000000000000003 +2008,4,9,9,30,18.3,0.63,0.163,0.63,145,816,763,7,11.200000000000001,318,355,0,586,40.84,0.15,2.1,63.29,997,209,3 +2008,4,9,10,30,18.900000000000002,0.67,0.167,0.63,153,834,833,2,10.9,420,96,0,498,35.31,0.15,2.2,59.86,996,206,3.4000000000000004 +2008,4,9,11,30,18.7,0.72,0.176,0.63,157,829,842,7,10.8,384,231,0,575,34.300000000000004,0.15,2.3000000000000003,59.97,996,204,3.8000000000000003 +2008,4,9,12,30,18.2,0.7000000000000001,0.195,0.63,162,799,790,6,10.4,237,5,0,241,38.18,0.15,2.3000000000000003,60.300000000000004,996,198,4 +2008,4,9,13,30,17.8,0.67,0.19,0.63,152,764,685,6,10.100000000000001,290,52,0,326,45.68,0.15,2.4000000000000004,60.68,995,188,4.3 +2008,4,9,14,30,17.5,0.63,0.182,0.63,135,702,535,7,9.9,221,24,0,234,55.25,0.15,2.5,60.92,995,179,4.6000000000000005 +2008,4,9,15,30,16.6,0.59,0.165,0.63,108,603,355,5,9.600000000000001,125,0,0,125,65.87,0.15,2.6,63.43,995,170,4.7 +2008,4,9,16,30,15.3,0.5700000000000001,0.159,0.63,74,401,165,4,9.9,7,0,0,7,76.91,0.15,2.7,70,995,162,4.3 +2008,4,9,17,30,14.200000000000001,0.6,0.176,0.63,16,29,17,7,10.600000000000001,7,0,7,7,87.82000000000001,0.15,2.8000000000000003,79.14,995,153,4.1000000000000005 +2008,4,9,18,30,13.600000000000001,0.62,0.196,0.63,0,0,0,7,11.200000000000001,0,0,0,0,98.91,0.15,2.9000000000000004,85.36,995,145,4.4 +2008,4,9,19,30,13.3,0.71,0.197,0.63,0,0,0,7,11.5,0,0,0,0,109.03,0.15,2.9000000000000004,88.83,995,140,4.7 +2008,4,9,20,30,13.100000000000001,0.81,0.191,0.63,0,0,0,7,11.5,0,0,0,0,117.96000000000001,0.15,2.9000000000000004,90.24,995,138,4.9 +2008,4,9,21,30,13.100000000000001,0.84,0.189,0.63,0,0,0,7,11.4,0,0,0,0,124.98,0.15,2.9000000000000004,89.5,995,140,5 +2008,4,9,22,30,13.100000000000001,0.8200000000000001,0.189,0.63,0,0,0,7,11.5,0,0,0,0,129.22,0.15,2.9000000000000004,90.25,994,140,4.800000000000001 +2008,4,9,23,30,13.100000000000001,0.8,0.189,0.63,0,0,0,7,11.8,0,0,0,0,129.93,0.15,2.9000000000000004,91.62,994,139,4.6000000000000005 +2008,4,10,0,30,13.100000000000001,0.77,0.181,0.63,0,0,0,6,12,0,0,0,0,126.97,0.15,2.9000000000000004,92.93,993,138,4.3 +2008,4,10,1,30,12.9,0.72,0.169,0.63,0,0,0,7,12.100000000000001,0,0,0,0,120.9,0.15,2.7,95.10000000000001,993,136,3.9000000000000004 +2008,4,10,2,30,12.700000000000001,0.68,0.164,0.63,0,0,0,4,12.200000000000001,0,0,0,0,112.61,0.15,2.6,96.64,994,135,3.8000000000000003 +2008,4,10,3,30,12.700000000000001,0.7000000000000001,0.17400000000000002,0.63,0,0,0,7,12.3,0,0,0,0,102.86,0.15,2.5,97.24000000000001,994,134,3.8000000000000003 +2008,4,10,4,30,13.200000000000001,0.71,0.186,0.63,0,0,0,0,12.4,0,0,0,0,92.25,0.15,2.5,94.79,993,132,4.1000000000000005 +2008,4,10,5,30,14.3,0.72,0.197,0.63,60,250,98,0,12.700000000000001,60,250,0,98,81.10000000000001,0.15,2.4000000000000004,89.99,994,135,4.5 +2008,4,10,6,30,15.8,0.71,0.199,0.63,104,511,279,0,13.200000000000001,104,511,0,279,70,0.15,2.4000000000000004,84.8,994,147,4.9 +2008,4,10,7,30,17.6,0.68,0.187,0.63,128,665,469,7,13.8,254,168,0,340,59.120000000000005,0.15,2.4000000000000004,78.28,994,162,5 +2008,4,10,8,30,19,0.66,0.17500000000000002,0.63,140,756,636,7,14,267,382,0,518,49,0.15,2.4000000000000004,72.57000000000001,994,177,5.1000000000000005 +2008,4,10,9,30,20,0.64,0.167,0.63,147,808,761,7,13.9,260,539,0,670,40.49,0.15,2.4000000000000004,68.01,994,188,5.2 +2008,4,10,10,30,20.400000000000002,0.58,0.17,0.63,154,828,833,7,13.700000000000001,297,506,0,711,34.94,0.15,2.3000000000000003,65.47,994,196,5.1000000000000005 +2008,4,10,11,30,20.3,0.55,0.169,0.63,155,833,847,7,13.3,336,449,0,709,33.94,0.15,2.2,64.23,994,199,4.9 +2008,4,10,12,30,20.1,0.56,0.188,0.63,161,803,795,6,13.100000000000001,385,90,0,456,37.87,0.15,2.2,63.95,994,199,4.6000000000000005 +2008,4,10,13,30,19.8,0.61,0.196,0.63,155,761,689,6,12.9,247,9,0,253,45.42,0.15,2.2,64.25,994,194,4.2 +2008,4,10,14,30,19.200000000000003,0.62,0.192,0.63,138,697,538,7,12.700000000000001,245,44,0,270,55.03,0.15,2.3000000000000003,65.98,993,185,3.9000000000000004 +2008,4,10,15,30,18.1,0.63,0.185,0.63,114,589,356,7,12.9,121,6,0,123,65.67,0.15,2.4000000000000004,71.72,994,177,3.7 +2008,4,10,16,30,16.7,0.59,0.197,0.63,82,362,165,7,13.700000000000001,9,0,0,9,76.72,0.15,2.6,82.34,994,173,3.5 +2008,4,10,17,30,15.600000000000001,0.53,0.223,0.63,16,17,16,6,14.100000000000001,3,0,7,3,87.63,0.15,2.7,90.88,994,168,3.5 +2008,4,10,18,30,15.3,0.52,0.249,0.63,0,0,0,6,14.200000000000001,0,0,0,0,98.7,0.15,2.8000000000000003,93.39,995,165,3.5 +2008,4,10,19,30,15.200000000000001,0.52,0.259,0.63,0,0,0,6,14.200000000000001,0,0,0,0,108.8,0.15,2.8000000000000003,93.65,995,174,3.4000000000000004 +2008,4,10,20,30,15,0.52,0.255,0.63,0,0,0,6,14.100000000000001,0,0,0,0,117.69,0.15,2.7,94.21000000000001,995,186,3.1 +2008,4,10,21,30,14.4,0.52,0.233,0.63,0,0,0,6,13.9,0,0,0,0,124.66,0.15,2.5,97.12,995,182,2.5 +2008,4,10,22,30,13.700000000000001,0.44,0.221,0.63,0,0,0,6,13.700000000000001,0,0,0,0,128.87,0.15,2.3000000000000003,100,995,168,2.2 +2008,4,10,23,30,13.600000000000001,0.33,0.253,0.63,0,0,0,9,13.600000000000001,0,0,0,0,129.56,0.15,2.4000000000000004,100,995,157,2.6 +2008,4,11,0,30,13.9,0.26,0.33,0.63,0,0,0,9,13.8,0,0,0,0,126.60000000000001,0.16,2.6,99.06,995,156,3.3000000000000003 +2008,4,11,1,30,14.200000000000001,0.22,0.419,0.63,0,0,0,1,13.700000000000001,0,0,0,0,120.55,0.16,2.8000000000000003,96.73,996,164,4 +2008,4,11,2,30,14.4,0.21,0.463,0.63,0,0,0,9,13.600000000000001,0,0,0,0,112.28,0.16,2.9000000000000004,95.10000000000001,996,174,4.4 +2008,4,11,3,30,14.4,0.2,0.584,0.63,0,0,0,9,13.5,0,0,0,0,102.55,0.16,3,94.58,996,179,4.2 +2008,4,11,4,30,14.4,0.17,0.741,0.63,0,0,0,9,13.4,0,0,0,0,91.96000000000001,0.16,3,93.84,996,177,3.9000000000000004 +2008,4,11,5,30,14.8,0.14,0.804,0.63,53,9,55,9,13.4,3,0,0,3,80.81,0.16,2.9000000000000004,91.46000000000001,996,175,3.8000000000000003 +2008,4,11,6,30,15.600000000000001,0.15,0.792,0.63,183,112,222,9,13.700000000000001,6,0,0,6,69.7,0.16,2.9000000000000004,88.51,996,178,3.9000000000000004 +2008,4,11,7,30,16.900000000000002,0.14,0.727,0.63,268,258,401,9,14,18,0,0,18,58.82,0.16,2.8000000000000003,83.29,997,187,4 +2008,4,11,8,30,18.3,0.14,0.646,0.63,311,392,570,6,14.200000000000001,18,0,0,18,48.68,0.16,2.7,77.12,997,196,4.2 +2008,4,11,9,30,19.3,0.66,0.395,0.63,242,637,729,8,13.600000000000001,93,0,0,93,40.13,0.16,2.6,69.46000000000001,997,201,4.4 +2008,4,11,10,30,19.8,0.74,0.34500000000000003,0.63,229,701,806,4,12.5,169,0,0,169,34.57,0.16,2.6,62.9,996,201,4.6000000000000005 +2008,4,11,11,30,19.8,0.73,0.294,0.63,209,736,823,4,12,445,70,1,503,33.58,0.16,2.7,60.69,996,197,4.800000000000001 +2008,4,11,12,30,19.6,0.66,0.302,0.63,210,715,777,4,11.9,407,43,1,441,37.56,0.16,2.5,61.120000000000005,995,192,4.800000000000001 +2008,4,11,13,30,19.200000000000003,0.61,0.315,0.63,204,662,671,4,12.100000000000001,348,26,1,366,45.160000000000004,0.16,2.5,63.43,995,193,4.7 +2008,4,11,14,30,18.2,0.52,0.376,0.63,205,536,514,7,12.200000000000001,186,7,1,190,54.81,0.16,2.5,68.18,996,196,4.4 +2008,4,11,15,30,16.8,0.45,0.459,0.63,185,345,328,7,12.700000000000001,98,1,1,98,65.47,0.16,2.6,76.98,996,193,3.7 +2008,4,11,16,30,15.9,0.41000000000000003,0.47600000000000003,0.63,113,144,147,7,13.5,17,0,0,17,76.53,0.16,2.6,85.4,996,189,3.1 +2008,4,11,17,30,15.4,0.36,0.489,0.63,8,1,8,6,13.9,4,0,7,4,87.45,0.16,2.6,90.53,996,185,2.7 +2008,4,11,18,30,15.100000000000001,0.33,0.524,0.63,0,0,0,6,14,0,0,0,0,98.49000000000001,0.16,2.6,93.21000000000001,996,184,2.6 +2008,4,11,19,30,14.9,0.29,0.542,0.63,0,0,0,6,14.100000000000001,0,0,0,0,108.56,0.16,2.6,94.74,997,187,2.8000000000000003 +2008,4,11,20,30,14.700000000000001,0.27,0.47500000000000003,0.63,0,0,0,6,14,0,0,0,0,117.41,0.16,2.5,95.53,997,191,3.1 +2008,4,11,21,30,14.4,0.27,0.387,0.63,0,0,0,9,13.8,0,0,0,0,124.35000000000001,0.16,2.4000000000000004,96.33,997,194,3 +2008,4,11,22,30,14.100000000000001,0.26,0.355,0.63,0,0,0,9,13.600000000000001,0,0,0,0,128.52,0.16,2.3000000000000003,96.97,997,194,2.6 +2008,4,11,23,30,13.9,0.26,0.333,0.63,0,0,0,9,13.4,0,0,0,0,129.19,0.16,2.3000000000000003,96.91,997,198,2.8000000000000003 +2008,4,12,0,30,13.9,0.32,0.302,0.63,0,0,0,6,13.3,0,0,0,0,126.23,0.16,2.4000000000000004,96.24000000000001,997,206,3.2 +2008,4,12,1,30,13.700000000000001,0.33,0.281,0.63,0,0,0,4,13.100000000000001,0,0,0,0,120.2,0.16,2.4000000000000004,96.45,998,206,3.1 +2008,4,12,2,30,13.600000000000001,0.31,0.292,0.63,0,0,0,3,12.9,0,0,0,0,111.95,0.16,2.4000000000000004,95.41,998,204,3.1 +2008,4,12,3,30,13.5,0.34,0.294,0.63,0,0,0,6,12.700000000000001,0,0,0,0,102.24000000000001,0.16,2.3000000000000003,94.65,998,204,3.3000000000000003 +2008,4,12,4,30,13.600000000000001,0.35000000000000003,0.263,0.63,0,0,0,9,12.600000000000001,0,0,0,0,91.66,0.16,2.2,93.72,998,207,3.3000000000000003 +2008,4,12,5,30,13.9,0.36,0.233,0.63,68,205,102,0,12.8,68,205,0,102,80.52,0.16,2.2,93.08,998,214,3.4000000000000004 +2008,4,12,6,30,14.200000000000001,0.49,0.243,0.63,121,465,284,2,12.9,12,0,0,12,69.41,0.16,2.1,91.96000000000001,998,226,3.6 +2008,4,12,7,30,14.4,0.5700000000000001,0.243,0.63,151,618,474,0,12.8,151,618,0,474,58.52,0.16,2,89.98,999,236,3.9000000000000004 +2008,4,12,8,30,14.700000000000001,0.67,0.24,0.63,168,713,642,3,12.100000000000001,383,83,0,438,48.36,0.16,1.9000000000000001,84.23,999,243,4.3 +2008,4,12,9,30,15.4,0.9400000000000001,0.196,0.63,157,810,779,2,10.8,447,129,0,546,39.79,0.16,1.7000000000000002,74.02,999,247,4.6000000000000005 +2008,4,12,10,30,16.1,1.02,0.186,0.63,156,846,856,0,9.3,156,846,0,856,34.2,0.16,1.5,64.08,999,247,5 +2008,4,12,11,30,16.400000000000002,1.02,0.178,0.63,153,858,871,0,8,153,858,0,871,33.230000000000004,0.16,1.4000000000000001,57.7,999,245,5.5 +2008,4,12,12,30,16.2,0.93,0.186,0.63,155,839,822,0,7.2,155,839,0,822,37.25,0.16,1.3,55.38,1000,244,5.9 +2008,4,12,13,30,15.700000000000001,0.86,0.167,0.63,139,818,718,0,6.6000000000000005,139,818,0,718,44.910000000000004,0.16,1.3,54.52,1000,243,5.9 +2008,4,12,14,30,15,0.78,0.132,0.63,114,792,572,0,5.9,114,792,0,572,54.59,0.16,1.2000000000000002,54.36,1000,241,5.7 +2008,4,12,15,30,14.100000000000001,0.67,0.117,0.63,93,707,389,0,5.4,93,707,0,389,65.27,0.16,1.1,55.870000000000005,1001,239,5.4 +2008,4,12,16,30,12.700000000000001,0.5700000000000001,0.114,0.63,69,516,191,0,5.5,69,516,0,191,76.34,0.16,1,61.68,1001,236,4.3 +2008,4,12,17,30,11.200000000000001,0.51,0.124,0.63,21,85,25,0,6.6000000000000005,21,85,0,25,87.26,0.16,1,73.21000000000001,1002,232,3 +2008,4,12,18,30,10.5,0.49,0.14400000000000002,0.63,0,0,0,0,7.4,0,0,0,0,98.27,0.16,1.1,81.32000000000001,1002,228,2.6 +2008,4,12,19,30,10.600000000000001,0.51,0.176,0.63,0,0,0,3,8.1,0,0,0,0,108.32000000000001,0.16,1.2000000000000002,84.38,1003,229,2.5 +2008,4,12,20,30,10.600000000000001,0.56,0.195,0.63,0,0,0,1,8.6,0,0,0,0,117.14,0.16,1.3,87.43,1003,233,2.3000000000000003 +2008,4,12,21,30,10.4,0.63,0.209,0.63,0,0,0,0,8.9,0,0,0,0,124.04,0.16,1.3,90.28,1003,237,2.1 +2008,4,12,22,30,10.200000000000001,0.65,0.201,0.63,0,0,0,0,9,0,0,0,0,128.17000000000002,0.16,1.3,92.12,1004,240,1.9000000000000001 +2008,4,12,23,30,9.8,0.64,0.193,0.63,0,0,0,0,8.9,0,0,0,0,128.82,0.16,1.3,93.97,1004,241,1.7000000000000002 +2008,4,13,0,30,9.3,0.65,0.191,0.63,0,0,0,0,8.6,0,0,0,0,125.87,0.16,1.2000000000000002,95.60000000000001,1004,242,1.6 +2008,4,13,1,30,8.9,0.63,0.177,0.63,0,0,0,0,8.3,0,0,0,0,119.85000000000001,0.16,1.2000000000000002,96.21000000000001,1004,241,1.4000000000000001 +2008,4,13,2,30,8.8,0.59,0.169,0.63,0,0,0,0,8.1,0,0,0,0,111.62,0.16,1.1,95.3,1005,235,1.3 +2008,4,13,3,30,8.8,0.59,0.168,0.63,0,0,0,0,7.9,0,0,0,0,101.94,0.16,1.1,93.85000000000001,1005,222,1.2000000000000002 +2008,4,13,4,30,9.700000000000001,0.58,0.162,0.63,0,0,0,0,7.7,0,0,0,0,91.37,0.16,1.1,87.32000000000001,1005,204,1.1 +2008,4,13,5,30,11.700000000000001,0.5700000000000001,0.15,0.63,61,345,119,0,8.3,61,345,0,119,80.24,0.16,1.1,79.63,1006,198,1.7000000000000002 +2008,4,13,6,30,13.600000000000001,0.52,0.169,0.63,103,577,309,0,7.5,103,577,0,309,69.13,0.16,1.1,66.45,1006,204,2.6 +2008,4,13,7,30,14.8,0.52,0.15,0.63,120,735,508,0,6.800000000000001,120,735,0,508,58.22,0.16,1.1,58.82,1007,208,3.2 +2008,4,13,8,30,15.700000000000001,0.53,0.14100000000000001,0.63,131,817,677,0,6.7,131,817,0,677,48.04,0.16,1.2000000000000002,55.07,1007,211,3.7 +2008,4,13,9,30,16.3,0.54,0.14400000000000002,0.63,141,857,802,0,6.800000000000001,141,857,0,802,39.44,0.16,1.2000000000000002,53.46,1007,215,4.1000000000000005 +2008,4,13,10,30,16.7,0.56,0.14,0.63,143,881,875,2,7,493,210,0,667,33.83,0.16,1.2000000000000002,52.69,1007,219,4.3 +2008,4,13,11,30,16.900000000000002,0.59,0.131,0.63,139,893,889,0,7.1000000000000005,139,893,0,889,32.87,0.16,1.2000000000000002,52.36,1007,223,4.2 +2008,4,13,12,30,16.900000000000002,0.61,0.14,0.63,140,872,837,0,7.1000000000000005,140,872,0,837,36.95,0.16,1.2000000000000002,52.370000000000005,1007,226,4.1000000000000005 +2008,4,13,13,30,16.7,0.64,0.136,0.63,131,843,731,0,7,131,843,0,731,44.660000000000004,0.16,1.2000000000000002,52.89,1007,227,3.9000000000000004 +2008,4,13,14,30,16.2,0.65,0.135,0.63,119,785,577,0,7,119,785,0,577,54.370000000000005,0.16,1.2000000000000002,54.44,1007,227,3.6 +2008,4,13,15,30,15.4,0.65,0.14100000000000001,0.63,103,674,387,0,6.9,103,674,0,387,65.07000000000001,0.16,1.2000000000000002,57.1,1007,224,3.3000000000000003 +2008,4,13,16,30,13.700000000000001,0.64,0.14400000000000002,0.63,75,473,188,0,7.1000000000000005,75,473,0,188,76.15,0.16,1.2000000000000002,64.35,1007,222,2.4000000000000004 +2008,4,13,17,30,11.9,0.62,0.146,0.63,22,80,26,0,8.6,22,80,0,26,87.07000000000001,0.16,1.2000000000000002,80.41,1007,218,1.5 +2008,4,13,18,30,10.9,0.62,0.148,0.63,0,0,0,0,8.700000000000001,0,0,0,0,98.06,0.16,1.2000000000000002,86.44,1008,207,1.2000000000000002 +2008,4,13,19,30,10.5,0.62,0.148,0.63,0,0,0,0,8.6,0,0,0,0,108.08,0.16,1.2000000000000002,88.09,1008,184,1 +2008,4,13,20,30,10,0.61,0.148,0.63,0,0,0,0,8.700000000000001,0,0,0,0,116.87,0.16,1.2000000000000002,91.54,1008,154,1 +2008,4,13,21,30,9.5,0.61,0.147,0.63,0,0,0,0,8.700000000000001,0,0,0,0,123.73,0.16,1.1,94.55,1008,131,1.1 +2008,4,13,22,30,8.9,0.6,0.146,0.63,0,0,0,0,8.6,0,0,0,0,127.83,0.16,1.1,97.67,1008,117,1.2000000000000002 +2008,4,13,23,30,8.4,0.6,0.146,0.63,0,0,0,0,8.3,0,0,0,0,128.46,0.16,1.1,99.36,1007,108,1.3 +2008,4,14,0,30,8.1,0.6,0.148,0.63,0,0,0,0,8,0,0,0,0,125.51,0.16,1.2000000000000002,99.15,1007,100,1.4000000000000001 +2008,4,14,1,30,7.800000000000001,0.61,0.15,0.63,0,0,0,0,7.6000000000000005,0,0,0,0,119.51,0.16,1.2000000000000002,98.56,1007,92,1.4000000000000001 +2008,4,14,2,30,7.7,0.63,0.153,0.63,0,0,0,0,7.2,0,0,0,0,111.3,0.16,1.2000000000000002,96.69,1007,84,1.4000000000000001 +2008,4,14,3,30,7.5,0.66,0.158,0.63,0,0,0,0,6.800000000000001,0,0,0,0,101.63,0.16,1.2000000000000002,95.51,1007,77,1.5 +2008,4,14,4,30,8.3,0.6900000000000001,0.156,0.63,0,0,0,0,6.5,0,0,0,0,91.08,0.16,1.2000000000000002,88.22,1007,73,1.5 +2008,4,14,5,30,10.600000000000001,0.7000000000000001,0.15,0.63,60,361,123,0,7,60,361,0,123,79.96000000000001,0.16,1.2000000000000002,78.49,1007,70,1.7000000000000002 +2008,4,14,6,30,13.3,0.71,0.14400000000000002,0.63,94,619,318,0,6.9,94,619,0,318,68.84,0.16,1.2000000000000002,65.29,1007,42,1.4000000000000001 +2008,4,14,7,30,15.3,0.72,0.136,0.63,112,757,514,0,6,112,757,0,514,57.93,0.16,1.2000000000000002,53.68,1007,171,1.1 +2008,4,14,8,30,16.7,0.75,0.131,0.63,123,834,684,0,4.9,123,834,0,684,47.730000000000004,0.16,1.2000000000000002,45.67,1006,304,1.4000000000000001 +2008,4,14,9,30,17.6,0.81,0.121,0.63,126,884,813,0,4.6000000000000005,126,884,0,813,39.1,0.16,1.2000000000000002,42.18,1006,270,1.9000000000000001 +2008,4,14,10,30,18.1,0.87,0.12,0.63,129,905,885,0,4.7,129,905,0,885,33.46,0.16,1.2000000000000002,41.24,1005,250,2.8000000000000003 +2008,4,14,11,30,18.1,0.92,0.125,0.63,132,905,895,2,5,413,18,0,428,32.52,0.16,1.2000000000000002,42,1005,242,3.8000000000000003 +2008,4,14,12,30,17.6,0.86,0.154,0.63,144,866,839,7,5.2,356,337,0,627,36.65,0.16,1.2000000000000002,44.07,1004,240,4.4 +2008,4,14,13,30,16.900000000000002,0.9,0.154,0.63,136,831,730,0,5.4,136,831,0,730,44.410000000000004,0.16,1.3,46.72,1004,241,4.7 +2008,4,14,14,30,15.9,0.92,0.148,0.63,121,778,577,0,5.6000000000000005,121,778,0,577,54.160000000000004,0.16,1.3,50.39,1004,244,4.5 +2008,4,14,15,30,14.700000000000001,1,0.121,0.63,94,703,392,0,5.9,94,703,0,392,64.88,0.16,1.5,55.47,1004,245,3.8000000000000003 +2008,4,14,16,30,13.4,0.99,0.122,0.63,68,513,192,6,6.7,10,0,0,10,75.96000000000001,0.16,1.7000000000000002,64,1004,243,2.7 +2008,4,14,17,30,12.3,0.9400000000000001,0.14300000000000002,0.63,22,107,28,8,8.5,7,0,7,7,86.89,0.16,1.8,77.44,1004,237,1.7000000000000002 +2008,4,14,18,30,11.9,0.9,0.171,0.63,0,0,0,7,9.5,0,0,0,0,97.85000000000001,0.16,1.8,85.36,1004,224,1.2000000000000002 +2008,4,14,19,30,11.5,0.86,0.189,0.63,0,0,0,4,9.9,0,0,0,0,107.85000000000001,0.16,1.7000000000000002,89.82000000000001,1004,216,1.2000000000000002 +2008,4,14,20,30,11.100000000000001,0.81,0.179,0.63,0,0,0,4,9.700000000000001,0,0,0,0,116.60000000000001,0.16,1.6,91.05,1003,224,1.4000000000000001 +2008,4,14,21,30,10.700000000000001,0.76,0.176,0.63,0,0,0,4,9.200000000000001,0,0,0,0,123.42,0.16,1.4000000000000001,90.64,1003,239,1.7000000000000002 +2008,4,14,22,30,10.200000000000001,0.6900000000000001,0.156,0.63,0,0,0,0,8.700000000000001,0,0,0,0,127.48,0.16,1.2000000000000002,90.47,1002,249,1.9000000000000001 +2008,4,14,23,30,9.4,0.62,0.132,0.63,0,0,0,0,7.800000000000001,0,0,0,0,128.1,0.16,1,89.7,1002,251,1.8 +2008,4,15,0,30,8.700000000000001,0.59,0.122,0.63,0,0,0,0,7.2,0,0,0,0,125.15,0.16,1,90,1001,245,1.7000000000000002 +2008,4,15,1,30,8.3,0.56,0.121,0.63,0,0,0,0,6.800000000000001,0,0,0,0,119.17,0.16,1,90.36,1001,237,1.7000000000000002 +2008,4,15,2,30,8.1,0.53,0.122,0.63,0,0,0,0,6.7,0,0,0,0,110.98,0.16,1,90.87,1000,231,1.7000000000000002 +2008,4,15,3,30,8.1,0.55,0.121,0.63,0,0,0,0,6.7,0,0,0,0,101.33,0.16,1,91.05,1000,225,1.6 +2008,4,15,4,30,9.200000000000001,0.5700000000000001,0.11800000000000001,0.63,0,0,0,4,6.800000000000001,0,0,0,0,90.18,0.16,1.1,84.79,1000,222,1.6 +2008,4,15,5,30,11.3,0.59,0.11800000000000001,0.63,57,412,131,0,8.200000000000001,57,412,0,131,79.68,0.16,1.1,81.42,1000,224,2.2 +2008,4,15,6,30,12.8,0.65,0.152,0.63,98,610,321,0,8.6,98,610,0,321,68.56,0.16,1.2000000000000002,75.78,1000,236,2.9000000000000004 +2008,4,15,7,30,13.5,0.68,0.157,0.63,121,735,515,3,7.800000000000001,272,32,0,289,57.63,0.16,1.2000000000000002,68.58,1000,254,3.2 +2008,4,15,8,30,13.9,0.73,0.163,0.63,138,802,681,8,6.9,329,275,0,515,47.42,0.16,1.3,62.84,1001,270,3.6 +2008,4,15,9,30,14,0.8,0.163,0.63,147,846,806,7,6.1000000000000005,152,1,0,153,38.76,0.16,1.3,59.13,1001,281,4.1000000000000005 +2008,4,15,10,30,14,0.85,0.159,0.63,148,870,877,8,5.6000000000000005,413,89,0,487,33.1,0.16,1.3,57.02,1001,285,4.6000000000000005 +2008,4,15,11,30,13.9,0.9,0.148,0.63,143,883,890,0,5.300000000000001,143,883,0,890,32.18,0.16,1.3,56.11,1001,286,4.9 +2008,4,15,12,30,13.8,1,0.138,0.63,134,877,840,3,5.2,450,121,0,547,36.35,0.16,1.4000000000000001,56.24,1001,285,5.1000000000000005 +2008,4,15,13,30,13.600000000000001,1.11,0.139,0.63,126,846,733,8,5.5,339,128,0,431,44.160000000000004,0.16,1.4000000000000001,58.21,1001,285,5.2 +2008,4,15,14,30,13.200000000000001,1.17,0.14300000000000002,0.63,117,784,578,8,6.1000000000000005,267,287,7,436,53.95,0.16,1.5,62.01,1002,286,5.1000000000000005 +2008,4,15,15,30,12.5,1.17,0.17,0.63,108,656,388,4,6.5,35,0,0,35,64.69,0.16,1.5,66.95,1002,289,4.6000000000000005 +2008,4,15,16,30,11.600000000000001,1.1400000000000001,0.171,0.63,77,467,192,4,6.9,21,0,0,21,75.77,0.16,1.5,73.06,1002,293,3.5 +2008,4,15,17,30,10.600000000000001,1.08,0.17200000000000001,0.63,24,105,30,0,7.5,24,105,0,30,86.7,0.16,1.5,81.05,1003,297,2.5 +2008,4,15,18,30,10,1.06,0.184,0.63,0,0,0,4,7.6000000000000005,0,0,0,0,97.64,0.16,1.5,84.87,1004,302,2.1 +2008,4,15,19,30,9.600000000000001,1.06,0.17400000000000002,0.63,0,0,0,3,7.4,0,0,0,0,107.61,0.16,1.4000000000000001,86.39,1005,307,2 +2008,4,15,20,30,9.1,1.08,0.161,0.63,0,0,0,2,7.2,0,0,0,0,116.33,0.16,1.3,87.62,1005,312,1.8 +2008,4,15,21,30,8.6,1.12,0.154,0.63,0,0,0,3,6.6000000000000005,0,0,0,0,123.11,0.16,1.3,87.12,1005,321,1.6 +2008,4,15,22,30,8.200000000000001,1.12,0.139,0.63,0,0,0,0,6.2,0,0,0,0,127.14,0.16,1.2000000000000002,87.51,1006,330,1.5 +2008,4,15,23,30,8,1.08,0.129,0.63,0,0,0,0,6.1000000000000005,0,0,0,0,127.74000000000001,0.16,1.1,87.89,1006,334,1.4000000000000001 +2008,4,16,0,30,7.9,1.03,0.123,0.63,0,0,0,0,6.1000000000000005,0,0,0,0,124.79,0.16,1,88.42,1006,332,1.3 +2008,4,16,1,30,7.800000000000001,0.98,0.11800000000000001,0.63,0,0,0,0,6.2,0,0,0,0,118.83,0.16,0.9,89.4,1006,330,1.1 +2008,4,16,2,30,7.9,0.93,0.11800000000000001,0.63,0,0,0,0,6.2,0,0,0,0,110.66,0.16,0.9,89.31,1006,325,0.9 +2008,4,16,3,30,8.1,0.89,0.122,0.63,0,0,0,0,6.4,0,0,0,0,101.03,0.16,0.9,88.94,1006,315,0.7000000000000001 +2008,4,16,4,30,8.700000000000001,0.88,0.128,0.63,0,0,0,0,6.6000000000000005,0,0,0,0,89.94,0.16,0.9,86.42,1006,242,0.4 +2008,4,16,5,30,10.4,0.87,0.135,0.63,58,420,136,0,7.1000000000000005,58,420,0,136,79.4,0.16,0.9,80.22,1006,190,0.7000000000000001 +2008,4,16,6,30,12.700000000000001,0.86,0.138,0.63,91,648,331,0,7.9,91,648,0,331,68.28,0.16,1,72.55,1007,215,1.7000000000000002 +2008,4,16,7,30,14.600000000000001,0.87,0.131,0.63,109,779,529,0,7.7,109,779,0,529,57.35,0.16,1,63.45,1007,228,2.6 +2008,4,16,8,30,16,0.88,0.131,0.63,122,847,698,0,6.4,122,847,0,698,47.11,0.16,1,52.77,1007,228,3.1 +2008,4,16,9,30,16.900000000000002,0.87,0.125,0.63,127,887,822,0,5.5,127,887,0,822,38.42,0.16,1.1,47,1007,225,3.7 +2008,4,16,10,30,17.2,0.86,0.127,0.63,133,904,893,0,5.300000000000001,133,904,0,893,32.75,0.16,1.1,45.29,1007,222,4.4 +2008,4,16,11,30,17.2,0.86,0.127,0.63,133,907,904,0,5.1000000000000005,133,907,0,904,31.830000000000002,0.16,1.1,44.94,1006,217,4.7 +2008,4,16,12,30,16.900000000000002,0.84,0.134,0.63,134,887,851,0,5.1000000000000005,134,887,0,851,36.06,0.16,1.1,45.57,1006,211,4.7 +2008,4,16,13,30,16.3,0.8,0.148,0.63,135,846,744,0,4.9,135,846,0,744,43.92,0.16,1,46.81,1005,205,4.7 +2008,4,16,14,30,15.3,0.77,0.178,0.63,136,756,584,8,4.9,268,370,0,487,53.74,0.16,1,49.75,1005,200,4.7 +2008,4,16,15,30,14,0.73,0.198,0.63,122,626,392,7,5.2,147,9,0,151,64.49,0.16,1,55.2,1005,195,4.4 +2008,4,16,16,30,12.600000000000001,0.71,0.228,0.63,92,390,190,8,6,103,10,0,106,75.58,0.16,1.1,64.25,1005,187,3.5 +2008,4,16,17,30,11.5,0.59,0.265,0.63,24,35,26,8,7.2,17,0,7,17,86.51,0.16,1.1,75.13,1005,179,2.6 +2008,4,16,18,30,10.700000000000001,0.49,0.305,0.63,0,0,0,7,7.800000000000001,0,0,0,0,97.43,0.16,1.2000000000000002,82.51,1005,170,2.2 +2008,4,16,19,30,10.100000000000001,0.44,0.308,0.63,0,0,0,7,7.9,0,0,0,0,107.38,0.16,1.2000000000000002,86.14,1005,160,2 +2008,4,16,20,30,9.700000000000001,0.42,0.311,0.63,0,0,0,7,7.7,0,0,0,0,116.06,0.16,1.2000000000000002,87.53,1005,154,2 +2008,4,16,21,30,9.600000000000001,0.38,0.35000000000000003,0.63,0,0,0,7,7.800000000000001,0,0,0,0,122.81,0.16,1.2000000000000002,88.73,1005,147,2.1 +2008,4,16,22,30,9.1,0.32,0.361,0.63,0,0,0,6,7.800000000000001,0,0,0,0,126.8,0.16,1.2000000000000002,91.61,1004,140,2.2 +2008,4,16,23,30,8.700000000000001,0.29,0.358,0.63,0,0,0,6,7.7,0,0,0,0,127.38000000000001,0.16,1.3,93.39,1003,136,2.4000000000000004 +2008,4,17,0,30,8.8,0.31,0.353,0.63,0,0,0,6,7.7,0,0,0,0,124.44,0.16,1.3,93.09,1002,133,2.7 +2008,4,17,1,30,9.5,0.3,0.391,0.63,0,0,0,9,7.9,0,0,0,0,118.49000000000001,0.16,1.4000000000000001,89.73,1001,128,3.1 +2008,4,17,2,30,10,0.29,0.441,0.63,0,0,0,9,8.200000000000001,0,0,0,0,110.35000000000001,0.16,1.6,88.47,1000,122,3.5 +2008,4,17,3,30,10.3,0.31,0.497,0.63,0,0,0,9,8.3,0,0,0,0,100.74000000000001,0.16,1.7000000000000002,87.26,1000,117,3.8000000000000003 +2008,4,17,4,30,10.600000000000001,0.34,0.538,0.63,0,0,0,9,8.1,0,0,7,0,89.71000000000001,0.16,1.9000000000000001,84.65,999,115,4.2 +2008,4,17,5,30,11.200000000000001,0.35000000000000003,0.5690000000000001,0.63,88,66,100,9,8.1,3,0,0,3,79.13,0.16,2,81.07000000000001,999,114,4.5 +2008,4,17,6,30,11.9,0.37,0.599,0.63,193,227,278,9,8.3,7,0,0,7,68.01,0.16,2.1,78.64,999,115,4.7 +2008,4,17,7,30,12.9,0.39,0.592,0.63,257,369,458,9,8.700000000000001,14,0,0,14,57.06,0.16,2.2,75.71000000000001,999,121,5.1000000000000005 +2008,4,17,8,30,14,0.41000000000000003,0.55,0.63,286,485,618,9,9.4,85,0,0,85,46.81,0.16,2.3000000000000003,74.04,999,131,5.5 +2008,4,17,9,30,14.8,0.47000000000000003,0.531,0.63,300,556,737,7,10.600000000000001,334,17,0,347,38.09,0.16,2.4000000000000004,75.81,998,142,5.6000000000000005 +2008,4,17,10,30,15.5,0.46,0.539,0.63,314,577,802,6,11.9,248,2,0,250,32.39,0.16,2.5,79.21000000000001,997,154,5.6000000000000005 +2008,4,17,11,30,16,0.43,0.527,0.63,313,585,812,7,12.9,251,2,0,253,31.490000000000002,0.16,2.5,81.93,997,166,5.6000000000000005 +2008,4,17,12,30,16.3,0.56,0.48,0.63,284,601,772,7,12.8,350,20,0,366,35.77,0.16,2.5,79.76,996,171,5.4 +2008,4,17,13,30,16.1,0.5700000000000001,0.47900000000000004,0.63,265,558,668,6,12.3,323,27,0,342,43.68,0.16,2.5,78.08,996,167,5.1000000000000005 +2008,4,17,14,30,15.700000000000001,0.56,0.487,0.63,240,475,522,6,11.9,90,0,0,90,53.53,0.16,2.5,78.29,995,159,4.9 +2008,4,17,15,30,15.3,0.6,0.486,0.63,193,357,348,5,12.100000000000001,84,0,0,84,64.3,0.16,2.5,81.02,995,152,4.5 +2008,4,17,16,30,14.700000000000001,0.6,0.466,0.63,120,188,168,3,12.600000000000001,38,0,0,38,75.4,0.16,2.4000000000000004,87.32000000000001,995,150,3.9000000000000004 +2008,4,17,17,30,14.100000000000001,0.58,0.423,0.63,20,10,21,7,12.9,5,0,7,5,86.33,0.16,2.4000000000000004,92.37,995,150,3.6 +2008,4,17,18,30,13.700000000000001,0.56,0.405,0.63,0,0,0,7,12.9,0,0,0,0,97.22,0.16,2.4000000000000004,94.69,995,150,3.8000000000000003 +2008,4,17,19,30,13.600000000000001,0.53,0.391,0.63,0,0,0,7,12.700000000000001,0,0,0,0,107.14,0.16,2.4000000000000004,94.46000000000001,995,150,4.2 +2008,4,17,20,30,13.5,0.5,0.387,0.63,0,0,0,4,12.5,0,0,0,0,115.8,0.16,2.4000000000000004,93.57000000000001,995,150,4.5 +2008,4,17,21,30,13.5,0.55,0.433,0.63,0,0,0,8,12.3,0,0,0,0,122.5,0.16,2.5,92.75,994,151,4.9 +2008,4,17,22,30,13.5,0.51,0.498,0.63,0,0,0,9,12.4,0,0,0,0,126.47,0.16,2.5,93.19,994,153,5.2 +2008,4,17,23,30,13.700000000000001,0.4,0.579,0.63,0,0,0,9,12.700000000000001,0,0,0,0,127.03,0.16,2.5,93.45,993,156,5.2 +2008,4,18,0,30,13.700000000000001,0.42,0.54,0.63,0,0,0,6,13,0,0,0,0,124.09,0.16,2.4000000000000004,95.32000000000001,992,161,4.9 +2008,4,18,1,30,13.700000000000001,0.48,0.372,0.63,0,0,0,7,13.200000000000001,0,0,0,0,118.16,0.16,2.2,96.62,992,172,4.5 +2008,4,18,2,30,13.5,0.49,0.246,0.63,0,0,0,6,13.200000000000001,0,0,0,0,110.03,0.16,2,98.38,992,187,4.1000000000000005 +2008,4,18,3,30,13.100000000000001,0.56,0.195,0.63,0,0,0,4,13.100000000000001,0,0,0,0,100.45,0.16,1.8,99.68,993,199,3.4000000000000004 +2008,4,18,4,30,13.100000000000001,0.58,0.153,0.63,0,0,0,0,12.5,0,0,0,0,89.48,0.16,1.7000000000000002,96.39,993,205,3.3000000000000003 +2008,4,18,5,30,13.9,0.59,0.135,0.63,62,397,138,0,12.8,62,397,0,138,78.86,0.16,1.7000000000000002,92.81,993,209,4 +2008,4,18,6,30,14.700000000000001,0.62,0.123,0.63,90,644,334,0,12.8,90,644,0,334,67.74,0.16,1.7000000000000002,88.48,994,214,4.4 +2008,4,18,7,30,15.600000000000001,0.64,0.11,0.63,103,778,529,0,12.100000000000001,103,778,0,529,56.79,0.16,1.7000000000000002,79.86,994,218,4.5 +2008,4,18,8,30,16.400000000000002,0.67,0.098,0.63,109,856,698,0,11.200000000000001,109,856,0,698,46.51,0.16,1.7000000000000002,71.45,994,218,4.6000000000000005 +2008,4,18,9,30,17.3,0.65,0.157,0.63,146,840,809,1,10.700000000000001,146,840,0,809,37.76,0.16,1.7000000000000002,65.09,994,215,4.7 +2008,4,18,10,30,18,0.64,0.15,0.63,146,865,879,7,10.200000000000001,347,446,0,726,32.04,0.16,1.7000000000000002,60.15,994,212,4.800000000000001 +2008,4,18,11,30,18.3,0.64,0.158,0.63,152,859,887,6,9.8,429,171,0,576,31.150000000000002,0.16,1.8,57.64,994,207,4.9 +2008,4,18,12,30,18.1,0.66,0.181,0.63,159,824,830,7,9.700000000000001,351,62,0,401,35.480000000000004,0.16,1.9000000000000001,57.89,995,201,4.9 +2008,4,18,13,30,17.8,0.67,0.212,0.63,164,762,717,6,10,361,82,0,421,43.44,0.16,2,60.24,995,193,4.9 +2008,4,18,14,30,17.400000000000002,0.64,0.23,0.63,156,679,561,6,10.700000000000001,281,81,0,329,53.33,0.16,2.1,64.68,995,182,4.800000000000001 +2008,4,18,15,30,16.8,0.6,0.243,0.63,136,550,376,6,11.200000000000001,96,1,0,96,64.12,0.16,2.2,69.38,994,171,4.7 +2008,4,18,16,30,15.700000000000001,0.58,0.242,0.63,96,356,187,8,11.700000000000001,56,1,7,56,75.22,0.16,2.1,77.10000000000001,994,160,4.5 +2008,4,18,17,30,14.600000000000001,0.58,0.229,0.63,27,53,31,5,12.200000000000001,14,0,7,14,86.15,0.16,2.1,85.79,994,151,4.2 +2008,4,18,18,30,14.100000000000001,0.6,0.234,0.63,0,0,0,3,12.5,0,0,0,0,97.01,0.16,2.3000000000000003,90.35000000000001,995,143,4.4 +2008,4,18,19,30,13.9,0.62,0.252,0.63,0,0,0,0,12.700000000000001,0,0,0,0,106.91,0.16,2.4000000000000004,92.53,995,139,4.800000000000001 +2008,4,18,20,30,13.8,0.66,0.249,0.63,0,0,0,7,12.8,0,0,0,0,115.53,0.16,2.6,93.78,995,141,5 +2008,4,18,21,30,13.9,0.68,0.272,0.63,0,0,0,6,12.9,0,0,0,0,122.2,0.16,2.8000000000000003,93.74,995,153,5.2 +2008,4,18,22,30,14.100000000000001,0.65,0.331,0.63,0,0,0,6,13.100000000000001,0,0,0,0,126.13000000000001,0.16,2.8000000000000003,93.52,995,170,5.5 +2008,4,18,23,30,14.100000000000001,0.54,0.335,0.63,0,0,0,6,13.3,0,0,0,0,126.68,0.16,2.7,94.95,995,179,5.7 +2008,4,19,0,30,14,0.51,0.336,0.63,0,0,0,1,13.3,0,0,0,0,123.74000000000001,0.16,2.4000000000000004,95.73,995,177,5.4 +2008,4,19,1,30,13.9,0.49,0.299,0.63,0,0,0,7,13.200000000000001,0,0,0,0,117.83,0.16,2.1,95.78,994,171,5 +2008,4,19,2,30,13.5,0.52,0.232,0.63,0,0,0,0,13.100000000000001,0,0,0,0,109.73,0.16,1.7000000000000002,97.74000000000001,994,171,4.2 +2008,4,19,3,30,13,0.55,0.177,0.63,0,0,0,0,12.9,0,0,0,0,100.16,0.16,1.5,99.38,995,179,3.2 +2008,4,19,4,30,13.4,0.55,0.151,0.63,0,0,0,0,12.600000000000001,0,0,0,0,89.24,0.16,1.4000000000000001,95.09,995,182,3.1 +2008,4,19,5,30,14.8,0.55,0.137,0.63,64,408,145,0,13.3,64,408,0,145,78.60000000000001,0.16,1.3,90.99,996,186,3.7 +2008,4,19,6,30,16.1,0.59,0.136,0.63,96,642,342,0,13.700000000000001,96,642,0,342,67.47,0.16,1.3,85.85000000000001,996,198,4 +2008,4,19,7,30,17.6,0.64,0.136,0.63,115,763,536,0,13,115,763,0,536,56.51,0.16,1.3,74.48,997,208,4 +2008,4,19,8,30,18.8,0.65,0.135,0.63,127,832,703,0,11.5,127,832,0,703,46.21,0.16,1.3,62.54,997,211,4.2 +2008,4,19,9,30,19.6,0.66,0.133,0.63,135,873,827,0,10.700000000000001,135,873,0,827,37.44,0.16,1.3,56.32,997,210,4.3 +2008,4,19,10,30,20.1,0.65,0.133,0.63,139,891,897,0,10.200000000000001,139,891,0,897,31.69,0.16,1.3,52.86,997,212,4.3 +2008,4,19,11,30,20.400000000000002,0.65,0.131,0.63,139,898,910,0,9.600000000000001,139,898,0,910,30.82,0.16,1.2000000000000002,49.77,997,213,4.3 +2008,4,19,12,30,20.400000000000002,0.7000000000000001,0.11800000000000001,0.63,128,898,861,0,8.9,128,898,0,861,35.19,0.16,1.2000000000000002,47.59,997,214,4.1000000000000005 +2008,4,19,13,30,20.200000000000003,0.74,0.113,0.63,119,873,755,0,8.200000000000001,119,873,0,755,43.2,0.16,1.2000000000000002,46.11,997,214,3.9000000000000004 +2008,4,19,14,30,19.6,0.74,0.111,0.63,108,821,600,0,7.7,108,821,0,600,53.120000000000005,0.16,1.2000000000000002,46.050000000000004,997,216,3.7 +2008,4,19,15,30,18.8,0.7000000000000001,0.115,0.63,94,721,411,0,7.4,94,721,0,411,63.93,0.16,1.2000000000000002,47.42,997,218,3.1 +2008,4,19,16,30,16.900000000000002,0.65,0.123,0.63,73,527,209,8,8.1,68,3,0,68,75.03,0.16,1.3,56.02,997,217,1.9000000000000001 +2008,4,19,17,30,14.8,0.61,0.127,0.63,28,147,38,0,10.8,28,147,0,38,85.96000000000001,0.16,1.3,76.91,997,212,1.1 +2008,4,19,18,30,14,0.6,0.125,0.63,0,0,0,0,10.200000000000001,0,0,0,0,96.81,0.16,1.3,78.04,998,206,1.1 +2008,4,19,19,30,13.700000000000001,0.6,0.123,0.63,0,0,0,0,10.100000000000001,0,0,0,0,106.68,0.16,1.3,79.12,998,201,1 +2008,4,19,20,30,13.600000000000001,0.62,0.121,0.63,0,0,0,0,10.200000000000001,0,0,0,0,115.27,0.16,1.3,80.12,998,199,0.9 +2008,4,19,21,30,13.4,0.63,0.121,0.63,0,0,0,0,10.5,0,0,0,0,121.9,0.16,1.2000000000000002,82.77,998,182,0.6000000000000001 +2008,4,19,22,30,13.100000000000001,0.65,0.122,0.63,0,0,0,0,10.700000000000001,0,0,0,0,125.8,0.16,1.2000000000000002,85.13,997,128,0.5 +2008,4,19,23,30,12.5,0.67,0.124,0.63,0,0,0,0,10.5,0,0,0,0,126.33,0.16,1.3,87.67,997,80,0.7000000000000001 +2008,4,20,0,30,11.9,0.68,0.124,0.63,0,0,0,0,10,0,0,0,0,123.4,0.16,1.3,87.99,997,70,1.1 +2008,4,20,1,30,11.5,0.7000000000000001,0.122,0.63,0,0,0,0,9.1,0,0,0,0,117.5,0.16,1.3,84.93,997,72,1.3 +2008,4,20,2,30,11.100000000000001,0.71,0.12,0.63,0,0,0,0,7.800000000000001,0,0,0,0,109.42,0.16,1.3,80.31,997,78,1.5 +2008,4,20,3,30,11,0.72,0.11800000000000001,0.63,0,0,0,0,6.6000000000000005,0,0,0,0,99.87,0.16,1.3,74.45,997,88,1.5 +2008,4,20,4,30,12.200000000000001,0.73,0.11800000000000001,0.63,0,0,0,0,6,0,0,0,0,89,0.16,1.2000000000000002,65.67,997,100,1.4000000000000001 +2008,4,20,5,30,15,0.73,0.11900000000000001,0.63,61,458,154,0,8.4,61,458,0,154,78.34,0.16,1.2000000000000002,64.47,997,119,1.6 +2008,4,20,6,30,17.8,0.73,0.124,0.63,92,670,351,0,7.4,92,670,0,351,67.21000000000001,0.16,1.2000000000000002,50.54,998,152,2 +2008,4,20,7,30,19.6,0.74,0.132,0.63,113,776,544,0,7.1000000000000005,113,776,0,544,56.24,0.16,1.2000000000000002,44.230000000000004,998,182,2.3000000000000003 +2008,4,20,8,30,20.700000000000003,0.74,0.14100000000000001,0.63,130,833,709,0,7.4,130,833,0,709,45.92,0.16,1.2000000000000002,42.35,998,193,2.8000000000000003 +2008,4,20,9,30,21.400000000000002,0.74,0.148,0.63,142,869,834,0,7.800000000000001,142,869,0,834,37.12,0.16,1.1,41.49,998,194,3.2 +2008,4,20,10,30,21.8,0.72,0.154,0.63,149,882,903,0,7.7,149,882,0,903,31.35,0.16,1.1,40.38,997,193,3.4000000000000004 +2008,4,20,11,30,22,0.7000000000000001,0.156,0.63,151,883,912,0,7.5,151,883,0,912,30.490000000000002,0.16,1.1,39.28,997,191,3.6 +2008,4,20,12,30,21.900000000000002,0.81,0.125,0.63,131,898,867,0,7.2,131,898,0,867,34.910000000000004,0.16,1.1,38.78,997,191,3.7 +2008,4,20,13,30,21.700000000000003,0.79,0.128,0.63,126,861,756,0,6.9,126,861,0,756,42.97,0.16,1.2000000000000002,38.29,996,190,3.6 +2008,4,20,14,30,21.200000000000003,0.79,0.125,0.63,114,805,599,0,6.4,114,805,0,599,52.92,0.16,1.3,38.29,996,186,3.2 +2008,4,20,15,30,20.3,0.79,0.123,0.63,97,713,412,7,6.2,207,154,0,275,63.74,0.16,1.3,39.800000000000004,996,180,2.4000000000000004 +2008,4,20,16,30,18.6,0.77,0.122,0.63,72,539,213,8,7.9,120,267,7,190,74.85000000000001,0.16,1.3,49.76,995,167,1.4000000000000001 +2008,4,20,17,30,16.7,0.72,0.127,0.63,29,164,41,3,10.4,29,0,7,29,85.78,0.16,1.3,66.51,995,142,1.2000000000000002 +2008,4,20,18,30,15.3,0.67,0.134,0.63,0,0,0,8,8.5,0,0,0,0,96.60000000000001,0.16,1.2000000000000002,63.92,994,116,1.5 +2008,4,20,19,30,14.3,0.63,0.138,0.63,0,0,0,0,8.5,0,0,0,0,106.45,0.16,1.1,67.91,994,105,1.7000000000000002 +2008,4,20,20,30,13.700000000000001,0.56,0.14300000000000002,0.63,0,0,0,0,8.1,0,0,0,0,115,0.16,1,68.83,993,106,2.1 +2008,4,20,21,30,13.3,0.46,0.164,0.63,0,0,0,7,7.5,0,0,0,0,121.60000000000001,0.16,1,68.14,992,110,2.7 +2008,4,20,22,30,13.100000000000001,0.36,0.209,0.63,0,0,0,8,7.1000000000000005,0,0,0,0,125.47,0.16,1.2000000000000002,67.04,991,117,3 +2008,4,20,23,30,12.8,0.28,0.277,0.63,0,0,0,1,7,0,0,0,0,125.99000000000001,0.16,1.4000000000000001,67.59,991,128,2.8000000000000003 +2008,4,21,0,30,12.600000000000001,0.26,0.338,0.63,0,0,0,3,7.1000000000000005,0,0,0,0,123.06,0.16,1.8,69,991,138,2.7 +2008,4,21,1,30,12.8,0.29,0.379,0.63,0,0,0,4,7.300000000000001,0,0,0,0,117.18,0.16,2.1,69.24,991,140,2.9000000000000004 +2008,4,21,2,30,13,0.3,0.434,0.63,0,0,0,4,7.7,0,0,0,0,109.12,0.16,2.3000000000000003,70.22,990,138,2.9000000000000004 +2008,4,21,3,30,13.100000000000001,0.27,0.544,0.63,0,0,0,0,8.4,0,0,0,0,99.59,0.16,2.5,72.98,990,141,2.9000000000000004 +2008,4,21,4,30,13.8,0.25,0.653,0.63,0,0,0,5,9.4,0,0,5,0,88.77,0.16,2.6,74.78,990,152,3.1 +2008,4,21,5,30,14.8,0.26,0.7000000000000001,0.63,95,44,104,4,10.9,24,0,0,24,78.08,0.16,2.7,77.64,990,172,3.5 +2008,4,21,6,30,15.3,0.42,0.648,0.63,202,221,289,8,12.4,9,0,0,9,66.95,0.16,2.6,82.76,991,205,4.1000000000000005 +2008,4,21,7,30,15.700000000000001,0.5700000000000001,0.464,0.63,224,469,486,3,13.100000000000001,339,57,0,372,55.97,0.16,2.3000000000000003,84.4,991,237,5.1000000000000005 +2008,4,21,8,30,16.5,0.6,0.28500000000000003,0.63,193,688,674,3,12.5,303,4,0,306,45.64,0.16,1.9000000000000001,77.35000000000001,992,248,5.800000000000001 +2008,4,21,9,30,17.3,0.7000000000000001,0.131,0.63,133,867,828,3,11.5,378,12,0,388,36.800000000000004,0.16,1.6,68.89,993,248,5.800000000000001 +2008,4,21,10,30,17.6,0.73,0.1,0.63,121,912,902,3,10.4,366,3,0,369,31.01,0.16,1.6,62.88,993,246,5.7 +2008,4,21,11,30,17.7,0.8,0.091,0.63,116,923,914,1,9.8,116,923,1,914,30.16,0.16,1.6,59.69,994,245,5.5 +2008,4,21,12,30,17.5,0.79,0.124,0.63,130,882,856,3,9.4,380,10,0,388,34.63,0.16,1.6,59.03,994,243,5.2 +2008,4,21,13,30,17.2,0.81,0.133,0.63,128,842,746,1,9.200000000000001,128,842,0,746,42.74,0.16,1.7000000000000002,59.46,994,238,5 +2008,4,21,14,30,16.7,0.8,0.146,0.63,122,773,590,0,9.3,122,773,0,590,52.72,0.16,1.7000000000000002,61.480000000000004,995,229,4.800000000000001 +2008,4,21,15,30,16,0.8,0.161,0.63,109,656,401,0,9.4,109,656,0,401,63.56,0.16,1.8,64.81,995,216,4.5 +2008,4,21,16,30,15,0.78,0.18,0.63,85,451,204,3,9.8,20,0,0,20,74.67,0.16,1.9000000000000001,71.22,995,200,3.8000000000000003 +2008,4,21,17,30,14,0.74,0.203,0.63,31,97,39,0,10.9,31,97,0,39,85.59,0.16,1.9000000000000001,81.79,996,187,3.2 +2008,4,21,18,30,13.700000000000001,0.6900000000000001,0.221,0.63,0,0,0,1,11.700000000000001,0,0,0,0,96.4,0.16,2,87.84,996,180,3.2 +2008,4,21,19,30,13.600000000000001,0.64,0.232,0.63,0,0,0,4,12.3,0,0,0,0,106.22,0.16,2,91.78,996,181,3.2 +2008,4,21,20,30,13.600000000000001,0.6,0.251,0.63,0,0,0,9,12.700000000000001,0,0,0,0,114.74000000000001,0.16,2.1,94.13,996,190,2.8000000000000003 +2008,4,21,21,30,13.5,0.6,0.267,0.63,0,0,0,4,12.8,0,0,0,0,121.31,0.16,2.1,95.63,995,207,2.3000000000000003 +2008,4,21,22,30,13.3,0.64,0.245,0.63,0,0,0,4,12.600000000000001,0,0,0,0,125.15,0.16,2,95.77,995,228,2 +2008,4,21,23,30,12.9,0.71,0.189,0.63,0,0,0,4,12.200000000000001,0,0,0,0,125.65,0.16,2,95.25,995,241,1.9000000000000001 +2008,4,22,0,30,12.200000000000001,0.8300000000000001,0.145,0.63,0,0,0,4,11.600000000000001,0,0,0,0,122.72,0.16,1.9000000000000001,95.83,994,242,1.7000000000000002 +2008,4,22,1,30,11.600000000000001,0.89,0.111,0.63,0,0,0,3,11,0,0,0,0,116.86,0.16,1.9000000000000001,95.8,994,235,1.5 +2008,4,22,2,30,11.4,0.93,0.094,0.63,0,0,0,4,10.600000000000001,0,0,0,0,108.82000000000001,0.16,1.8,94.71000000000001,994,228,1.5 +2008,4,22,3,30,11.3,0.98,0.095,0.63,0,0,0,4,10.5,0,0,0,0,99.31,0.16,1.7000000000000002,94.64,994,227,1.6 +2008,4,22,4,30,12,1.02,0.09,0.63,12,84,14,3,10.3,3,0,7,3,88.53,0.16,1.7000000000000002,89.44,994,228,2.2 +2008,4,22,5,30,13.3,1.06,0.085,0.63,53,523,164,0,11.200000000000001,53,523,0,164,77.82000000000001,0.16,1.7000000000000002,87.12,994,231,3.3000000000000003 +2008,4,22,6,30,14.200000000000001,1.09,0.082,0.63,75,721,361,4,11.3,117,0,7,117,66.7,0.16,1.7000000000000002,82.73,995,234,4.4 +2008,4,22,7,30,14.9,1.08,0.081,0.63,89,820,551,3,10.5,300,59,0,333,55.71,0.16,1.8,75.16,995,235,5.2 +2008,4,22,8,30,15.3,0.99,0.092,0.63,105,866,714,3,9.8,354,68,0,401,45.35,0.16,1.8,69.51,995,233,5.9 +2008,4,22,9,30,15.4,0.88,0.153,0.63,142,847,823,4,9.5,200,0,0,200,36.49,0.16,1.8,67.85,995,232,6.4 +2008,4,22,10,30,15.5,0.79,0.156,0.63,149,861,890,2,9.4,414,19,0,430,30.67,0.16,1.8,67.1,995,234,6.800000000000001 +2008,4,22,11,30,15.600000000000001,0.66,0.14300000000000002,0.63,145,871,901,3,9.3,268,0,0,268,29.830000000000002,0.16,1.8,66.26,996,237,7 +2008,4,22,12,30,15.600000000000001,0.68,0.178,0.63,159,830,844,4,9.200000000000001,118,0,0,118,34.35,0.16,1.8,65.84,996,239,7 +2008,4,22,13,30,15.5,0.67,0.184,0.63,154,791,736,4,9.1,93,0,0,93,42.51,0.16,1.8,65.63,996,241,6.7 +2008,4,22,14,30,15.200000000000001,0.65,0.194,0.63,144,720,583,3,9,126,0,0,127,52.52,0.16,1.8,66.31,996,243,6.2 +2008,4,22,15,30,14.8,0.6900000000000001,0.216,0.63,129,593,395,3,8.9,127,0,0,127,63.370000000000005,0.16,1.9000000000000001,67.91,996,245,5.4 +2008,4,22,16,30,14.200000000000001,0.7000000000000001,0.215,0.63,93,410,203,3,9.4,55,0,0,55,74.49,0.16,1.9000000000000001,72.74,996,245,4.7 +2008,4,22,17,30,13.5,0.7000000000000001,0.222,0.63,33,88,40,7,10.100000000000001,13,0,7,13,85.41,0.16,1.9000000000000001,79.72,997,246,4.2 +2008,4,22,18,30,13.100000000000001,0.71,0.234,0.63,0,0,0,6,10.5,0,0,0,0,96.19,0.16,2,84.3,997,251,3.9000000000000004 +2008,4,22,19,30,12.700000000000001,0.68,0.229,0.63,0,0,0,3,10.700000000000001,0,0,0,0,105.99000000000001,0.16,2,87.57000000000001,998,256,3.5 +2008,4,22,20,30,12.200000000000001,0.64,0.222,0.63,0,0,0,0,10.700000000000001,0,0,0,0,114.48,0.16,2,90.75,998,260,2.9000000000000004 +2008,4,22,21,30,11.700000000000001,0.65,0.23700000000000002,0.63,0,0,0,1,10.8,0,0,0,0,121.01,0.16,2,94.21000000000001,999,263,2.3000000000000003 +2008,4,22,22,30,11.3,0.6900000000000001,0.251,0.63,0,0,0,0,10.9,0,0,0,0,124.82000000000001,0.16,2,97.60000000000001,999,265,1.9000000000000001 +2008,4,22,23,30,11.100000000000001,0.72,0.252,0.63,0,0,0,0,10.9,0,0,0,0,125.31,0.16,1.9000000000000001,98.99000000000001,999,270,1.6 +2008,4,23,0,30,11,0.77,0.248,0.63,0,0,0,0,10.9,0,0,0,0,122.39,0.16,1.8,99.27,999,272,1.4000000000000001 +2008,4,23,1,30,11.200000000000001,0.77,0.226,0.63,0,0,0,0,10.9,0,0,0,0,116.55,0.16,1.8,98.32000000000001,1000,274,1.2000000000000002 +2008,4,23,2,30,11.600000000000001,0.74,0.20800000000000002,0.63,0,0,0,0,11,0,0,0,0,108.53,0.16,1.7000000000000002,96.10000000000001,1000,272,0.8 +2008,4,23,3,30,11.700000000000001,0.71,0.212,0.63,0,0,0,0,11,0,0,0,0,99.04,0.16,1.7000000000000002,95.55,1000,222,0.4 +2008,4,23,4,30,12,0.66,0.213,0.63,11,14,11,0,10.9,11,14,0,11,88.28,0.16,1.7000000000000002,93.18,1001,152,0.4 +2008,4,23,5,30,13.4,0.58,0.217,0.63,80,329,150,0,11.200000000000001,80,329,0,150,77.57000000000001,0.16,1.6,86.33,1002,135,0.8 +2008,4,23,6,30,15.3,0.51,0.226,0.63,123,536,337,0,11,123,536,0,337,66.45,0.16,1.6,75.47,1003,161,1 +2008,4,23,7,30,17.2,0.44,0.23,0.63,153,656,525,0,10.4,153,656,0,525,55.45,0.16,1.6,64.11,1003,197,1.2000000000000002 +2008,4,23,8,30,18.7,0.38,0.247,0.63,179,715,684,0,9.700000000000001,179,715,0,684,45.08,0.16,1.6,56.01,1004,219,1.6 +2008,4,23,9,30,19.700000000000003,0.3,0.20600000000000002,0.63,174,790,812,0,9.600000000000001,174,790,0,812,36.19,0.16,1.6,52.04,1004,227,2 +2008,4,23,10,30,20.400000000000002,0.35000000000000003,0.187,0.63,169,829,884,0,9.600000000000001,169,829,0,884,30.34,0.16,1.6,49.82,1004,229,2.5 +2008,4,23,11,30,20.6,0.46,0.16,0.63,154,854,898,0,9.600000000000001,154,854,0,898,29.51,0.16,1.7000000000000002,49.28,1004,231,2.9000000000000004 +2008,4,23,12,30,20.5,0.59,0.156,0.63,147,847,849,0,9.700000000000001,147,847,0,849,34.08,0.16,1.7000000000000002,49.93,1005,232,3.3000000000000003 +2008,4,23,13,30,20.1,0.62,0.158,0.63,140,814,742,0,9.700000000000001,140,814,0,742,42.28,0.16,1.7000000000000002,51.31,1005,232,3.3000000000000003 +2008,4,23,14,30,19.5,0.62,0.161,0.63,130,753,590,0,9.600000000000001,130,753,0,590,52.33,0.16,1.7000000000000002,52.85,1005,230,3.1 +2008,4,23,15,30,18.6,0.63,0.165,0.63,112,650,406,0,9.5,112,650,0,406,63.190000000000005,0.16,1.7000000000000002,55.51,1006,227,3 +2008,4,23,16,30,16.900000000000002,0.65,0.16,0.63,82,479,211,0,9.700000000000001,82,479,0,211,74.31,0.16,1.7000000000000002,62.53,1006,224,2.4000000000000004 +2008,4,23,17,30,14.700000000000001,0.65,0.154,0.63,32,146,44,0,11.4,32,146,0,44,85.23,0.16,1.7000000000000002,80.48,1007,220,1.7000000000000002 +2008,4,23,18,30,13.3,0.62,0.155,0.63,0,0,0,0,11.600000000000001,0,0,0,0,95.99000000000001,0.16,1.8,89.63,1007,213,1.4000000000000001 +2008,4,23,19,30,12.600000000000001,0.58,0.158,0.63,0,0,0,0,11.9,0,0,0,0,105.76,0.16,1.8,95.34,1008,203,1.2000000000000002 +2008,4,23,20,30,12.100000000000001,0.54,0.158,0.63,0,0,0,0,12.100000000000001,0,0,0,0,114.22,0.16,1.8,100,1008,190,1.1 +2008,4,23,21,30,11.600000000000001,0.53,0.152,0.63,0,0,0,0,11.600000000000001,0,0,0,0,120.72,0.16,1.8,100,1008,182,1.1 +2008,4,23,22,30,11.3,0.55,0.14300000000000002,0.63,0,0,0,0,11.3,0,0,0,0,124.5,0.16,1.8,100,1008,180,1.1 +2008,4,23,23,30,10.9,0.5700000000000001,0.138,0.63,0,0,0,0,10.9,0,0,0,0,124.98,0.16,1.8,100,1008,180,1.2000000000000002 +2008,4,24,0,30,10.600000000000001,0.6,0.138,0.63,0,0,0,0,10.600000000000001,0,0,0,0,122.06,0.16,1.8,100,1008,178,1.2000000000000002 +2008,4,24,1,30,10.5,0.62,0.14300000000000002,0.63,0,0,0,0,10.5,0,0,0,0,116.24000000000001,0.16,1.8,100,1009,174,1.2000000000000002 +2008,4,24,2,30,10.4,0.63,0.151,0.63,0,0,0,0,10.4,0,0,0,0,108.24000000000001,0.16,1.8,100,1009,166,1.2000000000000002 +2008,4,24,3,30,10.600000000000001,0.67,0.165,0.63,0,0,0,0,10.600000000000001,0,0,0,0,98.76,0.16,1.8,100,1009,155,1.1 +2008,4,24,4,30,11.8,0.71,0.176,0.63,14,30,15,0,11.100000000000001,14,30,0,15,88.05,0.16,1.9000000000000001,95.71000000000001,1009,142,1.4000000000000001 +2008,4,24,5,30,13.600000000000001,0.72,0.17400000000000002,0.63,74,390,159,0,11.3,74,390,0,159,77.32000000000001,0.16,1.9000000000000001,85.91,1010,137,2 +2008,4,24,6,30,15.100000000000001,0.75,0.167,0.63,106,608,351,0,10.8,106,608,0,351,66.2,0.16,2,75.67,1010,144,2.2 +2008,4,24,7,30,16.7,0.77,0.166,0.63,126,725,540,2,10.3,297,46,7,324,55.19,0.16,2,66.02,1010,158,2.2 +2008,4,24,8,30,18.1,0.78,0.171,0.63,142,788,701,1,10.3,142,788,0,701,44.800000000000004,0.16,2,60.24,1010,174,2.1 +2008,4,24,9,30,18.900000000000002,0.81,0.178,0.63,154,822,820,0,10.5,154,822,0,820,35.88,0.16,2,58.24,1011,193,2.1 +2008,4,24,10,30,19.200000000000003,0.8200000000000001,0.18,0.63,159,837,885,0,10.600000000000001,159,837,0,885,30.01,0.16,2.1,57.39,1011,210,2.3000000000000003 +2008,4,24,11,30,19,0.8300000000000001,0.182,0.63,161,839,893,0,10.5,161,839,0,893,29.19,0.16,2.1,57.94,1011,223,2.4000000000000004 +2008,4,24,12,30,18.7,0.87,0.202,0.63,166,810,839,0,10.5,166,810,0,839,33.81,0.16,2.1,59.050000000000004,1011,233,2.5 +2008,4,24,13,30,18.400000000000002,0.9,0.21,0.63,160,769,730,0,10.5,160,769,0,730,42.06,0.16,2.2,60,1011,241,2.4000000000000004 +2008,4,24,14,30,18.1,0.92,0.21,0.63,145,709,580,0,10.4,145,709,0,580,52.13,0.16,2.2,60.85,1010,251,2.2 +2008,4,24,15,30,17.7,0.9500000000000001,0.229,0.63,130,591,398,6,10.3,91,2,0,92,63.01,0.16,2.2,62.07,1010,259,1.8 +2008,4,24,16,30,16.8,0.97,0.23500000000000001,0.63,94,409,206,6,10.8,4,0,0,4,74.13,0.16,2.2,67.61,1011,261,1.4000000000000001 +2008,4,24,17,30,15.5,0.97,0.227,0.63,34,114,44,6,12.4,9,0,7,9,85.04,0.16,2.2,82.01,1011,266,1.1 +2008,4,24,18,30,14.600000000000001,0.96,0.233,0.63,0,0,0,3,12.200000000000001,0,0,0,0,95.78,0.16,2.1,85.33,1011,282,1 +2008,4,24,19,30,14.100000000000001,0.9400000000000001,0.23500000000000001,0.63,0,0,0,0,11.8,0,0,0,0,105.53,0.16,2,85.79,1012,304,0.9 +2008,4,24,20,30,13.5,0.9,0.231,0.63,0,0,0,0,11.3,0,0,0,0,113.97,0.16,1.8,86.28,1012,330,1 +2008,4,24,21,30,12.9,0.88,0.221,0.63,0,0,0,0,10.9,0,0,0,0,120.43,0.16,1.6,87.71000000000001,1012,174,1 +2008,4,24,22,30,12.100000000000001,0.87,0.2,0.63,0,0,0,0,10.5,0,0,0,0,124.19,0.16,1.4000000000000001,90.05,1012,13,1.1 +2008,4,24,23,30,11.3,0.85,0.176,0.63,0,0,0,0,9.9,0,0,0,0,124.65,0.16,1.3,90.89,1012,28,1.2000000000000002 +2008,4,25,0,30,10.600000000000001,0.8200000000000001,0.155,0.63,0,0,0,0,9.1,0,0,0,0,121.74000000000001,0.16,1.1,90.17,1012,40,1.3 +2008,4,25,1,30,9.9,0.79,0.14300000000000002,0.63,0,0,0,0,8.1,0,0,0,0,115.93,0.16,1,88.57000000000001,1012,47,1.5 +2008,4,25,2,30,9.3,0.76,0.136,0.63,0,0,0,0,7,0,0,0,0,107.95,0.16,0.9,85.83,1013,48,1.6 +2008,4,25,3,30,8.8,0.76,0.132,0.63,0,0,0,0,6,0,0,0,0,98.5,0.16,0.9,82.5,1013,48,1.6 +2008,4,25,4,30,9.9,0.77,0.13,0.63,16,73,18,0,5.300000000000001,16,73,0,18,87.81,0.16,0.9,72.93,1013,50,1.9000000000000001 +2008,4,25,5,30,12.3,0.8,0.131,0.63,65,483,173,0,6.1000000000000005,65,483,0,173,77.08,0.16,0.9,66,1013,49,2.4000000000000004 +2008,4,25,6,30,15.100000000000001,0.8300000000000001,0.136,0.63,96,681,373,0,5.300000000000001,96,681,0,373,65.96000000000001,0.16,0.9,52.09,1014,44,2.7 +2008,4,25,7,30,17.900000000000002,0.87,0.14400000000000002,0.63,117,779,564,0,4.3,117,779,0,564,54.94,0.16,1,40.65,1014,34,2.5 +2008,4,25,8,30,19.900000000000002,0.9,0.155,0.63,134,830,726,0,4,134,830,0,726,44.53,0.16,1.1,35.06,1013,16,2.2 +2008,4,25,9,30,21.200000000000003,0.9,0.14,0.63,136,876,848,0,4.1000000000000005,136,876,0,848,35.58,0.16,1.2000000000000002,32.6,1013,171,2 +2008,4,25,10,30,22,0.92,0.164,0.63,152,873,910,0,4.6000000000000005,152,873,0,910,29.68,0.16,1.3,32.19,1012,326,2.1 +2008,4,25,11,30,22.3,0.9400000000000001,0.189,0.63,163,854,911,8,5.7,327,540,0,800,28.87,0.16,1.4000000000000001,34.04,1012,307,2.6 +2008,4,25,12,30,22.200000000000003,0.9500000000000001,0.196,0.63,161,832,854,0,6.4,161,832,0,854,33.54,0.16,1.5,35.92,1011,297,3.2 +2008,4,25,13,30,21.8,0.97,0.186,0.63,148,802,745,0,7,148,802,0,745,41.84,0.16,1.7000000000000002,38.35,1011,294,3.8000000000000003 +2008,4,25,14,30,21,1.02,0.186,0.63,135,743,593,0,7.4,135,743,0,593,51.94,0.16,1.8,41.44,1010,293,4.1000000000000005 +2008,4,25,15,30,19.700000000000003,1.06,0.193,0.63,117,637,408,0,7.800000000000001,117,637,0,408,62.83,0.16,1.9000000000000001,46.19,1010,291,4 +2008,4,25,16,30,17.7,1.1,0.20500000000000002,0.63,87,454,213,3,9,83,1,0,83,73.95,0.16,2,56.86,1010,286,3.2 +2008,4,25,17,30,15.5,1.1300000000000001,0.215,0.63,34,142,47,2,10.8,34,0,7,34,84.86,0.16,2,73.68,1010,285,2.3000000000000003 +2008,4,25,18,30,14.100000000000001,1.16,0.227,0.63,0,0,0,4,11.100000000000001,0,0,0,0,95.58,0.16,2.1,82.19,1010,292,1.8 +2008,4,25,19,30,13.4,1.17,0.23600000000000002,0.63,0,0,0,4,11.3,0,0,0,0,105.31,0.16,2.1,86.84,1011,302,1.5 +2008,4,25,20,30,12.9,1.19,0.242,0.63,0,0,0,4,11.3,0,0,0,0,113.71000000000001,0.16,2.1,90.23,1010,316,1.4000000000000001 +2008,4,25,21,30,12.600000000000001,1.2,0.25,0.63,0,0,0,0,11.4,0,0,0,0,120.14,0.16,2.1,92.3,1010,333,1.4000000000000001 +2008,4,25,22,30,12.200000000000001,1.2,0.256,0.63,0,0,0,0,11.200000000000001,0,0,0,0,123.87,0.16,2.1,93.76,1010,349,1.4000000000000001 +2008,4,25,23,30,11.8,1.21,0.253,0.63,0,0,0,0,10.700000000000001,0,0,0,0,124.32000000000001,0.16,2,92.9,1010,185,1.6 +2008,4,26,0,30,11.3,1.22,0.23700000000000002,0.63,0,0,0,0,9.9,0,0,0,0,121.42,0.16,1.8,91.10000000000001,1009,18,2 +2008,4,26,1,30,10.9,1.21,0.215,0.63,0,0,0,0,8.9,0,0,0,0,115.63,0.16,1.5,87.66,1010,28,2.5 +2008,4,26,2,30,10.4,1.18,0.191,0.63,0,0,0,3,8,0,0,0,0,107.67,0.16,1.3,84.82000000000001,1010,34,2.7 +2008,4,26,3,30,9.8,1.16,0.168,0.63,0,0,0,3,7.2,0,0,0,0,98.23,0.16,1.1,83.59,1010,36,2.7 +2008,4,26,4,30,10.5,1.1,0.14300000000000002,0.63,17,95,21,0,6.7,17,95,0,21,87.58,0.16,1,77.08,1010,32,3.4000000000000004 +2008,4,26,5,30,12.600000000000001,1.06,0.125,0.63,64,511,180,0,6.7,64,511,0,180,76.84,0.16,0.9,67.51,1011,29,4.3 +2008,4,26,6,30,15,1.06,0.111,0.63,86,721,383,0,6.300000000000001,86,721,0,383,65.72,0.16,0.9,56.22,1011,32,5.1000000000000005 +2008,4,26,7,30,17,1.08,0.097,0.63,97,833,578,0,5.2,97,833,0,578,54.7,0.16,1,45.730000000000004,1011,36,5.800000000000001 +2008,4,26,8,30,18.1,1.09,0.08700000000000001,0.63,102,899,746,0,4.7,102,899,0,746,44.27,0.16,1,41.14,1011,35,5.9 +2008,4,26,9,30,18.8,1.11,0.075,0.63,102,938,867,0,4.9,102,938,0,867,35.29,0.16,1.1,39.9,1011,35,5.7 +2008,4,26,10,30,19.400000000000002,1.1300000000000001,0.077,0.63,105,947,931,0,5.300000000000001,105,947,0,931,29.36,0.16,1.2000000000000002,39.72,1011,34,5.300000000000001 +2008,4,26,11,30,19.900000000000002,1.1300000000000001,0.081,0.63,108,946,938,0,5.7,108,946,0,938,28.560000000000002,0.16,1.2000000000000002,39.5,1011,32,4.9 +2008,4,26,12,30,20.1,1.09,0.082,0.63,106,930,884,0,5.800000000000001,106,930,0,884,33.28,0.16,1.3,39.2,1010,30,4.5 +2008,4,26,13,30,20,1.05,0.079,0.63,99,906,777,0,5.7,99,906,0,777,41.62,0.16,1.3,39.34,1010,28,4.3 +2008,4,26,14,30,19.5,1.02,0.078,0.63,91,860,623,0,5.7,91,860,0,623,51.75,0.16,1.3,40.58,1010,28,4.3 +2008,4,26,15,30,18.5,1.01,0.076,0.63,78,781,437,0,5.800000000000001,78,781,0,437,62.660000000000004,0.16,1.3,43.47,1010,30,4.3 +2008,4,26,16,30,16.7,1.02,0.073,0.63,59,641,238,0,6.1000000000000005,59,641,0,238,73.77,0.16,1.2000000000000002,49.660000000000004,1010,32,3.7 +2008,4,26,17,30,14.200000000000001,1.01,0.074,0.63,28,322,58,0,7.4,28,322,0,58,84.68,0.16,1.1,63.46,1010,35,2.9000000000000004 +2008,4,26,18,30,12.4,0.96,0.082,0.63,0,0,0,0,7.5,0,0,0,0,95.38,0.16,1,72.28,1011,39,2.6 +2008,4,26,19,30,11.3,0.91,0.092,0.63,0,0,0,0,7.2,0,0,0,0,105.08,0.16,1,76.04,1011,41,2.4000000000000004 +2008,4,26,20,30,10.4,0.9,0.10300000000000001,0.63,0,0,0,0,7,0,0,0,0,113.46000000000001,0.16,0.9,79.71000000000001,1011,41,2.1 +2008,4,26,21,30,9.8,0.92,0.115,0.63,0,0,0,0,6.800000000000001,0,0,0,0,119.86,0.16,0.9,81.75,1011,39,1.9000000000000001 +2008,4,26,22,30,9.4,0.98,0.13,0.63,0,0,0,0,6.6000000000000005,0,0,0,0,123.56,0.16,1,82.57000000000001,1011,38,1.8 +2008,4,26,23,30,9,1.06,0.148,0.63,0,0,0,0,6.4,0,0,0,0,124,0.16,1,83.76,1011,38,1.8 +2008,4,27,0,30,8.700000000000001,1.12,0.168,0.63,0,0,0,0,6.300000000000001,0,0,0,0,121.10000000000001,0.16,1.1,84.62,1011,38,1.8 +2008,4,27,1,30,8.5,1.1400000000000001,0.187,0.63,0,0,0,0,6.1000000000000005,0,0,0,0,115.33,0.16,1.1,84.93,1011,40,1.8 +2008,4,27,2,30,8.3,1.16,0.20500000000000002,0.63,0,0,0,0,5.9,0,0,0,0,107.39,0.16,1.1,85.07000000000001,1011,41,1.8 +2008,4,27,3,30,8.200000000000001,1.17,0.219,0.63,0,0,0,0,5.800000000000001,0,0,0,0,97.98,0.16,1.1,84.99,1011,43,1.9000000000000001 +2008,4,27,4,30,9.5,1.18,0.228,0.63,17,61,20,0,5.9,17,61,0,20,87.34,0.16,1.1,78.44,1011,44,2.4000000000000004 +2008,4,27,5,30,12,1.18,0.231,0.63,80,394,171,0,6.6000000000000005,80,394,0,171,76.61,0.16,1.1,69.53,1011,46,3.1 +2008,4,27,6,30,14.8,1.18,0.225,0.63,117,600,366,0,6.6000000000000005,117,600,0,366,65.48,0.16,1.1,57.99,1011,50,3.1 +2008,4,27,7,30,17.400000000000002,1.17,0.214,0.63,138,723,559,0,5.6000000000000005,138,723,0,559,54.46,0.16,1.1,45.74,1011,53,2.5 +2008,4,27,8,30,19.1,1.17,0.20600000000000002,0.63,150,797,723,0,4.9,150,797,0,723,44.01,0.16,1.1,39.33,1011,48,1.7000000000000002 +2008,4,27,9,30,20.3,1.18,0.163,0.63,141,868,853,0,4.6000000000000005,141,868,0,853,35,0.16,1.1,35.62,1011,40,1 +2008,4,27,10,30,21.1,1.1400000000000001,0.17,0.63,150,876,916,0,4.9,150,876,0,916,29.04,0.16,1.2000000000000002,34.56,1010,166,0.5 +2008,4,27,11,30,21.5,1.12,0.182,0.63,156,869,922,0,4.9,156,869,0,922,28.25,0.16,1.2000000000000002,33.82,1010,278,0.7000000000000001 +2008,4,27,12,30,21.6,1.12,0.20500000000000002,0.63,163,836,864,0,4.800000000000001,163,836,0,864,33.02,0.16,1.3,33.32,1010,255,1.4000000000000001 +2008,4,27,13,30,21.3,1.1,0.221,0.63,161,791,754,0,4.800000000000001,161,791,0,754,41.4,0.16,1.3,33.89,1009,250,2 +2008,4,27,14,30,20.700000000000003,1.09,0.231,0.63,151,723,600,0,4.9,151,723,0,600,51.56,0.16,1.3,35.61,1009,251,2.4000000000000004 +2008,4,27,15,30,19.700000000000003,1.09,0.224,0.63,126,628,417,0,5.2,126,628,0,417,62.480000000000004,0.16,1.3,38.59,1009,254,2.5 +2008,4,27,16,30,17.8,1.12,0.21,0.63,90,473,223,0,6.300000000000001,90,473,0,223,73.60000000000001,0.16,1.3,46.910000000000004,1008,254,2.2 +2008,4,27,17,30,15.5,1.1500000000000001,0.193,0.63,36,182,53,0,10.200000000000001,36,182,0,53,84.5,0.16,1.3,70.76,1008,259,1.7000000000000002 +2008,4,27,18,30,14.200000000000001,1.16,0.181,0.63,0,0,0,0,9.8,0,0,0,0,95.18,0.16,1.3,74.8,1009,282,1.2000000000000002 +2008,4,27,19,30,13.4,1.16,0.17300000000000001,0.63,0,0,0,0,9.4,0,0,0,0,104.86,0.16,1.2000000000000002,76.5,1009,152,0.7000000000000001 +2008,4,27,20,30,12.5,1.1400000000000001,0.167,0.63,0,0,0,0,9.1,0,0,0,0,113.2,0.16,1.2000000000000002,79.93,1009,32,0.6000000000000001 +2008,4,27,21,30,11.8,1.12,0.16,0.63,0,0,0,0,8.700000000000001,0,0,0,0,119.58,0.16,1.1,81.32000000000001,1008,68,0.9 +2008,4,27,22,30,11.100000000000001,1.11,0.154,0.63,0,0,0,0,8.200000000000001,0,0,0,0,123.25,0.16,1.1,82.23,1008,82,1.2000000000000002 +2008,4,27,23,30,10.600000000000001,1.1,0.149,0.63,0,0,0,0,7.7,0,0,0,0,123.68,0.16,1.1,82.18,1008,89,1.3 +2008,4,28,0,30,10.200000000000001,1.1,0.147,0.63,0,0,0,0,7.2,0,0,0,0,120.79,0.16,1.1,81.48,1007,94,1.4000000000000001 +2008,4,28,1,30,10.200000000000001,1.1,0.147,0.63,0,0,0,0,6.6000000000000005,0,0,0,0,115.03,0.16,1.1,78.60000000000001,1007,98,1.4000000000000001 +2008,4,28,2,30,10.200000000000001,1.11,0.148,0.63,0,0,0,0,6.1000000000000005,0,0,0,0,107.12,0.16,1.1,75.81,1007,102,1.4000000000000001 +2008,4,28,3,30,10.200000000000001,1.11,0.151,0.63,0,0,0,3,5.800000000000001,0,0,0,0,97.72,0.16,1.1,74.04,1007,105,1.4000000000000001 +2008,4,28,4,30,11.3,1.12,0.153,0.63,20,108,25,3,5.800000000000001,10,0,7,10,87.12,0.16,1.1,69.10000000000001,1007,108,1.4000000000000001 +2008,4,28,5,30,13.8,1.12,0.152,0.63,70,483,184,7,7.9,67,3,0,68,76.38,0.16,1.1,67.71000000000001,1006,114,1.5 +2008,4,28,6,30,16.5,1.1300000000000001,0.15,0.63,99,677,383,0,6.800000000000001,99,677,0,383,65.25,0.16,1.1,52.63,1006,143,0.9 +2008,4,28,7,30,18.8,1.1300000000000001,0.147,0.63,117,785,576,0,6,117,785,0,576,54.22,0.16,1.1,43.17,1006,225,0.6000000000000001 +2008,4,28,8,30,20.200000000000003,1.1400000000000001,0.149,0.63,130,841,737,0,4.9,130,841,0,737,43.76,0.16,1.2000000000000002,36.56,1006,278,1.4000000000000001 +2008,4,28,9,30,21,1.1300000000000001,0.148,0.63,137,877,858,0,5.1000000000000005,137,877,0,858,34.72,0.16,1.2000000000000002,35.300000000000004,1006,269,2 +2008,4,28,10,30,21.400000000000002,1.1500000000000001,0.15,0.63,142,890,922,0,5.4,142,890,0,922,28.73,0.16,1.3,35.33,1005,262,2.6 +2008,4,28,11,30,21.6,1.17,0.153,0.63,143,887,927,0,5.9,143,887,0,927,27.95,0.16,1.4000000000000001,35.92,1005,258,3.2 +2008,4,28,12,30,21.3,1.21,0.178,0.63,152,856,872,0,6.300000000000001,152,856,0,872,32.76,0.16,1.4000000000000001,37.65,1004,256,3.7 +2008,4,28,13,30,20.8,1.24,0.181,0.63,145,820,762,0,6.7,145,820,0,762,41.19,0.16,1.5,39.980000000000004,1004,255,4 +2008,4,28,14,30,19.900000000000002,1.27,0.183,0.63,132,761,608,0,7,132,761,0,608,51.370000000000005,0.16,1.6,43.14,1003,255,4.1000000000000005 +2008,4,28,15,30,18.8,1.27,0.188,0.63,115,663,423,1,7.1000000000000005,115,663,0,423,62.300000000000004,0.16,1.6,46.68,1003,256,3.9000000000000004 +2008,4,28,16,30,17,1.27,0.193,0.63,88,495,229,8,7.300000000000001,150,147,0,192,73.43,0.16,1.6,52.92,1003,256,3 +2008,4,28,17,30,14.9,1.27,0.193,0.63,38,192,57,8,9.3,21,0,7,21,84.32000000000001,0.16,1.7000000000000002,69.16,1003,254,1.8 +2008,4,28,18,30,13.600000000000001,1.26,0.2,0.63,0,0,0,8,10.4,0,0,0,0,94.98,0.16,1.7000000000000002,80.89,1003,250,1.3 +2008,4,28,19,30,13.4,1.23,0.216,0.63,0,0,0,8,10.5,0,0,0,0,104.64,0.16,1.8,82.66,1003,238,1 +2008,4,28,20,30,13.3,1.21,0.222,0.63,0,0,0,7,10.600000000000001,0,0,0,0,112.95,0.16,1.8,83.74,1003,217,0.8 +2008,4,28,21,30,13,1.2,0.22,0.63,0,0,0,8,10.5,0,0,0,0,119.3,0.16,1.9000000000000001,84.7,1002,194,0.8 +2008,4,28,22,30,12.700000000000001,1.2,0.223,0.63,0,0,0,5,10.4,0,0,0,0,122.95,0.16,1.9000000000000001,85.89,1002,178,0.9 +2008,4,28,23,30,12.3,1.2,0.232,0.63,0,0,0,0,10.3,0,0,0,0,123.37,0.16,1.9000000000000001,87.67,1001,166,1.1 +2008,4,29,0,30,12.100000000000001,1.21,0.23500000000000001,0.63,0,0,0,5,10.200000000000001,0,0,0,0,120.48,0.16,1.9000000000000001,88.3,1000,155,1.3 +2008,4,29,1,30,11.9,1.21,0.23500000000000001,0.63,0,0,0,7,10.200000000000001,0,0,0,0,114.74000000000001,0.16,1.9000000000000001,89.19,1000,152,1.5 +2008,4,29,2,30,11.8,1.21,0.245,0.63,0,0,0,7,10.100000000000001,0,0,0,0,106.85000000000001,0.16,1.9000000000000001,89.60000000000001,1000,155,1.5 +2008,4,29,3,30,11.8,1.16,0.252,0.63,0,0,0,6,10.100000000000001,0,0,0,0,97.47,0.16,1.9000000000000001,89.46000000000001,999,158,1.6 +2008,4,29,4,30,12.3,1.04,0.273,0.63,20,46,23,6,10.3,3,0,7,3,86.9,0.16,1.9000000000000001,87.36,999,160,1.9000000000000001 +2008,4,29,5,30,13.200000000000001,0.89,0.306,0.63,95,303,168,7,10.700000000000001,41,0,0,41,76.15,0.16,1.9000000000000001,84.95,999,166,2.6 +2008,4,29,6,30,14.100000000000001,0.8200000000000001,0.311,0.63,148,491,355,7,10.9,30,0,0,30,65.03,0.16,2,80.94,999,177,3.3000000000000003 +2008,4,29,7,30,14.5,0.86,0.29,0.63,171,628,540,7,10.5,202,9,0,207,53.99,0.16,2.1,76.83,999,182,3.6 +2008,4,29,8,30,14.9,0.93,0.279,0.63,185,712,701,7,9.3,81,0,0,81,43.51,0.16,2.1,69.4,999,175,3.8000000000000003 +2008,4,29,9,30,16.1,0.9400000000000001,0.243,0.63,181,783,827,4,8.8,60,0,0,60,34.44,0.16,1.9000000000000001,61.96,998,171,4.3 +2008,4,29,10,30,17.2,0.9,0.211,0.63,173,827,900,4,8.8,298,0,0,298,28.42,0.16,1.8,57.82,998,177,4.800000000000001 +2008,4,29,11,30,17.7,0.85,0.202,0.63,170,831,907,4,9.1,116,0,0,116,27.650000000000002,0.16,1.9000000000000001,57.09,998,186,5 +2008,4,29,12,30,17.3,0.85,0.23700000000000002,0.63,183,789,849,4,9.5,63,0,0,63,32.5,0.16,2,60.050000000000004,998,193,4.800000000000001 +2008,4,29,13,30,16.6,0.85,0.242,0.63,176,751,743,7,10,239,7,0,244,40.980000000000004,0.16,2,64.81,998,196,4.3 +2008,4,29,14,30,16.2,0.84,0.225,0.63,154,703,595,4,10.3,245,0,0,245,51.19,0.16,2,68.27,997,198,3.7 +2008,4,29,15,30,15.8,0.86,0.224,0.63,132,605,414,3,10.600000000000001,195,7,7,198,62.13,0.16,2,71.26,997,200,2.9000000000000004 +2008,4,29,16,30,15.200000000000001,0.86,0.21,0.63,94,451,224,3,10.8,75,0,0,75,73.25,0.16,1.9000000000000001,75.23,997,198,1.9000000000000001 +2008,4,29,17,30,14.200000000000001,0.84,0.194,0.63,40,162,56,3,11.700000000000001,24,0,7,24,84.15,0.16,1.9000000000000001,84.86,997,191,1.1 +2008,4,29,18,30,13.3,0.86,0.191,0.63,0,0,0,0,11.600000000000001,0,0,0,0,94.78,0.16,1.9000000000000001,89.16,998,176,0.9 +2008,4,29,19,30,12.9,0.87,0.182,0.63,0,0,0,0,11.4,0,0,0,0,104.42,0.16,1.8,90.75,998,159,1 +2008,4,29,20,30,12.4,0.87,0.164,0.63,0,0,0,0,11.5,0,0,0,0,112.71000000000001,0.16,1.8,94.43,998,146,1 +2008,4,29,21,30,11.8,0.88,0.158,0.63,0,0,0,0,11.600000000000001,0,0,0,0,119.02,0.16,1.8,98.4,998,140,1.2000000000000002 +2008,4,29,22,30,11.3,0.89,0.161,0.63,0,0,0,0,11.3,0,0,0,0,122.65,0.16,1.8,100,998,135,1.3 +2008,4,29,23,30,11,0.89,0.164,0.63,0,0,0,0,11,0,0,0,0,123.06,0.16,1.7000000000000002,100,998,131,1.4000000000000001 +2008,4,30,0,30,11.100000000000001,0.92,0.184,0.63,0,0,0,3,11.100000000000001,0,0,0,0,120.18,0.16,1.7000000000000002,100,998,131,1.5 +2008,4,30,1,30,11.200000000000001,0.93,0.203,0.63,0,0,0,3,11.200000000000001,0,0,0,0,114.46000000000001,0.16,1.7000000000000002,100,997,132,1.7000000000000002 +2008,4,30,2,30,11.3,0.93,0.20700000000000002,0.63,0,0,0,0,11.3,0,0,0,0,106.58,0.16,1.7000000000000002,100,997,134,1.7000000000000002 +2008,4,30,3,30,11.5,0.93,0.23,0.63,0,0,0,3,11.5,0,0,0,0,97.22,0.16,1.7000000000000002,100,998,136,1.7000000000000002 +2008,4,30,4,30,12.700000000000001,0.92,0.232,0.63,23,60,27,0,11.600000000000001,23,60,0,27,86.68,0.16,1.7000000000000002,92.97,998,141,2.3000000000000003 +2008,4,30,5,30,14.4,0.89,0.215,0.63,86,394,181,0,12.100000000000001,86,394,0,181,75.93,0.16,1.7000000000000002,85.98,998,151,3.3000000000000003 +2008,4,30,6,30,15.9,0.86,0.188,0.63,114,615,376,0,12,114,615,0,376,64.81,0.16,1.7000000000000002,77.86,999,162,3.7 +2008,4,30,7,30,17.400000000000002,0.84,0.164,0.63,127,744,566,3,11.5,335,56,0,368,53.76,0.16,1.8,68.43,999,171,3.9000000000000004 +2008,4,30,8,30,18.7,0.81,0.163,0.63,140,804,725,3,10.9,404,89,0,469,43.26,0.16,1.9000000000000001,60.65,999,181,3.9000000000000004 +2008,4,30,9,30,19.5,0.78,0.185,0.63,159,823,839,1,10.9,159,823,0,839,34.17,0.16,1.9000000000000001,57.59,999,190,4.1000000000000005 +2008,4,30,10,30,20,0.78,0.192,0.63,167,838,906,2,11,465,113,0,564,28.12,0.16,1.8,56.24,999,195,4.2 +2008,4,30,11,30,20.1,0.79,0.199,0.63,170,835,912,0,11.100000000000001,170,835,0,912,27.35,0.16,1.8,56.04,999,196,4.2 +2008,4,30,12,30,20.3,0.77,0.23800000000000002,0.63,185,794,856,0,11,185,794,0,856,32.25,0.16,1.7000000000000002,55.02,999,193,4.3 +2008,4,30,13,30,20.400000000000002,0.78,0.23600000000000002,0.63,174,761,751,0,10.9,174,761,0,751,40.77,0.16,1.7000000000000002,54.34,999,191,4.3 +2008,4,30,14,30,20,0.79,0.226,0.63,156,712,603,0,10.600000000000001,156,712,0,603,51.01,0.16,1.6,54.84,999,189,4.3 +2008,4,30,15,30,19.1,0.81,0.219,0.63,131,619,422,0,10.600000000000001,131,619,0,422,61.96,0.16,1.6,57.800000000000004,999,187,4.1000000000000005 +2008,4,30,16,30,17.6,0.84,0.211,0.63,95,461,229,0,10.9,95,461,0,229,73.08,0.16,1.5,64.61,999,184,3.2 +2008,4,30,17,30,15.5,0.86,0.203,0.63,41,167,59,0,12.100000000000001,41,167,0,59,83.97,0.16,1.5,80.02,999,179,2.1 +2008,4,30,18,30,14,0.86,0.199,0.63,0,0,0,0,12.3,0,0,0,0,94.59,0.16,1.4000000000000001,89.67,1000,173,1.6 +2008,4,30,19,30,13.3,0.85,0.2,0.63,0,0,0,0,12.3,0,0,0,0,104.2,0.16,1.4000000000000001,93.65,1000,165,1.5 +2008,4,30,20,30,12.8,0.84,0.203,0.63,0,0,0,0,12.4,0,0,0,0,112.46000000000001,0.16,1.4000000000000001,97.39,1000,155,1.4000000000000001 +2008,4,30,21,30,12.3,0.8300000000000001,0.20600000000000002,0.63,0,0,0,0,12.3,0,0,0,0,118.74000000000001,0.16,1.4000000000000001,100,1000,144,1.3 +2008,4,30,22,30,12,0.8200000000000001,0.20700000000000002,0.63,0,0,0,0,12,0,0,0,0,122.35000000000001,0.16,1.4000000000000001,100,1001,135,1.4000000000000001 +2008,4,30,23,30,11.600000000000001,0.8200000000000001,0.20700000000000002,0.63,0,0,0,0,11.600000000000001,0,0,0,0,122.75,0.16,1.4000000000000001,100,1001,130,1.4000000000000001 +2008,5,1,0,30,11.3,0.8300000000000001,0.20800000000000002,0.66,0,0,0,0,11.3,0,0,0,0,119.88,0.16,1.5,100,1001,127,1.5 +2008,5,1,1,30,11,0.84,0.20600000000000002,0.66,0,0,0,0,10.9,0,0,0,0,114.17,0.16,1.4000000000000001,99.10000000000001,1001,125,1.6 +2008,5,1,2,30,10.700000000000001,0.86,0.199,0.66,0,0,0,0,10.200000000000001,0,0,0,0,106.32000000000001,0.16,1.4000000000000001,96.60000000000001,1001,121,1.7000000000000002 +2008,5,1,3,30,10.600000000000001,0.88,0.19,0.66,0,0,0,0,9.3,0,0,0,0,96.98,0.16,1.4000000000000001,91.89,1001,119,1.8 +2008,5,1,4,30,12.3,0.91,0.183,0.66,24,96,30,0,8.700000000000001,24,96,0,30,86.46000000000001,0.16,1.3,78.83,1001,120,2 +2008,5,1,5,30,15.200000000000001,0.9400000000000001,0.184,0.66,80,444,189,0,9.5,80,444,0,189,75.71000000000001,0.16,1.3,68.84,1002,131,2.6 +2008,5,1,6,30,17.6,0.97,0.181,0.66,111,637,384,0,8.6,111,637,0,384,64.59,0.16,1.4000000000000001,55.65,1002,154,3.2 +2008,5,1,7,30,19.3,0.99,0.185,0.66,133,741,573,0,8.700000000000001,133,741,0,573,53.54,0.16,1.4000000000000001,50.17,1003,175,3.5 +2008,5,1,8,30,20.400000000000002,1.01,0.191,0.66,149,797,732,0,9,149,797,0,732,43.02,0.16,1.5,48.03,1003,188,3.7 +2008,5,1,9,30,21.200000000000003,1.08,0.192,0.66,158,835,851,0,9.700000000000001,158,835,0,851,33.9,0.16,1.5,47.84,1004,199,3.7 +2008,5,1,10,30,21.6,1.05,0.203,0.66,167,845,915,0,10.4,167,845,0,915,27.82,0.16,1.5,48.94,1004,206,3.7 +2008,5,1,11,30,21.8,1.02,0.20400000000000001,0.66,169,845,922,0,10.9,169,845,0,922,27.060000000000002,0.16,1.5,50.09,1004,211,3.6 +2008,5,1,12,30,21.700000000000003,1.06,0.191,0.66,159,842,873,0,11.200000000000001,159,842,0,873,32,0.16,1.5,51.34,1004,215,3.4000000000000004 +2008,5,1,13,30,21.5,1.01,0.183,0.66,147,815,766,0,11.200000000000001,147,815,0,766,40.56,0.16,1.5,51.92,1003,221,3.1 +2008,5,1,14,30,21,0.99,0.17200000000000001,0.66,131,771,618,0,11.100000000000001,131,771,0,618,50.83,0.16,1.4000000000000001,53,1004,228,2.8000000000000003 +2008,5,1,15,30,20.3,0.98,0.164,0.66,110,687,435,0,10.8,110,687,0,435,61.79,0.16,1.4000000000000001,54.49,1004,236,2.5 +2008,5,1,16,30,18.7,0.96,0.16,0.66,83,531,239,0,10.8,83,531,0,239,72.91,0.16,1.4000000000000001,60.03,1004,250,1.9000000000000001 +2008,5,1,17,30,16.400000000000002,0.96,0.154,0.66,39,234,64,0,12.700000000000001,39,234,0,64,83.79,0.16,1.3,78.75,1005,265,1.5 +2008,5,1,18,30,14.9,0.9400000000000001,0.152,0.66,0,0,0,0,12.3,0,0,0,0,94.39,0.16,1.3,84.2,1005,278,1.3 +2008,5,1,19,30,14.200000000000001,0.92,0.151,0.66,0,0,0,0,11.9,0,0,0,0,103.98,0.16,1.3,86.27,1006,291,1.2000000000000002 +2008,5,1,20,30,13.700000000000001,0.91,0.149,0.66,0,0,0,0,11.600000000000001,0,0,0,0,112.22,0.16,1.3,87.32000000000001,1006,303,1.2000000000000002 +2008,5,1,21,30,13.4,0.9,0.148,0.66,0,0,0,0,11.3,0,0,0,0,118.47,0.16,1.3,87.33,1007,323,1.1 +2008,5,1,22,30,12.8,0.88,0.148,0.66,0,0,0,0,11,0,0,0,0,122.06,0.16,1.3,89.10000000000001,1007,172,1.3 +2008,5,1,23,30,12.100000000000001,0.85,0.145,0.66,0,0,0,0,10.700000000000001,0,0,0,0,122.45,0.16,1.2000000000000002,91.03,1006,14,1.4000000000000001 +2008,5,2,0,30,11.700000000000001,0.8300000000000001,0.14200000000000002,0.66,0,0,0,0,10.200000000000001,0,0,0,0,119.59,0.16,1.2000000000000002,90.73,1006,22,1.6 +2008,5,2,1,30,11.5,0.81,0.138,0.66,0,0,0,0,9.700000000000001,0,0,0,0,113.9,0.16,1.2000000000000002,88.99,1006,23,1.6 +2008,5,2,2,30,11.3,0.8,0.136,0.66,0,0,0,0,9.3,0,0,0,0,106.07000000000001,0.16,1.2000000000000002,87.58,1007,21,1.6 +2008,5,2,3,30,11.3,0.8,0.134,0.66,0,0,0,0,8.9,0,0,0,0,96.74000000000001,0.16,1.2000000000000002,85.06,1007,18,1.7000000000000002 +2008,5,2,4,30,12.9,0.8,0.134,0.66,25,140,35,1,8.8,25,140,0,35,86.24,0.16,1.2000000000000002,76.08,1008,17,1.9000000000000001 +2008,5,2,5,30,15.700000000000001,0.8,0.135,0.66,72,505,198,0,9.8,72,505,0,198,75.5,0.16,1.2000000000000002,68.06,1008,15,2.4000000000000004 +2008,5,2,6,30,18.7,0.81,0.138,0.66,99,685,396,0,9.3,99,685,0,396,64.38,0.16,1.2000000000000002,54.29,1008,11,2.4000000000000004 +2008,5,2,7,30,21.400000000000002,0.8300000000000001,0.14100000000000001,0.66,118,784,586,0,8.9,118,784,0,586,53.32,0.16,1.2000000000000002,44.86,1008,180,2 +2008,5,2,8,30,23,0.85,0.14300000000000002,0.66,130,839,746,0,8.4,130,839,0,746,42.79,0.16,1.3,39.37,1008,339,1.8 +2008,5,2,9,30,23.900000000000002,1.09,0.11900000000000001,0.66,124,897,871,0,8.4,124,897,0,871,33.63,0.16,1.3,37.14,1008,315,1.8 +2008,5,2,10,30,24.6,1.07,0.124,0.66,130,909,936,0,8.3,130,909,0,936,27.52,0.16,1.3,35.4,1008,297,2 +2008,5,2,11,30,24.900000000000002,1.05,0.128,0.66,133,907,943,0,8.200000000000001,133,907,0,943,26.77,0.16,1.3,34.660000000000004,1008,287,2.4000000000000004 +2008,5,2,12,30,25,1.03,0.131,0.66,132,892,890,0,8.3,132,892,0,890,31.76,0.16,1.3,34.49,1007,284,2.8000000000000003 +2008,5,2,13,30,24.8,0.98,0.136,0.66,128,855,780,0,8.3,128,855,0,780,40.36,0.16,1.4000000000000001,35.07,1007,284,3.1 +2008,5,2,14,30,24.200000000000003,0.97,0.137,0.66,118,803,627,0,8.4,118,803,0,627,50.65,0.16,1.4000000000000001,36.62,1007,287,3.2 +2008,5,2,15,30,23.200000000000003,0.98,0.133,0.66,101,720,443,0,8.700000000000001,101,720,0,443,61.620000000000005,0.16,1.4000000000000001,39.58,1007,288,3.1 +2008,5,2,16,30,21.1,1,0.13,0.66,76,570,245,0,10,76,570,0,245,72.74,0.16,1.5,49.04,1007,288,2.5 +2008,5,2,17,30,18.400000000000002,1,0.135,0.66,38,263,68,1,12.8,38,263,0,68,83.62,0.16,1.5,69.81,1007,294,1.9000000000000001 +2008,5,2,18,30,16.8,0.99,0.14,0.66,0,0,0,0,12.700000000000001,0,0,0,0,94.2,0.16,1.4000000000000001,76.82000000000001,1008,313,1.6 +2008,5,2,19,30,15.9,0.99,0.14200000000000002,0.66,0,0,0,3,12.4,0,0,0,0,103.76,0.16,1.4000000000000001,79.46000000000001,1008,164,1.4000000000000001 +2008,5,2,20,30,15,1.02,0.14,0.66,0,0,0,0,11.9,0,0,0,0,111.97,0.16,1.4000000000000001,81.94,1008,17,1.3 +2008,5,2,21,30,14.4,1.07,0.138,0.66,0,0,0,0,11.4,0,0,0,0,118.2,0.16,1.4000000000000001,82.3,1008,45,1.4000000000000001 +2008,5,2,22,30,14.100000000000001,1.1,0.14,0.66,0,0,0,0,10.9,0,0,0,0,121.77,0.16,1.4000000000000001,81.29,1008,65,1.5 +2008,5,2,23,30,13.8,1.12,0.145,0.66,0,0,0,0,10.5,0,0,0,0,122.16,0.16,1.4000000000000001,80.7,1008,78,1.5 +2008,5,3,0,30,13.600000000000001,1.12,0.151,0.66,0,0,0,1,10.200000000000001,0,0,0,0,119.3,0.16,1.4000000000000001,80.06,1008,84,1.4000000000000001 +2008,5,3,1,30,13.5,1.1300000000000001,0.16,0.66,0,0,0,0,9.9,0,0,0,0,113.63,0.16,1.5,78.88,1008,90,1.3 +2008,5,3,2,30,13.4,1.1400000000000001,0.17,0.66,0,0,0,0,9.5,0,0,0,0,105.82000000000001,0.16,1.5,77.06,1008,96,1.2000000000000002 +2008,5,3,3,30,13.100000000000001,1.1500000000000001,0.177,0.66,0,0,0,0,9.1,0,0,0,0,96.51,0.16,1.6,76.85000000000001,1008,99,1.2000000000000002 +2008,5,3,4,30,14.200000000000001,1.16,0.179,0.66,26,129,35,0,9.4,26,129,0,35,86.03,0.16,1.7000000000000002,72.66,1009,96,1.4000000000000001 +2008,5,3,5,30,16.6,1.1500000000000001,0.179,0.66,78,461,195,0,10.4,78,461,0,195,75.29,0.16,1.7000000000000002,66.87,1009,92,1.8 +2008,5,3,6,30,19.200000000000003,1.1300000000000001,0.179,0.66,109,640,388,0,9.3,109,640,0,388,64.18,0.16,1.7000000000000002,52.58,1009,104,1.8 +2008,5,3,7,30,21.5,1.08,0.181,0.66,130,740,575,0,8.700000000000001,130,740,0,575,53.11,0.16,1.7000000000000002,44.01,1009,131,1.3 +2008,5,3,8,30,22.8,1.03,0.185,0.66,146,798,734,0,8.4,146,798,0,734,42.56,0.16,1.7000000000000002,39.800000000000004,1009,166,1 +2008,5,3,9,30,23.8,1.1,0.166,0.66,146,850,856,0,8.200000000000001,146,850,0,856,33.38,0.16,1.7000000000000002,36.99,1009,203,1 +2008,5,3,10,30,24.5,1.06,0.164,0.66,149,865,919,8,8.3,303,574,0,813,27.23,0.16,1.8,35.71,1009,227,1.3 +2008,5,3,11,30,24.8,1.04,0.158,0.66,147,871,927,8,8.6,317,541,0,802,26.48,0.16,1.8,35.62,1009,240,1.6 +2008,5,3,12,30,24.900000000000002,1.03,0.154,0.66,143,861,877,0,8.6,143,861,0,877,31.52,0.16,1.8,35.44,1008,249,1.8 +2008,5,3,13,30,24.700000000000003,1.02,0.147,0.66,133,834,770,0,8.5,133,834,0,770,40.160000000000004,0.16,1.9000000000000001,35.75,1008,255,2.1 +2008,5,3,14,30,24.200000000000003,1,0.14200000000000002,0.66,120,786,621,0,8.4,120,786,0,621,50.47,0.16,1.9000000000000001,36.6,1008,261,2.2 +2008,5,3,15,30,23.3,0.99,0.14,0.66,104,701,439,0,8.4,104,701,0,439,61.45,0.16,1.9000000000000001,38.44,1008,265,2.2 +2008,5,3,16,30,21.5,0.98,0.139,0.66,80,550,244,0,9.3,80,550,0,244,72.57000000000001,0.16,1.9000000000000001,45.660000000000004,1008,266,1.9000000000000001 +2008,5,3,17,30,19.200000000000003,0.96,0.14,0.66,40,253,69,0,12.700000000000001,40,253,0,69,83.44,0.16,1.9000000000000001,65.87,1008,277,1.5 +2008,5,3,18,30,17.7,0.9400000000000001,0.139,0.66,0,0,0,0,12.700000000000001,0,0,0,0,94,0.16,1.9000000000000001,72.56,1009,311,1 +2008,5,3,19,30,16.8,0.9,0.137,0.66,0,0,0,0,12.3,0,0,0,0,103.55,0.16,1.9000000000000001,74.57000000000001,1009,192,0.8 +2008,5,3,20,30,16,0.86,0.136,0.66,0,0,0,0,11.600000000000001,0,0,0,0,111.73,0.16,1.9000000000000001,74.97,1009,69,0.9 +2008,5,3,21,30,15.200000000000001,0.85,0.136,0.66,0,0,0,0,10.9,0,0,0,0,117.94,0.16,1.8,75.28,1009,95,1.1 +2008,5,3,22,30,14.700000000000001,0.86,0.137,0.66,0,0,0,0,10.200000000000001,0,0,0,0,121.49000000000001,0.16,1.8,74.44,1009,104,1.2000000000000002 +2008,5,3,23,30,14.200000000000001,0.89,0.138,0.66,0,0,0,0,9.600000000000001,0,0,0,0,121.86,0.16,1.8,73.65,1009,105,1.3 +2008,5,4,0,30,13.9,0.9,0.138,0.66,0,0,0,0,8.8,0,0,0,0,119.01,0.16,1.8,71.32000000000001,1009,100,1.3 +2008,5,4,1,30,13.600000000000001,0.92,0.138,0.66,0,0,0,0,8,0,0,0,0,113.36,0.16,1.8,68.89,1009,95,1.4000000000000001 +2008,5,4,2,30,13.3,0.93,0.14,0.66,0,0,0,0,7.2,0,0,0,0,105.57000000000001,0.16,1.8,66.38,1009,92,1.4000000000000001 +2008,5,4,3,30,13.100000000000001,0.9500000000000001,0.14400000000000002,0.66,0,0,0,0,6.5,0,0,0,0,96.28,0.16,1.8,64.17,1009,92,1.4000000000000001 +2008,5,4,4,30,14.600000000000001,0.97,0.146,0.66,28,151,39,0,6.7,28,151,0,39,85.83,0.16,1.8,58.980000000000004,1009,94,1.5 +2008,5,4,5,30,17.3,1,0.149,0.66,75,490,201,0,8.200000000000001,75,490,0,201,75.09,0.16,1.8,54.94,1009,102,1.9000000000000001 +2008,5,4,6,30,19.8,1.02,0.154,0.66,104,662,394,0,5.7,104,662,0,394,63.980000000000004,0.16,1.8,39.730000000000004,1010,137,2.1 +2008,5,4,7,30,21.6,1.04,0.158,0.66,123,756,579,0,6.5,123,756,0,579,52.9,0.16,1.9000000000000001,37.62,1010,180,2.2 +2008,5,4,8,30,22.5,1.06,0.163,0.66,138,812,738,0,7.2,138,812,0,738,42.34,0.16,1.9000000000000001,37.34,1010,203,2.5 +2008,5,4,9,30,23.200000000000003,1.26,0.127,0.66,128,877,862,0,7.800000000000001,128,877,0,862,33.12,0.16,1.9000000000000001,37.22,1009,220,2.9000000000000004 +2008,5,4,10,30,23.6,1.26,0.134,0.66,135,885,924,0,8.200000000000001,135,885,0,924,26.95,0.16,2,37.39,1009,233,3.2 +2008,5,4,11,30,23.700000000000003,1.25,0.148,0.66,142,877,929,0,8.5,142,877,0,929,26.2,0.16,2,37.86,1009,243,3.6 +2008,5,4,12,30,23.5,1.23,0.168,0.66,149,849,874,0,8.6,149,849,0,874,31.28,0.16,2,38.67,1009,249,3.8000000000000003 +2008,5,4,13,30,23,1.21,0.18,0.66,146,810,767,0,8.6,146,810,0,767,39.96,0.16,2,39.84,1008,254,3.9000000000000004 +2008,5,4,14,30,22.400000000000002,1.18,0.189,0.66,137,746,613,0,8.5,137,746,0,613,50.29,0.16,2.1,41.12,1008,257,3.7 +2008,5,4,15,30,21.400000000000002,1.16,0.20800000000000002,0.66,125,637,431,0,8.5,125,637,0,431,61.29,0.16,2.1,43.65,1008,258,3.4000000000000004 +2008,5,4,16,30,19.8,1.16,0.224,0.66,98,465,238,0,8.700000000000001,98,465,0,238,72.41,0.16,2.1,48.86,1008,257,2.5 +2008,5,4,17,30,17.6,1.16,0.229,0.66,46,186,68,0,10.9,46,186,0,68,83.27,0.16,2.1,64.73,1008,261,1.5 +2008,5,4,18,30,16.3,1.16,0.23500000000000001,0.66,0,0,0,0,11.700000000000001,0,0,0,0,93.81,0.16,2.2,74.05,1008,274,1.1 +2008,5,4,19,30,16.2,1.17,0.24,0.66,0,0,0,1,11,0,0,0,0,103.34,0.16,2.2,71.39,1008,305,0.8 +2008,5,4,20,30,16.1,1.19,0.23700000000000002,0.66,0,0,0,1,10.3,0,0,0,0,111.5,0.16,2.2,68.38,1008,175,0.6000000000000001 +2008,5,4,21,30,15.700000000000001,1.21,0.234,0.66,0,0,0,3,10.200000000000001,0,0,0,0,117.68,0.16,2.2,69.63,1008,38,0.6000000000000001 +2008,5,4,22,30,15.3,1.22,0.234,0.66,0,0,0,4,10.200000000000001,0,0,0,0,121.2,0.16,2.2,71.61,1008,60,0.6000000000000001 +2008,5,4,23,30,15.100000000000001,1.21,0.23600000000000002,0.66,0,0,0,4,10.100000000000001,0,0,0,0,121.58,0.16,2.2,72.04,1008,81,0.6000000000000001 +2008,5,5,0,30,15,1.19,0.23600000000000002,0.66,0,0,0,3,9.9,0,0,0,0,118.73,0.16,2.2,71.79,1008,104,0.6000000000000001 +2008,5,5,1,30,14.8,1.17,0.232,0.66,0,0,0,4,9.8,0,0,0,0,113.10000000000001,0.16,2.1,72.18,1007,127,0.7000000000000001 +2008,5,5,2,30,14.5,1.1400000000000001,0.233,0.66,0,0,0,4,9.8,0,0,0,0,105.33,0.16,2.1,73.4,1007,141,0.7000000000000001 +2008,5,5,3,30,14.4,1.12,0.242,0.66,0,0,0,4,10,0,0,0,0,96.06,0.16,2,74.66,1007,138,0.7000000000000001 +2008,5,5,4,30,15.100000000000001,1.1,0.23500000000000001,0.66,30,101,38,7,10.5,35,3,7,36,85.63,0.16,2,74.14,1007,131,1 +2008,5,5,5,30,16.7,1.09,0.226,0.66,89,412,197,7,11.600000000000001,133,155,7,173,74.89,0.16,2,72.02,1007,143,1.2000000000000002 +2008,5,5,6,30,18.8,1.09,0.212,0.66,120,607,389,0,9.600000000000001,120,607,0,389,63.78,0.16,1.9000000000000001,54.96,1007,184,1.2000000000000002 +2008,5,5,7,30,20.700000000000003,1.09,0.20600000000000002,0.66,140,717,575,0,7.800000000000001,140,717,0,575,52.7,0.16,1.9000000000000001,43.46,1007,221,1.5 +2008,5,5,8,30,22.1,1.1,0.203,0.66,154,783,734,0,8,154,783,0,734,42.12,0.16,1.9000000000000001,40.37,1007,232,2 +2008,5,5,9,30,22.900000000000002,1.08,0.20800000000000002,0.66,165,813,848,5,8.3,477,113,0,572,32.88,0.16,2,39.36,1007,233,2.4000000000000004 +2008,5,5,10,30,23.400000000000002,1.08,0.20500000000000002,0.66,169,833,913,4,8.6,443,33,0,472,26.67,0.16,2,38.82,1007,233,2.8000000000000003 +2008,5,5,11,30,23.5,1.07,0.203,0.66,168,834,918,8,9,378,24,0,400,25.92,0.16,2.1,39.61,1007,234,3.2 +2008,5,5,12,30,23.400000000000002,1.06,0.20500000000000002,0.66,165,818,866,7,9.4,271,5,0,275,31.04,0.16,2.1,41,1006,238,3.5 +2008,5,5,13,30,23,1.05,0.20500000000000002,0.66,157,784,760,7,9.700000000000001,233,8,0,239,39.76,0.16,2.2,42.85,1006,248,3.5 +2008,5,5,14,30,22.200000000000003,1.06,0.20800000000000002,0.66,146,724,610,8,9.9,207,12,0,215,50.120000000000005,0.16,2.3000000000000003,45.56,1006,265,3.3000000000000003 +2008,5,5,15,30,21.200000000000003,1.08,0.244,0.66,136,600,426,8,10.200000000000001,228,61,7,258,61.120000000000005,0.16,2.3000000000000003,49.29,1006,288,2.8000000000000003 +2008,5,5,16,30,19.6,1.11,0.29,0.66,110,402,233,5,11,79,0,0,79,72.24,0.16,2.4000000000000004,57.7,1006,315,2.4000000000000004 +2008,5,5,17,30,17.7,1.1300000000000001,0.339,0.66,49,122,64,4,12.4,5,0,7,5,83.10000000000001,0.16,2.5,71.03,1007,340,2.2 +2008,5,5,18,30,16.3,1.1500000000000001,0.381,0.66,0,0,0,4,12.9,0,0,0,0,93.62,0.16,2.6,80.35000000000001,1007,179,2.4000000000000004 +2008,5,5,19,30,15.4,1.17,0.405,0.66,0,0,0,4,12.5,0,0,1,0,103.13,0.16,2.5,82.7,1008,10,2.6 +2008,5,5,20,30,14.5,1.19,0.395,0.66,0,0,0,4,11.9,0,0,0,0,111.26,0.16,2.4000000000000004,84.52,1008,16,2.5 +2008,5,5,21,30,13.700000000000001,1.2,0.354,0.66,0,0,0,4,11.3,0,0,0,0,117.42,0.16,2.1,85.55,1008,17,2.3000000000000003 +2008,5,5,22,30,12.8,1.18,0.291,0.66,0,0,0,4,10.600000000000001,0,0,0,0,120.93,0.16,1.7000000000000002,86.42,1008,18,2.4000000000000004 +2008,5,5,23,30,12.100000000000001,1.1500000000000001,0.231,0.66,0,0,0,0,9.8,0,0,0,0,121.29,0.16,1.4000000000000001,85.74,1007,20,2.6 +2008,5,6,0,30,11.4,1.08,0.182,0.66,0,0,0,0,9.1,0,0,0,0,118.46000000000001,0.16,1.2000000000000002,86.04,1007,22,2.8000000000000003 +2008,5,6,1,30,10.9,0.99,0.146,0.66,0,0,0,0,8.700000000000001,0,0,0,0,112.84,0.16,1,86.14,1007,25,2.9000000000000004 +2008,5,6,2,30,10.5,0.92,0.123,0.66,0,0,0,0,8.3,0,0,0,0,105.09,0.16,1,86.01,1007,27,3 +2008,5,6,3,30,10.4,0.87,0.113,0.66,0,0,0,0,7.9,0,0,0,0,95.84,0.16,1,84.65,1007,31,3.2 +2008,5,6,4,30,11.5,0.87,0.111,0.66,29,217,46,0,7.800000000000001,29,217,0,46,85.43,0.16,1,78.21000000000001,1007,36,3.7 +2008,5,6,5,30,13.700000000000001,0.89,0.114,0.66,69,563,218,0,8.200000000000001,69,563,0,218,74.7,0.16,1,69.2,1007,43,4.3 +2008,5,6,6,30,16.3,0.9,0.116,0.66,93,725,415,0,8,93,725,0,415,63.59,0.16,1.1,57.82,1007,52,4.4 +2008,5,6,7,30,18.6,0.91,0.11900000000000001,0.66,109,816,606,0,7.300000000000001,109,816,0,606,52.51,0.16,1.1,47.83,1007,57,4 +2008,5,6,8,30,20.400000000000002,0.92,0.117,0.66,118,869,765,0,7,118,869,0,765,41.910000000000004,0.16,1.2000000000000002,41.94,1007,58,3.2 +2008,5,6,9,30,21.6,0.92,0.11,0.66,121,903,882,0,7.2,121,903,0,882,32.63,0.16,1.3,39.5,1007,54,2.4000000000000004 +2008,5,6,10,30,22.5,0.92,0.106,0.66,123,918,946,0,7.5,123,918,0,946,26.39,0.16,1.4000000000000001,38.18,1007,44,1.7000000000000002 +2008,5,6,11,30,22.900000000000002,0.92,0.10400000000000001,0.66,122,922,953,0,7.6000000000000005,122,922,0,953,25.650000000000002,0.16,1.4000000000000001,37.35,1006,24,1.2000000000000002 +2008,5,6,12,30,23,0.93,0.127,0.66,131,889,894,3,7.9,448,58,0,498,30.810000000000002,0.16,1.5,38,1006,179,1 +2008,5,6,13,30,22.700000000000003,0.9500000000000001,0.126,0.66,124,859,786,0,8.200000000000001,124,859,0,786,39.57,0.16,1.6,39.35,1006,341,1 +2008,5,6,14,30,22.200000000000003,0.96,0.126,0.66,113,807,633,0,8.200000000000001,113,807,0,633,49.95,0.16,1.7000000000000002,40.64,1006,331,1 +2008,5,6,15,30,21.3,0.99,0.128,0.66,100,723,451,2,8.1,276,131,0,340,60.96,0.16,1.7000000000000002,42.78,1006,326,1 +2008,5,6,16,30,19.900000000000002,1,0.128,0.66,77,577,255,7,8.200000000000001,149,57,0,166,72.08,0.16,1.7000000000000002,46.83,1006,304,0.8 +2008,5,6,17,30,17.8,1,0.126,0.66,41,299,78,2,10.600000000000001,56,3,7,56,82.93,0.16,1.6,62.77,1006,296,0.5 +2008,5,6,18,30,15.9,1,0.126,0.66,0,0,0,0,10.9,0,0,0,0,93.43,0.16,1.6,72.14,1006,163,0.5 +2008,5,6,19,30,14.700000000000001,1,0.127,0.66,0,0,0,0,10.4,0,0,0,0,102.92,0.16,1.6,75.61,1007,36,0.6000000000000001 +2008,5,6,20,30,13.9,1,0.129,0.66,0,0,0,0,9.8,0,0,0,0,111.03,0.16,1.6,76.48,1007,65,0.9 +2008,5,6,21,30,13.3,1,0.131,0.66,0,0,0,0,9.5,0,0,0,0,117.16,0.16,1.6,77.56,1007,75,1.2000000000000002 +2008,5,6,22,30,12.8,1.01,0.134,0.66,0,0,0,0,9.200000000000001,0,0,0,0,120.65,0.16,1.7000000000000002,78.88,1007,78,1.4000000000000001 +2008,5,6,23,30,12.3,1.03,0.136,0.66,0,0,0,0,9,0,0,0,0,121.01,0.16,1.7000000000000002,80.02,1007,78,1.4000000000000001 +2008,5,7,0,30,12,1.06,0.138,0.66,0,0,0,0,8.6,0,0,1,0,118.19,0.16,1.7000000000000002,79.71000000000001,1007,77,1.4000000000000001 +2008,5,7,1,30,11.700000000000001,1.1,0.14,0.66,0,0,0,0,8.200000000000001,0,0,0,0,112.59,0.16,1.7000000000000002,79.15,1007,74,1.4000000000000001 +2008,5,7,2,30,11.4,1.1300000000000001,0.14200000000000002,0.66,0,0,0,0,7.800000000000001,0,0,0,0,104.86,0.16,1.7000000000000002,78.59,1007,72,1.4000000000000001 +2008,5,7,3,30,11.5,1.16,0.146,0.66,0,0,0,0,7.5,0,0,0,0,95.63,0.16,1.7000000000000002,76.46000000000001,1007,70,1.5 +2008,5,7,4,30,13,1.19,0.146,0.66,30,193,46,0,7.800000000000001,30,193,0,46,85.23,0.16,1.7000000000000002,70.82000000000001,1007,69,2 +2008,5,7,5,30,15.700000000000001,1.21,0.14400000000000002,0.66,73,519,212,0,7.9,73,519,0,212,74.51,0.16,1.7000000000000002,59.67,1007,71,2.2 +2008,5,7,6,30,18.3,1.23,0.138,0.66,97,692,407,0,7.800000000000001,97,692,0,407,63.4,0.16,1.7000000000000002,50.410000000000004,1008,67,1.4000000000000001 +2008,5,7,7,30,20.200000000000003,1.24,0.136,0.66,113,788,595,0,7.6000000000000005,113,788,0,595,52.32,0.16,1.7000000000000002,44.11,1008,193,0.6000000000000001 +2008,5,7,8,30,21.5,1.24,0.135,0.66,124,844,754,0,7.7,124,844,0,754,41.7,0.16,1.7000000000000002,40.97,1007,301,0.8 +2008,5,7,9,30,22.3,1.22,0.14200000000000002,0.66,134,871,870,0,7.9,134,871,0,870,32.4,0.16,1.7000000000000002,39.53,1007,270,1.4000000000000001 +2008,5,7,10,30,22.8,1.22,0.146,0.66,141,881,932,0,8.1,141,881,0,932,26.12,0.16,1.8,38.9,1007,260,2.1 +2008,5,7,11,30,22.900000000000002,1.21,0.153,0.66,145,878,937,0,8.3,145,878,0,937,25.38,0.16,1.8,39.35,1007,258,2.6 +2008,5,7,12,30,22.6,1.11,0.191,0.66,160,833,878,0,8.6,160,833,0,878,30.59,0.16,1.9000000000000001,40.65,1007,258,2.9000000000000004 +2008,5,7,13,30,22.1,1.11,0.197,0.66,155,798,772,0,8.8,155,798,0,772,39.38,0.16,1.9000000000000001,42.480000000000004,1006,260,3.1 +2008,5,7,14,30,21.5,1.12,0.193,0.66,140,747,623,8,9,286,348,0,511,49.78,0.16,1.9000000000000001,44.71,1006,262,3 +2008,5,7,15,30,20.900000000000002,1.1400000000000001,0.19,0.66,120,661,443,6,9.200000000000001,10,0,0,10,60.800000000000004,0.16,1.9000000000000001,46.99,1006,264,2.8000000000000003 +2008,5,7,16,30,19.700000000000003,1.1300000000000001,0.183,0.66,90,517,251,7,9.4,121,18,0,126,71.91,0.16,1.9000000000000001,51.57,1006,262,2.3000000000000003 +2008,5,7,17,30,17.8,1.12,0.17200000000000001,0.66,45,253,77,2,11.700000000000001,59,4,7,59,82.76,0.16,1.9000000000000001,67.6,1006,260,1.8 +2008,5,7,18,30,16.2,1.12,0.168,0.66,0,0,0,0,12.4,0,0,0,0,93.25,0.16,1.8,78.29,1007,263,1.5 +2008,5,7,19,30,15.3,1.1300000000000001,0.16,0.66,0,0,0,0,12.200000000000001,0,0,0,0,102.71000000000001,0.16,1.8,82,1007,268,1.2000000000000002 +2008,5,7,20,30,15,1.1500000000000001,0.155,0.66,0,0,0,0,11.9,0,0,0,0,110.8,0.16,1.8,81.81,1007,269,1 +2008,5,7,21,30,15,1.1500000000000001,0.154,0.66,0,0,0,0,11.5,0,0,0,0,116.91,0.16,1.8,79.78,1007,247,0.7000000000000001 +2008,5,7,22,30,14.700000000000001,1.1500000000000001,0.158,0.66,0,0,0,0,11.4,0,0,0,0,120.38,0.16,1.8,80.37,1007,206,0.6000000000000001 +2008,5,7,23,30,14.200000000000001,1.1500000000000001,0.163,0.66,0,0,0,0,11.3,0,0,0,0,120.74000000000001,0.16,1.8,82.93,1007,178,0.7000000000000001 +2008,5,8,0,30,13.9,1.1500000000000001,0.167,0.66,0,0,0,0,11.4,0,0,0,0,117.92,0.16,1.8,84.62,1007,164,0.9 +2008,5,8,1,30,13.5,1.1500000000000001,0.169,0.66,0,0,0,0,11.4,0,0,0,0,112.34,0.16,1.8,87,1007,155,1.1 +2008,5,8,2,30,13.100000000000001,1.1400000000000001,0.169,0.66,0,0,0,0,11.4,0,0,0,0,104.63,0.16,1.7000000000000002,89.45,1007,148,1.2000000000000002 +2008,5,8,3,30,12.9,1.1400000000000001,0.165,0.66,0,0,0,0,11.4,0,0,0,0,95.42,0.16,1.7000000000000002,90.62,1007,141,1.3 +2008,5,8,4,30,14.3,1.1400000000000001,0.159,0.66,32,184,48,1,11.5,32,184,0,48,85.05,0.16,1.7000000000000002,83.14,1007,137,1.7000000000000002 +2008,5,8,5,30,16.8,1.1300000000000001,0.154,0.66,77,510,215,0,11.700000000000001,77,510,0,215,74.33,0.16,1.6,72.03,1007,150,2.1 +2008,5,8,6,30,19,1.1400000000000001,0.149,0.66,103,684,411,0,10.700000000000001,103,684,0,411,63.22,0.16,1.6,58.54,1007,181,2.1 +2008,5,8,7,30,20.6,1.1300000000000001,0.147,0.66,119,780,598,0,9.9,119,780,0,598,52.13,0.16,1.6,50.19,1007,207,2.2 +2008,5,8,8,30,21.6,1.1300000000000001,0.15,0.66,133,834,757,0,9.700000000000001,133,834,0,757,41.5,0.16,1.6,46.78,1007,220,2.5 +2008,5,8,9,30,22.1,1.05,0.17500000000000002,0.66,152,844,867,0,9.700000000000001,152,844,0,867,32.17,0.16,1.7000000000000002,45.14,1007,224,3 +2008,5,8,10,30,22.3,1.06,0.186,0.66,161,853,929,0,9.600000000000001,161,853,0,929,25.86,0.16,1.7000000000000002,44.38,1007,225,3.4000000000000004 +2008,5,8,11,30,22.1,1.08,0.19,0.66,164,850,934,0,9.5,164,850,0,934,25.12,0.16,1.8,44.800000000000004,1007,226,3.6 +2008,5,8,12,30,21.8,1.08,0.214,0.66,171,820,879,0,9.5,171,820,0,879,30.36,0.16,1.8,45.54,1006,227,3.5 +2008,5,8,13,30,21.400000000000002,1.08,0.222,0.66,166,782,772,0,9.5,166,782,0,772,39.19,0.16,1.8,46.52,1006,230,3.3000000000000003 +2008,5,8,14,30,21,1.09,0.217,0.66,150,731,624,0,9.4,150,731,0,624,49.61,0.16,1.8,47.38,1006,234,3.1 +2008,5,8,15,30,20.3,1.09,0.23500000000000001,0.66,135,623,441,0,9.4,135,623,0,441,60.64,0.16,1.8,49.61,1006,239,3 +2008,5,8,16,30,19.1,1.1300000000000001,0.227,0.66,101,478,251,1,9.5,101,478,0,251,71.75,0.16,1.8,53.78,1006,241,2.5 +2008,5,8,17,30,17.1,1.1500000000000001,0.214,0.66,49,223,77,1,10.600000000000001,49,223,0,77,82.59,0.16,1.8,65.74,1006,242,1.6 +2008,5,8,18,30,15.600000000000001,1.1500000000000001,0.20500000000000002,0.66,0,0,0,0,11.700000000000001,0,0,0,0,93.06,0.16,1.7000000000000002,77.54,1006,245,1.1 +2008,5,8,19,30,15.3,1.16,0.189,0.66,0,0,0,0,11.5,0,0,0,0,102.51,0.16,1.7000000000000002,77.87,1006,258,0.7000000000000001 +2008,5,8,20,30,15.3,1.1500000000000001,0.176,0.66,0,0,0,0,11,0,0,0,0,110.57000000000001,0.16,1.6,75.74,1006,147,0.4 +2008,5,8,21,30,14.9,1.1500000000000001,0.169,0.66,0,0,0,0,10.8,0,0,0,0,116.66,0.16,1.6,76.46000000000001,1006,44,0.6000000000000001 +2008,5,8,22,30,14.3,1.1400000000000001,0.168,0.66,0,0,0,0,10.700000000000001,0,0,0,0,120.12,0.16,1.6,78.89,1006,67,0.9 +2008,5,8,23,30,13.700000000000001,1.09,0.17300000000000001,0.66,0,0,0,0,10.5,0,0,0,0,120.47,0.16,1.6,80.94,1006,73,1.1 +2008,5,9,0,30,13.200000000000001,1.04,0.177,0.66,0,0,0,0,10.200000000000001,0,0,0,0,117.66,0.16,1.5,82.03,1005,77,1.2000000000000002 +2008,5,9,1,30,12.700000000000001,1,0.179,0.66,0,0,0,0,9.9,0,0,0,0,112.10000000000001,0.16,1.5,82.8,1005,82,1.3 +2008,5,9,2,30,12.3,0.9500000000000001,0.181,0.66,0,0,0,0,9.4,0,0,0,0,104.41,0.16,1.4000000000000001,82.66,1005,88,1.4000000000000001 +2008,5,9,3,30,12.3,0.91,0.181,0.66,0,0,0,0,9.1,0,0,0,0,95.22,0.16,1.4000000000000001,80.61,1005,95,1.4000000000000001 +2008,5,9,4,30,13.9,0.89,0.179,0.66,35,159,49,1,9.200000000000001,35,159,0,49,84.86,0.16,1.3,73.47,1005,99,1.8 +2008,5,9,5,30,16.6,0.86,0.177,0.66,84,480,216,0,9.700000000000001,84,480,0,216,74.15,0.16,1.3,63.82,1005,104,2.2 +2008,5,9,6,30,19,0.81,0.177,0.66,115,656,412,0,8.6,115,656,0,412,63.050000000000004,0.16,1.2000000000000002,50.800000000000004,1005,120,2.2 +2008,5,9,7,30,20.700000000000003,0.78,0.17200000000000001,0.66,133,763,604,7,7.800000000000001,238,534,0,567,51.95,0.16,1.1,43.410000000000004,1005,135,2.1 +2008,5,9,8,30,22,0.77,0.167,0.66,144,827,766,0,7.300000000000001,144,827,0,766,41.31,0.16,1.1,38.67,1005,146,2 +2008,5,9,9,30,23.1,0.8200000000000001,0.15,0.66,144,876,887,7,6.7,303,547,0,767,31.94,0.16,1.1,34.71,1005,158,2 +2008,5,9,10,30,23.900000000000002,0.84,0.146,0.66,146,896,954,2,6.300000000000001,520,252,0,747,25.6,0.16,1.1,32.230000000000004,1004,172,2.3000000000000003 +2008,5,9,11,30,24.400000000000002,0.86,0.147,0.66,146,894,957,0,6.300000000000001,146,894,0,957,24.86,0.16,1.2000000000000002,31.37,1004,188,2.8000000000000003 +2008,5,9,12,30,24.5,0.91,0.14100000000000001,0.66,139,884,904,0,6.7,139,884,0,904,30.14,0.16,1.3,31.98,1003,200,3.2 +2008,5,9,13,30,24.200000000000003,0.86,0.156,0.66,140,839,792,0,7.300000000000001,140,839,0,792,39.01,0.16,1.4000000000000001,33.82,1003,208,3.6 +2008,5,9,14,30,23.5,0.84,0.17200000000000001,0.66,135,773,637,0,7.9,135,773,0,637,49.45,0.16,1.4000000000000001,36.800000000000004,1002,213,3.7 +2008,5,9,15,30,22.5,0.86,0.182,0.66,120,673,452,8,8.4,216,377,0,402,60.480000000000004,0.16,1.5,40.58,1002,216,3.7 +2008,5,9,16,30,20.8,0.87,0.19,0.66,95,512,257,8,9,164,186,0,223,71.59,0.16,1.5,46.85,1003,219,3.1 +2008,5,9,17,30,18.6,0.84,0.203,0.66,50,218,79,7,10.5,71,27,7,75,82.42,0.16,1.6,59.21,1003,224,2 +2008,5,9,18,30,17,0.81,0.215,0.66,0,0,0,8,11.5,0,0,0,0,92.88,0.16,1.6,69.88,1003,229,1 +2008,5,9,19,30,16.7,0.8,0.22,0.66,0,0,0,1,11.3,0,0,0,0,102.31,0.16,1.6,70.31,1004,225,0.4 +2008,5,9,20,30,16.6,0.78,0.225,0.66,0,0,0,3,11,0,0,0,0,110.35000000000001,0.16,1.6,69.54,1004,147,0.5 +2008,5,9,21,30,16,0.74,0.23,0.66,0,0,0,3,10.4,0,0,0,0,116.42,0.16,1.6,69.44,1004,76,1 +2008,5,9,22,30,15,0.68,0.234,0.66,0,0,0,3,10.100000000000001,0,0,0,0,119.86,0.16,1.5,72.36,1003,76,1.5 +2008,5,9,23,30,14.200000000000001,0.61,0.232,0.66,0,0,0,3,9.5,0,0,0,0,120.21000000000001,0.16,1.4000000000000001,73.52,1003,74,1.6 +2008,5,10,0,30,13.5,0.53,0.224,0.66,0,0,0,1,8.700000000000001,0,0,0,0,117.41,0.16,1.3,72.95,1002,72,1.7000000000000002 +2008,5,10,1,30,12.9,0.45,0.215,0.66,0,0,0,0,7.800000000000001,0,0,0,0,111.86,0.16,1.1,70.93,1002,71,1.9000000000000001 +2008,5,10,2,30,12.3,0.4,0.21,0.66,0,0,0,0,6.5,0,0,0,0,104.19,0.16,0.9,67.92,1002,70,2.1 +2008,5,10,3,30,12.3,0.39,0.212,0.66,0,0,0,4,5.2,0,0,0,0,95.02,0.16,0.8,61.92,1002,70,2.2 +2008,5,10,4,30,13.700000000000001,0.43,0.214,0.66,39,105,49,0,4.7,39,105,0,49,84.68,0.16,0.8,54.480000000000004,1002,70,2.3000000000000003 +2008,5,10,5,30,16,0.47000000000000003,0.20800000000000002,0.66,97,435,217,0,5.4,97,435,0,217,73.97,0.16,0.8,49.27,1002,66,2.5 +2008,5,10,6,30,18.3,0.51,0.191,0.66,125,638,416,3,4.1000000000000005,271,77,0,306,62.88,0.16,0.9,39.12,1003,70,2.7 +2008,5,10,7,30,20.6,0.55,0.179,0.66,140,756,608,0,3.7,140,756,0,608,51.78,0.16,0.9,32.93,1003,90,2.6 +2008,5,10,8,30,22.5,0.58,0.171,0.66,149,822,769,7,4,272,517,0,662,41.12,0.16,1,29.92,1003,115,2.3000000000000003 +2008,5,10,9,30,23.700000000000003,0.59,0.14,0.66,142,880,890,0,4.4,142,880,0,890,31.73,0.16,1.1,28.52,1002,139,1.9000000000000001 +2008,5,10,10,30,24.5,0.63,0.14,0.66,145,893,952,0,4.9,145,893,0,952,25.35,0.16,1.2000000000000002,28.13,1002,166,1.8 +2008,5,10,11,30,24.900000000000002,0.6900000000000001,0.14200000000000002,0.66,145,892,956,0,5.5,145,892,0,956,24.6,0.16,1.3,28.66,1002,187,2 +2008,5,10,12,30,25,0.75,0.147,0.66,143,871,898,0,6.1000000000000005,143,871,0,898,29.92,0.16,1.5,29.66,1001,202,2.2 +2008,5,10,13,30,24.8,0.8,0.156,0.66,140,833,789,0,6.6000000000000005,140,833,0,789,38.83,0.16,1.6,31.060000000000002,1001,215,2.4000000000000004 +2008,5,10,14,30,24.200000000000003,0.84,0.17500000000000002,0.66,137,763,634,3,7,372,192,0,497,49.29,0.16,1.7000000000000002,33.22,1000,229,2.5 +2008,5,10,15,30,23,0.88,0.201,0.66,127,649,448,8,7.6000000000000005,238,165,0,320,60.32,0.16,1.8,37.1,1001,240,2.4000000000000004 +2008,5,10,16,30,21.3,0.92,0.23700000000000002,0.66,106,460,253,3,8.4,181,106,7,214,71.44,0.16,1.9000000000000001,43.52,1001,253,1.8 +2008,5,10,17,30,19.200000000000003,0.93,0.276,0.66,55,167,78,5,10.9,24,0,7,24,82.26,0.16,2,58.74,1002,271,1 +2008,5,10,18,30,18.3,0.9400000000000001,0.309,0.66,0,0,0,4,12.3,0,0,0,0,92.7,0.16,2.1,68.23,1003,306,0.5 +2008,5,10,19,30,18.2,0.93,0.328,0.66,0,0,0,3,11.9,0,0,0,0,102.11,0.16,2.1,66.63,1004,185,0.5 +2008,5,10,20,30,17.900000000000002,0.92,0.336,0.66,0,0,0,3,11.4,0,0,0,0,110.13,0.16,2.2,65.6,1004,54,0.6000000000000001 +2008,5,10,21,30,17.6,0.92,0.34800000000000003,0.66,0,0,0,3,11.700000000000001,0,0,0,0,116.18,0.16,2.2,68.33,1004,67,0.7000000000000001 +2008,5,10,22,30,17.3,0.92,0.34800000000000003,0.66,0,0,0,4,11.700000000000001,0,0,0,0,119.61,0.16,2.2,69.54,1004,63,0.7000000000000001 +2008,5,10,23,30,17,0.92,0.34900000000000003,0.66,0,0,0,1,11.4,0,0,0,0,119.95,0.16,2.1,69.5,1004,48,0.7000000000000001 +2008,5,11,0,30,16.6,0.92,0.353,0.66,0,0,0,3,11,0,0,0,0,117.16,0.16,2.1,69.49,1004,33,0.7000000000000001 +2008,5,11,1,30,16.1,0.92,0.342,0.66,0,0,0,1,10.8,0,0,0,0,111.63,0.16,2,70.77,1004,30,0.9 +2008,5,11,2,30,15.3,0.92,0.31,0.66,0,0,0,0,10.700000000000001,0,0,0,0,103.98,0.16,1.9000000000000001,73.99,1004,40,1.2000000000000002 +2008,5,11,3,30,14.8,0.91,0.268,0.66,0,0,0,1,10.3,0,0,0,0,94.83,0.16,1.7000000000000002,74.47,1003,54,1.5 +2008,5,11,4,30,15.600000000000001,0.89,0.243,0.66,39,120,51,8,9.8,25,0,7,25,84.51,0.16,1.6,68.59,1003,66,2 +2008,5,11,5,30,17.2,0.86,0.228,0.66,96,427,215,1,8.3,96,427,0,215,73.8,0.16,1.5,55.96,1003,74,2.4000000000000004 +2008,5,11,6,30,19.400000000000002,0.8300000000000001,0.228,0.66,131,604,408,7,6.800000000000001,225,74,0,259,62.71,0.16,1.4000000000000001,43.9,1004,95,2.2 +2008,5,11,7,30,21.6,0.8200000000000001,0.224,0.66,153,711,595,0,5.6000000000000005,153,711,0,595,51.61,0.16,1.4000000000000001,35.31,1004,133,1.9000000000000001 +2008,5,11,8,30,23,0.84,0.22,0.66,166,778,754,7,5.4,309,478,0,670,40.93,0.16,1.4000000000000001,31.85,1005,172,2 +2008,5,11,9,30,23.700000000000003,0.89,0.21,0.66,171,821,870,8,5.7,314,529,0,765,31.51,0.16,1.5,31.220000000000002,1005,198,2.4000000000000004 +2008,5,11,10,30,24.200000000000003,0.93,0.201,0.66,170,846,936,7,6.2,346,506,0,804,25.1,0.16,1.5,31.52,1004,210,2.7 +2008,5,11,11,30,24.5,0.93,0.189,0.66,165,853,942,7,6.800000000000001,377,416,0,756,24.35,0.16,1.6,32.17,1004,215,2.9000000000000004 +2008,5,11,12,30,24.400000000000002,0.9400000000000001,0.185,0.66,159,841,889,7,7.2,344,470,0,752,29.71,0.16,1.7000000000000002,33.34,1003,218,3.4000000000000004 +2008,5,11,13,30,23.6,0.9500000000000001,0.20600000000000002,0.66,161,789,778,7,7.800000000000001,321,377,0,616,38.65,0.16,1.9000000000000001,36.31,1003,221,4.1000000000000005 +2008,5,11,14,30,22.3,1,0.23900000000000002,0.66,160,708,623,6,8.6,331,116,0,407,49.13,0.16,2,41.43,1003,222,4.4 +2008,5,11,15,30,20.700000000000003,1.05,0.3,0.66,155,564,435,6,9.5,223,41,0,243,60.17,0.16,2.2,48.53,1004,218,4.1000000000000005 +2008,5,11,16,30,19.200000000000003,1.08,0.368,0.66,127,361,243,6,10.4,7,0,0,7,71.28,0.16,2.3000000000000003,56.54,1004,206,3.2 +2008,5,11,17,30,18,1.07,0.41300000000000003,0.66,58,113,74,6,11.600000000000001,13,0,7,13,82.10000000000001,0.16,2.3000000000000003,66.06,1005,188,2.3000000000000003 +2008,5,11,18,30,17.2,1.07,0.461,0.66,0,0,0,6,12.700000000000001,0,0,0,0,92.52,0.16,2.4000000000000004,75.02,1005,169,2 +2008,5,11,19,30,16.7,1.06,0.452,0.66,0,0,0,6,13.100000000000001,0,0,0,0,101.91,0.16,2.5,79.14,1006,155,1.8 +2008,5,11,20,30,16.3,1.05,0.443,0.66,0,0,0,6,13.100000000000001,0,0,0,0,109.91,0.16,2.5,81.37,1006,144,1.4000000000000001 +2008,5,11,21,30,16,1.05,0.446,0.66,0,0,0,7,13.200000000000001,0,0,0,0,115.94,0.16,2.5,83.34,1006,130,1.1 +2008,5,11,22,30,15.700000000000001,1.06,0.432,0.66,0,0,0,4,13.200000000000001,0,0,0,0,119.35000000000001,0.16,2.5,84.97,1005,117,1 +2008,5,11,23,30,15.5,1.08,0.41100000000000003,0.66,0,0,0,4,13.100000000000001,0,0,0,0,119.7,0.16,2.5,85.51,1005,108,1.1 +2008,5,12,0,30,15.200000000000001,1.08,0.405,0.66,0,0,0,4,12.8,0,0,0,0,116.92,0.16,2.5,85.7,1004,105,1.2000000000000002 +2008,5,12,1,30,14.9,1.07,0.41600000000000004,0.66,0,0,0,4,12.5,0,0,0,0,111.4,0.16,2.5,85.79,1004,106,1.3 +2008,5,12,2,30,14.700000000000001,1.05,0.423,0.66,0,0,0,4,12.3,0,0,0,0,103.77,0.16,2.5,85.78,1004,108,1.4000000000000001 +2008,5,12,3,30,14.600000000000001,1.03,0.424,0.66,0,0,0,4,12.200000000000001,0,0,0,0,94.64,0.16,2.5,85.44,1004,111,1.4000000000000001 +2008,5,12,4,30,15.200000000000001,1,0.40900000000000003,0.66,38,61,44,7,12.4,10,0,7,10,84.34,0.16,2.5,83.34,1004,116,1.8 +2008,5,12,5,30,16.400000000000002,0.98,0.379,0.66,116,300,201,7,12.5,8,0,0,8,73.64,0.16,2.5,77.58,1004,122,2.5 +2008,5,12,6,30,17.3,0.96,0.364,0.66,164,480,385,5,12.100000000000001,34,0,0,34,62.550000000000004,0.16,2.5,71.31,1004,127,3.2 +2008,5,12,7,30,18,0.9400000000000001,0.356,0.66,194,592,563,8,11.4,280,48,0,310,51.44,0.16,2.6,65.55,1004,130,3.7 +2008,5,12,8,30,18.5,0.92,0.34500000000000003,0.66,212,667,717,7,11.100000000000001,290,24,0,308,40.76,0.16,2.6,62.04,1004,134,4.1000000000000005 +2008,5,12,9,30,18.7,0.93,0.34900000000000003,0.66,227,704,829,8,11,229,2,0,231,31.310000000000002,0.16,2.7,60.78,1004,140,4.2 +2008,5,12,10,30,18.7,0.93,0.353,0.66,235,722,890,7,11.3,435,310,0,717,24.86,0.16,2.7,61.96,1004,144,4.1000000000000005 +2008,5,12,11,30,18.8,0.93,0.335,0.66,228,735,899,5,11.700000000000001,467,68,0,529,24.11,0.16,2.7,63.29,1004,146,3.8000000000000003 +2008,5,12,12,30,19,0.96,0.317,0.66,215,731,851,7,12,391,46,0,432,29.5,0.16,2.7,63.730000000000004,1004,146,3.5 +2008,5,12,13,30,19.3,0.9500000000000001,0.299,0.66,197,708,751,5,12.100000000000001,383,39,0,413,38.47,0.16,2.7,63.230000000000004,1004,147,3.2 +2008,5,12,14,30,19.700000000000003,0.9500000000000001,0.274,0.66,172,668,611,3,12.200000000000001,376,88,0,434,48.97,0.16,2.6,61.86,1003,146,2.8000000000000003 +2008,5,12,15,30,19.8,0.9400000000000001,0.264,0.66,146,581,436,8,12.100000000000001,244,88,0,288,60.02,0.16,2.6,61.02,1003,148,2.4000000000000004 +2008,5,12,16,30,19.200000000000003,0.9500000000000001,0.261,0.66,110,432,250,7,12,116,11,0,119,71.13,0.16,2.6,63.09,1002,158,1.9000000000000001 +2008,5,12,17,30,17.8,0.9400000000000001,0.28200000000000003,0.66,57,167,80,7,13.600000000000001,28,0,7,28,81.94,0.16,2.6,76.39,1002,171,1.7000000000000002 +2008,5,12,18,30,16.7,0.9400000000000001,0.354,0.66,0,0,0,7,13.8,0,0,0,0,92.34,0.16,2.8000000000000003,82.78,1003,178,2.1 +2008,5,12,19,30,16.2,0.9500000000000001,0.44,0.66,0,0,0,4,14.100000000000001,0,0,0,0,101.72,0.16,2.9000000000000004,87.55,1004,179,2.6 +2008,5,12,20,30,16,0.93,0.444,0.66,0,0,0,7,14.5,0,0,0,0,109.7,0.16,2.9000000000000004,90.57000000000001,1004,172,2.5 +2008,5,12,21,30,15.700000000000001,0.97,0.433,0.66,0,0,0,7,14.5,0,0,0,0,115.71000000000001,0.16,2.9000000000000004,92.36,1004,159,1.7000000000000002 +2008,5,12,22,30,15.5,1.01,0.417,0.66,0,0,0,4,14.3,0,0,0,0,119.11,0.16,2.8000000000000003,92.52,1004,145,1.1 +2008,5,12,23,30,15.5,1,0.41000000000000003,0.66,0,0,0,4,14.100000000000001,0,0,0,0,119.45,0.16,2.8000000000000003,91.12,1003,129,1 +2008,5,13,0,30,15.5,1,0.444,0.66,0,0,0,4,13.8,0,0,0,0,116.68,0.15,2.8000000000000003,89.79,1003,111,1 +2008,5,13,1,30,15.4,0.99,0.505,0.66,0,0,0,4,13.700000000000001,0,0,0,0,111.18,0.15,2.8000000000000003,89.7,1002,101,1.1 +2008,5,13,2,30,15.200000000000001,0.99,0.545,0.66,0,0,0,4,13.600000000000001,0,0,0,0,103.57000000000001,0.15,2.8000000000000003,90.14,1002,103,1.2000000000000002 +2008,5,13,3,30,15,0.99,0.631,0.66,0,0,0,4,13.5,0,0,0,0,94.45,0.15,2.8000000000000003,90.51,1002,104,1.5 +2008,5,13,4,30,15.100000000000001,0.96,0.678,0.66,33,22,36,4,13.4,5,0,7,5,84.17,0.15,2.8000000000000003,89.83,1002,98,2 +2008,5,13,5,30,15.5,0.9,0.746,0.66,143,140,182,8,13.5,9,0,7,9,73.48,0.15,2.8000000000000003,87.74,1002,84,2.8000000000000003 +2008,5,13,6,30,16.3,0.81,0.79,0.66,238,254,355,8,13.3,61,0,0,61,62.4,0.15,2.7,82.68,1002,76,3.3000000000000003 +2008,5,13,7,30,17.900000000000002,0.7000000000000001,0.765,0.66,302,361,528,7,13.4,100,0,0,100,51.29,0.15,2.6,74.95,1002,83,3.5 +2008,5,13,8,30,19.700000000000003,0.63,0.723,0.66,338,449,679,7,13.100000000000001,212,3,0,214,40.58,0.15,2.6,65.75,1002,103,3.4000000000000004 +2008,5,13,9,30,20.900000000000002,0.6,0.879,0.66,407,431,776,6,12.5,288,3,0,291,31.11,0.15,2.6,58.550000000000004,1001,123,3.5 +2008,5,13,10,30,21.200000000000003,0.61,0.9410000000000001,0.66,438,434,832,6,12,169,0,0,170,24.62,0.15,2.6,55.81,1001,136,3.6 +2008,5,13,11,30,21,0.62,0.974,0.66,447,426,836,7,11.8,308,3,0,310,23.86,0.15,2.6,55.84,1001,144,3.7 +2008,5,13,12,30,20.6,0.71,0.855,0.66,401,457,800,6,11.8,184,1,0,184,29.3,0.15,2.6,57.120000000000005,1000,147,3.6 +2008,5,13,13,30,20.1,0.78,0.837,0.66,368,428,703,7,11.9,258,6,0,262,38.300000000000004,0.15,2.6,59.15,1000,146,3.3000000000000003 +2008,5,13,14,30,19.700000000000003,0.8300000000000001,0.728,0.66,302,407,570,7,12,95,0,0,95,48.81,0.15,2.6,60.93,1000,142,3.1 +2008,5,13,15,30,19.1,0.9,0.71,0.66,242,321,403,7,12.100000000000001,83,0,0,83,59.870000000000005,0.15,2.6,63.690000000000005,1000,139,2.9000000000000004 +2008,5,13,16,30,18.2,0.9400000000000001,0.662,0.66,161,205,228,7,12.4,38,0,0,38,70.97,0.15,2.6,69.12,1000,136,2.5 +2008,5,13,17,30,17,0.9500000000000001,0.545,0.66,61,71,71,7,13.3,4,0,7,4,81.78,0.15,2.6,78.76,1001,131,1.9000000000000001 +2008,5,13,18,30,16,0.97,0.46,0.66,0,0,0,4,13.5,0,0,0,0,92.17,0.15,2.6,85.11,1001,123,1.6 +2008,5,13,19,30,15.4,0.98,0.399,0.66,0,0,0,4,13.4,0,0,0,0,101.53,0.15,2.6,88.12,1002,108,1.5 +2008,5,13,20,30,14.700000000000001,1,0.342,0.66,0,0,0,3,13.3,0,0,0,0,109.49000000000001,0.15,2.6,91.04,1002,93,1.4000000000000001 +2008,5,13,21,30,14.200000000000001,1.02,0.318,0.66,0,0,0,3,12.9,0,0,1,0,115.48,0.15,2.5,91.79,1002,83,1.3 +2008,5,13,22,30,14,1.05,0.305,0.66,0,0,0,3,12.600000000000001,0,0,1,0,118.87,0.15,2.5,91.5,1002,80,1.1 +2008,5,13,23,30,14,1.05,0.289,0.66,0,0,0,3,12.4,0,0,1,0,119.21000000000001,0.15,2.4000000000000004,90.29,1001,75,1 +2008,5,14,0,30,14,1.06,0.294,0.66,0,0,0,6,12.200000000000001,0,0,8,0,116.45,0.15,2.4000000000000004,88.97,1001,69,1 +2008,5,14,1,30,14,1.07,0.295,0.66,0,0,0,6,11.9,0,0,8,0,110.97,0.15,2.3000000000000003,87.42,1001,66,1 +2008,5,14,2,30,14,1.06,0.28400000000000003,0.66,0,0,0,6,11.600000000000001,0,0,8,0,103.38,0.15,2.3000000000000003,85.25,1001,69,1 +2008,5,14,3,30,14.200000000000001,1.06,0.28300000000000003,0.66,0,0,0,6,11.3,0,0,8,0,94.28,0.15,2.3000000000000003,82.5,1002,71,0.9 +2008,5,14,4,30,15.3,1.05,0.28600000000000003,0.66,42,117,54,6,11.5,6,0,8,6,84.01,0.15,2.3000000000000003,77.84,1002,69,0.8 +2008,5,14,5,30,17.2,1.03,0.289,0.66,105,377,214,6,12.100000000000001,11,0,8,11,73.33,0.15,2.3000000000000003,72.19,1002,69,0.7000000000000001 +2008,5,14,6,30,19.1,1.02,0.29,0.66,146,545,399,6,11.600000000000001,18,0,8,18,62.25,0.15,2.3000000000000003,61.7,1003,86,0.5 +2008,5,14,7,30,20.8,0.99,0.289,0.66,172,647,578,6,11,27,0,8,27,51.13,0.15,2.4000000000000004,53.35,1003,152,0.4 +2008,5,14,8,30,22,0.96,0.299,0.66,194,704,730,6,10.700000000000001,44,0,8,44,40.42,0.15,2.4000000000000004,48.76,1003,215,1 +2008,5,14,9,30,22.6,0.93,0.308,0.66,210,736,842,6,11,49,0,8,49,30.91,0.15,2.4000000000000004,47.78,1003,230,1.9000000000000001 +2008,5,14,10,30,22.8,0.91,0.309,0.66,217,754,904,3,11.3,44,0,8,44,24.39,0.15,2.4000000000000004,48.22,1003,237,2.9000000000000004 +2008,5,14,11,30,22.5,0.91,0.307,0.66,217,755,909,3,11.600000000000001,44,0,8,44,23.63,0.15,2.5,50.02,1003,242,3.8000000000000003 +2008,5,14,12,30,21.8,0.9400000000000001,0.334,0.66,222,725,855,3,11.700000000000001,43,0,8,43,29.09,0.15,2.5,52.81,1003,246,4.3 +2008,5,14,13,30,21.200000000000003,0.97,0.339,0.66,212,687,753,3,11.9,44,0,8,44,38.13,0.15,2.5,55.46,1003,250,4.4 +2008,5,14,14,30,20.6,0.97,0.325,0.66,189,636,610,3,12.100000000000001,38,0,8,38,48.660000000000004,0.15,2.5,58.13,1003,255,4.2 +2008,5,14,15,30,20.1,0.99,0.338,0.66,166,532,434,6,12.200000000000001,17,0,8,17,59.72,0.15,2.5,60.33,1003,260,3.7 +2008,5,14,16,30,19.3,1,0.326,0.66,123,390,251,6,12.200000000000001,9,0,8,9,70.82000000000001,0.15,2.5,63.59,1003,260,2.9000000000000004 +2008,5,14,17,30,17.8,1.01,0.321,0.66,60,159,83,6,12.700000000000001,5,0,8,5,81.62,0.15,2.5,72.14,1004,256,1.9000000000000001 +2008,5,14,18,30,16.2,1.03,0.33,0.66,0,0,0,6,13.5,0,0,8,0,92,0.15,2.5,84.24,1004,250,1.3 +2008,5,14,19,30,15.4,1.04,0.329,0.66,0,0,0,6,13.5,0,0,8,0,101.34,0.15,2.5,88.72,1005,246,1.1 +2008,5,14,20,30,15,1.06,0.324,0.66,0,0,0,6,13.4,0,0,8,0,109.28,0.15,2.5,90.39,1005,245,0.9 +2008,5,14,21,30,14.9,1.06,0.325,0.66,0,0,0,6,13.5,0,0,8,0,115.25,0.15,2.5,91.14,1005,248,0.8 +2008,5,14,22,30,14.8,1.06,0.322,0.66,0,0,0,6,13.5,0,0,8,0,118.63,0.15,2.4000000000000004,91.87,1005,249,0.6000000000000001 +2008,5,14,23,30,14.8,1.05,0.315,0.66,0,0,0,6,13.5,0,0,8,0,118.97,0.15,2.4000000000000004,91.81,1005,225,0.30000000000000004 +2008,5,15,0,30,14.700000000000001,1.03,0.311,0.66,0,0,0,6,13.4,0,0,8,0,116.22,0.15,2.4000000000000004,92.13,1005,169,0.30000000000000004 +2008,5,15,1,30,14.5,1.03,0.306,0.66,0,0,0,6,13.3,0,0,8,0,110.76,0.15,2.4000000000000004,92.68,1004,133,0.4 +2008,5,15,2,30,14.3,1.02,0.295,0.66,0,0,0,6,13.200000000000001,0,0,8,0,103.19,0.15,2.4000000000000004,93.16,1004,131,0.5 +2008,5,15,3,30,14.3,1.02,0.289,0.66,0,0,0,6,13.100000000000001,0,0,8,0,94.10000000000001,0.15,2.4000000000000004,92.56,1004,134,0.6000000000000001 +2008,5,15,4,30,15.200000000000001,1.01,0.29,0.66,43,116,56,6,13.100000000000001,50,4,8,50,83.86,0.15,2.4000000000000004,87.46000000000001,1005,148,0.9 +2008,5,15,5,30,16.900000000000002,1.01,0.293,0.66,107,374,215,6,13.4,147,56,8,164,73.18,0.15,2.4000000000000004,79.75,1005,174,1.3 +2008,5,15,6,30,18.400000000000002,1.01,0.28300000000000003,0.66,144,549,401,6,13,231,100,8,278,62.1,0.15,2.4000000000000004,70.9,1006,195,1.8 +2008,5,15,7,30,19.6,1,0.267,0.66,165,664,583,6,12.5,284,72,8,329,50.99,0.15,2.4000000000000004,63.65,1006,205,2.3000000000000003 +2008,5,15,8,30,20.6,0.99,0.251,0.66,176,738,739,6,12.200000000000001,323,32,8,347,40.26,0.15,2.4000000000000004,58.54,1006,209,2.8000000000000003 +2008,5,15,9,30,21.3,1,0.23800000000000002,0.66,180,782,852,6,12.100000000000001,356,19,8,372,30.73,0.15,2.5,55.64,1006,209,3.1 +2008,5,15,10,30,21.6,1.01,0.232,0.66,182,804,915,6,12,394,23,8,415,24.17,0.15,2.5,54.370000000000005,1005,209,3.3000000000000003 +2008,5,15,11,30,21.8,1.01,0.213,0.66,174,819,925,6,12.100000000000001,424,40,8,460,23.400000000000002,0.15,2.5,53.9,1005,210,3.6 +2008,5,15,12,30,22,1.02,0.191,0.66,159,821,877,6,12.200000000000001,411,158,8,550,28.900000000000002,0.15,2.5,53.800000000000004,1005,210,3.7 +2008,5,15,13,30,22,0.98,0.178,0.66,147,802,779,6,12.200000000000001,345,276,8,563,37.96,0.15,2.4000000000000004,53.800000000000004,1005,210,3.8000000000000003 +2008,5,15,14,30,21.6,0.93,0.17400000000000002,0.66,134,755,634,6,12.100000000000001,334,219,8,479,48.5,0.15,2.3000000000000003,54.81,1005,210,3.8000000000000003 +2008,5,15,15,30,20.8,0.88,0.178,0.66,119,665,456,6,12,201,395,8,401,59.57,0.15,2.3000000000000003,57.28,1005,210,3.7 +2008,5,15,16,30,19.6,0.84,0.182,0.66,95,516,266,6,12.100000000000001,148,306,8,249,70.67,0.15,2.3000000000000003,61.74,1005,209,3.4000000000000004 +2008,5,15,17,30,17.7,0.85,0.2,0.66,55,242,91,6,12.5,55,242,5,91,81.46000000000001,0.15,2.3000000000000003,71.59,1005,207,2.5 +2008,5,15,18,30,16.1,0.86,0.221,0.66,0,0,0,6,13.5,0,0,8,0,91.83,0.15,2.3000000000000003,84.82000000000001,1006,201,1.6 +2008,5,15,19,30,15.3,0.86,0.228,0.66,0,0,0,6,13.9,0,0,8,0,101.15,0.15,2.3000000000000003,91.08,1006,181,1.2000000000000002 +2008,5,15,20,30,14.700000000000001,0.8300000000000001,0.24,0.66,0,0,0,6,13.9,0,0,8,0,109.08,0.15,2.3000000000000003,95.02,1006,156,1.2000000000000002 +2008,5,15,21,30,14.5,0.8300000000000001,0.251,0.66,0,0,0,6,13.9,0,0,8,0,115.03,0.15,2.3000000000000003,96.31,1006,142,1.2000000000000002 +2008,5,15,22,30,14.4,0.8300000000000001,0.248,0.66,0,0,0,6,13.8,0,0,8,0,118.4,0.15,2.3000000000000003,96.45,1005,138,1.2000000000000002 +2008,5,15,23,30,14.4,0.78,0.23600000000000002,0.66,0,0,0,6,13.8,0,0,8,0,118.74000000000001,0.15,2.3000000000000003,96.17,1005,137,1.2000000000000002 +2008,5,16,0,30,13.9,0.75,0.241,0.66,0,0,0,6,13.700000000000001,0,0,8,0,116,0.15,2.2,98.58,1005,131,1.3 +2008,5,16,1,30,13.4,0.68,0.269,0.66,0,0,0,6,13.4,0,0,8,0,110.56,0.15,2.2,100,1004,122,1.4000000000000001 +2008,5,16,2,30,13,0.52,0.324,0.66,0,0,0,6,13,0,0,8,0,103,0.15,2.3000000000000003,100,1004,117,1.5 +2008,5,16,3,30,13.200000000000001,0.4,0.391,0.66,0,0,0,6,13,0,0,8,0,93.94,0.15,2.3000000000000003,98.49000000000001,1004,119,1.6 +2008,5,16,4,30,14.8,0.4,0.41600000000000004,0.66,43,34,46,6,12.700000000000001,43,34,5,46,83.71000000000001,0.15,2.4000000000000004,87.52,1004,123,2.2 +2008,5,16,5,30,17.1,0.42,0.405,0.66,126,247,199,6,12.700000000000001,158,45,8,171,73.04,0.15,2.5,75.43,1005,133,3 +2008,5,16,6,30,19.1,0.35000000000000003,0.459,0.66,195,376,371,6,12.3,263,180,8,348,61.97,0.15,2.6,64.64,1005,147,3.1 +2008,5,16,7,30,20.8,0.29,0.529,0.66,256,442,535,6,12.200000000000001,338,248,8,494,50.84,0.15,2.8000000000000003,58.04,1005,160,3.1 +2008,5,16,8,30,22.1,0.26,0.544,0.66,293,508,682,6,12.700000000000001,382,322,8,628,40.1,0.15,2.8000000000000003,55.15,1005,171,3.3000000000000003 +2008,5,16,9,30,23.1,0.36,0.41200000000000003,0.66,264,637,812,6,13.200000000000001,387,368,8,704,30.54,0.15,2.9000000000000004,53.6,1005,180,3.6 +2008,5,16,10,30,23.900000000000002,0.34,0.439,0.66,282,639,866,6,13.5,469,166,8,621,23.95,0.15,3.1,52.28,1004,187,3.8000000000000003 +2008,5,16,11,30,23.900000000000002,0.34,0.451,0.66,285,634,868,6,13.700000000000001,483,98,8,573,23.17,0.15,3.1,52.71,1004,189,3.9000000000000004 +2008,5,16,12,30,23.700000000000003,0.18,0.704,0.66,371,474,786,6,13.600000000000001,485,117,8,588,28.7,0.15,3,53.03,1004,188,4.1000000000000005 +2008,5,16,13,30,23.200000000000003,0.16,0.77,0.66,367,400,683,6,13.4,388,37,8,417,37.79,0.15,2.9000000000000004,54.14,1003,185,4.4 +2008,5,16,14,30,22,0.16,0.8270000000000001,0.66,336,308,541,6,13.100000000000001,270,5,8,273,48.35,0.15,2.8000000000000003,57.21,1003,177,4.4 +2008,5,16,15,30,21,0.16,0.8150000000000001,0.66,268,216,378,6,13,185,4,8,187,59.43,0.15,2.7,60.25,1003,162,3.8000000000000003 +2008,5,16,16,30,20,0.16,0.751,0.66,170,113,208,6,13.3,104,1,8,105,70.53,0.15,2.7,65.3,1003,147,3 +2008,5,16,17,30,19,0.18,0.685,0.66,54,15,56,6,14.3,39,0,8,39,81.31,0.15,2.6,74.13,1003,141,2.3000000000000003 +2008,5,16,18,30,18.2,0.22,0.609,0.66,0,0,0,6,14.5,0,0,8,0,91.66,0.15,2.7,79.23,1003,143,2.3000000000000003 +2008,5,16,19,30,17.8,0.27,0.541,0.66,0,0,0,6,14.600000000000001,0,0,8,0,100.97,0.15,2.8000000000000003,81.38,1003,144,2.4000000000000004 +2008,5,16,20,30,17.6,0.32,0.487,0.66,0,0,0,6,14.600000000000001,0,0,8,0,108.88,0.15,3,82.4,1003,146,2.5 +2008,5,16,21,30,17.6,0.4,0.441,0.66,0,0,0,6,14.5,0,0,8,0,114.81,0.15,3.1,81.89,1004,147,2.4000000000000004 +2008,5,16,22,30,17.400000000000002,0.46,0.40800000000000003,0.66,0,0,0,6,14.4,0,0,8,0,118.17,0.15,3.2,82.71000000000001,1004,137,2.1 +2008,5,16,23,30,17.2,0.51,0.389,0.66,0,0,0,6,14.100000000000001,0,0,8,0,118.51,0.15,3.1,81.97,1003,114,2 +2008,5,17,0,30,17.2,0.55,0.358,0.66,0,0,0,6,13.4,0,0,8,0,115.78,0.16,2.9000000000000004,78.45,1002,99,2.1 +2008,5,17,1,30,17.2,0.6,0.329,0.66,0,0,0,6,12.8,0,0,8,0,110.36,0.16,2.7,75.45,1001,101,2.1 +2008,5,17,2,30,17,0.66,0.307,0.66,0,0,0,6,12.5,0,0,8,0,102.83,0.16,2.5,74.77,1001,110,2 +2008,5,17,3,30,17.2,0.67,0.297,0.66,0,0,0,6,12.200000000000001,0,0,8,0,93.78,0.16,2.5,72.33,1001,117,2 +2008,5,17,4,30,18.6,0.63,0.303,0.66,46,89,55,6,12.3,50,3,8,50,83.56,0.16,2.4000000000000004,66.89,1001,119,2.3000000000000003 +2008,5,17,5,30,20.900000000000002,0.5700000000000001,0.324,0.66,117,321,211,6,12.4,162,159,8,208,72.9,0.16,2.4000000000000004,58.36,1001,122,3 +2008,5,17,6,30,23,0.52,0.355,0.66,171,467,391,6,11.100000000000001,240,262,8,363,61.83,0.16,2.4000000000000004,46.93,1001,134,3.7 +2008,5,17,7,30,24.700000000000003,0.49,0.38,0.66,212,557,564,6,10.100000000000001,310,285,8,491,50.71,0.16,2.5,39.83,1001,150,4 +2008,5,17,8,30,25.900000000000002,0.49,0.4,0.66,242,615,713,6,10.200000000000001,397,187,8,540,39.95,0.16,2.5,37.33,1000,162,4.1000000000000005 +2008,5,17,9,30,26.5,0.5,0.422,0.66,265,646,822,6,10.5,440,86,8,515,30.37,0.16,2.5,36.76,1000,172,4.2 +2008,5,17,10,30,26.3,0.52,0.421,0.66,272,669,884,6,10.700000000000001,442,40,8,478,23.73,0.16,2.5,37.63,999,181,4.2 +2008,5,17,11,30,25.200000000000003,0.56,0.397,0.66,264,686,896,6,11,300,4,8,304,22.95,0.16,2.6,40.99,1000,201,4.4 +2008,5,17,12,30,23.3,0.68,0.41000000000000003,0.66,258,665,842,6,11.9,161,0,8,161,28.51,0.16,2.8000000000000003,48.69,1000,233,4.3 +2008,5,17,13,30,21.400000000000002,0.75,0.501,0.66,274,576,731,6,13.3,119,0,8,120,37.63,0.16,3,59.82,1000,277,3.2 +2008,5,17,14,30,20.700000000000003,0.74,0.587,0.66,272,465,582,6,13.600000000000001,121,0,8,121,48.21,0.16,3,63.79,999,164,2.7 +2008,5,17,15,30,21,0.71,0.591,0.66,228,361,413,6,13.5,104,1,8,104,59.28,0.16,2.9000000000000004,62.440000000000005,998,36,3 +2008,5,17,16,30,21.200000000000003,0.6900000000000001,0.555,0.66,159,232,237,6,14,56,0,8,56,70.38,0.16,2.9000000000000004,63.71,998,63,2.2 +2008,5,17,17,30,20.6,0.65,0.539,0.66,66,59,75,6,15.3,22,0,8,22,81.16,0.16,2.9000000000000004,71.51,997,92,1.5 +2008,5,17,18,30,20.1,0.58,0.519,0.66,0,0,0,6,14.9,0,0,8,0,91.49,0.16,2.8000000000000003,72.19,997,116,2 +2008,5,17,19,30,19.8,0.5,0.46900000000000003,0.66,0,0,0,6,14.4,0,0,8,0,100.79,0.16,2.7,70.99,997,131,2.7 +2008,5,17,20,30,19.400000000000002,0.47000000000000003,0.436,0.66,0,0,0,6,14.100000000000001,0,0,8,0,108.68,0.16,2.7,71.33,997,137,3.3000000000000003 +2008,5,17,21,30,19.1,0.49,0.423,0.66,0,0,0,6,13.9,0,0,8,0,114.60000000000001,0.16,2.8000000000000003,72,997,138,3.7 +2008,5,17,22,30,18.7,0.54,0.421,0.66,0,0,0,6,13.700000000000001,0,0,8,0,117.95,0.16,2.9000000000000004,72.63,997,138,4 +2008,5,17,23,30,18.400000000000002,0.59,0.424,0.66,0,0,0,6,13.600000000000001,0,0,8,0,118.29,0.16,2.9000000000000004,73.7,997,136,4.3 +2008,5,18,0,30,17.8,0.63,0.41000000000000003,0.66,0,0,0,6,13.5,0,0,8,0,115.58,0.16,2.9000000000000004,76.17,996,135,4.4 +2008,5,18,1,30,17.1,0.65,0.378,0.66,0,0,0,6,13.600000000000001,0,0,8,0,110.17,0.16,2.9000000000000004,79.94,996,136,4.2 +2008,5,18,2,30,16.6,0.65,0.403,0.66,0,0,0,6,13.8,0,0,8,0,102.65,0.16,2.9000000000000004,83.58,995,136,4 +2008,5,18,3,30,16.6,0.65,0.458,0.66,0,0,0,6,14.200000000000001,0,0,8,0,93.62,0.16,2.8000000000000003,85.84,995,135,3.7 +2008,5,18,4,30,17.400000000000002,0.63,0.492,0.66,45,35,49,6,14.700000000000001,18,0,8,18,83.43,0.16,2.8000000000000003,84.19,995,136,3.9000000000000004 +2008,5,18,5,30,18.6,0.58,0.47800000000000004,0.66,137,222,203,6,15.3,40,0,8,40,72.77,0.16,2.7,80.93,995,147,4.2 +2008,5,18,6,30,19.700000000000003,0.59,0.47100000000000003,0.66,198,392,384,6,15.5,52,0,8,52,61.7,0.16,2.6,76.53,995,160,4.4 +2008,5,18,7,30,20.6,0.58,0.429,0.66,227,529,563,6,15.100000000000001,42,0,8,42,50.58,0.16,2.6,70.55,995,172,4.7 +2008,5,18,8,30,21.200000000000003,0.55,0.369,0.66,231,639,722,6,15.100000000000001,42,0,8,42,39.81,0.16,2.5,68.22,996,182,5.1000000000000005 +2008,5,18,9,30,21.6,0.55,0.34700000000000003,0.66,236,696,837,6,15.200000000000001,48,0,8,48,30.2,0.16,2.5,66.89,996,190,5.300000000000001 +2008,5,18,10,30,21.8,0.54,0.335,0.66,238,723,901,6,15.200000000000001,49,0,8,49,23.53,0.16,2.5,65.93,996,200,5.1000000000000005 +2008,5,18,11,30,22.1,0.52,0.308,0.66,228,743,913,6,15,47,0,8,47,22.73,0.16,2.4000000000000004,64.2,996,210,4.7 +2008,5,18,12,30,22.3,0.61,0.281,0.66,208,750,869,6,14.700000000000001,49,0,8,49,28.32,0.16,2.4000000000000004,62.2,996,218,4.2 +2008,5,18,13,30,22.400000000000002,0.6,0.268,0.66,192,727,769,6,14.4,54,0,8,54,37.47,0.16,2.3000000000000003,60.370000000000005,996,225,3.7 +2008,5,18,14,30,22.200000000000003,0.58,0.254,0.66,171,679,625,6,13.9,87,0,8,87,48.06,0.16,2.3000000000000003,59.51,996,227,3.2 +2008,5,18,15,30,21.6,0.56,0.267,0.66,154,575,449,6,13.600000000000001,241,49,8,266,59.14,0.16,2.2,60.38,996,227,2.9000000000000004 +2008,5,18,16,30,20.700000000000003,0.5700000000000001,0.271,0.66,120,420,262,6,13.5,181,137,8,228,70.24,0.16,2.2,63.34,996,226,2.4000000000000004 +2008,5,18,17,30,18.900000000000002,0.5700000000000001,0.272,0.66,64,173,91,6,13.9,64,173,5,91,81.01,0.16,2.2,72.88,996,227,1.7000000000000002 +2008,5,18,18,30,17.3,0.59,0.274,0.66,0,0,0,6,14.8,0,0,8,0,91.33,0.16,2.2,84.99,996,229,1.1 +2008,5,18,19,30,16.7,0.6,0.272,0.66,0,0,0,6,14.700000000000001,0,0,8,0,100.61,0.16,2.2,88.13,997,229,0.8 +2008,5,18,20,30,16.6,0.6,0.274,0.66,0,0,0,6,14.600000000000001,0,0,8,0,108.49000000000001,0.16,2.3000000000000003,88.25,997,133,0.4 +2008,5,18,21,30,16.2,0.59,0.28300000000000003,0.66,0,0,0,6,14.600000000000001,0,0,8,0,114.4,0.16,2.4000000000000004,90.22,996,42,0.6000000000000001 +2008,5,18,22,30,15.700000000000001,0.56,0.302,0.66,0,0,0,6,14.5,0,0,8,0,117.74000000000001,0.16,2.4000000000000004,92.29,996,50,0.9 +2008,5,18,23,30,15.5,0.51,0.319,0.66,0,0,0,6,14.200000000000001,0,0,8,0,118.08,0.16,2.4000000000000004,91.85000000000001,995,48,1 +2008,5,19,0,30,15.200000000000001,0.44,0.328,0.66,0,0,0,6,13.9,0,0,1,0,115.37,0.16,2.4000000000000004,91.94,994,42,1.2000000000000002 +2008,5,19,1,30,15,0.4,0.339,0.66,0,0,0,6,13.600000000000001,0,0,1,0,109.98,0.16,2.4000000000000004,91.25,993,39,1.4000000000000001 +2008,5,19,2,30,15,0.37,0.365,0.66,0,0,0,6,13.200000000000001,0,0,1,0,102.48,0.16,2.4000000000000004,88.75,993,37,1.4000000000000001 +2008,5,19,3,30,15.3,0.38,0.403,0.66,0,0,0,6,12.700000000000001,0,0,1,0,93.47,0.16,2.4000000000000004,84.71000000000001,993,35,1.3 +2008,5,19,4,30,16.400000000000002,0.38,0.433,0.66,46,36,50,6,12.9,19,0,1,19,83.29,0.16,2.4000000000000004,79.83,992,32,1.6 +2008,5,19,5,30,17.7,0.33,0.47400000000000003,0.66,137,207,199,6,13.100000000000001,52,0,1,52,72.64,0.16,2.4000000000000004,74.22,992,29,2 +2008,5,19,6,30,19.3,0.26,0.533,0.66,215,332,372,6,12.5,146,3,1,148,61.58,0.16,2.3000000000000003,64.67,992,27,1.8 +2008,5,19,7,30,21.3,0.23,0.593,0.66,278,410,540,6,12.4,236,7,1,241,50.45,0.16,2.3000000000000003,56.93,992,189,0.9 +2008,5,19,8,30,22.900000000000002,0.22,0.634,0.66,325,464,682,6,11.200000000000001,316,10,1,324,39.67,0.16,2.4000000000000004,47.7,991,297,0.6000000000000001 +2008,5,19,9,30,23.700000000000003,0.26,0.588,0.66,332,539,798,6,11,353,9,1,361,30.04,0.16,2.4000000000000004,44.69,991,237,1.4000000000000001 +2008,5,19,10,30,24.1,0.33,0.538,0.66,320,592,864,7,11.200000000000001,443,50,7,489,23.330000000000002,0.16,2.5,44.4,991,236,2.3000000000000003 +2008,5,19,11,30,23.900000000000002,0.38,0.527,0.66,315,603,871,4,11.700000000000001,503,63,0,561,22.52,0.16,2.6,46.25,990,241,2.8000000000000003 +2008,5,19,12,30,23.400000000000002,0.34,0.606,0.66,340,539,815,4,12.3,342,1,0,342,28.14,0.16,2.7,49.6,990,247,2.9000000000000004 +2008,5,19,13,30,22.8,0.35000000000000003,0.654,0.66,334,474,710,7,12.8,448,132,0,553,37.32,0.16,2.8000000000000003,53.34,989,245,2.6 +2008,5,19,14,30,22.200000000000003,0.36,0.727,0.66,315,371,564,7,13.200000000000001,31,0,0,31,47.92,0.16,2.9000000000000004,56.89,989,219,2.1 +2008,5,19,15,30,21.8,0.38,0.757,0.66,262,261,396,7,13.5,56,0,0,56,59,0.16,2.9000000000000004,59.45,989,184,1.7000000000000002 +2008,5,19,16,30,21,0.38,0.6920000000000001,0.66,173,154,225,7,14,50,0,0,51,70.10000000000001,0.16,2.9000000000000004,64.31,989,196,1.4000000000000001 +2008,5,19,17,30,19.400000000000002,0.37,0.599,0.66,63,36,69,7,15.3,54,0,7,54,80.86,0.16,2.8000000000000003,77.15,988,241,1.4000000000000001 +2008,5,19,18,30,18,0.4,0.552,0.66,0,0,0,3,15,0,0,0,0,91.17,0.16,2.9000000000000004,82.81,988,266,1.7000000000000002 +2008,5,19,19,30,17.5,0.46,0.5660000000000001,0.66,0,0,0,9,15.100000000000001,0,0,0,0,100.44,0.16,3,85.58,989,272,1.8 +2008,5,19,20,30,17.3,0.51,0.5630000000000001,0.66,0,0,0,9,15.5,0,0,0,0,108.3,0.16,3.1,89.05,989,266,2 +2008,5,19,21,30,16.8,0.59,0.584,0.66,0,0,0,9,15.4,0,0,0,0,114.19,0.16,3,91.62,989,256,2.3000000000000003 +2008,5,19,22,30,16.400000000000002,0.64,0.547,0.66,0,0,0,9,15.200000000000001,0,0,0,0,117.53,0.16,3,92.42,989,243,2.3000000000000003 +2008,5,19,23,30,16.1,0.63,0.47900000000000004,0.66,0,0,0,6,14.9,0,0,0,0,117.87,0.16,3,92.79,989,230,2.3000000000000003 +2008,5,20,0,30,15.700000000000001,0.66,0.454,0.66,0,0,0,4,14.700000000000001,0,0,0,0,115.17,0.16,2.9000000000000004,93.98,989,214,2.3000000000000003 +2008,5,20,1,30,15.4,0.61,0.332,0.66,0,0,0,4,14.5,0,0,0,0,109.8,0.16,2.9000000000000004,94.54,989,194,2.2 +2008,5,20,2,30,15.200000000000001,0.54,0.254,0.66,0,0,0,8,14.3,0,0,0,0,102.32000000000001,0.16,2.9000000000000004,94.32000000000001,989,175,2.4000000000000004 +2008,5,20,3,30,15.5,0.6,0.255,0.66,0,0,0,8,14.3,0,0,0,0,93.32000000000001,0.16,2.8000000000000003,92.76,989,170,3.1 +2008,5,20,4,30,15.9,0.62,0.251,0.66,48,125,63,7,14.700000000000001,4,0,7,4,83.16,0.16,2.8000000000000003,92.36,990,183,3.9000000000000004 +2008,5,20,5,30,16.1,0.62,0.221,0.66,100,421,226,7,14.8,48,0,1,49,72.52,0.16,2.7,91.77,990,200,4.9 +2008,5,20,6,30,16.400000000000002,0.72,0.182,0.66,119,629,419,7,14.200000000000001,138,5,0,141,61.46,0.16,2.6,86.86,991,203,5.7 +2008,5,20,7,30,16.900000000000002,0.74,0.152,0.66,125,752,606,6,13.4,132,1,0,133,50.33,0.16,2.5,79.97,992,196,6.2 +2008,5,20,8,30,17.6,0.73,0.14400000000000002,0.66,134,814,761,7,13,307,332,0,564,39.54,0.16,2.5,74.65,992,189,6.6000000000000005 +2008,5,20,9,30,18,0.73,0.14400000000000002,0.66,141,845,874,7,12.8,397,233,0,599,29.88,0.16,2.5,71.81,993,185,6.800000000000001 +2008,5,20,10,30,18.3,0.71,0.149,0.66,148,857,936,6,12.700000000000001,237,2,0,238,23.13,0.16,2.5,69.78,992,181,6.800000000000001 +2008,5,20,11,30,18.2,0.68,0.161,0.66,154,847,938,6,12.600000000000001,149,0,0,149,22.32,0.16,2.6,69.85000000000001,992,179,6.7 +2008,5,20,12,30,17.900000000000002,0.63,0.221,0.66,181,789,877,7,12.700000000000001,51,0,0,51,27.96,0.16,2.6,71.41,992,178,6.5 +2008,5,20,13,30,17.3,0.65,0.224,0.66,173,754,774,6,12.8,82,0,0,83,37.160000000000004,0.16,2.7,75,992,178,6.2 +2008,5,20,14,30,16.6,0.68,0.20800000000000002,0.66,152,712,631,7,13.100000000000001,270,26,0,288,47.78,0.16,2.8000000000000003,79.61,992,175,5.9 +2008,5,20,15,30,16,0.73,0.213,0.66,134,623,456,7,13.4,234,118,0,295,58.870000000000005,0.16,2.8000000000000003,84.58,993,170,5.4 +2008,5,20,16,30,15.700000000000001,0.73,0.233,0.66,110,459,267,7,13.9,69,2,0,69,69.96000000000001,0.16,2.9000000000000004,89.15,992,168,4.7 +2008,5,20,17,30,15.600000000000001,0.71,0.254,0.66,64,198,96,7,14.3,3,0,0,3,80.71000000000001,0.16,3,91.79,993,175,4.2 +2008,5,20,18,30,15.600000000000001,0.74,0.298,0.66,0,0,0,7,14.3,0,0,0,0,91.01,0.16,3,92.01,993,183,4 +2008,5,20,19,30,15.3,0.73,0.311,0.66,0,0,0,6,14.3,0,0,0,0,100.27,0.16,3,93.5,993,185,4.1000000000000005 +2008,5,20,20,30,15.100000000000001,0.72,0.352,0.66,0,0,0,6,14.100000000000001,0,0,0,0,108.11,0.16,3,93.8,993,185,4 +2008,5,20,21,30,15.200000000000001,0.73,0.417,0.66,0,0,0,7,14.200000000000001,0,0,0,0,113.99000000000001,0.16,3.1,93.58,993,189,3.6 +2008,5,20,22,30,15.5,0.72,0.417,0.66,0,0,0,7,14.5,0,0,0,0,117.32000000000001,0.16,3.1,93.5,993,200,3.3000000000000003 +2008,5,20,23,30,15.5,0.7000000000000001,0.377,0.66,0,0,0,7,14.600000000000001,0,0,0,0,117.67,0.16,3.1,94.38,993,211,3.3000000000000003 +2008,5,21,0,30,15.5,0.7000000000000001,0.35000000000000003,0.66,0,0,0,7,14.600000000000001,0,0,0,0,114.98,0.16,3,94.48,993,216,3.3000000000000003 +2008,5,21,1,30,15.4,0.67,0.312,0.66,0,0,0,6,14.5,0,0,0,0,109.62,0.16,3,94.67,993,217,3.3000000000000003 +2008,5,21,2,30,15.4,0.64,0.298,0.66,0,0,0,7,14.5,0,0,0,0,102.17,0.16,3,94.42,993,216,3.1 +2008,5,21,3,30,15.4,0.66,0.32,0.66,0,0,0,6,14.5,0,0,0,0,93.18,0.16,3,94.45,993,214,2.9000000000000004 +2008,5,21,4,30,15.8,0.64,0.312,0.66,50,95,61,7,14.700000000000001,21,0,7,21,83.04,0.16,3,92.94,994,214,3.1 +2008,5,21,5,30,16.3,0.61,0.298,0.66,114,347,219,8,15,5,0,0,5,72.4,0.16,3,92.13,994,212,3.3000000000000003 +2008,5,21,6,30,16.900000000000002,0.66,0.31,0.66,157,507,401,3,15.100000000000001,258,36,0,275,61.35,0.16,3,89.07000000000001,995,208,3.3000000000000003 +2008,5,21,7,30,17.5,0.67,0.309,0.66,185,614,578,3,14.9,326,43,0,353,50.22,0.16,2.9000000000000004,84.92,995,201,3.4000000000000004 +2008,5,21,8,30,17.900000000000002,0.67,0.299,0.66,200,687,731,3,14.600000000000001,102,0,0,102,39.42,0.16,2.9000000000000004,80.99,996,194,3.5 +2008,5,21,9,30,18.2,0.71,0.303,0.66,212,725,842,4,14.3,162,0,0,162,29.73,0.16,2.9000000000000004,77.92,996,192,3.6 +2008,5,21,10,30,18.5,0.72,0.295,0.66,214,749,905,4,14.100000000000001,435,19,0,452,22.95,0.16,2.9000000000000004,75.43,996,196,3.5 +2008,5,21,11,30,18.7,0.74,0.277,0.66,207,763,914,4,14,172,0,0,172,22.11,0.16,2.9000000000000004,74.18,997,206,3.3000000000000003 +2008,5,21,12,30,18.7,0.8200000000000001,0.448,0.66,268,650,843,3,13.9,269,0,0,269,27.79,0.16,2.9000000000000004,73.83,997,221,3.2 +2008,5,21,13,30,18.7,0.88,0.431,0.66,247,625,746,2,14,405,46,0,442,37.01,0.16,2.9000000000000004,73.98,997,239,3.2 +2008,5,21,14,30,18.5,0.93,0.384,0.66,209,595,610,3,14,285,3,0,287,47.64,0.16,2.9000000000000004,75.10000000000001,998,253,3.4000000000000004 +2008,5,21,15,30,18.400000000000002,0.98,0.34900000000000003,0.66,170,526,443,4,14.100000000000001,32,0,0,32,58.730000000000004,0.16,2.9000000000000004,76.24,998,260,3.5 +2008,5,21,16,30,18,0.99,0.301,0.66,121,418,265,7,14.4,81,2,0,82,69.82000000000001,0.16,2.9000000000000004,79.62,998,261,3.1 +2008,5,21,17,30,17,0.9400000000000001,0.26,0.66,64,216,99,5,15,4,0,0,4,80.57000000000001,0.16,2.9000000000000004,87.93,999,257,2.4000000000000004 +2008,5,21,18,30,16.1,0.87,0.244,0.66,0,0,0,4,15.100000000000001,0,0,0,0,90.86,0.16,2.8000000000000003,93.69,999,254,1.9000000000000001 +2008,5,21,19,30,15.600000000000001,0.77,0.225,0.66,0,0,0,3,15.200000000000001,0,0,0,0,100.10000000000001,0.16,2.8000000000000003,97.37,1000,252,1.8 +2008,5,21,20,30,15.4,0.67,0.20800000000000002,0.66,0,0,0,3,15.3,0,0,0,0,107.93,0.16,2.8000000000000003,99.4,1000,253,1.7000000000000002 +2008,5,21,21,30,15.100000000000001,0.65,0.215,0.66,0,0,0,0,15.100000000000001,0,0,0,0,113.8,0.16,2.8000000000000003,100,1000,257,1.5 +2008,5,21,22,30,14.9,0.65,0.201,0.66,0,0,0,4,14.9,0,0,0,0,117.12,0.16,2.7,100,1000,263,1.3 +2008,5,21,23,30,14.700000000000001,0.6900000000000001,0.177,0.66,0,0,0,3,14.700000000000001,0,0,0,0,117.47,0.16,2.7,100,1000,269,1.2000000000000002 +2008,5,22,0,30,14.700000000000001,0.77,0.164,0.66,0,0,0,0,14.700000000000001,0,0,0,0,114.8,0.16,2.6,100,1000,276,1.2000000000000002 +2008,5,22,1,30,14.700000000000001,0.81,0.15,0.66,0,0,0,0,14.600000000000001,0,0,0,0,109.46000000000001,0.16,2.5,99.21000000000001,1000,283,1 +2008,5,22,2,30,14.700000000000001,0.8,0.146,0.66,0,0,0,0,14.4,0,0,0,0,102.02,0.16,2.4000000000000004,98.03,1000,288,0.8 +2008,5,22,3,30,15,0.8,0.154,0.66,0,0,0,3,14.3,0,0,0,0,93.05,0.16,2.4000000000000004,95.34,1001,288,0.7000000000000001 +2008,5,22,4,30,16,0.8,0.155,0.66,43,236,72,4,14.4,19,0,7,19,82.92,0.16,2.3000000000000003,90.26,1001,280,0.7000000000000001 +2008,5,22,5,30,17.5,0.81,0.14400000000000002,0.66,81,529,242,7,14.9,18,0,0,18,72.29,0.16,2.3000000000000003,84.88,1001,272,1.1 +2008,5,22,6,30,18.7,0.8300000000000001,0.14,0.66,103,684,432,3,14.5,193,7,7,196,61.25,0.16,2.3000000000000003,76.79,1002,269,1.6 +2008,5,22,7,30,19.700000000000003,0.85,0.14400000000000002,0.66,121,770,615,2,14.200000000000001,363,162,0,467,50.11,0.16,2.2,70.46000000000001,1002,265,1.9000000000000001 +2008,5,22,8,30,20.3,0.87,0.148,0.66,135,820,770,3,13.600000000000001,292,1,0,293,39.300000000000004,0.16,2.2,65.21000000000001,1002,260,2.2 +2008,5,22,9,30,20.8,0.9500000000000001,0.182,0.66,157,830,879,8,13,412,130,0,525,29.580000000000002,0.16,2.1,60.910000000000004,1002,259,2.5 +2008,5,22,10,30,21.200000000000003,1,0.188,0.66,164,843,941,7,12.700000000000001,349,12,0,361,22.76,0.16,2.1,58.47,1002,259,2.8000000000000003 +2008,5,22,11,30,21.3,1,0.17300000000000001,0.66,157,855,950,7,12.4,452,111,0,555,21.92,0.16,2.1,57.02,1002,258,3.1 +2008,5,22,12,30,21.3,1.02,0.194,0.66,163,828,897,2,12.200000000000001,497,162,0,640,27.62,0.16,2.1,56.230000000000004,1002,258,3.3000000000000003 +2008,5,22,13,30,21.3,1.02,0.186,0.66,152,803,795,3,12.100000000000001,394,46,0,430,36.86,0.16,2.2,55.69,1002,258,3.3000000000000003 +2008,5,22,14,30,21.200000000000003,0.97,0.17500000000000002,0.66,136,761,650,0,11.9,136,761,0,650,47.51,0.16,2.2,55.28,1002,259,3.2 +2008,5,22,15,30,20.8,0.92,0.176,0.66,120,680,475,0,11.700000000000001,120,680,0,475,58.6,0.16,2.1,56.02,1003,259,3.1 +2008,5,22,16,30,19.8,0.9,0.17400000000000002,0.66,96,547,285,0,11.700000000000001,96,547,0,285,69.69,0.16,2.1,59.46,1003,259,2.6 +2008,5,22,17,30,18,0.9,0.165,0.66,57,319,110,0,12.8,57,319,0,110,80.43,0.16,2,71.71000000000001,1003,256,1.8 +2008,5,22,18,30,16.3,0.92,0.17,0.66,0,0,0,0,13.700000000000001,0,0,0,0,90.13,0.16,2,84.8,1004,253,1.3 +2008,5,22,19,30,15.5,0.93,0.171,0.66,0,0,0,0,13.600000000000001,0,0,0,0,99.93,0.16,1.9000000000000001,88.65,1004,251,1.2000000000000002 +2008,5,22,20,30,15.3,0.93,0.168,0.66,0,0,0,0,13.700000000000001,0,0,0,0,107.75,0.16,1.9000000000000001,90.07000000000001,1004,249,1 +2008,5,22,21,30,15.3,0.93,0.167,0.66,0,0,0,0,14,0,0,0,0,113.61,0.16,1.8,91.93,1004,233,0.8 +2008,5,22,22,30,15.100000000000001,0.93,0.164,0.66,0,0,0,0,14.3,0,0,0,0,116.93,0.16,1.8,94.82000000000001,1004,187,0.6000000000000001 +2008,5,22,23,30,14.4,0.92,0.163,0.66,0,0,0,0,14.4,0,0,0,0,117.28,0.16,1.8,99.85000000000001,1004,142,0.7000000000000001 +2008,5,23,0,30,13.700000000000001,0.92,0.166,0.66,0,0,0,0,13.700000000000001,0,0,0,0,114.62,0.16,1.8,100,1003,131,1 +2008,5,23,1,30,13.100000000000001,0.92,0.17,0.66,0,0,0,1,13.100000000000001,0,0,0,0,109.29,0.16,1.9000000000000001,100,1003,130,1.2000000000000002 +2008,5,23,2,30,12.600000000000001,0.9400000000000001,0.17400000000000002,0.66,0,0,0,5,12.600000000000001,0,0,0,0,101.87,0.16,2,100,1003,129,1.3 +2008,5,23,3,30,12.9,0.97,0.177,0.66,0,0,0,0,12.9,0,0,0,0,92.92,0.16,2.1,100,1003,126,1.4000000000000001 +2008,5,23,4,30,14.700000000000001,1,0.18,0.66,46,228,74,3,13.100000000000001,36,0,7,36,82.8,0.16,2.3000000000000003,89.88,1003,126,2 +2008,5,23,5,30,17.1,1.02,0.184,0.66,89,491,239,5,13.100000000000001,102,1,7,102,72.19,0.16,2.5,77.43,1004,143,2.5 +2008,5,23,6,30,18.8,1.05,0.189,0.66,118,638,425,4,12.700000000000001,88,0,0,88,61.14,0.16,2.6,67.6,1004,170,2.6 +2008,5,23,7,30,19.700000000000003,1.07,0.20700000000000002,0.66,144,711,600,4,12.600000000000001,104,0,0,104,50.01,0.16,2.8000000000000003,63.550000000000004,1004,187,2.8000000000000003 +2008,5,23,8,30,20,1.07,0.23800000000000002,0.66,170,746,748,8,12.9,271,11,0,280,39.19,0.16,2.8000000000000003,63.58,1004,193,2.9000000000000004 +2008,5,23,9,30,20.200000000000003,1.07,0.267,0.66,192,762,855,3,13,485,139,0,607,29.45,0.16,2.8000000000000003,63.29,1004,195,2.9000000000000004 +2008,5,23,10,30,20.400000000000002,1.08,0.267,0.66,197,780,917,0,12.8,197,780,0,917,22.59,0.16,2.8000000000000003,61.800000000000004,1004,196,2.9000000000000004 +2008,5,23,11,30,20.900000000000002,1.07,0.23,0.66,181,807,931,3,12.600000000000001,477,89,0,559,21.73,0.16,2.7,59.160000000000004,1004,198,2.7 +2008,5,23,12,30,21.6,1.05,0.209,0.66,169,811,889,0,12.600000000000001,169,811,0,889,27.45,0.16,2.5,56.38,1004,201,2.5 +2008,5,23,13,30,22.1,1.03,0.187,0.66,152,799,793,3,12.3,451,169,0,586,36.72,0.16,2.4000000000000004,53.84,1003,205,2.3000000000000003 +2008,5,23,14,30,22,1,0.165,0.66,131,769,652,0,12,131,769,0,652,47.37,0.16,2.3000000000000003,53.08,1003,207,2.2 +2008,5,23,15,30,21.6,0.99,0.159,0.66,114,696,477,3,11.8,297,70,0,333,58.47,0.16,2.3000000000000003,53.61,1003,204,2.1 +2008,5,23,16,30,20.5,0.98,0.161,0.66,92,563,288,3,11.8,185,167,7,243,69.55,0.16,2.3000000000000003,57.32,1003,196,1.9000000000000001 +2008,5,23,17,30,18.6,0.97,0.168,0.66,57,321,111,0,13.4,57,321,0,111,80.29,0.16,2.2,71.68,1003,189,1.6 +2008,5,23,18,30,16.900000000000002,0.96,0.178,0.66,0,0,0,0,14.200000000000001,0,0,0,0,90,0.16,2.3000000000000003,84.39,1003,183,1.4000000000000001 +2008,5,23,19,30,16,0.9500000000000001,0.186,0.66,0,0,0,1,14.100000000000001,0,0,0,0,99.77,0.16,2.3000000000000003,88.76,1004,170,1.3 +2008,5,23,20,30,15.3,0.9400000000000001,0.183,0.66,0,0,0,0,14.100000000000001,0,0,0,0,107.58,0.16,2.3000000000000003,92.76,1004,154,1.3 +2008,5,23,21,30,14.8,0.92,0.18,0.66,0,0,0,0,14,0,0,0,0,113.43,0.16,2.3000000000000003,95.12,1004,141,1.4000000000000001 +2008,5,23,22,30,14.4,0.93,0.184,0.66,0,0,0,0,13.8,0,0,0,0,116.74000000000001,0.16,2.3000000000000003,96.33,1004,132,1.4000000000000001 +2008,5,23,23,30,14.200000000000001,0.9400000000000001,0.19,0.66,0,0,0,3,13.5,0,0,0,0,117.10000000000001,0.16,2.3000000000000003,95.41,1004,128,1.5 +2008,5,24,0,30,14.100000000000001,0.96,0.193,0.66,0,0,0,0,13.100000000000001,0,0,0,0,114.44,0.16,2.3000000000000003,93.5,1004,126,1.6 +2008,5,24,1,30,13.8,0.98,0.184,0.66,0,0,0,0,12.600000000000001,0,0,0,0,109.14,0.16,2.3000000000000003,92.72,1003,125,1.7000000000000002 +2008,5,24,2,30,13.5,0.99,0.167,0.66,0,0,0,0,12.200000000000001,0,0,0,0,101.73,0.16,2.3000000000000003,91.91,1003,124,1.7000000000000002 +2008,5,24,3,30,13.9,1,0.157,0.66,0,0,0,1,11.8,0,0,0,0,92.8,0.16,2.2,87.41,1003,121,1.9000000000000001 +2008,5,24,4,30,15.8,1.01,0.147,0.66,43,270,78,0,12.200000000000001,43,270,0,78,82.69,0.16,2.2,79.4,1003,120,2.6 +2008,5,24,5,30,18.2,1.02,0.14100000000000001,0.66,80,550,249,0,12.4,80,550,0,249,72.09,0.16,2.1,68.76,1003,128,3.4000000000000004 +2008,5,24,6,30,20.200000000000003,1.05,0.14300000000000002,0.66,103,694,439,0,12.100000000000001,103,694,0,439,61.050000000000004,0.16,2.1,59.67,1004,144,3.5 +2008,5,24,7,30,21.8,1.06,0.15,0.66,121,771,618,0,11.600000000000001,121,771,0,618,49.910000000000004,0.16,2.2,52.46,1004,161,3.5 +2008,5,24,8,30,23,1.08,0.156,0.66,136,819,772,0,11.700000000000001,136,819,0,772,39.08,0.16,2.2,48.85,1004,179,3.6 +2008,5,24,9,30,23.6,1.03,0.176,0.66,153,833,879,0,11.9,153,833,0,879,29.32,0.16,2.3000000000000003,47.84,1004,191,3.7 +2008,5,24,10,30,24,1,0.179,0.66,158,846,940,7,12,277,632,0,861,22.42,0.16,2.3000000000000003,47.04,1005,196,3.5 +2008,5,24,11,30,24.1,0.84,0.187,0.66,163,837,941,0,12.100000000000001,163,837,0,941,21.54,0.16,2.4000000000000004,46.89,1004,196,3.2 +2008,5,24,12,30,23.5,0.56,0.25,0.66,193,771,878,7,11.9,351,490,0,786,27.29,0.16,2.4000000000000004,48.03,1004,196,3 +2008,5,24,13,30,22.8,0.47000000000000003,0.267,0.66,193,722,773,7,11.8,325,476,0,707,36.58,0.16,2.4000000000000004,49.85,1004,196,2.9000000000000004 +2008,5,24,14,30,22.200000000000003,0.42,0.28800000000000003,0.66,187,646,626,6,12,340,121,0,423,47.24,0.16,2.4000000000000004,52.42,1004,197,2.8000000000000003 +2008,5,24,15,30,21.700000000000003,0.4,0.309,0.66,170,534,450,7,12.4,218,22,0,230,58.34,0.16,2.4000000000000004,55.36,1004,198,2.7 +2008,5,24,16,30,20.700000000000003,0.43,0.321,0.66,133,373,264,7,12.8,126,11,0,130,69.42,0.16,2.6,60.74,1004,196,2 +2008,5,24,17,30,19.3,0.49,0.319,0.66,72,151,98,7,14.600000000000001,47,1,0,47,80.16,0.16,2.8000000000000003,74.26,1004,177,1.2000000000000002 +2008,5,24,18,30,18.3,0.46,0.353,0.66,0,0,0,6,15.3,0,0,7,0,89.88,0.16,2.8000000000000003,82.84,1004,148,1 +2008,5,24,19,30,17.8,0.4,0.41400000000000003,0.66,0,0,0,7,14.700000000000001,0,0,0,0,99.62,0.16,2.8000000000000003,82.04,1004,131,1.1 +2008,5,24,20,30,17.5,0.37,0.429,0.66,0,0,0,6,14.4,0,0,0,0,107.41,0.16,2.8000000000000003,82.09,1005,128,1.2000000000000002 +2008,5,24,21,30,17.400000000000002,0.38,0.398,0.66,0,0,0,7,13.9,0,0,0,0,113.25,0.16,2.8000000000000003,79.69,1005,129,1.2000000000000002 +2008,5,24,22,30,17.400000000000002,0.42,0.382,0.66,0,0,0,8,13.4,0,0,0,0,116.56,0.16,2.8000000000000003,77.25,1005,126,1.1 +2008,5,24,23,30,17.3,0.44,0.386,0.66,0,0,0,0,13.100000000000001,0,0,0,0,116.92,0.16,2.8000000000000003,76.4,1005,121,1.1 +2008,5,25,0,30,17.2,0.42,0.387,0.66,0,0,0,0,12.600000000000001,0,0,0,0,114.28,0.16,2.9000000000000004,74.4,1005,117,1.1 +2008,5,25,1,30,17.1,0.4,0.401,0.66,0,0,0,0,11.700000000000001,0,0,0,0,108.99000000000001,0.16,2.9000000000000004,70.52,1005,110,1.1 +2008,5,25,2,30,17,0.4,0.403,0.66,0,0,0,1,11.100000000000001,0,0,0,0,101.60000000000001,0.16,2.9000000000000004,68.4,1005,100,1.1 +2008,5,25,3,30,16.900000000000002,0.4,0.379,0.66,0,0,0,3,11.200000000000001,0,0,0,0,92.68,0.16,2.8000000000000003,69.11,1005,77,1.2000000000000002 +2008,5,25,4,30,16.7,0.35000000000000003,0.343,0.66,53,72,62,0,11.8,53,72,0,62,82.59,0.16,2.7,73.01,1005,58,1.5 +2008,5,25,5,30,17.3,0.33,0.326,0.66,123,314,221,0,12.200000000000001,123,314,0,221,71.99,0.16,2.6,72.21000000000001,1005,59,1.8 +2008,5,25,6,30,19.200000000000003,0.38,0.322,0.66,166,489,403,0,12.5,166,489,0,403,60.96,0.16,2.6,65.32000000000001,1005,67,2.1 +2008,5,25,7,30,21.8,0.39,0.31,0.66,190,606,581,7,11.100000000000001,297,383,0,544,49.82,0.16,2.6,50.51,1006,89,2.1 +2008,5,25,8,30,24.200000000000003,0.39,0.318,0.66,213,668,732,8,9.8,332,463,0,691,38.980000000000004,0.16,2.5,40.25,1006,122,2 +2008,5,25,9,30,25.900000000000002,0.59,0.241,0.66,187,771,860,0,9.9,187,771,0,860,29.19,0.16,2.5,36.52,1005,151,2.2 +2008,5,25,10,30,26.8,0.51,0.259,0.66,202,773,917,0,10.200000000000001,202,773,0,917,22.26,0.16,2.5,35.35,1005,169,2.6 +2008,5,25,11,30,27.200000000000003,0.45,0.29,0.66,218,750,916,0,10.5,218,750,0,916,21.36,0.16,2.6,35.160000000000004,1005,175,2.9000000000000004 +2008,5,25,12,30,27.3,0.48,0.275,0.66,206,747,870,0,10.700000000000001,206,747,0,870,27.13,0.16,2.6,35.36,1005,173,3.1 +2008,5,25,13,30,27,0.43,0.294,0.66,205,698,767,1,10.8,205,698,0,767,36.44,0.16,2.6,36.28,1005,171,3.2 +2008,5,25,14,30,26.400000000000002,0.36,0.316,0.66,199,619,620,6,10.9,340,207,0,481,47.11,0.16,2.6,37.86,1004,170,3.1 +2008,5,25,15,30,25.400000000000002,0.33,0.324,0.66,176,516,448,8,11.5,276,219,0,392,58.22,0.16,2.5,41.72,1004,170,2.7 +2008,5,25,16,30,23.8,0.34,0.311,0.66,134,379,268,7,13.100000000000001,191,85,0,221,69.3,0.16,2.4000000000000004,51.04,1004,170,1.9000000000000001 +2008,5,25,17,30,21.8,0.4,0.295,0.66,72,167,101,8,15.8,72,167,5,101,80.02,0.16,2.3000000000000003,68.71000000000001,1005,164,1.5 +2008,5,25,18,30,20.400000000000002,0.49,0.28600000000000003,0.66,0,0,0,1,14.9,0,0,0,0,89.77,0.16,2.2,70.54,1005,150,1.4000000000000001 +2008,5,25,19,30,19.700000000000003,0.5700000000000001,0.274,0.66,0,0,0,3,13.8,0,0,0,0,99.46000000000001,0.16,2.1,68.9,1005,131,1.5 +2008,5,25,20,30,19.200000000000003,0.61,0.257,0.66,0,0,0,8,13.200000000000001,0,0,0,0,107.25,0.16,2,68.32000000000001,1005,117,1.5 +2008,5,25,21,30,18.900000000000002,0.6,0.245,0.66,0,0,0,3,12.8,0,0,0,0,113.08,0.16,2,67.92,1005,112,1.6 +2008,5,25,22,30,18.7,0.6,0.23900000000000002,0.66,0,0,0,0,12.600000000000001,0,0,0,0,116.38,0.16,1.9000000000000001,67.74,1005,115,1.6 +2008,5,25,23,30,18.400000000000002,0.6,0.23600000000000002,0.66,0,0,0,0,12.4,0,0,0,0,116.74000000000001,0.16,1.9000000000000001,68.2,1005,121,1.7000000000000002 +2008,5,26,0,30,18,0.62,0.23500000000000001,0.66,0,0,0,0,12.4,0,0,0,0,114.12,0.16,1.8,69.58,1005,128,1.8 +2008,5,26,1,30,17.6,0.65,0.23600000000000002,0.66,0,0,0,0,12.3,0,0,0,0,108.84,0.16,1.8,71.29,1005,132,1.8 +2008,5,26,2,30,17.3,0.68,0.23800000000000002,0.66,0,0,0,1,12.4,0,0,0,0,101.47,0.16,1.8,72.77,1005,133,1.9000000000000001 +2008,5,26,3,30,17.6,0.7000000000000001,0.24,0.66,0,0,0,7,12.4,0,0,0,0,92.57000000000001,0.16,1.8,71.36,1005,129,1.8 +2008,5,26,4,30,19.6,0.71,0.23800000000000002,0.66,53,170,75,0,13.4,53,170,0,75,82.49,0.16,1.9000000000000001,67.43,1006,121,1.9000000000000001 +2008,5,26,5,30,22.6,0.6900000000000001,0.24,0.66,107,432,241,1,15.200000000000001,107,432,0,241,71.9,0.16,1.9000000000000001,63.08,1006,120,2.4000000000000004 +2008,5,26,6,30,24.8,0.68,0.248,0.66,143,585,427,0,13.4,143,585,0,427,60.870000000000005,0.16,1.9000000000000001,49.11,1006,135,2.8000000000000003 +2008,5,26,7,30,26.400000000000002,0.7000000000000001,0.258,0.66,169,674,605,7,11.8,276,418,0,546,49.730000000000004,0.16,2,40.2,1006,154,2.8000000000000003 +2008,5,26,8,30,27.6,0.73,0.267,0.66,188,729,755,7,11.5,329,378,0,624,38.88,0.16,2.1,36.730000000000004,1006,165,2.8000000000000003 +2008,5,26,9,30,28.6,0.81,0.259,0.66,195,774,871,7,11.700000000000001,325,519,0,778,29.07,0.16,2.1,35.09,1006,171,2.9000000000000004 +2008,5,26,10,30,29.400000000000002,0.81,0.267,0.66,203,784,930,7,12,345,501,0,810,22.1,0.16,2.2,34.15,1005,174,3.1 +2008,5,26,11,30,29.900000000000002,0.79,0.275,0.66,208,781,936,8,12.200000000000001,331,548,0,842,21.19,0.16,2.2,33.72,1005,173,3.4000000000000004 +2008,5,26,12,30,30.1,0.88,0.24,0.66,185,793,891,0,12.4,185,793,0,891,26.97,0.16,2.2,33.75,1005,170,3.6 +2008,5,26,13,30,29.900000000000002,0.81,0.23700000000000002,0.66,177,764,793,0,12.4,177,764,0,793,36.300000000000004,0.16,2.1,34.19,1004,167,3.8000000000000003 +2008,5,26,14,30,29.5,0.74,0.229,0.66,161,717,651,0,12.4,161,717,0,651,46.99,0.16,2,34.89,1004,164,3.8000000000000003 +2008,5,26,15,30,28.6,0.64,0.233,0.66,143,623,473,0,12.5,143,623,0,473,58.09,0.16,2,37.09,1003,163,3.1 +2008,5,26,16,30,26.8,0.58,0.231,0.66,114,482,286,0,13.700000000000001,114,482,0,286,69.17,0.16,1.9000000000000001,44.35,1003,160,2 +2008,5,26,17,30,24.5,0.54,0.231,0.66,69,241,111,0,17.6,69,241,0,111,79.89,0.16,1.8,65.63,1003,153,1.3 +2008,5,26,18,30,23.1,0.5,0.233,0.66,0,0,0,0,16,0,0,0,0,89.65,0.16,1.8,64.23,1003,137,1.4000000000000001 +2008,5,26,19,30,22.3,0.48,0.23500000000000001,0.66,0,0,0,0,14.8,0,0,0,0,99.31,0.16,1.7000000000000002,62.43,1003,121,1.5 +2008,5,26,20,30,21.6,0.47000000000000003,0.233,0.66,0,0,0,0,14.3,0,0,0,0,107.08,0.16,1.8,63.36,1003,112,1.5 +2008,5,26,21,30,20.900000000000002,0.48,0.226,0.66,0,0,0,0,14,0,0,0,0,112.91,0.16,1.8,64.81,1003,112,1.6 +2008,5,26,22,30,20.400000000000002,0.5,0.215,0.66,0,0,0,0,13.8,0,0,0,0,116.21000000000001,0.16,1.9000000000000001,65.93,1003,116,1.7000000000000002 +2008,5,26,23,30,19.8,0.53,0.2,0.66,0,0,0,0,13.600000000000001,0,0,0,0,116.58,0.16,1.9000000000000001,67.67,1003,120,1.9000000000000001 +2008,5,27,0,30,19.400000000000002,0.54,0.186,0.66,0,0,0,0,13.5,0,0,0,0,113.96000000000001,0.16,2,68.59,1002,120,2.1 +2008,5,27,1,30,19.1,0.53,0.178,0.66,0,0,0,0,13.3,0,0,0,0,108.7,0.16,1.9000000000000001,69.18,1002,117,2.3000000000000003 +2008,5,27,2,30,18.900000000000002,0.51,0.17500000000000002,0.66,0,0,0,0,13.100000000000001,0,0,0,0,101.35000000000001,0.16,1.9000000000000001,69.16,1002,114,2.5 +2008,5,27,3,30,19.3,0.48,0.176,0.66,0,0,0,0,12.9,0,0,0,0,92.47,0.16,1.8,66.28,1003,111,2.6 +2008,5,27,4,30,21.3,0.48,0.17400000000000002,0.66,50,217,78,0,13.3,50,217,0,78,82.4,0.16,1.7000000000000002,60.410000000000004,1003,111,2.9000000000000004 +2008,5,27,5,30,24.1,0.5,0.17,0.66,92,502,249,0,14.200000000000001,92,502,0,249,71.82000000000001,0.16,1.7000000000000002,53.95,1003,111,3.5 +2008,5,27,6,30,26.3,0.5700000000000001,0.161,0.66,116,673,444,0,13.9,116,673,0,444,60.79,0.16,1.6,46.29,1003,121,4.3 +2008,5,27,7,30,27.900000000000002,0.64,0.153,0.66,129,773,629,0,13.200000000000001,129,773,0,629,49.65,0.16,1.6,40.47,1003,135,5.1000000000000005 +2008,5,27,8,30,29.1,0.71,0.147,0.66,137,836,789,0,12.8,137,836,0,789,38.79,0.16,1.5,36.72,1003,142,5.7 +2008,5,27,9,30,30.1,0.92,0.123,0.66,130,890,909,0,12.5,130,890,0,909,28.96,0.16,1.5,33.94,1003,145,6.1000000000000005 +2008,5,27,10,30,30.900000000000002,0.86,0.13,0.66,137,896,968,0,12.200000000000001,137,896,0,968,21.95,0.16,1.6,31.720000000000002,1002,146,6.300000000000001 +2008,5,27,11,30,31.3,0.77,0.14300000000000002,0.66,145,886,972,0,11.9,145,886,0,972,21.02,0.16,1.6,30.57,1002,146,6.5 +2008,5,27,12,30,31.3,0.62,0.176,0.66,160,843,912,0,11.9,160,843,0,912,26.82,0.16,1.7000000000000002,30.53,1001,147,6.7 +2008,5,27,13,30,30.900000000000002,0.54,0.212,0.66,170,781,801,0,12,170,781,0,801,36.17,0.16,1.8,31.36,1001,148,6.7 +2008,5,27,14,30,30,0.45,0.269,0.66,182,677,645,7,12.100000000000001,343,254,0,517,46.86,0.16,1.8,33.22,1001,148,6.2 +2008,5,27,15,30,28.5,0.38,0.326,0.66,178,531,460,1,12.700000000000001,178,531,0,460,57.97,0.16,1.9000000000000001,37.69,1001,148,5.1000000000000005 +2008,5,27,16,30,26.400000000000002,0.35000000000000003,0.34900000000000003,0.66,143,358,271,0,14.100000000000001,143,358,0,271,69.05,0.16,2,46.68,1001,145,3.8000000000000003 +2008,5,27,17,30,24,0.36,0.34900000000000003,0.66,77,137,102,0,15.100000000000001,77,137,0,102,79.77,0.16,2.1,57.660000000000004,1001,140,3.2 +2008,5,27,18,30,22.3,0.36,0.34900000000000003,0.66,0,0,0,0,14.600000000000001,0,0,0,0,89.53,0.16,2.1,61.800000000000004,1002,135,3.2 +2008,5,27,19,30,21.6,0.34,0.362,0.66,0,0,0,0,13.9,0,0,0,0,99.16,0.16,2.2,61.53,1002,132,3.4000000000000004 +2008,5,27,20,30,21.1,0.3,0.39,0.66,0,0,0,0,13.3,0,0,0,0,106.93,0.16,2.2,61.13,1003,132,3.5 +2008,5,27,21,30,20.400000000000002,0.27,0.417,0.66,0,0,0,8,13,0,0,0,0,112.74000000000001,0.16,2.3000000000000003,62.440000000000005,1003,132,3.3000000000000003 +2008,5,27,22,30,19.8,0.25,0.451,0.66,0,0,0,0,12.9,0,0,0,0,116.04,0.16,2.4000000000000004,64.35,1003,132,3 +2008,5,27,23,30,19.3,0.21,0.493,0.66,0,0,0,0,12.8,0,0,0,0,116.42,0.16,2.4000000000000004,65.87,1003,132,2.9000000000000004 +2008,5,28,0,30,18.8,0.18,0.539,0.66,0,0,0,0,12.8,0,0,0,0,113.81,0.15,2.4000000000000004,67.97,1003,131,2.6 +2008,5,28,1,30,18.400000000000002,0.15,0.586,0.66,0,0,0,0,12.8,0,0,0,0,108.57000000000001,0.15,2.3000000000000003,69.98,1003,129,2.5 +2008,5,28,2,30,18.1,0.12,0.646,0.66,0,0,0,0,12.700000000000001,0,0,0,0,101.24000000000001,0.15,2.2,70.72,1003,126,2.3000000000000003 +2008,5,28,3,30,18.400000000000002,0.1,0.715,0.66,0,0,0,0,12.5,0,0,0,0,92.37,0.15,2,68.39,1003,123,2.2 +2008,5,28,4,30,20,0.08,0.781,0.66,37,4,38,0,13,37,4,0,38,82.32000000000001,0.15,2,63.92,1003,122,2.3000000000000003 +2008,5,28,5,30,22.6,0.06,0.834,0.66,162,75,185,0,14,162,75,0,185,71.74,0.15,1.9000000000000001,58.4,1003,123,2.7 +2008,5,28,6,30,24.8,0.04,0.974,0.66,277,148,350,0,12.8,277,148,0,350,60.72,0.15,1.9000000000000001,47.17,1003,132,3.3000000000000003 +2008,5,28,7,30,26.700000000000003,0.04,0.977,0.66,355,240,510,8,12.600000000000001,355,240,5,510,49.58,0.15,2,41.62,1003,143,3.5 +2008,5,28,8,30,28.200000000000003,0.05,0.913,0.66,399,334,660,0,12.700000000000001,399,334,0,660,38.71,0.15,2.1,38.43,1003,151,3.5 +2008,5,28,9,30,29.400000000000002,0.05,0.9570000000000001,0.66,441,363,759,7,12.600000000000001,564,222,0,758,28.85,0.15,2.3000000000000003,35.59,1003,156,3.6 +2008,5,28,10,30,30.3,0.08,0.767,0.66,406,465,837,0,12.600000000000001,406,465,0,837,21.81,0.15,2.4000000000000004,33.7,1002,160,3.8000000000000003 +2008,5,28,11,30,30.700000000000003,0.11,0.662,0.66,377,517,861,0,12.600000000000001,377,517,0,861,20.86,0.15,2.5,33.1,1002,165,4.1000000000000005 +2008,5,28,12,30,30.700000000000003,0.13,0.5710000000000001,0.66,336,546,823,8,12.8,454,367,0,782,26.67,0.15,2.6,33.54,1002,169,4.4 +2008,5,28,13,30,30.3,0.13,0.584,0.66,322,499,725,1,12.9,322,499,0,725,36.04,0.15,2.6,34.36,1002,171,4.4 +2008,5,28,14,30,29.6,0.13,0.5760000000000001,0.66,289,436,588,0,12.9,289,436,0,588,46.74,0.15,2.6,35.92,1001,170,3.9000000000000004 +2008,5,28,15,30,28.700000000000003,0.13,0.591,0.66,246,327,420,0,13.100000000000001,246,327,0,420,57.85,0.15,2.6,38.31,1001,168,3.1 +2008,5,28,16,30,27.1,0.15,0.587,0.66,176,192,245,0,14.3,176,192,0,245,68.93,0.15,2.6,45.42,1001,164,1.9000000000000001 +2008,5,28,17,30,25.400000000000002,0.17,0.5740000000000001,0.66,77,44,85,7,18.2,77,44,5,85,79.64,0.15,2.6,64.53,1000,160,1.1 +2008,5,28,18,30,24.5,0.19,0.562,0.66,0,0,0,7,16.3,0,0,7,0,89.42,0.15,2.6,60.28,1000,158,0.9 +2008,5,28,19,30,22.900000000000002,0.22,0.5700000000000001,0.66,0,0,0,6,15.5,0,0,0,0,99.02,0.15,2.7,63.1,1002,189,1.1 +2008,5,28,20,30,21.5,0.28,0.637,0.66,0,0,0,6,16.5,0,0,0,0,106.78,0.15,2.7,73.34,1002,266,0.8 +2008,5,28,21,30,21,0.32,0.648,0.66,0,0,0,7,16.3,0,0,0,0,112.58,0.15,2.6,74.34,1002,177,1 +2008,5,28,22,30,20.5,0.35000000000000003,0.64,0.66,0,0,0,7,15.9,0,0,0,0,115.88,0.15,2.6,74.92,1001,51,1.8 +2008,5,28,23,30,20.400000000000002,0.4,0.678,0.66,0,0,0,7,15.4,0,0,0,0,116.26,0.15,2.6,72.99,1000,66,1.7000000000000002 +2008,5,29,0,30,20.900000000000002,0.47000000000000003,0.754,0.66,0,0,0,6,15.4,0,0,0,0,113.67,0.15,2.6,70.87,1000,85,1.4000000000000001 +2008,5,29,1,30,21.400000000000002,0.49,0.705,0.66,0,0,0,6,15.200000000000001,0,0,0,0,108.45,0.15,2.6,67.61,1000,108,1.4000000000000001 +2008,5,29,2,30,21.400000000000002,0.49,0.608,0.66,0,0,0,6,14.600000000000001,0,0,0,0,101.13,0.15,2.5,65.35,1000,124,1.5 +2008,5,29,3,30,21.5,0.55,0.5680000000000001,0.66,0,0,0,6,14.100000000000001,0,0,0,0,92.27,0.15,2.4000000000000004,62.940000000000005,999,125,1.5 +2008,5,29,4,30,22.400000000000002,0.53,0.504,0.66,55,45,61,6,14.4,21,0,7,21,82.24,0.15,2.3000000000000003,60.58,999,119,1.4000000000000001 +2008,5,29,5,30,23.700000000000003,0.5,0.466,0.66,143,244,220,7,16.400000000000002,163,28,0,172,71.67,0.15,2.3000000000000003,63.77,999,127,1.4000000000000001 +2008,5,29,6,30,24.900000000000002,0.49,0.466,0.66,201,401,398,6,16.6,162,6,0,165,60.65,0.15,2.4000000000000004,59.870000000000005,999,150,2.5 +2008,5,29,7,30,25.400000000000002,0.51,0.47400000000000003,0.66,241,504,568,6,13.4,31,0,0,31,49.51,0.15,2.6,47.44,1000,164,3.9000000000000004 +2008,5,29,8,30,25.6,0.52,0.511,0.66,278,551,708,6,13.8,61,0,0,61,38.63,0.15,2.9000000000000004,48.21,1000,164,4.3 +2008,5,29,9,30,25.700000000000003,0.49,0.669,0.66,352,511,800,6,14.700000000000001,153,0,0,153,28.75,0.15,3.2,50.74,1000,164,4.1000000000000005 +2008,5,29,10,30,24.700000000000003,0.43,0.963,0.66,450,409,830,6,15.100000000000001,89,0,0,89,21.68,0.15,3.5,55.15,1000,159,3.7 +2008,5,29,11,30,23.200000000000003,0.35000000000000003,1.296,0.66,529,304,813,6,15.5,41,0,0,41,20.7,0.15,3.6,62.1,1000,128,3.4000000000000004 +2008,5,29,12,30,22.900000000000002,0.44,0.76,0.66,380,473,803,6,15.9,424,18,0,440,26.53,0.15,3.4000000000000004,64.57000000000001,999,97,4.1000000000000005 +2008,5,29,13,30,24.200000000000003,0.37,0.732,0.66,354,441,711,0,15.8,354,441,0,711,35.92,0.15,3.2,59.47,998,101,5.1000000000000005 +2008,5,29,14,30,25.400000000000002,0.33,0.625,0.66,296,425,588,8,15.200000000000001,397,184,0,523,46.62,0.15,2.9000000000000004,53.35,997,126,6 +2008,5,29,15,30,24.8,0.34,0.502,0.66,224,394,434,0,15,224,394,0,434,57.74,0.15,2.8000000000000003,54.32,998,147,6.5 +2008,5,29,16,30,23,0.41000000000000003,0.4,0.66,151,321,267,3,15.3,72,0,0,72,68.81,0.15,2.7,62,998,155,6.1000000000000005 +2008,5,29,17,30,21,0.49,0.326,0.66,77,165,107,0,16,77,165,0,107,79.52,0.15,2.5,72.98,999,154,4.9 +2008,5,29,18,30,19.400000000000002,0.54,0.28600000000000003,0.66,0,0,0,0,16.6,0,0,0,0,89.3,0.15,2.4000000000000004,84.04,999,150,4 +2008,5,29,19,30,18.6,0.55,0.256,0.66,0,0,0,0,16.900000000000002,0,0,0,0,98.88,0.15,2.3000000000000003,90.01,1000,154,3.6 +2008,5,29,20,30,18,0.55,0.262,0.66,0,0,0,0,16.900000000000002,0,0,0,0,106.63,0.15,2.2,93.34,1000,170,3.3000000000000003 +2008,5,29,21,30,17.6,0.59,0.306,0.66,0,0,0,4,16.6,0,0,0,0,112.43,0.15,2.3000000000000003,93.73,1001,188,3 +2008,5,29,22,30,17.2,0.59,0.352,0.66,0,0,0,3,16.1,0,0,0,0,115.73,0.15,2.5,93.4,1001,200,2.8000000000000003 +2008,5,29,23,30,16.900000000000002,0.53,0.378,0.66,0,0,0,0,15.600000000000001,0,0,0,0,116.11,0.15,2.6,91.91,1001,207,2.7 +2008,5,30,0,30,16.7,0.51,0.38,0.66,0,0,0,3,15.100000000000001,0,0,0,0,113.54,0.15,2.7,90.55,1001,211,2.7 +2008,5,30,1,30,16.6,0.48,0.335,0.66,0,0,0,8,14.9,0,0,0,0,108.33,0.15,2.7,89.64,1002,215,2.7 +2008,5,30,2,30,16.3,0.44,0.29,0.66,0,0,0,4,14.600000000000001,0,0,0,0,101.02,0.15,2.7,89.45,1002,216,2.4000000000000004 +2008,5,30,3,30,16.400000000000002,0.41000000000000003,0.295,0.66,0,0,0,4,14.3,0,0,0,0,92.18,0.15,2.8000000000000003,87.16,1002,210,2.1 +2008,5,30,4,30,17,0.34,0.327,0.66,57,87,69,7,14.4,34,0,7,34,82.16,0.15,2.8000000000000003,84.44,1002,201,2.4000000000000004 +2008,5,30,5,30,17.900000000000002,0.27,0.362,0.66,131,286,221,7,14.3,146,19,0,152,71.60000000000001,0.15,2.8000000000000003,79.66,1003,195,3.1 +2008,5,30,6,30,19,0.25,0.365,0.66,180,446,399,3,14.3,289,72,0,325,60.59,0.15,2.8000000000000003,74.37,1003,192,3.8000000000000003 +2008,5,30,7,30,20.1,0.22,0.37,0.66,215,548,571,0,14.100000000000001,215,548,0,571,49.44,0.15,2.8000000000000003,68.59,1003,191,4.4 +2008,5,30,8,30,21,0.2,0.362,0.66,234,622,721,0,14,234,622,0,721,38.56,0.15,2.8000000000000003,64.46000000000001,1003,192,4.9 +2008,5,30,9,30,21.700000000000003,0.23,0.324,0.66,231,693,839,0,14.200000000000001,231,693,0,839,28.66,0.15,2.7,62.440000000000005,1004,195,5.2 +2008,5,30,10,30,22,0.25,0.303,0.66,228,730,906,0,14.3,228,730,0,906,21.55,0.15,2.6,61.7,1004,200,5.300000000000001 +2008,5,30,11,30,22.1,0.27,0.295,0.66,224,737,914,2,14.3,521,134,0,646,20.55,0.15,2.7,61.24,1004,204,5.2 +2008,5,30,12,30,22.1,0.39,0.258,0.66,199,753,874,1,14.200000000000001,199,753,0,874,26.39,0.15,2.7,60.870000000000005,1004,208,4.9 +2008,5,30,13,30,22.1,0.46,0.242,0.66,182,736,779,3,14.100000000000001,404,44,0,440,35.79,0.15,2.7,60.5,1004,211,4.5 +2008,5,30,14,30,21.900000000000002,0.51,0.227,0.66,163,697,642,3,14,390,178,0,513,46.51,0.15,2.7,60.71,1004,214,4 +2008,5,30,15,30,21.400000000000002,0.55,0.223,0.66,141,617,472,1,13.9,141,617,0,472,57.620000000000005,0.15,2.7,62.29,1005,216,3.5 +2008,5,30,16,30,20.6,0.5700000000000001,0.223,0.66,113,482,288,0,13.9,113,482,0,288,68.69,0.15,2.7,65.38,1005,217,2.9000000000000004 +2008,5,30,17,30,19.3,0.55,0.221,0.66,69,255,116,3,14.100000000000001,21,0,0,21,79.4,0.15,2.6,72.03,1005,211,1.9000000000000001 +2008,5,30,18,30,18,0.52,0.231,0.66,0,0,0,0,15.4,0,0,0,0,89.18,0.15,2.6,84.53,1006,201,1.3 +2008,5,30,19,30,17.2,0.49,0.23900000000000002,0.66,0,0,0,3,15.4,0,0,0,0,98.75,0.15,2.6,89.14,1006,191,1.2000000000000002 +2008,5,30,20,30,16.7,0.47000000000000003,0.246,0.66,0,0,0,0,15.3,0,0,0,0,106.49000000000001,0.15,2.5,91.18,1007,184,1.1 +2008,5,30,21,30,16.400000000000002,0.46,0.253,0.66,0,0,0,0,15.200000000000001,0,0,0,0,112.28,0.15,2.5,92.89,1007,175,1 +2008,5,30,22,30,16.1,0.45,0.257,0.66,0,0,0,3,15.3,0,0,0,0,115.58,0.15,2.5,95.05,1007,163,1 +2008,5,30,23,30,15.9,0.45,0.26,0.66,0,0,0,0,15.3,0,0,0,0,115.97,0.15,2.5,96.32000000000001,1007,150,1 +2008,5,31,0,30,15.700000000000001,0.46,0.261,0.66,0,0,0,0,15.200000000000001,0,0,0,0,113.41,0.15,2.5,97.10000000000001,1006,139,1 +2008,5,31,1,30,15.3,0.48,0.26,0.66,0,0,0,0,15.100000000000001,0,0,0,0,108.21000000000001,0.15,2.5,98.94,1006,128,1.1 +2008,5,31,2,30,14.9,0.51,0.253,0.66,0,0,0,0,14.9,0,0,0,0,100.93,0.15,2.5,100,1006,118,1.2000000000000002 +2008,5,31,3,30,15.3,0.55,0.23800000000000002,0.66,0,0,0,1,14.700000000000001,0,0,0,0,92.10000000000001,0.15,2.5,96.45,1007,113,1.3 +2008,5,31,4,30,17,0.59,0.22,0.66,53,181,78,0,14.8,53,181,0,78,82.09,0.15,2.4000000000000004,86.7,1007,118,1.7000000000000002 +2008,5,31,5,30,19.3,0.64,0.20500000000000002,0.66,98,460,244,0,14.600000000000001,98,460,0,244,71.54,0.15,2.4000000000000004,74.23,1007,144,1.7000000000000002 +2008,5,31,6,30,21.1,0.71,0.189,0.66,122,633,434,0,13.8,122,633,0,434,60.53,0.15,2.4000000000000004,63.120000000000005,1008,186,1.2000000000000002 +2008,5,31,7,30,22.6,0.74,0.186,0.66,139,728,613,0,13.700000000000001,139,728,0,613,49.38,0.15,2.4000000000000004,57.06,1008,224,1.3 +2008,5,31,8,30,23.700000000000003,0.77,0.186,0.66,152,784,765,7,13.8,307,420,0,636,38.49,0.15,2.4000000000000004,53.910000000000004,1008,247,1.6 +2008,5,31,9,30,24.6,0.5700000000000001,0.24,0.66,186,772,864,6,13.9,433,103,0,523,28.580000000000002,0.15,2.4000000000000004,51.24,1008,254,2.1 +2008,5,31,10,30,25,0.54,0.248,0.66,196,783,925,8,13.9,344,524,0,832,21.42,0.15,2.4000000000000004,50.02,1008,255,2.5 +2008,5,31,11,30,25,0.49,0.265,0.66,205,770,927,8,13.8,365,486,0,821,20.41,0.15,2.5,49.84,1007,257,2.8000000000000003 +2008,5,31,12,30,24.6,0.55,0.244,0.66,190,773,883,7,13.700000000000001,343,491,0,783,26.26,0.15,2.5,50.800000000000004,1007,261,2.8000000000000003 +2008,5,31,13,30,24.3,0.49,0.253,0.66,187,733,782,0,13.700000000000001,187,733,0,782,35.67,0.15,2.5,51.61,1007,267,2.5 +2008,5,31,14,30,24.1,0.39,0.276,0.66,183,654,634,0,13.600000000000001,183,654,0,634,46.4,0.15,2.6,51.980000000000004,1007,275,2.2 +2008,5,31,15,30,23.700000000000003,0.32,0.32,0.66,175,522,456,7,13.600000000000001,234,36,0,254,57.51,0.15,2.7,53.15,1007,282,1.9000000000000001 +2008,5,31,16,30,23,0.25,0.388,0.66,151,316,266,7,13.8,204,91,0,237,68.58,0.15,2.9000000000000004,56.230000000000004,1007,281,1.6 +2008,5,31,17,30,21.200000000000003,0.2,0.446,0.66,81,85,97,7,15.3,82,4,7,83,79.28,0.15,3,68.94,1007,272,1.3 +2008,5,31,18,30,19.5,0.17,0.523,0.66,0,0,0,8,16.3,0,0,7,0,89.07000000000001,0.15,3,81.74,1007,268,1.2000000000000002 +2008,5,31,19,30,18.7,0.16,0.617,0.66,0,0,0,3,15.9,0,0,0,0,98.62,0.15,3,83.87,1008,276,1.1 +2008,5,31,20,30,18.400000000000002,0.16,0.62,0.66,0,0,0,7,15.8,0,0,0,0,106.35000000000001,0.15,3,84.65,1008,310,0.8 +2008,5,31,21,30,18,0.19,0.519,0.66,0,0,0,7,15.4,0,0,0,0,112.14,0.15,2.9000000000000004,84.61,1008,178,0.9 +2008,5,31,22,30,17.8,0.24,0.432,0.66,0,0,0,0,15.100000000000001,0,0,0,0,115.44,0.15,2.8000000000000003,84.19,1007,28,1 +2008,5,31,23,30,17.6,0.26,0.397,0.66,0,0,0,0,14.9,0,0,0,0,115.84,0.15,2.8000000000000003,84.23,1007,41,1.1 +2008,6,1,0,30,17.400000000000002,0.27,0.374,0.62,0,0,0,0,14.600000000000001,0,0,0,0,113.29,0.16,2.8000000000000003,83.64,1007,52,1.2000000000000002 +2008,6,1,1,30,17.400000000000002,0.27,0.34,0.62,0,0,0,0,14.100000000000001,0,0,0,0,108.11,0.16,2.8000000000000003,80.81,1006,62,1.3 +2008,6,1,2,30,17.7,0.29,0.317,0.62,0,0,0,0,13.600000000000001,0,0,0,0,100.84,0.16,2.7,76.75,1006,72,1.2000000000000002 +2008,6,1,3,30,18.2,0.33,0.311,0.62,0,0,0,0,13.200000000000001,0,0,1,0,92.02,0.16,2.7,72.51,1006,81,1.1 +2008,6,1,4,30,19.8,0.35000000000000003,0.298,0.62,57,107,72,1,14.200000000000001,57,107,0,72,82.02,0.16,2.6,70.11,1006,85,1.1 +2008,6,1,5,30,22.200000000000003,0.38,0.28600000000000003,0.62,118,361,233,3,14.200000000000001,181,61,0,201,71.48,0.16,2.6,60.58,1007,72,0.9 +2008,6,1,6,30,24.400000000000002,0.42,0.27,0.62,151,538,417,0,12.700000000000001,151,538,0,417,60.47,0.16,2.7,48.06,1007,184,0.5 +2008,6,1,7,30,26.1,0.44,0.27,0.62,176,642,594,8,11.5,296,361,0,531,49.33,0.16,2.6,40.050000000000004,1006,292,0.6000000000000001 +2008,6,1,8,30,27.3,0.44,0.271,0.62,193,702,743,8,10.8,324,447,0,674,38.43,0.16,2.7,35.67,1006,259,0.8 +2008,6,1,9,30,28,0.36,0.326,0.62,230,699,844,1,10.9,230,699,0,844,28.5,0.16,2.7,34.44,1006,240,1.1 +2008,6,1,10,30,28.200000000000003,0.35000000000000003,0.34500000000000003,0.62,245,706,902,7,11.3,491,107,0,591,21.31,0.16,2.7,35.02,1006,235,1.5 +2008,6,1,11,30,28.1,0.33,0.365,0.62,254,693,904,7,11.700000000000001,470,301,0,753,20.27,0.16,2.8000000000000003,36.12,1005,236,1.8 +2008,6,1,12,30,27.700000000000003,0.34,0.377,0.62,254,671,856,7,12,442,309,0,719,26.13,0.16,2.8000000000000003,37.77,1005,237,2 +2008,6,1,13,30,27.200000000000003,0.35000000000000003,0.376,0.62,241,636,758,7,12.200000000000001,381,367,0,679,35.56,0.16,2.8000000000000003,39.410000000000004,1005,239,2 +2008,6,1,14,30,26.6,0.37,0.369,0.62,218,582,620,7,12.700000000000001,341,245,0,511,46.29,0.16,2.8000000000000003,42.050000000000004,1005,242,1.9000000000000001 +2008,6,1,15,30,26,0.39,0.354,0.62,185,500,454,7,13.200000000000001,272,123,0,338,57.4,0.16,2.8000000000000003,45.09,1004,245,1.8 +2008,6,1,16,30,24.900000000000002,0.39,0.336,0.62,140,371,277,7,13.700000000000001,196,81,0,226,68.47,0.16,2.7,49.800000000000004,1004,249,1.5 +2008,6,1,17,30,22.8,0.39,0.327,0.62,79,162,110,3,15.5,32,0,0,32,79.17,0.16,2.7,63.38,1004,260,1.1 +2008,6,1,18,30,21.200000000000003,0.39,0.331,0.62,3,0,3,1,16.8,3,0,0,3,88.97,0.16,2.7,75.83,1004,284,0.8 +2008,6,1,19,30,20.6,0.4,0.34600000000000003,0.62,0,0,0,1,16.1,0,0,0,0,98.49000000000001,0.16,2.8000000000000003,75.25,1004,314,0.8 +2008,6,1,20,30,20.3,0.41000000000000003,0.366,0.62,0,0,0,6,16,0,0,0,0,106.22,0.16,2.8000000000000003,76.37,1004,331,0.8 +2008,6,1,21,30,20.200000000000003,0.41000000000000003,0.389,0.62,0,0,0,7,15.9,0,0,0,0,112,0.16,2.9000000000000004,76.4,1004,332,0.8 +2008,6,1,22,30,20,0.41000000000000003,0.424,0.62,0,0,0,7,15.8,0,0,0,0,115.3,0.16,2.9000000000000004,76.76,1004,323,0.8 +2008,6,1,23,30,19.5,0.37,0.47600000000000003,0.62,0,0,0,8,15.600000000000001,0,0,0,0,115.71000000000001,0.16,3,78.32000000000001,1004,316,0.9 +2008,6,2,0,30,19.1,0.33,0.511,0.62,0,0,0,7,15.4,0,0,0,0,113.17,0.16,3.1,78.89,1004,314,1.1 +2008,6,2,1,30,18.7,0.31,0.561,0.62,0,0,0,3,15.3,0,0,0,0,108.01,0.16,3.2,80.76,1004,317,1.3 +2008,6,2,2,30,18.5,0.3,0.608,0.62,0,0,0,7,15.4,0,0,0,0,100.75,0.16,3.2,82.3,1005,336,1.6 +2008,6,2,3,30,18.5,0.28,0.639,0.62,0,0,0,4,15.200000000000001,0,0,0,0,91.95,0.16,3.2,80.93,1004,185,2.1 +2008,6,2,4,30,19.200000000000003,0.27,0.649,0.62,48,15,50,6,15,11,0,7,11,81.96000000000001,0.16,3.2,76.58,1004,25,2.8000000000000003 +2008,6,2,5,30,20.400000000000002,0.27,0.646,0.62,156,140,200,9,14.8,5,0,0,5,71.43,0.16,3.2,70.05,1004,37,3.7 +2008,6,2,6,30,22,0.27,0.602,0.62,228,300,376,9,14.4,15,0,0,15,60.43,0.16,3.2,61.89,1004,40,4.4 +2008,6,2,7,30,23.8,0.27,0.58,0.62,273,418,545,9,13.8,43,0,0,43,49.28,0.16,3.3000000000000003,53.7,1003,38,4.6000000000000005 +2008,6,2,8,30,25.400000000000002,0.28,0.5660000000000001,0.62,301,500,693,9,14.200000000000001,40,0,0,40,38.37,0.16,3.2,50.08,1003,39,4.3 +2008,6,2,9,30,26.6,0.28,0.5730000000000001,0.62,324,542,800,9,14.8,96,0,0,96,28.42,0.16,3.2,48.42,1003,43,3.8000000000000003 +2008,6,2,10,30,27.400000000000002,0.28,0.561,0.62,330,571,862,6,14.3,152,0,0,153,21.2,0.16,3.2,44.78,1002,44,2.8000000000000003 +2008,6,2,11,30,27.400000000000002,0.26,0.589,0.62,346,557,869,9,13.9,147,0,0,148,20.13,0.16,3.3000000000000003,43.410000000000004,1002,181,1.4000000000000001 +2008,6,2,12,30,26.200000000000003,0.45,0.394,0.62,257,660,850,6,13.9,122,0,0,122,26,0.16,3.3000000000000003,46.81,1002,307,1.1 +2008,6,2,13,30,24.8,0.45,0.41100000000000003,0.62,251,614,752,6,15.3,176,1,0,176,35.44,0.16,3.3000000000000003,55.47,1003,313,1.6 +2008,6,2,14,30,24,0.48,0.417,0.62,235,553,617,7,15.8,111,1,0,111,46.18,0.16,3.2,60.26,1002,174,1.9000000000000001 +2008,6,2,15,30,23.8,0.52,0.418,0.62,202,461,451,7,15.8,287,128,0,356,57.300000000000004,0.16,3.2,61.050000000000004,1002,30,2.3000000000000003 +2008,6,2,16,30,23.200000000000003,0.54,0.404,0.62,153,331,275,8,16.2,174,28,0,184,68.36,0.16,3.1,64.57000000000001,1002,49,2.1 +2008,6,2,17,30,22,0.55,0.4,0.62,84,135,110,4,17.1,5,0,0,5,79.05,0.16,3.2,73.97,1002,64,1.6 +2008,6,2,18,30,20.900000000000002,0.59,0.44,0.62,3,0,3,8,17.3,3,0,5,3,88.87,0.16,3.2,80.05,1002,82,1.3 +2008,6,2,19,30,20.5,0.63,0.497,0.62,0,0,0,7,17.3,0,0,0,0,98.37,0.16,3.4000000000000004,82.07000000000001,1002,104,1.3 +2008,6,2,20,30,20.3,0.62,0.518,0.62,0,0,0,6,17.5,0,0,0,0,106.09,0.16,3.4000000000000004,84.11,1002,120,1.3 +2008,6,2,21,30,20.1,0.61,0.534,0.62,0,0,0,7,17.7,0,0,0,0,111.87,0.16,3.5,86.01,1002,122,1.1 +2008,6,2,22,30,20,0.61,0.552,0.62,0,0,0,8,17.7,0,0,0,0,115.17,0.16,3.5,86.71000000000001,1002,112,0.9 +2008,6,2,23,30,19.700000000000003,0.63,0.592,0.62,0,0,0,4,17.7,0,0,0,0,115.59,0.16,3.5,88.07000000000001,1002,95,0.8 +2008,6,3,0,30,19.400000000000002,0.66,0.641,0.62,0,0,0,4,17.7,0,0,0,0,113.06,0.16,3.5,89.66,1002,79,0.9 +2008,6,3,1,30,19.1,0.6900000000000001,0.681,0.62,0,0,0,4,17.6,0,0,0,0,107.91,0.16,3.5,90.75,1001,73,1 +2008,6,3,2,30,18.7,0.72,0.73,0.62,0,0,0,6,17.3,0,0,0,0,100.67,0.16,3.5,91.86,1002,81,1 +2008,6,3,3,30,18.5,0.76,0.795,0.62,0,0,0,6,17.1,0,0,0,0,91.89,0.16,3.5,91.8,1002,98,1 +2008,6,3,4,30,18.6,0.79,0.8290000000000001,0.62,50,21,53,6,17.1,3,0,0,3,81.91,0.16,3.5,91.18,1002,101,0.9 +2008,6,3,5,30,19,0.81,0.833,0.62,165,132,207,6,17.400000000000002,5,0,0,5,71.38,0.16,3.4000000000000004,90.3,1003,77,1.2000000000000002 +2008,6,3,6,30,19.3,0.84,0.785,0.62,249,274,384,9,17,40,0,0,40,60.38,0.16,3.3000000000000003,86.65,1003,47,2 +2008,6,3,7,30,19.700000000000003,0.86,0.739,0.62,299,393,555,6,16.3,26,0,0,26,49.24,0.16,3.2,80.67,1003,32,2.7 +2008,6,3,8,30,20.6,0.86,0.668,0.62,317,493,704,7,15.3,143,0,0,143,38.32,0.16,3.2,71.57000000000001,1003,23,3.2 +2008,6,3,9,30,21.8,0.86,0.46,0.62,271,637,831,7,14.5,416,44,0,454,28.35,0.16,3.2,63.120000000000005,1002,13,3.3000000000000003 +2008,6,3,10,30,22.900000000000002,0.85,0.421,0.62,264,679,898,7,14.3,447,338,0,763,21.1,0.16,3.1,58.230000000000004,1002,181,3.3000000000000003 +2008,6,3,11,30,23.8,0.84,0.397,0.62,256,694,909,7,14.200000000000001,361,465,0,797,20.01,0.16,3.1,55,1002,352,3.2 +2008,6,3,12,30,24.3,0.85,0.28200000000000003,0.62,204,749,878,7,14.200000000000001,365,423,0,746,25.88,0.16,3.1,53.230000000000004,1001,344,3.2 +2008,6,3,13,30,24.6,0.84,0.274,0.62,192,723,781,0,14.3,192,723,0,781,35.33,0.16,3.1,52.69,1001,334,3.1 +2008,6,3,14,30,24.5,0.8300000000000001,0.264,0.62,174,677,643,0,14.4,174,677,0,643,46.07,0.16,3.1,53.480000000000004,1001,324,3 +2008,6,3,15,30,23.8,0.8200000000000001,0.274,0.62,156,584,472,0,14.600000000000001,156,584,0,472,57.19,0.16,3.1,56.34,1001,317,3.1 +2008,6,3,16,30,22.700000000000003,0.8200000000000001,0.27,0.62,123,454,291,1,14.8,123,454,0,291,68.26,0.16,3.1,61.160000000000004,1001,312,2.8000000000000003 +2008,6,3,17,30,21,0.81,0.266,0.62,74,242,121,3,15.9,21,0,0,21,78.95,0.16,3.1,72.75,1001,306,2.3000000000000003 +2008,6,3,18,30,19.400000000000002,0.81,0.274,0.62,7,4,7,1,16.7,7,4,0,7,88.76,0.16,3,84.53,1001,305,2 +2008,6,3,19,30,18.6,0.81,0.279,0.62,0,0,0,0,16.6,0,0,0,0,98.25,0.16,3,88,1002,309,1.8 +2008,6,3,20,30,18.1,0.81,0.28500000000000003,0.62,0,0,0,0,16.400000000000002,0,0,0,0,105.96000000000001,0.16,3,89.97,1002,316,1.5 +2008,6,3,21,30,17.900000000000002,0.8200000000000001,0.294,0.62,0,0,0,0,16.3,0,0,0,0,111.75,0.16,3,90.12,1002,323,1.2000000000000002 +2008,6,3,22,30,17.900000000000002,0.84,0.304,0.62,0,0,0,0,16.1,0,0,0,0,115.05,0.16,3,89.05,1002,330,1.1 +2008,6,3,23,30,17.8,0.86,0.312,0.62,0,0,0,4,15.9,0,0,0,0,115.47,0.16,2.9000000000000004,88.44,1001,338,1 +2008,6,4,0,30,17.7,0.88,0.317,0.62,0,0,0,3,15.700000000000001,0,0,0,0,112.96000000000001,0.16,2.9000000000000004,87.9,1001,349,0.9 +2008,6,4,1,30,17.5,0.9,0.317,0.62,0,0,0,0,15.5,0,0,0,0,107.83,0.16,2.9000000000000004,88.03,1000,178,0.9 +2008,6,4,2,30,17.400000000000002,0.92,0.312,0.62,0,0,0,0,15.4,0,0,0,0,100.60000000000001,0.16,2.8000000000000003,87.86,1000,179,0.8 +2008,6,4,3,30,17.5,0.9400000000000001,0.306,0.62,0,0,0,0,15.3,0,0,0,0,91.83,0.16,2.8000000000000003,86.76,1000,348,0.8 +2008,6,4,4,30,18.3,0.96,0.299,0.62,57,158,80,0,15.700000000000001,57,158,0,80,81.86,0.16,2.7,85.02,1000,334,1.3 +2008,6,4,5,30,19.700000000000003,0.97,0.28500000000000003,0.62,113,406,243,0,15.700000000000001,113,406,0,243,71.34,0.16,2.6,77.72,1001,323,2.1 +2008,6,4,6,30,21,0.98,0.265,0.62,143,575,428,0,15,143,575,0,428,60.35,0.16,2.6,68.75,1001,315,2.5 +2008,6,4,7,30,22.1,0.98,0.242,0.62,159,689,609,0,14.5,159,689,0,609,49.2,0.16,2.5,62.03,1001,304,2.5 +2008,6,4,8,30,22.900000000000002,0.98,0.221,0.62,164,764,764,0,14.100000000000001,164,764,0,764,38.28,0.16,2.4000000000000004,57.480000000000004,1001,289,2.6 +2008,6,4,9,30,23.5,0.99,0.161,0.62,146,840,886,0,13.8,146,840,0,886,28.29,0.16,2.4000000000000004,54.53,1001,275,2.9000000000000004 +2008,6,4,10,30,23.8,0.99,0.157,0.62,148,858,949,0,13.600000000000001,148,858,0,949,21.01,0.16,2.4000000000000004,52.67,1001,265,3.4000000000000004 +2008,6,4,11,30,23.900000000000002,1,0.155,0.62,148,861,958,0,13.4,148,861,0,958,19.88,0.16,2.4000000000000004,51.69,1001,259,3.8000000000000003 +2008,6,4,12,30,23.6,0.98,0.164,0.62,149,843,909,0,13.200000000000001,149,843,0,909,25.77,0.16,2.4000000000000004,52.24,1001,256,4.1000000000000005 +2008,6,4,13,30,23.3,0.97,0.161,0.62,142,821,813,0,13.200000000000001,142,821,0,813,35.230000000000004,0.16,2.3000000000000003,52.93,1001,255,4.1000000000000005 +2008,6,4,14,30,22.8,0.93,0.152,0.62,127,783,671,0,13,127,783,0,671,45.97,0.16,2.3000000000000003,54.01,1001,256,3.9000000000000004 +2008,6,4,15,30,22.1,0.91,0.152,0.62,113,711,500,0,12.8,113,711,0,500,57.09,0.16,2.2,55.69,1001,256,3.6 +2008,6,4,16,30,21.1,0.87,0.14400000000000002,0.62,91,600,314,0,12.8,91,600,0,314,68.15,0.16,2.1,59.24,1001,255,3.1 +2008,6,4,17,30,19.5,0.84,0.136,0.62,59,395,135,0,13.3,59,395,0,135,78.84,0.16,2.1,67.56,1001,252,2.3000000000000003 +2008,6,4,18,30,17.8,0.8200000000000001,0.138,0.62,10,31,11,0,14.9,10,31,0,11,88.66,0.16,2.1,83.09,1001,247,1.6 +2008,6,4,19,30,16.900000000000002,0.79,0.139,0.62,0,0,0,0,15.200000000000001,0,0,0,0,98.13,0.16,2.2,89.64,1001,241,1.4000000000000001 +2008,6,4,20,30,16.400000000000002,0.76,0.14400000000000002,0.62,0,0,0,3,15.4,0,0,0,0,105.85000000000001,0.16,2.3000000000000003,93.58,1001,233,1.4000000000000001 +2008,6,4,21,30,16.2,0.75,0.166,0.62,0,0,0,0,15.5,0,0,0,0,111.63,0.16,2.3000000000000003,95.75,1001,222,1.3 +2008,6,4,22,30,16.2,0.76,0.17500000000000002,0.62,0,0,0,0,15.5,0,0,0,0,114.93,0.16,2.4000000000000004,95.64,1001,211,1.3 +2008,6,4,23,30,16.2,0.74,0.17500000000000002,0.62,0,0,0,0,15.5,0,0,0,0,115.36,0.16,2.4000000000000004,95.35000000000001,1001,203,1.4000000000000001 +2008,6,5,0,30,16.1,0.81,0.21,0.62,0,0,0,3,15.4,0,0,0,0,112.86,0.15,2.5,95.38,1001,197,1.4000000000000001 +2008,6,5,1,30,16.1,0.8200000000000001,0.217,0.62,0,0,0,0,15.200000000000001,0,0,0,0,107.74000000000001,0.15,2.5,94.60000000000001,1000,192,1.4000000000000001 +2008,6,5,2,30,16,0.79,0.20400000000000001,0.62,0,0,0,3,15.100000000000001,0,0,0,0,100.53,0.15,2.5,94.33,1000,189,1.4000000000000001 +2008,6,5,3,30,16.400000000000002,0.8200000000000001,0.221,0.62,0,0,0,3,14.9,0,0,0,0,91.77,0.15,2.5,91.07000000000001,1000,187,1.7000000000000002 +2008,6,5,4,30,17.400000000000002,0.8300000000000001,0.221,0.62,55,206,84,3,15.3,4,0,0,4,81.82000000000001,0.15,2.5,87.72,1000,190,2.4000000000000004 +2008,6,5,5,30,18.400000000000002,0.81,0.201,0.62,98,475,250,0,15.5,98,475,0,250,71.3,0.15,2.6,83.06,1000,198,3.2 +2008,6,5,6,30,19.3,0.8,0.195,0.62,124,628,435,0,15.5,124,628,0,435,60.31,0.15,2.6,78.48,1000,205,3.5 +2008,6,5,7,30,20.200000000000003,0.79,0.186,0.62,140,726,614,2,15.3,365,150,0,464,49.17,0.15,2.6,73.31,1000,211,3.7 +2008,6,5,8,30,20.8,0.77,0.17500000000000002,0.62,148,789,767,3,14.9,374,40,0,405,38.24,0.15,2.6,69.10000000000001,1000,214,3.9000000000000004 +2008,6,5,9,30,21,0.7000000000000001,0.221,0.62,178,786,870,0,14.600000000000001,178,786,0,870,28.240000000000002,0.15,2.6,66.75,1001,216,4 +2008,6,5,10,30,21,0.71,0.224,0.62,184,801,932,0,14.3,184,801,0,932,20.92,0.15,2.6,65.66,1000,220,4.2 +2008,6,5,11,30,21,0.6900000000000001,0.211,0.62,179,814,945,1,14.100000000000001,179,814,0,945,19.77,0.15,2.5,64.78,1000,225,4.3 +2008,6,5,12,30,21.3,0.6900000000000001,0.217,0.62,178,797,897,3,13.9,359,2,0,361,25.650000000000002,0.15,2.5,62.9,1000,229,4.3 +2008,6,5,13,30,21.400000000000002,0.6900000000000001,0.197,0.62,161,785,803,0,13.600000000000001,161,785,0,803,35.12,0.15,2.4000000000000004,61.11,1000,231,4.3 +2008,6,5,14,30,21.1,0.7000000000000001,0.17300000000000001,0.62,139,759,668,0,13.200000000000001,139,759,0,668,45.87,0.15,2.3000000000000003,60.5,1000,231,4.3 +2008,6,5,15,30,20.5,0.75,0.164,0.62,120,695,498,0,12.9,120,695,0,498,57,0.15,2.2,61.61,1000,230,4.2 +2008,6,5,16,30,19.700000000000003,0.79,0.158,0.62,96,580,313,0,12.9,96,580,0,313,68.06,0.15,2.2,64.7,1001,228,3.9000000000000004 +2008,6,5,17,30,18.3,0.81,0.155,0.62,63,370,135,0,13.100000000000001,63,370,0,135,78.74,0.15,2.2,71.81,1001,226,2.9000000000000004 +2008,6,5,18,30,17,0.84,0.159,0.62,11,26,11,0,13.9,11,26,0,11,88.57000000000001,0.15,2.3000000000000003,82.16,1001,221,2 +2008,6,5,19,30,16.400000000000002,0.88,0.155,0.62,0,0,0,0,14.100000000000001,0,0,0,0,98.02,0.15,2.4000000000000004,86.48,1002,216,1.9000000000000001 +2008,6,5,20,30,16,0.91,0.148,0.62,0,0,0,1,14.100000000000001,0,0,0,0,105.73,0.15,2.5,88.63,1002,212,1.9000000000000001 +2008,6,5,21,30,15.600000000000001,0.9400000000000001,0.145,0.62,0,0,0,7,14,0,0,0,0,111.51,0.15,2.5,90.36,1002,207,1.7000000000000002 +2008,6,5,22,30,15.100000000000001,0.96,0.14300000000000002,0.62,0,0,0,8,13.9,0,0,0,0,114.82000000000001,0.15,2.6,92.46000000000001,1001,201,1.6 +2008,6,5,23,30,14.8,0.97,0.14300000000000002,0.62,0,0,0,4,13.700000000000001,0,0,0,0,115.26,0.15,2.6,93.27,1001,195,1.4000000000000001 +2008,6,6,0,30,14.5,0.97,0.149,0.62,0,0,0,7,13.5,0,0,0,0,112.77,0.15,2.6,93.72,1000,189,1.3 +2008,6,6,1,30,14.3,0.98,0.156,0.62,0,0,0,3,13.3,0,0,0,0,107.67,0.15,2.6,93.62,1000,184,1.2000000000000002 +2008,6,6,2,30,14.3,0.98,0.164,0.62,0,0,0,1,13.100000000000001,0,0,0,0,100.47,0.15,2.6,92.34,1000,177,1.2000000000000002 +2008,6,6,3,30,14.9,1,0.186,0.62,0,0,0,0,13.100000000000001,0,0,0,0,91.72,0.15,2.6,88.75,1000,172,1.2000000000000002 +2008,6,6,4,30,16,1.01,0.201,0.62,53,237,86,0,13.8,53,237,0,86,81.78,0.15,2.6,86.84,1000,169,1.6 +2008,6,6,5,30,17,1.03,0.191,0.62,94,497,253,3,14.100000000000001,91,0,0,91,71.27,0.15,2.6,82.86,1000,171,1.9000000000000001 +2008,6,6,6,30,18,1.06,0.182,0.62,117,650,439,3,14.200000000000001,274,45,0,296,60.29,0.15,2.6,78.51,1000,173,1.8 +2008,6,6,7,30,19.3,1.07,0.181,0.62,135,738,617,2,14,363,156,1,465,49.14,0.15,2.6,71.53,1000,174,1.7000000000000002 +2008,6,6,8,30,20.5,1.07,0.179,0.62,146,793,769,2,13.600000000000001,429,218,1,600,38.21,0.15,2.6,64.67,1000,180,1.8 +2008,6,6,9,30,21.5,1.01,0.203,0.62,165,807,876,2,13.4,479,256,1,705,28.19,0.15,2.6,60.14,1000,188,2.1 +2008,6,6,10,30,22.200000000000003,1.02,0.202,0.62,169,824,939,0,13.4,169,824,1,939,20.84,0.15,2.6,57.56,1000,196,2.4000000000000004 +2008,6,6,11,30,22.6,1.01,0.198,0.62,168,829,948,0,13.5,168,829,1,948,19.66,0.15,2.6,56.31,1000,204,2.7 +2008,6,6,12,30,22.5,1.01,0.23600000000000002,0.62,181,791,895,0,13.4,181,791,1,895,25.55,0.15,2.6,56.52,999,210,2.9000000000000004 +2008,6,6,13,30,22.200000000000003,1.02,0.23900000000000002,0.62,174,759,796,2,13.4,460,153,0,585,35.02,0.15,2.7,57.32,999,214,3 +2008,6,6,14,30,21.6,1.01,0.234,0.62,160,713,657,0,13.4,160,713,0,657,45.78,0.15,2.7,59.660000000000004,999,221,3 +2008,6,6,15,30,20.900000000000002,1.01,0.244,0.62,144,625,485,1,13.600000000000001,144,625,0,485,56.9,0.15,2.7,63.02,999,231,2.9000000000000004 +2008,6,6,16,30,20.1,1.02,0.251,0.62,117,489,301,1,13.8,117,489,0,301,67.96000000000001,0.15,2.8000000000000003,67.25,1000,241,2.6 +2008,6,6,17,30,18.900000000000002,1.03,0.23700000000000002,0.62,72,292,129,3,14.5,5,0,0,5,78.64,0.15,2.8000000000000003,75.74,1000,248,1.9000000000000001 +2008,6,6,18,30,17.7,1.06,0.234,0.62,10,18,10,0,15.5,10,18,0,10,88.47,0.15,2.8000000000000003,87,1000,253,1.4000000000000001 +2008,6,6,19,30,17,1.06,0.227,0.62,0,0,0,0,15.5,0,0,0,0,97.92,0.15,2.8000000000000003,91.11,1000,255,1.2000000000000002 +2008,6,6,20,30,16.6,1.06,0.214,0.62,0,0,0,3,15.5,0,0,0,0,105.62,0.15,2.9000000000000004,93,1000,257,1.2000000000000002 +2008,6,6,21,30,16.400000000000002,1.07,0.215,0.62,0,0,0,0,15.4,0,0,0,0,111.41,0.15,2.8000000000000003,93.62,1000,257,1.2000000000000002 +2008,6,6,22,30,16.2,1.07,0.215,0.62,0,0,0,8,15.200000000000001,0,0,0,0,114.72,0.15,2.8000000000000003,93.96000000000001,1000,257,1.1 +2008,6,6,23,30,16,1.07,0.20600000000000002,0.62,0,0,0,4,15,0,0,0,0,115.17,0.15,2.8000000000000003,94.06,1000,256,1 +2008,6,7,0,30,15.8,1.08,0.214,0.62,0,0,0,5,14.8,0,0,0,0,112.69,0.15,2.8000000000000003,93.94,999,254,0.9 +2008,6,7,1,30,15.700000000000001,1.09,0.216,0.62,0,0,0,3,14.600000000000001,0,0,0,0,107.60000000000001,0.15,2.7,93.35000000000001,999,248,0.8 +2008,6,7,2,30,15.700000000000001,1.1,0.20800000000000002,0.62,0,0,0,3,14.5,0,0,0,0,100.42,0.15,2.7,92.76,999,241,0.7000000000000001 +2008,6,7,3,30,15.9,1.11,0.214,0.62,0,0,0,0,14.4,0,0,0,0,91.68,0.15,2.7,90.73,999,239,0.7000000000000001 +2008,6,7,4,30,16.6,1.12,0.217,0.62,53,230,86,0,14.8,53,230,0,86,81.75,0.15,2.7,89.03,999,243,0.8 +2008,6,7,5,30,17.7,1.1400000000000001,0.20600000000000002,0.62,96,485,252,0,14.9,96,485,0,252,71.24,0.15,2.7,83.74,999,246,0.9 +2008,6,7,6,30,18.7,1.16,0.202,0.62,122,633,437,0,14.600000000000001,122,633,0,437,60.26,0.15,2.7,76.96000000000001,999,248,1 +2008,6,7,7,30,19.8,1.16,0.202,0.62,141,721,613,3,14.200000000000001,360,97,0,424,49.120000000000005,0.15,2.7,70.25,999,252,1.2000000000000002 +2008,6,7,8,30,20.8,1.17,0.2,0.62,153,777,764,2,13.700000000000001,436,138,0,545,38.18,0.15,2.7,63.89,999,251,1.4000000000000001 +2008,6,7,9,30,21.5,1.16,0.218,0.62,170,798,873,3,13.3,440,101,0,529,28.14,0.15,2.7,59.56,999,249,1.7000000000000002 +2008,6,7,10,30,22.1,1.17,0.227,0.62,178,809,935,7,13.100000000000001,409,340,0,727,20.76,0.15,2.7,56.800000000000004,999,248,2.1 +2008,6,7,11,30,22.400000000000002,1.17,0.22,0.62,176,814,942,7,13.200000000000001,309,480,0,762,19.56,0.15,2.8000000000000003,55.910000000000004,999,249,2.4000000000000004 +2008,6,7,12,30,22.400000000000002,1.1400000000000001,0.22,0.62,173,801,896,7,13.3,325,505,0,781,25.44,0.15,2.8000000000000003,56.26,999,253,2.7 +2008,6,7,13,30,22.3,1.1500000000000001,0.23,0.62,169,767,798,7,13.3,327,415,0,667,34.93,0.15,2.8000000000000003,56.89,999,258,2.9000000000000004 +2008,6,7,14,30,22,1.1500000000000001,0.225,0.62,154,720,657,7,13.4,301,200,0,441,45.69,0.15,2.9000000000000004,58.22,999,263,3 +2008,6,7,15,30,21.5,1.16,0.247,0.62,143,625,485,7,13.600000000000001,263,191,0,367,56.81,0.15,2.9000000000000004,60.74,999,267,2.9000000000000004 +2008,6,7,16,30,20.8,1.18,0.247,0.62,115,498,302,6,13.9,6,0,0,6,67.87,0.15,3,64.71000000000001,999,271,2.6 +2008,6,7,17,30,19.700000000000003,1.18,0.24,0.62,71,299,131,7,14.8,51,1,0,51,78.55,0.15,3,73.16,999,275,1.9000000000000001 +2008,6,7,18,30,18.5,1.19,0.242,0.62,10,22,11,0,15.8,10,22,0,11,88.39,0.15,3,84.38,1000,281,1.4000000000000001 +2008,6,7,19,30,17.7,1.2,0.23,0.62,0,0,0,0,15.9,0,0,0,0,97.82000000000001,0.15,3.1,89.06,1000,290,1.2000000000000002 +2008,6,7,20,30,17.2,1.21,0.212,0.62,0,0,0,0,15.8,0,0,0,0,105.52,0.15,3.1,91.35000000000001,1000,298,1.1 +2008,6,7,21,30,16.900000000000002,1.2,0.199,0.62,0,0,0,0,15.600000000000001,0,0,0,0,111.3,0.15,3.1,91.9,1000,303,1 +2008,6,7,22,30,16.7,1.19,0.189,0.62,0,0,0,0,15.4,0,0,0,0,114.62,0.15,3,91.85000000000001,1000,307,0.9 +2008,6,7,23,30,16.6,1.19,0.181,0.62,0,0,0,3,15.200000000000001,0,0,0,0,115.08,0.15,3,91.59,1000,309,0.8 +2008,6,8,0,30,16.400000000000002,1.18,0.183,0.62,0,0,0,0,15.100000000000001,0,0,0,0,112.61,0.16,3,92.01,1000,309,0.6000000000000001 +2008,6,8,1,30,16.400000000000002,1.17,0.184,0.62,0,0,0,0,15,0,0,0,0,107.54,0.16,3,91.32000000000001,1000,308,0.5 +2008,6,8,2,30,16.3,1.17,0.179,0.62,0,0,0,0,14.9,0,0,0,0,100.37,0.16,3,91.42,1000,302,0.30000000000000004 +2008,6,8,3,30,16.400000000000002,1.17,0.188,0.62,0,0,0,3,14.9,0,0,0,0,91.64,0.16,3,90.60000000000001,1000,252,0.2 +2008,6,8,4,30,17.5,1.17,0.192,0.62,51,253,87,0,15.100000000000001,51,253,0,87,81.72,0.16,3,86.07000000000001,1001,224,0.30000000000000004 +2008,6,8,5,30,19.200000000000003,1.18,0.18,0.62,89,508,252,0,14.700000000000001,89,508,0,252,71.22,0.16,3,75.19,1001,237,0.6000000000000001 +2008,6,8,6,30,20.700000000000003,1.22,0.177,0.62,114,652,438,0,14.100000000000001,114,652,0,438,60.24,0.16,3,65.8,1001,227,1 +2008,6,8,7,30,21.6,1.23,0.191,0.62,137,726,612,1,13.8,137,726,0,612,49.1,0.16,3,61.09,1001,216,1.6 +2008,6,8,8,30,22.1,1.23,0.203,0.62,154,771,761,7,13.700000000000001,49,0,0,49,38.160000000000004,0.16,3,59.04,1001,209,2.3000000000000003 +2008,6,8,9,30,22.3,1.05,0.302,0.62,206,735,855,8,13.8,140,0,0,141,28.11,0.16,3.1,58.59,1001,206,2.9000000000000004 +2008,6,8,10,30,22.400000000000002,1.06,0.32,0.62,219,743,914,6,13.9,295,2,0,297,20.7,0.16,3.1,58.6,1002,206,3.3000000000000003 +2008,6,8,11,30,22.3,1.05,0.317,0.62,219,747,923,8,13.9,442,154,0,587,19.46,0.16,3.1,59.02,1002,208,3.3000000000000003 +2008,6,8,12,30,22.200000000000003,1.08,0.316,0.62,214,735,878,7,13.9,429,267,0,670,25.35,0.16,3.1,59.370000000000005,1002,208,3.2 +2008,6,8,13,30,22,1.09,0.31,0.62,202,708,783,6,13.8,370,52,0,413,34.84,0.16,3.1,59.7,1002,208,2.9000000000000004 +2008,6,8,14,30,21.5,1.08,0.289,0.62,179,670,647,6,13.700000000000001,318,52,0,354,45.6,0.16,3.1,61.300000000000004,1002,206,2.6 +2008,6,8,15,30,20.900000000000002,1.08,0.289,0.62,157,588,480,7,13.700000000000001,246,56,0,277,56.72,0.16,3.1,63.410000000000004,1002,204,2.3000000000000003 +2008,6,8,16,30,20,1.08,0.274,0.62,122,471,300,7,13.8,183,64,0,207,67.78,0.16,3.1,67.5,1002,205,1.8 +2008,6,8,17,30,19,1.07,0.262,0.62,75,275,130,7,14.5,39,1,0,39,78.46000000000001,0.16,3.1,75.31,1003,210,1.2000000000000002 +2008,6,8,18,30,18.3,1.07,0.244,0.62,11,19,11,7,15.5,3,0,7,3,88.3,0.16,3.1,83.84,1003,214,0.8 +2008,6,8,19,30,17.900000000000002,1.06,0.231,0.62,0,0,0,8,15.700000000000001,0,0,0,0,97.72,0.16,3,87.02,1004,209,0.6000000000000001 +2008,6,8,20,30,17.8,1.06,0.219,0.62,0,0,0,8,15.5,0,0,0,0,105.43,0.16,3,86.3,1004,198,0.4 +2008,6,8,21,30,17.7,1.06,0.209,0.62,0,0,0,3,15.200000000000001,0,0,0,0,111.21000000000001,0.16,3,85.08,1004,152,0.2 +2008,6,8,22,30,17.5,1.05,0.2,0.62,0,0,0,0,14.9,0,0,0,0,114.53,0.16,3,84.78,1004,65,0.2 +2008,6,8,23,30,17.1,1.05,0.191,0.62,0,0,0,3,14.8,0,0,0,0,115,0.16,3,86.15,1004,18,0.30000000000000004 +2008,6,9,0,30,16.7,1.06,0.182,0.62,0,0,0,3,14.600000000000001,0,0,0,0,112.55,0.16,2.9000000000000004,87.47,1004,21,0.5 +2008,6,9,1,30,16.2,1.06,0.18,0.62,0,0,0,1,14.4,0,0,0,0,107.48,0.16,2.9000000000000004,88.85000000000001,1004,22,0.6000000000000001 +2008,6,9,2,30,15.8,1.06,0.181,0.62,0,0,0,3,14.200000000000001,0,0,0,0,100.33,0.16,2.9000000000000004,90.29,1004,22,0.8 +2008,6,9,3,30,16,1.07,0.183,0.62,0,0,0,4,14.100000000000001,0,0,0,0,91.61,0.16,2.9000000000000004,88.3,1004,28,0.8 +2008,6,9,4,30,17.2,1.08,0.184,0.62,51,258,88,3,14.600000000000001,4,0,0,4,81.69,0.16,2.8000000000000003,84.61,1005,34,1 +2008,6,9,5,30,18.900000000000002,1.09,0.181,0.62,90,506,253,0,14.600000000000001,90,506,0,253,71.2,0.16,2.8000000000000003,76.22,1005,43,1.1 +2008,6,9,6,30,20.700000000000003,1.1300000000000001,0.171,0.62,112,658,439,0,14.200000000000001,112,658,0,439,60.230000000000004,0.16,2.8000000000000003,66.2,1005,75,0.7000000000000001 +2008,6,9,7,30,22.3,1.1300000000000001,0.169,0.62,129,744,616,0,13.600000000000001,129,744,0,616,49.09,0.16,2.8000000000000003,57.76,1006,143,0.7000000000000001 +2008,6,9,8,30,23.5,1.12,0.17,0.62,142,796,768,0,13.3,142,796,0,768,38.14,0.16,2.8000000000000003,52.68,1006,198,1.3 +2008,6,9,9,30,24.1,1.17,0.167,0.62,148,828,878,2,13.4,477,144,0,604,28.07,0.16,2.9000000000000004,51.18,1006,212,2.1 +2008,6,9,10,30,24.3,1.17,0.186,0.62,160,831,938,2,13.600000000000001,494,140,0,625,20.63,0.16,2.9000000000000004,51.29,1006,216,2.6 +2008,6,9,11,30,24.3,1.16,0.195,0.62,165,827,946,3,13.8,470,90,0,555,19.37,0.16,2.9000000000000004,51.89,1006,220,2.9000000000000004 +2008,6,9,12,30,24.200000000000003,1.18,0.20400000000000001,0.62,166,808,897,0,14,166,808,0,897,25.25,0.16,3,53.08,1006,226,3.2 +2008,6,9,13,30,23.8,1.2,0.223,0.62,166,769,798,0,14.200000000000001,166,769,0,798,34.75,0.16,3,54.97,1007,233,3.3000000000000003 +2008,6,9,14,30,23.3,1.21,0.213,0.62,150,729,661,0,14.4,150,729,0,661,45.51,0.16,3,57.29,1007,240,3.1 +2008,6,9,15,30,22.900000000000002,1.22,0.23,0.62,138,639,490,0,14.4,138,639,0,490,56.64,0.16,3,58.64,1007,249,2.6 +2008,6,9,16,30,22.400000000000002,1.23,0.227,0.62,111,520,308,0,14.3,111,520,0,308,67.69,0.16,3,60,1007,262,2 +2008,6,9,17,30,21.1,1.24,0.217,0.62,69,327,135,0,14.700000000000001,69,327,0,135,78.37,0.16,3,66.81,1007,274,1.3 +2008,6,9,18,30,19.6,1.25,0.214,0.62,12,34,13,0,16.1,12,34,0,13,88.22,0.16,3,80.32000000000001,1008,280,1.1 +2008,6,9,19,30,18.7,1.26,0.212,0.62,0,0,0,0,16,0,0,0,0,97.63,0.16,3,84.09,1008,286,1.2000000000000002 +2008,6,9,20,30,18.2,1.25,0.21,0.62,0,0,0,0,15.8,0,0,0,0,105.33,0.16,3,85.95,1008,296,1.2000000000000002 +2008,6,9,21,30,17.8,1.24,0.20800000000000002,0.62,0,0,0,0,15.700000000000001,0,0,0,0,111.12,0.16,3,87.76,1008,314,1.1 +2008,6,9,22,30,17.7,1.22,0.202,0.62,0,0,0,0,15.600000000000001,0,0,0,0,114.44,0.16,2.9000000000000004,87.35000000000001,1008,334,1.1 +2008,6,9,23,30,17.7,1.2,0.199,0.62,0,0,0,0,15.3,0,0,0,0,114.92,0.16,2.9000000000000004,85.81,1008,348,1 +2008,6,10,0,30,17.8,1.18,0.2,0.62,0,0,0,8,15,0,0,0,0,112.48,0.16,2.9000000000000004,83.69,1008,178,0.8 +2008,6,10,1,30,17.900000000000002,1.16,0.203,0.62,0,0,0,0,14.700000000000001,0,0,0,0,107.43,0.16,2.9000000000000004,81.73,1008,11,0.7000000000000001 +2008,6,10,2,30,17.8,1.12,0.20700000000000002,0.62,0,0,0,3,14.5,0,0,0,0,100.29,0.16,2.8000000000000003,80.93,1008,33,0.6000000000000001 +2008,6,10,3,30,18,1.06,0.211,0.62,0,0,0,4,14.3,0,0,0,0,91.59,0.16,2.8000000000000003,78.99,1008,58,0.6000000000000001 +2008,6,10,4,30,19.1,1.04,0.20700000000000002,0.62,52,234,86,0,15.3,52,234,0,86,81.68,0.16,2.8000000000000003,78.4,1008,83,0.9 +2008,6,10,5,30,21.200000000000003,1.04,0.202,0.62,95,483,251,0,14.700000000000001,95,483,0,251,71.19,0.16,2.8000000000000003,66.49,1009,113,1 +2008,6,10,6,30,23.200000000000003,1.05,0.196,0.62,121,633,435,0,14.3,121,633,0,435,60.22,0.16,2.8000000000000003,57.14,1009,151,1 +2008,6,10,7,30,24.3,1.04,0.2,0.62,141,717,611,0,14.5,141,717,0,611,49.08,0.16,2.8000000000000003,54.47,1009,179,1.3 +2008,6,10,8,30,25.3,1.06,0.198,0.62,153,774,762,0,14.8,153,774,0,762,38.13,0.16,2.8000000000000003,52.04,1009,191,1.6 +2008,6,10,9,30,26.1,1,0.218,0.62,171,790,868,0,15,171,790,0,868,28.05,0.16,2.9000000000000004,50.53,1009,198,1.9000000000000001 +2008,6,10,10,30,26.6,0.9500000000000001,0.232,0.62,182,797,928,7,15.200000000000001,364,427,0,763,20.580000000000002,0.16,2.9000000000000004,49.58,1009,206,2.2 +2008,6,10,11,30,26.6,0.87,0.253,0.62,195,784,935,7,15.3,310,524,0,805,19.29,0.16,2.9000000000000004,49.800000000000004,1009,216,2.5 +2008,6,10,12,30,26.1,0.81,0.318,0.62,220,727,878,0,15.200000000000001,220,727,0,878,25.17,0.16,3,51.2,1008,225,2.7 +2008,6,10,13,30,25.5,0.8300000000000001,0.333,0.62,216,687,780,0,15.3,216,687,0,780,34.660000000000004,0.16,3,53.1,1008,233,2.8000000000000003 +2008,6,10,14,30,25.1,0.86,0.322,0.62,194,641,644,0,15.4,194,641,0,644,45.43,0.16,3,54.980000000000004,1008,240,2.8000000000000003 +2008,6,10,15,30,24.700000000000003,0.96,0.309,0.62,165,570,479,0,15.600000000000001,165,570,0,479,56.56,0.16,3,56.85,1008,246,2.7 +2008,6,10,16,30,23.8,1,0.306,0.62,130,445,300,0,15.600000000000001,130,445,0,300,67.61,0.16,3,60.050000000000004,1008,254,2.3000000000000003 +2008,6,10,17,30,22.200000000000003,1,0.304,0.62,80,245,130,0,16,80,245,0,130,78.29,0.16,3,67.9,1008,263,1.7000000000000002 +2008,6,10,18,30,20.5,0.99,0.299,0.62,10,12,11,0,17.3,10,12,0,11,88.14,0.16,3,81.92,1008,275,1.2000000000000002 +2008,6,10,19,30,19.6,0.96,0.295,0.62,0,0,0,0,17.2,0,0,0,0,97.54,0.16,3,85.89,1008,295,1.1 +2008,6,10,20,30,19.3,0.93,0.291,0.62,0,0,0,0,16.900000000000002,0,0,0,0,105.25,0.16,3,86.13,1008,321,1 +2008,6,10,21,30,19.1,0.91,0.295,0.62,0,0,0,0,16.7,0,0,0,0,111.03,0.16,3,85.75,1008,173,1 +2008,6,10,22,30,19,0.87,0.305,0.62,0,0,0,0,16.6,0,0,0,0,114.37,0.16,3,85.91,1007,24,1 +2008,6,10,23,30,19.1,0.84,0.305,0.62,0,0,0,0,16.6,0,0,0,0,114.85000000000001,0.16,3,85.57000000000001,1007,36,1 +2008,6,11,0,30,19.200000000000003,0.87,0.3,0.62,0,0,0,0,16.400000000000002,0,0,0,0,112.43,0.15,3,83.91,1007,32,0.9 +2008,6,11,1,30,19.3,0.92,0.289,0.62,0,0,0,0,16.1,0,0,0,0,107.39,0.15,3,81.51,1007,25,0.9 +2008,6,11,2,30,19.3,0.9500000000000001,0.276,0.62,0,0,0,0,15.8,0,0,0,0,100.26,0.15,2.9000000000000004,80.28,1006,28,0.9 +2008,6,11,3,30,19.3,0.98,0.257,0.62,0,0,0,0,15.700000000000001,0,0,0,0,91.56,0.15,2.8000000000000003,79.74,1006,47,0.7000000000000001 +2008,6,11,4,30,20.6,0.99,0.243,0.62,55,202,84,7,16.6,71,15,7,73,81.67,0.15,2.8000000000000003,77.96000000000001,1006,65,0.4 +2008,6,11,5,30,22.8,1,0.244,0.62,104,442,246,7,16,158,77,0,183,71.18,0.15,2.8000000000000003,65.37,1007,158,0.6000000000000001 +2008,6,11,6,30,24.400000000000002,0.92,0.267,0.62,143,568,425,7,15.5,236,233,0,352,60.22,0.15,2.8000000000000003,57.79,1007,228,1.2000000000000002 +2008,6,11,7,30,25.3,0.87,0.27,0.62,168,658,599,6,15.8,328,130,0,413,49.08,0.15,2.8000000000000003,55.71,1007,203,1.7000000000000002 +2008,6,11,8,30,26,0.86,0.269,0.62,184,718,749,8,16.1,336,387,0,640,38.12,0.15,2.8000000000000003,54.32,1006,195,2.3000000000000003 +2008,6,11,9,30,26.200000000000003,0.6900000000000001,0.343,0.62,228,700,845,7,16.1,434,165,0,580,28.03,0.15,2.9000000000000004,53.69,1006,198,2.8000000000000003 +2008,6,11,10,30,26.1,0.72,0.343,0.62,233,719,907,7,16,453,137,0,581,20.53,0.15,3,53.870000000000005,1006,206,3.3000000000000003 +2008,6,11,11,30,25.900000000000002,0.73,0.339,0.62,232,723,915,7,16,423,165,0,579,19.21,0.15,3.1,54.52,1006,213,3.5 +2008,6,11,12,30,25.5,0.72,0.375,0.62,242,688,865,7,15.9,448,148,0,582,25.080000000000002,0.15,3.1,55.46,1005,216,3.2 +2008,6,11,13,30,25.1,0.73,0.379,0.62,232,653,770,8,15.8,367,390,0,688,34.58,0.15,3.1,56.31,1005,214,2.8000000000000003 +2008,6,11,14,30,24.700000000000003,0.71,0.363,0.62,209,607,636,8,15.600000000000001,333,326,0,562,45.36,0.15,3,57.03,1004,212,2.6 +2008,6,11,15,30,24.1,0.71,0.34400000000000003,0.62,178,533,472,1,15.600000000000001,178,533,0,472,56.480000000000004,0.15,3,59.2,1004,219,2.7 +2008,6,11,16,30,23,0.72,0.34400000000000003,0.62,140,399,292,7,16,153,18,0,160,67.54,0.15,3.1,64.65,1004,230,2.8000000000000003 +2008,6,11,17,30,21.5,0.72,0.352,0.62,85,192,124,7,16.900000000000002,27,0,0,27,78.21000000000001,0.15,3.2,74.97,1004,239,2.7 +2008,6,11,18,30,20.400000000000002,0.71,0.355,0.62,8,4,8,6,17.7,3,0,7,3,88.07000000000001,0.15,3.2,84.31,1004,245,2.4000000000000004 +2008,6,11,19,30,19.8,0.67,0.358,0.62,0,0,0,6,18.1,0,0,0,0,97.46000000000001,0.15,3.3000000000000003,90.01,1004,250,1.9000000000000001 +2008,6,11,20,30,19.5,0.61,0.363,0.62,0,0,0,7,18.3,0,0,0,0,105.17,0.15,3.3000000000000003,92.86,1004,257,1.3 +2008,6,11,21,30,19.200000000000003,0.58,0.389,0.62,0,0,0,6,18.3,0,0,0,0,110.96000000000001,0.15,3.3000000000000003,94.33,1004,269,0.9 +2008,6,11,22,30,18.900000000000002,0.5700000000000001,0.397,0.62,0,0,0,6,18,0,0,0,0,114.29,0.15,3.3000000000000003,94.68,1003,278,0.8 +2008,6,11,23,30,18.6,0.55,0.39,0.62,0,0,0,6,17.8,0,0,0,0,114.79,0.15,3.3000000000000003,94.89,1003,278,1 +2008,6,12,0,30,18.3,0.56,0.376,0.62,0,0,0,6,17.400000000000002,0,0,0,0,112.38,0.15,3.3000000000000003,94.72,1002,276,1.1 +2008,6,12,1,30,18.1,0.59,0.353,0.62,0,0,0,6,17.1,0,0,0,0,107.35000000000001,0.15,3.3000000000000003,93.93,1002,283,1 +2008,6,12,2,30,17.8,0.62,0.341,0.62,0,0,0,6,16.6,0,0,0,0,100.23,0.15,3.2,92.71000000000001,1001,296,0.9 +2008,6,12,3,30,17.7,0.63,0.354,0.62,0,0,0,7,16.2,0,0,0,0,91.55,0.15,3.2,90.97,1001,308,1 +2008,6,12,4,30,18.1,0.63,0.361,0.62,60,103,75,7,16.1,3,0,0,3,81.66,0.15,3.1,88.24,1001,306,1.1 +2008,6,12,5,30,18.6,0.6,0.34600000000000003,0.62,126,330,232,4,15.5,67,0,7,67,71.18,0.15,3,82.34,1001,286,1.1 +2008,6,12,6,30,19.400000000000002,0.6,0.338,0.62,167,493,412,4,14.9,20,0,0,20,60.22,0.15,2.9000000000000004,75.26,1001,260,1.3 +2008,6,12,7,30,20.400000000000002,0.6,0.313,0.62,187,612,588,5,14.5,142,0,0,142,49.08,0.15,2.9000000000000004,69.12,1001,248,1.8 +2008,6,12,8,30,21.5,0.61,0.291,0.62,197,692,741,5,14.200000000000001,376,34,1,402,38.12,0.15,2.9000000000000004,63.120000000000005,1001,244,2.3000000000000003 +2008,6,12,9,30,22.200000000000003,0.8200000000000001,0.244,0.62,185,768,863,3,14.100000000000001,450,69,0,512,28.01,0.15,2.9000000000000004,60.01,1000,237,2.6 +2008,6,12,10,30,22.400000000000002,0.89,0.24,0.62,187,790,927,3,14.200000000000001,325,0,0,325,20.490000000000002,0.15,2.9000000000000004,59.72,1000,228,2.9000000000000004 +2008,6,12,11,30,22.200000000000003,0.93,0.221,0.62,179,806,940,3,14.3,455,40,0,492,19.14,0.15,2.9000000000000004,61.09,999,222,3.2 +2008,6,12,12,30,21.8,0.93,0.256,0.62,191,770,888,4,14.600000000000001,427,27,0,451,25.01,0.15,3,63.72,999,218,3.5 +2008,6,12,13,30,21.3,0.9500000000000001,0.258,0.62,183,740,793,8,14.9,291,11,0,300,34.51,0.15,3,66.75,999,215,3.6 +2008,6,12,14,30,20.8,0.9500000000000001,0.24,0.62,162,701,656,8,15.100000000000001,328,248,0,502,45.28,0.15,3.1,70.10000000000001,999,215,3.5 +2008,6,12,15,30,20.200000000000003,0.9400000000000001,0.24,0.62,144,622,488,2,15.3,302,52,0,331,56.410000000000004,0.15,3.1,73.35000000000001,998,217,3.2 +2008,6,12,16,30,19.5,0.9500000000000001,0.223,0.62,112,513,309,0,15.4,112,513,0,309,67.46000000000001,0.15,3.1,77.13,998,221,2.6 +2008,6,12,17,30,18.8,0.9400000000000001,0.197,0.62,70,332,138,1,15.600000000000001,70,332,0,138,78.14,0.15,3.1,81.49,998,226,1.8 +2008,6,12,18,30,18.1,0.97,0.197,0.62,13,32,14,8,16.1,8,0,7,8,88,0.15,3.1,87.91,998,227,1 +2008,6,12,19,30,17.8,0.96,0.194,0.62,0,0,0,8,16.1,0,0,0,0,97.39,0.15,3.1,89.92,999,223,0.8 +2008,6,12,20,30,17.7,0.92,0.191,0.62,0,0,0,3,15.9,0,0,0,0,105.09,0.15,3.1,89.35000000000001,999,218,0.7000000000000001 +2008,6,12,21,30,17.6,0.93,0.214,0.62,0,0,0,7,15.9,0,0,0,0,110.88,0.15,3.2,89.52,999,219,0.6000000000000001 +2008,6,12,22,30,17.5,0.9500000000000001,0.222,0.62,0,0,0,3,15.700000000000001,0,0,0,0,114.23,0.15,3.2,89.35000000000001,998,229,0.6000000000000001 +2008,6,12,23,30,17.3,0.98,0.20800000000000002,0.62,0,0,0,0,15.5,0,0,0,0,114.73,0.15,3.2,89.19,998,247,0.5 +2008,6,13,0,30,17.2,1.04,0.221,0.62,0,0,0,0,15.4,0,0,0,0,112.33,0.16,3.1,88.95,998,271,0.5 +2008,6,13,1,30,17.1,1.09,0.224,0.62,0,0,0,0,15.200000000000001,0,0,0,0,107.32000000000001,0.16,3,88.4,997,296,0.5 +2008,6,13,2,30,16.900000000000002,1.12,0.20800000000000002,0.62,0,0,0,0,15,0,0,0,0,100.21000000000001,0.16,3,88.54,997,309,0.6000000000000001 +2008,6,13,3,30,17,1.1500000000000001,0.215,0.62,0,0,0,0,14.9,0,0,0,0,91.54,0.16,2.9000000000000004,87.34,997,312,0.7000000000000001 +2008,6,13,4,30,17.8,1.18,0.213,0.62,53,238,87,0,15.200000000000001,53,238,0,87,81.65,0.16,2.9000000000000004,84.91,998,307,1 +2008,6,13,5,30,19.200000000000003,1.2,0.196,0.62,93,496,253,0,15,93,496,0,253,71.18,0.16,2.8000000000000003,76.88,998,296,1.3 +2008,6,13,6,30,20.700000000000003,1.24,0.166,0.62,110,666,440,0,14.8,110,666,0,440,60.22,0.16,2.8000000000000003,69.14,998,283,1.4000000000000001 +2008,6,13,7,30,22.1,1.24,0.154,0.62,122,761,620,0,14.600000000000001,122,761,0,620,49.08,0.16,2.7,62.56,998,264,1.5 +2008,6,13,8,30,23.400000000000002,1.23,0.151,0.62,132,816,774,3,14.700000000000001,395,89,0,465,38.12,0.16,2.6,57.93,998,244,2 +2008,6,13,9,30,24.3,1.27,0.138,0.62,133,858,891,0,14.9,133,858,0,891,28,0.16,2.5,55.77,998,230,2.7 +2008,6,13,10,30,24.700000000000003,1.25,0.138,0.62,137,872,954,0,15.200000000000001,137,872,0,954,20.46,0.16,2.5,55.36,998,224,3.5 +2008,6,13,11,30,24.700000000000003,1.2,0.138,0.62,138,876,966,0,15.4,138,876,0,966,19.080000000000002,0.16,2.4000000000000004,56.08,998,220,4.2 +2008,6,13,12,30,24.3,1.08,0.157,0.62,145,851,917,1,15.5,145,851,0,917,24.93,0.16,2.4000000000000004,57.870000000000005,998,217,4.6000000000000005 +2008,6,13,13,30,23.8,1.04,0.149,0.62,136,831,821,0,15.5,136,831,0,821,34.44,0.16,2.4000000000000004,59.89,998,213,4.7 +2008,6,13,14,30,23.200000000000003,0.97,0.137,0.62,122,797,683,2,15.5,380,84,0,439,45.21,0.16,2.4000000000000004,61.76,999,209,4.5 +2008,6,13,15,30,22.5,0.9,0.139,0.62,110,726,513,0,15.200000000000001,110,726,0,513,56.34,0.16,2.3000000000000003,63.26,999,209,4.2 +2008,6,13,16,30,21.5,0.8200000000000001,0.14300000000000002,0.62,93,605,325,0,14.8,93,605,0,325,67.39,0.16,2.3000000000000003,65.66,999,211,3.7 +2008,6,13,17,30,20.3,0.74,0.153,0.62,66,386,146,0,14.600000000000001,66,386,0,146,78.07000000000001,0.16,2.2,69.82000000000001,999,215,2.8000000000000003 +2008,6,13,18,30,18.900000000000002,0.72,0.171,0.62,15,34,16,0,15.200000000000001,15,34,0,16,87.93,0.16,2.2,78.98,999,218,1.9000000000000001 +2008,6,13,19,30,17.900000000000002,0.71,0.182,0.62,0,0,0,0,15.5,0,0,0,0,97.32000000000001,0.16,2.1,86.10000000000001,1000,217,1.5 +2008,6,13,20,30,17.3,0.6900000000000001,0.188,0.62,0,0,0,0,15.600000000000001,0,0,0,0,105.02,0.16,2.2,89.67,1000,215,1.3 +2008,6,13,21,30,17,0.7000000000000001,0.201,0.62,0,0,0,0,15.600000000000001,0,0,0,0,110.82000000000001,0.16,2.2,91.76,1000,213,1.3 +2008,6,13,22,30,16.900000000000002,0.7000000000000001,0.203,0.62,0,0,0,0,15.8,0,0,0,0,114.17,0.16,2.1,93.33,1000,216,1.2000000000000002 +2008,6,13,23,30,16.7,0.7000000000000001,0.197,0.62,0,0,0,0,16,0,0,0,0,114.69,0.16,2.1,95.53,1000,225,1.3 +2008,6,14,0,30,16.400000000000002,0.74,0.188,0.62,0,0,0,0,15.9,0,0,0,0,112.3,0.16,2.1,96.8,1000,237,1.4000000000000001 +2008,6,14,1,30,16.1,0.77,0.165,0.62,0,0,0,0,15.600000000000001,0,0,0,0,107.3,0.16,2.1,96.93,1000,247,1.6 +2008,6,14,2,30,15.8,0.77,0.146,0.62,0,0,0,0,15.200000000000001,0,0,0,0,100.2,0.16,2,96.41,1000,254,1.6 +2008,6,14,3,30,16.3,0.79,0.152,0.62,0,0,0,0,14.9,0,0,0,0,91.53,0.16,2,91.48,1000,258,1.6 +2008,6,14,4,30,17.900000000000002,0.79,0.15,0.62,50,287,91,0,15.3,50,287,0,91,81.66,0.16,2.1,84.51,1000,261,2.2 +2008,6,14,5,30,19.400000000000002,0.78,0.14100000000000001,0.62,83,550,260,0,15,83,550,0,260,71.19,0.16,2.2,75.53,1000,260,2.8000000000000003 +2008,6,14,6,30,20.700000000000003,0.81,0.128,0.62,100,701,449,0,14.5,100,701,0,449,60.230000000000004,0.16,2.3000000000000003,67.57000000000001,1001,257,3.1 +2008,6,14,7,30,21.8,0.8300000000000001,0.11900000000000001,0.62,111,791,629,0,13.9,111,791,0,629,49.09,0.16,2.3000000000000003,60.99,1001,256,3.4000000000000004 +2008,6,14,8,30,22.700000000000003,0.84,0.11900000000000001,0.62,122,840,783,7,13.5,351,180,0,493,38.12,0.16,2.3000000000000003,56.09,1001,256,3.7 +2008,6,14,9,30,23.1,0.9,0.158,0.62,146,843,891,7,13.3,370,373,0,700,28,0.16,2.2,54.14,1001,252,4.1000000000000005 +2008,6,14,10,30,23.400000000000002,0.91,0.154,0.62,148,864,958,7,13.200000000000001,387,394,0,756,20.43,0.16,2.1,52.9,1001,248,4.4 +2008,6,14,11,30,23.6,0.92,0.136,0.62,139,882,973,7,13,359,440,0,775,19.02,0.16,2,51.57,1001,246,4.7 +2008,6,14,12,30,23.400000000000002,0.92,0.11800000000000001,0.62,128,885,931,6,12.700000000000001,421,235,0,634,24.87,0.16,2,51.050000000000004,1001,245,4.9 +2008,6,14,13,30,23,0.92,0.11800000000000001,0.62,123,861,834,0,12.3,123,861,0,834,34.37,0.16,2,50.77,1001,244,4.9 +2008,6,14,14,30,22.400000000000002,0.9,0.123,0.62,117,816,692,0,11.8,117,816,0,692,45.14,0.16,2,51.18,1001,245,4.7 +2008,6,14,15,30,21.6,0.87,0.126,0.62,105,745,519,0,11.5,105,745,0,519,56.27,0.16,2,52.71,1001,248,4.2 +2008,6,14,16,30,20.700000000000003,0.84,0.133,0.62,90,624,331,0,11.4,90,624,0,331,67.32000000000001,0.16,2,55.370000000000005,1002,251,3.5 +2008,6,14,17,30,19.3,0.8300000000000001,0.14300000000000002,0.62,64,409,149,0,11.700000000000001,64,409,0,149,78,0.16,2,61.56,1002,254,2.4000000000000004 +2008,6,14,18,30,17.7,0.8300000000000001,0.15,0.62,15,52,17,1,13.5,15,52,0,17,87.86,0.16,2.1,76.19,1002,257,1.5 +2008,6,14,19,30,16.900000000000002,0.8300000000000001,0.155,0.62,0,0,0,0,13.8,0,0,0,0,97.25,0.16,2.1,82.02,1002,268,1.2000000000000002 +2008,6,14,20,30,16.5,0.8300000000000001,0.159,0.62,0,0,0,0,13.9,0,0,0,0,104.96000000000001,0.16,2.1,84.66,1003,290,1.1 +2008,6,14,21,30,16.2,0.86,0.159,0.62,0,0,0,0,13.8,0,0,0,0,110.76,0.16,2.1,85.74,1003,315,1 +2008,6,14,22,30,15.700000000000001,0.89,0.151,0.62,0,0,0,0,13.5,0,0,0,0,114.12,0.16,2,86.97,1002,337,1 +2008,6,14,23,30,15,0.93,0.14400000000000002,0.62,0,0,0,0,13.200000000000001,0,0,0,0,114.65,0.16,2,88.79,1002,176,1.1 +2008,6,15,0,30,14.4,0.97,0.14100000000000001,0.62,0,0,0,0,12.700000000000001,0,0,0,0,112.27,0.16,2,89.68,1002,9,1.3 +2008,6,15,1,30,13.8,1,0.134,0.62,0,0,0,0,12.3,0,0,0,0,107.28,0.16,1.9000000000000001,90.62,1002,17,1.3 +2008,6,15,2,30,13.3,1.03,0.11800000000000001,0.62,0,0,0,0,11.9,0,0,0,0,100.19,0.16,1.9000000000000001,91.22,1002,23,1.2000000000000002 +2008,6,15,3,30,13.8,1.05,0.105,0.62,0,0,0,0,11.5,0,0,0,0,91.53,0.16,1.8,86.27,1002,30,1.2000000000000002 +2008,6,15,4,30,15.5,1.06,0.101,0.62,43,376,98,0,11.700000000000001,43,376,0,98,81.66,0.16,1.8,78.25,1002,29,1.2000000000000002 +2008,6,15,5,30,18.1,1.07,0.098,0.62,70,624,271,0,11.200000000000001,70,624,0,271,71.2,0.16,1.8,64.22,1002,173,1 +2008,6,15,6,30,20.6,1.07,0.097,0.62,88,750,461,0,9.200000000000001,88,750,0,461,60.25,0.16,1.9000000000000001,48.120000000000005,1003,300,1.2000000000000002 +2008,6,15,7,30,22.3,1.07,0.10300000000000001,0.62,104,820,640,0,8.5,104,820,0,640,49.11,0.16,1.9000000000000001,41.29,1003,272,1.9000000000000001 +2008,6,15,8,30,23.3,1.09,0.111,0.62,117,858,791,0,8.6,117,858,0,791,38.14,0.16,2,39.09,1003,262,2.5 +2008,6,15,9,30,23.8,1.09,0.128,0.62,131,871,900,0,8.8,131,871,0,900,28,0.16,2.1,38.51,1003,256,3.1 +2008,6,15,10,30,24.200000000000003,1.11,0.126,0.62,133,885,962,0,9.1,133,885,0,962,20.41,0.16,2.2,38.19,1002,249,3.5 +2008,6,15,11,30,24.400000000000002,1.12,0.123,0.62,132,887,971,7,9.600000000000001,269,622,0,857,18.97,0.16,2.3000000000000003,39,1002,243,3.9000000000000004 +2008,6,15,12,30,24.200000000000003,1.1400000000000001,0.149,0.62,142,857,920,0,10,142,857,0,920,24.8,0.16,2.4000000000000004,40.57,1002,240,4.2 +2008,6,15,13,30,23.6,1.11,0.153,0.62,138,827,821,0,10.3,138,827,0,821,34.31,0.16,2.5,43.09,1002,240,4.4 +2008,6,15,14,30,22.8,1.08,0.152,0.62,128,784,682,0,10.700000000000001,128,784,0,682,45.08,0.16,2.5,46.34,1003,242,4.3 +2008,6,15,15,30,21.900000000000002,1.05,0.148,0.62,113,720,514,0,11.100000000000001,113,720,0,514,56.21,0.16,2.4000000000000004,50.17,1003,244,3.9000000000000004 +2008,6,15,16,30,20.8,1.03,0.146,0.62,92,608,327,7,11.4,179,225,0,266,67.26,0.16,2.4000000000000004,54.72,1003,244,3.2 +2008,6,15,17,30,19.3,1.03,0.146,0.62,63,410,149,0,11.9,63,410,0,149,77.94,0.16,2.4000000000000004,62.08,1003,240,2.1 +2008,6,15,18,30,17.8,1.05,0.145,0.62,15,68,18,8,13.700000000000001,12,0,7,12,87.81,0.16,2.3000000000000003,76.69,1003,223,1.1 +2008,6,15,19,30,17.1,1.06,0.14300000000000002,0.62,0,0,0,8,14,0,0,0,0,97.19,0.16,2.3000000000000003,81.96000000000001,1002,197,0.9 +2008,6,15,20,30,16.7,1.05,0.153,0.62,0,0,0,3,13.9,0,0,0,0,104.9,0.16,2.2,83.81,1002,179,1 +2008,6,15,21,30,16.400000000000002,1.04,0.166,0.62,0,0,0,0,14,0,0,0,0,110.71000000000001,0.16,2.3000000000000003,85.48,1002,170,1 +2008,6,15,22,30,16.3,1.01,0.17400000000000002,0.62,0,0,0,1,13.9,0,0,0,0,114.07000000000001,0.16,2.3000000000000003,85.46000000000001,1002,168,1 +2008,6,15,23,30,16.2,0.97,0.188,0.62,0,0,0,5,13.8,0,0,0,0,114.61,0.16,2.4000000000000004,85.73,1002,168,1 +2008,6,16,0,30,16,0.99,0.197,0.62,0,0,0,7,13.8,0,0,0,0,112.25,0.16,2.5,86.67,1002,164,1 +2008,6,16,1,30,15.8,1.04,0.188,0.62,0,0,0,4,13.5,0,0,0,0,107.27,0.16,2.6,86.49,1002,160,1.1 +2008,6,16,2,30,16,1.07,0.18,0.62,0,0,0,4,13.700000000000001,0,0,0,0,100.19,0.16,2.7,86.2,1002,155,1.2000000000000002 +2008,6,16,3,30,16.5,1.06,0.19,0.62,0,0,0,4,13.9,0,0,0,0,91.54,0.16,2.8000000000000003,84.71000000000001,1002,148,1.4000000000000001 +2008,6,16,4,30,17.7,1.05,0.197,0.62,52,242,87,3,14.200000000000001,36,0,0,36,81.67,0.16,2.9000000000000004,79.92,1002,146,2.3000000000000003 +2008,6,16,5,30,19.3,1.05,0.192,0.62,92,491,250,5,14,164,12,0,168,71.22,0.16,2.9000000000000004,71.46000000000001,1003,151,3.2 +2008,6,16,6,30,20.900000000000002,1.05,0.179,0.62,115,645,435,5,13.8,236,20,0,246,60.27,0.16,2.9000000000000004,63.68,1003,158,3.5 +2008,6,16,7,30,22.400000000000002,1.04,0.17200000000000001,0.62,130,739,614,2,13.4,343,249,0,506,49.13,0.16,2.8000000000000003,56.84,1002,165,3.6 +2008,6,16,8,30,23.700000000000003,1.03,0.168,0.62,141,795,766,0,13.700000000000001,141,795,0,766,38.15,0.16,2.8000000000000003,53.370000000000005,1002,172,3.9000000000000004 +2008,6,16,9,30,24.6,1.03,0.17200000000000001,0.62,150,825,879,7,13.8,261,628,0,816,28.01,0.16,2.7,51.07,1002,179,4.3 +2008,6,16,10,30,25.1,1.02,0.17200000000000001,0.62,155,843,945,7,13.600000000000001,278,626,0,864,20.400000000000002,0.16,2.6,48.83,1001,184,4.7 +2008,6,16,11,30,25.3,1.01,0.17200000000000001,0.62,155,845,955,7,13.200000000000001,288,546,0,805,18.93,0.16,2.6,46.980000000000004,1001,187,4.800000000000001 +2008,6,16,12,30,25.400000000000002,1.04,0.147,0.62,141,855,917,0,12.8,141,855,0,917,24.75,0.16,2.5,45.5,1001,187,4.800000000000001 +2008,6,16,13,30,25.400000000000002,1.09,0.133,0.62,129,844,826,0,12.4,129,844,0,826,34.25,0.16,2.4000000000000004,44.410000000000004,1001,186,4.6000000000000005 +2008,6,16,14,30,25.1,1.1500000000000001,0.123,0.62,115,812,689,0,12,115,812,0,689,45.02,0.16,2.4000000000000004,44.08,1001,182,4.3 +2008,6,16,15,30,24.6,1.19,0.112,0.62,99,758,521,0,11.8,99,758,0,521,56.15,0.16,2.4000000000000004,44.82,1001,174,3.9000000000000004 +2008,6,16,16,30,23.700000000000003,1.21,0.105,0.62,79,660,335,0,11.9,79,660,0,335,67.2,0.16,2.4000000000000004,47.42,1001,165,3.4000000000000004 +2008,6,16,17,30,21.8,1.23,0.10400000000000001,0.62,55,475,155,0,12.8,55,475,0,155,77.88,0.16,2.4000000000000004,56.61,1001,158,2.5 +2008,6,16,18,30,19.8,1.23,0.10400000000000001,0.62,15,114,20,0,14.4,15,114,0,20,87.75,0.16,2.3000000000000003,70.98,1001,153,2 +2008,6,16,19,30,18.7,1.23,0.10200000000000001,0.62,0,0,0,0,14.200000000000001,0,0,0,0,97.13,0.16,2.3000000000000003,75.22,1001,148,2 +2008,6,16,20,30,18.1,1.23,0.101,0.62,0,0,0,0,14.100000000000001,0,0,0,0,104.85000000000001,0.16,2.3000000000000003,77.68,1002,142,2 +2008,6,16,21,30,17.7,1.23,0.10300000000000001,0.62,0,0,0,0,13.9,0,0,0,0,110.66,0.16,2.3000000000000003,78.25,1001,137,2.2 +2008,6,16,22,30,17.5,1.21,0.109,0.62,0,0,0,0,13.4,0,0,0,0,114.04,0.16,2.3000000000000003,76.84,1001,132,2.4000000000000004 +2008,6,16,23,30,17.5,1.16,0.116,0.62,0,0,0,0,12.700000000000001,0,0,0,0,114.58,0.16,2.3000000000000003,73.55,1001,128,2.7 +2008,6,17,0,30,17.5,1.12,0.11900000000000001,0.62,0,0,0,0,12,0,0,0,0,112.23,0.15,2.3000000000000003,69.97,1000,126,3 +2008,6,17,1,30,17.6,1.09,0.117,0.62,0,0,0,0,11.3,0,0,0,0,107.26,0.15,2.3000000000000003,66.78,1000,124,3.1 +2008,6,17,2,30,17.6,1.06,0.117,0.62,0,0,0,0,11.100000000000001,0,0,0,0,100.19,0.15,2.3000000000000003,65.83,1000,125,3.2 +2008,6,17,3,30,18.400000000000002,0.97,0.127,0.62,0,0,0,0,11.4,0,0,0,0,91.55,0.15,2.4000000000000004,63.7,1000,126,3.3000000000000003 +2008,6,17,4,30,20.6,0.89,0.148,0.62,48,289,89,0,12.200000000000001,48,289,0,89,81.69,0.15,2.5,58.5,1000,130,4 +2008,6,17,5,30,23.1,0.8300000000000001,0.179,0.62,91,498,251,0,12.8,91,498,0,251,71.24,0.15,2.7,52.42,1000,142,5 +2008,6,17,6,30,24.900000000000002,0.74,0.226,0.62,132,590,424,7,14.600000000000001,237,185,0,329,60.29,0.15,3,52.800000000000004,1001,161,5.800000000000001 +2008,6,17,7,30,25.5,0.62,0.293,0.62,177,621,583,7,16.6,319,218,0,462,49.15,0.15,3.4000000000000004,57.93,1001,179,6 +2008,6,17,8,30,25.1,0.52,0.34900000000000003,0.62,219,638,721,7,17.7,373,171,0,508,38.17,0.15,3.7,63.64,1002,193,5.5 +2008,6,17,9,30,24.3,0.45,0.448,0.62,272,613,814,7,18.1,44,0,0,44,28.02,0.15,3.9000000000000004,68.42,1003,205,4.4 +2008,6,17,10,30,23.900000000000002,0.56,0.41400000000000003,0.62,266,659,884,8,18,335,7,0,342,20.39,0.15,4,69.46000000000001,1004,219,2.9000000000000004 +2008,6,17,11,30,24.400000000000002,0.61,0.375,0.62,248,688,898,7,17,78,0,0,78,18.89,0.15,3.9000000000000004,63.47,1004,234,1.7000000000000002 +2008,6,17,12,30,25.6,0.63,0.311,0.62,217,715,866,4,16,39,0,0,39,24.7,0.15,3.8000000000000003,55.52,1003,245,1.1 +2008,6,17,13,30,26.900000000000002,0.58,0.299,0.62,204,692,776,7,15,202,2,0,203,34.19,0.15,3.6,48.19,1003,248,0.9 +2008,6,17,14,30,27.700000000000003,0.5700000000000001,0.269,0.62,178,662,647,8,14.4,241,11,0,250,44.96,0.15,3.5,44.07,1002,232,0.8 +2008,6,17,15,30,27.5,0.6,0.248,0.62,150,600,485,3,14,312,125,0,382,56.09,0.15,3.4000000000000004,43.57,1002,220,0.7000000000000001 +2008,6,17,16,30,26.6,0.62,0.249,0.62,122,472,305,0,14.3,122,472,0,305,67.15,0.15,3.4000000000000004,46.71,1002,240,0.7000000000000001 +2008,6,17,17,30,24.700000000000003,0.62,0.269,0.62,81,249,134,7,16.2,42,1,0,42,77.83,0.15,3.4000000000000004,59.01,1002,283,0.6000000000000001 +2008,6,17,18,30,22.900000000000002,0.62,0.312,0.62,11,7,12,7,17.8,2,0,7,2,87.71000000000001,0.15,3.6,72.99,1003,327,0.8 +2008,6,17,19,30,21.8,0.63,0.352,0.62,0,0,0,7,17.3,0,0,0,0,97.08,0.15,3.7,75.72,1003,184,1.3 +2008,6,17,20,30,21.1,0.62,0.381,0.62,0,0,0,6,16.900000000000002,0,0,0,0,104.8,0.15,3.7,77.07000000000001,1003,41,1.8 +2008,6,17,21,30,20.700000000000003,0.62,0.384,0.62,0,0,0,3,17,0,0,0,0,110.62,0.15,3.6,79.51,1002,67,1.9000000000000001 +2008,6,17,22,30,20.700000000000003,0.62,0.361,0.62,0,0,0,3,17.2,0,0,0,0,114.01,0.15,3.4000000000000004,80.38,1001,77,1.6 +2008,6,17,23,30,20.6,0.61,0.322,0.62,0,0,0,0,17.2,0,0,0,0,114.56,0.15,3.2,80.65,1001,73,1.4000000000000001 +2008,6,18,0,30,20.1,0.62,0.265,0.62,0,0,0,5,16.8,0,0,0,0,112.22,0.15,2.9000000000000004,81.42,1000,61,1.3 +2008,6,18,1,30,19.400000000000002,0.64,0.216,0.62,0,0,0,0,16.1,0,0,0,0,107.27,0.15,2.7,81.23,1000,52,1.4000000000000001 +2008,6,18,2,30,19,0.68,0.186,0.62,0,0,0,0,15.700000000000001,0,0,0,0,100.2,0.15,2.5,81.18,1000,47,1.4000000000000001 +2008,6,18,3,30,19.400000000000002,0.71,0.17300000000000001,0.62,0,0,0,0,15.4,0,0,0,0,91.57000000000001,0.15,2.5,77.73,1000,39,1.4000000000000001 +2008,6,18,4,30,21,0.72,0.171,0.62,51,250,87,0,16.3,51,250,0,87,81.71000000000001,0.15,2.5,74.76,1001,25,1.6 +2008,6,18,5,30,22.8,0.73,0.171,0.62,90,506,253,0,16.2,90,506,0,253,71.26,0.15,2.4000000000000004,66.43,1001,184,2 +2008,6,18,6,30,24.700000000000003,0.75,0.162,0.62,112,661,439,0,15.8,112,661,0,439,60.32,0.15,2.4000000000000004,57.52,1002,341,2.4000000000000004 +2008,6,18,7,30,26.400000000000002,0.73,0.155,0.62,126,755,620,0,15.100000000000001,126,755,0,620,49.18,0.15,2.3000000000000003,49.84,1002,327,2.8000000000000003 +2008,6,18,8,30,27.5,0.71,0.149,0.62,135,812,773,0,15.200000000000001,135,812,0,773,38.2,0.15,2.3000000000000003,46.99,1002,314,3 +2008,6,18,9,30,28.3,0.79,0.128,0.62,131,861,891,0,15.3,131,861,0,891,28.04,0.15,2.3000000000000003,45.230000000000004,1002,301,3 +2008,6,18,10,30,28.900000000000002,0.81,0.12,0.62,130,882,957,0,15.3,130,882,0,957,20.39,0.15,2.3000000000000003,43.6,1002,289,3.1 +2008,6,18,11,30,29.200000000000003,0.81,0.115,0.62,128,889,969,0,15.200000000000001,128,889,0,969,18.86,0.15,2.3000000000000003,42.63,1002,281,3.4000000000000004 +2008,6,18,12,30,29.3,0.76,0.121,0.62,129,874,923,0,15.100000000000001,129,874,0,923,24.650000000000002,0.15,2.3000000000000003,42,1002,276,3.7 +2008,6,18,13,30,29,0.78,0.11900000000000001,0.62,123,852,828,0,14.9,123,852,0,828,34.14,0.15,2.3000000000000003,42.35,1003,275,3.9000000000000004 +2008,6,18,14,30,28.5,0.8,0.11900000000000001,0.62,115,810,688,0,14.8,115,810,0,688,44.910000000000004,0.15,2.4000000000000004,43.35,1003,277,4.1000000000000005 +2008,6,18,15,30,27.700000000000003,0.8300000000000001,0.117,0.62,101,746,518,0,14.8,101,746,0,518,56.04,0.15,2.4000000000000004,45.25,1003,281,4.1000000000000005 +2008,6,18,16,30,26.3,0.86,0.116,0.62,84,639,332,0,14.9,84,639,0,332,67.1,0.15,2.4000000000000004,49.5,1003,284,3.9000000000000004 +2008,6,18,17,30,24.1,0.88,0.115,0.62,58,448,153,0,15.600000000000001,58,448,0,153,77.78,0.15,2.4000000000000004,59.050000000000004,1003,285,3.2 +2008,6,18,18,30,21.900000000000002,0.92,0.112,0.62,16,91,20,0,16.8,16,91,0,20,87.66,0.15,2.4000000000000004,73,1004,289,2.6 +2008,6,18,19,30,20.6,0.93,0.109,0.62,0,0,0,0,17.3,0,0,0,0,97.04,0.15,2.4000000000000004,81.16,1004,296,2.2 +2008,6,18,20,30,19.900000000000002,0.9500000000000001,0.105,0.62,0,0,0,0,17.400000000000002,0,0,0,0,104.76,0.15,2.4000000000000004,85.65,1005,304,1.8 +2008,6,18,21,30,19.400000000000002,0.9500000000000001,0.101,0.62,0,0,0,0,17.400000000000002,0,0,0,0,110.59,0.15,2.4000000000000004,88.39,1005,312,1.5 +2008,6,18,22,30,19.1,0.96,0.098,0.62,0,0,0,0,17.3,0,0,0,0,113.98,0.15,2.4000000000000004,89.39,1005,322,1.2000000000000002 +2008,6,18,23,30,18.900000000000002,0.97,0.097,0.62,0,0,0,0,17.1,0,0,0,0,114.55,0.15,2.4000000000000004,89.27,1005,334,1.1 +2008,6,19,0,30,18.7,0.98,0.096,0.62,0,0,0,0,16.8,0,0,0,0,112.22,0.16,2.4000000000000004,88.66,1004,349,1 +2008,6,19,1,30,18.400000000000002,0.97,0.096,0.62,0,0,0,0,16.5,0,0,0,0,107.27,0.16,2.3000000000000003,88.51,1004,181,1 +2008,6,19,2,30,18.1,0.96,0.095,0.62,0,0,0,0,16.1,0,0,0,0,100.22,0.16,2.3000000000000003,88.26,1004,11,1 +2008,6,19,3,30,18.5,0.96,0.095,0.62,0,0,0,0,15.9,0,0,0,0,91.59,0.16,2.3000000000000003,84.74,1005,20,1.1 +2008,6,19,4,30,20.1,0.97,0.095,0.62,41,368,94,0,16.400000000000002,41,368,0,94,81.74,0.16,2.3000000000000003,79.14,1005,23,1.4000000000000001 +2008,6,19,5,30,22.6,0.98,0.091,0.62,68,617,266,0,15.8,68,617,0,266,71.29,0.16,2.3000000000000003,65.62,1005,191,1.7000000000000002 +2008,6,19,6,30,25.1,0.9400000000000001,0.091,0.62,86,744,454,0,15.100000000000001,86,744,0,454,60.35,0.16,2.3000000000000003,53.74,1005,350,1.7000000000000002 +2008,6,19,7,30,26.900000000000002,0.9400000000000001,0.091,0.62,98,819,633,0,14.8,98,819,0,633,49.21,0.16,2.3000000000000003,47.34,1005,329,1.8 +2008,6,19,8,30,28.200000000000003,0.9400000000000001,0.091,0.62,106,865,786,0,14.8,106,865,0,786,38.230000000000004,0.16,2.3000000000000003,44.13,1005,308,2 +2008,6,19,9,30,29.1,0.81,0.11,0.62,123,876,896,0,14.9,123,876,0,896,28.060000000000002,0.16,2.3000000000000003,42.17,1005,292,2.4000000000000004 +2008,6,19,10,30,29.700000000000003,0.87,0.105,0.62,122,893,959,0,14.9,122,893,0,959,20.400000000000002,0.16,2.4000000000000004,40.68,1005,283,2.9000000000000004 +2008,6,19,11,30,30.1,0.9500000000000001,0.10200000000000001,0.62,121,898,971,0,14.9,121,898,0,971,18.84,0.16,2.4000000000000004,39.62,1005,278,3.4000000000000004 +2008,6,19,12,30,30.1,0.79,0.135,0.62,136,859,918,0,14.8,136,859,0,918,24.61,0.16,2.5,39.44,1004,275,3.8000000000000003 +2008,6,19,13,30,29.900000000000002,0.86,0.134,0.62,129,838,823,0,14.8,129,838,0,823,34.09,0.16,2.5,39.82,1004,274,4.2 +2008,6,19,14,30,29.400000000000002,0.92,0.129,0.62,118,799,684,0,14.8,118,799,0,684,44.87,0.16,2.6,40.980000000000004,1004,275,4.4 +2008,6,19,15,30,28.5,0.98,0.11900000000000001,0.62,101,744,517,0,14.8,101,744,0,517,55.99,0.16,2.6,43.19,1004,275,4.6000000000000005 +2008,6,19,16,30,26.900000000000002,1.04,0.113,0.62,82,644,333,0,14.9,82,644,0,333,67.05,0.16,2.6,47.89,1004,275,4.6000000000000005 +2008,6,19,17,30,24.6,1.07,0.111,0.62,56,459,154,0,15.700000000000001,56,459,0,154,77.73,0.16,2.6,57.54,1005,275,4.1000000000000005 +2008,6,19,18,30,22.400000000000002,1.07,0.114,0.62,16,98,20,0,16.7,16,98,0,20,87.62,0.16,2.6,70.27,1005,281,3.2 +2008,6,19,19,30,21.1,1.09,0.113,0.62,0,0,0,0,17.400000000000002,0,0,0,0,97,0.16,2.6,79.55,1006,291,2.4000000000000004 +2008,6,19,20,30,20.400000000000002,1.09,0.113,0.62,0,0,0,0,17.8,0,0,0,0,104.73,0.16,2.6,85.03,1006,306,1.8 +2008,6,19,21,30,20,1.08,0.113,0.62,0,0,0,0,17.900000000000002,0,0,0,0,110.56,0.16,2.6,87.75,1006,324,1.4000000000000001 +2008,6,19,22,30,19.8,1.08,0.111,0.62,0,0,0,0,17.8,0,0,0,0,113.96000000000001,0.16,2.6,88.12,1006,342,1.3 +2008,6,19,23,30,19.6,1.08,0.107,0.62,0,0,0,0,17.400000000000002,0,0,0,0,114.54,0.16,2.6,87.31,1005,354,1.3 +2008,6,20,0,30,19.5,1.09,0.10300000000000001,0.62,0,0,0,0,17,0,0,0,0,112.22,0.16,2.5,85.59,1005,182,1.3 +2008,6,20,1,30,19.3,1.09,0.099,0.62,0,0,0,0,16.6,0,0,0,0,107.29,0.16,2.5,84.29,1005,5,1.3 +2008,6,20,2,30,19.1,1.07,0.096,0.62,0,0,0,0,16.1,0,0,0,0,100.24000000000001,0.16,2.5,83.01,1005,9,1.3 +2008,6,20,3,30,19.700000000000003,1.05,0.094,0.62,0,0,0,0,15.8,0,0,0,0,91.62,0.16,2.4000000000000004,78.12,1005,14,1.2000000000000002 +2008,6,20,4,30,21.5,1.04,0.091,0.62,40,374,94,0,16.5,40,374,0,94,81.77,0.16,2.4000000000000004,73.33,1006,21,1.4000000000000001 +2008,6,20,5,30,24.1,1.03,0.088,0.62,66,619,265,0,15.600000000000001,66,619,0,265,71.33,0.16,2.4000000000000004,59,1006,22,1.5 +2008,6,20,6,30,26.8,1.04,0.083,0.62,82,754,455,0,15.100000000000001,82,754,0,455,60.38,0.16,2.3000000000000003,48.6,1006,14,1.1 +2008,6,20,7,30,28.900000000000002,1.04,0.081,0.62,93,830,634,0,14.200000000000001,93,830,0,634,49.24,0.16,2.3000000000000003,40.77,1006,173,0.7000000000000001 +2008,6,20,8,30,30.3,1.03,0.082,0.62,101,873,787,0,13.700000000000001,101,873,0,787,38.26,0.16,2.3000000000000003,36.39,1006,295,0.6000000000000001 +2008,6,20,9,30,31.1,0.98,0.096,0.62,114,889,898,0,13.5,114,889,0,898,28.09,0.16,2.3000000000000003,34.32,1006,245,1.2000000000000002 +2008,6,20,10,30,31.6,0.98,0.101,0.62,120,899,962,0,13.700000000000001,120,899,0,962,20.41,0.16,2.3000000000000003,33.660000000000004,1006,238,2.1 +2008,6,20,11,30,31.700000000000003,1,0.107,0.62,123,895,970,0,14,123,895,0,970,18.830000000000002,0.16,2.4000000000000004,34.19,1006,239,3 +2008,6,20,12,30,31.5,1.04,0.113,0.62,124,879,923,0,14.3,124,879,0,923,24.57,0.16,2.5,35.24,1006,243,3.7 +2008,6,20,13,30,31,1.06,0.12,0.62,121,849,825,0,14.600000000000001,121,849,0,825,34.05,0.16,2.6,36.88,1006,248,4.2 +2008,6,20,14,30,30.200000000000003,1.09,0.124,0.62,114,804,685,0,14.8,114,804,0,685,44.82,0.16,2.7,39.31,1006,253,4.5 +2008,6,20,15,30,29.1,1.11,0.124,0.62,102,739,516,0,15.100000000000001,102,739,0,516,55.95,0.16,2.7,42.660000000000004,1006,257,4.5 +2008,6,20,16,30,27.700000000000003,1.1400000000000001,0.121,0.62,84,638,333,0,15.3,84,638,0,333,67.01,0.16,2.6,46.800000000000004,1006,261,4.1000000000000005 +2008,6,20,17,30,25.5,1.18,0.116,0.62,57,457,154,0,15.8,57,457,0,154,77.69,0.16,2.6,54.93,1006,266,3.1 +2008,6,20,18,30,23.3,1.22,0.109,0.62,16,114,20,0,16.900000000000002,16,114,0,20,87.58,0.16,2.5,67.14,1006,273,2 +2008,6,20,19,30,21.900000000000002,1.24,0.106,0.62,0,0,0,0,17.3,0,0,0,0,96.96000000000001,0.16,2.5,75.08,1007,284,1.4000000000000001 +2008,6,20,20,30,21.400000000000002,1.25,0.10300000000000001,0.62,0,0,0,0,17.400000000000002,0,0,0,0,104.7,0.16,2.4000000000000004,77.88,1007,297,1 +2008,6,20,21,30,21.400000000000002,1.25,0.10200000000000001,0.62,0,0,0,0,17.2,0,0,0,0,110.54,0.16,2.4000000000000004,77.18,1007,321,0.7000000000000001 +2008,6,20,22,30,21.6,1.24,0.1,0.62,0,0,0,0,16.8,0,0,0,0,113.95,0.16,2.3000000000000003,74.07000000000001,1007,196,0.5 +2008,6,20,23,30,21.400000000000002,1.24,0.097,0.62,0,0,0,0,16.5,0,0,0,0,114.54,0.16,2.3000000000000003,73.65,1007,75,0.6000000000000001 +2008,6,21,0,30,21,1.23,0.095,0.62,0,0,0,0,16.400000000000002,0,0,0,0,112.23,0.15,2.3000000000000003,74.79,1007,101,0.8 +2008,6,21,1,30,20.700000000000003,1.22,0.095,0.62,0,0,0,0,16.1,0,0,0,0,107.3,0.15,2.3000000000000003,74.94,1007,111,1 +2008,6,21,2,30,20.5,1.22,0.095,0.62,0,0,0,0,15.8,0,0,0,0,100.27,0.15,2.3000000000000003,74.43,1007,114,1.1 +2008,6,21,3,30,20.900000000000002,1.21,0.095,0.62,0,0,0,0,15.600000000000001,0,0,0,0,91.65,0.15,2.3000000000000003,71.63,1007,114,1 +2008,6,21,4,30,22.900000000000002,1.21,0.096,0.62,40,373,93,0,16.8,40,373,0,93,81.8,0.15,2.4000000000000004,68.35000000000001,1007,113,1.3 +2008,6,21,5,30,25.6,1.21,0.097,0.62,68,611,263,0,15.9,68,611,0,263,71.36,0.15,2.4000000000000004,55.02,1007,125,1.4000000000000001 +2008,6,21,6,30,28.1,1.23,0.097,0.62,85,739,450,0,15.100000000000001,85,739,0,450,60.42,0.15,2.4000000000000004,44.99,1008,151,1.3 +2008,6,21,7,30,30,1.24,0.099,0.62,99,810,628,0,14.4,99,810,0,628,49.28,0.15,2.5,38.56,1008,177,1.3 +2008,6,21,8,30,31.200000000000003,1.24,0.10200000000000001,0.62,109,854,779,0,14.600000000000001,109,854,0,779,38.300000000000004,0.15,2.5,36.61,1008,197,1.4000000000000001 +2008,6,21,9,30,31.900000000000002,1.29,0.1,0.62,113,884,893,0,14.9,113,884,0,893,28.12,0.15,2.5,35.92,1008,212,1.8 +2008,6,21,10,30,32.4,1.3,0.10400000000000001,0.62,118,893,955,0,15,118,893,0,955,20.43,0.15,2.6,35.050000000000004,1008,222,2.4000000000000004 +2008,6,21,11,30,32.5,1.31,0.108,0.62,120,893,965,0,15.100000000000001,120,893,0,965,18.82,0.15,2.6,35,1008,229,3.1 +2008,6,21,12,30,32.300000000000004,1.34,0.112,0.62,119,879,919,0,15.100000000000001,119,879,0,919,24.54,0.15,2.7,35.52,1008,234,3.7 +2008,6,21,13,30,31.700000000000003,1.34,0.11900000000000001,0.62,118,849,822,0,15.200000000000001,118,849,0,822,34.02,0.15,2.8000000000000003,36.93,1008,239,4.1000000000000005 +2008,6,21,14,30,31,1.35,0.126,0.62,113,804,684,0,15.3,113,804,0,684,44.78,0.15,2.8000000000000003,38.7,1008,244,4.3 +2008,6,21,15,30,30,1.35,0.13,0.62,102,736,514,0,15.5,102,736,0,514,55.910000000000004,0.15,2.8000000000000003,41.410000000000004,1008,248,4.1000000000000005 +2008,6,21,16,30,28.6,1.35,0.133,0.62,85,624,329,0,15.700000000000001,85,624,0,329,66.97,0.15,2.9000000000000004,45.46,1008,251,3.6 +2008,6,21,17,30,26.400000000000002,1.35,0.134,0.62,58,436,152,0,16.2,58,436,0,152,77.65,0.15,2.9000000000000004,53.480000000000004,1008,254,2.5 +2008,6,21,18,30,24.3,1.36,0.132,0.62,15,101,20,0,17.6,15,101,0,20,87.55,0.15,2.9000000000000004,66.1,1008,261,1.4000000000000001 +2008,6,21,19,30,23.200000000000003,1.36,0.13,0.62,0,0,0,0,18.3,0,0,0,0,96.93,0.15,2.9000000000000004,73.74,1009,275,0.8 +2008,6,21,20,30,23,1.36,0.128,0.62,0,0,0,0,18.2,0,0,0,0,104.68,0.15,2.9000000000000004,74.54,1009,306,0.4 +2008,6,21,21,30,23.1,1.36,0.127,0.62,0,0,0,0,17.8,0,0,0,0,110.52,0.15,2.9000000000000004,72.15,1009,202,0.30000000000000004 +2008,6,21,22,30,22.900000000000002,1.37,0.126,0.62,0,0,0,0,17.6,0,0,0,0,113.95,0.15,2.9000000000000004,72.16,1009,84,0.5 +2008,6,21,23,30,22.6,1.37,0.125,0.62,0,0,0,0,17.6,0,0,0,0,114.55,0.15,2.8000000000000003,73.18,1009,93,0.7000000000000001 +2008,6,22,0,30,22.400000000000002,1.37,0.124,0.62,0,0,0,0,17.400000000000002,0,0,0,0,112.25,0.16,2.8000000000000003,73.16,1009,97,0.9 +2008,6,22,1,30,22.200000000000003,1.37,0.122,0.62,0,0,0,0,17.1,0,0,0,0,107.33,0.16,2.8000000000000003,73.01,1009,100,0.9 +2008,6,22,2,30,22.1,1.37,0.11900000000000001,0.62,0,0,0,0,16.8,0,0,0,0,100.3,0.16,2.7,71.99,1009,103,1 +2008,6,22,3,30,22.400000000000002,1.37,0.116,0.62,0,0,0,0,16.5,0,0,0,0,91.68,0.16,2.7,69.5,1009,109,1 +2008,6,22,4,30,24.200000000000003,1.3800000000000001,0.112,0.62,41,351,91,0,17.7,41,351,0,91,81.84,0.16,2.7,67.25,1009,120,1.3 +2008,6,22,5,30,26.6,1.3900000000000001,0.11,0.62,71,595,260,0,16.6,71,595,0,260,71.4,0.16,2.6,54.21,1009,144,1.4000000000000001 +2008,6,22,6,30,28.8,1.41,0.11,0.62,89,722,445,0,15.9,89,722,0,445,60.46,0.16,2.7,45.65,1010,182,1.2000000000000002 +2008,6,22,7,30,30.5,1.41,0.113,0.62,104,796,622,0,15.700000000000001,104,796,0,622,49.32,0.16,2.7,40.83,1010,211,1.5 +2008,6,22,8,30,31.5,1.42,0.117,0.62,115,840,774,0,15.8,115,840,0,774,38.34,0.16,2.7,38.82,1010,221,2 +2008,6,22,9,30,32.1,1.28,0.139,0.62,133,852,884,0,16,133,852,0,884,28.16,0.16,2.7,37.93,1010,226,2.6 +2008,6,22,10,30,32.4,1.3,0.145,0.62,139,863,948,0,16.1,139,863,0,948,20.45,0.16,2.7,37.68,1010,228,3.1 +2008,6,22,11,30,32.5,1.32,0.152,0.62,143,861,958,0,16.2,143,861,0,958,18.81,0.16,2.7,37.68,1010,231,3.5 +2008,6,22,12,30,32.2,1.3800000000000001,0.155,0.62,141,850,914,0,16.3,141,850,0,914,24.52,0.16,2.7,38.42,1009,235,3.8000000000000003 +2008,6,22,13,30,31.700000000000003,1.3900000000000001,0.16,0.62,137,823,819,0,16.3,137,823,0,819,33.980000000000004,0.16,2.7,39.57,1009,240,3.8000000000000003 +2008,6,22,14,30,31,1.4000000000000001,0.162,0.62,128,779,682,0,16.3,128,779,0,682,44.75,0.16,2.7,41.11,1009,246,3.6 +2008,6,22,15,30,30.3,1.41,0.161,0.62,114,710,512,0,16.2,114,710,0,512,55.870000000000005,0.16,2.8000000000000003,42.660000000000004,1009,254,3.1 +2008,6,22,16,30,29.3,1.42,0.162,0.62,94,599,329,0,16.2,94,599,0,329,66.93,0.16,2.8000000000000003,45.230000000000004,1009,262,2.4000000000000004 +2008,6,22,17,30,27.5,1.43,0.164,0.62,64,409,151,0,16.900000000000002,64,409,0,151,77.62,0.16,2.8000000000000003,52.38,1009,269,1.6 +2008,6,22,18,30,25.6,1.43,0.165,0.62,16,84,20,0,18.7,16,84,0,20,87.53,0.16,2.9000000000000004,65.82000000000001,1009,278,1.1 +2008,6,22,19,30,24.900000000000002,1.44,0.165,0.62,0,0,0,0,18.7,0,0,0,0,96.91,0.16,2.9000000000000004,68.28,1009,296,1 +2008,6,22,20,30,24.6,1.45,0.164,0.62,0,0,0,0,18.3,0,0,0,0,104.66,0.16,2.9000000000000004,68.02,1009,323,0.9 +2008,6,22,21,30,24.3,1.45,0.162,0.62,0,0,0,0,18,0,0,0,0,110.52,0.16,2.9000000000000004,68.11,1009,348,0.9 +2008,6,22,22,30,24,1.45,0.161,0.62,0,0,0,0,17.900000000000002,0,0,0,0,113.95,0.16,2.8000000000000003,68.88,1009,188,1 +2008,6,22,23,30,23.700000000000003,1.44,0.159,0.62,0,0,0,0,17.8,0,0,0,0,114.56,0.16,2.8000000000000003,69.64,1009,21,1 +2008,6,23,0,30,23.5,1.44,0.155,0.62,0,0,0,0,17.7,0,0,0,0,112.27,0.15,2.7,69.78,1009,27,1.1 +2008,6,23,1,30,23.5,1.43,0.152,0.62,0,0,0,0,17.400000000000002,0,0,0,0,107.36,0.15,2.7,68.8,1009,31,1.1 +2008,6,23,2,30,23.400000000000002,1.42,0.147,0.62,0,0,0,0,17.2,0,0,0,0,100.33,0.15,2.6,68.11,1009,36,1.1 +2008,6,23,3,30,23.6,1.42,0.14300000000000002,0.62,0,0,0,0,17,0,0,0,0,91.73,0.15,2.5,66.4,1009,45,1 +2008,6,23,4,30,25.200000000000003,1.43,0.138,0.62,44,323,90,0,18.400000000000002,44,323,0,90,81.89,0.15,2.5,65.88,1009,52,1.1 +2008,6,23,5,30,27.8,1.44,0.135,0.62,77,569,258,0,17,77,569,0,258,71.45,0.15,2.5,51.93,1009,32,1.1 +2008,6,23,6,30,30.1,1.45,0.133,0.62,98,704,444,0,15.3,98,704,0,444,60.51,0.15,2.5,40.81,1009,155,0.7000000000000001 +2008,6,23,7,30,31.6,1.45,0.133,0.62,112,783,622,0,15.3,112,783,0,622,49.370000000000005,0.15,2.5,37.26,1009,275,0.8 +2008,6,23,8,30,32.6,1.46,0.133,0.62,122,833,775,0,15.5,122,833,0,775,38.39,0.15,2.5,35.72,1009,245,1.3 +2008,6,23,9,30,33.2,1.56,0.132,0.62,128,864,889,0,15.700000000000001,128,864,0,889,28.21,0.15,2.5,34.96,1009,240,2 +2008,6,23,10,30,33.6,1.56,0.136,0.62,133,876,953,0,15.9,133,876,0,953,20.490000000000002,0.15,2.5,34.64,1008,240,2.6 +2008,6,23,11,30,33.7,1.55,0.14100000000000001,0.62,136,873,962,0,16,136,873,0,962,18.82,0.15,2.6,34.81,1008,242,3.2 +2008,6,23,12,30,33.5,1.5,0.151,0.62,138,856,917,0,16.1,138,856,0,917,24.5,0.15,2.6,35.410000000000004,1008,245,3.7 +2008,6,23,13,30,33,1.49,0.158,0.62,136,825,821,0,16.1,136,825,0,821,33.96,0.15,2.7,36.42,1008,247,3.9000000000000004 +2008,6,23,14,30,32.300000000000004,1.49,0.163,0.62,129,780,683,0,16.1,129,780,0,683,44.72,0.15,2.7,37.84,1007,251,4 +2008,6,23,15,30,31.3,1.45,0.169,0.62,117,707,514,0,16,117,707,0,514,55.84,0.15,2.7,39.83,1007,255,3.8000000000000003 +2008,6,23,16,30,30,1.45,0.168,0.62,96,597,330,0,15.8,96,597,0,330,66.9,0.15,2.7,42.28,1007,261,3.1 +2008,6,23,17,30,27.900000000000002,1.45,0.164,0.62,65,414,154,0,16.2,65,414,0,154,77.59,0.15,2.6,48.89,1007,266,2.1 +2008,6,23,18,30,25.8,1.41,0.171,0.62,17,83,20,0,17.8,17,83,0,20,87.51,0.15,2.6,61.54,1007,276,1.4000000000000001 +2008,6,23,19,30,25,1.41,0.17,0.62,0,0,0,0,18,0,0,0,0,96.89,0.15,2.6,64.95,1008,294,1.1 +2008,6,23,20,30,24.8,1.41,0.17,0.62,0,0,0,0,17.6,0,0,0,0,104.65,0.15,2.6,64.31,1008,323,0.9 +2008,6,23,21,30,24.6,1.41,0.17,0.62,0,0,0,0,17.2,0,0,0,0,110.51,0.15,2.5,63.34,1008,173,0.9 +2008,6,23,22,30,24.3,1.4000000000000001,0.17,0.62,0,0,0,0,17,0,0,0,0,113.96000000000001,0.15,2.4000000000000004,63.620000000000005,1008,15,0.9 +2008,6,23,23,30,23.900000000000002,1.3900000000000001,0.169,0.62,0,0,0,0,16.900000000000002,0,0,0,0,114.58,0.15,2.4000000000000004,64.86,1008,30,0.9 +2008,6,24,0,30,23.700000000000003,1.37,0.167,0.62,0,0,0,0,16.8,0,0,0,0,112.3,0.15,2.3000000000000003,65.24,1007,43,0.9 +2008,6,24,1,30,23.700000000000003,1.35,0.163,0.62,0,0,0,0,16.6,0,0,0,0,107.4,0.15,2.2,64.3,1007,53,0.9 +2008,6,24,2,30,23.5,1.32,0.159,0.62,0,0,0,0,16.2,0,0,0,0,100.38,0.15,2.1,63.51,1007,65,0.9 +2008,6,24,3,30,23.6,1.3,0.154,0.62,0,0,0,0,15.8,0,0,0,0,91.77,0.15,2,61.7,1007,76,0.8 +2008,6,24,4,30,25,1.28,0.151,0.62,47,311,90,0,16.900000000000002,47,311,0,90,81.94,0.15,1.9000000000000001,60.79,1007,84,1 +2008,6,24,5,30,27.400000000000002,1.25,0.15,0.62,82,559,260,0,16,82,559,0,260,71.5,0.15,1.9000000000000001,49.9,1007,67,0.8 +2008,6,24,6,30,30.1,1.23,0.15,0.62,105,697,447,0,14.3,105,697,0,447,60.56,0.15,1.9000000000000001,38.21,1007,156,0.5 +2008,6,24,7,30,32,1.2,0.152,0.62,122,777,627,0,13,122,777,0,627,49.42,0.15,1.9000000000000001,31.48,1007,254,0.9 +2008,6,24,8,30,33,1.18,0.155,0.62,134,826,781,0,13.3,134,826,0,781,38.44,0.15,1.9000000000000001,30.26,1007,245,1.6 +2008,6,24,9,30,33.6,1.26,0.14400000000000002,0.62,136,863,896,0,13.600000000000001,136,863,0,896,28.25,0.15,2,29.84,1007,245,2.3000000000000003 +2008,6,24,10,30,34,1.23,0.151,0.62,143,873,961,0,13.700000000000001,143,873,0,961,20.52,0.15,2,29.54,1007,248,2.9000000000000004 +2008,6,24,11,30,34.1,1.18,0.163,0.62,149,865,968,0,13.8,149,865,0,968,18.830000000000002,0.15,2.1,29.43,1006,250,3.3000000000000003 +2008,6,24,12,30,33.9,1.11,0.165,0.62,148,848,919,0,13.8,148,848,0,919,24.490000000000002,0.15,2.3000000000000003,29.82,1006,253,3.6 +2008,6,24,13,30,33.5,1.02,0.183,0.62,150,807,819,0,13.8,150,807,0,819,33.93,0.15,2.4000000000000004,30.5,1006,256,3.8000000000000003 +2008,6,24,14,30,32.800000000000004,0.96,0.2,0.62,147,745,677,0,13.8,147,745,0,677,44.69,0.15,2.5,31.73,1006,260,3.8000000000000003 +2008,6,24,15,30,31.900000000000002,0.9,0.217,0.62,137,655,505,0,13.9,137,655,0,505,55.82,0.15,2.5,33.51,1006,265,3.6 +2008,6,24,16,30,30.5,0.85,0.23,0.62,116,518,319,0,13.8,116,518,0,319,66.88,0.15,2.6,36.06,1005,272,2.9000000000000004 +2008,6,24,17,30,28.200000000000003,0.81,0.243,0.62,78,300,143,0,15.100000000000001,78,300,0,143,77.57000000000001,0.15,2.7,44.83,1005,280,1.9000000000000001 +2008,6,24,18,30,26.1,0.78,0.257,0.62,15,22,16,0,17.3,15,22,0,16,87.49,0.15,2.7,58.26,1005,293,1.3 +2008,6,24,19,30,25.400000000000002,0.74,0.273,0.62,0,0,0,0,17.400000000000002,0,0,0,0,96.88,0.15,2.8000000000000003,61.2,1006,317,1.1 +2008,6,24,20,30,25.3,0.72,0.28500000000000003,0.62,0,0,0,0,17,0,0,0,0,104.64,0.15,2.8000000000000003,60.2,1006,344,1 +2008,6,24,21,30,25,0.7000000000000001,0.29,0.62,0,0,0,0,16.7,0,0,0,0,110.52,0.15,2.8000000000000003,60.2,1006,183,1 +2008,6,24,22,30,24.700000000000003,0.7000000000000001,0.29,0.62,0,0,0,0,16.6,0,0,0,0,113.97,0.15,2.8000000000000003,60.57,1006,12,1.1 +2008,6,24,23,30,24.400000000000002,0.7000000000000001,0.28600000000000003,0.62,0,0,0,0,16.400000000000002,0,0,0,0,114.61,0.15,2.8000000000000003,60.84,1006,16,1.1 +2008,6,25,0,30,24.1,0.71,0.281,0.62,0,0,0,0,16.2,0,0,0,0,112.34,0.15,2.8000000000000003,61.33,1006,17,1.1 +2008,6,25,1,30,23.900000000000002,0.71,0.275,0.62,0,0,0,0,16.1,0,0,0,0,107.44,0.15,2.8000000000000003,61.59,1006,16,1.1 +2008,6,25,2,30,23.700000000000003,0.71,0.267,0.62,0,0,0,0,15.9,0,0,0,0,100.43,0.15,2.7,61.84,1006,17,1.1 +2008,6,25,3,30,23.900000000000002,0.71,0.26,0.62,0,0,0,0,15.9,0,0,0,0,91.82000000000001,0.15,2.7,60.910000000000004,1006,23,1 +2008,6,25,4,30,25.400000000000002,0.7000000000000001,0.257,0.62,55,161,77,0,17.5,55,161,0,77,81.99,0.15,2.7,61.54,1006,31,0.9 +2008,6,25,5,30,27.700000000000003,0.68,0.26,0.62,108,403,236,0,16.7,108,403,0,236,71.55,0.15,2.7,51.06,1006,184,0.9 +2008,6,25,6,30,30.200000000000003,0.65,0.273,0.62,147,546,414,0,14.9,147,546,0,414,60.620000000000005,0.15,2.7,39.5,1006,309,1 +2008,6,25,7,30,32,0.62,0.28800000000000003,0.62,177,632,587,0,13.5,177,632,0,587,49.480000000000004,0.15,2.7,32.54,1006,267,1.3 +2008,6,25,8,30,33.1,0.6,0.308,0.62,202,680,735,0,13.700000000000001,202,680,0,735,38.49,0.15,2.7,31,1006,245,1.8 +2008,6,25,9,30,33.800000000000004,0.68,0.261,0.62,192,752,854,0,14,192,752,0,854,28.310000000000002,0.15,2.8000000000000003,30.38,1006,241,2.3000000000000003 +2008,6,25,10,30,34.2,0.73,0.258,0.62,195,773,919,0,14.200000000000001,195,773,0,919,20.57,0.15,2.9000000000000004,30.150000000000002,1006,243,2.8000000000000003 +2008,6,25,11,30,34.4,0.77,0.26,0.62,197,775,930,0,14.4,197,775,0,930,18.85,0.15,3,30.1,1005,247,3.1 +2008,6,25,12,30,34.300000000000004,0.76,0.28400000000000003,0.62,204,747,884,0,14.5,204,747,0,884,24.48,0.15,3,30.46,1005,251,3.3000000000000003 +2008,6,25,13,30,33.9,0.74,0.309,0.62,206,699,786,0,14.5,206,699,0,786,33.92,0.15,3.1,31.21,1005,254,3.3000000000000003 +2008,6,25,14,30,33.4,0.7000000000000001,0.337,0.62,201,626,647,0,14.4,201,626,0,647,44.67,0.15,3.1,31.970000000000002,1005,257,3.2 +2008,6,25,15,30,32.6,0.66,0.358,0.62,184,525,479,0,14.4,184,525,0,479,55.79,0.15,3.1,33.3,1004,260,3 +2008,6,25,16,30,31.3,0.64,0.367,0.62,149,387,301,0,14.200000000000001,149,387,0,301,66.86,0.15,3,35.45,1004,263,2.5 +2008,6,25,17,30,29,0.64,0.366,0.62,91,193,133,1,15.200000000000001,91,193,0,133,77.55,0.15,3,43.1,1004,269,1.7000000000000002 +2008,6,25,18,30,26.900000000000002,0.64,0.367,0.62,12,6,12,1,17.3,12,6,0,12,87.48,0.15,3,55.77,1005,281,1.2000000000000002 +2008,6,25,19,30,26.1,0.67,0.357,0.62,0,0,0,0,17.2,0,0,0,0,96.87,0.15,3,58.17,1005,303,1.1 +2008,6,25,20,30,25.900000000000002,0.6900000000000001,0.34900000000000003,0.62,0,0,0,0,16.8,0,0,0,0,104.64,0.15,3,57.1,1005,328,1 +2008,6,25,21,30,25.8,0.71,0.341,0.62,0,0,0,0,16.400000000000002,0,0,0,0,110.53,0.15,3,56.2,1005,347,0.9 +2008,6,25,22,30,25.700000000000003,0.73,0.334,0.62,0,0,0,0,16.2,0,0,0,0,114,0.15,3,55.620000000000005,1005,179,0.7000000000000001 +2008,6,25,23,30,25.8,0.74,0.328,0.62,0,0,0,0,15.8,0,0,0,0,114.64,0.15,3,53.870000000000005,1005,5,0.6000000000000001 +2008,6,26,0,30,25.8,0.75,0.322,0.62,0,0,0,0,15.3,0,0,0,0,112.38,0.16,3,52.26,1005,179,0.4 +2008,6,26,1,30,25.6,0.77,0.316,0.62,0,0,0,0,14.8,0,0,0,0,107.49000000000001,0.16,3,51.160000000000004,1005,328,0.30000000000000004 +2008,6,26,2,30,25.200000000000003,0.78,0.309,0.62,0,0,0,0,14.5,0,0,0,0,100.48,0.16,2.9000000000000004,51.64,1005,313,0.2 +2008,6,26,3,30,24.900000000000002,0.8,0.303,0.62,0,0,0,0,14.5,0,0,0,0,91.88,0.16,2.8000000000000003,52.52,1005,189,0.2 +2008,6,26,4,30,25.700000000000003,0.8,0.296,0.62,55,141,74,0,15.9,55,141,0,74,82.04,0.16,2.8000000000000003,54.74,1005,54,0.4 +2008,6,26,5,30,27.700000000000003,0.81,0.29,0.62,112,383,233,0,15.100000000000001,112,383,0,233,71.61,0.16,2.8000000000000003,46.1,1005,201,0.5 +2008,6,26,6,30,30.400000000000002,0.81,0.28300000000000003,0.62,147,546,414,0,13.200000000000001,147,546,0,414,60.67,0.16,2.7,34.92,1005,307,0.5 +2008,6,26,7,30,32.4,0.8300000000000001,0.277,0.62,169,649,590,0,12,169,649,0,590,49.54,0.16,2.7,28.84,1005,255,0.9 +2008,6,26,8,30,33.5,0.84,0.274,0.62,184,713,742,0,12.3,184,713,0,742,38.550000000000004,0.16,2.7,27.59,1005,248,1.5 +2008,6,26,9,30,34.2,0.86,0.178,0.62,154,817,873,0,12.700000000000001,154,817,0,873,28.36,0.16,2.7,27.34,1005,249,2.3000000000000003 +2008,6,26,10,30,34.6,0.86,0.185,0.62,161,829,937,0,12.8,161,829,0,937,20.62,0.16,2.7,26.810000000000002,1005,250,3.1 +2008,6,26,11,30,34.6,0.86,0.194,0.62,166,825,947,0,12.5,166,825,0,947,18.87,0.16,2.7,26.37,1005,252,3.6 +2008,6,26,12,30,34.2,0.89,0.215,0.62,174,803,905,0,12.200000000000001,174,803,0,905,24.48,0.16,2.6,26.32,1005,254,3.9000000000000004 +2008,6,26,13,30,33.6,0.9,0.224,0.62,170,770,810,0,11.700000000000001,170,770,0,810,33.9,0.16,2.6,26.45,1005,255,4 +2008,6,26,14,30,32.800000000000004,0.91,0.233,0.62,162,717,671,0,11.3,162,717,0,671,44.65,0.16,2.6,26.87,1005,258,3.9000000000000004 +2008,6,26,15,30,31.8,0.9400000000000001,0.25,0.62,148,628,501,0,11.100000000000001,148,628,0,501,55.78,0.16,2.6,28.060000000000002,1005,260,3.5 +2008,6,26,16,30,30.3,0.97,0.261,0.62,123,495,317,0,11.100000000000001,123,495,0,317,66.84,0.16,2.7,30.62,1005,264,2.8000000000000003 +2008,6,26,17,30,27.8,1,0.271,0.62,82,289,144,0,12.600000000000001,82,289,0,144,77.54,0.16,2.8000000000000003,39.03,1005,269,2 +2008,6,26,18,30,25.5,1.02,0.279,0.62,16,27,17,0,15.700000000000001,16,27,0,17,87.47,0.16,2.8000000000000003,54.54,1005,276,1.5 +2008,6,26,19,30,24.400000000000002,1.04,0.28500000000000003,0.62,0,0,0,0,16.7,0,0,0,0,96.87,0.16,2.8000000000000003,62.11,1005,289,1.2000000000000002 +2008,6,26,20,30,23.900000000000002,1.06,0.29,0.62,0,0,0,0,17.1,0,0,0,0,104.65,0.16,2.9000000000000004,65.58,1005,306,1.1 +2008,6,26,21,30,23.6,1.08,0.294,0.62,0,0,0,0,17.1,0,0,0,0,110.55,0.16,2.9000000000000004,67.08,1005,323,1 +2008,6,26,22,30,23.400000000000002,1.09,0.297,0.62,0,0,0,0,17.1,0,0,0,0,114.03,0.16,2.8000000000000003,67.72,1005,337,1 +2008,6,26,23,30,23.1,1.11,0.301,0.62,0,0,0,0,17,0,0,0,0,114.68,0.16,2.8000000000000003,68.72,1005,347,1.1 +2008,6,27,0,30,22.8,1.12,0.304,0.62,0,0,0,0,16.900000000000002,0,0,0,0,112.43,0.15,2.8000000000000003,69.51,1005,177,1.1 +2008,6,27,1,30,22.6,1.12,0.305,0.62,0,0,0,0,16.6,0,0,0,0,107.55,0.15,2.7,69.10000000000001,1004,6,1.2000000000000002 +2008,6,27,2,30,22.5,1.1300000000000001,0.3,0.62,0,0,0,0,16.1,0,0,0,0,100.54,0.15,2.7,67.31,1004,16,1.2000000000000002 +2008,6,27,3,30,22.900000000000002,1.1300000000000001,0.293,0.62,0,0,0,0,15.600000000000001,0,0,0,0,91.94,0.15,2.6,63.33,1004,24,1.1 +2008,6,27,4,30,24.6,1.1300000000000001,0.28600000000000003,0.62,55,173,78,0,16.5,55,173,0,78,82.11,0.15,2.6,60.660000000000004,1004,31,1.1 +2008,6,27,5,30,27.3,1.1400000000000001,0.279,0.62,109,415,239,0,14.8,109,415,0,239,71.67,0.15,2.6,46.28,1004,17,1.1 +2008,6,27,6,30,30.1,1.1400000000000001,0.28,0.62,143,566,420,0,12.3,143,566,0,420,60.74,0.15,2.5,33.62,1004,145,0.9 +2008,6,27,7,30,32.1,1.1500000000000001,0.277,0.62,166,664,596,0,11,166,664,0,596,49.6,0.15,2.5,27.43,1004,270,1.1 +2008,6,27,8,30,33.300000000000004,1.1500000000000001,0.275,0.62,181,726,748,0,11.3,181,726,0,748,38.61,0.15,2.5,26.1,1004,246,1.8 +2008,6,27,9,30,34.1,1.1300000000000001,0.244,0.62,179,781,867,0,11.600000000000001,179,781,0,867,28.43,0.15,2.5,25.59,1004,241,2.5 +2008,6,27,10,30,34.4,1.1400000000000001,0.249,0.62,186,795,930,0,12.100000000000001,186,795,0,930,20.67,0.15,2.6,25.990000000000002,1003,241,3.3000000000000003 +2008,6,27,11,30,34.4,1.1500000000000001,0.255,0.62,190,794,941,0,12.600000000000001,190,794,0,941,18.91,0.15,2.6,26.86,1003,243,3.8000000000000003 +2008,6,27,12,30,34,1.1400000000000001,0.227,0.62,176,801,905,0,12.9,176,801,0,905,24.490000000000002,0.15,2.6,28.02,1003,245,4.1000000000000005 +2008,6,27,13,30,33.4,1.16,0.24,0.62,174,766,810,0,13.100000000000001,174,766,0,810,33.89,0.15,2.6,29.25,1003,248,4 +2008,6,27,14,30,32.6,1.17,0.251,0.62,165,711,672,0,13.100000000000001,165,711,0,672,44.64,0.15,2.6,30.7,1003,254,3.7 +2008,6,27,15,30,31.700000000000003,1.18,0.262,0.62,150,627,503,0,13.100000000000001,150,627,0,503,55.76,0.15,2.6,32.3,1003,260,3.2 +2008,6,27,16,30,30.5,1.18,0.262,0.62,122,508,322,0,13.200000000000001,122,508,0,322,66.83,0.15,2.5,34.82,1003,263,2.4000000000000004 +2008,6,27,17,30,28.200000000000003,1.18,0.256,0.62,79,318,147,0,14.5,79,318,0,147,77.53,0.15,2.5,43.21,1003,263,1.7000000000000002 +2008,6,27,18,30,25.8,1.18,0.247,0.62,16,43,18,1,17.3,16,43,0,18,87.47,0.15,2.5,59.32,1003,264,1.3 +2008,6,27,19,30,24.6,1.17,0.23800000000000002,0.62,0,0,0,0,17.900000000000002,0,0,0,0,96.88,0.15,2.5,66.33,1003,273,1.2000000000000002 +2008,6,27,20,30,24,1.17,0.234,0.62,0,0,0,3,18.3,0,0,0,0,104.67,0.15,2.5,70.34,1003,287,0.9 +2008,6,27,21,30,23.700000000000003,1.16,0.233,0.62,0,0,0,0,18.5,0,0,0,0,110.57000000000001,0.15,2.5,72.55,1004,306,0.6000000000000001 +2008,6,27,22,30,23.400000000000002,1.1500000000000001,0.233,0.62,0,0,0,0,18.5,0,0,0,0,114.06,0.15,2.5,73.98,1004,181,0.4 +2008,6,27,23,30,23,1.1500000000000001,0.232,0.62,0,0,0,0,18.5,0,0,0,0,114.73,0.15,2.6,75.85000000000001,1003,61,0.4 +2008,6,28,0,30,22.6,1.1400000000000001,0.232,0.62,0,0,0,0,18.2,0,0,0,0,112.48,0.15,2.6,76.34,1003,83,0.5 +2008,6,28,1,30,22.400000000000002,1.1500000000000001,0.232,0.62,0,0,0,0,17.900000000000002,0,0,0,0,107.61,0.15,2.6,75.48,1003,95,0.6000000000000001 +2008,6,28,2,30,22.3,1.1500000000000001,0.233,0.62,0,0,0,0,17.400000000000002,0,0,0,0,100.60000000000001,0.15,2.7,73.75,1003,103,0.7000000000000001 +2008,6,28,3,30,22.6,1.16,0.23800000000000002,0.62,0,0,0,0,17,0,0,0,0,92.01,0.15,2.8000000000000003,70.69,1004,110,0.7000000000000001 +2008,6,28,4,30,24.1,1.18,0.245,0.62,51,198,78,0,17.8,51,198,0,78,82.17,0.15,2.9000000000000004,67.98,1004,119,0.9 +2008,6,28,5,30,26.3,1.19,0.253,0.62,102,431,238,0,16.900000000000002,102,431,0,238,71.74,0.15,3,56.34,1004,141,0.9 +2008,6,28,6,30,28.700000000000003,1.21,0.261,0.62,137,573,416,0,16.3,137,573,0,416,60.800000000000004,0.15,3.1,46.97,1005,180,0.8 +2008,6,28,7,30,30.700000000000003,1.23,0.266,0.62,161,664,591,0,15.3,161,664,0,591,49.660000000000004,0.15,3.1,39.29,1005,210,1.2000000000000002 +2008,6,28,8,30,31.700000000000003,1.25,0.273,0.62,179,717,739,0,15.700000000000001,179,717,0,739,38.68,0.15,3.2,38.04,1005,223,1.6 +2008,6,28,9,30,32.4,1.26,0.28300000000000003,0.62,193,746,849,1,16.2,193,746,0,849,28.490000000000002,0.15,3.3000000000000003,37.89,1005,234,2 +2008,6,28,10,30,32.9,1.28,0.289,0.62,201,762,914,0,16.6,201,762,0,914,20.740000000000002,0.15,3.3000000000000003,37.67,1005,242,2.3000000000000003 +2008,6,28,11,30,33.2,1.29,0.296,0.62,205,760,923,0,16.8,205,760,0,923,18.95,0.15,3.4000000000000004,37.550000000000004,1005,248,2.5 +2008,6,28,12,30,33.300000000000004,1.29,0.292,0.62,200,751,883,0,16.900000000000002,200,751,0,883,24.5,0.15,3.4000000000000004,37.63,1004,253,2.8000000000000003 +2008,6,28,13,30,33.1,1.31,0.306,0.62,196,713,788,0,17,196,713,0,788,33.89,0.15,3.5,38.29,1004,257,2.9000000000000004 +2008,6,28,14,30,32.800000000000004,1.32,0.321,0.62,186,654,651,7,17.1,310,357,0,564,44.63,0.15,3.6,39.14,1004,260,3 +2008,6,28,15,30,32.1,1.33,0.355,0.62,172,553,483,7,17.2,263,173,0,360,55.75,0.15,3.7,41.01,1004,262,2.9000000000000004 +2008,6,28,16,30,30.900000000000002,1.34,0.382,0.62,142,415,305,6,17.400000000000002,86,2,0,87,66.82000000000001,0.15,3.7,44.550000000000004,1004,262,2.8000000000000003 +2008,6,28,17,30,29,1.34,0.394,0.62,87,227,136,7,18.6,73,3,0,74,77.53,0.15,3.8000000000000003,53.370000000000005,1004,260,2.5 +2008,6,28,18,30,27,1.35,0.403,0.62,13,22,14,8,19.700000000000003,13,22,5,14,87.47,0.15,3.9000000000000004,64.48,1005,262,2.1 +2008,6,28,19,30,25.8,1.36,0.398,0.62,0,0,0,0,20.200000000000003,0,0,0,0,96.89,0.15,3.9000000000000004,71.2,1006,265,1.6 +2008,6,28,20,30,25.1,1.36,0.39,0.62,0,0,0,0,20.6,0,0,0,0,104.69,0.15,4,76.21000000000001,1006,263,0.9 +2008,6,28,21,30,24.700000000000003,1.37,0.381,0.62,0,0,0,0,20.900000000000002,0,0,0,0,110.61,0.15,3.9000000000000004,79.47,1007,249,0.5 +2008,6,28,22,30,24.5,1.37,0.372,0.62,0,0,0,0,21,0,0,0,0,114.11,0.15,3.9000000000000004,80.93,1007,220,0.4 +2008,6,28,23,30,24.400000000000002,1.37,0.365,0.62,0,0,0,0,21,0,0,0,0,114.78,0.15,3.9000000000000004,81.60000000000001,1007,176,0.30000000000000004 +2008,6,29,0,30,24.3,1.37,0.359,0.62,0,0,0,0,21,0,0,0,0,112.55,0.15,3.8000000000000003,81.68,1006,129,0.30000000000000004 +2008,6,29,1,30,24.3,1.37,0.356,0.62,0,0,0,0,20.8,0,0,0,0,107.67,0.15,3.8000000000000003,81.04,1006,103,0.5 +2008,6,29,2,30,24.1,1.37,0.354,0.62,0,0,0,0,20.700000000000003,0,0,0,0,100.67,0.15,3.8000000000000003,81.13,1006,94,0.7000000000000001 +2008,6,29,3,30,24.400000000000002,1.37,0.352,0.62,0,0,0,0,20.5,0,0,0,0,92.08,0.15,3.8000000000000003,78.98,1007,89,0.8 +2008,6,29,4,30,25.8,1.37,0.34900000000000003,0.62,53,145,72,0,20.900000000000002,53,145,0,72,82.24,0.15,3.8000000000000003,74.42,1007,92,1.1 +2008,6,29,5,30,28,1.3800000000000001,0.34500000000000003,0.62,114,363,227,0,20,114,363,0,227,71.81,0.15,3.8000000000000003,61.95,1007,130,1 +2008,6,29,6,30,30.1,1.3900000000000001,0.341,0.62,154,514,404,0,19.3,154,514,0,404,60.870000000000005,0.15,3.8000000000000003,52.32,1007,184,0.9 +2008,6,29,7,30,31.5,1.3900000000000001,0.337,0.62,180,613,577,0,19,180,613,0,577,49.730000000000004,0.15,3.7,47.37,1007,215,1.2000000000000002 +2008,6,29,8,30,32.5,1.3900000000000001,0.336,0.62,199,674,724,0,19,199,674,0,724,38.75,0.15,3.8000000000000003,45.03,1007,227,1.6 +2008,6,29,9,30,33.1,1.43,0.462,0.62,253,648,823,0,19.1,253,648,0,823,28.560000000000002,0.15,3.8000000000000003,43.62,1007,230,2.1 +2008,6,29,10,30,33.4,1.43,0.465,0.62,263,667,887,0,19,263,667,0,887,20.81,0.15,3.8000000000000003,42.74,1007,232,2.7 +2008,6,29,11,30,33.5,1.43,0.47300000000000003,0.62,267,668,898,0,19,267,668,0,898,18.990000000000002,0.15,3.8000000000000003,42.36,1006,235,3.2 +2008,6,29,12,30,33.2,1.37,0.377,0.62,230,699,866,0,19.1,230,699,0,866,24.52,0.15,3.9000000000000004,43.300000000000004,1006,239,3.5 +2008,6,29,13,30,32.7,1.37,0.394,0.62,225,661,773,0,19.1,225,661,0,773,33.89,0.15,3.9000000000000004,44.660000000000004,1006,244,3.6 +2008,6,29,14,30,31.900000000000002,1.37,0.398,0.62,209,607,641,0,19.200000000000003,209,607,0,641,44.63,0.15,3.9000000000000004,46.88,1006,250,3.5 +2008,6,29,15,30,31.1,1.3800000000000001,0.41200000000000003,0.62,185,519,477,7,19.200000000000003,269,293,0,434,55.75,0.15,3.9000000000000004,49.160000000000004,1006,257,3.2 +2008,6,29,16,30,30.1,1.3900000000000001,0.434,0.62,149,386,301,7,19.200000000000003,207,116,0,253,66.82000000000001,0.15,3.9000000000000004,52.25,1006,263,2.6 +2008,6,29,17,30,28.700000000000003,1.4000000000000001,0.446,0.62,90,207,134,0,19.5,90,207,0,134,77.53,0.15,3.9000000000000004,57.38,1006,268,1.8 +2008,6,29,18,30,27.200000000000003,1.4000000000000001,0.467,0.62,12,18,13,7,20.5,12,18,5,13,87.48,0.15,3.9000000000000004,67.03,1006,274,1.2000000000000002 +2008,6,29,19,30,26.200000000000003,1.41,0.48,0.62,0,0,0,8,20.8,0,0,0,0,96.9,0.15,3.9000000000000004,72.12,1007,283,1.1 +2008,6,29,20,30,25.700000000000003,1.41,0.489,0.62,0,0,0,3,20.8,0,0,0,0,104.71000000000001,0.15,3.9000000000000004,74.51,1007,296,0.9 +2008,6,29,21,30,25.3,1.41,0.488,0.62,0,0,0,0,20.8,0,0,0,0,110.64,0.15,3.8000000000000003,76.22,1007,314,0.8 +2008,6,29,22,30,25,1.41,0.468,0.62,0,0,0,0,20.8,0,0,0,0,114.16,0.15,3.7,77.44,1007,334,0.8 +2008,6,29,23,30,24.700000000000003,1.42,0.427,0.62,0,0,0,0,20.6,0,0,0,0,114.84,0.15,3.5,78.15,1006,352,0.8 +2008,6,30,0,30,24.400000000000002,1.43,0.381,0.62,0,0,0,0,20.5,0,0,0,0,112.61,0.15,3.4000000000000004,78.76,1006,186,0.7000000000000001 +2008,6,30,1,30,24.200000000000003,1.44,0.34600000000000003,0.62,0,0,0,0,20.3,0,0,0,0,107.75,0.15,3.2,78.69,1006,18,0.7000000000000001 +2008,6,30,2,30,24.1,1.43,0.32,0.62,0,0,0,0,20,0,0,0,0,100.75,0.15,3.1,78.05,1006,32,0.7000000000000001 +2008,6,30,3,30,24.400000000000002,1.43,0.303,0.62,0,0,0,0,19.8,0,0,0,0,92.15,0.15,3.1,75.73,1006,47,0.7000000000000001 +2008,6,30,4,30,25.8,1.42,0.291,0.62,51,180,75,0,20.3,51,180,0,75,82.31,0.15,3.1,71.77,1006,54,0.6000000000000001 +2008,6,30,5,30,28,1.41,0.28200000000000003,0.62,105,416,234,0,19.200000000000003,105,416,0,234,71.88,0.15,3.1,58.71,1006,166,0.5 +2008,6,30,6,30,30,1.4000000000000001,0.28800000000000003,0.62,142,559,413,0,17.6,142,559,0,413,60.94,0.15,3.1,47.49,1006,270,0.9 +2008,6,30,7,30,31.400000000000002,1.3900000000000001,0.281,0.62,164,657,588,0,17.1,164,657,0,588,49.81,0.15,3.1,42.36,1006,261,1.6 +2008,6,30,8,30,32.4,1.3900000000000001,0.275,0.62,178,721,740,0,17,178,721,0,740,38.82,0.15,3.1,39.69,1006,258,2.2 +2008,6,30,9,30,33.1,1.3800000000000001,0.27,0.62,187,759,853,0,16.7,187,759,0,853,28.64,0.15,3.1,37.62,1006,256,2.8000000000000003 +2008,6,30,10,30,33.5,1.3800000000000001,0.275,0.62,194,775,918,0,16.5,194,775,0,918,20.88,0.15,3.1,36.230000000000004,1006,255,3.3000000000000003 +2008,6,30,11,30,33.7,1.37,0.28,0.62,197,774,929,0,16.3,197,774,0,929,19.05,0.15,3.2,35.32,1006,254,3.6 +2008,6,30,12,30,33.6,1.34,0.3,0.62,202,750,884,0,16,202,750,0,884,24.54,0.15,3.2,35.02,1006,253,3.8000000000000003 +2008,6,30,13,30,33.1,1.32,0.302,0.62,195,722,794,0,15.9,195,722,0,794,33.9,0.15,3.1,35.64,1006,253,3.9000000000000004 +2008,6,30,14,30,32.4,1.3,0.302,0.62,181,672,659,0,15.8,181,672,0,659,44.63,0.15,3.1,36.79,1006,254,3.8000000000000003 +2008,6,30,15,30,31.5,1.28,0.305,0.62,160,592,493,7,15.8,260,297,0,428,55.75,0.15,3.1,38.7,1005,256,3.5 +2008,6,30,16,30,30.3,1.27,0.308,0.62,130,467,314,0,15.8,130,467,0,314,66.82000000000001,0.15,3.1,41.68,1005,257,3.1 +2008,6,30,17,30,28.3,1.26,0.308,0.62,82,275,142,7,16.2,113,55,7,125,77.54,0.15,3.2,47.95,1006,259,2.4000000000000004 +2008,6,30,18,30,26.1,1.26,0.311,0.62,15,30,16,7,17.7,15,30,5,16,87.49,0.15,3.2,59.81,1006,267,1.7000000000000002 +2008,6,30,19,30,24.900000000000002,1.26,0.318,0.62,0,0,0,7,18.6,0,0,0,0,96.92,0.15,3.3000000000000003,68.26,1006,284,1.3 +2008,6,30,20,30,24.200000000000003,1.26,0.331,0.62,0,0,0,7,19.200000000000003,0,0,0,0,104.74000000000001,0.15,3.4000000000000004,73.75,1006,308,1 +2008,6,30,21,30,23.900000000000002,1.26,0.34600000000000003,0.62,0,0,0,8,19.5,0,0,0,0,110.69,0.15,3.4000000000000004,76.2,1006,332,0.9 +2008,6,30,22,30,23.900000000000002,1.26,0.36,0.62,0,0,0,3,19.6,0,0,0,0,114.21000000000001,0.15,3.5,76.7,1006,349,0.9 +2008,6,30,23,30,24,1.27,0.372,0.62,0,0,0,0,19.6,0,0,0,0,114.91,0.15,3.6,76.29,1006,182,0.8 +2008,7,1,0,30,24.200000000000003,1.27,0.386,0.64,0,0,0,0,19.5,0,0,0,0,112.69,0.16,3.6,74.87,1005,13,0.7000000000000001 +2008,7,1,1,30,24.400000000000002,1.27,0.399,0.64,0,0,0,0,19.400000000000002,0,0,0,0,107.83,0.16,3.7,73.60000000000001,1005,20,0.5 +2008,7,1,2,30,24.400000000000002,1.28,0.40800000000000003,0.64,0,0,0,0,19.400000000000002,0,0,0,0,100.83,0.16,3.7,73.51,1005,30,0.4 +2008,7,1,3,30,24.5,1.28,0.40700000000000003,0.64,0,0,0,0,19.400000000000002,0,0,0,0,92.23,0.16,3.7,73.42,1005,46,0.5 +2008,7,1,4,30,25.5,1.29,0.401,0.64,53,117,68,0,19.900000000000002,53,117,0,68,82.39,0.16,3.7,71.34,1005,65,0.6000000000000001 +2008,7,1,5,30,27.5,1.3,0.395,0.64,121,327,222,0,19.400000000000002,121,327,0,222,71.96000000000001,0.16,3.7,61.31,1005,94,0.5 +2008,7,1,6,30,29.6,1.3,0.403,0.64,169,471,397,0,18.900000000000002,169,471,0,397,61.02,0.16,3.7,52.5,1005,143,0.4 +2008,7,1,7,30,30.900000000000002,1.31,0.399,0.64,199,572,568,0,18.8,199,572,0,568,49.88,0.16,3.7,48.5,1005,184,0.7000000000000001 +2008,7,1,8,30,31.700000000000003,1.32,0.385,0.64,217,645,718,0,18.8,217,645,0,718,38.9,0.16,3.7,46.410000000000004,1005,206,0.9 +2008,7,1,9,30,32.2,1.33,0.366,0.64,223,696,834,0,18.7,223,696,0,834,28.72,0.16,3.6,44.800000000000004,1005,223,1.3 +2008,7,1,10,30,32.5,1.34,0.34800000000000003,0.64,223,726,901,0,18.5,223,726,0,901,20.96,0.16,3.6,43.4,1004,233,1.8 +2008,7,1,11,30,32.6,1.35,0.335,0.64,219,738,917,0,18.3,219,738,0,917,19.11,0.16,3.5,42.75,1004,237,2.3000000000000003 +2008,7,1,12,30,32.5,1.41,0.23800000000000002,0.64,177,784,889,0,18.2,177,784,0,889,24.57,0.16,3.5,42.660000000000004,1004,238,2.7 +2008,7,1,13,30,32.2,1.4000000000000001,0.243,0.64,171,754,797,0,18.1,171,754,0,797,33.910000000000004,0.16,3.5,43.230000000000004,1003,241,3 +2008,7,1,14,30,31.700000000000003,1.4000000000000001,0.248,0.64,161,705,662,0,18.2,161,705,0,662,44.63,0.16,3.5,44.61,1003,245,3.1 +2008,7,1,15,30,31.1,1.3900000000000001,0.253,0.64,144,627,496,0,18.3,144,627,0,496,55.75,0.16,3.5,46.44,1003,249,3.1 +2008,7,1,16,30,30.1,1.3900000000000001,0.254,0.64,117,508,317,0,18.5,117,508,0,317,66.83,0.16,3.5,49.97,1003,251,2.9000000000000004 +2008,7,1,17,30,28.5,1.3900000000000001,0.251,0.64,75,320,144,0,19.200000000000003,75,320,0,144,77.55,0.16,3.6,57.160000000000004,1003,253,2.4000000000000004 +2008,7,1,18,30,26.8,1.3900000000000001,0.247,0.64,16,48,18,3,20.1,13,0,7,13,87.51,0.16,3.6,66.84,1004,258,1.8 +2008,7,1,19,30,25.700000000000003,1.3900000000000001,0.244,0.64,0,0,0,0,20.6,0,0,0,0,96.95,0.16,3.6,73.64,1004,264,1.3 +2008,7,1,20,30,25.1,1.3800000000000001,0.242,0.64,0,0,0,0,21,0,0,0,0,104.78,0.16,3.6,78,1004,272,0.9 +2008,7,1,21,30,24.700000000000003,1.3800000000000001,0.241,0.64,0,0,0,0,21.200000000000003,0,0,0,0,110.74000000000001,0.16,3.6,80.92,1004,277,0.6000000000000001 +2008,7,1,22,30,24.400000000000002,1.37,0.24,0.64,0,0,0,0,21.400000000000002,0,0,0,0,114.28,0.16,3.6,83.52,1004,271,0.5 +2008,7,1,23,30,24.200000000000003,1.36,0.23800000000000002,0.64,0,0,0,0,21.700000000000003,0,0,0,0,114.98,0.16,3.6,85.79,1004,249,0.30000000000000004 +2008,7,2,0,30,24,1.36,0.233,0.64,0,0,0,0,21.900000000000002,0,0,0,0,112.77,0.16,3.5,87.95,1004,195,0.30000000000000004 +2008,7,2,1,30,23.700000000000003,1.35,0.227,0.64,0,0,0,0,22,0,0,0,0,107.91,0.16,3.5,90.08,1004,136,0.4 +2008,7,2,2,30,23.3,1.33,0.221,0.64,0,0,0,0,22,0,0,0,0,100.91,0.16,3.4000000000000004,92.27,1004,111,0.6000000000000001 +2008,7,2,3,30,23.400000000000002,1.31,0.214,0.64,0,0,0,0,21.900000000000002,0,0,0,0,92.31,0.16,3.4000000000000004,91.09,1004,104,1 +2008,7,2,4,30,24.8,1.29,0.20800000000000002,0.64,47,220,75,0,21.900000000000002,47,220,0,75,82.47,0.16,3.3000000000000003,83.91,1004,105,1.3 +2008,7,2,5,30,27.1,1.28,0.2,0.64,89,473,235,0,20.6,89,473,0,235,72.04,0.16,3.3000000000000003,67.77,1004,116,1 +2008,7,2,6,30,29.6,1.27,0.198,0.64,117,620,417,0,18.5,117,620,0,417,61.1,0.16,3.3000000000000003,51.32,1004,176,0.6000000000000001 +2008,7,2,7,30,31.400000000000002,1.26,0.196,0.64,135,711,593,0,17.400000000000002,135,711,0,593,49.96,0.16,3.3000000000000003,43.11,1004,229,1.2000000000000002 +2008,7,2,8,30,32.300000000000004,1.26,0.196,0.64,148,767,744,0,17.400000000000002,148,767,0,744,38.980000000000004,0.16,3.3000000000000003,40.94,1003,234,2.1 +2008,7,2,9,30,32.800000000000004,1.12,0.337,0.64,216,710,838,7,17.5,348,467,0,757,28.8,0.16,3.3000000000000003,40.07,1003,235,2.9000000000000004 +2008,7,2,10,30,33,1.1500000000000001,0.34,0.64,223,728,902,0,17.7,223,728,0,902,21.05,0.16,3.4000000000000004,40.29,1003,237,3.6 +2008,7,2,11,30,32.9,1.18,0.34400000000000003,0.64,226,730,915,0,18,226,730,0,915,19.17,0.16,3.4000000000000004,41.28,1003,238,4 +2008,7,2,12,30,32.4,1.19,0.291,0.64,201,749,881,0,18.2,201,749,0,881,24.61,0.16,3.4000000000000004,42.89,1003,240,4 +2008,7,2,13,30,31.700000000000003,1.18,0.28700000000000003,0.64,191,723,790,0,18.2,191,723,0,790,33.93,0.16,3.4000000000000004,44.68,1003,243,3.6 +2008,7,2,14,30,30.900000000000002,1.17,0.276,0.64,173,682,659,0,18.2,173,682,0,659,44.64,0.16,3.3000000000000003,46.79,1003,245,3.1 +2008,7,2,15,30,30.200000000000003,1.1400000000000001,0.279,0.64,154,603,494,0,18.2,154,603,0,494,55.76,0.16,3.2,48.67,1003,247,2.6 +2008,7,2,16,30,29.400000000000002,1.11,0.265,0.64,122,491,315,0,18.2,122,491,0,315,66.84,0.16,3.2,50.89,1003,250,2.1 +2008,7,2,17,30,27.900000000000002,1.08,0.254,0.64,78,304,144,0,18.400000000000002,78,304,0,144,77.57000000000001,0.16,3.1,56.34,1003,254,1.5 +2008,7,2,18,30,26.3,1.04,0.249,0.64,15,32,16,0,19.700000000000003,15,32,0,16,87.53,0.16,3.1,66.96000000000001,1003,262,1.1 +2008,7,2,19,30,25.5,1.01,0.251,0.64,0,0,0,0,19.900000000000002,0,0,0,0,96.99000000000001,0.16,3.1,71.18,1003,271,1 +2008,7,2,20,30,25.1,0.99,0.254,0.64,0,0,0,0,19.900000000000002,0,0,0,0,104.83,0.16,3.1,73.09,1003,285,0.8 +2008,7,2,21,30,24.900000000000002,0.98,0.254,0.64,0,0,0,0,19.8,0,0,0,0,110.8,0.16,3,73.51,1003,311,0.6000000000000001 +2008,7,2,22,30,24.6,0.98,0.252,0.64,0,0,0,0,19.700000000000003,0,0,0,0,114.35000000000001,0.16,3,74.22,1003,179,0.4 +2008,7,2,23,30,24.200000000000003,0.99,0.248,0.64,0,0,0,0,19.700000000000003,0,0,0,0,115.06,0.16,3,75.86,1003,47,0.4 +2008,7,3,0,30,23.8,1,0.243,0.64,0,0,0,0,19.5,0,0,0,0,112.86,0.16,2.9000000000000004,76.96000000000001,1003,77,0.5 +2008,7,3,1,30,23.6,1.01,0.23900000000000002,0.64,0,0,0,0,19.400000000000002,0,0,0,0,108,0.16,3,77.11,1003,100,0.5 +2008,7,3,2,30,23.3,1.03,0.234,0.64,0,0,0,0,19.200000000000003,0,0,0,0,101,0.16,3,77.92,1003,117,0.6000000000000001 +2008,7,3,3,30,23.5,1.06,0.229,0.64,0,0,0,0,19,0,0,0,0,92.4,0.16,3,76.02,1003,126,0.7000000000000001 +2008,7,3,4,30,24.8,1.09,0.224,0.64,49,195,74,0,19.400000000000002,49,195,0,74,82.55,0.16,3,71.83,1003,139,0.9 +2008,7,3,5,30,26.700000000000003,1.12,0.221,0.64,96,448,233,0,18.8,96,448,0,233,72.12,0.16,3.1,61.76,1003,169,1.1 +2008,7,3,6,30,28.6,1.1400000000000001,0.215,0.64,124,604,415,0,17.7,124,604,0,415,61.18,0.16,3.1,51.71,1004,199,1.4000000000000001 +2008,7,3,7,30,30.200000000000003,1.16,0.213,0.64,143,697,591,0,16.900000000000002,143,697,0,591,50.04,0.16,3.2,44.910000000000004,1004,212,1.9000000000000001 +2008,7,3,8,30,31.400000000000002,1.17,0.209,0.64,155,757,743,0,16.6,155,757,0,743,39.06,0.16,3.2,41.07,1003,218,2.6 +2008,7,3,9,30,32.1,1.17,0.186,0.64,155,807,861,0,16.7,155,807,0,861,28.89,0.16,3.2,39.76,1003,222,3.1 +2008,7,3,10,30,32.6,1.19,0.184,0.64,158,826,928,0,16.7,158,826,0,928,21.14,0.16,3.2,38.69,1003,226,3.5 +2008,7,3,11,30,32.7,1.2,0.183,0.64,158,830,942,0,16.7,158,830,0,942,19.25,0.16,3.2,38.42,1003,230,3.8000000000000003 +2008,7,3,12,30,32.5,1.19,0.2,0.64,163,808,898,0,16.7,163,808,0,898,24.650000000000002,0.16,3.2,38.96,1003,234,3.9000000000000004 +2008,7,3,13,30,31.8,1.17,0.209,0.64,160,776,804,0,16.8,160,776,0,804,33.95,0.16,3.2,40.6,1003,237,3.8000000000000003 +2008,7,3,14,30,30.6,1.1400000000000001,0.223,0.64,155,720,667,0,16.8,155,720,0,667,44.660000000000004,0.16,3.2,43.42,1003,239,3.5 +2008,7,3,15,30,29.8,1.12,0.225,0.64,138,646,501,7,17,246,320,0,426,55.78,0.16,3.1,46.29,1003,237,3.1 +2008,7,3,16,30,29,1.11,0.20600000000000002,0.64,108,545,323,7,17.400000000000002,191,127,0,241,66.86,0.16,3,49.7,1003,233,2.6 +2008,7,3,17,30,27.6,1.11,0.197,0.64,71,357,148,0,17.8,71,357,0,148,77.59,0.16,3,55.300000000000004,1003,221,1.7000000000000002 +2008,7,3,18,30,26.1,1.09,0.20600000000000002,0.64,16,47,18,7,19.3,12,0,7,12,87.56,0.16,3,66.31,1003,208,1.2000000000000002 +2008,7,3,19,30,25.5,1.06,0.214,0.64,0,0,0,6,19.900000000000002,0,0,0,0,97.02,0.16,3,71.26,1003,197,1.2000000000000002 +2008,7,3,20,30,24.900000000000002,1.05,0.213,0.64,0,0,0,0,20.400000000000002,0,0,0,0,104.88,0.16,3,75.88,1003,187,1.2000000000000002 +2008,7,3,21,30,24.1,1.04,0.209,0.64,0,0,0,4,20.6,0,0,0,0,110.86,0.16,2.9000000000000004,80.93,1003,178,1.1 +2008,7,3,22,30,23.5,1.02,0.21,0.64,0,0,0,0,20.700000000000003,0,0,0,0,114.42,0.16,2.9000000000000004,84.51,1003,165,1.1 +2008,7,3,23,30,23.1,1,0.214,0.64,0,0,0,4,20.8,0,0,0,0,115.15,0.16,2.8000000000000003,86.75,1002,153,1.3 +2008,7,4,0,30,22.700000000000003,0.98,0.221,0.64,0,0,0,4,20.8,0,0,0,0,112.95,0.16,2.9000000000000004,89.05,1002,144,1.4000000000000001 +2008,7,4,1,30,22.400000000000002,0.96,0.23,0.64,0,0,0,4,20.8,0,0,0,0,108.10000000000001,0.16,2.9000000000000004,90.66,1002,138,1.6 +2008,7,4,2,30,22.1,0.9500000000000001,0.23700000000000002,0.64,0,0,0,5,20.700000000000003,0,0,0,0,101.09,0.16,3,91.98,1002,133,1.8 +2008,7,4,3,30,22.700000000000003,0.9500000000000001,0.23900000000000002,0.64,0,0,0,0,20.6,0,0,0,0,92.49,0.16,3,88.01,1002,130,2.4000000000000004 +2008,7,4,4,30,24.400000000000002,0.96,0.24,0.64,49,170,71,0,20.6,49,170,0,71,82.64,0.16,3.1,79.4,1002,132,3.4000000000000004 +2008,7,4,5,30,26.400000000000002,0.97,0.23900000000000002,0.64,100,420,228,0,20.200000000000003,100,420,0,228,72.21000000000001,0.16,3.2,68.9,1002,142,4.2 +2008,7,4,6,30,28.200000000000003,0.97,0.233,0.64,131,580,410,0,19.1,131,580,0,410,61.26,0.16,3.2,57.88,1002,154,4.6000000000000005 +2008,7,4,7,30,29.8,0.97,0.23700000000000002,0.64,154,672,585,0,18.1,154,672,0,585,50.13,0.16,3.2,49.34,1001,166,4.800000000000001 +2008,7,4,8,30,30.900000000000002,0.9400000000000001,0.245,0.64,173,727,737,0,18,173,727,0,737,39.15,0.16,3.1,46.13,1001,176,5 +2008,7,4,9,30,31.6,0.91,0.23900000000000002,0.64,181,767,852,0,18.5,181,767,0,852,28.98,0.16,3.1,45.69,1001,183,5.2 +2008,7,4,10,30,31.8,0.9,0.23800000000000002,0.64,186,786,918,0,19,186,786,0,918,21.23,0.16,3.1,46.730000000000004,1001,189,5.4 +2008,7,4,11,30,31.8,0.92,0.23900000000000002,0.64,187,791,934,0,19.5,187,791,0,934,19.330000000000002,0.16,3,48.15,1001,195,5.300000000000001 +2008,7,4,12,30,31.6,0.9500000000000001,0.241,0.64,184,779,892,0,19.8,184,779,0,892,24.7,0.16,3,49.65,1001,201,4.9 +2008,7,4,13,30,31.1,0.97,0.24,0.64,176,755,802,0,19.900000000000002,176,755,0,802,33.980000000000004,0.16,2.9000000000000004,51.31,1001,208,4.5 +2008,7,4,14,30,30.5,1,0.233,0.64,161,715,669,0,19.700000000000003,161,715,0,669,44.68,0.16,2.8000000000000003,52.58,1001,216,4 +2008,7,4,15,30,29.700000000000003,1.02,0.225,0.64,140,649,505,0,19.5,140,649,0,505,55.800000000000004,0.16,2.7,54.38,1000,226,3.6 +2008,7,4,16,30,28.6,1.03,0.221,0.64,113,533,322,0,19.5,113,533,0,322,66.88,0.16,2.7,57.86,1000,236,3.2 +2008,7,4,17,30,27.1,1.04,0.217,0.64,75,338,147,0,19.700000000000003,75,338,0,147,77.61,0.16,2.7,64.08,1001,246,2.4000000000000004 +2008,7,4,18,30,25.5,1.04,0.212,0.64,16,42,18,0,20.5,16,42,0,18,87.59,0.16,2.7,74.02,1001,257,1.6 +2008,7,4,19,30,24.400000000000002,1.03,0.209,0.64,0,0,0,0,21.200000000000003,0,0,0,0,97.07000000000001,0.16,2.7,82.39,1002,268,1.3 +2008,7,4,20,30,23.900000000000002,1.02,0.20700000000000002,0.64,0,0,0,0,21.5,0,0,0,0,104.94,0.16,2.7,86.47,1002,281,1.1 +2008,7,4,21,30,23.6,1.02,0.20600000000000002,0.64,0,0,0,0,21.5,0,0,0,0,110.93,0.16,2.7,87.99,1002,295,0.9 +2008,7,4,22,30,23.3,1.02,0.202,0.64,0,0,0,0,21.200000000000003,0,0,0,0,114.51,0.16,2.7,88.09,1002,313,0.8 +2008,7,4,23,30,23,1.01,0.195,0.64,0,0,0,0,20.900000000000002,0,0,0,0,115.25,0.16,2.7,88.07000000000001,1002,331,0.7000000000000001 +2008,7,5,0,30,22.6,1.02,0.193,0.64,0,0,0,0,20.6,0,0,0,0,113.05,0.16,2.7,88.62,1002,347,0.7000000000000001 +2008,7,5,1,30,22.1,1.04,0.192,0.64,0,0,0,0,20.400000000000002,0,0,0,0,108.2,0.16,2.6,90.13,1001,179,0.7000000000000001 +2008,7,5,2,30,21.6,1.04,0.186,0.64,0,0,0,0,20.3,0,0,0,0,101.19,0.16,2.6,92.17,1002,10,0.8 +2008,7,5,3,30,21.900000000000002,1.04,0.189,0.64,0,0,0,0,20.200000000000003,0,0,0,0,92.59,0.16,2.5,90.24,1002,20,1 +2008,7,5,4,30,23.400000000000002,1.05,0.19,0.64,47,220,75,0,20.3,47,220,0,75,82.73,0.16,2.5,82.86,1002,16,1.4000000000000001 +2008,7,5,5,30,25.6,1.07,0.167,0.64,85,508,239,0,19.1,85,508,0,239,72.3,0.16,2.4000000000000004,67.16,1002,173,1.6 +2008,7,5,6,30,27.700000000000003,1.08,0.145,0.64,103,681,429,0,16.6,103,681,0,429,61.35,0.16,2.3000000000000003,50.99,1002,322,1.7000000000000002 +2008,7,5,7,30,29.3,1.09,0.133,0.64,113,777,611,0,15.100000000000001,113,777,0,611,50.22,0.16,2.3000000000000003,42.19,1002,300,2.2 +2008,7,5,8,30,30.6,1.1,0.122,0.64,119,840,770,0,13.9,119,840,0,770,39.24,0.16,2.2,36.26,1002,290,2.7 +2008,7,5,9,30,31.700000000000003,1.12,0.108,0.64,119,881,889,0,12.9,119,881,0,889,29.080000000000002,0.16,2.2,31.79,1002,285,3.2 +2008,7,5,10,30,32.5,1.12,0.10300000000000001,0.64,120,899,958,0,12,120,899,0,958,21.34,0.16,2.2,28.64,1002,283,3.8000000000000003 +2008,7,5,11,30,33,1.11,0.098,0.64,119,906,973,0,11.4,119,906,0,973,19.42,0.16,2.2,26.75,1002,283,4.4 +2008,7,5,12,30,33.1,1.09,0.10200000000000001,0.64,119,894,931,0,11.200000000000001,119,894,0,931,24.75,0.16,2.2,26.36,1001,283,4.800000000000001 +2008,7,5,13,30,32.9,1.07,0.099,0.64,113,875,838,0,11.5,113,875,0,838,34.02,0.16,2.2,27.11,1001,283,5.1000000000000005 +2008,7,5,14,30,32.2,1.04,0.098,0.64,105,835,698,0,11.9,105,835,0,698,44.71,0.16,2.3000000000000003,29.03,1001,282,5.2 +2008,7,5,15,30,31.1,1.02,0.094,0.64,92,775,528,0,12.600000000000001,92,775,0,528,55.82,0.16,2.4000000000000004,32.22,1001,282,5.300000000000001 +2008,7,5,16,30,29.400000000000002,1.03,0.092,0.64,76,673,341,0,13.3,76,673,0,341,66.9,0.16,2.5,37.36,1001,282,5 +2008,7,5,17,30,27.200000000000003,1.04,0.089,0.64,53,494,159,0,14.4,53,494,0,159,77.65,0.16,2.5,45.6,1002,284,4.2 +2008,7,5,18,30,25,1.04,0.088,0.64,16,124,21,0,16,16,124,0,21,87.63,0.16,2.6,57.34,1002,291,3.1 +2008,7,5,19,30,23.6,1.04,0.08700000000000001,0.64,0,0,0,0,17.1,0,0,0,0,97.12,0.16,2.6,67,1002,303,2.3000000000000003 +2008,7,5,20,30,22.8,1.05,0.08600000000000001,0.64,0,0,0,0,17.7,0,0,0,0,105,0.16,2.6,73.11,1003,315,1.8 +2008,7,5,21,30,22.3,1.03,0.08600000000000001,0.64,0,0,0,0,17.900000000000002,0,0,0,0,111.01,0.16,2.6,76.26,1003,322,1.5 +2008,7,5,22,30,22,1.01,0.08600000000000001,0.64,0,0,0,0,17.8,0,0,0,0,114.60000000000001,0.16,2.6,77.08,1003,325,1.4000000000000001 +2008,7,5,23,30,21.700000000000003,1.03,0.084,0.64,0,0,0,0,17.5,0,0,0,0,115.35000000000001,0.16,2.5,77.2,1003,331,1.3 +2008,7,6,0,30,21.400000000000002,1.08,0.08,0.64,0,0,0,0,17.2,0,0,0,0,113.15,0.16,2.5,76.79,1003,338,1.3 +2008,7,6,1,30,21.3,1.1500000000000001,0.077,0.64,0,0,0,0,16.7,0,0,0,0,108.3,0.16,2.5,75.15,1002,346,1.2000000000000002 +2008,7,6,2,30,21.200000000000003,1.19,0.076,0.64,0,0,0,0,16.3,0,0,0,0,101.3,0.16,2.4000000000000004,73.42,1002,178,1.1 +2008,7,6,3,30,21.6,1.22,0.076,0.64,0,0,0,0,15.9,0,0,0,0,92.69,0.16,2.4000000000000004,70.17,1002,16,1 +2008,7,6,4,30,23.200000000000003,1.25,0.076,0.64,35,368,81,0,16.3,35,368,0,81,82.83,0.16,2.5,65.28,1003,31,0.9 +2008,7,6,5,30,26,1.27,0.077,0.64,61,621,249,0,15.200000000000001,61,621,0,249,72.39,0.16,2.5,51.300000000000004,1003,169,0.6000000000000001 +2008,7,6,6,30,28.700000000000003,1.29,0.077,0.64,78,751,437,0,13.200000000000001,78,751,0,437,61.44,0.16,2.5,38.660000000000004,1003,268,0.8 +2008,7,6,7,30,30.5,1.32,0.077,0.64,89,826,617,0,12.3,89,826,0,617,50.31,0.16,2.5,32.77,1003,232,1.8 +2008,7,6,8,30,31.400000000000002,1.34,0.078,0.64,98,869,770,0,12.600000000000001,98,869,0,770,39.34,0.16,2.6,31.76,1003,232,2.8000000000000003 +2008,7,6,9,30,32,1.2,0.095,0.64,112,883,882,0,13.200000000000001,112,883,0,882,29.18,0.16,2.6,31.990000000000002,1003,232,3.4000000000000004 +2008,7,6,10,30,32.2,1.1300000000000001,0.10200000000000001,0.64,119,892,949,0,13.9,119,892,0,949,21.45,0.16,2.6,32.99,1003,231,3.8000000000000003 +2008,7,6,11,30,32.2,1.01,0.115,0.64,127,884,960,0,14.4,127,884,0,960,19.51,0.16,2.6,34.18,1003,230,4.1000000000000005 +2008,7,6,12,30,31.900000000000002,0.87,0.135,0.64,136,858,915,0,14.700000000000001,136,858,0,915,24.810000000000002,0.16,2.6,35.45,1003,228,4.1000000000000005 +2008,7,6,13,30,31.400000000000002,0.74,0.154,0.64,140,816,816,0,14.8,140,816,0,816,34.06,0.16,2.7,36.65,1003,225,4.1000000000000005 +2008,7,6,14,30,30.700000000000003,0.6900000000000001,0.165,0.64,136,760,676,0,14.700000000000001,136,760,0,676,44.74,0.16,2.8000000000000003,37.94,1002,222,3.9000000000000004 +2008,7,6,15,30,29.900000000000002,0.71,0.162,0.64,120,692,508,0,14.600000000000001,120,692,0,508,55.85,0.16,2.8000000000000003,39.39,1002,217,3.4000000000000004 +2008,7,6,16,30,28.900000000000002,0.72,0.162,0.64,99,575,324,0,14.600000000000001,99,575,0,324,66.94,0.16,2.9000000000000004,41.67,1002,211,2.8000000000000003 +2008,7,6,17,30,27.1,0.6900000000000001,0.169,0.64,69,364,146,0,14.9,69,364,0,146,77.68,0.16,2.8000000000000003,47.22,1002,200,2 +2008,7,6,18,30,25.1,0.66,0.176,0.64,15,35,17,0,16.7,15,35,0,17,87.67,0.16,2.8000000000000003,59.69,1002,189,1.4000000000000001 +2008,7,6,19,30,24.1,0.65,0.184,0.64,0,0,0,0,17.400000000000002,0,0,0,0,97.18,0.16,2.8000000000000003,66.28,1002,176,1.4000000000000001 +2008,7,6,20,30,23.400000000000002,0.66,0.186,0.64,0,0,0,0,17.900000000000002,0,0,0,0,105.07000000000001,0.16,2.8000000000000003,71.43,1003,164,1.5 +2008,7,6,21,30,22.900000000000002,0.68,0.18,0.64,0,0,0,0,18.3,0,0,0,0,111.09,0.16,2.8000000000000003,75.5,1002,157,1.7000000000000002 +2008,7,6,22,30,22.6,0.6900000000000001,0.17200000000000001,0.64,0,0,0,0,18.6,0,0,0,0,114.69,0.16,2.8000000000000003,78.03,1002,151,1.8 +2008,7,6,23,30,22.3,0.7000000000000001,0.168,0.64,0,0,0,0,18.7,0,0,0,0,115.45,0.16,2.8000000000000003,80.06,1002,146,1.9000000000000001 +2008,7,7,0,30,22.1,0.6900000000000001,0.17,0.64,0,0,0,0,18.7,0,0,0,0,113.27,0.16,2.8000000000000003,81.01,1002,143,2.1 +2008,7,7,1,30,21.900000000000002,0.66,0.17500000000000002,0.64,0,0,0,0,18.5,0,0,0,0,108.41,0.16,2.7,81.22,1001,140,2.2 +2008,7,7,2,30,21.700000000000003,0.64,0.181,0.64,0,0,0,0,18.400000000000002,0,0,0,0,101.41,0.16,2.7,81.28,1001,137,2.3000000000000003 +2008,7,7,3,30,22.3,0.62,0.188,0.64,0,0,0,0,18.3,0,0,0,0,92.79,0.16,2.7,77.97,1002,133,2.9000000000000004 +2008,7,7,4,30,23.900000000000002,0.59,0.2,0.64,47,169,67,0,18.3,47,169,0,67,82.93,0.16,2.7,71.06,1002,136,3.9000000000000004 +2008,7,7,5,30,25.900000000000002,0.5700000000000001,0.212,0.64,97,425,225,0,18.5,97,425,0,225,72.49,0.16,2.7,63.76,1002,148,4.6000000000000005 +2008,7,7,6,30,27.700000000000003,0.58,0.214,0.64,128,585,407,0,18.6,128,585,0,407,61.54,0.16,2.7,57.77,1002,162,4.800000000000001 +2008,7,7,7,30,29.200000000000003,0.63,0.201,0.64,144,696,587,0,18.400000000000002,144,696,0,587,50.4,0.16,2.7,52.25,1002,172,4.9 +2008,7,7,8,30,30.400000000000002,0.68,0.189,0.64,151,765,742,0,18.400000000000002,151,765,0,742,39.43,0.16,2.8000000000000003,48.85,1002,178,4.9 +2008,7,7,9,30,31.200000000000003,0.8,0.161,0.64,146,825,866,0,18.7,146,825,0,866,29.29,0.16,2.7,47.35,1002,183,4.9 +2008,7,7,10,30,31.8,0.84,0.152,0.64,145,850,936,0,19,145,850,0,936,21.56,0.16,2.7,46.77,1002,186,5 +2008,7,7,11,30,32.1,0.92,0.136,0.64,138,866,953,0,19.3,138,866,0,953,19.61,0.16,2.7,46.65,1002,188,5 +2008,7,7,12,30,32.1,0.92,0.137,0.64,136,856,912,0,19.3,136,856,0,912,24.88,0.16,2.7,46.82,1001,190,5.1000000000000005 +2008,7,7,13,30,31.8,0.92,0.14,0.64,132,830,819,0,19.3,132,830,0,819,34.1,0.16,2.7,47.64,1001,192,5 +2008,7,7,14,30,31.200000000000003,0.9,0.14,0.64,123,788,682,0,19.3,123,788,0,682,44.77,0.16,2.7,49.11,1001,194,4.800000000000001 +2008,7,7,15,30,30.400000000000002,0.8300000000000001,0.145,0.64,112,716,514,0,19.200000000000003,112,716,0,514,55.88,0.16,2.6,51.1,1001,196,4.4 +2008,7,7,16,30,29.200000000000003,0.77,0.15,0.64,95,595,328,0,19.200000000000003,95,595,0,328,66.97,0.16,2.6,54.74,1001,197,3.8000000000000003 +2008,7,7,17,30,27.5,0.75,0.15,0.64,65,391,148,0,19.5,65,391,0,148,77.73,0.16,2.7,61.870000000000005,1001,194,2.8000000000000003 +2008,7,7,18,30,25.700000000000003,0.72,0.158,0.64,15,44,17,0,20.5,15,44,0,17,87.72,0.16,2.8000000000000003,73.11,1001,189,1.9000000000000001 +2008,7,7,19,30,24.6,0.73,0.17200000000000001,0.64,0,0,0,0,21.5,0,0,0,0,97.24000000000001,0.16,2.9000000000000004,82.95,1002,182,1.6 +2008,7,7,20,30,24.1,0.73,0.185,0.64,0,0,0,0,22.3,0,0,0,0,105.15,0.16,3,89.73,1002,176,1.6 +2008,7,7,21,30,23.700000000000003,0.74,0.195,0.64,0,0,0,0,22.900000000000002,0,0,0,0,111.18,0.16,3,95.08,1002,171,1.6 +2008,7,7,22,30,23.400000000000002,0.74,0.201,0.64,0,0,0,0,23.200000000000003,0,0,0,0,114.8,0.16,2.9000000000000004,98.79,1002,172,1.5 +2008,7,7,23,30,23.1,0.75,0.202,0.64,0,0,0,0,23.1,0,0,0,0,115.57000000000001,0.16,2.9000000000000004,100,1002,182,1.4000000000000001 +2008,7,8,0,30,22.8,0.75,0.20800000000000002,0.64,0,0,0,0,22.8,0,0,0,0,113.38,0.16,2.8000000000000003,100,1002,198,1.3 +2008,7,8,1,30,22.5,0.76,0.219,0.64,0,0,0,0,22.5,0,0,0,0,108.53,0.16,2.7,100,1002,217,1.3 +2008,7,8,2,30,22.1,0.78,0.217,0.64,0,0,0,0,22.1,0,0,0,0,101.52,0.16,2.6,100,1002,239,1.2000000000000002 +2008,7,8,3,30,22.6,0.85,0.217,0.64,0,0,0,0,22,0,0,0,0,92.9,0.16,2.5,96.60000000000001,1002,259,1.4000000000000001 +2008,7,8,4,30,24,0.9400000000000001,0.203,0.64,46,191,69,0,21.700000000000003,46,191,0,69,83.03,0.16,2.5,87.19,1002,279,1.8 +2008,7,8,5,30,25.700000000000003,1.03,0.165,0.64,84,504,235,0,20.1,84,504,0,235,72.58,0.16,2.4000000000000004,71.41,1002,291,2.3000000000000003 +2008,7,8,6,30,27.200000000000003,1.09,0.14,0.64,100,683,425,0,18.400000000000002,100,683,0,425,61.63,0.16,2.3000000000000003,58.5,1003,290,2.8000000000000003 +2008,7,8,7,30,28.5,1.1,0.127,0.64,110,783,608,0,17.1,110,783,0,608,50.5,0.16,2.2,50.18,1003,282,3.4000000000000004 +2008,7,8,8,30,29.6,1.1,0.117,0.64,116,845,768,0,16.2,116,845,0,768,39.53,0.16,2.1,44.410000000000004,1003,276,4 +2008,7,8,9,30,30.3,1.06,0.111,0.64,120,884,891,0,15.4,120,884,0,891,29.400000000000002,0.16,1.9000000000000001,40.51,1003,272,4.4 +2008,7,8,10,30,30.8,1.08,0.1,0.64,119,913,967,1,14.600000000000001,119,913,0,967,21.68,0.16,1.7000000000000002,37.44,1003,268,4.7 +2008,7,8,11,30,30.900000000000002,1.11,0.093,0.64,116,924,986,0,13.8,116,924,0,986,19.72,0.16,1.6,35.31,1003,266,4.9 +2008,7,8,12,30,30.8,0.8200000000000001,0.125,0.64,132,890,939,0,13.100000000000001,132,890,0,939,24.96,0.16,1.5,33.96,1003,265,5.1000000000000005 +2008,7,8,13,30,30.400000000000002,0.93,0.114,0.64,121,881,849,0,12.600000000000001,121,881,0,849,34.160000000000004,0.16,1.4000000000000001,33.67,1003,266,4.9 +2008,7,8,14,30,30,1.07,0.10300000000000001,0.64,106,854,712,0,12.3,106,854,0,712,44.82,0.16,1.4000000000000001,33.64,1003,269,4.6000000000000005 +2008,7,8,15,30,29.3,1.1400000000000001,0.097,0.64,92,799,540,0,11.9,92,799,0,540,55.92,0.16,1.4000000000000001,34.1,1003,274,4.2 +2008,7,8,16,30,28.3,1.16,0.094,0.64,76,703,351,0,11.5,76,703,0,351,67.02,0.16,1.3,35.160000000000004,1003,279,3.6 +2008,7,8,17,30,26,1.17,0.093,0.64,53,518,162,0,11.600000000000001,53,518,0,162,77.78,0.16,1.3,40.7,1003,281,2.5 +2008,7,8,18,30,23.6,1.1500000000000001,0.094,0.64,15,132,20,0,13.9,15,132,0,20,87.77,0.16,1.2000000000000002,54.51,1004,285,1.6 +2008,7,8,19,30,22.400000000000002,1.12,0.096,0.64,0,0,0,3,14.5,0,0,0,0,97.31,0.16,1.2000000000000002,60.82,1004,296,1.4000000000000001 +2008,7,8,20,30,21.900000000000002,1.1,0.097,0.64,0,0,0,0,14.5,0,0,0,0,105.23,0.16,1.1,62.82,1004,317,1.2000000000000002 +2008,7,8,21,30,21.6,1.09,0.096,0.64,0,0,0,0,14.100000000000001,0,0,0,0,111.28,0.16,1.1,62.440000000000005,1004,167,1.2000000000000002 +2008,7,8,22,30,21.1,1.1,0.097,0.64,0,0,0,0,13.700000000000001,0,0,0,0,114.91,0.16,1.1,62.47,1004,14,1.2000000000000002 +2008,7,8,23,30,20.6,1.12,0.096,0.64,0,0,0,0,13.200000000000001,0,0,0,0,115.68,0.16,1.1,62.49,1004,33,1.3 +2008,7,9,0,30,20.3,1.12,0.093,0.64,0,0,0,0,12.600000000000001,0,0,0,0,113.51,0.16,1.1,61.31,1004,45,1.3 +2008,7,9,1,30,20,1.1300000000000001,0.09,0.64,0,0,0,0,12,0,0,0,0,108.65,0.16,1.1,59.83,1005,52,1.3 +2008,7,9,2,30,19.8,1.1400000000000001,0.08700000000000001,0.64,0,0,0,0,11.3,0,0,0,0,101.64,0.16,1.2000000000000002,58.03,1005,56,1.3 +2008,7,9,3,30,20,1.1500000000000001,0.083,0.64,0,0,0,0,10.9,0,0,0,0,93.01,0.16,1.2000000000000002,55.83,1005,57,1.2000000000000002 +2008,7,9,4,30,21.8,1.1400000000000001,0.079,0.64,35,377,80,0,11.9,35,377,0,80,83.13,0.16,1.2000000000000002,53.410000000000004,1005,53,1.3 +2008,7,9,5,30,24.6,1.12,0.08,0.64,63,644,254,0,10.700000000000001,63,644,0,254,72.69,0.16,1.2000000000000002,41.6,1005,202,1.4000000000000001 +2008,7,9,6,30,27,1.11,0.081,0.64,80,777,448,0,8.6,80,777,0,448,61.730000000000004,0.16,1.2000000000000002,31.43,1005,333,1.5 +2008,7,9,7,30,28.8,1.11,0.082,0.64,93,849,632,0,7.9,93,849,0,632,50.6,0.16,1.3,26.94,1005,296,1.8 +2008,7,9,8,30,30.200000000000003,1.11,0.084,0.64,102,894,790,0,7.9,102,894,0,790,39.64,0.16,1.3,24.82,1005,275,2.2 +2008,7,9,9,30,31.1,1.1,0.08600000000000001,0.64,109,920,910,0,8.3,109,920,0,910,29.51,0.16,1.3,24.2,1005,265,2.7 +2008,7,9,10,30,31.8,1.11,0.088,0.64,113,933,979,0,8.8,113,933,0,979,21.8,0.16,1.3,24.150000000000002,1005,260,3.1 +2008,7,9,11,30,32.1,1.09,0.091,0.64,115,931,991,0,9.3,115,931,0,991,19.84,0.16,1.4000000000000001,24.43,1004,257,3.4000000000000004 +2008,7,9,12,30,32.1,1.02,0.098,0.64,117,916,947,0,9.600000000000001,117,916,0,947,25.04,0.16,1.4000000000000001,25.060000000000002,1004,255,3.7 +2008,7,9,13,30,31.700000000000003,1,0.099,0.64,113,891,850,0,10,113,891,0,850,34.21,0.16,1.5,26.28,1004,254,4 +2008,7,9,14,30,30.900000000000002,1,0.098,0.64,105,854,710,0,10.4,105,854,0,710,44.86,0.16,1.5,28.310000000000002,1004,254,4.2 +2008,7,9,15,30,29.8,1,0.098,0.64,94,789,535,0,10.9,94,789,0,535,55.97,0.16,1.6,31.12,1004,257,4.2 +2008,7,9,16,30,28.3,0.99,0.098,0.64,78,688,346,0,11.3,78,688,0,346,67.06,0.16,1.5,34.9,1004,261,3.8000000000000003 +2008,7,9,17,30,25.8,0.99,0.098,0.64,55,497,160,0,11.9,55,497,0,160,77.83,0.16,1.5,41.980000000000004,1004,269,2.7 +2008,7,9,18,30,23.400000000000002,1.01,0.095,0.64,15,116,20,0,14,15,116,0,20,87.83,0.16,1.4000000000000001,55.480000000000004,1005,282,1.7000000000000002 +2008,7,9,19,30,22.200000000000003,1.01,0.094,0.64,0,0,0,0,14.700000000000001,0,0,0,0,97.39,0.16,1.3,62.64,1005,300,1.4000000000000001 +2008,7,9,20,30,21.6,1.03,0.092,0.64,0,0,0,0,14.700000000000001,0,0,0,0,105.32000000000001,0.16,1.2000000000000002,64.71000000000001,1005,324,1.3 +2008,7,9,21,30,21.200000000000003,1.05,0.091,0.64,0,0,0,0,14.4,0,0,0,0,111.38,0.16,1.2000000000000002,65.12,1006,347,1.2000000000000002 +2008,7,9,22,30,20.900000000000002,1.08,0.09,0.64,0,0,0,0,14,0,0,0,0,115.03,0.16,1.2000000000000002,64.67,1006,184,1.2000000000000002 +2008,7,9,23,30,20.5,1.1,0.09,0.64,0,0,0,0,13.600000000000001,0,0,0,0,115.81,0.16,1.3,64.47,1005,16,1.2000000000000002 +2008,7,10,0,30,20.3,1.11,0.092,0.64,0,0,0,0,13.200000000000001,0,0,0,0,113.63,0.16,1.4000000000000001,63.72,1005,22,1.1 +2008,7,10,1,30,20.200000000000003,1.1300000000000001,0.093,0.64,0,0,0,0,12.8,0,0,0,0,108.78,0.16,1.5,62.6,1005,23,1 +2008,7,10,2,30,20.200000000000003,1.16,0.093,0.64,0,0,0,0,12.5,0,0,0,0,101.76,0.16,1.5,61.15,1005,20,0.9 +2008,7,10,3,30,20.5,1.18,0.093,0.64,0,0,0,0,12.200000000000001,0,0,0,0,93.13,0.16,1.5,58.96,1005,19,0.8 +2008,7,10,4,30,22,1.19,0.092,0.64,35,344,76,0,12.8,35,344,0,76,83.24,0.16,1.6,55.96,1005,189,0.8 +2008,7,10,5,30,24.5,1.2,0.092,0.64,65,614,246,0,12.200000000000001,65,614,0,246,72.79,0.16,1.6,46.24,1005,333,1 +2008,7,10,6,30,26.8,1.2,0.094,0.64,84,750,437,0,10.8,84,750,0,437,61.83,0.16,1.6,36.77,1005,293,1.2000000000000002 +2008,7,10,7,30,28.700000000000003,1.21,0.095,0.64,97,828,621,0,9.700000000000001,97,828,0,621,50.7,0.16,1.6,30.54,1005,270,1.7000000000000002 +2008,7,10,8,30,30,1.21,0.096,0.64,106,876,779,0,9.3,106,876,0,779,39.74,0.16,1.6,27.66,1005,260,2.4000000000000004 +2008,7,10,9,30,31,1.25,0.097,0.64,112,901,896,0,9.5,112,901,0,896,29.62,0.16,1.7000000000000002,26.45,1005,256,2.9000000000000004 +2008,7,10,10,30,31.5,1.29,0.098,0.64,116,913,962,0,9.9,116,913,0,962,21.93,0.16,1.8,26.47,1005,254,3.4000000000000004 +2008,7,10,11,30,31.8,1.33,0.1,0.64,118,915,977,0,10.4,118,915,0,977,19.96,0.16,1.8,26.89,1005,253,3.8000000000000003 +2008,7,10,12,30,31.700000000000003,1.17,0.114,0.64,123,892,931,0,11,123,892,0,931,25.12,0.16,1.9000000000000001,28.03,1005,251,4.2 +2008,7,10,13,30,31.3,1.22,0.113,0.64,117,869,835,0,11.5,117,869,0,835,34.28,0.16,2,29.66,1004,251,4.4 +2008,7,10,14,30,30.5,1.24,0.114,0.64,109,830,697,0,12,109,830,0,697,44.92,0.16,2,32.05,1004,251,4.5 +2008,7,10,15,30,29.5,1.28,0.114,0.64,97,764,525,0,12.4,97,764,0,525,56.02,0.16,2.1,34.85,1004,252,4.3 +2008,7,10,16,30,28.200000000000003,1.28,0.112,0.64,80,663,338,0,12.600000000000001,80,663,0,338,67.12,0.16,2,38.160000000000004,1004,253,3.7 +2008,7,10,17,30,26,1.3,0.108,0.64,55,480,155,0,12.8,55,480,0,155,77.89,0.16,2,44.09,1004,255,2.4000000000000004 +2008,7,10,18,30,23.900000000000002,1.31,0.10400000000000001,0.64,14,115,19,0,14.4,14,115,0,19,87.9,0.16,1.9000000000000001,55.2,1005,259,1.4000000000000001 +2008,7,10,19,30,23,1.3,0.10300000000000001,0.64,0,0,0,0,14.9,0,0,0,0,97.47,0.16,1.9000000000000001,60.47,1005,268,1 +2008,7,10,20,30,22.6,1.28,0.105,0.64,0,0,0,0,14.9,0,0,0,0,105.41,0.16,1.9000000000000001,61.77,1006,284,0.8 +2008,7,10,21,30,22.3,1.28,0.109,0.64,0,0,0,0,14.9,0,0,0,0,111.49000000000001,0.16,1.9000000000000001,62.83,1006,304,0.7000000000000001 +2008,7,10,22,30,22.1,1.27,0.112,0.64,0,0,0,0,14.9,0,0,0,0,115.15,0.16,1.9000000000000001,63.85,1006,333,0.7000000000000001 +2008,7,10,23,30,21.6,1.27,0.113,0.64,0,0,0,0,15,0,0,0,0,115.94,0.16,1.8,65.97,1005,187,0.8 +2008,7,11,0,30,21.1,1.26,0.114,0.64,0,0,0,0,14.9,0,0,0,0,113.77,0.16,1.8,67.9,1005,34,0.9 +2008,7,11,1,30,20.8,1.25,0.116,0.64,0,0,0,0,14.700000000000001,0,0,0,0,108.91,0.16,1.8,68.25,1005,53,1 +2008,7,11,2,30,20.8,1.22,0.122,0.64,0,0,0,0,14.3,0,0,0,0,101.88,0.16,1.8,66.45,1004,69,1 +2008,7,11,3,30,21.3,1.21,0.122,0.64,0,0,0,3,13.9,0,0,0,0,93.25,0.16,1.7000000000000002,62.730000000000004,1004,84,0.9 +2008,7,11,4,30,23.1,1.2,0.11800000000000001,0.64,37,300,72,0,14,37,300,0,72,83.35000000000001,0.16,1.7000000000000002,56.6,1004,105,0.9 +2008,7,11,5,30,25.700000000000003,1.16,0.115,0.64,70,581,241,0,13.4,70,581,0,241,72.9,0.16,1.6,46.52,1005,149,1 +2008,7,11,6,30,28.1,1.1300000000000001,0.11800000000000001,0.64,92,721,431,1,11.9,92,721,0,431,61.940000000000005,0.16,1.6,36.76,1005,193,1.4000000000000001 +2008,7,11,7,30,29.900000000000002,1.11,0.123,0.64,108,800,614,7,11.200000000000001,268,262,0,433,50.800000000000004,0.16,1.6,31.490000000000002,1005,212,2 +2008,7,11,8,30,31.200000000000003,1.1,0.127,0.64,121,848,772,0,11.3,121,848,0,772,39.85,0.16,1.6,29.38,1005,218,2.5 +2008,7,11,9,30,32,1.09,0.132,0.64,130,873,887,0,11,130,873,0,887,29.740000000000002,0.16,1.7000000000000002,27.61,1005,221,2.9000000000000004 +2008,7,11,10,30,32.5,1.1,0.132,0.64,133,889,957,0,10.8,133,889,0,957,22.07,0.16,1.7000000000000002,26.48,1005,225,3.1 +2008,7,11,11,30,32.7,1.08,0.133,0.64,135,889,969,0,10.700000000000001,135,889,0,969,20.09,0.16,1.8,26.080000000000002,1004,230,3.4000000000000004 +2008,7,11,12,30,32.6,1.11,0.131,0.64,131,879,926,0,10.8,131,879,0,926,25.22,0.16,1.9000000000000001,26.41,1004,235,3.5 +2008,7,11,13,30,32.2,1.08,0.136,0.64,128,847,827,0,11,128,847,0,827,34.35,0.16,2.1,27.28,1004,239,3.6 +2008,7,11,14,30,31.5,1.06,0.14300000000000002,0.64,123,798,687,0,11.100000000000001,123,798,0,687,44.97,0.16,2.2,28.650000000000002,1004,243,3.6 +2008,7,11,15,30,30.5,1.06,0.15,0.64,111,721,514,0,11.4,111,721,0,514,56.08,0.16,2.3000000000000003,30.91,1004,246,3.3000000000000003 +2008,7,11,16,30,29.200000000000003,1.06,0.154,0.64,93,601,326,0,11.8,93,601,0,326,67.18,0.16,2.4000000000000004,34.08,1004,246,2.8000000000000003 +2008,7,11,17,30,27,1.06,0.154,0.64,63,401,146,0,12.200000000000001,63,401,0,146,77.95,0.16,2.4000000000000004,39.89,1004,244,1.8 +2008,7,11,18,30,24.900000000000002,1.08,0.151,0.64,14,60,16,0,14.5,14,60,0,16,87.97,0.16,2.4000000000000004,52.47,1004,245,1 +2008,7,11,19,30,24,1.09,0.148,0.64,0,0,0,0,15.3,0,0,0,0,97.55,0.16,2.3000000000000003,58.42,1004,254,0.7000000000000001 +2008,7,11,20,30,23.8,1.1,0.145,0.64,0,0,0,0,15.4,0,0,0,0,105.52,0.16,2.3000000000000003,59.370000000000005,1004,291,0.5 +2008,7,11,21,30,23.6,1.1,0.14300000000000002,0.64,0,0,0,0,15.3,0,0,0,0,111.61,0.16,2.3000000000000003,59.69,1004,179,0.5 +2008,7,11,22,30,23.1,1.08,0.14100000000000001,0.64,0,0,0,0,15.100000000000001,0,0,0,0,115.28,0.16,2.2,60.71,1004,49,0.7000000000000001 +2008,7,11,23,30,22.700000000000003,1.06,0.137,0.64,0,0,0,0,14.600000000000001,0,0,0,0,116.08,0.16,2.2,60.22,1003,69,0.9 +2008,7,12,0,30,22.5,1.04,0.134,0.64,0,0,0,0,14,0,0,0,0,113.91,0.16,2.1,58.5,1003,82,1.1 +2008,7,12,1,30,22.3,1.02,0.129,0.64,0,0,0,0,13.3,0,0,0,0,109.05,0.16,2.1,56.620000000000005,1003,92,1.2000000000000002 +2008,7,12,2,30,22.1,1.01,0.126,0.64,0,0,0,0,12.600000000000001,0,0,0,0,102.01,0.16,2,55.02,1002,102,1.3 +2008,7,12,3,30,22.400000000000002,1,0.123,0.64,0,0,0,0,12.200000000000001,0,0,0,0,93.37,0.16,2,52.53,1002,112,1.3 +2008,7,12,4,30,24.400000000000002,0.99,0.12,0.64,37,275,69,0,13.200000000000001,37,275,0,69,83.47,0.16,2,49.6,1002,126,1.5 +2008,7,12,5,30,27.200000000000003,0.98,0.12,0.64,72,557,235,0,12.5,72,557,0,235,73.01,0.16,2,40.22,1002,151,2 +2008,7,12,6,30,29.5,0.9500000000000001,0.125,0.64,95,698,423,0,11.600000000000001,95,698,0,423,62.050000000000004,0.16,2,33.18,1002,175,2.4000000000000004 +2008,7,12,7,30,31.200000000000003,0.93,0.128,0.64,112,781,604,0,11.200000000000001,112,781,0,604,50.910000000000004,0.16,2,29.19,1002,188,2.8000000000000003 +2008,7,12,8,30,32.4,0.92,0.132,0.64,124,831,761,0,11,124,831,0,761,39.96,0.16,2,27.01,1002,193,3.3000000000000003 +2008,7,12,9,30,33.2,0.93,0.132,0.64,131,863,879,0,11,131,863,0,879,29.87,0.16,2,25.82,1002,195,3.7 +2008,7,12,10,30,33.6,0.9,0.14,0.64,139,873,947,0,11.200000000000001,139,873,0,947,22.21,0.16,2,25.52,1002,195,4 +2008,7,12,11,30,33.800000000000004,0.87,0.147,0.64,143,868,958,0,11.4,143,868,0,958,20.22,0.16,2.1,25.53,1001,197,4.3 +2008,7,12,12,30,33.5,0.86,0.146,0.64,141,860,918,0,11.5,141,860,0,918,25.32,0.16,2.1,26.14,1001,200,4.5 +2008,7,12,13,30,32.9,0.85,0.149,0.64,137,833,825,0,11.5,137,833,0,825,34.42,0.16,2.1,27.060000000000002,1000,203,4.6000000000000005 +2008,7,12,14,30,32.1,0.85,0.152,0.64,129,786,684,0,11.4,129,786,0,684,45.04,0.16,2.2,28.27,1000,204,4.4 +2008,7,12,15,30,31.1,0.87,0.154,0.64,115,715,514,0,11.600000000000001,115,715,0,514,56.14,0.16,2.2,30.27,1000,203,4 +2008,7,12,16,30,29.8,0.89,0.155,0.64,95,598,327,0,11.9,95,598,0,327,67.24,0.16,2.2,33.26,1000,201,3.3000000000000003 +2008,7,12,17,30,27.6,0.92,0.154,0.64,64,397,146,0,12.600000000000001,64,397,0,146,78.02,0.16,2.2,39.410000000000004,1000,200,2.2 +2008,7,12,18,30,25.400000000000002,0.96,0.153,0.64,14,51,16,0,14.9,14,51,0,16,88.04,0.16,2.1,52.36,1000,194,1.3 +2008,7,12,19,30,24.3,1.02,0.148,0.64,0,0,0,0,15.9,0,0,0,0,97.65,0.16,2,59.42,1000,182,1.2000000000000002 +2008,7,12,20,30,23.5,1.08,0.145,0.64,0,0,0,0,16.400000000000002,0,0,0,0,105.62,0.16,1.9000000000000001,64.5,1000,170,1.3 +2008,7,12,21,30,22.700000000000003,1.1400000000000001,0.145,0.64,0,0,0,0,16.900000000000002,0,0,0,0,111.73,0.16,1.8,69.97,1000,161,1.4000000000000001 +2008,7,12,22,30,22,1.16,0.15,0.64,0,0,0,0,17.3,0,0,0,0,115.41,0.16,1.8,74.79,1000,158,1.5 +2008,7,12,23,30,21.6,1.1,0.176,0.64,0,0,0,0,17.7,0,0,0,0,116.22,0.16,2.1,78.53,1000,158,1.6 +2008,7,13,0,30,21.6,0.9500000000000001,0.222,0.64,0,0,0,7,18.2,0,0,0,0,114.06,0.16,2.3000000000000003,80.9,1000,144,1.9000000000000001 +2008,7,13,1,30,22,0.85,0.246,0.64,0,0,0,6,18.1,0,0,0,0,109.19,0.16,2.5,78.53,999,124,2.7 +2008,7,13,2,30,22.3,0.7000000000000001,0.28600000000000003,0.64,0,0,0,1,16.7,0,0,0,0,102.15,0.16,2.8000000000000003,70.48,998,114,3.3000000000000003 +2008,7,13,3,30,22.700000000000003,0.53,0.4,0.64,0,0,0,3,14,0,0,0,0,93.49,0.16,3,58.01,998,123,2.8000000000000003 +2008,7,13,4,30,24,0.5,0.444,0.64,42,34,46,4,13.200000000000001,32,0,7,32,83.58,0.16,3.2,51.02,999,146,2.8000000000000003 +2008,7,13,5,30,25.700000000000003,0.53,0.436,0.64,127,228,194,6,13.700000000000001,7,0,0,7,73.12,0.16,3.3000000000000003,47.44,1000,160,3.8000000000000003 +2008,7,13,6,30,26.900000000000002,0.53,0.494,0.64,195,356,362,7,15.8,211,27,0,223,62.15,0.16,3.5,50.730000000000004,1000,164,4.2 +2008,7,13,7,30,27.5,0.53,0.532,0.64,251,445,530,0,17.7,251,445,0,530,51.02,0.16,3.7,54.980000000000004,1001,171,3.7 +2008,7,13,8,30,28,0.5700000000000001,0.545,0.64,284,515,678,7,18.2,133,0,0,134,40.08,0.16,3.8000000000000003,55.36,1001,165,2.7 +2008,7,13,9,30,29,0.6,0.445,0.64,267,616,801,8,18.2,439,181,0,596,29.990000000000002,0.16,3.9000000000000004,52.230000000000004,1001,153,2.6 +2008,7,13,10,30,29.900000000000002,0.5700000000000001,0.424,0.64,266,650,867,3,17.400000000000002,542,134,0,665,22.35,0.16,3.9000000000000004,46.980000000000004,1000,160,3.6 +2008,7,13,11,30,29.900000000000002,0.53,0.41500000000000004,0.64,266,658,882,4,17,476,45,0,518,20.36,0.16,3.9000000000000004,45.800000000000004,1000,169,4.6000000000000005 +2008,7,13,12,30,29.6,0.61,0.336,0.64,227,695,855,4,17.6,346,2,0,348,25.43,0.16,3.9000000000000004,48.620000000000005,1000,167,5.1000000000000005 +2008,7,13,13,30,30.3,0.54,0.34700000000000003,0.64,223,654,762,7,18.1,171,1,0,172,34.5,0.16,3.9000000000000004,47.94,1000,167,5.300000000000001 +2008,7,13,14,30,31,0.55,0.334,0.64,201,608,631,7,17.900000000000002,21,0,0,21,45.11,0.16,4,45.51,999,178,5.4 +2008,7,13,15,30,30.5,0.54,0.33,0.64,176,525,468,7,17.900000000000002,187,14,0,195,56.2,0.16,4,46.81,999,193,5.300000000000001 +2008,7,13,16,30,28.900000000000002,0.54,0.317,0.64,137,401,291,0,18.7,137,401,0,291,67.31,0.16,4.1000000000000005,54.050000000000004,1000,204,5.2 +2008,7,13,17,30,26.8,0.54,0.331,0.64,84,188,123,0,20.1,84,188,0,123,78.10000000000001,0.16,4.1000000000000005,66.72,1000,207,4.4 +2008,7,13,18,30,25.200000000000003,0.54,0.34700000000000003,0.64,7,2,7,7,21.400000000000002,7,2,5,7,88.12,0.16,4.2,79.56,1001,201,3.1 +2008,7,13,19,30,24.3,0.55,0.34800000000000003,0.64,0,0,0,3,22.3,0,0,0,0,97.75,0.16,4.1000000000000005,88.53,1001,193,2 +2008,7,13,20,30,23.700000000000003,0.56,0.34800000000000003,0.64,0,0,0,1,22.700000000000003,0,0,0,0,105.74000000000001,0.16,4.1000000000000005,93.88,1001,190,1.5 +2008,7,13,21,30,23.3,0.59,0.341,0.64,0,0,0,1,22.8,0,0,0,0,111.86,0.16,3.9000000000000004,96.74000000000001,1001,197,1.3 +2008,7,13,22,30,23,0.64,0.315,0.64,0,0,0,0,22.700000000000003,0,0,0,0,115.56,0.16,3.7,98.12,1001,206,1.3 +2008,7,13,23,30,22.700000000000003,0.6900000000000001,0.28200000000000003,0.64,0,0,0,0,22.5,0,0,0,0,116.38,0.16,3.5,98.84,1001,214,1.5 +2008,7,14,0,30,22.400000000000002,0.73,0.252,0.64,0,0,0,0,22.200000000000003,0,0,0,0,114.21000000000001,0.16,3.1,99.01,1001,225,1.6 +2008,7,14,1,30,22,0.73,0.218,0.64,0,0,0,0,21.8,0,0,0,0,109.33,0.16,2.7,99.07000000000001,1001,244,1.7000000000000002 +2008,7,14,2,30,21.5,0.71,0.185,0.64,0,0,0,0,21,0,0,0,0,102.29,0.16,2.4000000000000004,97.26,1001,263,1.9000000000000001 +2008,7,14,3,30,21.400000000000002,0.72,0.159,0.64,0,0,0,0,19.8,0,0,0,0,93.62,0.16,2.1,90.51,1002,270,2.3000000000000003 +2008,7,14,4,30,22.400000000000002,0.74,0.129,0.64,38,239,64,0,18.2,38,239,0,64,83.7,0.16,1.9000000000000001,77.19,1002,267,3 +2008,7,14,5,30,23.700000000000003,0.75,0.112,0.64,71,557,232,0,15.8,71,557,0,232,73.23,0.16,1.9000000000000001,61.39,1003,259,3.5 +2008,7,14,6,30,24.900000000000002,0.66,0.116,0.64,94,700,420,0,14.100000000000001,94,700,0,420,62.27,0.16,1.9000000000000001,51,1003,248,3.9000000000000004 +2008,7,14,7,30,25.900000000000002,0.66,0.113,0.64,108,791,604,0,13.600000000000001,108,791,0,604,51.13,0.16,1.9000000000000001,46.56,1004,241,4.3 +2008,7,14,8,30,26.700000000000003,0.73,0.10300000000000001,0.64,113,854,765,0,13.5,113,854,0,765,40.19,0.16,1.9000000000000001,44.07,1004,238,4.800000000000001 +2008,7,14,9,30,27.3,0.68,0.111,0.64,124,877,883,0,13.4,124,877,0,883,30.12,0.16,1.9000000000000001,42.5,1004,236,5.1000000000000005 +2008,7,14,10,30,27.700000000000003,0.66,0.116,0.64,131,891,954,0,13.3,131,891,0,954,22.5,0.16,1.8,41.15,1005,235,5.300000000000001 +2008,7,14,11,30,27.8,0.67,0.113,0.64,130,899,973,0,12.9,130,899,0,973,20.51,0.16,1.7000000000000002,39.95,1005,234,5.5 +2008,7,14,12,30,27.6,0.6,0.116,0.64,131,889,933,0,12.3,131,889,0,933,25.54,0.16,1.6,38.79,1005,234,5.4 +2008,7,14,13,30,27.1,0.56,0.128,0.64,132,858,839,0,11.700000000000001,132,858,0,839,34.59,0.16,1.5,38.44,1005,233,5.2 +2008,7,14,14,30,26.3,0.62,0.121,0.64,119,824,700,0,11.4,119,824,0,700,45.18,0.16,1.5,39.47,1005,235,4.9 +2008,7,14,15,30,25.3,0.63,0.125,0.64,108,752,526,0,11.5,108,752,0,526,56.27,0.16,1.5,42.14,1006,240,4.4 +2008,7,14,16,30,24.400000000000002,0.62,0.129,0.64,92,630,334,7,11.700000000000001,108,8,0,111,67.38,0.16,1.6,45.02,1006,247,3.7 +2008,7,14,17,30,23,0.65,0.125,0.64,61,428,149,0,12.100000000000001,61,428,0,149,78.18,0.16,1.6,50.18,1007,254,2.5 +2008,7,14,18,30,21.6,0.68,0.122,0.64,14,51,15,0,13.100000000000001,14,51,0,15,88.2,0.16,1.6,58.550000000000004,1007,260,1.4000000000000001 +2008,7,14,19,30,21.1,0.74,0.115,0.64,0,0,0,0,13.4,0,0,0,0,97.85000000000001,0.16,1.6,61.38,1008,281,1 +2008,7,14,20,30,20.8,0.78,0.107,0.64,0,0,0,0,13.200000000000001,0,0,0,0,105.86,0.16,1.6,61.89,1008,317,0.9 +2008,7,14,21,30,20.400000000000002,0.81,0.105,0.64,0,0,0,0,13.100000000000001,0,0,0,0,112,0.16,1.7000000000000002,62.95,1009,337,0.9 +2008,7,14,22,30,20,0.68,0.133,0.64,0,0,0,0,13.100000000000001,0,0,0,0,115.71000000000001,0.16,1.8,64.61,1009,343,1.1 +2008,7,14,23,30,19.3,0.63,0.145,0.64,0,0,0,0,13.200000000000001,0,0,0,0,116.53,0.16,1.9000000000000001,68,1010,352,1.2000000000000002 +2008,7,15,0,30,18.7,0.66,0.14100000000000001,0.64,0,0,0,0,13.3,0,0,0,0,114.36,0.16,2,70.77,1010,181,1.3 +2008,7,15,1,30,18.3,0.72,0.136,0.64,0,0,0,0,13.3,0,0,0,0,109.48,0.16,2,72.51,1010,9,1.4000000000000001 +2008,7,15,2,30,17.900000000000002,0.8,0.132,0.64,0,0,0,0,13.200000000000001,0,0,0,0,102.43,0.16,2.1,74.22,1010,15,1.5 +2008,7,15,3,30,18.5,0.9400000000000001,0.121,0.64,0,0,0,0,13.3,0,0,0,0,93.76,0.16,2.1,71.7,1010,19,1.9000000000000001 +2008,7,15,4,30,20.5,1.1400000000000001,0.108,0.64,34,284,65,0,13.600000000000001,34,284,0,65,83.82000000000001,0.16,2.1,64.45,1011,23,2.8000000000000003 +2008,7,15,5,30,23,1.26,0.098,0.64,65,586,233,0,13.600000000000001,65,586,0,233,73.35000000000001,0.16,2,55.59,1011,29,3.7 +2008,7,15,6,30,25.200000000000003,1.35,0.085,0.64,79,745,424,0,12.9,79,745,0,424,62.38,0.16,2,46.27,1011,33,3.8000000000000003 +2008,7,15,7,30,27.1,1.32,0.076,0.64,88,833,609,0,11.9,88,833,0,609,51.24,0.16,2,38.76,1011,37,3.5 +2008,7,15,8,30,28.700000000000003,1.26,0.069,0.64,93,885,768,0,11.4,93,885,0,768,40.31,0.16,2,34.15,1011,40,3 +2008,7,15,9,30,30,1.06,0.079,0.64,104,904,884,0,11.200000000000001,104,904,0,884,30.26,0.16,2,31.45,1011,39,2.5 +2008,7,15,10,30,31.1,1.08,0.078,0.64,106,919,955,0,10.8,106,919,0,955,22.66,0.16,2,28.73,1011,28,2 +2008,7,15,11,30,31.8,1.12,0.078,0.64,107,923,971,0,10.8,107,923,0,971,20.66,0.16,2,27.47,1010,185,1.7000000000000002 +2008,7,15,12,30,32.2,1.11,0.08,0.64,107,913,930,0,10.600000000000001,107,913,0,930,25.66,0.16,2,26.52,1010,339,1.9000000000000001 +2008,7,15,13,30,32.1,1.1400000000000001,0.077,0.64,101,895,837,0,10.3,101,895,0,837,34.68,0.16,2,26.26,1010,324,2.6 +2008,7,15,14,30,31.700000000000003,1.1500000000000001,0.073,0.64,92,863,700,0,10.200000000000001,92,863,0,700,45.26,0.16,2,26.57,1009,324,3.2 +2008,7,15,15,30,30.900000000000002,1.17,0.069,0.64,81,811,530,0,10.100000000000001,81,811,0,530,56.35,0.16,1.9000000000000001,27.59,1009,330,3.7 +2008,7,15,16,30,29.6,1.18,0.066,0.64,67,716,341,0,9.9,67,716,0,341,67.46000000000001,0.16,1.9000000000000001,29.51,1010,337,4 +2008,7,15,17,30,27.3,1.2,0.064,0.64,46,536,155,0,10.200000000000001,46,536,0,155,78.27,0.16,1.9000000000000001,34.39,1010,343,3.5 +2008,7,15,18,30,24.900000000000002,1.22,0.062,0.64,12,142,16,0,11.200000000000001,12,142,0,16,88.29,0.16,1.8,42.38,1010,352,3 +2008,7,15,19,30,23.400000000000002,1.23,0.061,0.64,0,0,0,0,11.4,0,0,0,0,97.96000000000001,0.16,1.8,46.79,1011,188,2.8000000000000003 +2008,7,15,20,30,22.400000000000002,1.25,0.062,0.64,0,0,0,0,11.200000000000001,0,0,0,0,105.98,0.16,1.9000000000000001,49.02,1011,24,2.5 +2008,7,15,21,30,21.5,1.27,0.062,0.64,0,0,0,0,10.700000000000001,0,0,0,0,112.14,0.16,1.8,50.31,1012,35,2.4000000000000004 +2008,7,15,22,30,20.6,1.3,0.061,0.64,0,0,0,0,10.3,0,0,0,0,115.86,0.16,1.8,51.75,1012,41,2.2 +2008,7,15,23,30,19.8,1.33,0.06,0.64,0,0,0,0,10.100000000000001,0,0,0,0,116.69,0.16,1.7000000000000002,53.620000000000005,1012,47,1.9000000000000001 +2008,7,16,0,30,19.200000000000003,1.36,0.059000000000000004,0.64,0,0,0,0,9.9,0,0,0,0,114.52,0.16,1.7000000000000002,54.980000000000004,1011,52,1.8 +2008,7,16,1,30,18.5,1.37,0.057,0.64,0,0,0,0,9.700000000000001,0,0,0,0,109.64,0.16,1.6,56.59,1011,56,1.6 +2008,7,16,2,30,18,1.37,0.056,0.64,0,0,0,0,9.4,0,0,0,0,102.57000000000001,0.16,1.6,57.1,1011,63,1.4000000000000001 +2008,7,16,3,30,18.400000000000002,1.37,0.057,0.64,0,0,0,0,9.1,0,0,0,0,93.89,0.16,1.7000000000000002,54.78,1011,75,1.3 +2008,7,16,4,30,20.5,1.36,0.059000000000000004,0.64,29,376,69,0,9.8,29,376,0,69,83.94,0.16,1.7000000000000002,50.370000000000005,1012,90,1.7000000000000002 +2008,7,16,5,30,23.3,1.35,0.062,0.64,56,642,239,0,9.4,56,642,0,239,73.47,0.16,1.8,41.25,1012,121,2.2 +2008,7,16,6,30,25.700000000000003,1.36,0.064,0.64,72,771,429,0,9.200000000000001,72,771,0,429,62.49,0.16,1.9000000000000001,35.230000000000004,1012,163,2.4000000000000004 +2008,7,16,7,30,27.400000000000002,1.34,0.068,0.64,85,844,612,0,8.8,85,844,0,612,51.36,0.16,1.9000000000000001,31.060000000000002,1012,190,2.7 +2008,7,16,8,30,28.5,1.33,0.07200000000000001,0.64,95,884,768,0,9,95,884,0,768,40.43,0.16,2,29.580000000000002,1011,203,3 +2008,7,16,9,30,29.400000000000002,1.32,0.077,0.64,103,906,884,0,9.4,103,906,0,884,30.39,0.16,2.1,28.71,1011,212,3.3000000000000003 +2008,7,16,10,30,30.1,1.31,0.081,0.64,108,917,953,0,9.8,108,917,0,953,22.82,0.16,2.1,28.400000000000002,1010,221,3.5 +2008,7,16,11,30,30.400000000000002,1.3,0.085,0.64,110,915,965,0,10.3,110,915,0,965,20.830000000000002,0.16,2.2,28.92,1010,228,3.6 +2008,7,16,12,30,30.5,1.25,0.09,0.64,111,903,924,0,10.8,111,903,0,924,25.79,0.16,2.2,29.64,1009,235,3.5 +2008,7,16,13,30,30.400000000000002,1.25,0.092,0.64,107,880,830,0,11.100000000000001,107,880,0,830,34.78,0.16,2.2,30.46,1008,240,3.4000000000000004 +2008,7,16,14,30,29.900000000000002,1.24,0.094,0.64,101,841,692,0,11.4,101,841,0,692,45.35,0.16,2.2,31.86,1008,243,3.5 +2008,7,16,15,30,29,1.21,0.098,0.64,92,772,519,1,11.8,92,772,0,519,56.43,0.16,2.3000000000000003,34.54,1007,245,3.9000000000000004 +2008,7,16,16,30,27.400000000000002,1.1400000000000001,0.107,0.64,79,654,329,1,12.5,79,654,0,329,67.55,0.16,2.3000000000000003,39.79,1007,247,4.1000000000000005 +2008,7,16,17,30,25.200000000000003,0.97,0.13,0.64,58,419,143,0,13.5,58,419,0,143,78.36,0.16,2.3000000000000003,48.19,1007,251,3.6 +2008,7,16,18,30,23.200000000000003,0.8300000000000001,0.16,0.64,11,30,12,0,14.600000000000001,11,30,0,12,88.39,0.16,2.4000000000000004,58.550000000000004,1008,260,2.5 +2008,7,16,19,30,22.3,0.78,0.193,0.64,0,0,0,0,15.5,0,0,0,0,98.08,0.16,2.4000000000000004,65.41,1008,272,1.6 +2008,7,16,20,30,21.900000000000002,0.87,0.193,0.64,0,0,0,0,15.9,0,0,0,0,106.12,0.16,2.4000000000000004,68.61,1008,287,1.1 +2008,7,16,21,30,21.5,0.91,0.169,0.64,0,0,0,8,15.9,0,0,0,0,112.29,0.16,2.3000000000000003,70.32000000000001,1008,152,0.7000000000000001 +2008,7,16,22,30,21,0.96,0.149,0.64,0,0,0,0,15.600000000000001,0,0,0,0,116.02,0.16,2.2,71.09,1007,30,0.8 +2008,7,16,23,30,20.3,0.98,0.137,0.64,0,0,0,0,15.200000000000001,0,0,0,0,116.86,0.16,2.1,72.57000000000001,1006,60,1 +2008,7,17,0,30,20,0.93,0.138,0.64,0,0,0,0,14.8,0,0,0,0,114.69,0.16,2.1,71.86,1006,68,1.1 +2008,7,17,1,30,20.400000000000002,0.8200000000000001,0.151,0.64,0,0,0,0,14.200000000000001,0,0,0,0,109.8,0.16,2,67.37,1005,68,1 +2008,7,17,2,30,20.900000000000002,0.6900000000000001,0.176,0.64,0,0,0,3,13.5,0,0,0,0,102.72,0.16,2.1,62.52,1005,67,0.7000000000000001 +2008,7,17,3,30,21.400000000000002,0.62,0.2,0.64,0,0,0,4,13.200000000000001,0,0,0,0,94.03,0.16,2.2,59.410000000000004,1005,76,0.30000000000000004 +2008,7,17,4,30,22.400000000000002,0.55,0.232,0.64,40,108,51,4,13.600000000000001,46,1,7,46,84.07000000000001,0.16,2.3000000000000003,57.480000000000004,1006,184,0.2 +2008,7,17,5,30,24.6,0.5,0.266,0.64,102,348,200,3,13.200000000000001,157,38,7,168,73.59,0.16,2.5,48.95,1006,280,0.7000000000000001 +2008,7,17,6,30,26.900000000000002,0.48,0.293,0.64,150,497,379,0,10.700000000000001,150,497,0,379,62.61,0.16,2.6,36.43,1006,269,1.3 +2008,7,17,7,30,28.5,0.45,0.308,0.64,184,594,554,8,9.9,285,380,0,522,51.480000000000004,0.16,2.6,31.42,1005,252,1.8 +2008,7,17,8,30,29.6,0.44,0.3,0.64,199,672,709,7,10.3,323,403,0,629,40.56,0.16,2.5,30.22,1005,241,2.7 +2008,7,17,9,30,30.3,0.46,0.28200000000000003,0.64,204,731,834,7,10.600000000000001,364,433,0,737,30.53,0.16,2.3000000000000003,29.68,1005,239,3.7 +2008,7,17,10,30,30.6,0.5,0.268,0.64,203,762,905,7,11,378,439,0,782,22.98,0.16,2.4000000000000004,29.89,1004,239,4.3 +2008,7,17,11,30,30.5,0.51,0.259,0.64,200,771,920,7,11.5,310,571,0,843,20.990000000000002,0.16,2.5,30.98,1004,237,4.5 +2008,7,17,12,30,30,0.47000000000000003,0.275,0.64,206,744,874,0,11.8,206,744,0,874,25.92,0.16,2.7,32.67,1004,233,4.4 +2008,7,17,13,30,28.8,0.47000000000000003,0.295,0.64,204,695,774,0,12,204,695,0,774,34.89,0.16,3,35.43,1003,230,3.9000000000000004 +2008,7,17,14,30,28,0.51,0.268,0.64,178,662,643,7,12.200000000000001,309,324,0,537,45.44,0.16,3.1,37.59,1003,229,3.6 +2008,7,17,15,30,27.5,0.52,0.247,0.64,150,597,479,6,12.4,235,37,0,256,56.52,0.16,3.1,39.15,1003,231,3.8000000000000003 +2008,7,17,16,30,26.400000000000002,0.51,0.242,0.64,120,469,298,7,12.700000000000001,151,19,0,158,67.64,0.16,3.1,42.54,1003,232,3.7 +2008,7,17,17,30,24.6,0.49,0.257,0.64,77,237,125,3,13.3,30,0,0,30,78.45,0.16,3,49.49,1003,231,2.7 +2008,7,17,18,30,23.1,0.48,0.281,0.64,7,2,7,3,14.700000000000001,7,2,5,7,88.49,0.16,3,59.28,1003,223,1.7000000000000002 +2008,7,17,19,30,22.3,0.45,0.307,0.64,0,0,0,0,15.8,0,0,0,0,98.2,0.16,3,66.47,1003,208,1.4000000000000001 +2008,7,17,20,30,22,0.4,0.354,0.64,0,0,0,0,16.400000000000002,0,0,0,0,106.25,0.16,3.1,70.38,1003,195,1.2000000000000002 +2008,7,17,21,30,21.700000000000003,0.36,0.41200000000000003,0.64,0,0,0,0,16.8,0,0,0,0,112.44,0.16,3.1,73.54,1003,186,1.1 +2008,7,17,22,30,21.5,0.33,0.439,0.64,0,0,0,0,17,0,0,0,0,116.19,0.16,3.2,75.77,1003,178,1 +2008,7,17,23,30,21.200000000000003,0.33,0.437,0.64,0,0,0,0,17.2,0,0,0,0,117.04,0.16,3.3000000000000003,78,1003,166,1 +2008,7,18,0,30,21,0.33,0.422,0.64,0,0,0,0,17.3,0,0,0,0,114.86,0.16,3.3000000000000003,79.2,1002,150,1 +2008,7,18,1,30,20.6,0.34,0.40700000000000003,0.64,0,0,0,3,17.2,0,0,0,0,109.96000000000001,0.16,3.4000000000000004,80.64,1002,139,1.1 +2008,7,18,2,30,20.3,0.34,0.395,0.64,0,0,0,4,16.8,0,0,0,0,102.88,0.16,3.4000000000000004,80.52,1002,132,1.2000000000000002 +2008,7,18,3,30,20.700000000000003,0.35000000000000003,0.387,0.64,0,0,0,3,16.400000000000002,0,0,0,0,94.17,0.16,3.4000000000000004,76.48,1002,130,1.4000000000000001 +2008,7,18,4,30,22.3,0.36,0.38,0.64,36,31,40,0,16.1,36,31,0,40,84.2,0.16,3.4000000000000004,67.75,1002,138,2.1 +2008,7,18,5,30,24.3,0.38,0.369,0.64,116,245,185,1,15.9,116,245,0,185,73.72,0.16,3.4000000000000004,59.47,1002,161,2.8000000000000003 +2008,7,18,6,30,26,0.42,0.341,0.64,161,442,363,0,16.1,161,442,0,363,62.730000000000004,0.16,3.5,54.38,1002,182,3.3000000000000003 +2008,7,18,7,30,27.200000000000003,0.44,0.338,0.64,191,557,537,1,16.400000000000002,191,557,0,537,51.6,0.16,3.6,51.77,1002,193,3.6 +2008,7,18,8,30,28.1,0.46,0.328,0.64,208,637,691,0,16.900000000000002,208,637,0,691,40.69,0.16,3.6,50.660000000000004,1002,200,3.8000000000000003 +2008,7,18,9,30,28.900000000000002,0.58,0.20400000000000001,0.64,166,769,827,2,17.3,470,161,0,609,30.68,0.16,3.7,49.42,1001,207,3.9000000000000004 +2008,7,18,10,30,29.3,0.59,0.203,0.64,170,790,896,2,17.3,501,226,0,709,23.150000000000002,0.16,3.7,48.38,1001,214,4 +2008,7,18,11,30,29.5,0.59,0.202,0.64,171,796,913,0,17.2,171,796,0,913,21.16,0.16,3.6,47.44,1001,220,4.1000000000000005 +2008,7,18,12,30,29.3,0.6,0.20500000000000002,0.64,169,783,873,0,17,169,783,0,873,26.060000000000002,0.16,3.6,47.4,1001,225,4.2 +2008,7,18,13,30,28.900000000000002,0.61,0.20400000000000001,0.64,162,757,782,0,16.7,162,757,0,782,35,0.16,3.6,47.83,1001,229,4.3 +2008,7,18,14,30,28.200000000000003,0.62,0.2,0.64,149,716,650,0,16.5,149,716,0,650,45.54,0.16,3.4000000000000004,49.15,1001,233,4.2 +2008,7,18,15,30,27.3,0.63,0.194,0.64,130,645,485,0,16.3,130,645,0,485,56.620000000000005,0.16,3.3000000000000003,51.2,1001,234,3.8000000000000003 +2008,7,18,16,30,26.200000000000003,0.64,0.188,0.64,104,529,305,0,16.2,104,529,1,305,67.73,0.16,3.1,54.29,1001,234,3.2 +2008,7,18,17,30,24.700000000000003,0.66,0.18,0.64,66,323,131,0,16.3,66,323,0,131,78.56,0.16,3,59.67,1002,233,2.3000000000000003 +2008,7,18,18,30,23.200000000000003,0.7000000000000001,0.17200000000000001,0.64,10,16,10,0,16.8,10,16,0,10,88.59,0.16,2.9000000000000004,67.41,1002,230,1.4000000000000001 +2008,7,18,19,30,22.3,0.73,0.163,0.64,0,0,0,0,17.2,0,0,0,0,98.33,0.16,2.8000000000000003,72.91,1003,222,1 +2008,7,18,20,30,21.700000000000003,0.75,0.152,0.64,0,0,0,0,17.400000000000002,0,0,0,0,106.4,0.16,2.7,76.62,1003,206,0.8 +2008,7,18,21,30,21.3,0.79,0.14300000000000002,0.64,0,0,0,0,17.5,0,0,0,0,112.61,0.16,2.6,79.07000000000001,1003,190,0.7000000000000001 +2008,7,18,22,30,21,0.8200000000000001,0.135,0.64,0,0,0,0,17.5,0,0,0,0,116.36,0.16,2.5,80.53,1003,170,0.7000000000000001 +2008,7,18,23,30,20.6,0.85,0.126,0.64,0,0,0,0,17.400000000000002,0,0,0,0,117.22,0.16,2.4000000000000004,82.14,1003,143,0.7000000000000001 +2008,7,19,0,30,20.1,0.88,0.116,0.64,0,0,0,0,17.3,0,0,0,0,115.04,0.16,2.3000000000000003,84.01,1003,119,0.8 +2008,7,19,1,30,19.8,0.9,0.108,0.64,0,0,0,0,17.1,0,0,0,0,110.13,0.16,2.3000000000000003,84.63,1003,108,0.9 +2008,7,19,2,30,19.5,0.92,0.10300000000000001,0.64,0,0,0,0,16.900000000000002,0,0,0,0,103.03,0.16,2.3000000000000003,85.14,1003,102,1 +2008,7,19,3,30,19.8,0.93,0.10200000000000001,0.64,0,0,0,0,16.8,0,0,0,0,94.32000000000001,0.16,2.2,82.71000000000001,1004,96,1 +2008,7,19,4,30,21.3,0.9400000000000001,0.10300000000000001,0.64,32,258,58,0,16.7,32,258,0,58,84.33,0.16,2.2,74.96000000000001,1004,95,1.1 +2008,7,19,5,30,23.6,0.9500000000000001,0.10300000000000001,0.64,66,557,221,0,16.5,66,557,0,221,73.84,0.16,2.3000000000000003,64.28,1004,109,1.2000000000000002 +2008,7,19,6,30,25.900000000000002,0.98,0.1,0.64,85,712,410,0,15.5,85,712,0,410,62.86,0.16,2.3000000000000003,52.74,1004,146,1 +2008,7,19,7,30,27.8,1,0.1,0.64,99,798,593,0,14.200000000000001,99,798,0,593,51.72,0.16,2.3000000000000003,43.45,1005,188,1.2000000000000002 +2008,7,19,8,30,29.400000000000002,1.03,0.101,0.64,109,849,751,0,13.600000000000001,109,849,0,751,40.82,0.16,2.3000000000000003,37.89,1005,213,1.7000000000000002 +2008,7,19,9,30,30.6,0.85,0.134,0.64,133,851,864,0,13.5,133,851,0,864,30.830000000000002,0.16,2.3000000000000003,35.27,1004,221,2.2 +2008,7,19,10,30,31.400000000000002,0.87,0.136,0.64,138,867,934,0,13.5,138,867,0,934,23.32,0.16,2.3000000000000003,33.69,1004,224,2.7 +2008,7,19,11,30,31.700000000000003,0.88,0.139,0.64,140,866,947,0,13.600000000000001,140,866,0,947,21.34,0.16,2.4000000000000004,33.34,1004,228,3.2 +2008,7,19,12,30,31.700000000000003,0.88,0.149,0.64,142,848,902,0,13.9,142,848,0,902,26.21,0.16,2.5,33.88,1004,232,3.6 +2008,7,19,13,30,31.3,0.9,0.158,0.64,140,815,806,0,14.200000000000001,140,815,0,806,35.12,0.16,2.6,35.38,1004,235,3.9000000000000004 +2008,7,19,14,30,30.5,0.92,0.168,0.64,134,763,668,0,14.600000000000001,134,763,0,668,45.64,0.16,2.6,37.93,1004,240,4.1000000000000005 +2008,7,19,15,30,29.400000000000002,0.9400000000000001,0.17300000000000001,0.64,121,684,496,0,14.9,121,684,0,496,56.72,0.16,2.7,41.42,1004,245,4 +2008,7,19,16,30,28,0.96,0.178,0.64,100,558,310,0,15.4,100,558,0,310,67.84,0.16,2.7,46.230000000000004,1005,252,3.6 +2008,7,19,17,30,26.200000000000003,0.98,0.181,0.64,65,342,132,0,15.9,65,342,0,132,78.67,0.16,2.8000000000000003,53.06,1005,259,2.7 +2008,7,19,18,30,24.5,0.99,0.183,0.64,9,20,10,0,16.7,9,20,0,10,88.7,0.16,2.8000000000000003,61.72,1005,270,1.7000000000000002 +2008,7,19,19,30,23.400000000000002,1,0.185,0.64,0,0,0,0,17.2,0,0,0,0,98.46000000000001,0.16,2.8000000000000003,68.17,1006,286,1.2000000000000002 +2008,7,19,20,30,22.8,1,0.187,0.64,0,0,0,0,17.5,0,0,0,0,106.55,0.16,2.8000000000000003,72.07000000000001,1006,304,1 +2008,7,19,21,30,22.5,1.01,0.187,0.64,0,0,0,0,17.7,0,0,0,0,112.77,0.16,2.9000000000000004,74.24,1006,319,0.9 +2008,7,19,22,30,22.5,1.02,0.185,0.64,0,0,0,0,17.8,0,0,0,0,116.54,0.16,2.9000000000000004,74.72,1006,333,0.7000000000000001 +2008,7,19,23,30,22.400000000000002,1.03,0.181,0.64,0,0,0,0,17.8,0,0,0,0,117.4,0.16,2.8000000000000003,75.10000000000001,1006,171,0.6000000000000001 +2008,7,20,0,30,22.3,1.04,0.176,0.64,0,0,0,0,17.7,0,0,0,0,115.22,0.16,2.8000000000000003,75.35000000000001,1006,13,0.4 +2008,7,20,1,30,22.200000000000003,1.05,0.17,0.64,0,0,0,0,17.7,0,0,0,0,110.31,0.16,2.8000000000000003,75.61,1006,34,0.30000000000000004 +2008,7,20,2,30,22,1.06,0.162,0.64,0,0,0,0,17.6,0,0,0,0,103.19,0.16,2.8000000000000003,76.24,1005,69,0.1 +2008,7,20,3,30,22,1.08,0.153,0.64,0,0,0,0,17.7,0,0,0,0,94.46000000000001,0.16,2.7,76.67,1005,100,0.1 +2008,7,20,4,30,23.200000000000003,1.1,0.146,0.64,33,202,53,0,18,33,202,0,53,84.47,0.16,2.7,72.54,1006,185,0.30000000000000004 +2008,7,20,5,30,25.5,1.11,0.14100000000000001,0.64,73,502,212,0,17.400000000000002,73,502,0,212,73.97,0.16,2.7,60.84,1006,264,1 +2008,7,20,6,30,27.700000000000003,1.1300000000000001,0.139,0.64,97,663,398,0,16.3,97,663,0,398,62.980000000000004,0.16,2.7,49.980000000000004,1006,262,1.8 +2008,7,20,7,30,29.200000000000003,1.16,0.136,0.64,112,757,580,0,16.1,112,757,0,580,51.84,0.16,2.7,45,1006,256,2.4000000000000004 +2008,7,20,8,30,30.400000000000002,1.19,0.134,0.64,122,815,737,0,15.8,122,815,0,737,40.95,0.16,2.7,41.230000000000004,1006,253,2.8000000000000003 +2008,7,20,9,30,31.3,1.3,0.114,0.64,119,861,857,0,15.3,119,861,0,857,30.98,0.16,2.8000000000000003,37.94,1006,250,3.2 +2008,7,20,10,30,31.900000000000002,1.31,0.117,0.64,124,875,927,0,14.8,124,875,0,927,23.5,0.16,2.8000000000000003,35.47,1006,248,3.6 +2008,7,20,11,30,32.1,1.28,0.12,0.64,127,875,940,0,14.4,127,875,0,940,21.53,0.16,2.9000000000000004,34.37,1005,247,3.8000000000000003 +2008,7,20,12,30,32,1.23,0.125,0.64,127,862,899,0,14.200000000000001,127,862,0,899,26.36,0.16,2.9000000000000004,34.14,1005,245,3.9000000000000004 +2008,7,20,13,30,31.700000000000003,1.1400000000000001,0.134,0.64,126,831,805,0,14.100000000000001,126,831,0,805,35.24,0.16,2.9000000000000004,34.300000000000004,1004,245,3.9000000000000004 +2008,7,20,14,30,31.1,1.02,0.155,0.64,127,770,664,0,13.9,127,770,0,664,45.75,0.16,2.9000000000000004,35.2,1004,248,3.9000000000000004 +2008,7,20,15,30,30.1,0.89,0.187,0.64,124,664,488,0,13.9,124,664,0,488,56.82,0.16,3,37.26,1004,250,3.5 +2008,7,20,16,30,28.8,0.8,0.213,0.64,108,510,300,0,14,108,510,0,300,67.94,0.16,3,40.44,1004,242,2.9000000000000004 +2008,7,20,17,30,26.700000000000003,0.75,0.22,0.64,70,283,125,0,14.200000000000001,70,283,0,125,78.78,0.16,2.9000000000000004,46.160000000000004,1004,228,2.2 +2008,7,20,18,30,24.6,0.7000000000000001,0.232,0.64,7,5,7,0,15.200000000000001,7,5,0,7,88.82000000000001,0.16,3,55.83,1004,219,1.8 +2008,7,20,19,30,23.3,0.64,0.268,0.64,0,0,0,0,16.2,0,0,0,0,98.60000000000001,0.16,3,64.41,1005,217,1.6 +2008,7,20,20,30,22.5,0.62,0.294,0.64,0,0,0,0,17.2,0,0,0,0,106.71000000000001,0.16,3.1,71.81,1005,208,1.2000000000000002 +2008,7,20,21,30,22,0.65,0.272,0.64,0,0,0,0,17.8,0,0,0,0,112.95,0.16,3.1,77.08,1005,181,1 +2008,7,20,22,30,21.700000000000003,0.6900000000000001,0.23700000000000002,0.64,0,0,0,0,18.1,0,0,0,0,116.73,0.16,3.2,80.25,1005,154,1.2000000000000002 +2008,7,20,23,30,21.400000000000002,0.68,0.229,0.64,0,0,0,0,18.2,0,0,0,0,117.59,0.16,3.2,82.22,1004,141,1.4000000000000001 +2008,7,21,0,30,21.1,0.66,0.228,0.64,0,0,0,1,18.1,0,0,0,0,115.41,0.16,3.2,83.10000000000001,1004,139,1.5 +2008,7,21,1,30,20.900000000000002,0.67,0.222,0.64,0,0,0,7,17.8,0,0,0,0,110.48,0.16,3.1,82.54,1003,141,1.4000000000000001 +2008,7,21,2,30,20.6,0.65,0.22,0.64,0,0,0,5,17.5,0,0,0,0,103.36,0.16,3,82.44,1003,146,1.5 +2008,7,21,3,30,21,0.62,0.223,0.64,0,0,0,8,17.400000000000002,0,0,0,0,94.62,0.16,2.9000000000000004,79.67,1003,150,1.9000000000000001 +2008,7,21,4,30,22.5,0.63,0.226,0.64,36,97,45,3,17.5,36,97,5,45,84.60000000000001,0.16,3,73.25,1003,157,2.7 +2008,7,21,5,30,24.400000000000002,0.68,0.227,0.64,93,378,196,0,18.2,93,378,0,196,74.10000000000001,0.16,3.2,68.29,1003,174,3.4000000000000004 +2008,7,21,6,30,26.1,0.72,0.246,0.64,132,534,373,0,18.3,132,534,0,373,63.11,0.16,3.4000000000000004,62.08,1004,195,3.9000000000000004 +2008,7,21,7,30,27.3,0.75,0.302,0.64,175,597,543,0,17.400000000000002,175,597,0,543,51.97,0.16,3.6,54.83,1004,200,4.2 +2008,7,21,8,30,28.3,0.74,0.341,0.64,207,641,690,0,16.7,207,641,0,690,41.08,0.16,3.5,49.36,1004,193,4.1000000000000005 +2008,7,21,9,30,29.6,0.78,0.212,0.64,168,773,830,7,15.9,299,10,0,308,31.13,0.16,3.3000000000000003,43.49,1003,198,4.2 +2008,7,21,10,30,30.400000000000002,0.65,0.245,0.64,190,767,892,7,15.4,408,85,0,486,23.69,0.16,3.3000000000000003,40.37,1003,208,5 +2008,7,21,11,30,30.200000000000003,0.63,0.28500000000000003,0.64,209,743,899,7,15.9,427,204,0,616,21.72,0.16,3.4000000000000004,42,1003,205,5.5 +2008,7,21,12,30,29.900000000000002,0.64,0.281,0.64,203,733,859,3,16.5,488,127,0,602,26.52,0.16,3.5,44.550000000000004,1003,200,5.300000000000001 +2008,7,21,13,30,29.6,0.61,0.314,0.64,208,678,761,7,16.6,161,1,0,161,35.37,0.16,3.6,45.57,1002,201,5 +2008,7,21,14,30,28.900000000000002,0.61,0.326,0.64,197,616,625,7,16.5,230,9,0,236,45.87,0.16,3.6,47.22,1002,203,4.9 +2008,7,21,15,30,28,0.62,0.294,0.64,163,555,465,6,16.5,149,4,0,150,56.93,0.16,3.5,49.69,1002,204,4.5 +2008,7,21,16,30,26.900000000000002,0.63,0.274,0.64,125,436,288,7,16.6,182,61,0,205,68.05,0.16,3.5,53.24,1001,202,3.9000000000000004 +2008,7,21,17,30,25.5,0.64,0.27,0.64,75,223,118,0,16.900000000000002,75,223,0,118,78.9,0.16,3.5,59.050000000000004,1002,199,3.1 +2008,7,21,18,30,24.3,0.65,0.276,0.64,5,2,5,0,17.8,5,2,0,5,88.93,0.16,3.4000000000000004,67.02,1002,194,2.2 +2008,7,21,19,30,23.700000000000003,0.66,0.279,0.64,0,0,0,0,18.8,0,0,0,0,98.75,0.16,3.4000000000000004,74.10000000000001,1002,187,1.9000000000000001 +2008,7,21,20,30,23.200000000000003,0.6900000000000001,0.267,0.64,0,0,0,0,19.5,0,0,0,0,106.87,0.16,3.2,79.91,1001,175,1.6 +2008,7,21,21,30,22.6,0.7000000000000001,0.251,0.64,0,0,0,1,19.900000000000002,0,0,0,0,113.12,0.16,3,84.63,1001,161,1.4000000000000001 +2008,7,21,22,30,22.200000000000003,0.72,0.243,0.64,0,0,0,1,19.900000000000002,0,0,0,0,116.92,0.16,2.8000000000000003,86.81,1000,154,1.2000000000000002 +2008,7,21,23,30,22,0.76,0.243,0.64,0,0,0,1,19.8,0,0,0,0,117.79,0.16,2.6,87.41,1000,151,1.2000000000000002 +2008,7,22,0,30,21.8,0.8,0.23700000000000002,0.64,0,0,0,3,19.700000000000003,0,0,0,0,115.61,0.16,2.4000000000000004,88.03,999,148,1.1 +2008,7,22,1,30,21.8,0.86,0.229,0.64,0,0,0,4,19.6,0,0,0,0,110.67,0.16,2.3000000000000003,87.23,999,145,1 +2008,7,22,2,30,21.8,0.9500000000000001,0.218,0.64,0,0,0,8,19.3,0,0,0,0,103.52,0.16,2.3000000000000003,85.87,999,136,0.9 +2008,7,22,3,30,21.900000000000002,1.03,0.197,0.64,0,0,0,0,19.1,0,0,0,0,94.77,0.16,2.4000000000000004,83.96000000000001,999,109,0.7000000000000001 +2008,7,22,4,30,22.6,1.07,0.191,0.64,35,152,49,0,18.8,35,152,0,49,84.74,0.16,2.5,79.04,999,56,0.9 +2008,7,22,5,30,24,1.08,0.183,0.64,82,451,205,0,18.5,82,451,0,205,74.23,0.16,2.6,71.56,999,17,1.8 +2008,7,22,6,30,25.6,1.1500000000000001,0.17400000000000002,0.64,107,626,389,1,17.400000000000002,107,626,0,389,63.230000000000004,0.16,2.7,60.370000000000005,1000,10,2.6 +2008,7,22,7,30,27.200000000000003,1.17,0.166,0.64,123,730,571,0,16,123,730,0,571,52.1,0.16,2.7,50.5,1000,4,3 +2008,7,22,8,30,28.700000000000003,1.19,0.146,0.64,126,806,733,0,15.100000000000001,126,806,0,733,41.22,0.16,2.6,43.6,1000,176,3.5 +2008,7,22,9,30,30,1.1400000000000001,0.136,0.64,130,850,857,0,14.100000000000001,130,850,0,857,31.29,0.16,2.4000000000000004,37.81,1000,351,4.2 +2008,7,22,10,30,30.900000000000002,1.12,0.128,0.64,130,875,930,0,12.8,130,875,0,930,23.87,0.16,2.3000000000000003,33.06,1000,349,5 +2008,7,22,11,30,31,1.08,0.12,0.64,128,888,952,0,11.700000000000001,128,888,0,952,21.92,0.16,2.1,30.59,1000,352,5.800000000000001 +2008,7,22,12,30,30.700000000000003,1.04,0.10400000000000001,0.64,118,895,918,0,10.700000000000001,118,895,0,918,26.69,0.16,1.9000000000000001,29.21,1000,356,6.4 +2008,7,22,13,30,30.1,1.02,0.09,0.64,107,887,829,0,9.700000000000001,107,887,0,829,35.51,0.16,1.8,28.19,1000,358,6.800000000000001 +2008,7,22,14,30,29.200000000000003,1.06,0.085,0.64,98,856,693,0,8.8,98,856,0,693,45.99,0.16,1.7000000000000002,27.93,1001,359,7.2 +2008,7,22,15,30,27.8,1.16,0.077,0.64,84,806,522,0,8,84,806,0,522,57.050000000000004,0.16,1.6,28.740000000000002,1001,182,7.5 +2008,7,22,16,30,25.900000000000002,1.18,0.074,0.64,68,705,331,0,7.4,68,705,0,331,68.17,0.16,1.6,30.88,1002,8,7.4 +2008,7,22,17,30,23.6,1.21,0.07100000000000001,0.64,46,513,144,0,7.1000000000000005,46,513,0,144,79.02,0.16,1.6,34.57,1003,14,6.5 +2008,7,22,18,30,21.6,1.28,0.068,0.64,0,0,0,0,7.300000000000001,0,0,0,0,89.05,0.16,1.5,39.69,1004,19,5.4 +2008,7,22,19,30,20.200000000000003,1.35,0.068,0.64,0,0,0,0,7.800000000000001,0,0,0,0,98.9,0.16,1.6,44.75,1005,23,4.5 +2008,7,22,20,30,19.3,1.43,0.066,0.64,0,0,0,0,8.5,0,0,0,0,107.04,0.16,1.5,49.68,1005,23,4 +2008,7,22,21,30,18.7,1.51,0.065,0.64,0,0,0,0,9.4,0,0,0,0,113.31,0.16,1.5,54.76,1005,21,3.5 +2008,7,22,22,30,18.2,1.54,0.065,0.64,0,0,0,0,9.9,0,0,0,0,117.12,0.16,1.6,58.370000000000005,1005,17,3.3000000000000003 +2008,7,22,23,30,17.8,1.53,0.067,0.64,0,0,0,0,10.100000000000001,0,0,0,0,117.99000000000001,0.16,1.7000000000000002,60.800000000000004,1005,15,3.2 +2008,7,23,0,30,17.5,1.52,0.068,0.64,0,0,0,0,10.3,0,0,0,0,115.8,0.16,1.7000000000000002,62.57,1005,13,3.1 +2008,7,23,1,30,17.2,1.51,0.069,0.64,0,0,0,0,10.4,0,0,0,0,110.85000000000001,0.16,1.7000000000000002,64.48,1006,13,3 +2008,7,23,2,30,16.8,1.51,0.069,0.64,0,0,0,0,10.600000000000001,0,0,0,0,103.7,0.16,1.7000000000000002,66.61,1006,15,2.8000000000000003 +2008,7,23,3,30,17.2,1.51,0.07,0.64,0,0,0,0,10.600000000000001,0,0,0,0,94.92,0.16,1.7000000000000002,65.05,1006,20,2.8000000000000003 +2008,7,23,4,30,18.900000000000002,1.52,0.068,0.64,27,326,56,0,10.5,27,326,0,56,84.88,0.16,1.7000000000000002,58.36,1006,24,3.3000000000000003 +2008,7,23,5,30,21.5,1.53,0.066,0.64,55,626,223,0,10.200000000000001,55,626,0,223,74.37,0.16,1.7000000000000002,48.53,1006,26,3.9000000000000004 +2008,7,23,6,30,23.900000000000002,1.56,0.063,0.64,70,772,417,0,9,70,772,0,417,63.36,0.16,1.7000000000000002,38.84,1006,22,4.1000000000000005 +2008,7,23,7,30,25.8,1.56,0.064,0.64,82,850,603,0,7.800000000000001,82,850,0,603,52.230000000000004,0.16,1.7000000000000002,31.970000000000002,1006,11,4 +2008,7,23,8,30,27.400000000000002,1.56,0.065,0.64,91,897,764,0,6.800000000000001,91,897,0,764,41.36,0.16,1.7000000000000002,27,1006,177,4 +2008,7,23,9,30,28.400000000000002,1.44,0.076,0.64,102,913,881,0,6.300000000000001,102,913,0,881,31.45,0.16,1.8,24.63,1005,345,4.2 +2008,7,23,10,30,29,1.46,0.08,0.64,107,922,949,0,6.5,107,922,0,949,24.07,0.16,1.9000000000000001,24.25,1005,335,4.5 +2008,7,23,11,30,29.1,1.45,0.088,0.64,112,917,961,0,7.1000000000000005,112,917,0,961,22.12,0.16,2,25,1005,324,4.800000000000001 +2008,7,23,12,30,28.900000000000002,1.37,0.106,0.64,119,895,917,3,7.6000000000000005,438,55,7,486,26.86,0.16,2,26.310000000000002,1005,314,5.1000000000000005 +2008,7,23,13,30,28.400000000000002,1.36,0.114,0.64,118,866,822,0,8.1,118,866,0,822,35.65,0.16,2,28.01,1004,306,5.300000000000001 +2008,7,23,14,30,27.8,1.3800000000000001,0.11900000000000001,0.64,112,822,682,0,8.6,112,822,0,682,46.11,0.16,2,29.830000000000002,1004,301,5.4 +2008,7,23,15,30,27,1.4000000000000001,0.124,0.64,101,751,508,0,8.9,101,751,0,508,57.17,0.16,2,32,1004,299,5.300000000000001 +2008,7,23,16,30,26,1.43,0.129,0.64,84,633,318,0,9.200000000000001,84,633,0,318,68.29,0.16,2,34.68,1004,297,4.9 +2008,7,23,17,30,24.200000000000003,1.44,0.129,0.64,55,425,135,1,9.700000000000001,55,425,0,135,79.15,0.16,2,39.980000000000004,1004,293,4.1000000000000005 +2008,7,23,18,30,22.400000000000002,1.45,0.128,0.64,0,0,0,0,10.9,0,0,0,0,89.18,0.16,2,48.11,1004,291,3.5 +2008,7,23,19,30,21.3,1.46,0.126,0.64,0,0,0,3,11.8,0,0,0,0,99.06,0.16,2.1,54.69,1004,295,3.1 +2008,7,23,20,30,20.400000000000002,1.45,0.11800000000000001,0.64,0,0,0,3,12.5,0,0,0,0,107.21000000000001,0.16,2.1,60.6,1005,304,2.4000000000000004 +2008,7,23,21,30,19.8,1.42,0.111,0.64,0,0,0,0,13.100000000000001,0,0,0,0,113.5,0.16,2.2,65.17,1005,315,2 +2008,7,23,22,30,19.3,1.3800000000000001,0.108,0.64,0,0,0,0,13.5,0,0,0,0,117.32000000000001,0.16,2.3000000000000003,68.91,1005,325,1.8 +2008,7,23,23,30,18.8,1.33,0.107,0.64,0,0,0,0,13.700000000000001,0,0,0,0,118.2,0.16,2.4000000000000004,72.14,1004,334,1.6 +2008,7,24,0,30,18.400000000000002,1.3,0.106,0.64,0,0,0,0,13.700000000000001,0,0,0,0,116,0.16,2.5,74.05,1004,345,1.5 +2008,7,24,1,30,18.1,1.27,0.105,0.64,0,0,0,0,13.4,0,0,0,0,111.04,0.16,2.6,74.16,1004,354,1.4000000000000001 +2008,7,24,2,30,17.8,1.25,0.10300000000000001,0.64,0,0,0,0,12.8,0,0,0,0,103.87,0.16,2.6,72.78,1003,183,1.4000000000000001 +2008,7,24,3,30,18.1,1.24,0.101,0.64,0,0,0,0,12,0,0,0,0,95.08,0.16,2.6,67.52,1003,12,1.4000000000000001 +2008,7,24,4,30,19.900000000000002,1.24,0.097,0.64,27,247,49,0,11.4,27,247,0,49,85.03,0.16,2.6,58.07,1003,22,1.7000000000000002 +2008,7,24,5,30,22.8,1.22,0.094,0.64,60,560,210,0,10.100000000000001,60,560,0,210,74.5,0.16,2.5,44.410000000000004,1003,19,2 +2008,7,24,6,30,25.5,1.22,0.09,0.64,79,717,399,0,9.200000000000001,79,717,0,399,63.5,0.16,2.5,35.65,1003,176,2 +2008,7,24,7,30,27.3,1.22,0.089,0.64,91,804,582,0,8.5,91,804,0,582,52.36,0.16,2.5,30.69,1003,331,2.1 +2008,7,24,8,30,28.6,1.22,0.091,0.64,101,853,740,0,8.9,101,853,0,740,41.5,0.16,2.5,29.09,1003,312,2.3000000000000003 +2008,7,24,9,30,29.5,1.29,0.08700000000000001,0.64,105,887,860,0,9.3,105,887,0,860,31.61,0.16,2.5,28.38,1003,297,2.7 +2008,7,24,10,30,30.200000000000003,1.27,0.092,0.64,110,899,930,0,9.4,110,899,0,930,24.26,0.16,2.5,27.42,1002,286,3.3000000000000003 +2008,7,24,11,30,30.6,1.26,0.098,0.64,114,898,945,0,9.5,114,898,0,945,22.330000000000002,0.16,2.5,27.060000000000002,1002,278,3.9000000000000004 +2008,7,24,12,30,30.6,1.1400000000000001,0.11900000000000001,0.64,123,873,900,0,9.700000000000001,123,873,0,900,27.04,0.16,2.5,27.48,1002,273,4.4 +2008,7,24,13,30,30.200000000000003,1.16,0.122,0.64,119,847,806,0,10,119,847,0,806,35.800000000000004,0.16,2.5,28.6,1002,271,4.9 +2008,7,24,14,30,29.5,1.2,0.124,0.64,111,805,668,0,10.3,111,805,0,668,46.24,0.16,2.5,30.39,1002,269,5.2 +2008,7,24,15,30,28.400000000000002,1.22,0.127,0.64,100,734,497,0,10.700000000000001,100,734,0,497,57.29,0.16,2.5,33.25,1002,269,5.300000000000001 +2008,7,24,16,30,26.8,1.23,0.131,0.64,83,614,308,0,11.3,83,614,0,308,68.42,0.16,2.5,37.910000000000004,1002,269,5.2 +2008,7,24,17,30,24.8,1.24,0.132,0.64,53,401,128,0,12.100000000000001,53,401,0,128,79.29,0.16,2.5,45.01,1002,271,4.4 +2008,7,24,18,30,22.900000000000002,1.25,0.133,0.64,0,0,0,0,13.4,0,0,0,0,89.31,0.16,2.4000000000000004,55.2,1002,276,3.1 +2008,7,24,19,30,21.700000000000003,1.25,0.135,0.64,0,0,0,0,14.700000000000001,0,0,0,0,99.22,0.16,2.4000000000000004,64.61,1003,284,2.1 +2008,7,24,20,30,20.900000000000002,1.25,0.138,0.64,0,0,0,0,15.5,0,0,0,0,107.39,0.16,2.3000000000000003,71.10000000000001,1003,296,1.5 +2008,7,24,21,30,20.5,1.27,0.138,0.64,0,0,0,0,15.8,0,0,0,0,113.7,0.16,2.3000000000000003,74.51,1003,314,1.1 +2008,7,24,22,30,20.3,1.28,0.135,0.64,0,0,0,0,15.9,0,0,0,0,117.53,0.16,2.3000000000000003,75.62,1002,335,0.9 +2008,7,24,23,30,20,1.3,0.131,0.64,0,0,0,0,15.700000000000001,0,0,0,0,118.41,0.16,2.3000000000000003,76.51,1002,182,0.7000000000000001 +2008,7,25,0,30,19.8,1.34,0.126,0.64,0,0,0,0,15.600000000000001,0,0,0,0,116.21000000000001,0.16,2.2,76.86,1002,27,0.6000000000000001 +2008,7,25,1,30,19.6,1.3800000000000001,0.122,0.64,0,0,0,0,15.5,0,0,0,0,111.23,0.16,2.2,76.99,1002,36,0.5 +2008,7,25,2,30,19.5,1.42,0.11800000000000001,0.64,0,0,0,0,15.3,0,0,0,0,104.05,0.16,2.2,76.88,1002,37,0.30000000000000004 +2008,7,25,3,30,19.6,1.46,0.115,0.64,0,0,0,0,15.4,0,0,0,0,95.25,0.16,2.2,76.59,1002,36,0.2 +2008,7,25,4,30,20.6,1.49,0.113,0.64,27,239,47,0,15.5,27,239,0,47,85.17,0.16,2.2,72.57000000000001,1002,182,0.2 +2008,7,25,5,30,23.3,1.52,0.11,0.64,62,551,208,0,15.100000000000001,62,551,0,208,74.64,0.16,2.2,60.01,1002,312,0.9 +2008,7,25,6,30,25.900000000000002,1.56,0.105,0.64,82,711,398,0,12.200000000000001,82,711,0,398,63.63,0.16,2.2,42.59,1002,289,1.7000000000000002 +2008,7,25,7,30,27.6,1.55,0.107,0.64,97,794,581,0,11.200000000000001,97,794,0,581,52.5,0.16,2.3000000000000003,35.96,1002,275,2 +2008,7,25,8,30,28.900000000000002,1.54,0.111,0.64,109,844,739,0,11.5,109,844,0,739,41.65,0.16,2.3000000000000003,34.03,1002,265,2.4000000000000004 +2008,7,25,9,30,29.900000000000002,1.6,0.111,0.64,115,876,859,0,11.700000000000001,115,876,0,859,31.78,0.16,2.3000000000000003,32.53,1001,259,3 +2008,7,25,10,30,30.5,1.54,0.117,0.64,122,885,927,0,11.9,122,885,0,927,24.46,0.16,2.4000000000000004,31.87,1001,256,3.6 +2008,7,25,11,30,30.700000000000003,1.44,0.129,0.64,128,877,938,0,12.200000000000001,128,877,0,938,22.54,0.16,2.5,32.18,1001,253,4.1000000000000005 +2008,7,25,12,30,30.5,1.29,0.14400000000000002,0.64,134,854,894,0,12.600000000000001,134,854,0,894,27.22,0.16,2.6,33.38,1001,251,4.5 +2008,7,25,13,30,29.900000000000002,1.25,0.148,0.64,131,826,799,0,13,131,826,0,799,35.95,0.16,2.6,35.38,1001,250,4.6000000000000005 +2008,7,25,14,30,29.1,1.2,0.152,0.64,123,777,659,0,13.200000000000001,123,777,0,659,46.38,0.16,2.7,37.69,1001,250,4.4 +2008,7,25,15,30,28.1,1.16,0.157,0.64,111,697,487,0,13.5,111,697,0,487,57.43,0.16,2.8000000000000003,40.68,1000,250,4 +2008,7,25,16,30,26.900000000000002,1.1500000000000001,0.158,0.64,90,572,299,0,13.8,90,572,0,299,68.56,0.16,2.9000000000000004,44.45,1000,251,3.4000000000000004 +2008,7,25,17,30,25,1.1500000000000001,0.157,0.64,57,354,122,0,14.200000000000001,57,354,0,122,79.43,0.16,3,51.01,1001,251,2.4000000000000004 +2008,7,25,18,30,23.200000000000003,1.16,0.157,0.64,0,0,0,0,15.4,0,0,0,0,89.44,0.16,3,61.44,1001,253,1.6 +2008,7,25,19,30,22.200000000000003,1.17,0.159,0.64,0,0,0,0,16.5,0,0,0,0,99.39,0.16,3.1,70.07000000000001,1001,259,1.3 +2008,7,25,20,30,21.6,1.18,0.161,0.64,0,0,0,0,17.400000000000002,0,0,0,0,107.58,0.16,3.1,77.19,1001,271,1 +2008,7,25,21,30,21.3,1.18,0.162,0.64,0,0,0,0,17.900000000000002,0,0,0,0,113.9,0.16,3.1,81.13,1001,296,0.8 +2008,7,25,22,30,21.1,1.19,0.159,0.64,0,0,0,0,18,0,0,0,0,117.75,0.16,3,82.48,1001,157,0.6000000000000001 +2008,7,25,23,30,20.700000000000003,1.19,0.156,0.64,0,0,0,0,17.8,0,0,0,0,118.63,0.16,3,83.38,1001,16,0.7000000000000001 +2008,7,26,0,30,20.5,1.21,0.152,0.64,0,0,0,0,17.400000000000002,0,0,0,0,116.42,0.16,2.9000000000000004,82.28,1001,39,0.8 +2008,7,26,1,30,20.400000000000002,1.23,0.148,0.64,0,0,0,0,16.8,0,0,0,0,111.43,0.16,2.9000000000000004,79.88,1000,50,0.8 +2008,7,26,2,30,20.400000000000002,1.25,0.14400000000000002,0.64,0,0,0,0,16.2,0,0,0,0,104.23,0.16,2.9000000000000004,76.78,1000,57,0.7000000000000001 +2008,7,26,3,30,20.5,1.26,0.14200000000000002,0.64,0,0,0,0,15.700000000000001,0,0,0,0,95.41,0.16,2.9000000000000004,74.12,1000,64,0.6000000000000001 +2008,7,26,4,30,21.8,1.27,0.14200000000000002,0.64,28,181,43,0,15.600000000000001,28,181,0,43,85.32000000000001,0.16,2.9000000000000004,67.64,1001,68,0.6000000000000001 +2008,7,26,5,30,24.3,1.29,0.14400000000000002,0.64,70,487,197,0,15.100000000000001,70,487,0,197,74.78,0.16,2.9000000000000004,56.34,1001,55,0.4 +2008,7,26,6,30,26.8,1.3,0.14400000000000002,0.64,96,651,383,0,13.5,96,651,0,383,63.77,0.16,2.9000000000000004,43.87,1001,133,0.5 +2008,7,26,7,30,28.700000000000003,1.31,0.145,0.64,113,745,565,0,12.8,113,745,0,565,52.64,0.16,2.9000000000000004,37.64,1001,225,1.3 +2008,7,26,8,30,30,1.32,0.148,0.64,126,798,720,0,12.9,126,798,0,720,41.800000000000004,0.16,3,35.11,1001,229,2.3000000000000003 +2008,7,26,9,30,30.700000000000003,1.3800000000000001,0.147,0.64,132,832,838,0,13.200000000000001,132,832,0,838,31.95,0.16,3.1,34.38,1001,233,3 +2008,7,26,10,30,31.200000000000003,1.3900000000000001,0.153,0.64,139,844,906,0,13.700000000000001,139,844,0,906,24.67,0.16,3.2,34.39,1001,236,3.6 +2008,7,26,11,30,31.200000000000003,1.3800000000000001,0.16,0.64,143,841,919,0,14.100000000000001,143,841,0,919,22.76,0.16,3.3000000000000003,35.410000000000004,1000,238,4 +2008,7,26,12,30,30.900000000000002,1.35,0.168,0.64,145,824,877,0,14.600000000000001,145,824,0,877,27.41,0.16,3.4000000000000004,37.14,1000,241,4.3 +2008,7,26,13,30,30.3,1.33,0.177,0.64,143,791,782,0,15,143,791,0,782,36.11,0.16,3.5,39.52,1000,243,4.3 +2008,7,26,14,30,29.6,1.3,0.184,0.64,135,738,643,0,15.4,135,738,0,643,46.53,0.16,3.6,42.25,1000,246,4.1000000000000005 +2008,7,26,15,30,28.6,1.27,0.19,0.64,121,657,473,0,15.700000000000001,121,657,0,473,57.56,0.16,3.6,45.65,1000,249,3.8000000000000003 +2008,7,26,16,30,27.400000000000002,1.24,0.197,0.64,99,525,289,0,15.9,99,525,0,289,68.7,0.16,3.6,49.63,1000,253,3.4000000000000004 +2008,7,26,17,30,25.8,1.22,0.20500000000000002,0.64,61,298,115,7,16.3,44,1,7,44,79.57000000000001,0.16,3.7,55.74,1001,257,2.8000000000000003 +2008,7,26,18,30,24.200000000000003,1.2,0.217,0.64,0,0,0,0,16.900000000000002,0,0,0,0,89.58,0.16,3.7,63.940000000000005,1001,263,2.1 +2008,7,26,19,30,23.200000000000003,1.19,0.227,0.64,0,0,0,3,17.6,0,0,0,0,99.56,0.16,3.7,70.96000000000001,1001,271,1.8 +2008,7,26,20,30,22.5,1.19,0.23900000000000002,0.64,0,0,0,4,18.2,0,0,0,0,107.77,0.16,3.7,76.72,1001,282,1.5 +2008,7,26,21,30,22.1,1.19,0.251,0.64,0,0,0,0,18.6,0,0,0,0,114.11,0.16,3.7,80.59,1001,295,1.4000000000000001 +2008,7,26,22,30,21.900000000000002,1.18,0.259,0.64,0,0,0,0,18.8,0,0,0,0,117.97,0.16,3.7,82.79,1001,311,1.2000000000000002 +2008,7,26,23,30,21.700000000000003,1.18,0.261,0.64,0,0,0,3,18.900000000000002,0,0,0,0,118.86,0.16,3.6,84.38,1001,338,0.9 +2008,7,27,0,30,21.6,1.17,0.259,0.64,0,0,0,1,18.900000000000002,0,0,0,0,116.64,0.16,3.6,84.47,1001,184,0.8 +2008,7,27,1,30,21.6,1.17,0.259,0.64,0,0,0,3,18.7,0,0,0,0,111.63,0.16,3.5,83.43,1001,8,0.7000000000000001 +2008,7,27,2,30,21.5,1.17,0.258,0.64,0,0,0,0,18.5,0,0,0,0,104.41,0.16,3.5,82.82000000000001,1001,173,0.7000000000000001 +2008,7,27,3,30,21.5,1.17,0.254,0.64,0,0,0,3,18.3,0,0,0,0,95.58,0.16,3.5,82.21000000000001,1001,340,0.9 +2008,7,27,4,30,22.6,1.18,0.25,0.64,29,93,36,0,18.3,29,93,0,36,85.47,0.16,3.5,76.69,1001,335,1.4000000000000001 +2008,7,27,5,30,24.700000000000003,1.19,0.243,0.64,87,375,184,0,17.8,87,375,0,184,74.92,0.16,3.4000000000000004,65.65,1001,331,1.8 +2008,7,27,6,30,26.900000000000002,1.21,0.23700000000000002,0.64,121,554,365,0,16.7,121,554,0,365,63.9,0.16,3.4000000000000004,53.76,1001,318,1.7000000000000002 +2008,7,27,7,30,28.8,1.23,0.23,0.64,142,665,544,0,15.9,142,665,0,544,52.78,0.16,3.4000000000000004,45.69,1001,297,1.5 +2008,7,27,8,30,30.200000000000003,1.25,0.231,0.64,158,727,699,0,15.600000000000001,158,727,0,699,41.95,0.16,3.5,41.2,1001,276,1.7000000000000002 +2008,7,27,9,30,31.200000000000003,1.25,0.375,0.64,222,680,797,0,15.5,222,680,0,797,32.13,0.16,3.5,38.76,1001,262,2.3000000000000003 +2008,7,27,10,30,31.6,1.26,0.395,0.64,236,691,863,0,15.700000000000001,236,691,0,863,24.88,0.16,3.6,38.36,1001,257,3 +2008,7,27,11,30,31.6,1.27,0.418,0.64,248,683,877,0,16,248,683,0,877,22.990000000000002,0.16,3.7,38.99,1001,255,3.5 +2008,7,27,12,30,31.400000000000002,1.27,0.381,0.64,230,690,841,0,16.3,230,690,0,841,27.61,0.16,3.7,40.26,1001,255,3.7 +2008,7,27,13,30,30.900000000000002,1.27,0.40800000000000003,0.64,228,642,746,9,16.6,33,0,0,33,36.28,0.16,3.8000000000000003,42.28,1001,255,3.7 +2008,7,27,14,30,30.400000000000002,1.28,0.41500000000000004,0.64,212,584,612,9,16.900000000000002,27,0,0,27,46.67,0.16,3.8000000000000003,44.27,1001,256,3.5 +2008,7,27,15,30,29.700000000000003,1.29,0.447,0.64,189,478,444,6,17.1,60,0,0,60,57.71,0.16,3.9000000000000004,46.61,1002,255,3.1 +2008,7,27,16,30,28.8,1.3,0.453,0.64,143,343,267,6,17.2,79,1,0,79,68.84,0.16,3.9000000000000004,49.39,1002,254,2.7 +2008,7,27,17,30,27.200000000000003,1.31,0.442,0.64,74,159,102,6,17.6,3,0,0,3,79.72,0.16,3.9000000000000004,55.65,1002,252,2.2 +2008,7,27,18,30,25.6,1.33,0.43,0.64,0,0,0,0,18.3,0,0,0,0,89.72,0.16,4,64.18,1003,254,2 +2008,7,27,19,30,24.5,1.34,0.40700000000000003,0.64,0,0,0,0,19,0,0,0,0,99.74000000000001,0.16,4,71.25,1003,257,1.9000000000000001 +2008,7,27,20,30,23.700000000000003,1.36,0.386,0.64,0,0,0,0,19.5,0,0,0,0,107.97,0.16,4,77.49,1003,263,1.5 +2008,7,27,21,30,23.200000000000003,1.37,0.367,0.64,0,0,0,0,19.900000000000002,0,0,0,0,114.32000000000001,0.16,4,81.77,1004,269,1.1 +2008,7,27,22,30,22.8,1.3800000000000001,0.354,0.64,0,0,0,0,20.1,0,0,0,0,118.2,0.16,3.9000000000000004,84.76,1003,276,0.9 +2008,7,27,23,30,22.5,1.3900000000000001,0.339,0.64,0,0,0,0,20.200000000000003,0,0,0,0,119.09,0.16,3.9000000000000004,86.85000000000001,1003,286,0.6000000000000001 +2008,7,28,0,30,22.400000000000002,1.3900000000000001,0.323,0.64,0,0,0,0,20.200000000000003,0,0,0,0,116.86,0.16,3.8000000000000003,87.29,1003,147,0.4 +2008,7,28,1,30,22.1,1.4000000000000001,0.307,0.64,0,0,0,0,20,0,0,0,0,111.84,0.16,3.7,87.97,1003,25,0.4 +2008,7,28,2,30,21.8,1.4000000000000001,0.291,0.64,0,0,0,0,19.700000000000003,0,0,0,0,104.60000000000001,0.16,3.7,87.85000000000001,1003,54,0.5 +2008,7,28,3,30,21.8,1.41,0.277,0.64,0,0,0,0,19.3,0,0,0,0,95.74000000000001,0.16,3.6,85.86,1003,63,0.6000000000000001 +2008,7,28,4,30,23.1,1.41,0.264,0.64,27,96,35,0,18.900000000000002,27,96,0,35,85.62,0.16,3.6,77.49,1003,66,0.8 +2008,7,28,5,30,25.6,1.41,0.249,0.64,85,376,182,0,18.3,85,376,0,182,75.07000000000001,0.16,3.6,63.93,1003,65,0.7000000000000001 +2008,7,28,6,30,28.1,1.42,0.23500000000000001,0.64,119,560,364,0,16.900000000000002,119,560,0,364,64.04,0.16,3.5,50.550000000000004,1003,148,0.4 +2008,7,28,7,30,30.1,1.42,0.224,0.64,139,672,544,0,15.9,139,672,0,544,52.92,0.16,3.5,42.300000000000004,1004,238,0.8 +2008,7,28,8,30,31.5,1.42,0.217,0.64,151,740,701,0,15.5,151,740,0,701,42.1,0.16,3.5,38.050000000000004,1004,244,1.7000000000000002 +2008,7,28,9,30,32.4,1.4000000000000001,0.14,0.64,130,830,831,0,15.4,130,830,0,831,32.31,0.16,3.5,36.01,1003,245,2.6 +2008,7,28,10,30,32.9,1.3900000000000001,0.149,0.64,138,841,899,0,15.4,138,841,0,899,25.1,0.16,3.5,35.03,1003,245,3.5 +2008,7,28,11,30,32.800000000000004,1.3800000000000001,0.162,0.64,145,835,912,0,15.600000000000001,145,835,0,912,23.22,0.16,3.6,35.5,1003,245,4.2 +2008,7,28,12,30,32.5,1.33,0.219,0.64,167,787,863,0,15.700000000000001,167,787,0,863,27.810000000000002,0.16,3.6,36.550000000000004,1003,245,4.6000000000000005 +2008,7,28,13,30,31.900000000000002,1.32,0.247,0.64,171,740,766,0,15.9,171,740,0,766,36.45,0.16,3.7,38.300000000000004,1003,247,4.7 +2008,7,28,14,30,31.1,1.31,0.266,0.64,165,677,628,0,16.1,165,677,0,628,46.83,0.16,3.7,40.42,1003,250,4.4 +2008,7,28,15,30,30.3,1.3,0.302,0.64,154,569,457,0,16.2,154,569,0,457,57.85,0.16,3.7,42.61,1003,253,3.9000000000000004 +2008,7,28,16,30,29.3,1.31,0.312,0.64,121,428,275,0,16.3,121,428,0,275,68.99,0.16,3.8000000000000003,45.34,1003,252,3.3000000000000003 +2008,7,28,17,30,27.700000000000003,1.33,0.293,0.64,67,231,107,0,16.5,67,231,0,107,79.88,0.16,3.7,50.42,1003,246,2.5 +2008,7,28,18,30,26,1.35,0.28700000000000003,0.64,0,0,0,0,17.2,0,0,0,0,89.87,0.16,3.7,58.26,1004,239,1.9000000000000001 +2008,7,28,19,30,24.900000000000002,1.36,0.278,0.64,0,0,0,0,17.8,0,0,0,0,99.93,0.16,3.7,64.8,1004,235,1.6 +2008,7,28,20,30,24.1,1.37,0.27,0.64,0,0,0,0,18.400000000000002,0,0,0,0,108.17,0.16,3.7,70.36,1004,234,0.9 +2008,7,28,21,30,23.700000000000003,1.3800000000000001,0.265,0.64,0,0,0,0,18.6,0,0,0,0,114.54,0.16,3.7,73.26,1005,241,0.5 +2008,7,28,22,30,23.6,1.3800000000000001,0.261,0.64,0,0,0,0,18.7,0,0,0,0,118.43,0.16,3.7,74.06,1005,261,0.30000000000000004 +2008,7,28,23,30,23.700000000000003,1.3800000000000001,0.258,0.64,0,0,0,0,18.8,0,0,0,0,119.32000000000001,0.16,3.7,73.96000000000001,1004,302,0.30000000000000004 +2008,7,29,0,30,23.700000000000003,1.3900000000000001,0.257,0.64,0,0,0,0,18.8,0,0,0,0,117.09,0.16,3.6,74.01,1004,164,0.4 +2008,7,29,1,30,23.5,1.3900000000000001,0.254,0.64,0,0,0,0,18.7,0,0,0,0,112.05,0.16,3.6,74.68,1004,6,0.6000000000000001 +2008,7,29,2,30,23.3,1.4000000000000001,0.251,0.64,0,0,0,0,18.5,0,0,0,0,104.79,0.16,3.6,74.62,1004,17,0.8 +2008,7,29,3,30,23.3,1.41,0.248,0.64,0,0,0,0,18.3,0,0,0,0,95.91,0.16,3.6,73.29,1004,25,0.8 +2008,7,29,4,30,24.6,1.41,0.244,0.64,26,100,34,0,18,26,100,0,34,85.77,0.16,3.6,66.66,1005,28,1 +2008,7,29,5,30,27,1.42,0.23900000000000002,0.64,83,383,181,0,17.5,83,383,0,181,75.21000000000001,0.16,3.5,56.07,1005,188,1 +2008,7,29,6,30,29.3,1.42,0.222,0.64,115,569,363,0,16.900000000000002,115,569,0,363,64.18,0.16,3.5,47.14,1005,328,0.9 +2008,7,29,7,30,31,1.43,0.219,0.64,137,675,542,0,16.400000000000002,137,675,0,542,53.06,0.16,3.5,41.57,1005,294,1 +2008,7,29,8,30,32.300000000000004,1.43,0.219,0.64,152,738,698,0,16.1,152,738,0,698,42.25,0.16,3.5,37.89,1005,269,1.4000000000000001 +2008,7,29,9,30,33.2,1.4000000000000001,0.177,0.64,145,804,823,0,16,145,804,0,823,32.49,0.16,3.5,35.65,1005,252,2.1 +2008,7,29,10,30,33.6,1.3900000000000001,0.188,0.64,156,815,892,0,15.9,156,815,0,892,25.32,0.16,3.5,34.62,1005,244,2.9000000000000004 +2008,7,29,11,30,33.7,1.3800000000000001,0.201,0.64,162,810,906,0,15.9,162,810,0,906,23.46,0.16,3.5,34.43,1004,240,3.6 +2008,7,29,12,30,33.300000000000004,1.3800000000000001,0.256,0.64,182,764,857,0,16,182,764,0,857,28.02,0.16,3.6,35.550000000000004,1004,239,4.2 +2008,7,29,13,30,32.6,1.3800000000000001,0.28300000000000003,0.64,184,718,760,0,16.3,184,718,0,760,36.63,0.16,3.7,37.61,1004,239,4.5 +2008,7,29,14,30,31.900000000000002,1.3900000000000001,0.28300000000000003,0.64,169,667,624,0,16.6,169,667,0,624,46.99,0.16,3.7,39.83,1005,241,4.4 +2008,7,29,15,30,31,1.3800000000000001,0.307,0.64,154,566,453,0,16.8,154,566,0,453,58.01,0.16,3.8000000000000003,42.45,1005,244,4.1000000000000005 +2008,7,29,16,30,29.8,1.3900000000000001,0.306,0.64,119,433,273,0,16.900000000000002,119,433,0,273,69.15,0.16,3.8000000000000003,45.89,1005,245,3.6 +2008,7,29,17,30,28.1,1.4000000000000001,0.28400000000000003,0.64,64,236,105,0,17.1,64,236,0,105,80.04,0.16,3.8000000000000003,51.39,1005,244,2.8000000000000003 +2008,7,29,18,30,26.5,1.41,0.271,0.64,0,0,0,0,17.7,0,0,0,0,90.02,0.16,3.8000000000000003,58.52,1006,244,2 +2008,7,29,19,30,25.400000000000002,1.42,0.255,0.64,0,0,0,0,18.2,0,0,0,0,100.12,0.16,3.8000000000000003,64.56,1006,249,1.3 +2008,7,29,20,30,24.700000000000003,1.43,0.244,0.64,0,0,0,0,18.6,0,0,0,0,108.38,0.16,3.8000000000000003,68.81,1006,261,0.7000000000000001 +2008,7,29,21,30,24.400000000000002,1.44,0.23600000000000002,0.64,0,0,0,0,18.7,0,0,0,0,114.77,0.16,3.7,70.49,1006,267,0.30000000000000004 +2008,7,29,22,30,24.200000000000003,1.45,0.231,0.64,0,0,0,0,18.8,0,0,0,0,118.67,0.16,3.7,71.82000000000001,1006,166,0.2 +2008,7,29,23,30,23.900000000000002,1.46,0.23,0.64,0,0,0,0,18.900000000000002,0,0,0,0,119.56,0.16,3.7,73.41,1006,65,0.5 +2008,7,30,0,30,23.700000000000003,1.46,0.23,0.64,0,0,0,0,18.8,0,0,0,0,117.32000000000001,0.16,3.6,73.96000000000001,1006,64,0.8 +2008,7,30,1,30,23.5,1.46,0.228,0.64,0,0,0,0,18.6,0,0,0,0,112.26,0.16,3.6,73.78,1007,67,0.8 +2008,7,30,2,30,23.5,1.46,0.221,0.64,0,0,0,0,18.1,0,0,0,0,104.98,0.16,3.5,71.92,1007,74,0.9 +2008,7,30,3,30,23.700000000000003,1.46,0.212,0.64,0,0,0,0,17.7,0,0,0,0,96.09,0.16,3.5,69.14,1007,83,0.9 +2008,7,30,4,30,25.3,1.46,0.2,0.64,25,121,34,0,17.5,25,121,0,34,85.92,0.16,3.4000000000000004,61.82,1007,92,1 +2008,7,30,5,30,27.900000000000002,1.46,0.191,0.64,76,425,183,0,17.400000000000002,76,425,0,183,75.36,0.16,3.4000000000000004,52.82,1007,116,0.7000000000000001 +2008,7,30,6,30,30.200000000000003,1.46,0.187,0.64,106,600,366,0,17.3,106,600,0,366,64.33,0.16,3.4000000000000004,45.86,1007,208,0.5 +2008,7,30,7,30,32,1.45,0.182,0.64,125,704,546,0,16.6,125,704,0,546,53.2,0.16,3.4000000000000004,39.64,1007,280,1.1 +2008,7,30,8,30,33.2,1.44,0.18,0.64,138,768,705,0,16.1,138,768,0,705,42.410000000000004,0.16,3.3000000000000003,36.04,1007,277,1.7000000000000002 +2008,7,30,9,30,34.1,1.43,0.17200000000000001,0.64,143,810,825,0,16,143,810,0,825,32.67,0.16,3.3000000000000003,33.89,1007,272,2.3000000000000003 +2008,7,30,10,30,34.7,1.42,0.17400000000000002,0.64,149,827,895,0,15.9,149,827,0,895,25.54,0.16,3.3000000000000003,32.61,1006,268,2.9000000000000004 +2008,7,30,11,30,35,1.42,0.17500000000000002,0.64,150,829,909,0,15.8,150,829,0,909,23.7,0.16,3.4000000000000004,31.92,1006,264,3.5 +2008,7,30,12,30,35,1.41,0.23700000000000002,0.64,174,779,860,0,15.8,174,779,0,860,28.240000000000002,0.16,3.4000000000000004,31.900000000000002,1006,260,4.1000000000000005 +2008,7,30,13,30,34.5,1.41,0.23600000000000002,0.64,166,750,766,0,15.9,166,750,0,766,36.81,0.16,3.5,32.99,1005,258,4.7 +2008,7,30,14,30,33.7,1.4000000000000001,0.23700000000000002,0.64,153,700,629,0,16.1,153,700,0,629,47.15,0.16,3.5,35.03,1006,258,5 +2008,7,30,15,30,32.6,1.3900000000000001,0.242,0.64,135,614,459,0,16.5,135,614,0,459,58.17,0.16,3.6,38.13,1006,257,5.1000000000000005 +2008,7,30,16,30,31.1,1.4000000000000001,0.249,0.64,108,477,276,0,16.8,108,477,0,276,69.31,0.16,3.6,42.4,1006,256,4.7 +2008,7,30,17,30,29.1,1.41,0.246,0.64,60,260,104,0,17.2,60,260,0,104,80.21000000000001,0.16,3.6,48.78,1006,253,3.7 +2008,7,30,18,30,27.200000000000003,1.42,0.244,0.64,0,0,0,0,18,0,0,0,0,90.17,0.16,3.5,57.32,1007,248,2.5 +2008,7,30,19,30,25.900000000000002,1.43,0.233,0.64,0,0,0,0,18.900000000000002,0,0,0,0,100.31,0.16,3.4000000000000004,65.4,1007,246,1.5 +2008,7,30,20,30,25.1,1.43,0.222,0.64,0,0,0,0,19.5,0,0,0,0,108.59,0.16,3.4000000000000004,70.99,1007,243,0.8 +2008,7,30,21,30,24.6,1.43,0.214,0.64,0,0,0,0,19.900000000000002,0,0,0,0,115,0.16,3.4000000000000004,75.27,1007,229,0.5 +2008,7,30,22,30,24.3,1.43,0.20800000000000002,0.64,0,0,0,0,20.200000000000003,0,0,0,0,118.91,0.16,3.3000000000000003,78.15,1007,193,0.30000000000000004 +2008,7,30,23,30,24.1,1.43,0.20400000000000001,0.64,0,0,0,0,20.5,0,0,0,0,119.8,0.16,3.3000000000000003,80.14,1007,151,0.30000000000000004 +2008,7,31,0,30,23.900000000000002,1.44,0.203,0.64,0,0,0,0,20.5,0,0,0,0,117.55,0.16,3.4000000000000004,81.41,1006,126,0.4 +2008,7,31,1,30,23.700000000000003,1.43,0.20500000000000002,0.64,0,0,0,0,20.5,0,0,0,0,112.47,0.16,3.4000000000000004,82.19,1006,113,0.4 +2008,7,31,2,30,23.5,1.43,0.211,0.64,0,0,0,0,20.400000000000002,0,0,0,0,105.17,0.16,3.4000000000000004,82.67,1006,104,0.5 +2008,7,31,3,30,23.5,1.43,0.219,0.64,0,0,0,0,20.3,0,0,0,0,96.26,0.16,3.4000000000000004,82.36,1007,96,0.5 +2008,7,31,4,30,24.900000000000002,1.43,0.226,0.64,24,101,31,0,20.200000000000003,24,101,0,31,86.08,0.16,3.4000000000000004,75.3,1007,97,0.7000000000000001 +2008,7,31,5,30,27.3,1.44,0.224,0.64,80,391,178,0,19.6,80,391,0,178,75.51,0.16,3.4000000000000004,62.75,1007,108,0.6000000000000001 +2008,7,31,6,30,30,1.45,0.211,0.64,112,577,360,0,18.5,112,577,0,360,64.47,0.16,3.4000000000000004,50.050000000000004,1007,188,0.6000000000000001 +2008,7,31,7,30,32.4,1.45,0.21,0.64,133,683,541,0,17.2,133,683,0,541,53.35,0.16,3.3000000000000003,40.42,1007,258,1.3 +2008,7,31,8,30,33.800000000000004,1.44,0.20800000000000002,0.64,148,748,698,0,17,148,748,0,698,42.57,0.16,3.3000000000000003,36.69,1007,251,2.2 +2008,7,31,9,30,34.5,1.46,0.354,0.64,211,698,797,0,17,211,698,0,797,32.86,0.16,3.3000000000000003,35.33,1006,251,3 +2008,7,31,10,30,34.800000000000004,1.44,0.365,0.64,225,714,868,0,16.7,225,714,0,868,25.77,0.16,3.3000000000000003,34.160000000000004,1006,254,3.8000000000000003 +2008,7,31,11,30,34.800000000000004,1.41,0.396,0.64,238,702,879,0,16.3,238,702,0,879,23.95,0.16,3.3000000000000003,33.37,1006,258,4.4 +2008,7,31,12,30,34.4,1.35,0.23600000000000002,0.64,175,779,860,0,15.9,175,779,0,860,28.46,0.16,3.3000000000000003,33.27,1006,261,4.7 +2008,7,31,13,30,33.800000000000004,1.34,0.273,0.64,181,729,763,0,15.4,181,729,0,763,37,0.16,3.2,33.29,1006,264,4.6000000000000005 +2008,7,31,14,30,33.300000000000004,1.35,0.28300000000000003,0.64,170,671,625,0,14.8,170,671,0,625,47.33,0.16,3.2,32.93,1006,266,4.2 +2008,7,31,15,30,32.5,1.36,0.322,0.64,158,561,453,0,14.3,158,561,0,453,58.33,0.16,3.1,33.4,1006,267,3.7 +2008,7,31,16,30,31.3,1.36,0.32,0.64,122,427,272,0,14.100000000000001,122,427,0,272,69.47,0.16,3,35.21,1006,265,2.9000000000000004 +2008,7,31,17,30,29,1.37,0.28700000000000003,0.64,64,231,103,0,14.700000000000001,64,231,0,103,80.38,0.16,3,41.75,1006,261,2 +2008,7,31,18,30,26.700000000000003,1.3900000000000001,0.24,0.64,0,0,0,0,16.3,0,0,0,0,90.92,0.16,2.9000000000000004,52.800000000000004,1006,263,1.6 +2008,7,31,19,30,25.5,1.41,0.2,0.64,0,0,0,0,17.400000000000002,0,0,0,0,100.51,0.16,2.8000000000000003,60.83,1006,274,1.3 +2008,7,31,20,30,24.900000000000002,1.42,0.17400000000000002,0.64,0,0,0,0,18.2,0,0,0,0,108.81,0.16,2.7,66.38,1007,295,1 +2008,7,31,21,30,24.400000000000002,1.42,0.156,0.64,0,0,0,0,18.8,0,0,0,0,115.24000000000001,0.16,2.7,70.81,1006,163,0.6000000000000001 +2008,7,31,22,30,24,1.42,0.14100000000000001,0.64,0,0,0,0,18.900000000000002,0,0,0,0,119.16,0.16,2.6,73.12,1006,38,0.5 +2008,7,31,23,30,23.6,1.43,0.128,0.64,0,0,0,0,18.7,0,0,0,0,120.05,0.16,2.5,73.88,1006,66,0.6000000000000001 +2008,8,1,0,30,23.3,1.45,0.117,0.62,0,0,0,0,18.3,0,0,0,0,117.79,0.16,2.5,73.39,1006,78,0.7000000000000001 +2008,8,1,1,30,23.200000000000003,1.47,0.11,0.62,0,0,0,0,17.8,0,0,0,0,112.69,0.16,2.5,71.87,1006,86,0.6000000000000001 +2008,8,1,2,30,23.1,1.5,0.105,0.62,0,0,0,0,17.5,0,0,0,0,105.37,0.16,2.5,70.53,1006,94,0.7000000000000001 +2008,8,1,3,30,23.200000000000003,1.52,0.10300000000000001,0.62,0,0,0,0,17.1,0,0,0,0,96.44,0.16,2.5,68.52,1006,99,0.7000000000000001 +2008,8,1,4,30,24.5,1.53,0.10200000000000001,0.62,22,203,36,0,16.8,22,203,0,36,86.23,0.16,2.5,62.26,1006,108,0.8 +2008,8,1,5,30,27.3,1.54,0.10200000000000001,0.62,59,535,192,0,16.5,59,535,0,192,75.66,0.16,2.5,51.61,1006,161,0.6000000000000001 +2008,8,1,6,30,30.200000000000003,1.56,0.101,0.62,81,699,381,0,15,81,699,0,381,64.62,0.16,2.5,39.64,1006,243,0.8 +2008,8,1,7,30,32.4,1.56,0.10400000000000001,0.62,96,785,563,0,13.4,96,785,0,563,53.5,0.16,2.6,31.62,1006,278,1.7000000000000002 +2008,8,1,8,30,33.800000000000004,1.57,0.109,0.62,108,836,722,0,13.200000000000001,108,836,0,722,42.730000000000004,0.16,2.6,28.740000000000002,1006,275,2.4000000000000004 +2008,8,1,9,30,34.7,1.61,0.11,0.62,115,866,841,0,13.200000000000001,115,866,0,841,33.05,0.16,2.7,27.45,1005,272,3.2 +2008,8,1,10,30,35.300000000000004,1.62,0.117,0.62,122,875,909,0,13.3,122,875,0,909,26,0.16,2.8000000000000003,26.69,1005,270,3.9000000000000004 +2008,8,1,11,30,35.5,1.61,0.124,0.62,126,872,921,0,13.4,126,872,0,921,24.2,0.16,2.9000000000000004,26.650000000000002,1005,270,4.5 +2008,8,1,12,30,35.4,1.55,0.14,0.62,131,851,878,0,13.600000000000001,131,851,0,878,28.69,0.16,2.9000000000000004,27.080000000000002,1004,270,5 +2008,8,1,13,30,35,1.51,0.148,0.62,129,819,781,0,13.8,129,819,0,781,37.2,0.16,3,27.990000000000002,1004,271,5.2 +2008,8,1,14,30,34.300000000000004,1.46,0.155,0.62,122,768,641,0,13.9,122,768,0,641,47.5,0.16,3,29.36,1004,273,5.300000000000001 +2008,8,1,15,30,33.300000000000004,1.41,0.165,0.62,112,682,468,0,14.100000000000001,112,682,0,468,58.5,0.16,3.1,31.400000000000002,1004,275,5 +2008,8,1,16,30,31.900000000000002,1.3800000000000001,0.169,0.62,90,550,281,0,14.200000000000001,90,550,0,281,69.64,0.16,3.1,34.230000000000004,1004,277,4.2 +2008,8,1,17,30,29.700000000000003,1.35,0.17300000000000001,0.62,54,315,105,0,14.700000000000001,54,315,0,105,80.56,0.16,3.1,40.2,1004,277,3.1 +2008,8,1,18,30,27.5,1.33,0.177,0.62,0,0,0,0,16.2,0,0,0,0,91.11,0.16,3.1,50.18,1005,281,2.2 +2008,8,1,19,30,26.3,1.32,0.176,0.62,0,0,0,0,17.3,0,0,0,0,100.72,0.16,3,57.54,1005,293,1.9000000000000001 +2008,8,1,20,30,25.5,1.31,0.169,0.62,0,0,0,0,17.7,0,0,0,0,109.04,0.16,2.9000000000000004,61.93,1005,306,1.5 +2008,8,1,21,30,24.900000000000002,1.32,0.159,0.62,0,0,0,0,17.5,0,0,0,0,115.48,0.16,2.7,63.58,1005,315,1.3 +2008,8,1,22,30,24.5,1.34,0.146,0.62,0,0,0,0,17.2,0,0,0,0,119.41,0.16,2.6,63.65,1005,322,1.3 +2008,8,1,23,30,24.1,1.36,0.134,0.62,0,0,0,0,16.8,0,0,0,0,120.31,0.16,2.5,63.75,1005,328,1.3 +2008,8,2,0,30,23.900000000000002,1.4000000000000001,0.123,0.62,0,0,0,0,16.5,0,0,0,0,118.03,0.16,2.3000000000000003,63.300000000000004,1005,336,1.3 +2008,8,2,1,30,23.8,1.44,0.113,0.62,0,0,0,0,16.2,0,0,0,0,112.91,0.16,2.2,62.480000000000004,1005,345,1.2000000000000002 +2008,8,2,2,30,23.700000000000003,1.47,0.105,0.62,0,0,0,0,15.9,0,0,0,0,105.57000000000001,0.16,2.1,61.660000000000004,1005,176,1.2000000000000002 +2008,8,2,3,30,23.8,1.5,0.101,0.62,0,0,0,0,15.8,0,0,0,0,96.62,0.16,2.1,60.85,1006,9,1.1 +2008,8,2,4,30,25,1.5,0.10400000000000001,0.62,22,198,34,0,15.9,22,198,0,34,86.39,0.16,2.1,56.93,1006,20,1.2000000000000002 +2008,8,2,5,30,27.1,1.5,0.108,0.62,61,532,191,0,16.2,61,532,0,191,75.81,0.16,2.1,51.4,1006,15,1.3 +2008,8,2,6,30,29.700000000000003,1.5,0.115,0.62,86,689,380,7,15.3,149,20,0,157,64.76,0.16,2.2,41.58,1006,164,1.6 +2008,8,2,7,30,32.2,1.5,0.11900000000000001,0.62,102,777,562,7,13.600000000000001,236,347,0,441,53.65,0.16,2.3000000000000003,32.37,1007,311,2.1 +2008,8,2,8,30,34,1.52,0.11900000000000001,0.62,112,829,719,0,12.700000000000001,112,829,0,719,42.9,0.16,2.5,27.54,1007,293,2.6 +2008,8,2,9,30,35,1.56,0.11,0.62,115,867,840,0,12.4,115,867,0,840,33.24,0.16,2.6,25.560000000000002,1007,282,3.1 +2008,8,2,10,30,35.5,1.57,0.113,0.62,120,879,909,0,12.4,120,879,0,909,26.23,0.16,2.7,24.96,1006,275,3.6 +2008,8,2,11,30,35.7,1.56,0.11800000000000001,0.62,123,879,923,0,12.600000000000001,123,879,0,923,24.46,0.16,2.7,24.92,1006,271,4.1000000000000005 +2008,8,2,12,30,35.5,1.56,0.11800000000000001,0.62,121,868,880,0,12.700000000000001,121,868,0,880,28.92,0.16,2.8000000000000003,25.41,1006,269,4.5 +2008,8,2,13,30,35.1,1.55,0.11900000000000001,0.62,117,843,787,0,12.8,117,843,0,787,37.4,0.16,2.8000000000000003,26.14,1006,270,4.6000000000000005 +2008,8,2,14,30,34.4,1.53,0.11900000000000001,0.62,108,800,647,0,12.9,108,800,0,647,47.68,0.16,2.8000000000000003,27.330000000000002,1006,271,4.4 +2008,8,2,15,30,33.5,1.51,0.122,0.62,96,726,474,0,12.9,96,726,0,474,58.68,0.16,2.8000000000000003,28.82,1005,273,4 +2008,8,2,16,30,31.900000000000002,1.48,0.127,0.62,79,600,286,0,13.100000000000001,79,600,0,286,69.82000000000001,0.16,2.7,31.91,1005,275,3.2 +2008,8,2,17,30,29.400000000000002,1.47,0.13,0.62,48,367,107,0,14.3,48,367,0,107,80.74,0.16,2.7,39.84,1006,275,2.1 +2008,8,2,18,30,27.1,1.47,0.131,0.62,0,0,0,0,16.2,0,0,0,0,91.3,0.16,2.7,51.480000000000004,1006,279,1.6 +2008,8,2,19,30,25.900000000000002,1.46,0.132,0.62,0,0,0,0,17.400000000000002,0,0,0,0,100.93,0.16,2.7,59.49,1006,289,1.4000000000000001 +2008,8,2,20,30,25.3,1.46,0.135,0.62,0,0,0,0,18.3,0,0,0,0,109.27,0.16,2.7,65.07000000000001,1006,308,1.1 +2008,8,2,21,30,24.900000000000002,1.46,0.137,0.62,0,0,0,0,18.7,0,0,0,0,115.73,0.16,2.7,68.36,1006,160,0.9 +2008,8,2,22,30,24.5,1.46,0.137,0.62,0,0,0,0,18.7,0,0,0,0,119.67,0.16,2.7,70.16,1006,17,0.7000000000000001 +2008,8,2,23,30,24.200000000000003,1.47,0.138,0.62,0,0,0,0,18.5,0,0,0,0,120.56,0.16,2.7,70.33,1006,43,0.7000000000000001 +2008,8,3,0,30,24,1.47,0.137,0.62,0,0,0,0,18,0,0,0,0,118.27,0.16,2.7,69.37,1005,61,0.7000000000000001 +2008,8,3,1,30,23.900000000000002,1.48,0.135,0.62,0,0,0,0,17.6,0,0,0,0,113.14,0.16,2.7,67.9,1005,76,0.7000000000000001 +2008,8,3,2,30,23.700000000000003,1.48,0.133,0.62,0,0,0,0,17.2,0,0,0,0,105.77,0.16,2.7,67.08,1005,89,0.7000000000000001 +2008,8,3,3,30,23.700000000000003,1.49,0.132,0.62,0,0,0,0,16.900000000000002,0,0,0,0,96.8,0.16,2.7,65.85,1005,99,0.7000000000000001 +2008,8,3,4,30,24.700000000000003,1.49,0.132,0.62,21,153,31,0,16.900000000000002,21,153,0,31,86.55,0.16,2.7,61.92,1005,111,0.8 +2008,8,3,5,30,27.200000000000003,1.5,0.131,0.62,64,488,183,0,16.6,64,488,0,183,75.96000000000001,0.16,2.7,52.29,1006,176,0.7000000000000001 +2008,8,3,6,30,30,1.51,0.128,0.62,89,663,370,0,15.5,89,663,0,370,64.91,0.16,2.7,41.61,1006,241,0.9 +2008,8,3,7,30,32.1,1.52,0.126,0.62,104,761,554,0,14,104,761,0,554,53.800000000000004,0.16,2.7,33.42,1006,247,1.6 +2008,8,3,8,30,33.4,1.51,0.125,0.62,115,819,714,0,13.700000000000001,115,819,0,714,43.06,0.16,2.7,30.39,1006,243,2.1 +2008,8,3,9,30,34.300000000000004,1.5,0.12,0.62,120,857,835,0,13.600000000000001,120,857,0,835,33.44,0.16,2.7,28.86,1006,240,2.6 +2008,8,3,10,30,34.9,1.47,0.121,0.62,125,873,906,0,13.8,125,873,0,906,26.47,0.16,2.7,28.11,1005,240,3.1 +2008,8,3,11,30,35,1.44,0.122,0.62,126,876,922,0,14,126,876,0,922,24.72,0.16,2.7,28.34,1005,241,3.6 +2008,8,3,12,30,34.800000000000004,1.3900000000000001,0.129,0.62,127,861,879,0,14.200000000000001,127,861,0,879,29.16,0.16,2.7,29.05,1005,244,3.9000000000000004 +2008,8,3,13,30,34.4,1.35,0.128,0.62,122,839,786,0,14.3,122,839,0,786,37.61,0.16,2.6,29.990000000000002,1005,247,4 +2008,8,3,14,30,33.7,1.31,0.125,0.62,112,797,646,0,14.3,112,797,0,646,47.870000000000005,0.16,2.6,31.220000000000002,1005,251,3.8000000000000003 +2008,8,3,15,30,32.800000000000004,1.28,0.124,0.62,98,726,474,0,14.4,98,726,0,474,58.86,0.16,2.5,32.86,1005,255,3.4000000000000004 +2008,8,3,16,30,31.3,1.26,0.11900000000000001,0.62,78,609,286,0,14.4,78,609,0,286,70,0.16,2.4000000000000004,35.9,1004,258,2.7 +2008,8,3,17,30,28.900000000000002,1.25,0.115,0.62,47,378,106,0,15.3,47,378,0,106,80.92,0.16,2.4000000000000004,43.54,1004,261,1.9000000000000001 +2008,8,3,18,30,26.700000000000003,1.26,0.113,0.62,0,0,0,0,16.6,0,0,0,0,91.5,0.16,2.4000000000000004,53.9,1005,266,1.5 +2008,8,3,19,30,25.700000000000003,1.27,0.112,0.62,0,0,0,0,17.2,0,0,0,0,101.15,0.16,2.4000000000000004,59.51,1005,275,1.5 +2008,8,3,20,30,25.1,1.28,0.113,0.62,0,0,0,0,17.8,0,0,0,0,109.5,0.16,2.4000000000000004,64.01,1005,288,1.3 +2008,8,3,21,30,24.6,1.29,0.113,0.62,0,0,0,0,18.400000000000002,0,0,0,0,115.98,0.16,2.4000000000000004,68.43,1006,305,1 +2008,8,3,22,30,24.3,1.3,0.112,0.62,0,0,0,0,18.7,0,0,0,0,119.93,0.16,2.4000000000000004,71.16,1006,336,0.7000000000000001 +2008,8,3,23,30,23.8,1.31,0.111,0.62,0,0,0,0,18.8,0,0,0,0,120.83,0.16,2.4000000000000004,73.65,1005,205,0.5 +2008,8,4,0,30,23.3,1.32,0.108,0.62,0,0,0,0,18.7,0,0,0,0,118.52,0.16,2.4000000000000004,75.57000000000001,1005,68,0.5 +2008,8,4,1,30,23,1.34,0.10300000000000001,0.62,0,0,0,0,18.6,0,0,0,0,113.37,0.16,2.4000000000000004,76.07000000000001,1005,95,0.6000000000000001 +2008,8,4,2,30,22.700000000000003,1.36,0.097,0.62,0,0,0,0,18.3,0,0,0,0,105.97,0.16,2.4000000000000004,76.42,1005,111,0.6000000000000001 +2008,8,4,3,30,22.700000000000003,1.37,0.091,0.62,0,0,0,0,18.1,0,0,0,0,96.98,0.16,2.3000000000000003,75.15,1005,120,0.7000000000000001 +2008,8,4,4,30,23.900000000000002,1.3800000000000001,0.08600000000000001,0.62,20,196,31,0,17.8,20,196,0,31,86.71000000000001,0.16,2.3000000000000003,68.68,1005,134,0.7000000000000001 +2008,8,4,5,30,26.200000000000003,1.3900000000000001,0.083,0.62,55,553,188,0,17.5,55,553,0,188,76.12,0.16,2.3000000000000003,58.730000000000004,1005,185,0.9 +2008,8,4,6,30,28.5,1.3900000000000001,0.081,0.62,75,721,379,0,16.5,75,721,0,379,65.06,0.16,2.3000000000000003,48.230000000000004,1005,237,1.5 +2008,8,4,7,30,30.5,1.3800000000000001,0.081,0.62,88,808,564,0,15.8,88,808,0,564,53.96,0.16,2.4000000000000004,41.050000000000004,1005,251,2.5 +2008,8,4,8,30,31.900000000000002,1.36,0.084,0.62,99,858,724,0,15.9,99,858,0,724,43.230000000000004,0.16,2.4000000000000004,38.160000000000004,1005,252,3.1 +2008,8,4,9,30,32.800000000000004,1.35,0.092,0.62,108,881,842,0,16.3,108,881,0,842,33.64,0.16,2.5,37.300000000000004,1005,251,3.6 +2008,8,4,10,30,33.300000000000004,1.31,0.095,0.62,113,895,912,0,16.7,113,895,0,912,26.72,0.16,2.5,37.1,1005,249,4 +2008,8,4,11,30,33.4,1.26,0.096,0.62,115,897,928,0,17,115,897,0,928,24.990000000000002,0.16,2.5,37.62,1005,248,4.2 +2008,8,4,12,30,33.2,1.23,0.1,0.62,115,885,886,0,17.1,115,885,0,886,29.400000000000002,0.16,2.5,38.4,1004,247,4.3 +2008,8,4,13,30,32.9,1.2,0.099,0.62,110,864,793,0,17,110,864,0,793,37.82,0.16,2.4000000000000004,38.82,1004,248,4.3 +2008,8,4,14,30,32.2,1.18,0.098,0.62,102,823,652,0,16.8,102,823,0,652,48.07,0.16,2.4000000000000004,39.65,1004,250,4 +2008,8,4,15,30,31.3,1.1500000000000001,0.096,0.62,89,757,479,0,16.5,89,757,0,479,59.04,0.16,2.3000000000000003,41.07,1004,251,3.7 +2008,8,4,16,30,29.900000000000002,1.1300000000000001,0.094,0.62,71,639,288,0,16.400000000000002,71,639,0,288,70.18,0.16,2.2,44.300000000000004,1004,250,3.1 +2008,8,4,17,30,27.8,1.12,0.092,0.62,44,404,106,0,16.7,44,404,0,106,81.12,0.16,2.2,50.81,1004,249,2.2 +2008,8,4,18,30,25.8,1.1300000000000001,0.09,0.62,0,0,0,0,17.7,0,0,0,0,91.71000000000001,0.16,2.1,60.83,1004,250,1.6 +2008,8,4,19,30,24.700000000000003,1.1500000000000001,0.09,0.62,0,0,0,0,18.6,0,0,0,0,101.37,0.16,2.1,68.8,1005,254,1.3 +2008,8,4,20,30,24.1,1.1400000000000001,0.093,0.62,0,0,0,0,19.400000000000002,0,0,0,0,109.74000000000001,0.16,2.2,74.91,1005,263,1 +2008,8,4,21,30,23.8,1.12,0.096,0.62,0,0,0,0,19.8,0,0,0,0,116.24000000000001,0.16,2.2,78.45,1005,280,0.7000000000000001 +2008,8,4,22,30,23.6,1.1,0.099,0.62,0,0,0,0,20,0,0,0,0,120.2,0.16,2.2,80.2,1004,316,0.4 +2008,8,4,23,30,23.400000000000002,1.08,0.101,0.62,0,0,0,0,19.900000000000002,0,0,0,0,121.09,0.16,2.3000000000000003,80.64,1004,181,0.30000000000000004 +2008,8,5,0,30,23.200000000000003,1.07,0.107,0.62,0,0,0,0,19.700000000000003,0,0,0,0,118.78,0.16,2.5,80.79,1004,24,0.4 +2008,8,5,1,30,22.900000000000002,1.07,0.117,0.62,0,0,0,0,19.5,0,0,0,0,113.60000000000001,0.16,2.7,81.37,1004,29,0.5 +2008,8,5,2,30,22.6,1.08,0.131,0.62,0,0,0,0,19.400000000000002,0,0,0,0,106.18,0.16,2.9000000000000004,81.97,1004,37,0.6000000000000001 +2008,8,5,3,30,22.6,1.1,0.146,0.62,0,0,0,0,19.200000000000003,0,0,0,0,97.17,0.16,3,81,1004,52,0.6000000000000001 +2008,8,5,4,30,23.8,1.12,0.158,0.62,20,96,25,0,19,20,96,0,25,86.87,0.16,3,74.37,1004,66,0.8 +2008,8,5,5,30,26.1,1.1400000000000001,0.163,0.62,70,427,171,0,18.7,70,427,0,171,76.27,0.16,3,63.67,1004,60,0.6000000000000001 +2008,8,5,6,30,28.8,1.1500000000000001,0.159,0.62,99,617,357,0,17.8,99,617,0,357,65.21000000000001,0.16,2.9000000000000004,51.56,1004,154,0.8 +2008,8,5,7,30,31,1.1400000000000001,0.155,0.62,116,726,542,0,16.900000000000002,116,726,0,542,54.11,0.16,2.8000000000000003,42.75,1004,256,1.7000000000000002 +2008,8,5,8,30,32.4,1.11,0.152,0.62,127,792,703,0,17.1,127,792,0,703,43.4,0.16,2.7,40.14,1004,250,2.5 +2008,8,5,9,30,33.4,1.01,0.099,0.62,112,868,833,0,17.6,112,868,0,833,33.84,0.16,2.7,39.050000000000004,1003,248,3.1 +2008,8,5,10,30,34.2,1.05,0.095,0.62,114,888,905,0,17.400000000000002,114,888,0,905,26.97,0.16,2.7,37.01,1003,248,3.5 +2008,8,5,11,30,34.5,1.04,0.095,0.62,115,892,921,0,17.3,115,892,0,921,25.26,0.16,2.7,36.160000000000004,1003,247,3.8000000000000003 +2008,8,5,12,30,34.4,1.1,0.105,0.62,118,875,879,0,17.3,118,875,0,879,29.650000000000002,0.16,2.7,36.31,1003,248,3.9000000000000004 +2008,8,5,13,30,34,1.06,0.111,0.62,116,846,782,0,17.1,116,846,0,782,38.04,0.16,2.7,36.72,1003,250,3.9000000000000004 +2008,8,5,14,30,33.300000000000004,1.01,0.122,0.62,112,792,639,0,16.8,112,792,0,639,48.27,0.16,2.7,37.4,1003,252,3.8000000000000003 +2008,8,5,15,30,32.2,0.99,0.13,0.62,102,710,465,0,16.7,102,710,0,465,59.230000000000004,0.16,2.6,39.49,1003,253,3.4000000000000004 +2008,8,5,16,30,30.6,0.99,0.135,0.62,82,573,275,0,16.900000000000002,82,573,0,275,70.37,0.16,2.6,43.92,1003,252,2.9000000000000004 +2008,8,5,17,30,28.200000000000003,1,0.136,0.62,48,323,97,0,17.5,48,323,0,97,81.31,0.16,2.6,52.370000000000005,1003,248,2 +2008,8,5,18,30,26.200000000000003,1.01,0.138,0.62,0,0,0,0,18.5,0,0,0,0,91.92,0.16,2.7,62.78,1003,243,1.4000000000000001 +2008,8,5,19,30,25.1,1.03,0.139,0.62,0,0,0,0,19.5,0,0,0,0,101.60000000000001,0.16,2.7,71.04,1003,239,1 +2008,8,5,20,30,24.5,1.04,0.14,0.62,0,0,0,0,20.200000000000003,0,0,0,0,109.99000000000001,0.16,2.7,77.22,1004,229,0.7000000000000001 +2008,8,5,21,30,24.200000000000003,1.06,0.139,0.62,0,0,0,0,20.6,0,0,0,0,116.5,0.16,2.7,80.13,1003,191,0.4 +2008,8,5,22,30,24.200000000000003,1.08,0.134,0.62,0,0,0,0,20.5,0,0,0,0,120.48,0.16,2.7,80.04,1003,140,0.30000000000000004 +2008,8,5,23,30,24.3,1.1,0.129,0.62,0,0,0,0,20.400000000000002,0,0,0,0,121.37,0.16,2.7,78.81,1003,110,0.4 +2008,8,6,0,30,24.400000000000002,1.11,0.125,0.62,0,0,0,0,20.1,0,0,0,0,119.03,0.16,2.7,77.15,1003,92,0.4 +2008,8,6,1,30,24.400000000000002,1.12,0.122,0.62,0,0,0,0,19.8,0,0,0,0,113.83,0.16,2.7,75.74,1003,73,0.4 +2008,8,6,2,30,24.200000000000003,1.12,0.12,0.62,0,0,0,0,19.5,0,0,0,0,106.39,0.16,2.8000000000000003,75.07000000000001,1003,57,0.5 +2008,8,6,3,30,23.900000000000002,1.1300000000000001,0.11900000000000001,0.62,0,0,0,0,19.200000000000003,0,0,0,0,97.35000000000001,0.16,2.9000000000000004,75.16,1003,53,0.6000000000000001 +2008,8,6,4,30,24.8,1.1500000000000001,0.11900000000000001,0.62,19,122,26,0,19,19,122,0,26,87.03,0.16,3,70.18,1003,53,0.8 +2008,8,6,5,30,27.200000000000003,1.17,0.12,0.62,62,477,174,0,18.7,62,477,0,174,76.43,0.16,3,59.82,1003,45,0.7000000000000001 +2008,8,6,6,30,29.900000000000002,1.2,0.11900000000000001,0.62,86,656,360,0,18.1,86,656,0,360,65.36,0.16,3.1,49.21,1003,148,0.5 +2008,8,6,7,30,32.2,1.23,0.11800000000000001,0.62,102,755,543,0,16.900000000000002,102,755,0,543,54.27,0.16,3.1,40.050000000000004,1003,256,0.9 +2008,8,6,8,30,33.800000000000004,1.26,0.117,0.62,112,815,702,0,16.2,112,815,0,702,43.57,0.16,3.1,34.89,1003,252,1.7000000000000002 +2008,8,6,9,30,34.9,1.3,0.117,0.62,119,848,821,0,15.9,119,848,0,821,34.04,0.16,3.2,32.3,1002,251,2.5 +2008,8,6,10,30,35.5,1.3,0.11900000000000001,0.62,123,864,891,0,15.600000000000001,123,864,0,891,27.22,0.16,3.2,30.68,1002,249,3.1 +2008,8,6,11,30,35.7,1.27,0.124,0.62,127,863,906,0,15.700000000000001,127,863,0,906,25.54,0.16,3.2,30.400000000000002,1002,248,3.7 +2008,8,6,12,30,35.5,1.22,0.125,0.62,126,852,864,0,15.9,126,852,0,864,29.91,0.16,3.2,31.240000000000002,1002,247,4.1000000000000005 +2008,8,6,13,30,35,1.1500000000000001,0.136,0.62,125,818,767,0,16.2,125,818,0,767,38.26,0.16,3.2,32.77,1002,248,4.4 +2008,8,6,14,30,34,1.1,0.149,0.62,121,759,624,0,16.7,121,759,0,624,48.47,0.16,3.3000000000000003,35.7,1001,248,4.6000000000000005 +2008,8,6,15,30,32.7,1.08,0.163,0.62,110,664,448,0,17.2,110,664,0,448,59.43,0.16,3.5,39.56,1001,249,4.5 +2008,8,6,16,30,31.1,1.07,0.17200000000000001,0.62,90,517,262,0,17.6,90,517,0,262,70.57000000000001,0.16,3.5,44.5,1002,251,3.9000000000000004 +2008,8,6,17,30,29.200000000000003,1.07,0.178,0.62,51,261,89,0,17.900000000000002,51,261,0,89,81.51,0.16,3.6,50.61,1002,253,2.7 +2008,8,6,18,30,27.6,1.08,0.179,0.62,0,0,0,0,18.3,0,0,0,0,92.14,0.16,3.5,57.11,1002,260,1.4000000000000001 +2008,8,6,19,30,26.700000000000003,1.09,0.177,0.62,0,0,0,0,18.8,0,0,0,0,101.83,0.16,3.4000000000000004,61.74,1003,280,0.8 +2008,8,6,20,30,26.3,1.09,0.171,0.62,0,0,0,0,18.8,0,0,0,0,110.24000000000001,0.16,3.2,63.29,1003,315,0.5 +2008,8,6,21,30,26.1,1.08,0.163,0.62,0,0,0,0,18.7,0,0,0,0,116.77,0.16,3,63.63,1003,177,0.5 +2008,8,6,22,30,25.8,1.04,0.157,0.62,0,0,0,0,18.400000000000002,0,0,0,0,120.75,0.16,2.8000000000000003,63.64,1003,32,0.5 +2008,8,6,23,30,25.5,0.99,0.153,0.62,0,0,0,0,18,0,0,0,0,121.64,0.16,2.7,63.27,1003,57,0.6000000000000001 +2008,8,7,0,30,25.200000000000003,0.9500000000000001,0.152,0.62,0,0,0,0,17.8,0,0,1,0,119.29,0.16,2.6,63.5,1002,74,0.6000000000000001 +2008,8,7,1,30,24.900000000000002,0.91,0.156,0.62,0,0,0,0,17.6,0,0,1,0,114.07000000000001,0.16,2.5,63.940000000000005,1002,83,0.6000000000000001 +2008,8,7,2,30,24.6,0.86,0.163,0.62,0,0,0,0,17.400000000000002,0,0,0,0,106.60000000000001,0.16,2.5,64.32000000000001,1002,88,0.7000000000000001 +2008,8,7,3,30,24.3,0.84,0.168,0.62,0,0,0,0,17.400000000000002,0,0,0,0,97.54,0.16,2.5,65.48,1002,92,0.7000000000000001 +2008,8,7,4,30,25.3,0.85,0.164,0.62,19,67,22,0,17.6,19,67,0,22,87.19,0.16,2.5,62.35,1002,98,0.9 +2008,8,7,5,30,27.900000000000002,0.87,0.159,0.62,70,421,168,0,17.5,70,421,0,168,76.59,0.16,2.5,53.22,1002,134,0.7000000000000001 +2008,8,7,6,30,30.5,0.87,0.152,0.62,98,621,355,0,15.9,98,621,0,355,65.52,0.16,2.5,41.410000000000004,1002,203,0.8 +2008,8,7,7,30,32.5,0.88,0.153,0.62,117,727,540,0,14,117,727,0,540,54.43,0.16,2.5,32.7,1002,245,1.5 +2008,8,7,8,30,33.800000000000004,0.9,0.155,0.62,130,787,699,0,13.8,130,787,0,699,43.75,0.16,2.6,29.91,1002,247,2.2 +2008,8,7,9,30,34.7,0.93,0.157,0.62,140,821,819,0,13.8,140,821,0,819,34.25,0.16,2.7,28.6,1002,247,2.8000000000000003 +2008,8,7,10,30,35.2,0.9400000000000001,0.163,0.62,147,836,889,0,13.9,147,836,0,889,27.47,0.16,2.7,27.88,1002,247,3.4000000000000004 +2008,8,7,11,30,35.4,0.92,0.171,0.62,152,834,903,0,14,152,834,0,903,25.82,0.16,2.7,27.78,1002,247,3.8000000000000003 +2008,8,7,12,30,35.2,0.9400000000000001,0.14100000000000001,0.62,136,846,867,0,14.100000000000001,136,846,0,867,30.17,0.16,2.7,28.330000000000002,1001,247,4 +2008,8,7,13,30,34.800000000000004,0.9500000000000001,0.136,0.62,127,824,772,0,14.200000000000001,127,824,0,772,38.49,0.16,2.7,29.150000000000002,1001,247,3.9000000000000004 +2008,8,7,14,30,34.1,0.9500000000000001,0.133,0.62,116,778,630,0,14.3,116,778,0,630,48.68,0.16,2.8000000000000003,30.38,1001,248,3.6 +2008,8,7,15,30,33.1,0.93,0.133,0.62,102,699,456,0,14.3,102,699,0,456,59.63,0.16,2.8000000000000003,32.15,1001,250,3.2 +2008,8,7,16,30,31.6,0.92,0.134,0.62,81,563,267,0,14.4,81,563,0,267,70.77,0.16,2.8000000000000003,35.24,1001,251,2.5 +2008,8,7,17,30,29.1,0.93,0.134,0.62,47,307,91,0,15.200000000000001,47,307,0,91,81.72,0.16,2.7,42.97,1001,251,1.7000000000000002 +2008,8,7,18,30,27.1,0.9500000000000001,0.132,0.62,0,0,0,0,16.5,0,0,0,0,92.36,0.16,2.7,52.410000000000004,1001,253,1.3 +2008,8,7,19,30,26.200000000000003,0.96,0.131,0.62,0,0,0,0,17.3,0,0,0,0,102.07000000000001,0.16,2.7,57.99,1001,259,1 +2008,8,7,20,30,25.900000000000002,0.9400000000000001,0.135,0.62,0,0,0,0,17.8,0,0,0,0,110.49000000000001,0.16,2.8000000000000003,60.9,1001,259,0.5 +2008,8,7,21,30,25.6,0.9,0.14300000000000002,0.62,0,0,0,0,18,0,0,0,0,117.04,0.16,2.9000000000000004,63.03,1001,189,0.30000000000000004 +2008,8,7,22,30,25.3,0.87,0.151,0.62,0,0,0,0,18,0,0,0,0,121.04,0.16,3,64.06,1001,127,0.6000000000000001 +2008,8,7,23,30,25,0.85,0.159,0.62,0,0,0,0,17.8,0,0,0,0,121.92,0.16,3,64.5,1000,137,0.8 +2008,8,8,0,30,24.6,0.86,0.167,0.62,0,0,0,0,17.7,0,0,0,0,119.56,0.16,3.1,65.47,1000,143,1 +2008,8,8,1,30,24.200000000000003,0.89,0.17200000000000001,0.62,0,0,0,0,17.7,0,0,0,0,114.3,0.16,3.1,66.86,1000,143,1.2000000000000002 +2008,8,8,2,30,23.8,0.92,0.17500000000000002,0.62,0,0,0,0,17.6,0,0,0,0,106.81,0.16,3.1,68.39,999,141,1.5 +2008,8,8,3,30,23.700000000000003,0.92,0.179,0.62,0,0,0,0,17.7,0,0,0,0,97.73,0.16,3.2,68.94,999,139,1.8 +2008,8,8,4,30,25,0.88,0.187,0.62,17,49,19,7,17.7,19,1,7,19,87.35000000000001,0.16,3.2,63.96,999,141,2.5 +2008,8,8,5,30,27.200000000000003,0.8,0.199,0.62,76,358,158,7,18,120,122,7,148,76.75,0.16,3.1,57.14,1000,149,3.5 +2008,8,8,6,30,28.900000000000002,0.63,0.299,0.62,139,457,327,3,17.900000000000002,239,51,0,260,65.67,0.16,3.1,51.57,1000,160,4 +2008,8,8,7,30,30.5,0.5700000000000001,0.311,0.62,175,569,504,1,17.400000000000002,175,569,0,504,54.58,0.16,3.1,45.54,1000,168,4.3 +2008,8,8,8,30,31.900000000000002,0.5,0.339,0.62,208,623,656,8,17.400000000000002,344,316,0,572,43.93,0.16,3.1,41.89,999,174,4.6000000000000005 +2008,8,8,9,30,33.1,0.62,0.22,0.62,172,757,797,0,17.3,172,757,0,797,34.46,0.16,3.2,39.050000000000004,999,182,4.9 +2008,8,8,10,30,33.9,0.55,0.247,0.62,191,757,862,0,17.2,191,757,0,862,27.73,0.16,3.2,37.12,999,189,5.2 +2008,8,8,11,30,34.2,0.52,0.268,0.62,203,746,873,0,17.3,203,746,0,873,26.1,0.16,3.2,36.71,998,195,5.5 +2008,8,8,12,30,33.9,0.63,0.20700000000000002,0.62,170,780,843,0,17.6,170,780,0,843,30.44,0.16,3.2,38.06,998,199,5.5 +2008,8,8,13,30,33.1,0.66,0.21,0.62,163,751,749,0,18.2,163,751,0,749,38.730000000000004,0.16,3.1,41.17,998,204,5.1000000000000005 +2008,8,8,14,30,32.1,0.66,0.221,0.62,155,690,608,7,18.7,294,288,0,483,48.89,0.16,3,45.050000000000004,998,209,4.5 +2008,8,8,15,30,30.700000000000003,0.72,0.215,0.62,132,608,437,0,19.1,132,608,0,437,59.83,0.16,3,50.11,998,214,3.8000000000000003 +2008,8,8,16,30,29.3,0.8200000000000001,0.20500000000000002,0.62,99,473,253,0,19.700000000000003,99,473,0,253,70.98,0.16,3,56.26,998,216,3.1 +2008,8,8,17,30,27.700000000000003,0.89,0.199,0.62,51,221,83,0,20.400000000000002,51,221,0,83,81.93,0.16,3.1,64.45,998,217,2.2 +2008,8,8,18,30,26.3,0.91,0.195,0.62,0,0,0,0,21.200000000000003,0,0,0,0,92.58,0.16,3.1,73.71000000000001,998,215,1.6 +2008,8,8,19,30,25.3,0.89,0.197,0.62,0,0,0,0,22.1,0,0,0,0,102.31,0.16,3,82.31,998,209,1.4000000000000001 +2008,8,8,20,30,24.700000000000003,0.86,0.20800000000000002,0.62,0,0,0,0,22.700000000000003,0,0,0,0,110.75,0.16,3,88.52,998,201,1.3 +2008,8,8,21,30,24.400000000000002,0.84,0.226,0.62,0,0,0,0,23,0,0,0,0,117.32000000000001,0.16,3,91.81,998,188,1.1 +2008,8,8,22,30,24.3,0.85,0.23600000000000002,0.62,0,0,0,0,23,0,0,0,0,121.33,0.16,3,92.38,998,175,1 +2008,8,8,23,30,24.200000000000003,0.85,0.231,0.62,0,0,0,0,22.8,0,0,0,0,122.21000000000001,0.16,2.9000000000000004,91.86,998,169,1 +2008,8,9,0,30,24,0.88,0.23600000000000002,0.62,0,0,0,0,22.6,0,0,0,0,119.83,0.16,2.8000000000000003,91.81,997,171,1 +2008,8,9,1,30,23.8,0.9,0.233,0.62,0,0,0,0,22.3,0,0,0,0,114.55,0.16,2.7,91.48,997,178,0.9 +2008,8,9,2,30,23.6,0.89,0.222,0.62,0,0,0,0,22,0,0,0,0,107.02,0.16,2.6,90.71000000000001,997,184,0.8 +2008,8,9,3,30,23.700000000000003,0.91,0.257,0.62,0,0,0,0,21.700000000000003,0,0,0,0,97.92,0.16,2.5,88.60000000000001,997,186,0.7000000000000001 +2008,8,9,4,30,24.5,0.93,0.28500000000000003,0.62,16,22,17,0,21.5,16,22,0,17,87.52,0.16,2.5,83.19,998,179,0.8 +2008,8,9,5,30,25.8,0.93,0.252,0.62,84,319,157,0,21.200000000000003,84,319,0,157,76.91,0.16,2.6,75.66,998,169,0.8 +2008,8,9,6,30,27.200000000000003,0.92,0.182,0.62,108,585,347,0,20.400000000000002,108,585,0,347,65.83,0.16,2.6,66.31,998,167,0.7000000000000001 +2008,8,9,7,30,29,1,0.163,0.62,122,716,535,0,19.400000000000002,122,716,0,535,54.75,0.16,2.6,56.2,998,183,0.8 +2008,8,9,8,30,30.700000000000003,1.06,0.148,0.62,127,792,696,0,17.900000000000002,127,792,0,696,44.11,0.16,2.7,46.31,998,209,1.1 +2008,8,9,9,30,32.1,1.1,0.156,0.62,139,824,816,0,16.400000000000002,139,824,0,816,34.68,0.16,2.7,38.93,998,230,1.6 +2008,8,9,10,30,33.1,1.1,0.149,0.62,140,848,888,0,15.5,140,848,0,888,28,0.16,2.7,34.81,998,242,2.3000000000000003 +2008,8,9,11,30,33.6,1.1,0.148,0.62,141,852,905,0,15.100000000000001,141,852,0,905,26.400000000000002,0.16,2.7,33,998,249,3 +2008,8,9,12,30,33.7,1.1500000000000001,0.185,0.62,155,814,855,0,14.9,155,814,0,855,30.71,0.16,2.8000000000000003,32.28,997,255,3.6 +2008,8,9,13,30,33.5,1.1400000000000001,0.192,0.62,150,779,756,0,14.8,150,779,0,756,38.97,0.16,2.9000000000000004,32.480000000000004,997,261,3.9000000000000004 +2008,8,9,14,30,32.9,1.08,0.184,0.62,136,731,614,7,14.8,241,461,0,543,49.11,0.16,3,33.58,997,271,4 +2008,8,9,15,30,31.900000000000002,1.07,0.191,0.62,121,638,439,0,14.9,121,638,0,439,60.050000000000004,0.16,3.1,35.82,997,283,4.1000000000000005 +2008,8,9,16,30,30.700000000000003,1.08,0.20700000000000002,0.62,97,478,251,0,15.100000000000001,97,478,0,251,71.19,0.16,3.1,38.86,998,297,3.8000000000000003 +2008,8,9,17,30,29,1.08,0.199,0.62,50,227,81,1,15.200000000000001,50,227,0,81,82.15,0.16,3.1,43.24,998,308,3.2 +2008,8,9,18,30,27.3,1.1,0.182,0.62,0,0,0,0,15.600000000000001,0,0,0,0,92.81,0.16,2.9000000000000004,48.74,999,321,2.8000000000000003 +2008,8,9,19,30,26.1,1.12,0.157,0.62,0,0,0,0,15.700000000000001,0,0,0,0,102.55,0.16,2.7,52.63,1000,339,2.8000000000000003 +2008,8,9,20,30,25,1.1500000000000001,0.134,0.62,0,0,0,0,15.5,0,0,0,0,111.02,0.16,2.6,55.44,1000,182,2.7 +2008,8,9,21,30,24.200000000000003,1.17,0.11900000000000001,0.62,0,0,0,0,15.200000000000001,0,0,0,0,117.60000000000001,0.16,2.4000000000000004,57.35,1000,26,2.4000000000000004 +2008,8,9,22,30,23.6,1.16,0.114,0.62,0,0,0,0,15.200000000000001,0,0,0,0,121.62,0.16,2.4000000000000004,59.24,1000,49,1.9000000000000001 +2008,8,9,23,30,23.1,1.1300000000000001,0.114,0.62,0,0,0,0,15.4,0,0,0,0,122.5,0.16,2.4000000000000004,62.06,1000,68,1.6 +2008,8,10,0,30,22.700000000000003,1.09,0.117,0.62,0,0,0,0,15.8,0,0,0,0,120.10000000000001,0.16,2.4000000000000004,65.24,1000,82,1.5 +2008,8,10,1,30,22.3,1.06,0.121,0.62,0,0,0,0,16.2,0,0,0,0,114.79,0.16,2.4000000000000004,68.57000000000001,1000,88,1.4000000000000001 +2008,8,10,2,30,21.900000000000002,1.04,0.123,0.62,0,0,0,0,16.6,0,0,0,0,107.24000000000001,0.16,2.3000000000000003,71.79,1001,87,1.3 +2008,8,10,3,30,21.700000000000003,1.05,0.126,0.62,0,0,0,0,16.5,0,0,0,0,98.11,0.16,2.2,72.33,1001,79,1.4000000000000001 +2008,8,10,4,30,22.6,1.06,0.117,0.62,17,97,21,0,16.1,17,97,0,21,87.68,0.16,2.1,66.58,1001,73,1.9000000000000001 +2008,8,10,5,30,24.900000000000002,1.09,0.109,0.62,60,495,171,0,15.3,60,495,0,171,77.07000000000001,0.16,2,55.29,1001,79,2.1 +2008,8,10,6,30,27.400000000000002,1.1500000000000001,0.089,0.62,78,709,366,0,13.8,78,709,0,366,65.99,0.16,1.9000000000000001,43.15,1002,86,1.2000000000000002 +2008,8,10,7,30,29.5,1.2,0.084,0.62,90,814,557,0,12.700000000000001,90,814,0,557,54.910000000000004,0.16,1.8,35.550000000000004,1002,188,0.6000000000000001 +2008,8,10,8,30,31,1.25,0.079,0.62,97,874,722,0,11,97,874,0,722,44.29,0.16,1.8,29.23,1002,279,1 +2008,8,10,9,30,32,1.27,0.077,0.62,102,908,846,0,10.100000000000001,102,908,0,846,34.89,0.16,1.8,26.07,1001,261,2 +2008,8,10,10,30,32.7,1.31,0.081,0.62,107,921,918,0,9.9,107,921,0,918,28.26,0.16,1.8,24.64,1001,254,3 +2008,8,10,11,30,33,1.36,0.082,0.62,107,921,930,0,10.100000000000001,107,921,0,930,26.69,0.16,1.9000000000000001,24.52,1001,251,3.9000000000000004 +2008,8,10,12,30,32.800000000000004,1.29,0.085,0.62,107,906,884,0,10.5,107,906,0,884,30.990000000000002,0.16,2,25.580000000000002,1000,251,4.5 +2008,8,10,13,30,32.4,1.26,0.089,0.62,104,879,785,0,11,104,879,0,785,39.21,0.16,2,26.990000000000002,1000,253,4.800000000000001 +2008,8,10,14,30,31.700000000000003,1.24,0.09,0.62,96,833,639,0,11.3,96,833,0,639,49.34,0.16,2.1,28.59,1000,256,4.800000000000001 +2008,8,10,15,30,30.900000000000002,1.23,0.08600000000000001,0.62,83,765,462,0,11.3,83,765,0,462,60.26,0.16,2.1,29.92,1000,260,4.6000000000000005 +2008,8,10,16,30,29.6,1.23,0.081,0.62,65,644,270,0,11.200000000000001,65,644,0,270,71.4,0.16,2.1,32.1,1000,260,4.1000000000000005 +2008,8,10,17,30,27.400000000000002,1.23,0.076,0.62,36,395,89,0,11.9,36,395,0,89,82.37,0.16,2.1,38.19,1000,258,3.4000000000000004 +2008,8,10,18,30,25.5,1.23,0.07200000000000001,0.62,0,0,0,0,13.600000000000001,0,0,0,0,93.05,0.16,2.2,47.86,1000,259,2.6 +2008,8,10,19,30,24.3,1.22,0.07,0.62,0,0,0,0,15.3,0,0,0,0,102.81,0.16,2.2,57.230000000000004,1001,262,1.8 +2008,8,10,20,30,23.6,1.2,0.07,0.62,0,0,0,0,16.400000000000002,0,0,0,0,111.29,0.16,2.3000000000000003,64.07000000000001,1001,265,1.2000000000000002 +2008,8,10,21,30,23.3,1.19,0.07100000000000001,0.62,0,0,0,0,17,0,0,0,0,117.89,0.16,2.3000000000000003,67.68,1001,265,0.9 +2008,8,10,22,30,23.200000000000003,1.19,0.07200000000000001,0.62,0,0,0,0,17.2,0,0,0,0,121.92,0.16,2.3000000000000003,69.09,1001,258,0.8 +2008,8,10,23,30,23.3,1.2,0.073,0.62,0,0,0,0,17.3,0,0,0,0,122.79,0.16,2.3000000000000003,69.16,1000,243,0.6000000000000001 +2008,8,11,0,30,23.200000000000003,1.21,0.075,0.62,0,0,0,0,17.400000000000002,0,0,0,0,120.37,0.16,2.4000000000000004,69.84,1000,195,0.4 +2008,8,11,1,30,22.6,1.23,0.076,0.62,0,0,0,0,17.400000000000002,0,0,0,0,115.04,0.16,2.4000000000000004,72.36,1000,135,0.5 +2008,8,11,2,30,21.8,1.25,0.078,0.62,0,0,0,0,17.2,0,0,0,0,107.46000000000001,0.16,2.4000000000000004,75.2,1000,111,0.7000000000000001 +2008,8,11,3,30,21.400000000000002,1.26,0.079,0.62,0,0,0,0,16.900000000000002,0,0,0,0,98.31,0.16,2.4000000000000004,75.58,1000,109,1 +2008,8,11,4,30,22.6,1.27,0.08,0.62,14,137,19,0,16.6,14,137,0,19,87.84,0.16,2.5,68.96000000000001,1000,110,1.6 +2008,8,11,5,30,25.200000000000003,1.28,0.082,0.62,52,525,168,0,16.3,52,525,0,168,77.23,0.16,2.5,57.84,1000,117,1.7000000000000002 +2008,8,11,6,30,28,1.3,0.082,0.62,73,704,358,0,15.4,73,704,0,358,66.14,0.16,2.5,46.160000000000004,1000,164,0.8 +2008,8,11,7,30,30.400000000000002,1.32,0.083,0.62,87,800,545,0,13.200000000000001,87,800,0,545,55.07,0.16,2.4000000000000004,34.96,1000,229,0.7000000000000001 +2008,8,11,8,30,32,1.34,0.084,0.62,97,855,707,0,12.5,97,855,0,707,44.47,0.16,2.4000000000000004,30.5,1000,251,1.5 +2008,8,11,9,30,32.9,1.37,0.085,0.62,103,887,829,0,12.4,103,887,1,829,35.11,0.16,2.4000000000000004,28.78,1000,250,2.2 +2008,8,11,10,30,33.5,1.3800000000000001,0.08700000000000001,0.62,107,902,900,0,12.3,107,902,0,900,28.53,0.16,2.4000000000000004,27.62,999,248,2.9000000000000004 +2008,8,11,11,30,33.7,1.3800000000000001,0.09,0.62,110,903,914,0,12.100000000000001,110,903,0,914,26.990000000000002,0.16,2.4000000000000004,27.02,999,246,3.5 +2008,8,11,12,30,33.5,1.3800000000000001,0.094,0.62,109,892,872,0,12,109,892,0,872,31.27,0.16,2.3000000000000003,27.11,999,245,4 +2008,8,11,13,30,32.9,1.36,0.097,0.62,106,866,775,0,11.9,106,866,0,775,39.46,0.16,2.3000000000000003,27.79,999,246,4.3 +2008,8,11,14,30,31.900000000000002,1.34,0.099,0.62,99,820,631,0,11.700000000000001,99,820,0,631,49.57,0.16,2.3000000000000003,29.16,999,248,4.5 +2008,8,11,15,30,30.700000000000003,1.31,0.1,0.62,87,744,454,0,11.8,87,744,0,454,60.480000000000004,0.16,2.3000000000000003,31.29,999,250,4.3 +2008,8,11,16,30,29.1,1.29,0.099,0.62,69,616,263,0,12,69,616,0,263,71.62,0.16,2.2,34.72,999,253,3.6 +2008,8,11,17,30,26.8,1.26,0.095,0.62,38,356,84,0,12.5,38,356,0,84,82.59,0.16,2.2,41.26,1000,256,2.4000000000000004 +2008,8,11,18,30,24.900000000000002,1.24,0.091,0.62,0,0,0,0,14.3,0,0,0,0,93.28,0.16,2.2,51.71,1000,258,1.5 +2008,8,11,19,30,24,1.22,0.08700000000000001,0.62,0,0,0,0,15.4,0,0,0,0,103.06,0.16,2.2,58.67,1000,256,1.1 +2008,8,11,20,30,23.6,1.19,0.08600000000000001,0.62,0,0,0,0,16.400000000000002,0,0,0,0,111.56,0.16,2.2,63.97,1000,255,0.7000000000000001 +2008,8,11,21,30,23.400000000000002,1.16,0.08700000000000001,0.62,0,0,0,0,17.1,0,0,0,0,118.18,0.16,2.2,67.59,1000,290,0.4 +2008,8,11,22,30,23,1.1400000000000001,0.092,0.62,0,0,0,0,17.3,0,0,0,0,122.22,0.16,2.3000000000000003,70.24,1000,190,0.4 +2008,8,11,23,30,22.5,1.1300000000000001,0.10200000000000001,0.62,0,0,0,0,17.1,0,0,0,0,123.09,0.16,2.3000000000000003,71.44,999,65,0.7000000000000001 +2008,8,12,0,30,22,1.1400000000000001,0.108,0.62,0,0,0,0,16.6,0,0,0,0,120.65,0.16,2.4000000000000004,71.51,999,80,0.9 +2008,8,12,1,30,21.700000000000003,1.1300000000000001,0.108,0.62,0,0,0,0,16,0,0,0,0,115.28,0.16,2.4000000000000004,69.9,999,90,1 +2008,8,12,2,30,21.5,1.1300000000000001,0.109,0.62,0,0,0,0,15.3,0,0,0,0,107.68,0.16,2.5,67.59,999,100,1.1 +2008,8,12,3,30,21.400000000000002,1.12,0.113,0.62,0,0,0,0,14.5,0,0,0,0,98.5,0.16,2.5,64.72,1000,111,1.1 +2008,8,12,4,30,22.700000000000003,1.11,0.11900000000000001,0.62,14,80,17,0,13.8,14,80,0,17,88,0.16,2.6,57.050000000000004,1000,123,1.4000000000000001 +2008,8,12,5,30,25.400000000000002,1.1,0.125,0.62,61,450,159,0,13.3,61,450,0,159,77.39,0.16,2.8000000000000003,47.14,1000,147,1.9000000000000001 +2008,8,12,6,30,27.700000000000003,1.09,0.13,0.62,89,635,344,0,12.100000000000001,89,635,0,344,66.3,0.16,2.9000000000000004,37.89,1001,176,2.2 +2008,8,12,7,30,29.5,1.08,0.135,0.62,108,733,526,0,11.700000000000001,108,733,0,526,55.24,0.16,3,33.43,1001,194,2.5 +2008,8,12,8,30,30.900000000000002,1.09,0.138,0.62,121,792,685,0,12,121,792,0,685,44.660000000000004,0.16,3.1,31.29,1001,204,3 +2008,8,12,9,30,32,1.07,0.14100000000000001,0.62,131,825,803,0,12.3,131,825,0,803,35.34,0.16,3.2,29.990000000000002,1001,209,3.4000000000000004 +2008,8,12,10,30,32.7,1.09,0.14100000000000001,0.62,135,843,874,0,12.4,135,843,0,874,28.810000000000002,0.16,3.2,29.12,1001,212,3.8000000000000003 +2008,8,12,11,30,32.9,1.1,0.139,0.62,134,847,886,0,12.5,134,847,0,886,27.29,0.16,3.3000000000000003,29.05,1001,213,4.1000000000000005 +2008,8,12,12,30,32.800000000000004,1.1,0.134,0.62,129,840,845,7,12.700000000000001,281,512,0,717,31.55,0.16,3.3000000000000003,29.45,1001,215,4.3 +2008,8,12,13,30,32.4,1.1,0.132,0.62,122,815,749,0,12.700000000000001,122,815,0,749,39.72,0.16,3.3000000000000003,30.22,1001,215,4.2 +2008,8,12,14,30,31.700000000000003,1.1,0.129,0.62,111,771,609,0,12.700000000000001,111,771,0,609,49.81,0.16,3.2,31.400000000000002,1001,215,4 +2008,8,12,15,30,30.6,1.09,0.126,0.62,97,694,436,7,12.9,208,301,0,355,60.71,0.16,3.2,33.76,1000,211,3.5 +2008,8,12,16,30,29.1,1.1,0.124,0.62,75,558,249,0,13.200000000000001,75,558,0,249,71.85000000000001,0.16,3.1,37.62,1000,205,2.9000000000000004 +2008,8,12,17,30,27.200000000000003,1.11,0.12,0.62,39,292,76,0,13.9,39,292,0,76,82.82000000000001,0.16,3,44.06,1000,197,2 +2008,8,12,18,30,25.6,1.1400000000000001,0.113,0.62,0,0,0,0,15.4,0,0,0,0,93.53,0.16,3,53.230000000000004,1001,189,1.5 +2008,8,12,19,30,24.8,1.16,0.106,0.62,0,0,0,0,16.3,0,0,0,0,103.32000000000001,0.16,2.9000000000000004,59.15,1001,180,1.3 +2008,8,12,20,30,24.200000000000003,1.17,0.10200000000000001,0.62,0,0,0,0,17.1,0,0,0,0,111.84,0.16,2.8000000000000003,64.47,1001,168,1.2000000000000002 +2008,8,12,21,30,23.700000000000003,1.19,0.1,0.62,0,0,0,0,17.6,0,0,0,0,118.48,0.16,2.7,68.64,1001,157,1.2000000000000002 +2008,8,12,22,30,23.200000000000003,1.2,0.099,0.62,0,0,0,0,17.8,0,0,0,0,122.52,0.16,2.6,71.62,1001,150,1.3 +2008,8,12,23,30,22.8,1.2,0.1,0.62,0,0,0,0,17.8,0,0,0,0,123.39,0.16,2.6,73.39,1001,148,1.4000000000000001 +2008,8,13,0,30,22.400000000000002,1.22,0.101,0.62,0,0,0,0,17.8,0,0,0,0,120.92,0.16,2.6,75.02,1001,149,1.5 +2008,8,13,1,30,22.1,1.23,0.10200000000000001,0.62,0,0,0,0,17.8,0,0,0,0,115.53,0.16,2.6,76.59,1001,149,1.5 +2008,8,13,2,30,21.900000000000002,1.26,0.105,0.62,0,0,0,0,17.900000000000002,0,0,0,0,107.9,0.16,2.6,77.88,1001,147,1.6 +2008,8,13,3,30,21.900000000000002,1.28,0.107,0.62,0,0,0,0,17.900000000000002,0,0,0,0,98.69,0.16,2.6,78.04,1002,144,1.6 +2008,8,13,4,30,23.400000000000002,1.29,0.109,0.62,13,90,16,0,17.900000000000002,13,90,0,16,88.17,0.16,2.6,71.07000000000001,1002,144,2.2 +2008,8,13,5,30,25.8,1.3,0.11,0.62,56,476,159,0,17.900000000000002,56,476,0,159,77.55,0.16,2.6,61.85,1002,153,3 +2008,8,13,6,30,27.900000000000002,1.42,0.1,0.62,78,679,349,0,18.1,78,679,0,349,66.46000000000001,0.16,2.6,55.120000000000005,1003,167,3.4000000000000004 +2008,8,13,7,30,29.700000000000003,1.46,0.092,0.62,90,784,535,0,17.2,90,784,0,535,55.410000000000004,0.16,2.7,46.94,1003,180,3.5 +2008,8,13,8,30,31.3,1.48,0.08700000000000001,0.62,98,846,698,0,16.2,98,846,0,698,44.84,0.16,2.7,40.15,1003,191,3.7 +2008,8,13,9,30,32.4,1.45,0.084,0.62,103,881,819,0,15.5,103,881,0,819,35.56,0.16,2.7,36.08,1003,199,3.8000000000000003 +2008,8,13,10,30,33.1,1.43,0.081,0.62,105,900,891,0,15.100000000000001,105,900,0,891,29.080000000000002,0.16,2.7,33.94,1003,205,4 +2008,8,13,11,30,33.4,1.4000000000000001,0.08,0.62,105,903,905,0,15,105,903,0,905,27.6,0.16,2.7,33.21,1003,210,4 +2008,8,13,12,30,33.300000000000004,1.34,0.08,0.62,104,893,863,0,15.100000000000001,104,893,0,863,31.85,0.16,2.7,33.43,1003,214,4 +2008,8,13,13,30,32.9,1.31,0.076,0.62,97,875,767,0,15,97,875,0,767,39.980000000000004,0.16,2.6,34.05,1003,217,3.8000000000000003 +2008,8,13,14,30,32.300000000000004,1.29,0.073,0.62,88,835,625,0,14.8,88,835,0,625,50.050000000000004,0.16,2.6,34.89,1003,218,3.5 +2008,8,13,15,30,31.3,1.27,0.07200000000000001,0.62,77,764,448,0,14.8,77,764,0,448,60.94,0.16,2.6,36.81,1003,218,3.1 +2008,8,13,16,30,29.8,1.25,0.07200000000000001,0.62,61,632,256,0,15.100000000000001,61,632,0,256,72.08,0.16,2.7,40.82,1003,217,2.4000000000000004 +2008,8,13,17,30,27.5,1.24,0.07200000000000001,0.62,34,365,78,0,15.8,34,365,0,78,83.05,0.16,2.7,48.9,1003,220,1.6 +2008,8,13,18,30,25.700000000000003,1.21,0.075,0.62,0,0,0,0,17,0,0,0,0,93.78,0.16,2.7,58.550000000000004,1004,227,1.2000000000000002 +2008,8,13,19,30,25,1.18,0.079,0.62,0,0,0,0,18,0,0,0,0,103.59,0.16,2.7,65.01,1004,235,1 +2008,8,13,20,30,24.5,1.1300000000000001,0.08600000000000001,0.62,0,0,0,0,18.8,0,0,0,0,112.13,0.16,2.7,70.71000000000001,1004,249,0.7000000000000001 +2008,8,13,21,30,24.3,1.06,0.095,0.62,0,0,0,0,19.3,0,0,0,0,118.78,0.16,2.6,73.7,1004,276,0.4 +2008,8,13,22,30,24.200000000000003,0.98,0.108,0.62,0,0,0,0,19.5,0,0,0,0,122.83,0.16,2.6,74.93,1004,323,0.4 +2008,8,13,23,30,23.8,0.91,0.123,0.62,0,0,0,0,19.5,0,0,0,0,123.69,0.16,2.6,76.8,1004,192,0.4 +2008,8,14,0,30,23.400000000000002,0.87,0.133,0.62,0,0,0,0,19.400000000000002,0,0,0,0,121.21000000000001,0.16,2.7,78.10000000000001,1004,46,0.6000000000000001 +2008,8,14,1,30,23,0.88,0.132,0.62,0,0,0,0,19,0,0,0,0,115.79,0.16,2.7,78.31,1004,68,0.8 +2008,8,14,2,30,22.900000000000002,0.93,0.125,0.62,0,0,0,0,18.400000000000002,0,0,0,0,108.12,0.16,2.8000000000000003,75.76,1004,81,0.9 +2008,8,14,3,30,22.900000000000002,0.96,0.124,0.62,0,0,0,0,17.7,0,0,0,0,98.89,0.16,2.8000000000000003,72.55,1004,92,0.9 +2008,8,14,4,30,24,0.98,0.124,0.62,12,54,14,0,17.1,12,54,0,14,88.33,0.16,2.9000000000000004,65.15,1004,102,1 +2008,8,14,5,30,26.3,1,0.123,0.62,59,438,152,0,16.5,59,438,0,152,77.72,0.16,2.9000000000000004,54.74,1004,125,1.1 +2008,8,14,6,30,28.8,1.18,0.106,0.62,80,660,342,0,15.9,80,660,0,342,66.63,0.16,2.9000000000000004,45.57,1004,164,1.2000000000000002 +2008,8,14,7,30,31.1,1.19,0.105,0.62,96,764,528,0,15.5,96,764,0,528,55.58,0.16,2.9000000000000004,39.04,1004,198,1.7000000000000002 +2008,8,14,8,30,32.800000000000004,1.06,0.11800000000000001,0.62,113,812,687,0,15.4,113,812,0,687,45.03,0.16,2.8000000000000003,35.15,1004,216,2.4000000000000004 +2008,8,14,9,30,33.7,0.89,0.14200000000000002,0.62,133,827,803,0,15.700000000000001,133,827,0,803,35.79,0.16,2.8000000000000003,34.18,1004,224,3 +2008,8,14,10,30,34.1,0.74,0.17500000000000002,0.62,154,816,865,0,16.3,154,816,0,865,29.36,0.16,2.9000000000000004,34.61,1004,225,3.5 +2008,8,14,11,30,34.2,0.61,0.21,0.62,173,791,872,0,16.7,173,791,0,872,27.91,0.16,2.9000000000000004,35.27,1003,225,3.7 +2008,8,14,12,30,33.9,0.65,0.188,0.62,159,794,832,0,17,159,794,0,832,32.14,0.16,3,36.56,1003,223,3.8000000000000003 +2008,8,14,13,30,33.4,0.56,0.22,0.62,167,735,728,0,17.2,167,735,0,728,40.25,0.16,3,38.09,1003,221,3.7 +2008,8,14,14,30,32.6,0.5,0.249,0.62,164,650,579,0,17.3,164,650,0,579,50.29,0.16,3.1,40.22,1002,217,3.5 +2008,8,14,15,30,31.5,0.5,0.25,0.62,142,550,407,0,17.5,142,550,0,407,61.17,0.16,3.1,43.22,1002,210,3.2 +2008,8,14,16,30,30,0.46,0.278,0.62,111,354,219,0,17.8,111,354,0,219,72.31,0.16,3.1,48.01,1002,203,2.7 +2008,8,14,17,30,27.900000000000002,0.41000000000000003,0.335,0.62,46,63,54,0,18.3,46,63,0,54,83.29,0.16,3.2,56.03,1002,199,1.9000000000000001 +2008,8,14,18,30,26.5,0.38,0.402,0.62,0,0,0,0,19.3,0,0,0,0,94.03,0.16,3.3000000000000003,64.52,1002,188,1.5 +2008,8,14,19,30,25.8,0.38,0.442,0.62,0,0,0,0,20.1,0,0,0,0,103.85000000000001,0.16,3.3000000000000003,70.73,1002,172,1.5 +2008,8,14,20,30,25.200000000000003,0.37,0.397,0.62,0,0,0,0,20.6,0,0,0,0,112.41,0.16,3.2,75.57000000000001,1002,168,1.6 +2008,8,14,21,30,24.6,0.39,0.34600000000000003,0.62,0,0,0,0,20.8,0,0,0,0,119.08,0.16,3.2,79.63,1002,166,1.6 +2008,8,14,22,30,24.200000000000003,0.41000000000000003,0.338,0.62,0,0,0,0,21,0,0,0,0,123.15,0.16,3.3000000000000003,82.18,1001,161,1.7000000000000002 +2008,8,14,23,30,23.900000000000002,0.41000000000000003,0.35100000000000003,0.62,0,0,0,0,21,0,0,0,0,124,0.16,3.3000000000000003,84.05,1001,159,1.9000000000000001 +2008,8,15,0,30,23.6,0.4,0.37,0.62,0,0,0,0,21.1,0,0,0,0,121.49000000000001,0.16,3.2,85.88,1000,158,1.9000000000000001 +2008,8,15,1,30,23.3,0.38,0.387,0.62,0,0,0,0,21.200000000000003,0,0,0,0,116.04,0.16,3.2,87.94,1000,157,1.9000000000000001 +2008,8,15,2,30,23.1,0.39,0.398,0.62,0,0,0,0,21.3,0,0,0,0,108.34,0.16,3.2,89.46000000000001,999,152,1.9000000000000001 +2008,8,15,3,30,23,0.41000000000000003,0.404,0.62,0,0,0,0,21.3,0,0,0,0,99.09,0.16,3.2,90.06,999,144,2.1 +2008,8,15,4,30,24.1,0.45,0.401,0.62,4,0,4,0,21.1,4,0,0,4,88.5,0.16,3.3000000000000003,83.13,999,140,2.9000000000000004 +2008,8,15,5,30,26.200000000000003,0.49,0.396,0.62,92,156,125,0,20.700000000000003,92,156,0,125,77.88,0.16,3.4000000000000004,71.75,998,147,3.9000000000000004 +2008,8,15,6,30,28.3,0.51,0.378,0.62,155,370,300,0,20.400000000000002,155,370,0,300,66.79,0.16,3.4000000000000004,62.160000000000004,998,157,4.5 +2008,8,15,7,30,30.200000000000003,0.53,0.35100000000000003,0.62,186,522,480,7,19.400000000000002,289,149,0,373,55.75,0.16,3.5,52.45,997,169,5 +2008,8,15,8,30,31.5,0.54,0.34400000000000003,0.62,208,609,637,3,18.8,407,90,0,471,45.230000000000004,0.16,3.6,46.88,997,182,5.5 +2008,8,15,9,30,31.700000000000003,0.67,0.28200000000000003,0.62,195,704,764,7,19,375,238,0,568,36.02,0.16,3.7,47.04,997,191,5.800000000000001 +2008,8,15,10,30,31.400000000000002,0.68,0.292,0.62,208,721,834,3,19.6,488,124,0,596,29.650000000000002,0.16,3.7,49.75,996,196,5.7 +2008,8,15,11,30,31.1,0.7000000000000001,0.292,0.62,208,726,848,3,19.900000000000002,438,62,0,493,28.23,0.16,3.7,51.52,996,201,5.5 +2008,8,15,12,30,31,0.98,0.169,0.62,147,807,828,0,19.6,147,807,0,828,32.44,0.16,3.6,50.68,996,211,5.5 +2008,8,15,13,30,30.6,0.9500000000000001,0.219,0.62,161,741,724,1,18.6,161,741,0,724,40.52,0.16,3.5,48.74,996,223,5.800000000000001 +2008,8,15,14,30,29.6,0.9500000000000001,0.26,0.62,163,656,580,7,17.400000000000002,291,76,0,339,50.54,0.16,3.3000000000000003,47.97,996,235,6.2 +2008,8,15,15,30,28,0.98,0.316,0.62,154,518,402,0,16.900000000000002,154,518,0,402,61.410000000000004,0.16,3.2,50.92,996,247,6.7 +2008,8,15,16,30,26.1,1.04,0.369,0.62,120,326,218,4,17.5,9,0,0,9,72.55,0.16,2.9000000000000004,58.97,996,255,7.1000000000000005 +2008,8,15,17,30,24.3,1.07,0.352,0.62,46,101,58,3,17.8,32,0,7,32,83.53,0.16,2.5,67.1,996,259,6.800000000000001 +2008,8,15,18,30,23,1.12,0.292,0.62,0,0,0,1,16.8,0,0,0,0,94.28,0.16,2,68.31,997,260,6.300000000000001 +2008,8,15,19,30,22.1,1.16,0.266,0.62,0,0,0,0,15.100000000000001,0,0,0,0,104.13,0.16,1.9000000000000001,64.55,997,257,5.5 +2008,8,15,20,30,21.400000000000002,1.1,0.275,0.62,0,0,0,0,14.4,0,0,0,0,112.71000000000001,0.16,2,64.31,997,252,4.6000000000000005 +2008,8,15,21,30,21.1,0.97,0.28700000000000003,0.62,0,0,0,0,14.5,0,0,0,0,119.39,0.16,2,66.01,996,247,3.8000000000000003 +2008,8,15,22,30,21,0.92,0.28300000000000003,0.62,0,0,0,0,14.8,0,0,0,0,123.46000000000001,0.16,2.1,67.7,996,245,3.2 +2008,8,15,23,30,20.900000000000002,0.88,0.275,0.62,0,0,0,0,15,0,0,0,0,124.31,0.16,2.2,68.97,996,246,2.9000000000000004 +2008,8,16,0,30,20.8,0.8300000000000001,0.278,0.62,0,0,0,0,15.100000000000001,0,0,0,0,121.78,0.16,2.2,69.81,996,251,2.6 +2008,8,16,1,30,20.6,0.8,0.275,0.62,0,0,0,0,15.200000000000001,0,0,0,0,116.3,0.16,2.3000000000000003,71.29,996,260,2.2 +2008,8,16,2,30,20.400000000000002,0.85,0.256,0.62,0,0,0,0,15.3,0,0,0,0,108.57000000000001,0.16,2.3000000000000003,72.7,996,275,1.9000000000000001 +2008,8,16,3,30,20.1,0.97,0.227,0.62,0,0,0,0,15.3,0,0,0,0,99.29,0.16,2.2,73.89,996,292,1.8 +2008,8,16,4,30,20.700000000000003,1.12,0.193,0.62,10,25,11,0,15.100000000000001,10,25,0,11,88.66,0.16,2.2,70.47,997,306,2.4000000000000004 +2008,8,16,5,30,22.200000000000003,1.28,0.166,0.62,66,404,150,0,14.600000000000001,66,404,0,150,78.05,0.16,2.2,62.11,997,310,3.3000000000000003 +2008,8,16,6,30,23.900000000000002,1.42,0.152,0.62,94,627,340,0,12.9,94,627,0,340,66.95,0.16,2.2,50.21,998,307,3.9000000000000004 +2008,8,16,7,30,25.700000000000003,1.46,0.17,0.62,120,720,523,0,12.100000000000001,120,720,0,523,55.92,0.16,2.3000000000000003,42.82,998,303,4.1000000000000005 +2008,8,16,8,30,27.1,1.47,0.18,0.62,137,776,682,0,11.9,137,776,0,682,45.42,0.16,2.4000000000000004,38.75,998,297,4.1000000000000005 +2008,8,16,9,30,28.3,1.55,0.133,0.62,126,848,810,0,11.700000000000001,126,848,0,810,36.26,0.16,2.5,35.83,998,291,4.1000000000000005 +2008,8,16,10,30,29.1,1.56,0.14300000000000002,0.62,135,859,879,0,11.700000000000001,135,859,0,879,29.94,0.16,2.5,34.18,998,284,4.3 +2008,8,16,11,30,29.5,1.55,0.147,0.62,137,860,893,2,11.8,487,171,0,637,28.55,0.16,2.5,33.480000000000004,998,278,4.4 +2008,8,16,12,30,29.6,1.58,0.112,0.62,119,872,852,0,11.8,119,872,0,852,32.75,0.16,2.6,33.410000000000004,998,274,4.6000000000000005 +2008,8,16,13,30,29.3,1.54,0.117,0.62,116,842,753,0,11.9,116,842,0,753,40.800000000000004,0.16,2.6,34.17,998,271,4.6000000000000005 +2008,8,16,14,30,28.700000000000003,1.48,0.117,0.62,107,794,609,0,12,107,794,0,609,50.800000000000004,0.16,2.6,35.59,998,269,4.6000000000000005 +2008,8,16,15,30,27.700000000000003,1.48,0.124,0.62,95,707,431,0,12.100000000000001,95,707,0,431,61.660000000000004,0.16,2.6,38.04,998,267,4.6000000000000005 +2008,8,16,16,30,26.200000000000003,1.51,0.136,0.62,76,550,238,0,12.3,76,550,0,238,72.79,0.16,2.6,42.1,999,267,4.4 +2008,8,16,17,30,24.400000000000002,1.47,0.128,0.62,36,272,66,0,12.8,36,272,0,66,83.77,0.16,2.6,48.49,999,267,4 +2008,8,16,18,30,23,1.43,0.108,0.62,0,0,0,0,13.600000000000001,0,0,0,0,94.54,0.16,2.5,55.480000000000004,999,270,3.3000000000000003 +2008,8,16,19,30,22.1,1.3800000000000001,0.094,0.62,0,0,0,0,14.100000000000001,0,0,0,0,104.4,0.16,2.5,60.59,1000,279,2.4000000000000004 +2008,8,16,20,30,21.400000000000002,1.31,0.094,0.62,0,0,0,3,14.5,0,0,0,0,113,0.16,2.5,64.63,1000,290,1.6 +2008,8,16,21,30,20.900000000000002,1.26,0.093,0.62,0,0,0,0,14.700000000000001,0,0,0,0,119.71000000000001,0.16,2.5,67.86,1001,306,1.1 +2008,8,16,22,30,20.6,1.24,0.08600000000000001,0.62,0,0,0,0,14.9,0,0,0,0,123.79,0.16,2.4000000000000004,70.03,1001,330,0.9 +2008,8,16,23,30,20.400000000000002,1.21,0.083,0.62,0,0,0,0,15,0,0,0,0,124.62,0.16,2.4000000000000004,71.38,1000,182,0.9 +2008,8,17,0,30,20,1.22,0.085,0.62,0,0,0,0,15.100000000000001,0,0,0,0,122.07000000000001,0.16,2.4000000000000004,73.3,1000,31,0.9 +2008,8,17,1,30,19.6,1.27,0.092,0.62,0,0,0,0,15,0,0,0,0,116.55,0.16,2.4000000000000004,74.99,1000,51,1 +2008,8,17,2,30,19.400000000000002,1.36,0.105,0.62,0,0,0,0,15,0,0,0,0,108.79,0.16,2.4000000000000004,75.52,1000,61,1 +2008,8,17,3,30,19.200000000000003,1.45,0.125,0.62,0,0,0,0,14.8,0,0,0,0,99.49000000000001,0.16,2.5,75.85000000000001,1000,66,0.9 +2008,8,17,4,30,20.3,1.5,0.153,0.62,10,48,11,7,14.700000000000001,5,0,7,5,88.82000000000001,0.16,2.4000000000000004,70.29,1001,68,0.9 +2008,8,17,5,30,22.400000000000002,1.56,0.17,0.62,64,404,147,7,14.4,57,3,0,58,78.22,0.16,2.4000000000000004,60.53,1001,191,0.7000000000000001 +2008,8,17,6,30,24.5,1.62,0.168,0.62,97,612,335,7,13.3,185,175,0,253,67.12,0.16,2.3000000000000003,49.7,1001,288,0.8 +2008,8,17,7,30,26.200000000000003,1.69,0.164,0.62,116,727,522,0,12.3,116,727,0,522,56.09,0.16,2.3000000000000003,42.04,1001,259,1.7000000000000002 +2008,8,17,8,30,27.5,1.74,0.176,0.62,134,784,683,0,11.8,134,784,0,683,45.62,0.16,2.3000000000000003,37.72,1001,257,2.5 +2008,8,17,9,30,28.5,1.73,0.298,0.62,190,744,788,0,11.600000000000001,190,744,0,788,36.5,0.16,2.3000000000000003,35.04,1002,257,3.2 +2008,8,17,10,30,29,1.6400000000000001,0.289,0.62,194,768,857,0,11.600000000000001,194,768,0,857,30.23,0.16,2.4000000000000004,34.04,1002,259,3.9000000000000004 +2008,8,17,11,30,29.200000000000003,1.55,0.268,0.62,188,780,871,0,11.9,188,780,0,871,28.87,0.16,2.5,34.27,1002,260,4.3 +2008,8,17,12,30,29.1,1.52,0.251,0.62,178,775,827,0,12.200000000000001,178,775,0,827,33.06,0.16,2.6,35.37,1002,262,4.4 +2008,8,17,13,30,28.8,1.52,0.219,0.62,157,765,733,0,12.600000000000001,157,765,0,733,41.08,0.16,2.6,36.76,1002,265,4.5 +2008,8,17,14,30,28.3,1.56,0.214,0.62,141,715,590,0,12.700000000000001,141,715,0,590,51.050000000000004,0.16,2.6,38.21,1002,269,4.4 +2008,8,17,15,30,27.5,1.58,0.20800000000000002,0.62,119,631,416,0,12.700000000000001,119,631,0,416,61.910000000000004,0.16,2.5,40.12,1002,273,4.3 +2008,8,17,16,30,26.200000000000003,1.6300000000000001,0.222,0.62,91,466,227,0,12.8,91,466,0,227,73.04,0.16,2.5,43.37,1002,277,3.8000000000000003 +2008,8,17,17,30,24.400000000000002,1.67,0.233,0.62,39,189,59,0,13.100000000000001,39,189,0,59,84.02,0.16,2.4000000000000004,49.34,1003,280,2.8000000000000003 +2008,8,17,18,30,22.900000000000002,1.6500000000000001,0.2,0.62,0,0,0,0,13.9,0,0,0,0,94.81,0.16,2.4000000000000004,56.99,1003,285,2 +2008,8,17,19,30,22,1.6300000000000001,0.17500000000000002,0.62,0,0,0,0,14.5,0,0,0,0,104.68,0.16,2.4000000000000004,62.300000000000004,1004,294,1.7000000000000002 +2008,8,17,20,30,21.400000000000002,1.61,0.157,0.62,0,0,0,0,14.9,0,0,0,0,113.3,0.16,2.4000000000000004,66.28,1004,307,1.4000000000000001 +2008,8,17,21,30,20.900000000000002,1.59,0.145,0.62,0,0,0,0,15,0,0,0,0,120.03,0.16,2.4000000000000004,69.11,1005,325,1.3 +2008,8,17,22,30,20.400000000000002,1.59,0.14,0.62,0,0,0,0,14.9,0,0,0,0,124.11,0.16,2.4000000000000004,70.83,1005,168,1.2000000000000002 +2008,8,17,23,30,19.900000000000002,1.59,0.14400000000000002,0.62,0,0,0,0,14.600000000000001,0,0,0,0,124.94,0.16,2.4000000000000004,71.62,1005,10,1.1 +2008,8,18,0,30,19.5,1.61,0.156,0.62,0,0,0,0,14.200000000000001,0,0,0,0,122.36,0.16,2.4000000000000004,71.3,1005,26,1.1 +2008,8,18,1,30,19.200000000000003,1.6400000000000001,0.17300000000000001,0.62,0,0,0,0,13.700000000000001,0,0,0,0,116.81,0.16,2.4000000000000004,70.32000000000001,1005,34,1.1 +2008,8,18,2,30,19,1.68,0.185,0.62,0,0,0,0,13.200000000000001,0,0,0,0,109.02,0.16,2.4000000000000004,69.13,1005,39,1.1 +2008,8,18,3,30,19,1.72,0.185,0.62,0,0,0,0,12.8,0,0,0,0,99.69,0.16,2.3000000000000003,67.08,1005,44,1.1 +2008,8,18,4,30,20.3,1.75,0.181,0.62,9,45,10,0,12.3,9,45,0,10,88.98,0.16,2.2,59.980000000000004,1006,48,1.3 +2008,8,18,5,30,23,1.77,0.179,0.62,64,403,145,0,11.8,64,403,0,145,78.38,0.16,2.2,49.42,1006,29,1.7000000000000002 +2008,8,18,6,30,25.6,1.87,0.163,0.62,95,624,336,0,11,95,624,0,336,67.29,0.16,2.1,40.050000000000004,1007,174,2 +2008,8,18,7,30,27.6,1.86,0.145,0.62,110,749,525,0,10.3,110,749,0,525,56.27,0.16,2.1,33.82,1007,328,2.4000000000000004 +2008,8,18,8,30,29.200000000000003,1.85,0.135,0.62,119,820,690,0,9.8,119,820,0,690,45.81,0.16,2.1,29.93,1007,311,2.8000000000000003 +2008,8,18,9,30,30.5,1.9100000000000001,0.145,0.62,130,850,811,0,9.8,130,850,0,811,36.74,0.16,2.1,27.740000000000002,1007,299,3.2 +2008,8,18,10,30,31.400000000000002,1.8900000000000001,0.14200000000000002,0.62,134,870,883,0,10,134,870,0,883,30.52,0.16,2.1,26.63,1006,291,3.7 +2008,8,18,11,30,31.900000000000002,1.87,0.139,0.62,133,875,897,0,10.100000000000001,133,875,0,897,29.2,0.16,2.1,26.1,1006,286,4.1000000000000005 +2008,8,18,12,30,32,1.92,0.152,0.62,136,856,850,0,10.200000000000001,136,856,0,850,33.37,0.16,2.1,26.240000000000002,1006,282,4.5 +2008,8,18,13,30,31.700000000000003,1.9000000000000001,0.147,0.62,127,831,751,0,10.5,127,831,0,751,41.36,0.16,2.1,27.080000000000002,1005,279,4.7 +2008,8,18,14,30,31,1.87,0.14300000000000002,0.62,115,782,604,0,10.700000000000001,115,782,0,604,51.32,0.16,2.2,28.72,1005,278,4.800000000000001 +2008,8,18,15,30,30,1.83,0.14100000000000001,0.62,99,700,426,0,11.200000000000001,99,700,0,426,62.160000000000004,0.16,2.2,31.3,1005,278,4.800000000000001 +2008,8,18,16,30,28.400000000000002,1.81,0.139,0.62,74,554,234,0,11.8,74,554,0,234,73.29,0.16,2.2,35.69,1005,278,4.4 +2008,8,18,17,30,26.1,1.8,0.137,0.62,34,264,60,0,12.8,34,264,0,60,84.27,0.16,2.3000000000000003,43.76,1006,279,3.6 +2008,8,18,18,30,24.200000000000003,1.78,0.135,0.62,0,0,0,0,14.200000000000001,0,0,0,0,95.08,0.16,2.3000000000000003,53.52,1006,287,2.7 +2008,8,18,19,30,23,1.78,0.132,0.62,0,0,0,0,15.200000000000001,0,0,0,0,104.97,0.16,2.3000000000000003,61.46,1007,301,1.9000000000000001 +2008,8,18,20,30,22.200000000000003,1.79,0.132,0.62,0,0,0,0,15.8,0,0,0,0,113.61,0.16,2.3000000000000003,67.19,1007,323,1.3 +2008,8,18,21,30,21.8,1.8,0.134,0.62,0,0,0,0,16,0,0,0,0,120.35000000000001,0.16,2.3000000000000003,69.47,1007,347,1.1 +2008,8,18,22,30,21.6,1.81,0.137,0.62,0,0,0,0,15.600000000000001,0,0,0,0,124.44,0.16,2.2,68.79,1006,188,1.1 +2008,8,18,23,30,21.6,1.82,0.137,0.62,0,0,0,0,14.9,0,0,0,0,125.26,0.16,2.2,65.88,1006,24,1.1 +2008,8,19,0,30,21.700000000000003,1.83,0.136,0.62,0,0,0,0,14.200000000000001,0,0,0,0,122.66,0.16,2.1,62.22,1006,38,1 +2008,8,19,1,30,21.8,1.84,0.135,0.62,0,0,0,0,13.5,0,0,0,0,117.08,0.16,2.1,59.07,1006,52,0.9 +2008,8,19,2,30,21.6,1.84,0.134,0.62,0,0,0,0,12.9,0,0,0,0,109.25,0.16,2.1,57.63,1006,70,0.8 +2008,8,19,3,30,21.400000000000002,1.85,0.133,0.62,0,0,0,0,12.5,0,0,1,0,99.89,0.16,2,56.88,1006,87,0.9 +2008,8,19,4,30,22.200000000000003,1.85,0.132,0.62,0,0,0,0,12.200000000000001,0,0,1,0,89.14,0.16,2,53.28,1006,98,1.1 +2008,8,19,5,30,24.5,1.85,0.13,0.62,57,458,148,0,12.3,57,458,0,148,78.55,0.16,2,46.54,1006,112,1.2000000000000002 +2008,8,19,6,30,27.5,1.99,0.14200000000000002,0.62,89,650,338,0,11.700000000000001,89,650,0,338,67.45,0.16,1.9000000000000001,37.39,1006,170,0.8 +2008,8,19,7,30,30,1.99,0.14,0.62,107,759,527,0,10.8,107,759,0,527,56.44,0.16,1.9000000000000001,30.490000000000002,1006,227,0.8 +2008,8,19,8,30,31.400000000000002,1.98,0.134,0.62,118,829,694,0,10.3,118,829,0,694,46.02,0.16,1.8,27.29,1006,239,1.5 +2008,8,19,9,30,32.4,2,0.161,0.62,137,847,813,0,10.4,137,847,0,813,36.980000000000004,0.16,1.8,25.97,1006,247,2.2 +2008,8,19,10,30,33.1,1.99,0.16,0.62,141,866,885,0,10.3,141,866,0,885,30.82,0.16,1.8,24.76,1005,252,2.9000000000000004 +2008,8,19,11,30,33.4,1.97,0.158,0.62,141,868,896,0,10.200000000000001,141,868,0,896,29.53,0.16,1.9000000000000001,24.12,1005,255,3.5 +2008,8,19,12,30,33.300000000000004,1.99,0.169,0.62,142,849,849,0,10.100000000000001,142,849,0,849,33.69,0.16,1.9000000000000001,24.14,1004,258,3.9000000000000004 +2008,8,19,13,30,32.9,1.97,0.164,0.62,133,822,747,0,10,133,822,0,747,41.65,0.16,2,24.6,1004,261,4.1000000000000005 +2008,8,19,14,30,32.2,1.94,0.161,0.62,121,770,599,0,10,121,770,0,599,51.59,0.16,2.1,25.48,1003,263,4.2 +2008,8,19,15,30,31,1.93,0.162,0.62,104,683,420,0,10.100000000000001,104,683,0,420,62.42,0.16,2.1,27.580000000000002,1003,265,4.1000000000000005 +2008,8,19,16,30,29.1,1.92,0.165,0.62,79,528,228,0,10.5,79,528,0,228,73.54,0.16,2.1,31.51,1003,267,3.6 +2008,8,19,17,30,26.5,1.9100000000000001,0.169,0.62,34,234,56,0,11.3,34,234,0,56,84.53,0.16,2.1,38.78,1004,272,2.7 +2008,8,19,18,30,24.5,1.9000000000000001,0.17300000000000001,0.62,0,0,0,0,12.8,0,0,0,0,95.35000000000001,0.16,2.1,48.230000000000004,1004,285,1.9000000000000001 +2008,8,19,19,30,23.3,1.8800000000000001,0.171,0.62,0,0,0,0,14,0,0,0,0,105.26,0.16,2.1,55.86,1004,309,1.4000000000000001 +2008,8,19,20,30,22.5,1.85,0.169,0.62,0,0,0,0,14.600000000000001,0,0,0,0,113.91,0.16,2,61.02,1004,341,1.2000000000000002 +2008,8,19,21,30,21.900000000000002,1.79,0.17,0.62,0,0,0,0,14.600000000000001,0,0,0,0,120.67,0.16,2,63.33,1004,192,1.2000000000000002 +2008,8,19,22,30,21.5,1.69,0.17500000000000002,0.62,0,0,0,0,14.100000000000001,0,0,0,0,124.77,0.16,2,62.81,1003,35,1.2000000000000002 +2008,8,19,23,30,21.200000000000003,1.55,0.183,0.62,0,0,0,0,13.4,0,0,0,0,125.58,0.16,2.1,61.01,1003,50,1.3 +2008,8,20,0,30,21.200000000000003,1.4000000000000001,0.191,0.62,0,0,0,0,12.600000000000001,0,0,0,0,122.96000000000001,0.16,2.2,58.09,1003,59,1.3 +2008,8,20,1,30,21.400000000000002,1.29,0.193,0.62,0,0,0,0,11.9,0,0,0,0,117.34,0.16,2.4000000000000004,54.75,1003,65,1.3 +2008,8,20,2,30,21.700000000000003,1.2,0.195,0.62,0,0,0,0,11.3,0,0,0,0,109.48,0.16,2.6,51.49,1003,70,1.1 +2008,8,20,3,30,22,1.1300000000000001,0.198,0.62,0,0,0,0,10.9,0,0,0,0,100.09,0.16,2.7,49.24,1003,81,1 +2008,8,20,4,30,23,1.11,0.203,0.62,0,0,0,0,10.8,0,0,0,0,89.3,0.16,2.7,45.980000000000004,1003,99,0.8 +2008,8,20,5,30,25.400000000000002,1.1500000000000001,0.212,0.62,69,325,133,0,11.3,69,325,0,133,78.72,0.16,2.7,41.31,1003,193,0.5 +2008,8,20,6,30,28.3,1.28,0.189,0.62,103,568,319,0,10.4,103,568,0,319,67.62,0.16,2.7,32.88,1004,284,1 +2008,8,20,7,30,30.400000000000002,1.36,0.189,0.62,126,691,506,0,10,126,691,0,506,56.620000000000005,0.16,2.6,28.35,1004,290,1.8 +2008,8,20,8,30,31.8,1.41,0.189,0.62,140,761,667,0,10.600000000000001,140,761,0,667,46.22,0.16,2.6,27.21,1004,284,2.2 +2008,8,20,9,30,32.800000000000004,1.53,0.157,0.62,136,828,796,0,11,136,828,0,796,37.22,0.16,2.5,26.36,1004,278,2.7 +2008,8,20,10,30,33.6,1.58,0.15,0.62,137,853,867,0,11.100000000000001,137,853,0,867,31.12,0.16,2.5,25.44,1004,273,3.3000000000000003 +2008,8,20,11,30,33.800000000000004,1.62,0.14300000000000002,0.62,135,863,884,0,11.3,135,863,0,884,29.86,0.16,2.4000000000000004,25.43,1004,270,4 +2008,8,20,12,30,33.7,1.71,0.131,0.62,127,861,841,0,11.4,127,861,0,841,34.01,0.16,2.4000000000000004,25.740000000000002,1003,269,4.6000000000000005 +2008,8,20,13,30,33.2,1.72,0.128,0.62,120,838,743,0,11.5,120,838,0,743,41.95,0.16,2.3000000000000003,26.6,1003,270,4.9 +2008,8,20,14,30,32.4,1.7,0.127,0.62,109,789,597,0,11.5,109,789,0,597,51.86,0.16,2.3000000000000003,27.96,1003,272,4.9 +2008,8,20,15,30,31.3,1.7,0.127,0.62,94,705,418,0,11.700000000000001,94,705,0,418,62.68,0.16,2.3000000000000003,30.04,1004,277,4.7 +2008,8,20,16,30,29.6,1.71,0.126,0.62,71,557,226,0,11.9,71,557,0,226,73.8,0.16,2.2,33.55,1004,281,3.9000000000000004 +2008,8,20,17,30,27.200000000000003,1.71,0.123,0.62,31,257,55,0,12.5,31,257,0,55,84.79,0.16,2.2,40.31,1004,285,2.8000000000000003 +2008,8,20,18,30,25.3,1.67,0.123,0.62,0,0,0,0,13.8,0,0,0,0,95.63,0.16,2.1,48.9,1005,295,2.1 +2008,8,20,19,30,24.400000000000002,1.68,0.122,0.62,0,0,0,0,14.600000000000001,0,0,0,0,105.55,0.16,2.1,54.230000000000004,1005,310,1.7000000000000002 +2008,8,20,20,30,23.700000000000003,1.68,0.122,0.62,0,0,0,0,15,0,0,0,0,114.23,0.16,2.1,58.07,1005,331,1.4000000000000001 +2008,8,20,21,30,23.200000000000003,1.69,0.123,0.62,0,0,0,0,14.8,0,0,0,0,121,0.16,2.1,59.050000000000004,1005,174,1.4000000000000001 +2008,8,20,22,30,22.900000000000002,1.7,0.124,0.62,0,0,0,0,13.9,0,0,0,0,125.11,0.16,2,57,1005,11,1.5 +2008,8,20,23,30,22.6,1.71,0.124,0.62,0,0,0,0,12.9,0,0,0,0,125.91,0.16,2,54.300000000000004,1005,20,1.5 +2008,8,21,0,30,22.400000000000002,1.72,0.123,0.62,0,0,0,0,11.9,0,0,0,0,123.26,0.16,2,51.46,1005,23,1.6 +2008,8,21,1,30,22.3,1.73,0.12,0.62,0,0,0,0,11,0,0,0,0,117.60000000000001,0.16,1.9000000000000001,48.79,1004,23,1.6 +2008,8,21,2,30,22.1,1.74,0.11800000000000001,0.62,0,0,0,0,10.4,0,0,0,0,109.71000000000001,0.16,1.9000000000000001,47.33,1004,24,1.7000000000000002 +2008,8,21,3,30,21.900000000000002,1.75,0.11800000000000001,0.62,0,0,0,0,10.100000000000001,0,0,0,0,100.29,0.16,1.9000000000000001,46.92,1005,27,1.7000000000000002 +2008,8,21,4,30,23.200000000000003,1.75,0.11800000000000001,0.62,0,0,0,0,10,0,0,0,0,89.46000000000001,0.16,1.9000000000000001,43.26,1005,32,1.8 +2008,8,21,5,30,26.1,1.75,0.11800000000000001,0.62,55,466,144,0,10.3,55,466,0,144,78.9,0.16,1.8,37.11,1005,32,2 +2008,8,21,6,30,29.3,1.9100000000000001,0.114,0.62,81,676,337,0,10.3,81,676,0,337,67.79,0.16,1.8,30.68,1006,186,1.9000000000000001 +2008,8,21,7,30,32,1.9100000000000001,0.115,0.62,99,781,527,0,10.200000000000001,99,781,0,527,56.800000000000004,0.16,1.8,26.240000000000002,1006,330,1.9000000000000001 +2008,8,21,8,30,33.5,1.9100000000000001,0.115,0.62,110,845,693,0,9.3,110,845,0,693,46.42,0.16,1.7000000000000002,22.6,1006,305,2.2 +2008,8,21,9,30,34.5,1.97,0.11800000000000001,0.62,119,879,816,0,8.700000000000001,119,879,0,816,37.47,0.16,1.7000000000000002,20.52,1006,289,2.6 +2008,8,21,10,30,35.1,1.98,0.12,0.62,124,895,887,0,8.4,124,895,0,887,31.43,0.16,1.7000000000000002,19.44,1005,281,3 +2008,8,21,11,30,35.300000000000004,1.98,0.12,0.62,124,898,900,0,8.4,124,898,0,900,30.2,0.16,1.7000000000000002,19.240000000000002,1005,277,3.4000000000000004 +2008,8,21,12,30,35.2,2,0.125,0.62,124,886,856,0,8.4,124,886,0,856,34.34,0.16,1.6,19.39,1005,275,3.7 +2008,8,21,13,30,34.800000000000004,1.99,0.13,0.62,120,855,753,0,8.5,120,855,0,753,42.25,0.16,1.6,19.91,1005,275,4 +2008,8,21,14,30,34.1,1.97,0.133,0.62,111,801,602,0,8.6,111,801,0,602,52.14,0.16,1.7000000000000002,20.91,1004,276,4.1000000000000005 +2008,8,21,15,30,33,1.95,0.133,0.62,96,715,421,0,9.1,96,715,0,421,62.940000000000005,0.16,1.7000000000000002,22.95,1004,277,4.2 +2008,8,21,16,30,31,1.94,0.134,0.62,72,558,225,0,9.9,72,558,0,225,74.06,0.16,1.8,27.11,1004,278,3.7 +2008,8,21,17,30,28.200000000000003,1.93,0.135,0.62,30,251,52,0,11.600000000000001,30,251,0,52,85.05,0.16,1.8,35.74,1005,283,2.8000000000000003 +2008,8,21,18,30,26.1,1.93,0.137,0.62,0,0,0,0,13.5,0,0,0,0,95.91,0.16,1.9000000000000001,45.82,1005,293,2.2 +2008,8,21,19,30,25.1,1.92,0.139,0.62,0,0,0,0,14.5,0,0,0,0,105.85000000000001,0.16,1.9000000000000001,51.75,1006,311,1.8 +2008,8,21,20,30,24.400000000000002,1.9000000000000001,0.14,0.62,0,0,0,0,14.8,0,0,0,0,114.54,0.16,1.9000000000000001,55.07,1006,332,1.4000000000000001 +2008,8,21,21,30,24,1.86,0.14100000000000001,0.62,0,0,0,0,14.600000000000001,0,0,0,0,121.33,0.16,2,55.7,1005,176,1.3 +2008,8,21,22,30,23.8,1.83,0.14,0.62,0,0,0,0,14,0,0,0,0,125.45,0.16,2,54.36,1005,18,1.2000000000000002 +2008,8,21,23,30,23.8,1.82,0.139,0.62,0,0,0,0,13.3,0,0,0,0,126.24000000000001,0.16,2,51.79,1005,39,1.2000000000000002 +2008,8,22,0,30,23.900000000000002,1.81,0.136,0.62,0,0,0,0,12.5,0,0,0,0,123.56,0.16,1.9000000000000001,48.78,1004,59,1 +2008,8,22,1,30,24.1,1.81,0.133,0.62,0,0,0,0,11.700000000000001,0,0,0,0,117.87,0.16,1.9000000000000001,45.910000000000004,1004,81,0.9 +2008,8,22,2,30,24,1.8,0.131,0.62,0,0,0,0,11.200000000000001,0,0,0,0,109.94,0.16,1.9000000000000001,44.49,1004,108,0.8 +2008,8,22,3,30,23.400000000000002,1.79,0.13,0.62,0,0,0,0,10.9,0,0,0,0,100.49000000000001,0.16,1.9000000000000001,45.4,1004,132,0.9 +2008,8,22,4,30,23.700000000000003,1.78,0.131,0.62,0,0,0,0,11.100000000000001,0,0,0,0,89.62,0.16,1.9000000000000001,45.01,1004,146,1.1 +2008,8,22,5,30,25.8,1.77,0.133,0.62,56,442,140,0,11.8,56,442,0,140,79.07000000000001,0.16,1.9000000000000001,41.79,1004,158,1.7000000000000002 +2008,8,22,6,30,28.700000000000003,1.86,0.129,0.62,85,655,331,0,11.8,85,655,0,331,67.96000000000001,0.16,1.9000000000000001,35.09,1005,178,2.3000000000000003 +2008,8,22,7,30,31,1.86,0.13,0.62,104,761,519,0,11.5,104,761,0,519,56.99,0.16,2,30.29,1005,194,2.9000000000000004 +2008,8,22,8,30,32.300000000000004,1.85,0.129,0.62,116,823,681,0,11.700000000000001,116,823,0,681,46.63,0.16,2.1,28.35,1005,201,3.5 +2008,8,22,9,30,33.1,1.86,0.127,0.62,122,859,801,0,12.100000000000001,122,859,0,801,37.72,0.16,2.2,27.97,1005,207,3.9000000000000004 +2008,8,22,10,30,33.4,1.8,0.129,0.62,127,873,869,0,12.600000000000001,127,873,0,869,31.73,0.16,2.3000000000000003,28.36,1004,214,4 +2008,8,22,11,30,33.5,1.76,0.131,0.62,129,872,880,0,13,129,872,0,880,30.54,0.16,2.4000000000000004,28.95,1004,220,4 +2008,8,22,12,30,33.2,1.73,0.127,0.62,124,863,834,0,13.3,124,863,0,834,34.67,0.16,2.4000000000000004,30.04,1004,224,3.9000000000000004 +2008,8,22,13,30,32.800000000000004,1.68,0.127,0.62,119,835,733,0,13.4,119,835,0,733,42.550000000000004,0.16,2.4000000000000004,30.96,1003,228,3.7 +2008,8,22,14,30,32.1,1.61,0.128,0.62,109,782,586,0,13.4,109,782,0,586,52.42,0.16,2.4000000000000004,32.17,1003,232,3.5 +2008,8,22,15,30,31,1.48,0.131,0.62,95,693,407,0,13.5,95,693,0,407,63.21,0.16,2.3000000000000003,34.4,1003,236,3.3000000000000003 +2008,8,22,16,30,29.200000000000003,1.31,0.14200000000000002,0.62,74,516,213,0,13.600000000000001,74,516,0,213,74.33,0.16,2.3000000000000003,38.550000000000004,1003,243,2.7 +2008,8,22,17,30,26.8,1.24,0.148,0.62,30,183,45,0,14.100000000000001,30,183,0,45,85.31,0.16,2.3000000000000003,45.53,1003,254,1.8 +2008,8,22,18,30,25,1.29,0.14400000000000002,0.62,0,0,0,0,14.700000000000001,0,0,0,0,96.19,0.16,2.3000000000000003,52.83,1003,267,1.3 +2008,8,22,19,30,24.3,1.24,0.154,0.62,0,0,0,0,15.3,0,0,0,0,106.15,0.16,2.3000000000000003,57.38,1003,280,1.1 +2008,8,22,20,30,23.900000000000002,1.02,0.194,0.62,0,0,0,0,15.9,0,0,0,0,114.86,0.16,2.5,60.97,1004,293,1.1 +2008,8,22,21,30,23.5,0.8200000000000001,0.23800000000000002,0.62,0,0,0,0,16.400000000000002,0,0,0,0,121.67,0.16,2.8000000000000003,64.38,1004,300,1 +2008,8,22,22,30,23.1,0.71,0.267,0.62,0,0,0,0,16.7,0,0,0,0,125.79,0.16,2.9000000000000004,67.32000000000001,1004,307,0.7000000000000001 +2008,8,22,23,30,22.700000000000003,0.68,0.28400000000000003,0.62,0,0,0,0,16.900000000000002,0,0,0,0,126.57000000000001,0.16,3,69.67,1003,181,0.30000000000000004 +2008,8,23,0,30,22.200000000000003,0.73,0.28300000000000003,0.62,0,0,0,0,16.900000000000002,0,0,0,0,123.86,0.16,3,71.8,1003,74,0.30000000000000004 +2008,8,23,1,30,21.700000000000003,0.84,0.272,0.62,0,0,0,0,16.8,0,0,0,0,118.14,0.16,2.9000000000000004,73.54,1002,109,0.5 +2008,8,23,2,30,21.3,0.89,0.272,0.62,0,0,0,0,16.7,0,0,0,0,110.17,0.16,3,74.91,1002,130,0.7000000000000001 +2008,8,23,3,30,21,0.89,0.278,0.62,0,0,0,0,16.6,0,0,0,0,100.7,0.16,3.1,76.06,1002,144,0.8 +2008,8,23,4,30,21.8,0.88,0.28600000000000003,0.62,0,0,0,0,16.8,0,0,0,0,89.77,0.16,3.1,73.05,1002,155,1.2000000000000002 +2008,8,23,5,30,23.8,0.9400000000000001,0.278,0.62,74,237,118,0,17,74,237,0,118,79.24,0.16,3.1,65.58,1002,171,1.7000000000000002 +2008,8,23,6,30,25.8,1.06,0.181,0.62,101,555,307,0,16.7,101,555,0,307,68.14,0.16,3.1,57.33,1003,191,2.1 +2008,8,23,7,30,27.700000000000003,1.06,0.183,0.62,124,674,490,0,16.5,124,674,0,490,57.17,0.16,3.2,50.46,1003,206,2.6 +2008,8,23,8,30,29.200000000000003,1.05,0.19,0.62,142,740,648,3,16.3,375,64,0,418,46.84,0.16,3.2,45.64,1002,216,3.2 +2008,8,23,9,30,30.200000000000003,1.04,0.201,0.62,157,774,767,4,16.2,95,0,0,95,37.980000000000004,0.16,3.2,42.96,1002,221,3.7 +2008,8,23,10,30,30.700000000000003,1.02,0.202,0.62,163,794,836,0,16.5,163,794,0,836,32.04,0.16,3.2,42.37,1002,223,4.1000000000000005 +2008,8,23,11,30,30.8,0.97,0.20700000000000002,0.62,167,794,848,0,16.8,167,794,0,848,30.89,0.16,3.1,42.97,1001,224,4.6000000000000005 +2008,8,23,12,30,30.5,0.96,0.202,0.62,162,787,807,2,17,452,133,0,561,35,0.16,2.9000000000000004,44.33,1001,226,4.9 +2008,8,23,13,30,29.900000000000002,1,0.182,0.62,145,773,711,8,17,308,368,0,578,42.85,0.16,2.8000000000000003,45.800000000000004,1001,228,4.9 +2008,8,23,14,30,29,1.09,0.16,0.62,123,739,571,7,16.6,278,258,0,434,52.7,0.16,2.7,47.29,1000,230,4.800000000000001 +2008,8,23,15,30,27.900000000000002,1.1300000000000001,0.14200000000000002,0.62,100,665,397,0,16.3,100,665,0,397,63.480000000000004,0.16,2.6,49.31,1000,229,4.5 +2008,8,23,16,30,26.5,1.1500000000000001,0.134,0.62,72,511,208,0,16.1,72,511,0,208,74.60000000000001,0.16,2.5,52.76,1000,227,3.9000000000000004 +2008,8,23,17,30,24.900000000000002,1.16,0.133,0.62,29,180,43,0,16.3,29,180,0,43,85.58,0.16,2.4000000000000004,58.85,1000,222,3.2 +2008,8,23,18,30,23.8,1.16,0.134,0.62,0,0,0,0,17.2,0,0,0,0,96.47,0.16,2.4000000000000004,66.4,1000,217,2.7 +2008,8,23,19,30,23.1,1.17,0.128,0.62,0,0,0,0,17.900000000000002,0,0,0,0,106.45,0.16,2.3000000000000003,72.77,1000,216,2.6 +2008,8,23,20,30,22.6,1.1500000000000001,0.121,0.62,0,0,0,0,18.3,0,0,0,0,115.18,0.16,2.3000000000000003,76.77,1000,219,2.5 +2008,8,23,21,30,22.1,1.08,0.125,0.62,0,0,0,0,18.3,0,0,0,0,122.01,0.16,2.2,79.07000000000001,1000,225,2.4000000000000004 +2008,8,23,22,30,21.6,1.02,0.132,0.62,0,0,0,0,18.1,0,0,0,0,126.14,0.16,2.2,80.35000000000001,1000,231,2.3000000000000003 +2008,8,23,23,30,21.1,0.99,0.133,0.62,0,0,0,0,17.7,0,0,0,0,126.91,0.16,2.1,80.94,1000,235,2 +2008,8,24,0,30,20.5,0.98,0.134,0.62,0,0,0,0,17.3,0,0,0,0,124.17,0.16,2,81.72,999,237,1.7000000000000002 +2008,8,24,1,30,20,0.98,0.129,0.62,0,0,0,0,17,0,0,0,0,118.41,0.16,1.9000000000000001,82.67,999,236,1.5 +2008,8,24,2,30,19.6,0.99,0.121,0.62,0,0,0,0,16.8,0,0,0,0,110.41,0.16,1.8,83.76,999,234,1.3 +2008,8,24,3,30,19.400000000000002,1.02,0.11900000000000001,0.62,0,0,0,0,16.7,0,0,0,0,100.9,0.16,1.8,84.19,999,232,1.1 +2008,8,24,4,30,20.400000000000002,1.03,0.122,0.62,0,0,0,5,16.6,0,0,7,0,89.93,0.16,1.8,79.04,1000,231,1.3 +2008,8,24,5,30,22.400000000000002,1.03,0.125,0.62,57,414,133,0,16.5,57,414,0,133,79.41,0.16,1.9000000000000001,69.4,1000,235,1.4000000000000001 +2008,8,24,6,30,24.1,1.02,0.134,0.62,90,627,321,0,15.9,90,627,0,321,68.31,0.16,1.9000000000000001,60.36,1000,247,1.1 +2008,8,24,7,30,26,1.03,0.131,0.62,107,748,510,7,15.100000000000001,223,379,0,428,57.35,0.16,1.9000000000000001,51.15,1000,267,0.6000000000000001 +2008,8,24,8,30,28.1,1.04,0.126,0.62,118,822,677,7,13.100000000000001,273,348,0,511,47.050000000000004,0.16,1.8,39.54,1000,276,0.6000000000000001 +2008,8,24,9,30,29.8,1.02,0.131,0.62,128,855,800,7,11.4,277,478,0,653,38.24,0.16,1.8,32.04,1000,263,1 +2008,8,24,10,30,30.900000000000002,0.98,0.135,0.62,134,870,870,7,10.600000000000001,281,539,0,736,32.36,0.16,1.8,28.59,1000,249,1.7000000000000002 +2008,8,24,11,30,31.5,0.93,0.14,0.62,138,869,881,7,10.3,269,591,0,774,31.23,0.16,1.8,27.01,999,244,2.5 +2008,8,24,12,30,31.5,0.93,0.14200000000000002,0.62,136,852,831,7,10.200000000000001,304,491,0,705,35.34,0.16,1.9000000000000001,26.87,999,242,3.4000000000000004 +2008,8,24,13,30,30.8,0.9500000000000001,0.15,0.62,132,811,723,7,10.5,276,475,0,622,43.17,0.16,2.1,28.57,1000,240,4.4 +2008,8,24,14,30,29.5,0.92,0.17200000000000001,0.62,129,732,570,7,11.4,257,319,0,449,52.99,0.16,2.2,32.74,1000,240,4.9 +2008,8,24,15,30,28,0.9,0.183,0.62,114,617,387,7,12.5,215,174,0,292,63.76,0.16,2.4000000000000004,38.38,1001,245,4.7 +2008,8,24,16,30,26.400000000000002,0.93,0.188,0.62,84,432,197,7,13.5,110,16,0,114,74.87,0.16,2.5,44.84,1001,255,4.1000000000000005 +2008,8,24,17,30,25.1,0.99,0.188,0.62,29,110,37,8,14.3,29,110,5,37,85.85000000000001,0.16,2.5,51.18,1001,267,3.3000000000000003 +2008,8,24,18,30,24.200000000000003,1.06,0.185,0.62,0,0,0,7,15.100000000000001,0,0,0,0,96.76,0.16,2.5,56.71,1002,280,2.5 +2008,8,24,19,30,23.700000000000003,1.1,0.186,0.62,0,0,0,8,15.4,0,0,0,0,106.76,0.16,2.5,59.58,1002,295,1.7000000000000002 +2008,8,24,20,30,23.3,1.12,0.185,0.62,0,0,0,6,15.3,0,0,0,0,115.51,0.16,2.5,60.65,1002,302,1.1 +2008,8,24,21,30,23,1.1300000000000001,0.186,0.62,0,0,0,7,15,0,0,0,0,122.35000000000001,0.16,2.5,60.730000000000004,1002,296,0.8 +2008,8,24,22,30,22.900000000000002,1.1500000000000001,0.188,0.62,0,0,0,7,14.8,0,0,0,0,126.49000000000001,0.16,2.5,60.34,1002,287,0.6000000000000001 +2008,8,24,23,30,22.8,1.18,0.185,0.62,0,0,0,3,14.700000000000001,0,0,0,0,127.25,0.16,2.5,60.28,1002,272,0.5 +2008,8,25,0,30,22.5,1.22,0.178,0.62,0,0,0,0,14.700000000000001,0,0,0,0,124.48,0.16,2.5,61.42,1002,243,0.5 +2008,8,25,1,30,22.1,1.25,0.17400000000000002,0.62,0,0,0,0,14.9,0,0,0,0,118.68,0.16,2.4000000000000004,63.5,1002,217,0.6000000000000001 +2008,8,25,2,30,21.6,1.26,0.17,0.62,0,0,0,0,15.100000000000001,0,0,0,0,110.64,0.16,2.4000000000000004,66.59,1002,206,0.7000000000000001 +2008,8,25,3,30,21.1,1.28,0.163,0.62,0,0,0,0,15.5,0,0,0,0,101.11,0.16,2.4000000000000004,70.38,1003,198,0.7000000000000001 +2008,8,25,4,30,21.6,1.3,0.157,0.62,0,0,0,0,15.9,0,0,0,0,90.09,0.16,2.4000000000000004,70.07000000000001,1003,187,0.8 +2008,8,25,5,30,23.3,1.33,0.153,0.62,57,377,125,0,16.3,57,377,0,125,79.59,0.16,2.4000000000000004,64.66,1003,190,1.1 +2008,8,25,6,30,25.5,1.3900000000000001,0.145,0.62,88,608,311,0,15.8,88,608,0,311,68.48,0.16,2.5,55.02,1004,211,1.4000000000000001 +2008,8,25,7,30,27.5,1.43,0.14,0.62,107,731,499,0,14.3,107,731,0,499,57.54,0.16,2.5,44.25,1004,229,1.7000000000000002 +2008,8,25,8,30,29,1.45,0.137,0.62,118,800,661,0,13.3,118,800,0,661,47.27,0.16,2.5,38.230000000000004,1004,238,2 +2008,8,25,9,30,30.1,1.47,0.132,0.62,124,843,784,0,12.9,124,843,0,784,38.5,0.16,2.5,34.92,1004,238,2.4000000000000004 +2008,8,25,10,30,30.8,1.48,0.13,0.62,127,865,856,0,12.5,127,865,0,856,32.67,0.16,2.4000000000000004,32.61,1004,235,3 +2008,8,25,11,30,31,1.47,0.13,0.62,128,868,868,0,12.100000000000001,128,868,0,868,31.580000000000002,0.16,2.4000000000000004,31.5,1004,233,3.6 +2008,8,25,12,30,30.8,1.35,0.14100000000000001,0.62,131,846,818,7,12,281,504,7,690,35.68,0.16,2.4000000000000004,31.6,1004,230,4 +2008,8,25,13,30,30.200000000000003,1.37,0.137,0.62,123,820,717,0,12.100000000000001,123,820,0,717,43.480000000000004,0.16,2.4000000000000004,32.83,1004,229,4.1000000000000005 +2008,8,25,14,30,29.200000000000003,1.3800000000000001,0.134,0.62,111,771,572,0,12.200000000000001,111,771,0,572,53.28,0.16,2.3000000000000003,35.13,1004,230,4.1000000000000005 +2008,8,25,15,30,27.900000000000002,1.4000000000000001,0.133,0.62,94,680,392,0,12.5,94,680,0,392,64.04,0.16,2.3000000000000003,38.660000000000004,1004,234,3.9000000000000004 +2008,8,25,16,30,26.200000000000003,1.4000000000000001,0.137,0.62,70,508,200,0,13.100000000000001,70,508,0,200,75.15,0.16,2.3000000000000003,44.31,1004,239,3.5 +2008,8,25,17,30,24.5,1.4000000000000001,0.14300000000000002,0.62,25,163,36,0,14,25,163,0,36,86.12,0.16,2.3000000000000003,51.910000000000004,1005,247,2.9000000000000004 +2008,8,25,18,30,23.5,1.37,0.15,0.62,0,0,0,0,15.100000000000001,0,0,0,0,97.06,0.16,2.3000000000000003,59.15,1005,257,2.3000000000000003 +2008,8,25,19,30,23,1.37,0.15,0.62,0,0,0,0,15.8,0,0,0,0,107.06,0.16,2.4000000000000004,63.78,1005,268,1.6 +2008,8,25,20,30,22.5,1.3900000000000001,0.14400000000000002,0.62,0,0,0,0,16.2,0,0,0,0,115.84,0.16,2.4000000000000004,67.76,1006,281,0.9 +2008,8,25,21,30,22,1.3900000000000001,0.136,0.62,0,0,0,0,16.6,0,0,0,0,122.7,0.16,2.4000000000000004,71.28,1006,296,0.5 +2008,8,25,22,30,21.8,1.3900000000000001,0.129,0.62,0,0,0,0,16.7,0,0,0,0,126.84,0.16,2.4000000000000004,72.66,1006,160,0.30000000000000004 +2008,8,25,23,30,21.700000000000003,1.3900000000000001,0.124,0.62,0,0,0,0,16.5,0,0,0,0,127.59,0.16,2.4000000000000004,72.52,1006,43,0.4 +2008,8,26,0,30,21.400000000000002,1.3800000000000001,0.121,0.62,0,0,0,0,16.2,0,0,0,0,124.79,0.16,2.4000000000000004,72.31,1006,72,0.6000000000000001 +2008,8,26,1,30,21,1.3800000000000001,0.12,0.62,0,0,0,0,15.8,0,0,0,0,118.95,0.16,2.4000000000000004,71.98,1006,72,0.8 +2008,8,26,2,30,20.700000000000003,1.3800000000000001,0.11900000000000001,0.62,0,0,0,0,15.200000000000001,0,0,0,0,110.87,0.16,2.4000000000000004,70.56,1006,67,0.9 +2008,8,26,3,30,20.3,1.37,0.11900000000000001,0.62,0,0,0,0,14.600000000000001,0,0,0,0,101.31,0.16,2.4000000000000004,69.8,1006,62,0.9 +2008,8,26,4,30,21,1.35,0.12,0.62,0,0,0,0,14.3,0,0,0,0,90.24,0.16,2.5,65.43,1006,57,1 +2008,8,26,5,30,23.1,1.35,0.12,0.62,51,410,124,0,14.100000000000001,51,410,0,124,79.76,0.16,2.5,56.89,1007,59,1 +2008,8,26,6,30,25.8,1.32,0.124,0.62,82,624,309,0,14,82,624,0,309,68.66,0.16,2.6,48.09,1007,114,0.6000000000000001 +2008,8,26,7,30,28.1,1.32,0.124,0.62,100,740,495,0,13.4,100,740,0,495,57.730000000000004,0.16,2.6,40.43,1007,201,0.6000000000000001 +2008,8,26,8,30,29.8,1.33,0.125,0.62,113,805,657,0,13.100000000000001,113,805,0,657,47.480000000000004,0.16,2.6,35.88,1007,238,1.4000000000000001 +2008,8,26,9,30,30.900000000000002,1.3800000000000001,0.12,0.62,118,848,779,0,12.600000000000001,118,848,0,779,38.76,0.16,2.6,32.660000000000004,1007,242,2 +2008,8,26,10,30,31.700000000000003,1.3800000000000001,0.124,0.62,124,863,848,0,12.200000000000001,124,863,0,848,32.99,0.16,2.6,30.34,1007,245,2.5 +2008,8,26,11,30,32,1.37,0.128,0.62,127,863,860,0,11.9,127,863,0,860,31.94,0.16,2.6,29.21,1006,247,3 +2008,8,26,12,30,32,1.3,0.155,0.62,137,830,808,0,11.600000000000001,137,830,0,808,36.03,0.16,2.6,28.72,1006,249,3.4000000000000004 +2008,8,26,13,30,31.6,1.31,0.164,0.62,134,792,706,0,11.4,134,792,0,706,43.800000000000004,0.16,2.6,28.990000000000002,1006,251,3.8000000000000003 +2008,8,26,14,30,31,1.3,0.168,0.62,124,731,558,0,11.100000000000001,124,731,0,558,53.58,0.16,2.6,29.47,1006,254,4 +2008,8,26,15,30,30.200000000000003,1.31,0.177,0.62,107,625,378,0,11,107,625,0,378,64.32000000000001,0.16,2.6,30.62,1006,257,3.9000000000000004 +2008,8,26,16,30,28.6,1.32,0.178,0.62,77,446,189,0,11.200000000000001,77,446,0,189,75.43,0.16,2.7,34.02,1006,257,3.3000000000000003 +2008,8,26,17,30,26.6,1.31,0.17400000000000002,0.62,24,118,31,0,12.200000000000001,24,118,0,31,86.4,0.16,2.7,40.72,1006,259,2.5 +2008,8,26,18,30,25.1,1.32,0.17,0.62,0,0,0,0,13.200000000000001,0,0,0,0,97.35000000000001,0.16,2.7,47.78,1006,267,1.9000000000000001 +2008,8,26,19,30,24.3,1.33,0.169,0.62,0,0,0,0,13.8,0,0,0,0,107.38,0.16,2.7,51.96,1007,280,1.4000000000000001 +2008,8,26,20,30,23.8,1.33,0.171,0.62,0,0,0,0,13.9,0,0,0,0,116.17,0.16,2.7,53.78,1007,306,0.9 +2008,8,26,21,30,23.400000000000002,1.33,0.17500000000000002,0.62,0,0,0,0,13.600000000000001,0,0,0,0,123.05,0.16,2.8000000000000003,54.120000000000005,1007,186,0.5 +2008,8,26,22,30,22.900000000000002,1.33,0.18,0.62,0,0,0,0,13.4,0,0,0,0,127.2,0.16,2.8000000000000003,54.94,1007,73,0.6000000000000001 +2008,8,26,23,30,22.400000000000002,1.33,0.183,0.62,0,0,0,0,13.5,0,0,0,0,127.93,0.16,2.8000000000000003,56.97,1007,106,1 +2008,8,27,0,30,22,1.33,0.184,0.62,0,0,0,1,13.9,0,0,0,0,125.10000000000001,0.16,2.9000000000000004,60.02,1007,121,1.2000000000000002 +2008,8,27,1,30,21.900000000000002,1.34,0.185,0.62,0,0,0,0,14.5,0,0,0,0,119.22,0.16,2.9000000000000004,62.64,1006,132,1.4000000000000001 +2008,8,27,2,30,21.8,1.34,0.185,0.62,0,0,0,0,15,0,0,0,0,111.11,0.16,2.9000000000000004,65.36,1006,139,1.4000000000000001 +2008,8,27,3,30,21.8,1.33,0.187,0.62,0,0,0,0,15.600000000000001,0,0,0,0,101.52,0.16,3,67.83,1007,139,1.2000000000000002 +2008,8,27,4,30,22.5,1.33,0.188,0.62,0,0,0,0,15.9,0,0,0,0,91.02,0.16,3,66.5,1007,139,1.1 +2008,8,27,5,30,24.1,1.32,0.187,0.62,59,321,116,0,16.1,59,321,0,116,79.94,0.16,3,60.94,1007,157,1.4000000000000001 +2008,8,27,6,30,25.900000000000002,1.33,0.17300000000000001,0.62,95,561,297,0,16.8,95,561,0,297,68.84,0.16,3.1,57.11,1007,179,2 +2008,8,27,7,30,27.5,1.32,0.17500000000000002,0.62,118,682,481,0,16.2,118,682,0,481,57.92,0.16,3.1,50.29,1007,187,2.3000000000000003 +2008,8,27,8,30,28.700000000000003,1.31,0.178,0.62,135,752,640,0,15.8,135,752,0,640,47.7,0.16,3.1,45.5,1007,194,2.4000000000000004 +2008,8,27,9,30,29.700000000000003,1.22,0.232,0.62,167,753,752,0,15.4,167,753,0,752,39.02,0.16,3.1,41.99,1007,203,2.6 +2008,8,27,10,30,30.3,1.21,0.23900000000000002,0.62,175,770,819,0,15,175,770,0,819,33.31,0.16,3.1,39.59,1007,211,2.7 +2008,8,27,11,30,30.6,1.2,0.245,0.62,179,771,831,0,14.700000000000001,179,771,0,831,32.29,0.16,3,38.08,1007,218,2.8000000000000003 +2008,8,27,12,30,30.6,1.17,0.304,0.62,198,717,775,9,14.4,248,5,0,253,36.38,0.16,3,37.43,1006,225,2.9000000000000004 +2008,8,27,13,30,30.3,1.16,0.316,0.62,191,671,673,9,14.200000000000001,320,53,0,358,44.12,0.16,3,37.550000000000004,1006,231,3 +2008,8,27,14,30,29.700000000000003,1.17,0.317,0.62,172,604,528,7,14.100000000000001,283,264,0,438,53.88,0.16,3,38.63,1006,236,2.9000000000000004 +2008,8,27,15,30,28.900000000000002,1.19,0.301,0.62,139,505,355,7,14.100000000000001,202,64,0,229,64.61,0.16,3,40.52,1006,239,2.8000000000000003 +2008,8,27,16,30,27.5,1.21,0.301,0.62,93,321,172,7,14.4,105,13,0,109,75.71000000000001,0.16,3.1,44.58,1006,242,2.5 +2008,8,27,17,30,25.8,1.23,0.295,0.62,21,50,24,7,14.9,18,0,7,18,86.68,0.16,3.1,50.85,1006,247,2.3000000000000003 +2008,8,27,18,30,24.3,1.24,0.28800000000000003,0.62,0,0,0,7,16,0,0,0,0,97.65,0.16,3.1,59.76,1007,255,2 +2008,8,27,19,30,23.3,1.25,0.28600000000000003,0.62,0,0,0,8,17,0,0,0,0,107.69,0.16,3.1,67.72,1007,271,1.4000000000000001 +2008,8,27,20,30,22.700000000000003,1.25,0.28600000000000003,0.62,0,0,0,3,17.6,0,0,0,0,116.5,0.16,3.1,72.79,1007,293,0.9 +2008,8,27,21,30,22.3,1.25,0.28600000000000003,0.62,0,0,0,0,17.8,0,0,0,0,123.4,0.16,3.1,75.57000000000001,1007,311,0.7000000000000001 +2008,8,27,22,30,22.3,1.25,0.28600000000000003,0.62,0,0,0,0,17.7,0,0,0,0,127.56,0.16,3.1,75.31,1007,326,0.6000000000000001 +2008,8,27,23,30,22.400000000000002,1.25,0.28200000000000003,0.62,0,0,0,0,17.5,0,0,0,0,128.28,0.16,3.1,73.96000000000001,1006,347,0.6000000000000001 +2008,8,28,0,30,22.400000000000002,1.25,0.276,0.62,0,0,0,0,17.3,0,0,0,0,125.41,0.16,3,72.85000000000001,1006,191,0.6000000000000001 +2008,8,28,1,30,22.200000000000003,1.26,0.268,0.62,0,0,0,0,17,0,0,0,0,119.49000000000001,0.16,3,72.22,1005,27,0.7000000000000001 +2008,8,28,2,30,21.900000000000002,1.26,0.26,0.62,0,0,0,0,16.6,0,0,0,0,111.35000000000001,0.16,2.9000000000000004,71.74,1005,36,0.7000000000000001 +2008,8,28,3,30,21.700000000000003,1.26,0.252,0.62,0,0,0,0,16.2,0,0,0,0,101.73,0.16,2.9000000000000004,70.72,1005,42,0.8 +2008,8,28,4,30,22.200000000000003,1.27,0.245,0.62,0,0,0,0,15.8,0,0,0,0,91.21000000000001,0.16,2.8000000000000003,67.04,1005,46,0.8 +2008,8,28,5,30,24.1,1.28,0.23900000000000002,0.62,64,272,110,0,15.5,64,272,0,110,80.11,0.16,2.8000000000000003,58.69,1006,196,0.8 +2008,8,28,6,30,26.700000000000003,1.3800000000000001,0.163,0.62,92,578,299,0,14.200000000000001,92,578,0,299,69.02,0.16,2.7,46.31,1006,323,1 +2008,8,28,7,30,28.6,1.3800000000000001,0.152,0.62,110,710,485,0,13.3,110,710,0,485,58.11,0.16,2.7,39.03,1006,290,1.4000000000000001 +2008,8,28,8,30,30,1.3800000000000001,0.147,0.62,122,786,649,0,12.8,122,786,0,649,47.92,0.16,2.6,34.85,1005,272,1.8 +2008,8,28,9,30,31.1,1.29,0.166,0.62,139,810,766,0,12.3,139,810,0,766,39.29,0.16,2.6,31.75,1005,261,2.4000000000000004 +2008,8,28,10,30,31.700000000000003,1.32,0.164,0.62,143,834,837,0,12,143,834,0,837,33.64,0.16,2.5,30,1005,255,3 +2008,8,28,11,30,32,1.32,0.17,0.62,147,833,848,0,11.8,147,833,0,848,32.65,0.16,2.5,29.01,1004,253,3.7 +2008,8,28,12,30,31.8,1.33,0.189,0.62,151,806,797,0,11.600000000000001,151,806,0,797,36.730000000000004,0.16,2.5,29,1004,253,4.1000000000000005 +2008,8,28,13,30,31.400000000000002,1.35,0.196,0.62,146,768,694,0,11.5,146,768,0,694,44.44,0.16,2.5,29.48,1004,255,4.2 +2008,8,28,14,30,30.700000000000003,1.36,0.188,0.62,129,712,546,0,11.4,129,712,0,546,54.18,0.16,2.6,30.580000000000002,1004,258,4.2 +2008,8,28,15,30,29.8,1.37,0.20500000000000002,0.62,113,595,366,0,11.5,113,595,0,366,64.9,0.16,2.6,32.34,1003,260,4 +2008,8,28,16,30,28.200000000000003,1.3900000000000001,0.20600000000000002,0.62,79,410,178,0,11.9,79,410,0,178,76,0.16,2.7,36.33,1004,258,3.4000000000000004 +2008,8,28,17,30,26.1,1.42,0.198,0.62,20,90,25,0,12.8,20,90,0,25,86.96000000000001,0.16,2.7,43.800000000000004,1004,257,2.8000000000000003 +2008,8,28,18,30,24.400000000000002,1.43,0.199,0.62,0,0,0,0,14.4,0,0,0,0,97.95,0.16,2.8000000000000003,53.71,1005,261,2.2 +2008,8,28,19,30,23.3,1.44,0.194,0.62,0,0,0,0,15.700000000000001,0,0,0,0,108.01,0.16,2.8000000000000003,62.25,1005,266,1.6 +2008,8,28,20,30,22.6,1.45,0.186,0.62,0,0,0,0,16.5,0,0,0,0,116.84,0.16,2.8000000000000003,68.4,1005,266,1.1 +2008,8,28,21,30,22.3,1.46,0.179,0.62,0,0,0,0,16.900000000000002,0,0,0,0,123.76,0.16,2.7,71.39,1005,252,0.7000000000000001 +2008,8,28,22,30,22.1,1.47,0.17200000000000001,0.62,0,0,0,0,16.900000000000002,0,0,0,0,127.92,0.16,2.6,72.59,1005,211,0.5 +2008,8,28,23,30,21.700000000000003,1.48,0.166,0.62,0,0,0,0,16.900000000000002,0,0,0,0,128.62,0.16,2.5,74.24,1005,162,0.5 +2008,8,29,0,30,21.3,1.49,0.16,0.62,0,0,0,0,16.8,0,0,0,0,125.73,0.16,2.4000000000000004,75.61,1004,133,0.7000000000000001 +2008,8,29,1,30,20.8,1.49,0.153,0.62,0,0,0,0,16.7,0,0,0,0,119.77,0.16,2.3000000000000003,77.21000000000001,1004,118,0.8 +2008,8,29,2,30,20.400000000000002,1.5,0.147,0.62,0,0,0,0,16.400000000000002,0,0,0,0,111.58,0.16,2.2,77.98,1004,107,0.9 +2008,8,29,3,30,20.1,1.5,0.14400000000000002,0.62,0,0,0,0,16.1,0,0,0,0,101.93,0.16,2.1,77.81,1004,98,1 +2008,8,29,4,30,20.8,1.5,0.14200000000000002,0.62,0,0,0,0,15.700000000000001,0,0,0,0,91.39,0.16,2.1,72.53,1004,90,1 +2008,8,29,5,30,23.1,1.5,0.14300000000000002,0.62,53,383,117,0,15.200000000000001,53,383,0,117,80.29,0.16,2.1,60.94,1005,81,1.1 +2008,8,29,6,30,26.1,1.51,0.14400000000000002,0.62,87,612,304,0,14.3,87,612,0,304,69.19,0.16,2.1,48.14,1005,62,0.9 +2008,8,29,7,30,28.700000000000003,1.52,0.14200000000000002,0.62,106,735,492,0,12,106,735,0,492,58.300000000000004,0.16,2.1,35.74,1005,175,0.5 +2008,8,29,8,30,30.400000000000002,1.53,0.14100000000000001,0.62,119,802,654,0,10.4,119,802,0,654,48.15,0.16,2.2,28.97,1005,277,0.6000000000000001 +2008,8,29,9,30,31.6,1.52,0.147,0.62,130,836,774,0,9.600000000000001,130,836,0,774,39.56,0.16,2.2,25.64,1005,251,1.3 +2008,8,29,10,30,32.4,1.52,0.155,0.62,138,847,840,0,9.600000000000001,138,847,0,840,33.97,0.16,2.3000000000000003,24.51,1004,247,2.1 +2008,8,29,11,30,32.7,1.52,0.165,0.62,143,841,848,0,9.9,143,841,0,848,33.02,0.16,2.4000000000000004,24.580000000000002,1004,248,2.8000000000000003 +2008,8,29,12,30,32.7,1.44,0.188,0.62,150,808,795,0,10.3,150,808,0,795,37.08,0.16,2.5,25.240000000000002,1003,250,3.4000000000000004 +2008,8,29,13,30,32.300000000000004,1.45,0.2,0.62,146,764,688,0,10.700000000000001,146,764,0,688,44.77,0.16,2.6,26.64,1003,253,3.9000000000000004 +2008,8,29,14,30,31.6,1.46,0.214,0.62,137,690,537,0,11.200000000000001,137,690,0,537,54.49,0.16,2.7,28.560000000000002,1003,257,4.2 +2008,8,29,15,30,30.6,1.48,0.222,0.62,116,577,358,0,11.700000000000001,116,577,0,358,65.2,0.16,2.8000000000000003,31.3,1003,261,4.2 +2008,8,29,16,30,29,1.49,0.232,0.62,80,384,171,0,12.200000000000001,80,384,0,171,76.29,0.16,2.8000000000000003,35.550000000000004,1003,263,3.9000000000000004 +2008,8,29,17,30,26.8,1.49,0.23500000000000001,0.62,18,68,21,0,13.200000000000001,18,68,0,21,87.24,0.16,2.9000000000000004,43.1,1004,264,3.4000000000000004 +2008,8,29,18,30,25.1,1.49,0.23900000000000002,0.62,0,0,0,0,14.700000000000001,0,0,0,0,98.26,0.16,2.9000000000000004,52.370000000000005,1004,268,2.8000000000000003 +2008,8,29,19,30,23.900000000000002,1.5,0.242,0.62,0,0,0,0,15.9,0,0,0,0,108.33,0.16,2.8000000000000003,60.97,1005,274,1.9000000000000001 +2008,8,29,20,30,23.1,1.5,0.23700000000000002,0.62,0,0,0,0,16.8,0,0,0,0,117.18,0.16,2.8000000000000003,67.57000000000001,1005,278,1.1 +2008,8,29,21,30,22.700000000000003,1.5,0.228,0.62,0,0,0,0,17.400000000000002,0,0,0,0,124.12,0.16,2.7,71.83,1005,282,0.7000000000000001 +2008,8,29,22,30,22.6,1.5,0.22,0.62,0,0,0,0,17.7,0,0,0,0,128.29,0.16,2.7,73.88,1005,294,0.5 +2008,8,29,23,30,22.400000000000002,1.5,0.214,0.62,0,0,0,0,17.900000000000002,0,0,0,0,128.97,0.16,2.6,75.55,1005,180,0.30000000000000004 +2008,8,30,0,30,22,1.49,0.211,0.62,0,0,0,0,17.900000000000002,0,0,0,0,126.04,0.16,2.6,77.4,1005,65,0.5 +2008,8,30,1,30,21.6,1.48,0.212,0.62,0,0,0,0,17.7,0,0,0,0,120.04,0.16,2.6,78.35000000000001,1005,75,0.7000000000000001 +2008,8,30,2,30,21.200000000000003,1.46,0.212,0.62,0,0,0,0,17.3,0,0,0,0,111.82000000000001,0.16,2.7,78.27,1005,80,0.8 +2008,8,30,3,30,20.8,1.47,0.211,0.62,0,0,0,0,16.7,0,0,0,0,102.14,0.16,2.7,77.46000000000001,1005,88,0.9 +2008,8,30,4,30,21.6,1.48,0.209,0.62,0,0,0,0,16.1,0,0,0,0,91.58,0.16,2.8000000000000003,70.7,1005,96,1.2000000000000002 +2008,8,30,5,30,23.900000000000002,1.5,0.20700000000000002,0.62,58,302,108,0,15.3,58,302,0,108,80.47,0.16,2.8000000000000003,58.72,1005,101,1.4000000000000001 +2008,8,30,6,30,27,1.54,0.196,0.62,98,544,290,0,14.600000000000001,98,544,0,290,69.38,0.16,2.8000000000000003,46.64,1005,72,1.1 +2008,8,30,7,30,29.900000000000002,1.54,0.197,0.62,123,670,474,0,13,123,670,0,474,58.5,0.16,2.8000000000000003,35.49,1005,182,0.8 +2008,8,30,8,30,31.900000000000002,1.55,0.196,0.62,139,745,634,0,12.100000000000001,139,745,0,634,48.370000000000005,0.16,2.8000000000000003,29.79,1005,306,1.3 +2008,8,30,9,30,33.1,1.6,0.181,0.62,142,799,755,0,12.100000000000001,142,799,0,755,39.84,0.16,2.8000000000000003,27.92,1005,284,2.1 +2008,8,30,10,30,33.800000000000004,1.6,0.18,0.62,147,820,824,0,12.200000000000001,147,820,0,824,34.300000000000004,0.16,2.8000000000000003,27.060000000000002,1004,275,2.9000000000000004 +2008,8,30,11,30,34.1,1.58,0.187,0.62,150,818,833,0,12.3,150,818,0,833,33.38,0.16,2.8000000000000003,26.67,1004,270,3.7 +2008,8,30,12,30,34,1.58,0.195,0.62,151,797,783,0,12.3,151,797,0,783,37.44,0.16,2.9000000000000004,26.86,1004,267,4.4 +2008,8,30,13,30,33.4,1.53,0.219,0.62,152,745,677,0,12.200000000000001,152,745,0,677,45.11,0.16,2.9000000000000004,27.66,1003,266,4.9 +2008,8,30,14,30,32.5,1.52,0.228,0.62,140,675,529,0,12.100000000000001,140,675,0,529,54.800000000000004,0.16,2.9000000000000004,28.84,1003,267,5.300000000000001 +2008,8,30,15,30,31.3,1.51,0.24,0.62,119,558,350,0,12.100000000000001,119,558,0,350,65.49,0.16,2.9000000000000004,30.79,1003,268,5.300000000000001 +2008,8,30,16,30,29.400000000000002,1.52,0.242,0.62,80,369,166,0,12.4,80,369,0,166,76.58,0.16,2.9000000000000004,35.01,1004,268,4.9 +2008,8,30,17,30,27.200000000000003,1.52,0.23600000000000002,0.62,16,61,19,0,13.3,16,61,0,19,87.52,0.16,2.9000000000000004,42.43,1004,268,4 +2008,8,30,18,30,25.5,1.52,0.225,0.62,0,0,0,0,15.100000000000001,0,0,0,0,98.57000000000001,0.16,3,52.56,1004,272,3 +2008,8,30,19,30,24.400000000000002,1.51,0.212,0.62,0,0,0,0,16.6,0,0,0,0,108.65,0.16,3,61.9,1005,279,2.1 +2008,8,30,20,30,23.700000000000003,1.5,0.196,0.62,0,0,0,0,17.400000000000002,0,0,0,0,117.52,0.16,3,67.69,1005,286,1.4000000000000001 +2008,8,30,21,30,23.3,1.5,0.182,0.62,0,0,0,0,17.5,0,0,0,0,124.48,0.16,3,69.83,1005,294,0.9 +2008,8,30,22,30,23.200000000000003,1.5,0.17500000000000002,0.62,0,0,0,0,17.400000000000002,0,0,0,0,128.65,0.16,2.9000000000000004,69.76,1005,316,0.6000000000000001 +2008,8,30,23,30,23.1,1.51,0.17400000000000002,0.62,0,0,0,0,17.2,0,0,0,0,129.33,0.16,2.9000000000000004,69.39,1005,192,0.5 +2008,8,31,0,30,22.8,1.52,0.177,0.62,0,0,0,0,16.900000000000002,0,0,0,0,126.36,0.16,2.9000000000000004,69.4,1004,65,0.6000000000000001 +2008,8,31,1,30,22.5,1.52,0.18,0.62,0,0,0,0,16.5,0,0,0,0,120.32000000000001,0.16,2.9000000000000004,68.92,1004,88,0.8 +2008,8,31,2,30,22.200000000000003,1.52,0.183,0.62,0,0,0,0,16.1,0,0,0,0,112.06,0.16,2.9000000000000004,68.29,1005,103,1 +2008,8,31,3,30,21.8,1.53,0.187,0.62,0,0,0,0,15.8,0,0,0,0,102.35000000000001,0.16,2.9000000000000004,68.68,1005,112,1.1 +2008,8,31,4,30,22.8,1.54,0.189,0.62,0,0,0,0,15.600000000000001,0,0,0,0,91.77,0.16,2.9000000000000004,64.02,1005,116,1.6 +2008,8,31,5,30,25.200000000000003,1.55,0.19,0.62,55,313,106,0,15.4,55,313,0,106,80.65,0.16,2.9000000000000004,54.74,1005,124,2.2 +2008,8,31,6,30,27.8,1.55,0.187,0.62,95,549,286,0,15.600000000000001,95,549,0,286,69.56,0.16,2.9000000000000004,47.4,1006,139,2.3000000000000003 +2008,8,31,7,30,30,1.56,0.187,0.62,119,676,470,0,15.700000000000001,119,676,0,470,58.7,0.16,2.9000000000000004,42.09,1006,163,1.7000000000000002 +2008,8,31,8,30,31.8,1.57,0.188,0.62,135,749,630,0,15.200000000000001,135,749,0,630,48.6,0.16,2.9000000000000004,36.63,1006,199,1.5 +2008,8,31,9,30,33,1.56,0.14200000000000002,0.62,126,826,758,0,14.700000000000001,126,826,0,758,40.11,0.16,2.8000000000000003,33.26,1006,229,2 +2008,8,31,10,30,33.7,1.56,0.145,0.62,131,845,827,0,14.3,131,845,0,827,34.63,0.16,2.7,31.16,1005,242,2.7 +2008,8,31,11,30,33.9,1.57,0.149,0.62,134,845,836,0,13.9,134,845,0,836,33.75,0.16,2.7,30.05,1005,249,3.4000000000000004 +2008,8,31,12,30,33.7,1.6,0.151,0.62,131,833,789,0,13.5,131,833,0,789,37.800000000000004,0.16,2.6,29.650000000000002,1005,253,4 +2008,8,31,13,30,33.1,1.6,0.161,0.62,128,795,686,0,13.100000000000001,128,795,0,686,45.44,0.16,2.5,29.830000000000002,1005,257,4.4 +2008,8,31,14,30,32.2,1.61,0.166,0.62,117,732,536,0,12.700000000000001,117,732,0,536,55.11,0.16,2.5,30.52,1005,261,4.4 +2008,8,31,15,30,31.1,1.6,0.17500000000000002,0.62,101,623,356,0,12.5,101,623,0,356,65.79,0.16,2.4000000000000004,32.02,1005,264,4.1000000000000005 +2008,8,31,16,30,29.200000000000003,1.61,0.171,0.62,68,442,169,0,12.600000000000001,68,442,0,169,76.87,0.16,2.3000000000000003,35.93,1004,267,3.3000000000000003 +2008,8,31,17,30,26.8,1.62,0.161,0.62,15,92,18,0,13.200000000000001,15,92,0,18,87.8,0.16,2.3000000000000003,42.980000000000004,1005,270,2.3000000000000003 +2008,8,31,18,30,25,1.61,0.157,0.62,0,0,0,0,14.5,0,0,0,0,98.88,0.16,2.3000000000000003,52.21,1005,275,1.8 +2008,8,31,19,30,23.900000000000002,1.58,0.156,0.62,0,0,0,0,16,0,0,0,0,108.98,0.16,2.3000000000000003,61.22,1005,282,1.6 +2008,8,31,20,30,23.200000000000003,1.53,0.16,0.62,0,0,0,0,17.1,0,0,0,0,117.87,0.16,2.3000000000000003,68.41,1006,290,1.4000000000000001 +2008,8,31,21,30,22.8,1.47,0.167,0.62,0,0,0,0,17.7,0,0,0,0,124.84,0.16,2.3000000000000003,72.78,1006,298,1.1 +2008,8,31,22,30,22.5,1.44,0.169,0.62,0,0,0,8,17.8,0,0,0,0,129.02,0.16,2.3000000000000003,74.89,1005,306,0.8 +2008,8,31,23,30,22.400000000000002,1.42,0.169,0.62,0,0,0,8,17.7,0,0,0,0,129.68,0.16,2.3000000000000003,74.86,1005,329,0.5 +2008,9,1,0,30,22.200000000000003,1.4000000000000001,0.169,0.61,0,0,0,8,17.5,0,0,0,0,126.68,0.16,2.3000000000000003,74.61,1005,201,0.30000000000000004 +2008,9,1,1,30,21.900000000000002,1.3800000000000001,0.17200000000000001,0.61,0,0,0,8,17.2,0,0,0,0,120.60000000000001,0.16,2.3000000000000003,74.65,1005,68,0.4 +2008,9,1,2,30,21.700000000000003,1.36,0.177,0.61,0,0,0,3,16.900000000000002,0,0,0,0,112.3,0.16,2.4000000000000004,74.04,1005,89,0.5 +2008,9,1,3,30,21.5,1.33,0.183,0.61,0,0,0,3,16.6,0,0,0,0,102.56,0.16,2.4000000000000004,73.59,1005,103,0.7000000000000001 +2008,9,1,4,30,21.900000000000002,1.31,0.187,0.61,0,0,0,3,16.400000000000002,0,0,0,0,91.96000000000001,0.16,2.5,70.89,1005,115,0.8 +2008,9,1,5,30,23.400000000000002,1.29,0.194,0.61,56,296,103,0,16.3,56,296,0,103,80.82000000000001,0.16,2.5,64.24,1005,130,1 +2008,9,1,6,30,26,1.28,0.20600000000000002,0.61,100,524,282,0,15.600000000000001,100,524,0,282,69.74,0.16,2.6,52.85,1006,191,1.1 +2008,9,1,7,30,28.8,1.32,0.211,0.61,128,652,465,0,13.5,128,652,0,465,58.89,0.16,2.7,39.11,1006,246,1.6 +2008,9,1,8,30,30.400000000000002,1.36,0.218,0.61,147,723,623,0,12.3,147,723,0,623,48.83,0.16,2.8000000000000003,32.9,1006,248,2.5 +2008,9,1,9,30,30.8,1.3800000000000001,0.211,0.61,155,772,743,0,12.5,155,772,0,743,40.39,0.16,2.8000000000000003,32.63,1006,243,3.1 +2008,9,1,10,30,30.5,1.37,0.219,0.61,164,786,808,0,12.8,164,786,0,808,34.97,0.16,2.9000000000000004,33.86,1006,242,3.4000000000000004 +2008,9,1,11,30,30.1,1.3800000000000001,0.223,0.61,167,785,817,7,13.100000000000001,283,556,7,743,34.12,0.16,3,35.29,1006,242,3.4000000000000004 +2008,9,1,12,30,29.5,1.36,0.245,0.61,172,755,765,7,13.3,312,433,0,653,38.160000000000004,0.16,3,37.14,1006,242,3.2 +2008,9,1,13,30,29,1.35,0.251,0.61,164,713,662,0,13.5,164,713,0,662,45.78,0.16,3,38.71,1006,243,2.9000000000000004 +2008,9,1,14,30,28.400000000000002,1.34,0.252,0.61,148,644,513,1,13.700000000000001,148,644,0,513,55.43,0.16,3.1,40.47,1005,244,2.5 +2008,9,1,15,30,27.700000000000003,1.33,0.246,0.61,120,536,337,8,13.9,191,80,7,223,66.09,0.16,3.1,42.72,1005,244,2.1 +2008,9,1,16,30,26.5,1.32,0.241,0.61,78,343,155,0,14.200000000000001,78,343,0,155,77.17,0.16,3.1,46.69,1005,244,1.5 +2008,9,1,17,30,25.1,1.31,0.23900000000000002,0.61,13,34,14,1,14.9,13,34,0,14,88.08,0.16,3.1,53.050000000000004,1006,244,0.9 +2008,9,1,18,30,24.3,1.29,0.23700000000000002,0.61,0,0,0,0,15.700000000000001,0,0,0,0,99.19,0.16,3.1,58.7,1006,247,0.7000000000000001 +2008,9,1,19,30,24,1.27,0.23800000000000002,0.61,0,0,0,0,16.400000000000002,0,0,0,0,109.31,0.16,3.2,62.36,1006,251,0.5 +2008,9,1,20,30,23.8,1.25,0.24,0.61,0,0,0,8,16.900000000000002,0,0,0,0,118.22,0.16,3.2,65.12,1006,258,0.30000000000000004 +2008,9,1,21,30,23.6,1.24,0.23800000000000002,0.61,0,0,0,0,17.1,0,0,0,0,125.21000000000001,0.16,3.2,66.88,1006,148,0.1 +2008,9,1,22,30,23.400000000000002,1.24,0.232,0.61,0,0,0,0,17.1,0,0,0,0,129.39000000000001,0.16,3.1,67.66,1006,51,0.1 +2008,9,1,23,30,23.200000000000003,1.24,0.226,0.61,0,0,0,0,17,0,0,0,0,130.04,0.16,3.1,68.07000000000001,1006,70,0.2 +2008,9,2,0,30,23,1.25,0.223,0.61,0,0,0,0,16.900000000000002,0,0,0,0,127,0.16,3.1,68.58,1006,70,0.30000000000000004 +2008,9,2,1,30,22.700000000000003,1.26,0.222,0.61,0,0,0,0,16.8,0,0,0,0,120.87,0.16,3,69.52,1005,63,0.5 +2008,9,2,2,30,22.200000000000003,1.27,0.222,0.61,0,0,0,0,16.8,0,0,0,0,112.53,0.16,3,71.33,1005,64,0.7000000000000001 +2008,9,2,3,30,21.5,1.28,0.224,0.61,0,0,0,0,16.7,0,0,0,0,102.77,0.16,3,74.10000000000001,1005,72,0.9 +2008,9,2,4,30,21.700000000000003,1.29,0.224,0.61,0,0,0,0,16.6,0,0,0,0,92.15,0.16,3,72.8,1005,81,1.1 +2008,9,2,5,30,23.6,1.3,0.223,0.61,58,259,98,0,16.5,58,259,0,98,81,0.16,3,64.37,1005,95,1.4000000000000001 +2008,9,2,6,30,26.200000000000003,1.3,0.226,0.61,104,497,275,0,15.9,104,497,0,275,69.92,0.16,3,53,1005,129,1.5 +2008,9,2,7,30,28.3,1.31,0.223,0.61,132,635,458,0,14.200000000000001,132,635,0,458,59.09,0.16,3,42.02,1005,168,1.6 +2008,9,2,8,30,29.900000000000002,1.32,0.22,0.61,149,716,617,0,13.600000000000001,149,716,0,617,49.06,0.16,3,36.92,1005,193,2 +2008,9,2,9,30,31,1.36,0.192,0.61,148,783,742,0,13.700000000000001,148,783,0,742,40.67,0.16,2.9000000000000004,34.84,1005,210,2.3000000000000003 +2008,9,2,10,30,31.700000000000003,1.37,0.195,0.61,155,800,808,0,13.700000000000001,155,800,0,808,35.300000000000004,0.16,3,33.410000000000004,1004,221,2.8000000000000003 +2008,9,2,11,30,31.900000000000002,1.37,0.201,0.61,158,799,816,0,13.700000000000001,158,799,0,816,34.49,0.16,3,33.12,1004,228,3.4000000000000004 +2008,9,2,12,30,31.6,1.3,0.23,0.61,166,762,763,0,13.9,166,762,0,763,38.53,0.16,3,34.08,1004,233,3.8000000000000003 +2008,9,2,13,30,31,1.29,0.23500000000000001,0.61,159,722,659,0,14.100000000000001,159,722,0,659,46.12,0.16,3,35.800000000000004,1003,236,4 +2008,9,2,14,30,30,1.28,0.23500000000000001,0.61,142,654,511,0,14.3,142,654,0,511,55.75,0.16,3,38.51,1003,239,3.9000000000000004 +2008,9,2,15,30,28.700000000000003,1.28,0.234,0.61,117,541,334,0,14.600000000000001,117,541,0,334,66.4,0.16,3,42.13,1003,240,3.6 +2008,9,2,16,30,27.1,1.27,0.232,0.61,76,343,151,0,14.8,76,343,0,151,77.47,0.16,3,46.92,1003,241,2.8000000000000003 +2008,9,2,17,30,25.200000000000003,1.26,0.225,0.61,11,29,12,0,15.200000000000001,11,29,0,12,88.36,0.16,3,54.04,1004,243,1.7000000000000002 +2008,9,2,18,30,23.900000000000002,1.25,0.218,0.61,0,0,0,0,15.9,0,0,0,0,99.5,0.16,3,61.050000000000004,1004,249,1 +2008,9,2,19,30,23.3,1.24,0.213,0.61,0,0,0,0,16.5,0,0,0,0,109.64,0.16,3,65.43,1005,259,0.7000000000000001 +2008,9,2,20,30,23,1.24,0.211,0.61,0,0,0,0,16.8,0,0,0,0,118.57000000000001,0.16,3,68.1,1005,281,0.5 +2008,9,2,21,30,22.8,1.24,0.211,0.61,0,0,0,0,17,0,0,0,0,125.58,0.16,2.9000000000000004,69.84,1005,315,0.30000000000000004 +2008,9,2,22,30,22.700000000000003,1.24,0.211,0.61,0,0,0,0,17.1,0,0,0,0,129.77,0.16,2.9000000000000004,70.66,1005,178,0.2 +2008,9,2,23,30,22.5,1.24,0.212,0.61,0,0,0,0,17.1,0,0,0,0,130.4,0.16,2.8000000000000003,71.55,1004,50,0.1 +2008,9,3,0,30,22.3,1.24,0.213,0.61,0,0,0,0,17.1,0,0,0,0,127.32000000000001,0.16,2.8000000000000003,72.54,1004,92,0.1 +2008,9,3,1,30,22,1.24,0.213,0.61,0,0,0,0,17.2,0,0,0,0,121.15,0.16,2.7,74.07000000000001,1004,102,0.2 +2008,9,3,2,30,21.700000000000003,1.25,0.21,0.61,0,0,0,0,17.2,0,0,0,0,112.77,0.16,2.7,75.65,1004,93,0.30000000000000004 +2008,9,3,3,30,21.1,1.26,0.20600000000000002,0.61,0,0,0,0,17.2,0,0,0,0,102.98,0.16,2.7,78.56,1004,86,0.5 +2008,9,3,4,30,21.3,1.26,0.202,0.61,0,0,0,0,17.2,0,0,0,0,92.34,0.16,2.6,77.3,1004,87,0.7000000000000001 +2008,9,3,5,30,22.900000000000002,1.27,0.199,0.61,55,278,98,0,17,55,278,0,98,81.18,0.16,2.6,69.53,1005,96,0.9 +2008,9,3,6,30,25.400000000000002,1.1,0.223,0.61,106,497,275,0,16.5,106,497,0,275,70.11,0.16,2.5,57.95,1005,158,0.7000000000000001 +2008,9,3,7,30,27.8,1.11,0.221,0.61,134,637,459,0,14.5,134,637,0,459,59.300000000000004,0.16,2.5,44.230000000000004,1005,228,1 +2008,9,3,8,30,29.5,1.11,0.223,0.61,153,716,619,0,13.4,153,716,0,619,49.29,0.16,2.5,37.36,1005,243,1.7000000000000002 +2008,9,3,9,30,30.5,1.08,0.23500000000000001,0.61,169,752,737,0,13.4,169,752,0,737,40.95,0.16,2.5,35.1,1004,243,2.3000000000000003 +2008,9,3,10,30,31.200000000000003,1.09,0.232,0.61,174,777,805,0,13.5,174,777,0,805,35.64,0.16,2.5,33.99,1004,240,2.8000000000000003 +2008,9,3,11,30,31.5,1.11,0.229,0.61,173,783,815,0,13.5,173,783,0,815,34.86,0.16,2.5,33.56,1004,238,3.3000000000000003 +2008,9,3,12,30,31.400000000000002,1.11,0.225,0.61,167,770,766,0,13.700000000000001,167,770,0,766,38.9,0.16,2.5,34.11,1004,238,3.6 +2008,9,3,13,30,30.900000000000002,1.11,0.217,0.61,153,738,662,0,13.9,153,738,0,662,46.46,0.16,2.5,35.46,1003,238,3.8000000000000003 +2008,9,3,14,30,30.1,1.09,0.20700000000000002,0.61,135,681,515,0,14,135,681,0,515,56.07,0.16,2.4000000000000004,37.4,1003,238,3.8000000000000003 +2008,9,3,15,30,28.900000000000002,1.08,0.198,0.61,109,574,336,0,14.200000000000001,109,574,0,336,66.71000000000001,0.16,2.4000000000000004,40.730000000000004,1003,240,3.5 +2008,9,3,16,30,26.900000000000002,1.07,0.191,0.61,71,374,151,0,14.700000000000001,71,374,0,151,77.77,0.16,2.3000000000000003,47.31,1003,241,2.7 +2008,9,3,17,30,24.8,1.06,0.184,0.61,10,25,11,0,15.700000000000001,10,25,0,11,88.64,0.16,2.4000000000000004,56.910000000000004,1004,244,1.8 +2008,9,3,18,30,23.3,1.05,0.177,0.61,0,0,0,0,16.900000000000002,0,0,0,0,99.82000000000001,0.16,2.4000000000000004,67.33,1004,247,1.3 +2008,9,3,19,30,22.6,1.04,0.17200000000000001,0.61,0,0,0,0,17.8,0,0,0,0,109.97,0.16,2.4000000000000004,74.43,1004,247,0.9 +2008,9,3,20,30,22.3,1.04,0.169,0.61,0,0,0,0,18.400000000000002,0,0,0,0,118.92,0.16,2.4000000000000004,78.42,1004,240,0.5 +2008,9,3,21,30,22.1,1.04,0.168,0.61,0,0,0,0,18.6,0,0,0,0,125.95,0.16,2.3000000000000003,80.37,1004,174,0.30000000000000004 +2008,9,3,22,30,21.8,1.05,0.167,0.61,0,0,0,0,18.5,0,0,0,0,130.15,0.16,2.3000000000000003,81.46000000000001,1004,111,0.4 +2008,9,3,23,30,21.400000000000002,1.06,0.168,0.61,0,0,0,0,18.3,0,0,0,0,130.76,0.16,2.3000000000000003,82.51,1004,112,0.7000000000000001 +2008,9,4,0,30,21.1,1.06,0.165,0.61,0,0,0,0,18,0,0,0,0,127.65,0.16,2.3000000000000003,82.60000000000001,1003,120,0.9 +2008,9,4,1,30,20.8,1.05,0.158,0.61,0,0,0,0,17.7,0,0,0,0,121.43,0.16,2.3000000000000003,82.55,1003,126,1 +2008,9,4,2,30,20.5,1.04,0.154,0.61,0,0,0,0,17.400000000000002,0,0,0,0,113.01,0.16,2.3000000000000003,82.44,1003,131,1.1 +2008,9,4,3,30,20.1,1.03,0.153,0.61,0,0,0,0,17.1,0,0,0,0,103.19,0.16,2.3000000000000003,83.02,1003,139,1.2000000000000002 +2008,9,4,4,30,20.8,1.03,0.158,0.61,0,0,0,0,17,0,0,0,0,92.53,0.16,2.3000000000000003,78.73,1004,145,1.3 +2008,9,4,5,30,22.900000000000002,1.02,0.168,0.61,53,292,97,0,17,53,292,0,97,81.37,0.16,2.3000000000000003,69.23,1004,152,1.8 +2008,9,4,6,30,25.3,1.23,0.15,0.61,88,576,282,0,17.1,88,576,0,282,70.29,0.16,2.4000000000000004,60.63,1004,165,2.3000000000000003 +2008,9,4,7,30,27.5,1.23,0.151,0.61,110,705,468,0,16.1,110,705,0,468,59.5,0.16,2.4000000000000004,49.89,1004,185,2.5 +2008,9,4,8,30,29.200000000000003,1.22,0.152,0.61,125,778,629,0,15,125,778,0,629,49.53,0.16,2.4000000000000004,42.050000000000004,1004,199,2.9000000000000004 +2008,9,4,9,30,30.3,1.29,0.139,0.61,127,828,749,0,14.600000000000001,127,828,0,749,41.24,0.16,2.5,38.49,1004,204,3.3000000000000003 +2008,9,4,10,30,31,1.21,0.133,0.61,129,851,818,0,14.3,129,851,0,818,35.99,0.16,2.5,36.230000000000004,1004,208,3.6 +2008,9,4,11,30,31.3,1.07,0.138,0.61,132,846,823,0,13.9,132,846,0,823,35.24,0.16,2.6,34.800000000000004,1004,212,4 +2008,9,4,12,30,31.200000000000003,0.96,0.148,0.61,135,824,773,0,13.700000000000001,135,824,0,773,39.27,0.16,2.5,34.54,1004,216,4.2 +2008,9,4,13,30,30.6,0.97,0.147,0.61,127,790,668,0,13.600000000000001,127,790,0,668,46.81,0.16,2.5,35.480000000000004,1004,219,4.1000000000000005 +2008,9,4,14,30,29.8,0.93,0.149,0.61,115,724,516,0,13.700000000000001,115,724,0,516,56.39,0.16,2.5,37.25,1003,220,3.8000000000000003 +2008,9,4,15,30,28.700000000000003,0.85,0.166,0.61,102,589,332,0,13.9,102,589,0,332,67.02,0.16,2.6,40.44,1003,216,3.3000000000000003 +2008,9,4,16,30,26.900000000000002,0.77,0.199,0.61,73,332,142,0,14.5,73,332,0,142,78.07000000000001,0.16,2.7,46.6,1003,207,2.5 +2008,9,4,17,30,25,0.66,0.226,0.61,7,4,7,1,15.700000000000001,7,4,0,7,88.92,0.16,2.8000000000000003,56.2,1003,194,1.7000000000000002 +2008,9,4,18,30,23.900000000000002,0.62,0.252,0.61,0,0,0,0,17.2,0,0,0,0,100.14,0.16,2.9000000000000004,65.97,1004,182,1.6 +2008,9,4,19,30,23.6,0.64,0.268,0.61,0,0,0,1,18.3,0,0,0,0,110.31,0.16,3,72.39,1004,172,1.7000000000000002 +2008,9,4,20,30,23.1,0.66,0.263,0.61,0,0,0,0,19.3,0,0,0,0,119.28,0.16,3,78.98,1004,163,1.9000000000000001 +2008,9,4,21,30,22.700000000000003,0.7000000000000001,0.25,0.61,0,0,0,7,19.8,0,0,0,0,126.32000000000001,0.16,3,83.74,1004,160,2.1 +2008,9,4,22,30,22.3,0.75,0.247,0.61,0,0,0,3,20.200000000000003,0,0,0,0,130.52,0.16,3.2,88.15,1004,158,2.2 +2008,9,4,23,30,22.200000000000003,0.76,0.261,0.61,0,0,0,4,20.700000000000003,0,0,0,0,131.12,0.16,3.3000000000000003,91.3,1004,153,2.5 +2008,9,5,0,30,22.200000000000003,0.77,0.274,0.61,0,0,0,3,21,0,0,0,0,127.97,0.16,3.3000000000000003,93.10000000000001,1004,146,2.8000000000000003 +2008,9,5,1,30,22.200000000000003,0.81,0.275,0.61,0,0,0,6,21.1,0,0,0,0,121.71000000000001,0.16,3.3000000000000003,93.36,1004,142,3 +2008,9,5,2,30,22.1,0.84,0.268,0.61,0,0,0,6,21,0,0,0,0,113.25,0.16,3.3000000000000003,93.22,1004,139,3.2 +2008,9,5,3,30,21.900000000000002,0.86,0.257,0.61,0,0,0,8,20.700000000000003,0,0,0,0,103.39,0.16,3.3000000000000003,93.17,1004,136,3.3000000000000003 +2008,9,5,4,30,22.200000000000003,0.88,0.244,0.61,0,0,0,7,20.5,0,0,0,0,92.72,0.16,3.2,89.98,1004,133,3.6 +2008,9,5,5,30,23.700000000000003,0.88,0.231,0.61,57,207,88,8,20.1,50,2,7,50,81.55,0.16,3.1,80.42,1005,137,4.2 +2008,9,5,6,30,25.8,0.62,0.29,0.61,122,393,253,1,20,122,393,0,253,70.48,0.16,3.1,70.38,1005,150,4.5 +2008,9,5,7,30,27.900000000000002,0.6,0.28400000000000003,0.61,157,547,433,0,19.6,157,547,0,433,59.7,0.16,3.1,60.72,1005,162,4.6000000000000005 +2008,9,5,8,30,29.700000000000003,0.6,0.278,0.61,177,639,590,8,19,286,370,0,526,49.77,0.16,3.2,52.69,1005,173,4.5 +2008,9,5,9,30,31.1,0.77,0.213,0.61,163,745,721,0,18.5,163,745,0,721,41.53,0.16,3.2,47.02,1005,183,4.5 +2008,9,5,10,30,32,0.77,0.217,0.61,170,765,787,0,18,170,765,0,787,36.33,0.16,3.2,43.45,1004,189,4.5 +2008,9,5,11,30,32.5,0.77,0.218,0.61,171,766,794,0,17.5,171,766,0,794,35.62,0.16,3.3000000000000003,40.95,1004,194,4.5 +2008,9,5,12,30,32.6,0.81,0.203,0.61,160,760,745,0,17.1,160,760,0,745,39.64,0.16,3.4000000000000004,39.67,1004,195,4.5 +2008,9,5,13,30,32.2,0.77,0.209,0.61,153,716,640,0,16.8,153,716,0,640,47.160000000000004,0.16,3.4000000000000004,39.81,1004,195,4.4 +2008,9,5,14,30,31.6,0.75,0.221,0.61,141,634,489,0,16.5,141,634,0,489,56.72,0.16,3.4000000000000004,40.480000000000004,1003,191,4.2 +2008,9,5,15,30,30.6,0.72,0.225,0.61,117,507,312,0,16.400000000000002,117,507,0,312,67.33,0.16,3.3000000000000003,42.43,1003,184,4.1000000000000005 +2008,9,5,16,30,28.900000000000002,0.7000000000000001,0.219,0.61,74,293,133,0,16.5,74,293,0,133,78.38,0.16,3.2,47.1,1003,174,3.4000000000000004 +2008,9,5,17,30,26.900000000000002,0.6900000000000001,0.211,0.61,0,0,0,0,17.1,0,0,0,0,89.2,0.16,3.1,55.050000000000004,1003,160,2.7 +2008,9,5,18,30,25.700000000000003,0.68,0.20600000000000002,0.61,0,0,0,0,18.1,0,0,0,0,100.46000000000001,0.16,3.1,62.86,1004,147,2.7 +2008,9,5,19,30,24.900000000000002,0.65,0.21,0.61,0,0,0,0,18.900000000000002,0,0,0,0,110.64,0.16,3,69.43,1004,138,3 +2008,9,5,20,30,24.400000000000002,0.58,0.23600000000000002,0.61,0,0,0,0,19.400000000000002,0,0,0,0,119.63,0.16,3,73.71000000000001,1004,131,3.2 +2008,9,5,21,30,24.200000000000003,0.48,0.28600000000000003,0.61,0,0,0,0,19.3,0,0,0,0,126.69,0.16,3.1,74.22,1004,128,3.4000000000000004 +2008,9,5,22,30,24.1,0.4,0.333,0.61,0,0,0,0,18.8,0,0,0,0,130.9,0.16,3.1,72.18,1004,128,3.4000000000000004 +2008,9,5,23,30,24,0.39,0.343,0.61,0,0,0,0,18,0,0,0,0,131.48,0.16,3.1,69.32000000000001,1004,130,3.4000000000000004 +2008,9,6,0,30,23.8,0.38,0.34400000000000003,0.61,0,0,0,0,17.3,0,0,0,0,128.29,0.16,3.1,66.79,1004,130,3.4000000000000004 +2008,9,6,1,30,23.700000000000003,0.34,0.389,0.61,0,0,0,0,16.5,0,0,0,0,121.98,0.16,3.2,63.88,1004,129,3.3000000000000003 +2008,9,6,2,30,24,0.31,0.47800000000000004,0.61,0,0,0,3,15.600000000000001,0,0,0,0,113.49000000000001,0.16,3.3000000000000003,59.42,1004,127,3.3000000000000003 +2008,9,6,3,30,24.1,0.27,0.547,0.61,0,0,0,0,14.700000000000001,0,0,0,0,103.60000000000001,0.16,3.3000000000000003,55.58,1004,125,3.2 +2008,9,6,4,30,24.5,0.23,0.582,0.61,0,0,0,0,13.8,0,0,0,0,92.91,0.16,3.3000000000000003,51.31,1004,123,3.3000000000000003 +2008,9,6,5,30,26.400000000000002,0.21,0.619,0.61,52,18,55,0,13.3,52,18,0,55,81.73,0.16,3.2,44.34,1004,126,4.1000000000000005 +2008,9,6,6,30,28.8,0.21,0.629,0.61,165,153,215,0,13.9,165,153,0,215,70.67,0.16,3.3000000000000003,39.980000000000004,1004,136,4.7 +2008,9,6,7,30,30.900000000000002,0.23,0.622,0.61,238,295,386,0,14.600000000000001,238,295,0,386,59.910000000000004,0.16,3.4000000000000004,37.230000000000004,1004,149,4.800000000000001 +2008,9,6,8,30,32.5,0.25,0.61,0.61,282,399,538,0,14.700000000000001,282,399,0,538,50.01,0.16,3.5,34.18,1004,159,5 +2008,9,6,9,30,33.4,0.22,0.712,0.61,337,405,639,0,15.100000000000001,337,405,0,639,41.82,0.16,3.6,33.25,1004,167,5.300000000000001 +2008,9,6,10,30,33.6,0.23,0.7020000000000001,0.61,350,441,704,5,15.600000000000001,392,17,0,406,36.68,0.16,3.6,34.09,1003,172,5.800000000000001 +2008,9,6,11,30,33.300000000000004,0.23,0.6990000000000001,0.61,356,445,716,0,16.2,356,445,0,716,36,0.16,3.7,35.95,1003,176,6 +2008,9,6,12,30,32.800000000000004,0.33,0.529,0.61,290,517,686,0,16.6,290,517,0,686,40.01,0.16,3.7,37.86,1003,178,5.800000000000001 +2008,9,6,13,30,32.2,0.31,0.556,0.61,278,452,583,0,16.7,278,452,0,583,47.51,0.16,3.6,39.410000000000004,1003,178,5.4 +2008,9,6,14,30,31.5,0.29,0.58,0.61,247,351,438,0,16.6,247,351,0,438,57.050000000000004,0.16,3.6,40.75,1003,178,4.9 +2008,9,6,15,30,30.6,0.28,0.581,0.61,186,221,270,0,16.6,186,221,0,270,67.65,0.16,3.6,43.08,1002,173,4.4 +2008,9,6,16,30,29.1,0.31,0.551,0.61,89,69,103,0,17.1,89,69,0,103,78.69,0.16,3.7,48.34,1002,163,3.5 +2008,9,6,17,30,27.6,0.33,0.526,0.61,0,0,0,8,17.900000000000002,0,0,7,0,89.47,0.16,3.7,55.69,1002,150,2.7 +2008,9,6,18,30,26.6,0.36,0.509,0.61,0,0,0,0,18.6,0,0,0,0,100.78,0.16,3.8000000000000003,61.71,1002,141,2.5 +2008,9,6,19,30,26,0.37,0.504,0.61,0,0,0,0,19,0,0,0,0,110.98,0.16,3.8000000000000003,65.35,1002,137,2.4000000000000004 +2008,9,6,20,30,25.6,0.38,0.51,0.61,0,0,0,0,19.1,0,0,0,0,119.99000000000001,0.16,3.8000000000000003,67.18,1002,135,2.4000000000000004 +2008,9,6,21,30,25.3,0.39,0.523,0.61,0,0,0,3,18.8,0,0,0,0,127.07000000000001,0.16,3.8000000000000003,67.24,1002,135,2.4000000000000004 +2008,9,6,22,30,25.1,0.38,0.534,0.61,0,0,0,0,18.400000000000002,0,0,0,0,131.29,0.16,3.8000000000000003,66.24,1002,135,2.4000000000000004 +2008,9,6,23,30,24.8,0.37,0.532,0.61,0,0,0,0,18,0,0,0,0,131.84,0.16,3.8000000000000003,65.85,1002,134,2.5 +2008,9,7,0,30,24.5,0.35000000000000003,0.519,0.61,0,0,0,0,17.7,0,0,0,0,128.62,0.16,3.7,65.96000000000001,1002,132,2.4000000000000004 +2008,9,7,1,30,24.3,0.35000000000000003,0.503,0.61,0,0,0,0,17.6,0,0,0,0,122.26,0.16,3.6,66.11,1002,131,2.4000000000000004 +2008,9,7,2,30,24.1,0.36,0.499,0.61,0,0,0,0,17.5,0,0,0,0,113.73,0.16,3.5,66.45,1001,129,2.4000000000000004 +2008,9,7,3,30,23.900000000000002,0.37,0.505,0.61,0,0,0,3,17.3,0,0,0,0,103.81,0.16,3.5,66.77,1001,129,2.3000000000000003 +2008,9,7,4,30,24.3,0.38,0.513,0.61,0,0,0,0,17.3,0,0,0,0,93.10000000000001,0.16,3.6,64.87,1002,130,2.4000000000000004 +2008,9,7,5,30,25.700000000000003,0.38,0.53,0.61,56,34,61,3,17.3,56,34,5,61,81.91,0.16,3.6,59.75,1002,135,3 +2008,9,7,6,30,27.3,0.37,0.5660000000000001,0.61,159,188,221,3,17.900000000000002,133,2,0,133,70.86,0.16,3.7,56.61,1002,149,3.6 +2008,9,7,7,30,28.400000000000002,0.36,0.606,0.61,234,310,388,8,19.3,300,154,0,377,60.120000000000005,0.16,3.8000000000000003,57.68,1003,168,3.7 +2008,9,7,8,30,29.1,0.35000000000000003,0.672,0.61,299,372,536,7,19.6,306,49,0,337,50.25,0.16,4,56.56,1003,182,3.6 +2008,9,7,9,30,29.6,0.58,0.382,0.61,230,606,679,0,19.700000000000003,230,606,0,679,42.11,0.16,4.1000000000000005,55.22,1003,188,3.5 +2008,9,7,10,30,30.1,0.53,0.425,0.61,256,603,738,5,19.200000000000003,411,64,0,462,37.03,0.16,4.1000000000000005,51.95,1003,191,3.5 +2008,9,7,11,30,30.400000000000002,0.46,0.481,0.61,280,570,738,7,18.8,378,50,0,418,36.38,0.16,4.1000000000000005,49.86,1003,194,3.4000000000000004 +2008,9,7,12,30,30.200000000000003,0.5,0.434,0.61,254,580,696,8,18.5,378,216,7,542,40.39,0.16,4,49.59,1003,198,3.3000000000000003 +2008,9,7,13,30,29.900000000000002,0.46,0.45,0.61,241,520,589,7,18.3,282,26,0,300,47.86,0.16,3.9000000000000004,49.68,1003,201,3 +2008,9,7,14,30,29.8,0.43,0.445,0.61,211,437,446,6,17.900000000000002,202,13,0,209,57.38,0.16,3.8000000000000003,48.88,1002,206,2.9000000000000004 +2008,9,7,15,30,29.3,0.45,0.429,0.61,160,314,278,8,17.7,160,314,5,278,67.96000000000001,0.16,3.7,49.57,1002,216,2.7 +2008,9,7,16,30,27.700000000000003,0.51,0.40800000000000003,0.61,84,129,109,0,17.7,84,129,0,109,79,0.16,3.7,54.38,1002,226,1.8 +2008,9,7,17,30,26,0.54,0.383,0.61,0,0,0,7,18.1,0,0,7,0,89.74,0.16,3.7,61.620000000000005,1002,237,0.9 +2008,9,7,18,30,25.400000000000002,0.54,0.365,0.61,0,0,0,0,18.5,0,0,0,0,101.11,0.16,3.7,65.75,1003,244,0.7000000000000001 +2008,9,7,19,30,25.3,0.54,0.355,0.61,0,0,0,3,18.7,0,0,0,0,111.32000000000001,0.16,3.9000000000000004,66.72,1003,224,0.4 +2008,9,7,20,30,25,0.56,0.34800000000000003,0.61,0,0,0,0,18.8,0,0,0,0,120.35000000000001,0.16,3.9000000000000004,68.37,1003,169,0.30000000000000004 +2008,9,7,21,30,24.6,0.58,0.34400000000000003,0.61,0,0,0,0,18.900000000000002,0,0,0,0,127.45,0.16,3.9000000000000004,70.44,1003,138,0.6000000000000001 +2008,9,7,22,30,24.1,0.61,0.338,0.61,0,0,0,0,19,0,0,0,0,131.67000000000002,0.16,3.9000000000000004,73.3,1003,145,0.8 +2008,9,7,23,30,23.6,0.64,0.331,0.61,0,0,0,0,19.3,0,0,0,0,132.21,0.16,3.8000000000000003,76.62,1003,154,0.9 +2008,9,8,0,30,23.200000000000003,0.64,0.318,0.61,0,0,0,0,19.5,0,0,0,0,128.94,0.16,3.7,79.92,1003,159,0.9 +2008,9,8,1,30,22.900000000000002,0.65,0.305,0.61,0,0,0,0,19.900000000000002,0,0,0,0,122.54,0.16,3.6,83.08,1003,161,0.9 +2008,9,8,2,30,22.6,0.68,0.301,0.61,0,0,0,0,20.200000000000003,0,0,0,0,113.97,0.16,3.5,86.4,1003,162,0.9 +2008,9,8,3,30,22.3,0.71,0.281,0.61,0,0,0,0,20.5,0,0,0,0,104.02,0.16,3.4000000000000004,89.83,1003,158,0.9 +2008,9,8,4,30,22.700000000000003,0.75,0.249,0.61,0,0,0,0,20.8,0,0,0,0,93.3,0.16,3.2,88.94,1003,156,0.9 +2008,9,8,5,30,24.3,0.8200000000000001,0.215,0.61,53,201,81,0,20.900000000000002,53,201,0,81,82.09,0.16,3,81.44,1004,175,1.2000000000000002 +2008,9,8,6,30,26.5,0.92,0.181,0.61,94,511,260,0,20.200000000000003,94,511,0,260,71.05,0.16,2.8000000000000003,68.26,1004,213,1.7000000000000002 +2008,9,8,7,30,28.200000000000003,1,0.163,0.61,113,677,449,0,19.1,113,677,0,449,60.33,0.16,2.6,57.71,1005,241,2.2 +2008,9,8,8,30,29.6,1.06,0.15,0.61,123,772,615,0,18.1,123,772,0,615,50.49,0.16,2.4000000000000004,50.14,1005,253,2.7 +2008,9,8,9,30,30.6,1.16,0.139,0.61,127,830,740,0,17.1,127,830,0,740,42.4,0.16,2.2,44.28,1005,259,3.1 +2008,9,8,10,30,31.3,1.24,0.127,0.61,126,865,814,0,15.700000000000001,126,865,0,814,37.38,0.16,2,39.03,1005,263,3.5 +2008,9,8,11,30,31.700000000000003,1.29,0.11800000000000001,0.61,122,880,828,0,14.100000000000001,122,880,0,828,36.76,0.16,1.8,34.38,1005,266,3.8000000000000003 +2008,9,8,12,30,31.700000000000003,1.41,0.101,0.61,111,887,783,0,12.100000000000001,111,887,0,783,40.77,0.16,1.6,30.17,1004,270,4.1000000000000005 +2008,9,8,13,30,31.400000000000002,1.44,0.096,0.61,103,865,680,0,10.100000000000001,103,865,0,680,48.22,0.16,1.4000000000000001,26.96,1004,273,4.2 +2008,9,8,14,30,30.6,1.46,0.093,0.61,92,814,527,0,8.6,92,814,0,527,57.71,0.16,1.3,25.39,1004,277,4.2 +2008,9,8,15,30,29.5,1.48,0.093,0.61,77,712,340,0,7.6000000000000005,77,712,0,340,68.28,0.16,1.2000000000000002,25.29,1004,283,4.1000000000000005 +2008,9,8,16,30,27.3,1.49,0.094,0.61,51,500,144,0,7.300000000000001,51,500,0,144,79.31,0.16,1.2000000000000002,28.28,1005,287,3.4000000000000004 +2008,9,8,17,30,24.700000000000003,1.46,0.09,0.61,0,0,0,0,8.5,0,0,0,0,90.01,0.16,1.3,35.69,1005,293,2.8000000000000003 +2008,9,8,18,30,23.200000000000003,1.43,0.085,0.61,0,0,0,0,10.700000000000001,0,0,0,0,101.43,0.16,1.3,45.28,1006,303,2.6 +2008,9,8,19,30,22.200000000000003,1.42,0.08600000000000001,0.61,0,0,0,0,12.3,0,0,0,0,111.67,0.16,1.3,53.6,1006,316,2.3000000000000003 +2008,9,8,20,30,21.5,1.44,0.091,0.61,0,0,0,0,13.3,0,0,0,0,120.72,0.16,1.4000000000000001,59.52,1006,329,2 +2008,9,8,21,30,21,1.46,0.096,0.61,0,0,0,0,13.5,0,0,0,0,127.83,0.16,1.4000000000000001,62.29,1006,340,1.8 +2008,9,8,22,30,20.700000000000003,1.48,0.099,0.61,0,0,0,0,13,0,0,0,0,132.06,0.16,1.4000000000000001,61.25,1006,350,1.6 +2008,9,8,23,30,20.6,1.49,0.1,0.61,0,0,0,0,12.100000000000001,0,0,0,0,132.58,0.16,1.4000000000000001,58.24,1006,178,1.5 +2008,9,9,0,30,20.700000000000003,1.48,0.099,0.61,0,0,0,0,11.4,0,0,0,0,129.27,0.16,1.4000000000000001,55.34,1006,5,1.5 +2008,9,9,1,30,20.900000000000002,1.44,0.099,0.61,0,0,0,0,10.9,0,0,0,0,122.82000000000001,0.16,1.4000000000000001,52.9,1006,12,1.4000000000000001 +2008,9,9,2,30,21,1.3800000000000001,0.1,0.61,0,0,0,0,10.600000000000001,0,0,0,0,114.2,0.16,1.4000000000000001,51.300000000000004,1006,18,1.3 +2008,9,9,3,30,20.8,1.31,0.10400000000000001,0.61,0,0,0,0,10.5,0,0,0,0,104.23,0.16,1.4000000000000001,51.63,1006,27,1.2000000000000002 +2008,9,9,4,30,20.8,1.21,0.112,0.61,0,0,0,0,10.600000000000001,0,0,0,0,93.49,0.16,1.5,52.13,1007,40,1.1 +2008,9,9,5,30,22.700000000000003,1.12,0.122,0.61,45,339,90,0,10.9,45,339,0,90,82.28,0.16,1.6,47.13,1007,52,1.2000000000000002 +2008,9,9,6,30,26,1.03,0.132,0.61,83,593,274,0,11.100000000000001,83,593,0,274,71.24,0.16,1.7000000000000002,39.44,1007,31,1.2000000000000002 +2008,9,9,7,30,28.900000000000002,0.97,0.139,0.61,107,720,461,0,10.100000000000001,107,720,0,461,60.54,0.16,1.7000000000000002,30.95,1008,162,1 +2008,9,9,8,30,30.8,0.93,0.14400000000000002,0.61,123,788,622,0,8.8,123,788,0,622,50.74,0.16,1.8,25.44,1008,308,1.4000000000000001 +2008,9,9,9,30,32.1,0.9500000000000001,0.132,0.61,127,842,745,0,7.6000000000000005,127,842,0,745,42.7,0.16,1.8,21.79,1007,295,1.9000000000000001 +2008,9,9,10,30,33.1,0.9400000000000001,0.133,0.61,131,860,812,0,6.7,131,860,0,812,37.730000000000004,0.16,1.8,19.42,1007,291,2.5 +2008,9,9,11,30,33.6,0.9400000000000001,0.133,0.61,132,860,817,0,6.300000000000001,132,860,0,817,37.15,0.16,1.9000000000000001,18.41,1007,291,3.1 +2008,9,9,12,30,33.800000000000004,0.9400000000000001,0.13,0.61,127,845,763,0,6.4,127,845,0,763,41.15,0.16,2,18.26,1006,292,3.6 +2008,9,9,13,30,33.5,0.91,0.136,0.61,122,803,653,0,6.6000000000000005,122,803,0,653,48.58,0.16,2,18.88,1006,295,3.8000000000000003 +2008,9,9,14,30,32.9,0.8300000000000001,0.15,0.61,115,718,495,0,6.9,115,718,0,495,58.050000000000004,0.16,2.1,19.830000000000002,1006,299,3.8000000000000003 +2008,9,9,15,30,31.700000000000003,0.59,0.226,0.61,118,498,300,0,7.2,118,498,0,300,68.60000000000001,0.16,2.2,21.75,1005,298,3.3000000000000003 +2008,9,9,16,30,29,0.49,0.268,0.61,74,210,112,0,7.9,74,210,0,112,79.63,0.16,2.2,26.59,1006,288,2.6 +2008,9,9,17,30,26.200000000000003,0.42,0.315,0.61,0,0,0,0,9.4,0,0,0,0,90.86,0.16,2.3000000000000003,34.74,1006,286,2.2 +2008,9,9,18,30,24.8,0.37,0.36,0.61,0,0,0,0,11.100000000000001,0,0,0,0,101.76,0.16,2.4000000000000004,42.37,1006,296,2 +2008,9,9,19,30,24.1,0.36,0.386,0.61,0,0,0,0,12.3,0,0,0,0,112.01,0.16,2.4000000000000004,47.59,1007,308,1.5 +2008,9,9,20,30,23.8,0.36,0.389,0.61,0,0,0,0,12.700000000000001,0,0,0,0,121.08,0.16,2.4000000000000004,49.83,1007,320,1.1 +2008,9,9,21,30,23.900000000000002,0.37,0.373,0.61,0,0,0,0,12.5,0,0,0,0,128.21,0.16,2.4000000000000004,48.910000000000004,1007,333,0.8 +2008,9,9,22,30,24.1,0.38,0.34600000000000003,0.61,0,0,0,0,11.9,0,0,0,0,132.44,0.16,2.3000000000000003,46.33,1007,176,0.5 +2008,9,9,23,30,24.1,0.41000000000000003,0.316,0.61,0,0,0,0,11.100000000000001,0,0,0,0,132.94,0.16,2.3000000000000003,44.06,1007,46,0.4 +2008,9,10,0,30,24.1,0.45,0.291,0.61,0,0,0,0,10.4,0,0,0,0,129.59,0.16,2.3000000000000003,41.94,1006,94,0.5 +2008,9,10,1,30,23.8,0.49,0.271,0.61,0,0,0,0,9.700000000000001,0,0,0,0,123.10000000000001,0.16,2.2,40.84,1006,111,0.7000000000000001 +2008,9,10,2,30,23.400000000000002,0.53,0.258,0.61,0,0,0,0,9.1,0,0,0,0,114.44,0.16,2.2,40.17,1006,118,0.8 +2008,9,10,3,30,23,0.55,0.248,0.61,0,0,0,0,8.8,0,0,0,0,104.44,0.16,2.2,40.26,1006,126,1 +2008,9,10,4,30,23,0.56,0.242,0.61,0,0,0,0,8.8,0,0,0,0,93.68,0.16,2.3000000000000003,40.410000000000004,1007,140,1 +2008,9,10,5,30,24.400000000000002,0.5700000000000001,0.23900000000000002,0.61,53,157,74,0,9.200000000000001,53,157,0,74,82.46000000000001,0.16,2.3000000000000003,38.01,1007,162,1.2000000000000002 +2008,9,10,6,30,26.8,0.52,0.262,0.61,115,404,244,0,10.100000000000001,115,404,0,244,71.43,0.16,2.4000000000000004,35.03,1007,190,1.3 +2008,9,10,7,30,29.3,0.53,0.265,0.61,151,561,424,0,11.4,151,561,0,424,60.75,0.16,2.4000000000000004,33.04,1007,219,1 +2008,9,10,8,30,31.900000000000002,0.53,0.269,0.61,174,649,583,0,11.700000000000001,174,649,0,583,50.980000000000004,0.16,2.4000000000000004,29.060000000000002,1007,249,0.9 +2008,9,10,9,30,34,0.52,0.278,0.61,191,694,699,0,10.9,191,694,0,699,43,0.16,2.4000000000000004,24.48,1006,266,1.5 +2008,9,10,10,30,35.300000000000004,0.52,0.278,0.61,198,719,765,0,10.5,198,719,0,765,38.08,0.16,2.4000000000000004,22.23,1006,268,2.3000000000000003 +2008,9,10,11,30,35.9,0.51,0.28400000000000003,0.61,202,715,769,0,10.8,202,715,0,769,37.53,0.16,2.5,21.92,1005,271,3 +2008,9,10,12,30,36,0.6,0.222,0.61,169,747,728,0,11,169,747,0,728,41.53,0.16,2.5,22.07,1005,271,3.4000000000000004 +2008,9,10,13,30,35.5,0.5700000000000001,0.233,0.61,163,694,619,0,11.100000000000001,163,694,0,619,48.94,0.16,2.5,22.87,1005,269,3.6 +2008,9,10,14,30,34.7,0.55,0.243,0.61,149,604,465,0,11.200000000000001,149,604,0,465,58.39,0.16,2.6,24.080000000000002,1004,264,3.6 +2008,9,10,15,30,33.1,0.54,0.256,0.61,122,452,284,0,11.5,122,452,0,284,68.93,0.16,2.7,26.84,1004,256,3.6 +2008,9,10,16,30,30.400000000000002,0.54,0.269,0.61,71,199,106,0,12.200000000000001,71,199,0,106,79.94,0.16,2.8000000000000003,32.75,1004,248,3.3000000000000003 +2008,9,10,17,30,27.8,0.53,0.28800000000000003,0.61,0,0,0,0,13.700000000000001,0,0,0,0,91.18,0.16,3,42.06,1005,246,2.8000000000000003 +2008,9,10,18,30,26.3,0.52,0.305,0.61,0,0,0,0,15.3,0,0,0,0,102.09,0.16,3.1,50.81,1005,247,1.9000000000000001 +2008,9,10,19,30,25.6,0.52,0.308,0.61,0,0,0,0,16.1,0,0,0,0,112.35000000000001,0.16,3.2,55.75,1005,242,0.9 +2008,9,10,20,30,25.1,0.54,0.302,0.61,0,0,0,0,16.5,0,0,0,0,121.44,0.16,3.3000000000000003,58.95,1005,185,0.4 +2008,9,10,21,30,24.6,0.55,0.291,0.61,0,0,0,0,16.6,0,0,0,0,128.6,0.16,3.2,60.89,1005,122,0.6000000000000001 +2008,9,10,22,30,23.900000000000002,0.55,0.28,0.61,0,0,0,0,16.3,0,0,0,0,132.83,0.16,3.1,62.53,1005,108,1 +2008,9,10,23,30,23.700000000000003,0.54,0.281,0.61,0,0,0,0,15.9,0,0,0,0,133.31,0.16,3.1,61.53,1005,108,1.1 +2008,9,11,0,30,23.8,0.51,0.302,0.61,0,0,0,0,15.200000000000001,0,0,0,0,129.92000000000002,0.16,3,58.6,1004,111,1.1 +2008,9,11,1,30,24.3,0.48,0.339,0.61,0,0,0,0,14.4,0,0,0,0,123.38000000000001,0.16,3.1,54.14,1004,114,0.8 +2008,9,11,2,30,24.700000000000003,0.46,0.376,0.61,0,0,0,0,13.8,0,0,0,0,114.68,0.16,3.1,50.620000000000005,1004,94,0.5 +2008,9,11,3,30,24.400000000000002,0.45,0.398,0.61,0,0,0,1,13.600000000000001,0,0,0,0,104.65,0.16,3,51.02,1004,72,0.5 +2008,9,11,4,30,24.200000000000003,0.44,0.40800000000000003,0.61,0,0,0,5,13.5,0,0,0,0,93.87,0.16,3,51.300000000000004,1004,82,0.7000000000000001 +2008,9,11,5,30,25.5,0.42,0.41200000000000003,0.61,52,52,59,3,13.200000000000001,52,52,5,59,82.65,0.16,3,46.57,1004,104,1.1 +2008,9,11,6,30,28,0.34,0.534,0.61,151,193,212,0,12.9,151,193,0,212,71.63,0.16,2.9000000000000004,39.29,1004,132,1.4000000000000001 +2008,9,11,7,30,30.6,0.33,0.523,0.61,216,351,386,0,12.3,216,351,0,386,60.96,0.16,2.8000000000000003,32.63,1003,176,1.4000000000000001 +2008,9,11,8,30,33,0.33,0.525,0.61,257,450,539,0,11,257,450,0,539,51.230000000000004,0.16,2.8000000000000003,26.05,1003,219,1.6 +2008,9,11,9,30,34.6,0.49,0.323,0.61,210,651,684,0,9.700000000000001,210,651,0,684,43.300000000000004,0.16,2.8000000000000003,21.82,1003,233,1.8 +2008,9,11,10,30,35.5,0.5,0.327,0.61,219,675,748,0,9.600000000000001,219,675,0,748,38.44,0.16,2.8000000000000003,20.7,1003,230,2 +2008,9,11,11,30,35.9,0.51,0.333,0.61,222,674,754,0,10,222,674,0,754,37.92,0.16,2.8000000000000003,20.77,1002,224,2.5 +2008,9,11,12,30,35.5,0.44,0.435,0.61,255,581,687,0,10.600000000000001,255,581,0,687,41.92,0.16,2.8000000000000003,22.14,1002,223,3.2 +2008,9,11,13,30,34.5,0.45,0.444,0.61,239,524,580,0,11.3,239,524,0,580,49.300000000000004,0.16,2.9000000000000004,24.53,1002,224,3.8000000000000003 +2008,9,11,14,30,33,0.46,0.451,0.61,209,430,432,0,12.200000000000001,209,430,0,432,58.730000000000004,0.16,3,28.23,1002,222,3.9000000000000004 +2008,9,11,15,30,31.200000000000003,0.45,0.463,0.61,160,279,259,0,13.100000000000001,160,279,0,259,69.25,0.16,3,33.13,1002,216,3.4000000000000004 +2008,9,11,16,30,29.1,0.45,0.47500000000000003,0.61,76,77,89,3,13.9,22,0,0,22,80.26,0.16,3,39.43,1002,207,2.3000000000000003 +2008,9,11,17,30,27.200000000000003,0.44,0.499,0.61,0,0,0,3,15.100000000000001,0,0,0,0,91.5,0.16,3,47.65,1002,194,1.2000000000000002 +2008,9,11,18,30,26.3,0.43,0.521,0.61,0,0,0,3,16.400000000000002,0,0,0,0,102.42,0.16,2.9000000000000004,54.33,1002,172,0.9 +2008,9,11,19,30,25.700000000000003,0.41000000000000003,0.535,0.61,0,0,0,5,17.1,0,0,0,0,112.7,0.16,2.9000000000000004,58.93,1002,144,1 +2008,9,11,20,30,25.3,0.39,0.56,0.61,0,0,0,3,17.2,0,0,0,0,121.81,0.16,3,60.85,1001,124,1.3 +2008,9,11,21,30,25.3,0.37,0.598,0.61,0,0,0,3,16.8,0,0,0,0,128.98,0.16,3,59.25,1001,119,1.6 +2008,9,11,22,30,25.200000000000003,0.34,0.611,0.61,0,0,0,4,16.1,0,0,0,0,133.22,0.16,3.1,56.96,1000,136,1.6 +2008,9,11,23,30,24.900000000000002,0.35000000000000003,0.627,0.61,0,0,0,5,16.1,0,0,0,0,133.68,0.16,3.3000000000000003,58.22,1001,179,1.9000000000000001 +2008,9,12,0,30,24.400000000000002,0.39,0.667,0.61,0,0,0,4,18.2,0,0,0,0,130.25,0.16,3.5,68.39,1002,204,2 +2008,9,12,1,30,23.900000000000002,0.4,0.685,0.61,0,0,0,4,20.900000000000002,0,0,0,0,123.66,0.16,3.6,83.3,1001,164,1.5 +2008,9,12,2,30,23.6,0.36,0.684,0.61,0,0,0,4,21.6,0,0,0,0,114.92,0.16,3.6,88.54,1000,115,1.8 +2008,9,12,3,30,23.5,0.33,0.707,0.61,0,0,0,7,20.8,0,0,0,0,104.86,0.16,3.7,85,1000,106,2.2 +2008,9,12,4,30,23.700000000000003,0.32,0.771,0.61,0,0,0,7,19.5,0,0,0,0,94.06,0.16,3.7,77.55,1000,107,2.2 +2008,9,12,5,30,24.8,0.31,0.766,0.61,36,6,36,8,18,36,6,5,36,82.83,0.16,3.7,65.94,1000,109,2.5 +2008,9,12,6,30,26.6,0.3,0.635,0.61,157,142,202,6,16.5,5,0,0,5,71.82000000000001,0.16,3.6,53.980000000000004,1000,142,2.5 +2008,9,12,7,30,27.900000000000002,0.35000000000000003,0.577,0.61,224,313,375,7,15.8,144,3,0,146,61.18,0.16,3.7,47.84,1001,188,2.7 +2008,9,12,8,30,28.5,0.38,0.581,0.61,268,412,525,7,17,93,0,0,93,51.480000000000004,0.16,3.8000000000000003,49.65,1001,203,3 +2008,9,12,9,30,28.8,0.54,0.427,0.61,244,569,656,6,17.8,94,0,0,94,43.6,0.16,4,51.47,1001,200,3.2 +2008,9,12,10,30,28.8,0.54,0.47000000000000003,0.61,269,570,713,7,18.400000000000002,407,240,0,594,38.800000000000004,0.16,4.1000000000000005,53.27,1001,197,3.4000000000000004 +2008,9,12,11,30,28.400000000000002,0.53,0.493,0.61,278,559,717,7,18.8,377,53,0,419,38.31,0.16,4.1000000000000005,56.17,1001,192,3.2 +2008,9,12,12,30,28.1,0.63,0.40800000000000003,0.61,239,593,677,8,19,371,268,0,570,42.300000000000004,0.16,4.1000000000000005,57.89,1001,184,2.7 +2008,9,12,13,30,28,0.62,0.404,0.61,220,546,574,8,18.8,321,282,7,503,49.660000000000004,0.16,4,57.42,1001,152,2.5 +2008,9,12,14,30,28.5,0.67,0.34700000000000003,0.61,177,505,436,8,18,268,200,0,371,59.07,0.16,3.7,52.910000000000004,999,116,2.9000000000000004 +2008,9,12,15,30,28.5,0.68,0.29,0.61,126,407,268,4,16.8,11,0,0,11,69.58,0.16,3.8000000000000003,49.17,999,136,2.6 +2008,9,12,16,30,26.8,0.61,0.326,0.61,70,142,93,7,16.8,3,0,0,3,80.57000000000001,0.16,4.2,54.35,999,190,3.6 +2008,9,12,17,30,24.5,0.54,0.398,0.61,0,0,0,7,19,0,0,0,0,91.82000000000001,0.16,4.3,71.41,1001,192,4.4 +2008,9,12,18,30,23.400000000000002,0.52,0.386,0.61,0,0,0,6,19.900000000000002,0,0,0,0,102.75,0.16,3.9000000000000004,80.49,1000,145,3.7 +2008,9,12,19,30,23.200000000000003,0.53,0.315,0.61,0,0,0,9,19.700000000000003,0,0,0,0,113.05,0.16,3.7,80.95,1000,120,3.3000000000000003 +2008,9,12,20,30,22.900000000000002,0.53,0.295,0.61,0,0,0,9,19.6,0,0,0,0,122.18,0.16,3.7,81.65,1000,121,2.4000000000000004 +2008,9,12,21,30,22.6,0.52,0.295,0.61,0,0,0,9,19.400000000000002,0,0,0,0,129.37,0.16,3.7,82.12,999,124,1.8 +2008,9,12,22,30,22.5,0.52,0.305,0.61,0,0,0,6,19.1,0,0,0,0,133.61,0.16,3.7,81.35000000000001,999,129,1.6 +2008,9,12,23,30,22.400000000000002,0.5,0.324,0.61,0,0,0,7,18.8,0,0,0,0,134.05,0.16,3.6,80.34,999,137,1.5 +2008,9,13,0,30,22.200000000000003,0.47000000000000003,0.327,0.61,0,0,0,0,18.6,0,0,0,0,130.58,0.16,3.6,79.95,999,148,1.6 +2008,9,13,1,30,21.900000000000002,0.45,0.312,0.61,0,0,0,0,18.6,0,0,0,0,123.94,0.16,3.6,81.38,998,157,1.6 +2008,9,13,2,30,21.700000000000003,0.44,0.315,0.61,0,0,0,0,18.900000000000002,0,0,0,0,115.16,0.16,3.6,84.22,998,167,1.6 +2008,9,13,3,30,21.8,0.44,0.34400000000000003,0.61,0,0,0,0,19.5,0,0,0,0,105.07000000000001,0.16,3.8000000000000003,86.8,998,185,1.7000000000000002 +2008,9,13,4,30,22.200000000000003,0.45,0.397,0.61,0,0,0,0,20.3,0,0,0,0,94.26,0.16,3.9000000000000004,89.07000000000001,998,207,2 +2008,9,13,5,30,22.8,0.44,0.431,0.61,50,41,55,7,20.8,33,0,7,33,83.02,0.16,3.9000000000000004,88.25,998,221,2.9000000000000004 +2008,9,13,6,30,23.5,0.43,0.429,0.61,139,245,215,7,20.700000000000003,5,0,0,5,72.01,0.16,3.9000000000000004,84.26,998,226,3.9000000000000004 +2008,9,13,7,30,24.200000000000003,0.43,0.388,0.61,185,431,391,6,20.1,73,0,0,73,61.39,0.16,3.8000000000000003,77.76,998,228,4.6000000000000005 +2008,9,13,8,30,24.8,0.45,0.341,0.61,201,566,551,8,19.400000000000002,306,91,0,362,51.74,0.16,3.7,71.88,998,229,5.300000000000001 +2008,9,13,9,30,25,0.65,0.20600000000000002,0.61,159,734,688,2,18.900000000000002,406,141,0,508,43.910000000000004,0.16,3.6,68.78,998,233,6 +2008,9,13,10,30,24.900000000000002,0.63,0.191,0.61,159,772,757,0,18.3,159,772,0,757,39.15,0.16,3.3000000000000003,66.8,999,239,6.300000000000001 +2008,9,13,11,30,24.900000000000002,0.62,0.18,0.61,155,789,771,1,17.6,155,789,0,771,38.7,0.16,2.9000000000000004,63.78,999,246,6.300000000000001 +2008,9,13,12,30,25,0.68,0.15,0.61,137,808,731,3,16.400000000000002,422,152,0,534,42.69,0.16,2.4000000000000004,59.04,999,249,6.1000000000000005 +2008,9,13,13,30,24.700000000000003,0.73,0.155,0.61,131,776,630,7,15,288,344,0,509,50.03,0.16,1.9000000000000001,54.7,999,250,5.7 +2008,9,13,14,30,24,0.6900000000000001,0.177,0.61,126,681,473,6,13.600000000000001,247,80,0,287,59.410000000000004,0.16,1.8,52.1,999,248,5.300000000000001 +2008,9,13,15,30,23,0.66,0.191,0.61,106,527,287,7,12.8,175,192,0,241,69.9,0.16,1.8,52.53,999,246,4.6000000000000005 +2008,9,13,16,30,21.700000000000003,0.68,0.193,0.61,62,264,103,1,12.9,62,264,0,103,80.89,0.16,1.9000000000000001,57.51,999,243,3.5 +2008,9,13,17,30,20.700000000000003,0.73,0.186,0.61,0,0,0,6,13.9,0,0,0,0,92.15,0.16,2,65.03,1000,240,2.6 +2008,9,13,18,30,20.1,0.74,0.182,0.61,0,0,0,6,14.4,0,0,0,0,103.08,0.16,2,69.55,1000,237,2.3000000000000003 +2008,9,13,19,30,19.700000000000003,0.73,0.179,0.61,0,0,0,7,14.4,0,0,0,0,113.39,0.16,2.1,71.48,1000,236,2.2 +2008,9,13,20,30,19.3,0.73,0.179,0.61,0,0,0,7,14.3,0,0,0,0,122.54,0.16,2.1,72.65,1000,236,2.1 +2008,9,13,21,30,19.1,0.73,0.188,0.61,0,0,0,7,14,0,0,0,0,129.75,0.16,2.1,72.53,1000,237,2 +2008,9,13,22,30,19,0.72,0.199,0.61,0,0,0,6,13.8,0,0,0,0,134.01,0.16,2.2,71.82000000000001,1000,238,1.9000000000000001 +2008,9,13,23,30,18.900000000000002,0.72,0.216,0.61,0,0,0,6,13.600000000000001,0,0,0,0,134.42000000000002,0.16,2.3000000000000003,71.12,1000,238,1.9000000000000001 +2008,9,14,0,30,18.900000000000002,0.71,0.23500000000000001,0.61,0,0,0,6,13.3,0,0,0,0,130.9,0.16,2.3000000000000003,69.97,1000,239,1.7000000000000002 +2008,9,14,1,30,18.8,0.7000000000000001,0.246,0.61,0,0,0,6,13.100000000000001,0,0,0,0,124.22,0.16,2.3000000000000003,69.62,999,243,1.4000000000000001 +2008,9,14,2,30,18.8,0.6900000000000001,0.248,0.61,0,0,0,6,13,0,0,0,0,115.39,0.16,2.3000000000000003,69.24,999,247,1.3 +2008,9,14,3,30,18.6,0.7000000000000001,0.252,0.61,0,0,0,7,13.100000000000001,0,0,0,0,105.28,0.16,2.4000000000000004,70.28,999,242,1.2000000000000002 +2008,9,14,4,30,18.7,0.72,0.246,0.61,0,0,0,6,13.3,0,0,0,0,94.45,0.16,2.4000000000000004,70.97,999,234,1.1 +2008,9,14,5,30,19.5,0.75,0.229,0.61,49,155,67,7,13.9,32,0,7,32,83.2,0.16,2.4000000000000004,69.88,999,230,1.5 +2008,9,14,6,30,20.5,0.79,0.21,0.61,100,460,240,6,13.600000000000001,71,2,0,72,72.21000000000001,0.16,2.4000000000000004,64.68,999,228,2.2 +2008,9,14,7,30,21.5,0.8300000000000001,0.191,0.61,123,636,425,6,13.4,153,9,0,158,61.61,0.16,2.4000000000000004,59.92,999,227,2.7 +2008,9,14,8,30,22.400000000000002,0.84,0.177,0.61,134,734,586,7,13,274,49,0,304,51.99,0.16,2.4000000000000004,55.25,999,227,3.1 +2008,9,14,9,30,23.200000000000003,0.93,0.155,0.61,134,801,708,6,12.5,291,24,0,308,44.21,0.16,2.4000000000000004,51.02,999,228,3.4000000000000004 +2008,9,14,10,30,23.6,0.96,0.153,0.61,137,825,773,6,12.200000000000001,368,189,0,514,39.52,0.16,2.4000000000000004,48.72,999,229,3.6 +2008,9,14,11,30,23.6,0.98,0.151,0.61,137,828,779,7,12,305,22,0,322,39.09,0.16,2.4000000000000004,48.07,999,229,3.7 +2008,9,14,12,30,23.400000000000002,0.97,0.153,0.61,133,809,724,8,11.8,351,138,7,452,43.08,0.16,2.4000000000000004,48.06,999,226,3.6 +2008,9,14,13,30,23,0.96,0.153,0.61,124,770,615,2,11.600000000000001,357,96,0,418,50.39,0.16,2.4000000000000004,48.71,999,223,3.4000000000000004 +2008,9,14,14,30,22.400000000000002,0.96,0.152,0.61,110,698,462,7,11.4,240,174,0,328,59.75,0.16,2.4000000000000004,49.800000000000004,999,221,3 +2008,9,14,15,30,21.700000000000003,0.98,0.159,0.61,90,560,280,9,11.200000000000001,32,0,0,32,70.23,0.16,2.4000000000000004,51.36,999,220,2.5 +2008,9,14,16,30,20.400000000000002,0.99,0.167,0.61,53,295,98,6,11.3,5,0,0,5,81.21000000000001,0.16,2.5,55.92,999,222,1.6 +2008,9,14,17,30,19.3,1.01,0.167,0.61,0,0,0,6,12.8,0,0,0,0,92.47,0.16,2.4000000000000004,65.99,999,226,0.9 +2008,9,14,18,30,19.1,1.02,0.169,0.61,0,0,0,7,12.700000000000001,0,0,0,0,103.41,0.16,2.4000000000000004,66.53,999,233,0.7000000000000001 +2008,9,14,19,30,19.1,1.03,0.17200000000000001,0.61,0,0,0,6,12.200000000000001,0,0,0,0,113.74000000000001,0.16,2.4000000000000004,64.16,999,287,0.4 +2008,9,14,20,30,18.6,1.03,0.17300000000000001,0.61,0,0,0,6,12,0,0,0,0,122.91,0.16,2.4000000000000004,65.29,999,176,0.5 +2008,9,14,21,30,17.8,1.04,0.17400000000000002,0.61,0,0,0,7,12.100000000000001,0,0,0,0,130.14000000000001,0.16,2.4000000000000004,69.37,998,21,0.8 +2008,9,14,22,30,17.2,1.06,0.17500000000000002,0.61,0,0,0,8,12.3,0,0,0,0,134.4,0.16,2.4000000000000004,72.86,998,24,1 +2008,9,14,23,30,16.7,1.08,0.177,0.61,0,0,0,0,12.3,0,0,0,0,134.8,0.16,2.3000000000000003,75.4,997,16,1 +2008,9,15,0,30,16.3,1.1,0.181,0.61,0,0,0,0,12.4,0,0,0,0,131.23,0.15,2.3000000000000003,77.73,997,5,1.2000000000000002 +2008,9,15,1,30,15.700000000000001,1.09,0.185,0.61,0,0,0,0,12.600000000000001,0,0,0,0,124.49000000000001,0.15,2.3000000000000003,81.97,997,6,1.5 +2008,9,15,2,30,15.200000000000001,1.07,0.185,0.61,0,0,0,0,12.700000000000001,0,0,0,0,115.63,0.15,2.4000000000000004,85.05,997,17,1.7000000000000002 +2008,9,15,3,30,14.8,1.05,0.17400000000000002,0.61,0,0,0,0,12.600000000000001,0,0,0,0,105.49000000000001,0.15,2.4000000000000004,86.83,997,27,1.6 +2008,9,15,4,30,15,1.06,0.158,0.61,0,0,0,0,12.4,0,0,0,0,94.64,0.15,2.3000000000000003,84.27,997,28,1.6 +2008,9,15,5,30,16.1,1.08,0.147,0.61,40,251,69,0,12.5,40,251,0,69,83.39,0.15,2.3000000000000003,79.08,997,22,2.2 +2008,9,15,6,30,18.3,1.1400000000000001,0.133,0.61,77,565,248,0,12.5,77,565,0,248,72.41,0.15,2.2,69.04,997,11,2.5 +2008,9,15,7,30,21.1,1.1400000000000001,0.126,0.61,96,715,434,0,11.700000000000001,96,715,0,434,61.83,0.15,2.2,54.93,997,170,2.5 +2008,9,15,8,30,23.200000000000003,1.12,0.121,0.61,108,799,597,0,10.3,108,799,0,597,52.25,0.15,2.1,44.04,997,326,2.7 +2008,9,15,9,30,24.3,1.16,0.113,0.61,112,848,717,0,10,112,848,0,717,44.52,0.15,2.1,40.43,997,305,2.8000000000000003 +2008,9,15,10,30,25.1,1.16,0.112,0.61,116,871,784,0,9.700000000000001,116,871,0,784,39.88,0.15,2,37.72,997,288,3.2 +2008,9,15,11,30,25.5,1.19,0.113,0.61,117,872,790,1,9.5,117,872,0,790,39.480000000000004,0.15,2,36.44,997,278,3.8000000000000003 +2008,9,15,12,30,25.400000000000002,1.25,0.117,0.61,115,853,735,0,9.600000000000001,115,853,0,735,43.46,0.15,2,36.87,997,272,4.3 +2008,9,15,13,30,24.8,1.22,0.126,0.61,112,805,622,0,9.8,112,805,0,622,50.76,0.15,2.1,38.71,997,270,4.6000000000000005 +2008,9,15,14,30,23.8,1.21,0.132,0.61,102,727,464,0,10.100000000000001,102,727,0,464,60.1,0.15,2.2,41.83,997,270,4.6000000000000005 +2008,9,15,15,30,22.6,1.24,0.145,0.61,86,583,280,0,10.4,86,583,0,280,70.56,0.15,2.3000000000000003,46.04,997,273,4.2 +2008,9,15,16,30,20.900000000000002,1.23,0.145,0.61,49,326,97,8,11.100000000000001,55,4,0,55,81.53,0.15,2.4000000000000004,53.53,997,279,2.9000000000000004 +2008,9,15,17,30,19.6,1.21,0.14300000000000002,0.61,0,0,0,4,12.5,0,0,0,0,92.8,0.15,2.5,63.550000000000004,997,291,1.8 +2008,9,15,18,30,19,1.17,0.152,0.61,0,0,0,4,13.4,0,0,0,0,103.75,0.15,2.6,69.86,998,310,1.5 +2008,9,15,19,30,18.400000000000002,1.12,0.162,0.61,0,0,0,3,13.8,0,0,0,0,114.09,0.15,2.6,74.77,998,331,1.6 +2008,9,15,20,30,17.7,1.08,0.17500000000000002,0.61,0,0,0,3,13.9,0,0,0,0,123.28,0.15,2.6,78.57000000000001,998,349,1.9000000000000001 +2008,9,15,21,30,17.1,1.07,0.196,0.61,0,0,0,3,13.8,0,0,0,0,130.53,0.15,2.5,80.8,998,182,2.1 +2008,9,15,22,30,16.400000000000002,1.08,0.202,0.61,0,0,0,4,13.4,0,0,0,0,134.79,0.15,2.4000000000000004,82.66,997,12,2.1 +2008,9,15,23,30,15.700000000000001,1.1,0.195,0.61,0,0,0,0,12.9,0,0,0,0,135.17000000000002,0.15,2.2,83.7,997,17,2.1 +2008,9,16,0,30,15.200000000000001,1.1300000000000001,0.197,0.61,0,0,0,0,12.5,0,0,0,0,131.56,0.15,2.1,84.16,997,19,2.3000000000000003 +2008,9,16,1,30,14.700000000000001,1.16,0.194,0.61,0,0,0,0,12,0,0,0,0,124.77,0.15,2,83.95,997,21,2.6 +2008,9,16,2,30,14.4,1.18,0.192,0.61,0,0,0,0,11.5,0,0,0,0,115.87,0.15,1.9000000000000001,82.48,997,24,2.9000000000000004 +2008,9,16,3,30,14.100000000000001,1.19,0.185,0.61,0,0,0,0,10.9,0,0,0,0,105.7,0.15,1.9000000000000001,81.16,997,27,3.3000000000000003 +2008,9,16,4,30,14.100000000000001,1.19,0.17400000000000002,0.61,0,0,0,0,10.3,0,0,0,0,94.84,0.15,1.8,78.11,997,29,3.7 +2008,9,16,5,30,14.9,1.19,0.159,0.61,41,246,68,0,9.8,41,246,0,68,83.58,0.15,1.8,71.51,998,32,4.3 +2008,9,16,6,30,16.900000000000002,1.1400000000000001,0.149,0.61,82,553,247,0,9.4,82,553,0,247,72.61,0.15,1.7000000000000002,61.29,998,34,4.6000000000000005 +2008,9,16,7,30,19.400000000000002,1.16,0.14200000000000002,0.61,103,709,435,0,8.6,103,709,0,435,62.050000000000004,0.15,1.7000000000000002,49.59,998,30,4.4 +2008,9,16,8,30,21.400000000000002,1.17,0.135,0.61,114,795,598,0,8,114,795,0,598,52.51,0.15,1.7000000000000002,42.230000000000004,999,19,4.1000000000000005 +2008,9,16,9,30,22.8,1.21,0.12,0.61,115,851,719,0,7.5,115,851,0,719,44.83,0.15,1.7000000000000002,37.49,998,6,4 +2008,9,16,10,30,23.700000000000003,1.19,0.108,0.61,114,881,786,0,6.9,114,881,0,786,40.24,0.15,1.7000000000000002,34.09,998,177,4.1000000000000005 +2008,9,16,11,30,24.1,1.17,0.10200000000000001,0.61,112,887,793,0,6.6000000000000005,112,887,0,793,39.88,0.15,1.7000000000000002,32.46,998,350,4.4 +2008,9,16,12,30,24.1,1.05,0.112,0.61,114,858,733,0,6.5,114,858,0,733,43.85,0.15,1.8,32.37,998,347,4.7 +2008,9,16,13,30,23.8,1.05,0.11,0.61,107,823,623,0,6.6000000000000005,107,823,0,623,51.13,0.15,1.8,32.99,998,345,5.1000000000000005 +2008,9,16,14,30,23,1.07,0.11,0.61,95,754,467,0,6.7,95,754,0,467,60.45,0.15,1.8,34.910000000000004,999,347,5.5 +2008,9,16,15,30,21.700000000000003,1.12,0.106,0.61,75,634,283,0,6.800000000000001,75,634,0,283,70.89,0.15,1.8,38.2,999,350,5.6000000000000005 +2008,9,16,16,30,19.700000000000003,1.11,0.10400000000000001,0.61,44,376,97,0,7.1000000000000005,44,376,0,97,81.85000000000001,0.15,1.8,44.1,1000,355,5.1000000000000005 +2008,9,16,17,30,17.900000000000002,1.1300000000000001,0.105,0.61,0,0,0,0,7.7,0,0,0,0,93.12,0.15,1.7000000000000002,51.43,1001,182,4.6000000000000005 +2008,9,16,18,30,16.8,1.1500000000000001,0.10400000000000001,0.61,0,0,0,0,7.7,0,0,0,0,104.08,0.15,1.7000000000000002,54.99,1002,11,4.4 +2008,9,16,19,30,16,1.1500000000000001,0.101,0.61,0,0,0,0,7.4,0,0,0,0,114.44,0.15,1.6,56.75,1002,19,3.9000000000000004 +2008,9,16,20,30,15.200000000000001,1.1500000000000001,0.098,0.61,0,0,0,0,7.4,0,0,0,0,123.65,0.15,1.6,59.82,1003,23,3.2 +2008,9,16,21,30,14.600000000000001,1.1500000000000001,0.099,0.61,0,0,0,0,7.5,0,0,0,0,130.92000000000002,0.15,1.6,62.22,1003,26,2.6 +2008,9,16,22,30,14.100000000000001,1.1500000000000001,0.10300000000000001,0.61,0,0,0,0,7.4,0,0,0,0,135.19,0.15,1.5,64.07000000000001,1003,30,2.2 +2008,9,16,23,30,13.8,1.17,0.107,0.61,0,0,0,0,7.300000000000001,0,0,0,0,135.54,0.15,1.5,64.97,1004,33,1.9000000000000001 +2008,9,17,0,30,13.5,1.18,0.11,0.61,0,0,0,0,7.300000000000001,0,0,0,0,131.89000000000001,0.15,1.5,66.29,1004,33,1.8 +2008,9,17,1,30,13.200000000000001,1.18,0.108,0.61,0,0,0,0,7.4,0,0,0,0,125.05,0.15,1.4000000000000001,67.87,1004,33,1.7000000000000002 +2008,9,17,2,30,12.9,1.18,0.10300000000000001,0.61,0,0,0,0,7.5,0,0,0,0,116.11,0.15,1.4000000000000001,69.89,1005,34,1.8 +2008,9,17,3,30,12.600000000000001,1.19,0.096,0.61,0,0,0,0,7.800000000000001,0,0,0,0,105.91,0.15,1.3,72.49,1005,37,1.9000000000000001 +2008,9,17,4,30,12.9,1.21,0.09,0.61,0,0,0,0,7.9,0,0,0,0,95.03,0.15,1.2000000000000002,71.58,1005,40,2.2 +2008,9,17,5,30,14.700000000000001,1.25,0.08700000000000001,0.61,35,352,73,0,8,35,352,0,73,83.76,0.15,1.2000000000000002,64,1005,43,3 +2008,9,17,6,30,17.3,1.07,0.094,0.61,69,634,256,0,7.6000000000000005,69,634,0,256,72.81,0.15,1.2000000000000002,53.02,1006,43,3.8000000000000003 +2008,9,17,7,30,19.700000000000003,1.12,0.092,0.61,87,776,448,0,6.6000000000000005,87,776,0,448,62.27,0.15,1.2000000000000002,42.49,1006,38,3.9000000000000004 +2008,9,17,8,30,21.6,1.17,0.091,0.61,98,851,613,0,5.7,98,851,0,613,52.77,0.15,1.2000000000000002,35.47,1006,27,3.5 +2008,9,17,9,30,23,1.06,0.097,0.61,109,884,732,0,5,109,884,0,732,45.14,0.15,1.2000000000000002,31.11,1006,11,3.1 +2008,9,17,10,30,24.1,1.1,0.1,0.61,113,900,797,0,4.6000000000000005,113,900,0,797,40.61,0.15,1.2000000000000002,28.28,1006,173,2.9000000000000004 +2008,9,17,11,30,24.8,1.1500000000000001,0.099,0.61,112,900,799,0,4.5,112,900,0,799,40.27,0.15,1.3,26.92,1006,336,3.1 +2008,9,17,12,30,25.200000000000003,1.21,0.096,0.61,107,888,743,0,4.6000000000000005,107,888,0,743,44.24,0.15,1.3,26.55,1006,326,3.5 +2008,9,17,13,30,25.1,1.25,0.093,0.61,99,852,629,0,4.9,99,852,0,629,51.5,0.15,1.4000000000000001,27.28,1005,321,3.8000000000000003 +2008,9,17,14,30,24.6,1.29,0.096,0.61,89,782,471,1,5.4,89,782,0,471,60.79,0.15,1.4000000000000001,29.060000000000002,1005,319,3.9000000000000004 +2008,9,17,15,30,23.400000000000002,1.31,0.101,0.61,73,649,282,0,6.1000000000000005,73,649,0,282,71.23,0.15,1.5,32.65,1005,316,3.5 +2008,9,17,16,30,21,1.31,0.111,0.61,44,371,94,0,7.6000000000000005,44,371,0,94,82.17,0.15,1.5,41.89,1006,310,2.8000000000000003 +2008,9,17,17,30,18.900000000000002,1.29,0.11900000000000001,0.61,0,0,0,0,9.3,0,0,0,0,93.45,0.15,1.5,53.76,1006,306,2.6 +2008,9,17,18,30,18.1,1.27,0.11800000000000001,0.61,0,0,0,0,10,0,0,0,0,104.42,0.15,1.6,59,1007,310,2.5 +2008,9,17,19,30,17.3,1.26,0.113,0.61,0,0,0,0,10.5,0,0,0,0,114.79,0.15,1.5,64.16,1008,320,2.2 +2008,9,17,20,30,16.7,1.25,0.115,0.61,0,0,0,0,10.8,0,0,0,0,124.02,0.15,1.5,68.25,1008,330,1.8 +2008,9,17,21,30,16.3,1.25,0.117,0.61,0,0,0,0,10.9,0,0,0,0,131.31,0.15,1.5,70.22,1008,339,1.6 +2008,9,17,22,30,16,1.25,0.116,0.61,0,0,0,8,10.600000000000001,0,0,0,0,135.59,0.15,1.5,70.42,1008,348,1.4000000000000001 +2008,9,17,23,30,15.9,1.25,0.115,0.61,0,0,0,8,10.100000000000001,0,0,0,0,135.91,0.15,1.5,68.37,1008,356,1.3 +2008,9,18,0,30,16,1.23,0.121,0.61,0,0,0,3,9.4,0,0,0,0,132.21,0.15,1.5,64.75,1008,183,1.1 +2008,9,18,1,30,16.2,1.21,0.129,0.61,0,0,0,3,8.700000000000001,0,0,0,0,125.33,0.15,1.5,61.24,1008,11,0.9 +2008,9,18,2,30,16.400000000000002,1.2,0.135,0.61,0,0,0,3,8.3,0,0,0,0,116.34,0.15,1.5,58.85,1008,22,0.8 +2008,9,18,3,30,16.2,1.19,0.138,0.61,0,0,0,0,8.1,0,0,0,0,106.12,0.15,1.5,58.57,1008,39,0.8 +2008,9,18,4,30,15.9,1.2,0.138,0.61,0,0,0,8,7.9,0,0,0,0,95.23,0.15,1.6,58.93,1009,58,0.9 +2008,9,18,5,30,16.8,1.21,0.14100000000000001,0.61,37,257,64,0,8,37,257,0,64,83.95,0.15,1.6,56.29,1009,74,1.1 +2008,9,18,6,30,19.200000000000003,1.3900000000000001,0.13,0.61,75,580,244,0,7.800000000000001,75,580,0,244,73.01,0.15,1.6,47.44,1009,54,0.9 +2008,9,18,7,30,21.8,1.4000000000000001,0.137,0.61,99,718,431,0,8.1,99,718,0,431,62.5,0.15,1.6,41.27,1010,162,0.8 +2008,9,18,8,30,23.6,1.4000000000000001,0.149,0.61,118,783,589,0,8.1,118,783,0,589,53.03,0.15,1.7000000000000002,37.21,1010,293,1.4000000000000001 +2008,9,18,9,30,24.8,1.57,0.14200000000000002,0.61,123,835,709,8,7.9,257,496,0,605,45.46,0.15,1.7000000000000002,34.07,1010,285,1.9000000000000001 +2008,9,18,10,30,25.700000000000003,1.6,0.138,0.61,125,859,773,0,7.800000000000001,125,859,0,773,40.97,0.15,1.7000000000000002,32.05,1009,280,2.5 +2008,9,18,11,30,26.1,1.6,0.14200000000000002,0.61,127,857,777,0,7.800000000000001,127,857,0,777,40.67,0.15,1.7000000000000002,31.28,1009,278,3 +2008,9,18,12,30,26.200000000000003,1.56,0.14300000000000002,0.61,124,836,719,0,7.800000000000001,124,836,0,719,44.64,0.15,1.8,31.220000000000002,1009,277,3.3000000000000003 +2008,9,18,13,30,25.900000000000002,1.5,0.153,0.61,120,787,606,8,8,254,404,0,504,51.870000000000005,0.15,1.8,32.03,1008,277,3.5 +2008,9,18,14,30,25.200000000000003,1.46,0.16,0.61,108,702,447,0,8.1,108,702,0,447,61.14,0.15,1.9000000000000001,33.8,1008,277,3.6 +2008,9,18,15,30,23.900000000000002,1.43,0.167,0.61,87,558,264,0,8.6,87,558,0,264,71.56,0.15,1.9000000000000001,37.6,1008,275,3.5 +2008,9,18,16,30,21.8,1.37,0.184,0.61,47,268,82,7,9.700000000000001,69,43,7,75,82.5,0.15,2,46.11,1008,273,3.1 +2008,9,18,17,30,20,1.34,0.191,0.61,0,0,0,8,11.3,0,0,0,0,93.77,0.15,2.1,57.33,1008,275,2.8000000000000003 +2008,9,18,18,30,19.5,1.32,0.202,0.61,0,0,0,7,12.3,0,0,0,0,104.75,0.15,2.2,63.29,1009,281,2.7 +2008,9,18,19,30,19.200000000000003,1.3,0.20800000000000002,0.61,0,0,0,7,13,0,0,0,0,115.14,0.15,2.3000000000000003,67.52,1009,286,2.4000000000000004 +2008,9,18,20,30,18.7,1.3,0.203,0.61,0,0,0,7,13.5,0,0,0,0,124.39,0.15,2.3000000000000003,71.8,1010,295,1.9000000000000001 +2008,9,18,21,30,18,1.31,0.188,0.61,0,0,0,7,13.700000000000001,0,0,0,0,131.7,0.15,2.3000000000000003,76.19,1009,314,1.3 +2008,9,18,22,30,17.400000000000002,1.32,0.171,0.61,0,0,0,7,13.8,0,0,0,0,135.98,0.15,2.3000000000000003,79.35000000000001,1009,169,1.1 +2008,9,18,23,30,17,1.3,0.169,0.61,0,0,0,7,13.700000000000001,0,0,0,0,136.29,0.15,2.3000000000000003,81.14,1008,23,1 +2008,9,19,0,30,16.900000000000002,1.29,0.177,0.61,0,0,0,7,13.700000000000001,0,0,0,0,132.54,0.15,2.3000000000000003,81.53,1008,42,1 +2008,9,19,1,30,17.1,1.3,0.187,0.61,0,0,0,7,13.600000000000001,0,0,0,0,125.60000000000001,0.15,2.4000000000000004,79.98,1008,57,0.9 +2008,9,19,2,30,17.2,1.3,0.196,0.61,0,0,0,7,13.5,0,0,0,0,116.58,0.15,2.5,78.73,1007,73,0.7000000000000001 +2008,9,19,3,30,17.2,1.27,0.20800000000000002,0.61,0,0,0,7,13.3,0,0,0,0,106.32000000000001,0.15,2.6,78.01,1007,89,0.7000000000000001 +2008,9,19,4,30,17.2,1.24,0.229,0.61,0,0,0,6,13.200000000000001,0,0,0,0,95.42,0.15,2.7,77.22,1007,104,0.7000000000000001 +2008,9,19,5,30,17.7,1.19,0.256,0.61,40,136,54,6,13.200000000000001,10,0,7,10,84.14,0.15,2.9000000000000004,74.75,1007,116,0.8 +2008,9,19,6,30,18.7,1.16,0.281,0.61,104,389,217,7,13.5,22,0,0,22,73.21000000000001,0.15,3,71.86,1007,122,0.8 +2008,9,19,7,30,19.6,1.1400000000000001,0.303,0.61,147,529,390,7,13.700000000000001,9,0,0,9,62.72,0.15,3.1,68.59,1007,241,0.5 +2008,9,19,8,30,19.8,1.1500000000000001,0.322,0.61,177,608,541,6,13.200000000000001,24,0,0,24,53.29,0.15,3.2,65.75,1007,214,0.4 +2008,9,19,9,30,19.8,1.17,0.362,0.61,206,637,650,9,12.5,57,0,0,57,45.77,0.15,3.2,62.93,1007,92,0.8 +2008,9,19,10,30,19.8,1.2,0.356,0.61,211,667,712,9,12.5,29,0,0,29,41.34,0.15,3.2,62.95,1006,116,1.2000000000000002 +2008,9,19,11,30,19.6,1.21,0.328,0.61,202,686,719,7,12.600000000000001,76,0,0,76,41.06,0.15,3.2,64.01,1006,116,1.3 +2008,9,19,12,30,19.200000000000003,1.19,0.322,0.61,193,668,665,7,12.8,65,0,0,65,45.03,0.15,3.2,66.45,1005,107,1.3 +2008,9,19,13,30,18.900000000000002,1.2,0.308,0.61,175,628,559,4,13,27,0,0,27,52.24,0.15,3.2,68.54,1005,84,1.4000000000000001 +2008,9,19,14,30,18.6,1.25,0.299,0.61,148,550,411,4,13.100000000000001,18,0,0,18,61.49,0.15,3.2,70.57000000000001,1004,58,1.5 +2008,9,19,15,30,18,1.29,0.301,0.61,111,403,237,5,13.600000000000001,10,0,0,10,71.89,0.15,3.2,75.25,1004,35,1.5 +2008,9,19,16,30,17.2,1.33,0.303,0.61,50,159,70,5,14.100000000000001,14,0,7,14,82.82000000000001,0.15,3,82.09,1004,19,1.5 +2008,9,19,17,30,16.6,1.3900000000000001,0.293,0.61,0,0,0,3,14.200000000000001,0,0,0,0,94.10000000000001,0.15,2.9000000000000004,85.78,1004,10,1.7000000000000002 +2008,9,19,18,30,16.1,1.41,0.258,0.61,0,0,0,8,14,0,0,0,0,105.08,0.15,2.8000000000000003,87.22,1004,10,2.1 +2008,9,19,19,30,15.600000000000001,1.3800000000000001,0.209,0.61,0,0,0,0,13.700000000000001,0,0,0,0,115.49000000000001,0.15,2.6,88.18,1004,17,2.5 +2008,9,19,20,30,15,1.3800000000000001,0.17200000000000001,0.61,0,0,0,0,13.100000000000001,0,0,0,0,124.76,0.15,2.4000000000000004,88.41,1005,24,2.7 +2008,9,19,21,30,14.5,1.42,0.155,0.61,0,0,0,0,12.5,0,0,0,0,132.09,0.15,2.2,87.62,1005,27,2.5 +2008,9,19,22,30,14,1.45,0.154,0.61,0,0,0,0,11.9,0,0,0,0,136.38,0.15,1.9000000000000001,86.93,1005,26,2.3000000000000003 +2008,9,19,23,30,13.5,1.43,0.15,0.61,0,0,0,0,11.3,0,0,0,0,136.66,0.15,1.7000000000000002,86.59,1005,22,2.1 +2008,9,20,0,30,13,1.3800000000000001,0.14100000000000001,0.61,0,0,0,0,10.8,0,0,0,0,132.87,0.15,1.4000000000000001,86.23,1005,19,2.2 +2008,9,20,1,30,12.5,1.32,0.133,0.61,0,0,0,0,10.100000000000001,0,0,0,0,125.88000000000001,0.15,1.2000000000000002,85.42,1005,19,2.2 +2008,9,20,2,30,12,1.29,0.125,0.61,0,0,0,0,9.4,0,0,0,0,116.81,0.15,1.2000000000000002,84.02,1006,23,2.3000000000000003 +2008,9,20,3,30,11.600000000000001,1.29,0.121,0.61,0,0,0,0,8.5,0,0,0,0,106.53,0.15,1.1,81.21000000000001,1006,28,2.4000000000000004 +2008,9,20,4,30,11.700000000000001,1.31,0.121,0.61,0,0,0,0,7.800000000000001,0,0,0,0,95.62,0.15,1.2000000000000002,76.96000000000001,1006,30,2.5 +2008,9,20,5,30,13.3,1.32,0.121,0.61,35,284,63,0,7.7,35,284,0,63,84.33,0.15,1.1,68.63,1006,30,3.2 +2008,9,20,6,30,15.8,1.31,0.11800000000000001,0.61,72,601,244,0,7.9,72,601,0,244,73.41,0.15,1.1,59.33,1006,36,4.5 +2008,9,20,7,30,18.2,1.29,0.113,0.61,92,753,435,0,7,92,753,0,435,62.95,0.15,1.1,48.02,1007,42,5.2 +2008,9,20,8,30,20.1,1.25,0.108,0.61,103,835,599,0,5.800000000000001,103,835,0,599,53.56,0.15,1.1,39.34,1007,44,5.300000000000001 +2008,9,20,9,30,21.400000000000002,1.19,0.112,0.61,113,868,715,0,5.2,113,868,0,715,46.09,0.15,1.2000000000000002,34.72,1007,44,5 +2008,9,20,10,30,22.200000000000003,1.17,0.112,0.61,117,884,777,0,4.800000000000001,117,884,0,777,41.71,0.15,1.3,32.26,1006,42,4.7 +2008,9,20,11,30,22.700000000000003,1.17,0.113,0.61,118,884,781,0,4.7,118,884,0,781,41.46,0.15,1.3,30.900000000000002,1006,37,4.4 +2008,9,20,12,30,22.8,1.1500000000000001,0.127,0.61,121,851,718,0,4.5,121,851,0,718,45.42,0.15,1.4000000000000001,30.45,1006,32,4.3 +2008,9,20,13,30,22.5,1.16,0.126,0.61,112,809,603,0,4.4,112,809,0,603,52.61,0.15,1.5,30.78,1005,29,4.4 +2008,9,20,14,30,21.700000000000003,1.16,0.121,0.61,97,737,445,0,4.5,97,737,0,445,61.84,0.15,1.6,32.51,1005,29,4.6000000000000005 +2008,9,20,15,30,20.3,1.1500000000000001,0.116,0.61,75,600,258,0,5,75,600,0,258,72.22,0.15,1.8,36.54,1005,32,4.7 +2008,9,20,16,30,18.3,1.1300000000000001,0.113,0.61,40,314,77,0,5.800000000000001,40,314,0,77,83.14,0.15,1.9000000000000001,43.96,1006,35,4.2 +2008,9,20,17,30,16.5,1.1,0.113,0.61,0,0,0,0,7,0,0,0,0,94.43,0.15,2,53.34,1007,39,3.7 +2008,9,20,18,30,15.3,1.09,0.116,0.61,0,0,0,0,7.5,0,0,0,0,105.42,0.15,2,59.65,1007,43,3.5 +2008,9,20,19,30,14.4,1.09,0.11900000000000001,0.61,0,0,0,1,7.800000000000001,0,0,0,0,115.84,0.15,2,64.36,1007,43,2.9000000000000004 +2008,9,20,20,30,13.8,1.08,0.122,0.61,0,0,0,3,8.1,0,0,0,0,125.14,0.15,2,68.43,1008,41,2.3000000000000003 +2008,9,20,21,30,13.4,1.08,0.125,0.61,0,0,0,1,8.3,0,0,0,0,132.49,0.15,2,71.26,1008,41,1.8 +2008,9,20,22,30,13.100000000000001,1.09,0.125,0.61,0,0,0,3,8.3,0,0,0,0,136.78,0.15,2,72.83,1007,44,1.6 +2008,9,20,23,30,12.8,1.1,0.124,0.61,0,0,0,0,8.3,0,0,0,0,137.04,0.15,2,74.34,1007,47,1.5 +2008,9,21,0,30,12.600000000000001,1.11,0.122,0.61,0,0,0,0,8.3,0,0,0,0,133.19,0.15,2,75.04,1007,49,1.4000000000000001 +2008,9,21,1,30,12.4,1.1,0.11900000000000001,0.61,0,0,0,0,8.1,0,0,0,0,126.16,0.15,2,75.12,1006,51,1.5 +2008,9,21,2,30,12.100000000000001,1.09,0.117,0.61,0,0,0,0,8,0,0,0,0,117.05,0.15,2,75.78,1006,52,1.6 +2008,9,21,3,30,11.8,1.07,0.115,0.61,0,0,0,0,7.9,0,0,0,0,106.74000000000001,0.15,2,77.11,1006,51,1.7000000000000002 +2008,9,21,4,30,12,1.05,0.113,0.61,0,0,0,0,7.9,0,0,0,0,95.81,0.15,2,76.22,1005,50,1.8 +2008,9,21,5,30,13.700000000000001,1.03,0.11,0.61,33,255,57,0,8.1,33,255,0,57,84.52,0.15,2,68.9,1005,51,2.4000000000000004 +2008,9,21,6,30,16.3,1.01,0.108,0.61,70,574,232,3,8.200000000000001,73,0,7,73,73.62,0.15,2.1,58.56,1005,56,2.8000000000000003 +2008,9,21,7,30,18.400000000000002,0.99,0.108,0.61,91,721,417,3,7.800000000000001,243,32,0,257,63.18,0.15,2.1,49.94,1005,55,2.3000000000000003 +2008,9,21,8,30,20.200000000000003,0.99,0.111,0.61,105,795,574,3,7.2,336,114,0,403,53.83,0.15,2.2,43.01,1005,37,1.5 +2008,9,21,9,30,21.400000000000002,1.08,0.154,0.61,131,802,684,3,6.9,362,72,0,412,46.410000000000004,0.15,2.2,39.18,1004,175,0.8 +2008,9,21,10,30,22.200000000000003,1.07,0.167,0.61,141,810,742,3,6.9,422,146,1,530,42.08,0.15,2.3000000000000003,37.21,1004,291,0.9 +2008,9,21,11,30,22.5,1.07,0.18,0.61,147,800,743,3,7,410,102,0,485,41.86,0.15,2.3000000000000003,36.9,1003,251,1.6 +2008,9,21,12,30,22.1,1.09,0.181,0.61,143,778,685,5,7.4,360,67,0,406,45.81,0.15,2.4000000000000004,38.660000000000004,1003,244,2.5 +2008,9,21,13,30,21.200000000000003,1.1,0.191,0.61,136,725,573,4,7.7,273,13,0,281,52.980000000000004,0.15,2.4000000000000004,41.77,1002,243,2.9000000000000004 +2008,9,21,14,30,20.200000000000003,1.1,0.198,0.61,121,633,417,5,8,218,19,0,226,62.190000000000005,0.15,2.5,45.44,1002,246,2.9000000000000004 +2008,9,21,15,30,19.1,1.11,0.222,0.61,98,459,235,8,8.6,24,0,0,24,72.56,0.15,2.5,50.410000000000004,1002,250,2.3000000000000003 +2008,9,21,16,30,18,1.1300000000000001,0.229,0.61,45,175,65,5,9.3,6,0,7,6,83.46000000000001,0.15,2.5,56.89,1002,252,1.5 +2008,9,21,17,30,17.2,1.1400000000000001,0.232,0.61,0,0,0,4,10.3,0,0,0,0,94.75,0.15,2.6,63.92,1002,255,0.9 +2008,9,21,18,30,16.6,1.17,0.249,0.61,0,0,0,3,10.600000000000001,0,0,0,0,105.75,0.15,2.5,67.59,1003,258,0.4 +2008,9,21,19,30,16.1,1.19,0.269,0.61,0,0,0,5,10.700000000000001,0,0,0,0,116.19,0.15,2.5,70.3,1003,182,0.2 +2008,9,21,20,30,15.5,1.22,0.28500000000000003,0.61,0,0,0,5,10.9,0,0,0,0,125.51,0.15,2.4000000000000004,74.28,1003,97,0.4 +2008,9,21,21,30,15,1.27,0.302,0.61,0,0,0,3,11.200000000000001,0,0,0,0,132.88,0.15,2.4000000000000004,77.99,1003,83,0.6000000000000001 +2008,9,21,22,30,14.5,1.31,0.303,0.61,0,0,0,1,11.100000000000001,0,0,0,0,137.18,0.15,2.3000000000000003,80.27,1003,77,0.7000000000000001 +2008,9,21,23,30,14.100000000000001,1.33,0.295,0.61,0,0,0,0,10.8,0,0,0,0,137.41,0.15,2.3000000000000003,80.45,1002,75,0.8 +2008,9,22,0,30,13.8,1.36,0.297,0.61,0,0,0,3,10.5,0,0,0,0,133.52,0.15,2.2,80.72,1002,74,0.9 +2008,9,22,1,30,13.600000000000001,1.3800000000000001,0.295,0.61,0,0,0,4,10.3,0,0,0,0,126.43,0.15,2.2,80.24,1002,72,0.9 +2008,9,22,2,30,13.200000000000001,1.4000000000000001,0.279,0.61,0,0,0,3,9.9,0,0,0,0,117.29,0.15,2.1,80.36,1001,69,1 +2008,9,22,3,30,12.600000000000001,1.41,0.263,0.61,0,0,0,4,9.5,0,0,0,0,106.95,0.15,2.1,81.16,1001,65,1.1 +2008,9,22,4,30,12.5,1.42,0.246,0.61,0,0,0,0,9.200000000000001,0,0,0,0,96.01,0.15,2,80.11,1002,63,1.3 +2008,9,22,5,30,13.600000000000001,1.42,0.223,0.61,36,164,51,0,9.200000000000001,36,164,0,51,84.71000000000001,0.15,2,74.65,1002,63,1.9000000000000001 +2008,9,22,6,30,15.8,1.42,0.188,0.61,84,493,221,0,9.1,84,493,0,221,73.82000000000001,0.15,2,64.4,1002,67,2.3000000000000003 +2008,9,22,7,30,18.1,1.43,0.17300000000000001,0.61,108,666,407,0,8.4,108,666,0,407,63.410000000000004,0.15,1.9000000000000001,53.2,1002,74,1.4000000000000001 +2008,9,22,8,30,20.1,1.44,0.159,0.61,120,764,568,0,7.5,120,764,0,568,54.1,0.15,1.9000000000000001,44.07,1002,174,0.6000000000000001 +2008,9,22,9,30,21.400000000000002,1.44,0.149,0.61,126,821,688,0,6.7,126,821,0,688,46.730000000000004,0.15,1.8,38.54,1002,270,0.9 +2008,9,22,10,30,22.200000000000003,1.42,0.139,0.61,125,852,754,0,6.300000000000001,125,852,0,754,42.45,0.15,1.7000000000000002,35.6,1001,272,1.4000000000000001 +2008,9,22,11,30,22.700000000000003,1.41,0.127,0.61,121,862,759,0,6,121,862,0,759,42.25,0.15,1.7000000000000002,33.83,1001,273,1.7000000000000002 +2008,9,22,12,30,23,1.34,0.128,0.61,118,846,703,0,5.800000000000001,118,846,0,703,46.21,0.15,1.6,32.76,1000,271,2.1 +2008,9,22,13,30,22.8,1.34,0.13,0.61,112,803,591,0,5.800000000000001,112,803,0,591,53.35,0.15,1.6,33.22,1000,267,2.6 +2008,9,22,14,30,22.200000000000003,1.33,0.131,0.61,98,722,431,0,5.9,98,722,0,431,62.54,0.15,1.7000000000000002,34.82,1000,266,3.1 +2008,9,22,15,30,21.1,1.33,0.14,0.61,79,568,246,0,6.1000000000000005,79,568,0,246,72.89,0.15,1.7000000000000002,37.72,1000,267,2.9000000000000004 +2008,9,22,16,30,19.1,1.35,0.145,0.61,39,267,68,0,7,39,267,0,68,83.78,0.15,1.7000000000000002,45.4,1000,271,2.2 +2008,9,22,17,30,17.2,1.37,0.14,0.61,0,0,0,3,8.4,0,0,0,0,95.08,0.15,1.7000000000000002,56.32,1001,288,1.5 +2008,9,22,18,30,16.3,1.4000000000000001,0.133,0.61,0,0,0,3,8.4,0,0,0,0,106.09,0.15,1.7000000000000002,59.59,1001,314,1.2000000000000002 +2008,9,22,19,30,15.600000000000001,1.42,0.13,0.61,0,0,0,0,8,0,0,0,0,116.54,0.15,1.7000000000000002,60.6,1001,343,0.9 +2008,9,22,20,30,14.9,1.43,0.128,0.61,0,0,0,1,7.6000000000000005,0,0,0,0,125.88000000000001,0.15,1.7000000000000002,61.5,1001,203,0.7000000000000001 +2008,9,22,21,30,14.3,1.44,0.127,0.61,0,0,0,3,7.300000000000001,0,0,0,0,133.27,0.15,1.7000000000000002,62.72,1001,64,0.7000000000000001 +2008,9,22,22,30,13.8,1.43,0.129,0.61,0,0,0,4,7.300000000000001,0,0,0,0,137.57,0.15,1.7000000000000002,64.7,1001,90,0.9 +2008,9,22,23,30,13.4,1.43,0.133,0.61,0,0,0,0,7.5,0,0,0,0,137.79,0.15,1.8,67.55,1001,103,1.1 +2008,9,23,0,30,13.100000000000001,1.42,0.139,0.61,0,0,0,0,7.9,0,0,0,0,133.85,0.15,1.8,70.73,1001,109,1.2000000000000002 +2008,9,23,1,30,12.9,1.42,0.14400000000000002,0.61,0,0,0,0,8.3,0,0,0,0,126.71000000000001,0.15,1.8,73.38,1001,111,1.3 +2008,9,23,2,30,12.700000000000001,1.42,0.146,0.61,0,0,0,0,8.5,0,0,0,0,117.52,0.15,1.8,75.68,1000,110,1.3 +2008,9,23,3,30,12.4,1.42,0.15,0.61,0,0,0,0,8.8,0,0,0,0,107.16,0.15,1.9000000000000001,78.87,1000,110,1.4000000000000001 +2008,9,23,4,30,12.600000000000001,1.42,0.155,0.61,0,0,0,0,9.200000000000001,0,0,0,0,96.21000000000001,0.15,1.9000000000000001,79.79,1000,110,1.4000000000000001 +2008,9,23,5,30,14.3,1.41,0.162,0.61,33,204,51,0,9.600000000000001,33,204,0,51,84.9,0.15,2,73.38,1001,111,1.9000000000000001 +2008,9,23,6,30,16.900000000000002,1.49,0.167,0.61,80,515,221,0,10.200000000000001,80,515,0,221,74.03,0.15,2,64.75,1001,129,2.4000000000000004 +2008,9,23,7,30,18.7,1.46,0.169,0.61,107,665,403,0,11.100000000000001,107,665,0,403,63.64,0.15,2.1,61.32,1001,161,2.3000000000000003 +2008,9,23,8,30,19.900000000000002,1.41,0.168,0.61,124,750,561,0,10.8,124,750,0,561,54.370000000000005,0.15,2.1,55.59,1001,182,2.2 +2008,9,23,9,30,20.5,1.3800000000000001,0.19,0.61,143,779,673,2,10.200000000000001,381,230,0,538,47.050000000000004,0.15,2.1,51.660000000000004,1001,192,2.2 +2008,9,23,10,30,20.6,1.35,0.199,0.61,152,793,734,8,9.9,327,359,0,590,42.82,0.15,2.1,50.28,1001,197,2.1 +2008,9,23,11,30,20.8,1.35,0.192,0.61,149,797,735,7,9.700000000000001,327,51,0,365,42.65,0.15,2.2,49.07,1001,200,2 +2008,9,23,12,30,21,0.86,0.316,0.61,197,669,656,7,9.700000000000001,299,30,0,319,46.6,0.15,2.2,48.26,1000,203,1.9000000000000001 +2008,9,23,13,30,21,0.89,0.318,0.61,182,615,546,7,9.5,276,96,0,333,53.730000000000004,0.15,2.2,47.75,1000,207,1.8 +2008,9,23,14,30,20.900000000000002,0.91,0.303,0.61,153,534,396,7,9.3,111,2,0,112,62.89,0.15,2.1,47.46,1000,211,1.6 +2008,9,23,15,30,20.200000000000003,0.96,0.3,0.61,111,374,219,7,9.3,18,0,0,18,73.22,0.15,2.2,49.6,1000,203,1.2000000000000002 +2008,9,23,16,30,19.1,0.99,0.293,0.61,43,110,54,7,10.8,14,0,7,14,84.10000000000001,0.15,2.2,58.53,1001,189,0.8 +2008,9,23,17,30,18.3,1.01,0.28500000000000003,0.61,0,0,0,7,11.100000000000001,0,0,0,0,95.41,0.15,2.2,62.82,1001,176,0.7000000000000001 +2008,9,23,18,30,18,1.04,0.28600000000000003,0.61,0,0,0,4,11.100000000000001,0,0,0,0,106.42,0.15,2.3000000000000003,63.9,1001,157,0.7000000000000001 +2008,9,23,19,30,17.5,1.07,0.273,0.61,0,0,0,4,11.100000000000001,0,0,0,0,116.88,0.15,2.3000000000000003,65.93,1002,135,0.8 +2008,9,23,20,30,16.900000000000002,1.09,0.263,0.61,0,0,0,4,11.200000000000001,0,0,0,0,126.25,0.15,2.3000000000000003,68.95,1002,112,0.9 +2008,9,23,21,30,16.2,1.1,0.257,0.61,0,0,0,7,11,0,0,0,0,133.66,0.15,2.3000000000000003,71.37,1002,90,1 +2008,9,23,22,30,15.600000000000001,1.11,0.253,0.61,0,0,0,8,10.600000000000001,0,0,0,0,137.97,0.15,2.3000000000000003,72.29,1002,76,1.1 +2008,9,23,23,30,15,1.11,0.247,0.61,0,0,0,3,10.200000000000001,0,0,0,0,138.16,0.15,2.3000000000000003,73.22,1002,69,1.2000000000000002 +2008,9,24,0,30,14.4,1.11,0.244,0.61,0,0,0,0,9.8,0,0,0,0,134.17000000000002,0.15,2.2,74,1001,67,1.3 +2008,9,24,1,30,13.9,1.12,0.241,0.61,0,0,0,5,9.5,0,0,0,0,126.98,0.15,2.2,74.7,1001,66,1.4000000000000001 +2008,9,24,2,30,13.4,1.1300000000000001,0.233,0.61,0,0,0,0,9.200000000000001,0,0,0,0,117.76,0.15,2.1,75.71000000000001,1001,66,1.4000000000000001 +2008,9,24,3,30,12.9,1.1500000000000001,0.225,0.61,0,0,0,1,9,0,0,0,0,107.37,0.15,2.1,77.3,1001,65,1.4000000000000001 +2008,9,24,4,30,12.8,1.16,0.221,0.61,0,0,0,1,9,0,0,0,0,96.4,0.15,2.1,77.51,1001,65,1.5 +2008,9,24,5,30,14.200000000000001,1.17,0.219,0.61,34,136,46,1,9.1,34,136,0,46,85.09,0.15,2,71.46000000000001,1002,64,2 +2008,9,24,6,30,16.8,1.18,0.218,0.61,91,444,212,0,9.3,91,444,0,212,74.24,0.15,2,61.370000000000005,1002,63,2.3000000000000003 +2008,9,24,7,30,19.5,1.2,0.215,0.61,122,616,394,0,9,122,616,0,394,63.88,0.15,1.9000000000000001,50.53,1002,49,1.4000000000000001 +2008,9,24,8,30,21.6,1.22,0.21,0.61,140,712,552,0,8.200000000000001,140,712,0,552,54.64,0.15,1.9000000000000001,42.22,1002,167,0.8 +2008,9,24,9,30,22.8,1.31,0.179,0.61,139,791,675,0,7.7,139,791,0,675,47.37,0.15,1.8,37.97,1002,293,1.2000000000000002 +2008,9,24,10,30,23.700000000000003,1.33,0.17400000000000002,0.61,141,817,736,0,7.4,141,817,0,736,43.19,0.15,1.8,35.1,1002,282,1.9000000000000001 +2008,9,24,11,30,24.3,1.35,0.167,0.61,138,827,742,0,7,138,827,0,742,43.050000000000004,0.15,1.7000000000000002,33.05,1002,278,2.5 +2008,9,24,12,30,24.5,1.33,0.164,0.61,132,809,684,0,6.800000000000001,132,809,0,684,46.99,0.15,1.7000000000000002,32.06,1001,278,3.1 +2008,9,24,13,30,24.3,1.34,0.162,0.61,122,766,571,0,6.5,122,766,0,571,54.1,0.15,1.7000000000000002,31.88,1001,282,3.5 +2008,9,24,14,30,23.5,1.34,0.163,0.61,107,682,414,8,6.300000000000001,223,169,0,299,63.24,0.15,1.7000000000000002,32.96,1001,288,3.6 +2008,9,24,15,30,22.1,1.35,0.16,0.61,81,533,232,7,6.4,42,0,0,42,73.56,0.15,1.7000000000000002,36.17,1001,294,3.2 +2008,9,24,16,30,19.8,1.36,0.155,0.61,35,230,57,0,7.6000000000000005,35,230,0,57,84.42,0.15,1.8,45.1,1001,302,2.3000000000000003 +2008,9,24,17,30,17.900000000000002,1.36,0.152,0.61,0,0,0,3,8.8,0,0,0,0,95.73,0.15,1.8,55.42,1002,316,1.9000000000000001 +2008,9,24,18,30,17,1.36,0.159,0.61,0,0,0,8,9.3,0,0,0,0,106.75,0.15,1.9000000000000001,60.42,1002,335,1.7000000000000002 +2008,9,24,19,30,16.1,1.36,0.162,0.61,0,0,0,3,9.600000000000001,0,0,0,0,117.23,0.15,1.9000000000000001,65.48,1003,180,1.3 +2008,9,24,20,30,15.4,1.37,0.158,0.61,0,0,0,7,9.9,0,0,0,0,126.62,0.15,1.8,69.86,1003,25,1.1 +2008,9,24,21,30,14.9,1.3800000000000001,0.155,0.61,0,0,0,1,9.8,0,0,0,0,134.05,0.15,1.8,71.65,1003,53,0.9 +2008,9,24,22,30,14.8,1.3800000000000001,0.151,0.61,0,0,0,7,9.5,0,0,0,0,138.37,0.15,1.8,70.41,1003,84,0.9 +2008,9,24,23,30,14.700000000000001,1.3800000000000001,0.151,0.61,0,0,0,0,9.5,0,0,0,0,138.53,0.15,1.8,71.17,1003,105,1 +2008,9,25,0,30,14.600000000000001,1.3800000000000001,0.155,0.61,0,0,0,0,9.700000000000001,0,0,0,0,134.5,0.15,1.8,72.59,1003,108,1 +2008,9,25,1,30,14.4,1.37,0.16,0.61,0,0,0,0,9.8,0,0,0,0,127.25,0.15,1.8,74.04,1003,104,1 +2008,9,25,2,30,14,1.37,0.165,0.61,0,0,0,0,9.9,0,0,0,0,117.99000000000001,0.15,1.9000000000000001,76.08,1003,99,1 +2008,9,25,3,30,13.600000000000001,1.36,0.17400000000000002,0.61,0,0,0,0,9.9,0,0,0,0,107.58,0.15,1.9000000000000001,78.32000000000001,1003,92,1 +2008,9,25,4,30,13.600000000000001,1.35,0.183,0.61,0,0,0,0,10,0,0,0,0,96.60000000000001,0.15,1.9000000000000001,78.68,1003,85,1.1 +2008,9,25,5,30,14.9,1.35,0.188,0.61,31,164,45,0,10.100000000000001,31,164,0,45,85.29,0.15,1.9000000000000001,72.77,1003,77,1.7000000000000002 +2008,9,25,6,30,17.2,1.36,0.199,0.61,85,469,210,0,10.200000000000001,85,469,0,210,74.45,0.15,1.9000000000000001,63.410000000000004,1004,73,2.3000000000000003 +2008,9,25,7,30,19,1.37,0.20600000000000002,0.61,117,627,390,0,10,117,627,0,390,64.11,0.15,1.9000000000000001,56.07,1004,70,2.1 +2008,9,25,8,30,20.400000000000002,1.3800000000000001,0.201,0.61,134,721,548,0,9.700000000000001,134,721,0,548,54.910000000000004,0.15,1.9000000000000001,50.4,1004,59,1.8 +2008,9,25,9,30,21.5,1.36,0.189,0.61,142,780,666,0,9,142,780,0,666,47.7,0.15,1.9000000000000001,44.76,1003,42,1.8 +2008,9,25,10,30,22.3,1.35,0.187,0.61,146,806,730,0,8.200000000000001,146,806,0,730,43.56,0.15,1.8,40.32,1003,29,2 +2008,9,25,11,30,22.900000000000002,1.34,0.183,0.61,145,809,732,0,7.5,145,809,0,732,43.45,0.15,1.8,37.13,1003,20,2.3000000000000003 +2008,9,25,12,30,23.1,1.3800000000000001,0.234,0.61,159,750,667,0,6.9,159,750,0,667,47.38,0.15,1.8,35.27,1003,14,2.7 +2008,9,25,13,30,23,1.35,0.224,0.61,144,708,555,0,6.4,144,708,0,555,54.47,0.15,1.8,34.2,1003,12,3.1 +2008,9,25,14,30,22.400000000000002,1.3,0.215,0.61,122,627,402,0,5.9,122,627,0,402,63.59,0.15,1.7000000000000002,34.38,1003,13,3.7 +2008,9,25,15,30,21,1.27,0.20800000000000002,0.61,89,472,220,0,5.800000000000001,89,472,0,220,73.89,0.15,1.7000000000000002,37.02,1004,15,3.9000000000000004 +2008,9,25,16,30,18.7,1.25,0.199,0.61,36,172,51,2,6.6000000000000005,42,2,7,43,84.74,0.15,1.7000000000000002,45.15,1005,17,3.9000000000000004 +2008,9,25,17,30,16.7,1.24,0.19,0.61,0,0,0,0,7.4,0,0,0,0,96.06,0.15,1.7000000000000002,54.38,1005,20,3.9000000000000004 +2008,9,25,18,30,15.600000000000001,1.24,0.181,0.61,0,0,0,0,7.800000000000001,0,0,0,0,107.08,0.15,1.7000000000000002,59.68,1006,23,3.9000000000000004 +2008,9,25,19,30,14.600000000000001,1.24,0.17200000000000001,0.61,0,0,0,0,8.1,0,0,0,0,117.58,0.15,1.6,65.25,1006,26,3.3000000000000003 +2008,9,25,20,30,13.8,1.22,0.167,0.61,0,0,0,0,8.5,0,0,0,0,126.98,0.15,1.6,70.2,1006,27,2.6 +2008,9,25,21,30,13.200000000000001,1.2,0.164,0.61,0,0,0,0,8.6,0,0,0,0,134.44,0.15,1.6,73.72,1006,27,2.2 +2008,9,25,22,30,12.8,1.18,0.166,0.61,0,0,0,0,8.6,0,0,0,0,138.77,0.15,1.6,75.52,1006,26,2 +2008,9,25,23,30,12.5,1.18,0.171,0.61,0,0,0,0,8.6,0,0,0,0,138.91,0.15,1.6,76.93,1006,26,1.9000000000000001 +2008,9,26,0,30,12.3,1.17,0.178,0.61,0,0,0,1,8.6,0,0,0,0,134.82,0.15,1.7000000000000002,78.29,1006,27,1.9000000000000001 +2008,9,26,1,30,12.200000000000001,1.17,0.183,0.61,0,0,0,3,8.700000000000001,0,0,0,0,127.53,0.15,1.7000000000000002,79.08,1006,30,1.9000000000000001 +2008,9,26,2,30,12.100000000000001,1.16,0.188,0.61,0,0,0,0,8.6,0,0,0,0,118.22,0.15,1.7000000000000002,79.41,1006,36,2 +2008,9,26,3,30,12,1.1400000000000001,0.195,0.61,0,0,0,0,8.5,0,0,0,0,107.79,0.15,1.7000000000000002,79.25,1006,39,2 +2008,9,26,4,30,12,1.1300000000000001,0.198,0.61,0,0,0,0,8.4,0,0,0,0,96.8,0.15,1.7000000000000002,78.77,1006,39,2.2 +2008,9,26,5,30,13.4,1.12,0.197,0.61,31,135,42,0,8.5,31,135,0,42,85.48,0.15,1.8,72.10000000000001,1007,40,2.9000000000000004 +2008,9,26,6,30,15.8,1.11,0.186,0.61,84,468,208,0,8.6,84,468,0,208,74.66,0.15,1.8,62.38,1007,47,3.7 +2008,9,26,7,30,18,1.12,0.183,0.61,112,640,389,0,8.3,112,640,0,389,64.35,0.15,1.8,52.95,1007,53,3.7 +2008,9,26,8,30,19.700000000000003,1.12,0.17300000000000001,0.61,127,742,550,0,7.5,127,742,0,550,55.19,0.15,1.7000000000000002,45.29,1007,51,3.2 +2008,9,26,9,30,20.900000000000002,1.11,0.193,0.61,145,774,662,0,6.9,145,774,0,662,48.02,0.15,1.7000000000000002,40.22,1007,45,2.7 +2008,9,26,10,30,21.700000000000003,1.11,0.192,0.61,149,798,724,0,6.300000000000001,149,798,0,724,43.93,0.15,1.7000000000000002,36.79,1007,35,2.4000000000000004 +2008,9,26,11,30,22.3,1.09,0.192,0.61,150,798,725,0,5.9,150,798,0,725,43.84,0.15,1.7000000000000002,34.62,1007,24,2.3000000000000003 +2008,9,26,12,30,22.400000000000002,1.07,0.232,0.61,159,743,658,1,5.9,159,743,0,658,47.78,0.15,1.7000000000000002,34.22,1007,17,2.5 +2008,9,26,13,30,22.200000000000003,1.03,0.227,0.61,146,695,546,3,5.9,340,87,0,390,54.84,0.15,1.7000000000000002,34.85,1007,15,2.9000000000000004 +2008,9,26,14,30,21.5,0.98,0.215,0.61,123,610,391,0,6.1000000000000005,123,610,0,391,63.940000000000005,0.15,1.7000000000000002,36.69,1007,17,3.5 +2008,9,26,15,30,20,0.9500000000000001,0.201,0.61,88,455,211,0,6.4,88,455,0,211,74.22,0.15,1.7000000000000002,41.1,1007,21,3.9000000000000004 +2008,9,26,16,30,17.8,0.92,0.195,0.61,33,138,45,0,7.300000000000001,33,138,0,45,85.06,0.15,1.7000000000000002,50.1,1008,23,4.1000000000000005 +2008,9,26,17,30,15.9,0.9,0.184,0.61,0,0,0,0,8,0,0,0,0,96.38,0.15,1.8,59.38,1009,26,4.3 +2008,9,26,18,30,14.8,0.9,0.171,0.61,0,0,0,0,8.3,0,0,0,0,107.41,0.15,1.8,65.14,1009,31,4.2 +2008,9,26,19,30,14.100000000000001,0.91,0.163,0.61,0,0,0,0,8.700000000000001,0,0,0,0,117.93,0.15,1.8,69.75,1009,36,3.7 +2008,9,26,20,30,13.600000000000001,0.93,0.159,0.61,0,0,0,0,8.9,0,0,0,0,127.35000000000001,0.15,1.9000000000000001,73.4,1009,43,3.2 +2008,9,26,21,30,13.3,0.96,0.158,0.61,0,0,0,0,9.1,0,0,0,0,134.83,0.15,1.9000000000000001,75.88,1009,50,2.8000000000000003 +2008,9,26,22,30,13.3,0.98,0.161,0.61,0,0,0,0,9.3,0,0,0,0,139.17000000000002,0.15,1.9000000000000001,76.7,1009,57,2.8000000000000003 +2008,9,26,23,30,13.4,1.01,0.165,0.61,0,0,0,0,9.3,0,0,0,0,139.28,0.15,1.9000000000000001,76.02,1009,61,2.8000000000000003 +2008,9,27,0,30,13.4,1.03,0.17400000000000002,0.61,0,0,0,0,9.1,0,0,0,0,135.15,0.15,1.9000000000000001,75.09,1009,62,2.6 +2008,9,27,1,30,13.3,1.05,0.182,0.61,0,0,0,0,8.9,0,0,0,0,127.8,0.15,1.9000000000000001,74.91,1009,63,2.6 +2008,9,27,2,30,13.3,1.06,0.187,0.61,0,0,0,0,8.8,0,0,0,0,118.46000000000001,0.15,1.9000000000000001,74.27,1009,63,2.6 +2008,9,27,3,30,13.3,1.07,0.193,0.61,0,0,0,0,8.700000000000001,0,0,0,0,108,0.15,1.9000000000000001,73.8,1009,63,2.6 +2008,9,27,4,30,13.100000000000001,1.07,0.188,0.61,0,0,0,0,8.6,0,0,0,0,96.99000000000001,0.15,1.9000000000000001,74.37,1009,62,2.3000000000000003 +2008,9,27,5,30,14.100000000000001,1.07,0.179,0.61,29,136,39,0,8.6,29,136,0,39,85.67,0.15,1.9000000000000001,69.64,1010,59,2.7 +2008,9,27,6,30,16.400000000000002,1.09,0.168,0.61,79,481,204,0,8.700000000000001,79,481,0,204,74.87,0.15,1.9000000000000001,60.550000000000004,1010,61,3.5 +2008,9,27,7,30,18.6,1.08,0.162,0.61,105,654,386,0,8.4,105,654,0,386,64.58,0.15,1.9000000000000001,51.300000000000004,1010,66,3.4000000000000004 +2008,9,27,8,30,20.400000000000002,1.07,0.154,0.61,118,751,544,0,7.6000000000000005,118,751,0,544,55.47,0.15,1.9000000000000001,43.58,1010,64,2.5 +2008,9,27,9,30,21.6,0.96,0.163,0.61,134,789,658,0,7.1000000000000005,134,789,0,658,48.35,0.15,1.9000000000000001,39.1,1010,52,1.5 +2008,9,27,10,30,22.400000000000002,0.96,0.164,0.61,139,810,719,0,6.800000000000001,139,810,0,719,44.300000000000004,0.15,1.9000000000000001,36.56,1010,200,0.9 +2008,9,27,11,30,22.700000000000003,0.96,0.167,0.61,140,808,719,0,6.7,140,808,0,719,44.24,0.15,1.9000000000000001,35.550000000000004,1010,333,0.8 +2008,9,27,12,30,22.700000000000003,0.75,0.215,0.61,159,736,650,0,6.7,159,736,0,650,48.17,0.15,2,35.57,1009,304,1.1 +2008,9,27,13,30,22.3,0.77,0.225,0.61,150,676,536,4,6.9,24,0,0,24,55.21,0.15,2,36.89,1009,301,1.4000000000000001 +2008,9,27,14,30,21.6,0.79,0.225,0.61,129,578,380,4,7.1000000000000005,16,0,0,16,64.29,0.15,2.1,39.11,1009,314,1.5 +2008,9,27,15,30,20.400000000000002,0.8200000000000001,0.23600000000000002,0.61,96,395,201,4,7.300000000000001,8,0,0,8,74.56,0.15,2.1,42.78,1009,331,1.3 +2008,9,27,16,30,18.7,0.85,0.23600000000000002,0.61,33,91,40,5,8.5,18,0,7,18,85.37,0.15,2.1,51.6,1010,177,1.2000000000000002 +2008,9,27,17,30,17.3,0.87,0.224,0.61,0,0,0,0,8.9,0,0,0,0,96.7,0.15,2.1,57.71,1010,26,1.6 +2008,9,27,18,30,16.400000000000002,0.9,0.214,0.61,0,0,0,0,8.5,0,0,0,0,107.74000000000001,0.15,2.1,59.550000000000004,1010,41,2.2 +2008,9,27,19,30,15.700000000000001,0.93,0.20800000000000002,0.61,0,0,0,1,8.5,0,0,0,0,118.27,0.15,2.1,62.06,1010,49,2.4000000000000004 +2008,9,27,20,30,15,0.9500000000000001,0.20700000000000002,0.61,0,0,0,1,8.5,0,0,0,0,127.72,0.15,2.1,65.21000000000001,1010,55,2.2 +2008,9,27,21,30,14.5,0.96,0.21,0.61,0,0,0,0,8.6,0,0,0,0,135.22,0.15,2.1,67.91,1010,61,1.9000000000000001 +2008,9,27,22,30,14.100000000000001,0.97,0.214,0.61,0,0,0,0,8.8,0,0,0,0,139.56,0.15,2.1,70.2,1010,66,1.7000000000000002 +2008,9,27,23,30,13.600000000000001,0.97,0.216,0.61,0,0,0,0,8.8,0,0,0,0,139.66,0.15,2.1,72.68,1010,69,1.5 +2008,9,28,0,30,13.100000000000001,0.98,0.217,0.61,0,0,0,0,8.8,0,0,0,0,135.47,0.15,2.1,75.01,1010,68,1.4000000000000001 +2008,9,28,1,30,12.8,0.99,0.217,0.61,0,0,0,0,8.700000000000001,0,0,0,0,128.07,0.15,2.1,76.35000000000001,1010,67,1.4000000000000001 +2008,9,28,2,30,12.4,1,0.216,0.61,0,0,0,0,8.700000000000001,0,0,0,0,118.69,0.15,2.1,78.05,1010,65,1.3 +2008,9,28,3,30,12,1.01,0.212,0.61,0,0,0,1,8.6,0,0,0,0,108.21000000000001,0.15,2,79.45,1010,63,1.3 +2008,9,28,4,30,11.8,1.03,0.20700000000000002,0.61,0,0,0,0,8.4,0,0,0,0,97.19,0.15,2,79.47,1010,63,1.3 +2008,9,28,5,30,13,1.04,0.202,0.61,29,110,36,0,8.200000000000001,29,110,0,36,85.86,0.15,2,72.73,1010,64,1.7000000000000002 +2008,9,28,6,30,15.5,1.04,0.20400000000000001,0.61,86,432,197,0,8,86,432,0,197,75.08,0.15,2,61.160000000000004,1010,77,1.7000000000000002 +2008,9,28,7,30,17.900000000000002,1.04,0.2,0.61,117,612,377,3,7.7,240,39,0,257,64.82000000000001,0.15,1.9000000000000001,51.13,1010,166,0.9 +2008,9,28,8,30,19.6,1.05,0.188,0.61,131,718,535,0,7.6000000000000005,131,718,0,535,55.74,0.15,1.9000000000000001,45.75,1010,250,1 +2008,9,28,9,30,20.700000000000003,1.07,0.168,0.61,134,786,653,0,7.5,134,786,0,653,48.67,0.15,1.9000000000000001,42.43,1010,258,1.7000000000000002 +2008,9,28,10,30,21.5,1.07,0.162,0.61,137,813,715,0,7.2,137,813,0,715,44.68,0.15,1.9000000000000001,39.71,1010,261,2.1 +2008,9,28,11,30,21.900000000000002,1.07,0.158,0.61,135,817,716,0,6.9,135,817,0,716,44.64,0.15,1.9000000000000001,37.85,1010,262,2.3000000000000003 +2008,9,28,12,30,22,1.03,0.196,0.61,147,762,651,0,6.5,147,762,0,651,48.56,0.15,1.9000000000000001,36.59,1009,263,2.5 +2008,9,28,13,30,21.8,1.03,0.194,0.61,135,713,538,3,6.2,330,80,0,375,55.58,0.15,1.9000000000000001,36.28,1009,263,2.5 +2008,9,28,14,30,21.3,1.02,0.189,0.61,115,625,383,0,6,115,625,0,383,64.64,0.15,1.9000000000000001,36.93,1008,268,2.5 +2008,9,28,15,30,20,1.02,0.192,0.61,86,450,203,0,5.9,86,450,0,203,74.89,0.15,1.9000000000000001,39.85,1008,275,2 +2008,9,28,16,30,18,1.02,0.195,0.61,30,120,40,3,7.300000000000001,19,0,7,19,85.69,0.15,1.9000000000000001,49.54,1008,289,1.3 +2008,9,28,17,30,16.400000000000002,1.01,0.191,0.61,0,0,0,2,8.1,0,0,0,0,97.02,0.15,1.8,57.82,1009,311,1.1 +2008,9,28,18,30,15.600000000000001,1.01,0.187,0.61,0,0,0,0,7.9,0,0,0,0,108.07000000000001,0.15,1.8,60.13,1009,338,1.1 +2008,9,28,19,30,14.8,1.01,0.18,0.61,0,0,0,0,7.7,0,0,0,0,118.61,0.15,1.8,62.660000000000004,1009,186,1 +2008,9,28,20,30,14,1.02,0.17500000000000002,0.61,0,0,0,0,7.800000000000001,0,0,0,0,128.09,0.15,1.7000000000000002,66.18,1009,29,1 +2008,9,28,21,30,13.5,1.03,0.17500000000000002,0.61,0,0,0,0,7.800000000000001,0,0,0,0,135.61,0.15,1.7000000000000002,68.46000000000001,1010,44,0.9 +2008,9,28,22,30,13.100000000000001,1.03,0.176,0.61,0,0,0,0,7.800000000000001,0,0,0,0,139.96,0.15,1.6,70.29,1010,53,0.8 +2008,9,28,23,30,12.8,1.04,0.176,0.61,0,0,0,0,7.9,0,0,0,0,140.03,0.15,1.6,71.9,1010,57,0.8 +2008,9,29,0,30,12.5,1.06,0.177,0.61,0,0,0,0,7.9,0,0,0,0,135.79,0.15,1.6,73.74,1009,56,0.7000000000000001 +2008,9,29,1,30,12.3,1.08,0.177,0.61,0,0,0,0,8.1,0,0,0,0,128.34,0.15,1.6,75.46000000000001,1009,52,0.7000000000000001 +2008,9,29,2,30,12.100000000000001,1.09,0.17400000000000002,0.61,0,0,0,0,8.200000000000001,0,0,0,0,118.92,0.15,1.5,77.14,1009,51,0.8 +2008,9,29,3,30,11.700000000000001,1.11,0.17200000000000001,0.61,0,0,0,0,8.3,0,0,0,0,108.41,0.15,1.5,79.89,1009,53,0.8 +2008,9,29,4,30,11.5,1.1400000000000001,0.171,0.61,0,0,0,0,8.5,0,0,0,0,97.39,0.15,1.5,81.96000000000001,1008,56,0.9 +2008,9,29,5,30,12.600000000000001,1.17,0.171,0.61,27,140,37,0,8.8,27,140,0,37,86.06,0.15,1.4000000000000001,77.43,1009,60,1.1 +2008,9,29,6,30,15.200000000000001,1.2,0.156,0.61,76,504,204,0,9.1,76,504,0,204,75.29,0.15,1.4000000000000001,66.75,1009,67,1.1 +2008,9,29,7,30,17.900000000000002,1.22,0.149,0.61,101,682,388,0,8.8,101,682,0,388,65.06,0.15,1.4000000000000001,55.33,1009,150,0.6000000000000001 +2008,9,29,8,30,20,1.22,0.147,0.61,116,772,548,0,7.2,116,772,0,548,56.02,0.15,1.4000000000000001,43.56,1009,229,0.9 +2008,9,29,9,30,21.1,1.26,0.135,0.61,120,831,666,0,6.5,120,831,0,666,49,0.15,1.4000000000000001,38.81,1009,229,1.8 +2008,9,29,10,30,21.8,1.27,0.136,0.61,125,855,729,0,6.4,125,855,0,729,45.050000000000004,0.15,1.3,36.76,1009,229,2.4000000000000004 +2008,9,29,11,30,22.200000000000003,1.27,0.136,0.61,125,855,729,0,6.2,125,855,0,729,45.03,0.15,1.3,35.51,1008,231,2.8000000000000003 +2008,9,29,12,30,22.200000000000003,1.28,0.132,0.61,119,838,670,0,6,119,838,0,670,48.95,0.15,1.3,35.01,1007,233,3.1 +2008,9,29,13,30,21.8,1.26,0.132,0.61,110,792,554,0,5.800000000000001,110,792,0,554,55.95,0.15,1.3,35.39,1007,233,3.2 +2008,9,29,14,30,21,1.25,0.131,0.61,95,707,394,0,5.7,95,707,0,394,64.99,0.15,1.3,36.76,1007,232,3.2 +2008,9,29,15,30,19.5,1.23,0.13,0.61,71,543,209,0,5.7,71,543,0,209,75.22,0.15,1.3,40.4,1007,230,2.8000000000000003 +2008,9,29,16,30,17.1,1.21,0.127,0.61,27,190,40,0,6.6000000000000005,27,190,0,40,86,0.15,1.3,49.92,1007,231,2 +2008,9,29,17,30,15.200000000000001,1.2,0.124,0.61,0,0,0,0,7.5,0,0,0,0,97.35000000000001,0.15,1.3,60.25,1008,232,1.5 +2008,9,29,18,30,14.5,1.18,0.122,0.61,0,0,0,0,7.7,0,0,0,0,108.4,0.15,1.3,63.83,1008,231,1.2000000000000002 +2008,9,29,19,30,14.3,1.17,0.11900000000000001,0.61,0,0,0,0,7.7,0,0,0,0,118.96000000000001,0.15,1.3,64.58,1008,227,1 +2008,9,29,20,30,14.3,1.17,0.117,0.61,0,0,0,0,7.6000000000000005,0,0,0,0,128.45,0.15,1.2000000000000002,64.07000000000001,1009,217,0.8 +2008,9,29,21,30,14.3,1.17,0.117,0.61,0,0,0,0,7.5,0,0,0,0,136,0.15,1.2000000000000002,63.54,1008,202,0.6000000000000001 +2008,9,29,22,30,14.200000000000001,1.17,0.11900000000000001,0.61,0,0,0,0,7.4,0,0,0,0,140.36,0.15,1.2000000000000002,63.78,1008,174,0.4 +2008,9,29,23,30,13.8,1.16,0.123,0.61,0,0,0,0,7.4,0,0,0,0,140.4,0.15,1.2000000000000002,65.23,1008,129,0.4 +2008,9,30,0,30,13.3,1.16,0.128,0.61,0,0,0,0,7.4,0,0,0,0,136.11,0.15,1.2000000000000002,67.29,1008,98,0.5 +2008,9,30,1,30,12.700000000000001,1.1500000000000001,0.133,0.61,0,0,0,0,7.300000000000001,0,0,0,0,128.61,0.15,1.2000000000000002,69.79,1007,94,0.7000000000000001 +2008,9,30,2,30,12.200000000000001,1.1400000000000001,0.138,0.61,0,0,0,0,7.300000000000001,0,0,0,0,119.15,0.15,1.3,72.01,1007,95,0.9 +2008,9,30,3,30,11.600000000000001,1.1400000000000001,0.14200000000000002,0.61,0,0,0,0,7.4,0,0,0,0,108.62,0.15,1.3,75.18,1007,98,1.1 +2008,9,30,4,30,11.3,1.1400000000000001,0.148,0.61,0,0,0,0,7.5,0,0,0,0,97.59,0.15,1.3,77.4,1007,102,1.2000000000000002 +2008,9,30,5,30,12.600000000000001,1.1500000000000001,0.154,0.61,26,146,36,0,7.7,26,146,0,36,86.25,0.15,1.4000000000000001,71.89,1007,104,1.6 +2008,9,30,6,30,15.3,1.1300000000000001,0.16,0.61,77,492,200,0,8,77,492,0,200,75.51,0.15,1.4000000000000001,61.77,1008,103,1.8 +2008,9,30,7,30,17.900000000000002,1.1400000000000001,0.157,0.61,104,669,383,0,7.4,104,669,0,383,65.3,0.15,1.4000000000000001,50.15,1008,102,1.1 +2008,9,30,8,30,19.900000000000002,1.1500000000000001,0.154,0.61,119,763,542,0,6.4,119,763,0,542,56.300000000000004,0.15,1.4000000000000001,41.37,1007,169,0.7000000000000001 +2008,9,30,9,30,21.3,1.41,0.132,0.61,118,836,663,0,6,118,836,0,663,49.33,0.15,1.4000000000000001,36.88,1007,234,1.4000000000000001 +2008,9,30,10,30,22.200000000000003,1.41,0.133,0.61,122,853,721,0,6.300000000000001,122,853,0,721,45.42,0.15,1.5,35.730000000000004,1007,230,2.3000000000000003 +2008,9,30,11,30,22.6,1.3900000000000001,0.137,0.61,124,846,718,3,7,408,177,0,532,45.43,0.15,1.6,36.51,1006,228,2.7 +2008,9,30,12,30,22.6,1.35,0.14100000000000001,0.61,121,818,654,1,7.7,121,818,0,654,49.34,0.15,1.7000000000000002,38.26,1006,228,2.8000000000000003 +2008,9,30,13,30,22.200000000000003,1.28,0.145,0.61,114,766,539,3,8.3,323,117,0,388,56.32,0.15,1.7000000000000002,40.88,1005,226,2.8000000000000003 +2008,9,30,14,30,21.5,1.19,0.148,0.61,100,669,379,3,8.8,121,0,7,121,65.33,0.15,1.8,44.18,1005,222,2.6 +2008,9,30,15,30,20.200000000000003,1.09,0.15,0.61,74,492,197,2,9.3,65,0,0,65,75.55,0.15,1.8,49.57,1005,212,2 +2008,9,30,16,30,18.2,1.02,0.15,0.61,26,132,34,3,10.600000000000001,21,0,7,21,86.31,0.15,1.8,61.31,1005,201,1.3 +2008,9,30,17,30,17,0.9500000000000001,0.14300000000000002,0.61,0,0,0,0,11.100000000000001,0,0,0,0,97.67,0.15,1.8,68.42,1005,187,1.2000000000000002 +2008,9,30,18,30,16.5,0.9,0.134,0.61,0,0,0,3,11.3,0,0,0,0,108.73,0.15,1.8,71.51,1005,169,1.3 +2008,9,30,19,30,16.1,0.86,0.124,0.61,0,0,0,4,11.600000000000001,0,0,0,0,119.3,0.15,1.9000000000000001,74.60000000000001,1005,155,1.5 +2008,9,30,20,30,15.8,0.85,0.117,0.61,0,0,0,4,11.9,0,0,0,0,128.81,0.15,2,77.59,1005,144,1.5 +2008,9,30,21,30,15.3,0.84,0.11900000000000001,0.61,0,0,0,4,12.200000000000001,0,0,0,0,136.39000000000001,0.15,2.1,81.55,1005,137,1.6 +2008,9,30,22,30,15.3,0.84,0.131,0.61,0,0,0,0,12.4,0,0,0,0,140.75,0.15,2.3000000000000003,82.95,1005,136,1.7000000000000002 +2008,9,30,23,30,15.700000000000001,0.8200000000000001,0.145,0.61,0,0,0,3,13.100000000000001,0,0,0,0,140.77,0.15,2.4000000000000004,84.27,1005,138,1.9000000000000001 +2008,10,1,0,30,16,0.8,0.154,0.65,0,0,0,4,13.9,0,0,0,0,136.43,0.16,2.5,87.08,1004,139,2 +2008,10,1,1,30,16.1,0.79,0.151,0.65,0,0,0,3,14.4,0,0,0,0,128.88,0.16,2.5,89.4,1003,141,2 +2008,10,1,2,30,16.1,0.79,0.136,0.65,0,0,0,4,14.600000000000001,0,0,0,0,119.38,0.16,2.5,90.83,1003,147,2 +2008,10,1,3,30,16.2,0.8200000000000001,0.131,0.65,0,0,0,3,14.8,0,0,0,0,108.83,0.16,2.6,91.62,1003,155,1.9000000000000001 +2008,10,1,4,30,16.400000000000002,0.84,0.116,0.65,0,0,0,0,15.100000000000001,0,0,0,0,97.79,0.16,2.5,92.09,1003,166,1.9000000000000001 +2008,10,1,5,30,17.400000000000002,0.87,0.097,0.65,23,169,34,0,15.4,23,169,0,34,86.45,0.16,2.4000000000000004,88.04,1003,177,2.3000000000000003 +2008,10,1,6,30,19,0.86,0.105,0.65,65,528,195,0,16.400000000000002,65,528,0,195,75.72,0.16,2.3000000000000003,84.8,1004,187,2.9000000000000004 +2008,10,1,7,30,20.3,0.93,0.08700000000000001,0.65,80,722,379,0,16.6,80,722,0,379,65.55,0.16,2.2,79.3,1004,198,3.1 +2008,10,1,8,30,21.700000000000003,1,0.073,0.65,86,821,538,0,15.600000000000001,86,821,0,538,56.59,0.16,2.2,68.3,1004,207,3.2 +2008,10,1,9,30,23,0.8200000000000001,0.099,0.65,106,834,646,0,13.600000000000001,106,834,0,646,49.660000000000004,0.16,2.2,55.28,1004,213,3.4000000000000004 +2008,10,1,10,30,23.8,0.88,0.10300000000000001,0.65,111,851,704,0,12.3,111,851,0,704,45.800000000000004,0.16,2.2,48.39,1004,217,3.6 +2008,10,1,11,30,24,0.92,0.107,0.65,113,846,702,0,11.5,113,846,0,702,45.82,0.16,2.3000000000000003,45.4,1004,220,3.8000000000000003 +2008,10,1,12,30,23.8,0.97,0.107,0.65,108,826,643,0,10.9,108,826,0,643,49.730000000000004,0.16,2.3000000000000003,44.37,1003,222,3.7 +2008,10,1,13,30,23.3,1.01,0.107,0.65,100,779,528,0,10.600000000000001,100,779,0,528,56.69,0.16,2.4000000000000004,44.64,1002,222,3.6 +2008,10,1,14,30,22.5,1.05,0.105,0.65,86,696,372,0,10.4,86,696,0,372,65.68,0.16,2.4000000000000004,46.300000000000004,1002,220,3.3000000000000003 +2008,10,1,15,30,21.1,1.04,0.108,0.65,64,525,192,0,10.600000000000001,64,525,0,192,75.88,0.16,2.4000000000000004,50.97,1002,218,2.7 +2008,10,1,16,30,19,1.08,0.107,0.65,22,159,31,0,11.700000000000001,22,159,0,31,86.62,0.16,2.5,62.67,1002,217,1.8 +2008,10,1,17,30,17.6,1.12,0.106,0.65,0,0,0,0,12.700000000000001,0,0,0,0,97.98,0.16,2.5,73.18,1003,214,1.3 +2008,10,1,18,30,17.1,1.1500000000000001,0.106,0.65,0,0,0,0,13.5,0,0,0,0,109.05,0.16,2.5,79.53,1003,207,1.2000000000000002 +2008,10,1,19,30,16.8,1.17,0.108,0.65,0,0,0,0,14,0,0,0,0,119.64,0.16,2.5,83.41,1003,197,1.1 +2008,10,1,20,30,16.6,1.2,0.113,0.65,0,0,0,0,14.200000000000001,0,0,0,0,129.17000000000002,0.16,2.5,85.89,1003,187,1.1 +2008,10,1,21,30,16.5,1.21,0.121,0.65,0,0,0,0,14.3,0,0,0,0,136.77,0.16,2.5,87,1003,180,1 +2008,10,1,22,30,16.3,1.21,0.13,0.65,0,0,0,0,14.3,0,0,0,0,141.15,0.16,2.5,87.92,1003,177,1 +2008,10,1,23,30,16.1,1.2,0.14200000000000002,0.65,0,0,0,0,14.200000000000001,0,0,0,0,141.14000000000001,0.16,2.5,88.41,1003,181,1 +2008,10,2,0,30,16,1.16,0.158,0.65,0,0,0,0,14,0,0,0,0,136.75,0.15,2.5,87.93,1003,190,1.1 +2008,10,2,1,30,16.2,1.12,0.177,0.65,0,0,0,0,13.9,0,0,0,0,129.15,0.15,2.5,85.98,1002,197,1.1 +2008,10,2,2,30,16.3,1.07,0.186,0.65,0,0,0,0,13.700000000000001,0,0,0,0,119.62,0.15,2.5,84.72,1002,200,1.1 +2008,10,2,3,30,16.3,1.03,0.198,0.65,0,0,0,5,13.600000000000001,0,0,0,0,109.04,0.15,2.6,84.2,1002,200,1.2000000000000002 +2008,10,2,4,30,16.400000000000002,0.99,0.196,0.65,0,0,0,4,13.600000000000001,0,0,0,0,97.99000000000001,0.15,2.7,83.77,1002,198,1.2000000000000002 +2008,10,2,5,30,17.1,0.9400000000000001,0.186,0.65,24,80,28,7,13.700000000000001,17,0,7,17,86.64,0.15,2.7,80.62,1002,196,1.4000000000000001 +2008,10,2,6,30,18.400000000000002,0.9400000000000001,0.185,0.65,80,416,181,8,13.9,122,109,7,148,75.94,0.15,2.7,75.15,1002,197,2.2 +2008,10,2,7,30,19.400000000000002,0.9400000000000001,0.17200000000000001,0.65,107,609,357,0,13.9,107,609,0,357,65.79,0.15,2.7,70.68,1002,203,3 +2008,10,2,8,30,20.1,0.93,0.153,0.65,118,723,513,1,13.700000000000001,118,723,0,513,56.870000000000005,0.15,2.7,66.56,1002,209,3.4000000000000004 +2008,10,2,9,30,20.700000000000003,0.86,0.152,0.65,128,774,625,2,13.5,346,61,0,385,49.99,0.15,2.6,63.52,1002,215,3.6 +2008,10,2,10,30,21.1,0.81,0.153,0.65,133,794,683,2,13.4,372,81,0,427,46.17,0.15,2.6,61.5,1002,220,3.8000000000000003 +2008,10,2,11,30,21.3,0.77,0.154,0.65,134,794,684,1,13.4,134,794,0,684,46.22,0.15,2.5,60.58,1002,223,3.9000000000000004 +2008,10,2,12,30,21.400000000000002,0.85,0.14100000000000001,0.65,123,788,629,8,13.3,268,46,7,298,50.120000000000005,0.15,2.4000000000000004,60.06,1001,224,4 +2008,10,2,13,30,21.3,0.8200000000000001,0.14300000000000002,0.65,115,735,515,3,13.200000000000001,257,29,0,272,57.06,0.15,2.4000000000000004,60.04,1001,225,4 +2008,10,2,14,30,20.8,0.77,0.148,0.65,101,633,358,7,13.200000000000001,196,173,0,266,66.03,0.15,2.4000000000000004,61.79,1001,226,3.8000000000000003 +2008,10,2,15,30,19.8,0.72,0.161,0.65,77,431,180,7,13.3,14,0,0,14,76.2,0.15,2.4000000000000004,66.17,1001,227,3.2 +2008,10,2,16,30,18.6,0.67,0.17200000000000001,0.65,22,63,26,8,13.600000000000001,10,0,7,10,86.92,0.15,2.4000000000000004,72.67,1001,227,2.2 +2008,10,2,17,30,18.1,0.63,0.183,0.65,0,0,0,3,13.9,0,0,0,0,98.3,0.15,2.5,76.61,1001,227,1.8 +2008,10,2,18,30,17.900000000000002,0.63,0.21,0.65,0,0,0,0,14,0,0,0,0,109.37,0.15,2.6,77.8,1001,228,2 +2008,10,2,19,30,17.6,0.61,0.214,0.65,0,0,0,0,13.9,0,0,0,0,119.97,0.15,2.7,78.87,1001,229,2.1 +2008,10,2,20,30,17.400000000000002,0.6,0.21,0.65,0,0,0,8,13.9,0,0,0,0,129.53,0.15,2.8000000000000003,80.02,1001,230,2.2 +2008,10,2,21,30,17.400000000000002,0.67,0.222,0.65,0,0,0,5,13.9,0,0,0,0,137.16,0.15,2.8000000000000003,79.81,1001,232,2.2 +2008,10,2,22,30,17.400000000000002,0.73,0.23,0.65,0,0,0,8,13.9,0,0,0,0,141.54,0.15,2.7,79.79,1001,234,2.1 +2008,10,2,23,30,17.2,0.77,0.214,0.65,0,0,0,5,13.9,0,0,0,0,141.51,0.15,2.6,80.92,1000,238,2 +2008,10,3,0,30,16.900000000000002,0.84,0.203,0.65,0,0,0,0,13.9,0,0,0,0,137.07,0.16,2.4000000000000004,82.37,1000,242,1.9000000000000001 +2008,10,3,1,30,16.6,0.89,0.169,0.65,0,0,0,3,13.8,0,0,0,0,129.42000000000002,0.16,2.2,83.58,999,247,1.8 +2008,10,3,2,30,16.2,0.91,0.134,0.65,0,0,0,0,13.600000000000001,0,0,0,0,119.85000000000001,0.16,2,84.8,999,249,1.6 +2008,10,3,3,30,15.700000000000001,0.9500000000000001,0.129,0.65,0,0,0,0,13.4,0,0,0,0,109.25,0.16,1.9000000000000001,86.19,999,248,1.5 +2008,10,3,4,30,15.4,0.96,0.122,0.65,0,0,0,0,13.200000000000001,0,0,0,0,98.19,0.16,2,86.94,999,242,1.4000000000000001 +2008,10,3,5,30,16.8,0.96,0.112,0.65,22,140,30,1,13.200000000000001,22,140,0,30,86.84,0.16,2.1,79.39,999,235,1.8 +2008,10,3,6,30,19.200000000000003,0.9,0.124,0.65,68,493,186,0,13.4,68,493,0,186,76.16,0.16,2.3000000000000003,69.32000000000001,999,232,2.7 +2008,10,3,7,30,20.8,0.9500000000000001,0.123,0.65,92,664,361,0,13.100000000000001,92,664,0,361,66.04,0.16,2.6,61.38,999,230,3.5 +2008,10,3,8,30,21.8,1.03,0.125,0.65,106,749,513,8,13,257,185,0,358,57.15,0.16,2.8000000000000003,57.31,1000,227,4 +2008,10,3,9,30,22.200000000000003,1.04,0.153,0.65,126,770,618,8,13,304,148,0,399,50.32,0.16,2.9000000000000004,55.79,1000,226,4.3 +2008,10,3,10,30,22,1.08,0.168,0.65,137,780,673,7,12.8,258,471,7,582,46.54,0.16,2.9000000000000004,56.06,999,227,4.5 +2008,10,3,11,30,21.5,1.1,0.186,0.65,144,766,670,3,12.9,357,42,0,386,46.61,0.16,2.9000000000000004,57.870000000000005,999,227,4.4 +2008,10,3,12,30,20.8,1.12,0.215,0.65,149,717,605,0,13.200000000000001,149,717,0,605,50.51,0.16,3,61.72,999,223,4.2 +2008,10,3,13,30,20.3,1.1400000000000001,0.221,0.65,138,658,493,1,13.700000000000001,138,658,0,493,57.43,0.16,3,65.94,999,215,3.8000000000000003 +2008,10,3,14,30,19.8,1.17,0.212,0.65,114,566,341,8,14.100000000000001,133,10,0,137,66.37,0.16,3,69.88,999,209,3.6 +2008,10,3,15,30,19.3,1.18,0.214,0.65,80,382,169,7,14.600000000000001,4,0,0,4,76.53,0.16,3,74.41,999,205,3.2 +2008,10,3,16,30,18.6,1.17,0.231,0.65,19,53,21,7,15.3,4,0,7,4,87.23,0.16,3,81.09,999,204,2.6 +2008,10,3,17,30,18.1,1.1500000000000001,0.248,0.65,0,0,0,8,15.8,0,0,0,0,98.62,0.16,3.1,86.27,999,209,2.5 +2008,10,3,18,30,17.900000000000002,1.08,0.276,0.65,0,0,0,4,16,0,0,0,0,109.69,0.16,3.1,88.62,999,218,2.7 +2008,10,3,19,30,17.8,0.97,0.309,0.65,0,0,0,4,15.9,0,0,0,0,120.31,0.16,3.1,88.85000000000001,999,231,3.1 +2008,10,3,20,30,17.6,0.88,0.317,0.65,0,0,0,8,15.600000000000001,0,0,0,0,129.89000000000001,0.16,3.1,88,999,244,3.7 +2008,10,3,21,30,17,0.87,0.324,0.65,0,0,0,4,14.9,0,0,0,0,137.54,0.16,3,87.2,999,252,4 +2008,10,3,22,30,16.400000000000002,0.86,0.3,0.65,0,0,0,3,13.8,0,0,0,0,141.94,0.16,2.8000000000000003,84.48,999,256,3.8000000000000003 +2008,10,3,23,30,16,0.85,0.262,0.65,0,0,0,0,12.700000000000001,0,0,0,0,141.88,0.16,2.5,80.98,999,256,3.1 +2008,10,4,0,30,15.4,0.84,0.234,0.65,0,0,0,3,11.9,0,0,0,0,137.39000000000001,0.15,2.2,79.66,999,251,2.3000000000000003 +2008,10,4,1,30,14.8,0.81,0.179,0.65,0,0,0,1,11,0,0,0,0,129.68,0.15,1.8,78.04,998,244,1.9000000000000001 +2008,10,4,2,30,14.200000000000001,0.77,0.14400000000000002,0.65,0,0,0,0,10.100000000000001,0,0,0,0,120.07000000000001,0.15,1.5,76.59,998,242,1.8 +2008,10,4,3,30,13.700000000000001,0.77,0.133,0.65,0,0,0,0,9.700000000000001,0,0,0,0,109.46000000000001,0.15,1.3,76.67,998,245,1.9000000000000001 +2008,10,4,4,30,13.3,0.74,0.138,0.65,0,0,0,3,9.4,0,0,0,0,98.39,0.15,1.3,77.02,998,250,2 +2008,10,4,5,30,14.600000000000001,0.6900000000000001,0.15,0.65,22,82,27,0,9.5,22,82,0,27,87.03,0.15,1.4000000000000001,71.27,998,252,2.4000000000000004 +2008,10,4,6,30,16.400000000000002,0.74,0.186,0.65,82,413,179,0,10.5,82,413,0,179,76.37,0.15,1.6,67.98,998,250,3.2 +2008,10,4,7,30,17,0.79,0.23600000000000002,0.65,128,549,348,1,10.600000000000001,128,549,0,348,66.28,0.15,1.8,66.05,999,249,3.6 +2008,10,4,8,30,17,0.78,0.276,0.65,164,616,495,4,10.5,23,0,0,23,57.44,0.15,1.9000000000000001,65.63,999,251,3.9000000000000004 +2008,10,4,9,30,16.3,0.76,0.481,0.65,245,530,582,0,10.200000000000001,245,530,0,582,50.65,0.15,2,67.34,999,257,4 +2008,10,4,10,30,15.5,0.78,0.555,0.65,277,517,630,7,10.4,26,0,0,26,46.92,0.15,2.1,71.67,999,276,4 +2008,10,4,11,30,15,0.8200000000000001,0.555,0.65,276,521,631,8,10.4,95,0,0,96,47,0.15,2,73.78,999,304,4.1000000000000005 +2008,10,4,12,30,14.9,0.9500000000000001,0.5760000000000001,0.65,264,491,574,4,9.5,242,0,0,242,50.89,0.15,1.9000000000000001,70.04,1000,324,4.7 +2008,10,4,13,30,15.600000000000001,1.09,0.508,0.65,219,479,475,6,7.6000000000000005,187,7,0,190,57.79,0.15,1.6,58.92,1001,334,5.1000000000000005 +2008,10,4,14,30,16.400000000000002,1.21,0.361,0.65,150,473,337,7,5.4,156,13,0,162,66.71000000000001,0.15,1.4000000000000001,48.01,1001,336,5 +2008,10,4,15,30,15.9,1.27,0.259,0.65,86,367,170,3,4.7,63,0,0,63,76.85000000000001,0.15,1.4000000000000001,47.17,1002,333,4.3 +2008,10,4,16,30,14.4,1.28,0.232,0.65,18,59,20,3,5.9,10,0,7,10,87.52,0.15,1.4000000000000001,56.54,1003,336,3.8000000000000003 +2008,10,4,17,30,13.100000000000001,1.3,0.213,0.65,0,0,0,4,7.2,0,0,0,0,98.93,0.15,1.4000000000000001,67.35,1004,344,3.7 +2008,10,4,18,30,11.9,1.33,0.17500000000000002,0.65,0,0,0,0,8.1,0,0,0,0,110.01,0.15,1.2000000000000002,77.66,1006,349,3.3000000000000003 +2008,10,4,19,30,10.8,1.31,0.137,0.65,0,0,0,0,8.5,0,0,0,0,120.64,0.15,1.1,85.60000000000001,1007,353,2.8000000000000003 +2008,10,4,20,30,10.100000000000001,1.28,0.112,0.65,0,0,0,0,8.6,0,0,0,0,130.25,0.15,1.1,90.23,1007,178,2.5 +2008,10,4,21,30,9.700000000000001,1.29,0.098,0.65,0,0,0,0,8.3,0,0,0,0,137.92000000000002,0.15,1,91.24,1007,3,2.2 +2008,10,4,22,30,9.3,1.33,0.089,0.65,0,0,0,0,7.9,0,0,0,0,142.33,0.15,1,91,1007,7,2 +2008,10,4,23,30,9,1.36,0.088,0.65,0,0,0,0,7.4,0,0,0,0,142.25,0.15,0.9,89.45,1008,12,1.8 +2008,10,5,0,30,8.8,1.3800000000000001,0.08600000000000001,0.65,0,0,0,1,6.800000000000001,0,0,0,0,137.71,0.15,0.9,87.17,1008,20,1.7000000000000002 +2008,10,5,1,30,8.6,1.4000000000000001,0.08,0.65,0,0,0,0,6.300000000000001,0,0,0,0,129.95,0.15,0.9,85.23,1008,28,1.7000000000000002 +2008,10,5,2,30,8.5,1.42,0.07200000000000001,0.65,0,0,0,0,5.7,0,0,0,0,120.3,0.15,0.9,82.84,1008,36,1.6 +2008,10,5,3,30,8.4,1.43,0.065,0.65,0,0,0,0,5.300000000000001,0,0,0,0,109.66,0.15,0.9,80.89,1008,45,1.5 +2008,10,5,4,30,8.4,1.44,0.063,0.65,0,0,0,1,5,0,0,0,0,98.59,0.15,0.9,79.13,1009,57,1.4000000000000001 +2008,10,5,5,30,9.9,1.44,0.063,0.65,18,238,30,0,4.7,18,238,0,30,87.22,0.15,1,70.17,1009,71,1.5 +2008,10,5,6,30,12.700000000000001,1.31,0.07200000000000001,0.65,55,610,196,0,5.1000000000000005,55,610,0,196,76.59,0.15,1,59.69,1010,88,1.6 +2008,10,5,7,30,15.5,1.31,0.073,0.65,74,772,381,0,4.5,74,772,0,381,66.53,0.15,1,47.85,1010,148,1.1 +2008,10,5,8,30,17.8,1.31,0.075,0.65,86,847,538,7,2,244,298,0,404,57.72,0.15,1.1,34.74,1010,220,1 +2008,10,5,9,30,19,1.27,0.081,0.65,96,884,652,7,1,304,170,0,411,50.980000000000004,0.15,1.1,29.900000000000002,1010,236,1.7000000000000002 +2008,10,5,10,30,19.8,1.26,0.084,0.65,100,896,708,7,1.1,287,354,0,527,47.29,0.15,1.2000000000000002,28.7,1010,228,2.3000000000000003 +2008,10,5,11,30,20.200000000000003,1.24,0.08700000000000001,0.65,101,889,703,0,2.1,101,889,0,703,47.39,0.15,1.3,29.990000000000002,1009,223,3 +2008,10,5,12,30,20.200000000000003,1.16,0.094,0.65,101,858,637,0,3.5,101,858,0,637,51.28,0.15,1.4000000000000001,33.25,1009,222,3.5 +2008,10,5,13,30,19.8,1.1400000000000001,0.097,0.65,94,801,516,0,5,94,801,0,516,58.160000000000004,0.15,1.6,37.77,1009,222,3.8000000000000003 +2008,10,5,14,30,19.1,1.1,0.096,0.65,80,709,357,1,6.1000000000000005,80,709,0,357,67.05,0.15,1.7000000000000002,42.53,1009,224,3.7 +2008,10,5,15,30,17.6,1.08,0.095,0.65,58,531,176,2,6.800000000000001,64,1,0,64,77.18,0.15,1.7000000000000002,49.04,1009,226,2.9000000000000004 +2008,10,5,16,30,15.5,1.05,0.095,0.65,16,119,21,7,7.9,12,0,7,12,87.81,0.15,1.8,60.550000000000004,1009,229,1.8 +2008,10,5,17,30,14.200000000000001,1.03,0.095,0.65,0,0,0,0,8.4,0,0,0,0,99.24000000000001,0.15,1.8,68.01,1009,231,1.4000000000000001 +2008,10,5,18,30,14,1.03,0.097,0.65,0,0,0,0,8.8,0,0,0,0,110.33,0.15,1.7000000000000002,70.68,1009,231,1.4000000000000001 +2008,10,5,19,30,13.9,1.03,0.094,0.65,0,0,0,0,8.9,0,0,0,0,120.97,0.15,1.7000000000000002,71.97,1009,228,1.3 +2008,10,5,20,30,13.9,1.03,0.091,0.65,0,0,0,0,9.1,0,0,0,0,130.6,0.15,1.7000000000000002,72.82000000000001,1010,220,1.2000000000000002 +2008,10,5,21,30,13.9,1.02,0.09,0.65,0,0,0,0,9.3,0,0,0,0,138.3,0.15,1.8,74.02,1010,207,1.1 +2008,10,5,22,30,13.600000000000001,1.01,0.089,0.65,0,0,0,0,9.600000000000001,0,0,0,0,142.72,0.15,1.8,76.72,1010,197,1 +2008,10,5,23,30,13.5,1.01,0.09,0.65,0,0,0,0,9.8,0,0,0,0,142.61,0.15,1.8,78.28,1010,192,0.9 +2008,10,6,0,30,13.4,1.03,0.093,0.65,0,0,0,0,10,0,0,0,0,138.02,0.16,1.8,79.72,1010,194,0.9 +2008,10,6,1,30,13.5,1.06,0.099,0.65,0,0,0,1,10.100000000000001,0,0,0,0,130.21,0.16,1.9000000000000001,80.05,1010,199,0.7000000000000001 +2008,10,6,2,30,13.5,1.09,0.11,0.65,0,0,0,0,10.200000000000001,0,0,0,0,120.53,0.16,1.9000000000000001,80.64,1010,198,0.5 +2008,10,6,3,30,13.4,1.12,0.122,0.65,0,0,0,4,10.4,0,0,0,0,109.87,0.16,2,81.81,1010,172,0.30000000000000004 +2008,10,6,4,30,13.3,1.1500000000000001,0.125,0.65,0,0,0,4,10.5,0,0,0,0,98.79,0.16,2,83.22,1010,134,0.30000000000000004 +2008,10,6,5,30,14,1.17,0.113,0.65,18,124,24,3,10.700000000000001,6,0,7,6,87.41,0.16,2.1,80.28,1010,117,0.4 +2008,10,6,6,30,16.1,1.2,0.099,0.65,59,526,179,4,11.200000000000001,6,0,0,6,76.81,0.16,2.2,72.74,1011,172,0.6000000000000001 +2008,10,6,7,30,18.3,1.2,0.096,0.65,80,699,356,3,11.4,72,0,0,72,66.77,0.16,2.3000000000000003,64.16,1011,242,1.3 +2008,10,6,8,30,19.8,1.22,0.09,0.65,90,791,509,4,11.4,181,1,0,181,58.01,0.16,2.4000000000000004,58.52,1011,253,2.1 +2008,10,6,9,30,20.8,1.44,0.07,0.65,88,855,623,2,11.3,335,218,0,471,51.31,0.16,2.5,54.61,1011,248,2.5 +2008,10,6,10,30,21.6,1.41,0.07200000000000001,0.65,93,872,680,1,11.4,93,872,0,680,47.660000000000004,0.16,2.5,52.22,1011,245,2.9000000000000004 +2008,10,6,11,30,21.900000000000002,1.36,0.081,0.65,97,863,677,2,11.5,367,210,0,508,47.78,0.16,2.5,51.730000000000004,1011,242,3.1 +2008,10,6,12,30,21.900000000000002,1.16,0.115,0.65,109,807,610,8,11.600000000000001,144,2,0,145,51.660000000000004,0.16,2.5,52.15,1011,239,3.2 +2008,10,6,13,30,21.400000000000002,1.18,0.109,0.65,98,764,497,8,11.8,246,202,0,352,58.52,0.16,2.5,54.15,1011,236,3.2 +2008,10,6,14,30,20.700000000000003,1.18,0.095,0.65,80,688,344,7,11.8,179,226,0,266,67.39,0.16,2.5,56.88,1011,234,3.1 +2008,10,6,15,30,19.400000000000002,1.2,0.10300000000000001,0.65,58,495,166,0,12,58,495,0,166,77.5,0.16,2.6,62.13,1011,232,2.5 +2008,10,6,16,30,17.6,1.24,0.095,0.65,14,106,18,0,12.4,14,106,0,18,88.10000000000001,0.16,2.6,71.34,1011,232,1.6 +2008,10,6,17,30,16.2,1.28,0.083,0.65,0,0,0,3,12.8,0,0,0,0,99.55,0.16,2.6,80.04,1011,231,1.2000000000000002 +2008,10,6,18,30,15.8,1.32,0.078,0.65,0,0,0,3,13.100000000000001,0,0,0,0,110.64,0.16,2.6,83.98,1012,228,1 +2008,10,6,19,30,15.8,1.35,0.077,0.65,0,0,0,3,13.200000000000001,0,0,0,0,121.3,0.16,2.7,84.79,1012,218,0.9 +2008,10,6,20,30,15.8,1.3800000000000001,0.075,0.65,0,0,0,3,13.200000000000001,0,0,0,0,130.95,0.16,2.7,84.79,1012,195,0.7000000000000001 +2008,10,6,21,30,15.600000000000001,1.4000000000000001,0.077,0.65,0,0,0,3,13.200000000000001,0,0,0,0,138.68,0.16,2.8000000000000003,85.55,1012,167,0.6000000000000001 +2008,10,6,22,30,15.5,1.41,0.077,0.65,0,0,0,3,13.100000000000001,0,0,0,0,143.11,0.16,2.8000000000000003,85.61,1012,147,0.6000000000000001 +2008,10,6,23,30,15.4,1.42,0.076,0.65,0,0,0,3,13,0,0,0,0,142.98,0.16,2.8000000000000003,85.5,1011,137,0.6000000000000001 +2008,10,7,0,30,15.3,1.41,0.079,0.65,0,0,0,3,12.9,0,0,0,0,138.33,0.16,2.7,85.47,1011,132,0.6000000000000001 +2008,10,7,1,30,15.200000000000001,1.4000000000000001,0.081,0.65,0,0,0,3,12.8,0,0,0,0,130.48,0.16,2.7,85.44,1011,125,0.7000000000000001 +2008,10,7,2,30,14.9,1.3800000000000001,0.085,0.65,0,0,0,3,12.700000000000001,0,0,0,0,120.76,0.16,2.7,86.57000000000001,1011,116,0.7000000000000001 +2008,10,7,3,30,14.5,1.35,0.09,0.65,0,0,0,3,12.600000000000001,0,0,0,0,110.08,0.16,2.7,88.49,1011,109,0.8 +2008,10,7,4,30,14.200000000000001,1.33,0.094,0.65,0,0,0,3,12.600000000000001,0,0,0,0,98.99000000000001,0.16,2.7,90,1011,107,0.9 +2008,10,7,5,30,15.100000000000001,1.31,0.098,0.65,17,131,22,1,12.5,17,131,0,22,87.61,0.16,2.7,84.48,1011,108,1.1 +2008,10,7,6,30,17.400000000000002,1.3,0.10200000000000001,0.65,59,510,173,3,12.5,21,0,0,21,77.03,0.16,2.7,73.08,1011,125,1 +2008,10,7,7,30,19.700000000000003,1.3,0.106,0.65,82,678,347,3,12.700000000000001,187,7,0,190,67.02,0.16,2.7,63.870000000000005,1011,176,0.9 +2008,10,7,8,30,21.5,1.31,0.106,0.65,96,767,499,0,12.700000000000001,96,767,0,499,58.29,0.16,2.7,57.11,1011,222,1.2000000000000002 +2008,10,7,9,30,22.6,1.33,0.10200000000000001,0.65,102,818,610,0,12.3,102,818,0,610,51.64,0.16,2.7,52.24,1010,237,1.8 +2008,10,7,10,30,23.200000000000003,1.32,0.10200000000000001,0.65,106,838,667,0,12.200000000000001,106,838,0,667,48.03,0.16,2.7,50.03,1010,243,2.3000000000000003 +2008,10,7,11,30,23.3,1.33,0.098,0.65,104,842,665,2,12.3,382,144,0,478,48.17,0.16,2.7,50.04,1010,246,2.7 +2008,10,7,12,30,23.1,1.3,0.11,0.65,105,808,602,0,12.4,105,808,0,602,52.04,0.16,2.7,51.1,1009,248,2.9000000000000004 +2008,10,7,13,30,22.5,1.31,0.115,0.65,99,754,489,0,12.600000000000001,99,754,0,489,58.88,0.16,2.7,53.480000000000004,1009,251,3 +2008,10,7,14,30,21.700000000000003,1.31,0.111,0.65,83,664,335,0,12.700000000000001,83,664,0,335,67.73,0.16,2.7,56.5,1009,253,2.8000000000000003 +2008,10,7,15,30,20.6,1.31,0.137,0.65,63,445,157,0,12.8,63,445,0,157,77.82000000000001,0.16,2.7,61,1008,252,2.2 +2008,10,7,16,30,19.1,1.34,0.146,0.65,13,61,14,0,13.4,13,61,0,14,88.39,0.16,2.6,69.4,1009,248,1.5 +2008,10,7,17,30,18,1.37,0.135,0.65,0,0,0,0,13.9,0,0,0,0,99.86,0.16,2.6,76.83,1009,245,1.2000000000000002 +2008,10,7,18,30,17.3,1.4000000000000001,0.127,0.65,0,0,0,0,14.3,0,0,0,0,110.96000000000001,0.16,2.5,82.58,1009,245,1 +2008,10,7,19,30,16.900000000000002,1.4000000000000001,0.124,0.65,0,0,0,0,14.700000000000001,0,0,0,0,121.63,0.16,2.5,86.72,1009,246,0.9 +2008,10,7,20,30,16.7,1.4000000000000001,0.122,0.65,0,0,0,0,14.9,0,0,0,0,131.3,0.16,2.5,88.87,1009,245,0.7000000000000001 +2008,10,7,21,30,16.8,1.3900000000000001,0.124,0.65,0,0,0,0,14.9,0,0,0,0,139.06,0.16,2.4000000000000004,88.62,1009,228,0.4 +2008,10,7,22,30,16.6,1.37,0.124,0.65,0,0,0,0,14.9,0,0,0,0,143.5,0.16,2.4000000000000004,89.65,1009,165,0.30000000000000004 +2008,10,7,23,30,16.3,1.36,0.122,0.65,0,0,0,0,14.8,0,0,0,0,143.34,0.16,2.4000000000000004,90.94,1009,114,0.5 +2008,10,8,0,30,16,1.35,0.129,0.65,0,0,0,0,14.700000000000001,0,0,0,0,138.65,0.16,2.4000000000000004,92.16,1009,108,0.6000000000000001 +2008,10,8,1,30,15.9,1.35,0.133,0.65,0,0,0,0,14.600000000000001,0,0,0,0,130.74,0.16,2.3000000000000003,91.99,1008,108,0.7000000000000001 +2008,10,8,2,30,15.700000000000001,1.36,0.127,0.65,0,0,0,0,14.5,0,0,0,0,120.98,0.16,2.3000000000000003,92.37,1008,108,0.8 +2008,10,8,3,30,15.4,1.37,0.132,0.65,0,0,0,0,14.3,0,0,0,0,110.28,0.16,2.3000000000000003,93.37,1008,109,0.9 +2008,10,8,4,30,15.100000000000001,1.3900000000000001,0.132,0.65,0,0,0,0,14.200000000000001,0,0,0,0,99.19,0.16,2.2,94.24,1008,112,0.9 +2008,10,8,5,30,15.9,1.4000000000000001,0.125,0.65,16,107,20,0,14,16,107,0,20,87.8,0.16,2.2,88.48,1008,120,1.1 +2008,10,8,6,30,17.8,1.48,0.122,0.65,62,495,171,0,13.9,62,495,0,171,77.25,0.16,2.2,77.8,1008,139,1.4000000000000001 +2008,10,8,7,30,19.6,1.5,0.113,0.65,84,683,348,0,13.4,84,683,0,348,67.27,0.16,2.2,67.62,1008,167,1.6 +2008,10,8,8,30,21.200000000000003,1.51,0.101,0.65,94,785,504,0,12.700000000000001,94,785,0,504,58.58,0.16,2.2,58.29,1008,192,1.8 +2008,10,8,9,30,22.400000000000002,1.47,0.1,0.65,102,832,614,0,12,102,832,0,614,51.980000000000004,0.16,2.2,51.93,1008,208,2 +2008,10,8,10,30,23.200000000000003,1.45,0.098,0.65,104,854,671,0,11.8,104,854,0,671,48.4,0.16,2.2,48.65,1008,218,2.3000000000000003 +2008,10,8,11,30,23.6,1.44,0.095,0.65,103,856,669,0,11.700000000000001,103,856,0,669,48.56,0.16,2.2,47.32,1008,223,2.5 +2008,10,8,12,30,23.6,1.3800000000000001,0.094,0.65,99,834,608,2,11.700000000000001,316,58,0,352,52.42,0.16,2.2,47.160000000000004,1007,227,2.6 +2008,10,8,13,30,23.3,1.37,0.09,0.65,89,790,493,0,11.600000000000001,89,790,0,493,59.24,0.16,2.2,47.79,1007,229,2.5 +2008,10,8,14,30,22.6,1.3800000000000001,0.085,0.65,74,707,338,0,11.5,74,707,0,338,68.07000000000001,0.16,2.1,49.550000000000004,1007,229,2.2 +2008,10,8,15,30,21,1.3900000000000001,0.082,0.65,52,529,161,0,11.5,52,529,0,161,78.13,0.16,2.1,54.71,1007,228,1.6 +2008,10,8,16,30,19,1.42,0.078,0.65,11,108,14,0,12.4,11,108,0,14,88.67,0.16,2.1,65.53,1007,231,1.1 +2008,10,8,17,30,17.900000000000002,1.44,0.076,0.65,0,0,0,0,12.4,0,0,1,0,100.16,0.16,2.1,70.13,1007,236,1 +2008,10,8,18,30,17.7,1.46,0.075,0.65,0,0,0,0,12.600000000000001,0,0,0,0,111.27,0.16,2,72.03,1008,237,0.7000000000000001 +2008,10,8,19,30,17.5,1.48,0.075,0.65,0,0,0,0,12.700000000000001,0,0,0,0,121.95,0.16,2,73.56,1008,162,0.4 +2008,10,8,20,30,17,1.49,0.076,0.65,0,0,0,0,12.700000000000001,0,0,0,0,131.65,0.16,2,76,1008,78,0.5 +2008,10,8,21,30,16.2,1.51,0.078,0.65,0,0,0,0,12.600000000000001,0,0,0,0,139.43,0.16,2,79.33,1009,65,0.9 +2008,10,8,22,30,15.600000000000001,1.52,0.08,0.65,0,0,0,0,12.4,0,0,0,0,143.89000000000001,0.16,2.1,81.07000000000001,1009,60,1.1 +2008,10,8,23,30,15.100000000000001,1.54,0.081,0.65,0,0,0,0,12,0,0,0,0,143.71,0.16,2.1,81.82000000000001,1009,60,1.2000000000000002 +2008,10,9,0,30,14.8,1.56,0.081,0.65,0,0,0,0,11.600000000000001,0,0,0,0,138.96,0.16,2,80.99,1009,62,1.3 +2008,10,9,1,30,14.700000000000001,1.59,0.08,0.65,0,0,0,0,11.100000000000001,0,0,0,0,131,0.16,2,78.78,1009,64,1.3 +2008,10,9,2,30,14.700000000000001,1.6,0.08,0.65,0,0,0,0,10.5,0,0,0,0,121.21000000000001,0.16,2,76.07000000000001,1009,69,1.3 +2008,10,9,3,30,14.600000000000001,1.61,0.079,0.65,0,0,0,0,10.100000000000001,0,0,0,0,110.49000000000001,0.16,2,74.25,1010,76,1.3 +2008,10,9,4,30,14.4,1.62,0.08,0.65,0,0,0,0,9.700000000000001,0,0,0,0,99.39,0.16,2,73.31,1010,85,1.3 +2008,10,9,5,30,15.5,1.62,0.08,0.65,14,156,20,0,9.4,14,156,0,20,87.99,0.16,2,67.19,1011,93,1.3 +2008,10,9,6,30,18,1.6500000000000001,0.081,0.65,53,555,173,0,10.100000000000001,53,555,0,173,77.47,0.16,2,60,1011,100,1.6 +2008,10,9,7,30,20.8,1.6500000000000001,0.084,0.65,74,721,350,0,10,74,721,0,350,67.52,0.16,2,50.14,1012,122,1.6 +2008,10,9,8,30,23.200000000000003,1.6500000000000001,0.088,0.65,88,803,503,0,10.200000000000001,88,803,0,503,58.870000000000005,0.16,2,43.79,1012,154,1.4000000000000001 +2008,10,9,9,30,24.6,1.69,0.09,0.65,96,847,614,0,10.100000000000001,96,847,0,614,52.31,0.16,2,40.07,1013,180,1.6 +2008,10,9,10,30,25.5,1.7,0.092,0.65,100,865,670,0,10.100000000000001,100,865,0,670,48.77,0.16,2,37.88,1013,200,1.8 +2008,10,9,11,30,25.900000000000002,1.71,0.095,0.65,101,861,667,0,9.8,101,861,0,667,48.95,0.16,2,36.33,1013,216,2.1 +2008,10,9,12,30,26,1.51,0.107,0.65,103,826,602,0,9.600000000000001,103,826,0,602,52.800000000000004,0.16,2,35.68,1013,229,2.2 +2008,10,9,13,30,25.6,1.52,0.111,0.65,96,772,487,0,9.600000000000001,96,772,0,487,59.6,0.16,2,36.35,1013,241,2.3000000000000003 +2008,10,9,14,30,24.900000000000002,1.52,0.115,0.65,83,672,330,0,9.5,83,672,0,330,68.4,0.16,2,37.83,1013,249,2.2 +2008,10,9,15,30,22.8,1.17,0.14200000000000002,0.65,63,431,150,0,9.8,63,431,0,150,78.45,0.16,2,43.81,1013,251,1.9000000000000001 +2008,10,9,16,30,20.1,1.18,0.146,0.65,10,35,10,0,11.5,10,35,0,10,88.95,0.16,2,57.52,1014,256,1.7000000000000002 +2008,10,9,17,30,18.6,1.19,0.15,0.65,0,0,0,0,12,0,0,1,0,100.46000000000001,0.16,2,65.26,1014,270,1.5 +2008,10,9,18,30,17.900000000000002,1.22,0.154,0.65,0,0,0,0,12.600000000000001,0,0,0,0,111.57000000000001,0.16,2.1,71.04,1015,291,1.3 +2008,10,9,19,30,17.6,1.25,0.159,0.65,0,0,0,0,12.8,0,0,0,0,122.27,0.16,2.1,73.45,1015,318,1 +2008,10,9,20,30,17.6,1.28,0.163,0.65,0,0,0,0,12.700000000000001,0,0,0,0,131.99,0.16,2.1,72.86,1016,176,0.8 +2008,10,9,21,30,17.5,1.31,0.167,0.65,0,0,0,0,12.4,0,0,0,0,139.8,0.16,2.1,71.92,1016,45,0.7000000000000001 +2008,10,9,22,30,17.2,1.32,0.17200000000000001,0.65,0,0,0,0,12,0,0,0,0,144.27,0.16,2.1,71.53,1016,83,0.9 +2008,10,9,23,30,17,1.33,0.176,0.65,0,0,0,0,11.600000000000001,0,0,0,0,144.07,0.16,2.1,70.61,1017,102,1.1 +2008,10,10,0,30,16.8,1.33,0.178,0.65,0,0,0,0,11.200000000000001,0,0,0,0,139.27,0.15,2.2,69.62,1017,113,1.3 +2008,10,10,1,30,16.900000000000002,1.32,0.18,0.65,0,0,0,0,10.9,0,0,0,0,131.26,0.15,2.2,67.67,1017,120,1.3 +2008,10,10,2,30,16.8,1.31,0.184,0.65,0,0,0,0,10.700000000000001,0,0,0,0,121.44,0.15,2.2,67.18,1017,124,1.4000000000000001 +2008,10,10,3,30,16.6,1.32,0.184,0.65,0,0,0,0,10.700000000000001,0,0,0,0,110.7,0.15,2.2,67.93,1018,122,1.4000000000000001 +2008,10,10,4,30,16.3,1.33,0.18,0.65,0,0,0,0,10.700000000000001,0,0,0,0,99.59,0.15,2.1,69.5,1018,118,1.4000000000000001 +2008,10,10,5,30,16.900000000000002,1.36,0.17500000000000002,0.65,13,59,15,0,10.8,13,59,0,15,88.18,0.15,2.1,67.35,1018,114,1.3 +2008,10,10,6,30,19.1,1.41,0.167,0.65,68,433,160,0,11.5,68,433,0,160,77.7,0.15,2,61.56,1018,123,1.3 +2008,10,10,7,30,21.700000000000003,1.42,0.164,0.65,98,624,334,3,11.8,219,72,0,246,67.77,0.15,2,53.230000000000004,1019,163,1.4000000000000001 +2008,10,10,8,30,23.6,1.44,0.163,0.65,115,724,486,0,11.700000000000001,115,724,0,486,59.160000000000004,0.15,2,47.300000000000004,1019,208,1.5 +2008,10,10,9,30,24.700000000000003,1.36,0.17,0.65,128,768,594,0,11.4,128,768,0,594,52.64,0.15,2,43.35,1019,226,1.7000000000000002 +2008,10,10,10,30,25.5,1.35,0.17300000000000001,0.65,134,788,650,1,11.100000000000001,134,788,0,650,49.14,0.15,2,40.47,1018,234,2 +2008,10,10,11,30,25.900000000000002,1.35,0.177,0.65,135,782,644,0,10.9,135,782,0,644,49.33,0.15,2.1,39.03,1018,239,2.4000000000000004 +2008,10,10,12,30,25.8,1.51,0.17200000000000001,0.65,127,763,584,0,10.8,127,763,0,584,53.18,0.15,2.1,38.980000000000004,1018,241,2.8000000000000003 +2008,10,10,13,30,25.400000000000002,1.5,0.182,0.65,119,696,467,0,10.8,119,696,0,467,59.95,0.15,2.2,39.910000000000004,1018,243,3.2 +2008,10,10,14,30,24.400000000000002,1.48,0.193,0.65,101,577,310,0,10.9,101,577,0,310,68.74,0.15,2.3000000000000003,42.62,1017,245,3.4000000000000004 +2008,10,10,15,30,22.400000000000002,1.5,0.201,0.65,67,369,139,8,11.4,60,4,7,61,78.76,0.15,2.3000000000000003,49.68,1018,245,3 +2008,10,10,16,30,20,1.51,0.20400000000000001,0.65,0,0,0,0,12.700000000000001,0,0,0,0,89.21000000000001,0.15,2.4000000000000004,62.68,1018,248,2.2 +2008,10,10,17,30,18.5,1.51,0.20800000000000002,0.65,0,0,0,0,13.600000000000001,0,0,0,0,100.76,0.15,2.4000000000000004,73.23,1019,255,1.6 +2008,10,10,18,30,17.8,1.51,0.213,0.65,0,0,0,0,14.200000000000001,0,0,0,0,111.88,0.15,2.4000000000000004,79.25,1019,263,1.1 +2008,10,10,19,30,17.6,1.51,0.217,0.65,0,0,0,0,14.3,0,0,0,0,122.59,0.15,2.4000000000000004,80.94,1020,264,0.7000000000000001 +2008,10,10,20,30,17.5,1.5,0.218,0.65,0,0,0,0,14.100000000000001,0,0,0,0,132.33,0.15,2.3000000000000003,80.47,1020,191,0.4 +2008,10,10,21,30,17.1,1.51,0.216,0.65,0,0,0,0,13.9,0,0,0,0,140.17000000000002,0.15,2.3000000000000003,81.26,1020,115,0.7000000000000001 +2008,10,10,22,30,16.400000000000002,1.52,0.211,0.65,0,0,0,0,13.600000000000001,0,0,0,0,144.65,0.15,2.3000000000000003,83.32000000000001,1020,106,1 +2008,10,10,23,30,16,1.53,0.203,0.65,0,0,0,0,13.200000000000001,0,0,0,0,144.43,0.15,2.2,83.66,1020,101,1.2000000000000002 +2008,10,11,0,30,15.8,1.53,0.195,0.65,0,0,0,0,12.700000000000001,0,0,0,0,139.57,0.16,2.2,81.94,1019,96,1.3 +2008,10,11,1,30,15.700000000000001,1.54,0.19,0.65,0,0,0,0,12.100000000000001,0,0,0,0,131.52,0.16,2.2,79.24,1019,93,1.4000000000000001 +2008,10,11,2,30,15.600000000000001,1.54,0.186,0.65,0,0,0,0,11.5,0,0,0,0,121.66,0.16,2.1,76.47,1019,90,1.4000000000000001 +2008,10,11,3,30,15.4,1.54,0.184,0.65,0,0,0,0,10.9,0,0,0,0,110.9,0.16,2.1,74.32000000000001,1019,89,1.4000000000000001 +2008,10,11,4,30,15.200000000000001,1.54,0.182,0.65,0,0,0,0,10.200000000000001,0,0,0,0,99.79,0.16,2.1,71.97,1019,88,1.5 +2008,10,11,5,30,16.1,1.55,0.181,0.65,12,59,14,0,9.5,12,59,0,14,88.37,0.16,2.1,65.03,1020,89,1.4000000000000001 +2008,10,11,6,30,18.7,1.34,0.195,0.65,72,394,154,0,9.9,72,394,0,154,77.92,0.16,2,56.58,1020,96,1.6 +2008,10,11,7,30,21.5,1.36,0.196,0.65,106,587,325,0,9.4,106,587,0,325,68.02,0.16,2,46.13,1021,131,1.4000000000000001 +2008,10,11,8,30,23.5,1.3800000000000001,0.196,0.65,126,690,476,0,9.8,126,690,0,476,59.45,0.16,2,41.94,1021,180,1.1 +2008,10,11,9,30,24.8,1.6600000000000001,0.183,0.65,131,761,589,0,9.9,131,761,0,589,52.97,0.16,2,39.050000000000004,1021,210,1.3 +2008,10,11,10,30,25.6,1.6400000000000001,0.185,0.65,137,785,646,0,9.9,137,785,0,646,49.5,0.16,1.9000000000000001,37.050000000000004,1021,227,1.5 +2008,10,11,11,30,26,1.6300000000000001,0.185,0.65,138,783,644,0,9.9,138,783,0,644,49.71,0.16,1.9000000000000001,36.26,1020,240,1.8 +2008,10,11,12,30,26,1.68,0.189,0.65,133,755,582,0,9.9,133,755,0,582,53.550000000000004,0.16,1.9000000000000001,36.300000000000004,1019,251,2 +2008,10,11,13,30,25.700000000000003,1.6400000000000001,0.197,0.65,124,690,466,0,9.9,124,690,0,466,60.300000000000004,0.16,1.9000000000000001,37.050000000000004,1019,260,2.2 +2008,10,11,14,30,24.900000000000002,1.61,0.197,0.65,102,582,310,0,10.100000000000001,102,582,0,310,69.06,0.16,1.9000000000000001,39.15,1019,265,2.4000000000000004 +2008,10,11,15,30,22.700000000000003,1.46,0.20500000000000002,0.65,67,365,136,0,10.4,67,365,0,136,79.07000000000001,0.16,1.8,45.86,1019,265,2.2 +2008,10,11,16,30,20.1,1.48,0.202,0.65,0,0,0,0,11.9,0,0,0,0,89.47,0.16,1.8,59.09,1019,268,2 +2008,10,11,17,30,18.6,1.5,0.197,0.65,0,0,0,0,12.600000000000001,0,0,0,0,101.06,0.16,1.8,68.05,1019,279,1.9000000000000001 +2008,10,11,18,30,17.7,1.52,0.19,0.65,0,0,0,0,13.4,0,0,0,0,112.18,0.16,1.8,75.99,1020,295,1.5 +2008,10,11,19,30,17.3,1.55,0.182,0.65,0,0,0,0,13.700000000000001,0,0,0,0,122.9,0.16,1.8,79.59,1020,315,1.2000000000000002 +2008,10,11,20,30,17.3,1.58,0.17400000000000002,0.65,0,0,0,0,13.700000000000001,0,0,0,0,132.67000000000002,0.16,1.7000000000000002,79.15,1020,337,1 +2008,10,11,21,30,17.400000000000002,1.6,0.169,0.65,0,0,0,0,13.4,0,0,0,0,140.54,0.16,1.7000000000000002,77.18,1020,186,0.7000000000000001 +2008,10,11,22,30,17.2,1.61,0.169,0.65,0,0,0,0,13.100000000000001,0,0,0,0,145.03,0.16,1.7000000000000002,76.88,1020,54,0.5 +2008,10,11,23,30,16.7,1.6,0.171,0.65,0,0,0,0,12.9,0,0,0,0,144.78,0.16,1.7000000000000002,78.5,1020,94,0.6000000000000001 +2008,10,12,0,30,16.2,1.59,0.17,0.65,0,0,0,0,12.8,0,0,0,0,139.88,0.15,1.7000000000000002,80.28,1020,108,0.8 +2008,10,12,1,30,16,1.59,0.167,0.65,0,0,0,0,12.600000000000001,0,0,0,0,131.77,0.15,1.7000000000000002,80.05,1020,111,0.9 +2008,10,12,2,30,15.9,1.59,0.162,0.65,0,0,0,0,12.3,0,0,0,0,121.88,0.15,1.7000000000000002,79.06,1019,102,0.9 +2008,10,12,3,30,15.5,1.58,0.156,0.65,0,0,0,0,12,0,0,0,0,111.11,0.15,1.6,79.48,1019,88,1.1 +2008,10,12,4,30,14.9,1.57,0.148,0.65,0,0,0,0,11.5,0,0,0,0,99.99000000000001,0.15,1.6,80.26,1019,80,1.2000000000000002 +2008,10,12,5,30,15.600000000000001,1.56,0.139,0.65,12,77,14,0,11,12,77,0,14,88.56,0.15,1.5,73.96000000000001,1019,78,1.2000000000000002 +2008,10,12,6,30,18.1,1.69,0.122,0.65,59,499,162,0,11,59,499,0,162,78.14,0.15,1.5,63.06,1019,74,1.3 +2008,10,12,7,30,21.1,1.67,0.117,0.65,83,692,340,0,10.3,83,692,0,340,68.28,0.15,1.4000000000000001,50.07,1019,38,1.3 +2008,10,12,8,30,23.700000000000003,1.6600000000000001,0.112,0.65,96,791,495,0,9.1,96,791,0,495,59.74,0.15,1.4000000000000001,39.42,1019,165,1.4000000000000001 +2008,10,12,9,30,25.400000000000002,1.6300000000000001,0.107,0.65,103,844,607,0,8.5,103,844,0,607,53.300000000000004,0.15,1.4000000000000001,34.15,1019,318,2 +2008,10,12,10,30,26.400000000000002,1.62,0.101,0.65,104,870,664,0,8,104,870,0,664,49.870000000000005,0.15,1.4000000000000001,31.220000000000002,1018,308,2.5 +2008,10,12,11,30,26.900000000000002,1.62,0.095,0.65,101,877,664,0,7.6000000000000005,101,877,0,664,50.09,0.15,1.3,29.54,1017,303,2.9000000000000004 +2008,10,12,12,30,26.900000000000002,1.1500000000000001,0.126,0.65,112,817,593,0,7.4,112,817,0,593,53.92,0.15,1.3,29.13,1017,301,3.2 +2008,10,12,13,30,26.5,1.2,0.117,0.65,98,773,477,0,7.4,98,773,0,477,60.65,0.15,1.3,29.72,1016,302,3.4000000000000004 +2008,10,12,14,30,25.5,1.27,0.108,0.65,80,683,320,0,7.5,80,683,0,320,69.39,0.15,1.3,31.68,1015,300,3.3000000000000003 +2008,10,12,15,30,22.900000000000002,1.05,0.126,0.65,58,442,140,0,8.4,58,442,0,140,79.38,0.15,1.2000000000000002,39.54,1015,295,2.9000000000000004 +2008,10,12,16,30,20,1.08,0.12,0.65,0,0,0,0,10.3,0,0,0,0,89.73,0.15,1.2000000000000002,53.71,1015,297,2.6 +2008,10,12,17,30,18.5,1.11,0.115,0.65,0,0,0,0,10.700000000000001,0,0,0,0,101.35000000000001,0.15,1.2000000000000002,60.57,1015,307,2.5 +2008,10,12,18,30,17.7,1.1500000000000001,0.109,0.65,0,0,0,0,11,0,0,0,0,112.47,0.15,1.1,64.86,1015,320,2.3000000000000003 +2008,10,12,19,30,16.900000000000002,1.17,0.105,0.65,0,0,0,0,10.8,0,0,0,0,123.22,0.15,1.1,67.36,1015,335,2 +2008,10,12,20,30,16.3,1.19,0.10300000000000001,0.65,0,0,0,0,10.200000000000001,0,0,0,0,133.01,0.15,1.1,67.34,1015,172,1.7000000000000002 +2008,10,12,21,30,15.9,1.2,0.101,0.65,0,0,0,0,9.5,0,0,0,0,140.9,0.15,1.1,65.76,1015,8,1.6 +2008,10,12,22,30,15.9,1.2,0.1,0.65,0,0,0,0,8.700000000000001,0,0,0,0,145.41,0.15,1.1,62.29,1014,23,1.5 +2008,10,12,23,30,16,1.18,0.099,0.65,0,0,0,0,7.9,0,0,0,0,145.14000000000001,0.15,1.1,58.71,1014,36,1.4000000000000001 +2008,10,13,0,30,16.1,1.16,0.1,0.65,0,0,0,0,7.2,0,0,0,0,140.18,0.15,1.1,55.56,1014,46,1.3 +2008,10,13,1,30,16.1,1.1500000000000001,0.101,0.65,0,0,0,0,6.6000000000000005,0,0,0,0,132.03,0.15,1.2000000000000002,53.15,1013,53,1.3 +2008,10,13,2,30,15.9,1.1400000000000001,0.10400000000000001,0.65,0,0,0,0,6,0,0,0,0,122.11,0.15,1.3,51.730000000000004,1013,57,1.2000000000000002 +2008,10,13,3,30,15.4,1.1400000000000001,0.107,0.65,0,0,0,0,5.6000000000000005,0,0,0,0,111.31,0.15,1.4000000000000001,52.07,1013,62,1.3 +2008,10,13,4,30,14.8,1.17,0.107,0.65,0,0,0,0,5.4,0,0,0,0,100.19,0.15,1.5,53.230000000000004,1013,69,1.4000000000000001 +2008,10,13,5,30,15.4,1.19,0.106,0.65,11,69,12,0,5.1000000000000005,11,69,0,12,88.75,0.15,1.6,50.26,1012,75,1.3 +2008,10,13,6,30,17.8,1.23,0.105,0.65,56,496,156,0,6.6000000000000005,56,496,0,156,78.37,0.15,1.7000000000000002,48.02,1012,79,1.3 +2008,10,13,7,30,21,1.21,0.111,0.65,82,676,329,0,5.5,82,676,0,329,68.53,0.15,1.8,36.35,1013,40,1.1 +2008,10,13,8,30,23.5,1.19,0.116,0.65,98,763,479,0,5.9,98,763,0,479,60.03,0.15,1.9000000000000001,32.15,1012,161,1.1 +2008,10,13,9,30,25.1,1.12,0.124,0.65,110,804,587,0,6.7,110,804,0,587,53.63,0.15,1.9000000000000001,30.87,1012,314,1.6 +2008,10,13,10,30,25.900000000000002,1.09,0.129,0.65,116,821,641,0,6.9,116,821,0,641,50.230000000000004,0.15,1.9000000000000001,29.740000000000002,1011,302,2 +2008,10,13,11,30,26.3,1.06,0.134,0.65,118,814,636,1,6.9,118,814,0,636,50.47,0.15,1.9000000000000001,29.02,1011,297,2.3000000000000003 +2008,10,13,12,30,26.400000000000002,1.18,0.124,0.65,109,801,576,7,6.9,254,360,0,464,54.29,0.15,1.9000000000000001,28.87,1010,296,2.6 +2008,10,13,13,30,26,1.17,0.129,0.65,101,740,460,7,7,230,259,0,356,61,0.15,1.9000000000000001,29.740000000000002,1010,296,2.7 +2008,10,13,14,30,25.1,1.1400000000000001,0.135,0.65,86,625,303,7,7.2,173,204,0,243,69.72,0.15,1.9000000000000001,31.900000000000002,1009,293,2.4000000000000004 +2008,10,13,15,30,22.6,1.09,0.14400000000000002,0.65,58,391,128,7,8.700000000000001,96,50,7,105,79.69,0.15,2,41.06,1009,289,1.9000000000000001 +2008,10,13,16,30,19.900000000000002,1.05,0.151,0.65,0,0,0,7,10.600000000000001,0,0,7,0,89.98,0.15,2.1,54.89,1009,291,1.7000000000000002 +2008,10,13,17,30,18.8,1.01,0.16,0.65,0,0,0,7,10.9,0,0,0,0,101.64,0.15,2.2,59.99,1010,302,1.5 +2008,10,13,18,30,18.3,0.9500000000000001,0.171,0.65,0,0,0,8,11.100000000000001,0,0,0,0,112.77,0.15,2.3000000000000003,63.050000000000004,1010,314,1.3 +2008,10,13,19,30,18.2,0.9,0.182,0.65,0,0,0,8,11.200000000000001,0,0,0,0,123.52,0.15,2.4000000000000004,63.77,1010,328,1.1 +2008,10,13,20,30,18.1,0.88,0.192,0.65,0,0,0,7,11.3,0,0,0,0,133.34,0.15,2.5,64.64,1010,340,1 +2008,10,13,21,30,18,0.88,0.198,0.65,0,0,0,7,11.4,0,0,0,0,141.26,0.15,2.5,65.44,1010,352,1.6 +2008,10,13,22,30,17.6,0.85,0.225,0.65,0,0,0,8,11.600000000000001,0,0,0,0,145.79,0.15,2.6,67.77,1011,187,3 +2008,10,13,23,30,16.7,0.73,0.277,0.65,0,0,0,8,11.4,0,0,0,0,145.49,0.15,2.8000000000000003,70.92,1011,20,3.7 +2008,10,14,0,30,15.9,0.58,0.321,0.65,0,0,0,3,10.8,0,0,0,0,140.49,0.15,3,71.62,1010,33,3.1 +2008,10,14,1,30,15.700000000000001,0.5,0.319,0.65,0,0,0,7,10.3,0,0,0,0,132.28,0.15,3,70.16,1010,49,2.3000000000000003 +2008,10,14,2,30,15.8,0.48,0.281,0.65,0,0,0,7,9.8,0,0,0,0,122.33,0.15,2.9000000000000004,67.53,1009,61,1.7000000000000002 +2008,10,14,3,30,15.9,0.51,0.244,0.65,0,0,0,7,9.4,0,0,0,0,111.52,0.15,2.8000000000000003,65.37,1009,67,1.6 +2008,10,14,4,30,15.9,0.54,0.228,0.65,0,0,0,7,9.3,0,0,0,0,100.39,0.15,2.7,64.88,1009,74,1.3 +2008,10,14,5,30,16.400000000000002,0.56,0.22,0.65,7,3,7,8,9.3,3,0,7,3,88.94,0.15,2.6,62.64,1009,88,1.1 +2008,10,14,6,30,17.7,0.46,0.28,0.65,83,226,127,3,9.8,23,0,0,23,78.59,0.15,2.5,60.02,1009,110,1.1 +2008,10,14,7,30,19.400000000000002,0.5,0.266,0.65,128,454,292,3,9.700000000000001,190,9,0,193,68.78,0.15,2.4000000000000004,53.47,1010,141,1.2000000000000002 +2008,10,14,8,30,21.1,0.55,0.256,0.65,151,587,442,7,9.3,252,229,0,366,60.31,0.15,2.3000000000000003,46.74,1010,166,1.4000000000000001 +2008,10,14,9,30,22.6,0.51,0.31,0.65,185,603,540,0,9.3,185,603,0,540,53.96,0.15,2.3000000000000003,42.88,1010,176,1.7000000000000002 +2008,10,14,10,30,23.700000000000003,0.54,0.306,0.65,191,637,595,7,9.5,315,302,0,506,50.59,0.15,2.3000000000000003,40.51,1009,185,1.9000000000000001 +2008,10,14,11,30,24.3,0.5700000000000001,0.304,0.65,189,638,592,0,9.9,189,638,0,592,50.84,0.15,2.3000000000000003,40.04,1009,194,2.1 +2008,10,14,12,30,24.6,0.52,0.41500000000000004,0.65,215,519,515,0,10.100000000000001,215,519,0,515,54.660000000000004,0.15,2.3000000000000003,40.01,1008,202,2.1 +2008,10,14,13,30,24.3,0.55,0.429,0.65,193,436,402,0,10.3,193,436,0,402,61.35,0.15,2.4000000000000004,41.21,1008,207,2.1 +2008,10,14,14,30,23.5,0.58,0.449,0.65,152,296,253,8,10.5,152,296,5,253,70.04,0.15,2.5,43.95,1008,212,1.9000000000000001 +2008,10,14,15,30,21.700000000000003,0.58,0.52,0.65,77,81,92,8,11.4,47,0,7,47,79.99,0.15,2.6,51.95,1008,220,1.4000000000000001 +2008,10,14,16,30,20.200000000000003,0.58,0.54,0.65,0,0,0,1,12.8,0,0,0,0,90.23,0.15,2.7,62.59,1008,232,1.1 +2008,10,14,17,30,19.5,0.58,0.554,0.65,0,0,0,0,13.200000000000001,0,0,0,0,101.93,0.15,2.8000000000000003,67.16,1008,247,1 +2008,10,14,18,30,19,0.5700000000000001,0.557,0.65,0,0,0,0,13.600000000000001,0,0,0,0,113.06,0.15,2.8000000000000003,70.69,1009,261,0.8 +2008,10,14,19,30,18.400000000000002,0.55,0.549,0.65,0,0,0,0,13.700000000000001,0,0,0,0,123.83,0.15,2.8000000000000003,73.85000000000001,1009,274,0.7000000000000001 +2008,10,14,20,30,17.900000000000002,0.55,0.536,0.65,0,0,0,0,13.8,0,0,0,0,133.67000000000002,0.15,2.8000000000000003,76.91,1009,284,0.7000000000000001 +2008,10,14,21,30,17.6,0.55,0.521,0.65,0,0,0,0,13.8,0,0,0,0,141.62,0.15,2.8000000000000003,78.41,1009,290,0.6000000000000001 +2008,10,14,22,30,17.5,0.55,0.504,0.65,0,0,0,0,13.700000000000001,0,0,0,0,146.17000000000002,0.15,2.8000000000000003,78.34,1009,309,0.4 +2008,10,14,23,30,17.400000000000002,0.55,0.486,0.65,0,0,0,0,13.5,0,0,0,0,145.85,0.15,2.8000000000000003,78.02,1009,204,0.30000000000000004 +2008,10,15,0,30,16.900000000000002,0.54,0.47100000000000003,0.65,0,0,0,0,13.4,0,0,0,0,140.79,0.15,2.8000000000000003,79.68,1009,89,0.6000000000000001 +2008,10,15,1,30,16.5,0.54,0.462,0.65,0,0,0,3,13.200000000000001,0,0,0,0,132.54,0.15,2.8000000000000003,80.86,1009,101,0.8 +2008,10,15,2,30,16.3,0.53,0.46,0.65,0,0,0,4,13.100000000000001,0,0,0,0,122.55,0.15,2.8000000000000003,81.14,1009,110,0.8 +2008,10,15,3,30,16,0.52,0.463,0.65,0,0,0,4,13,0,0,0,0,111.73,0.15,2.8000000000000003,82.39,1009,114,0.9 +2008,10,15,4,30,15.700000000000001,0.52,0.467,0.65,0,0,0,4,13,0,0,0,0,100.60000000000001,0.15,2.9000000000000004,84.15,1009,115,0.9 +2008,10,15,5,30,16,0.52,0.47100000000000003,0.65,0,0,0,3,13,0,0,7,0,89.13,0.15,2.9000000000000004,82.57000000000001,1009,116,1 +2008,10,15,6,30,17.7,0.49,0.547,0.65,88,84,105,0,13.200000000000001,88,84,0,105,78.82000000000001,0.15,2.9000000000000004,74.94,1010,128,1.1 +2008,10,15,7,30,20,0.5,0.552,0.65,171,244,258,0,13.200000000000001,171,244,0,258,69.03,0.15,2.9000000000000004,64.92,1010,170,1.2000000000000002 +2008,10,15,8,30,22,0.51,0.559,0.65,222,356,396,0,13.3,222,356,0,396,60.6,0.15,2.9000000000000004,57.85,1010,208,1.4000000000000001 +2008,10,15,9,30,23.5,0.63,0.327,0.65,187,584,528,0,13.5,187,584,0,528,54.29,0.15,2.9000000000000004,53.550000000000004,1010,219,1.6 +2008,10,15,10,30,24.3,0.65,0.327,0.65,195,614,581,0,13.700000000000001,195,614,0,581,50.96,0.15,2.9000000000000004,51.63,1010,222,1.9000000000000001 +2008,10,15,11,30,24.8,0.66,0.326,0.65,193,613,577,0,13.700000000000001,193,613,0,577,51.22,0.15,2.9000000000000004,50.13,1009,225,2.3000000000000003 +2008,10,15,12,30,24.700000000000003,0.62,0.384,0.65,201,536,508,0,13.700000000000001,201,536,0,508,55.02,0.15,2.8000000000000003,50.29,1009,227,2.7 +2008,10,15,13,30,24.1,0.62,0.379,0.65,178,468,399,0,13.600000000000001,178,468,0,399,61.690000000000005,0.15,2.7,52.03,1009,227,3 +2008,10,15,14,30,23,0.61,0.372,0.65,139,344,254,0,13.600000000000001,139,344,0,254,70.36,0.15,2.6,55.56,1009,224,3 +2008,10,15,15,30,21.1,0.51,0.518,0.65,75,71,87,0,13.8,75,71,0,87,80.29,0.15,2.6,63,1009,221,2.4000000000000004 +2008,10,15,16,30,19,0.5,0.503,0.65,0,0,0,0,14.4,0,0,0,0,91.11,0.15,2.6,74.84,1010,218,1.6 +2008,10,15,17,30,17.900000000000002,0.5,0.488,0.65,0,0,0,0,15,0,0,0,0,102.21000000000001,0.15,2.5,83.29,1010,212,1.2000000000000002 +2008,10,15,18,30,17.3,0.5,0.47400000000000003,0.65,0,0,0,0,15.600000000000001,0,0,0,0,113.35000000000001,0.15,2.5,89.66,1010,198,1 +2008,10,15,19,30,16.8,0.51,0.461,0.65,0,0,0,0,16,0,0,0,0,124.13000000000001,0.15,2.5,94.81,1010,181,0.9 +2008,10,15,20,30,16.400000000000002,0.52,0.448,0.65,0,0,0,0,16.2,0,0,0,0,133.99,0.15,2.5,98.86,1010,169,1 +2008,10,15,21,30,16.1,0.52,0.43,0.65,0,0,0,0,16.1,0,0,0,0,141.97,0.15,2.4000000000000004,100,1010,163,1.1 +2008,10,15,22,30,15.9,0.51,0.41100000000000003,0.65,0,0,0,0,15.9,0,0,0,0,146.54,0.15,2.4000000000000004,100,1010,157,1.2000000000000002 +2008,10,15,23,30,16,0.51,0.391,0.65,0,0,0,0,16,0,0,0,0,146.20000000000002,0.15,2.4000000000000004,100,1010,152,1.2000000000000002 +2008,10,16,0,30,16.2,0.53,0.381,0.65,0,0,0,0,16.2,0,0,0,0,141.09,0.15,2.4000000000000004,100,1010,149,1.2000000000000002 +2008,10,16,1,30,16.2,0.55,0.363,0.65,0,0,0,1,16.2,0,0,0,0,132.79,0.15,2.4000000000000004,100,1009,147,1.2000000000000002 +2008,10,16,2,30,16.1,0.55,0.34,0.65,0,0,0,1,16.1,0,0,0,0,122.77,0.15,2.4000000000000004,100,1009,143,1.2000000000000002 +2008,10,16,3,30,15.9,0.58,0.338,0.65,0,0,0,1,15.9,0,0,0,0,111.93,0.15,2.4000000000000004,100,1009,138,1.3 +2008,10,16,4,30,15.700000000000001,0.58,0.334,0.65,0,0,0,1,15.700000000000001,0,0,0,0,100.8,0.15,2.4000000000000004,100,1009,134,1.4000000000000001 +2008,10,16,5,30,16.3,0.56,0.324,0.65,0,0,0,0,15.4,0,0,0,0,89.31,0.15,2.5,94.49,1009,135,1.9000000000000001 +2008,10,16,6,30,17.900000000000002,0.58,0.337,0.65,84,183,119,1,15.200000000000001,84,183,0,119,79.04,0.15,2.5,84.17,1010,149,2.6 +2008,10,16,7,30,19.8,0.56,0.317,0.65,137,402,279,1,15.600000000000001,137,402,0,279,69.29,0.15,2.6,76.58,1010,175,3.1 +2008,10,16,8,30,21.400000000000002,0.51,0.28700000000000003,0.65,160,544,425,1,16,160,544,0,425,60.89,0.15,2.7,71.38,1010,196,3.5 +2008,10,16,9,30,22.400000000000002,0.52,0.28800000000000003,0.65,177,609,529,1,15.9,177,609,0,529,54.620000000000005,0.15,2.7,66.6,1010,205,3.8000000000000003 +2008,10,16,10,30,23.1,0.52,0.279,0.65,181,645,584,3,15.8,239,1,0,240,51.32,0.15,2.7,63.59,1009,210,4.1000000000000005 +2008,10,16,11,30,23.400000000000002,0.5,0.27,0.65,177,648,579,3,15.8,349,43,0,376,51.59,0.15,2.8000000000000003,62.230000000000004,1008,213,4.2 +2008,10,16,12,30,23.400000000000002,0.55,0.248,0.65,160,637,522,1,15.700000000000001,160,637,0,522,55.38,0.15,2.8000000000000003,61.84,1008,213,4.2 +2008,10,16,13,30,23,0.56,0.255,0.65,146,559,408,0,15.5,146,559,0,408,62.03,0.15,2.9000000000000004,62.76,1007,212,4 +2008,10,16,14,30,22.1,0.53,0.267,0.65,120,414,257,0,15.4,120,414,0,257,70.68,0.15,3,65.69,1007,208,3.8000000000000003 +2008,10,16,15,30,20.900000000000002,0.51,0.296,0.65,70,161,97,0,15.4,70,161,0,97,80.58,0.15,3,70.87,1007,203,3.2 +2008,10,16,16,30,19.6,0.5,0.317,0.65,0,0,0,0,15.9,0,0,0,0,91.39,0.15,3,79,1007,197,2.5 +2008,10,16,17,30,18.8,0.47000000000000003,0.334,0.65,0,0,0,0,16.400000000000002,0,0,0,0,102.49000000000001,0.15,3,86.09,1007,190,2.2 +2008,10,16,18,30,18.5,0.48,0.358,0.65,0,0,0,4,16.8,0,0,0,0,113.63,0.15,3.1,89.8,1007,184,2.2 +2008,10,16,19,30,18.400000000000002,0.47000000000000003,0.363,0.65,0,0,0,4,16.900000000000002,0,0,0,0,124.43,0.15,3.1,90.71000000000001,1006,180,2.3000000000000003 +2008,10,16,20,30,18.2,0.45,0.353,0.65,0,0,0,3,16.8,0,0,0,0,134.31,0.15,3.1,91.73,1006,178,2.3000000000000003 +2008,10,16,21,30,18.1,0.48,0.361,0.65,0,0,0,0,16.8,0,0,0,0,142.33,0.15,3.2,92.24,1006,176,2.4000000000000004 +2008,10,16,22,30,18,0.48,0.358,0.65,0,0,0,1,16.8,0,0,0,0,146.91,0.15,3.3000000000000003,92.66,1006,175,2.3000000000000003 +2008,10,16,23,30,17.8,0.48,0.34600000000000003,0.65,0,0,0,3,16.8,0,0,0,0,146.55,0.15,3.3000000000000003,93.69,1005,174,2.2 +2008,10,17,0,30,17.7,0.51,0.34800000000000003,0.65,0,0,0,1,16.7,0,0,0,0,141.38,0.15,3.3000000000000003,93.92,1005,173,2 +2008,10,17,1,30,17.5,0.52,0.34400000000000003,0.65,0,0,0,3,16.6,0,0,0,0,133.04,0.15,3.3000000000000003,94.37,1004,171,1.9000000000000001 +2008,10,17,2,30,17.400000000000002,0.52,0.336,0.65,0,0,0,1,16.5,0,0,0,0,122.99000000000001,0.15,3.3000000000000003,94.42,1004,169,1.9000000000000001 +2008,10,17,3,30,17.400000000000002,0.56,0.34900000000000003,0.65,0,0,0,4,16.400000000000002,0,0,0,0,112.13,0.15,3.3000000000000003,93.8,1004,166,2 +2008,10,17,4,30,17.400000000000002,0.59,0.362,0.65,0,0,0,8,16.2,0,0,0,0,101,0.15,3.3000000000000003,92.93,1003,164,2 +2008,10,17,5,30,17.8,0.6,0.366,0.65,0,0,0,8,16.2,0,0,7,0,89.5,0.15,3.3000000000000003,90.21000000000001,1003,160,2.4000000000000004 +2008,10,17,6,30,18.7,0.62,0.375,0.65,84,153,112,3,16.400000000000002,5,0,0,5,79.27,0.15,3.3000000000000003,86.33,1004,160,3.2 +2008,10,17,7,30,19.700000000000003,0.63,0.371,0.65,145,353,268,8,16.5,141,16,7,146,69.54,0.15,3.3000000000000003,81.65,1004,167,3.8000000000000003 +2008,10,17,8,30,20.8,0.62,0.353,0.65,176,488,411,6,16.2,10,0,0,10,61.18,0.15,3.2,75.21000000000001,1004,177,4.1000000000000005 +2008,10,17,9,30,21.700000000000003,0.61,0.364,0.65,199,547,513,9,15.9,32,0,0,32,54.95,0.15,3.1,69.62,1003,188,4.2 +2008,10,17,10,30,22.200000000000003,0.61,0.34600000000000003,0.65,202,590,568,7,15.700000000000001,293,63,0,332,51.67,0.15,3.1,66.55,1003,197,4.1000000000000005 +2008,10,17,11,30,22.5,0.6,0.327,0.65,195,602,567,8,15.5,320,240,0,468,51.96,0.15,3,64.68,1003,203,3.9000000000000004 +2008,10,17,12,30,22.5,0.61,0.289,0.65,174,602,513,2,15.200000000000001,157,0,0,157,55.74,0.15,2.8000000000000003,63.480000000000004,1003,206,3.7 +2008,10,17,13,30,22.3,0.59,0.281,0.65,152,537,401,1,14.8,152,537,0,401,62.370000000000005,0.15,2.7,62.690000000000005,1002,207,3.4000000000000004 +2008,10,17,14,30,21.8,0.58,0.267,0.65,119,418,255,3,14.600000000000001,178,12,0,182,70.99,0.15,2.6,63.440000000000005,1002,206,3 +2008,10,17,15,30,20.400000000000002,0.6,0.251,0.65,66,199,98,2,14.600000000000001,86,18,7,89,80.87,0.15,2.5,69.4,1003,205,2.1 +2008,10,17,16,30,18.8,0.63,0.23,0.65,0,0,0,0,15.3,0,0,0,0,91.68,0.15,2.5,80.04,1003,203,1.2000000000000002 +2008,10,17,17,30,18,0.65,0.20800000000000002,0.65,0,0,0,0,15.700000000000001,0,0,0,0,102.77,0.15,2.4000000000000004,86.57000000000001,1003,199,1.1 +2008,10,17,18,30,17.7,0.6900000000000001,0.193,0.65,0,0,0,0,16.2,0,0,0,0,113.91,0.15,2.4000000000000004,90.66,1004,191,1 +2008,10,17,19,30,17.400000000000002,0.72,0.176,0.65,0,0,0,0,16.5,0,0,0,0,124.72,0.15,2.4000000000000004,94.39,1004,180,0.9 +2008,10,17,20,30,17.1,0.75,0.156,0.65,0,0,0,0,16.7,0,0,0,0,134.63,0.15,2.4000000000000004,97.7,1005,166,0.9 +2008,10,17,21,30,16.7,0.78,0.139,0.65,0,0,0,1,16.7,0,0,0,0,142.67000000000002,0.15,2.3000000000000003,100,1005,155,1 +2008,10,17,22,30,16.400000000000002,0.81,0.132,0.65,0,0,0,3,16.400000000000002,0,0,0,0,147.28,0.15,2.3000000000000003,100,1005,149,1 +2008,10,17,23,30,16.1,0.84,0.129,0.65,0,0,0,3,16.1,0,0,0,0,146.89000000000001,0.15,2.3000000000000003,100,1005,146,1.1 +2008,10,18,0,30,15.9,0.86,0.129,0.65,0,0,0,3,15.9,0,0,0,0,141.68,0.15,2.3000000000000003,100,1005,144,1.1 +2008,10,18,1,30,15.700000000000001,0.87,0.131,0.65,0,0,0,1,15.700000000000001,0,0,0,0,133.29,0.15,2.3000000000000003,99.81,1005,140,1.1 +2008,10,18,2,30,15.5,0.88,0.134,0.65,0,0,0,0,15.4,0,0,0,0,123.21000000000001,0.15,2.3000000000000003,99.15,1005,134,1.1 +2008,10,18,3,30,15.100000000000001,0.88,0.14,0.65,0,0,0,0,15.100000000000001,0,0,0,0,112.34,0.15,2.3000000000000003,100,1005,126,1.2000000000000002 +2008,10,18,4,30,14.700000000000001,0.87,0.15,0.65,0,0,0,0,14.700000000000001,0,0,0,0,101.2,0.15,2.3000000000000003,100,1005,119,1.2000000000000002 +2008,10,18,5,30,15.4,0.86,0.159,0.65,0,0,0,0,14.700000000000001,0,0,0,0,89.67,0.15,2.3000000000000003,95.53,1006,115,1.3 +2008,10,18,6,30,17.7,0.88,0.164,0.65,64,353,128,1,14.5,64,353,0,128,79.49,0.15,2.4000000000000004,81.68,1007,126,1.7000000000000002 +2008,10,18,7,30,20,0.89,0.162,0.65,96,572,294,0,14.8,96,572,0,294,69.8,0.15,2.4000000000000004,72.17,1007,151,2.3000000000000003 +2008,10,18,8,30,21.5,0.89,0.14100000000000001,0.65,107,705,444,3,15,212,7,0,215,61.47,0.15,2.4000000000000004,66.45,1007,169,2.7 +2008,10,18,9,30,22.6,0.8200000000000001,0.15,0.65,121,749,548,2,14.4,311,53,0,341,55.27,0.15,2.4000000000000004,59.94,1007,177,3 +2008,10,18,10,30,23.400000000000002,0.8200000000000001,0.14100000000000001,0.65,122,780,602,0,13.700000000000001,122,780,0,602,52.03,0.15,2.5,54.550000000000004,1007,186,3 +2008,10,18,11,30,23.8,0.8200000000000001,0.137,0.65,120,782,598,0,13.100000000000001,120,782,0,598,52.32,0.15,2.5,50.980000000000004,1007,195,3 +2008,10,18,12,30,23.8,0.81,0.158,0.65,123,732,531,0,12.700000000000001,123,732,0,531,56.1,0.15,2.5,49.68,1007,204,3 +2008,10,18,13,30,23.3,0.81,0.157,0.65,111,669,418,0,12.5,111,669,0,418,62.7,0.15,2.5,50.59,1007,211,2.9000000000000004 +2008,10,18,14,30,22.400000000000002,0.8200000000000001,0.154,0.65,90,550,266,0,12.4,90,550,0,266,71.3,0.15,2.5,53.02,1007,217,2.6 +2008,10,18,15,30,20.6,0.84,0.152,0.65,54,311,102,0,12.4,54,311,0,102,81.16,0.15,2.5,59.38,1008,225,1.8 +2008,10,18,16,30,18.7,0.85,0.146,0.65,0,0,0,0,13,0,0,0,0,91.96000000000001,0.15,2.4000000000000004,69.68,1008,237,1.2000000000000002 +2008,10,18,17,30,17.8,0.86,0.14,0.65,0,0,0,0,13.100000000000001,0,0,0,0,103.04,0.15,2.4000000000000004,73.98,1009,248,1 +2008,10,18,18,30,17.5,0.87,0.136,0.65,0,0,0,0,13.3,0,0,0,0,114.19,0.15,2.4000000000000004,76.48,1009,258,0.8 +2008,10,18,19,30,17.2,0.88,0.134,0.65,0,0,0,0,13.5,0,0,0,0,125.01,0.15,2.3000000000000003,79.09,1010,266,0.5 +2008,10,18,20,30,17,0.9,0.134,0.65,0,0,0,0,13.700000000000001,0,0,0,0,134.94,0.15,2.3000000000000003,80.8,1010,315,0.2 +2008,10,18,21,30,16.7,0.91,0.136,0.65,0,0,0,0,13.700000000000001,0,0,0,0,143.02,0.15,2.3000000000000003,82.42,1010,218,0.2 +2008,10,18,22,30,16.400000000000002,0.93,0.137,0.65,0,0,0,0,13.600000000000001,0,0,0,0,147.64000000000001,0.15,2.2,83.45,1010,81,0.4 +2008,10,18,23,30,16,0.9400000000000001,0.135,0.65,0,0,0,0,13.5,0,0,0,0,147.24,0.15,2.1,84.87,1010,88,0.5 +2008,10,19,0,30,15.700000000000001,0.9500000000000001,0.131,0.65,0,0,0,0,13.3,0,0,0,0,141.98,0.15,2.1,85.69,1010,91,0.6000000000000001 +2008,10,19,1,30,15.5,0.9500000000000001,0.126,0.65,0,0,0,0,13.100000000000001,0,0,0,0,133.54,0.15,2,85.85000000000001,1010,93,0.8 +2008,10,19,2,30,15.3,0.96,0.121,0.65,0,0,0,0,13,0,0,0,0,123.43,0.15,1.9000000000000001,85.89,1010,94,0.9 +2008,10,19,3,30,15.100000000000001,0.98,0.11800000000000001,0.65,0,0,0,0,12.8,0,0,0,0,112.54,0.15,1.9000000000000001,85.96000000000001,1011,95,0.9 +2008,10,19,4,30,14.8,1,0.117,0.65,0,0,0,0,12.600000000000001,0,0,0,0,101.41,0.15,1.8,86.5,1011,93,0.9 +2008,10,19,5,30,15.200000000000001,1.02,0.116,0.65,0,0,0,0,12.4,0,0,0,0,89.85000000000001,0.15,1.8,83.26,1011,88,0.9 +2008,10,19,6,30,16.8,0.98,0.128,0.65,57,411,131,3,12.600000000000001,19,0,0,19,79.72,0.15,1.8,76.07000000000001,1012,81,0.8 +2008,10,19,7,30,19.200000000000003,1,0.125,0.65,85,631,300,1,12.700000000000001,85,631,0,300,70.05,0.15,1.8,66.11,1013,178,0.6000000000000001 +2008,10,19,8,30,21.200000000000003,1.02,0.122,0.65,100,740,450,7,11.700000000000001,207,358,0,376,61.76,0.15,1.8,54.56,1013,273,0.7000000000000001 +2008,10,19,9,30,22.5,1.01,0.13,0.65,112,784,555,8,10.8,239,393,0,461,55.6,0.15,1.9000000000000001,47.56,1013,267,1.2000000000000002 +2008,10,19,10,30,23.200000000000003,1.02,0.125,0.65,114,812,610,7,10.5,262,380,0,494,52.38,0.15,1.9000000000000001,44.71,1013,267,1.7000000000000002 +2008,10,19,11,30,23.5,1.04,0.123,0.65,113,809,603,7,10.5,257,385,0,490,52.69,0.15,2,43.74,1012,268,2 +2008,10,19,12,30,23.5,1.03,0.136,0.65,113,769,538,8,10.5,253,315,0,427,56.45,0.15,2,43.97,1012,271,2.3000000000000003 +2008,10,19,13,30,23.200000000000003,1.04,0.134,0.65,101,709,423,7,10.700000000000001,216,262,0,335,63.03,0.15,2,45.14,1012,275,2.4000000000000004 +2008,10,19,14,30,22.400000000000002,1.05,0.13,0.65,82,592,269,8,10.8,160,145,0,206,71.61,0.15,2.1,47.96,1012,280,2.2 +2008,10,19,15,30,20.6,1.07,0.128,0.65,49,353,102,0,11.5,49,353,0,102,81.45,0.15,2.1,55.88,1012,287,1.7000000000000002 +2008,10,19,16,30,18.5,1.08,0.126,0.65,0,0,0,0,12.3,0,0,0,0,92.23,0.15,2.1,67.23,1012,295,1.4000000000000001 +2008,10,19,17,30,17.6,1.09,0.125,0.65,0,0,0,0,12.5,0,0,0,0,103.31,0.15,2.1,71.82000000000001,1013,309,1.3 +2008,10,19,18,30,17.1,1.09,0.124,0.65,0,0,0,0,12.600000000000001,0,0,0,0,114.46000000000001,0.15,2.1,74.96000000000001,1013,328,1.2000000000000002 +2008,10,19,19,30,16.7,1.1,0.122,0.65,0,0,0,0,12.600000000000001,0,0,0,0,125.29,0.15,2.1,76.57000000000001,1013,172,1.2000000000000002 +2008,10,19,20,30,16.400000000000002,1.1,0.122,0.65,0,0,0,0,12.3,0,0,0,0,135.25,0.15,2.1,76.76,1013,17,1.1 +2008,10,19,21,30,16,1.09,0.121,0.65,0,0,0,0,12,0,0,0,0,143.36,0.15,2.1,76.98,1014,40,1.1 +2008,10,19,22,30,15.700000000000001,1.09,0.12,0.65,0,0,0,0,11.5,0,0,0,0,148,0.15,2.1,76.32000000000001,1013,59,1.1 +2008,10,19,23,30,15.3,1.09,0.11900000000000001,0.65,0,0,0,0,11.100000000000001,0,0,0,0,147.58,0.15,2.1,76.02,1013,74,1.1 +2008,10,20,0,30,15,1.08,0.11900000000000001,0.65,0,0,0,0,10.600000000000001,0,0,0,0,142.27,0.15,2.1,75.10000000000001,1013,85,1.2000000000000002 +2008,10,20,1,30,14.700000000000001,1.08,0.11900000000000001,0.65,0,0,0,0,10.100000000000001,0,0,0,0,133.78,0.15,2.1,74.15,1013,92,1.2000000000000002 +2008,10,20,2,30,14.5,1.07,0.11900000000000001,0.65,0,0,0,0,9.700000000000001,0,0,0,0,123.65,0.15,2.1,72.85000000000001,1013,99,1.3 +2008,10,20,3,30,14.3,1.07,0.121,0.65,0,0,0,0,9.3,0,0,0,0,112.75,0.15,2.1,72.09,1013,105,1.3 +2008,10,20,4,30,14,1.08,0.124,0.65,0,0,0,0,9.1,0,0,0,0,101.61,0.15,2.2,72.53,1013,111,1.3 +2008,10,20,5,30,14.5,1.08,0.127,0.65,0,0,0,0,9.1,0,0,0,0,90.02,0.15,2.3000000000000003,70.02,1013,114,1.3 +2008,10,20,6,30,16.7,1.08,0.13,0.65,56,396,125,0,9.600000000000001,56,396,0,125,79.95,0.15,2.3000000000000003,62.800000000000004,1014,119,1.6 +2008,10,20,7,30,19.5,1.08,0.132,0.65,85,606,289,0,10.200000000000001,85,606,0,289,70.31,0.15,2.4000000000000004,54.82,1014,143,1.7000000000000002 +2008,10,20,8,30,21.6,1.08,0.134,0.65,102,709,435,0,11,102,709,0,435,62.050000000000004,0.15,2.5,51.04,1014,179,1.4000000000000001 +2008,10,20,9,30,23,1.26,0.115,0.65,103,787,544,0,11.100000000000001,103,787,0,544,55.92,0.15,2.5,47.2,1014,209,1.5 +2008,10,20,10,30,24,1.27,0.11900000000000001,0.65,109,803,595,0,11.3,109,803,0,595,52.730000000000004,0.15,2.6,44.81,1013,229,1.9000000000000001 +2008,10,20,11,30,24.400000000000002,1.29,0.124,0.65,110,797,589,7,11.5,246,392,0,482,53.050000000000004,0.15,2.6,44.34,1013,239,2.3000000000000003 +2008,10,20,12,30,24.400000000000002,1.37,0.125,0.65,105,768,526,0,11.8,105,768,0,526,56.800000000000004,0.15,2.7,45.15,1012,244,2.6 +2008,10,20,13,30,23.900000000000002,1.3800000000000001,0.129,0.65,96,703,412,0,12,96,703,0,412,63.36,0.15,2.7,47.38,1012,246,2.7 +2008,10,20,14,30,23,1.37,0.132,0.65,79,582,260,0,12.3,79,582,0,260,71.91,0.15,2.7,50.82,1011,249,2.6 +2008,10,20,15,30,21,1.04,0.161,0.65,51,291,93,0,12.600000000000001,51,291,0,93,81.73,0.15,2.7,58.77,1011,252,1.9000000000000001 +2008,10,20,16,30,18.8,1.02,0.16,0.65,0,0,0,0,13.4,0,0,0,0,92.5,0.15,2.7,70.87,1011,259,1.3 +2008,10,20,17,30,17.8,0.99,0.16,0.65,0,0,0,0,13.8,0,0,0,0,103.58,0.15,2.7,77.67,1012,272,1.1 +2008,10,20,18,30,17.5,0.9500000000000001,0.162,0.65,0,0,0,0,14.3,0,0,0,0,114.73,0.15,2.7,81.3,1012,291,1 +2008,10,20,19,30,17.400000000000002,0.9,0.163,0.65,0,0,0,0,14.5,0,0,0,0,125.57000000000001,0.15,2.6,82.93,1012,323,0.7000000000000001 +2008,10,20,20,30,17.1,0.87,0.164,0.65,0,0,0,0,14.5,0,0,0,0,135.56,0.15,2.6,84.58,1012,189,0.6000000000000001 +2008,10,20,21,30,16.8,0.84,0.165,0.65,0,0,0,0,14.4,0,0,0,0,143.70000000000002,0.15,2.5,85.59,1012,51,0.6000000000000001 +2008,10,20,22,30,16.400000000000002,0.8200000000000001,0.167,0.65,0,0,0,0,14.200000000000001,0,0,0,0,148.36,0.15,2.5,86.68,1011,73,0.7000000000000001 +2008,10,20,23,30,16.2,0.8,0.17,0.65,0,0,0,3,13.9,0,0,0,0,147.92000000000002,0.15,2.5,86.44,1011,82,0.9 +2008,10,21,0,30,16.1,0.79,0.17200000000000001,0.65,0,0,0,3,13.600000000000001,0,0,0,0,142.56,0.15,2.6,85.38,1011,87,0.9 +2008,10,21,1,30,16.1,0.79,0.177,0.65,0,0,0,3,13.4,0,0,0,0,134.03,0.15,2.6,83.81,1011,90,0.9 +2008,10,21,2,30,16.1,0.79,0.185,0.65,0,0,0,3,13.100000000000001,0,0,0,0,123.86,0.15,2.7,82.43,1010,92,0.9 +2008,10,21,3,30,16,0.79,0.193,0.65,0,0,0,7,13,0,0,0,0,112.95,0.15,2.8000000000000003,82.2,1010,92,1 +2008,10,21,4,30,15.700000000000001,0.79,0.198,0.65,0,0,0,3,12.9,0,0,0,0,101.81,0.15,2.8000000000000003,83.29,1010,95,1 +2008,10,21,5,30,15.9,0.78,0.2,0.65,0,0,0,3,12.700000000000001,0,0,0,0,90.2,0.15,2.9000000000000004,81.45,1010,100,1 +2008,10,21,6,30,17.400000000000002,1.03,0.161,0.65,59,337,116,0,12.700000000000001,59,337,0,116,80.18,0.15,2.9000000000000004,74.05,1010,109,1.3 +2008,10,21,7,30,19.6,1.06,0.152,0.65,90,570,280,0,12.9,90,570,0,280,70.56,0.15,2.8000000000000003,65.31,1010,133,1.4000000000000001 +2008,10,21,8,30,21.6,1.11,0.14,0.65,104,695,426,0,12.8,104,695,0,426,62.34,0.15,2.8000000000000003,57.17,1010,172,1.4000000000000001 +2008,10,21,9,30,22.900000000000002,1.1,0.138,0.65,113,753,531,0,12.200000000000001,113,753,0,531,56.25,0.15,2.8000000000000003,50.94,1010,202,1.7000000000000002 +2008,10,21,10,30,23.700000000000003,1.1300000000000001,0.135,0.65,116,780,585,0,12,116,780,0,585,53.08,0.15,2.8000000000000003,47.96,1009,215,2.1 +2008,10,21,11,30,23.900000000000002,1.1400000000000001,0.135,0.65,116,780,581,0,11.9,116,780,0,581,53.4,0.15,2.7,47.06,1008,223,2.4000000000000004 +2008,10,21,12,30,23.900000000000002,1.1500000000000001,0.135,0.65,110,752,518,0,11.9,110,752,0,518,57.15,0.15,2.7,47,1008,229,2.4000000000000004 +2008,10,21,13,30,23.5,1.1300000000000001,0.134,0.65,100,692,406,0,11.9,100,692,0,406,63.68,0.15,2.6,47.99,1007,233,2.2 +2008,10,21,14,30,22.700000000000003,1.1,0.133,0.65,81,570,255,0,11.8,81,570,0,255,72.21000000000001,0.15,2.6,50.13,1007,235,1.9000000000000001 +2008,10,21,15,30,20.8,0.79,0.203,0.65,55,221,86,0,12.100000000000001,55,221,0,86,82.01,0.15,2.6,57.58,1007,238,1.3 +2008,10,21,16,30,18.900000000000002,0.77,0.199,0.65,0,0,0,8,12.700000000000001,0,0,0,0,92.77,0.15,2.6,67.46000000000001,1007,245,1 +2008,10,21,17,30,18.1,0.76,0.197,0.65,0,0,0,3,12.8,0,0,0,0,103.84,0.15,2.6,71.41,1007,254,1 +2008,10,21,18,30,17.8,0.75,0.196,0.65,0,0,0,1,13.200000000000001,0,0,0,0,114.99000000000001,0.15,2.6,74.48,1008,265,0.8 +2008,10,21,19,30,17.8,0.73,0.196,0.65,0,0,0,0,13.4,0,0,0,0,125.85000000000001,0.15,2.5,75.44,1008,285,0.5 +2008,10,21,20,30,17.6,0.72,0.197,0.65,0,0,0,0,13.5,0,0,0,0,135.86,0.15,2.5,76.78,1008,196,0.30000000000000004 +2008,10,21,21,30,17.1,0.71,0.198,0.65,0,0,0,0,13.4,0,0,0,0,144.03,0.15,2.5,78.84,1008,99,0.5 +2008,10,21,22,30,16.400000000000002,0.7000000000000001,0.199,0.65,0,0,0,0,13.200000000000001,0,0,0,0,148.72,0.15,2.5,81.45,1008,105,0.8 +2008,10,21,23,30,15.700000000000001,0.68,0.198,0.65,0,0,0,0,13,0,0,0,0,148.26,0.15,2.4000000000000004,83.84,1007,104,1.1 +2008,10,22,0,30,15.100000000000001,0.67,0.195,0.65,0,0,0,0,12.700000000000001,0,0,0,0,142.85,0.15,2.4000000000000004,85.36,1007,103,1.3 +2008,10,22,1,30,14.8,0.66,0.191,0.65,0,0,0,0,12.3,0,0,0,0,134.27,0.15,2.3000000000000003,84.87,1007,104,1.4000000000000001 +2008,10,22,2,30,14.600000000000001,0.66,0.186,0.65,0,0,0,0,11.9,0,0,0,0,124.08,0.15,2.3000000000000003,83.65,1006,106,1.4000000000000001 +2008,10,22,3,30,14.4,0.67,0.178,0.65,0,0,0,0,11.5,0,0,0,0,113.16,0.15,2.2,82.93,1006,109,1.5 +2008,10,22,4,30,14.200000000000001,0.68,0.169,0.65,0,0,0,0,11.3,0,0,0,0,102.01,0.15,2.2,82.78,1006,113,1.5 +2008,10,22,5,30,14.700000000000001,0.7000000000000001,0.162,0.65,0,0,0,0,11.200000000000001,0,0,0,0,91.01,0.15,2.2,79.49,1006,119,1.6 +2008,10,22,6,30,16.900000000000002,0.72,0.16,0.65,60,323,114,0,11.4,60,323,0,114,80.4,0.15,2.2,69.84,1006,128,2.1 +2008,10,22,7,30,19.6,0.74,0.159,0.65,94,556,276,0,12,94,556,0,276,70.82000000000001,0.15,2.2,61.43,1007,144,3 +2008,10,22,8,30,21.5,0.75,0.159,0.65,112,673,421,0,12.600000000000001,112,673,0,421,62.63,0.15,2.2,56.96,1007,156,3.5 +2008,10,22,9,30,22.900000000000002,0.91,0.139,0.65,114,761,533,0,12.4,114,761,0,533,56.57,0.15,2.1,51.69,1007,158,3.7 +2008,10,22,10,30,23.8,0.85,0.139,0.65,119,783,586,0,12.100000000000001,119,783,0,586,53.43,0.15,2.1,47.96,1007,162,3.8000000000000003 +2008,10,22,11,30,24.3,0.75,0.14400000000000002,0.65,121,773,579,0,11.700000000000001,121,773,0,579,53.76,0.15,2.1,45.36,1006,166,3.9000000000000004 +2008,10,22,12,30,24.3,0.65,0.155,0.65,121,728,513,7,11.4,251,313,0,419,57.49,0.15,2.1,44.43,1006,167,3.9000000000000004 +2008,10,22,13,30,23.900000000000002,0.58,0.163,0.65,113,646,396,7,11.3,210,180,0,289,64,0.15,2.2,45.07,1005,167,3.9000000000000004 +2008,10,22,14,30,22.8,0.56,0.168,0.65,92,504,244,7,11.3,156,89,0,182,72.5,0.15,2.2,48.36,1005,166,3.5 +2008,10,22,15,30,20.8,0.54,0.177,0.65,52,223,82,7,12,66,12,7,67,82.28,0.15,2.3000000000000003,57.1,1005,164,2.6 +2008,10,22,16,30,18.8,0.53,0.186,0.65,0,0,0,7,13.100000000000001,0,0,0,0,93.03,0.15,2.3000000000000003,69.49,1006,160,2.1 +2008,10,22,17,30,17.900000000000002,0.53,0.196,0.65,0,0,0,6,13.9,0,0,0,0,104.10000000000001,0.15,2.4000000000000004,77.57000000000001,1006,152,1.9000000000000001 +2008,10,22,18,30,17.400000000000002,0.53,0.202,0.65,0,0,0,7,14.600000000000001,0,0,0,0,115.25,0.15,2.4000000000000004,83.68,1006,141,1.8 +2008,10,22,19,30,17,0.54,0.20600000000000002,0.65,0,0,0,7,14.8,0,0,0,0,126.12,0.15,2.5,86.78,1006,130,1.6 +2008,10,22,20,30,16.6,0.54,0.20500000000000002,0.65,0,0,0,7,14.5,0,0,0,0,136.15,0.15,2.5,87.62,1006,119,1.5 +2008,10,22,21,30,16.3,0.55,0.20500000000000002,0.65,0,0,0,7,13.9,0,0,0,0,144.36,0.15,2.6,85.46000000000001,1006,110,1.5 +2008,10,22,22,30,16,0.56,0.21,0.65,0,0,0,7,12.8,0,0,0,0,149.07,0.15,2.7,81.35000000000001,1006,104,1.5 +2008,10,22,23,30,15.8,0.5700000000000001,0.222,0.65,0,0,0,6,11.700000000000001,0,0,0,0,148.59,0.15,2.8000000000000003,76.37,1006,100,1.6 +2008,10,23,0,30,15.8,0.58,0.23600000000000002,0.65,0,0,0,6,10.8,0,0,0,0,143.13,0.15,2.9000000000000004,72.01,1006,99,1.7000000000000002 +2008,10,23,1,30,15.8,0.5700000000000001,0.248,0.65,0,0,0,8,10.200000000000001,0,0,0,0,134.52,0.15,3,69.58,1006,101,1.8 +2008,10,23,2,30,15.9,0.56,0.252,0.65,0,0,0,7,10,0,0,0,0,124.3,0.15,3,67.78,1006,104,1.9000000000000001 +2008,10,23,3,30,16.1,0.55,0.252,0.65,0,0,0,7,9.9,0,0,0,0,113.36,0.15,3,66.75,1006,108,2 +2008,10,23,4,30,16.2,0.56,0.25,0.65,0,0,0,7,10.100000000000001,0,0,0,0,102.22,0.15,3.1,67.06,1006,111,2 +2008,10,23,5,30,16.5,0.5700000000000001,0.248,0.65,0,0,0,7,10.200000000000001,0,0,0,0,91.23,0.15,3.1,66.41,1007,113,2 +2008,10,23,6,30,17.400000000000002,0.61,0.229,0.65,66,221,102,7,10.5,33,0,7,33,80.63,0.15,3.1,63.85,1007,114,2 +2008,10,23,7,30,18.8,0.64,0.223,0.65,109,457,258,8,11.100000000000001,172,116,0,209,71.07000000000001,0.15,3.2,60.84,1008,113,2.2 +2008,10,23,8,30,20.400000000000002,0.68,0.213,0.65,131,592,400,8,10.700000000000001,136,6,0,139,62.92,0.15,3.2,53.74,1008,117,2.6 +2008,10,23,9,30,22,0.62,0.274,0.65,166,600,494,7,11.600000000000001,250,48,0,276,56.89,0.15,3.2,51.68,1008,126,3.1 +2008,10,23,10,30,23.1,0.66,0.255,0.65,166,647,548,7,11.9,145,2,0,146,53.78,0.15,3.2,49.370000000000005,1008,134,3.5 +2008,10,23,11,30,23.5,0.71,0.242,0.65,160,657,545,7,11.8,140,3,0,142,54.11,0.15,3.2,47.79,1008,140,3.5 +2008,10,23,12,30,23.5,0.72,0.28300000000000003,0.65,165,589,478,7,11.8,146,3,0,147,57.83,0.15,3.2,47.730000000000004,1008,145,3.3000000000000003 +2008,10,23,13,30,23.200000000000003,0.77,0.274,0.65,143,523,370,6,11.9,87,1,0,88,64.32000000000001,0.15,3.2,49.120000000000005,1008,151,2.9000000000000004 +2008,10,23,14,30,22.400000000000002,0.8,0.267,0.65,110,392,226,7,12.3,37,0,0,37,72.8,0.15,3.2,52.76,1008,157,2 +2008,10,23,15,30,21.1,0.84,0.262,0.65,54,154,74,7,13.8,6,0,7,6,82.55,0.15,3.3000000000000003,63.17,1008,164,1.3 +2008,10,23,16,30,20.200000000000003,0.86,0.26,0.65,0,0,0,4,13.8,0,0,0,0,93.29,0.15,3.3000000000000003,66.72,1009,168,1 +2008,10,23,17,30,19.8,0.87,0.257,0.65,0,0,0,4,13.9,0,0,0,0,104.35000000000001,0.15,3.3000000000000003,68.75,1009,155,0.9 +2008,10,23,18,30,19.200000000000003,0.89,0.252,0.65,0,0,0,4,14,0,0,0,0,115.51,0.15,3.3000000000000003,71.8,1009,130,0.9 +2008,10,23,19,30,18.5,0.9,0.247,0.65,0,0,0,4,13.9,0,0,0,0,126.39,0.15,3.3000000000000003,74.35000000000001,1009,107,1.2000000000000002 +2008,10,23,20,30,17.8,0.92,0.242,0.65,0,0,0,3,13.5,0,0,0,0,136.44,0.15,3.3000000000000003,76.07000000000001,1010,97,1.3 +2008,10,23,21,30,17.2,0.93,0.23600000000000002,0.65,0,0,0,3,13.100000000000001,0,0,0,0,144.68,0.15,3.3000000000000003,76.74,1010,94,1.4000000000000001 +2008,10,23,22,30,16.8,0.9400000000000001,0.228,0.65,0,0,0,3,12.700000000000001,0,0,0,0,149.42000000000002,0.15,3.2,76.54,1010,94,1.5 +2008,10,23,23,30,16.5,0.9500000000000001,0.222,0.65,0,0,0,3,12.4,0,0,0,0,148.93,0.15,3.2,76.57000000000001,1010,96,1.5 +2008,10,24,0,30,16.400000000000002,0.96,0.218,0.65,0,0,0,3,12.200000000000001,0,0,0,0,143.42000000000002,0.15,3.2,76.38,1010,99,1.5 +2008,10,24,1,30,16.5,0.98,0.214,0.65,0,0,0,0,12.200000000000001,0,0,0,0,134.76,0.15,3.2,75.62,1009,106,1.5 +2008,10,24,2,30,16.6,1,0.209,0.65,0,0,0,0,12.200000000000001,0,0,0,0,124.51,0.15,3.2,75.33,1009,114,1.5 +2008,10,24,3,30,16.7,1.02,0.211,0.65,0,0,0,0,12.3,0,0,0,0,113.56,0.15,3.2,75.35000000000001,1010,122,1.5 +2008,10,24,4,30,16.8,1.05,0.216,0.65,0,0,0,0,12.4,0,0,0,0,102.42,0.15,3.3000000000000003,75.45,1010,129,1.5 +2008,10,24,5,30,17,1.06,0.218,0.65,0,0,0,0,12.600000000000001,0,0,0,0,91.44,0.15,3.3000000000000003,75.28,1010,133,1.5 +2008,10,24,6,30,17.900000000000002,1.04,0.21,0.65,61,262,102,3,12.8,60,0,7,60,80.86,0.15,3.3000000000000003,72.22,1011,135,1.6 +2008,10,24,7,30,19.1,1.05,0.215,0.65,103,482,257,0,13.100000000000001,103,482,0,257,71.33,0.15,3.3000000000000003,68.29,1011,139,2.1 +2008,10,24,8,30,20.3,1.06,0.216,0.65,126,600,397,0,13.4,126,600,0,397,63.2,0.15,3.4000000000000004,64.39,1011,146,2.6 +2008,10,24,9,30,21.400000000000002,1.07,0.218,0.65,140,662,499,0,14.100000000000001,140,662,0,499,57.21,0.15,3.4000000000000004,63.32,1011,152,2.8000000000000003 +2008,10,24,10,30,22.3,1.08,0.22,0.65,147,689,550,0,14.200000000000001,147,689,0,550,54.120000000000005,0.15,3.3000000000000003,60.15,1011,155,2.7 +2008,10,24,11,30,22.700000000000003,1.08,0.227,0.65,149,680,544,0,13.9,149,680,0,544,54.46,0.15,3.3000000000000003,57.75,1010,157,2.6 +2008,10,24,12,30,22.8,1.1,0.259,0.65,151,621,479,3,13.700000000000001,306,151,0,386,58.160000000000004,0.15,3.3000000000000003,56.51,1010,160,2.5 +2008,10,24,13,30,22.700000000000003,1.08,0.263,0.65,135,545,369,4,13.600000000000001,243,28,0,256,64.63,0.15,3.2,56.34,1010,164,2.2 +2008,10,24,14,30,21.900000000000002,1.06,0.262,0.65,105,408,224,0,13.600000000000001,105,408,0,224,73.08,0.15,3.2,59.27,1009,168,1.6 +2008,10,24,15,30,20.6,1.05,0.255,0.65,51,168,72,4,14.5,17,0,7,17,82.82000000000001,0.15,3.2,68.08,1010,177,1.1 +2008,10,24,16,30,19.8,1.04,0.255,0.65,0,0,0,4,14.5,0,0,0,0,93.55,0.15,3.2,71.47,1010,185,0.9 +2008,10,24,17,30,19.3,1.05,0.261,0.65,0,0,0,4,14.8,0,0,0,0,104.60000000000001,0.15,3.2,75.21000000000001,1011,176,0.8 +2008,10,24,18,30,18.8,1.06,0.268,0.65,0,0,0,3,15.100000000000001,0,0,0,0,115.76,0.15,3.2,79.31,1011,160,1 +2008,10,24,19,30,18.3,1.05,0.263,0.65,0,0,0,4,15.5,0,0,0,0,126.65,0.15,3.3000000000000003,83.88,1012,148,1.2000000000000002 +2008,10,24,20,30,17.7,1.04,0.246,0.65,0,0,0,3,15.9,0,0,0,0,136.73,0.15,3.3000000000000003,89.09,1012,138,1.3 +2008,10,24,21,30,17.3,1.03,0.228,0.65,0,0,0,3,16.1,0,0,0,0,145,0.15,3.2,92.73,1012,130,1.4000000000000001 +2008,10,24,22,30,16.900000000000002,1.03,0.198,0.65,0,0,0,3,16.1,0,0,0,0,149.77,0.15,3.2,95.10000000000001,1012,120,1.4000000000000001 +2008,10,24,23,30,16.7,1.04,0.168,0.65,0,0,0,3,16,0,0,0,0,149.26,0.15,3.1,95.34,1012,111,1.4000000000000001 +2008,10,25,0,30,16.5,1.05,0.149,0.65,0,0,0,8,15.700000000000001,0,0,0,0,143.70000000000002,0.15,3.1,95.01,1012,104,1.5 +2008,10,25,1,30,16.5,1.07,0.137,0.65,0,0,0,7,15.4,0,0,0,0,135,0.15,3.1,93.10000000000001,1012,100,1.5 +2008,10,25,2,30,16.5,1.08,0.132,0.65,0,0,0,7,15,0,0,0,0,124.73,0.15,3.1,91.12,1011,98,1.5 +2008,10,25,3,30,16.5,1.09,0.135,0.65,0,0,0,8,14.8,0,0,0,0,113.77,0.15,3.1,89.58,1012,98,1.4000000000000001 +2008,10,25,4,30,16.6,1.1,0.145,0.65,0,0,0,5,14.5,0,0,0,0,102.62,0.15,3.1,87.58,1012,97,1.4000000000000001 +2008,10,25,5,30,16.8,1.1,0.158,0.65,0,0,0,4,14.3,0,0,0,0,91.65,0.15,3.1,85.38,1012,98,1.4000000000000001 +2008,10,25,6,30,17.900000000000002,1.1,0.171,0.65,55,299,102,5,14.5,4,0,0,4,81.09,0.15,3.1,80.59,1012,103,1.4000000000000001 +2008,10,25,7,30,19.6,1.09,0.184,0.65,95,514,257,7,15.600000000000001,162,106,0,195,71.58,0.15,3.1,77.47,1013,122,1.5 +2008,10,25,8,30,20.900000000000002,1.06,0.20700000000000002,0.65,123,609,395,7,15.8,213,184,0,295,63.49,0.15,3.1,72.44,1013,152,1.7000000000000002 +2008,10,25,9,30,21.700000000000003,0.99,0.202,0.65,135,673,496,7,15.8,247,313,0,415,57.53,0.15,3.2,69.22,1014,174,1.8 +2008,10,25,10,30,22.1,1,0.221,0.65,147,683,545,7,15.600000000000001,282,128,0,356,54.46,0.15,3.2,66.46000000000001,1014,182,1.7000000000000002 +2008,10,25,11,30,22.200000000000003,1.05,0.225,0.65,147,679,539,7,15.5,285,206,0,404,54.800000000000004,0.15,3.2,65.76,1014,188,1.5 +2008,10,25,12,30,22.1,1.04,0.309,0.65,166,577,467,7,15.5,267,111,0,326,58.49,0.15,3.2,66.02,1013,194,1.3 +2008,10,25,13,30,21.700000000000003,1.04,0.306,0.65,145,503,358,8,15.4,210,87,7,246,64.94,0.15,3.2,67.56,1013,197,1 +2008,10,25,14,30,21.1,1.05,0.295,0.65,109,373,216,0,15.700000000000001,109,373,0,216,73.37,0.15,3.2,71.51,1013,212,0.6000000000000001 +2008,10,25,15,30,20.3,1.07,0.28600000000000003,0.65,50,143,67,3,16.1,43,0,7,43,83.08,0.15,3.2,76.94,1013,253,0.30000000000000004 +2008,10,25,16,30,19.700000000000003,1.09,0.28700000000000003,0.65,0,0,0,1,15.600000000000001,0,0,0,0,93.8,0.15,3.2,77.42,1014,315,0.30000000000000004 +2008,10,25,17,30,19.400000000000002,1.11,0.295,0.65,0,0,0,3,15.5,0,0,0,0,104.84,0.15,3.2,78.11,1014,180,0.4 +2008,10,25,18,30,19.1,1.1300000000000001,0.304,0.65,0,0,0,0,15.3,0,0,0,0,116,0.15,3.2,78.87,1014,17,0.6000000000000001 +2008,10,25,19,30,18.7,1.1500000000000001,0.316,0.65,0,0,0,0,15.200000000000001,0,0,0,0,126.91,0.15,3.2,80.10000000000001,1014,29,0.7000000000000001 +2008,10,25,20,30,18.3,1.17,0.33,0.65,0,0,0,0,15,0,0,0,0,137.01,0.15,3.2,81.23,1014,42,0.8 +2008,10,25,21,30,18,1.19,0.34700000000000003,0.65,0,0,0,3,14.8,0,0,0,0,145.32,0.15,3.2,81.45,1014,58,0.9 +2008,10,25,22,30,17.8,1.21,0.364,0.65,0,0,0,0,14.4,0,0,0,0,150.11,0.15,3.2,80.75,1014,73,1 +2008,10,25,23,30,17.5,1.22,0.373,0.65,0,0,0,1,14.100000000000001,0,0,0,0,149.59,0.15,3.2,80.58,1014,87,1.1 +2008,10,26,0,30,17.2,1.24,0.373,0.65,0,0,0,0,13.8,0,0,0,0,143.98,0.14,3.2,80.66,1014,100,1.1 +2008,10,26,1,30,17.2,1.26,0.37,0.65,0,0,0,0,13.600000000000001,0,0,0,0,135.24,0.14,3.2,79.28,1014,114,1.2000000000000002 +2008,10,26,2,30,17.2,1.28,0.37,0.65,0,0,0,0,13.4,0,0,0,0,124.94,0.14,3.2,78.32000000000001,1014,128,1.1 +2008,10,26,3,30,17.1,1.29,0.375,0.65,0,0,0,0,13.3,0,0,0,0,113.97,0.14,3.2,78.22,1014,142,1.1 +2008,10,26,4,30,16.900000000000002,1.29,0.379,0.65,0,0,0,0,13.3,0,0,0,0,102.83,0.14,3.2,79.12,1014,155,1.1 +2008,10,26,5,30,16.8,1.29,0.368,0.65,0,0,0,0,13.3,0,0,0,0,91.86,0.14,3.2,79.91,1014,162,1.1 +2008,10,26,6,30,17.6,1.31,0.47300000000000003,0.65,66,126,85,0,13.8,66,126,0,85,81.32000000000001,0.14,3.2,78.39,1014,164,1.4000000000000001 +2008,10,26,7,30,19.1,1.31,0.455,0.65,135,316,233,0,14.5,135,316,0,233,71.84,0.14,3.2,74.54,1014,174,2 +2008,10,26,8,30,20.400000000000002,1.3,0.42,0.65,170,456,371,0,14.9,170,456,0,371,63.77,0.14,3.1,70.72,1014,187,2.4000000000000004 +2008,10,26,9,30,21.5,1.24,0.321,0.65,168,586,479,0,14.700000000000001,168,586,0,479,57.84,0.14,3.1,65.36,1014,195,2.4000000000000004 +2008,10,26,10,30,22.200000000000003,1.24,0.302,0.65,170,630,533,0,14.3,170,630,0,533,54.800000000000004,0.14,3,60.81,1013,205,2.2 +2008,10,26,11,30,22.400000000000002,1.23,0.302,0.65,169,626,527,0,13.9,169,626,0,527,55.14,0.14,3,58.480000000000004,1013,214,2.2 +2008,10,26,12,30,22.200000000000003,1.22,0.366,0.65,178,545,460,0,13.600000000000001,178,545,0,460,58.82,0.14,3,58.32,1012,221,2.2 +2008,10,26,13,30,21.8,1.23,0.373,0.65,157,466,352,0,13.600000000000001,157,466,0,352,65.24,0.14,2.9000000000000004,59.54,1012,227,2.1 +2008,10,26,14,30,21.1,1.27,0.331,0.65,111,360,212,0,13.600000000000001,111,360,0,212,73.65,0.14,2.9000000000000004,62.28,1011,230,1.8 +2008,10,26,15,30,19.6,1.34,0.395,0.65,48,112,61,0,13.700000000000001,48,112,0,61,83.33,0.14,2.8000000000000003,68.92,1011,225,1.2000000000000002 +2008,10,26,16,30,18.1,1.34,0.371,0.65,0,0,0,0,14,0,0,0,0,94.05,0.14,2.7,76.93,1011,219,0.9 +2008,10,26,17,30,17.400000000000002,1.35,0.33,0.65,0,0,0,0,14.100000000000001,0,0,0,0,105.08,0.14,2.6,81.21000000000001,1011,215,0.8 +2008,10,26,18,30,17,1.35,0.3,0.65,0,0,0,0,14.4,0,0,0,0,116.24000000000001,0.14,2.5,84.58,1011,210,0.8 +2008,10,26,19,30,16.8,1.35,0.28400000000000003,0.65,0,0,0,0,14.600000000000001,0,0,0,0,127.16,0.14,2.5,86.65,1011,197,0.7000000000000001 +2008,10,26,20,30,16.5,1.34,0.278,0.65,0,0,0,0,14.700000000000001,0,0,0,0,137.28,0.14,2.5,88.94,1011,177,0.6000000000000001 +2008,10,26,21,30,16.1,1.34,0.279,0.65,0,0,0,0,14.700000000000001,0,0,0,0,145.63,0.14,2.5,91.44,1011,156,0.8 +2008,10,26,22,30,15.700000000000001,1.32,0.28200000000000003,0.65,0,0,0,0,14.600000000000001,0,0,0,0,150.45000000000002,0.14,2.5,93.44,1010,139,0.9 +2008,10,26,23,30,15.200000000000001,1.31,0.28,0.65,0,0,0,0,14.5,0,0,0,0,149.91,0.14,2.4000000000000004,95.64,1010,128,1 +2008,10,27,0,30,14.9,1.3,0.273,0.65,0,0,0,0,14.3,0,0,0,0,144.26,0.15,2.4000000000000004,96.19,1010,121,1.1 +2008,10,27,1,30,14.600000000000001,1.28,0.265,0.65,0,0,0,0,14,0,0,0,0,135.48,0.15,2.4000000000000004,96.45,1009,116,1.2000000000000002 +2008,10,27,2,30,14.3,1.28,0.252,0.65,0,0,0,0,13.8,0,0,0,0,125.15,0.15,2.4000000000000004,96.79,1009,115,1.2000000000000002 +2008,10,27,3,30,13.9,1.27,0.242,0.65,0,0,0,0,13.5,0,0,0,0,114.17,0.15,2.3000000000000003,97.71000000000001,1008,116,1.3 +2008,10,27,4,30,13.600000000000001,1.27,0.234,0.65,0,0,0,0,13.4,0,0,0,0,103.03,0.15,2.3000000000000003,98.42,1008,118,1.3 +2008,10,27,5,30,13.9,1.26,0.227,0.65,0,0,0,0,13.200000000000001,0,0,0,0,92.08,0.15,2.3000000000000003,95.67,1008,120,1.3 +2008,10,27,6,30,15.700000000000001,1.22,0.224,0.65,58,256,96,1,13.4,58,256,0,96,81.54,0.15,2.2,86.03,1008,126,1.7000000000000002 +2008,10,27,7,30,17.900000000000002,1.18,0.222,0.65,102,488,252,0,13.9,102,488,0,252,72.09,0.15,2.2,77.38,1008,146,2.2 +2008,10,27,8,30,19.5,1.12,0.198,0.65,120,630,395,0,14.3,120,630,0,395,64.06,0.15,2.3000000000000003,71.89,1008,172,2.3000000000000003 +2008,10,27,9,30,20.700000000000003,1.1400000000000001,0.14400000000000002,0.65,113,746,506,3,14,233,6,0,236,58.15,0.15,2.3000000000000003,65.64,1007,188,2.6 +2008,10,27,10,30,21.5,1.05,0.128,0.65,112,785,560,3,13.8,25,0,0,25,55.13,0.15,2.3000000000000003,61.370000000000005,1006,196,3.1 +2008,10,27,11,30,21.900000000000002,0.96,0.115,0.65,107,794,557,2,13.600000000000001,245,9,0,250,55.480000000000004,0.15,2.3000000000000003,59.2,1006,201,3.4000000000000004 +2008,10,27,12,30,21.8,0.87,0.14100000000000001,0.65,112,734,488,0,13.5,112,734,0,488,59.14,0.15,2.3000000000000003,59.36,1005,206,3.5 +2008,10,27,13,30,21.3,0.85,0.14,0.65,100,662,374,2,13.600000000000001,217,28,0,228,65.54,0.15,2.4000000000000004,61.550000000000004,1004,208,3.5 +2008,10,27,14,30,20.400000000000002,0.8200000000000001,0.135,0.65,79,530,225,0,13.8,79,530,0,225,73.92,0.15,2.4000000000000004,65.76,1004,206,3.2 +2008,10,27,15,30,19,0.8200000000000001,0.14200000000000002,0.65,42,237,68,4,14.100000000000001,14,0,7,14,83.59,0.15,2.4000000000000004,73.09,1004,199,2.3000000000000003 +2008,10,27,16,30,17.400000000000002,0.8,0.133,0.65,0,0,0,4,14.700000000000001,0,0,0,0,94.29,0.15,2.4000000000000004,83.97,1004,190,1.6 +2008,10,27,17,30,16.6,0.77,0.11900000000000001,0.65,0,0,0,3,15.200000000000001,0,0,0,0,105.32000000000001,0.15,2.4000000000000004,91.58,1004,181,1.5 +2008,10,27,18,30,16.2,0.78,0.108,0.65,0,0,0,1,15.600000000000001,0,0,0,0,116.48,0.15,2.4000000000000004,96.29,1003,173,1.7000000000000002 +2008,10,27,19,30,16.2,0.79,0.097,0.65,0,0,0,3,15.8,0,0,0,0,127.4,0.15,2.4000000000000004,97.7,1003,168,1.9000000000000001 +2008,10,27,20,30,16.5,0.79,0.084,0.65,0,0,0,0,16,0,0,0,0,137.55,0.15,2.4000000000000004,96.85000000000001,1003,169,2.2 +2008,10,27,21,30,16.6,0.84,0.08600000000000001,0.65,0,0,0,0,16.1,0,0,0,0,145.94,0.15,2.4000000000000004,97,1003,170,2.4000000000000004 +2008,10,27,22,30,16.7,0.84,0.08,0.65,0,0,0,0,16.2,0,0,0,0,150.78,0.15,2.3000000000000003,96.82000000000001,1003,172,2.5 +2008,10,27,23,30,16.7,0.8200000000000001,0.069,0.65,0,0,0,3,16.2,0,0,0,0,150.23,0.15,2.2,96.67,1002,170,2.5 +2008,10,28,0,30,16.6,0.88,0.08,0.65,0,0,0,0,16.1,0,0,0,0,144.54,0.15,2.2,96.97,1002,166,2.6 +2008,10,28,1,30,16.6,0.84,0.09,0.65,0,0,0,0,16,0,0,0,0,135.71,0.15,2.2,96.21000000000001,1002,158,2.6 +2008,10,28,2,30,16.7,0.74,0.116,0.65,0,0,0,0,16,0,0,0,0,125.37,0.15,2.5,95.46000000000001,1001,148,2.9000000000000004 +2008,10,28,3,30,16.900000000000002,0.7000000000000001,0.164,0.65,0,0,0,0,16,0,0,0,0,114.37,0.15,2.8000000000000003,94.69,1001,139,3.5 +2008,10,28,4,30,17,0.67,0.20800000000000002,0.65,0,0,0,3,16.1,0,0,0,0,103.23,0.15,3.1,94.39,1000,137,4.3 +2008,10,28,5,30,17.3,0.63,0.23600000000000002,0.65,0,0,0,7,16.2,0,0,0,0,92.29,0.15,3.3000000000000003,93.07000000000001,1000,140,4.9 +2008,10,28,6,30,17.8,0.62,0.263,0.65,61,158,84,7,16.400000000000002,3,0,0,3,81.77,0.15,3.5,91.75,1000,143,5.300000000000001 +2008,10,28,7,30,18.400000000000002,0.59,0.273,0.65,115,378,230,6,16.900000000000002,7,0,0,7,72.35000000000001,0.15,3.5,91.26,1000,146,5.6000000000000005 +2008,10,28,8,30,18.900000000000002,0.55,0.28200000000000003,0.65,148,500,365,6,17.400000000000002,7,0,0,7,64.34,0.15,3.5,91.11,1000,147,5.7 +2008,10,28,9,30,19.3,0.54,0.327,0.65,180,535,460,7,17.8,165,5,0,167,58.47,0.15,3.4000000000000004,90.87,1000,147,5.800000000000001 +2008,10,28,10,30,19.8,0.52,0.334,0.65,191,559,508,6,17.900000000000002,12,0,0,12,55.46,0.15,3.4000000000000004,88.87,999,149,6 +2008,10,28,11,30,20.3,0.45,0.337,0.65,193,550,502,5,18,25,0,0,25,55.81,0.15,3.3000000000000003,86.42,998,154,6.4 +2008,10,28,12,30,20.6,0.47000000000000003,0.262,0.65,159,578,452,3,17.8,295,66,0,329,59.46,0.15,3.2,84.11,997,156,6.5 +2008,10,28,13,30,20.3,0.4,0.245,0.65,135,509,343,7,17.7,211,207,0,296,65.84,0.15,3.1,85.25,997,153,6.2 +2008,10,28,14,30,19.8,0.35000000000000003,0.231,0.65,102,369,202,6,17.900000000000002,5,0,0,5,74.2,0.15,3,88.94,996,148,6.1000000000000005 +2008,10,28,15,30,19.400000000000002,0.36,0.217,0.65,45,112,57,6,18.1,14,0,7,14,83.83,0.15,3,92.46000000000001,996,148,6.2 +2008,10,28,16,30,19.1,0.37,0.192,0.65,0,0,0,7,18.2,0,0,0,0,94.52,0.15,3,94.43,996,151,6.2 +2008,10,28,17,30,18.900000000000002,0.4,0.166,0.65,0,0,0,1,18.1,0,0,0,0,105.55,0.15,3,95.36,996,154,6.2 +2008,10,28,18,30,19,0.47000000000000003,0.158,0.65,0,0,0,6,18.2,0,0,0,0,116.71000000000001,0.15,3,94.89,996,159,6.4 +2008,10,28,19,30,19.1,0.5,0.151,0.65,0,0,0,6,18.400000000000002,0,0,0,0,127.64,0.15,3,95.94,996,164,6.6000000000000005 +2008,10,28,20,30,19.200000000000003,0.45,0.151,0.65,0,0,0,6,18.6,0,0,0,0,137.82,0.15,2.9000000000000004,96.3,996,167,6.4 +2008,10,28,21,30,19.1,0.44,0.17200000000000001,0.65,0,0,0,6,18.5,0,0,0,0,146.24,0.15,3,96.04,996,170,5.9 +2008,10,28,22,30,19,0.42,0.17200000000000001,0.65,0,0,0,1,18.2,0,0,0,0,151.12,0.15,3,95.31,996,171,5.300000000000001 +2008,10,28,23,30,18.900000000000002,0.38,0.162,0.65,0,0,0,0,18.2,0,0,0,0,150.55,0.15,3,95.73,996,170,4.7 +2008,10,29,0,30,18.8,0.37,0.154,0.65,0,0,0,0,18.1,0,0,0,0,144.81,0.15,2.9000000000000004,95.94,996,168,4.3 +2008,10,29,1,30,18.6,0.33,0.14400000000000002,0.65,0,0,0,0,18,0,0,0,0,135.95,0.15,2.7,96.16,995,166,3.9000000000000004 +2008,10,29,2,30,18.3,0.29,0.14,0.65,0,0,0,0,17.7,0,0,0,0,125.58,0.15,2.6,96.38,995,162,3.7 +2008,10,29,3,30,18.1,0.26,0.14400000000000002,0.65,0,0,0,3,17.400000000000002,0,0,0,0,114.58,0.15,2.5,95.77,995,156,3.6 +2008,10,29,4,30,17.900000000000002,0.23,0.152,0.65,0,0,0,4,17.1,0,0,0,0,103.44,0.15,2.4000000000000004,95.19,995,153,3.6 +2008,10,29,5,30,18.2,0.22,0.163,0.65,0,0,0,3,16.900000000000002,0,0,0,0,92.5,0.15,2.5,91.97,995,155,4 +2008,10,29,6,30,19.200000000000003,0.21,0.171,0.65,54,212,84,1,17.1,54,212,0,84,82,0.15,2.5,87.68,995,160,4.800000000000001 +2008,10,29,7,30,20.400000000000002,0.18,0.20500000000000002,0.65,105,424,231,0,18.1,105,424,0,231,72.60000000000001,0.15,2.7,86.4,995,164,5.6000000000000005 +2008,10,29,8,30,21.3,0.16,0.23800000000000002,0.65,141,522,364,4,18.7,29,0,0,29,64.62,0.15,2.8000000000000003,84.91,996,168,6.2 +2008,10,29,9,30,22,0.17,0.232,0.65,154,600,465,4,18.1,231,10,0,236,58.78,0.15,2.9000000000000004,78.65,996,172,6.800000000000001 +2008,10,29,10,30,22.700000000000003,0.17,0.229,0.65,160,634,516,3,17,333,87,0,382,55.79,0.15,2.9000000000000004,70.45,996,175,7.2 +2008,10,29,11,30,23,0.16,0.243,0.65,165,618,509,4,16.1,158,0,7,158,56.14,0.15,2.8000000000000003,65.06,995,176,7.4 +2008,10,29,12,30,22.900000000000002,0.17,0.255,0.65,160,569,446,8,15.8,197,19,7,207,59.78,0.15,2.7,64.16,995,176,7.300000000000001 +2008,10,29,13,30,22.3,0.18,0.277,0.65,147,463,334,4,16.1,15,0,0,15,66.13,0.15,2.7,67.78,995,173,6.9 +2008,10,29,14,30,21.400000000000002,0.18,0.298,0.65,113,284,189,6,17,6,0,0,6,74.46000000000001,0.15,2.9000000000000004,75.8,995,170,6.4 +2008,10,29,15,30,20.400000000000002,0.17,0.37,0.65,40,28,43,8,17.8,17,0,7,17,84.08,0.15,3.1,85.07000000000001,994,169,6 +2008,10,29,16,30,19.900000000000002,0.17,0.445,0.65,0,0,0,3,18.2,0,0,0,0,94.76,0.15,3.2,90.03,995,167,5.9 +2008,10,29,17,30,19.8,0.17,0.441,0.65,0,0,0,4,18.400000000000002,0,0,0,0,105.77,0.15,3.2,91.64,995,165,5.800000000000001 +2008,10,29,18,30,19.700000000000003,0.18,0.423,0.65,0,0,0,6,18.5,0,0,0,0,116.93,0.15,3.3000000000000003,93.02,994,167,6 +2008,10,29,19,30,19.700000000000003,0.19,0.435,0.65,0,0,0,9,18.6,0,0,0,0,127.88000000000001,0.15,3.5,93.5,994,176,6.4 +2008,10,29,20,30,19.400000000000002,0.21,0.534,0.65,0,0,0,7,18.7,0,0,0,0,138.08,0.15,3.6,95.88,994,198,7 +2008,10,29,21,30,18.6,0.25,0.544,0.65,0,0,0,4,18.2,0,0,0,0,146.53,0.15,3.2,97.69,994,220,6.7 +2008,10,29,22,30,17.6,0.22,0.432,0.65,0,0,0,4,16.5,0,0,0,0,151.44,0.15,2.6,93.38,995,223,5.1000000000000005 +2008,10,29,23,30,16.7,0.22,0.298,0.65,0,0,0,4,15.100000000000001,0,0,0,0,150.87,0.15,2.2,90.06,995,219,4.3 +2008,10,30,0,30,16,0.28,0.202,0.65,0,0,0,4,13.8,0,0,0,0,145.09,0.15,1.9000000000000001,86.85000000000001,994,220,4.2 +2008,10,30,1,30,15.600000000000001,0.34,0.149,0.65,0,0,0,3,12.700000000000001,0,0,0,0,136.18,0.15,1.8,83.10000000000001,994,224,4.4 +2008,10,30,2,30,15.3,0.39,0.124,0.65,0,0,0,4,12.3,0,0,0,0,125.79,0.15,1.8,82.10000000000001,995,228,4.4 +2008,10,30,3,30,15,0.47000000000000003,0.12,0.65,0,0,0,4,12.100000000000001,0,0,0,0,114.78,0.15,1.8,82.77,995,231,4.3 +2008,10,30,4,30,14.700000000000001,0.51,0.11900000000000001,0.65,0,0,0,4,11.9,0,0,0,0,103.64,0.15,1.8,83.46000000000001,995,234,4.1000000000000005 +2008,10,30,5,30,14.600000000000001,0.5,0.125,0.65,0,0,0,4,11.8,0,0,0,0,92.71000000000001,0.15,1.8,83.35000000000001,996,236,4 +2008,10,30,6,30,14.9,0.53,0.138,0.65,51,282,89,8,11.700000000000001,4,0,7,4,82.23,0.15,1.9000000000000001,81.36,996,237,4.2 +2008,10,30,7,30,15.5,0.53,0.14300000000000002,0.65,88,538,247,7,11.700000000000001,4,0,0,4,72.85000000000001,0.15,1.9000000000000001,77.9,996,236,4.7 +2008,10,30,8,30,15.9,0.52,0.139,0.65,106,671,391,7,11.200000000000001,104,3,0,105,64.9,0.15,1.9000000000000001,73.72,997,234,5.2 +2008,10,30,9,30,16.5,0.39,0.195,0.65,141,669,485,7,10.5,251,174,0,340,59.08,0.15,1.8,67.78,997,231,5.7 +2008,10,30,10,30,17,0.42,0.17200000000000001,0.65,137,727,542,7,9.9,285,156,0,372,56.11,0.15,1.7000000000000002,62.96,997,229,5.9 +2008,10,30,11,30,17.2,0.47000000000000003,0.149,0.65,126,751,541,7,9.200000000000001,238,35,0,257,56.47,0.15,1.7000000000000002,59.53,997,228,5.9 +2008,10,30,12,30,17.2,0.5,0.138,0.65,114,733,480,8,8.8,137,5,7,139,60.09,0.15,1.6,57.67,997,227,5.6000000000000005 +2008,10,30,13,30,17,0.49,0.133,0.65,101,664,366,8,8.6,188,85,7,222,66.42,0.15,1.6,57.620000000000005,997,225,5.300000000000001 +2008,10,30,14,30,16.5,0.47000000000000003,0.125,0.65,78,527,217,8,8.5,137,141,7,175,74.72,0.15,1.6,59.25,997,221,4.6000000000000005 +2008,10,30,15,30,15.5,0.48,0.128,0.65,39,213,60,3,8.9,40,0,7,40,84.31,0.15,1.5,64.82000000000001,998,217,3.6 +2008,10,30,16,30,14.600000000000001,0.46,0.124,0.65,0,0,0,4,9.4,0,0,0,0,94.98,0.15,1.5,70.95,998,213,3 +2008,10,30,17,30,14.100000000000001,0.43,0.11800000000000001,0.65,0,0,0,4,9.5,0,0,0,0,105.99000000000001,0.15,1.4000000000000001,73.75,999,211,2.7 +2008,10,30,18,30,13.600000000000001,0.45,0.117,0.65,0,0,0,0,9.5,0,0,0,0,117.15,0.15,1.5,76.14,999,209,2.5 +2008,10,30,19,30,13.4,0.48,0.112,0.65,0,0,0,3,9.5,0,0,0,0,128.11,0.15,1.6,77.17,999,207,2.5 +2008,10,30,20,30,13.5,0.49,0.112,0.65,0,0,0,0,9.600000000000001,0,0,0,0,138.33,0.15,1.8,77.11,1000,206,2.5 +2008,10,30,21,30,13.9,0.51,0.112,0.65,0,0,0,0,9.9,0,0,0,0,146.82,0.15,1.9000000000000001,76.66,1000,204,2.7 +2008,10,30,22,30,14.200000000000001,0.51,0.108,0.65,0,0,0,0,10.200000000000001,0,0,0,0,151.77,0.15,2.1,76.64,1000,203,2.9000000000000004 +2008,10,30,23,30,14.4,0.53,0.109,0.65,0,0,0,8,10.4,0,0,0,0,151.18,0.15,2.2,77.09,1000,200,3 +2008,10,31,0,30,14.5,0.56,0.115,0.65,0,0,0,5,10.700000000000001,0,0,0,0,145.36,0.15,2.2,77.89,1000,197,3.1 +2008,10,31,1,30,14.600000000000001,0.6,0.121,0.65,0,0,0,4,10.9,0,0,0,0,136.41,0.15,2.3000000000000003,78.63,1000,192,3.1 +2008,10,31,2,30,14.600000000000001,0.59,0.122,0.65,0,0,0,8,11.200000000000001,0,0,0,0,126,0.15,2.3000000000000003,79.91,1000,188,3 +2008,10,31,3,30,14.5,0.5700000000000001,0.117,0.65,0,0,0,4,11.4,0,0,0,0,114.98,0.15,2.3000000000000003,81.54,1001,183,2.9000000000000004 +2008,10,31,4,30,14.600000000000001,0.55,0.113,0.65,0,0,0,4,11.600000000000001,0,0,0,0,103.84,0.15,2.2,82.17,1001,180,2.9000000000000004 +2008,10,31,5,30,15.200000000000001,0.54,0.113,0.65,0,0,0,3,11.9,0,0,0,0,92.93,0.15,2.2,80.76,1002,176,3.3000000000000003 +2008,10,31,6,30,16.400000000000002,0.56,0.115,0.65,47,307,87,8,12.5,59,9,7,61,82.45,0.15,2.1,77.48,1002,172,4 +2008,10,31,7,30,17.8,0.56,0.125,0.65,82,558,244,7,13.100000000000001,62,1,0,63,73.10000000000001,0.15,2,73.75,1003,171,4.800000000000001 +2008,10,31,8,30,18.8,0.5700000000000001,0.124,0.65,100,691,390,7,12.9,210,94,0,250,65.18,0.15,1.8,68.43,1003,170,5.4 +2008,10,31,9,30,19.700000000000003,0.5700000000000001,0.129,0.65,111,751,494,7,11.8,267,109,1,322,59.39,0.15,1.7000000000000002,60.39,1003,168,5.9 +2008,10,31,10,30,20.400000000000002,0.5700000000000001,0.131,0.65,117,775,545,6,11.100000000000001,266,62,1,300,56.44,0.15,1.7000000000000002,55.02,1003,165,6 +2008,10,31,11,30,20.700000000000003,0.55,0.14300000000000002,0.65,121,753,533,6,11.100000000000001,206,17,0,215,56.79,0.15,1.9000000000000001,54.25,1002,162,5.9 +2008,10,31,12,30,20.3,0.56,0.163,0.65,121,686,460,6,11.600000000000001,144,5,0,146,60.39,0.15,2.4000000000000004,57.28,1002,157,5.6000000000000005 +2008,10,31,13,30,19.700000000000003,0.47000000000000003,0.21,0.65,122,542,337,6,12.700000000000001,84,1,0,85,66.7,0.15,2.8000000000000003,64.07000000000001,1001,148,5.1000000000000005 +2008,10,31,14,30,19,0.36,0.273,0.65,105,309,185,6,13.9,22,0,0,22,74.98,0.15,3.1,72.47,1001,137,4.7 +2008,10,31,15,30,18.3,0.28,0.363,0.65,37,28,40,7,14.700000000000001,10,0,7,10,84.54,0.15,3.2,79.38,1000,129,4.3 +2008,10,31,16,30,17.7,0.25,0.47900000000000004,0.65,0,0,0,7,15,0,0,0,0,95.21000000000001,0.15,3.3000000000000003,84.36,1000,124,3.7 +2008,10,31,17,30,17.400000000000002,0.23,0.537,0.65,0,0,0,6,15.200000000000001,0,0,0,0,106.2,0.15,3.3000000000000003,86.82000000000001,1000,118,3.2 +2008,10,31,18,30,17.400000000000002,0.22,0.594,0.65,0,0,0,7,14.9,0,0,0,0,117.37,0.15,3.2,85.38,998,113,3.6 +2008,10,31,19,30,17.8,0.27,0.549,0.65,0,0,0,7,14.200000000000001,0,0,0,0,128.33,0.15,3.1,79.69,997,117,4.7 +2008,10,31,20,30,18.3,0.29,0.515,0.65,0,0,0,6,13.600000000000001,0,0,0,0,138.58,0.15,3.2,74.19,996,124,6.300000000000001 +2008,10,31,21,30,18.900000000000002,0.3,0.488,0.65,0,0,0,5,13.9,0,0,0,0,147.11,0.15,3.2,72.8,995,128,8.6 +2008,10,31,22,30,19.400000000000002,0.26,0.43,0.65,0,0,0,0,14.8,0,0,0,0,152.09,0.15,3.2,74.61,993,134,10.200000000000001 +2008,10,31,23,30,19.5,0.22,0.444,0.65,0,0,0,1,16,0,0,0,0,151.49,0.15,3.3000000000000003,80.09,992,146,9.8 +2008,11,1,0,30,19.200000000000003,0.32,0.526,0.65,0,0,0,0,17.6,0,0,0,0,145.62,0.15,3.1,90.52,993,177,7.800000000000001 +2008,11,1,1,30,18.3,0.31,0.467,0.65,0,0,0,8,17.7,0,0,0,0,136.64000000000001,0.15,2.6,96.43,994,207,6 +2008,11,1,2,30,17.1,0.3,0.366,0.65,0,0,0,5,15.9,0,0,0,0,126.21000000000001,0.15,2.5,92.85000000000001,995,212,4.7 +2008,11,1,3,30,16.400000000000002,0.31,0.361,0.65,0,0,0,4,14.8,0,0,0,0,115.18,0.15,2.8000000000000003,90.51,995,206,4.1000000000000005 +2008,11,1,4,30,16.3,0.29,0.326,0.65,0,0,0,4,14.600000000000001,0,0,0,0,104.04,0.15,3,89.88,996,204,3.7 +2008,11,1,5,30,16.3,0.26,0.292,0.65,0,0,0,4,14.600000000000001,0,0,0,0,93.14,0.15,2.9000000000000004,89.72,997,207,3.5 +2008,11,1,6,30,16.7,0.27,0.277,0.65,56,101,69,3,14.600000000000001,5,0,7,5,82.68,0.15,2.7,87.54,998,212,3.5 +2008,11,1,7,30,17.5,0.25,0.275,0.65,116,340,214,3,14.9,35,0,0,35,73.35000000000001,0.15,2.6,84.53,999,217,3.9000000000000004 +2008,11,1,8,30,18.3,0.24,0.268,0.65,150,491,354,2,14.700000000000001,131,1,0,132,65.46000000000001,0.15,2.4000000000000004,79.7,999,222,4.1000000000000005 +2008,11,1,9,30,19.1,0.62,0.105,0.65,100,762,485,0,14.4,100,762,0,485,59.69,0.15,2.4000000000000004,74.09,1000,223,4.2 +2008,11,1,10,30,19.8,0.7000000000000001,0.095,0.65,100,803,540,3,14,77,0,0,77,56.75,0.15,2.3000000000000003,69.07000000000001,1001,222,4 +2008,11,1,11,30,20.1,0.75,0.081,0.65,93,818,537,1,13.8,93,818,0,537,57.11,0.15,2.3000000000000003,67.11,1001,220,3.6 +2008,11,1,12,30,20.3,0.84,0.074,0.65,85,799,476,0,13.8,85,799,0,476,60.7,0.15,2.3000000000000003,66.2,1002,213,3.2 +2008,11,1,13,30,20.1,0.85,0.07100000000000001,0.65,75,737,364,0,13.8,75,737,0,364,66.98,0.15,2.3000000000000003,66.88,1002,206,3.2 +2008,11,1,14,30,19.400000000000002,0.8300000000000001,0.07100000000000001,0.65,60,604,214,0,13.700000000000001,60,604,0,214,75.23,0.15,2.3000000000000003,69.69,1003,201,2.9000000000000004 +2008,11,1,15,30,18,0.88,0.082,0.65,32,282,58,0,14,32,282,0,58,84.77,0.15,2.3000000000000003,77.37,1003,198,2.1 +2008,11,1,16,30,16.7,0.87,0.084,0.65,0,0,0,0,14.5,0,0,0,0,95.42,0.15,2.3000000000000003,86.61,1004,191,1.4000000000000001 +2008,11,1,17,30,16,0.87,0.078,0.65,0,0,0,0,14.4,0,0,0,0,106.41,0.15,2.3000000000000003,90.04,1005,178,1.3 +2008,11,1,18,30,15.4,0.91,0.073,0.65,0,0,0,0,14.100000000000001,0,0,0,0,117.57000000000001,0.15,2.2,92.2,1005,159,1.2000000000000002 +2008,11,1,19,30,14.9,0.93,0.069,0.65,0,0,0,0,14.100000000000001,0,0,0,0,128.55,0.15,2.2,94.86,1006,144,1.4000000000000001 +2008,11,1,20,30,14.5,0.96,0.066,0.65,0,0,0,0,14.100000000000001,0,0,0,0,138.82,0.15,2.1,97.32000000000001,1006,134,1.6 +2008,11,1,21,30,14.3,0.97,0.067,0.65,0,0,0,0,14.100000000000001,0,0,0,0,147.39000000000001,0.15,2.1,98.91,1006,129,1.7000000000000002 +2008,11,1,22,30,14.3,0.97,0.068,0.65,0,0,0,0,14.200000000000001,0,0,0,0,152.4,0.15,2.1,99.28,1007,131,1.8 +2008,11,1,23,30,14.600000000000001,0.97,0.067,0.65,0,0,0,0,14.3,0,0,0,0,151.8,0.15,2.1,97.85000000000001,1007,137,1.9000000000000001 +2008,11,2,0,30,15.100000000000001,1,0.073,0.65,0,0,0,0,14.600000000000001,0,0,0,0,145.89000000000001,0.14,2,96.61,1007,139,1.9000000000000001 +2008,11,2,1,30,15.200000000000001,1.04,0.076,0.65,0,0,0,0,14.8,0,0,0,0,136.87,0.14,1.9000000000000001,97.31,1006,135,1.9000000000000001 +2008,11,2,2,30,15.100000000000001,1.08,0.07,0.65,0,0,0,0,14.8,0,0,0,0,126.41,0.14,1.8,98.25,1006,129,2 +2008,11,2,3,30,14.8,1.12,0.07200000000000001,0.65,0,0,0,0,14.700000000000001,0,0,0,0,115.38,0.14,1.7000000000000002,99.41,1006,125,2.1 +2008,11,2,4,30,14.200000000000001,1.1300000000000001,0.07100000000000001,0.65,0,0,0,1,14.200000000000001,0,0,0,0,104.24000000000001,0.14,1.6,100,1007,120,2.2 +2008,11,2,5,30,14.100000000000001,1.09,0.069,0.65,0,0,0,0,13.9,0,0,0,0,93.35000000000001,0.14,1.6,98.91,1007,115,2.3000000000000003 +2008,11,2,6,30,15.700000000000001,0.9400000000000001,0.078,0.65,39,388,87,0,13.8,39,388,0,87,82.9,0.14,1.6,88.68,1008,113,3.2 +2008,11,2,7,30,17.900000000000002,0.84,0.08600000000000001,0.65,68,630,246,0,14.4,68,630,0,246,73.60000000000001,0.14,1.6,79.75,1008,119,4.3 +2008,11,2,8,30,19.700000000000003,0.74,0.094,0.65,86,736,388,7,14,194,278,0,309,65.73,0.14,1.6,69.60000000000001,1008,131,4.9 +2008,11,2,9,30,21.200000000000003,0.72,0.092,0.65,94,798,493,2,12.700000000000001,280,201,0,381,59.99,0.14,1.6,58.17,1008,138,5.2 +2008,11,2,10,30,22.200000000000003,0.7000000000000001,0.092,0.65,97,822,544,0,12.100000000000001,97,822,0,544,57.07,0.14,1.6,52.76,1007,144,5.2 +2008,11,2,11,30,22.700000000000003,0.6900000000000001,0.092,0.65,97,816,536,0,12.200000000000001,97,816,0,536,57.42,0.14,1.7000000000000002,51.5,1007,149,5.4 +2008,11,2,12,30,22.700000000000003,0.68,0.092,0.65,92,788,474,0,12.5,92,788,0,474,60.99,0.14,1.6,52.4,1007,151,5.5 +2008,11,2,13,30,22.3,0.6900000000000001,0.08600000000000001,0.65,80,727,361,0,12.600000000000001,80,727,0,361,67.25,0.14,1.6,54.050000000000004,1006,149,5.4 +2008,11,2,14,30,21.1,0.71,0.078,0.65,61,603,213,0,12.5,61,603,0,213,75.48,0.14,1.5,58.11,1006,147,4.6000000000000005 +2008,11,2,15,30,18.8,0.54,0.097,0.65,33,237,53,0,13,33,237,0,53,84.99,0.14,1.4000000000000001,69.03,1006,145,3.3000000000000003 +2008,11,2,16,30,16.8,0.51,0.105,0.65,0,0,0,0,13.100000000000001,0,0,0,0,95.64,0.14,1.3,78.86,1006,141,2.6 +2008,11,2,17,30,15.9,0.46,0.116,0.65,0,0,0,0,13,0,0,0,0,106.62,0.14,1.3,83.04,1006,135,2.5 +2008,11,2,18,30,15.3,0.41000000000000003,0.13,0.65,0,0,0,0,12.9,0,0,0,0,117.78,0.14,1.4000000000000001,85.41,1007,129,2.6 +2008,11,2,19,30,15,0.38,0.14300000000000002,0.65,0,0,0,0,12.600000000000001,0,0,0,0,128.76,0.14,1.5,85.35000000000001,1007,123,2.6 +2008,11,2,20,30,14.700000000000001,0.35000000000000003,0.154,0.65,0,0,0,0,12.100000000000001,0,0,0,0,139.05,0.14,1.6,84.4,1007,119,2.7 +2008,11,2,21,30,14.600000000000001,0.32,0.171,0.65,0,0,0,0,11.4,0,0,0,0,147.66,0.14,1.7000000000000002,81.23,1007,119,2.8000000000000003 +2008,11,2,22,30,14.5,0.31,0.19,0.65,0,0,0,1,10.600000000000001,0,0,0,0,152.71,0.14,1.8,77.62,1006,121,2.7 +2008,11,2,23,30,14.5,0.29,0.20800000000000002,0.65,0,0,0,0,9.9,0,0,0,0,152.1,0.14,1.8,74.03,1006,124,2.7 +2008,11,3,0,30,14.5,0.28,0.223,0.65,0,0,0,0,9.4,0,0,0,0,146.15,0.14,1.9000000000000001,71.44,1006,123,2.6 +2008,11,3,1,30,14.5,0.27,0.234,0.65,0,0,0,0,8.8,0,0,0,0,137.1,0.14,1.9000000000000001,68.44,1005,120,2.5 +2008,11,3,2,30,14.5,0.25,0.246,0.65,0,0,0,0,8.1,0,0,0,0,126.62,0.14,2,65.64,1005,116,2.5 +2008,11,3,3,30,14.5,0.22,0.26,0.65,0,0,0,0,7.800000000000001,0,0,0,0,115.58,0.14,1.9000000000000001,63.99,1005,113,2.5 +2008,11,3,4,30,14.5,0.2,0.276,0.65,0,0,0,0,7.7,0,0,0,0,104.45,0.14,1.9000000000000001,63.480000000000004,1005,109,2.6 +2008,11,3,5,30,14.9,0.18,0.292,0.65,0,0,0,0,7.6000000000000005,0,0,0,0,93.56,0.14,1.8,61.76,1005,106,2.8000000000000003 +2008,11,3,6,30,16.8,0.24,0.215,0.65,51,136,68,0,8,51,136,0,68,83.13,0.14,1.8,56.14,1005,107,3.3000000000000003 +2008,11,3,7,30,19.6,0.22,0.228,0.65,106,387,214,0,8.9,106,387,0,214,73.85000000000001,0.14,1.8,50.08,1005,114,4 +2008,11,3,8,30,21.8,0.22,0.23500000000000001,0.65,137,527,351,0,10.100000000000001,137,527,0,351,66.01,0.14,1.8,47.29,1005,133,4.9 +2008,11,3,9,30,23.1,0.27,0.203,0.65,141,639,458,0,13.4,141,639,0,458,60.29,0.14,1.9000000000000001,54.25,1005,151,5.800000000000001 +2008,11,3,10,30,23.400000000000002,0.24,0.23500000000000001,0.65,159,633,501,1,15.200000000000001,159,633,0,501,57.38,0.14,2,59.88,1005,160,6 +2008,11,3,11,30,23.400000000000002,0.23,0.26,0.65,168,604,491,0,15.9,168,604,0,491,57.730000000000004,0.14,2,62.97,1005,165,5.9 +2008,11,3,12,30,23.200000000000003,0.3,0.196,0.65,135,635,441,0,16.2,135,635,0,441,61.28,0.14,2,64.6,1005,167,5.4 +2008,11,3,13,30,22.700000000000003,0.28,0.196,0.65,119,546,328,0,15.9,119,546,0,328,67.52,0.14,2.1,65.51,1005,167,4.9 +2008,11,3,14,30,21.6,0.24,0.2,0.65,92,373,184,3,15.600000000000001,143,43,0,154,75.72,0.14,2.1,68.87,1005,162,3.7 +2008,11,3,15,30,19.400000000000002,0.2,0.219,0.65,35,62,40,3,16.2,22,0,7,22,85.21000000000001,0.14,2.2,81.99,1005,150,2.3000000000000003 +2008,11,3,16,30,17.8,0.21,0.22,0.65,0,0,0,0,16.6,0,0,0,0,95.84,0.14,2.4000000000000004,92.41,1005,139,1.8 +2008,11,3,17,30,17.8,0.23,0.234,0.65,0,0,0,8,16.8,0,0,0,0,106.82000000000001,0.14,2.6,93.98,1006,137,2.3000000000000003 +2008,11,3,18,30,18.2,0.27,0.23600000000000002,0.65,0,0,0,7,17.2,0,0,0,0,117.98,0.14,2.7,93.74,1006,141,3.3000000000000003 +2008,11,3,19,30,18.1,0.29,0.224,0.65,0,0,0,8,17.7,0,0,0,0,128.97,0.14,2.7,97.69,1006,142,3.5 +2008,11,3,20,30,17.900000000000002,0.31,0.228,0.65,0,0,0,8,17.8,0,0,0,0,139.28,0.14,2.8000000000000003,99.23,1006,139,2.9000000000000004 +2008,11,3,21,30,17.900000000000002,0.33,0.256,0.65,0,0,0,6,17.5,0,0,0,0,147.93,0.14,3,97.38,1007,136,2.9000000000000004 +2008,11,3,22,30,18,0.33,0.295,0.65,0,0,0,5,17.1,0,0,0,0,153.01,0.14,3.1,94.31,1007,136,2.9000000000000004 +2008,11,3,23,30,17.8,0.3,0.367,0.65,0,0,0,4,16.6,0,0,0,0,152.4,0.14,3.2,92.69,1007,129,2.9000000000000004 +2008,11,4,0,30,17.5,0.25,0.442,0.65,0,0,0,3,16.1,0,0,0,0,146.41,0.14,3.1,91.29,1006,116,2.9000000000000004 +2008,11,4,1,30,17.2,0.22,0.491,0.65,0,0,0,4,15.4,0,0,0,0,137.32,0.14,3.1,89.15,1006,111,2.9000000000000004 +2008,11,4,2,30,17,0.2,0.512,0.65,0,0,0,7,14.700000000000001,0,0,0,0,126.83,0.14,3.1,86.45,1006,112,2.7 +2008,11,4,3,30,16.900000000000002,0.19,0.542,0.65,0,0,0,6,14.4,0,0,0,0,115.78,0.14,3.2,84.95,1006,108,2.4000000000000004 +2008,11,4,4,30,16.900000000000002,0.19,0.537,0.65,0,0,0,6,14.4,0,0,0,0,104.65,0.14,3.1,85,1005,98,2.2 +2008,11,4,5,30,17,0.18,0.47300000000000003,0.65,0,0,0,4,14.3,0,0,0,0,93.77,0.14,3,84.23,1005,91,2.1 +2008,11,4,6,30,18.1,0.17,0.437,0.65,45,25,48,6,14.3,7,0,7,7,83.35000000000001,0.14,3,78.27,1004,95,2.1 +2008,11,4,7,30,19.5,0.2,0.463,0.65,132,179,181,7,15.5,4,0,0,4,74.10000000000001,0.14,3.1,77.8,1004,106,2 +2008,11,4,8,30,20.1,0.22,0.47200000000000003,0.65,188,307,312,7,16.1,232,69,0,260,66.28,0.14,3.1,77.84,1004,113,1.9000000000000001 +2008,11,4,9,30,20.400000000000002,0.24,0.428,0.65,207,417,412,7,16.7,95,1,0,96,60.58,0.14,3.1,79.15,1003,116,2.2 +2008,11,4,10,30,20.5,0.25,0.383,0.65,206,486,466,6,16.5,94,0,0,94,57.68,0.14,3,78.03,1003,125,3.8000000000000003 +2008,11,4,11,30,20.5,0.3,0.397,0.65,206,473,457,6,15.600000000000001,90,0,0,91,58.03,0.14,3.2,73.29,1003,140,6.4 +2008,11,4,12,30,20.400000000000002,0.28,0.47500000000000003,0.65,211,374,389,6,15.600000000000001,130,2,0,131,61.57,0.14,3.3000000000000003,73.75,1003,146,7.300000000000001 +2008,11,4,13,30,20.1,0.22,0.506,0.65,184,263,283,9,16.6,49,0,0,49,67.78,0.14,3.2,80.22,1002,137,6.300000000000001 +2008,11,4,14,30,19.700000000000003,0.21,0.458,0.65,118,147,154,9,16.6,4,0,0,4,75.96000000000001,0.14,3.2,82.16,1001,130,5.9 +2008,11,4,15,30,19.5,0.25,0.393,0.65,27,12,28,9,16.7,6,0,7,6,85.42,0.14,3.2,83.68,1000,134,6.4 +2008,11,4,16,30,19.5,0.32,0.343,0.65,0,0,0,7,17.2,0,0,0,0,96.04,0.14,3.4000000000000004,86.38,1001,142,6.7 +2008,11,4,17,30,19.5,0.35000000000000003,0.366,0.65,0,0,0,4,17.900000000000002,0,0,0,0,107.01,0.14,3.6,90.66,1001,156,6.300000000000001 +2008,11,4,18,30,19.3,0.41000000000000003,0.397,0.65,0,0,0,8,18.5,0,0,0,0,118.17,0.14,3.3000000000000003,95.26,1002,175,5.2 +2008,11,4,19,30,18.6,0.37,0.28,0.65,0,0,0,3,18.1,0,0,0,0,129.17000000000002,0.14,2.8000000000000003,96.65,1003,184,4.1000000000000005 +2008,11,4,20,30,17.6,0.34,0.186,0.65,0,0,0,4,17,0,0,0,0,139.51,0.14,2.3000000000000003,96.44,1004,180,3.2 +2008,11,4,21,30,16.8,0.33,0.156,0.65,0,0,0,0,16.2,0,0,0,0,148.19,0.14,2,96.23,1005,174,2.7 +2008,11,4,22,30,16.3,0.31,0.136,0.65,0,0,0,0,15.700000000000001,0,0,0,0,153.32,0.14,1.9000000000000001,96.10000000000001,1005,169,2.4000000000000004 +2008,11,4,23,30,15.9,0.29,0.126,0.65,0,0,0,0,15.3,0,0,0,0,152.70000000000002,0.14,1.9000000000000001,95.96000000000001,1005,165,2.2 +2008,11,5,0,30,15.600000000000001,0.28,0.124,0.65,0,0,0,0,14.8,0,0,0,0,146.67000000000002,0.14,1.9000000000000001,94.79,1005,164,2 +2008,11,5,1,30,15.3,0.28,0.124,0.65,0,0,0,0,14.3,0,0,0,0,137.55,0.14,1.9000000000000001,93.53,1005,165,1.8 +2008,11,5,2,30,15,0.29,0.11900000000000001,0.65,0,0,0,0,13.700000000000001,0,0,0,0,127.03,0.14,1.9000000000000001,92.21000000000001,1005,164,1.6 +2008,11,5,3,30,14.8,0.3,0.11800000000000001,0.65,0,0,0,0,13.3,0,0,0,0,115.97,0.14,1.9000000000000001,90.97,1005,161,1.4000000000000001 +2008,11,5,4,30,14.700000000000001,0.32,0.116,0.65,0,0,0,0,13.100000000000001,0,0,0,0,104.85000000000001,0.14,1.9000000000000001,89.99,1006,155,1.3 +2008,11,5,5,30,14.8,0.34,0.114,0.65,0,0,0,3,12.8,0,0,0,0,93.98,0.14,2,88.09,1006,142,1.2000000000000002 +2008,11,5,6,30,16.1,0.35000000000000003,0.122,0.65,42,236,68,0,13.100000000000001,42,236,0,68,83.57000000000001,0.14,2,82.67,1007,127,1.2000000000000002 +2008,11,5,7,30,18.1,0.37,0.12,0.65,77,530,220,0,15,77,530,0,220,74.34,0.14,2,81.97,1007,136,1.3 +2008,11,5,8,30,19.3,0.39,0.114,0.65,93,675,362,3,15,228,39,0,244,66.55,0.14,2,76.25,1007,167,1.4000000000000001 +2008,11,5,9,30,20.1,0.4,0.107,0.65,100,754,467,0,14.3,100,754,0,467,60.870000000000005,0.14,1.9000000000000001,69.11,1007,187,1.7000000000000002 +2008,11,5,10,30,20.700000000000003,0.43,0.099,0.65,100,792,520,0,13.200000000000001,100,792,0,520,57.99,0.14,1.9000000000000001,62.050000000000004,1007,198,2 +2008,11,5,11,30,20.900000000000002,0.46,0.093,0.65,97,800,517,0,12.200000000000001,97,800,0,517,58.33,0.14,1.8,57.67,1006,205,2 +2008,11,5,12,30,21,0.47000000000000003,0.096,0.65,93,764,454,0,11.600000000000001,93,764,0,454,61.85,0.14,1.8,54.82,1006,212,1.9000000000000001 +2008,11,5,13,30,20.700000000000003,0.49,0.094,0.65,82,696,343,0,11.100000000000001,82,696,0,343,68.04,0.14,1.7000000000000002,54.03,1005,221,1.7000000000000002 +2008,11,5,14,30,19.6,0.5,0.092,0.65,64,548,195,0,10.8,64,548,0,195,76.19,0.14,1.7000000000000002,56.9,1005,239,1.3 +2008,11,5,15,30,17.7,0.49,0.10200000000000001,0.65,29,189,44,0,13.100000000000001,29,189,0,44,85.63,0.14,1.7000000000000002,74.41,1005,259,1.1 +2008,11,5,16,30,16.400000000000002,0.51,0.1,0.65,0,0,0,0,12.3,0,0,0,0,96.24000000000001,0.14,1.7000000000000002,76.82000000000001,1005,276,1.2000000000000002 +2008,11,5,17,30,16.1,0.52,0.101,0.65,0,0,0,0,12.200000000000001,0,0,0,0,107.2,0.14,1.7000000000000002,77.69,1006,299,1.2000000000000002 +2008,11,5,18,30,15.700000000000001,0.54,0.10200000000000001,0.65,0,0,0,0,12.3,0,0,0,0,118.35000000000001,0.14,1.8,79.97,1006,321,1.2000000000000002 +2008,11,5,19,30,15.200000000000001,0.56,0.101,0.65,0,0,0,0,12.4,0,0,0,0,129.37,0.14,1.8,83.17,1006,339,1.2000000000000002 +2008,11,5,20,30,14.8,0.58,0.1,0.65,0,0,0,0,12.4,0,0,0,0,139.72,0.14,1.8,85.58,1006,352,1.2000000000000002 +2008,11,5,21,30,14.5,0.6,0.099,0.65,0,0,0,0,12.200000000000001,0,0,0,0,148.45000000000002,0.14,1.8,86.31,1006,184,1.1 +2008,11,5,22,30,14.200000000000001,0.62,0.099,0.65,0,0,0,0,12,0,0,0,0,153.61,0.14,1.8,86.38,1006,15,0.9 +2008,11,5,23,30,13.9,0.65,0.098,0.65,0,0,0,0,11.700000000000001,0,0,0,0,152.99,0.14,1.8,86.65,1006,28,0.8 +2008,11,6,0,30,13.700000000000001,0.68,0.097,0.65,0,0,0,0,11.5,0,0,0,0,146.93,0.14,1.8,86.39,1005,46,0.7000000000000001 +2008,11,6,1,30,13.4,0.7000000000000001,0.095,0.65,0,0,0,0,11.3,0,0,0,0,137.77,0.14,1.9000000000000001,87.02,1005,64,0.7000000000000001 +2008,11,6,2,30,13.200000000000001,0.73,0.093,0.65,0,0,0,0,11.100000000000001,0,0,0,0,127.23,0.14,1.9000000000000001,87.31,1004,75,0.8 +2008,11,6,3,30,13,0.75,0.09,0.65,0,0,0,0,11.100000000000001,0,0,0,0,116.17,0.14,1.9000000000000001,88.4,1004,75,0.9 +2008,11,6,4,30,12.8,0.78,0.088,0.65,0,0,0,0,11.200000000000001,0,0,0,0,105.05,0.14,1.9000000000000001,89.91,1004,72,1 +2008,11,6,5,30,12.600000000000001,0.8,0.08700000000000001,0.65,0,0,0,1,11.200000000000001,0,0,0,0,94.19,0.14,1.9000000000000001,91.31,1004,71,1.1 +2008,11,6,6,30,13.8,0.8200000000000001,0.08700000000000001,0.65,36,319,70,4,11.3,14,0,7,14,83.79,0.14,2,84.76,1004,73,1.3 +2008,11,6,7,30,16.1,0.84,0.085,0.65,64,601,224,8,12.100000000000001,112,20,0,117,74.59,0.14,2,77.03,1004,71,1.1 +2008,11,6,8,30,18.1,0.88,0.082,0.65,78,732,366,8,11.8,179,292,0,294,66.82000000000001,0.14,2,66.75,1004,145,0.6000000000000001 +2008,11,6,9,30,19.200000000000003,0.77,0.107,0.65,97,760,463,6,10.600000000000001,220,55,0,247,61.160000000000004,0.14,2,57.61,1004,224,0.7000000000000001 +2008,11,6,10,30,19.5,0.77,0.117,0.65,105,775,512,0,9.700000000000001,105,775,0,512,58.28,0.14,2,52.980000000000004,1004,224,1.1 +2008,11,6,11,30,19.400000000000002,0.79,0.12,0.65,105,772,507,0,9.3,105,772,0,507,58.63,0.14,1.9000000000000001,51.980000000000004,1004,217,1.3 +2008,11,6,12,30,19.3,0.8300000000000001,0.106,0.65,95,756,448,0,9.1,95,756,0,448,62.13,0.14,1.9000000000000001,51.61,1003,213,1.4000000000000001 +2008,11,6,13,30,19,0.87,0.095,0.65,80,698,338,5,8.9,56,0,0,56,68.29,0.14,1.9000000000000001,51.92,1003,217,1.4000000000000001 +2008,11,6,14,30,18.1,0.9,0.09,0.65,60,558,191,6,8.9,3,0,0,3,76.42,0.14,1.9000000000000001,55.02,1003,224,1.1 +2008,11,6,15,30,16.6,0.93,0.088,0.65,26,229,43,7,11.3,15,0,7,15,85.83,0.14,1.9000000000000001,70.68,1003,234,0.9 +2008,11,6,16,30,15.700000000000001,0.9500000000000001,0.084,0.65,0,0,0,3,10.4,0,0,0,0,96.43,0.14,1.9000000000000001,70.53,1003,238,0.9 +2008,11,6,17,30,15.5,0.98,0.082,0.65,0,0,0,7,10.3,0,0,0,0,107.38,0.14,1.9000000000000001,71.04,1003,233,0.8 +2008,11,6,18,30,15.3,1.01,0.081,0.65,0,0,0,7,10.5,0,0,0,0,118.53,0.14,2,72.85000000000001,1004,211,0.7000000000000001 +2008,11,6,19,30,14.9,1.03,0.082,0.65,0,0,0,7,10.700000000000001,0,0,0,0,129.56,0.14,2,76.15,1004,183,0.8 +2008,11,6,20,30,14.4,1.06,0.082,0.65,0,0,0,6,11.100000000000001,0,0,0,0,139.94,0.14,2.1,80.41,1004,162,0.9 +2008,11,6,21,30,13.9,1.09,0.081,0.65,0,0,0,7,11.200000000000001,0,0,0,0,148.69,0.14,2.1,83.88,1004,147,1 +2008,11,6,22,30,13.3,1.11,0.08,0.65,0,0,0,8,11.200000000000001,0,0,0,0,153.9,0.14,2.1,87.12,1004,134,1.1 +2008,11,6,23,30,12.9,1.12,0.08,0.65,0,0,0,8,11.200000000000001,0,0,0,0,153.28,0.14,2.1,89.19,1003,126,1.3 +2008,11,7,0,30,12.600000000000001,1.1300000000000001,0.078,0.65,0,0,0,7,11.100000000000001,0,0,0,0,147.18,0.14,2.1,90.73,1003,121,1.4000000000000001 +2008,11,7,1,30,12.4,1.1400000000000001,0.078,0.65,0,0,0,6,11.100000000000001,0,0,0,0,137.99,0.14,2.1,91.79,1003,120,1.5 +2008,11,7,2,30,12.200000000000001,1.1500000000000001,0.076,0.65,0,0,0,7,11.100000000000001,0,0,0,0,127.44,0.14,2.1,92.75,1003,121,1.5 +2008,11,7,3,30,12,1.16,0.075,0.65,0,0,0,7,11,0,0,0,0,116.37,0.14,2.1,93.68,1003,123,1.4000000000000001 +2008,11,7,4,30,11.8,1.17,0.074,0.65,0,0,0,4,10.9,0,0,0,0,105.25,0.14,2.1,94.31,1003,122,1.4000000000000001 +2008,11,7,5,30,11.700000000000001,1.18,0.073,0.65,0,0,0,3,10.700000000000001,0,0,0,0,94.4,0.14,2.1,93.76,1003,118,1.3 +2008,11,7,6,30,12.8,1.19,0.073,0.65,33,351,69,3,10.600000000000001,15,0,7,15,84.01,0.14,2.1,86.68,1003,112,1.6 +2008,11,7,7,30,14.4,1.21,0.07100000000000001,0.65,59,626,222,8,11.200000000000001,132,102,0,158,74.83,0.14,2.1,81.29,1004,113,1.8 +2008,11,7,8,30,15.600000000000001,1.24,0.07,0.65,72,749,364,0,11.5,72,749,0,364,67.08,0.14,2.1,76.38,1004,133,1.7000000000000002 +2008,11,7,9,30,16.6,1.11,0.081,0.65,85,793,463,8,11.600000000000001,200,370,0,377,61.44,0.14,2.1,72.32000000000001,1004,160,1.5 +2008,11,7,10,30,17.2,1.12,0.078,0.65,87,821,515,7,11,225,343,0,404,58.58,0.14,2.1,67.14,1004,185,1.5 +2008,11,7,11,30,17.5,1.1400000000000001,0.075,0.65,85,822,510,7,10.600000000000001,225,226,0,341,58.92,0.14,2.1,64.02,1004,208,1.6 +2008,11,7,12,30,17.3,1.02,0.089,0.65,87,770,444,7,10.3,221,206,0,317,62.4,0.14,2.2,63.65,1004,221,1.7000000000000002 +2008,11,7,13,30,16.900000000000002,1.02,0.093,0.65,78,692,332,7,10.3,180,92,0,214,68.53,0.14,2.2,65.12,1004,230,1.7000000000000002 +2008,11,7,14,30,16.1,1.04,0.093,0.65,60,545,186,7,10.5,99,15,7,103,76.64,0.14,2.2,69.48,1005,241,1.2000000000000002 +2008,11,7,15,30,15,1.07,0.092,0.65,26,216,41,3,11.8,18,0,7,18,86.02,0.14,2.2,81.45,1005,252,0.9 +2008,11,7,16,30,14.4,1.11,0.085,0.65,0,0,0,0,11,0,0,0,0,96.62,0.14,2.1,79.91,1005,259,0.9 +2008,11,7,17,30,14.200000000000001,1.1500000000000001,0.081,0.65,0,0,0,0,10.600000000000001,0,0,0,0,107.55,0.14,2.1,79.2,1006,266,0.9 +2008,11,7,18,30,14.100000000000001,1.18,0.079,0.65,0,0,0,3,10.5,0,0,0,0,118.71000000000001,0.14,2.1,78.98,1006,268,0.8 +2008,11,7,19,30,14,1.2,0.078,0.65,0,0,0,4,10.4,0,0,0,0,129.74,0.14,2.1,79.08,1007,264,0.7000000000000001 +2008,11,7,20,30,13.700000000000001,1.19,0.077,0.65,0,0,0,3,10.4,0,0,0,0,140.14000000000001,0.14,2.1,80.61,1007,250,0.6000000000000001 +2008,11,7,21,30,13.5,1.16,0.077,0.65,0,0,0,0,10.4,0,0,0,0,148.94,0.14,2,81.7,1007,230,0.6000000000000001 +2008,11,7,22,30,13.200000000000001,1.1300000000000001,0.077,0.65,0,0,0,0,10.4,0,0,0,0,154.19,0.14,2,83.37,1008,216,0.6000000000000001 +2008,11,7,23,30,12.9,1.11,0.077,0.65,0,0,0,0,10.5,0,0,0,0,153.57,0.14,2,85.12,1008,208,0.5 +2008,11,8,0,30,12.8,1.11,0.078,0.65,0,0,0,0,10.5,0,0,0,0,147.43,0.14,2,85.77,1008,199,0.5 +2008,11,8,1,30,12.600000000000001,1.1300000000000001,0.08,0.65,0,0,0,0,10.5,0,0,0,0,138.21,0.14,1.9000000000000001,86.88,1008,188,0.4 +2008,11,8,2,30,12.4,1.1500000000000001,0.08,0.65,0,0,0,4,10.4,0,0,0,0,127.64,0.14,1.9000000000000001,87.81,1008,171,0.4 +2008,11,8,3,30,12.200000000000001,1.18,0.085,0.65,0,0,0,0,10.4,0,0,0,0,116.56,0.14,1.9000000000000001,88.64,1008,149,0.30000000000000004 +2008,11,8,4,30,11.9,1.2,0.089,0.65,0,0,0,0,10.200000000000001,0,0,0,0,105.45,0.14,1.9000000000000001,89.58,1009,131,0.4 +2008,11,8,5,30,11.9,1.21,0.089,0.65,0,0,0,3,10,0,0,0,0,94.61,0.14,1.9000000000000001,88.18,1010,126,0.5 +2008,11,8,6,30,12.8,1.28,0.09,0.65,32,321,65,3,10,8,0,7,8,84.23,0.14,1.9000000000000001,83.27,1010,128,0.7000000000000001 +2008,11,8,7,30,14.3,1.3,0.092,0.65,62,596,216,3,11.200000000000001,47,0,0,47,75.07000000000001,0.14,1.9000000000000001,81.85000000000001,1011,140,1 +2008,11,8,8,30,15.5,1.31,0.08600000000000001,0.65,76,731,358,0,11.600000000000001,76,731,0,358,67.34,0.14,1.9000000000000001,77.74,1011,164,1.2000000000000002 +2008,11,8,9,30,16.6,1.26,0.083,0.65,84,792,459,3,11.4,262,56,0,288,61.72,0.14,2,71.46000000000001,1011,186,1.6 +2008,11,8,10,30,17.400000000000002,1.29,0.08,0.65,86,821,511,4,10.4,28,0,0,28,58.870000000000005,0.14,2,63.28,1012,196,1.9000000000000001 +2008,11,8,11,30,17.7,1.29,0.077,0.65,85,822,506,4,9.600000000000001,21,0,0,21,59.2,0.14,2,59.25,1011,201,2.1 +2008,11,8,12,30,17.8,1.16,0.082,0.65,83,783,443,4,9.4,18,0,0,18,62.67,0.14,2,58.01,1011,203,2.2 +2008,11,8,13,30,17.5,1.16,0.079,0.65,73,716,332,2,9.4,144,4,0,145,68.78,0.14,2,58.97,1012,201,2.1 +2008,11,8,14,30,16.5,1.16,0.076,0.65,55,576,186,2,9.5,87,2,0,88,76.85000000000001,0.14,2,63.29,1012,200,1.5 +2008,11,8,15,30,15.200000000000001,1.1400000000000001,0.077,0.65,24,238,39,0,11.100000000000001,24,238,0,39,86.21000000000001,0.14,2,76.73,1012,200,1.1 +2008,11,8,16,30,14.4,1.1500000000000001,0.077,0.65,0,0,0,0,10,0,0,0,0,96.8,0.14,1.9000000000000001,74.82000000000001,1013,202,1.1 +2008,11,8,17,30,14.200000000000001,1.17,0.076,0.65,0,0,0,0,9.700000000000001,0,0,0,0,107.72,0.14,1.9000000000000001,74.47,1013,203,1 +2008,11,8,18,30,14.100000000000001,1.19,0.079,0.65,0,0,0,0,9.600000000000001,0,0,0,0,118.88,0.14,1.9000000000000001,74.5,1014,203,0.8 +2008,11,8,19,30,14.100000000000001,1.2,0.078,0.65,0,0,0,0,9.600000000000001,0,0,0,0,129.91,0.14,1.9000000000000001,74.47,1015,199,0.6000000000000001 +2008,11,8,20,30,14.100000000000001,1.21,0.075,0.65,0,0,0,0,9.600000000000001,0,0,0,0,140.34,0.14,1.9000000000000001,74.49,1015,181,0.5 +2008,11,8,21,30,13.8,1.21,0.075,0.65,0,0,0,3,9.600000000000001,0,0,0,0,149.17000000000002,0.14,1.8,75.78,1015,147,0.4 +2008,11,8,22,30,13.4,1.22,0.077,0.65,0,0,0,1,9.5,0,0,0,0,154.47,0.14,1.8,77.26,1015,115,0.5 +2008,11,8,23,30,12.9,1.23,0.079,0.65,0,0,0,3,9.4,0,0,0,0,153.85,0.14,1.8,79.25,1016,97,0.7000000000000001 +2008,11,9,0,30,12.3,1.24,0.079,0.65,0,0,0,1,9.200000000000001,0,0,0,0,147.68,0.14,1.9000000000000001,81.52,1016,89,0.9 +2008,11,9,1,30,11.9,1.27,0.076,0.65,0,0,0,1,9.1,0,0,0,0,138.43,0.14,1.9000000000000001,82.96000000000001,1016,84,1 +2008,11,9,2,30,11.3,1.29,0.075,0.65,0,0,0,4,8.9,0,0,0,0,127.84,0.14,2,85.43,1016,82,1.2000000000000002 +2008,11,9,3,30,10.9,1.3,0.075,0.65,0,0,0,3,8.9,0,0,0,0,116.76,0.14,2,87.24,1016,81,1.2000000000000002 +2008,11,9,4,30,10.5,1.31,0.075,0.65,0,0,0,1,8.8,0,0,0,0,105.64,0.14,2,89.37,1016,83,1.3 +2008,11,9,5,30,10.5,1.32,0.075,0.65,0,0,0,0,8.8,0,0,0,0,94.82000000000001,0.14,2,89.14,1017,85,1.3 +2008,11,9,6,30,12.100000000000001,1.3900000000000001,0.07200000000000001,0.65,30,343,64,0,8.9,30,343,0,64,84.45,0.14,2,80.63,1017,88,1.4000000000000001 +2008,11,9,7,30,14.600000000000001,1.3900000000000001,0.073,0.65,58,619,215,0,10.3,58,619,0,215,75.31,0.14,2,75.36,1018,90,1.5 +2008,11,9,8,30,16.7,1.3900000000000001,0.074,0.65,73,741,355,0,10.5,73,741,0,355,67.6,0.14,2,66.67,1018,223,0.9 +2008,11,9,9,30,18.3,1.29,0.079,0.65,83,795,456,0,9.9,83,795,0,456,62,0.14,2,57.910000000000004,1018,322,0.6000000000000001 +2008,11,9,10,30,19.1,1.31,0.08,0.65,87,819,507,0,9,87,819,0,507,59.15,0.14,2,52.050000000000004,1018,284,1.2000000000000002 +2008,11,9,11,30,19.400000000000002,1.33,0.082,0.65,87,817,502,0,8.9,87,817,0,502,59.480000000000004,0.14,1.9000000000000001,50.58,1018,280,1.6 +2008,11,9,12,30,19.400000000000002,1.28,0.08700000000000001,0.65,85,779,440,0,8.9,85,779,0,440,62.93,0.14,1.9000000000000001,50.61,1017,282,1.9000000000000001 +2008,11,9,13,30,19,1.31,0.089,0.65,76,704,328,0,8.9,76,704,0,328,69.01,0.14,1.9000000000000001,52.050000000000004,1017,287,2 +2008,11,9,14,30,17.7,1.32,0.09,0.65,58,555,182,0,9.200000000000001,58,555,0,182,77.06,0.14,1.9000000000000001,57.33,1017,291,1.6 +2008,11,9,15,30,15.600000000000001,1.3900000000000001,0.08600000000000001,0.65,23,231,38,0,11.3,23,231,0,38,86.39,0.14,1.8,75.68,1018,296,1.3 +2008,11,9,16,30,14.100000000000001,1.4000000000000001,0.085,0.65,0,0,0,0,10.3,0,0,0,0,96.97,0.14,1.8,77.83,1018,305,1.4000000000000001 +2008,11,9,17,30,13.4,1.4000000000000001,0.084,0.65,0,0,0,0,10,0,0,0,0,107.89,0.14,1.8,80,1018,318,1.5 +2008,11,9,18,30,12.9,1.3900000000000001,0.082,0.65,0,0,0,0,9.8,0,0,0,0,119.04,0.14,1.8,81.62,1018,333,1.5 +2008,11,9,19,30,12.5,1.3900000000000001,0.08,0.65,0,0,0,0,9.600000000000001,0,0,0,0,130.08,0.14,1.7000000000000002,82.58,1018,347,1.4000000000000001 +2008,11,9,20,30,12.100000000000001,1.3900000000000001,0.077,0.65,0,0,0,0,9.4,0,0,0,0,140.53,0.14,1.7000000000000002,83.41,1019,180,1.4000000000000001 +2008,11,9,21,30,11.8,1.3900000000000001,0.075,0.65,0,0,0,0,9.1,0,0,0,0,149.4,0.14,1.7000000000000002,83.48,1018,10,1.4000000000000001 +2008,11,9,22,30,11.600000000000001,1.3900000000000001,0.07200000000000001,0.65,0,0,0,0,8.8,0,0,0,0,154.74,0.14,1.6,82.77,1018,21,1.3 +2008,11,9,23,30,11.5,1.3900000000000001,0.068,0.65,0,0,0,0,8.4,0,0,0,0,154.13,0.14,1.6,81.46000000000001,1018,31,1.3 +2008,11,10,0,30,11.5,1.3800000000000001,0.065,0.65,0,0,0,0,8.1,0,0,0,0,147.92000000000002,0.14,1.6,79.63,1018,40,1.3 +2008,11,10,1,30,11.4,1.3800000000000001,0.063,0.65,0,0,0,0,7.800000000000001,0,0,0,0,138.64000000000001,0.14,1.5,78.4,1018,45,1.2000000000000002 +2008,11,10,2,30,11.200000000000001,1.37,0.061,0.65,0,0,0,0,7.5,0,0,0,0,128.04,0.14,1.5,77.83,1018,46,1.2000000000000002 +2008,11,10,3,30,11,1.37,0.061,0.65,0,0,0,0,7.300000000000001,0,0,0,0,116.95,0.14,1.5,77.74,1018,46,1.2000000000000002 +2008,11,10,4,30,10.8,1.36,0.061,0.65,0,0,0,0,7.1000000000000005,0,0,0,0,105.84,0.14,1.5,78.01,1018,49,1.2000000000000002 +2008,11,10,5,30,10.8,1.36,0.061,0.65,0,0,0,0,7,0,0,0,0,95.02,0.14,1.5,77.14,1018,56,1.2000000000000002 +2008,11,10,6,30,11.9,1.33,0.061,0.65,29,364,63,0,6.9,29,364,0,63,84.66,0.14,1.5,71.46000000000001,1018,63,1.1 +2008,11,10,7,30,14.200000000000001,1.33,0.061,0.65,55,647,216,0,8.3,55,647,0,216,75.55,0.14,1.5,67.85,1019,59,0.9 +2008,11,10,8,30,16.5,1.33,0.061,0.65,69,770,359,0,7.7,69,770,0,359,67.86,0.14,1.5,56.120000000000005,1019,183,0.8 +2008,11,10,9,30,18.1,1.35,0.06,0.65,76,831,462,0,7.7,76,831,0,462,62.28,0.14,1.5,50.79,1018,305,1.1 +2008,11,10,10,30,18.900000000000002,1.36,0.06,0.65,79,855,514,0,7.5,79,855,0,514,59.44,0.14,1.5,47.44,1018,293,1.5 +2008,11,10,11,30,19.3,1.37,0.061,0.65,79,852,508,0,7.300000000000001,79,852,0,508,59.75,0.14,1.5,45.660000000000004,1017,292,2 +2008,11,10,12,30,19.3,1.35,0.063,0.65,76,819,445,0,7.2,76,819,0,445,63.18,0.14,1.5,45.52,1017,295,2.3000000000000003 +2008,11,10,13,30,18.8,1.35,0.064,0.65,68,748,333,0,7.2,68,748,0,333,69.24,0.14,1.5,46.96,1016,300,2.3000000000000003 +2008,11,10,14,30,17.400000000000002,1.36,0.065,0.65,52,603,185,0,7.6000000000000005,52,603,0,185,77.27,0.14,1.5,52.410000000000004,1016,303,1.8 +2008,11,10,15,30,15.100000000000001,1.33,0.067,0.65,22,256,37,0,10.100000000000001,22,256,0,37,86.57000000000001,0.14,1.5,71.97,1016,308,1.5 +2008,11,10,16,30,13.600000000000001,1.34,0.067,0.65,0,0,0,0,8.9,0,0,0,0,97.14,0.14,1.5,73.10000000000001,1016,317,1.5 +2008,11,10,17,30,13,1.35,0.067,0.65,0,0,0,0,8.6,0,0,0,0,108.05,0.14,1.5,74.73,1016,332,1.5 +2008,11,10,18,30,12.4,1.36,0.067,0.65,0,0,0,0,8.4,0,0,0,0,119.19,0.14,1.5,76.69,1016,349,1.4000000000000001 +2008,11,10,19,30,11.9,1.36,0.066,0.65,0,0,0,0,8.200000000000001,0,0,0,0,130.25,0.14,1.5,77.89,1016,187,1.4000000000000001 +2008,11,10,20,30,11.5,1.36,0.065,0.65,0,0,0,0,7.800000000000001,0,0,0,0,140.71,0.14,1.5,78.22,1016,21,1.4000000000000001 +2008,11,10,21,30,11.200000000000001,1.35,0.065,0.65,0,0,0,0,7.5,0,0,0,0,149.63,0.14,1.5,77.85000000000001,1016,32,1.3 +2008,11,10,22,30,11.100000000000001,1.35,0.066,0.65,0,0,0,0,7.1000000000000005,0,0,0,0,155.01,0.14,1.6,76.55,1015,40,1.3 +2008,11,10,23,30,11,1.35,0.067,0.65,0,0,0,0,6.800000000000001,0,0,0,0,154.4,0.14,1.6,75.52,1015,48,1.3 +2008,11,11,0,30,11,1.35,0.069,0.65,0,0,0,0,6.6000000000000005,0,0,0,0,148.16,0.14,1.6,74.14,1014,54,1.2000000000000002 +2008,11,11,1,30,11,1.35,0.07,0.65,0,0,0,0,6.4,0,0,0,0,138.85,0.14,1.7000000000000002,73.15,1014,60,1.1 +2008,11,11,2,30,10.8,1.36,0.07200000000000001,0.65,0,0,0,0,6.2,0,0,0,0,128.23,0.14,1.7000000000000002,73.33,1014,65,1.1 +2008,11,11,3,30,10.5,1.36,0.073,0.65,0,0,0,0,6.1000000000000005,0,0,0,0,117.15,0.14,1.7000000000000002,74.22,1013,70,1.1 +2008,11,11,4,30,10.100000000000001,1.37,0.074,0.65,0,0,0,0,6.1000000000000005,0,0,0,0,106.04,0.14,1.7000000000000002,76.01,1013,75,1.2000000000000002 +2008,11,11,5,30,9.9,1.37,0.074,0.65,0,0,0,0,6.1000000000000005,0,0,0,0,95.23,0.14,1.7000000000000002,77.01,1013,80,1.2000000000000002 +2008,11,11,6,30,11,1.45,0.067,0.65,28,343,59,0,6.2,28,343,0,59,84.88,0.14,1.7000000000000002,72.48,1014,85,1.3 +2008,11,11,7,30,13.3,1.45,0.067,0.65,55,629,210,0,7.7,55,629,0,210,75.79,0.14,1.7000000000000002,68.74,1014,89,1.3 +2008,11,11,8,30,15.700000000000001,1.44,0.067,0.65,70,755,351,0,7.4,70,755,0,351,68.12,0.14,1.7000000000000002,57.72,1014,221,0.9 +2008,11,11,9,30,17.5,1.4000000000000001,0.07,0.65,79,812,453,0,7.5,79,812,0,453,62.550000000000004,0.14,1.7000000000000002,51.94,1013,327,0.7000000000000001 +2008,11,11,10,30,18.400000000000002,1.3900000000000001,0.069,0.65,82,838,504,0,7.4,82,838,0,504,59.71,0.14,1.7000000000000002,48.53,1013,295,1.2000000000000002 +2008,11,11,11,30,18.8,1.3900000000000001,0.069,0.65,81,835,499,0,7.300000000000001,81,835,0,499,60.02,0.14,1.7000000000000002,47.33,1012,284,1.7000000000000002 +2008,11,11,12,30,18.8,1.3900000000000001,0.07,0.65,78,803,437,0,7.5,78,803,0,437,63.43,0.14,1.7000000000000002,47.68,1011,279,2 +2008,11,11,13,30,18.400000000000002,1.3800000000000001,0.07100000000000001,0.65,69,731,325,0,7.6000000000000005,69,731,0,325,69.47,0.14,1.7000000000000002,49.49,1011,277,2.1 +2008,11,11,14,30,16.900000000000002,1.3800000000000001,0.073,0.65,53,580,179,0,8,53,580,0,179,77.47,0.14,1.7000000000000002,55.94,1011,275,1.7000000000000002 +2008,11,11,15,30,14.700000000000001,1.4000000000000001,0.07200000000000001,0.65,21,237,34,0,10.4,21,237,0,34,86.74,0.14,1.7000000000000002,75.47,1011,274,1.3 +2008,11,11,16,30,13.4,1.4000000000000001,0.074,0.65,0,0,0,0,9.600000000000001,0,0,0,0,97.3,0.14,1.8,77.78,1011,277,1.3 +2008,11,11,17,30,13.200000000000001,1.4000000000000001,0.076,0.65,0,0,0,0,9.600000000000001,0,0,0,0,108.2,0.14,1.8,78.8,1011,283,1.2000000000000002 +2008,11,11,18,30,13.3,1.4000000000000001,0.078,0.65,0,0,0,0,9.700000000000001,0,0,0,0,119.34,0.14,1.8,78.88,1011,295,0.9 +2008,11,11,19,30,13.200000000000001,1.3900000000000001,0.079,0.65,0,0,0,0,9.9,0,0,0,0,130.4,0.14,1.8,80.34,1011,159,0.5 +2008,11,11,20,30,12.8,1.3800000000000001,0.078,0.65,0,0,0,0,9.9,0,0,0,0,140.89000000000001,0.14,1.8,82.5,1011,52,0.4 +2008,11,11,21,30,12,1.37,0.078,0.65,0,0,0,1,9.700000000000001,0,0,0,0,149.84,0.14,1.8,85.69,1011,97,0.8 +2008,11,11,22,30,11.3,1.35,0.078,0.65,0,0,0,7,9.3,0,0,0,0,155.27,0.14,1.8,87.74,1011,108,1 +2008,11,11,23,30,10.8,1.33,0.078,0.65,0,0,0,5,9,0,0,0,0,154.67000000000002,0.14,1.8,88.71000000000001,1010,116,1.2000000000000002 +2008,11,12,0,30,10.4,1.32,0.074,0.65,0,0,0,3,8.8,0,0,0,0,148.4,0.14,1.8,89.77,1010,123,1.3 +2008,11,12,1,30,10.100000000000001,1.32,0.07,0.65,0,0,0,3,8.700000000000001,0,0,0,0,139.06,0.14,1.8,90.85000000000001,1010,128,1.4000000000000001 +2008,11,12,2,30,9.9,1.32,0.069,0.65,0,0,0,3,8.700000000000001,0,0,0,0,128.43,0.14,1.9000000000000001,92.06,1010,134,1.4000000000000001 +2008,11,12,3,30,10,1.3,0.07100000000000001,0.65,0,0,0,5,8.8,0,0,0,0,117.34,0.14,1.9000000000000001,92.34,1010,141,1.5 +2008,11,12,4,30,10.200000000000001,1.28,0.073,0.65,0,0,0,5,9.1,0,0,0,0,106.23,0.14,2,92.82000000000001,1010,146,1.5 +2008,11,12,5,30,10.5,1.26,0.077,0.65,0,0,0,8,9.4,0,0,0,0,95.43,0.14,2.1,92.68,1010,150,1.6 +2008,11,12,6,30,11.700000000000001,1.26,0.078,0.65,29,295,54,7,9.700000000000001,3,0,7,3,85.09,0.14,2.2,87.38,1010,155,1.7000000000000002 +2008,11,12,7,30,13.600000000000001,1.25,0.081,0.65,59,583,200,7,10.600000000000001,10,0,0,10,76.02,0.14,2.3000000000000003,82.07000000000001,1010,158,2.4000000000000004 +2008,11,12,8,30,14.9,1.23,0.085,0.65,76,707,337,7,11.200000000000001,7,0,0,7,68.37,0.14,2.4000000000000004,78.79,1010,159,3.2 +2008,11,12,9,30,15.700000000000001,0.81,0.193,0.65,126,640,418,7,11.9,74,0,0,74,62.81,0.14,2.4000000000000004,78.38,1009,161,3.5 +2008,11,12,10,30,16.2,0.86,0.18,0.65,126,685,469,7,12.3,76,1,0,76,59.980000000000004,0.14,2.5,77.59,1009,164,3.7 +2008,11,12,11,30,16.6,0.9,0.155,0.65,116,709,468,8,12.200000000000001,22,0,0,22,60.29,0.14,2.5,75.32000000000001,1008,166,3.9000000000000004 +2008,11,12,12,30,16.8,1,0.11900000000000001,0.65,97,716,414,4,12,124,0,0,124,63.68,0.14,2.5,73.56,1008,165,3.9000000000000004 +2008,11,12,13,30,16.6,1.06,0.10200000000000001,0.65,80,662,310,8,11.9,119,11,0,123,69.68,0.14,2.4000000000000004,73.63,1007,162,3.7 +2008,11,12,14,30,15.8,1.11,0.094,0.65,58,518,169,7,11.9,4,0,0,4,77.66,0.14,2.4000000000000004,77.45,1007,158,3 +2008,11,12,15,30,14.5,1.18,0.095,0.65,21,170,31,7,12.200000000000001,3,0,7,3,86.9,0.14,2.5,86.28,1007,153,2.4000000000000004 +2008,11,12,16,30,14,1.18,0.111,0.65,0,0,0,8,12.100000000000001,0,0,0,0,97.46000000000001,0.14,2.5,88.16,1007,148,2.6 +2008,11,12,17,30,14.100000000000001,1.18,0.125,0.65,0,0,0,7,12.3,0,0,0,0,108.35000000000001,0.14,2.5,89.16,1007,143,3.1 +2008,11,12,18,30,14.200000000000001,1.18,0.135,0.65,0,0,0,7,12.600000000000001,0,0,0,0,119.49000000000001,0.14,2.5,89.99,1007,141,3.5 +2008,11,12,19,30,14.3,1.17,0.131,0.65,0,0,0,7,12.700000000000001,0,0,0,0,130.55,0.14,2.5,89.85000000000001,1006,141,3.8000000000000003 +2008,11,12,20,30,14.5,1.1300000000000001,0.127,0.65,0,0,0,6,12.700000000000001,0,0,0,0,141.06,0.14,2.5,89.13,1006,142,3.9000000000000004 +2008,11,12,21,30,14.700000000000001,1.1,0.146,0.65,0,0,0,4,12.9,0,0,0,0,150.05,0.14,2.5,88.68,1005,146,4 +2008,11,12,22,30,14.9,1.05,0.151,0.65,0,0,0,8,13.100000000000001,0,0,0,0,155.53,0.14,2.5,88.78,1005,150,4 +2008,11,12,23,30,15.100000000000001,0.97,0.145,0.65,0,0,0,6,13.200000000000001,0,0,0,0,154.94,0.14,2.4000000000000004,88.62,1004,151,3.9000000000000004 +2008,11,13,0,30,15.100000000000001,0.9400000000000001,0.16,0.65,0,0,0,7,13.4,0,0,0,0,148.64000000000001,0.14,2.4000000000000004,89.55,1004,149,3.8000000000000003 +2008,11,13,1,30,15,0.88,0.145,0.65,0,0,0,6,13.4,0,0,0,0,139.27,0.14,2.3000000000000003,90.33,1003,147,3.8000000000000003 +2008,11,13,2,30,15.100000000000001,0.8,0.129,0.65,0,0,0,7,13.5,0,0,0,0,128.63,0.14,2.2,90.32000000000001,1003,146,3.9000000000000004 +2008,11,13,3,30,15.3,0.79,0.137,0.65,0,0,0,6,13.700000000000001,0,0,0,0,117.53,0.14,2.3000000000000003,90.29,1003,146,3.9000000000000004 +2008,11,13,4,30,15.5,0.79,0.138,0.65,0,0,0,7,13.9,0,0,0,0,106.43,0.14,2.3000000000000003,90.10000000000001,1002,146,4.1000000000000005 +2008,11,13,5,30,15.600000000000001,0.76,0.135,0.65,0,0,0,7,14,0,0,0,0,95.64,0.14,2.4000000000000004,90.19,1002,145,4.4 +2008,11,13,6,30,15.8,0.79,0.14400000000000002,0.65,33,163,46,3,14.200000000000001,21,0,7,21,85.3,0.14,2.4000000000000004,90.19,1002,146,4.6000000000000005 +2008,11,13,7,30,16.2,0.81,0.147,0.65,75,464,185,7,14.5,4,0,0,4,76.25,0.14,2.4000000000000004,89.46000000000001,1002,148,4.800000000000001 +2008,11,13,8,30,16.400000000000002,0.8300000000000001,0.14300000000000002,0.65,96,621,322,8,14.600000000000001,186,154,0,242,68.62,0.14,2.3000000000000003,89.09,1002,149,4.800000000000001 +2008,11,13,9,30,16.6,0.86,0.139,0.65,106,700,423,4,14.4,144,0,0,144,63.07,0.14,2.3000000000000003,86.7,1002,147,4.7 +2008,11,13,10,30,16.8,0.86,0.136,0.65,109,736,474,9,14.200000000000001,10,0,0,10,60.25,0.14,2.2,84.76,1002,144,4.800000000000001 +2008,11,13,11,30,17.1,0.84,0.132,0.65,107,737,469,9,14.200000000000001,11,0,0,11,60.550000000000004,0.14,2.2,82.88,1002,145,4.800000000000001 +2008,11,13,12,30,17.2,0.8,0.147,0.65,106,679,405,6,13.9,8,0,0,8,63.92,0.14,2.3000000000000003,80.81,1002,147,4.9 +2008,11,13,13,30,16.900000000000002,0.8,0.133,0.65,89,612,299,6,13.700000000000001,5,0,0,5,69.9,0.14,2.3000000000000003,81.24,1002,148,4.7 +2008,11,13,14,30,16.1,0.81,0.11900000000000001,0.65,63,465,161,8,13.5,88,13,0,91,77.85000000000001,0.14,2.3000000000000003,84.62,1002,147,4.2 +2008,11,13,15,30,15.100000000000001,0.87,0.107,0.65,21,130,28,7,13.4,12,0,7,12,87.06,0.14,2.3000000000000003,89.3,1002,144,3.5 +2008,11,13,16,30,14.5,0.92,0.1,0.65,0,0,0,4,13,0,0,0,0,97.61,0.14,2.3000000000000003,90.62,1002,141,3.2 +2008,11,13,17,30,14.3,0.9400000000000001,0.1,0.65,0,0,0,7,12.8,0,0,0,0,108.49000000000001,0.14,2.3000000000000003,90.76,1003,136,3 +2008,11,13,18,30,14,0.96,0.10200000000000001,0.65,0,0,0,8,12.600000000000001,0,0,0,0,119.62,0.14,2.3000000000000003,91.37,1003,131,2.9000000000000004 +2008,11,13,19,30,13.8,0.97,0.108,0.65,0,0,0,3,12.4,0,0,0,0,130.7,0.14,2.3000000000000003,91.26,1003,127,2.9000000000000004 +2008,11,13,20,30,13.5,1,0.114,0.65,0,0,0,3,12.100000000000001,0,0,0,0,141.23,0.14,2.3000000000000003,91.37,1003,124,2.7 +2008,11,13,21,30,13.3,1.02,0.116,0.65,0,0,0,4,11.8,0,0,0,0,150.26,0.14,2.3000000000000003,90.77,1003,120,2.5 +2008,11,13,22,30,12.9,1.05,0.11,0.65,0,0,0,8,11.5,0,0,0,0,155.78,0.14,2.2,91.32000000000001,1003,113,2.1 +2008,11,13,23,30,12.5,1.08,0.101,0.65,0,0,0,7,11.100000000000001,0,0,0,0,155.20000000000002,0.14,2.1,91.05,1003,102,1.8 +2008,11,14,0,30,12.200000000000001,1.12,0.095,0.65,0,0,0,8,10.5,0,0,0,0,148.87,0.14,2.1,89.65,1002,92,1.7000000000000002 +2008,11,14,1,30,12,1.1400000000000001,0.096,0.65,0,0,0,8,10.100000000000001,0,0,0,0,139.48,0.14,2.1,88.05,1002,88,1.7000000000000002 +2008,11,14,2,30,11.8,1.1400000000000001,0.10300000000000001,0.65,0,0,0,4,9.700000000000001,0,0,0,0,128.82,0.14,2.1,86.81,1002,87,1.7000000000000002 +2008,11,14,3,30,11.8,1.1500000000000001,0.107,0.65,0,0,0,3,9.5,0,0,0,0,117.72,0.14,2.2,85.53,1003,87,1.7000000000000002 +2008,11,14,4,30,11.700000000000001,1.16,0.106,0.65,0,0,0,7,9.200000000000001,0,0,0,0,106.62,0.14,2.2,84.86,1003,90,1.6 +2008,11,14,5,30,11.8,1.17,0.10300000000000001,0.65,0,0,0,4,9,0,0,0,0,95.84,0.14,2.2,82.81,1003,95,1.5 +2008,11,14,6,30,12.5,1.24,0.093,0.65,28,251,48,5,8.8,5,0,7,5,85.51,0.14,2.2,78.31,1004,101,1.6 +2008,11,14,7,30,14.100000000000001,1.29,0.085,0.65,58,571,192,5,10.100000000000001,32,0,0,32,76.48,0.14,2.2,76.78,1004,108,2 +2008,11,14,8,30,15.8,1.33,0.079,0.65,73,718,332,8,10.4,175,193,0,245,68.86,0.14,2.1,70.29,1004,119,2.5 +2008,11,14,9,30,17.1,1.35,0.076,0.65,80,787,434,7,11.3,216,194,0,303,63.33,0.14,2.1,68.73,1004,124,2.7 +2008,11,14,10,30,17.7,1.34,0.073,0.65,82,820,486,7,11.3,213,56,0,241,60.51,0.14,2,65.98,1004,119,2.8000000000000003 +2008,11,14,11,30,18,1.31,0.069,0.65,81,822,482,5,10.8,258,44,0,280,60.800000000000004,0.14,2,62.870000000000005,1004,112,2.6 +2008,11,14,12,30,18.1,1.24,0.07,0.65,77,788,420,3,10.5,245,58,0,270,64.15,0.14,2,61.27,1004,107,2.4000000000000004 +2008,11,14,13,30,18,1.21,0.067,0.65,67,719,311,3,10.600000000000001,184,35,0,196,70.10000000000001,0.14,2,62.01,1004,106,2 +2008,11,14,14,30,17,1.18,0.066,0.65,51,567,168,4,11.600000000000001,92,4,0,92,78.03,0.14,2,70.69,1005,108,1.6 +2008,11,14,15,30,15.600000000000001,1,0.08600000000000001,0.65,19,161,27,0,12,19,161,0,27,87.22,0.14,2,79.24,1005,112,1.6 +2008,11,14,16,30,14.600000000000001,0.96,0.08600000000000001,0.65,0,0,0,0,11,0,0,0,0,97.75,0.14,2,79.13,1005,118,1.7000000000000002 +2008,11,14,17,30,14,0.92,0.085,0.65,0,0,0,4,11.100000000000001,0,0,0,0,108.62,0.14,2,82.61,1006,119,1.8 +2008,11,14,18,30,13.600000000000001,0.9,0.085,0.65,0,0,0,4,11.100000000000001,0,0,0,0,119.76,0.14,2,84.62,1006,115,1.9000000000000001 +2008,11,14,19,30,13.3,0.89,0.08700000000000001,0.65,0,0,0,4,11,0,0,0,0,130.84,0.14,2,85.68,1006,107,1.9000000000000001 +2008,11,14,20,30,13,0.91,0.089,0.65,0,0,0,4,10.8,0,0,0,0,141.38,0.14,2,86.46000000000001,1007,99,1.9000000000000001 +2008,11,14,21,30,12.8,0.9400000000000001,0.091,0.65,0,0,0,3,10.5,0,0,0,0,150.45000000000002,0.14,2,86.09,1007,90,1.8 +2008,11,14,22,30,12.5,1,0.091,0.65,0,0,0,4,10.200000000000001,0,0,0,0,156.02,0.14,2,85.60000000000001,1007,79,1.7000000000000002 +2008,11,14,23,30,12.200000000000001,1.07,0.093,0.65,0,0,0,3,9.700000000000001,0,0,0,0,155.46,0.14,2,84.79,1007,70,1.6 +2008,11,15,0,30,11.9,1.1300000000000001,0.097,0.65,0,0,0,3,9.4,0,0,0,0,149.1,0.14,2,84.78,1007,62,1.5 +2008,11,15,1,30,11.600000000000001,1.19,0.10200000000000001,0.65,0,0,0,3,9.200000000000001,0,0,0,0,139.69,0.14,2,85.4,1007,56,1.5 +2008,11,15,2,30,11.3,1.24,0.111,0.65,0,0,0,3,9.1,0,0,0,0,129.01,0.14,2,86.41,1007,53,1.5 +2008,11,15,3,30,11.100000000000001,1.26,0.124,0.65,0,0,0,3,9.1,0,0,0,0,117.91,0.14,2,87.2,1007,53,1.5 +2008,11,15,4,30,11,1.28,0.145,0.65,0,0,0,4,9,0,0,0,0,106.81,0.14,2,87.71000000000001,1007,52,1.6 +2008,11,15,5,30,11.200000000000001,1.29,0.167,0.65,0,0,0,4,9,0,0,0,0,96.04,0.14,2,86.51,1007,52,1.8 +2008,11,15,6,30,12.3,1.31,0.177,0.65,30,156,42,4,9.200000000000001,4,0,7,4,85.72,0.14,2,81.25,1008,52,2.1 +2008,11,15,7,30,14.100000000000001,1.32,0.182,0.65,77,446,180,4,10.200000000000001,6,0,0,6,76.71000000000001,0.14,2,77.2,1008,55,2.6 +2008,11,15,8,30,15.700000000000001,1.32,0.189,0.65,104,586,312,3,10.5,66,0,0,66,69.11,0.14,2.1,71,1008,60,2.6 +2008,11,15,9,30,16.8,1.29,0.123,0.65,97,729,421,7,10.600000000000001,190,61,0,217,63.59,0.14,2.1,67.03,1009,64,2.2 +2008,11,15,10,30,17.8,1.37,0.134,0.65,105,748,471,8,10.5,227,62,0,257,60.77,0.14,2.1,62.410000000000004,1008,69,2 +2008,11,15,11,30,18.3,1.4000000000000001,0.152,0.65,111,728,463,7,10.3,238,233,0,351,61.04,0.14,2.1,59.72,1008,71,1.9000000000000001 +2008,11,15,12,30,18.1,1.37,0.161,0.65,107,682,402,0,10,107,682,0,402,64.37,0.14,2.1,59.28,1007,64,1.6 +2008,11,15,13,30,17.400000000000002,1.3800000000000001,0.183,0.65,98,573,291,7,10.4,174,91,0,205,70.3,0.14,2.2,63.54,1007,52,1.2000000000000002 +2008,11,15,14,30,16.1,1.4000000000000001,0.178,0.65,70,412,154,8,11.8,50,2,7,50,78.2,0.14,2.2,75.64,1007,47,0.9 +2008,11,15,15,30,14.8,1.3800000000000001,0.189,0.65,19,84,23,6,11.5,5,0,7,5,87.36,0.14,2.3000000000000003,80.56,1007,44,0.9 +2008,11,15,16,30,14,1.36,0.19,0.65,0,0,0,7,10.9,0,0,0,0,97.89,0.14,2.3000000000000003,81.61,1008,38,1.1 +2008,11,15,17,30,13.600000000000001,1.33,0.166,0.65,0,0,0,8,10.8,0,0,0,0,108.75,0.14,2.3000000000000003,83.36,1008,37,1.3 +2008,11,15,18,30,13.200000000000001,1.3,0.152,0.65,0,0,0,8,10.8,0,0,0,0,119.88,0.14,2.3000000000000003,85.4,1008,39,1.4000000000000001 +2008,11,15,19,30,12.9,1.32,0.123,0.65,0,0,0,7,10.700000000000001,0,0,0,0,130.97,0.14,2.3000000000000003,86.4,1008,42,1.5 +2008,11,15,20,30,12.600000000000001,1.31,0.096,0.65,0,0,0,7,10.4,0,0,0,0,141.53,0.14,2.2,86.68,1008,47,1.6 +2008,11,15,21,30,12.600000000000001,1.25,0.089,0.65,0,0,0,6,10.3,0,0,0,0,150.64000000000001,0.14,2.2,85.71000000000001,1008,54,1.6 +2008,11,15,22,30,12.600000000000001,1.19,0.08600000000000001,0.65,0,0,0,7,10.200000000000001,0,0,0,0,156.26,0.14,2.1,85.58,1008,54,1.5 +2008,11,15,23,30,12.600000000000001,1.17,0.083,0.65,0,0,0,8,10.200000000000001,0,0,0,0,155.71,0.14,2.1,85.59,1008,49,1.4000000000000001 +2008,11,16,0,30,12.5,1.16,0.083,0.65,0,0,0,7,10.100000000000001,0,0,0,0,149.33,0.14,2.1,85.43,1008,41,1.3 +2008,11,16,1,30,12.4,1.1500000000000001,0.082,0.65,0,0,0,6,9.9,0,0,0,0,139.89000000000001,0.14,2.1,84.61,1008,35,1.4000000000000001 +2008,11,16,2,30,12.200000000000001,1.1400000000000001,0.085,0.65,0,0,0,8,9.700000000000001,0,0,0,0,129.2,0.14,2.1,84.67,1008,34,1.4000000000000001 +2008,11,16,3,30,12.100000000000001,1.1400000000000001,0.085,0.65,0,0,0,4,9.600000000000001,0,0,0,0,118.10000000000001,0.14,2.1,84.97,1008,39,1.4000000000000001 +2008,11,16,4,30,11.9,1.1400000000000001,0.084,0.65,0,0,0,4,9.5,0,0,0,0,107,0.14,2.2,85.5,1008,45,1.4000000000000001 +2008,11,16,5,30,11.8,1.1400000000000001,0.088,0.65,0,0,0,1,9.5,0,0,0,0,96.24000000000001,0.14,2.2,85.79,1008,50,1.3 +2008,11,16,6,30,12.5,1.1400000000000001,0.088,0.65,26,233,43,1,9.5,26,233,0,43,85.92,0.14,2.2,82.02,1008,55,1.2000000000000002 +2008,11,16,7,30,14,1.1500000000000001,0.09,0.65,59,549,183,3,10.8,21,0,0,21,76.93,0.14,2.2,80.79,1009,62,1.4000000000000001 +2008,11,16,8,30,15.600000000000001,1.18,0.088,0.65,75,695,320,0,10.700000000000001,75,695,0,320,69.35000000000001,0.14,2.2,72.77,1009,82,1.7000000000000002 +2008,11,16,9,30,16.900000000000002,1.21,0.077,0.65,80,780,424,8,10.3,206,166,7,279,63.84,0.14,2.1,64.93,1009,105,1.7000000000000002 +2008,11,16,10,30,17.7,1.2,0.076,0.65,84,808,475,7,9.4,204,53,7,230,61.02,0.14,2.1,58.34,1009,120,1.3 +2008,11,16,11,30,18.1,1.18,0.078,0.65,84,803,470,7,8.700000000000001,202,33,0,218,61.29,0.14,2.1,54.25,1009,139,0.8 +2008,11,16,12,30,18.3,1.1300000000000001,0.07,0.65,77,780,412,7,8.3,157,21,0,166,64.59,0.14,2.1,51.97,1009,195,0.4 +2008,11,16,13,30,18.1,1.1400000000000001,0.076,0.65,70,694,302,7,8.1,121,15,0,127,70.5,0.14,2.2,52,1008,252,0.6000000000000001 +2008,11,16,14,30,17,1.1500000000000001,0.084,0.65,54,523,159,8,8.9,4,0,0,4,78.37,0.14,2.2,58.88,1008,271,0.7000000000000001 +2008,11,16,15,30,15.5,1.17,0.1,0.65,19,136,25,7,11.200000000000001,3,0,7,3,87.5,0.14,2.2,75.77,1008,287,0.8 +2008,11,16,16,30,14.700000000000001,1.19,0.111,0.65,0,0,0,4,10.4,0,0,0,0,98.02,0.14,2.2,75.22,1009,308,0.9 +2008,11,16,17,30,14.3,1.21,0.116,0.65,0,0,0,4,10.5,0,0,0,0,108.87,0.14,2.2,77.72,1009,334,0.8 +2008,11,16,18,30,13.8,1.24,0.124,0.65,0,0,0,4,10.3,0,0,0,0,120,0.14,2.2,79.42,1009,185,0.7000000000000001 +2008,11,16,19,30,13.200000000000001,1.26,0.123,0.65,0,0,0,4,9.9,0,0,0,0,131.09,0.14,2.1,80.48,1009,43,0.6000000000000001 +2008,11,16,20,30,12.8,1.27,0.114,0.65,0,0,0,3,9.5,0,0,0,0,141.67000000000002,0.14,2.1,80.56,1009,79,0.7000000000000001 +2008,11,16,21,30,12.5,1.29,0.106,0.65,0,0,0,4,9.3,0,0,0,0,150.82,0.14,2,80.82000000000001,1009,96,0.8 +2008,11,16,22,30,12.200000000000001,1.29,0.099,0.65,0,0,0,0,9,0,0,0,0,156.49,0.14,1.9000000000000001,81.01,1008,94,0.8 +2008,11,16,23,30,11.9,1.29,0.094,0.65,0,0,0,0,8.8,0,0,0,0,155.96,0.14,1.9000000000000001,81.45,1008,82,0.9 +2008,11,17,0,30,11.4,1.28,0.09,0.65,0,0,0,0,8.6,0,0,0,0,149.56,0.14,1.8,82.9,1008,72,1 +2008,11,17,1,30,10.9,1.27,0.085,0.65,0,0,0,0,8.4,0,0,0,0,140.09,0.14,1.7000000000000002,84.32000000000001,1008,66,1.1 +2008,11,17,2,30,10.3,1.28,0.08,0.65,0,0,0,0,8.1,0,0,0,0,129.39000000000001,0.14,1.6,86.13,1007,63,1.2000000000000002 +2008,11,17,3,30,9.8,1.28,0.077,0.65,0,0,0,0,7.800000000000001,0,0,0,0,118.28,0.14,1.6,87.48,1007,61,1.3 +2008,11,17,4,30,9.4,1.28,0.077,0.65,0,0,0,0,7.6000000000000005,0,0,0,0,107.19,0.14,1.6,88.39,1007,61,1.4000000000000001 +2008,11,17,5,30,9.3,1.29,0.076,0.65,0,0,0,0,7.4,0,0,0,0,96.44,0.14,1.6,87.75,1008,62,1.4000000000000001 +2008,11,17,6,30,10.5,1.29,0.076,0.65,25,262,43,8,7.300000000000001,26,2,7,26,86.12,0.14,1.6,80.67,1008,63,1.5 +2008,11,17,7,30,12.9,1.3,0.075,0.65,56,586,186,0,8.700000000000001,56,586,0,186,77.15,0.14,1.7000000000000002,75.68,1008,62,1.8 +2008,11,17,8,30,15,1.31,0.077,0.65,72,723,325,7,8.700000000000001,173,173,0,234,69.58,0.14,1.7000000000000002,66.04,1008,65,2 +2008,11,17,9,30,16.8,1.28,0.083,0.65,83,780,424,0,9,83,780,0,424,64.08,0.14,1.8,60,1008,69,1.6 +2008,11,17,10,30,18,1.31,0.083,0.65,87,808,475,8,8.700000000000001,84,1,7,85,61.27,0.14,1.8,54.72,1007,58,1.1 +2008,11,17,11,30,18.5,1.33,0.083,0.65,86,803,469,7,8.4,160,17,7,168,61.52,0.14,1.9000000000000001,51.85,1007,36,0.9 +2008,11,17,12,30,18.5,1.1400000000000001,0.10200000000000001,0.65,89,743,406,8,8.200000000000001,194,314,0,328,64.81,0.14,1.9000000000000001,51.160000000000004,1006,16,0.9 +2008,11,17,13,30,17.900000000000002,1.16,0.101,0.65,78,663,297,8,8.4,152,71,7,176,70.69,0.14,2,53.92,1006,182,0.8 +2008,11,17,14,30,16.6,1.22,0.10200000000000001,0.65,57,498,156,7,10.5,47,1,0,47,78.53,0.14,2,67.35,1006,184,0.8 +2008,11,17,15,30,15.100000000000001,1.29,0.10400000000000001,0.65,18,135,24,8,10.9,12,0,7,12,87.63,0.14,1.9000000000000001,76.22,1007,24,1.1 +2008,11,17,16,30,14,1.36,0.105,0.65,0,0,0,3,9.9,0,0,0,0,98.15,0.14,1.9000000000000001,76.43,1007,43,1.6 +2008,11,17,17,30,13,1.42,0.10200000000000001,0.65,0,0,0,3,9.3,0,0,0,0,108.98,0.14,1.8,78.39,1007,53,2 +2008,11,17,18,30,12.200000000000001,1.43,0.097,0.65,0,0,0,0,8.8,0,0,0,0,120.11,0.14,1.8,79.49,1008,58,2.4000000000000004 +2008,11,17,19,30,11.700000000000001,1.42,0.1,0.65,0,0,0,0,8.1,0,0,0,0,131.21,0.14,1.7000000000000002,78.31,1008,60,2.6 +2008,11,17,20,30,11.100000000000001,1.41,0.11,0.65,0,0,0,0,7.2,0,0,0,0,141.81,0.14,1.7000000000000002,77.16,1008,59,2.4000000000000004 +2008,11,17,21,30,10.5,1.4000000000000001,0.113,0.65,0,0,0,0,6.6000000000000005,0,0,0,0,151,0.14,1.6,76.67,1008,60,2.2 +2008,11,17,22,30,9.600000000000001,1.42,0.10400000000000001,0.65,0,0,0,0,5.800000000000001,0,0,0,0,156.72,0.14,1.4000000000000001,77.37,1008,60,2 +2008,11,17,23,30,8.9,1.43,0.08700000000000001,0.65,0,0,0,0,5.1000000000000005,0,0,0,0,156.21,0.14,1.2000000000000002,76.88,1007,56,1.8 +2008,11,18,0,30,8.200000000000001,1.4000000000000001,0.07200000000000001,0.65,0,0,0,0,4.5,0,0,0,0,149.78,0.14,1,77.33,1007,53,1.7000000000000002 +2008,11,18,1,30,7.5,1.36,0.059000000000000004,0.65,0,0,0,0,3.9000000000000004,0,0,0,0,140.29,0.14,0.8,77.88,1007,53,1.6 +2008,11,18,2,30,6.9,1.31,0.05,0.65,0,0,0,0,3.2,0,0,0,0,129.58,0.14,0.7000000000000001,77.56,1006,54,1.6 +2008,11,18,3,30,6.300000000000001,1.26,0.044,0.65,0,0,0,0,2.7,0,0,0,0,118.47,0.14,0.6000000000000001,77.74,1006,59,1.6 +2008,11,18,4,30,5.7,1.22,0.04,0.65,0,0,0,0,2.3000000000000003,0,0,0,0,107.38,0.14,0.6000000000000001,78.51,1006,67,1.6 +2008,11,18,5,30,5.300000000000001,1.19,0.038,0.65,0,0,0,0,1.9000000000000001,0,0,0,0,96.63,0.14,0.5,78.63,1006,76,1.6 +2008,11,18,6,30,6.6000000000000005,1.18,0.037,0.65,22,375,46,0,1.8,22,375,0,46,86.32000000000001,0.14,0.5,71.63,1006,83,1.9000000000000001 +2008,11,18,7,30,9.200000000000001,1.18,0.037,0.65,47,705,201,0,2.9000000000000004,47,705,0,201,77.37,0.14,0.5,64.64,1005,91,2.5 +2008,11,18,8,30,11.700000000000001,1.18,0.037,0.65,59,835,348,0,2.4000000000000004,59,835,0,348,69.82000000000001,0.14,0.5,52.83,1005,113,2.6 +2008,11,18,9,30,13.700000000000001,1.1400000000000001,0.045,0.65,70,876,449,0,2,70,876,0,449,64.33,0.14,0.6000000000000001,45.11,1005,154,2 +2008,11,18,10,30,14.8,1.1500000000000001,0.049,0.65,74,897,502,0,2.2,74,897,1,502,61.51,0.14,0.6000000000000001,42.46,1004,197,1.5 +2008,11,18,11,30,15.4,1.16,0.052000000000000005,0.65,75,884,494,0,2,75,884,1,494,61.75,0.14,0.7000000000000001,40.45,1004,228,1.3 +2008,11,18,12,30,15.5,1.1,0.067,0.65,77,831,428,0,1.7000000000000002,77,831,1,428,65.01,0.14,0.7000000000000001,39.35,1003,242,1.2000000000000002 +2008,11,18,13,30,15.100000000000001,1.1,0.068,0.65,68,754,315,7,1.6,169,140,1,215,70.87,0.14,0.7000000000000001,39.96,1003,242,1 +2008,11,18,14,30,14.200000000000001,1.11,0.07100000000000001,0.65,52,581,166,7,2.7,106,78,1,121,78.69,0.14,0.8,45.83,1002,238,0.6000000000000001 +2008,11,18,15,30,13.3,1.03,0.09,0.65,18,146,24,3,4.1000000000000005,14,0,7,14,87.76,0.14,0.8,53.6,1002,213,0.4 +2008,11,18,16,30,12.8,1.03,0.091,0.65,0,0,0,7,2.8000000000000003,0,0,0,0,98.27,0.14,0.8,50.7,1003,173,0.4 +2008,11,18,17,30,12.200000000000001,1.04,0.093,0.65,0,0,0,7,3,0,0,0,0,109.09,0.14,0.9,53.21,1003,153,0.6000000000000001 +2008,11,18,18,30,11.5,1.04,0.096,0.65,0,0,0,7,3.7,0,0,0,0,120.22,0.14,1,58.9,1003,146,0.8 +2008,11,18,19,30,10.600000000000001,1.05,0.1,0.65,0,0,0,0,4.4,0,0,0,0,131.32,0.14,1.1,65.37,1003,138,1 +2008,11,18,20,30,9.8,1.07,0.1,0.65,0,0,0,3,4.4,0,0,0,0,141.94,0.14,1.2000000000000002,69.2,1003,133,1.2000000000000002 +2008,11,18,21,30,9.1,1.1,0.105,0.65,0,0,0,5,4.3,0,0,0,0,151.16,0.14,1.3,72.01,1003,133,1.3 +2008,11,18,22,30,8.8,1.1400000000000001,0.12,0.65,0,0,0,8,4.2,0,0,0,0,156.94,0.14,1.5,72.68,1003,133,1.4000000000000001 +2008,11,18,23,30,8.5,1.18,0.14,0.65,0,0,0,5,4.1000000000000005,0,0,0,0,156.45000000000002,0.14,1.6,73.73,1003,130,1.4000000000000001 +2008,11,19,0,30,8.3,1.21,0.169,0.65,0,0,0,1,4,0,0,0,0,150,0.14,1.7000000000000002,74.29,1003,126,1.4000000000000001 +2008,11,19,1,30,8.3,1.24,0.194,0.65,0,0,0,3,3.9000000000000004,0,0,0,0,140.49,0.14,1.8,73.86,1003,121,1.3 +2008,11,19,2,30,8.4,1.26,0.21,0.65,0,0,0,7,3.9000000000000004,0,0,0,0,129.77,0.14,1.8,73.51,1003,117,1.3 +2008,11,19,3,30,8.5,1.3,0.212,0.65,0,0,0,7,4,0,0,0,0,118.65,0.14,1.8,73.28,1004,113,1.2000000000000002 +2008,11,19,4,30,8.700000000000001,1.34,0.20500000000000002,0.65,0,0,0,4,3.8000000000000003,0,0,0,0,107.57000000000001,0.14,1.8,71.47,1004,110,1.2000000000000002 +2008,11,19,5,30,9,1.36,0.199,0.65,0,0,0,5,4.1000000000000005,0,0,0,0,96.83,0.14,1.8,71.26,1005,106,1.1 +2008,11,19,6,30,9.9,1.36,0.202,0.65,25,113,32,1,4.6000000000000005,25,113,0,32,86.52,0.14,1.8,69.42,1005,101,1 +2008,11,19,7,30,11.700000000000001,1.3800000000000001,0.201,0.65,76,412,164,1,6.5,76,412,0,164,77.59,0.14,1.8,70.59,1006,100,1.1 +2008,11,19,8,30,13.600000000000001,1.3900000000000001,0.196,0.65,102,571,297,0,5.9,102,571,0,297,70.05,0.14,1.9000000000000001,59.800000000000004,1007,125,1 +2008,11,19,9,30,14.8,1.17,0.097,0.65,87,752,410,0,6.800000000000001,87,752,0,410,64.56,0.14,1.9000000000000001,58.94,1007,175,0.8 +2008,11,19,10,30,15.5,1.19,0.093,0.65,90,789,464,0,7.2,90,789,0,464,61.74,0.14,1.8,57.64,1007,211,1 +2008,11,19,11,30,15.8,1.21,0.09,0.65,89,791,460,0,7.300000000000001,89,791,0,460,61.97,0.14,1.8,57.11,1007,225,1.3 +2008,11,19,12,30,15.700000000000001,1.09,0.101,0.65,88,741,399,0,7.5,88,741,0,399,65.22,0.14,1.8,58.04,1007,232,1.5 +2008,11,19,13,30,15.3,1.11,0.10400000000000001,0.65,78,656,291,2,7.6000000000000005,99,1,0,99,71.04,0.14,1.8,60.03,1007,232,1.5 +2008,11,19,14,30,14.3,1.1400000000000001,0.108,0.65,58,481,151,2,7.9,29,0,0,29,78.84,0.14,1.8,65.27,1007,225,1.1 +2008,11,19,15,30,13.200000000000001,1.19,0.114,0.65,17,106,21,1,9.700000000000001,17,106,0,21,87.88,0.14,1.8,79.36,1007,216,0.8 +2008,11,19,16,30,12.700000000000001,1.23,0.115,0.65,0,0,0,4,8.9,0,0,0,0,98.38,0.14,1.8,77.73,1008,207,0.8 +2008,11,19,17,30,12.600000000000001,1.25,0.111,0.65,0,0,0,4,8.6,0,0,0,0,109.2,0.14,1.8,76.84,1008,195,0.7000000000000001 +2008,11,19,18,30,12.4,1.27,0.11,0.65,0,0,0,4,8.4,0,0,0,0,120.31,0.14,1.7000000000000002,76.81,1009,176,0.7000000000000001 +2008,11,19,19,30,12,1.28,0.105,0.65,0,0,0,3,8.3,0,0,0,0,131.42000000000002,0.14,1.7000000000000002,78.3,1009,156,0.8 +2008,11,19,20,30,11.5,1.29,0.096,0.65,0,0,0,1,8.4,0,0,0,0,142.06,0.14,1.7000000000000002,81.08,1009,143,1.1 +2008,11,19,21,30,10.9,1.3,0.09,0.65,0,0,0,0,8.4,0,0,0,0,151.32,0.14,1.7000000000000002,84.27,1009,134,1.2000000000000002 +2008,11,19,22,30,10.200000000000001,1.3,0.08600000000000001,0.65,0,0,0,1,8.3,0,0,0,0,157.15,0.14,1.7000000000000002,87.78,1009,129,1.4000000000000001 +2008,11,19,23,30,9.8,1.29,0.083,0.65,0,0,0,0,8.200000000000001,0,0,0,0,156.68,0.14,1.7000000000000002,89.49,1009,128,1.4000000000000001 +2008,11,20,0,30,9.5,1.29,0.082,0.65,0,0,0,0,8.1,0,0,0,0,150.21,0.14,1.7000000000000002,90.8,1009,130,1.4000000000000001 +2008,11,20,1,30,9.3,1.28,0.081,0.65,0,0,0,0,8,0,0,0,0,140.69,0.14,1.7000000000000002,91.83,1009,133,1.5 +2008,11,20,2,30,9.200000000000001,1.28,0.079,0.65,0,0,0,0,8,0,0,0,0,129.96,0.14,1.6,92.51,1009,135,1.5 +2008,11,20,3,30,9,1.29,0.077,0.65,0,0,0,0,8.1,0,0,0,0,118.84,0.14,1.6,93.93,1009,135,1.5 +2008,11,20,4,30,8.8,1.3,0.076,0.65,0,0,0,0,8.1,0,0,0,0,107.76,0.14,1.6,95.23,1009,133,1.5 +2008,11,20,5,30,8.6,1.31,0.078,0.65,0,0,0,0,8.1,0,0,0,0,97.02,0.14,1.6,96.47,1009,132,1.5 +2008,11,20,6,30,9.9,1.33,0.082,0.65,22,220,35,0,8.200000000000001,22,220,0,35,86.71000000000001,0.14,1.7000000000000002,88.91,1009,133,1.6 +2008,11,20,7,30,12.4,1.34,0.08600000000000001,0.65,56,553,173,4,9.200000000000001,22,0,0,22,77.8,0.14,1.7000000000000002,80.60000000000001,1010,139,2.1 +2008,11,20,8,30,14.4,1.35,0.08700000000000001,0.65,74,700,310,0,9.8,74,700,0,310,70.27,0.14,1.7000000000000002,73.85000000000001,1010,157,2.4000000000000004 +2008,11,20,9,30,15.700000000000001,1.1300000000000001,0.091,0.65,85,762,410,0,10.100000000000001,85,762,0,410,64.8,0.14,1.7000000000000002,69.31,1010,183,2.3000000000000003 +2008,11,20,10,30,16.5,1.1400000000000001,0.084,0.65,87,801,463,0,9.600000000000001,87,801,0,463,61.97,0.14,1.7000000000000002,63.730000000000004,1009,202,2.3000000000000003 +2008,11,20,11,30,16.8,1.12,0.083,0.65,86,800,460,0,9.4,86,800,0,460,62.190000000000005,0.14,1.7000000000000002,61.64,1009,213,2.5 +2008,11,20,12,30,16.7,0.9,0.10300000000000001,0.65,90,735,396,3,9.3,113,0,0,113,65.41,0.14,1.7000000000000002,61.57,1008,219,2.6 +2008,11,20,13,30,16.3,0.92,0.098,0.65,77,659,289,2,9.200000000000001,177,31,0,187,71.21000000000001,0.14,1.7000000000000002,62.870000000000005,1008,220,2.4000000000000004 +2008,11,20,14,30,15,0.9500000000000001,0.08700000000000001,0.65,54,506,151,1,9.600000000000001,54,506,0,151,78.98,0.14,1.7000000000000002,69.96000000000001,1008,217,1.8 +2008,11,20,15,30,13.100000000000001,0.98,0.085,0.65,16,121,21,3,10.600000000000001,2,0,7,2,87.99,0.14,1.7000000000000002,84.76,1008,216,1.4000000000000001 +2008,11,20,16,30,12.100000000000001,1,0.082,0.65,0,0,0,0,9.8,0,0,0,0,98.49000000000001,0.14,1.7000000000000002,86,1007,217,1.5 +2008,11,20,17,30,11.8,1.03,0.082,0.65,0,0,0,0,10.100000000000001,0,0,0,0,109.29,0.14,1.8,89.56,1008,223,1.6 +2008,11,20,18,30,11.600000000000001,1.09,0.085,0.65,0,0,0,3,10.600000000000001,0,0,0,0,120.41,0.14,1.9000000000000001,93.55,1008,230,1.6 +2008,11,20,19,30,11.4,1.1400000000000001,0.088,0.65,0,0,0,3,11,0,0,0,0,131.52,0.14,2,97.29,1008,236,1.7000000000000002 +2008,11,20,20,30,11.600000000000001,1.1300000000000001,0.094,0.65,0,0,0,3,11.200000000000001,0,0,0,0,142.17000000000002,0.14,2.1,97.16,1007,239,1.9000000000000001 +2008,11,20,21,30,12.200000000000001,1.1300000000000001,0.099,0.65,0,0,0,3,11.3,0,0,0,0,151.47,0.14,2,94.06,1007,240,2.2 +2008,11,20,22,30,12.700000000000001,1.11,0.099,0.65,0,0,0,5,11.200000000000001,0,0,0,0,157.36,0.14,2,90.36,1006,243,2.6 +2008,11,20,23,30,12.9,1.03,0.094,0.65,0,0,0,0,11,0,0,0,0,156.91,0.14,1.9000000000000001,88.04,1006,251,2.9000000000000004 +2008,11,21,0,30,12.8,0.9500000000000001,0.105,0.65,0,0,0,8,10.700000000000001,0,0,0,0,150.43,0.14,1.7000000000000002,86.92,1006,257,2.8000000000000003 +2008,11,21,1,30,12.4,0.85,0.099,0.65,0,0,0,7,10.200000000000001,0,0,0,0,140.88,0.14,1.6,86.4,1005,254,2.6 +2008,11,21,2,30,12.200000000000001,0.71,0.1,0.65,0,0,0,4,9.9,0,0,0,0,130.14000000000001,0.14,1.6,85.88,1004,245,2.5 +2008,11,21,3,30,12.4,0.67,0.11800000000000001,0.65,0,0,0,4,10,0,0,0,0,119.02,0.14,1.6,85.32000000000001,1003,238,2.6 +2008,11,21,4,30,12.8,0.59,0.13,0.65,0,0,0,4,10.3,0,0,0,0,107.94,0.14,1.6,84.53,1003,238,2.9000000000000004 +2008,11,21,5,30,13,0.49,0.148,0.65,0,0,0,4,10.5,0,0,0,0,97.21000000000001,0.14,1.6,84.52,1002,241,3.2 +2008,11,21,6,30,13.3,0.46,0.185,0.65,24,49,27,4,10.5,14,0,7,14,86.91,0.14,1.5,82.97,1002,239,3.6 +2008,11,21,7,30,13.700000000000001,0.44,0.189,0.65,82,355,155,4,10.200000000000001,6,0,0,6,78.02,0.14,1.5,79.24,1001,231,4.4 +2008,11,21,8,30,13.9,0.4,0.181,0.65,110,542,291,4,9.600000000000001,11,0,0,11,70.49,0.14,1.4000000000000001,75.27,1000,227,5.1000000000000005 +2008,11,21,9,30,13.8,0.6,0.14200000000000002,0.65,108,686,398,3,9.200000000000001,243,44,0,262,65.02,0.14,1.5,73.66,1000,229,5.300000000000001 +2008,11,21,10,30,13.600000000000001,0.55,0.151,0.65,118,705,446,5,9.4,71,0,0,71,62.2,0.14,1.6,75.74,999,229,5.2 +2008,11,21,11,30,13.700000000000001,0.47000000000000003,0.166,0.65,124,679,438,8,10.100000000000001,69,0,7,69,62.4,0.14,1.7000000000000002,78.69,997,225,5.2 +2008,11,21,12,30,13.8,0.5,0.16,0.65,114,647,381,4,10.4,16,0,0,16,65.6,0.14,1.7000000000000002,80.01,996,223,5.300000000000001 +2008,11,21,13,30,13.9,0.47000000000000003,0.158,0.65,98,551,275,7,10.4,14,0,0,14,71.37,0.14,1.8,79.54,994,226,5.2 +2008,11,21,14,30,13.9,0.44,0.169,0.65,72,341,137,7,10.4,3,0,0,3,79.12,0.14,1.9000000000000001,79.59,993,229,4.7 +2008,11,21,15,30,13.8,0.46,0.196,0.65,14,14,15,1,10.5,14,14,0,15,88.11,0.14,2,80.4,992,231,4.2 +2008,11,21,16,30,13.600000000000001,0.43,0.203,0.65,0,0,0,8,10.700000000000001,0,0,0,0,98.59,0.14,2,82.42,991,236,3.9000000000000004 +2008,11,21,17,30,13.700000000000001,0.38,0.20400000000000001,0.65,0,0,0,7,11,0,0,0,0,109.38,0.14,2.1,83.58,991,247,4 +2008,11,21,18,30,13.9,0.48,0.212,0.65,0,0,0,7,11.4,0,0,0,0,120.49000000000001,0.14,2.2,84.77,990,256,4 +2008,11,21,19,30,13.700000000000001,0.51,0.187,0.65,0,0,0,8,11.600000000000001,0,0,0,0,131.61,0.14,2.2,87.07000000000001,989,256,3.7 +2008,11,21,20,30,13.700000000000001,0.45,0.167,0.65,0,0,0,7,11.700000000000001,0,0,0,0,142.28,0.14,2.2,87.62,988,257,3.6 +2008,11,21,21,30,13.9,0.48,0.197,0.65,0,0,0,5,11.9,0,0,0,0,151.61,0.14,2.3000000000000003,87.74,987,263,3.6 +2008,11,21,22,30,14.100000000000001,0.42,0.197,0.65,0,0,0,8,12.100000000000001,0,0,0,0,157.55,0.14,2.4000000000000004,88,986,269,3.6 +2008,11,21,23,30,14.200000000000001,0.35000000000000003,0.181,0.65,0,0,0,7,12.3,0,0,0,0,157.14000000000001,0.14,2.4000000000000004,88.34,985,275,3.8000000000000003 +2008,11,22,0,30,14.4,0.4,0.24,0.65,0,0,0,7,12.5,0,0,0,0,150.64000000000001,0.14,2.4000000000000004,88.21000000000001,984,290,4 +2008,11,22,1,30,14.100000000000001,0.44,0.255,0.65,0,0,0,4,12.700000000000001,0,0,0,0,141.07,0.14,2.2,91.21000000000001,984,319,4.6000000000000005 +2008,11,22,2,30,12.700000000000001,0.67,0.16,0.65,0,0,0,4,11.8,0,0,0,0,130.32,0.14,1.9000000000000001,94,985,169,5.5 +2008,11,22,3,30,10.700000000000001,1.1500000000000001,0.096,0.65,0,0,0,4,7.800000000000001,0,0,0,0,119.2,0.14,1.4000000000000001,82.27,985,3,4.9 +2008,11,22,4,30,9.200000000000001,1.36,0.07100000000000001,0.65,0,0,0,4,6,0,0,0,0,108.12,0.14,1.1,80.66,986,180,3.4000000000000004 +2008,11,22,5,30,8.200000000000001,1.4000000000000001,0.045,0.65,0,0,0,4,5.4,0,0,0,0,97.4,0.14,0.9,82.25,986,350,3.1 +2008,11,22,6,30,8.200000000000001,1.33,0.038,0.65,18,313,34,4,4.7,2,0,7,2,87.10000000000001,0.14,0.8,78.47,987,345,3.7 +2008,11,22,7,30,9.5,1.28,0.037,0.65,44,672,181,4,4.5,6,0,0,6,78.23,0.14,0.7000000000000001,71.2,987,344,4.5 +2008,11,22,8,30,11,1.25,0.036000000000000004,0.65,56,812,324,4,3.3000000000000003,47,0,7,47,70.71000000000001,0.14,0.7000000000000001,59.04,988,349,5 +2008,11,22,9,30,12.4,1.24,0.037,0.65,64,882,433,5,0.30000000000000004,195,8,0,198,65.25,0.14,0.6000000000000001,43.57,988,353,5 +2008,11,22,10,30,13.200000000000001,1.26,0.038,0.65,67,906,487,5,-1.8,223,21,0,233,62.42,0.14,0.6000000000000001,35.31,988,347,4.7 +2008,11,22,11,30,13.600000000000001,1.31,0.04,0.65,68,902,483,3,-2.8000000000000003,268,60,0,296,62.61,0.14,0.6000000000000001,32.05,988,339,4.6000000000000005 +2008,11,22,12,30,13.5,1.37,0.044,0.65,66,860,419,5,-3.3000000000000003,101,0,0,101,65.78,0.14,0.7000000000000001,31.060000000000002,988,334,4.5 +2008,11,22,13,30,13.100000000000001,1.37,0.054,0.65,61,766,304,5,-3,174,27,7,183,71.53,0.14,0.8,32.660000000000004,988,333,3.9000000000000004 +2008,11,22,14,30,11.700000000000001,1.25,0.07,0.65,49,568,155,4,-0.9,5,0,0,5,79.25,0.14,0.9,41.59,988,335,2.8000000000000003 +2008,11,22,15,30,9.9,1.17,0.095,0.65,15,119,19,5,2.6,4,0,7,4,88.21000000000001,0.14,0.9,60.4,989,342,2.3000000000000003 +2008,11,22,16,30,8.4,1.19,0.084,0.65,0,0,0,4,2.4000000000000004,0,0,0,0,98.68,0.14,0.8,66.16,989,354,2.7 +2008,11,22,17,30,7,1.21,0.052000000000000005,0.65,0,0,0,7,1.1,0,0,0,0,109.47,0.14,0.6000000000000001,66,990,183,3.1 +2008,11,22,18,30,5.6000000000000005,1.1400000000000001,0.04,0.65,0,0,0,4,0,0,0,0,0,120.57000000000001,0.14,0.5,67.25,991,8,3 +2008,11,22,19,30,4.7,1.07,0.037,0.65,0,0,0,4,-0.4,0,0,0,0,131.69,0.14,0.5,69.5,992,11,2.6 +2008,11,22,20,30,4.2,1.07,0.038,0.65,0,0,0,4,-0.6000000000000001,0,0,0,0,142.38,0.14,0.5,70.85000000000001,992,17,2.3000000000000003 +2008,11,22,21,30,3.8000000000000003,1.09,0.038,0.65,0,0,0,8,-0.8,0,0,0,0,151.75,0.14,0.5,71.71000000000001,993,22,2 +2008,11,22,22,30,3.5,1.11,0.039,0.65,0,0,0,4,-1,0,0,0,0,157.75,0.14,0.5,72.46000000000001,993,26,1.8 +2008,11,22,23,30,3.3000000000000003,1.11,0.039,0.65,0,0,0,4,-1.2000000000000002,0,0,0,0,157.36,0.14,0.5,72.42,993,29,1.7000000000000002 +2008,11,23,0,30,3.1,1.11,0.04,0.65,0,0,0,4,-1.5,0,0,0,0,150.84,0.14,0.5,72.05,993,30,1.7000000000000002 +2008,11,23,1,30,2.9000000000000004,1.11,0.041,0.65,0,0,0,4,-1.8,0,0,0,0,141.26,0.14,0.5,71.44,993,29,1.7000000000000002 +2008,11,23,2,30,2.5,1.11,0.043000000000000003,0.65,0,0,0,4,-2.1,0,0,0,0,130.5,0.14,0.5,71.68,993,27,1.7000000000000002 +2008,11,23,3,30,2.1,1.11,0.045,0.65,0,0,0,4,-2.3000000000000003,0,0,0,0,119.38,0.14,0.5,72.64,994,24,1.8 +2008,11,23,4,30,2,1.1,0.049,0.65,0,0,0,4,-2.5,0,0,0,0,108.31,0.14,0.5,72.19,994,23,1.9000000000000001 +2008,11,23,5,30,2.2,1.09,0.055,0.65,0,0,0,4,-2.6,0,0,0,0,97.59,0.14,0.5,70.43,994,23,1.9000000000000001 +2008,11,23,6,30,3.6,1.1,0.06,0.65,20,251,31,4,-2.5,2,0,7,2,87.28,0.14,0.5,64.39,995,23,1.9000000000000001 +2008,11,23,7,30,6,1.11,0.063,0.65,51,624,176,4,-1.3,6,0,0,6,78.43,0.14,0.5,59.51,996,22,2.4000000000000004 +2008,11,23,8,30,8.1,1.1300000000000001,0.064,0.65,67,774,320,4,-3.3000000000000003,11,0,0,11,70.92,0.14,0.5,44.43,996,21,2.9000000000000004 +2008,11,23,9,30,9.5,1.22,0.062,0.65,74,849,427,8,-5.300000000000001,8,0,7,8,65.46000000000001,0.14,0.5,34.78,996,17,2.9000000000000004 +2008,11,23,10,30,10.3,1.26,0.057,0.65,75,885,482,8,-6.5,194,46,7,215,62.63,0.14,0.5,30.13,996,10,2.8000000000000003 +2008,11,23,11,30,10.700000000000001,1.3,0.051000000000000004,0.65,72,892,480,5,-6.6000000000000005,206,8,0,210,62.800000000000004,0.14,0.5,29.060000000000002,996,182,2.8000000000000003 +2008,11,23,12,30,10.700000000000001,1.37,0.047,0.65,67,867,420,7,-6.4,150,539,7,370,65.95,0.14,0.5,29.61,995,359,2.9000000000000004 +2008,11,23,13,30,10.100000000000001,1.37,0.046,0.65,58,796,309,2,-5.7,185,102,0,217,71.68,0.14,0.5,32.35,995,358,2.7 +2008,11,23,14,30,8.3,1.37,0.044,0.65,43,643,162,0,-4,43,643,0,162,79.37,0.14,0.5,41.58,996,180,2.1 +2008,11,23,15,30,5.9,1.36,0.043000000000000003,0.65,14,234,21,0,-0.5,14,234,0,21,88.29,0.14,0.5,63.33,996,11,1.6 +2008,11,23,16,30,4.6000000000000005,1.34,0.04,0.65,0,0,0,0,-1.5,0,0,0,0,98.77,0.14,0.5,64.8,996,26,1.5 +2008,11,23,17,30,4.1000000000000005,1.32,0.038,0.65,0,0,0,0,-1.9000000000000001,0,0,0,0,109.54,0.14,0.5,64.88,997,46,1.3 +2008,11,23,18,30,3.9000000000000004,1.32,0.037,0.65,0,0,0,0,-2.8000000000000003,0,0,0,0,120.64,0.14,0.5,61.6,997,78,1.1 +2008,11,23,19,30,3.8000000000000003,1.34,0.036000000000000004,0.65,0,0,0,0,-4,0,0,0,0,131.77,0.14,0.5,56.92,997,121,1.1 +2008,11,23,20,30,3.6,1.35,0.038,0.65,0,0,0,0,-4.6000000000000005,0,0,0,0,142.47,0.14,0.5,54.88,997,153,1.2000000000000002 +2008,11,23,21,30,3.2,1.35,0.041,0.65,0,0,0,0,-4.5,0,0,0,0,151.88,0.14,0.6000000000000001,57.14,996,164,1.4000000000000001 +2008,11,23,22,30,2.9000000000000004,1.35,0.044,0.65,0,0,0,0,-4.1000000000000005,0,0,0,0,157.93,0.14,0.7000000000000001,60.06,996,162,1.5 +2008,11,23,23,30,2.7,1.35,0.051000000000000004,0.65,0,0,0,1,-3.5,0,0,0,0,157.57,0.14,0.7000000000000001,63.7,995,155,1.6 +2008,11,24,0,30,2.7,1.34,0.059000000000000004,0.65,0,0,0,0,-2.6,0,0,0,0,151.05,0.14,0.8,67.91,995,148,1.7000000000000002 +2008,11,24,1,30,2.8000000000000003,1.32,0.065,0.65,0,0,0,1,-1.7000000000000002,0,0,0,0,141.45000000000002,0.14,0.9,72.01,994,147,1.9000000000000001 +2008,11,24,2,30,3.1,1.31,0.067,0.65,0,0,0,1,-1,0,0,0,0,130.68,0.14,1.1,74.57000000000001,993,148,2.1 +2008,11,24,3,30,3.3000000000000003,1.31,0.064,0.65,0,0,0,0,-0.2,0,0,0,0,119.55,0.14,1.2000000000000002,77.57000000000001,992,151,2.3000000000000003 +2008,11,24,4,30,3.6,1.31,0.061,0.65,0,0,0,3,0.4,0,0,0,0,108.49000000000001,0.14,1.3,79.52,991,155,2.4000000000000004 +2008,11,24,5,30,4.1000000000000005,1.28,0.061,0.65,0,0,0,4,1.1,0,0,0,0,97.78,0.14,1.4000000000000001,81,991,159,2.5 +2008,11,24,6,30,5.9,1.21,0.068,0.65,18,198,27,4,2,10,0,7,10,87.47,0.14,1.5,76.10000000000001,991,161,2.9000000000000004 +2008,11,24,7,30,8.6,1.1300000000000001,0.078,0.65,53,541,159,4,3.9000000000000004,6,0,0,6,78.63,0.14,1.7000000000000002,72.39,990,163,3.8000000000000003 +2008,11,24,8,30,10.5,1.04,0.09,0.65,74,676,292,4,5.4,11,0,0,11,71.13,0.14,1.8,70.78,989,171,5 +2008,11,24,9,30,11.700000000000001,0.98,0.106,0.65,90,730,390,4,6.7,123,0,0,123,65.68,0.14,1.8,71.64,988,180,6 +2008,11,24,10,30,12.3,0.88,0.109,0.65,96,754,440,2,7.6000000000000005,267,95,0,310,62.84,0.14,1.9000000000000001,73.12,987,187,6.9 +2008,11,24,11,30,12.600000000000001,0.68,0.122,0.65,102,728,433,4,8.3,103,0,0,103,62.99,0.14,2,74.92,986,191,7.2 +2008,11,24,12,30,12.600000000000001,0.73,0.133,0.65,100,675,373,7,9.1,29,0,0,29,66.12,0.14,2.1,79.25,986,194,7.4 +2008,11,24,13,30,12.600000000000001,0.55,0.163,0.65,97,535,264,7,9.8,5,0,0,5,71.82000000000001,0.14,2.1,83.15,985,195,7.300000000000001 +2008,11,24,14,30,12.5,0.45,0.192,0.65,73,297,127,7,10.4,4,0,0,4,79.49,0.14,2.2,86.82000000000001,985,195,7 +2008,11,24,15,30,12.4,0.47000000000000003,0.226,0.65,11,6,11,6,10.8,3,0,7,3,88.39,0.14,2.2,89.71000000000001,984,197,6.4 +2008,11,24,16,30,12.4,0.48,0.209,0.65,0,0,0,6,11,0,0,0,0,98.85000000000001,0.14,2.3000000000000003,91.31,984,202,5.5 +2008,11,24,17,30,12.3,0.51,0.196,0.65,0,0,0,6,11.3,0,0,0,0,109.61,0.14,2.3000000000000003,93.53,985,216,4.2 +2008,11,24,18,30,11.8,0.6,0.193,0.65,0,0,0,4,11.200000000000001,0,0,0,0,120.71000000000001,0.14,2.2,95.81,985,242,2.6 +2008,11,24,19,30,11,0.65,0.167,0.65,0,0,0,8,10.5,0,0,0,0,131.84,0.14,2.2,96.51,985,293,1.4000000000000001 +2008,11,24,20,30,10.3,0.7000000000000001,0.148,0.65,0,0,0,4,9.700000000000001,0,0,0,0,142.56,0.14,2.2,96.32000000000001,986,334,0.6000000000000001 +2008,11,24,21,30,9.9,0.77,0.139,0.65,0,0,0,7,9.200000000000001,0,0,0,0,152,0.14,2.1,95.57000000000001,986,261,0.30000000000000004 +2008,11,24,22,30,10,0.79,0.133,0.65,0,0,0,7,8.9,0,0,0,0,158.11,0.14,2.1,92.95,985,188,0.5 +2008,11,24,23,30,10.200000000000001,0.74,0.146,0.65,0,0,0,7,9.1,0,0,0,0,157.78,0.14,2.1,92.64,985,229,0.6000000000000001 +2008,11,25,0,30,10.100000000000001,0.74,0.161,0.65,0,0,0,6,9,0,0,0,0,151.25,0.14,2,93.11,985,280,0.7000000000000001 +2008,11,25,1,30,9.700000000000001,0.81,0.139,0.65,0,0,0,6,8.700000000000001,0,0,0,0,141.63,0.14,1.9000000000000001,93.42,985,307,0.6000000000000001 +2008,11,25,2,30,9.5,0.92,0.109,0.65,0,0,0,4,8.200000000000001,0,0,0,0,130.86,0.14,1.7000000000000002,91.32000000000001,986,325,0.5 +2008,11,25,3,30,9.5,1.03,0.08700000000000001,0.65,0,0,0,4,7.7,0,0,0,0,119.73,0.14,1.6,88.51,986,333,0.4 +2008,11,25,4,30,9.3,1.08,0.077,0.65,0,0,0,0,7.5,0,0,0,0,108.66,0.14,1.5,88.62,987,336,0.4 +2008,11,25,5,30,9.1,1.09,0.073,0.65,0,0,0,7,7.300000000000001,0,0,0,0,97.96000000000001,0.14,1.5,88.36,988,176,0.4 +2008,11,25,6,30,9.5,1.05,0.075,0.65,18,165,25,7,7.1000000000000005,8,0,7,8,87.65,0.14,1.5,85.26,988,35,0.7000000000000001 +2008,11,25,7,30,10.5,1.07,0.076,0.65,52,542,157,7,7.800000000000001,3,0,0,3,78.83,0.14,1.5,83.64,989,66,1.3 +2008,11,25,8,30,11.600000000000001,1.1,0.075,0.65,69,705,294,7,8.4,60,1,0,60,71.34,0.14,1.5,80.98,989,83,1.3 +2008,11,25,9,30,12.600000000000001,1.18,0.074,0.65,77,779,395,7,8.5,55,0,0,55,65.88,0.14,1.6,75.9,990,110,1.1 +2008,11,25,10,30,13.100000000000001,1.19,0.075,0.65,81,805,446,7,8.3,216,84,0,254,63.04,0.14,1.7000000000000002,72.65,990,147,1.2000000000000002 +2008,11,25,11,30,13.200000000000001,1.17,0.075,0.65,81,803,444,6,8.200000000000001,36,0,0,36,63.18,0.14,1.7000000000000002,71.54,990,168,1.5 +2008,11,25,12,30,12.8,1.2,0.074,0.65,76,771,387,6,8.200000000000001,12,0,0,12,66.28,0.14,1.7000000000000002,73.62,990,173,1.5 +2008,11,25,13,30,12.100000000000001,1.2,0.078,0.65,68,686,280,6,8.6,62,2,0,62,71.95,0.14,1.7000000000000002,79.04,991,188,1.1 +2008,11,25,14,30,11.200000000000001,1.19,0.082,0.65,50,507,142,6,9.1,3,0,0,3,79.60000000000001,0.14,1.7000000000000002,87.15,992,213,0.9 +2008,11,25,15,30,10.5,1.19,0.092,0.65,13,98,16,7,8.4,2,0,7,2,88.47,0.14,1.7000000000000002,86.64,992,241,0.8 +2008,11,25,16,30,10.3,1.2,0.101,0.65,0,0,0,6,8,0,0,0,0,98.93,0.14,1.7000000000000002,85.88,993,270,0.6000000000000001 +2008,11,25,17,30,10.100000000000001,1.2,0.10400000000000001,0.65,0,0,0,6,8,0,0,0,0,109.68,0.14,1.7000000000000002,86.94,994,315,0.4 +2008,11,25,18,30,9.700000000000001,1.23,0.13,0.65,0,0,0,7,7.9,0,0,0,0,120.77,0.14,1.7000000000000002,88.28,996,202,0.4 +2008,11,25,19,30,9.1,1.26,0.146,0.65,0,0,0,8,7.5,0,0,0,0,131.9,0.14,1.6,89.56,997,74,0.6000000000000001 +2008,11,25,20,30,8.6,1.29,0.139,0.65,0,0,0,4,7,0,0,0,0,142.63,0.14,1.6,89.64,998,92,0.8 +2008,11,25,21,30,8.200000000000001,1.33,0.137,0.65,0,0,0,7,6.6000000000000005,0,0,0,0,152.11,0.14,1.5,89.48,998,100,1 +2008,11,25,22,30,8.200000000000001,1.37,0.128,0.65,0,0,0,7,6.1000000000000005,0,0,0,0,158.28,0.14,1.4000000000000001,86.71000000000001,999,107,0.9 +2008,11,25,23,30,8.6,1.3800000000000001,0.121,0.65,0,0,0,0,5.9,0,0,0,0,157.99,0.14,1.4000000000000001,83.19,999,109,0.8 +2008,11,26,0,30,8.9,1.36,0.131,0.65,0,0,0,0,5.800000000000001,0,0,0,0,151.44,0.14,1.3,80.99,1000,99,0.6000000000000001 +2008,11,26,1,30,8.9,1.37,0.132,0.65,0,0,0,0,5.7,0,0,0,0,141.82,0.14,1.3,80.47,1000,81,0.6000000000000001 +2008,11,26,2,30,8.6,1.3900000000000001,0.122,0.65,0,0,0,0,5.4,0,0,0,0,131.03,0.14,1.3,80.44,1001,66,0.7000000000000001 +2008,11,26,3,30,8.1,1.41,0.127,0.65,0,0,0,0,5.2,0,0,0,0,119.9,0.14,1.3,82.09,1001,59,1 +2008,11,26,4,30,7.5,1.44,0.124,0.65,0,0,0,0,4.9,0,0,0,0,108.84,0.14,1.2000000000000002,83.68,1002,60,1.2000000000000002 +2008,11,26,5,30,7,1.46,0.115,0.65,0,0,0,1,4.6000000000000005,0,0,0,0,98.14,0.14,1.2000000000000002,84.69,1003,63,1.3 +2008,11,26,6,30,7.7,1.48,0.114,0.65,17,136,22,0,4.4,17,136,0,22,87.82000000000001,0.14,1.2000000000000002,79.41,1003,68,1.2000000000000002 +2008,11,26,7,30,9.3,1.48,0.115,0.65,57,494,152,6,5.9,3,0,0,3,79.02,0.14,1.3,79.34,1004,75,1.5 +2008,11,26,8,30,10.9,1.49,0.115,0.65,79,659,287,8,6.1000000000000005,163,188,0,222,71.54,0.14,1.3,72.10000000000001,1005,93,1.7000000000000002 +2008,11,26,9,30,12.200000000000001,1.54,0.1,0.65,85,757,392,2,6.4,238,91,0,275,66.09,0.14,1.3,67.48,1006,127,1.5 +2008,11,26,10,30,13,1.56,0.089,0.65,86,802,447,0,5.9,86,802,0,447,63.230000000000004,0.14,1.3,62.25,1006,160,1.5 +2008,11,26,11,30,13.100000000000001,1.56,0.085,0.65,84,805,445,0,5.300000000000001,84,805,0,445,63.36,0.14,1.3,59.31,1006,179,1.5 +2008,11,26,12,30,13,1.22,0.101,0.65,86,745,384,0,5,86,745,0,384,66.44,0.14,1.3,58.35,1006,190,1.4000000000000001 +2008,11,26,13,30,12.700000000000001,1.24,0.101,0.65,75,662,278,0,4.9,75,662,0,278,72.08,0.14,1.3,59.03,1007,196,1.1 +2008,11,26,14,30,11.9,1.24,0.101,0.65,54,485,140,3,6,27,0,0,27,79.7,0.14,1.3,67.29,1007,195,0.7000000000000001 +2008,11,26,15,30,11.100000000000001,1.25,0.097,0.65,13,97,15,7,6.1000000000000005,3,0,7,3,88.54,0.14,1.3,71.46000000000001,1008,150,0.5 +2008,11,26,16,30,10.3,1.26,0.092,0.65,0,0,0,8,5,0,0,0,0,98.99000000000001,0.14,1.3,69.61,1008,100,0.7000000000000001 +2008,11,26,17,30,9.4,1.26,0.08600000000000001,0.65,0,0,0,5,5,0,0,0,0,109.74000000000001,0.14,1.3,74.05,1009,96,1.1 +2008,11,26,18,30,8.6,1.26,0.084,0.65,0,0,0,3,5,0,0,0,0,120.82000000000001,0.14,1.3,78.03,1009,98,1.3 +2008,11,26,19,30,8,1.25,0.08600000000000001,0.65,0,0,0,0,5,0,0,0,0,131.95,0.14,1.4000000000000001,81.36,1010,100,1.5 +2008,11,26,20,30,7.7,1.26,0.088,0.65,0,0,0,1,4.9,0,0,0,0,142.70000000000002,0.14,1.4000000000000001,82.5,1010,100,1.6 +2008,11,26,21,30,7.5,1.28,0.096,0.65,0,0,0,3,4.800000000000001,0,0,0,0,152.21,0.14,1.4000000000000001,82.9,1011,101,1.6 +2008,11,26,22,30,7.6000000000000005,1.29,0.10200000000000001,0.65,0,0,0,1,4.7,0,0,0,0,158.44,0.14,1.4000000000000001,81.96000000000001,1011,104,1.5 +2008,11,26,23,30,7.7,1.3,0.10200000000000001,0.65,0,0,0,1,4.9,0,0,0,0,158.18,0.14,1.4000000000000001,82.19,1011,107,1.4000000000000001 +2008,11,27,0,30,7.5,1.3,0.114,0.65,0,0,0,0,4.7,0,0,0,0,151.63,0.14,1.3,82.47,1011,109,1.4000000000000001 +2008,11,27,1,30,7.300000000000001,1.31,0.11800000000000001,0.65,0,0,0,0,4.3,0,0,0,0,142,0.14,1.3,81.31,1011,108,1.4000000000000001 +2008,11,27,2,30,7.2,1.33,0.108,0.65,0,0,0,0,4,0,0,0,0,131.21,0.14,1.3,80.34,1011,104,1.3 +2008,11,27,3,30,7,1.35,0.10400000000000001,0.65,0,0,0,0,3.9000000000000004,0,0,0,0,120.07000000000001,0.14,1.2000000000000002,80.39,1011,97,1.3 +2008,11,27,4,30,6.7,1.37,0.095,0.65,0,0,0,0,3.6,0,0,0,0,109.01,0.14,1.2000000000000002,80.56,1011,92,1.3 +2008,11,27,5,30,6.4,1.3900000000000001,0.085,0.65,0,0,0,0,3.1,0,0,0,0,98.32000000000001,0.14,1.2000000000000002,79.42,1012,90,1.4000000000000001 +2008,11,27,6,30,7.1000000000000005,1.37,0.08,0.65,16,160,21,0,2.6,16,160,0,21,87.99,0.14,1.2000000000000002,73.14,1012,94,1.5 +2008,11,27,7,30,9.200000000000001,1.34,0.075,0.65,50,553,154,0,4.1000000000000005,50,553,0,154,79.21000000000001,0.14,1.1,70.65,1012,100,2 +2008,11,27,8,30,11.5,1.3,0.07200000000000001,0.65,67,715,291,0,3.2,67,715,0,291,71.74,0.14,1.2000000000000002,56.74,1012,116,2.5 +2008,11,27,9,30,13.200000000000001,1.33,0.068,0.65,74,797,395,0,3.5,74,797,0,395,66.28,0.14,1.2000000000000002,51.83,1012,137,2.7 +2008,11,27,10,30,14.100000000000001,1.22,0.073,0.65,81,816,446,0,4.3,81,816,0,446,63.42,0.14,1.3,51.5,1012,143,2.9000000000000004 +2008,11,27,11,30,14.600000000000001,1.08,0.08,0.65,83,801,440,8,4.800000000000001,218,231,0,321,63.53,0.14,1.4000000000000001,51.65,1011,140,2.7 +2008,11,27,12,30,14.700000000000001,0.97,0.09,0.65,83,747,379,7,5,151,523,7,359,66.59,0.14,1.5,52.22,1010,133,2.4000000000000004 +2008,11,27,13,30,14.3,0.87,0.1,0.65,75,642,271,2,5.2,177,92,0,205,72.2,0.14,1.6,54.160000000000004,1010,124,2 +2008,11,27,14,30,12.9,0.73,0.117,0.65,57,423,132,0,6.800000000000001,57,423,0,132,79.8,0.14,1.6,66.56,1009,116,1.6 +2008,11,27,15,30,11.200000000000001,0.55,0.157,0.65,11,17,11,5,7.1000000000000005,2,0,7,2,88.61,0.14,1.7000000000000002,75.83,1008,111,1.7000000000000002 +2008,11,27,16,30,10.200000000000001,0.46,0.193,0.65,0,0,0,3,6.2,0,0,0,0,99.06,0.14,1.8,76.26,1008,111,2 +2008,11,27,17,30,9.8,0.49,0.216,0.65,0,0,0,0,6.300000000000001,0,0,0,0,109.79,0.14,1.9000000000000001,78.86,1008,114,2.4000000000000004 +2008,11,27,18,30,9.8,0.55,0.223,0.65,0,0,0,0,6.2,0,0,0,0,120.87,0.14,1.9000000000000001,78.5,1007,113,3.1 +2008,11,27,19,30,9.4,0.56,0.211,0.65,0,0,0,3,5.800000000000001,0,0,0,0,132,0.14,1.9000000000000001,78.3,1006,106,3.5 +2008,11,27,20,30,8.700000000000001,0.55,0.196,0.65,0,0,0,7,5.300000000000001,0,0,0,0,142.77,0.14,1.9000000000000001,78.94,1005,102,3.5 +2008,11,27,21,30,8.6,0.54,0.216,0.65,0,0,0,7,5.1000000000000005,0,0,0,0,152.31,0.14,2,78.54,1005,105,3.7 +2008,11,27,22,30,9.1,0.61,0.242,0.65,0,0,0,8,5.5,0,0,0,0,158.59,0.14,2.2,78.37,1004,109,4.6000000000000005 +2008,11,27,23,30,9.5,0.7000000000000001,0.275,0.65,0,0,0,7,6.2,0,0,0,0,158.38,0.14,2.3000000000000003,80.10000000000001,1004,110,5.5 +2008,11,28,0,30,9.700000000000001,0.6900000000000001,0.325,0.65,0,0,0,6,6.800000000000001,0,0,0,0,151.82,0.14,2.3000000000000003,82.17,1003,111,6 +2008,11,28,1,30,9.8,0.62,0.336,0.65,0,0,0,6,7.2,0,0,0,0,142.17000000000002,0.14,2.4000000000000004,83.96000000000001,1002,113,6.1000000000000005 +2008,11,28,2,30,9.9,0.55,0.325,0.65,0,0,0,6,7.5,0,0,0,0,131.38,0.14,2.4000000000000004,85.11,1001,115,6.300000000000001 +2008,11,28,3,30,10.100000000000001,0.55,0.324,0.65,0,0,0,6,7.800000000000001,0,0,0,0,120.24000000000001,0.14,2.4000000000000004,85.76,1000,116,6.7 +2008,11,28,4,30,10.3,0.53,0.326,0.65,0,0,0,7,8.1,0,0,0,0,109.19,0.14,2.4000000000000004,86.07000000000001,998,115,6.9 +2008,11,28,5,30,10.5,0.43,0.334,0.65,0,0,0,7,8.200000000000001,0,0,0,0,98.5,0.14,2.4000000000000004,85.38,997,113,7.2 +2008,11,28,6,30,10.9,0.35000000000000003,0.34400000000000003,0.65,7,1,7,7,8.1,7,1,5,7,88.17,0.14,2.4000000000000004,83.13,996,114,7.800000000000001 +2008,11,28,7,30,11.600000000000001,0.34,0.352,0.65,86,148,113,7,8.3,3,0,0,3,79.4,0.14,2.5,79.97,995,118,8.6 +2008,11,28,8,30,12.3,0.3,0.362,0.65,141,303,235,5,8.8,10,0,0,10,71.93,0.14,2.5,79.29,994,123,9.1 +2008,11,28,9,30,12.8,0.53,0.263,0.65,141,507,344,7,9.600000000000001,7,0,0,7,66.47,0.14,2.5,80.73,993,127,9.3 +2008,11,28,10,30,13.3,0.61,0.291,0.65,157,526,391,6,10.5,8,0,0,8,63.61,0.14,2.6,82.98,991,132,9.1 +2008,11,28,11,30,14.200000000000001,0.49,0.339,0.65,172,474,382,3,11.700000000000001,245,25,0,257,63.690000000000005,0.14,2.7,85.09,989,142,8.6 +2008,11,28,12,30,15.200000000000001,0.38,0.555,0.65,204,276,313,6,13.200000000000001,7,0,0,7,66.73,0.14,2.5,88.03,987,156,7.9 +2008,11,28,13,30,15.9,0.29,0.48,0.65,158,221,225,6,14.600000000000001,5,0,0,5,72.32000000000001,0.14,2,91.73,986,170,6.800000000000001 +2008,11,28,14,30,15.600000000000001,0.23,0.303,0.65,84,166,113,7,15,14,0,0,14,79.89,0.14,1.6,96.22,986,182,5.6000000000000005 +2008,11,28,15,30,14.4,0.22,0.23500000000000001,0.65,8,1,8,8,13.9,2,0,7,2,88.69,0.14,1.4000000000000001,96.8,986,189,4.3 +2008,11,28,16,30,13.100000000000001,0.23,0.212,0.65,0,0,0,0,12.4,0,0,0,0,99.11,0.14,1.5,95.77,986,189,3.4000000000000004 +2008,11,28,17,30,12.8,0.27,0.188,0.65,0,0,0,3,11.4,0,0,0,0,109.83,0.14,1.7000000000000002,91.37,986,188,3.5 +2008,11,28,18,30,13,0.34,0.194,0.65,0,0,0,6,11,0,0,0,0,120.91,0.14,1.8,87.81,986,191,4.2 +2008,11,28,19,30,13.200000000000001,0.42,0.20800000000000002,0.65,0,0,0,9,11,0,0,0,0,132.04,0.14,1.8,86.37,986,196,4.7 +2008,11,28,20,30,12.9,0.49,0.20600000000000002,0.65,0,0,0,6,10.700000000000001,0,0,0,0,142.82,0.14,1.7000000000000002,86.71000000000001,987,199,4.800000000000001 +2008,11,28,21,30,12.600000000000001,0.51,0.20700000000000002,0.65,0,0,0,1,10.3,0,0,0,0,152.4,0.14,1.6,85.74,987,198,4.800000000000001 +2008,11,28,22,30,12.3,0.48,0.21,0.65,0,0,0,3,9.9,0,0,0,0,158.74,0.14,1.5,85.37,986,196,4.800000000000001 +2008,11,28,23,30,12.100000000000001,0.48,0.188,0.65,0,0,0,4,9.700000000000001,0,0,0,0,158.57,0.14,1.5,85.25,986,194,4.800000000000001 +2008,11,29,0,30,12,0.52,0.188,0.65,0,0,0,3,9.700000000000001,0,0,0,0,152.01,0.14,1.6,85.67,986,190,4.6000000000000005 +2008,11,29,1,30,11.9,0.5,0.265,0.65,0,0,0,4,10,0,0,0,0,142.35,0.14,1.8,88.29,986,191,4.3 +2008,11,29,2,30,12,0.49,0.363,0.65,0,0,0,1,10.5,0,0,0,0,131.55,0.14,1.9000000000000001,90.35000000000001,986,198,3.6 +2008,11,29,3,30,11.8,0.52,0.40800000000000003,0.65,0,0,0,4,10.600000000000001,0,0,0,0,120.41,0.14,2,92.59,986,210,2.7 +2008,11,29,4,30,11.700000000000001,0.52,0.40900000000000003,0.65,0,0,0,4,10.600000000000001,0,0,0,0,109.36,0.14,2.1,92.94,987,235,2.1 +2008,11,29,5,30,12,0.52,0.381,0.65,0,0,0,3,10.8,0,0,0,0,98.67,0.14,2.1,92.29,989,268,3.1 +2008,11,29,6,30,12.200000000000001,0.5700000000000001,0.319,0.65,9,3,9,3,11,3,0,7,3,88.34,0.14,2,92.13,991,284,4.800000000000001 +2008,11,29,7,30,12.4,0.65,0.17200000000000001,0.65,68,344,131,8,10.4,3,0,0,3,79.59,0.14,1.7000000000000002,87.59,993,286,5.1000000000000005 +2008,11,29,8,30,13,0.71,0.125,0.65,84,602,268,7,10,6,0,0,6,72.12,0.14,1.6,82.15,994,278,4.5 +2008,11,29,9,30,13.600000000000001,0.79,0.12,0.65,95,703,373,4,9.5,27,0,0,27,66.66,0.14,1.5,76.03,995,259,4 +2008,11,29,10,30,14,0.81,0.10200000000000001,0.65,93,766,431,4,8.9,18,0,0,18,63.78,0.14,1.4000000000000001,71.35000000000001,995,237,4 +2008,11,29,11,30,14.200000000000001,0.81,0.081,0.65,85,796,436,3,8.200000000000001,85,0,0,85,63.85,0.14,1.3,67.17,995,220,4.2 +2008,11,29,12,30,14.4,0.6900000000000001,0.091,0.65,85,743,377,1,7.5,85,743,0,377,66.86,0.14,1.3,63.36,995,204,4.2 +2008,11,29,13,30,14.3,0.76,0.084,0.65,72,670,274,2,7.300000000000001,99,1,0,100,72.43,0.14,1.3,62.57,995,190,4 +2008,11,29,14,30,13.3,0.78,0.08600000000000001,0.65,52,481,136,3,7.7,34,0,0,34,79.97,0.14,1.4000000000000001,68.92,995,179,3.3000000000000003 +2008,11,29,15,30,12.4,0.78,0.099,0.65,13,55,14,0,8.5,13,55,0,14,88.74,0.14,1.5,77.26,995,174,2.9000000000000004 +2008,11,29,16,30,12.700000000000001,0.76,0.112,0.65,0,0,0,4,8.8,0,0,0,0,99.16,0.14,1.5,77.24,995,176,3.5 +2008,11,29,17,30,13.3,0.71,0.116,0.65,0,0,0,5,9.1,0,0,0,0,109.87,0.14,1.6,75.62,995,181,4.3 +2008,11,29,18,30,13.600000000000001,0.7000000000000001,0.137,0.65,0,0,0,7,9.600000000000001,0,0,0,0,120.94,0.14,1.7000000000000002,76.84,996,181,5.1000000000000005 +2008,11,29,19,30,13.5,0.66,0.145,0.65,0,0,0,7,10.4,0,0,0,0,132.08,0.14,1.8,81.66,996,180,5.7 +2008,11,29,20,30,13.200000000000001,0.68,0.117,0.65,0,0,0,7,10.8,0,0,0,0,142.87,0.14,1.9000000000000001,85.42,996,180,6.1000000000000005 +2008,11,29,21,30,13,0.68,0.109,0.65,0,0,0,7,10.8,0,0,0,0,152.48,0.14,1.9000000000000001,86.71000000000001,996,181,6.300000000000001 +2008,11,29,22,30,13,0.65,0.115,0.65,0,0,0,7,10.600000000000001,0,0,0,0,158.88,0.14,1.8,85.09,996,181,6.5 +2008,11,29,23,30,12.9,0.64,0.121,0.65,0,0,0,6,10,0,0,0,0,158.75,0.14,1.8,82.48,996,179,6.300000000000001 +2008,11,30,0,30,12.8,0.68,0.11900000000000001,0.65,0,0,0,6,9.700000000000001,0,0,0,0,152.19,0.14,1.8,81.53,996,174,6.2 +2008,11,30,1,30,12.9,0.66,0.12,0.65,0,0,0,6,9.8,0,0,0,0,142.52,0.14,1.9000000000000001,81.19,996,171,6.300000000000001 +2008,11,30,2,30,13.100000000000001,0.5700000000000001,0.137,0.65,0,0,0,6,10.200000000000001,0,0,0,0,131.71,0.14,2.1,82.72,996,173,6.2 +2008,11,30,3,30,13.4,0.48,0.183,0.65,0,0,0,8,11,0,0,0,0,120.58,0.14,2.1,85.24,995,183,5.5 +2008,11,30,4,30,13.5,0.42,0.20600000000000002,0.65,0,0,0,8,11.5,0,0,0,0,109.52,0.14,2.1,87.78,996,195,4.6000000000000005 +2008,11,30,5,30,13.5,0.41000000000000003,0.181,0.65,0,0,0,7,11.600000000000001,0,0,0,0,98.84,0.14,2,88.26,996,203,3.7 +2008,11,30,6,30,13.4,0.47000000000000003,0.166,0.65,12,14,13,7,11.4,3,0,7,3,88.5,0.14,1.9000000000000001,87.93,996,207,3.1 +2008,11,30,7,30,13.700000000000001,0.51,0.14300000000000002,0.65,64,363,128,7,11.5,3,0,0,3,79.77,0.14,1.9000000000000001,86.39,997,207,3.3000000000000003 +2008,11,30,8,30,14.3,0.54,0.123,0.65,84,586,263,6,11.700000000000001,5,0,0,5,72.3,0.14,1.8,84.3,998,207,4 +2008,11,30,9,30,14.9,0.56,0.116,0.65,95,690,366,7,11.8,192,113,0,237,66.84,0.14,1.7000000000000002,81.45,998,206,4.9 +2008,11,30,10,30,15.100000000000001,0.48,0.11900000000000001,0.65,103,722,420,7,11.3,211,145,0,275,63.95,0.14,1.6,78.16,998,206,5.300000000000001 +2008,11,30,11,30,15.200000000000001,0.47000000000000003,0.121,0.65,103,719,418,3,10.600000000000001,95,0,0,95,64,0.14,1.6,74.05,998,201,5 +2008,11,30,12,30,15.100000000000001,0.51,0.117,0.65,96,687,364,0,10.8,96,687,0,364,66.99,0.14,1.6,75.32000000000001,997,192,4.6000000000000005 +2008,11,30,13,30,14.700000000000001,0.43,0.14200000000000002,0.65,91,552,257,7,11.200000000000001,112,11,0,116,72.53,0.14,1.6,79.78,997,182,4.2 +2008,11,30,14,30,14.100000000000001,0.31,0.2,0.65,73,263,118,7,11.5,42,1,7,42,80.05,0.14,1.7000000000000002,84.16,997,171,4.1000000000000005 +2008,11,30,15,30,13.8,0.21,0.296,0.65,5,0,5,7,11.5,3,0,7,3,88.8,0.14,1.8,86.04,997,160,4.3 +2008,11,30,16,30,13.600000000000001,0.16,0.395,0.65,0,0,0,7,11.4,0,0,0,0,99.2,0.14,1.8,86.81,997,151,4.9 +2008,11,30,17,30,13.5,0.14,0.456,0.65,0,0,0,7,11.100000000000001,0,0,0,0,109.9,0.14,1.9000000000000001,85.38,996,149,5.6000000000000005 +2008,11,30,18,30,13.5,0.14,0.457,0.65,0,0,0,7,10.9,0,0,0,0,120.97,0.14,1.9000000000000001,84.2,996,150,6.4 +2008,11,30,19,30,13.700000000000001,0.15,0.418,0.65,0,0,0,6,10.8,0,0,0,0,132.11,0.14,1.9000000000000001,82.63,996,152,7.1000000000000005 +2008,11,30,20,30,13.8,0.16,0.366,0.65,0,0,0,6,10.600000000000001,0,0,0,0,142.91,0.14,1.9000000000000001,81.24,995,152,7.7 +2008,11,30,21,30,13.8,0.19,0.325,0.65,0,0,0,7,10.5,0,0,0,0,152.55,0.14,1.9000000000000001,80.73,994,151,8 +2008,11,30,22,30,13.9,0.21,0.291,0.65,0,0,0,8,10.600000000000001,0,0,0,0,159.01,0.14,1.9000000000000001,80.33,993,152,8.3 +2008,11,30,23,30,14,0.2,0.279,0.65,0,0,0,4,10.600000000000001,0,0,0,0,158.92000000000002,0.14,1.9000000000000001,80.09,992,158,8.6 +2008,12,1,0,30,14.200000000000001,0.16,0.34400000000000003,0.65,0,0,0,4,10.5,0,0,0,0,152.37,0.14,1.9000000000000001,78.25,992,173,8.200000000000001 +2008,12,1,1,30,14,0.14,0.434,0.65,0,0,0,7,10,0,0,0,0,142.69,0.14,1.9000000000000001,77,992,190,7.9 +2008,12,1,2,30,13.5,0.15,0.398,0.65,0,0,0,4,9.8,0,0,0,0,131.88,0.14,1.8,78.15,992,204,8 +2008,12,1,3,30,12.700000000000001,0.22,0.257,0.65,0,0,0,4,8.8,0,0,0,0,120.74000000000001,0.14,1.5,77.37,992,213,7.7 +2008,12,1,4,30,11.8,0.27,0.16,0.65,0,0,0,3,7.9,0,0,0,0,109.69,0.14,1.4000000000000001,76.97,993,218,6.800000000000001 +2008,12,1,5,30,11.5,0.32,0.14100000000000001,0.65,0,0,0,4,7.4,0,0,0,0,99.01,0.14,1.4000000000000001,76.17,994,219,6 +2008,12,1,6,30,11.600000000000001,0.37,0.145,0.65,12,15,13,4,7.4,5,0,7,5,88.65,0.14,1.4000000000000001,75.35000000000001,994,218,5.7 +2008,12,1,7,30,12,0.35000000000000003,0.16,0.65,68,326,125,4,7.6000000000000005,5,0,0,5,79.94,0.14,1.5,74.34,995,218,5.9 +2008,12,1,8,30,12.4,0.33,0.178,0.65,103,499,253,0,7.7,103,499,0,253,72.48,0.14,1.5,73.25,995,218,6.2 +2008,12,1,9,30,12.700000000000001,0.41000000000000003,0.17200000000000001,0.65,117,613,356,0,7.7,117,613,0,356,67.01,0.14,1.4000000000000001,71.7,996,218,6.300000000000001 +2008,12,1,10,30,13.100000000000001,0.39,0.157,0.65,119,672,412,1,7.5,119,672,0,412,64.11,0.14,1.4000000000000001,68.94,996,217,6.5 +2008,12,1,11,30,13.200000000000001,0.38,0.14100000000000001,0.65,113,694,416,5,7.1000000000000005,222,19,0,230,64.15,0.14,1.3,66.69,997,217,6.4 +2008,12,1,12,30,13.100000000000001,0.46,0.133,0.65,102,669,362,5,6.800000000000001,177,10,1,181,67.11,0.14,1.3,65.75,997,218,5.9 +2008,12,1,13,30,12.9,0.46,0.122,0.65,85,590,261,5,6.800000000000001,125,4,1,126,72.62,0.14,1.3,66.37,997,217,5.1000000000000005 +2008,12,1,14,30,12.100000000000001,0.45,0.112,0.65,58,409,129,5,7,57,0,1,57,80.12,0.14,1.3,71.12,998,215,4 +2008,12,1,15,30,11.200000000000001,0.49,0.111,0.65,12,28,12,5,7.2,4,0,1,4,88.84,0.14,1.3,76.54,998,215,3.1 +2008,12,1,16,30,10.8,0.49,0.111,0.65,0,0,0,5,7.2,0,0,1,0,99.24000000000001,0.14,1.3,78.63,999,215,2.7 +2008,12,1,17,30,10.8,0.49,0.11,0.65,0,0,0,5,7.4,0,0,1,0,109.93,0.14,1.4000000000000001,79.43,999,214,2.5 +2008,12,1,18,30,10.700000000000001,0.53,0.121,0.65,0,0,0,5,7.5,0,0,1,0,120.99000000000001,0.14,1.5,80.79,999,212,2.2 +2008,12,1,19,30,10.9,0.52,0.127,0.65,0,0,0,5,7.7,0,0,1,0,132.13,0.14,1.5,80.51,999,208,2.2 +2008,12,1,20,30,11,0.5,0.125,0.65,0,0,0,5,8,0,0,1,0,142.95000000000002,0.14,1.5,81.52,1000,206,2.2 +2008,12,1,21,30,11,0.55,0.13,0.65,0,0,0,5,8,0,0,1,0,152.62,0.14,1.5,81.95,1000,206,2.2 +2008,12,1,22,30,10.8,0.59,0.122,0.65,0,0,0,5,7.9,0,0,1,0,159.13,0.14,1.6,82.37,1000,207,2.1 +2008,12,1,23,30,10.600000000000001,0.6,0.115,0.65,0,0,0,5,7.800000000000001,0,0,1,0,159.09,0.14,1.6,82.86,1000,209,2.1 +2008,12,2,0,30,10.3,0.63,0.11800000000000001,0.65,0,0,0,6,7.9,0,0,8,0,152.54,0.14,1.6,84.91,999,208,2 +2008,12,2,1,30,9.8,0.66,0.108,0.65,0,0,0,6,7.7,0,0,8,0,142.85,0.14,1.5,86.82000000000001,999,205,1.8 +2008,12,2,2,30,9.5,0.7000000000000001,0.099,0.65,0,0,0,6,7.300000000000001,0,0,8,0,132.04,0.14,1.5,86.06,999,201,1.7000000000000002 +2008,12,2,3,30,9.3,0.76,0.097,0.65,0,0,0,6,7.1000000000000005,0,0,8,0,120.9,0.14,1.5,86.24,999,195,1.6 +2008,12,2,4,30,9.3,0.79,0.09,0.65,0,0,0,6,7.1000000000000005,0,0,8,0,109.85000000000001,0.14,1.5,85.99,999,189,1.6 +2008,12,2,5,30,9.3,0.8,0.08600000000000001,0.65,0,0,0,6,7,0,0,8,0,99.18,0.14,1.6,85.52,999,181,1.5 +2008,12,2,6,30,9.8,0.81,0.097,0.65,12,54,13,3,7.1000000000000005,1,0,8,1,88.8,0.14,1.6,83.26,1000,174,1.6 +2008,12,2,7,30,10.700000000000001,0.78,0.112,0.65,56,421,128,6,8.1,14,0,8,14,80.11,0.14,1.7000000000000002,84.14,1000,170,1.9000000000000001 +2008,12,2,8,30,11.100000000000001,0.74,0.11800000000000001,0.65,80,596,258,6,8.700000000000001,25,0,8,25,72.65,0.14,1.8,85.24,1000,170,2.3000000000000003 +2008,12,2,9,30,11.200000000000001,0.77,0.132,0.65,97,669,357,6,8.9,32,0,8,32,67.18,0.14,1.8,85.77,1000,173,2.7 +2008,12,2,10,30,11.200000000000001,0.76,0.138,0.65,106,699,409,6,9.1,34,0,8,34,64.27,0.14,1.8,86.63,1000,176,2.9000000000000004 +2008,12,2,11,30,11.100000000000001,0.74,0.13,0.65,103,708,410,6,9.200000000000001,33,0,8,33,64.28,0.14,1.8,87.91,999,181,3.1 +2008,12,2,12,30,10.9,0.91,0.116,0.65,91,694,359,6,9.1,27,0,8,27,67.22,0.14,1.8,88.91,999,188,2.9000000000000004 +2008,12,2,13,30,10.5,0.91,0.117,0.65,79,603,258,6,9,19,0,8,19,72.71000000000001,0.14,1.8,90.15,999,195,2.3000000000000003 +2008,12,2,14,30,10,0.9,0.116,0.65,55,417,126,6,8.700000000000001,11,0,8,11,80.18,0.14,1.8,91.55,999,200,1.5 +2008,12,2,15,30,9.700000000000001,0.9400000000000001,0.13,0.65,11,36,12,6,8.4,1,0,8,1,88.87,0.14,1.8,91.5,999,198,0.9 +2008,12,2,16,30,9.600000000000001,0.96,0.133,0.65,0,0,0,6,8.1,0,0,8,0,99.27,0.14,1.8,90.26,999,185,0.7000000000000001 +2008,12,2,17,30,9.4,0.96,0.122,0.65,0,0,0,6,7.800000000000001,0,0,8,0,109.95,0.14,1.8,89.8,999,168,0.7000000000000001 +2008,12,2,18,30,9.200000000000001,0.99,0.11800000000000001,0.65,0,0,0,6,7.6000000000000005,0,0,8,0,121.01,0.14,1.7000000000000002,89.68,999,147,0.8 +2008,12,2,19,30,8.9,1.03,0.11,0.65,0,0,0,6,7.300000000000001,0,0,8,0,132.15,0.14,1.7000000000000002,89.86,998,128,0.9 +2008,12,2,20,30,8.5,1.05,0.101,0.65,0,0,0,6,7.1000000000000005,0,0,8,0,142.98,0.14,1.6,90.64,998,116,1.1 +2008,12,2,21,30,8.200000000000001,1.07,0.097,0.65,0,0,0,6,6.800000000000001,0,0,8,0,152.68,0.14,1.5,90.77,998,108,1.2000000000000002 +2008,12,2,22,30,7.9,1.1,0.089,0.65,0,0,0,6,6.4,0,0,8,0,159.24,0.14,1.4000000000000001,90.24,997,103,1.2000000000000002 +2008,12,2,23,30,7.5,1.12,0.081,0.65,0,0,0,6,5.9,0,0,8,0,159.26,0.14,1.3,89.87,997,100,1.2000000000000002 +2008,12,3,0,30,7.300000000000001,1.17,0.07100000000000001,0.65,0,0,0,6,5.4,0,0,8,0,152.71,0.14,1.2000000000000002,87.88,997,94,1 +2008,12,3,1,30,7.2,1.21,0.064,0.65,0,0,0,6,4.6000000000000005,0,0,8,0,143.02,0.14,1.1,83.57000000000001,997,76,0.9 +2008,12,3,2,30,7.1000000000000005,1.21,0.064,0.65,0,0,0,6,4.3,0,0,8,0,132.2,0.14,1.1,82.10000000000001,996,44,0.9 +2008,12,3,3,30,6.7,1.19,0.067,0.65,0,0,0,6,4.1000000000000005,0,0,8,0,121.06,0.14,1.1,83.56,996,18,1.1 +2008,12,3,4,30,6.2,1.19,0.068,0.65,0,0,0,6,4.2,0,0,8,0,110.01,0.14,1.1,86.98,997,12,1.3 +2008,12,3,5,30,5.9,1.22,0.068,0.65,0,0,0,6,4.3,0,0,8,0,99.34,0.14,1.1,89.66,997,14,1.4000000000000001 +2008,12,3,6,30,6.6000000000000005,1.25,0.065,0.65,11,115,13,6,4.5,2,0,8,2,88.95,0.14,1,86.24,997,16,1.5 +2008,12,3,7,30,8.3,1.28,0.061,0.65,44,548,136,3,5.800000000000001,20,0,8,20,80.28,0.14,1,84.31,997,16,2 +2008,12,3,8,30,9.9,1.3,0.057,0.65,60,727,275,6,6.7,33,0,8,33,72.82000000000001,0.14,1,80.61,997,9,2.4000000000000004 +2008,12,3,9,30,11.3,1.18,0.056,0.65,68,811,381,6,7.1000000000000005,63,1,8,63,67.34,0.14,0.9,75.2,997,171,2.2 +2008,12,3,10,30,12.600000000000001,1.2,0.049,0.65,70,853,438,3,6,133,0,8,133,64.42,0.14,0.9,64.01,996,328,2.2 +2008,12,3,11,30,13.3,1.21,0.047,0.65,69,862,441,3,4.4,164,2,8,164,64.41,0.14,0.8,55,996,313,2.5 +2008,12,3,12,30,13.3,0.89,0.059000000000000004,0.65,71,807,382,3,3.8000000000000003,168,6,8,170,67.32000000000001,0.14,0.8,52.45,995,310,2.9000000000000004 +2008,12,3,13,30,12.600000000000001,0.9400000000000001,0.057,0.65,61,732,277,3,3.7,151,12,8,154,72.79,0.14,0.8,54.660000000000004,995,313,2.9000000000000004 +2008,12,3,14,30,10.600000000000001,0.97,0.056,0.65,44,566,140,3,4.800000000000001,72,2,8,73,80.24,0.14,0.7000000000000001,67.13,995,319,2.4000000000000004 +2008,12,3,15,30,8.5,0.99,0.056,0.65,11,125,14,3,5.2,4,0,8,4,88.91,0.14,0.7000000000000001,79.75,996,329,2.2 +2008,12,3,16,30,7.5,0.99,0.057,0.65,0,0,0,3,4.4,0,0,8,0,99.29,0.14,0.8,80.83,996,342,2.2 +2008,12,3,17,30,7,0.96,0.058,0.65,0,0,0,3,4.2,0,0,8,0,109.96000000000001,0.14,0.8,82.29,997,353,2.2 +2008,12,3,18,30,6.4,0.9400000000000001,0.057,0.65,0,0,0,0,3.9000000000000004,0,0,8,0,121.01,0.14,0.7000000000000001,83.89,997,181,2.1 +2008,12,3,19,30,5.9,0.9,0.058,0.65,0,0,0,3,3.4000000000000004,0,0,8,0,132.16,0.14,0.7000000000000001,84.08,996,9,1.9000000000000001 +2008,12,3,20,30,5.4,0.73,0.07100000000000001,0.65,0,0,0,6,3,0,0,8,0,143,0.14,0.7000000000000001,84.28,996,20,1.7000000000000002 +2008,12,3,21,30,5.1000000000000005,0.59,0.084,0.65,0,0,0,6,2.7,0,0,8,0,152.73,0.14,0.7000000000000001,84.41,996,27,1.6 +2008,12,3,22,30,4.800000000000001,0.53,0.09,0.65,0,0,0,6,2.5,0,0,8,0,159.35,0.14,0.7000000000000001,84.91,996,23,1.6 +2008,12,3,23,30,4.4,0.42,0.106,0.65,0,0,0,6,2.4000000000000004,0,0,8,0,159.41,0.14,0.6000000000000001,86.62,995,21,1.7000000000000002 +2008,12,4,0,30,4.2,0.37,0.117,0.65,0,0,0,6,2.3000000000000003,0,0,8,0,152.87,0.14,0.6000000000000001,87.34,995,22,1.8 +2008,12,4,1,30,4.1000000000000005,0.37,0.11,0.65,0,0,0,6,2.1,0,0,8,0,143.18,0.14,0.6000000000000001,86.81,994,21,2 +2008,12,4,2,30,4.1000000000000005,0.41000000000000003,0.096,0.65,0,0,0,6,2,0,0,8,0,132.35,0.14,0.5,86.07000000000001,993,20,2.1 +2008,12,4,3,30,4.1000000000000005,0.44,0.094,0.65,0,0,0,6,1.9000000000000001,0,0,8,0,121.21000000000001,0.14,0.5,85.46000000000001,993,18,2.3000000000000003 +2008,12,4,4,30,4.1000000000000005,0.41000000000000003,0.105,0.65,0,0,0,6,1.8,0,0,8,0,110.17,0.14,0.5,85.2,993,19,2.5 +2008,12,4,5,30,4,0.38,0.113,0.65,0,0,0,6,1.8,0,0,8,0,99.5,0.14,0.4,85.53,993,22,2.5 +2008,12,4,6,30,4.4,0.4,0.111,0.65,0,0,0,6,1.7000000000000002,0,0,8,0,89.09,0.14,0.5,82.7,993,25,2.3000000000000003 +2008,12,4,7,30,5.5,0.44,0.107,0.65,56,439,129,6,2.1,54,2,8,54,80.44,0.14,0.5,78.61,993,21,2.4000000000000004 +2008,12,4,8,30,6.800000000000001,0.45,0.106,0.65,78,638,265,6,2.6,144,40,8,156,72.98,0.14,0.6000000000000001,74.68,993,181,2.9000000000000004 +2008,12,4,9,30,8.6,0.44,0.10400000000000001,0.65,90,735,371,6,2.9000000000000004,178,345,8,310,67.5,0.14,0.6000000000000001,67.26,992,344,3.5 +2008,12,4,10,30,10.5,0.44,0.10200000000000001,0.65,95,777,428,6,2.9000000000000004,168,513,8,388,64.56,0.14,0.6000000000000001,59.14,992,340,4 +2008,12,4,11,30,11.5,0.45,0.10200000000000001,0.65,95,778,429,6,2.4000000000000004,163,549,8,398,64.54,0.14,0.6000000000000001,53.4,993,336,4.5 +2008,12,4,12,30,11.5,0.46,0.10300000000000001,0.65,89,739,373,6,2.2,145,581,8,368,67.42,0.14,0.6000000000000001,52.95,993,332,4.5 +2008,12,4,13,30,10.9,0.48,0.10200000000000001,0.65,77,650,268,6,2.3000000000000003,77,650,5,268,72.86,0.14,0.6000000000000001,55.54,993,325,3.6 +2008,12,4,14,30,9,0.51,0.097,0.65,53,453,130,0,3.7,53,453,8,130,80.29,0.14,0.8,69.28,994,313,2.4000000000000004 +2008,12,4,15,30,7.1000000000000005,0.56,0.097,0.65,10,38,11,0,3.8000000000000003,10,38,8,11,88.93,0.14,1,79.73,995,304,2 +2008,12,4,16,30,6.7,0.68,0.09,0.65,0,0,0,3,3.3000000000000003,0,0,8,0,99.31,0.14,1.1,79.02,996,297,1.8 +2008,12,4,17,30,7.1000000000000005,0.86,0.082,0.65,0,0,0,6,3.5,0,0,8,0,109.97,0.14,1.2000000000000002,78.06,996,273,1.5 +2008,12,4,18,30,7.2,1.05,0.076,0.65,0,0,0,6,4.1000000000000005,0,0,8,0,121.02,0.14,1.3,80.89,997,237,1.3 +2008,12,4,19,30,7.4,1.1,0.077,0.65,0,0,0,6,5.1000000000000005,0,0,8,0,132.16,0.14,1.5,85.07000000000001,997,220,1.5 +2008,12,4,20,30,8.6,1.03,0.073,0.65,0,0,0,6,6.2,0,0,8,0,143.01,0.14,1.6,85.14,997,226,2.2 +2008,12,4,21,30,9.9,0.97,0.07,0.65,0,0,0,6,7.300000000000001,0,0,8,0,152.77,0.14,1.6,83.78,997,231,3.3000000000000003 +2008,12,4,22,30,10.3,0.89,0.061,0.65,0,0,0,6,7.800000000000001,0,0,8,0,159.45000000000002,0.14,1.7000000000000002,84.73,998,232,3.8000000000000003 +2008,12,4,23,30,10.200000000000001,0.8300000000000001,0.055,0.65,0,0,0,6,7.800000000000001,0,0,8,0,159.56,0.14,1.7000000000000002,85.19,998,228,3.7 +2008,12,5,0,30,10.3,0.81,0.06,0.65,0,0,0,6,7.7,0,0,8,0,153.03,0.14,1.8,84.19,998,224,3.9000000000000004 +2008,12,5,1,30,10.5,0.79,0.062,0.65,0,0,0,6,7.9,0,0,8,0,143.33,0.14,1.8,84.16,998,218,4.1000000000000005 +2008,12,5,2,30,10.8,0.78,0.064,0.65,0,0,0,6,8.200000000000001,0,0,8,0,132.51,0.14,1.9000000000000001,83.96000000000001,997,213,4.3 +2008,12,5,3,30,11.200000000000001,0.79,0.074,0.65,0,0,0,6,8.6,0,0,8,0,121.37,0.14,2,83.99,997,210,4.6000000000000005 +2008,12,5,4,30,11.600000000000001,0.77,0.077,0.65,0,0,0,6,9,0,0,8,0,110.32000000000001,0.14,2.1,84.15,997,210,4.9 +2008,12,5,5,30,11.8,0.74,0.074,0.65,0,0,0,6,9.3,0,0,8,0,99.66,0.14,2.2,84.72,997,213,5.1000000000000005 +2008,12,5,6,30,12,0.74,0.084,0.65,0,0,0,6,9.600000000000001,0,0,8,0,89.24,0.14,2.2,85.14,997,214,5.1000000000000005 +2008,12,5,7,30,12.4,0.7000000000000001,0.089,0.65,50,430,120,6,9.9,10,0,8,10,80.60000000000001,0.14,2.3000000000000003,84.66,997,213,5.300000000000001 +2008,12,5,8,30,12.8,0.67,0.08700000000000001,0.65,71,622,251,6,10.200000000000001,19,0,8,19,73.14,0.14,2.3000000000000003,84.08,997,210,5.7 +2008,12,5,9,30,13.100000000000001,0.6900000000000001,0.093,0.65,83,702,351,6,10.5,26,0,8,26,67.65,0.14,2.3000000000000003,84,997,207,6.300000000000001 +2008,12,5,10,30,13.3,0.59,0.106,0.65,94,719,402,6,10.9,28,0,8,28,64.7,0.14,2.3000000000000003,85.16,997,206,6.9 +2008,12,5,11,30,13.4,0.48,0.124,0.65,102,690,398,6,11.200000000000001,29,0,8,29,64.65,0.14,2.4000000000000004,86.37,996,205,7.5 +2008,12,5,12,30,13.3,0.49,0.17300000000000001,0.65,113,591,339,6,11.200000000000001,28,0,8,28,67.51,0.14,2.3000000000000003,87.28,995,204,8.1 +2008,12,5,13,30,13.200000000000001,0.44,0.178,0.65,98,483,240,6,11.100000000000001,24,0,8,24,72.92,0.14,2.3000000000000003,87.08,995,203,8.5 +2008,12,5,14,30,12.8,0.4,0.167,0.65,65,295,115,6,10.9,18,0,8,18,80.33,0.14,2.4000000000000004,88.34,994,204,8.4 +2008,12,5,15,30,12.4,0.45,0.17,0.65,9,6,9,6,10.8,2,0,8,2,88.96000000000001,0.14,2.4000000000000004,90.03,994,207,7.800000000000001 +2008,12,5,16,30,12.4,0.44,0.159,0.65,0,0,0,6,11,0,0,8,0,99.32000000000001,0.14,2.3000000000000003,91.22,995,212,6.9 +2008,12,5,17,30,12.5,0.45,0.17400000000000002,0.65,0,0,0,6,11.4,0,0,8,0,109.97,0.14,2.3000000000000003,92.74,995,218,6 +2008,12,5,18,30,12.600000000000001,0.55,0.168,0.65,0,0,0,6,11.600000000000001,0,0,8,0,121.01,0.14,2.1,93.45,996,225,5 +2008,12,5,19,30,12.200000000000001,0.66,0.117,0.65,0,0,0,6,11.3,0,0,8,0,132.16,0.14,1.8,94.09,996,233,3.9000000000000004 +2008,12,5,20,30,11.5,0.66,0.10400000000000001,0.65,0,0,0,3,10.5,0,0,8,0,143.02,0.14,1.6,93.82000000000001,997,240,3.1 +2008,12,5,21,30,11,0.5700000000000001,0.111,0.65,0,0,0,3,9.600000000000001,0,0,8,0,152.81,0.14,1.5,91.18,997,246,2.9000000000000004 +2008,12,5,22,30,11,0.46,0.11800000000000001,0.65,0,0,0,3,9,0,0,8,0,159.54,0.14,1.4000000000000001,87.52,998,248,2.9000000000000004 +2008,12,5,23,30,11.200000000000001,0.4,0.125,0.65,0,0,0,3,9,0,0,8,0,159.71,0.14,1.4000000000000001,86.51,998,248,2.9000000000000004 +2008,12,6,0,30,11.100000000000001,0.4,0.125,0.65,0,0,0,3,8.9,0,0,8,0,153.19,0.14,1.3,86.36,998,247,2.8000000000000003 +2008,12,6,1,30,10.700000000000001,0.38,0.12,0.65,0,0,0,3,8.5,0,0,8,0,143.49,0.14,1.2000000000000002,86.37,998,247,2.7 +2008,12,6,2,30,10.4,0.36,0.113,0.65,0,0,0,3,8,0,0,8,0,132.66,0.14,1.2000000000000002,85.36,998,246,2.7 +2008,12,6,3,30,10.200000000000001,0.37,0.11,0.65,0,0,0,3,7.800000000000001,0,0,8,0,121.52,0.14,1.2000000000000002,85.13,999,247,2.9000000000000004 +2008,12,6,4,30,10,0.36,0.112,0.65,0,0,0,3,7.7,0,0,8,0,110.47,0.14,1.3,85.86,999,249,3 +2008,12,6,5,30,10.200000000000001,0.35000000000000003,0.112,0.65,0,0,0,3,7.9,0,0,8,0,99.81,0.14,1.3,85.85000000000001,999,251,3.2 +2008,12,6,6,30,11,0.39,0.112,0.65,0,0,0,3,8.4,0,0,8,0,89.37,0.14,1.3,83.93,1000,253,3.7 +2008,12,6,7,30,12.100000000000001,0.42,0.10300000000000001,0.65,55,403,120,3,9.200000000000001,7,0,8,7,80.75,0.14,1.3,82.45,1000,253,4.3 +2008,12,6,8,30,12.9,0.44,0.095,0.65,75,618,253,3,9.8,14,0,8,14,73.29,0.14,1.4000000000000001,81.54,1000,252,4.9 +2008,12,6,9,30,13.4,0.42,0.121,0.65,97,672,351,3,9.9,22,0,8,22,67.79,0.14,1.4000000000000001,79.26,1000,252,5.4 +2008,12,6,10,30,13.700000000000001,0.43,0.114,0.65,100,726,409,3,9.200000000000001,24,0,8,24,64.83,0.14,1.3,74.5,1000,254,5.7 +2008,12,6,11,30,13.9,0.45,0.097,0.65,93,752,414,3,8.6,24,0,8,24,64.76,0.14,1.3,70.18,1000,255,5.7 +2008,12,6,12,30,14,0.45,0.10400000000000001,0.65,91,708,361,3,8,24,0,8,24,67.59,0.14,1.2000000000000002,67.02,999,256,5.5 +2008,12,6,13,30,13.700000000000001,0.46,0.097,0.65,77,628,261,3,7.6000000000000005,19,0,8,19,72.98,0.14,1.2000000000000002,66.55,999,256,4.800000000000001 +2008,12,6,14,30,12.4,0.48,0.08600000000000001,0.65,53,457,129,3,7.7,9,0,8,9,80.37,0.14,1.2000000000000002,73.11,999,255,3.6 +2008,12,6,15,30,10.9,0.49,0.094,0.65,11,34,12,3,7.9,1,0,8,1,88.98,0.14,1.2000000000000002,81.68,999,256,2.7 +2008,12,6,16,30,10.100000000000001,0.51,0.09,0.65,0,0,0,3,7.5,0,0,8,0,99.33,0.14,1.3,83.96000000000001,1000,260,2.4000000000000004 +2008,12,6,17,30,9.600000000000001,0.51,0.088,0.65,0,0,0,3,7.2,0,0,8,0,109.97,0.14,1.3,85.22,1000,266,2.2 +2008,12,6,18,30,9.3,0.52,0.09,0.65,0,0,0,3,7,0,0,8,0,121,0.14,1.2000000000000002,85.78,1001,274,2.1 +2008,12,6,19,30,9,0.52,0.09,0.65,0,0,0,3,6.800000000000001,0,0,8,0,132.15,0.14,1.2000000000000002,86.33,1001,283,1.9000000000000001 +2008,12,6,20,30,8.700000000000001,0.54,0.08700000000000001,0.65,0,0,0,3,6.6000000000000005,0,0,8,0,143.02,0.14,1.2000000000000002,86.76,1002,294,1.7000000000000002 +2008,12,6,21,30,8.6,0.5700000000000001,0.083,0.65,0,0,0,3,6.4,0,0,8,0,152.83,0.14,1.1,85.81,1002,304,1.6 +2008,12,6,22,30,8.5,0.6,0.081,0.65,0,0,0,3,6.2,0,0,8,0,159.62,0.14,1.1,85.28,1002,311,1.5 +2008,12,6,23,30,8.3,0.62,0.078,0.65,0,0,0,3,6.1000000000000005,0,0,8,0,159.84,0.14,1.1,85.79,1003,317,1.5 +2008,12,7,0,30,7.800000000000001,0.64,0.075,0.65,0,0,0,3,5.9,0,0,8,0,153.34,0.14,1.1,87.92,1003,321,1.5 +2008,12,7,1,30,7.300000000000001,0.68,0.07,0.65,0,0,0,3,5.7,0,0,8,0,143.63,0.14,1.1,89.63,1003,326,1.6 +2008,12,7,2,30,6.800000000000001,0.71,0.067,0.65,0,0,0,3,5.6000000000000005,0,0,8,0,132.8,0.14,1.1,91.79,1004,336,1.6 +2008,12,7,3,30,6.300000000000001,0.74,0.066,0.65,0,0,0,3,5.4,0,0,8,0,121.66,0.14,1.1,94.27,1004,351,1.5 +2008,12,7,4,30,5.800000000000001,0.77,0.067,0.65,0,0,0,3,5.4,0,0,8,0,110.62,0.14,1.1,97,1004,187,1.5 +2008,12,7,5,30,5.4,0.81,0.068,0.65,0,0,0,3,5.2,0,0,8,0,99.96000000000001,0.14,1.1,98.31,1005,21,1.4000000000000001 +2008,12,7,6,30,6,0.87,0.067,0.65,0,0,0,3,5,0,0,8,0,89.48,0.14,1,93.42,1006,31,1.7000000000000002 +2008,12,7,7,30,7.5,0.9500000000000001,0.064,0.65,44,515,125,3,5.6000000000000005,24,0,8,24,80.9,0.14,1,87.83,1006,36,2.3000000000000003 +2008,12,7,8,30,9.5,1.04,0.057,0.65,60,716,264,3,6.300000000000001,61,0,8,61,73.43,0.14,1,80.27,1007,32,2.3000000000000003 +2008,12,7,9,30,11.5,1.1500000000000001,0.051000000000000004,0.65,66,815,372,3,6.5,94,0,8,94,67.93,0.14,0.9,71.49,1007,189,2 +2008,12,7,10,30,13.100000000000001,1.21,0.049,0.65,69,852,430,3,5.6000000000000005,94,0,8,95,64.95,0.14,0.9,60.33,1007,339,2.1 +2008,12,7,11,30,13.8,1.26,0.048,0.65,69,855,432,3,4.6000000000000005,101,0,8,101,64.86,0.14,0.9,53.81,1007,323,2.7 +2008,12,7,12,30,13.8,1.19,0.049,0.65,66,827,380,3,4.2,131,1,8,131,67.67,0.14,0.8,52.19,1007,321,3 +2008,12,7,13,30,13.100000000000001,1.22,0.047,0.65,57,754,277,3,3.9000000000000004,153,16,8,158,73.03,0.14,0.8,53.81,1007,323,2.6 +2008,12,7,14,30,10.9,1.25,0.045,0.65,41,596,140,0,5.6000000000000005,41,596,8,140,80.4,0.14,0.7000000000000001,69.62,1008,329,1.9000000000000001 +2008,12,7,15,30,8.700000000000001,1.1500000000000001,0.046,0.65,11,151,13,0,5.2,11,151,8,13,88.98,0.14,0.7000000000000001,78.54,1008,340,1.8 +2008,12,7,16,30,7.6000000000000005,1.19,0.046,0.65,0,0,0,0,4.2,0,0,8,0,99.32000000000001,0.14,0.7000000000000001,78.94,1008,174,1.9000000000000001 +2008,12,7,17,30,6.9,1.25,0.046,0.65,0,0,0,0,4,0,0,8,0,109.96000000000001,0.14,0.6000000000000001,81.51,1009,9,1.9000000000000001 +2008,12,7,18,30,6.1000000000000005,1.32,0.046,0.65,0,0,0,0,3.6,0,0,8,0,120.99000000000001,0.14,0.6000000000000001,84.09,1009,20,1.9000000000000001 +2008,12,7,19,30,5.5,1.37,0.047,0.65,0,0,0,0,3.2,0,0,8,0,132.14000000000001,0.14,0.6000000000000001,85.12,1009,29,1.9000000000000001 +2008,12,7,20,30,5,1.4000000000000001,0.048,0.65,0,0,0,0,2.8000000000000003,0,0,8,0,143.01,0.14,0.7000000000000001,85.7,1010,40,1.9000000000000001 +2008,12,7,21,30,4.7,1.42,0.048,0.65,0,0,0,0,2.5,0,0,8,0,152.85,0.14,0.7000000000000001,85.43,1010,52,2 +2008,12,7,22,30,4.4,1.44,0.048,0.65,0,0,0,0,2.4000000000000004,0,0,8,0,159.69,0.14,0.7000000000000001,86.72,1010,61,2.1 +2008,12,7,23,30,4.2,1.45,0.049,0.65,0,0,0,0,2.5,0,0,8,0,159.98,0.14,0.7000000000000001,88.91,1011,69,2 +2008,12,8,0,30,4,1.46,0.051000000000000004,0.65,0,0,0,0,2.6,0,0,8,0,153.49,0.14,0.7000000000000001,90.58,1011,75,2 +2008,12,8,1,30,3.8000000000000003,1.46,0.052000000000000005,0.65,0,0,0,0,2.6,0,0,8,0,143.78,0.14,0.7000000000000001,91.83,1011,77,1.8 +2008,12,8,2,30,3.7,1.46,0.052000000000000005,0.65,0,0,0,0,2.6,0,0,8,0,132.95,0.14,0.7000000000000001,92.33,1012,78,1.7000000000000002 +2008,12,8,3,30,3.5,1.45,0.053,0.65,0,0,0,0,2.5,0,0,8,0,121.81,0.14,0.8,93.2,1012,78,1.7000000000000002 +2008,12,8,4,30,3.4000000000000004,1.44,0.054,0.65,0,0,0,0,2.4000000000000004,0,0,8,0,110.76,0.14,0.8,93.09,1012,77,1.6 +2008,12,8,5,30,3.3000000000000003,1.42,0.055,0.65,0,0,0,3,2.2,0,0,8,0,100.10000000000001,0.14,0.8,92.8,1013,77,1.6 +2008,12,8,6,30,4.3,1.41,0.056,0.65,0,0,0,3,2.1,0,0,8,0,89.60000000000001,0.14,0.8,85.49,1013,80,1.5 +2008,12,8,7,30,6.9,1.4000000000000001,0.057,0.65,41,546,127,3,2.9000000000000004,85,81,8,97,81.04,0.14,0.8,75.56,1014,82,1.7000000000000002 +2008,12,8,8,30,9.700000000000001,1.4000000000000001,0.056,0.65,59,730,265,3,3.5,153,190,8,206,73.57000000000001,0.14,0.8,65.35,1014,91,1.9000000000000001 +2008,12,8,9,30,11.600000000000001,1.1,0.065,0.65,72,794,369,3,2.4000000000000004,220,67,8,245,68.06,0.14,0.8,53.06,1015,122,1.4000000000000001 +2008,12,8,10,30,12.700000000000001,1.11,0.062,0.65,75,835,427,3,0.8,224,27,8,235,65.06,0.14,0.8,44.27,1014,182,0.9 +2008,12,8,11,30,13,1.12,0.059000000000000004,0.65,74,840,430,3,0.6000000000000001,214,21,8,222,64.95,0.14,0.8,42.69,1014,236,0.9 +2008,12,8,12,30,12.9,1.1400000000000001,0.058,0.65,70,810,377,3,0.5,208,29,8,219,67.74,0.14,0.8,42.65,1014,259,1.2000000000000002 +2008,12,8,13,30,12.200000000000001,1.17,0.058,0.65,61,732,274,3,0.4,169,58,8,186,73.08,0.14,0.8,44.4,1014,268,1.1 +2008,12,8,14,30,10.700000000000001,1.19,0.059000000000000004,0.65,44,557,137,0,3.1,44,557,8,137,80.42,0.14,0.8,59.44,1014,275,0.9 +2008,12,8,15,30,9.5,1.06,0.065,0.65,11,105,13,0,2.1,11,105,8,13,88.98,0.14,0.8,59.76,1014,291,0.8 +2008,12,8,16,30,9.1,1.08,0.064,0.65,0,0,0,0,0.6000000000000001,0,0,8,0,99.32000000000001,0.14,0.8,55.32,1014,316,0.7000000000000001 +2008,12,8,17,30,9,1.08,0.061,0.65,0,0,0,0,0.2,0,0,8,0,109.94,0.14,0.8,53.89,1014,180,0.6000000000000001 +2008,12,8,18,30,8.700000000000001,1.09,0.058,0.65,0,0,0,0,-0.30000000000000004,0,0,8,0,120.97,0.14,0.8,53.36,1014,54,0.6000000000000001 +2008,12,8,19,30,7.800000000000001,1.09,0.056,0.65,0,0,0,0,-0.30000000000000004,0,0,8,0,132.11,0.14,0.8,56.54,1014,89,0.9 +2008,12,8,20,30,6.800000000000001,1.1,0.055,0.65,0,0,0,0,-0.2,0,0,8,0,143,0.14,0.8,60.81,1014,102,1.2000000000000002 +2008,12,8,21,30,6.1000000000000005,1.11,0.055,0.65,0,0,0,0,-0.2,0,0,8,0,152.86,0.14,0.8,63.88,1014,106,1.4000000000000001 +2008,12,8,22,30,5.300000000000001,1.11,0.056,0.65,0,0,0,0,-0.2,0,0,8,0,159.76,0.14,0.9,67.74,1014,107,1.5 +2008,12,8,23,30,4.7,1.11,0.057,0.65,0,0,0,0,-0.1,0,0,8,0,160.1,0.14,0.9,71.02,1014,107,1.6 +2008,12,9,0,30,4.3,1.12,0.058,0.65,0,0,0,7,0,0,0,1,0,153.63,0.14,0.9,73.61,1014,107,1.6 +2008,12,9,1,30,4,1.12,0.058,0.65,0,0,0,7,0.1,0,0,1,0,143.92000000000002,0.14,0.9,75.62,1013,107,1.7000000000000002 +2008,12,9,2,30,3.9000000000000004,1.1300000000000001,0.059000000000000004,0.65,0,0,0,7,0.2,0,0,1,0,133.09,0.14,0.9,76.58,1013,109,1.7000000000000002 +2008,12,9,3,30,3.8000000000000003,1.1400000000000001,0.06,0.65,0,0,0,7,0.2,0,0,1,0,121.95,0.14,0.9,77.39,1013,112,1.8 +2008,12,9,4,30,3.6,1.1500000000000001,0.06,0.65,0,0,0,7,0.30000000000000004,0,0,1,0,110.91,0.14,1,78.77,1013,114,1.8 +2008,12,9,5,30,3.4000000000000004,1.17,0.061,0.65,0,0,0,7,0.30000000000000004,0,0,1,0,100.25,0.14,1,80.23,1013,115,1.9000000000000001 +2008,12,9,6,30,4.2,1.19,0.064,0.65,0,0,0,7,0.4,0,0,1,0,89.72,0.14,1,76.19,1013,116,1.9000000000000001 +2008,12,9,7,30,6.6000000000000005,1.21,0.067,0.65,43,508,121,7,1.8,64,10,1,66,81.18,0.14,1,71.53,1013,117,2.3000000000000003 +2008,12,9,8,30,8.8,1.24,0.068,0.65,62,696,257,7,2.5,144,85,1,167,73.71000000000001,0.14,1,64.82000000000001,1013,119,3 +2008,12,9,9,30,10.200000000000001,1.28,0.066,0.65,72,791,365,7,2.6,202,157,1,260,68.18,0.14,0.9,59.34,1013,127,3.2 +2008,12,9,10,30,11.100000000000001,1.29,0.065,0.65,76,828,423,7,3.1,216,211,1,305,65.17,0.14,0.9,57.76,1012,135,3.3000000000000003 +2008,12,9,11,30,11.4,1.29,0.067,0.65,77,827,426,7,3,218,210,1,306,65.04,0.14,0.9,56.42,1011,140,3.2 +2008,12,9,12,30,11.200000000000001,1.07,0.081,0.65,79,771,370,7,3.1,196,128,0,244,67.8,0.14,0.9,57.28,1010,139,2.9000000000000004 +2008,12,9,13,30,10.4,1.07,0.083,0.65,69,684,268,7,3.7,142,58,0,159,73.11,0.14,0.9,63.08,1009,134,2.2 +2008,12,9,14,30,8.9,1.1,0.084,0.65,49,502,133,6,5.300000000000001,12,0,0,12,80.43,0.14,0.9,78.05,1009,127,1.7000000000000002 +2008,12,9,15,30,7.7,1.11,0.085,0.65,11,80,13,7,4.3,1,0,7,1,88.98,0.14,0.9,79.34,1009,123,1.9000000000000001 +2008,12,9,16,30,7.300000000000001,1.1300000000000001,0.084,0.65,0,0,0,7,3.9000000000000004,0,0,0,0,99.3,0.14,1,79.15,1009,120,2.1 +2008,12,9,17,30,7.2,1.1400000000000001,0.08600000000000001,0.65,0,0,0,6,3.8000000000000003,0,0,0,0,109.92,0.14,1.1,79.15,1008,118,2.3000000000000003 +2008,12,9,18,30,7.1000000000000005,1.1300000000000001,0.08700000000000001,0.65,0,0,0,7,3.8000000000000003,0,0,0,0,120.94,0.14,1.3,79.75,1008,117,2.6 +2008,12,9,19,30,7.2,1.09,0.08600000000000001,0.65,0,0,0,7,3.9000000000000004,0,0,0,0,132.09,0.14,1.5,79.29,1007,117,2.9000000000000004 +2008,12,9,20,30,7.5,1.05,0.089,0.65,0,0,0,7,4.1000000000000005,0,0,0,0,142.98,0.14,1.8,78.86,1007,117,3.3000000000000003 +2008,12,9,21,30,7.7,1.03,0.105,0.65,0,0,0,6,4.4,0,0,0,0,152.87,0.14,2,79.83,1006,121,3.8000000000000003 +2008,12,9,22,30,8.1,0.99,0.121,0.65,0,0,0,7,5.2,0,0,0,0,159.81,0.14,2.1,81.8,1005,129,4.3 +2008,12,9,23,30,8.4,0.92,0.123,0.65,0,0,0,6,6.300000000000001,0,0,0,0,160.22,0.14,2.1,86.41,1004,133,4.800000000000001 +2008,12,10,0,30,8.700000000000001,0.89,0.132,0.65,0,0,0,6,7.1000000000000005,0,0,0,0,153.77,0.14,2.1,89.39,1004,134,5.300000000000001 +2008,12,10,1,30,9,0.84,0.11900000000000001,0.65,0,0,0,6,7.5,0,0,0,0,144.06,0.14,2.2,90.3,1003,138,5.800000000000001 +2008,12,10,2,30,9.4,0.74,0.114,0.65,0,0,0,7,7.800000000000001,0,0,0,0,133.23,0.14,2.2,90,1002,144,6.300000000000001 +2008,12,10,3,30,9.8,0.76,0.14400000000000002,0.65,0,0,0,6,8.200000000000001,0,0,0,0,122.09,0.14,2.2,90.02,1002,149,6.7 +2008,12,10,4,30,10.100000000000001,0.74,0.171,0.65,0,0,0,6,8.700000000000001,0,0,0,0,111.04,0.14,2.2,90.77,1001,147,6.9 +2008,12,10,5,30,10.5,0.6900000000000001,0.194,0.65,0,0,0,6,9,0,0,0,0,100.38,0.14,2.2,90.68,1001,145,6.9 +2008,12,10,6,30,11.200000000000001,0.66,0.213,0.65,0,0,0,7,9.600000000000001,0,0,7,0,89.86,0.14,2.2,89.84,1001,148,6.800000000000001 +2008,12,10,7,30,12.100000000000001,0.62,0.20500000000000002,0.65,63,238,99,5,10.3,4,0,0,4,81.31,0.14,2.2,88.51,1000,153,6.6000000000000005 +2008,12,10,8,30,13,0.59,0.17500000000000002,0.65,93,478,226,5,11.100000000000001,8,0,0,8,73.84,0.14,2.2,88.11,1000,157,6.6000000000000005 +2008,12,10,9,30,13.600000000000001,0.66,0.147,0.65,100,620,330,1,11.700000000000001,100,620,0,330,68.3,0.14,2.2,88.49,1000,160,6.9 +2008,12,10,10,30,14,0.65,0.14200000000000002,0.65,106,672,387,4,12,16,0,0,16,65.27,0.14,2.1,88.02,999,163,7.300000000000001 +2008,12,10,11,30,14.100000000000001,0.63,0.128,0.65,101,691,392,3,12,160,2,0,161,65.12,0.14,2.1,87.39,998,163,7.5 +2008,12,10,12,30,14,0.64,0.14,0.65,100,641,341,4,11.700000000000001,13,0,0,13,67.85,0.14,2,86.17,998,161,7.300000000000001 +2008,12,10,13,30,13.8,0.63,0.12,0.65,80,579,248,3,11.600000000000001,107,2,0,108,73.14,0.14,1.9000000000000001,86.68,997,158,6.9 +2008,12,10,14,30,13.4,0.5700000000000001,0.108,0.65,55,402,122,3,11.700000000000001,38,0,0,38,80.45,0.14,1.9000000000000001,89.3,997,155,6.4 +2008,12,10,15,30,13,0.54,0.107,0.65,11,25,11,7,11.700000000000001,1,0,7,1,88.99,0.14,1.9000000000000001,91.68,997,154,6.1000000000000005 +2008,12,10,16,30,12.9,0.52,0.107,0.65,0,0,0,7,11.600000000000001,0,0,0,0,99.28,0.14,1.9000000000000001,91.93,996,152,6 +2008,12,10,17,30,12.8,0.49,0.107,0.65,0,0,0,7,11.600000000000001,0,0,0,0,109.89,0.14,1.9000000000000001,92.3,996,151,6 +2008,12,10,18,30,12.8,0.48,0.12,0.65,0,0,0,7,11.5,0,0,0,0,120.91,0.14,2,92.09,997,149,6 +2008,12,10,19,30,12.8,0.49,0.129,0.65,0,0,0,7,11.5,0,0,0,0,132.06,0.14,2.1,91.79,997,147,6.1000000000000005 +2008,12,10,20,30,12.9,0.5,0.132,0.65,0,0,0,6,11.600000000000001,0,0,0,0,142.96,0.14,2.2,91.54,996,146,6.1000000000000005 +2008,12,10,21,30,13.100000000000001,0.56,0.147,0.65,0,0,0,9,11.8,0,0,0,0,152.87,0.14,2.3000000000000003,91.9,996,147,6 +2008,12,10,22,30,13.4,0.58,0.155,0.65,0,0,0,9,12.100000000000001,0,0,0,0,159.86,0.14,2.3000000000000003,91.9,995,150,6.2 +2008,12,10,23,30,13.700000000000001,0.59,0.155,0.65,0,0,0,9,12.5,0,0,0,0,160.32,0.14,2.3000000000000003,92.32000000000001,995,154,6.2 +2008,12,11,0,30,13.8,0.63,0.159,0.65,0,0,0,9,12.700000000000001,0,0,0,0,153.9,0.14,2.3000000000000003,93.22,994,158,6.2 +2008,12,11,1,30,13.8,0.63,0.164,0.65,0,0,0,9,12.8,0,0,0,0,144.20000000000002,0.14,2.3000000000000003,93.79,994,162,6 +2008,12,11,2,30,13.700000000000001,0.61,0.148,0.65,0,0,0,9,12.700000000000001,0,0,0,0,133.36,0.14,2.3000000000000003,93.68,993,164,5.5 +2008,12,11,3,30,13.3,0.63,0.14,0.65,0,0,0,9,12.4,0,0,0,0,122.22,0.14,2.2,94.21000000000001,993,160,5 +2008,12,11,4,30,12.9,0.63,0.121,0.65,0,0,0,9,11.9,0,0,0,0,111.18,0.14,2.2,93.79,993,152,4.6000000000000005 +2008,12,11,5,30,12.700000000000001,0.61,0.124,0.65,0,0,0,9,11.5,0,0,0,0,100.52,0.14,2.3000000000000003,92.36,992,143,4.4 +2008,12,11,6,30,12.9,0.5700000000000001,0.17,0.65,0,0,0,9,11.600000000000001,0,0,7,0,89.98,0.14,2.3000000000000003,91.53,992,139,4.6000000000000005 +2008,12,11,7,30,13.3,0.45,0.21,0.65,63,212,94,6,11.9,3,0,0,3,81.44,0.14,2.4000000000000004,91.48,991,139,5 +2008,12,11,8,30,13.700000000000001,0.32,0.234,0.65,108,382,213,6,12.4,5,0,0,5,73.96000000000001,0.14,2.4000000000000004,91.79,991,141,5.300000000000001 +2008,12,11,9,30,13.700000000000001,0.33,0.24,0.65,131,488,311,6,12.5,6,0,0,6,68.42,0.14,2.3000000000000003,92.63,990,140,4.9 +2008,12,11,10,30,13.5,0.39,0.201,0.65,128,586,372,6,12.4,7,0,0,7,65.37,0.14,2.2,93.04,989,137,4.2 +2008,12,11,11,30,13.3,0.45,0.17400000000000002,0.65,119,626,382,6,12,29,0,0,30,65.19,0.14,2.1,92.13,989,133,3.6 +2008,12,11,12,30,13,0.47000000000000003,0.178,0.65,112,582,331,6,11.600000000000001,16,0,0,16,67.9,0.14,2.1,91.07000000000001,989,132,3.1 +2008,12,11,13,30,12.5,0.42,0.183,0.65,98,476,235,6,11.100000000000001,5,0,0,5,73.17,0.14,2,91.09,988,127,2.4000000000000004 +2008,12,11,14,30,11.600000000000001,0.36,0.178,0.65,65,279,112,6,10.600000000000001,3,0,0,3,80.45,0.14,2,93.47,988,127,1.9000000000000001 +2008,12,11,15,30,10.9,0.4,0.24,0.65,6,1,6,8,9.700000000000001,1,0,7,1,88.98,0.14,2.1,92.37,989,142,1.5 +2008,12,11,16,30,10.700000000000001,0.43,0.253,0.65,0,0,0,4,9.600000000000001,0,0,1,0,99.26,0.14,2.1,92.74,989,165,1 +2008,12,11,17,30,10.600000000000001,0.43,0.23800000000000002,0.65,0,0,0,5,9.4,0,0,1,0,109.85000000000001,0.14,2.1,92.53,989,201,0.9 +2008,12,11,18,30,10.5,0.48,0.231,0.65,0,0,0,8,9.4,0,0,0,0,120.87,0.14,2.1,92.85000000000001,989,236,1.1 +2008,12,11,19,30,10.4,0.53,0.215,0.65,0,0,0,4,9.3,0,0,0,0,132.02,0.14,2,92.87,989,252,1.2000000000000002 +2008,12,11,20,30,10.200000000000001,0.56,0.19,0.65,0,0,0,8,9.1,0,0,0,0,142.93,0.14,2,92.99,989,258,1.3 +2008,12,11,21,30,10,0.65,0.183,0.65,0,0,0,7,8.9,0,0,0,0,152.86,0.14,2,92.79,989,263,1.4000000000000001 +2008,12,11,22,30,10,0.6900000000000001,0.189,0.65,0,0,0,6,8.8,0,0,0,0,159.9,0.14,2,92.16,989,269,1.9000000000000001 +2008,12,11,23,30,9.9,0.67,0.188,0.65,0,0,0,7,8.8,0,0,0,0,160.43,0.14,2,92.79,989,272,2.4000000000000004 +2008,12,12,0,30,9.8,0.67,0.2,0.65,0,0,0,6,8.5,0,0,0,0,154.02,0.14,2,91.77,989,274,3.1 +2008,12,12,1,30,9.700000000000001,0.64,0.193,0.65,0,0,0,6,8.4,0,0,0,0,144.33,0.14,2,91.60000000000001,989,277,3.5 +2008,12,12,2,30,9.5,0.63,0.182,0.65,0,0,0,6,8.200000000000001,0,0,0,0,133.49,0.14,2,91.42,989,279,3.5 +2008,12,12,3,30,9.3,0.7000000000000001,0.194,0.65,0,0,0,6,8.1,0,0,0,0,122.35000000000001,0.14,2,92.02,989,279,3.3000000000000003 +2008,12,12,4,30,9.1,0.72,0.191,0.65,0,0,0,6,8,0,0,0,0,111.31,0.14,2,92.62,989,276,3.1 +2008,12,12,5,30,8.9,0.7000000000000001,0.177,0.65,0,0,0,6,7.9,0,0,0,0,100.65,0.14,1.9000000000000001,93.19,989,271,3.1 +2008,12,12,6,30,8.700000000000001,0.77,0.193,0.65,0,0,0,6,7.6000000000000005,0,0,0,0,90.08,0.14,1.9000000000000001,92.95,989,267,3.1 +2008,12,12,7,30,8.6,0.78,0.198,0.65,59,255,96,6,7.4,3,0,0,3,81.57000000000001,0.14,1.9000000000000001,91.95,989,263,3.2 +2008,12,12,8,30,8.5,0.75,0.196,0.65,94,464,222,6,7.2,4,0,0,4,74.07000000000001,0.14,1.9000000000000001,91.55,989,261,3.1 +2008,12,12,9,30,8.5,0.77,0.20700000000000002,0.65,116,560,321,6,7.1000000000000005,6,0,0,6,68.52,0.14,1.9000000000000001,90.84,990,262,2.8000000000000003 +2008,12,12,10,30,8.6,0.76,0.202,0.65,123,612,377,7,7.1000000000000005,49,0,0,49,65.45,0.14,1.9000000000000001,90.09,989,270,2.5 +2008,12,12,11,30,8.8,0.75,0.2,0.65,123,616,381,7,7.1000000000000005,45,0,0,45,65.25,0.14,1.9000000000000001,89.3,989,291,2.3000000000000003 +2008,12,12,12,30,8.700000000000001,0.73,0.201,0.65,116,571,331,7,7.1000000000000005,80,2,0,81,67.94,0.14,2,89.60000000000001,989,316,2.3000000000000003 +2008,12,12,13,30,8.4,0.72,0.202,0.65,99,473,236,7,6.9,66,1,0,67,73.18,0.14,2,90.16,989,331,2.4000000000000004 +2008,12,12,14,30,8,0.66,0.194,0.65,65,286,112,7,6.7,3,0,0,3,80.44,0.14,2,91.42,990,337,2.3000000000000003 +2008,12,12,15,30,7.800000000000001,0.64,0.23,0.65,7,4,7,8,6.6000000000000005,1,0,7,1,88.95,0.14,2,92.3,990,341,2 +2008,12,12,16,30,7.5,0.58,0.249,0.65,0,0,0,8,6.6000000000000005,0,0,0,0,99.23,0.14,2,94.28,991,345,1.7000000000000002 +2008,12,12,17,30,7.2,0.56,0.234,0.65,0,0,0,4,6.5,0,0,0,0,109.81,0.14,1.9000000000000001,95.16,992,347,1.5 +2008,12,12,18,30,7,0.6,0.20500000000000002,0.65,0,0,0,4,6.2,0,0,0,0,120.82000000000001,0.14,1.9000000000000001,94.88,992,348,1.4000000000000001 +2008,12,12,19,30,6.9,0.65,0.184,0.65,0,0,0,4,6.1000000000000005,0,0,0,0,131.97,0.14,1.9000000000000001,94.97,992,350,1.3 +2008,12,12,20,30,6.9,0.7000000000000001,0.17400000000000002,0.65,0,0,0,1,6.1000000000000005,0,0,0,0,142.89000000000001,0.14,1.9000000000000001,94.94,993,355,1.4000000000000001 +2008,12,12,21,30,6.9,0.72,0.17300000000000001,0.65,0,0,0,1,6.1000000000000005,0,0,0,0,152.84,0.14,1.9000000000000001,94.60000000000001,993,181,1.6 +2008,12,12,22,30,6.9,0.7000000000000001,0.178,0.65,0,0,0,3,5.9,0,0,0,0,159.94,0.14,1.9000000000000001,93.63,994,9,1.7000000000000002 +2008,12,12,23,30,6.9,0.68,0.185,0.65,0,0,0,1,5.800000000000001,0,0,0,0,160.52,0.14,1.8,92.53,994,19,1.6 +2008,12,13,0,30,6.800000000000001,0.68,0.195,0.65,0,0,0,1,5.6000000000000005,0,0,0,0,154.15,0.14,1.8,92.02,995,32,1.5 +2008,12,13,1,30,6.7,0.68,0.201,0.65,0,0,0,1,5.4,0,0,0,0,144.45000000000002,0.14,1.8,91.37,996,52,1.3 +2008,12,13,2,30,6.4,0.6900000000000001,0.199,0.65,0,0,0,4,5.2,0,0,0,0,133.62,0.14,1.8,91.97,996,72,1.1 +2008,12,13,3,30,6,0.7000000000000001,0.194,0.65,0,0,0,1,4.800000000000001,0,0,0,0,122.48,0.14,1.7000000000000002,91.99,996,88,1 +2008,12,13,4,30,5.6000000000000005,0.72,0.193,0.65,0,0,0,0,4.3,0,0,0,0,111.44,0.14,1.7000000000000002,91.18,997,100,1.1 +2008,12,13,5,30,5.4,0.74,0.192,0.65,0,0,0,0,3.7,0,0,0,0,100.77,0.14,1.7000000000000002,89,997,108,1.2000000000000002 +2008,12,13,6,30,6,0.77,0.19,0.65,0,0,0,0,3.5,0,0,0,0,90.17,0.14,1.7000000000000002,83.95,998,116,1.2000000000000002 +2008,12,13,7,30,7.800000000000001,0.8,0.186,0.65,57,269,96,8,4.6000000000000005,18,0,7,18,81.68,0.14,1.7000000000000002,80.09,998,124,1.5 +2008,12,13,8,30,9.700000000000001,0.8200000000000001,0.185,0.65,91,484,223,0,5.800000000000001,91,484,0,223,74.18,0.14,1.7000000000000002,76.43,999,138,1.9000000000000001 +2008,12,13,9,30,11,0.8300000000000001,0.167,0.65,104,612,327,0,6.6000000000000005,104,612,0,327,68.62,0.14,1.7000000000000002,74.24,999,155,2 +2008,12,13,10,30,11.8,0.8,0.163,0.65,110,661,384,0,7.2,110,661,0,384,65.53,0.14,1.7000000000000002,73.35000000000001,998,165,2 +2008,12,13,11,30,12.100000000000001,0.75,0.158,0.65,109,668,388,0,7.4,109,668,0,388,65.31,0.14,1.7000000000000002,72.92,998,172,2 +2008,12,13,12,30,11.9,0.74,0.14400000000000002,0.65,98,647,341,2,7.5,202,23,0,210,67.97,0.14,1.7000000000000002,74.27,998,179,2 +2008,12,13,13,30,11.3,0.75,0.14200000000000002,0.65,84,557,245,3,7.6000000000000005,89,0,0,89,73.19,0.14,1.7000000000000002,78.07000000000001,998,184,1.9000000000000001 +2008,12,13,14,30,10.5,0.77,0.14100000000000001,0.65,59,368,120,4,8.1,9,0,7,9,80.43,0.14,1.7000000000000002,85.25,998,190,1.4000000000000001 +2008,12,13,15,30,10,0.85,0.152,0.65,10,22,11,4,8.5,2,0,7,2,88.93,0.14,1.7000000000000002,90.23,998,194,1.2000000000000002 +2008,12,13,16,30,9.8,0.9,0.154,0.65,0,0,0,4,8.4,0,0,0,0,99.19,0.14,1.7000000000000002,91.15,998,197,1.3 +2008,12,13,17,30,9.8,0.92,0.137,0.65,0,0,0,4,8.4,0,0,0,0,109.77,0.14,1.6,90.8,999,201,1.4000000000000001 +2008,12,13,18,30,9.8,0.9500000000000001,0.138,0.65,0,0,0,4,8.200000000000001,0,0,0,0,120.77,0.14,1.5,89.88,999,204,1.5 +2008,12,13,19,30,9.700000000000001,0.96,0.129,0.65,0,0,0,4,7.9,0,0,0,0,131.92000000000002,0.14,1.4000000000000001,88.29,999,204,1.6 +2008,12,13,20,30,9.3,0.9400000000000001,0.105,0.65,0,0,0,0,7.300000000000001,0,0,0,0,142.85,0.14,1.2000000000000002,87.42,999,201,1.6 +2008,12,13,21,30,8.6,0.9400000000000001,0.094,0.65,0,0,0,1,6.2,0,0,0,0,152.82,0.14,1.1,84.95,999,192,1.5 +2008,12,13,22,30,7.800000000000001,0.93,0.085,0.65,0,0,0,3,5.1000000000000005,0,0,0,0,159.96,0.14,1,83.12,999,178,1.5 +2008,12,13,23,30,7.2,0.96,0.073,0.65,0,0,0,7,4.1000000000000005,0,0,0,0,160.61,0.14,1.1,80.51,998,162,1.6 +2008,12,14,0,30,6.800000000000001,0.98,0.07100000000000001,0.65,0,0,0,7,3.7,0,0,0,0,154.26,0.14,1.2000000000000002,80.68,998,147,1.7000000000000002 +2008,12,14,1,30,6.7,0.97,0.078,0.65,0,0,0,4,3.9000000000000004,0,0,0,0,144.58,0.14,1.3,82.16,998,134,1.9000000000000001 +2008,12,14,2,30,6.800000000000001,0.96,0.085,0.65,0,0,0,1,4.4,0,0,0,0,133.74,0.14,1.5,84.57000000000001,997,125,2.2 +2008,12,14,3,30,6.9,0.9500000000000001,0.092,0.65,0,0,0,4,4.9,0,0,0,0,122.60000000000001,0.14,1.6,87.34,997,120,2.4000000000000004 +2008,12,14,4,30,7.1000000000000005,0.93,0.096,0.65,0,0,0,5,5.300000000000001,0,0,0,0,111.56,0.14,1.6,88.32000000000001,997,118,2.8000000000000003 +2008,12,14,5,30,7.300000000000001,0.91,0.095,0.65,0,0,0,7,5.5,0,0,0,0,100.9,0.14,1.7000000000000002,88.55,996,117,3.4000000000000004 +2008,12,14,6,30,7.800000000000001,0.89,0.09,0.65,0,0,0,7,5.800000000000001,0,0,0,0,90.9,0.14,1.7000000000000002,86.98,996,116,3.9000000000000004 +2008,12,14,7,30,8.5,0.87,0.08700000000000001,0.65,45,414,104,0,6.1000000000000005,45,414,0,104,81.8,0.14,1.7000000000000002,85.05,996,117,4.1000000000000005 +2008,12,14,8,30,9.600000000000001,0.84,0.089,0.65,67,618,235,0,6.9,67,618,0,235,74.29,0.14,1.7000000000000002,83.01,996,124,4.2 +2008,12,14,9,30,10.700000000000001,0.98,0.083,0.65,76,724,339,1,7.9,76,724,0,339,68.71000000000001,0.14,1.8,82.66,996,130,4.3 +2008,12,14,10,30,11.5,0.99,0.089,0.65,84,759,398,0,8.700000000000001,84,759,0,398,65.61,0.14,1.7000000000000002,83.2,996,133,4.5 +2008,12,14,11,30,12,0.99,0.094,0.65,86,756,401,2,9.1,243,82,0,277,65.36,0.14,1.7000000000000002,82.56,995,135,4.7 +2008,12,14,12,30,12.3,1.08,0.092,0.65,81,730,354,4,9.1,80,0,0,80,67.99,0.14,1.6,80.84,995,134,4.7 +2008,12,14,13,30,12.100000000000001,1.1500000000000001,0.085,0.65,68,662,260,5,9,145,5,0,147,73.19,0.14,1.5,81.19,994,129,4.2 +2008,12,14,14,30,11.100000000000001,1.17,0.08,0.65,48,494,130,7,9,32,0,7,32,80.41,0.14,1.5,86.91,994,126,3.6 +2008,12,14,15,30,10,1.12,0.083,0.65,11,82,13,7,8.5,3,0,7,3,88.9,0.14,1.5,90.67,994,127,3.4000000000000004 +2008,12,14,16,30,10,1.03,0.092,0.65,0,0,0,7,8.3,0,0,0,0,99.15,0.14,1.6,89.37,994,127,3.9000000000000004 +2008,12,14,17,30,10.200000000000001,0.96,0.08700000000000001,0.65,0,0,0,7,8.4,0,0,0,0,109.72,0.14,1.6,88.37,994,128,4.5 +2008,12,14,18,30,10.4,0.9500000000000001,0.082,0.65,0,0,0,7,8.4,0,0,0,0,120.72,0.14,1.7000000000000002,87.57000000000001,995,130,4.800000000000001 +2008,12,14,19,30,10.5,0.93,0.085,0.65,0,0,0,6,8.4,0,0,0,0,131.87,0.14,1.8,87.13,995,131,5 +2008,12,14,20,30,10.700000000000001,0.8200000000000001,0.096,0.65,0,0,0,7,8.5,0,0,0,0,142.8,0.14,1.9000000000000001,86.01,995,132,5.300000000000001 +2008,12,14,21,30,10.8,0.73,0.125,0.65,0,0,0,7,8.6,0,0,0,0,152.79,0.14,2,86.06,994,134,5.5 +2008,12,14,22,30,10.8,0.63,0.153,0.65,0,0,0,6,8.700000000000001,0,0,0,0,159.97,0.14,2,87.10000000000001,994,137,5.5 +2008,12,14,23,30,10.9,0.5,0.17300000000000001,0.65,0,0,0,9,8.9,0,0,0,0,160.69,0.14,2.1,87.73,994,141,5.6000000000000005 +2008,12,15,0,30,10.9,0.41000000000000003,0.201,0.65,0,0,0,6,9.200000000000001,0,0,0,0,154.37,0.14,2.1,89.21000000000001,993,143,5.7 +2008,12,15,1,30,11,0.32,0.229,0.65,0,0,0,9,9.4,0,0,0,0,144.70000000000002,0.14,2.1,89.99,993,143,5.800000000000001 +2008,12,15,2,30,11,0.24,0.247,0.65,0,0,0,6,9.600000000000001,0,0,0,0,133.87,0.14,2.1,90.93,993,142,5.800000000000001 +2008,12,15,3,30,11.100000000000001,0.22,0.28500000000000003,0.65,0,0,0,7,9.600000000000001,0,0,0,0,122.73,0.14,2.1,90.33,993,142,5.5 +2008,12,15,4,30,11.100000000000001,0.18,0.32,0.65,0,0,0,6,9.600000000000001,0,0,0,0,111.68,0.14,2.1,90.42,993,141,5.2 +2008,12,15,5,30,11.200000000000001,0.16,0.329,0.65,0,0,0,6,9.700000000000001,0,0,0,0,101.01,0.14,2.1,90.46000000000001,994,140,4.9 +2008,12,15,6,30,11.5,0.18,0.34500000000000003,0.65,0,0,0,6,9.8,0,0,0,0,91.01,0.14,2.1,89.21000000000001,994,143,4.6000000000000005 +2008,12,15,7,30,12.3,0.16,0.342,0.65,67,82,79,6,10.100000000000001,3,0,0,3,81.9,0.14,2.1,86.64,995,150,4.6000000000000005 +2008,12,15,8,30,13.200000000000001,0.13,0.331,0.65,126,267,198,7,10.600000000000001,9,0,0,9,74.39,0.14,2,84.18,996,156,4.800000000000001 +2008,12,15,9,30,14.100000000000001,0.12,0.366,0.65,163,348,289,7,10.700000000000001,49,0,0,49,68.79,0.14,2,80.22,996,158,5.1000000000000005 +2008,12,15,10,30,14.5,0.1,0.426,0.65,192,352,337,8,10.9,53,0,0,53,65.67,0.14,2,79.14,997,156,5.7 +2008,12,15,11,30,14,0.09,0.47700000000000004,0.65,207,318,339,6,11.200000000000001,12,0,0,12,65.4,0.14,2.1,83.2,997,155,6.2 +2008,12,15,12,30,13.3,0.21,0.32,0.65,156,407,309,6,11.4,6,0,0,6,68.01,0.14,2.2,88.18,998,155,6.300000000000001 +2008,12,15,13,30,12.8,0.22,0.28700000000000003,0.65,124,340,222,6,11,5,0,0,5,73.19,0.14,2.1,88.91,998,150,5.6000000000000005 +2008,12,15,14,30,12.5,0.24,0.292,0.65,78,157,104,5,10.8,17,0,0,17,80.39,0.14,2.1,89.24,998,135,5 +2008,12,15,15,30,12.200000000000001,0.28,0.273,0.65,6,0,6,9,10.600000000000001,2,0,7,2,88.87,0.14,2.1,90.21000000000001,999,124,5.1000000000000005 +2008,12,15,16,30,12.100000000000001,0.38,0.224,0.65,0,0,0,9,10.4,0,0,0,0,99.10000000000001,0.14,2.1,89.28,999,119,5.1000000000000005 +2008,12,15,17,30,12,0.47000000000000003,0.19,0.65,0,0,0,7,10.200000000000001,0,0,0,0,109.66,0.14,2.1,88.54,999,118,4.800000000000001 +2008,12,15,18,30,12.200000000000001,0.56,0.199,0.65,0,0,0,9,10.200000000000001,0,0,0,0,120.66,0.14,2.2,87.51,999,123,4.9 +2008,12,15,19,30,12.5,0.65,0.22,0.65,0,0,0,6,10.600000000000001,0,0,0,0,131.81,0.14,2.2,88.01,1000,129,5.4 +2008,12,15,20,30,12.700000000000001,0.65,0.21,0.65,0,0,0,6,10.9,0,0,0,0,142.74,0.14,2.3000000000000003,89.08,1000,132,5.5 +2008,12,15,21,30,12.8,0.6900000000000001,0.243,0.65,0,0,0,9,11.200000000000001,0,0,0,0,152.75,0.14,2.3000000000000003,89.92,1000,133,5.300000000000001 +2008,12,15,22,30,12.8,0.67,0.261,0.65,0,0,0,9,11.3,0,0,0,0,159.98,0.14,2.3000000000000003,90.8,1000,132,5.2 +2008,12,15,23,30,12.8,0.59,0.23800000000000002,0.65,0,0,0,6,11.4,0,0,0,0,160.76,0.14,2.3000000000000003,91.17,999,132,5 +2008,12,16,0,30,12.8,0.61,0.231,0.65,0,0,0,6,11.4,0,0,0,0,154.48,0.14,2.2,90.97,999,131,4.800000000000001 +2008,12,16,1,30,12.8,0.59,0.20400000000000001,0.65,0,0,0,6,11.3,0,0,0,0,144.81,0.14,2.2,90.4,998,131,4.6000000000000005 +2008,12,16,2,30,12.700000000000001,0.5,0.182,0.65,0,0,0,1,11.200000000000001,0,0,0,0,133.98,0.14,2.2,90.42,998,135,4.4 +2008,12,16,3,30,12.700000000000001,0.46,0.195,0.65,0,0,0,6,11.100000000000001,0,0,0,0,122.84,0.14,2.2,89.94,998,143,4.3 +2008,12,16,4,30,12.700000000000001,0.39,0.219,0.65,0,0,0,6,11.200000000000001,0,0,0,0,111.8,0.14,2.2,90.38,998,150,4.3 +2008,12,16,5,30,12.600000000000001,0.31,0.217,0.65,0,0,0,7,11.100000000000001,0,0,0,0,101.13,0.14,2.2,90.88,998,158,4.5 +2008,12,16,6,30,12.600000000000001,0.32,0.23500000000000001,0.65,0,0,0,7,11,0,0,0,0,91.12,0.14,2.2,89.79,998,164,4.7 +2008,12,16,7,30,12.700000000000001,0.28,0.259,0.65,63,138,83,8,11.100000000000001,10,0,7,10,82.01,0.14,2.2,90.29,999,170,4.7 +2008,12,16,8,30,12.9,0.21,0.281,0.65,116,315,200,7,11.4,4,0,0,4,74.48,0.14,2.2,90.44,999,176,4.3 +2008,12,16,9,30,13.100000000000001,0.31,0.217,0.65,123,509,307,7,11.4,8,0,3,8,68.87,0.14,2.1,89.41,1000,182,3.9000000000000004 +2008,12,16,10,30,13.100000000000001,0.31,0.183,0.65,123,602,370,7,11,49,0,7,49,65.73,0.14,2,87.26,999,187,3.6 +2008,12,16,11,30,13,0.29,0.158,0.65,115,639,381,7,10.3,60,0,7,60,65.43,0.14,1.9000000000000001,83.84,999,182,3.4000000000000004 +2008,12,16,12,30,12.8,0.3,0.14100000000000001,0.65,103,628,338,7,9.8,155,24,7,164,68.02,0.14,1.7000000000000002,81.81,999,168,2.9000000000000004 +2008,12,16,13,30,12.4,0.31,0.125,0.65,84,561,247,8,9.600000000000001,5,0,0,5,73.17,0.14,1.6,83.25,999,150,2.3000000000000003 +2008,12,16,14,30,11.600000000000001,0.35000000000000003,0.11,0.65,57,398,123,7,9.9,36,1,0,36,80.36,0.14,1.4000000000000001,89.24,999,140,1.7000000000000002 +2008,12,16,15,30,10.600000000000001,0.38,0.098,0.65,11,31,12,5,9.3,3,0,7,3,88.83,0.14,1.4000000000000001,91.39,999,142,1.5 +2008,12,16,16,30,9.9,0.42,0.089,0.65,0,0,0,4,8.5,0,0,1,0,99.04,0.14,1.3,90.93,999,150,1.5 +2008,12,16,17,30,9.3,0.47000000000000003,0.082,0.65,0,0,0,4,8,0,0,0,0,109.60000000000001,0.14,1.3,91.53,1000,155,1.5 +2008,12,16,18,30,8.9,0.53,0.077,0.65,0,0,0,4,7.6000000000000005,0,0,0,0,120.59,0.14,1.3,91.61,1000,158,1.5 +2008,12,16,19,30,8.6,0.5700000000000001,0.075,0.65,0,0,0,5,7.4,0,0,0,0,131.74,0.14,1.4000000000000001,92.04,1000,157,1.4000000000000001 +2008,12,16,20,30,8.4,0.59,0.076,0.65,0,0,0,5,7.2,0,0,0,0,142.68,0.14,1.5,91.99,1000,152,1.4000000000000001 +2008,12,16,21,30,8.200000000000001,0.61,0.077,0.65,0,0,0,5,6.9,0,0,0,0,152.71,0.14,1.5,91.60000000000001,1000,143,1.5 +2008,12,16,22,30,8.3,0.63,0.081,0.65,0,0,0,4,6.7,0,0,0,0,159.98,0.14,1.6,89.88,999,136,1.6 +2008,12,16,23,30,8.4,0.65,0.084,0.65,0,0,0,4,6.9,0,0,0,0,160.83,0.14,1.6,90.24,999,130,1.7000000000000002 +2008,12,17,0,30,8.4,0.68,0.083,0.65,0,0,0,5,6.9,0,0,0,0,154.58,0.14,1.6,90,998,125,1.8 +2008,12,17,1,30,8.3,0.7000000000000001,0.08,0.65,0,0,0,8,6.800000000000001,0,0,1,0,144.92000000000002,0.14,1.5,90,998,122,1.9000000000000001 +2008,12,17,2,30,8.1,0.73,0.077,0.65,0,0,0,4,6.7,0,0,0,0,134.09,0.14,1.5,90.61,998,121,1.8 +2008,12,17,3,30,8,0.74,0.073,0.65,0,0,0,4,6.5,0,0,0,0,122.95,0.14,1.4000000000000001,90.41,997,124,1.6 +2008,12,17,4,30,7.7,0.75,0.067,0.65,0,0,0,4,6.300000000000001,0,0,0,0,111.91,0.14,1.4000000000000001,91.05,997,128,1.4000000000000001 +2008,12,17,5,30,7.6000000000000005,0.78,0.063,0.65,0,0,0,4,5.800000000000001,0,0,0,0,101.24000000000001,0.14,1.3,88.49,998,132,1.3 +2008,12,17,6,30,8.200000000000001,0.8200000000000001,0.061,0.65,0,0,0,1,5.7,0,0,0,0,91.23,0.14,1.3,84.4,998,137,1.1 +2008,12,17,7,30,9.600000000000001,0.85,0.059000000000000004,0.65,39,472,104,3,6.7,26,0,7,26,82.10000000000001,0.14,1.2000000000000002,82.01,998,142,1.1 +2008,12,17,8,30,10.9,0.86,0.055,0.65,57,691,241,2,7.6000000000000005,95,2,0,95,74.57000000000001,0.14,1.1,80.01,998,155,1.3 +2008,12,17,9,30,11.700000000000001,0.75,0.058,0.65,68,776,347,7,7.5,179,73,0,205,68.94,0.14,1.1,75.46000000000001,998,176,1.3 +2008,12,17,10,30,12.200000000000001,0.79,0.054,0.65,71,827,410,2,6.800000000000001,243,99,0,283,65.78,0.14,1,69.58,997,189,1.3 +2008,12,17,11,30,12.5,0.84,0.049,0.65,69,838,417,5,5.9,203,19,0,211,65.46000000000001,0.14,1,64.33,997,194,1.4000000000000001 +2008,12,17,12,30,12.600000000000001,0.85,0.049,0.65,66,809,368,2,5.2,197,22,0,205,68.02,0.14,1,60.53,996,197,1.3 +2008,12,17,13,30,12.200000000000001,0.88,0.048,0.65,57,739,272,5,4.5,135,6,0,136,73.15,0.14,0.9,59.22,996,207,1 +2008,12,17,14,30,11.4,0.9,0.049,0.65,42,569,138,3,5,53,1,0,53,80.32000000000001,0.14,0.9,64.89,996,241,0.6000000000000001 +2008,12,17,15,30,10.5,0.91,0.051000000000000004,0.65,11,136,14,8,4.3,5,0,7,5,88.78,0.14,0.9,65.59,996,300,0.6000000000000001 +2008,12,17,16,30,9.600000000000001,0.91,0.053,0.65,0,0,0,6,3.7,0,0,0,0,98.98,0.14,1,66.64,996,167,0.8 +2008,12,17,17,30,8.6,0.9,0.056,0.65,0,0,0,7,3.7,0,0,0,0,109.53,0.14,1,71.3,995,7,1.1 +2008,12,17,18,30,7.7,0.87,0.06,0.65,0,0,0,7,3.7,0,0,0,0,120.52,0.14,1,75.87,995,18,1.3 +2008,12,17,19,30,7.1000000000000005,0.8200000000000001,0.066,0.65,0,0,0,7,3.6,0,0,0,0,131.67000000000002,0.14,1,78.69,994,26,1.3 +2008,12,17,20,30,6.800000000000001,0.77,0.07200000000000001,0.65,0,0,0,7,3.6,0,0,0,0,142.62,0.14,1,79.9,994,31,1.3 +2008,12,17,21,30,6.7,0.73,0.077,0.65,0,0,0,9,3.4000000000000004,0,0,0,0,152.66,0.14,1,79.62,994,29,1.3 +2008,12,17,22,30,6.800000000000001,0.73,0.08,0.65,0,0,0,6,3.3000000000000003,0,0,0,0,159.97,0.14,1,78.37,994,21,1.2000000000000002 +2008,12,17,23,30,6.7,0.75,0.08,0.65,0,0,0,7,3.2,0,0,0,0,160.88,0.14,1,78.55,993,12,1.1 +2008,12,18,0,30,6.5,0.77,0.081,0.65,0,0,0,6,3.2,0,0,0,0,154.67000000000002,0.14,1,79.60000000000001,993,5,1.1 +2008,12,18,1,30,6.300000000000001,0.79,0.08,0.65,0,0,0,7,3.3000000000000003,0,0,0,0,145.03,0.14,1,81.01,993,5,1.1 +2008,12,18,2,30,6,0.8200000000000001,0.08,0.65,0,0,0,5,3.4000000000000004,0,0,0,0,134.2,0.14,1,83.4,993,7,1.2000000000000002 +2008,12,18,3,30,5.7,0.85,0.08,0.65,0,0,0,0,3.5,0,0,0,0,123.06,0.14,1,85.91,993,9,1.2000000000000002 +2008,12,18,4,30,5.300000000000001,0.88,0.08,0.65,0,0,0,0,3.6,0,0,0,0,112.01,0.14,1,88.89,994,15,1.2000000000000002 +2008,12,18,5,30,5,0.9,0.079,0.65,0,0,0,5,3.6,0,0,0,0,101.34,0.14,1,90.58,994,23,1.2000000000000002 +2008,12,18,6,30,5.2,0.92,0.079,0.65,0,0,0,5,3.5,0,0,0,0,91.32000000000001,0.14,1.1,89.01,995,31,1.1 +2008,12,18,7,30,6.7,0.9400000000000001,0.081,0.65,41,428,99,3,4,16,0,7,16,82.19,0.14,1.1,82.85000000000001,995,35,1.3 +2008,12,18,8,30,8.3,0.9500000000000001,0.085,0.65,65,637,233,0,4.9,65,637,0,233,74.65,0.14,1.1,79.41,996,32,1.5 +2008,12,18,9,30,9.700000000000001,0.76,0.117,0.65,89,680,332,0,5.2,89,680,0,332,69,0.14,1.2000000000000002,73.31,996,14,1.4000000000000001 +2008,12,18,10,30,10.8,0.8200000000000001,0.123,0.65,97,720,391,0,5.2,97,720,0,391,65.82000000000001,0.14,1.2000000000000002,68.44,996,174,1.5 +2008,12,18,11,30,11.200000000000001,0.87,0.131,0.65,99,713,395,0,5.300000000000001,99,713,0,395,65.48,0.14,1.3,66.78,997,344,1.8 +2008,12,18,12,30,11.100000000000001,0.84,0.17400000000000002,0.65,107,623,340,7,5.5,199,93,0,234,68.01,0.14,1.3,68.4,997,343,2.2 +2008,12,18,13,30,10.5,0.89,0.195,0.65,96,505,243,7,5.800000000000001,136,24,0,143,73.12,0.14,1.4000000000000001,72.8,997,345,2.1 +2008,12,18,14,30,9.3,0.93,0.22,0.65,67,294,117,7,6.6000000000000005,48,1,0,48,80.28,0.14,1.4000000000000001,83.34,998,348,1.8 +2008,12,18,15,30,8.3,0.98,0.24,0.65,9,13,9,7,6.5,2,0,7,2,88.73,0.14,1.4000000000000001,88.17,999,354,1.8 +2008,12,18,16,30,7.800000000000001,1.01,0.256,0.65,0,0,0,7,6.2,0,0,0,0,98.91,0.14,1.5,89.43,999,181,2.1 +2008,12,18,17,30,7.5,1.03,0.265,0.65,0,0,0,6,6.1000000000000005,0,0,0,0,109.46000000000001,0.14,1.5,90.67,1000,4,2.1 +2008,12,18,18,30,7.2,1.04,0.28,0.65,0,0,0,6,5.800000000000001,0,0,0,0,120.44,0.14,1.5,91.01,1000,4,2.1 +2008,12,18,19,30,6.9,1.04,0.295,0.65,0,0,0,7,5.6000000000000005,0,0,0,0,131.59,0.14,1.4000000000000001,91.24,1001,2,2.1 +2008,12,18,20,30,6.7,1.05,0.3,0.65,0,0,0,4,5.300000000000001,0,0,0,0,142.54,0.14,1.4000000000000001,90.98,1001,1,2.1 +2008,12,18,21,30,6.5,1.07,0.306,0.65,0,0,0,8,5.1000000000000005,0,0,0,0,152.6,0.14,1.4000000000000001,90.65,1001,1,1.9000000000000001 +2008,12,18,22,30,6.300000000000001,1.08,0.314,0.65,0,0,0,7,4.9,0,0,0,0,159.96,0.14,1.4000000000000001,90.57000000000001,1002,2,1.8 +2008,12,18,23,30,6,1.08,0.306,0.65,0,0,0,7,4.7,0,0,0,0,160.93,0.14,1.5,91.37,1002,4,1.6 +2008,12,19,0,30,5.800000000000001,1.08,0.297,0.65,0,0,0,7,4.5,0,0,0,0,154.76,0.14,1.5,91.54,1002,3,1.4000000000000001 +2008,12,19,1,30,5.5,1.09,0.28700000000000003,0.65,0,0,0,8,4.4,0,0,0,0,145.13,0.14,1.4000000000000001,92.44,1002,178,1.3 +2008,12,19,2,30,5.1000000000000005,1.11,0.261,0.65,0,0,0,4,4.1000000000000005,0,0,0,0,134.31,0.14,1.4000000000000001,93.28,1002,355,1.3 +2008,12,19,3,30,4.7,1.1300000000000001,0.255,0.65,0,0,0,0,3.8000000000000003,0,0,0,0,123.17,0.14,1.4000000000000001,93.58,1002,180,1.4000000000000001 +2008,12,19,4,30,4.2,1.16,0.247,0.65,0,0,0,4,3.4000000000000004,0,0,0,0,112.12,0.14,1.4000000000000001,94.60000000000001,1003,5,1.5 +2008,12,19,5,30,4,1.18,0.23500000000000001,0.65,0,0,0,0,3,0,0,0,0,101.44,0.14,1.4000000000000001,93.45,1003,9,1.6 +2008,12,19,6,30,4.6000000000000005,1.2,0.231,0.65,0,0,0,0,2.9000000000000004,0,0,0,0,91.42,0.14,1.3,88.86,1003,12,1.7000000000000002 +2008,12,19,7,30,6.1000000000000005,1.22,0.227,0.65,54,249,87,0,3.7,54,249,0,87,82.27,0.14,1.3,84.52,1004,13,2.1 +2008,12,19,8,30,7.800000000000001,1.23,0.217,0.65,91,471,215,0,4.4,91,471,0,215,74.72,0.14,1.3,78.96000000000001,1004,11,2.4000000000000004 +2008,12,19,9,30,9.4,1.19,0.116,0.65,84,693,332,0,4.800000000000001,84,693,0,332,69.06,0.14,1.3,73.23,1004,10,2.1 +2008,12,19,10,30,10.8,1.2,0.12,0.65,92,733,392,0,4.800000000000001,92,733,0,392,65.85,0.14,1.3,66.62,1004,11,2 +2008,12,19,11,30,11.700000000000001,1.16,0.122,0.65,94,738,400,0,4.3,94,738,0,400,65.49,0.14,1.2000000000000002,60.47,1004,10,1.9000000000000001 +2008,12,19,12,30,11.9,1.09,0.11800000000000001,0.65,87,707,352,0,4,87,707,0,352,68,0.14,1.2000000000000002,58.620000000000005,1005,7,2.1 +2008,12,19,13,30,11.5,1.04,0.111,0.65,74,630,258,0,4.2,74,630,0,258,73.09,0.14,1.2000000000000002,60.96,1005,181,2 +2008,12,19,14,30,10,1.03,0.105,0.65,53,455,130,0,5.9,53,455,0,130,80.23,0.14,1.3,75.88,1006,353,1.7000000000000002 +2008,12,19,15,30,8.6,0.8300000000000001,0.124,0.65,13,44,14,0,5.7,13,44,0,14,88.67,0.14,1.3,81.78,1006,355,2 +2008,12,19,16,30,8.1,0.79,0.134,0.65,0,0,0,0,5.6000000000000005,0,0,0,0,98.84,0.14,1.4000000000000001,84.41,1007,183,2.4000000000000004 +2008,12,19,17,30,7.800000000000001,0.78,0.139,0.65,0,0,0,4,5.800000000000001,0,0,0,0,109.38,0.14,1.4000000000000001,87.08,1007,14,2.4000000000000004 +2008,12,19,18,30,7.4,0.84,0.136,0.65,0,0,0,8,5.6000000000000005,0,0,0,0,120.36,0.14,1.4000000000000001,88.44,1008,22,2.2 +2008,12,19,19,30,7,0.97,0.12,0.65,0,0,0,1,5.300000000000001,0,0,0,0,131.51,0.14,1.4000000000000001,88.72,1008,28,1.9000000000000001 +2008,12,19,20,30,6.5,1.08,0.098,0.65,0,0,0,0,4.7,0,0,0,0,142.47,0.14,1.4000000000000001,88.58,1008,30,1.7000000000000002 +2008,12,19,21,30,6.1000000000000005,1.1500000000000001,0.079,0.65,0,0,0,0,4.3,0,0,0,0,152.54,0.14,1.3,88.29,1009,27,1.7000000000000002 +2008,12,19,22,30,5.7,1.21,0.065,0.65,0,0,0,0,3.9000000000000004,0,0,0,0,159.93,0.14,1.2000000000000002,88.47,1009,24,1.8 +2008,12,19,23,30,5.2,1.26,0.053,0.65,0,0,0,0,3.6,0,0,0,0,160.97,0.14,1.1,89.65,1009,23,1.9000000000000001 +2008,12,20,0,30,4.7,1.3,0.045,0.65,0,0,0,0,3.3000000000000003,0,0,0,0,154.84,0.14,1,90.42,1009,22,2 +2008,12,20,1,30,4.3,1.33,0.043000000000000003,0.65,0,0,0,0,2.9000000000000004,0,0,0,0,145.22,0.14,1,90.4,1009,23,2.1 +2008,12,20,2,30,4.1000000000000005,1.35,0.044,0.65,0,0,0,4,2.5,0,0,0,0,134.41,0.14,1,89.02,1009,24,2.1 +2008,12,20,3,30,3.8000000000000003,1.34,0.046,0.65,0,0,0,1,2.1,0,0,0,0,123.27,0.14,1,88.65,1009,27,2.1 +2008,12,20,4,30,3.7,1.32,0.05,0.65,0,0,0,4,1.8,0,0,0,0,112.22,0.14,1,87.7,1009,33,2.1 +2008,12,20,5,30,3.7,1.3,0.053,0.65,0,0,0,0,1.7000000000000002,0,0,0,0,101.54,0.14,1,86.98,1010,42,2 +2008,12,20,6,30,4.800000000000001,1.28,0.055,0.65,0,0,0,0,1.9000000000000001,0,0,0,0,91.51,0.14,0.9,81.51,1010,49,1.9000000000000001 +2008,12,20,7,30,7.4,1.25,0.057,0.65,37,492,103,0,3.2,37,492,0,103,82.35000000000001,0.14,0.9,74.7,1011,50,2.1 +2008,12,20,8,30,10.100000000000001,1.24,0.058,0.65,57,697,240,0,5,57,697,0,240,74.79,0.14,0.9,70.7,1011,49,2.5 +2008,12,20,9,30,11.8,1.24,0.058,0.65,67,790,349,0,5.2,67,790,0,349,69.11,0.14,0.9,63.84,1011,53,2.6 +2008,12,20,10,30,12.9,1.28,0.055,0.65,71,835,412,0,4.9,71,835,0,412,65.88,0.14,0.9,58.13,1011,55,2.3000000000000003 +2008,12,20,11,30,13.5,1.33,0.051000000000000004,0.65,70,846,421,0,4.2,70,846,0,421,65.49,0.14,0.9,53.36,1011,44,1.6 +2008,12,20,12,30,13.700000000000001,1.25,0.054,0.65,68,807,370,0,3.3000000000000003,68,807,0,370,67.98,0.14,1,49.54,1011,196,1.2000000000000002 +2008,12,20,13,30,13,1.1500000000000001,0.058,0.65,61,724,272,0,3.1,61,724,0,272,73.05,0.14,1,51.09,1011,344,1 +2008,12,20,14,30,11.200000000000001,1.12,0.056,0.65,44,557,139,0,6.1000000000000005,44,557,0,139,80.17,0.14,1.1,70.77,1011,336,1 +2008,12,20,15,30,9.200000000000001,1.07,0.057,0.65,13,140,16,5,4.800000000000001,6,0,7,6,88.60000000000001,0.14,1.2000000000000002,73.75,1011,346,1.3 +2008,12,20,16,30,8,1.08,0.053,0.65,0,0,0,1,3.9000000000000004,0,0,0,0,98.76,0.14,1.3,75.56,1012,180,1.6 +2008,12,20,17,30,7.2,1.09,0.049,0.65,0,0,0,0,3.8000000000000003,0,0,0,0,109.3,0.14,1.3,78.78,1012,14,1.8 +2008,12,20,18,30,6.6000000000000005,1.11,0.045,0.65,0,0,0,3,3.5,0,0,0,0,120.28,0.14,1.4000000000000001,80.35000000000001,1012,24,2 +2008,12,20,19,30,6,1.12,0.041,0.65,0,0,0,0,3.1,0,0,0,0,131.42000000000002,0.14,1.4000000000000001,81.7,1013,30,2 +2008,12,20,20,30,5.5,1.1500000000000001,0.038,0.65,0,0,0,0,2.7,0,0,0,0,142.38,0.14,1.4000000000000001,82.07000000000001,1013,32,1.9000000000000001 +2008,12,20,21,30,5.1000000000000005,1.18,0.037,0.65,0,0,0,0,2.2,0,0,0,0,152.47,0.14,1.4000000000000001,81.5,1013,33,1.8 +2008,12,20,22,30,4.7,1.21,0.037,0.65,0,0,0,0,1.7000000000000002,0,0,0,0,159.9,0.14,1.3,80.61,1013,34,1.8 +2008,12,20,23,30,4.4,1.22,0.037,0.65,0,0,0,1,1.1,0,0,0,0,161,0.14,1.3,79.10000000000001,1012,35,1.7000000000000002 +2008,12,21,0,30,4.3,1.22,0.038,0.65,0,0,0,4,0.6000000000000001,0,0,0,0,154.92000000000002,0.14,1.4000000000000001,76.84,1012,34,1.6 +2008,12,21,1,30,4.4,1.2,0.04,0.65,0,0,0,5,0.1,0,0,0,0,145.31,0.14,1.3,73.86,1011,31,1.6 +2008,12,21,2,30,4.5,1.18,0.041,0.65,0,0,0,1,-0.2,0,0,0,0,134.5,0.14,1.3,71.58,1011,26,1.6 +2008,12,21,3,30,4.7,1.16,0.041,0.65,0,0,0,0,-0.5,0,0,0,0,123.37,0.14,1.3,69.26,1011,23,1.7000000000000002 +2008,12,21,4,30,4.9,1.16,0.039,0.65,0,0,0,1,-0.7000000000000001,0,0,0,0,112.31,0.14,1.3,67.12,1011,19,1.6 +2008,12,21,5,30,5.1000000000000005,1.17,0.038,0.65,0,0,0,0,-0.9,0,0,0,0,101.63,0.14,1.3,65.18,1012,10,1.6 +2008,12,21,6,30,5.7,1.17,0.038,0.65,0,0,0,0,-1,0,0,0,0,91.59,0.14,1.2000000000000002,62.22,1012,181,1.6 +2008,12,21,7,30,7.7,1.16,0.037,0.65,34,524,103,1,0.9,34,524,0,103,82.43,0.14,1.1,62.050000000000004,1012,356,1.7000000000000002 +2008,12,21,8,30,10.100000000000001,1.1400000000000001,0.037,0.65,51,724,240,0,2.9000000000000004,51,724,0,240,74.85000000000001,0.14,1.1,60.870000000000005,1012,352,2.3000000000000003 +2008,12,21,9,30,11.8,1.09,0.04,0.65,61,812,350,0,2.5,61,812,0,350,69.15,0.14,1,52.9,1013,351,2.9000000000000004 +2008,12,21,10,30,13.3,1.11,0.042,0.65,66,848,412,0,3.7,66,848,0,412,65.9,0.14,1,52.36,1012,353,3.2 +2008,12,21,11,30,14.3,1.1400000000000001,0.043000000000000003,0.65,67,851,420,0,4.9,67,851,0,420,65.48,0.14,1,53.11,1012,355,3.2 +2008,12,21,12,30,14.600000000000001,1.08,0.049,0.65,66,809,370,0,5.6000000000000005,66,809,0,370,67.95,0.14,1.1,54.95,1012,355,2.8000000000000003 +2008,12,21,13,30,13.9,1.09,0.055,0.65,60,725,272,0,6.7,60,725,0,272,73,0.14,1.1,61.82,1012,353,2.1 +2008,12,21,14,30,11.9,1.11,0.056,0.65,45,558,140,0,8.4,45,558,0,140,80.11,0.14,1.1,79.07000000000001,1013,176,1.6 +2008,12,21,15,30,9.9,1.04,0.055,0.65,13,147,17,0,6.800000000000001,13,147,0,17,88.54,0.14,1.2000000000000002,81.13,1013,11,1.6 +2008,12,21,16,30,8.9,1.08,0.054,0.65,0,0,0,1,6,0,0,0,0,98.68,0.14,1.2000000000000002,82.02,1013,31,1.7000000000000002 +2008,12,21,17,30,8.3,1.12,0.05,0.65,0,0,0,0,5.5,0,0,0,0,109.21000000000001,0.14,1.3,82.3,1014,51,1.7000000000000002 +2008,12,21,18,30,7.9,1.17,0.046,0.65,0,0,0,0,4.9,0,0,0,0,120.19,0.14,1.4000000000000001,81.43,1014,70,1.7000000000000002 +2008,12,21,19,30,7.4,1.21,0.044,0.65,0,0,0,0,4.5,0,0,0,0,131.33,0.14,1.4000000000000001,81.68,1015,86,1.7000000000000002 +2008,12,21,20,30,7,1.23,0.045,0.65,0,0,0,0,4.1000000000000005,0,0,0,0,142.3,0.14,1.4000000000000001,82,1015,94,1.6 +2008,12,21,21,30,6.7,1.24,0.048,0.65,0,0,0,0,4,0,0,0,0,152.39000000000001,0.14,1.4000000000000001,82.76,1016,95,1.5 +2008,12,21,22,30,6.5,1.24,0.051000000000000004,0.65,0,0,0,0,4,0,0,0,0,159.86,0.14,1.4000000000000001,84.10000000000001,1016,93,1.4000000000000001 +2008,12,21,23,30,6.4,1.26,0.054,0.65,0,0,0,0,4.1000000000000005,0,0,0,0,161.03,0.14,1.4000000000000001,85.21000000000001,1017,89,1.3 +2008,12,22,0,30,6.6000000000000005,1.28,0.054,0.65,0,0,0,0,4.1000000000000005,0,0,0,0,154.99,0.14,1.3,84.07000000000001,1017,89,1.3 +2008,12,22,1,30,7.300000000000001,1.28,0.053,0.65,0,0,0,0,4,0,0,0,0,145.4,0.14,1.3,79.71000000000001,1017,95,1.1 +2008,12,22,2,30,7.9,1.28,0.052000000000000005,0.65,0,0,0,0,3.9000000000000004,0,0,0,0,134.6,0.14,1.2000000000000002,76.05,1017,99,0.9 +2008,12,22,3,30,7.800000000000001,1.27,0.052000000000000005,0.65,0,0,0,0,3.9000000000000004,0,0,0,0,123.46000000000001,0.14,1.2000000000000002,76.33,1017,91,0.9 +2008,12,22,4,30,7.5,1.26,0.052000000000000005,0.65,0,0,0,0,3.8000000000000003,0,0,0,0,112.4,0.14,1.2000000000000002,77.19,1017,81,0.9 +2008,12,22,5,30,7.300000000000001,1.25,0.052000000000000005,0.65,0,0,0,0,3.6,0,0,0,0,101.71000000000001,0.14,1.2000000000000002,77.44,1017,78,1 +2008,12,22,6,30,7.7,1.25,0.052000000000000005,0.65,0,0,0,0,3.5,0,0,0,0,91.67,0.14,1.2000000000000002,74.53,1017,79,1 +2008,12,22,7,30,9.3,1.24,0.052000000000000005,0.65,35,485,99,0,3.8000000000000003,35,485,0,99,82.49,0.14,1.2000000000000002,68.59,1017,84,0.9 +2008,12,22,8,30,11.200000000000001,1.24,0.053,0.65,55,690,234,0,5.800000000000001,55,690,0,234,74.9,0.14,1.2000000000000002,69.34,1017,95,0.9 +2008,12,22,9,30,13.200000000000001,1.21,0.058,0.65,66,776,342,0,5.300000000000001,66,776,0,342,69.19,0.14,1.2000000000000002,58.56,1017,160,0.8 +2008,12,22,10,30,14.8,1.21,0.061,0.65,72,808,402,0,6.4,72,808,0,402,65.91,0.14,1.3,57.1,1017,227,1.1 +2008,12,22,11,30,15.4,1.2,0.065,0.65,74,808,409,0,7.2,74,808,0,409,65.47,0.14,1.3,58.25,1016,240,1.6 +2008,12,22,12,30,15.5,1.2,0.07200000000000001,0.65,72,765,360,0,7.7,72,765,0,360,67.92,0.14,1.4000000000000001,59.730000000000004,1015,242,1.7000000000000002 +2008,12,22,13,30,14.8,1.19,0.077,0.65,65,680,264,0,8.200000000000001,65,680,0,264,72.95,0.14,1.4000000000000001,64.59,1015,241,1.5 +2008,12,22,14,30,13.200000000000001,1.18,0.08,0.65,47,507,135,0,10,47,507,0,135,80.04,0.14,1.4000000000000001,81.04,1015,244,1.2000000000000002 +2008,12,22,15,30,11.8,1.17,0.085,0.65,12,109,15,0,8.4,12,109,0,15,88.46000000000001,0.14,1.4000000000000001,79.52,1015,255,1.2000000000000002 +2008,12,22,16,30,11.4,1.16,0.088,0.65,0,0,0,0,8.1,0,0,0,0,98.59,0.14,1.4000000000000001,79.92,1015,277,1 +2008,12,22,17,30,11.3,1.17,0.089,0.65,0,0,0,0,8,0,0,0,0,109.12,0.14,1.4000000000000001,80.38,1015,314,0.7000000000000001 +2008,12,22,18,30,10.700000000000001,1.19,0.088,0.65,0,0,0,0,7.9,0,0,0,0,120.09,0.14,1.4000000000000001,82.93,1015,191,0.5 +2008,12,22,19,30,9.9,1.21,0.08700000000000001,0.65,0,0,0,0,7.7,0,0,0,0,131.24,0.14,1.4000000000000001,86.31,1015,53,0.6000000000000001 +2008,12,22,20,30,9.200000000000001,1.25,0.08700000000000001,0.65,0,0,0,0,7.5,0,0,0,0,142.20000000000002,0.14,1.4000000000000001,88.92,1015,62,0.9 +2008,12,22,21,30,8.5,1.27,0.08700000000000001,0.65,0,0,0,0,7.2,0,0,0,0,152.31,0.14,1.4000000000000001,91.52,1015,63,1.1 +2008,12,22,22,30,8,1.29,0.088,0.65,0,0,0,0,6.9,0,0,0,0,159.81,0.14,1.3,92.9,1014,64,1.2000000000000002 +2008,12,22,23,30,7.6000000000000005,1.3,0.089,0.65,0,0,0,0,6.6000000000000005,0,0,0,0,161.05,0.14,1.3,93.67,1014,62,1.2000000000000002 +2008,12,23,0,30,7.300000000000001,1.32,0.08600000000000001,0.65,0,0,0,0,6.300000000000001,0,0,0,0,155.05,0.14,1.3,93.43,1014,58,1.3 +2008,12,23,1,30,7.2,1.33,0.083,0.65,0,0,0,1,5.9,0,0,0,0,145.48,0.14,1.2000000000000002,91.63,1014,53,1.2000000000000002 +2008,12,23,2,30,7.1000000000000005,1.35,0.081,0.65,0,0,0,1,5.5,0,0,0,0,134.68,0.14,1.2000000000000002,89.66,1014,43,1.2000000000000002 +2008,12,23,3,30,7.1000000000000005,1.36,0.079,0.65,0,0,0,0,5.1000000000000005,0,0,0,0,123.54,0.14,1.2000000000000002,87.25,1013,32,1.2000000000000002 +2008,12,23,4,30,7.1000000000000005,1.36,0.079,0.65,0,0,0,0,4.800000000000001,0,0,0,0,112.49000000000001,0.14,1.2000000000000002,85.51,1014,22,1.1 +2008,12,23,5,30,7,1.37,0.079,0.65,0,0,0,0,4.6000000000000005,0,0,0,0,101.79,0.14,1.2000000000000002,84.68,1014,14,1 +2008,12,23,6,30,7.2,1.37,0.079,0.65,0,0,0,0,4.4,0,0,0,0,91.74,0.14,1.2000000000000002,82.35000000000001,1014,8,0.9 +2008,12,23,7,30,8.6,1.37,0.08,0.65,38,430,94,0,4.7,38,430,0,94,82.55,0.14,1.3,76.25,1015,181,0.9 +2008,12,23,8,30,10.5,1.37,0.08,0.65,60,645,228,0,6,60,645,0,228,74.95,0.14,1.3,73.58,1015,347,1 +2008,12,23,9,30,11.9,1.3,0.10400000000000001,0.65,79,710,331,0,5.7,79,710,0,331,69.21000000000001,0.14,1.3,65.66,1015,331,1.1 +2008,12,23,10,30,12.9,1.28,0.098,0.65,83,762,394,0,5.6000000000000005,83,762,0,394,65.92,0.14,1.3,61.22,1015,314,1.1 +2008,12,23,11,30,13.4,1.28,0.09,0.65,82,777,405,0,5.5,82,777,0,405,65.45,0.14,1.3,59.01,1015,303,1.3 +2008,12,23,12,30,13.4,1.26,0.084,0.65,77,755,361,0,5.6000000000000005,77,755,0,361,67.87,0.14,1.3,59.04,1014,304,1.6 +2008,12,23,13,30,12.8,1.26,0.081,0.65,66,682,267,0,5.6000000000000005,66,682,0,267,72.88,0.14,1.3,61.78,1014,312,1.5 +2008,12,23,14,30,11,1.25,0.078,0.65,48,519,138,0,7.2,48,519,0,138,79.96000000000001,0.14,1.3,77.25,1014,320,1.3 +2008,12,23,15,30,9,1.2,0.095,0.65,13,105,16,0,6.300000000000001,13,105,0,16,88.38,0.14,1.3,83.05,1014,330,1.4000000000000001 +2008,12,23,16,30,8,1.18,0.091,0.65,0,0,0,0,5.5,0,0,0,0,98.5,0.14,1.3,84.18,1015,341,1.6 +2008,12,23,17,30,7.5,1.1500000000000001,0.083,0.65,0,0,0,0,5.4,0,0,0,0,109.02,0.14,1.3,86.36,1015,352,1.6 +2008,12,23,18,30,7.2,1.1400000000000001,0.077,0.65,0,0,0,0,5.300000000000001,0,0,0,0,119.99000000000001,0.14,1.3,87.86,1015,181,1.5 +2008,12,23,19,30,7,1.1500000000000001,0.07200000000000001,0.65,0,0,0,0,5.2,0,0,0,0,131.14000000000001,0.14,1.3,88.47,1015,8,1.4000000000000001 +2008,12,23,20,30,7,1.17,0.069,0.65,0,0,0,0,5,0,0,0,0,142.1,0.14,1.3,87.35000000000001,1015,13,1.3 +2008,12,23,21,30,7.2,1.19,0.068,0.65,0,0,0,0,4.800000000000001,0,0,0,0,152.22,0.14,1.3,84.57000000000001,1015,18,1.3 +2008,12,23,22,30,7.300000000000001,1.21,0.068,0.65,0,0,0,0,4.4,0,0,0,0,159.75,0.14,1.2000000000000002,82.04,1015,27,1.2000000000000002 +2008,12,23,23,30,7.4,1.23,0.07,0.65,0,0,0,0,4.1000000000000005,0,0,0,0,161.05,0.14,1.2000000000000002,79.36,1015,40,1.2000000000000002 +2008,12,24,0,30,7.5,1.26,0.07100000000000001,0.65,0,0,0,0,3.7,0,0,0,0,155.11,0.14,1.2000000000000002,76.75,1015,57,1.1 +2008,12,24,1,30,7.5,1.29,0.073,0.65,0,0,0,0,3.3000000000000003,0,0,0,0,145.56,0.14,1.2000000000000002,74.93,1015,75,1.2000000000000002 +2008,12,24,2,30,7.300000000000001,1.33,0.076,0.65,0,0,0,1,3.1,0,0,0,0,134.76,0.14,1.2000000000000002,74.46000000000001,1015,90,1.3 +2008,12,24,3,30,6.6000000000000005,1.35,0.079,0.65,0,0,0,0,2.9000000000000004,0,0,0,0,123.63000000000001,0.14,1.2000000000000002,77.01,1015,100,1.5 +2008,12,24,4,30,5.800000000000001,1.35,0.084,0.65,0,0,0,0,2.7,0,0,0,0,112.57000000000001,0.14,1.2000000000000002,80.60000000000001,1015,108,1.7000000000000002 +2008,12,24,5,30,5.2,1.34,0.09,0.65,0,0,0,0,2.7,0,0,0,0,101.87,0.14,1.2000000000000002,83.75,1016,115,1.8 +2008,12,24,6,30,5.9,1.33,0.097,0.65,0,0,0,0,2.8000000000000003,0,0,0,0,91.81,0.14,1.2000000000000002,80.73,1016,119,1.8 +2008,12,24,7,30,8.3,1.32,0.106,0.65,41,383,90,3,4.1000000000000005,23,0,7,23,82.61,0.14,1.3,75.03,1016,119,2 +2008,12,24,8,30,10.9,1.31,0.116,0.65,68,590,221,1,6.300000000000001,68,590,0,221,74.99,0.14,1.3,73.17,1017,119,2.4000000000000004 +2008,12,24,9,30,12.600000000000001,1.28,0.167,0.65,95,633,319,0,6.4,95,633,0,319,69.23,0.14,1.3,65.82000000000001,1017,128,3 +2008,12,24,10,30,13.600000000000001,1.27,0.167,0.65,103,678,379,0,7.300000000000001,103,678,0,379,65.92,0.14,1.4000000000000001,65.53,1016,144,3.3000000000000003 +2008,12,24,11,30,14,1.25,0.16,0.65,103,691,391,0,7.800000000000001,103,691,0,391,65.42,0.14,1.4000000000000001,66.25,1016,155,3.4000000000000004 +2008,12,24,12,30,13.9,1.24,0.145,0.65,93,675,348,0,8,93,675,0,348,67.82000000000001,0.14,1.4000000000000001,67.59,1015,165,3.3000000000000003 +2008,12,24,13,30,13.200000000000001,1.23,0.14300000000000002,0.65,80,596,257,0,8.200000000000001,80,596,0,257,72.81,0.14,1.3,71.66,1015,173,2.6 +2008,12,24,14,30,11.4,1.22,0.14,0.65,56,422,130,0,9,56,422,0,130,79.88,0.14,1.4000000000000001,85.13,1015,179,1.8 +2008,12,24,15,30,9.700000000000001,1.1500000000000001,0.181,0.65,12,46,13,0,8,12,46,0,13,88.3,0.14,1.4000000000000001,88.95,1015,182,1.5 +2008,12,24,16,30,9.1,1.11,0.18,0.65,0,0,0,0,7.6000000000000005,0,0,0,0,98.4,0.14,1.4000000000000001,90.56,1015,183,1.5 +2008,12,24,17,30,8.700000000000001,1.07,0.177,0.65,0,0,0,0,7.6000000000000005,0,0,0,0,108.91,0.14,1.4000000000000001,93.04,1014,182,1.5 +2008,12,24,18,30,8.3,1.03,0.176,0.65,0,0,0,0,7.7,0,0,0,0,119.88,0.14,1.4000000000000001,95.71000000000001,1014,181,1.5 +2008,12,24,19,30,8.1,0.99,0.178,0.65,0,0,0,3,7.7,0,0,0,0,131.03,0.14,1.4000000000000001,97.14,1014,180,1.4000000000000001 +2008,12,24,20,30,8.4,0.96,0.178,0.65,0,0,0,3,7.7,0,0,0,0,142,0.14,1.5,95.63,1013,181,1.3 +2008,12,24,21,30,8.9,0.97,0.188,0.65,0,0,0,3,7.9,0,0,0,0,152.13,0.14,1.5,93.13,1013,184,1.1 +2008,12,24,22,30,9.200000000000001,0.99,0.193,0.65,0,0,0,4,7.800000000000001,0,0,0,0,159.69,0.14,1.5,91.19,1012,191,0.9 +2008,12,24,23,30,9.200000000000001,1.02,0.183,0.65,0,0,0,4,7.800000000000001,0,0,0,0,161.05,0.14,1.5,90.76,1012,199,0.9 +2008,12,25,0,30,9.1,1.05,0.184,0.65,0,0,0,4,7.7,0,0,0,0,155.16,0.14,1.5,90.65,1011,205,0.9 +2008,12,25,1,30,9,1.07,0.181,0.65,0,0,0,4,7.5,0,0,0,0,145.63,0.14,1.5,90.3,1010,210,0.9 +2008,12,25,2,30,9.1,1.09,0.17400000000000002,0.65,0,0,0,7,7.4,0,0,0,0,134.84,0.14,1.5,88.85000000000001,1009,210,0.9 +2008,12,25,3,30,9.200000000000001,1.11,0.18,0.65,0,0,0,4,7.300000000000001,0,0,0,0,123.71000000000001,0.14,1.6,87.98,1008,200,0.9 +2008,12,25,4,30,9.4,1.1400000000000001,0.178,0.65,0,0,0,8,7.300000000000001,0,0,0,0,112.64,0.14,1.6,86.98,1008,177,0.8 +2008,12,25,5,30,9.4,1.1500000000000001,0.181,0.65,0,0,0,6,7.4,0,0,0,0,101.94,0.14,1.7000000000000002,87.2,1009,147,0.8 +2008,12,25,6,30,9.3,1.17,0.194,0.65,0,0,0,6,7.4,0,0,0,0,91.87,0.14,1.8,87.81,1009,129,0.9 +2008,12,25,7,30,9.600000000000001,1.18,0.198,0.65,49,250,81,6,7.5,6,0,7,6,82.66,0.14,1.8,86.85000000000001,1009,125,1 +2008,12,25,8,30,10.3,1.18,0.202,0.65,87,462,206,7,8.1,4,0,0,4,75.02,0.14,1.9000000000000001,86.47,1009,124,1.1 +2008,12,25,9,30,11,1.19,0.226,0.65,113,550,307,6,8.700000000000001,8,0,1,8,69.25,0.14,1.9000000000000001,85.86,1008,119,1.4000000000000001 +2008,12,25,10,30,11.200000000000001,1.21,0.225,0.65,122,603,368,6,8.8,8,0,0,8,65.91,0.14,1.9000000000000001,84.95,1008,112,1.4000000000000001 +2008,12,25,11,30,11.200000000000001,1.21,0.211,0.65,120,623,380,6,8.700000000000001,81,1,0,81,65.39,0.14,1.9000000000000001,84.86,1007,100,1.3 +2008,12,25,12,30,10.9,1.19,0.201,0.65,112,599,339,6,8.8,103,3,0,104,67.76,0.14,1.9000000000000001,87.13,1006,86,1.1 +2008,12,25,13,30,10.4,1.2,0.20400000000000001,0.65,97,510,248,7,8.9,68,2,0,68,72.74,0.14,1.9000000000000001,90.65,1006,76,1 +2008,12,25,14,30,9.600000000000001,1.2,0.186,0.65,65,356,128,6,8.4,3,0,0,3,79.79,0.14,1.9000000000000001,92.44,1006,70,1.1 +2008,12,25,15,30,9,1.21,0.17400000000000002,0.65,14,53,16,7,7.7,3,0,7,3,88.21000000000001,0.14,1.9000000000000001,91.55,1005,70,1.3 +2008,12,25,16,30,8.8,1.19,0.166,0.65,0,0,0,6,7.300000000000001,0,0,0,0,98.29,0.14,1.8,90.52,1005,74,1.4000000000000001 +2008,12,25,17,30,8.6,1.18,0.16,0.65,0,0,0,8,7.1000000000000005,0,0,0,0,108.81,0.14,1.8,90.25,1005,78,1.5 +2008,12,25,18,30,8.4,1.16,0.17200000000000001,0.65,0,0,0,4,6.9,0,0,0,0,119.77,0.14,1.8,90.11,1005,80,1.7000000000000002 +2008,12,25,19,30,8.1,1.1500000000000001,0.17400000000000002,0.65,0,0,0,4,6.6000000000000005,0,0,0,0,130.92000000000002,0.14,1.8,90.56,1005,78,2.1 +2008,12,25,20,30,7.800000000000001,1.16,0.151,0.65,0,0,0,7,6.300000000000001,0,0,0,0,141.89000000000001,0.14,1.8,90.26,1004,76,2.7 +2008,12,25,21,30,7.300000000000001,1.19,0.133,0.65,0,0,0,4,5.7,0,0,0,0,152.03,0.14,1.7000000000000002,89.41,1004,77,3.2 +2008,12,25,22,30,6.9,1.22,0.113,0.65,0,0,0,7,5.1000000000000005,0,0,0,0,159.62,0.14,1.7000000000000002,88.07000000000001,1003,80,3.3000000000000003 +2008,12,25,23,30,6.6000000000000005,1.25,0.093,0.65,0,0,0,7,4.7,0,0,0,0,161.05,0.14,1.6,87.72,1003,83,3.2 +2008,12,26,0,30,6.6000000000000005,1.24,0.097,0.65,0,0,0,7,4.5,0,0,0,0,155.20000000000002,0.14,1.6,86.67,1003,86,3.3000000000000003 +2008,12,26,1,30,6.6000000000000005,1.24,0.093,0.65,0,0,0,6,4.3,0,0,0,0,145.69,0.14,1.5,85.43,1003,87,3.5 +2008,12,26,2,30,6.6000000000000005,1.23,0.09,0.65,0,0,0,7,4.1000000000000005,0,0,0,0,134.91,0.14,1.5,83.81,1003,86,3.6 +2008,12,26,3,30,6.6000000000000005,1.21,0.10200000000000001,0.65,0,0,0,7,3.8000000000000003,0,0,0,0,123.78,0.14,1.5,82.26,1003,86,4 +2008,12,26,4,30,6.800000000000001,1.21,0.10200000000000001,0.65,0,0,0,7,3.7,0,0,0,0,112.71000000000001,0.14,1.5,80.52,1004,87,4.5 +2008,12,26,5,30,7,1.2,0.092,0.65,0,0,0,7,3.6,0,0,0,0,102,0.14,1.5,79.13,1004,89,5 +2008,12,26,6,30,7.2,1.19,0.095,0.65,0,0,0,7,3.6,0,0,0,0,91.93,0.14,1.5,77.8,1005,91,5.2 +2008,12,26,7,30,7.5,1.19,0.099,0.65,42,379,90,5,3.7,6,0,7,6,82.7,0.14,1.5,76.88,1006,93,5.300000000000001 +2008,12,26,8,30,8,1.19,0.105,0.65,69,594,222,7,4,5,0,0,5,75.05,0.14,1.5,75.61,1007,92,5.300000000000001 +2008,12,26,9,30,8.4,1.09,0.132,0.65,91,661,325,7,4.2,18,0,0,18,69.25,0.14,1.5,74.84,1007,89,5 +2008,12,26,10,30,8.8,1.1500000000000001,0.128,0.65,97,716,389,7,4.4,74,1,0,74,65.89,0.14,1.5,73.81,1007,86,4.7 +2008,12,26,11,30,9.200000000000001,1.19,0.123,0.65,96,730,400,7,4.5,89,1,0,90,65.35,0.14,1.5,72.53,1008,83,4.4 +2008,12,26,12,30,9.200000000000001,1.22,0.113,0.65,88,712,358,7,4.6000000000000005,99,5,0,101,67.7,0.14,1.5,72.81,1008,79,4.1000000000000005 +2008,12,26,13,30,8.9,1.22,0.109,0.65,76,638,266,8,4.4,29,0,0,29,72.66,0.14,1.5,73.65,1008,77,3.7 +2008,12,26,14,30,8.200000000000001,1.23,0.107,0.65,55,476,140,7,4.2,9,0,0,9,79.69,0.14,1.4000000000000001,75.95,1008,78,3.7 +2008,12,26,15,30,7.4,1.25,0.10200000000000001,0.65,16,115,19,5,3.5,5,0,7,5,88.11,0.14,1.4000000000000001,76.42,1009,80,3.9000000000000004 +2008,12,26,16,30,6.800000000000001,1.27,0.097,0.65,0,0,0,4,3.1,0,0,0,0,98.19,0.14,1.4000000000000001,77.08,1009,79,3.8000000000000003 +2008,12,26,17,30,6.300000000000001,1.29,0.095,0.65,0,0,0,4,2.7,0,0,0,0,108.7,0.14,1.4000000000000001,77.99,1010,79,3.7 +2008,12,26,18,30,6,1.3,0.095,0.65,0,0,0,5,2.5,0,0,0,0,119.66,0.14,1.3,78.36,1010,79,3.4000000000000004 +2008,12,26,19,30,5.7,1.3,0.099,0.65,0,0,0,8,2.4000000000000004,0,0,0,0,130.81,0.14,1.3,79.21000000000001,1010,80,3.1 +2008,12,26,20,30,5.5,1.29,0.106,0.65,0,0,0,4,2.3000000000000003,0,0,0,0,141.78,0.14,1.4000000000000001,79.71000000000001,1011,79,2.8000000000000003 +2008,12,26,21,30,5.5,1.27,0.117,0.65,0,0,0,4,2.2,0,0,0,0,151.92000000000002,0.14,1.4000000000000001,79.11,1011,74,2.5 +2008,12,26,22,30,5.4,1.25,0.123,0.65,0,0,0,4,2.1,0,0,0,0,159.54,0.14,1.4000000000000001,79.52,1011,68,2.2 +2008,12,26,23,30,5.4,1.24,0.122,0.65,0,0,0,8,2.1,0,0,0,0,161.03,0.14,1.3,79.19,1011,62,2.1 +2008,12,27,0,30,5.300000000000001,1.24,0.121,0.65,0,0,0,7,1.9000000000000001,0,0,0,0,155.24,0.14,1.3,78.84,1011,58,2.2 +2008,12,27,1,30,5.1000000000000005,1.24,0.115,0.65,0,0,0,5,1.7000000000000002,0,0,0,0,145.75,0.14,1.3,78.9,1010,56,2.3000000000000003 +2008,12,27,2,30,4.7,1.24,0.105,0.65,0,0,0,4,1.5,0,0,0,0,134.98,0.14,1.3,79.94,1010,56,2.4000000000000004 +2008,12,27,3,30,4.2,1.26,0.096,0.65,0,0,0,4,1.2000000000000002,0,0,0,0,123.85000000000001,0.14,1.3,80.93,1010,58,2.4000000000000004 +2008,12,27,4,30,3.6,1.29,0.08700000000000001,0.65,0,0,0,0,0.8,0,0,0,0,112.78,0.14,1.3,81.92,1010,59,2.3000000000000003 +2008,12,27,5,30,3,1.31,0.08,0.65,0,0,0,1,0.4,0,0,0,0,102.06,0.14,1.2000000000000002,82.77,1010,62,2.3000000000000003 +2008,12,27,6,30,3.4000000000000004,1.32,0.076,0.65,0,0,0,1,0,0,0,0,0,91.98,0.14,1.2000000000000002,78.21000000000001,1010,63,2.4000000000000004 +2008,12,27,7,30,4.9,1.32,0.074,0.65,38,434,93,4,0.5,8,0,7,8,82.74,0.14,1.2000000000000002,73.4,1011,63,3 +2008,12,27,8,30,6.7,1.33,0.074,0.65,60,654,229,4,0.6000000000000001,34,0,0,34,75.07000000000001,0.14,1.2000000000000002,65.23,1011,64,3.3000000000000003 +2008,12,27,9,30,8.200000000000001,1.27,0.078,0.65,73,747,338,1,0.8,73,747,0,338,69.25,0.14,1.2000000000000002,59.410000000000004,1011,65,2.6 +2008,12,27,10,30,9.3,1.26,0.079,0.65,79,789,402,0,0.5,79,789,0,402,65.86,0.14,1.2000000000000002,54.25,1010,42,1.5 +2008,12,27,11,30,9.9,1.25,0.08,0.65,81,798,415,5,0.1,234,39,0,251,65.29,0.14,1.1,50.660000000000004,1010,182,1.2000000000000002 +2008,12,27,12,30,10,1.17,0.088,0.65,80,757,369,5,0.30000000000000004,124,1,0,125,67.63,0.14,1.1,51.03,1009,347,1.5 +2008,12,27,13,30,9.4,1.1400000000000001,0.09,0.65,71,677,274,4,0.6000000000000001,10,0,0,10,72.57000000000001,0.14,1.1,54.24,1009,176,1.4000000000000001 +2008,12,27,14,30,7.7,1.12,0.09,0.65,53,514,146,4,2.1,5,0,0,5,79.59,0.14,1,67.62,1009,13,1.1 +2008,12,27,15,30,5.9,1.12,0.091,0.65,16,132,21,4,2.1,4,0,7,4,88.01,0.14,1,76.68,1009,38,1.3 +2008,12,27,16,30,4.9,1.1,0.096,0.65,0,0,0,4,1,0,0,0,0,98.07000000000001,0.14,1,75.61,1009,58,1.7000000000000002 +2008,12,27,17,30,4.3,1.09,0.10300000000000001,0.65,0,0,0,4,0.7000000000000001,0,0,0,0,108.58,0.14,1.1,77.31,1009,67,2.2 +2008,12,27,18,30,4,1.08,0.11,0.65,0,0,0,5,0.4,0,0,0,0,119.54,0.14,1.1,77.27,1009,70,2.6 +2008,12,27,19,30,3.7,1.07,0.117,0.65,0,0,0,7,0.2,0,0,0,0,130.69,0.14,1.1,78.13,1010,72,2.7 +2008,12,27,20,30,3.5,1.06,0.124,0.65,0,0,0,8,0.2,0,0,0,0,141.66,0.14,1.1,79.19,1010,73,2.4000000000000004 +2008,12,27,21,30,3.5,1.06,0.14,0.65,0,0,0,7,0.30000000000000004,0,0,0,0,151.81,0.14,1.2000000000000002,79.51,1010,73,2 +2008,12,27,22,30,3.6,1.06,0.153,0.65,0,0,0,6,0.4,0,0,0,0,159.45000000000002,0.14,1.2000000000000002,79.74,1010,74,1.6 +2008,12,27,23,30,3.5,1.05,0.151,0.65,0,0,0,7,0.8,0,0,0,0,161,0.14,1.3,82.3,1009,75,1.3 +2008,12,28,0,30,3.5,1.06,0.163,0.65,0,0,0,4,1.1,0,0,0,0,155.27,0.14,1.3,84.49,1009,75,1.2000000000000002 +2008,12,28,1,30,3.4000000000000004,1.07,0.168,0.65,0,0,0,6,1.4000000000000001,0,0,0,0,145.81,0.14,1.3,86.56,1009,72,1.1 +2008,12,28,2,30,3.4000000000000004,1.08,0.161,0.65,0,0,0,6,1.5,0,0,0,0,135.04,0.14,1.3,87.12,1008,69,1.2000000000000002 +2008,12,28,3,30,3.3000000000000003,1.1,0.169,0.65,0,0,0,8,1.5,0,0,0,0,123.91,0.14,1.3,88.18,1008,70,1.2000000000000002 +2008,12,28,4,30,3.3000000000000003,1.12,0.169,0.65,0,0,0,7,1.6,0,0,0,0,112.84,0.14,1.4000000000000001,88.52,1008,74,1.3 +2008,12,28,5,30,3.3000000000000003,1.1300000000000001,0.166,0.65,0,0,0,4,1.6,0,0,0,0,102.12,0.14,1.4000000000000001,88.84,1008,81,1.3 +2008,12,28,6,30,3.6,1.16,0.19,0.65,0,0,0,7,1.7000000000000002,0,0,0,0,92.02,0.14,1.4000000000000001,87.59,1009,88,1.5 +2008,12,28,7,30,4.2,1.18,0.216,0.65,53,237,83,8,2.2,12,0,7,12,82.77,0.14,1.4000000000000001,86.75,1009,90,1.8 +2008,12,28,8,30,4.9,1.21,0.228,0.65,95,449,210,7,2.8000000000000003,11,0,0,11,75.08,0.14,1.4000000000000001,86.38,1010,87,2.2 +2008,12,28,9,30,5.1000000000000005,1.18,0.234,0.65,119,556,316,7,2.8000000000000003,6,0,0,6,69.24,0.14,1.4000000000000001,85.27,1010,79,2.5 +2008,12,28,10,30,5.300000000000001,1.21,0.265,0.65,137,579,374,8,3,8,0,0,8,65.83,0.14,1.5,85.34,1009,65,2.6 +2008,12,28,11,30,5.5,1.22,0.247,0.65,134,604,387,7,3.4000000000000004,14,0,0,14,65.24,0.14,1.5,86.11,1009,48,2.7 +2008,12,28,12,30,5.6000000000000005,1.24,0.245,0.65,126,574,345,7,3.6,8,0,7,8,67.55,0.14,1.5,87.12,1008,38,3 +2008,12,28,13,30,5.300000000000001,1.25,0.23800000000000002,0.65,107,493,255,8,3.7,8,0,7,8,72.47,0.14,1.6,89.52,1008,37,3.3000000000000003 +2008,12,28,14,30,4.9,1.26,0.187,0.65,68,376,136,5,3.7,5,0,0,5,79.49,0.14,1.6,91.69,1008,41,3.3000000000000003 +2008,12,28,15,30,4.7,1.24,0.178,0.65,17,67,19,7,3.5,6,0,7,6,87.9,0.14,1.6,92.03,1008,48,3.3000000000000003 +2008,12,28,16,30,4.800000000000001,1.23,0.16,0.65,0,0,0,4,3.5,0,0,0,0,97.95,0.14,1.6,90.97,1008,55,3.4000000000000004 +2008,12,28,17,30,4.9,1.17,0.14,0.65,0,0,0,4,3.5,0,0,0,0,108.46000000000001,0.14,1.7000000000000002,90.88,1008,61,3.5 +2008,12,28,18,30,5.1000000000000005,1.1300000000000001,0.17300000000000001,0.65,0,0,0,4,3.6,0,0,0,0,119.42,0.14,1.7000000000000002,90.17,1009,67,3.6 +2008,12,28,19,30,5.6000000000000005,1.08,0.178,0.65,0,0,0,4,3.9000000000000004,0,0,0,0,130.57,0.14,1.8,88.59,1009,77,3.5 +2008,12,28,20,30,6.1000000000000005,1.04,0.154,0.65,0,0,0,4,4.4,0,0,0,0,141.54,0.14,1.8,88.93,1009,88,3.3000000000000003 +2008,12,28,21,30,6.5,1.07,0.165,0.65,0,0,0,4,4.9,0,0,0,0,151.70000000000002,0.14,1.8,89.37,1009,98,3 +2008,12,28,22,30,6.6000000000000005,1.12,0.147,0.65,0,0,0,4,5.2,0,0,0,0,159.36,0.14,1.7000000000000002,90.58,1009,104,2.6 +2008,12,28,23,30,6.5,1.16,0.12,0.65,0,0,0,4,5,0,0,0,0,160.97,0.14,1.7000000000000002,89.98,1009,101,2.4000000000000004 +2008,12,29,0,30,6.4,1.21,0.122,0.65,0,0,0,4,4.7,0,0,0,0,155.29,0.14,1.6,88.67,1010,96,2.2 +2008,12,29,1,30,6.5,1.24,0.124,0.65,0,0,0,4,4.4,0,0,0,0,145.85,0.14,1.6,86.33,1010,91,2.1 +2008,12,29,2,30,6.5,1.27,0.124,0.65,0,0,0,4,4.2,0,0,0,0,135.1,0.14,1.6,85.51,1010,87,2.1 +2008,12,29,3,30,6.6000000000000005,1.29,0.134,0.65,0,0,0,4,4.3,0,0,0,0,123.97,0.14,1.6,85.03,1010,85,2.1 +2008,12,29,4,30,6.6000000000000005,1.32,0.139,0.65,0,0,0,4,4.2,0,0,0,0,112.89,0.14,1.6,84.56,1010,86,2.2 +2008,12,29,5,30,6.6000000000000005,1.33,0.136,0.65,0,0,0,4,4.1000000000000005,0,0,0,0,102.16,0.14,1.6,84.34,1011,90,2.2 +2008,12,29,6,30,7.2,1.32,0.14200000000000002,0.65,0,0,0,4,4.1000000000000005,0,0,0,0,92.06,0.14,1.6,80.85000000000001,1011,92,2.3000000000000003 +2008,12,29,7,30,8.6,1.3,0.146,0.65,47,314,86,4,5.1000000000000005,14,0,7,14,82.79,0.14,1.6,78.48,1012,91,2.6 +2008,12,29,8,30,10.100000000000001,1.28,0.149,0.65,79,533,216,5,6.300000000000001,132,11,7,135,75.09,0.14,1.7000000000000002,77.28,1013,88,3 +2008,12,29,9,30,11.3,1.35,0.149,0.65,95,645,323,5,6.9,96,0,7,96,69.23,0.14,1.7000000000000002,74.14,1013,85,3 +2008,12,29,10,30,12.100000000000001,1.32,0.154,0.65,104,685,385,4,7.1000000000000005,114,0,0,114,65.79,0.14,1.8,71.38,1013,81,2.8000000000000003 +2008,12,29,11,30,12.600000000000001,1.32,0.151,0.65,105,696,397,4,7.1000000000000005,98,0,0,98,65.17,0.14,1.8,69.26,1013,76,2.7 +2008,12,29,12,30,12.600000000000001,1.32,0.164,0.65,103,651,353,4,7.1000000000000005,77,0,0,77,67.46000000000001,0.14,1.8,69.41,1013,70,2.4000000000000004 +2008,12,29,13,30,12.100000000000001,1.32,0.176,0.65,93,556,261,7,7.4,134,34,7,144,72.37,0.14,1.8,73.03,1013,64,1.9000000000000001 +2008,12,29,14,30,10.5,1.4000000000000001,0.166,0.65,64,408,140,5,8.1,45,0,0,45,79.38,0.14,1.7000000000000002,84.97,1013,61,1.6 +2008,12,29,15,30,8.700000000000001,1.47,0.155,0.65,17,99,21,3,6.800000000000001,5,0,7,5,87.79,0.14,1.6,88.11,1014,63,1.8 +2008,12,29,16,30,7.6000000000000005,1.52,0.149,0.65,0,0,0,1,5.7,0,0,0,0,97.83,0.14,1.6,87.61,1014,66,2.1 +2008,12,29,17,30,6.800000000000001,1.54,0.148,0.65,0,0,0,0,4.9,0,0,0,0,108.33,0.14,1.5,87.66,1015,69,2.2 +2008,12,29,18,30,6.300000000000001,1.56,0.151,0.65,0,0,0,0,4.3,0,0,0,0,119.29,0.14,1.5,87.09,1015,72,2.1 +2008,12,29,19,30,5.800000000000001,1.56,0.156,0.65,0,0,0,0,3.9000000000000004,0,0,0,0,130.44,0.14,1.5,87.44,1016,73,2.1 +2008,12,29,20,30,5.5,1.55,0.161,0.65,0,0,0,0,3.5,0,0,0,0,141.42000000000002,0.14,1.4000000000000001,87.14,1016,75,1.9000000000000001 +2008,12,29,21,30,5.2,1.55,0.164,0.65,0,0,0,0,3.3000000000000003,0,0,0,0,151.58,0.14,1.4000000000000001,87.55,1016,74,1.7000000000000002 +2008,12,29,22,30,4.9,1.54,0.165,0.65,0,0,0,0,3.1,0,0,0,0,159.26,0.14,1.4000000000000001,88.02,1017,72,1.6 +2008,12,29,23,30,4.7,1.52,0.165,0.65,0,0,0,0,2.8000000000000003,0,0,0,0,160.93,0.14,1.4000000000000001,87.71000000000001,1017,71,1.6 +2008,12,30,0,30,4.5,1.51,0.161,0.65,0,0,0,0,2.6,0,0,0,0,155.31,0.14,1.4000000000000001,87.34,1017,70,1.5 +2008,12,30,1,30,4.3,1.5,0.156,0.65,0,0,0,1,2.4000000000000004,0,0,0,0,145.9,0.14,1.4000000000000001,87.18,1017,69,1.5 +2008,12,30,2,30,4.1000000000000005,1.48,0.15,0.65,0,0,0,1,2.2,0,0,0,0,135.15,0.14,1.3,87.16,1017,70,1.5 +2008,12,30,3,30,4.1000000000000005,1.47,0.145,0.65,0,0,0,0,1.9000000000000001,0,0,0,0,124.02,0.14,1.3,85.86,1017,74,1.5 +2008,12,30,4,30,4.1000000000000005,1.45,0.14,0.65,0,0,0,0,1.8,0,0,0,0,112.94,0.14,1.3,84.79,1018,79,1.5 +2008,12,30,5,30,4.2,1.44,0.135,0.65,0,0,0,0,1.6,0,0,0,0,102.21000000000001,0.14,1.3,83.29,1018,85,1.5 +2008,12,30,6,30,4.9,1.44,0.13,0.65,0,0,0,0,1.5,0,0,0,0,92.09,0.14,1.3,78.72,1019,90,1.4000000000000001 +2008,12,30,7,30,6.9,1.44,0.126,0.65,44,353,88,0,2.5,44,353,0,88,82.81,0.14,1.3,73.69,1020,96,1.5 +2008,12,30,8,30,9.200000000000001,1.45,0.125,0.65,73,583,223,0,4,73,583,0,223,75.09,0.14,1.2000000000000002,69.8,1020,109,1.6 +2008,12,30,9,30,10.9,1.58,0.112,0.65,84,708,335,0,3.5,84,708,0,335,69.2,0.14,1.2000000000000002,60.33,1020,143,1.4000000000000001 +2008,12,30,10,30,12,1.57,0.112,0.65,91,755,401,0,3.7,91,755,0,401,65.74,0.14,1.2000000000000002,56.76,1020,188,1 +2008,12,30,11,30,12.4,1.55,0.113,0.65,92,761,413,0,3.9000000000000004,92,761,0,413,65.1,0.14,1.2000000000000002,56.04,1020,233,0.8 +2008,12,30,12,30,12.5,1.54,0.116,0.65,89,729,369,0,3.9000000000000004,89,729,0,369,67.37,0.14,1.2000000000000002,55.870000000000005,1019,271,1 +2008,12,30,13,30,12,1.52,0.11900000000000001,0.65,79,648,276,0,4,79,648,0,276,72.26,0.14,1.2000000000000002,58.050000000000004,1019,290,0.9 +2008,12,30,14,30,10.600000000000001,1.5,0.121,0.65,58,484,148,0,5.6000000000000005,58,484,0,148,79.26,0.14,1.2000000000000002,71.39,1020,299,0.7000000000000001 +2008,12,30,15,30,9.5,1.47,0.126,0.65,18,131,23,0,4.5,18,131,0,23,87.68,0.14,1.2000000000000002,70.91,1020,312,0.7000000000000001 +2008,12,30,16,30,9.3,1.47,0.127,0.65,0,0,0,0,3.5,0,0,0,0,97.7,0.14,1.2000000000000002,67.23,1020,176,0.5 +2008,12,30,17,30,8.700000000000001,1.47,0.126,0.65,0,0,0,3,3.3000000000000003,0,0,0,0,108.2,0.14,1.2000000000000002,68.83,1020,57,0.6000000000000001 +2008,12,30,18,30,7.7,1.47,0.127,0.65,0,0,0,0,3.1,0,0,0,0,119.16,0.14,1.2000000000000002,72.71000000000001,1021,90,1 +2008,12,30,19,30,6.6000000000000005,1.46,0.126,0.65,0,0,0,0,2.8000000000000003,0,0,0,0,130.31,0.14,1.2000000000000002,76.93,1021,97,1.3 +2008,12,30,20,30,5.7,1.46,0.123,0.65,0,0,0,0,2.5,0,0,0,0,141.29,0.14,1.1,79.77,1021,97,1.4000000000000001 +2008,12,30,21,30,5,1.46,0.12,0.65,0,0,0,0,2,0,0,0,0,151.45000000000002,0.14,1.1,81.22,1021,97,1.5 +2008,12,30,22,30,4.6000000000000005,1.44,0.116,0.65,0,0,0,1,1.6,0,0,0,0,159.15,0.14,1.1,81,1021,96,1.5 +2008,12,30,23,30,4.3,1.42,0.113,0.65,0,0,0,4,1.3,0,0,0,0,160.88,0.14,1.1,80.56,1021,96,1.6 +2008,12,31,0,30,4.2,1.3900000000000001,0.11,0.65,0,0,0,4,1,0,0,0,0,155.32,0.13,1,79.64,1021,97,1.6 +2008,12,31,1,30,4.3,1.37,0.108,0.65,0,0,0,4,0.8,0,0,0,0,145.93,0.13,1,77.75,1021,98,1.6 +2008,12,31,2,30,4.5,1.36,0.10400000000000001,0.65,0,0,0,4,0.5,0,0,0,0,135.2,0.13,0.9,75.52,1020,99,1.5 +2008,12,31,3,30,4.800000000000001,1.34,0.10400000000000001,0.65,0,0,0,0,0.4,0,0,0,0,124.07000000000001,0.13,0.9,73.21000000000001,1021,101,1.5 +2008,12,31,4,30,5,1.34,0.105,0.65,0,0,0,1,0.30000000000000004,0,0,0,0,112.99000000000001,0.13,0.9,71.42,1021,104,1.4000000000000001 +2008,12,31,5,30,5,1.35,0.10300000000000001,0.65,0,0,0,0,0.1,0,0,0,0,102.24000000000001,0.13,0.9,70.57000000000001,1021,104,1.4000000000000001 +2008,12,31,6,30,5.300000000000001,1.36,0.10200000000000001,0.65,0,0,0,0,0,0,0,0,0,92.12,0.13,0.9,68.87,1021,103,1.4000000000000001 +2008,12,31,7,30,6.9,1.3800000000000001,0.1,0.65,42,395,91,3,1.5,24,0,7,24,82.82000000000001,0.13,1,68.73,1021,102,1.6 +2008,12,31,8,30,9,1.4000000000000001,0.098,0.65,67,626,228,4,2.4000000000000004,8,0,0,8,75.08,0.13,1,63.300000000000004,1021,105,1.7000000000000002 +2008,12,31,9,30,10.4,1.24,0.114,0.65,86,706,337,0,1.6,86,706,0,337,69.17,0.13,1,54.61,1021,112,1.4000000000000001 +2008,12,31,10,30,11.4,1.28,0.113,0.65,92,752,402,3,1.9000000000000001,210,18,0,217,65.68,0.13,1.1,52.07,1020,120,1 +2008,12,31,11,30,11.8,1.32,0.113,0.65,93,761,415,0,2,93,761,0,415,65.02,0.13,1.1,51.160000000000004,1020,126,0.8 +2008,12,31,12,30,11.9,1.31,0.116,0.65,90,725,370,0,1.9000000000000001,90,725,0,370,67.27,0.13,1.2000000000000002,50.26,1019,126,0.7000000000000001 +2008,12,31,13,30,11.5,1.34,0.11900000000000001,0.65,80,646,278,0,1.7000000000000002,80,646,0,278,72.14,0.13,1.2000000000000002,50.97,1019,117,0.7000000000000001 +2008,12,31,14,30,10.3,1.35,0.124,0.65,60,475,149,0,3.3000000000000003,60,475,0,149,79.13,0.13,1.3,61.63,1019,104,0.8 +2008,12,31,15,30,8.6,1.34,0.157,0.65,19,101,23,0,2.8000000000000003,19,101,0,23,87.56,0.13,1.4000000000000001,66.97,1019,101,1.2000000000000002 +2008,12,31,16,30,7.4,1.32,0.161,0.65,0,0,0,0,2.5,0,0,0,0,97.57000000000001,0.13,1.4000000000000001,71.24,1018,105,1.4000000000000001 +2008,12,31,17,30,6.7,1.28,0.16,0.65,0,0,0,0,2.8000000000000003,0,0,0,0,108.07000000000001,0.13,1.5,76.03,1018,113,1.6 +2008,12,31,18,30,6.4,1.2,0.161,0.65,0,0,0,4,2.8000000000000003,0,0,0,0,119.03,0.13,1.6,77.97,1018,120,1.7000000000000002 +2008,12,31,19,30,6.2,1.1400000000000001,0.153,0.65,0,0,0,5,2.9000000000000004,0,0,0,0,130.18,0.13,1.7000000000000002,79.2,1018,127,1.9000000000000001 +2008,12,31,20,30,6.2,1.08,0.14100000000000001,0.65,0,0,0,4,3.2,0,0,0,0,141.15,0.13,1.7000000000000002,81.32000000000001,1017,131,2 +2008,12,31,21,30,6.6000000000000005,1.04,0.14200000000000002,0.65,0,0,0,4,3.9000000000000004,0,0,0,0,151.32,0.13,1.8,82.78,1017,132,2.1 +2008,12,31,22,30,7.1000000000000005,1.02,0.14,0.65,0,0,0,7,4.7,0,0,0,0,159.03,0.13,1.9000000000000001,84.51,1016,134,2.4000000000000004 +2008,12,31,23,30,7.6000000000000005,1,0.13,0.65,0,0,0,4,5.5,0,0,0,0,160.82,0.13,1.9000000000000001,86.44,1016,138,2.6 From 70145dca8247d738a42b9755a071493935d35bc3 Mon Sep 17 00:00:00 2001 From: John Jasa Date: Mon, 1 Dec 2025 11:49:44 -0700 Subject: [PATCH 64/79] Pin jupyter-book version in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 938309f5d..06352acc2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -102,7 +102,7 @@ develop = [ "pytest-subtests", "responses", "Plotly", - "jupyter-book", + "jupyter-book<2", "sphinxcontrib-napoleon" ] examples = ["jupyterlab"] From 8f61b244622e07ca38ffdb5da2739c29c7bb93b4 Mon Sep 17 00:00:00 2001 From: Jared Thomas Date: Tue, 2 Dec 2025 13:36:13 -0700 Subject: [PATCH 65/79] Fix typo in CONTRIBUTING.md note section (#383) --- docs/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 48f2c152b..8aab93b63 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -40,7 +40,7 @@ In addition to generating the documentation, be sure to check the results by ope path in your browser: `file:////H2Integrate/docs/_build/html/index.html`. ```{note} -If the browser appears to be out of date from what you expected to built, please try the following, roughly in order: +If the browser appears to be out of date from what you expected to be built, please try the following, roughly in order: 1. Reload the page a few times 2. Clear your browser's cache and open the page again. 3. Delete the `_build` folder and rebuild the docs From 2fa822bb2eec12931077657afc1948197404ec73 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Tue, 2 Dec 2025 17:09:45 -0600 Subject: [PATCH 66/79] Load Demand Component (#328) * added flexible load demand component * Update h2integrate/core/load_demand.py clean up ramping constraint flexibility Co-authored-by: John Jasa * change upper bound on some demand inputs * Minor changes to flexible demand * minor change from feedback * added flexibility constraints as inputs to load demand * updated recorder * cherry-pick smash; fix bad merging * updated load demand inputs and outputs to align with controllers * removed lines in pose_optimization that arent relevant to this PR * aligned demand input naming * updated ex 19 to define demand w load_demand component * minor change to validator in demand openloop controller * moved and renamed controllers * reverted changes to example 19 * added some docstrings to converter openloop controllers * added some more minor docstrings * inheritance reorg * rename files * move tests * converter test * homogenize naming * docstrings * docs * example * remove unused files * flexible example * added unit tests for flexible demand * minor updates to docs for flexible load * Fix desc for ramp up * added rated_commodity_demand as input to flexible demand controller * docs reorg * typo * minor updates to comments and docstrings [skip ci] * Modifications based on PR feedback --------- Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> Co-authored-by: John Jasa Co-authored-by: John Jasa --- CHANGELOG.md | 1 + docs/_toc.yml | 4 +- docs/control/control_overview.md | 40 +- docs/control/figures/flex_demand_fig.png | Bin 0 -> 47752 bytes docs/control/open-loop_controllers.md | 118 ++++ docs/control/pyomo_controllers.md | 16 + .../simple_generic_storage.md | 2 +- docs/technology_models/technology_overview.md | 14 +- .../tech_config_co2h.yaml | 4 +- .../hydrogen_dispatch.ipynb | 8 +- .../inputs/tech_config.yaml | 2 +- examples/16_natural_gas/tech_config.yaml | 2 +- examples/19_simple_dispatch/tech_config.yaml | 2 +- .../driver_config.yaml | 5 + .../flexible_demand_tech_config.yaml | 118 ++++ .../23_solar_wind_ng_demand/plant_config.yaml | 120 ++++ .../run_solar_wind_ng_demand.py | 102 +++ .../solar_wind_ng_demand.yaml | 7 + .../solar_wind_ng_flexible_demand.yaml | 7 + .../23_solar_wind_ng_demand/tech_config.yaml | 112 ++++ .../control_strategies/converters/__init__.py | 0 .../converters/demand_openloop_controller.py | 74 +++ .../flexible_demand_openloop_controller.py | 301 +++++++++ .../demand_openloop_controller.py | 120 ++++ .../passthrough_openloop_controller.py | 81 +++ .../control_strategies/storage/__init__.py | 0 .../demand_openloop_controller.py} | 266 +++----- .../control/test}/inputs/tech_config.yaml | 0 .../control/test/test_openloop_controllers.py | 597 ++++++++++++++++++ .../control/test}/test_pyomo_controllers.py | 0 h2integrate/core/h2integrate_model.py | 2 - h2integrate/core/supported_models.py | 20 +- .../storage/battery/test/test_battery_cost.py | 12 +- .../test_open_loop_controllers.py | 318 ---------- 34 files changed, 1937 insertions(+), 538 deletions(-) create mode 100644 docs/control/figures/flex_demand_fig.png create mode 100644 docs/control/open-loop_controllers.md create mode 100644 docs/control/pyomo_controllers.md create mode 100644 examples/23_solar_wind_ng_demand/driver_config.yaml create mode 100644 examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml create mode 100644 examples/23_solar_wind_ng_demand/plant_config.yaml create mode 100644 examples/23_solar_wind_ng_demand/run_solar_wind_ng_demand.py create mode 100644 examples/23_solar_wind_ng_demand/solar_wind_ng_demand.yaml create mode 100644 examples/23_solar_wind_ng_demand/solar_wind_ng_flexible_demand.yaml create mode 100644 examples/23_solar_wind_ng_demand/tech_config.yaml create mode 100644 h2integrate/control/control_strategies/converters/__init__.py create mode 100644 h2integrate/control/control_strategies/converters/demand_openloop_controller.py create mode 100644 h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py create mode 100644 h2integrate/control/control_strategies/demand_openloop_controller.py create mode 100644 h2integrate/control/control_strategies/passthrough_openloop_controller.py create mode 100644 h2integrate/control/control_strategies/storage/__init__.py rename h2integrate/control/control_strategies/{openloop_controllers.py => storage/demand_openloop_controller.py} (60%) rename {tests/h2integrate/test_controllers => h2integrate/control/test}/inputs/tech_config.yaml (100%) create mode 100644 h2integrate/control/test/test_openloop_controllers.py rename {tests/h2integrate/test_controllers => h2integrate/control/test}/test_pyomo_controllers.py (100%) delete mode 100644 tests/h2integrate/test_controllers/test_open_loop_controllers.py diff --git a/CHANGELOG.md b/CHANGELOG.md index e7a64c168..d0ae7ede0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ - Added standalone iron mine performance and cost model - Added solar resource models for Meteosat Prime Meridian and Himawari datasets available through NSRDB - Improved readability of the postprocessing printout by simplifying numerical representation, especially for years +- Add open-loop load demand controllers: `DemandOpenLoopConverterController` and `FlexibleDemandOpenLoopConverterController` ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index 2543be3bd..71cff2ed8 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -53,7 +53,9 @@ parts: - caption: Control chapters: - - file: control/control_overview.md + - file: control/control_overview + - file: control/open-loop_controllers + - file: control/pyomo_controllers - caption: Finance Models chapters: diff --git a/docs/control/control_overview.md b/docs/control/control_overview.md index 86a710cfa..9af1d1c83 100644 --- a/docs/control/control_overview.md +++ b/docs/control/control_overview.md @@ -1,37 +1,23 @@ # Control Overview -There are two different systematic approaches, or frameworks, in H2Integrate for control: [open-loop](open-loop-control) and [pyomo](pyomo-control). These two frameworks are useful in different situations and have different impacts on the system and control strategies that can be implemented. Both control frameworks are focused on dispatching storage technologies and as such can currently only be used on storage technologies. However, we plan to extend them to work more generally as system controllers, and even though the controllers must be placed on storage technologies for now, they behave somewhat like system controllers in that they may curtail/discard commodity amounts exceeding the needs of the storage technology and the specified demand. However, any unused commodity may be connected to another down-stream component to avoid actual curtailment. +There are two different systematic approaches, or frameworks, in H2Integrate for control: [open-loop](#open-loop-control) and [pyomo](#pyomo-control). These two frameworks are useful in different situations and have different impacts on the system and control strategies that can be implemented. Both control frameworks are focused on technology-level dispatching. The open-loop framework has logic that is applicable to both storage technologies and converter technologies and the pyomo framework is currently applicable to storage technologies. However, we plan to extend them to work more generally as system controllers. Although the controllers are not operating at the system-level for now, they behave somewhat like system controllers in that they may curtail/discard commodity amounts exceeding the needs of the storage technology and the specified demand. However, any unused commodity may be connected to another down-stream component to avoid actual curtailment. -(open-loop-control)= +(open-loop-control-framework)= ## Open-loop control framework -The first approach, open-loop control, assumes no feedback of any kind to the controller. The open-loop framework does not require a detailed performance model and can essentially act as the performance model in the absence of a dedicated performance model for a given storage technology. The open-loop framework establishes a control component that runs the control and passes out information about storage dispatch, state of charge (SOC), etc. +The first approach, [open-loop control](#open-loop-control), assumes no feedback of any kind to the controller. The open-loop framework does not require a detailed technology performance model and can essentially act as the performance model. The open-loop framework establishes a control component that runs the control and passes out information about `_unmet_demand`, `unused_`, `_out`, and `total__unmet_demand`. -An example of an N2 diagram for a system using the open-loop control framework for hydrogen storage and dispatch is shown below ([click here for an interactive version](./figures/open-loop-n2.html)). Note that the hydrogen out going into the finance model is coming from the control component. +Supported controllers: +- [`pass_through_controller`](#pass-through-controller) +- [`demand_open_loop_storage_controller`](#demand-open-loop-storage-controller) +- [`demand_open_loop_converter_controller`](#demand-open-loop-converter-controller) +- [`flexible_demand_open_loop_converter_controller`](#flexible-demand-open-loop-converter-controller) -![](./figures/open-loop-n2.png) -The open-loop framework currently supports only two control strategy, `pass_through_controller`, and `demand_open_loop_controller`. The `pass_through_controller` simply directly passes the input commodity flow to the output without any modifications. It is useful for testing, as a placeholder for more complex controllers, and for maintaining consistency between controlled and uncontrolled frameworks as this 'controller' does not alter the system output in any way. The `demand_open_loop_controller` uses simple logic to dispatch the storage technology when demand is higher than commodity generation and charges the storage technology when the commodity generation exceeds demand, both cases depending on the storage technology's state of charge. For the `demand_open_loop_controller`, the storage state of charge is an estimate in the control logic and is not informed in any way by the storage technology performance model. - -For examples of how to use the open-loop control framework, see the following: -- For the `pass_through_controller` - - `examples/01_onshore_steel_mn` - - `examples/02_texas_ammonia` - - `examples/12_ammonia_synloop` -- For the `demand_open_loop_controller` - - `examples/14_wind_hydrogen_dispatch/` - - `examples/19_simple_dispatch/` - -(pyomo-control)= +(pyomo-control-framework)= ## Pyomo control framework -[Pyomo](https://www.pyomo.org/about) is an open-source optimization software package. It is used in H2Integrate to facilitate modeling and solving control problems, specifically to determine optimal dispatch strategies for dispatchable technologies. - -The second systematic control approach, pyomo control, allows for the possibility of feedback control at specified intervals, but can also be used for open-loop control if desired. In the pyomo control framework in H2Integrate, each technology can have control rules associated with them that are in turn passed to the pyomo control component, which is owned by the storage technology. The pyomo control component combines the technology rules into a single pyomo model, which is then passed to the storage technology performance model inside a callable dispatch function. The dispatch function also accepts a simulation method from the performance model and iterates between the pyomo model for dispatch commands and the performance simulation function to simulated performance with the specified commands. The dispatch function runs in specified time windows for dispatch and performance until the whole simulation time has been run. - -An example of an N2 diagram for a system using the pyomo control framework for hydrogen storage and dispatch is shown below ([click here for an interactive version](./figures/pyomo-n2.html)). Note the control rules being passed to the dispatch component and the dispatch function, containing the full pyomo model, being passed to the performance model for the battery/storage technology. Another important thing to recognize, in contrast to the open-loop control framework, is that the storage technology outputs (commodity out, SOC, unused commodity, etc) are passed out of the performance model when using the Pyomo control framework rather than from the control component. - -![](./figures/pyomo-n2.png) +The second systematic control approach, [pyomo control](#pyomo-control), allows for the possibility of feedback control at specified intervals, but can also be used for open-loop control if desired. [Pyomo](https://www.pyomo.org/about) is an open-source optimization software package. It is used in H2Integrate to facilitate modeling and solving control problems, specifically to determine optimal dispatch strategies for dispatchable technologies. -The pyomo control framework currently supports only a simple heuristic method, `heuristic_load_following_controller`, but we plan to extend the framework to be able to run a full dispatch optimization using a pyomo solver. When using the pyomo framework, a `dispatch_rule_set` for each technology connected to the storage technology must also be specified. These will typically be `pyomo_dispatch_generic_converter` for generating technologies, and `pyomo_dispatch_generic_storage` for storage technologies. More complex rule sets may be developed as needed. +In the pyomo control framework in H2Integrate, each technology can have control rules associated with them that are in turn passed to the pyomo control component, which is owned by the storage technology. The pyomo control component combines the technology rules into a single pyomo model, which is then passed to the storage technology performance model inside a callable dispatch function. The dispatch function also accepts a simulation method from the performance model and iterates between the pyomo model for dispatch commands and the performance simulation function to simulated performance with the specified commands. The dispatch function runs in specified time windows for dispatch and performance until the whole simulation time has been run. -For an example of how to use the pyomo control framework with the `heuristic_load_following_controller`, see -- `examples/18_pyomo_heuristic_wind_battery_dispatch` +Supported controllers: +- [`heuristic_load_following_controller`](#heuristic-load-following-controller) diff --git a/docs/control/figures/flex_demand_fig.png b/docs/control/figures/flex_demand_fig.png new file mode 100644 index 0000000000000000000000000000000000000000..14660cb9f4024e129373238177feabbd81e4565b GIT binary patch literal 47752 zcmce;WmHz}*Y=AdAX19bE#2KEN=k!tNq2W6C`gym4FUqv-5t{1-Q8XLT=)Op&wj>! z_Lp~$@xG41khr+kxz3pLIDT_30_9}HP+s7^fPsNQkq{SFfPr}$3)9;;+Ni0~X zP`6x6jz8=&n~X7>rqTGd*;v@nJTvVYrp#(QV4s&|n&AJA_~r9wPrtmg!Cwp|6?!z5yyf_um{T%7U&Mb*&9?!=>%9N#>-6FKG&m>D_g97?TOD!ba&T48n z5)u;S<>g=3?v`#f8ZKtcVG6Vx5}v@qJ6xB=YP(TO#?T@DG~sVuQOb36eScHx@>BdV zLCa{OKrPAhVp>Z;fSNjRf3_+>E`v0#--t{iqr9ArZudL}fzZXL?y!+}MDGlzuzDrP z=YSh$z9EcM+SZmiicCa3gu(v)eDbvYwXCpuNO5|2IgD2N`263**@dj>Y5Wn#k=2o! z%^&XK925Z#$*aemc-CJ%`x|}8BrK*&$v^X<;d8yrAIB{{zc^eR^o2vZx@>wxX?ERA z784N>i4}aDYMYB{iY>QSvOho&gQLNtEz)rG8=DV;AqFIoN%OVT$v))z0QouU6G>j zKtT}%K0-8jKavr>uc4d^E`AzTHE@~3Q<;OQ-VfJcHYN(Sdbu}~UK?!JhJTPZwQ~;~ zm1yrxM`Yvrw1|r;vR_$}Yl@qfmoX~R6iE#>m*>wo#1F9T+pFSiWd3X81f*xFk9U+< zS`PAcsr~V+0mGSMu*HVGm;?Nmnk+0V-2(#~m9tivB_+%@d*86MyHg*|C>a{g6wqJ4 zR;#ulabEP~MB_Vpw-m>FSRd`{`&2Z zPkI^cm%m}bKWHf`wk10+NO*Y(fU6{dS>wV-l@YvmfEf_DwTOy}a=Dl`rlzMCi6ZMW zVqIc2BJ#S@g-68~cXHyWnzKVXKR@4}@LCP!#1{18qo$_TblT6RQTDe&^>oo$li$|HwMZSnso=Yu zvrlr}h$kZ>D>k1je68K~(9~jH)F7&>OR~MaU4M7dyEk1Hz&gO?_v6Q#!lnl|3l5FX zp|9t4y0Tr73Hjo%bUY$i2l=Ac)(jY`m!AIZ?S(xg^1K%~Zhx(5-_L$`GucEzPapaP z7JJmAlR;+r#~#H>=y3 z$;ik^^-(L*bc4Hdz@gpF*l#il3cC&rm7%e*c1G`ON$_)QX1!;-6MvBK1?@MaI>U)% z!HvTrpso#z5uwc8J}jOKU-srH<;OAUJ_Uz=&ZZ5eyi$~*f)aD`#GayVmh~m zGu0~0l}iJ4wcd_V2Gq#bsoSriyj%HU%FM>o>iv`r?@VmfHfL>&!bZhIXwY z;-B_VrZRb4*(fL~UN1i0>(nm{iRx#B#<5^#ew(#!N@h2oD0lx1{UXuhRToTmY2WFf zpsb}OJ+ISVT4`xi0HIs%Ja;w-lB2SMq2p%jQIZVX#ho2kI(-N8b*2^;YZDsQ>)DA` zW;rg-dsAP?BtEIAfJA{$=(d%P%87SHNHMAHPVegKiqB=^1HxdL<9U~?ygVO%8XC~Pzl~gWud0W*Vu2CT1>P2{rfi;oJp_-o3@4}v-^9q zRgA^dTOrU$R)QHv=H~iLbCNsnFBcaN?!hWmvWCGC#B*5Uj^@aAnN_gZt#wChxBdC^ z=SNJ8-PRC^z|9uv!&R5yNtfV5WVql%+{uX@6p$0G8*#WE3@#^2`jWV#(FCr1Zf@K_ zRB}BV7USi28qN@b&N>?h$I02K?CImf;v-Vh?RHM8(P*~x-ds)e%8H)A{n_YiFSJ3v zQ{>&rBIB+w0ucDWxt?xRxIdmx>TH6rvE0kpl$DJHy7LwQScK%(5rVnEmo!T0CD0DBo4!iz3Kgly*)2e zE31te^P+W-J=l%P;z2yk0XJ~^wMnP?cx-%ms-|on$OzGlT1|ol`@K1wtAgF7bksv? z%R~ihMa3oKl-gRWp0VVn!IJXI%2M-5hKv2#t^{^-m-BHIwGurM@rf4~*IuWIi=R0X zL0B`KE;ZawVP2A)R;zQOH=ig-udPjpBo(vU{Zm!Ry8-s9aeo3kSfucdU@ZF}N6`cCph}0i;B{+B=y4-|uTPqj;zpz6eeYP+n6D~^9n4S6$r&rjP(x-zGCn?j+|RlAETkjw zHKpA_&88j`c6WdOI+!KT0K6+`62X#*MUkznuJRTfkETBS7#sV93=azynK&=6)N;16 z`8F^xkPk#V>`>7Go?W_w>eVoCR+_;vo2s%V@_xKs1S*Xf#D%82bw&b07_rPe8pisg zr-+D%A%y%1I*&J#;CPT8d6}8fc;D~pFyn@TV9cc7i4090lWyy?m6er$G6N%{@oH!2 zkJ#8UxAUFmn@q9rgP8X>2X%*24ep#pO%FUEU~iqfLHSaOLNQiA5WEMW>)I+ruWogPMdyPwq01Rwy-32Y3$+R@wu>n;q2d z7NTxSN=P6kN!oaTYYB*k;(n9K(Vwlf)T;G=yr^o@Wy6JbU3Yi)Qi6G5dT#D_Fh_;; zCm%sTz~{Pv&cz)#s|MW>B<&p?wp|3y4sM|^Qt>R`po5bv(*;GwIV(J_PI+T`wazqOZN+wx}+ ze)k)DGn)eX`lPI?m*E|F2%xM9g5PuOSQSlMI8w1N;V3c+>4bL6s`&{aXGf=|zSMsd z09bj#GdKQ8O?&Bp=TceBgYlBvp_~=&8 z;Ju7eSgSNx95)Z`>3}8xJLNSNR#zOeJ{L$BvM!bvMt?r1$jZOj=!Kh(*hTQ#~B7f99Dz& zV7S*=rqkse&|c#5@~=R0@gutP>1C)ZXsfuN(hrYJN|F*1dJ?PS<+@at#A=KRGP7;7 zt?gmMC5vABcLr}+&o5I_KZ2inokXV|jVa0=4}Cy8Zb2Zj0jh)5X6aqC%CqAD!MiUY zc%$Zz2j%4voZQ@X5uzz6L4hou*O{TBqN2Mrq(d(~J)Oh`Tui9W9u=4E`%hXGCoUCJ zQ)&=ILPA2C2ic@Q$nzA*ga!wbQc~v3*U-|^!ag$4(FqICl&i|i4>R!TvcywSQKe;M zJWZByo;!8?*%pANsH*Cs=~qjOPpbj$gCaUGDChW2 zGKae}M1rqo7av5y2_Otdi0uX9Lvwih(D}^SwxGbvHCbj8(Ywng%Bi=XOzX_gNpSR6 z_S3Y%Ui~9VBBDcmm^Hym{Jge>1LMxt_b>{D)xKAi5k&&Lb^mS~aNNLQfA-*6YF@@^ z4tMH-f`U>#e;`w|@9z(9!GX7#>g`qc!ZdSO9Aw=kLLR4vOhw^(;;;U6V1 zN&Q|pr<0zMmX?-myf)>&?9xRf;88ug8XOdKwUrq@S_zuVl8S3BVZ%yD_L+T3e7R)td| zUtPs7=Z4zSMgRCQ_FMaaUQJC68`&Q$0*EAFfIyags575kwmHiskOLmldEOBVsOh(k zj*h_gfJpaOz|k@w0qC$~ZAy-CdNRhGD)+j@t1B0)+HHylpn##|2u?2%+(MZu9T_EM zbX3%PS66N*In+5?1$X!kn~>4cB2~@yN6QLK>sFbRO}p&;&atVRx0ova0<;Z5m2~Ua zZ$)Yvnw3Z~!t{y?4CzrWkE#PIDp8QmszUu5=<`AHSWWaJ8mCyGMmDNDMCWy{Pu4X( z&&L~h#ENZmX_Sl5qhdcOxsz+i7B0UY{&`FLY0hcZvi@o%80@g2k&#wKS$^PrfqirZ zhY{>8zU#H<{e{QzBCihpaQ@DP2KOh6hZonIsh3-qwl$hy&#|zwGRI4SNm>57P19vJ zuB0Nbrq-ij-SBO4*RaJGj!vVpVAk$=h99+J_7R9}OAb8TE=R;gjW=dP1Aj)htFJc_ zUH3}5z{Nf(DOI@3{4MQkxLoKZdN>Mb-pDH{DbXrXbuL!_W0D{$BZFE>cRH@3Q{r;G z!r=X|k!WqSJ@SiAwHT&ovKL$vL!5q_vHfcac1}1cKLbI|O8Xv5z}ot!q^z!A&iOPq zl!DiY!I<kjnhs%?=$Bu)PifKEiT z*z%gg>&~TKoALVkdd^`~nhyxOyCnp{EgJ@qE`i$pT~J^EL_=0~HZ%n#-j5G5ld`}- zjATh56Y%^1QYtm|ZjEvdT!r$E@Bk?BLNEg-Cnr<2jaQ9Y@+Um~EuLT> zbM2RpLjE_JLV9P&0wN#mkn`u9vw;P{6lnWw4fus&aK=t|@{3M_b?$t@g;QKNaIApy zV(=CqCG{H=d`yCr))yMB;Y~&-*PHDe=EQyjV`KZ<{i@UG)H|}=P4D%eD&ikM>J6m{ zX*vvx>}S|7(aP}c7L-+QWdsASwgD38e#{qVHvO)!^&;XY_8X1FU4b2MMhd*xg$RPb1-4${#YxSB*5?%r6w~FgI3uF@F4^{ z_Gbh&nKulFyTeQ>U045agnr^{XZyhS?$d~w2=6v zLl6@t_}za9VDejVt^cq%mCO%wFLeuLA}U+6z=m-j3)A z(*qU)txHx`)=?(W{dd#RY&c6R51?{qtE>^00RG!zy5BT8XuP!obmvQ20TPqx2pQ1i znB}M6q6P(SLjbY~aO`io-?s(}4+6iizP^6dgL341BGV_ez9Taq+sunrEv-N^D*T3G#=kl+UJ62dv7x*Um-hTOUE zG2><^Gd0gzGVAM;fCmWzRD#K5h?tn;L77>XE)Nx9VZ+EE8j)K-Aj>=#HGm0|w`KMC zGZXe(dWg!NA)*rSv;&(Qu^xwbf+*tyFkH@PvWq;OcjER}qiuc2& zx45hE4=Bt3va?Di`r6_k`PxCRH3c_Du(0k%GZ;FVC_CC@GY z!+DW6Ge{N?r2$yusa;G=%v%X`pg0M^I~h0oJb|Ipu8-@9ri@NV`1^xeQMJ@SV#xy_ zpxcAG@P83d7m@dzRRa=ZeFTuM+((B{8sdzZ-ABFi>gnl`ieviHpU8O%3Dfa>l~Z8p z;&^EwH)Bj&aN(B|Jr$)e=Oqb{*!1VX`Bja;LY>(!^?zdS#?A`-Z zW4JYxPDW0C3?NeA&W@SaRT~jNd#!L-n(w5grR!G12}7@&VbN^B`M%up=vp>}q^S-8L#FwKI#0BhJnov_Z@Uw!IC~nK-PM4*5d3-lpnQI#x3UYGI`9+O0KLwptkE?%JHH~F%WakG3 zb^Tg$q)kq#%D>wZ6I=l}WD{JN6p(J`1=pN5X65{!kV%DZG${!mau3hWPW{jXy1^~^ zK0HXwq?rJb&ou&=<4?ajlT@89av|SyqN=Qkyn^lyWj#3P8Z{kCMk=Kci$m8hA z5|XQq+x9PTh$4RcXcxiKdc)N#f`5OWBLDw zPNDRvr+}3Kc#R8U?Wh5M5Whn@GQVT1lEucHV7x0MFxm&@ie|)%I zTU*0-ZUFcv0WgN->}(2cw{3E(y8X)L#RHQ)CtiR7n4yoKKYv0p41~o9P%%5K-qfnJ zz=32C?mgZa{r(_Cpedo>*H)eeDUMa9?Fjn@={569utbK3@)cgdMkgq#{$gBI%>yj7fizg9=@xZdC%*?1e?M(@R2}0vPljDt-$=U>X-Rb1? z^!M-Ix}cg?e?Fnnb>9%S0pPC@2yDO*M1XP&z?{rxg6`!VImQR2Y|Ir0$Teg zK&sk+;XPb>KgL#=Puc;wRA#gM9z^02^*=!N?|t2MS|>!qYE?xh@xB>N?e6Iz0a*>t zx;_$+=tjv@R%~Q&rb?|B1ppWV>hUcpDXjFU3rKJ-+rMJF2M4=M*dRb#=CrR4U@9c5 zfEoX9WbYpV*`p>W_YTA-S^o1kWyXV6RlyzrQb|Zkl9G^o;kMtf0hJ!RHWW_4rE0db z6S+Wn1(r7lIJo23raN+*Mv(35dlzG~P3wUZsXrT$48dl8DiMVZ#A59HIjd3M5)jF2 zcc+70pP8Uc5RsBH01AFjyC6g%mBjT5fFLdB`SJCpK;rs2pnTt8U_^rC`cp+)!pMjM zlEFO5VW2ekjeyr_$*JxMC`Qs^bK8+ckud`W1nmna5e!J|0S>a#$2w>L4n;kX1eBV$ zz*&+oGe-gv&H}VIgb~3Z3+OTUMRKIwa# z*50>x;1mM5`W0k%U<(tR7WapDAJ1|G$=TU4{92kp-uRxEXE9qzf8?dCjOh)sBNH~V zrpxj-;2gM?Ud6MUV_q(L3j(-F0cI3zriZT!R4su}@B!X<8H6ozu&nLv!YLjn5`e7v zWl#a~DsZ&~`*1zzZ3krg36w2BRi%9NG!&mZ3J3xOFlnHg(1zx9kN}5-3C$}k z8lTUwiNR9ympgzl_iePUp{qlg*f`k{6Wj-7ii>Z1dwcUObPgbw0g3!lI(tAG>;U6t zbv~GDW>(R1#Mn%-M|EpR0X#DvB#dT9cYxY~>@f9z*4NiJKT=XqIJw5&FZrRZIPlbfodrRV7!9js;GIDwL$7R_ z3z)RoZ&snAq#(cn>nkrOH^fk61G4enLc{IXT>{Gx6kN9FRkPBbo}Np_K&m3&d4qCT zz~2&JO5v@NfI~;!+@%4!durcFGz5EieGp$7dcntGk`Mmnb-%;!6WibG+2%&9tm0H~ zdvunLg?urOU2yzGGTlBTE*DJk(bn1jl};Gng0qhW7M#i^8A!-CW0a>?Y{aiPYeW3Bh27w~U_ zM?fFyR;bG>ReWIZG@zZMYyH4SZi(UfzrFuGd^DYHHIG>&KfPZo)ZnLxKN6@N#lEIrn)2%TwM0 z5+lkS8^F&51I~Mg3)7b|$;s01-#@**JQOTUqLh3p7;oWwAs+QLDdJ`2WMEXId(iCu zhCiOwQi}UQIw&*7#9$r(rs8y|Y;VsBo#m#h4o0YeQRg7*@C}UEhj8~xv~B5a4Pa48 zNl8w%X<+`l@Y4RjKqSLv0-^ii$ z4b%X7%$r}F+I9et^ZC`uo2L5)iQLoGyg`QHQ+XZ1SL4Mao#)A`ZxrjNiU}17#(o;Eq;cFzOsbd6Ea-X;V5p z;%qk+hCdwCo`&q9wlsFR`!Qj2o|7Atl&Hay9|BZ4Ca5z>H{{g1cakKqt}0_rImDkshX zX(KcpZ)|7?7i9QJ$q_cLnIJ-y?Oa{0K&I!IL8EY1QI|oD6p<(Q)>ZUIW{qI0_vd4 z4m@C)8r(0PW*ARFr-?qecR(6RZ07N`*c=D>FOPt1DgpBIjY!M7U5VHIO|)n|Pn%u| zutic}DM4Vp0~b0xF$Rp93#0^>t@HpJF8saux+<*!D`P0*gD?*i9xF&|UOAnMP|^n8 z4?417P{7`@g6bt?upHE61fh-fL2AAyukDLj*|&}H&^31-F!|rkcPF8y07wAPK>$DOk&(3!w$y}(E4 zeP;_=b6ie(D6fHZ!r^hCTIwC-`R|BM^9)jrkhR6YupJh`a+Fhs3Rt0(&R0H z&Roi8(<(JU1X&B>#{>p-OTI`hAeCQ%lr95g4QPZR0m*Pr&Xr+{_kXgzc&EuRkb8S# z=rx{>{{Sn64`7%H;>tg52mnR^(fQBhODi&QP2U%cZpVQm2=p+Zh5k^jvUVp=hX0gu z^?#CBdh6~%uM5_L`coNj8u6oM8jWK90wc2G~f*pg@Hds-RZj z>>+r4y)OBAeNUH^q|KuX#HJk@q=6# z@Oy{lW{;pXV;N$s04op6C0lkkQCsJIKj z8DzV63+uvw>@CqqP33pz0J{=61RFp$owsqW%Tn({K+z<0ZcY=FN`Tx^&gsg|$$^wK z=p}#@(ZurRUq~n;Duo@q#ESimgz`U)g)g=B-Xhcg+hq71 znOSM+?Z00Tua6SFMb+`a_@6U5A8PIe z`7xTs$Z4pdo7z5;_XTX$mx&d8Ury;oABzrWVduom8`DUzXfRbPMi&F|$Y#tV_?zpQ zN=0JoWI{jwfyE)!7@TF!{RSVU`LHGoY^bJNR+J7!{-MB2yCX%W7v(nkwtRl-A#`S% zv>atm-$6rCz1|s8iQ~r{pdV({rXlMmIh}4{JaU_h#FPdMQ=d&*f2PtI$5e(`Bet)G z-t`9s@0Htn9r)=>IOx`&zZNjOBh2hOHrS3Dmf#t%`m1NI@Oshmj&EcI@tLnzU-pdj zUK##UJvxDcDEw-2d={^PfFK#TI@Fb_tFPZLids&%HiyoyU<417!+SFPo5^|iHa8Df z7ZL8MkhkH@#bvi+0`^3LPu3(UX@#Xx;&k!ysCY2tcP40;wYHz_k9ON9U>ixl8`*yH zUBxkJBH}NPKF+UO4iVM&U)~K7QJ4KF$umRQBxEAqG=TT=swE}zqhWTwMJ|co-~8tu zV1Lp7Dk#)$aW3J)>@ne=!U^%<5$ob=dXLIO#Q`eLblJhZqX+Jbr%7(1Xp;@Eo@_rG z27BQahj6?tRhh5*(es$N|9m|XGe>7=#q5}Rm4(zlBD}F6w$-TsQu3wT` zQtiMTdO-1}3dvnkKdWOK%cJ!0b$w8587gi>bX1sopPUK}+#fg0F^0DFVt=*wUx-gk z5<1KG8#(9)CN`c+jtU;-X&db&4Yb#CMWK(r<7t$zDXj3haX~v(4*C@T01o!;D*?kj zbC^GA8F?SSlJDHQd_rS&t{)_8VmWw*7--+`x+hs#;xK-8gh=&L7_sBLV~^tyt~uZB zEuHk^XNhU_og|b-RFrMgWJ1pNpYL_^zZC5#uM}&vQl=4`y#!03CpnLK5qBA76e~|A z*RUWSJhrK3=Yn`%C^|qrOq%)*2Ug0#Aad`=b=KPJHzIeI&+db_XBSEP^U}W4lT>LS5=DgjXC+>ZI@gO;_O^G6k_Kg^Q|Vn2 ze!SDI(2a39saTWwz~^<=oizTVWux7#(&~XnO5w$`$efG{UqcL9u1lX+Fe1YI?*}Gs z{_L47bky9QiBES8{t`$C45L#>VmZASe4RM$^&QL;BE}yKx+2vcZUp2lDO;*2iq;_# zBlCM@C-y_I<^|ET`aZ1ta4;TM4cH~*TY`Nv{J~sGU1KkFW-*I~q)Ci#!b}ZnLqn{> zK8)D&?h#%@cZg(k}=!40#QN0b3qHoyC^cKJ<{pWJfRcRY(+sM-|_LW zrdh5Rm-O>03C@0ok8c-hfScwe0RI}xB)7xP+JhxGz#iyK;XI47o-`ND|X`G zY(>np4gpw%p)^4g^Mi4H4;FqcsSwPJ{r8C2kaYKpcQ(ftU_vDbxHQEE8fc&_~#9 z3IIMpjPadxlWKzY0hoWl-NwcVXoj=}?Qc%51mjj>`x%^~HhLR{cOk7aB}r~fgko-( zzv+$8*BeYw5%T5tKvzIY_ zyJ%p!vWbBp(cg^}z4lbd#db=|qs)N-iz6v)ATFdovVDmHqko>*LGil@i^f#35f;{D zvOgy^Mk0UXsQzn|U*b{lKBI}DD$*;OB3+$xhjDc)f_Eg3KWzf(x1Lc85K2V7Z-i_v^+TDKge8!FntD;=5eCPW{29Gm8jTW_DPbtZz|_>#?0cmoCgQmqsseY*{Qx)-oFa0I{2o3BE=)sR3|S(M z&qlcr_81pkk6$-atgu{dV*vaQdqvumZf0pn#AKKT3Y> zk#Yc1rp(377lM1H`;_q5QyQg>ZkL|PP-74-J-lmQt%nL;5M_dWtW>1~YMWW_oCfs3 zzok-JTnZF%*8k%XOp?Ni?Hyx{X7W($f0ocqHAzEFw zGV@A#^d@Wt%a?m8t{qA%m>0bROS1)`9!EL1E-MqM-^BI45VO!}lwh1o(n|M?R~K?d zM_`5e~a4aS=W66uOD$C?do_eO*|H!*RX?0=4lXvOB z@c1#qXp3s#`V#vEyumjalNQ9t6<%4==M+Nhn5QQmHAZ%~ zUwaI8j_kQfo^T@_hAM(VGVuAt>3EjRY+4)<5!+3d>gg6bNq=%^58mL}B^H7NlrzVscU3=Cet)J# zBJ#m1;G5W9X1i$|*j`tQ1TcczW@ad}ZTGg_3~>MwVp zFsc3rJd~iQsfm0Qq#hI;OifGsA&Lxo00Q)Jn>JppAVIYiS+A4Vp!2R8U|~PH+9lxv zozehbM#iOrQX=NkG|ymsS#{c=HIc(eE=|vqBp#v3scK6+UOeZhb%M656&${h3e0giwH%?z3d0$o+~$f9Ze}~1iI#7?jA0ijKL>-7gPE$ciXbw zD-XAan^;X(Z~!QDm{ptrBJdiE(oVLuXF`j7i;bVhQvtz{4lhk$xXN9yxQH8ElUvgX z4evptjX)!XxQqKO)nDvpww6FKr|32D^?b%jxb>u`LS)nTp5*@FqPE+OI&we8j_T_+!Gy{cW49ES8jy?>Hl*XbxUA_U}!cj|=fv5!V9gMU?rgW#H`4D6$ZRLM+uq)36}g zL3IVshHQ%J)WwGC?bs+@k~U?Tv*){7j*x=BB}zBR--H&fjRL<;1?JzJogzJ3*0Wq! z&r4Ej-+qD3vwa2knT2IZL{TYE>)`0c6oT4#=?^pt0m?Yv7st*J@$2HrJY&%y8NqZXw-IG?b#`EP!oemrH7J`awUG@!V zGO=Bfiq)CKlXh6&kM4~AF2Zun_MK|8vSmG;6?;F_Q6@OYz1nM_H=ZgXjM}j(}n|E~Z0erd-jnXNoz0 zRVi;fsf;*wdbAX}E*zDX-;~M9+Yd>dc2UpO?!PJ(e-X$6AMqk-Dk^a(A3j@J!|ep^ z`7`;>6UHhQub%TH`3J!eq8V3)47%+hx$f!puUhn~dwQ(1ikL-OA1W$hqzMzv&u9g46dzZU*mO^-YuG5m4W)Rav|{FNn|+dK2<=#BYCjyIv)$|1)jpE`Z4 zzM{moh$c~j&dEl^ZS|)@Ow;u{Fr{5S<74kPieFpH7^)#qO;L2o3-U#(OMeo+{5r04 z_-@3&!j?lc^tt6h4w=xLX(PkST03Czf`PjUFE;J)G6+wZsK#UoU{5(xZ89!lZwcGI zvoJ%F$`BDjQ*G$Z3Bilr#kPAYYgHWKkQRE%Z({Cr;q}z--AmL@N~^cz0Wi5eR&SlB z0_)(qqeA?B^IRgya&3a%#vZKLQt#;;x}%O6YlsgZ-m9w2+u$iplhY9hM03+(`FrpS zxd4Yq^iGMrl8zQGjUzuWiGfNVMoB?@WVe_mW2d+dnxSVuY-xL@m*YzaIEQ=E_x9=V zcoGkt-UJv*e@WxSpHhd#B(+L@?YSJtS-RA#_6%cumpp$)U!j+kcJzDmovV{`~H7#tse$!j#S&zu_LEjXXPCg9drYSm%S~vOJaN zx6GfmokK_K9v_ciWC!o$O3*CpEPCTsI>Py;l%C}8!;BeBu-Lr6lL&)vAiGU)a>s!8 zP#0+p;z6DCU$9?P8Tu3|E$N}ORxusAh9ZkHJM;Vaw}CkNimYi_isep&?{B2 z>uPBbZ=s$WVrs6tefnfkgX!QlFCj=;u}()5<)5&Nmq^_i<&^9&>h(9)BP z(6W&<_gjjl&gYxGbAYF%&=v?#A&SmZzIE@zX{e{{HEOd$?sZL2Fe;jjHO<&jE#6Ys zNa9Z^Bhd@U7UDlKM7A-y+fH&jdcWXhE+RaE^}M!q1g-;SEL(-uLT@r?%b^riT2Zco z^yc@*XUSaQJ^O+yGrXnKHPmh2Q{t($4lI_M9rV)OQ!1bh_I8opgX)5QlA)Jjl5+1+ zpw_Kav+CHJ@=vg4zNix4qF^_Mo=6#}#7t}@Z+L1YQ`NqS@7=^N zlb&k?2j5sWKDdWYb4W>O?P4xTM$5}%kbkDD#K)X;QORYr?r>EN2nu5F^0nZq0fP|V zw!-y4T;G+qJ}#0@{p#r{WCA7uS)aAeWa@xc%CxUUPijv+RWNx?k@&?6afNpzM3|i` z62BSCmS{#RzKz#z^q{~gMEd=G!W%ERq4ZFvNo62(R^oKb03?8-9xQBErPH;2>0ZA7 z#3zi3V)_&L-R7N_k>SxLclmlSJ0s@U9L#nE3@nVwxgQw~tDFf?1GeUdu%I!Nd0ktP zNoQ04{vxDb*LW&`?tel3y6L?YmjPm9glC8kC1-=bZjNvv=Pxp$i*@atXj;{UQW`zG z=g+#@c9o~m6EYic)dXx5zxLivua;^`3y~$u9InTgYNV6(e$TH_Nb`Y^9g#fO}eK~1~W3} zC=%>bVZtTTEB`d<>Q|yD+Lu)bT8BIp`X>u{ zM_ao{R`5Ec!znWSeq#w~CP4MJpTR&$%wCTawo}+^)qAFyI!W1!JH_$XWe#8o(k=2< z)ew1gP5QpsN5mKh&Uo0m*gJx)vMCN6q5fd8=yz7<3QE>!wFREva8)o^DIY@j{WzGJ zUi@Hg=Ds$znMgOEYJ68NfG&)-NLjel%Uon<@(#|GG`jX&ExEwl{O^2aJpGyFS3Jqg z)s$dSfbcFwb;N>iELcsiwJz8EUu3p)U(K9Klo=im<1;^HngG!WIl~k;buT$UMX~2B z?5+1&V4@9CFqwpS!kZ&Hy&v*ro+QEO!x>qfL6{;QF-H5d-E^ zi5^M=>P+k;Onx*v>fzwb?n!goo)!LAF`~pi9SE^QYo>2USrgJ%YZvL?#TZ0h{3rsAS}8BkubfV16$LAzAa2?J`8;R^S{gX8G(yVs^B*&4 ze_C|C^bg&Q50IQNSQ4*D^1igfq^IFYGsU&nzKZE}y7PTMOLpQf7R~}M&eN~*Ds?zc zNbR@D2>o|_>2Z#a+7nzwXB;El@2$t2Z}Cg#Vkj~zEsaoE%)%H?N{WPq1;RS49FGqs zF2z*>qRiPGW~1>wW(kuQ$7?cpX(1V zhveZZWL5ziATDYpru7ZZIx|IcmzZTGkj4<1c)hwfdy>SQ$EZ&o2f*a}xbfa9-J^tV zJ7m4Rt(4>sIp*g3zX&j{O-5zMf!IXYXl(QkZoK9G&~MCAfB;q{nr(d2oV9^Dx(y-! zEnR3@j_{4=m?kd|Q+}>+jx*m#MgunfA|&CTYcRf?;15 zqkhk1ueeS5+ZZysk^XD!gFk61m#0EFUroB`Unl+k+z+Bg8++rCm|{a8K*RnA7ycKA zmhRzP^gr1uzF&={Tn?YOVvdvku_Hrt6i26rT{S&=KDaVmuXu+VMS^Nwi}~{}_B%q0 zu2;q_x$VrBHyO}U2Yk}VS5vM*HZBc&(&nx`^z!)!qII=TqB(NjqcEu960P(>noswf z_tx*J!{zzTc>R-Cg37s)qiob?jVgJ7RnP~2TA}l0KIR^o^TTvV(IZJF{MkTSbR-Oh zH2;d0gN|bN7xNR7o-mn1HL@uW7uq@vr|4~hwz$a1m~4A89EWHR5}sXwp-;n%iZ2D; zh!{>>Om`=IaWLe<5$WLru?UC{;;m! z3B)v!L_6Bu4+Hxx=-!5OU;~r8r>-WQ$C~)Y`pNdU2HMhyqwp~^>rZ4`1{bqh8Qh#p zSidOu9Ns(6 z&lrCiO5%untM>^%nv1+5Y+l}Z(a2r@l@7>HOi`a2x!KO?})Gews#52fEuC(178E?64em+dOe1SFzpB*b4i;oLUz&E=n7!o3k$ z?`=9<@~(Ug^SI?=K@e66@L$!%Ht))`kKB?nTA<8$$v6R}9&m7XF|XaW#tp_5nQAYC zgiu{DXKB~wT$PaB@_!`r-dqa5?8q1Vx*eSgCN=F20x5rJ{h{7|*Oww#Yb(mBS9Oc;XOmq;Dj=Jnk4?bDFh+7e<>=Oj@1bYWbhp-vk+p2slZ`JP9D2`THMT~FoXBiOqWmT z5@r1e1+LsBlXnmIqesfzyw9L3(`TtOcZ_>7DOcLnQAmeA zlIBn^83j&>8%ExZZKUM*6V?TF*r2tJpOg5Go;tE$f9(BwII*7AERMjM^!j&@D$}5` zyczTr4M5GtPKOKq(AS``xEr)Hpzr;X@-Eycyha>iIJ z-rI;C6Hwc1PaU@qOHvILg?1R820zK|$<^J;NHOvMlvYi_d z?ZARr^gg-Ho5lc0(3;l<$5f6yP%2A+nromez8){2a4)SlTmMoW4XHM|?=;0dT2 z;LR=?bk2#rrT;jVPD7&+bE7^rX22QAPUbTIRK|eL3`g`+bjaQ~74^Q(bv1CzBPd4A zn|$JZA&uNaS|XfdU$|@hSMCh^G;a*EIszpw;x9{T9k|ICJzvM1`&!X~XEI_zYbi5$ zdK3EN3!vlWy6N#&Fk3d&YiDToCl~Je<=kR*WLkZgQEJqLs66Tcjm{bRMG^I+xVD{Rtw$^4 z$6B=7)`k9Yab;452G~`frON4@@@6;>eTmsK#qGu=S62Nm(zF+(?q}tl6%iN)n?lu* z21ARgGPcX;8=Q2(n~+4bO@%Z}WUuI56Ow9D^B=|KM|`_7{b$8=;*W84pc{DK~1kk`=`8(_Ih= zM@e*e_7gg76t11`>j*=m-Z-uZKcTv3b-olX(5`;%lhDTlABJSL8{=av&+8R8U6i^b zc`N%jD$mS9P5s3?OQ+Ync+Evabp5cCKzi{+QWMZf)K z2~8?^lpO{7YZ6G9bZO<~Kfv?lKcJ@%AFop%5ib-xF+u0E_2TRvQ8ALS*U?YrD;iYK z*P3Df7gJ{yP{sFteG~y{r5lm%?ofe4N;imfcjo~WBoE!qp}RwnknU~{-QAu4;rn|p z-U}}s=Ioi-dq3-0>$6+EX6A7mH-A1w;cuwxdJAs|%T!+((jDj^o=rlK(MpJibtd8^ zwPO?8x2`E^R#&Sw@ysiBh$}Q`mWZ(?<^b)L(~(f>x4tgo6b;p7oD+RqW&*w9$(;X zcnQP3Bw>Fwt7e#hr#u-*ag9B?IUK*4Yg68MA{7;+9SlBtgbwAd_5}uUp<*)Ua5>=T zg1FI$GJq@p>X%x4Gc0&PS=H}kUUvKm`gaNIgh__MGLZqp=;!X=<#oj+mOWJKL@Yl} zsugo8Z^Qx#+GUSa4C;w`Tj@_h-oP5QmUT_vxA;rAo|ank#uwci!p4gg;;JI91HOom3=pAmq?7kj zY|_*-rj?OhRuhUBcCUPah% z2cP`G5qUOaH?kU`)FqT~l;06LiKb~gErP-nQSK!-#3s0w=I&UKwGrvHDY`pnt=hpH zIlm}V=C1QtgMn|$Z^(+41>&V?z$8JqY{F#f^~A8}$V_DxC{H->l-f0%=hdtHfp=#` z#Hn{9h^r0{|1w4RYXN_T^T-d8LddHN%7Z^>u4{|I-h5sbz(k4sFg5yJ8r#5Je<0b9 zz-l5<*@IrJTJ-N~WK{UFKt8(fMu(0`&thPTlkfQ{9+pOge$XaUH^yE{>-JcR)^5e@ zpeyd*wSOD$)4P16tE-a~tVGuIS1C9G1L|Bt<@3+w?D@ZNLtA@uj}(_LnWoKg2gx4= zkj`8=-L01|m8Cqwp}K8l z0_?xX%J8}kaZVljdVrX69!JQ60n}zOD+c(21umJ!KP5YjEO5s(PCD+L9p-FYq%m}? zzvt}>{^%iHn_KO8y9LZRmzt>}l;TlbI10~X(pySGUs*jOLYf>e5TL9K{940VtY@pl zzMd5k^2t?2rQSSy%LfCCU-lwfbbBdxxoR9*hO93!{>~1jzlm6D%k~JyPVai^`B_>^ zayL5A8-Gq0g!-5PihoS+8V=QXfRYuC$z|srZ(1j%nTo)!`L&kD(E1KiDAKc|)^JJu ztX^r>I{W(P2K#8kAfR%l_R&xb)~qfonwL7Ovx;-x~>ov>=Zas01Q=Zg?AedN{R$~ z&8aG4U?%c)Dhhb;6e8O5STCfn5*0V)LTzgY6jy?cKPIKi$!vnvMZM zEk^~sI(gCk72^nBu2Dg}cpxEuC624b3a+ux6(n>JI* z19Y-^W?RepyRw9CYhs7Kyo!>2MtlBBv-clL7ru;#c)A`Q3i5-);?xiBT_6P+G9j^e zcnY>PA50o6O#!pkb_uXyPy%j;fLx-M3exq~$jU*f{xFDxhdMBSB*Tt}tAG}D)m`oE zTDvewFQ7hxYumQKyvyUyP)y3=e0ePU524BVkfv#fgV|NYyVD-K)Fwx!sgAkl{|k ziV)bJ%N85Vc0T1psFBfPbR2d{4{Ae26NW43MU0f9xK-_*Iq{mwelHe-vuF3JhjMWJ zSxNTn(z0DRxc)_O2nF9E(`%xxwNq)CJJd85E*T? zHZ|(o0<)jY13bK;=R!v2KA>`VP2XU7?pNzb4Pj<;#6KA9#1O~|Adk=&PRh$bTTm(X z&3kMeR8$T)UlZLIav-unYO4+V(WbY32Y+!70OO^)rsxeGY^n+v#|-N_+#iTcLp(ra zl=f>U-V#<`aWs6)fyh8Nv#e#D!sx)6i~V=hUXf~~TmBL#l9xkIQM6*w`e(D1QoT%^ zgmS$}DE%2B zf-Tn=(Y04;sBA*zZ&o>yZ9zngmjI_2GxhnY_k;nlwX(pul3G5MsdAYNc1sCdD&bQ} zya`Qd#WRD^kHOBb8hOiVVhP6<;x=4sal!?+a=ncw zA`ISl()tPl;uwlPQ7X z!N5f;_&ne?9c|z87hIqlZw>~$Sv-MBb@_L%;01E656=ydt;3WhJE0NFg zeBCD^LOwDCXT&;HnG){>vwg3-(wDtd!DscT2<+`NnbcXL}@?h3sYC7{h_m+ zGps11;$*%Z)q^GJg%{_urNuQfUwL>f95gtmejx##H91ieb7Mw3%;1_L>M)WXxaNUQ z5})*wHNCed6Q@+pN+>GUI2-D9yX^^3czH|5_Bf1`U!L2i!%UA2u6j!K(=+L|mb*zK>skSBmJN+b~*3G^%Yq zTsOkg4cQr0s?=bXK1y2n6eJQGbEV}^$$4O5KV}^^q)OO&o=HQ=k-lJVqW=W9HtCE} zv>Y;Ypj6Yyl-SomBR&iXly$w=2nWx5i5!)-||C&Ek7fr1AH!>U-Y4}i9q=_W` zI#iUf-squ%eJ6O`Yn!NP>1q9o;QJ>L)8OxVjR6|La+EoL`E1A-cy6_gxq<3E5-%y9 z%V#8O9AV^RuxG3)JXVF9-T@)bi-vLUy?V7pB8aGRlZG@F0@Uv^#C{vjr^kdZWl%xe zULDrN6kP|$*7$FI{s#gt7pbwIQXk3bMn}L zXTYxH2c3l`VIv=4cu-y&m`5CIJ9wl;;m}%7)=gIm?&~CD?e`H|geQ`;KwnuVw2#7R zr}z}{z4MBSh|{wX6U}1D4Om?#1zwiDME%r$W*u^xS}I~m2)-5~YH<(Vbil#~NLPi5 zQL%yat#Vb95dr@PM=&Zp0*fv;p40lMGgg(@s=b=^CgP#>LSI#m!YrF9X$Q?kM4*ow ze@bYB={2jx+}^{AB$F$EQ8!` zfZdNWB#UGF(IiK}u}@JVlCVug`)6tw3sL9})ud3yN5P6ub)v!(b#fg!)G=k~A1RuB zhkhP0ZyXSI=@e3iDGMR=cxJN^$Ja+zEA;-cQEJU+!YgHeq}v z8*NYYVuf_ERaqG!+?9HKt3UTaqyeczNt0H_U5@kgC}v0?X^JBOxL)+j=F~IX>F*If zl9zK*Wrvu#3&X)$O2aF-qI!ULBVTFMhE&3`+YpEe5>Ms zqhy23txo7JwQ;_Tg~F#byeMwJtR5nW@F$Q!x0PbrPTUwy$7~R0-+d6*@Pt2d@H}Oe{l` zj(GPBMR^>}M{?5<+K}uDinV^ecL7H~&6J9r3@aslV+;dfZQZFLE}CgW1}wQh3IVZe zZSlt{of+U3{`PV4cy%*Whwp@G8^9#IpWc;rWpgmJ^jXamw}VEa1@0^Dz0S5Xm~)@i zv5+5!I4S~H??7MqmKsvbpYij(D_Q63Q`;{~>&qWzVGAjpCvU{@K)3-j7#7?S?EU5vRz-(^PF^6qi%jA{u_t zh_+{WZ-)`r8je{~2WRO$ZZfg%%YM8l_T@ z`MAi2_o}9@sH4hnYXt?zSXFK_ZOu(;0x^cUM{*&Cm~%t0lA1Sb;^J#c3)A?xI9f4m z9xvd^V{Re6#fmAOE1{ynfKzLU9YT!PfPpTFO>jNaWogc5$fUg8X&7p&aB{bI>77vJ zUrOo9<{UjLr%P>7bbOrrJ>!dw-1EZV9n3RHoZETXsH@!uha~Zz2a=uXL&Z+PWXwrJ z1$U#y#i~XxdSKRHP!}zyMwF_$RGpQzs=K2Rg7mLH69;fR{pV zoZJ3+Tx?)oKQUl->?2!dL$|x97+sC^kr@k4K(A1>`Xii5(>RNdD9dwq z7|7aqeH%s)e6iP!U(>O5LhLvN!FS_Qve@r|O(Do1dXHlpn9xD&&CeAEOfj6<*)Bjo zv^N=T@t`mtuQQu~+S>8rYQ36Epg?zjGYj4=`jCVKH+?}jgG7I&Jn@7^w#F8n{C z)l1WP^Hw_9e;$6s@Q^i7$<+cQEPY4SxwvKNr~g+mM^dpK7_i_DQtW;v+D1K{Jam*e z%=-{Ki>pUo4Jc}dUYOKsQ?peiI6vkOOdSJ23c&mk|7E<9=jfP@N=qU>vz;)lyBW4? za?N|0s^&@xDqWWz4#!ZiWr7mh_E^*ar7pgtc4`Io2~!dHgIOhzCw*a@03bF1!I=aw zd{cOAP`Z?r!ip?$ScTDUVjZqVcZ%F&qW&($3Z75|Q)Q>CgP`-cV3fJT3&$Ou45&(m zO>lCBc8Njq&Ob&ksmlD*p&4SJK%70jW3CDj_Gbp7OMym zcX~(mZu$RnDLo~@k)q}B;m$+~aH+;y&*51(w1-Guu1q&2;vlDO4WOP`g3F=z{pEG= zifL*+|B%O`$krv}!4Wi|{k*6$3$&+-Ul+c|>-KWaY9Onk?mTLwR|P}15C#R?m!Z(V z{iEg0c|kgDcP}!&=8u~K3s8!KZRH0>WTxc31oVJta}$t({h5JI$dNPgqVTiKywC11 z3_fZPKB~AYCjF6~T%wH_79oO}P|~-Uyn=P}E!XcqlTTOP89fDucOkUu?M7R;*_w@ z=Dge~pXbg9&C(n#b3iD>rAO*(IE2pZ>D4ztw%&f;BLDP-6$LS=M2@rP5Ac z7id`Y4p0)uZ@Eb8M@xw6DZulzwcpFARh-fg+{qRN!c1wEWZotb5iqjoRMm z4IK*@EIY-dLhg|O_a_aY>QtDIeSAT&{s)K!-(9SeJp+N*iScnP_qc=vB%Pd~3P1r^ z(db@fb~t8eN$s+QOj?S`vX44Wz+F9Af4E$Hu%^@Uh~)^c13nCnMtdAY=BTP^(i*Ow z;lahFcTyj&Z;o`*Xf6xcYK9K74F0k%|6zv((9_>(*S`@8Rlc4ut~ub_Fos7u9E+h* z(KBsR%M$~2#lwEdlYcK))Z4_mSNqnwDI$`1X_Es&CdM-hwWDMVoY6${1R6qW@`8t4 z>EJ6ZxR=N9!tw!-=6`_Hq5z25AagW7MhlfS17akZiwn$BEN`g_j8jo1Mzd{`77{RVKu z{YvRwWE)o!j8=HZ;?vGt)Ki@HUm4$lC&D~Q0&FR@Xq{$v+Y1XiL0`n4veS?{DNd)9RQ+0`Ttlw(h;E8%UQXrr7rOHYY$has5OL2-N`Ky6roIrB<~& zQZ&s(tm?>0<=B4MX(06PzSbMP42ht0JlugTe0aqa^^OWUwBjy~20xXk$U<&j=f82% zOn@Y9DPmGG;|+9FJ6qhw_SNaMbTB`IT~P}?#?0v2$GQziAQvSzc;g~v`qwSJ_ziQ~ z-zIIYJ@|>MZ4#ri0jE;26g-J_M%536?x!@3mUL`jt`IGT?V*YV^4Bu&6sG~i$Ad+f zPp=ygfd)9rC|Al#!9ArFb~f-UR*TWm*lGO)-Y5;UVRoCo=#lKQpoDVG9Arq{BT z${|i!oF#YzJCbu+!n^QznBWvv^%v2WqG$PHI_Ks!tEXB!VkN4Lvl+q_4)^k>@_sB3S3!m!%0c;9;ZRmM1y|dQc6(cex&B8bBE`GJ4Zlu`i*l)0<%h^|B+uR*Eik+2m zx{&$RBc^70N`~~uEU-dy)-F5$JDz|T{}?Hg=5N%(>X=U0K45kH3qz_yulP!L#g_H%vUcaDoG5TZZaIf z@aGoq>$*$-xXABSGbs_Phq{bokN1s+nA;z2!qCBgkF$o1I&%7@&Xf$yr9(YNvTCQk zlq&xQdbU3BjyM}N1ef`@f=t|w(!F74YN)N7G2p|-|A90NBF3L zWd@?I!3b=b<=jdt31BMUrg_Q?m;U&2Krd;Ag{T_?sV?gNfrdiGV!qUQ6qeMh#1a#- z?rq&2R}wl;nkEr)aCizgRLUzu$v{&vmVo2xj5+n%uMhahjrnkB9ln!BGhq+Esn}W6 z?*5R$swGoAAd%;W*3m8DtEQgmB9D14^zhfs$znsaH6zyhmxh|uR6w+#DBZeZG(Qzt zS{^0fSgI0xDP4>;Q<)QS^b#c}sGN&1K;w#rLTHcbr?8v?1S*1xE&VB_EF&l zXJX^Y13tK`IB^=@iDJ*BRiC)u*k({XiF#Vz=_o855GAT#;nv0tvBZg=rf#2&qDNVv~ zjXirfOjVt)z{1H(0npVTpCS>Qq^7Q16IqKhu4pL4u-E@jQ158Qi~DRNaVb%Hx2*`+ z_7fd^*8_h}{kW>6T%ge3A?JQ%cIu3d1siZRV&@)@o@_6001QZ0H$_k{vViGvw1QIs zDp2-DB>$gwm!H3#TDP-oKAAXfnxKWfQn1zgu*#Kx+&V=+TN3_qZEe_HqD3_FD0|MT zca!6RCmw03t*g&yd)o4I*tZ_GH5JNb{7d7TFicpf%ns;qjK!) z@tl%^>y0af946lBL2YAW)8X%=77n7KnWYIDS@VwcJd3QFQ>jGpwZAI~sJ7_zQK0Q??*v z8?H59-hL7?kXA8j2K$TA)ueeX|6M)krB-eBj{4orFZ@6 z1&PFiwFdvJ$?`w1FhfXjr*rSQpN6ar$rlF^=RG~Bu_h8KTkSD}8&*B8kd4^is%kT8 zX*EQDHR0+&lpF~vjG-9d$jmGd*2sCn!@V@HRjO=uAlAcsOo+?(?l@5~YlET`d zy?vU#g2zgpzb4Am5$0JF!V*a9hqigm@fqW~`r%cVI&Ja#w&Slqi}h7>c-mEVAPeqx zhmSXAgy-m((9k3ZZ5BT*@V?m;MUxTQ?PnWDH4-C)-!azJ`6)X>e)F{Ww|Nk6dTZg> z_CHgdaUmN`yCoR8LsO6}EmYi$<6J}w@DlzCU$pAj_>FjdYs|for4jA0znOT!G%v)n zb&w>RClLJ$G8?t5xAM9mRywrMfq8o&@}lL12zvRwVvh>aVQdN?LTW&CmB^6K)bU5Z} z4BUWc#^5?79nHvia%>f9x00OJ+D`a0P9TBo%T^`nA>t zc93_hP6yWQY-@J%)P6|cS-7#HqcuO~9ZK{UF~URQhQHhQEmLn7GpcvuC1Vy7WurO0 z!M}|py~HUty@-^E(cDcimmcyGmAm1pO0I_jjy8qlN^P#cd$3*nz1Afjh$59BK_sUC z%}k-EVDFt{%zD*M1cx_xEQqa(qt=$|5p)hrabCYj)zrtV5c~JCTF0KonC>kZ;m|F@ z&{E!c6%ui@r0y+cZuJ=PbNVHRRTOl1EQWz@>1B6ONbt_)&U%vaZDxeOFcED$L&b!_S2j^dFqVaw=Kn zg#fLyvvZH504r9|*_12md5`Q1(2jwo#>{9;Zy&tMU!d zkZlovykg?^Ae!X#$ zC_pYKY{{f2YvQ&D>K8Q-lM_?vj%&FHRq6fTZdYljLOLL_lyXPlbX!Z4Z;w>nbhu|f ztTeS{ef64Yk4ukWJ}S#lo&!FUOU9t|=9r%4Z(!B2H$BCFnyg{9i);l1w7{?%XicJt z-B?J*e2JlbbypUaM?!qZ2UrD&=wWj0_OxM*@DJcsBw*d919U=;gO-9o$>X+If|h`D zAU*U-J|*x>&c|dy#?aFnpau{&lU}=VNxLFUkfBn0iB?Zo6xJKjpE4T#RqR&!<@1Bs zs7^GjDfBwQ8~9p1!Q7#Uo(3@J-`W7}p`eyx{ujFC=xUbY?_GZ?Z>;goCk^X}WJB4K5zQM3KrR}t$ zktqkjq-70kbidn1gU!F(>oPOz7xjypPTm;71;F^>2^py_$h^urEhT@f!wX<4+dgSb z{vb6S6^B|+j$AAk^n~Qzd}U+h5F_4_X$|Rc*{y~C6h5=_T&C1kmhrU< zl$0KcqI0Q4TIM0YlHCGX7KF?_eP@l81avDqnmfvln828|{;a3Z2ZDswWW>QXHq8fptB1oto58lq zONBamC`iSwM->OwuL+p@xo~Q)p@c5>AJN^=atvh{O24p)M3_z}_4CDdSb~!%9Q=aL zY0eJ2#iHCSus)YvaP9>RDKb z`CE5=20xMzRkg4+lR&@#YWva4{6GNnjv)_OJ|vK7b71V*pzC@c(4opJJZw6>=FbW{ zgx-h~gf1Enwd?*Ucac?sFdC&D5Eo9RAhSrulq6VOGN>XbQ51*t$L9jJS*F0LI}T(O z-4dcxWZ8fw1q%}ofV#mBOekoQ7;wYltkFycpYvD>ap3IYNb702JnWitw=xM8YF~lQ z*7|L}U`!YXDpFWE!uZBltVPxVLa)v*qFcH-Wpuz_=7|*0KI=+$p+*%W^Q0wkaA&%- za0*xucX4?lNL6$&HFaff&Ts)t&SLxc&OfbksMPmVaHdPBZ%%v`Vvi*a!B9;yQj9xlu-Rehg9fGy>mcT!rfnloEeUd*pp3;-zXVA%D*^cVA&jdL&|IUZhk$hY|kuD zO`<`J;dAjhacDDX;ihDLPy0qahSN&+%I}Y@%vW+qg?&XvD}3zlDUu13KE2LP{u*os zKeV;ORUj`>3=p~e#Wb;!D@<>WP$^rS(RGSgw+o$H`F~-Nk(cX0k0M#cmlBP-VhOy& zUWbDuUgJ!D$m!FM98(4#)?LMOT|Rk#wy{7xk^$U)`p59;3oXM4X9(XK9`gs2TPVh} zF5arC1Uu!tUSW5al0&yE=5TOv^K+|f@%tj*o@V)vfczdvhSvUu=C1gAOn#+|MqH91 zwzWGRDFnhLDtfEM$P<;@$-pY%Xe_<;FwOWU>jq;9Y$Xjm!uQPboVdHo%IfZK>FZ0s zxTPf5ZbAxcB(}cwu=&^MYI8%uh*Il?-PB*`hG_m|iW2Oda`rM_!|x zu}2S^kGb;}lM6nOsG$R-2IdKW%h)JkBBXxL^2iyD()@O%pKXa96(aA{_c76i$)vJq zar?ji5u42vR@KzSqxxztki-?kdab^!PNKw}883W|k#|)BkqUADmUo;QF3+(lCr`yM z2=qDLAf!?G<*lJdR~Fy^dW}9VJ=nlK!z1PyWaER{EzVB$VLs|5GD|#W;h85F+8nF` z5Jv)XP+W0+6mAP>sQ8;k#0{8SUjhAqkOT~;^(&-4*RT)t#ddV-pN9=2+edq`EL+M; zhoIlDvYj*+n_3NckhN*(wZCM%Exts$pgeqWqX{8{=A=V771z&3_rlWAjXX@y^$zZ%fh0tL2`J)QbC(|aBFrJjXOhQ=od6_*q=Qif zJ<`G2{1^}sBBD^8N%>#W_UvJ!if@5}?3uv&b+(imyv(aHVg%JPIUJWWN85FRlk7oB#shBkN%bf8(Mi62$8Ofdh` zTggITL`!p_I;(8O2g#7tw;$AI=#OGaX#_+?Q=;e?A}qcoX7LN-Q+Qo%>H}y~jlZXi zsF%_pkoR3UPspY(cU@dt4kUl*uP|9C-85x@{VdU|k(YsnlhOGeS=;1>JN6foL^OZ5 zEq2tb-SYAGpI~{MKG_iFG+f!%h#I~{QKvmcC5JA?pKK9J8L;9%!OIi<6%BFLk40R+ zl*ypb?q3sI6vHV}+Li|qoPtEHW=hD>l|jy`8|yzBdh+SNgM%(u`VUln&CCW$ZMT(Z-iw$bwWcPg$HyV3N|Ql)Z!KLbuYy%a(7wIC3UM@*xo$Oo+U+ij08t#E9Yi ziM61m==WU8c61>I?I-zf>6Ia|yLsHjc!WuqB9JhTv7)@S(Qm!UQD~3v%iaG~7kG{- zqe-n#n9D>Kgxc3$@7WOZ&w2(i9cxNNVEAIF6d=3f`KkRtDnMvqt6A8{Ye5=nz)xVw z1B{5@d4EuV2V-CvQbI%ZNkiuShRa7)0J4f3C^n=xj@)r$=pXh2A1odKZZoAc*2^iR z1qmnuviLagnY$MdGT3#jL*|I#J3xV$kFTFqoqtpu*`DBWTcs~u~A<)+rFwQ5u5m>fsX$9A*xqWnwOG19ucV;XrhCdsnVQ{#g-k(E@*Sm zcuVJMrKG%Xl&l9s>pV+#xZt(@@6ZFCrvL#U{Ds}ABF|49JK+E3f5G8J$(JOnGP!Cu zML|FSC6r7dm(-4Tt8qG^evM%Qs&d&Y4Q4HwUXDZ(sGv<`FOXOQ+W`_QKYgv*(1uoE zq$yw|JMBf3iT~1W_6Kf9Tgceg&U9q2Un;o2(ax2!Sb$5*a6?g}bK@0dfpxh5%!msnM@ zn~I>B=FkC{P=gDwsC}Y-;3xdG@=;np_294DLf}P#rLzVZ&-9J4OX2~6oFvgwzd%N1 zL5&CACL%ukH19-B3(H4G&;NXOj%9lrEy^&U_-hR*)Q`lhsUd&mkT! zcNYegaT7A)n)1hYNH}kBcXx&kYPzEEwsWKcRS2f}-lwr}ps$FTGCl2Sw5}Bum#qO5 zNd8p^mIMGnJAQ;~(PaC(*~%O9*M9-#yF3nzt2YVR@{oA)z@h}cZ;Q3!j(@x44tbX4 z%h_Smv>ld@?;p(tZJT4>Xka;gf*chhZwcsid=D%Hv!pP|9twr}j5JK{|slrO!g z!+^CatthWw)e+al&=J`X9U&H z(+j-1EmkwRb|A*!B#Hw9nVoOKlCeHIJ^t?0d;pqKb4?zcK#y%fIsyz(vw;I<(3^lG zA4DmX>t`FwaOO<@*;-SZ*e}~GI(AkQJmk%kSs_(yKBKpDGZo7Als}qkq;S~k|094x z?g3?@L$EOU(obaFNfIClS5Dsx$(8-NBFq0__P%Q-f%!{B^tAeEYdL)hhh=hiKo>P& z2jq_At+Kk-VEQ-H!pj96?sCp_9OeGVZE2Ye;;P7R zjE^L@e0ICHGo?_9E>9)b4fKq^)=7#70HKN(!Ye?4G68~5z)6N_7dHU@< zP?Zf2(1;)hB!sYyupL3{_u*Z7E20&`p>WckYiJzzhqTvCFMdpQpm58*9IMdwr9S1t zH}Rk*iJYl6dQJ!Ss`SGW8A@v$wY(p4>QX^!%1XG)UfMeEHM-iCMm`^70KUIW9-`BJ z+sOwSW8LMUw24{|Jij@C9)&FV?z{q30r|2FS8tuI^9`aBsw)EpTi?wC1C^6C5NfZ0v@ae%WA0em@dj^Ej_?=x}p_hl$?YoGB) z0K>h=7#(|5B5B337PV-88wS=U3}ixEl&JbHnL817NQJy788{UU^mb!X`B!jA9I<`% z?j3SK{460FT@$9)yUvG<^^XWFMR}RE9t{sp0mNR4r_03gtg|SeT};u%Xs!-b(e*Mw z+$U*B*d4DJv$xc%)?=`*=OzH_Vd%V2!`vm##mg_D7G_UV+Nvg~^Lk^YVFSc*db%<` z8iiG7MnrsFH5+Ay0+GH%;6z%0Y((Oo<~ncjLLLT4N7)k~x8M6`<$zT=Myq2b7%Uj9 z6-_nzYZ(}|t2+tD{DdkeFK~Vj39g%{FzLz6!mCwIzE-pzu=VIy=ts2Un%Sy`~O{&pG>e7JKd~sI+u|JXA^i&39 zaL2LE7~hgYjg+@3@70-3yd16Wy){c)v3>K>j**y5ZLVhAo7-$=CUqY8zr^3rT=eW1 zO0&KoIwZGn_Niip^yII8l7-hEV8|B-_7An3xQo@r-Au-8`}GJ^v1)M@R6~JN#7Dzq zyHX3X=Uu#Y?aFG6V8>Qa<0IN(zo!tOW5V4K8{&W1RAKK56hJ@pKJkAI58_vC2hvx# zjP5{mr=wCe!a=Y})ds*Lc3U%^7J>!e97;+^P;z0~x_o}!A4G+bl}VNl0s)U3_NtJ% zWSSw?fn4%auk`*X2LnXMeSiPOhAQ|V=qCFOHM$a91SyG`7Yaq0R|*JiZE#wIj^a0X z|FveV%F3p034Vy$iY&)RCrQ#JCwerFrCKPGP@|1;kN4d?XPC~NX0sN(mV`$!3`K_T zfzGVayOwqw29u36_mt|}T!93`ZT4~H0k3PAL~go5_oH9*!{J5*+ly&tl@m`a!6`0l zX6)c}d}p`dM1yq^1E8afs$^|%;rNGhN__nyW@7Mo22evWd|!K5H6ieqHCNKr)(($R z)uts3d@`GL{A1ND?iG?}d7!zukEN7iLt~`Bd^l>)Nh4LmZ!o}Z*R(d8 zKGI6WCMp{FKUrVu3 z*@xVU%FnqFWsK;&T$Cj3vyZiWWX`AgYIkw1`_OL%ZU%J$w$IRlTwyDe!O9ww5PDLIiwd=bueFm$vnB4_J_bU#AjwL zHI*CQSQW{v290`}z8UMHlBaHUp@Z>GifiNi(}?=CTJ`gQWdXvy6hbm1LMl4lXLB7q zF5=75_aiz>^0mxWU>QF^cWcR%){_L6`Mol_Q>cgYCD)`DkHX~6FO}*mRMwtrk+J~y zi?)#56K($HHol?+CXpV#>7SC@AIFl~&Cav3-;I!8ng?Ij(Z8?9Ef55?KVAy5W z!m*nN;v|t&!6lrIvuw`nAsEiVq^PCN$q)vYCWTm)@q(n(5NZ*wqRI73fLJG(Q|#9_ z-E&!N`wFPqg6{s2>E_ft7ks1+oM}Vy66uUF|3LjoDDLRj&S#DycgZ^vV!_t^rcE8b zKH}&Qv#S2pi?mM0@xD**KHf!a?fN%zpvu%n8HB0yvJu?H0d%Vzo(Sn6Pv#<<7?uLS znR)+h=P!@?N)mtKL{YhkzT<`?+ncB_GN<~iCzsj}524KO{dI|tDSGj5!<+_wuK4neako6&jEKHk7 z@8Ah5aP5N%q1>2xWz?Zvr-B3EP2-$<(A~Ia!3&qkf0)F>Ft!2ECscFHb_Po~zKY5< z2?jAACtB&EcOu7XD2D?4!d`5H)07s9<8@wo^^UZ`N2=osAT$DMQK82uz_q#8a&d=d zSxlJ%cw;Pb9a{<0keriW&5c$vENi^Y`{y8Z66~3T_4oV_?sIe7*j{&&hC!wWQ?PMn z#J=9*>u`5GF|!vhXCRoYa}VCMXjy9Op$gU)zkZ)~{uxfW3SS4x3fdZArTjDon&Kk* z)-v?9iKt<}a(NjUDAvM+$AXzoe4S!zCQfD?m!wWNbaZgdm0LWhMsHy z8q!hu27hH9SLTbElWeYkXN}q<_Q?%%y-1;_U?<#5ZjYK!PB|R*L7)r1>=BP4<={(P z@t{)>Cav($aF$^}nA@Anh04#FL;~UnEcTt6IZL3>p`krB9dRqpL=?H+EXo< zNV!u27Sti{lVd4@gp^ybt%~e8@0Tu2-p6DY&Uf>&+HKZ=#3I=#hyl3m!5`A^@j^QN z2uQZH6P%Dv2$1?|Gh?!(qd*nwcyBZYu86CzZxYK&mP7FnCA@ZW?l|NNQwQXt!Nf{F zL&sF7^S2m_aouf$hF{Y*-t5jFVIT5c2W!8J-~=gDGrB**S!wTS+V3z{HDwc~W9v@X zwuAWEN9_Ui#c1YBi`@g6TXe92(R~K3#wgjd>9l545Tj^{R((e({i2jrG&(Y6w30ux zW7v)H3JPGa^$EKw9-d(Dv?UOkYYfb}Sux}g`?A?x+9C*H_U!9{!R_%+;W_XYO{@{M zKJ|>o%_0gCp&D&_S8Dq`E{04*8^gk(>8MV#zB8Zq{8Z7PMMN1w)k)+>%_&0Ld{u!L zBTY+@8e;X(I=QvNd9`pQSt>bFQAc%AsTmycPmKmZ8yBEk-cR6z!~cx`wOybBV4jjL~H(!po ztRSE_CzO^~eqL1l4J4)j_dR8)Na#dSnUSXJ^Th_rJmv1^WT0Kgb95XCAH{M9!t!RLxQzmTzFN)EBML2U znMeLCXG#j+b9pSHT}5)23i^?j&7&0O_`{~dEk?NJ+0zk$R9dLCG)&%!=C2zW%Kkji z%1l?stm?62a*eK@&0|oj#Wp&HNk}}`$Jz`Gcu_0Z6e76glBp?IY}b9*zt0Upd`Khu z@ec0~99>nyF(PXg*ZGIWS7YpIQtwEmXmDpvv@!AzjlWyC(>4MD>cO7r>>)n?J`4d! zFEWs(Am$F#K2hCOqC$`?YtUmfI?*5r;6W=bu&t{ZG?=?lLzBa7y_R~nC}m;GbQ=d) z>i_NUZw0y>#@96z*NN+W5&PxoZKT9nAC|5n*k{MnyR$$PmfM_iQ)&IPT-w9N6TO30 zqU?;FXtWl*tsNvBn(M-NBl67HkBX`6EMq7&gVjkE{HdbKb8_2SK~qM{1vESDQsZe} z=%iobyfVs7Y4jPNyunreaadVEn-KGG8?eTucPZ8n^Q+dA)X(?pTfGm)4i&8n|KKX! zlK0!Cqs2JT2f@|rhCyk_rKR>jTAd1wU^l69XT-}XUdyZLw2J4i`NHb?H=d1IHkzwr z+gCm#hEh7)=0vaok&p63{crNIwOHppkmo6-?X`zBOB~Thm~KB<@7L7~`Cn1(pIWLf z|NC*%yX)^`!la#&#&vi>&C0tq%SLL3XzeQ&e+g{YgCHQeiCHC{1U?G_>~F(9$9=dY zw zLu;f`$zN5Jh5dR$k~$q>Ze%hehBgE0Ov4=;jgnE`cRzq`Zjg-xE`(}PDd_YA*Njek zRh}L%|HOqmcm9YbBs6tsygYrO82?aw+?Xh4kAP#E2*{UPA z?2UJ-OKD{3=@nbrdXpVVmY>H`2~>5()0iK-H81|)T$P_QuB%5o-Py&hj`dcN>2W)o zI|5hp1+Hcw6N9gtMUX+gLqbVYHg_%?FbOdj4uobTkB;O0y2{x(H7}Kle%}z2SMNEO zpm}u2WcFSW6%5@;7F)a)!YLQ=Kj6{ltc@0^sf1-5hXN-i~Rh54D8kv zx?AGE_z@;ADOi{Vq10rGFB1x_^u2)zPkpl#mMW_J5!fQRQ=%|^%C$XF~$7+;NV+OZ$*C(=; zsxf_N?n>Oqh+#sMNGd!-EU(KIM(rCN@x0*iwLFm2uIAUThzBLCt6xm6Cavw(>xko} zxKydFRXknx^QZE1uO_Hg4M*NA9$D^zHW=ab^=-~bWXH>UnpuXQ1RsqajGDHP!ngQ>QLR?rQ0yLIBNm99(UWyx->+PdvBYbM(T0cuGn#l;ZY$k&rQ3xk8nC7 za_1`7XM7E@&ui{m5RgXC{BJa~bHb|nu?@R|Hzux97OtU(+0kwhJEpg_;q2RhXHQRH zDbpJQWA_%e37w#t#mbubEb}LALgj#R!s2IzrrsfP(hF{}yN9LA_~o(jOeOofKR&B= zNY4=nJ^r;dpOCoHiTxqN>`?Hg0(KJR3)@<_zNv}{%G~ual*7QaTLZ5MTD^B&W%Ut9 z@61P8mNsd*duq3H9IrB8@;yrX{zLW==GX<5V3*0aVQQ-U%6!T%zOGbKu$}I#RGhK3 zqvvC3Vw4m1y&7MlD$fQS);?{`GffyN$uOKmsYU$Wba*egioT{I(}>YE>Y=BB@69w9 zd1_v0)IAGnXoNHv(7`-W+K1LfvmLfULoc^ALfe^T3*Hv64+}*t$ZHGVkLj8!q0KV^ z4M#;Cr-}}3+u|e;;fU95H;^c4M$gX=!tWL4o<#n^GujiaajnJ0X<1RS)lt5J8f5(K zHMa^G37T=51)tmbm|{xfo`ra*V-Mv{@gjIzi;?QZtD9y+G^$2W~{S>{BOX28!r-{fv!8RK8b#1*qwtdc_q!oEh-$w z+7UdOfYo&u%McVdy+_7-`|JMq2Yg7L8^~A(V8OV%X^z-OTS8>^tuI2dz}uG=C+CZN zDlU5xf8q>`9ujr)=jO~UT-I9*pKV__K#w9?j?Ifd|LgLr@ko}b%X++%d+%dR*iTpo znmcYO;Z@e;y!F2`dq(tlX1-53&bA7BJQ}sk;YzmpEjCaqMiFIQ-d-3S`RlL3LSYIO z7`@51^{V{%%J8^*ultJ(Oa9v9mV0{2D9vqF;*gKMgSsxPOgppj5r1aBwastZ!|$Gt zX|Zd;aG&PFR8f7t)Zvb!&RfseBPJ4$c%Z*NMn{6bH(EKL4uopqSXvN+tN(G)`1J1$ zOv-O?tOucpMIi9EF9dw9QvE|-TO8%m>0N2{?N*@BoGtsM z+&M~4y0J>1&E6l0y$IjVE}wlc{0&b`99($3CiD{ei`+4`+~99#oWho2H(UHI?XqU!T)ej^EtLx>QY|^ZZBzb`}r9lI==NjM4bD65>tB=H~L=yAE4~dX9OdU->XLA8*|$C#n{EQ&cmjUq1Y&_&?4MV z6SC!1QW)Q$WYqzD)bB@sy!vn%D7R0!vNh%^Zjv4H*mTF_v&}GqtZ;+P}{`JXq{!QF5GsGy#^9`QR_D zh1SqyKBZnN)jT?epRobJPciBFA>21JEsxL1PKKg?qea>GRL`C;Fy^N*oD7RR@*dW@ zrV|x^*E1xa(#JA#l4Qry!I(HHD!`i_lY^stY18FF-JEL@KHxk`x~KCuXwUpc_)6uT zD$Zt;EyX9fCoSsh0@qYDps8(ca#qp5zU~!|?R&$WA6koWhvG z{j$Hqf4YxUTV16UZiJVrgRYe9e)iqU+8d+T{UGHN(ezPZC zwAki5@=aFgEOn-iczu>0rw=6Z%KWW}G0V&;Jy=N@rHAei=o-&Qhoxx}>>UHIF zpwK~z61q2GLWgzb>Hav%jOgW8lD^JWX-ic_m%N6gdH)Kf4HzclRUaZb96C5hs32My zGn>uCy@zhH6f9k*tKx9wS~1{MO@aDxqgWHdYrTlvXZjlnf3bBG{$ zjoE~RF~V`Vr)Uj^z;xx^&O}vXLJE?@IS;Y)C&XWHeWb5@-;g@KDj;e8Gd!3uFFIre zYB?guUC89H$WeC1p&({ta>N*yW!y8l*0&bV(08i)aIYyZGQFg zd8ZQhzNIe#W}`v(-61)ztx-=TApn0$01(v{qGzN4)*Gdr9sW|n{++cUv6=9*MYst_ zm?6G8U0XuOX)gR0Ke*7vp`%05>S8KTnTnzF^Nf~j=nV%Et1*~EGrNcD!oj5E8JAE^ z1j|6IY))eQF(>H@7)g`GiRrMp>plS=<8mg$jVuYNQh8#U`TK+17wTU$qvw2m0%IMS zReRr-FW0ziDNX${9Buc#ooRMs=`{Kdpt@f*wEVW)fNUu&l9RmasJH~_@oPA$4xt_xvY z*IMC}(XRF*0Q6q#<9F}a9I`At-IZ7C%Va+@Q>t7shm8u*-j-!tu3#B3jOu>sifj#J z`-cnO(ScgVjzK-^4_PrcEHt;&S2vYohL?kJM66DB6tGOkC>9iLpLR{Di3oi~YuWs*a8yaLN=?crN*!~*PdHp5rW+OIRppNH>qC5W~6@u7|;3P7U z=}aPh`)aL}>k{|)8oAvl{AElvWSgQ-YyT7!>+0)ZwZX7I$DLAt1DUa-+qJ35w-J;h zC4nDfxfUwOu^4t24i|okIQtOJ8ikR9R}i>X{IU3@5zV@IFLo6KL70D2&Y_rid)N~9 zgqH_kvgh6-K>piLN=mU5034nC#8;lJJwQJLo}ih-w1yNOoGVjJKBtb%_|A}4DMS7> zF!pAEeChO7J)SWWnM_~#Ht&IHZZy}ezr9-_IJP?0TTSLwOqQ8x@Me6qDuc$0TpOaU z?4Fgq;@!=A&uvd3i73ZHpV> zt(7q9qRL8EXMp$}vz;A7S#0H;VODU;9G1&Ajfmqh7=-7tCk>z$9hH;AGv*5GPWx0 ztb>g1cr(RdAy|LVOgjoEN-`5g!gicHCS>RAgp@ETb&jpkxk!SRp3FZ1IVc>ZO?vTmjiP4F;N=&ZQBXk3Z~wc@9c7YClQ+Pilswg^SNg&SZ*LDGfb8k`MzTn zza1Vt=3E+$sdMabaJJ z>hH`@X;O^*(F6e&4$Ik z?5+;IfYwUZT6z}=m}Y#=HUjreT($wvF})KIwn*G;sr;|!M3K4);rM1CJ(QY+ntsfJ zKO}Q8E%~erzQ__;+XJzO`(k1xuPCKa)v$&gRpeB3n$S{tGgiMF*1W<*0^YjX(5BGY z&HTQyr9OQ0$p~p8QR;8kg>nCWGKuSFZw}tX*-y-WW|BTqzfN5JLNJm~s0lxd31C`# z!@dB-C1J{5!!|3CsQvd2n7F}OHB1g1NE)zPGl)vxqSw%QBT}^V@V7rhZ+_*pOge`v zJ<>b-K*J4rPA8418M;bcLa9PUm#VXV?i7t>$=r14=t*vBB+iapPQAXG*4G~( z%y^eiXQHa5!NVHnh+^G;GE8e+SYS_zz6i)hv-yc0Y(BnP$0vdbymG@q_Z9o(4KYur z$jhL>*H^^ctygGSjX^ zZwXg;2KY7VExPYR6mXhra&bPt>CE$>52yN;T8{7yytxFM21m*oyyw{si?oO2u^Xcr zZ_lN`T>q7)?dB+UIj8lZPp78MLL+c`oS19FjEqbZXAgH(tNI(wPrN5qMU{PTZ=db} zj0RKJ=9r$&(S;V6wc0&YR*ODcZ{n<*g6rtGP3D_mA7 z<$y}Xa4}o@i{-vz9fZ0QmATv-4Y-AU%_{Cw8QSKxDDKeb@RQk0CTd^^N5yAV;vWiTXI9pC~_Jx30mvHjdk3nd5AnzBf znKm;@oEZJ-ZwjHIu+JhtUQ$SciqBx$auNFC|uZ#AC%lG(byq(3oQ0>2eG`Gei8s{WV-X##51t z7Cc@24s!_DY0_>aWU<$fpnx{}iq_TGR-5w{ISJiy_w<+%8u*0&w-J*ZhUr*y zL%3RJV*a+fo@gx$tF3(V;KRRfcA4c%Q-qp{)~sDKP}5C0iQ40bCcZE?-?wqIG?^hO zRXkBaXp)AFt%(8SAH^+1(d11NdmP7kD7iy8P#x^04~|rrHtP%V#dPzix@HpA=n7j;Sq&%o*0tey^T3hjdkADml$|<0ybuso~=b=wM z|Gkq%~M$+g%!FRy9o~wpfN_s><_(6bY8mu^IYUP3&wLVV9AxI`i>U+q)k6kWM zOA0!d(^4cc+)h`5*zi(8lO{G$LS5~uZGxf(Nwf%cSdBv{Id6H1=G%BCYpG}uOmEzr z;NRi2=YZ?YUE3}>h;>j{>phxC$VBUuT!BLfCx*Igt&m-sPR*NvE)Ch2z1dd)XpaL{ zst!(qHHgLxvL6upYSD&hSd{2+y21BD#?kZHKmk=H6_Qj?dfRh-aq0Q7)ASIVU%ULs zkol>(4Q=k2cEX4MeFm=!l9#%vmQ%EO^`wc0r?3AE^!2sH+ehw|9(50WS|fyb%$mlf_afVC2(Y!X(8 zgv{RD#_WU^&OT|FXgYjrilz%&D~q=PFh{e;=2r%a5F!=1A_$ zyi~|^d5h)&3f~Vsq{F1VTo=@yS?`Wdbf%PHKn?0Oc4CjRTIt{Ki3Do!UfPGIU`(*^M21oBJ?7e^dcMXaD^I5FlH#{}gI zmNk1AeS!Cbl7g9I9x$HjyoPFCjkDs*)y3-GU`V0>)5Bc@#&|sE;@Gw=Y1|udekE1JFO~&K&7wf~2NE24GP7z_Qeae76H7U$go363cdF4O*qQgl>uOrI4%Sq&EvwLhz4G@he4kZ!74sT8dr8m2} zY1rBVl8k8GIv4-7X8VoCtOrms22P?GBk9?*<@czG15u3b@lEVbKT?0=w(KnD9km%uuNWwLP;tpG;70e@2uCrN8FZHwLTY7=~5tOcf2Klp(c7P^?}{~?-?7@_gIszFR7jv_w*_>0vBp_#2Bo*9LW>*8~gl5&HJ z!eln1=~Hc5pq0NFkFyRnjCO!qm8E;){YDRz6pfv*TE+8(Fn!&4;-BIbivNjMqzcvq zVu*y>I;woZJcq|Rr!N%$z)M$NEz5+ErPE+W5Txy>2+xI2|$0>X||G8EAm zHU{W#nY_UGPTJPtXZG;e%{;8uF?XawQ++KCOu*BjcuD;`n+NyV#GJlbNm#z@aFZ+K z)N;&JHJ)ET!NrXNNL$?F%8;UYt=49WornQqh-E3r?xn8W-3+DzZfJyb1N*1|mvEYh zZ^`IcH7LRccf78)d%4R8{=9;fkV?I zzgmjbA+~OXM?Z_&7MXpf2ergVBM3vW$qbYXZ$!{QG-8rdDsjlup}C6>gX+9(#Fy(t z^f4P_FO6qF*-$)1W~GL6%1G?sg@8~=VSwfY#C?2suHLG4)eb?}3PiNWc`(plsHJ@g zK@cT~D!*Gt#ZNVZI&}O@{8RRKVw=SLnKbG=&DjtA{%c}hqR}Y_`hvTm-Ap;XlgSxO zo$%GjK&tG%>@qLHYL$hAa2CVJm#FyosR-%ZGgm3UKQ<5bQ& z({38r)dSKfXS;{-&4hJ=r%ggUBy)f}V3GF>qcs-EUW1HR6SDb3Dn5|KWIqy_jZ%%JBJ)zmGw$XdoWb9bg&kArBX~ZBxZjX zcc;lJ8nd6%N%yY3eUW9!KX$OTrY~&ITD@6M=lKn5-OJ*8wZy4q3_~-0YiHpIH0S#% z2b2pX_37Ckj5k4e5>9&P2MoB!GIi3YKd|2HREAVTNR$>62LBL=HLKOUiY8i7Em)!4 zE=j*XYgdxL_N7kmkcnP| zJEtIdb%o5%mAlnk;P3;bK)d$a3WBXbc7Y$+0*T$9eLOk$uB7X(ThNg$M@}GyV0F;9 ztsMVs6e`bvUaGIrbTY9|dDQINE;Px=kgLLG6pObANOP~>MsiZQfrwbdD`NtzX{Y%T zrO?XJ62n(Xqae&ITf#zgLJuotlLSF}P*lJM7At|@q|qx1)^p1)a?Wkb^;%^2RBcoj z%!VNZ9MkEFzZ3H^p5?ttk;-BxgI-wm#sk>%1RKe_O$z@ZPpLrYU8|l}v`;|1zj=EAW#* zWoNm#eCmKgZt#$H1cb6=j789R)WN&tN5RG{SeQ&aoV6zeC^`97+tJ751uQZu*L^Ky zmB@2%T$e;1TvW$@$Hr8C|5o}enyaAZ!(^9-i}Pzfzn9{c{LNTZbaly}p=Hm$-IzOe z_Xdkdt&l0?M6B@qFd6Eur_nHduOJxdOzd>$Dj@Uz0iCZLsd2#%9cGi~t{ zkG3uy6hre9-7UVZL%X}Bxa|nsKbMoJsj1~ZtFsu*E*S+_4S?Hy12M7wYbuA zSasxg$_OAqfehO-pLXJO<0~(_w>$}l%$obtuV_%a zm^j|SR{_$s^n1hhq5L>eIemS~C}OtF7{0$WEG#x1Hk8;XaUz#mzjCdNJ^zoA{I^{7 z(e=VSg-K+|*{{TLUy9=fqs2|S;salR<3=i4`hUK>%vJ8zBKW^uG+iK#QWm{_J5j9M zyW?78jd+Jm!OuP=nU4F!Iwxe&{Ql#|Cv$U#oa-SACN{P>!QQPi2oRY3Gch6i>C^IA z&ZAG9oRGwk&*SZq%mg=(%doxAf_5|)=w+DUU5_D>CMW zdjzn{$zKd2tf`~#(lau&TijWJNMk`k!Evhpb*ihoyFsr5hu^kxHV};uqw)?vd2! zJp-W4g**<|0b0Dzp-T=qOhp+Jn@YIP|6$9&#&M;qWK=p^GQY4e1c)`i&KQORFf%1> zZPLd}hsTfB*4FEp)OX7$ck7H|D?pAplgEeq?%rM(paiRD*Ko)6wZvX(|4e`+b_&h8 zj|LFxr~lUC&Vs1#0&*VCi{o8@rdo4v`JbS_=(XvugP{1OxjGvGr`4Cb4fbY(DXgu4 z0Q#(vFEtt%8taYc2#ZkR$iz~t0PVig7f;uEcRHAqn(6}Vxs=LcJdHO0X;GUooB`|) zSrT=2cJ{9Akt(vLfH-f+)%o4u^gUw1J_`s4Si?fG!2D$qvXYWP&nE$jRkEsFU48w# zjNu|)yEy`Zt@Zvy^v_?f4k^oxW4{Ut3Qq3NLJ?Dyx(G$S#e&1OD}%zMJ{NxB^D)U? zAfu;c&Own?+5W!m1&sQE{Z!k=rrepIVz=S<{lNvvYVhjiyu%m6``s`3qPGiMqQz5H z`sGP@Uf6^m?Ebb2oIZB;{i>)?K-yjI42pL#@V|E}v`Q~4Ep4&~Q^)DCjQ$18RKWAe zo+#pERoc&o7Q1ACBVdwfbEbJc(WeJ`2O4HXlysi63>< zw*b!ji!C0QGQ1o>@bm=@D=St2EDQ%96FGlfS6yAo&#%3&f%<7d=%8VVik=VG3p;G- z{?Ow|2eA39V3?Yl*O&tPGf$!nrRGL+#FX{*^^+8U9b(#b*2#Uf#GG0S4Y1O!P%Czb#=g& zZDwZX0H7g%6!q(SEcOK9h<*YLP~0U@7xjUAtS~tIBPMKH1&^JDB}%PWDQ3KcfuYFC zdCB+62}s#lW7PTl84#JSojs_5g2KXxXq1kvvy(AN9H*@;kA$S8m*K);u(dd`ScLV4 z?$V9suLDTJP9q0V$jp=G0hUB&>ujdAaLl??H8gtKuKo@Jk9HEw0*hqI23n;*wK$*+ z{E>|M6X=stQcfq;lp*$u%^XyV-D@Gl2FrZEudzl&Z$UjhJrqLj(NBv%fNF^^X0Jj+ z4!Q%dS^{#+y!H$HfRA1cES&wIe*D)9=!2Jv6CW=O))+9e;^PB>U;VA0WkXKk4;FZr5AbVGn15y3$(8hrx^>7Z?+n@y{YgouYn%h02(Mi zH#hL^?ym3a?rKle-Qv%$Y-4>)Q&*S`yf8o&cK)? zzi#Mrv0MO>!HWD5$P)EU2gcSjbPSCCk&)O0tFK>$0MR8*yZqL>CO)07(FjNgx8jF& z0aawW--z-r6LWI|Ky%S;0Z*lz;0DGA!j1aOvv~eO{goHc;-wO@5yMIm>JIek# zghWK|eoYI7(oyGB=r$;AY;KkTYi1=tmzSp+`e~b)nw9{-zu$40bf^0{v9Z{0=i4ez zpI0T+_dq_0?eYBh#U?hxO3bxLRYT=ht!1BH|lo@Evv70-$xedY@E^}@WRfTHu$Q@ zs#X0#fC5`XUA@5X;Veg{E~BWF%4_{Ku&5_$DVOr|Plf z+pxR6O%mk5b$QM>3N+l+b@m(tEK`6JZ^8XSB!Bu(280A7&00=B`Oxsm3j&TRlZ6WH x|N1|0Y7-Fpf4nbWT6o@n{IxO0{}&e@sTG?!quB;WCZ7R+veHUYRT4(u{uj!XSd#z% literal 0 HcmV?d00001 diff --git a/docs/control/open-loop_controllers.md b/docs/control/open-loop_controllers.md new file mode 100644 index 000000000..dbf1fb110 --- /dev/null +++ b/docs/control/open-loop_controllers.md @@ -0,0 +1,118 @@ +(open-loop-control)= +# Open-Loop Controllers + +## Open-Loop Storage Controllers +The open-loop storage controllers can be attached as the control strategy in the `tech_config` for various storage converters (e.g., battery or hydrogen storage). There are two controller types for storage: +1. Pass-through Controller - passes the commodity flow to the output without any modification +2. Demand Open-Loop Storage Controller - uses simple logic to attempt to meet demand using the storage technology. + +(pass-through-controller)= +### Pass-Through Controller +The `pass_through_controller` simply directly passes the input commodity flow to the output without any modifications. It is useful for testing, as a placeholder for more complex controllers, and for maintaining consistency between controlled and uncontrolled frameworks as this 'controller' does not alter the system output in any way. + +For examples of how to use the `pass_through_controller` open-loop control framework, see the following: +- `examples/01_onshore_steel_mn` +- `examples/02_texas_ammonia` +- `examples/12_ammonia_synloop` + +(demand-open-loop-storage-controller)= +### Demand Open-Loop Storage Controller +The `demand_open_loop_storage_controller` uses simple logic to dispatch the storage technology when demand is higher than commodity generation and charges the storage technology when the commodity generation exceeds demand, both cases depending on the storage technology's state of charge. For the `demand_open_loop_storage_controller`, the storage state of charge is an estimate in the control logic and is not informed in any way by the storage technology performance model. + +An example of an N2 diagram for a system using the open-loop control framework for hydrogen storage and dispatch is shown below ([click here for an interactive version](./figures/open-loop-n2.html)). Note that the hydrogen out going into the finance model is coming from the control component. + +![](./figures/open-loop-n2.png) + +For examples of how to use the `demand_open_loop_storage_controller` open-loop control framework, see the following: +- `examples/14_wind_hydrogen_dispatch/` +- `examples/19_simple_dispatch/` + +## Open-Loop Converter Controllers + +Open-loop converter controllers define rule-based logic for meeting commodity demand profiles without using dynamic system feedback. These controllers operate independently at each timestep. + +This page documents two core controller types: +1. Demand Open-Loop Converter Controller — meets a fixed demand profile. +2. Flexible Demand Open-Loop Converter Controller — adjusts demand up or down within flexible bounds. + +(demand-open-loop-converter-controller)= +### Demand Open-Loop Converter Controller +The `demand_open_loop_converter_controller` allocates commodity input to meet a defined demand profile. It does not contain energy storage logic, only **instantaneous** matching of supply and demand. + +The controller computes each value per timestep: +- Unmet demand (non-zero when supply < demand, otherwise 0.) +- Unused commodity (non-zero when supply > demand, otherwise 0.) +- Delivered output (commodity supplied to demand sink) + +This provides a simple baseline for understanding supply–demand balance before adding complex controls. + +#### Configuration +The controller is defined within the `tech_config` and requires these inputs. + +| Field | Type | Description | +| ----------------- | -------------- | ------------------------------------- | +| `commodity_name` | `str` | Commodity name (e.g., `"hydrogen"`). | +| `commodity_units` | `str` | Units (e.g., `"kg/h"`). | +| `demand_profile` | scalar or list | Timeseries demand or constant demand. | + +```yaml +control_strategy: + model: demand_open_loop_converter_controller +model_inputs: + control_parameters: + commodity_name: hydrogen + commodity_units: kg/h + demand_profile: [10, 10, 12, 15, 14] +``` +For an example of how to use the `demand_open_loop_converter_controller` open-loop control framework, see the following: +- `examples/23_solar_wind_ng_demand` + +(flexible-demand-open-loop-converter-controller)= +### Flexible Demand Open-Loop Converter Controller +The `flexible_demand_open_loop_converter_controller` extends the fixed-demand controller by allowing the actual demand to flex up or down within defined bounds. This is useful for demand-side management scenarios where: +- Processes can defer demand (e.g., flexible industrial loads) +- The system requires demand elasticity without dynamic optimization + +The controller computes: +- Flexible demand (clamped within allowable ranges) +- Unmet flexible demand +- Unused commodity +- Delivered output + +Everything remains open-loop no storage, no intertemporal coupling. + +For an example of how to use the `flexible_demand_open_loop_converter_controller` open-loop control framework, see the following: +- `examples/23_solar_wind_ng_demand` + +The flexible demand component takes an input commodity production profile, the maximum demand profile, and various constraints (listed below), and creates a "flexible demand profile" that follows the original input commodity production profile while satisfying varying constraint. +Please see the figure below for an example of how the flexible demand profile can vary from the original demand profile based on the input commodity production profile and the ramp rates. +The axes are unlabeled to allow for generalization to any commodity and unit type. + +| ![Flexible Demand Example](figures/flex_demand_fig.png) | +|-| + + +#### Configuration +The flexible demand controller is defined within the `tech_config` with the following parameters: + +| Field | Type | Description | +| ------------------- | -------------- | -------------------------------------------- | +| `commodity_name` | `str` | Commodity name. | +| `commodity_units` | `str` | Units for all values. | +| `demand_profile` | scalar or list | Default (nominal) demand profile. | +| `turndown_ratio` | float | Minimum fraction of baseline demand allowed. | +| `ramp_down_rate_fraction` | float | Maximum ramp-down rate per timestep expressed as a fraction of baseline demand. | +| `ramp_up_rate_fraction` | float | Maximum ramp-up rate per timestep expressed as a fraction of baseline demand. | +| `min_utilization` | float | Minimum total fraction of baseline demand that must be met over the entire simulation. | + +```yaml +model_inputs: + control_parameters: + commodity_name: hydrogen + commodity_units: kg/h + demand_profile: [10, 12, 10, 8] + turndown_ratio: 0.1 + ramp_down_rate_fraction: 0.5 + ramp_up_rate_fraction: 0.5 + min_utilization: 0 +``` diff --git a/docs/control/pyomo_controllers.md b/docs/control/pyomo_controllers.md new file mode 100644 index 000000000..e0766b5d2 --- /dev/null +++ b/docs/control/pyomo_controllers.md @@ -0,0 +1,16 @@ +(pyomo-control)= +# Pyomo control framework +[Pyomo](https://www.pyomo.org/about) is an open-source optimization software package. It is used in H2Integrate to facilitate modeling and solving control problems, specifically to determine optimal dispatch strategies for dispatchable technologies. + +Pyomo control, allows for the possibility of feedback control at specified intervals, but can also be used for open-loop control if desired. In the pyomo control framework in H2Integrate, each technology can have control rules associated with them that are in turn passed to the pyomo control component, which is owned by the storage technology. The pyomo control component combines the technology rules into a single pyomo model, which is then passed to the storage technology performance model inside a callable dispatch function. The dispatch function also accepts a simulation method from the performance model and iterates between the pyomo model for dispatch commands and the performance simulation function to simulated performance with the specified commands. The dispatch function runs in specified time windows for dispatch and performance until the whole simulation time has been run. + +An example of an N2 diagram for a system using the pyomo control framework for hydrogen storage and dispatch is shown below ([click here for an interactive version](./figures/pyomo-n2.html)). Note the control rules being passed to the dispatch component and the dispatch function, containing the full pyomo model, being passed to the performance model for the battery/storage technology. Another important thing to recognize, in contrast to the open-loop control framework, is that the storage technology outputs (commodity out, SOC, unused commodity, etc) are passed out of the performance model when using the Pyomo control framework rather than from the control component. + +![](./figures/pyomo-n2.png) + +(heuristic-load-following-controller)= +## Heuristic Load Following Controller +The pyomo control framework currently supports only a simple heuristic method, `heuristic_load_following_controller`, but we plan to extend the framework to be able to run a full dispatch optimization using a pyomo solver. When using the pyomo framework, a `dispatch_rule_set` for each technology connected to the storage technology must also be specified. These will typically be `pyomo_dispatch_generic_converter` for generating technologies, and `pyomo_dispatch_generic_storage` for storage technologies. More complex rule sets may be developed as needed. + +For an example of how to use the pyomo control framework with the `heuristic_load_following_controller`, see +- `examples/18_pyomo_heuristic_wind_battery_dispatch` diff --git a/docs/technology_models/simple_generic_storage.md b/docs/technology_models/simple_generic_storage.md index 8d29434c7..cc31123eb 100644 --- a/docs/technology_models/simple_generic_storage.md +++ b/docs/technology_models/simple_generic_storage.md @@ -7,7 +7,7 @@ The Simple Generic Storage model provides a flexible framework for modeling vari The Simple Generic Storage model consists of two main components: 1. **SimpleGenericStorage**: A minimal component that defines the input interface for the storage system -2. **DemandOpenLoopController**: The core logic component that handles storage operations, state of charge calculations, and resource management +2. **DemandOpenLoopStorageController**: The core logic component that handles storage operations, state of charge calculations, and resource management This architecture allows the storage system to work with any resource type by simply configuring the resource name and units, making it quite versatile. diff --git a/docs/technology_models/technology_overview.md b/docs/technology_models/technology_overview.md index 610967676..6b7faf9ef 100644 --- a/docs/technology_models/technology_overview.md +++ b/docs/technology_models/technology_overview.md @@ -88,7 +88,9 @@ Connection: `[source_tech, dest_tech, transport_commodity, transport_technology] | Controller | Control Method | | :----------------------------- | :---------------: | | `pass_through_controller` | open-loop control. directly passes the input resource flow to the output without any modifications | -| `demand_open_loop_controller` | open-loop control. manages resource flow based on demand and storage constraints | +| `demand_open_loop_storage_controller` | open-loop control. manages resource flow based on demand and storage constraints | +| `demand_open_loop_converter_controller` | open-loop control. manages resource flow based on demand constraints | +| `flexible_demand_open_loop_converter_controller` | open-loop control. manages resource flow based on demand and flexibility constraints | | `heuristic_load_following_controller` | open-loop control that works on a time window basis to set dispatch commands. Uses pyomo | # Technology Models Overview @@ -252,6 +254,10 @@ Below summarizes the available performance, cost, and financial models for each (control-models)= ## Control Models -- `pass_through_controller` -- `demand_open_loop_controller` -- `heuristic_load_following_controller` +- `'pass_through_controller'` +- Storage Controllers: + - `'demand_open_loop_storage_controller'` + - `'heuristic_load_following_controller'` +- Converter Controllers: + - `'demand_open_loop_converter_controller` + - `'flexible_demand_open_loop_converter_controller'` diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index d21a394c0..d412ccde2 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -51,7 +51,7 @@ technologies: cost_model: model: "generic_storage_cost" control_strategy: - model: "demand_open_loop_controller" + model: "demand_open_loop_storage_controller" model_inputs: shared_parameters: commodity_name: "hydrogen" @@ -104,7 +104,7 @@ technologies: cost_model: model: "generic_storage_cost" control_strategy: - model: "demand_open_loop_controller" + model: "demand_open_loop_storage_controller" model_inputs: shared_parameters: commodity_name: "co2" diff --git a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb index 38f2732f9..80f6435b6 100644 --- a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb +++ b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb @@ -19,7 +19,7 @@ "technologies:\n", " h2_storage:\n", " control_strategy:\n", - " method: \"demand_open_loop_controller\"\n", + " method: \"demand_open_loop_storage_controller\"\n", " control_parameters:\n", " commodity_units: \"kg/h\"\n", " max_capacity: 60000.0 # kg\n", @@ -107,7 +107,7 @@ " hydrogen_in |791848.83895374| kg/h h2_storage.hydrogen_in \n", " rated_h2_production_kg_pr_hr [0.] kg/h h2_storage.rated_h2_production_kg_pr_hr \n", " efficiency [0.77728804] None h2_storage.efficiency \n", - " demand_open_loop_controller\n", + " demand_open_loop_storage_controller\n", " hydrogen_in |791848.83895374| kg/h h2_storage.hydrogen_in \n", " hydrogen_demand |467974.3582719| kg/h**2 h2_storage.hydrogen_demand \n", " finance_subgroup_default\n", @@ -134,7 +134,7 @@ " electrolyzer_to_h2_storage_pipe\n", " hydrogen_in |221.02084143| kg/s electrolyzer_to_h2_storage_pipe.hydrogen_in 1.95511557 \n", " h2_storage\n", - " demand_open_loop_controller\n", + " demand_open_loop_storage_controller\n", " hydrogen_in |795675.02916366| kg/h h2_storage.hydrogen_in 7038.41603938 \n", " hydrogen_demand_profile |467974.3582719| kg/h h2_storage.hydrogen_demand_profile 5000.0 \n", " h2_storage\n", @@ -232,7 +232,7 @@ " electrolyzer_to_h2_storage_pipe\n", " hydrogen_out |221.02084143| kg/s electrolyzer_to_h2_storage_pipe.hydrogen_out 1.95511557 \n", " h2_storage\n", - " demand_open_loop_controller\n", + " demand_open_loop_storage_controller\n", " hydrogen_out |440363.12307143| kg/h h2_storage.hydrogen_out 4507.31530924 \n", " hydrogen_soc |74.44964199| unitless h2_storage.hydrogen_soc 0.71454542 \n", " hydrogen_unused_commodity |381367.37795319| kg/h h2_storage.hydrogen_unused_commodity 2531.22977391 \n", diff --git a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml index beefd8ba6..1228fa326 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml @@ -61,7 +61,7 @@ technologies: cost_model: model: "lined_rock_cavern_h2_storage_cost" control_strategy: - model: "demand_open_loop_controller" + model: "demand_open_loop_storage_controller" model_inputs: shared_parameters: commodity_name: "hydrogen" diff --git a/examples/16_natural_gas/tech_config.yaml b/examples/16_natural_gas/tech_config.yaml index 1eda5611d..d14a761ca 100644 --- a/examples/16_natural_gas/tech_config.yaml +++ b/examples/16_natural_gas/tech_config.yaml @@ -36,7 +36,7 @@ technologies: cost_model: model: "atb_battery_cost" control_strategy: - model: "demand_open_loop_controller" + model: "demand_open_loop_storage_controller" model_inputs: shared_parameters: commodity_name: "electricity" diff --git a/examples/19_simple_dispatch/tech_config.yaml b/examples/19_simple_dispatch/tech_config.yaml index 0abee550f..264660ca8 100644 --- a/examples/19_simple_dispatch/tech_config.yaml +++ b/examples/19_simple_dispatch/tech_config.yaml @@ -35,7 +35,7 @@ technologies: cost_model: model: "atb_battery_cost" control_strategy: - model: "demand_open_loop_controller" + model: "demand_open_loop_storage_controller" model_inputs: shared_parameters: commodity_name: "electricity" diff --git a/examples/23_solar_wind_ng_demand/driver_config.yaml b/examples/23_solar_wind_ng_demand/driver_config.yaml new file mode 100644 index 000000000..4d9ffd9dd --- /dev/null +++ b/examples/23_solar_wind_ng_demand/driver_config.yaml @@ -0,0 +1,5 @@ +name: driver_config +description: This analysis runs a natural gas power plant + +general: + folder_output: outputs diff --git a/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml b/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml new file mode 100644 index 000000000..5741a9b11 --- /dev/null +++ b/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml @@ -0,0 +1,118 @@ +name: technology_config +description: This plant produces electricity with wind, solar, and a natural gas power plant to meet a fixed electrical load demand. + +technologies: + wind: + performance_model: + model: pysam_wind_plant_performance + cost_model: + model: atb_wind_cost + model_inputs: + performance_parameters: + num_turbines: 20 + turbine_rating_kw: 6000 + hub_height: 115 + rotor_diameter: 170 + create_model_from: default + config_name: WindPowerSingleOwner + pysam_options: + Farm: + wind_farm_wake_model: 0 + Losses: + ops_strategies_loss: 10.0 + layout: + layout_mode: basicgrid + layout_options: + row_D_spacing: 5.0 + turbine_D_spacing: 5.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: square + cost_parameters: + capex_per_kW: 1300 + opex_per_kW_per_year: 39 + cost_year: 2022 + + solar: + performance_model: + model: pysam_solar_plant_performance + cost_model: + model: atb_utility_pv_cost + model_inputs: + performance_parameters: + pv_capacity_kWdc: 100000 #100 MWdc + dc_ac_ratio: 1.34 + create_model_from: new + tilt_angle_func: none + tilt: 0 + pysam_options: + SystemDesign: + gcr: 0.3 + array_type: 2 + bifaciality: 0.65 + inv_eff: 96.0 + losses: 14.6 + module_type: 1 + azimuth: 180 + rotlim: 45 + SolarResource: + albedo_default: 0.2 + cost_parameters: + capex_per_kWac: 1193 + opex_per_kWac_per_year: 18 + cost_year: 2024 + + ng_feedstock: + performance_model: + model: feedstock_performance + cost_model: + model: feedstock_cost + model_inputs: + shared_parameters: + feedstock_type: natural_gas + units: MMBtu + performance_parameters: + rated_capacity: 750. #MMBtu + cost_parameters: + cost_year: 2023 + price: 4.2 #USD/MMBtu + annual_cost: 0. + start_up_cost: 0. + + natural_gas_plant: + performance_model: + model: natural_gas_performance + cost_model: + model: natural_gas_cost + model_inputs: + shared_parameters: + heat_rate_mmbtu_per_mwh: 7.5 # MMBtu/MWh - typical for NGCC + system_capacity_mw: 100. #MW + cost_parameters: + capex_per_kw: 1000 # $/kW - typical for NGCC + fixed_opex_per_kw_per_year: 10.0 # $/kW/year + variable_opex_per_mwh: 0.0 # $/MWh + cost_year: 2023 + + electrical_load_demand: + control_strategy: + model: flexible_demand_open_loop_converter_controller + model_inputs: + control_parameters: + commodity_name: electricity + commodity_units: kW + rated_demand: 100000 + demand_profile: 100000 #100 MW + turndown_ratio: 0.5 + ramp_down_rate_fraction: 0.1 + ramp_up_rate_fraction: 0.1 + min_utilization: 0 + + + combiner: + performance_model: + model: combiner_performance + model_inputs: + performance_parameters: + commodity: electricity + commodity_units: kW diff --git a/examples/23_solar_wind_ng_demand/plant_config.yaml b/examples/23_solar_wind_ng_demand/plant_config.yaml new file mode 100644 index 000000000..6cbe30bb7 --- /dev/null +++ b/examples/23_solar_wind_ng_demand/plant_config.yaml @@ -0,0 +1,120 @@ +name: plant_config +description: This plant is located in Texas, USA. + +site: + latitude: 30.6617 + longitude: -101.7096 + year: 2013 + + # array of polygons defining boundaries with x/y coords + boundaries: [ + { + x: [0.0, 1000.0, 1000.0, 0.0], + y: [0.0, 0.0, 100.0, 1000.0], + }, + { + x: [2000.0, 2500.0, 2000.0], + y: [2000.0, 2000.0, 2500.0], + } + ] + + resources: + wind_resource: + resource_model: wind_toolkit_v2_api + resource_parameters: + resource_year: 2013 + solar_resource: + resource_model: goes_aggregated_solar_v4_api + resource_parameters: + resource_year: 2013 + resource_dir: "../11_hybrid_energy_plant/tech_inputs/weather/solar" + resource_filename: "30.6617_-101.7096_psmv3_60_2013.csv" + + +# array of arrays containing left-to-right technology +# interconnections; can support bidirectional connections +# with the reverse definition. +# this will naturally grow as we mature the interconnected tech +technology_interconnections: [ + ["wind", "combiner", "electricity", "cable"], #source_tech, dest_tech, transport_item, transport_type = connection + ["solar", "combiner", "electricity", "cable"], + ["ng_feedstock", "natural_gas_plant", "natural_gas", "pipe"], #connect NG feedstock to NG plant + ["combiner", "electrical_load_demand", ["electricity_out", "electricity_in"]], # subtract wind and solar from demand + ["electrical_load_demand", "natural_gas_plant", ["electricity_unmet_demand", "electricity_demand"]], #give remaining load demand to natural gas plant +] + +resource_to_tech_connections: [ + # connect the wind resource to the wind technology + ['wind_resource', 'wind', 'wind_resource_data'], + ['solar_resource', 'solar', 'solar_resource_data'] +] + + +plant: + plant_life: 30 + simulation: + n_timesteps: 8760 + dt: 3600 +finance_parameters: + finance_groups: + profast_lco: + finance_model: ProFastComp + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] + profast_npv: + finance_model: ProFastNPV + model_inputs: + commodity_sell_price: 0.05167052 + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] + finance_subgroups: + renewables: + commodity: electricity + finance_groups: ["profast_lco","profast_npv"] + technologies: ["solar", "wind"] + natural_gas: + commodity: electricity + finance_groups: ["profast_lco"] + technologies: ["natural_gas_plant", "ng_feedstock"] + electricity: + commodity: electricity + finance_groups: ["profast_lco"] + technologies: ["solar", "wind", "natural_gas_plant", "ng_feedstock"] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + target_dollar_year: 2022 diff --git a/examples/23_solar_wind_ng_demand/run_solar_wind_ng_demand.py b/examples/23_solar_wind_ng_demand/run_solar_wind_ng_demand.py new file mode 100644 index 000000000..c4aa8ebd1 --- /dev/null +++ b/examples/23_solar_wind_ng_demand/run_solar_wind_ng_demand.py @@ -0,0 +1,102 @@ +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +################################## +# Create an H2I model with a fixed electricity load demand +h2i = H2IntegrateModel("solar_wind_ng_demand.yaml") + +# Run the model +h2i.run() + +# Post-process the results +h2i.post_process() + + +################################## +# Create H2I model but replace electrical load demand to be flexible +h2i_flexible = H2IntegrateModel("solar_wind_ng_flexible_demand.yaml") + +# Run the model +h2i_flexible.run() + +# Post-process the results +h2i_flexible.post_process() + +import matplotlib.pyplot as plt + + +# Battery dispatch plotting +model = h2i_flexible +fig, ax = plt.subplots(2, 1, sharex=True, figsize=(11, 9)) + +start_hour = 0 +end_hour = 200 +total_time_steps = model.prob.get_val("wind.electricity_out").size +demand_profile = [ + model.technology_config["technologies"]["electrical_load_demand"]["model_inputs"][ + "control_parameters" + ]["demand_profile"] + * 1e-3 +] * total_time_steps + +# First subplot for wind and solar production and baseline demand profile +ax[0].plot( + range(start_hour, end_hour), + model.prob.get_val("wind.electricity_out", units="MW")[start_hour:end_hour], + linestyle="-", + label="Wind Electricity (MW)", + linewidth=2, + color="blue", +) +ax[0].plot( + range(start_hour, end_hour), + model.prob.get_val("solar.electricity_out", units="MW")[start_hour:end_hour], + linestyle="-", + label="Solar Electricity (MW)", + linewidth=2, + color="gold", +) + +ax[0].plot( + range(start_hour, end_hour), + demand_profile[start_hour:end_hour], + linestyle="--", + label="Baseline Electricity Demand (MW)", + linewidth=2, +) +ax[0].set_ylabel("Generation (MW)") +ax[0].legend(loc="upper right") + +# Second subplot for renewables electricity, NG electricity, and flexible demand profile +ax[1].plot( + range(start_hour, end_hour), + model.prob.get_val("combiner.electricity_out", units="MW")[start_hour:end_hour], + linestyle="-", + label="Combined Wind+Solar Electricity (MW)", + linewidth=2, + color="green", +) +ax[1].plot( + range(start_hour, end_hour), + model.prob.get_val("natural_gas_plant.electricity_out", units="MW")[start_hour:end_hour], + linestyle="-", + label="NG Plant Electricity (MW)", + linewidth=2, + color="orange", +) +ax[1].plot( + range(start_hour, end_hour), + model.prob.get_val("electrical_load_demand.electricity_flexible_demand_profile", units="MW")[ + start_hour:end_hour + ], + linestyle="--", + label="Flexible Demand Profile (MW)", + linewidth=2, + color="purple", +) +ax[1].set_ylabel("Generation & Demand (MW)") +ax[1].set_xlabel("Timestep (hr)") +ax[1].legend(loc="upper right") + +plt.tight_layout() +plt.show() diff --git a/examples/23_solar_wind_ng_demand/solar_wind_ng_demand.yaml b/examples/23_solar_wind_ng_demand/solar_wind_ng_demand.yaml new file mode 100644 index 000000000..3256f3f11 --- /dev/null +++ b/examples/23_solar_wind_ng_demand/solar_wind_ng_demand.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "This example uses wind, solar and a natural gas power plant to meet a fixed electrical load demand." + +driver_config: "driver_config.yaml" +technology_config: "tech_config.yaml" +plant_config: "plant_config.yaml" diff --git a/examples/23_solar_wind_ng_demand/solar_wind_ng_flexible_demand.yaml b/examples/23_solar_wind_ng_demand/solar_wind_ng_flexible_demand.yaml new file mode 100644 index 000000000..32fffb00b --- /dev/null +++ b/examples/23_solar_wind_ng_demand/solar_wind_ng_flexible_demand.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "This example uses wind, solar and a natural gas power plant to meet a fixed electrical load demand." + +driver_config: "driver_config.yaml" +technology_config: "flexible_demand_tech_config.yaml" +plant_config: "plant_config.yaml" diff --git a/examples/23_solar_wind_ng_demand/tech_config.yaml b/examples/23_solar_wind_ng_demand/tech_config.yaml new file mode 100644 index 000000000..c57633c00 --- /dev/null +++ b/examples/23_solar_wind_ng_demand/tech_config.yaml @@ -0,0 +1,112 @@ +name: technology_config +description: This plant produces electricity with wind, solar, and a natural gas power plant to meet a fixed electrical load demand. + +technologies: + wind: + performance_model: + model: pysam_wind_plant_performance + cost_model: + model: atb_wind_cost + model_inputs: + performance_parameters: + num_turbines: 20 + turbine_rating_kw: 6000 + hub_height: 115 + rotor_diameter: 170 + create_model_from: default + config_name: WindPowerSingleOwner + pysam_options: + Farm: + wind_farm_wake_model: 0 + Losses: + ops_strategies_loss: 10.0 + layout: + layout_mode: basicgrid + layout_options: + row_D_spacing: 5.0 + turbine_D_spacing: 5.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: square + cost_parameters: + capex_per_kW: 1300 + opex_per_kW_per_year: 39 + cost_year: 2022 + + solar: + performance_model: + model: pysam_solar_plant_performance + cost_model: + model: atb_utility_pv_cost + model_inputs: + performance_parameters: + pv_capacity_kWdc: 100000 #100 MWdc + dc_ac_ratio: 1.34 + create_model_from: new + tilt_angle_func: none + tilt: 0 + pysam_options: + SystemDesign: + gcr: 0.3 + array_type: 2 + bifaciality: 0.65 + inv_eff: 96.0 + losses: 14.6 + module_type: 1 + azimuth: 180 + rotlim: 45 + SolarResource: + albedo_default: 0.2 + cost_parameters: + capex_per_kWac: 1193 + opex_per_kWac_per_year: 18 + cost_year: 2024 + + ng_feedstock: + performance_model: + model: feedstock_performance + cost_model: + model: feedstock_cost + model_inputs: + shared_parameters: + feedstock_type: natural_gas + units: MMBtu + performance_parameters: + rated_capacity: 750. #MMBtu + cost_parameters: + cost_year: 2023 + price: 4.2 #USD/MMBtu + annual_cost: 0. + start_up_cost: 0. + + natural_gas_plant: + performance_model: + model: natural_gas_performance + cost_model: + model: natural_gas_cost + model_inputs: + shared_parameters: + heat_rate_mmbtu_per_mwh: 7.5 # MMBtu/MWh - typical for NGCC + system_capacity_mw: 100. #MW + cost_parameters: + capex_per_kw: 1000 # $/kW - typical for NGCC + fixed_opex_per_kw_per_year: 10.0 # $/kW/year + variable_opex_per_mwh: 0.0 # $/MWh + cost_year: 2023 + + electrical_load_demand: + control_strategy: + model: demand_open_loop_converter_controller + model_inputs: + control_parameters: + commodity_name: electricity + commodity_units: kW + demand_profile: 100000 #100 MW + + combiner: + performance_model: + model: combiner_performance + model_inputs: + performance_parameters: + commodity: electricity + commodity_units: kW diff --git a/h2integrate/control/control_strategies/converters/__init__.py b/h2integrate/control/control_strategies/converters/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/control/control_strategies/converters/demand_openloop_controller.py b/h2integrate/control/control_strategies/converters/demand_openloop_controller.py new file mode 100644 index 000000000..fc17ece85 --- /dev/null +++ b/h2integrate/control/control_strategies/converters/demand_openloop_controller.py @@ -0,0 +1,74 @@ +import numpy as np + +from h2integrate.control.control_strategies.demand_openloop_controller import ( + DemandOpenLoopControlBase, + DemandOpenLoopControlBaseConfig, +) + + +class DemandOpenLoopConverterController(DemandOpenLoopControlBase): + """Open-loop controller for converting input supply into met demand. + + This controller computes unmet demand, unused (curtailed) production, and + the resulting commodity output profile based on the incoming supply and an + externally specified demand profile. It uses simple arithmetic rules: + + * If demand exceeds supplied commodity, the difference is unmet demand. + * If supply exceeds demand, the excess is unused (curtailed) commodity. + * Output equals supplied commodity minus curtailed commodity. + + This component relies on configuration provided through the + ``tech_config`` dictionary, which must define the controller's + ``control_parameters``. + """ + + def setup(self): + """Set up the load controller configuration. + + Loads the controller configuration from ``tech_config`` and then calls + the base class ``setup``to create to inputs/outputs. + + Raises: + KeyError: If the expected configuration keys are missing from + ``tech_config``. + """ + self.config = DemandOpenLoopControlBaseConfig.from_dict( + self.options["tech_config"]["model_inputs"]["control_parameters"] + ) + super().setup() + + def compute(self, inputs, outputs): + """Compute unmet demand, unused commodity, and converter output. + + This method compares the demand profile to the supplied commodity for + each timestep and assigns unmet demand, curtailed production, and + actual delivered output. + + Args: + inputs (dict-like): Mapping of input variable names to their + current values, including: + * ``{commodity}_demand``: Demand profile. + * ``{commodity}_in``: Supplied commodity. + outputs (dict-like): Mapping of output variable names where results + will be written, including: + * ``{commodity}_unmet_demand``: Unmet demand. + * ``{commodity}_unused_commodity``: Curtailed production. + * ``{commodity}_out``: Actual output delivered. + + Notes: + All variables operate on a per-timestep basis and typically have + array shape ``(n_timesteps,)``. + """ + commodity = self.config.commodity_name + remaining_demand = inputs[f"{commodity}_demand"] - inputs[f"{commodity}_in"] + + # Calculate missed load and curtailed production + outputs[f"{commodity}_unmet_demand"] = np.where(remaining_demand > 0, remaining_demand, 0) + outputs[f"{commodity}_unused_commodity"] = np.where( + remaining_demand < 0, -1 * remaining_demand, 0 + ) + + # Calculate actual output based on demand met and curtailment + outputs[f"{commodity}_out"] = ( + inputs[f"{commodity}_in"] - outputs[f"{commodity}_unused_commodity"] + ) diff --git a/h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py b/h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py new file mode 100644 index 000000000..ed5ef77d0 --- /dev/null +++ b/h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py @@ -0,0 +1,301 @@ +import numpy as np +from attrs import field, define + +from h2integrate.core.validators import gte_zero, range_val +from h2integrate.control.control_strategies.demand_openloop_controller import ( + DemandOpenLoopControlBase, + DemandOpenLoopControlBaseConfig, +) + + +@define +class FlexibleDemandOpenLoopConverterControllerConfig(DemandOpenLoopControlBaseConfig): + """Configuration for defining a flexible demand open-loop controller. + + Extends :class:`DemandOpenLoopControlBaseConfig` with additional parameters + required for dynamically adjusting demand based on turndown, ramping, and + minimum utilization constraints. These parameters are expressed as fractions + of ``maximum_demand`` and must lie within ``(0, 1)``. + + Attributes: + rated_demand (float): maximum demand in the same units as + `commodity_units`, used to convert the constraint parameters from + fractions to units of `commodity_units`. + turndown_ratio (float): Minimum allowable operating demand expressed as a + fraction of the maximum demand. Must be in the range ``(0, 1)``. + ramp_down_rate_fraction (float): Maximum allowable ramp-down rate per + timestep, expressed as a fraction of maximum demand. Must be in + ``(0, 1)``. + ramp_up_rate_fraction (float): Maximum allowable ramp-up rate per + timestep, expressed as a fraction of maximum demand. Must be in + ``(0, 1)``. + min_utilization (float): Minimum total fraction of demand that must be met + over the entire simulation. Must be in ``(0, 1)``. Utilization is defined as: + + ``sum({commodity}_flexible_demand_profile)/sum({commodity}_demand)`` + """ + + rated_demand: float = field(validator=gte_zero) + turndown_ratio: float = field(validator=range_val(0, 1.0)) + ramp_down_rate_fraction: float = field(validator=range_val(0, 1.0)) + ramp_up_rate_fraction: float = field(validator=range_val(0, 1.0)) + min_utilization: float = field(validator=range_val(0, 1.0)) + + +class FlexibleDemandOpenLoopConverterController(DemandOpenLoopControlBase): + """Open-loop controller for flexible demand with ramping and utilization constraints. + + This controller extends the base demand controller by allowing the effective + demand to vary dynamically based on turndown constraints, ramp-rate limits, + and minimum-utilization requirements. A flexible demand profile is generated + and used to compute unmet demand, unused commodity, and delivered output. + """ + + def setup(self): + """Set up component inputs and outputs for flexible demand control. + + Adds inputs for turndown ratio, ramp up/down rates, and minimum + utilization, all expressed as fractions of maximum demand. Adds the + flexible demand output profile, which will be populated in ``compute``. + """ + self.config = FlexibleDemandOpenLoopConverterControllerConfig.from_dict( + self.options["tech_config"]["model_inputs"]["control_parameters"] + ) + super().setup() + + n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) + commodity = self.config.commodity_name + + self.add_input( + f"rated_{commodity}_demand", + val=self.config.demand_profile, + shape=(n_timesteps), + units=self.config.commodity_units, + desc=f"Rated demand of {commodity}", + ) + + self.add_input( + "ramp_down_rate", + val=self.config.ramp_down_rate_fraction, + units="percent", + desc="Maximum ramp down rate as a fraction of the maximum demand", + ) + + self.add_input( + "ramp_up_rate", + val=self.config.ramp_up_rate_fraction, + units="percent", + desc="Maximum ramp up rate as a fraction of the maximum demand", + ) + + self.add_input( + "min_utilization", + val=self.config.min_utilization, + units="percent", + desc="Minimum capacity factor based on maximum demand", + ) + + self.add_input( + "turndown_ratio", + val=self.config.turndown_ratio, + units="percent", + desc="Minimum operating point as a fraction of the maximum demand", + ) + + self.add_output( + f"{commodity}_flexible_demand_profile", + val=0.0, + shape=(n_timesteps), + units=self.config.commodity_units, + desc=f"Flexible demand profile of {commodity}", + ) + + def adjust_demand_for_ramping(self, pre_demand_met_clipped, demand_bounds, ramp_rate_bounds): + """Apply ramp-rate limits to a demand profile. + + Enforces maximum up-ramp and down-ramp rates across timesteps to ensure + that the demand does not change faster than allowed. + + Args: + pre_demand_met_clipped (np.ndarray): Demand profile after applying + minimum and maximum demand limits. + demand_bounds (tuple[float, float]): ``(min_demand, rated_demand)`` bounds. + ramp_rate_bounds (tuple[float, float]): ``(ramp_down_rate, ramp_up_rate)`` + in commodity units per timestep. + + Returns: + np.ndarray: Ramped and bounded demand profile. + """ + min_demand, rated_demand = demand_bounds + ramp_down_rate, ramp_up_rate = ramp_rate_bounds + + # Instantiate the flexible demand profile array and populate the first timestep + # with the first value from pre_demand_met_clipped + flexible_demand_profile = np.zeros(len(pre_demand_met_clipped)) + flexible_demand_profile[0] = pre_demand_met_clipped[0] + + # Loop through each timestep and adjust for ramping constraints + for i in range(1, len(flexible_demand_profile)): + prior_timestep_demand = flexible_demand_profile[i - 1] + + # Calculate the change in load from the prior timestep + load_change = pre_demand_met_clipped[i] - prior_timestep_demand + + # If ramp is too steep down, set new_demand accordingly + if load_change < (-1 * ramp_down_rate): + new_demand = prior_timestep_demand - ramp_down_rate + flexible_demand_profile[i] = np.clip(new_demand, min_demand, rated_demand) + + # If ramp is too steep up, set new_demand accordingly + elif load_change > ramp_up_rate: + new_demand = prior_timestep_demand + ramp_up_rate + flexible_demand_profile[i] = np.clip(new_demand, min_demand, rated_demand) + + else: + flexible_demand_profile[i] = pre_demand_met_clipped[i] + + return flexible_demand_profile + + def adjust_remaining_demand_for_min_utilization_by_threshold( + self, flexible_demand_profile, min_total_demand, demand_bounds, demand_threshold + ): + """Increase demand in periods of low _in to meet minimum utilization. + + Adds additional demand to timesteps whose flexible demand is at or below + a selected threshold, distributing the required adjustment evenly. + + Args: + flexible_demand_profile (np.ndarray): Current flexible demand profile. + min_total_demand (float): Required minimum total integrated demand. + demand_bounds (tuple[float, float]): ``(min_demand, rated_demand)`` limits. + demand_threshold (float): Threshold below which demand should be increased. + + Returns: + np.ndarray: Demand profile after applying minimum utilization adjustments. + """ + min_demand, rated_demand = demand_bounds + required_extra_demand = min_total_demand - np.sum(flexible_demand_profile) + + # add extra demand to timesteps where _in is below some threshold + i_to_increase = np.argwhere(flexible_demand_profile <= demand_threshold).flatten() + extra_power_per_timestep = required_extra_demand / len(i_to_increase) + flexible_demand_profile[i_to_increase] = ( + flexible_demand_profile[i_to_increase] + extra_power_per_timestep + ) + return np.clip(flexible_demand_profile, min_demand, rated_demand) + + def make_flexible_demand(self, maximum_demand_profile, pre_demand_met, inputs): + """Generate a flexible demand profile satisfying all constraints. + + Applies constraints in the following order: + 1. Turndown ratio + 2. Ramp-rate limits + 3. Minimum-utilization requirement (iteratively increased) + + Args: + maximum_demand_profile (np.ndarray): Maximum allowable demand at each timestep. + pre_demand_met (np.ndarray): Initial demand that can be met with the available input. + inputs (dict): Input values containing ramp rates, turndown ratio, + and minimum utilization as fractions of maximum demand. + + Returns: + np.ndarray: Final flexible demand profile that satisfies all + operational constraints. + """ + + # Calculate demand constraint values in units of commodity units + rated_demand = inputs[f"rated_{self.config.commodity_name}_demand"][0] + min_demand = rated_demand * inputs["turndown_ratio"][0] # minimum demand in commodity units + ramp_down_rate = ( + rated_demand * inputs["ramp_down_rate"][0] + ) # ramp down rate in commodity units + ramp_up_rate = rated_demand * inputs["ramp_up_rate"][0] # ramp up rate in commodity units + min_total_demand = rated_demand * len(maximum_demand_profile) * inputs["min_utilization"][0] + + # 1) satisfy turndown constraint + pre_demand_met_clipped = np.clip(pre_demand_met, min_demand, rated_demand) + + # 2) satisfy ramp rate constraint + demand_bounds = (min_demand, rated_demand) + ramp_rate_bounds = (ramp_down_rate, ramp_up_rate) + flexible_demand_profile = self.adjust_demand_for_ramping( + pre_demand_met_clipped, demand_bounds, ramp_rate_bounds + ) + + # 3) satisfy min utilization constraint + if np.sum(flexible_demand_profile) < min_total_demand: + # gradually increase power threshold in increments of 5% of rated power + demand_threshold_percentages = np.arange(inputs["turndown_ratio"][0], 1.05, 0.05) + for demand_threshold_percent in demand_threshold_percentages: + demand_threshold = demand_threshold_percent * rated_demand + # 3a) satisfy turndown constraint + pre_demand_met_clipped = np.clip(pre_demand_met, min_demand, rated_demand) + # 3b) adjust TODO: finish this comment + flexible_demand_profile = ( + self.adjust_remaining_demand_for_min_utilization_by_threshold( + flexible_demand_profile, min_total_demand, demand_bounds, demand_threshold + ) + ) + # 3c) satisfy ramp rate constraint + flexible_demand_profile = self.adjust_demand_for_ramping( + flexible_demand_profile, demand_bounds, ramp_rate_bounds + ) + + if np.sum(flexible_demand_profile) >= min_total_demand: + break + return flexible_demand_profile + + def compute(self, inputs, outputs): + """Compute unmet demand, unused commodity, and output under flexible demand. + + If ``min_utilization == 1.0``, the behavior matches the regular open-loop + controller with no flexible demand adjustments. + + Otherwise: + * Construct a flexible demand profile. + * Use it to compute unmet demand and unused commodity. + * Output is supply minus unused commodity. + + Args: + inputs (dict-like): Mapping of model inputs, including + ``{commodity}_demand``, ``{commodity}_in``, and flexible-demand parameters. + outputs (dict-like): Mapping where computed outputs are written. + + """ + commodity = self.config.commodity_name + remaining_demand = inputs[f"{commodity}_demand"] - inputs[f"{commodity}_in"] + + if self.config.min_utilization == 1.0: + # Calculate missed load and curtailed production + outputs[f"{commodity}_unmet_demand"] = np.where( + remaining_demand > 0, remaining_demand, 0 + ) + outputs[f"{commodity}_unused_commodity"] = np.where( + remaining_demand < 0, -1 * remaining_demand, 0 + ) + else: + # when remaining demand is less than 0, that means input exceeds demand + # multiply by -1 to make it positive + curtailed = np.where(remaining_demand < 0, -1 * remaining_demand, 0) + + # subtract out the excess input commodity + inflexible_out = inputs[f"{commodity}_in"] - curtailed + + flexible_demand_profile = self.make_flexible_demand( + inputs[f"{commodity}_demand"], inflexible_out, inputs + ) + + outputs[f"{commodity}_flexible_demand_profile"] = flexible_demand_profile + flexible_remaining_demand = flexible_demand_profile - inputs[f"{commodity}_in"] + + outputs[f"{commodity}_unmet_demand"] = np.where( + flexible_remaining_demand > 0, flexible_remaining_demand, 0 + ) + outputs[f"{commodity}_unused_commodity"] = np.where( + flexible_remaining_demand < 0, -1 * flexible_remaining_demand, 0 + ) + + # Calculate actual output based on demand met and curtailment + outputs[f"{commodity}_out"] = ( + inputs[f"{commodity}_in"] - outputs[f"{commodity}_unused_commodity"] + ) diff --git a/h2integrate/control/control_strategies/demand_openloop_controller.py b/h2integrate/control/control_strategies/demand_openloop_controller.py new file mode 100644 index 000000000..499ccbebe --- /dev/null +++ b/h2integrate/control/control_strategies/demand_openloop_controller.py @@ -0,0 +1,120 @@ +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig + + +@define +class DemandOpenLoopControlBaseConfig(BaseConfig): + """Configuration for defining an open-loop demand profile. + + This configuration object specifies the commodity being controlled and the + demand profile that should be met by downstream components. + + Attributes: + commodity_units (str): Units of the commodity (e.g., "kg/h"). + commodity_name (str): Name of the commodity being controlled + (e.g., "hydrogen"). Converted to lowercase and stripped of whitespace. + demand_profile (int | float | list): Demand values for each timestep, in + the same units as `commodity_units`. May be a scalar for constant + demand or a list/array for time-varying demand. + """ + + commodity_units: str = field(converter=str.strip) + commodity_name: str = field(converter=(str.strip, str.lower)) + demand_profile: int | float | list = field() + + +class DemandOpenLoopControlBase(om.ExplicitComponent): + """Base OpenMDAO component for open-loop demand tracking. + + This component defines the interfaces required for open-loop demand + controllers, including inputs for demand, supplied commodity, and outputs + tracking unmet demand, unused production, and total unmet demand. + Subclasses must implement the :meth:`compute` method to define the + controller behavior. + """ + + def initialize(self): + """Declare component options. + + Options: + driver_config (dict): Driver-level configuration parameters. + plant_config (dict): Plant-level configuration, including number of + simulation timesteps. + tech_config (dict): Technology-specific configuration, including + controller settings. + """ + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + """Define inputs and outputs for demand control. + + Creates time-series inputs and outputs for commodity demand, supply, + unmet demand, unused commodity, and total unmet demand. Shapes and units + are determined by the plant configuration and controller configuration. + + Raises: + KeyError: If required configuration keys are missing from + ``plant_config`` or ``tech_config``. + """ + n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) + + commodity = self.config.commodity_name + + self.add_input( + f"{commodity}_demand", + val=self.config.demand_profile, + shape=(n_timesteps), + units=self.config.commodity_units, # NOTE: hardcoded to align with controllers + desc=f"Demand profile of {commodity}", + ) + + self.add_input( + f"{commodity}_in", + val=0.0, + shape=(n_timesteps), + units=self.config.commodity_units, + desc=f"Amount of {commodity} demand that has already been supplied", + ) + + self.add_output( + f"{commodity}_unmet_demand", + val=self.config.demand_profile, + shape=(n_timesteps), + units=self.config.commodity_units, + desc=f"Remaining demand profile of {commodity}", + ) + + self.add_output( + f"{commodity}_unused_commodity", + val=0.0, + shape=(n_timesteps), + units=self.config.commodity_units, + desc=f"Excess production of {commodity}", + ) + + self.add_output( + f"{commodity}_out", + val=0.0, + shape=(n_timesteps), + units=self.config.commodity_units, + desc=f"Production profile of {commodity}", + ) + + self.add_output( + f"total_{commodity}_unmet_demand", + units=self.config.commodity_units, + desc="Total unmet demand", + ) + + def compute(): + """This method must be implemented by subclasses to define the + controller. + + Raises: + NotImplementedError: Always, unless implemented in a subclass. + """ + raise NotImplementedError("This method should be implemented in a subclass.") diff --git a/h2integrate/control/control_strategies/passthrough_openloop_controller.py b/h2integrate/control/control_strategies/passthrough_openloop_controller.py new file mode 100644 index 000000000..c8197a472 --- /dev/null +++ b/h2integrate/control/control_strategies/passthrough_openloop_controller.py @@ -0,0 +1,81 @@ +import numpy as np +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.control.control_strategies.controller_baseclass import ControllerBaseClass + + +@define +class PassThroughOpenLoopControllerConfig(BaseConfig): + commodity_name: str = field() + commodity_units: str = field() + + +class PassThroughOpenLoopController(ControllerBaseClass): + """ + A simple pass-through controller for open-loop systems. + + This controller directly passes the input commodity flow to the output without any + modifications. It is useful for testing, as a placeholder for more complex controllers, + and for maintaining consistency between controlled and uncontrolled frameworks as this + 'controller' does not alter the system output in any way. + """ + + def setup(self): + self.config = PassThroughOpenLoopControllerConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control") + ) + + self.add_input( + f"{self.config.commodity_name}_in", + shape_by_conn=True, + units=self.config.commodity_units, + desc=f"{self.config.commodity_name} input timeseries from production to storage", + ) + + self.add_output( + f"{self.config.commodity_name}_out", + copy_shape=f"{self.config.commodity_name}_in", + units=self.config.commodity_units, + desc=f"{self.config.commodity_name} output timeseries from plant after storage", + ) + + def compute(self, inputs, outputs): + """ + Pass through input to output flows. + + Args: + inputs (dict): Dictionary of input values. + - {commodity_name}_in: Input commodity flow. + outputs (dict): Dictionary of output values. + - {commodity_name}_out: Output commodity flow, equal to the input flow. + """ + + # Assign the input to the output + outputs[f"{self.config.commodity_name}_out"] = inputs[f"{self.config.commodity_name}_in"] + + def setup_partials(self): + """ + Declare partial derivatives as unity throughout the design space. + + This method specifies that the derivative of the output with respect to the input is + always 1.0, consistent with the pass-through behavior. + + Note: + This method is not currently used and isn't strictly needed if you're creating other + controllers; it is included as a nod towards potential future development enabling + more derivative information passing. + """ + + # Get the size of the input/output array + size = self._get_var_meta(f"{self.config.commodity_name}_in", "size") + + # Declare partials sparsely for all elements as an identity matrix + # (diagonal elements are 1.0, others are 0.0) + self.declare_partials( + of=f"{self.config.commodity_name}_out", + wrt=f"{self.config.commodity_name}_in", + rows=np.arange(size), + cols=np.arange(size), + val=np.ones(size), # Diagonal elements are 1.0 + ) diff --git a/h2integrate/control/control_strategies/storage/__init__.py b/h2integrate/control/control_strategies/storage/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/control/control_strategies/openloop_controllers.py b/h2integrate/control/control_strategies/storage/demand_openloop_controller.py similarity index 60% rename from h2integrate/control/control_strategies/openloop_controllers.py rename to h2integrate/control/control_strategies/storage/demand_openloop_controller.py index 2b40b1148..57c27be90 100644 --- a/h2integrate/control/control_strategies/openloop_controllers.py +++ b/h2integrate/control/control_strategies/storage/demand_openloop_controller.py @@ -3,101 +3,24 @@ import numpy as np from attrs import field, define -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import gt_zero, range_val, range_val_or_none -from h2integrate.control.control_strategies.controller_baseclass import ControllerBaseClass +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.core.validators import gte_zero, range_val, range_val_or_none +from h2integrate.control.control_strategies.demand_openloop_controller import ( + DemandOpenLoopControlBase, + DemandOpenLoopControlBaseConfig, +) @define -class PassThroughOpenLoopControllerConfig(BaseConfig): - commodity_name: str = field() - commodity_units: str = field() - - -class PassThroughOpenLoopController(ControllerBaseClass): - """ - A simple pass-through controller for open-loop systems. - - This controller directly passes the input commodity flow to the output without any - modifications. It is useful for testing, as a placeholder for more complex controllers, - and for maintaining consistency between controlled and uncontrolled frameworks as this - 'controller' does not alter the system output in any way. - """ - - def setup(self): - self.config = PassThroughOpenLoopControllerConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control") - ) - - self.add_input( - f"{self.config.commodity_name}_in", - shape_by_conn=True, - units=self.config.commodity_units, - desc=f"{self.config.commodity_name} input timeseries from production to storage", - ) - - self.add_output( - f"{self.config.commodity_name}_out", - copy_shape=f"{self.config.commodity_name}_in", - units=self.config.commodity_units, - desc=f"{self.config.commodity_name} output timeseries from plant after storage", - ) - - def compute(self, inputs, outputs): - """ - Pass through input to output flows. - - Args: - inputs (dict): Dictionary of input values. - - {commodity_name}_in: Input commodity flow. - outputs (dict): Dictionary of output values. - - {commodity_name}_out: Output commodity flow, equal to the input flow. - """ - - # Assign the input to the output - outputs[f"{self.config.commodity_name}_out"] = inputs[f"{self.config.commodity_name}_in"] - - def setup_partials(self): - """ - Declare partial derivatives as unity throughout the design space. - - This method specifies that the derivative of the output with respect to the input is - always 1.0, consistent with the pass-through behavior. - - Note: - This method is not currently used and isn't strictly needed if you're creating other - controllers; it is included as a nod towards potential future development enabling - more derivative information passing. - """ - - # Get the size of the input/output array - size = self._get_var_meta(f"{self.config.commodity_name}_in", "size") - - # Declare partials sparsely for all elements as an identity matrix - # (diagonal elements are 1.0, others are 0.0) - self.declare_partials( - of=f"{self.config.commodity_name}_out", - wrt=f"{self.config.commodity_name}_in", - rows=np.arange(size), - cols=np.arange(size), - val=np.ones(size), # Diagonal elements are 1.0 - ) - - -@define -class DemandOpenLoopControllerConfig(BaseConfig): +class DemandOpenLoopStorageControllerConfig(DemandOpenLoopControlBaseConfig): """ - Configuration class for the DemandOpenLoopController. + Configuration class for the DemandOpenLoopStorageController. - This class defines the parameters required to configure the `DemandOpenLoopController`. + This class defines the parameters required to configure the `DemandOpenLoopStorageController`. Attributes: - commodity_name (str): Name of the commodity being controlled (e.g., "hydrogen"). - commodity_units (str): Units of the commodity (e.g., "kg/h"). max_capacity (float): Maximum storage capacity of the commodity (in non-rate units, e.g., "kg" if `commodity_units` is "kg/h"). - demand_profile (scalar or list): The demand values for each time step (in the same units - as `commodity_units`) or a scalar for a constant demand. max_charge_percent (float): Maximum allowable state of charge (SOC) as a percentage of `max_capacity`, represented as a decimal between 0 and 1. min_charge_percent (float): Minimum allowable SOC as a percentage of `max_capacity`, @@ -124,14 +47,11 @@ class DemandOpenLoopControllerConfig(BaseConfig): provided. """ - commodity_name: str = field() - commodity_units: str = field() max_capacity: float = field() - demand_profile: int | float | list = field() max_charge_percent: float = field(validator=range_val(0, 1)) min_charge_percent: float = field(validator=range_val(0, 1)) init_charge_percent: float = field(validator=range_val(0, 1)) - max_charge_rate: float = field(validator=gt_zero) + max_charge_rate: float = field(validator=gte_zero) charge_equals_discharge: bool = field(default=True) max_discharge_rate: float | None = field(default=None) charge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) @@ -180,73 +100,79 @@ def __attrs_post_init__(self): self.max_discharge_rate = self.max_charge_rate -class DemandOpenLoopController(ControllerBaseClass): +class DemandOpenLoopStorageController(DemandOpenLoopControlBase): """ A controller that manages commodity flow based on demand and storage constraints. - The `DemandOpenLoopController` computes the state of charge (SOC), output flow, curtailment, - and missed load for a commodity storage system. It uses a demand profile and storage parameters - to determine how much of the commodity to charge, discharge, or curtail at each time step. + The `DemandOpenLoopStorageController` computes the state of charge (SOC), output flow, + curtailment, and missed load for a commodity storage system. It uses a demand profile + and storage parameters to determine how much of the commodity to charge, discharge, + or curtail at each time step. Note: the units of the outputs are the same as the commodity units, which is typically a rate in H2Integrate (e.g. kg/h) Attributes: - config (DemandOpenLoopControllerConfig): Configuration object containing parameters + config (DemandOpenLoopStorageControllerConfig): Configuration object containing parameters such as commodity name, units, time steps, storage capacity, charge/discharge rates, efficiencies, and demand profile. Inputs: - {commodity_name}_in (float): Input commodity flow timeseries (e.g., hydrogen production). + {commodity}_in (float): Input commodity flow timeseries (e.g., hydrogen production). - Units: Defined in `commodity_units` (e.g., "kg/h"). Outputs: - {commodity_name}_out (float): Output commodity flow timeseries after storage to meet demand. + {commodity}_out (float): Output commodity flow timeseries after storage to meet demand. - Units: Defined in `commodity_units` (e.g., "kg/h"). - Note: the may include commodity from commodity_in that was never used to charge the storage system but was directly dispatched to meet demand. - {commodity_name}_soc (float): State of charge (SOC) timeseries for the storage system. + {commodity}_soc (float): State of charge (SOC) timeseries for the storage system. - Units: "unitless" (percentage of maximum capacity given as a ratio between 0 and 1). - {commodity_name}_unused_commodity (float): Curtailment timeseries for unused + {commodity}_unused_commodity (float): Curtailment timeseries for unused input commodity. - Units: Defined in `commodity_units` (e.g., "kg/h"). - Note: curtailment in this case does not reduce what the converter produces, but rather the system just does not use it (throws it away) because this controller is specific to the storage technology and has no influence on other technologies in the system. - {commodity_name}_unmet_demand (float): Unmet demand timeseries when demand exceeds supply. + {commodity}_unmet_demand (float): Unmet demand timeseries when demand exceeds supply. Same meaning as missed load. - Units: Defined in `commodity_units` (e.g., "kg/h"). - total_{commodity_name}_unmet_demand (float): Total unmet demand over the simulation period. + total_{commodity}_unmet_demand (float): Total unmet demand over the simulation period. - Units: Defined in `commodity_units` (e.g., "kg"). """ def setup(self): - self.config = DemandOpenLoopControllerConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control") - ) + """ + Set up inputs, outputs, and configuration for the open-loop storage controller. - self.n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + This method initializes the controller configuration from the technology + configuration, establishes the number of simulation time steps, adds inputs + related to storage constraints (e.g., maximum charge rate and storage capacity), + and defines outputs such as the commodity state-of-charge (SOC) timeseries + and the estimated storage duration. - commodity_name = self.config.commodity_name + Inputs defined: + * ``max_charge_rate``: Maximum rate at which storage can charge/discharge. + * ``max_capacity``: Maximum total storage capacity. - self.add_input( - f"{commodity_name}_in", - shape_by_conn=True, - units=f"{self.config.commodity_units}", - desc=f"{commodity_name} input timeseries from production to storage", + Outputs defined: + * ``_soc``: Timeseries of storage state of charge. + * ``storage_duration``: Estimated duration (hours) the storage can + discharge at its maximum rate. + + Returns: + None + """ + self.config = DemandOpenLoopStorageControllerConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control"), + strict=False, ) + super().setup() - if isinstance(self.config.demand_profile, int | float): - self.config.demand_profile = [self.config.demand_profile] * self.n_timesteps + self.n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - self.add_input( - f"{commodity_name}_demand", - units=f"{self.config.commodity_units}", - val=self.config.demand_profile, - shape=self.n_timesteps, - desc=f"{commodity_name} demand profile timeseries", - ) + commodity = self.config.commodity_name self.add_input( "max_charge_rate", @@ -263,39 +189,10 @@ def setup(self): ) self.add_output( - f"{commodity_name}_out", - copy_shape=f"{commodity_name}_in", - units=f"{self.config.commodity_units}", - desc=f"{commodity_name} output timeseries from plant after storage including \ - stored and pass-through commodity amounts up to the demand amount", - ) - - self.add_output( - f"{commodity_name}_soc", - copy_shape=f"{commodity_name}_in", + f"{commodity}_soc", + copy_shape=f"{commodity}_in", units="unitless", - desc=f"{commodity_name} state of charge timeseries for storage", - ) - - self.add_output( - f"{commodity_name}_unused_commodity", - copy_shape=f"{commodity_name}_in", - units=self.config.commodity_units, - desc=f"{commodity_name} curtailment timeseries for inflow commodity at \ - storage point", - ) - - self.add_output( - f"{commodity_name}_unmet_demand", - copy_shape=f"{commodity_name}_in", - units=self.config.commodity_units, - desc=f"{commodity_name} missed load timeseries", - ) - - self.add_output( - f"total_{commodity_name}_unmet_demand", - units=self.config.commodity_units, - desc=f"Total {commodity_name} missed load over the simulation period", + desc=f"{commodity} state of charge timeseries for storage", ) self.add_output( @@ -306,9 +203,47 @@ def setup(self): def compute(self, inputs, outputs): """ - Compute the state of charge (SOC) and output flow based on demand and storage constraints. - + Compute storage state of charge (SOC), delivered output, curtailment, and unmet + demand over the simulation horizon. + + This method applies an open-loop storage control strategy to balance the + commodity demand and input flow. When input exceeds demand, excess commodity + is used to charge storage (subject to rate, efficiency, and SOC limits). When + demand exceeds input, storage is discharged to meet the deficit (also subject + to constraints). SOC is updated at each time step, ensuring it remains within + allowable bounds. + + Expected input keys: + * ``_in``: Timeseries of commodity available at each time step. + * ``_demand``: Timeseries demand profile. + * ``max_charge_rate``: Maximum charge rate permitted. + * ``max_capacity``: Maximum total storage capacity. + + Outputs populated: + * ``_soc``: State-of-charge timeseries (unitless). + * ``_out``: Output delivered to meet demand. + * ``_unused_commodity``: Curtailment timeseries. + * ``_unmet_demand``: Missed load timeseries. + * ``total__unmet_demand``: Aggregated unmet demand. + * ``storage_duration``: Estimated discharge duration at maximum rate (hours). + + Control logic includes: + * Enforcing SOC limits (min, max, and initial conditions). + * Applying charge and discharge efficiencies. + * Observing charge/discharge rate limits. + * Tracking energy shortfalls and excesses at each time step. + + Raises: + UserWarning: If the demand profile is entirely zero. + UserWarning: If ``max_charge_rate`` or ``max_capacity`` is negative. + + Returns: + None """ + commodity = self.config.commodity_name + if np.all(inputs[f"{commodity}_demand"] == 0.0): + msg = "Demand profile is zero, check that demand profile is input" + raise UserWarning(msg) if inputs["max_charge_rate"][0] < 0: msg = ( f"max_charge_rate cannot be less than zero and has value of " @@ -322,7 +257,6 @@ def compute(self, inputs, outputs): ) raise UserWarning(msg) - commodity_name = self.config.commodity_name max_capacity = inputs["max_capacity"] max_charge_percent = self.config.max_charge_percent min_charge_percent = self.config.min_charge_percent @@ -339,18 +273,18 @@ def compute(self, inputs, outputs): # the previous time step's value soc = deepcopy(init_charge_percent) - demand_profile = inputs[f"{commodity_name}_demand"] + demand_profile = inputs[f"{commodity}_demand"] # initialize outputs - soc_array = outputs[f"{commodity_name}_soc"] - unused_commodity_array = outputs[f"{commodity_name}_unused_commodity"] - output_array = outputs[f"{commodity_name}_out"] - unmet_demand_array = outputs[f"{commodity_name}_unmet_demand"] + soc_array = outputs[f"{commodity}_soc"] + unused_commodity_array = outputs[f"{commodity}_unused_commodity"] + output_array = outputs[f"{commodity}_out"] + unmet_demand_array = outputs[f"{commodity}_unmet_demand"] # Loop through each time step for t, demand_t in enumerate(demand_profile): # Get the input flow at the current time step - input_flow = inputs[f"{commodity_name}_in"][t] + input_flow = inputs[f"{commodity}_in"][t] # Calculate the available charge/discharge capacity available_charge = (max_charge_percent - soc) * max_capacity @@ -401,19 +335,19 @@ def compute(self, inputs, outputs): # Record the missed load at the current time step unmet_demand_array[t] = max(0, (demand_t - output_array[t])) - outputs[f"{commodity_name}_out"] = output_array + outputs[f"{commodity}_out"] = output_array # Return the SOC - outputs[f"{commodity_name}_soc"] = soc_array + outputs[f"{commodity}_soc"] = soc_array # Return the unused commodity - outputs[f"{commodity_name}_unused_commodity"] = unused_commodity_array + outputs[f"{commodity}_unused_commodity"] = unused_commodity_array # Return the unmet load demand - outputs[f"{commodity_name}_unmet_demand"] = unmet_demand_array + outputs[f"{commodity}_unmet_demand"] = unmet_demand_array # Calculate and return the total unmet demand over the simulation period - outputs[f"total_{commodity_name}_unmet_demand"] = np.sum(unmet_demand_array) + outputs[f"total_{commodity}_unmet_demand"] = np.sum(unmet_demand_array) # Output the storage duration in hours outputs["storage_duration"] = max_capacity / max_discharge_rate diff --git a/tests/h2integrate/test_controllers/inputs/tech_config.yaml b/h2integrate/control/test/inputs/tech_config.yaml similarity index 100% rename from tests/h2integrate/test_controllers/inputs/tech_config.yaml rename to h2integrate/control/test/inputs/tech_config.yaml diff --git a/h2integrate/control/test/test_openloop_controllers.py b/h2integrate/control/test/test_openloop_controllers.py new file mode 100644 index 000000000..8c06259e1 --- /dev/null +++ b/h2integrate/control/test/test_openloop_controllers.py @@ -0,0 +1,597 @@ +from copy import deepcopy +from pathlib import Path + +import yaml +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture +from openmdao.utils.assert_utils import assert_check_totals + +from h2integrate.control.control_strategies.passthrough_openloop_controller import ( + PassThroughOpenLoopController, +) +from h2integrate.control.control_strategies.storage.demand_openloop_controller import ( + DemandOpenLoopStorageController, +) +from h2integrate.control.control_strategies.converters.demand_openloop_controller import ( + DemandOpenLoopConverterController, +) +from h2integrate.control.control_strategies.converters.flexible_demand_openloop_controller import ( + FlexibleDemandOpenLoopConverterController, +) + + +@fixture +def variable_h2_production_profile(): + end_use_rated_demand = 10.0 # kg/h + ramp_up_rate_kg = 4.0 + ramp_down_rate_kg = 2.0 + slow_ramp_up = np.arange(0, end_use_rated_demand * 1.1, 0.5) + slow_ramp_down = np.arange(end_use_rated_demand * 1.1, -0.5, -0.5) + fast_ramp_up = np.arange(0, end_use_rated_demand, ramp_up_rate_kg * 1.2) + fast_ramp_down = np.arange(end_use_rated_demand, 0.0, ramp_down_rate_kg * 1.1) + variable_profile = np.concat( + [slow_ramp_up, fast_ramp_down, slow_ramp_up, slow_ramp_down, fast_ramp_up] + ) + variable_h2_profile = np.tile(variable_profile, 2) + return variable_h2_profile + + +def test_pass_through_controller(subtests): + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + with tech_config_path.open() as file: + tech_config = yaml.safe_load(file) + + # Set up the OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), + promotes=["*"], + ) + + prob.model.add_subsystem( + "pass_through_controller", + PassThroughOpenLoopController( + plant_config={}, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + # Run the test + with subtests.test("Check output"): + assert pytest.approx(prob.get_val("hydrogen_out"), rel=1e-3) == np.arange(10) + + # Run the test + with subtests.test("Check derivatives"): + # check total derivatives using OpenMDAO's check_totals and assert tools + assert_check_totals( + prob.check_totals( + of=[ + "hydrogen_out", + ], + wrt=[ + "hydrogen_in", + ], + step=1e-6, + form="central", + show_only_incorrect=False, + out_stream=None, + ) + ) + + +def test_storage_demand_controller(subtests): + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + with tech_config_path.open() as file: + tech_config = yaml.safe_load(file) + + plant_config = {"plant": {"simulation": {"n_timesteps": 10}}} + + tech_config["technologies"]["h2_storage"]["control_strategy"]["model"] = ( + "demand_open_loop_storage_controller" + ) + + tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { + "max_capacity": 10.0, # kg + "max_charge_percent": 1.0, # percent as decimal + "min_charge_percent": 0.0, # percent as decimal + "init_charge_percent": 1.0, # percent as decimal + "max_charge_rate": 1.0, # kg/time step + "max_discharge_rate": 0.5, # kg/time step + "charge_equals_discharge": False, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand + } + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} + + # Set up the OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_open_loop_storage_controller", + DemandOpenLoopStorageController( + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + # Run the test + with subtests.test("Check output"): + assert pytest.approx([0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( + "hydrogen_out" + ) + + with subtests.test("Check curtailment"): + assert pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) == prob.get_val( + "hydrogen_unused_commodity" + ) + + with subtests.test("Check soc"): + assert pytest.approx([0.95, 0.95, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( + "hydrogen_soc" + ) + + with subtests.test("Check missed load"): + assert pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( + "hydrogen_unmet_demand" + ) + + +def test_storage_demand_controller_round_trip_efficiency(subtests): + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + with tech_config_path.open() as file: + tech_config = yaml.safe_load(file) + + plant_config = {"plant": {"simulation": {"n_timesteps": 10}}} + + tech_config["technologies"]["h2_storage"]["control_strategy"]["model"] = ( + "demand_open_loop_storage_controller" + ) + tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { + "max_capacity": 10.0, # kg + "max_charge_percent": 1.0, # percent as decimal + "min_charge_percent": 0.0, # percent as decimal + "init_charge_percent": 1.0, # percent as decimal + "max_charge_rate": 1.0, # kg/time step + "max_discharge_rate": 0.5, # kg/time step + "charge_equals_discharge": False, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand + } + + tech_config_rte = deepcopy(tech_config) + tech_config_rte["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { + "max_capacity": 10.0, # kg + "max_charge_percent": 1.0, # percent as decimal + "min_charge_percent": 0.0, # percent as decimal + "init_charge_percent": 1.0, # percent as decimal + "max_charge_rate": 1.0, # kg/time step + "max_discharge_rate": 0.5, # kg/time step + "charge_equals_discharge": False, + "round_trip_efficiency": 1.0, + "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand + } + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} + + def set_up_and_run_problem(config): + # Set up the OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_openloop_controller", + DemandOpenLoopStorageController( + plant_config=plant_config, tech_config=config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + return prob + + prob_ioe = set_up_and_run_problem(tech_config) + prob_rte = set_up_and_run_problem(tech_config_rte) + + # Run the test + with subtests.test("Check output"): + assert pytest.approx(prob_ioe.get_val("hydrogen_out")) == prob_rte.get_val("hydrogen_out") + + with subtests.test("Check curtailment"): + assert pytest.approx(prob_ioe.get_val("hydrogen_unused_commodity")) == prob_rte.get_val( + "hydrogen_unused_commodity" + ) + + with subtests.test("Check soc"): + assert pytest.approx(prob_ioe.get_val("hydrogen_soc")) == prob_rte.get_val("hydrogen_soc") + + with subtests.test("Check missed load"): + assert pytest.approx(prob_ioe.get_val("hydrogen_unmet_demand")) == prob_rte.get_val( + "hydrogen_unmet_demand" + ) + + +def test_generic_storage_demand_controller(subtests): + # Test is the same as the demand controller test test_demand_controller for the "h2_storage" + # performance model but with the "simple_generic_storage" performance model + + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + with tech_config_path.open() as file: + tech_config = yaml.safe_load(file) + + tech_config["technologies"]["h2_storage"] = { + "performance_model": { + "model": "simple_generic_storage", + }, + "control_strategy": { + "model": "demand_open_loop_storage_controller", + }, + "model_inputs": { + "shared_parameters": { + "commodity_name": "hydrogen", + "commodity_units": "kg", + "max_capacity": 10.0, # kg + "max_charge_rate": 1.0, # percent as decimal + }, + "control_parameters": { + "max_charge_percent": 1.0, # percent as decimal + "min_charge_percent": 0.0, # percent as decimal + "init_charge_percent": 1.0, # percent as decimal + "max_discharge_rate": 0.5, # kg/time step + "charge_efficiency": 1.0, + "charge_equals_discharge": False, + "discharge_efficiency": 1.0, + "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand + }, + }, + } + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} + + # Set up OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_open_loop_storage_controller", + DemandOpenLoopStorageController( + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + # # Run the test + with subtests.test("Check output"): + assert pytest.approx([0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( + "hydrogen_out" + ) + + with subtests.test("Check curtailment"): + assert pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) == prob.get_val( + "hydrogen_unused_commodity" + ) + + with subtests.test("Check soc"): + assert pytest.approx([0.95, 0.95, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( + "hydrogen_soc" + ) + + with subtests.test("Check missed load"): + assert pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( + "hydrogen_unmet_demand" + ) + + +def test_demand_converter_controller(subtests): + # Test is the same as the demand controller test test_demand_controller for the "h2_storage" + # performance model but with the "simple_generic_storage" performance model + + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + with tech_config_path.open() as file: + tech_config = yaml.safe_load(file) + + tech_config["technologies"]["load"] = { + "control_strategy": { + "model": "demand_open_loop_converter_controller", + }, + "model_inputs": { + "control_parameters": { + "commodity_name": "hydrogen", + "commodity_units": "kg", + "demand_profile": [5.0] * 10, # Example: 10 time steps with 5 kg/time step demand + }, + }, + } + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} + + # Set up OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_open_loop_storage_controller", + DemandOpenLoopConverterController( + plant_config=plant_config, tech_config=tech_config["technologies"]["load"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + # # Run the test + with subtests.test("Check output"): + assert pytest.approx([0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 5.0, 5.0, 5.0, 5.0]) == prob.get_val( + "hydrogen_out" + ) + + with subtests.test("Check curtailment"): + assert pytest.approx([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0, 4.0]) == prob.get_val( + "hydrogen_unused_commodity" + ) + + with subtests.test("Check missed load"): + assert pytest.approx([5.0, 4.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( + "hydrogen_unmet_demand" + ) + + +### Add test for flexible load demand controller here + + +def test_flexible_demand_converter_controller(subtests, variable_h2_production_profile): + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + with tech_config_path.open() as file: + tech_config = yaml.safe_load(file) + + end_use_rated_demand = 10.0 # kg/h + ramp_up_rate_kg = 4.0 + ramp_down_rate_kg = 2.0 + min_demand_kg = 2.5 + tech_config["technologies"]["load"] = { + "control_strategy": { + "model": "flexible_demand_open_loop_converter_controller", + }, + "model_inputs": { + "control_parameters": { + "commodity_name": "hydrogen", + "commodity_units": "kg", + "rated_demand": end_use_rated_demand, + "demand_profile": end_use_rated_demand, # flat demand profile + "turndown_ratio": min_demand_kg / end_use_rated_demand, + "ramp_down_rate_fraction": ramp_down_rate_kg / end_use_rated_demand, + "ramp_up_rate_fraction": ramp_up_rate_kg / end_use_rated_demand, + "min_utilization": 0.1, + }, + }, + } + + plant_config = { + "plant": { + "plant_life": 30, + "simulation": {"n_timesteps": len(variable_h2_production_profile)}, + } + } + + # Set up OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=variable_h2_production_profile), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_open_loop_storage_controller", + FlexibleDemandOpenLoopConverterController( + plant_config=plant_config, tech_config=tech_config["technologies"]["load"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + flexible_total_demand = prob.get_val("hydrogen_flexible_demand_profile") + + rated_production = end_use_rated_demand * len(variable_h2_production_profile) + + with subtests.test("Check that total demand profile is less than rated"): + assert np.all(flexible_total_demand <= end_use_rated_demand) + + with subtests.test("Check curtailment"): # failed + assert pytest.approx(np.sum(prob.get_val("hydrogen_unused_commodity")), rel=1e-3) == 6.6 + + # check ramping constraints and turndown constraints are met + with subtests.test("Check turndown ratio constraint"): + assert np.all(flexible_total_demand >= min_demand_kg) + + ramping_down = np.where( + np.diff(flexible_total_demand) < 0, -1 * np.diff(flexible_total_demand), 0 + ) + ramping_up = np.where(np.diff(flexible_total_demand) > 0, np.diff(flexible_total_demand), 0) + + with subtests.test("Check ramping down constraint"): + assert pytest.approx(np.max(ramping_down), rel=1e-6) == ramp_down_rate_kg + + with subtests.test("Check ramping up constraint"): # failed + assert pytest.approx(np.max(ramping_up), rel=1e-6) == ramp_up_rate_kg + + with subtests.test("Check min utilization constraint"): + assert np.sum(flexible_total_demand) / rated_production >= 0.1 + + with subtests.test("Check min utilization value"): + flexible_demand_utilization = np.sum(flexible_total_demand) / rated_production + assert pytest.approx(flexible_demand_utilization, rel=1e-6) == 0.5822142857142857 + + # flexible_demand_profile[i] >= commodity_in[i] (as long as you are not curtailing + # any commodity in) + with subtests.test("Check that flexible demand is greater than hydrogen_in"): + hydrogen_available = variable_h2_production_profile - prob.get_val( + "hydrogen_unused_commodity" + ) + assert np.all(flexible_total_demand >= hydrogen_available) + + with subtests.test("Check that remaining demand was calculated properly"): + unmet_demand = flexible_total_demand - hydrogen_available + assert np.all(unmet_demand == prob.get_val("hydrogen_unmet_demand")) + + +def test_flexible_demand_converter_controller_min_utilization( + subtests, variable_h2_production_profile +): + # give it a min utilization larger than utilization resulting from above test + + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + with tech_config_path.open() as file: + tech_config = yaml.safe_load(file) + + end_use_rated_demand = 10.0 # kg/h + ramp_up_rate_kg = 4.0 + ramp_down_rate_kg = 2.0 + min_demand_kg = 2.5 + tech_config["technologies"]["load"] = { + "control_strategy": { + "model": "flexible_demand_open_loop_converter_controller", + }, + "model_inputs": { + "control_parameters": { + "commodity_name": "hydrogen", + "commodity_units": "kg", + "rated_demand": end_use_rated_demand, + "demand_profile": end_use_rated_demand, # flat demand profile + "turndown_ratio": min_demand_kg / end_use_rated_demand, + "ramp_down_rate_fraction": ramp_down_rate_kg / end_use_rated_demand, + "ramp_up_rate_fraction": ramp_up_rate_kg / end_use_rated_demand, + "min_utilization": 0.8, + }, + }, + } + + plant_config = { + "plant": { + "plant_life": 30, + "simulation": {"n_timesteps": len(variable_h2_production_profile)}, + } + } + + # Set up OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=variable_h2_production_profile), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_open_loop_storage_controller", + FlexibleDemandOpenLoopConverterController( + plant_config=plant_config, tech_config=tech_config["technologies"]["load"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + flexible_total_demand = prob.get_val("hydrogen_flexible_demand_profile") + + rated_production = end_use_rated_demand * len(variable_h2_production_profile) + + flexible_demand_utilization = np.sum(flexible_total_demand) / rated_production + + with subtests.test("Check min utilization constraint"): + assert flexible_demand_utilization >= 0.8 + + with subtests.test("Check min utilization value"): + assert pytest.approx(flexible_demand_utilization, rel=1e-6) == 0.8010612244 diff --git a/tests/h2integrate/test_controllers/test_pyomo_controllers.py b/h2integrate/control/test/test_pyomo_controllers.py similarity index 100% rename from tests/h2integrate/test_controllers/test_pyomo_controllers.py rename to h2integrate/control/test/test_pyomo_controllers.py diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index f678a20ac..5743ce5dc 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -443,8 +443,6 @@ def create_technology_models(self): else: plural_model_type_name = model_type + "s" getattr(self, plural_model_type_name).append(om_model_object) - elif model_type == "performance_model": - raise KeyError("Model definition requires 'performance_model'.") # Process the finance models if "finance_model" in individual_tech_config: diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index 264ce03f6..a73c55981 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -95,10 +95,6 @@ from h2integrate.converters.hydrogen.eco_tools_pem_electrolyzer import ( ECOElectrolyzerPerformanceModel, ) -from h2integrate.control.control_strategies.openloop_controllers import ( - DemandOpenLoopController, - PassThroughOpenLoopController, -) from h2integrate.converters.water_power.hydro_plant_run_of_river import ( RunOfRiverHydroCostModel, RunOfRiverHydroPerformanceModel, @@ -128,10 +124,22 @@ from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( PyomoRuleStorageBaseclass, ) +from h2integrate.control.control_strategies.passthrough_openloop_controller import ( + PassThroughOpenLoopController, +) from h2integrate.resource.solar.nrel_developer_meteosat_prime_meridian_models import ( MeteosatPrimeMeridianSolarAPI, MeteosatPrimeMeridianTMYSolarAPI, ) +from h2integrate.control.control_strategies.storage.demand_openloop_controller import ( + DemandOpenLoopStorageController, +) +from h2integrate.control.control_strategies.converters.demand_openloop_controller import ( + DemandOpenLoopConverterController, +) +from h2integrate.control.control_strategies.converters.flexible_demand_openloop_controller import ( + FlexibleDemandOpenLoopConverterController, +) supported_models = { @@ -220,8 +228,10 @@ "simple_generic_storage": SimpleGenericStorage, # Control "pass_through_controller": PassThroughOpenLoopController, - "demand_open_loop_controller": DemandOpenLoopController, + "demand_open_loop_storage_controller": DemandOpenLoopStorageController, "heuristic_load_following_controller": HeuristicLoadFollowingController, + "demand_open_loop_converter_controller": DemandOpenLoopConverterController, + "flexible_demand_open_loop_converter_controller": FlexibleDemandOpenLoopConverterController, # Dispatch "pyomo_dispatch_generic_converter": PyomoDispatchGenericConverter, "pyomo_dispatch_generic_storage": PyomoRuleStorageBaseclass, diff --git a/h2integrate/storage/battery/test/test_battery_cost.py b/h2integrate/storage/battery/test/test_battery_cost.py index c829bd709..2fdd8fa84 100644 --- a/h2integrate/storage/battery/test/test_battery_cost.py +++ b/h2integrate/storage/battery/test/test_battery_cost.py @@ -3,7 +3,9 @@ from pytest import fixture from h2integrate.storage.battery.atb_battery_cost import ATBBatteryCostModel -from h2integrate.control.control_strategies.openloop_controllers import DemandOpenLoopController +from h2integrate.control.control_strategies.storage.demand_openloop_controller import ( + DemandOpenLoopStorageController, +) @fixture @@ -29,7 +31,7 @@ def battery_tech_config_kW(): battery_inputs = { "performance_model": {"model": "simple_generic_storage"}, "cost_model": {"model": "atb_battery_cost"}, - "control_strategy": {"model": "demand_open_loop_controller"}, + "control_strategy": {"model": "demand_open_loop_storage_controller"}, "model_inputs": { "shared_parameters": { "commodity_name": "electricity", @@ -62,7 +64,7 @@ def battery_tech_config_MW(): battery_inputs = { "performance_model": {"model": "simple_generic_storage"}, "cost_model": {"model": "atb_battery_cost"}, - "control_strategy": {"model": "demand_open_loop_controller"}, + "control_strategy": {"model": "demand_open_loop_storage_controller"}, "model_inputs": { "shared_parameters": { "commodity_name": "electricity", @@ -102,7 +104,7 @@ def test_integrated_battery_cost_kW( promotes=["*"], ) - controller = DemandOpenLoopController( + controller = DemandOpenLoopStorageController( plant_config=plant_config, tech_config=battery_tech_config_kW ) @@ -142,7 +144,7 @@ def test_integrated_battery_cost_MW( electricity_profile_MW = electricity_profile_kW / 1e3 - controller = DemandOpenLoopController( + controller = DemandOpenLoopStorageController( plant_config=plant_config, tech_config=battery_tech_config_MW ) diff --git a/tests/h2integrate/test_controllers/test_open_loop_controllers.py b/tests/h2integrate/test_controllers/test_open_loop_controllers.py deleted file mode 100644 index 6b96c6e23..000000000 --- a/tests/h2integrate/test_controllers/test_open_loop_controllers.py +++ /dev/null @@ -1,318 +0,0 @@ -from copy import deepcopy -from pathlib import Path - -import yaml -import numpy as np -import pytest -import openmdao.api as om -from openmdao.utils.assert_utils import assert_check_totals - -from h2integrate.control.control_strategies.openloop_controllers import ( - DemandOpenLoopController, - PassThroughOpenLoopController, -) - - -def test_pass_through_controller(subtests): - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - # Set up the OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), - promotes=["*"], - ) - - prob.model.add_subsystem( - "pass_through_controller", - PassThroughOpenLoopController( - plant_config={}, tech_config=tech_config["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - # Run the test - with subtests.test("Check output"): - assert pytest.approx(prob.get_val("hydrogen_out"), rel=1e-3) == np.arange(10) - - # Run the test - with subtests.test("Check derivatives"): - # check total derivatives using OpenMDAO's check_totals and assert tools - assert_check_totals( - prob.check_totals( - of=[ - "hydrogen_out", - ], - wrt=[ - "hydrogen_in", - ], - step=1e-6, - form="central", - show_only_incorrect=False, - out_stream=None, - ) - ) - - -def test_demand_controller(subtests): - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - plant_config = {"plant": {"simulation": {"n_timesteps": 10}}} - - tech_config["technologies"]["h2_storage"]["control_strategy"]["model"] = ( - "demand_openloop_controller" - ) - - tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "max_capacity": 10.0, # kg - "max_charge_percent": 1.0, # percent as decimal - "min_charge_percent": 0.0, # percent as decimal - "init_charge_percent": 1.0, # percent as decimal - "max_charge_rate": 1.0, # kg/time step - "max_discharge_rate": 0.5, # kg/time step - "charge_equals_discharge": False, - "charge_efficiency": 1.0, - "discharge_efficiency": 1.0, - "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - } - - plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} - - # Set up the OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), - promotes=["*"], - ) - - prob.model.add_subsystem( - "demand_openloop_controller", - DemandOpenLoopController( - plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - # Run the test - with subtests.test("Check output"): - assert pytest.approx([0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( - "hydrogen_out" - ) - - with subtests.test("Check curtailment"): - assert pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) == prob.get_val( - "hydrogen_unused_commodity" - ) - - with subtests.test("Check soc"): - assert pytest.approx([0.95, 0.95, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( - "hydrogen_soc" - ) - - with subtests.test("Check missed load"): - assert pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( - "hydrogen_unmet_demand" - ) - - -def test_demand_controller_round_trip_efficiency(subtests): - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - plant_config = {"plant": {"simulation": {"n_timesteps": 10}}} - - tech_config["technologies"]["h2_storage"]["control_strategy"]["model"] = ( - "demand_openloop_controller" - ) - tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "max_capacity": 10.0, # kg - "max_charge_percent": 1.0, # percent as decimal - "min_charge_percent": 0.0, # percent as decimal - "init_charge_percent": 1.0, # percent as decimal - "max_charge_rate": 1.0, # kg/time step - "max_discharge_rate": 0.5, # kg/time step - "charge_equals_discharge": False, - "charge_efficiency": 1.0, - "discharge_efficiency": 1.0, - "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - } - - tech_config_rte = deepcopy(tech_config) - tech_config_rte["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "max_capacity": 10.0, # kg - "max_charge_percent": 1.0, # percent as decimal - "min_charge_percent": 0.0, # percent as decimal - "init_charge_percent": 1.0, # percent as decimal - "max_charge_rate": 1.0, # kg/time step - "max_discharge_rate": 0.5, # kg/time step - "charge_equals_discharge": False, - "round_trip_efficiency": 1.0, - "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - } - - plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} - - def set_up_and_run_problem(config): - # Set up the OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), - promotes=["*"], - ) - - prob.model.add_subsystem( - "demand_openloop_controller", - DemandOpenLoopController( - plant_config=plant_config, tech_config=config["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - return prob - - prob_ioe = set_up_and_run_problem(tech_config) - prob_rte = set_up_and_run_problem(tech_config_rte) - - # Run the test - with subtests.test("Check output"): - assert pytest.approx(prob_ioe.get_val("hydrogen_out")) == prob_rte.get_val("hydrogen_out") - - with subtests.test("Check curtailment"): - assert pytest.approx(prob_ioe.get_val("hydrogen_unused_commodity")) == prob_rte.get_val( - "hydrogen_unused_commodity" - ) - - with subtests.test("Check soc"): - assert pytest.approx(prob_ioe.get_val("hydrogen_soc")) == prob_rte.get_val("hydrogen_soc") - - with subtests.test("Check missed load"): - assert pytest.approx(prob_ioe.get_val("hydrogen_unmet_demand")) == prob_rte.get_val( - "hydrogen_unmet_demand" - ) - - -def test_generic_demand_controller(subtests): - # Test is the same as the demand controller test test_demand_controller for the "h2_storage" - # performance model but with the "simple_generic_storage" performance model - - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - tech_config["technologies"]["h2_storage"] = { - "performance_model": { - "model": "simple_generic_storage", - }, - "control_strategy": { - "model": "demand_openloop_controller", - }, - "model_inputs": { - "shared_parameters": { - "commodity_name": "hydrogen", - "commodity_units": "kg", - "max_capacity": 10.0, # kg - "max_charge_rate": 1.0, # percent as decimal - }, - "control_parameters": { - "max_charge_percent": 1.0, # percent as decimal - "min_charge_percent": 0.0, # percent as decimal - "init_charge_percent": 1.0, # percent as decimal - "max_discharge_rate": 0.5, # kg/time step - "charge_efficiency": 1.0, - "charge_equals_discharge": False, - "discharge_efficiency": 1.0, - "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - }, - }, - } - - plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} - - # Set up OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), - promotes=["*"], - ) - - prob.model.add_subsystem( - "demand_openloop_controller", - DemandOpenLoopController( - plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - # # Run the test - with subtests.test("Check output"): - assert pytest.approx([0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( - "hydrogen_out" - ) - - with subtests.test("Check curtailment"): - assert pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) == prob.get_val( - "hydrogen_unused_commodity" - ) - - with subtests.test("Check soc"): - assert pytest.approx([0.95, 0.95, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( - "hydrogen_soc" - ) - - with subtests.test("Check missed load"): - assert pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( - "hydrogen_unmet_demand" - ) From cee386131b31f5b7bc548aedfeca11320ecb1799 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Thu, 4 Dec 2025 12:06:35 -0600 Subject: [PATCH 67/79] Grid Components (#340) * grid models * Added grid as feedstock * update examples * add grid buying converter * clarify units with parentheses * Adding singular grid component * Cleaning up grid files * Removed unnecessary tests * add grid to elec producing techs list * Updated tests due to changes from develop * added coproduct test and bugfix in profast base * Minor updates based on PR feedback * Iterations based on PR feedback * Updated names in test * docs wip * Updated example path * Added readme for example 23 * docs * fix tests * Updates to grid doc * Updated grid example * Updating grid example number * Grid updates based on PR feedback --------- Co-authored-by: John Jasa Co-authored-by: Jared Thomas Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> --- CHANGELOG.md | 1 + docs/_toc.yml | 1 + docs/technology_models/grid.md | 69 +++ docs/technology_models/technology_overview.md | 5 + docs/user_guide/design_optimization_in_h2i.md | 2 +- docs/user_guide/postprocessing_results.md | 2 +- docs/user_guide/recording_and_loading_data.md | 2 +- .../hydrogen_dispatch.ipynb | 4 +- examples/24_solar_battery_grid/README.md | 91 ++++ .../24_solar_battery_grid/driver_config.yaml | 5 + .../24_solar_battery_grid/plant_config.yaml | 73 +++ .../run_solar_battery_grid.py | 11 + .../solar_battery_grid.yaml | 7 + .../24_solar_battery_grid/tech_config.yaml | 86 ++++ h2integrate/converters/grid/__init__.py | 0 h2integrate/converters/grid/grid.py | 277 +++++++++++ h2integrate/converters/grid/test/test_grid.py | 462 ++++++++++++++++++ h2integrate/core/supported_models.py | 15 +- h2integrate/finances/profast_base.py | 3 +- .../finances/test/test_profast_finance.py | 67 +++ tests/h2integrate/test_all_examples.py | 39 ++ 21 files changed, 1214 insertions(+), 8 deletions(-) create mode 100644 docs/technology_models/grid.md create mode 100644 examples/24_solar_battery_grid/README.md create mode 100644 examples/24_solar_battery_grid/driver_config.yaml create mode 100644 examples/24_solar_battery_grid/plant_config.yaml create mode 100644 examples/24_solar_battery_grid/run_solar_battery_grid.py create mode 100644 examples/24_solar_battery_grid/solar_battery_grid.yaml create mode 100644 examples/24_solar_battery_grid/tech_config.yaml create mode 100644 h2integrate/converters/grid/__init__.py create mode 100644 h2integrate/converters/grid/grid.py create mode 100644 h2integrate/converters/grid/test/test_grid.py diff --git a/CHANGELOG.md b/CHANGELOG.md index d0ae7ede0..c4f2eef77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ - Added standalone iron mine performance and cost model - Added solar resource models for Meteosat Prime Meridian and Himawari datasets available through NSRDB - Improved readability of the postprocessing printout by simplifying numerical representation, especially for years +- Added grid converter performance and cost model which can be used to buy, sell, or buy and sell electricity to/from the grid - Add open-loop load demand controllers: `DemandOpenLoopConverterController` and `FlexibleDemandOpenLoopConverterController` ## 0.4.0 [October 1, 2025] diff --git a/docs/_toc.yml b/docs/_toc.yml index 71cff2ed8..dd82b3598 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -38,6 +38,7 @@ parts: - file: technology_models/ammonia.md - file: technology_models/pysam_battery.md - file: technology_models/geologic_hydrogen.md + - file: technology_models/grid - caption: Resource Models chapters: diff --git a/docs/technology_models/grid.md b/docs/technology_models/grid.md new file mode 100644 index 000000000..a8167a95a --- /dev/null +++ b/docs/technology_models/grid.md @@ -0,0 +1,69 @@ +# Grid Performance and Cost Models + +This page documents the unified `grid_performance` and `grid_cost` models, which together represent a flexible, configurable grid interconnection point within an H2I simulation. +These components support both power flows and cost accounting for buying and selling electricity through a constrained interconnection. +This is a single model that can be configured to either sell electricity to the grid, buy electricity from the grid, or both. + +See `example/24_solar_battery_grid` to see how to set up both buying and selling grid components. + +## Grid Performance +`grid_performance` represents a grid interconnection point that can buy or sell electricity subject to a maximum throughput rating (interconnection_size). + +It supports: +- Buying electricity from the grid to meet downstream demand. +- Selling electricity to the grid. +- Enforcing maximum allowed interconnection power. +- Computing unmet demand and unsold electricity due to constraints. + +```{note} +Multiple grid instances may be used within the same plant to represent different interconnection nodes. In the `tech_config` the component **must** be called `grid_buy` for the logic to work appropriately in financial calculations. +``` + +**Inputs** +| Name | Shape | Units | Description | +| ------------------------ | ------------------ | ----- | ----------------------------------------------------------------- | +| `interconnection_size` | scalar | kW | Maximum power capacity for grid connection. | +| `electricity_in` | array[n_timesteps] | kW | Electricity flowing into the grid (selling to grid). | +| `electricity_demand` | array[n_timesteps] | kW | Electricity demand from downstream technologies. | + +**Outputs** +| Name | Shape | Units | Description | +| -------------------------- | ------------------ | ----- | ------------------------------------------------------------------- | +| `electricity_out` | array[n_timesteps] | kW | Electricity flowing *out of* the grid (buying). | +| `electricity_sold` | array[n_timesteps] | kW | Electricity successfully sold to the grid. | +| `electricity_unmet_demand` | array[n_timesteps] | kW | Downstream technology demand not met due to interconnection limits. | +| `electricity_excess` | array[n_timesteps] | kW | Electricity that could not be sold due to limits. | + +## Grid Cost +`grid_cost` computes all costs and revenues associated with the grid interconnection, including: +- Capital cost based on interconnection rating. +- Fixed annual O&M. +- Variable cost of electricity purchased. +- Revenue from electricity sold. + +**Inputs** +| Name | Shape | Units | Description | +| ------------------------------- | ---------------------------- | --------- | ---------------------------------------------------------------------- | +| `interconnection_size` | scalar | kW | Interconnection capacity for cost calculation. | +| `interconnection_capex_per_kw` | scalar | $/kW | Capital cost per kW of interconnection. | +| `interconnection_opex_per_kw` | scalar | $/kW/year | Annual O&M cost per kW of interconnection. | +| `fixed_interconnection_cost` | scalar | $ | One-time fixed cost regardless of size. | +| `electricity_out` | array[n_timesteps] | kW | Electricity flowing out of grid (buying from grid). | +| `electricity_buy_price` | scalar/array[n_timesteps] | $/kWh | Price to buy electricity from grid (optional, time-varying supported). | +| `electricity_sold` | array[n_timesteps] | kW | Electricity flowing into grid (selling to grid). | +| `electricity_sell_price` | scalar/array[n_timesteps] | $/kWh | Price to sell electricity to grid (optional, time-varying supported). | + +**Outputs** +| Name | Description | +| --------- | --------------------------------------------------------------------------------------------------------------- | +| `CapEx` | Total capital expenditure. | +| `OpEx` | Annual O&M cost. | +| `VarOpEx` | Variable operating expenses (buying), revenues (selling), or net of expenses and revenues (buying and selling). | + +The **costs** of purchasing electricity from the grid are represented as a variable operating expense (`VarOpEx`) and are represented as a positive value. This allows it to be tracked as an expense in the financial models. + +The **revenue** of selling electricity to the grid is represented as a variable operating expense (`VarOpEx`) and a represented as a negative value. This is allows it to be tracked as a coproduct in the financial models. + +```{note} +If you're using a price-maker financial model (e.g., calculating the LCOE) and selling all of the electricity to the grid, then the `electricity_sell_price` should most likely be set to 0. since you want to know the breakeven price of selling that electricity. +``` diff --git a/docs/technology_models/technology_overview.md b/docs/technology_models/technology_overview.md index 6b7faf9ef..39d3b19a0 100644 --- a/docs/technology_models/technology_overview.md +++ b/docs/technology_models/technology_overview.md @@ -207,6 +207,11 @@ Below summarizes the available performance, cost, and financial models for each + `'natural_gas_performance'` - cost_models: + `'natural_gas_cost'` +- `grid`: electricity grid connection + - performance models: + + `'grid_performance'` + - cost models: + + `'grid_cost'` (transport-models)= ## Transport Models diff --git a/docs/user_guide/design_optimization_in_h2i.md b/docs/user_guide/design_optimization_in_h2i.md index 624105e18..9fd96168b 100644 --- a/docs/user_guide/design_optimization_in_h2i.md +++ b/docs/user_guide/design_optimization_in_h2i.md @@ -135,7 +135,7 @@ varname val units prom_name ------------------------------------ ------------------- --------- ------------------------------------------------------------- <...cut for brevity...> ProFastComp_0 - LCOE [0.09009908] USD/kW/h finance_subgroup_default.LCOE + LCOE [0.09009908] USD/(kW*h) finance_subgroup_default.LCOE ProFastComp_1 LCOH [4.63528661] USD/kg finance_subgroup_default.LCOH ``` diff --git a/docs/user_guide/postprocessing_results.md b/docs/user_guide/postprocessing_results.md index a56250a55..4df3ef15b 100644 --- a/docs/user_guide/postprocessing_results.md +++ b/docs/user_guide/postprocessing_results.md @@ -43,7 +43,7 @@ plant ProFastComp_0 LCOH [7.47944016] USD/kg finance_subgroup_default.LCOH ProFastComp_1 - LCOE [0.09795931] USD/kW/h finance_subgroup_default.LCOE + LCOE [0.09795931] USD/(kW*h) finance_subgroup_default.LCOE steel steel_performance steel |9615.91147134| t/year steel.steel diff --git a/docs/user_guide/recording_and_loading_data.md b/docs/user_guide/recording_and_loading_data.md index 1c0b3e78e..a7a51993c 100644 --- a/docs/user_guide/recording_and_loading_data.md +++ b/docs/user_guide/recording_and_loading_data.md @@ -123,6 +123,6 @@ cases = list(cr.get_cases()) # input or output from the models that were run and not specified # as variables to exclude in the driver_config file -cases[0].get_val("finance_subgroup_default.LCOE",units="USD/kW/h") +cases[0].get_val("finance_subgroup_default.LCOE",units="USD/(kW*h)") cases[0].get_val("solar.capacity_kWdc",units="MW") ``` diff --git a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb index 80f6435b6..dab8bbd9e 100644 --- a/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb +++ b/examples/14_wind_hydrogen_dispatch/hydrogen_dispatch.ipynb @@ -222,13 +222,13 @@ " total_opex_adjusted [57176440.90523757] USD/year finance_subgroup_elec.total_opex_adjusted 57176440.90523757 \n", " total_varopex_adjusted |0.0| USD/year finance_subgroup_elec.total_varopex_adjusted 0.0 \n", " electricity_finance_default\n", - " LCOE [0.09929732] USD/kW/h finance_subgroup_elec.LCOE 0.09929732 \n", + " LCOE [0.09929732] USD/(kW*h) finance_subgroup_elec.LCOE 0.09929732 \n", " wacc_electricity [0.06250448] percent finance_subgroup_elec.wacc_electricity 0.06250448 \n", " crf_electricity [0.07227903] percent finance_subgroup_elec.crf_electricity 0.07227903 \n", " irr_electricity [0.09] percent finance_subgroup_elec.irr_electricity 0.09 \n", " profit_index_electricity [1.80745841] unitless finance_subgroup_elec.profit_index_electricity 1.80745841 \n", " investor_payback_period_electricity [9.] year finance_subgroup_elec.investor_payback_period_electricity 9.0 \n", - " price_electricity [0.09929732] USD/kW/h finance_subgroup_elec.price_electricity 0.09929732 \n", + " price_electricity [0.09929732] USD/(kW*h) finance_subgroup_elec.price_electricity 0.09929732 \n", " electrolyzer_to_h2_storage_pipe\n", " hydrogen_out |221.02084143| kg/s electrolyzer_to_h2_storage_pipe.hydrogen_out 1.95511557 \n", " h2_storage\n", diff --git a/examples/24_solar_battery_grid/README.md b/examples/24_solar_battery_grid/README.md new file mode 100644 index 000000000..2cdf79ef6 --- /dev/null +++ b/examples/24_solar_battery_grid/README.md @@ -0,0 +1,91 @@ +# Example 23: Solar Battery Grid System + +## Overview + +This example demonstrates a solar + battery + grid system that showcases the unified grid component. The system can both buy electricity from the grid and sell excess electricity back to the grid using separate grid connection instances. + +## System Description + +### Technologies + +1. **Solar PV** (200 MWdc) + - Utility-scale solar with single-axis tracking + - 1.34 DC/AC ratio + - 65% bifacial panels + - Ground coverage ratio: 0.3 + +2. **Battery Storage** (200 MWh, 25 MW charge/discharge rate) + - Simple generic storage model + - Demand-following control strategy (100 MW demand profile) + - Min SOC: 10%, Max SOC: 100% + - Charge/discharge efficiency: 100% + +3. **Grid Buy** (1000 MW interconnection) + - Buys electricity from grid to meet unmet demand + - Purchase price: $0.10/kWh + - No interconnection costs (set to $0) + +4. **Grid Sell** (1000 MW interconnection) + - Sells excess electricity back to grid + - Sell price: $0.00/kWh (no revenue in this configuration) + - No interconnection costs (set to $0) + +```{note} +We use two separate grid instances here: one for buying electricity and one for selling electricity so that there is not a feedback loop in the execution order of the technologies. You could use a single grid instance in this case, but it would require resolving the circular coupling using a nonlinear solver on the model. We generally recommend using separate grid instances for buying and selling to avoid this complexity, though this may vary based on your plant architecture. +``` + +## Key Features Demonstrated + +### Unified Grid Component + +The grid component in this example is designed to handle both electricity purchases and sales within a single component. This allows for flexible configurations depending on the system's needs. + +**Key Features:** +- Single component supports both buying and selling electricity +- Configure only the prices you need (buy, sell, or both) +- Optional interconnection sizing with associated costs +- Multiple grid instances in one plant for different purposes +- Enforces interconnection limits on both buying and selling +- Tracks unmet demand and electricity that couldn't be sold + +**Performance Model:** +The grid performance model handles: +- `electricity_in`: Power flowing INTO the grid (selling to grid) - limited by interconnection size +- `electricity_out`: Power flowing OUT OF the grid (buying from grid) - limited by interconnection size +- `electricity_sold`: Actual electricity sold (up to interconnection limit) +- `electricity_unmet_demand`: Demand that couldn't be met due to interconnection limit +- `electricity_excess`: Electricity that couldn't be sold due to interconnection limit + +**Cost Model:** +- CapEx: Based on interconnection size ($/kW) plus fixed costs +- OpEx: Annual O&M based on interconnection size ($/kW/year) +- VarOpEx: + - Positive costs from electricity purchases (if `electricity_buy_price` is set) + - Negative costs (revenue) from electricity sales (if `electricity_sell_price` is set) + - Both prices can be scalar or time-varying arrays + +### Energy Flow + +``` +Solar → Battery → [Grid Buy (purchases) | Grid Sell (sales)] +``` + +- Solar generates electricity +- Battery stores excess and follows 100 MW demand profile +- Grid Buy purchases electricity when battery cannot meet demand (via `electricity_unmet_demand` → `electricity_demand` connection) +- Grid Sell accepts excess electricity when battery has surplus (via `electricity_unused_commodity` → `electricity_in` connection) + +### Technology Interconnections + +```yaml +technology_interconnections: [ + ["solar", "battery", "electricity", "cable"], + ["battery", "grid_buy", ["electricity_unmet_demand", "electricity_demand"]], + ["battery", "grid_sell", ["electricity_unused_commodity", "electricity_in"]] +] +``` + +**Note:** Each grid instance specifies only the price relevant to its purpose: +- `grid_buy` only sets `electricity_buy_price` (the other is None by default) +- `grid_sell` only sets `electricity_sell_price` (the other is None by default) +- Both prices are optional - set only what you need diff --git a/examples/24_solar_battery_grid/driver_config.yaml b/examples/24_solar_battery_grid/driver_config.yaml new file mode 100644 index 000000000..4a7bca28f --- /dev/null +++ b/examples/24_solar_battery_grid/driver_config.yaml @@ -0,0 +1,5 @@ +name: "driver_config" +description: "This analysis runs solar and battery storage systems with buying and selling electricity to the grid" + +general: + folder_output: outputs diff --git a/examples/24_solar_battery_grid/plant_config.yaml b/examples/24_solar_battery_grid/plant_config.yaml new file mode 100644 index 000000000..169c3670e --- /dev/null +++ b/examples/24_solar_battery_grid/plant_config.yaml @@ -0,0 +1,73 @@ +name: "plant_config" +description: "This plant is located in Texas" + +site: + latitude: 32.34 + longitude: -98.27 + year: 2013 + + resources: + solar_resource: + resource_model: "goes_aggregated_solar_v4_api" + resource_parameters: + resource_year: 2013 + resource_dir: "../11_hybrid_energy_plant/tech_inputs/weather/solar" + resource_filename: "30.6617_-101.7096_psmv3_60_2013.csv" + + +# array of arrays containing left-to-right technology +# interconnections; can support bidirectional connections +# with the reverse definition. +# +# This example showcases using two separate grid instances: +# - grid_buy: purchases electricity to meet unmet demand (upstream) +# - grid_sell: sells excess electricity back to grid (downstream) +technology_interconnections: [ + ["solar", "battery", "electricity", "cable"], # connect solar to battery + ["battery", "grid_buy", ["electricity_unmet_demand", "electricity_demand"]], # connect battery demand to grid buying + ["battery", "grid_sell", ["electricity_unused_commodity", "electricity_in"]] # connect battery surplus to grid selling +] + +resource_to_tech_connections: [ + # connect the wind resource to the wind technology + ['solar_resource', 'solar', 'solar_resource_data'], +] + +plant: + plant_life: 30 + simulation: + n_timesteps: 8760 + +finance_parameters: + finance_groups: + profast_model: + commodity: "electricity" + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 + inflation_rate: 0.0 + discount_rate: 0.09 + debt_equity_ratio: 2.62 + property_tax_and_insurance: 0.03 + total_income_tax_rate: 0.308 + capital_gains_tax_rate: 0.15 + sales_tax_rate: 0.07375 + debt_interest_rate: 0.07 + debt_type: "Revolving debt" + loan_period_if_used: 0 + cash_onhand_months: 1 + admin_expense: 0.00 + capital_items: + depr_type: "MACRS" + depr_period: 5 + refurb: [0.] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 + target_dollar_year: 2022 + finance_subgroups: + renewables: + commodity: "electricity" + finance_groups: ["profast_model"] + technologies: ["solar", "battery", "grid_buy", "grid_sell"] diff --git a/examples/24_solar_battery_grid/run_solar_battery_grid.py b/examples/24_solar_battery_grid/run_solar_battery_grid.py new file mode 100644 index 000000000..3131ef0d7 --- /dev/null +++ b/examples/24_solar_battery_grid/run_solar_battery_grid.py @@ -0,0 +1,11 @@ +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +# Create an H2I model +h2i = H2IntegrateModel("solar_battery_grid.yaml") + +# Run the model +h2i.run() + +# Post-process the results +h2i.post_process() diff --git a/examples/24_solar_battery_grid/solar_battery_grid.yaml b/examples/24_solar_battery_grid/solar_battery_grid.yaml new file mode 100644 index 000000000..7efd3cef4 --- /dev/null +++ b/examples/24_solar_battery_grid/solar_battery_grid.yaml @@ -0,0 +1,7 @@ +name: "H2Integrate_config" + +system_summary: "This reference plant firms using the grid" + +driver_config: "driver_config.yaml" +technology_config: "tech_config.yaml" +plant_config: "plant_config.yaml" diff --git a/examples/24_solar_battery_grid/tech_config.yaml b/examples/24_solar_battery_grid/tech_config.yaml new file mode 100644 index 000000000..48dc0bc50 --- /dev/null +++ b/examples/24_solar_battery_grid/tech_config.yaml @@ -0,0 +1,86 @@ +name: "technology_config" +description: "This plant produces electricity from natural gas using a combined cycle turbine" + +technologies: + solar: + performance_model: + model: "pysam_solar_plant_performance" + cost_model: + model: "atb_utility_pv_cost" + model_inputs: + performance_parameters: + pv_capacity_kWdc: 200000 #200 MWdc + dc_ac_ratio: 1.34 + create_model_from: "new" + tilt_angle_func: "none" + tilt: 0 + pysam_options: + SystemDesign: + gcr: 0.3 + array_type: 2 + bifaciality: 0.65 + inv_eff: 96.0 + losses: 14.6 + module_type: 1 + azimuth: 180 + rotlim: 45 + SolarResource: + albedo_default: 0.2 + cost_parameters: + capex_per_kWac: 1193 + opex_per_kWac_per_year: 18 + cost_year: 2024 + battery: + performance_model: + model: "simple_generic_storage" + cost_model: + model: "atb_battery_cost" + control_strategy: + model: "demand_open_loop_storage_controller" + model_inputs: + shared_parameters: + commodity_name: "electricity" + commodity_units: "kW" + max_charge_rate: 25000.0 # kW/time step, 25 MW + max_capacity: 200000.0 # kWh, 200 MWh + control_parameters: + max_charge_percent: 1.0 # percent as decimal + min_charge_percent: 0.1 # percent as decimal + init_charge_percent: 0.1 # percent as decimal + max_discharge_rate: 25000.0 # kW/time step + charge_efficiency: 1.0 # percent as decimal + discharge_efficiency: 1.0 # percent as decimal + demand_profile: 100000 #kW, 100 MW + cost_parameters: + cost_year: 2022 + energy_capex: 300 # $/kWh + power_capex: 100 # $/kW + opex_fraction: 0.05 # percent of capex + grid_buy: + performance_model: + model: "grid_performance" + cost_model: + model: "grid_cost" + model_inputs: + shared_parameters: + interconnection_size: 1.e6 # kW + cost_parameters: + cost_year: 2022 + electricity_buy_price: 0.10 # $/kWh - only buying, no selling + interconnection_capex_per_kw: 0.0 # $/kW capital cost + interconnection_opex_per_kw: 0.0 # $/kW/year O&M cost + fixed_interconnection_cost: 0.0 # $ one-time fixed cost + grid_sell: + performance_model: + model: "grid_performance" + cost_model: + model: "grid_cost" + model_inputs: + shared_parameters: + interconnection_size: 1.e6 # kW + cost_parameters: + cost_year: 2022 + electricity_sell_price: 0.0 # $/kWh - only selling, no buying + interconnection_capex_per_kw: 0.0 # $/kW capital cost + interconnection_opex_per_kw: 0.0 # $/kW/year O&M cost + fixed_interconnection_cost: 0.0 # $ one-time fixed cost diff --git a/h2integrate/converters/grid/__init__.py b/h2integrate/converters/grid/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/h2integrate/converters/grid/grid.py b/h2integrate/converters/grid/grid.py new file mode 100644 index 000000000..a62d3575b --- /dev/null +++ b/h2integrate/converters/grid/grid.py @@ -0,0 +1,277 @@ +import numpy as np +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, CostModelBaseConfig, merge_shared_inputs +from h2integrate.core.model_baseclasses import CostModelBaseClass + + +@define +class GridPerformanceModelConfig(BaseConfig): + """Configuration for the grid performance model. + + Attributes: + interconnection_size: Maximum power capacity for grid connection in kW + """ + + interconnection_size: float = field() # kW + + +class GridPerformanceModel(om.ExplicitComponent): + """Model a grid interconnection point. + + The grid is treated as the interconnection point itself: + - electricity_in: Power flowing INTO the grid (selling to grid). + - electricity_out: Power flowing OUT OF the grid (buying from grid). + + This component handles: + - Buying electricity from the grid (electricity flows out to downstream technologies). + - Selling electricity to the grid (electricity flows in from upstream technologies). + - Enforcing interconnection limits on buying flows. + + The component can be instantiated multiple times in a plant to represent + different grid connection points (for example, one for buying upstream and + another for selling downstream). + + Inputs + interconnection_size (float): Maximum power capacity for grid connection (kW). + electricity_in (array): Power flowing into the grid (selling) (kW). + electricity_demand (array): Downstream electricity demand (kW). + + Outputs + electricity_out (array): Power flowing out of the grid (buying) (kW). + """ + + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.config = GridPerformanceModelConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") + ) + + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + + # Interconnection size input + self.add_input( + "interconnection_size", + val=self.config.interconnection_size, + units="kW", + desc="Maximum power capacity for grid connection", + ) + + # Electricity flowing INTO the grid (selling to grid) + self.add_input( + "electricity_in", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity flowing into grid interconnection point (selling to grid)", + ) + + # Electricity demand from downstream (for buying from grid) + self.add_input( + "electricity_demand", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity demand from downstream technologies", + ) + + # Electricity flowing OUT OF the grid (buying from grid) + self.add_output( + "electricity_out", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity flowing out of grid interconnection point (buying from grid)", + ) + + self.add_output( + "electricity_sold", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity sold to the grid", + ) + + self.add_output( + "electricity_unmet_demand", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity demand that is not met", + ) + + self.add_output( + "electricity_excess", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity that was not sold due to interconnection limits", + ) + + def compute(self, inputs, outputs): + interconnection_size = inputs["interconnection_size"] + + # Selling: electricity flows into grid, limited by interconnection size + electricity_sold = np.clip(inputs["electricity_in"], 0, interconnection_size) + outputs["electricity_sold"] = electricity_sold + + # Buying: electricity flows out of grid to meet demand, limited by interconnection + electricity_bought = np.clip(inputs["electricity_demand"], 0, interconnection_size) + outputs["electricity_out"] = electricity_bought + + # Unmet demand if demand exceeds interconnection size + outputs["electricity_unmet_demand"] = inputs["electricity_demand"] - electricity_bought + + # Not sold electricity if demand exceeds interconnection size + outputs["electricity_excess"] = inputs["electricity_in"] - electricity_sold + + +@define +class GridCostModelConfig(CostModelBaseConfig): + """Configuration for the grid cost model. + + Attributes: + interconnection_size: Maximum power capacity for grid connection in kW + interconnection_capex_per_kw: Capital cost per kW of interconnection ($/kW) + interconnection_opex_per_kw: Annual O&M cost per kW of interconnection ($/kW/year) + fixed_interconnection_cost: One-time fixed cost regardless of size ($) + electricity_buy_price: Price to buy electricity from grid ($/kWh), optional + electricity_sell_price: Price to sell electricity to grid ($/kWh), optional + """ + + interconnection_size: float = field() # kW + interconnection_capex_per_kw: float = field() # $/kW + interconnection_opex_per_kw: float = field() # $/kW/year + fixed_interconnection_cost: float = field() # $ + electricity_buy_price: float | list[float] | np.ndarray | None = field(default=None) # $/kWh + electricity_sell_price: float | list[float] | np.ndarray | None = field(default=None) # $/kWh + + +class GridCostModel(CostModelBaseClass): + """ + An OpenMDAO component that computes costs for grid connections. + + This component handles: + - CapEx based on interconnection size ($/kW) + - OpEx based on interconnection size ($/kW/year) + - Variable costs for electricity purchases (buy mode) + - Revenue from electricity sales (sell mode) + - Support for time-varying electricity prices + + Note: Although the electricity units are in kW and the prices are in USD/kWh, + this model assumes that each timestep represents 1 hour. + """ + + def setup(self): + self.config = GridCostModelConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") + ) + super().setup() + + n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + + # Common input for sizing costs + self.add_input( + "interconnection_size", + val=self.config.interconnection_size, + units="kW", + desc="Interconnection capacity for cost calculation", + ) + + # Electricity flowing OUT of grid (buying from grid) + self.add_input( + "electricity_out", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity flowing out of grid (buying from grid)", + ) + + # Add buy price input if configured + if self.config.electricity_buy_price is not None: + buy_price = self.config.electricity_buy_price + if isinstance(buy_price, (list, np.ndarray)): + if len(buy_price) != n_timesteps: + raise ValueError( + f"electricity_buy_price length ({len(buy_price)}) " + f"must match n_timesteps ({n_timesteps})" + ) + buy_price_shape = n_timesteps + + else: + buy_price_shape = 1 + + self.add_input( + "electricity_buy_price", + val=self.config.electricity_buy_price, + shape=buy_price_shape, + units="USD/(kW*h)", + desc="Price to buy electricity from grid", + ) + + # Electricity flowing INTO grid (selling to grid) + self.add_input( + "electricity_sold", + val=0.0, + shape=n_timesteps, + units="kW", + desc="Electricity flowing into grid (selling to grid)", + ) + + # Add sell price input if configured + if self.config.electricity_sell_price is not None: + sell_price = self.config.electricity_sell_price + if isinstance(sell_price, (list, np.ndarray)): + if len(sell_price) != n_timesteps: + raise ValueError( + f"electricity_sell_price length ({len(sell_price)}) " + f"must match n_timesteps ({n_timesteps})" + ) + sell_price_shape = n_timesteps + else: + sell_price_shape = 1 + + self.add_input( + "electricity_sell_price", + val=self.config.electricity_sell_price, + shape=sell_price_shape, + units="USD/(kW*h)", + desc="Price to sell electricity to grid", + ) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + interconnection_size = inputs["interconnection_size"] + + # Capital costs based on interconnection size + capex_per_kw = self.config.interconnection_capex_per_kw + fixed_cost = self.config.fixed_interconnection_cost + outputs["CapEx"] = (interconnection_size * capex_per_kw) + fixed_cost + + # Fixed operating costs based on interconnection size + opex_per_kw = self.config.interconnection_opex_per_kw + outputs["OpEx"] = interconnection_size * opex_per_kw + + # Variable operating costs (positive cost for buying, negative for selling) + varopex = 0.0 + + # Add buying costs if buy price is configured + # electricity_out represents power flowing OUT of grid (buying) + if self.config.electricity_buy_price is not None: + electricity_out = inputs["electricity_out"] + buy_price = inputs["electricity_buy_price"] + # Buying costs money (positive VarOpEx) + varopex += np.sum(electricity_out * buy_price) + + # Add selling revenue if sell price is configured + # electricity_sold represents power flowing INTO grid (selling) + if self.config.electricity_sell_price is not None: + sell_price = inputs["electricity_sell_price"] + # Selling generates revenue (negative VarOpEx) + varopex -= np.sum(inputs["electricity_sold"] * sell_price) + + outputs["VarOpEx"] = varopex diff --git a/h2integrate/converters/grid/test/test_grid.py b/h2integrate/converters/grid/test/test_grid.py new file mode 100644 index 000000000..d1868d024 --- /dev/null +++ b/h2integrate/converters/grid/test/test_grid.py @@ -0,0 +1,462 @@ +import unittest + +import numpy as np +import openmdao.api as om + +from h2integrate.converters.grid.grid import GridCostModel, GridPerformanceModel + + +class TestGridPerformanceModel(unittest.TestCase): + """Test cases for GridPerformanceModel.""" + + def setUp(self): + """Set up test fixtures.""" + self.n_timesteps = 10 + self.plant_config = {"plant": {"simulation": {"n_timesteps": self.n_timesteps}}} + + def test_buying_electricity(self): + """Test buying electricity from grid (electricity flows out).""" + prob = om.Problem() + + tech_config = { + "model_inputs": { + "shared_parameters": { + "interconnection_size": 50000.0 # 50 MW + } + } + } + + prob.model.add_subsystem( + "grid", + GridPerformanceModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Set demand below interconnection limit + demand = np.full(self.n_timesteps, 30000.0) # 30 MW demand + prob.set_val("grid.electricity_demand", demand) + + prob.run_model() + + # Should get full demand since it's below interconnection limit + electricity_out = prob.get_val("grid.electricity_out") + np.testing.assert_array_almost_equal(electricity_out, demand) + + def test_buying_with_interconnection_limit(self): + """Test that buying is limited by interconnection size.""" + prob = om.Problem() + + interconnection_size = 40000.0 # 40 MW + tech_config = { + "model_inputs": {"shared_parameters": {"interconnection_size": interconnection_size}} + } + + prob.model.add_subsystem( + "grid", + GridPerformanceModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Set demand above interconnection limit + demand = np.full(self.n_timesteps, 60000.0) # 60 MW demand + prob.set_val("grid.electricity_demand", demand) + + prob.run_model() + + # Should be limited to interconnection size + electricity_out = prob.get_val("grid.electricity_out") + np.testing.assert_array_almost_equal( + electricity_out, np.full(self.n_timesteps, interconnection_size) + ) + + def test_selling_electricity(self): + """Test selling electricity to grid (electricity flows in).""" + prob = om.Problem() + + tech_config = { + "model_inputs": { + "shared_parameters": { + "interconnection_size": 100000.0 # 100 MW + } + } + } + + prob.model.add_subsystem( + "grid", + GridPerformanceModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Set electricity flowing into grid + electricity_in = np.full(self.n_timesteps, 50000.0) # 50 MW + prob.set_val("grid.electricity_in", electricity_in) + + prob.run_model() + + # The electricity_in represents what's being sold (no separate output needed) + # Just verify it was accepted + actual_in = prob.get_val("grid.electricity_in") + np.testing.assert_array_almost_equal(actual_in, electricity_in) + + def test_simultaneous_buy_and_sell(self): + """Test that grid can handle both buying and selling simultaneously.""" + prob = om.Problem() + + tech_config = { + "model_inputs": { + "shared_parameters": { + "interconnection_size": 75000.0 # 75 MW + } + } + } + + prob.model.add_subsystem( + "grid", + GridPerformanceModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Set both flows + electricity_in = np.full(self.n_timesteps, 30000.0) # 30 MW in + electricity_demand = np.full(self.n_timesteps, 40000.0) # 40 MW out + + prob.set_val("grid.electricity_in", electricity_in) + prob.set_val("grid.electricity_demand", electricity_demand) + + prob.run_model() + + electricity_out = prob.get_val("grid.electricity_out") + np.testing.assert_array_almost_equal(electricity_out, electricity_demand) + + def test_varying_demand_profile(self): + """Test with time-varying demand profile.""" + prob = om.Problem() + + tech_config = {"model_inputs": {"shared_parameters": {"interconnection_size": 100000.0}}} + + prob.model.add_subsystem( + "grid", + GridPerformanceModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Create varying demand profile + demand = np.array([10000, 20000, 30000, 50000, 70000, 90000, 110000, 80000, 60000, 40000]) + prob.set_val("grid.electricity_demand", demand) + + prob.run_model() + + electricity_out = prob.get_val("grid.electricity_out") + # Values above 100000 should be clipped + expected = np.clip(demand, 0, 100000) + np.testing.assert_array_almost_equal(electricity_out, expected) + + +class TestGridCostModel(unittest.TestCase): + """Test cases for GridCostModel.""" + + def setUp(self): + """Set up test fixtures.""" + self.n_timesteps = 24 # 24 hours + self.plant_config = { + "plant": {"simulation": {"n_timesteps": self.n_timesteps}, "plant_life": 30} + } + + def test_buy_only_mode(self): + """Test cost model with only buy price configured.""" + prob = om.Problem() + + interconnection_size = 50000.0 + buy_price = 0.10 # $0.10/kWh + + tech_config = { + "model_inputs": { + "shared_parameters": {"interconnection_size": interconnection_size}, + "cost_parameters": { + "cost_year": 2022, + "interconnection_capex_per_kw": 50.0, + "interconnection_opex_per_kw": 2.0, + "fixed_interconnection_cost": 100000.0, + "electricity_buy_price": buy_price, + "electricity_sell_price": None, # No selling + }, + } + } + + prob.model.add_subsystem( + "grid", + GridCostModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Set electricity bought (flowing out) + electricity_out = np.full(self.n_timesteps, 30000.0) # 30 MW + prob.set_val("grid.electricity_out", electricity_out) + + prob.run_model() + + # Check CapEx + expected_capex = (interconnection_size * 50.0) + 100000.0 + capex = prob.get_val("grid.CapEx") + self.assertAlmostEqual(capex, expected_capex) + + # Check OpEx + expected_opex = interconnection_size * 2.0 + opex = prob.get_val("grid.OpEx") + self.assertAlmostEqual(opex, expected_opex) + + # Check VarOpEx (buying costs) + expected_varopex = np.sum(electricity_out * buy_price) + varopex = prob.get_val("grid.VarOpEx")[0] + self.assertAlmostEqual(varopex, expected_varopex) + + def test_sell_only_mode(self): + """Test cost model with only sell price configured.""" + prob = om.Problem() + + interconnection_size = 75000.0 + sell_price = 0.05 # $0.05/kWh + + tech_config = { + "model_inputs": { + "shared_parameters": {"interconnection_size": interconnection_size}, + "cost_parameters": { + "cost_year": 2022, + "interconnection_capex_per_kw": 50.0, + "interconnection_opex_per_kw": 2.0, + "fixed_interconnection_cost": 100000.0, + "electricity_buy_price": None, # No buying + "electricity_sell_price": sell_price, + }, + } + } + + prob.model.add_subsystem( + "grid", + GridCostModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Set electricity sold (flowing in) + electricity_sold = np.full(self.n_timesteps, 40000.0) # 40 MW + prob.set_val("grid.electricity_sold", electricity_sold) + + prob.run_model() + + # Check CapEx + expected_capex = (interconnection_size * 50.0) + 100000.0 + capex = prob.get_val("grid.CapEx") + self.assertAlmostEqual(capex, expected_capex) + + # Check OpEx + expected_opex = interconnection_size * 2.0 + opex = prob.get_val("grid.OpEx") + self.assertAlmostEqual(opex, expected_opex) + + # Check VarOpEx (selling revenue - negative) + expected_varopex = -np.sum(electricity_sold * sell_price) + varopex = prob.get_val("grid.VarOpEx")[0] + self.assertAlmostEqual(varopex, expected_varopex) + + def test_both_buy_and_sell_prices(self): + """Test cost model with both buy and sell prices configured.""" + prob = om.Problem() + + interconnection_size = 100000.0 + buy_price = 0.10 # $0.10/kWh + sell_price = 0.05 # $0.05/kWh + + tech_config = { + "model_inputs": { + "shared_parameters": {"interconnection_size": interconnection_size}, + "cost_parameters": { + "cost_year": 2022, + "interconnection_capex_per_kw": 50.0, + "interconnection_opex_per_kw": 2.0, + "fixed_interconnection_cost": 100000.0, + "electricity_buy_price": buy_price, + "electricity_sell_price": sell_price, + }, + } + } + + prob.model.add_subsystem( + "grid", + GridCostModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Set both buying and selling + electricity_out = np.full(self.n_timesteps, 20000.0) # 20 MW bought + electricity_sold = np.full(self.n_timesteps, 30000.0) # 30 MW sold + + prob.set_val("grid.electricity_out", electricity_out) + prob.set_val("grid.electricity_sold", electricity_sold) + + prob.run_model() + + # Check VarOpEx (buying cost - selling revenue) + buying_cost = np.sum(electricity_out * buy_price) + selling_revenue = np.sum(electricity_sold * sell_price) + expected_varopex = buying_cost - selling_revenue + + varopex = prob.get_val("grid.VarOpEx")[0] + self.assertAlmostEqual(varopex, expected_varopex) + + def test_time_varying_buy_price(self): + """Test with time-varying electricity buy prices.""" + prob = om.Problem() + + interconnection_size = 50000.0 + # Create time-varying prices (peak/off-peak) + buy_prices = np.array([0.08] * 6 + [0.15] * 12 + [0.08] * 6) # 24 hours + + tech_config = { + "model_inputs": { + "shared_parameters": {"interconnection_size": interconnection_size}, + "cost_parameters": { + "cost_year": 2022, + "interconnection_capex_per_kw": 50.0, + "interconnection_opex_per_kw": 2.0, + "fixed_interconnection_cost": 100000.0, + "electricity_buy_price": buy_prices.tolist(), + "electricity_sell_price": None, + }, + } + } + + prob.model.add_subsystem( + "grid", + GridCostModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Set constant electricity bought + electricity_out = np.full(self.n_timesteps, 25000.0) # 25 MW + prob.set_val("grid.electricity_out", electricity_out) + + prob.run_model() + + # Check VarOpEx with varying prices + expected_varopex = np.sum(electricity_out * buy_prices) + varopex = prob.get_val("grid.VarOpEx")[0] + self.assertAlmostEqual(varopex, expected_varopex) + + def test_time_varying_sell_price(self): + """Test with time-varying electricity sell prices.""" + prob = om.Problem() + + interconnection_size = 75000.0 + # Create time-varying sell prices + sell_prices = np.array([0.03] * 6 + [0.07] * 12 + [0.03] * 6) # 24 hours + + tech_config = { + "model_inputs": { + "shared_parameters": {"interconnection_size": interconnection_size}, + "cost_parameters": { + "cost_year": 2022, + "interconnection_capex_per_kw": 50.0, + "interconnection_opex_per_kw": 2.0, + "fixed_interconnection_cost": 100000.0, + "electricity_buy_price": None, + "electricity_sell_price": sell_prices.tolist(), + }, + } + } + + prob.model.add_subsystem( + "grid", + GridCostModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + # Set constant electricity sold + electricity_sold = np.full(self.n_timesteps, 35000.0) # 35 MW + prob.set_val("grid.electricity_sold", electricity_sold) + + prob.run_model() + + # Check VarOpEx (negative for revenue) + expected_varopex = -np.sum(electricity_sold * sell_prices) + varopex = prob.get_val("grid.VarOpEx")[0] + self.assertAlmostEqual(varopex, expected_varopex) + + def test_zero_interconnection_costs(self): + """Test with zero interconnection costs.""" + prob = om.Problem() + + tech_config = { + "model_inputs": { + "shared_parameters": {"interconnection_size": 100000.0}, + "cost_parameters": { + "cost_year": 2022, + "interconnection_capex_per_kw": 0.0, + "interconnection_opex_per_kw": 0.0, + "fixed_interconnection_cost": 0.0, + "electricity_buy_price": 0.10, + "electricity_sell_price": 0.05, + }, + } + } + + prob.model.add_subsystem( + "grid", + GridCostModel( + driver_config={}, plant_config=self.plant_config, tech_config=tech_config + ), + ) + + prob.setup() + + electricity_out = np.full(self.n_timesteps, 10000.0) + electricity_sold = np.full(self.n_timesteps, 20000.0) + + prob.set_val("grid.electricity_out", electricity_out) + prob.set_val("grid.electricity_sold", electricity_sold) + + prob.run_model() + + # Check that CapEx and OpEx are zero + capex = prob.get_val("grid.CapEx") + opex = prob.get_val("grid.OpEx") + self.assertAlmostEqual(capex, 0.0) + self.assertAlmostEqual(opex, 0.0) + + # VarOpEx should still be calculated + expected_varopex = np.sum(electricity_out * 0.10) - np.sum(electricity_sold * 0.05) + varopex = prob.get_val("grid.VarOpEx")[0] + self.assertAlmostEqual(varopex, expected_varopex) + + +if __name__ == "__main__": + unittest.main() diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index a73c55981..69b7ac663 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -2,6 +2,7 @@ from h2integrate.core.feedstocks import FeedstockCostModel, FeedstockPerformanceModel from h2integrate.transporters.pipe import PipePerformanceModel from h2integrate.transporters.cable import CablePerformanceModel +from h2integrate.converters.grid.grid import GridCostModel, GridPerformanceModel from h2integrate.finances.profast_lco import ProFastLCO from h2integrate.finances.profast_npv import ProFastNPV from h2integrate.converters.steel.steel import SteelPerformanceModel, SteelCostAndFinancialModel @@ -238,11 +239,21 @@ # Feedstock "feedstock_performance": FeedstockPerformanceModel, "feedstock_cost": FeedstockCostModel, + # Grid + "grid_performance": GridPerformanceModel, + "grid_cost": GridCostModel, # Finance "ProFastComp": ProFastLCO, "ProFastNPV": ProFastNPV, "NumpyFinancialNPV": NumpyFinancialNPV, } - -electricity_producing_techs = ["wind", "solar", "pv", "river", "hopp", "natural_gas_plant"] +electricity_producing_techs = [ + "wind", + "solar", + "pv", + "river", + "hopp", + "natural_gas_plant", + "grid_buy", +] diff --git a/h2integrate/finances/profast_base.py b/h2integrate/finances/profast_base.py index 67595b950..ca2aa0f28 100644 --- a/h2integrate/finances/profast_base.py +++ b/h2integrate/finances/profast_base.py @@ -713,7 +713,8 @@ def populate_profast(self, inputs): # if VarOpEx is positive, treat as a feedstock varopex_adjusted_tech = inputs[f"varopex_adjusted_{tech}"] - if np.any(varopex_adjusted_tech) > 0: + + if np.any(varopex_adjusted_tech >= 0): varopex_cost_per_unit_commodity = varopex_adjusted_tech / total_production varopex_dict = dict(zip(years_of_operation, varopex_cost_per_unit_commodity)) tech_varopex_info.update({"cost": varopex_dict}) diff --git a/h2integrate/finances/test/test_profast_finance.py b/h2integrate/finances/test/test_profast_finance.py index d65491b99..3c1485795 100644 --- a/h2integrate/finances/test/test_profast_finance.py +++ b/h2integrate/finances/test/test_profast_finance.py @@ -118,3 +118,70 @@ def test_profast_comp(profast_inputs_no1, fake_filtered_tech_config, fake_cost_d with subtests.test("LCOE breakdown total"): assert pytest.approx(lcoe_breakdown["LCOE: Total ($/kWh)"] * 1e3, rel=1e-6) == lcoe + + +def test_profast_comp_coproduct( + profast_inputs_no1, fake_filtered_tech_config, fake_cost_dict, subtests +): + mean_hourly_production = 500000.0 # kW*h + grid_sell_price = 63.8181779 / 1e3 # USD/(kW*h) + wind_sold_USD = [-1 * mean_hourly_production * 8760 * grid_sell_price] * 30 + fake_cost_dict.update({"varopex_adjusted_wind": wind_sold_USD}) + + prob = om.Problem() + plant_config = { + "plant": { + "plant_life": 30, + }, + "finance_parameters": {"model_inputs": profast_inputs_no1}, + } + pf = ProFastLCO( + driver_config={}, + plant_config=plant_config, + tech_config=fake_filtered_tech_config, + commodity_type="electricity", + description="no1", + ) + prob.model.add_subsystem("pf", pf) + prob.setup() + prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + for variable, cost in fake_cost_dict.items(): + units = "USD" if "capex" in variable else "USD/year" + prob.set_val(f"pf.{variable}", cost, units=units) + + prob.run_model() + + lcoe = prob.get_val("pf.LCOE_no1", units="USD/(MW*h)") + price = prob.get_val("pf.price_electricity_no1", units="USD/(MW*h)") + + wacc = prob.get_val("pf.wacc_electricity_no1", units="percent") + crf = prob.get_val("pf.crf_electricity_no1", units="percent") + profit_index = prob.get_val("pf.profit_index_electricity_no1", units="unitless") + irr = prob.get_val("pf.irr_electricity_no1", units="percent") + ipp = prob.get_val("pf.investor_payback_period_electricity_no1", units="yr") + + lcoe_breakdown = prob.get_val("pf.LCOE_no1_breakdown") + + with subtests.test("LCOE"): + assert pytest.approx(lcoe[0], abs=1e-6) == 0 + + with subtests.test("WACC"): + assert pytest.approx(wacc[0], rel=1e-6) == 0.056453864 + + with subtests.test("CRF"): + assert pytest.approx(crf[0], rel=1e-6) == 0.0674704169 + + with subtests.test("Profit Index"): + assert pytest.approx(profit_index[0], rel=1e-6) == 2.12026237778 + + with subtests.test("IRR"): + assert pytest.approx(irr[0], rel=1e-6) == 0.0948 + + with subtests.test("Investor payback period"): + assert pytest.approx(ipp[0], rel=1e-6) == 8 + + with subtests.test("LCOE == price"): + assert pytest.approx(lcoe, rel=1e-6) == price + + with subtests.test("LCOE breakdown total"): + assert pytest.approx(lcoe_breakdown["LCOE: Total ($/kWh)"] * 1e3, rel=1e-6) == lcoe diff --git a/tests/h2integrate/test_all_examples.py b/tests/h2integrate/test_all_examples.py index afe024a55..c25b45ff8 100644 --- a/tests/h2integrate/test_all_examples.py +++ b/tests/h2integrate/test_all_examples.py @@ -1254,3 +1254,42 @@ def test_sweeping_solar_sites_doe(subtests): with subtests.test("Unique LCOEs per case"): assert len(list(set(res_df["LCOE"].to_list()))) == len(res_df) + + +def test_24_solar_battery_grid_example(subtests): + # NOTE: would be good to compare LCOE against the same example without grid selling + # and see that LCOE reduces with grid selling + os.chdir(EXAMPLE_DIR / "24_solar_battery_grid") + + model = H2IntegrateModel(Path.cwd() / "solar_battery_grid.yaml") + + model.run() + + model.post_process() + + energy_for_financials = model.prob.get_val( + "finance_subgroup_renewables.electricity_sum.total_electricity_produced", units="kW*h/year" + ) + + electricity_bought = sum(model.prob.get_val("grid_buy.electricity_out", units="kW")) + battery_missed_load = sum(model.prob.get_val("battery.electricity_unmet_demand", units="kW")) + + battery_curtailed = sum(model.prob.get_val("battery.electricity_unused_commodity", units="kW")) + electricity_sold = sum(model.prob.get_val("grid_sell.electricity_in", units="kW")) + + solar_aep = sum(model.prob.get_val("solar.electricity_out", units="kW")) + + with subtests.test("Behavior check battery missed load is electricity bought"): + assert pytest.approx(battery_missed_load, rel=1e-6) == electricity_bought + + with subtests.test("Behavior check battery curtailed energy is electricity sold"): + assert pytest.approx(battery_curtailed, rel=1e-6) == electricity_sold + + with subtests.test( + "Behavior check energy for financials; include solar aep and electricity bought" + ): + assert pytest.approx(energy_for_financials, rel=1e-6) == (solar_aep + electricity_bought) + + with subtests.test("Value check on LCOE"): + lcoe = model.prob.get_val("finance_subgroup_renewables.LCOE", units="USD/(MW*h)")[0] + assert pytest.approx(lcoe, rel=1e-4) == 91.7057887 From 6508a9856e4d90bdb29aca808b6747547697cbe7 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Thu, 4 Dec 2025 12:31:03 -0600 Subject: [PATCH 68/79] geo h2 doc page (#380) * geo h2 doc page * Updated geoh2 docs minorly --------- Co-authored-by: John Jasa --- docs/technology_models/geologic_hydrogen.md | 37 +++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 docs/technology_models/geologic_hydrogen.md diff --git a/docs/technology_models/geologic_hydrogen.md b/docs/technology_models/geologic_hydrogen.md new file mode 100644 index 000000000..431d8af37 --- /dev/null +++ b/docs/technology_models/geologic_hydrogen.md @@ -0,0 +1,37 @@ +# Geologic Hydrogen Models + +Within H2Integrate the geologic hydrogen models are divided into subsurface and surface models. (The surface models have not yet been integrated into H2I but keep an eye out!) + +The hydrogen well subsurface accounts for everything that's below ground and accounts for things such as drilling, rock type, and the hydrogen extracted or produced using this technology. + +## Hydrogen Well Subsurface Models + +There are two performance models available to model the hydrogen well subsurface: one for natural geologic hydrogen and one for stimulated geologic hydrogen. + +- [`"simple_natural_geoh2_performance"`](#simple-natural-geoh2-performance): A basic natural geologic hydrogen model for calculating the wellhead gas flow over the well lifetime (`plant_life`) and the specific hydrogen flow from the accumulated gas. + +- [`"templeton_serpentinization_geoh2_performance"`](#templeton-serpentinization-geoh2-performance): A stimulated geologic hydrogen model that estimates the hydrogen production from artificially stimulating geologic formations through a process called serpentinization. + +- [`"mathur_modified_geoh2_cost"`](#mathur-modified-geoh2-cost): A subsurface cost model that calculates the capital and operating for subsurface well systems in geologic hydrogen production. + +(simple-natural-geoh2-performance)= +### Simple Natural GeoH2 Performance + +The modeling approach in this performance model is informed by: +- [Mathur et al. (Stanford)](https://doi.org/10.31223/X5599G) +- [Gelman et al. (USGS)](https://doi.org/10.3133/pp1900) + +(templeton-serpentinization-geoh2-performance)= +### Templeton Serpentinization GeoH2 Performance + +The modeling approach in this performance model is informed by: +- [Mathur et al. (Stanford)](https://doi.org/10.31223/X5599G) +- [Templeton et al. (UC Boulder)](https://doi.org/10.3389/fgeoc.2024.1366268) + +(mathur_modified_geoh2_cost)= +### Mathur Modified GeoH2 Cost + +The modeling approach in this cost model is based on: +- [Mathur et al. (Stanford)](https://doi.org/10.31223/X5599G) +- [NETL Quality Guidelines](https://doi.org/10.2172/1567736) +- Drill cost curves are based on an adapted [GETEM model](https://sam.nrel.gov/geothermal.html) From 58a8864d353083cd49f71cee6f75e6aee6961c08 Mon Sep 17 00:00:00 2001 From: kbrunik <102193481+kbrunik@users.noreply.github.com> Date: Tue, 9 Dec 2025 14:40:02 -0600 Subject: [PATCH 69/79] New PR Template (#390) * update PR template * update based on PR feedback * PR feedback --- .github/PULL_REQUEST_TEMPLATE.md | 110 +++++++++++------- docs/_toc.yml | 2 +- .../model_overview.md} | 0 3 files changed, 72 insertions(+), 40 deletions(-) rename docs/{technology_models/technology_overview.md => user_guide/model_overview.md} (100%) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 4759268ef..32dffd435 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -25,77 +25,109 @@ IMPORTANT NOTES # Add meaningful title here - +[Add description of feature here] -## Type of Contribution +## Section 1: Type of Contribution - [ ] Feature Enhancement - - [ ] New Technology Model + - [ ] Framework + - [ ] New Model + - [ ] Updated Model + - [ ] Tools/Utilities + - [ ] Other (please describe): - [ ] Bug Fix - [ ] Documentation Update - [ ] CI Changes - [ ] Other (please describe): -## General PR Checklist - +## Section 2: Draft PR Checklist -- [ ] `CHANGELOG.md` has been updated to describe the changes made in this PR + +- [ ] Open draft PR +- [ ] Describe the feature that will be added +- [ ] Fill out TODO list steps +- [ ] Describe requested feedback from reviewers on draft PR +- [ ] Complete Section 7: New Model Checklist (if applicable) + +### TODO: +- [ ] Step 1 +- [ ] Step 2 + +### Type of Reviewer Feedback Requested (on Draft PR) + +**Structural feedback**: + +**Implementation feedback**: + +**Other feedback**: + +## Section 3: General PR Checklist + +- [ ] PR description thoroughly describes the new feature, bug fix, etc. +- [ ] Added tests for new functionality or bug fixes +- [ ] Tests pass (If not, and this is expected, please elaborate in the Section 6: Test Results) - [ ] Documentation - [ ] Docstrings are up-to-date - [ ] Related `docs/` files are up-to-date, or added when necessary - [ ] Documentation has been rebuilt successfully - [ ] Examples have been updated (if applicable) -- [ ] Tests pass (If not, and this is expected, please elaborate in the tests section) -- [ ] Added tests for new functionality or bug fixes -- [ ] PR description thoroughly describes the new feature, bug fix, etc. - -## New Technology Checklist - -- [ ] **Performance Model**: Technology performance model has been implemented and follows H2Integrate patterns (if applicable) -- [ ] **Cost Model**: Technology cost model has been implemented (if applicable) -- [ ] **Tests**: Unit tests have been added for the new technology - - [ ] Performance model tests (if applicable) - - [ ] Cost model tests (if applicable) - - [ ] Integration tests with H2Integrate system -- [ ] **Example**: A working example demonstrating the new technology has been created - - [ ] Example has been tested and runs successfully in `test_all_examples.py` - - [ ] Example is documented with clear explanations in `examples/README.md` - - [ ] Input file comments - - [ ] Run file comments -- [ ] **Documentation**: - - [ ] Technology documentation page added to `docs/technology_models/` - - [ ] Technology added to the main technology models list in `docs/technology_models/technology_overview.md` -- [ ] **Integration**: Technology has been properly integrated into H2Integrate - - [ ] Added to `supported_models.py` - - [ ] If a new commodity_type is added, update `create_financial_model` in `h2integrate_model.py` - - [ ] Follows established naming conventions outlined in `docs/developer_guide/coding_guidelines.md` - -## Related issues - - +- [ ] `CHANGELOG.md` has been updated to describe the changes made in this PR +## Section 3: Related Issues + -## Impacted areas of the software +## Section 4: Impacted Areas of the Software +### Section 4.1: New Files - `path/to/file.extension` - `method1`: What and why something was changed in one sentence or less. -## Additional supporting information +### Section 4.2: Modified Files +- `path/to/file.extension` + - `method1`: What and why something was changed in one sentence or less. +## Section 5: Additional Supporting Information -## Test results, if applicable - +## Section 6: Test Results, if applicable +## Section 7 (Optional): New Model Checklist + +- [ ] **Model Structure**: + - [ ] Follows established naming conventions outlined in `docs/developer_guide/coding_guidelines.md` + - [ ] Used `attrs` class to define the `Config` to load in attributes for the model + - [ ] If applicable: inherit from `BaseConfig` or `CostModelBaseConfig` + - [ ] Added: `initialize()` method, `setup()` method, `compute()` method + - [ ] If applicable: inherit from `CostModelBaseClass` +- [ ] **Integration**: Model has been properly integrated into H2Integrate + - [ ] Added to `supported_models.py` + - [ ] If a new commodity_type is added, update `create_financial_model` in `h2integrate_model.py` +- [ ] **Tests**: Unit tests have been added for the new model + - [ ] [Pytest-style unit tests](https://realpython.com/pytest-python-testing/) + - [ ] Unit tests are in a "test" folder within the folder a new model was added to + - [ ] If applicable add integration tests +- [ ] **Example**: If applicable, a working example demonstrating the new model has been created + - [ ] Input file comments + - [ ] Run file comments + - [ ] Example has been tested and runs successfully in `test_all_examples.py` +- [ ] **Documentation**: + - [ ] Write docstrings using the [Google style](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html) + - [ ] Model added to the main models list in `docs/user_guide/model_overview.md` + - [ ] Model documentation page added to the appropriate `docs/` section + - [ ] `.md` is added to the `_toc.yml` + + + + affects filter fouling below this level) - net_power_for_desal = [] - operational_flags = [] - feed_water_flowrate = [] - fresh_water_flowrate = [] - for power_at_time_step in net_power_supply_kW: - if power_at_time_step > desal_power_max: - current_net_power_available = desal_power_max - operational_flag = 2 - elif (0.5 * desal_power_max) <= power_at_time_step <= desal_power_max: - current_net_power_available = power_at_time_step - operational_flag = 1 - elif power_at_time_step <= 0.5 * desal_power_max: - current_net_power_available = 0 - operational_flag = 0 - - # Append Operational Flags to a list - operational_flags.append(operational_flag) - # Create list of net power available for desal at each timestep - net_power_for_desal.append(current_net_power_available) - - # Create list of feedwater flowrates based on net power available for desal - # https://www.sciencedirect.com/science/article/abs/pii/S0011916409008443 - instantaneous_feed_water_flowrate = ( - ((current_net_power_available * (1 + energy_recovery)) * high_pressure_pump_efficency) - / pump_pressure_kPa - * 3600 - ) # m^3/hr - - instantaneous_fresh_water_flowrate = ( - instantaneous_feed_water_flowrate * water_recovery_ratio - ) # m^3/hr - - feed_water_flowrate.append(instantaneous_feed_water_flowrate) - fresh_water_flowrate.append(instantaneous_fresh_water_flowrate) - - """Values for CAPEX and OPEX given as $/(kg/s) - Source: https://www.nrel.gov/docs/fy16osti/66073.pdf - Assumed density of recovered water = 997 kg/m^3""" - - desal_capex = 32894 * (997 * desal_sys_size / 3600) # Output in USD - - desal_opex = 4841 * (997 * desal_sys_size / 3600) # Output in USD/yr - - """ - Assumed useful life = payment period for capital expenditure. - compressor amortization interest = 3% - """ - - return ( - fresh_water_flowrate, - feed_water_flowrate, - operational_flags, - desal_capex, - desal_opex, - ) - - -if __name__ == "__main__": - Power = np.array([446, 500, 183, 200, 250, 100]) - test = RO_desal(Power, 300, 30, 30) - print(test) diff --git a/h2integrate/simulation/technologies/hydrogen/desal/desal_model_eco.py b/h2integrate/simulation/technologies/hydrogen/desal/desal_model_eco.py deleted file mode 100644 index dd0f09172..000000000 --- a/h2integrate/simulation/technologies/hydrogen/desal/desal_model_eco.py +++ /dev/null @@ -1,136 +0,0 @@ -################## needed addition ###################### -""" -Description: This file already contains a desal model, but we need an estimate of the desal unit - size, particularly mass and footprint (m^2) -Sources: - - [1] Singlitico 2021 (use this as a jumping off point, I think there may be other good sources - available) - - [2] See sources in existing model below and the model itself -Args: - - electrolyzer_rating (float): electrolyzer rating in MW - - input and output values from RO_desal() below - - others may be added as needed -Returns (can be from separate functions and/or methods as it makes sense): - - mass (float): approximate mass of the desalination system (kg or metric tons) - - footprint (float): approximate area required for the desalination system (m^2) -""" - - -#################### existing model ######################## - -## High-Pressure Reverse Osmosis Desalination Model -""" -Python model of High-Pressure Reverse Osmosis Desalination (HPRO). - -Reverse Osmosis (RO) is a membrane separation process. No heating or phase change is necessary. -The majority of energy required is for pressurizing the feed water. - -A typical RO system is made up of the following basic components: -Pre-treatment: Removes suspended solids and microorganisms through sterilization, fine filtration - and adding chemicals to inhibit precipitation. -High-pressure pump: Supplies the pressure needed to enable the water to pass through the membrane - (pressure ranges from 54 to 80 bar for seawater). -Membrane Modules: Membrane assembly consists of a pressure vessel and the membrane. Either sprial - wound membranes or hollow fiber membranes are used. -Post-treatment: Consists of sterilization, stabilization, mineral enrichment and pH adjustment of - product water. -Energy recovery system: A system where a portion of the pressure energy of the brine is recovered. - -Costs are in 2013 dollars -""" - - -def RO_desal_eco(freshwater_kg_per_hr, salinity): - """ - param: freshwater_kg_per_hr: Maximum freshwater requirements of system [kg/hr] - - param: salinity: (str) "Seawater" >18,000 ppm or "Brackish" <18,000 ppm - - output: feedwater_m3_per_hr: feedwater flow rate [m^3/hr] - - output: desal_power: reqired power [kW] - - output: desal_capex: Capital cost [USD] - - output: desal_opex: OPEX (USD/yr) - - Costs from: https://pdf.sciencedirectassets.com/271370/1-s2.0-S0011916408X00074/1-s2.0-S0011916408002683/main.pdf?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEEcaCXVzLWVhc3QtMSJGMEQCIBNfL%2Frp%2BWpMGUW7rWBm3dkXztvOFIdswOdqI23VkBTGAiALG4NJuAiUkzKnukw233sXHF1OFBPnogJP1ZkboPkaiSrVBAjA%2F%2F%2F%2F%2F%2F%2F%2F%2F%2F8BEAUaDDA1OTAwMzU0Njg2NSIMWZ%2Fh3cDnrPjUJMleKqkELlVPKjinHYk85KwguMS3panLr1RRD9qkoxIASocYCbkvKLE9xW%2BT8QMCtEaH3Is7NRZ2Efc6YFQiO0DHbRzXYTfgz6Er5qqvSAFTrfgp%2B5bB3NYvtDI3kEGH%2F%2BOrEiL8iDK9TmgUjojvnKt86zidswBSDWrzclxcLrw6dfsqZf6dVjJT2g3Cyy8LKnP9vc33tCbACRLeszW1Zce%2BTlBbON22W%2FJq0qLcXDxI9JpRDqL8T%2Fo7SsetEif2DWovTLnv%2B%2FX2tJotFp630ZTVpd37ukGtanjAr5pl0nHgjnUtOJVtNksHQwc8XElFpBGKEXmvRo2uZJFd%2BeNtPEB1dWIZlZul6B8%2BJ7D%2FSPJsclPfpkMU92YUStQpw4Mc%2FOJFCILFyb4416DsL6PVWsdcYu9bbry8c0hQGZlE7oXTFoUy9SKdpEOguXAUi3X4JxjZisy3esVH8zNS3%2FiFsNr2FkTB6MLaSjSKj344AuDCkQYZ7CnenAiCHgf4a2tSnfiXzAvAFnpeQkr4iCnZOQ4Eis6L3fVRpWlluX5HUpbvUMN6rvtmAzq0APJn1b3NmFHy4ORoemTGvmI%2FHTRYKuAu257XBMe7X1qAJlnmpt6yGXrelXCz%2FmUvmbT1SzxETA5ss4KR0OM4YdXNnFLUrsV44ZkUM%2B8FlwZr%2F%2FePjz4QeG4ApR821IYTyre3%2FY%2BBZxaMs5AcXKiTHGwfE7CDi%2BQQ7CnDKk0lleZcas6kxzDl9%2BmeBjqqAeZhBVwd5sEx6aDGxAQC0eWpux6HauoVfuPOCkkv621szF0kTBqcoOlJlJav4eUPW4efAzBremirjiRLI2GdP72lVqXz9oaCg5NFXeKJAWbWkLdzHnDOu8ecSUPn%2F0jcR2IO2mznLspx6wKQA%2BAPEVGgptkwZtDqHcw8FNx7Q8tWJ1C4qL1bEMl0%2FatDXOHiJfuzCFp4%2B4uijTNfpVXO%2BzYQuNJA7ZNUMroa&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20230201T155950Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Credential=ASIAQ3PHCVTY7RLVF2MG%2F20230201%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=a3770ee910f7f78c94bb84206538810ca03f7a653183191b3794c633b9e3f08f&hash=2e8904ff0d2a6ef567a5894d5bb773524bf1a90bc3ed88d8592e3f9d4cc3c531&host=68042c943591013ac2b2430a89b270f6af2c76d8dfd086a07176afe7c76c2c61&pii=S0011916408002683&tid=spdf-27339dc5-0d03-4078-a244-c049a9bb014d&sid=50eb5802654ba84dc80a5675e9bbf644ed4dgxrqa&type=client&tsoh=d3d3LnNjaWVuY2VkaXJlY3QuY29t&ua=0f1650585c05065559515c&rr=792be5868a1a8698&cc=us - - A desal system capacity is given as desired freshwater flow rate [m^3/hr] - """ - - freshwater_density = 997 # [kg/m^3] - freshwater_m3_per_hr = freshwater_kg_per_hr / freshwater_density - desal_capacity = freshwater_m3_per_hr - - if salinity == "Seawater": - # SWRO: Sea Water Reverse Osmosis, water >18,000 ppm - # Water recovery - recovery_ratio = 0.5 # https://www.usbr.gov/research/dwpr/reportpdfs/report072.pdf - feedwater_m3_per_hr = freshwater_m3_per_hr / recovery_ratio - - # Power required - energy_conversion_factor = ( - 4.0 # [kWh/m^3] SWRO energy_conversion_factor range 2.5 to 4.0 kWh/m^3 - ) - # https://www.sciencedirect.com/science/article/pii/S0011916417321057 - desal_power = freshwater_m3_per_hr * energy_conversion_factor - - elif salinity == "Brackish": - # BWRO: Brakish water Reverse Osmosis, water < 18,000 ppm - # Water recovery - recovery_ratio = 0.75 # https://www.usbr.gov/research/dwpr/reportpdfs/report072.pdf - feedwater_m3_per_hr = freshwater_m3_per_hr / recovery_ratio - - # Power required - energy_conversion_factor = ( - 1.5 # [kWh/m^3] BWRO energy_conversion_factor range 1.0 to 1.5 kWh/m^3 - ) - # https://www.sciencedirect.com/science/article/pii/S0011916417321057 - - desal_power = freshwater_m3_per_hr * energy_conversion_factor - - else: - raise Exception("Salinity parameter must be set to Brackish or Seawater") - - # Costing - # https://www.nrel.gov/docs/fy16osti/66073.pdf - desal_capex = 32894 * (freshwater_density * desal_capacity / 3600) # [USD] - - desal_opex = 4841 * (freshwater_density * desal_capacity / 3600) # [USD/yr] - - """Mass and Footprint - Based on Commercial Industrial RO Systems - https://www.appliedmembranes.com/s-series-seawater-reverse-osmosis-systems-2000-to-100000-gpd.html - - All Mass and Footprint Estimates are estimated from Largest RO System: - S-308F - -436 m^3/day - -6330 kg - -762 cm (L) x 112 cm (D) x 183 cm (H) - - 436 m^3/day = 18.17 m^3/hr = 8.5 m^2, 6330 kg - 1 m^3/hr = .467 m^2, 346.7 kg - - Voltage Codes - 460 or 480v/ 3ph/ 60 Hz - """ - desal_mass_kg = freshwater_m3_per_hr * 346.7 # [kg] - desal_size_m2 = freshwater_m3_per_hr * 0.467 # [m^2] - - return ( - desal_capacity, - feedwater_m3_per_hr, - desal_power, - desal_capex, - desal_opex, - desal_mass_kg, - desal_size_m2, - ) - - -if __name__ == "__main__": - desal_freshwater_kg_hr = 75000 - salinity = "Brackish" - test = RO_desal_eco(desal_freshwater_kg_hr, salinity) - print(test) diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/H2_cost_model.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/H2_cost_model.py deleted file mode 100644 index 74b347122..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/H2_cost_model.py +++ /dev/null @@ -1,313 +0,0 @@ -import warnings - -import numpy as np - - -def basic_H2_cost_model( - electrolyzer_capex_kw, - time_between_replacement, - electrolyzer_size_mw, - useful_life, - electrical_generation_timeseries_kw, - hydrogen_annual_output, - PTC_USD_kg, - ITC_perc, - include_refurb_in_opex=False, - offshore=0, -): - """ - Basic cost modeling for a PEM electrolyzer. - Looking at cost projections for PEM electrolyzers over years 2022, 2025, 2030, 2035. - Electricity costs are calculated outside of hydrogen cost model - - Needs: - Scaling factor for off-shore electrolysis - Verifying numbers are appropriate for simplified cash flows - Verify how H2 PTC works/factors into cash flows - - If offshore = 1, then additional cost scaling is added to account for added difficulties for - offshore installation, offshore=0 means onshore - """ - - # Basic information in our analysis - kw_continuous = electrolyzer_size_mw * 1000 - - # Capacity factor - avg_generation = np.mean(electrical_generation_timeseries_kw) # Avg Generation - # print("avg_generation: ", avg_generation) - cap_factor = avg_generation / kw_continuous - - if cap_factor > 1.0: - cap_factor = 1.0 - warnings.warn( - "Electrolyzer capacity factor would be greater than 1 with provided energy profile." - " Capacity factor has been reduced to 1 for electrolyzer cost estimate purposes." - ) - - # print(cap_factor) - # if cap_factor != approx(1.0): - # raise(ValueError("Capacity factor must equal 1")) - # print("cap_factor",cap_factor) - - # #Apply PEM Cost Estimates based on year based on GPRA pathway (H2New) - # if atb_year == 2022: - # electrolyzer_capex_kw = 1100 #[$/kW capacity] stack capital cost - # time_between_replacement = 40000 #[hrs] - # elif atb_year == 2025: - # electrolyzer_capex_kw = 300 - # time_between_replacement = 80000 #[hrs] - # elif atb_year == 2030: - # electrolyzer_capex_kw = 150 - # time_between_replacement = 80000 #[hrs] - # elif atb_year == 2035: - # electrolyzer_capex_kw = 100 - # time_between_replacement = 80000 #[hrs] - - # Hydrogen Production Cost From PEM Electrolysis - 2019 (HFTO Program Record) - # https://www.hydrogen.energy.gov/pdfs/19009_h2_production_cost_pem_electrolysis_2019.pdf - - # Capital costs provide by Hydrogen Production Cost From PEM Electrolysis - 2019 (HFTO - # Program Record) - stack_capital_cost = 342 # [$/kW] - mechanical_bop_cost = 36 # [$/kW] for a compressor - electrical_bop_cost = 82 # [$/kW] for a rectifier - - # Installed capital cost - stack_installation_factor = 12 / 100 # [%] for stack cost - elec_installation_factor = 12 / 100 # [%] and electrical BOP - - # scale installation fraction if offshore (see Singlitico 2021 https://doi.org/10.1016/j.rset.2021.100005) - stack_installation_factor *= 1 + offshore - elec_installation_factor *= 1 + offshore - - # mechanical BOP install cost = 0% - - # Indirect capital cost as a percentage of installed capital cost - site_prep = 2 / 100 # [%] - engineering_design = 10 / 100 # [%] - project_contingency = 15 / 100 # [%] - permitting = 15 / 100 # [%] - land = 250000 # [$] - - stack_replacment_cost = 15 / 100 # [% of installed capital cost] - fixed_OM = 0.24 # [$/kg H2] - - program_record = False - - # Chose to use numbers provided by GPRA pathways - if program_record: - total_direct_electrolyzer_cost_kw = ( - (stack_capital_cost * (1 + stack_installation_factor)) - + mechanical_bop_cost - + (electrical_bop_cost * (1 + elec_installation_factor)) - ) - else: - total_direct_electrolyzer_cost_kw = ( - (electrolyzer_capex_kw * (1 + stack_installation_factor)) - + mechanical_bop_cost - + (electrical_bop_cost * (1 + elec_installation_factor)) - ) - - # Assign CapEx for electrolyzer from capacity based installed CapEx - electrolyzer_total_installed_capex = ( - total_direct_electrolyzer_cost_kw * electrolyzer_size_mw * 1000 - ) - - # Add indirect capital costs - electrolyzer_total_capital_cost = ( - ( - (site_prep + engineering_design + project_contingency + permitting) - * electrolyzer_total_installed_capex - ) - + land - + electrolyzer_total_installed_capex - ) - - # O&M costs - # https://www.sciencedirect.com/science/article/pii/S2542435121003068 - # for 700 MW electrolyzer (https://www.hydrogen.energy.gov/pdfs/19009_h2_production_cost_pem_electrolysis_2019.pdf) - h2_FOM_kg = 0.24 # [$/kg] - - # linearly scaled current central fixed O&M for a 700MW electrolyzer up to a 1000MW electrolyzer - scaled_h2_FOM_kg = h2_FOM_kg * electrolyzer_size_mw / 700 - - h2_FOM_kWh = scaled_h2_FOM_kg / 55.5 # [$/kWh] used 55.5 kWh/kg for efficiency - fixed_OM = h2_FOM_kWh * 8760 # [$/kW-y] - property_tax_insurance = 1.5 / 100 # [% of Cap/y] - variable_OM = 1.30 # [$/MWh] - - # Amortized refurbishment expense [$/MWh] - if not include_refurb_in_opex: - amortized_refurbish_cost = 0.0 - else: - amortized_refurbish_cost = ( - (total_direct_electrolyzer_cost_kw * stack_replacment_cost) - * max(((useful_life * 8760 * cap_factor) / time_between_replacement - 1), 0) - / useful_life - / 8760 - / cap_factor - * 1000 - ) - - # Total O&M costs [% of installed cap/year] - total_OM_costs = ( - fixed_OM + (property_tax_insurance * total_direct_electrolyzer_cost_kw) - ) / total_direct_electrolyzer_cost_kw + ( - (variable_OM + amortized_refurbish_cost) - / 1000 - * 8760 - * (cap_factor / total_direct_electrolyzer_cost_kw) - ) - - capacity_based_OM = True - if capacity_based_OM: - electrolyzer_OM_cost = electrolyzer_total_installed_capex * total_OM_costs # Capacity based - else: - electrolyzer_OM_cost = ( - fixed_OM * hydrogen_annual_output - ) # Production based - likely not very accurate - - # Add in electrolyzer repair schedule (every 7 years) - # Use if not using time between replacement given in hours - # Currently not added into further calculations - electrolyzer_repair_schedule = [] - counter = 1 - for year in range(0, useful_life): - if year == 0: - electrolyzer_repair_schedule = np.append(electrolyzer_repair_schedule, [0]) - - elif counter % time_between_replacement == 0: - electrolyzer_repair_schedule = np.append(electrolyzer_repair_schedule, [1]) - - else: - electrolyzer_repair_schedule = np.append(electrolyzer_repair_schedule, [0]) - counter += 1 - electrolyzer_repair_schedule * (stack_replacment_cost * electrolyzer_total_installed_capex) - - # Include Hydrogen PTC from the Inflation Reduction Act (range $0.60 - $3/kg-H2) - h2_tax_credit = [0] * useful_life - h2_tax_credit[0:10] = [hydrogen_annual_output * PTC_USD_kg] * 10 - - # Include ITC from IRA (range 0% - 50%) - # ITC is expressed as a percentage of the total installed cost which reduces the annual tax - # liabiity in year one of the project cash flow. - h2_itc = (ITC_perc / 100) * electrolyzer_total_installed_capex - cf_h2_itc = [0] * 30 - cf_h2_itc[1] = h2_itc - - return ( - electrolyzer_total_capital_cost, - electrolyzer_OM_cost, - electrolyzer_capex_kw, - time_between_replacement, - h2_tax_credit, - h2_itc, - ) - - -if __name__ == "__main__": - import matplotlib.pyplot as plt - - # plot a sweep of sizes for OPEX and CAPEX - - electrolyzer_capex_kw = 1300 # $/kW - time_between_replacement = 65000 # hours - electrolyzer_sizes_mw = np.arange(1, 1000) - useful_life = 30 # years - atb_year = 2025 - # electrical_generation_timeseries_kw = np.sin(np.arange(0,24*365)*1E-3)*0.5E6 + 0.6E6 - hydrogen_annual_output = 0 - - # for distributed - ndivs = [2, 5, 10] - - opex = [] - capex = [] - opex_distributed = np.zeros((len(ndivs), len(electrolyzer_sizes_mw))) - capex_distributed = np.zeros((len(ndivs), len(electrolyzer_sizes_mw))) - - for i, electrolyzer_size_mw in enumerate(electrolyzer_sizes_mw): - electrical_generation_timeseries_kw = electrolyzer_size_mw * 1000 * np.ones(365 * 24) - - # centralized - _, electrolyzer_total_capital_cost, electrolyzer_OM_cost, _, _, _, _ = basic_H2_cost_model( - electrolyzer_capex_kw, - time_between_replacement, - electrolyzer_size_mw, - useful_life, - electrical_generation_timeseries_kw, - hydrogen_annual_output, - 0, - 0, - include_refurb_in_opex=False, - offshore=0, - ) - - opex.append(electrolyzer_OM_cost) - capex.append(electrolyzer_total_capital_cost) - - for j, div in enumerate(ndivs): - # divided - electrolyzer_size_mw_distributed = electrolyzer_size_mw / div - electrical_generation_timeseries_kw_distibuted = ( - electrical_generation_timeseries_kw / div - ) - - ( - _, - electrolyzer_capital_cost_distributed, - electrolyzer_OM_cost_distributed, - electrolyzer_capex_kw_distributed, - time_between_replacement, - h2_tax_credit, - h2_itc, - ) = basic_H2_cost_model( - electrolyzer_capex_kw, - time_between_replacement, - electrolyzer_size_mw_distributed, - useful_life, - electrical_generation_timeseries_kw_distibuted, - hydrogen_annual_output, - 0, - 0, - include_refurb_in_opex=False, - offshore=0, - ) - # print(opex_distributed) - opex_distributed[j, i] = electrolyzer_OM_cost_distributed * div - capex_distributed[j, i] = electrolyzer_capital_cost_distributed * div - - fig, ax = plt.subplots(1, 2, figsize=(6, 3)) - ax[0].plot(electrolyzer_sizes_mw, np.asarray(capex) * 1e-6, label="Centralized") - ax[1].plot(electrolyzer_sizes_mw, np.asarray(opex) * 1e-6, label="Centralized") - - for i, div in enumerate(ndivs): - # dims(capex_distributed) - ax[0].plot( - electrolyzer_sizes_mw, - np.asarray(capex_distributed[i]) * 1e-6, - "--", - label=f"{div} Divisions", - ) - ax[1].plot( - electrolyzer_sizes_mw, - np.asarray(opex_distributed[i]) * 1e-6, - "--", - label=f"{div} Divisions", - ) - - ax[0].set(ylabel="CAPEX (M USD)", xlabel="Electrolyzer Size (MW)") - ax[1].set(ylabel="Annual OPEX (M USD)", xlabel="Electrolyzer Size (MW)") - plt.legend(frameon=False) - plt.tight_layout() - plt.show() - - ## plot divided energy signals - fig, ax = plt.subplots(1) - ax.plot(electrical_generation_timeseries_kw, label="1") - for div in ndivs: - ax.plot(electrical_generation_timeseries_kw / div, label=f"{div}") - - ax.set(xlabel="Hour", ylabel="Power (MW)") - plt.tight_layout() - plt.show() diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/BOP_efficiency_BOL.csv b/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/BOP_efficiency_BOL.csv deleted file mode 100644 index df25ab18e..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/BOP_efficiency_BOL.csv +++ /dev/null @@ -1,87 +0,0 @@ -operating_ratio,efficiency -0.937732223,4.285714286 -0.933250382,4.258241758 -0.929665402,4.230769231 -0.925182329,4.217032967 -0.920700488,4.18956044 -0.916217415,4.175824176 -0.911735574,4.148351648 -0.904564382,4.107142857 -0.896495097,4.07967033 -0.887531415,4.024725275 -0.878566501,3.983516484 -0.870498448,3.942307692 -0.862430395,3.901098901 -0.856154832,3.873626374 -0.847189918,3.832417582 -0.837328143,3.791208791 -0.827466368,3.75 -0.818501454,3.708791209 -0.805950328,3.653846154 -0.796985414,3.612637363 -0.786226778,3.571428571 -0.775468142,3.53021978 -0.757537082,3.461538462 -0.743192234,3.406593407 -0.730641108,3.351648352 -0.717193121,3.296703297 -0.703743902,3.255494505 -0.687605332,3.200549451 -0.674156113,3.159340659 -0.661603755,3.118131868 -0.646362046,3.063186813 -0.632017198,3.008241758 -0.614979303,2.980769231 -0.588977726,2.898351648 -0.570147341,2.857142857 -0.550420096,2.815934066 -0.530694082,2.760989011 -0.513656187,2.733516484 -0.490341497,2.692307692 -0.475096092,2.678571429 -0.449089588,2.651098901 -0.415906963,2.637362637 -0.388104272,2.637362637 -0.372856404,2.651098901 -0.348638693,2.678571429 -0.329802149,2.706043956 -0.309169418,2.760989011 -0.286741734,2.82967033 -0.266102843,2.953296703 -0.245462721,3.090659341 -0.228410043,3.228021978 -0.207766225,3.406593407 -0.194302222,3.53021978 -0.181735081,3.653846154 -0.173653477,3.763736264 -0.167365594,3.873626374 -0.16107648,3.997252747 -0.153889272,4.134615385 -0.146698369,4.313186813 -0.138608141,4.519230769 -0.131417237,4.697802198 -0.125120731,4.903846154 -0.120620411,5.082417582 -0.114320209,5.32967033 -0.110717982,5.494505495 -0.107116986,5.645604396 -0.103513527,5.824175824 -0.099907604,6.03021978 -0.097199773,6.222527473 -0.093595082,6.414835165 -0.089987927,6.634615385 -0.086377076,6.895604396 -0.084566107,7.087912088 -0.081858276,7.28021978 -0.079147982,7.5 -0.078235106,7.678571429 -0.076422904,7.884615385 -0.074610703,8.090659341 -0.070994924,8.406593407 -0.069177795,8.667582418 -0.067361898,8.914835165 -0.064645444,9.203296703 -0.06372764,9.436813187 -0.061910511,9.697802198 -0.061894496,9.876373626 -0.060088454,10.01373626 diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/PEM_BOP.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/PEM_BOP.py deleted file mode 100644 index 084217480..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/PEM_BOP.py +++ /dev/null @@ -1,136 +0,0 @@ -from pathlib import Path - -import numpy as np -import pandas as pd -import scipy.optimize - -from h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_tools import ( - get_electrolyzer_BOL_efficiency, -) - - -file_path = Path(__file__).parent - - -def calc_efficiency_curve(operating_ratio, a, b, c, d): - """Calculates efficiency [kWh/kg] given operation ratio with flattened end curves. - - Efficiency curve and general equation structure from Wang et. al (2023). See README.md - in PEM_BOP directory for more details. - - Wang, X.; Star, A.G.; Ahluwalia, R.K. Performance of Polymer Electrolyte Membrane Water - Electrolysis Systems: Configuration, Stack Materials, Turndown and Efficiency. Energies 2023, - 16, 4964. https://doi.org/10.3390/en16134964 - - Args: - operating_ratio (list or np.array): Operation ratios. - a (float): Coefficient a. - b (float): Coefficient b. - c (float): Coefficient c. - d (float): Coefficient d. - - Returns: - efficiency (list or np.array): Efficiency of electrolyzer BOP in kWh/kg. - """ - efficiency = a + b * operating_ratio + c * operating_ratio**2 + d / operating_ratio - - return efficiency - - -def calc_efficiency( - operating_ratio, efficiency, min_ratio, max_ratio, min_efficiency, max_efficiency -): - """Adjust efficiency list to not go above minimum or maximum operating ratios in - BOP_efficiency_BOL.csv - - Args: - operating_ratio (list or np.array): Operation ratios. - efficiency (list or np.array): Efficiencies calculated using curve fit. - min_ratio (float): Minimum operating ratio from the CSV. - max_ratio (float): Maximum operating ratio from the CSV. - min_efficiency (float): Efficiency at the minimum operating ratio. - max_efficiency (float): Efficiency at the maximum operating ratio. - - Returns: - efficiency (list or np.array): Efficiencies limited with minimum and maximum values - in kWh/kg. - """ - efficiency = np.where(operating_ratio <= min_ratio, min_efficiency, efficiency) - - efficiency = np.where(operating_ratio >= max_ratio, max_efficiency, efficiency) - return efficiency - - -def calc_curve_coefficients(): - """Calculates curve coefficients from BOP_efficiency_BOL.csv""" - df = pd.read_csv(file_path / "BOP_efficiency_BOL.csv") - operating_ratios = df["operating_ratio"].values - efficiency = df["efficiency"].values - - # Get min and max operating ratios - min_ratio_idx = df["operating_ratio"].idxmin() # Index of minimum operating ratio - max_ratio_idx = df["operating_ratio"].idxmax() # Index of maximum operating ratio - - # Get the efficiency at the min and max operating ratios - min_efficiency = df["efficiency"].iloc[min_ratio_idx] - max_efficiency = df["efficiency"].iloc[max_ratio_idx] - - # Get the actual min and max ratios - min_ratio = df["operating_ratio"].iloc[min_ratio_idx] - max_ratio = df["operating_ratio"].iloc[max_ratio_idx] - - curve_coeff, curve_cov = scipy.optimize.curve_fit( - calc_efficiency_curve, operating_ratios, efficiency, p0=(1.0, 1.0, 1.0, 1.0) - ) - return curve_coeff, min_ratio, max_ratio, min_efficiency, max_efficiency - - -def pem_bop( - power_profile_to_electrolyzer_kw, - electrolyzer_rated_mw, - electrolyzer_turn_down_ratio, -): - """ - Calculate PEM balance of plant energy consumption at the beginning-of-life - based on power provided to the electrolyzer. - - Args: - power_profile_to_electrolyzer_kw (list or np.array): Power profile to electrolyzer in kW. - electrolyzer_rated_mw (float): The rating of the PEM electrolyzer in MW. - electrolyzer_turn_down_ratio (float): The electrolyzer turndown ratio. - - Returns: - energy_consumption_bop_kwh (list or np.array): Energy consumed by electrolyzer BOP in kWh. - """ - operating_ratios = power_profile_to_electrolyzer_kw / (electrolyzer_rated_mw * 1e3) - - curve_coeff, min_ratio, max_ratio, min_efficiency, max_efficiency = calc_curve_coefficients() - - efficiencies = calc_efficiency_curve( - operating_ratios, - *curve_coeff, - ) # kwh/kg - - efficiencies = calc_efficiency( - operating_ratios, - efficiencies, - min_ratio, - max_ratio, - min_efficiency, - max_efficiency, - ) - - BOL_efficiency = get_electrolyzer_BOL_efficiency() # kwh/kg - - BOL_kg = (electrolyzer_rated_mw * 1000) / BOL_efficiency # kg/hr - - energy_consumption_bop_kwh = efficiencies * BOL_kg # kwh - - energy_consumption_bop_kwh = np.where( - power_profile_to_electrolyzer_kw - < electrolyzer_turn_down_ratio * electrolyzer_rated_mw * 1000, - 0, - energy_consumption_bop_kwh, - ) - - return energy_consumption_bop_kwh diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/README.md b/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/README.md deleted file mode 100644 index 267bf00f1..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# Proton Exchange Membrane Water Electrolysis Balance-of-Plant - -This balance-of-plant (BOP) model is derived from Wang et. al (2023). It is represented as an overall BOP efficiency curve (kWh/kg) at different operating ratios at the beginning-of-life (BOL) of the electrolyzer. The operating ratios are the percentage of rated power provided to the electrolyzer. - -The BOP curve is largely dominated by electrical losses from the power electronics which includes a transformer and a rectifier to condition alternating current power, but there are additional mechanical and hydrogen losses. - -The model in H2Integrate calculates a curve fit based on the provided CSV it also limits the calculated efficiencies to the maximum and minimum operating ratio values in the CSV, making the overall function a piecewise implementation. - -**NOTE**: BOP assumes AC current as an input and assumes power electronics for AC to DC conversion. BOP efficiency curve has not been optimized for economies of scale or other electrical infrastructure connections. - - -Citation for BOP model. Losses from BOP are shown in Figure 8. in Wang et. al (2023). -``` -@Article{en16134964, -AUTHOR = {Wang, Xiaohua and Star, Andrew G. and Ahluwalia, Rajesh K.}, -TITLE = {Performance of Polymer Electrolyte Membrane Water Electrolysis Systems: Configuration, Stack Materials, Turndown and Efficiency}, -JOURNAL = {Energies}, -VOLUME = {16}, -YEAR = {2023}, -NUMBER = {13}, -ARTICLE-NUMBER = {4964}, -URL = {https://www.mdpi.com/1996-1073/16/13/4964}, -ISSN = {1996-1073}, -DOI = {10.3390/en16134964} -} -``` diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_H2_LT_electrolyzer.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_H2_LT_electrolyzer.py deleted file mode 100644 index 2b964b6ec..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_H2_LT_electrolyzer.py +++ /dev/null @@ -1,516 +0,0 @@ -## Low-Temperature PEM Electrolyzer Model -""" -Python model of H2 PEM low-temp electrolyzer. - -Quick Hydrogen Physics: - -1 kg H2 <-> 11.1 N-m3 <-> 33.3 kWh (LHV) <-> 39.4 kWh (HHV) - -High mass energy density (1 kg H2= 3,77 l gasoline) -Low volumetric density (1 Nm³ H2= 0,34 l gasoline - -Hydrogen production from water electrolysis (~5 kWh/Nm³ H2) - -Power:1 MW electrolyser <-> 200 Nm³/h H2 <-> ±18 kg/h H2 -Energy:+/-55 kWh of electricity --> 1 kg H2 <-> 11.1 Nm³ <-> ±10 liters -demineralized water - -Power production from a hydrogen PEM fuel cell from hydrogen (+/-50% -efficiency): -Energy: 1 kg H2 --> 16 kWh -""" - -import sys -import math - -import numpy as np -import pandas as pd -from matplotlib import pyplot as plt - - -np.set_printoptions(threshold=sys.maxsize) - - -class PEM_electrolyzer_LT: - """ - Create an instance of a low-temperature PEM Electrolyzer System. Each - stack in the electrolyzer system in this model is rated at 1 MW_DC. - - Parameters - _____________ - np_array P_input_external_kW - 1-D array of time-series external power supply - - string voltage_type - Nature of voltage supplied to electrolyzer from the external power - supply ['variable' or 'constant] - - float power_supply_rating_MW - Rated power of external power supply - - Returns - _____________ - - """ - - def __init__(self, input_dict, output_dict): - self.input_dict = input_dict - self.output_dict = output_dict - - # array of input power signal - self.input_dict["P_input_external_kW"] = input_dict["P_input_external_kW"] - self.electrolyzer_system_size_MW = input_dict["electrolyzer_system_size_MW"] - - # self.input_dict['voltage_type'] = 'variable' # not yet implemented - self.input_dict["voltage_type"] = "constant" - self.stack_input_voltage_DC = 250 - - # Assumptions: - self.min_V_cell = 1.62 # Only used in variable voltage scenario - self.p_s_h2_bar = 31 # H2 outlet pressure - self.stack_input_current_lower_bound = 500 - self.stack_rating_kW = 1000 # 1 MW - self.cell_active_area = 1250 - self.N_cells = 130 - - # Constants: - self.moles_per_g_h2 = 0.49606 - self.V_TN = 1.48 # Thermo-neutral Voltage (Volts) - self.F = 96485 # Faraday's Constant (C/mol) - self.R = 8.314 # Ideal Gas Constant (J/mol/K) - - self.external_power_supply() - - def external_power_supply(self): - """ - External power source (grid or REG) which will need to be stepped - down and converted to DC power for the electrolyzer. - - Please note, for a wind farm as the electrolyzer's power source, - the model assumes variable power supplied to the stack at fixed - voltage (fixed voltage, variable power and current) - - TODO: extend model to accept variable voltage, current, and power - This will replicate direct DC-coupled PV system operating at MPP - """ - power_converter_efficiency = 0.95 - if self.input_dict["voltage_type"] == "constant": - self.input_dict["P_input_external_kW"] = np.where( - self.input_dict["P_input_external_kW"] > (self.electrolyzer_system_size_MW * 1000), - (self.electrolyzer_system_size_MW * 1000), - self.input_dict["P_input_external_kW"], - ) - - self.output_dict["curtailed_P_kW"] = np.where( - self.input_dict["P_input_external_kW"] > (self.electrolyzer_system_size_MW * 1000), - ( - self.input_dict["P_input_external_kW"] - - (self.electrolyzer_system_size_MW * 1000) - ), - 0, - ) - - self.output_dict["current_input_external_Amps"] = ( - self.input_dict["P_input_external_kW"] * 1000 * power_converter_efficiency - ) / (self.stack_input_voltage_DC * self.system_design()) - - self.output_dict["stack_current_density_A_cm2"] = ( - self.output_dict["current_input_external_Amps"] / self.cell_active_area - ) - - self.output_dict["current_input_external_Amps"] = np.where( - self.output_dict["current_input_external_Amps"] - < self.stack_input_current_lower_bound, - 0, - self.output_dict["current_input_external_Amps"], - ) - - else: - pass # TODO: extend model to variable voltage and current source - - def system_design(self): - """ - For now, system design is solely a function of max. external power - supply; i.e., a rated power supply of 50 MW means that the electrolyzer - system developed by this model is also rated at 50 MW - - TODO: Extend model to include this capability. - Assume that a PEM electrolyzer behaves as a purely resistive load - in a circuit, and design the configuration of the entire electrolyzer - system - which may consist of multiple stacks connected together in - series, parallel, or a combination of both. - """ - h2_production_multiplier = (self.electrolyzer_system_size_MW * 1000) / self.stack_rating_kW - self.output_dict["electrolyzer_system_size_MW"] = self.electrolyzer_system_size_MW - return h2_production_multiplier - - def cell_design(self): - """ - Creates an I-V (polarization) curve of each cell in a stack. - - Please note that this method is currently not used in the model. It - will be used once the electrolyzer model is expanded to variable - voltage supply as well as implementation of the self.system_design() - method - - Motivation: - - The most common representation of the electrolyzer performance is the - polarization curve that represents the relation between the current density - and the voltage (V): - Source: https://www.sciencedirect.com/science/article/pii/S0959652620312312 - - V = N_c(E_cell + V_Act,c + V_Act,a + iR_cell) - - where N_c is the number of electrolyzer cells,E_cell is the open circuit - voltage VAct,and V_Act,c are the anode and cathode activation over-potentials, - i is the current density and iRcell is the electrolyzer cell resistance - (ohmic losses). - - Use this to make a V vs. A (Amperes/cm2) graph which starts at 1.23V because - thermodynamic reaction of water formation/splitting dictates that standard - electrode potential has a ∆G of 237 kJ/mol (where: ∆H = ∆G + T∆S) - """ - - # Cell level inputs: - N_cells = 130 - self.cell_active_area / N_cells - (self.stack_rating_kW * 1000) / N_cells - - # V_cell_max = 3.0 #Volts - # V_cell_I_density_max = 2.50 #mA/cm2 - E_rev = 1.23 # (in Volts) Reversible potential at 25degC - T_C = 80 # Celsius - T_K = T_C + 273.15 # in Kelvins - # E_cell == Open Circuit Voltage - E_cell = ( - 1.5184 - - (1.5421 * (10 ** (-3)) * T_K) - + (9.523 * (10 ** (-5)) * T_K * math.log(T_K)) - + (9.84 * (10 ** (-8)) * (T_K**2)) - ) - # V_act = V_act_c + V_Act_a - R = 8.314 # Ideal Gas Constant (J/mol/K) - i = self.output_dict["stack_current_density_A_cm2"] - F = 96485 # Faraday's Constant (C/mol) - - # Following coefficient values obtained from Yigit and Selamet (2016) - - # https://www.sciencedirect.com/science/article/pii/S0360319916318341?via%3Dihub - a_a = 2 # Anode charge transfer coefficient - a_c = 0.5 # Cathode charge transfer coefficient - i_o_a = 2 * (10 ** (-7)) - i_o_c = 2 * (10 ** (-3)) - V_act = (((R * T_K) / (a_a * F)) * np.arcsinh(i / (2 * i_o_a))) + ( - ((R * T_K) / (a_c * F)) * np.arcsinh(i / (2 * i_o_c)) - ) - lambda_water_content = ((-2.89556 + (0.016 * T_K)) + 1.625) / 0.1875 - delta = 0.0003 # membrane thickness (cm) - assuming a 3-µm thick membrane - sigma = ((0.005139 * lambda_water_content) - 0.00326) * math.exp( - 1268 * ((1 / 303) - (1 / T_K)) - ) # Material thickness # material conductivity - R_cell = delta / sigma - V_cell = E_cell + V_act + (i * R_cell) - V_cell = np.where(V_cell < E_rev, E_rev, V_cell) - N_cells * V_cell # Stack operational voltage - - def dynamic_operation(self): - """ - Model the electrolyzer's realistic response/operation under variable RE - - TODO: add this capability to the model - """ - # When electrolyzer is already at or near its optimal operation - # temperature (~80degC) - - def water_electrolysis_efficiency(self): - """ - https://www.sciencedirect.com/science/article/pii/S2589299119300035#b0500 - - According to the first law of thermodynamics energy is conserved. - Thus, the conversion efficiency calculated from the yields of - converted electrical energy into chemical energy. Typically, - water electrolysis efficiency is calculated by the higher heating - value (HHV) of hydrogen. Since the electrolysis process water is - supplied to the cell in liquid phase efficiency can be calculated by: - - n_T = V_TN / V_cell - - where, V_TN is the thermo-neutral voltage (min. required V to - electrolyze water) - - Parameters - ______________ - - Returns - ______________ - - """ - - n_T = self.V_TN / (self.stack_input_voltage_DC / self.N_cells) - return n_T - - def faradaic_efficiency(self): - """ - Text background from: - [https://www.researchgate.net/publication/344260178_Faraday%27s_ - Efficiency_Modeling_of_a_Proton_Exchange_Membrane_Electrolyzer_ - Based_on_Experimental_Data] - - In electrolyzers, Faraday's efficiency is a relevant parameter to - assess the amount of hydrogen generated according to the input - energy and energy efficiency. Faraday's efficiency expresses the - faradaic losses due to the gas crossover current. The thickness - of the membrane and operating conditions (i.e., temperature, gas - pressure) may affect the Faraday's efficiency. - - Equation for n_F obtained from: - https://www.sciencedirect.com/science/article/pii/S0360319917347237#bib27 - - Parameters - ______________ - float f_1 - Coefficient - value at operating temperature of 80degC (mA2/cm4) - - float f_2 - Coefficient - value at operating temp of 80 degC (unitless) - - np_array current_input_external_Amps - 1-D array of current supplied to electrolyzer stack from external - power source - - - Returns - ______________ - - float n_F - Faradaic efficiency (unitless) - - """ - f_1 = 250 # Coefficient (mA2/cm4) - f_2 = 0.996 # Coefficient (unitless) - I_cell = self.output_dict["current_input_external_Amps"] * 1000 - - # Faraday efficiency - n_F = ( - ((I_cell / self.cell_active_area) ** 2) - / (f_1 + ((I_cell / self.cell_active_area) ** 2)) - ) * f_2 - - return n_F - - def compression_efficiency(self): - """ - In industrial contexts, the remaining hydrogen should be stored at - certain storage pressures that vary depending on the intended - application. In the case of subsequent compression, pressure-volume - work, Wc, must be performed. The additional pressure-volume work can - be related to the heating value of storable hydrogen. Then, the total - efficiency reduces by the following factor: - https://www.mdpi.com/1996-1073/13/3/612/htm - - Due to reasons of material properties and operating costs, large - amounts of gaseous hydrogen are usually not stored at pressures - exceeding 100 bar in aboveground vessels and 200 bar in underground - storages - https://www.sciencedirect.com/science/article/pii/S0360319919310195 - - Partial pressure of H2(g) calculated using: - The hydrogen partial pressure is calculated as a difference between - the cathode pressure, 101,325 Pa, and the water saturation - pressure - [Source: Energies2018,11,3273; doi:10.3390/en11123273] - - """ - n_limC = 0.825 # Limited efficiency of gas compressors (unitless) - H_LHV = 241 # Lower heating value of H2 (kJ/mol) - K = 1.4 # Average heat capacity ratio (unitless) - C_c = 2.75 # Compression factor (ratio of pressure after and before compression) - n_F = self.faradaic_efficiency() - j = self.output_dict["stack_current_density_A_cm2"] - n_x = ((1 - n_F) * j) * self.cell_active_area - n_h2 = j * self.cell_active_area - Z = 1 # [Assumption] Average compressibility factor (unitless) - T_in_C = 80 # Assuming electrolyzer operates at 80degC - T_in = 273.15 + T_in_C # (Kelvins) Assuming electrolyzer operates at 80degC - W_1_C = ( - (K / (K - 1)) - * ((n_h2 - n_x) / self.F) - * self.R - * T_in - * Z - * ((C_c ** ((K - 1) / K)) - 1) - ) # Single stage compression - - # Calculate partial pressure of H2 at the cathode: - A = 8.07131 - B = 1730.63 - C = 233.426 - p_h2o_sat = 10 ** (A - (B / (C + T_in_C))) # Pa - p_cat = 101325 # Cathode pressure (Pa) - p_h2_cat = p_cat - p_h2o_sat - p_s_h2_Pa = self.p_s_h2_bar * 1e5 - - s_C = math.log10(p_s_h2_Pa / p_h2_cat) / math.log10(C_c) - W_C = round(s_C) * W_1_C # Pressure-Volume work - energy reqd. for compression - net_energy_carrier = n_h2 - n_x # C/s - net_energy_carrier = np.where((n_h2 - n_x) == 0, 1, net_energy_carrier) - n_C = 1 - ((W_C / (((net_energy_carrier) / self.F) * H_LHV * 1000)) * (1 / n_limC)) - n_C = np.where((n_h2 - n_x) == 0, 0, n_C) - return n_C - - def total_efficiency(self): - """ - Aside from efficiencies accounted for in this model - (water_electrolysis_efficiency, faradaic_efficiency, and - compression_efficiency) all process steps such as gas drying above - 2 bar or water pumping can be assumed as negligible. Ultimately, the - total efficiency or system efficiency of a PEM electrolysis system is: - - n_T = n_p_h2 * n_F_h2 * n_c_h2 - https://www.mdpi.com/1996-1073/13/3/612/htm - """ - n_p_h2 = self.water_electrolysis_efficiency() - n_F_h2 = self.faradaic_efficiency() - n_c_h2 = self.compression_efficiency() - - n_T = n_p_h2 * n_F_h2 * n_c_h2 - self.output_dict["total_efficiency"] = n_T - return n_T - - def h2_production_rate(self): - """ - H2 production rate calculated using Faraday's Law of Electrolysis - (https://www.sciencedirect.com/science/article/pii/S0360319917347237#bib27) - - Parameters - _____________ - - float f_1 - Coefficient - value at operating temperature of 80degC (mA2/cm4) - - float f_2 - Coefficient - value at operating temp of 80 degC (unitless) - - np_array - 1-D array of current supplied to electrolyzer stack from external - power source - - - Returns - _____________ - - """ - # Single stack calculations: - n_Tot = self.total_efficiency() - h2_production_rate = n_Tot * ( - (self.N_cells * self.output_dict["current_input_external_Amps"]) / (2 * self.F) - ) # mol/s - h2_production_rate_g_s = h2_production_rate / self.moles_per_g_h2 - h2_produced_kg_hr = ( - h2_production_rate_g_s * 3.6 * 72.55 / 55.5 - ) ## TEMPORARY CORRECTION APPLIED FOR PEM EFFICIENCY to reach expected 55.5kwh/kg value - - self.output_dict["stack_h2_produced_kg_hr"] = h2_produced_kg_hr - - # Total electrolyzer system calculations: - h2_produced_kg_hr_system = self.system_design() * h2_produced_kg_hr - # h2_produced_kg_hr_system = h2_produced_kg_hr - self.output_dict["h2_produced_kg_hr_system"] = h2_produced_kg_hr_system - - return h2_produced_kg_hr_system - - def degradation(self): - """ - TODO - Add a time component to the model - for degradation -> - https://www.hydrogen.energy.gov/pdfs/progress17/ii_b_1_peters_2017.pdf - """ - pass - - def water_supply(self): - """ - Calculate water supply rate based system efficiency and H2 production - rate - TODO: Add this capability to the model - """ - water_used_kg_hr_system = self.h2_production_rate() * 10 - self.output_dict["water_used_kg_hr"] = water_used_kg_hr_system - self.output_dict["water_used_kg_annual"] = np.sum(water_used_kg_hr_system) - - def h2_storage(self): - """ - Model to estimate Ideal Isorthermal H2 compression at 70degC - https://www.sciencedirect.com/science/article/pii/S036031991733954X - - The amount of hydrogen gas stored under pressure can be estimated - using the van der Waals equation - - p = [(nRT)/(V-nb)] - [a * ((n^2) / (V^2))] - - where p is pressure of the hydrogen gas (Pa), n the amount of - substance (mol), T the temperature (K), and V the volume of storage - (m3). The constants a and b are called the van der Waals coefficients, - which for hydrogen are 2.45 x 10^2 Pa m6mol-2 and 26.61 x 10^6 , - respectively. - """ - - pass - - -if __name__ == "__main__": - # Example on how to use this model: - in_dict = {} - in_dict["electrolyzer_system_size_MW"] = 15 - out_dict = {} - - electricity_profile = pd.read_csv("sample_wind_electricity_profile.csv") - in_dict["P_input_external_kW"] = electricity_profile.iloc[:, 1].to_numpy() - - el = PEM_electrolyzer_LT(in_dict, out_dict) - el.h2_production_rate() - print( - "Hourly H2 production by stack (kg/hr): ", - out_dict["stack_h2_produced_kg_hr"][0:50], - ) - print( - "Hourly H2 production by system (kg/hr): ", - out_dict["h2_produced_kg_hr_system"][0:50], - ) - fig, axs = plt.subplots(2, 2) - fig.suptitle( - "PEM H2 Electrolysis Results for " - + str(out_dict["electrolyzer_system_size_MW"]) - + " MW System" - ) - - axs[0, 0].plot(out_dict["stack_h2_produced_kg_hr"]) - axs[0, 0].set_title("Hourly H2 production by stack") - axs[0, 0].set_ylabel("kg_h2 / hr") - axs[0, 0].set_xlabel("Hour") - - axs[0, 1].plot(out_dict["h2_produced_kg_hr_system"]) - axs[0, 1].set_title("Hourly H2 production by system") - axs[0, 1].set_ylabel("kg_h2 / hr") - axs[0, 1].set_xlabel("Hour") - - axs[1, 0].plot(in_dict["P_input_external_kW"]) - axs[1, 0].set_title("Hourly Energy Supplied by Wind Farm (kWh)") - axs[1, 0].set_ylabel("kWh") - axs[1, 0].set_xlabel("Hour") - - total_efficiency = out_dict["total_efficiency"] - system_h2_eff = (1 / total_efficiency) * 33.3 - system_h2_eff = np.where(total_efficiency == 0, 0, system_h2_eff) - - axs[1, 1].plot(system_h2_eff) - axs[1, 1].set_title("Total Stack Energy Usage per mass net H2") - axs[1, 1].set_ylabel("kWh_e/kg_h2") - axs[1, 1].set_xlabel("Hour") - - plt.show() - print("Annual H2 production (kg): ", np.sum(out_dict["h2_produced_kg_hr_system"])) - print("Annual energy production (kWh): ", np.sum(in_dict["P_input_external_kW"])) - print( - "H2 generated (kg) per kWH of energy generated by wind farm: ", - np.sum(out_dict["h2_produced_kg_hr_system"]) / np.sum(in_dict["P_input_external_kW"]), - ) diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_costs_Singlitico_model.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_costs_Singlitico_model.py deleted file mode 100644 index 48077ef85..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_costs_Singlitico_model.py +++ /dev/null @@ -1,201 +0,0 @@ -""" -Author: Christopher Bay -Date: 01/24/2023 -Institution: National Renewable Energy Laboratory -Description: This file implements electrolzyer CapEx and OpEx models from [1]. The exact extent of - what is included in the costs is unclear in [1]. Source [2] (cited by [1]) states that - "equipment costs include the electrolyser system, the filling centre or compressor skids and - storage systems". -Sources: - - [1] Singlitico, Alessandro, Jacob Østergaard, and Spyros Chatzivasileiadis. "Onshore, offshore - or in-turbine electrolysis? Techno-economic overview of alternative integration designs for - green hydrogen production into Offshore Wind Power Hubs." Renewable and Sustainable Energy - Transition 1 (2021): 100005. - - [2] [E. Tractebel , H. Engie , Study on early business cases for h2 in energy storage and more - broadly power to h2 applications, EU Comm, 2017, p. 228 .] - https://hsweb.hs.uni-hamburg.de/projects/star-formation/hydrogen/P2H_Full_Study_FCHJU.pdf -""" - -from __future__ import annotations - - -class PEMCostsSingliticoModel: - def __init__( - self, - elec_location: int, - ): - """ - Initialize object for PEM costs based on [1]. - - Args: - elec_location (int): Parameter for indicating the electrolyzer location; - 0 is for onshore, 1 is for offshore or in-turbine. - """ - # Values for CapEX & OpEx taken from [1], Table B.2, PEMEL. - # Installation costs include land, contingency, contractors, legal fees, construction, - # engineering, yard improvements, buildings, electrics, piping, instrumentation, - # and installation and grid connection. - self.IF = 0.33 # installation fraction [% RC_elec] - self.RP_elec = 10 # reference power [MW] - - # Values for OpEx taken from [1], Table B.3, PEMEL. - self.RP_SR = 5 # reference power [MW] - self.RU_SR = 0.41 # reference cost share [%], for a reference power, RP_SR, of 5MW - self.P_stack_max_bar = 2 # average max size [MW] - self.SF_SR_0 = 0.11 # average scale factor - - # NOTE: 1 for offshore or in-turbine electrolyzer location, 0 for onshore; from [1], - self.OS = elec_location - # Table B.1 notes for CapEx_el - - # NOTE: This is used in the stack replacement cost code that is currently commented out; - # more work needs to be done to make sure this is set and used correctly. - # self.P_elec_bar = 1 * 10**3 # scaled max [MW] from [1], Table B.1 notes forOpEx_elec_eq - - # NOTE: This is used in the stack replacement cost code that is currently commented out. - # self.OH_max = 85000 # Lifetime maximum operating hours [h], taken from [1], Table 1, PEMEL - - def run( - self, - P_elec: float, - RC_elec: float, - ) -> tuple: - """ - Computes the CapEx and OpEx costs for a single electrolyzer. - - Args: - P_elec (float): Nominal capacity of the electrolyzer [GW]. - RC_elec (float): Reference cost of the electrolyzer [MUSD/GW] for a 10 MW electrolyzer - plant installed. - - Returns: - tuple: CapEx and OpEx costs for a single electrolyzer. - """ - capex = self.calc_capex(P_elec, RC_elec) - - opex = self.calc_opex(P_elec, capex) - - return capex, opex - - def calc_capex( - self, - P_elec: float, - RC_elec: float, - ) -> float: - """ - CapEx for a single electrolyzer, given the electrolyzer capacity and reference cost. - Equation from [1], Table B.1, CapEx_EL. For in-turbine electrolyzers, - it is assumed that the maximum electrolyzer size is equal to the turbine rated capacity. - - NOTE: If the single electrolyzer capacity exceeds 100MW, the CapEx becomes fixed at the cost - of a 100MW system, due to decreasing economies of scale (based on assumption from [1]). As - such, if you use the output to calculate a cost per unit of electrolyzer, you will need to - divide the cost by 100MW and not the user-specified size of the electrolyzer for sizes above - 100MW. - - Args: - P_elec (float): Nominal capacity of the electrolyzer [GW]. - RC_elec (float): Reference cost of the electrolyzer [MUSD/GW]. - - Returns: - float: CapEx for electrolyzer [MUSD]. - """ - # Choose the scale factor based on electrolyzer size, [1], Table B.2. - if P_elec < 10 / 10**3: - self.SF_elec = -0.21 # scale factor, -0.21 for <10MW, -0.14 for >10MW - else: - self.SF_elec = -0.14 # scale factor, -0.21 for <10MW, -0.14 for >10MW - - # If electrolyzer capacity is >100MW, fix unit cost to 100MW electrolyzer as economies of - # scale stop at sizes above this, according to assumption in [1]. - if P_elec > 100 / 10**3: - P_elec_cost_per_unit_calc = 0.1 - else: - P_elec_cost_per_unit_calc = P_elec - - # Return the cost of a single electrolyzer of the specified capacity in millions of USD (or - # the supplied currency). - # MUSD = GW * MUSD/GW * - * GW * MW/GW / MW ** - - cost = ( - P_elec_cost_per_unit_calc - * RC_elec - * (1 + self.IF * self.OS) - * ((P_elec_cost_per_unit_calc * 10**3 / self.RP_elec) ** self.SF_elec) - ) - cost_per_unit = cost / P_elec_cost_per_unit_calc - - return cost_per_unit * P_elec - - def calc_opex( - self, - P_elec: float, - capex_elec: float, - RC_elec: float | None = None, - OH: float | None = None, - ) -> float: - """ - OpEx for a single electrolyzer, given the electrolyzer capacity and reference cost. - Equations from [1], Table B.1, OpEx_elec_eq and OpEx_elec_neq. - The returned OpEx cost include equipment and non-equipment costs, but excludes the stack - replacement cost. - - NOTE: If the single electrolyzer capacity exceeds 100MW, the OpEx becomes fixed at the cost - of a 100MW system, due to decreasing economies of scale (based on assumption from [1]). - As such, if you use the output to calculate a cost per unit of electrolyzer, you will need - to divide the cost by 100MW and not the user-specified size of the electrolyzer for sizes - above 100 MW. - - NOTE: Code for the stack replacement cost is included below, but does not currently match - results from [1]. DO NOT USE in the current form. - - Args: - P_elec (float): Nominal capacity of the electrolyzer [GW]. - capex_elec (float): CapEx for electrolyzer [MUSD]. - RC_elec (float, optional): Reference cost of the electrolyzer [MUSD/GW]. Defaults to - None. Not currently used. - OH (float, optional): Operating hours [h]. Defaults to None. Not currently used. - - Returns: - float: OpEx for electrolyzer [MUSD]. - """ - # If electrolyzer capacity is >100MW, fix unit cost to 100MW electrolyzer as economies of - # scale stop at sizes above this, according to assumption in [1]. - if P_elec > 100 / 10**3: - P_elec = 0.1 - - # Including material cost for planned and unplanned maintenance, labor cost in central - # Europe, which all depend on a system scale. Excluding the cost of electricity and the - # stack replacement, calculated separately. Scaled maximum to P_elec_bar = 1 GW. - # MUSD*MW MUSD * - * - * GW * MW/GW - opex_elec_eq = ( - capex_elec * (1 - self.IF * (1 + self.OS)) * 0.0344 * (P_elec * 10**3) ** -0.155 - ) - - # Covers the other operational expenditure related to the facility level. This includes site - # management, land rent and taxes, administrative fees (insurance, legal fees...), and site - # maintenance. - # MUSD MUSD - opex_elec_neq = 0.04 * capex_elec * self.IF * (1 + self.OS) - - # NOTE: The stack replacement costs below don't match the results in [1] supplementary - # materials. - # ***DO NOT USE*** stack replacement cost in its current form. - - # Choose the scale factor based on electrolyzer size, [1], Table B.2. - # if P_elec < 10 / 10**3: - # self.SF_elec = -0.21 # scale factor, -0.21 for <10MW, -0.14 for >10MW - # else: - # self.SF_elec = -0.14 # scale factor, -0.21 for <10MW, -0.14 for >10MW - - # Approximation of stack costs and replacement cost depending on the electrolyzer equipment - # costs. - # Paid only the year in which the replacement is needed. - # MUSD/GW % * MUSD/GW * - * MW / MW ** - - # RC_SR = self.RU_SR * RC_elec * (1 - self.IF) * (self.RP_SR / self.RP_elec) ** self.SF_elec - # # - - * MW / MW - # SF_SR = 1 - (1 - self.SF_SR_0) * np.exp(-self.P_elec_bar / self.P_stack_max_bar) - # # SF_SR = 1 - (1 - self.SF_SR_0) * np.exp(-P_elec * 10**3 / self.P_stack_max_bar) - # # MUSD GW * MUSD/GW * GW * MW/GW MW ** - * h / h - # opex_elec_sr = P_elec * RC_SR * (P_elec * 10**3 / self.RP_SR) ** SF_SR * OH / self.OH_max - - return opex_elec_eq + opex_elec_neq diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_costs_custom.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_costs_custom.py deleted file mode 100644 index eb02807a0..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_costs_custom.py +++ /dev/null @@ -1,24 +0,0 @@ -def calc_custom_electrolysis_capex_fom(electrolyzer_capacity_kW, electrolyzer_config): - """Calculates electrolyzer total installed capex and fixed O&M based on user-input values. - - Only used if h2integrate_config["electrolyzer"]["cost_model"] is set to "basic_custom" - Requires additional inputs in h2integrate_config["electrolyzer"]: - - fixed_om_per_kw: electrolyzer fixed o&m in $/kW-year - - electrolyzer_capex: electrolyzer capex in $/kW - - Args: - electrolyzer_capacity_kW (float or int): electrolyzer capacity in kW - electrolyzer_config (dict): ``h2integrate_config["electrolyzer"]`` - - Returns: - 2-element tuple containing - - - **capex** (float): electrolyzer overnight capex in $ - - **fixed_om** (float): electrolyzer fixed O&M in $/year - """ - electrolyzer_capex = electrolyzer_config["electrolyzer_capex"] * electrolyzer_capacity_kW - if "fixed_om_per_kw" in electrolyzer_config.keys(): - electrolyzer_fopex = electrolyzer_config["fixed_om_per_kw"] * electrolyzer_capacity_kW - else: - electrolyzer_fopex = 0.0 - return electrolyzer_capex, electrolyzer_fopex diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_electrolyzer_IVcurve.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_electrolyzer_IVcurve.py deleted file mode 100644 index 79d575a6e..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_electrolyzer_IVcurve.py +++ /dev/null @@ -1,657 +0,0 @@ -## Low-Temperature PEM Electrolyzer Model -""" -Python model of H2 PEM low-temp electrolyzer. - -Quick Hydrogen Physics: - -1 kg H2 <-> 11.1 N-m3 <-> 33.3 kWh (LHV) <-> 39.4 kWh (HHV) - -High mass energy density (1 kg H2= 3,77 l gasoline) -Low volumetric density (1 Nm³ H2= 0,34 l gasoline - -Hydrogen production from water electrolysis (~5 kWh/Nm³ H2) - -Power:1 MW electrolyser <-> 200 Nm³/h H2 <-> ±18 kg/h H2 -Energy:+/-55 kWh of electricity --> 1 kg H2 <-> 11.1 Nm³ <-> ±10 liters -demineralized water - -Power production from a hydrogen PEM fuel cell from hydrogen (+/-50% -efficiency): -Energy: 1 kg H2 --> 16 kWh -""" - -import sys -import math - -import numpy as np -import scipy -import pandas as pd -from matplotlib import pyplot as plt - - -np.set_printoptions(threshold=sys.maxsize) - - -def calc_current( - P_T, p1, p2, p3, p4, p5, p6 -): # calculates i-v curve coefficients given the stack power and stack temp - pwr, tempc = P_T - i_stack = ( - p1 * (pwr**2) + p2 * (tempc**2) + (p3 * pwr * tempc) + (p4 * pwr) + (p5 * tempc) + (p6) - ) - return i_stack - - -class PEM_electrolyzer_LT: - """ - Create an instance of a low-temperature PEM Electrolyzer System. Each - stack in the electrolyzer system in this model is rated at 1 MW_DC. - - Parameters - _____________ - np_array P_input_external_kW - 1-D array of time-series external power supply - - string voltage_type - Nature of voltage supplied to electrolyzer from the external power - supply ['variable' or 'constant] - - float power_supply_rating_MW - Rated power of external power supply - - Returns - _____________ - - """ - - def __init__(self, input_dict, output_dict): - self.input_dict = input_dict - self.output_dict = output_dict - - # array of input power signal - self.input_dict["P_input_external_kW"] = input_dict["P_input_external_kW"] - self.electrolyzer_system_size_MW = input_dict["electrolyzer_system_size_MW"] - - # self.input_dict['voltage_type'] = 'variable' # not yet implemented - self.input_dict["voltage_type"] = "constant" - self.stack_input_voltage_DC = 250 - - # Assumptions: - self.min_V_cell = 1.62 # Only used in variable voltage scenario - self.p_s_h2_bar = 31 # H2 outlet pressure - - # any current below this amount (10% rated) will saturate the H2 production to zero, used to - # be 500 (12.5% of rated) - self.stack_input_current_lower_bound = 400 # [A] - self.stack_rating_kW = 1000 # 1 MW - self.cell_active_area = 1250 # [cm^2] - self.N_cells = 130 - - # PEM electrolyzers have a max current density of approx 2 A/cm^2 so max is 2*cell_area - self.max_cell_current = 2 * self.cell_active_area - - # Constants: - self.moles_per_g_h2 = 0.49606 # [1/weight_h2] - self.V_TN = 1.48 # Thermo-neutral Voltage (Volts) in standard conditions - self.F = 96485.34 # Faraday's Constant (C/mol) or [As/mol] - self.R = 8.314 # Ideal Gas Constant (J/mol/K) - - # Additional Constants - self.T_C = 80 # stack temperature in [C] - self.mmHg_2_Pa = 133.322 # convert between mmHg to Pa - self.patmo = 101325 # atmospheric pressure [Pa] - self.mmHg_2_atm = self.mmHg_2_Pa / self.patmo # convert from mmHg to atm - - self.curve_coeff = self.iv_curve() # this initializes the I-V curve to calculate current - self.external_power_supply() - - def external_power_supply(self): - """ - External power source (grid or REG) which will need to be stepped - down and converted to DC power for the electrolyzer. - - Please note, for a wind farm as the electrolyzer's power source, - the model assumes variable power supplied to the stack at fixed - voltage (fixed voltage, variable power and current) - - TODO: extend model to accept variable voltage, current, and power - This will replicate direct DC-coupled PV system operating at MPP - """ - power_converter_efficiency = ( - 1.0 # this used to be 0.95 but feel free to change as you'd like - ) - if self.input_dict["voltage_type"] == "constant": - self.input_dict["P_input_external_kW"] = np.where( - self.input_dict["P_input_external_kW"] > (self.electrolyzer_system_size_MW * 1000), - (self.electrolyzer_system_size_MW * 1000), - self.input_dict["P_input_external_kW"], - ) - - self.output_dict["curtailed_P_kW"] = np.where( - self.input_dict["P_input_external_kW"] > (self.electrolyzer_system_size_MW * 1000), - ( - self.input_dict["P_input_external_kW"] - - (self.electrolyzer_system_size_MW * 1000) - ), - 0, - ) - - # Current used to be calculated as Power/Voltage but now it uses the IV curve - # self.output_dict['current_input_external_Amps'] = \ - # (self.input_dict['P_input_external_kW'] * 1000 * - # power_converter_efficiency) / (self.stack_input_voltage_DC * - # self.system_design()) - - self.output_dict["current_input_external_Amps"] = calc_current( - ( - ( - (self.input_dict["P_input_external_kW"] * power_converter_efficiency) - / self.system_design() - ), - self.T_C, - ), - *self.curve_coeff, - ) - - self.output_dict["stack_current_density_A_cm2"] = ( - self.output_dict["current_input_external_Amps"] / self.cell_active_area - ) - - self.output_dict["current_input_external_Amps"] = np.where( - self.output_dict["current_input_external_Amps"] - < self.stack_input_current_lower_bound, - 0, - self.output_dict["current_input_external_Amps"], - ) - - else: - pass # TODO: extend model to variable voltage and current source - - def iv_curve(self): - """ - This is a new function that creates the I-V curve to calculate current based - on input power and electrolyzer temperature - - current range is 0: max_cell_current+10 -> PEM have current density approx = 2 A/cm^2 - - temperature range is 40 degC : rated_temp+5 -> temperatures for PEM are usually within - 60-80degC - - calls cell_design() which calculates the cell voltage - """ - current_range = np.arange(0, self.max_cell_current + 10, 10) - temp_range = np.arange(40, self.T_C + 5, 5) - idx = 0 - powers = np.zeros(len(current_range) * len(temp_range)) - currents = np.zeros(len(current_range) * len(temp_range)) - temps_C = np.zeros(len(current_range) * len(temp_range)) - for i in range(len(current_range)): - for t in range(len(temp_range)): - powers[idx] = ( - current_range[i] - * self.cell_design(temp_range[t], current_range[i]) - * self.N_cells - * (1e-3) - ) # stack power - currents[idx] = current_range[i] - temps_C[idx] = temp_range[t] - idx = idx + 1 - - curve_coeff, curve_cov = scipy.optimize.curve_fit( - calc_current, (powers, temps_C), currents, p0=(1.0, 1.0, 1.0, 1.0, 1.0, 1.0) - ) # updates IV curve coeff - return curve_coeff - - def system_design(self): - """ - For now, system design is solely a function of max. external power - supply; i.e., a rated power supply of 50 MW means that the electrolyzer - system developed by this model is also rated at 50 MW - - TODO: Extend model to include this capability. - Assume that a PEM electrolyzer behaves as a purely resistive load - in a circuit, and design the configuration of the entire electrolyzer - system - which may consist of multiple stacks connected together in - series, parallel, or a combination of both. - """ - h2_production_multiplier = (self.electrolyzer_system_size_MW * 1000) / self.stack_rating_kW - self.output_dict["electrolyzer_system_size_MW"] = self.electrolyzer_system_size_MW - return h2_production_multiplier - - def cell_design(self, Stack_T, Stack_Current): - """ - - Please note that this method is currently not used in the model. It - will be used once the electrolyzer model is expanded to variable - voltage supply as well as implementation of the self.system_design() - method - - Motivation: - - The most common representation of the electrolyzer performance is the - polarization curve that represents the relation between the current density - and the voltage (V): - Source: https://www.sciencedirect.com/science/article/pii/S0959652620312312 - - V = N_c(E_cell + V_Act,c + V_Act,a + iR_cell) - - where N_c is the number of electrolyzer cells,E_cell is the open circuit - voltage VAct,and V_Act,c are the anode and cathode activation over-potentials, - i is the current density and iRcell is the electrolyzer cell resistance - (ohmic losses). - - Use this to make a V vs. A (Amperes/cm2) graph which starts at 1.23V because - thermodynamic reaction of water formation/splitting dictates that standard - electrode potential has a ∆G of 237 kJ/mol (where: ∆H = ∆G + T∆S) - - 10/31/2022 - ESG: https://www.sciencedirect.com/science/article/pii/S0360319906000693 - -> calculates cell voltage to make IV curve (called by iv_curve) - Another good source for the equations used in this function: - https://www.sciencedirect.com/science/article/pii/S0360319918309017 - - """ - - # Cell level inputs: - - E_rev0 = ( - 1.229 # (in Volts) Reversible potential at 25degC - Nerst Equation (see Note below) - ) - # E_th = 1.48 # (in Volts) Thermoneutral potential at 25degC - No longer used - - T_K = Stack_T + 273.15 # in Kelvins - # E_cell == Open Circuit Voltage - used to be a static variable, now calculated - # NOTE: E_rev is unused right now, E_rev0 is the general nerst equation for operating at 25 - # deg C at atmospheric pressure (whereas we will be operating at higher temps). From the - # literature above, it appears that E_rev0 is more correct - # https://www.sciencedirect.com/science/article/pii/S0360319911021380 - ( - 1.5184 - - (1.5421 * (10 ** (-3)) * T_K) - + (9.523 * (10 ** (-5)) * T_K * math.log(T_K)) - + (9.84 * (10 ** (-8)) * (T_K**2)) - ) - - # Calculate partial pressure of H2 at the cathode: - # Uses Antoine formula (see link below) - # p_h2o_sat calculation taken from compression efficiency calculation - # https://www.omnicalculator.com/chemistry/vapour-pressure-of-water#antoine-equation - A = 8.07131 - B = 1730.63 - C = 233.426 - - p_h2o_sat_mmHg = 10 ** ( - A - (B / (C + Stack_T)) - ) # vapor pressure of water in [mmHg] using Antoine formula - p_h20_sat_atm = p_h2o_sat_mmHg * self.mmHg_2_atm # convert mmHg to atm - - # could also use Arden-Buck equation (see below). Arden Buck and Antoine equations give - # barely different pressures for the temperatures we're looking, however, the differences - # between the two become more substantial at higher temps - - # p_h20_sat_pa=((0.61121*math.exp((18.678-(Stack_T/234.5))*(Stack_T/(257.14+Stack_T))))*1e+3) #ARDEN BUCK # noqa: E501 - # p_h20_sat_atm=p_h20_sat_pa/self.patmo - - # Cell reversible voltage kind of explain in Equations (12)-(15) of below source - # https://www.sciencedirect.com/science/article/pii/S0360319906000693 - # OR see equation (8) in the source below - # https://www.sciencedirect.com/science/article/pii/S0360319917309278?via%3Dihub - E_cell = E_rev0 + ((self.R * T_K) / (2 * self.F)) * ( - np.log((1 - p_h20_sat_atm) * math.sqrt(1 - p_h20_sat_atm)) - ) # 1 value is atmoshperic pressure in atm - i = Stack_Current / self.cell_active_area # i is cell current density - - # Following coefficient values obtained from Yigit and Selamet (2016) - - # https://www.sciencedirect.com/science/article/pii/S0360319916318341?via%3Dihub - a_a = 2 # Anode charge transfer coefficient - a_c = 0.5 # Cathode charge transfer coefficient - i_o_a = 2 * (10 ** (-7)) # anode exchange current density - i_o_c = 2 * (10 ** (-3)) # cathode exchange current density - - # below is the activation energy for anode and cathode - see - # https://www.sciencedirect.com/science/article/pii/S0360319911021380 - V_act = (((self.R * T_K) / (a_a * self.F)) * np.arcsinh(i / (2 * i_o_a))) + ( - ((self.R * T_K) / (a_c * self.F)) * np.arcsinh(i / (2 * i_o_c)) - ) - - # equation 13 and 12 for lambda_water_content and sigma: - # from https://www.sciencedirect.com/science/article/pii/S0360319917309278?via%3Dihub - lambda_water_content = ((-2.89556 + (0.016 * T_K)) + 1.625) / 0.1875 - - # reasonable membrane thickness of 180-µm NOTE: this will likely decrease in the future - delta = 0.018 # [cm] - - sigma = ((0.005139 * lambda_water_content) - 0.00326) * math.exp( - 1268 * ((1 / 303) - (1 / T_K)) - ) # membrane proton conductivity [S/cm] - - R_cell = delta / sigma # ionic resistance [ohms] - R_elec = 3.5 * ( - 10 ** (-5) - ) # [ohms] from Table 1 in https://journals.utm.my/jurnalteknologi/article/view/5213/3557 - V_cell = E_cell + V_act + (i * (R_cell + R_elec)) # cell voltage [V] - # NOTE: R_elec is to account for the electronic resistance measured between stack terminals - # in open-circuit conditions - # Supposedly, removing it shouldn't lead to large errors - # calculation for it: http://www.electrochemsci.org/papers/vol7/7043314.pdf - - # V_stack = self.N_cells * V_cell # Stack operational voltage -> this is combined in iv_calc for power rather than here # noqa: E501 - - return V_cell - - def dynamic_operation(self): # UNUSED - """ - Model the electrolyzer's realistic response/operation under variable RE - - TODO: add this capability to the model - """ - # When electrolyzer is already at or near its optimal operation - # temperature (~80degC) - - def water_electrolysis_efficiency(self): # UNUSED - """ - https://www.sciencedirect.com/science/article/pii/S2589299119300035#b0500 - - According to the first law of thermodynamics energy is conserved. - Thus, the conversion efficiency calculated from the yields of - converted electrical energy into chemical energy. Typically, - water electrolysis efficiency is calculated by the higher heating - value (HHV) of hydrogen. Since the electrolysis process water is - supplied to the cell in liquid phase efficiency can be calculated by: - - n_T = V_TN / V_cell - - where, V_TN is the thermo-neutral voltage (min. required V to - electrolyze water) - - Parameters - ______________ - - Returns - ______________ - - """ - # From the source listed in this function ... - # n_T=V_TN/V_cell NOT what's below which is input voltage -> this should call cell_design() - n_T = self.V_TN / (self.stack_input_voltage_DC / self.N_cells) - return n_T - - def faradaic_efficiency(self): # ONLY EFFICIENCY CONSIDERED RIGHT NOW - """ - Text background from: - [https://www.researchgate.net/publication/344260178_Faraday%27s_ - Efficiency_Modeling_of_a_Proton_Exchange_Membrane_Electrolyzer_ - Based_on_Experimental_Data] - - In electrolyzers, Faraday's efficiency is a relevant parameter to - assess the amount of hydrogen generated according to the input - energy and energy efficiency. Faraday's efficiency expresses the - faradaic losses due to the gas crossover current. The thickness - of the membrane and operating conditions (i.e., temperature, gas - pressure) may affect the Faraday's efficiency. - - Equation for n_F obtained from: - https://www.sciencedirect.com/science/article/pii/S0360319917347237#bib27 - - Parameters - ______________ - float f_1 - Coefficient - value at operating temperature of 80degC (mA2/cm4) - - float f_2 - Coefficient - value at operating temp of 80 degC (unitless) - - np_array current_input_external_Amps - 1-D array of current supplied to electrolyzer stack from external - power source - - - Returns - ______________ - - float n_F - Faradaic efficiency (unitless) - - """ - f_1 = 250 # Coefficient (mA2/cm4) - f_2 = 0.996 # Coefficient (unitless) - I_cell = self.output_dict["current_input_external_Amps"] * 1000 - - # Faraday efficiency - n_F = ( - ((I_cell / self.cell_active_area) ** 2) - / (f_1 + ((I_cell / self.cell_active_area) ** 2)) - ) * f_2 - - return n_F - - def compression_efficiency(self): # UNUSED AND MAY HAVE ISSUES - # Should this only be used if we plan on storing H2? - """ - In industrial contexts, the remaining hydrogen should be stored at - certain storage pressures that vary depending on the intended - application. In the case of subsequent compression, pressure-volume - work, Wc, must be performed. The additional pressure-volume work can - be related to the heating value of storable hydrogen. Then, the total - efficiency reduces by the following factor: - https://www.mdpi.com/1996-1073/13/3/612/htm - - Due to reasons of material properties and operating costs, large - amounts of gaseous hydrogen are usually not stored at pressures - exceeding 100 bar in aboveground vessels and 200 bar in underground - storages - https://www.sciencedirect.com/science/article/pii/S0360319919310195 - - Partial pressure of H2(g) calculated using: - The hydrogen partial pressure is calculated as a difference between - the cathode pressure, 101,325 Pa, and the water saturation - pressure - [Source: Energies2018,11,3273; doi:10.3390/en11123273] - - """ - n_limC = 0.825 # Limited efficiency of gas compressors (unitless) - H_LHV = 241 # Lower heating value of H2 (kJ/mol) - K = 1.4 # Average heat capacity ratio (unitless) - C_c = 2.75 # Compression factor (ratio of pressure after and before compression) - n_F = self.faradaic_efficiency() - j = self.output_dict["stack_current_density_A_cm2"] - n_x = ((1 - n_F) * j) * self.cell_active_area - n_h2 = j * self.cell_active_area - Z = 1 # [Assumption] Average compressibility factor (unitless) - T_in = 273.15 + self.T_C # (Kelvins) Assuming electrolyzer operates at 80degC - W_1_C = ( - (K / (K - 1)) - * ((n_h2 - n_x) / self.F) - * self.R - * T_in - * Z - * ((C_c ** ((K - 1) / K)) - 1) - ) # Single stage compression - - # Calculate partial pressure of H2 at the cathode: This is the Antoine formula (see link - # below) - # https://www.omnicalculator.com/chemistry/vapour-pressure-of-water#antoine-equation - A = 8.07131 - B = 1730.63 - C = 233.426 - p_h2o_sat = 10 ** (A - (B / (C + self.T_C))) # [mmHg] - p_cat = 101325 # Cathode pressure (Pa) - # Fixed unit bug between mmHg and Pa - - p_h2_cat = p_cat - (p_h2o_sat * self.mmHg_2_Pa) # convert mmHg to Pa - p_s_h2_Pa = self.p_s_h2_bar * 1e5 - - s_C = math.log10(p_s_h2_Pa / p_h2_cat) / math.log10(C_c) - W_C = round(s_C) * W_1_C # Pressure-Volume work - energy reqd. for compression - net_energy_carrier = n_h2 - n_x # C/s - net_energy_carrier = np.where((n_h2 - n_x) == 0, 1, net_energy_carrier) - n_C = 1 - ((W_C / (((net_energy_carrier) / self.F) * H_LHV * 1000)) * (1 / n_limC)) - n_C = np.where((n_h2 - n_x) == 0, 0, n_C) - return n_C - - def total_efficiency(self): - """ - Aside from efficiencies accounted for in this model - (water_electrolysis_efficiency, faradaic_efficiency, and - compression_efficiency) all process steps such as gas drying above - 2 bar or water pumping can be assumed as negligible. Ultimately, the - total efficiency or system efficiency of a PEM electrolysis system is: - - n_T = n_p_h2 * n_F_h2 * n_c_h2 - https://www.mdpi.com/1996-1073/13/3/612/htm - """ - # n_p_h2 = self.water_electrolysis_efficiency() #no longer considered - n_F_h2 = self.faradaic_efficiency() - # n_c_h2 = self.compression_efficiency() #no longer considered - - # n_T = n_p_h2 * n_F_h2 * n_c_h2 #No longer considers these other efficiencies - n_T = n_F_h2 - self.output_dict["total_efficiency"] = n_T - return n_T - - def h2_production_rate(self): - """ - H2 production rate calculated using Faraday's Law of Electrolysis - (https://www.sciencedirect.com/science/article/pii/S0360319917347237#bib27) - - Parameters - _____________ - - float f_1 - Coefficient - value at operating temperature of 80degC (mA2/cm4) - - float f_2 - Coefficient - value at operating temp of 80 degC (unitless) - - np_array - 1-D array of current supplied to electrolyzer stack from external - power source - - - Returns - _____________ - - """ - # Single stack calculations: - n_Tot = self.total_efficiency() - h2_production_rate = n_Tot * ( - (self.N_cells * self.output_dict["current_input_external_Amps"]) / (2 * self.F) - ) # mol/s - h2_production_rate_g_s = h2_production_rate / self.moles_per_g_h2 - h2_produced_kg_hr = h2_production_rate_g_s * 3.6 # Fixed: no more manual scaling - self.output_dict["stack_h2_produced_g_s"] = h2_production_rate_g_s - self.output_dict["stack_h2_produced_kg_hr"] = h2_produced_kg_hr - - # Total electrolyzer system calculations: - h2_produced_kg_hr_system = self.system_design() * h2_produced_kg_hr - # h2_produced_kg_hr_system = h2_produced_kg_hr - self.output_dict["h2_produced_kg_hr_system"] = h2_produced_kg_hr_system - - return h2_produced_kg_hr_system, h2_production_rate_g_s - - def degradation(self): - """ - TODO - Add a time component to the model - for degradation -> - https://www.hydrogen.energy.gov/pdfs/progress17/ii_b_1_peters_2017.pdf - """ - pass - - def water_supply(self): - """ - Calculate water supply rate based system efficiency and H2 production - rate - TODO: Add this capability to the model - - The 10x multiple is likely too low. See Lampert, David J., Cai, Hao, Wang, Zhichao, - Keisman, Jennifer, Wu, May, Han, Jeongwoo, Dunn, Jennifer, Sullivan, John L., - Elgowainy, Amgad, Wang, Michael, & Keisman, Jennifer. Development of a Life Cycle Inventory - of Water Consumption Associated with the Production of Transportation Fuels. United States. - https://doi.org/10.2172/1224980 - """ - # ratio of water_used:h2_kg_produced depends on power source - # h20_kg:h2_kg with PV 22-126:1 or 18-25:1 without PV but considering water - # deminersalisation stoichometrically its just 9:1 but ... theres inefficiencies in the - # water purification process - h2_produced_kg_hr_system, h2_production_rate_g_s = self.h2_production_rate() - water_used_kg_hr_system = h2_produced_kg_hr_system * 10 - self.output_dict["water_used_kg_hr"] = water_used_kg_hr_system - self.output_dict["water_used_kg_annual"] = np.sum(water_used_kg_hr_system) - - def h2_storage(self): - """ - Model to estimate Ideal Isorthermal H2 compression at 70degC - https://www.sciencedirect.com/science/article/pii/S036031991733954X - - The amount of hydrogen gas stored under pressure can be estimated - using the van der Waals equation - - p = [(nRT)/(V-nb)] - [a * ((n^2) / (V^2))] - - where p is pressure of the hydrogen gas (Pa), n the amount of - substance (mol), T the temperature (K), and V the volume of storage - (m3). The constants a and b are called the van der Waals coefficients, - which for hydrogen are 2.45 x 10^-2 Pa m6mol^-2 and 26.61 x 10^-6 , - respectively. - """ - - pass - - -if __name__ == "__main__": - # Example on how to use this model: - in_dict = {} - in_dict["electrolyzer_system_size_MW"] = 15 - out_dict = {} - - electricity_profile = pd.read_csv("sample_wind_electricity_profile.csv") - in_dict["P_input_external_kW"] = electricity_profile.iloc[:, 1].to_numpy() - - el = PEM_electrolyzer_LT(in_dict, out_dict) - el.h2_production_rate() - print( - "Hourly H2 production by stack (kg/hr): ", - out_dict["stack_h2_produced_kg_hr"][0:50], - ) - print( - "Hourly H2 production by system (kg/hr): ", - out_dict["h2_produced_kg_hr_system"][0:50], - ) - fig, axs = plt.subplots(2, 2) - fig.suptitle( - "PEM H2 Electrolysis Results for " - + str(out_dict["electrolyzer_system_size_MW"]) - + " MW System" - ) - - axs[0, 0].plot(out_dict["stack_h2_produced_kg_hr"]) - axs[0, 0].set_title("Hourly H2 production by stack") - axs[0, 0].set_ylabel("kg_h2 / hr") - axs[0, 0].set_xlabel("Hour") - - axs[0, 1].plot(out_dict["h2_produced_kg_hr_system"]) - axs[0, 1].set_title("Hourly H2 production by system") - axs[0, 1].set_ylabel("kg_h2 / hr") - axs[0, 1].set_xlabel("Hour") - - axs[1, 0].plot(in_dict["P_input_external_kW"]) - axs[1, 0].set_title("Hourly Energy Supplied by Wind Farm (kWh)") - axs[1, 0].set_ylabel("kWh") - axs[1, 0].set_xlabel("Hour") - - total_efficiency = out_dict["total_efficiency"] - system_h2_eff = (1 / total_efficiency) * 33.3 - system_h2_eff = np.where(total_efficiency == 0, 0, system_h2_eff) - - axs[1, 1].plot(system_h2_eff) - axs[1, 1].set_title("Total Stack Energy Usage per mass net H2") - axs[1, 1].set_ylabel("kWh_e/kg_h2") - axs[1, 1].set_xlabel("Hour") - - plt.show() - print("Annual H2 production (kg): ", np.sum(out_dict["h2_produced_kg_hr_system"])) - print("Annual energy production (kWh): ", np.sum(in_dict["P_input_external_kW"])) - print( - "H2 generated (kg) per kWH of energy generated by wind farm: ", - np.sum(out_dict["h2_produced_kg_hr_system"]) / np.sum(in_dict["P_input_external_kW"]), - ) diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_tools.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_tools.py deleted file mode 100644 index efce5947f..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_tools.py +++ /dev/null @@ -1,59 +0,0 @@ -import numpy as np - -from h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_H2_LT_electrolyzer_Clusters import ( # noqa: E501 - PEM_H2_Clusters as PEMClusters, -) - - -def create_1MW_reference_PEM(curve_coeff=None): - pem_param_dict = { - "eol_eff_percent_loss": 10, - "uptime_hours_until_eol": 77600, - "include_degradation_penalty": True, - "turndown_ratio": 0.1, - "curve_coeff": curve_coeff, - } - pem = PEMClusters(cluster_size_mw=1, plant_life=30, **pem_param_dict) - return pem - - -def get_electrolyzer_BOL_efficiency(): - pem_1MW = create_1MW_reference_PEM() - bol_eff = pem_1MW.output_dict["BOL Efficiency Curve Info"]["Efficiency [kWh/kg]"].values[-1] - - return np.round(bol_eff, 2) - - -def size_electrolyzer_for_hydrogen_demand( - hydrogen_production_capacity_required_kgphr, - size_for="BOL", - electrolyzer_degradation_power_increase=None, -): - electrolyzer_energy_kWh_per_kg_estimate_BOL = get_electrolyzer_BOL_efficiency() - if size_for == "BOL": - electrolyzer_capacity_MW = ( - hydrogen_production_capacity_required_kgphr - * electrolyzer_energy_kWh_per_kg_estimate_BOL - / 1000 - ) - elif size_for == "EOL": - electrolyzer_energy_kWh_per_kg_estimate_EOL = ( - electrolyzer_energy_kWh_per_kg_estimate_BOL - * (1 + electrolyzer_degradation_power_increase) - ) - electrolyzer_capacity_MW = ( - hydrogen_production_capacity_required_kgphr - * electrolyzer_energy_kWh_per_kg_estimate_EOL - / 1000 - ) - - return electrolyzer_capacity_MW - - -def check_capacity_based_on_clusters(electrolyzer_capacity_BOL_MW, cluster_cap_mw): - if electrolyzer_capacity_BOL_MW % cluster_cap_mw == 0: - n_pem_clusters_max = electrolyzer_capacity_BOL_MW // cluster_cap_mw - else: - n_pem_clusters_max = int(np.ceil(np.ceil(electrolyzer_capacity_BOL_MW) / cluster_cap_mw)) - electrolyzer_size_mw = n_pem_clusters_max * cluster_cap_mw - return electrolyzer_size_mw diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/__init__.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/__init__.py deleted file mode 100644 index 1b79c00b3..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/__init__.py +++ /dev/null @@ -1,13 +0,0 @@ -import h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_H2_LT_electrolyzer_Clusters -import h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_tools -from h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_costs_Singlitico_model import ( - PEMCostsSingliticoModel, -) - -# FIXME: duplicative imports -from h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_electrolyzer_IVcurve import ( - PEM_electrolyzer_LT, -) -from h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_H2_LT_electrolyzer import ( - PEM_electrolyzer_LT, # FIXME: duplicative import, delete whole comment when fixed # noqa: F811 -) diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/optimization_utils_linear.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/optimization_utils_linear.py deleted file mode 100644 index f417834b7..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/optimization_utils_linear.py +++ /dev/null @@ -1,200 +0,0 @@ -import time -from pathlib import Path - -import numpy as np -from pyomo.environ import * # FIXME: no * imports, delete whole comment when fixed # noqa: F403 - - -def optimize( - P_wind_t, - T=50, - n_stacks=3, - c_wp=0, - c_sw=12, - rated_power=500, - dt=1, - P_init=None, - I_init=None, - T_init=None, - AC_init=0, - F_tot_init=0, -): - model = ConcreteModel() # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - # Things to solve: - C_INV = 1.47e6 - LT = 90000 - - # Initializations - if P_init is None: - P_init = [0] * (n_stacks * T) - else: - P_init = P_init.flatten() - if I_init is None: - I_init = [0] * (n_stacks * T) - else: - I_init = I_init.flatten() - if T_init is None: - T_init = [0] * (n_stacks * T) - else: - T_init = T_init.flatten() - - model.p = Var( # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - list(range(n_stacks * T)), - bounds=(-1e-2, rated_power), - initialize=P_init, - ) - model.I = Var( # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - list(range(n_stacks * T)), - within=Binary, # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - initialize=I_init, # .astype(int), - ) - model.T = Var( # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - list(range(n_stacks * T)), - within=Binary, # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - initialize=T_init, # .astype(int), - ) - model.AC = Var( # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - [0], bounds=(1e-3, 1.2 * rated_power * n_stacks * T), initialize=float(AC_init) - ) - model.F_tot = Var( # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - [0], bounds=(1e-3, 8 * rated_power * n_stacks * T), initialize=float(F_tot_init) - ) - model.eps = Param( # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - initialize=1, mutable=True - ) - - C_WP = c_wp * np.ones( - T, - ) # could vary with time - C_SW = c_sw * np.ones( - T, - ) # could vary with time - - P_max = rated_power - P_min = 0.1 * rated_power - - def obj(model): - return model.AC[0] - model.eps * model.F_tot[0] - - def physical_constraint_AC(model): - AC = 0 - for t in range(T): - for stack in range(n_stacks): - AC = ( - AC - + C_WP[t] * model.p[t * n_stacks + stack] - + C_SW[t] * model.T[t * n_stacks + stack] - ) - return model.AC[0] == AC + C_INV * n_stacks / LT - - def physical_constraint_F_tot(model): - """Objective function""" - F_tot = 0 - for t in range(T): - for stack in range(n_stacks): - F_tot = ( - F_tot - + ( - 0.0145 * model.p[t * n_stacks + stack] - + 0.3874 * model.I[t * n_stacks + stack] * rated_power / 500 - ) - * dt - ) - return model.F_tot[0] == F_tot - - def power_constraint(model, t): - """Make sure sum of stack powers is below available wind power.""" - power_full_stack = 0 - for stack in range(n_stacks): - power_full_stack = power_full_stack + model.p[t * n_stacks + stack] - return power_full_stack <= P_wind_t[t] - - def safety_bounds_lower(model, t, stack): - """Make sure input powers don't exceed safety bounds.""" - return P_min * model.I[t * n_stacks + stack] <= model.p[t * n_stacks + stack] - - def safety_bounds_upper(model, t, stack): - """Make sure input powers don't exceed safety bounds.""" - return P_max * model.I[t * n_stacks + stack] >= model.p[t * n_stacks + stack] - - def switching_constraint_pos(model, stack, t): - trans = model.I[t * n_stacks + stack] - model.I[(t - 1) * n_stacks + stack] - return model.T[t * n_stacks + stack] >= trans - - def switching_constraint_neg(model, stack, t): - trans = model.I[t * n_stacks + stack] - model.I[(t - 1) * n_stacks + stack] - return -model.T[t * n_stacks + stack] <= trans - - model.pwr_constraints = ( - ConstraintList() # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - ) - model.safety_constraints = ( - ConstraintList() # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - ) - model.switching_constraints = ( - ConstraintList() # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - ) - model.physical_constraints = ( - ConstraintList() # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - ) - - for t in range(T): - model.pwr_constraints.add(power_constraint(model, t)) - for stack in range(n_stacks): - model.safety_constraints.add(safety_bounds_lower(model, t, stack)) - model.safety_constraints.add(safety_bounds_upper(model, t, stack)) - - if t > 0: - model.switching_constraints.add(switching_constraint_pos(model, stack, t)) - model.switching_constraints.add(switching_constraint_neg(model, stack, t)) - model.physical_constraints.add(physical_constraint_F_tot(model)) - model.physical_constraints.add(physical_constraint_AC(model)) - model.objective = ( - Objective( # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - expr=obj(model), - sense=minimize, # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - ) - ) - eps = 10 - cbc_path = Path(__file__).parent / "hybrid/PEM_Model_2Push/cbc.exe" - - # Use this if you have a Windows machine; also make sure that cbc.exe is in the same folder as - # this script - solver = SolverFactory( # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - "cbc", executable=cbc_path - ) - - # Use this if you don't have a windows machine - # solver = SolverFactory("cbc") - - j = 1 - while eps > 1e-3: - start = time.process_time() - solver.solve(model) - print("time to solve", time.process_time() - start) - - model.eps = value( # FIXME: no * imports, delete whole comment when fixed # noqa: F405 - model.AC[0] / model.F_tot[0] - ) - eps = model.AC[0].value - model.eps.value * model.F_tot[0].value - j = j + 1 - - I = np.array([model.I[i].value for i in range(n_stacks * T)]) # noqa: E741 - I_ = np.reshape(I, (T, n_stacks)) - P = np.array([model.p[i].value for i in range(n_stacks * T)]) - P_ = np.reshape(P, (T, n_stacks)) - Tr = np.array([model.T[i].value for i in range(n_stacks * T)]).reshape((T, n_stacks)) - P_tot_opt = np.sum(P_, axis=1) - H2f = np.zeros((T, n_stacks)) - for stack in range(n_stacks): - H2f[:, stack] = (0.0145 * P_[:, stack] + 0.3874 * I_[:, stack] * rated_power / 500) * dt - return ( - P_tot_opt, - P_, - H2f, - I_, - Tr, - P_wind_t, - model.AC[0].value, - model.F_tot[0].value, - ) diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/pem_cost_tools.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/pem_cost_tools.py deleted file mode 100644 index c5d7d1e6d..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/pem_cost_tools.py +++ /dev/null @@ -1,201 +0,0 @@ -import numpy as np -from attrs import field, define - -from h2integrate.tools.profast_tools import create_years_of_operation - - -@define -class ElectrolyzerLCOHInputConfig: - """Calculates inputs for LCOH functions related to electrolyzer - performance outside of capex and opex. - - Args: - electrolyzer_physics_results (dict): results from run_electrolyzer_physics() - electrolyzer_config (dict): sub-dictionary of h2integrate_config - financial_analysis_start_year (int): analysis start year - installation_period_months (int|float|None): installation period in months. defaults to 36. - """ - - electrolyzer_physics_results: dict - electrolyzer_config: dict - financial_analysis_start_year: int - installation_period_months: int | float | None = field(default=36) - - electrolyzer_capacity_kW: int | float = field(init=False) - project_lifetime_years: int = field(init=False) - long_term_utilization: dict = field(init=False) - rated_capacity_kg_pr_day: float = field(init=False) - water_usage_gal_pr_kg: float = field(init=False) - - electrolyzer_annual_energy_usage_kWh: list[float] = field(init=False) - electrolyzer_eff_kWh_pr_kg: list[float] = field(init=False) - electrolyzer_annual_h2_production_kg: list[float] = field(init=False) - - refurb_cost_percent: list[float] = field(init=False) - replacement_schedule: list[float] = field(init=False) - - def __attrs_post_init__(self): - annual_performance = self.electrolyzer_physics_results["H2_Results"][ - "Performance Schedules" - ] - - #: electrolyzer system capacity in kW - self.electrolyzer_capacity_kW = self.electrolyzer_physics_results["H2_Results"][ - "system capacity [kW]" - ] - - #: int: lifetime of project in years - self.project_lifetime_years = len(annual_performance) - - #: float: electrolyzer beginnning-of-life rated H2 production capacity in kg/day - self.rated_capacity_kg_pr_day = ( - self.electrolyzer_physics_results["H2_Results"]["Rated BOL: H2 Production [kg/hr]"] * 24 - ) - - #: float: water usage in gallons of water per kg of H2 - self.water_usage_gal_pr_kg = self.electrolyzer_physics_results["H2_Results"][ - "Rated BOL: Gal H2O per kg-H2" - ] - #: list(float): annual energy consumed by electrolyzer per year of operation in kWh/year - self.electrolyzer_annual_energy_usage_kWh = annual_performance[ - "Annual Energy Used [kWh/year]" - ].to_list() - #: list(float): annual avg efficiency of electrolyzer for each year of operation in kWh/kg - self.electrolyzer_eff_kWh_pr_kg = annual_performance[ - "Annual Average Efficiency [kWh/kg]" - ].to_list() - #: list(float): annual hydrogen production for each year of operation in kg/year - self.electrolyzer_annual_h2_production_kg = annual_performance[ - "Annual H2 Production [kg/year]" - ] - #: dict: annual capacity factor of electrolyzer for each year of operation - self.long_term_utilization = self.make_lifetime_utilization() - - use_complex_refurb = False - if "complex_refurb" in self.electrolyzer_config.keys(): - if self.electrolyzer_config["complex_refurb"]: - use_complex_refurb = True - - # complex schedule assumes stacks are replaced in the year they reach end-of-life - if use_complex_refurb: - self.replacement_schedule = self.calc_complex_refurb_schedule() - self.refurb_cost_percent = list( - np.array( - self.replacement_schedule * self.electrolyzer_config["replacement_cost_percent"] - ) - ) - - # simple schedule assumes all stacks are replaced in the same year - else: - self.replacement_schedule = self.calc_simple_refurb_schedule() - self.refurb_cost_percent = list( - np.array( - self.replacement_schedule * self.electrolyzer_config["replacement_cost_percent"] - ) - ) - - def calc_simple_refurb_schedule(self): - """Calculate electrolyzer refurbishment schedule - assuming that all stacks are replaced in the same year. - - Returns: - list: list of years when stacks are replaced. - a value of 1 means stacks are replaced that year. - """ - annual_performance = self.electrolyzer_physics_results["H2_Results"][ - "Performance Schedules" - ] - refurb_simple = np.zeros(len(annual_performance)) - refurb_period = int( - round( - self.electrolyzer_physics_results["H2_Results"]["Time Until Replacement [hrs]"] - / 8760 - ) - ) - refurb_simple[refurb_period : len(annual_performance) : refurb_period] = 1.0 - - return refurb_simple - - def calc_complex_refurb_schedule(self): - """Calculate electrolyzer refurbishment schedule - stacks are replaced in the year they reach EOL. - - Returns: - list: list of years when stacks are replaced. values are are fraction of - the total installed capacity. - """ - annual_performance = self.electrolyzer_physics_results["H2_Results"][ - "Performance Schedules" - ] - refurb_complex = annual_performance["Refurbishment Schedule [MW replaced/year]"].values / ( - self.electrolyzer_capacity_kW / 1e3 - ) - return refurb_complex - - def make_lifetime_utilization(self): - """Make long term utilization dictionary for electrolyzer system. - - Returns: - dict: keys are years of operation and values are the capacity factor for that year. - """ - annual_performance = self.electrolyzer_physics_results["H2_Results"][ - "Performance Schedules" - ] - - years_of_operation = create_years_of_operation( - self.project_lifetime_years, - self.financial_analysis_start_year, - self.installation_period_months, - ) - - cf_per_year = annual_performance["Capacity Factor [-]"].to_list() - utilization_dict = dict(zip(years_of_operation, cf_per_year)) - return utilization_dict - - -def calc_electrolyzer_variable_om(electrolyzer_physics_results, h2integrate_config): - """Calculate variable O&M of electrolyzer system in $/kg-H2. - - Args: - electrolyzer_physics_results (dict): results from run_electrolyzer_physics() - h2integrate_config (:obj:`h2integrate_simulation.H2IntegrateSimulationConfig`): h2integrate - simulation config. - - Returns: - dict | float: electrolyzer variable o&m in $/kg-H2. - """ - electrolyzer_config = h2integrate_config["electrolyzer"] - annual_performance = electrolyzer_physics_results["H2_Results"]["Performance Schedules"] - - if "var_om" in electrolyzer_config.keys(): - electrolyzer_vopex_pr_kg = ( - electrolyzer_config["var_om"] - * annual_performance["Annual Average Efficiency [kWh/kg]"].values - ) - - if "financial_analysis_start_year" not in h2integrate_config["finance_parameters"]: - financial_analysis_start_year = h2integrate_config["project_parameters"][ - "financial_analysis_start_year" - ] - else: - financial_analysis_start_year = h2integrate_config["finance_parameters"][ - "financial_analysis_start_year" - ] - if "installation_time" not in h2integrate_config["project_parameters"]: - installation_period_months = 36 - else: - installation_period_months = h2integrate_config["project_parameters"][ - "installation_time" - ] - - years_of_operation = create_years_of_operation( - h2integrate_config["project_parameters"]["project_lifetime"], - financial_analysis_start_year, - installation_period_months, - ) - # $/kg-year - vopex_elec = dict(zip(years_of_operation, electrolyzer_vopex_pr_kg)) - - else: - vopex_elec = 0.0 - return vopex_elec diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/pem_mass_and_footprint.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/pem_mass_and_footprint.py deleted file mode 100644 index 1c6c0fbbc..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/pem_mass_and_footprint.py +++ /dev/null @@ -1,93 +0,0 @@ -import numpy as np -import matplotlib.pyplot as plt -from scipy.optimize import curve_fit - - -def _electrolyzer_footprint_data(): - """ - References: - [1] Bolhui, 2017 https://www.irena.org/-/media/Files/IRENA/Agency/Publication/2020/Dec/IRENA_Green_hydrogen_cost_2020.pdf - - appears to include BOS - [2] Bourne, 2017 - - - [3] McPHy, 2018 (https://mcphy.com/en/equipment-services/electrolyzers/) - [4] Air Liquide 2021, Becancour Quebec - """ - - rating_mw = np.array([300, 100, 100, 20]) # [1], [2], [3], [4] - footprint_sqft = np.array([161500, 37700, 48500, 465000]) # [1], [2], [3], [4] - sqft_to_m2 = 0.092903 - footprint_m2 = footprint_sqft * sqft_to_m2 - - return rating_mw, footprint_m2 - - -def footprint(rating_mw): - """ - Estimate the area required for the electrolyzer equipment using a linear scaling - """ - - # from Singlitico 2021, Table 1 (ratio is given in m2/GW, so a conversion is used here forMW) - footprint_m2 = rating_mw * 48000 * (1 / 1e3) - - return footprint_m2 - - -def _electrolyzer_mass_data(): - """ - References: - [1] https://www.h-tec.com/en/products/detail/h-tec-pem-electrolyser-me450/me450/ - [2] https://www.nrel.gov/docs/fy19osti/70380.pdf - """ - - rating_mw = np.array([1, 1.25, 0.25, 45e-3, 40e-3, 28e-3, 14e-3, 14.4e-3, 7.2e-7]) - mass_kg = np.array([36e3, 17e3, 260, 900, 908, 858, 682, 275, 250]) - - return rating_mw, mass_kg - - -def _electrolyzer_mass_fit(x, m, b): - y = m * x + b - - return y - - -def mass(rating_mw): - """ - Estimate the electorlyzer mass given the electrolyzer rating based on data. - - Note: the largest electrolyzer data available was for 1.25 MW. Also, given the current fit, the - mass goes negative for very small electrolysis systems - """ - - rating_mw_fit, mass_kg_fit = _electrolyzer_mass_data() - - (m, b), pcov = curve_fit(_electrolyzer_mass_fit, rating_mw_fit, mass_kg_fit) - - mass_kg = _electrolyzer_mass_fit(rating_mw, m, b) - - return mass_kg - - -if __name__ == "__main__": - fig, ax = plt.subplots(1, 2) - rating_mw, footprint_m2 = _electrolyzer_footprint_data() - ax[0].scatter(rating_mw, footprint_m2, label="Data points") - - ratings = np.arange(0, 1000) - footprints = footprint(ratings) - - ax[0].plot(ratings, footprints, label="Scaling Factor") - ax[0].set(xlabel="Electrolyzer Rating (MW)", ylabel="Footprint (m$^2$)") - ax[0].legend(frameon=False) - print(rating_mw, footprint_m2) - - rating_mw, mass_kg = _electrolyzer_mass_data() - ax[1].scatter(rating_mw, np.multiply(mass_kg, 1e-3), label="Data points") - - ax[1].plot(ratings, mass(ratings) * 1e-3, label="Linear Fit") - ax[1].set(xlabel="Electrolyzer Rating (MW)", ylabel="Mass (metric tons)") - ax[1].legend(frameon=False) - plt.tight_layout() - plt.show() - print(rating_mw, np.divide(mass_kg, rating_mw)) diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/run_h2_PEM_eco.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/run_h2_PEM_eco.py deleted file mode 100644 index 74302b3ed..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/run_h2_PEM_eco.py +++ /dev/null @@ -1,110 +0,0 @@ -import numpy as np -import examples.H2_Analysis.H2AModel as H2AModel - -from h2integrate.hydrogen.electrolysis.PEM_electrolyzer_IVcurve import PEM_electrolyzer_LT - - -def run_h2_PEM( - electrical_generation_timeseries, - electrolyzer_size, - kw_continuous, - forced_electrolyzer_cost_kw, - lcoe, - adjusted_installed_cost, - useful_life, - net_capital_costs, - voltage_type="constant", - stack_input_voltage_DC=250, - min_V_cell=1.62, - p_s_h2_bar=31, - stack_input_current_lower_bound=500, - cell_active_area=1250, - N_cells=130, - total_system_electrical_usage=55.5, -): - in_dict = {} - out_dict = {} - in_dict["P_input_external_kW"] = electrical_generation_timeseries - in_dict["electrolyzer_system_size_MW"] = electrolyzer_size - el = PEM_electrolyzer_LT(in_dict, out_dict) - - # el.power_supply_rating_MW = electrolyzer_size - # el.power_supply_rating_MW = power_supply_rating_MW - # print("electrolyzer size: ", electrolyzer_size) - # el.electrolyzer_system_size_MW = electrolyzer_size - # el.input_dict['voltage_type'] = voltage_type - # el.stack_input_voltage_DC = stack_input_voltage_DC - # el.stack_input_voltage_DC = - # Assumptions: - # el.min_V_cell = min_V_cell # Only used in variable voltage scenario - # el.p_s_h2_bar = p_s_h2_bar # H2 outlet pressure - # el.stack_input_current_lower_bound = stack_input_current_lower_bound - # el.cell_active_area = cell_active_area - # el.N_cells = N_cells - # print("running production rate") - # el.h2_production_rate() - - el.h2_production_rate() - el.water_supply() - - avg_generation = np.mean(electrical_generation_timeseries) # Avg Generation - # print("avg_generation: ", avg_generation) - cap_factor = avg_generation / kw_continuous - - hydrogen_hourly_production = out_dict["h2_produced_kg_hr_system"] - water_hourly_usage = out_dict["water_used_kg_hr"] - water_annual_usage = out_dict["water_used_kg_annual"] - electrolyzer_total_efficiency = out_dict["total_efficiency"] - # print('water annual: ', water_annual_usage) - # print("cap_factor: ", cap_factor) - - # Get Daily Hydrogen Production - Add Every 24 hours - i = 0 - daily_H2_production = [] - while i <= 8760: - x = sum(hydrogen_hourly_production[i : i + 24]) - daily_H2_production.append(x) - i = i + 24 - - avg_daily_H2_production = np.mean(daily_H2_production) # kgH2/day - hydrogen_annual_output = sum(hydrogen_hourly_production) # kgH2/year - # elec_remainder_after_h2 = combined_hybrid_curtailment_hopp - - H2A_Results = H2AModel.H2AModel( - cap_factor, - avg_daily_H2_production, - hydrogen_annual_output, - force_system_size=True, - forced_system_size=electrolyzer_size, - force_electrolyzer_cost=True, - forced_electrolyzer_cost_kw=forced_electrolyzer_cost_kw, - useful_life=useful_life, - ) - - feedstock_cost_h2_levelized_hopp = lcoe * total_system_electrical_usage / 100 # $/kg - # Hybrid Plant - levelized H2 Cost - HOPP - feedstock_cost_h2_via_net_cap_cost_lifetime_h2_hopp = adjusted_installed_cost / ( - hydrogen_annual_output * useful_life - ) # $/kgH2 - - # Total Hydrogen Cost ($/kgH2) - h2a_costs = H2A_Results["Total Hydrogen Cost ($/kgH2)"] - total_unit_cost_of_hydrogen = h2a_costs + feedstock_cost_h2_levelized_hopp - feedstock_cost_h2_via_net_cap_cost_lifetime_h2_reopt = net_capital_costs / ( - (kw_continuous / total_system_electrical_usage) * (8760 * useful_life) - ) - - H2_Results = { - "hydrogen_annual_output": hydrogen_annual_output, - "feedstock_cost_h2_levelized_hopp": feedstock_cost_h2_levelized_hopp, - "feedstock_cost_h2_via_net_cap_cost_lifetime_h2_hopp": feedstock_cost_h2_via_net_cap_cost_lifetime_h2_hopp, # noqa: E501 - "feedstock_cost_h2_via_net_cap_cost_lifetime_h2_reopt": feedstock_cost_h2_via_net_cap_cost_lifetime_h2_reopt, # noqa: E501 - "total_unit_cost_of_hydrogen": total_unit_cost_of_hydrogen, - "cap_factor": cap_factor, - "hydrogen_hourly_production": hydrogen_hourly_production, - "water_hourly_usage": water_hourly_usage, - "water_annual_usage": water_annual_usage, - "electrolyzer_total_efficiency": electrolyzer_total_efficiency, - } - - return H2_Results, H2A_Results diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/run_h2_clusters.py b/h2integrate/simulation/technologies/hydrogen/electrolysis/run_h2_clusters.py deleted file mode 100644 index 4fe540ddb..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/run_h2_clusters.py +++ /dev/null @@ -1,233 +0,0 @@ -import sys - - -sys.path.append("") -import time -import warnings - -import numpy as np -import pandas as pd -from scipy import interpolate - -from h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_H2_LT_electrolyzer_Clusters import ( # noqa: E501 - PEM_H2_Clusters as PEMClusters, -) - - -# from PyOMO import ipOpt !! FOR SANJANA!! -warnings.filterwarnings("ignore") - -""" -Perform a LCOH analysis for an offshore wind + Hydrogen PEM system - -1. Offshore wind site locations and cost details (4 sites, $1300/kw capex + BOS cost which will - come from Orbit Runs)~ -2. Cost Scaling Based on Year (Have Weiser et. al report with cost scaling for fixed and floating - tech, will implement) -3. Cost Scaling Based on Plant Size (Shields et. Al report) -4. Future Model Development Required: -- Floating Electrolyzer Platform -""" - - -# -# --------------------------- -# -class run_PEM_clusters: - """Add description and stuff :)""" - - def __init__(self, electrical_power_signal, system_size_mw, num_clusters, verbose=True): - self.cluster_cap_mw = np.round(system_size_mw / num_clusters) - self.num_clusters = num_clusters - - self.stack_rating_kw = 1000 - self.stack_min_power_kw = 0.1 * self.stack_rating_kw - # self.num_available_pem=interconnection_size_mw - self.input_power_kw = electrical_power_signal - self.cluster_min_power = self.stack_min_power_kw * self.cluster_cap_mw - self.cluster_max_power = self.stack_rating_kw * self.cluster_cap_mw - - self.verbose = verbose - - def run(self): - clusters = self.create_clusters() - power_to_clusters = self.even_split_power() - h2_df_ts = pd.DataFrame() - h2_df_tot = pd.DataFrame() - # h2_dict_ts={} - # h2_dict_tot={} - - col_names = [] - start = time.perf_counter() - for ci in range(len(clusters)): - cl_name = f"Cluster #{ci}" - col_names.append(cl_name) - h2_ts, h2_tot = clusters[ci].run(power_to_clusters[ci]) - # h2_dict_ts['Cluster #{}'.format(ci)] = h2_ts - - h2_ts_temp = pd.Series(h2_ts, name=cl_name) - h2_tot_temp = pd.Series(h2_tot, name=cl_name) - if len(h2_df_tot) == 0: - # h2_df_ts=pd.concat([h2_df_ts,h2_ts_temp],axis=0,ignore_index=False) - h2_df_tot = pd.concat([h2_df_tot, h2_tot_temp], axis=0, ignore_index=False) - h2_df_tot.columns = col_names - - h2_df_ts = pd.concat([h2_df_ts, h2_ts_temp], axis=0, ignore_index=False) - h2_df_ts.columns = col_names - else: - # h2_df_ts = h2_df_ts.join(h2_ts_temp) - h2_df_tot = h2_df_tot.join(h2_tot_temp) - h2_df_tot.columns = col_names - - h2_df_ts = h2_df_ts.join(h2_ts_temp) - h2_df_ts.columns = col_names - - end = time.perf_counter() - if self.verbose: - print(f"Took {round(end - start, 3)} sec to run the RUN function") - return h2_df_ts, h2_df_tot - # return h2_dict_ts, h2_df_tot - - def optimize_power_split(self): - # Inputs: power signal, number of stacks, cost of switching (assumed constant) - # install PyOMO - #!!! Insert Sanjana's Code !!! - # - power_per_stack = [] - return power_per_stack # size - - def even_split_power(self): - start = time.perf_counter() - # determine how much power to give each cluster - num_clusters_on = np.floor(self.input_power_kw / self.cluster_min_power) - num_clusters_on = np.where( - num_clusters_on > self.num_clusters, self.num_clusters, num_clusters_on - ) - power_per_cluster = [ - self.input_power_kw[ti] / num_clusters_on[ti] if num_clusters_on[ti] > 0 else 0 - for ti, pwr in enumerate(self.input_power_kw) - ] - - power_per_to_active_clusters = np.array(power_per_cluster) - power_to_clusters = np.zeros((len(self.input_power_kw), self.num_clusters)) - for i, cluster_power in enumerate( - power_per_to_active_clusters - ): # np.arange(0,self.n_stacks,1): - clusters_off = self.num_clusters - int(num_clusters_on[i]) - no_power = np.zeros(clusters_off) - with_power = cluster_power * np.ones(int(num_clusters_on[i])) - tot_power = np.concatenate((with_power, no_power)) - power_to_clusters[i] = tot_power - - # power_to_clusters = np.repeat([power_per_cluster],self.num_clusters,axis=0) - end = time.perf_counter() - if self.verbose: - print(f"Took {round(end - start, 3)} sec to run basic_split_power function") - # rows are power, columns are stacks [300 x n_stacks] - - return np.transpose(power_to_clusters) - - def run_distributed_layout_power(self, wind_plant): - # need floris configuration! - x_load_percent = np.linspace(0.1, 1.0, 10) - - # ac2ac_transformer_eff = np.array( - # [90.63, 93.91, 95.63, 96.56, 97.19, 97.50, 97.66, 97.66, 97.66, 97.50] - # ) - ac2dc_rectification_eff = ( - np.array([96.54, 98.12, 98.24, 98.6, 98.33, 98.03, 97.91, 97.43, 97.04, 96.687]) / 100 - ) - dc2dc_rectification_eff = ( - np.array([91.46, 95.16, 96.54, 97.13, 97.43, 97.61, 97.61, 97.73, 97.67, 97.61]) / 100 - ) - rect_eff = ac2dc_rectification_eff * dc2dc_rectification_eff - f = interpolate.interp1d(x_load_percent, rect_eff) - start_idx = 0 - end_idx = 8760 - nTurbs = self.num_clusters - power_turbines = np.zeros((nTurbs, 8760)) - power_to_clusters = np.zeros((8760, self.num_clusters)) - ac2dc_rated_power_kw = wind_plant.turb_rating - - power_turbines[:, start_idx:end_idx] = ( - wind_plant._system_model.fi.get_turbine_powers().reshape((nTurbs, end_idx - start_idx)) - / 1000 - ) - power_to_clusters = (power_turbines) * (f(power_turbines / ac2dc_rated_power_kw)) - - # power_farm *((100 - 12.83)/100) / 1000 - - clusters = self.create_clusters() - - h2_df_ts = pd.DataFrame() - h2_df_tot = pd.DataFrame() - # h2_dict_ts={} - # h2_dict_tot={} - - col_names = [] - start = time.perf_counter() - for ci in range(len(clusters)): - cl_name = f"Cluster #{ci}" - col_names.append(cl_name) - h2_ts, h2_tot = clusters[ci].run(power_to_clusters[ci]) - # h2_dict_ts['Cluster #{}'.format(ci)] = h2_ts - - h2_ts_temp = pd.Series(h2_ts, name=cl_name) - h2_tot_temp = pd.Series(h2_tot, name=cl_name) - if len(h2_df_tot) == 0: - # h2_df_ts=pd.concat([h2_df_ts,h2_ts_temp],axis=0,ignore_index=False) - h2_df_tot = pd.concat([h2_df_tot, h2_tot_temp], axis=0, ignore_index=False) - h2_df_tot.columns = col_names - - h2_df_ts = pd.concat([h2_df_ts, h2_ts_temp], axis=0, ignore_index=False) - h2_df_ts.columns = col_names - else: - # h2_df_ts = h2_df_ts.join(h2_ts_temp) - h2_df_tot = h2_df_tot.join(h2_tot_temp) - h2_df_tot.columns = col_names - - h2_df_ts = h2_df_ts.join(h2_ts_temp) - h2_df_ts.columns = col_names - - end = time.perf_counter() - if self.verbose: - print(f"Took {round(end - start, 3)} sec to run the distributed PEM case function") - return h2_df_ts, h2_df_tot - - def max_h2_cntrl(self): - # run as many at lower power as possible - ... - - def min_deg_cntrl(self): - # run as few as possible - ... - - def create_clusters(self): - start = time.perf_counter() - # TODO fix the power input - don't make it required! - # in_dict={'dt':3600} - clusters = PEMClusters(cluster_size_mw=self.cluster_cap_mw) - stacks = [clusters] * self.num_clusters - end = time.perf_counter() - if self.verbose: - print(f"Took {round(end - start, 3)} sec to run the create clusters") - return stacks - - -if __name__ == "__main__": - system_size_mw = 1000 - num_clusters = 20 - cluster_cap_mw = system_size_mw / num_clusters - stack_rating_kw = 1000 - cluster_min_power_kw = 0.1 * stack_rating_kw * cluster_cap_mw - num_steps = 200 - power_rampup = np.arange( - cluster_min_power_kw, system_size_mw * stack_rating_kw, cluster_min_power_kw - ) - - # power_rampup = np.linspace(cluster_min_power_kw,system_size_mw*1000,num_steps) - power_rampdown = np.flip(power_rampup) - power_in = np.concatenate((power_rampup, power_rampdown)) - pem = run_PEM_clusters(power_in, system_size_mw, num_clusters) - - h2_ts, h2_tot = pem.run() diff --git a/h2integrate/simulation/technologies/hydrogen/electrolysis/test_opt.ipynb b/h2integrate/simulation/technologies/hydrogen/electrolysis/test_opt.ipynb deleted file mode 100644 index 8033a7e9f..000000000 --- a/h2integrate/simulation/technologies/hydrogen/electrolysis/test_opt.ipynb +++ /dev/null @@ -1,146 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "The autoreload extension is already loaded. To reload it, use:\n", - " %reload_ext autoreload\n" - ] - } - ], - "source": [ - "%load_ext autoreload\n", - "%autoreload 2\n", - "\n", - "from pyomo.environ import * # FIXME: no * imports, delete whole comment when fixed # noqa: F403\n", - "import numpy as np\n", - "from h2integrate.simulation.technologies.Electrolyzer_Models import run_PEM_clusters\n", - "\n", - "# from run_PEM_master import run_PEM_clusters" - ] - }, - { - "cell_type": "code", - "execution_count": 29, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Took 1.021 sec to run the create clusters\n", - "Optimizing 20 stacks tarting 0hr/398hr\n", - "time to solve 0.8617440000000016\n", - "Optimizing 20 stacks tarting 219hr/398hr\n", - "time to solve 0.5715739999999983\n", - "Took 0.075 sec to run the RUN function\n" - ] - } - ], - "source": [ - "system_size_mw = 1000\n", - "num_clusters = 20\n", - "cluster_cap_mw = system_size_mw / num_clusters\n", - "stack_rating_kw = 1000\n", - "cluster_min_power_kw = 0.1 * stack_rating_kw * cluster_cap_mw\n", - "num_steps = 200\n", - "power_rampup = np.arange(\n", - " cluster_min_power_kw, system_size_mw * stack_rating_kw, cluster_min_power_kw\n", - ")\n", - "\n", - "plant_life = 30\n", - "deg_penalty = True\n", - "user_defined_electrolyzer_EOL_eff_drop = False\n", - "EOL_eff_drop = 13\n", - "user_defined_electrolyzer_BOL_kWh_per_kg = False\n", - "BOL_kWh_per_kg = []\n", - "electrolyzer_model_parameters = {\n", - " \"Modify BOL Eff\": user_defined_electrolyzer_BOL_kWh_per_kg,\n", - " \"BOL Eff [kWh/kg-H2]\": BOL_kWh_per_kg,\n", - " \"Modify EOL Degradation Value\": user_defined_electrolyzer_EOL_eff_drop,\n", - " \"EOL Rated Efficiency Drop\": EOL_eff_drop,\n", - "}\n", - "# power_rampup = np.linspace(cluster_min_power_kw,system_size_mw*1000,num_steps)\n", - "power_rampdown = np.flip(power_rampup)\n", - "power_in = np.concatenate((power_rampup, power_rampdown))\n", - "pem = run_PEM_clusters(\n", - " power_in,\n", - " system_size_mw,\n", - " num_clusters,\n", - " plant_life,\n", - " electrolyzer_model_parameters,\n", - " deg_penalty,\n", - ")\n", - "\n", - "h2_ts, h2_tot = pem.run(optimize=True)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "9.125" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "219 / 24" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3.9.2 ('aibias')", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.2" - }, - "orig_nbformat": 4, - "vscode": { - "interpreter": { - "hash": "006fa253eb2b24f25ab550317f005ab784f102b1e9b70f76ded10bb7ec2196b2" - } - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/Bulk Hydrogen Cost as Function of Capacity.docx b/h2integrate/simulation/technologies/hydrogen/h2_storage/Bulk Hydrogen Cost as Function of Capacity.docx deleted file mode 100644 index 4f103cdcdfaed8d872e181dcca7b8d83fe74460a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 355070 zcmeEsW0NRAkmT65ZQHhOzOilFwr$(C?U^^WZQa|wxQM;j`v-gdp}%xRbaZuQS7$~k zNCShQ0Du8N0000G0-#sX)0hGR0H}Zh03ZWE0BH-`**crpI_s-=*qb=%(z)AM6BL2~ zQRD*v{fqzq<9~1lnv&Qg7_dQjt0Mnq^&v@|I!z>08T z?d-siVZ$fnZ;nRJDnH0ai!y=_8J+WJR4>zE+gA-16Ts!C>|L6|>Mm3%NA9%uwB|qJ)@Kv)pa1U&Wc<{yzS8_PN zf5`g%1qM*~zvzjVfYo;UZ$<7O`=I~PQ{U0V+KHa-Kj!~W%m2Y#{4YnZP8_ftVt^62 z4f+mR=uzApz$lWVH=5tV*Z_ynmXtx>TDM&L`Q}+)2hu$^5T9CHN}Bg{$`*6kOV+)^ zN>zo8?15Z;*BjFQ>~;r83F$6jbYHbUfXO;}G5ww-mZY2viqb@loWlZ3cneRT=|?`M z5_vf;gSH@|oLe>`X)4NfP+faX_hrt{U|dOclBEH3f13G(_UG)TGPhR6ZEp4$ZFJpqNFOjZX=gLaC)uaP zCvhdAf3(j5XUt*oB9oC|ct5-7(Pt4c|LdczizL-{s4%+msWOOOQ5Sr3i{?HiH+t9vj+nt z(U##pimF?Cygv@D&~>J^flh)?0HH-;^s+EnJZiBseV-|-^?R@F{!9p;wusl?a=lBoqg#m5Nh_D3QNR6Wm`Ez!fN!qG0iCLX!B%H4U*%^6zrivAcY`bx|3g+p*9d-^JRGykYITZ3M>k z0uh0s?+70i&2G~INr7T}`@LYT1tl7EOm`-R=_D$E( z$~n&!FE6ZJ3H;kIQ8qZ`iHS+62kD8dQo#D2A|rUL zW>mOwm219+&#uA!_*AzqV+E1kC+tg^lU{9Furb;c+`q$FF=Dw_8zSOUVwcZ-W0<;m z9XnTHSq#&C3hz3)<|)oFHyEmfA~-s@;sSKT>G<9`K&{^vDGt=Xm@I5y&FpZ{dLPw* zo+vCH;Tr4KMU*qOQ8d_$0S$9Jh#w{rJO#d8c0U*0`gAy!^0ant(P@J$$ROvQ_fIL*cBP2`1PbrJzzLyqj|Inu16qS&gCj zl7U{H`In`&R?~>htL7+RDN~oDSEdN?xDi-2R!rNN^Pd?KHJ3}#*PZeCMWigvO8f;e zUbvtu%@CwogVdnB& zYEZye8b-PEGkH!3JO%T0HZq6IOD0Cf>tTIufC|_jX$>Z=w0_fCE?3KS$h24I1yq|71srSOymWw@I5%U3cT;>4ud) z(Kbn6*?F%QQ|7xd#>9@BTcLXkep@`ZKv7*zQ&HVGh#yuh`kKy3h&8~~0Pubt(cD|9 zogNbqI||Of(G577X=!lc|Ckf96%9d;HH2UaiZX})BF}Wp%h%Bxw{qu*egAQ;5XlbM zPM+dCKcaxFifo}Z7~OG1zL89ZvJt*gGRRk(*^3hyS@^sFDdd3fHy>1AUd@43HWT5< zMG-_asoA#hlGY9GM;It8r9#czm%c92;B1BNhkGs9pHv!@X2f^USLTCdkMmiT}i$arpoK)KdjlM467X=yoF7dwOq{;P%S3c)Q7 zw3p<;Q*rnNl^n8eT*=DcEvC86o_gG(8FO-KAmE<%d&~c;+qP$o@-?EbSo_5`lSNyH zq9XcLEvI|ZEFSVJ)McxEjNlu3b(*rFa5)9zu9|>XW`=h*(M5XQIX$s=Z<@!I5%$Ab zL0d;P<6Ir|J)OLreW(L-kj(W7)DMwE?;$gqLC>3(I+dbD(HpHa!Dnd98}o+ThHE$dMhaE<5F zd}-O*_sPvyg&$IL@m3fS*1%1sO$BUCt)ONcRfmd<%rCh~r;<8LDxy;|u=Ji>=5tx~ zUJTb=*H*O1TlES;gHMNzcEvWa1`MQfAEVJID9P1-kGpFpzakSdj%3fa_WBCg! z(Q!P^RGD0x1N-~-cTS1a7TqEO!(Y7JE*seotGGVSAOo&F>^%G}2KIiSbfcW#S_H7s z^ce_=q434~CBXd~oM`tk$sia?55ac8^Z_o93#K~#D{)F9yU!DSIN zN2Jm-?a=edKuQqhY(Qm@tqdTx?$y8e+Ch!G>bzaP?j3LG6?NQXK*M-Uc|g-fg5hkF zP484vsiD)^f zVjGSFm$OVOXVl65Qak4bGr8T&#cH_ zW6zNcdFvZzDHA_^`19RIkA7-;yo)ni%_y$+1JZ%r9Sl9YoB&Gj)$6D}{hadXC^Xbi z*7U$SEj7}|p}gk_MoA5I997TEV(6IWi`!4#5q{e+?g9Rg&mdy3FjmqyXY$=whTb5cQnR@W2S%*!3#3O%qHvN0xJMdAVtWEJ6&7iSQ07lrug z*kN_oZVznuB3y(8R(iK>Hba~;zd8g7Np z#YAC1W7ydh0if$pX=nf*uHRQZwRPwC*ksm_xOtU5hUsNPiTM8E3AV}j8T+AYkhlUp z#7S`&RuUqYg@)<6?QWb47;!&H@gt?c&g{Qubcoi`OtE>P4e4*_znA3uRaTYd1sEaf z*ab5r@~W+&C}c(>;6n_LkuI#@=35Vgt>bbV8d_NM{fSZ;VO4ENMnLK7LC@sfV61m< zrw>2ZJO%i-6+Nu;6=i5;q(g-N?>QMH%*wppnCFlk>`kWF-`bFMx9#t68~K_+Tr~IM!8)3_oBmgW*cG z73M&G*#iVFd#6THwMdte=A8Sg7`yavoVfI{1!0;vvO<0k#br}h_Q@vEz?Vb!&6Si5 zfCO)yH#Yfj)OeOTHJ84F4hyfw^R-!wo#qEGZ zK(Jhn9-=}W0)CGyYj}`9q37%9xGl}+rM;85W9CJR$r17Pezy8`<|75|KQ={%uITXI`v+ew11k_JN7CK2} z8Z@KY2byI6xQrpu-4cPDQ=mfj2=JiV&9rqSVO|p9muEx|b4dJ5q(IOpW51gG3jIm7 zU3Q6*?b8{#Z#8B37AIkH#HT#~g9dd6^CO7tBl^(HFN3icm~Zpl2>bsNQXb70=~t7$ z0Orbw0I2^W{u5F*CdL*9^cFS-W+seuCN`!=ZY~Ns+D*3vLE3i+IH3SR_J?m@@+ zKYkRr(7^pTu~6qS4NQl)X; z`L7jzwPd4JaRB~!iyZwX{_0)ZO%uZjeDL4@mSR!@>~$^sjp390q}}RU0RgZaPyl56 z8F)G@`x#j}O#2yeIXw9t`qdiDwi4XYKl=^riD&g4=6@5z-Th+z_8~v!dHwks-p0Q8&pEBR&oKJ23cy~F>|-{q&?xJecfDRr9H~93%exlh3=;rlXwrYjj#jMGjexQSkLlk*_5|Aq@bq z;;;@uyjK)`{-!kr3P9lX5S9RzA&1}gtUy6eTks?2ClCLPd%tXA;P7TBcNr9FvyG>$ z*KWcnJOyet+#bUpzYsT8ZV67Lm(>5-~_0(@D#u%=<@GVG6-`2A|N7n9cL~#C2H_*y7 zYMDBgxEI&kdp(#-!Sr*sz8=*X^uQBfcZ^JbfX0*RGv^9*aFeH?O#dG3jS|fWt;iFh zZNZEyLBsXhiT%v=>+?EkB5k2~&tfRs8 zLqv?UMrC?>8paWyTW?X&+8*FojhPcX5@%$iUW8ncPf!)lqsN&_Kgg@BNn=T>$U;{2 z>?-;7p&}JF&&4m~5C1<;{_P4i5e)rr?c`zt8qI2C2VMa(CthPBsCG zjv)}x{j);0Smn}qznE1eGp5LY7&VVietelT?#4t<<1 zW^;b*oG^qZ0=4KQMA?V+{lXc$_&8&mVjvj`2ck{yhRE92;m|(g)9+6+p_~R zXqB!3@?Du_pXb|p&Fo;z?8zSRd!pEG9EA$k%iqBee!*I9Ag+gykVhvI*vUgl6gzr& zPE|0ft=kYozF5+b1D=%WECG1CzFWJe(64cXnKE{&jzVP%OV(E@fOiP1!^!dSiSa*v zV?&%L&VVHzp(&GWR_~Hx#fhu$I^0&Qq(ogbJPj_2G>nTphV+67Y7PFuK{7hO-4l6FPolJZVa}rv0dQQ z0=s=(S!}m?Zsv|Wd<3V`Q@S*T)8Qn2mXE+L=pZ5C7$JDL3zhZ|3 z1V4C3zQtr2WMMnV72rG(mDi?>bH^*T?l%V~^2p)2hLWdPyq}*(WdRXI%Eh8WlQiH& zW1W8+W6x)aOgB%JU*)pIe8VRX+Lus>rpV*ZIHxeI@+vyKO&~|44bM$!We)>SIBYxb z@mbM}IaL?!uyOp_!=Uz(19n^eh+!xk<=necFk^B^3gc-6iAgE9km4fw_i~)Xddyo^ zZTogXZT5df>z4=S+yNM~`nBS+nQAgHpL^wq}rhPik$XHF|Sn)+`1$V(Rx(0UN)~*_)aY?Y)9QhMGpTQapEh7 ztT0d7#6k{9)tsWh*xMa(cNsb+*BO;9b<^Z2ex7oVjrTqKib*`7w$U_UL{sc1?G-DZ z9vhSU&<^0*)DFlc z=#~wo&LqVbf4ELj z1mEvrFpsAlnvlnV?w|Wy_9m*mvGfZfecDfU`<1=CWPmSSh+d^QIkm-{=GW6TWrXkP zG+Dz&3$02^c=|=)L|wjACy>G=Lk+cB$%JOLKEDcJ7CA_tWBZ<3wBDZ3Q}B)Ed&FG* zk?jan6HCaWK$n#pt31~u+DKyc%FvamGHR{attYM6VR-r``xvw~B9fmg%^p4tCL<(2 zKe0$H#9+1p>msj|n?V8zW|D69mkeZ<)6hKnZrq^LI`4?JXG^Yw5sD|WW`9Lmd{TSk zXy;iFRc%%qO81l)&6O`BQ)IbDODEM}HR3}E|HClT5z)Km37`n+C!58GlHy(8BY9Ya zIbQXMOf0c5rxMRPbz*7ZJ@a}Q%BNku7;S#kWJKDj{+nN(fc&PESrSiWtxBo0@7w2~ z>G^naVj8O&|EMr#+ElD_r=nQynx{*_w_;9Vv2)ci(2RVg;^!%UyW*0*M`^#bSM^~R zl8`-urMNmg*9{t;Xx-b`x}<B_;5YGzC8(tEQO5pbzdc=EXUS znrOY^ov`pT|yOdziPvGp`B^Kkov;zf?_CvtFZW=t3wPmKC%l>CC>scl|)b0{)&r(+I(rFImMQ!NY7@1050XU zBny-R)bhZP^7L%4Nxt+|^vF&;oiTtlLUEN=UnOQz=F{sM3q51i`~@pNC_upaJg0_s z1D_}@SrbSu;N!M##+SaW?Umm>PsomDbtcapB+qLspkrVHYB|sM#&=#_E?{c&T|pWQ z(gLh4IAmgBPqH+NxrHa5VctHJ@7tAUuvYh#ZrAdF`8VRvvM)~XMGgrWMq8wfphi=h zmAiDBEkCc-NwFrcCPh_XKxuT(ZP3}ZUJZC3sf~F;=vI^fYl=+q2yQx`kLcydUm}gB zgUe5gcC_D!^&Ho`k+q&oljl{@NU^H7#qoMvKT#FXnM3?JYzQbMFTEXaT23UfVudrgFD5%T|Kr$1J?(M)lgQVYNlkY6)&` z3ZGo1e7bsk`H~?+|+rb>*njGA*@CrVw$E8qKX30I-;kCP7pEk~YR3#D-cK3ajo)^xa-$NTzS=DGt7` zr*)7yTGib1x<}b4w~P$Q8(YE&{$%CDH$rRS&jcq{>hHKu2z1mFZS1WkZ$z=`r=3dY zl?V)h#EvKLrJS8(s%M559G&ul@qv^@)U})x5z1_R%3-qT$7jfwi{}WF>W`KIF5M@< zQiz$|P(;9R#Jyd@GCA1z!rK>;QT)LWO4{5+` zxv^3)FfjPcxfdFNnOU2b05VVt4M}-gXPZvmUAvlu*{@!5QzlOGwL7AC(^)dW*TBGJ zXMr*+zYW7qUgt6ZKw-(Y({V?9>QbFsrfPL{|ERh^;0!*_nzL*Lg522Xs$pbcxnOD6 zh_HEMl8GL=&BiTL*7IJh~<4nGn$ zBv<7 z{Ly`YDh|b1WV%iP$Z_NF!lIg>W;WVWLG)0~FRj9oexEk5NiOO`V|Pf(H=qIs?>K~ba;_N zW>#R9#?5XlC)pp!2a6&e00ubE2$MZOApLrl!mz(PlZBhFe^(y|NwG!6W)T~cvZq1- zA2?X``WCkQx&A>N7lfmoRV8*YXrdxmvqw@VlI!giXPp2nxHRN23UBJ_GA95mj#w{m z#H}tpD|7zKTQchGSrvpA0Wd-=o7Y@dq z+1zuB7|x``^SE}|DvX}uFDi)u+}#Yir?L7ACS(3@KrQ zRBdZawxS+fviIzj!D8+wqWYw&;ea)!m*_BRbwL|k#806NSW7OY@cJLVEbJ>i zF~rPChA>RRws!vSzg);87e(O{Q{7F55`)SO$fA4P+A^I?hbY;P0?jBMldnH*D3D&6tDyw=^2dwW;4UOOmgzbzPmu8Ri**;+Ml)7c zS$9mW&7Hp0t*q`?8dE;ooH~Sv;+PyB!`cam;`#1Y?UPz2j$~QS{?iu>gb4x%OUnDj zlJ2BNn;2%zlJieuE(=k+y&84L1V*f8$~1wmdsQeZ^H`%1D@F6NhAk`%C&!&5f?6=# z(YL+~prEMqEWgV(;(*}o_v@UJ=S5j><6HO7GIfdFj{PQ${wGreNx@}M^Xb)s1i%GY zu8Yf&jn}fd?O?q`CXk&syLq>)JEb%?f_nmtOBmlUfH~t*S_|aqZ=mCkXFjrRN0Q`= zOeXbcuRi;syKXUtMYX|)K`*PrT(~$66Gv{~r7fshjdxF~u=h~3aXa_S@6!!&m7~y7 zq%tvSJl5=GeK}&FNwZC_&57WWoq`Y_~(XmYw7bYYO;S?8M!F zKcRFchFAuCowB<7JY*&*yF*UUL`}&{d|pH&Ci`bSw~|J3z!DP#Gr6bIf`ZJvWxPza z|N1V@^w!7GvSKbml0bN;N$FiX0u>Sx4~y&GCcr%J%uou(=z+pjf6scAg9DKw*-FS% zgF+M9Z?t#z=5q1!+sU3SZhU6IpEw&1jm0f_;OMoOOT6qu!3yq45*Pbso?E~d`zkW? z+LFymXAQi#Az=qnbjnVizlC};xSV3WOOwUUhL5SUiiAjUHULt)tYO|QXIYz0DObPj z2cv3u2QQ*?W6dAq0)pp}8QE0n;prBu)>s^Pjjv|<@xO&?oh`AYHOx|urX0)TgFBW} zmwXl^VVk27757wVFzyW#s{hW~AC)CV-}yhKwC*_|BVY-w;pc^jA-F zex?GWP~t=}sOCA@<1OgT_anyl=i{PD*3)3`Ftc9nS1TA^LUm$k%wbx6F0U6|@7U+Y z|1^g?D-+;!ZX1YGyuR4EV%9si8@(gH zY1!6GPl2b4u~S?&ASNDqSVHgPQ{X}5A{c0d<&+^^?H&ntzK7zXE<&oERM}W{`Zwg| zXb$3970l`nSB;TB+uAY`E#2m^b18oE;N71+^se2rDoIr@BVG+xvt0SxDrXU@p3!9e z-dg{H9{bC}?llnx7^>vj^i{2H1+!)KeFJU=Thzok9R<%`zIN0qLnxMst1nn;uO#};@8#=j?la`Hf{eZzI{Dx|(P8E^5Tc5uR-*^R8#z;m zQCfOtnfSYl`%9}3Zk|Ot{aj=sKa00B{c_F56;kJP01M1^ zv@%ClhO+P;=T%@Ax6jkY$|sSWREJAkgj%D6ZGe0w`G#Lbqqkr3$QZXtzS>bPC;h|Y znE&pJ_3a*70n8JH6kw@r#VRHxCN4?r!kkMc_lObLCQX2lGqxRQxvAYev|x6o^+e48 z8H=Ln6&>=L$2X-S$x#-%){d`;PkB%!Zm?RhgMlfNVvmd@&K16Q+e$n90mjZO)$yy* zM5RrnjCQHB5O?+lAIOje?rkGeAJKQ+|03VojFJ=gK zRvrhd(ToX?rU9d_(aT$?>x^#Pp)KO)0AQ3yktvf82=ALTvrQe24U>C>O1G>F&4Z?; zls3zbf&0R8)978=@(t#r_F;kV9q?p`x@^Zy4=mnceX&TFhW=>qzd>!+S=JHa817uY>Ioi1-%&4XUY(yhO!snua zbTnz;TorogZ7lN~i4lU;krB`^Y=wp76FuP8tTO5JMMFQx4o(~RN~hZgY!cD*^pBnn zxuJt`r!{{y8yuR}@nZb%Ka0KGB(y5|BAR}^51dw)Qq$N`#Nm|r_tML3YM?i_E2>4T z)xc}w;JW0)hMXBIRN_Br^gw^1Fm_c+&x?h`*E|b7d(-E&U^nWh$bns|Vw}M@X(IAt z@<8+K&0RIHcUZ44mNoG{eSZ6I=fwwcHD`0*ox^MBv|lS$Ry`s5W}0aMWuYll*(~~u zw60NaOe+cq61p@2@p%>j?@NhvQX6Y9#=~geb6150+`D?68;ZqLq4N!3E*_{Tl~KXsiF|$GIZroYa=>i% zMlQ+-Kq+rqLanL5)q5T$?2S}5?ZRN)Z35JFYlA{sIvSw1gn0BwkWgXP=Hjz*6DQ!` zWhU;9&+B11ODZG57U$UIq(nj8B#ulGVyknHlUI{qV*sDEFIF zC!V7APpn(@4~@!BaX8+dtktsX;Udh37vwTqa>i2+wF|R-agZe8&1$zJWOnPzDk319 z6iJPkxPE-6=;x1t!BKszIb2~|wpmXiIsf8Vmd)T5M(g7)W|XG^5z55K+akp#cQa#U zqNDZPvbo|8O674-zyi>MdSk6NRtBGEzeTxJl}{%$3g6z_(SWZ1`KZwbT+&ZxekP^? z0EaC*%qFtB zlJ=wN=4;qgW`Vq6o^eE4tVw$;5^ zM?s0>uE%O+WhEa93X1pJ-8PRc$z=+7^@8uh(f8-8r=RKR4@hV>Q%fPcP|$Lm@V#8q zmTfCbVcck4SM0s@(aOHGCX~JMp8A&s*ry(`L=CFLGKmK@iJ@(BmIHvZ8*J%O{h96Q z{u-q}lEBrt6NVVyU0+C+QP=H^3i7_W-TfAQH?eCQ17eRRo>SxLAG7L-|zG1 zixuvvvR2CW!EG6D`r9nD%VkIxM);1<#i0xr{hsjX=O!zo ze++p@D+?|ZZn)5uvsDozwPBYw#E8p?2NN;VgZnMUZq3o60xj(Mbb9sXC<*CQYWd>Y zyX~D{xd*RCl5tf`GRU3K9}N;3>9h#BmkM*#ZC^Q%bBugMCZROJ2JvHVX zNSg~-k}lK$Z)ivvPoQZzS!0lnE3G<`u5x(PAag>xQtG?S$DCWc4x1@0eF6{oRSQ#K zzvP_1pVyXpUU#SuMCT3UU1{JqYIV7>j`#yZWp9Lq!F!|ti^Q%E()KF7q0+$G!M;JrE6%r1G#rHX2 zh>D3VMPo7#Yb|U1qKMJ2361#s(r`o_Co@V9{<~C%T&RG!oC=yMyErC%?Va}GP^kW` z`1BePYT(vgNK2YS$8!r*XiP@zKcma%OXkG}EHhcJsp+=PN8E zSetJ36u@Ed_;e2qFsv|I)tS@A$7s~+;vu35VdBV^*Bdmqgz&rkZ!9($N(fP+r?WYB z{rC4}3XRM5$?8N5>z3rm+(wzuu%!9P)WY1@9OS(kNB03M5R<(*{&=`!^+cpft z_3~kfge2K|el~0_SL+c(rf~)N0znF^>EY&BY}NeFSL;D~KA)TyTWxg;e~K0;U@*n3 z*|I{Ig2tgC852njfkfll>@{g%o1DiwtnND!J9K(_>qV|PnNJq;1%rm4Xo|$+(6+b* z6yHUGxcBsf(QElL?qy(6gWCxAfk`i9_S%rBV8)$uxLnTe$MD-qGG4^Gp`;7rGPo5m zOn!fYD3=k$c)gwqC6&zynlY4E~@I3?CS%(!QZ*G zaM54$3o7Fc7de%1u(P{^8yFUMdc2l$+;%LOH|hJn5;NIsETx(MrR+-`L%Z*O+hTcL z(VAz#`R-2e<7ex30s%z=F`)njk1O`)?GT=E;nHo_PhOwyGqLykgnP5wqiG%eW+;=@ z%KYYU2MRvEyx-4z8G|)OyJ52-ceeb;Qn;7=H6hT8QO--Iy#(0I`( zwIM1x7*x?%q0lQMd4!|I!I4nEUypN7Q&?)wzEa*__hZTF=@Qa>Z^^#j`|MmE4#{e&)IkY!8Vv!v-uF@#4KClWcG}wdctqeNnIwy0a$XIGF{Q8XVakj7Sq;c9A$lF?g3TMxy8i7Mf0eQ4#U|4=EvwR!Wc#WuH>E)@euy#twM3!r5Sk zMQq#l0)flnktlTN;taSLjCA%#SfkfFR~Gj>0)y^82G-O6=$4jb-Nku)-lj zi{<(T>vlDE!{u_te_)XUi-9gZOE+heV{<-KU=q!u2z~^ou@M(8>lG>z16zbp`(k(r zf)yhMZMbCg4b&*8V4=8n1tsw5aJ;S_V4RhEpbFe<0tATIfWusrLmyq<2mD zIv9O-uZW6nOojI?0v8pR$wwRtYv?lEzFkq*SDn*WL;43^u+^g!)ck=63C7F$ympaf zM~LLNn7b0`(Shk{nSl^!^vP}|%m&_%=Sy<3(JUU1hrS`xZmKVRg==K&QAe)PO(a5H z=%cAL-eJM_L3C79;h--g2ibH<1ZF(LmGs0>T0<|`S|GLqzYX!yWsM%@)XF3=tv%@N z@7G;=KD_eDDU)GK@B0z-Qav9}#W?jY%Z*{=3OIY=BmCSG3$7Wif@K)8|1ATG@@+en?=%Tbm#_0-McWPRU~_OlQ37y z0q>YiOlTVO3S!N1Uuz5Sl+h@@RGZ!=n}9jC!vI?3A5Z6xO^Gzf>;CA14JpQw|E`d& z+zxM9>`9GDNv1O{#XRB+qe=EVD026#WlawmAKrKqkWm2unN=NZ;dNcHmzg5KivszI zS|A8|a4Wr8F+vZPA`N#khhe4jL{5cplIf~K*8U6Nb`OLTsx#GXUTSM_3jK zjJ9uFcA4(V&JsDBVPh?wp--7+GrI=4+c~2?PA}6rJ%+It9{W*;?cjO*m67Z#Bwim+ zIr(YVHvu~Wwj9}xxlC2#U}k3^;+t#arWq3{8s?l$Fhafoan1ren_-Qd!@@s}v4C}Q z3+n*AnRS@<-_dbIItBaXpSd#W+x$L3$cH|ba9V6>lmdpGILhI zpvm!*?kXNxQ~)-RdBXL-CLdg)Vmzi&)NYSE@vEUja9N3+0gH#v_!J9Gfbc%AEW^b; zVZ%(r)S=8P%{qK#ycrY=Sy7KWeLI$bWje;AnHg0fS(6dVivD_*Xk=EQe^Rr03$GRD zs|rf4k|a-sD@v{_VrL!|mXCX*&xL+@w#l0>;*n}1E7W?8EElae{6$p-ss||#g*r$s z+3&fcuPQsCV&+V3&@59@oxNUWDTW@0&Zgqp)u;V-O_)w@L7M;TY$&wE%Unw|_bxUW4 zNz3jXh|F8U=*lq4zd`89+`?Szy=j{7igV}s!wi4v^>V6vKB|rXb=Ok#4o`TSaPs|8 z-u4LB=DR}&K50Fi?tsHxFvP_7zB1glQH3{a&*-Vust0~(g`Yb=&TiZ?z|Nw0Y7?!0 zVJuG6%g;+FH5Xmt*OmbZ-J;rSWmP=q`rIZ+5H1bkRO|fQ&K$=PSF2ajbJPF&K zifQyX#^mv~TS+nO)L8u+sj<4A=@z%!PRwe0<4TLyH5nGq$C6FD!zg!zjL0Up^Kl9- zF6j(-2mk&UUhbqpb_`ncjJGjiK6<+0MX`NwT&K3i_-M}C-Yz1+O>Sq;4u;jmxf)?{)BlHbP z+NbPN6f}Eu0)!Ft?Af!fmzUQy9v&XoHfYeG9>=e5*|KGQS0%0w^z-wp*RWy3>u~M3 zhhx!Ah93Hk{8+#ju>3j^~;G-}l7p{7ln-rb~0liNAG z5r04!vry(JeK)>0R|o39%($B7ohZ_X0amX9X&@(c37yUU%8p-C#;yf)Hs@=~P5+Ft zkNiTH&Soil5Uts=mo^_xp|zW~(Ao`~l-$b0*%RwU*tTt3YSE&_i+a7@vstrdPcrZ2 zC&{f)Xc#izSMBxw_uY_c*17UOU`?mnFP3LEcpo}QjhHE!Ja9w;*0BEB#50k556(*4QI z$(c~N6~zTmu4|GzVU`x4KvU2a2AdH-_~3&gRI`5l`nEXW&`3EiFVAYg>DyGst>T5V zU$OBL?PcR#v+-Y>0fT4uEh?~W-l<*UTzR}t_TgVB=kQ;Yeeeg7R~*is+RjgjrEI(( ziEFuZE=w3O8*2m`@nB|qR^_JbFF(+{dGlMOTfz5M$T!Zk=rhUE&{dYYK>ced1~w!9 z`s=TSF~~FsBarc|gI`eQ;SUQLa>kB=hMRZx8_GVl)SAxyhA!lNNvC$aLm9i@rN7sG zOXqVhZwqF^=#+T&X=Oi!>D%YiiId5+pFNX({0G>0FjZWm8fQ;!v~JJWm2>(tI?Lym zP>k5b20Vh{oifZEkQbePK&1J zIL}(HYqr(7e*n~fnSq_qwuy!OuJnaxY(|`%oJ=`6IX0uUr`otOcC!D=VICW4_VG{X z%>MU;@k(QY@v656vrjnkrN5%wj1{~+_OVi^x>A;XatWQ!IHXnGx%L+UYQG^){!X-E_*~$^+DYnQ=i0uLjtRc+Z|av~S-& zy7t;@MH&mZs3)(Mh9wAtQ>Q`2ML3uJCA$k>(?w}m%#E9Wpd-7IX#4R@I%lWEHse<@ zH}gxYLFax+m-2Ec^Wgh*c;9+Dv~M#V+_Rqcr)1JWR%iIuTaM+>$~9|*UvBS4JHv

GM)d`f~;HnUgy{(1|yv{KS_Z4}RgEUVU|U4zu4T*`mivuw_BHj2JhC z9kJs3l@6N`1FKiBwi&J6d}jROby-O>4}4I-=t`*cALFH9*@?0@(W>nirM`$`?CDStsAcNe-gv^DSzQ}jSyyA+}+jN zoQ(9e&6`mSQ2%8H)=2(_S+1RH7=#i3_uqeFj$Ht0NjEn)TRi{bh0BJ;%uQ!EK#8B& z^p-7-m$v;mL>sgIybW!Tnh?$ z?w($%{NjN6FB5D(n!+;QU=4#XVyG^b%~JcsJ9qA+haY~}mIksG z%s#7+oW(vZUe3(oA7 zr*^FznWr4i5m5hSg4{v=cvm_KxD%&OpB8Z}iv{2K*=L`X^&rY6&Sqa$;k3;K4ej)a z6?7muoi3cUx&-Igw_Usa5bZy4!uEo8X!nK!`+!hdbvo@oI|F8-^&;=wx0J!INBZ`+ zg+Yt_luwl_D~PHvVn;a6ey=o6d!j8m)vQ0wZpd-b@-e*`rA9SvtnBItWwt~4qXA{! zxduWQ@kbwhL>o75r1R&`%lj`xN61UwRmjk`ZTp(e=UEN-{Mj#P{~2qG!r`3>HY47j zoJFVhe_X&nhR-YGYD%RQ&3j5-){)Ec3z?^st0|1?GUC!Af39D>{J9P4DaoRM`qxkl zY)Wj;fPjDk>5?G6ys_%$rY@)4tj{^l3VDiO2H8+k`B8uH;CA|F_fa}Ee;!*IyUGS0J76K&eEk$%~7A(;M6=lee%u4kKmWXV0Yt0Dk3aq>78)Enbf{>q+qP{R8`xP| zxpE~v{q)n6l$1o>x^<&1TeeX59zDoS?@9AMTt<_B-Ag?O`qSQ&JmD*^*|eQb@(W-| zSihHF63^sQ{MtmyO<$tq7KUcTR|g#W#I0Jj5-k;SjW}?{U;ofI37hDPRo4E*GiJ;X zA(n~-u%f0T%$_}4iCMcw0^3hy2o>Ic#QI73pFPJ!ep#?<=T6?2-H+XlTP6S)F&k~P zhlj^74m+Ul1RL;!nh{@Fz^HDUp%zChJu5kP?p&vF9v?3tFxX*PMTsW~8}K;2UjHg9 zaT_+`M*IZ1uVKT6H(|7gX2e%E@WaX>N!Po%x!uOXXhFus{X2eNMc`_NER>GPJ z{J3>6HVuZ1N3c$(y9)HB=BQl+ac1ff54ql(4#iRuiB-6Mb|g!j!Nop{^g`e^R6sqWldIHUrQ^I3 zx(Zy;4I0eEs+t&K6T!TVDX(j-5>^%L>jUe6U@d1{m%7f>@hcuDl+aa>u7m)7fIFc_18sH};{5AkDNcbUua3&VdM%iR0{s3Y+RfgOi zKRy=Tk$}OV3><(AhTK+$P(pbQ0Dlmx&0g^6pMbVfIo{| z-T?P|7ZcN?CLn_mqJ+R_O!>!#p)O|P`1n(ag~1g($$ZKhtu>J;|KRrb5T%5&g+hH# zYnc74Q4Jb2XwaZRqABxUYg7Q^q165q;&{0N@IvsXHL5{F^xU>PMnsu_Df(8u^;qorT>1bUCC2E7WakXaH8U$*T4=mwr zNU$Grqv0w=jWFP3lUtk;wSkRzh7#3q6{9Q$jA1p4qoboAcw0C<0Ce9y|NwMefQmOBR+HH%%(Tpbkom> zH*MN<)a1#Nb@S%UYl1Xy?-3apS(?>$iiEE*X{-{}aFwEv0Xs5Y5K4;>1`I=N+_>>5 zS;mT+x_I&8hGWN$eU^=RF{e|I&xgbDY5DTyPyP1WZ%<$wHu^8FyY9Lz&6_tL_~MH% zcE9bm+m?R(@yErj?_fh}j9xuLL!e#c>IO%$PCbW@&)4XU}f3 zXwjl)U|8%n1U>%vW3?d{N2s!0UJKRrXC)qleeef)>#esMsnuP%j8dav&lT6T4_fnoN>YOhViFTWxZe^f=b>2Tnlfd| zT~J@O!8(I5R=6aHckbM|yQimT6dU#TtnR67;FygD*QI6-6D|%$3^(2o_zWh_)=+~W z4Gkj`oC$f{5@9l#Y)xvFMOJh8z{8kFnCf{Y3V>!d$8}?_2n@A04ux22Q~)#OpiIse@itTbF(fcxcBeHefH^KO4~3lUvJvr#Ss zE)MXY7c5wCExQS~vvEJb#(BTOJDE2zEA_|qF(#@f40I+i%xM|3LT%SqBb;tzDpcmN zD-~q%xZ#wg;Y~_XgA3wCCJanXXTuc@xYR~TGlVZ(2yH@=TymJy)eKB#R~fK30GTez zu*)+GV^Nr?gaFR>JrnbaRrt$V+rTyVcm=J*<}@Z=eB|urm_-QK%9O`I_ek|ne~hA*FH_T**bb95<6Lr| z*O-Wxsxwg6$w%aV8m?g2|Hy5X@EImvhOk})0HeVuVZ6v-CPXw}ongu){&5@_7$A>1 zlDU!z!v)Z!g|eST>hgASZ3;lg#G)v&3~%)6moofGWSKy!sR<@-scxW24=pJrF^!4( zt7$~DX1ReMOigFP{&*%PCPD$8XUdTeP}I+@QPG|Xz()tZWa2oo97c^iK<+2MuE}i{ zF)?2SfDbeh_+SG-#lN*iYrVnz(HeEUPDN3^u(vUOv=XgsVEqd5`@HkcJ7OtXnRdWJ zm@#99m`ZiltXWtaTD`!GtKg6lmKo|LnsD=_nJv65z%eoTaz!vm37rKfmD84{@-Zek zZ91f4U^C#1j0_q)c(629M=S(%E5#z`)222J? zv*8b-m;GO&VGCZOQKJKB;J|@2c)$<}509YX!-rEyNXU}V&`|ZPq$Ob}6U#qfx-rDN z0D~ZW-!ri+SBWpP8|%bXs|yF)kuS9yiDD?b))f76R3Nyt`ry;L<0s4U}Fxah=>SI2U2Wo zEJa60i*Vw^i5M*-;#g?h!$T}>P;TJ3{AZb}BrB}IMNQ6EQ8=v7nhJWoWs&#OHYom6 zC0ZG<8Sn!SJW#*~4h{~crcImL(#%45`|Y>s+i$+17*hl-Tegh$?Ab#f{PhlnvI_R< z)tkDGY{S0sD2gsM43YzBP&_1Du)H{GQE&FonS<0np_*jXVoea;MG zHKv6N7t;9e1BA-*3my$0Ig$py{Svik)k-KW2t$PdLvf+XFkToO3_BtsoW{)^OgG=_ zM(rQJZ~T+`9%%M_tyZmTKD3^(cmxCl5W6*ap_Gfvl*@q8goGEG%7nuTt;tAE)MS zrtZ_4Q7{`c)E5Rje*Abm;zb%pY&05$5rg5O;WTh|7mA9C65C<>F{UAW{HWjA@UhsA zLo8mr*yfTr(+Bov;$UU%X;m5&s?aL|X|cK>C0bPw27KFXw^6-%^#qXyyL9Pdiz_Su zp`=mKGG;lNNn4aB3M~R@Ue%^>nT(c1`B0HD2$fNr7=fF zuzH7#B!h7*4WH15{NLzCGiOeCZu<1;!tj+-7eLU|!RK*aC_awKE`<71e7OvGHxmu` zI3d1hIXrO%Q5nZ{d9*deSLl)G05$`D{q@&{8z9reh7F?*9Xi<3%mRSnO^lsD6JyL2 z#s(Sl_9$VP6DCce81s1Q6ZtYl1&7g!6<^XPpMFd$xBV@ zwlY>r$MLVo{;jEIo%|YD6|fobk|j$pFNTOqUU%Jf>a-2)3iQPb)9cgcvNA>s^`1Fn z7QH&pkKUQLkh;D00u3HAoQ4h@CX{pXh+n#>Y&g9@E}8jJdD2h;tSfjbEh!c-+udzRBe9sTKIm2rWYeZir{3na!Z@McP+9oEFjN>X;xa7_ScXtuD6J`GGL4+mlg68^ ztrsIkjG(b&$5PNpM*8u`A4NMb3>a;?1Ng5Vtupt*DB(zoA!D-2Z{F8&14Z9pDejVMbD4SBOOMOwl{iv|oh zG%}p}7+#@}@bGTd%PW8i8Su?YC>NV{Ce#&rMItT6qqPz(gf@YHd9(?RlU+zF0%5>M zjvS%ifB#)=td3X!Y*d+Os~r~FpZX2%Ba95j*{@$e>iF_YG%|cBy~Zzw@4fdSjeCC} z8G^&9OP_W^d7-8-biB~P5OEy5M4}9SEeKZvMhs(yAtOC?A}jElJ;)erZFa-g!hr$3 zsQ;^d3SFOq3cbV?dGk&{WgOGxK+~HQd!N1`YcrK-c~PVS1C1LuR_7JK=+UEpfe{&k zjdb$ZX*zuPuy_&t=9_P5XzT#$-n%OeA3lQp-yf;Vl-3j)5<eZ{)JIZC*qe2Eem+A24oq)^(A3wzP`TXzpRt+Z9o3xW6{bmXZmZjY{O!jJ^OX)IkKb8 z$Atk)mjP*`A(FyEV`zAgKbM72WOyWv3K~e!Q6_$QV*|ICDB$DXLgC+f>n%EQ;smW& zv4ZB$nJ)}nxg>j3$bkDY(U-HRgI5HVaZHy*ib+@0n$ZI7BQ}(`t=(q8_3PIcsw>kD zSO{a;eF%NcpG*@>LWv{T=ti*HfKSSB381!?2n$V~KAC!S>P3BC?JYXZ!~aFOY>j{c z&!7J;{qYxG1mB?#Km1U*CjI94(ujGztgb~&7!3;=Mk9s|6l#yJZ;?^aGa@qvTk zXfQ#AU5Ltp!wS7pk!;e*L8=bnHE8Aa-oZ)b8PX#R7%x$1379u;p3Pw0+}vz&g$@xO z8$rRQQ8bHR!qBmOxN!jO-MOFEuV0Tz#cA!@we;oRAJWw5DKvQC5b@}jA1PqGQjtU0 z*Bv{#KN&-eLY0TkwRY+m9XU*>b&N4wv@b(_yLa!-`-YRhVF-npLq)5Gayj;>kOAYM z81=hRq@0T)EA(nbyNJIdm1tRDQ{Xda&WJv}G7UWU+;g@x(;?U(p9y7y^nblG`@8*x zF}*Ul3q^;SX!f)ztd3Kt%cQn6DtIt;eYu-ZU)c`=trm#GK!5n|2YPSu`@yJu^YimXA7Pnh7Kwm~{uDdaB2*j(8XaY(o&&nm(2=ju#ONsM*6U>&^+7ip zHF}IqbD#qG9GCC-f#u@#|5^bUBGpA8tKp;g#vOzEE z$gV{wUL1>?P^Q8P4BjVF&IOJuM#NrCpy`fBF{|NiNJM9<(n1(89`$%R0+Bv?^r&DF zA2J+bs%2^es4ol>E(!Vq_Z`$n^bH;~WB`S}Ih;oOj}gWTBZi?vd7+?VIX*192L*?Y zreTIx$zm8Uwi6#QBF!|)I7&39!Do)(eMWuyB1MOr#d(y|7ljHLFy;~fFwuvzQDTK& zslXUICF&4fhLsK41SCGLBuj!#fiVzs)v8rksYx2FJxc|=VBt#~lr)4nbm&krnPO=4 z@NpC#X6^e61BL?Qe7(k{N3l0776^e|A?sE2HekFF%D2K&-+UQR8OOXDVKd;_vuBH@GnsDCpaDJo^wYL9v(#W^y#xcrOP6Rt zU{xMDd=!ly>Msl!gxi3!F=NKk(AhmO>OyRXJe0wBMF$=jG8=VN1wt4vi0$EOU>_JbK6xwZ->e_<`s!nVTm_;8xx9Jv)N|Ak3asn&4oC0 z=#YIIFj!%*;=W>@V8#sowT4aWM|~%?r@oP|@Qa$Y-!B`sm=lhDsM4C z2RVVsdL>yDDx|<@p93*E+1YSPh1PVWn)Sac(IVj;8UJLvu)m9{FNX@8nVD%noCtI( zSYcm-Pm2}@#ZAC+6r~0__dunUWKpP)0rzKODb~uES;pxVT2oQf443xs30;$?MAfhv zFj^e&;wIA$=yb@ha4)>@La8P$Q3FkNin}4F(shIi8E_&~EVM0B&PAnE=#>s1L(*?b zRKjM!7(#^UrDWOxosQVp*h^4fC0S;O4;@ia>KXIx;gpxS+m+CnsFVu5(t(d0-i8Fs zoFpL(_}H;yq7_2=z(vsMU^n14v^prsa)EtiIg`F4l-qzS`{pa-m^B(_EP6+S8VkWU zDBkEBk|gI=wkdE4#tY(YzoyaI)A~9Ms89_mBuDE@y^xJ>$m)NUs0Ig+gALXHUS~ry z;0mIcmI)0CFvzYl`T_%5GlyD(C>gjwc7^Ax%&jiMoGdE^HlIo!CWL zqiiSoWMKI*F>0iJ_y+M|f?p(;dKuT>+1av3?B^Tu_vP&kaWfFM5Bo>tVY@a#aWB|^ zRqPP6mAsAda)l||eRPQakGz8u7Pb$LyRTF1E_!Nc`3JpX?X?k1bhN;dN6tinO4m>^ zw2%DPR-fKM3F8qyJLXT(&%oOdKgK&aeox!r_?bS2#Ew3}2}e0^uW!h&wncW}jsI(0~22Hi{5NI2MkMza@imE_=c?$+j$#T>DwAt#lQ&L z1|@VrUYmeFA7_KyEaJiO)=oRh__ub-9|ypns9pFv@(YN+OMU#N{eQ*FoXf#>ff}3x zR!Y(2Bn*KK5;OnwFs#PI>A zgn(S%4S;IH3J+NXWrULy$q>9FVC6vaBN^iu3 z5A;4V901!CrOp~E03SpAr~HU6^~(EKGGJs-;xQssG^7E`ksDGqVwpuXxR*&;u4bH{ z>_KU<`hXOR9+S+J3O>ffk9^0)RoB{eE&;XgRg$r(oou)hqQ58uZ>DmAZF^`2TuNM= z;t2z$lvv#`C970uV~8`g35k0_NnVwJk%5?E%GuBixQsYA*|W@b<{g;OSKZp6!FkXs zwH!EYa+{?@O9eDr`55AYy@M0P#|RD1gJ!_xz^Q1RXe%u%ynt{xB~}(v%{tM)pggee0Cc4SO=9>Q441;$&F+inNhQsWQ)2-m13wli=K{yo zns%Ikl2$@03Em+|&3r@Gz+JpzQR>dsWq_u@PDE)3gcb+2U+f!_)VQ4?uDMTeqNk)^ z$f{<(A@MD)z5bT(ud9E@OUkA$iHDe&?p{r2Lo;9};(*2L`ed_Pg=bJgM|3}CyO0Er zqS$rX;U;zJUV9L6_g7}M?LITDX*=V}rre39r|AWQ$Asd zo*w?|ueBcW%7tdYl>l`7QKIDrjIn*#YImQI)u(-o388A^RrAF$KeXu1Myq>invYNL zZ=TN%{;buFcRu!Zr-{4V4~ zrbF}=>R^n2Qs$}IF?y>G;T?}Z7us)bUc+9qPBgAnyH56v|9fPSU&K1SZQJm;<~>)e zsH|0Ai$pyp=B=s>W77<{5|Luk?Ny@XLdTG#M{LH&^fo4b>0?Mt^a)<+sm@pPA>GS^ zV&d{2y}Q8+L3{`?r`{7UjC=)ZF1PUuNowY0Sy}8FA}ASbeUNRc=5v)dt!&@QLDi_|VtieBbAHH)sn#+1B2Sk0jQkI}fri#4cuKsO43sz-+9E zE0skKIlej7)HDRMv!9*lzAHJ#Z87q*C%6}=mz)XixoKwIPQ=q<^pC(0Q)BhLGon43 z=ZyCtK28=J>BlK%{r=QgT~9|X5SaDyj748yu@z@Pe63R%XZzqdR@2o>G0};)Au+o{ z)aD{Ti1c88xbAiJ|5NATYoBsxr$JW6TqSfSt||kTQ>XHyJTukg_Fk%4H#s@Vtxa-_ zZaW*`8L<%~YrNHf*)ZQlm}++WJWuJso*JY7{A8r(W9P&uW!<1ulY1|ztg=4@{v-$; zfu>fhd95hmqlGsssM;7i#%!hb5gW*ljhK!4m-b%-yp2{JehF_WM z6gnG~Qkkxd?1}Dc55_co^mvr+E;h6t$UA9j(j?uiFR+qNTC9F2Z_^NQHt1dFCV8$! zJbzj<5dx`Zz4$tsY;qHe#ITC5UGML4ZKmbPV%?6?tkql*poy$)=$fWbQ=4HL65KF9 z8@}!-Q(moQ^?m^c?i0S|8EoSlv{JkXDu;0j;6m6Yf2#!4WCKRs)Kpfu_gYy1gKlS7 z*#JH+J~6{cF##Ye^7B51gxSnpn9B{*#I`Z6a(V|L+$b8vF*}d5Q4jW6~v8Hwi1^Wm_Sg8))>^Z3oc-|9v&XoHf-4NIzKLshB7RgD*w5H~34Y}BO6vl%ZE7K^2hzrX*rFy79cJKxZ%RjZphev6Nf z&#kUTTo#x7w=Ak#yJ z3=wJIY|ht|b!0i6&HhR-H**=~9E?*+T?>8t_I>2pXPthg3dccOwl z*jyF3DJ(a8N~D|%SF13ak*c|U`*vXfGF`xc6~k3CCuJF(&HbAB6=fg)l+LB?QMM+^ z$;qKD$Ij52ExT#Wf4eC+CtE4099+mcO_$DQiMX$?ZwpUP&sOXcH(@v8(Pqt>-N6cc z1N>sXFStgv&zEEFHCKl8`7lhSGH%S(D$8c1Y6AcK^N%ep4fsOVDauK^tiFaO!&L?<>$v5GFwnrjKw7OxfAi$Gl8S1C~aqX6~6UM3{Nxqe5kp zn+~PZ!Gk*#114I(d6l&c#;+KhWag1i#JO^hZxCTwA&--N`a^2nx^*BMuRkkrR}Nb; zABP)(W;T@p3nK}m-op@TSjMgeoR>hV1P>~ z{}NHw(WP`|&*$QLibDRSe9AujEk7L=h~s1(`dZ{a_uO+4Y`g)?9y*<_6)SK9j^C-Y z6XQj$fB{QnuuGvtYb0>-DNMY?Ir~O%yvi8uTwVwR1s5({Xp65{v4V1Qb8YD%LxvV< zoH^+$Z1LR8FNIO&X0j?P?!lq`%P3)8A|3koTROV+H_F(vkj}6RlAZjS)t{Db1T%ey z_0N!-v4YYz&83`-<&=N!ES=i^EuB1hQW&K@vW{4v0N5ut3+KOV?5$e0ie}XfX7*yk zZO!WYBn+5&LvaQSsGHeREV_ot7QJV(+1*33!!x%9O>O_sOQ%dax8xbE%DpIIO@pmc zTm-^Ed-v{5vuDq?87%nIPe0k>Lxv8c^lfijU)B_36SQ*yP@b3f?d5V#ul;u$rEPhO z&Yt>|Hf~b#i=gzUCC}_yPFvRhC6xQnfvtS}9K|#*L#Q}!o4)-W5oYXMtds}^HnHj& zJv}{Nl?Kd8d{=1<7&sHFzknIyG3r@uyj>dJHjaxae_qQbNXszUtZSAr$sL0tsud@h z>zS4DRtke~CD@Dh$0N11}pE8*KVkHWoI{+%unF&R3Xq{NqA-U{30?LV2K2 zO(ialt18RM%%XjnBnX=KV9AyO?iAxIebmo2dwSVY`|t|z^ua0 zm(_q%$Lo71$LPZ^*cmV_@xp{A)abtYujPN$;mLC|o9XfwKG#USO^U^%IeN-jk5skj z#7tu1$8$C+qI&}*-~R{Y>Hy>{(d>e#U(KE;akfLC8AV088r zt_2%t9;@HBo!e;ZHV50}eM#rCmkR^U*t3Au_HBMa`^ffZkWAlhZH~jA1IRt`6&+;d z6-KP6@j2cv@5mzBn}sydh4Ww1nZ56c7dbU5YQTUrL`>_N7OT%Y6{8PGHtG7Figwc> zKb`Zz{N?SR`nuoaFCzZt%a3%B`$?umyH)y#WC>?4@U4bR8gP>)O(;4#x_}C+Ik3N% z&A?=~?#3=i!EGvAjZZM~!HRsFBx?FI)9c8H`m%myDRmQ z@MF&$cwgC;Onr4!98b_~VDYec@UTdbAi)-bE>4155+t~5aCcZ-6WlFWa0w9HJ;36@ zB}jn97nisEzVE#E{+n}VdaAp+y6){WbE^&J=N;C)a%bqXV$=@(%`fRcFI@}-d9Nk@R6mo7I&0Y1u-J4yKvy6lVrUC+q%QG)zv5GPfIYk3|&S%A5-?%K@ zh~xdgzlmFfv*8_>u1Op4o-mI6>8#Pi&R1ukr$;lRyt+FZx3eO5 z_|k8|--8;GGrS&hcED#)UO7{rMrt7i~QvAl19C$`_)4U3G%ot~{?{k%UCD?5?XAH0pkD>j|Ko9Cl? zJ3s97(cnz{57E~y>*!e=#9Z?<(EivHQe7xR(Qzy&X+~Zx9a&gSX`!>QNN(2x}GPX_A{or9|{i}g~&#sx38Ji#CZwCSx$AZS%NyE z;TGM+NsEhA)q_0>1vm4y-;YyZxGC)jy$gTsq&{YwPv+3#w-NiF3V488sGO$O49OoB zqQxvOH>jCh)KbzGL?+;f3w-xepW}Y3_nXf3P6EZbJUh-I64Z6FdZ^vv{?}V%un_g4 z$IFgKY(TsfdA0b%)?s82Ui9T;$jC$W-@aDP-NEFXfAh$kvi9)1K6tg!(Bn8PL}fHI zZG_YRPcfu$R0^cZbUQp`qhH7W$E;@3glel*J?nY=qgJfy3k>$JL^1d@=rQD>5o(~6 zH7e&++e!ZrY@Lb7uN_UUJ$LTecG2+3Ov}!zu44+pq_i+xX25_uBNku_qO(QNaj@0TjSG{^ac_Rz(FOf_o4~U5LBe0Bb-Hvi zpJME=i5BwC;y{=7hM{M0++6#NGfTKwS5M+YA<Ztef{56kvj(GO%~^Dg!|byF^mG zTZ#gS`DKUnEQ&+|v2-C9rvHVxmc!<#SZYD~jkPGwcFU+>YXHV~w!myNYryBm&1Wx# znv#fStH`Xb1~C(>EKb=d+q2<2DFRo$PGYWX7^%*Y%h1P_?}`39>a&h+8d|Sxn2n=-%5ZHrwQYe-OuW|Z4` zd(>gjX_+@@86)1x0>G%nBek_ty_9WnxUgBMUbiVb$>+r@I|^)5D1YgZ>N)Cc+qyHx zUOe-7C*wV-oi^^vxDc?fQi5{c2;3XF5ioRm8_OOW@qOCgxaeR2N20 z6MqC=x!*_whfsOhDV!$!1~%*}N4-7O{gZjO;Nv5#^5fA|w(sI@Crql|?h<8K z=$z3EbdyjUt0R0Ru;*)z|NnU+Thu$5hnKfhDh!Waj}XuvpCvD7ksR(ZD^W(}5NI%Y z5k-ofe>ra{wwSK$f7g=cXYPksH8L8E*x#`1+GCI`gd6QEx)|4e+aym%5eEIoq*U$g z?f0fj6MhForIU42bVlhfiBav21BI=umPi*og;HWtfr4M&+Aa78&Dt)iu+74Y8Sa7_ z5z_pH#f7iEb-t#j%X^k8^cC-Bg7-lMES4AtKAp6>*xlm6K|zD2Jb!RMNfw3SQLwic z1q%MrK0lvQ(V(Q7WvgnX52dkNX-!M#x08<|<;Z`nQDi7f{q=IMtO|!OOqht0QeI9@ zZu+=1>|Y&7Q(gT1D~{_mj+4C2c&CG9?~7Ay1wTPyhl7&&hYi8jQSF^-2ekj^s&8?k z7v%T%m#g&_<20XFs*R-n9VsoMjc1K$j27Gp4Dq|4e*3AX1GVCYGv;r1c-O{kVTZq@4u zE>uXFJX~(E`w}MV245)bEpKu;339c~*c(~8ZmpBI`WKke8CW|f?T-)M+z#NZOM^DooGU|=WX#v4uj{=QQ5d(#Z9C~~ zJ596$TWU^|y{umYWuBt6n!?J_7M35fn}so!B|KLOwLf54r7$Hk22&ky@h`ox?fjko z*8a^l)*EXlF(4xVLycIKN{ovss9%S;-1yR{$XO&bO-~yZT1|)MB$7$dvt?e?hfY2+ zXR^T+DRtHU;FHysx?~*R@ zb!sG*B0(U?E2@y}snnCDjDG_dOA&u4;{NS1RRZRE{G0F;4aU3!{|(LEx*+K{jcLz4 zXbDr%jGFuoyC<=Zi1ckwOBrQ#!9EddG$_LpaGTKB6TbegmQbuObP_rx zgolD3A5#z!tasKTcYSNW-4Xvv8|pkATZV43789b$^}S zY>lMM8B`l~0qe|vHxoXU5qC1vJx%`ng@R$THHVA5w}K|}{mam5{WdQ- zECs29D4T9aN4@Z~>&h;{{n?5rI^zqhPu&}|z@LRg!*s`=6RY#*3!v7cAG%pXz-ySP zsmo44jo?s9fXX)UY>BG2rt6Dgoa=84OV~*Ybjg{0oAVz_TLU6(LOAU&Cz-O*C@X17 z{5@Ll=1K3}%!X|~R(@6jYSJCVs=P>tWZ(hkM%St>3hNlr;QGgi6X-Zr#h0 z*Sjx|6>YxJhUt)WQwH`KYc-8&#$79Ww2qk-8t=td&tf|a7j&(Fp&BLf>1-X53arM> zmUMn%lzylf{UT2-9zIL=N7`Kmb;SJ_<#&|F9v`Tn>h~Y`*1_?4wqxHsKVttxDXV&& z=}C6R!b85Fs&%*Z@oTf>`Y=XxgSvsaD<^RwKM{qWQOv^W4(wyP!F#7rQ*0(^07j^az8%nY}+WriKnYh zjM(OUr<$YS>ra4@*6;Y4cWcB{%p7F%!DXYi3b}m6KQ)65zvoC`Y~~ZutMFGAzs_62 z&jTB}W}{ss{C>{^Vx0;26Z?8~^bu*3n~C>v;0{QEi*Pj4y*KAX0m$l1(hS~;*-V?a zstfvSO8&|bS~858)hUBsIMm}isA3m$!$*$SG3SB`Bfh%J`1h9J4n~4`)xPc$hP9Us zrkHuS;G5*b^dQ-06q4S6WRLJaNv}WZCWFi&gSO*|o~vwmH%(lI&wgN*#Bpxc`qwr9 zD?rr0kLm|XAPQdkPmrY!=EUKK-gRG>5)E$-5xn&JJ6z@{Z;5~FYswNQ7-D5GtAQO@ zG)gm?MPHaVeU)+@%g0Kyb?VGq9rI_N^2N1NgvQ-*Mupnq<}rVf?>jr&U_xfCyAx4U zt~FjMN6Lr~6*_EbdgW>-;Rp-kMa}pwaY}KTXnoXyWWO2_el8Vkl(edgD46R_=1iV0Dmv3lXZS!5{d{L%}yMkn77>Rmr8eCE3st_kUxC4&vYVen|9~iNn8dSWW!j zs6k#32L{4VlQwBg1)k|xbmb}9hH1YF7*qVt%mX70Xu9i%3fu^;`;woaEB;RlRC7KF zfYoOv=;T+dw?_GjeirxP5#Rtk6rR{*_udmF(wtU;6kwI*apL0t7!tnXqWcyrO`apE z7CK)4%>j+8lQvTG3J^m}R7aQeJ!?CMGgF)EfNvgErEdgJ?|G z)qCAU9q3nCUO;tZgi9?Eo-yh?jn%oc1dFgO%2j!shzqM!xUyv-dc&NmylJd^F-e`W zo0?mAa_9_VG4$17BL$GM(yghrztg09&F1{*2c9LpuIyjs^IX$}&;E?162YMxc~*+p z;^=%DC0!B6wdJktBhdS4R`wd9o$bloyym6%;2Kh^q2K9`!SLa8wx$D*eMcjT1pM^^k9 zqEFQmm)%!m&J4fcHs4ah^?O zc%G6tW5!#1NUn00&`?A~L~4DiR_^Dr5g-PDiH)gEUyLLl$5F4QKxACcrW64vg zB&BQ-ZRSRhu-if1Pn)^1o)aP0y=gU$rTN&##}Sz4^j}|x3Xc5z{Pa`T)d4Hq`%1Sf znJ?cP`kT7s)q_LX2-C610D_n@5y9B>3=Btxgf>N_4fz63$M&^dt_U}NS#D+)cG;bv zKphFoJ?eO*sryd++~rf77h+cI`fmb8IE%FF-@&iruY)Kb2N~iNI~{4qSU$J=Tx*2a zrIZgm97n3fo&(=59W#sU@Y^l8Y;Ky1muOc{+5g%~uA*H+?f@Rai3ZNU`Lxc0o)ldy zISjFvw@CWvspN1+$RO+CdbHBEj3i+-TFOZUzP%Wy{JmttBsxg6!&QPt1!PA2&enRQ zvMDgkB4eoghy+@fgSLjdf5ka8kAD+Xvb~-(S9yQLaY}Ro*yO`2L=KSzb>q1`)o-dN zEgb$@cgS-pBVpSf$p_BodmuK=O56CHoX2NThuZC*Jd&XI+Tk7l>EB4#+P-}G!cfC$ zpMWp1joFJ$3I|g^Uvypxq>~D*PhJr{TFs1bwHuC^GSAX{m^LrbK*qSaJJ=a z*bDlhY&&}umGRx;9KV~k$J>s_DF3xU%-9w8Ro}nix^9te3kYP6xJvJHP##I<2sZHg zSE%_tytaw|;YkRGLHLelI8(yomxn4Xo{BDnowip+6!C%9V3qxE55U5RbPBrSwrDr9 z-d7d}sO6H1ADJ1;G@f-YwkjkuK3angB$i+RHF3a%Z%|5dcSuO1{!JCH;z-nzmF8ou zX9zgv(`*cH%(^_>T?55#59*lxAMY;*RQW9@Xpf%6cu;}2*3*_Nn{i?foBy5F*eCo) ze}Yjh)XrlOiI|Hl4-XG(#zoFXB`*TROvim*MtN4YHI=2}A7wY*W{6%@Y3;7|J}5>h7f1d5 zJaAf@dPGr{ztYLhr*499Dx5a%qHnFQ;6{ncu$gdR%pI1|s(cs2KXaLu>Y+D=eGus& zkN!Jbv<1>!TqE8P5C6fJWQ|W_JU&fKc=M2NvrJv&o3-AvU7$EBJr`zW^v0;td;(T8H_m?RZbrBqw?FAU%q+CiB-EUNU-nQE-p%ds+2 zzJivt-X`_3PQ1XEw2e)ErYB#hv>v6W?9*kk$2UR!zSvP72F89nwMaS5y={z+!QZEO zhgh+nj>I{m@YA$1j_tSKD)KGxZUMwkO&FnYRH`&B@EW-@r$*&Wl`IP}{&Rv0cu5#= z7BS#>5-{n2K;>6`-MRN-GCayyDS%Da!Y;T=6{JMX&CMNGYxveUA5Izs9M{1eHdO1) zjYduE{ul1HIMnr0AX|7W&{;-WdMOe!#OdW5%u$&oSZkJ#6#sIC=?qDD`{L+~e7HW# zh2>E1-z$O>ImO$DNe|-Aj9v;R(%L@9>ePzR^bpo5@=UBMH$Gs~;U65n4}@I3X`&nI zRgrM2Z%}g%Af+|^j}K6V1EaN|l3JWeRf1xrX8&&{E(@3fKusZ5B@?c5QqTu3q7lM4 zUK>;}VLR@qXCS}Uv>ZQg05+~6{rJB!lWHvH>{wVw?kfdoBRAd1KxzQK2PJr#sbYzRZPqcbUqv3FU3+o5}PD$NlqtDkTSe^ue*ocSDM{e#`3V7XxS*<7`JfBAe z)r$RF~Y}3sB)1hRWPEPJ9kx#B=^2;>B!J)Iq8uXs!sPK}rQP zjdR}=sIe^yjgIUV7Ff4`D&PMEkY#`d1G7%DEmqMyV$~(Y#y)?uqTGS;n1v+nmY>rV zZ@|`7%jbfhvpkJl!n|9jce~vohdKmu2MjHSba*hpF(JmtV~?=(gR9~*$6xe(&CW_D zUff&1YT^!DpV`kE#^4ye?4cf1l){k0DZdG(zPY1UA-at82E_LRut49YZ`XB*(>7BF z#mb?(!x$o+(l;W+_#yOPjVIeOh%|2ajgkH*I0luttl>u~-&sHO^xAB;DQe0(zJONB z6M)0HCBw0gMb9v8>Sr@XKhBm2%o=ZNF+Sj)Sux_p5gIXXyN?zsV*izTmBQxe@$(o` z%)=Ouj}MlQ0AQvPc%PTb=o4?l<*8N0Xh#)w#agYQSHGv@m+KD#Assvhkq0}9Sk0q3 zUDB-}VuKqsv1iTU>+LY`PXI+99q*@{bn4BEv~R6CfnOX;Mo@dj(+5EQnR~MppG(R~ z*yq3%q*3S^HP$Rt6Vf*LcNj@{nOe*CBrBWVvn9uov^15Gtfjfe0dheOK-ehmcCn%+ z8ivi95S#0+Q>~mB`txwsAtIO%?L(#VHhdZ)fcKkD6ZKdW9bsEAWSXC%?-fDHt|jj2 z>4`opFNa(G`o*aEne+PkI@or;nm|mf;~s#CmwR08u(xRQ44CsL&Fd0=s~tz9SMN72 zQ?MXS&MapUYuwLbr8=51;*BpI9a+fdK)}(ytd3Bh9%FVTHoL>s*E?xC5n_AFB4~ zrd4?vZH+n?*HDNh8Kdv@(!%apFfRTY6hl@no4m_53a zMqn(U<)=969#o4%2L_+3s;Uy4xM~cDBCjOO0KS}q4pkX-~5kBUQRA=y(jE>+uO79OEw47`I8dRrq$V4-$hF|0Zj0=B+lp%k&?LPB_We=L=9@ck{UI^K^2 z{03U|J5?@}wxFrfakC$r(43P>!54d7R*0Q_lxa-hP49v&f0T$VCgHoZK4U_wM3pQN zLj15LwW%93;NBGG>gONS1@Gb@A^Y9FN@+YHlwg+XM9ri~F6HQ|yKhe9ybzXk6I~^% z>8g6<$V88^6PAjm3xUovni}8hFpwY1u=!Y~9Fi%%`7p+w zgw=s$vzIpY51cS(vcCYUL# zOp~)KJpBFMsgvg3iV1Do&CPQX5vFj-e#-DRy>u?4AOcN~evM+~7q@iysL#2BJ0&gY zzF6W(P&(GD)M2t){>UyV2-e%+V0eAuIh|#!#X#ckwP5Q$%>YZ6L_Zhs^_P z6CenoE!c^jnrQRB)Ni_YxWA3M?H1+s*N6;cePN`i6~s?kKSa`(9w1*v3!I6HkHhB|WcWwo7JiQW|Fzu9V59-rjPU)EL^z&Jv z@X4gs4esdZu*7`ljJ8@;uw9EB`Y3T8KY1qga^H z_fWbo*7GR<0+we=WEWebL^9-(5SLw5opxIa-?ROcdha7Vug5m`fA@Vy8XJ4kH8Ct++eTL$EFI7gdgmgDoTV7q z+c=XWcOmpzhpw}b`QZj*0?Fre7=`mc+Dr&`lIf{?Xf7vyy=0-EmL^uLF*T1{BC#uC z8H>YO50g44pxhAqyHWk+LC?Ydz;WED%B#K!rfz&pwXA604oT_m?y>9)K7i4|j`=_MDT%4Fdpt5yK9p8hR1$3tP^b8l+DjqDc!~w_Vp-c&BjN|*fo+VIt zFbRvNb9#lqIgmHmIWI^)9IqN^L%`^)fMO8k*MC4R=ptQ<(Y`NwOh(AP@=R zhD6Bz2YzQLa{hgwJzd-^fUDq$b2O&V_H2_`v=2JyRt_&cLMmGu3#^3m+O&q8K9Zb5 z_oqu4(6GdB%Y6l(adI;=zw;<0;B2vre6fyX|BWDSV>HCSsW4GFhU<*m1i@iNB%pn# zlM0(yO0%CFsS%0BwoZ!`&DCLsJ#F$e_H!j~9mWJ>G_1ro!%FRm}31DDepDuS$R>d-$eEnhENpyokHP^_s& zpIV!1`8GtYR79R|j8;6Js@x7=n0%(e83}BhC6U zg_2AlokR(I#v)AkeMegZO6CC7AsA-j&FX9rj_lhlFj z9(xg1l-veCWo^({+mIOp^pCXhv4G;YWntfl8S{5eW}FBv{a}mV=`v3WM*S*Z!Q;c0 zqsZf%{VGl*Qp^&EHsxuec`>lxy9grQy3$FBvvdisG&vSrmGGzcIbV#Xf!${_rhSM1 z4@p-Y7DeAhr5hHOSe9J6VQGKx%0L=~B8uKRgcX~gL${zXaBgeRS{OeP{%mGwFF*F6c{-Z;|19OPk@9woen1>2G zjKcPoTB$TL88mVtrL`t_Y~F2;l5PR?aQPKq`u4nxC1r~9hjUhu*yD0GeMA5(h#}+i z*n@h`UnmKV>EGh0K@FoZo&D=Hk3ampdTC?Pax>2+O}`$8j-GIfggEQnBc|O-p0!W6 z?@Qax6|4$6^@!k^V9jXTDE~Ps$Q=8V(O;-e5RcvgdCvb{*om3s9t#wIsPor;pWG|#k1dDD^a(BHzz7tQ0oX}+1ejw z2KgAANR}{))Lfx;p7kD5#dnxZR8o9B^SZ<&T7mYvFT@h)1$!K)OJ8wv^<1ry>EVlF&B<{l8!?w*qi+008huo(vE=oi$EyOH3!wQO#r zTp2<-u-^*)x3#daAYa69)*^e{dEbGgJ#0#1y7?kMx*YixQS0z;nuJPY*lFtPv$5M# zzsZYCB`v8-S|6I<_Q(%t!ZAvO@)0Duu-<@;II%EQxdvns{_E1; zWbHTQ4CmDIk=TT^s=b5pCBrFfQ%Fl@n06jy+N(|s>-2UN)S?NelQj0ufxkctOY8wQ zMYlE5fvlqa-zG?M4ghpG8}=H=ZO@z7QZh%A?7-rU!0=iXdQv)wuWUZyb%G`T{7R6x zQiM{B=k^`&*-Kd%V}C~Bh3l&{?1xtXOHKrOwE9jdHtHo}@2q#_t5nH2Ihd4q-sV~x zEMuZMGh~mK1@uL{JD_Xrk?_P)M73Wm7pAalNsyZl%iQ1SrYgjK*~uV-uDpB*Oj-5< z3SaAz3++>Bm@hK|-zc$z$>7Tv81|dm{}OwdIbfAZ5t*+kH1MnkV`!T4^for&THbifvPgNCTm3MusZK8S(3#SH9VfVc61c0gNFv>eMRm+v%Rzjk~+vwoJpI6jGRn9Tn4s4J z(qYdnBWu)j(wSnM7{9|K!^4xGx=Si4*A9Zo8M7!uLJNjz(RJdt4h8a=r`f*ed&oGZ zD8Qi+=~cc71wBko^y2h9yPA>G<5sT;{>|eg9QO~Bu*k^BsN?EU>Y2X7jHRq#%I7t@ zLox_DqL&wi2v5^C5UFu|nbW1_VC?bxcR-q31>SRi>|#Djj27b_j%2b%yZ+3TD(zto z%jk8y+1$`7bDaMxTy&3%pHS2E^ZRQ8x$X@PS3O3LPk)(M`&cKt0^7rJqI4d`^2kD( zJ*Ftt7XLlty|%#$I6pUBFI*ndQ7Aj?qH^kq-o}A*$43P)!f|zo)ku}4`^f)jYnq14 zR|K{aP&0>eNKC75Bk_bKy~T-yh#P#nCMcJ4rM7YRRi4pKjb3`I^4@R0%et{=ylr$Z zhFL8%*ryyaGfCed@HRWYm|mj&B^tZ7NcT2ELca?_^cvv;ZI(V{mD06yU<#j^TL(k1 zo-dYtnQ!IpLOtJ@y)iIoNj}&0;^=ojkAq4AJ%tqZ!N^*12!Q-rFq}17z#=|wY(Ov7 z?ge4{$pG!1VEfZ>%!sJFHc%A-6d2&oto-u88yH6|mYmLGEMMJr8m+%OYFA6wwl=hj zySEhCKGLl)6!eFC`l#QN{A>~CurwRfFDC1~G>>yQ0gd zhlo*5|F}JT{39x3>p39@7nOhP^M&Q^6OgUG{zEVo`{f#n97kFnRCnHSX&b1etA*hZ zfzN)G>1@QePksTOf7(&n1_j3L7+!yD?NE1V6Mf-5^d&DSSAGC%;seREN#vaZ2PZVi z?q{Zgd3|#XJ$R|f2^bPZ>V}kD2?#>dxbdZJboDB&xll=Q8KJW8>BB2{gVjgH#3A!T z?ul(Z23%OuB2^{adZ;ex>c_D>(3&mkcJ(=d)>D?$0nE#(q2b$p)o)ST!w*@VmhCBH z13{!Nz*lNCD6^o@s_!HOJrwruU_t)FmpQAV#4_z@LgL~z7q8L}&<#}JrJQvR6S)hj zSgA2e07;>Hx4Vn2tE+AM01Cc|Z)YuoXWV<)#ofdsBrguWqQ5K96UB$Sj->MrFD-qN zl#=Q%2cx`8_;4O)OHa6n^2cU7vW>Y&4c5N7T5~iy9>0i~i=6E8TGH+O5jrH;%_O-t z_eKNpIfYGk4*A9&dB!JfwaVf64$ChY_F{nBzmhdwx&A|3_ClmDRulV%m_pf$vwGq8 zIXyTQcMdTnWWO|E>8sWwPM03?|2qhxfJ2Rzp_ft0s{l4!%#1cX7wXvY!%d z4ga87$KIL8+$%%IF`f!sf-p?1LtnombnrK%?cPKq6?Gbk4M;M0nH(Yq!lz|ryZJ-4 zm=?RiG-Q?AwN*a^pj2d5jz>sC4|flnml3r>I8%wixAtbT`JmtkKY1-eT;4va5W?WW zlQoD!Hi36M4a3tc40ixkSxdyNdR{5;NprV-)}CHQ&97^+0sTV@ltEP({ zM#gY%r=F$M{>G!oaJwP@2uf#v*3cnrh2+4uMx#R+_<@J3??P{`@mv4XZCO%v&>2883zw6wQ)03+W)I0%0-(wP)-PAcvo5nu(w2jHfrS!SC z|NS{=^o6iMkywm>;x71&U9}P1&znPurhr3IAX=GcPYq$+dnrD9*JGAjq$lU2{bh_) zHXvLCPv7JL8mKtgnlGtquL#uYe(eHo&22qwxi|3?@@txCUGHvupowUg8Lx;A`yH5m z1_s%ERh*~K07Odlz4uOp-7BS_Et*mBnQ>gruS*PK;UwJ;Sql3M=$-mDv9^l@LE=ss zlmf2L*jFsSaK?rczh-Mn3n8#_#?OpUl~+GGaV{#B!NLJ?3bJMOizO;YlGs*z2*(K% zBX*InXdATn)%{@a5P(VSdx983c4oi9PSup{$7V5s4@y3}r91~{Jijcn z-_&U`^^wr4#CWA+&FtajH7h$>KBorxq-D?Jm2u8}?(QFFL-Lb|GDJ=>89WJB1Ofl# zU(Zcx$?%4O{<4?tz+sa`Q7DVZIsfxOE(xWuncd&5UYJ)T3Mj_(UE?Q~{YX1FPZrhc zVZkuklH|%{47PGdUkDZ3?*i?GC?LBc>LH|jbfj#I4pHK< z7|nnN)!`oX^jaOv*G3*c(BIapi{q7WtQmMhM1b!FV!7G_K+hjWhK|1$zACQ@?NW%Y z8;Xf7(Ej%lM{8dbGGS@OpA%pe0o;r3B3wMY-)34$eR8T;nWp9K${BQ)~pJ9#mdp=9V(cr@7`R^N>f|o?>LwMAoWTvY4Cb z`F(QL2s4l~EjcW=;bW6tQaAu-|F%HLVj4^(RR zog<0IQ}4ZL&Iu8xyPM0RsXzE>LKUyVf={+HG}a(G!oJ#!asHjaI2t;eeNqS(*%%ly z0Kmr+8qc3=g)fXUR&snqoPB^)sfGd!igZdwOFWaCN%Dm4Cu`&Bo^=Sk-yQ$7KoHa` z!D3o@Bk3`jNd4I7voT9p?{}>iURwD3ST{O5qAA!>z}CiCdkCm}jJrCHP{6`=6n0wF+pL%<*RMdo z=6a9!fM@<>?LhPatmOL|(rHA{Qa{f(nFz(ODesuf5QT*eB4R5N@vy5f&msgVhA|I6 zzY8X5#2`U!__(|}q{GbfH9oW~yGjrFN3iH83MPGz0__QTgFMay+(2)v%YUB!!>fKt zI-q2g^L5<_sBQlcg}2w#E1i#>U;K6FO{j`!h6JX&3}w|jg^=YrFw`P=L=9BKCidmf zF(?j39wo~rOwnKy1xg6_k{9qA{BUVIY~|P%7_CV9Ks!Z~wO9VYcR z)AaI{Rv9i(AjA6wzPC9CPxZj$WNRw)K8o*k6lffrovU~m82$)!lStYO55&<>%^M;r zqFf=MxPfO|gMx4f$D-3ymj^%0pl_ZWud^M&L0SS{3;!5-EjsWtm1>5mXAjRm(87w( zGJjI*fMq&$e_A_SHEu>FvDko))z}ghahtONOb+8mvLX_3Lx+cld#3t75UOmkj&CV} zkbnPHMB)%-fyZ^x$B5K)^jA%?wVI$pZ@4dQl^T6|jFha4MNGKkqEf8zZn8d<-ylTH z`jOy<(<|Z$)8S_vM%b95dLfW)MEXCSFBHNqzqK z8^6tG9oeuGiFi_bxb=dc`kT*u{H%_#xG!We7r1}COnwMDd_6{T8-{F}=vpZDaC1RZ zAxCts#t>mMYH^u`lu4`iNotdvNYMd)oh!-;89h1g#2xkZ&da(1E(FdLJ&K46D*Z`#O~3Hb+#@Et*jYGd*xwUnod}y{jtiGy!YGQmv1A*c)fgT)shbtpz*^k3 zS;6%=QNYh%CW5~IPU3IGD)zh@Gp5+z&`&F59K=16!ofE$==Ur!b#!ma5 zLmmwUx(9q6cegEpwfHeEuKo#45iN85*!o4#f9&0|@mWmHB3lw7EuhKKZ->Kd&0p0f zKU+ZkzdWvGczbz-%{qcjxiq(6{ko9FX_ve;w2gKyVKe9QNyn8OaZS6!< zA>W77U(Y+8yCR=hmO6K9l$iZvbWZ`YBKt6jgI`DeaAXr$b=tzfaovLb1s3hK6Z}4umtED$GQ{x zx`~Id3l-DxR^urcw|pMnoonGhqhO}Dl;5(lgw5VoZ9{+*;k6}|Tp6e-XZDLQO?yj& zwD_RS{DWy_fPb%(wg_r2bWC$VmkPqRRD5c_|B*I`!B(}I_@D|BS>F6A-Aa~d?CxJ)@ZM$=K3U5*zm1hI5?EOEGs2L1Wn&S4qRoH zf1&6eOUyl@hrg)eY>@!{bMgNP#PHkSneDpWo|eyZo++{YIXg1f~(B9=Ki!)X7!zly^hAgvj9AWVn?=#Q~Hys*-=nhR|%0wmKD26lA zr0~r-6`g0flH}a-cP2Fu#kxd`Jz?eC(+;>TGnd3oV|l=g(3G~aFx132^(~E^4`i-P z*Szh(&tDU7#?~kv)1Id}VZ4incY1IlAMvYe^7)_IE1=rsA0!>s1;^{*h5dfL7;rY` zWuhzgqiES&P3e{dE2qxmUEf-&L6kQndQJ(i`?zO->YQa{D2see=8ljkIVQN5B|3x9 z%u-rd-P;N|g~mb+SF^H4UXkZgvTC9G1p^MFfhAY#7tk5|zE10P3jC9Q>Z?+A#?IiS z<*EW~A`0c`=bZv$l_QVEKSAEBSY5Whf<15%r&{Xa>C?1 zV?~hL*UFDH!Yfud{c9hzM9-1CO(`0MPPuWt6pO&} zwyZP0CzW2ziJdh3Cfg*^7pEYkw6u!3AY9rlqFoH$D6U~cqew+)heoJ%XBq`Km{ihh zIHciIu5WihqV6x1oLKS_izNA5=}ExlSXqUJ=#L$BR&l3EDY>anQ=egCIm!B*FdCGK z?#g%&N8nl{>5R&_J+5oD(U<1Y8{~Iqen6+EC7ZA^uwEu^ zC@3A5>2;DvRykP~u49=f%iwOu&&*YwEzw;^vwD1nleWRCp2+t^X#^V9Y9AhashmzY zt=)=U3v3Q<1A&fzL+!YIa2$1E22ACO)&eJk&)H_vdK1;uuXJ?#G=P>we8E%Dt2sW+ zlS)y)GrU(hhcs6gO01u|eaezo$l0NSyrbQtuB_E;vX9q>6J!t$ZT>?fSGuFZDl>yW z(*(pm*FVZMN0bT1ea(9sPd!liJOKFcWUKC~QO*+N3`eIsqFuPt4xw5@d&26Gmu-Tt ztlhc}EHhq`>AvV7PxlsrFAUz?&Y8zh|4JRJQr62FXs}&h?XUfhJXHYRSe;WPTmLfP z9(L%BkvriOvD$rnNi|o?<=Gh<>@CoTu#{_QW=>41>*d%8Dg2_GUPzH z8FqfyOP1%(Qm0fqR|$;UpKW!s{$kR|e{-C)J%O?OBMAGFuCRHpOJdHfx!NE_b7)LIKU#srfv8$(o8|y9$ZK?JD!igPqLe3f77=|!a3{^JeQFsb_v>O zZzrnw1jn0;t1t&*$jKYJoDf_VB1~LktOj@EBybOSFQlb_Ju%{^-_#f8rrQU3P9lCg z?4G`zg@4}Eea)2kXX9Zp`2h}Jv-<1Q6=r6C7e z<<(l#IV|>`$OmW8!|9Ex>$?W0=d_P2s2UySepI|WJb#8tz4X}sedF~vkRY#fCyEL~ zg>RT@YRMPpZu#IF%`vJt#`cY_${@f-C*tC$*5bBteZ7M60V|B)fPxrN?riP4|C_G} zzGXdQ1VR}Eze)bw_O=m%yAi4%V~z55N#`s+OJuwi--6mEv47(gfoA4b}b0Vygzo% z;XOnmNKXE!oSvM-zoxAvAK9A{>X@M0420Doql|*McMQq(Pia1>&=TNuLiPm7JR$Wc8% zn3~srZHCn6+8Uj;>hd17D@qzL^!BvzJGS|e8B03LxH)mEK_(UE`^0)f#At>+@8C zjBPGwRtLMY`)W%>ek^z6i%uRFMJD)-6KWsilRQvOm(}kB9T3O#{GIS>=${a;-K>e- zJRWSXuxj4{_P326ap@XvDV5+gb4Y&E+0OHhpH*Limdr_n&lGft+pl~L*6aWeeok_a zA242#yz+#d`b*etW__CXf3~uPdEeDoKe$gaRY}>09^O%cepzoitJSnCWxP7e_UZj` zUOcS)XXY;7LGTnoiuHSWo*6(WoB9<(tqy=f0j_KhIPo-r$ zaoAd|*0v?(eqbSx6m!ESSL`-%zs_*8c#A{M&1wjk* znZ9`4Rr88f{f2(q^VHSZlT1oMF}*6I`%z;!hdpiwQ3^O;P8gFUe7gvId| zius&pT!h{_mtemt4F zS2dtX82lDf>*AljS$Frkp`zoTx>YY46%9qNsB7IBvA>L6-T10m(UgVNFrt-~u@&Qo z(xz~)?`*mp?}X(u=a4add7*IxO>QI*LKVt{9kxEx;yBv?`U!JWnE0gTa(;2qk#y!_ zKlOQPm}W?Ek};|coLB6u)n9&u^MqzH1vYFa$TBNfnkBzU9Y&KIrc7=T$JaVTLs|4- zpl!bE*w>udb~=CEVM(vQ=a>=+{O9aCJ;?@_;3Mq#k=23OMw=Oz#kLER;cSui?&0AB zQNWTB^T_EBcI;WMJ{`0HMK6!j ze`Gm|bOtQlyIli(2S_bBdz7^y)#OQsdCYz6CE4$ps*B`<5A^ZtzO!FLiVIwsgzWJ? zSB2U$4e}t2TAaNy`FAzLQ!?;Yhli25?r$=nkUwOjfeO@qRBxtFNI1|vWvKy3cFBxy zk*EB|Ite;Ld?w%IP^gU5$+Ra?t{HqLH1)rmkI&C1g=rfVZ&=G1r}i$c_B`9#SLjPn z@&tm}9FtCc|5}?0GtCcdL`vO(gV7wFMx480vE}>xTClj|863%M^6&angu)82%4^gt z{wt%2YBkoTao6#XDgiQ+Fw35yX}Z*sT8}olOzq0Hu2vA4~AHO+^$d;V?n`E+9TuB2U2O3pP@fxgF+g#L0f+J$qfksOsRJ5u}`u4z35?1e_TG|a0u#_)kHo;}mTgX!+1 zKDz~OIB<~F-6|_`k+ToJ{ltBe-Qek+rla`;!c5kAe~0D-flO}(Na(~h3yJ;>2HNeT zb@^!I+#2z3o|pXQB``MtNjoTo=FOYE&$qNl`*oWw+cC!0ky=H$ZL!UL-Sr!k>0Zn03~xx0EzM13ONFP(9BHdSCo>wTI^&Fo zlR$p%2bf3-ySswaMfSSXh4)&_SsBZ&n9LNSgAW`ya1602FOs zfNg&QJ@(-D$w?iu%fm%lQ-dP+FL>K*F68-@y3(0EP3FXerqg2@2FIYHUsy-l*OxvV z>?q;EVFL^Dsr?C_n10zWr7CL@pwYIVAgiJ;1ScUSxK(T1kSzRKUX{ z^F_Vm+to008wO-Lgl6VC$(BKB`MSbAQa5aYyt4YDtc|a!wB_VozJa-7BVMA_7(HTb zK6W-5atTrQYrqhD3%b5J8(r=Xy^+0)>cy3Mp(0MYI!B%U{(gv|mhl5!CF6%a)dV-% zL1vD8k>PTm0PQQ+8%qNPu)rs8Nyr$57ML!o}Q z%dh5gyrALwE;ku>vq<4QrA7xDiO3l0+vJQIuS+uvB!;cE(i-Oz!L6nKlw$`D*NQRXn_f4 zbtuh}r*ks9RZrWIUc(ED$BtcZLKtz`wS1Jwg`Yx8itnAw946Vcb}4njwB*9Y9RJAu z8#t1iOGi7kS?E~2GvC4w_w%FTio`1zl^#K8wRxKhpkMg?upw{>vc7u6JaUOj$n2N) zU(ue+OV?;eq1=3DXy$U%nhIJ2Cp1#aE?EyU>m8W=dLl-{JZ$zu@dAI$TuGEV($8XbLdLcC7|Cy)ud=AvkM0LU(Axe={p-IqgBA69{4FKRq-YECZ1cse723x-8ubH z!?Qqr4#r17bO#dtQ4K<)Q4Ptipj&}W>!3gs z(%(sZK4k-pWtd;Bum%$ul-=-RrmofOy=D=>8hI8qE0!FurT?Oev$tG zbN4IFOF;ky;3=NbRuTzkz`PU>hYFag>5)?olV2)S5yY3d9lW!IBguv3ffO% zXQi04K5L_GuFBHTjLESY2BVONaOXH1J^UXHq^{o%_%!JfUpFlxFV%3`j7`cToVNGirSe(sJj8r=aMlj|GfT^BjSx?hT zS-3ms7=ZbO?-eVLVUik#GY5j%3#wPgPBXj}+U?V`8TqZe9E)p*3GRk#7w4JjK39Gn z>)m;$%kbv<>t}j@v-4uSC+PK_57$2be#uSWB}gJDNNjRjR{8IZ0F>T!2mhZu)?|ft znLLUqIML@j>TJ8hVWtLq5PkJ->2Lh!$JpVSd9&?bH9O;vbK$h-A6}c><8=LP+}XEu z`G9@8lH|f^)qYVzFFl|9&FH*MywN3T$0B6r-Retjh6dXN^Un~331>?;du}vqMIMwq3F%7yV%Z_hfLR!S}+)tMqs}YV}@iC;m6st*m zq$E-2)h>;Z(u$K<9|G2d+dL1smFJpbAsM}yGV5XJ7Q=PY^%C5jpPfORZfELqjeeXi zSB&&J@KGiZmv#P~j_)S4AGB&2_?k*6k=urYNT1YV<=3ROk2nSR_XbMmGxW;(Q?Ch6 zKWnrun9jLY;GU(x#(t*8Yqgp$5xE(3ju58p6Ac8QCTFl{Jpv8=)RW8Y)6Sv`+Mv=Pk^-`P zw(H0D?N_XMqr7eOv#$W2V+shZELK8)?^B_{VVy-;@_P$e)^+htY{Oq5q812j) zP81$lI>RaTxfuvXzBrZBa(a?}Qm?0JI!!RvOH9J$sWLQ#PUhRJSEj!lQxN>kRc`y>oWepTK`uTX zo;V>PA%fJ9heEIsj`)AS;6R?4vZXGjtl?U`Fxx8`kCm`T@XPQPxV6g|3{OMfw^q6F zd&T;Y?Y4Jm?pd9z@5zl=lk+y;TtT*q-`!n0UoQ935cbLHP*GWehhSsMn0Aq?M7An{ z^b6!Oi84^>a83p%(0_JfF(*qyQS6?hZTPn1PHJ$-fKS??3BAU`G#4^)m(x#DtiieW zo2ob=HjF#E4s00SUwsTB#4qe!-%SCG_OoiM4bzlnUM$v|+hs$27|!SmL~mvN^f4KF zry%tNZ+yh&9`S;I+Y=}quN|frCdCguk9DZXAm~*#`WDf4!%O;Ok^ZUlAt~!s*Y?3T zf%aL)aL0xskItjF`M*YfjaZK^bR2b}v&AWW^I}|${1=a~Ph`=$+cxtX)y^z>`geu* zgh%G+IpHtt8^eB$nBnuE(;QvxVV&Ri)E?cVMHPYM?AKAK=r?`mn}fmbtuNCk00D^1 z1mkK$k(6eef`D{)4-ae${4gGj=jdRCNaB**Gbw{Q)n4Tfy~?U;d_843DKNNuziu;u z*r6<&yIihhL)z1kT2kl8ypt@74zIGY(2d&$;q-}5w{D&>5aNaQScp@9WNP3B_h6Kn zTvizs{xUyM1Po**>f^-nC4D3KlGP{v1QP+{14CU!tW+xJz{Fn`lN+@fi(R-BWZa{dID~$jQaq+K)|^X1}N69z*O2BV}Uh zdf@l3zN8Ql19&YxOeduzS^v`d3_Lqh&043O!0zbAp#GZ7hqjKXJ8%So)@+R!wgUvK95*B5IFbUD^)JjM$X^4Ze-e8{cf`+yuQcKEab z1*ro{m`uXrh$DkmN67++*qTVi^fGC-SRp2tLJk=h2JHv{RvYU9)vrilk>yd3ZjJln zB)$|@!2cqjN+u~#`1s>GN!ia1W2i{TP{Wx!OYfZ|egclUlx40dAuczuHEt+G*3s^b z9bkfp5CkKYH;$Trj1`_~@3fRp-SWHV=_~4K9{;`!Aw7bOXi}r*CNd%R%k`_w1~j>R zuKV2{GDF^b?aiPXNVURmI~r|Fu@4QOlKa@x3WPoD|HPOTta#d=f*(1c< z6dvPL*{akkq(U-qt`gQKwBkSOj%%noY#qBE&;(7F>xtB(w7;-FZj&B6OH(|$d8XHZ zau|h(iw@^Zl{cT*t6<+8We}3?KT9I+jwBH)YGd@@t8NLW zl(rekeH2ib+nftu8celn<|C8xS8&xI@1nKb`PJEFH*x9Yh@$CL<(;%yOaDD^?$Gy9 z8d1>3zWhkk<_&^iu5KFxa_|S@Ct6#4yWMDal*O~ko?a8etN0Wpjcv0_-91l$uW!jc z>rW%-KLEp_m&J(V%LoPLC*ZUFQLKn{l}dB1%z|5UnhXoI`Nhavky%iF{#B)F?Y?``=8n5cW=W7Eeso6y^g;qlf9C<8MH%#s4TpW;VgH5{9*6ebmYlIf1r+E zjj}~hj#@EChkT2D|Gc&gEY8>$*TLFh2|OdfxvQz$jCIuX4gwZ^@iH*jQ29@Ln5;W zhrwTAf}*5(@7j{DNCnSxq{SR1n!dMSLGc84dTdvwYht&fYhobYEQ<3tjO*MYwd(;M zJUDNAq*p6DQgx9R1gEGs-T^#4G$c{`shcp#FHssGK{GnBi|^Zx2SHp3_>3MtsR zXno@Ulj;d^LiB3sZg1ioGfs^zCXO{D&Oyr%pbLxp?2+kFvm7%U}AZ9gX%Fm zzX??GAOo1svv3!Es2JeMf3@29yX^R9Qd-j{5ZY1Nxo zDbT{z5p%cB4|JM;ny46tSW6f^38Q+bCeC#0;`l?NqM@a4K%H4mnBkWcHl6B0$@}S zm+0cup3>*F`sB_LMBGK5uRpOMHkis|HhHU!l1Mo);UB29=aOnU?9TjPbz~C>5%XXM zMFOENV&PNpM(^fSsz=S+T|pNwGQP*UqqHZ<&P7TQNjyUN~`McQq$HmaKz3GD?gZN`fHA}VGcc$1Bm40eT~zC)-(b&<-)Dr zDf8r6F6q-5lCN^xxjAm$DnQ+CQqVkl&2q*(_f`Bo*GI2e;2g%32 z0L|{I*qwDMe10ib{8fRrCr;!Gob_2Hz2l3+F-R1dj^ zfurI-ompb7+v^JmeQ4Doe+6Ep+wK}4fCHf9aRSro{;nV5O_`(u+q*RDb!3}cgk?vo{d~ISUkp4!9OLm~BoVb~Jdk zCkBaqddDDN$Rlef4tOnS1VTbmwQY?C!>_wx_@<*QNpZz5wXzj5}Jio~W+z)4pJMTT8d zw#LVe@#r2MNl)h3&ICzi!s5iS;&KIw4(}(ojkg%QF(6g5S}D~se)2pCI)yPQA1&wf zicLbo_TY#rfyk?l^zKjBYV!Zbc1*JL&Xojusq7{N*WuN}L+1t(13jQIow@Et)nn~@ z-c#jV*)y3^Rvr;Mee%PI1F0aYT{a8B+U0<_PEe{MdY$iCz>urm{(VkDscD%SuEuy@ zK>u#y#h%^akG-Z9bB2kpdF}TE)h1|RdZqSP{YV3;(YIQ!=G<4Ezwe6?t>B9hk~K+~7P$oP@hsVO;F?HY(RJ{BG4}J|BBCXDChOcC5 zC=`wMZuTZgBAr1+DjnwpP&c^_L9a!(NSzjflGg;SXlfEvz$(SWzXt=TY?sK2b=%i= zkAi}VCd$0Wl$!H>T+lguY(WkbW@OWsSXO2JHdX64gQ92W_M3lINYug)aFEM0=Gb#j zxacC?R{J z4j~eqsI^{tjljBh*@{4k^@zvT3Oi?w8%f#%9mT%icj9pWcGg@KAY1+YTk~H#`>f(H zg-*a6<0M0$6n|xLVL|npTRwd1ry8gz)tQMfy#n}MzcFL{E_Mc-{w1jSu#7iylz{n; z)0%zQYUnbN9&MXH$aR-Jb2@_r|{c=GImBA@P$*$=9#q zn{g2=dvUwxTl*e{o;|!6{~aIVN-U3HxRI(Vk<((E?grf!zh_7w>#ce4Y`WyQSB_XHSEE&Pg=G}(5(x!NEG|4*Y$;!ZzS z4@HzbGAn`pHpx6k-m~Pgf2>J1@%La*i)P)ufu!dK#_+69#8xjI6$pmMebbBQB$ck- zw662C*Lhi?{qkTtAW=)%{i)IHtY^nF35H!Ghr z@>TyEYP!MU^~HTVV0L*@sM8$l z8(Rdde=i8Rifg~zDI;P(8RhQo4*t4uxY!wnWcKlE5O}8Qb`*FVC;nVTc&sBn8sNd$&+e-#5U*b57fG zljshOtNoa#b;%8)AZu=#bH`N+AENx94Xwv(A>z`0AX-1yS8v(BbG|!qJ}P@}kXxrU zb{K_ly`2-0ba$PPSEBnS1HXRTd8~Z0=*E>)t*xg>%XD?h*5-N{XJE13g96ucooO{U zPrT`*vhZQU1|u(K%t&l3p4g0CSS6SX9(EVcC(JLs#q0y85T%W7i}mys*I6M2{yc^%H?WVE8h%7A+m=s^$kD_tVhmdJo)zA@CTlw;FF_)*t8wo zv>#37FXR=psq8X4HML2NE~l^}O4PV~pP>~dS(kr|_r_BE7r90RtgYb-u*SlJsOi4n zHJ<508{?mi2VpSS5-FPg&RpVEmzEgDT;7pNBzh!wqZ=!8ryjWaF0;2#l;WE@=jqng z)(po}+azFI!?g@Wo`+ViG7AYFxjl7zqGj`O^-2W>Pt~F(LytXqLji}C?XMh}FB8XZ zSU-2*f86WQ9t;%dhHp`vKzQ_mRBwrdwW&78vEk<1>6FWo2VKl7$WVyC;e#4f?G?+9Mf?ViT6^6v#UXx15r zuX~RYt;VbDZmgI)Hhk`TN9E5~b-T89zNQw_JANiztGu&ZQlYZFknT0{ZN@5AHT||l zk(V(gN6D;M#-!+b?S*6+zv3w4Zd;GI1yaY_9TQg zRcG@VbaG>&eyw|VNUYoINf?ZVCf1B_8Ze>KoHYw5&BJ+?schC{1_>WQRdx_!l+J-Np|)2F{bH&A%pt}^$X^?W$72juVP zt5q*LcJ*D44GIs+9nYH>A3~1>PEAPNo}O;AGHYz|^11EqEkiRgG`r?=5}?$33fcPO zBcXc9eb$Gh@vc^G^AH=7$#ws=)dL3=hZ+3_J~wSj$?t-~upV}r+HuB83Jh4PafD;l z(5m%hXP+OQ@NL3>_T>kQtILghzub2TP5ksyq{1|BTOY6teH*uRD7}CHExw##ZsqYI zIoTCH4VtAS?NgcFn5^91K~ty2RQNPGW^kW4DnB^ zpDUF+$od%pDO*UtBeJ6}IFZDP5L1Wh&u{!6mg)oVHNJ%AF7!e{9G> z7xXYSsf;US&%~BuTdO3o#G_38lnQ=_VdcJf8}7y7hs_2k$h=L{cWkY8G871EHXZd5 zvy)KE7&Qt?T#*PL->*y)o9mkl`1AhaZT`2OigzGVl(t+Dx(Gx0ODE-dwdN0pl_<>&jfe45} z&kim~j6MxpGpliP6tD~GbM8-=zY*z4J9Hhjn&7pW7EJ^ZHi9%f@j}<3M3rebHKl#fcYsH9(w^HTRm;L z1R6JH?ME^DTGEEGyl{$kA>HiyU*`4m&~HhR^U?8}ehZuq_|8bZ)v?!#2EwW&N*3&J zg4XxO7W2|=I@oTlmcB*-Wo8Xo3e8zZkJdpP-n;+^+kKF`H%YY~&Wa#V8tk)w5;2Lu z6b;*Fns%}Xox6)oR1$;4^rF6B=Ut5B)eez0w(N&GsfA49k|9m0*rF?E<{HI z=W}k%nJt=Q-cH3vXB8CtYM!*VcDZGBmCAjT%Tk86#H7awR?5XR8;0T}ZtRaEMu*%m z)`1@sbVJp(Mnh8J64;^^la#_Fxr+(c8dBj<#Y2N1|M$@A|MSqoDC=b3pOaU_Io+u_ zwvuaFbF*E{i|hKoV-4*)Z%`0-w5k7LTW5S^jw z+}^5)Lv9}!?ARWCi<(2ug>cO<2|W2R$pND(g5A|Po)iN*6}vy(x1g@m zWu{gTvZ}u<$&T1L)t2tz-%tDl1SUMbqQbgc)+rwupXlA{m3QL`^@M%yD=<8tO;a(7 z_M}Ji5y%ya455P|B`rs1Q~*nQgT@%}iJ1czENp#9p0|wruk|y?kCWoqN^SXYq0N4B<_W%%DGr#eUP|24~pkiW%3>Q~~C$ z(&nd)e@vQpe*v<8imyNyaq@2{pPkR)2hY7QQQ_{*a6ct5Fo_uv8T2BKb}&df{9MW~ z^<33o8QQBEqGEj3S6rbL86zFZplSAPibSW8ULExlMDxHIv@CxQJLykrT!R=&WQb6x zjY9gfY2Fnlp|RV$ZfP2A-y)zEpZnPLcF%;aDAB%&7}Oq2K<+xmAoQw#e?8F^)-Aez zN6#r&?88=QUsA|6FuDWoR^O=^L{F|8Iv&*V^{xe+BW+h~Oskj^!~qZ3#I-cOjZ3C- zyqQhexlFL1OV%FC(-XF2!Kg)kQQQic@kxbT1Dq=?iZXR;nfDg|bAC&WXP;8-key80 z{gg@pN%N7H)j||u5Wb|IrQWEm@Yu>PJPBn%Xm(0T)kZxQ2LBz z=1Q2hf}=pZd?y-%xsR4Ey$%pyP^V6n{(im8Q8z`h(Q%t&p@V?v$mK~XuP{ofsJ%+s zYO_B}efUCB%wrHi)v+HwOfico%HtU-ul@%pOk#0kP63`lJ%c~~yxFPAOR4`LJ$V4B zD?)O6PPwj(iWStUsxX}$+y7^=X}$& zfD#hy#Kgy0#0$-yUJP{C$U$LDQ5WVdQ@o{mySWA>&dac~RtlITA(L1EM{?4PX2svK zx0~<2^uP1xqnL*z%rStj&wl_<(YdS5Ndw+U$-0cEw0s!b6key?@dtzdkq&VB1@IPU z6(la)(>FMaiT{`@)U`wad!!yCUI>UesFhnpM_u{%%w~omO7kQCYX)tyI#|fGz98Sb zBEZND2E{t{P_xX1_$6kNqhi?qU8&_K%k_cY2C4V(06wwxJj2o^}92VqLPO-OfduoQFT;?!+?rKpD!l9O}H)N#x{ztd|O?r*x0N=1myVbvIW`CQRKI3F5k1kXYeL()>&~v^}@8XR~AcsBW!%gLV3^qz7D==A`dL=jI`}skP)> z4kTLEsR#n$a-RdGn2}pxF4-iW@snHy!cn<|*bMnbIS0uCYd}3z2o1vVxkX(_D=<)5 zl6vLyh1F4lMAK|q+{@`=^oyqhU)$LplMk#=huMktQyvJu;aDe#@#in;-v23J&EW3t zo5}jn?M8S(f&n~ ze=Rk30eMih3*)2WgJE|M@^Yf?(ml7%$bU{+)g&h<>&1Zp`U6)7Lk(9o>QpW)EaRc5 zNr}rEJI{=~Jhh^VELkzN3&pIV^I)?_e-+lxxY2((-TS@i|D!J<^HP-ymF0_o(&lqLv6)d8#sV#G?@eWBM?CEMt#NX**tOAkyv`=kbW*ubZc7`z z7P_&opu-i7N6Tyz$rpVg)N1hO%x&l13^QK;sql&;GEu(&yZ4*#5t--OT2{Llo_4&u ze!CK^Fuhk;?-?Ub?*oIc99f643^#u($GJ9j1b!prgRhI_U&KitRR)54f1E*CtQPC1 z$u0?NU5y6ko^)K#k|me1Tlu?p1Gr(Epfa!B<)1MA(nWe&TGwAVghn6i`UAdm$xm)S zi%Yfxo5vp4d8+=RVY;-K`?$iaB9r$QcKCA8DjpmB*x4^^fBm-=4HcDo0=MXJ_=+pF zXc{k_gkF})>1At)riq2S8C%72stQB*EwkA(9a?QQ7FjgZEj8-<4mFPk%q3Jk{t)lN;X7u`9bg*Qm1uM$-OJ3(^vZqt^|O@M&eShrqrZ5m?caMM0=zrzS6&CBLhO`h zx%z3CV=;N9aZhdR?CfAQr4m(=VNrWWyDP_PNmzx32ew}t57DwE7Wk-7ew#PK3X0TQ z%E-A+4;+Ua&J=9Y!AcZL9eN$@QAN{l_%$r?sKzf&J!xNj{`8jhsZK}Fi%`{+g10oP zDWX_RrGiN}X-Z9NLTekgJ4GFEkiFggefFX4&ScRQb?a#jZJu>7eA@3Ob?N5!Je{Uj z&n^v*js{Rtrba8X%}nHKp+kem#TUa4rejslrek?ET`t+6f%WN(e!6Ji#>`9Wk~aTh z9QjI&CRzvcA{)B~Wz3}aC8dxlE(x0l^E_z5T4(y=Q=Ja%tmvS~Mh zihfx=TlM^8hdL|tXi0Q)IL+#FK>@4HJ#f|Et9ND(1J zN`$?ZI!;X)5YBzmJ9{kMt5NX_q9tbIXPMP=IrOFtd`@%$RJOTHE(X7gaWd!VuwQ+C zPoHv~_uk%M;FYvP-PUB9VaREVV(>6jU?2U#GAyDoIf(S0Yfto2+9Xo=Tr3~C9QnlB zrqzpCAmGu5flqIaKXwe8EO&?ue~`_&+Mt1_9<>I^&+=aclk(q^JYj+{)h9a?8?WhRZ)@3f`DVubKy z)*IfQ*%Av0qk-ReRrhqhll{r%sDf$BPNPz(5gPhYqo%7_8v*mCN#Fq9PYoKva9T1H zMVqRugqdA{4&4RlY$7-Mf+H;)bG_j?ET3U~Z@tykWT!P!?$F^cD?A?O{{6)-X!!T< z5P;P;m`&hPf!Ap6#L3*dhi!O1XDnJa?%7|BLH>3B_a!AOQ@!tRKMyybwZ2%&v4bmq z!UX;EH4-$8I{QJVpbAb)e91l(EaTW0!Xv=+CjHMOrso6M6#%j;vRh$NQ?O_b3zm=R z{87wN2BaU+1{yd7P{SI*+#($l-JP<1i=bfsWxUl*e(vkXzzr4(m zk)3c>-8gn8-y)4M$!n{t9su{DQpMy+6~PdKq}2N_Bki)Xfd}nIM|o=$@sC5-zM|Qi zl*n*dJ4JFCt(=#vN$`Vu)Ks!xEIs+|A(w?%QDlpv>ha>tDmV#7j%Ki9G2@kKis_1P zmsnOT&QA}rwf!GOU!xPD-1NN7g(mk|ie%C3l4FvI?f_eDwa07B3fG8kIIwE3>cF&Z z8MK5TMw^q;=>9bqJ;7es1BD$(#U>rRN^`Wmp%k{~V>9T4|9{7~6P z+6Pp{J#guu>C2e8n2fc<%q>|L92Hs0lgjBfdp3srb_r}lZa1a5{o(ffPm6@CBzuO* zkDrMqa8jj?yxe@*v`@FweRXmCwV;rvvkwOZ-v1!P#lfO75Gj+A3#mF*rfP=-^m( z-!u_ymx9iX5`Fgu^nCc#RiaGjl*c6(AZfOk11)Svx1E4l{J#<t{xD(GpWVa6Xb-K^;;77q1C2B!5ll>l7hA+lU~r;d`pKJk3ce*9iEOeexZYK*t@`(ia#+?zh?E^1-o>JZQa4 zi@!#s@82p-{GhIZ4DX@jkV-LE&XtUjT;oXtq=T~3gHhU2NEfzc4BoWxrn`%^=#?K! zZ;ixRczn4t7jK>k$?b`qe_D}s5xUm-m5Lv6ncj6n=st?M|FsK*HoxMe%Uq1*?j5G- zO0%h7-841*F&$I~vFaAR+CgdYxQ}$PB{z@N_7|ZBlYs8yTA$95DvJkw|x4h2;6+y&LkMQf>dQ`u`A># z#0g09Mn*loCAnu9>oC2`L@v@3+0-tY4hKX@sF1)P{HjdY%_$`}!!}A_Yo$(wB_tFd*pth zdSrt}6{?Jw2GEGhe*;)%@VX0%6fOot*)dfq!bsF=j`#}JmKr@kZo=`q&Ln>G4XJ`_ zwD{CNDBO9UIcu&kO-Vin1qONT^-Fo{S@-*#YL_W3+Dt9`aI0am@SSiE#}OTt2!@l^ zqyd+$v$?*oLn0L}I$I;kkjVjb9b0sz3v1HfJtK~&P}jJo@%acP%3Vq;NogWZcc!OD zOVxkl5e@YHke+79swM@6fT%6Hj2-66h2Xi5NUfM`Yt@8jUx9Ic1FY_3|jx~5qM&DXq%6pT@HlW9xH3b0_-zC#H+590Fd%fc?;J_D}Ezzg|G0x+Ci4EDcd zN@;P`{)vqA8&t^rhf$MebP$xZCfho75`yziQNbG$8%l!YQdoWUXN68L!|E6&{#ge7 z4e+iC47>U5eu)o@ap7^R1jL-=tqvgU|F{OCw|v31_cfKd#4_8X5iIbzjs|Ay zl7yh@GwJl!0tmH;N6>WF>dmcwJ*Nt8yMkFvr9Bd#xwBaE(k0MXK;%)%Co9Uhbz*}w z;%BkR*P+qT&uX?(79tFnZbBm~xL!bX1D$<8j9y~PJ?5c(+KL6DhH5@?$e z<_E~V+6B;b=JbIYpGDC~{tjS+&43glkK_Qap98sDlpe-_um;2138vBs3Es|=D1GVEgv(xG~#Sc`)Q})u}W4S3n z5TZcLYp(qfrF4uIxi`Ibb(u%ETI6ZnW(a3(|F#yKisN9pq{3ya#&d3F#wfdqLrnhU z^mK>j{fCEH56CT8*Wc~!w8f>R_;VoRkRd-PLBjV7x&E_S58~qIDk>xxFUh_+I`l2LH+$WNOT||*fq^mQLWgGl z9U#wv7QU20texeQB1wji=q<{ZQ6iAF*}hBnOJ-_vTMoWPXEL_3|1SMTr;=+RGD-`0 zu_kVD%&V#3V)pVyusrn0#9dZ%xVbr;k2rBlb$QYY%y^Q|$jG7cikgAr?mNL{*TK6G zIwl62!ht16j{JsPr7#|oI6$oQ7JrMxNV>3t=A-1Y00FlkQ0Tfnsr9xVr$$N6+h!B? z`QP%sX7N#N4-keZ-oQov7q4CwW@l%ELcTiUn?b>qx~Vt*4q179Pqhubm!}=nU)OM} zANP9fM|i`le~tgWZMRLV^) zlLDX$=U`a5I^m0?|En!VB@Ri0gy!{H42O(xiEW)pLw&tG1BWD0X|CoDB?qyn?ua5a zR4Hj|VU2BXDx%*G_#u)@>AH8qw}*<`oHXvU$xcL zh>BibUTM;PBKq&8qmQ2Pswu06q9c5nWo7Naj5gzGF){o6VO~5hIiw;YA|gMU4foDT zHLx>sDn$hc2fL73<7J=DwP)aPxCVZH{tbNc>W{{d<4PND$ja%onW+7M)LD4=V}_## z&h~1T3^hVn?X^V(BIXWS^${lrTe8nq&FPq!QgVt|*aV3z^ILPGx-KA(57`jgJfECb z=btVS;Zz4?7F!*1{Oo9dGHi*=!$tdT8Q|Q34JyWeO7c1e3Jo_Jm5b14jDaOP>9VGO zbYX1|v!Roc%jbUFKLTDBG>Z{%5jw9gYhB)iasNtuwNJkZStxsD9xN;?n*^eui2sU_ zEc&yu5)?lskMlq6Sv&Li`5eU^NlRa2z`+m`6kzKobS3oD9d8OOhXRqoghAknJ=k=E zTQ5$MBtOj*jZ9!0^P-vo3HbzodP;WOoL(siO*hW zHq7#NFuzJM)ox5Cr;qx{VAxVYs@NV|^Mxz(G6bD3KlrxH-|dF ze+L`J6kK9vR)>vRYV#bEi{Tzv4qfIFOUPqD!_Hjb9y!8(D=#|kvVj^^#W(4J!)O}x z53!2^go;{&Lz(`Euk#LP^Nsqrn6X2NEkbKltlDbEE{bX^r8QfkHA`(VLx@?k)ZV`u zQPiltyNFS=_GqoDy%OV1ulN1?{o{H5zVG{-^Euz|bMEVU*3)hwibns?MUYla7g=~m zzK=?Tn|sP4I}WYTVGVh)-E{e?)ar+wd06Phk!9=lhZ!9u?hl(C6&0dCTVIK*9ekA) z-gbh43CG(+;UXA0Ik~8uYE+s3J8v3%aGaxJ+pTc-^N90HIjX~ zC{5@63~nA=ou4>soN{qkU$45+d8Pa1cSv~U#mMhpzbYYZSvnCV51+-UhY+Hc`Hwcg z8zByxB~e$NUSz*+cKJtgiULyj7>r)5^bXvA(C{ESok)0gq zf)p6u#>VE%;YL5(@=Xcb!$R0exImW2d^ps4 zS6PiIEQBv^v}`MsRJm4LCvlfW26fZz-7;&I^q!IZu zpiCkFpvSXG+U001vkX29W6uVzDgU_Bk)s!MhV8SM%_Q^dC$$^{wdfBCZ{4!2{CfKK zrkW+flddZLQ%lJ@Kgejn5*L5&h4n~LDgy_ZS&ii^iXT(?E05bL&F-O@dnbooebp>jS-c$NyM z$D*e&JcA7+Hi+zasZVs;YAju$Z3(%4^DH$$%+m!_dxgG%KDTmk1!q{KKkbzSw!%ls zpiUP8WElX5ycD0Yb6Y0BwY3rcjH{4MBXxkf;5~BUQrk355kDtLCvss+=UT+6Jj+r5 z?6<|~V{gQvQA3dtE_8Q>9xMr(Bs92;NAXaBgOm8x`m{@&NAl`E*E~;qNA`ts<#mO% zi83+aWhTWM`pGXuGjH}1#Q*E%FoX)96~|OP{7Ee0HkLh1#POcS37)86H~|C zQFNcx)Cy0L3;m+s;7C-+KKNA57OIekx;%6K+2)dJ0F;w)U=0XW#|#h>KIi+(I7E#K z@~I6(o|C_lvp?6_-1w!}tMLaeq^)MK=G=fRU56{#&%y0VU%=_4qPQKTbh(H|q=@QF z>aS@Pze%CSsL%&`a_UCuz6=#O3p^X!H6`Ga!-c>r?R94J!{9^7`3$7-%`uQcYPqp+ zhhopNt`D&0k-Ayh+*k7&@+#_xyp&_mc;c^^#L7>{O#i~k+M7$%j!J(XySVI70lOAu zOv&jYy3@KPxpb0V^|0Cs)%i44*rd$`StmQkDSvikXzoLEr6NNL^~$HEG$V; z-s6%xA!{OC&!4fN&R+s6!Y{CU1aF28fgWuf=yExT(`+yLMQ@SUrjq|16x zprhR{7g!*p%eMpBdq)@8aVrkxM4N64TGaP6j?oV4#LGY+%C>QRi|Qf4gTX3k!h08C zM5-Og2~CC+Kd0-FVWgNb~?7j)GT5_ls}`{e~8_397H>eja&m0BLgoXJ>K zy}+^6AwxEMAnW7@Xs{q-?vGfwc6bFQf0t)O=DJKc=Zf0B1feOZ@nO*3O50i# zTN$=szJ8&|Jg@kGioqHPgW0+OiWvpzWimQ!f%1<@28n#&3?9)Vrs^Zem^1f=dSn~U zZ$UIO&;$jnQ;#B1%)P&xiuI28HgY^VD%*q4_Ep*gk6NR=!_EU&dnH-jpmod3kvqE@P#@NE-V>s0#Tr%wC>a5Z#~N2D%R*3xPmcr>`Y>7FMY{ zqI?P5pTOIk%-n}I&fG`lQv19z@nt4CclovT$A+YW@YCV*6UCN(+^RlgM|qof_)!$d zp=K>Mm6?1v1>EK9y15*32*j=C3X{m`jJIM&Sz`o-DHJKF8wA=w4h<_Inn-9DF0hW7 zlFO~&5E_F^=jkfaa4;0v=j&yTJ0Ya3akL{5ni|{+E!P65{4F|B?Kpox)q;U?7!5WD zJ^oq~9Cmj{-m&len5}}IwT1>G6=m5faOxkF_T(F>PU6!Acb6RIWXYao{f6FYx%E|V zjPg{2T=B`FjN+3CuhQqWIMFUktr0px-(vvb%@vr`8=F7|bs87t_{lRFSXJsD9vpyH4OFuXMY zML@d0^h%Ya-iYWz;e5^Y@*UdgiWpuf3C=3Lp^!a*M%Zui?`4gV;*3nZCMaxH z-|AMkiB?0(<(O`01pW*9%CE{oO;h zOQeqa5D_p6`6UyrH?s3=qa!1S?8|pl3NJ-579qm0Rj`!LV@lm-7*+XZ@Y4^TWQF?M z7vD;McJtOl zxq+Jl=}Up~q6H^8Cv?YLT~5VSn(>$q zhAMN!F-^YAta-9=@nhV@Y>~_gT%W90k0+k_(=SDRr%%z%;?QAx1`-q#aWhCkPp@#B zM@w-M3lpcb3hFdI+-o?SBHIU8?(OdS0|tBRc2$~PaF9;RBfs{H7k%$mw>*sLC@mwC zYWIE$bae#h+Bmj<67RwWGP;_&U(3O7%bQGU-zP~X&aR@g9d7Jd7wulseXfEQftzBl z4-;c=Jn5=u?J6RpXj(ws4mtkeJkjFqoT{#)tJz1!&{Ijg4`YKxjZ2RfJb3r;a3$%T zi;j*6_XI?6RYHfU!x@pXREQ&cM7EY#jM`}|yv%Pbt+OCnoJh7K@AU;uEG+7UENtI+ z%#1LksEH%7`Mo@sPA`$U7|_u!hWuf+f5-{tzwW86iGX76sY3n7{!7o0shX>_D39|M zYxC#(sRe8yos3%>yX?Yga}wNVG&;mn71eG?**k+e@(#HeFgLRcQv$#LsD<}pnzdx^ zun7gPEv3v=5~rCaT3$6tem0UQoTX}hPlCanxccY;=CODuw%Qj^ns6*5M`t6mpqxqN z&uet-cFh7{2`ioLnI^>z;=zc9?rUEl8*9_MfBUa@`bHotqW0@*!g5%w@wX%K9NWmM zK~5{e1*=R~4A;w@_7nbZ`AuO|zEssVN3scfoQCbhqm}&MC^;>S@aWKmM;J?EpN1?> za*n?I&!f?Lti?a8r`&MVR7pe4yijnC5!%41&)%4_ca9?lhKz5FxV zk~&#!E%Mo5khTa?n*y%$k-~H<>3)UwxE{r|byp3dqn+jl zl^HMAJHtR$j#bh~vKb5YRwEq-vnRxtXP6)PTs&SEadAh4^ZFoW}PR9Fw8|ETs+z20HS`QD%) zkvod_$23^-v4QmmSC+M?^_!DbAWL9vGZWYr(JC;{b0QHb-76999d*!g8LpB7c{;5> zSJXD>@0m0DEqtoyB21K~*+yWRKTk+(=ytN6go_Ddu2o0E6g$8q%m_#lo-&yK?zeOP zWq_b!mzL{~ZR)aLE)H;{3kPWyf^nt3_)nh<5nUKjvTx%LZl-ma9`FqmdEr||a57?Q zghQdVn4PkUX(ae&=;qW%jsTtG;?eVi8EI4-NSQ&e`&ODe;1mtD^0bYjj2^{ssjas& ztAo@ZGpuXvg5sh>^b&Xt55U9aEP#*-=PCXkweXcs739DIHZ6<@Y=%qL30M@baGC~f z06qC5QcbeQOoja|&)&>17c-|#digi!^$f&}Heg~`&+MJ)#(6|VC;V-G$uGC=dIBO( zv-Kz$1v<$z=olIL1$%Y7-6=WGWW;+9O-;hCdPyG92Cv|wsD*h#G5Lu5yQBx(%`R31 z&|;3}1*66p2MnS4&axIvtRS-AIsbYd8+$Yg8oWZ!%(&0Bw#{c*eGf`JyjUpvB^y1q zSU@{r|Md1gS9P)BHDUTtSRd`As8hL?oQyVXVgHb}yo04i?ykmLLi`_NHFTz?!g%^<-S}!%8XZWVI>-iC)(|)LZkebk_y?|D>p(L8cHi~8HPK{OETt8L~5 zj&0-t48-u)x^8o2lU>CuZF1y}-?VcSN}EB)ay?~FASaIx2K`nJ``%~j`-ocL^(G3< z>Xz(*Z%sx%EfUvh?`G6H=4jy5<4!mK|<#>jSF3P-nSey z$@50*#>D{6Tjm`H#uk%Q%$#c{51n!bCOpPIPF$t>4GG~sf~<>QZJFkVSdHSK+UN?0 zKq*0~k|X-?sOFVmPus3JK<1aRQltKs3<>KDsb-L^ArRKbF{sHmm}2b$jhr3{!(hxl z3=J|1zHWY@+v`p_jXqvyDEAtmeZFlaL})4IWE ziOQ>H7pP|4j#|C8Y~mOhbFV`Ep7DH_yk?k8VgKM@j^5U}PE<@}v5?6dC3bJ#I4m8D zo#Jl;M;Qo$iBOgqCP{-N55@{8_iO~hn^!XLG){XSVb6NLNrAP8Vv2T34S6LLo z1_<%L-+S#3a@Yn#hp{J0J>E(txpL{k)q91+odC^}NnSTu0+K33-KeDKv_ZU$eHvq*1|@~|Ek}4FgSTUyiNziDSr*= z5;Rn~@=<@e3cMjAl5<#zWS^g(ClQNmG-Bj9@>L^S9Sba+I_Y zAMb@d+z)4P2V*5ckW|UaFk0L!ZQrh;T@3&?3uY!PX@+A-SuXT<2 zoQ%s4S-yX##e~Cx_dkjBbe>PyhQ=Od8CQnAwMP21L>0mU#;z}4E7UMJoU)P$QUk3FVdrHq9+d2BtxHH zkdf_@p0Lm4WQ$?IeC&k&*p%(J(tsY! z?21q4N2(b9p@F>0Hv2~vBEpf@y<>~wroVJeANk{tzHU&=i0T1@+R3ap_{81{otZi1 zfWQKIdclIcT({nIoLv|ZmcNYj3%q^I6|lG5-{5>=BV(Z8^;{_-@vxxMLU?qmwq2`! zKIaB%AXH&ZHe1eKHG!5(JOkLHIfq}$lSAJ3+mv6NJ8%3h&;@c}n9%aKKZ9$UN0S)= z&{XkTaBC%N92E9Ce1%+8P8#Eba#f~@GSd;Y{-(7A>(jHOwh@=GN6aWuk0Ge_2=}g* z=GIM7$wM?`PCu6b(J#1Fe5B8UXzv~xJ_bY*wUb<>r)_E8c-g-^sE@C#ugs)y|9srh!cZh-(OhzEz58Aj#Vpz%hmWr|7OCMrr&adfR1sYG({L@^Q2P?e^(5 zgUn}W33F$PHYZp{H00~G>3b0VA4!5DCM?SQxG<4p?O<8h)9W|r7-_-RbO|Brdc852 zU-@?;NX)yglfn_0{HTg~?rs4sE}Go)B%z1ZnmwGA7$#%HWd9t|3IzYxYT7Rt4x|H0 zM15BBXV)v%*#7_Wi*kUR%+zi6C(w)B9@@+NXG11l<*cD77M4gsIDGoTkM-h`xU(#B z8}&Jqxb0wdv~??+RUyyUbw+HKBlPl!=2d7d6;+aKO*}()%ntW6j3gzvh(RmuFO4!r zSmGxL=!H-UFkUw)ZqrW=O@^SO_02@ByL(A%N+}Eko7Eh2;83NQ$ndX?FRn`SeWi-d zY`!KT|YG>9sH9L*;5= zM&i7Y@Y(eELN`j3WsbEEx-Y(G4c!r9jz zD#w)k?`NProilrLeqwf$O5EJjmWYxCn9X$p=;jBv83icHV6i@Q#3uXT1eX2rID~Li zZYw5yGeboR34j2A^hXzDsd{S97PK%%r&FBJB3>6}p8k*jSq8Ejg|qlmBVycFEOCNxO- z^6ugiTB~V#nlmnT&Y<(^BV1Jglvg%ev|IqE^rx3i`;ifg)t!~fxc;-N;U5ICf?{JE zP1oBg;v+v(V##4Cd3iPhzgCGmou-3{eAis3YH|(#orHwi$c8jBKgt4nmOGrOm&A4BrT95} zs{k3<)uEw|*8M{uQoClSO&j1E&Xhl%PVnJLlX4wnhDAN7yN_=C{ECYf@WtoT>l+OY z{kMKLU6Hx{Xh`os+)BNC_5vImyciLFwEb&amtUKtJm1VA8%BV22F}g%NI*=?UPkpE zROn-BZ4wRF^qu+6&`=cYR+Z;d_iJE(Pf=`JV&FFyL+T6vltt7u&YpAYCeuxwFb?TD z${~AUb=T|mga4I4WdC=DVj!#ZUH5|=;k}Gb^?lFpy38-fbr~Q0_X~g}XMogxrDAw7 z+SbVlV-0?s|3=nn4B^4|?X6m5Yv`^*0^?y>R~QI-e|Niwk%g5L9^%}lU91Yy=P?#i zRgKCA6E*)VdiO7~KV)NK_->Ao#88`hNR`Q-yv5%;O=JO2mYYJLc#suPvdR^BOUJTR z)GYe@#f(Si7_&xISwD7dG$Sf>TIC|LgXmkA6`0^My(>mcJSv7_XI-X=b4Yv)pJ>>~ zyO>{JGIpbeXjey;Rs8K~=xBk(DaC3?%`3n%G>j{t8O%Vr{4*q^9oc;4$;~dKIZ?-~ zAszRzCkPGnbSpbAsAIh~)?WCS>-Do2q=qRZ*5hJZG{01FPeR5j!TJOYAGd*ky)(z2 zzCf_q>F}%W4+-_qeR%CN$Bm8pH;Cis=g+5k|BP5;OTW4HBbGcO#HG)Ud2^~sB;=dM z2n{p0j`#0iys?h}>zoYv~JeW-g5KX94Qbo`@b~Ri{(}J%2T(F%wr35*#cx zp@E4G{&{!R9j~urR^cI<@MaPl0Z*u3B9EYO`PvsQm#7Plpf8NU^|bo>`Ei(Yu@qA8 z|GFU2+@x3IuU?@R%kpeZO%3PNO-WLwh|9_WI?!5Qf*!`OzXkt2j~Kh}(6EoaoKv&& zuDRDJPg0E(t_JRjZ=0tDMQYEoJuvp@pn|}o&3_Yb1wAINGjlUd(S&S;Fv8d8+FF3i z5=Z-N<$#-wZZjEWci-HBUIuO|mP?!k5JxlVJIgvRPmPQz!=*SaqGjqCWKY1T3&x9} zUFXf&GPRI;A3*zDE7w&O^9W=j5(hUfZ4{ql7N{}>3IsP-nC2-ZL=T5#9%>DIV&Apw zecr#NpTMizTjp2%rrs&;!v2hjSRo4;KeY<+qzpjKrVj*gqxsxv-ZI1Ey^AG8DQl9= zxG!H>(lG+dcI_y1asCIr@bcO0<$@kcPFj=qS*N%+Jls+9jIQnE zX!KafpdN8C*$!;H{sf8HO-1c?6DK}8Gw+WwmZlus9>;iTSK8*I1TE1rZC^9z^DjDZ zt`xx$$kU>S6V8dZkN8FtR0o-gmV{JwmVHM@mT3UGk0$HTO7LK4JZF?PTR+YJ&~V-H za6Zr9si&QOPK%bPr-dldd-TrfEkp~4h!WiqqDGWMM2kcZ61|-+dMC>1q9jNVr~l69 z`}+OA`#ifdvor7a%n|O*&hDmq%FZY3 zAM?maK!xAmalh?1%XP(|sJb}%q~JD)JOX_DT7m<;0(N^bJ{QVB1gLPl8u*tYD*dm@Bc9S15;w1%vWad&wAaTPyxHjaBW_y2cM@PBFL zxcaas2V^ib9SmYG<=09u|4K$N_WlZRO1h&^q?Y)};KK(o4~%fViacfelmfU3EgLj3 zUlZjzEy3bC{X{5RER;m&y>KFz4x^qupkUg!Z&A$oo5bniY+g`I{r#1R&`nmm;SN#> z92IbZOG!5iK$D%29nr-I0u`{cp5+V4zgL#OzWC}wFS;6x=bGa0{}*(8KMc(+vxKCV zoR>)Jt0iD&X6##MRBQv+bA{CpcXum&cYmJ=bDS`GNQ&Wp^_I4~iUe?#LKo=&tK9fE9hd;dWkHm3uDwh&hrlP? zpAO;6AerjdD^m1b)DJh~Ic1p0>0?UB8fJUXsTPoO3lsWFLRL7CqA{(0s2fTeG?7+n zYKL4C2!5&DIzYi=tLzx>)5xi3_vo zLnT-Tl%&_c+IR#e7YT!({Q69xj6qT)W>4iti=`?lCxS&UPVK40f;GMNt{V zOP9aT4e3F}-W2lgg&tSRP zuXpk!S^g#<;=${b1oaG3Z~5@zu71{#_cMuM&B`U8hLNLPTbzGym3oBd3HV=5_Gmyo zV5*V{N}mzq;a`?qG4#3L9bZZ?Zi~Ek)(J~i)7jIzCi+KdKpX1uTgl3sY!@#^3)dmx zafKo9KH&mxWI_|G8ve;MEq|Wq^F5cId3IW1Q*}pJ!t1c*n7-9;nm?)f$$C1kB zJtEeD4n&L>irjLZ)tD`ueMpZK-j7I-b0^C#_OKD0epaYY@+NCk##m@Fof_Il!B<3Q zSS2%LOUc3s5^|yx_6JwL&cbP)OiJIpquxbKmlpR)w;OoH)@`=lhFZAtX(55aSM4xj z2)O$G-$w(X+U=5ofA4Q?ZyOpKrsiLq@}X(T+{qusfSC7U0&EeAFf{eGdqGIePAZJJb zKKb=@uG00q;WiP`L6MBm5|jN}r|KT^)Q3Y*edlz`@UigMQ31DTshfY^D8~bVBNkK}5 z7YYJ_fP6dxeA?k6OrRl3K*z(M4Dl~1bi!{PpOE?f(@uh06&Y)hn{^;1B|1uIi!Ds6 zc~G&DC@>hUOd)%p`aAN_2!Dty_px6P(^OLNB~Ib%SX>~t6%M5nkbz55!PuVV7So-4 zk}*~;<`GV$^Wo{Y_r<625fWIg7@p{f?;lLAIJW5jeGaX!$PLlPvK3(hv^Aj}C~Q3g=yRsV?Bw0rov5-56wq?6|MA zhiGj*&j4c`HDn(3T1Iy|;XJ~iAw91GT7YGXhTS^!4-%7V@4ASvp-Md-EI=&>;~hxl zH>>&>c6)86y`mQ%5+)-H`>Z1p9lv;&3rz|OdiecX%BvHFZs@$iUf2eImsH@yiaFNcL}(4l-

Q9gEw>9=lf&?LTZ3IALpfOc^El>xKx91+PlL(O zUc-&v5rd1(492lIVO_(*;NysN6|GhU2ZB4y@DEGGtU5wN>B(&|e!O#>FPikTUmM&JGs8n{4*s&&U~-%779|K%WPd z7Hg0bBxMR8BTtq+laQ*+#E$>x)9N1mX=+Q@FF)~NF*^;boxI1j`EFS#AX4j z0^mlj>q0ev0YRTOE5y?a!-SqU2FNb_t+ex0?+8u|mc76WiJ3h4A|p^){T?K7PNe*yF0tEwoC!tcXFHY;al-?h~m;q;|hK4_mUzoR%(qR zc?Km;*;dt5Cg1~vfkio`3U4-0eu~}D-qez0f_)cJbu6a3D&t7vle`VJ%Koydujt~MSb~b_N~E0bX=%(y1Vj) zx1SG9MO^xnvPSAKxQIQwdhowTCxe^2A3UoLz>2`>Vx=)U2 zr3JBkO<+eCNk3BL1JmbG;qmb?^n+yHHY{3ew~Q515m~v|dJIK-M<~0(?DP&qE!yYl zaY-~qG9t^gKMXYZD5h_+iMZJIWSUPdQEZRnHzLOG)F0F# zRU9J`B=}0naWL07h!j?sZhNA6hSHJnWu^htf8$~XCmA0`(Xk)2o!L+^07|eTghOqv zCYD9HNAdw7F@`-DZ!zeLlz@EHHI5SH8dG2RhrB$Y#CuW+YT67?hv4FTrP$))gzE_| zReH;B%63gcnW|Db4a?@^X0^SG$mGS04zzH0SCFeLYqdKaa)ji`+zM z2Ok~j?fvyaEztief4AL@;>E;@!A2bKfwR?@k@aMg@lFYozh>3ee+~>Pjf`t2T?fTX4Tb>=?)9Q{1nhYOXd_y2Z z7jFV<1^Pu{*3A^2KHW4a5|X%2FK5Tw)w-gz^`cj??$1~BqEz2va?p!Cr5kp3m=z|_ z*|o0RieP?{sB-&K`|jo%qX(|p%8sAsP0i28D)$OaZ*tyT$~zl`JEgMRx9smB_;E8N z)DfG`6MFSW-EFDSJG6yhfqcQ=t;1i{14|89M0b92Pm)6yo5>nfeVcMOAla zE>&7KJWH#Z%(o(dxObX!-emp4%FlhEUo|Squ@L=-zBtIpg{e7y2~YeWOjdYX&};=l z(^-QXk9(KD=lv&O{z6pY<3mwV)sDbCr53f@a6!Dj#8bAF8XIj}67qkX9r?l}2GpD3 z)jn;ltt5VjVs6s|8oU{_CUk!?LN{~FHCnoYQL)$MMI7&c((@L#WIToh}1C!a}Sx+e|pePp8%M7I^{{l)y*;QC@TanK3g(IETA z8){V(&6dO>T|ZrJK~E3;`{!>k8)=wCarsBAi&y*00@aw#3rvW^e~`Ye{LBTnq5x-- zBiARjn?>Z&>8FWFi3_?-3eV#BgEBGmC{@7d_wNOP$J=oTnGA=Bc*Pd=FE&3BK|tvv|qLtktBiKaY0uW5I>+g58t(>!eWwpt|qqm1d>HuL{}q|5lB zNmS#|*n+e(k!kdUtY!WeWCg7PJ|1D0@HkL}SuPl3 zS3I;0k?>r4yi3$hETMwsC--USp=Ro8%xDuXsN;Wv8zd0$o7h;4J}j0{t{6?@XG2lQ zVe)~p-ETkx51rAr+NLB31mXok2-1#)0Dk+kZOXfR^sD#G)BuDjvG{o2Fjs}powNUL zXu9)AG+wAxx-vB{E@ZZZLQ_GDrubLx05^!Wx>)X&6aEylcwM-eNKJw$;c_*En-I>x1StaVjrKcBt{cDTe!fF0~TFTXj4)lpzN}K&6uScvYDMa6*3LoCpYkHOX0)C3p z<1xyV84uw<@2Z#MazKR4CL3pqEd^C);fy)2vl3OsnuA@8W`sEJtVn5M(0|$T_vt0j zvRI?L^1tiE3m#4!*E#2U_bA=@e@J6RufOK9)e=hUfUu4fmn{`@ZS=GArB`vfgOZvF z)_9EesABE4J(^Rg;4VQy_aW$}PLy@N6+YyhpsA>yu*mBhL1(A%yTORo9|CTZL;^e^ zZd0jTmO|8?&Ez$)N&01sp5*gZ;jGWHTUZsKe>@Jy@nOnwZy^VbG9#7{fZC*~)1PRuUP!CV;t`F!}N4YSiui#cG+QKTD%Mm2WnQGDY0?UoeNIp;^ML zs+D`#eNGek3^J4@I(8(aljzGIS@u|N%*yvu`yoBj7GFkAHNe;0Vulg}!NF05K-<-X75#qWDD)xJv!CjQOBkvwqb z;R{g1-PghzRV~sfb$+4mZUdz$k2LP5xu+dc{_ z!Y^&~p)SSds1fdFrZZd9G82pQzJ%4+$~STcH^IRj5TLf41%YP}>Ccd%v$KAE|Ks@V zy|Q@f{pvc>Ysi((y&y`-ri*QMdbsToS!U}RXAxQMg%E8O2-cirp(=k%dW@H@C@vD}pWg+Jv z{yZf6d_QyLiwXCq^^djqEnD^qKR52p9-5X7?EjHsm8NpC5|U4AS72a|rgTed`VF)d zE$sFXM8Qy_!Ly5CE^y;l|2wlZ9sq_MvtM8y(RA`@p|X9>l5L8Nb;57j9 z1(Ykwt+OK%+tn?CL6Q}w-|9}xZyDm9UTWR$c(RbI7e9g8#Y?~I{V0q0nC@l#aNz+a zAnz-VS4>LyK}62zvAbY1WOf$y2yXrpYq+laD1p9>bCnUlncmI%lla}~=V}}c1}1WS zR1zyC!VTexalu!C>nIXff^xtuZE<$;Y%}>;clNV2&!I1RPvgUISr?PPsBRK&&%K9F zRo-HB4olRqtAL>#7dB*%@zyI%o9o&ugXg%bO|sXvTk16yQ&^Bksne6(pNuYJqc$Cc zk(l}OwrTr)Gb{N~_Zv#wrQo85qo$u5_ZkDgyn4$jEL9m?blX2C#(1XpV+0@CXNeJ2 zOhb+kK)g|NNM!0#Zd{&P01aMN5wgp;!RW4jCphsg4AcG|W&7S(bqCvSp)*U;2wm{Z#V=!9m29LuFc z$81E-_mQw}+;7LB$LFwDJ-P{?x37Dp9v|uXHmr8&q{0>7n+t!b11*>yWnUNGK5EE+ zun=?L+7o%v!Xz(-X$x#h_@O^13m>XW`mpF$6D^d~yZ#=Y@1lNv-@eJA+$YNkfV`tn}f1v091-lRFk__JO;89x)JJB*f zPWyHnRz$y7_WFt{{W_vW0mTP?h@^9Bl`Pj{1JOA}~wu(7j0 zak76LCoW-~MntLz8l=oqy9t|(Np5(iM@?#0Mo_9V@Y3F!&m`idearV=-%7Yyb*yvU zNuo{UL(*k6xhl+$-v=ExP5;&|d%dR}xFhzvP8*2PYDYDEBe>8Et)&+euhZPwN3EY^ISP zcvH+QZ^wSeYpbs60cqpW%yIWebEf(j1JkI=4N`%&SAyT%Q4nmd^J{YP1yl`VJyMi)QSn%_CuKo~;|*1m zG&EG}{Mnc4C(%xQxQQ=$KY4UM_u8T-Z(!?jdO(U8_}(R7MDew*DR$7v&W`tUFn9m#+N=z2#8kA=&qC2eJrlBa?=Vth9LPbAhPMRXtW^fThV2acqy~*NM8HCG|JF}rB;h< zux`52{ZNh%?Aggzb+h#I>p$}}fP~kmwRZtc{^~pXJZ37tN90rSbtFM`X3KfXrSF9w6$n)%J&~n8)51kmNj=59bZF z8O9y`<$xof`!P1s4WM={?PyTZ4jqezX`A=`x}P>8u-SFjz41^v747|U6j5tF*)IGI zG@rJ;&HBow)U7%UyTa=%%;$IOM2da04rGp0;SeQ#s*PC3CxE_b=V_u?i*!C@V$|dC z8HuM13P0|@?<2XxJiBaa>(>sBX=Q|$YE5Ka-{T;OS(FM#&Zc6~49VEJp%HP-NaAi( zjuMLkTLToUPa#!roQ4=~8a#r0Nb7ih=LdUX{YO0?n=e#_OtZ!2g$7l_hZwhUq5EyB zBglBzn*)MRO*r&(*8oyTR4k+i@3v7{{FNaVA;UxkaMW+59QT!__F)3Z|QVID~ zk`Btihcz=Qr3oPD6-pTQfRgGvjDsdwy%BfpfH`grbf^&S%Pmn5Zx2cm>lVi)v-^uc z;;+(M+NDMiwuFxmNM^Xot^SkeTF@dL)>E%9_*CeOuR=Ek{xb%3ZYZG~R@t$nHX4TT zaox#!`^i&M$t(g%jl%!|$5v5$6Q|-KXUcLYk;gzDxV+QT&KJ;Ufx!@U*DfP*=k-eW zv;G6zX;LN6()Xljn8MO&*G^1)5JuoDlxC*R#ACZ-le2Igg4%f368*Gz3dvmJiS%#C z!VwSvP(>EE@yOVa(xg<=D8~?Mad8@lv~G@q;gCR2|_~%Dsh4_>B*7 z!SHBkMB!RTbPv4$?2Ar~b=N&&EX|e00<5<3uwPrV5ewg(q{Hu?l|098gvpSDdBcb^ zmnN-j1hp<*lrG3MIU^B7VT#yso%e5MyV4SF4UFe6S>YWtldo`wA#(gr zrZnHh{Efi!4%oRvOAV4@^H*=-`+p$dk#AoiA^FzpGd@Ay`h*r;U`gzdg!^rK(aee!6QrxQ89w5<26#)smI`m8Xfsdaa z{NW|S9{31v?Ft~tT5pA9R>K_nE?-Zg>QLP+E!M_sP3Ce@GHEQh^TRjL?+i6Ew|wQ$ zTYJjr5#vL(I!J;wD`QFOE*7wLmdB+AV+IO0n0lz9CFz=pf5C<46*h8oC%*|}t0tr| zAL7Hi=g7yl)% z+^d=F%KrAk)r0MaSgPapF4B1LhuX9c6S2(Sy9Cl`#7 z?qK6`g}l#A|Ky{pwX$QTQc-;y^UzjlSDq|~RCxB8@?`R3ZJ;oCLnVZL3Jn0vuK#b| zBa-4$omeuHGG3jnH+ShsYIeAF^nqd9=hl*h@sV_UM@tY?ay@ON^(oyb2Yg zV&143BBt7h|BS|Rl?gYVKcB~UZ%ki#4E>g0aKb|mAQWzK27morVghmz1d_jutN4>x z^Kn8*vrcJskLfqB^XR#kRh1YWD5}6hulw(!bdYEH46pFEV0Go3mw(YnFDgUKzOw32cE)Dq3Y!{3W~jf*F?w5ZN^5&VO~GE9lY5&_=%CEK!mju8HjovkDO*W)*3 z%BQTwt^Q!(+_Lw&d1U0@)-9l$i&x@%99F zl3Ja$95n3J{?IG2a1fjFt32TPtq3gLKzW#9qucK34-i8W^{sy|YtfAgc@_y_|98*J z@jGQ-=5$g5GW!fQtz!d%HY$IEH8!_tJeM_SJZV*zm+maVI~>e$))u`o8)ZM)yn!&mL7n?`aKSlFUS0VPVt;CZi%LpZ?kn+c+u!TaPu z?(d4v+~|5N3=T>I&^3Y{Ig^6!e!+veQ6 zH#3GikTSo~{6U9BGh6@L%4}rI_+$Pc(GT6S_YDqH4oH#Kjq*rXQebERk#lGs#9g?w z%uU{pbr<+FB~vN^Gj7cw|4zBy1&3uOy_VO*f$Y>UmUfauc>A!gGezxHM=e@vaAuH`OsV(i_z)6NKpiEnrNHpV9oz4+#Q z>Qgp)+S|04m{&~^+n6W-b7QT!W{)D#B=&U47fS}x`@1v|Js7AVXL`7{t$o|lywe8u zo>s1<`oKVfhVvEA1AfnK(+(B=@%`1)nD|T1schqe_sTEX$$%HRkvYy}x@9-}$8N?l zTeE?c1v6^+mrCv19vbf}Pz|^Pdcv!?0T8IjX;4p|>3=atPJ?8+fhUV8Wc}gQ*diW^ z_)uv`-aOrCha=f`?!0(sabkqy!YSGIy|tU^n+}D(@YR^;u;SaG)$8q!%79#_U*@zB z3|W&)rd(+fxkvk9|EG^WN2$7p0s@vnryHAz%=CxvT?4wVhzGDxNn$3QbU89D`VHN$ zJQgv#N>+hCOodR5hG&XP_%SiH+cs_l^WZj(K4Rn#20%|y*>!~QG4jVdk+q0boo&6g z7EYKo#UiEnVW3AxOWbs>&%(ZUonBMfHhN9V;=rY8WNgH=n<-eD_$i}H$HD=bYkOTK ziW*({jG^+UIF{oF|1#v8m@v0q=J-C-Vtrbp+p?fHoBl!+(scne4S(`_*-64svGp`; z)|3WVRJ$_&z8v<~<;vwlKGWj8r9soJ^Sg=|*E7C9mT43pJfjj28|BI{C8wioU)dAI z+CTN##b){2A!KSNWeHn-$+V7jf7}$o zCuxFMm|nXiGl4phCu!n-Zj+m`C+iE#w3|94XVDu+AMy)=0Qx6YSWcYnv{s(h4_)dO zb-I80&_g;91C^V#sO;r}_wBVbM+izO*Qgoqz5cRnpqUy|gC!roe?5RzATTh30vHUH=Do0O1{RdG-|rQgi~iR3MD!g=6II_h(z}R`w)|9 z&-1_F0*5IR_1|e;Vuw5?MC*~lYx&!--qhBpS`U&>}a1EIqiO`Pg| z)WXKC`DFa#(sl&KUE?^5-k`umjF}cNqd^!4k}V<#+(l?m_P*fuw!fkeu`Y={;(vOM z5=TY9&4Feb)-La-rMFdQ6l#2?%^{h}C~H;>N`FFx;l#HR7hz1fqrk-QO!>L9t(khX z7m{Yk#m(D;Vu1coJ$g-(`Q+SGE!L|BPUT?IQ(88OFM#`y?kbRyu& zO7xErjw`#tI3YgLw}^X!j!{QA}X0&4>;Ez-2NSrCMj#U{rdh8 zwE{27aUcP`O{hFV=TNWYFIVJoEs2RDvj9#vDKxIM2`msR96yB=OyPn~K>+{3E+w|8 zpz;goJpcs_2tC(Ph_d_&i8$>b9yQCJ(0vdzP{p;^g{EwVzg5mH(aCtLjoA3A)Usjl z?=;?3l5dHMc=MwQzOP+idIcOSZSPeu$Kw5CX^adqg^lys_#t&od21%b3l}b2OR%8f z(m2~TzdJ1sh<2ULs*Ey@xy?6xj7xw%n*cjN#J>POEy-jzDRVeq7%?b;-MT+}5Dp>= zTY0xt5HXB(rM69F3BncBM+TDyg&C+kEy1)YB~dqd6LY>ae$SV6VK}^|K3H0# z&h-t~PNjk=JR%gb;^F56zF`pcLY1Im`1PPH%O9eePFYs$3$JnhHyMnr_7#H5DGi)v z3@77%^-Agt|_SA2=4 z#KY128GJ51xVo3+;D$&o>-y>kC}Keni%WQ&qxkwSJ* zRDgb9wd-GOQMOE`s+toSvjn-a!GQ#iaioT4sPQZ8ce0tIpx1HucG~Ern4ij$28MB4 z=jCG}`?cA!JVc2`68l%RF>g6uJui3`AyFQgEKH7!SvRE}!Ip$c3lA0JrP1&Hj=OwX z^uBMF-6T{(77sp~k&B2ql&?VCzCL#&nSEDhdL`#^3Lo~EdKDB$CB1kjVO4ViH`LV* z5?&7ms>|%TDevP1{qUQy9K=^Un4AyN*~sjZb@D{d>Fw$(@sfwWHW8RC53me>L9zOX z23`#9Zl^Rx;+e+?h1U+W3io(VmuomIO2#dKY`!)R=zHKK+1rS+eJEy#;h!e?SqdOY z`r^9THNEfku-nF-`YJi)vNVTsZH!8Q;B14Q9GL}tMn^Ac>0T73(%Tv^^0N66t4^23 z-48neu@3#D+tNvz@xGHIv{mdwex^1*^;KH#L=ERRSo|!X(Qk=gPFu`VXp`Z?qUEY= zgLI3e2QW}>wce+0h5n_WeBn?eiWr@*&!bx3wqZM$!$A4QR4GktW6zi7v~!>3NhJ*e z{(+IN$gvg%vF*A7sGLv^`ftKbau?r)QZg$&Q3=smBu|efi#H*xX<##QJ@6CO>GKQp*^~S9OO038CWuKAV*oxVbFBQP+b^jd;RmPodA3|gq~nQdzn*MOJS(IiW^DQ zA%9MR*w<-Y+!DxzO{i_(31^8=-naSLE7ocOo4&UCBYu8?KHQ`n5TOO^=l03{w_4FIEgaa z;7`?t!3#|{y#d@dn^i(3OH`HdFAeLJa4QE_Yu8WtSWz&2pLT>*Vn|1x<%n^|{K6<~ z(!j~yW#E%n);F;#7O7EN&^%1I8T7&fvC-T`+FJ<7V;J}4{I-jk%K6+?lh7BJ99ZHe zbhOn39+Iq_@)zSr3d^rimhP1vkK9fWj+7*_F$P@Eu7lCwd-8bZvDgK?!3E(WJ-~f) z;T7-Y749>?$qc7A1irABd+mMMzpQjTz6-}nrt^DqQcH7-9|fzxy`=MX`8Y^Nwy6=v zudY5VP>b|qss;+RG$gy2s!^{O9E4sL)Bag)^gb>t7*2NY8#4Pgn$ZH&FquEe>l3=*&+s67hi_m)V_IoL_`Fx6Xpio29a z$kpJ`v6zXw6r!*M(bn&0JPeRxpWu1AH9-6!j$Ra3VAWx5j@D8686&anrxiD!3i(-^|d}Gz{<*|^F>zFk9edLwRy+` zG3)qf^;HjwKw+Ne@L2cBSCI96>*eiQy!qEEPrHx-c>2{IR}(0N-y7)?IZGzXKuZ+_ z;Du(;ZgMBd`d^fmkBjgx35xzW^h_4}Fqv%CvSFA+m$$EvHKB1KwpX&TUcdkH89wqO zlSQxqw2ZyZ<$-~?s=%L+M;Q29LS{|Q(ZJc)^o+S&Zd?VRU$7Cj;ltm4lxR*#cg+$j z630VmH4hX+7hwM0cIRM3sYgSTN>4u+v3*H>X=0x2MZNZmLC*X--3}@y1ZZP|ZTNC! zvl*<|X%#exp$ONKw_^U1ulPDx9L=F4nUd`bHFngijh+}+QQHsLL@qPn0HempFAcPO zxglvX39wG4kkQwQbEx?=Nk{+Bk3uoQRAxMl+A{NX&i*)k`@V1L?8fs7d)9T9Mg1P# zgI37NDc6hBl**eo&FsYB=J$Vr#uhEZRvATiTnPZEtneO>nla^50&q6BE{xGaLI@HJW-IpMlFHPaho9wxm~5hJ3%Zr{lbMc5ntX zA5ug%3_vaus(CV7So9x>T348*q@`Pb@9o`%CMHgblCEzLXUb#1X{UuuWGBc|FaWQf zi%&?Qn>%njB6$84N6J7mRz^p!?IC88=7t2a1NJRr7n3Nwc>JkMThG`Fm~PB)4+{WP z)#*|t+2_9r67?W3m`Jk*=LU@vB|`Y=8H zN?edyw3ke9sf#0#fcV>)x4cPkH1>Ml^^mn0Oe1dNe|LqZK`&mExj)=pQ!h-3^=@rq zzWzLHgT5@EDzH;|UP29}5*-avORXp^Op;};v~Er++t%>nFS08CSkjQ1JW)o{x&o=* zx}~qiGe!~*XNWttZ#4pHv^qID0?;tMj_}ligj`wc*i7R4+4jz8G@KP|@9E{E8Y9R% zQOh8)_#t6R&-veOm2u>aCx61fin}LMlE?|UZA4P#Aa^^UQi{$^o|4k6zeW*)vQQCa zYaBfitkZmm2Y%yTKJJ}6o5lp6l#_C*GXtmPhDe{BW)&QP?XhXaBD={0#i9Ee^Ikb= z_jSZigRQRfLBqR9Zr}r?pc}V!1rC0<1h!hSD5;k+Zqsxkn~B8rTu3~^lXRLrk|P}I zz;|){)R6)rBZUg%rk46%(fh?EDlpX^zUepjM1S}c&C`b_=LMxXwY3~CN7--hv?yCp z7SOl6+edu(v$s!eC2Y964o$GE@GRexhs(NQ3q~56)spaYGWD%K2KP^nq!!t=}k!aw;XMwa5O>l@xWC6 zB?+hV*3N~Qv{;k!UW_|Ng2N5K7)b{+pbWYj@m7fz1EBPrbx}3Q-okPq`yM~<{(cPw<9RKf{+0wdAKF;qqKP#)>Je%qp94^QjvQEmb z(FG%>0c(4k))xNhmuj+i)*&#*=J$S7&Qbvpu|->S{rZQyAO4>5o4<4cy2(Wf6bKgX z{W|0UZUI}%53kmas@&YIOu7W}TtHu<$w(_Jqys=;Qp97lT<{7mnO92z_>L)YO2&wCy5H3`-OPeiZ;ITNSs&tD{-JVopp|7 z2=I~LI>%J0_*OpuOosrB+lDY_J#FOy%860+u%#tdB@sU}qf+n(ByvBz1*B?VU8(Sb zUVjv6FB01CGYD@~_LxXL^@fek^iQ9JyK--gRV2Az;WVZsmNs{KwAcPcT1Yksz`lT{ zVT*_IhE{=wPO^qkIBpGm)#5V{+Yaw|7hJ-g4w4}S69P>4X1&P#Edn8GMvYHi^tgpe z(q~!|K(qd=)ub3XqHyHDn=94rG#cg@I)F##qOm8l()a;||DJw_UANvIi0(T6`c7ur z@;>?Ea79c0;VNG>_gh!;*(uNp&&H+$BSt+g^D?k9_F0l&Ckb`+v=ogUp&#Nh2kI`>v~6;{ALzG)*uxpxu$ zDEI|8v-LsO{R1yvoNl*AW$kfgT=G{WAUB-9rLDuFqXrd*Qp_Qm-c3YT~cGqU@Sh zA&C69IO>Bbj;)*HyHHSW#P7J`pY=%Zi+w-OOi1CADV*eYV>}>JAKwjwweoRtc}nG4*8eObUG)Z3zNgle z=M3n$M=VFz^Jhvp&xZ}3&z%HPWBjY3ew(cB#YS2741@67pX`Y7PlZXPz8QI9_Cl!O z{Nz^M*<&Ghk_N_DOpXqE;*a%&mIRL|1=VxX#h}Og)SuPWJX~CnKY#wT8%h(tzF+-m zJ$N$s5si{1-mmA^s6!0fAM+K)Dl@(e96B@=)Uu)0S10_fU$h{`zGSnSAagBv6sG8ccdUn`*dNJ%ZBJ z8tbIiATm=`Db52$)p$>dl!^_8I)p*hms7v1tKHtV?Tu4E?Q8R%8N9Cs9}ayf;m*%Q zgQYUCd|BX*G|P=Ab#(bJ^Iym0SPH`^F^2N^6vp4Mx3_nb7B%|mWNN=b0e?Y1+ZFOh z!dLgQFrl5^kx0q+0{^O8LLJ^!?`RVdj}kjy#CJ}5JFpa8m7!%42$5HBbVf9xD*)P@ zR8*t+rz5KkSXhAxZ+nH6QR9raX`4QZ8vC*R`V~zO2!wS*3gZ;E=!(L)XNk|wqYvQw z2mqw4hq1O7-|j5BSsqC+B#OP0U*k*JR}cI8%5@HK*K8jRw^tk*^}6Y@k#0G3m2TbV z8j!gtpmqB2#X8H(uEruUC2CAk$@&{}^`7fUuwJZZ@w|vukYcgF{6-`poCBgZ|5b3; zV;ywdDjF;BE#JR>y!`$qCasTOxD` zG5d*U@%5HY{OxGDHM|K|RjeUlnX>eBN z819i&V4x8oa;m;}V4Q^OoXpoc{(CJRG*fPBzc*WjbpvN}zIi^Qd z)8*up3E>$Xzd@E3?z?SXcbTpSg{0xpm_U(r8cI7FtIuKHIo>cT)3yZu<qu9bqZSZUt5)37gmZuKdX3>r<@vf%^njJ}Bw%!iGv&a!}3Hn(&Yb(GbRe0b<1 z#%DhF)LK(Lf_4L$mo}J*f#6SxNX86~zu62u4D>9_4K4X5PiD#Y4Bv5xF;{w1lD@?i zI+`+ofO=z@2+q_n!fT6|BVWKe4Lt_#Eq*R6Y;(l0y64L@~_2HM<2`vE@k@}-BX zo*iF|g;3QvcM2v2p76;X?j+T0un(v}G#w>h>v)8EL&U-)VjwzSNH78%%sPDf_wU9j zg$n&_Nj`6>xST>7=H5KRypR^>XQmTZ;Tb(z+8>*GI3T_}Q`{yOm(ftSw zbUF3|+G!mFK_xIXbHOMW9apGOkn2yj1;u%6>O0^|{x1oY0Zhy#Qi%`+5If{OrUI~G zSSR~YGVj3{$@}mp#^9hOUs{`SY=kA!CM6bq@Tz%vEjbZ871-Usk10X3DwuXvxu!g9 z^%V3c*&L*af+u#!bB^2dzg(@0>FMcMH!mKvb)1|4-Mzg!aB6=1v&k(cfK8zVmT*`> zX7fJg091|I0#G*de`LM&UzFV!HB7e%3=AV7FiOeLBHfLoD2)s`(kUTB4><@(gM=cb z(&f-Ogmj05Ff>XGE%n0veSUbK&+{K#XP>jzS!-Ww?^DwW>>7@pF&s#)9)U%Ftza62 z{|v7Zz_lyPHDfiSUH_Yy#(%BF=*^t3UlhMUWdU440WP?9S7jvp*gklp+4by*M875Y ztO>1UEp^PRWVm-<(sT5zJ4WUjpEdFy@{`!9Tv|0G21a1Z%=O~H1Y!~Bw^qtz0*R+) z6rS5TGK=S6yJ7at><->&&UCcGM~UjMn7@x7KF zSPK}-TbA~DxpcXL?-O`Wug;4?K1?5QmM;9K^GRJjj;rO6^-5<$3=xr%UrFVg>Hk<3 zS@8k#ZnSfLTbo>x%(aKUhDOXx(epGu@C${7`!rYfPdLcJb&k)bA%)#uNp5;=r8t&! zU~A=De9jPJ)6%N}7XyvEt}}}0jVbjpkpn3;z8Y$pg{Z>~EFs9!H9b6%Bv!x2hg^Q~ z-4WB;SD{K<^DNFG;v)J2#m`Y~z<*b) z{l3*h)~}K6A8SWrGeg}b#x0jPV7ejaA1G1X@-}Ti46@EmnPee@gudJWQePbSrrP`^ zzb8J!AErAM9qk*M9vs3%m7X|YVUyG%6Yx*B)?rd}Zb1F$$JcZhmabBj8aY;PrVlW}*twsrgM z87OcNSTC!G9eUs;@<`9`_%@5m+;D;5H*e-Cl#Uc*7R8VLO>iUwm*HZgBQtq#zGa*m z5|@~06B{}0+3x&U?5tgv^KJi;`yCM1(&$niQ6Y-;yZW$rn>s6(eal)o9U>{hcRdJK zAQo@lb$*QpfBNpGKshmEtDmx^K2*TIJv^DMh9UW7h_pG$;DUCsKIsu2I z$B=87{bWOkXje#^H-7-7OqfpnVgrvrvJuIC zI9yOB0a|0m&&ibc{PJPhYDsMZ~+Cs#PWdBHs+Pg5SoT zG>P+-W0y(s-}+U56hCV^5inTfIFy(0#GYrS90q3(63$$9wqr4I-FXX&w_=lv^%GH; z{Q0}2-l)ReP6{#Oh>P|YG9-Djnh1@AQfWk-F#|#vW_O7PM2mC>WT+o3jf7tXjjWsB zRD`1vugw~B$_|FTpO+J|6=!S!b@}!_eyq*nd-Pd*g@*bW2T{!}TbA4}pnCNfzr#^T zn}Jh?wwnp)VYGkl3`t1y49e%RFG2@2cylLJ3AYqwb0%WZry$d2&f%P)^4wkyiP{}e zjoD+|g2T?WiPv`PwU;k5Dn6b5y$LTz2HpE}p{XQi)6;`Jd2Zm_AH8}WXo$jr-KGc$ zH7{$#=l478TiG&z2UB1sAI>di|Hs?R7a{bIvVNuS@q<}q?Agrj|K1s%5}eojvdxX+ z(v^Lc#YyQWXUVA%d3I0J7P&*mx;=B9twXk~ z{l>fgwH*O!9V(vJh=_<6W@cGNxSeCMqK<*kyjDnzk@t&H8MBhCtiV5x| z{JcSE7|w$bxY~d5Gs;3Oqo}12pV4qULpmrb1f}mDxiyg?OzY$IQBZlkor`T`%mV&2 zWmAo8wCv1l&Rr;4yN8!P%q5MlnvUhPNUTm||Ei80cWAt}m>Ud$#C-C!u0u4+!>g50 znbu4kZdsyFgQmt>ZtwHGhA(s4GEHZ#9`8!lAt=t!MR-k*T(#cGOJbXE^+y18zs)M$^7Gf$eCwaqmU>>*hC`BcH8Qvi>N>3gEEp z$376&e9fs|PxytkDq;LHR|x*HOa-lfe`s1tg%XPD#R>cg(O)-B!O^gI@*j%Y>l!h$ z^g0)DIlc7t(v5~uPg4lvU@DaaiG+HFfG|sL;+Ohg*I+9c-Tx~|m0sUu?8VQ)*KB4SSg8l@9Y z=_NkfVSNng3#krnGD$9NRjP5hoFIl~8~Y&jD4smlJe3w~cTPp2*4fjS8z&BpyTz}M zX)X3^g`FNuHbin=Eo-;ovIL|MRm zhBzs?iP7eGJo*_q3x@ZvR8H7X)7LXYjs=&Kx(|4xYy50fwdbd4Yn^>UaK%aXGZtD& zpM#D|RRNoGwwSgY5bf$|YRWz{yX%dv(d;bj{rA^Kck8Ey{tj)&LQNGAp2R3-xif^I z`=c;rG3l|bC#TIR-$WzwjWK#*)xx=H2C3H zZ++$8ENBGVs&y#b7hx!`8-V_=k>{4TkZ|QO3d|6RhP^Hq-Rfj;ms3$u`ONdU8c)CO z9XmyMlna-GiO1BeYpj*c=lcU|x$9%fxIufeJ3-d{dePcY_vESl@WcL1-}Sc=*~w}b zKD2x#iN5dAq-@1uc}pDa{!3&*1>Ep`i1Xq$J6-NIJM1<0`(3$oE>Xw$gtq6x&F zvW?o$-QliJtY8`FdExGbLdj!~D~&SL^i+a3nIMVUhCG&!F5u1b>%UbH;aPR)X4RNzYmJy~8VgAB5O5 zz>mSKHMv2%V()Jg~ zMAjd4`+J#{0v3=$T9%m~$>70Px5=06^@tax%aqI^jcQ%Ua!)`#9f82ctqtr zLyxV+<^{A-y)Z&W#ZpNL8B)|mM@3)dA`=Aa-xOz3xoA%4{$LBaKUedWTU%ep z4&U^La(&#x$1|qq9X0`2*)GGHSbrc%se%8rnJpBGjC3(Z16Ec+^iz8w__AZ_E|TS| z4*1dN!qWfw{(9cKPndSWqm&DBA9z8^}fu8_e<6Uoyzyj z_;^S8vgIS|eiGxw7bieh^u3lPZ|=6>+6*_s-YGYYd<=`+zCX$fzoy4-5l-qFk&?Qd?HoQzpbJg@4s_+e-nd26EC6@ z^UuD<=SzeiEpws@T8{GBt>m>3-q~uc+Ugsv^acl`iqE+W-5Jf+a<4v8W)*~yPH!49 zj22$?YdSGm96Q<1*sMa^?9~Fc#QHAZ3UPqOQ})VV z1qAp+5=);=5Kyb27_izk0b38Vv;LVS#A&@ZGr&#F-Qp7G@-_xWGwj!%3g>Lq0#(=Ae2et)@nf(f2*? z;`_$?qhH5+!Y3PH@oNP!tS(!SU`d~{e8oru{gZQaO~5T(eHJKgn_rekUepRhK3Fl= zwUI}uLCAQK9#2fi)(t9r-((4V>}q%JUE(n~431A{Q2~iHCHCLPWe4N8Sdf$*gnVj> zyP)C;xbomwN|TFG^L5j)}%(coLOlBX8h9`N)&Zq^S_(#ltsuq{#&({n&zb`d11 zX*SK6^Hq`_bn0vT^+CtUPw#5K*^7KL7<4*^XD7_xe=oc>CxY^szY_W0({$jK9d-Q0 z!jIXY^4!tVn6bR><=soX2@hCK2-njF4mHd@0Pw2CRVU$~54VQs# zQzga|twBM{g>7TU+cN5`I|F-#D|sAUP8RJ>wjk7VZ6hl|CkjiGiy>P*ro>-1RDY#1 zG!6MpU#kIRFGQKeRMp)Gv&`i_p6=$C_V87`x=C`=$%4AfUkW1|!gs6>l%h;Syg5ot z9*2wCZ=6Q0C9nF26l6DS=m*{}W+dL+*A>+H6Q?A(ZbfNjf0gB_=k@nR11erQWbelU zc?Cfs=ST8f5vz*0a54Jl7>k^l^h9u08M~?&Z|Ks@*fr}5ligGM2`N|O{xru0gTEt5 zK1+2Pnkz;NMCzEYDz#6xoY>3zFTSnute0!$yxgX$^>~0_9C{fv3jc3(fvM^>%%s-g z6@v^MMQY)F`o_D>ycxhFeb ziSm`89|p(1Ax#OkXzl{;w}g59gC>IpLZfno`#-4ZXn%FtcaJ(0y3TG*CqOM7?a-n%J$(EWb1ONicC!m+lWntKLK-)dzJX+d(aD)TSik)I`MM z`!##2HW~bbZ=CuLW$UQ>wbuD>B@GSNQLibxS}Xe;+%%w056jLsD4fkQ*ZObq*Fso0 z77cH^cTn_y$}YFz;A*+KzPNi=r@g633VESs!)|0T3IZql?V3{mYWzDrytx^t?6o>l z#mGmpNcLPTiB|_`sktjw=kn~Y@hSUSAp>y*q7^8+#`Y$r*xc^5R5hYX*kG(u3yF>u zu088uSZuPrhpZv|u=b2PLpKWN3$yXms>gXok?qPS#tnYCz~1~n|6bbIbSix6IBs*E ziP?-4M$RZ)oAmWQ%U$B%^Qqdj@4Y)7+--7;e}E#x@<$MMY^6$xB>l3~`B;9p7pVf% zZVlx*y9Wy50nl;Q01p|>vLp!$BvI~?1|}I&u~Q45OirKCL{Xju0!=e4|K7C@y1TQ7 z4HBSatJ~-`(JcSX!zumJw(%sX#JUza`bG8Qk>9&_W7xI+t)24LLL@zZ=8?LFO;($Z z=Z+xi%sy_`bwACdicG8bDhi#lOS)_-T`RXbh~Dn&rDrSL&oP&~z$DopejZN_+yu;d zgXITg@GZ|DYOwv(wlLX0gHi(pNR|i0PHI7B)tSogg0Cu)-W;Z%Mf zHl<1TA_>KB*g|m|_Rian-h0rOhVA(j&_Sbp&BHF%$mq|(rc72~RYbL`2Vz_u#We=b zIRz7r=$+_}5jNx%xmhX346gl{go= z=M%Y$hm2@vn4Z)?-uv2ZN(GAc`fdS%l8)G#jP(tHM_?wUE+Qlce3nF7(LjWvPTs72 zqB$2UE<<0>>$cDh2f?#DOzPlfH86`+Ojkhpy!_7Z3-c{PBkfI~1 zXl+R^yxeQOiQ&I#3&B6Un0VS#;3>(?S-TIX==Cv8#<5;e9twBe)NmP92-y7XA>p&h z5+lp>9Cp97Xx#rs$c{s@B~056pzOM!WXQLaUgy*?pNnAa97Z}u6oYLjz%fS9$Ig-a z3Ml;(xJsX-ED-Pn@jMi5^stAkO0(tRg#KxeohF5=cWG)mwP-xH3@Cl?!S9QJev*nV zV?~TfcNA$)p~Gk1*e&XzLHh_n1JFTdeUkF^vST;<;VnHm&>?yO)pmUH!jfZ?83s+A zkM)lCK?H$-?$-x1coB|D^~oz8g?Lhl;=hbagb>`VZ}dlXNpZ+gPveen$gtr6_<9Cx zvz?eF-+#AWRhOCY!vJt?!Dop#k5$)@;1don8_#u+ie43~nDNG}5aNyTCVu&PNnSB? zqy17`kbP&}%_tqRKHxpRE4P!hi!_tYf$Fmj7@MM%7mDRp430-g6L0;a>lf?|g}(AO-B|BlQSu58J&?l*T3viZiyIj?@R>`H6thwvI!c#Toi@JC z+ZuJ*uz%Ri5(WN1`9kE(d;8LUuFCaCMd6@DP}t8JYaTFZD=*PFu3{jXq2AfSt$oYUwxS`T?yGc<>hH}SUng0mfap2Enl@VRDuuS zkZ4Iq8@O7bFsn6cMM3B;%DO0HgdvEY${8$FV=ijapFKu#Z`V-Um}W*Z_yBiL0H~}D zohXnMiT|plTz1(@uie+xrS$Jl^{~}NMDm7(5!CE5h zUf9bAoV+@+L~N81EGS1=Ocd93pk&{YZ-~jjo4d$_f>Ol zL9O`y&bQ=`WVo>sO(7WD6<8q4Pb;m^3|~Z$SLq5B%dJ|*Dj80r$cma~BN1!LTZJFR z*X~n_dQ4E+ihYL?tT?mtUIDLZ)3Lx?Zvc2D-F`p}K{EzPWn{_xF}f^M9gw|UO_;^0 zZ)sJjTZag;&ItyQrzxQ@43&wV=>Y7#G@@s8zuUX>NE8*#!SBD8#+aSoSqUV4cJt{i z;Ck@(b8@FK!)iONN{F7N@mO1j+m*+&HJgtn4O?n@+`Mwa3hx~ZN1 z&z$&h6!99OD zyZ#iSX8@>Cy`Uys_pCxxFhnw=c$h}yBI188EShVJfhY{Wz~pzs;rwz`O~jw^9d4d$ z!=F;k$yGx%zCqvB-!u}LKc{$1Tm0j*@(&M|7NY=m9V|_-(^Hk8a#~a1tbUPB zdK5p%$Ajh69N_pf`#ldlQSD!!Uw90A;_0eQ$!cVTo>BO(HmL)uQ&jXiE1fsJVY;WvNcyeEkigE<6jE%vubEay9{W!Wx*nvg?f{`Mc- z!alAG{;M0@BRFYMMw|f}Nqh?r{_j>-ygHBJKOWbS9hCjfKf2r*8QqHFxI$a1}l9ee| zxmFiz@9 zIv=jVf;%MfMT&pmw#GcPbg@hAHa4gJU$p?x=S#I5oRZMo)D+cPK}$=UymY@qlp-Cb zu3w$sD|IZ1)L$NtX&O+W|DilgN zB|KfN57b{2>3=>%PYiDr!7cNhc^S;}-+x@d0b-4OqF7JSsgk7VT!ytOAJ<5_v#I=P zua<DHy6wX zzHR@LKim~M_PEal4kvzGQV9Sofl`9TU#R4hnzAaBPb_*1^kJBA7SIZ^#2$ueb3{q05NSi6o{N|%-rN8%hnK{p< z$*zX`K)(~+N61g^jCzfMIGz#8s(tHJGk4$ugzSH@{Qo(GRR&Ub#tO*K&(Dqj5W50r z4|a^(QY#7VX?b)Z7oDMzxIFpw2o^enLMm|*&!PB^(1i+rPVx;sOh;Oz&iHQi1F(D} zJ6lsuW6U#V37%AbiSS<1!mK9ucQ>-#eT>HQaU`)!b`C&h9ovwNx?<-GdrYb<0%VOl zh}W~RBcH5f2@KHgrU_i(ay{c{J2eITj)}Y*e?j`6Z^2Q?Y<~rf?ECf06vYGis}Dp4 zibwKsGFu5=M^+7$eVPc%tr!{nvSU~_HW^FqwKY!(w6LC`w;L;X#6A3>-V5wanZ0nx z!wmZ{Uwxw^5#aFk>o0k>lIg);fdD=t2+Pf3ck|I+nYAdv88kU6)rh(|a$S|>OSoR- z*2nZOHEjR*|FOSg9F+DAuVWF{DiXqO%E7_RGxsejx6jh15^4$6gfVG6dq?a4&zJYv zj~9-f9bmNPBJMG&oG$v8b3Jm8Z_pVt5MU_@rP@fhHEqnic!d5l&r>ob?H|N9aqM`bQxoQRTJiOiP|2*vAoOCGe68{t& z!(XbN%U*m@`WMDy)1&&pobE|TV^(eAiVoa$6gvo8_n7n9#oohR%v5?lwO8Q#U@X-m zL;EpobgI+6=2%VYs^yrZ)bx~mP__dPzTfZx(&gz>INGpz3?{=&u;<T|6LW0s;-*FuA!KQTJ-|!5u2ub0n|K1OK?0{S*1;;8QpH%~n3VAGd?y z|KsaA!{O|@^)MI`F=`OTC@~>|QKF4bBtb-85-rht?{)MbIw4B*5+p>g(MF4iE{te{ z5WUwKqnycm-gD0PopW7hUDtYk?Y;K8ce(GipFg{9AA07yB&lD6qlP?fQ+B!6>7tt` zDI0dFhrjOMgWl757>Rb!e~R#QDsD7uUK?)`Np>cw!P8HY8?;S5o*%WSk2)L{BwKkw zE_XT@@^5*-X`bq~$(y*KyyiSotwCgzOvYn(^a%L~M=SH(J_B?cPp!1#W6H^RQGTwD zjW^SbY5-TYhgVy#K;8@wCSS-k2cYK-tHjxfNR*=r6B0%qvvahb&Sq!KzRe(ejUiQ* zf2Lh&a#bcz>q|pld8$ztOuBr&n$;X?*YcX0R#kZSuw{5?XrO+o)ootJZ)M;iNa{C8 z>|EU~#b3p(biUXs)gj-*08`8`AvpS}j&JSoGh*!r)N}OCOhEpzQT0p9bKK#J>BD|H z%*b2(WxmY3)AEq6_|MnFyOV-OH$CD>W-*_DvL~7lX9&UPusWb?onYPYtntIhJK4E> z<&BDkbyN#R(l@ccqf=i`E3ekCrrzmU`(o6FRPk12T{{xx{5Jf_>vAVZ4pSdt>3}gP z1!A5KJDtZ^x~)cg+*@r~eWJwC-nQeQ-|Eisy!CKBn8#i>;1ahw&FpgLd`VpY`}OXQ zp9Rrm5#TrYfVuK_VwC?UrMncVA~D`SR!#2aPa68gs;a5=Y%$mMcbJ74$@YLMimgv4 z1AE8k`XQNn5VQx%pxytaH-GLAdg!o(jMMtf7hmvAp>t24+D~^twtV$#7q1Uun$tg_ zwSTZ|qNC!NHoQl}hu1&ELPtY$s3%$us~SYC_M5H5cgv{G>peuSo}K#(v?EXVXmCI` zzfvmfPbCkOhdjZTnEhY2~{S`&_Xppv6Ia&=+r|-)O_<)rq$j8yDc41L^G#b<%n+ z#_QtB=O3w|%Zpagtq&*Ej0!(YIE^5TwrQc8DXtIwdA9Hl;yJzZT`f zqDINsc!9_f(~?e1OiYy=3PE^|2b`5j1mb=}E#CIBob1l1HGBCyp)m^FCuwcietPy6 zF}KdwUfkQhI^?zaRFS4#uO@lL38(iH2}PcI`PTaa9WHG_pK*J3LZ5a%A45lK>|_fb zl*;9wwq1qE{?b79qvfn8Qij(0w_eVH+jY

@Qap1qE`IWF2JFk)L8;BRT+GqsN!C$cdF#myz$VhG%3Q5hp0FU(Y|I7lUUEJW#!CpMd2+g0q06G~7{@>#F%nKT>lD z*MIjR$<;TBu6xYkrSIEb9z^dp_`Tz5&sQtQZ23Q!|Kh>ddbUye=Rf1Gp&(h@GToo& z*B}0QzE>dtPF$fBL3K2)^)&KhBDE8-=PF-C%U|~GCS7EW{{6%sAOhg!2y! z2D;77=%>0I1yiwNms=Zb_ypT=UHwjhT+{XO-Fr(FC*IEm-;i6g%*z~s>biQ!Fsl)W ztE2Z~ZCBZdU-LaP9iUyA2knj-6%$g@&VJBZ;7Ute3_=?;yZkRa=?ky7orro-rppn4 zT?@h=tuNJJ_M>iO)Q_wpPS58?1NyVrOWm5N@|9jzS!UHgSXye3Y5r)tjo=)cUWK*~ zI)MU54?OPIT5ZyJpt#S`#!DJv83>H`&P$N9VeVECE;f&WZ?PZuc>q&DtiOqKf=Ha= zUk)$&0j1X0+GEtk>HKcZP_dD}QnanuNd87U?(4y^Da%6Nog8|lZ0?02GLew(*A#SA z>i*i$g-}eIkXdbApdwiU2<>#4(1t@U1siYY_#X}i*KQ%j?Pp6S996f9Eq0OYaTh&z zSge0X%#T6meI0&ATzA~PyW=gR56bL;IL&rQ8Sfwke`)A=pkl!jM3Y1Wj}7$51#tnc z7OKp8qvCF46;}AN$eoha2P0CKfAGoC&j8;vk`1H@g?@2gSLEg874_PANpndX)CYiK z4Uzi~Zb>+^_jGr^(R<(3)z$N`DR%a8XF0-pg#8&5I%Rx%K{#|hIDVtHOhrXS>&fz0 zq88ujzZ|0t)>8}|X*?$Fe<~aKgiFoibKoV&e_{sPL-ig{0!PLLo~_?`M#k9SHSeFA9dKq-rMwyqb`osaBi^2AclT!P6v)cZ%?#zi_YF2ZEAckCD2rN)ncYqpA7UZ=OXz)) zezarZpxjmwSng80UlK_Gv@%rx#>TwJrT5lgzw9jT#CT#Rc+x2e;=GCeET{|`*!BqD z2x4LQFABNZkdIGpKHa*E0K>8A0xF%Ko|kshwl&WO;Q251y1=H8Y-+&42cz9D9)^DR zOz)kaZC2z1BdRZcMGL+jBVCAZas92D__fVz7vpaX@n}EW;Ct4~cyfsYO_UivgzikM z?KpmJeF>qzzA+(6VepUi;N= zY%DsD5(X^@U{r+g!a&Iix|;ikU+W!a40|9uSNjLV?kKNWm)>=_oHe9!3;7&0>-^7F z+RweJ$_|0Tlj*P0_MffVui$3a4Lh?sCuXNGg&u$`@76nlT}{#s=7zTC zq7KU!TB0TW+2&Jg2pqQd4~H!&T$#y?5ZP7KS}lR%pi%*Q*hRNH&WPd}7d;(H${?vF z_uGO?BQ|@qM%zN(>^U|I!gPZCQCF~r*z}p}+o7J{m$;=c?n7$7j^G;L6$=TvK+mkE z)|rFW#;{Gp{{H^o?3DjQT(jOISGr(#l=z(c4`$7dS6|$5f|(cl9UwX6;H5X?q2o?M z^S&=!u*=7v+Kopf1rbeR2y?rj*HB_E4sFTKTl-*7R|^(l*behtievc12%RHyo(Xr6 zO6dQxCu7~ajRbjp5qCcOB<3*v^4cL#%J^I_ANaLZ3*ubxk8H$(F5(%aNmW&~v_S*Z z16PCtF~i^-_={@s#SZKA-ht!L?ste1ptN2SHogaVVM~+A_WkvRaMWahf1JJV#)qBH=oBgCS>2XS~`oaKSmu63vGV1y3Rl zt68KdceJVDu-B=r=_Z*fR$~v}BAAhywxi>9plKMZLk})5Q>B>$)8#)<-Vzt@xQ%`K z)V=NHs#F?V8l%!h^|hNoxNSPr98~6PZv6rRXS>!Y;y`B?XeOuiMd~?MLH3_LpyY|V zvlLOL(}B%Xa#)N2ANQ=6j#3n8E&PTI)XzSxjo@6duxb&ugFF()6gA&oJ(ZyOR)NbJ zp*Xv1cW+~c)PdABfYGskD6_YZ>hj!b^8F0fbI051mt6a%w-2}Mn**69KwwnM;1o6~ z83Lb2{0=~STZ=)QNwhqx<=BO^`s$YS-~Y2XvtPdy3~7v zVW8j5=K{IIs(fbvf_m2yu-$r!@#FWp$;9N0NS*7;a1F2yyup6XP(s17<9j5`M13 zr{O?yu6zB(Kq?WCR^c!}e3Mm7n|kUNCeFHvDtUcc|o zVM#RtPWa6@G`#9qwF;l=NIjVFXgfIlT?#xo9(Xi>PVr@``=GpSrPD5}Xdp%!E16bqa9MRgSmLK~NVZ~UkbcoH3)~ph z!}!v<1Kt$p_Uq7)>ok@dy7>@u;$G&qdR}?Y&i)`L^zl6GQU6Kj{ZK-$JQ){$32+c% z!JA)?QFc6~ZDBJ#5jA7&FfPj$P~m%C#7~r3Z-0%%uD>fx!2lihZhDMyuXt<=u^`v_ zn8+O^($c5&>lti=PfSRtAUr$GLXTF&dM$EFl%6Hx%yXhaQWu|%{o)iA+bM5Zqp(ed z^@9n}N@PU3`(M`4|1m1MI>dr2OlpoL-I0He+8|zWX(@RcgjhHu5QBQ;H+ zWC*VvWXkQWBEOr!a!_?yE$et@H~U;bIj?!|2Eag$?|YuE{zR(K%?dFrlR* zBNzMlA#dXMGsSUWiS)2PY?+D!9BR7Ue-B(f>CTBfTi^qS-N?7SkKR!$`GPEI>t+O<2>qu zwB$#j9+GX4^*W4sbk~LY%XZ3$yNQFzn|reI(*o$0^&ZUfSe%>>V?CmoSxUmT)hRyIN2gPBY`CD581P?gk6BoLFZ2D7Muy> z;U4`^;sjLpnT_doVN$)w@o#<#ro^fErr?iGp$zI5Qe#d&Nt{`~pF~aWtW0~psR;q7 z!C>X1I-r<(rF2o5HN>lX7Mi)6X}Vym&ZDr}BmC7nJp?MglY;o;iZ%%8jEdt8q?Z?> z+tl;~6wxQjs+_g`ixc z#d+0V>JA$#(zE*u(8(7fnqoUC$R>!Ox9SkauPM8~Yy};6BYy07=1 zYftq?jJfHB@uE@&aAPCrH_0_P1u=P8lm|eqmX95=V4@z8k^+HaP{!9^ND$>oEhrUu zf{9b~_im@vJzp$?4n6P2r4|V_6l{a6cjMc+~sx?dp@f|my z+kkG06o?%Nwy~HVy3J@aWyAF<=P@OHoKguDcBEvE2&jAYnnH)Y(7+cvJPm;xeynOs zXp&d!7d+l$?|6ui?72C>Fvv`Rl4jCo;YnkM5pH>4VQWK^mLv2&^4J_^*`c6MY?HHW0XwKSm66j9&9*_`?Tr zoD2KGi9y%?KjXjAoK|NQq{7oS?GsCieeu;d>5BOKiciuYu`u!EqA?9!Tk&2n8kk2n zDjVAKo{_xtO^dAQ_BXh;ff%=Qxd+Z2FZ2vFoSps6u1j0f+A|19s04i%@+z_>bx{E{ zDkF@VWWCrGKrNpsIjg`3+1hKn_{^5*$m&N`E2L7~%N)NZ69M?Nr6*#%&Y2M{k8>Im zBgsPq;X>!E$B6-9k-;?At_@NhuLo(Rt!3}cfHQ<@kUZ? zF}ef^)iPOJ^(M=ww*kM(=9r`JQ!<-jt8Q$pTLsFq&KaaNsSn%^rimoi4t0a{mfa|E z9Zxc0<%WsS=+mPf@s*ji11$eS?StS|4&-$5@{HXfD&$?yzU>h$n~_(|iU-l?SOa6w zot1hr=Af9x9$HP*w^ApNy}9ggW~cJ3fw2S~UjFudW#S|h58|a(n=YP(oFj^fLbLjS z)dehsS0SxAaeu({AsmmCqU-%w3PdZBB~1c}!kmq&;!nPfP!A}}23ZktNN}I0S5vOW z)XG|tSdOA(vc7ebOHqt>xP_c_ij?P$+?LP=Q9cN1Bwj<(B#_`-qi!-g2SnC)hf+#+ zcAvSfi1G7xad6(?bWLToy@&89v;f7#QEv+G@awX;@(4)9pVo>7!~n)5+K=`1tMv`a zO;u5pq0-DIl*#h9MyCMGvj%~bukW76@ScvQL_#H}DeqDVQ5+@U0W{G!)dt=Zf2)jO za*dG_{4)z0G(wc}B`=mIih*CNsF7r+&xTHdhCusb2`bE&-GEGy1M`d!+DB?0QJczE zF`~b=zOO2&&?KF?e%jO69n70fnakJ4+VBw5ZOo_>Xi&PWH0 zy&)AcQtNl1r@zGzu@NK`&L$>tQ7Rbp^JYmXt`Pv%a&!~ZlKpmYpP6O|PEY} z)1C9cyg2I3t2E^?M)TggALYc$)L7s!Y`4^<{q0JscVPC<;-$u|VlKNTMGE>DFTf@N zWMWE{UvQlIat9?B!dQ~G7%2iU2i;pzG@gd(!E!F9N%q8whr4p3LKF)MPPD}V=sbHs z8VhwgC5*)8rgvJT2C>bQ%i|2rASBK#vBKvx>b{e{XEgwAbPBtA7A|T!rTT4BUuGmR zPbmo{_8U`3kOoKsq>@rqz^IwX=IcnHMXyvjjl90+#=-ETd7^%%761V-T#+5EvVD>Q zA-SwIH<*|p!k>{xXfW67yT7gU**p~_3XAolc*ld#yI^&#Y3WN+OxI04y^fO7<_;1i zPElI`zqpFv9DIBbPx^zDNLUl8gfM0W!MG`yRcQ%>zpkLty~Gh})#+13&oL}lH~j;^ zG{nie#EV0iuwCh}2Qd-XlMgL|y`70#>P;bs=6#dmxT@z1%ZltL%`=bnqEyq#Nj9C?hyip>Hh#}A?21s~q>f>ag{XFs{*%SG2vXWa( zkhU_lg<}Sf(GK}13!5VLS%9%hmI6A|Ln&;7YVN(c40?IEJ(Aovme--ME;#-#2`hI^ ziHLP|0RAl-u#v5-zhXYE2(;;oDj=$V@)5~Rtr^HoSFQ=DPcno&+VuCY5_m#_H8U9O zZki+;=NMvvlIN*#I|uxX$P{}8&IEm5@Zcbth>^w)tL7FYoSaOf?2c7nJJ+Yxh#@d_ zfwRU2v-HM_wX`GDKHTL4+uG|YBP4vn&jYYFUgcB^(yphpkJF%?41_Pp{?heb7{0z5 zx3mTJnPQ&dn;STvGf zjUKvCM!hW3{{Ba0?}%bd@_{MRm^_{B|5uLx#h#E+CMu-ylc>vpm~Q|$Rk>_cZ_(v- zA9c`Ck;T00me7x>>)C@zW)=&uOEZNBnGEo9R+ex`|9Afg(t*MtU7+i0nh;T=uhOjS zitPc(Z?n_tRiHlC{$Au*KeQg zA0cymBsjfqX*rgHU9MmMJS*2Zy%B26@g{ke%v6^+iTfL~2{k7JQU2{^Wk7C#{yp^$ z*da~+3za}ZIscDgLDcCt^J$)`(S)$1==17=ACf4k_fs#hTk`w>K6_}9o>{@T19r7l z)|69YddYz?{w~Z+%zD`VeQ%xI|8qQR^jc9`_+O4%lhR%PGfAKz=c`JzqB2_?d3c@9 zkOl=h`!D$+8ldSXlH5C5Y}dEGCkJJaZ1f3B4)+6!21*^Ce?>~C6)C1{e(sJXReuum zW+CbyyK`$(1oNpUze?G8JCc#Z)M9Gso3T7e|N5LlYdc(dkF)4rl3Shv$*vVAcxGeu zvNP5{iMJuK=0fZyT!`xgPf8ci8x_@il0RfZ>|0<9Zi#{sIb_mocqz&+iA6#-rk^2u+rIMJ2La{ z@=ssjt4N-iEz4a7(eZ~QsUjTY9X#gNk4#mGuJO?;Z)XkY>9aMaQ*_)jG5uccl-4NZ zkXCuK|NNbLqtv5hxW!cQ004#z%b7etO{P`C#9@WxZAxXlJffWSP3PO9^>hwyXAZdh z%HuG7&rp z{JI63Wh(3sx&4y+Aid3*ORN3qV{)7Bt7B5~(Yu!04)762o*Ld<lhB?oG8~hxlp7Qwi@t-e- z#)|TiCV2j~@o?IX*dW|MahgtaT?&vl#H8tkrZw#r^v6o3gTPgTjrzmsodctWKDUTl zeWia6zzCBjr*2+{cVuJ)D9M{$rK<WA2Fcp0{-ImOHN3(F@-pvu^I>*flEazikt| zvhh%H%Px>YOfY`D`ahT8W-|E;Yj`0yR;sEf*O{0DRVm6f-WI2LeZGj@>`76|=f8(> z{R1>K4;jLsVNIgVNR`-SKSw-~V<(jHJ}wTBA0# zs&-UcDMf81_9{Y^QhUejP^(5&skX!>wpb}z6b&^Kv$e(EKl=WBfB)Qn?&Ci08PD@P z&vRb)@wk-HN17KArqYVX_jP4Ov>SBGr-a7l-9Bp_`qt>$IPCR5ciunb5r&iu!kfN# zc5F*Ltx5g~ql_+y;NotTP)n~CfK@bgtd&vKiTuk6%Y6#bo2)}uf*Q??9xBF|Wh16C zEr@XtJF7tL_n(hqLl$fd-&ZVZh+AIpsz!c*#y<-VFCMa_U`?+D$&9X2KlQl7X?s2D zGEiAO{}(40To{)(qnE^}9u<4K_6mlEt{ZtHqReg&jtiKE`pR@N6qn{55&I0`A9*ZgKweCF?-UxXq#-O8uO7j;bd{3-Wnjmy9%>gN!%*qDJy=(30JRP zU0ZKGKWk(bx9}C+!`dBqs_Fs2*iG$ey=?M+z9lq8gUJ5D&MPX8iiZ>v-wKb9{P5l-;}v zmUJbXeL+zxT`V@Y0lS#Z&CT-2U(Vr^et!n@!$)mGgSXb|W^y++Hu8K2RQ93KQBhGs zLPGvnxx;b#PVa}Rj=iZkxVbqSk={zJ_xV&xy1$f{y5$y;?7_{v-X&Z~MaP28{W)cU zm`&`23fI7JWeO{4_i{^kOrchd@xO9nWcWYuKbob`&${`Smf0h{YOMJ&W9X0%=<65# zaG>gD8@a#V@`y;9Kk3$yk-Bi;PiN-|AuM{#SJ2Fi1R>hFt!uP zIFao?9WY?W!HjiBOvcC4s09bdJ&b#ds!Bgx%5=^}_Gta79@d-4e*5+p<*bDb&%C=^ z?9-;rc98U+`y(nVB~@t^F6XREFMi04rp_G{o4&Bzynsi;kAVTnh50x7XPJi+h3VF} zt{y9!1>Y;3;(Z;xz_F6O7x}jS{d>Hdo=xZNoPm4!%$f;bB&cOZpU_K&@E8clQ&?K7 z=={gpir)X|?&n8UOgXVqs*$E0Mk6PJr;i0!?oYpvEExu4CTzW@T0_r&UH(qmuJsD2 z|2jCy(a{m1a1e`#B3U2)r0<0?ifjO9DNOkqVLBMpf|MyFJB1SZdoGGV%XS43y5;YUuTI-dfvd-CN$-k<`Jd+e#ma z(r5D?{<8a0`*xvYWi1kWRd7s%B_S(Z{&R3?jfl34Btz4aa`hP2R+DXS&png*3mfW) zP3li~)1>y9X>J;qt-L`|{kY_|Z1{i8;}tUYQ<<6jwQ_U=@T?4MT@!7t1*`!4#M(V$ z-{96fSh_^-3?E&B#EGxXi?y0}=9A310gIVmQ7uQyG;xzJU%m{n+OQl^KHV8s*jxSm zbnqg{8xe9W>mWoGn%FC}Eg3snapky632$Nc z@SUE@?ug_=Dj$v~b59$1mbSkMq)d7*<@h^2eolyfI$r0+GlP2E*!j+@<@Xf`1VZ~W zdCmKFHVcXa`>S6A=rFAlTVao#?mn)!J0vbRZ=G4v!b$069+hp=5VHKWw!cXHjQ_W| zP7b|n7`#zZTRk>$H=OvlF_ z8Yy?pAC2RM5{WxIJE)+NgBR=dLhR4@Jj`AGv_K)cS?G?}s^H)>_XUpk^N{k$NuPc;(0 zWWTX^>N&e2{-vZOO1HZPUDou&JCf(NO8?ZN=kdH=-TBH4^C4G-i}qMGiM{c&^Y}6| zpy`AEX^nqDM2rC)*X{3qRnCw z$S0}ca;QFS(oVmCfPkE`=Dl${<}7<&U%rM4hS1RS`AcBhRH}!}ILJKfJ~J!7#j9S= z#tRMYe0``))%$C2<5#1))H(WS`Ku^jn0cFi^h+l~G6uQ%>@0qN24Z4cvK^3!`uw>b zGFqVh8Qk&>ywdbzqL`dOTamm?3k0%~*d_!ufy+0=7gn}hmiA5IaQJzx$3&4k_UH&_ z=_Q9hn+iEzqXK$a2_;kNRxIlM?EmXqJG*PYEU%vXM(;Oa=S9|yjc#~-SshDti^YHJ z;$nVLc7$?pKNAicxyh2$0wrP&uu4nW+v1=S22|sEgYgANbcia<1Z^{39<85>eZ0R> zzm$7o-5l5j)zOJ9FJFx)cLXEE(BrT?)zjopxq-`0i1o?(x(7M8cKf~Ox@%&LnV+dQ zE2?kU(iJs+>>=q=@V2ls@Q8?r$iBuSt()yMrxzk) z2B>;=FjuGkPz&ykb0t`U@^2tL+Q!K?Tp-x)fP)+4d>?J4)5zF#tpGMJB%x(eth712 zZm$54?;Z-tO3Wz!acKh~dLX7~0 zU;y0KUpavf5=cu%mo{ZyHRql>J@0nh%;!hL91rLu?FHhk_n=pMeRR{yhV8_krUH1ox2|uvlW%N` zGvfx-o9bMLogN+Ut>s*Z0WXQD)3$K(*&M|o~&7W?j6)c8-qPJzx`U#?LYgzO70sBte$+O9PX(z_d6C)hNpP{6ADx=p=wKk251PxVpyG zNJ$l5er~_UrJ9@t#6@<^eb(02PTwNZn<32~#*2iyCwx!46X$jh_~4#vbIfKcKL?p* z{1Xw)LgB{^zOJJ4w#tzhgubSxCLWK8Jf@(e?3xPRpYmfKpW~~xb&a8XN4W(Mt5*9N zB_C9F?tt@`nrr=bto{fDEo-Z~jy&iDj>c?0QIk@$ZNUabB3ZG+nQvhNvYAM!5S5Ix z@0OXSG6T-sK5323SGjs!HJ!&FFQ>Sca8P2>9Mh>LOp>T?{-VWI{wH2kvTA@aJlqoW z1;4N|>Fz6=jw&hCFgyN@IH4CV;fjL%V*ou=Ny+WJt{FP9mX?ORugNG!G#luhPZ*X!a zvp`NH!9RP%hWhOdo;@=#col~Qd6yU<=jNiuoBwp~f1$H>IKbufFue(uvi+;gX&a|s zB5=*d{*FZ(%r9Nq%X#|8>W`>G`R$>n`jUFh$FK7$Z`s_RLaF%!mI&stQrMAUMFwf) zHwbvPSpr|k*&agv^y;>fV5cC(q1d8>VE_KZH-l}36rPf06%R)QB*Owt&#aNxd!ZuiivePu%>?qu31#&+YJ8sIQ`UW+;f%Qw2_Z{ z;NB;f-$@bb_75EMW*LOX8hk=u+L{-139C}@W)UhkZ3K@xwah)dTaTnwU`@cuflj>Y zfukRzAv|IZO7_cR6;jqFp1j0=7sY2@`Ial zgTrHfO%1L0HQkdF6|Xc`SA^TF-h6S)6Aq)?hd;S-a0^EXJ8;yBYu_!9Xv?#rnQ_k0 zms_3&VLo8xQwpQIaRJJH(qc6Wp@l_;1H-o>A=X4RS zsK#8_%PbPXK?Yp9T)Xgs3CHn0y!h9c2;z-6m;P2{00*ONQMd=Xgo{EjO-#NEep8I^ zu0}Ihg(<+YBFWS8^bG#DTfI&`sA(coVOyzY=;Sj&-Um`L*L2$mInk~2(!1xSHRV@o zMt6!#H+s1>v}T6^4}lGPJ1a~XNUMyv7j6>>5G;BVE5~k-G_vtPBj44#9f_CCKzOx% z61o=@qNzg!GqP;6$i^V`jgA8GHQ&<|;~PbIwKo^+9%yLfYXD`8{po8_C(UI`_B7>> zL|5`Ix%sC?6_Gk-Ad3m3(}zV}Cy#tKIL+FXf{}S$0i%p|isj0c_dm6s&UJaDGrs)f zUD1Ebo9v8#Gw#bYc%q-_Ll?*xVJBhI2)ACQc4K^4-haaPzqK8qvx8bFf^Zaup`+s3 z&J2JlEwe;2OGPpfcXrh|81sjjk~w>Y%<{GE8iyqpQiyvyIst%jf?MzhIv1nM{HG%1w#5U1b@W1zjN^%k|S+X8oyc z>LxJ%L?nyUb)SOnd5;^b#Oh`|U?nF`cKRByd?XP%5@%g&%mhbuQ!xC~B}uVP3yfl< zTh*^GsNAUh3x452qyPj1Zq6{LnNUkiv{0{3Ny!v0gWeG!n*|+flZ1A%85gU8Ew6g) zH<@kI!30SXB$iJxP0=FZI~%Z6TM=i`js*I4BTDIoM{RMlGKol1mkc~9lxtEA4gIw{ ziSdbFyCe1EJEBOkjZ7s9`TJM5Y$+_N_?9Qw!77W*;y^x{+2cL0k({-}zsAN6_+dyf zm-38(k)<}BI-x*wZtgA=p}(jqSj!WaXb~o*!L}|?V6(B)qHaz5OsgNuw<92Y-BtskvrJ3z+Mkn;Q4vcM&fe`?=cs##i->=#a zFSds)ox2W}_Akia{U{dx*ETJ$}* z9m%|{i4=9VC=mgJIfU()!pssDRGnn6Bj|K9D_0?c6x)K2xz{0Keiq%(X$e8WyJ6+s zRg|Qm)Z1u{m-$6Dk`v3VfyxR7?*rKU$FJG^ixm@lvXf{;sQqj^Z*?lrlbsU@%bPKUvcX%sk{rK10I`&MRr{sJ-zS&x-^8+O$Ym!3AflA)X-bFL&9 z5_Is9zSS@@#p8OQtgV5z>Le9O(9}U9@^+j8wb}hwvG({$5>Cd^@RK!|(wnPR8XwUm z>Qv+?tr^)@0B^CWD?77SnFA>f)mS%)yepd3v)oVM%g(>scN!~8w`BOY7j`u^Lwljz zwHbS+y3$(SCgF8l9?U(}&Xeb~F?ti}rMT_i9mT^hmm0{TDk(AR(%u`uA-(aZ= z#mif!-|?@fkrr!F{fJ+Cg(-5gkxcsUj55VZBw}kR`7XG;6Z54=5bMHz^AUwsc2GxW zEn2@O{PbSMjnaYxEBY0F3P_Ro+pxU-QP{{2ZK{Ho$Y;RoXyd!;Fnfzfse~$3yptVQ zR9plJMPU~swo?^fCl>8_#VDl@8#z@`^Q)mP)L|EOvnr=Zpkp4iV#d3b`|Q z?^q}F?F(hq)@eN><;YYHA2R(kc zV@l@t7L<2OO&uMXUd(Fzi5eVSWa##Iaz(P*F&{A@JI1*r(61 zk&aKq;g|WOWX4CW%W9`u>b*TsUeAT4XXvZE`tb`d{3 z%D2?8vA1h9=>Tf97cWD^Lk1B}f($=Eu=hoLI;F}-5Wt##xnTy}R1Cmj(>c~fD$k$} zE-xiTd4mG4Z<1YWCAK9&Ee?O~ee2K#6y=uEO)><8{=}89uJDyHq~d0&Y#aN$1daVZ z=6IgZ)YVULnVxmg=v+O>Y2T$GS548G)#eO2{FCRl-*KTSZo!{p(!Xito5#Tqou|Q? z&u{wegr`Lac*ll4{CQlsjMNJN8hGrO+q>noT(dK5H|P+WxS==e9UR`!i- ze;phP6CycVVTg9(i`b$zu{hs!ru(W##%Q8#b|f`M>A0ByRh3}&qBe}u;Qg!iKy-vb zhd<&S2>*_DMZ&ssM_o}gC@c2Yl@{zpqx^95+st*bE|MsPlJ#9mYgRYQ7w+UZTbukt zcFGB>vkuoF=kayo45f{&c%uQt!NQ5!zg34XdL?eS#kzzknQK`*0z^aOvVtr1UCQwv zQr>9Na>teAUrgRHAtzfpy}iA}3va6KK{w+d0v|G&SXlO5zM7QMLy`CN^pZuz#i!oo zZ{HeNTj#>D$y}k%uR93uzn8#n2;bn>LM26XXnnSs(O|Ni%)8RPUv#fP(8yYk zDj-`go^{0QXJ-$is7~T%v3L&oCobws{Wn%Wx91OjfNt^&N|5F01wRIgX+F&$0yZ4l z$!=zgbS0b_RcM})@EBEdscv<&!iGlS3Y5`DWS;b~m9sbgfS;I;-x#c1wKR(+Pc#;d z5HI^O(1+#TWyZYzlpFYE;H02U5P}g4^KuBG+nOk|QM(}T4`E>>@hK@n{hxYYy>*ac zcR`GRtyuW%P1t-*os!(%aKNf5OSG8lz!ia$p?e1gP(bo{}uZkk}NJGX$x;wwcfa?rhAQ zXN8jka94Bge$Yn3p}@goeq2{w#zACK*;{|bJd3MMFVpbuU0D~JR$A+LXK8@`rg8J{ zPxAtuS8_i%igGGnjpqG76JD)_q9}Cxl6=zl3rBl;dQ8Wk z)cW&2=QBG!IVmOI)8n=5|gr21V4X)u+tskt}%e2-hGKo zv7%EYB_*}Rr6n)#TRD=5soAlyF?iMQAl*B6x{+=V?lc8;KEblmcA|9VdC@brPXO&g z{4GZbFxtiLQEytAm_{KgT>*JzDu{jg?i*NQ1qN=PIMYVr7S#(Cdj`F&sp9h0o_+vuW?cNjVuA zwWtbSy?*^#SWYhUb}fIe)E&ds)Lf=KMh)}7Y*xAY%n5I4KsgRFnG}ThaQWEx>`Fe@ zuClN&=B-@Zas;J&5f-c#S^M<~dmBCbbJnW300;!)932xQ{~04DBSYM|JRc9@KEg}{ z^3Dr2ERLk(#i+10A_x-DmFT%ZG;J|@C%MOE$E`m)aQ){c$x=RX6h)H9< zi850&sLbi1sMP+{r|e#e%!r~gdnxtn)0c9MnN;j{vEVEf^|5VfX&IHcODJQ~07@x| zB8SCEhMas#PDvKx8qCSfVSzn@%j}eEFi^5Fj`}$}QG8qs6|ewifk}pZ3+3kI3IPju z47g$pi5w!_DIjQBlnT*{a+I;4C0HM^gas1UAO#qX1!0W+VBc~Z5a$iCjD2ByDVk9q zbzy;qH99{(U+fF(Qcxp}mmzFdd-radIB_DiY14*IKKW#y+xTFki{Pi8ddm6s z+i%nJ&p)q;M;F-(SWvQHePqQggZkDi`IBDnN30jzVgZ|G;Z8D zac+uwa>af*r+0S^XARnUw!q}Um(y24<0Ng{n)ti z9on>M6Fu?#V^lHGP0v2_6g~3D9D3-Xhv@02pC$-qlp{_u@@i^osJgnE9)IF-TCiXt zz4Fp4^z^F>XyX^_sLWGJSs9s>&0-aTC^a=z2v>YAht(E>GczNbA_oqmTvIkB6!)jp zM+Q;Ult7A09Z0r(JB_X=r6Oa2aMOV3MBBsCh_u;k7KG>mA#CA0j55@R5QYFl9V}s` zl%h-uW1NFm$o@?!g0X}(81=BOw*VszdM(2)uFFE)?xOVJQDhhwLm~WflR4=L8d01} zA$_o}QF*IY+6pD(8reQI|$Y}6dcBS7hL@!<_AVjfWw%Gh*^}QzTPq{>qwz1g|IA_+u>N)4~{J@!Z;VyaX28HT~ugc@jW7nvMZzL zzT0l5q!F`d(d-e_rgLAqr&|Xqt1PGBds|abzx&?3`J{8ZhX=&J)4zK=>K;84E~1!r z{yruK%q?UhQUqK`u|yP!<6-dIzYrT6+lBAz9}vK3qaj0v2v-QaaCqCsf%e|V?Kq3; z`U;uWY(+3`X6+yF;Zj+L8wW}RD=3^m2rw>f7i6yawQuRC6lAW}Pc^R4_^7uC#Mq%+tenkuCR!L7him_&pLIm(L^u{&}5s{MzJxml%AJKXR$0`=HV~(Cs3Q-N=g>$OFwXom?Azq~$gcQ7b zHwi4UFYFs>lu6+$MKg{AD=_?mL2QR|)GI8sQ?bKCb{mWE(m2YPI*8mZCl#2DblnZN zihFm#W!I2r#w>aNPGRBL)^4>tm&Waum=w2a?AWnyOpQ_3GR@IAPS+0$q=j^O1oe!=-2&jT#Lc)5W9hSeAMmh*n)dkZaC7h0q{ zgu>B<62S@zCm_0+mtGU;*`y{UXU z?78Qj>vJ0)Y!ng9!sRL!Z{I;QKJmm8v}W~c8eTDyo_uT}jh$Xep%d<=sLXyeb^KHs zGjS|gOg2hQND_h-0u$#C(KBe!AYu748BEl*M^}m{?@npC(JXX_Q$b!KWwZFr$jlJp z6fX(z4aR5kNs}fC!Gx$0cp1oNK?~tjQ97LBQetRuNq6ee^r18s==3X4DPk8J0hoE(IJJJgig%~k}LGvyB#v%PI* zA}%m4_+BQaLRL6BP$F1Cp%Jmo+4eP>bPsKJ`mNtTt||S56^;VxErPGP<{EnU-FJnk zx$e5_{=q{DS-2W(-@cu$yz= z{UAO2+>>N^AcJ0f>shLPYbibX#N+hZ|6Zl3Q>O|a;4PcC2sen;ESleXYq1by4?p}c zJ-P5ndSd

TT*oS<|AZ#L7a^>7ZOo1`TDA3~>Z&A%vdMXcAW8E?v413qoO4jTsh0 zZWgPVnOPJ$a0ulNPol*6!8FhoM6q!(loFLlc8gsIS_m(QN6bWrPw-NtLZD)aI#N`k zp0x5ps7cE$EXokb(!z^+(n5@Nl*u&O2}=-lqng9#hOd;<9m~- z$VgVRmFxv}D$$}!;2fPUC)o?VqTRcHuNb#k3Mefw$Gaibw_K-|Se1qEwoOq(J6#3B08)_8G2`=SjYe(?eWv5O^U8brIH zZhCt9>zz7vx?bDeq0sCt!B;Xd%ZY^vM{kJXKbWB|}3)eQqO(XcCBdtH;M5 ze@s1l_Vii*AUq-wyl~;db1Nz;*1}Z)LI&dNEk5^jVO=eu=UM!|@$Mq}@}nx>;cicBm3i)~ui6P8DaQ&=V;$Y3p%mS2c6h+*VQ zt1g6Z?L4%F6uQ_3E*~;aT7I!l5aLz(1VaF09|c^u#92l~d`&s|sgyP`oYG3;$yHR& z0@z9APQ)_y?$7NkreYSjt|AY43QMS@5YafSWXj2-1Wy!Yj*8!xJS1x*-!9CppvPG( zJl}@+hnVK$ui|sW0J=s+`}C7eOMYlTP2t!)nmBp_Ra6W=aILWBOMh$JQ?xy-!w|%1 z2fSSH`fq$*UA5iS2QA(m0(0j>oMkW{U@m9=!o|9Y$G(R4OpqC?_+YvU74NAvK>rD5Yj((9npXEIz$4fN>qL zR3Z(5i2DS=ilrvZ{vn7Va6zm?EaTiDq)`SjEiJ~#$ACN3fzX2$R9b)`46#JLf}%pQ zu*fao>$6+kl<7*KjOjzfd8JpxQ{3pjl#`c5r7VEUOUkLp>LQ1g+rwT+1x_Ow(oGbT z9znSeMN+S*uKO=L|B9FSTn@~o(7t{9^Ru$D9z!G&9A91si}O9ajvxe$h5z*L9r|L% z#0WBu%BFF{CvaPM2mhh{AbfGZ(GF-+guH{W$Fq-i#`SXgHO!``?XNy)F(UY29X95? z#$4G54}!OvtC5F8|kQTqhR7ZNJ$zs!Q!jfEpD&tcx!XG}UYl zb8n$QbIsR13@hsU$x-3psJA8flv7SQoS44>|<{K9os+VB|vxBW*8WQEYRN!-*KfED#H`Y1q8(l(Zm-5(|bLbfKC4y1g3PKH;EIN;8L0gbQ(<9Wq1gt*x_50pV1 z<9zts-r*OC!*O?Q)*=`tafCX1naNA{z{KN`Y3hi(1A`p z^;Dnr^+YH!#Msq~Xb3j|af0Def$(GcZG7;EMDX2Lyn0u(z7UML=u^wkEJ+U1Px;W1o0?+T?Y?}Afw4l zsS~3pbLuckvkaplt^gV`K9Giu??vGy-6?8n2#e`Hlx52zH;YB9%}9olG|HbFN5dzN zAxplE@^Z3S=y?aM!O!%*`+87fd@_sOJQkiVx_{CPGCmkj-6GplVr()wivEu23lRpP z2&*kDx)5j(=*Wk7gtZvfN{C}AjHN{v)0PG!6-)>OY95V$>T|ZjDd037q)jH zDuj(ic%G4RGQANk-0otsS!^Q2n<3vwW`mW>&6G5wH)YT7OZkozDzw-+&q9Soh3m4j zBhS@t*-5<55fJ0Ba^n~{H|!JS>)4r|o_;OYxsuQ2I&G5%p@*l(sl1PbVt46ZdAUgx z`#?8Joi~W={Nf=8!J++djTqF4JbcZ-%Ldv2&x){;+Y76#Y1YG;?5Ej^;GRtR!-WXD zlPSY{U^cj)nJD{_sSlxnvYkwnjbJJveB@9fSV5tgA;?%gq*uWj!sHqO=IUvYkqeJ` z_@omQ^%lW;UVZh|LNI;%?YBb6LJat-C;5N>_kZ-%Q%{My65oISy@(ot2n`6khS}qM zZL8xEiC`8fE(lhL6^KE6&Mq%2Cx^{W38VW_W<{(JkxqLNWoKpy%crNrLpfYGFD*xW z#!pU8prr9(WEh@CV@Hh_f(QZ;{-ViAaa0TovMq&Ta$_hiF`80_B~VU!9vSkoSU|D( zG}$RVHH~7khfv1cffPUOJ{EpfdgX=JXzj{%^vEL*Q({swz3{>dqJ8m_@zBE$(a4HX z^y>d!r^(Z%)02yzpdqP)SxCFZgdMmZh(ZWNh}8S`$Ahm2%}sIVTeGz5Edes>w?k}Erm1ogXaRr!tp`59b5{GHVb8C z=aHj;g}AejJj2~MpJx%n8TX5~zmE6$1?~ydg znaIb$I4n``FDAOnl-8BO``Tq$!*dCJhvWxSVDy zi&?k$>r ztDxcKBgyGzL0D8s*#!m~Rvt#CCx%jfWdg+&^`VpzeJLd=o|e^A(|hl~L#3W_dimv7 z=-zv~(34L-Nt-usrvCl=QhH`OZCtaFwtTvYVkQRC3$H&zE0?XJF{8(bYk?S(!WLo_ z1LQE3b+2B%L_S0+&QpqI2vI3iK`Byk9jF6hKM=yGCxtJF_K^F)HW0!PsnTZ{b&x0P z;<(rz)?DPt<=2)`^&oF;^#+Mg5SoAd(U*22gHEHYFECQ)E^coZ`u*;;}z@3j=X zm_EWscmKKRP7FW~|Kz}o4n+y@&Zf>}5vLHt6jz+wv@PYh;~qy5c!MjD*d zmtsbRlfi1Bl2PR}Y4Ri?D5bE3SVmn8j*5>?q_T-likaGzh8p{DSuRzSmx(9|a8DRr zSwSV`ZW=Rw3XLotOBuF!%6zmx<WW595aIO%F z5UAJ|*DBYgpoKVvutOThgQ%3k5-$icjXG#EX@$jpKx{9|v5qwIP#0eL-ZS z{jhIo$(6!bo(r}`eoju#K<%~(uo%yPz=gQRzOWC}$NoX&gGh7!=V@tab@e$nUU>OA z>-tT;hYT~5smRR7F7RFlTpiL<(;&jhgclz^PqZgq2H*;jn3zQU2lS<^oOJTI%J^l+ zOquCiHz${}Gtwxbcp$~k4kiEiYqy?s>S4`p*X#$zB{E^%-NS@s7b5t1Cfp1pZ0l8Xo$5L^&@5PtaF-mP1A8c|Ws!plw0l2R6HxiriiPKmR_ zC}mb3iY^PLysQinN7&`|T4VK=T6Gt<5=e z=Frz)e@)@x;q={i-_eUNz9@vuZ@>LUx8Hud&ux6L!R`<&qQ*dMK}=y(f7h;E`S>n+ z{PD-BqO6QUq5~;rUMTf5gi>y%f#PE0C@d_DX3m^RYuBw6@qi)lV7eTC#L8 z&3)uydVJnODl2!>L-QV{7pq>P>?tgWZ6TDBkwoe7xs)<2g?fjDP&NzF;U%LeE+?7> zKi-XU3Sud0Km?5*J4OsR#N->RR;{8}UU@})>VN(9*M(a{v8R|OjhRYg$Bm=mqbq0; zAAjDgM``IxOK8={iz#hP6wRGGhbD}lAOt1+ltE1Ff!XP1%$On4IDaWpA#5Rb;Z6Xn zGc4ZH>W#XvM&q7JAqb&~a!ek9eIt!B>;vK!fU1MG0MwLu8)E^UWc!Vy|_lcI~Q=D&gF>Luas_bJ%2a%Vt( zRU55H!8htHf?@4lx^$@!y@(BrDU<<-wzJMU%jY(dm|5+!&ps1=uKV}z7sBF=H{PJ1 zfBu=Sz4lt4+xTFEL@NZX>dd&i+Z;ZeC3=!EGnL|)3YdZ#!$)} zkw`9^lk$!EG;i)h^w5KIM0AU_YuD29<;&^A4?h%wb^iSMv|{B-AtE1nS}uHt+&Jr0@Cn9 z#b822)xdc!;(cSH5*+8Lrxwyvk3CDJv)okpcq*-4vyzrATTauaO%vz(?6c2`neHIi z=gpf(H8nNj+97_W2!_aog&2eIuwT@{y+jy0oDbI5uU}8=)~yq1Sp1)V{(132fOm&NR!z$URr%>7 zL(mwbwAJ}j`VgGrFBy6kiY>}A1int&WV3L*&nRd{Q-X!ZpPr7ktrTVcu5{G@|H<2+ zMGkruPGx8PhuQvAk;3kNF2%D4eUuJ1tB>TR+w@+S`hg%INbnWPcGrbm!5bZ2^|H!Z z;Zh*?pp8@H9osY}N?Q);=4F=RuN$@w23k_cN)wQWbkOT+jKLq`52O4|-VK{Ji|x!v`FR zCtV9ATPe1N&*af^-lA6X%Yl9z*}Y!E*}4RF;2J$LI$)onwQ2sh-*e7CEZCfULBhK? zoyNVv!Yj+==ETExtj4XxyA-<10l=L`wQbTrcW+W+sjE@>#tBByvIqh}VJJ;QGng*^ z-(*7)fabaGYJW_Qq@gN!6-_O3$AN5QiV0DgrnNNjPW$-X+Jid|a#x5ft3nciTwtk1 z_NGJw;y!*+%mSrSZZ4uY97DiNK=TNT%U{u#M!(ulifUvw8uzY}HiS7)JW!VPLM@_` zx%3e~YiWqc0fjqgb8FK2kMF2WUOVd-??dIclZQs{FRP_(bkB6V!od4aV!;Yh!)!Nt(GJJ$!U#1 zI}@~X|5mN6xM82=K%oKQ@U2P`!y=$zEz?nX$z+(hr=1$D__|i4enUkU`!^BQV1V0- z2V4)SdWZgmx{I=wdOWu%OD}n^r*dqod~4rzWAmp0b3B!$5S_BE0>1>VGMfx&B#Ok1 zQSjf8oo4o7031uV9cER=lZH)mRQ2qNCt^rG*QPZHE!pEja^h^I1GKmJjF!W7Uw?UO zFapQ!Hho)g6kFkF)^}e#Y72GlQg1F@I zs`drUPjbM|5sYWNm84RfJisD0`mpDJaswUA3_9{gd$r&q7LR+-AQ1}=Jc7s`)wvCR zv$rhlY!HIfz3r7;L;1{ZtW;fGKeZgaNV37aVwUfP_MYc?Bt)S? z&Ucpt4D$B@ycMCUeWEIoG~82g^FacNubSC!Q!4_Aj$Ge~Aq@{nj@9LB|0a?R0i7px z5>yFN`{khAAg$}H{ZQWb+B~Ac+GwX{ayZj@%ydp@-SzV>3-4e4S-tlm>20aTqt{dN zLET@9Oh(C+*nw&KOJCya&Nl01=TGqCmlz2O zN-j0`D!;%O3T86eI0+RMJG2qC;ksFhYCIK_dx;zFF!d3aLI_~Rb6wz2 zj9YGaG-O~@?wlQN@pGOeAg_(pTFcuIBMVclYPU@yp%_0N$gXCpv2e-Y9_2)`#{WQY z_NgaM z)F$-4y&R{>jH`@;h_Ey!3!enPEJu7;*x(+_$Tlh)?t|yIgrxObcG#^mUXwH=|A<_K z0K`GbL7vyb;a zYeY)I5Jq~>A*V$7k8HV`O{Cy}AQLU33#6P(@Shy; z3Z8iW(5FNPm_!M5KfUp*lSIm0$AU#rhyYjUxK7|I6Ny6d4ei3Dr;vWR9@pq6Eu1{ zR&Su*umOoka!Nqh$7xF zKPeoLp=9wa)M`3hxSQ*`BSV0RapsF`n& zG2B#?Y!O_{$VDVv>Y%G~#BFFH4BZ^It2|ftIZgpce0>GlhgWQw20no|;bwjey0#PX za4BBjo5r1#qdV>(9Q|c}9>E_22Dv?=v<*+9=hBJ4PReFKoeb321HHNXA?0(mqX3Na zE@YlIW*ZPhx=rGr_>ftH0chD2)OxyTq)=B^xM;a3(vzpxY(^N1Db!HtmMz4a6lvXS z2~Kp&lsMDd&_u)l?q3U;c@zE^xX4=BT8=eF0SjbQq7!~r3ew1&+I23P0`;|ju&^j#6#ctG(0mH)_# z)~LZ*q;+w6BqCW+zqws%Vwz(@S%V-ud;P2716i2N1fT{TvNzh7)(|#j|Ej7`%j`{_ z{(JxRhPYoGl=h2m6|Y{U03~d}5?`B~LMZ(&0mlq(HE{x(8d9-%)4aZubN{ecznu$? zJI0s&u@epF6$@v7(I-dyeQDf$KRTkLiS3c+FSfbpM!vJmC7oS6@W4BgyF_xZcH6M% zfP#LwL$>Jt#Iis6j}BK%Z|s}>tuMXSCDz)rovxWsmI!t+Ndgbo6%#sD0!LDKXD}b9 zQtVk6*IDO43E=G0xD%y9P;#_XbAV;=NK6 zfOi%oP$H5hmL@hOs5wC-2g%{}Df_dlsH5BLlZ(7Iud#JM_-+5>JU#ma;lM81yD;}^ z-$stiuPflEtUv^(E?NJsJytf)L^`DwyOw?)AJ`q#smUEGATH*043+ns$?ZK1o1#-l zc5;37x=s2%=u^`4r>5wT{2n9PMYSayeKoJ2N9fXs()ynM+9Xl*WU?~T#q&@1g4LOo z?8t{`N_EvscvDO(aq)!KUCCX|onzboK7E78W3-k#KdUcu1q8ZKsg;bNKrMk<9{#o2 z@q5R!9|^A*Zm23t92h`VQ02dNq6vIh3f@fl5ubJwWIUDSX9cUd@h9%cXxFnDN+Lne zP(ud2yO6Cp#{mY`GR9KS3F7%ijfcz1_qAO`ZkK6CLV8~)G)W*bxCyK<@d(3OX+WI! zB;KUK)r;MY;4zuUT;}yBVF7zFMp8GLQt_#r&Cu|6iELS)MM$yV#!S61#wUH1a^Xla zk%F^$ttGfEedsPbmMhy}ygC+pfS}i9O2c=>Q(|KM;cz$`Pq9I=K$1CeON&;t_1W)} zU(n#!_nMH1Vh{->oFNmv+4IiOSweIe2kuiGNcu@o38i?c6nCwfLz-s7LR|8LW907W&0*co zp#54}$!;@;9qxX@Ud@y6_@GczWhee3%$C*NWxV$l-!kJePM)E$vYLNUSGRxd2%P7C zFJw=f8;qo?X5S{)<{94f@`^B3toEoe4}(K+rYq;}H?xvZw;Ep>g+~;ST@_0sM8m80 zvTb6-^D|CX>v`H$J7d&;nl5cnX~j!1(FVVs?_kTL{(rjtmpTWst4;_|2?7X5MlV=A`hBAjukX$ssa>Sxax zBrQM!E+pAj$NL$#tIGxBoTZSa1auB$e;tlQ`~ccMeu%R2krd#jn@{!1#Hxtp8r!L0 z-AqehkLleCEJOt~ld~kCBL2n-f~GrWdaq-zqa2G7gmcNo1{*6Q|Lu2T7#B~V_jT4I zekAh>_f3)MXvI=*o7{{^t7ej)f9y?=#*dItZLY7~e4rD)bKP_FgLgHy z@9oy#2x4B=MUdmnIAQq3M}}sjSD)23A^Nq%EQc(5K%BJIvJg8ptrPZ**60 z)@OqguANwzyK@W~jj(jHA>qD~C_fn2neEfRU4W=7VovLnpSuZ$iR1#dE|&(>R?Np5VjwSbOTq89Mf^o^tWT{u zl}-JU#xXP1O)G}<5WBWf#W_h0`jxWdrLdY*($*Ln(o}P9ITnHw@oRqP4WWG*zV}?9 z$N$X{$$J>hl3IdQFIa+SzrLoCEC3z_Cn+zb$`in)PElvNgrk4G^Q(xO0=+Ksf-?v z#Hz^VQtIhiJkn9n)q|yg`u$Wov3-8=yC)|cJ2U{JzU2rxX@j!EA%nWrg26kBFFrL` zg{`dE{47h?0DkTKjc#fMbO5^ZQWr~-cv-Shh!1NXONIPIM+id(e`~azFJu)_262|E{(VH^#XoyHHA_eOFjd zxuGL6;hRL?Hlq?J?Uq9128>G`7iYo8X>jtfP{*?0tYnb2f80pA&EQAG!MiKw@)Pxp z#?gAYVJsxG=hFoGSSEDewLs;7lpk&5_xIV`w%dWcg(euKHrNvW$?AiH59k*R5CMU2 zvrChCo^S|goY#-Jr+4*`iyM$zU{eX5)Nc_7BS<7Fe5bkp-)^BEYuDc1-ZgRk zCvy(6t#SKx2ci;HN-N7AOIf1oH}BDpb_Y+;(k&#L9Ri+tLT$_Tnt9J* z#O3`(7NC=g>%d2R#Oa#?BG!XgPVA?&v<*<=0x6?UTq+jIZn530QwnN+%j#CXoHgzW z(CG0y=&S|k&}V09p^^7e94=UNI3P?b79!B{QhFFy0)`q%?xNSMiz#CFvbCu&E7mi5 zDphiG(`I6bVd~I&>RAI~+~x3RcfaS+t0^RyiyZ$aE@sKi!y|Lh6Tdb0$nco{1wlW| zVll7_s~8E!ja-L`q6U}iaxGu7Ms-RM>`0a(P#IFemT=iWi5QWQ41-!$9g(0}gct(; zWKfoVrdgr1)v6UckD_>(rWkt}Xm4LI(4#OIlBwN7?LQ*1eDUnfpE^W?`P{Bw3eT5k zL`v@Fv-X}KGAa4l{h+AF4~Vk&u1YYI%jduF_^)|2!Q`9!GSI?})Bk7vkD1;$3`7I& zyKQ^5OiJqxYrLYCyQ4YVu_#X4An}6-VLuBW_A&kEtXhlsw>8%No92O3ggt51`7Azj z#uJi9@dHsY*&I&%Iqq6x>(xCyXqDkxS|tnhnw|?6y-|OS&g3+u4oqyc(7?RcW`@2r z`{h?4=S((IB=0~iffk`&$Yd`YP>@3*d1+sOdH}EdQjuL)v4rox8^26a;^TF{ZNBZ$ z#^D61gz7?07m`qweZnXDe34ehTu52=v8H6!fjf!XE{p-wMj}&KEz!wtkw9;@pv{RH zwVt_UTiOwC{dlq-k^7zv(|kJ&5}yFy09^yw-P}fA41Fv>q$s)evI~!qXhLm*A4(7u zf5}^PB4bjhj9S&)Cm$)ii2-&T0n@@infO+PXF7(i>xLm0SQVTXl?$RS*?>zqkOE4H zA4`2{9AEAu{qM^Q$~rqqE`_!ZM5J(bVVh!;WBn)dJ;2Zs_`gwPHw`VYd%R_Mc07tGv*sz@QOa|NJpVNv zlQ16CA3D{>-g>L)W`nn|4r9E-W|Q&FTi|JrAt&cc1?O(pRS`o&LpC^X zot(VaR+B&WnKQVo%W&p^(%jk&WH&*C%ytU%MH>I=xYV$#Qd~H}nBV*N`EGmXgc*B% zL*)LT@ZlAIqCKJJOb`9O6{>KsGI)5XcJQ)cOcxF<_42c#XKzj!I5v# zX7=}39Tgir$mgzdYuXA+s#_?4%HtE@RGe>hu zQ%+ND%op561&aZqMx=&@M@k3_%xs!vO!;;Dl>?3hH*h1yZwX+1so&6#s~um2)$l&g zgXV=24e$m1?Oy*~WUBACsK=L!UMB~m$mrjrQ^%%~=amrf+l?n+%MnFp%W114=ZrV2 zhHrkt^q)gOvJtW&+vYLz|Lo4>vsc{t-RupGbZFk)h`nBoO}+#ZNL=jx{{92K+|)2R z>7GLy#}E07kR=gS(F|mNFz%2dUbLInFtYSFe7VMUNOsxcOH2{AKaQ?=YA=+h^ub}J z;Rg5jr`J(FLq!^?NcUje+-=bY&+%caMKK(I{P_g-Hmfd{%2+M!^c^7P!RIRGzukT} zV^-LzDgS*aZS<@;2KY8Q=kw($*UBiT;XT^wl0A8$aqP><%IMqSDYwxtoMrd0&$5Tf z=D>5Ju7wByge{?|*MjygzoDIk4s{Q0np~C9I7aX@oWskuS~f;PSS@K)IwVyny`#8K zW2@x!wzF%EYn{w{nqp@dX)L%GJG|@P*E|mrV%4d0gBRS)T-;&8FBgUs$Ul%$?~$ee z;L(f=0V;zd-3t9hw`-Tq;hFEu3EaT}8l%_h*KYQql{_cih#2 z_4IQ`btpU0DMiN%7m*(UYW)muYKwIXjp#>tkH=8o@^Y5Aitr@bV5 zm~F;@aEjmQD)ifMFYg9r=G1jhZ(+9k|d!c+yXS5G7_uyMvy zuhpIb6_U(zliX-Dwi_l19&Y9Tgg$=7`(ISp!jCotDaE(Hw>e}JV9|f}lF-0~*X>VC zgyIAX-Pdlqx$U@>>8F+JV6yendGy_SeKy$qxf$~2&64ZGEnFjf#UAIFOVLH2=IhKq zeVSvL|5f+4=%Cf2M9J1NJ=d&s5&e!amm-czu+}rs9wQp;N4B!M1}~xe3>Q}^+|_?q zH!W7W$kLdn$63l&`(QX!GY97)GBAc>QIGdDIF%WaBvv#uw|V_M-BD;zPM}|vFf=uA zF5&1WyXj!7!C&Q^i6TLrqCfr*1B#N7P=C6cq(8vxhQC~KI2i$tiy{uO%?`@m8Fj^wN`k2`*5TXd}t8nwr+Gd zuz&95KZOk2Ia~AUibEZ)a{K=8@eS$L(>TzfHPKkyu&jI#Ze>e=%x&K=icKrbLzEGE zyBjhB#1=(^td)Cl{aJ#1acyX!R6glZ9%(^PMA9Zyxuu+NW8tqkqA{b_doiNkGmzUi z`{{F|b$Kd_ji02hLrJLCJa4p3m0dK(2y;@eWj4l}hS$NcbnSX&Ypy=d%QM-z%&U-> zc21O6l5=}*jPL$mGjfF3rQLQ~a-O_3TN$$p>F>-h&d>*s50ug9RV+R!#0gawUhN`8JSQ3&3G4G|6aq5i;L(@ouLEb$_0 zf=P09bu{B#fNlmPM>qT0waqsT``s2P2k|)^K;)-vDLOziAj9Gmk|wyJBePThSRe&@ zzaG&sBRXjHRIpEesu1(qiLdvX%#}Rsu(=f8;j60sCzP#EdQ5y0&Hnk$#;HuuSE_`? zM%E-ei2RPm9fLrRj}uE(B13(Ns;e5LNj5p++l3K=0EQL&fkb92eb9^#sO4aq9j$rq?`hq5t6q)UY z?7PiAL%}yJ<_bxo{0-ckxAs3E+1Tp_j!mznZO#WPb4|W%6k%>nNXB&TBT7C3RNoXN zhutxzc0~#NPXMN+ZU48e+~rF`PFAWN10qsrJvyD$Gt<=63|mT5N?2jC*8M-CzA`GR z?+cq|2w`ZY2c(BaI){|*mTm+I>5?885R{Q_B$RHDh5?2WY3T-)ZX{pu_x|7a!&&Qo zxoh3C?>>9)bN2H*2T(4nR-*+|RKq}@7N0o1W)YXhf`$6Cc;($CwP*%g5|D}Fv4MEA zJuF`iD^cvBGIWQN!l9lS$w_@KYDxDscfsKChsnwddgaU?DQhmbtQ?ZC z@uXU|gx<0qBe~gG5o`okvM?dk6lw?t0YSl*PomC@54b>_?LQTaqa&B!gwDKqs^b1i z5W6ry&|6h(zCe_}tcq=qmxNj=5iKZ}v9Ypd z9{${Noe9nuy02UwnkOkTovtAxpo^B^Awa{`mjdP$1WtWXlf#k@v~1G8S-!uedlhnf zc6zk~6_kI}`MFx?!%p}Lpf%FB3rBLKt&py9h)TqnDo}lT&su1u_~j5Y$^ml81C@hv zL!~Pj*Wg9vCY60jYODhssS84l#ai0m6X+#3&aCN$s|%$zZ5_Qv=h751j4n& zc}ay_fxQWMh43`XNg<(#C^?0R2zQb%O;vH@eF~a`a7lPlvWy70yOyt(O@iZ7WJUZi z*sSoNlC-)?Sr*7ZxE&dQO=sGqpk#?Z20MvPl%tj7LohN|NWYC@C=RCSG8lR3hk~f@t7SSE|NZJy!1PQ3l~Tg;wLb);Gi$AEbpup zX3hU#d(SpH##Z)2pUb|>rAqT=LI(aVm%>)vUPjy#rEmn7+4`j@*_;HNnvMgDjhxJ? zsD+`OIZ4=__wdQ~aQ8F)O^BJl8)u;Fv&|T|NF^Op3c*Q30u1vF5!Qgwz;BPlVnpq- zr4Rn3>;2ecWc4leO*OiX-h*lIeIjder)Od78p32|`XInZMoOx#x$E(l<$%paF(m$% z^!zKAEaP)tncQYO%Z}K}5`(U{fX#; zyC~;(i{k@5@n*s$ErZxfwu5YZ$j2@RNFFwis@41fS`pPkOoUVlFQ2`HXMR%PBL8}* z5|tYXj4DA8BX~E7C2NJHCX>7@e`DIxWQt9@V7kF9KrZf@l;#Fu(Y+U$lJL7gK<}qo zO${mqwlB|Y2D`nz2a$uh8b^rBqICnR zWg#c4)rS$=1_r`rmrb~{O5q0EDjaori=f@^3OxCVMg9i39T$WHa&1T)a3Y=% zrXUmfEB`#<eL=xi?5O|4#(BnPPiZN4h+=vAfv6EXa< z07F2$ztu~N1Jj6TZ(T~Zz>f{LIFmQ@xj)IdzbUwLXNp7E{`|3%->bt zjR-A62ZT=Nr@9K*!w50S)h2j|uuKUp#xOvEAn#(;GzJVx#Ai|?X!5&5TVP%l{r1*| zCd7)k@UtzTTHn}MT>>4#`a&c|RfHM$2~Kf<|M_Q#25&r#WLT73pZ0IJ$|1RX-bF{Z zLFvJm(dV-Iw4Xk`7pJcQRTV~3M9?cp0`OSNI)Sao6kC4~z6@KhlU8W>ILz?%DE?<( z6H&5_jDhbALK0Gujfmm8r zU?wDj`Xp8zsP74S_hFhrmekmYzV^^NMHp!@Qn*oV2{$5DWWr>0@I3;MFEpEWD4B9# z4Rl?_I}>+jMK%G?fQV*qWp8<{n^rgF8p6Vb8`B!2EGvKeOHAu9lGp1IpE6GHv3ivD z8fabWl!)*9HV@5&~-3n&9T6Yw2OOn-Y|3EaUCRUEjC7wvTTBv@SZzIZ<$~dToYXIaxq{tdK41Rc+rXi;pR}v5uq_O4`iAtiQI}Oy zpT>|R?L(!452FINTn+HKww>wEHNMFKC}Q%4ocN#|XOq;yhB<`l@pDC7k4NIHDPX$_ANey~` z)(q`Zz|1s=FxmyqsX>jKPmT2po657IcP6$6)>qQ2BIKWLj}}zYtSiHhe*$0l@%1{1b-WK2|R2f@A9weY)gnAk<6xaWr7s8_FLNN z@#duLSUUdlXtr=>ZHVJ@TMDM67o$o9{BLwN@*(8EF}bMH@XBp`{35Hwxv3N8y~b#K z7Tm?-TAX+po-$lKVdh$UVMC2k%s0cQ^@jJvu%l1_`w>8uo4Z2wNbT#UENcYN#iq)w zwp}b;D=sC1WFvsCGZl+c$2%)HjA35FpL!jbVQsI*8Sp_^t2n$^R=Jt#RTWAa8s<4E zDHohD#PaGgOcWSR!mJ9M-k5~r#}2|i!yUs*mREvFNoW|mt3D+s-}Vs46{^bCK`pHxBj9RqB7Vm=U%hu5( zj`huG67TzL=l)bHwEYJ!w7NmtnJzDATn;w*Y*1;YM)B(Hhf$a3ygc}qf46gb%dFip zP}(oo@T%!HWHSHG>GzXpVa)Um2ra%PK}@|gGBRqkx3T$Ly}}U>h5CZU#IAEKwTyD@ zdMcmhbpriB{M=c@MTEJACgy`fNRUo&JMaTDd4jeDL`j(!AM_*?ry6jCmt&!cYbyiO z8!oeBA7)`JRx|QeP6f(;`Q)x^QT4IcmWdxx*dhl|V{?-Mm{FT^``S{fP@CY|um#G% zR~Kv~GNYH2AA+z43eBH)+7<;|6-4lPiw>pm3JBhlUvvsCEpLnA<1gXUjbe))&I#o- zq6^iD881>}5*=z&KMXrC=f8}%T~oQyQB|Fggc~6v>{>p}raHKzE1;mDfJaeK=pTl> zngRzv8YQynI|@qK!+1A{hO%B^%fK%8cp@{(tM@#-@BdRZ>DaTpCR7OZ6n201e<44y0+VQ0pZ+u7F+}dHO{jP_7^N;Osz-M=3%6 z-T`sdcc{{uzjvmY8Iw;aX(QPXjiNyLmOLd<#0$9i)*c&|;Fm&q%SB!pxV>mW%Ur$wNkk{j z@LS$~9+gx(JE;ecRkekXTI(;{r;hTyvB~avty(8cROWX27%3rm2!h7ttF|7o9~D+1 zU3;!YL-&MRcR@V|MKry4sqJ?q1&Zfup5dx5hPq8N*pM}WJ{m*3@f@ZP*=Tw3A%+@5 z%_Mldj`Og3x<;ocmI6=IK<|QF*26iCG0=bi{(Wy>KbK5yxC_rpm!FO`9rWXgiXuNN z7;XiVhY*l|0YBZ7-|z@P_AzMVs#adxXIf)?Q?<}=*N-a zdNVWUAGzBv86G*x5OAeoH6+3$e3Jq+v)_L0`pEKuQFIYA>*$XjTU}&-Nn-v`&65L( zjv7ZX@fi%_$*k#<*9o0fqD@h}?CBooh|D96G3>tjsKpzP4M>31$}I+N?|T)kHc0iw~o=vBZ}*b zgZ`9Us#M#2t%N8452pJAt&72TDww=${#Ee({HDWB=2lEoCzJ@^0Dw;&j*K{j2X`s;#Kr~|j6wR)$PsD3;R1P5h5Cq(wVg~DoCrPy zD+X7xHqt7fiBoBeqnB^I1l#g!aow+cQ(CH{PezBqgWE}n*FC>!!TuTDB}!Y)^f_j<{Ex)b*Xg|5 zpjeu@q&c%7>{pAPaq*=Fd=xyZCt_JKI3w@>-TV4Kd*=J##y4f0KRJ+ggI(6Hy|IdF z-cy&lIjVm4g+Qa ztEzCt7Pvg%q)BZ*Ut%5}aI!zo=w)6*rBZFS;ZJ9k8d0bw@z+t_L}BM6^~mbrY|34r z8`s`Yc8^P;F0*Fqt!T%0Y<_ZFmGkc1yC51dZ$xJuR%q|>>_hP^xgK8Z{f(>Iei@u@ zQXBi)-SX{nt_>ysw?xq>g2K$~ALriq7=PGGL3r&AhZ=0xnJMBK5yDf}ts#CCfyBeX zIck0a;LU`?pLc%_IvrDF08<{$zv&oTPmoeCH?BW!&U!FjAW%+Gaaqvs&!h;U)XgEM z@pOlqbtP5hOG=u*ep}Y)Z0C1NaPeT)UX4B3FG<&0u>m}`8%3J>c9dyx3N;izSx2K{ zz|>Y2X-gdj#9a89Lgw>9ZA8@6yYJ)TZrFr`Eqj?)Xr{(_)e+MD z^`DE1q8z5)3&O=BAW8q7@8|sd?YewFdVJn3VU^KCcQltE5;mf@rFrd7-t|!2IWS^U zmd>0DaMwruoY6{brp(KtB#GW62$k_DP>3fE?sA@~Ae&wcZ{|k=9oGBe3oe#Javll@ zF2q5RS_WdJ>0jp@?p`9}CHgS&2qle+%)Ph5GvBDW*ukt8)p*_C@JhMYF!+g>N4gk3 z^ybC)@_;*laaBuJF*5ePSiV6`4fE@?i{HFjqDF5?TA?zh5De>>oi6_2A-dIoGCiqu z2X}@`$*mz(L;nsbfDfO0^`VZI@W1$w>!!K;_HX^-@ALa-5Z}_CH%Gxb_QT{}szerF z_NiW*)Qce6lj(yWyU*{cog(!YQiZ`p_+#IEkF4gtd6lLPQb;~RN+fq0To)g*{mRLx zRPjSBfw$irtE|$3f?|F47uc+xT+cm54OfgR-@SG3mJ0~R!<>|burGf>o-zz_jNBUEX>!v%Hmm}sD|C#-fl-nM(#yonjBQ(cQXv{9b<0)J>_(T)Ugu9 zH5ScDIURDxU$r_h+wuQzMw%?`wRIx)8Krw3lv5uXT5i1q4JNm^%73LYcAoa>g>L<6 z3}_M5;+`M8MeQq0wXLhxe5hAIbpaQye-@hgA2z(^Wj#}?qf+;u;c(KNd3wZL-Y@5t zaLt$%1vHom9<2SgY9I1T8B}&MAwf@^l$7N7>qlNtotlPW*{hawf%bNTRbr5QRjY!j z6u3LnY-IEdbBM|xh;+v0wEtb49{=OjA`vhq*HjNA;Vu> zHa#nINBg%jBJILEZ@%uDHRw&wH^+p5ho;YvCS?g2ZcUFm(ZD3@1-G6jVNk~1Qgsro z2kT+st(p!~V;^B3;dL|MTV|%E{Z;Yz_ct$hs)Ymw2C|#43ySclbBFnfD3^K*{K%Jc z<6!0@r$ECyj8tv4beTSOni$mmzkm71F3_eTZEXIC;LN*q$g1gTj5fQs*hxM*TsC&a z#I-q6&~Hd1wKbJ z5FxL9N=w!$lwNsl&=wHE9M=UraXUZR6xoxaX#(f~zudECSyWexdPCUrE(@ zG~rk@&bM@PqTO`@JKbX5d8J0KdK!PSi~sTC$H}nW2@BM#tPTHkBKF}E-~d6s6rLO# zvoL(RODX21c0t~e$DYT3may3MXmG4w+-%grD@gugOJ~q2N7ZJ3unVCJFa<~mh3pg7*nADt>K7*Gbd)QHTx}LX67F0w9nyxSv`eF&NP>| z17~rgA1`ktC4CQ=r{251H(YR)injsno@SKW()j?8m9cxauj(nnx5Gw;gf50lo3%JZ zpA!5g2o>&}nwo;_1|JWw)VVH-%ET1dU}E+2lf5T41YpNgzW8J3qL=4rVJYaWawu-M zN9PfANmbka<`~!OKUZYzyT~RG+I@Q+qFAtBv{%tk+Hq7TWx^r454128m8^3^Kl5%6 zH`>bHSvLx(@{}kGb${e>rE(I8ugCERPCG*OZM&5|`@V%D^>Qoudiy}xJ3eXAkXpCs zrkohqWt89Z0zWc>$2+rGSp{&FaOV2uWH63Cc^wHNz-*Y`uSTr4U12>Ob{sw3`Kl^js zq>yMiu-BFRiLOUJKgDGv+d}6|x?Jh;2CGgSmawC~SQ0D)P&jD)emW&76<3kqpQVk( z(N0nb2x`FhJyhntf9*qyn9A!J9!#=M#gYkV&uZ3W#A-ujQ%y6VBd}(t{zskB)cgUo zC}GFr3^Y+~AaeNXUmk5w((TR8%1YhgFuf1lc2tQh`VS4RhI@P}>=ixKaeA@3m$K(} zyozTP~qf`qw&bS8`!_82H6O%w_kqUI+$d3bTX!6G(0zJIBIpS1XFn z3#|F67!>PIjKjBg1*m7AJ543ne%9=2b6%SR1oSp9YAUlR9KPPM zjJ!Ar!_yzZYbc9@#+gDvAaA>sORO%EP1x<-#-emCiV$5&^U3-0HCn%yMKdL5 zeyk05`ew%uAXu5&f8n5>YdIie9wz(Rc`lFO&v{LU1ow{`h89mmSZ$pZ>VmnrfyD5T z>qN~vJ5U%Ag(2>%2pT_V+Hk}?da`F~2ahccf?WT930b#lXtsKatMQ&fca~_3QF6}i zq(hrSw1UXSkg_}M7X@egp%18UbFVJnzrfjSiV2J*8SW*5Gz~&J-iIHXcL*Zu|8Cty zH9ma7dv-Kcy~=2c5NU7}-B`_CWM?bWU7%XWX-#>)wC9i*!v3*tE z*Q5rcg78Qk2sDT@$9d}geiWHoW0{cuQ*v`U2eSr(i-tyP#^sE34aDD!uR<5>hAON3 zoQQ5$_k@UEd#4NmlT#kfb~fZUD@C`i^wA9%p%k_j7)qqt%tVe~W_Tu{R#&b5{Qo%OS> z*P}2Q3DJ^z%;7g{^&CjU`u3nJ;|LxMbzh>mzl{$r2Nn9Dg{}GC{|&D#I;+6Hqc>J+ zz1N;squmI~4tQNbc}0V4-R?SVXi;GU@Gj|KFEAzY)d;TYP#GBw@x`;`4cK1X)cm8& zZ-MQ#TyEaClKaC-dT_{r?OjgE(7Xgs)iE|XjvfphUxg*QN_xlOP9!ow@-zKTjX7wt zw-3Ma%yobfNOU{cksEAlnt;iPm+6BJ*2BK?Cx1s#g$#PuEjP(=PmH!{Kpu4R_h*3N zCF5IDjqUZI1UM0ETb3t^yV{-LOM(JDtOyl*j-xK%GDYA0^4_U&Cj-y+Rhvj*xu)Az{rv0v( znPd-nu|nl~pxwS?UbR%b!H8R3sYvsGc)IGirq{PkNtdDnL`n`~kkZ{CAqXPPXn_OL zJsJr~2|<)lLK;TbMl)i-=uk$(h!HYIjdpptvS7<@tGyRL z&)#Qc@EXft+CaQzZyIvDX}4lAiY0d)1z@Pi@lK7=!AmWpi`gKql=5!CNbjA5EF=2# z2MpG|96e-5pK)1v&v(%(cXw$1l`^Tu)}Lnwp190+*!mV#xD@ADPu-cpbx%lr)0#!~ z#+ZR9gN@=dIdWrdrt-XdL|q1n8u_$wv9TKtHS{KQ)=|3ffk{jM9s0j@KhVKst`(z^du1730h`QLH~aJXq8tadd4p1Ts& zPqhr}6w+hbma54G`RYK%^w^=`I=;*UipI*H2zy(9`2&jG?{m7yQ|5eL2 zxlX6l(5&Iz)j7vTq~gK{6Pz)cRsro))mH92y1RNFjg=qf12XxNngQQ&?_`y| zRlYoGsp@PcaXWQoqVfVHlGeDEe2K&Twg0Im&|YA2^=qNRW-B6kRkFU~(&VPQd(|)c z5m4L{H{;Z|iQ**!fI^hnc^pH;32?~6V-E6x^43U8@AiK9NH|IX z1W1=&Wnv~#h~b9UFJ2Wvw%om8dAxK*gQZ`u z9R4F*5#84L>L;sklgn7dmOB}KM@FXOuA{y|c1C$euOq&-A&k8Qxsp4BVR#Lam}9py zX-w`b0ej!NpBaTG$Xn%$xw+@ld#b8x0I`eHwXhg^%At@)a@Ki}>OJ0_CQne`kK$_C#Jsvh8_?@%`O&n4E1IB7_QUQ! zmrqaC>UIlB+`Kywo4#k-sOv3ub?^|-dJu?kGilA>qyOAde`lW~h%Zm;G%7OOvf0Ht zw#26DnshcE6`s6j!wE5iyviy+SM7PWaLf4Ea~|FuQH{j>+_LsRAqvJ3D@uwQdA0>} z0h6?+pKBV|(RZm1`=~2We|Cl&NXY#AE!UU=$^Ei}NOo=#1+e|OFTfC4pHFNh^qLed zBp^@I$h(__I1G%I5Nq7cf}*ALW?x}HKDsXBFih!RbxN9jZVuHqB_OPlR*NMEXt;+f z06%(^-s_ebXg#Xqm#n79b2d&rUtqJfwn^cCz-s{Le9q_sytby>U4^Ik>28*1lA0J! zy>AgyoC+oOBUr~N>8?%GSVLslL45g6j`Kuda~pOr$w~bs-_IzY2@GLHI7_7PhLyBb zRv%^!yr^_}YeS&R$l4sU2BbRGZ`PzF`I1SyXK&e&t%{0cgY~h3`7HZ!)}td}o4BqF z#q;UeT8T@^f!b_U9SA#_nT^c)h{0AZ53UGyTi5zbTpS4#ju>3x<-Tp;&7_8YD5ZEDQ(826j*+PcfL_JEj{BDo%E8Cyhb;#+N^T@h)gnS7u6R|{zG~{;xIyh+P z!n2uM>($NF=iLW01{ltY?6bNU$8m;L6JraSH{%vA@yoQd2ag<~NMVHRL3++_dA~axrCGnGR#)3WrX@#lHB%+Bwm@LbA zpGgPscm(JQ&4((GJGAS5T`nJfc=n|7hk~vxHpiSlD5wQ(&DRFlTF-^`MFpYXHOqZW zhQ_PzZH+#vP8KcB+me4UtKXo;UYhUKdsKJER=q2K$wI#FWZJkXZ1yHGh#aom!mND0Nlc6a-**{R_d`EO1cC_IS;~Dn5u*M1;sF?UK&9@J5JieDIP?wm@8k zST5?T^QJm~A%o`dvwE3BssRyWtVuI_Q>4N9#uH{kFTi{#)pf@>uL>AKP9M@mp7v;R zNjP+3Mp2@M{jAqBeFd@5mySBB*0sFvYBTf#&>$IgUY$~((DvE=W3>f)B;oHLp;qZm zTuT3TMENT_gu$^Fc?=2wT`bOvDZ}Ng>5b1W`odvl_Tayx=4Lx-R@wFF@WzG5pUc-E z_<>_t2(^Hx>4^tn^E!!HM)kJ6WfN`4nW^u)?8Aplayp0GeX0Yxf&;jSbLrReG1A?R z-+$RJFQ4flDa~^YoER46e}EF`o5uI^(vAV7x&@Yl#!5D zy$t=Hhg_Y|KR>bP_K4XVZG?vKo-9$7AJS$n3A1k^y}MtUjy>yW{qx!SY`6L>F~z7O*O^b>RHcztHyItu!* z{PYL!tQo;!G?w>u#tMvZV5u|xJWHEGBBY}$-M()a_WqyX+Rt55dvz|o5Q5=|=-@jl zpKQYTt9`T92m-&`$OBW8nPhat=v|qn;JZyJFp0IIemFPK8x=I7!gRa05wpQYaLtvj z&Onr56#PIdn`iYd98Wq@J+6Q+nlQ4 zxVC>}qUt>5^q^s`J`&B#*^So?N z@o3nL%%ePLKP$ei%`3W(!uI8|y%ciI*Bi$h)CG>$(-``0C2F$_c^11+Xbp1V?p@P6 zUp|qmy`a`c6rU24!k%;9Pj1ki{;nc;IkRYg9STAbvZ=N}Jz6=Q0?=`BFBk?~w~RR{ zMi#GUfnalN+((kTFO&!-F-O2kEb9WQC9xV?Ocp@igVKhj;3*+uizzoH$P7j-Ar z)Z%>E-6y-8%v=@vjWsqkRUbFS$H6qsMjwz4jtR1QvcQe1*{JsvD-*e7_?sqz)2}f* z$=uRpjQJ|g_SZ)J6PHq>IZqkSID4v>cdIj?Ti>;|%ja{Rd}635ES%ytSYC1G>TGgs zNg1;AEWG1Z@C5NIR#Qe+J2%?26YSJdQ(kHmiME*Zf&}diu{F zu7q73;2MV5SW{4{q$ZO9*N>&Tn-BHm>01hGvM$6yd}g|i^gO5<(FyJ^$Cozu0u#r- zvg_FRi4iDMMtn+7Z+-t431c8L3sYdzXPHFNPXft2X_-B`QMu8c2B}+~^c5*}Uzc{b zs1-U7^TX_pbM12q@hwAIZ;`lJ+49_(8&MQ&y-{`&8jfl2zxfd8J0PjNLl9_4n4UZ2 zs^K`Ekm~dTqj22HC+X~Hj_QUzpF`QUr0s;i6W})oF}Qrq#tOe7J=XG zVjiYSrB+UPJRvvK*Wa0VdMwh+rDT3JL^5>hJ~wbPc0CB2%z0FNs~wY#ymUtKDvMGq z-Qh7>n%1ET?)cpD*nQ9kv8Vio6Aup889~~B+NGKX?j9@Zg5qY_b=M~;)#o&~rp4LD zjFEPapFHtl{+{HXlBq11-@^^3X*kb~cJ)wvum`QoODjhxihTQe-c9J~iK%vA8vTr2 zRrK`4{wf}-z`ss_+)%1LHN~pX;v43+)ASM)kEP7C!JfkxlKPJpvtvsR-L|VTy`5e_ zJi-y{CIasT4==8_(3_yjc-(btRy^HD`05pt(Hdk9(O6iLIx+a@R+px)R*~|brk-sy zC$l&niClgt0iSdCUl8f`T+L`$=ua}@Mtn@}I<^i<=WYh}(dT!LR<*0Yg)%8QzCf*R zp3>g1-0=Jyc>E-XT%W$euIVnxGki6zd;ZLBPq4lfq||tT5NScw^WNo5@p(t?=349Q z6LvW&h=Vj9kGNxS_qQ2l1~oN#;#(h(6vPA9zwy^jK9={DH7i}i*Tci*o$BerWLsyC zwX{Mr<;Iju0;V#pHPO|$9!10>-VvP7*lHg$FgT5po~Fu~&?w|5>k^)uTTWt<{{I6# zd3yX@hYu^3!C}-qHc4-^{0{BgQa>w)Su+`Ry>8p&rQy*7j!cIpV=x_bH9Cg+J5@Vk z+w{)!b18`~$LYROEZxtfiq5hUw@aQ>9OX%=--%HF!1;#?T%TU6&rYs8oh1PCUTlT5 zSj|fuPtEVGueO6YhDteAiN>w*Ju2%U4*EpjXp~BqnJF9^iutZ;2~9!Tt!?Gf^Wtx+bw_*<^0=4ktYZm^Gj(}e7)%kCb;y}Aj$N{o%A zZsVma`?At{Ah~PDU9_K%ALYE78V12ICcnza`QZ62ADR>^=7#r1HJ_yT1GL9k>r+!x zCo~F(l0B-~0(>I2d`8!uE~lhg&4!%1a#?baSE(votwp!jS2sJnV3^Qsx15T?sZZ1I zCOFrV>Nj1_$#>aPhbZvdDdqHL-5OFc2LBjV;-1xHo8pwkCFQcy_~q!V+CjSQygCp1 zSHfoO*5UQt%%~9I%Ct}Et@*7qBw9IrYSVmhNni?{+UnJKUm2*9y)z4le}|# zfKe=fsd1ulKhG7lzA269;{)4Osf*}y-_KsSvc#PHa2?;MpU^0BCF>#proZ~tz1Y(p zMT6`$gsyr2Tk1*8EA{3vIDJA1e!gm|df^@!_?^qZL_iC&k;GSHv99~IFFbwe4)Gj_ zxcv|8TJdC5@UsWxf{v|Zx3Pp()zGTfr0`VyhaLTi$9|JtVvjc_Zo#mmwRsJ`KBrX9qeno@Y;TN_GJBm$WR>Dew$QlSP*VkQz01ODH>M z7}lKQ^5#+HzpyT}J>QSw~q&vD4{*58VDI5l6cA9I*R7p>%T=G1`{7O2H78UNsiK@s`zP7tx# z59!X^XoFo`4?1$@bfT#aj~x>pi4@k#nn02t_}aY>57?kbW5!8}%@?13ryn?ZH|R)} zuGhOCyyo90?9144XKLZ4oLhyQiBIdOZ|4~{IWfh=9!{bq8Ug-Aujii4UCnFea4}OD z`ut(>bkmPcSv`dh1(cbgq94vgyVhk-?(7z(X^sk9%f(usO=bx^_|}p;zK-6s6h@Bt z4bm)vE{q-Y^rdol#ON!$FN-|?Df9Dt5M2*GmlU+K_(2y8TX+w%(CGb+(9v3DqF4*S zEwz`H&2G^?p5;m!V&0gb$X~f#;t(+E4&&*!XFmi^ScLjTt;2VU9R`_e$f z=jeb<{v+Xq^>&A07r(r59oG)J{=n?KQ`YWD{%qML)B+0tEjcM2cR?c)`gp?RM-A&- z+3fuOcRc^t&UJuOZk&?|U6cPzAD(3KYtP_Bzh^6TBbqwp8QOkW=rk(1T(O(EZh$5HQZ_bcWUNKW$4!6KKZ*F6zK=n#!jrk`nx|If)Jh_n44jHy;pr` zMrEhXRSr+zQ!bQh_*;}}NT?LwQI_oPt)=oD#(l}nL+9Oj0X9MY%baMSia^9rCTnd zn|T*4cOYZp)|*tETc2pR@2sN%?!5uu5z4Wx4?ihVmG*bj1y2YLZJ#gk^b)4>^w@n)XHh)6o~FKg!F2~)Z z1s3G2$8HrYqLB^?!=;h@KMCk()RKyBI{|isx%|-CePp-(vW3LA-7pnKFVy#*R{YkD zI_?wF-x2YVB+nfM@YsswUR`4jaAM|zSZiP>dw`7;?e3;nu zJI{XZgE+m*E4IXO)rQnRD@W5W=lQqJp2PB3%4+vQh&^qxDNl}p(v_9SdoRz^yb`jo z?y7cL9ap)Y9OUWZHhTZ&*RU#%IhJeiR^raWWvH)d^MP2Qb}YmUx*^>a3m|@vkO*D> zMcqIR%@2G}QGLja0%EVB2cInYCOHT?jdVh`EM)^v%3#M{{2gz{JN!hI6xs^zX2K&LG3jteh=b*><;;EL=;K!IoUuw?G`ru>m9sqH5nk954e)4e4F_YKaF zb|CPKXZP1!imZa|n`85T#}c(7SU2^{_=#tfY@#){77U+Jy!E#q&4$INkdB$YAy)}W zxwC?9bjyhUx@72Z8YV^XyMj?^AV5!nJ{ffP&Hay>-^M5S3%ex1zipXG3U?zb&q-h~Rw*o@g!7!n6unf@$h*DXtD!@SO!> zm40MeP?7zj*c~G-#dpjaH>$;}epdLVDQr2%1+5~>V*ggIp0>Cy&jwUu?}_7aDH=`D zjCu7Z(ZG&Q_Q%URCz~lacw2!d&s$CY9E<@|SiFwdF#%$R0BS;YsWu#By(EH)YR{8s z!DT+QSMvUaX8X9lzTf1J_j?InWtY?oA3xAt`fWPO)Kgh4ak_&PPxDJ8%?<7=W(rMn zDC}ubF6P}2#{0zq2GR#hee?;B4^0@QAwfUSji51Veo!23Y?mkTXzP0UFQCo?&|2D( zj@n=M-H~jMGu}K^8QEYYQvV>;&tr5DY{3?xr)DS5B3(nuRdHl*yTE5Nkk5_xN@mng zd<_0cc+xk&5h0`66jI+GhHRs(!nW9pWc0-)++FmKrx;qDHYBQ z`Ycg8h<7B+!yl6SdYlTldtig_jU@z_?$}oeC%zDP2xCmn#U3nPkwza?v0A@IGrPSA_bf!O^_m=4UnBOG;k(K|cclj0h_@|rXk!{C`w z6QYumViS%4U!gO2^>xqYq+0e>5gIFRlr9o0U!&3{fWi zd-mm!&q-Q};6EnZBV%w9+=l=@FWAD&dU+=~I4;cKqQ#Tutmf5-_8*R89!d zp}N|XZo5!Jm_zd3^3f>Mdh}_ZcD|&B3rp8cs5ocnE%3CvG9?*Nb0JqCE8@KCNRmr{ zpb&y!>iHq1`!3Q?;W#1mMv4MXErCfD5OQ6fH>x<6m~+os%VF1c0MqtM6q=dKyR8|h zq>Y2=S_b_EFllCWj^3x;?HYA}>wt#I)GO36$BxdsGW--NQ_Y1fzi8yWw>k-vBHaHVX+bPd@TJ(dtp(FVd2e`8{DY;wFOC>o+tcAY=aHdQ{`m@ko8*~iEb%ngnR zjLeT5`0$7?EoTXkFbq`-(a%b>U4(Aex-U^1vAz_#v27^nZsWIV-f? zuXjoe?AxkXgIJ666D;RSZLKEC1|GX?jn_GB7-!mh5!8om5=Qc`{w~pyIob;$CcTM1 zgju){(H(uO+VIPv7SS=!WRbZGPy??iDrM}pOP|1Gd9{y zfTW(hH$VUVSHzGcTgv+S4yGm^xBtw)1(R)YDzk}Z8|zds-&@}S*(Isp9RWT)ilt)8 zXliY~Sdu0yC5pdN8@S{0_$BGq#<~1G)<9m00=)I*sQ5LHl((6AXz9Rf+eWk3kif(h zC%x8U$+L2=r<*?{;8@)U2pul^7l#_4u`}7YzsMB_&@dYCVK3!-7KUEPkfS(v&U=w{__~=iZq?S zN4#ky+HS`Zy4(*_Hej^csU1Uw^2bN~?Fvj$Xo95MeIRPv#}T@VdkyAVKkgEPj~wU$ z5xS%CM8kENthG~r`C=Siolw~!@^-IL_WV`t)g#!1N71{8vC6u5(AYhl_@K811X9V4`o3vj~)-4_vkv`5?BdjGRvp5oEryM_Xjs4vi^U-bi&>7a83%yvk zxS5(MEy&Is-W#v;lZ0WntoeS=)EP_U?0derTho_tPK` z`GV|(<=s7sAD2F|niGE*e|{A>ry5Eet7x( z`4)`X*B2|@ZKXX*75vP?{A%$nQwVGxDS(f{cZEo*)u3ym`-?52ODAfp#$h$+>z0Es z#dau;hI)I_&FYMMZBy>LldQC$|7LfO1$46iHGG?x%<}j7S3MDuSHW=Sn0}hC7rjUs zHW$?^UHMQRP(L%u65HN0vM8+A`tm^7T4hl&_<&N1GUz|jVWbH;2*qy&|8Be*gQ$FN&(t~=x0Jgn zjgnluIX;hi0Q)xw<%gdx4um&=%;Xp+&MpoKY64>|tRJAp5IOApz~39T%yvr^xJH)4 z=#(>eEL@U5kJGNcHRJN=vgoC9w|R&XFqr#n_leVT+1#{yW)cgg{Q=yvb|jxL$*bcr zae%V_=~45y>pGj$wi&{;!obiwTrMxgrjBZxn(3P3S^R327x6|#GHHXH0*d%+>}D3w z74HuLmsw^mCdjjuUS1`H_TAei}P{zFkYaA&Zx@a$Ib~IVzi8<=FNNxjWKi=yBpB4tz_7tr9fV^ZQ(L zOHt9eSbEFSAM4ME23^R#p)mMxx*VAa?g`CF2OkRF>LGq*eAINQFn+KL)^MK({PpFh zkweq=s5Otr!Z@XSNP&TucOSH~_q_kPbq4Eup~4^7;67ppcDhtmOy(x-ou+W(tXBgW zjtQ=JEanf`l=2K7FoqH8aW^7_I%TiB37BHfyXe$<(>c~99!(!UNm?s(5QGgwUkWI`iOJgzK0MMeq70?meH2R@PER14wrD7j zflHc49V!(LM;J;(0{Zq2tVUJ%kGpW$s*JPMW=6R@Q!ocdR0FNLuWBU|L0^8$$;_-q zwYL^&lk@0(oL)JqB-?4>Zh|kaMkSur7YlquY+DXuWJCBCH+b3e23QD@hsV%7w1~Hr&7t7P|ER8&RO*bn>?Vr31^uZBc+582;=>fhO3|%2A z#1N~0O}Ruh&O3HJx<__oFW*z3KIy=Ifx|+xuJ$73rKCViANqPyUTNh78j-D|^ z89d{5C!9;!pVNJ<^rM_>u7S@ox5Z@(06##$znc@Kp4OLN9j0>C%I5+4rQEhG<|NVChCJ|xFTyW^()>>J)*s(vPJZ^cEKi{w;){vYsAa*rnw(>2%|Hhx@nDd`xpK zJGJ6c&Em6^WCr#p(tYsh+xvU@V0e$ad8@v#Uz8f7B548eO7@Z!PqDR*h0&!=+>3)5 z0iUfuAFMOZJVOsX>=-oH?z=3pzQGXkrJk65LTsO{0Hz-&28JX=3h5_7YmWBCZ)oNv z^&}sxtEENFxQdm_nFuFVG+K5@bU$5ueWnRxo7c*>qPvoK-bD3^`$S~TtfN1e)bcvF z!TT|{@lF_xEFo2f%j3>FM`Ev;D6Y)W8P-P#POudMEj*!zuSk>YNIE%cA*6L5dUEzV|$+3b5g7dcH=%a{_#O^83n;Hq=WfJ!!9ZeP{FJ$&l^sweZXFo-~&U zl?yT>MG?Jk!rp!R@KnH4%=F3PQ|n-Gx)bZIwVbt@h}i3m8^qu97Uo zax09A?t7AozY%Z_yT|A`{YojC*g0rjx@7fEOuFkfkAVBqhTDqb?aCHn(o^mO`Y=MP z5wlE&o^I{)bK<+z2NYa>u>QqWf9FF4c|@)|Aje+PsVmkBf_j{v#zfoa$a|XAEXJF*R|#fz>ieYry!bx>1~)h06`Dzul?$t zdJA4H36;62s(4VR8hY;a@g~4V{GPx@^~&<8InK8{owzxv6wp4Hw9Gj zOF&8&reCxIAWwkNPi{jqx-<{rXUA!D-{ONNo&6a=!DiSmWoF!c|8o!T(XwIF#HRA$ zo>ZffFkBhmYuFySk3!LUv@#*6;aSF!%pu6W-&40!e#5eRa zEM1r?gieDG?vBTbnywNBZlD8k&GWS9Rs6E77~~U&f3ne8?l=ZN*$!Syz-+^q)B`Qs zX(y--P8d-N`1w1i@k5*x92Eq{PH7U(Wm#u@x5IzjDc9m6e6~*y-6=!T(fzMM3sXOd zVUz;i5;Icjqr|1t)S(7N`*grp6~aIo!b1gXO&kh#Z5kVynXmJMgR?>LDMf#+oQ+{T z2BiwL9i{?r-;Hmv7?f1o+7Q2}5o6*H3cP^$neO?CvwaOc^c*cKasat4_Oz|Zbbz~_ zPec!Ss}(5F#UG_Joi@Qojq9O0e`B!`$}rB^SZHpASk*e?Jr)r*NxoPj znBF4y+MdaQq{2Ez5Rcl`nz_$`^#bObCTZOKOgCsbg90UyMe-Q25Sr<(T%F#kO&*-N zH%fl5!RdqqJ*oO3y`cc~Wz^{34JCL5e8w9l%JX_Rk3qS-WoX5Lj1Otw2f15B*+yC+ zGmH`&zg~$k8OFzy-oWx<4xdl)u%hg(`1QE2Tf+s@<}-7Uo57U<-v!Ca_UA6{#d>leD}h|KOx+DhpOD)B+M@rvyxjpFhv^T+`JwD=y84E=mXl= zh~m||OCTOK6pG6N%csddq{+t|aw}d9&;4pa;SFnD?lsL#41fctvr0sf3qq6gwxGk_ ztKf*mGL@FF4Kgb+JY82f^j8OizA)Z;+lfMo_((~;=M0cIh`5@#Iq45}7?t?}K_JF0 zU&q1Ia`b;Hh>+K7A9{0sZ$RcFA_z58CEOGYujwo|RoH&Oehupn!NhS6{P6rze@Q+3 zdi0;J7|i58KGt!MI~&2tnUfT?_!IAIt(OkHRfxZ{Lf@#uXzN;X(*g#dxdumRYBkNZ z$?~v)aT74i{fOc4X(loS&+pXN-cq)fIhbzTPiDvxGumO}g6w49b>dwOJ}F`^DB1+W zJto24{s*NU%j)y8KESwIQB&+$_@M*qjL`72=!l77w7eH1U-tOM%E|8?bF>T*G0m<= zz|NGLLb=FVx`!QSns1&KRi-aPP_JO(+$UR#VA>Lz)I;y$8;LEmK#S~-g<#!j-)&5W zt~1JT#ny?$&^wJ`wX0y&i>^M8sg1>yyT;IQ{YB5-d7-^~ zAUgh!KRQ{duvH|MCYVH8V5#%l=vO48^HntP!TUZ}N_G~&rz{Ekh?Le0`W6|F;mj3e zJw;1+xiX2yMPG-4tgZ??Z~03;4+P05URbLQ=5HRLw_c}UEi)Q+%$F6@#oZ8P95r|8 zdP>iFu$b&$|C=u8QBx}(MU7ee)??hU_%7{ra&8Jn24*I3C`Z3&kXPK|PsPP!qh8o? ztw#E=$>)|5dkBY8gk;bTzca}Qx3IdxqQMnB>H+y+=wiMH5A}2q^}7##jF61$l(*4y zXO3%6>^?)XI(MurH{*qj&n?C`$(zWt!A%;e-W@qU=RFtNHK&`R{aPtN-`FzAZ?I>3 zN1fZ}zXmD1s|3;4XBAe%-TIYq2L0XR0(!P^`sv!!xKEgb$A*B zZMB(q=%itL(hk30TI<@qA{;TZq0qI+cJNyj2JDlR#S{k=*1r;*`5IN>@-{(>_p!vS z-0-)q99Ho@$J0pN61%ySQkT?(GY_Ik&wJ5CAz>M0>9TX=>HtePYGN>Q#&YEMu}ZAgPunP=rBA*7o_~uh+x8Hj8{L*D_*K z{qXd*LDauh+P@L`@0aJTbx_gvAS?6sw)*0^_w+d}@Xd+qN}Qg?(~Ls-e2vacUcDSsaXKcnuQK6! z_DAt$Jb^!!?94BCWwZ{LcvLyY>m5e+4;^XWl6c6~lHR4Az5{RW9C!7H=qgYkeBxV+ zyac6VN+l9Xp^>|UeQ&K$yP-oSrKU<*)3WEbU{sUi0?ZCn#7wte`Smna#h`EzekrJ6Yj!j3QXCDhst`8ASN_7kOILM`KnThN*mCoUppvKm^Df`Le$ng@3 zh`%=1%56}vEtKjRZL1aFg_7wG=M)*odIdW^@BuyZ(z%7prf5`9p)PyFhj&!%1r1$( zGP8UvCPonoa!ub)vtn&3vtEQof2~a4a*xU)*ud&2&giG zQTtIdgAwbL7*5j|lNZ{W4YnXh{I5V3Gdfbf86ncX0H3R{u*vVsY=@|)|vIyUprzI4e zL^hjSYgN(`hFf)bB2NuENAV+bR^e+1712b^#b9^Pu%THw=*0EExz!8GVtU->w9_bh zDtomuV{ZDn&J<*35c3y;rl${L~J*mmIm2jJ0zbH3-y=!=2w1vtEW!nOqtx=$?y1!@u0s{R=7hm@w$%gvNJN}$(TDx&{ z>+z$UlkT*YyTTlNsg|X{{u1upoX5(Jj_1s@{e@Ci-{)T4+uh#Tp#rWyG)>y<^w#uy zu7A&_NI~yiJlYQ!tNb2Rsisadtl4vtjqMXIHaVU9Wv5?Oe(soyw}MBDY$ylqEw&aZ9A!V#$8q^OUd$uwxdM$D8yj9;^80pq_XFG| zk=KqCpBUeZ6|{bIQna7>*?py3FO$=@hSPQ?TI;?eJ6r4D%B(lt()q%Rrtfzm-*EdN zB$#RrebS#EEet|_V4$iAoE-VLX~*p3wtxR1v4pdf;O#D&VNyRxgKN-+NCC)Yr2 z`il0rI7Gq8LbLspo{^kUF0$a)4eoaLfMhb-(2Q`LJl&&wNai&zXb@GUIwyp9k|v2* z8#;IT{`4UViiaqM%Bfms8l2s98QCjZ~xtM%r5_U|)DCLi*c(jr9gbR!%d<1TYcM91S^H>tW93fA| z9QaP2>=9#f7j5FAVBE6uUf7~#9j4^D438PEVh{#Mva|)CPy&|ESTQ>bhKVo63m>NbFv**#TJQJ{j&QCwbVIMDuIZ zQT{0rE-vXB*hoEnh$)fcG4CSZLqorOBh`iP4NiU%&ha4m5W0t+y$)cu98`1?dvU9!42ilEgKSR(&LmV)ubSAd>OCHWw zIgvt>Ma7@y*^@*77AT~6gc%2~^Bo)OA(1dZ+Csm3MKEVAUu`#UNWV01({PO@hpF^j zyJq<%kj}Z3u(#JvZQn%g0d0Duc1gQKFW&g{MP1AqyY|ImzYd>PrrzhbKNM4rCA64Q}HO{d^ zE#!GA=u7Bf74NflYa=|X5M)V^)gW9N+&7>3VjdnXoofwo+F%U%)jm(`{H;e%B`KsZ zkyMjrcb`qDKHj!~4HIKdJ%cn&tKm2k>A_&sv_kU(4z&2Y^jIkY#&06?h^Q_nJH6@) z(PI+Zzk{B>WcKoX$5WGzc`aT}yaDO|E>WF5aUTLiR9;=p9lBfKJP_7!dxe5@r8X=- z?!%ro$b`gicvZLfOXqMxD#uzFshZm3SB)$zFBo$^H9BJ4zpr(RqCky*hkZOK^a_cP zt}b&BEAr}RqogdX?yk=s8`Bsuc&9xWA8%l7>}F}U|5lf99Yz@oE0zuG$PAE0 z9JB*q`ZodOamT^<16iD}>As>8&@za3Vtq3SEJCRU_>t>0l)2By$zyNC0|~U}>sVM> zX)>+J{_tG}O0<5Pfi`Sj;J@ATe&A~`8)_N~=6%LU5I#HInxgj@4ScWtKzk(yhOt+?gHWgWQ4FgzJYSAAFXXR9C8wECA!K9KS!$ZY9n@Owchenx!u&#!ruJ7VHDocZ&yLktXgJQPj z@HwLLf}+4w12fZyf`(iRA3w>!dfmTAW7sO^^9utySOJeP)@X5SjMw{K7QdybJH~kv zhcCI-&cdRU!qd%6J4oU-O1s3n|5i zTtABI^X7+v5g(WF`n&IRL;A_z-UxfJLdig*U8<095=2y;6_bF?!p?F*tt{rlrWWAz&QgEP`p=5I`5fsaYZ?5BB6i-WKsg-2O(ED>PjkXz1yo`X|KFI0n~l2cXZ zjfP0&ry-p;W{)ZzKI!{5CcRIo8j3IDZeyL+Z5s{DaC_7b=t>LecL6%nljV}SKOyVDwlx{q zalL->j9l4jNQJs3C6B&lHwS-Urq!j$B;&oF>MS2yAEfDL{Gp%N7v;zqsXK;S-%Gkf z;2r*d--S3pmH>V1s_7Nd$56#?RXG$cbGSmdt?U~)^Qik9q=BiaIuVhoJazB!mqY)& z<^VTRi<~e81&4sIL4ba@Y7y78=!J5YwgwdnXgGDwKtsh?nFl~fE$UhYP=po_AaD>z z7AF6qAiEG&M*c|NgHUPG2k1o9)iIXIAcI=)(RB+i0Qt90L}2q~g%$J8<^ z7e+9W33mgWk2w8?Q2msqVGF$mnfr=4k}tyV`m2QwF$}4dbPZpKNar#RZ`)VP1n>&9 z#?igWNO#~7H8hOOua@!s@tQoUYB#kcymhYa5xyts&E5U(5WQD-O3dX8&~n&~cmT<5 zARHJ*6^5gDd?DjOSJwX=3zj||3yebzs-@YCP}Y!jcaMm_<%O)F0$aN_~}+i^i2?_K1^OkP%|@zfLLk0%#2!RHi@a3PC#w6};Nn z-&eo5xOk*E^HUyt@NX$p5e&MUJf6YX6oo+Rs8n(0<0PuONa6sH`?O@GID0LU#^UgK2} zH_Jf6R!Y))OgINo6g@(jGMftNoP@Ki<<-U!&nAV!!%q0CHA`u(Oqn{g&0^KiXb0Ce z85~Z(BD|T**DkDjD1*ut1Dwz2>o>twIv%FPhEBI=w@(-5I^@qJO{4T21<$@WAX7z{ zy_9b1d}E6$dQDibadBpFXz3VNdScZE)>f=8pzf!gPJ|sl#$7< zBFSW#K;f3B(tT%Zo3;sK&0i~c6%WQ?o)Jn&A<>zXI?OLw{T##w;#rEt!m1VGX6&ohD9vFYuzDig}1v!UIZt9cCxfbR#z=8 zMwmnQSXUh@eun?OUH_{j60+3hT2^XdYD#PAGf4SmeBp~Eo{H?o8DMA6a~=a1OHJ~l zJ+C2!XF0))6ImZ$(oL#HnS8mO#DU*sl>x(TjhYX)=AT%ks+=H}_eIbaS)lq6(r%Gc z*BVn?I)w295GZuSP@d>*dBHz6zNB=^Ud~M`2{(f}HoYDlEkB1U;Mfozi4`;ovPg(Q zz_Exx{q_P@=;tDgHHaR_#s~29{BXj4(OPcJeTCZ~SCE0rtF+~*oG13Qf5oTd+B3Fl zAtVOES7tWXNeAofJw4rZJ7_E`NLVJp4Ayg8br7p2hZIXft6k9;c~+g(6B)QAQ=_#% zY`#U`<{dV69pi&G{sJrHzD5@R0p7}$PY37q*+7X{QqS?gNU2MT%V5xQv&@tl*qH|F zb11ex3+pztD#^t}MPtO}asmIoD_qQ|T zKmGeu696l9S#Jw)LO5!W+#7NG{Y${%fJARTvnULF!2&J4$14zyvL&5y1ynin4q&bo z{+1T(Z3(Zc7Pcsa7AE)0mGz&HgnTYhg_vVZiW@N8)Z|-NXt-1by+5oC($n}(b(WUc z{z<_EE|ys;Au5~B8Vm~vN0X+yCLO^~Y=nM#ep=%BGxg{?mm{iAoWeTAzD!!%Z|D>* zSi7K}Q&~Mcfw+@&nvt^NiVNzq?KOQ?k(>(mEHSq*Hd6SxA8!BDlU!tYcrLvD%{6CL zjF&`Xkwo$oN)9IY7%O^p0loNIAs>^5Y}5R@GxkT~zRWQlXiZ%$r6~;u9jdf1!W2YI z!i?P~ME9H($~V0+XV5g^ZN5k_%mDWp)ZDHanK?1KyR+q4sQh8|KpR%$Ls}vx*2``T zk1PK_m1MEF#0+Xx;832=U%n(0{t=zGUP4vHs(JBC@-4g~SczjNR4icb5QqvhDH7WMGU z;}59$OruYT<@gV4q~xtSMNAYe`3xQI)dzK%^&Op>5=nysL>X$HL|c=071oaV92H87 z9clDRa+|19y28%ht6q!mq@r&jZjhe2oXvA(&^#y0g!k>cX_q@{1d8#fD0rbD0fM~J z=QKYc5Lb!2G5kTQqVbr8<{8-tVW5u>*)uXTJQa<%uTnOqP^6DFfASXq+rEvTaIqnp zM#uN8H)JC#0$SedxgAiEhV$Hpi3RQ`c8D3{l{i`qr`u7tpqv%2$@m?|3Be4IAA$dY zIlh-C8+~!EsI?vgLqiV!Yiw-nY%rL=I5$^CPEM|D4YJl^HdP?38ZELmRU)0Y7Q9V_ z`Mm=z>THhJ$fwbMPMlC|Xuh%c5wk;$kUQB%#~$eZ=xriRo_kf9BD1b~|C{NHv*u{; z{VzNf%I>A_ph|>~*$>8}iy|eW^;(3vb)T@R+_asvu@R6gzqskPRK6)v{_@gtRx8uF zzVlwi{Hpn>57GY-aTaV*u-z7BD3M0#W)LY6q#Kl>1suAhyFqH`9CARqYXIpK$)TmY zI|QVWjv|Q}*S+@I&y!d0lHltQ6(^vNh#RJmn2bxO6juE_TJ>>PlkcPv zI}vwCkJ+VSXv2RiBlW?g?X?L@B@Y=`$rz|n@Fe}ie8J=*PFMViQaLk5emu&^UjDVl zZ|F(e;R_W4g$=F9^KSzQ06=@oUsh));d!NHc5_neFTho|jecyb{dt)FpflhWHTcg5 z=+aYlj)_FqCWtq+h>=n>AY@R;hB*i#sx zS>FXNP)XzvASLyT_U;$fkuMQ)gJAW>TF_C6obt)==10x{up16b#M=Gn&ZZ}#Typd; zy`+a4@megkdJEVu)P_2=Ke#Wp`?s^Wk^OgW?mKA^d+mL{{>f!cpbF-C?KEeJ;I>-nv|{LZx&+;cT4yz++$A_x z-LWXO_=q@J7i68340Vw2;Y*}#4U0d=rkZ-iCH}fS8!o`3=$eYMVDK@3w&A_2{0cck&-H7B;+B4jm%OMy{Ze@z*UwGZNkaYQ z3I}q|{Z3%0juQ1XwPqP8>t~sGz-#?Oz0Ed1#qAHSJ*^p9R-bER{-UPG2;bZrYg%@I|y{92zmW3_JO{={aI7zy&u0yMrZdN7rBaAzuWq0{(=@D2y*knAgmw9VqHw{ z0~djSd(rT5EGxQg(hs}kav-NEwkp&9I8|1WvEr3#chl@ZAIL}2TR~5j)eX-rN{$QO zKL6ZPz?+|HV!hMu+12@>PkrW&@m10x>PVxGUE$Rp8Gj7TS%vdU2C?jlg6VkOX!IQS zMQb1vDg@zsdqE_IUumEi*PYHXGUQMu-Vb z(n1@q@_{Z?O@zZMOi@>{5Vv!NZ|z_-pAYD_D=M`$p(&uo`T^BYq@D~m7o&b$aIu9~ zC(xg=5jF8#<{k3p=vB@-O62GpczLP>D<5OBYONXwB*-Tb3s-ev0opyA;RZ$OTds;L zj`E;!;8yntmT`2?9+~DNs8vM=r;s-$>7(@vln4Af4lkJYep>chBid0-lroA1&rI7& zZa~Z0iQoL0I_QXCWVRSE?7m~6$~)Zdee1NMd@XsBjnExZV|=Uon1gM#jh_%nq~tvI1)Nm5+L zq=3e~i|Wt4RZ;Ue^J84g;-l+#gzZlf(77eZEj6wC#`RpSv;kLe z<*pLG*udU6C zt5oj|h4Kv@*D%z^TC(be2w2Z(B?^4@w$7)Lqs7=)+y+tLqhgo}75^mUbs;OBr#8Jz zhu#Zc-TefjKiM>xy&|6xOiWzN=jV%-(g@q%w^{sdsbcEKr49y9Y+L>DyyFO6a7vnPMl_hIcZX{9^(>dPRQ6$)`v$YH9f}DVEo- z6R&6lL?-3mNpUAENY=kaiphw&go$dmrsW2W2@QPOgTw zFZO1>lhauuoH|7C3=Jhp=a(klQRQsH#?m{Sj=1D~_z8C2^2H3DJ0V^y&791JPigpW zDQh(Z8kP7R*8IhPM~k(7+Maq6>~%zG;HY^E^5Wn}a^ao@AC391SL)(u&Bn?CUd ziG2Me8Q9sbDy@TKK5hr|P29fJOg_wohsUDlHdsGFB&z+*5moj<78OWAbz;Xt_%4BT zAI)!h|8R$by!c5~YyzD8>Hs>H=QIK8_gUA`GJyju1Sv@}ztRfpp6JnRb<(se^KArO zLI$U9$dh?gus)Xwh4fA%^mPHY(Z9Cmol)}N# zMDo(Cz5jTnobdkD9T9ZR8>zt?W7^@i4WVR6w_XLFSO zir=opmjrL`wQ67yL-&^XP2Tv_$ur8CJpOn3`}P;_Ae0jC1x6r4)VN+oOYtL|DqQ?N zBDSFJSslj5+v}M*Q9dN%8K+qOvHNPL*D9{Cx1{6R3C8B@ImEk&Ks|p*hjYT|ELL3v z14VA;HM}z~1kkkXy$r!C<%YKIYZ8h^!=h}zJW5<)*0cY2wQ=HY7c#Q#^QUPiGSdhP zw&{R4l~GVqDx~wjkGs7*C~Aqmn9(v+k_yAO=l&C~_?Ad=WwzJ(oYr5}r(P(7p=$Ak z5~$Kzewj^?k#Tpl*qXirz?0lpOay5!%-bG&Zq( zaVM`u{6(r0_8w+GSw6n-+_ScmM<8}Y-|76C3+Aup=HueT&PFbR!ZCMV!^iT9UiWj$ z#Iu^8r}mdO5vKJ9lEy8LAkP(&!lh!--y&==`m!?%cf|z-nLZy(S>6g|bJwb+Cx+VA z?UHX{<#^X5>VJ|cNdhsPF1X%Q7yfaObt|aNbTq057eX=~-MjC7bHT6LmIgPDfJ~To z1d_eZQd_Nr0xwJa!BU@pxQ*P_z6|<&Lvk6!eC}zg6>3y**4o>o(aQaJ{3k7is$_hM zTyNJL*Noo5s#@}lJ^Uws-~=hIlfAZx>BaoHvi--Y!?hyIK?vI2z3?d+4&Q;`^d-GTZk`2hinpegIkBR3YL^)T3=#k`boh{+)jn`QgIuDpU@P5&~4U zemmcF{%#yFZ6wyXX%3i_W88Hz)3NI#Rm?75z2I;BhT$aR=(!!FM6;%>hZYpo5Ycb3 zM1MmS_Y|3kJ;841T_4siwOp5IUS2qeFeG0uV|m4vjc-YIrquCk+q=`0OL>3~Y@U8UHL2N&F6{|o^!77MLG=8y}$vmMR@0?4N*yyxz+Fw5G3x7jg8_}1!-(85fT(! zJ=kTB8q{;UbW1U!Ey}I(6sa&Z8(EyUDte_`VE3w=bZLdHpnmQs)QJ52L_FEtucz1|v`1P)jxs>ZGuFG*ufO!i7urASOTKVuaV$eE1C zkH|j%^x=<@F5rj&uV~Tc0n6?)hH%|YHsIctd#B1Wb%ox5U4j3cKQAGQ|B%PQg*-^{ zg;o@1Vi$swM9%TO7wC*qu~~TrA52-n%^VU5Y|CwSQEU>ZAV$|SJL3`!stZ?jl*KgM zjK%GyBlDu%;KJpSVW$4}I|hIp!u@jA+K2Z{Za>)K{F@dtC1qQdxXH-pl(EcrhjnC6 zo*ShHpwgdI3DlH+E|hm z3BDUXFw(vvh%LOBRzJ{v(rjG-SrmvQ@|2(R)B88Kc|H4W;qWcI8g{5e{PIT{c5Op= zjKalP*{K+c3y#zyGq9sE?*khirBJfDk5VD4t>?0gcuYnK(2YRDJnWNHupf>PMkgr% zT`3zXF{CMI@$R1gN6NbdLmomJ@iXDzGweRbo*|gt7X)>YrB@6MLn&zYy@d$uBJAm- z(D7s0*uhgA%A!~UF4{0R%CpPA95rs+8|uLuvgRAgFVRR&_%M-JBM>WgzA&Y-M>6@{ zGL~|c29$BmX&mlnJNh-ldJ~UPkvC@w-WsRyi;Hz^sq^dQ#tj4OszBz)Ps<#@PL=B4 zp*U{-U;-zg-m6@_z5%a}>Y(+}xPS85nQhl_=4?;6JUSV8eJ97?z{8*dFaQ7mh)GD8 z_OZL=BEqAhULKRZ(avqjoFx!*V)Wl|lm*CtsSg;`1mwd=s9d+FDEEj_Jpq*nTvbMp z4aT7NyH}>4&C?D*ru<-nGiXStFwH)fn2;FNQVG}@Ff3Srd#!sA%-W?m* zgI#yqKE+*-FF!_mpHtu6P=Mv>&Y=bedD83h^Rsu{7*8tdg=GKRWmg z#8HxmQ$THT5YdJ_EGir)nd1!fGTn{7WBOu8_fxlz!xyvOUrbK2dNGUn3H6AMLGR}kwzUo-GI_?11A44+*d(?p*JEAO>R++c*shYQ+D zR4G}ojOuI%QZW6RM8L@0&Ji2`98j*`h0drJlTddgll`!{Iyl_Cl{)DCPYWl#6g3|t zCc=XvgUUo=E0Cxh0c11=xRktdTQBmPf0k;Lfi?vb20&B-4%44CZ#$n_V&Zo2+3s_$R@72#QeNO!-CkRL>Or-Z z&&w!<Jk-Jn=NBL#EnaO)Sw~Ma@NAV$b<7_eMpM2G|{V0w5JP$8J8Hs=%)eZ{PzQ z1!TFWI*@Jm(khmE!aR*jl2G-mmNa;N!(?E$&PXs9%DlSFo^xPge8L=h(8PBGpvWu! zi1rrU($R>m&2v@_Qb$r1Os9JVa)+0`nrdFtv^6nxTT&)s{XD(GpMu`*I#HUNo%wC~ zDM^Qkf8!SC-<2l3(@BON8!>5^Jt**fd&V|C+c!jtl4;ZRJPE`q-T6a5+Y7K;QZX5bu zle~SPD0uhqL_LZW0Cu@R?(8|pcEl`R?Z1u+p7Z@j!@>OUmg}0hr!rTce>2vy{p;5+lVy&EWq3<8uMrt|GmXb`lC>xks8Cj6*lzG9irU!U-+!^*KI2dA zB!L8P){cXzFz9y!Jn#iD)gFf0V1YvG5;^pJRtH$kKV@6mmUk9kK}<{pl6THaOiodG zB>JUpvIrWGU$XMIXK%6VQ0dy8QG!smP)5Y?-s<%^ptaV3cIl*in4Y zdVA<%$AThWK1XiRvj8QSS6lH4&bm3hAAEZ09eS2?E)h+sA{TKKwP^*r!N%P0-spRC zC^Jfr*MWUh+_lJFZD5tr_c7{m5tJn$V{3qUftq%ynl|NZ1RL>TuX9;t)1rIUQ9Yj< zDtLqX*m>udOqa{6mhxt4GDseYM8ZDP4LMt}^pTysKHsMx^gUUB zKR7&0ETc7;V&KKvdO53ivEs2du~(E+*^=q%?GglVVv4Z+nZFm)p`TAd4{(I5g^=1{ z&2eLq?KtLpKFw?$T;u#UJI;kJel{Cik`aIJKbZq~pBUe$1PWSufmdnqi9f|Izq}6S zbLjrn(2BgU_eRYI+=S9V46VCRfQOjC1B%tLm!Dc$L}qC_>QQPgeJ?$LJB_>JVab>d zG)<6o^BM<5X6j^BXE_>4vTi{r+?WoykNa(VcxC$2lgFr?h5?HPvHgoBH8h?&DAZ5Z zm?8;&s^T(SH}iyj2GxH(q)0d zxJOW(obS;Of$%r5Q-nAI$Oq(ZNynGD2Wf;-fzS=Qe5~)i*rM(NOO@W;(=_N~Rxq(* zIj~L0LyLZu)`LRqvv9~S$UQ;_rkvj|V9NqJnKTLCo^fxdA)?E0#PG~_yP7(>Pr#Me zA$eX0)=_|FienX8kI|CWiH@An!!`EZHMOypv7z7bB5#HAkFUNzySPH$UkzDCV!t#r zl-LJsE}VN^9)cqvzuH>8NQV(NUqy_xGfbC>^w?CQdA2#yJ>Qd62v7XgeyMrA`C_cV zKJ;RYXiR67+6if(@bI`7%m3X8pm*-R$>-D1)QogUzD#bv*@%*^BWvp5YF2irXsezj zSoOsNqjk&K8etkqzjZoPuqD>E%yy@wht**hh+|nzr^(LW>X^&hlBbT3|9QzKgizqE zD;r#s{6R7siI0HI;0|k7MGr1k;z)i@Y>&9_?*3_tjMjy6t35C5yYE@oWDFoE>_jD? z`F2rI6~13#O~!v<-2m|(gm_CUJ6bMFs{1m-zZIv`11IaJAZsJIsYwfd>V{y2?ddgS zqc4ktV0EV4iX^`KHd*5BP6jbWQ_dvz$HbrXZ`K>Cp{ljqEPPBdTNuncBw*E3B1O07 zfF3@d;VV@azf&*?GfH!qlG_#?<;Q0q{EE=>ymvb~=~!M}=wUBD@kmoIN+X5zZlIxK zjN+t%RpV(`l*{QMZ^c0R%F*~yR4()=(oLZy@Pl7J;NiR zQoQP^ug-b9KSL(7$>^X}%5r{|t$q&0qyYBs%e>#=?$7_p82cPtPHlSTt^aGdwUkf7 zi5NlRT)9_gL!5J2eY5PE<%DEDykGxXw&bN256+p{*~mYsm&rAk-A~QI#a;x##LY$a zv>^Zo5*9TKtlmcD03+=HeeY5+tafWxI6N&KX3L8q}oEc8Dq3 zvbrV}dhh~BtuB?|oqCkOUTf!#)=Vgi(?>s!P?`G=eA^uGw>%C&vyjyn6+1^pL-w3f zj{@*c!Dnm@2|_r8`V6D?-i7pykUS!C7f%ivmEG>_3JyZM#RKK5IwwA`TWwF4)Q>y%F zLQ2ZOrTL=XuhrY!ba@@%dquA@Z`;e{aq(xNdw4UZy!q%%r=Ph#QLn|17&zdSGh-1I zBSQU}AuK(1C&IuQt|wVNDZ%*9wP&dkp{U!wdTC`PX$ekXVBps8-_o4z_qB~**W8!v zn}_7uuNG}h+AOmnGF#|5{*OrbkeMWxSHhHD?`*8tEjd_;ngp$sP-o^tJPc6kd2c}d z@I0@wvOjDl?JrSceemc(QD51!ub$5aVlH;)fJy3Q(ICJLz3L>k5s{L5OxVO5OmetB z1)IK+;U@>YA2B0)wk2G*jFC9Ya(gx6iA0xF=CTh86Mjpqd_?B0!qrupo9EKO&Fbo& zR+t8QT)9MXX1v2vXxy!kbV{0}a#EtTZDS-Ao1(UqMrZ~Lw+k}{=(WH%4qgmHm?A|G z#LHqAUtHNg{F*#0F>-v%z-VvH|!x`g{v+Dct34C-bOGl8VVSFzxrk>GAXBQmk>IAr$tEPfu(bNlCT=DREg z-FWYlrB>FIzgxG;7wA-=NSJc-biAI=K$>rZ=}m^E%*U3Kx;6=;(u>`fNTt26tsY(XK5{eNp5J^F?o^aVWd>vGPph&iXu z)m+qZRdmI?4)gHw_Mj>;D@#d7M+Y@`O!WNY3gq&BUi7gXiVH2{GaHp^D%CWKEnu_Ll>n z#+?SGnyM|D#bwN1Oclo%3qWvaJ`Vqoq(`G!f6KosGWhW}-R3Z0Hh*}@p+pv;U{@93 zLiBLIgyQ`Rn-;S=#euA^1#XssB0X)8Japg(ofRdBafZ0#5SgyN=G~GarV+s5BUxhI zA17TTqn4?`xV()sj>89!q1=m@hdfD^gfbDQ#4C6D`zT4jql*)Q@R4A)t6)4n6?Rn< z6rZd=GkKVq!TmEY0Oml$dxM11TNn28RLQNWn4hjC2${wTUW>3{blQ`7X@5_YwDnI9 z$p#FE^ICFH9ax=lA#@s-wL|`-5i#&X$n&ug)Y%`TT0f|S;q#fiq;V;4-nMaV5PgW8 zO2(HcdQt#I?X@TOehL0NfuGSG-m;JFwO>t(x5h)X_AdNd@x>%A@4cz+Ees>VtJ&KH z3UILcB&>vg4DqHAr3dR5rGdOR1NCyOlG)8AOTC*WxFWRGd?|L2_4 zUO9|h(22hFY>*v}SfKO2e}CNmB#uWbs_kLm8W9b3Iz2sw$(TP+dl?;XP2NXlw({Fv z?ARH_124(a&V=PdJ{!%aT0WpRu2l~>C(^1EMX(i_&I7DBM~G6olQ@vje-p{+^(-(@ zuZ9KT-+v4Qvl6G-f2+pjp*gz?JTsZ)>hNXXewSkR?ZMa|tj_?}B>{hOWh-Q|f59|U zcOX^JSn9(r9b(VC796%~6dz&Y!Y2JcOnrr0l+pGzEhQn{DP7W?LkQ9-14Bu7Neze~ zFmw&=&_g5LUD6;a-3>~2{qWxVJtthM$zYi))f05tKeUn~)k59uQqSsF=o z4T6Y;xxH!SoKw94opT)u=eq(62}l~>bfSB*!Y`tJp4sL0l52^!6aR|9#HBYh?nOg6 zcO~`=TBJm+2gD3dbre)Hf(ppciO)}VZJiliEHq4NBAuxPP_DtP!ig3TPO;XQc z|192r52b!2p{cNo7-lbAJ25FL`NTjJUP796-c0IoE*RmCV!4cW%8mIPr%a%C`sA?v zXF0Ndu-7pI5*Bc_d*cm zH%dvVV&FJ-b$e-MN(i+&#peaAN8js_4Ohh-Rq<=hkCw7}dA|bmfKe8y4ZXrqt!=J2 z4^s!kc&*5kB3v5 zv|0LI9=xS*vxa#lpA;8nD*NAG5k;??wkj6aO8VdJaXH&hlZGC!D-V2c3ZWaA+|(~c zTRXLP9Vz_7_4u|63tojHelTKj*jxgGCbg#pStRyacmWtRyV(ybxv7*#;lcRWX4{K^ zg&(MUhJ^2_m1z$Qi2yj#R@D$28U#!YQH38}aO(8OVQVNV zlFxxK%Hg@mC*+8q>92){w9r(i@ng2Hk?!=Wq)1{PLM(3lYc1P1=F|rWZ|WhFdPxk? zdHe0umWLi&Li)AP1yc*x?=?5V{SCiP;`;MkVJv>kImUd(OX4T4s%mr6GITAhHySK( zngvzYVq3yw(1(C^3_{8?2_lkgaVpwXEgxBr&>()IvR8+7E0hp_JowUQ06Rd$zb)G( z9JI&R;>YBgB#r#H_L4h38{nfNLX^dd8{ANsmR&jHR|PxYIO__0#4*!fTt-gds!vVt z$R^AH;bfuq-ZzW6+cCJG{3sNxxyXdXozphUWN|k!Lw}`^rBWD=_4rW7JR{l&{tkcD zsjJ{=i6IcBXwl>oV=XmgB5S+~k~l}pTDazZN+@}iwXl2ra**KG=h6k=IXa%SJPuJ^ zn}|FfA+}wswtnh73^ea__si?uAoV5X-b_5rdRS=@N7-Dvt*IhlNeZP&$>hm80*S== zV*-mU{=?x7zpYV;eTGC{KHQ!cdmXPtZ*n)TA>F;Gw%*#=1C%VU6`vQ05A^Z%Js7Ll z?cb5$N@i7m3};gj{1_;YEK^Pvy|0W@K^Qn^g|}n*QZLt@qUp~JZC7Nr<$*mnVS1+*Z*(vh%;FKZV3UA~_IyGwUYvdzc4ExG84xs@|3a)3jW=hpAu z%;DVY)7VXda?i8kTkuqH`p68?qI|D`&UmM<_dUYZ-UAXWme%g+de^{?Eb>Qfo+LaM zy%T9Qt>{R9`Q4nDEi^c1{q@lK97xO!Dibp%hfn-srzGzibmi@z>+6FLwvK*O z2s#|99vH#DfN32FPxzyg+^F2Coq-U?*;(WEN?ze_F682kaxtT_ zis+|eU}XOV9DrzM22E_bEt(G7iSjh3;5a{~?Rf0?Mf2rRdS|knUaFq=kX>2i8T&xTo+xuGAFQi6_+8_`=#-nwUkJ#2sj<7l7Ww@RuE)fZ zqgzmxrBG9#z-HgStiAuV?CDXM85s?@e~%u9kbr&}gM6opGp>Y2;Y+;xZ*UMfUHur_iW2#UYjQtn$aLTW1FU~ z8$iw3Yd%kFuC3pcAlPgXF2=V+UZ8C~MoikSj*-7R&HY+&&ZU(Fl2AQf^_Vy6EDu~N zpHdVzCw&n9;^UbbaQpF5P+WMs^%WP*G;RonjdT|1JDHyRJruqUyi()+*nCCg)3yx=FpGyq+qm$}(5CZgQLqiyYwF!G zVaDEsBIOdW3W%g{Xz{U#HW+SUC?x7SeMzwDaRfsPvb z-n}2f7V9#(mN9eZ zSIBn6$jOe;wb=1M>^b>flIUI1h_^aI;6LJaLvN8ywwK{65`NGQmmX9v1}Re0Bk#dZ zAs5oS%fD%lw;iFPkLw3Kw%zi`tBrR-Pc%#8zoMWRW$G=QNZ;C+)mToc{p*Dx{h(!} zAR23D%P&JtToouTQN2!EsCmpH|LeJk?%;v9lk_91ZM2lKii(QxY>91n3LB!z>+rB= z2z%p1oc&wqeGRej#thZ_Y;5`}zxAIeSqOXViJe7`=JnX_LrI%6WJ!sUEougiJE_^& zmzhe$4AwAtn&oterE$$63B-y49MpXz{a`jbq>P&O+{Vr%!m4K>QK+^|j%~;m4Y@SN zX-08@9rI$l<12LJxkLL7_|ga`;bud)7S>SA0lw!=EWeo?$jOJK?22S{}-@XK_X0 zUIQ^GP(CH&`eTudNvIhca3Aga~RjCH$v`yM8Cr?4V2NAC&Ji zGyW=RWQ(@yrU2lxnSTlfNCJG^5m zo?J2&MvL0@+{yuSCH+x7J^tq*)YEX+m!cmr^}LO;g8hWQU2kuj)MTg=i$y_1kiQc7 zgxHsC6H_9Zo5+_UbM0E4#D|=he1$OjC}8kh5N8S~#8L90Rcug32WE;+&ASJ6Y>ni< znU?IJGd4fiF7#;^Kb!>aV$*ERmRiS>f1q%6dQRdNGx0dAbib=;_L)u_ry;_>;{5>d zSh$}{(L7ARiwZuYY8gZ=rD_lR@1%!+jshOhUZoEo@*f_+t`ll1Dg@EnYx((%?|#&U zy4v7f_mP-DeBjC|D*I3O$G>4FEtTK`xr-`lm|cLL601i2M6<@59XrZ zbw8NBfP>@P`YJgJKh|LBmd#OFOAtR_6MI7h$`0u$+{3D&YB=crXpFJih5-GWa%a3E{M*ls%(3I<$Jg4F&KVb^}*MINW zU&-N%v&u0p+e$Dj^m&&UYV|{ zW+>!HH+^xoIAj(~JJ@HeA+47^4Q((gkApn7_8W??U=?ZhwxbzrJNIP#>| zCz&{?_V|2Yi1t%}-ctr3U(SU;VLy%kG>vp1-0of1onMJElsB@5zL{z+GQv(?>CaT6 zW{~|wj7UDH-dqSdN6gMqfGfE;BHO6#18E->fr=WIRF-s_d~px&@t(y3lD z7&=_HeEwWaYQ2=zFzs#Kb3hSV{`^~`kk0yQak9l4m+!Od3+EaXiWYVMdgQ&y0(3@l zq2y59PAy&(h)NXAdi-*lRjd9BdZ%zvPxqx-yzB2<{3%fU82*S$9N6SSRAHl|@u zqQOF6<9l9fuH#$8u}UX8tfaK0wjXcL!hGibg4QcLZZ^IO{p7lq88**dCVMU*0ZYcC z!u(ui_AP3Bm@DHhiMFy67yOg8hO!=}SlXn8KMVVTegtPxLEHT!D`(Rm%lTS`{Mu@p z(mjkHJR5R|J-Ns+!doYXRQF9qe@*ux!C|M8f8FuB6c~xyY7q0;BO4+v2m;IYEO9E1 z*!X(N5bO{NXG9k#zaw@+vXKjhwc2aJVFp=at)J5xu!!CR!l(DzKufu3tG7+wdB8{kF6%d33bt4t` z)_w#eUP@NzZq7mfW+&K8KP;Oee!wW{PVN7>U^x$YAf~#5V9Gr)lV^A;)KZ~kGlVs; zY%uUz=N%wdqHKj79e z##=2G2%GghK)J*?F3fH2&%=zWlO$w%NcH=VoTS?l~n>2mEfE7?cvsjqX%2K2;D{cQa;%q;wdVJog zsUHh(rbIF6Rhp(fA`7b;^$F~Hd0SFn}o!~ z3d6~qd49)jDY9~Mwl^p1ilebwHXV;w6axJG=-#txE&Bx-MXjwyTSQszVoMy?83ra zFs+1o-X%kd)_qa|KNZXdZKb`2tuH*^==p}_1ztgQ2~2@w$2F5I60_r&ot)B@o-1Yf z8lrgPS+K^h!5 zznIvVo4K5LV$Dq_MY;q*VioNGqU5Y~#ezeQE4nRAS<` zaLXxt2Qk@{R}NuH3Ib)ZtdTBD51*dRY}rCA1JyWy?=pWG#D*OUj_P{`0VjhUeB#~u z&`aaa*-HVPhjWI;1H?@%4m9;c_<#Qer2n&0oEUp8zYY961ZBPGM8?&SkwNtF_SP^q zhCvPvIFXUPk&!b5=_6ud{$tx zH7lvE{ETY~Ija%U0Nm(dihh4@J5NUMOkz2##SW3(m|_vIRH?y>@|;O+(EM}}OPHvi z2iznv%}9@@_06^~r%Xo;N@NufPzJA1A3M zJ96EG?WxjyBy4J5d2{Y=#(p;k>oJVfPwag|4vbaCFG4idYz-gMYR_Fr@Hm|JaLA{< z*&-aOg?o#A|7V7Jzq3)raMsFfI8+y2i&;trU3~L??3&V=P~(poc)7LvR19sNiHl&9 z^7pQ{h}tV2;8`q{&`bwYv%kUtz_rIdcfy!*{F%*^Od~3SY<5%vbl`^fzybv2gF0W9 z=$gI%ceNvhwW>LdnZ+G({aux((SK#a6dhON8q!8&fwz=-FS_s5y!C$b;SVvpb_=r> z+M5ACzkI;^^pl)QAs%fMa zB+$I=AU-q`raW;wQ|tT%p%36}_G@__eXL<YWQ_4>jy*2+wGh^wH5=+C@t^*v0%% z;A_=u)_2f!YU}+UP2W;1NpZr*bLLXZbM?jB{@9EqEAh}U$MY?#b@oit!HdpyVp*wSbZ zzN)4+p|1(#Q~Du-_GKY<9KlX-GO+#xMXt(jgsl4JEAgW)yraI8``22maeA6-B3IrG z@BWR$L374%@X3+Y`K`}~&226RxuSP_5Cf_qqp$vN0?~XaF`f6;Ks+I}(>|r?KpY*v z{Vc~sk?O&Wz6m^2!ta1*Mz{PrV`a5J5XKuyyUMI;$E|V=jW4q`i_HRw(Uek%o$|6DS2a!f z*~IbQrW{CfPSOmKvoOqtY1K@Yo0jrr@y{lj0QNOoSQ*@eEZe z_(Up44P-0f>!yocT7Wpsjp*141R%@@p)NJ1$VKJw=h<6~QhC-E;s(T3y4kc=1)X%f zWtN8eQS1dG>`vXLoLPdM8zq^_Nhvx&Y-AgD*ET!ll1g6E2><_zE(a z%PfSplD?t(Ne#4Y7wf`{N`LfgoG=ZjPNs{nX0=AV8EMZVF_x8pr3{QksliWDD`kur zt9YA*+yy0SieP&qMWU%S;a_<~h_r~Lgd!d>P%02xzp#Mt16-&?QW=c`BtQ9+>st@{ z@otBG{LYYHxrXw0-flcsv@oV=sW_{zp+3pz)njg8h9L09 z&{6P))xNj#zkJKQW=50-T?h(;TbXZ|nBaf!V4_f-PkL}i!WC_v9&V9B?d|R5xm{E1 ztwzaR>72`_ur4_INsJ5|oM3wn$h>JEE>`@GC(0XEN?M}IW64nLJ@V^A+4zEs#9`}| z9xA141=ffGX@`K1mC1o>_6VPxc9=xHUD#1kp4AZ7-w|dS()$M5e=`Ss#u{RItfc92 zsdKVK&(~nAVW=6|A|aRmdf!oa0{K%bWkZlebi6fQ^%u83@>kn(#@r zP2gF2yF-g=d8?^5EE;jH+^(4mAIKg1c4PkVGd(fa@Xs!@#gr@KSj{Ym&mFM&G54B)OwWWL(&?>L0<^8x&o7=L|j&D8a@ z;>Qo-%iz_3d&hSV^VV7WTll6CVV_}4YhxyqcG9wOXl^IY77CP z>|Wtq(e`ZhT7Wq#Ov&$N`#5Rq#BCk${ySa-8e60;$c=(!#-PxN{*aQHFn=B<>a5xP z&dymJ9I?MnSFE_z1}mwn4_FK}QNa>AKe0kv8HFaaCYcko=Txpaddyi%^zGqeX&`ojvRlYg6?%m4MfSis|r7pnM@%Pks z#HE)ne(aLcaslH|jaB3bPvMI?lvo2zunt&rde6vME|U$lRMN~^SQyT%(at2G_>YR( z{SWeFRrf3m?^3IA9zT$seuWyzLp7$Q?{N#YH3r6^cpZtDZuLA5PL@0?TnFqa)KA~o zuo`Mv?V>iBhRUhx1rw&y3O}CTok|ePgB3hsbLSat|KMPn_;@ z-Aajc4IR=TrF4gMONY{u(w##}49yJu;hguJb6vmp+w<{`z1LoQKlfgnF@25Ur2%0) z_3Uhduzglw?N|e;4wT^*<>BX2O;(-; z8q6(5-o<2A?i}l^AapalzX3}oYYU5IUqT5}+C_Vs(i)uOz+yWOk50n;ooepkpdw5a zGoBxUvCzBmPMA1LeQ;|8`1)LRcu=L_;sfec9fKP!N0tDLTuvPIm%5h^xvW*Pro08m zFJ!m`T1aPJg;H|j5*@(Uxy?M0BC}cY!eGt>y-M!Ec}%37S*Zd1{juU7R&*4;&TZL0 z!4MCUDv*nv%HoL4-kj*h#W~(?iJ$@NNk|wfR%D^$FJ}S<-hL=AT{ZgoF-1mOm`>~K zj-vI@ntCJitcb4WQvyZnx`?Nx-};05WsEKX#xJhX37tM#5Iv^**ZJ;1z%(5y zw*1Bj@5K$&#Rkr#O;-ikS8vMF5yU-cieBidAqMD3Xc2}{!oo2>37j=icbL)>#>8vo3E6f9*0f0R@=k#&@Gy`VVDeOCYZX4 z)yod(*c*B@GG+p@r?e(smWg7|8`pZyA#Dcw8M}u{-CdF`#X4WNZI|vvf}!D$5M0@# z+>ZMY=5;l;TjU2>eez?)fCRb1%a2DYn99t5{xC2qure)@Cdz*gQO2&tF7MCe zpnC<3RuSSMWM3n1~#uKsB>ct zlY^;nd%M$@FB1oUAq&RZ8}Z6-H2>9bJ09XjE08ip?ln!WM8K|6`D$1mv#5bs(b+9> z*P@-POO?YpcXT_1_~4qse!KQSM+PhI(EwZb;*OxyrTS$H_$!v+p zd{#fpXY;PKLyxFRRxid89oJ4hy%??3(p9$-z5D;1>08+P?g27G2SOjv8CCQV231ad z^WyIqK3iBarYkCv@vVSy;4$``7Fe33$Pfs0sFp9Y8@=6`Yp6rL;{_$^gr#B%ktAT6 z#a0zH-n-g4sxek#jOJFulHPw0phP)YkprUz1GzY&^Le9zKT72QZ23RRF!GYg8#C&* z{Fs@XXkOF6f)F3)rMhnK)x5d|FO0p)0TzC!>o+AedUv91!JQ%rk_eIy$?je>&bm~u z>5YT)-f)S;eflJzX}r>$?~)ONSwLaqO8o&;z|@^J`zNW3T|=oN(Q;BRaX_2cxiHG% zam$2APxX2F*~{m)PN#p@wB>>WU}taDnQp`%Z}DW`zKs^?NizliNN;);!+hd5Dm8q$ zw|NoNgw$ewEq_73Z><8&N?U3Br(E^1aQcoKBN5Xa3qs7r)vY{GiVQUI%(_1sycdOk zN}v;e9Gmow=&RaSjLT1Q-JnpYO}() zLQVN&HOxIee;$RO=PP|kesYPnf491RBN`=DJU>0nEy?y#z-Ew&A;vH@HC30M_W&Dm z8nvhyonHT4VV#9eDRQd6dxw#dnmRR+C+(hAdpU&I!~d%+{~(kDIeHJGQVv{{CwZMg zeu2+z)0`lc$FBjLpyhZaVDJUiJj{$*?$vcfuATvv_LCBH zvsWpp#D?(+vUY)yT4-APrGuD-sGY*oT15<ug?NrS;>?zA8 z^S~k?XaZeTm(TZ1G<_|{+APcKG~qjv3d7JU1ggSSK%35G1sF0xlNpBcd)LH?CdKdZ zZTUlNKkO6SU7Ar=is(5Y=;O@i(^16ut+J~#VnWy6b%n}(jy(0;7;4}sR*;G09&aWn zYtKes#MdrI8p5$yj^8-D@b@CDv{*OU$&gyRr^#>ebJY}rT%%bMm1R1o9!(~G;7wtA zRIuI$nwJof%YBfa^m)p!uj2WWHUF_~ir~amd}3mm>s83b0uxyE8HG2CJO?ca4g$0l#b+JqxCu6QYk!L92|`9}Y}uS#SHtk|yR3PqZA-Tk`f;~lF|q$z`)rrTG$J;prJ>caxo_r6+U$0Er+ zV}x5xG9;7P3ACu&3f%3-Y8;L+9C@O7J=>mUH1HS1@?EH?ll_rKcS2lgV63=2w+BB5 z3Jrb>ta9MC8u82wf9!da?qy1mR$|xz1$J-KKzL6}z8BKhX-{5$n#Wh>&$95b|Cycs zlnhh!TiehZMoYl9Di4WnaC}rlr?#eeY<7>KMzC z+l5P=%bqBUXeG;+W-3el(M#BWKTV#(-*V6XQRa@GD>h5P9%)KOx^;$*(SXW8DMPB> z&ex8|pWH;r6s>5YSR6M&Rg0yFG#$tw7(Jy>&fK?5%c4lhQCb}G?neXXtE5dL!dsPY zF)rD^A{tJ)ty2yxuk>`}08dyfY~~pKs$!{z;qSkP8a1(aUgrri;Yk z7n_|D3F)<;eUsJd%gv#G1Jg`vQO9gox}z z0dEwLk2yk$s1C>`oQBJ2l@OqZeM<$Bku+Ct5a&z64X4WAF0?|`FexQU&PSCo@!y)q@h2lqjR+aB~mk*CsLNbH}u@#H{_dofqoDjEsy*^YVf+Gc(Y8hHdO?2+{<@p3GG;x`j*gC|ki5!p?#x5M zdNC2r*$G^ygy#45H#siJ_*uqp4t`5Fm%)?#xzu?i>w%o^c8Z;;U^;ySg4Os1ZzfmamnGOx&Byb^UIr>~{2 z*`S}#zUeJWO#UFj{;|*?F7g!-_qCdt7oV)$fSQhtNJ>iTJk{^x$T-R}+xghMnnEK5 zOIlUc&xH*~Y?A;yL8Q{STEW3I9!)`Y|Hj4w!eu_I$}Nh|#D@lP9sjU<1EmNc8(V`( zRs0JxeEibpib{k;fPh=Y+2mUqjFz^;sx~*s477cKx~Rd3NEV_EH(t5|A`Qn)1eJP~ zbMaQ{quj_W{u)kU-M^eOCC&13n6HuKJ3wj}%Mmx#s_EvlwY9Cq_G$Ay?Lm_r?muo` z3Zx8oP4dA8i{^s=-eTz3OWm&7vC$+a3Un(Dm>MrKK#4Z)dduO!r+t7 z<1*IR!ZGb1C=b6^cYdR%r>{^XyuH7V{#&+F05^2{5vEh2M<>Gm^^GS-$7wH?#XZ;B zBYf>~(l#f6W4Fy_(aPuI%$sk_h46TlhP~T4a|`*-4bEZku)E}T>}K0~_?2{j##wqV zinWTiD_6p2Z^(B4Gh`VfC)AQ{G}qp@JyDS|QC%qrt*>lQOTxX8f0I|0@Aa!9HNEno zBqZZmiL#-@Ea-ek&FkzEI$3{yc{`(912dL04){4bzmTXoBGG%JdK~&@L1k5 zW&TiP4bq@)rGfI-A@v5wffubOXSRC?SF@&mz@mnz_ElIQwZ9L7|K)F|s3?q*lAH`x zw50PPh#KY!blvh|406aO+O^Ql8IBMal=v>WcgbDq`v$t~Ps-v_O6b}>V(vI=;l&M7 zvI7fI-#n+=Bqi~e;roWK2lk#(Zb^%qTlE3QL1y5Nkdoil-R`^BPn@*II2Cq#Sy&2RURuzsQFlKop6FVJUpD|AJnr=L#Wb87XcI)Uz9|D z!_FM6QCG+O`5J40Nu(r-9v3b%L$XwwZ^x^h!6ryIVDNPLdZK*zFvKoT>vR-k@t!_B z-sOkrwY8p34E)ipDr;4X8-A|6I8@|#3cCBm+AkrfJ;PsPpr48RB^zZ4weUTE?$Qyc*2xyp7x_xs#Dm zHbt7BYz!=Aw8rHlgz(cO(Qv~BKUaCmzGh@hG`%rTma|kUQW@&g%|pJ~SLqL*9{k2{i|I&T%J30I+H#MIJ;l+UZez{ z{5)}|OJ6hXJ>gt`A3_cuM@8m6VnNqA!2BQgute-3HFhJoy}40ya;n-h#$`q_^}i%J z3)6RN^SfHGJ>;0n%*nhi1!i4J%9B^dROF>Zl)J-SWcVG=VvE0F7K_D--5>E<1m>=^ zc}An!sTmn%%F9X&BZj&m7QVVBv&w^8l!-3&m*en+CL8AV4G(2iz zXs!lw`8!IXj}q9Hh9My#DD4dH&qd8xsEv*FRQ5W0l)O^WMKVx9F*a|z7ZdB^+=-4b za~M!ciXnF=A>|@^8zHCRy)c=u;yxo`P7nd)E0QSmh}`Oi*vZ|QFVdtb*P`iY7-yfj zd?$AZTld#NHyMKfO-O4=0m0;6kXo8;=mzzbBX&!@Hw+uRhTc;#dG!71Jl+5GD(PR< zjT!DBGd{{`)@$qUO>)5qJp^Sa7v3_8#&-e}<>@|)69(F}ukO$(l14WsWc?hL}VdnD!FJt82 zJAg^TLV4RCk!Gmk8uKmjH0{dYZDTPo35j(jU(ul3O$#r5t&=)keLr2yZZm&rCgC4+ zJba=~zR7%5aCCqBrYm}2rT4_Pwgl=a8f)%}7*8<(jo+R#_lq+UvmQ>4W>U@e6N|SG zH6tZW3j%?=j~41xH(cOP$C{P01udCNdW>Th-h)Pi4%yz0yp#Z#R#3zq zQv2-D5gc28B&hkFAf4lP{@KomsTqO5<06_>Bx^r;nKYf`)XQzGccqdV>;*$ z(atf;WDaRu>#g-Uwu0}%*3A>~M!Akg`{s~>Z?z@3;wgHjtNuuFA)O2RA$h#$yWID| z$G%C~9oKz|ZuI|)ZZ{_av>mXGBt+jHPsuB|~!S7WCe; zGe~lKE^Fh`JABdhR2vNJ(kBanX5l7@cx+F|cpc^l(37m0`b_)(RzCF^*n!2mj74g;{c1Rxhh7V` zOhanlnTsdG!N9Qzg#O$@+uDqi6Ze}OU|2JM+C9}!0$1ws;1(ma;n0hk>B<2$%<$$C z_v*2h#taFl_Tk`t_7x2^I2+=*a~ zx^8kxYXjecQlv7Or5Pv`(CJ!`y>6#U`{vg387}NCM#mSUBqTW zl%5USOfGQ#9kGQp_>t{mMW}ejj-r>V|<4}-%ki_;ivsek_?6lAC zL9F}a@mJ>;e^y`I97rh^8z4P`sZRFg&xZHYay8Z46ul!KLk33#WkJ(K$qCh>iF|R5cMN+S3uO- zW5ybid_p`%K|%22=?!Eanv$|)p2-U^a>3OfXG(tK`z@BDhUwNwxa+n44p@{GLEE-+1QH(3-sp;Jw34q?zf}DsSUxc6Cf`tL;1IB}0Um1UNw(HN8T%5AeNVUxW!X>S%~${|5@QBB$DFFnxV}1u1aCy~zkFrf(4AMM`WpH^*{m zCCEtqjbOLE0k84!ARCh)P#ot?oWmcLtl_PyE%)WYldK!K5?Gv6VzheiBOn(6DEAX5 z3x9dwu$6|Zw-2ue6!Ug!O1{L-BKw-#+FB0+vjchFEc>KGdNk2*B&j1nrl7Cg-e`Lr zPnh0Q-F$wi3<3+pdv3UTpvJcaiN;1So!yFN4+x*$`tjpMC)pVQtjc>lL{mIK{|sY_b*fEJkv1?E2-2BawQd z2D(;Eau5(aYix#}Hn0Mav9TEDEdiLYsDWQZ%iEQdd~j(p=K6&3awt|*YPETQ<1Ci?yq;}I-)ULr0;W8z@W z+%!`cCl!e6y$^L~s;TUD+CVHMqf73_`m`fzjyoCBh24da4JHPR@S(%N+b2UlA@4I# z^YXhDn39N*bJj&dVqfgtBq<%SF8tm%Z^By|buuf^zOy}YT^NvhrpCbyr1~xdvr;uL zLSG}>OOnNVBlHgXT9FCS00Li}&1Md=daas+{DoBe3N~wDB5@^o2$RUHYD(sT5?04A z!2whuKQBRkNL@K&*$DXN>mS3tsrh6?hCwv62Ku+a!z@lea9$Os#!J8t-g)_%9|RDp zoHRr)7nSq-GLR$Bn6{WF)$L3mloWEF&TT1oF6>Q`b1m&swUr6E{H$RITf&cBZve!g zbAiPp0g8a#_dY+moA4_NFH{vIPcc}M6Ye5oIp2!JSEBU*AGLm^LgC&0q=vcV*W7LO zMYMYRdYFQNhx1gTT@9p0`vp_yN_|k7dX+ix^p=>^L`f98Mkp31km+D*Lavk=x$&6VO zPb*_R9cMq+en`Vk{bHRmd*z78ajBzaAcdgU>AK*!$YBLP%$TmZZRmn%;rH>E2KUx< zw0_}m*Vv#Js?7a;AcvpAL(qb0tUs`hm+K=ZZ`WZvPl3(v)_u;{lNpbJ=7FACEN3q0 z5A8C3_OFo~x((7UlI&`3y!41)Cqt-#MGgVcE8341U5?)0-4GR@4u)|lyFtyjq4%!y zc`Sye@S|T$%>kvrfwTpPzOT9Fjixb4a9Zu0!78<@XwT|e&38N8)iI+0yT%Y=LDJ@FmD$8Iwhy7(@y2iUD`rpMxY#k=d1$B`%Q$bqWFC4nt16T5+s zg%z{DBi9RZ;==|cq9!z0Jy0gwN;h~D+n;v_A>o;P>_Nd(%@Knu2v>IWLlDEgjDxVl z$J<(3jPe9?vdP24O~JQ2^(vy5e+HlUssnEL^emd1@Ha zX+B=x?s)#jLD>;5UNED3M9SuDNL*#^X}Egu0h8j;}~(t@0+;e*j7k;gFJnC6zhQT1~952(D_OfU5;2!CE~2$4<>-V zq$8dntF#KU=leWDYV&~6s)JkZg!)E~!|Qt+?muG2eN~pGufh#TIh4GjPLs(#m_X`l zO)~4*G4A8Ha+y2@qOK3i>S@WQOxzls2tr?DGYngItmmLIV4{+(U(<_>R)?5(u3uAg znRT~e;|*P}1w86MneR#%=;Sp3YnyPZwvI11q{KMSR^pwaT&UB{>Bg3d@J=#I_>lMY ziszbH$L*qp1C~VOoVHs(xh}+6sHbZqBJDar5$ZG)=ywjskdhnYm*1zvJ!g$Uw zEo?Oy1#9e22HrqaSI8tN=XR8L-0vzcf?8z2gSz7IZ`+AjnzK+Zd9UC?71jtBW!t%k z0{MKnW!9&cyF1oRXLUVP!X5)l;~?m$K8%VT;?L6ku+>(d^)_4DV9RJa+jrK|g;}*N zH0X++48k(*DW)p!ygT~U7Rvpm`pGI~{lvrvy1r0@sv}{WumNXDid#qAKyx;G5|MP{O&-?#HBn0< zLM)|L&P&|eKMlQl#y5^-cxuhr>wU@7Sch(c;<6n_OGaK3bjX}G{m@T^RlT=RUs7p0bz|M)d9qrq2QQzgzC2zc1+N?k`dl9D z{H_KEqM@eD%{%MEO~Wy6j%{EnZ{Vh=E%7(?2VN^}UN`(1`^Vg3kH#jtBz^Zz;KyRP(ZDS)UBd8xT1gtQDl>hfP%{6ioPwPMchCT5hAVxQKF@S z2qKG?V2U7$Y>E*u`De0_Nd_ZU-~al)>+`mgJUMgE$(=LjInOg2oldm8%(N0%U(Zwz z-*hc=ad7qV;ESG?-h)0rU8 zpOw9NaeHLOeof;a(YO0`Pmh{nCVgUMyH>oh#MT$w77UcySwms4L^T82XjYrO=QQ43h`Tihc=(>dFeeSuYWg4k4iUFH zl<~5`xm->EQnYniZ@J&7Qrk&^`=IZq-i5Ur2`bpMPlK9CF0QW~jxih|xASLfzp~HY zmF{l^ZJrhk?2^%rk$@wMiU7OyRe=F?l4aj;M}=o!fBGah_YSvhz`;bSn6H?hMapIJ zUWc$z{;vz<=DKO+eit|`a|Tyyaft@PJH*KnE*y`N8URuyJP7*&TD296{+ikh_$gVAnTe-jjk$uo==+@MpYg+#b zEzH7zJJscc0_zR)UdO?Hu-*6svjBhZ>4@UcP1lICOPZymFLw^RsE`7n{^qbRFfA*% zbPnd+61Ht3sz+Pvzf)Guqn%eiTrOKhH|EElNwcjFAGt@xpnLjg0V|tm`c{Ith7%F! zy`TPfA{M>$Qv-jiRzP_+PXF^#q-e}FYH0H~$dH^(D&{n&jtE81t` zpHA=-XMbI#MMpBqpLf30Vms%M;g~? zrQcx0q{&`oxQYfY@ZaH@O=O=D9sW|~FmSK27>VgzIpwGm2y(i)?u^Ehq1&|yreCEi zlmNBJsXIoGj#L0GT0&c8+;`S-+%}7SY>M@r>6}ZpKi05hUj?}a+H!qdsDT9@Phg16 z+X}t9VKWK;i~chz%qzZ9>K2Y~rCBK|R{YycaO8(7o;v)SSBGW6r~J7VM&4qWScxch z484-a*`1N5W=va#?xrQ-mPbi@jN9roWj@k09F~EfUF6hjx|AjB;x0bcapd4->+)|( znq$^|Z+OnykRZkw?_bbwu7=B3?(4D0u|wWB7L&EMX?j9Zss|-U zR_`Z2>*frdemyKaRPgPH7ZB4HXL;C!2t-D-u6#M}^~j2DVT6y4&6ovReXj9Ws@fsa zbDJzWj-YAnyXqTdToff7&?ggW))&)jku%}en<~&6N!>7o+F|Il(GNY;1YFG?0qEGk z%sM=}zD$#j?C-J5ZO5}m2@&xZG@D!)A}vHqg8S-K^T5hV{in{8zL(@QrXTT0z@Xq+~ z+p$1CULAh8HOUD?WMhd9*EJfd^q6*gj{Z>Pl3Z2rgS(M(xd#MEBcwa!rjgNOK|9adDeVWN( zz9z1qWG;ocY3!S$?Z@wjiRtLmS}vJG{D%sP*v%X^rvK7z%ZHJrHZRN-s5KezSCszbstP z$vP(K?XL2#mZ#`BQ_}y*ddetAu5pK~oSD5cZY%&U-il}p2ab&Wos}H0(~qqhCBRfy zznPzJqa;nIp?~ zVg1}8`o<_*vlV z7hX`lVZ`uA`t*4iv*sBoR`E<~t)k8;8UI;OGjjnC&7rtj7`f6czSy;1pV$1!Y&PPI zF9>Sf0*zYxUgpp3$n8t#!2w()YJ5x{&yx##Ug5&NKG<~n?YNaZfuu*m^NXzA^XjpP zxN~79)=|Tu>UYwSo=*a`^(V{9wnz7?4UMB?`X8)PdSBl-u|2!*e?G&g6gw3BbPDzT zx<&>B$9$3E1#P7Jn{D zEY%GtdD{uuis{AsH9XIjd7f>cpr^z(V6y*$AROoGuZ!%X*}OGuS=&f?aWjSf{aYWc zuOYQtuada0oz-kQ9y7+n4zAeZwZZ6|(vQl?{YhHbQ(kftx=UVn< z9BXq*JlsYD0K*`Cm{aS3%t$dsIiK22^J0 zLnxRsihqcmE+&$DY>bFRL}PnNXA5k_ClmP~d^fg*4InYM)c50+nAFuF+m zw2j@-PugOmJ%{g%XY%I&Q=e}#w+!#mQbu7F1*UfEA}ix%^-+7{tJMOXAp&;Vcd6Y5 z;}4m}WEq`lw~_52hcJJ(!4FpFbDM-GywU8exb~)Jj@YqiUM=CF2vO~TSbA?XObn2? zSzfJRo2pQ#_ND1;M|jO9U{~kt+L#wZsx@=adE?rC{ znMomLGY>KDXSL(-w)`|h)V6(_h@;)tQCofIS6YY#XL`K1xN_86H_M~usrR39B{<^& zpBM6a%9L*#1WP^?HLq}gZf}#E)<+q9)^`&q0eSiM$+zfclV}oshwXp9t;&~ zfZmk`yPQ6)3PozYzno3~xi|!DXK)3Z?bRr2k~wQ@zt2AUwJ3^D$DAz~+cpD?#)x0_ z2++s4FNUo-n{VWvc!igKYNz!cQZa(N$oK!0gKFl8m6`9~SD7{`l}V1R)hGI_m!g-% zOlP=Mn!&#ufIDZarg7v@$9U*{tplzn9&Aj{-xXATA*V>qBmtQGO4!M1Y41E3@7nyE z--fbuV({Gv<$}!djpL<{PA2cBOGf*ZD^SB7AuPL^P$D2V-j($Gk$ya@bcse0_A$Nv zlkc-{zujS)@Gd1SLEN~*5cQtcc%aE4D0{+yYA;$R!6KVrU&!iL+|YFnCYtnIQQ7Ex zajoty_1OMrH3R;dZ@U;VSp_1+Wz7z*-lN9(uX7@`n_dkBQoKw|!HZPOJ8p7Z6me9R z0UF0fj4>VIvq%Ub`Do`$j%~O}wsBN1oLy9UL6?gw-M2%m_%{7;%)4#B%#HA4cn(@@ z;d=DUETIX1w%fq#s660riugk*-kI*L<_4hf6YtA)ASw0zrJd5mCr-BeW_rRlK{Oyhh=N>i;T7?_fbPbn@Ea3*2G zsH!hwC-gyV=Xs<`4{v0X@dflwNoAaY{j8+5nWdr4MzZl>pnsshlBq(d47>fJ^DF7j z#K@b^-lQLF)8d`5Dui@#q^dki8OK=K8*JN)Kwt5w>pJ&jxs{nqI= z6;2+6!CS3=OQ~m{v3%dwjn@hj&~Nx#MA>@Gt!@Zrpkirys&wRH=*B)~nu?sk_WkQI zbpxUwW4FoJ2~$55>GfjjJ=t-NggFFojivBwLbU$OWlPO-lE>Y@aop+=u<{V3;AuJU zDaa6=6RMbv-ra3z@7bf}r7s`$)Dm;)U;NiceA@VhRz7y4Z$2Gccs4Atk+LjHd^c{@ zHa>RSlGl*NN0tr!(|5#iKNh++EmKzbWpn40i3PF!c`iT3a*6sRvS@=*`yHpO>SEVGHbje6d@jK0P*uadpieM2(N zhV{~J-I3D7471sbo?GqsjI0$0@4DRy4(Kv7k9u)tcex1wIF8AXHP3fB8#TzPK(l1J zTmIC2{$xJFmyw217_sR0x%zfry?XA9Ph%onG)>t0p413JUu7FL?Hx5<_$>vf ze7N-(eVK}m5W|6*wBZo@qEzH+4}SRVdn@23Zj7~0!|-U7y#o8Da&}zA)V^foqOdb7 z;3hAd@3%L3+pj&8_`L*6e{<1jmmq;Zjoogo4^=cH0j^oJ-IljyDv$x3kyz)mNym2# zs3)WrB$CtYGt+y1MhKT%5l0<-dQq>z*;jjt51S$9FlzO;Zzf%tUK#m0Q56~sw)%i= zhA%1Fis16w-`Sg%`%fjr`2~xAkV#tomD=shThypw0OjYhmx7`!Y zEclHud2gg-)ekT15ggcHtBs0f&jhvlrK|P)Nza8IFM!-8SHmNBVk{Kd5h@j*VpQya zbRD|QoYd3qk87H!qEV^vjDlg>|sy&Lsl)DM0Zuc&y*e}9q%sZu; z<)i4};vF@fEyDSjNV!=vHgY2*H=YN0=S^aHx3!OvV^C^Byx%_i`xX1w9z94Y&S&4| zXBpfU$a=DRz$}iyidPYbA4c11PSk;9`tZB;@-@kLu7)Nt``k}IlXnbX@Ep@3{1;0Q zR06oS-%p+W-P4q=cvd0i?+afCUomjUY|#}^1_Zr;S!US<*K@1y+M`VlJB>}~4!MYZ z7<+(7bWUxQ+3^Z&)!ABNif*F=W8)dg`Z*s4 z!2}k?)1v*gRJs=Yp}wRzN7;3DcwS3H;3yNQ?2I1r4&Bnai#xa{G8nZMIGoghp&ZDN z;L$(qlu)lO-LSci7n@lBO*VHQULe_#RR44R-G?c~YsMOxCAm$TSHqG-4Lr4REcVR5 z*bIx20Rh-YF`In^z{ZoL6SJPzpQvTYtmzp>2IiPWLY_{d)=ypoa5D{1zq5^>gmOUFp#cjL;MQ%h$mjXM5Yx|CSD=KMmjP&=9#6jH@^%T*Vm1?LWEWu(2?) zNT>Foo?s}s)vn0Fq*`MGi%XunM^N;Igx>!Wqjy=a{CVGuv>d0}L5(N)<}C?uWusAq zLE|m?kWX94{FmQ9*I9P9CM0eAX)om01@s%{rmZN?8 zuZ7JF$rBRv!dN|qKjMpeA19*WoqP;O^?VR)VJB?rUO8vnK!8GVtPJPE7&2xvkbg0= zi{(0Ki4&Jf>g&A2z}cq4T5m(YWO15t8+v?zGBK8fRYLc>!llD?@+fcLgy<1V0KvzxGI&TQi^1HrjlV6dMxJqDxZn97U&n0gQw3{=L9F7`kSW1 zF3(qXm3@fKi&N&`z1otDX0LtEbmu0CB%NeF7&(72@m{#&W0KzVt5cSg&{>R#X87BW z4Qk?=VOQj@dV88mYIFBAP^A-^;clNA$ap=@r+B7t3?gyQmmbBx@ubM*rEwSg610D1 zyihnG9Y!w<4FSxKC>k^RRq@Vo(=D9moZRL!d`Y~(TR+EproPa%>*5HUHGGThkW*wX z^UNZ5oL2RffevkAqWiBS7D3Kn%HC(fMU=uTvkEi*T=gy#{7w>oYQxxW8%w{>*ZFBB z!a;;gu1gI=p7qDgl~}|5EkV}~oMVnyU;X&yvQZNdA{WEEP{jUht!_0z-nMi2Kamh! zd;sw0cSWfHyy^g~R$Twr=BH-LPbQG4D>qrMuoQ9pIcg&cuv15zWF!MRWj^YhT53Eh zCFUi-@3JM}XA;?G0wSWzw*esRZBqZw*Tm~j*G7E*M3e)QlK1z z>~KZ{=mgliB_?%dYVhI!FAN#nlXH!{$RZswWM*OAUMa4LWB}36hF-!cWhi7mVW7GG znON^mc#7D}4ZU&vE-J!=&ZqU~q2Z0;K-T_lj4*X$1S zX~j;K>W96^TtTN%1kBM9Lla5*6R~X7eo2>-O+s!}OYXv}zRVwy@uBWppRav_66%5qlOr> zTqq3NipCq|eVAwf_EZs7QD^km!VhP}F~ENbxP{~*6*DC1`=673vGPaea)~st$pEI- zrRx=N<@`RyFD9j;KYvFGawKb-+8|If^q|hW=_ck=ga*Np5yVG3w(35;jq&h8EmopQ zWfi{T9G>Dd@gJ2s0NU_)t(~p%xMTHdGdhy#c%xT#R)3!EJOUJuY6^mpk1J*f)MWom znfY0Kgck=#0B0!?Ay0(-KD)0iRge-p5F_6ND7f)9t==%Cvh)`py}@3%3o{@>IsE#x z6T}iKB?oS1;@+@Aruzfj&%e)r72Zcr(}kvpgt~dHI|G)J)>t?=J)t0Z-dJn-^LhG+FNNE zs9U1*n}Bp(Ymtj!lsL4s7tr{082uP^)kJKsio``ERs2*`SZGR&&0rsVb(T_zGRdo8 z&UF!82~CEfh15$@T-x}2{CP)tQCL*)@!NO_`@>;+h7;|Nt;jB&Eq%UV44%hM>9xLq z$yt7rY|KE#Cx?PUQ|S-v1$2}7>~dr5C`CljsCzYn!-YEJQXt!57nU5_u3c}MYN5ty zw%cZUt`0!kKASJ)PB#WngZEM4!xrYB98T1o$h-!6jMk^_P4yAzZ&)j3;^FN4Pk-c{ zER-DGVE5%wWH`o)oYsZjN|DAbcUq;K{oSV|Yr1l!Yny}bRk5T+axj0XK63S@b=zy> znIoBbKSh7NwKX!@eQy}(?!piF6E;6SWVTC<^l@6zXzMP|HBlhhis|DP8LgQx=-aB! zw!n0PnujH1A46N(zqoU6#*B@c4kVwp+jqel6#IblUH{I`D8Sv9YC@m>>E@12KiJ)P zF~kR%+CFOA@tpKhpOtmTT2oc^_9&USGwmp4#4IcUZ{;=ddsYOV|F9wofdYwKq_NJE zMo4sc_5JbDX?#f>CYMv67opX3d&KS&miIh&xG9P&(Qr{~UoOkxE<`BbQ&KL$-XQ zx-z^~o+x`#RP^CD?l?n2{5~NNm%z$`>w-HP;9^0YN%-V+Q49d%CqAmHeP6Z*gNq`k z^z+j4yjHAVXhzJ$iG$n)(*hI!0aU@c6`Y|&O|^Ggu~(%tSl#717kGq;kA)-cAs&*1 zZ&U7GxIrAg^(eT^7-C{Ik~4XN`zqjUFzr{{!5xnLLsUz{&AhA<&mN}(J8 zhBBTAqNXnwx+*OU$}0XoDO_b8T9A^19_W~vD&Qg4RV7%?8~@{6vUKEf$K$MWcn_$t z#n6QI;W`fmm#dZ5{E2^qm%R;HrGgxR6!L%hqms&}k^;d#=mfqfpLzjU8EN=lzVpS> z03B`@tZs#~xqx6}8=$nIHVUf?{1Dv#O~O8X^d7{rnX(Jc|BJ(MMnYkLm<L!bR>`wa2XoH47wb^fL0m$_F)&Vir2S+ZSpz(YKd6HLw0ua3X6*n%N`1-9+TZ z*Fxv+&5S&k(CkkX&I`9|>YrQ+^UKqZ@4}YtkUu&0ecaNcG80e3)?X)C6r8%J%pXU| z6Oa1O9uuMA3+Fhs%8a8Ji?2@1vVs|8?d=Z+-7`oMpNe|+>jsUq{(Cwz7}gAOqq*>Y zp_$mDi2Ye64tMTYFs;WSE+keS5ISRrJX!vq7vPQr$hlLyKRM)Gheaia&X`qg2_{~s zr%c)*lX9Z|0Gk{}F${fwY?Q<)QKpm*yhzv*w1kjY80Vnr6mZOPcRYXKC6y-_NMrg3 zGnB@Cu~d~O%baQABij0pw#a-mFOBu0o4oAG4C!Zo%zxCpa6z&vB_cCtT$nH;(E1m} zQuqUFkixAd|Kcy_j_!*L(U2uEE#;&1|8s_(;g#KAHbjgoLqvXWCI&sr;aH^BTbf zS#X#Wk^=G6{qG9hwtf%NUtcJ%Zq3Ho7YFBl@jUF}tMlXh*nDADeu~_9v?H*i2mK)< z`pf;}vC9YCua&lDN&wWlzO?yuOly~j#jWyv1&s`g^TLbR$WLd0FVG0!wMvAf@|GjV z%RR zsO@q-8QTLP6V(aV2Urq*IoyI175Q*nG~qEt8e(>B`~@QwIy~w6pt_|-DJ>a@i#Wrt z0q*Q+r=VtZxO8@oN&P^+d49zoqHfm9G*|u@n4@Jrt?#uY&mSzEjz{W0ocpVTE9v1{y3F#m4Gwsd-@KYAH^x*~0<8U!p)Z-`SqM;?^f#tt93jE#MgErY8CX+-1z6|&0 zgoA}(RaMp2>U*vUq4oRQ`|^a2@UNPSgKY+93CKsR9%dH|Oik=`8=fsr(wP-npF1Z> zO$f5&;VTb+wAYXR7S%(UHv(iP7q$IGU7)kD(r~H4!myx8POAo-gzCX_~ScZ6NbL&8t-XKTfG8TH_wl2&la z*!*OtCwpaBMaa-aJC2^7NsEh&dM>uM`NyBrpA(<@e^#PTy1ZprSciS5K;j*e62-kw zlJVH4D5L&y(kfo^VwLF>pG$E>Tl6|d3MS@#gjzxrf$LPHEdHAtwne#Bd4qI*Z3|K`5$-q z9K(D(d*_g2k|n0{jYFOWUD#(K3W6mh&(`BJfdkLUqXnc(1Fo<2tn+}6Hx|rMk!UN> z3M9*Qdo=2*`foE45^jFefIn5^w+K=Yg|W?OybR2Di~~1a*K3{S53PdITJ;Tbuff{{ zQZ%uTOL;{fP8DnC*{&#G1zz~!7R%G?Rd15(p1=n)>SJV3=7{cw!mqj+a z5XIqed4M(v6`%AyPs%oiA@O`fds*T^o~9)vk5LCj?uGg@Joxy_7blwehV_b6K|@{A z`4C)iRzpi7Bg1t#kqh=*K?g@&Yz%+MKc#+4_2GZb#_j5DoXv;*@o}lcF4?o9Z?FG- zmyILNs6{K}dbOkC@JZmKO;R4U)M1X!5Pi+%((p__3YQ$`hmO64JZHm~@X@_7M0VEV z&fZ}*y{+ADP^O3{Y|M3Rr9~i|-27kqtRMYT$#%GK#WF0SeIU|*kj0SZ>)YZdcRz4P z=<->wVWMkdU+tD)jBYXT4K4a@w!&%Oqx59S(9AX2l$7!F*m`A+t*?#Ur0At9>P?($ z(wkILp&v_bw!2IB+tfimu*&UyHpPi6K5lCvD-78=O6U`l3&S9^yriU$CEBJ>!Z=gZ zA3hVS&2DGw^7eM`h-*e|jLZ!>fhqB{P*8Vz4(LmAuQkwH%DgYbGkZot*9@wrkLAS* z>M&>B=3PY1wTxFfZzX;PGTW%XkVTCJzQ;Wl^FBOR8rvtDUkg?p{_UmUnj1#T@arME z=k$e3uP741AxjZ={AfHW)Kdx2Hnq<&(pE3No0FKO7U>A4eFvQaY*#$AJYDch|E??OerlZkKL z!aWuCRbxc4F!qB9(CA&tc?Pl{?l&W^tlzrn2Bvo5+!|_^xMa1(!Sna8GE~S$R3_8G zYc72q15G&ykOykZ@2d<@b6*Ab-?lZxnyDXc;zqG7Xtk$u`%1fbEZcqHG(=~6{Vk9p zyB;@2Ty^i0de6`1ggheOg#8KkXi&WCIsv=??7|UU|AevMJj=B8WYiaxjUOs@peT^f z2&!1MCXwzmoe64gPw0^ixCpV;!xM;#vJRC}++zggJPNAt9XM$Y343~(@{Rn9Jn16Q z($VtTeS5b#Gk!sp$hCwjvci%+xTZUxtZJgA%5}Plo|CqPwg^fCZIW~X^<5PcIboUs zX3$SzZFJ(NO*7i=$?-=*EO$6rdH?iw^p7f)!lrQRD%;c^sE0 zPHr~hz-H$Z8$Aoxhzx0>Gn@LM;ydGaSQz1W#2@rpwQtdna#@i^gy5Kv;3}fkbK)r z8<;@6=XS)wahY{RP5S)%GAvX0q)|8Jtk=$rnX{;!fxA5OHKXoT<@F<(BD-7P(1P2z z>kZmnv}@1MtPW`*Ys?eDOQHEO-t)QO${nAsf<0EgUcRNkJoNlFA}1#l-=H_eh7&6v zDOohuGwj&;RVxnSoT)u{RVTHOB?iToG-Hznj>@yS2k1C82Gr^Y*jq&R;1hDdd&pOA zozsYmC9IRtI3#hTo*%!uf+lhBY*Wx^K$}5~cS3BmZz_pqUpQJuO)$8-Cue)}9gz`M z`xY?8ZNM_P)|RU@GKT{9KVhum{TtnSKQ*7RoDi(;ZNWqc_l<20 z>A^o2HypTvN**^!)GtEmiphr8;6Z*DxiOj$N_dlkDboEdqj2D1upjkZmkv3bR()`e zHn}uRuxpc;H|B0fpm=j^_|mCZsr1UY+3mIDSF2%c&oHX0%voo(dEvdLkZtzKSnT^v zThQFou>|~B(?stVF^R-iGx0TocqvPgt$_|IKn2j7zeAJ`AWwfkSvKn{_9z|6S@0w5 zxYG4OICY5TEn7}Ht;z?%*=M$Cl2swf(PsyB?dGk!`NWrumNAl^Z8{vlj12pn<6r3+ zN5Z!&*7etuOL2};wQ4Kyf5a~K+EwyQH3l4w<9_{q$Ck%6@{AXDKmT@o9ot6RX&&@9Rez z$E!=iWmn@cVm}~OQXW%MhYX5%lduq#rj{qYDoypJ6HKb^&im)70??c{rcx%y93-(V z@f{S-+*S6D?Yg*(pd%FEi&x5-ur~dCnBDp%>E6*B{yXLahhT&2yIL!CH3U9?ZqCBa z{?T@`JpN0}Ef)D)1W@#LGIdKxQnGHRL00Wb!y4#NoI?z``5 ztMr>q0Pga>kIne>{@8L_s#VmGycF!(VmHHkN6`0JBu~ixgN_QvF}9}-E551R++*==R<{5>Q8iRXG8Y zB0j!Bm`NEItPe5hLdYs8M#SBUKH!iI6ARBtTn zH`VB?@uZ_jvk3PBl-dmI@L4LwSX|3g82bMdzI3g=N}w$gB1?d8v7yW|;h>g;q@DL}&sblrgsS3M4n?A@P?6bOcUx`0p;O@Ah6jN2mtZ z?==Gd;+LzufME}#X*j(dOsNxcf(p$p`3?h(J}`buB6AG0tM+>qWyb)ywN2A~=KDsX zVN}8S_{;*!8)!c<#vfdpNHhEIqB?4ybIN+cnZNNw?Gko5)z&-h{DGdH5)(@%(?ZWBd&@J~pcVzjd>+R1#-A}Wn1KS*s)wJ=Fh z0oGymcA|mc$V}-ht;Al}{EQq8)pSAt7C{4H_2ST3pgVSCG(M|HQoUY+iJqhdNy%hR zF%o~q_j&bqftoFVUPR?isPi7>wEn9_Ze(NAnl5}NiLeQQ-jWTVA_7rUy#PL1#Jrb; zZW{D)fPFE5)i+~#J3pMoiSBmkB-#1*ND)w23Pvd0sl@%F(MB@-K0i-3Y(d+_5#Z;EFmv`p0o9x z0$$jMZp|b|fPK3GATIbNiBR;LnL?RkXX|US7}Y!EH_~$BPLR54Yva@5f=^gE$X9td z)|Oz%Kh;UMlftv{j2J2zBit2TOJflnHGf3_iwGS6b>cGeJC7|#|H6-OcfO!9xjYgkxOw>#78jZb1f5NzAKkyj# zVJX0F2ex&GJlVnH4vb~c*si%5yErzk#X`ASe62O|uf7_^2T7Nz7y1Uy1QC8J+@G>0 zbw}~q%`_2}9-tZTPzLM@tZx$<<2DIR&xwuH0aSYeeSXcnGgQd5#%*GsopW3S$>hz~ zG+hvt+I##q7!ppBc^oM(Jh@qY{`hW%Y#Lc~mnFcp1@;iMmeYY{ew3Bc{)BnW1Uh)i z60ZDCE^a{GJI7t;8+YF0t+irJ;;;N72`RqN0tSuLtAq8fsm%qpeOA~*@LCR$F}NF8 zEHN=Y@LP*DdBf_3ANDC!8}KdskBIwzS9~zyDqIF#!JA=O9u!S#3TKp0=?t09ipHHH!6`&qQ-iS%a8Ci$3VB-oom}6G+@W%zbTWtK|X)pm- z>c)>%Xv!Ws*xWJdGTg6r2H7i4s4by>5m@+lea;_4{vt-a1n)lUNhq1NvPB;x#rh}< z4z@#sBtw#a$zpS#-W{<`@WBftwr|jnb7H8!($RpP*Rn4HP?wfv={*{|7irb&hmG$u zl)?M!%?YwBa`?gRGa?ii)r~Gl=K`nGmT1&Eh8SBDP(NPioFLzix=s*EKt*=poLnf_+{QSZ#os zxohdh-ECURb=pEe%hg3?V6-#90YBHVW82$7CwXS=F_>@TTet@N%fRi8`0Uq=0vK7v zSL0vwQ3SpsmbFoz?X7-S|6N>BIHaUTpF6`1x&ZV;3;$vgRS3qHi7hf+X|gNih&Fw4~AxI1+ybKQ7>4RE^-r z{F055b%IntgigkWx`#DYpKlzwIc}PyOoc|WR33~8>fqw!z(Q9mv|AwqToF;DxoF5qs(}E*y9rc zE6IuS3FK3~=dN4uI?D^8u3@CGl?9D`;sX5NYq34D)90H$=y*-IxDAX9J7N0Ai8Bpj zpL!V=H>J;?!WS=^&K&tC^TDtfAt~P{=KfNy;A76wn6}?nS>{e=Mi1XwSMh03slGL3 zFLs~0a1GB10>!bh!nROiHQ+W(fTT)w`7+WAd6A71}0~g!H zTj(~f`$A$XTWrP|nAGY-&r4STU+GA8=)L-{HkjZVS8Jbol_)csLwe1voY=u*sel6N zlh6S0?2MJr;zJQ4I>O`IDMH)YwF~kL%QVi+vy`DAw*twW@g;jXg+mDX_o5BH^z)p0 zLlcT1(cZ-C5H`a4J%@WiUy=w_Ny0!g}ROuY0QK%=@aNsHSpYOy_qxsXf6H!a5 z<@v@eSMhdOxa@_Z@kPE{?n(ancTbqMmo*sI()IBQCCe$=%9Yr2H4z;B?`XYpJi_*S zKKzM-SN`fI7~_keiRrP~gDnNwO3+|6 z|2MZDY~5h8X|aHQC)$H|?+4GbI(uz&7FP;iw^!{W0?bGdtId25A|5dbWa?K+iW3)o zlS2FYnam#2cQom^R|Q_Y9BG(;?ds3y1>~Pr%1@VoK;S#&D%-Bx8?=_qbbma|)9a)gfCl+a?5KfNvGtsq&v=vR4S0(xZbDjnyoT?9O_ zg68y23279aKqDq*f4&Rw|JBCd>3uPS3MNzD!8JG&OJ6eibce59Gt&eNa&u&(sC}T2SdI1;Kh!eNck6hwgyFa$VgMZ4?L^N}o z1(!eRDdYMZx|g)Zek`|tt_nLd5H>*5#IIlU&3Y!EZ0c25gJ%ajmfaYwmD`G zGpaZk8VbDVvJi_+PK(|)OX~f`_DFDMbSdzeXFRLcM6?BAfZBQu@Cfj8KmM`{ULn!u zK*g{78ga$i^Q2k~O)B1A|32Qr>3&yZ%$s_*QuYG$uC+&rS61FFM+5rK{PK;3?BUY> zuxIP(*jv@vZn?){31Y_>B&pkbZ#k0u0afA@@ zBYSV2Eb}`CpYX){fj+xHJeq}>@&8HZ<04hQV1=cWeb-FXx9*n7x*s0 zGkg|8>v3o6CwagR<)g?{z{ad^F%K;(RJM)pnbb)3lKLMibuHwm6(ekJ0 zRTug38TB&J54N30(BVuvK0Di34#a(v1ZzC3!TcM<*Y5BI3gki1IU!nI?&2v?m%5|z zesg;d+PHb7cOEjmH?)>;(R4%k(8|o5d`;y4*!J-EJ_mXy5;)uK(hl2=mQ?`|o-}~h z4~woHwgtCuL=R+2+7hi6Qd-h<;T*hOB#N5RM`=>Q0{t$Hujj?09)CglC}%!gFbz za_0mMy?JO9V%F4)gu>bc&EIj>&C>$ZRQ{+j8k0PZV9nNTYd_u#y+u4+yP7}T*t{3D3kUn+HQ=jH}H+#s#GggeNKS z&!fuPvrJ3el+Pc@#X}NcQs+eV7gY5SLOYkJZ((#!=qG0FXxeXdQXmT)+HXiQgH%!? z8p?6l^=Xq1@id^lYX%iV6r}*w8^zuNkF5t^xE$^L@h$g2pR9AJ3*Msav8nF{EnKjj zlMMTX8fqN7R|P5Xdkzryi)MgPr61!A-}dPTA#4}nH4liRP~%s2V4L~STh`0MH2ZvQ&|-wfhv^s^C3+SsZKEJ2DsO6?d+&;_fZE6^{)LdWvy>s-uA8 zD%5?A#r7SWk8k zf}z77d_OBP^(BEs-f%-Z@1aJSy(?JMk;fOHf7vBJqV^?66v#CVk<(ktg;)zv5e1vg z^tueVf;Oh_ob@iHCJ!9c-oGnDv$wBJEg93^IWP6%%}|`zqE)bLVOY)`DQ(JMBg;9h z{9ZBQRqA!=Z;7`!_gQ_daG|zLl%=v=s{P&cL4}K`S&`Drfv*_wC}_CMYxwHjyIp)s zwR~f0!!&vs;rM@pQ;@@wIAvXtNss4NKkDHVDG2X)l56-ZSCf&Rtlk=TyoUB-pUX7p zSr>Lc&BJ|^HQ|()%4Q4BXGiI)}4JMzwbPIlKH5qzY{OEq>GZ zAA=<}Lq?1)->)Zo_lAsF!9RgXdy@~nHti=K#zaR~tdPT@hJXW$hQTYpHk$)WiN?5> zW;XQ~@iDAmU&og;OHuL~a!zs{z{vx4G`=zGaQ3DHCoRMW7A!SJ^ask!)y~*^smXf= zLCToukOc?Z->W*@+T#%cCu08bd(ZX^K+uNYkll4%l$W$J+SDHEBf=EWXIcz3X>C z;uuhTfyr zEG(wcS+m(&3{`8{O7GW8g?_0L!YQSlNRUFF0c? zWiMqNeT>+dY`QNXkQT@exV*ekE6Rk{8_SY(q6O&sY$xVX8T?3-!#@Er`F8>#o2p?HQ8)! zpaLQmsz`4N3Q9*ndT$C+RFn?VJE4abB27Ao(t8o>=50G|v_xD|U z@9+FM*LCJkek6Hjo|(1obkrV;Bv_sn;cJ-8#JWNQ8j#Q_9>~dRB6Wg zd;?+8ac6{-N_vz-md;P1l<9 zV{L8eLG|@~KvnyRFk8UTz~WY4`Y|teHmC)nFP|I@uSnFzcSRIT>=Puhb*g zZg{2GrGZj(0oJ_R?Yw;s4e)WQ!LV9MHB8Zpi0H~6WX96<)?WpuzzikVxX&LS_{-V$ zT^-F^TrH1zzaDvmHh0^f9M=!voqER?-n3;X`Io!Hp)gG?o8#BjEdPMTRmV-RJ?wN1 z$i&FVLsEOu@y!{g0pMe`S3rHeG(8K2*Q;0i?3Z2XDJfY>DAmP&{r}%?v`enLA}=qm zMtA%ln9QpY8AraI94}_Qe*U-k_Gura61p#S6H@_>l{C!T-x+S&KHh7;!Y{k`^%1^bWEq#*h|Yfe@V6!^MpSI zRn)H@fHk1BcMmwv$B8M^WuD`z1sQ4^()8mrV>Z2YewxCxhRGx zGstAXc1Juc&_d?fERgH6+B*;5adPBvYmEr*9D)r8M)y=;SL}Cb7{t(QdHxv)9JOe+r|2D zJ}gPC&~-3h(Vyeef||d%csanJp?EoBM*A@;A^pkWQ+N`5 zY$fpTLDi>ReD}$bEFt%#fuj!kuBL^ruODB&u~bQ~wyD?u8tec5NM^gaDX@zP8=W2h z|7yjc;+)r0+C2_-c6PkXR>-9;`}80^+Sc^>^OEOnffg)nfr9z7A?2qyNByx%gry3H z_y#~y;pRvGumsxswc;tJv;QOII!6{}qY%cM_JH`~S=qYTKg1#IEAXZ!Owc_K#MMob z?5fGruvGZ&fkVl50|E2F_l`1t+_Uor-iq=n4iA}8q%vA>cr6+%YlvGx6)&~2nLH5Y z`+2C|$fH5wu#Q1e_uAT#%Oh}HV6P+Z;N5S9XwB0fdIyh;#Vl4G@O4Skou!j9Y!{DN z8VKsetiVT-TC1nSj;DIH4|Vewb5vl3y1uoZLb21M0DB=Ujb<$(GHXAxs%LxM_b0Vb z5;q&-c?v(A^>6H~`GF2$io8?Nf=h!3taG1Vgl#cotL2GE(JB&ORu397`~gfWbTT{D zD|!j8;H@UrDDtoJM;MF4bxY^9Wsolw8uzy&j``)xx_D{pKiP)lyieMUl32UAe0k<) zjozRLyfC^gVdRtd_u`qOChQ>6#4PabX8e=(`6k*+x;pOkNpx=|iMg3B3_Sn2cmx@U zN2)`cYR}x&NFjw`P8#(t7+&V=b=#Ip&k@c5Nhz-Kq3s@F^IRf1Ce`iX{ne&$2C^#P ztK5g(`wwIXTB`=;Jd<*cmf-j%*8>eFZH>v!ttKsNoS{M2$RA;+mUDMWY!Ydlx+r=b zeqzmC!Nn@1AgcQ{EQV&d4}$s8MjvSLw#vunstMM=6^cO%Q>DMfmSNI zy|`$2JhEmkiz$p6-JzdCKB{kb3a0-H@cVWk3Q(SKefH`qP1k$!$H-W~NX%>sYlE-! z3{-aLO7Es@!o)VD{;R4WuT@NG%}X64W)92G-+x^J3ke2H1Kz%Z*Q~wQ478ZK%C^G~ zVM=S7i}~Ub+?<}(2+Yuwf9-!CY)jDrt#ss-)BUY6%v9QOuQMebO!p9j23e!F&g(^} zzd$Z@mcyos$bkMM@E_s!FZ%B;l~7+YqM7g%7~tAtZA)D4&7Vdg!xWc0v!_>C zj=W?d1I2luy1A|zS~ent{W0f0(66$_b)2~%cniK6R%r3lFuU4px21ng!6SxoLG1J% zETtJvr*u)Ck)7+1RET@WV{$DxPc-$oas^lEA8t)JDSKV zn=hL$P?|;jCX6qd$}G1u%(=iAY*$8aQM>Gji5$DEgeu ze2w&R3V3FWzSHgN}`4_?C{h zq*~*X9y@Ojho@dNm%!pN*vub=9>1QWC@?{K5*_Q!^4(G`Hq|)DXU@2jGFic~J9k*o z)^x7_Lm1wQ7T%8DEyQegra6Z{6kc>87b%bT%+^m~l3Zro&4h{qq?hkAOEzwQe)@O5 zy{7F!Cr=K{v(?LH(etpk)$YWdEe42ifF3$%iqBa~OP(coP0FLCdMz(?vuoomf>i{h+QH^;>5s3ZyX~nTPXyCR_f<_1CV( zQ0EgQT^A(XIfb!!S+A;yHcw`qSb%lY8f4OQ{q=m5X}6?KffxAv*w4=u#UyjJe8tKn z2=8bBFU)hg+K9~03)b;D21sD``+Bpp#LmS|Qj8|7FoP%s z{dmR^mb&cqe4_n$>sD0uyZbTDn)|n1WNRwh97X&+9=B|5$@_f((v=b~b}hm)_q5~m zKlqnYteHxkgzf&$?}x1SM4-_>3Y3!ep3~viBJrws?%;7Yv48#%#LuBOOUW~-Ct~(5!TLEljp>TiP^&9qGGK|Y+gQqP>B}^`x1s!-LEv{4XPhGtP)Vexy^kdN z;t022)gwpM!~m8BxXnYvh0c+ObyT;)A&Oq?RMBerz(Bx(= z8k|CM0}Z!gbUKn3!Ul7=CFmnLD;#a2(T^Er=-*T(q=Z}okBqvyX6l(nNq}NwPxc#Y20czn_KdQ%fNA}w_Y+Qi*?|KoQu50WZxUxm}Z=F}%7&~z< zk@*{m42WzI#PQO9j?o{N#C18azUgpQY5xfUPOZs4LVu^Hr}xRT{M_4FxbHZhV_4(! zVll_hxA`S*8VeaF7~dKQx`4nrHe#nw07efKia?!ddIPO=fB8ykz z&F&DK%D{=>O%L(9x$pih-p-2X{s#`UG{ol&zp+i7B1>c;whO=VEn1W!k9n)#nnk_M z_@QxS#UQ;+aEhIw0o&7mt|^ykn(^preja;B0_D3!geszFUXLB9g9GPq@_S?9vO|!j z$H#ycef@ZR7Moq%I|BMVKfZ9W;G?iY=8u znUD##-T>11+$aJ4j|Tv|W(ik8LhVOD(Vpk9i>dRuyxTDg2O2~qoZhd>0ou=IyH2So z{hNw@|#WeTtMUxXKlNhO2(p+a}D4xmdiQGE| zh+JV>K{tR6&_70kO;PT%ka$e%d32?KB>rO$1cBSm=vPX%f?(d8{y6i6|2l!r6M}xo_{)OzZ3IlitUef=@aOKB`(#wB-Spzq}l3F^A z&9O!pSg(V%o8rh1G~<4f|J*5A_QhEQT=uq3IQ^u~7K-BxI>>|5UW1uth?Y}A?QRoAA0WjUtrCTh^fbZo z1w;$8Xp(XY@CG+sd9Km5srSf8K^8IF86@8LUsv;4Tr*kvK&#p5eIhKynad&D8*S30 zuT&I0QcvQ3p$z@UbAr*a(=r+6kmD!lg`-7iGs$PO2+%)z#Ip+;U%#%<8%_5@!y{U7&VbhQoVHZ|4}uRMA$#42D>GE}U!eTiGE(Q;~lGyM(wtQz=ce^%a zcg#P#{bW*o8`02x-?Xh5uZ|mKK0^9msZDr5XfMdO{8=$GtFa!--eyV{(@vh0F#0pq zv6Vw-8H%%;%z3Pd<{~Bysi$_=Uqls@m%>%&=YjWzEv4JUTEx!nuKj!9(8D)!QlZeh zM`)Wv5Zk%+KZ7Iqk3G$nD#|}HH9N~Td-UOiW2AE6Zd+tW&*S0at0p~n<}N; zAKi3j2nn%sS|)x#IqaepJIBG-E-1^)!pznPy?x>PR-$JZ($}L&XNuv zWM862q>KH&x&0~j+sONBX>$;wcVg*Mer1o_-2d>#6L=5=bCw}$YdY&$R`l6(MjW!8 z$t7VF1Ogqmx(+L3%yyR-LaHll7Y~E7i~La+6lYEcH#Fh3gS1rK`dVJWZXhb-4R==> z0`!MARkmh^CpPf>623`bcRuY{^3e`n-0i{DzD#;+OwkH>45E1KnnHSQYc84i1*R{n zXljT9nVm4tgPZ)>_I)O^QNIq3hiHiatnKh9Hx0@m8@6g6Q3zTdY12j*jPoYRhVASk zkxctd;;l0CaJ>8&s6-pbo4&LpXCBYpcHgY_XoC89eTgfM<+JuC2y$x~-zNQEZ1?N4 z;C^VWeE@*xtgH4}@(Gq=`&7+ct-0p5-ig5W>-Kw-tmx%7y8xo>S6odJW_vqza}5C3 z+*xZFtjM3@40+JBwhAlyuCulaW7F5rE?gj4B*|&aU*ik8VCmQo%RABLgG2GZZA_hp z0Uk*mS9A)?_%Z|F@s|bAxu3(oHf?D?=;+;UjTw#ycQV}u`TR{(yp0~?Zo zuCPBUdHPdk*%9&)X0h3Ubsh@jc^_E7)#xt}F!X!o2M;Bs~d4WNCki8pgzD36XD@+;8H;h?5u(^h3sp zj{O$QKil&5-oo~^E(7$14&~mU$S#bSGn>#Ms0$+@A*@QD6yDSvmgDj4p+_>3dYPU-~PzPUstEdicXdd?lZ zKBRddM{8+j8~8LDA{TUtBG}GmiVHG_CD%94?xOoF*_V(D=VxS%&ybobXcXtf;!_2> zc8%~ug20@%I&XeF+&!oH!uab1J&lal+yBejiN~^!Dpft<6#^`pQJDK zY$LBQg}Zo_b^kZU_c|z%LfG;%E0w_>bRNm?I0N%e>u-WQaRBr_jyPB>)03XAreeFZ z+kdj-0zI57D=7H4Ng^^wx6>kvxc@}XYkl!FCRVV+U_uIPzjOTGjP*C(7KyM}Z>|&} z4lSU3AR}1gBy1@Y@!E=lj!H0bRBoO%rX@0%lK#OiZHDd#j_wbzlDGHg6$9ST4zYh6 zl<$HPW^>iNFvu7GQbR~PH_c?!82FlypuemA^38s@e*TwxPUdX1fvI^6R$^N)WOl0w zxT!RQ_xrLYkmXSs0;yZmcD+8}F?OXzFJ(>4DB_}HU(@ybJ_S+59Jx^=40%5%zJwNo z>QuVw2#m|9=hbf<0Bh2LK}&Qq;g^bOXj5tQo!W`oDqFk=`g*6>hG{HKU=MWd3tBKX z=Ls+sOi*jL8>e5Q?(Ue)d?xn$OG5VwXkYiV8!(E2UsrSX_cBmE=|~B2RM=PkD5&ct zq^Q*3vWg*jJ1FfB(dYvSO%sCUs6Uc%S2BrFFv-Tg@>b{u3+<_9q8_TjkZvPc6YtQf zNkbf}5bxvtogI{_*;KZe>G)X2k56$j^|W&lzVJ?g@sw1bi53?)^$ye8iqv~!3PWLh z6Dz4U$WMS|IvuImPMlCz(Dw@MC4eMw(l3-xlfLP-s%_${gM{GT%E_SNHw-ZGNUz`b zD&WGRQCn%cPa_yf=<(ujb)Upxj*Xcz|84Qp`3F6q1wFdcezG0)^kGt(evP2!Q$vZ9 z$Lo_im@GK4^RNx3Nwz#v$nB2uYvksNA*ECvZwR-QZfDT8>ggD_c0&Xnc2k9`f7J0J zLQAw)e)>WB2)H>B>-Y}g&5Q2eIlcB}p&1Nq7n>8zsO79MZ#-_o8pgY=K74Y%Q-~>q zKrePb6o*+FZN+FsbykZO*`*kFA{bQI4hwM=8OQKzLBGREv_!;AfbDnQm@FN~%wc1D zrQ3w+KQ3j%<4Z&i#PHaK7A=W}#Rz=x4{{=~32yj!b`;?A!rw4sg34ZBkZUcqr^M!}|2{bazozIXRX&5Ku~thKTrt?FaZxORq&`P8Ax1^R^H6TLQS zklh}BCR$X86Z+-uZU?jR0}C#ZF)H+dw1RKBiETTGs6y9kKL_yyk1~8(C4Vxij6=i> zx;QP_c-kEsOFx(v{wuj?Ay&@BzVJAoJYbOwLA)MYzB1%an>^boCS4|Dy;JPlvnN_h zs{bHyRNrIGq4=d~?RI9F#U1vlLZ~!{<4yM=t0mgV&CiCX9dBx%`;pf-dOt?esoNZ=si5g%hJ#VMf~@L1mOdS848#Vca>K$5K*y~l7eTSCKq7vg?mG7PHF zT+b`Z1D4_Rmrx*ZcRz!j6+@TLZkf#e(%64}A5l;waGpBsf_9CkGF z6aYpq0U&xA)Gn4;*|Agj4Xuhc{&u-D(_I%O?S`OF?br42SB^|zpWhR+RnJs+K7IDh zYPN$ut}NT?T6bz(I`z@*1;YpZFu?D8cVj<`3FwcE2OP0e2xQ6dwOTz^kGUyAbzLv9 zbtSN%r$U~d9#Zsf`M5j{Z^Sm!n<`Gk{uAZy$`^IxlSA8y3^%1JeZBn)TP9};WR*fS zkB0B{po-nEIUN8!NSWJf1G;xwBT+p|cgoGehG{jzvZz5x4d zsv`^Z0{#9Xc3%&Cnjd)mcUMDz06Yc_=JWVzDx&SUZZju$7@1F2ilEzH-YH&+!Ow*M zM=7G$Y)?eSxzW{mVoT6#$j3&K%tcxjU7_(on&u78?O5Q|MH_QMO}u;S^R@>&MjL~l zJpDYa_F#{mFO=m7n~wXPH!rQ^dzmV87mpp2e(Y_bTA@l|s7jqel6e7mn3LF|j3W%z zDbmFF`54Rk%VCZe^tC^J<=`zc`Qq@3XmeYZ_>h??d<99twrodEh}|fVb0~kuU{qwz zw}{DPZQ6hG1n#x%CsE0BSrA)HSZ8e-wDC>jRm===>8iMHLz)=F%Yp2ur7)WH_BaP& zQ4&@$TayFR-0J8~P95Oihn8;qlEc!U84xC-Y7Me+`!ase%SwZ%?Xj0BDCQ2ANC;ty zwxcHY|5ybF(wlmmiwYm>Z3n!Y@Z**_aaB12FPq|c2ZcfgoW)O_KEW*>?0?<)_|~_r z(KKc??{dBX{;-{{#g3hARAr61uKdj_djnD$zz@thStq9JH;e(KpCcG;;prR#XE+ku z^DiO9j~+H7YHV+M{$H_qdm}b)XqBNWKWFeNTD{4Z8T-zRX(8&?M-d{I{&4<8uYexo zhtEr)&vKuco=0TD!uhoeC91|EcfOoR;~WO*C(vh9vrt6AHDBCN&pxMXCO&b-mRa;B zgNBF6$Ytiz;aqgv?8=ASOMvnqwUR(htRBhasu+T`xjWbKv|0vG?%s~H4 zHLl9J^d+;-1GOuPaSIBz8ev>Ce_Fgni}StnHaFw2%e1wbITE9 z4k+Uh;_7)pjqtYBe#~?kAEQgT9&#p{*()WpEXeWi!()=wfo(liHeHm_!&b`AP)DfG zpLfkRH~>hW+H#FF;u~zZyWz3-cbtGHaP15%WoRh1^>TP7xz5G*4vAEVztF*La9%vq z7(j?4L!*Js(q;KNLYCWosLQu$?*3(!^5-a`IvPt|q-fCu6!zz>SBb@;P z;e&^*WP?vxH&e4`2Q(!Ehgd%>^`u6`gd(H!f0v^BWG@H&7RZ(VJrTVO0ch-GlhZct zVln-a381i%cnxtTI=+TXVe?JUCz_?f(OQdra4u+rJB^!h`y-6r(a>EKU$w0BCo?bf zkOq`#1M)CZZ}h=JbV|Q+tl^u-&i#aY7N*p9b823`VkZebcZAY2*%n(QW5g|~O0SUx zBVeM%bq}_00^4q@Y9-u4={J_Ux}%34=}!au-jBc;tS{L+^G0MPorBw;Bi7k0A7V#_ z?ER17BwBefE^fl+c^fg^2RoKEo7=4x&VLN4jOQRMa!qrk3A1%GAM;3C9*u7;dsfvA zCD1R6NS{^~{jpE=_>G}6oob;tij~1xMnkdA?Pdy&{b0n+A(}Rl%b^?a$;U_%j<$?- z&uOSx*=Cx;kCGmC;E+VUERUEcAWN=MpP;FN+CnSFuK2IQ=IradBVJtd?uq!Qc9_?z zzBoq9T}7+$AO94&KeJ0U&RNq3u2hW3kN_JqH5^0zD;`ulyrB-}RDJ zPB)4E0nPjgo=f|QH#*Q|!R3pgEw?4N^FnpqPSb^5F6^WG`3hzO6d+71aiQ5V*J17g zmd8H?ips;^ODqq7^pyFLWR4TnF|nbJ`N{kNEb)*#>*HNh)wpUuCd_+UwK?SXjt_U1 zrtq4UW^bJ(!nw$`!9viKNhwrFQQ)@iKpI9i%*-Dlh3Wv$JVzNYJz(eJJh;1=3Hl3L zpqe!o_ErCF_V`c~o&I4ZlcK<6&|&cD&Y6qrnM?(hpH>Y+TrcsT&2u(e3WkDCQV4hri z{GlC_J{x%RWOY}MAL4$+m15QzaOp028+O%ltO_sMah&$+Ftl8NIwZd{Urs>mbQnghke*c5n*9X4>GNU1ZmC=3;&+(u^5aq*o z2V%~E=am`Ec$NB<#H=8LpBRrn`B0aY)4?)*>Z*GQeP$#WRu_SoX1GTzy3U)D*kud< z9dyitYa>wMG8XYl*}T#_bbIK0g&UK=(;zx}^j=i!*-vc2!{UAOA2@h2@u&CfFaY0w`K)FQn zi%UQng3um|xV&c)kzv7dP4?)8&X`AJCi67)v!H98FRs%9DxcE!(KF9#7m}5=gr9gz zqg389EYYhgdMv80+@PK)=X%?!IC6EE_2gHi+)4?2x8;}0Ncika1?u`|}Op@)Z^Fllf)(5{jp%7+njBPDf=I15kdX(7Is$I zwL7mNY!nB=zu|gNj_nX<)hC@p$7Vx%9X>8gCr4+i!&SzCX=D0?_E(MfoaoS(V*>qV zl^<|rapIR|vrVG?CNt3Bxyaqgz~|_#*hYeNE7(#0ilm_q3l|SeQu_;0Sw7|QF&wRx zF#bo3C|)O)X+Uh#xZ255y?WM&3ikjryz6Un=HYRL{K<|RHmDIT_^|P0*D&H~FI-!M zgxyCVkci^f!fuR|y4szYc!<=X?P>FIx-cYGoBSW<(tp=&**Lre;BQB|zljL_4Trgr zGs>W(WTb{RfPe4{8GrrY6po4L@>mtQ52c;o8l8NP%?<{WKm1vz`DiBZ&&ABr|7ZZ5 z<9boHmiVmA&bC~%`^maE*UK-qXK&tpOqlI9?J;)mNvrcafADi_IC=EVGkliCSi^eS=bbN|IL_~5PDVW-9fw>+Jx{*Lf$}Ny zMdRbE%1pTd?-XjHShxLcsf{lGaG|rT6G-w0NeJ3H)}yGQM$pfKai4c<>t&y@&}^0e zarmMdm48>61$p|92yzY_efHWBDxGLrmB#k=t2gAuupD82#Gt&9ZP`~zZ;gnzEx)xH zN_mZ^&ilYr3SSwegvP~j_f_5uz5l4uOZ}~Z8QCMJv<)0$iB&3}Q!$?{*q)WbrJr_{ ze4@@T!5hW8xk$yn6<%wHz0P1OLhFOf@}NT6u0*i|IJkfC^FIpS#cj4^*-XT{SL|3xpa#^=UcCW=z7T>i9NxU zDQZl&#t;oZYj#RK4HUxlJyKo93}7RrDV7YCUvR@e%w14ex)!P`iab`l+2GIK$Ya!c z?(%LjTGB8|Vn>m*-o@0oF}DX+RVL!2du-Orx+Y=qzLU>JKWMa$*D^T@eJ6g|_3Qb^ z4=3=C(6E#iKEd8lKF4Y4s<8Ee?o$ouiw6dzBEhsG$`sEncywopVUyTr%hZ=0avT+Z zV|sTHb6YFwS&^P3rR)HGU?DuZ|kxiJAMCW2l{M?k*)_b_zkwGP$%e}-!{J0 z_df8HJvkLCL4E_4=n+I$2~23(tt`B0I+MH^3I!KQ+Q?JbBDaOao9Y3^*LFG$ezc$hqEY-@*LqF zE{pyRxhq_PoYTQWd_`{g{5ueluRdP(AsV^9u}v`&Cuu4?p$WadjuxchOyjHaoKQk9DVph1EVUJ{LSw=j<>GDtGCh%PfA#8TOJQ zLFROC>09@$!v`)J1@@0-iPb*{Y<)-TDP@ZdNC^ABZ3WWTRY^@-6N;UJ3#kTFGU+tL zhDR#IIS-kpeJSG|hoP0*V$E-mD$aXIeGZi;={rn-Rqb3L$(f&QVe=Yd3M2q_1aX%P)yzG#| z>?;sG$8X#6&>rh%&XDwN5rUsw&ouI6?$(Z^Fo!JGU`aRr(&}2`%E2tT=MMDiYVn zv0psj2a*HivR*wgqD)xvYP2AKfUOhP*fV-Nt3t+1N$YSBctA3C1SI68PlLdzo|6tA zK}1Aq)dDwa%<&Nf@UpeZ8@4y}9E>`$&J}#g%$>8k>G@H%@%w~F4orJW7cPKL#NGFI zj&)0EcsXr*AE$0WF&0;`2)ks`l%KVLzS@52YdQbk?eh?r>YTYg#hJ{`^dKQP*; z!u{X(3JitUGFWGC6PdWT#;SNkkM1blscVZha=E=$k~vDXJPOb;R^#4$x=h0U#F6E4vPZ8oGlCrj*;uM#zZ0Ny27VKtx1e7oMqPBiEq3Y2 z^60cp&c6t21c=)1+%%H=wT;iZSP_z{!A9b*@iv3b=Pv&YzV3M-dHo;gDGQ(8!f&C^ zp9Nk%&SvRB$-cm&*5?Au;mWAhllQa2tsfeW9}Mj> zLCZ+z?J9=?KEEm*Grz6n%W~~V31ssmUF-8y7H#l<#B)bGS>~0pW@f~vW=KecPHrPP zdSL&UTWzIt{u)9UR78bPS<=hjUbT;@?n`4MJF4&W@ErCntN5Groh1Ek-*BAr*MKl=QC-KT9CS#EN z$G{t9Vy@dCaA{bRi_GK91eN_HWYW^adU_?e$SyW*4$o*5xj_J^Q7KTHGJoFU7h%ts}rim`s{>a*6X8}@E=8%VhZS#2%@?{5E` zD5SThrV1ZhzHgC$U-_gTI(FlT4VUYsR!8`p)2hMOE5gaK*Ue*9Wl4=Ji;kFB(>ym- zc=~0A)jQ1F?8^E)l+fDmo!@DRcywBE^Xs*+sSlF}>_7Q3dbaX~3gVk-90*lF%v5e` zdZVV6No-!7OFzV+Vg?g_vN}XuDLThPX-t1kBk=ubvMr%OLkrI*-@!t=RX>E@#QYR^_|(TKPH2scMM5E;S$l;7L*o2 zR1Y=yYh@3F%jDoaQQJu;h#+fk7Jscr`MIKP}zh+%}9q|I_GJ2_%C|Dgm_j-7IRzh%fJtxS=Q ztj;l*NPye_^NQ_z4BfmH4m5=bUTaJQ{gR!nx}yA4O=`*(7-+Ov1Uxzgcl^1Z0RO@a zcPH-i-v1^rsmD&J<0JMjcX|@~m@8_8> zS1U=BdW4G4e<_xY{yRuR89oyp)2Y$1C1~^+D|v3i@$&@ABbZUQG2|{SRz;(tlJ*BY zu{UwLfLO4vnB95x)ywXL_l}>{V?v=P?34+o)N7E-dtR(~@5i+mnd)Dq6K#8IwZ=tJ zkR7)*R6SD905p+$4FBnK6L)_lF2aGmB8%XEEjqMu3c;^8Ex;sH+f(z~S=8*Lvj6gJ z%Qd4o3TUJ@JF7beQg=|i9b?$){+7uF{Uc$Oe!w{98jt8;{?u& zC<`3f8{1eC&(yrZr`zF%N2b`r@HyDTNkPshWYPbib-N10+8@-nT&vnLwxEAWJ<9Z8 ze-bAE4+Skygw?rXiFLv6fI{QH)9cqYL-fIa1QNLl8vGPGK3j1-uo{?F(QXzk z8cweZNw<9z6k*DiB`&vx(#ayUF4)C?ibAQ{>QX87tS+Vy(|Hffe23;$DjGrCl!{#n zmR>6JF8K(+z1z=$pePUEH`HTix$&lxM!)+0=HUecN-1aRKb`KuYk*Wdt;dd5sNN1W zT?$@ff`kUbfm6Gxdv{0&2WpvcM(Pa?-Rjs1isJ)D|BPxYkbtthk}@lJ^dnLz;eF5H)yMf?Q{9KM>+a8Fetg88TzaZ;csJc0GT0a4Qgls$M~1_R ziXR+mFzYKv4x=IvUl1gY+qaV!e@dq{$d=sz%FoLxv*EYp=;k8uax{W{Ea*tj-TX)& zyd>r-tF}dfe=8l#{`cqvoL4Mh3YiRSKR3b#>~6^yL$xh6aZI-VGMA6NlTS>06{La# z0p?%JSQ1#i70kW8(YM*V))qEaP9@DbI)rhn*_rs4o_S_AV!XxadC`>46t3D*Me%o) zMhH6ii!I_xW3j3O{u;HTCxiNz*FRUwT5Uh_>e*cR;kNf8sSj?3G8{T9zuB$R4L3mmD10&Lb#O1k<=pN(0>-~=2Z0@0> zG_QVtfpopxP>vBEdO@uA%J%#t^+jUdn6xKn4}*EOna{I>mwM}ZQ+`&Du&b0pH(^sX zR`C-uZHQ-!ED5J9;gw@WbEm2|-dt$fpbzIpKb~NNO=zvmdm_83>e%1ciZ0XP)at;zI=9C6m6Dyd_u>kxW1~Fh{$cVNk3Hb zT=v}NVgglh1IpAKW7^8I!X{4Vg-QU8PRqL&vrTzi3EsC&BA?^w5TzKB6#>c7GGE?i z^MFIg08{zy;J6-Iwdog#Wb?=!r3uL@$l-9x+=@?t!hn#-*v_C%&v|aXmL%kTg&OzD zpq{RmxB8Hq5c~agpGz&kA!0Y$j z7=ROSi8fPTK!-Cd(+YCsfs<~cWX!MB+>_k@lnu!IpDj*1U=}BMylb%y4hXZzP$*cZ1C9`X%Bfi~h9Q z{mmVC5G&+5_C0>x@4CHK?2a3tyzSVi540}Eo|rU1f}W>2$P6@8I_!TrTw|@eN6kc@ z^$hzypy0Do)eoF1^CPSoI6%zz-qg9civ$$$;hi3zwe|7vq`aAQP(A;#-j-;uX;Tzc zhk7H5o*J87h-zV*5eFJFMF&=P!77D!WFM7RH~;;*FJgszA3&%k zA8H9iX44l#l<2gA{zkCs?*$O&dZ!92Exx_Zsnfwe!Lv(SaWI4P$MRk_D4_Kf&mI=oCJa83j_5$z)Q21MR0}TAYH||-_Dm0*bEb&(y z?L3_9zLc8@|M$IkJpCd-H?gnE_lb|x@-U%W}LoHdOUUFmdQiG z&=Klq1GzA%`%WHa%+CLWf^Wm!az5##ismmPhGpPz2BSOwE;L$$^!_jM8Cw`ECx>ST@$ZN&=fi13s9dHc! zAosa26x@c(3Bex~7z-^y*d+n?4@=h4QiEz0iRR8t>ebG`FHfjg?&=3E=lj&mTjs9^ zU_>`1V6U^_>PvTl1rqI^to8mOi&lXHln}AC)s@cBE@n^#jdwH_4S$F@SQ8KUlfT|w zIG`N9iH3$^-Dq-P-Q#!_(-82Z3dWFha#9AHUSJ2vp9M+Alzn|>O8!d}p7HdiHR4hme-9xvmKIudFVI;`K&gfW_x*y%xld?wJ+g;_fiASv$Q5cJajdtR z4C8PYr{wu{Ebn=c*b0aUd~|a`kGT9(G4odH%WS3*xJpx_9{+IWofZ?XPUB9r-q{jv zr^=26js${vUxJKsQMbr>E7#XM%^}rt^L_khnlX{W0q_5J+DrM>uL3)qbDeK7sCReF zc^9=6gw=+8JRiW%VZk&lwOvI|O@t&0(0+dde~SS+cCLT&3_88kWdYW`@yu!R8#yk$ ztZL;PTcm&;>`M9wzxai23fiP#5SBbf7Fi!gpFauIeh;o_$|NBWNX+Qo|8S8yXXweQ zhdE>9!SPT{l-YU+k2VSsdM_QMy?{(3nWa2;1i~uGvp1Kgy^3crs5&uPZ1TZ54RH9M zEwkm`7>%e)u{&Z`OyKK!dm*M)W$~L-6cX%n-8Te(z)H6j^(Nhn704S&C7G*_aqCsO z=N3uP15`chQD!SZU4qZY7`9_+8h?KpHJwNB9k&)65IM%mxx}IM`WouK)`6k8wfU>lp zh0iVH2pWS9j6YV6MQClt4~=Zh1miZ7iL{J|D4H*Z+Xg}A4f1AwBzwz@>->(kdt>Jp z6WvfA=h8ikBe*u2#IUN~JdwXtYv{NMfg)rI$^7Q&&U30mlap8{@?6$0;9bn;NMqt^ zxQ8lq=T+;dff$8;9Q0$W%gyzkKJ9!r=Y=~3{-HP}ExV7mTLh8^v)c@|ewT4>3JrT~ zA|vh!CZE!9P{tqnk%wVCkPrrcv;xpF`UdQTor6`{UcO#tR$W*$xd zaQR=?x>fZZaM3x5Is42|1(G?o5P8~k={7{n9wsMyDaN%o%FP6RQmU;j*36b>8j)Af){tHJsugsyPUave;^XG(dD*+Af`y_yNH>lxG39z{BTlW zuN@a;wRC(%O5?sk9ax(=1`r4Glpal4V#N4idwsrPztYOesKM>VidCyk z@_jj7mFy#j?*m3pkrn-L)44$F98uQv2@^3sX#Qp7aZ~k`Fv~dj?iD10P;E@sb7$LR zu$s(6EoPs~O(PzkH)-ROF*v$eEW+6j>#{8*t~B44KrGjOQjSUD5UlgskPVIhF#5)q z4kuwu(qsi+f9|_HEot;nW~sC1*NC;)Ixy&TIb)oc78SzEh6vPh%AQq?p#sef?)LaW zb4wlU+BrUXG_m8InXzWwzAB!-KTglzLCH+Hx2t$p-P%s_ay~y9{q@g@yU!w;=O(kr z9tasPaocy)}H-o_t({CQw}{@^5bfuU(4hast_sGQa6%CN^NO4DQC zWJ_PV&n2Rhg(nmL@F5^c;)vV!Pjr8N&7bYSipSi)+yp$lHyLC6{^B+FwpBq(p;1ul zV##l%ew+FSC^$Q@aC&<-%{a0z8IJij!*i7&LFaF+c@|sO-*Jkqc^=s4&1>}2@2lR# z{U#_i_PVyAYi@BNVdV1*HYgzuppN4~JmNmqz>v;%9p~%>@IC@Zf69S@?M*z?(vcaV6^iPI0o?WaV9IpJ*^%P&173cXeF0}Y??ep*55A$^3%}=eEJN=2mR(A73-4m8{7X5N z1&`Ud@vKl?8bzYjD~(8<*FA zaV3#*VM3iniYh8LQ`GVT~b+J@oFW=irGS#izIH$Hu|M zr^;=g{*c5+tV6nG?cWHOQn-FKHme&$Om4L%ZHr4nZAjzZ6TVybb(q7vr)_hcixI(?3+39MON_a)FD+aA|HJsb%1i%r05w2)vubV$6oT3qyF9-5E z$^Hq|Tde8tuE&A_j6=bLFSs^R6TGtS#n)KhL3{ZTXLkPm^ao%{${KVjkY|&sbO-&j zkFQ(UnxByL^^~LjOua&}lvTZ1@S4_lwhbMp2#=u1%~DcyY4PE?IIrsP^BKm&G1{%p z?rfHaNzt-NFQ2D)MQaW7r>A$pt=S-9pT-3S%*ZtkG6-SesTU-*{l4?=yCbCMm4dps z(FO>dnE3S$_PloKg&W`NNov|a7WdCSmjo7*^LmGZRc+U2w5sS7pxG1jOzZuA&UwpZ zwCmrds+&BJdJ2q4%V~FcLP=~E4hT;TDZ%StE?NYiBMJE_$I%`$TivGXFm}>Tp*+6o zeeWgntKs&z8QjH*5)EFwci%vfbhH{^NQP#@8ryck?87R{^Q79=+t?R|fmeNF-D$iwBemrHw}RwYZ?1A6^~IaUS0eI|E9R zSfq`loFQuBR=tC-wV;-fKW^0xbR_MkXW$y*`yEHCPK#m}oY!ZdK^tMz>FJNuZ7vL9 zE^-k@?9UwwTVVe$(K@GToP)xBJm%fiNZwwI%ny2Ha7HP-OS9_$-NGy9u?YV+m~l30 z=SS;e*M6Sj2KytS$&)8402*T^cq(ni!sR8$4JyW`WybAmSgziA>O5DI+0g4hj?FCY zTt9Z(+c@x!4Qx$AVF%3TX`Z2Ukv=;oot)UT@NEJgU6-zK`0Yda^ItlkW6t*>C(TYT zdS2-g`~`ZVHvcwZpjJ8F{1&Atw54l}E57isZO*J|dM%CC$gbMz4pxhMasEU@rLm*5dZ$3452EdX3$3=>4gTEA*wSZ86GUKz9>S6-TVFw4 zN{xQVnhFE$`qRB(=-i$r;efHTlym~uC=JN+OkpHZJ1zzDORhBakbe+pxjV_A)ikx zZ+=5llv#X5c>{QLt}Tz)>T6J5_g17ZC1m-PMxbqGBlm%=-g%}{xTM@Kb;2Qzq!NLB zrd9eISVe&F2k=y|UigJx5n8Qbkw=>T8@G?|*?Nxe^yChx!vo<6uE~K(cUC5xA*AC0 zI;$Y)`{UL1B;IjRlILl+i?4+OP~=xqa_08-mDvmTg)KMj9Zh6`4I77yJ8R^)O zj7Q4=`HM7`k$pS2Zgzhx-ec4MK2p!U|AKb8@l&RM@qfLiUAD*MW}?-+)PL3Y3Qen( zn=Xym8;$ zghta}GU|RQv19r#;ivixT5C0%kP2$EAR&7UgrzO| zD!_rLO})F-tMMN#J_g)Wg3YgED!=DG<_`wTEO=U8IA-RfG_NH`! zio5Lzvx?skjsob{!(t^?L9Uv7;|DWYGE zm0V0jyHt%~_8yoIpQ9FspH$B2S+ZYd7se+JbUHdyh~N1(`#Ka`+|mem27Rpf=1=m ztAu^kWu)OzR-exY>hsfR`hjhZv6Ma{pIH_adgMSnv{eB@?j)fkvuy4W_*ztAy_-ZdYZ?5=WW$o$Hm@q67mZD zoLezH@3%Wgr@A3WxbbD)D>tIau#0Gg04C96=n1?BJY}&DRK2rRJ)<6uRJciE=_U96 z%m1QL;DqUI!xp~o&8Za_NA2$L>*rjvZp{fDf{7Hp9gQ28U!$vT9*W+S7CW01(pk<# z1#V=&6JH7NYd$`fUhaBewFU6s7y-5suM@TDr|KW0KNr+6jt;~aEB`I`m{KSW&>2z* zS5fO+l5?5Vj>qUE+dn}C{L-?VGp*MAvEXdy<{5V@tCbRGCvDljS zIe0QGT?^MSZO>VmsHofHD?Rbj=#b~jiUsXgvPyG{nX$8ujz&mre9LxQzG67bJ-{dF zWh8rzu87~UMB~bi2*&g~@e8+4iE1iNThBDg4on4(BDpWzX_3C}-566=dgX9XoF_8* z5Fl>7XS{_pg98{8x%Esv$hV_WTIQVpTJNw6*YY=lU{o@5PZZ^oou^Vf)ZFT5qVz zg`!vs?iet*5IDW35^lX1mLlSlveG=7j+pu%7kJWKhKFZbqCr+*1{+vj;XdumrNq%G z|1@%z?g71zPY~^bYTngntIWPNj29`+qlRDDh!<@f_?|@_eaGm*Ug>jtaan!gBrId& z$DNjPp9DFxiS!(IbHXWO>!1F%`E=oxzNMW%+GGad2r;pI-QtV2neia?Vjixx-||qkR>P%BGsw#M?G(da}A%O zHBEC=j6XGtg4p=}b0-U{xKcJeN9d#>AFW9^m@jfBm!8q9kgB=!W>mrvfH}=!d5u@AKw&p2EXlO+e zS#KS9olWvE$Ob{MThCFfrn9-G}mN9&xZQD?mZ>u z@1AS&t-2;oPg%jKGkH2VXz(aL%S$((i<;}zakY7Ao5#Kz{TWAof6@^G0Nxj?$=$x* zEViAIBBwa-G{Fh9jrIL>kn?>hpwJ1?-LB9==qNAeuE*imsPFSvijT7ASl>~u;L<6X zL2{pTc(yNC@llypmA36BGZVxU$3x47=CEj;$oikQMKJ8>-<}e!)ou69={fm5t1c-I zw!nEu-`ArOUGG*7ganygvj@Vczv}?j?%)8LPmprYP#{}};~OU9^s3iZgLwt>XLwB6 zggrvR2A-Vp*~?uG`RnpS)xa8H2%>Z9qs=QRtToI$pf3R7I?$m=`{l*& zjH5v@jf0gM!|H(L5OcROe;??HU#P7dZLWp0YiKaOd*0p+`E(YM)ydH}0%XFDB@MVt zj5>5duUtI$)S?$EbH?rGoDQ2ei*#actWo)%um41TgO0)*ZdSuxuGnMk`QYz5y*u<_ z)J%7e|BEoddG3$jvg6LDo%1n$Fst?Kx`5|6+$6_)Tq_(17hdVVH{LiWY<*hX(N~u{xq+?+)rdUY$$1 z|J~K+aa}hf1ujfNu=QbEv5uhW-Wo@FG8$T-LY&W(v`}|yoyFNEx25U{CDap; zoQ*sig!sn7Ms8S*0J7mo-K+5(fa~BwUt6j#H`?5-ac3o&{*#<^j=w#$>H(CvzH_|d z4b*fz)K|Pdh{;g%C6sKjF>6Os=S;4$ihS3K9o{C+UZQ1+51fTf$L|Ee3}ODDZAW`t zd@p*sP}RmOq2h>Z_K#Pg=7UKA>d{pZ0I9)?It?uDJAE(!sF1dPoY0@z7Y7Ect|I)@ zHN;5SlwejYT)Y(Ylbmr0>G%SPx%Vcv#r8Id={@$1jG}o^aX!6UMOf&GmQTIp+O00# zL*A7m5$Jkjet^#NNDnC&DwA#|{;+(ZK_b?PS`%X9p-rKBp?0_<3O-qeUL7OOKB7w+ zM3_cNKv0(P#E;x%JM5=m;rA9}lH)GCB>|V|lZExQ32Ffy`#_nbZ>AH?ia&txFo_zI z!n=OM&XI4+9}#D6CE_7=Qos7$-cDc8iMuMz5=Kz_VzA{Gn7~x-@k)Q*C1*TH7q#{cRtRgp0dirX}0x86{YOpc?(dW|33VMyXpfED2PlPNZ* zVL38_Rn5Wwk6QTEN^*|139egg>fPT67Hxy>;z=9Ed~wc3t3PKpS4j z8%k&qQXlDh(d_5A>Y)Ebc8@E`E-r*1wtA9Zp5N$_4k@0ZLYjuYztALx!Jm^c-x>3B z{TGE#kZIW8sAi7+E+~Ax;f(G*zf#b?*$7@_64D1&0=!hUn+Ivb66}OX4xxnC&q(oY z=OYnjOe?C30KOvj2eov&*nKoZcdxEoOr52DYO78*7#+~d)qIuXPKw+}Tmtc{Fsdx3 ztH%hxJARlMxG1H+UgI7~6L{i&xQ~t@9lTHk?pgVv9>ac4_XstI7uDV*%-iItfr27O zH=)DZnxM4Zc7|I|k81;%+{?|>$>1c(e`*?vZ-l)=IQRWi->VF~)+nL6kI;nCM^9CT zv6ZU7W3exzt5dvE;zf@QL& zzEfz*?XcN&dy3^Pjl^F$Ia*f+Y&T!blinRm>4BUWwVj80~NPr_h;y9(>=J zIlma@q2T2w@t=EX=%L+_^OF{=3##2;nRsecRT`*Y$XhEQXx&H1uV%B__L7LgY1|+l z^(THM1I?E|OWt4Qj(B?euAV>sAcu<&j@aY1p_b~U31<2>dP$tcF(38YN~HgDN}$wuDEYuoH-Ke zJH*SLklQlJl^T}o{~=%Q$$29AealaqlYz(y8r%Yu%s8PhF<_U6R5Es&Xcudz(dv{r z&l5iTtO3_H4p$94kd|{;xu8w-W8&Oi2fcMOdad{XS?431tZP!(1e~JVLqKnHhv(Ff z!ULogaFiK5w9_8ci8~T1HkHplT7;oG(k(-wV*_)E1=V?OvZ3%QX6*68G z=a$V6xD@WmB+Eb5A6UOjIiFxqve!oc(hEIh(WIN#3@=Pi`7`8%)PxB&HV`uQTGFs& z>{ekhQvl&30dGfeCg7^1&7m(3@v%g!!e+`UKBHHCj{6iXog}RjL}YU0AIMZ`3HRS0 zZbH0;E>xc}A_zTrz7K4h)0=S(^_`lX`Ugr_uQ}E(lz_QyPB%&BIRz*+)>GeRoh98G zmd;>LV-KA~`;*W>>l{(izf5~y>)5hGx4)B%?*1$kA!>C&J~v65CtD<2W>%pa1cBv6 z|E?K)?j#B*&D7n+;e)rVGwya>AS9x#j$+P_0Hx`3HC&wi@%!^#&wKLleAkYUk3(t%g}s5XV$P!N}0D^oQhy3AL;K=$_|2REaa&&@=zW(#A~x(2qE2 zDqHHG>3o$9S7`)j@Jk{hpLokS{=(O0`nf*7s7u%N$aSS{n&ot@z$#4nLDF7pV(aG) z?yD=zOzXOZo7D%8sjVbMok>Fu$b~t2Ky?1@CnOjjLiq;$S+^Ex4W)iV!nD3TQ(c#5 zpQ)wueV&$X`6HTS=b)!d6dgSMdv#cQfiYP!X^ zkYE29r2agmh64Rle51dsnW>`J+iKZo%b8^dJx2_ zSN+lQ!+e>QXj@HN0_MHCnw$NS2S=x8ch0!5xXQC{81Y94EE zm@*^2rJ$GkZL;017?KBJjSAr-X;V538Nlc31-G z?YZ>>3ID+r_$448bbiZ2BMhVYsrDzaTj2f@G#8bb#x)w_I|QwYI);_xwn&HDzD#5a z{QnDlHa;Widz#q-{s!34H^9WS5LyPAY^OY zON$qt`qIHwh|lU!Z5=^W6?&2E)zdf6#DfmjcwE5Sghb5mA*vBe-+5P~Zu@{-$s73A z&g`)Fpe+g&ad0*ajo*f7i|{6<;9h3oBIgQ%7G|gSnMZ#Ba*kmB2xJAWBrk{kO#Rldax4$+WUk}cNU9L}W9qS{?`@Qr3 zxjQ6;koC~%k-0VWjrTYh%Q)~Vw(=wL5e{4c_q+ME=lBQdw|B4-TG6Ixikm~L(Rf`- zpB*b*-?)VE9ZgN31<=lPmgGtpp5Zo3g~Qmf$~jNs0L=B3h-&1ovE5nKl`P8acH`9} zM2+>Z&$@oEo|r-c#~*L{k+Vhjb7*$WCG$);OcUFhe{~hAh!+)93Qzo%gbrpb$XmA@ zflFVj$-%Xw`Y!%h3HKF2It)Ja$!)#yeCm&=qIg=1?Q)z(R&(mvZN`K8(n}Ze@FVt& z9lgC1zPl?^QMU@_d+$A1e08B&s8OSiCTo_;2dynt=LanWxx|ff{B=-2UW1ES?drTz{7T$rYA^jc<@ts6(nB`kLQS7NZklVwA z9~?R9Z+19gpY+&kAL-66m>7JHm_9Nf6PxLqk%th&iqSI+2tjKVk zuonk8nbE^Lnl~~H8dK+5XRj8dsok92_7nfAl=S@WtaqDDN7L+!CW*S;;CiIw(6c-}#0Kx=JBZsPp;)<{eiNVRraBYEMnFH9Aax3+dTlpjpJjudpt86yc;`CaXu zB5tNFPPcZ#Sr5D0&Xh?#ElTcDaYFFZUB*tInD59(Y{-V0 zjncg?wuQK4Q_2oXp2K<_Z-sEAr(7Dd(Glr;HU}54xb67eSGsC=#NBH%0MO#EGRuAB zz3pPPvSONCr#I&tdv1{O-ihim_O75M-Zc)79X55a2fVOBH0dNtDa+-+FP z_*$H}@IjS13_i{8wIUK-8UMU~7FdZ8OgH)MPF_glzMuA-xX|RsqHiw3y@!}FMZ0#$ z!y?K8TO*_b`TEX`=Qk>PV|U1N>ffB;P4j+q-*?*3oyuH}bFK{4j;o&L(7*Zc*&|z& z_6iaT^Oo-ScL&{{`J!(ZYJI1?w$#kpG&wV1ZI!pJb2?&D_o((y8PDhj>!*&m{f}j( zGYyZO&2?&`QI)x@f1h_r3GO|fc?lNgap=?=6P){ z9ki&DZ)%O1(=Oa?9~^tl4lN-xE&Q8IPan?zJ;s8?O+83nyK(7y;qS*6wlpbBjgL+_ zw(M3fSYCQ0vv4W}D-1bEFYWbKX6fhpop)9p%XP(Bg>%1DAvmZ-5ECPU9@`UOCBp(-|CB_zmnVuex z^+1m&6xlR4<<|tueeQ5Q*C^Wwev+=ty@v`ytp3QQ?#!0oaryd-e{BlQ>G7b_ydB6t4=X;o^a<9yeP2YAj@rfjD%V$8W4Y!5uFYGLFl$~ypSK0?up zl$(!tY12J6lW9ghJswvOOufe4+WFH-fjnG#YK>4atj|lufu$U)Nk%8g5H$0f?YYV) zUGFtrAQ>F_f4LMk%ML`SeGzb}Q?n;r+D z--`n{)m1uHBaL8MGoEo&GwI8C&Xp*0SVhNYf)#oBQ}|uYeYEeq|1;A*J2WV!%>yn! z>Y0#mv_M=cDJH#;WUT*j2P>)~WqyT8 z`rn~nUN0y43=O)PS} zJc7yP80=1VesUe;)way)t|LzX|EGpNk5}tAV5j!&b%aNH2b++^3ycu9A4SOAJa;IQ zHXg%Ih%M0euQ1Miw(pFRR`W0G{nYN$su8A`Si~9{)9&4{y?G%39Cg`P@`2#%qzsN1 z45wYkCSFpi4S_G$)uB$;=${h+v&xZ=ek>#E)Vl&T#go9slmVmE?J=lTg!OPY1(mQ@b9V_Op&3)kOZ_RL7xI!)s5#H}|`eUB|681Ahc zYt(dEf!}lVX{|VE`j6U9(V8CZ5QG?aPhvf%zse7#eUPHl_b=sbtRZwhx5B2UaW>2r zWWeJ*UxsRLpC$w+8E2kFe6v}CO!GnJ%&R9s;6k3THcg%)9^onS;U|9O3-SZB6=A_| z0tb8m0bkHlSEOHA*Cv!uy3oWe#IP&ND#cp3pE<^#(6iI`zq+Olqo5a#?>iK%|h%AGikD!A8Mrxi+7L&nfT_;1)1c za1|~63)dHo9+Rah%=lJwTt+AbhL>UfN|Uwj^13#1UkiTw6Jp(GNlx6Uy{_QQgSAJ; z=$0*|Aj3mm?f2L`2Kyn%5GA-o7Xoprw)tXRMgZqS&;^3#gz%K{y^4$dm|KahPs(B3 zpUWrxS&D_e=)h#GE$kWJi7yE=k58N*x_D^MjMa=p8kY~K8LIBPCz#JmR!H~Fp2*tf z{{Ee);&u@o7T9A^5uz>fyLm|!-h_uVTq93j*SWU4sqL(F})G*C^Xn(P8mH}Gd63`U-nmFC`#5vc%L>Z2sN{w2` z*Nkw<@=l4N`3@b6uN`{Ipzp3{1~kjd^6XV~_{@pnKKeW>Y`WTBE}hGdWc_9j3;FK) zzC-$dy8i3m8yH0w6jx<)Hd@&=2m5JyZBjGcyf?EzQ#~#rc4+oVj{AMR?k7}HypxWx z4_@YqMZ;mXzDqq3u&jv`_Z_mSt)1W`m8JLC`T z%M5bIl3FWs=-+NZH%%e6$j=Qt>i`Ywmuu#Y+m;DTaceR(+50Q_7ON9ql?`HKslEOE z$&EKv&@IMI>no-2KPI!Slg3amsoT{uHH%)ICHcP%)9_xXk9V-E!O<9>+y1!}TSk6- zXHOks0?6)_SV0ca3vMsygA}um8Ow9EYVspd)TQ;(S zP+tQY5gkL&U+p7^eqp5;k^zlHe_w^~CY;y6Z)P5U>eci znBXt~n*S*lu2?yt=taw9NP)@fU;dTl#24k*-&=ef`|d1vU}38MKmR`GrapJw1n7+j z`zV8aUpSFXCzw41JFF+R*G35aYh(^X?QC|?3YmbuM8?k#*wBl)i0D;UwMVp1FKf|gRtV|$2|LTmlZRWs zfI+PloxPX5XMKelout7T|=jSkB<5i)mQmiegb zqcRzfWM(i}jEIz%P{Y!-7%B6SZ%fsC)f5AYn zvNS$ZEfdKIEdE!lhG5kj@&3`zA*o^jMyaE~MGBbxOO$)%1{+qlIZufQX> zJenaXo~;J71d2XhuC7bk`k3oz#4rF4;qWKs{Z+>6J9@@V2&pXZf8COq6Wk>Af`2=}%Xmo-GU?z|`U<&qhMq zVlM+Q7QN|d`Ve^7%5DakA%97hBmqIpZAVRj=^4{EeuMY4u6L*R^AWgvCx-uY2#7{7 zjG=5Rxbh7kwAtWyo=Vk}^7L8dr+Yp;qPJI}1`uieZN}e|NL!nC`p`*%mZ$O~d~STZ zPA!F?N~%MiSZ9mYJm^yjKEA;3%g#xCN;^0K?iYShpVfA$^p)uekSGC@&*#6j(Zq6< z{}`xbuYT#uxoya}aR=|!q0xDjN~CXTOaAS9e^<{+Z)YrUmt&QY)NXX^`HF$jX{k>V zJ<2K%%K8}^YK?e-38NGBI4(qOdrWh9+-CGM%u;WKMZ7q)N~ z@-=VG7z5skFne5XWRVp|GjER2_)HA7Q6&Z+nlJF8=?bd(d}r4wFnaqky!KJ|Gf!^2 zGgMpeGNe|MH#E)OR@NwdG2-t(dmeQc>&pjEXTYCeWaeQz`q;xhhMG;ehXQvuGp-a( za<`LOGlR!-%maxzQ^RmTv#QNkDIQVomN`x-^Ob~O=NG&j?wONAEbeaZeYdfNCE=UsuJ#$u-lOYzt(d7Lel%khT zjm%?uUa~{OCSVSkO<7l;1T{IZ~Uwhnk43 zZXaar0iD$?KQVYNSgYYj7|q>4P(tF{tDB1woh3r%*%Rq!PLRhF<3?DM#Mq{pKD4)r zidrVP#+HpYtTQ7#PT$OMR$Ua}Ajvl^z(P8MS4p8Ym4Y0aPhGf&iJWFgz{I{)FA}d?BXb1yMWvpY7BTuedhVg#f4vit6R28xw{7V8?$^)m zzLPN^3)FDUQ&L^MvXWZx{k5ue%*5O?Y`IxiTDvC0Pj&s{_tNeYV>J8vG|ndQs%d{HMyN{00OXK-g4Tqg15~K zhBEjtt6*AhJi1dFJAiGQ zS&<(?T&?q&jj8P(y2w#>qzMhv*gr;x7>-@SN{>rrW(p>R+BqSE0ibtj=!f%`>lgo6 zWOo!HSd>qV33Ym@zzYX>KKbmS6?ZDsU`tAKEpIvi6f&!h0qxTPTl_j;~ zhZJ50fyn^E{HoU~L>T!z>`BE&D6L|hetuWY*=!_H&BssKe81hHN|c?IqNH1MR+U|EE~EfdygfK^W}lN2j-5-FU{dt<1GW{4iG$JRz8| zG`|``L%WA3%*=_*6;B_k>tKZIG8*xjB-DC20K!g%rECx2ASU_RIIHPRlo|4Q_X&0@?z zNCxS%B9Z>s!RxVQY{2tO^N__qLJ`WF-L#?{R}{cs6Of}&Mw>RK80ME%rq5DJ)i zsdXU$us35+0ZT$RPQ#+66^8JcX!HFI2hK?bXx@yGxU#06x6r*}dwAo2h-=}pMGdg_ zD+>Izr{N8ZHI;3<5s`(u&YSpIjforx89Gf_=qfpPc-M)rqh9o`Zz}}=-nIg!GK$^V zL5mj9%uUv!17ryRwUx{2@|RbCRsU0ETvex7W~YdKn?YM~PcRKIuucB|%3wDWx#tG& z`DGeNk9rw}$R`joFZQIDmXq4Q5qE-%CbO!$!r=_u^yXh(I8!;SULOX$KkV%KQN$+E zALaindEKY?6g^m0E3T;bn^n328FQ!l4zC4f1{|{7D9LYw#BBb}V{iUWU)uxolP8Y} zBuOcj*LH=|Dg|TrPvC_+bU~FeLbkKk3?olAs{1rX`U``D?g_rFj;~swU6W$raCKkk z`?=i$hJ5%H#u6zoiEW|6#z5rl$m#J%3PT?aGG1Tsq_*`!g!B5XdHAhcEHth2fs#Vs zNh{|toI7PhLkTiJAdSV5OdY6|>JA)b`d7mj`g6L>1ZhXp5tZ@Qlj6IM-s=Ou^u#o7 z+7h-9{lW#qNx;hdY7P1A`7hLo6J=4>NWTGV5dfXJ1mn{zndpr7OMQ2hG1*Z5h#7|k z_RiPlHFkPn+DaX)V*@^T8qcGBK!>-tqhNR-WcWQJJo$Ss!flTFgOA7LmMX+5c_1Hn00t_ z{ZaET=fWuq(VezzY!v+k_iWS70L_+Qhu(jPBLg>ZjUJTyepP%^{n6RG$pTQy^zPUC zquP1~ia$+IpDRMQv1yf6%Ibu6NAq;uP$_(q59EDC z(t`Y0E(rtY|ATv?KlG74iFN>ADcq= z^P{`r-y1c3ZG>^}j{WAZTmuFyu|y{SI3{;#jBcW(PTRN!<*#8Z6<5rNmJ zcSo3Zof~r*qYIL9&p)C%Ut63#+-?cW)v}iQrRq0>M+UKAoJhZ>fMQqK%L%GY0WK#{ zT4|W=KNg}6e)R)H4&32;(=(o;A22OM=2;au#KB4Chg49&q z`n!JZrqi6(Yc6Myo*olJ0+$Ka4+W=ki^bNb`Z4+);t%@DzXF4lHom1shx1ENiwpO= zUbDoEiTK8Lsm8R+0CV2=U4|GB$*lBr8w>b_Kmh5@s-Sk-fo&ujsmJh4Z)L2}y& z)famsq^Z2kcI^XG(uzjj7@&xpu}nlhfR@!C*1D}R)H<2w)zFQHo(G*dNTz;r+h^UOc#eZ06$|(sJ6uH$9h=a%^y&!>R|e z;K>r}9my~Kx5MIP5xc<&y82@x@`wUYBC+fabuQ2T+pOOR{jq4gCc(JS=9yAeLz zs#Y1Dt$4jkLlj7aOYQWwrLoc+NGJtsdTtOdn0=;!HfRdtd?To?jJg8{0Hg}B&2CjwVBvvh?=*oj^I;om=B znhga2L6NJWpYJ_WHKNK5ZU3E3N%>TVV_Hl_!W+C(mO*gU-Zwt)S*x=gt71MT(-o~4dCw})ml#RXiO(2SCyXw~Abt=JZp zTJg~3%}h6Etu@(xpNET$H66!;SD3ijK9b#(u#~V->Wu)L;1#=Vsh0^ad zIX(AFL-dnX1m#5`*p(#L3RMK-YGW_O2Do~zy#JBz0l=F8FA_uwxWgLlJ%e3y6uP34C~`l+j~n%A<*tW^pJ<)G==P& z9}1d9?lNRs2pfzA%_<~A|*RTk!9WFE<>`qyt zY^}b7BtMA^TODH0CZUy9kTbEcLCf)4kZJf4DlKHK>o|8vDvtoF zBo7JHuoPtF0=pKJVYFV46F#H@1TzqQuo8`wgtP>_+{!=Qz_lfT6EIuVI#?JxE-*Gq zp*M;^zShI|EqtcadBWQ*Gh{CEKk*>ETpQ|_8wYLAM$+lLFX|6L5fm|zbz<%RiQ-tR zG*<7LxW5Y=9gAE89-vEzp4!fQivP_G+)OuI^)S%Y^>Kv~)(;9oE1Pn-}sYYMUgAb;@! z7Y6Q02jmq3)c{J?0t2j89pSwWvZ`e-UtNj}Sikx#_B~TP@hKcIdpE8AbJN2szmQ{9 zxODU#P0NV(#hu`_rnXD%qwss(ig|M>mw*diCyr7=GiQ&G`5!VE4wt9rGErUOB@1ZL zXa%`}apfeR18lv!{nZZYiVUnl@i{nOho7)>eKF3|3_|adQ8{+?X<551Kh9Kzz5+xM zAD#q-g=~E&9iRT<;`-Ly2Has)S)O@1l{v%@H-AafIM!@U_71%YIcGg~e+pg0yr#|) zw=L)VIlBvLiaRwKV&q?iY4V8!7P;+L2$Y|Z$qK9$s_h_OD7wsrF}57%r3=*Bp~<03 za?hG^$}h$s6^9)!dsVzjndAQ9!bt%x%M0I4o6O<{s8m%|?q>fYdhU1v$g_t(#@s@D zU@WVyy-><1^sNdGu?wj%H%8`0YXukUG!JzLbqxI(Qo%youfRs&WRwq^Rig)*g$kS}ub+iV15 z=nGhLlNbIj)bpj)4MT$dFMAUU@6bbg?P*8tix6~ppKb8qq~aFwJI%KY^TO|Msp;M6 zD|pt@DQOBW#uOFRg-v}MVQKc__Wp7SWapjoMB&+u&#!y8G~Ad)-6oWWcv<2kA8_EL zlDLGVtK}!Bc!<$9V|7*K5KE00f;qhCD7UBZkmVy}{~0jYX}NK84qupm;up<4E`(ac zLB@BW`M3ZxT(}~m0G?fbK@6j4l-K{x!@)gr-%_9z*}R31e+puLf-vuVq_a_+V6?RK z9>R>T-#UxQ>VAocldjHS`&{`{+hqY^j(XP_!Ewp^1RWb+m}R3)nQnwndo|jLw*#^00@XEQ&1&su3aQzCZ*e2Uvt!{hAJ;W%Nzsyy=Q(I0@p# zI!Uz-)RGd4aIde&TGsZWG_~t3H*ERO&vCn=J5fvtB}iae58|Im$bJ&ta^e30?LZR0 z2c;~`%*{&GRgMGt9$riP~OD85r#vsy-*+wZ?xMs6|f)2eDuaN>{uI@LD%cRfs4f0;Dl zR!>=f9r?c}=1~6uHF@;)r*brn~boBhq` z)A`>{K3gKMse50_{Z;+obU*xh>7hMWMGZ8}lGbrwy>A>;_NSKm-d_Al@jDn-!{V8# ziQ;PoC@_ukDaY6dXLPyv{V&kp4DXD^h|kQrN{8LSEpYqJzV^1@s8r@($(@>X|43ud9~C}P1F4KDa(epWhk#|^&scmdwF zFjL)!N2sXfDJ`X3EDT%gA08jfUz@J(gI_-}w_5m3{vXFNZqW8dZw&p88`WW#_uix* zg-%Zt?-2TnJ7`!Z@*?&EL=di%5{p_Aav$uCK66+*H1*Xf)bLr`J3OpRwJx&E>P_ujQ(y;y!6ulfNB* zI%nyxh+3%FuiXRds!ZH5_3+f`G9tCt_pX*-FTYlLr}TOWkH}?!pGEHsm;Wsz)9ga| z-r@&~|1y1{jHt6-?Gj_m-BJ8X@vXx5tTy0*DHe=x5wq))od1pD-Hw`Uoh@U|fT;Ov z%4P_4e*JK(r>yTlGk((YQ#;NbMW5qyN9Ch;{T=gjl2F`%;=by6bsz4vLEqqr*UEQR zKA2lAoi0!02X_tMUzmA((%Nd~;}d_2`)}4-%9GHQ)*b`a6?kasvEuL0XLE6dp`js%gk2|CIKt|(Q;)IwH6>W=zLx|7CkqZXKQTWl&w z1kF+txQePVw!$CKrHLs=i8(d1HRGCyBH`PPv_p zs~@TD(yTlsU$oXJ*tu;vYoF&C*sG)85_&?BK)uC+*29X*-&pq-HTtA*kRMrX_!Q}| zxHJ@wrP$&MkKSA!#Ln{H=2Ic~dA88^cRzmqh_v6W$U5Uujh(OfU-8F%ukWQUMCndE zs$65aAN_~0!1?A;^52}2G@1F4(8GXB;J$>Fr1TQ|Eo$8ls^7YeFGdAvh#BEw_K{$! z9V!r$nR$z6_DGX*){0460j^XWIQw<;VSe8qU5ZU9^U9DkC+GE|J}b{Dc`c6~$rcKa zvtg-d=cl=Y^WS#1hkYcP?3xI7b$f5NIzjs{*_`*HhR=q1IgjJ5VEE<~i29y;bm29^ zn;G@(jOIAYRy>+`R6UNjHoWi?T`oow&{=C=K~07b0y4v+=h5oF%=||DNO(ppTAa0v zE(ooYrz~$V(4w9Zr{o1~B-*1cXa$Q^_Oc#}S)LD#h)MH)ENtBe#^#iQQgR_J zaZ$owJ_E-Ql8}@bYhD{x52{%Aa2#3zZJ*a>rKrj)$3RhP@}m++S~WhWnkqa?jbNZHOZ zYTmUCa(Ch9FmLU7&YnS|?d;#yYkB=3J1d3RobsyHZecWM*@q3x65>7`1FA#OT4RWH zs7p{G?7eJUgJ|*J^+a==Wh*{C;f0>43y_W5`+Py-y49~=4xl0fzQ2#!ee!r>QTu*q zFub63MG3V~y+-;ibXZheps!m8n_x%6ooZLKD@yqLc(iPB;sesSP>#t)STNZ&`Be@1 z52RZVQo0ofhyS{fm&bxKBo#Df!h;BpSLW+t1!WKGjg;V`WARsd4Y|Jy`VgB}F5266 zsz<`eyFmUg)_@Me=lg)x{`ime4mQpfG}{wm6Zq?OwKq2cYlqh;Z}l-BRW!?aw&K$g zUigV`!<6xh`s3>UL#Xt1KYnx$JUNXS$4%7h;ut_Inq|X`8*nVI!R>5L^GOrxH8HQ` zEsQJ2kY7gJa!NiR-LamB`_3Wtj+l}2wr)(==dK)fD-dp7*g@gE*2~)2@kA=KoTBGT z*80$JuggOgazfRhz2Os~q=(tT2sB-A;es+QjfarI#+kJ#;QbKFL(M4bMa5LxZ6(9m z&qj3MM&Q4j8T0LpW;xGRe0ri5J>kETG=aWe{1>Y4+h_c7?)-Z*Ro#DRW9LDxy{8ky zs=%&_*JaeM5dw49$?kZs&?{#mlj@v;dIwacfg8*5!*OP0m8^UvG{h#wq&cfR9vQN@ zu*H9Ej3ot`P`t7p!_9d)65g~B_pQD^HGY~HO^%&f?jKE{qHZ+tVgjy1<=FkiMdP(3 zz5`t93#0?-E(?Ks)k6{P8F5iRs2-7qMW`ikY{U7R0#!#N3k@2?jo3Y9oXxtF4B1%! zHQNdOceNRV&F^>Xqgl?g6+0bUne*Tdum7aDFO|797HmUpR;|K&IpB|z1LbnRDcs)Y z)uVnRXJYYO6G(L+JjmW*0)uxBJQ65ZjIw~sv2kHSEoktS^vAoR{wOMsiQQ%_yc0sc z{dcX`y5n=oM{1aj$Yuy05Kw#(9CtYaKhPCccrPLSa(_{~nM#_UJ@J*3qZa1A*_Sjg z^}W{jalba84Rjm7NOnE@Wcp?b{Xa$%&t?8378M$gahZ!8W zpdb^?!rvHJu)s{_^kLrEEZp|CCa9ZWhTnMR3(tnnvT+er3@Z+224>=>l%wKfkwFWy%CV!Oo4FFJ z&4_-Z+qe>HXGg_FW!z$*dnC-kQT7`7MR3HW?nUldIldnRwC(3Ivhkgh>dCh(h6}gN z<^D^3m-=p|Qr7cdIr*jIUrnPn<&)>fPT2}^Y(eQ|P^0;N4n>C8tPGU`Gl)2Us1W!p z!Hk=oXJH+AST&Icv2xsvT(#}je<>cti0?$S@V6Cf#rr|HJ$$fbH5cxv{6B)by2T-b zzToA65W2nZa=;hl-Ve?aZ1V+W1MWOyr>2vSCIbz;&=(X!z^y@PFmy;nrwI5;Ce6bJ z=H2GBcR~}W9#dYhGlDH%xsp|om6Ims!=TR|RL`n!2t(3bWJbIlnpH6Kl~te{a}~mw zeIwMX)_>vomNWzDIw3>^ojHf(VHn??{a_OByxWjl!Nd$ zTj9}%EzUcvUYDn2pmEafM@L+qR29y-?MGbi)RVZk?3Ipy8HbnhcM?oNZr-b!9^AjQ(34&4X#%ePvp) z-LZMUGqB%ZZHd>JS5zWrunq1u2)K+TO+AYObP}5EXhIt}H>wRxC%=5+ zJ86GZ5X!MPlLw@ygCjEXe~~-v&idudw=(C!9jLQAY)l|aH%9(F+|i8Ka}Nu%a_pGx z@c{mNPca$aC-AqZo9co_85=eSHc9y~1zu0GXmj2jdH>-9t1IsWTDN=yH3 zMPtO%f4+Z{HE+M(La(#hSPemm+17TSM^=Q_v+iYmXMlOB!BDS-zG5V&bQ|y(n^lgR z$IMy97eoed-a@>Yh@f7yQ0v_2*r_EQb6?s3@E1w}Jb?&@r<1=({LzW>GZ}Hj!o6HH z^khbc7Qi!b9S+PjR|kn}9~bQ^3}i7p;H-8o27b?54489Y+&a~;TDfg+q*E=eC>?kX z*%!#GR1>5Yu~&P21EXDc=qyS@Xzv(4-Q zUT6QjZRqQbzi>f==PxqNmiue<-?f+ej*U7GXtq7VJHioZMqJcUUp%FRg^Vbh(@D%* z-QH(?>(>slaj7dhA}{KJbYLK9T5r!})5+r&Yya0|E`CA2yf3G` z5cz)S&Qsv6Jd45|ZvM;lSdO5`(zSmpLlz?^KQqTQ0Cy>XBa0nD1;f%Xzk9W3gGk zGkBeCSLPXyTJ(gkPDTVe0)bc0fmm&+_sF)pgT~AvX3f|SL&%LS=}>EhP%;7hg<{%m zh>^3>b@_e_3PLJ_y1V86!*FhoP_t?H8=m zUGK(ml=EOW|Hb}*QEdm<3IkV9N67ZAQW=^r#u|e4k++R0q=L0Wli~8X>xTwIwLS9S6 zebTTnM}*h+RoSXF~IV4%=Q(1{wO!arCZV zgV=ul%SYHf((4)Zos8x<%T{b8K78rX^m*If@Ip_2{MOjzKp>r!U*9`+s(Suy?WO*s zAGVMNbz#hW!km$PVf!0?3^+;dtG*D0hA^c}S-8v*6l{??9#ifwI$q{1{#;Nl zsAoe5g_8CSLy&d{r<6r|Hjg8&m)7f`FUMbGnj!BYkpAYtHwOagcl$0Sk!yjOJ~$*7 zG~_|Fvp3ikmQjb*1?7hBM{j0Z!}Z&lz;jBE1pOGDjNrq=y@+Wx5E=xnzo-MN1qldF z&)1)Yw*CCq*}r?VxB94$Dq8sayBfP*ezpnRCac2>KcPRM!VNtxw1H~2PF%sEnLOEcoiQZ zEY6nm?xKF(T65Os>9_a2;;--eA$E@cdf#j8XpXaN#iuE1(KFaKnm}(Mx>feSApc(; z=SID9A?iCWb=52=IpqoCbmC?zE8h`%)r>ePl2UM~FDqXTfZb^Xv{uq@MP#a2G zIcBORyP=OJj@kV;NF#tpWx+yU_*~xC!CaBQTSk94+Dmjvdol41rp{}^m6_z|jqH-0qBdA8!y64lu0 zEbx5@w!OZ$T7Td@IpaQ5AbVB6)%!P2$^lU8m9bzF`>TO zcRB&hm^2Mkj@(QkXAW8h-i0>sW)f)p*^?iyRCBB^1FgR29%VQqy#6uY*=UyYY{jP~ zDseN|20Tb*pm7G$xCPQq|IO+}2zmG4tnbKFI}C*vxQN=ab~Y8kyczYb1lz^4La?X_ z!Xb5BI;x@yct|h>;FxUS{FeJOBJk{V;s@scJ@rq?pY<(h;Jz6#GH^IP5Pl;BA0Ic* zb))WDK|Lyp`Y=1FzG`jL1q8PkF*;rxRF6gq4-lIN@ndXPvOYmxKJ~rK-V@(8BLg_| zk5_bM@L-(dXabK=J#sVkN&j~T{?_K#>#2bAy4v-Rz(&Iv<@JyH&PKDGXDhZdwlm+i zIx3Mf*fw^mdW~xRfp{_aFC1w$>cEa1EXrjd)Izq|JE4p^B4a*|yYoVQ$cP1HR>>(> zgd<^iGi2mp5!t@W{b0kStG?Nn%KS2QB3*vwwLZ*}(Rcb;`PuMbu=IfMIu#fXbk_+ZE0m&zWsDEkbbT2kDi-~pH2o&B1;*c zZQ#7431lzJ25P92CUWZDO8rCT+h%DcTX^m3$73h>Z{-o{9q~qp<~h?=Y+w9(+p3Md zq7pgL*X{~7C3K!pN5r*yJ8Wlp&+A7v(6wABLc+rZc6`z&fuN$$r!b9^pN zd1(V4LJ}S?SBk}1^xnMaW83h$HVGXaYW>F{d4j z%tQ`^(3>+XyuO##;)sduOm#>SBjp(U(sN2UbRfKc|AAmepp0TS=dH}X^+Myy`|x)d zX9vO)?5s4*de}G{lct{$J2W6N_4p zG^b1{$URw4>*7X-?JBO@o+7ql>1xhrNPsBVxAFlKbbydCNhFayW6 z2e+3)jrr^5=jjbT=;sE65v+Rm;kofZ?GQwmxE^%fPl%Q>(c!OO8uHKWejPVAiT zCQa(=fk(C@WeiS~7N6GF-v@5H_224IZZ>HP8gu`8ipBry|*nKh`T(3kNO`sizY%l&Vqz8IfSA5&kos~PU> z%PGffPaAC06Y?AF!h({Ef-}QsA!i}nj4ZGTamvPVhxyj}pj9F;J$}$R-a=V_6mDfX zd!3SYQL}r=+w2$hd8j&e2j7-ne?0n`;}arWEctPuwNS1y)nXL1lGY9n2o3HKYhOEe zY%l-y9_{)@yb+>#&a@Tv1km^CO;laHAKXr_Gw)daf69BI*`c@3z$r11_HqEO@3>&C zc6SR~KbTII_1mE@pFmDSR)*s_@?mg__rsM3FMQ&!5yw`)JtPJnUyg^hfkcJnm;y1lkVK=dSZL^-`bI0 z|ETY5G|PFmqMrEhd%IqS-`VaBI-bGnY`gs)s^j7RQ(g-Y1Q-k!`P;wPsQ!!DC(6s^ zjt7rNE(d?v_utRJUk4g9au@>X=_IOwktd)H{I}7(GA~c67HS(kf-kfb^M$f9&1Auo z0laee{__H5oSDLicwX2Y=6Y=PEF4E!=Q#&?Yf;+kb$3**3uMkI$WI1yS5N+|?~~_& zyLb$*Ow`dqRY7+-Xf3Ccdrv%Z{JnnU`%&#-y|I1#*K3^DJL)?f&2g5ks5kci`R)y? z59sl>oqaC6qw+rp`M=<4JpUI_U1JRVy&QmofS+FO5cM1v-@D;jW_zIN_&$C|xE;FG z_oQ`1;4gYx0H=Ut+5j@jz=N&t>dFQ6nsEP_7ZbPl`3<0~KMpMzemzV2ml7ipL4qdG z6));x;je>x7@<4yWUef@QS;%PxH`Aj`Axjtxl!&eUjw=bbec$p8On2Ci#|Dk90y=9 zlojLwil2eLs29Cc5BSr9eAyyQtt2VeH?!=BQ?a{2+5|!36ppg z+Ay*MfXp;og-VR9oYy+o1yu;0PKHBf2yTwRy4(BiJhi0vgmTIrHmv4XkaSYM9DGCQ zwyV}ilXVcdn)6no?^^mqEgDyD$!FlSf%p2C^b_g7ANWB6naa?!$v+cZ7`g-WmE(y& z8{K>2hH>1kheK_3{S0_}^QFLNjILK1nV$lpjp9RkG15*#2gb zJHm0Zr2iy9ssieSb28BSx@fWv)fdWX-SLuE)ISWJ70NL}TPOdZI^V%dZQxt1j=T>4 z<(n`;cQW=g5(%@C?R|##i+o>b+uZ$fx&L&sL(Rv#Q6GCm@+Sd@_b+zjo zfz3oM`ffGmKdRXJYtxGDi4R}0wcqcocf0=;q@3TKo^|6 zN_1XL|8*lXpM~R!L|#F5SwR6Wr|r;>lRi6&+N=U+_ZhJmU)284XXiu5>Ki-6_VeFn zj66NDE3yhjTeHBe(+uM=9R95=_`1�(A%gVlBL4k@a8_ZZK*lI}YAhVkz6WVef z%%3mEke#-u^s4g;oQ7_!pgAeTxSy35HFyaRvGc-z_M`7-J=c%NPVir^;Kyuqd~4zF zr#aq#&{_V2U}G@gYV3sb0(J$A9^#dyjqNM5CWyE4DV=nEUzt8{f~P zj7sE8civ0^S*Me$v0rGD@FmMB@PWw6x5koY282u1fW2lx73--M2+u1;o9P0rQL%PK_)&=F@TlhxacMVS<-LZ`bqF(G=z51o;KAM+ zuY;c6QH{n+`i)qp+Qaf%N$ZND*AQ2p@d-e6c?F9hm$hr+AiE}J#DbllQSbQG_uSTo zd(;~_n&T{6u~qTGO1)bn)V)zuBPSM9fci<w(ZVZ%)`;b*txrTf1mG}AM zzuG%&;qPn4v+^&6gQ+`v%kqWD1v#h5##aZr%07vg1*SWJSY=oy;I#ChF6+1i^kOlo&#Zfw;OPA$6BKa=p9@k z_Ci)Kg!Q`7YgR;|0S~KTMmmV2T;P)gpA~rvd!Yb#$1iGk#c>OPv0eS6SI={;plDs2 zPkX@c;n$&^uY2QBiJY`hZW)j2{9h;zs1ktkdou;SxVA$w-?#fOp6=oHr-=^_goFR% zskh9**tefN)c1XVS-xzs*o>UF5Eu@Uq!eUC^cW&7mz)v^+lpFAKQHc)Cgje@d2vP@ z5{`s2;*{M{EobY$#4ATcDe9A`&zjrwp;7}T9fIo<)tKw0^E$}OUvY0&eIE!sq3%Id zh)en4YgosJqHVpSQVgyV*1KW_yQ;e0@vHB-Rv?_e##Ve9>H0jy1E9#z3<8!;t$(0!U6I2Q}NCzq09J8aY7K=`>^L6y|5z*0z52$^>$%D? zXoVB4E7R<;nTiYeJv2(*FON#(qy^feDR{kt<#NCmyuHsC6hi3DCWKaZ;Bi0V&s`2o z*>!C_;`4zUqLzlfuoTOP2f`gHkQBWwfLp*Nnw{c2F=uC*ap!WlK*Gt9>KKp#!Fvh= z^KweJh2f?+uiO!OZT`zyuUlQ9dmJ%o&W^B?p7X-ohjCqZMF!tD5Z7<`4U?JH`?I(( zc?Lgto%^!k{grge74DH1wR&@aTl{xD;rwm3qB&#ZHE+;-ci!)zI%=^K2#dO2uUBY6 zS9oyV)jGqu_g;HMe|+JYbmvEV|73647x#61whMJ&au1sj%lfQRc%ThXw@aW|(j?uN zu+tw$PfRh=tLC(#?YYC(zSIX4M*dh)J8mI!xAB9-tMSA38eq}j&S2J#7VMAnd^2QR zp!Xe=XLKdTeK<8x{aP*BRzAn|S||UPBW$)JGPkl)!xwtPSMs|UHijTGJp8f-&vvawT1v)12% z9BKpUjJSG^@ao4yeHRqZUcnTzVo@vE=yOf9&{WAQ$Ul2IgZVdPKA^iMx>TY%0+7nPb=ke&X?^zOSVJ)5)<@%l*{p68pvL4j0A@BA%z8=+1_$ z3!pUmW5S2njlVo96$+}Yx#OAW|&%SL?siN#w?2UJm{{ zUJmRJKOTL@7ld8`xal`W#GIBGq7H40sMu}Fm;HhpZE-Nb6>Z* zz#luaWlr5PA#imbLq;vS*e~HPYV|m?C!hFPCCq%`zw|x)IwD&7@A{&3WtutQxbyRk zs}BvQ{UU176E($fN00mBKIAx5D-l2{^oU&2U*GFh`-bJ=#{>dFKZau9k7tB-X^73) zJn&NApN%5#mMY)ilzTJvZVKp&ys&}>SF}YPeR{6TGpwLNmk101L4m83%ZqJpricaq zaXK6M*v{@Hbj9;jSIjjIaAV@yI3jp9@oqw9ybdQ!w^q!Vtvei?bt5&c<-G6xe{exP zs-lOo!+(Leb|s*l-LVuSwR%!C)jbU3uvWDA?|NeGzs*)OY5;vVrad%rc%diIgnZTE z@LQc-Hl2L?j1YSJ48He!`>#Lzh{PB(;_ZE?cax35(0O)MK+g(OfMYK35x!wd`d8D_ z$+!Bt;+K-2du}9h)k3Bz1s#Ink#Jr9QTU!_ib?a<7<2+4CYUX})RN|5<7Vn~@{@0U zcc51##TPm;?g3v3ABk~Z>Z1$h?vaj!hgc6gs1}r7F&ug#KBeqooocU$eF!0-D$jo?S=)}t!{T-M z>+#v>_d~!@)U~R5ehcden_jT%7oRx3yL!Y;ol3{iz@?#y@yWoQ~#|DJUTI}zhl8eqp4@m9Sckv0K zSAAA8C1gKj#J|xxR8yte3SW@Cbu!|eeX;?+-<)z+9%mD(Pbyez^LzxVVkQrWN(6OR zCA+z+8%gD~bPO+lQga2x>?O$q9dXjvQ1L!s3E*Mfm+ccqg>$ z3#(sCudBWG2y8UGM!DWmZ;YVxY+-Qo#fL9F`#a&bULBSHQ+!ExLS=aS3{+t6HLwKR zyz%#8f8RWdjOr=;ab|R|5fu*Vjv7jt2}SLSIHC4Pk42`GMg6#WL+_5y%1?)V;Uzt9 zVbne4tU4#7y22MEW{Z5}uJ|!CY21@%BVRr-FK3mhDvnEezLjX}=(&zNPc{0wd9brD zzK#3+x%sa*0zcKZYyTvJ?-?O3?@LEKn6S7UThy}3xOgDEd;h=qSHGUy$A9_A(#;v= z>c@>7_5PK%qVeK)5q(#~Us@jK!h;1YdHwz0@ZFx~n{4K%j|--SMRFWHhjKA$ZtFbq zN>0mZ?QERA^5kk)bG!Jjdt|G}xxR64jBtNyw4xO|9o5*0B`c>grtmQ4OAF?`*5Cga zl@QPxfHUyFoe>3wj>W`FQHufY>kIa(cg0tg8+up#0{EbgS_U~@(iW5?N5@6tcx`??dJ=xMM2w zUr+V0k5h07;>Q6l0)HLMb*l|rA9hy|SMp?zq}al#u^@ErHn{#n-YzoxH1A4WE(AtsEg!+ny4(yG-^^C!KlRz~BWVJjY8 zydV4z4dODndU*X01>0WVi~2Y6VfSLVs2Rx0KxZMeeg%Rs3R=K)vK%|8_Nv_md=UsK z7qt=bM(k_R-UvDAfDg(x%7Ooa2m6gl<*qoRUQzGLMO_N(AN=5Vic*&5L;j2uEX%!0=2b?n_ASY)4zxUIU>0W077qD2=lrb~HjR z^2F4U<&5pXe+lz*%DghEp7r=!+J61ld9>PVjT_BzmaTX+@$1lU8nWWe9ktlWmvrZn zjy^=y`M+@=I%FWw{Q{M6)ioGv9~HQ?;^rF*vqP%I_G09m0}tPF%wmA7GeVvXS$S6J ziZ3V^M5w|RN@?(E%vp~o)j_tTztl=afN9E|cN4wrp-}z{k^K8ZD1HImyeiw}z z&i|2n0rpZ2^37B=y5jpZdh__>x5mzmW@Vsh_4W@xrfk4bhq`1Ib%D*>?mEccrTSZD zcCe?z!(z7q^zsFB+JY9gp7BZZ@*b&|ofmR)IabnU#mVTrj5@WXIjev*LSX_rruam0|ebTIU9nfjB z9JAhu{+K$>CL;^>xzP4bcQ{}&R0!{VY#;yi=DhWdc%ww~oM|gI8}M0gbo513V<-IA zk@*V`;LCy990;habPvq#a-g>V(AviYuAlyLJh-Nz1Rv>o0yz4s~sk-QGEszDv3wT@&*fy2od&Z{9Pa$;KskOU^2k1w5rl(TqB$yh>g*7Dk^9 z3DUFs=ad_b0Mm)UIHJ;uZ-|O1fpGSu}uHF@azw{jd zXH06f?F+Fgl5Z#fZT?vMZ?hGR6d!(XV^tT8)8B2as76jK56}BWbu#*;p%3z$P&@K?PxP1hlOEr(ORb*>x>+b3ic7GmyugFpy1EBUvq1>ZUpX%m-R*MtaMeK zm*s5Qj9|oLv=2UoiXP$Y-RSVtWYk}_o$a_G&G`=D5o_DKl zw|)BW!=rf=h|TY#726XZzGSiA4fsvM>#PyIe!Zd+IfHF*+|7vaVH`V!+t{gU{|CpL zk|LF7WGL*?V3EH4q0sSx{OQ!zp-ec9@S|0jlMRd!%7@HVog(C4JUH;(JxWG+s=(H_gDVEXXQ$4h1-HDAgF?Ez37Vo z&H!C9VmbE3_@Fez2BbZ#pcHjvVa;0nc2)+;V*e#wwD@m1hDtV?i|UGF)+;Mtm+y$z zEUY>l&ntdoR_O@=w?^ctXpfXr;LXET4qiLKk=8+8;;KBWjQnrhx^Gu>N$ZN1^iDOS z7B!2Z+ubq!@p9~jz7$*3FKRR5WMshgX$$Vk`S03Sf^9gkYa*&Ng9Or zcH67}@}QiDW}Ja*mh)@{V%N(X?>5vdQH`B&{Urqg{%5Nx5x4gtm&^M#EDt{>;Tz?f z;g*d|s-0>%R@6?L-Er9jI%5_M)e=BDG1{v_f57|~>MJa4vhG7)m{LZ>DQ!}ok{9)& z9u{uzThiOrXQer;qfiztKTc)lucI_LuTe)#KKu3{Y|P%ndQl~!L+kKI{qaTGi*?Sg zYV9nne(Qk(!K*MHrW(}7L3KoBrr+kjq*QZfN~%y^ZM*H~zs-rf6wP(EpYHho?450l z8^?LaFV6KuTZ&BqMslexMQE5O^JE@O!X!$er%IQGvMA-^p4)4C1>`15qR6Mza8=o` z1V|~W0qV57hcP ztk+hnS-gFN4*#U^dihlK?c(xUJ1}Uqs=sb8gz(b}|AS~RAr%;X^WLpAsvF81o0fOB zj;)BXcC)pmsgAYv<;Sbe??PW{h(`5Abd56wI? zb7$P14jLG?f;{M4- z`GLs~E2k^V=&!6;zM@qb>8)FRrPo(@4n#WUh~l%We5qM#GktCRV(9WR_Gs?&L1}k+ zv1x2k~RFV(5v1>VESF`(@V94xJK#Fb66f(5%bnIy1tAoSOy zz$da8i|0g^&=vN*`S*{K&lfEq!uLKFz_!E4LEoHxZ~kjrKmP3KzVq`K4G3@jXdDcT zSb<)}Z{>Gaf6>&v4_o6z2o1hAHrs$oL4|i0id+Ao{L{ih@nB_nirUPQFF{0fpmq?_ z_n>+o-(fI-=b`_-4>te9n=jcS`$B)kR=i(oXZ$xn3PT=_AMgFA z#xI&$dcIlma#MxS_u$Md{tri_9`tkgL2!FalUjw)Zw$(z81wK1XL=g{p&tl#Z!%0=nA8)xYWD16Li=C%24MZx_M4(q z20Jpe1>+TOoPJ~eh5F9%*Ne~0pf4N#-zIfNTdvEsb)R}{^4pbC{X0`jt$u6Rjy4AP z&zxEZl+Z=@)a!%_t;exZ41OB3Y-g~bv)0Hm?%m=eNPRr|Y{?O(MWuux<870~W1 zyKQ%2I+Mv=rdVg&NYiO#IrLwZ)@mooh5Lr(C&^`%OwX)m6uyA!A`xxFxDGlnV~gAqX3P5u6nkzj1ePR{t2m`;>{W<8hIt8Z7b|! zxBV+eDMG8W_0@$cTKoP*c4+8J8Tk#CO0b31bA?zALBGE@P;vS;vPZI>$E?0#u0c@D zS6ZDqKSuPVrJhV!(C4i`)R!h|{cCCi48N;+A2|g(HuZJ*?rdrL=8nm2U!A;Exw+%F z>wnU~DDhB0DCeP>jrFsY_0>z$pPxpY9a1E0g$~o0$Jd+byUK4B5S{YcD76|?n<|McDC|GMF^;@esA z|2KW_Za?3ozw{pgmUJ69PWxB=md>jk=BoFSbkvdw52BrQUP}BppCmC&XG(Rn|IJRj z{k!OYT-$HAe#6}1xAx92)b_tOzjgl~EM%Ygx4Adw(f4gxsuJcWs`nFBjzaouB2HjHK zvi0vi{bcp8=6^Q2I##N$K1%f;DMao4q~8vD2Pf(%x0=p&xGNAA>GySBZMJ`z-m#LB zXlHIr`Z=Ac?HAi`?bQ{yQ8+V;E$<&K)on4-f*pIdF}e?}tI*%#PiL#o{`Cx07kYbU z_SW9>b5Q5YHR$mF?)}8GuP%r-S&ahPJzTCW*A|M6{LLM^3m;TAPyT&jsWv-<{>$Vo zRn=4|u(XTK2y0kXWwL*_Y`ysC?^YkIXL1Kh2XlXveX99uyTA6uhoAYRRNye*Jt!C> zkNUxhZ=fr%d!KkTCW>zxHR-GI;L%R2vpf0QskDB9TRq{$yj(-uU-*Gd{frTx{nlP+ zu&Mo7@MGWF3;!*(`Tfz{)Ab+Ce|HXTekuA7jU;q_?v1%0@BR26zPgaDleVfOwjV5B zsyt9WSw1j%va~#vtuMF6(GYPRgkm}4I*@%Vl~yXQYX1u00bXC-)6(CM)pzILtu^x3 z*L=Kt6#F+SJ6QFIQ|<9>Xq#Dm!(D^$baKUeOPcCBh>X05h!5*R_Pe-}+cbV5mDaD> z{>9Tx-i3>!?*4C>rZbmo(BHeq!;gQgf-yd!DX@7T-1grypP#-yb)&XeA`b*c)jaw< zS^{I+3v1)kqelYuO2E6gZ{%O8o~(Xu+fwCZ@p=vK$b=QE_BJMOu25sM{j2(dRaFK} z`?q@SvA@~&;f_Df-I|-7`R3dglz0#FTn7E#;hE9IXSE>|{AKhwZiMu@~N+Re&H zI`mO{zsWWba=WmMRe!L^v!(iYRg3_1NNF1q7t|kFwChl}#O?o8)mL3hj{6ptcS@%#=PH*g=<{%{<(r_$VQQ-~dUvHp z0d~HD6RN8#wtN$}XX_R%!cLq}{mBENw?d2G{?)H=J6F9|q@$LD%E+f7>w z?zmiew{or3=RznaMHQx&TC)8Ed5mehX^acXDLoWU-!Ih?y(@YL`FtrVuyaeV{J;8o z)JNeh@Z&?{pev<1^z~frt$bk;-d(a_$u_;Y zqfwnGBLW0^T|kGBwp4nzbTPlH(8|%W4omezGt^qZ*`tE2N7c3!UIsZ*kn~Ron2XM+Q(u9Vt}|fLU(2KN!_17u_vHpSVoTq=&aCM zeVzo!hIjWsHl6M8S7319bCXmMZT;%Nsjpdo5oZf+Z{M4Tuh$mi!D|YBd{Pzse+^r7 zp*T^rEV*=3^-Y&f|`EJvyeXdBo5!QO;R_-s~KZ$%a8ob_<4Nw$zVFN>P zh5cw7(MLsBV0z>4TsE!i>77FMJo!}$T06(y*}vjSt4B+^x`n$pnK)^8thcn|R?qA- zBK#r};=T=d`rSFar*Oxo|E$sH`25_B9gC%tg@x+1!s5ODULRB%)sy9>h1|Hb76}1= zZ|-=f^40R|rKNkSE8F_gJ1SLeyMakzgQ#&gAbZ{&0m5{)!(V~0*sggyS3h2oUOy%b z>Fn|5#Plq|Hf$8oE)3SzLeZ4RdkTJh@lKz-w}>RUr+A?7)Z{CLA5LLpi38sebf%uSo2+DO?TUdswPm94+L@ z2eDY%T||$z#nPq9bLE{AuNTjj&bC^gJ<)0d(CUF)Tqqux{CVkg<$6u{Z==R!+nQ`% zJx@0f?Kj+8+(!t11;V0UY3EgM?+%EQZeJOuHz3|lzuLc0;MqoPKWxo*yuab@ZD=l{ z9At8fB^rOH(X@a!PwXo1DnD0!uCP$LId!gfy5;c|qXQpo>hP|~w~O@lEG|sXZB&Y@ zgZ_RdyFPyV*K~zNTKKCUFYVu@Op;j1ZAxXVUlY!IQcSjy=Yve)j*tJX8-+q1`b*=q zEfjYbUMc*v+Gwipa;=cd)^F@U@3(Vn?aH7=;f~R-nAJD@H3);dd^IKNqjv_?t=IKS zhYgv$ohv3^ZBm6N92@NDD#qvz-LZMe196n)))3R44Wp>S>N;%FvEt#B7h2TQw) zyUOd!=Smx=7fYu~h`h5Flf4+G?EWV?_OHH_M3PXu_Men^NpAgar!>~D3FqBF6RgYk zkHV{Z^m$u^9j_@|4a7*r*T$}mQEZ&1&70p{cwn+oE;laKZtOrW=x}8Y3Z}Ci{tARe zzsl-*J9j{Q^uBK5{3PF7)85k@masi8E_`YwcPGEn*ZO;7>dlwX^5M|TwK4PfLw-~6 zV_YF#;VNzoF=wM4Ir zunN3syg%N&37pD_3Hp0+bbeueVc&-LkDB67dQahwufEkM??cN5o_f8hya(9N>xo%? z!(W4NcwhafkKPIXbu)bjb=|q_{3WuLVJpvFmZ>hL{bb&-$FY@dO84JiY2vCzKea?mfx9XQ$LxmrvS+-q&P36gQywYuXz1Vzg-GKIb z6FAQrP1Bh(vu9>6j=~3gXeNA1i1urv$M<6VFh5!CloXsOu6$g0)zS8S{Fc?+GR>@( ze*2m8*!R<~w>z&{YfWi-x;T!x9;S5r@l33~Jcto@oXB(OoY3pyMAjT%-GA!5UQ95| z&rtYs1_SSV)45f>ll64>cIUFYWLvrRW4QC!j~ApowLW@YTe{b>drxN>UfaQHo6*+$ z4LYygoI0-)6AZuShjHS4X7n>B*3@);S>IRA)sHEsc|Th{yz+!CPo}xghMMloA-9o{#xHH>E{Gd`IdIe!Ae?Ds$^PB<5;+k8AzdFuYo^3*h2x_8-fU$6bW*gSyI)}u#U7oNv6w_Sla5Vc4T-u2bL zk6c%`IG6NgQ<`3~zAX0(lE;2*TVC^(qBJ?_>E=4A>E8P~kEX-k2c}ZiY*)WhpI3^Pc?_XMQxY4fhH{(a;+Evb_|RZrJb zf|TaYqvp`-s^|4f*T0`Uo}TX9PcEC&)wJ%ik{cVpk{f-b^O6`QYU0zxsGhf|@T;%B z-KjTbg)wcTWqsYPV76n>y8C#hGDTiJ&3qKS?%sJt8qLjRtLe^V_wm~0O1^(0?lAq0 z`ALfc{fSHi-u2bLk6TUb`|IkYZw*?Gc|Y5_o^C&``&zk`Q|hmtE+jZ6Cy1@4OU-iG!r;KracVzh+JH zC&_2tR5y`EpQP3v5g)Fw{xYe7)z=39GC2{dD9BW(ZL z5cQ7g{XS!73JHMXo#x)uiw=9F`_0N zwH$QP81W%}&jJ$-(OiA~{&G*9A0rNuR!?EGs&nzNZSQ2Bd=T$!CHL>Cvwwp<59-@r zQ=YUwSBxYo`&X8%-$Ch7U%sD{4y@lazI_vFDd*-KUfSxPgGoAk-R$({%$RK3qlf^_7ZdRzE*w z^xN*t!%yHKW4=40LcbercV{w)uWq`HX9sCRE} zW!1NvCg*)>+HOCN{ao1hW(JA4_1C$U|H>c{k>*1`Uxuzmj zEyJ9%bD}DjNe^+}1I{DapMj(hP2EKMT-~>t)(?=^vXg7N`55B;e*bHtOp~J8kKx{K zQ&-wzvrXf=N24m2Nf+_m1M2-ImXmx3^79cKscP+=HSF^*PyE-De>SFwYZdg^*Ad^#VR}Zhg@Y_JbJuA6i=Gp(i^bf4R zHj@0?6wao_hw=)K0n|E;+{ypyc;}@sOfq2m*Nd>Np;Uitkh$KD_WYbohfRzB_{pvn zZ4UhGTFP@Gi#^y2NpKa$O+5-EP*DgWZJzU7GT9E$zf8f}(@L9Gya`K+pEjy`gd1g^ ztzV|UVC&aT@N*+>zC;_Sbt4~@%>7Ft#=y)RcVuiP+K5-5!3q6P;MCY zMhfQLrm4RnM!aB{{vwFJ3?5GPr86Wy&M7x+vu&vjg0O25_gDCW0c=oPJKA+`+aL>BvEzlIaZf;J}uB8_;e-KW-XtD?JMmSxzQL%h-50QRaq4dtYgrk{0HMr!!DK;b(=N3xxMT_rt=L%}z^omVRL> zne5oR$4B=GwIypAWkHd}H=SRQ_OK`)anRsv?iE*Zck*llGyMwduZ^gFn@IblT8bVI zg*<7W8pnZJD#&$Hjf6kf`Myo04Glr%)onuM#eTwm?xo7wK+FeLU#4GS``1pma}%^3 z?_!A*Rm?@31#G)EM#_j*Y-mFvEMh1m%7?8gmPL8eesymnAMkWW*ulcr3@-&#-Zb8u zi0|7iKW`_jG;Lq*bIkNJtiLv*`fU=nsOpP#ZkK({oNX1%SBo^;oetG&}?WOv3M#SM&ZCF#BV0C-1Y+ap^BO^z+*D=FLSbuFq_uE7*&rrVZ zm!-C1?sgCT!uYXu9C4Ci)({pR<0iT@BduI#`(N0#@c)Ws-FK|}Z^b%DY8wWXR>VnG zUxv8{tFI0IW$HFO+6BX?u*P`7=cb#Cyg1J9-WbLKYm5#4ZR#!~$2Rl3H-=GQ|F0cB zGu;F&&#nfF_q%DFdtESt0&9#7*5BT+X}t3?7$yy{#@OL=(+d#sjO|}$P+*O*!TK9N zSMnV5ff*cFW9;y`i5vF)GJ^(dj1AV`xVg;{cbI{KHO31*H}P^Oe}(mz87Np|Z18VW zysYG=*!Rl}6x{yT4xgEBuzGmpNZ^>itiH^E!5U*j{5J6!>V$RN>y2S7u#IPj^p_R5 z6Ac0`VrO^8~oeUIU`3n;v~b^VE?ZjJ~N$imE-*~j3=xyHduc->+~W0f#ll2J3Isual7uB%EKB;9YDe|>`IWrB}3#C_fvhDf^o zD{H7Ks99x$F9#u9ZYF5F-%aEGc^GC82&+laBK6gOtM{^4x9{Umn7j-K7Vnp1J}`_R z+4is3HeF>+`RrT#Vg2nsP4%6)&FafAEs~`%q>o|jUz7gIb&-ed-(>K{rx5SA^Kuxb zUl=6&H=F`fUdqq&Zp@$lmprUesnw41Jf2|`Pa6O+*{6V|CM{o zneF!t<2#KtKlf$-`9Ic@v&|2V+x)D2W@zZrXP(@CpHkNS_m+dyDYt!HsQhXk!}$uF zXM8(-k>R!V%=V8CBR}dQzH9TkXP?~uQF(5Vulf1nT0UIoJ;JI%yzVZ+*l z>-=i-Qy6+($z`sSZPM>eT#xJ!-9Ptjm)G&ZA-ZodVLO)p9{>RV{{sL}O9KQH00saE z0000X0Me;QuLWiS0KkDO=Wil>hZD!~jDBPZiW(000<(jwB+$ zGxRv-KXmTeJ6r%j^d0~}gq~pghyGnlCBOr)Lhb?31^}Gs{uJHO<~T59FaXqO`q7=e zM;+65YG(iLcd}sgfFs6Vvb-{w|B}1+mp5s4832F@O;P-t|J&Q&G`|c0{T^U;*y`n`V%?_aB;82LC@ay$tSu=zsdK=A04z_wawCInXkH z+rjyV9qj+3{r`#0f3AV)AM5<5Zbk6l`;0vJo4$+t{af_U?O$=nlL36VzCmLE-Oul1 z{3}m)xxb6a2AaRi*+22qg&s)$NB(7a0f5YZ;O9;U4{%5Q_xAq`e%>w00p1P%e~%xJ z9>)Ldb8GZ(`u~QX47|Va^S|f*uHB7Aywp&9KtM%+CLbs($!nvt+KKJ~csS^J+a)#S zJ2?++MOi?_F!d&yxo7iS{W$ zb|x;E`sdGfY^F~tetY=%VejfWP&mYpDsR1H!V=L|mQODo9ekL{?erYdvrY?G@&oMt z2qy4+V7iCdlkClmGHc#cei~-|rRi-4j{og?W~*NG#FvU$l>6NJg`~$`CJKf^!EJ_T zzMjoc_0m<4(J(YCu0ZCPwF_Y=>#yoP3Q|);Wbq%ZwoIK8Ug6hg5XRxi^C6EERPYZN zv}7&+Fu%UZb%As-r15#HkvtAynq@^1?<*1p2r$!B)bJJ zx=MJ!m0y$b2&fX0JAB!YLi!QB0JwZ`0&Z$XbtFH}{$404iVKrRE#K5wxHWB<0m%uK z*3EgMZ?v`>_K9ncgLYBY_#=XYkt=U&ImI4(&hgC=ygbYw(q?-aHB@6cS

zV(hnr< z4GEWPJRKq{Qpq0cWYVI4H3$Bdd=8j*6OlnaM-~FcQ93@{7wgm?n%$;A zS<{7-g+k#455;UuCXW_JZ+YB96!my&CD4V1(mz=H2)Rl<*@ADQ%wh<|j2>{!Iw}xR zgHbk^28bt=<)8h*bt%&9k-<}~Du@4aMFcVeE+nS`r!c5#Sjg42EiG?GQEviFl1Yuy zya%$ST*GhX4%BA_z%rfDXkMNCIe_K(c3;J@Qu_B`L2Po(h;fbxIzbxVL_AXxt6 z7=wyhPQLksVhoKj4SsDa{cG;biaBAqDg=JrBFaA#_!CHr?(!VcS3O@i*GxcBk`>KkO+qARRWt#! zOs*;PrEYsFIkxz(!o#{iOtP*iqr47%F&h&lVHG$bO0%kM88D37XE~FfM=@IvD*$DH zV!>*`gcGUSmsg4CMl3DG@ypht17Rsz1ub0Kaa!dPa?ayze+vuR#0oh7LP~xq?#XCm zXj28CXHU;Gexo^Nxhe*JM+m5hLS$sl(8!B1!0{VF{6da`kCAV_^2eTFM^LXoh%?wn z;Sdj&*FS-z=1idV?l^D|ZA+6gDipO{3&w5!7ej*1r?nYi-mXX~_dPsDE7@*~{CMhH zS>%Yc8w-m6s^S>0atS}D!C?;%2jPf%q>!=VfiOBfbuy|KZxLd7+mm)^Yb>P3nK(vU z)4;#qL-HCHJskF3H682HjCnowfT{IKn{^zt5iw51Lu3m@G9A!Wwsay^DvwX^iwMoYd@O+qzO-MfZg1rpmDG zcjFO+WV5$$S&e`DVlu&{wUg}H#UhG_4U%;opd^f{QllEj0;rj67Hu^ni~h}P}HaqrCI5@cx{W1kZC+O53U|650xxF8XQtEz40MRk)&?hXwBE2?wP<21pSF$wM6 zeBxtlNS*O(PUjT53rpglIHY;H{bYPCwj-aCC6jkZC<_D}^qw8Yrlg%$ki|~Z_?Fk% z`H6??p9F$PL0@FAgy6GfGL3+smu#lSMMV!b$tsefjL|KoDZ#6jnan z_E55fTwKpuNN&UIupLatY<9$PYyMCib@eW2V+8(F)J)T)H)4OKSalXh#X7d1!_g_F zmu34W)~e}5NB(g(YS(h6L?a=}#WHdYuCQQR*1E!XMuR#@IBe(_X!-c;I*l z$4C-z1+Xes{KUJc0tmqz{*uWMUFLdn45(l5*Gpc0W~$+Yg`5lCI6|?MAc#|`6+tR z@(LW;j%_dQ&>$Q3#T53ehFdTYJM9YbaMGFei$>5s<^0V-rP2z-V5`|stOmM@!WW-F zs~iq)43(Z~Y9h0(lAw%bYCKa?m<91SLIZx1wI7J|jHiRXO(1bYD-iKitWqfhN*qvT zQY~Uy($1UY0g9ZL60C)wP)dZBKj<2wbpOC$-(wKAONPHaaAeNKo{3FUWan|nm zrVMafyH=PBS>j(l8hwp*D4R6L7d5CBsFAKsBY9mSa(1jB240Q02o+WP_H28V5up~P zWPFEKfTmUuOC1K;z?iA7$kmA$(0*;COsuGU^AVP_I7y7-5Bo2&(*O8&BsxJ5$tu6W zdGT`IH+4NbVtcs78}jK!>(aJye0Od@F8gO7LTR4~!ljbBt5irm1T5J_n25UlnVh8V zb7a5#rVNS-20mZhN^#o+jWdfoJ7ao-B?$Nn7i}3Y&!@j)zScncVr*oe)=0F(_rZug zvmaxwb!|CmL5nRh>H9BqoVNJc4lOt_fCeFKww zApT*2cWKV%p1SGy+c+vk6CenCfj*b$h+dMz2GIvbn}j`-^1K49Y(H=D_N|dyF!>*X zjoX{ZZ*C_m239fLk{#ct=_$6ccLY=~L$aqv?3hPPwNt(kW=v*W^x>#AqSJ%lKh|^G z<8Ts7JzTBJ=9dO}G}q-?6) z#C*v+W7b%maA~<^un-iWj0+Z&G_BC{vErP6!^)olqTX38jWo~4j<|iFpz1g{h?y-3 zvyW0g?@($@8((q7a}|LW$k9%p1dmghdmE>8!5{jbEP)(DDJMx=&C~L>5@{@&{{V#2 z8NXg{bVEvnZx+hcM#n9W55owSXNBZPQorKyfHAFo{K!xsuK`@GnQvuF_r3iPIafQ- z&HqjE!<|kE;(d1dkYo1smfD+Gf`-jH0DmUa{Pag2*~~wvohiV89O8l+LsZ8|JX_0f z9t6Ua9}*J*ymI2+@TU;_gZQef!nj{~xh{n6a1_YM5X(E7#YIG4Igg|H7}ihbDen#S zhhMMI#R3)(yN=4-7zg$NqSx|aBI6*lePcINdv>UWllhVEh#+-%K6ddVOA6ZC-w;2- zN|hK;d)V#oIEbY{lAHnf0r(lEFAcl%mltW-2y3%q!RYMtQ~I{eJ=0c5IlqdZ=qRlU zg^9g02aZM>!(xB;(jU4VIHN<%btPQ-4-K4{foN;RXSbdABlAx0;_TZjbMY^+kcPva z%^}ZY=8V_>?Zy*^TeQ-Fz0NqjY!if1`>8O_Gdh&SL~~Qgn7`%lPTz4?S69?tB_C2& z29tY~(c_aBIXMiYbbX$@CCZ6j%$v+@0fnSqR}9LgBP-mT39~>@q-QjNd5(KE^>|oIUk}9Z*D1A&T_Q6QH4^n zi?A)V^uUP)yZ8HI{``E-W4C|h&jjQgA+uZZe&%Gjd(b@#8R|Vxcp_y_kSYI-sq6Xt z`4PA7|BU9ohahRNkCbd^EL$i+p4`*9a>gqDgQ}hU2UQaXLDepV?1T|5sgenb8fDAC z-Cluw_@IcN`Wpe#Jpt0bnhYH1&)RH)ehI+GXo&uk`69j)9?!g4T>fyt^}N@-`~lb1 zUGtknH);hmVXrB|b7!^@{E1RBxZ`W~$n3u{{?BTp8%8hJBQNS{H#^LZxf2SmU27)8 z|CA;JdrB`pVs=#CCvWH%N!qv>AL0@*NsQMo9La+7>ooXrO&u{iGKN<+;|^U~YU0~b$V0WCc&GH9S3dRpH%hGMBV`cI>BbD8#o%t_7iSi` z;{3tU&TR_^NH4O@6qMq)CLzy%kYsWBM^Q?2{G>0sBi_W;l#;n7jrDRy z1rA<}-x{>%yX5iB3$8-}#WCsZNQXCLA4BZJ11C%7bMKr>oC_i#hpIsiI zFQ=^2Jum-uC1c0P8Q4mKE=jAsbZP^+bl*E14>K!R4|tlFnV%>I!3O8<$y9IY0hGTh zQbrysDkH4Wtky#QJMK@AnVl;u0{bu4Z}1%?beM%O7gTUZI4_N_!7ZE9UZC+<{AOKl zZ87gG%x&Y7r!ck3=bp}ud3#yXnIqRwjJ1sqV$rYzGLIzO^W=x$kpS~8dmw_{jkmf! zy0|cd&`Y57@3Qy1lD(9`O$H&Y_Jz6r5P6jNI=^q$+ zW)M)Xf5FqCBJ+x4tEDcQ+pctH%*q1EM7enR;wRSA_8d`DiS2iI36!R%l)59o$g{M6 z#pnmA+F(5cW;A^6)a^8N{8iYrRi0Dw?3r(bI{k8mC7z}OB*i1$vZb2JExT4t$sDvT zK;(kj#pO1Uaygc>#|R&WuDF>|o0m=%Tu-r;8b&iwi%g6Js?)#1sbN`A#8<^MYp|9@IubfW+FAFNmI*`d>PkOo*3$koT}qoqdj_`sgAxxuJ?Hc0FtRk ziB#m>o+W4}n2M@R+2% z-*=t!5jDkiZz8Tkv;EIB4~`ybct>?W;Et5;X8TIYDBbb-EsdENZeL>Uc^|yEtBDcK zFYw-?x#WuCAZIJTgoe&d~n?jzEi%wi;Oma{fakKaYPIPDlVQG5Qvm~8R~ z#?3tk9LS;M(w*(2Gd@{7ygK8z>&ch zA_C4gL9ic?N&p8r{pdme3bE%q0{|v8!#N@E^Zod`@9)FoxnbYuJ1GBNg||O$p03BQ z``+#XKVA(3Z?``+J+=d%0>_V*w?7}R|6X4{2?xG`2zIY;PrplEKacYQFfLevUdHp@ z|Ni}Oy_rw=`*Eiv{E2PF!dA1;EG=J^DW%r;_3vTA#*R<=Lv)uPn89`98gnVO-4r97 zmu@|eXI)e%bwFISxq!`CoBr7w^Mh&nYepeGakHftnAf4`Y6i|bRq0a1b4$)a34QFK zA7WtLH5{3fQne+nxiAnTM< z2th6yJVk-L6%<_{iPQofq|5_rF){tz4ToqZ`x^xi}c)markhM0a3Vb?n z6iNn8TVhTos?j^(orlGFAK*x~B)lVVwSWZgmJb{q0Aqpx?~^W1%bD6<0?nFnIXVK9kD8)&1_0i^lVs2~qtf?Xky;^I?9hEbGrBD_H+{ zV8VIMMSLHD4zK`gfy%iJ)@(2~>3AxvSVD>9?@&x=e@a8_K7w%U_~{Fy?0OxG{8(MMjDd!mdtQf7?-FV`+qxGC`=6w>izYvvmYj&e% z<%$lQp7*Q-O=(lVN}RpF^=s?iUF}-~Gt%AGH}kD8PtMEo8%!9U(}RKwYMM*d_mUj_ z?JB*@I34Oz-`~@UyJ_f10At4-F#(rl6V>$GO%sT|DiRErb;>jhwh{u2XQg($rUXxMh+@vHGua zSnDN^q=72xEF7DZ9R3PRN&dWs|YQ0M;u&Us|zy&u^h(^_ns=_Z$Q zWj!Y@{L2X0;sfbwbDD?WV5~Hr>FDS+RL!EP;Ck1AL-S)KGQdLg0o!TF{Klfb05o{nqntwudEax>Jt0j!!zcIV{G|Qqpekl_mGq=*OVeHx3;!_# z?0e9aR63GOs}`B^6n+)0j}oGoc&MP$JPlg*|9LdiiXJv?saF)J^};AKPxas#cmA$m zQ2#%}t}*?5#h?|Tg1l1=rc!1`nRB2dN(i%Qv)g>HHltma`YJctx4eu|I!m)KV~5hp z0)l=lMUZ9#+-LMNw`mXMF&oRX{uoN{G1rw|QFmAfqAY>F5+{QXT_84RQSNz@Qa;{A zLG^#k$m!3m9VxY}PxQM$xX(s`r8AK|phk zN6p<0C#*BY`B;5J_lt?4nj5^``d5LgyoXBm0;i=iLaq=+hU}QLZQDPCQMq=i_|Lm; zw7zp(3Y{f@C(hFXhejLZr``*pf#rIKd93vKwxG`K*3A`Nzz4PylZ6+Dn|pNd%yKtp zl{vJY7OA{_bkZz>TlEC^Tf@%lt7@vg%FYE#XJ^CErR7g#b5}CX8Dvv!bixyI)F2@k z#TTlx6_(jdX>VGaJSW7ZvT7aCGOqL=R)+fw!a46c>9tjL!tHTp2|k-2m-gvC+a*E^ zkPk~q6(q|<;CmuP9Yk`2V&l(Kyz#*M`^zA+v*Gh4`&YVaMjjr!IR&KxU-p4 z%(=t6uwH2`v!KtgiKbV=O2qz*b`2&C{xu@X%lAoQ1`&?&GkocBi+iM^)jQ#~#n+J& zJk|K5S9O%&{5IDyKS-9CGf?FKzRC4fyxwkC(!9xV-;Z(8B&^<4w)ve1lDsOT+PkN+ z#H_7&xwgyerz@x-wBFBFiQ*NpyVXbfX&jAmb`}Bh7w&I)B zXdrTr%cOQPidN5|`1Q+7q>t5`Lm#b;y*T?WySZ=0kijGV0&aHelKunJuT*g^4^x3= z3L(v=@7<1|dwvTDU>GM+*jUSsha*xrs%ZJvczb4c?ynv?c4qPrYGb-RO<_4TLS4q< z9n?2g^+2il9GxfU=sJdi;iej@I(Xuvb~VDFj@EQ!lDhQ&Oov*lb6G4g7p>LxjQBoG z1k#a{Tkb>-a7E1Kds`gNBpL0~rrC1~S!x!U`6)g?^4DddER&Hw_uHE;ZBoYnF|BH? zq8GBfK28Gua4`yyw}|@%xO%PAC;OfF3f)tXyk6IX6+cUwkWD@Vc(!(Zg3q+hIR)Z_ci0@e z>)4Q^dQ!fIC+6a~yo^x$x9MkszN|gC|C6d8c#^`m71>wR9+W#Oa@k#FNUPM`6V(fX zn2X_ESc`eKP2L*Ou=Uce#30}?Y2KqAVtYaLx&!-4Wo!ANqHrTOymC68wW_jolELcW2!b>;{E^w$Qt4|$abSdXzV8xxE%YME}@ zN>_aGoT>DpudVVMTo|6?gPR=As1Lx<$;Tyif=<-souXpq{9RIVI_RcV2jp#tTC&u- zvq7FsRP%Kd?#O+?9i8mKY%7StbN__TNDf7-Ht@yBH zrQsSkMJyL{p>9&1a%XKwH6_+#Ss>J?oF`2?S*K>9PLQRt)Nrq?uFhCv0GdgrCzY{% znwy%&D5InWe18&MT_9drS)#UI=h52x?NrT7vohqH@NIs+^qh<*4{l8gbOxAB%8O2Is<8)vSrK9CADrUx@F44wBn5vU}R?>tw#-> z%UG$MX;x#K26xOEy>bD9IKstwf#^QbD4yd8OP#&XI>N;$NDiY@_l5FxO3JMcTxLxs ze0RB}urEQ|w-aY>VJR}JIu{E1%ZgmYkKGOT-@7NGokkln_F|^`@*vOI@+))-JAr&Z zO?+2uEu^?Qh~(HK6Bw)x+J77Q~7 zCuVci{N`is4Rn@wAE4tfio4+boj|4Yz8PY!3g6jvFBNO8a3Tlr(sAeB=TiF@1M-vr zul-8DS-MsvS^_E}3pF1{J_|>RydUe7%W5zWQ`6wNl8oso;h6~rE!@^&v=qoVW{d7p$O)ptAfG6HfbhQev@Ma!ULTHq{}jg^m+7{UL*=R zlJ1PQAM8V0%;u6;M3G}Kukbz&dv|@Z6E&2E2&`AXQN1>zKEzT6uh>&sB&O&5vCB?_ zmZq^jA&fd0Ikfa z)@)q-UlB8OvHVeCY`=Hoc}WWShjQL%BvmW5R%5k42w8fY_|jSDi}`Tcxn%83R&U9& z7I*#Ox}`2b{~42Kkh8#PFde=ujM9>=!l2g|tmYAjv;MJ^?Wdw%=Kzu@PAeuQ&WJ;W zY-O(LI*ZdN?I96XV|uiu$?#e+J96!E;0>!OV}`lQplw~Wb408aB_2=vqZUa9F+aK9 z;mFIajgqXIEZpEaiF2o{G>VtBb6(N7uIPEt(#m!)YEJIhM**9)PLJ4Xsq5XjBcYGY z(6ZlEx6-sBO|rzmEXiU)5S#YgCm161%f~#B%r&_v^O5F~*T`|5f+8%#n9Xm1PivV% z<6{=3*8B=+zX58&dfTkx?K?a`EJSonRj7MPVO#bw;{iMO-Gz$5zy zslAK^DAT>m?K}Iqe%cV?Z94Ts20P0WM`%M2D({Ap28TSVJqu1$^}rGia|bNT zNjp!o-YOQZ&-)3Oi#;~LTdSdgGEfq-V9KGdtcCOcnHLI!{q0m%S>L~x;$z)moi%qg z+_Yi7Hx#AB3$+JGID$u(!Ed5QVrm37I^)Hib}|lwOZwowX=rdkidl2Ft%rycD+7}V zGxO#c(Cv-=TKz?txxM4a_Nfx*hfXpndWKBr(ZwbfkM_Ci43vbmta z2{a&yJ*sf%oprefnlO6G>c>iRxsx3yVTRN$TzhcMIr%bBb_m6vJE?dv4`C9{M@~qQ zGWfm>h$HGKw?^7qicj1pmgB+Fi_l5#j1con)FOCjM8rzbjDB(f)YLSTdCahIdhM@=TvQs=^N7a0#==Fn+q-=+Pe9#{)4bxBR~> zSrdMc{Qj7pOd%6$N6l!{tz(h1H*7TB@^dilxWABvrgjwf<`>w*IGUW>eB{CaAM>Xgw;@g!h~MN}D`9&7kKTZHuxx)f*_Z0Fan54n+Xu!O#z#}Dad2A@$16=~*o`&gIT2kx;*|`z zzEcLm$roF&NINxzpnyaiZR<$;e!5_tjXSbrrqD9RDQQ$wC$Yf#2s7_BI*iyFh6V1d zbhks3d0i1?@iyD%Z%Jl1Ky7e?+k0u}M-@O6cRcY4#J#Z~EiZ{VheZO-6u!I1jIQNH zHt)fj1J?Z)HG7v?h6U}l2t+h@p~H}DvR>P))h|wjyney7;_Zfm6z3?}B_I5BmO!h$ zqR*$1s_bD1bD+KDXXSqbNe_&i+JcH| zTRL}?C|JpAc{tUIURZejR3y-?KJ_$t6ZdY>s2uh)2Bdy6Sn|^5<{6sWg%kB4fJ@8i zFvutA=i)2?!Zz!RU#=iWVqNv+|Je}rF+L#wKM-b@%%?3}37*vcj4M8Ihfy9ZML z1f5#R4DU2AxRR!2va>{)V-sRnrJTsfAIa4xYr3W-{!Ndeo3N*XctuOxvirENg2+si zFc&M}3XH$82E5UaxBs{hu5hX(O5Jx#8a)yE`M(zqAGl?Bo=2QSi`F*&e4zCV9uB`c z;bC^;7^O4p|JT%V?oVZx6?urQ$U7>u7F`;UDRp^qEI@6*#oePbi-~j4oP|&%Mj}SC z>vszRDKe_`wQyHw!omRjCpT@0pBDFRSdn5Qs}rO05l!Djk3{sH(IKs@JjD3n72L>g zlw&FU$um7Y+};&VE|qER7xd?IX5h8GA_IK-FR6rV`EHy^2)1fO*b8^@ULdWiigDNI zm50W|vEUh_U!>$iPcX=s1}vl|p^bt+WzPKzgNw=YHM8V6JRD#OnT)M8yU|aX26~fD zw1zkHOpGqv3npV%FH0B6VF`#}v^Qkv%tLlIDqyu7 zFqYdbbeMdc&ik=n?J6jE2y4h{b(qlG4^aupNpD=wMeJ1$mOBnsn!&@ zLtg54jA<9?>Cs7WdPAf`MgW6#0wV82zjDQhu^Kbt>dklA=d{KE2aK2R%+PE7;8~UzR2s$c3)`Nw7Jb7I)jQMvjhbDNs8iW<9lHAip784{x5c6+6Z1m40 zZZt&F;qm~zXPls62wq6*!aArK>g7Mkutu$5xons#-6klS4ksO@y3#0lPJg=4TGPj% zQRpbYyH1l7f=A6ihghaa2yG0cjOV*T~F}9vn!p-d9jghF(YudFdgT z?W~X|nDKgAyWOWVD#nocJYPyUfsYME{0f&wJq)4e9R3N$xXYP(N@@7T5(j#~e*iqnQ_|&N z1^&i-R)YEWPmTykzQUMb19+8t8YCouu$wEDB(ibh9@gua4?NP6IN9Xw4|wU)UD~zA zzY&mMn7{vpcgHuJ#o+1Qcm>@8YG>EY&pT3j#yrW>jm!M3J=!mpc^XGhwRnUnWGa$x zKo8@?#8jGcd7uu|=O;N}&M9(BpBgATc`aB3I~CtFL^ks{o@b~SMpMiEdN1_h^XF|H z{KMfC-jgKq7|&jGGIr=}&M`R>rDh>X7vP>M5p|k3xvLXo7d6)qu}0Mu$;hD6swpQ+ zp`CX-Jp>XIYA<%Pk``_3z(n-laT1X>Vj0HK|1(K7hsY+T$R-gfJgEsMt{xXPnd2{z zPXXQ4cYNx3Did5v(}-;)?tfO0x@3PR?R`QO8wF6bOI=9=(#c^3f81&n|LDmUoP$eu zfdo3yppIt_^1`{#L=o60$O_48;n}-B)1fzfN7X}G8Ib$?UxV-fd?gFzqQhI@30+2c z_TOQ|ywE0b2H?j-Wqx2}OM)Bs;_!7rJyRvbW12sG)QYqkCo@Sr5KC!sgI{ASNGg8O z^93Hs*lL%lv+$}GSx-(6DN%53AXkhqO6}2A%qyy#N91X)yKuZmrmf=0Esfp|9z*OJ zZpFxKlPQnq;Y0ehe^ijQmFIbssk&X`BV$;gW{ChZe%dns0iCtC1Ve^Ys?f2Ss=3?g z-GNrkg*D~rL-2Q*P=l5!$ieji~CF)%ts=IPxz^WH=-q4{Md;-!G4iTJ$H|W%!_gC>O36y zY>if$sh9A*hq&-Ptax{>I_K)*;xV#NE2XdPkKX)Da&awGsRM$~7r%<(9!B^`q~?jq zU!K{QC4AVE?2LwGnnH8tfxkhv5M7-L;sMMp3M~9`;7LDY>jE%w2B`Dkxh7%}D zWRon;5WkjOosU*+@j0I4hW3lnrI_K{q>Q>yEa!{~w?#tlfT>p26&Fy>3hBZ|;xdb1 zQ}&XbKDd1j+qn?xu_%C`S1R4LClT$~n`HH1Y=<$5Hl|WnNk*D6p=H&uf_{*dlA$jn4sz_Q3&%*N*~%dmF>m#qS&&N;l zv64G^$p=ZsLhEZ({8B_)JxWv^A0E`0&?*73E70|nA{x*SpVV&3~?bNg#~j=>GG?{0}*F6s6;QWmu+XE4qN?aU6>$pav*q5%vd;VYjH|Wg0QwkD@f1Z2JP` zy>9Dpy-vi(V&|9&YMPd;GKmBDaxponKsKgq^{eI4$ssMGNOx;)1(VL6gEn0oh zZ7lMVtVKzh-XkzU{bJ7BM?vZ3+&ptXT1m8{u%|C~@yLw4vQDPZ6taw1c1W$WY&(c> zhMf!Rt3}u41q2Csv74Z=I>xPNOxE~*R3hQzoYxnn!fHFL-(ZwOvO^FRk0TU1P%o5p z{k$c#m4JW?nF>jzQ$?St9M5HjPS23=7aO4trZ3$ugm7CvpfWggCk9xXVrRPutF|7l za9uusF>Ni6BcdGF&x006aMj!|nh3tJC;oYFy_h{liRGqlu!Fvexk)vl_P4Db+0&nC zk{sT0_tq7>4O-@jMO6lH0IZ7x(pu6xiabKG*Uz9tXLfdPt@~K}ShDUYxcE>RN7xa* zeK0fZ)u+Rcx$#R`7D8(8$)$MPzL=DiHoY`^cRF9f43QqU?{1srd=2!c{_=TP<24P2 z5B{};xx(3A>HWb+J?Abh!rOZI^HqK)RqQR_^tvrLBG_95*9(pl>1&BkMZYD;Ec5F2 z1n{Z%{$O^ZEE-WK)k}5WC<29J^nEV8O@f{fK+y8xwzC5vA&}KLJ_?e}GEIrwH3FNX z4fbP-*T5wC9QLW--GMN(B9Sr;?UWATjmuNr{zJDZk17EYotAtmGso@v{Yj%Q_{Ese zLlx)LtsR=yJLsFvy>gj{$O2xEY5&hv;h2=~@!CbtkMJSMQRcpYY7w8`%3%OWx6qT zmss-%f)c(dtxj-rLc+;&r=8Jy*mREu@Cu#dlEmy7*qB&af9qnW9?sP5IRflJ5>d?M z2^NS#oIR`J)?69Ulw0-Di)swR#>enZHy^I(b38~(tj(x=*KaOSpu9!X3zmhd8HR#! zV2~n@0ufUB&jpX7^YKUAPZ%^P+GJE_v;qsR{I<35BMbl@jj>q!GZfGA!AWmXrlbf@ zoPLA^+j)fqiC$>&fz|NY{O!@za6=+4PrUYgBqh@+hdVIU#o^^{*M}*VEP!${8}?;3 zSPheK1%fcp#nWFzMdLt5uVEbdD*DczUE8}3H3H=|5n1V}Or?aGl1&&>QtKUd7YIi| zZ|(Td{ZK7M|X;ypA=FN_o#vmX0&ULhJGMp`<6kqSKsv5pg((&S{ z*J_j8fL4DNreZ!`%BCXd^;LAK>zN;a?9$rDPhqGBD2&?nji7+onImLHEWQM~ofTLm znNgSVJijs(VV1E@)tQ}{Af(K^rHQ^is4%*A-9CwO9e$TU@Krt`GZrce$O|}}Sh;&1 zh|uT1O)1QZ6e{^!Wvr*fe)hmvM}u19Uv`vw^RE*6q)&<4`iz;fh!-h#TVH0mcTgJ3 zr*M{(CRCV-T6FFVicrW6QPbj;0WG@nhF5c0EQx?;xA!w!|ttm!EOSF z6uHUgB`y-hflg^zYeIczZ9>zvCvqPA6HZyTEDPVPm(|D_wghw+f|dLBTn^8oL*MaFBOF ztbe{(;d;q_sD`TKdR=mD`d+4=5~=6T_bHdUD3^Xu7=zx@BsK6=-I1ZB$)t7_t*K~) zD2YT2cam77R2Z=QRtqWhXU+4(FL@nxD)-!pmDX?WBS@-TEtN~bUDb83JYC=c+4i_f z&M{@tgWjBU+WJxL`a=`{-g6Jf)8Gv{YB^U_oVM@)bLXkCDB?@Mx8%(l>V*a-41j{{ z_PC~{8?59~c%5a5$2um(TblsQ^W~ew)}~jJBQvfie!a7l_}MvYxWZE$|mAxt2VHinGWvXFNys ze!qaWzsRmuEho@%*VJ&mE$MTiX zQN^X9+F3%;Sd&H59liFks`psfN}G`!e#+y0HJ2;jrB-@>%)Ih1HSQfbXiM)lNAl~X z@)KG55fyykkxVZ^&*$wubzU9B{*f?Yp5b|6?$nBQlnCCWB}2Q132oiC=OsyZC$6>Y zRNBmIEI+c7jKN;sh0ZG}5hv=cT8j+>WKC1{p;uFr9>Q=2tTVjCtulST(<6MR)lU{d zWDtZkC7r^1cSbM&(?HQeo`&0jb>bge?@So0Ny$RA=y1D3B>+E42*e;<7;TtxtShbj zx}UGPc$%TGh1-Bf6T*fCi7t6_byZ?L+L^H*p}_EzQO1FY{d7NyrXt|*Y2u7J8!1%yO#s@eKsr&|Ib<2yV7^0InE4R3R#0_te0h!-$qL%l1;O6>6cUHJa`c_$4m!m?u=R(Z{4@ zZYq3LlTv#9Eao?!K>Lq7e%^?egen$Ii`X?BjGz?*N-37!ZpK<6(zbMAe8`I+2!Q0!_)tF;MrKhg(Lk@-84w9_P0E|s z-yq4~4cY~cf=EIOd&k(#9Fq9|ya7Lw(z;-zu;7q09_c8Uk_cPTJ~ni?a3A~R0A{V? z*Ko0A-COleB9e>axMoo7o4NNqzPpre1LOA}Nf+>Gm#0PPp2Y`EwS}$o zYX_=c?c1tsIx!Sdbb&{}6(uGr9J|0N-EVbdNfQoF2wa9*rDvY=(7Rbh?yZB;f#K*c zo!0^)r{~e(`}m!{(%!Aj2~<@=6IQ_U6gW1fGtF=cC>?$9@8C|B7WbJhfq#x%eckYv@)OAL1qlR=wzi7Kn>%+~uf8k?)FuX8i<^3%L*fI4dlknmKlnvUM7Qp+lj zOR#^fW8!SP_*jK`Ji`C=@^s`qfNLY%f$%_)?gj) zce8ip29e0^62^$Ae0z?6TV%tVl)Rm7_OLq;>v|OTyob*jLXJ zm~A>P7O>?*vj!y-U_6;`lbtOQ(8(A6*7e3fUk~^H9D=Y4f3xSz%8g~+s9Yv6g2P84 zrk>7JcyJ&WB8z?TJCtPYm_O6ejEqy}B-9&roQoP35nE>8^1Y(bQKKIFR`+WEJu*q9 zQlYM^nZOKZ=$?*A7HTTYz)}UMlt_U9A@tvfqNi7*sg%YpaSw9H@?TjWB#wqYHIJVi z7I6#hU;Zu0hs0W6D~f6x(vN^pfkQmfFbT%}rwY5D8`Nik6j3<{D+Pw&M`6TEcnW(B z!_I>PiW2N0_g%+fX_lHC79L$Do9J9FgXYB&j#^8}Excd3`|r|ubJq$bcL={dEEfxB zd*h`J%f%&;63_<1BjZ-u2dT*so?Ep;Cz~eCYLCK&As9BIw|e$a-O8#Z_Ef$uU=1&C z1YJw(mi0=4Ek8ORXN2wUIrZunH&7|;NyNjMwfs#RYHt{9hZg*xT41kg#Q{^Qun=>n z6Y>yVwMYZ{!Ke0P5CKqZ)gR&(zvGBwh$GfH&tM}+l>u4OSY>o-9m(j=mA;mTO0tZx z%g`=|tNH3v@aD2{QQ-8-tglE#VhH<-cUQW6z7aZnz7Fr#t2cwWF@${FKF@{82eKQ( z?z?hcFBhi1J|E1ldnX)>guckb(wJXoh`H~#cSrg}`^#2ej6Ghr>y4C*J+JpqR|JrN zOpqsSw^$RA0JCI4G0UJv{EYC#D&h;t5Ae$Gyi(k4e{&*f6GoLU*6=%~Bt^bHa31*Z!fPa^2r>4% z<|CLk`{Y(MMN|I(D_`D@@8C<8OL(Qg^UGgY`zd%3Y4;@rvOQ4fl`1gxH}RO~(`RIR z);FgY^Wb)<@iD5*f6&yqqkOF~SoAH9rKNT_Y9pz{Ce@A?zJtjO2WDPHF0+j!IMz54 zu!G`1iAUD<8dl-NKLnoitTG=!(SVjMp=<}8+>6aV$;3sx-qeZ)<2hfx| z2vm9p01o7gTvmos6|vnz%7k-NtVi ztdG<)y`{)Czvz3883SYZfF0X;kn`it6u3|_)tbg^WJg*9AoAqfcoGACe7yXhxZ!+o zm&^GuZ`i+}pNK<{?=jof=9k!Gy&M=4r@DW!a`MDz#P259I7i5_tPaQ$$U8G_SG9=o zt!VvnZEU}@9V&VUw;qDu`&w1KcL%{lqXoV2$FfNQ7vt8=M8>2!=o1o^+N<%iWE;ds zqPOFNizO}t_^iKU?*IB~BSCXY{h>?OZ~i+4tv)u?4F=k<@U)1u)l~9Vfr}eH zfGXJ4Pb>Feq6)^<0Z{XRru&u9fiZ+Ny}1Ibenr(*OdYX)cz2Bxx#eIw??kDmtl=CC z(@zH-hMt~R-rRa=SkD$0+D*T5VsrVDGKN@+=qURr_ld(EsJ)Ljz%jks0h58$S}HUm zKoPkE?rjbvVViqdX7d>q275!Q*-)&zn7C#Iz@3;jFuye^hfFwRq{5Y z&%1s~g0~+*E)oe!T-aRuyU6IFrh?)Xbg+#Fy6rD8+jmZAZIIS6O-T-D2Q}(!G>C|r ziV~C#&IGRDvl&YvGN;6&3zPk!ondmfa8Q}Ys1&;3t%nh3G|EdBpfVooU5`0AR#fdZ z@)wfxlT~iw#{|x3ZwGLvtTP5->xNgZGYB$8zzXPw5i(cp^r*}7t_9M3<&I50jAMOCwE6(d%Ha$ zjdqlneLTe49jLJK!q`c*1(z8RJ`b*}WqiKEzxMOSOXd1+<%K3ne3sO53}qQq}bE8Z@`{1FP)34Ac^ zDvWpjBAos6*Yh8p5=MU=Q!qFQ7$|!rJUH}cfIJ4Pokc*xsQp{A%+Lnd z?;%YDuQq7-HVpq`xH+&$vb5o_cyHr%r3pOw#W6Rlj1-HF*tD@O@WED%FsvN?FwQLf zhw-`{))p(JR(jcN^}kXf;z0g%;!F@gN`rN9lS`D>i)G~9&2y9~B^tw6VELLAA1P9h z)vd;9To^&o##vQ)nq#b4C4m#SrjZ(cULX!K*RSE932ws0IH(}h-ppG1uK40M0^aPo z#8W{mkTel)UR4*V8k*q+1ut1{6pvb)vDUz|!wWeSf2kQ!+ zTX%xqrS+P>@_|ZCgvx(d47bj^vBK2?ee@;(fMr-)+V>E4T8#z9wR@;TBFY?R_t)oa zce<^Wa|f@4K2>;4{IPaBLIVKt5P;ryVY||L?;}_q6x9Oppi6^e@+8ew^4Pt1h%{;$ z11*rB;Y;VqiD<|mkYswyo&NDIK3o+Js(Cc18eD%43sQZ89ox~b7$VV;8UsW)hCK8i~Wq*A;-AE zwt<)$%_uCx?!S+{;!l|cbT0l$Q-ZCC<;6J*@Y0=a zn0Y4dJEIbD5|-{Hv+<$j8-o6X;6q)b&kshc+;{zyjG=PVa!zRjSf^L%HM8IcZkRt6 z|8#eLIvOrBXFUv*`RHim31o&g0PRgRSW@di}0j~3$IQW<}o^BJ| zTrQk+^ffP|MO+w=i(o_O6oS~Gqc5{(D)b2JJ6RQ`Ai0cQ=&ZxUvIIV8&AV6j#^m(vr@KxGbyhknVr-8=_l z(bfB1v(%{ z*c9DCuUmA}lV+W!f~fe@1N1#i`Vb zp{2YR!LYm{v;&@?-S1rY^Wy5tnix6bpMkLzM)GDq1@8S56rc9}j{JSE&Sa4`eiLb~ z;&UK|PqB5t(JlWIhtk{S)~tAnhha2@p;468-l2_=jE(K(C7#ye;<|6Jqkb(X`fyCW zppsrG{TtPF04;R^PQv>LVmR-EBc<{uwZ zSsNR;F~oWt+&KhF=(2l9GgNMS82}`3&T;2tO9?L+sepAHilpDD<2O-&-G7}F{?Bx^ z_h|dVfd~X7#tH<4_V09Mrte^Eq~zpaZe#k-tW~A;W{W$5{Mjw=6$+e1pp8n~(^?tVj67%)=9F+q2sBcEb#J ztV32#C@!AeuhT0`;$S!(iy@vpJ%5*K%addxx6dVr7hX7}S(Hr}`}LaYYMz07D0ZS? znr>V!WVvnegWmyL&KgcA3;HgzE8?2 zAwQXrh?9s<(>QC!8_9JPGvr5L|ME%yav~Ap2NmK2TM5bUS&1)h4JFq@GM?e5td7!@ zt1HoODLsl!dXE}hoI5f5jE75%SBJs=ej|hP8|jIy+>32p_>hlU8OsOQAM$)HKAL2XM;`lr{xux2XC=tcgmNE8cm2CZW zRAGCaUd0m+Iz^u(1q!>SBsbZ@A5WNp!X3y{_zU z*}5xY6{6h3ByZJ``wsDATna}&cJ?v!#ftZYx~GI7RMEB<=O@c3OEF&kkKi20;$(v!ZRvEx908 zri@Bgu69V-RI%6}f)HKd)dNBE#YhnQuaC7e-*>0=XK_Ig&V6ouT83MREfYeyy)kSC zlNQFTX(UwvN@x8 zcfmzN*@``B&QsoSif4gdZQX%18Jm4dSo^nC(GL|NVaISzVJC(;P*UJwHk8Yh{Kie2 z3c%WKek#yrQmxq`lR&VFjdsJz!kcJ%Xr1y-5 z0Zko?+P|FuA~kxpzjti=Vo4mI?z4Tz?O7Sc?ZZ$+YE^QK8#7@?^X$RHZmZhIoy4Sp z_srTxP%%iJ+D0^L-_dB=%PlB9Bq?h$LC327kL${ORvKt#dntQv$d`JpOvpdfNOz7w z=YXC0hi}H2TINwfD~jJ1_}oRjP2uE1nT(RQQ*s4Bjy<*l1B?XBo#%xZc{eE=)_C(ZMmqd7PB2FXF zbVw4EnjHzwJ-j}{;oKKba-|dCwGnH!>MvCp0$>QR^K1AIa$q6}kZ>WBLed?cLo`v| z4pgvlJ8xdQh){Jix z7b1V^!-e30_O}y5l>rzN$k=zcsA3L%P#OrCDS$--zUI0l{!+50ouH zzV@DXx6+J&k;s>yK3DC7*w2RF{lXl8GbB4u`mR?`#M3vG;36DcdUOy~0sjT{z%pNfH1@ZLe*ylGmQ05-@vs1#2*NZdwT)pb)zIPbIiDX|>f z`-2H&94-YtbagxbApOth(eAj!gJ`~%SGEmv1dKu{3dYP6*#zC0v5odv)GAUp36N$km~*{?0MX~j>4bm zAzuz}b`g>wLk(FHc~{k#pZqK_;f(lHUt=<6+B`?@u;TU2oj_p*)tDx~ML_x0XZFt{ z8EC?>@UrsyG>&KoJ4r#~qb6AepXjklPiLD9b0{4Uz=PM~>&iYsTDNnF(eEEDiZ z>{A?7rcJpkjK4Ox<+KXHin3Z$Q)I>YWMw$KQ8Ui)kcxxwV78$-eT&C#R6bK0_65L& zSIcQRz-t7xEXNm4E~!CG8Xkbhwmd7L42Tq)MdFn zYVRDJY`x;n4ASmNxSSi9uuv{`@=Y;C?2vr>{9H9C6(<_Uy*ucY=_<GfLcF>Q2Co;BaSVdH>@k*W={AjrbY$NcQ#)jYv1Fer@q?wW+=(`Ix%sJJ zWwCGFN;K^CT!8+=@{L@Ly;8E;mWhs?f_FoYw3XChOtfW52&TC-qOEl#N@<6Cqx*2> z*O}=Fpu%97UD8`lLu%~JSXH(jgi1Q%fUC-5CXB%}{3@P^18z2q2*u~q{3t0+Q!spv zpSIO#M%6{mMt+(?X&^VUGO>IocZBA7Wp{O9jt}sD1j1VU62ZLN2)GTmis%nOGgUOP z(C|{`6jYlVa^bhgC!=w>m)tg(Y1%vV*sIAl{Chik9yZB#qT))DsWS zK3~6_RZoz7;KV+ADr3OCVef;2PB6A!u!C3-sxL(GXCQ9vz35$eT|N9jv(6Mt)Fv#X zq+K`6mu(fp-SAQ_PNBxZsg|$Z7m|k;T8F^L^Jz2M4ENn~AUL3ruTnr<`}PZF5@n=% z4em&#?+NkG$zYo-8w4z8wnvA)nR0pyxeL7 zXh()QKSl*HXyq#%1Ip28n+B^=>Bnx)n>Kz6rFG+t zIVig5D!0Blib|so^0KDKT;(7M4~V~2i^ebYeFrEJHtqsiD#SyH{785eXkZBn@*zF> zT{g-!gxlL$*y#!wmTW0fHzH6QeY~*(mw7ixe!g*5V8Y61sK{$64fL$2ZmL+=(?(y2 z$@DlBdiF7O=zUHa_-78%_^Jd8pPVAOl+No$oKJ|5*Eep?VVFpq)hw@RTqKu_BeM+n z0yqyZJ~fQ3FMo@)x<=!IQ}qL7!hj1sUL8?uzPEToYRymbfPWYU#Ddb*(Q*=b4;C1| zXRQ@gNu*UAaL}z+B;0I=M;>0xbf_6MSZKH zY{#FoF0@m@-!vp+OV}f#?|yJLCWHa}10_xu9s4l#<+Ynv1y+MEImqzrnZvnxRlzyeuUd|CGzgOHa_b0S1_m4MgUcoDQaBw zqD@&b(E0)(Um&hUsn%tpr+KfJT#1ZLIG)!32E6LfluC>*K6=^E#7+-M6_c|w_t>EQ z>i2j$K~T7B4?{*Z3R!a?H)NHizE?{8tY|E0u6}xb6*PV*_3ipJ;)HDd%SCt0|8DS_ zQ}nkguyR@F@zdnlvao%9@C(xM{eK4SHBfs*AW$G6%K=ND2oZ@ngbYZlELir7Byt$@3e zWyVBViUDUH%n-PlrhKoczJ@c^eB)-T^yMbLy~?imPH;@Ni~Yj3dKSTD7AI|u(U$PV z8WFihm-M4euN7c!0&n4_j1>5^ibQA2oP8BG%aw#k{c@x(0=nT!>OZKJy+XFMh~{35 z5#@n++s(O;ujI}2&zi4hrJwr0FMM|lkKF=eHxz%;JhK~*w3Z`t=iop*j{Obd4gQ`B zXm8_YKPtvT+k$D+OQ*nS9*N1O1CVFfEG~O4taQ#;>MJ`f^^-KfkeF~z(EW`hMNI`x z#0I_QwOg`VqO=sm0K~Ei=M0KgC37tG_=c=HfIb;xddyL2)cv@TE!>1S$v&P{OUzZM zA7s7)+Nrl$^o$*>!arL%qBRa>z%^Lpz;j!yF^y0x|`Ml74DgRH1=#!+!Hp(HLho^t0Ti&<9c zMu%0)|-CMlce0?KDJuxa?Vp88`|(vjx^o%pj(J^oJ$jAvY0Q_h6OH>sEr7- zUhZdA-Zr8rG-?U98^k&0O2wPbJ(D=TBLKoI^2tLDwxtGj6i6eIRkSk9IufNFnzkZ; zpe~RQOnnp&og!{{PdIGI;t}Lnt7i6O#Yc zo-+JyPkpNz{`2y$J4SQeW={;oTUYPPpBO?S0GwP$R1u4-j@lEciqbGDoA-PWgua2? zQMTd4WFm!PwD;-+)>xz7D_znrJNiQ}(c4hXd9hq+(dTWjqNWOWyfc9fbse{@MKm)D z-MBGrg`Ix>uGi3d59Ef)Z@xk4?_pl~kdoy`8!V zMswK?U`zAB9?Sm zB8YnpV==x>Pi2dpP=$rqEp2&bb$@2Q>xaX)TIfEVvDmF(QbEC~KDqB5OE0gR^f0Sx z)pXlXdR(ZUv$c=ntz1@uToy7y=bhCF_%5i=B&`ciy}3$1hLn1sRVW75myuR$RugJx zrw)pob>t7OjC|()w^SLxW+F?1{bINyb%%$!v9#y#L2kelzX8W4B^ z_-5Z?(fZ9T48wAr=_vJj*A zm>eW|2kDgy_pKbZXf4(Qb|FnMBZ9GHZh!gxr_k^&z^%9oem1+Sd zEyDEJdu1J%AczGvgtdC~HAl(iFcLm-Z63zF2!#V)y;_mp>1Sy>=S9#DgA=8 zHw!D2vmPPCLRsQjf!D*Bc567v-1;9y1ZJa(b+9ii#pvh@ZOMYKEe5-BN(BnOlPOG- zUcVDfBrBBWdI!;F9R;5QV5}331BvqX24HF|W)d-AD{z+)*=nNr5PA7!yJra7>oG%f zaKTLGO8BvY&2gTevqfw&PA}Jccy2bS?7GRqK33p`NazxMlK+xWPLS>Xo zy1SGDM>nrWD?1YDQ)3;&YS}{PK2;$P>K4yCE$$)q%C3*tj1014gQ=YwF`k{MXq|Es zgdfHpdfNKUhS9eXi}v>rrORE33Tflk5#6Jhk$(rkl5h&|bmlP(#5*^0mvEHKm0I&| zG(|JVbM|zDMVH7cE~6&6=lWdHk}KwOPu6y&ePCa1C+BJajer>^o{umFRG>;MArn;R zC?A|ltsFVZL!Mn8-DO!BFs%Ty}O+J#9;&m?(Q>Yn8JzaZT^=d!F|EZ!dp0t9d>2Q zrpE)Uf(hc@o5ax^@FC>(r+O>e?{wuQ3iQ{Y@*+9S z3x8%!w(}Zv+Ex-_RYQXe!9S|%ezvk|cQ=#%N8|1s5t7X`-1nqp8p(XKTgW}w@t63> zX~;Ttt`aMV;jSTiTCN~xn8nPzk5a#TMbdR}q?~uBb1P=_01!4=MLmS=IY%Mp?@0lH zzyNx9;c00jb@`9k9_;RcKtUwYFe!mSAS2Mkr^#bPA}kSouns_QK4EEn?)j#QFF`+0 z8cr~0I~xBb)#}SI>Bu~xv>Gdg$5z2?ZVj1zYDh4p;HRLAAY+|$=w5OemweyT)}FKTkDDJK z?qF&P{o25}(+Y5uirgJkceIj6%|BK6gjIU-yoaBhVPpc(ZIib8#u-<<3A`D3QWrj_ zmAGau^2a6K#Vg)-3jA4F;;ws@%RR_Vu9>yl*BO5CWv1mzgb&!enkB$Q`|(Ys%UJ-# zme4*$+v~mAuEHX;q%sNq!1%QQ*TWNCiVk6p^iOO}JgrpU`nt$SBN2A=B z`AWhnGR2i_Ufb0ys@R&`rT=~?^~^>7yt-R{`=*w;cu|5i-JY@JN=(u04II2fa41_J_GqxjFF{1-CWNPR z;J}G*d0=G83ga}62Ejawkg3Q-{Y17=( z$F;wS7P}s3jD=irEC{pTLYkv0@Hg+F9n!>NB}VrO`pv_3!l!mjx$~2KTA1=M@>wCI z{M>*StBoft{HJ6PXrKCLdkh*lJBZrsJ zrc1bD zarc0n^~7dycFPf&-FP{i8j@|&4|X|{Y%txlITN8KcM=$q?^;}s#IT$agal;wfUe(+ zVNqJ!WION|f;^KZ&BW$wF1P|3>1QX93r{bWZ%^N7TmQ9#lY4kP4S#w{E)sH|GWBes zlbx+z)|xt{D=espIg5kTg9LW_B53usBujld|5_{%_ZkI{XcOi25HFNzdyuE)5n6#< z9s9W2vR2d-A^V!Vc+;oVP%s309GkNnsLe?BB-zvjFHof`tophdO2W>f9^BiYF_~15 zIm`3-q1+*W-Fl~%HLwh;8>rmxBA!YD{0;Py@1xVdM*3-McLG5Iw@D4S0Za>i99l!r zNyr0Tp1kN5SP2-iV(vWn)h!DjJL2no2rU{d+|zOM{Z~Wc*&5QVl*^JtGXkJpC6CT$ zd+fex+K3AkDm4vs>y5t{k1X7qJX>p>E=l?Z*PJ-VJE#0>FT9YxaE;}K?^@q@!l1vT zR6*RId@xvw;==wZyQ=L*5n3VG6>P128fmJneB zAz3$}n#={0Vofh$Em*VTa*?!~fl5edtC^OV%D(CH7E|!!bU9OlUl}1`TGMYs^My-_ zISTgP^9u4&yq45$6=t7dNC|A|Q@m>B0iA%TEy ziT^YF|MO>K`R9VVrk3pDMQYKLxAeWZvSgeYsaUczI(ZIj6Q+OGm3 z#c)2+FHc0qTkAa;mU$4K^?hPw+tB?TF2Y{NG>+|B3xiF=VcNAQYg@n?h7F9S>ZF0y zmzU#CQOgjxg_MX{;K(D6lQk51MJUkc#x`b~q%1Ako>a8Z z78o5M98=TF9SO5F)b{C0OMUj|_qCC;)W~UUL^P$*ek!=$i_>#%(JR)=+;tlm>|B)+ zke8`rp%P?I9+@^g>h&>k+el`71bHg(i0j{WwYjSD;0 zTFn7)5~Gj^t@6z5smz*n7q07H*bYf7q%XuYf_1OzW7}0UDTy3rKMD_CBQ&C5+@UaR zBO@d1?ZeyJgy7Dn8jCT*o~|wBjt5tUgZ$`~_23%_ngmwG*FE&g@YmmKgyGgPEMUqY zqM?^C9e|DHFOj36Fqa+9DrUwr9wWy1$#Z=D7O!Jx*qrqFSeq-PJ}!q{Kx-&AV^mrJ z4)EQox-HJIVnD)u_6r!wPuRO@%5!Ymobo?*lavocMZ;($`2TR}YrYvAl>aQM+@4ij z9*T$Ez4z#R{qU-(4D9iMBJrfQvx7vHXf>y+x4FTy)3f^Ow80~3;*3JTVVZ*n=QpEj zV~NmVw!rxZi$aVi`~)qXdxOOZA4AV#XzAg>2Kl-9DP1F5md^yyBe*lT1q2YL^31bK z1FL@Oiq9;^p;;_po0Yh*rV+qVU~~I965O^gw8pejfkSP4=IGtb0_~uipS)9*;R z+c(7?QZ%iOqZrFnhI%iCQIe+TAI*;)W($p83P%e6WVt4p2pmZr2Shb}u-LAo%9J0i z_RSpclqZ0jZL8U*bn%-WMrONt8 zls6^1oA5waOIC5r=?%LVp=UgXkf$u)$vXMS)pNLEb^id)23AtKD0{pXhYg=3HM4=4 zg%bCV0#dLbfWii6L*%zF*lF;2|Zffin!8rRH)O1ha`)9MIE>%C7CL04t3; zl$Bza+%?n}h~%Fc<5Ja^s^S*w;A{ul6-h1>;I=_#&&!O-uyT&vbgWc;M( zMR@&t?ZfN#0?|3rUyaDXIv~LI%RM32s4%gWGQI0TMII}W6d-Dm1Y=vYC>J$bVY99o zw-JH&+&%MYN>q=I0cfSL89MgaZFkt{F2Jb19qb7$vTh*fUK`}#YbfLcnID9Wae;ng z7!$-)Uve4j$om12+l{i!s8Es$u9$uOJcHVveb*rh@!B!gw)+f;&i{GcKL`~Jjy z%xCk{k&&1pHMe8RF(SzgCRtL(+dU#)_5yxCED!hrrYRK0NKk=ML(tbfzw24tBAeqk z`vg&@#eOvTEID7At`g-m&tW9ct^^U)HFPfx{J`VAR$eGYj_>+11Ee9;Cgof1!~ZIa z@^fK2fe7aI{VDtTd1%(Y4Hav+u%`Ty`#n%!u2+zV#Fy8U8-6N_iT5FEfgd(|hTpNf zobZpk+f8S?wBF>n{HwMEdkwZEbkEdcb9WJ9svEG|4e3w4_Zg7G4nlAN?U+CEW$YXl z)46${IE~_GwM@Tdx|Oc(`Oi#P18OZ?HgyzGkTTCtRL%NQ zc}~y_#W%G)NhFY1WROl0i-C10x7xYinE?Bn(E}^j@&t862_V0!P6L?F)w?t!ts&Xs5hp2iFxx72>Hd9f2>yAIgIqIBgE-X`Mg zC*aZFy|Gz*%-6uuW_3)IW-XI>6m>&?+}LK=_!>j$ew&wC*cocfZTXZxzlEd`*-+-Y zL#)1P`B;n&fHc1%_|P>)?>3(EK9$JDi6O0d=${(ZxbBdh{BYKW+D+WpgtykX-UYB@ zcl6tMO@O?73uVT+2g@A2sdh7YGPl8Y(Fx-&d;6p?7L?=l%Fx6mt$G9(LR^d(aAlw$}CAqp!rVj|T6G zVNiDK`U9n7!axKYm<|J^)f9Kd8(Fb)`r;ZV^398)dT}clUBs2Wx6PVt$2$#ZD{+WPzHPtyMp7g_&5xTyCPsEU=>slI~YoXYGHKYEk5B14&0#=qiWoIT`|${nHF~jfrGtC))Y&p7db#vlfO$f2e|3IYZk{ z(GVI1X`%uhzZqm`;|qSMgoYE1Pw`eR&QbvD@fTu^4DST6km;a%@KmK zY4pi}6Vlq-$(oZxO945x<1jVe$kclYR?cFA9ZZpf82S0ycqNzQF8pC@WeeoGwf~rg zikd^=s>_J2ze|r15#kYPyOv5;SiDx=wF20VG&q1f&%J~huX%DOogzW zh?Wd3!#+92EsWy~&pr)p93j9`r!h2M`V_}0AH@3C2NC!%fBO{Z$i*nSEA8L#Gd)cK z4hfmtns{k5(jiiUB_SQ!CFepFz6*3Ue)4qRpv^FOCboM$e%9_vDc@Q#25==MlaWd- zCa&?Chs3ju0F*uyCcMdjoS%aM3&||9h*PMD;FXmQnv2agR6JzvlhOAFI44{W74Fkg z^O)iUajb9JY~Q2Hd3>i$P@+`@|3Dr$e-_-+QCaCj0HoL@Kkiy(F|qh{KTy9(9ug#I z@Ql(Ogw#Z2U|rJW_j=l6K&Znz0c^et*#iixlD#+Q=4x{Mp>j-i?>2*+hGprO zp)ErfYK-GdIVP_}wKbe_@o*-e7G?_a_(DDwms0bDHRP{KXT=@i9N?ZZUsj`XQiyQUaqvq9FM2)8v2Xab1(p4Ni4WbR%r-b;Nic*PT@&$(H zG{baQlteqh9Z&U-i(m49xWrltz*`N$I%v#lDcbBD=Msq+>xMOaPR}kzk|>!{X!fd< ztu>!MOsiY+QEiK}sJ-$N`aTKIqX+=nTw0))Tzx$gd&fd-x4OsBhG$vzWn+L1PgS^8 zlr?!;q$*4K9zhON594T8<4o`kXz{PNAiyvO-p8 zrl8K@(D1TRT$B<5sq3o6Lu7@e;Rtw$ZFERvl1ikquJ1x&enh?@F@T_XDkKc$hu**N zF#?LNz%>$z?IQ}9Vg?Px8_?aNUVShq1v89)jtBhZZ!z!$5@;bT{40B^r$P zgJr4i?lTj!KcE^Ly>L9YYBBWtbDFcAewS?w0^(7uw2$+;jSy3ffIoM2_lbJ_k$)|J zWI?_<(E0v}jxNRb2>7%d$UW~RK}zE;+)DTD$(Xco=mr`6}_!dB}_>tF8HG9=XyctNP);!q0+nq4l6>@ ztAj(Bl`nger(6v8ThEC1lLSFTIvwB7)N$R~HaM%lNuaKkI+S}XWnMyTnpvw!18#j& z)2o68o6!|i@0oU$ZyuXm@rXe)Q{l;grfSr6?mvY&H#hXXy{1*Ve1#p%?(FWK4^f@T zmr9oO^5{yse0!~qgxAhFH^{gaPfy=h%LxjVQW#3*4cjRnZuVZlY+SW>I~ZG4hPZ1gGyF zKrWdi!kF<>El`^nqE6NZ1t{anq^)~i&D;&xY0a;%ubI)!E&*wV1wO%(JGjN&cN!1V4Wu#%gScdPCm#S@E=?weRjF+2y1;8 zCwmE)CRAwc@}+9Z(uPwox~vv6q*nq{U1{>Z9$7va|99y0-{r}F>GZ#J`d>QzFP;7$ zPpAKkXaA+s|3#rUVcaPyz@7L3$C9-ism#BE1uO4+tn==v5-U z29P4syNHC|yYwOfrAY61ckuT=dN`ive!0*6a&LIpnLXv5wcc5KXJ@iz&CZ25<0F3? z@(&wGD3sIBZ^p*#&53FD7jdN81ncHZQh@r^8?7KH-iSpdZ_ChC92TdmGV8KUio{1A zRXN?fhV3d7mwlzO1%`W(lrHkc%N7sf#3DN047U(y#1(5?=%Nx<|DHaYv)}gOFql>O zv82ct`9nzH%5lo-xC@ulk43&n1@SvEq5G{}Jmf|)a{e*v*Bb)W7h6-m$-^Gy>;Lt` z&$szmT{}>65Bp!*|H~==m+pVM=AUU_8`%SBPaFtnuj)`Sc{?a*l9SPm3ihJc#K+D` zK|^YK$`79~onPf9!GSk}v7TOwgf7@_JwHI#^hPU<)?WFLortxW!WFu{VF3XJ8r#pR zu>)-$Di={spY_(Ync*fRdLiCflnG(d#>*mOr53u>+}V7k?HPgw3VE#`UJ(`%gQw#S zwXE=KJV@v4wpb7N$L}dY&F4GanQ6rzf(HzO2!hhGawOVYUNV?)M&HTlp>O^v0*BHc z{1n+l26}k9xC6gk|EH(*3)%_aet?Q_zz`UI8Nxqa0KbShJ2`U&IHMsyqEY@c*OdT_ z5iHsctVlfMoAkf2@@NDPf4P(-!T6Knm80G4YsJAb;gF`EFmXo_SXPc$r|bq zJY+0d=gm{CbW|xh!a2Kf>$}%g?xtowr|WZMzQ|5M7uXWmgy(+e9&@llI@>L{ zZ&u89UfJj?Z26|whINXG7vqE$wOLB9CCcsD9OZ98afyYqg+g&REmkCwMl`!zS7xkD zXLEVu{1+`8TrylHlk-;ns%neT$J&ooVguZ>4L{lnFDK|+*`8io6Q6L^8Php_va=T2 z#1ClwpM0dbweJ0I`8d0|{*QTBHUWIB``7vR)v5J=qRvph>@QKIw}*vNBZmNdfV#$e zszS0>Du3~@;Y0-NZh5suO>(3(6|6(Ao5<^>JMGewni(%Z-4n@shuQ8M14G!g&FsO5 zPR`ePF<_cS^?suCQG{P)07bJ0NDxosTRe**%KPnWyXkV3cppgWG}n-OZ$wWM{h+hl zkXH+7x9L@S1tY;5;Ta|DW#7v+OH10m#)_i%KDg!aMzgTdtW-x!Y7k+cuCARn!H}_K z&EZu1(3OV2I)TI?#;({hV_`ARVqsnR=W;QyHj*?qu&~9<=s6`#7GCFfc(s0U;X2Nw z8FSQAAKz8qA*0I?nM1ac?pTc(Ata-lA9?&1R-4?kc5<7cNwgQ{v{&?w^&T}FZUl?} z?71s0ey|?i06SeCQPCH(@$op_Zfj8yKR&ET5j#2QK>j>99rtlR*=|Emi+df82d4O( zY;OSBM;luM;yyb)KewANGkBjG9BnkIq$GFV^*TKMI>6xb^Mv8&;mR1A!TWf>Be2Kk zaEF0GysP1Oq^RL!b9V1wdiwNqWlP-qXnz)(;&Z&ev8V6tJ)9!$bFlK}z!#|x+h~fO zuJ@`g8y{d1haEVb9&J&6T`mFttVnL&(xQh~oNk71dS9s6T|9ktO{-7;$u>!Fy-AsDjsQYV}AwTx;rXun89)&)tCcPlHcF z`!CCjgHKYo{r^1yLvAPayUH_cz1#gKIn8>O;Fq5U!!ou*VL;=u1$t9uAl;A2JaLr& znbqW-;n;F$*BH@%;*WZx3efOVav^UL4_0_p zE)oB8D37)huKIuQfSkA4A-U&Z!!*M8&*88it~cIV7OMMy=|G}eQ?jJTbi&uW-kq*Z zHVkEA;^*2tzS?;p9c9bB{6B{q%Slq}H10LN6=qU=37S*)zm_m2D7iq5_oQ8*&-V`8 zD@|w!8hn4aUahklyg=jhLOW7aqAXR7!(5YyX3+1z-R&XGy;rzO29J$ZRNc*0>0K}t zS!i}%OT*G7QsPt4IH~ZyRKrgA3W4Qy5}lU(Rv;Q!e@+lD8zTw4wL9H4v|28MHd(5K zQP+^=F z8Oyz*#^5JZsv(i?{ctDf3t3D?(l_$5TVMs@Ar?y&)nu1Ejlt|3MYT76Y-Ji%>9&`K zERi3i^oa6?mA?j8Uwd@d@|k9Bj;q?L-*B16Z1N%DkB>3vED_FoYS=;eT*1XHou$R~T56Qj&9 zUX3wJtsK3N#A&X->@TYdB)u`o@5odhPC0n*9_S4-cpHYgML-Bkv6u6E0O$~v+PlZp z84D-$lmaR+tx!m$t;;+C17+dwWpT=OPXs^RCZnXK!A*pg~hW{!cr#wmyNxYy`X1IST3qLXLf)YldJqkb} z@f1KI>Vr;dqz-qjkNW3X{GTZpiKbZqiGJ)8z@u43yr`t2x~W+t)I6e`Py%vNq%r~< zfb6MbiQLL%jB-Loi8xZra{ZurW-3+~T?!#!F#h*d6BSD%A*kHPFGIadN260Kh0OWP zMx!+sjN$%j62O3H6sF7egLaw0qtkfSa&&R8) z>b5d36MII%6BT(AAS=0#ndJZ=Kx|AidbZ>{hhj`=3tK>cnGkY$HbZA)W=#nb<`~K} z2@t_8FtLpE0|LT+Gv*k;Ab800FuelV@+wi?vf$jHtcXZezfZ>PvS7fB0VN0?u}5KW zR98ITb^#TsSb=_+(k!LU&cM5(AVH?IOva;RQ%C6sa#G!NJPy(ihTwo?K%3MTAuq`( zvw-1aj?v8A{v~e6dlpv1>F7wzn5cX3INvBzeqg1u1f0;B3+B-T*q%^ZBTw2hN-8(bewI-CFW!;^Ij?UlDAmf z=(b~Y(d<{T<-M@y35VaUYLv-^LT%j|RSuim*0DqJ- zNv}vC(MhI8Qu~Dh=R908Z;i(n7ttIHxB)c^^MQ&6eD4WSHLa#?R<_ z*4A$81GfsshEvXYXL_D%Cq84aMXRwo@yt8BcQ|TX{o*E%Bs$jg(oFWIdOsZDTaCd& z%2uZMI3TM**X8YIUk&mMge^U8M!0Nw2&DUgG1)Yj^Hzfczrw&`qt<7 z&=M;&IwPe_);BO!<Gsk&LjXc=&~ui_ zg^~Gj$jpQ97?};KFqxxln9SkVb3k3ubWGi7e9nAw4j|Jd2$RWimKlBqaKjJcl}siM zhpgh)NZMy#H?RPAmonv(02)(^_4G32(moE1L%2NL4hOXVl&uO7mB`EnRJlXY2omdw zVE9!rhoQh~IB<4L@oA>BlJF<`D~YpP#HRqQKwjrFOx}Yntwe2f+6jAizGD*_gv;zq zl43@~grTpo3PU9+6_pu^3EPRC)8D5wBuL0#vqi7J#nXq;d00jVqSH$qW zRs3m;IehZT5r7nhz>*CfsE>@I5yW!#rq2Lcykr5p0a_x+<-XB~^(_4Zd*J~93osHw z)?aN31Nh~-nQOJO)ft{C(8Mr1qH#u-Viblh0Mk7x)0R%#5&;Si0;wk=v;d8sMh)NF zY6oz+a)-MFZgMcCm~}H_)VGSlsLwBFZ!Kf0tWG!LzNkzN3_)iyVBe%hDQ4KW3KULT zDdph+ZOrnRF>eG+u(tgNV1my~*luA)@kpeE)j|(K5A+kVl(vRSFKXyuR@kJlugo#Y zwg{Mm^Z~tVbj7bAtN^XxJ=O|vh@>%CtSO|lP@4xR?+5tKHC5at=8LK(v&l5czMi^& z@Xc3S%3dcY1)>DWPcZ;^;q7{|0ea2s97>f^EDP8j*Rum+8GsKe5WCm_qlI1xocOz$ zYSdt8v?y@F0;Qdv+p4ZceY&yIWUc16PP8Epfy9ejxmJ|E#MD+Y%)FehhC8uXJYW9q=8KKt&#s(E+I*;htSfPe{6d&ruDh1!jCJY{wRR27A zQ=NnWUH~6_U^11q@O_;zMoz4`K==a@0eqF4(<|d9HJUvob&8caSIQGlD%z$}`jf9&pw>AFx zjzIGFpfarblh9jQDi#krU6jl@QjkNszH8Pq^rdQicjk3p#1&T!_&fJ>{>b<;BA_(- z#6jsrS=Lx;S(bEUF_O&Z^Xnkq?meZLjgR?tyF0G83qOLnx~&XCjE%n2zDX{Q2u*`7 zCG|_njU|3DbXs&~@P>A?q&C;OdUSnR+`G+qfi!#%bqTu}UH9l!oV_=cRCI>P9a?+a z%BVmhkO)`0cqgF^6h20+n;hk9lCw<6Bvr$ zI}w>>Yvy8bn@!qd@wzsvtMT|mq?D74%OK+Vt}^dsBcb4k`p^SUGt|t{=m=bvKmgf! zctG(+dU5EgGE=_4`?a5^xk8U?bw3?5pzo*tbZ^1y5t?@q{UM>m&B%+w$x3solc>y9wv$1 zhZ|e1{i0g8v&`l?P)R|oon`?}E~M)3R4B7#y!T$GZ%>TIzxTFfJQn$|*duase}lCo zDdFm_xT%bpv}bf0!}p!<{$yHs{tcvG%JD*%{nZ@sI1c?u{r!^z{7-}Y!$SN?6vM@7XkF4f^(_X)J;@8$td1==Tce|Q9);^Bu;eRlH*?|ge# zK&Y67H12cc8~?0A1lQvG8CfaCZ~Y7o3m32XWdxedJx9?Ulm-rFL9ON#$Cqx1Y#zKj ztWzvvGTGLnM;zqNZCXgMX6S$8O6zRlC|nq<=08j$oiY?yN)uQzMTo!Gd4xBq90=mB z?j#jDCWR0?Y0*2u=$#_yoyzG=x0j5>mPo~Cd{RigcVF5c_B0bxxN#~9h?pW8H;zpU z1*n@!Iy)WceY#>T>`bTmWZ;gsK!~nk8)aLxJP%KTeV5F#@lbr%7aX$g*v}`t43}eL zjf0q@Bir-1Yp#0{muS7GTZ$3tj6lE!Rx|gj5oFsV*G*TtdIzYy;wAWmFV}s?6Wzh9 zJH@*UCZ$iL6R{VZ!}Yj+qa`XXAORiW$dQ1U%O>>CN9*u8 zFJ~oLjjf2AUgnosjW$uzD+x`IeI+Qb1$zihTWBOHg_*a%7DaYk>jsw=K1-O+iz*rc;K`=( zg>UXpb)$CO$qzJcz+#QJ(_DNr&vQ<>-MVb!ii>#el@}@wXrUflmo}maPz~%$3oLdI zNLw)|tuPoq;QBtH%PkzBjXo%^+x7+CZ0lw^g?jjxsmvB*2VS`8S+U8RisU~q@n))3 zV+__tFMb(}1Vv>P0##jV<~k?t0RZ}Mi4DIP47=AOIq#SZyJug0Oy|QifXg1X+8XoG z4+7NK5bShL);9HS%HQ&G)zuy=#UvzjzX^Ru0SO}A?+$m{Thh@$I_*FhrMl*?#Cviq7>AWW$ z>L+gq%V%BZq*H3kjHV~pi!@(#2b4WCam@>tx^^1td9?b%yjGr}V-H9miw7U8yRVh= zGpJmnE5f^ez*P-AhA5^iQlQmGI`26up<7$p%L*+55y(ZIuE_9^j=hkt@t1>$x}RVl z2vp96TrwP%xm{7<+(i}Jq$`6kL9y{kyDTQePIGzIRH5wS*{_y#E+M-?7K^I%(T}xl z6`gr@th?VOZ1I9FKS-|mmTWX!wPE+Qt#I%jlCkN)CDb`3T&Hy}F|gw>ysBX$(P}im zB4Mn_7DeFz@r;)<;IX+l;A48376su7K^josZRYYE<*L1x*fOzlt7!$V>Bq3$_x}6> zTeo+#Q{MtAs%JSIhnzR-XDKr(T#Zr^tdbpjvJ2uYCY>4htHb-oyQn&=#1p3N3blZ8 zw3c(Su2G6>MnwX9m}3Kfbxz-SO>qyzs%mXD8}n3l(Bcf`N0Ok#_(!n9JMjyTDmQ-6 zijM303Qri^KAy5A#WMb4Ov;g%xm_ZB@)F!`>!hs-L2}W_yV4s|azgNkztXagSZAX6 zc%L?G#DSs~o>1rU(3EgncGla3nTBei1fU^zTPx$-B2AO$5xK_s7LIrp$$0Uz_iBQx zM(*`o?9AtT*Qgtu;O)(S(sj)LIJs(80QOV*>U^vvs=q5_ubK!kW|b|+-}33eHhd*W znFvBN!KE|Dg{Q`!VKSYnm$WygpS~A?*!--Z16hK~5eWKotNB$b06Wujzp&z1uoR7) zbq*jXEQ?Uuedsby;qItnJT4lUvG?%VEQNcRiZM(qQt;^E)EdQDz1hcGG^mxY6tBX% z_CX*i$on9)vE^R0;A~F_GB-u$>f!4-bfmCLI#`rvHAS&cJb2$-Y@lfbr(5K1em~R5 z56nl3vxr&@{n(ox5tICeAl)7cXC#Zn#ujl=mw&5HWO1oGFDuxaeyl-7jEELs6};O1(=0oG;7gahpR9sU+3Y?h?ZmH9;U6M*IpYeZx~ww-jP-vsc>@D%Go)%&)%GlHVSj4RCY0n z*KjtmzsD=GA~N#W`Pn#wvS{h`*~ zHQ*=KAUam7fZ)*5IH43wO}?Na1r-=!jg8Rd@7QV8PEEAfTalhQFc6nogUKKS*)+KW z)6O~;d4!_3S|JF5hEM?h+O|}N_a$uBM*JLcd(GV zv?MTPxYb5kPcF84)rEALuT3E6FxV~D*gH5$GP#W!f9wKSRLchUeyhjlMy5tDX<@$UDJ5Lly#{`aw*3t@7%+<(;Hm?lqwN@L_SY)#^VLk*fy0* z%@{bQ^IbYzWwHq zt&n$dD&M-F_9e!CF{j&cWx7-iI7BQ zM9FvGnob=)eUhb_d2>qVIh|pSbAKYWT~HyFvHu#jKIFRqqhSTims&yT2pL_W zMEdbqz}{jp$#6o(SjJsge3{=I8u5b}W|w7nIFpGFOA!;0Ffbp$(^6ABi~`aUhue*h zC@K0fFDnD&xI_E#wAgw4yYU$kG5yTTG3XYwmWnO=Q&5Wc5KAokzoV+M901({`smb= zus6q?JYs*FDXUwy9Fj-Xlpo93dDOVgcaRqi%rYwGM0e-tM7Fv2V_GD?<4aO2W7M({ z%D{OA+^6zVfov)2FHX_~@D#JF*-p|!@J@8hil!=vfJ4fa7J2p6oLVp=arIRxN~hJt zAp1y0FEM@g{2Y9N94ULaPVlGdI7V;!<&9lp??Ngi)cam3Ha5D;W#DZZP-zV-Ym3s-eqh8ppvbDlpXn z&_0w+QwO>8wDaSeI9nXR3^2C3C!iA@c9gR%>!+#MX94iJZ#_3A{Mw0C z)E|->l6Q!N=2Ok%s&W{9>Fm6%rs__k9UPB@s4%g^LE1(hfMfF;5-(x zN{qGm_j0M2+A}D>eutNV{hnI-yc)XGWbX>hIKKaAMF!&4+v9mar^91D>^jfiuS|sQ#+`kg3bM5JI-!n(--h+TK^m3EfI5>K-B(ed$Qo zlN0+qR?#r>JSWYnA5Zs;>NX7y8Alj+o@xG2znxUn)TG>H^@XbWmcq5`f{cZ;gR^P4 ze&sa64Ae%d7n+E_sgm6P;lu5D+stpHqNu46ryZeC;KGiE2K*S7YX&9mX|cgyBKEX! zUWsyURXwU=#HuRvQJr;}Y zu}PhW1RZU@J=N&)&|P-vh|U&7^q}puoL202iRVk%kwKLvt)dy zvXKWC*=itpm`!qRr-I$4rC)4{dIMyF8cfE%++9 z8+=?@SFT59%f1*y}Q#@QJe*$Rm#m!ZbF|r`M7Ggz32U_u;)4DH%OXx z1})VjH-~V#3-85&%}{W!;48ZoTBYRKo7Iq>GLMn8{YTbwT3>w2ewJK}Qm&V(emAzM zIYdwD6_IF}zDD72y4~X;;B-q*hhU*yzT|XP-oT&c&D*MD-2S_rCY~v9x^WqLqXf3k zMkTZIUrYE_XYI?SR;8kf4!&&;iL>w4(~Q|`4fmGO7M897vq%$9_M2eRoBV~u**P2W znp)-IWvJL%LLWD4=0c}1tA=OpX~QZvV>@;uIB>*|MvdK9(rN?IVn0g4RqqFQI7I0k zbc|%*toyPs(o%o=-ilLW(IEKgaHG)?>sBmuRX(w_{OXw1V&l4z!o{(M+q=aGM+@ft z#+Jc(g?HLky03r!U|oCEItNKOeG)Fd8L+~OT|}c0t|6!({=BaN5nW7OO3miAL* zcWm*Y<#q{!*zs}G?tEa17;NY73(ogKt9|4Fucc>zS0fn~{sm*Gk*WjK4v3iwbuhs= zC*4TLxd2YZ0;>GK{ql;EP-xQ(T@*n49vZmR4Ttk*J5=j$u*iHxf=qEC) zWRp1a?!S?>Q0$M7Vw+ha>G%MdBTx;SdUH4Z`0vh>HPN1#fOYu+5v8vDX@CZHcK_f0 zeqVEm(Mr&9jF;raT?XPwT0y0!#J=f<=KM|{#ju%I!(Oos6sv0UJRFwY{Vp?ZZdox- zTBGLm`r2jjOwPTs9v#^w!zZr~?py=m&=Os9VYjaV;>JiA%ig9$wP3N^V^O|2JP|Ha zF7|y$%4HP%f?bX5o&sy%V^!M3V!9`+MtLL~kX7S53TCrHUywA|Z37|=5${>>FHy2| z^{Envb;O;Hlm?a0H`T1B89Xl#;|p~izT%qOAeg|2iu$19N%X9(I49or;x4P8(2{Q3 zhK5c4hFvqNnwMUp?aj;T3j-uJHo6ZAbacv}vt|=d-lZSUZKWrE5LiN9AlHp!m|tk^ zwp|R3h&lxgFg?b4Deur2vC?F}D&S&vSbKNoxy~qv_{JSYvWhT~nQ#Xi@)O^EFU1K6 zaqY$KJz1_sVL$Q;fd-XcPSiGq`v&x2WqtF_TWHwcQVCA|^x`;Z#|Uk!zq2>=N~YGP zeB;X%k#*=>&4hMlu-n&`6MBko0Y~!nkg7bzQHc%Rt;b7+tG4^<9^Tv?*8~~*!N`RU zbl-2c&kNWbz}9I0vz&X;x36RZu2ujy`Q;;4r)c2$Lc z2Pk{Q#k38yQUvbK0LC9LDj=rhFK6pBAKLQ`=@gd2ih(O?6Ie_R?AZ3lO9=4jcC)_g z3U#nDghH+U)~i&9NX-pEY{yGjSTuh$1%lB7LI90_b^Is9Uxm<;>IiJW4Zv;PP4CVYr=;xI=zx(WOfGgT(0KfO5J>T^FPJq9gHt7FqdVXKP z^9bj+IQWeKhMpn(Yi-4!t18Z;oDcc_8|9h98OlG)5`Hg8IFE2XKI?CUEssADen)FP zk8nOD;%|gcK7S$@{SJ_L9^!nIz~2y?Fa8Yz6VCpx=KbH*V0`^2!kHR>MfmS(Y=r)a z@Jo%qLY$9Y@mr0Xz)BI|>iBas{(61=cQrn~`4izxjlUxNcQwKj|3vtu#$O@MFLU~> zMnlpW1m?!~&u#11o$&1B>>~Z^eenFsq2GXY$!CE7vh`nZe_H%s0ne|$`3=~b@~4u& z;C>tbU%}3=Uil3+lKNl3&PM;QVCR>9{02j({THyaG59Ok`E?V&!S>RBf&ICP;`~MR z@84{Gx5dJWZn=Q(RfS8y(=8SjJ@9u3e8R4EV!kl_ EFZ0Yl!T float: - assert L >= 2 * R # cylindrical tank with hemispherical ends - return np.pi * R**2 * (L - 2.0 * R / 3.0) - - def compute_hemicylinder_outer_length(L: float, t: float) -> float: - return L + 2 * t - - def compute_hemicylinder_outer_radius(R: float, t: float) -> float: - return R + t - - def check_thinwall(Rinner: float, t: float, thinwallratio_crit=10) -> bool: - return Rinner / t >= thinwallratio_crit - - -class TypeITank(Tank): - """ - a class I tank: metal shell tank - """ - - def __init__( - self, - material: str, - yield_factor: float = 3.0 / 2.0, - ultimate_factor: float = 2.25, - shear_approx="interp", - ): - super().__init__(1, yield_factor, ultimate_factor) - - self.material = MetalMaterial(material, approx_method=shear_approx) - - # initial geometry values undefined - self.thickness = None # thickness of tank - - # return functions for symmetry - def get_thickness(self): - return self.thickness - - # get the outer dimensions - def get_length_outer(self): - """returns the outer length of the pressure vessel in cm""" - if None in [self.length_inner, self.thickness]: - return None - return Tank.compute_hemicylinder_outer_length(self.length_inner, self.thickness) - - def get_radius_outer(self): - """returns the outer radius of the pressure vessel in cm""" - if None in [self.radius_inner, self.thickness]: - return None - return Tank.compute_hemicylinder_outer_radius(self.radius_inner, self.thickness) - - def get_volume_outer(self): - """ - returns the outer volume of the pressure vessel in ccm - """ - if None in [self.length_inner, self.radius_inner, self.thickness]: - return None - return Tank.compute_hemicylinder_volume(self.get_radius_outer(), self.get_length_outer()) - - def get_volume_metal(self): - """ - returns the (unsealed) displacement volume of the pressure vessel in ccm - """ - volume_inner = self.get_volume_inner() - volume_outer = self.get_volume_outer() - if None in [volume_inner, volume_outer]: - return None - assert volume_outer >= volume_inner - return volume_outer - volume_inner - - def get_mass_metal(self): - """returns the mass of the pressure vessel in kg""" - volume_metal = self.get_volume_metal() - if volume_metal is None: - return None - return self.material.density * volume_metal - - def get_cost_metal(self): - """ - returns the cost of the metal in the pressure vessel in dollars - """ - mass_metal = self.get_mass_metal() - if mass_metal is None: - return None - return self.material.cost_rate * mass_metal - - def get_gravimetric_tank_efficiency(self): - """ - returns the gravimetric tank efficiency: - $$ \frac{m_{metal}}{V_{inner}} $$ - in L/kg - """ - mass_metal = self.get_mass_metal() - volume_inner = self.get_volume_inner() - return (volume_inner / 1e3) / mass_metal - - def get_yield_thickness(self, pressure: float | None = None, temperature: float | None = None): - """ - gets the yield thickness - - returns the yield thickness given by: - $$ - t_y= \frac{p R_0}{S_y} \times SF_{yield} - $$ - with yield safety factor $SF_{yield}= 3/2$ by default - - temperature and pressure must be set in the class, or specified in this - function - - :param pressure: operating pressure, in bar - :type pressure: float - :param temperature: operating temperature, in degrees C - :type temperature: float - """ - - if (temperature is None) and (self.operating_temperature is None): - raise LookupError("you must specify an operating temperature.") - elif temperature is None: - temperature = self.operating_temperature - - if (pressure is None) and (self.operating_pressure is None): - raise LookupError("you must specify an operating pressure.") - elif pressure is None: - pressure = self.operating_pressure - - Sy = self.material.yield_shear_fun(temperature) - - thickness_yield = pressure * self.radius_inner / Sy * self.yield_factor - - return thickness_yield - - def get_ultimate_thickness( - self, pressure: float | None = None, temperature: float | None = None - ): - """ - get the ultimate thickness - - returns the ultimate thicnkess given by: - $$ - t_u= \frac{p R_0}{S_u} \times SF_{ultimate} - $$ - with ultimate safety factor $SF_{yield}= 2.25$ by default - - temperature and pressure must be set in the class, or specified in this - function - - :param pressure: operating pressure, in bar - :type pressure: float - :param temperature: operating temperature, in degrees C - :type temperature: float - """ - - if (temperature is None) and (self.operating_temperature is None): - raise LookupError("you must specify an operating temperature.") - elif temperature is None: - temperature = self.operating_temperature - - if (pressure is None) and (self.operating_pressure is None): - raise LookupError("you must specify an operating pressure.") - elif pressure is None: - pressure = self.operating_pressure - - Su = self.material.ultimate_shear_fun(temperature) - - thickness_ultimate = pressure * self.radius_inner / Su * self.ultimate_factor - - return thickness_ultimate - - def get_thickness_thinwall( - self, pressure: float | None = None, temperature: float | None = None - ): - """ - get the thickness based on thinwall assumptions - - maximum between yield and ultimate thickness - - temperature and pressure must be set in the class, or specified in this - function - - :param pressure: operating pressure, in bar - :type pressure: float - :param temperature: operating temperature, in degrees C - :type temperature: float - """ - - t_y = self.get_yield_thickness(pressure, temperature) - t_u = self.get_ultimate_thickness(pressure, temperature) - - thickness = max(t_y, t_u) - - return thickness - - def set_thickness_thinwall( - self, pressure: float | None = None, temperature: float | None = None - ): - """ - set the thickness based on thinwall assumptions - - maximum between yield and ultimate thickness - - temperature and pressure must be set in the class, or specified in this - function - - :param pressure: operating pressure, in bar - :type pressure: float - :param temperature: operating temperature, in degrees C - :type temperature: float - """ - - self.thickness = self.get_thickness_thinwall(pressure, temperature) - - def get_thickness_vonmises( - self, - pressure: float | None = None, - temperature: float | None = None, - max_cycle_iter: int = 10, - adj_fac_tol: float = 1e-6, - ): - """ - get the thickness based on a von Mises cycle - - temperature and pressure must be set in the class, or specified here - - :param pressure: operating pressure, in bar - :type pressure: float - :param temperature: operating temperature, in degrees C - :type temperature: float - :param max_cycle_iter: maximum iterations for von Mises cycle - :type max_cycle_iter: int - :param adj_fac_tol: tolerance for close enough wall thickness adjustment - factor - """ - - if (temperature is None) and (self.operating_temperature is None): - raise LookupError("you must specify an operating temperature.") - elif temperature is None: - temperature = self.operating_temperature - - if (pressure is None) and (self.operating_pressure is None): - raise LookupError("you must specify an operating pressure.") - elif pressure is None: - pressure = self.operating_pressure - - # get the limit shears - Sy = self.material.yield_shear_fun(temperature) - Su = self.material.ultimate_shear_fun(temperature) - - # start from the thinwall analysis - thickness_init = self.get_thickness_thinwall(pressure, temperature) - - # check to see if von Mises analysis is even needed - if (Tank.check_thinwall(self.radius_inner, thickness_init)) and ( - von_mises.wallThicknessAdjustmentFactor( - pressure, self.radius_inner + thickness_init, self.radius_inner, Sy, Su - ) - == 1.0 - ): - thickness_cycle = thickness_init # trivially satisfied - iter_cycle = -1 - print("trivially satisfied") - else: - print("running von mises cycle") - print(pressure, self.radius_inner, thickness_init, Sy, Su) - (thickness_cycle, WTAF_cycle, iter_cycle) = von_mises.cycle( - pressure, - self.radius_inner, - thickness_init, - Sy, - Su, - max_iter=max_cycle_iter, - WTAF_tol=adj_fac_tol, - ) - return thickness_cycle, iter_cycle - - def set_thickness_vonmises( - self, - pressure: float | None = None, - temperature: float | None = None, - max_cycle_iter: int = 10, - adj_fac_tol: float | None = 1e-6, - ): - """ - set the thickness based on a von Mises cycle - - temperature and pressure must be set in the class, or specified here - - :param pressure: operating pressure, in bar - :type pressure: float - :param temperature: operating temperature, in degrees C - :type temperature: float - :param max_cycle_iter: maximum iterations for von Mises cycle - :type max_cycle_iter: int - :param adj_fac_tol: tolerance for close enough wall thickness adjustment - factor - """ - - thickness, _ = self.get_thickness_vonmises( - pressure, temperature, max_cycle_iter, adj_fac_tol - ) - self.thickness = thickness - - -class LinedTank(Tank): - """ - a lined tank for Type III or Type III: aluminum-lined carbon fiber-jacketed tank - """ - - def __init__( - self, - tanktype: int, - load_bearing_liner, - liner_design_load_factor=0.21, - liner_thickness_min=0.3, - yield_factor: float = 3.0 / 2.0, - ultimate_factor: float = 2.25, - ): - super().__init__(tanktype, yield_factor, ultimate_factor) - - if tanktype not in [3, 4]: - raise NotImplementedError("unknown tank type.") - - self.load_bearing_liner = load_bearing_liner - self.liner_design_load_factor = liner_design_load_factor - - with (Path(__file__).parent / "material_properties.json").open() as mmprop_file: - mmprop = json.load(mmprop_file) - - # liner characteristics - if tanktype == 3: - self.shear_ultimate_liner = mmprop["liner_aluminum"]["shear_ultimate_bar"] - self.density_liner = mmprop["liner_aluminum"]["density_kgccm"] - self.costrate_liner = mmprop["liner_aluminum"]["costrate_$kg"] - else: - self.shear_ultimate_liner = None - self.density_liner = mmprop["HDPE"]["density_kgccm"] - self.costrate_liner = mmprop["HDPE"]["costrate_$kg"] - self.thickness_liner_min = liner_thickness_min - - # jacket characteristics - self.shear_ultimate_jacket = mmprop["carbon_fiber"]["shear_ultimate_bar"] - self.density_jacket = mmprop["carbon_fiber"]["density_kgccm"] - self.costrate_jacket = mmprop["carbon_fiber"]["costrate_$kg"] - self.fiber_translation_efficiency_jacket = mmprop["carbon_fiber"][ - "fiber_translation_efficiency" - ] - self.fiber_layer_thickness = mmprop["carbon_fiber"]["layer_thickness_cm"] - self.fiber_layer_min = mmprop["carbon_fiber"]["min_layer"] - - # thicknesses (to be computed) - self.thickness_liner = None - self.thickness_jacket = None - self.thickness_ideal_jacket = None - self.Nlayer_jacket = None - - def get_thicknesses_thinwall(self, pressure: float | None = None): - """???""" - - if (pressure is None) and (self.operating_pressure is None): - raise LookupError("you must specify an operating pressure.") - elif pressure is None: - pressure = self.operating_pressure - - # compute the liner thickness - pressure_burst_target = self.ultimate_factor * pressure - if self.tank_type != 4: - pressure_liner_target = pressure_burst_target * self.liner_design_load_factor - thickness_burst = pressure_liner_target * self.radius_inner / self.shear_ultimate_liner - thickness_liner = max(thickness_burst, self.thickness_liner_min) - else: - thickness_liner = self.thickness_liner_min - - # compute ideal jacket thickness - radius_liner = Tank.compute_hemicylinder_outer_radius(self.radius_inner, thickness_liner) - thickness_jacket_ideal = ( - pressure_burst_target - * radius_liner - / self.shear_ultimate_jacket - / self.fiber_translation_efficiency_jacket - ) - if self.load_bearing_liner: - # subdivide pressure if liner is load-bearing - pressure_liner = thickness_liner * self.shear_ultimate_liner / self.radius_inner - pressure_jacket = pressure_burst_target - pressure_liner - assert pressure_jacket >= 0 - thickness_jacket_ideal = ( - pressure_jacket - * radius_liner - / self.shear_ultimate_jacket - / self.fiber_translation_efficiency_jacket - ) - - # compute number of layers, real thickness - Nlayer_jacket = max( - self.fiber_layer_min, - int(np.ceil(thickness_jacket_ideal / self.fiber_layer_thickness)), - ) - thickness_jacket_real = Nlayer_jacket * self.fiber_layer_thickness - - return ( - thickness_liner, - thickness_jacket_ideal, - Nlayer_jacket, - thickness_jacket_real, - ) - - def set_thicknesses_thinwall(self, pressure: float | None = None): - """???""" - - if (pressure is None) and (self.operating_pressure is None): - raise LookupError("you must specify an operating pressure.") - elif pressure is None: - pressure = self.operating_pressure - - # pass the returns of the previous function - ( - self.thickness_liner, - self.thickness_ideal_jacket, - self.Nlayer_jacket, - self.thickness_jacket, - ) = self.get_thicknesses_thinwall(pressure) - - def get_safetyfactor_real_jacket(self): - """ - figure out the integer layer safety factor - """ - - if None in [self.thickness_jacket, self.thickness_ideal_jacket]: - return None - - sf_real = self.ultimate_factor * self.thickness_jacket / self.thickness_jacket_ideal - - return sf_real - - # get the liner dimensions - def get_length_liner(self): - """returns the outer length of the pressure vessel in cm""" - if None in [self.length_inner, self.thickness_liner]: - return None - return Tank.compute_hemicylinder_outer_length(self.length_inner, self.thickness_liner) - - def get_radius_liner(self): - """returns the outer radius of the pressure vessel in cm""" - if None in [self.radius_inner, self.thickness_liner]: - return None - return Tank.compute_hemicylinder_outer_radius(self.radius_inner, self.thickness_liner) - - def get_volume_outer_liner(self): - """ - returns the outer volume of the pressure vessel in ccm - """ - if None in [self.length_inner, self.radius_inner, self.thickness_liner]: - return None - return Tank.compute_hemicylinder_volume(self.get_radius_liner(), self.get_length_liner()) - - def get_volume_liner(self): - """ - returns the (unsealed) displacement volume of the liner in ccm - """ - volume_inner = self.get_volume_inner() - volume_outer_liner = self.get_volume_outer_liner() - if None in [volume_inner, volume_outer_liner]: - return None - assert volume_outer_liner >= volume_inner - return volume_outer_liner - volume_inner - - def get_mass_liner(self): - """ - returns the mass of the liner in kg - """ - volume_liner = self.get_volume_liner() - if volume_liner is None: - return None - return self.density_liner * volume_liner - - def get_cost_liner(self): - """ - returns the cost of the liner material in $ - """ - mass_liner = self.get_mass_liner() - if mass_liner is None: - return None - return self.costrate_liner * mass_liner - - # get the outer dimensions - def get_length_outer(self): - """returns the outer length of the pressure vessel in cm""" - if None in [self.length_inner, self.thickness_liner, self.thickness_jacket]: - return None - return Tank.compute_hemicylinder_outer_length( - self.length_inner, self.thickness_liner + self.thickness_jacket - ) - - def get_radius_outer(self): - """returns the outer radius of the pressure vessel in cm""" - if None in [self.radius_inner, self.thickness_liner, self.thickness_jacket]: - return None - return Tank.compute_hemicylinder_outer_radius( - self.radius_inner, self.thickness_liner + self.thickness_jacket - ) - - def get_volume_outer(self): - """ - returns the outer volume of the pressure vessel in ccm - """ - if None in [ - self.length_inner, - self.radius_inner, - self.thickness_liner, - self.thickness_jacket, - ]: - return None - return Tank.compute_hemicylinder_volume(self.get_radius_outer(), self.get_length_outer()) - - def get_volume_jacket(self): - """ - returns the (unsealed) displacement volume of the carbon fiber jacket in ccm - """ - volume_outer = self.get_volume_outer() - volume_outer_liner = self.get_volume_outer_liner() - if None in [volume_outer, volume_outer_liner]: - return None - assert volume_outer >= volume_outer_liner - return volume_outer - volume_outer_liner - - def get_mass_jacket(self): - """ - returns the mass of the carbon fiber jacket in kg - """ - volume_jacket = self.get_volume_jacket() - if volume_jacket is None: - return None - return self.density_jacket * volume_jacket - - def get_cost_jacket(self): - """ - returns the cost of the jacket material in $ - """ - mass_jacket = self.get_mass_jacket() - if mass_jacket is None: - return None - return self.costrate_jacket * mass_jacket - - def get_mass_tank(self): - """ - returns the mass of the empty tank in kg - """ - mass_liner = self.get_mass_liner() - mass_jacket = self.get_mass_jacket() - if None in [mass_liner, mass_jacket]: - return None - return mass_liner + mass_jacket - - def get_cost_tank(self): - """ - returns the material cost of the tank in $ - """ - cost_liner = self.get_cost_liner() - cost_jacket = self.get_cost_jacket() - if None in [cost_liner, cost_jacket]: - return None - return cost_liner + cost_jacket - - def get_gravimetric_tank_efficiency(self): - """ - returns the gravimetric tank efficiency: - $$ \frac{m_{tank}}{V_{inner}} $$ - in L/kg - """ - mass_tank = self.get_mass_tank() - volume_inner = self.get_volume_inner() - return (volume_inner / 1e3) / mass_tank - - -class TypeIIITank(LinedTank): - def __init__( - self, - conservative=False, - liner_design_load_factor=0.21, - liner_thickness_min=0.3, - yield_factor: float = 3 / 2, - ultimate_factor: float = 2.25, - ): - load_bearing_liner = not conservative # use load bearing liner iff not conservative - super().__init__( - 3, - load_bearing_liner, - liner_design_load_factor, - liner_thickness_min, - yield_factor, - ultimate_factor, - ) - - -class TypeIVTank(LinedTank): - def __init__( - self, - liner_design_load_factor=0.21, - liner_thickness=0.4, - yield_factor: float = 3 / 2, - ultimate_factor: float = 2.25, - ): - super().__init__( - 4, - False, - liner_design_load_factor, - liner_thickness, - yield_factor, - ultimate_factor, - ) diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/von_mises.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/von_mises.py deleted file mode 100644 index e52794f32..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/von_mises.py +++ /dev/null @@ -1,97 +0,0 @@ -""" -Author: Cory Frontin -Date: 23 Jan 2023 -Institution: National Renewable Energy Lab -Description: This file computes von Mises quantities for hemicylindrical tanks, - replacing Tankinator.xlsx -Sources: - - Tankinator.xlsx -""" - -import numpy as np - - -def S1(p, Re, R0): # von Mises hoop stress - return p * (Re**2 + R0**2) / (Re**2 - R0**2) - - -def S2(p, Re, R0): # von Mises axial stress - return p * R0**2 / (Re**2 - R0**2) - - -def S3(p, Re, R0): # von Mises radial stress - return -p - - -def getPeakStresses(p, Re, R0, proof_factor=3.0 / 2.0, burst_factor=2.25): - aVM = np.sqrt(2) / 2 - bVM = (S2(p, Re, R0) - S1(p, Re, R0)) ** 2 - cVM = (S3(p, Re, R0) - S1(p, Re, R0)) ** 2 - dVM = (S3(p, Re, R0) - S2(p, Re, R0)) ** 2 - eVM = np.sqrt(bVM + cVM + dVM) - Sproof = proof_factor * aVM * eVM - Sburst = burst_factor * aVM * eVM - return (Sproof, Sburst) - - -def wallThicknessAdjustmentFactor( - p, Re, R0, Syield, Sultimate, proof_factor=3.0 / 2.0, burst_factor=2.25 -): - """ - get factor by which to increase thickness when von Mises stresses exceed - material yield safety margins - """ - Sproof, Sburst = getPeakStresses(p, Re, R0, proof_factor, burst_factor) - WTAF_proof = Sproof / Syield - WTAF_burst = Sburst / Sultimate - WTAF = max(WTAF_proof, WTAF_burst) - return WTAF - - -def iterate_thickness( - p, R0, thickness_in, Syield, Sultimate, proof_factor=3.0 / 2.0, burst_factor=2.25 -): - """ - apply the wall thickness adjustment factor, return it w/ new thickness - """ - - Router = R0 + thickness_in - WTAF = wallThicknessAdjustmentFactor( - p, Router, R0, Syield, Sultimate, proof_factor, burst_factor - ) - - return max(1.0, WTAF), max(1.0, WTAF) * thickness_in - - -def cycle( - p, - R0, - thickness_init, - Syield, - Sultimate, - proof_factor=3.0 / 2.0, - burst_factor=2.25, - max_iter=10, - WTAF_tol=1e-6, -): - """ - cycle to find a thickness that satisfies the von Mises criteria - """ - - # compute initial thickness, WTAF - thickness = thickness_init - WTAF = wallThicknessAdjustmentFactor( - p, R0 + thickness, R0, Syield, Sultimate, proof_factor, burst_factor - ) - - # iterate while WTAF is greater than zero - n_iter = 0 - while (WTAF - 1.0 > WTAF_tol) and (n_iter < max_iter): - n_iter += 1 # this cycle iteration number - - # get the next thickness - WTAF, thickness = iterate_thickness( - p, R0, thickness, Syield, Sultimate, proof_factor, burst_factor - ) - - return (thickness, WTAF, n_iter) diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/salt_cavern/salt_cavern.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/salt_cavern/salt_cavern.py deleted file mode 100644 index 197ba41ef..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/salt_cavern/salt_cavern.py +++ /dev/null @@ -1,169 +0,0 @@ -""" -Author: Kaitlin Brunik -Created: 7/20/2023 -Institution: National Renewable Energy Lab -Description: This file outputs capital and operational costs of salt cavern hydrogen storage. -It needs to be updated to with operational dynamics. -Costs are in 2018 USD - -Sources: - - [1] Papadias 2021: https://www.sciencedirect.com/science/article/pii/S0360319921030834?via%3Dihub - - [2] Papadias 2021: Bulk Hydrogen as Function of Capacity.docx documentation at - hopp/hydrogen/h2_storage - - [3] HDSAM V4.0 Gaseous H2 Geologic Storage sheet -""" - -import numpy as np - -from h2integrate.simulation.technologies.hydrogen.h2_transport.h2_compression import Compressor - - -class SaltCavernStorage: - """ - - Costs are in 2018 USD - """ - - def __init__(self, input_dict): - """ - Initialize SaltCavernStorage. - - Args: - input_dict (dict): - - h2_storage_kg (float): total capacity of hydrogen storage [kg] - - storage_duration_hrs (float): (optional if h2_storage_kg set) [hrs] - - flow_rate_kg_hr (float): (optional if h2_storage_kg set) [kg/hr] - - system_flow_rate (float): [kg/day] - - labor_rate (float): (optional, default: 37.40) [$2018/hr] - - insurance (float): (optional, default: 1%) [decimal percent] - - property_taxes (float): (optional, default: 1%) [decimal percent] - - licensing_permits (float): (optional, default: 0.01%) [decimal percent] - Returns: - - salt_cavern_storage_capex_per_kg (float): the installed capital cost per kg h2 in - 2018 [USD/kg] - - installed_capex (float): the installed capital cost in 2018 [USD] (including - compressor) - - storage_compressor_capex (float): the installed capital cost in 2018 for the - compressor [USD] - - total_opex (float): the OPEX (annual, fixed) in 2018 excluding electricity costs - [USD/kg-yr] - - output_dict (dict): - - salt_cavern_storage_capex (float): installed capital cost in 2018 [USD] - - salt_cavern_storage_opex (float): OPEX (annual, fixed) in 2018 [USD/yr] - """ - self.input_dict = input_dict - self.output_dict = {} - - # inputs - if "h2_storage_kg" in input_dict: - self.h2_storage_kg = input_dict["h2_storage_kg"] # [kg] - elif "storage_duration_hrs" and "flow_rate_kg_hr" in input_dict: - self.h2_storage_kg = input_dict["storage_duration_hrs"] * input_dict["flow_rate_kg_hr"] - else: - raise Exception( - "input_dict must contain h2_storage_kg or storage_duration_hrs and flow_rate_kg_hr" - ) - - if "system_flow_rate" not in input_dict.keys(): - raise ValueError("system_flow_rate required for salt cavern storage model.") - else: - self.system_flow_rate = input_dict["system_flow_rate"] - - self.labor_rate = input_dict.get("labor_rate", 37.39817) # $(2018)/hr - self.insurance = input_dict.get("insurance", 1 / 100) # % of total capital investment - self.property_taxes = input_dict.get( - "property_taxes", 1 / 100 - ) # % of total capital investment - self.licensing_permits = input_dict.get( - "licensing_permits", 0.1 / 100 - ) # % of total capital investment - self.comp_om = input_dict.get( - "compressor_om", 4 / 100 - ) # % of compressor capital investment - self.facility_om = input_dict.get( - "facility_om", 1 / 100 - ) # % of facility capital investment minus compressor capital investment - - def salt_cavern_capex(self): - """ - Calculates the installed capital cost of salt cavern hydrogen storage - Returns: - - salt_cavern_capex_per_kg (float): the installed capital cost per kg h2 in 2018 - [USD/kg] - - installed_capex (float): the installed capital cost in 2018 [USD] (including - compressor) - - storage_compressor_capex (float): the installed capital cost in 2018 for the - compressor [USD] - - output_dict (dict): - - salt_cavern_capex (float): installed capital cost in 2018 [USD] - """ - - # Installed capital cost - a = 0.092548 - b = 1.6432 - c = 10.161 - self.salt_cavern_storage_capex_per_kg = np.exp( - a * (np.log(self.h2_storage_kg / 1000)) ** 2 - b * np.log(self.h2_storage_kg / 1000) + c - ) # 2019 [USD] from Papadias [2] - self.installed_capex = self.salt_cavern_storage_capex_per_kg * self.h2_storage_kg - cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 - self.installed_capex = cepci_overall * self.installed_capex - self.output_dict["salt_cavern_storage_capex"] = self.installed_capex - - outlet_pressure = 120 # Max outlet pressure of salt cavern in [1] - n_compressors = 2 - storage_compressor = Compressor( - outlet_pressure, self.system_flow_rate, n_compressors=n_compressors - ) - storage_compressor.compressor_power() - motor_rating, power = storage_compressor.compressor_system_power() - if motor_rating > 1600: - n_compressors += 1 - storage_compressor = Compressor( - outlet_pressure, self.system_flow_rate, n_compressors=n_compressors - ) - storage_compressor.compressor_power() - motor_rating, power = storage_compressor.compressor_system_power() - comp_capex, comp_OM = storage_compressor.compressor_costs() - cepci = 1.36 / 1.29 # convert from $2016 to $2018 - self.comp_capex = comp_capex * cepci - - return ( - self.salt_cavern_storage_capex_per_kg, - self.installed_capex, - self.comp_capex, - ) - - def salt_cavern_opex(self): - """ - Calculates the operation and maintenance costs excluding electricity costs for the salt - cavern hydrogen storage - - Returns: - - total_opex (float): the OPEX (annual, fixed) in 2018 excluding electricity costs - [USD/kg-yr] - - output_dict (dict): - - salt_cavern_storage_opex (float): OPEX (annual, fixed) in 2018 [USD/yr] - """ - # Operations and Maintenace costs [3] - # Labor - # Base case is 1 operator, 24 hours a day, 7 days a week for a 100,000 kg/day average - # capacity facility. Scaling factor of 0.25 is used for other sized facilities - annual_hours = 8760 * (self.system_flow_rate / 100000) ** 0.25 - self.overhead = 0.5 - labor = (annual_hours * self.labor_rate) * (1 + self.overhead) # Burdened labor cost - insurance = self.insurance * self.installed_capex - property_taxes = self.property_taxes * self.installed_capex - licensing_permits = self.licensing_permits * self.installed_capex - comp_op_maint = self.comp_om * self.comp_capex - facility_op_maint = self.facility_om * (self.installed_capex - self.comp_capex) - - # O&M excludes electricity requirements - total_om = ( - labor - + insurance - + licensing_permits - + property_taxes - + comp_op_maint - + facility_op_maint - ) - self.output_dict["salt_cavern_storage_opex"] = total_om - return total_om diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/storage_sizing.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/storage_sizing.py deleted file mode 100644 index 4fa94b4ea..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/storage_sizing.py +++ /dev/null @@ -1,84 +0,0 @@ -import numpy as np - - -def hydrogen_storage_capacity(H2_Results, electrolyzer_size_mw, hydrogen_demand_kgphr): - """Calculate storage capacity based on hydrogen demand and production. - - Args: - H2_Results (dict): Dictionary including electrolyzer physics results. - electrolyzer_size_mw (float): Electrolyzer size in MW. - hydrogen_demand_kgphr (float): Hydrogen demand in kg/hr. - - Returns: - hydrogen_demand_kgphr (list): Hydrogen hourly demand in kilograms per hour. - hydrogen_storage_capacity_kg (float): Hydrogen storage capacity in kilograms. - hydrogen_storage_duration_hr (float): Hydrogen storage duration in hours using HHV/LHV. - hydrogen_storage_soc (list): Timeseries of the hydrogen storage state of charge. - """ - - hydrogen_production_kgphr = H2_Results["Hydrogen Hourly Production [kg/hr]"] - - hydrogen_demand_kgphr = max( - hydrogen_demand_kgphr, np.mean(hydrogen_production_kgphr) - ) # TODO: potentially add buffer No buffer needed since we are already oversizing - - # TODO: SOC is just an absolute value and is not a percentage. Ideally would calculate as shortfall in future. - hydrogen_storage_soc = [] - for j in range(len(hydrogen_production_kgphr)): - if j == 0: - hydrogen_storage_soc.append(hydrogen_production_kgphr[j] - hydrogen_demand_kgphr) - else: - hydrogen_storage_soc.append( - hydrogen_storage_soc[j - 1] + hydrogen_production_kgphr[j] - hydrogen_demand_kgphr - ) - - minimum_soc = np.min(hydrogen_storage_soc) - - # adjust soc so it's not negative. - if minimum_soc < 0: - hydrogen_storage_soc = [x + np.abs(minimum_soc) for x in hydrogen_storage_soc] - - hydrogen_storage_capacity_kg = np.max(hydrogen_storage_soc) - np.min(hydrogen_storage_soc) - h2_LHV = 119.96 # MJ/kg - h2_HHV = 141.88 # MJ/kg - hydrogen_storage_capacity_MWh_LHV = hydrogen_storage_capacity_kg * h2_LHV / 3600 - hydrogen_storage_capacity_kg * h2_HHV / 3600 - - # # Get max injection/withdrawal rate - # hydrogen_injection_withdrawal_rate = [] - # for j in range(len(hydrogen_production_kgphr)): - # hydrogen_injection_withdrawal_rate.append( - # hydrogen_production_kgphr[j] - hydrogen_demand_kgphr - # ) - # max_h2_injection_rate_kgphr = max(hydrogen_injection_withdrawal_rate) - - # # Get storage compressor capacity. TODO: sync compressor calculation here with H2Integrate - # compressor model - # compressor_total_capacity_kW = ( - # max_h2_injection_rate_kgphr / 3600 / 2.0158 * 8641.678424 - # ) - - # compressor_max_capacity_kw = 16000 - # n_comps = math.ceil(compressor_total_capacity_kW / compressor_max_capacity_kw) - - # small_positive = 1e-6 - # compressor_avg_capacity_kw = compressor_total_capacity_kW / ( - # n_comps + small_positive - # ) - - # Get average electrolyzer efficiency - electrolyzer_average_efficiency_HHV = H2_Results["Sim: Average Efficiency [%-HHV]"] - - # Calculate storage durationhyd - hydrogen_storage_duration_hr = ( - hydrogen_storage_capacity_MWh_LHV - / electrolyzer_size_mw - / electrolyzer_average_efficiency_HHV - ) - - return ( - np.ones_like(hydrogen_storage_capacity_kg) * hydrogen_demand_kgphr, - hydrogen_storage_capacity_kg, - hydrogen_storage_duration_hr, - hydrogen_storage_soc, - ) diff --git a/h2integrate/simulation/technologies/hydrogen/h2_transport/h2_export_pipe.py b/h2integrate/simulation/technologies/hydrogen/h2_transport/h2_export_pipe.py deleted file mode 100644 index 70d70f6dd..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_transport/h2_export_pipe.py +++ /dev/null @@ -1,436 +0,0 @@ -""" -Author: Jamie Kee -Added to HOPP by: Jared Thomas -Note: ANL costs are in 2018 dollars - -07/15/2024: Jamie removed Z=0.9 assumption with linear approx, -removed f=0.01 assumption with Hofer eqn, added -algebraic solver, and reformatted with black. -08/02/2024: Provide cost overrides -""" - -from __future__ import annotations - -from pathlib import Path - -import numpy as np -import pandas as pd - - -BAR2MPA = 0.1 -BAR2PA = 100_000 -MM2IN = 0.0393701 -M2KM = 1 / 1_000 -M2MM = 1_000 -KM2MI = 0.621371 - - -def run_pipe_analysis( - L: float, - m_dot: float, - p_inlet: float, - p_outlet: float, - depth: float, - risers: int = 1, - data_location: str | Path = Path(__file__).parent / "data_tables", - labor_in_mi: float | None = None, - misc_in_mi: float | None = None, - row_in_mi: float | None = None, - mat_in_mi: float | None = None, - region: str = "SW", -): - """ - This function calculates the cheapest grade, diameter, thickness, subject to ASME B31.12 and .8 - - If $/in/mi values are provided in labor_in_mi, misc_in_mi, row_in_mi, mat_in_mi, those values - will be used in the cost calculations instead of the defaults - """ - if isinstance(data_location, str): - data_location = Path(data_location).resolve() - p_inlet_MPa = p_inlet * BAR2MPA - F = 0.72 # Design option B class 1 - 2011 ASME B31.12 Table PL-3.7.1.2 - E = 1.0 # Long. Weld Factor: Seamless (Table IX-3B) - T_derating = 1 # 2020 ASME B31.8 Table A841.1.8-1 for T<250F, 121C - - # Cost overrides - anl_cost_overrides = {"labor": labor_in_mi, "misc": misc_in_mi, "ROW": row_in_mi} - - # This is a flag for the ASMEB31.8 stress design, if not including risers, then this can be set - # to false - riser = risers > 0 - extra_length = 1 + 0.05 # 5% extra - - # Assuming 5% extra length and 1 riser. Will need two risers for turbine to central platform - total_L = L * extra_length + risers * depth * M2KM # km - - # Import mechanical props and pipe thicknesses (remove A,B ,and A25 since no costing data) - yield_strengths = pd.read_csv( - data_location / "steel_mechanical_props.csv", - index_col=None, - header=0, - ) - yield_strengths = yield_strengths.loc[ - ~yield_strengths["Grade"].isin(["A", "B", "A25"]) - ].reset_index() - schedules_all = pd.read_csv( - data_location / "pipe_dimensions_metric.csv", - index_col=None, - header=0, - ) - steel_costs_kg = pd.read_csv(data_location / "steel_costs_per_kg.csv", index_col=None, header=0) - - # First get the minimum diameter required to achieve the outlet pressure for given length and - # m_dot - min_diam_mm = get_min_diameter_of_pipe(L=L, m_dot=m_dot, p_inlet=p_inlet, p_outlet=p_outlet) - # Filter for diameters larger than min diam required - schedules_spec = schedules_all.loc[schedules_all["DN"] >= (min_diam_mm)] - - # Gather the grades, diameters, and schedules to loop thru - grades = yield_strengths["Grade"].values - diams = schedules_spec["Outer diameter [mm]"].values - schds = schedules_spec.loc[ - :, ~schedules_spec.columns.isin(["DN", "Outer diameter [mm]"]) - ].columns - viable_types = [] - - # Loop thru grades - for grade in grades: - # Get SMYS and SMTS for the specific grade - SMYS = yield_strengths.loc[yield_strengths["Grade"] == grade, "SMYS [Mpa]"].values[0] - SMTS = yield_strengths.loc[yield_strengths["Grade"] == grade, "SMTS [Mpa]"].values[0] - # Loop thru outer diameters - for diam in diams: - diam_row = schedules_spec.loc[schedules_spec["Outer diameter [mm]"] == diam] - dn = diam_row["DN"].values[0] - # Loop thru scheudles (which give the thickness) - for schd in schds: - thickness = diam_row[schd].values[0] - - # Check if thickness satisfies ASME B31.12 - mat_perf_factor = get_mat_factor( - SMYS=SMYS, SMTS=SMTS, design_pressure=p_inlet * BAR2MPA - ) - t_ASME = p_inlet_MPa * dn / (2 * SMYS * F * E * mat_perf_factor) - if thickness < t_ASME: - continue - - # Check if satifies ASME B31.8 - if not checkASMEB318( - SMYS=SMYS, - diam=diam, - thickness=thickness, - riser=riser, - depth=depth, - p_inlet=p_inlet, - T_derating=T_derating, - ): - continue - - # Add qualified pipes to saved answers: - inner_diam = diam - 2 * thickness - viable_types.append([grade, dn, diam, inner_diam, schd, thickness]) - - viable_types_df = pd.DataFrame( - viable_types, - columns=[ - "Grade", - "DN", - "Outer diameter (mm)", - "Inner diameter (mm)", - "Schedule", - "Thickness (mm)", - ], - ).dropna() - - # Calculate material, labor, row, and misc costs - viable_types_df = get_mat_costs( - schedules_spec=viable_types_df, - total_L=total_L, - steel_costs_kg=steel_costs_kg, - mat_cost_override=mat_in_mi, - ) - viable_types_df = get_anl_costs( - costs=viable_types_df, - total_L=total_L, - anl_cost_overrides=anl_cost_overrides, - loc=region, - ) - viable_types_df["total capital cost [$]"] = viable_types_df[ - ["mat cost [$]", "labor cost [$]", "misc cost [$]", "ROW cost [$]"] - ].sum(axis=1) - - # Annual operating cost assumes 1.17% of total capital - # https://doi.org/10.1016/j.esr.2021.100658 - viable_types_df["annual operating cost [$]"] = ( - 0.0117 * viable_types_df["total capital cost [$]"] - ) - - # Take the option with the lowest total capital cost - min_row = viable_types_df.sort_values(by="total capital cost [$]").iloc[:1].reset_index() - return min_row - - -def get_mat_factor(SMYS: float, SMTS: float, design_pressure: float) -> float: - """ - Determine the material performance factor ASMEB31.12. - Dependent on the SMYS and SMTS. - Defaulted to 1 if not within parameters - This may not be a good assumption - """ - dp_array = np.array([6.8948, 13.7895, 15.685, 16.5474, 17.9264, 19.3053, 20.6843]) # MPa - if SMYS <= 358.528 or SMTS <= 455.054: - h_f_array = np.array([1, 1, 0.954, 0.91, 0.88, 0.84, 0.78]) - elif SMYS <= 413.686 and (SMTS > 455.054 and SMTS <= 517.107): - h_f_array = np.array([0.874, 0.874, 0.834, 0.796, 0.77, 0.734, 0.682]) - elif SMYS <= 482.633 and (SMTS > 517.107 and SMTS <= 565.370): - h_f_array = np.array([0.776, 0.776, 0.742, 0.706, 0.684, 0.652, 0.606]) - elif SMYS <= 551.581 and (SMTS > 565.370 and SMTS <= 620.528): - h_f_array = np.array([0.694, 0.694, 0.662, 0.632, 0.61, 0.584, 0.542]) - else: - return 1 - mat_perf_factor = np.interp(design_pressure, dp_array, h_f_array) - return mat_perf_factor - - -def checkASMEB318( - SMYS: float, - diam: float, - thickness: float, - riser: bool, - depth: float, - p_inlet: float, - T_derating: float, -) -> bool: - """ - Determine if pipe parameters satisfy hoop and longitudinal stress requirements - """ - - # Hoop Stress - 2020 ASME B31.8 Table A842.2.2-1 - F1 = 0.50 if riser else 0.72 - - # Hoop stress (MPa) - 2020 ASME B31.8 section A842.2.2.2 eqn (1) - # This is the maximum value for S_h - # Sh <= F1*SMYS*T_derating - S_h_check = F1 * SMYS * T_derating - - # Hoop stress (MPa) - rho_water = 1_000 # kg/m3 - p_hydrostatic = rho_water * 9.81 * depth / BAR2PA # bar - dP = (p_inlet - p_hydrostatic) * BAR2MPA # MPa - S_h = dP * (diam - (thickness if diam / thickness >= 30 else 0)) / (2_000 * thickness) - if S_h >= S_h_check: - return False - - # Longitudinal stress (MPa) - S_L_check = 0.8 * SMYS # 2020 ASME B31.8 Table A842.2.2-1. Same for riser and pipe - S_L = p_inlet * BAR2MPA * (diam - 2 * thickness) / (4 * thickness) - if S_L > S_L_check: - return False - - (0.9 * SMYS) # 2020 ASME B31.8 Table A842.2.2-1. Same for riser and pipe - # Torsional stress?? Under what applied torque? Not sure what to do for this. - - return True - - -def get_anl_costs( - costs: pd.DataFrame, total_L: float, anl_cost_overrides: dict, loc: str = "SW" -) -> pd.DataFrame: - """ - Calculates the labor, right-of-way (ROW), and miscellaneous costs associated with pipe capital - cost - - Users can specify a region (GP,NE,MA,GL,RM,SE,PN,SW,CA) that corresponds to grouping of states - which will apply cost correlations from Brown, D., et al. 2022. “The Development of Natural Gas - and Hydrogen Pipeline Capital Cost Estimating Equations.” International Journal of Hydrogen - Energy https://doi.org/10.1016/j.ijhydene.2022.07.270. - - Alternatively, if a value (not None) is provided in anl_cost_overrides, that value be used as - the $/in/mi cost correlation for the relevant cost type. - """ - - ANL_COEFS = { - "GP": { - "labor": [10406, 0.20953, -0.08419], - "misc": [4944, 0.17351, -0.07621], - "ROW": [2751, -0.28294, 0.00731], - "material": [5813, 0.31599, -0.00376], - }, - "NE": { - "labor": [249131, -0.33162, -0.17892], - "misc": [65990, -0.29673, -0.06856], - "ROW": [83124, -0.66357, -0.07544], - "material": [10409, 0.296847, -0.07257], - }, - "MA": { - "labor": [43692, 0.05683, -0.10108], - "misc": [14616, 0.16354, -0.16186], - "ROW": [1942, 0.17394, -0.01555], - "material": [9113, 0.279875, -0.00840], - }, - "GL": { - "labor": [58154, -0.14821, -0.10596], - "misc": [41238, -0.34751, -0.11104], - "ROW": [14259, -0.65318, 0.06865], - "material": [8971, 0.255012, -0.03138], - }, - "RM": { - "labor": [10406, 0.20953, -0.08419], - "misc": [4944, 0.17351, -0.07621], - "ROW": [2751, -0.28294, 0.00731], - "material": [5813, 0.31599, -0.00376], - }, - "SE": { - "labor": [32094, 0.06110, -0.14828], - "misc": [11270, 0.19077, -0.13669], - "ROW": [9531, -0.37284, 0.02616], - "material": [6207, 0.38224, -0.05211], - }, - "PN": { - "labor": [32094, 0.06110, -0.14828], - "misc": [11270, 0.19077, -0.13669], - "ROW": [9531, -0.37284, 0.02616], - "material": [6207, 0.38224, -0.05211], - }, - "SW": { - "labor": [95295, -0.53848, 0.03070], - "misc": [19211, -0.14178, -0.04697], - "ROW": [72634, -1.07566, 0.05284], - "material": [5605, 0.41642, -0.06441], - }, - "CA": { - "labor": [95295, -0.53848, 0.03070], - "misc": [19211, -0.14178, -0.04697], - "ROW": [72634, -1.07566, 0.05284], - "material": [5605, 0.41642, -0.06441], - }, - } - - if loc not in ANL_COEFS.keys(): - raise ValueError(f"Region {loc} was supplied, but is not a valid region") - - L_mi = total_L * KM2MI - - def cost_per_in_mi(coef: list, DN_in: float, L_mi: float) -> float: - return coef[0] * DN_in ** coef[1] * L_mi ** coef[2] - - diam_col = "DN" - for cost_type in ["labor", "misc", "ROW"]: - cost_per_in_mi_val = anl_cost_overrides[cost_type] - # If no override specified, use defaults - if cost_per_in_mi_val is None: - cost_per_in_mi_val = costs.apply( - lambda x: cost_per_in_mi(ANL_COEFS[loc][cost_type], x[diam_col] * MM2IN, L_mi), - axis=1, - ) - costs[f"{cost_type} cost [$]"] = cost_per_in_mi_val * costs[diam_col] * MM2IN * L_mi - - return costs - - -def get_mat_costs( - schedules_spec: pd.DataFrame, - total_L: float, - steel_costs_kg: pd.DataFrame, - mat_cost_override: float, -): - """ - Calculates the material cost based on $/kg from Savoy for each grade - Inc., S. P. Live Stock List & Current Price. - https://www.savoypipinginc.com/blog/live-stock-and-current-price.html. - Accessed September 22, 2022. - - Users can alternatively provide a $/in/mi override to calculate material cost - """ - rho_steel = 7840 # kg/m3 - L_m = total_L / M2KM - L_mi = total_L * KM2MI - - def get_volume(od_mm: float, id_mm: float, L_m: float) -> float: - return np.pi / 4 * (od_mm**2 - id_mm**2) / M2MM**2 * L_m - - od_col = "Outer diameter (mm)" - id_col = "Inner diameter (mm)" - schedules_spec["volume [m3]"] = schedules_spec.apply( - lambda x: get_volume(x[od_col], x[id_col], L_m), - axis=1, - ) - schedules_spec["weight [kg]"] = schedules_spec["volume [m3]"] * rho_steel - - # If mat cost override is not specified, use $/kg savoy costing - if mat_cost_override is not None: - schedules_spec["mat cost [$]"] = mat_cost_override * L_mi * schedules_spec["DN"] * MM2IN - else: - schedules_spec["mat cost [$]"] = schedules_spec.apply( - lambda x: x["weight [kg]"] - * steel_costs_kg.loc[steel_costs_kg["Grade"] == x["Grade"], "Price [$/kg]"].values[0], - axis=1, - ) - - return schedules_spec - - -def get_min_diameter_of_pipe(L: float, m_dot: float, p_inlet: float, p_outlet: float) -> float: - """ - Overview: - --------- - This function returns the diameter of a pipe for a given length,flow rate, and pressure - boundaries - - Parameters: - ----------- - L : float - Length of pipeline [km] - m_dot : float = Mass flow rate [kg/s] - p_inlet : float = Pressure at inlet of pipe [bar] - p_outlet : float = Pressure at outlet of pipe [bar] - - Returns: - -------- - diameter_mm : float - Diameter of pipe [mm] - - """ - - p_in_Pa = p_inlet * BAR2PA - p_out_Pa = p_outlet * BAR2PA - - p_avg = 2 / 3 * (p_in_Pa + p_out_Pa - p_in_Pa * p_out_Pa / (p_in_Pa + p_out_Pa)) - p_diff = (p_in_Pa**2 - p_out_Pa**2) ** 0.5 - T = 15 + 273.15 # Temperature [K] - R = 8.314 # J/mol-K - z_fit_params = (6.5466916131e-9, 9.9941320278e-1) # Slope fit for 15C - z = z_fit_params[0] * p_avg + z_fit_params[1] - zrt = z * R * T - mw = 2.016 / 1_000 # kg/mol for hydrogen - RO = 0.012 # mm Roughness - mu = 8.764167e-6 # viscosity - L_m = L / M2KM - - f_list = [0.01] - - # Diameter depends on Re and f, but are functions of d. So use initial guess - # of f-0.01, then iteratively solve until f is no longer changing - err = np.inf - max_iter = 50 - while err > 0.001: - d_m = (m_dot / p_diff * 4 / np.pi * (mw / zrt / f_list[-1] / L_m) ** (-0.5)) ** (1 / 2.5) - d_mm = d_m * M2MM - Re = 4 * m_dot / (np.pi * d_m * mu) - f_list.append((-2 * np.log10(4.518 / Re * np.log10(Re / 7) + RO / (3.71 * d_mm))) ** (-2)) - err = abs((f_list[-1] - f_list[-2]) / f_list[-2]) - - # Error out if no solution after max iterations - if len(f_list) > max_iter: - raise ValueError(f"Could not find pipe diameter in {max_iter} iterations") - - return d_mm - - -if __name__ == "__main__": - L = 8 # Length [km] - m_dot = 1.5 # Mass flow rate [kg/s] assuming 300 MW -> 1.5 kg/s - p_inlet = 30 # Inlet pressure [bar] - p_outlet = 10 # Outlet pressure [bar] - depth = 80 # depth of pipe [m] - costs = run_pipe_analysis(L, m_dot, p_inlet, p_outlet, depth) - - for col in costs.columns: - print(col, costs[col][0]) diff --git a/h2integrate/simulation/technologies/hydrogen/h2_transport/h2_pipe_array.py b/h2integrate/simulation/technologies/hydrogen/h2_transport/h2_pipe_array.py deleted file mode 100644 index a0ff76e79..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_transport/h2_pipe_array.py +++ /dev/null @@ -1,126 +0,0 @@ -from numpy import flip, isnan, nansum - -from h2integrate.simulation.technologies.hydrogen.h2_transport.h2_export_pipe import ( - run_pipe_analysis, -) - - -""" -Args: - sections_distance (array[array]): array of arrays where each element of each sub-array holds the - horizontal distance in m of a pipe section - depth (float): depth of the site in m - p_inlet (float): pipe inlet pressure in bar - p_outlet (float): pipe outlet pressure in bar - mass_flow_rate_inlet (float): flow rate at each inlet to the system -Returns: - capex (float): total capital costs (USD) including labor, materials, and misc - opex (float): annual operating costs (USD) -""" - - -def run_pipe_array(sections_distance, depth, p_inlet, p_outlet, mass_flow_rate): - capex = 0 - opex = 0 - - # loop over each string - for i, pipe_string in enumerate(sections_distance): - # initialize values for each string - m_dot = 0 - p_drop = (p_inlet - p_outlet) / len(pipe_string) - flow_rates = flip(mass_flow_rate[i]) - - # loop over each section - for j, section_length in enumerate(flip(pipe_string)): - # nan represents an empty section (no pipe there, but array cannot be ragged) - if isnan(section_length): - continue - - # get mass flow rate for current section - m_dot += flow_rates[j] - - # get outlet pressure for current section - p_outlet_section = p_inlet - (j + 1) * p_drop - - # get number of risers for current section - if j == len(pipe_string) - 1: - risers = 2 - else: - risers = 1 - - # get specs and costs for each section - section_outputs = run_pipe_analysis( - section_length, m_dot, p_inlet, p_outlet_section, depth, risers=risers - ) - - capex += section_outputs["total capital cost [$]"][0] - opex += section_outputs["annual operating cost [$]"][0] - - return capex, opex - - -# Assuming one pipe diameter for the pipeline -def run_pipe_array_const_diam(sections_distance, depth, p_inlet, p_outlet, mass_flow_rate): - capex = 0 - opex = 0 - - # loop over each string - for i, pipe_string in enumerate(sections_distance): - # Calculate maximum flow rate per pipe segment (pipe is sized to largest segment) - m_dot = max(mass_flow_rate[i]) - - # Add up the length of the segment - tot_length = nansum(pipe_string) - - # Assume each full run has 2 risers - risers = 2 - risers = ( - len(pipe_string) + 1 - ) # Wasnt sure on this - is it 1 per turbine + 1 for the storage? - Jamie - - # get specs and costs for each section - section_outputs = run_pipe_analysis( - tot_length, m_dot, p_inlet, p_outlet, depth, risers=risers - ) - - capex += section_outputs["total capital cost [$]"][0] - opex += section_outputs["annual operating cost [$]"][0] - - return capex, opex - - -if __name__ == "__main__": - sections_distance = [ - [2.85105454, 2.016, 2.016, 2.016, 2.016, 2.016, 2.016, 2.016], - [2.016, 2.016, 2.016, 2.016, 2.016, 2.016, 2.016, 2.016], - [ - 2.85105454, - 2.016, - 2.016, - 2.016, - float("nan"), - float("nan"), - float("nan"), - float("nan"), - ], - ] - - L = 8 # Length [km] - m_dot = 1.5 # Mass flow rate [kg/s] assuming 300 MW -> 1.5 kg/s - p_inlet = 30 # Inlet pressure [bar] - p_outlet = 10 # Outlet pressure [bar] - depth = 80 # depth of pipe [m] - - # capex, opex = run_pipe_array( - # [[L, L], [L, L]], depth, p_inlet, p_outlet, [[m_dot, m_dot], [m_dot, m_dot]] - # ) - - # print("CAPEX (USD): ", capex) - # print("OPEX (USD): ", opex) - - capex, opex = run_pipe_array_const_diam( - [[L, L], [L, L]], depth, p_inlet, p_outlet, [[m_dot, m_dot], [m_dot, m_dot]] - ) - - print("CAPEX (USD): ", capex) - print("OPEX (USD): ", opex) diff --git a/h2integrate/simulation/technologies/iron/martin_transport/__init__.py b/h2integrate/simulation/technologies/iron/martin_transport/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/h2integrate/simulation/technologies/iron/rosner/__init__.py b/h2integrate/simulation/technologies/iron/rosner/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/h2integrate/simulation/technologies/iron/rosner_ore/__init__.py b/h2integrate/simulation/technologies/iron/rosner_ore/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/h2integrate/simulation/technologies/iron/rosner_override/__init__.py b/h2integrate/simulation/technologies/iron/rosner_override/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/h2integrate/simulation/technologies/offshore/__init__.py b/h2integrate/simulation/technologies/offshore/__init__.py deleted file mode 100644 index 719969766..000000000 --- a/h2integrate/simulation/technologies/offshore/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -from h2integrate.simulation.technologies.offshore.fixed_platform import ( - FixedPlatformDesign, - FixedPlatformInstallation, -) -from h2integrate.simulation.technologies.offshore.floating_platform import ( - FloatingPlatformDesign, - FloatingPlatformInstallation, -) diff --git a/h2integrate/simulation/technologies/offshore/all_platforms.py b/h2integrate/simulation/technologies/offshore/all_platforms.py deleted file mode 100644 index 1b4606a9f..000000000 --- a/h2integrate/simulation/technologies/offshore/all_platforms.py +++ /dev/null @@ -1,65 +0,0 @@ -import math - - -def calc_platform_opex(capex, opex_rate=0.011): - """ - Simple opex calculation based on a capex - https://www.acm.nl/sites/default/files/documents/study-on-estimation-method-for-additional-efficient-offshore-grid-opex.pdf - - Output in $USD/year - """ - - opex = capex * opex_rate # USD/year - - return opex - - -def install_platform(mass, area, distance, install_duration=14, vessel=None, foundation="fixed"): - """ - A simplified platform installation costing model. - Total Cost = install_cost * duration - Compares the mass and/or deck space of equipment to the vessel limits to determine - the number of trips. Add an additional "at sea" install duration - - """ - - # If no ORBIT vessel is defined set default values (based on ORBIT's floating_heavy_lift_vessel) - if vessel is None: - if foundation == "fixed": - # If no ORBIT vessel is defined set default values (based on ORBIT's - # example_heavy_lift_vessel) - # Default values are from [3]. - vessel_cargo_mass = 7999 # t - vessel_deck_space = 3999 # m**2 - vessel_day_rate = 500001 # USD/day - vessel_speed = 5 # km/hr - elif foundation == "floating": - # If no ORBIT vessel is defined set default values (based on ORBIT's - # floating_heavy_lift_vessel) - vessel_cargo_mass = 7999 # t - vessel_deck_space = 3999 # m**2 - vessel_day_rate = 500001 # USD/day - vessel_speed = 7 # km/hr - else: - raise ( - ValueError( - "Invalid offshore platform foundation type. Must be one of" - " ['fixed', 'floating']" - ) - ) - else: - vessel_cargo_mass = vessel.storage.max_cargo_mass # t - vessel_deck_space = vessel.storage.max_deck_space # m**2 - vessel_day_rate = vessel.day_rate # USD/day - vessel_speed = vessel.transit_speed # km/hr - - # Get the # of trips based on ships cargo/space limits - num_of_trips = math.ceil(max((mass / vessel_cargo_mass), (area / vessel_deck_space))) - - # Total duration = double the trips + install_duration - duration = (2 * num_of_trips * distance) / (vessel_speed * 24) + install_duration # days\ - - # Final install cost is obtained by using the vessel's daily rate - install_cost = vessel_day_rate * duration # USD - - return install_cost diff --git a/h2integrate/simulation/technologies/offshore/example_fixed_project.yaml b/h2integrate/simulation/technologies/offshore/example_fixed_project.yaml deleted file mode 100644 index 71a51723f..000000000 --- a/h2integrate/simulation/technologies/offshore/example_fixed_project.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Modified orbit configuration file for a single platform to carry "X technology" -design_phases: -- FixedPlatformDesign # Register Design Phase -install_phases: - FixedPlatformInstallation: 0 # Register Install Phase -oss_install_vessel: example_heavy_lift_vessel -site: - depth: 22.5 # site depth [m] - distance: 124 # distance to port [km] -equipment: - tech_required_area: 300. # equipment area [m**2] - tech_combined_mass: 1000 # equipment mass [t] - topside_design_cost: 4500000 # topside design cost [USD] - installation_duration: 14 # time at sea [days] - -# set input values to -1 to use values calculated or input in other files during H2Integrate run (depth, distance, tech_required_area, tech_combined_mass) diff --git a/h2integrate/simulation/technologies/offshore/example_floating_project.yaml b/h2integrate/simulation/technologies/offshore/example_floating_project.yaml deleted file mode 100644 index d1ae52755..000000000 --- a/h2integrate/simulation/technologies/offshore/example_floating_project.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Modified orbit configuration file for a single platform to carry "X technology" -design_phases: -- FloatingPlatformDesign # Resgister Design Phase -install_phases: - FloatingPlatformInstallation: 0 # Register Install Phase -oss_install_vessel: example_heavy_lift_vessel -site: - depth: 500.5 # site depth [m] Site depths for floating projects need to be at depths 500 m to 1500 m because of Orbit SemiTaut branch limitations (7/31) - distance: 124 # distance to port [km] -equipment: - tech_required_area: 300. # equipment area [m**2] - tech_combined_mass: 1000 # equipment mass [t] - topside_design_cost: 4500000 # topside design cost [USD] - installation_duration: 14 # time at sea [days] - -# set input values to -1 to use values calculated or input in other files during H2Integrate run (depth, distance, tech_required_area, tech_combined_mass) diff --git a/h2integrate/simulation/technologies/offshore/fixed_platform.py b/h2integrate/simulation/technologies/offshore/fixed_platform.py deleted file mode 100644 index 842f77c86..000000000 --- a/h2integrate/simulation/technologies/offshore/fixed_platform.py +++ /dev/null @@ -1,311 +0,0 @@ -from __future__ import annotations - - -""" -Author: Nick Riccobono and Charles Kiefer -Date: 1/31/2023 -Institution: National Renewable Energy Lab -Description: This file should handles the cost and sizing of a centralized offshore platform - dedicated to hydrogen production. It has been modeled off of existing BOS cost/sizing - calculations found in ORBIT (Thank you Jake Nunemaker). It can be run as standalone functions - or as appended ORBIT project phases. - - -Sources: - - [1] ORBIT: https://github.com/WISDEM/ORBIT electrical_refactor branch - - [2] J. Nunemaker, M. Shields, R. Hammond, and P. Duffy, - “ORBIT: Offshore Renewables Balance-of-System and Installation Tool,” - NREL/TP-5000-77081, 1660132, MainId:26027, Aug. 2020. doi: 10.2172/1660132. - - [3] M. Maness, B. Maples, and A. Smith, - “NREL Offshore Balance-of-System Model,” - NREL/TP--6A20-66874, 1339522, Jan. 2017. doi: 10.2172/1339522. -Args: - - tech_required_area: (float): area needed for combination of all tech (m^2), not including - buffer or working space - - tech_combined_mass: (float): mass of all tech being placed on the platform (kg or metric tons) - - - depth: (float): bathometry at the platform location (m) - - distance: (float): distance ships must travel from port to site location (km) - - Future arguments: (Not used at this time) - - construction year (int): - - lifetime (int): lifetime of the plant in years (may not be needed) - - Assembly costs and construction on land - -Returns: - - platform_mass (float): Adjusted mass of platform + substructure - - design_capex (float): capital expenditures (platform design + substructure fabrication) - - installation_capex (float): capital expenditures (installation cost) - - platform_opex (float): the OPEX (annual, fixed) in USD for the platform - -""" - -""" -Notes: - - Thank you Jake Nunemaker's oswh2 repository!!! - - pile_cost=0 $US/metric ton for monopile construction. Not a bug, this # is - consistent with the rest of ORBIT [1]. -""" - - -import typing -from pathlib import Path - -import ORBIT as orbit - -from h2integrate.simulation.technologies.offshore.all_platforms import ( - install_platform, - calc_platform_opex, -) - - -class FixedPlatformDesign(orbit.phases.design.DesignPhase): - """ - This is a modified class based on ORBIT's [1] design phase. The implementation - is discussed in [2], Section 2.5: Offshore Substation Design. Default values originate - from [3], Appendix A: Inputs, Key Assumptions and Caveats. - """ - - # phase = "H2 Fixed Platform Design" - - # Expected inputs from config yaml file - expected_config: typing.ClassVar = { - "site": { - "distance": "int | float", - "depth": "int | float", - }, - "equipment": { - "tech_required_area": "float", - "tech_combined_mass": "float", - "topside_design_cost": "USD (optional, default:4.5e6)", - "fabrication_cost_rate": "USD/t (optional, default: 14500.)", - "substructure_steel_rate": "USD/t (optional, default: 3000.)", - }, - } - - # Takes in arguments and initialize library files - def __init__(self, config, **kwargs): - self.phase = "H2 Fixed Platform Design" - - config = self.initialize_library(config, **kwargs) - self.config = self.validate_config(config) - - self._outputs = {} - - # Runs the design cost models - def run(self): - # print("Fixed Platform Design run() is working!!!") - - self.distance = self.config["site"]["distance"] # km - self.depth = self.config["site"]["depth"] # m - - _platform = self.config.get("equipment", {}) - - self.mass = _platform.get("tech_combined_mass", 999) # t - self.area = _platform.get("tech_required_area", 1000) # m**2 - - design_cost = _platform.get("topside_design_cost", 4.5e6) # USD - fab_cost = _platform.get("fabrication_cost_rate", 14500.0) # USD/t - steel_cost = _platform.get("substructure_steel_rate", 3000) # USD/t - - # Add individual calcs/functions in the run() method - total_cost, total_mass = calc_substructure_mass_and_cost( - self.mass, self.area, self.depth, fab_cost, design_cost, steel_cost - ) - - # Create an ouput dict - self._outputs["fixed_platform"] = { - "mass": total_mass, - "area": self.area, - "total_cost": total_cost, - } - - # A design object needs to have attribute design_result and detailed_output - @property - def design_result(self): - return { - "platform_design": { - "mass": self._outputs["fixed_platform"]["mass"], - "area": self._outputs["fixed_platform"]["area"], - "total_cost": self._outputs["fixed_platform"]["total_cost"], - } - } - - @property - def detailed_output(self): - return {} - - -class FixedPlatformInstallation(orbit.phases.install.InstallPhase): - """ - This is a modified class based on ORBIT's [1] install phase. The implementation - is duscussed in [2], Section 3.6: Offshore Substation Installation. Default values - originate from [3], Appendix A: Inputs, Key Assumptions and Caveats. - """ - - # phase = "H2 Fixed Platform Installation" - - # Expected inputs from config yaml file - expected_config: typing.ClassVar = { - "site": { - "distance": "int | float", - "depth": "int | float", - }, - "equipment": { - "tech_required_area": "float", - "tech_combined_mass": "float", - "install_duration": "days (optional, default: 14)", - }, - "oss_install_vessel": "str | dict", - } - - # Need to initialize arguments and weather files - def __init__(self, config, weather=None, **kwargs): - super().__init__(weather, **kwargs) - - config = self.initialize_library(config, **kwargs) - self.config = self.validate_config(config) - - self.initialize_port() - self.setup_simulation(**kwargs) - - # Setup simulation seems to be the install phase's equivalent run() module - def setup_simulation(self, **kwargs): - # print("Fixed Platform Install setup_sim() is working!!!") - - self.distance = self.config["site"]["distance"] - self.depth = self.config["site"]["depth"] - self.mass = self.config["equipment"]["tech_combined_mass"] - self.area = self.config["equipment"]["tech_required_area"] - - _platform = self.config.get("equipment", {}) - design_cost = _platform.get("topside_design_cost", 4.5e6) # USD - fab_cost = _platform.get("fabrication_cost_rate", 14500.0) # USD/t - steel_cost = _platform.get("substructure_steel_rate", 3000) # USD/t - - install_duration = _platform.get("install_duration", 14) # days - - # Initialize vessel - vessel_specs = self.config.get("oss_install_vessel", None) - name = vessel_specs.get("name", "Offshore Substation Install Vessel") - - vessel = orbit.core.Vessel(name, vessel_specs) - self.env.register(vessel) - - vessel.initialize() - self.install_vessel = vessel - - # Add in the mass of the substructure to total mass (may or may not impact the final - # install cost) - _, substructure_mass = calc_substructure_mass_and_cost( - self.mass, self.area, self.depth, fab_cost, design_cost, steel_cost - ) - - self.total_mass = substructure_mass # t - # Call the install_platform function - self.install_capex = install_platform( - self.total_mass, - self.area, - self.distance, - install_duration, - self.install_vessel, - foundation="fixed", - ) - - # An install object needs to have attribute system_capex, installation_capex, and detailed - # output - @property - def system_capex(self): - return {} - - @property - def installation_capex(self): - return self.install_capex - - @property - def detailed_output(self): - return {} - - -# Define individual calculations and functions to use outside or with ORBIT -def calc_substructure_mass_and_cost( - mass, area, depth, fab_cost=14500.0, design_cost=4.5e6, sub_cost=3000, pile_cost=0 -): - """ - calc_substructure_mass_and_cost returns the total mass including substructure, topside and - equipment. Also returns the cost of the substructure and topside - Inputs: mass | Mass of equipment on platform (metric tons) - area | Area needed for equipment (meter^2) (not necessary) - depth | Ocean depth at platform location (meters) (not necessary) - fab_cost_rate | Cost rate to fabricate topside (USD/metric ton) - design_cost | Design cost to design structural components (USD) from ORBIT - sub_cost_rate | Steel cost rate (USD/metric ton) from ORBIT""" - """ - Platform is substructure and topside combined - All functions are based off NREL's ORBIT [1] (oss_design.py) - default values are specified in [3], - """ - # Inputs needed - topside_mass = mass - topside_fab_cost_rate = fab_cost - topside_design_cost = design_cost - - """Topside Cost & Mass (repurposed eq. 2.26 from [2]) - Topside Mass is the required Mass the platform will hold - Topside Cost is a function of topside mass, fab cost and design cost""" - topside_cost = topside_mass * topside_fab_cost_rate + topside_design_cost - - """Substructure (repurposed eq. 2.31-2.33 from [2]) - Substructure Mass is a function of the topside mass - Substructure Cost is a function of of substructure mass pile mass and cost rates for each""" - - # inputs needed - substructure_cost_rate = sub_cost # USD/t - pile_cost_rate = pile_cost # USD/t - - substructure_mass = 0.4 * topside_mass # t - substructure_pile_mass = 8 * substructure_mass**0.5574 # t - substructure_cost = ( - substructure_mass * substructure_cost_rate + substructure_pile_mass * pile_cost_rate - ) # USD - - substructure_total_mass = substructure_mass + substructure_pile_mass # t - - """Total Platform capex = capex Topside + capex substructure""" - - platform_capex = substructure_cost + topside_cost # USD - platform_mass = substructure_total_mass + topside_mass # t - - return platform_capex, platform_mass - - -# Standalone test sections -if __name__ == "__main__": - print("\n*** New FixedPlatform Standalone test section ***\n") - - orbit_libpath = Path.cwd().parents[2] / "ORBIT/library" - print(orbit_libpath) - orbit.core.library.initialize_library(orbit_libpath) - - config_path = Path(__file__).parent - config_fname = orbit.load_config(config_path / "example_fixed_project.yaml") - - orbit.ProjectManager.register_design_phase(FixedPlatformDesign) - - orbit.ProjectManager.register_install_phase(FixedPlatformInstallation) - - platform = orbit.ProjectManager(config_fname) - platform.run() - - design_capex = platform.design_results["platform_design"]["total_cost"] - install_capex = platform.installation_capex - - # print("Project Params", h2platform.project_params.items()) - platform_opex = calc_platform_opex(design_capex + install_capex) - - print("ORBIT Phases: ", platform.phases.keys()) - print(f"\tH2 Platform Design Capex: {design_capex:.0f} USD") - print(f"\tH2 Platform Install Capex: {install_capex:.0f} USD") - print() - print(f"\tTotal H2 Platform Capex: {(design_capex+install_capex)/1e6:.0f} mUSD") - print(f"\tH2 Platform Opex: {platform_opex:.0f} USD/year") diff --git a/h2integrate/simulation/technologies/offshore/floating_platform.py b/h2integrate/simulation/technologies/offshore/floating_platform.py deleted file mode 100644 index 048cd5ea3..000000000 --- a/h2integrate/simulation/technologies/offshore/floating_platform.py +++ /dev/null @@ -1,357 +0,0 @@ -from __future__ import annotations - - -""" -Author:Charles Kiefer -Date: 4/11/2023 -Institution: National Renewable Energy Lab -Description: This file shall handle costing and sizing of offshore floating platforms deicated to - hydrogen production. It uses the same foundation as fixed_platform.py. Both have been modeled - off of existing BOS cost/sizing calculations fond in ORBIT. It can be run as standalone - functions or as appended ORBIT project phases. - - - -Sources: - - [1] ORBIT: https://github.com/WISDEM/ORBIT v1.1 -Args: - - tech_required_area: (float): area needed for combination of all tech (m^2), not including - buffer or working space - - tech_combined_mass: (float): mass of all tech being placed on the platform (kg or metric tons) - - - - depth: (float): bathometry at the platform location (m) ##Site depths for floating projects - need to be at depths 500 m to 1500 m because of Orbit Semitaut limitations (7/31) - - distance_to_port: (float): distance ships must travel from port to site location (km) - - Future arguments: (Not used at this time) - - construction year (int): - - lifetime (int): lifetime of the plant in years (may not be needed) - -Returns: - - platform_mass (float): Adjusted mass of platform + substructure - - design_capex (float): capital expenditures (platform design + substructure fabrication) - - installation_capex (float): capital expenditures (installation cost) - - platform_opex (float): the OPEX (annual, fixed) in USD for the platform - -""" - -""" -Notes: - Thank you Jake Nunemaker's oswh2 repository and Rebecca Fuchs SemiTaut_mooring repository!!! - pile_cost=0 $US/metric ton for monopile construction. Not a bug, this # is consistent with - the rest of ORBIT -""" - - -import typing -from pathlib import Path - -from ORBIT import ProjectManager, load_config -from ORBIT.core import Vessel -from ORBIT.core.library import initialize_library -from ORBIT.phases.design import DesignPhase, MooringSystemDesign -from ORBIT.phases.install import InstallPhase - -from h2integrate.simulation.technologies.offshore.all_platforms import ( - install_platform, - calc_platform_opex, -) - - -class FloatingPlatformDesign(DesignPhase): - """ - This is a modified class based on ORBIT's design phase - """ - - # phase = "H2 Floating Platform Design" - - # Expected inputs from config yaml file - expected_config: typing.ClassVar = { - "site": { - "distance": "int | float", - "depth": "int | float", - }, - "equipment": { - "tech_required_area": "float", - "tech_combined_mass": "float", - "topside_design_cost": "USD (optional, default:4.5e6)", - "fabrication_cost_rate": "USD/t (optional, default: 14500.)", - "substructure_steel_rate": "USD/t (optional, default: 3000.)", - }, - } - - # Takes in arguments and initialize library files - def __init__(self, config, **kwargs): - self.phase = "H2 Floating Platform Design" - - config = self.initialize_library(config, **kwargs) - self.config = self.validate_config(config) - - self._outputs = {} - # Runs the design cost models - - def run(self): - # print("Floating Platform Design run() is working!!!") - - self.distance = self.config["site"]["distance"] # km - self.depth = self.config["site"]["depth"] # m - - _platform = self.config.get("equipment", {}) - - self.mass = _platform.get("tech_combined_mass", 999) # t - self.area = _platform.get("tech_required_area", 1000) # m**2 - - design_cost = _platform.get("topside_design_cost", 4.5e6) # USD - fab_cost_rate = _platform.get("fabrication_cost_rate", 14500.0) # USD/t - steel_cost = _platform.get("substructure_steel_rate", 3000) # USD/t - ##NEED updated version - # Add individual calcs/functions in the run() method - """Calls in SemiTaut Costs and Variables for Substructure mass and cost""" - self.anchor_type = "Drag Embedment" - self.mooring_type = "Semitaut" - self.num_lines = 4 - MooringSystemDesign.MooringSystemDesign.calculate_line_length_mass(self) - MooringSystemDesign.MooringSystemDesign.calculate_anchor_mass_cost(self) - MooringSystemDesign.MooringSystemDesign.determine_mooring_line_cost(self) - total_cost, total_mass = calc_substructure_mass_and_cost( - self.mass, - self.area, - self.depth, - fab_cost_rate, - design_cost, - steel_cost, - self.line_cost, - self.anchor_cost, - self.anchor_mass, - self.line_mass, - self.num_lines, - ) - - # Create an ouput dict - self._outputs["floating_platform"] = { - "mass": total_mass, - "area": self.area, - "total_cost": total_cost, - } - - # A design object needs to have attribute design_result and detailed_output - @property - def design_result(self): - return { - "platform_design": { - "mass": self._outputs["floating_platform"]["mass"], - "area": self._outputs["floating_platform"]["area"], - "total_cost": self._outputs["floating_platform"]["total_cost"], - } - } - - @property - def detailed_output(self): - return {} - - -class FloatingPlatformInstallation(InstallPhase): - """ - This is a modified class based on ORBIT's install phase - """ - - # phase = "H2 Floating Platform Installation" - - # Expected inputs from config yaml file - expected_config: typing.ClassVar = { - "site": { - "distance": "int | float", - "depth": "int | float", - }, - "equipment": { - "tech_required_area": "float", - "tech_combined_mass": "float", - "install_duration": "days (optional, default: 14)", - }, - "oss_install_vessel": "str | dict", - } - - # Need to initialize arguments and weather files - def __init__(self, config, weather=None, **kwargs): - super().__init__(weather, **kwargs) - - config = self.initialize_library(config, **kwargs) - self.config = self.validate_config(config) - - self.initialize_port() - self.setup_simulation(**kwargs) - - # Setup simulation seems to be the install phase's equivalent run() module - def setup_simulation(self, **kwargs): - # print("Floating Platform Install setup_sim() is working!!!") - - self.distance = self.config["site"]["distance"] - self.depth = self.config["site"]["depth"] - self.mass = self.config["equipment"]["tech_combined_mass"] - self.area = self.config["equipment"]["tech_required_area"] - - _platform = self.config.get("equipment", {}) - design_cost = _platform.get("topside_design_cost", 4.5e6) # USD - fab_cost_rate = _platform.get("fabrication_cost_rate", 14500.0) # USD/t - steel_cost = _platform.get("substructure_steel_rate", 3000) # USD/t - - install_duration = _platform.get("install_duration", 14) # days - - # Initialize vessel - vessel_specs = self.config.get("oss_install_vessel", None) - name = vessel_specs.get("name", "Offshore Substation Install Vessel") - - vessel = Vessel(name, vessel_specs) - self.env.register(vessel) - - vessel.initialize() - self.install_vessel = vessel - - # Add in the mass of the substructure to total mass (may or may not impact the final - # install cost) - - """Calls in SemiTaut Costs and Variables""" - self.anchor_type = "Drag Embedment" - self.mooring_type = "Semitaut" - self.num_lines = 4 - MooringSystemDesign.MooringSystemDesign.calculate_line_length_mass(self) - MooringSystemDesign.MooringSystemDesign.calculate_anchor_mass_cost(self) - MooringSystemDesign.MooringSystemDesign.determine_mooring_line_cost(self) - - _, substructure_mass = calc_substructure_mass_and_cost( - self.mass, - self.area, - self.depth, - fab_cost_rate, - design_cost, - steel_cost, - self.line_cost, - self.anchor_cost, - self.anchor_mass, - self.line_mass, - self.num_lines, - ) - - total_mass = substructure_mass # t - - # Call the install_platform function - self.install_capex = install_platform( - total_mass, - self.area, - self.distance, - install_duration, - self.install_vessel, - foundation="floating", - ) - - # An install object needs to have attribute system_capex, installation_capex, and detailed - # output - @property - def system_capex(self): - return {} - - @property - def installation_capex(self): - return self.install_capex - - @property - def detailed_output(self): - return {} - - -# Define individual calculations and functions to use outside or with ORBIT -def calc_substructure_mass_and_cost( - mass, - area, - depth, - fab_cost_rate=14500.0, - design_cost=4.5e6, - sub_cost_rate=3000, - line_cost=0, - anchor_cost=0, - anchor_mass=0, - line_mass=0, - num_lines=4, -): - """ - calc_substructure_mass_and_cost returns the total mass including substructure, topside and - equipment. Also returns the cost of the substructure and topside - Inputs: mass | Mass of equipment on platform (metric tons) - area | Area needed for equipment (meter^2) (not necessary) - depth | Ocean depth at platform location (meters) - fab_cost_rate | Cost rate to fabricate topside (USD/metric ton) - design_cost | Design cost to design structural components (USD) from ORBIT - sub_cost_rate | Steel cost rate (USD/metric ton) from ORBIT - """ - - """ - Platform is substructure and topside combined - All functions are based off NREL's ORBIT (oss_design) - default values are specified in ORBIT - """ - topside_mass = mass - topside_fab_cost_rate = fab_cost_rate - topside_design_cost = design_cost - - """Topside Cost & Mass - Topside Mass is the required Mass the platform will hold - Topside Cost is a function of topside mass, fab cost and design cost""" - topside_cost = topside_mass * topside_fab_cost_rate + topside_design_cost # USD - - """Substructure - Substructure Mass is a function of the topside mass - Substructure Cost is a function of of substructure mass pile mass and cost rates for each""" - - substructure_cost_rate = sub_cost_rate # USD/t - - substructure_mass = 0.4 * topside_mass # t - substructure_cost = substructure_mass * substructure_cost_rate # USD - substructure_total_mass = substructure_mass # t - - """Total Mooring cost and mass for the substructure - Line_cost, anchor_cost, line_mass, anchor_mass are grabbed from MooringSystemDesign in ORBIT - Mooring_mass is returned in kilograms and will need to """ - mooring_cost = (line_cost + anchor_cost) * num_lines # USD - mooring_mass = (line_mass + anchor_mass) * num_lines # kg - - """Total Platform capex = capex Topside + capex substructure""" - total_capex = 2 * (topside_cost + substructure_cost + mooring_cost) - platform_capex = total_capex # USD - platform_mass = substructure_total_mass + topside_mass + mooring_mass / 1000 # t - # mass of equipment and floating substructure for substation - - return platform_capex, platform_mass - - -# Standalone test sections -if __name__ == "__main__": - print("\n*** New FloatingPlatform Standalone test section ***\n") - - orbit_libpath = Path.cwd().parents[2] / "ORBIT/library" - print(orbit_libpath) - initialize_library(orbit_libpath) - - config_path = Path(__file__).parent - config_fname = load_config(config_path / "example_floating_project.yaml") - - # ProjectManager._design_phases.append(FloatingPlatformDesign) - ProjectManager.register_design_phase(FloatingPlatformDesign) - # ProjectManager._install_phases.append(FloatingPlatformInstallation) - ProjectManager.register_install_phase(FloatingPlatformInstallation) - - platform = ProjectManager(config_fname) - platform.run() - - design_capex = platform.design_results["platform_design"]["total_cost"] - install_capex = platform.installation_capex - - # print("Project Params", h2platform.project_params.items()) - platform_opex = calc_platform_opex(design_capex + install_capex) - - print("ORBIT Phases: ", platform.phases.keys()) - print(f"\tH2 Platform Design Capex: {design_capex:.0f} USD") - print(f"\tH2 Platform Install Capex: {install_capex:.0f} USD") - print() - print(f"\tTotal H2 Platform Capex: {(design_capex+install_capex)/1e6:.0f} mUSD") - print(f"\tH2 Platform Opex: {platform_opex:.0f} USD/year") diff --git a/h2integrate/simulation/technologies/steel/__init__.py b/h2integrate/simulation/technologies/steel/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/h2integrate/simulation/technologies/steel/steel.py b/h2integrate/simulation/technologies/steel/steel.py deleted file mode 100644 index 37bdb6eae..000000000 --- a/h2integrate/simulation/technologies/steel/steel.py +++ /dev/null @@ -1,951 +0,0 @@ -from __future__ import annotations - -import copy -from pathlib import Path - -import pandas as pd -import ProFAST -from attrs import Factory, field, define - - -@define -class Feedstocks: - """ - Represents the consumption rates and costs of various feedstocks used in steel - production. - - Attributes: - natural_gas_prices (Dict[str, float]): - Natural gas costs, indexed by year ($/GJ). - unused_oxygen (float): - Unused oxygen produced (kgO2), default = 395. - lime_unitcost (float): - Cost per metric ton of lime ($/metric ton). - lime_transport_cost (float): - Cost to transport lime per metric ton of lime ($/metric ton). - carbon_unitcost (float): - Cost per metric ton of carbon ($/metric ton). - carbon_transport_cost (float): - Cost to transport carbon per metric ton of carbon ($/metric ton). - electricity_cost (float): - Electricity cost per metric ton of steel production ($/metric ton). - iron_ore_pellet_unitcost (float): - Cost per metric ton of iron ore ($/metric ton). - iron_ore_pellet_transport_cost (float): - Cost to transport iron ore per metric ton of iron ore ($/metric ton). - oxygen_market_price (float): - Market price per kg of oxygen ($/kgO2). - raw_water_unitcost (float): - Cost per metric ton of raw water ($/metric ton). - iron_ore_consumption (float): - Iron ore consumption per metric ton of steel production (metric tons). - raw_water_consumption (float): - Raw water consumption per metric ton of steel production (metric tons). - lime_consumption (float): - Lime consumption per metric ton of steel production (metric tons). - carbon_consumption (float): - Carbon consumption per metric ton of steel production (metric tons). - hydrogen_consumption (float): - Hydrogen consumption per metric ton of steel production (metric tons). - natural_gas_consumption (float): - Natural gas consumption per metric ton of steel production (GJ-LHV). - electricity_consumption (float): - Electricity consumption per metric ton of steel production (MWh). - slag_disposal_unitcost (float): - Cost per metric ton of slag disposal ($/metric ton). - slag_production (float): - Slag production per metric ton of steel production (metric tons). - maintenance_materials_unitcost (float): - Cost per metric ton of annual steel slab production at real capacity - factor ($/metric ton). - """ - - natural_gas_prices: dict[str, float] - unused_oxygen: float = 395 - lime_unitcost: float = 122.1 - lime_transport_cost: float = 0.0 # USD/metric ton lime - carbon_unitcost: float = 236.97 - carbon_transport_cost: float = 0.0 # USD/metric ton carbon - electricity_cost: float = 48.92 - iron_ore_pellet_unitcost: float = 207.35 - iron_ore_pellet_transport_cost: float = 0.0 # USD/metric ton iron - oxygen_market_price: float = 0.03 - raw_water_unitcost: float = 0.59289 - iron_ore_consumption: float = 1.62927 - raw_water_consumption: float = 0.80367 - lime_consumption: float = 0.01812 - carbon_consumption: float = 0.0538 - hydrogen_consumption: float = 0.06596 - natural_gas_consumption: float = 0.71657 - electricity_consumption: float = 0.5502 - slag_disposal_unitcost: float = 37.63 - slag_production: float = 0.17433 - maintenance_materials_unitcost: float = 7.72 - - -@define -class SteelCostModelConfig: - """ - Configuration for the steel cost model, including operational parameters and - feedstock costs. - - Attributes: - operational_year (int): The year of operation for cost estimation. - plant_capacity_mtpy (float): Plant capacity in metric tons per year. - lcoh (float): Levelized cost of hydrogen ($/kg). - feedstocks (Feedstocks): - An instance of the Feedstocks class containing feedstock consumption - rates and costs. - o2_heat_integration (bool): - Indicates whether oxygen and heat integration is used, affecting preheating - CapEx, cooling CapEx, and oxygen sales. Default is True. - co2_fuel_emissions (float): - CO2 emissions from fuel per metric ton of steel production. - co2_carbon_emissions (float): - CO2 emissions from carbon per metric ton of steel production. - surface_water_discharge (float): - Surface water discharge per metric ton of steel production. - """ - - operational_year: int - plant_capacity_mtpy: float - lcoh: float - feedstocks: Feedstocks - o2_heat_integration: bool = True - co2_fuel_emissions: float = 0.03929 - co2_carbon_emissions: float = 0.17466 - surface_water_discharge: float = 0.42113 - - -@define -class SteelCosts: - """ - Base dataclass for calculated steel costs. - - Attributes: - capex_eaf_casting (float): - Capital expenditure for electric arc furnace and casting. - capex_shaft_furnace (float): Capital expenditure for shaft furnace. - capex_oxygen_supply (float): Capital expenditure for oxygen supply. - capex_h2_preheating (float): Capital expenditure for hydrogen preheating. - capex_cooling_tower (float): Capital expenditure for cooling tower. - capex_piping (float): Capital expenditure for piping. - capex_elec_instr (float): - Capital expenditure for electrical and instrumentation. - capex_buildings_storage_water (float): - Capital expenditure for buildings, storage, and water service. - capex_misc (float): - Capital expenditure for miscellaneous items. - labor_cost_annual_operation (float): Annual operating labor cost. - labor_cost_maintenance (float): Maintenance labor cost. - labor_cost_admin_support (float): Administrative and support labor cost. - property_tax_insurance (float): Cost for property tax and insurance. - land_cost (float): Cost of land. - installation_cost (float): Cost of installation. - - Note: - These represent the minimum set of required cost data for - `run_steel_finance_model`, as well as base data for `SteelCostModelOutputs`. - """ - - capex_eaf_casting: float - capex_shaft_furnace: float - capex_oxygen_supply: float - capex_h2_preheating: float - capex_cooling_tower: float - capex_piping: float - capex_elec_instr: float - capex_buildings_storage_water: float - capex_misc: float - labor_cost_annual_operation: float - labor_cost_maintenance: float - labor_cost_admin_support: float - property_tax_insurance: float - land_cost: float - installation_cost: float - - -@define -class SteelCostModelOutputs(SteelCosts): - """ - Outputs of the steel cost model, extending the SteelCosts data with total - cost calculations and specific cost components related to the operation and - installation of a steel production plant. - - Attributes: - total_plant_cost (float): - The total capital expenditure (CapEx) for the steel plant. - total_fixed_operating_cost (float): - The total annual operating expenditure (OpEx), including labor, - maintenance, administrative support, and property tax/insurance. - labor_cost_fivemonth (float): - Cost of labor for the first five months of operation, often used in startup - cost calculations. - maintenance_materials_onemonth (float): - Cost of maintenance materials for one month of operation. - non_fuel_consumables_onemonth (float): - Cost of non-fuel consumables for one month of operation. - waste_disposal_onemonth (float): - Cost of waste disposal for one month of operation. - monthly_energy_cost (float): - Cost of energy (electricity, natural gas, etc.) for one month of operation. - spare_parts_cost (float): - Cost of spare parts as part of the initial investment. - misc_owners_costs (float): - Miscellaneous costs incurred by the owner, including but not limited to, - initial supply stock, safety equipment, and initial training programs. - """ - - total_plant_cost: float - total_fixed_operating_cost: float - labor_cost_fivemonth: float - maintenance_materials_onemonth: float - non_fuel_consumables_onemonth: float - waste_disposal_onemonth: float - monthly_energy_cost: float - spare_parts_cost: float - misc_owners_costs: float - - -@define -class SteelCapacityModelConfig: - """ - Configuration inputs for the steel capacity sizing model, including plant capacity and - feedstock details. - - Attributes: - hydrogen_amount_kgpy Optional (float): The amount of hydrogen available in kilograms - per year to make steel. - desired_steel_mtpy Optional (float): The amount of desired steel production in - metric tons per year. - input_capacity_factor_estimate (float): The estimated steel plant capacity factor. - feedstocks (Feedstocks): An instance of the `Feedstocks` class detailing the - costs and consumption rates of resources used in production. - """ - - input_capacity_factor_estimate: float - feedstocks: Feedstocks - hydrogen_amount_kgpy: float | None = field(default=None) - desired_steel_mtpy: float | None = field(default=None) - - def __attrs_post_init__(self): - if self.hydrogen_amount_kgpy is None and self.desired_steel_mtpy is None: - raise ValueError("`hydrogen_amount_kgpy` or `desired_steel_mtpy` is a required input.") - - if self.hydrogen_amount_kgpy and self.desired_steel_mtpy: - raise ValueError( - "can only select one input: `hydrogen_amount_kgpy` or `desired_steel_mtpy`." - ) - - -@define -class SteelCapacityModelOutputs: - """ - Outputs from the steel size model. - - Attributes: - steel_plant_size_mtpy (float): If amount of hydrogen in kilograms per year is input, - the size of the steel plant in metric tons per year is output. - hydrogen_amount_kgpy (float): If amount of steel production in metric tons per year is - input, the amount of necessary hydrogen feedstock in kilograms per year is output. - """ - - steel_plant_capacity_mtpy: float - hydrogen_amount_kgpy: float - - -def run_size_steel_plant_capacity( - config: SteelCapacityModelConfig, -) -> SteelCapacityModelOutputs: - """ - Calculates either the annual steel production in metric tons based on plant capacity and - available hydrogen or the amount of required hydrogen based on a desired steel production. - - Args: - config (SteelCapacityModelConfig): - Configuration object containing all necessary parameters for the capacity sizing, - including capacity factor estimate and feedstock costs. - - Returns: - SteelCapacityModelOutputs: An object containing steel plant capacity in metric tons - per year and amount of hydrogen required in kilograms per year. - - """ - - if config.hydrogen_amount_kgpy: - steel_plant_capacity_mtpy = ( - config.hydrogen_amount_kgpy - / 1000 - / config.feedstocks.hydrogen_consumption - * config.input_capacity_factor_estimate - ) - hydrogen_amount_kgpy = config.hydrogen_amount_kgpy - - if config.desired_steel_mtpy: - hydrogen_amount_kgpy = ( - config.desired_steel_mtpy - * 1000 - * config.feedstocks.hydrogen_consumption - / config.input_capacity_factor_estimate - ) - steel_plant_capacity_mtpy = ( - config.desired_steel_mtpy / config.input_capacity_factor_estimate - ) - - return SteelCapacityModelOutputs( - steel_plant_capacity_mtpy=steel_plant_capacity_mtpy, - hydrogen_amount_kgpy=hydrogen_amount_kgpy, - ) - - -def run_steel_model(plant_capacity_mtpy: float, plant_capacity_factor: float) -> float: - """ - Calculates the annual steel production in metric tons based on plant capacity and - capacity factor. - - Args: - plant_capacity_mtpy (float): - The plant's annual capacity in metric tons per year. - plant_capacity_factor (float): - The capacity factor of the plant. - - Returns: - float: The calculated annual steel production in metric tons per year. - """ - steel_production_mtpy = plant_capacity_mtpy * plant_capacity_factor - - return steel_production_mtpy - - -def run_steel_cost_model(config: SteelCostModelConfig) -> SteelCostModelOutputs: - """ - Calculates the capital expenditure (CapEx) and operating expenditure (OpEx) for - a steel manufacturing plant based on the provided configuration. - - Args: - config (SteelCostModelConfig): - Configuration object containing all necessary parameters for the cost - model, including plant capacity, feedstock costs, and integration options - for oxygen and heat. - - Returns: - SteelCostModelOutputs: An object containing detailed breakdowns of capital and - operating costs, as well as total plant cost and other financial metrics. - - Note: - The calculation includes various cost components such as electric arc furnace - (EAF) casting, shaft furnace, oxygen supply, hydrogen preheating, cooling tower, - and more, adjusted based on the Chemical Engineering Plant Cost Index (CEPCI). - """ - feedstocks = config.feedstocks - - model_year_CEPCI = 816.0 # 2022 - equation_year_CEPCI = 708.8 # 2021 - - capex_eaf_casting = ( - model_year_CEPCI / equation_year_CEPCI * 352191.5237 * config.plant_capacity_mtpy**0.456 - ) - capex_shaft_furnace = ( - model_year_CEPCI / equation_year_CEPCI * 489.68061 * config.plant_capacity_mtpy**0.88741 - ) - capex_oxygen_supply = ( - model_year_CEPCI / equation_year_CEPCI * 1715.21508 * config.plant_capacity_mtpy**0.64574 - ) - if config.o2_heat_integration: - capex_h2_preheating = ( - model_year_CEPCI - / equation_year_CEPCI - * (1 - 0.4) - * (45.69123 * config.plant_capacity_mtpy**0.86564) - ) # Optimistic ballpark estimate of 60% reduction in preheating - capex_cooling_tower = ( - model_year_CEPCI - / equation_year_CEPCI - * (1 - 0.3) - * (2513.08314 * config.plant_capacity_mtpy**0.63325) - ) # Optimistic ballpark estimate of 30% reduction in cooling - else: - capex_h2_preheating = ( - model_year_CEPCI / equation_year_CEPCI * 45.69123 * config.plant_capacity_mtpy**0.86564 - ) - capex_cooling_tower = ( - model_year_CEPCI - / equation_year_CEPCI - * 2513.08314 - * config.plant_capacity_mtpy**0.63325 - ) - capex_piping = ( - model_year_CEPCI / equation_year_CEPCI * 11815.72718 * config.plant_capacity_mtpy**0.59983 - ) - capex_elec_instr = ( - model_year_CEPCI / equation_year_CEPCI * 7877.15146 * config.plant_capacity_mtpy**0.59983 - ) - capex_buildings_storage_water = ( - model_year_CEPCI / equation_year_CEPCI * 1097.81876 * config.plant_capacity_mtpy**0.8 - ) - capex_misc = ( - model_year_CEPCI / equation_year_CEPCI * 7877.1546 * config.plant_capacity_mtpy**0.59983 - ) - - total_plant_cost = ( - capex_eaf_casting - + capex_shaft_furnace - + capex_oxygen_supply - + capex_h2_preheating - + capex_cooling_tower - + capex_piping - + capex_elec_instr - + capex_buildings_storage_water - + capex_misc - ) - - # -------------------------------Fixed O&M Costs------------------------------ - - labor_cost_annual_operation = ( - 69375996.9 - * ((config.plant_capacity_mtpy / 365 * 1000) ** 0.25242) - / ((1162077 / 365 * 1000) ** 0.25242) - ) - labor_cost_maintenance = 0.00863 * total_plant_cost - labor_cost_admin_support = 0.25 * (labor_cost_annual_operation + labor_cost_maintenance) - - property_tax_insurance = 0.02 * total_plant_cost - - total_fixed_operating_cost = ( - labor_cost_annual_operation - + labor_cost_maintenance - + labor_cost_admin_support - + property_tax_insurance - ) - - # ---------------------- Owner's (Installation) Costs -------------------------- - labor_cost_fivemonth = ( - 5 / 12 * (labor_cost_annual_operation + labor_cost_maintenance + labor_cost_admin_support) - ) - - maintenance_materials_onemonth = ( - feedstocks.maintenance_materials_unitcost * config.plant_capacity_mtpy / 12 - ) - non_fuel_consumables_onemonth = ( - config.plant_capacity_mtpy - * ( - feedstocks.raw_water_consumption * feedstocks.raw_water_unitcost - + feedstocks.lime_consumption - * (feedstocks.lime_unitcost + feedstocks.lime_transport_cost) - + feedstocks.carbon_consumption - * (feedstocks.carbon_unitcost + feedstocks.carbon_transport_cost) - + feedstocks.iron_ore_consumption - * (feedstocks.iron_ore_pellet_unitcost + feedstocks.iron_ore_pellet_transport_cost) - ) - / 12 - ) - - waste_disposal_onemonth = ( - config.plant_capacity_mtpy - * feedstocks.slag_disposal_unitcost - * feedstocks.slag_production - / 12 - ) - - monthly_energy_cost = ( - config.plant_capacity_mtpy - * ( - feedstocks.hydrogen_consumption * config.lcoh * 1000 - + feedstocks.natural_gas_consumption - * feedstocks.natural_gas_prices[str(config.operational_year)] - + feedstocks.electricity_consumption * feedstocks.electricity_cost - ) - / 12 - ) - two_percent_tpc = 0.02 * total_plant_cost - - fuel_consumables_60day_supply_cost = ( - config.plant_capacity_mtpy - * ( - feedstocks.raw_water_consumption * feedstocks.raw_water_unitcost - + feedstocks.lime_consumption - * (feedstocks.lime_unitcost + feedstocks.lime_transport_cost) - + feedstocks.carbon_consumption - * (feedstocks.carbon_unitcost + feedstocks.carbon_transport_cost) - + feedstocks.iron_ore_consumption - * (feedstocks.iron_ore_pellet_unitcost + feedstocks.iron_ore_pellet_transport_cost) - ) - / 365 - * 60 - ) - - spare_parts_cost = 0.005 * total_plant_cost - land_cost = 0.775 * config.plant_capacity_mtpy - misc_owners_costs = 0.15 * total_plant_cost - - installation_cost = ( - labor_cost_fivemonth - + two_percent_tpc - + fuel_consumables_60day_supply_cost - + spare_parts_cost - + misc_owners_costs - ) - - return SteelCostModelOutputs( - # CapEx - capex_eaf_casting=capex_eaf_casting, - capex_shaft_furnace=capex_shaft_furnace, - capex_oxygen_supply=capex_oxygen_supply, - capex_h2_preheating=capex_h2_preheating, - capex_cooling_tower=capex_cooling_tower, - capex_piping=capex_piping, - capex_elec_instr=capex_elec_instr, - capex_buildings_storage_water=capex_buildings_storage_water, - capex_misc=capex_misc, - total_plant_cost=total_plant_cost, - # Fixed OpEx - labor_cost_annual_operation=labor_cost_annual_operation, - labor_cost_maintenance=labor_cost_maintenance, - labor_cost_admin_support=labor_cost_admin_support, - property_tax_insurance=property_tax_insurance, - total_fixed_operating_cost=total_fixed_operating_cost, - # Owner's Installation costs - labor_cost_fivemonth=labor_cost_fivemonth, - maintenance_materials_onemonth=maintenance_materials_onemonth, - non_fuel_consumables_onemonth=non_fuel_consumables_onemonth, - waste_disposal_onemonth=waste_disposal_onemonth, - monthly_energy_cost=monthly_energy_cost, - spare_parts_cost=spare_parts_cost, - land_cost=land_cost, - misc_owners_costs=misc_owners_costs, - installation_cost=installation_cost, - ) - - -@define -class SteelFinanceModelConfig: - """ - Configuration for the steel finance model, including plant characteristics, financial - assumptions, and cost inputs. - - Attributes: - plant_life (int): The operational lifetime of the plant in years. - plant_capacity_mtpy (float): Plant capacity in metric tons per year. - plant_capacity_factor (float): - The fraction of the year the plant operates at full capacity. - steel_production_mtpy (float): Annual steel production in metric tons. - lcoh (float): Levelized cost of hydrogen. - grid_prices (Dict[str, float]): Electricity prices per unit. - feedstocks (Feedstocks): - The feedstocks required for steel production, including types and costs. - costs (Union[SteelCosts, SteelCostModelOutputs]): - Calculated CapEx and OpEx costs. - o2_heat_integration (bool): Indicates if oxygen and heat integration is used. - financial_assumptions (Dict[str, float]): - Financial assumptions for model calculations. - install_years (int): The number of years over which the plant is installed. - gen_inflation (float): General inflation rate. - save_plots (bool): select whether or not to save output plots - show_plots (bool): select whether or not to show output plots during run - output_dir (str): where to store any saved plots or data - design_scenario_id (int): what design scenario the plots correspond to - """ - - plant_life: int - plant_capacity_mtpy: float - plant_capacity_factor: float - steel_production_mtpy: float - lcoh: float - grid_prices: dict[str, float] - feedstocks: Feedstocks - costs: SteelCosts | SteelCostModelOutputs - o2_heat_integration: bool = True - financial_assumptions: dict[str, float] = Factory(dict) - install_years: int = 3 - gen_inflation: float = 0.00 - save_plots: bool = False - show_plots: bool = False - output_dir: str = "./output/" - design_scenario_id: int = 0 - - -@define -class SteelFinanceModelOutputs: - """ - Represents the outputs of the steel finance model, encapsulating the results of financial - analysis for steel production. - - Attributes: - sol (dict): - A dictionary containing the solution to the financial model, including key - financial indicators such as NPV (Net Present Value), IRR (Internal Rate of - Return), and breakeven price. - summary (dict): - A summary of key results from the financial analysis, providing a - high-level overview of financial metrics and performance indicators. - price_breakdown (pd.DataFrame): - A Pandas DataFrame detailing the cost breakdown for producing steel, - including both capital and operating expenses, as well as the impact of - various cost factors on the overall price of steel. - """ - - sol: dict - summary: dict - price_breakdown: pd.DataFrame - - -def run_steel_finance_model( - config: SteelFinanceModelConfig, -) -> SteelFinanceModelOutputs: - """ - Executes the financial model for steel production, calculating the breakeven price - of steel and other financial metrics based on the provided configuration and cost - models. - - This function integrates various cost components, including capital expenditures - (CapEx), operating expenses (OpEx), and owner's costs. It leverages the ProFAST - financial analysis software framework. - - Args: - config (SteelFinanceModelConfig): - Configuration object containing all necessary parameters and assumptions - for the financial model, including plant characteristics, cost inputs, - financial assumptions, and grid prices. - - Returns: - SteelFinanceModelOutputs: - Object containing detailed financial analysis results, including solution - metrics, summary values, price breakdown, and steel price breakdown per - metric ton. This output is instrumental in assessing the financial performance - and breakeven price for the steel production facility. - """ - - feedstocks = config.feedstocks - costs = config.costs - - # Set up ProFAST - pf = ProFAST.ProFAST("blank") - - # apply all params passed through from config - for param, val in config.financial_assumptions.items(): - pf.set_params(param, val) - - analysis_start = int([*config.grid_prices][0]) - config.install_years - - # Fill these in - can have most of them as 0 also - pf.set_params( - "commodity", - { - "name": "Steel", - "unit": "metric tons", - "initial price": 1000, - "escalation": config.gen_inflation, - }, - ) - pf.set_params("capacity", config.plant_capacity_mtpy / 365) # units/day - pf.set_params("maintenance", {"value": 0, "escalation": config.gen_inflation}) - pf.set_params("analysis start year", analysis_start) - pf.set_params("operating life", config.plant_life) - pf.set_params("installation months", 12 * config.install_years) - pf.set_params( - "installation cost", - { - "value": costs.installation_cost, - "depr type": "Straight line", - "depr period": 4, - "depreciable": False, - }, - ) - pf.set_params("non depr assets", costs.land_cost) - pf.set_params( - "end of proj sale non depr assets", - costs.land_cost * (1 + config.gen_inflation) ** config.plant_life, - ) - pf.set_params("demand rampup", 5.3) - pf.set_params("long term utilization", config.plant_capacity_factor) - pf.set_params("credit card fees", 0) - pf.set_params("sales tax", 0) - pf.set_params("license and permit", {"value": 00, "escalation": config.gen_inflation}) - pf.set_params("rent", {"value": 0, "escalation": config.gen_inflation}) - pf.set_params("property tax and insurance", 0) - pf.set_params("admin expense", 0) - pf.set_params("sell undepreciated cap", True) - pf.set_params("tax losses monetized", True) - pf.set_params("general inflation rate", config.gen_inflation) - pf.set_params("debt type", "Revolving debt") - pf.set_params("cash onhand", 1) - - # ----------------------------------- Add capital items to ProFAST ---------------- - pf.add_capital_item( - name="EAF & Casting", - cost=costs.capex_eaf_casting, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - pf.add_capital_item( - name="Shaft Furnace", - cost=costs.capex_shaft_furnace, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - pf.add_capital_item( - name="Oxygen Supply", - cost=costs.capex_oxygen_supply, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - pf.add_capital_item( - name="H2 Pre-heating", - cost=costs.capex_h2_preheating, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - pf.add_capital_item( - name="Cooling Tower", - cost=costs.capex_cooling_tower, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - pf.add_capital_item( - name="Piping", - cost=costs.capex_piping, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - pf.add_capital_item( - name="Electrical & Instrumentation", - cost=costs.capex_elec_instr, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - pf.add_capital_item( - name="Buildings, Storage, Water Service", - cost=costs.capex_buildings_storage_water, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - pf.add_capital_item( - name="Other Miscellaneous Costs", - cost=costs.capex_misc, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - - # -------------------------------------- Add fixed costs-------------------------------- - pf.add_fixed_cost( - name="Annual Operating Labor Cost", - usage=1, - unit="$/year", - cost=costs.labor_cost_annual_operation, - escalation=config.gen_inflation, - ) - pf.add_fixed_cost( - name="Maintenance Labor Cost", - usage=1, - unit="$/year", - cost=costs.labor_cost_maintenance, - escalation=config.gen_inflation, - ) - pf.add_fixed_cost( - name="Administrative & Support Labor Cost", - usage=1, - unit="$/year", - cost=costs.labor_cost_admin_support, - escalation=config.gen_inflation, - ) - pf.add_fixed_cost( - name="Property tax and insurance", - usage=1, - unit="$/year", - cost=costs.property_tax_insurance, - escalation=0.0, - ) - # Putting property tax and insurance here to zero out depcreciation/escalation. Could instead - # put it in set_params if we think that is more accurate - - # ---------------------- Add feedstocks, note the various cost options------------------- - pf.add_feedstock( - name="Maintenance Materials", - usage=1.0, - unit="Units per metric ton of steel", - cost=feedstocks.maintenance_materials_unitcost, - escalation=config.gen_inflation, - ) - pf.add_feedstock( - name="Raw Water Withdrawal", - usage=feedstocks.raw_water_consumption, - unit="metric tons of water per metric ton of steel", - cost=feedstocks.raw_water_unitcost, - escalation=config.gen_inflation, - ) - pf.add_feedstock( - name="Lime", - usage=feedstocks.lime_consumption, - unit="metric tons of lime per metric ton of steel", - cost=(feedstocks.lime_unitcost + feedstocks.lime_transport_cost), - escalation=config.gen_inflation, - ) - pf.add_feedstock( - name="Carbon", - usage=feedstocks.carbon_consumption, - unit="metric tons of carbon per metric ton of steel", - cost=(feedstocks.carbon_unitcost + feedstocks.carbon_transport_cost), - escalation=config.gen_inflation, - ) - pf.add_feedstock( - name="Iron Ore", - usage=feedstocks.iron_ore_consumption, - unit="metric tons of iron ore per metric ton of steel", - cost=(feedstocks.iron_ore_pellet_unitcost + feedstocks.iron_ore_pellet_transport_cost), - escalation=config.gen_inflation, - ) - pf.add_feedstock( - name="Hydrogen", - usage=feedstocks.hydrogen_consumption, - unit="metric tons of hydrogen per metric ton of steel", - cost=config.lcoh * 1000, - escalation=config.gen_inflation, - ) - pf.add_feedstock( - name="Natural Gas", - usage=feedstocks.natural_gas_consumption, - unit="GJ-LHV per metric ton of steel", - cost=feedstocks.natural_gas_prices, - escalation=config.gen_inflation, - ) - pf.add_feedstock( - name="Electricity", - usage=feedstocks.electricity_consumption, - unit="MWh per metric ton of steel", - cost=config.grid_prices, - escalation=config.gen_inflation, - ) - pf.add_feedstock( - name="Slag Disposal", - usage=feedstocks.slag_production, - unit="metric tons of slag per metric ton of steel", - cost=feedstocks.slag_disposal_unitcost, - escalation=config.gen_inflation, - ) - - pf.add_coproduct( - name="Oxygen sales", - usage=feedstocks.unused_oxygen, - unit="kg O2 per metric ton of steel", - cost=feedstocks.oxygen_market_price, - escalation=config.gen_inflation, - ) - - # ------------------------------ Set up outputs --------------------------- - - sol = pf.solve_price() - summary = pf.get_summary_vals() - price_breakdown = pf.get_cost_breakdown() - - if config.save_plots or config.show_plots: - output_dir = Path(config.output_dir).resolve() - savepaths = [ - output_dir / "figures/capex/", - output_dir / "figures/annual_cash_flow/", - output_dir / "figures/lcos_breakdown/", - output_dir / "data/", - ] - for savepath in savepaths: - if not savepath.exists(): - savepath.mkdir(parents=True) - - pf.plot_capital_expenses( - fileout=savepaths[0] / f"steel_capital_expense_{config.design_scenario_id}.pdf", - show_plot=config.show_plots, - ) - pf.plot_cashflow( - fileout=savepaths[1] / f"steel_cash_flow_{config.design_scenario_id}.png", - show_plot=config.show_plots, - ) - - pd.DataFrame.from_dict(data=pf.cash_flow_out).to_csv( - savepaths[3] / f"steel_cash_flow_{config.design_scenario_id}.csv" - ) - - pf.plot_costs( - savepaths[2] / f"lcos_{config.design_scenario_id}", - show_plot=config.show_plots, - ) - - return SteelFinanceModelOutputs( - sol=sol, - summary=summary, - price_breakdown=price_breakdown, - ) - - -def run_steel_full_model( - h2integrate_config: dict, - save_plots=False, - show_plots=False, - output_dir="./output/", - design_scenario_id=0, -) -> tuple[SteelCapacityModelOutputs, SteelCostModelOutputs, SteelFinanceModelOutputs]: - """ - Runs the full steel model, including capacity, cost, and finance models. - - Args: - h2integrate_config (dict): The configuration for the h2integrate model. - - Returns: - Tuple[SteelCapacityModelOutputs, SteelCostModelOutputs, SteelFinanceModelOutputs]: - A tuple containing the outputs of the steel capacity, cost, and finance models. - """ - # this is likely to change as we refactor to use config dataclasses, but for now - # we'll just copy the config and modify it as needed - config = copy.deepcopy(h2integrate_config) - - if config["steel"]["costs"]["lcoh"] != config["steel"]["finances"]["lcoh"]: - msg = ( - "steel cost LCOH and steel finance LCOH are not equal. You must specify both values" - " or neither. If neither is specified, LCOH will be calculated." - ) - raise ValueError(msg) - - steel_costs = config["steel"]["costs"] - steel_capacity = config["steel"]["capacity"] - feedstocks = Feedstocks(**steel_costs["feedstocks"]) - - # run steel capacity model to get steel plant size - # uses hydrogen amount from electrolyzer physics model - capacity_config = SteelCapacityModelConfig(feedstocks=feedstocks, **steel_capacity) - steel_capacity = run_size_steel_plant_capacity(capacity_config) - - # run steel cost model - steel_costs["feedstocks"] = feedstocks - steel_cost_config = SteelCostModelConfig( - plant_capacity_mtpy=steel_capacity.steel_plant_capacity_mtpy, **steel_costs - ) - steel_cost_config.plant_capacity_mtpy = steel_capacity.steel_plant_capacity_mtpy - steel_costs = run_steel_cost_model(steel_cost_config) - - # run steel finance model - steel_finance = config["steel"]["finances"] - steel_finance["feedstocks"] = feedstocks - - steel_finance_config = SteelFinanceModelConfig( - plant_capacity_mtpy=steel_capacity.steel_plant_capacity_mtpy, - plant_capacity_factor=capacity_config.input_capacity_factor_estimate, - steel_production_mtpy=run_steel_model( - steel_capacity.steel_plant_capacity_mtpy, - capacity_config.input_capacity_factor_estimate, - ), - costs=steel_costs, - show_plots=show_plots, - save_plots=save_plots, - output_dir=output_dir, - design_scenario_id=design_scenario_id, - **steel_finance, - ) - steel_finance = run_steel_finance_model(steel_finance_config) - - return (steel_capacity, steel_costs, steel_finance) diff --git a/h2integrate/storage/hydrogen/eco_storage.py b/h2integrate/storage/hydrogen/eco_storage.py deleted file mode 100644 index 59a47c88c..000000000 --- a/h2integrate/storage/hydrogen/eco_storage.py +++ /dev/null @@ -1,223 +0,0 @@ -import numpy as np -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import contains -from h2integrate.core.model_baseclasses import CostModelBaseClass -from h2integrate.simulation.technologies.hydrogen.h2_storage.mch.mch_cost import MCHStorage - - -# TODO: fix import structure in future refactor - - -from h2integrate.simulation.technologies.hydrogen.h2_storage.storage_sizing import hydrogen_storage_capacity # noqa: E501 # fmt: skip # isort:skip -from h2integrate.simulation.technologies.hydrogen.h2_storage.salt_cavern.salt_cavern import SaltCavernStorage # noqa: E501 # fmt: skip # isort:skip -from h2integrate.simulation.technologies.hydrogen.h2_storage.lined_rock_cavern.lined_rock_cavern import LinedRockCavernStorage # noqa: E501 # fmt: skip # isort:skip - - -@define -class H2StorageModelConfig(BaseConfig): - commodity_name: str = field(default="hydrogen") - commodity_units: str = field(default="kg") - electrolyzer_rating_mw_for_h2_storage_sizing: float | None = field(default=None) - size_capacity_from_demand: dict = field(default={"flag": True}) - capacity_from_max_on_turbine_storage: bool = field(default=False) - type: str = field( - default="salt_cavern", - validator=contains(["salt_cavern", "lined_rock_cavern", "none", "mch"]), - ) - days: int = field(default=0) - cost_year: int = field(default=2018, converter=int, validator=contains([2018, 2021])) - - def __attrs_post_init__(self): - if self.type == "mch": - self.cost_year = 2024 - else: - self.cost_year = 2018 - - -class H2Storage(CostModelBaseClass): - def initialize(self): - super().initialize() - self.options.declare("verbose", types=bool, default=False) - - def setup(self): - self.config = H2StorageModelConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") - ) - - super().setup() - - self.add_input( - "hydrogen_in", - val=0.0, - shape_by_conn=True, - units="kg/h", - ) - - self.add_input( - "rated_h2_production_kg_pr_hr", - val=0.0, - units="kg/h", - desc="Rated hydrogen production of electrolyzer", - ) - self.add_input("efficiency", val=0.0, desc="Average efficiency of the electrolyzer") - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - ########### initialize output dictionary ########### - h2_storage_results = {} - - storage_max_fill_rate = np.max(inputs["hydrogen_in"]) - - ########### get hydrogen storage size in kilograms ########### - ##################### no hydrogen storage - if self.config.type == "none": - h2_storage_capacity_kg = 0.0 - storage_max_fill_rate = 0.0 - - ##################### get storage capacity from hydrogen storage demand - elif self.config.size_capacity_from_demand["flag"]: - if self.config.electrolyzer_rating_mw_for_h2_storage_sizing is None: - raise ( - ValueError( - "h2 storage input battery_electricity_discharge must be specified \ - if size_capacity_from_demand is True." - ) - ) - hydrogen_storage_demand = np.mean( - inputs["hydrogen_in"] - ) # TODO: update demand based on end-use needs - results_dict = { - "Hydrogen Hourly Production [kg/hr]": inputs["hydrogen_in"], - "Sim: Average Efficiency [%-HHV]": inputs["efficiency"], - } - ( - hydrogen_demand_kgphr, - hydrogen_storage_capacity_kg, - hydrogen_storage_duration_hr, - hydrogen_storage_soc, - ) = hydrogen_storage_capacity( - results_dict, - self.config.electrolyzer_rating_mw_for_h2_storage_sizing, - hydrogen_storage_demand, - ) - h2_storage_capacity_kg = hydrogen_storage_capacity_kg - h2_storage_results["hydrogen_storage_duration_hr"] = hydrogen_storage_duration_hr - h2_storage_results["hydrogen_storage_soc"] = hydrogen_storage_soc - - ##################### get storage capacity based on storage days in config - else: - storage_hours = self.config.days * 24 - h2_storage_capacity_kg = round(storage_hours * storage_max_fill_rate) - - h2_storage_results["h2_storage_capacity_kg"] = h2_storage_capacity_kg - h2_storage_results["h2_storage_max_fill_rate_kg_hr"] = storage_max_fill_rate - - ########### run specific hydrogen storage models for costs and energy use ########### - if self.config.type == "none": - h2_storage_results["storage_capex"] = 0.0 - h2_storage_results["storage_opex"] = 0.0 - h2_storage_results["storage_energy"] = 0.0 - h2_storage_results["cost_year"] = 2018 - - h2_storage = None - - elif self.config.type == "salt_cavern": - # initialize dictionary for salt cavern storage parameters - storage_input = {} - - # pull parameters from plant_config file - storage_input["h2_storage_kg"] = h2_storage_capacity_kg - storage_input["system_flow_rate"] = storage_max_fill_rate - storage_input["model"] = "papadias" - - # run salt cavern storage model - h2_storage = SaltCavernStorage(storage_input) - - h2_storage.salt_cavern_capex() - h2_storage.salt_cavern_opex() - - h2_storage_results["storage_capex"] = h2_storage.output_dict[ - "salt_cavern_storage_capex" - ] - h2_storage_results["storage_opex"] = h2_storage.output_dict["salt_cavern_storage_opex"] - h2_storage_results["storage_energy"] = 0.0 - h2_storage_results["cost_year"] = 2018 - - elif self.config.type == "lined_rock_cavern": - # initialize dictionary for salt cavern storage parameters - storage_input = {} - - # pull parameters from plat_config file - storage_input["h2_storage_kg"] = h2_storage_capacity_kg - storage_input["system_flow_rate"] = storage_max_fill_rate - storage_input["model"] = "papadias" - - # run salt cavern storage model - h2_storage = LinedRockCavernStorage(storage_input) - - h2_storage.lined_rock_cavern_capex() - h2_storage.lined_rock_cavern_opex() - - h2_storage_results["storage_capex"] = h2_storage.output_dict[ - "lined_rock_cavern_storage_capex" - ] - h2_storage_results["storage_opex"] = h2_storage.output_dict[ - "lined_rock_cavern_storage_opex" - ] - h2_storage_results["storage_energy"] = 0.0 - h2_storage_results["cost_year"] = 2018 # TODO: check - - elif self.config.type == "mch": - if not self.config.size_capacity_from_demand["flag"]: - msg = ( - "To use MCH hydrogen storage, the size_capacity_from_demand " - "flag must be True." - ) - raise ValueError(msg) - - max_rated_h2 = np.max( - [inputs["rated_h2_production_kg_pr_hr"][0], storage_max_fill_rate] - ) - h2_charge_discharge = np.diff(hydrogen_storage_soc, prepend=False) - h2_charged_idx = np.argwhere(h2_charge_discharge > 0).flatten() - annual_h2_stored = sum([h2_charge_discharge[i] for i in h2_charged_idx]) - - h2_storage = MCHStorage( - max_H2_production_kg_pr_hr=max_rated_h2, - hydrogen_storage_capacity_kg=h2_storage_capacity_kg, - hydrogen_demand_kg_pr_hr=hydrogen_demand_kgphr, - annual_hydrogen_stored_kg_pr_yr=annual_h2_stored, - ) - h2_storage_costs = h2_storage.run_costs() - h2_storage_results["storage_capex"] = h2_storage_costs["mch_capex"] - h2_storage_results["storage_opex"] = ( - h2_storage_costs["mch_variable_om"] + h2_storage_costs["mch_opex"] - ) - h2_storage_results["storage_energy"] = 0.0 - h2_storage_results["cost_year"] = 2024 - - else: - msg = ( - "H2 storage type %s was given, but must be one of ['none', 'turbine', 'pipe'," - " 'pressure_vessel', 'salt_cavern', 'lined_rock_cavern', 'mch']" - ) - raise ValueError(msg) - - if self.options["verbose"]: - print("\nH2 Storage Results:") - print("H2 storage capex: ${:,.0f}".format(h2_storage_results["storage_capex"])) - print("H2 storage annual opex: ${:,.0f}/yr".format(h2_storage_results["storage_opex"])) - print( - "H2 storage capacity (metric tons): ", - h2_storage_results["h2_storage_capacity_kg"] / 1000, - ) - if h2_storage_results["h2_storage_capacity_kg"] > 0: - print( - "H2 storage cost $/kg of H2: ", - h2_storage_results["storage_capex"] - / h2_storage_results["h2_storage_capacity_kg"], - ) - - outputs["CapEx"] = h2_storage_results["storage_capex"] - outputs["OpEx"] = h2_storage_results["storage_opex"] diff --git a/h2integrate/storage/hydrogen/h2_storage_cost.py b/h2integrate/storage/hydrogen/h2_storage_cost.py index 20c693cfb..e5e17867c 100644 --- a/h2integrate/storage/hydrogen/h2_storage_cost.py +++ b/h2integrate/storage/hydrogen/h2_storage_cost.py @@ -1,15 +1,11 @@ +import numpy as np from attrs import field, define from openmdao.utils import units from h2integrate.core.utilities import BaseConfig, merge_shared_inputs from h2integrate.core.validators import contains, gte_zero, range_val from h2integrate.core.model_baseclasses import CostModelBaseClass - - -# TODO: fix import structure in future refactor -from h2integrate.simulation.technologies.hydrogen.h2_storage.lined_rock_cavern.lined_rock_cavern import LinedRockCavernStorage # noqa: E501 # fmt: skip # isort:skip -from h2integrate.simulation.technologies.hydrogen.h2_storage.salt_cavern.salt_cavern import SaltCavernStorage # noqa: E501 # fmt: skip # isort:skip -from h2integrate.simulation.technologies.hydrogen.h2_storage.pipe_storage import UndergroundPipeStorage # noqa: E501 # fmt: skip # isort:skip +from h2integrate.storage.hydrogen.h2_transport.h2_compression import Compressor @define @@ -129,16 +125,17 @@ def make_storage_input_dict(self, inputs): inputs["max_capacity"], f"({self.config.commodity_units})*h", "kg" ) - # convert charge rate to kg/h - # TODO: update to kg/day as a bug-fix + # convert charge rate to kg/day (required for storage models) storage_max_fill_rate = units.convert_units( - inputs["max_charge_rate"], f"{self.config.commodity_units}", "kg/h" + inputs["max_charge_rate"], f"{self.config.commodity_units}", "kg/d" ) storage_input["h2_storage_kg"] = max_capacity_kg[0] - # below should be in kg/day - storage_input["system_flow_rate"] = storage_max_fill_rate[0] + # system_flow_rate must be in kg/day + # NOTE: I believe this conversion is a bug and should not be divided by 24. + # To make the code consistent with previous behavior, I will not change it now. + storage_input["system_flow_rate"] = storage_max_fill_rate[0] / 24 # kg/day to kg/hr return storage_input @@ -149,57 +146,394 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): class LinedRockCavernStorageCostModel(HydrogenStorageBaseCostModel): - def initialize(self): - super().initialize() - - def setup(self): - super().setup() + """ + Author: Kaitlin Brunik + Created: 7/20/2023 + Institution: National Renewable Energy Lab + Description: This file outputs capital and operational costs of lined rock cavern + hydrogen storage. + It needs to be updated to with operational dynamics. + Costs are in 2018 USD + + Sources: + - [1] Papadias 2021: https://www.sciencedirect.com/science/article/pii/S0360319921030834?via%3Dihub + - [2] Papadias 2021: Bulk Hydrogen as Function of Capacity.docx documentation at + hydrogen_storage.md in the docs + - [3] HDSAM V4.0 Gaseous H2 Geologic Storage sheet + """ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + """ + Calculates the installed capital cost and operation and maintenance costs for lined rock + cavern hydrogen storage. + + Args: + inputs: OpenMDAO inputs containing: + - max_capacity: total capacity of hydrogen storage [kg] + - max_charge_rate: hydrogen storage charge rate [kg/h] + + Returns via outputs: + - CapEx (float): the installed capital cost in 2018 [USD] (including compressor) + - OpEx (float): the OPEX (annual, fixed) in 2018 excluding electricity costs [USD/yr] + + Additional parameters from storage_input: + - h2_storage_kg (float): total capacity of hydrogen storage [kg] + - system_flow_rate (float): [kg/day] + - labor_rate (float): (default: 37.40) [$2018/hr] + - insurance (float): (default: 1%) [decimal percent] - % of total investment + - property_taxes (float): (default: 1%) [decimal percent] - % of total investment + - licensing_permits (float): (default: 0.1%) [decimal percent] - % of total investment + - compressor_om (float): (default: 4%) [decimal percent] - % of compressor investment + - facility_om (float): (default: 1%) [decimal percent] - % of facility investment + minus compressor investment + """ storage_input = self.make_storage_input_dict(inputs) - h2_storage = LinedRockCavernStorage(storage_input) - h2_storage.lined_rock_cavern_capex() - h2_storage.lined_rock_cavern_opex() + # Extract input parameters + h2_storage_kg = storage_input["h2_storage_kg"] # [kg] + system_flow_rate = storage_input["system_flow_rate"] # [kg/day] + labor_rate = storage_input.get("labor_rate", 37.39817) # $(2018)/hr + insurance = storage_input.get("insurance", 1 / 100) # % of total capital investment + property_taxes = storage_input.get( + "property_taxes", 1 / 100 + ) # % of total capital investment + licensing_permits = storage_input.get( + "licensing_permits", 0.1 / 100 + ) # % of total capital investment + comp_om = storage_input.get("compressor_om", 4 / 100) # % of compressor capital investment + facility_om = storage_input.get( + "facility_om", 1 / 100 + ) # % of facility capital investment minus compressor capital investment + + # ============================================================================ + # Calculate CAPEX + # ============================================================================ + # Installed capital cost per kg from Papadias [2] + # Coefficients for lined rock cavern storage cost equation + a = 0.095803 + b = 1.5868 + c = 10.332 + # Calculate installed capital cost per kg using exponential fit + lined_rock_cavern_storage_capex_per_kg = np.exp( + a * (np.log(h2_storage_kg / 1000)) ** 2 - b * np.log(h2_storage_kg / 1000) + c + ) # 2019 [USD] from Papadias [2] + installed_capex = lined_rock_cavern_storage_capex_per_kg * h2_storage_kg + cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 + installed_capex = cepci_overall * installed_capex + + # ============================================================================ + # Calculate compressor costs + # ============================================================================ + outlet_pressure = 200 # Max outlet pressure of lined rock cavern in [1] [bar] + n_compressors = 2 + storage_compressor = Compressor( + outlet_pressure, system_flow_rate, n_compressors=n_compressors + ) + storage_compressor.compressor_power() + motor_rating, power = storage_compressor.compressor_system_power() + # Check if motor rating exceeds maximum, add additional compressor if needed + if motor_rating > 1600: + n_compressors += 1 + storage_compressor = Compressor( + outlet_pressure, system_flow_rate, n_compressors=n_compressors + ) + storage_compressor.compressor_power() + motor_rating, power = storage_compressor.compressor_system_power() + comp_capex, comp_OM = storage_compressor.compressor_costs() + cepci = 1.36 / 1.29 # convert from $2016 to $2018 + comp_capex = comp_capex * cepci + + # ============================================================================ + # Calculate OPEX + # ============================================================================ + # Operations and Maintenance costs [3] + # Labor + # Base case is 1 operator, 24 hours a day, 7 days a week for a 100,000 kg/day + # average capacity facility. Scaling factor of 0.25 is used for other sized facilities + annual_hours = 8760 * (system_flow_rate / 100000) ** 0.25 + overhead = 0.5 + labor = (annual_hours * labor_rate) * (1 + overhead) # Burdened labor cost + insurance_cost = insurance * installed_capex + property_taxes_cost = property_taxes * installed_capex + licensing_permits_cost = licensing_permits * installed_capex + comp_op_maint = comp_om * comp_capex + facility_op_maint = facility_om * (installed_capex - comp_capex) + + # O&M excludes electricity requirements + total_om = ( + labor + + insurance_cost + + licensing_permits_cost + + property_taxes_cost + + comp_op_maint + + facility_op_maint + ) - outputs["CapEx"] = h2_storage.output_dict["lined_rock_cavern_storage_capex"] - outputs["OpEx"] = h2_storage.output_dict["lined_rock_cavern_storage_opex"] + outputs["CapEx"] = installed_capex + outputs["OpEx"] = total_om class SaltCavernStorageCostModel(HydrogenStorageBaseCostModel): - def initialize(self): - super().initialize() - - def setup(self): - super().setup() + """ + Author: Kaitlin Brunik + Created: 7/20/2023 + Institution: National Renewable Energy Lab + Description: This file outputs capital and operational costs of salt cavern hydrogen storage. + It needs to be updated to with operational dynamics. + Costs are in 2018 USD + + Sources: + - [1] Papadias 2021: https://www.sciencedirect.com/science/article/pii/S0360319921030834?via%3Dihub + - [2] Papadias 2021: Bulk Hydrogen as Function of Capacity.docx documentation at + hydrogen_storage.md in the docs + - [3] HDSAM V4.0 Gaseous H2 Geologic Storage sheet + """ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + """ + Calculates the installed capital cost and operation and maintenance costs for salt cavern + hydrogen storage. + + Args: + inputs: OpenMDAO inputs containing: + - max_capacity: total capacity of hydrogen storage [kg] + - max_charge_rate: hydrogen storage charge rate [kg/h] + + Returns via outputs: + - CapEx (float): the installed capital cost in 2018 [USD] (including compressor) + - OpEx (float): the OPEX (annual, fixed) in 2018 excluding electricity costs [USD/yr] + + Additional parameters from storage_input: + - h2_storage_kg (float): total capacity of hydrogen storage [kg] + - system_flow_rate (float): [kg/day] + - labor_rate (float): (default: 37.40) [$2018/hr] + - insurance (float): (default: 1%) [decimal percent] - % of total investment + - property_taxes (float): (default: 1%) [decimal percent] - % of total investment + - licensing_permits (float): (default: 0.1%) [decimal percent] - % of total investment + - compressor_om (float): (default: 4%) [decimal percent] - % of compressor investment + - facility_om (float): (default: 1%) [decimal percent] - % of facility investment + minus compressor investment + """ storage_input = self.make_storage_input_dict(inputs) - h2_storage = SaltCavernStorage(storage_input) - h2_storage.salt_cavern_capex() - h2_storage.salt_cavern_opex() + # Extract input parameters + h2_storage_kg = storage_input["h2_storage_kg"] # [kg] + system_flow_rate = storage_input["system_flow_rate"] # [kg/day] + labor_rate = storage_input.get("labor_rate", 37.39817) # $(2018)/hr + insurance = storage_input.get("insurance", 1 / 100) # % of total capital investment + property_taxes = storage_input.get( + "property_taxes", 1 / 100 + ) # % of total capital investment + licensing_permits = storage_input.get( + "licensing_permits", 0.1 / 100 + ) # % of total capital investment + comp_om = storage_input.get("compressor_om", 4 / 100) # % of compressor capital investment + facility_om = storage_input.get( + "facility_om", 1 / 100 + ) # % of facility capital investment minus compressor capital investment + + # ============================================================================ + # Calculate CAPEX + # ============================================================================ + # Installed capital cost per kg from Papadias [2] + # Coefficients for salt cavern storage cost equation + a = 0.092548 + b = 1.6432 + c = 10.161 + # Calculate installed capital cost per kg using exponential fit + salt_cavern_storage_capex_per_kg = np.exp( + a * (np.log(h2_storage_kg / 1000)) ** 2 - b * np.log(h2_storage_kg / 1000) + c + ) # 2019 [USD] from Papadias [2] + installed_capex = salt_cavern_storage_capex_per_kg * h2_storage_kg + cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 + installed_capex = cepci_overall * installed_capex + + # ============================================================================ + # Calculate compressor costs + # ============================================================================ + outlet_pressure = 120 # Max outlet pressure of salt cavern in [1] [bar] + n_compressors = 2 + storage_compressor = Compressor( + outlet_pressure, system_flow_rate, n_compressors=n_compressors + ) + storage_compressor.compressor_power() + motor_rating, power = storage_compressor.compressor_system_power() + # Check if motor rating exceeds maximum, add additional compressor if needed + if motor_rating > 1600: + n_compressors += 1 + storage_compressor = Compressor( + outlet_pressure, system_flow_rate, n_compressors=n_compressors + ) + storage_compressor.compressor_power() + motor_rating, power = storage_compressor.compressor_system_power() + comp_capex, comp_OM = storage_compressor.compressor_costs() + cepci = 1.36 / 1.29 # convert from $2016 to $2018 + comp_capex = comp_capex * cepci + + # ============================================================================ + # Calculate OPEX + # ============================================================================ + # Operations and Maintenance costs [3] + # Labor + # Base case is 1 operator, 24 hours a day, 7 days a week for a 100,000 kg/day + # average capacity facility. Scaling factor of 0.25 is used for other sized facilities + annual_hours = 8760 * (system_flow_rate / 100000) ** 0.25 + overhead = 0.5 + labor = (annual_hours * labor_rate) * (1 + overhead) # Burdened labor cost + insurance_cost = insurance * installed_capex + property_taxes_cost = property_taxes * installed_capex + licensing_permits_cost = licensing_permits * installed_capex + comp_op_maint = comp_om * comp_capex + facility_op_maint = facility_om * (installed_capex - comp_capex) + + # O&M excludes electricity requirements + total_om = ( + labor + + insurance_cost + + licensing_permits_cost + + property_taxes_cost + + comp_op_maint + + facility_op_maint + ) - outputs["CapEx"] = h2_storage.output_dict["salt_cavern_storage_capex"] - outputs["OpEx"] = h2_storage.output_dict["salt_cavern_storage_opex"] + outputs["CapEx"] = installed_capex + outputs["OpEx"] = total_om class PipeStorageCostModel(HydrogenStorageBaseCostModel): - def initialize(self): - super().initialize() - - def setup(self): - super().setup() + """ + Author: Kaitlin Brunik + Updated: 7/20/2023 + Institution: National Renewable Energy Lab + Description: This file outputs capital and operational costs of underground pipeline hydrogen + storage. It needs to be updated to with operational dynamics and physical size + (footprint and mass). + Oversize pipe: pipe OD = 24'' schedule 60 [1] + Max pressure: 100 bar + Costs are in 2018 USD + + Sources: + - [1] Papadias 2021: https://www.sciencedirect.com/science/article/pii/S0360319921030834?via%3Dihub + - [2] Papadias 2021: Bulk Hydrogen as Function of Capacity.docx documentation at + hydrogen_storage.md in the docs + - [3] HDSAM V4.0 Gaseous H2 Geologic Storage sheet + """ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + """ + Calculates the installed capital cost and operation and maintenance costs for underground + pipe hydrogen storage. + + Args: + inputs: OpenMDAO inputs containing: + - max_capacity: total capacity of hydrogen storage [kg] + - max_charge_rate: hydrogen storage charge rate [kg/h] + + Returns via outputs: + - CapEx (float): the installed capital cost in 2018 [USD] (including compressor) + - OpEx (float): the OPEX (annual, fixed) in 2018 excluding electricity costs [USD/yr] + + Additional parameters from storage_input: + - h2_storage_kg (float): total capacity of hydrogen storage [kg] + - system_flow_rate (float): [kg/day] + - labor_rate (float): (default: 37.40) [$2018/hr] + - insurance (float): (default: 1%) [decimal percent] - % of total investment + - property_taxes (float): (default: 1%) [decimal percent] - % of total investment + - licensing_permits (float): (default: 0.1%) [decimal percent] - % of total investment + - compressor_om (float): (default: 4%) [decimal percent] - % of compressor investment + - facility_om (float): (default: 1%) [decimal percent] - % of facility investment + minus compressor investment + Notes: + - Oversize pipe: pipe OD = 24'' schedule 60 + - Max pressure: 100 bar + - compressor_output_pressure must be 100 bar for underground pipe storage + """ storage_input = self.make_storage_input_dict(inputs) - # compressor_output_pressure must be 100 bar or else an error will be thrown - storage_input.update({"compressor_output_pressure": 100}) - h2_storage = UndergroundPipeStorage(storage_input) - - h2_storage.pipe_storage_capex() - h2_storage.pipe_storage_opex() + # Extract input parameters + h2_storage_kg = storage_input["h2_storage_kg"] # [kg] + system_flow_rate = storage_input["system_flow_rate"] # [kg/day] + labor_rate = storage_input.get("labor_rate", 37.39817) # $(2018)/hr + insurance = storage_input.get("insurance", 1 / 100) # % of total capital investment + property_taxes = storage_input.get( + "property_taxes", 1 / 100 + ) # % of total capital investment + licensing_permits = storage_input.get( + "licensing_permits", 0.1 / 100 + ) # % of total capital investment + comp_om = storage_input.get("compressor_om", 4 / 100) # % of compressor capital investment + facility_om = storage_input.get( + "facility_om", 1 / 100 + ) # % of facility capital investment minus compressor capital investment + + # compressor_output_pressure must be 100 bar for underground pipe storage + compressor_output_pressure = 100 # [bar] + + # ============================================================================ + # Calculate CAPEX + # ============================================================================ + # Installed capital cost per kg from Papadias [2] + # Coefficients for underground pipe storage cost equation + a = 0.0041617 + b = 0.060369 + c = 6.4581 + # Calculate installed capital cost per kg using exponential fit + pipe_storage_capex_per_kg = np.exp( + a * (np.log(h2_storage_kg / 1000)) ** 2 - b * np.log(h2_storage_kg / 1000) + c + ) # 2019 [USD] from Papadias [2] + installed_capex = pipe_storage_capex_per_kg * h2_storage_kg + cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 + installed_capex = cepci_overall * installed_capex + + # ============================================================================ + # Calculate compressor costs + # ============================================================================ + outlet_pressure = ( + compressor_output_pressure # Max outlet pressure of underground pipe storage [1] [bar] + ) + n_compressors = 2 + storage_compressor = Compressor( + outlet_pressure, system_flow_rate, n_compressors=n_compressors + ) + storage_compressor.compressor_power() + motor_rating, power = storage_compressor.compressor_system_power() + # Check if motor rating exceeds maximum, add additional compressor if needed + if motor_rating > 1600: + n_compressors += 1 + storage_compressor = Compressor( + outlet_pressure, system_flow_rate, n_compressors=n_compressors + ) + storage_compressor.compressor_power() + motor_rating, power = storage_compressor.compressor_system_power() + comp_capex, comp_OM = storage_compressor.compressor_costs() + cepci = 1.36 / 1.29 # convert from $2016 to $2018 + comp_capex = comp_capex * cepci + + # ============================================================================ + # Calculate OPEX + # ============================================================================ + # Operations and Maintenance costs [3] + # Labor + # Base case is 1 operator, 24 hours a day, 7 days a week for a 100,000 kg/day + # average capacity facility. Scaling factor of 0.25 is used for other sized facilities + annual_hours = 8760 * (system_flow_rate / 100000) ** 0.25 + overhead = 0.5 + labor = (annual_hours * labor_rate) * (1 + overhead) # Burdened labor cost + insurance_cost = insurance * installed_capex + property_taxes_cost = property_taxes * installed_capex + licensing_permits_cost = licensing_permits * installed_capex + comp_op_maint = comp_om * comp_capex + facility_op_maint = facility_om * (installed_capex - comp_capex) + + # O&M excludes electricity requirements + total_om = ( + labor + + insurance_cost + + licensing_permits_cost + + property_taxes_cost + + comp_op_maint + + facility_op_maint + ) - outputs["CapEx"] = h2_storage.output_dict["pipe_storage_capex"] - outputs["OpEx"] = h2_storage.output_dict["pipe_storage_opex"] + outputs["CapEx"] = installed_capex + outputs["OpEx"] = total_om diff --git a/h2integrate/simulation/technologies/iron/martin_ore/__init__.py b/h2integrate/storage/hydrogen/h2_transport/__init__.py similarity index 100% rename from h2integrate/simulation/technologies/iron/martin_ore/__init__.py rename to h2integrate/storage/hydrogen/h2_transport/__init__.py diff --git a/h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/pipe_dimensions_metric.csv b/h2integrate/storage/hydrogen/h2_transport/data_tables/pipe_dimensions_metric.csv similarity index 98% rename from h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/pipe_dimensions_metric.csv rename to h2integrate/storage/hydrogen/h2_transport/data_tables/pipe_dimensions_metric.csv index 409fda019..9a1ded5e1 100644 --- a/h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/pipe_dimensions_metric.csv +++ b/h2integrate/storage/hydrogen/h2_transport/data_tables/pipe_dimensions_metric.csv @@ -1,44 +1,44 @@ -DN,Outer diameter [mm],S 5S,S 10,S 10S,S 20,S 30,S Std,S 40,S 40S,S60,S XS,S 80,S 80S,S 100,S 120,S 140,S 160,S XXS -6,10.29,0.889,,1.245,1.245,1.448,1.727,1.727,1.727,,2.413,2.413,2.413,,,,, -8,13.72,1.245,,1.651,1.651,1.854,2.235,2.235,2.235,,3.023,3.023,3.023,,,,, -10,17.15,1.245,,1.651,1.651,1.854,2.311,2.311,2.311,,3.2,3.2,3.2,,,,, -15,21.34,1.651,,2.108,2.108,2.413,2.769,2.769,2.769,,3.734,3.734,3.734,,,,4.775,7.468 -20,26.67,1.651,,2.108,2.108,2.413,2.87,2.87,2.87,,3.912,3.912,3.912,,,,5.563,7.823 -25,33.4,1.651,,2.769,2.769,2.896,3.378,3.378,3.378,,4.547,4.547,4.547,,,,6.35,9.093 -32,42.16,1.651,,2.769,2.769,2.972,3.556,3.556,3.556,,4.851,4.851,4.851,,,,6.35,9.703 -40,48.26,1.651,,2.769,2.769,3.175,3.683,3.683,3.683,,5.08,5.08,5.08,,,,7.137,10.16 -50,60.33,1.651,,2.769,2.769,3.175,3.912,3.912,3.912,,5.537,5.537,5.537,,,,8.738,11.074 -65,73.03,2.108,,3.048,3.048,4.775,5.156,5.156,5.156,,7.01,7.01,7.01,,,,9.525,14.021 -80,88.9,2.108,,3.048,3.048,4.775,5.486,5.486,5.486,,7.62,7.62,7.62,,,,8.839,15.24 -90,101.6,2.108,,3.048,3.048,4.775,5.74,5.74,5.74,,8.077,8.077,8.077,,,,,16.154 -100,114.3,2.11,3.05,3.05,0,4.78,6.02,6.02,6.02,0,8.56,8.56,8.56,0,0,0,13.03,17.12 -125,141.3,2.77,3.4,3.4,0,0,6.55,6.55,6.55,0,9.53,9.53,9.53,0,0,0,15.88,19.05 -150,168.28,2.77,3.4,3.4,0,0,7.11,7.11,7.11,0,10.97,10.97,10.97,0,0,0,18.26,21.95 -,193.68,,,,,,7.65,7.65,7.65,,12.7,12.7,12.7,,,,,22.23 -200,219.08,2.77,3.76,3.76,6.35,7.04,8.18,8.18,8.18,10.31,12.7,12.7,12.7,15.06,18.26,20.62,23.01,22.23 -,,,,,,,,,,,,,,,,,, -250,273.05,3.404,4.191,4.191,6.35,7.798,9.271,9.271,9.271,12.7,12.7,15.088,12.7,18.237,21.412,25.4,28.575,25.4 -300,323.85,3.962,4.572,4.572,6.35,8.382,9.525,10.312,9.525,14.275,12.7,17.45,12.7,21.412,25.4,28.575,33.325,25.4 -350,355.6,3.962,6.35,4.775,7.925,9.525,9.525,11.1,9.525,15.062,12.7,19.05,12.7,23.8,27.762,31.75,35.712, -400,406.4,4.191,6.35,4.775,7.925,9.525,9.525,12.7,9.525,16.662,12.7,21.412,12.7,26.187,30.937,36.5,40.488, -450,457.2,4.191,6.35,4.775,7.925,11.1,9.525,14.275,9.525,19.05,12.7,23.8,12.7,29.362,34.925,39.675,45.237, -500,508,4.775,6.35,5.537,9.525,12.7,9.525,15.062,9.525,20.625,12.7,26.187,12.7,32.512,38.1,44.45,49.987, -550,558.8,4.775,6.35,5.537,9.525,12.7,9.525,,9.525,22.225,12.7,28.575,12.7,34.925,41.275,47.625,53.975, -600,609.6,5.537,6.35,6.35,9.525,14.275,9.525,17.45,9.525,24.587,12.7,30.937,12.7,38.887,46.025,52.375,59.512, -650,660.4,,7.925,,12.7,,9.525,,9.525,,12.7,,,,,,, -700,711.2,,7.925,,12.7,15.875,9.525,,9.525,,12.7,,,,,,, -750,762,6.35,7.925,7.925,12.7,15.875,9.525,,9.525,,12.7,,,,,,, -800,812.8,,7.925,,12.7,15.875,9.525,17.475,9.525,,12.7,,,,,,, -850,863.6,,7.925,,12.7,15.875,9.525,17.475,9.525,,12.7,,,,,,, -900,914.4,,7.925,,12.7,15.875,9.525,19.05,9.525,,12.7,,,,,,, -1000,1016,,,,,,9.525,,,,12.7,,,,,,,25.4 -1050,1066.8,,,,,,9.525,,,,12.7,,,,,,,25.4 -1100,1117.6,,,,,,9.525,,,,12.7,,,,,,,25.4 -1150,1168.4,,,,,,9.525,,,,12.7,,,,,,,25.4 -1200,1219.2,,,,,,9.525,,,,12.7,,,,,,,25.4 -1300,1320.8,,,,,,9.525,,,,12.7,,,,,,,25.4 -1400,1422.4,,,,,,9.525,,,,12.7,,,,,,,25.4 -1500,1524,,,,,,9.525,,,,12.7,,,,,,,25.4 -1600,1625.6,,,,,,9.525,,,,12.7,,,,,,,25.4 -1700,1727.2,,,,,,9.525,,,,12.7,,,,,,,25.4 -1800,1828.8,,,,,,9.525,,,,12.7,,,,,,,25.4 +DN,Outer diameter [mm],S 5S,S 10,S 10S,S 20,S 30,S Std,S 40,S 40S,S60,S XS,S 80,S 80S,S 100,S 120,S 140,S 160,S XXS +6,10.29,0.889,,1.245,1.245,1.448,1.727,1.727,1.727,,2.413,2.413,2.413,,,,, +8,13.72,1.245,,1.651,1.651,1.854,2.235,2.235,2.235,,3.023,3.023,3.023,,,,, +10,17.15,1.245,,1.651,1.651,1.854,2.311,2.311,2.311,,3.2,3.2,3.2,,,,, +15,21.34,1.651,,2.108,2.108,2.413,2.769,2.769,2.769,,3.734,3.734,3.734,,,,4.775,7.468 +20,26.67,1.651,,2.108,2.108,2.413,2.87,2.87,2.87,,3.912,3.912,3.912,,,,5.563,7.823 +25,33.4,1.651,,2.769,2.769,2.896,3.378,3.378,3.378,,4.547,4.547,4.547,,,,6.35,9.093 +32,42.16,1.651,,2.769,2.769,2.972,3.556,3.556,3.556,,4.851,4.851,4.851,,,,6.35,9.703 +40,48.26,1.651,,2.769,2.769,3.175,3.683,3.683,3.683,,5.08,5.08,5.08,,,,7.137,10.16 +50,60.33,1.651,,2.769,2.769,3.175,3.912,3.912,3.912,,5.537,5.537,5.537,,,,8.738,11.074 +65,73.03,2.108,,3.048,3.048,4.775,5.156,5.156,5.156,,7.01,7.01,7.01,,,,9.525,14.021 +80,88.9,2.108,,3.048,3.048,4.775,5.486,5.486,5.486,,7.62,7.62,7.62,,,,8.839,15.24 +90,101.6,2.108,,3.048,3.048,4.775,5.74,5.74,5.74,,8.077,8.077,8.077,,,,,16.154 +100,114.3,2.11,3.05,3.05,0,4.78,6.02,6.02,6.02,0,8.56,8.56,8.56,0,0,0,13.03,17.12 +125,141.3,2.77,3.4,3.4,0,0,6.55,6.55,6.55,0,9.53,9.53,9.53,0,0,0,15.88,19.05 +150,168.28,2.77,3.4,3.4,0,0,7.11,7.11,7.11,0,10.97,10.97,10.97,0,0,0,18.26,21.95 +,193.68,,,,,,7.65,7.65,7.65,,12.7,12.7,12.7,,,,,22.23 +200,219.08,2.77,3.76,3.76,6.35,7.04,8.18,8.18,8.18,10.31,12.7,12.7,12.7,15.06,18.26,20.62,23.01,22.23 +,,,,,,,,,,,,,,,,,, +250,273.05,3.404,4.191,4.191,6.35,7.798,9.271,9.271,9.271,12.7,12.7,15.088,12.7,18.237,21.412,25.4,28.575,25.4 +300,323.85,3.962,4.572,4.572,6.35,8.382,9.525,10.312,9.525,14.275,12.7,17.45,12.7,21.412,25.4,28.575,33.325,25.4 +350,355.6,3.962,6.35,4.775,7.925,9.525,9.525,11.1,9.525,15.062,12.7,19.05,12.7,23.8,27.762,31.75,35.712, +400,406.4,4.191,6.35,4.775,7.925,9.525,9.525,12.7,9.525,16.662,12.7,21.412,12.7,26.187,30.937,36.5,40.488, +450,457.2,4.191,6.35,4.775,7.925,11.1,9.525,14.275,9.525,19.05,12.7,23.8,12.7,29.362,34.925,39.675,45.237, +500,508,4.775,6.35,5.537,9.525,12.7,9.525,15.062,9.525,20.625,12.7,26.187,12.7,32.512,38.1,44.45,49.987, +550,558.8,4.775,6.35,5.537,9.525,12.7,9.525,,9.525,22.225,12.7,28.575,12.7,34.925,41.275,47.625,53.975, +600,609.6,5.537,6.35,6.35,9.525,14.275,9.525,17.45,9.525,24.587,12.7,30.937,12.7,38.887,46.025,52.375,59.512, +650,660.4,,7.925,,12.7,,9.525,,9.525,,12.7,,,,,,, +700,711.2,,7.925,,12.7,15.875,9.525,,9.525,,12.7,,,,,,, +750,762,6.35,7.925,7.925,12.7,15.875,9.525,,9.525,,12.7,,,,,,, +800,812.8,,7.925,,12.7,15.875,9.525,17.475,9.525,,12.7,,,,,,, +850,863.6,,7.925,,12.7,15.875,9.525,17.475,9.525,,12.7,,,,,,, +900,914.4,,7.925,,12.7,15.875,9.525,19.05,9.525,,12.7,,,,,,, +1000,1016,,,,,,9.525,,,,12.7,,,,,,,25.4 +1050,1066.8,,,,,,9.525,,,,12.7,,,,,,,25.4 +1100,1117.6,,,,,,9.525,,,,12.7,,,,,,,25.4 +1150,1168.4,,,,,,9.525,,,,12.7,,,,,,,25.4 +1200,1219.2,,,,,,9.525,,,,12.7,,,,,,,25.4 +1300,1320.8,,,,,,9.525,,,,12.7,,,,,,,25.4 +1400,1422.4,,,,,,9.525,,,,12.7,,,,,,,25.4 +1500,1524,,,,,,9.525,,,,12.7,,,,,,,25.4 +1600,1625.6,,,,,,9.525,,,,12.7,,,,,,,25.4 +1700,1727.2,,,,,,9.525,,,,12.7,,,,,,,25.4 +1800,1828.8,,,,,,9.525,,,,12.7,,,,,,,25.4 diff --git a/h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/steel_costs_per_kg.csv b/h2integrate/storage/hydrogen/h2_transport/data_tables/steel_costs_per_kg.csv similarity index 94% rename from h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/steel_costs_per_kg.csv rename to h2integrate/storage/hydrogen/h2_transport/data_tables/steel_costs_per_kg.csv index f2da36654..3d5700fef 100644 --- a/h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/steel_costs_per_kg.csv +++ b/h2integrate/storage/hydrogen/h2_transport/data_tables/steel_costs_per_kg.csv @@ -1,10 +1,10 @@ -Specification No.,Grade,Price [$/kg] -API 5L,B,1.8 -API 5L,X42,2.2 -API 5L,X46,2.4 -API 5L,X52,2.8 -API 5L,X56,2.9 -API 5L,X60,3.2 -API 5L,X65,4.3 -API 5L,X70,6.5 -API 5L,X80,10 +Specification No.,Grade,Price [$/kg] +API 5L,B,1.8 +API 5L,X42,2.2 +API 5L,X46,2.4 +API 5L,X52,2.8 +API 5L,X56,2.9 +API 5L,X60,3.2 +API 5L,X65,4.3 +API 5L,X70,6.5 +API 5L,X80,10 diff --git a/h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/steel_mechanical_props.csv b/h2integrate/storage/hydrogen/h2_transport/data_tables/steel_mechanical_props.csv similarity index 96% rename from h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/steel_mechanical_props.csv rename to h2integrate/storage/hydrogen/h2_transport/data_tables/steel_mechanical_props.csv index 9ebe6366a..8ef7f6a9e 100644 --- a/h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/steel_mechanical_props.csv +++ b/h2integrate/storage/hydrogen/h2_transport/data_tables/steel_mechanical_props.csv @@ -1,11 +1,11 @@ -Specification No.,Grade,SMYS [Mpa],SMYS [ksi],SMTS [Mpa],SMTS [ksi] -API 5L,A25,172,25,310,45 -API 5L,A,207,30,331,48 -API 5L,B,241,35,414,60 -API 5L,X42,290,42,414,60 -API 5L,X52,317,52,455,66 -API 5L,X56,386,56,490,71 -API 5L,X60,414,60,517,75 -API 5L,X65,448,65,531,77 -API 5L,X70,483,70,565,82 -API 5L,X80,552,80,621,90 +Specification No.,Grade,SMYS [Mpa],SMYS [ksi],SMTS [Mpa],SMTS [ksi] +API 5L,A25,172,25,310,45 +API 5L,A,207,30,331,48 +API 5L,B,241,35,414,60 +API 5L,X42,290,42,414,60 +API 5L,X52,317,52,455,66 +API 5L,X56,386,56,490,71 +API 5L,X60,414,60,517,75 +API 5L,X65,448,65,531,77 +API 5L,X70,483,70,565,82 +API 5L,X80,552,80,621,90 diff --git a/h2integrate/simulation/technologies/hydrogen/h2_transport/h2_compression.py b/h2integrate/storage/hydrogen/h2_transport/h2_compression.py similarity index 98% rename from h2integrate/simulation/technologies/hydrogen/h2_transport/h2_compression.py rename to h2integrate/storage/hydrogen/h2_transport/h2_compression.py index 749606e62..fd534555e 100644 --- a/h2integrate/simulation/technologies/hydrogen/h2_transport/h2_compression.py +++ b/h2integrate/storage/hydrogen/h2_transport/h2_compression.py @@ -22,8 +22,8 @@ def __init__( """ Parameters: --------------- - p_outlet: oulet pressure (bar) - flow_Rate_kg_d: mass flow rate in kg/day + p_outlet: outlet pressure (bar) + flow_rate_kg_d: mass flow rate in kg/day """ self.p_inlet = p_inlet # bar self.p_outlet = p_outlet # bar diff --git a/h2integrate/storage/hydrogen/test/test_hydrogen_storage.py b/h2integrate/storage/hydrogen/test/test_hydrogen_storage.py index ffdd91ca1..8fcfefef9 100644 --- a/h2integrate/storage/hydrogen/test/test_hydrogen_storage.py +++ b/h2integrate/storage/hydrogen/test/test_hydrogen_storage.py @@ -167,3 +167,195 @@ def test_buried_pipe_storage(plant_config, subtests): assert pytest.approx(np.sum(prob.get_val("sys.VarOpEx")), rel=1e-6) == 0.0 with subtests.test("Cost year"): assert prob.get_val("sys.cost_year") == 2018 + + +def test_lined_rock_cavern_capex_per_kg(plant_config): + """Test based on original test_lined_rock_storage.py with 1M kg storage capacity.""" + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 1000000, + "max_charge_rate": 100000 / 24, # 100000 kg/day converted to kg/h + } + } + } + prob = om.Problem() + comp = LinedRockCavernStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + # Calculate expected capex per kg + h2_storage_kg = 1000000 + a = 0.095803 + b = 1.5868 + c = 10.332 + capex_per_kg = np.exp( + a * (np.log(h2_storage_kg / 1000)) ** 2 - b * np.log(h2_storage_kg / 1000) + c + ) + cepci_overall = 1.29 / 1.30 + expected_capex = cepci_overall * capex_per_kg * h2_storage_kg + + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-6) == expected_capex + + +def test_lined_rock_cavern_1M_kg(plant_config, subtests): + """Test lined rock cavern with 1M kg capacity matching original unit tests.""" + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 1000000, + "max_charge_rate": 100000 / 24, # 100000 kg/day converted to kg/h + } + } + } + prob = om.Problem() + comp = LinedRockCavernStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-5) == 51136144.673 + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=1e-5) == 1833238.1260644312 + with subtests.test("VarOpEx"): + assert pytest.approx(np.sum(prob.get_val("sys.VarOpEx")), rel=1e-6) == 0.0 + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2018 + + +def test_salt_cavern_capex_per_kg(plant_config): + """Test based on original test_salt_cavern_storage.py with 1M kg storage capacity.""" + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 1000000, + "max_charge_rate": 100000 / 24, # 100000 kg/day converted to kg/h + } + } + } + prob = om.Problem() + comp = SaltCavernStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + # Calculate expected capex per kg + h2_storage_kg = 1000000 + a = 0.092548 + b = 1.6432 + c = 10.161 + capex_per_kg = np.exp( + a * (np.log(h2_storage_kg / 1000)) ** 2 - b * np.log(h2_storage_kg / 1000) + c + ) + cepci_overall = 1.29 / 1.30 + expected_capex = cepci_overall * capex_per_kg * h2_storage_kg + + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-6) == expected_capex + + +def test_salt_cavern_1M_kg(plant_config, subtests): + """Test salt cavern with 1M kg capacity matching original unit tests.""" + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 1000000, + "max_charge_rate": 100000 / 24, # 100000 kg/day converted to kg/h + } + } + } + prob = om.Problem() + comp = SaltCavernStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-5) == 24992482.4198 + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=1e-5) == 1015928.3388478106 + with subtests.test("VarOpEx"): + assert pytest.approx(np.sum(prob.get_val("sys.VarOpEx")), rel=1e-6) == 0.0 + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2018 + + +def test_pipe_storage_capex_per_kg(plant_config): + """Test based on original test_underground_pipe_storage.py with 1M kg storage capacity.""" + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 1000000, + "max_charge_rate": 100000 / 24, # 100000 kg/day converted to kg/h + } + } + } + prob = om.Problem() + comp = PipeStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + # Calculate expected capex per kg + h2_storage_kg = 1000000 + a = 0.0041617 + b = 0.060369 + c = 6.4581 + capex_per_kg = np.exp( + a * (np.log(h2_storage_kg / 1000)) ** 2 - b * np.log(h2_storage_kg / 1000) + c + ) + cepci_overall = 1.29 / 1.30 + expected_capex = cepci_overall * capex_per_kg * h2_storage_kg + + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-6) == expected_capex + + +def test_pipe_storage_1M_kg(plant_config, subtests): + """Test underground pipe storage with 1M kg capacity matching original unit tests.""" + tech_config_dict = { + "model_inputs": { + "shared_parameters": { + "max_capacity": 1000000, + "max_charge_rate": 100000 / 24, # 100000 kg/day converted to kg/h + } + } + } + prob = om.Problem() + comp = PipeStorageCostModel( + plant_config=plant_config, + tech_config=tech_config_dict, + driver_config={}, + ) + prob.model.add_subsystem("sys", comp) + prob.setup() + prob.run_model() + + with subtests.test("CapEx"): + assert pytest.approx(prob.get_val("sys.CapEx")[0], rel=1e-5) == 508745483.851 + with subtests.test("OpEx"): + assert pytest.approx(prob.get_val("sys.OpEx")[0], rel=1e-5) == 16010851.734082155 + with subtests.test("VarOpEx"): + assert pytest.approx(np.sum(prob.get_val("sys.VarOpEx")), rel=1e-6) == 0.0 + with subtests.test("Cost year"): + assert prob.get_val("sys.cost_year") == 2018 diff --git a/h2integrate/storage/hydrogen/test/test_tol_mch_storage.py b/h2integrate/storage/hydrogen/test/test_tol_mch_storage.py index 7f703ae93..79dd90862 100644 --- a/h2integrate/storage/hydrogen/test/test_tol_mch_storage.py +++ b/h2integrate/storage/hydrogen/test/test_tol_mch_storage.py @@ -4,120 +4,6 @@ from pytest import approx, fixture from h2integrate.storage.hydrogen.mch_storage import MCHTOLStorageCostModel -from h2integrate.simulation.technologies.hydrogen.h2_storage.mch.mch_cost import MCHStorage - - -@fixture -def tol_mch_storage(): - # Test values are based on Supplementary Table 3 of - # https://doi.org/10.1038/s41467-024-53189-2 - Dc_tpd = 304 - Hc_tpd = 304 - As_tpy = 35000 - Ms_tpy = 16200 - in_dict = { - "max_H2_production_kg_pr_hr": (Hc_tpd + Dc_tpd) * 1e3 / 24, - "hydrogen_storage_capacity_kg": Ms_tpy * 1e3, - "hydrogen_demand_kg_pr_hr": Dc_tpd * 1e3 / 24, - "annual_hydrogen_stored_kg_pr_yr": As_tpy * 1e3, - } - - mch_storage = MCHStorage(**in_dict) - - return mch_storage - - -def test_init(): - # Test values are based on Supplementary Table 3 of - # https://doi.org/10.1038/s41467-024-53189-2 - Dc_tpd = 304 - Hc_tpd = 304 - As_tpy = 35000 - Ms_tpy = 16200 - in_dict = { - "max_H2_production_kg_pr_hr": (Hc_tpd + Dc_tpd) * 1e3 / 24, - "hydrogen_storage_capacity_kg": Ms_tpy * 1e3, - "hydrogen_demand_kg_pr_hr": Dc_tpd * 1e3 / 24, - "annual_hydrogen_stored_kg_pr_yr": As_tpy * 1e3, - } - mch_storage = MCHStorage(**in_dict) - - assert mch_storage.cost_year is not None - assert mch_storage.occ_coeff is not None - - -def test_sizing(tol_mch_storage, subtests): - # Test values are based on Supplementary Table 3 of - # https://doi.org/10.1038/s41467-024-53189-2 - Dc_tpd = 304 - Hc_tpd = 304 - As_tpy = 35000 - Ms_tpy = 16200 - with subtests.test("Dehydrogenation capacity"): - assert tol_mch_storage.Dc == approx(Dc_tpd, rel=1e-6) - with subtests.test("Hydrogenation capacity"): - assert tol_mch_storage.Hc == approx(Hc_tpd, rel=1e-6) - with subtests.test("Annual storage capacity"): - assert tol_mch_storage.As == approx(As_tpy, rel=1e-6) - with subtests.test("Maximum storage capacity"): - assert tol_mch_storage.Ms == approx(Ms_tpy, rel=1e-6) - - -def test_cost_calculation_methods(tol_mch_storage, subtests): - # Supplementary Table 3 - toc_actual = 639375591 - foc_actual = 10239180 - voc_actual = 17332229 - - max_cost_error_rel = 0.06 - capex = tol_mch_storage.calc_cost_value(*tol_mch_storage.occ_coeff) - fixed_om = tol_mch_storage.calc_cost_value(*tol_mch_storage.foc_coeff) - var_om = tol_mch_storage.calc_cost_value(*tol_mch_storage.voc_coeff) - with subtests.test("CapEx"): - assert capex == approx(toc_actual, rel=max_cost_error_rel) - with subtests.test("Fixed O&M"): - assert fixed_om == approx(foc_actual, rel=max_cost_error_rel) - with subtests.test("Variable O&M"): - assert var_om == approx(voc_actual, rel=max_cost_error_rel) - - -def test_run_costs(tol_mch_storage, subtests): - # Supplementary Table 3 - toc_actual = 639375591 - foc_actual = 10239180 - voc_actual = 17332229 - - max_cost_error_rel = 0.06 - cost_res = tol_mch_storage.run_costs() - - with subtests.test("CapEx"): - assert cost_res["mch_capex"] == approx(toc_actual, rel=max_cost_error_rel) - with subtests.test("Fixed O&M"): - assert cost_res["mch_opex"] == approx(foc_actual, rel=max_cost_error_rel) - with subtests.test("Variable O&M"): - assert cost_res["mch_variable_om"] == approx(voc_actual, rel=max_cost_error_rel) - - -def test_run_lcos(tol_mch_storage, subtests): - """ - This test is to highlight the difference between the LCOS when computed - using different methods from the same reference. - Specifically, the estimate_lcos and estimate_lcos_from_costs methods which - use Eq. 7 and Eq. 5 respectively from the source. - - Sources: - Breunig, H., Rosner, F., Saqline, S. et al. "Achieving gigawatt-scale green hydrogen - production and seasonal storage at industrial locations across the U.S." *Nat Commun* - **15**, 9049 (2024). https://doi.org/10.1038/s41467-024-53189-2 - """ - max_cost_error_rel = 0.06 - lcos_est = tol_mch_storage.estimate_lcos() - lcos_est_from_costs = tol_mch_storage.estimate_lcos_from_costs() - - with subtests.test("lcos equation"): - assert lcos_est == approx(2.05, rel=max_cost_error_rel) - with subtests.test("lcos equation from costs"): - assert lcos_est_from_costs == approx(2.05, rel=max_cost_error_rel) @fixture @@ -191,24 +77,6 @@ def test_mch_wrapper(plant_config, subtests): assert prob.get_val("sys.cost_year") == 2024 -def test_mch_ex1(subtests): - in_dict = { - "max_H2_production_kg_pr_hr": 14118.146788766157, - "hydrogen_storage_capacity_kg": 2081385.9326778147, - "hydrogen_demand_kg_pr_hr": 10775.824040553021, - "annual_hydrogen_stored_kg_pr_yr": 17878378.49459929, - } - mch_storage = MCHStorage(**in_dict) - cost_res = mch_storage.run_costs() - - with subtests.test("CapEx"): - assert pytest.approx(cost_res["mch_capex"], rel=1e-6) == 2.62304217 * 1e8 - with subtests.test("Fixed O&M"): - assert pytest.approx(cost_res["mch_opex"], rel=1e-6) == 7406935.548022923 - with subtests.test("Variable O&M"): - assert pytest.approx(cost_res["mch_variable_om"], rel=1e-6) == 9420636.00753175 - - def test_mch_wrapper_ex1(plant_config, subtests): # Ran Example 1 with MCH storage # Annual H2 Stored: 17878378.49459929 diff --git a/h2integrate/tools/eco/__init__.py b/h2integrate/tools/eco/__init__.py deleted file mode 100644 index 854517ca9..000000000 --- a/h2integrate/tools/eco/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from .electrolysis import * -from .finance import * -from .utilities import * diff --git a/h2integrate/tools/eco/electrolysis.py b/h2integrate/tools/eco/electrolysis.py deleted file mode 100644 index e53b408b2..000000000 --- a/h2integrate/tools/eco/electrolysis.py +++ /dev/null @@ -1,282 +0,0 @@ -import warnings -from pathlib import Path - -import numpy as np -import pandas as pd -import matplotlib.pyplot as plt -from matplotlib import ticker - -from h2integrate.tools.eco.utilities import ceildiv -from h2integrate.simulation.technologies.hydrogen.electrolysis.run_h2_PEM import run_h2_PEM -from h2integrate.simulation.technologies.hydrogen.electrolysis.pem_mass_and_footprint import ( - mass as run_electrolyzer_mass, - footprint as run_electrolyzer_footprint, -) - - -def run_electrolyzer_physics( - hopp_results, - h2integrate_config, - wind_resource, - design_scenario, - show_plots=False, - save_plots=False, - output_dir="./output/", - verbose=False, -): - if isinstance(output_dir, str): - output_dir = Path(output_dir).resolve() - electrolyzer_size_mw = h2integrate_config["electrolyzer"]["rating"] - electrolyzer_capex_kw = h2integrate_config["electrolyzer"]["electrolyzer_capex"] - - # IF GRID CONNECTED - if h2integrate_config["project_parameters"]["grid_connection"]: - # NOTE: if grid-connected, it assumes that hydrogen demand is input and there is not - # multi-cluster control strategies. This capability exists at the cluster level, not at the - # system level. - if h2integrate_config["electrolyzer"]["sizing"]["hydrogen_dmd"] is not None: - grid_connection_scenario = "grid-only" - hydrogen_production_capacity_required_kgphr = h2integrate_config["electrolyzer"][ - "sizing" - ]["hydrogen_dmd"] - energy_to_electrolyzer_kw = [] - else: - grid_connection_scenario = "off-grid" - hydrogen_production_capacity_required_kgphr = [] - energy_to_electrolyzer_kw = np.ones(8760) * electrolyzer_size_mw * 1e3 - # IF NOT GRID CONNECTED - else: - hydrogen_production_capacity_required_kgphr = [] - grid_connection_scenario = "off-grid" - energy_to_electrolyzer_kw = np.asarray( - hopp_results["combined_hybrid_power_production_hopp"] - ) - - n_pem_clusters = int( - ceildiv( - round(electrolyzer_size_mw, 1), h2integrate_config["electrolyzer"]["cluster_rating_MW"] - ) - ) - - electrolyzer_real_capacity_kW = ( - n_pem_clusters * h2integrate_config["electrolyzer"]["cluster_rating_MW"] * 1e3 - ) - - if np.abs(electrolyzer_real_capacity_kW - (electrolyzer_size_mw * 1e3)) > 1.0: - electrolyzer_real_capacity_mw = electrolyzer_real_capacity_kW / 1e3 - cluster_cap_mw = h2integrate_config["electrolyzer"]["cluster_rating_MW"] - msg = ( - f"setting electrolyzer capacity to {electrolyzer_real_capacity_mw} MW. " - f"Input value of {electrolyzer_size_mw:.2f} MW is not a " - f"multiple of cluster capacity ({cluster_cap_mw} MW)" - ) - warnings.warn(msg, UserWarning) - ## run using greensteel model - pem_param_dict = { - "eol_eff_percent_loss": h2integrate_config["electrolyzer"]["eol_eff_percent_loss"], - "uptime_hours_until_eol": h2integrate_config["electrolyzer"]["uptime_hours_until_eol"], - "include_degradation_penalty": h2integrate_config["electrolyzer"][ - "include_degradation_penalty" - ], - "turndown_ratio": h2integrate_config["electrolyzer"]["turndown_ratio"], - } - - if "water_usage_gal_pr_kg" in h2integrate_config["electrolyzer"]: - pem_param_dict.update( - {"water_usage_gal_pr_kg": h2integrate_config["electrolyzer"]["water_usage_gal_pr_kg"]} - ) - if "curve_coeff" in h2integrate_config["electrolyzer"]: - pem_param_dict.update({"curve_coeff": h2integrate_config["electrolyzer"]["curve_coeff"]}) - - if "time_between_replacement" in h2integrate_config["electrolyzer"]: - msg = ( - "`time_between_replacement` as an input is deprecated. It is now calculated internally" - " and is output in electrolyzer_physics_results['H2_Results']['Time Until Replacement" - " [hrs]']." - ) - warnings.warn(msg) - - H2_Results, h2_ts, h2_tot, power_to_electrolyzer_kw = run_h2_PEM( - electrical_generation_timeseries=energy_to_electrolyzer_kw, - electrolyzer_size=electrolyzer_size_mw, - useful_life=h2integrate_config["project_parameters"][ - "project_lifetime" - ], # EG: should be in years for full plant life - only used in financial model - n_pem_clusters=n_pem_clusters, - pem_control_type=h2integrate_config["electrolyzer"]["pem_control_type"], - electrolyzer_direct_cost_kw=electrolyzer_capex_kw, - user_defined_pem_param_dictionary=pem_param_dict, - grid_connection_scenario=grid_connection_scenario, # if not offgrid, assumes steady h2 demand in kgphr for full year # noqa: E501 - hydrogen_production_capacity_required_kgphr=hydrogen_production_capacity_required_kgphr, - debug_mode=False, - verbose=verbose, - ) - - # calculate mass and foorprint of system - mass_kg = run_electrolyzer_mass(electrolyzer_size_mw) - footprint_m2 = run_electrolyzer_footprint(electrolyzer_size_mw) - - # store results for return - H2_Results.update({"system capacity [kW]": electrolyzer_real_capacity_kW}) - electrolyzer_physics_results = { - "H2_Results": H2_Results, - "capacity_factor": H2_Results["Life: Capacity Factor"], - "equipment_mass_kg": mass_kg, - "equipment_footprint_m2": footprint_m2, - "power_to_electrolyzer_kw": power_to_electrolyzer_kw, - } - - if verbose: - print("\nElectrolyzer Physics:") # 61837444.34555772 145297297.29729727 - print( - "H2 Produced Annually (metric tons): ", - H2_Results["Life: Annual H2 production [kg/year]"] * 1e-3, - ) - print( - "Max H2 hourly (metric tons): ", - max(H2_Results["Hydrogen Hourly Production [kg/hr]"]) * 1e-3, - ) - print( - "Max H2 daily (metric tons): ", - max( - np.convolve( - H2_Results["Hydrogen Hourly Production [kg/hr]"], - np.ones(24), - mode="valid", - ) - ) - * 1e-3, - ) - - prodrate = 1.0 / round(H2_Results["Rated BOL: Efficiency [kWh/kg]"], 2) # kg/kWh - roughest = power_to_electrolyzer_kw * prodrate - print("Energy to electrolyzer (kWh): ", sum(power_to_electrolyzer_kw)) - print( - "Energy per kg (kWh/kg): ", - H2_Results["Sim: Total Input Power [kWh]"] / H2_Results["Sim: Total H2 Produced [kg]"], - ) - print("Max hourly based on est kg/kWh (kg): ", max(roughest)) - print( - "Max daily rough est (metric tons): ", - max(np.convolve(roughest, np.ones(24), mode="valid")) * 1e-3, - ) - print( - "Electrolyzer Life Average Capacity Factor: ", - H2_Results["Life: Capacity Factor"], - ) - - if save_plots or show_plots: - N = 24 * 7 * 4 - fig, ax = plt.subplots(3, 2, sharex=True, sharey="row") - - wind_speed = [W[2] for W in wind_resource._data["data"]] - - # plt.title("4-week running average") - pad = 5 - ax[0, 0].annotate( - "Hourly", - xy=(0.5, 1), - xytext=(0, pad), - xycoords="axes fraction", - textcoords="offset points", - size="large", - ha="center", - va="baseline", - ) - ax[0, 1].annotate( - "4-week running average", - xy=(0.5, 1), - xytext=(0, pad), - xycoords="axes fraction", - textcoords="offset points", - size="large", - ha="center", - va="baseline", - ) - - ax[0, 0].plot(wind_speed) - convolved_wind_speed = np.convolve(wind_speed, np.ones(N) / (N), mode="valid") - ave_x = range(N, len(convolved_wind_speed) + N) - - ax[0, 1].plot(ave_x, convolved_wind_speed) - ax[0, 0].set(ylabel="Wind\n(m/s)", ylim=[0, 30], xlim=[0, len(wind_speed)]) - tick_spacing = 10 - ax[0, 0].yaxis.set_major_locator(ticker.MultipleLocator(tick_spacing)) - - y = h2integrate_config["electrolyzer"]["rating"] - ax[1, 0].plot(energy_to_electrolyzer_kw * 1e-3) - ax[1, 0].axhline(y=y, color="r", linestyle="--", label="Nameplate Capacity") - - convolved_energy_to_electrolyzer = np.convolve( - energy_to_electrolyzer_kw * 1e-3, np.ones(N) / (N), mode="valid" - ) - - ax[1, 1].plot( - ave_x, - convolved_energy_to_electrolyzer, - ) - ax[1, 1].axhline(y=y, color="r", linestyle="--", label="Nameplate Capacity") - ax[1, 0].set(ylabel="Electrolyzer \nPower (MW)", ylim=[0, 500], xlim=[0, len(wind_speed)]) - # ax[1].legend(frameon=False, loc="best") - tick_spacing = 200 - ax[1, 0].yaxis.set_major_locator(ticker.MultipleLocator(tick_spacing)) - ax[1, 0].text(1000, y + 0.1 * tick_spacing, "Electrolyzer Rating", color="r") - - ax[2, 0].plot( - electrolyzer_physics_results["H2_Results"]["Hydrogen Hourly Production [kg/hr]"] * 1e-3 - ) - convolved_hydrogen_production = np.convolve( - electrolyzer_physics_results["H2_Results"]["Hydrogen Hourly Production [kg/hr]"] * 1e-3, - np.ones(N) / (N), - mode="valid", - ) - ax[2, 1].plot( - ave_x, - convolved_hydrogen_production, - ) - tick_spacing = 2 - ax[2, 0].set( - xlabel="Hour", - ylabel="Hydrogen\n(metric tons/hr)", - # ylim=[0, 7000], - xlim=[0, len(H2_Results["Hydrogen Hourly Production [kg/hr]"])], - ) - ax[2, 0].yaxis.set_major_locator(ticker.MultipleLocator(tick_spacing)) - - ax[2, 1].set( - xlabel="Hour", - # ylim=[0, 7000], - xlim=[ - 4 * 7 * 24 - 1, - len(H2_Results["Hydrogen Hourly Production [kg/hr]"] + 4 * 7 * 24 + 2), - ], - ) - ax[2, 1].yaxis.set_major_locator(ticker.MultipleLocator(tick_spacing)) - - plt.tight_layout() - if save_plots: - savepaths = [ - output_dir / "figures/production/", - output_dir / "data/", - ] - for savepath in savepaths: - if not savepath.exists(): - savepath.mkdir(parents=True) - plt.savefig( - savepaths[0] / f"production_overview_{design_scenario['id']}.png", - transparent=True, - ) - pd.DataFrame.from_dict( - data={ - "Hydrogen Hourly Production [kg/hr]": H2_Results[ - "Hydrogen Hourly Production [kg/hr]" - ], - "Hourly Water Consumption [kg/hr]": electrolyzer_physics_results["H2_Results"][ - "Water Hourly Consumption [kg/hr]" - ], - } - ).to_csv(savepaths[1] / f"h2_flow_{design_scenario['id']}.csv") - if show_plots: - plt.show() - - return electrolyzer_physics_results diff --git a/h2integrate/tools/eco/finance.py b/h2integrate/tools/eco/finance.py deleted file mode 100644 index ccd89018e..000000000 --- a/h2integrate/tools/eco/finance.py +++ /dev/null @@ -1,1844 +0,0 @@ -from __future__ import annotations - -from pathlib import Path - -import numpy as np -import pandas as pd -import ProFAST # system financial model -import numpy_financial as npf -from attrs import field, define -from ORBIT import ProjectManager -from hopp.simulation import HoppInterface - - -def adjust_dollar_year(init_cost, init_dollar_year, adj_cost_year, costing_general_inflation): - """Adjust cost based on inflation. - - Args: - init_cost (dict, float, int, list, np.ndarrray): cost of item ($) - init_dollar_year (int): dollar-year of init_cost - adj_cost_year (int): dollar-year to adjust cost to - costing_general_inflation (float): inflation rate (%) - - Returns: - same type as init_cost: cost in dollar-year of adj_cost_year - """ - periods = adj_cost_year - init_dollar_year - if isinstance(init_cost, (float, int)): - adj_cost = -npf.fv(costing_general_inflation, periods, 0.0, init_cost) - elif isinstance(init_cost, dict): - adj_cost = {} - for key, val in init_cost.items(): - new_val = -npf.fv(costing_general_inflation, periods, 0.0, val) - adj_cost.update({key: new_val}) - elif isinstance(init_cost, (list, np.ndarray)): - adj_cost = np.zeros(len(init_cost)) - for i in range(len(init_cost)): - adj_cost[i] = -npf.fv(costing_general_inflation, periods, 0.0, init_cost[i]) - if isinstance(init_cost, list): - adj_cost = list(adj_cost) - - return adj_cost - - -@define -class WindCostConfig: - """ - Represents the inputs to the wind cost models - - Attributes: - design_scenario (Dict[str, str]): - Definition of plant subsystem locations (e.g. onshore platform, offshore, none, etc) - hopp_config (Dict[str, float]): - Configuration parameters for HOPP - h2integrate_config (Dict[str, float]): - Configuration parameters for H2Integrate - orbit_config (Dict[str, float], optional): - Required input structure for ORBIT - turbine_config (Dict[str, float], optional): - Configuration parameters specific to turbine - orbit_hybrid_electrical_export_config (Dict[str, float], optional): - Configuration parameters for hybrid electrical export in ORBIT, required if using a - different substation size for the hybrid plant than for the wind plant alone - weather (Union[list, tuple, numpy.ndarray], optional): - Array-like of wind speeds for ORBIT to use in determining installation time and costs - """ - - design_scenario: dict[str, str] - hopp_config: dict[str, float] - h2integrate_config: dict[str, float] - orbit_config: dict[str, float] | None = field(default={}) - turbine_config: dict[str, float] | None = field(default={}) - orbit_hybrid_electrical_export_config: dict[str, float] | None = field(default={}) - weather: list | tuple | np.ndarray | None = field(default=None) - hopp_interface: HoppInterface | None = field(default=None) - - -@define -class WindCostOutputs: - """ - Represents the outputs to the wind cost models. - - Attributes: - total_wind_cost_no_export (float): - Total wind cost without export system costs - total_used_export_system_costs (float): - Total used export system costs - annual_operating_cost_wind (float): - Annual operating cost for wind - installation_time (float, optional): - Estimated installation time in months (default: 0.0) - orbit_project (dict, optional): - Details of the ORBIT project (default: None) - """ - - total_wind_cost_no_export: float - annual_operating_cost_wind: float - installation_time: float = field(default=0.0) - total_used_export_system_costs: float | None = field(default=0.0) - orbit_project: dict | ProjectManager | None = field(default=None) - - -def run_wind_cost_model(wind_cost_inputs: WindCostConfig, verbose=False) -> WindCostOutputs: - if wind_cost_inputs.design_scenario["wind_location"] == "offshore": - # if per kw - project, orbit_hybrid_electrical_export_project = run_orbit( - wind_cost_inputs.orbit_config, - verbose=verbose, - weather=wind_cost_inputs.weather, - orbit_hybrid_electrical_export_config=wind_cost_inputs.orbit_hybrid_electrical_export_config, - ) - - ( - total_wind_cost_no_export, - total_used_export_system_costs, - ) = breakout_export_costs_from_orbit_results( - project, - wind_cost_inputs.h2integrate_config, - wind_cost_inputs.design_scenario, - ) - - if orbit_hybrid_electrical_export_project is not None: - ( - _, - total_used_export_system_costs, - ) = breakout_export_costs_from_orbit_results( - orbit_hybrid_electrical_export_project, - wind_cost_inputs.h2integrate_config, - wind_cost_inputs.design_scenario, - ) - - # WIND ONLY Total O&M expenses including fixed, variable, and capacity-based, $/year - # use values from hybrid substation if a hybrid plant - if orbit_hybrid_electrical_export_project is None: - annual_operating_cost_wind = ( - max(project.monthly_opex.values()) * 12 - ) # np.average(hopp_results["hybrid_plant"].wind.om_total_expense) - - else: - annual_operating_cost_wind = ( - max(orbit_hybrid_electrical_export_project.monthly_opex.values()) * 12 - ) - - if "installation_time" in wind_cost_inputs.h2integrate_config["project_parameters"]: - installation_time = wind_cost_inputs.h2integrate_config["project_parameters"][ - "installation_time" - ] - else: - installation_time = (project.installation_time / (365 * 24)) * (12.0 / 1.0) - - # if total amount - # TODO - return WindCostOutputs( - total_wind_cost_no_export=total_wind_cost_no_export, - total_used_export_system_costs=total_used_export_system_costs, - annual_operating_cost_wind=annual_operating_cost_wind, - installation_time=installation_time, - orbit_project=project, - ) - elif wind_cost_inputs.design_scenario["wind_location"] == "onshore": - total_wind_cost_no_export = ( - wind_cost_inputs.hopp_config["config"]["cost_info"]["wind_installed_cost_mw"] - * wind_cost_inputs.hopp_config["technologies"]["wind"]["num_turbines"] - * wind_cost_inputs.turbine_config["turbine_rating"] - ) - - annual_operating_cost_wind = wind_cost_inputs.hopp_interface.system.wind.om_total_expense[0] - - if "installation_time" in wind_cost_inputs.h2integrate_config["project_parameters"]: - installation_time = wind_cost_inputs.h2integrate_config["project_parameters"][ - "installation_time" - ] - else: - installation_time = 0 - - return WindCostOutputs( - total_wind_cost_no_export=total_wind_cost_no_export, - annual_operating_cost_wind=annual_operating_cost_wind, - installation_time=installation_time, - ) - else: - raise ValueError( - "Wind design location must either be 'onshore' or 'offshore', but currently " - f"'wind_location' is set to {wind_cost_inputs.design_scenario['wind_location']}." - ) - - -# Function to run orbit from provided inputs - this is just for wind costs -def run_orbit(orbit_config, verbose=False, weather=None, orbit_hybrid_electrical_export_config={}): - # set up ORBIT - project = ProjectManager(orbit_config, weather=weather) - - # run ORBIT - project.run(availability=orbit_config["installation_availability"]) - - # run ORBIT for hybrid substation if applicable - if orbit_hybrid_electrical_export_config == {}: - hybrid_substation_project = None - else: - hybrid_substation_project = ProjectManager( - orbit_hybrid_electrical_export_config, weather=weather - ) - hybrid_substation_project.run(availability=orbit_config["installation_availability"]) - - # print results if desired - if verbose: - print(f"Installation CapEx: {project.installation_capex/1e6:.0f} M") - print(f"System CapEx: {project.system_capex/1e6:.0f} M") - print(f"Turbine CapEx: {project.turbine_capex/1e6:.0f} M") - print(f"Soft CapEx: {project.soft_capex/1e6:.0f} M") - print(f"Total CapEx: {project.total_capex/1e6:.0f} M") - print(f"Annual OpEx Rate: {max(project.monthly_opex.values())*12:.0f} ") - print(f"\nInstallation Time: {project.installation_time:.0f} h") - print("\nN Substations: ", (project.phases["ElectricalDesign"].num_substations)) - print("N cables: ", (project.phases["ElectricalDesign"].num_cables)) - print("\n") - - # cable cost breakdown - print("Cable specific costs") - print( - "Export cable installation CAPEX: %.2f M USD" - % (project.phases["ExportCableInstallation"].installation_capex * 1e-6) - ) - print("\n") - - return project, hybrid_substation_project - - -def adjust_orbit_costs(orbit_project, h2integrate_config): - if ("expected_plant_cost" in h2integrate_config["finance_parameters"]["wind"]) and ( - h2integrate_config["finance_parameters"]["wind"]["expected_plant_cost"] != "none" - ): - wind_capex_multiplier = ( - h2integrate_config["finance_parameters"]["wind"]["expected_plant_cost"] * 1e9 - ) / orbit_project.total_capex - else: - wind_capex_multiplier = 1.0 - - wind_total_capex = orbit_project.total_capex * wind_capex_multiplier - wind_capex_breakdown = orbit_project.capex_breakdown - for key in wind_capex_breakdown.keys(): - wind_capex_breakdown[key] *= wind_capex_multiplier - - return wind_total_capex, wind_capex_breakdown, wind_capex_multiplier - - -def breakout_export_costs_from_orbit_results(orbit_project, h2integrate_config, design_scenario): - # adjust wind capex to meet expectations - wind_total_capex, wind_capex_breakdown, wind_capex_multiplier = adjust_orbit_costs( - orbit_project=orbit_project, h2integrate_config=h2integrate_config - ) - - # onshore substation cost not included in ORBIT costs by default, so add it separately - total_wind_installed_costs_with_export = wind_total_capex - - # breakout export system costs - array_cable_equipment_cost = wind_capex_breakdown["Array System"] - array_cable_installation_cost = wind_capex_breakdown["Array System Installation"] - total_array_cable_system_capex = array_cable_equipment_cost + array_cable_installation_cost - - export_cable_equipment_cost = wind_capex_breakdown[ - "Export System" - ] # this should include the onshore substation - export_cable_installation_cost = wind_capex_breakdown["Export System Installation"] - substation_equipment_cost = wind_capex_breakdown["Offshore Substation"] - substation_installation_cost = wind_capex_breakdown["Offshore Substation Installation"] - total_export_cable_system_capex = export_cable_equipment_cost + export_cable_installation_cost - - total_offshore_substation_capex = substation_equipment_cost + substation_installation_cost - - total_electrical_export_system_cost = ( - total_array_cable_system_capex - + total_offshore_substation_capex - + total_export_cable_system_capex - ) - - ## adjust wind cost to remove export - if design_scenario["transportation"] == "hvdc+pipeline": - unused_export_system_cost = 0.0 - elif ( - design_scenario["electrolyzer_location"] == "turbine" - and design_scenario["h2_storage_location"] == "turbine" - ): - unused_export_system_cost = ( - total_array_cable_system_capex - + total_export_cable_system_capex - + total_offshore_substation_capex - ) - elif ( - design_scenario["electrolyzer_location"] == "turbine" - and design_scenario["h2_storage_location"] == "platform" - ): - unused_export_system_cost = total_export_cable_system_capex # TODO check assumptions here - elif ( - design_scenario["electrolyzer_location"] == "platform" - and design_scenario["h2_storage_location"] == "platform" - ): - unused_export_system_cost = total_export_cable_system_capex # TODO check assumptions here - elif ( - design_scenario["electrolyzer_location"] == "platform" - or design_scenario["electrolyzer_location"] == "turbine" - ) and design_scenario["h2_storage_location"] == "onshore": - unused_export_system_cost = total_export_cable_system_capex # TODO check assumptions here - else: - unused_export_system_cost = 0.0 - - total_used_export_system_costs = total_electrical_export_system_cost - unused_export_system_cost - - total_wind_cost_no_export = ( - total_wind_installed_costs_with_export - total_used_export_system_costs - ) - - return total_wind_cost_no_export, total_used_export_system_costs - - -def run_capex( - hopp_results, - wind_cost_results, - electrolyzer_cost_results, - h2_pipe_array_results, - h2_transport_compressor_results, - h2_transport_pipe_results, - h2_storage_results, - hopp_config, - h2integrate_config, - design_scenario, - desal_results, - platform_results, - verbose=False, -): - # total_wind_cost_no_export, total_used_export_system_costs = breakout_export_costs_from_orbit_results(orbit_project, h2integrate_config, design_scenario) # noqa: E501 - - # if orbit_hybrid_electrical_export_project is not None: - # _, total_used_export_system_costs = breakout_export_costs_from_orbit_results(orbit_hybrid_electrical_export_project, h2integrate_config, design_scenario) # noqa: E501 - - # wave capex - if hopp_config["site"]["wave"]: - cost_dict = hopp_results["hybrid_plant"].wave.mhk_costs.cost_outputs - - wcapex = ( - cost_dict["structural_assembly_cost_modeled"] - + cost_dict["power_takeoff_system_cost_modeled"] - + cost_dict["mooring_found_substruc_cost_modeled"] - ) - wbos = ( - cost_dict["development_cost_modeled"] - + cost_dict["eng_and_mgmt_cost_modeled"] - + cost_dict["plant_commissioning_cost_modeled"] - + cost_dict["site_access_port_staging_cost_modeled"] - + cost_dict["assembly_and_install_cost_modeled"] - + cost_dict["other_infrastructure_cost_modeled"] - ) - welec_infrastruc_costs = ( - cost_dict["array_cable_system_cost_modeled"] - + cost_dict["export_cable_system_cost_modeled"] - + cost_dict["other_elec_infra_cost_modeled"] - ) # +\ - # cost_dict['onshore_substation_cost_modeled']+\ - # cost_dict['offshore_substation_cost_modeled'] - # financial = cost_dict['project_contingency']+\ - # cost_dict['insurance_during_construction']+\ - # cost_dict['reserve_accounts'] - wave_capex = wcapex + wbos + welec_infrastruc_costs - else: - wave_capex = 0.0 - - # solar capex - if "pv" in hopp_config["technologies"].keys(): - solar_capex = hopp_results["hybrid_plant"].pv.total_installed_cost - else: - solar_capex = 0.0 - - # battery capex - if "battery" in hopp_config["technologies"].keys(): - battery_capex = hopp_results["hybrid_plant"].battery.total_installed_cost - else: - battery_capex = 0.0 - - # TODO bos capex - # bos_capex = hopp_results["hybrid_plant"].bos.total_installed_cost - - ## desal capex - if desal_results is not None: - desal_capex = desal_results["desal_capex_usd"] - else: - desal_capex = 0.0 - - ## electrolyzer capex - electrolyzer_total_capital_cost = electrolyzer_cost_results["electrolyzer_total_capital_cost"] - - if ( - design_scenario["electrolyzer_location"] == "platform" - or design_scenario["h2_storage_location"] == "platform" - or hopp_config["site"]["solar"] - ): - platform_costs = platform_results["capex"] - else: - platform_costs = 0.0 - - # h2 transport - h2_transport_compressor_capex = h2_transport_compressor_results["compressor_capex"] - h2_transport_pipe_capex = h2_transport_pipe_results["total capital cost [$]"][0] - - ## h2 storage - if h2integrate_config["h2_storage"]["type"] == "none": - h2_storage_capex = 0.0 - elif ( - h2integrate_config["h2_storage"]["type"] == "pipe" - ): # ug pipe storage model includes compression - h2_storage_capex = h2_storage_results["storage_capex"] - elif ( - h2integrate_config["h2_storage"]["type"] == "turbine" - ): # ug pipe storage model includes compression - h2_storage_capex = h2_storage_results["storage_capex"] - elif ( - h2integrate_config["h2_storage"]["type"] == "pressure_vessel" - ): # pressure vessel storage model includes compression - h2_storage_capex = h2_storage_results["storage_capex"] - elif ( - h2integrate_config["h2_storage"]["type"] == "salt_cavern" - ): # salt cavern storage model includes compression - h2_storage_capex = h2_storage_results["storage_capex"] - elif ( - h2integrate_config["h2_storage"]["type"] == "lined_rock_cavern" - ): # lined rock cavern storage model includes compression - h2_storage_capex = h2_storage_results["storage_capex"] - else: - msg = ( - f'the storage type you have indicated ({h2integrate_config["h2_storage"]["type"]}) ' - 'has not been implemented.' - ) - raise NotImplementedError(msg) - - # store capex component breakdown - capex_breakdown = { - "wind": wind_cost_results.total_wind_cost_no_export, - "wave": wave_capex, - "solar": solar_capex, - "battery": battery_capex, - "platform": platform_costs, - "electrical_export_system": wind_cost_results.total_used_export_system_costs, - "desal": desal_capex, - "electrolyzer": electrolyzer_total_capital_cost, - "h2_pipe_array": h2_pipe_array_results["capex"], - "h2_transport_compressor": h2_transport_compressor_capex, - "h2_transport_pipeline": h2_transport_pipe_capex, - "h2_storage": h2_storage_capex, - } - - # discount capex to appropriate year for unified costing - for key in capex_breakdown.keys(): - if key == "h2_storage": - # if design_scenario["h2_storage_location"] == "turbine" and h2integrate_config["h2_storage"]["type"] == "turbine": # noqa: E501 - # cost_year = h2integrate_config["finance_parameters"]["discount_years"][key][ - # design_scenario["h2_storage_location"] - # ] - # else: - cost_year = h2integrate_config["finance_parameters"]["discount_years"][key][ - h2integrate_config["h2_storage"]["type"] - ] - else: - cost_year = h2integrate_config["finance_parameters"]["discount_years"][key] - - capex_breakdown[key] = adjust_dollar_year( - capex_breakdown[key], - cost_year, - h2integrate_config["project_parameters"]["cost_year"], - h2integrate_config["finance_parameters"]["costing_general_inflation"], - ) - - total_system_installed_cost = sum(capex_breakdown[key] for key in capex_breakdown.keys()) - - if verbose: - print("\nCAPEX Breakdown") - for key in capex_breakdown.keys(): - print(key, "%.2f" % (capex_breakdown[key] * 1e-6), " M") - - print( - "\nTotal system CAPEX: ", - "$%.2f" % (total_system_installed_cost * 1e-9), - " B", - ) - - return total_system_installed_cost, capex_breakdown - - -def run_fixed_opex( - hopp_results, - wind_cost_results, - electrolyzer_cost_results, - h2_pipe_array_results, - h2_transport_compressor_results, - h2_transport_pipe_results, - h2_storage_results, - hopp_config, - h2integrate_config, - desal_results, - platform_results, - verbose=False, - total_export_system_cost=0, -): - # WIND ONLY Total O&M expenses including fixed, variable, and capacity-based, $/year - # use values from hybrid substation if a hybrid plant - # if orbit_hybrid_electrical_export_project is None: - - # wave opex - if hopp_config["site"]["wave"]: - cost_dict = hopp_results["hybrid_plant"].wave.mhk_costs.cost_outputs - wave_opex = cost_dict["maintenance_cost"] + cost_dict["operations_cost"] - else: - wave_opex = 0.0 - - # solar opex - if "pv" in hopp_config["technologies"].keys(): - solar_opex = hopp_results["hybrid_plant"].pv.om_total_expense[0] - if solar_opex < 0.1: - raise (RuntimeWarning(f"Solar OPEX returned as {solar_opex}")) - else: - solar_opex = 0.0 - - # battery opex - if "battery" in hopp_config["technologies"].keys(): - battery_opex = hopp_results["hybrid_plant"].battery.om_total_expense[0] - if battery_opex < 0.1: - raise (RuntimeWarning(f"Battery OPEX returned as {battery_opex}")) - else: - battery_opex = 0.0 - - # H2 OPEX - platform_operating_costs = platform_results["opex"] # TODO update this - - annual_operating_cost_h2 = electrolyzer_cost_results["electrolyzer_OM_cost_annual"] - - h2_transport_compressor_opex = h2_transport_compressor_results["compressor_opex"] # annual - - h2_transport_pipeline_opex = h2_transport_pipe_results["annual operating cost [$]"][0] # annual - - storage_opex = h2_storage_results["storage_opex"] - # desal OPEX - if desal_results is not None: - desal_opex = desal_results["desal_opex_usd_per_year"] - else: - desal_opex = 0.0 - annual_operating_cost_desal = desal_opex - - # store opex component breakdown - opex_breakdown_annual = { - "wind_and_electrical": wind_cost_results.annual_operating_cost_wind, - "platform": platform_operating_costs, - # "electrical_export_system": total_export_om_cost, - "wave": wave_opex, - "solar": solar_opex, - "battery": battery_opex, - "desal": annual_operating_cost_desal, - "electrolyzer": annual_operating_cost_h2, - "h2_pipe_array": h2_pipe_array_results["opex"], - "h2_transport_compressor": h2_transport_compressor_opex, - "h2_transport_pipeline": h2_transport_pipeline_opex, - "h2_storage": storage_opex, - } - - # discount opex to appropriate year for unified costing - for key in opex_breakdown_annual.keys(): - if key == "h2_storage": - cost_year = h2integrate_config["finance_parameters"]["discount_years"][key][ - h2integrate_config["h2_storage"]["type"] - ] - else: - cost_year = h2integrate_config["finance_parameters"]["discount_years"][key] - - opex_breakdown_annual[key] = adjust_dollar_year( - opex_breakdown_annual[key], - cost_year, - h2integrate_config["project_parameters"]["cost_year"], - h2integrate_config["finance_parameters"]["costing_general_inflation"], - ) - - # Calculate the total annual OPEX of the installed system - total_annual_operating_costs = sum(opex_breakdown_annual.values()) - - if verbose: - print("\nAnnual OPEX Breakdown") - for key in opex_breakdown_annual.keys(): - print(key, "%.2f" % (opex_breakdown_annual[key] * 1e-6), " M") - - print( - "\nTotal Annual OPEX: ", - "$%.2f" % (total_annual_operating_costs * 1e-6), - " M", - ) - print(opex_breakdown_annual) - return total_annual_operating_costs, opex_breakdown_annual - - -def run_variable_opex( - electrolyzer_cost_results, - h2integrate_config, -): - """calculate variable O&M in $/kg-H2. - - Args: - electrolyzer_cost_results (dict): output of - h2integrate.tools.eco.electrolysis.run_electrolyzer_cost - h2integrate_config (:obj:`h2integrate_simulation.H2IntegrateSimulationConfig`): H2Integrate - simulation config. - - Returns: - dict: dictionary of components and corresponding variable O&M in $/kg-H2 for - adjusted for inflation so cost is in dollar-year corresponding to - `h2integrate_config["project_parameters"]["cost_year"]` - """ - electrolyzer_vom = electrolyzer_cost_results["electrolyzer_variable_OM_annual"] - - vopex_breakdown_annual = {"electrolyzer": electrolyzer_vom} - - for key in vopex_breakdown_annual.keys(): - cost_year = h2integrate_config["finance_parameters"]["discount_years"][key] - vopex_breakdown_annual[key] = adjust_dollar_year( - vopex_breakdown_annual[key], - cost_year, - h2integrate_config["project_parameters"]["cost_year"], - h2integrate_config["finance_parameters"]["costing_general_inflation"], - ) - return vopex_breakdown_annual - - -def calc_financial_parameter_weighted_average_by_capex( - parameter_name: str, h2integrate_config: dict, capex_breakdown: dict -) -> float: - """Allows the user to provide individual financial parameters for each technology in the system. - The values given will be weighted by their CAPEX values to determine the final - weighted-average parameter value to be supplied to the financial model. If only one - technology has a unique parameter value, a "general" parameter value in the dictionary and - that will be used for all technologies not specified individually. - - Args: - parameter_name (str): The name of the parameter to be weighted by capex. The name should - correspond to the name in the h2integrate config - h2integrate_config (dict): Dictionary form of the h2integrate config - capex_breakdown (dict): Output from `run_capex`, a dictionary of all capital items for - the financial model - - Returns: - parameter_value (float): if the parameter in the h2integrate config is given as a - dictionary, then the weighted average by capex parameter value is returnd. Otherwise no - averaging is done and the value of the parameter in the h2integrate_config is returned. - """ - - if type(h2integrate_config["finance_parameters"][parameter_name]) is not dict: - # if only one value is given for the parameter, use that value - parameter_value = h2integrate_config["finance_parameters"][parameter_name] - - else: - # assign capex amounts as weights - weights = np.array(list(capex_breakdown.values())) - - # initialize value array - values = np.zeros_like(weights) - - # assign values - for i, key in enumerate(capex_breakdown.keys()): - if key in h2integrate_config["finance_parameters"][parameter_name].keys(): - values[i] = h2integrate_config["finance_parameters"][parameter_name][key] - elif capex_breakdown[key] == 0.0: - values[i] = 0.0 - else: - values[i] = h2integrate_config["finance_parameters"][parameter_name]["general"] - - # calcuated weighted average parameter value - parameter_value = np.average(values, weights=weights) - return parameter_value - - -def run_profast_lcoe( - h2integrate_config, - wind_cost_results, - capex_breakdown, - opex_breakdown, - hopp_results, - incentive_option, - design_scenario, - verbose=False, - show_plots=False, - save_plots=False, - output_dir="./output/", -): - if isinstance(output_dir, str): - output_dir = Path(output_dir).resolve() - gen_inflation = h2integrate_config["finance_parameters"]["inflation_rate"] - - # initialize dictionary of weights for averaging financial parameters - finance_param_weights = {} - - if ( - design_scenario["h2_storage_location"] == "onshore" - or design_scenario["electrolyzer_location"] == "onshore" - ): - if "land_cost" in h2integrate_config["finance_parameters"]: - land_cost = h2integrate_config["finance_parameters"]["land_cost"] - else: - land_cost = 1e6 # TODO should model this - else: - land_cost = 0.0 - - pf = ProFAST.ProFAST() - pf.set_params( - "commodity", - { - "name": "electricity", - "unit": "kWh", - "initial price": 100, - "escalation": gen_inflation, - }, - ) - pf.set_params( - "capacity", - np.sum(hopp_results["combined_hybrid_power_production_hopp"]) / 365.0, - ) # kWh/day - pf.set_params("maintenance", {"value": 0, "escalation": gen_inflation}) - pf.set_params( - "analysis start year", - h2integrate_config["project_parameters"]["financial_analysis_start_year"], - ) - pf.set_params("operating life", h2integrate_config["project_parameters"]["project_lifetime"]) - pf.set_params( - "installation months", h2integrate_config["project_parameters"]["installation_time"] - ) - pf.set_params( - "installation cost", - { - "value": 0, - "depr type": "Straight line", - "depr period": 4, - "depreciable": False, - }, - ) - if land_cost > 0: - pf.set_params("non depr assets", land_cost) - pf.set_params( - "end of proj sale non depr assets", - land_cost - * (1 + gen_inflation) ** h2integrate_config["project_parameters"]["project_lifetime"], - ) - pf.set_params("demand rampup", 0) - pf.set_params("long term utilization", 1) - pf.set_params("credit card fees", 0) - pf.set_params("sales tax", h2integrate_config["finance_parameters"]["sales_tax_rate"]) - pf.set_params("license and permit", {"value": 00, "escalation": gen_inflation}) - pf.set_params("rent", {"value": 0, "escalation": gen_inflation}) - pf.set_params( - "property tax and insurance", - h2integrate_config["finance_parameters"]["property_tax"] - + h2integrate_config["finance_parameters"]["property_insurance"], - ) - pf.set_params( - "admin expense", - h2integrate_config["finance_parameters"]["administrative_expense_percent_of_sales"], - ) - pf.set_params( - "total income tax rate", - h2integrate_config["finance_parameters"]["total_income_tax_rate"], - ) - pf.set_params( - "capital gains tax rate", - h2integrate_config["finance_parameters"]["capital_gains_tax_rate"], - ) - pf.set_params("sell undepreciated cap", True) - pf.set_params("tax losses monetized", True) - pf.set_params("general inflation rate", gen_inflation) - - pf.set_params("debt type", h2integrate_config["finance_parameters"]["debt_type"]) - pf.set_params("loan period if used", h2integrate_config["finance_parameters"]["loan_period"]) - - pf.set_params("cash onhand", h2integrate_config["finance_parameters"]["cash_onhand_months"]) - - # ----------------------------------- Add capital items to ProFAST ---------------- - if "wind" in capex_breakdown.keys(): - pf.add_capital_item( - name="Wind system", - cost=capex_breakdown["wind"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["wind"] = capex_breakdown["wind"] - if "wave" in capex_breakdown.keys(): - pf.add_capital_item( - name="Wave system", - cost=capex_breakdown["wave"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["wave"] = capex_breakdown["wave"] - if "solar" in capex_breakdown.keys(): - pf.add_capital_item( - name="Solar PV system", - cost=capex_breakdown["solar"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["solar"] = capex_breakdown["solar"] - if "battery" in capex_breakdown.keys(): - pf.add_capital_item( - name="Battery system", - cost=capex_breakdown["battery"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["battery"] = capex_breakdown["battery"] - if design_scenario["transportation"] == "hvdc+pipeline" or not ( - design_scenario["electrolyzer_location"] == "turbine" - and design_scenario["h2_storage_location"] == "turbine" - ): - pf.add_capital_item( - name="Electrical export system", - cost=capex_breakdown["electrical_export_system"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["electrical_export_system"] = capex_breakdown[ - "electrical_export_system" - ] - # -------------------------------------- Add fixed costs-------------------------------- - pf.add_fixed_cost( - name="Wind and electrical fixed O&M cost", - usage=1.0, - unit="$/year", - cost=opex_breakdown["wind_and_electrical"], - escalation=gen_inflation, - ) - - if "wave" in opex_breakdown.keys(): - pf.add_fixed_cost( - name="Wave O&M cost", - usage=1.0, - unit="$/year", - cost=opex_breakdown["wave"], - escalation=gen_inflation, - ) - - if "solar" in opex_breakdown.keys(): - pf.add_fixed_cost( - name="Solar O&M cost", - usage=1.0, - unit="$/year", - cost=opex_breakdown["solar"], - escalation=gen_inflation, - ) - - if "battery" in opex_breakdown.keys(): - pf.add_fixed_cost( - name="Battery O&M cost", - usage=1.0, - unit="$/year", - cost=opex_breakdown["battery"], - escalation=gen_inflation, - ) - - # ------------------------------------- add incentives ----------------------------------- - """ - Note: ptc units must be given to ProFAST in terms of dollars per unit of the primary commodity - being produced - - Note: full tech-nutral (wind) tax credits are no longer available if constructions starts after - Jan. 1 2034 (Jan 1. 2033 for h2 ptc) - """ - - # catch incentive option and add relevant incentives - incentive_dict = h2integrate_config["policy_parameters"][f"option{incentive_option}"] - # add electricity_ptc ($/kW) - # adjust from 1992 dollars to start year - wind_ptc_in_dollars_per_kw = -npf.fv( - h2integrate_config["finance_parameters"]["costing_general_inflation"], - h2integrate_config["project_parameters"]["financial_analysis_start_year"] - + round(wind_cost_results.installation_time / 12) - - 1992, - 0, - incentive_dict["electricity_ptc"], - ) # given in 1992 dollars but adjust for inflation - - pf.add_incentive( - name="Electricity PTC", - value=wind_ptc_in_dollars_per_kw, - decay=-gen_inflation, - sunset_years=10, - tax_credit=True, - ) # TODO check decay - - # ----------------------- Add weight-averaged parameters ----------------------- - - equity_discount_rate = calc_financial_parameter_weighted_average_by_capex( - parameter_name="discount_rate", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "leverage after tax nominal discount rate", - equity_discount_rate, - ) - - debt_interest_rate = calc_financial_parameter_weighted_average_by_capex( - parameter_name="debt_interest_rate", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "debt interest rate", - debt_interest_rate, - ) - - if "debt_equity_split" in h2integrate_config["finance_parameters"].keys(): - debt_equity_split = calc_financial_parameter_weighted_average_by_capex( - parameter_name="debt_equity_split", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "debt equity ratio of initial financing", - (debt_equity_split / (100 - debt_equity_split)), - ) - elif "debt_equity_ratio" in h2integrate_config["finance_parameters"].keys(): - debt_equity_ratio = calc_financial_parameter_weighted_average_by_capex( - parameter_name="debt_equity_ratio", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "debt equity ratio of initial financing", - debt_equity_ratio, - ) - else: - msg = ( - "missing value in `finance_parameters`. " - "Requires either `debt_equity_ratio` or `debt_equity_split`" - ) - raise ValueError(msg) - - # ---------------------- Run ProFAST ------------------------------------------- - sol = pf.solve_price() - - lcoe = sol["price"] - - if verbose: - print("\nProFAST LCOE: ", "%.2f" % (lcoe * 1e3), "$/MWh") - - # -------------------------- Plots --------------------------------------------- - if show_plots or save_plots: - savepath = output_dir / "figures/wind_only" - if not savepath.exists(): - savepath.mkdir(parents=True) - pf.plot_costs_yearly( - per_kg=False, - scale="M", - remove_zeros=True, - remove_depreciation=False, - fileout=savepath / f'annual_cash_flow_wind_only_{design_scenario["id"]}.png', - show_plot=show_plots, - ) - pf.plot_costs_yearly2( - per_kg=False, - scale="M", - remove_zeros=True, - remove_depreciation=False, - fileout=savepath / f'annual_cash_flow_wind_only_{design_scenario["id"]}.html', - show_plot=show_plots, - ) - pf.plot_capital_expenses( - fileout=savepath / f'capital_expense_only_{design_scenario["id"]}.png', - show_plot=show_plots, - ) - pf.plot_cashflow( - fileout=savepath / f'cash_flow_wind_only_{design_scenario["id"]}.png', - show_plot=show_plots, - ) - pf.plot_costs( - fileout=savepath / f'cost_breakdown_{design_scenario["id"]}.png', - show_plot=show_plots, - ) - - return lcoe, pf, sol - - -def run_profast_grid_only( - h2integrate_config, - wind_cost_results, - electrolyzer_performance_results, - capex_breakdown, - opex_breakdown_total, - hopp_results, - design_scenario, - total_accessory_power_renewable_kw, - total_accessory_power_grid_kw, - verbose=False, - show_plots=False, - save_plots=False, - output_dir="./output/", -): - vopex_breakdown = opex_breakdown_total["variable_om"] - fopex_breakdown = opex_breakdown_total["fixed_om"] - - if isinstance(output_dir, str): - output_dir = Path(output_dir).resolve() - gen_inflation = h2integrate_config["finance_parameters"]["inflation_rate"] - - # initialize dictionary of weights for averaging financial parameters - finance_param_weights = {} - - if ( - design_scenario["h2_storage_location"] == "onshore" - or design_scenario["electrolyzer_location"] == "onshore" - ): - if "land_cost" in h2integrate_config["finance_parameters"]: - land_cost = h2integrate_config["finance_parameters"]["land_cost"] - else: - land_cost = 1e6 # TODO should model this - else: - land_cost = 0.0 - - pf = ProFAST.ProFAST() - pf.set_params( - "commodity", - { - "name": "Hydrogen", - "unit": "kg", - "initial price": 100, - "escalation": gen_inflation, - }, - ) - pf.set_params( - "capacity", - electrolyzer_performance_results.rated_capacity_kg_pr_day, - ) # kg/day - pf.set_params("maintenance", {"value": 0, "escalation": gen_inflation}) - # TODO: update analysis start year below (ESG) - pf.set_params( - "analysis start year", - h2integrate_config["project_parameters"]["financial_analysis_start_year"], - ) - pf.set_params("operating life", h2integrate_config["project_parameters"]["project_lifetime"]) - pf.set_params( - "installation cost", - { - "value": 0, - "depr type": "Straight line", - "depr period": 4, - "depreciable": False, - }, - ) - if land_cost > 0: - pf.set_params("non depr assets", land_cost) - pf.set_params( - "end of proj sale non depr assets", - land_cost - * (1 + gen_inflation) ** h2integrate_config["project_parameters"]["project_lifetime"], - ) - pf.set_params("demand rampup", 0) - pf.set_params("long term utilization", electrolyzer_performance_results.long_term_utilization) - pf.set_params("credit card fees", 0) - pf.set_params("sales tax", h2integrate_config["finance_parameters"]["sales_tax_rate"]) - pf.set_params("license and permit", {"value": 00, "escalation": gen_inflation}) - pf.set_params("rent", {"value": 0, "escalation": gen_inflation}) - pf.set_params( - "property tax and insurance", - h2integrate_config["finance_parameters"]["property_tax"] - + h2integrate_config["finance_parameters"]["property_insurance"], - ) - pf.set_params( - "admin expense", - h2integrate_config["finance_parameters"]["administrative_expense_percent_of_sales"], - ) - pf.set_params( - "total income tax rate", - h2integrate_config["finance_parameters"]["total_income_tax_rate"], - ) - pf.set_params( - "capital gains tax rate", - h2integrate_config["finance_parameters"]["capital_gains_tax_rate"], - ) - pf.set_params("sell undepreciated cap", True) - pf.set_params("tax losses monetized", True) - pf.set_params("general inflation rate", gen_inflation) - - pf.set_params("debt type", h2integrate_config["finance_parameters"]["debt_type"]) - pf.set_params("loan period if used", h2integrate_config["finance_parameters"]["loan_period"]) - - pf.set_params("cash onhand", h2integrate_config["finance_parameters"]["cash_onhand_months"]) - - # ----------------------------------- Add capital items to ProFAST ---------------- - - pf.add_capital_item( - name="Electrolysis system", - cost=capex_breakdown["electrolyzer"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period_electrolyzer"], - refurb=electrolyzer_performance_results.refurb_cost_percent, - ) - finance_param_weights["electrolyzer"] = capex_breakdown["electrolyzer"] - pf.add_capital_item( - name="Hydrogen storage system", - cost=capex_breakdown["h2_storage"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period_electrolyzer"], - refurb=[0], - ) - finance_param_weights["h2_storage"] = capex_breakdown["h2_storage"] - # -------------------------------------- Add fixed costs-------------------------------- - pf.add_fixed_cost( - name="Electrolyzer fixed O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["electrolyzer"], - escalation=gen_inflation, - ) - pf.add_fixed_cost( - name="Hydrogen storage fixed O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["h2_storage"], - escalation=gen_inflation, - ) - - # ---------------------- Add feedstocks, note the various cost options------------------- - pf.add_feedstock( - name="Water", - usage=electrolyzer_performance_results.water_usage_gal_pr_kg, - unit="gal", - cost="US Average", - escalation=gen_inflation, - ) - pf.add_feedstock( - name="Electrolyzer Variable O&M", - usage=1.0, - unit="$/kg", - cost=vopex_breakdown["electrolyzer"], - escalation=gen_inflation, - ) - - # if h2integrate_config["project_parameters"]["grid_connection"]: - - energy_purchase = ( - 365 * 24 * h2integrate_config["electrolyzer"]["rating"] * 1e3 - + sum(total_accessory_power_renewable_kw) - + sum(total_accessory_power_grid_kw) - ) - - pf.add_fixed_cost( - name="Electricity from grid", - usage=1.0, - unit="$/year", - cost=energy_purchase * h2integrate_config["project_parameters"]["ppa_price"], - escalation=gen_inflation, - ) - - # ----------------------- Add weight-averaged parameters ----------------------- - - equity_discount_rate = calc_financial_parameter_weighted_average_by_capex( - parameter_name="discount_rate", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - - pf.set_params( - "leverage after tax nominal discount rate", - equity_discount_rate, - ) - - debt_interest_rate = calc_financial_parameter_weighted_average_by_capex( - parameter_name="debt_interest_rate", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "debt interest rate", - debt_interest_rate, - ) - - if "debt_equity_split" in h2integrate_config["finance_parameters"].keys(): - debt_equity_split = calc_financial_parameter_weighted_average_by_capex( - parameter_name="debt_equity_split", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "debt equity ratio of initial financing", - (debt_equity_split / (100 - debt_equity_split)), - ) - elif "debt_equity_ratio" in h2integrate_config["finance_parameters"].keys(): - debt_equity_ratio = calc_financial_parameter_weighted_average_by_capex( - parameter_name="debt_equity_ratio", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "debt equity ratio of initial financing", - debt_equity_ratio, - ) - else: - msg = ( - "missing value in `finance_parameters`. " - "Requires either `debt_equity_ratio` or `debt_equity_split`" - ) - raise ValueError(msg) - - # ----------------------- Run ProFAST ----------------------------------------- - - sol = pf.solve_price() - - lcoh = sol["price"] - if verbose: - print(f"\nLCOH grid only: {lcoh:.2f} $/kg") - print(f'ProFAST grid only NPV: {sol["NPV"]:.2f}') - print(f'ProFAST grid only IRR: {max(sol["irr"]):.5f}') - print(f'ProFAST grid only LCO: {sol["lco"]:.2f} $/kg') - print(f'ProFAST grid only Profit Index: {sol["profit index"]:.2f}') - print(f'ProFAST grid only payback period: {sol["investor payback period"]}') - - # ----------------------- Plots ----------------------------------------------- - if save_plots or show_plots: - savepaths = [ - output_dir / "figures/capex", - output_dir / "figures/annual_cash_flow", - output_dir / "figures/lcoh_breakdown", - output_dir / "data", - ] - for savepath in savepaths: - if not savepath.exists(): - savepath.mkdir(parents=True) - - pf.plot_capital_expenses( - fileout=savepaths[0] / f"capital_expense_grid_only_{design_scenario['id']}.pdf", - show_plot=show_plots, - ) - pf.plot_cashflow( - fileout=savepaths[1] / f"cash_flow_grid_only_{design_scenario['id']}.png", - show_plot=show_plots, - ) - - pd.DataFrame.from_dict(data=pf.cash_flow_out, orient="index").to_csv( - savepaths[3] / f"cash_flow_grid_only_{design_scenario['id']}.csv" - ) - - pf.plot_costs( - savepaths[2] / f"lcoh_grid_only_{design_scenario['id']}", - show_plot=show_plots, - ) - return lcoh, pf, sol - - -def run_profast_full_plant_model( - h2integrate_config, - wind_cost_results, - electrolyzer_performance_results, - capex_breakdown, - opex_breakdown_total, - hopp_results, - incentive_option, - design_scenario, - total_accessory_power_renewable_kw, - total_accessory_power_grid_kw, - verbose=False, - show_plots=False, - save_plots=False, - output_dir="./output/", -): - vopex_breakdown = opex_breakdown_total["variable_om"] - fopex_breakdown = opex_breakdown_total["fixed_om"] - - if isinstance(output_dir, str): - output_dir = Path(output_dir).resolve() - gen_inflation = h2integrate_config["finance_parameters"]["inflation_rate"] - - if "financial_analysis_start_year" not in h2integrate_config["finance_parameters"]: - financial_analysis_start_year = h2integrate_config["project_parameters"][ - "financial_analysis_start_year" - ] - else: - financial_analysis_start_year = h2integrate_config["finance_parameters"][ - "financial_analysis_start_year" - ] - - if "installation_time" not in h2integrate_config["project_parameters"]: - installation_period_months = wind_cost_results.installation_time - else: - installation_period_months = h2integrate_config["project_parameters"]["installation_time"] - - # initialize dictionary of weights for averaging financial parameters - finance_param_weights = {} - - if ( - design_scenario["h2_storage_location"] == "onshore" - or design_scenario["electrolyzer_location"] == "onshore" - ): - if "land_cost" in h2integrate_config["finance_parameters"]: - land_cost = h2integrate_config["finance_parameters"]["land_cost"] - else: - land_cost = 1e6 # TODO should model this - else: - land_cost = 0.0 - - pf = ProFAST.ProFAST() - pf.set_params( - "commodity", - { - "name": "Hydrogen", - "unit": "kg", - "initial price": 100, - "escalation": gen_inflation, - }, - ) - pf.set_params( - "capacity", - electrolyzer_performance_results.rated_capacity_kg_pr_day, - ) # kg/day - pf.set_params("maintenance", {"value": 0, "escalation": gen_inflation}) - pf.set_params( - "analysis start year", - financial_analysis_start_year, - ) - pf.set_params("operating life", h2integrate_config["project_parameters"]["project_lifetime"]) - pf.set_params( - "installation months", - installation_period_months, - ) - pf.set_params( - "installation cost", - { - "value": 0, - "depr type": "Straight line", - "depr period": 4, - "depreciable": False, - }, - ) - if land_cost > 0: - pf.set_params("non depr assets", land_cost) - pf.set_params( - "end of proj sale non depr assets", - land_cost - * (1 + gen_inflation) ** h2integrate_config["project_parameters"]["project_lifetime"], - ) - pf.set_params("demand rampup", 0) - pf.set_params("long term utilization", electrolyzer_performance_results.long_term_utilization) - pf.set_params("credit card fees", 0) - pf.set_params("sales tax", h2integrate_config["finance_parameters"]["sales_tax_rate"]) - pf.set_params("license and permit", {"value": 00, "escalation": gen_inflation}) - pf.set_params("rent", {"value": 0, "escalation": gen_inflation}) - # TODO how to handle property tax and insurance for fully offshore? - pf.set_params( - "property tax and insurance", - h2integrate_config["finance_parameters"]["property_tax"] - + h2integrate_config["finance_parameters"]["property_insurance"], - ) - pf.set_params( - "admin expense", - h2integrate_config["finance_parameters"]["administrative_expense_percent_of_sales"], - ) - pf.set_params( - "total income tax rate", - h2integrate_config["finance_parameters"]["total_income_tax_rate"], - ) - pf.set_params( - "capital gains tax rate", - h2integrate_config["finance_parameters"]["capital_gains_tax_rate"], - ) - pf.set_params("sell undepreciated cap", True) - pf.set_params("tax losses monetized", True) - pf.set_params("general inflation rate", gen_inflation) - - pf.set_params("debt type", h2integrate_config["finance_parameters"]["debt_type"]) - pf.set_params("loan period if used", h2integrate_config["finance_parameters"]["loan_period"]) - pf.set_params("cash onhand", h2integrate_config["finance_parameters"]["cash_onhand_months"]) - - # ----------------------------------- Add capital and fixed items to ProFAST ---------------- - if "wind" in capex_breakdown.keys(): - pf.add_capital_item( - name="Wind system", - cost=capex_breakdown["wind"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["wind"] = capex_breakdown["wind"] - - if "wave" in capex_breakdown.keys(): - pf.add_capital_item( - name="Wave system", - cost=capex_breakdown["wave"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["wave"] = capex_breakdown["wave"] - - if "solar" in capex_breakdown.keys(): - pf.add_capital_item( - name="Solar PV system", - cost=capex_breakdown["solar"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["solar"] = capex_breakdown["solar"] - - if "battery" in capex_breakdown.keys(): - pf.add_capital_item( - name="Battery system", - cost=capex_breakdown["battery"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["battery"] = capex_breakdown["battery"] - - if "platform" in capex_breakdown.keys() and capex_breakdown["platform"] > 0: - pf.add_capital_item( - name="Equipment platform", - cost=capex_breakdown["platform"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["platform"] = capex_breakdown["platform"] - - pf.add_fixed_cost( - name="Equipment platform O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["platform"], - escalation=gen_inflation, - ) - - pf.add_fixed_cost( - name="Wind and electrical export fixed O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["wind_and_electrical"], - escalation=gen_inflation, - ) - if "wave" in fopex_breakdown.keys(): - pf.add_fixed_cost( - name="Wave O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["wave"], - escalation=gen_inflation, - ) - - if "solar" in fopex_breakdown.keys(): - pf.add_fixed_cost( - name="Solar O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["solar"], - escalation=gen_inflation, - ) - - if "battery" in fopex_breakdown.keys(): - pf.add_fixed_cost( - name="Battery O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["battery"], - escalation=gen_inflation, - ) - - if design_scenario["transportation"] == "hvdc+pipeline" or not ( - design_scenario["electrolyzer_location"] == "turbine" - and design_scenario["h2_storage_location"] == "turbine" - ): - pf.add_capital_item( - name="Electrical export system", - cost=capex_breakdown["electrical_export_system"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period"], - refurb=[0], - ) - finance_param_weights["electrical_export_system"] = capex_breakdown[ - "electrical_export_system" - ] - # TODO assess if this makes sense (electrical export O&M included in wind O&M) - - pf.add_capital_item( - name="Electrolysis system", - cost=capex_breakdown["electrolyzer"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"]["depreciation_period_electrolyzer"], - refurb=electrolyzer_performance_results.refurb_cost_percent, - ) - finance_param_weights["electrolyzer"] = capex_breakdown["electrolyzer"] - pf.add_fixed_cost( - name="Electrolysis system fixed O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["electrolyzer"], - escalation=gen_inflation, - ) - - pf.add_feedstock( - name="Electrolyzer Variable O&M", - usage=1.0, - unit="$/kg", - cost=vopex_breakdown["electrolyzer"], - escalation=gen_inflation, - ) - - if design_scenario["electrolyzer_location"] == "turbine": - pf.add_capital_item( - name="H2 pipe array system", - cost=capex_breakdown["h2_pipe_array"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"][ - "depreciation_period_electrolyzer" - ], - refurb=[0], - ) - finance_param_weights["h2_pipe_array"] = capex_breakdown["h2_pipe_array"] - pf.add_fixed_cost( - name="H2 pipe array fixed O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["h2_pipe_array"], - escalation=gen_inflation, - ) - - if ( - ( - design_scenario["h2_storage_location"] == "onshore" - and design_scenario["electrolyzer_location"] != "onshore" - ) - or ( - design_scenario["h2_storage_location"] != "onshore" - and design_scenario["electrolyzer_location"] == "onshore" - ) - or (design_scenario["transportation"] == "hvdc+pipeline") - ): - pf.add_capital_item( - name="H2 transport compressor system", - cost=capex_breakdown["h2_transport_compressor"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"][ - "depreciation_period_electrolyzer" - ], - refurb=[0], - ) - finance_param_weights["h2_transport_compressor"] = capex_breakdown[ - "h2_transport_compressor" - ] - pf.add_capital_item( - name="H2 transport pipeline system", - cost=capex_breakdown["h2_transport_pipeline"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"][ - "depreciation_period_electrolyzer" - ], - refurb=[0], - ) - finance_param_weights["h2_transport_pipeline"] = capex_breakdown["h2_transport_pipeline"] - - pf.add_fixed_cost( - name="H2 transport compression fixed O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["h2_transport_compressor"], - escalation=gen_inflation, - ) - pf.add_fixed_cost( - name="H2 transport pipeline fixed O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["h2_transport_pipeline"], - escalation=gen_inflation, - ) - - if h2integrate_config["h2_storage"]["type"] != "none": - pf.add_capital_item( - name="Hydrogen storage system", - cost=capex_breakdown["h2_storage"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"][ - "depreciation_period_electrolyzer" - ], - refurb=[0], - ) - finance_param_weights["h2_storage"] = capex_breakdown["h2_storage"] - pf.add_fixed_cost( - name="Hydrogen storage fixed O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["h2_storage"], - escalation=gen_inflation, - ) - - # ---------------------- Add feedstocks, note the various cost options------------------- - if design_scenario["electrolyzer_location"] == "onshore": - pf.add_feedstock( - name="Water", - usage=electrolyzer_performance_results.water_usage_gal_pr_kg, - unit="gal", - cost="US Average", - escalation=gen_inflation, - ) - else: - pf.add_capital_item( - name="Desal system", - cost=capex_breakdown["desal"], - depr_type=h2integrate_config["finance_parameters"]["depreciation_method"], - depr_period=h2integrate_config["finance_parameters"][ - "depreciation_period_electrolyzer" - ], - refurb=[0], - ) - finance_param_weights["desal"] = capex_breakdown["desal"] - pf.add_fixed_cost( - name="Desal fixed O&M cost", - usage=1.0, - unit="$/year", - cost=fopex_breakdown["desal"], - escalation=gen_inflation, - ) - - if ( - h2integrate_config["project_parameters"]["grid_connection"] - or sum(total_accessory_power_grid_kw) > 0 - ): - energy_purchase = sum(total_accessory_power_grid_kw) # * 365 * 24 - - if h2integrate_config["project_parameters"]["grid_connection"]: - annual_energy_shortfall = np.sum(hopp_results["energy_shortfall_hopp"]) - energy_purchase += annual_energy_shortfall - - pf.add_fixed_cost( - name="Electricity from grid", - usage=1.0, - unit="$/year", - cost=energy_purchase * h2integrate_config["project_parameters"]["ppa_price"], - escalation=gen_inflation, - ) - - # ------------------------------------- add incentives ----------------------------------- - """ - Note: units must be given to ProFAST in terms of dollars per unit of the primary commodity being - produced - - Note: full tech-nutral (wind) tax credits are no longer available if constructions starts after - Jan. 1 2034 (Jan 1. 2033 for h2 ptc) - """ - - # catch incentive option and add relevant incentives - incentive_dict = h2integrate_config["policy_parameters"][f"option{incentive_option}"] - - # add wind_itc (% of wind capex) - electricity_itc_value_percent_wind_capex = incentive_dict["electricity_itc"] - electricity_itc_value_dollars = electricity_itc_value_percent_wind_capex * ( - capex_breakdown["wind"] + capex_breakdown["electrical_export_system"] - ) - pf.set_params( - "one time cap inct", - { - "value": electricity_itc_value_dollars, - "depr type": h2integrate_config["finance_parameters"]["depreciation_method"], - "depr period": h2integrate_config["finance_parameters"]["depreciation_period"], - "depreciable": True, - }, - ) - - # add h2_storage_itc (% of h2 storage capex) - itc_value_percent_h2_store_capex = incentive_dict["h2_storage_itc"] - electricity_itc_value_dollars_h2_store = ( - itc_value_percent_h2_store_capex * (capex_breakdown["h2_storage"]) - ) - pf.set_params( - "one time cap inct", - { - "value": electricity_itc_value_dollars_h2_store, - "depr type": h2integrate_config["finance_parameters"]["depreciation_method"], - "depr period": h2integrate_config["finance_parameters"]["depreciation_period"], - "depreciable": True, - }, - ) - - # add electricity_ptc ($/kW) - # adjust from 1992 dollars to start year - electricity_ptc_in_dollars_per_kw = -npf.fv( - h2integrate_config["finance_parameters"]["costing_general_inflation"], - h2integrate_config["project_parameters"]["financial_analysis_start_year"] - + round(wind_cost_results.installation_time / 12) - - 1992, - 0, - incentive_dict["electricity_ptc"], - ) # given in 1992 dollars but adjust for inflation - kw_per_kg_h2 = sum(hopp_results["combined_hybrid_power_production_hopp"]) / np.mean( - electrolyzer_performance_results.electrolyzer_annual_h2_production_kg - ) - electricity_ptc_in_dollars_per_kg_h2 = electricity_ptc_in_dollars_per_kw * kw_per_kg_h2 - pf.add_incentive( - name="Electricity PTC", - value=electricity_ptc_in_dollars_per_kg_h2, - decay=-gen_inflation, - sunset_years=10, - tax_credit=True, - ) # TODO check decay - - # add h2_ptc ($/kg) - h2_ptc_inflation_adjusted = -npf.fv( - h2integrate_config["finance_parameters"][ - "costing_general_inflation" - ], # use ATB year (cost inflation 2.5%) costing_general_inflation - h2integrate_config["project_parameters"]["financial_analysis_start_year"] - + round(wind_cost_results.installation_time / 12) - - 2022, - 0, - incentive_dict["h2_ptc"], - ) - pf.add_incentive( - name="H2 PTC", - value=h2_ptc_inflation_adjusted, - decay=-gen_inflation, # correct inflation - sunset_years=10, - tax_credit=True, - ) # TODO check decay - - # ----------------------- Add weight-averaged parameters ----------------------- - - equity_discount_rate = calc_financial_parameter_weighted_average_by_capex( - parameter_name="discount_rate", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "leverage after tax nominal discount rate", - equity_discount_rate, - ) - - debt_interest_rate = calc_financial_parameter_weighted_average_by_capex( - parameter_name="debt_interest_rate", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "debt interest rate", - debt_interest_rate, - ) - - if "debt_equity_split" in h2integrate_config["finance_parameters"].keys(): - debt_equity_split = calc_financial_parameter_weighted_average_by_capex( - parameter_name="debt_equity_split", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "debt equity ratio of initial financing", - (debt_equity_split / (100 - debt_equity_split)), - ) - elif "debt_equity_ratio" in h2integrate_config["finance_parameters"].keys(): - debt_equity_ratio = calc_financial_parameter_weighted_average_by_capex( - parameter_name="debt_equity_ratio", - h2integrate_config=h2integrate_config, - capex_breakdown=finance_param_weights, - ) - pf.set_params( - "debt equity ratio of initial financing", - debt_equity_ratio, - ) - else: - msg = ( - "missing value in `finance_parameters`. " - "Requires either `debt_equity_ratio` or `debt_equity_split`" - ) - raise ValueError(msg) - - # ------------------------------------ solve and post-process ----------------------------- - - sol = pf.solve_price() - - df = pf.cash_flow_out - - lcoh = sol["price"] - - if verbose: - print(f"\nProFAST LCOH: {lcoh:.2f} $/kg") - print(f'ProFAST NPV: {sol["NPV"]:.2f}') - print(f'ProFAST IRR: {max(sol["irr"]):.5f}') - print(f'ProFAST LCO: {sol["lco"]:.2f} $/kg') - print(f'ProFAST Profit Index: {sol["profit index"]:.2f}') - print(f'ProFAST payback period: {sol["investor payback period"]}') - - MIRR = npf.mirr( - df["Investor cash flow"], - debt_interest_rate, - equity_discount_rate, - ) # TODO probably ignore MIRR - NPV = npf.npv( - h2integrate_config["finance_parameters"]["inflation_rate"], - df["Investor cash flow"], - ) - ROI = np.sum(df["Investor cash flow"]) / abs( - np.sum(df["Investor cash flow"][df["Investor cash flow"] < 0]) - ) # ROI is not a good way of thinking about the value of the project - - # TODO project level IRR - capex and operating cash flow - - # note: hurdle rate typically 20% IRR before investing in it due to typically optimistic - # assumptions - - # note: negative retained earnings (keeping debt, paying down equity) - to get around it, - # do another line for retained earnings and watch dividends paid by the project - # (net income/equity should stay positive this way) - - print("Investor NPV: ", np.round(NPV * 1e-6, 2), "M USD") - print("Investor MIRR: ", np.round(MIRR, 5), "") - print("Investor ROI: ", np.round(ROI, 5), "") - - if save_plots or show_plots: - savepaths = [ - output_dir / "figures/capex", - output_dir / "figures/annual_cash_flow", - output_dir / "figures/lcoh_breakdown", - output_dir / "data", - ] - for savepath in savepaths: - if not savepath.exists(): - savepath.mkdir(parents=True) - - pf.plot_capital_expenses( - fileout=savepaths[0] / f"capital_expense_{design_scenario['id']}.pdf", - show_plot=show_plots, - ) - pf.plot_cashflow( - fileout=savepaths[1] / f"cash_flow_{design_scenario['id']}.png", - show_plot=show_plots, - ) - - pd.DataFrame.from_dict(data=pf.cash_flow_out).to_csv( - savepaths[3] / f"cash_flow_{design_scenario['id']}.csv" - ) - - pf.plot_costs( - savepaths[2] / f"lcoh_{design_scenario['id']}", - show_plot=show_plots, - ) - - return lcoh, pf, sol diff --git a/h2integrate/tools/eco/utilities.py b/h2integrate/tools/eco/utilities.py deleted file mode 100644 index c2f0b65df..000000000 --- a/h2integrate/tools/eco/utilities.py +++ /dev/null @@ -1,3679 +0,0 @@ -from __future__ import annotations - -import copy -import warnings -from pathlib import Path - -import numpy as np -import ORBIT as orbit -import pandas as pd -import numpy_financial as npf -import matplotlib.pyplot as plt -import matplotlib.ticker as ticker -import matplotlib.patches as patches -from hopp.simulation import HoppInterface -from hopp.tools.dispatch import plot_tools -from hopp.simulation.technologies.resource.greet_data import GREETData -from hopp.simulation.technologies.resource.cambium_data import CambiumData - -from h2integrate.core.utilities import load_yaml -from h2integrate.tools.h2integrate_sim_file_utils import load_dill_pickle - -from .finance import adjust_orbit_costs - - -""" -This function returns the ceiling of a/b (rounded to the nearest greater integer). -The function was copied from https://stackoverflow.com/a/17511341/5128616 -""" - - -def ceildiv(a, b): - return -(a // -b) - - -def convert_relative_to_absolute_path(config_filepath, resource_filepath): - if resource_filepath == "": - return "" - else: - abs_config_filepath = Path(config_filepath).absolute().parent - return abs_config_filepath / resource_filepath - - -# Function to load inputs -def get_inputs( - filename_hopp_config, - filename_h2integrate_config, - filename_orbit_config, - filename_turbine_config, - filename_floris_config=None, - verbose=False, - show_plots=False, - save_plots=False, -): - ############### load turbine inputs from yaml - - # load turbine inputs - turbine_config = load_yaml(filename_turbine_config) - - # load hopp inputs - hopp_config = load_yaml(filename_hopp_config) - - # load eco inputs - h2integrate_config = load_yaml(filename_h2integrate_config) - - # convert relative filepath to absolute for HOPP ingestion - hopp_config["site"]["solar_resource_file"] = convert_relative_to_absolute_path( - filename_hopp_config, hopp_config["site"]["solar_resource_file"] - ) - hopp_config["site"]["wind_resource_file"] = convert_relative_to_absolute_path( - filename_hopp_config, hopp_config["site"]["wind_resource_file"] - ) - hopp_config["site"]["wave_resource_file"] = convert_relative_to_absolute_path( - filename_hopp_config, hopp_config["site"]["wave_resource_file"] - ) - hopp_config["site"]["grid_resource_file"] = convert_relative_to_absolute_path( - filename_hopp_config, hopp_config["site"]["grid_resource_file"] - ) - - ################ load plant inputs from yaml - if filename_orbit_config is not None: - orbit_config = orbit.load_config(filename_orbit_config) - - # print plant inputs if desired - if verbose: - print("\nPlant configuration:") - for key in orbit_config.keys(): - print(key, ": ", orbit_config[key]) - - # check that orbit and hopp inputs are compatible - if ( - orbit_config["plant"]["capacity"] - != hopp_config["technologies"]["wind"]["num_turbines"] - * hopp_config["technologies"]["wind"]["turbine_rating_kw"] - * 1e-3 - ): - raise (ValueError("Provided ORBIT and HOPP wind plant capacities do not match")) - - # update floris_config file with correct input from other files - # load floris inputs - if ( - hopp_config["technologies"]["wind"]["model_name"] == "floris" - ): # TODO replace elements of the file - if filename_floris_config is None: - raise (ValueError("floris input file must be specified.")) - else: - floris_config = load_yaml(filename_floris_config) - floris_config.update({"farm": {"turbine_type": turbine_config}}) - else: - floris_config = None - - # print turbine inputs if desired - if verbose: - print("\nTurbine configuration:") - for key in turbine_config.keys(): - print(key, ": ", turbine_config[key]) - - ############## provide custom layout for ORBIT and FLORIS if desired - if filename_orbit_config is not None: - if orbit_config["plant"]["layout"] == "custom": - # generate ORBIT config from floris layout - for i, x in enumerate(floris_config["farm"]["layout_x"]): - floris_config["farm"]["layout_x"][i] = x + 400 - - layout_config, layout_data_location = convert_layout_from_floris_for_orbit( - floris_config["farm"]["layout_x"], - floris_config["farm"]["layout_y"], - save_config=True, - ) - - # update orbit_config with custom layout - # orbit_config = orbit.core.library.extract_library_data( - # orbit_config, additional_keys=layout_config - # ) - orbit_config["array_system_design"]["location_data"] = layout_data_location - - # if hybrid plant, adjust hybrid plant capacity to include all technologies - total_hybrid_plant_capacity_mw = 0.0 - for tech in hopp_config["technologies"].keys(): - if tech == "grid": - continue - elif tech == "wind": - total_hybrid_plant_capacity_mw += ( - hopp_config["technologies"][tech]["num_turbines"] - * hopp_config["technologies"][tech]["turbine_rating_kw"] - * 1e-3 - ) - elif tech == "pv": - total_hybrid_plant_capacity_mw += ( - hopp_config["technologies"][tech]["system_capacity_kw"] * 1e-3 - ) - elif tech == "wave": - total_hybrid_plant_capacity_mw += ( - hopp_config["technologies"][tech]["num_devices"] - * hopp_config["technologies"][tech]["device_rating_kw"] - * 1e-3 - ) - - # initialize dict for hybrid plant - if filename_orbit_config is not None: - if total_hybrid_plant_capacity_mw != orbit_config["plant"]["capacity"]: - orbit_hybrid_electrical_export_config = copy.deepcopy(orbit_config) - orbit_hybrid_electrical_export_config["plant"]["capacity"] = ( - total_hybrid_plant_capacity_mw - ) - # allow orbit to set num_turbines later based on the new hybrid capacity and - # turbinerating - orbit_hybrid_electrical_export_config["plant"].pop("num_turbines") - else: - orbit_hybrid_electrical_export_config = {} - - if verbose: - print(f"Total hybrid plant rating calculated: {total_hybrid_plant_capacity_mw} MW") - - if filename_orbit_config is None: - orbit_config = None - orbit_hybrid_electrical_export_config = {} - - ############## return all inputs - - return ( - hopp_config, - h2integrate_config, - orbit_config, - turbine_config, - floris_config, - orbit_hybrid_electrical_export_config, - ) - - -def convert_layout_from_floris_for_orbit(turbine_x, turbine_y, save_config=False): - turbine_x_km = (np.array(turbine_x) * 1e-3).tolist() - turbine_y_km = (np.array(turbine_y) * 1e-3).tolist() - - # initialize dict with data for turbines - turbine_dict = { - "id": list(range(0, len(turbine_x))), - "substation_id": ["OSS"] * len(turbine_x), - "name": list(range(0, len(turbine_x))), - "longitude": turbine_x_km, - "latitude": turbine_y_km, - "string": [0] * len(turbine_x), # can be left empty - "order": [0] * len(turbine_x), # can be left empty - "cable_length": [0] * len(turbine_x), - "bury_speed": [0] * len(turbine_x), - } - string_counter = -1 - order_counter = 0 - for i in range(0, len(turbine_x)): - if turbine_x[i] - 400 == 0: - string_counter += 1 - order_counter = 0 - - turbine_dict["order"][i] = order_counter - turbine_dict["string"][i] = string_counter - - order_counter += 1 - - # initialize dict with substation information - substation_dict = { - "id": "OSS", - "substation_id": "OSS", - "name": "OSS", - "longitude": np.min(turbine_x_km) - 200 * 1e-3, - "latitude": np.average(turbine_y_km), - "string": "", # can be left empty - "order": "", # can be left empty - "cable_length": "", - "bury_speed": "", - } - - # combine turbine and substation dicts - for key in turbine_dict.keys(): - # turbine_dict[key].append(substation_dict[key]) - turbine_dict[key].insert(0, substation_dict[key]) - - # add location data - file_name = "osw_cable_layout" - save_location = Path("./input/project/plant/").resolve() - # turbine_dict["array_system_design"]["location_data"] = data_location - if save_config: - if not save_location.exists(): - save_location.mkdir(parents=True) - # create pandas data frame - df = pd.DataFrame.from_dict(turbine_dict) - - # df.drop("index") - df.set_index("id") - - # save to csv - df.to_csv(save_location / f"{file_name}.csv", index=False) - - return turbine_dict, file_name - - -def visualize_plant( - hopp_config, - h2integrate_config, - turbine_config, - wind_cost_outputs, - hopp_results, - platform_results, - desal_results, - h2_storage_results, - electrolyzer_physics_results, - design_scenario, - colors, - plant_design_number, - show_plots=False, - save_plots=False, - output_dir="./output/", -): - if isinstance(output_dir, str): - output_dir = Path(output_dir).resolve() - # save plant sizing to dict - component_areas = {} - - plt.rcParams.update({"font.size": 7}) - - if hopp_config["technologies"]["wind"]["model_name"] != "floris": - msg = ( - f"`visualize_plant()` only works with the 'floris' wind model, `model_name`" - f" {hopp_config['technologies']['wind']['model_name']} has been specified" - ) - raise NotImplementedError(msg) - - # set colors - turbine_rotor_color = colors[0] - turbine_tower_color = colors[1] - pipe_color = colors[2] - cable_color = colors[8] - electrolyzer_color = colors[4] - desal_color = colors[9] - h2_storage_color = colors[6] - substation_color = colors[7] - equipment_platform_color = colors[1] - compressor_color = colors[0] - if hopp_config["site"]["solar"]: - solar_color = colors[2] - if hopp_config["site"]["wave"]: - wave_color = colors[8] - battery_color = colors[8] - - # set hatches - solar_hatch = "//" - wave_hatch = "\\\\" - battery_hatch = "+" - electrolyzer_hatch = "///" - desalinator_hatch = "xxxx" - - # Views - # offshore plant, onshore plant, offshore platform, offshore turbine - - # get plant location - - # get shore location - - # get cable/pipe locations - if design_scenario["wind_location"] == "offshore": - # ORBIT gives coordinates in km, convert to m for (val / 1e3) - - cable_array_points = ( - wind_cost_outputs.orbit_project.phases["ArraySystemDesign"].coordinates * 1e3 - ) - pipe_array_points = ( - wind_cost_outputs.orbit_project.phases["ArraySystemDesign"].coordinates * 1e3 - ) - - # get turbine tower base diameter - tower_base_diameter = wind_cost_outputs.orbit_project.config["turbine"]["tower"][ - "section_diameters" - ][0] # in m - tower_base_radius = tower_base_diameter / 2.0 - - # get turbine locations - turbine_x = ( - wind_cost_outputs.orbit_project.phases["ArraySystemDesign"].turbines_x.flatten() * 1e3 - ) - turbine_x = turbine_x[~np.isnan(turbine_x)] - turbine_y = ( - wind_cost_outputs.orbit_project.phases["ArraySystemDesign"].turbines_y.flatten() * 1e3 - ) - turbine_y = turbine_y[~np.isnan(turbine_y)] - - # get offshore substation location and dimensions (treated as center) - substation_x = wind_cost_outputs.orbit_project.phases["ArraySystemDesign"].oss_x * 1e3 - substation_y = wind_cost_outputs.orbit_project.phases["ArraySystemDesign"].oss_y * 1e3 - - # [m] just based on a large substation - # (https://www.windpowerengineering.com/making-modern-offshore-substation/) - # since the dimensions are not available in ORBIT - substation_side_length = 20 - - # get equipment platform location and dimensions - equipment_platform_area = platform_results["toparea_m2"] - equipment_platform_side_length = np.sqrt(equipment_platform_area) - - # [m] (treated as center) - equipment_platform_x = ( - substation_x - substation_side_length - equipment_platform_side_length / 2 - ) - equipment_platform_y = substation_y - - # get platform equipment dimensions - if design_scenario["electrolyzer_location"] == "turbine": - # equipment_footprint_m2 - desal_equipment_area = desal_results["per_turb_equipment_footprint_m2"] - elif design_scenario["electrolyzer_location"] == "platform": - desal_equipment_area = desal_results["equipment_footprint_m2"] - else: - desal_equipment_area = 0 - - desal_equipment_side = np.sqrt(desal_equipment_area) - - # get pipe points - np.array([substation_x - 1000, substation_x]) - np.array([substation_y, substation_y]) - - # get cable points - - else: - turbine_x = np.array( - hopp_config["technologies"]["wind"]["floris_config"]["farm"]["layout_x"] - ) - turbine_y = np.array( - hopp_config["technologies"]["wind"]["floris_config"]["farm"]["layout_y"] - ) - cable_array_points = [] - - # wind farm area - turbine_length_x = np.max(turbine_x) - np.min(turbine_x) - turbine_length_y = np.max(turbine_y) - np.min(turbine_y) - turbine_area = turbine_length_x * turbine_length_y - - # compressor side # not sized - compressor_area = 25 - compressor_side = np.sqrt(compressor_area) - - # get turbine rotor diameter - rotor_diameter = turbine_config["rotor_diameter"] # in m - rotor_radius = rotor_diameter / 2.0 - - # set onshore substation dimensions - onshore_substation_x_side_length = 127.25 # [m] based on 1 acre area https://www.power-technology.com/features/making-space-for-power-how-much-land-must-renewables-use/ - onshore_substation_y_side_length = 31.8 # [m] based on 1 acre area https://www.power-technology.com/features/making-space-for-power-how-much-land-must-renewables-use/ - onshore_substation_area = onshore_substation_x_side_length * onshore_substation_y_side_length - - if h2integrate_config["h2_storage"]["type"] == "pressure_vessel": - h2_storage_area = h2_storage_results["tank_footprint_m2"] - h2_storage_side = np.sqrt(h2_storage_area) - else: - h2_storage_side = 0 - h2_storage_area = 0 - - electrolyzer_area = electrolyzer_physics_results["equipment_footprint_m2"] - if design_scenario["electrolyzer_location"] == "turbine": - electrolyzer_area /= hopp_config["technologies"]["wind"]["num_turbines"] - - electrolyzer_side = np.sqrt(electrolyzer_area) - - # set onshore origin - onshorex = 50 - onshorey = 50 - - wind_buffer = np.min(turbine_x) - (onshorey + 3 * rotor_diameter + electrolyzer_side) - if "pv" in hopp_config["technologies"].keys(): - wind_buffer -= np.sqrt(hopp_results["hybrid_plant"].pv.footprint_area) - if "battery" in hopp_config["technologies"].keys(): - wind_buffer -= np.sqrt(hopp_results["hybrid_plant"].battery.footprint_area) - if wind_buffer < 50: - onshorey += wind_buffer - 50 - - if design_scenario["wind_location"] == "offshore": - origin_x = substation_x - origin_y = substation_y - else: - origin_x = 0.0 - origin_y = 0.0 - - ## create figure - if design_scenario["wind_location"] == "offshore": - fig, ax = plt.subplots(2, 2, figsize=(10, 6)) - ax_index_plant = (0, 0) - ax_index_detail = (1, 0) - ax_index_wind_plant = (0, 1) - ax_index_turbine_detail = (1, 1) - else: - fig, ax = plt.subplots(1, 2, figsize=(10, 6)) - ax_index_plant = 0 - ax_index_wind_plant = 0 - ax_index_detail = 1 - ax_index_turbine_detail = False - - # plot the stuff - - # onshore plant | offshore plant - # platform/substation | turbine - - ## add turbines - def add_turbines(ax, turbine_x, turbine_y, radius, color): - i = 0 - for x, y in zip(turbine_x, turbine_y): - if i == 0: - rlabel = "Wind turbine rotor" - i += 1 - else: - rlabel = None - turbine_patch = patches.Circle( - (x, y), - radius=radius, - color=color, - fill=False, - label=rlabel, - zorder=10, - ) - ax.add_patch(turbine_patch) - - add_turbines(ax[ax_index_wind_plant], turbine_x, turbine_y, rotor_radius, turbine_rotor_color) - component_areas["turbine_area_m2"] = turbine_area - # turbine_patch01_tower = patches.Circle((x, y), radius=tower_base_radius, color=turbine_tower_color, fill=False, label=tlabel, zorder=10) # noqa: E501 - # ax[0, 1].add_patch(turbine_patch01_tower) - if design_scenario["wind_location"] == "onshore": - add_turbines(ax[ax_index_detail], turbine_x, turbine_y, rotor_radius, turbine_rotor_color) - - if ax_index_turbine_detail: - # turbine_patch11_rotor = patches.Circle((turbine_x[0], turbine_y[0]), radius=rotor_radius, color=turbine_rotor_color, fill=False, label=None, zorder=10) # noqa: E501 - tlabel = "Wind turbine tower" - turbine_patch11_tower = patches.Circle( - (turbine_x[0], turbine_y[0]), - radius=tower_base_radius, - color=turbine_tower_color, - fill=False, - label=tlabel, - zorder=10, - ) - # ax[1, 1].add_patch(turbine_patch11_rotor) - ax[ax_index_turbine_detail].add_patch(turbine_patch11_tower) - - # add pipe array - if design_scenario["transportation"] == "hvdc+pipeline" or ( - design_scenario["h2_storage_location"] != "turbine" - and design_scenario["electrolyzer_location"] == "turbine" - ): - i = 0 - for point_string in pipe_array_points: - if i == 0: - label = "Array pipes" - i += 1 - else: - label = None - ax[0, 1].plot( - point_string[:, 0], - point_string[:, 1] - substation_side_length / 2, - ":", - color=pipe_color, - zorder=0, - linewidth=1, - label=label, - ) - ax[1, 0].plot( - point_string[:, 0], - point_string[:, 1] - substation_side_length / 2, - ":", - color=pipe_color, - zorder=0, - linewidth=1, - label=label, - ) - ax[1, 1].plot( - point_string[:, 0], - point_string[:, 1] - substation_side_length / 2, - ":", - color=pipe_color, - zorder=0, - linewidth=1, - label=label, - ) - - ## add cables - if (len(cable_array_points) > 1) and ( - design_scenario["h2_storage_location"] != "turbine" - or design_scenario["transportation"] == "hvdc+pipeline" - ): - i = 0 - for point_string in cable_array_points: - if i == 0: - label = "Array cables" - i += 1 - else: - label = None - ax[0, 1].plot( - point_string[:, 0], - point_string[:, 1] + substation_side_length / 2, - "-", - color=cable_color, - zorder=0, - linewidth=1, - label=label, - ) - ax[1, 0].plot( - point_string[:, 0], - point_string[:, 1] + substation_side_length / 2, - "-", - color=cable_color, - zorder=0, - linewidth=1, - label=label, - ) - ax[1, 1].plot( - point_string[:, 0], - point_string[:, 1] + substation_side_length / 2, - "-", - color=cable_color, - zorder=0, - linewidth=1, - label=label, - ) - - ## add offshore substation - if design_scenario["wind_location"] == "offshore" and ( - design_scenario["h2_storage_location"] != "turbine" - or design_scenario["transportation"] == "hvdc+pipeline" - ): - substation_patch01 = patches.Rectangle( - ( - substation_x - substation_side_length, - substation_y - substation_side_length / 2, - ), - substation_side_length, - substation_side_length, - fill=True, - color=substation_color, - label="Substation*", - zorder=11, - ) - substation_patch10 = patches.Rectangle( - ( - substation_x - substation_side_length, - substation_y - substation_side_length / 2, - ), - substation_side_length, - substation_side_length, - fill=True, - color=substation_color, - label="Substation*", - zorder=11, - ) - ax[0, 1].add_patch(substation_patch01) - ax[1, 0].add_patch(substation_patch10) - - component_areas["offshore_substation_area_m2"] = substation_side_length**2 - - ## add equipment platform - if design_scenario["wind_location"] == "offshore" and ( - design_scenario["h2_storage_location"] == "platform" - or design_scenario["electrolyzer_location"] == "platform" - ): # or design_scenario["transportation"] == "pipeline": - equipment_platform_patch01 = patches.Rectangle( - ( - equipment_platform_x - equipment_platform_side_length / 2, - equipment_platform_y - equipment_platform_side_length / 2, - ), - equipment_platform_side_length, - equipment_platform_side_length, - color=equipment_platform_color, - fill=True, - label="Equipment platform", - zorder=1, - ) - equipment_platform_patch10 = patches.Rectangle( - ( - equipment_platform_x - equipment_platform_side_length / 2, - equipment_platform_y - equipment_platform_side_length / 2, - ), - equipment_platform_side_length, - equipment_platform_side_length, - color=equipment_platform_color, - fill=True, - label="Equipment platform", - zorder=1, - ) - ax[0, 1].add_patch(equipment_platform_patch01) - ax[1, 0].add_patch(equipment_platform_patch10) - - component_areas["equipment_platform_area_m2"] = equipment_platform_area - - ## add hvdc cable - if ( - design_scenario["transportation"] == "hvdc" - or design_scenario["transportation"] == "hvdc+pipeline" - ): - ax[0, 0].plot( - [onshorex + onshore_substation_x_side_length, 10000], - [ - onshorey - onshore_substation_y_side_length, - onshorey - onshore_substation_y_side_length, - ], - "--", - color=cable_color, - label="HVDC cable", - ) - ax[0, 1].plot( - [-50000, substation_x], - [substation_y - 100, substation_y - 100], - "--", - color=cable_color, - label="HVDC cable", - zorder=0, - ) - ax[1, 0].plot( - [-5000, substation_x], - [substation_y - 2, substation_y - 2], - "--", - color=cable_color, - label="HVDC cable", - zorder=0, - ) - - ## add onshore substation - if ( - design_scenario["transportation"] == "hvdc" - or design_scenario["transportation"] == "hvdc+pipeline" - ): - onshore_substation_patch00 = patches.Rectangle( - ( - onshorex + 0.2 * onshore_substation_y_side_length, - onshorey - onshore_substation_y_side_length * 1.2, - ), - onshore_substation_x_side_length, - onshore_substation_y_side_length, - fill=True, - color=substation_color, - label="Substation*", - zorder=11, - ) - ax[0, 0].add_patch(onshore_substation_patch00) - - component_areas["onshore_substation_area_m2"] = onshore_substation_area - - ## add transport pipeline - if design_scenario["transportation"] == "colocated": - # add hydrogen pipeline to end use - linetype = "-." - label = "Pipeline to storage/end-use" - linewidth = 1.0 - - ax[ax_index_plant].plot( - [onshorex, -10000], - [onshorey, onshorey], - linetype, - color=pipe_color, - label=label, - linewidth=linewidth, - zorder=0, - ) - - ax[ax_index_detail].plot( - [onshorex, -10000], - [onshorey, onshorey], - linetype, - color=pipe_color, - label=label, - linewidth=linewidth, - zorder=0, - ) - if ( - design_scenario["transportation"] == "pipeline" - or design_scenario["transportation"] == "hvdc+pipeline" - or ( - design_scenario["transportation"] == "hvdc" - and design_scenario["h2_storage_location"] == "platform" - ) - ): - linetype = "-." - label = "Transport pipeline" - linewidth = 1.0 - - ax[ax_index_plant].plot( - [onshorex, 1000], - [onshorey + 2, onshorey + 2], - linetype, - color=pipe_color, - label=label, - linewidth=linewidth, - zorder=0, - ) - - if design_scenario["wind_location"] == "offshore": - ax[ax_index_wind_plant].plot( - [-5000, substation_x], - [substation_y + 100, substation_y + 100], - linetype, - linewidth=linewidth, - color=pipe_color, - label=label, - zorder=0, - ) - ax[ax_index_detail].plot( - [-5000, substation_x], - [substation_y + 2, substation_y + 2], - linetype, - linewidth=linewidth, - color=pipe_color, - label=label, - zorder=0, - ) - - if ( - design_scenario["transportation"] == "hvdc" - or design_scenario["transportation"] == "hvdc+pipeline" - ) and design_scenario["h2_storage_location"] == "platform": - h2cx = onshorex - compressor_side - h2cy = onshorey - compressor_side + 2 - h2cax = ax[ax_index_plant] - else: - h2cx = substation_x - substation_side_length - h2cy = substation_y - h2cax = ax[ax_index_detail] - - if design_scenario["wind_location"] == "onshore": - compressor_patch01 = patches.Rectangle( - (origin_x, origin_y), - compressor_side, - compressor_side, - color=compressor_color, - fill=None, - label="Transport compressor*", - hatch="+++", - zorder=20, - ) - ax[ax_index_plant].add_patch(compressor_patch01) - - compressor_patch10 = patches.Rectangle( - (h2cx, h2cy), - compressor_side, - compressor_side, - color=compressor_color, - fill=None, - label="Transport compressor*", - hatch="+++", - zorder=20, - ) - h2cax.add_patch(compressor_patch10) - - component_areas["compressor_area_m2"] = compressor_area - - ## add plant components - if design_scenario["electrolyzer_location"] == "onshore": - electrolyzer_x = onshorex - electrolyzer_y = onshorey - electrolyzer_patch = patches.Rectangle( - (electrolyzer_x, electrolyzer_y), - electrolyzer_side, - electrolyzer_side, - color=electrolyzer_color, - fill=None, - label="H$_2$ Electrolyzer", - zorder=20, - hatch=electrolyzer_hatch, - ) - ax[ax_index_plant].add_patch(electrolyzer_patch) - component_areas["electrolyzer_area_m2"] = electrolyzer_area - - if design_scenario["wind_location"] == "onshore": - electrolyzer_patch = patches.Rectangle( - (onshorex - h2_storage_side, onshorey + 4), - electrolyzer_side, - electrolyzer_side, - color=electrolyzer_color, - fill=None, - label="H$_2$ Electrolyzer", - zorder=20, - hatch=electrolyzer_hatch, - ) - ax[ax_index_detail].add_patch(electrolyzer_patch) - - elif design_scenario["electrolyzer_location"] == "platform": - dx = equipment_platform_x - equipment_platform_side_length / 2 - dy = equipment_platform_y - equipment_platform_side_length / 2 - e_side_y = equipment_platform_side_length - e_side_x = electrolyzer_area / e_side_y - d_side_y = equipment_platform_side_length - d_side_x = desal_equipment_area / d_side_y - electrolyzer_x = dx + d_side_x - electrolyzer_y = dy - - electrolyzer_patch = patches.Rectangle( - (electrolyzer_x, electrolyzer_y), - e_side_x, - e_side_y, - color=electrolyzer_color, - fill=None, - zorder=20, - label="H$_2$ Electrolyzer", - hatch=electrolyzer_hatch, - ) - ax[ax_index_detail].add_patch(electrolyzer_patch) - desal_patch = patches.Rectangle( - (dx, dy), - d_side_x, - d_side_y, - color=desal_color, - zorder=21, - fill=None, - label="Desalinator", - hatch=desalinator_hatch, - ) - ax[ax_index_detail].add_patch(desal_patch) - component_areas["desalination_area_m2"] = desal_equipment_area - - elif design_scenario["electrolyzer_location"] == "turbine": - electrolyzer_patch11 = patches.Rectangle( - (turbine_x[0], turbine_y[0] + tower_base_radius), - electrolyzer_side, - electrolyzer_side, - color=electrolyzer_color, - fill=None, - zorder=20, - label="H$_2$ Electrolyzer", - hatch=electrolyzer_hatch, - ) - ax[ax_index_turbine_detail].add_patch(electrolyzer_patch11) - desal_patch11 = patches.Rectangle( - (turbine_x[0] - desal_equipment_side, turbine_y[0] + tower_base_radius), - desal_equipment_side, - desal_equipment_side, - color=desal_color, - zorder=21, - fill=None, - label="Desalinator", - hatch=desalinator_hatch, - ) - ax[ax_index_turbine_detail].add_patch(desal_patch11) - component_areas["desalination_area_m2"] = desal_equipment_area - i = 0 - for x, y in zip(turbine_x, turbine_y): - if i == 0: - elabel = "H$_2$ Electrolyzer" - dlabel = "Desalinator" - else: - elabel = None - dlabel = None - electrolyzer_patch01 = patches.Rectangle( - (x, y + tower_base_radius), - electrolyzer_side, - electrolyzer_side, - color=electrolyzer_color, - fill=None, - zorder=20, - label=elabel, - hatch=electrolyzer_hatch, - ) - desal_patch01 = patches.Rectangle( - (x - desal_equipment_side, y + tower_base_radius), - desal_equipment_side, - desal_equipment_side, - color=desal_color, - zorder=21, - fill=None, - label=dlabel, - hatch=desalinator_hatch, - ) - ax[ax_index_wind_plant].add_patch(electrolyzer_patch01) - ax[ax_index_wind_plant].add_patch(desal_patch01) - i += 1 - - h2_storage_hatch = "\\\\\\" - if design_scenario["h2_storage_location"] == "onshore" and ( - h2integrate_config["h2_storage"]["type"] != "none" - ): - h2_storage_patch = patches.Rectangle( - (onshorex - h2_storage_side, onshorey - h2_storage_side - 2), - h2_storage_side, - h2_storage_side, - color=h2_storage_color, - fill=None, - label="H$_2$ storage", - hatch=h2_storage_hatch, - ) - ax[ax_index_plant].add_patch(h2_storage_patch) - component_areas["h2_storage_area_m2"] = h2_storage_area - - if design_scenario["wind_location"] == "onshore": - h2_storage_patch = patches.Rectangle( - (onshorex - h2_storage_side, onshorey - h2_storage_side - 2), - h2_storage_side, - h2_storage_side, - color=h2_storage_color, - fill=None, - label="H$_2$ storage", - hatch=h2_storage_hatch, - ) - ax[ax_index_detail].add_patch(h2_storage_patch) - component_areas["h2_storage_area_m2"] = h2_storage_area - elif design_scenario["h2_storage_location"] == "platform" and ( - h2integrate_config["h2_storage"]["type"] != "none" - ): - s_side_y = equipment_platform_side_length - s_side_x = h2_storage_area / s_side_y - sx = equipment_platform_x - equipment_platform_side_length / 2 - sy = equipment_platform_y - equipment_platform_side_length / 2 - if design_scenario["electrolyzer_location"] == "platform": - sx += equipment_platform_side_length - s_side_x - - h2_storage_patch = patches.Rectangle( - (sx, sy), - s_side_x, - s_side_y, - color=h2_storage_color, - fill=None, - label="H$_2$ storage", - hatch=h2_storage_hatch, - ) - ax[ax_index_detail].add_patch(h2_storage_patch) - component_areas["h2_storage_area_m2"] = h2_storage_area - - elif design_scenario["h2_storage_location"] == "turbine": - if h2integrate_config["h2_storage"]["type"] == "turbine": - h2_storage_patch = patches.Circle( - (turbine_x[0], turbine_y[0]), - radius=tower_base_diameter / 2, - color=h2_storage_color, - fill=None, - label="H$_2$ storage", - hatch=h2_storage_hatch, - ) - ax[ax_index_turbine_detail].add_patch(h2_storage_patch) - component_areas["h2_storage_area_m2"] = h2_storage_area - i = 0 - for x, y in zip(turbine_x, turbine_y): - if i == 0: - slabel = "H$_2$ storage" - else: - slabel = None - h2_storage_patch = patches.Circle( - (x, y), - radius=tower_base_diameter / 2, - color=h2_storage_color, - fill=None, - label=None, - hatch=h2_storage_hatch, - ) - ax[ax_index_wind_plant].add_patch(h2_storage_patch) - elif h2integrate_config["h2_storage"]["type"] == "pressure_vessel": - h2_storage_side = np.sqrt(h2_storage_area / h2integrate_config["plant"]["num_turbines"]) - h2_storage_patch = patches.Rectangle( - ( - turbine_x[0] - h2_storage_side - desal_equipment_side, - turbine_y[0] + tower_base_radius, - ), - width=h2_storage_side, - height=h2_storage_side, - color=h2_storage_color, - fill=None, - label="H$_2$ storage", - hatch=h2_storage_hatch, - ) - ax[ax_index_turbine_detail].add_patch(h2_storage_patch) - component_areas["h2_storage_area_m2"] = h2_storage_area - for i in range(zip(turbine_x, turbine_y)): - if i == 0: - slabel = "H$_2$ storage" - else: - slabel = None - h2_storage_patch = patches.Rectangle( - ( - turbine_x[i] - h2_storage_side - desal_equipment_side, - turbine_y[i] + tower_base_radius, - ), - width=h2_storage_side, - height=h2_storage_side, - color=h2_storage_color, - fill=None, - label=slabel, - hatch=h2_storage_hatch, - ) - ax[ax_index_wind_plant].add_patch(h2_storage_patch) - - ## add battery - if "battery" in hopp_config["technologies"].keys(): - component_areas["battery_area_m2"] = hopp_results["hybrid_plant"].battery.footprint_area - if design_scenario["battery_location"] == "onshore": - battery_side_y = np.sqrt(hopp_results["hybrid_plant"].battery.footprint_area) - battery_side_x = battery_side_y - - batteryx = electrolyzer_x - - batteryy = electrolyzer_y + electrolyzer_side + 10 - - battery_patch = patches.Rectangle( - (batteryx, batteryy), - battery_side_x, - battery_side_y, - color=battery_color, - fill=None, - label="Battery array", - hatch=battery_hatch, - ) - ax[ax_index_plant].add_patch(battery_patch) - - if design_scenario["wind_location"] == "onshore": - battery_patch = patches.Rectangle( - (batteryx, batteryy), - battery_side_x, - battery_side_y, - color=battery_color, - fill=None, - label="Battery array", - hatch=battery_hatch, - ) - ax[ax_index_detail].add_patch(battery_patch) - - elif design_scenario["battery_location"] == "platform": - battery_side_y = equipment_platform_side_length - battery_side_x = hopp_results["hybrid_plant"].battery.footprint_area / battery_side_y - - batteryx = equipment_platform_x - equipment_platform_side_length / 2 - batteryy = equipment_platform_y - equipment_platform_side_length / 2 - - battery_patch = patches.Rectangle( - (batteryx, batteryy), - battery_side_x, - battery_side_y, - color=battery_color, - fill=None, - label="Battery array", - hatch=battery_hatch, - ) - ax[ax_index_detail].add_patch(battery_patch) - - else: - battery_side_y = 0.0 - battery_side_x = 0.0 - - ## add solar - if hopp_config["site"]["solar"]: - component_areas["pv_area_m2"] = hopp_results["hybrid_plant"].pv.footprint_area - if design_scenario["pv_location"] == "offshore": - solar_side_y = equipment_platform_side_length - solar_side_x = hopp_results["hybrid_plant"].pv.footprint_area / solar_side_y - - solarx = equipment_platform_x - equipment_platform_side_length / 2 - solary = equipment_platform_y - equipment_platform_side_length / 2 - - solar_patch = patches.Rectangle( - (solarx, solary), - solar_side_x, - solar_side_y, - color=solar_color, - fill=None, - label="Solar array", - hatch=solar_hatch, - ) - ax[ax_index_detail].add_patch(solar_patch) - else: - solar_side_y = np.sqrt(hopp_results["hybrid_plant"].pv.footprint_area) - solar_side_x = hopp_results["hybrid_plant"].pv.footprint_area / solar_side_y - - solarx = electrolyzer_x - - solary = electrolyzer_y + electrolyzer_side + 10 - - if "battery" in hopp_config["technologies"].keys(): - solary += battery_side_y + 10 - - solar_patch = patches.Rectangle( - (solarx, solary), - solar_side_x, - solar_side_y, - color=solar_color, - fill=None, - label="Solar array", - hatch=solar_hatch, - ) - - ax[ax_index_plant].add_patch(solar_patch) - - if design_scenario["wind_location"] != "offshore": - solar_patch = patches.Rectangle( - (solarx, solary), - solar_side_x, - solar_side_y, - color=solar_color, - fill=None, - label="Solar array", - hatch=solar_hatch, - ) - - ax[ax_index_detail].add_patch(solar_patch) - - else: - solar_side_x = 0.0 - solar_side_y = 0.0 - - ## add wave - if hopp_config["site"]["wave"]: - # get wave generation area geometry - num_devices = hopp_config["technologies"]["wave"]["num_devices"] - distance_to_shore = ( - hopp_config["technologies"]["wave"]["cost_inputs"]["distance_to_shore"] * 1e3 - ) - number_rows = hopp_config["technologies"]["wave"]["cost_inputs"]["number_rows"] - device_spacing = hopp_config["technologies"]["wave"]["cost_inputs"]["device_spacing"] - row_spacing = hopp_config["technologies"]["wave"]["cost_inputs"]["row_spacing"] - - # calculate wave generation area dimenstions - wave_side_y = device_spacing * np.ceil(num_devices / number_rows) - wave_side_x = row_spacing * (number_rows) - wave_area = wave_side_x * wave_side_y - component_areas["wave_area_m2"] = wave_area - - # generate wave generation patch - wavex = substation_x - wave_side_x - wavey = substation_y + distance_to_shore - wave_patch = patches.Rectangle( - (wavex, wavey), - wave_side_x, - wave_side_y, - color=wave_color, - fill=None, - label="Wave array", - hatch=wave_hatch, - zorder=1, - ) - ax[ax_index_wind_plant].add_patch(wave_patch) - - # add electrical transmission for wave - wave_export_cable_coords_x = [substation_x, substation_x] - wave_export_cable_coords_y = [substation_y, substation_y + distance_to_shore] - - ax[ax_index_wind_plant].plot( - wave_export_cable_coords_x, - wave_export_cable_coords_y, - cable_color, - zorder=0, - ) - ax[ax_index_detail].plot( - wave_export_cable_coords_x, - wave_export_cable_coords_y, - cable_color, - zorder=0, - ) - - if design_scenario["wind_location"] == "offshore": - allpoints = cable_array_points.flatten() - else: - allpoints = turbine_x - - allpoints = allpoints[~np.isnan(allpoints)] - - if design_scenario["wind_location"] == "offshore": - roundto = -2 - ax[ax_index_plant].set( - xlim=[ - round(np.min(onshorex - 100), ndigits=roundto), - round( - np.max( - [ - onshorex, - onshore_substation_x_side_length, - electrolyzer_side, - solar_side_x, - ] - ) - * 1.8, - ndigits=roundto, - ), - ], - ylim=[ - round(np.min(onshorey - 100), ndigits=roundto), - round( - np.max(onshorey + battery_side_y + electrolyzer_side + solar_side_y + 100) - * 1.9, - ndigits=roundto, - ), - ], - ) - ax[ax_index_plant].set(aspect="equal") - - roundto = -3 - point_range_x = np.max(allpoints) - np.min(allpoints) - point_range_y = np.max(turbine_y) - np.min(turbine_y) - ax[ax_index_wind_plant].set( - xlim=[ - round(np.min(allpoints) - 0.5 * point_range_x, ndigits=roundto), - round(np.max(allpoints) + 0.5 * point_range_x, ndigits=roundto), - ], - ylim=[ - round(np.min(turbine_y) - 0.3 * point_range_y, ndigits=roundto), - round(np.max(turbine_y) + 0.3 * point_range_y, ndigits=roundto), - ], - ) - # ax[ax_index_wind_plant].autoscale() - ax[ax_index_wind_plant].set(aspect="equal") - # ax[ax_index_wind_plant].xaxis.set_major_locator(ticker.\ - # MultipleLocator(np.round(point_range_x*0.5, decimals=-3))) - # ax[ax_index_wind_plant].yaxis.set_major_locator(ticker.\ - # MultipleLocator(np.round(point_range_y*0.5, device_spacing=-3))) - - else: - roundto = -3 - point_range_x = np.max(allpoints) - np.min(allpoints) - point_range_y = np.max(turbine_y) - onshorey - ax[ax_index_plant].set( - xlim=[ - round(np.min(allpoints) - 0.7 * point_range_x, ndigits=roundto), - round(np.max(allpoints + 0.7 * point_range_x), ndigits=roundto), - ], - ylim=[ - round(np.min(onshorey) - 0.2 * point_range_y, ndigits=roundto), - round(np.max(turbine_y) + 1.0 * point_range_y, ndigits=roundto), - ], - ) - # ax[ax_index_plant].autoscale() - ax[ax_index_plant].set(aspect="equal") - # ax[ax_index_plant].xaxis.set_major_locator(ticker.MultipleLocator(2000)) - # ax[ax_index_plant].yaxis.set_major_locator(ticker.MultipleLocator(1000)) - - if design_scenario["wind_location"] == "offshore": - roundto = -2 - ax[ax_index_detail].set( - xlim=[ - round(origin_x - 400, ndigits=roundto), - round(origin_x + 100, ndigits=roundto), - ], - ylim=[ - round(origin_y - 200, ndigits=roundto), - round(origin_y + 200, ndigits=roundto), - ], - ) - ax[ax_index_detail].set(aspect="equal") - else: - roundto = -2 - - if "pv" in hopp_config["technologies"].keys(): - xmax = round( - np.max([onshorex, electrolyzer_side, battery_side_x, solar_side_x]) * 1.1, - ndigits=roundto, - ) - ymax = round( - onshorey + (solar_side_y + electrolyzer_side + battery_side_y) * 1.15, - ndigits=roundto, - ) - else: - xmax = round(np.max([onshorex]) * 1.1, ndigits=roundto) - ymax = round( - onshorey + (electrolyzer_side + battery_side_y + solar_side_y) * 1.1, - ndigits=roundto, - ) - ax[ax_index_detail].set( - xlim=[ - round(onshorex - 10, ndigits=roundto), - xmax, - ], - ylim=[ - round(onshorey - 200, ndigits=roundto), - ymax, - ], - ) - ax[ax_index_detail].set(aspect="equal") - - if design_scenario["wind_location"] == "offshore": - tower_buffer0 = 10 - tower_buffer1 = 10 - roundto = -1 - ax[ax_index_turbine_detail].set( - xlim=[ - round( - turbine_x[0] - tower_base_radius - tower_buffer0 - 50, - ndigits=roundto, - ), - round( - turbine_x[0] + tower_base_radius + 3 * tower_buffer1, - ndigits=roundto, - ), - ], - ylim=[ - round( - turbine_y[0] - tower_base_radius - 2 * tower_buffer0, - ndigits=roundto, - ), - round( - turbine_y[0] + tower_base_radius + 4 * tower_buffer1, - ndigits=roundto, - ), - ], - ) - ax[ax_index_turbine_detail].set(aspect="equal") - ax[ax_index_turbine_detail].xaxis.set_major_locator(ticker.MultipleLocator(10)) - ax[ax_index_turbine_detail].yaxis.set_major_locator(ticker.MultipleLocator(10)) - # ax[0,1].legend(frameon=False) - # ax[0,1].axis('off') - - if design_scenario["wind_location"] == "offshore": - labels = [ - "(a) Onshore plant", - "(b) Offshore plant", - "(c) Equipment platform and substation", - "(d) NW-most wind turbine", - ] - else: - labels = ["(a) Full plant", "(b) Non-wind plant detail"] - for axi, label in zip(ax.flatten(), labels): - axi.legend(frameon=False, ncol=2) # , ncol=2, loc="best") - axi.set(xlabel="Easting (m)", ylabel="Northing (m)") - axi.set_title(label, loc="left") - # axi.spines[['right', 'top']].set_visible(False) - - ## save the plot - plt.tight_layout() - savepaths = [ - output_dir / "figures/layout", - output_dir / "data", - ] - if save_plots: - for savepath in savepaths: - if not savepath.exists(): - savepath.mkdir(parents=True) - plt.savefig(savepaths[0] / f"plant_layout_{plant_design_number}.png", transparent=True) - - df = pd.DataFrame([component_areas]) - df.to_csv( - savepaths[1] / "fcomponent_areas_layout_{plant_design_number}.csv", - index=False, - ) - - if show_plots: - plt.show() - else: - plt.close() - - -def save_energy_flows( - hybrid_plant: HoppInterface.system, - electrolyzer_physics_results, - solver_results, - hours, - h2_storage_results, - simulation_length=8760, - output_dir="./output/", -): - if isinstance(output_dir, str): - output_dir = Path(output_dir).resolve() - - output = {} - if hybrid_plant.pv: - solar_plant_power = np.array(hybrid_plant.pv.generation_profile[0:simulation_length]) - output.update({"pv generation [kW]": solar_plant_power}) - if hybrid_plant.wind: - wind_plant_power = np.array(hybrid_plant.wind.generation_profile[0:simulation_length]) - output.update({"wind generation [kW]": wind_plant_power}) - if hybrid_plant.wave: - wave_plant_power = np.array(hybrid_plant.wave.generation_profile[0:simulation_length]) - output.update({"wave generation [kW]": wave_plant_power}) - if hybrid_plant.battery: - battery_power_out_mw = hybrid_plant.battery.outputs.P - output.update( - {"battery discharge [kW]": [(int(p > 0)) * p for p in battery_power_out_mw]} - ) # convert from MW to kW and extract only discharging - output.update( - {"battery charge [kW]": [-(int(p < 0)) * p for p in battery_power_out_mw]} - ) # convert from MW to kW and extract only charging - output.update({"battery state of charge [%]": hybrid_plant.battery.outputs.dispatch_SOC}) - total_generation_hourly = hybrid_plant.grid._system_model.Outputs.system_pre_interconnect_kwac[ - 0:simulation_length - ] - output.update({"total generation hourly [kW]": total_generation_hourly}) - output.update( - { - "total generation curtailed hourly [kW]": hybrid_plant.grid.generation_curtailed[ - 0:simulation_length - ] - } - ) - output.update({"total accessory power required [kW]": solver_results[0]}) - output.update({"grid energy usage hourly [kW]": solver_results[1]}) - output.update({"desal energy hourly [kW]": [solver_results[2]] * simulation_length}) - output.update( - { - "electrolyzer energy hourly [kW]": electrolyzer_physics_results[ - "power_to_electrolyzer_kw" - ] - } - ) - output.update({"electrolyzer bop energy hourly [kW]": solver_results[5]}) - output.update( - {"transport compressor energy hourly [kW]": [solver_results[3]] * simulation_length} - ) - output.update({"storage energy hourly [kW]": [solver_results[4]] * simulation_length}) - output.update( - { - "h2 production hourly [kg]": electrolyzer_physics_results["H2_Results"][ - "Hydrogen Hourly Production [kg/hr]" - ] - } - ) - if "hydrogen_storage_soc" in h2_storage_results: - output.update({"hydrogen storage SOC [kg]": h2_storage_results["hydrogen_storage_soc"]}) - if "hydrogen_demand_kgphr" in h2_storage_results: - output.update({"hydrogen demand [kg/h]": h2_storage_results["hydrogen_demand_kgphr"]}) - - df = pd.DataFrame.from_dict(output) - - filepath = output_dir / "data/production" - - if not filepath.exists(): - filepath.mkdir(parents=True) - - df.to_csv(filepath / "energy_flows.csv") - - return output - - -def calculate_lca( - wind_annual_energy_kwh, - solar_pv_annual_energy_kwh, - energy_shortfall_hopp, - h2_annual_prod_kg, - energy_to_electrolyzer_kwh, - hopp_config, - h2integrate_config, - total_accessory_power_renewable_kw, - total_accessory_power_grid_kw, - plant_design_scenario_number, - incentive_option_number, -): - """ - Function to perform Life Cycle Assessment (LCA) of the simulated system. - Calculates Scope 1, 2, and 3 average emissions over the lifetime of the plant in kg CO2e per - unit mass of product produced. - CO2e or carbon dioxide equivalent is a metric for the global warming potential of different - greenhouse gases (GHGs) by converting their emissions to the equivalent amount of CO2. - Leverages ANL's GREET model to determine emission intensity (EI), efficiency, feedstock - consumption, and energy consumption values of various processes - Leverages NREL's Cambium API to determine future grid generation mixes and emissions intensities - of grid electricity consumption - - Args: - wind_annual_energy_kwh (float): Annual energy from wind power (kWh) - solar_pv_annual_energy_kwh (float): Annual energy from solar pv power (kWh) - energy_shortfall_hopp: Total electricity to electrolyzer & peripherals from grid power (kWh) - h2_annual_prod_kg: Lifetime average annual H2 production accounting for electrolyzer - degradation (kg H2/year) - energy_to_electrolyzer_kwh: Total electricity to electrolyzer from grid power (kWh) - hopp_config (dict): HOPP configuration inputs based on input files - h2integrate_config (H2IntegrateSimulationConfig): all inputs to the h2integrate simulation - total_accessory_power_renewable_kw (numpy.ndarray): Total electricity to electrolysis - peripherals from renewable power (kWh) with shape = (8760,) - total_accessory_power_grid_kw (numpy.ndarray): Total electricity to electrolysis - peripherals from grid power (kWh) with shape = (8760,) - plant_design_scenario_number (int): plant design scenario number - incentive_option_number (int): incentive option number - - Returns: - lca_df (pandas.DataFrame): Pandas DataFrame containing average emissions intensities over - lifetime of plant and other relevant data - """ - # TODO: - # confirm site lat/long is proper for where electricity use will be - # (set from iron_pre or iron_win?) - - # Load relevant config and results data from HOPP and H2Integrate: - site_latitude = hopp_config["site"]["data"]["lat"] - site_longitude = hopp_config["site"]["data"]["lon"] - project_lifetime = h2integrate_config["project_parameters"][ - "project_lifetime" - ] # system lifetime (years) - plant_design_scenario = h2integrate_config["plant_design"][ - f"scenario{plant_design_scenario_number}" - ] # plant design scenario number - tax_incentive_option = h2integrate_config["policy_parameters"][ - f"option{incentive_option_number}" - ] # tax incentive option number - - # battery_annual_energy_kwh = hopp_results["annual_energies"][ - # "battery" - # ] # annual energy from battery (kWh) - # battery_system_capacity_kwh = hopp_results["hybrid_plant"].battery.system_capacity_kwh - # # battery rated capacity (kWh) - wind_turbine_rating_MW = ( - hopp_config["technologies"]["wind"]["turbine_rating_kw"] / 1000 - ) # wind turbine rating (MW) - wind_model = hopp_config["technologies"]["wind"]["model_name"] # wind model used in analysis - - # Determine renewable technologies in system and define renewables_case string for output file - renewable_technologies_modeled = [ - tech for tech in hopp_config["technologies"] if tech != "grid" - ] - if len(renewable_technologies_modeled) > 1: - renewables_case = "+".join(renewable_technologies_modeled) - elif len(renewable_technologies_modeled) == 1: - renewables_case = str(renewable_technologies_modeled[0]) - else: - renewables_case = "No-ren" - - # Determine grid case and define grid_case string for output file - # NOTE: original LCA project code calculations were created with functionality for a - # hybrid-grid case, however this functionality was removed during prior HOPP refactors - # NOTE: In future, update logic below to include 'hybrid-grid' case. Possibly look at - # input config yamls and technologies present for this logic?(pending modular framework): - # if only grid present -> grid-only? - # if any renewables + grid present -> hybrid-grid? - # if only renewables present -> off-grid? - if h2integrate_config["project_parameters"]["grid_connection"]: - if h2integrate_config["electrolyzer"]["sizing"]["hydrogen_dmd"] is not None: - grid_case = "grid-only" - else: - grid_case = "off-grid" - else: - grid_case = "off-grid" - - # Capture electrolyzer configuration variables / strings for output files - if h2integrate_config["electrolyzer"]["include_degradation_penalty"]: - electrolyzer_degradation = "True" - else: - electrolyzer_degradation = "False" - if plant_design_scenario["transportation"] == "colocated": - electrolyzer_centralization = "Centralized" - else: - electrolyzer_centralization = "Distributed" - electrolyzer_optimized = h2integrate_config["electrolyzer"]["pem_control_type"] - electrolyzer_type = h2integrate_config["lca_config"]["electrolyzer_type"] - number_of_electrolyzer_clusters = int( - ceildiv( - h2integrate_config["electrolyzer"]["rating"], - h2integrate_config["electrolyzer"]["cluster_rating_MW"], - ) - ) - - # Calculate average annual and lifetime h2 production - h2_lifetime_prod_kg = ( - h2_annual_prod_kg * project_lifetime - ) # Lifetime H2 production accounting for electrolyzer degradation (kg H2) - - # Calculate energy to electrolyzer and peripherals when hybrid-grid case - if grid_case == "hybrid-grid": - # Total electricity to electrolyzer and peripherals from grid power (kWh) - energy_shortfall_hopp.shape = ( - project_lifetime, - 8760, - ) # Reshaped to be annual power (project_lifetime, 8760) - annual_energy_to_electrolysis_from_grid = np.mean( - energy_shortfall_hopp, axis=0 - ) # Lifetime Average Annual electricity to electrolyzer and peripherals from grid power - # shape = (8760,) - - # Calculate energy to electrolyzer and peripherals when grid-only case - if grid_case == "grid-only": - energy_to_peripherals = ( - total_accessory_power_renewable_kw + total_accessory_power_grid_kw - ) # Total electricity to peripherals from grid power (kWh) - annual_energy_to_electrolysis_from_grid = ( - energy_to_electrolyzer_kwh + energy_to_peripherals - ) # Average Annual electricity to electrolyzer and peripherals from grid power - # shape = (8760,) - - # Create dataframe for electrolyzer + peripherals grid power profiles if grid connected - if grid_case in ("grid-only", "hybrid-grid"): - electrolyzer_grid_profile_data_dict = { - "Energy to electrolysis from grid (kWh)": annual_energy_to_electrolysis_from_grid - } - electrolyzer_grid_profile_df = pd.DataFrame(data=electrolyzer_grid_profile_data_dict) - electrolyzer_grid_profile_df = electrolyzer_grid_profile_df.reset_index().rename( - columns={"index": "Interval"} - ) - electrolyzer_grid_profile_df["Interval"] = electrolyzer_grid_profile_df["Interval"] + 1 - electrolyzer_grid_profile_df = electrolyzer_grid_profile_df.set_index("Interval") - - # Instantiate lists that define technologies / processes and LCA scopes - # used to dynamically define key value pairs in dictionaries to store data - processes = [ - "electrolysis", - "smr", - "smr_ccs", - "atr", - "atr_ccs", - "NH3_electrolysis", - "NH3_smr", - "NH3_smr_ccs", - "NH3_atr", - "NH3_atr_ccs", - "steel_electrolysis", - "steel_smr", - "steel_smr_ccs", - "steel_atr", - "steel_atr_ccs", - "ng_dri", - "ng_dri_eaf", - "h2_electrolysis_dri", - "h2_electrolysis_dri_eaf", - ] - - scopes = ["Scope3", "Scope2", "Scope1", "Total"] - - # Instantiate dictionary of numpy objects (np.nan -> converts to np.float when assigned value) - # to hold EI values per cambium year - EI_values = { - f"{process}_{scope}_EI": globals().get(f"{process}_{scope}_EI", np.nan) - for process in processes - for scope in scopes - } - - # Instantiate dictionary of lists to hold EI time series (ts) data for all cambium years - # EI_values for each cambium year are appended to corresponding lists - ts_EI_data = {f"{process}_{scope}_EI": [] for process in processes for scope in scopes} - - ## GREET Data - # Define conversions - g_to_kg = 0.001 # 1 g = 0.001 kg - MT_to_kg = 1000 # 1 metric ton = 1000 kg - kWh_to_MWh = 0.001 # 1 kWh = 0.001 MWh - MWh_to_kWh = 1000 # 1 MWh = 1000 kWh - gal_H2O_to_MT = 0.00378541 # 1 US gallon of H2O = 0.00378541 metric tons - - # Instantiate GreetData class object, parse greet if not already parsed - # return class object and load data dictionary - greet_data = GREETData(greet_year=2023) - greet_data_dict = greet_data.data - - # ------------------------------------------------------------------------------ - # Natural Gas - # ------------------------------------------------------------------------------ - NG_combust_EI = greet_data_dict[ - "NG_combust_EI" - ] # GHG Emissions Intensity of Natural Gas combustion in a utility / industrial large boiler - # (g CO2e/MJ Natural Gas combusted) - NG_supply_EI = greet_data_dict[ - "NG_supply_EI" - ] # GHG Emissions Intensity of supplying Natural Gas to processes as a feedstock / process fuel - # (g CO2e/MJ Natural Gas consumed) - - # ------------------------------------------------------------------------------ - # Water - # ------------------------------------------------------------------------------ - if h2integrate_config["lca_config"]["feedstock_water_type"] == "desal": - H2O_supply_EI = greet_data_dict[ - "desal_H2O_supply_EI" - ] # GHG Emissions Intensity of RO desalination and supply of that water to processes - # (kg CO2e/gal H2O). - elif h2integrate_config["lca_config"]["feedstock_water_type"] == "ground": - H2O_supply_EI = greet_data_dict[ - "ground_H2O_supply_EI" - ] # GHG Emissions Intensity of ground water and supply of that water to processes - # (kg CO2e/gal H2O). - elif h2integrate_config["lca_config"]["feedstock_water_type"] == "surface": - H2O_supply_EI = greet_data_dict[ - "surface_H2O_supply_EI" - ] # GHG Emissions Intensity of surface water and supply of that water to processes - # (kg CO2e/gal H2O). - # ------------------------------------------------------------------------------ - # Lime - # ------------------------------------------------------------------------------ - lime_supply_EI = greet_data_dict[ - "lime_supply_EI" - ] # GHG Emissions Intensity of supplying Lime to processes accounting for limestone mining, - # lime production, lime processing, and lime transportation assuming 20 miles via Diesel engines - # (kg CO2e/kg lime) - # ------------------------------------------------------------------------------ - # Carbon Coke - # ------------------------------------------------------------------------------ - coke_supply_EI = greet_data_dict[ - "coke_supply_EI" - ] # GHG Emissions Intensity of supplying Coke to processes accounting for combustion - # and non-combustion emissions of coke production - # (kg CO2e/kg Coke) - # ------------------------------------------------------------------------------ - # Renewable infrastructure embedded emission intensities - # ------------------------------------------------------------------------------ - # NOTE: HOPP/H2Integrate version at time of dev can only model PEM electrolysis - if electrolyzer_type == "pem": - # ely_stack_capex_EI = greet_data_dict[ - # "pem_ely_stack_capex_EI" - # ] # PEM electrolyzer CAPEX emissions (kg CO2e/kg H2) - ely_stack_and_BoP_capex_EI = greet_data_dict[ - "pem_ely_stack_and_BoP_capex_EI" - ] # PEM electrolyzer stack CAPEX + Balance of Plant emissions (kg CO2e/kg H2) - elif electrolyzer_type == "alkaline": - # ely_stack_capex_EI = greet_data_dict[ - # "alk_ely_stack_capex_EI" - # ] # Alkaline electrolyzer CAPEX emissions (kg CO2e/kg H2) - ely_stack_and_BoP_capex_EI = greet_data_dict[ - "alk_ely_stack_and_BoP_capex_EI" - ] # Alkaline electrolyzer stack CAPEX + Balance of Plant emissions (kg CO2e/kg H2) - elif electrolyzer_type == "soec": - # ely_stack_capex_EI = greet_data_dict[ - # "soec_ely_stack_capex_EI" - # ] # SOEC electrolyzer CAPEX emissions (kg CO2e/kg H2) - ely_stack_and_BoP_capex_EI = greet_data_dict[ - "soec_ely_stack_and_BoP_capex_EI" - ] # SOEC electrolyzer stack CAPEX + Balance of Plant emissions (kg CO2e/kg H2) - wind_capex_EI = greet_data_dict["wind_capex_EI"] # Wind CAPEX emissions (g CO2e/kWh) - solar_pv_capex_EI = greet_data_dict[ - "solar_pv_capex_EI" - ] # Solar PV CAPEX emissions (g CO2e/kWh) - battery_EI = greet_data_dict["battery_LFP_EI"] # LFP Battery embodied emissions (g CO2e/kWh) - nuclear_BWR_capex_EI = greet_data_dict[ - "nuclear_BWR_capex_EI" - ] # Nuclear Boiling Water Reactor (BWR) CAPEX emissions (g CO2e/kWh) - nuclear_PWR_capex_EI = greet_data_dict[ - "nuclear_PWR_capex_EI" - ] # Nuclear Pressurized Water Reactor (PWR) CAPEX emissions (g CO2e/kWh) - coal_capex_EI = greet_data_dict["coal_capex_EI"] # Coal CAPEX emissions (g CO2e/kWh) - gas_capex_EI = greet_data_dict[ - "gas_capex_EI" - ] # Natural Gas Combined Cycle (NGCC) CAPEX emissions (g CO2e/kWh) - hydro_capex_EI = greet_data_dict["hydro_capex_EI"] # Hydro CAPEX emissions (g CO2e/kWh) - bio_capex_EI = greet_data_dict["bio_capex_EI"] # Biomass CAPEX emissions (g CO2e/kWh) - # geothermal_egs_capex_EI = greet_data_dict[ - # "geothermal_egs_capex_EI" - # ] # Geothermal EGS CAPEX emissions (g CO2e/kWh) - geothermal_binary_capex_EI = greet_data_dict[ - "geothermal_binary_capex_EI" - ] # Geothermal Binary CAPEX emissions (g CO2e/kWh) - geothermal_flash_capex_EI = greet_data_dict[ - "geothermal_flash_capex_EI" - ] # Geothermal Flash CAPEX emissions (g CO2e/kWh) - - # ------------------------------------------------------------------------------ - # Steam methane reforming (SMR) and Autothermal Reforming (ATR) - # Incumbent H2 production processes - # ------------------------------------------------------------------------------ - smr_HEX_eff = greet_data_dict["smr_HEX_eff"] # SMR Heat exchange efficiency (%) - # SMR without CCS - smr_steam_prod = greet_data_dict[ - "smr_steam_prod" - ] # Steam exported for SMR w/out CCS (MJ/kg H2) - smr_NG_consume = greet_data_dict[ - "smr_NG_consume" - ] # Natural gas consumption for SMR w/out CCS accounting for efficiency, NG as feed and - # process fuel for SMR and steam production (MJ-LHV/kg H2) - smr_electricity_consume = greet_data_dict[ - "smr_electricity_consume" - ] # Electricity consumption for SMR w/out CCS accounting for efficiency, electricity - # as a process fuel (kWh/kg H2) - # SMR with CCS - smr_ccs_steam_prod = greet_data_dict[ - "smr_ccs_steam_prod" - ] # Steam exported for SMR with CCS (MJ/kg H2) - smr_ccs_perc_capture = greet_data_dict["smr_ccs_perc_capture"] # CCS rate for SMR (%) - smr_ccs_NG_consume = greet_data_dict[ - "smr_ccs_NG_consume" - ] # Natural gas consumption for SMR with CCS accounting for efficiency, NG as feed and process - # fuel for SMR and steam production (MJ-LHV/kg H2) - smr_ccs_electricity_consume = greet_data_dict[ - "smr_ccs_electricity_consume" - ] # SMR via NG w/ CCS WTG Total Energy consumption (kWh/kg H2) - # ATR without CCS - atr_NG_consume = greet_data_dict[ - "atr_NG_consume" - ] # Natural gas consumption for ATR w/out CCS accounting for efficiency, NG as feed and - # process fuel for SMR and steam production (MJ-LHV/kg H2) - atr_electricity_consume = greet_data_dict[ - "atr_electricity_consume" - ] # Electricity consumption for ATR w/out CCS accounting for efficiency, electricity as a - # process fuel (kWh/kg H2) - # ATR with CCS - atr_ccs_perc_capture = greet_data_dict["atr_ccs_perc_capture"] # CCS rate for ATR (%) - atr_ccs_NG_consume = greet_data_dict[ - "atr_ccs_NG_consume" - ] # Natural gas consumption for ATR with CCS accounting for efficiency, NG as feed and - # process fuel for SMR and steam production (MJ-LHV/kg H2) - atr_ccs_electricity_consume = greet_data_dict[ - "atr_ccs_electricity_consume" - ] # Electricity consumption for ATR with CCS accounting for efficiency, electricity as a - # process fuel (kWh/kg H2) - - # ------------------------------------------------------------------------------ - # Hydrogen production via water electrolysis - # ------------------------------------------------------------------------------ - if electrolyzer_type == "pem": - ely_H2O_consume = greet_data_dict[ - "pem_ely_H2O_consume" - ] # H2O consumption for H2 production in PEM electrolyzer (gal H20/kg H2) - elif electrolyzer_type == "alkaline": - ely_H2O_consume = greet_data_dict[ - "alk_ely_H2O_consume" - ] # H2O consumption for H2 production in Alkaline electrolyzer (gal H20/kg H2) - elif electrolyzer_type == "soec": - ely_H2O_consume = greet_data_dict[ - "soec_ely_H2O_consume" - ] # H2O consumption for H2 production in High Temp SOEC electrolyzer (gal H20/kg H2) - # ------------------------------------------------------------------------------ - # Ammonia (NH3) - # ------------------------------------------------------------------------------ - NH3_NG_consume = greet_data_dict[ - "NH3_NG_consume" - ] # Natural gas consumption for combustion in the Haber-Bosch process / Boiler for Ammonia - # production (MJ/metric ton NH3) - NH3_H2_consume = greet_data_dict[ - "NH3_H2_consume" - ] # Gaseous Hydrogen consumption for Ammonia production, based on chemical balance and is - # applicable for all NH3 production pathways (kg H2/kg NH3) - NH3_electricity_consume = greet_data_dict[ - "NH3_electricity_consume" - ] # Total Electrical Energy consumption for Ammonia production (kWh/kg NH3) - - # ------------------------------------------------------------------------------ - # Steel - # ------------------------------------------------------------------------------ - # Values agnostic of DRI-EAF config - # NOTE: in future if accounting for different iron ore mining, pelletizing processes, - # and production processes, then add if statement to check h2integrate_config for - # iron production type (DRI, electrowinning, etc) - # iron_ore_mining_EI_per_MT_steel = greet_data_dict[ - # "DRI_iron_ore_mining_EI_per_MT_steel" - # ] # GHG Emissions Intensity of Iron ore mining for use in DRI-EAF Steel production - # # (kg CO2e/metric ton steel produced) - iron_ore_mining_EI_per_MT_ore = greet_data_dict[ - "DRI_iron_ore_mining_EI_per_MT_ore" - ] # GHG Emissions Intensity of Iron ore mining for use in DRI-EAF Steel production - # (kg CO2e/metric ton iron ore) - # iron_ore_pelletizing_EI_per_MT_steel = greet_data_dict[ - # "DRI_iron_ore_pelletizing_EI_per_MT_steel" - # ] # GHG Emissions Intensity of Iron ore pelletizing for use in DRI-EAF Steel production - # # (kg CO2e/metric ton steel produced) - iron_ore_pelletizing_EI_per_MT_ore = greet_data_dict[ - "DRI_iron_ore_pelletizing_EI_per_MT_ore" - ] # GHG Emissions Intensity of Iron ore pelletizing for use in DRI-EAF Steel production - # (kg CO2e/metric ton iron ore) - - # NOTE: in future if accounting for different steel productin processes (DRI-EAF vs XYZ), - # then add if statement to check h2integrate_config for steel production process and - # update HOPP > greet_data.py with specific variables for each process - steel_H2O_consume = greet_data_dict[ - "steel_H2O_consume" - ] # Total H2O consumption for DRI-EAF Steel production w/ 83% H2 and 0% scrap, accounts for - # water used in iron ore mining, pelletizing, DRI, and EAF - # (metric ton H2O/metric ton steel production) - steel_H2_consume = greet_data_dict[ - "steel_H2_consume" - ] # Hydrogen consumption for DRI-EAF Steel production w/ 83% H2 regardless of scrap - # (metric tons H2/metric ton steel production) - steel_NG_consume = greet_data_dict[ - "steel_NG_consume" - ] # Natural gas consumption for DRI-EAF Steel production accounting for DRI with 83% H2, - # and EAF + LRF (GJ/metric ton steel) - steel_electricity_consume = greet_data_dict[ - "steel_electricity_consume" - ] # Total Electrical Energy consumption for DRI-EAF Steel production accounting for - # DRI with 83% H2 and EAF + LRF (MWh/metric ton steel production) - steel_iron_ore_consume = greet_data_dict[ - "steel_iron_ore_consume" - ] # Iron ore consumption for DRI-EAF Steel production - # (metric ton iron ore/metric ton steel production) - steel_lime_consume = greet_data_dict[ - "steel_lime_consume" - ] # Lime consumption for DRI-EAF Steel production - # (metric ton lime/metric ton steel production) - - ## Load in Iron model outputs - # Read iron_performance.performances_df from pkl - iron_performance_fn = "{}/iron_performance/{:.3f}_{:.3f}_{:d}.pkl".format( - h2integrate_config["iron_out_fn"], - site_latitude, - site_longitude, - hopp_config["site"]["data"]["year"], - ) - iron_performance = load_dill_pickle(iron_performance_fn) - iron_performance = iron_performance.performances_df - # Instantiate objects to hold iron performance values - ng_dri_steel_prod = np.nan - ng_dri_pigiron_prod = np.nan - ng_dri_iron_ore_consume = np.nan - ng_dri_NG_consume = np.nan - ng_dri_electricity_consume = np.nan - ng_dri_H2O_consume = np.nan - ng_dri_eaf_steel_prod = np.nan - ng_dri_eaf_pigiron_prod = np.nan - ng_dri_eaf_iron_ore_consume = np.nan - ng_dri_eaf_lime_consume = np.nan - ng_dri_eaf_coke_consume = np.nan - ng_dri_eaf_NG_consume = np.nan - ng_dri_eaf_electricity_consume = np.nan - ng_dri_eaf_H2O_consume = np.nan - h2_dri_steel_prod = np.nan - h2_dri_pigiron_prod = np.nan - h2_dri_H2_consume = np.nan - h2_dri_iron_ore_consume = np.nan - h2_dri_NG_consume = np.nan - h2_dri_electricity_consume = np.nan - h2_dri_H2O_consume = np.nan - h2_dri_eaf_steel_prod = np.nan - h2_dri_eaf_pigiron_prod = np.nan - h2_dri_eaf_H2_consume = np.nan - h2_dri_eaf_iron_ore_consume = np.nan - h2_dri_eaf_lime_consume = np.nan - h2_dri_eaf_coke_consume = np.nan - h2_dri_eaf_NG_consume = np.nan - h2_dri_eaf_electricity_consume = np.nan - h2_dri_eaf_H2O_consume = np.nan - # Pull iron_performance values - if iron_performance["Product"].values[0] == "ng_dri": - # Note to Dakota from Jonathan - the denominator has been corrected, - # we're now getting performance per unit pig iron, not per unit steel - # Leave this code in though, I want to be able to build an option to - # calculate per unit steel instead of per unit iron - ng_dri_steel_prod = iron_performance.loc[ - iron_performance["Name"] == "Steel Production", "Model" - ].item() - # metric tonnes steel per year - ng_dri_pigiron_prod = iron_performance.loc[ - iron_performance["Name"] == "Pig Iron Production", "Model" - ].item() - # metric tonnes pig iron per year - capacity_denominator = h2integrate_config["iron_win"]["performance"]["capacity_denominator"] - if capacity_denominator == "iron": - steel_to_pigiron_ratio = 1 - elif capacity_denominator == "steel": - steel_to_pigiron_ratio = ng_dri_steel_prod / ng_dri_pigiron_prod - # conversion from MT steel to MT pig iron in denominator of units - ng_dri_iron_ore_consume = ( - iron_performance.loc[iron_performance["Name"] == "Iron Ore", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonnes ore / pellet consumed per metric tonne pig iron produced - ng_dri_NG_consume = ( - iron_performance.loc[iron_performance["Name"] == "Natural Gas", "Model"].item() - * steel_to_pigiron_ratio - ) - # GJ-LHV NG consumed per metric tonne pig iron produced - ng_dri_electricity_consume = ( - iron_performance.loc[iron_performance["Name"] == "Electricity", "Model"].item() - * steel_to_pigiron_ratio - ) - # MWh electricity consumed per metric tonne pig iron produced - ng_dri_H2O_consume = ( - iron_performance.loc[iron_performance["Name"] == "Raw Water Withdrawal", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonne H2O consumed per metric tonne pig iron produced - if iron_performance["Product"].values[0] == "ng_eaf": - ng_dri_eaf_steel_prod = iron_performance.loc[ - iron_performance["Name"] == "Steel Production", "Model" - ].item() - # metric tonnes steel per year - ng_dri_eaf_pigiron_prod = iron_performance.loc[ - iron_performance["Name"] == "Pig Iron Production", "Model" - ].item() - # metric tonnes pig iron per year - capacity_denominator = h2integrate_config["iron_win"]["performance"]["capacity_denominator"] - if capacity_denominator == "iron": - steel_to_pigiron_ratio = 1 - elif capacity_denominator == "steel": - steel_to_pigiron_ratio = ng_dri_eaf_steel_prod / ng_dri_eaf_pigiron_prod - # conversion from MT steel to MT pig iron in denominator of units - ng_dri_eaf_iron_ore_consume = ( - iron_performance.loc[iron_performance["Name"] == "Iron Ore", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonnes ore / pellet consumed per metric tonne pig iron produced - ng_dri_eaf_NG_consume = ( - iron_performance.loc[iron_performance["Name"] == "Natural Gas", "Model"].item() - * steel_to_pigiron_ratio - ) - # GJ-LHV NG consumed per metric tonne pig iron produced - ng_dri_eaf_electricity_consume = ( - iron_performance.loc[iron_performance["Name"] == "Electricity", "Model"].item() - * steel_to_pigiron_ratio - ) - # MWh electricity consumed per metric tonne pig iron produced - ng_dri_eaf_coke_consume = ( - iron_performance.loc[iron_performance["Name"] == "Carbon (Coke)", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonnes carbon coke consumed per metric tonne pig iron produced - ng_dri_eaf_lime_consume = ( - iron_performance.loc[iron_performance["Name"] == "Lime", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonnes carbon lime consumed per metric tonne pig iron produced - ng_dri_eaf_H2O_consume = ( - iron_performance.loc[iron_performance["Name"] == "Raw Water Withdrawal", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonne H2O consumed per metric tonne pig iron produced - if iron_performance["Product"].values[0] == "h2_dri": - h2_dri_steel_prod = iron_performance.loc[ - iron_performance["Name"] == "Steel Production", "Model" - ].item() - # metric tonnes steel per year - h2_dri_pigiron_prod = iron_performance.loc[ - iron_performance["Name"] == "Pig Iron Production", "Model" - ].item() - # metric tonnes pig iron per year - capacity_denominator = h2integrate_config["iron_win"]["performance"]["capacity_denominator"] - if capacity_denominator == "iron": - steel_to_pigiron_ratio = 1 - elif capacity_denominator == "steel": - steel_to_pigiron_ratio = h2_dri_steel_prod / h2_dri_pigiron_prod - # conversion from MT steel to MT pig iron in denominator of units - h2_dri_iron_ore_consume = ( - iron_performance.loc[iron_performance["Name"] == "Iron Ore", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonnes ore / pellet consumed per metric tonne pig iron produced - h2_dri_H2_consume = ( - iron_performance.loc[iron_performance["Name"] == "Hydrogen", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonne H2 consumed per metric tonne pig iron produced - h2_dri_NG_consume = ( - iron_performance.loc[iron_performance["Name"] == "Natural Gas", "Model"].item() - * steel_to_pigiron_ratio - ) - # GJ-LHV NG consumed per metric tonne pig iron produced - h2_dri_electricity_consume = ( - iron_performance.loc[iron_performance["Name"] == "Electricity", "Model"].item() - * steel_to_pigiron_ratio - ) - # MWh electricity consumed per metric tonne pig iron produced - h2_dri_H2O_consume = ( - iron_performance.loc[iron_performance["Name"] == "Raw Water Withdrawal", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonne H2O consume per metric tonne pig iron produced - if iron_performance["Product"].values[0] == "h2_eaf": - h2_dri_eaf_steel_prod = iron_performance.loc[ - iron_performance["Name"] == "Steel Production", "Model" - ].item() - # metric tonnes steel per year - h2_dri_eaf_pigiron_prod = iron_performance.loc[ - iron_performance["Name"] == "Pig Iron Production", "Model" - ].item() - # metric tonnes pig iron per year - capacity_denominator = h2integrate_config["iron_win"]["performance"]["capacity_denominator"] - if capacity_denominator == "iron": - steel_to_pigiron_ratio = 1 - elif capacity_denominator == "steel": - steel_to_pigiron_ratio = h2_dri_eaf_steel_prod / h2_dri_eaf_pigiron_prod - # conversion from MT steel to MT pig iron in denominator of units - h2_dri_eaf_iron_ore_consume = ( - iron_performance.loc[iron_performance["Name"] == "Iron Ore", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonnes ore / pellet consumed per metric tonne pig iron produced - h2_dri_eaf_H2_consume = ( - iron_performance.loc[iron_performance["Name"] == "Hydrogen", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonne H2 consumed per metric tonne pig iron produced - h2_dri_eaf_NG_consume = ( - iron_performance.loc[iron_performance["Name"] == "Natural Gas", "Model"].item() - * steel_to_pigiron_ratio - ) - # GJ-LHV NG consumed per metric tonne pig iron produced - h2_dri_eaf_electricity_consume = ( - iron_performance.loc[iron_performance["Name"] == "Electricity", "Model"].item() - * steel_to_pigiron_ratio - ) - # MWh electricity consumed per metric tonne pig iron produced - h2_dri_eaf_coke_consume = ( - iron_performance.loc[iron_performance["Name"] == "Carbon (Coke)", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonnes carbon coke consumed per metric tonne pig iron produced - h2_dri_eaf_lime_consume = ( - iron_performance.loc[iron_performance["Name"] == "Lime", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonnes carbon lime consumed per metric tonne pig iron produced - h2_dri_eaf_H2O_consume = ( - iron_performance.loc[iron_performance["Name"] == "Raw Water Withdrawal", "Model"].item() - * steel_to_pigiron_ratio - ) - # metric tonne H2O consume per metric tonne pig iron produced - - ## Cambium - # Define cambium_year - # NOTE: at time of dev hopp logic for LCOH = atb_year + 2yr + install_period(3yrs) = 5 years - cambium_year = h2integrate_config["project_parameters"]["financial_analysis_start_year"] + 3 - # Pull / download cambium data files - cambium_data = CambiumData( - lat=site_latitude, - lon=site_longitude, - year=cambium_year, - project_uuid=h2integrate_config["lca_config"]["cambium"]["project_uuid"], - scenario=h2integrate_config["lca_config"]["cambium"]["scenario"], - location_type=h2integrate_config["lca_config"]["cambium"]["location_type"], - time_type=h2integrate_config["lca_config"]["cambium"]["time_type"], - ) - - # Read in Cambium data file for each year available - # NOTE: Additional LRMER values for CO2, CH4, and NO2 are available through the cambium call - # that are not used in this analysis - for resource_file in cambium_data.resource_files: - # Read in csv file to a dataframe, update column names and indexes - cambium_data_df = pd.read_csv( - resource_file, - index_col=None, - header=0, - usecols=[ - "lrmer_co2e_c", - "lrmer_co2e_p", - "lrmer_co2e", - "generation", - "battery_MWh", - "biomass_MWh", - "beccs_MWh", - "canada_MWh", - "coal_MWh", - "coal-ccs_MWh", - "csp_MWh", - "distpv_MWh", - "gas-cc_MWh", - "gas-cc-ccs_MWh", - "gas-ct_MWh", - "geothermal_MWh", - "hydro_MWh", - "nuclear_MWh", - "o-g-s_MWh", - "phs_MWh", - "upv_MWh", - "wind-ons_MWh", - "wind-ofs_MWh", - ], - ) - cambium_data_df = cambium_data_df.reset_index().rename( - columns={ - "index": "Interval", - "lrmer_co2e_c": "LRMER CO2 equiv. combustion (kg-CO2e/MWh)", - "lrmer_co2e_p": "LRMER CO2 equiv. precombustion (kg-CO2e/MWh)", - "lrmer_co2e": "LRMER CO2 equiv. total (kg-CO2e/MWh)", - } - ) - cambium_data_df["Interval"] = cambium_data_df["Interval"] + 1 - cambium_data_df = cambium_data_df.set_index("Interval") - - if grid_case in ("grid-only", "hybrid-grid"): - # Calculate consumption and emissions factor for electrolysis powered by the grid - combined_data_df = pd.concat([electrolyzer_grid_profile_df, cambium_data_df], axis=1) - electrolysis_grid_electricity_consume = combined_data_df[ - "Energy to electrolysis from grid (kWh)" - ].sum() # Total energy to the electrolyzer from the grid (kWh) - electrolysis_scope3_grid_emissions = ( - (combined_data_df["Energy to electrolysis from grid (kWh)"] / 1000) - * combined_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"] - ).sum() # Scope 3 Electrolysis Emissions from grid electricity consumption (kg CO2e) - electrolysis_scope2_grid_emissions = ( - (combined_data_df["Energy to electrolysis from grid (kWh)"] / 1000) - * combined_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"] - ).sum() # Scope 2 Electrolysis Emissions from grid electricity consumption (kg CO2e) - - # Calculate annual percentages of nuclear, geothermal, hydropower, wind, solar, battery, - # and fossil fuel power in cambium grid mix (%) - generation_annual_total_MWh = cambium_data_df["generation"].sum() - generation_annual_nuclear_fraction = ( - cambium_data_df["nuclear_MWh"].sum() / generation_annual_total_MWh - ) - generation_annual_coal_oil_fraction = ( - cambium_data_df["coal_MWh"].sum() - + cambium_data_df["coal-ccs_MWh"].sum() - + cambium_data_df["o-g-s_MWh"].sum() - ) / generation_annual_total_MWh - generation_annual_gas_fraction = ( - cambium_data_df["gas-cc_MWh"].sum() - + cambium_data_df["gas-cc-ccs_MWh"].sum() - + cambium_data_df["gas-ct_MWh"].sum() - ) / generation_annual_total_MWh - generation_annual_bio_fraction = ( - cambium_data_df["biomass_MWh"].sum() + cambium_data_df["beccs_MWh"].sum() - ) / generation_annual_total_MWh - generation_annual_geothermal_fraction = ( - cambium_data_df["geothermal_MWh"].sum() / generation_annual_total_MWh - ) - generation_annual_hydro_fraction = ( - cambium_data_df["hydro_MWh"].sum() + cambium_data_df["phs_MWh"].sum() - ) / generation_annual_total_MWh - generation_annual_wind_fraction = ( - cambium_data_df["wind-ons_MWh"].sum() + cambium_data_df["wind-ofs_MWh"].sum() - ) / generation_annual_total_MWh - generation_annual_solar_fraction = ( - cambium_data_df["upv_MWh"].sum() - + cambium_data_df["distpv_MWh"].sum() - + cambium_data_df["csp_MWh"].sum() - ) / generation_annual_total_MWh - generation_annual_battery_fraction = ( - cambium_data_df["battery_MWh"].sum() - ) / generation_annual_total_MWh - nuclear_PWR_fraction = 0.655 # % of grid nuclear power from PWR, calculated from USNRC data - # based on type and rated capacity - nuclear_BWR_fraction = 0.345 # % of grid nuclear power from BWR, calculated from USNRC data - # based on type and rated capacity - # https://www.nrc.gov/reactors/operating/list-power-reactor-units.html - geothermal_binary_fraction = 0.28 # % of grid geothermal power from binary, - # average from EIA data and NREL Geothermal prospector - geothermal_flash_fraction = 0.72 # % of grid geothermal power from flash, - # average from EIA data and NREL Geothermal prospector - # https://www.eia.gov/todayinenergy/detail.php?id=44576# - - # Calculate Grid Imbedded Emissions Intensity for cambium grid mix of power sources - # (kg CO2e/kwh) - grid_capex_EI = ( - (generation_annual_nuclear_fraction * nuclear_PWR_fraction * nuclear_PWR_capex_EI) - + (generation_annual_nuclear_fraction * nuclear_BWR_fraction * nuclear_BWR_capex_EI) - + (generation_annual_coal_oil_fraction * coal_capex_EI) - + (generation_annual_gas_fraction * gas_capex_EI) - + (generation_annual_bio_fraction * bio_capex_EI) - + ( - generation_annual_geothermal_fraction - * geothermal_binary_fraction - * geothermal_binary_capex_EI - ) - + ( - generation_annual_geothermal_fraction - * geothermal_flash_fraction - * geothermal_flash_capex_EI - ) - + (generation_annual_hydro_fraction * hydro_capex_EI) - + (generation_annual_wind_fraction * wind_capex_EI) - + (generation_annual_solar_fraction * solar_pv_capex_EI) - + (generation_annual_battery_fraction * battery_EI) * g_to_kg - ) - - # NOTE: current config assumes SMR, ATR, NH3, and Steel processes are always grid powered - # electricity needed for these processes does not come from renewables - # NOTE: this is reflective of the current state of modeling these systems in the code - # at time of dev and should be updated to allow renewables in the future - if "hybrid-grid" in grid_case: - ## H2 production via electrolysis - # Calculate grid-connected electrolysis emissions (kg CO2e/kg H2) - # future cases should reflect targeted electrolyzer electricity usage - EI_values["electrolysis_Scope3_EI"] = ( - ely_stack_and_BoP_capex_EI - + (ely_H2O_consume * H2O_supply_EI) - + ( - ( - electrolysis_scope3_grid_emissions - + (wind_capex_EI * g_to_kg * wind_annual_energy_kwh) - + (solar_pv_capex_EI * g_to_kg * solar_pv_annual_energy_kwh) - + (grid_capex_EI * electrolysis_grid_electricity_consume) - ) - / h2_annual_prod_kg - ) - ) - EI_values["electrolysis_Scope2_EI"] = ( - electrolysis_scope2_grid_emissions / h2_annual_prod_kg - ) - EI_values["electrolysis_Scope1_EI"] = 0 - EI_values["electrolysis_Total_EI"] = ( - EI_values["electrolysis_Scope1_EI"] - + EI_values["electrolysis_Scope2_EI"] - + EI_values["electrolysis_Scope3_EI"] - ) - - # Calculate ammonia emissions via hybrid grid electrolysis (kg CO2e/kg NH3) - EI_values["NH3_electrolysis_Scope3_EI"] = ( - (NH3_H2_consume * EI_values["electrolysis_Total_EI"]) - + (NH3_NG_consume * NG_supply_EI * g_to_kg / MT_to_kg) - + ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (NH3_electricity_consume * grid_capex_EI) - ) - EI_values["NH3_electrolysis_Scope2_EI"] = ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["NH3_electrolysis_Scope1_EI"] = ( - NH3_NG_consume * NG_combust_EI * g_to_kg / MT_to_kg - ) - EI_values["NH3_electrolysis_Total_EI"] = ( - EI_values["NH3_electrolysis_Scope1_EI"] - + EI_values["NH3_electrolysis_Scope2_EI"] - + EI_values["NH3_electrolysis_Scope3_EI"] - ) - - # Calculate steel emissions via hybrid grid electrolysis (kg CO2e/metric ton steel) - EI_values["steel_electrolysis_Scope3_EI"] = ( - (steel_H2_consume * MT_to_kg * EI_values["electrolysis_Total_EI"]) - + (steel_lime_consume * lime_supply_EI * MT_to_kg) - + (steel_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (steel_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (steel_NG_consume * NG_supply_EI) - + (steel_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (steel_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["steel_electrolysis_Scope2_EI"] = ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["steel_electrolysis_Scope1_EI"] = steel_NG_consume * NG_combust_EI - EI_values["steel_electrolysis_Total_EI"] = ( - EI_values["steel_electrolysis_Scope1_EI"] - + EI_values["steel_electrolysis_Scope2_EI"] - + EI_values["steel_electrolysis_Scope3_EI"] - ) - - # Calculate H2 DRI emissions via hybrid grid electrolysis - # (kg CO2e/metric tonne pig iron) - EI_values["h2_electrolysis_dri_Scope3_EI"] = ( - (h2_dri_H2_consume * MT_to_kg * EI_values["electrolysis_Total_EI"]) - + (h2_dri_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (h2_dri_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (h2_dri_NG_consume * NG_supply_EI) - + (h2_dri_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - h2_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (h2_dri_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["h2_electrolysis_dri_Scope2_EI"] = ( - h2_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["h2_electrolysis_dri_Scope1_EI"] = h2_dri_NG_consume * NG_combust_EI - EI_values["h2_electrolysis_dri_Total_EI"] = ( - EI_values["h2_electrolysis_dri_Scope1_EI"] - + EI_values["h2_electrolysis_dri_Scope2_EI"] - + EI_values["h2_electrolysis_dri_Scope3_EI"] - ) - - # Calculate H2 DRI EAF emissions via hybrid grid electrolysis - # (kg CO2e/metric tonne pig iron) - EI_values["h2_electrolysis_dri_eaf_Scope3_EI"] = ( - (h2_dri_eaf_H2_consume * MT_to_kg * EI_values["electrolysis_Total_EI"]) - + (h2_dri_eaf_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (h2_dri_eaf_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (h2_dri_eaf_lime_consume * MT_to_kg * lime_supply_EI) - + (h2_dri_eaf_coke_consume * MT_to_kg * coke_supply_EI) - + (h2_dri_eaf_NG_consume * NG_supply_EI) - + (h2_dri_eaf_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - h2_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (h2_dri_eaf_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["h2_electrolysis_dri_eaf_Scope2_EI"] = ( - h2_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["h2_electrolysis_dri_eaf_Scope1_EI"] = h2_dri_eaf_NG_consume * NG_combust_EI - EI_values["h2_electrolysis_dri_eaf_Total_EI"] = ( - EI_values["h2_electrolysis_dri_eaf_Scope1_EI"] - + EI_values["h2_electrolysis_dri_eaf_Scope2_EI"] - + EI_values["h2_electrolysis_dri_eaf_Scope3_EI"] - ) - - # Calculate Natural Gas (NG) DRI emissions - # (kg CO2e/metric tonne pig iron) - EI_values["ng_dri_Scope3_EI"] = ( - (ng_dri_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (ng_dri_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (ng_dri_NG_consume * NG_supply_EI) - + (ng_dri_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - ng_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (ng_dri_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["ng_dri_Scope2_EI"] = ( - ng_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["ng_dri_Scope1_EI"] = ng_dri_NG_consume * NG_combust_EI - EI_values["ng_dri_Total_EI"] = ( - EI_values["ng_dri_Scope1_EI"] - + EI_values["ng_dri_Scope2_EI"] - + EI_values["ng_dri_Scope3_EI"] - ) - - # Calculate Natural Gas (NG) DRI EAF emissions - # (kg CO2e/metric tonne pig iron) - EI_values["ng_dri_eaf_Scope3_EI"] = ( - (ng_dri_eaf_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (ng_dri_eaf_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (ng_dri_eaf_lime_consume * MT_to_kg * lime_supply_EI) - + (ng_dri_eaf_coke_consume * MT_to_kg * coke_supply_EI) - + (ng_dri_eaf_NG_consume * NG_supply_EI) - + (ng_dri_eaf_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - ng_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (ng_dri_eaf_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["ng_dri_eaf_Scope2_EI"] = ( - ng_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["ng_dri_eaf_Scope1_EI"] = ng_dri_eaf_NG_consume * NG_combust_EI - EI_values["ng_dri_eaf_Total_EI"] = ( - EI_values["ng_dri_eaf_Scope1_EI"] - + EI_values["ng_dri_eaf_Scope2_EI"] - + EI_values["ng_dri_eaf_Scope3_EI"] - ) - - if "grid-only" in grid_case: - ## H2 production via electrolysis - # Calculate grid-connected electrolysis emissions (kg CO2e/kg H2) - EI_values["electrolysis_Scope3_EI"] = ( - ely_stack_and_BoP_capex_EI - + (ely_H2O_consume * H2O_supply_EI) - + ( - ( - electrolysis_scope3_grid_emissions - + (grid_capex_EI * electrolysis_grid_electricity_consume) - ) - / h2_annual_prod_kg - ) - ) - EI_values["electrolysis_Scope2_EI"] = ( - electrolysis_scope2_grid_emissions / h2_annual_prod_kg - ) - EI_values["electrolysis_Scope1_EI"] = 0 - EI_values["electrolysis_Total_EI"] = ( - EI_values["electrolysis_Scope1_EI"] - + EI_values["electrolysis_Scope2_EI"] - + EI_values["electrolysis_Scope3_EI"] - ) - - # Calculate ammonia emissions via grid only electrolysis (kg CO2e/kg NH3) - EI_values["NH3_electrolysis_Scope3_EI"] = ( - (NH3_H2_consume * EI_values["electrolysis_Total_EI"]) - + (NH3_NG_consume * NG_supply_EI * g_to_kg / MT_to_kg) - + ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (NH3_electricity_consume * grid_capex_EI) - ) - EI_values["NH3_electrolysis_Scope2_EI"] = ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["NH3_electrolysis_Scope1_EI"] = ( - NH3_NG_consume * NG_combust_EI * g_to_kg / MT_to_kg - ) - EI_values["NH3_electrolysis_Total_EI"] = ( - EI_values["NH3_electrolysis_Scope1_EI"] - + EI_values["NH3_electrolysis_Scope2_EI"] - + EI_values["NH3_electrolysis_Scope3_EI"] - ) - - # Calculate steel emissions via grid only electrolysis (kg CO2e/metric ton steel) - EI_values["steel_electrolysis_Scope3_EI"] = ( - (steel_H2_consume * MT_to_kg * EI_values["electrolysis_Total_EI"]) - + (steel_lime_consume * lime_supply_EI * MT_to_kg) - + (steel_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (steel_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (steel_NG_consume * NG_supply_EI) - + (steel_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (steel_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["steel_electrolysis_Scope2_EI"] = ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["steel_electrolysis_Scope1_EI"] = steel_NG_consume * NG_combust_EI - EI_values["steel_electrolysis_Total_EI"] = ( - EI_values["steel_electrolysis_Scope1_EI"] - + EI_values["steel_electrolysis_Scope2_EI"] - + EI_values["steel_electrolysis_Scope3_EI"] - ) - - # Calculate H2 DRI emissions via grid only electrolysis - # (kg CO2e/metric tonne pig iron) - EI_values["h2_electrolysis_dri_Scope3_EI"] = ( - (h2_dri_H2_consume * MT_to_kg * EI_values["electrolysis_Total_EI"]) - + (h2_dri_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (h2_dri_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (h2_dri_NG_consume * NG_supply_EI) - + (h2_dri_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - h2_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (h2_dri_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["h2_electrolysis_dri_Scope2_EI"] = ( - h2_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["h2_electrolysis_dri_Scope1_EI"] = h2_dri_NG_consume * NG_combust_EI - EI_values["h2_electrolysis_dri_Total_EI"] = ( - EI_values["h2_electrolysis_dri_Scope1_EI"] - + EI_values["h2_electrolysis_dri_Scope2_EI"] - + EI_values["h2_electrolysis_dri_Scope3_EI"] - ) - - # Calculate H2 DRI EAF emissions via grid only electrolysis - # (kg CO2e/metric tonne pig iron) - EI_values["h2_electrolysis_dri_eaf_Scope3_EI"] = ( - (h2_dri_eaf_H2_consume * MT_to_kg * EI_values["electrolysis_Total_EI"]) - + (h2_dri_eaf_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (h2_dri_eaf_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (h2_dri_eaf_lime_consume * MT_to_kg * lime_supply_EI) - + (h2_dri_eaf_coke_consume * MT_to_kg * coke_supply_EI) - + (h2_dri_eaf_NG_consume * NG_supply_EI) - + (h2_dri_eaf_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - h2_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (h2_dri_eaf_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["h2_electrolysis_dri_eaf_Scope2_EI"] = ( - h2_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["h2_electrolysis_dri_eaf_Scope1_EI"] = h2_dri_eaf_NG_consume * NG_combust_EI - EI_values["h2_electrolysis_dri_eaf_Total_EI"] = ( - EI_values["h2_electrolysis_dri_eaf_Scope1_EI"] - + EI_values["h2_electrolysis_dri_eaf_Scope2_EI"] - + EI_values["h2_electrolysis_dri_eaf_Scope3_EI"] - ) - - ## H2 production via SMR - # Calculate SMR emissions. SMR and SMR + CCS are always grid-connected (kg CO2e/kg H2) - EI_values["smr_Scope3_EI"] = ( - (NG_supply_EI * g_to_kg * (smr_NG_consume - smr_steam_prod / smr_HEX_eff)) - + ( - smr_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (smr_electricity_consume * grid_capex_EI) - ) - EI_values["smr_Scope2_EI"] = ( - smr_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["smr_Scope1_EI"] = ( - NG_combust_EI * g_to_kg * (smr_NG_consume - smr_steam_prod / smr_HEX_eff) - ) - EI_values["smr_Total_EI"] = ( - EI_values["smr_Scope1_EI"] + EI_values["smr_Scope2_EI"] + EI_values["smr_Scope3_EI"] - ) - - # Calculate ammonia emissions via SMR process (kg CO2e/kg NH3) - EI_values["NH3_smr_Scope3_EI"] = ( - (NH3_H2_consume * EI_values["smr_Total_EI"]) - + (NH3_NG_consume * NG_supply_EI * g_to_kg / MT_to_kg) - + ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (NH3_electricity_consume * grid_capex_EI) - ) - EI_values["NH3_smr_Scope2_EI"] = ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["NH3_smr_Scope1_EI"] = NH3_NG_consume * NG_combust_EI * g_to_kg / MT_to_kg - EI_values["NH3_smr_Total_EI"] = ( - EI_values["NH3_smr_Scope1_EI"] - + EI_values["NH3_smr_Scope2_EI"] - + EI_values["NH3_smr_Scope3_EI"] - ) - - # Calculate steel emissions via SMR process (kg CO2e/metric ton steel) - EI_values["steel_smr_Scope3_EI"] = ( - (steel_H2_consume * MT_to_kg * EI_values["smr_Total_EI"]) - + (steel_lime_consume * lime_supply_EI * MT_to_kg) - + (steel_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (steel_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (steel_NG_consume * NG_supply_EI) - + (steel_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (steel_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["steel_smr_Scope2_EI"] = ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["steel_smr_Scope1_EI"] = steel_NG_consume * NG_combust_EI - EI_values["steel_smr_Total_EI"] = ( - EI_values["steel_smr_Scope1_EI"] - + EI_values["steel_smr_Scope2_EI"] - + EI_values["steel_smr_Scope3_EI"] - ) - - # Calculate SMR + CCS emissions (kg CO2e/kg H2) - EI_values["smr_ccs_Scope3_EI"] = ( - (NG_supply_EI * g_to_kg * (smr_ccs_NG_consume - smr_ccs_steam_prod / smr_HEX_eff)) - + ( - smr_ccs_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (smr_ccs_electricity_consume * grid_capex_EI) - ) - EI_values["smr_ccs_Scope2_EI"] = ( - smr_ccs_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["smr_ccs_Scope1_EI"] = ( - (1 - smr_ccs_perc_capture) - * NG_combust_EI - * g_to_kg - * (smr_ccs_NG_consume - smr_ccs_steam_prod / smr_HEX_eff) - ) - EI_values["smr_ccs_Total_EI"] = ( - EI_values["smr_ccs_Scope1_EI"] - + EI_values["smr_ccs_Scope2_EI"] - + EI_values["smr_ccs_Scope3_EI"] - ) - - # Calculate ammonia emissions via SMR with CCS process (kg CO2e/kg NH3) - EI_values["NH3_smr_ccs_Scope3_EI"] = ( - (NH3_H2_consume * EI_values["smr_ccs_Total_EI"]) - + (NH3_NG_consume * NG_supply_EI * g_to_kg / MT_to_kg) - + ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (NH3_electricity_consume * grid_capex_EI) - ) - EI_values["NH3_smr_ccs_Scope2_EI"] = ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["NH3_smr_ccs_Scope1_EI"] = NH3_NG_consume * NG_combust_EI * g_to_kg / MT_to_kg - EI_values["NH3_smr_ccs_Total_EI"] = ( - EI_values["NH3_smr_ccs_Scope1_EI"] - + EI_values["NH3_smr_ccs_Scope2_EI"] - + EI_values["NH3_smr_ccs_Scope3_EI"] - ) - - # Calculate steel emissions via SMR with CCS process (kg CO2e/metric ton steel) - EI_values["steel_smr_ccs_Scope3_EI"] = ( - (steel_H2_consume * MT_to_kg * EI_values["smr_ccs_Total_EI"]) - + (steel_lime_consume * lime_supply_EI * MT_to_kg) - + (steel_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (steel_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (steel_NG_consume * NG_supply_EI) - + (steel_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (steel_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["steel_smr_ccs_Scope2_EI"] = ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["steel_smr_ccs_Scope1_EI"] = steel_NG_consume * NG_combust_EI - EI_values["steel_smr_ccs_Total_EI"] = ( - EI_values["steel_smr_ccs_Scope1_EI"] - + EI_values["steel_smr_ccs_Scope2_EI"] - + EI_values["steel_smr_ccs_Scope3_EI"] - ) - - ## H2 production via ATR - # Calculate ATR emissions. ATR and ATR + CCS are always grid-connected (kg CO2e/kg H2) - EI_values["atr_Scope3_EI"] = ( - (NG_supply_EI * g_to_kg * atr_NG_consume) - + ( - atr_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (atr_electricity_consume * grid_capex_EI) - ) - EI_values["atr_Scope2_EI"] = ( - atr_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["atr_Scope1_EI"] = NG_combust_EI * g_to_kg * atr_NG_consume - EI_values["atr_Total_EI"] = ( - EI_values["atr_Scope1_EI"] + EI_values["atr_Scope2_EI"] + EI_values["atr_Scope3_EI"] - ) - - # Calculate ammonia emissions via ATR process (kg CO2e/kg NH3) - EI_values["NH3_atr_Scope3_EI"] = ( - (NH3_H2_consume * EI_values["atr_Total_EI"]) - + (NH3_NG_consume * NG_supply_EI * g_to_kg / MT_to_kg) - + ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (NH3_electricity_consume * grid_capex_EI) - ) - EI_values["NH3_atr_Scope2_EI"] = ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["NH3_atr_Scope1_EI"] = NH3_NG_consume * NG_combust_EI * g_to_kg / MT_to_kg - EI_values["NH3_atr_Total_EI"] = ( - EI_values["NH3_atr_Scope1_EI"] - + EI_values["NH3_atr_Scope2_EI"] - + EI_values["NH3_atr_Scope3_EI"] - ) - - # Calculate steel emissions via ATR process (kg CO2e/metric ton steel) - EI_values["steel_atr_Scope3_EI"] = ( - (steel_H2_consume * MT_to_kg * EI_values["atr_Total_EI"]) - + (steel_lime_consume * lime_supply_EI * MT_to_kg) - + (steel_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (steel_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (steel_NG_consume * NG_supply_EI) - + (steel_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (steel_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["steel_atr_Scope2_EI"] = ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["steel_atr_Scope1_EI"] = steel_NG_consume * NG_combust_EI - EI_values["steel_atr_Total_EI"] = ( - EI_values["steel_atr_Scope1_EI"] - + EI_values["steel_atr_Scope2_EI"] - + EI_values["steel_atr_Scope3_EI"] - ) - - # Calculate ATR + CCS emissions (kg CO2e/kg H2) - EI_values["atr_ccs_Scope3_EI"] = ( - (NG_supply_EI * g_to_kg * atr_ccs_NG_consume) - + ( - atr_ccs_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (atr_ccs_electricity_consume * grid_capex_EI) - ) - EI_values["atr_ccs_Scope2_EI"] = ( - atr_ccs_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["atr_ccs_Scope1_EI"] = ( - (1 - atr_ccs_perc_capture) * NG_combust_EI * g_to_kg * atr_ccs_NG_consume - ) - EI_values["atr_ccs_Total_EI"] = ( - EI_values["atr_ccs_Scope1_EI"] - + EI_values["atr_ccs_Scope2_EI"] - + EI_values["atr_ccs_Scope3_EI"] - ) - - # Calculate ammonia emissions via ATR with CCS process (kg CO2e/kg NH3) - EI_values["NH3_atr_ccs_Scope3_EI"] = ( - (NH3_H2_consume * EI_values["atr_ccs_Total_EI"]) - + (NH3_NG_consume * NG_supply_EI * g_to_kg / MT_to_kg) - + ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (NH3_electricity_consume * grid_capex_EI) - ) - EI_values["NH3_atr_ccs_Scope2_EI"] = ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["NH3_atr_ccs_Scope1_EI"] = NH3_NG_consume * NG_combust_EI * g_to_kg / MT_to_kg - EI_values["NH3_atr_ccs_Total_EI"] = ( - EI_values["NH3_atr_ccs_Scope1_EI"] - + EI_values["NH3_atr_ccs_Scope2_EI"] - + EI_values["NH3_atr_ccs_Scope3_EI"] - ) - - # Calculate steel emissions via ATR with CCS process (kg CO2e/metric ton steel) - EI_values["steel_atr_ccs_Scope3_EI"] = ( - (steel_H2_consume * MT_to_kg * EI_values["atr_ccs_Total_EI"]) - + (steel_lime_consume * lime_supply_EI * MT_to_kg) - + (steel_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (steel_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (steel_NG_consume * NG_supply_EI) - + (steel_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (steel_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["steel_atr_ccs_Scope2_EI"] = ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["steel_atr_ccs_Scope1_EI"] = steel_NG_consume * NG_combust_EI - EI_values["steel_atr_ccs_Total_EI"] = ( - EI_values["steel_atr_ccs_Scope1_EI"] - + EI_values["steel_atr_ccs_Scope2_EI"] - + EI_values["steel_atr_ccs_Scope3_EI"] - ) - - # Calculate Natural Gas (NG) DRI emissions (kg CO2e/metric tonne pig iron) - EI_values["ng_dri_Scope3_EI"] = ( - (ng_dri_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (ng_dri_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (ng_dri_NG_consume * NG_supply_EI) - + (ng_dri_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - ng_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (ng_dri_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["ng_dri_Scope2_EI"] = ( - ng_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["ng_dri_Scope1_EI"] = ng_dri_NG_consume * NG_combust_EI - EI_values["ng_dri_Total_EI"] = ( - EI_values["ng_dri_Scope1_EI"] - + EI_values["ng_dri_Scope2_EI"] - + EI_values["ng_dri_Scope3_EI"] - ) - - # Calculate Natural Gas (NG) DRI EAF emissions (kg CO2e/metric tonne pig iron) - EI_values["ng_dri_eaf_Scope3_EI"] = ( - (ng_dri_eaf_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (ng_dri_eaf_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (ng_dri_eaf_lime_consume * MT_to_kg * lime_supply_EI) - + (ng_dri_eaf_coke_consume * MT_to_kg * coke_supply_EI) - + (ng_dri_eaf_NG_consume * NG_supply_EI) - + (ng_dri_eaf_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - ng_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (ng_dri_eaf_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["ng_dri_eaf_Scope2_EI"] = ( - ng_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["ng_dri_eaf_Scope1_EI"] = ng_dri_eaf_NG_consume * NG_combust_EI - EI_values["ng_dri_eaf_Total_EI"] = ( - EI_values["ng_dri_eaf_Scope1_EI"] - + EI_values["ng_dri_eaf_Scope2_EI"] - + EI_values["ng_dri_eaf_Scope3_EI"] - ) - - if "off-grid" in grid_case: - ## H2 production via electrolysis - # Calculate renewable only electrolysis emissions (kg CO2e/kg H2) - EI_values["electrolysis_Scope3_EI"] = ( - ely_stack_and_BoP_capex_EI - + (ely_H2O_consume * H2O_supply_EI) - + ( - ( - (wind_capex_EI * g_to_kg * wind_annual_energy_kwh) - + (solar_pv_capex_EI * g_to_kg * solar_pv_annual_energy_kwh) - ) - / h2_annual_prod_kg - ) - ) - EI_values["electrolysis_Scope2_EI"] = 0 - EI_values["electrolysis_Scope1_EI"] = 0 - EI_values["electrolysis_Total_EI"] = ( - EI_values["electrolysis_Scope1_EI"] - + EI_values["electrolysis_Scope2_EI"] - + EI_values["electrolysis_Scope3_EI"] - ) - - # Calculate ammonia emissions via renewable electrolysis (kg CO2e/kg NH3) - EI_values["NH3_electrolysis_Scope3_EI"] = ( - (NH3_H2_consume * EI_values["electrolysis_Total_EI"]) - + (NH3_NG_consume * NG_supply_EI * g_to_kg / MT_to_kg) - + ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (NH3_electricity_consume * grid_capex_EI) - ) - EI_values["NH3_electrolysis_Scope2_EI"] = ( - NH3_electricity_consume - * kWh_to_MWh - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["NH3_electrolysis_Scope1_EI"] = ( - NH3_NG_consume * NG_combust_EI * g_to_kg / MT_to_kg - ) - EI_values["NH3_electrolysis_Total_EI"] = ( - EI_values["NH3_electrolysis_Scope1_EI"] - + EI_values["NH3_electrolysis_Scope2_EI"] - + EI_values["NH3_electrolysis_Scope3_EI"] - ) - - # Calculate steel emissions via renewable electrolysis (kg CO2e/metric ton steel) - EI_values["steel_electrolysis_Scope3_EI"] = ( - (steel_H2_consume * MT_to_kg * EI_values["electrolysis_Total_EI"]) - + (steel_lime_consume * lime_supply_EI * MT_to_kg) - + (steel_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (steel_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (steel_NG_consume * NG_supply_EI) - + (steel_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (steel_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["steel_electrolysis_Scope2_EI"] = ( - steel_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["steel_electrolysis_Scope1_EI"] = steel_NG_consume * NG_combust_EI - EI_values["steel_electrolysis_Total_EI"] = ( - EI_values["steel_electrolysis_Scope1_EI"] - + EI_values["steel_electrolysis_Scope2_EI"] - + EI_values["steel_electrolysis_Scope3_EI"] - ) - - # Calculate H2 DRI emissions via off grid electrolysis (kg CO2e/metric tonne pig iron) - EI_values["h2_electrolysis_dri_Scope3_EI"] = ( - (h2_dri_H2_consume * MT_to_kg * EI_values["electrolysis_Total_EI"]) - + (h2_dri_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (h2_dri_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (h2_dri_NG_consume * NG_supply_EI) - + (h2_dri_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - h2_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (h2_dri_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["h2_electrolysis_dri_Scope2_EI"] = ( - h2_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["h2_electrolysis_dri_Scope1_EI"] = h2_dri_NG_consume * NG_combust_EI - EI_values["h2_electrolysis_dri_Total_EI"] = ( - EI_values["h2_electrolysis_dri_Scope1_EI"] - + EI_values["h2_electrolysis_dri_Scope2_EI"] - + EI_values["h2_electrolysis_dri_Scope3_EI"] - ) - - # Calculate H2 DRI EAF emissions via off grid electrolysis (kg CO2e/tonne pig iron) - EI_values["h2_electrolysis_dri_eaf_Scope3_EI"] = ( - (h2_dri_eaf_H2_consume * MT_to_kg * EI_values["electrolysis_Total_EI"]) - + (h2_dri_eaf_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (h2_dri_eaf_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (h2_dri_eaf_lime_consume * MT_to_kg * lime_supply_EI) - + (h2_dri_eaf_coke_consume * MT_to_kg * coke_supply_EI) - + (h2_dri_eaf_NG_consume * NG_supply_EI) - + (h2_dri_eaf_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - h2_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (h2_dri_eaf_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["h2_electrolysis_dri_eaf_Scope2_EI"] = ( - h2_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["h2_electrolysis_dri_eaf_Scope1_EI"] = h2_dri_eaf_NG_consume * NG_combust_EI - EI_values["h2_electrolysis_dri_eaf_Total_EI"] = ( - EI_values["h2_electrolysis_dri_eaf_Scope1_EI"] - + EI_values["h2_electrolysis_dri_eaf_Scope2_EI"] - + EI_values["h2_electrolysis_dri_eaf_Scope3_EI"] - ) - - # Calculate Natural Gas (NG) DRI emissions (kg CO2e/metric tonne pig iron) - EI_values["ng_dri_Scope3_EI"] = ( - (ng_dri_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (ng_dri_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (ng_dri_NG_consume * NG_supply_EI) - + (ng_dri_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - ng_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (ng_dri_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["ng_dri_Scope2_EI"] = ( - ng_dri_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["ng_dri_Scope1_EI"] = ng_dri_NG_consume * NG_combust_EI - EI_values["ng_dri_Total_EI"] = ( - EI_values["ng_dri_Scope1_EI"] - + EI_values["ng_dri_Scope2_EI"] - + EI_values["ng_dri_Scope3_EI"] - ) - - # Calculate Natural Gas (NG) DRI EAF emissions (kg CO2e/metric tonne pig iron) - EI_values["ng_dri_eaf_Scope3_EI"] = ( - (ng_dri_eaf_iron_ore_consume * iron_ore_mining_EI_per_MT_ore) - + (ng_dri_eaf_iron_ore_consume * iron_ore_pelletizing_EI_per_MT_ore) - + (ng_dri_eaf_lime_consume * MT_to_kg * lime_supply_EI) - + (ng_dri_eaf_coke_consume * MT_to_kg * coke_supply_EI) - + (ng_dri_eaf_NG_consume * NG_supply_EI) - + (ng_dri_eaf_H2O_consume * (H2O_supply_EI / gal_H2O_to_MT)) - + ( - ng_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. precombustion (kg-CO2e/MWh)"].mean() - ) - + (ng_dri_eaf_electricity_consume * MWh_to_kWh * grid_capex_EI) - ) - EI_values["ng_dri_eaf_Scope2_EI"] = ( - ng_dri_eaf_electricity_consume - * cambium_data_df["LRMER CO2 equiv. combustion (kg-CO2e/MWh)"].mean() - ) - EI_values["ng_dri_eaf_Scope1_EI"] = ng_dri_eaf_NG_consume * NG_combust_EI - EI_values["ng_dri_eaf_Total_EI"] = ( - EI_values["ng_dri_eaf_Scope1_EI"] - + EI_values["ng_dri_eaf_Scope2_EI"] - + EI_values["ng_dri_eaf_Scope3_EI"] - ) - - # Append emission intensity values for each year to lists in the ts_EI_data dictionary - for key in ts_EI_data: - ts_EI_data[key].append(EI_values[key]) - - ## Interpolation of emission intensities for years not captured by cambium - # (cambium 2023 offers 2025-2050 in 5 year increments) - # Define end of life based on cambium_year and project lifetime - endoflife_year = cambium_year + project_lifetime - - # Instantiate dictionary of lists to hold full EI time series (ts) data - # including interpolated data for years when cambium data is not available - ts_EI_data_interpolated = { - f"{process}_{scope}_EI": [] for process in processes for scope in scopes - } - - # Loop through years between cambium_year and endoflife_year, interpolate values - # Check if the defined cambium_year is less than the earliest data year available - # from the cambium API, flag and warn users - if cambium_year < min(cambium_data.cambium_years): - cambium_year_warning_message = """Warning, the earliest year available for cambium data is - {min_cambium_year}! For all years less than {min_cambium_year}, LCA calculations will use - Cambium data from {min_cambium_year}. Thus, calculated emission intensity values for these - years may be understated.""".format(min_cambium_year=min(cambium_data.cambium_years)) - print("****************** WARNING ******************") - warnings.warn(cambium_year_warning_message) - cambium_warning_flag = True - else: - cambium_warning_flag = False - for year in range(cambium_year, endoflife_year): - # if year < the minimum cambium_year (currently 2025 in Cambium 2023) - # use data from the minimum year - if year < min(cambium_data.cambium_years): - for key in ts_EI_data_interpolated: - ts_EI_data_interpolated[key].append(ts_EI_data[key][0]) - - # else if year <= the maximum cambium_year (currently 2050 in Cambium 2023) - # interpolate the values (copies existing values if year is already present) - elif year <= max(cambium_data.cambium_years): - for key in ts_EI_data_interpolated: - ts_EI_data_interpolated[key].append( - np.interp(year, cambium_data.cambium_years, ts_EI_data[key]) - ) - - # else if year > maximum cambium_year, copy data from maximum year (ie: copy data from 2050) - else: - for key in ts_EI_data_interpolated: - ts_EI_data_interpolated[key].append(ts_EI_data[key][-1]) - - # Put all cumulative metrics and relevant data into a dictionary, then dataframe - # return the dataframe, save results to csv in post_processing() - lca_dict = { - "Cambium Warning": [cambium_year_warning_message if cambium_warning_flag else "None"], - "Total Life Cycle H2 Production (kg-H2)": [h2_lifetime_prod_kg], - "Electrolysis Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["electrolysis_Scope3_EI"])) / project_lifetime - ], - "Electrolysis Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["electrolysis_Scope2_EI"])) / project_lifetime - ], - "Electrolysis Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["electrolysis_Scope1_EI"])) / project_lifetime - ], - "Electrolysis Total Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["electrolysis_Total_EI"])) / project_lifetime - ], - "Ammonia Electrolysis Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_electrolysis_Scope3_EI"])) - / project_lifetime - ], - "Ammonia Electrolysis Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_electrolysis_Scope2_EI"])) - / project_lifetime - ], - "Ammonia Electrolysis Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_electrolysis_Scope1_EI"])) - / project_lifetime - ], - "Ammonia Electrolysis Total Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_electrolysis_Total_EI"])) / project_lifetime - ], - "Steel Electrolysis Scope 3 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_electrolysis_Scope3_EI"])) - / project_lifetime - ], - "Steel Electrolysis Scope 2 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_electrolysis_Scope2_EI"])) - / project_lifetime - ], - "Steel Electrolysis Scope 1 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_electrolysis_Scope1_EI"])) - / project_lifetime - ], - "Steel Electrolysis Total Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_electrolysis_Total_EI"])) - / project_lifetime - ], - "H2 Electrolysis DRI Scope 3 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["h2_electrolysis_dri_Scope3_EI"])) - / project_lifetime - ], - "H2 Electrolysis DRI Scope 2 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["h2_electrolysis_dri_Scope2_EI"])) - / project_lifetime - ], - "H2 Electrolysis DRI Scope 1 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["h2_electrolysis_dri_Scope1_EI"])) - / project_lifetime - ], - "H2 Electrolysis DRI Total Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["h2_electrolysis_dri_Total_EI"])) - / project_lifetime - ], - "H2 Electrolysis DRI EAF Scope 3 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["h2_electrolysis_dri_eaf_Scope3_EI"])) - / project_lifetime - ], - "H2 Electrolysis DRI EAF Scope 2 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["h2_electrolysis_dri_eaf_Scope2_EI"])) - / project_lifetime - ], - "H2 Electrolysis DRI EAF Scope 1 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["h2_electrolysis_dri_eaf_Scope1_EI"])) - / project_lifetime - ], - "H2 Electrolysis DRI EAF Total Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["h2_electrolysis_dri_eaf_Total_EI"])) - / project_lifetime - ], - "SMR Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["smr_Scope3_EI"])) / project_lifetime - ], - "SMR Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["smr_Scope2_EI"])) / project_lifetime - ], - "SMR Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["smr_Scope1_EI"])) / project_lifetime - ], - "SMR Total Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["smr_Total_EI"])) / project_lifetime - ], - "Ammonia SMR Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_smr_Scope3_EI"])) / project_lifetime - ], - "Ammonia SMR Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_smr_Scope2_EI"])) / project_lifetime - ], - "Ammonia SMR Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_smr_Scope1_EI"])) / project_lifetime - ], - "Ammonia SMR Total Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_smr_Total_EI"])) / project_lifetime - ], - "Steel SMR Scope 3 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_smr_Scope3_EI"])) / project_lifetime - ], - "Steel SMR Scope 2 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_smr_Scope2_EI"])) / project_lifetime - ], - "Steel SMR Scope 1 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_smr_Scope1_EI"])) / project_lifetime - ], - "Steel SMR Total Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_smr_Total_EI"])) / project_lifetime - ], - "SMR with CCS Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["smr_ccs_Scope3_EI"])) / project_lifetime - ], - "SMR with CCS Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["smr_ccs_Scope2_EI"])) / project_lifetime - ], - "SMR with CCS Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["smr_ccs_Scope1_EI"])) / project_lifetime - ], - "SMR with CCS Total Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["smr_ccs_Total_EI"])) / project_lifetime - ], - "Ammonia SMR with CCS Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_smr_ccs_Scope3_EI"])) / project_lifetime - ], - "Ammonia SMR with CCS Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_smr_ccs_Scope2_EI"])) / project_lifetime - ], - "Ammonia SMR with CCS Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_smr_ccs_Scope1_EI"])) / project_lifetime - ], - "Ammonia SMR with CCS Total Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_smr_ccs_Total_EI"])) / project_lifetime - ], - "Steel SMR with CCS Scope 3 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_smr_ccs_Scope3_EI"])) / project_lifetime - ], - "Steel SMR with CCS Scope 2 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_smr_ccs_Scope2_EI"])) / project_lifetime - ], - "Steel SMR with CCS Scope 1 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_smr_ccs_Scope1_EI"])) / project_lifetime - ], - "Steel SMR with CCS Total Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_smr_ccs_Total_EI"])) / project_lifetime - ], - "ATR Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["atr_Scope3_EI"])) / project_lifetime - ], - "ATR Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["atr_Scope2_EI"])) / project_lifetime - ], - "ATR Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["atr_Scope1_EI"])) / project_lifetime - ], - "ATR Total Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["atr_Total_EI"])) / project_lifetime - ], - "Ammonia ATR Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_atr_Scope3_EI"])) / project_lifetime - ], - "Ammonia ATR Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_atr_Scope2_EI"])) / project_lifetime - ], - "Ammonia ATR Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_atr_Scope1_EI"])) / project_lifetime - ], - "Ammonia ATR Total Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_atr_Total_EI"])) / project_lifetime - ], - "Steel ATR Scope 3 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_atr_Scope3_EI"])) / project_lifetime - ], - "Steel ATR Scope 2 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_atr_Scope2_EI"])) / project_lifetime - ], - "Steel ATR Scope 1 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_atr_Scope1_EI"])) / project_lifetime - ], - "Steel ATR Total Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_atr_Total_EI"])) / project_lifetime - ], - "ATR with CCS Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["atr_ccs_Scope3_EI"])) / project_lifetime - ], - "ATR with CCS Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["atr_ccs_Scope2_EI"])) / project_lifetime - ], - "ATR with CCS Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["atr_ccs_Scope1_EI"])) / project_lifetime - ], - "ATR with CCS Total Lifetime Average GHG Emissions (kg-CO2e/kg-H2)": [ - sum(np.asarray(ts_EI_data_interpolated["atr_ccs_Total_EI"])) / project_lifetime - ], - "Ammonia ATR with CCS Scope 3 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_atr_ccs_Scope3_EI"])) / project_lifetime - ], - "Ammonia ATR with CCS Scope 2 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_atr_ccs_Scope2_EI"])) / project_lifetime - ], - "Ammonia ATR with CCS Scope 1 Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_atr_ccs_Scope1_EI"])) / project_lifetime - ], - "Ammonia ATR with CCS Total Lifetime Average GHG Emissions (kg-CO2e/kg-NH3)": [ - sum(np.asarray(ts_EI_data_interpolated["NH3_atr_ccs_Total_EI"])) / project_lifetime - ], - "Steel ATR with CCS Scope 3 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_atr_ccs_Scope3_EI"])) / project_lifetime - ], - "Steel ATR with CCS Scope 2 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_atr_ccs_Scope2_EI"])) / project_lifetime - ], - "Steel ATR with CCS Scope 1 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_atr_ccs_Scope1_EI"])) / project_lifetime - ], - "Steel ATR with CCS Total Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["steel_atr_ccs_Total_EI"])) / project_lifetime - ], - "NG DRI Scope 3 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["ng_dri_Scope3_EI"])) / project_lifetime - ], - "NG DRI Scope 2 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["ng_dri_Scope2_EI"])) / project_lifetime - ], - "NG DRI Scope 1 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["ng_dri_Scope1_EI"])) / project_lifetime - ], - "NG DRI Total Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["ng_dri_Total_EI"])) / project_lifetime - ], - "NG DRI EAF Scope 3 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["ng_dri_eaf_Scope3_EI"])) / project_lifetime - ], - "NG DRI EAF Scope 2 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["ng_dri_eaf_Scope2_EI"])) / project_lifetime - ], - "NG DRI EAF Scope 1 Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["ng_dri_eaf_Scope1_EI"])) / project_lifetime - ], - "NG DRI EAF Total Lifetime Average GHG Emissions (kg-CO2e/MT steel)": [ - sum(np.asarray(ts_EI_data_interpolated["ng_dri_eaf_Total_EI"])) / project_lifetime - ], - "Site Latitude": [site_latitude], - "Site Longitude": [site_longitude], - "Cambium Year": [cambium_year], - "Electrolysis Case": [electrolyzer_centralization], - "Grid Case": [grid_case], - "Renewables Case": [renewables_case], - "Wind Turbine Rating (MW)": [wind_turbine_rating_MW], - "Wind Model": [wind_model], - "Electrolyzer Degradation Modeled": [electrolyzer_degradation], - "Electrolyzer Stack Optimization": [electrolyzer_optimized], - f"Number of {electrolyzer_type} Electrolyzer Clusters": [number_of_electrolyzer_clusters], - "Electricity ITC (%/100 CapEx)": [tax_incentive_option["electricity_itc"]], - "Electricity PTC ($/kWh 1992 dollars)": [tax_incentive_option["electricity_ptc"]], - "H2 Storage ITC (%/100 CapEx)": [tax_incentive_option["h2_storage_itc"]], - "H2 PTC ($/kWh 2022 dollars)": [tax_incentive_option["h2_ptc"]], - } - - lca_df = pd.DataFrame(data=lca_dict) - - return lca_df - - -# set up function to post-process HOPP results -def post_process_simulation( - lcoe, - lcoh, - pf_lcoh, - pf_lcoe, - hopp_results, - electrolyzer_physics_results, - hopp_config, - h2integrate_config, - orbit_config, - turbine_config, - h2_storage_results, - total_accessory_power_renewable_kw, - total_accessory_power_grid_kw, - capex_breakdown, - opex_breakdown, - wind_cost_results, - platform_results, - desal_results, - design_scenario, - plant_design_number, - incentive_option, - solver_results=[], - show_plots=False, - save_plots=False, - verbose=False, - output_dir="./output/", -): # , lcoe, lcoh, lcoh_with_grid, lcoh_grid_only): - if any(i in h2integrate_config for i in ["iron", "iron_pre", "iron_win", "iron_post"]): - msg = ( - "Post processing not yet implemented for iron model. LCA can still be set up through " - "h2integrate_config.yaml -> lca_config" - ) - raise NotImplementedError(msg) - - if isinstance(output_dir, str): - output_dir = Path(output_dir).resolve() - # colors (official NREL color palette https://brand.nrel.gov/content/index/guid/color_palette?parent=61) - colors = [ - "#0079C2", - "#00A4E4", - "#F7A11A", - "#FFC423", - "#5D9732", - "#8CC63F", - "#5E6A71", - "#D1D5D8", - "#933C06", - "#D9531E", - ] - - # post process results - if verbose: - print("LCOE: ", round(lcoe * 1e3, 2), "$/MWh") - print("LCOH: ", round(lcoh, 2), "$/kg") - print( - "hybrid electricity plant capacity factor: ", - round( - np.sum(hopp_results["combined_hybrid_power_production_hopp"]) - / (hopp_results["hybrid_plant"].system_capacity_kw.hybrid * 365 * 24), - 2, - ), - ) - print( - "electrolyzer capacity factor: ", - round( - np.sum(electrolyzer_physics_results["power_to_electrolyzer_kw"]) - * 1e-3 - / (h2integrate_config["electrolyzer"]["rating"] * 365 * 24), - 2, - ), - ) - print( - "Electrolyzer CAPEX installed $/kW: ", - round( - capex_breakdown["electrolyzer"] - / (h2integrate_config["electrolyzer"]["rating"] * 1e3), - 2, - ), - ) - - # Run LCA analysis if config yaml flag = True - if h2integrate_config["lca_config"]["run_lca"]: - lca_df = calculate_lca( - hopp_results=hopp_results, - electrolyzer_physics_results=electrolyzer_physics_results, - hopp_config=hopp_config, - h2integrate_config=h2integrate_config, - total_accessory_power_renewable_kw=total_accessory_power_renewable_kw, - total_accessory_power_grid_kw=total_accessory_power_grid_kw, - plant_design_scenario_number=plant_design_number, - incentive_option_number=incentive_option, - ) - - if show_plots or save_plots: - visualize_plant( - hopp_config, - h2integrate_config, - turbine_config, - wind_cost_results, - hopp_results, - platform_results, - desal_results, - h2_storage_results, - electrolyzer_physics_results, - design_scenario, - colors, - plant_design_number, - show_plots=show_plots, - save_plots=save_plots, - output_dir=output_dir, - ) - savepaths = [ - output_dir / "data/", - output_dir / "data/lcoe/", - output_dir / "data/lcoh/", - output_dir / "data/lca/", - ] - for sp in savepaths: - if not sp.exists(): - sp.mkdir(parents=True) - - pf_lcoh.get_cost_breakdown().to_csv( - savepaths[2] - / f'cost_breakdown_lcoh_design{plant_design_number}_incentive{incentive_option}_{h2integrate_config["h2_storage"]["type"]}storage.csv' # noqa: E501 - ) - pf_lcoe.get_cost_breakdown().to_csv( - savepaths[1] - / f'cost_breakdown_lcoe_design{plant_design_number}_incentive{incentive_option}_{h2integrate_config["h2_storage"]["type"]}storage.csv' # noqa: E501 - ) - - # Save LCA results if analysis was run - if h2integrate_config["lca_config"]["run_lca"]: - lca_savepath = ( - savepaths[3] - / f'LCA_results_design{plant_design_number}_incentive{incentive_option}_{h2integrate_config["h2_storage"]["type"]}storage.csv' # noqa: E501 - ) - lca_df.to_csv(lca_savepath) - print("LCA Analysis was run as a postprocessing step. Results were saved to:") - print(lca_savepath) - - # create dataframe for saving all the stuff - h2integrate_config["design_scenario"] = design_scenario - h2integrate_config["plant_design_number"] = plant_design_number - h2integrate_config["incentive_options"] = incentive_option - - # save power usage data - if len(solver_results) > 0: - hours = len(hopp_results["combined_hybrid_power_production_hopp"]) - annual_energy_breakdown = { - "electricity_generation_kwh": sum( - hopp_results["combined_hybrid_power_production_hopp"] - ), - "electrolyzer_kwh": sum(electrolyzer_physics_results["power_to_electrolyzer_kw"]), - "renewable_kwh": sum(solver_results[0]), - "grid_power_kwh": sum(solver_results[1]), - "desal_kwh": solver_results[2] * hours, - "h2_transport_compressor_power_kwh": solver_results[3] * hours, - "h2_storage_power_kwh": solver_results[4] * hours, - "electrolyzer_bop_energy_kwh": sum(solver_results[5]), - } - - ######################### save detailed ORBIT cost information - if wind_cost_results.orbit_project: - _, orbit_capex_breakdown, wind_capex_multiplier = adjust_orbit_costs( - orbit_project=wind_cost_results.orbit_project, - h2integrate_config=h2integrate_config, - ) - - # orbit_capex_breakdown["Onshore Substation"] = orbit_project.phases["ElectricalDesign"].onshore_cost # noqa: E501 - # discount ORBIT cost information - for key in orbit_capex_breakdown: - orbit_capex_breakdown[key] = -npf.fv( - h2integrate_config["finance_parameters"]["costing_general_inflation"], - h2integrate_config["project_parameters"]["cost_year"] - - h2integrate_config["finance_parameters"]["discount_years"]["wind"], - 0.0, - orbit_capex_breakdown[key], - ) - - # save ORBIT cost information - ob_df = pd.DataFrame(orbit_capex_breakdown, index=[0]).transpose() - savedir = output_dir / "data/orbit_costs/" - if not savedir.exists(): - savedir.mkdir(parents=True) - ob_df.to_csv( - savedir - / f'orbit_cost_breakdown_lcoh_design{plant_design_number}_incentive{incentive_option}_{h2integrate_config["h2_storage"]["type"]}storage.csv' # noqa: E501 - ) - ############################### - - ###################### Save export system breakdown from ORBIT ################### - - _, orbit_capex_breakdown, wind_capex_multiplier = adjust_orbit_costs( - orbit_project=wind_cost_results.orbit_project, - h2integrate_config=h2integrate_config, - ) - - onshore_substation_costs = ( - wind_cost_results.orbit_project.phases["ElectricalDesign"].onshore_cost - * wind_capex_multiplier - ) - - orbit_capex_breakdown["Export System Installation"] -= onshore_substation_costs - - orbit_capex_breakdown["Onshore Substation and Installation"] = onshore_substation_costs - - # discount ORBIT cost information - for key in orbit_capex_breakdown: - orbit_capex_breakdown[key] = -npf.fv( - h2integrate_config["finance_parameters"]["costing_general_inflation"], - h2integrate_config["project_parameters"]["cost_year"] - - h2integrate_config["finance_parameters"]["discount_years"]["wind"], - 0.0, - orbit_capex_breakdown[key], - ) - - # save ORBIT cost information using directory defined above - ob_df = pd.DataFrame(orbit_capex_breakdown, index=[0]).transpose() - ob_df.to_csv( - savedir - / f'orbit_cost_breakdown_with_onshore_substation_lcoh_design{plant_design_number}_incentive{incentive_option}_{h2integrate_config["h2_storage"]["type"]}storage.csv' # noqa: E501 - ) - - ################################################################################## - if save_plots: - if ( - hasattr(hopp_results["hybrid_plant"], "dispatch_builder") - and hopp_results["hybrid_plant"].battery - ): - savedir = output_dir / "figures/production/" - if not savedir.exists(): - savedir.mkdir(parents=True) - plot_tools.plot_generation_profile( - hopp_results["hybrid_plant"], - start_day=0, - n_days=10, - plot_filename=(savedir / "generation_profile.pdf"), - font_size=14, - power_scale=1 / 1000, - solar_color="r", - wind_color="b", - # wave_color="g", - discharge_color="b", - charge_color="r", - gen_color="g", - price_color="r", - # show_price=False, - ) - else: - print( - "generation profile not plotted because HoppInterface does not have a " - "'dispatch_builder'" - ) - - # save production information - hourly_energy_breakdown = save_energy_flows( - hopp_results["hybrid_plant"], - electrolyzer_physics_results, - solver_results, - hours, - h2_storage_results, - output_dir=output_dir, - ) - - # save hydrogen information - key = "Hydrogen Hourly Production [kg/hr]" - np.savetxt( - output_dir / "h2_usage", - electrolyzer_physics_results["H2_Results"][key], - header="# " + key, - ) - - return annual_energy_breakdown, hourly_energy_breakdown diff --git a/tests/h2integrate/input_files/plant/h2integrate_config.yaml b/tests/h2integrate/input_files/plant/h2integrate_config.yaml deleted file mode 100644 index 544700bb7..000000000 --- a/tests/h2integrate/input_files/plant/h2integrate_config.yaml +++ /dev/null @@ -1,344 +0,0 @@ -site: - mean_windspeed: False - depth: 45 #m - wind_layout: - row_spacing: 7 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - turbine_spacing: 7 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - grid_angle: 0 # wind layout grid angle in degrees where 0 is north, increasing clockwise - row_phase_offset: 0 # wind layout offset of turbines along row from one row to the next -project_parameters: - project_lifetime: 30 - grid_connection: False # option, can be turned on or off - ppa_price: 0.025 # $/kWh based on 2022 land based wind market report (ERCOT area ppa prices) https://www.energy.gov/sites/default/files/2022-08/land_based_wind_market_report_2202.pdf - hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True - financial_analysis_start_year: 2027 - cost_year: 2022 # to match ATB - # installation_time: 0 #36 # months -finance_parameters: - costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year - inflation_rate: 0.025 # based on 2022 ATB - discount_rate: - general: 0.10 # nominal return based on 2022 ATB basline workbook - wind: 0.10 - wave: 0.10 - debt_equity_split: - general: 68.5 # 2022 ATB uses 68.5% debt - wind: 68.5 - wave: 68.5 - property_tax: 0.01 # percent of CAPEX # combined with property insurance then between H2A and H2FAST defaults - property_insurance: 0.005 # percent of CAPEX # combined with property tax then between H2A and H2FAST defaults - total_income_tax_rate: 0.257 # 0.257 tax rate in 2022 atb baseline workbook # current federal income tax rate, but proposed 2023 rate is 0.28. No state income tax in Texas - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.0 #Verify that a different rate shouldn't be used # minimum total sales tax rate in Corpus Christi https://www.cctexas.com/detail/corpus-christi-type-fund-purpose - does this apply to H2? - debt_interest_rate: - general: 0.06 - wind: 0.06 - wave: 0.06 - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - administrative_expense_percent_of_sales: 0.00 #Check this # percent of sales H2FAST default - depreciation_method: "MACRS" # can be "MACRS" or "Straight line" - MACRS may be better and can reduce LCOH by more than $1/kg and is spec'd in the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - depreciation_period: 5 # years - as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - depreciation_period_electrolyzer: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - discount_years: - wind: 2022 # based on turbine capex value provided to ORBIT from 2022 ATB - wind_and_electrical: 2022 # for ORBIT opex - wave: 2020 # confirmed by Kaitlin Brunik 20240103 - solar: 2022 # TODO check - battery: 2022 # TODO check - platform: 2022 # TODO ask Nick and Charlie - electrical_export_system: 2022 # also from ORBIT, so match wind assumptions. TODO ask Sophie Bradenkamp - desal: 2013 # from code citation: https://www.nrel.gov/docs/fy16osti/66073.pdf - electrolyzer: 2020 # 2020 for singlitico2021, 2016 # for simple h2 cost model in hopp (see https://www.hydrogen.energy.gov/pdfs/19009_h2_production_cost_pem_electrolysis_2019.pdf) ## 2020 # based on IRENA report https://www.irena.org/-/media/Files/IRENA/Agency/Publication/2020/Dec/IRENA_Green_hydrogen_cost_2020.pdf - h2_transport_compressor: 2016 # listed in code header - h2_storage: - pressure_vessel: 2022 # based on readme for Compressed_gas_function - pipe: 2019 # Papadias 2021 - salt_cavern: 2019 # Papadias 2021 - turbine: 2003 # assumed based on Kottenstette 2004 - lined_rock_cavern: 2018 # based on Papadias 2021 and HD SAM - none: 2022 # arbitrary - h2_pipe_array: 2018 # ANL costs - h2_transport_pipeline: 2018 # same model for costs as the h2_pipe_array - wind: - expected_plant_cost: 'none' -electrolyzer: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: - rating: 180 # MW # 0.9*Plant rating appears near-optimal for 400 MW wind plant with 3 days of underground pipe storage # MW - cluster_rating_MW: 180 - pem_control_type: 'basic' - eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 77600 #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW - electrolyzer_capex: 700 # $/kW conservative 2025 centralized. high 700, low 300 # based on https://www.irena.org/-/media/Files/IRENA/Agency/Publication/2020/Dec/IRENA_Green_hydrogen_cost_2020.pdf - replacement_cost_percent: 0.15 # percent of capex - H2A default case - cost_model: "singlitico2021" # "basic" is a basic cost model based on H2a and HFTO program record for PEM electrolysis. "singlitico2021" uses cost estimates from that paper - -h2_transport_compressor: - outlet_pressure: 68 # bar based on HDSAM -h2_storage_compressor: - output_pressure: 100 # bar (1 bar = 100 kPa) - flow_rate: 89 # kg/hr - energy_rating: 802 # kWe (aka 1 kWh) - mean_days_between_failures: 200 # days - # annual_h2_throughput: 18750 # [kg/yr] -> kg of H2 per year -h2_transport_pipe: - outlet_pressure: 10 # bar - from example in code from Jamie #TODO check this value -h2_storage: - size_capacity_from_demand: - flag: False # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "none" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 3 # [days] how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` or `size_capacity_from_demand` is set to True) - -platform: - opex_rate: 0.0111 # % of capex to determine opex (see table 5 in https://www.acm.nl/sites/default/files/documents/study-on-estimation-method-for-additional-efficient-offshore-grid-opex.pdf) - # Modified orbit configuration file for a single platform to carry "X technology" - design_phases: - - FixedPlatformDesign # Register Design Phase - install_phases: - FixedPlatformInstallation: 0 # Register Install Phase - oss_install_vessel: example_heavy_lift_vessel - site: - depth: -1 # site depth [m] (if -1, then will use the full plant depth) - distance: -1 # distance to port [km] (if -1, then will use the full plant distance) - equipment: - tech_required_area: -1. # equipment area [m**2] (-1 will require the input during run) - tech_combined_mass: -1 # equipment mass [t] (-1 will require the input during run) - topside_design_cost: 4500000 # topside design cost [USD] - installation_duration: 14 # time at sea [days] - -policy_parameters: # these should be adjusted for inflation prior to application - order of operations: rate in 1992 $, -#then prevailing wage multiplier if applicable, then inflation - option1: # base # no policy included ---> see files/task1/regulation and policy revue/ page 4 of 13 middle - read this - # and look at assumptions - electricity_itc: 0 - electricity_ptc: 0 - h2_ptc: 0 - h2_storage_itc: 0 - option2: # base credit levels with H2 - electricity_itc: 0 - electricity_ptc: 0.003 # $0.003/kW (this is base, see inflation adjustment in option 3) - h2_ptc: 0.6 # $0.60/kg h2 produced - assumes net zero but not meeting prevailing wage requirements - does this need to be - # adjusted for inflation from 2022 dollars to claim date, probably constant after claim date? - h2_storage_itc: 0.06 - option3: # same as option 5, but assuming prevailing wages are met --> 5x multiplier on both PTCs - electricity_itc: 0 - electricity_ptc: 0.015 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg 2022 dollars - do not adjust for inflation - h2_storage_itc: 0.3 - # bonus options, option 5 and 6 but ITC equivalents - option4: # prevailing wages not met - electricity_itc: 0.06 # %/100 capex - electricity_ptc: 0.00 # $/kW 1992 dollars - h2_ptc: 0.6 # $0.60/kg produced 2022 dollars - assumes net zero but not meeting prevailing wage requirements - does this need to be - # do not adjust for inflation, probably constant after claim date? - h2_storage_itc: 0.06 - option5: # prevailing wages met - electricity_itc: 0.30 # %/100 capex - electricity_ptc: 0.0 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0.3 - option6: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron - # and mfg. components from the US) - electricity_itc: 0.40 # %/100 capex - electricity_ptc: 0.0 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0.4 - option7: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron - # and mfg. components from the US) - electricity_itc: 0.0 # %/100 capex - electricity_ptc: 0.0165 # $/kWh 1992 dollars (0.015*1.1) - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - # you can elect itc_for_h2 in leu of the h2_ptc - this choice is independent of the other tech credit selections - # 6% or %50 for itc_for_h2 - h2_storage_itc: 0.5 - -plant_design: - scenario0: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario1: - electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - transportation: "hvdc" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario2: - electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - transportation: "hvdc" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario3: - electrolyzer_location: "turbine" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "turbine" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario4: - electrolyzer_location: "turbine" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario5: - electrolyzer_location: "turbine" # can be one of ["onshore", "turbine", "platform"] - transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario6: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario7: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario8: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "hvdc+pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario9: - electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "onshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario10: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "platform" # can be one of ["none", "onshore", "platform"] - battery_location: "platform" # can be one of ["none", "onshore", "platform"] - scenario11: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "platform" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - -lca_config: - run_lca: False #True - electrolyzer_type: pem #alkaline, soec - feedstock_water_type: ground #desal, surface - cambium: #cambium API argument, see cambium_data.py for additional argument options - project_uuid: '0f92fe57-3365-428a-8fe8-0afc326b3b43' - scenario: 'Mid-case with 100% decarbonization by 2035' - location_type: 'GEA Regions 2023' - time_type: 'hourly' - -opt_options: - opt_flag: True - general: - folder_output: "output" - fname_output: "test_run_h2integrate_optimization" - design_variables: - electrolyzer_rating_kw: - flag: False - lower: 1000.0 - upper: 400000.0 - units: "kW" - pv_capacity_kw: - flag: False - lower: 1000.0 - upper: 10000.0 - units: "kW" - wave_capacity_kw: - flag: False - lower: 1000.0 - upper: 1500000.0 - units: "kW*h" - battery_capacity_kw: - flag: False - lower: 1000.0 - upper: 10000.0 - units: "kW" - battery_capacity_kwh: - flag: False - lower: 1000.0 - upper: 10000.0 - units: "kW*h" - turbine_x: - flag: False - lower: 0.0 - upper: 20000.0 - units: "m" - turbine_y: - flag: False - lower: 0.0 - upper: 20000.0 - units: "m" - constraints: - turbine_spacing: - flag: False - lower: 0.0 - boundary_distance: - flag: False - lower: 0.0 - pv_to_platform_area_ratio: - flag: True - upper: 1.0 # relative size of solar pv area to platform area - user: {} - merit_figure: "lcoh" - merit_figure_user: - name: "lcoh" - max_flag: False - ref: 1.0 # value of objective that scales to 1.0 - driver: - optimization: - flag: True - solver: "SNOPT" - tol: 1E-6 - max_major_iter: 50 - max_minor_iter: 500 - # time_limit: 10 # (sec) optional - # "hist_file_name: "snopt_history.txt", # optional - verify_level: 0 # optional - step_calc: None - form: "central" # type of finite differences to use, can be one of ["forward", "backward", "central"] - debug_print: False - gradient_method: "openmdao" - step_size_study: - flag: False - design_of_experiments: - flag: False - run_parallel: False - generator: FullFact # [Uniform, FullFact, PlackettBurman, BoxBehnken, LatinHypercube] - num_samples: 5 # Number of samples to evaluate model at (Uniform and LatinHypercube only) - seed: 2 - levels: 5 # Number of evenly spaced levels between each design variable lower and upper bound (FullFactorial only) - criterion: None # [None, center, c, maximin, m, centermaximin, cm, correelation, corr] - iterations: 1 - debug_print: False - recorder: - flag: True - file_name: "recorder_doe_pv.sql" - includes: ["lcoe", "platform_area", "pv_area", "pv_platform_ratio"] diff --git a/tests/h2integrate/input_files/plant/h2integrate_config_onshore.yaml b/tests/h2integrate/input_files/plant/h2integrate_config_onshore.yaml deleted file mode 100644 index 3413cf6cb..000000000 --- a/tests/h2integrate/input_files/plant/h2integrate_config_onshore.yaml +++ /dev/null @@ -1,368 +0,0 @@ -site: - mean_windspeed: False - depth: 45 #m - wind_layout: - row_spacing: 7 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - turbine_spacing: 7 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - grid_angle: 0 # wind layout grid angle in degrees where 0 is north, increasing clockwise - row_phase_offset: 0 # wind layout offset of turbines along row from one row to the next -project_parameters: - project_lifetime: 30 - grid_connection: False # option, can be turned on or off - ppa_price: 0.025 # $/kWh based on 2022 land based wind market report (ERCOT area ppa prices) https://www.energy.gov/sites/default/files/2022-08/land_based_wind_market_report_2202.pdf - hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True - financial_analysis_start_year: 2027 - cost_year: 2022 # to match ATB - installation_time: 36 # months -finance_parameters: - costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year - inflation_rate: 0.025 # based on 2022 ATB - discount_rate: 0.10 # nominal return based on 2022 ATB basline workbook - debt_equity_split: 68.5 # 2022 ATB uses 68.5% debt - property_tax: 0.01 # percent of CAPEX # combined with property insurance then between H2A and H2FAST defaults - property_insurance: 0.005 # percent of CAPEX # combined with property tax then between H2A and H2FAST defaults - total_income_tax_rate: 0.257 # 0.257 tax rate in 2022 atb baseline workbook # current federal income tax rate, but proposed 2023 rate is 0.28. No state income tax in Texas - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.0 #Verify that a different rate shouldn't be used # minimum total sales tax rate in Corpus Christi https://www.cctexas.com/detail/corpus-christi-type-fund-purpose - does this apply to H2? - debt_interest_rate: 0.06 - debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - administrative_expense_percent_of_sales: 0.00 #Check this # percent of sales H2FAST default - depreciation_method: "MACRS" # can be "MACRS" or "Straight line" - MACRS may be better and can reduce LCOH by more than $1/kg and is spec'd in the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - depreciation_period: 5 # years - as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - depreciation_period_electrolyzer: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - discount_years: - wind: 2022 # based on turbine capex value provided to ORBIT from 2022 ATB - wind_and_electrical: 2022 # for ORBIT opex - wave: 2020 # confirmed by Kaitlin Brunik 20240103 - solar: 2022 # TODO check - battery: 2022 # TODO check - platform: 2022 # TODO ask Nick and Charlie - electrical_export_system: 2022 # also from ORBIT, so match wind assumptions. TODO ask Sophie Bradenkamp - desal: 2013 # from code citation: https://www.nrel.gov/docs/fy16osti/66073.pdf - electrolyzer: 2020 # 2020 for singlitico2021, 2016 # for simple h2 cost model in hopp (see https://www.hydrogen.energy.gov/pdfs/19009_h2_production_cost_pem_electrolysis_2019.pdf) ## 2020 # based on IRENA report https://www.irena.org/-/media/Files/IRENA/Agency/Publication/2020/Dec/IRENA_Green_hydrogen_cost_2020.pdf - h2_transport_compressor: 2016 # listed in code header - h2_storage: - pressure_vessel: 2022 # based on readme for Compressed_gas_function - pipe: 2019 # Papadias 2021 - salt_cavern: 2019 # Papadias 2021 - turbine: 2003 # assumed based on Kottenstette 2004 - lined_rock_cavern: 2018 # based on Papadias 2021 and HD SAM - none: 2022 # arbitrary - h2_pipe_array: 2018 # ANL costs - h2_transport_pipeline: 2018 # same model for costs as the h2_pipe_array - wind: - expected_plant_cost: 'none' -electrolyzer: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: - rating: 180 # MW # 0.9*Plant rating appears near-optimal for 400 MW wind plant with 3 days of underground pipe storage # MW - cluster_rating_MW: 180 - pem_control_type: 'basic' - eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 77600 #number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: True #include degradation - turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW - electrolyzer_capex: 700 # $/kW conservative 2025 centralized. high 700, low 300 # based on https://www.irena.org/-/media/Files/IRENA/Agency/Publication/2020/Dec/IRENA_Green_hydrogen_cost_2020.pdf - replacement_cost_percent: 0.15 # percent of capex - H2A default case - cost_model: "singlitico2021" # "basic" is a basic cost model based on H2a and HFTO program record for PEM electrolysis. "singlitico2021" uses cost estimates from that paper - -h2_transport_compressor: - outlet_pressure: 68 # bar based on HDSAM -h2_storage_compressor: - output_pressure: 100 # bar (1 bar = 100 kPa) - flow_rate: 89 # kg/hr - energy_rating: 802 # kWe (aka 1 kWh) - mean_days_between_failures: 200 # days - # annual_h2_throughput: 18750 # [kg/yr] -> kg of H2 per year -h2_transport_pipe: - outlet_pressure: 10 # bar - from example in code from Jamie #TODO check this value -h2_storage: - size_capacity_from_demand: - flag: False # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: False # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: "none" # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 3 # [days] how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) - -policy_parameters: # these should be adjusted for inflation prior to application - order of operations: rate in 1992 $, - #then prevailing wage multiplier if applicable, then inflation - option1: # base # no policy included ---> see files/task1/regulation and policy revue/ page 4 of 13 middle - read this - # and look at assumptions - electricity_itc: 0 - electricity_ptc: 0 - h2_ptc: 0 - h2_storage_itc: 0 - option2: # base credit levels with H2 - electricity_itc: 0 - electricity_ptc: 0.003 # $0.003/kW (this is base, see inflation adjustment in option 3) - h2_ptc: 0.6 # $0.60/kg h2 produced - assumes net zero but not meeting prevailing wage requirements - does this need to be - # adjusted for inflation from 2022 dollars to claim date, probably constant after claim date? - h2_storage_itc: 0.06 - option3: # same as option 5, but assuming prevailing wages are met --> 5x multiplier on both PTCs - electricity_itc: 0 - electricity_ptc: 0.015 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg 2022 dollars - do not adjust for inflation - h2_storage_itc: 0.3 - # bonus options, option 5 and 6 but ITC equivalents - option4: # prevailing wages not met - electricity_itc: 0.06 # %/100 capex - electricity_ptc: 0.00 # $/kW 1992 dollars - h2_ptc: 0.6 # $0.60/kg produced 2022 dollars - assumes net zero but not meeting prevailing wage requirements - does this need to be - # do not adjust for inflation, probably constant after claim date? - h2_storage_itc: 0.06 - option5: # prevailing wages met - electricity_itc: 0.30 # %/100 capex - electricity_ptc: 0.0 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0.3 - option6: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron - # and mfg. components from the US) - electricity_itc: 0.40 # %/100 capex - electricity_ptc: 0.0 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0.4 - option7: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron - # and mfg. components from the US) - electricity_itc: 0.0 # %/100 capex - electricity_ptc: 0.0165 # $/kWh 1992 dollars (0.015*1.1) - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - # you can elect itc_for_h2 in leu of the h2_ptc - this choice is independent of the other tech credit selections - # 6% or %50 for itc_for_h2 - h2_storage_itc: 0.5 - -plant_design: - scenario0: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario1: - electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - transportation: "hvdc" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario2: - electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - transportation: "hvdc" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario3: - electrolyzer_location: "turbine" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "turbine" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario4: - electrolyzer_location: "turbine" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario5: - electrolyzer_location: "turbine" # can be one of ["onshore", "turbine", "platform"] - transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario6: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "platform" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario7: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario8: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "hvdc+pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - scenario9: - electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "onshore" # can be one of ["onshore", "offshore"] - pv_location: "none" # can be one of ["none", "onshore", "platform"] - battery_location: "none" # can be one of ["none", "onshore", "platform"] - scenario10: - electrolyzer_location: "platform" # can be one of ["onshore", "turbine", "platform"] - transportation: "pipeline" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - pv_location: "platform" # can be one of ["none", "onshore", "platform"] - battery_location: "platform" # can be one of ["none", "onshore", "platform"] - wind_location: "offshore" # can be one of ["onshore", "offshore"] - scenario11: - electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "onshore" # can be one of ["onshore", "offshore"] - pv_location: "onshore" # can be one of ["none", "onshore", "platform"] - battery_location: "onshore" # can be one of ["none", "onshore", "platform"] - scenario12: - electrolyzer_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - transportation: "none" # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: "onshore" # can be one of ["onshore", "turbine", "platform"] - wind_location: "onshore" # can be one of ["onshore", "offshore"] - pv_location: "onshore" # can be one of ["none", "onshore", "platform"] - battery_location: "onshore" # can be one of ["none", "onshore", "platform"] - -steel: - capacity: - input_capacity_factor_estimate: 0.9 - costs: - operational_year: 2035 - o2_heat_integration: false - feedstocks: - oxygen_market_price: 0.03 - natural_gas_prices: - "2035": 3.76232 - "2036": 3.776032 - "2037": 3.812906 - "2038": 3.9107960000000004 - "2039": 3.865776 - "2040": 3.9617400000000003 - "2041": 4.027136 - "2042": 4.017166 - "2043": 3.9715339999999997 - "2044": 3.924314 - "2045": 3.903287 - "2046": 3.878192 - "2047": 3.845413 - "2048": 3.813366 - "2049": 3.77735 - "2050": 3.766164 - "2051": 3.766164 - "2052": 3.766164 - "2053": 3.766164 - "2054": 3.766164 - "2055": 3.766164 - "2056": 3.766164 - "2057": 3.766164 - "2058": 3.766164 - "2059": 3.766164 - "2060": 3.766164 - "2061": 3.766164 - "2062": 3.766164 - "2063": 3.766164 - "2064": 3.766164 - finances: - plant_life: 30 - grid_prices: - "2035": 89.42320514456621 - "2036": 89.97947569251141 - "2037": 90.53574624045662 - "2038": 91.09201678840184 - "2039": 91.64828733634704 - "2040": 92.20455788429224 - "2041": 89.87291235917809 - "2042": 87.54126683406393 - "2043": 85.20962130894978 - "2044": 82.87797578383562 - "2045": 80.54633025872147 - "2046": 81.38632144593608 - "2047": 82.22631263315068 - "2048": 83.0663038203653 - "2049": 83.90629500757991 - "2050": 84.74628619479452 - "2051": 84.74628619479452 - "2052": 84.74628619479452 - "2053": 84.74628619479452 - "2054": 84.74628619479452 - "2055": 84.74628619479452 - "2056": 84.74628619479452 - "2057": 84.74628619479452 - "2058": 84.74628619479452 - "2059": 84.74628619479452 - "2060": 84.74628619479452 - "2061": 84.74628619479452 - "2062": 84.74628619479452 - "2063": 84.74628619479452 - "2064": 84.74628619479452 - - # Additional parameters passed to ProFAST - financial_assumptions: - "total income tax rate": 0.2574 - "capital gains tax rate": 0.15 - "leverage after tax nominal discount rate": 0.10893 - "debt equity ratio of initial financing": 0.624788 - "debt interest rate": 0.050049 - -ammonia: - capacity: - input_capacity_factor_estimate: 0.9 - costs: - feedstocks: - electricity_cost: 89.42320514456621 - hydrogen_cost: 4.2986685034417045 - cooling_water_cost: 0.00291 - iron_based_catalyst_cost: 23.19977341 - oxygen_cost: 0 - finances: - plant_life: 30 - grid_prices: - "2035": 89.42320514456621 - "2036": 89.97947569251141 - "2037": 90.53574624045662 - "2038": 91.09201678840184 - "2039": 91.64828733634704 - "2040": 92.20455788429224 - "2041": 89.87291235917809 - "2042": 87.54126683406393 - "2043": 85.20962130894978 - "2044": 82.87797578383562 - "2045": 80.54633025872147 - "2046": 81.38632144593608 - "2047": 82.22631263315068 - "2048": 83.0663038203653 - "2049": 83.90629500757991 - "2050": 84.74628619479452 - "2051": 84.74628619479452 - "2052": 84.74628619479452 - "2053": 84.74628619479452 - "2054": 84.74628619479452 - "2055": 84.74628619479452 - "2056": 84.74628619479452 - "2057": 84.74628619479452 - "2058": 84.74628619479452 - "2059": 84.74628619479452 - "2060": 84.74628619479452 - "2061": 84.74628619479452 - "2062": 84.74628619479452 - "2063": 84.74628619479452 - "2064": 84.74628619479452 - - # Additional parameters passed to ProFAST - financial_assumptions: - "total income tax rate": 0.2574 - "capital gains tax rate": 0.15 - "leverage after tax nominal discount rate": 0.10893 - "debt equity ratio of initial financing": 0.624788 - "debt interest rate": 0.050049 - -lca_config: - run_lca: False #True - electrolyzer_type: pem #alkaline, soec - feedstock_water_type: ground #desal, surface - cambium: #cambium API argument, see cambium_data.py for additional argument options - project_uuid: '0f92fe57-3365-428a-8fe8-0afc326b3b43' - scenario: 'Mid-case with 100% decarbonization by 2035' - location_type: 'GEA Regions 2023' - time_type: 'hourly' diff --git a/tests/h2integrate/test_finance.py b/tests/h2integrate/test_finance.py deleted file mode 100644 index ed938d0c7..000000000 --- a/tests/h2integrate/test_finance.py +++ /dev/null @@ -1,248 +0,0 @@ -import os -from pathlib import Path - -import pytest -from pytest import approx - -from h2integrate import EXAMPLE_DIR -from h2integrate.core.dict_utils import update_defaults -from h2integrate.tools.profast_tools import ( - run_profast, - create_years_of_operation, - create_and_populate_profast, -) -from h2integrate.core.h2integrate_model import H2IntegrateModel -from h2integrate.core.inputs.validation import load_yaml - - -def test_calc_financial_parameter_weighted_average_by_capex(subtests): - from h2integrate.tools.eco.finance import calc_financial_parameter_weighted_average_by_capex - - with subtests.test("single value"): - h2integrate_config = {"finance_parameters": {"discount_rate": 0.1}} - - assert ( - calc_financial_parameter_weighted_average_by_capex( - "discount_rate", h2integrate_config=h2integrate_config, capex_breakdown={} - ) - == 0.1 - ) - - with subtests.test("weighted average value - all values specified"): - h2integrate_config = {"finance_parameters": {"discount_rate": {"wind": 0.05, "solar": 0.1}}} - - capex_breakdown = {"wind": 1e9, "solar": 1e8} - - return_value = calc_financial_parameter_weighted_average_by_capex( - "discount_rate", h2integrate_config=h2integrate_config, capex_breakdown=capex_breakdown - ) - - assert return_value == approx(0.05454545454545454) - - with subtests.test("weighted average value - not all values specified"): - h2integrate_config = { - "finance_parameters": {"discount_rate": {"wind": 0.05, "solar": 0.1, "general": 0.15}} - } - - capex_breakdown = {"wind": 1e9, "solar": 1e8, "electrolyzer": 3e8, "battery": 2e8} - - return_value = calc_financial_parameter_weighted_average_by_capex( - "discount_rate", h2integrate_config=h2integrate_config, capex_breakdown=capex_breakdown - ) - - assert return_value == approx(0.084375) - - -def test_variable_om_no_escalation(subtests): - os.chdir(EXAMPLE_DIR / "02_texas_ammonia") - - inflation_rate = 0.0 - # Create a H2Integrate model - model = H2IntegrateModel(Path.cwd() / "02_texas_ammonia.yaml") - - # Run the model - model.run() - - model.post_process() - - with subtests.test("Check original LCOH with zero escalation"): - assert ( - pytest.approx(model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0], rel=1e-3) - == 3.9705799099 - ) - - outputs_dir = Path.cwd() / "outputs" - - yaml_fpath = outputs_dir / "profast_output_hydrogen_config.yaml" - - pf_dict = load_yaml(yaml_fpath) - - plant_life = int(pf_dict["params"]["operating life"]) - - years_of_operation = create_years_of_operation( - plant_life, - pf_dict["params"]["analysis start year"], - pf_dict["params"]["installation months"], - ) - - pf_dict = update_defaults(pf_dict, "escalation", inflation_rate) - pf_dict["params"].update({"general inflation rate": inflation_rate}) - - water_cost_per_gal = 0.003 # [$/gal] - gal_water_pr_kg_H2 = 3.8 # [gal H2O / kg-H2] - - # calculate annual water cost - annual_h2_kg = pf_dict["params"]["capacity"] * pf_dict["params"]["long term utilization"] * 365 - annual_water_gal = annual_h2_kg * gal_water_pr_kg_H2 - annual_water_cost_USD_per_kg = annual_water_gal * water_cost_per_gal / annual_h2_kg - water_feedstock_entry = { - "Water": { - "escalation": inflation_rate, - "unit": "$/kg", - "usage": 1.0, - "cost": annual_water_cost_USD_per_kg, - } - } - - # update feedstock entry - pf_dict["feedstocks"].update(water_feedstock_entry) - - # run profast for feedstock cost as a scalar - pf = create_and_populate_profast(pf_dict) - sol_scalar, summary_scalar, price_breakdown_scalar = run_profast(pf) - - with subtests.test( - "Check variable o&m as scalar LCOH against original LCOH with zero escalation" - ): - assert sol_scalar["price"] > model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0] - - with subtests.test("Check variable o&m as scalar LCOH with zero escalation value"): - assert pytest.approx(sol_scalar["price"], rel=1e-3) == 3.98205152215 - - # create water cost entry as array - annual_water_cost_USD_per_year = [annual_water_cost_USD_per_kg] * plant_life - annual_water_cost_USD_per_year_dict = dict( - zip(years_of_operation, annual_water_cost_USD_per_year) - ) - water_feedstock_entry = { - "Water": { - "escalation": inflation_rate, - "unit": "$/kg", - "usage": 1.0, - "cost": annual_water_cost_USD_per_year_dict, - } - } - - # update feedstock entry - pf_dict["feedstocks"].update(water_feedstock_entry) - - pf = create_and_populate_profast(pf_dict) - sol_list, summary_list, price_breakdown_list = run_profast(pf) - with subtests.test( - "Check variable o&m as array LCOH against original LCOH with zero escalation" - ): - assert sol_list["price"] > model.prob.get_val("finance_subgroup_hydrogen.LCOH")[0] - - with subtests.test("Check variable o&m as array LCOH with zero escalation value"): - assert pytest.approx(sol_list["price"], rel=1e-3) == 3.98205152215 - - with subtests.test( - "Check variable o&m as scalar and as array have same LCOH with zero escalation" - ): - assert pytest.approx(sol_list["price"], rel=1e-6) == sol_scalar["price"] - - -def test_variable_om_with_escalation(subtests): - os.chdir(EXAMPLE_DIR / "02_texas_ammonia") - - inflation_rate = 0.025 - # Create a H2Integrate model - model = H2IntegrateModel(Path.cwd() / "02_texas_ammonia.yaml") - - # Run the model - model.run() - - outputs_dir = Path.cwd() / "outputs" - - yaml_fpath = outputs_dir / "profast_output_hydrogen_config.yaml" - - # load the profast dictionary - pf_dict = load_yaml(yaml_fpath) - - plant_life = int(pf_dict["params"]["operating life"]) - - years_of_operation = create_years_of_operation( - plant_life, - pf_dict["params"]["analysis start year"], - pf_dict["params"]["installation months"], - ) - - # update the inflation rate - pf_dict = update_defaults(pf_dict, "escalation", inflation_rate) - pf_dict["params"].update({"general inflation rate": inflation_rate}) - - # rerun profast without variable o&m costs - pf = create_and_populate_profast(pf_dict) - sol_init, summary_init, price_breakdown_init = run_profast(pf) - - with subtests.test("Check original LCOH with escalation"): - assert pytest.approx(sol_init["price"], rel=1e-3) == 2.9981730 - - # calculate annual water cost - water_cost_per_gal = 0.003 # [$/gal] - gal_water_pr_kg_H2 = 3.8 # [gal H2O / kg-H2] - annual_h2_kg = pf_dict["params"]["capacity"] * pf_dict["params"]["long term utilization"] * 365 - annual_water_gal = annual_h2_kg * gal_water_pr_kg_H2 - - # calculate water cost per kg H2 - annual_water_cost_USD_per_kg = annual_water_gal * water_cost_per_gal / annual_h2_kg - water_feedstock_entry = { - "Water": { - "escalation": inflation_rate, - "unit": "$/kg", - "usage": 1.0, - "cost": annual_water_cost_USD_per_kg, - } - } - - # update feedstock entry - pf_dict["feedstocks"].update(water_feedstock_entry) - - # run profast for feedstock cost as a scalar - pf = create_and_populate_profast(pf_dict) - sol_scalar, summary_scalar, price_breakdown_scalar = run_profast(pf) - - with subtests.test("Check variable o&m as scalar LCOH against original LCOH with escalation"): - assert sol_scalar["price"] > sol_init["price"] - - with subtests.test("Check variable o&m as scalar LCOH with escalation value"): - assert pytest.approx(sol_scalar["price"], rel=1e-3) == 3.00964412171 - - # calculate water cost per kg-H2 and format for costs per year - annual_water_cost_USD_per_year = [annual_water_cost_USD_per_kg] * plant_life - annual_water_cost_USD_per_year_dict = dict( - zip(years_of_operation, annual_water_cost_USD_per_year) - ) - water_feedstock_entry = { - "Water": { - "escalation": inflation_rate, - "unit": "$/kg", - "usage": 1.0, - "cost": annual_water_cost_USD_per_year_dict, - } - } - - # update feedstock entry - pf_dict["feedstocks"].update(water_feedstock_entry) - - # run profast for feedstock cost as an array - pf = create_and_populate_profast(pf_dict) - sol_list, summary_list, price_breakdown_list = run_profast(pf) - with subtests.test("Check variable o&m as array LCOH against original LCOH with escalation"): - assert sol_list["price"] > sol_init["price"] - - with subtests.test("Check variable o&m as array LCOH with escalation value"): - assert pytest.approx(sol_list["price"], rel=1e-3) == 3.0062575558 - - with subtests.test("Check variable o&m as array LCOH is less than variable o&m as scalar LCOH"): - assert sol_scalar["price"] > sol_list["price"] diff --git a/tests/h2integrate/test_h2integrate_utilities.py b/tests/h2integrate/test_h2integrate_utilities.py deleted file mode 100644 index 8ce345ea1..000000000 --- a/tests/h2integrate/test_h2integrate_utilities.py +++ /dev/null @@ -1,43 +0,0 @@ -from pytest import raises - -from h2integrate.tools.eco.utilities import ceildiv, visualize_plant - - -def test_visualize_plant(subtests): - with subtests.test("'visualize_plant()' only works with the 'floris' wind model"): - hopp_config = {"technologies": {"wind": {"model_name": "pysam"}}} - with raises(NotImplementedError, match="only works with the 'floris' wind model"): - visualize_plant( - hopp_config, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - None, - ) - - -def test_ceildiv(subtests): - with subtests.test("ceildiv"): - a = 8 - b = 3 - - assert ceildiv(a, b) == 3 - - with subtests.test("ceildiv with one negative value"): - a = 8 - b = -3 - - assert ceildiv(a, b) == -2 - - with subtests.test("ceildiv with two negative values"): - a = -8 - b = -3 - - assert ceildiv(a, b) == 3 diff --git a/tests/h2integrate/test_hydrogen/test_PEM_costs_Singlitico_model.py b/tests/h2integrate/test_hydrogen/test_PEM_costs_Singlitico_model.py deleted file mode 100644 index 6919c9943..000000000 --- a/tests/h2integrate/test_hydrogen/test_PEM_costs_Singlitico_model.py +++ /dev/null @@ -1,79 +0,0 @@ -import numpy as np -from pytest import approx - -from h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_costs_Singlitico_model import ( - PEMCostsSingliticoModel, -) - - -TOL = 1e-3 - -BASELINE = np.array( - [ - # onshore, [capex, opex] - [ - [50.7105172052493, 1.2418205567631722], - ], - # offshore, [capex, opex] - [ - [67.44498788298158, 2.16690312809502], - ], - ] -) - - -class TestPEMCostsSingliticoModel: - def test_calc_capex(self): - P_elec = 0.1 # [GW] - RC_elec = 700 # [MUSD/GW] - - # test onshore capex - pem_onshore = PEMCostsSingliticoModel(elec_location=0) - capex_onshore = pem_onshore.calc_capex(P_elec, RC_elec) - - assert capex_onshore == approx(BASELINE[0][0][0], TOL) - - # test offshore capex - pem_offshore = PEMCostsSingliticoModel(elec_location=1) - capex_offshore = pem_offshore.calc_capex(P_elec, RC_elec) - - assert capex_offshore == approx(BASELINE[1][0][0], TOL) - - def test_calc_opex(self): - P_elec = 0.1 # [GW] - capex_onshore = BASELINE[0][0][0] - capex_offshore = BASELINE[1][0][0] - - # test onshore opex - pem_onshore = PEMCostsSingliticoModel(elec_location=0) - opex_onshore = pem_onshore.calc_opex(P_elec, capex_onshore) - - assert opex_onshore == approx(BASELINE[0][0][1], TOL) - - # test offshore opex - pem_offshore = PEMCostsSingliticoModel(elec_location=1) - opex_offshore = pem_offshore.calc_opex(P_elec, capex_offshore) - - assert opex_offshore == approx(BASELINE[1][0][1], TOL) - - def test_run(self): - P_elec = 0.1 # [GW] - RC_elec = 700 # [MUSD/GW] - - # test onshore opex - pem_onshore = PEMCostsSingliticoModel(elec_location=0) - capex_onshore, opex_onshore = pem_onshore.run(P_elec, RC_elec) - - assert capex_onshore == approx(BASELINE[0][0][0], TOL) - assert opex_onshore == approx(BASELINE[0][0][1], TOL) - - # test offshore opex - pem_offshore = PEMCostsSingliticoModel(elec_location=1) - capex_offshore, opex_offshore = pem_offshore.run(P_elec, RC_elec) - - assert capex_offshore == approx(BASELINE[1][0][0], TOL) - assert opex_offshore == approx(BASELINE[1][0][1], TOL) - - -if __name__ == "__main__": - test_set = TestPEMCostsSingliticoModel() diff --git a/tests/h2integrate/test_hydrogen/test_PEM_costs_custom.py b/tests/h2integrate/test_hydrogen/test_PEM_costs_custom.py deleted file mode 100644 index 675fe5248..000000000 --- a/tests/h2integrate/test_hydrogen/test_PEM_costs_custom.py +++ /dev/null @@ -1,24 +0,0 @@ -from pytest import approx - -from h2integrate.simulation.technologies.hydrogen.electrolysis.PEM_costs_custom import ( - calc_custom_electrolysis_capex_fom, -) - - -TOL = 1e-6 - -electrolyzer_size_MW = 1 -electrolyzer_size_kW = electrolyzer_size_MW * 1e3 -fom_usd_pr_kW = 10.0 -capex_usd_pr_kW = 15.0 -elec_config = {"electrolyzer_capex": capex_usd_pr_kW, "fixed_om_per_kw": fom_usd_pr_kW} - - -def test_custom_capex(): - capex, fom = calc_custom_electrolysis_capex_fom(electrolyzer_size_kW, elec_config) - assert capex == approx(capex_usd_pr_kW * electrolyzer_size_kW, TOL) - - -def test_custom_fixed_om(): - capex, fom = calc_custom_electrolysis_capex_fom(electrolyzer_size_kW, elec_config) - assert fom == approx(fom_usd_pr_kW * electrolyzer_size_kW, TOL) diff --git a/tests/h2integrate/test_hydrogen/test_RO_desal.py b/tests/h2integrate/test_hydrogen/test_RO_desal.py deleted file mode 100644 index 218284732..000000000 --- a/tests/h2integrate/test_hydrogen/test_RO_desal.py +++ /dev/null @@ -1,72 +0,0 @@ -from pytest import approx - -from h2integrate.simulation.technologies.hydrogen.desal.desal_model_eco import RO_desal_eco - - -# Test values are based on hand calculations - - -class TestRODesal: - rel_tol = 1e-2 - - freshwater_needed = 10000 # [kg/hr] - - saltwater = RO_desal_eco(freshwater_needed, "Seawater") - brackish = RO_desal_eco(freshwater_needed, "Brackish") - - def test_capacity_m3_per_hr(self): - assert self.saltwater[0] == approx(10.03, rel=1e-5) - assert self.brackish[0] == approx(10.03, rel=1e-5) - - def test_feedwater(self): - assert self.saltwater[1] == approx(20.06, rel=1e-5) - assert self.brackish[1] == approx(13.37, rel=1e-3) - - def test_power(self): - assert self.saltwater[2] == approx(40.12, rel=1e-5) - assert self.brackish[2] == approx(15.04, rel=1e-3) - - def test_capex(self): - assert self.saltwater[3] == approx(91372, rel=1e-2) - assert self.brackish[3] == approx(91372, rel=1e-2) - - def test_opex(self): - assert self.saltwater[4] == approx(13447, rel=1e-2) - assert self.brackish[4] == approx(13447, rel=1e-2) - - def test_RO_Desal_Seawater(self): - """Test Seawater RO Model""" - outputs = RO_desal_eco(freshwater_kg_per_hr=997, salinity="Seawater") - RO_desal_mass = outputs[5] - RO_desal_footprint = outputs[6] - assert approx(RO_desal_mass) == 346.7 - assert approx(RO_desal_footprint) == 0.467 - - def test_RO_Desal_distributed(self): - """Test Seawater RO Model""" - n_systems = 2 - total_freshwater_kg_per_hr_required = 997 - per_system_freshwater_kg_per_hr_required = total_freshwater_kg_per_hr_required / n_systems - - total_outputs = RO_desal_eco( - freshwater_kg_per_hr=total_freshwater_kg_per_hr_required, - salinity="Seawater", - ) - per_system_outputs = RO_desal_eco( - per_system_freshwater_kg_per_hr_required, salinity="Seawater" - ) - - for t, s in zip(total_outputs, per_system_outputs): - assert t == approx(s * n_systems) - - def test_RO_Desal_Brackish(self): - """Test Brackish Model""" - outputs = RO_desal_eco(freshwater_kg_per_hr=997, salinity="Brackish") - RO_desal_mass = outputs[5] - RO_desal_footprint = outputs[6] - assert approx(RO_desal_mass) == 346.7 - assert approx(RO_desal_footprint) == 0.467 - - -if __name__ == "__main__": - test_set = TestRODesal() diff --git a/tests/h2integrate/test_hydrogen/test_basic_h2_cost.py b/tests/h2integrate/test_hydrogen/test_basic_h2_cost.py deleted file mode 100644 index 7397e2fb5..000000000 --- a/tests/h2integrate/test_hydrogen/test_basic_h2_cost.py +++ /dev/null @@ -1,177 +0,0 @@ -import numpy as np -from pytest import approx - -from h2integrate.simulation.technologies.hydrogen.electrolysis.H2_cost_model import ( - basic_H2_cost_model, -) - - -class TestBasicH2Costs: - electrolyzer_size_mw = 100 - h2_annual_output = 500 - nturbines = 10 - electrical_generation_timeseries = ( - electrolyzer_size_mw * (np.sin(range(0, 500))) * 0.5 + electrolyzer_size_mw * 0.5 - ) - - per_turb_electrolyzer_size_mw = electrolyzer_size_mw / nturbines - per_turb_h2_annual_output = h2_annual_output / nturbines - per_turb_electrical_generation_timeseries = electrical_generation_timeseries / nturbines - - elec_capex = 600 # $/kW - time_between_replacement = 80000 # hours - useful_life = 30 # years - - def test_on_turbine_capex(self): - ( - per_turb_electrolyzer_total_capital_cost, - per_turb_electrolyzer_OM_cost, - per_turb_electrolyzer_capex_kw, - time_between_replacement, - h2_tax_credit, - h2_itc, - ) = basic_H2_cost_model( - self.elec_capex, - self.time_between_replacement, - self.per_turb_electrolyzer_size_mw, - self.useful_life, - self.per_turb_electrical_generation_timeseries, - self.per_turb_h2_annual_output, - 0.0, - 0.0, - include_refurb_in_opex=False, - offshore=1, - ) - - electrolyzer_total_capital_cost = per_turb_electrolyzer_total_capital_cost * self.nturbines - per_turb_electrolyzer_OM_cost * self.nturbines - - assert electrolyzer_total_capital_cost == approx(127698560.0) - - def test_on_platform_capex(self): - ( - electrolyzer_total_capital_cost, - electrolyzer_OM_cost, - electrolyzer_capex_kw, - time_between_replacement, - h2_tax_credit, - h2_itc, - ) = basic_H2_cost_model( - self.elec_capex, - self.time_between_replacement, - self.electrolyzer_size_mw, - self.useful_life, - self.electrical_generation_timeseries, - self.h2_annual_output, - 0.0, - 0.0, - include_refurb_in_opex=False, - offshore=1, - ) - - assert electrolyzer_total_capital_cost == approx(125448560.0) - - def test_on_land_capex(self): - ( - per_turb_electrolyzer_total_capital_cost, - per_turb_electrolyzer_OM_cost, - per_turb_electrolyzer_capex_kw, - time_between_replacement, - h2_tax_credit, - h2_itc, - ) = basic_H2_cost_model( - self.elec_capex, - self.time_between_replacement, - self.per_turb_electrolyzer_size_mw, - self.useful_life, - self.per_turb_electrical_generation_timeseries, - self.per_turb_h2_annual_output, - 0.0, - 0.0, - include_refurb_in_opex=False, - offshore=0, - ) - - electrolyzer_total_capital_cost = per_turb_electrolyzer_total_capital_cost * self.nturbines - per_turb_electrolyzer_OM_cost * self.nturbines - - assert electrolyzer_total_capital_cost == approx(116077280.00000003) - - def test_on_turbine_opex(self): - ( - per_turb_electrolyzer_total_capital_cost, - per_turb_electrolyzer_OM_cost, - per_turb_electrolyzer_capex_kw, - time_between_replacement, - h2_tax_credit, - h2_itc, - ) = basic_H2_cost_model( - self.elec_capex, - self.time_between_replacement, - self.per_turb_electrolyzer_size_mw, - self.useful_life, - self.per_turb_electrical_generation_timeseries, - self.per_turb_h2_annual_output, - 0.0, - 0.0, - include_refurb_in_opex=False, - offshore=1, - ) - - (per_turb_electrolyzer_total_capital_cost * self.nturbines) - electrolyzer_OM_cost = per_turb_electrolyzer_OM_cost * self.nturbines - - assert electrolyzer_OM_cost == approx(1377207.4599629682) - - def test_on_platform_opex(self): - ( - electrolyzer_total_capital_cost, - electrolyzer_OM_cost, - electrolyzer_capex_kw, - time_between_replacement, - h2_tax_credit, - h2_itc, - ) = basic_H2_cost_model( - self.elec_capex, - self.time_between_replacement, - self.electrolyzer_size_mw, - self.useful_life, - self.electrical_generation_timeseries, - self.h2_annual_output, - 0.0, - 0.0, - include_refurb_in_opex=False, - offshore=1, - ) - - assert electrolyzer_OM_cost == approx(1864249.9310054395) - - def test_on_land_opex(self): - ( - per_turb_electrolyzer_total_capital_cost, - per_turb_electrolyzer_OM_cost, - per_turb_electrolyzer_capex_kw, - time_between_replacement, - h2_tax_credit, - h2_itc, - ) = basic_H2_cost_model( - self.elec_capex, - self.time_between_replacement, - self.per_turb_electrolyzer_size_mw, - self.useful_life, - self.per_turb_electrical_generation_timeseries, - self.per_turb_h2_annual_output, - 0.0, - 0.0, - include_refurb_in_opex=False, - offshore=0, - ) - - (per_turb_electrolyzer_total_capital_cost * self.nturbines) - electrolyzer_OM_cost = per_turb_electrolyzer_OM_cost * self.nturbines - - assert electrolyzer_OM_cost == approx(1254447.4599629682) - - -if __name__ == "__main__": - test_set = TestBasicH2Costs() diff --git a/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_compressor.py b/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_compressor.py index 7ce0cb9ab..d05b7b927 100644 --- a/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_compressor.py +++ b/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_compressor.py @@ -1,6 +1,6 @@ from pytest import approx, raises -from h2integrate.simulation.technologies.hydrogen.h2_transport.h2_compression import Compressor +from h2integrate.storage.hydrogen.h2_transport.h2_compression import Compressor # test that we get the results we got when the code was received diff --git a/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_export_pipeline.py b/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_export_pipeline.py deleted file mode 100644 index 6bd8bb0f4..000000000 --- a/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_export_pipeline.py +++ /dev/null @@ -1,132 +0,0 @@ -from h2integrate.simulation.technologies.hydrogen.h2_transport.h2_export_pipe import ( - run_pipe_analysis, -) - - -# test that we the results we got when the code was recieved -class TestExportPipeline: - L = 8 # Length [km] - m_dot = 1.5 # Mass flow rate [kg/s] assuming 300 MW -> 1.5 kg/s - p_inlet = 30 # Inlet pressure [bar] - p_outlet = 10 # Outlet pressure [bar] - depth = 80 # depth of pipe [m] - costs = run_pipe_analysis(L, m_dot, p_inlet, p_outlet, depth) - - def test_grade(self): - assert self.costs["Grade"][0] == "X42" - - def test_od(self): - assert self.costs["Outer diameter (mm)"][0] == 168.28 - - def test_id(self): - assert self.costs["Inner diameter (mm)"][0] == 162.74 - - def test_schedule(self): - assert self.costs["Schedule"][0] == "S 5S" - - def test_thickness(self): - assert self.costs["Thickness (mm)"][0] == 2.77 - - def test_volume(self): - assert self.costs["volume [m3]"][0] == 12.213769866246679 - - def test_weight(self): - assert self.costs["weight [kg]"][0] == 95755.95575137396 - - def test_material_cost(self): - assert self.costs["mat cost [$]"][0] == 210663.1026530227 - - def test_labor_cost(self): - assert self.costs["labor cost [$]"][0] == 1199293.4563603932 - - def test_misc_cost(self): - assert self.costs["misc cost [$]"][0] == 429838.3943856504 - - def test_row_cost(self): # ROW = right of way - assert self.costs["ROW cost [$]"][0] == 365317.5476681454 - - def test_total_cost_output(self): - assert self.costs["total capital cost [$]"][0] == 2205112.501067212 - - def test_total_capital_cost_sum(self): - total_capital_cost = ( - self.costs["mat cost [$]"][0] - + self.costs["labor cost [$]"][0] - + self.costs["misc cost [$]"][0] - + self.costs["ROW cost [$]"][0] - ) - - assert self.costs["total capital cost [$]"][0] == total_capital_cost - - def test_annual_opex(self): - assert ( - self.costs["annual operating cost [$]"][0] - == 0.0117 * self.costs["total capital cost [$]"][0] - ) - - -class TestExportPipelineRegion: - L = 8 # Length [km] - m_dot = 1.5 # Mass flow rate [kg/s] assuming 300 MW -> 1.5 kg/s - p_inlet = 30 # Inlet pressure [bar] - p_outlet = 10 # Outlet pressure [bar] - depth = 80 # depth of pipe [m] - region = "GP" # great plains region - costs = run_pipe_analysis(L, m_dot, p_inlet, p_outlet, depth, region=region) - - def test_material_cost(self): - assert self.costs["mat cost [$]"][0] == 210663.1026530227 - - def test_labor_cost(self): - assert self.costs["labor cost [$]"][0] == 408438.062500015 - - def test_misc_cost(self): - assert self.costs["misc cost [$]"][0] == 184458.92890187018 - - def test_row_cost(self): # ROW = right of way - assert self.costs["ROW cost [$]"][0] == 52426.57591258784 - - def test_total_cost_output(self): - assert self.costs["total capital cost [$]"][0] == 855986.6699674957 - - -class TestExportPipelineOverrides: - L = 8 # Length [km] - m_dot = 1.5 # Mass flow rate [kg/s] assuming 300 MW -> 1.5 kg/s - p_inlet = 30 # Inlet pressure [bar] - p_outlet = 10 # Outlet pressure [bar] - depth = 80 # depth of pipe [m] - labor_in_mi = 1000 - misc_in_mi = 2000 - row_in_mi = 3000 - mat_in_mi = 4000 - costs = run_pipe_analysis( - L, - m_dot, - p_inlet, - p_outlet, - depth, - labor_in_mi=labor_in_mi, - misc_in_mi=misc_in_mi, - row_in_mi=row_in_mi, - mat_in_mi=mat_in_mi, - ) - - def test_material_cost(self): - assert self.costs["mat cost [$]"][0] == 124469.9746153248 - - def test_labor_cost(self): - assert self.costs["labor cost [$]"][0] == 31117.4936538312 - - def test_misc_cost(self): - assert self.costs["misc cost [$]"][0] == 62234.9873076624 - - def test_row_cost(self): # ROW = right of way - assert self.costs["ROW cost [$]"][0] == 93352.4809614936 - - def test_total_cost_output(self): - assert self.costs["total capital cost [$]"][0] == 311174.936538312 - - -if __name__ == "__main__": - test_set = TestExportPipeline() diff --git a/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_pipe_array.py b/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_pipe_array.py deleted file mode 100644 index 47d18c782..000000000 --- a/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_pipe_array.py +++ /dev/null @@ -1,63 +0,0 @@ -from h2integrate.simulation.technologies.hydrogen.h2_transport.h2_pipe_array import ( - run_pipe_array, - run_pipe_array_const_diam, -) - - -# test that we the results we got when the code was recieved -class TestPipeArraySingleSection: - L = 8 # Length [km] - m_dot = 1.5 # Mass flow rate [kg/s] assuming 300 MW -> 1.5 kg/s - p_inlet = 30 # Inlet pressure [bar] - p_outlet = 10 # Outlet pressure [bar] - depth = 80 # depth of pipe [m] - capex, opex = run_pipe_array([[L]], depth, p_inlet, p_outlet, [[m_dot]]) - - def test_capex(self): - assert self.capex == 2226256.16387454 - - def test_opex(self): - assert self.opex == 26047.197117332118 - - -# TODO check the values in these test, they are gut checked for being slightly above what would be expected for a single distance, but not well determined - - -class TestPipeArrayMultiSection: - L = 8 # Length [km] - m_dot = 1.5 # Mass flow rate [kg/s] assuming 300 MW -> 1.5 kg/s - p_inlet = 30 # Inlet pressure [bar] - p_outlet = 10 # Outlet pressure [bar] - depth = 80 # depth of pipe [m] - - def test_capex(self): - assert self.capex == 5129544.170342567 - - def test_opex(self): - assert self.opex == 60015.666793008044 - - capex, opex = run_pipe_array([[L, L]], depth, p_inlet, p_outlet, [[m_dot, m_dot]]) - - -class TestPipeArrayMultiSectionConstDiameter: - L = 8 # Length [km] - m_dot = 1.5 # Mass flow rate [kg/s] assuming 300 MW -> 1.5 kg/s - p_inlet = 30 # Inlet pressure [bar] - p_outlet = 10 # Outlet pressure [bar] - depth = 80 # depth of pipe [m] - - capex, opex = run_pipe_array_const_diam( - [[L, L], [L, L]], depth, p_inlet, p_outlet, [[m_dot, m_dot], [m_dot, m_dot]] - ) - - def test_capex(self): - assert self.capex == 10360272.637584394 - - def test_opex(self): - assert self.opex == 121215.18985973741 - - -if __name__ == "__main__": - test_set = TestPipeArraySingleSection() - test_set = TestPipeArrayMultiSection() - test_set = TestPipeArrayMultiSectionConstDiameter() diff --git a/tests/h2integrate/test_hydrogen/test_lined_rock_storage.py b/tests/h2integrate/test_hydrogen/test_lined_rock_storage.py deleted file mode 100644 index 503ce914e..000000000 --- a/tests/h2integrate/test_hydrogen/test_lined_rock_storage.py +++ /dev/null @@ -1,64 +0,0 @@ -import pytest -from pytest import fixture - -from h2integrate.simulation.technologies.hydrogen.h2_storage.lined_rock_cavern.lined_rock_cavern import ( # noqa: E501 - LinedRockCavernStorage, -) - - -# Test values are based on conclusions of Papadias 2021 and are in 2019 USD -in_dict = {"h2_storage_kg": 1000000, "system_flow_rate": 100000} - - -@fixture -def lined_rock_cavern_storage(): - lined_rock_cavern_storage = LinedRockCavernStorage(in_dict) - - return lined_rock_cavern_storage - - -def test_init(): - lined_rock_cavern_storage = LinedRockCavernStorage(in_dict) - - assert lined_rock_cavern_storage.input_dict is not None - assert lined_rock_cavern_storage.output_dict is not None - - -def test_capex_per_kg(lined_rock_cavern_storage): - lined_rock_cavern_storage_capex_per_kg, _installed_capex, _compressor_capex = ( - lined_rock_cavern_storage.lined_rock_cavern_capex() - ) - assert lined_rock_cavern_storage_capex_per_kg == pytest.approx(51.532548895265045) - - -def test_capex(lined_rock_cavern_storage): - _lined_rock_cavern_storage_capex_per_kg, installed_capex, _compressor_capex = ( - lined_rock_cavern_storage.lined_rock_cavern_capex() - ) - assert installed_capex == pytest.approx(51136144.673) - - -def test_compressor_capex(lined_rock_cavern_storage): - _lined_rock_cavern_storage_capex_per_kg, _installed_capex, compressor_capex = ( - lined_rock_cavern_storage.lined_rock_cavern_capex() - ) - assert compressor_capex == pytest.approx(9435600.2555) - - -def test_capex_output_dict(lined_rock_cavern_storage): - _lined_rock_cavern_storage_capex_per_kg, _installed_capex, _compressor_capex = ( - lined_rock_cavern_storage.lined_rock_cavern_capex() - ) - assert lined_rock_cavern_storage.output_dict[ - "lined_rock_cavern_storage_capex" - ] == pytest.approx(51136144.673) - - -def test_opex(lined_rock_cavern_storage): - _lined_rock_cavern_storage_capex_per_kg, _installed_capex, _compressor_capex = ( - lined_rock_cavern_storage.lined_rock_cavern_capex() - ) - lined_rock_cavern_storage.lined_rock_cavern_opex() - assert lined_rock_cavern_storage.output_dict["lined_rock_cavern_storage_opex"] == pytest.approx( - 2359700 - ) diff --git a/tests/h2integrate/test_hydrogen/test_pem_mass_and_footprint.py b/tests/h2integrate/test_hydrogen/test_pem_mass_and_footprint.py deleted file mode 100644 index 6a6173300..000000000 --- a/tests/h2integrate/test_hydrogen/test_pem_mass_and_footprint.py +++ /dev/null @@ -1,18 +0,0 @@ -import pytest - -from h2integrate.simulation.technologies.hydrogen.electrolysis.pem_mass_and_footprint import ( - mass, - footprint, -) - - -def test_footprint_0mw(): - assert footprint(0.0) == 0.0 - - -def test_footprint_1mw(): - assert footprint(1) == 48 - - -def test_mass(): - assert mass(0.045) == pytest.approx(900.0, rel=1e-4) diff --git a/tests/h2integrate/test_hydrogen/test_pressure_vessel.py b/tests/h2integrate/test_hydrogen/test_pressure_vessel.py deleted file mode 100644 index 25de53872..000000000 --- a/tests/h2integrate/test_hydrogen/test_pressure_vessel.py +++ /dev/null @@ -1,317 +0,0 @@ -import numpy as np -import matplotlib.pyplot as plt -from pytest import approx - -from h2integrate.simulation.technologies.hydrogen.h2_storage.pressure_vessel.compressed_gas_storage_model_20221021.Compressed_all import ( # noqa: E501 - PressureVessel, -) - - -# test that we the results we got when the code was recieved -class TestPressureVessel: - # pressure_vessel_instance_no_cost = PressureVessel(Energy_cost=0.0) - # pressure_vessel_instance_no_cost.run() - pressure_vessel_instance = PressureVessel(Energy_cost=0.07) - pressure_vessel_instance.run() - - pressure_vessel_instance_no_cost = PressureVessel(Energy_cost=0.0) - pressure_vessel_instance_no_cost.run() - - def test_capacity_max(self): - assert self.pressure_vessel_instance.capacity_max == 5585222.222222222 - - def test_t_discharge_hr_max(self): - assert self.pressure_vessel_instance.t_discharge_hr_max == 25.133499999999998 - - def test_a_fit_capex(self): - # assert self.pressure_vessel_instance.a_fit_capex == 9084.035219940572 - assert self.pressure_vessel_instance.a_fit_capex == approx(0.053925726563169414) - - def test_b_fit_capex(self): - # assert self.pressure_vessel_instance.b_fit_capex == -0.127478041731842 - assert self.pressure_vessel_instance.b_fit_capex == approx(1.6826965840450498) - - def test_c_fit_capex(self): - assert self.pressure_vessel_instance.c_fit_capex == approx(20.297862568544417) - - def test_a_fit_opex(self): - assert self.pressure_vessel_instance.a_fit_opex == approx(0.05900068374896024) - - def test_b_fit_opex(self): - assert self.pressure_vessel_instance.b_fit_opex == approx(1.8431485607717895) - - def test_c_fit_opex(self): - assert self.pressure_vessel_instance.c_fit_opex == approx(17.538017086792006) - - def test_energy_fit(self): - capacity = 1e6 # 1000 metric tons h2 - _, _, energy_per_kg = self.pressure_vessel_instance.calculate_from_fit(capacity_kg=capacity) - assert energy_per_kg == approx(2.688696, 1e-5) # kWh/kg - - def test_compare_price_change_capex(self): - capacity = 1e6 # 1000 metric tons h2 - capex_07, _, _ = self.pressure_vessel_instance.calculate_from_fit(capacity_kg=capacity) - capex_00, _, _ = self.pressure_vessel_instance_no_cost.calculate_from_fit( - capacity_kg=capacity - ) - - assert capex_00 == capex_07 - - def test_compare_price_change_opex(self): - capacity = 1e6 # 1000 metric tons h2 - _, opex_07, _ = self.pressure_vessel_instance.calculate_from_fit(capacity_kg=capacity) - _, opex_00, _ = self.pressure_vessel_instance_no_cost.calculate_from_fit( - capacity_kg=capacity - ) - - assert opex_00 < opex_07 - - def test_compare_price_change_energy(self): - capacity = 1e6 # 1000 metric tons h2 - _, _, energy_per_kg_07 = self.pressure_vessel_instance.calculate_from_fit( - capacity_kg=capacity - ) - _, _, energy_per_kg_00 = self.pressure_vessel_instance_no_cost.calculate_from_fit( - capacity_kg=capacity - ) - - assert energy_per_kg_00 == energy_per_kg_07 - - def test_mass_footprint(self): - """ - extension of gold standard test to new tank footprint outputs - """ - cap_H2_tank_ref = 179.6322517351785 - capacity_req = 1.2e3 - Ntank_ref = np.ceil(capacity_req / cap_H2_tank_ref) - Atank_ref = (2 * 53.7e-2) ** 2 - footprint_ref = Ntank_ref * Atank_ref - mass_ref = 1865.0 - - assert self.pressure_vessel_instance.get_tanks(capacity_req) == approx(Ntank_ref) - assert self.pressure_vessel_instance.get_tank_footprint(capacity_req)[0] == approx( - Atank_ref, rel=0.01 - ) - assert self.pressure_vessel_instance.get_tank_footprint(capacity_req)[1] == approx( - footprint_ref, rel=0.01 - ) - - assert self.pressure_vessel_instance.get_tank_mass(capacity_req)[0] == approx( - mass_ref, rel=0.01 - ) - - def test_output_function(self): - capacity = self.pressure_vessel_instance.compressed_gas_function.capacity_1[5] - capex, opex, energy = self.pressure_vessel_instance.calculate_from_fit(capacity) - tol = 1.0 - - assert capex == approx( - self.pressure_vessel_instance.compressed_gas_function.cost_kg[5] * capacity, - tol, - ) - assert opex == approx( - self.pressure_vessel_instance.compressed_gas_function.Op_c_Costs_kg[5] * capacity, - tol, - ) - assert energy == approx( - self.pressure_vessel_instance.compressed_gas_function.total_energy_used_kwh[5] - * capacity, - tol, - ) - - def test_distributed(self): - capacity = self.pressure_vessel_instance.compressed_gas_function.capacity_1[5] - capex, opex, energy_kg = self.pressure_vessel_instance.calculate_from_fit(capacity) - print(capex) - self.pressure_vessel_instance.get_tank_mass(capacity) - self.pressure_vessel_instance.get_tank_footprint(capacity) - - ( - capex_dist_05, - opex_dist_05, - energy_kg_dist_05, - area_footprint_site_05, - mass_tank_empty_site_05, - capacity_site_05, - ) = self.pressure_vessel_instance.distributed_storage_vessels(capacity, 5) - assert capex_dist_05 == approx(6205232868.4722595) - assert opex_dist_05 == approx(113433768.86938927) - assert energy_kg_dist_05 == approx(2.6886965443907727) - assert area_footprint_site_05 == approx(4866.189496204457) - assert mass_tank_empty_site_05 == approx(7870274.025926539) - assert capacity_site_05 == approx(capacity / 5) - - ( - capex_dist_10, - opex_dist_10, - energy_kg_dist_10, - area_footprint_site_10, - mass_tank_empty_site_10, - capacity_site_10, - ) = self.pressure_vessel_instance.distributed_storage_vessels(capacity, 10) - assert capex_dist_10 == approx(7430302244.729572) - assert opex_dist_10 == approx(138351814.3102437) - assert energy_kg_dist_10 == approx(2.6886965443907727) - assert area_footprint_site_10 == approx(2433.0947481022286) - assert mass_tank_empty_site_10 == approx(3935137.0129632694) - assert capacity_site_10 == approx(capacity / 10) - - ( - capex_dist_20, - opex_dist_20, - energy_kg_dist_20, - area_footprint_site_20, - mass_tank_empty_site_20, - capacity_site_20, - ) = self.pressure_vessel_instance.distributed_storage_vessels(capacity, 20) - assert capex_dist_20 == approx(9370417735.496975) - assert opex_dist_20 == approx(178586780.2083488) - assert energy_kg_dist_20 == approx(2.6886965443907727) - assert area_footprint_site_20 == approx(1216.5473740511143) - assert mass_tank_empty_site_20 == approx(1967568.5064816347) - assert capacity_site_20 == approx(capacity / 20) - - assert ( - (capex < capex_dist_05) - and (capex_dist_05 < capex_dist_10) - and (capex_dist_10 < capex_dist_20) - ), "capex should increase w/ number of sites" - assert ( - (opex < opex_dist_05) - and (opex_dist_05 < opex_dist_10) - and (opex_dist_10 < opex_dist_20) - ), "opex should increase w/ number of sites" - assert ( - (energy_kg == approx(energy_kg_dist_05)) - and (energy_kg_dist_05 == approx(energy_kg_dist_10)) - and (energy_kg_dist_10 == approx(energy_kg_dist_20)) - ), "energy_kg be approx. equal across number of sites" - - # assert False - - # def test_plots(self): - # self.pressure_vessel_instance.plot() - - -class PlotTestPressureVessel: - def __init__(self) -> None: - self.pressure_vessel_instance = PressureVessel(Energy_cost=0.07) - self.pressure_vessel_instance.run() - - self.pressure_vessel_instance_no_cost = PressureVessel(Energy_cost=0.0) - self.pressure_vessel_instance_no_cost.run() - - def plot_size_and_divisions(self): - # set sweep ranges - capacity_range = np.arange(1e6, 5e6, step=1e3) # kg - divisions = np.array([1, 5, 10, 15, 20]) - - # initialize outputs - capex_results = np.zeros((len(divisions), len(capacity_range))) - opex_results = np.zeros((len(divisions), len(capacity_range))) - - # run capex and opex for range - for ( - j, - div, - ) in enumerate(divisions): - for i, capacity in enumerate(capacity_range): - if div == 1: - capex_results[j, i], opex_results[j, i], energy_kg = ( - self.pressure_vessel_instance.calculate_from_fit(capacity) - ) - else: - ( - capex_results[j, i], - opex_results[j, i], - energy_kg_dist_05, - area_footprint_site_05, - mass_tank_empty_site_05, - capacity_site_05, - ) = self.pressure_vessel_instance.distributed_storage_vessels(capacity, div) - - # plot results - fig, ax = plt.subplots(2, 2, sharex=True) - for j in np.arange(0, len(divisions)): - ax[0, 0].plot( - capacity_range / 1e3, - capex_results[j] / capacity_range, - label=f"{divisions[j]} Divisions", - ) - ax[0, 1].plot( - capacity_range / 1e3, - opex_results[j] / capacity_range, - label=f"{divisions[j]} Divisions", - ) - - # ax[0,0].set(ylabel="CAPEX (USD/kg)", ylim=[0, 5000], yticks=[0,1000,2000,3000,4000,5000]) - ax[0, 1].set(ylabel="OPEX (USD/kg)", ylim=[0, 100]) - - for j in np.arange(0, len(divisions)): - ax[1, 0].plot( - capacity_range / 1e3, - capex_results[j] / capex_results[0], - label=f"{divisions[j]} Divisions", - ) - ax[1, 1].plot( - capacity_range / 1e3, - opex_results[j] / opex_results[0], - label=f"{divisions[j]} Divisions", - ) - - ax[1, 0].set(ylabel="CAPEX_div/CAPEX_cent", ylim=[0, 4]) - ax[1, 1].set(ylabel="OPEX_div/OPEX_cent", ylim=[0, 4]) - - for axi in ax[1]: - axi.set(xlabel="H$_2$ Capacity (metric tons)") - ax[1, 1].legend() - - plt.tight_layout() - - plt.show() - - -if __name__ == "__main__": - # test_set = TestPressureVessel() - plot_tests = PlotTestPressureVessel() - plot_tests.plot_size_and_divisions() - -# 0.0 -# 6322420.744236805 -# 1331189.5844818645 -# 7363353.502353448 - -# 0.07 -# 6322420.744236805 -# 1331189.5844818645 -# 7363353.502353448 - -# energy cost for both cases match as per above - - -# op costs - 0.07 -# 442569.45209657634 -# 345243.94167843653 -# 0 -# 93183.27091373052 - -# op costs - 0.0 -# 0.0 -# 0.0 -# 0 -# 0.0 - -# op c costs -# op_c_costs 0.07 -# 880996.6646887433 -# 799322.4503233839 -# 0.03 -# 4262490675.039804 -# 25920 - -# op_c_costs 0.00 -# 0.0 -# 0.0 -# 0.03 -# 4262490675.039804 -# 25920 diff --git a/tests/h2integrate/test_hydrogen/test_pressurized_turbine.py b/tests/h2integrate/test_hydrogen/test_pressurized_turbine.py deleted file mode 100644 index be6eb165d..000000000 --- a/tests/h2integrate/test_hydrogen/test_pressurized_turbine.py +++ /dev/null @@ -1,485 +0,0 @@ -import numpy as np -from pytest import approx - -from h2integrate.simulation.technologies.hydrogen.h2_storage.on_turbine.on_turbine_hydrogen_storage import ( # noqa: E501 - PressurizedTower, -) - - -class TestPressurizedTower: - def test_frustum(self): - """ - test static methods for geometry of a frustum - """ - - # try a cone - D_ref = 15.0 - h_ref = 2.1 - V_cone_ref = np.pi / 3.0 * (D_ref / 2) ** 2 * h_ref - - V_cone = PressurizedTower.compute_frustum_volume(h_ref, D_ref, 0.0) - - assert V_cone == approx(V_cone_ref) - - # try a cylinder - D_ref = 45.0 - h_ref = 612.3 - V_cyl_ref = np.pi / 4.0 * D_ref**2 * h_ref - - V_cyl = PressurizedTower.compute_frustum_volume(h_ref, D_ref, D_ref) - - assert V_cyl == approx(V_cyl_ref) - - # try a frustum by delta of two cones - D0_ref = 5.7 - h0_ref = 0.0 + 1.0 - D1_ref = 1.9 - h1_ref = 2.4 + 1.0 - D2_ref = 0.0 - h2_ref = 2.4 + 1.2 + 1.0 - V_2_ref = np.pi / 3.0 * (D1_ref / 2) ** 2 * (h2_ref - h1_ref) - V_12_ref = np.pi / 3.0 * (D0_ref / 2) ** 2 * (h2_ref - h0_ref) - V_1_ref = V_12_ref - V_2_ref - - V_1 = PressurizedTower.compute_frustum_volume(h1_ref - h0_ref, D0_ref, D1_ref) - V_12 = PressurizedTower.compute_frustum_volume(h2_ref - h0_ref, D0_ref, D2_ref) - V_2 = PressurizedTower.compute_frustum_volume(h2_ref - h1_ref, D1_ref, D2_ref) - - assert V_1 == approx(V_1_ref) - assert V_12 == approx(V_12_ref) - assert V_2 == approx(V_2_ref) - - def test_crossover_pressure(self): - # random plausible values - E = 0.8 - Sut = 1200e3 - d_t_ratio = 321.0 - - p_ref = 4 * E * Sut / (7 * d_t_ratio * (1 - E / 7.0)) - - p = PressurizedTower.get_crossover_pressure(E, Sut, d_t_ratio) - - assert p == approx(p_ref) - - if False: # paper values are untrustworthy - - def test_thickness_increment_const(self): - # plot values - p = 600.0e3 - Sut = 636.0e6 - - alpha_dtp = PressurizedTower.get_thickness_increment_const(p, Sut) - - # values from graph seem to be off by a factor of ten... jacked up!!! - # these are the values as I read them off the graph assuming that factor - # is in fact erroneous - assert 2 * 1.41 * alpha_dtp == approx(0.675e-3, rel=0.05) - assert 2 * 2.12 * alpha_dtp == approx(0.900e-3, abs=0.05) - assert 2 * 2.82 * alpha_dtp == approx(1.250e-3, abs=0.05) - - def test_cylinder(self): - """ - a hypothetical (nonsensical) cylindical tower -> easy to compute - """ - - ### SETUP REFERENCE VALUES - - # input reference values - h_ref = 100.0 - D_ref = 10.0 - d_t_ratio_ref = 320.0 - density_steel_ref = 7817.0 # kg/m^3 - strength_ultimate_steel_ref = 636e6 # Pa - strength_yield_steel_ref = 350e6 # Pa - Eweld_ref = 0.80 - costrate_steel_ref = 1.50 - costrate_cap_ref = 2.66 - costrate_ladder_ref = 32.80 - cost_door_ref = 2000.0 - cost_mainframe_ref = 6300 - cost_nozzlesmanway_ref = 16000 - costrate_conduit_ref = 35 - temp_ref = 25.0 # degC - R_H2_ref = 4126.0 # J/(kg K) - maintenance_rate_ref = 0.03 - staff_hours_ref = 60 - wage_ref = 36 - - # geometric reference values - thickness_wall_trad_ref = D_ref / d_t_ratio_ref - surfacearea_wall_ref = np.pi * D_ref * h_ref - surfacearea_cap_ref = np.pi / 4.0 * D_ref**2 - - # non-pressurized/traditional geometry values - volume_wall_trad_ref = surfacearea_wall_ref * thickness_wall_trad_ref - volume_inner_ref = h_ref * surfacearea_cap_ref - volume_cap_top_trad_ref = 0.0 # surfacearea_cap_ref*thickness_top_ref - volume_cap_bot_trad_ref = 0.0 # surfacearea_cap_ref*thickness_bot_ref - - # non-pressurized/traditional mass/cost values - mass_wall_trad_ref = density_steel_ref * volume_wall_trad_ref - mass_cap_top_trad_ref = density_steel_ref * volume_cap_top_trad_ref - mass_cap_bot_trad_ref = density_steel_ref * volume_cap_bot_trad_ref - cost_tower_trad_ref = costrate_steel_ref * ( - mass_wall_trad_ref + mass_cap_top_trad_ref + mass_cap_bot_trad_ref - ) - cost_nontower_trad_ref = h_ref * costrate_ladder_ref + cost_door_ref - - # pressurization info - p_crossover_ref = ( - 4 * Eweld_ref * strength_ultimate_steel_ref / (7 * d_t_ratio_ref * (1 - Eweld_ref / 7)) - ) - delta_t_ref = p_crossover_ref * (D_ref / 2) / (2 * strength_ultimate_steel_ref) - thickness_wall_ref = D_ref / d_t_ratio_ref + delta_t_ref - thickness_cap_top_ref = D_ref * np.sqrt( - 0.10 * p_crossover_ref / (Eweld_ref * strength_yield_steel_ref / 1.5) - ) - thickness_cap_bot_ref = D_ref * np.sqrt( - 0.10 * p_crossover_ref / (Eweld_ref * strength_yield_steel_ref / 1.5) - ) - - # pressurized geometry values - volume_wall_ref = surfacearea_wall_ref * thickness_wall_ref - volume_cap_top_ref = surfacearea_cap_ref * (thickness_cap_top_ref) - volume_cap_bot_ref = surfacearea_cap_ref * (thickness_cap_bot_ref) - - # pressurized mass/cost values - mass_wall_ref = density_steel_ref * volume_wall_ref - mass_cap_top_ref = density_steel_ref * volume_cap_top_ref - mass_cap_bot_ref = density_steel_ref * volume_cap_bot_ref - cost_tower_ref = costrate_steel_ref * mass_wall_ref + costrate_cap_ref * ( - mass_cap_top_ref + mass_cap_bot_ref - ) - cost_nontower_ref = ( - 2 * h_ref * costrate_ladder_ref - + 2 * cost_door_ref - + cost_mainframe_ref - + cost_nozzlesmanway_ref - + costrate_conduit_ref * h_ref - ) - - # gas - rho_H2_ref = p_crossover_ref / (R_H2_ref * (temp_ref + 273.15)) - m_H2_ref = volume_inner_ref * rho_H2_ref - - # capex - capex_ref = ( - cost_tower_ref + cost_nontower_ref - cost_tower_trad_ref - cost_nontower_trad_ref - ) - - # opex - opex_ref = maintenance_rate_ref * capex_ref + wage_ref * staff_hours_ref - - turbine = { - "tower_length": h_ref, - "section_diameters": [D_ref, D_ref, D_ref], - "section_heights": [0.0, 0.0 + 0.5 * h_ref, 0.0 + h_ref], - # 'section_diameters': [D_ref, D_ref], - # 'section_heights': [0., 0. + h_ref], - } - - ## traditional estimates (non-pressurized) - - pressurized_cylinder = PressurizedTower(1992, turbine) - - assert pressurized_cylinder.get_volume_tower_inner() == approx(volume_inner_ref) - assert pressurized_cylinder.get_volume_tower_material(pressure=0)[0] == approx( - volume_wall_trad_ref - ) - assert pressurized_cylinder.get_volume_tower_material(pressure=0)[1] == approx( - volume_cap_bot_trad_ref - ) - assert pressurized_cylinder.get_volume_tower_material(pressure=0)[2] == approx( - volume_cap_top_trad_ref - ) - assert pressurized_cylinder.get_mass_tower_material(pressure=0)[0] == approx( - mass_wall_trad_ref - ) - assert pressurized_cylinder.get_mass_tower_material(pressure=0)[1] == approx( - mass_cap_bot_trad_ref - ) - assert pressurized_cylinder.get_mass_tower_material(pressure=0)[2] == approx( - mass_cap_top_trad_ref - ) - - assert np.sum(pressurized_cylinder.get_cost_tower_material(pressure=0)) == approx( - cost_tower_trad_ref - ) - assert pressurized_cylinder.get_cost_nontower(traditional=True) == approx( - cost_nontower_trad_ref - ) - - ## pressurized estimates - - assert pressurized_cylinder.operating_pressure == p_crossover_ref - - assert pressurized_cylinder.get_volume_tower_material()[0] == approx(volume_wall_ref) - assert pressurized_cylinder.get_volume_tower_material()[1] == approx(volume_cap_bot_ref) - assert pressurized_cylinder.get_volume_tower_material()[2] == approx(volume_cap_top_ref) - assert pressurized_cylinder.get_mass_tower_material()[0] == approx(mass_wall_ref) - assert pressurized_cylinder.get_mass_tower_material()[1] == approx(mass_cap_bot_ref) - assert pressurized_cylinder.get_mass_tower_material()[2] == approx(mass_cap_top_ref) - - assert np.sum(pressurized_cylinder.get_cost_tower_material()) == approx(cost_tower_ref) - assert pressurized_cylinder.get_cost_nontower() == approx(cost_nontower_ref) - - ## output interface - - # make sure the final values match expectation - assert pressurized_cylinder.get_capex() == approx(capex_ref) - assert pressurized_cylinder.get_opex() == approx(opex_ref) - assert pressurized_cylinder.get_mass_empty() == approx( - mass_wall_ref - + mass_cap_bot_ref - + mass_cap_top_ref - - mass_wall_trad_ref - - mass_cap_bot_trad_ref - - mass_cap_top_trad_ref - ) - assert pressurized_cylinder.get_capacity_H2() == approx(m_H2_ref) - assert pressurized_cylinder.get_pressure_H2() == approx(p_crossover_ref) - - if True: - - def test_cone(self): - """ - a hypothetical (nonsensical) conical tower -> easy to compute - """ - - ### SETUP REFERENCE VALUES - - # input reference values - h_ref = 81.0 - D_base_ref = 10.0 - D_top_ref = 0.0 - - # non-input parameters - d_t_ratio_ref = 320.0 - density_steel_ref = 7817.0 # kg/m^3 - strength_ultimate_steel_ref = 636e6 # Pa - strength_yield_steel_ref = 350e6 # Pa - Eweld_ref = 0.8 - costrate_steel_ref = 1.50 - costrate_cap_ref = 2.66 - costrate_ladder_ref = 32.80 - cost_door_ref = 2000.0 - cost_mainframe_ref = 6300 - cost_nozzlesmanway_ref = 16000 - costrate_conduit_ref = 35 - temp_ref = 25.0 # degC - R_H2_ref = 4126.0 # J/(kg K) - maintenance_rate_ref = 0.03 - staff_hours_ref = 60 - wage_ref = 36 - - # geometric reference values - surfacearea_cap_top_ref = np.pi / 4.0 * D_top_ref**2 - surfacearea_cap_bot_ref = np.pi / 4.0 * D_base_ref**2 - D_top_ref / d_t_ratio_ref - thickness_wall_bot_ref = D_base_ref / d_t_ratio_ref - - def cone_volume(h, d): - return np.pi / 3.0 * (d / 2) ** 2 * h - - # non-pressurized/traditional geometry values - volume_inner_ref = cone_volume(h_ref, D_base_ref) - print(volume_inner_ref) - volume_wall_trad_ref = cone_volume( - h_ref, D_base_ref + thickness_wall_bot_ref - ) - cone_volume(h_ref, D_base_ref - thickness_wall_bot_ref) - volume_cap_top_trad_ref = 0.0 # surfacearea_cap_top_ref*thickness_top_ref - volume_cap_bot_trad_ref = 0.0 # surfacearea_cap_bot_ref*thickness_bot_ref - - # non-pressurized/traditional mass/cost values - mass_wall_trad_ref = density_steel_ref * volume_wall_trad_ref - mass_cap_top_trad_ref = density_steel_ref * volume_cap_top_trad_ref - mass_cap_bot_trad_ref = density_steel_ref * volume_cap_bot_trad_ref - cost_tower_trad_ref = costrate_steel_ref * ( - mass_wall_trad_ref + mass_cap_top_trad_ref + mass_cap_bot_trad_ref - ) - cost_nontower_trad_ref = h_ref * costrate_ladder_ref + cost_door_ref - - # pressurization info - p_crossover_ref = ( - 4 - * Eweld_ref - * strength_ultimate_steel_ref - / (7 * d_t_ratio_ref * (1 - Eweld_ref / 7)) - ) - dt_bot_ref = p_crossover_ref * (D_base_ref / 2) / (2 * strength_ultimate_steel_ref) - thickness_wall_bot_ref = D_base_ref / d_t_ratio_ref + dt_bot_ref - thickness_cap_top_ref = D_top_ref * np.sqrt( - 0.10 * p_crossover_ref / (Eweld_ref * strength_yield_steel_ref / 1.5) - ) - thickness_cap_bot_ref = D_base_ref * np.sqrt( - 0.10 * p_crossover_ref / (Eweld_ref * strength_yield_steel_ref / 1.5) - ) - - # pressurized geometry values - volume_wall_ref = cone_volume(h_ref, D_base_ref + thickness_wall_bot_ref) - cone_volume( - h_ref, D_base_ref - thickness_wall_bot_ref - ) - volume_cap_top_ref = surfacearea_cap_top_ref * (thickness_cap_top_ref) - volume_cap_bot_ref = surfacearea_cap_bot_ref * (thickness_cap_bot_ref) - - # pressurized mass/cost values - mass_wall_ref = density_steel_ref * volume_wall_ref - mass_cap_top_ref = density_steel_ref * volume_cap_top_ref - mass_cap_bot_ref = density_steel_ref * volume_cap_bot_ref - cost_tower_ref = costrate_steel_ref * mass_wall_ref + costrate_cap_ref * ( - mass_cap_top_ref + mass_cap_bot_ref - ) - cost_nontower_ref = ( - 2 * h_ref * costrate_ladder_ref - + 2 * cost_door_ref - + cost_mainframe_ref - + cost_nozzlesmanway_ref - + costrate_conduit_ref * h_ref - ) - - # gas - rho_H2_ref = p_crossover_ref / (R_H2_ref * (temp_ref + 273.15)) - m_H2_ref = volume_inner_ref * rho_H2_ref - - # capex - capex_ref = ( - cost_tower_ref + cost_nontower_ref - cost_tower_trad_ref - cost_nontower_trad_ref - ) - - # opex - opex_ref = maintenance_rate_ref * capex_ref + wage_ref * staff_hours_ref - - turbine = { - "tower_length": h_ref, - # 'section_diameters': [D_base_ref, D_top_ref], - # 'section_heights': [0., 0. + h_ref], - "section_diameters": [ - D_base_ref, - 0.5 * (D_top_ref + D_base_ref), - D_top_ref, - ], - "section_heights": [0.0, 0.0 + h_ref / 2.0, 0.0 + h_ref], - } - - ## traditional estimates (non-pressurized) - - pressurized_cone = PressurizedTower(1992, turbine) - - assert pressurized_cone.get_volume_tower_inner() == approx(volume_inner_ref) - assert pressurized_cone.get_volume_tower_material(pressure=0)[0] == approx( - volume_wall_trad_ref - ) - assert pressurized_cone.get_volume_tower_material(pressure=0)[1] == approx( - volume_cap_bot_trad_ref - ) - assert pressurized_cone.get_volume_tower_material(pressure=0)[2] == approx( - volume_cap_top_trad_ref - ) - assert pressurized_cone.get_mass_tower_material(pressure=0)[0] == approx( - mass_wall_trad_ref - ) - assert pressurized_cone.get_mass_tower_material(pressure=0)[1] == approx( - mass_cap_bot_trad_ref - ) - assert pressurized_cone.get_mass_tower_material(pressure=0)[2] == approx( - mass_cap_top_trad_ref - ) - - assert np.sum(pressurized_cone.get_cost_tower_material(pressure=0)) == approx( - cost_tower_trad_ref - ) - assert pressurized_cone.get_cost_nontower(traditional=True) == approx( - cost_nontower_trad_ref - ) - - ## pressurized estimates - - assert pressurized_cone.operating_pressure == p_crossover_ref - - assert pressurized_cone.get_volume_tower_material()[0] == approx(volume_wall_ref) - assert pressurized_cone.get_volume_tower_material()[1] == approx(volume_cap_bot_ref) - assert pressurized_cone.get_volume_tower_material()[2] == approx(volume_cap_top_ref) - assert pressurized_cone.get_mass_tower_material()[0] == approx(mass_wall_ref) - assert pressurized_cone.get_mass_tower_material()[1] == approx(mass_cap_bot_ref) - assert pressurized_cone.get_mass_tower_material()[2] == approx(mass_cap_top_ref) - - assert np.sum(pressurized_cone.get_cost_tower_material()) == approx(cost_tower_ref) - assert pressurized_cone.get_cost_nontower() == approx(cost_nontower_ref) - - ## output interface - - # make sure the final values match expectation - assert pressurized_cone.get_capex() == approx(capex_ref) - assert pressurized_cone.get_opex() == approx(opex_ref) - assert pressurized_cone.get_mass_empty() == approx( - mass_wall_ref - + mass_cap_bot_ref - + mass_cap_top_ref - - mass_wall_trad_ref - - mass_cap_bot_trad_ref - - mass_cap_top_trad_ref - ) - assert pressurized_cone.get_capacity_H2() == approx(m_H2_ref) - assert pressurized_cone.get_pressure_H2() == approx(p_crossover_ref) - - if True: - - def test_paper(self): - h_ref = 84.0 - D_bot_ref = 5.66 - D_top_ref = 2.83 - # d_t_ratio_ref= 320. - # rho_density_ref= 7817 - # costrate_steel= 1.50 - cost_tower_ref = 183828 - - cost_tower_trad_ref = 183828 - cost_nontower_trad_ref = 188584 - cost_tower_trad_ref - m_H2_stored_ref = 951 # kg - cost_tower_ref = cost_tower_trad_ref + 21182 - cost_cap_bot_ref = 29668 - cost_cap_top_ref = 5464 - cost_nontower_ref = 2756 + 2000 + 2297 + 2450 + 6300 + 15918 - - turbine = { - "tower_length": 84.0, - "section_diameters": [5.66, 4.9525, 4.245, 3.5375, 2.83], - "section_heights": [0.0, 21.0, 42.0, 63.0, 84.0], - } - - pressurized_tower_instance = PressurizedTower(2004, turbine) - pressurized_tower_instance.run() - - PressurizedTower.compute_frustum_volume(h_ref, D_bot_ref, D_top_ref) - - # traditional sizing should get cost within 5% - assert pressurized_tower_instance.get_cost_tower_material(pressure=0)[0] == approx( - cost_tower_trad_ref, rel=0.05 - ) - assert pressurized_tower_instance.get_cost_tower_material(pressure=0)[1] == 0.0 - assert pressurized_tower_instance.get_cost_tower_material(pressure=0)[2] == 0.0 - assert pressurized_tower_instance.get_cost_nontower(traditional=True) == approx( - cost_nontower_trad_ref, rel=0.05 - ) - - # pressurized sizing should get wall cost within 10% - assert pressurized_tower_instance.get_cost_tower_material()[0] == approx( - cost_tower_ref, rel=0.10 - ) - # not sure why but the cap sizing is way off: 200% error allowed for bottom cap - assert pressurized_tower_instance.get_cost_tower_material()[1] == approx( - cost_cap_bot_ref, rel=2.0 - ) - # not sure why but the cap sizing is way off: 100% error allowed for top cap - assert pressurized_tower_instance.get_cost_tower_material()[2] == approx( - cost_cap_top_ref, rel=1.0 - ) - - # non-tower pressurized sizing evidently has some weird assumptions but should - # get within 10% - assert pressurized_tower_instance.get_cost_nontower() == approx( - cost_nontower_ref, rel=0.1 - ) - - # capacity within 10% - assert pressurized_tower_instance.get_capacity_H2() == approx(m_H2_stored_ref, rel=0.1) diff --git a/tests/h2integrate/test_hydrogen/test_salt_cavern_storage.py b/tests/h2integrate/test_hydrogen/test_salt_cavern_storage.py deleted file mode 100644 index 821ee33e2..000000000 --- a/tests/h2integrate/test_hydrogen/test_salt_cavern_storage.py +++ /dev/null @@ -1,62 +0,0 @@ -import pytest -from pytest import fixture - -from h2integrate.simulation.technologies.hydrogen.h2_storage.salt_cavern.salt_cavern import ( - SaltCavernStorage, -) - - -# Test values are based on conclusions of Papadias 2021 and are in 2019 USD -in_dict = {"h2_storage_kg": 1000000, "system_flow_rate": 100000} - - -@fixture -def salt_cavern_storage(): - salt_cavern_storage = SaltCavernStorage(in_dict) - - return salt_cavern_storage - - -def test_init(): - salt_cavern_storage = SaltCavernStorage(in_dict) - - assert salt_cavern_storage.input_dict is not None - assert salt_cavern_storage.output_dict is not None - - -def test_capex_per_kg(salt_cavern_storage): - salt_cavern_storage_capex_per_kg, _installed_capex, _compressor_capex = ( - salt_cavern_storage.salt_cavern_capex() - ) - assert salt_cavern_storage_capex_per_kg == pytest.approx(25.18622259358959) - - -def test_capex(salt_cavern_storage): - _salt_cavern_storage_capex_per_kg, installed_capex, _compressor_capex = ( - salt_cavern_storage.salt_cavern_capex() - ) - assert installed_capex == pytest.approx(24992482.4198) - - -def test_compressor_capex(salt_cavern_storage): - _salt_cavern_storage_capex_per_kg, _installed_capex, compressor_capex = ( - salt_cavern_storage.salt_cavern_capex() - ) - assert compressor_capex == pytest.approx(6516166.67163) - - -def test_capex_output_dict(salt_cavern_storage): - _salt_caven_storage_capex_per_kg, _installed_capex, _compressor_capex = ( - salt_cavern_storage.salt_cavern_capex() - ) - assert salt_cavern_storage.output_dict["salt_cavern_storage_capex"] == pytest.approx( - 24992482.4198 - ) - - -def test_opex(salt_cavern_storage): - _salt_cavern_storage_capex_per_kg, _installed_capex, _compressor_capex = ( - salt_cavern_storage.salt_cavern_capex() - ) - salt_cavern_storage.salt_cavern_opex() - assert salt_cavern_storage.output_dict["salt_cavern_storage_opex"] == pytest.approx(1461664) diff --git a/tests/h2integrate/test_hydrogen/test_tankinator.py b/tests/h2integrate/test_hydrogen/test_tankinator.py deleted file mode 100644 index a8913a960..000000000 --- a/tests/h2integrate/test_hydrogen/test_tankinator.py +++ /dev/null @@ -1,348 +0,0 @@ -import numpy as np -import pytest - -from h2integrate.simulation.technologies.hydrogen.h2_storage.pressure_vessel import von_mises -from h2integrate.simulation.technologies.hydrogen.h2_storage.pressure_vessel.tankinator import ( - Tank, - TypeITank, - TypeIVTank, - TypeIIITank, -) - - -# test that we the results we got when the code was recieved -class TestTankinator: - def test_tank_type(self): - tank1 = TypeITank("6061_T6_Aluminum") - tank3 = TypeIIITank() - tank4 = TypeIVTank() - - assert tank1.tank_type == 1 - assert tank3.tank_type == 3 - assert tank4.tank_type == 4 - - # def test_tank_type_exc(self): - # with pytest.raises(TypeError): - # TypeITank(2) - - def test_hemicylindrical_static(self): - """a random sphere, and a random cylinder""" - - # L = 2R; should reduce to a sphere! - radius = 1.5 - length = 2 * radius - thickness = 0.19 - volume_exact = 4.0 / 3.0 * np.pi * radius**3 - - assert Tank.compute_hemicylinder_outer_length(length, thickness) == pytest.approx( - length + 2.0 * thickness - ) - assert Tank.compute_hemicylinder_outer_radius(radius, thickness) == pytest.approx( - radius + thickness - ) - assert Tank.compute_hemicylinder_volume(radius, length) == pytest.approx(volume_exact) - - # a lil bit between sphere halves - radius = 2.1 - length = 6.4 - thickness = 0.02 - volume_exact = 4.0 / 3.0 * np.pi * radius**3 + (length - 2 * radius) * (np.pi * radius**2) - - assert Tank.compute_hemicylinder_outer_length(length, thickness) == pytest.approx( - length + 2.0 * thickness - ) - assert Tank.compute_hemicylinder_outer_radius(radius, thickness) == pytest.approx( - radius + thickness - ) - assert Tank.compute_hemicylinder_volume(radius, length) == pytest.approx(volume_exact) - - def test_tankI_geometric(self): - """make sure geometric calls work correctly""" - - # L = 2R; should reduce to a sphere! - radius = 1.5 - length = 2 * radius - thickness = 0.19 - volume_exact = 4.0 / 3.0 * np.pi * radius**3 - - # create tank, set dimensions, check dimensioning - tank = TypeITank("6061_T6_Aluminum") - tank.set_length_radius(length, radius) - tank.thickness = thickness # manual override - tank.volume_inner = Tank.compute_hemicylinder_volume( - tank.get_radius_inner(), tank.get_length_inner() - ) - - assert tank.get_length_outer() == pytest.approx(length + 2.0 * thickness) - assert tank.get_radius_outer() == pytest.approx(radius + thickness) - assert tank.get_volume_inner() == pytest.approx(volume_exact) - - volume_outer_exact = 4.0 / 3.0 * np.pi * (radius + thickness) ** 3 - dvolume_exact = volume_outer_exact - volume_exact - rho_ref = 0.002663 - cost_ref = 4.45 - mass_exact = dvolume_exact * rho_ref # mass of spherical vessel - cost_exact = mass_exact * cost_ref - - assert tank.get_volume_outer() == pytest.approx(volume_outer_exact) - assert tank.get_volume_metal() == pytest.approx(dvolume_exact) - assert tank.get_mass_metal() == pytest.approx(mass_exact) - assert tank.get_cost_metal() == pytest.approx(cost_exact) - - assert tank.get_gravimetric_tank_efficiency() == pytest.approx( - (volume_exact / 1e3) / mass_exact - ) - - def test_tankI_set_functions(self): - """make sure that the inverse geometry spec works""" - - radius = 4.3 - length = 14.9 - volume_exact = 4.0 / 3.0 * np.pi * radius**3 + (length - 2 * radius) * (np.pi * radius**2) - - tank = Tank(1, "316SS") - tank.set_length_radius(length, radius) - assert tank.get_volume_inner() == pytest.approx(volume_exact) - - tank.length_inner = tank.radius_inner = None # reset - tank.set_length_volume(length, volume_exact) - assert tank.get_radius_inner() == pytest.approx(radius) - - tank.length_inner = tank.radius_inner = None # reset - tank.set_radius_volume(radius, volume_exact) - assert tank.get_length_inner() == pytest.approx(length) - - def test_tankinator_typeI_comp(self): - """compare to the tankinator case""" - - T_op = -50 # degC - p_op = 170 # bar - Ltank = 1000 # cm - Vtank = 2994542 # ccm - - # reference values from the excel sheet default values - R_ref = 31.2 - Sy_ref = 2953.475284 - Su_ref = 3327.58062 - density_ref = 0.002663 - costrate_ref = 4.45 - yield_thickness_ref = 2.69 - ultimate_thickness_ref = 3.586389441300914 - disp_vol_tw_ref = 7.462e5 - mass_tw_ref = 1987.08 - cost_tw_ref = 8842.51 - grav_eff_tw_ref = 1.51 - vmS1_0_ref = 1568.544508 - vmS2_0_ref = 699.2722538 - vmS3_0_ref = -170.0 - vmSproof_0_ref = 2258.435564 - vmSburst_0_ref = 3387.653346 - WTAF_0_ref = 1.018052974 - thickness_1_ref = ultimate_thickness_ref * WTAF_0_ref - WTAF_1_ref = 1.002742019 - thickness_2_ref = thickness_1_ref * WTAF_1_ref - thickness_f_ref = 3.6626944898294997 - mass_f_ref = 2031.9 - cost_f_ref = 9041.80 - - # set up w/ lookup shear approximation - tank = TypeITank("6061_T6_Aluminum", shear_approx="lookup") - tank.set_operating_temperature(T_op) - tank.set_operating_pressure(p_op) - tank.set_length_volume(Ltank, Vtank) - - # check agains reference values - assert tank.get_radius_inner() == pytest.approx(R_ref) - assert tank.material.ultimate_shear_fun(T_op) == pytest.approx(Su_ref) - assert tank.material.yield_shear_fun(T_op) == pytest.approx(Sy_ref) - assert tank.material.density == pytest.approx(density_ref) - assert tank.material.cost_rate == pytest.approx(costrate_ref) - - # check the thinwall calculations - assert tank.get_yield_thickness() == pytest.approx(yield_thickness_ref, abs=0.01) - assert tank.get_ultimate_thickness() == pytest.approx(ultimate_thickness_ref, abs=0.001) - assert tank.get_thickness_thinwall() == pytest.approx(ultimate_thickness_ref, abs=0.001) - - # check the implied geometry if we set the thickness to the thinwall - tank.set_thickness_thinwall() - assert tank.get_volume_metal() == pytest.approx(disp_vol_tw_ref, rel=0.001) - assert tank.get_mass_metal() == pytest.approx(mass_tw_ref, rel=0.001) - assert tank.get_cost_metal() == pytest.approx(cost_tw_ref) - assert tank.get_gravimetric_tank_efficiency() == pytest.approx(grav_eff_tw_ref, abs=0.01) - - # check von Mises analysis variables - assert von_mises.S1(p_op, R_ref + ultimate_thickness_ref, R_ref) == pytest.approx( - vmS1_0_ref - ) - assert von_mises.S2(p_op, R_ref + ultimate_thickness_ref, R_ref) == pytest.approx( - vmS2_0_ref - ) - assert von_mises.S3(p_op, R_ref + ultimate_thickness_ref, R_ref) == pytest.approx( - vmS3_0_ref - ) - vmSproof, vmSburst = von_mises.getPeakStresses(p_op, R_ref + ultimate_thickness_ref, R_ref) - assert vmSproof == pytest.approx(vmSproof_0_ref) - assert vmSburst == pytest.approx(vmSburst_0_ref) - assert not Tank.check_thinwall(R_ref, ultimate_thickness_ref) - assert von_mises.wallThicknessAdjustmentFactor( - p_op, R_ref + ultimate_thickness_ref, R_ref, Sy_ref, Su_ref - ) == pytest.approx(WTAF_0_ref) - - # check cycle iterations, through two - WTAF_0, thickness_1 = von_mises.iterate_thickness( - p_op, R_ref, ultimate_thickness_ref, Sy_ref, Su_ref - ) - assert WTAF_0 == pytest.approx(WTAF_0_ref) - assert thickness_1 == pytest.approx(thickness_1_ref) - - WTAF_1, thickness_2 = von_mises.iterate_thickness(p_op, R_ref, thickness_1, Sy_ref, Su_ref) - assert WTAF_1 == pytest.approx(WTAF_1_ref) - assert thickness_2 == pytest.approx(thickness_2_ref) - - # check final value: cycle three times (no tol) to match tankinator - (thickness_cycle, WTAF_cycle, n_iter) = von_mises.cycle( - p_op, R_ref, ultimate_thickness_ref, Sy_ref, Su_ref, max_iter=3, WTAF_tol=0 - ) - - print(thickness_cycle, WTAF_cycle, n_iter) # DEBUG - assert thickness_cycle == pytest.approx(thickness_f_ref) - - # make sure final calculations are correct - tank.set_thickness_vonmises(p_op, T_op, max_cycle_iter=3, adj_fac_tol=0.0) - assert tank.get_thickness() == pytest.approx(thickness_f_ref) - assert tank.get_mass_metal() == pytest.approx(mass_f_ref, abs=0.1) - assert tank.get_cost_metal() == pytest.approx(cost_f_ref, abs=0.01) - - def test_tankinator_typeIII_comp(self): - """compare to the tankinator case""" - - T_op = 20.0 # degC - p_op = 250.0 # bar - Rtank = 16.0 - Ltank = 1219.0 # cm - Vtank = 971799.0 # ccm - - # reference values from the excel sheet default values, best estimate - R_ref = 16.0 - thickness_liner_ref = 0.61 - thickness_ideal_jacket_ref = 0.602759006 - Nlayer_jacket_ref = 7 - thickness_jacket_ref = 0.64008 - length_liner_ref = 1220.218176 - radius_liner_ref = 16.60908798 - V_outer_liner_ref = 1047.900361 * 1000 - V_liner_ref = 76101.03372 - m_liner_ref = 202.66 - cost_liner_ref = 901.82 - length_outer_ref = 1221.498336 - radius_outer_ref = 17.24916798 - V_outer_ref = 1131.022248 * 1000 - V_jacket_ref = 83121.88687 - m_jacket_ref = 133.91 - cost_jacket_ref = 4104.32 - m_tank_ref = 336.57 - cost_tank_ref = 5006.15 - gravimetric_tank_efficiency_ref = 2.89 - - # set up w/ lookup shear approximation - tank = TypeIIITank() - tank.set_operating_temperature(T_op) - tank.set_operating_pressure(p_op) - tank.set_length_radius(Ltank, Rtank) - - tank.set_thicknesses_thinwall() - - # check against reference values - assert tank.get_radius_inner() == pytest.approx(R_ref) - assert tank.get_volume_inner() == pytest.approx(Vtank) - assert tank.thickness_liner == pytest.approx(thickness_liner_ref, abs=0.01) - assert tank.thickness_ideal_jacket == pytest.approx(thickness_ideal_jacket_ref) - assert tank.Nlayer_jacket == pytest.approx(Nlayer_jacket_ref) - assert tank.thickness_jacket == pytest.approx(thickness_jacket_ref) - - assert tank.get_length_liner() == pytest.approx(length_liner_ref) - assert tank.get_radius_liner() == pytest.approx(radius_liner_ref) - assert tank.get_volume_outer_liner() == pytest.approx(V_outer_liner_ref) - assert tank.get_volume_liner() == pytest.approx(V_liner_ref) - - assert tank.get_length_outer() == pytest.approx(length_outer_ref) - assert tank.get_radius_outer() == pytest.approx(radius_outer_ref) - assert tank.get_volume_outer() == pytest.approx(V_outer_ref) - assert tank.get_volume_jacket() == pytest.approx(V_jacket_ref) - - assert tank.get_mass_liner() == pytest.approx(m_liner_ref, abs=0.01) - assert tank.get_mass_jacket() == pytest.approx(m_jacket_ref, abs=0.01) - assert tank.get_cost_liner() == pytest.approx(cost_liner_ref, abs=0.01) - assert tank.get_cost_jacket() == pytest.approx(cost_jacket_ref, abs=0.01) - assert tank.get_mass_tank() == pytest.approx(m_tank_ref, abs=0.01) - assert tank.get_cost_tank() == pytest.approx(cost_tank_ref, abs=0.01) - assert tank.get_gravimetric_tank_efficiency() == pytest.approx( - gravimetric_tank_efficiency_ref, abs=0.01 - ) - - def test_tankinator_typeIV_comp(self): - """compare to the tankinator case""" - - T_op = 20.0 # degC - p_op = 350.0 # bar - Rtank = 50.0 - Ltank = 1000.0 # cm - Vtank = 7592182.0 # ccm - - # reference values from the excel sheet default values, best estimate - R_ref = 50.0 - thickness_liner_ref = 0.4 - thickness_ideal_jacket_ref = 3.241375931 - Nlayer_jacket_ref = 36 - thickness_jacket_ref = 3.29184 - # length_liner_ref= 1220.218176 - radius_liner_ref = 50.4 - # V_outer_liner_ref= 1047.900361*1000 - # V_liner_ref= 76101.03372 - # m_liner_ref= 202.66 - # cost_liner_ref= 901.82 - # length_outer_ref= 1221.498336 - # radius_outer_ref= 17.24916798 - # V_outer_ref= 1131.022248*1000 - # V_jacket_ref= 83121.88687 - # m_jacket_ref= 133.91 - # cost_jacket_ref= 4104.32 - # m_tank_ref= 336.57 - # cost_tank_ref= 5006.15 - # gravimetric_tank_efficiency_ref= 2.89 - - # set up w/ lookup shear approximation - tank = TypeIVTank() - tank.set_operating_temperature(T_op) - tank.set_operating_pressure(p_op) - tank.set_length_radius(Ltank, Rtank) - - tank.set_thicknesses_thinwall() - - # check against reference values - assert tank.get_radius_inner() == pytest.approx(R_ref) - assert tank.get_volume_inner() == pytest.approx(Vtank) - assert tank.thickness_liner == pytest.approx(thickness_liner_ref, abs=0.01) - assert tank.thickness_ideal_jacket == pytest.approx(thickness_ideal_jacket_ref) - assert tank.Nlayer_jacket == pytest.approx(Nlayer_jacket_ref) - assert tank.thickness_jacket == pytest.approx(thickness_jacket_ref) - - # assert tank.get_length_liner() == pytest.approx(length_liner_ref) - assert tank.get_radius_liner() == pytest.approx(radius_liner_ref) - # assert tank.get_volume_outer_liner() == pytest.approx(V_outer_liner_ref) - # assert tank.get_volume_liner() == pytest.approx(V_liner_ref) - - # assert tank.get_length_outer() == pytest.approx(length_outer_ref) - # assert tank.get_radius_outer() == pytest.approx(radius_outer_ref) - # assert tank.get_volume_outer() == pytest.approx(V_outer_ref) - # assert tank.get_volume_jacket() == pytest.approx(V_jacket_ref) - - # assert tank.get_mass_liner() == pytest.approx(m_liner_ref, abs= 0.01) - # assert tank.get_mass_jacket() == pytest.approx(m_jacket_ref, abs= 0.01) - # assert tank.get_cost_liner() == pytest.approx(cost_liner_ref, abs= 0.01) - # assert tank.get_cost_jacket() == pytest.approx(cost_jacket_ref, abs= 0.01) - # assert tank.get_mass_tank() == pytest.approx(m_tank_ref, abs= 0.01) - # assert tank.get_cost_tank() == pytest.approx(cost_tank_ref, abs= 0.01) - # assert tank.get_gravimetric_tank_efficiency() == pytest.approx( - # gravimetric_tank_efficiency_ref, abs= 0.01 - # ) diff --git a/tests/h2integrate/test_hydrogen/test_underground_pipe_storage.py b/tests/h2integrate/test_hydrogen/test_underground_pipe_storage.py deleted file mode 100644 index 68ded360f..000000000 --- a/tests/h2integrate/test_hydrogen/test_underground_pipe_storage.py +++ /dev/null @@ -1,65 +0,0 @@ -import pytest -from pytest import fixture - -from h2integrate.simulation.technologies.hydrogen.h2_storage.pipe_storage.underground_pipe_storage import ( # noqa: E501 - UndergroundPipeStorage, -) - - -# Test values are based on conclusions of Papadias 2021 and are in 2019 USD - -in_dict = { - "h2_storage_kg": 1000000, - "system_flow_rate": 100000, - "compressor_output_pressure": 100, -} - - -@fixture -def pipe_storage(): - pipe_storage = UndergroundPipeStorage(in_dict) - - return pipe_storage - - -def test_init(): - pipe_storage = UndergroundPipeStorage(in_dict) - - assert pipe_storage.input_dict is not None - assert pipe_storage.output_dict is not None - - -def test_capex_per_kg(pipe_storage): - pipe_storage_capex_per_kg, _installed_capex, _compressor_capex = ( - pipe_storage.pipe_storage_capex() - ) - assert pipe_storage_capex_per_kg == pytest.approx(512.689247292) - - -def test_capex(pipe_storage): - _pipe_storage_capex_per_kg, installed_capex, _compressor_capex = ( - pipe_storage.pipe_storage_capex() - ) - assert installed_capex == pytest.approx(508745483.851) - - -def test_compressor_capex(pipe_storage): - _pipe_storage_capex_per_kg, _installed_capex, compressor_capex = ( - pipe_storage.pipe_storage_capex() - ) - assert compressor_capex == pytest.approx(5907549.297) - - -def test_capex_output_dict(pipe_storage): - _pipe_storage_capex_per_kg, _installed_capex, _compressor_capex = ( - pipe_storage.pipe_storage_capex() - ) - assert pipe_storage.output_dict["pipe_storage_capex"] == pytest.approx(508745483.851) - - -def test_opex(pipe_storage): - _pipe_storage_capex_per_kg, _installed_capex, _compressor_capex = ( - pipe_storage.pipe_storage_capex() - ) - pipe_storage.pipe_storage_opex() - assert pipe_storage.output_dict["pipe_storage_opex"] == pytest.approx(16439748) diff --git a/tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml b/tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml index 32311e176..e080e847b 100644 --- a/tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml +++ b/tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml @@ -61,7 +61,6 @@ electrolyzer: hydrogen_dmd: rating: 1160 # MW cluster_rating_MW: 40 - pem_control_type: 'basic' eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol uptime_hours_until_eol: 77600 #number of 'on' hours until electrolyzer reaches eol include_degradation_penalty: True #include degradation diff --git a/tests/h2integrate/test_iron/test_iron_ore.py b/tests/h2integrate/test_iron/test_iron_ore.py index a783125fa..b6a124290 100644 --- a/tests/h2integrate/test_iron/test_iron_ore.py +++ b/tests/h2integrate/test_iron/test_iron_ore.py @@ -4,7 +4,7 @@ from pytest import approx, fixture -from h2integrate.simulation.technologies.iron import iron +from h2integrate.converters.iron import iron @fixture @@ -122,11 +122,7 @@ def test_run_martin_iron_ore(iron_ore, subtests): def test_refit_coefficients(iron_ore, subtests): # Determine the model directory based on the model name iron_tech_dir = ( - Path(__file__).parent.parent.parent.parent - / "h2integrate" - / "simulation" - / "technologies" - / "iron" + Path(__file__).parent.parent.parent.parent / "h2integrate" / "converters" / "iron" ) model_name = iron_ore["iron"]["cost_model"]["name"] model_dir = iron_tech_dir / model_name diff --git a/tests/h2integrate/test_iron/test_iron_post.py b/tests/h2integrate/test_iron/test_iron_post.py index cde180cc8..1ee4f6dc5 100644 --- a/tests/h2integrate/test_iron/test_iron_post.py +++ b/tests/h2integrate/test_iron/test_iron_post.py @@ -4,7 +4,7 @@ from pytest import approx, fixture -from h2integrate.simulation.technologies.iron import iron +from h2integrate.converters.iron import iron @fixture @@ -165,11 +165,7 @@ def test_rosner_override(iron_post, subtests): def test_refit_coefficients(iron_post, subtests): # Determine the model directory based on the model name iron_tech_dir = ( - Path(__file__).parent.parent.parent.parent - / "h2integrate" - / "simulation" - / "technologies" - / "iron" + Path(__file__).parent.parent.parent.parent / "h2integrate" / "converters" / "iron" ) model_name = iron_post["iron"]["cost_model"]["name"] model_dir = iron_tech_dir / model_name diff --git a/tests/h2integrate/test_iron/test_iron_win.py b/tests/h2integrate/test_iron/test_iron_win.py index 5104e75cf..b8dd58c8f 100644 --- a/tests/h2integrate/test_iron/test_iron_win.py +++ b/tests/h2integrate/test_iron/test_iron_win.py @@ -4,7 +4,7 @@ from pytest import approx, fixture -from h2integrate.simulation.technologies.iron import iron +from h2integrate.converters.iron import iron @fixture @@ -167,11 +167,7 @@ def test_rosner_override(iron_win, subtests): def test_refit_coefficients(iron_win, subtests): # Determine the model directory based on the model name iron_tech_dir = ( - Path(__file__).parent.parent.parent.parent - / "h2integrate" - / "simulation" - / "technologies" - / "iron" + Path(__file__).parent.parent.parent.parent / "h2integrate" / "converters" / "iron" ) model_name = iron_win["iron"]["cost_model"]["name"] model_dir = iron_tech_dir / model_name diff --git a/tests/h2integrate/test_offshore/__init__.py b/tests/h2integrate/test_offshore/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/h2integrate/test_offshore/test_fixed_platform.py b/tests/h2integrate/test_offshore/test_fixed_platform.py deleted file mode 100644 index f9a52b4eb..000000000 --- a/tests/h2integrate/test_offshore/test_fixed_platform.py +++ /dev/null @@ -1,80 +0,0 @@ -from pathlib import Path - -import ORBIT as orbit -import pytest - -from h2integrate.simulation.technologies.offshore.fixed_platform import ( - install_platform, - calc_platform_opex, - calc_substructure_mass_and_cost, -) - - -"""Sources: - - [1] M. Maness, B. Maples and A. Smith, "NREL Offshore Balance-of-System Model," National - Renewable Energy Laboratory, 2017. https://www.nrel.gov/docs/fy17osti/66874.pdf -""" - - -@pytest.mark.skip(reason="no way of currently testing this") -@pytest.fixture -def config(): - offshore_path = ( - Path(__file__).parents[3] / "h2integrate" / "simulation" / "technologies" / "offshore" - ) - - return orbit.load_config(offshore_path / "example_fixed_project.yaml") - - -@pytest.mark.skip(reason="no way of currently testing this") -def test_install_platform(config): - """ - Test the code that calculates the platform installation cost - [1]: equations (91),(113),(98) - """ - distance = 24 - mass = 2100 - area = 500 - - cost = install_platform(mass, area, distance, install_duration=14) - - assert pytest.approx(cost) == 7200014 - - -def test_calc_substructure_cost(config): - """ - Test the code that calculates the CapEx from fixed_platform.py - [1]: equations (81),(83),(84) - """ - topmass = 200 - toparea = 1000 - depth = 45 - - cost, _ = calc_substructure_mass_and_cost(topmass, toparea, depth) - - assert pytest.approx(cost) == 7640000 - - -def test_calc_substructure_mass(config): - """ - Test the code that calculates the CapEx from fixed_platform.py - [1]: equations (81),(83),(84) - """ - topmass = 200 - toparea = 1000 - depth = 45 - - _, mass = calc_substructure_mass_and_cost(topmass, toparea, depth) - - assert pytest.approx(mass, 0.1) == 372.02 - - -def test_calc_platform_opex(): - """ - Test the code that calculates the OpEx from fixed_platform.py - """ - capex = 28e6 - opex_rate = 0.01 - cost = calc_platform_opex(capex, opex_rate) - - assert pytest.approx(cost) == 28e4 diff --git a/tests/h2integrate/test_offshore/test_floating_platform.py b/tests/h2integrate/test_offshore/test_floating_platform.py deleted file mode 100644 index 5cc996549..000000000 --- a/tests/h2integrate/test_offshore/test_floating_platform.py +++ /dev/null @@ -1,102 +0,0 @@ -from pathlib import Path - -import ORBIT as orbit -import pytest - -from h2integrate.simulation.technologies.offshore.floating_platform import ( - install_platform, - calc_platform_opex, - calc_substructure_mass_and_cost, -) - - -"""Sources: - - [1] M. Maness, B. Maples and A. Smith, "NREL Offshore Balance-of-System Model," National - Renewable Energy Laboratory, 2017. https://www.nrel.gov/docs/fy17osti/66874.pdf -""" - - -@pytest.fixture -def config(): - offshore_path = ( - Path(__file__).parents[3] / "h2integrate" / "simulation" / "technologies" / "offshore" - ) - - return orbit.load_config(offshore_path / "example_floating_project.yaml") - - -def test_install_platform(config): - """ - Test the code that calculates the platform installation cost - [1]: equations (91),(113),(98) - """ - distance = 24 - mass = 2100 - area = 500 - - cost = install_platform(mass, area, distance, install_duration=14, foundation="floating") - - assert pytest.approx(cost) == 7142871 - - -def test_calc_substructure_cost(config): - """ - Test the code that calculates the CapEx from floating_platform.py - [1]: equations (81),(83),(84) - """ - topmass = 200 - toparea = 1000 - depth = 500 - - cost, _ = calc_substructure_mass_and_cost( - topmass, - toparea, - depth, - fab_cost_rate=14500, - design_cost=4500000, - sub_cost_rate=3000, - line_cost=850000, - anchor_cost=120000, - anchor_mass=20, - line_mass=100000, - num_lines=4, - ) - - assert pytest.approx(cost) == 23040000 - - -def test_calc_substructure_mass(config): - """ - Test the code that calculates the CapEx from floating_platform.py - [1]: equations (81),(83),(84) - """ - topmass = 200 - toparea = 1000 - depth = 500 - - _, mass = calc_substructure_mass_and_cost( - topmass, - toparea, - depth, - fab_cost_rate=14500, - design_cost=4500000, - sub_cost_rate=3000, - line_cost=850000, - anchor_cost=120000, - anchor_mass=20, - line_mass=100000, - num_lines=4, - ) - - assert pytest.approx(mass, 0.1) == 680.0 - - -def test_calc_platform_opex(): - """ - Test the code that calculates the OpEx from floating_platform.py - """ - capex = 28e6 - opex_rate = 0.01 - cost = calc_platform_opex(capex, opex_rate) - - assert pytest.approx(cost) == 28e4 diff --git a/tests/h2integrate/test_steel.py b/tests/h2integrate/test_steel.py deleted file mode 100644 index b63956eb4..000000000 --- a/tests/h2integrate/test_steel.py +++ /dev/null @@ -1,298 +0,0 @@ -import copy - -from pytest import approx, raises, fixture - -from h2integrate.simulation.technologies.steel import steel - - -ng_prices_dict = { - "2035": 3.76232, - "2036": 3.776032, - "2037": 3.812906, - "2038": 3.9107960000000004, - "2039": 3.865776, - "2040": 3.9617400000000003, - "2041": 4.027136, - "2042": 4.017166, - "2043": 3.9715339999999997, - "2044": 3.924314, - "2045": 3.903287, - "2046": 3.878192, - "2047": 3.845413, - "2048": 3.813366, - "2049": 3.77735, - "2050": 3.766164, - "2051": 3.766164, - "2052": 3.766164, - "2053": 3.766164, - "2054": 3.766164, - "2055": 3.766164, - "2056": 3.766164, - "2057": 3.766164, - "2058": 3.766164, - "2059": 3.766164, - "2060": 3.766164, - "2061": 3.766164, - "2062": 3.766164, - "2063": 3.766164, - "2064": 3.766164, -} -grid_prices_dict = { - "2035": 89.42320514456621, - "2036": 89.97947569251141, - "2037": 90.53574624045662, - "2038": 91.09201678840184, - "2039": 91.64828733634704, - "2040": 92.20455788429224, - "2041": 89.87291235917809, - "2042": 87.54126683406393, - "2043": 85.20962130894978, - "2044": 82.87797578383562, - "2045": 80.54633025872147, - "2046": 81.38632144593608, - "2047": 82.22631263315068, - "2048": 83.0663038203653, - "2049": 83.90629500757991, - "2050": 84.74628619479452, - "2051": 84.74628619479452, - "2052": 84.74628619479452, - "2053": 84.74628619479452, - "2054": 84.74628619479452, - "2055": 84.74628619479452, - "2056": 84.74628619479452, - "2057": 84.74628619479452, - "2058": 84.74628619479452, - "2059": 84.74628619479452, - "2060": 84.74628619479452, - "2061": 84.74628619479452, - "2062": 84.74628619479452, - "2063": 84.74628619479452, - "2064": 84.74628619479452, -} - -financial_assumptions = { - "total income tax rate": 0.2574, - "capital gains tax rate": 0.15, - "leverage after tax nominal discount rate": 0.10893, - "debt equity ratio of initial financing": 0.624788, - "debt interest rate": 0.050049, -} - - -@fixture -def cost_config(): - config = steel.SteelCostModelConfig( - operational_year=2035, - plant_capacity_mtpy=1084408.2137715619, - lcoh=4.2986685034417045, - feedstocks=steel.Feedstocks(natural_gas_prices=ng_prices_dict, oxygen_market_price=0), - o2_heat_integration=False, - ) - return config - - -def test_run_steel_model(): - capacity = 100.0 - capacity_factor = 0.9 - - steel_production_mtpy = steel.run_steel_model(capacity, capacity_factor) - - assert steel_production_mtpy == 90.0 - - -def test_steel_cost_model(subtests, cost_config): - res: steel.SteelCostModelOutputs = steel.run_steel_cost_model(cost_config) - - with subtests.test("CapEx"): - assert res.total_plant_cost == approx(617972269.2565368) - with subtests.test("Fixed OpEx"): - assert res.total_fixed_operating_cost == approx(104244740.28004119) - with subtests.test("Installation"): - assert res.installation_cost == approx(209403678.7623758) - - -def test_steel_finance_model(cost_config): - # Parameter -> Hydrogen/Steel/Ammonia - costs: steel.SteelCostModelOutputs = steel.run_steel_cost_model(cost_config) - - plant_capacity_factor = 0.9 - steel_production_mtpy = steel.run_steel_model( - cost_config.plant_capacity_mtpy, plant_capacity_factor - ) - - config = steel.SteelFinanceModelConfig( - plant_life=30, - plant_capacity_mtpy=cost_config.plant_capacity_mtpy, - plant_capacity_factor=plant_capacity_factor, - steel_production_mtpy=steel_production_mtpy, - lcoh=cost_config.lcoh, - feedstocks=cost_config.feedstocks, - grid_prices=grid_prices_dict, - financial_assumptions=financial_assumptions, - costs=costs, - ) - - lcos_expected = 1003.6498479621724 - - res: steel.SteelFinanceModelOutputs = steel.run_steel_finance_model(config) - - assert res.sol.get("price") == lcos_expected - - -def test_steel_size_h2_input(subtests): - config = steel.SteelCapacityModelConfig( - hydrogen_amount_kgpy=73288888.8888889, - input_capacity_factor_estimate=0.9, - feedstocks=steel.Feedstocks(natural_gas_prices=ng_prices_dict, oxygen_market_price=0), - ) - - res: steel.SteelCapacityModelOutputs = steel.run_size_steel_plant_capacity(config) - - with subtests.test("steel plant size"): - assert res.steel_plant_capacity_mtpy == approx(1000000) - with subtests.test("hydrogen input"): - assert res.hydrogen_amount_kgpy == approx(73288888.8888889) - - -def test_steel_size_steel_input(subtests): - config = steel.SteelCapacityModelConfig( - desired_steel_mtpy=1000000, - input_capacity_factor_estimate=0.9, - feedstocks=steel.Feedstocks(natural_gas_prices=ng_prices_dict, oxygen_market_price=0), - ) - - res: steel.SteelCapacityModelOutputs = steel.run_size_steel_plant_capacity(config) - - with subtests.test("steel plant size"): - assert res.steel_plant_capacity_mtpy == approx(1111111.111111111) - with subtests.test("hydrogen input"): - assert res.hydrogen_amount_kgpy == approx(73288888.8888889) - - -def test_run_steel_full_model(subtests): - config = { - "steel": { - "capacity": { - "input_capacity_factor_estimate": 0.9, - "desired_steel_mtpy": 1000000, - }, - "costs": { - "operational_year": 2035, - "o2_heat_integration": False, - "feedstocks": { - "natural_gas_prices": ng_prices_dict, - "oxygen_market_price": 0, - }, - "lcoh": 4.2986685034417045, - }, - "finances": { - "plant_life": 30, - "lcoh": 4.2986685034417045, - "grid_prices": grid_prices_dict, - "financial_assumptions": financial_assumptions, - }, - } - } - - res = steel.run_steel_full_model(config) - - with subtests.test("output length"): - assert len(res) == 3 - - with subtests.test("h2 mass per year"): - assert res[0].hydrogen_amount_kgpy == approx(73288888.8888889) - - with subtests.test("plant cost"): - assert res[1].total_plant_cost == approx(627667493.7760644) - with subtests.test("Installation"): - assert res[1].installation_cost == approx(212913296.16069925) - with subtests.test("steel price"): - assert res[2].sol.get("price") == approx(1000.0534906485253) - - -def test_run_steel_full_model_changing_lcoh(subtests): - config_0 = { - "steel": { - "capacity": { - "input_capacity_factor_estimate": 0.9, - "desired_steel_mtpy": 1000000, - }, - "costs": { - "operational_year": 2035, - "o2_heat_integration": False, - "feedstocks": { - "natural_gas_prices": ng_prices_dict, - "oxygen_market_price": 0, - }, - "lcoh": 4.2986685034417045, - }, - "finances": { - "plant_life": 30, - "lcoh": 4.2986685034417045, - "grid_prices": grid_prices_dict, - "financial_assumptions": financial_assumptions, - }, - } - } - - config_1 = copy.deepcopy(config_0) - config_1["steel"]["costs"]["lcoh"] = 20.0 - config_1["steel"]["finances"]["lcoh"] = 20.0 - - res0 = steel.run_steel_full_model(config_0) - res1 = steel.run_steel_full_model(config_1) - - with subtests.test("output length 0"): - assert len(res0) == 3 - with subtests.test("output length 1"): - assert len(res1) == 3 - with subtests.test("res0 res1 equal h2 mass per year"): - assert res0[0].hydrogen_amount_kgpy == res1[0].hydrogen_amount_kgpy - with subtests.test("res0 res1 equal plant cost"): - assert res0[1].total_plant_cost == res1[1].total_plant_cost - with subtests.test("res0 price lt res1 price"): - assert res0[2].sol.get("price") < res1[2].sol.get("price") - with subtests.test("raise value error when LCOH values do not match"): - config_1["steel"]["finances"]["lcoh"] = 40.0 - with raises(ValueError, match="steel cost LCOH and steel finance LCOH are not equal"): - res1 = steel.run_steel_full_model(config_1) - - -def test_run_steel_full_model_changing_feedstock_transport_costs(subtests): - config = { - "steel": { - "capacity": { - "input_capacity_factor_estimate": 0.9, - "desired_steel_mtpy": 1000000, - }, - "costs": { - "operational_year": 2035, - "o2_heat_integration": False, - "feedstocks": { - "natural_gas_prices": ng_prices_dict, - "oxygen_market_price": 0, - "lime_transport_cost": 47.72, - "carbon_transport_cost": 64.91, - "iron_ore_pellet_transport_cost": 0.63, - }, - "lcoh": 4.2986685034417045, - }, - "finances": { - "plant_life": 30, - "lcoh": 4.2986685034417045, - "grid_prices": grid_prices_dict, - "financial_assumptions": financial_assumptions, - }, - } - } - - res = steel.run_steel_full_model(config) - - with subtests.test("plant cost"): - assert res[1].total_plant_cost == approx(627667493.7760644) - - with subtests.test("Installation"): - assert res[1].installation_cost == approx(213896544.47120154) - - with subtests.test("steel price"): - assert res[2].sol.get("price") == approx(1005.7008348727317) From 9fb54c478b69b0ac7161c61bd855ccd3cb7f7fa4 Mon Sep 17 00:00:00 2001 From: Jared Thomas Date: Wed, 10 Dec 2025 17:09:07 -0700 Subject: [PATCH 71/79] Allow for starts-with matching for technology names in electricity producing techs (#397) * allow starts with matching and not just exact matching in electricity_producing_techs * add tests for is_electricity_producer * add error check that custom models are not created with the same name and different class definitions * update doc * Added note on primary commodity electricity tech --------- Co-authored-by: John Jasa --- docs/technology_models/grid.md | 2 +- h2integrate/core/h2integrate_model.py | 33 +++++++++- h2integrate/core/resource_summer.py | 8 +-- h2integrate/core/supported_models.py | 37 ++++++++--- h2integrate/core/test/test_framework.py | 63 ++++++++++++++++--- .../core/test/test_supported_models.py | 18 ++++++ 6 files changed, 136 insertions(+), 25 deletions(-) create mode 100644 h2integrate/core/test/test_supported_models.py diff --git a/docs/technology_models/grid.md b/docs/technology_models/grid.md index a8167a95a..16dff45fd 100644 --- a/docs/technology_models/grid.md +++ b/docs/technology_models/grid.md @@ -16,7 +16,7 @@ It supports: - Computing unmet demand and unsold electricity due to constraints. ```{note} -Multiple grid instances may be used within the same plant to represent different interconnection nodes. In the `tech_config` the component **must** be called `grid_buy` for the logic to work appropriately in financial calculations. +Multiple grid instances may be used within the same plant to represent different interconnection nodes. For buying electricity from the grid, the technology name in the `tech_config` **must** start with `grid_buy` for the logic to work appropriately in financial calculations. ``` **Inputs** diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index 5743ce5dc..3e58b847d 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -13,7 +13,7 @@ ) from h2integrate.finances.finances import AdjustedCapexOpexComp from h2integrate.core.resource_summer import ElectricitySumComp -from h2integrate.core.supported_models import supported_models, electricity_producing_techs +from h2integrate.core.supported_models import supported_models, is_electricity_producer from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml from h2integrate.core.pose_optimization import PoseOptimization from h2integrate.postprocess.sql_to_csv import convert_sql_to_csv_summary @@ -205,10 +205,34 @@ def create_custom_models(self, model_config, config_parent_path, model_types, pr Defaults to "". Should be "finance_" if looking for custom general finance models. """ + included_custom_models = {} + for name, config in model_config.items(): for model_type in model_types: if model_type in config: model_name = config[model_type].get(f"{prefix}model") + + # Don't create new custom model or raise an error if the current custom model + # has already been processed. This can happen if there are 2 or more instances + # of the same custom model. Also check that all instances of the same custom + # model tech name use the same class definition. + if model_name in included_custom_models: + model_class_name = config[model_type].get(f"{prefix}model_class_name") + if ( + model_class_name + != included_custom_models[model_name]["model_class_name"] + ): + raise ( + ValueError( + "User has specified two custom models using the same model" + "name ({model_name}), but with different model classes. " + "Technologies defined with different classes must have " + "different technology names." + ) + ) + else: + continue + if (model_name not in self.supported_models) and (model_name is not None): model_class_name = config[model_type].get(f"{prefix}model_class_name") model_location = config[model_type].get(f"{prefix}model_location") @@ -239,6 +263,11 @@ def create_custom_models(self, model_config, config_parent_path, model_types, pr # Add the custom model to the supported models dictionary self.supported_models[model_name] = custom_model_class + # Add the custom model to custom models dictionary + included_custom_models[model_name] = { + "model_class_name": model_class_name, + } + else: if ( config[model_type].get(f"{prefix}model_class_name") is not None @@ -1009,7 +1038,7 @@ def connect_technologies(self): # and in this finance group for tech_name in tech_configs.keys(): if ( - tech_name in electricity_producing_techs + is_electricity_producer(tech_name) and primary_commodity_type == "electricity" ): self.plant.connect( diff --git a/h2integrate/core/resource_summer.py b/h2integrate/core/resource_summer.py index 5a063843b..00aa8541c 100644 --- a/h2integrate/core/resource_summer.py +++ b/h2integrate/core/resource_summer.py @@ -1,7 +1,7 @@ import numpy as np import openmdao.api as om -from h2integrate.core.supported_models import electricity_producing_techs +from h2integrate.core.supported_models import is_electricity_producer class ElectricitySumComp(om.ExplicitComponent): @@ -15,7 +15,7 @@ def initialize(self): def setup(self): # Add inputs for each electricity producing technology for tech in self.options["tech_configs"]: - if tech in electricity_producing_techs: + if is_electricity_producer(tech): self.add_input( f"electricity_{tech}", shape=8760, @@ -33,11 +33,11 @@ def setup(self): ) def compute(self, inputs, outputs): - # Sum up all electricity streams for technologies in electricity_producing_techs + # Sum up all electricity streams for electricity-producing technologies outputs["total_electricity_produced"] = np.sum( [ inputs[f"electricity_{tech}"] for tech in self.options["tech_configs"] - if tech in electricity_producing_techs + if is_electricity_producer(tech) ] ) diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index 1735d99e9..ef11d126e 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -240,12 +240,31 @@ "NumpyFinancialNPV": NumpyFinancialNPV, } -electricity_producing_techs = [ - "wind", - "solar", - "pv", - "river", - "hopp", - "natural_gas_plant", - "grid_buy", -] + +def is_electricity_producer(tech_name: str) -> bool: + """Check if a technology is an electricity producer. + + Args: + tech_name: The name of the technology to check. + Returns: + True if tech_name starts with any of the known electricity producing + tech prefixes (e.g., 'wind', 'solar', 'pv', 'grid_buy', etc.). + Note: + This uses prefix matching, so 'grid_buy_1' and 'grid_buy_2' would both + be considered electricity producers. Be careful when naming technologies + to avoid unintended matches (e.g., 'pv_battery' would be incorrectly + identified as an electricity producer). + """ + + # add any new electricity producing technologies to this list + electricity_producing_techs = [ + "wind", + "solar", + "pv", + "river", + "hopp", + "natural_gas_plant", + "grid_buy", + ] + + return any(tech_name.startswith(elem) for elem in electricity_producing_techs) diff --git a/h2integrate/core/test/test_framework.py b/h2integrate/core/test/test_framework.py index 97a9c5404..461540566 100644 --- a/h2integrate/core/test/test_framework.py +++ b/h2integrate/core/test/test_framework.py @@ -50,15 +50,60 @@ def test_custom_model_name_clash(subtests): with temp_highlevel_yaml.open("w") as f: yaml.safe_dump(highlevel_data, f) - # Assert that a ValueError is raised with the expected message when running the model - error_msg = ( - r"Custom model_class_name or model_location specified for 'basic_electrolyzer_cost', " - r"but 'basic_electrolyzer_cost' is a built-in H2Integrate model\. " - r"Using built-in model instead is not allowed\. " - r"If you want to use a custom model, please rename it in your configuration\." - ) - with pytest.raises(ValueError, match=error_msg): - H2IntegrateModel(temp_highlevel_yaml) + with subtests.test("custom model name should not match built-in model names"): + # Assert that a ValueError is raised with the expected message when running the model + error_msg = ( + r"Custom model_class_name or model_location specified for 'basic_electrolyzer_cost', " + r"but 'basic_electrolyzer_cost' is a built-in H2Integrate model\. " + r"Using built-in model instead is not allowed\. " + r"If you want to use a custom model, please rename it in your configuration\." + ) + with pytest.raises(ValueError, match=error_msg): + H2IntegrateModel(temp_highlevel_yaml) + + with subtests.test( + "custom models must use different model names for different class definitions" + ): + # Load the tech_config YAML content + tech_config_data = load_tech_yaml(temp_tech_config) + + tech_config_data["technologies"]["electrolyzer"]["cost_model"] = { + "model": "new_electrolyzer_cost", + "model_location": "dummy_path", # path doesn't matter; `model_location` must exist + } + + from copy import deepcopy + + tech_config_data["technologies"]["electrolyzer2"] = deepcopy( + tech_config_data["technologies"]["electrolyzer"] + ) + tech_config_data["technologies"]["electrolyzer2"]["cost_model"] = { + "model": "new_electrolyzer_cost", + "model_class_name": "DummyClass", + "model_location": "dummy_path", # path doesn't matter; `model_location` must exist + } + # Save the modified tech_config YAML back + with temp_tech_config.open("w") as f: + yaml.safe_dump(tech_config_data, f) + + # Load the high-level YAML content + with temp_highlevel_yaml.open() as f: + highlevel_data = yaml.safe_load(f) + + # Modify the high-level YAML to point to the temp tech_config file + highlevel_data["technology_config"] = str(temp_tech_config.name) + + # Save the modified high-level YAML back + with temp_highlevel_yaml.open("w") as f: + yaml.safe_dump(highlevel_data, f) + + # Assert that a ValueError is raised with the expected message when running the model + error_msg = ( + r"User has specified two custom models using the same model" + r"name ('new_electrolyzer_cost'), but with different model classes\. " + r"Technologies defined with different" + r"classes must have different technology names\." + ) # Clean up temporary YAML files temp_tech_config.unlink(missing_ok=True) diff --git a/h2integrate/core/test/test_supported_models.py b/h2integrate/core/test/test_supported_models.py new file mode 100644 index 000000000..e42104098 --- /dev/null +++ b/h2integrate/core/test/test_supported_models.py @@ -0,0 +1,18 @@ +from h2integrate.core.supported_models import is_electricity_producer + + +def test_is_electricity_producer(subtests): + with subtests.test("exact match"): + assert is_electricity_producer("grid_buy") + + with subtests.test("partial starts-with match"): + assert is_electricity_producer("grid_buy_1") + + with subtests.test("partial ends-with match fails"): + assert not is_electricity_producer("wrong_grid_buy") + + with subtests.test("empty string fails"): + assert not is_electricity_producer("") + + with subtests.test("non-electricity producing tech fails"): + assert not is_electricity_producer("battery") From 83c257f40a80250b6ba3c3f8d597f3d7b4d6af1a Mon Sep 17 00:00:00 2001 From: John Jasa Date: Thu, 11 Dec 2025 11:52:33 -0700 Subject: [PATCH 72/79] Correct name spelling from 'Corey' to 'Cory' --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 06352acc2..c7ec7dd16 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ authors = [ {name = "Cameron Irmas"}, {name = "Sanjana Vijayshankar"}, {name = "Nicholas Riccobono"}, - {name = "Corey Frontin"}, + {name = "Cory Frontin"}, {name = "Caitlyn Clark"}, {name = "Aaron Barker"}, {name = "Abhineet Gupta"}, From bf800a6619715df70d7fda9ac9ba96ac9cae8985 Mon Sep 17 00:00:00 2001 From: John Jasa Date: Thu, 11 Dec 2025 12:09:21 -0700 Subject: [PATCH 73/79] Update LICENSE to remove ProFAST note Removed note about ProFAST model license agreement. --- LICENSE | 2 -- 1 file changed, 2 deletions(-) diff --git a/LICENSE b/LICENSE index 9eadc39a7..2981916ba 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,3 @@ -**Note: The ProFAST model is distributed with H2Integrate but operates under a separate license agreement. Users must agree to the license terms of ProFAST located at `ProFAST/InternalUseTermsForDownloadableSoftware-ProFAST.docx`.** - BSD 3-Clause License Copyright (c) 2024, Alliance for Sustainable Energy, LLC From 645858818af7c0f80b02b8545810427c500ce3be Mon Sep 17 00:00:00 2001 From: "Hammond, Rob" <13874373+RHammond2@users.noreply.github.com> Date: Thu, 11 Dec 2025 14:05:59 -0800 Subject: [PATCH 74/79] add zenodo citation --- CITATION.cff | 200 ++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 37 ++++++++++ docs/intro.md | 37 ++++++++++ 3 files changed, 274 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 000000000..14eb7e7d3 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,200 @@ +abstract:

H2Integrate is an open-source Python package for modeling and designing + hybrid energy systems producing electricity, hydrogen, ammonia, steel, and other + products.

+authors: +- family-names: Brunik + given-names: Kaitlin + orcid: 0009-0006-8764-2672 +- affiliation: National Renewable Energy Laboratory + family-names: Grant + given-names: Elenya + orcid: 0000-0003-1939-011X +- affiliation: National Renewable Energy Laboratory + family-names: Thomas + given-names: Jared + orcid: 0000-0001-6668-2276 +- affiliation: National Renewable Energy Laboratory + family-names: Starke + given-names: Genevieve M + orcid: 0000-0001-9554-8455 +- affiliation: National Renewable Energy Laboratory + family-names: Martin + given-names: Jonathan + orcid: 0000-0002-1239-6300 +- affiliation: National Renewable Energy Laboratory + family-names: Ramos + given-names: Dakota + orcid: 0000-0003-1258-7681 +- affiliation: National Renewable Energy Laboratory + family-names: Koleva + given-names: Mariya + orcid: 0000-0003-1387-6477 +- affiliation: National Renewable Energy Laboratory + family-names: Reznicek + given-names: Evan + orcid: 0000-0002-7456-1199 +- affiliation: National Renewable Energy Laboratory + family-names: Hammond + given-names: Rob + orcid: 0000-0003-4476-6406 +- affiliation: National Renewable Energy Laboratory + family-names: Stanislawski + given-names: Brooke + orcid: 0000-0003-3146-0053 +- family-names: Kiefer + given-names: Charlie +- family-names: Irmas + given-names: Cameron +- affiliation: National Renewable Energy Laboratory + family-names: Vijayshankar + given-names: Sanjana + orcid: 0009-0009-6867-5075 +- affiliation: National Renewable Energy Laboratory + family-names: Riccobono + given-names: Nicholas +- affiliation: National Renewable Energy Laboratory + family-names: Frontin + given-names: Cory + orcid: 0000-0002-9375-7488 +- family-names: Clark + given-names: Caitlyn + orcid: 0000-0002-5203-7329 +- family-names: Barker + given-names: Aaron + orcid: 0000-0003-3570-1424 +- affiliation: National Renewable Energy Laboratory + family-names: Gupta + given-names: Abhineet + orcid: 0000-0003-3383-3490 +- affiliation: National Renewable Energy Laboratory + family-names: Kee + given-names: Benjamin (Jamie) + orcid: 0000-0003-0852-8582 +- affiliation: National Renewable Energy Laboratory + family-names: King + given-names: Jennifer + orcid: 0000-0001-6219-0098 +- affiliation: National Renewable Energy Laboratory + family-names: Jasa + given-names: John + orcid: 0000-0001-5442-2792 +- affiliation: National Renewable Energy Laboratory + family-names: Bay + given-names: Christopher + orcid: 0000-0002-2658-5559 +- affiliation: National Renewable Energy Laboratory + family-names: Jasa + given-names: John + orcid: 0000-0001-5442-2792 +- affiliation: National Renewable Energy Laboratory + family-names: King + given-names: Jennifer + orcid: 0000-0001-6219-0098 +- affiliation: National Renewable Energy Laboratory + family-names: Bay + given-names: Christopher + orcid: 0000-0002-2658-5559 +- affiliation: National Renewable Energy Laboratory + family-names: Brunik + given-names: Kaitlin + orcid: 0009-0006-8764-2672 +- affiliation: National Renewable Energy Laboratory + family-names: Grant + given-names: Elenya + orcid: 0000-0003-1939-011X +- affiliation: National Renewable Energy Laboratory + family-names: Starke + given-names: Genevieve M + orcid: 0000-0001-9554-8455 +- affiliation: National Renewable Energy Laboratory + family-names: Martin + given-names: Jonathan + orcid: 0000-0002-1239-6300 +- affiliation: National Renewable Energy Laboratory + family-names: Ramos + given-names: Dakota + orcid: 0000-0003-1258-7681 +- affiliation: National Renewable Energy Laboratory + family-names: Thomas + given-names: Jared + orcid: 0000-0001-6668-2276 +- affiliation: National Renewable Energy Laboratory + family-names: Reznicek + given-names: Evan + orcid: 0000-0002-7456-1199 +- affiliation: National Renewable Energy Laboratory + family-names: Hammond + given-names: Rob + orcid: 0000-0003-4476-6406 +- affiliation: National Renewable Energy Laboratory + family-names: Stanislawski + given-names: Brooke + orcid: 0000-0003-3146-0053 +- affiliation: National Renewable Energy Laboratory + family-names: Kiefer + given-names: Charlie +- family-names: Irmas + given-names: Cameron +- affiliation: National Renewable Energy Laboratory + family-names: Vijayshankar + given-names: Sanjana + orcid: 0009-0009-6867-5075 +- affiliation: National Renewable Energy Laboratory + family-names: Riccobono + given-names: Nicholas +- affiliation: National Renewable Energy Laboratory + family-names: Frontin + given-names: Cory + orcid: 0000-0002-9375-7488 +- affiliation: National Renewable Energy Laboratory + family-names: Clark + given-names: Caitlyn + orcid: 0000-0002-5203-7329 +- family-names: Barker + given-names: Aaron + orcid: 0000-0003-3570-1424 +- affiliation: National Renewable Energy Laboratory + family-names: Gupta + given-names: Abhineet + orcid: 0000-0003-3383-3490 +- affiliation: National Renewable Energy Laboratory + family-names: Kee + given-names: Benjamin (Jamie) + orcid: 0000-0003-0852-8582 +- affiliation: National Renewable Energy Laboratory + family-names: Koleva + given-names: Mariya + orcid: 0000-0003-1387-6477 +cff-version: 1.2.0 +date-released: '2025-12-11' +doi: 10.5281/zenodo.17903150 +keywords: +- euroscivoc:1169 +- Renewable energy +- euroscivoc:1691 +- Hydrogen energy +- gemet:concept/7842 +- Software +- gemet:concept/14894 +- Software development +- euroscivoc:1687 +- Hybrid energy +- gemet:concept/9335 +- Wind power +- euroscivoc:1695 +- Wind power +- gemet:concept/7906 +- Solar energy +- energy generation +- gemet:concept/2744 +- Energy storage +- euroscivoc:1171 +- Energy conversion +- energy dispatch +- design optimization +license: +- bsd-3-clause +message: If you use this software, please cite it using the metadata from this file. +title: 'H2Integrate: Holistic Hybrids Optimization and Design Tool' +type: software +version: 0.4.0 diff --git a/README.md b/README.md index a5e0eea6e..d3cf64618 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ ![CI Tests](https://github.com/NREL/H2Integrate/actions/workflows/ci.yml/badge.svg) [![image](https://img.shields.io/pypi/pyversions/H2Integrate.svg)](https://pypi.python.org/pypi/H2Integrate) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) +[![DOI:10.5281/zenodo.17903150](https://zenodo.org/badge/DOI/10.5281/zenodo.17903149.svg)](https://zenodo.org/records/17903149) [![DOI 10.1088/1742-6596/2767/8/082019](https://img.shields.io/badge/DOI-10.1088%2F1742--6596%2F2767%2F8%2F082019-brightgreen?link=[https://doi.org/10.1088/1742-6596/2767/8/082019](https://doi.org/10.1088/1742-6596/2767/8/082019))](https://iopscience.iop.org/article/10.1088/1742-6596/2767/8/082019/pdf) [![DOI 10.1088/1742-6596/2767/6/062017](https://img.shields.io/badge/DOI-10.1088%2F1742--6596%2F2767%2F6%2F062017-brightgreen?link=[https://doi.org/10.1088/1742-6596/2767/6/062017](https://doi.org/10.1088/1742-6596/2767/6/062017))](https://iopscience.iop.org/article/10.1088/1742-6596/2767/6/062017/pdf) @@ -13,6 +14,42 @@ H2Integrate is an open-source Python package for modeling and designing hybrid e Note: The current version of H2Integrate is under active development and may be missing features that existed previously. H2Integrate v0.2.0 is the last version that uses the prior framework. +## Software Citation + +```bibtex +@software{brunik_2025_17903150, + author = {Brunik, Kaitlin and + Grant, Elenya and + Thomas, Jared and + Starke, Genevieve M and + Martin, Jonathan and + Ramos, Dakota and + Koleva, Mariya and + Reznicek, Evan and + Hammond, Rob and + Stanislawski, Brooke and + Kiefer, Charlie and + Irmas, Cameron and + Vijayshankar, Sanjana and + Riccobono, Nicholas and + Frontin, Cory and + Clark, Caitlyn and + Barker, Aaron and + Gupta, Abhineet and + Kee, Benjamin (Jamie) and + King, Jennifer and + Jasa, John and + Bay, Christopher}, + title = {H2Integrate: Holistic Hybrids Optimization and Design Tool}, + month = dec, + year = 2025, + publisher = {Zenodo}, + version = {0.4.0}, + doi = {10.5281/zenodo.17903150}, + url = {https://doi.org/10.5281/zenodo.17903150}, +} +``` + ## Publications where H2Integrate has been used For more context about H2Integrate and to see analyses that have been performed using the tool, please see some of these publications. diff --git a/docs/intro.md b/docs/intro.md index 38969c7bf..0d55bc332 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -4,6 +4,7 @@ ![CI Tests](https://github.com/NREL/H2Integrate/actions/workflows/ci.yml/badge.svg) [![image](https://img.shields.io/pypi/pyversions/h2integrate.svg)](https://pypi.python.org/pypi/h2integrate) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) +[![DOI:10.5281/zenodo.17903150](https://zenodo.org/badge/DOI/10.5281/zenodo.17903149.svg)](https://zenodo.org/records/17903149) H2Integrate is an open-source Python package for modeling and designing hybrid energy systems producing electricity, hydrogen, ammonia, steel, and other products. @@ -11,6 +12,42 @@ H2Integrate is an open-source Python package for modeling and designing hybrid e H2Integrate is under active development and may be missing features that existed in previous versions. H2Integrate v0.2.0 is the last version that uses the prior framework. ``` +If you use this software in your work, please cite using the following BibTeX: + +```bibtex +@software{brunik_2025_17903150, + author = {Brunik, Kaitlin and + Grant, Elenya and + Thomas, Jared and + Starke, Genevieve M and + Martin, Jonathan and + Ramos, Dakota and + Koleva, Mariya and + Reznicek, Evan and + Hammond, Rob and + Stanislawski, Brooke and + Kiefer, Charlie and + Irmas, Cameron and + Vijayshankar, Sanjana and + Riccobono, Nicholas and + Frontin, Cory and + Clark, Caitlyn and + Barker, Aaron and + Gupta, Abhineet and + Kee, Benjamin (Jamie) and + King, Jennifer and + Jasa, John and + Bay, Christopher}, + title = {H2Integrate: Holistic Hybrids Optimization and Design Tool}, + month = dec, + year = 2025, + publisher = {Zenodo}, + version = {0.4.0}, + doi = {10.5281/zenodo.17903150}, + url = {https://doi.org/10.5281/zenodo.17903150}, +} +``` + ## What is H2Integrate? H2Integrate is designed to be flexible and extensible, allowing users to create their own components and models for various energy systems. From 82ba52a0b9d492976a397e69b690489dcde1ea60 Mon Sep 17 00:00:00 2001 From: Jared Thomas Date: Thu, 11 Dec 2025 16:12:00 -0700 Subject: [PATCH 75/79] Update CHANGELOG with new features and improvements corresponding to PR #397 (#411) Updated changelog to include new features and improvements relevant to PR #397 that were accidentally not push prior to merging. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 498748d50..96afcae4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,8 @@ - Improved readability of the postprocessing printout by simplifying numerical representation, especially for years - Added grid converter performance and cost model which can be used to buy, sell, or buy and sell electricity to/from the grid - Add open-loop load demand controllers: `DemandOpenLoopConverterController` and `FlexibleDemandOpenLoopConverterController` +- Allow multiple instances of the same electricity producing technologies using prefix-based matching +- Allow multiple instances of custom models in the same hybrid system - Removed a large portion of the old GreenHEART code that was no longer being used ## 0.4.0 [October 1, 2025] From 43ab54c33ba82ada6c2ad921c70e2bcc15a24569 Mon Sep 17 00:00:00 2001 From: Jared Thomas Date: Mon, 15 Dec 2025 16:39:50 -0700 Subject: [PATCH 76/79] Allow generic combiner to handle as many inflow streams as desired (#406) * make generic combiner able to handle as many inflows as desired * update changelog, docstrings, and combiner test for multiple inflow streams >2 * update docs * update docs --------- Co-authored-by: John Jasa --- CHANGELOG.md | 1 + docs/user_guide/connecting_technologies.md | 24 ++++----- h2integrate/transporters/generic_combiner.py | 32 ++++++------ .../test/test_generic_combiner.py | 50 +++++++++++++++++++ 4 files changed, 79 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96afcae4b..aee0f11f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ - Allow multiple instances of the same electricity producing technologies using prefix-based matching - Allow multiple instances of custom models in the same hybrid system - Removed a large portion of the old GreenHEART code that was no longer being used +- Updated generic combiner to accept any number of inflow streams instead of just 2 ## 0.4.0 [October 1, 2025] diff --git a/docs/user_guide/connecting_technologies.md b/docs/user_guide/connecting_technologies.md index 7c95b3451..0b72689f1 100644 --- a/docs/user_guide/connecting_technologies.md +++ b/docs/user_guide/connecting_technologies.md @@ -88,9 +88,9 @@ And automatically connects: - `electricity_splitter.electricity_out1` → `electricity_splitter_to_electrolyzer_cable.electricity_in` - `electricity_splitter.electricity_out2` → `electricity_splitter_to_doc_cable.electricity_in` -## Power combiner +## Generic combiner -The power combiner is a simple but essential component that takes electricity from two sources and combines them into a single output without losses. +The generic combiner is a simple but essential component that takes a single commodity from multiple sources and combines the sources into a single output without losses. The following example uses power (kW) as the commodity, but streams of any single commodity can be combined. Any number of sources may be combined, not just two as in the example. ### Configuration @@ -98,7 +98,7 @@ Add the combiner to your `tech_config.yaml`: ```yaml technologies: - electricity_combiner: + combiner: performance_model: model: "combiner_performance" model_inputs: @@ -107,25 +107,25 @@ technologies: commodity_units: "kW" ``` -No additional configuration parameters are needed - the combiner simply adds the two input streams. +No additional configuration parameters are needed in the `tech_config.yaml` - the combiner simply adds the input streams. ### Inputs and outputs - **Inputs**: - - `electricity_in1`: Power from the first source (kW) - - `electricity_in2`: Power from the second source (kW) + - `_in1`: Power from the first source (kW) + - `_in2`: Power from the second source (kW) - **Output**: - - `electricity_out`: Combined power output (kW) + - `_out`: Combined power output (kW) -The relationship is straightforward: `electricity_out = electricity_in1 + electricity_in2` +The relationship is straightforward: `_out = _in1 + _in2` ### Usage example ```yaml technology_interconnections: [ - ["wind_farm", "electricity_combiner", "electricity", "cable"], - ["solar_farm", "electricity_combiner", "electricity", "cable"], - ["electricity_combiner", "electrolyzer", "electricity", "cable"], + ["wind_farm", "combiner", "electricity", "cable"], + ["solar_farm", "combiner", "electricity", "cable"], + ["combiner", "electrolyzer", "electricity", "cable"], ] ``` @@ -212,5 +212,5 @@ technology_interconnections: [ This sends part of the offshore wind power to a direct ocean capture system and the remainder to an electrolyzer. ```{note} -Each combiner handles exactly two inputs, and each splitter handles exactly two outputs. For more complex architectures, you can chain multiple components together. +Each splitter handles exactly two inputs. For more complex architectures, you can chain multiple components together. ``` diff --git a/h2integrate/transporters/generic_combiner.py b/h2integrate/transporters/generic_combiner.py index a930df129..72a8218ce 100644 --- a/h2integrate/transporters/generic_combiner.py +++ b/h2integrate/transporters/generic_combiner.py @@ -11,15 +11,17 @@ class GenericCombinerPerformanceConfig(BaseConfig): Attributes: commodity (str): name of commodity type commodity_units (str): units of commodity production profile + in_streams (int): how many inflow streams will be connected, defaults to 2 """ commodity: str = field(converter=(str.lower, str.strip)) commodity_units: str = field() + in_streams: int = field(default=2) class GenericCombinerPerformanceModel(om.ExplicitComponent): """ - Combine any commodity or resource from two sources into one output without losses. + Combine any commodity or resource from multiple sources into one output without losses. This component is purposefully simple; a more realistic case might include losses or other considerations from system components. @@ -37,18 +39,14 @@ def setup(self): n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) - self.add_input( - f"{self.config.commodity}_in1", - val=0.0, - shape=n_timesteps, - units=self.config.commodity_units, - ) - self.add_input( - f"{self.config.commodity}_in2", - val=0.0, - shape=n_timesteps, - units=self.config.commodity_units, - ) + for i in range(1, self.config.in_streams + 1): + self.add_input( + f"{self.config.commodity}_in{i}", + val=0.0, + shape=n_timesteps, + units=self.config.commodity_units, + ) + self.add_output( f"{self.config.commodity}_out", val=0.0, @@ -57,6 +55,8 @@ def setup(self): ) def compute(self, inputs, outputs): - outputs[f"{self.config.commodity}_out"] = ( - inputs[f"{self.config.commodity}_in1"] + inputs[f"{self.config.commodity}_in2"] - ) + total = 0.0 + for key, value in inputs.items(): + if "_in" in key: + total = total + value + outputs[f"{self.config.commodity}_out"] = total diff --git a/h2integrate/transporters/test/test_generic_combiner.py b/h2integrate/transporters/test/test_generic_combiner.py index f95273013..58ff18c45 100644 --- a/h2integrate/transporters/test/test_generic_combiner.py +++ b/h2integrate/transporters/test/test_generic_combiner.py @@ -25,6 +25,20 @@ def combiner_tech_config_electricity(): return elec_combiner_dict +@fixture +def combiner_tech_config_electricity_4_in(): + elec_combiner_dict = { + "model_inputs": { + "performance_parameters": { + "commodity": "electricity", + "commodity_units": "kW", + "in_streams": 4, + } + } + } + return elec_combiner_dict + + @fixture def combiner_tech_config_hydrogen(): h2_combiner_dict = { @@ -115,6 +129,42 @@ def test_generic_combiner_performance_power(plant_config, combiner_tech_config_e assert prob.get_val("electricity_out", units="kW") == approx(electricity_output, rel=1e-5) +def test_generic_combiner_performance_power_4_in( + plant_config, combiner_tech_config_electricity_4_in +): + prob = om.Problem() + comp = GenericCombinerPerformanceModel( + plant_config=plant_config, + tech_config=combiner_tech_config_electricity_4_in, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + ivc = om.IndepVarComp() + ivc.add_output("electricity_in1", val=np.zeros(8760), units="kW") + ivc.add_output("electricity_in2", val=np.zeros(8760), units="kW") + ivc.add_output("electricity_in3", val=np.zeros(8760), units="kW") + ivc.add_output("electricity_in4", val=np.zeros(8760), units="kW") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + + prob.setup() + + electricity_input1 = rng.random(8760) + electricity_input2 = rng.random(8760) + electricity_input3 = rng.random(8760) + electricity_input4 = rng.random(8760) + electricity_output = ( + electricity_input1 + electricity_input2 + electricity_input3 + electricity_input4 + ) + + prob.set_val("electricity_in1", electricity_input1, units="kW") + prob.set_val("electricity_in2", electricity_input2, units="kW") + prob.set_val("electricity_in3", electricity_input3, units="kW") + prob.set_val("electricity_in4", electricity_input4, units="kW") + prob.run_model() + + assert prob.get_val("electricity_out", units="kW") == approx(electricity_output, rel=1e-5) + + def test_generic_combiner_performance_hydrogen(plant_config, combiner_tech_config_hydrogen): prob = om.Problem() comp = GenericCombinerPerformanceModel( From 8f5499bb4ce01aac0862fd76c2cf64efb2e78196 Mon Sep 17 00:00:00 2001 From: Jonathan Martin <94018654+jmartin4nrel@users.noreply.github.com> Date: Tue, 16 Dec 2025 09:22:00 -0700 Subject: [PATCH 77/79] Demonstrating different sizing modes with H2 electrolyzer (#198) * Attempting standalone pem * feedstock_size mode working with profiles * Working all 3 modes * Added demo notebook * Typographical changes in ex 14 doc * Restoring electrolyzer_size_mw_cost name * Updating example post-merge * Renaming for smaller PR * Removing feedstock and product profiles to simplify PR * Defining sizing modes in electrolyzer * Getting modes properly named * Need access to full tech_config * Example working * Solving all the way to pf.solve_price in iterative mode * Notebook updated * Added iterative mode * WIP: working on iterative grouping * Updating tech_configs * Updated to work in H2I 0.4 * Attempting to get all tests passing * Tests be passin * Fixing notebook * Iterative mode 'working' * Updates to make iterative mode work * Minor changes based on chat with Jonathan * Removing whole tech config * Updating new example * Renaming electrolyzer size variable * COBYLA working with one converter... * Removing resize_by_tech * Optimizer running with multiple converters * Co-optimizing successfully * Adding capacity factors * Clarify capacity factors, fix wombat test * Docs, changelog, docstrings * Example number change * Added tests for sizing modes * PR cleanup * Attempting JSONDecodeError fix * Again attempting to fix JSONDecodeError * Fix JSONDecodeError for real this time * Fine I'll make separate config files * Try moving the tests to test_all_examples? * Revert "Try moving the tests to test_all_examples?" This reverts commit bf1d7e3e3b1134e945a39c3a15fc88a9941ddbb6. * Revert "Fine I'll make separate config files" This reverts commit c032aca5fe20807eac193c712de9d55cbca3197a. * Adding solar and wind resource filepaths * Changes for elenya * Added require_connection to profast total commodity inputs * Minor typographical changes to sizing modes docs * Minor changes to the sizing mode setup() * Minor changes to the sizing mode setup() * updated example 22 python script * Changes for John's review * Renaming resize_by_flow to flow_used_for_sizing * Fixed failing finance tests by connecting total commodity produced * Cleaning up example files * Accidentally deleted a "t" * Added IVC for total produced electricity * Updated example number * Resolving example name change * Added back missing files from merge * Moving size_mode to attr * Updated size_modes throughout * Updated ci to run * Made all config classes kw_only * Updated tests after kw_only change * Fixed EAF test * reverted CI branch change * Added docstrings to hydrogen utilities --------- Co-authored-by: John Jasa Co-authored-by: kbrunik <102193481+kbrunik@users.noreply.github.com> Co-authored-by: elenya-grant <116225007+elenya-grant@users.noreply.github.com> --- CHANGELOG.md | 1 + docs/_toc.yml | 1 + .../adding_a_new_technology.md | 4 +- examples/01_onshore_steel_mn/tech_config.yaml | 5 +- examples/02_texas_ammonia/tech_config.yaml | 5 +- .../co2_hydrogenation/tech_config_co2h.yaml | 5 +- .../tech_config_co2h.yaml | 5 +- examples/05_wind_h2_opt/tech_config.yaml | 5 +- .../user_defined_model/paper_mill.py | 4 +- .../08_wind_electrolyzer/tech_config.yaml | 5 +- .../user_finance_model/simple_lco.py | 2 +- examples/10_electrolyzer_om/tech_config.yaml | 5 +- examples/12_ammonia_synloop/tech_config.yaml | 6 +- .../inputs/tech_config.yaml | 5 +- .../tech_config.yaml | 5 +- .../17_splitter_wind_doc_h2/tech_config.yaml | 5 +- .../run_csv_doe.ipynb | 9 +- .../tech_config.yaml | 5 +- examples/25_sizing_modes/driver_config.yaml | 39 + examples/25_sizing_modes/plant_config.yaml | 69 + examples/25_sizing_modes/run_size_modes.ipynb | 735 ++ examples/25_sizing_modes/tech_config.yaml | 88 + .../ATB2024_6MW_170RD_floris_turbine.yaml | 167 + .../tech_inputs/floris_input_lbw_6MW.yaml | 673 ++ .../tech_inputs/hopp_config_tx.yaml | 228 + .../solar/32.31714_-100.18_psmv3_60_2013.csv | 8763 ++++++++++++++++ ...00.18_windtoolkit_2013_60min_100m_120m.srw | 8765 +++++++++++++++++ .../control_rules/pyomo_rule_baseclass.py | 2 +- .../flexible_demand_openloop_controller.py | 2 +- .../demand_openloop_controller.py | 2 +- .../passthrough_openloop_controller.py | 2 +- .../control_strategies/pyomo_controllers.py | 4 +- .../storage/demand_openloop_controller.py | 2 +- .../converters/ammonia/ammonia_synloop.py | 76 +- .../ammonia/simple_ammonia_model.py | 4 +- .../test/test_ammonia_synloop_model.py | 44 + .../co2/marine/direct_ocean_capture.py | 4 +- .../marine/marine_carbon_capture_baseclass.py | 2 +- .../marine/ocean_alkalinity_enhancement.py | 4 +- h2integrate/converters/grid/grid.py | 4 +- .../converters/hydrogen/basic_cost_model.py | 2 +- .../custom_electrolyzer_cost_model.py | 2 +- .../hydrogen/electrolyzer_baseclass.py | 13 +- .../geologic/h2_well_subsurface_baseclass.py | 4 +- .../hydrogen/geologic/mathur_modified.py | 2 +- .../hydrogen/geologic/simple_natural_geoh2.py | 2 +- .../geologic/templeton_serpentinization.py | 2 +- .../converters/hydrogen/pem_electrolyzer.py | 63 +- .../hydrogen/singlitico_cost_model.py | 2 +- .../hydrogen/test/test_size_modes.py | 78 + .../hydrogen/test/test_wombat_model.py | 12 +- h2integrate/converters/hydrogen/utilities.py | 86 + .../converters/hydrogen/wombat_model.py | 4 +- h2integrate/converters/iron/iron.py | 14 +- h2integrate/converters/iron/iron_mine.py | 10 +- h2integrate/converters/iron/iron_plant.py | 8 +- h2integrate/converters/iron/iron_transport.py | 4 +- h2integrate/converters/iron/iron_wrapper.py | 2 +- .../converters/iron/martin_mine_cost_model.py | 2 +- .../converters/iron/martin_mine_perf_model.py | 2 +- .../old_input/h2integrate_config_modular.yaml | 5 +- .../methanol/co2h_methanol_plant.py | 4 +- .../converters/methanol/methanol_baseclass.py | 6 +- .../converters/methanol/smr_methanol_plant.py | 4 +- .../natural_gas/natural_gas_cc_ct.py | 4 +- h2integrate/converters/nitrogen/simple_ASU.py | 4 +- .../converters/solar/atb_res_com_pv_cost.py | 2 +- .../converters/solar/atb_utility_pv_cost.py | 2 +- h2integrate/converters/solar/solar_pysam.py | 2 +- .../converters/steel/electric_arc_furnance.py | 8 +- h2integrate/converters/steel/steel.py | 4 +- .../converters/water/desal/desalination.py | 4 +- .../water_power/hydro_plant_run_of_river.py | 4 +- h2integrate/converters/wind/atb_wind_cost.py | 2 +- .../wind/layout/simple_grid_layout.py | 2 +- h2integrate/converters/wind/wind_pysam.py | 4 +- h2integrate/core/feedstocks.py | 4 +- h2integrate/core/h2integrate_model.py | 22 +- h2integrate/core/model_baseclasses.py | 67 + h2integrate/core/utilities.py | 28 +- h2integrate/finances/numpy_financial_npv.py | 2 +- h2integrate/finances/profast_base.py | 19 +- h2integrate/finances/test/test_finances.py | 16 +- .../finances/test/test_profast_finance.py | 12 +- h2integrate/finances/test/test_profast_npv.py | 23 +- h2integrate/resource/resource_base.py | 2 +- h2integrate/resource/river.py | 2 +- .../solar/nrel_developer_goes_api_models.py | 8 +- .../nrel_developer_himawari_api_models.py | 6 +- ...eveloper_meteosat_prime_meridian_models.py | 4 +- .../resource/wind/nrel_developer_wtk_api.py | 2 +- h2integrate/resource/wind/openmeteo_wind.py | 2 +- .../storage/battery/atb_battery_cost.py | 2 +- h2integrate/storage/battery/pysam_battery.py | 2 +- h2integrate/storage/generic_storage_cost.py | 2 +- .../storage/hydrogen/h2_storage_cost.py | 2 +- h2integrate/storage/hydrogen/mch_storage.py | 2 +- .../storage/hydrogen/tank_baseclass.py | 2 +- h2integrate/storage/simple_generic_storage.py | 2 +- .../storage/simple_storage_auto_sizing.py | 2 +- h2integrate/tools/test/test_inputs.csv | 1 - h2integrate/transporters/cable.py | 4 +- h2integrate/transporters/generic_combiner.py | 2 +- h2integrate/transporters/generic_splitter.py | 2 +- h2integrate/transporters/generic_summer.py | 2 +- h2integrate/transporters/pipe.py | 4 +- .../input/h2integrate_config_modular.yaml | 5 +- 107 files changed, 20137 insertions(+), 254 deletions(-) create mode 100644 examples/25_sizing_modes/driver_config.yaml create mode 100644 examples/25_sizing_modes/plant_config.yaml create mode 100644 examples/25_sizing_modes/run_size_modes.ipynb create mode 100644 examples/25_sizing_modes/tech_config.yaml create mode 100644 examples/25_sizing_modes/tech_inputs/ATB2024_6MW_170RD_floris_turbine.yaml create mode 100644 examples/25_sizing_modes/tech_inputs/floris_input_lbw_6MW.yaml create mode 100644 examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml create mode 100644 examples/25_sizing_modes/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv create mode 100644 examples/25_sizing_modes/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw create mode 100644 h2integrate/converters/hydrogen/test/test_size_modes.py create mode 100644 h2integrate/converters/hydrogen/utilities.py diff --git a/CHANGELOG.md b/CHANGELOG.md index aee0f11f4..bd1692258 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ - Added storage auto-sizing performance model based on storage sizing calculations that existed in the coupled hydrogen storage performance and cost model - Added ability for latitude and longitude to be design variables in design sweep - Move geologic hydrogen models into specific geoh2 subsurface converters +- Enabled dynamic plant component sizing modes through the resizeable model class `ResizeablePerformanceModelBaseClass`. - Added standalone iron mine performance and cost model - Added solar resource models for Meteosat Prime Meridian and Himawari datasets available through NSRDB - Improved readability of the postprocessing printout by simplifying numerical representation, especially for years diff --git a/docs/_toc.yml b/docs/_toc.yml index 1f79d32b4..de35982ed 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -21,6 +21,7 @@ parts: - file: user_guide/recording_and_loading_data - file: user_guide/how_to_interface_with_user_defined_model - file: user_guide/how_to_run_several_cases_in_sequence + - file: ../examples/25_sizing_modes/run_size_modes - caption: Technology Models chapters: diff --git a/docs/developer_guide/adding_a_new_technology.md b/docs/developer_guide/adding_a_new_technology.md index 053c2e821..c92c15428 100644 --- a/docs/developer_guide/adding_a_new_technology.md +++ b/docs/developer_guide/adding_a_new_technology.md @@ -81,7 +81,7 @@ from h2integrate.core.validators import gt_zero, contains, must_equal from h2integrate.core.model_base import CostModelBaseConfig, CostModelBaseClass # make a cost config input to get user-provided inputs that won't be passed from other models -@define +@define(kw_only=True) class ReverseOsmosisCostModelConfig(BaseConfig): # the config variables for the cost model would be provided in the tech_config[tech]['model_inputs']['cost_parameters'] or tech_config[tech]['model_inputs']['shared_parameters'] freshwater_kg_per_hour: float = field(validator=gt_zero) @@ -123,7 +123,7 @@ from h2integrate.core.utilities import BaseConfig, CostModelBaseConfig, merge_sh from h2integrate.core.validators import gt_zero, contains from h2integrate.core.model_base import CostModelBaseConfig, CostModelBaseClass -@define +@define(kw_only=True) class ATBUtilityPVCostModelConfig(CostModelBaseConfig): capex_per_kWac: float | int = field(validator=gt_zero) opex_per_kWac_per_year: float | int = field(validator=gt_zero) diff --git a/examples/01_onshore_steel_mn/tech_config.yaml b/examples/01_onshore_steel_mn/tech_config.yaml index 4be21380b..8f15f731a 100644 --- a/examples/01_onshore_steel_mn/tech_config.yaml +++ b/examples/01_onshore_steel_mn/tech_config.yaml @@ -23,10 +23,7 @@ technologies: electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 18 cluster_rating_MW: 40 eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol diff --git a/examples/02_texas_ammonia/tech_config.yaml b/examples/02_texas_ammonia/tech_config.yaml index 76eb972fc..d0108c799 100644 --- a/examples/02_texas_ammonia/tech_config.yaml +++ b/examples/02_texas_ammonia/tech_config.yaml @@ -23,10 +23,7 @@ technologies: electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 16 cluster_rating_MW: 40 eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol diff --git a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml index 43158f3ef..9f51d2356 100644 --- a/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation/tech_config_co2h.yaml @@ -22,10 +22,7 @@ technologies: location: "onshore" electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 4 cluster_rating_MW: 39 eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 2f3573552..ba52bc7ca 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -30,10 +30,7 @@ technologies: location: "onshore" electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 4 cluster_rating_MW: 40 eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol diff --git a/examples/05_wind_h2_opt/tech_config.yaml b/examples/05_wind_h2_opt/tech_config.yaml index 17625aef9..6ac141762 100644 --- a/examples/05_wind_h2_opt/tech_config.yaml +++ b/examples/05_wind_h2_opt/tech_config.yaml @@ -39,10 +39,7 @@ technologies: location: "onshore" electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" cluster_rating_MW: 20 n_clusters: 25 eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol diff --git a/examples/06_custom_tech/user_defined_model/paper_mill.py b/examples/06_custom_tech/user_defined_model/paper_mill.py index b388a3fd3..54646aff6 100644 --- a/examples/06_custom_tech/user_defined_model/paper_mill.py +++ b/examples/06_custom_tech/user_defined_model/paper_mill.py @@ -10,7 +10,7 @@ n_timesteps = 8760 -@define +@define(kw_only=True) class PaperMillConfig(BaseConfig): electricity_usage_rate: float = field() @@ -45,7 +45,7 @@ def compute(self, inputs, outputs): outputs["paper"] = inputs["electricity_in"] * self.config.electricity_usage_rate -@define +@define(kw_only=True) class PaperMillCostConfig(CostModelBaseConfig): cost_per_tonne: float = field() opex_rate: float = field() diff --git a/examples/08_wind_electrolyzer/tech_config.yaml b/examples/08_wind_electrolyzer/tech_config.yaml index e74dba46a..5c3f0813c 100644 --- a/examples/08_wind_electrolyzer/tech_config.yaml +++ b/examples/08_wind_electrolyzer/tech_config.yaml @@ -40,10 +40,7 @@ technologies: electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 13 #should be 12.5 to get 500 MW cluster_rating_MW: 40 eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol diff --git a/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py b/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py index d255cb2fb..e2e8cfe7e 100644 --- a/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py +++ b/examples/08_wind_electrolyzer/user_finance_model/simple_lco.py @@ -6,7 +6,7 @@ from h2integrate.core.validators import gt_zero, range_val -@define +@define(kw_only=True) class SimpleLCOFinanceConfig(BaseConfig): discount_rate: float = field(validator=range_val(0, 1)) plant_life: int = field(converter=int, validator=gt_zero) diff --git a/examples/10_electrolyzer_om/tech_config.yaml b/examples/10_electrolyzer_om/tech_config.yaml index 238cfc356..5c70f048d 100644 --- a/examples/10_electrolyzer_om/tech_config.yaml +++ b/examples/10_electrolyzer_om/tech_config.yaml @@ -38,10 +38,7 @@ technologies: shared_parameters: location: "onshore" electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 1 cluster_rating_MW: 40 eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol diff --git a/examples/12_ammonia_synloop/tech_config.yaml b/examples/12_ammonia_synloop/tech_config.yaml index 5fcb1f4a2..3048f5c1f 100644 --- a/examples/12_ammonia_synloop/tech_config.yaml +++ b/examples/12_ammonia_synloop/tech_config.yaml @@ -23,10 +23,7 @@ technologies: electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 16 cluster_rating_MW: 40 eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol @@ -66,6 +63,7 @@ technologies: catalyst_consumption_rate: 0.000091295354067341 catalyst_replacement_interval: 3 performance_parameters: + size_mode: "normal" capacity_factor: 0.9 energy_demand: 0.530645243 heat_output: 0.8299956 diff --git a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml index c8af0c941..0399f13bd 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml @@ -39,10 +39,7 @@ technologies: location: "onshore" electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 18 cluster_rating_MW: 40 eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol diff --git a/examples/15_wind_solar_electrolyzer/tech_config.yaml b/examples/15_wind_solar_electrolyzer/tech_config.yaml index f955555be..d49b5d39e 100644 --- a/examples/15_wind_solar_electrolyzer/tech_config.yaml +++ b/examples/15_wind_solar_electrolyzer/tech_config.yaml @@ -75,10 +75,7 @@ technologies: electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 18 cluster_rating_MW: 40 eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol diff --git a/examples/17_splitter_wind_doc_h2/tech_config.yaml b/examples/17_splitter_wind_doc_h2/tech_config.yaml index d518934ec..e6ef5af6f 100644 --- a/examples/17_splitter_wind_doc_h2/tech_config.yaml +++ b/examples/17_splitter_wind_doc_h2/tech_config.yaml @@ -62,10 +62,7 @@ technologies: electrolyzer_capex: 250 # $/kW overnight installed capital costs for a 1 MW system in 2022 performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 4 #should be 12.5 to get 500 MW cluster_rating_MW: 20 eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol diff --git a/examples/20_solar_electrolyzer_doe/run_csv_doe.ipynb b/examples/20_solar_electrolyzer_doe/run_csv_doe.ipynb index b7fadf922..38de1576f 100644 --- a/examples/20_solar_electrolyzer_doe/run_csv_doe.ipynb +++ b/examples/20_solar_electrolyzer_doe/run_csv_doe.ipynb @@ -361,7 +361,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3.11.13 ('h2i_env')", + "display_name": "h2i-fork", "language": "python", "name": "python3" }, @@ -377,12 +377,7 @@ "pygments_lexer": "ipython3", "version": "3.11.13" }, - "orig_nbformat": 4, - "vscode": { - "interpreter": { - "hash": "e55566d5f9cb5003b92ad1d2254e8146f3d62519cfa868f35d73d51fb57327c6" - } - } + "orig_nbformat": 4 }, "nbformat": 4, "nbformat_minor": 2 diff --git a/examples/20_solar_electrolyzer_doe/tech_config.yaml b/examples/20_solar_electrolyzer_doe/tech_config.yaml index 4289076c3..04b841133 100644 --- a/examples/20_solar_electrolyzer_doe/tech_config.yaml +++ b/examples/20_solar_electrolyzer_doe/tech_config.yaml @@ -36,10 +36,7 @@ technologies: model: "custom_electrolyzer_cost" model_inputs: performance_parameters: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" n_clusters: 18 cluster_rating_MW: 10 eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol diff --git a/examples/25_sizing_modes/driver_config.yaml b/examples/25_sizing_modes/driver_config.yaml new file mode 100644 index 000000000..0dddecc96 --- /dev/null +++ b/examples/25_sizing_modes/driver_config.yaml @@ -0,0 +1,39 @@ +name: "driver_config" +description: "This analysis runs a hybrid plant to match the first example in H2Integrate" + +general: + folder_output: outputs + + +driver: + optimization: + flag: False + solver: COBYLA + tol: 0.01 + catol: 15000 + max_iter: 100 + rhobeg: 0.1 + debug_print: True + +design_variables: + electrolyzer: + max_feedstock_ratio: + flag: False + lower: 0.1 + upper: 10. + units: unitless + ammonia: + max_feedstock_ratio: + flag: False + lower: 0.1 + upper: 10. + units: unitless + +objective: + name: finance_subgroup_nh3.LCOA + +recorder: + flag: False + file: "size_mode_example.sql" + includes: ["*"] + excludes: ["wind_resource.wind_resource_data"] diff --git a/examples/25_sizing_modes/plant_config.yaml b/examples/25_sizing_modes/plant_config.yaml new file mode 100644 index 000000000..49f72d1f8 --- /dev/null +++ b/examples/25_sizing_modes/plant_config.yaml @@ -0,0 +1,69 @@ +name: "plant_config" +description: "This plant is located in MN, USA..." + +site: + latitude: 47.5233 + longitude: -92.5366 + + # array of polygons defining boundaries with x/y coords + boundaries: [ + { + x: [0.0, 1000.0, 1000.0, 0.0], + y: [0.0, 0.0, 100.0, 1000.0], + }, + { + x: [2000.0, 2500.0, 2000.0], + y: [2000.0, 2000.0, 2500.0], + } + ] + +# array of arrays containing left-to-right technology +# interconnections; can support bidirectional connections +# with the reverse definition. +# this will naturally grow as we mature the interconnected tech +technology_interconnections: [ + ["hopp","electrolyzer","electricity","cable"], + ["electrolyzer", "ammonia", "hydrogen", "pipe"], +] + +plant: + plant_life: 30 + grid_connection: False # option, can be turned on or off + ppa_price: 0.025 # $/kWh based on 2022 land based wind market report (ERCOT area ppa prices) https://www.energy.gov/sites/default/files/2022-08/land_based_wind_market_report_2202.pdf + hybrid_electricity_estimated_cf: 0.492 #should equal 1 if grid_connection = True + financial_analysis_start_year: 2032 + cost_year: 2022 + +finance_parameters: + finance_groups: + finance_model: "ProFastComp" + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for real analysis + discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: "Revolving debt" # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: "MACRS" # can be "MACRS" or "Straight line" + depr_period: 7 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + target_dollar_year: 2022 + finance_subgroups: + h2: + commodity: "hydrogen" + technologies: ["hopp", "electrolyzer"] + nh3: + commodity: "ammonia" + technologies: ["hopp", "electrolyzer", "ammonia"] diff --git a/examples/25_sizing_modes/run_size_modes.ipynb b/examples/25_sizing_modes/run_size_modes.ipynb new file mode 100644 index 000000000..94897ed44 --- /dev/null +++ b/examples/25_sizing_modes/run_size_modes.ipynb @@ -0,0 +1,735 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "ee08c4f9", + "metadata": {}, + "source": [ + "# Sizing Modes with Resizeable Converters\n", + "\n", + "When the size of one converter is changed, it may be desirable to have other converters in the plant resized to match.\n", + "This can be done manually by setting the sizes of each converter in the `tech_config`, but it can also be done automatically with resizeable converters.\n", + "Resizeable converters can execute their own built-in sizing methods based on how much of a feedstock can be produced upstream, or how much of a commodity can be offtaken downstream by other converters.\n", + "By connecting the capacities of converters to other converters, one can build a logical re-sizing scheme for a multi-technology plant that will resize all converters by changing just one config parameter.\n", + "\n", + "## Setting up a resizeable converter\n", + "\n", + "To set up a resizeable converter, use `ResizeablePerformanceModelBaseConfig` and `ResizeablePerformanceModelBaseClass`.\n", + "The `ResizeablePerformanceModelBaseConfig` will declare sizing performance parameters (size_mode, flow_used_for_sizing, max_feedstock_ratio, max_commodity_ratio) within the tech_config.\n", + "The `ResizeablePerformanceModelBaseClass` will automatically parse these parameters into the `inputs` and `discrete_inputs` that the performance model will need for resizing.\n", + "Here is the start of an example `tech_config` for such a converter:" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "67b32b84", + "metadata": {}, + "outputs": [], + "source": [ + "tech_config = {\n", + " \"model_inputs\": {\n", + " \"shared_parameters\": {\n", + " \"production_capacity\": 1000.0,\n", + " },\n", + " \"performance_parameters\": {\n", + " \"size_mode\": \"normal\", # Always required\n", + " \"flow_used_for_sizing\": \"electricity\", # Not required in \"normal\" mode\n", + " \"max_feedstock_ratio\": 1.6, # Only used in \"resize_by_max_feedstock\"\n", + " \"max_commodity_ratio\": 0.7, # Only used in \"resize_by_max_commodity\"\n", + " },\n", + " }\n", + "}" + ] + }, + { + "cell_type": "markdown", + "id": "0d33c32e", + "metadata": {}, + "source": [ + "Currently, there are three different modes defined for `size_mode`:\n", + "\n", + "- `normal`: In this mode, converters function as they always have previously:\n", + " - The size of the asset is fixed within `compute()`.\n", + "- `resize_by_max_feedstock`: In this mode, the size of the converter is adjusted to be able to utilize all of the available feedstock:\n", + " - The size of the asset should be calculated within `compute()` as a function of the maximum value of `_in` - with the `` specified by the `flow_used_for_sizing` parameter.\n", + " - This function will utilizes the `max_feedstock_ratio` parameter - e.g., if `max_feedstock_ratio` is 1.6, the converter will be resized so that its input capacity is 1.6 times the max of `_in`.\n", + " - The `set_val` method will over-write any previous sizing variables to reflect the adjusted size of the converter.\n", + "- `resize_by_max_commodity`: In this mode, the size of the asset is adjusted to be able to supply its product to the full capacity of another downstream converter:\n", + " - The size of the asset should be calculated within `compute()` as a function of the `max__capacity` input - with the `` specified by the `resize by flow` parameter.\n", + " - This function will utilizes the `max_commodity_ratio` parameter - e.g., if `max_commodity_ratio` is 0.7, the converter will be resized so that its output capacity is 0.7 times a connected `max__capacity` input.\n", + " - The `set_val` method will over-write any previous sizing variables to reflect the adjusted size of the converter.\n", + " \n", + "To construct a resizeable converter from an existing converter, very few changes must be made, and only to the performance model.\n", + "`ResizeablePerformanceModelBaseConfig` can replace `BaseConfig` and `ResizeablePerformanceModelBaseClass` can replace `om.ExplicitComponent`.\n", + "The setup function must be modified to include any `max__capacity` outputs or `max__capacity` inputs that can be connected to do the resizing. \n", + "Then, any `feedstock_sizing_function` or `feedstock_sizing_function` that the converter needs to resize itself should be defined, if not already." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "6bca0246", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "from h2integrate.core.utilities import ResizeablePerformanceModelBaseConfig, merge_shared_inputs\n", + "from h2integrate.core.model_baseclasses import ResizeablePerformanceModelBaseClass\n", + "\n", + "\n", + "class TechPerformanceModelConfig(ResizeablePerformanceModelBaseConfig):\n", + " # Declare tech-specific config parameters\n", + " size: float = 1.0\n", + "\n", + "\n", + "class TechPerformanceModel(ResizeablePerformanceModelBaseClass):\n", + " def setup(self):\n", + " self.config = TechPerformanceModelConfig.from_dict(\n", + " merge_shared_inputs(self.options[\"tech_config\"][\"model_inputs\"], \"performance\"),\n", + " strict=False,\n", + " )\n", + " super().setup()\n", + "\n", + " # Declare tech-specific inputs and outputs\n", + " self.add_input(\"size\", val=self.config.size, units=\"unitless\")\n", + " # Declare any commodities produced that need to be connected to downstream converters\n", + " # if this converter is in `resize_by_max_commodity` mode\n", + " self.add_input(\"max__capacity\", val=1000.0, units=\"kg/h\")\n", + " # Any feedstocks consumed that need to be connected to upstream converters\n", + " # if those converters are in `resize_by_max_commodity` mode\n", + " self.add_output(\"max__capacity\", val=1000.0, units=\"kg/h\")\n", + "\n", + " def feedstock_sizing_function(max_feedstock):\n", + " max_feedstock * 0.1231289 # random number for example\n", + "\n", + " def commodity_sizing_function(max_commodity):\n", + " max_commodity * 0.4651 # random number for example\n", + "\n", + " def compute(self, inputs, outputs, discrete_inputs, discrete_outputs):\n", + " size_mode = discrete_inputs[\"size_mode\"]\n", + "\n", + " # Make changes to computation based on sizing_mode:\n", + " if size_mode != \"normal\":\n", + " size = inputs[\"size\"]\n", + " if size_mode == \"resize_by_max_feedstock\":\n", + " if inputs[\"flow_used_for_sizing\"] == \"\":\n", + " feed_ratio = inputs[\"max_feedstock_ratio\"]\n", + " size_for_max_feed = self.feedstock_sizing_function(\n", + " np.max(inputs[\"_in\"])\n", + " )\n", + " size = size_for_max_feed * feed_ratio\n", + " elif size_mode == \"resize_by_max_commodity\":\n", + " if inputs[\"flow_used_for_sizing\"] == \"\":\n", + " comm_ratio = inputs[\"max_commodity_ratio\"]\n", + " size_for_max_comm = self.commodity_sizing_function(\n", + " np.max(inputs[\"max__capacity\"])\n", + " )\n", + " size = size_for_max_comm * comm_ratio\n", + " self.set_val(\"size\", size)" + ] + }, + { + "cell_type": "markdown", + "id": "665e9607", + "metadata": {}, + "source": [ + "\n", + "## Example plant setup\n", + "\n", + "Here, there are three technologies in the the `tech_config.yaml`:\n", + "1. A `hopp` plant producing electricity,\n", + "2. An `electrolyzer` producing hydrogen from that electricity, and\n", + "3. An `ammonia` plant producing ammonia from that hydrogen.\n", + "\n", + "The electrolyzer and ammonia technologies are resizeable. For starters, we will set them up in `\"normal\"` mode\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a79029a8", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "XDSM diagram written to connections_xdsm.pdf\n", + "electrolyzer: normal\n", + "ammonia: normal\n" + ] + } + ], + "source": [ + "from h2integrate.core.h2integrate_model import H2IntegrateModel\n", + "from h2integrate.core.inputs.validation import load_tech_yaml, load_driver_yaml, load_plant_yaml\n", + "\n", + "\n", + "# Create a H2Integrate model\n", + "driver_config = load_driver_yaml(\"driver_config.yaml\")\n", + "plant_config = load_plant_yaml(\"plant_config.yaml\")\n", + "tech_config = load_tech_yaml(\"tech_config.yaml\")\n", + "input_config = {\n", + " \"name\": \"H2Integrate_config\",\n", + " \"system_summary\": \"hybrid plant containing ammonia plant and electrolyzer\",\n", + " \"driver_config\": driver_config,\n", + " \"plant_config\": plant_config,\n", + " \"technology_config\": tech_config,\n", + "}\n", + "model = H2IntegrateModel(input_config)\n", + "\n", + "# Print the value of the size_mode tech_config parameters\n", + "for tech in [\"electrolyzer\", \"ammonia\"]:\n", + " print(\n", + " tech\n", + " + \": \"\n", + " + str(\n", + " model.technology_config[\"technologies\"][tech][\"model_inputs\"][\"performance_parameters\"][\n", + " \"size_mode\"\n", + " ]\n", + " )\n", + " )" + ] + }, + { + "cell_type": "markdown", + "id": "5b88d3b1", + "metadata": {}, + "source": [ + "\n", + "\n", + "The `technology_interconnections` in the `plant_config` is set up to send electricity from the wind plant to the electrolyzer, then hydrogen from the electrolyzer to the ammonia plant. When set up to run in `resize_by_max_commodity` mode, there will also be an entry to send the `max_hydrogen_capacity` from the ammonia plant to the electrolyzer. Note: this will create a feedback loop within the OpenMDAO problem, which requires an iterative solver. \n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "8ddb8b90", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['hopp', 'electrolyzer', 'electricity', 'cable']\n", + "['electrolyzer', 'ammonia', 'hydrogen', 'pipe']\n" + ] + } + ], + "source": [ + "for connection in model.plant_config[\"technology_interconnections\"]:\n", + " print(connection)" + ] + }, + { + "cell_type": "markdown", + "id": "6722450b", + "metadata": {}, + "source": [ + "When we run this example the electrolyzer is sized to 640 MW (as set by the config), although the electricity profile going in has a max of over 1000 MW.\n", + "The LCOH is $4.49/kg H2 and the LCOA is $1.35/kg NH3." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "f22dd04e", + "metadata": {}, + "outputs": [ + { + "ename": "AttributeError", + "evalue": "The class definition for ECOElectrolyzerPerformanceModelConfig is missing the following inputs: ['sizing']", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mAttributeError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[5]\u001b[39m\u001b[32m, line 2\u001b[39m\n\u001b[32m 1\u001b[39m \u001b[38;5;66;03m# Run the model\u001b[39;00m\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m model.run()\n\u001b[32m 4\u001b[39m \u001b[38;5;66;03m# Print selected output\u001b[39;00m\n\u001b[32m 5\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m value \u001b[38;5;129;01min\u001b[39;00m [\n\u001b[32m 6\u001b[39m \u001b[33m\"\u001b[39m\u001b[33melectrolyzer.electricity_in\u001b[39m\u001b[33m\"\u001b[39m,\n\u001b[32m 7\u001b[39m \u001b[33m\"\u001b[39m\u001b[33melectrolyzer.electrolyzer_size_mw\u001b[39m\u001b[33m\"\u001b[39m,\n\u001b[32m (...)\u001b[39m\u001b[32m 13\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mfinance_subgroup_nh3.LCOA\u001b[39m\u001b[33m\"\u001b[39m,\n\u001b[32m 14\u001b[39m ]:\n", + "\u001b[36mFile \u001b[39m\u001b[32m~\\Documents\\git\\H2Integrate\\h2integrate\\core\\h2integrate_model.py:1194\u001b[39m, in \u001b[36mH2IntegrateModel.run\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 1190\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mrun\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[32m 1191\u001b[39m \u001b[38;5;66;03m# do model setup based on the driver config\u001b[39;00m\n\u001b[32m 1192\u001b[39m \u001b[38;5;66;03m# might add a recorder, driver, set solver tolerances, etc\u001b[39;00m\n\u001b[32m 1193\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m.setup_has_been_called:\n\u001b[32m-> \u001b[39m\u001b[32m1194\u001b[39m \u001b[38;5;28mself\u001b[39m.prob.setup()\n\u001b[32m 1195\u001b[39m \u001b[38;5;28mself\u001b[39m.setup_has_been_called = \u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[32m 1197\u001b[39m \u001b[38;5;28mself\u001b[39m.prob.run_driver()\n", + "\u001b[36mFile \u001b[39m\u001b[32m~\\Documents\\git\\OpenMDAO\\openmdao\\core\\problem.py:1163\u001b[39m, in \u001b[36mProblem.setup\u001b[39m\u001b[34m(self, check, logger, mode, force_alloc_complex, distributed_vector_class, local_vector_class, derivatives, parent)\u001b[39m\n\u001b[32m 1160\u001b[39m \u001b[38;5;28mself\u001b[39m._metadata[\u001b[33m'\u001b[39m\u001b[33mreports_dir\u001b[39m\u001b[33m'\u001b[39m] = \u001b[38;5;28mself\u001b[39m.get_reports_dir()\n\u001b[32m 1162\u001b[39m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[32m-> \u001b[39m\u001b[32m1163\u001b[39m model._setup(model_comm, \u001b[38;5;28mself\u001b[39m._metadata)\n\u001b[32m 1164\u001b[39m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[32m 1165\u001b[39m \u001b[38;5;66;03m# whenever we're outside of model._setup, static mode should be True so that anything\u001b[39;00m\n\u001b[32m 1166\u001b[39m \u001b[38;5;66;03m# added outside of _setup will persist.\u001b[39;00m\n\u001b[32m 1167\u001b[39m \u001b[38;5;28mself\u001b[39m._metadata[\u001b[33m'\u001b[39m\u001b[33mstatic_mode\u001b[39m\u001b[33m'\u001b[39m] = \u001b[38;5;28;01mTrue\u001b[39;00m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~\\Documents\\git\\OpenMDAO\\openmdao\\core\\group.py:830\u001b[39m, in \u001b[36mGroup._setup\u001b[39m\u001b[34m(self, comm, prob_meta)\u001b[39m\n\u001b[32m 827\u001b[39m \u001b[38;5;28mself\u001b[39m._post_components = \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[32m 829\u001b[39m \u001b[38;5;66;03m# Besides setting up the processors, this method also builds the model hierarchy.\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m830\u001b[39m \u001b[38;5;28mself\u001b[39m._setup_procs(\u001b[38;5;28mself\u001b[39m.pathname, comm, prob_meta)\n\u001b[32m 832\u001b[39m prob_meta[\u001b[33m'\u001b[39m\u001b[33mconfig_info\u001b[39m\u001b[33m'\u001b[39m] = _ConfigInfo()\n\u001b[32m 834\u001b[39m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[32m 835\u001b[39m \u001b[38;5;66;03m# Recurse model from the bottom to the top for configuring.\u001b[39;00m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~\\Documents\\git\\OpenMDAO\\openmdao\\core\\group.py:701\u001b[39m, in \u001b[36mGroup._setup_procs\u001b[39m\u001b[34m(self, pathname, comm, prob_meta)\u001b[39m\n\u001b[32m 699\u001b[39m \u001b[38;5;66;03m# Perform recursion\u001b[39;00m\n\u001b[32m 700\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m subsys \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m._subsystems_myproc:\n\u001b[32m--> \u001b[39m\u001b[32m701\u001b[39m subsys._setup_procs(subsys.pathname, sub_comm, prob_meta)\n\u001b[32m 703\u001b[39m \u001b[38;5;66;03m# build a list of local subgroups to speed up later loops\u001b[39;00m\n\u001b[32m 704\u001b[39m \u001b[38;5;28mself\u001b[39m._subgroups_myproc = [s \u001b[38;5;28;01mfor\u001b[39;00m s \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m._subsystems_myproc \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(s, Group)]\n", + "\u001b[36mFile \u001b[39m\u001b[32m~\\Documents\\git\\OpenMDAO\\openmdao\\core\\group.py:701\u001b[39m, in \u001b[36mGroup._setup_procs\u001b[39m\u001b[34m(self, pathname, comm, prob_meta)\u001b[39m\n\u001b[32m 699\u001b[39m \u001b[38;5;66;03m# Perform recursion\u001b[39;00m\n\u001b[32m 700\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m subsys \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m._subsystems_myproc:\n\u001b[32m--> \u001b[39m\u001b[32m701\u001b[39m subsys._setup_procs(subsys.pathname, sub_comm, prob_meta)\n\u001b[32m 703\u001b[39m \u001b[38;5;66;03m# build a list of local subgroups to speed up later loops\u001b[39;00m\n\u001b[32m 704\u001b[39m \u001b[38;5;28mself\u001b[39m._subgroups_myproc = [s \u001b[38;5;28;01mfor\u001b[39;00m s \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m._subsystems_myproc \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(s, Group)]\n", + "\u001b[36mFile \u001b[39m\u001b[32m~\\Documents\\git\\OpenMDAO\\openmdao\\core\\group.py:701\u001b[39m, in \u001b[36mGroup._setup_procs\u001b[39m\u001b[34m(self, pathname, comm, prob_meta)\u001b[39m\n\u001b[32m 699\u001b[39m \u001b[38;5;66;03m# Perform recursion\u001b[39;00m\n\u001b[32m 700\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m subsys \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m._subsystems_myproc:\n\u001b[32m--> \u001b[39m\u001b[32m701\u001b[39m subsys._setup_procs(subsys.pathname, sub_comm, prob_meta)\n\u001b[32m 703\u001b[39m \u001b[38;5;66;03m# build a list of local subgroups to speed up later loops\u001b[39;00m\n\u001b[32m 704\u001b[39m \u001b[38;5;28mself\u001b[39m._subgroups_myproc = [s \u001b[38;5;28;01mfor\u001b[39;00m s \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mself\u001b[39m._subsystems_myproc \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(s, Group)]\n", + "\u001b[36mFile \u001b[39m\u001b[32m~\\Documents\\git\\OpenMDAO\\openmdao\\core\\component.py:238\u001b[39m, in \u001b[36mComponent._setup_procs\u001b[39m\u001b[34m(self, pathname, comm, prob_meta)\u001b[39m\n\u001b[32m 235\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m io \u001b[38;5;129;01min\u001b[39;00m [\u001b[33m'\u001b[39m\u001b[33minput\u001b[39m\u001b[33m'\u001b[39m, \u001b[33m'\u001b[39m\u001b[33moutput\u001b[39m\u001b[33m'\u001b[39m]:\n\u001b[32m 236\u001b[39m \u001b[38;5;28mself\u001b[39m._var_rel_names[io].extend(\u001b[38;5;28mself\u001b[39m._static_var_rel_names[io])\n\u001b[32m--> \u001b[39m\u001b[32m238\u001b[39m \u001b[38;5;28mself\u001b[39m.setup()\n\u001b[32m 239\u001b[39m \u001b[38;5;28mself\u001b[39m._setup_check()\n\u001b[32m 241\u001b[39m \u001b[38;5;28mself\u001b[39m._set_vector_class()\n", + "\u001b[36mFile \u001b[39m\u001b[32m~\\Documents\\git\\H2Integrate\\h2integrate\\converters\\hydrogen\\pem_electrolyzer.py:53\u001b[39m, in \u001b[36mECOElectrolyzerPerformanceModel.setup\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 52\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34msetup\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[32m---> \u001b[39m\u001b[32m53\u001b[39m \u001b[38;5;28mself\u001b[39m.config = ECOElectrolyzerPerformanceModelConfig.from_dict(\n\u001b[32m 54\u001b[39m merge_shared_inputs(\u001b[38;5;28mself\u001b[39m.options[\u001b[33m\"\u001b[39m\u001b[33mtech_config\u001b[39m\u001b[33m\"\u001b[39m][\u001b[33m\"\u001b[39m\u001b[33mmodel_inputs\u001b[39m\u001b[33m\"\u001b[39m], \u001b[33m\"\u001b[39m\u001b[33mperformance\u001b[39m\u001b[33m\"\u001b[39m),\n\u001b[32m 55\u001b[39m strict=\u001b[38;5;28;01mFalse\u001b[39;00m,\n\u001b[32m 56\u001b[39m )\n\u001b[32m 57\u001b[39m \u001b[38;5;28msuper\u001b[39m().setup()\n\u001b[32m 58\u001b[39m \u001b[38;5;28mself\u001b[39m.add_output(\u001b[33m\"\u001b[39m\u001b[33mefficiency\u001b[39m\u001b[33m\"\u001b[39m, val=\u001b[32m0.0\u001b[39m, desc=\u001b[33m\"\u001b[39m\u001b[33mAverage efficiency of the electrolyzer\u001b[39m\u001b[33m\"\u001b[39m)\n", + "\u001b[36mFile \u001b[39m\u001b[32m~\\Documents\\git\\H2Integrate\\h2integrate\\core\\utilities.py:159\u001b[39m, in \u001b[36mBaseConfig.from_dict\u001b[39m\u001b[34m(cls, data, strict)\u001b[39m\n\u001b[32m 156\u001b[39m undefined = \u001b[38;5;28msorted\u001b[39m(\u001b[38;5;28mset\u001b[39m(required_inputs) - \u001b[38;5;28mset\u001b[39m(kwargs))\n\u001b[32m 158\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m undefined:\n\u001b[32m--> \u001b[39m\u001b[32m159\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mAttributeError\u001b[39;00m(\n\u001b[32m 160\u001b[39m \u001b[33mf\u001b[39m\u001b[33m\"\u001b[39m\u001b[33mThe class definition for \u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mcls\u001b[39m.\u001b[34m__name__\u001b[39m\u001b[38;5;132;01m}\u001b[39;00m\u001b[33m is missing the following inputs: \u001b[39m\u001b[33m\"\u001b[39m\n\u001b[32m 161\u001b[39m \u001b[33mf\u001b[39m\u001b[33m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mundefined\u001b[38;5;132;01m}\u001b[39;00m\u001b[33m\"\u001b[39m\n\u001b[32m 162\u001b[39m )\n\u001b[32m 163\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mcls\u001b[39m(**kwargs)\n", + "\u001b[31mAttributeError\u001b[39m: The class definition for ECOElectrolyzerPerformanceModelConfig is missing the following inputs: ['sizing']" + ] + } + ], + "source": [ + "# Run the model\n", + "model.run()\n", + "\n", + "# Print selected output\n", + "for value in [\n", + " \"electrolyzer.electricity_in\",\n", + " \"electrolyzer.electrolyzer_size_mw\",\n", + " \"electrolyzer.hydrogen_capacity_factor\",\n", + " \"ammonia.hydrogen_in\",\n", + " \"ammonia.max_hydrogen_capacity\",\n", + " \"ammonia.ammonia_capacity_factor\",\n", + " \"finance_subgroup_h2.LCOH\",\n", + " \"finance_subgroup_nh3.LCOA\",\n", + "]:\n", + " print(value + \": \" + str(np.max(model.prob.get_val(value))))" + ] + }, + { + "cell_type": "markdown", + "id": "8b99e658", + "metadata": {}, + "source": [ + "### `resize_by_max_feedstock` mode\n", + "\n", + "In this case, the electrolyzer will be sized to match the maximum `electricity_in` coming from HOPP.\n", + "This increases the electrolyzer size to 1080 MW, the smallest multiple of 40 MW (the cluster size) matching the max HOPP power output of 1048 MW.\n", + "This increases the LCOH to $4.80/kg H2, and increases the LCOA to $1.54/kg NH3, since electrolyzer is now oversized to utilize all of the HOPP electricity at peak output but thus has a lower hydrogen production capacity factor." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e3468f03", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "electrolyzer.electricity_in: 1048680.996768964\n", + "electrolyzer.electrolyzer_size_mw: 1080.0\n", + "electrolyzer.hydrogen_capacity_factor: 0.43539128043319353\n", + "ammonia.hydrogen_in: 20499.002679502206\n", + "ammonia.max_hydrogen_capacity: 10589.360138101109\n", + "ammonia.ammonia_capacity_factor: 0.7181332658817717\n", + "finance_subgroup_h2.LCOH: 4.797779223591998\n", + "finance_subgroup_nh3.LCOA: 1.5417851112436747\n" + ] + } + ], + "source": [ + "# Create a H2Integrate model, modifying tech_config as necessary\n", + "tech_config[\"technologies\"][\"electrolyzer\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"size_mode\"\n", + "] = \"resize_by_max_feedstock\"\n", + "tech_config[\"technologies\"][\"electrolyzer\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"flow_used_for_sizing\"\n", + "] = \"electricity\"\n", + "tech_config[\"technologies\"][\"electrolyzer\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"max_feedstock_ratio\"\n", + "] = 1.0\n", + "input_config[\"technology_config\"] = tech_config\n", + "model = H2IntegrateModel(input_config)\n", + "\n", + "# Run the model\n", + "model.run()\n", + "\n", + "# Print selected output\n", + "for value in [\n", + " \"electrolyzer.electricity_in\",\n", + " \"electrolyzer.electrolyzer_size_mw\",\n", + " \"electrolyzer.hydrogen_capacity_factor\",\n", + " \"ammonia.hydrogen_in\",\n", + " \"ammonia.max_hydrogen_capacity\",\n", + " \"ammonia.ammonia_capacity_factor\",\n", + " \"finance_subgroup_h2.LCOH\",\n", + " \"finance_subgroup_nh3.LCOA\",\n", + "]:\n", + " print(value + \": \" + str(np.max(model.prob.get_val(value))))" + ] + }, + { + "cell_type": "markdown", + "id": "4b8dc110", + "metadata": {}, + "source": [ + "### `resize_by_max_product` mode\n", + "\n", + "In this case, the electrolyzer will be sized to match the maximum hydrogen capacity of the ammonia plant. \n", + "This requires the `technology_interconnections` entry to send the `max_hydrogen_capacity` from the ammonia plant to the electrolyzer.\n", + "This decreases the electrolyzer size to 560 MW, the closest multiple of 40 MW (the cluster size) that will ensure an h2 production capacity that matches the ammonia plant's h2 intake at its max ammonia production capacity.\n", + "This increases the LCOH to $4.64/kg H2, but reduces the LCOA to $1.30/kg NH3, since electrolyzer size was matched to ammonia production but not HOPP." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2402eb78", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "=====\n", + "plant\n", + "=====\n", + "NL: NLBGS Converged in 4 iterations\n", + "electrolyzer.electricity_in: 1048680.996768964\n", + "electrolyzer.electrolyzer_size_mw: 560.0\n", + "electrolyzer.hydrogen_capacity_factor: 0.6722260614534089\n", + "ammonia.hydrogen_in: 10701.566199695133\n", + "ammonia.max_hydrogen_capacity: 10589.360138101109\n", + "ammonia.ammonia_capacity_factor: 0.7076904219955559\n", + "finance_subgroup_h2.LCOH: 4.644401678804404\n", + "finance_subgroup_nh3.LCOA: 1.3047935193440283\n" + ] + } + ], + "source": [ + "# Create a H2Integrate model, modifying tech_config and plant_config as necessary\n", + "tech_config[\"technologies\"][\"electrolyzer\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"size_mode\"\n", + "] = \"resize_by_max_commodity\"\n", + "tech_config[\"technologies\"][\"electrolyzer\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"flow_used_for_sizing\"\n", + "] = \"hydrogen\"\n", + "tech_config[\"technologies\"][\"electrolyzer\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"max_commodity_ratio\"\n", + "] = 1.0\n", + "input_config[\"technology_config\"] = tech_config\n", + "plant_config[\"technology_interconnections\"] = [\n", + " [\"hopp\", \"electrolyzer\", \"electricity\", \"cable\"],\n", + " [\"electrolyzer\", \"ammonia\", \"hydrogen\", \"h2_pipe_array\"],\n", + " [\"ammonia\", \"electrolyzer\", \"max_hydrogen_capacity\", \"direct\"],\n", + "]\n", + "input_config[\"plant_config\"] = plant_config\n", + "\n", + "model = H2IntegrateModel(input_config)\n", + "\n", + "# Run the model\n", + "model.run()\n", + "\n", + "# Print selected output\n", + "for value in [\n", + " \"electrolyzer.electricity_in\",\n", + " \"electrolyzer.electrolyzer_size_mw\",\n", + " \"electrolyzer.hydrogen_capacity_factor\",\n", + " \"ammonia.hydrogen_in\",\n", + " \"ammonia.max_hydrogen_capacity\",\n", + " \"ammonia.ammonia_capacity_factor\",\n", + " \"finance_subgroup_h2.LCOH\",\n", + " \"finance_subgroup_nh3.LCOA\",\n", + "]:\n", + " print(value + \": \" + str(np.max(model.prob.get_val(value))))" + ] + }, + { + "cell_type": "markdown", + "id": "b88e5310", + "metadata": {}, + "source": [ + "## Using optimizer with multiple connections\n", + "\n", + "With both `electrolyzer` and `ammonia` in `size_by_max_feedstock` mode, the COBYLA optimizer can co-optimize the `max_feedstock_ratio` variables to minimize LCOA to $1.20/kg. This is achieved at a capacity factor of approximately 55% in both the electrolyzer and the ammonia plant." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "204ff626", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|0\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.]),\n", + " 'electrolyzer.max_feedstock_ratio': array([1.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.2496865])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|1\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.]),\n", + " 'electrolyzer.max_feedstock_ratio': array([1.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.2496865])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|2\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.]),\n", + " 'electrolyzer.max_feedstock_ratio': array([1.2])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.31237357])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|3\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.2]),\n", + " 'electrolyzer.max_feedstock_ratio': array([1.])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.2496865])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|4\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.8])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.19535575])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|5\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.6])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.25299474])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|6\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([0.91108884]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.84576906])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.22517452])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|7\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.08590905]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.85118236])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.21217351])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|8\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.00916499]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.75084715])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.19767376])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|9\n", + "---------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([0.97502828]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.80118888])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.2143843])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|10\n", + "----------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.0242671]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.80600897])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.2117977])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|11\n", + "----------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.0010803]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.79005852])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.2011689])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|12\n", + "----------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([1.00497074]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.80054015])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.19535575])}\n", + "\n", + "Driver debug print for iter coord: rank0:ScipyOptimize_COBYLA|13\n", + "----------------------------------------------------------------\n", + "Design Vars\n", + "{'ammonia.max_feedstock_ratio': array([0.9989197]),\n", + " 'electrolyzer.max_feedstock_ratio': array([0.80994148])}\n", + "\n", + "Nonlinear constraints\n", + "None\n", + "\n", + "Linear constraints\n", + "None\n", + "\n", + "Objectives\n", + "{'finance_subgroup_nh3.LCOA': array([1.20602989])}\n", + "\n", + "Optimization Complete\n", + "-----------------------------------\n", + "electrolyzer.electricity_in: 1048680.996768964\n", + "electrolyzer.electrolyzer_size_mw: 880.0\n", + "electrolyzer.hydrogen_capacity_factor: 0.5200926613154694\n", + "ammonia.hydrogen_in: 16815.91298776\n", + "ammonia.max_hydrogen_capacity: 16797.74682668353\n", + "ammonia.ammonia_capacity_factor: 0.5436065798046765\n", + "finance_subgroup_h2.LCOH: 4.530431269520775\n", + "finance_subgroup_nh3.LCOA: 1.2060298896768562\n" + ] + } + ], + "source": [ + "# Create a H2Integrate model, modifying tech_config and driver_config as necessary\n", + "tech_config[\"technologies\"][\"electrolyzer\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"size_mode\"\n", + "] = \"resize_by_max_feedstock\"\n", + "tech_config[\"technologies\"][\"electrolyzer\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"flow_used_for_sizing\"\n", + "] = \"electricity\"\n", + "tech_config[\"technologies\"][\"electrolyzer\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"max_feedstock_ratio\"\n", + "] = 1.0\n", + "tech_config[\"technologies\"][\"ammonia\"][\"model_inputs\"][\"performance_parameters\"][\"size_mode\"] = (\n", + " \"resize_by_max_feedstock\"\n", + ")\n", + "tech_config[\"technologies\"][\"ammonia\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"flow_used_for_sizing\"\n", + "] = \"hydrogen\"\n", + "tech_config[\"technologies\"][\"ammonia\"][\"model_inputs\"][\"performance_parameters\"][\n", + " \"max_feedstock_ratio\"\n", + "] = 1.0\n", + "input_config[\"technology_config\"] = tech_config\n", + "plant_config[\"technology_interconnections\"] = [\n", + " [\"hopp\", \"electrolyzer\", \"electricity\", \"cable\"],\n", + " [\"electrolyzer\", \"ammonia\", \"hydrogen\", \"pipe\"],\n", + "]\n", + "input_config[\"plant_config\"] = plant_config\n", + "driver_config[\"driver\"][\"optimization\"][\"flag\"] = True\n", + "driver_config[\"design_variables\"][\"electrolyzer\"][\"max_feedstock_ratio\"][\"flag\"] = True\n", + "driver_config[\"design_variables\"][\"ammonia\"][\"max_feedstock_ratio\"][\"flag\"] = True\n", + "input_config[\"driver_config\"] = driver_config\n", + "model = H2IntegrateModel(input_config)\n", + "\n", + "# Run the model\n", + "model.run()\n", + "\n", + "# Print selected outputs\n", + "for value in [\n", + " \"electrolyzer.electricity_in\",\n", + " \"electrolyzer.electrolyzer_size_mw\",\n", + " \"electrolyzer.hydrogen_capacity_factor\",\n", + " \"ammonia.hydrogen_in\",\n", + " \"ammonia.max_hydrogen_capacity\",\n", + " \"ammonia.ammonia_capacity_factor\",\n", + " \"finance_subgroup_h2.LCOH\",\n", + " \"finance_subgroup_nh3.LCOA\",\n", + "]:\n", + " print(value + \": \" + str(np.max(model.prob.get_val(value))))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "hopp", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/25_sizing_modes/tech_config.yaml b/examples/25_sizing_modes/tech_config.yaml new file mode 100644 index 000000000..7bf320056 --- /dev/null +++ b/examples/25_sizing_modes/tech_config.yaml @@ -0,0 +1,88 @@ +name: "technology_config" +description: "This hybrid plant produces ammonia" + +technologies: + electrolyzer: + performance_model: + model: "eco_pem_electrolyzer_performance" + cost_model: + model: "singlitico_electrolyzer_cost" + model_inputs: + shared_parameters: + location: "onshore" + electrolyzer_capex: 1295 # $/kW overnight installed capital costs for a 1 MW system in 2022 USD/kW (DOE hydrogen program record 24005 Clean Hydrogen Production Cost Scenarios with PEM Electrolyzer Technology 05/20/24) (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) + performance_parameters: + size_mode: "normal" + n_clusters: 16 + cluster_rating_MW: 40 + pem_control_type: 'basic' + eol_eff_percent_loss: 10 #eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000 #number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: True #include degradation + turndown_ratio: 0.1 #turndown_ratio = minimum_cluster_power/cluster_rating_MW + + financial_parameters: + capital_items: + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case + hopp: + performance_model: + model: "hopp" + config: !include tech_inputs/hopp_config_tx.yaml + cost_model: + model: "hopp" + electrolyzer_rating: 640. # MW + model_inputs: + cost_parameters: + cost_year: 2019 + ammonia: + performance_model: + model: "synloop_ammonia_performance" + cost_model: + model: "synloop_ammonia_cost" + model_inputs: # See converters/ammonia/Ammonia cost breakdown-ANL source.xlsx + shared_parameters: + production_capacity: 52777.6 + catalyst_consumption_rate: 0.000091295354067341 + catalyst_replacement_interval: 3 + performance_parameters: + size_mode: "normal" + capacity_factor: 0.9 + energy_demand: 0.530645243 + heat_output: 0.8299956 + feed_gas_t: 25.8 + feed_gas_p: 20 + feed_gas_x_n2: 0.25 + feed_gas_x_h2: 0.75 + feed_gas_mass_ratio: 1.13 + purge_gas_t: 7.5 + purge_gas_p: 275 + purge_gas_x_n2: 0.26 + purge_gas_x_h2: 0.68 + purge_gas_x_ar: 0.02 + purge_gas_x_nh3: 0.04 + purge_gas_mass_ratio: 0.07 + cost_parameters: + baseline_capacity: 52777.6 + base_cost_year: 2016 + capex_scaling_exponent: 0.6 + labor_scaling_exponent: 0.25 + asu_capex_base: 236920646 # See ASU + HB capex-NETL source.xlsx + synloop_capex_base: 302460908 # See ASU + HB capex-NETL source.xlsx + heat_capex_base: 7069100 + cool_capex_base: 4799200 + other_eqpt_capex_base: 0.001 + land_capex_base: 4112701.84103543 + deprec_noneq_capex_rate: 0.42 + labor_rate_base: 57 + num_workers_base: 50 + hours_yr: 2080 + gen_admin: 0.2 + prop_tax_ins: 0.02 + maint_rep: 0.005 + oxygen_byproduct_rate: 0.29405077250145 + water_consumption_rate: 0.049236824 + rebuild_cost_base: 0.001 + cooling_water_cost_base: 0.000113349938601175 + catalyst_cost_base: 23.19977341 + oxygen_price_base: 0.0285210891617726 diff --git a/examples/25_sizing_modes/tech_inputs/ATB2024_6MW_170RD_floris_turbine.yaml b/examples/25_sizing_modes/tech_inputs/ATB2024_6MW_170RD_floris_turbine.yaml new file mode 100644 index 000000000..5dc5034dc --- /dev/null +++ b/examples/25_sizing_modes/tech_inputs/ATB2024_6MW_170RD_floris_turbine.yaml @@ -0,0 +1,167 @@ +turbine_type: ATB2024_6MW_170RD +hub_height: 115.0 +rotor_diameter: 170.0 +TSR: 9.0 +operation_model: cosine-loss +turbine_rating: 6 +power_thrust_table: + ref_air_density: 1.225 + ref_tilt: 6.0 + cosine_loss_exponent_yaw: 1.88 + cosine_loss_exponent_tilt: 1.88 + wind_speed: + - 0.0 + - 0.5 + - 1.0 + - 1.5 + - 2.0 + - 2.5 + - 3.0 + - 3.5 + - 4.0 + - 4.5 + - 5.0 + - 5.5 + - 6.0 + - 6.5 + - 7.0 + - 7.5 + - 8.0 + - 8.5 + - 9.0 + - 9.5 + - 10.0 + - 10.5 + - 11.0 + - 11.5 + - 12.0 + - 12.5 + - 13.0 + - 13.5 + - 14.0 + - 14.5 + - 15.0 + - 15.5 + - 16.0 + - 16.5 + - 17.0 + - 17.5 + - 18.0 + - 18.5 + - 19.0 + - 19.5 + - 20.0 + - 20.5 + - 21.0 + - 21.5 + - 22.0 + - 22.5 + - 23.0 + - 23.5 + - 24.0 + - 24.5 + - 25.0 + power: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 228.52969636356403 + - 376.7496812611624 + - 580.9895384603997 + - 822.2288514721866 + - 1090.2170442095946 + - 1409.7828977663846 + - 1805.0803149166634 + - 2262.4843738118716 + - 2769.470201641793 + - 3355.6919968523225 + - 4026.7774705618813 + - 4650.06941568721 + - 5101.383194069271 + - 5428.709499847277 + - 5699.338168029099 + - 5885.580167578582 + - 5957.320816531514 + - 5969.721374482352 + - 5983.791873199394 + - 5998.661385858849 + - 6000.0000134452985 + - 6000.0000046641135 + - 6000.000003308616 + - 6000.000006360222 + - 6000.000004048927 + - 5999.999987869858 + - 6000.000012929167 + - 6000.000006082171 + - 6000.000023738385 + - 6000.00000711096 + - 6000.000006645225 + - 6000.000006679979 + - 6000.000020014243 + - 5999.999961177002 + - 5999.9999449266825 + - 6000.000028506952 + - 6000.000053387264 + - 5999.999948164235 + - 5999.999965304316 + - 5999.999956728193 + - 5999.999966609415 + - 5999.999938043193 + - 6000.000048773363 + - 5999.999914255965 + thrust_coefficient: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.912 + - 0.8745 + - 0.8605 + - 0.84 + - 0.8254999999999999 + - 0.818 + - 0.817 + - 0.8115 + - 0.8115 + - 0.8055000000000001 + - 0.7915000000000001 + - 0.7615000000000001 + - 0.7110000000000001 + - 0.6495 + - 0.581 + - 0.5115000000000001 + - 0.445 + - 0.3885 + - 0.337 + - 0.2955 + - 0.258 + - 0.2285 + - 0.20600000000000002 + - 0.1805 + - 0.1665 + - 0.149 + - 0.137 + - 0.1265 + - 0.1115 + - 0.107 + - 0.0985 + - 0.09 + - 0.082 + - 0.0795 + - 0.07250000000000001 + - 0.067 + - 0.0595 + - 0.056999999999999995 + - 0.05 + - 0.048 + - 0.041499999999999995 + - 0.0395 + - 0.0385 + - 0.032 + - 0.031 diff --git a/examples/25_sizing_modes/tech_inputs/floris_input_lbw_6MW.yaml b/examples/25_sizing_modes/tech_inputs/floris_input_lbw_6MW.yaml new file mode 100644 index 000000000..60b25e145 --- /dev/null +++ b/examples/25_sizing_modes/tech_inputs/floris_input_lbw_6MW.yaml @@ -0,0 +1,673 @@ +name: Gauss +description: Three turbines using Gauss model +floris_version: v4.0.0 +logging: + console: + enable: false + level: WARNING + file: + enable: false + level: WARNING +solver: + type: turbine_grid + turbine_grid_points: 1 +flow_field: + air_density: 1.225 + reference_wind_height: -1 + wind_directions: + - 270.0 + wind_shear: 0.33 + wind_speeds: + - 8.0 + wind_veer: 0.0 + turbulence_intensities: + - 0.06 +wake: + model_strings: + combination_model: sosfs + deflection_model: gauss + turbulence_model: crespo_hernandez + velocity_model: gauss + enable_secondary_steering: false + enable_yaw_added_recovery: false + enable_transverse_velocities: false + wake_deflection_parameters: + gauss: + ad: 0.0 + alpha: 0.58 + bd: 0.0 + beta: 0.077 + dm: 1.0 + ka: 0.38 + kb: 0.004 + jimenez: + ad: 0.0 + bd: 0.0 + kd: 0.05 + wake_velocity_parameters: + cc: + a_s: 0.179367259 + b_s: 0.0118889215 + c_s1: 0.0563691592 + c_s2: 0.13290157 + a_f: 3.11 + b_f: -0.68 + c_f: 2.41 + alpha_mod: 1.0 + gauss: + alpha: 0.58 + beta: 0.077 + ka: 0.38 + kb: 0.004 + jensen: + we: 0.05 + wake_turbulence_parameters: + crespo_hernandez: + initial: 0.1 + constant: 0.5 + ai: 0.8 + downstream: -0.32 + enable_active_wake_mixing: false + +farm: + layout_x: + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + - 8084.660940644339 + - 9274.660940644339 + - 10464.660940644339 + - 11654.660940644339 + - 12844.660940644331 + - 14034.660940644339 + - 15224.660940644339 + - 16414.66094064434 + - 17604.66094064434 + - 18794.66094064434 + - 19984.66094064434 + - 21174.66094064434 + - 22364.66094064434 + - 23554.660940644346 + - 24744.66094064434 + - 944.6609406443386 + - 2134.6609406443386 + - 3324.6609406443386 + - 4514.660940644339 + - 5704.660940644339 + - 6894.660940644339 + layout_y: + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 599.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 1789.9999999999982 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 2979.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 4169.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 5359.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 6549.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 7739.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 8929.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 10119.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 11309.999999999998 + - 12499.999999999998 + - 12499.999999999998 + - 12499.999999999998 + - 12499.999999999998 + - 12499.999999999998 + - 12499.999999999998 + turbine_type: + - TSR: 9.0 + hub_height: 115.0 + operation_model: cosine-loss + power_thrust_table: + cosine_loss_exponent_tilt: 1.88 + cosine_loss_exponent_yaw: 1.88 + power: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 228.52969636356403 + - 376.7496812611624 + - 580.9895384603997 + - 822.2288514721866 + - 1090.2170442095946 + - 1409.7828977663846 + - 1805.0803149166634 + - 2262.4843738118716 + - 2769.470201641793 + - 3355.6919968523225 + - 4026.7774705618813 + - 4650.06941568721 + - 5101.383194069271 + - 5428.709499847277 + - 5699.338168029099 + - 5885.580167578582 + - 5957.320816531514 + - 5969.721374482352 + - 5983.791873199394 + - 5998.661385858849 + - 6000.0000134452985 + - 6000.0000046641135 + - 6000.000003308616 + - 6000.000006360222 + - 6000.000004048927 + - 5999.999987869858 + - 6000.000012929167 + - 6000.000006082171 + - 6000.000023738385 + - 6000.00000711096 + - 6000.000006645225 + - 6000.000006679979 + - 6000.000020014243 + - 5999.999961177002 + - 5999.9999449266825 + - 6000.000028506952 + - 6000.000053387264 + - 5999.999948164235 + - 5999.999965304316 + - 5999.999956728193 + - 5999.999966609415 + - 5999.999938043193 + - 6000.000048773363 + - 5999.999914255965 + ref_air_density: 1.225 + ref_tilt: 6.0 + thrust_coefficient: + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.0 + - 0.912 + - 0.8745 + - 0.8605 + - 0.84 + - 0.8254999999999999 + - 0.818 + - 0.817 + - 0.8115 + - 0.8115 + - 0.8055000000000001 + - 0.7915000000000001 + - 0.7615000000000001 + - 0.7110000000000001 + - 0.6495 + - 0.581 + - 0.5115000000000001 + - 0.445 + - 0.3885 + - 0.337 + - 0.2955 + - 0.258 + - 0.2285 + - 0.20600000000000002 + - 0.1805 + - 0.1665 + - 0.149 + - 0.137 + - 0.1265 + - 0.1115 + - 0.107 + - 0.0985 + - 0.09 + - 0.082 + - 0.0795 + - 0.07250000000000001 + - 0.067 + - 0.0595 + - 0.056999999999999995 + - 0.05 + - 0.048 + - 0.041499999999999995 + - 0.0395 + - 0.0385 + - 0.032 + - 0.031 + wind_speed: + - 0.0 + - 0.5 + - 1.0 + - 1.5 + - 2.0 + - 2.5 + - 3.0 + - 3.5 + - 4.0 + - 4.5 + - 5.0 + - 5.5 + - 6.0 + - 6.5 + - 7.0 + - 7.5 + - 8.0 + - 8.5 + - 9.0 + - 9.5 + - 10.0 + - 10.5 + - 11.0 + - 11.5 + - 12.0 + - 12.5 + - 13.0 + - 13.5 + - 14.0 + - 14.5 + - 15.0 + - 15.5 + - 16.0 + - 16.5 + - 17.0 + - 17.5 + - 18.0 + - 18.5 + - 19.0 + - 19.5 + - 20.0 + - 20.5 + - 21.0 + - 21.5 + - 22.0 + - 22.5 + - 23.0 + - 23.5 + - 24.0 + - 24.5 + - 25.0 + rotor_diameter: 170.0 + turbine_type: ATB2024_6MW_170RD diff --git a/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml b/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml new file mode 100644 index 000000000..d24446b6b --- /dev/null +++ b/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml @@ -0,0 +1,228 @@ +site: #!include flatirons_site.yaml + data: + lat: 32.31714 + lon: -100.18 + elev: 762 + year: 2013 + tz: -6 + site_boundaries: + verts: + - [0.0, 0.0] + - [0.0, 20000.0] + - [20000.0, 20000.0] + - [20000.0, 0.0] + verts_simple: + - [0.0, 0.0] + - [0.0, 20000.0] + - [20000.0, 20000.0] + - [20000.0, 0.0] + solar_resource_file: "tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv" + wind_resource_file: "tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw" + wave_resource_file: "" + grid_resource_file: "" + hub_height: 115.0 + capacity_hours: [] + solar: true + wind: true + wave: false + wind_resource_origin: "WTK" +technologies: + wind: + num_turbines: 148 # 175 + turbine_rating_kw: 6000.0 + operational_losses: 10.49 + model_name: pysam + timestep: [0, 8760] + # floris_config: tech_inputs/floris_input_lbw_6MW.yaml + fin_model: + battery_system: + batt_replacement_schedule_percent: [0] + batt_bank_replacement: [0] + batt_replacement_option: 0 + batt_computed_bank_capacity: 0 + batt_meter_position: 0 + system_costs: + om_fixed: [0] + om_production: [0] + om_capacity: [0] + om_batt_fixed_cost: 0 + om_batt_variable_cost: [0] + om_batt_capacity_cost: 0 + om_batt_replacement_cost: 0 + om_replacement_cost_escal: 0 + system_use_lifetime_output: 0 + financial_parameters: + inflation_rate: 0.0 # real basis + real_discount_rate: 6.3 # real return based on 2024 ATB baseline workbook for land-based wind. + federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates + state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation + property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + debt_percent: 72.4 # based on 2024 ATB for land-based wind + term_int_rate: 4.4 # based on 2024 ATB real interest rate for land-based onshore wind + months_working_reserve: 1 + analysis_start_year: 2030 + installation_months: 36 + sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ + admin_expense_percent_of_sales: 0.0 # H2FAST default + capital_gains_tax_rate: 15.0 # H2FAST default + debt_type: "Revolving debt" # H2FAST default + depreciation_method: "MACRS" + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + cp_capacity_credit_percent: [0] + degradation: [0] + revenue: + ppa_price_input: [0.0] # cents/kWh + ppa_escalation: 0 # % + pv: + system_capacity_kw: 400000 # 750500 + dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + fin_model: + battery_system: + batt_replacement_schedule_percent: [0] + batt_bank_replacement: [0] + batt_replacement_option: 0 + batt_computed_bank_capacity: 0 + batt_meter_position: 0 + system_costs: + om_fixed: [0] + om_production: [0] + om_capacity: [0] + om_batt_fixed_cost: 0 + om_batt_variable_cost: [0] + om_batt_capacity_cost: 0 + om_batt_replacement_cost: 0 + om_replacement_cost_escal: 0 + system_use_lifetime_output: 0 + financial_parameters: + inflation_rate: 0.0 # real basis + real_discount_rate: 5.9 # real return based on 2024 ATB baseline for utility-scale PV + federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates + state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation + property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + debt_percent: 75.3 # based on 2024 ATB for utility-scale pv solar + term_int_rate: 4.4 # based on 2024 ATB real interest rate for utility-scale pv solar + months_working_reserve: 1 + analysis_start_year: 2030 + installation_months: 36 + sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ + admin_expense_percent_of_sales: 0.0 # H2FAST default + capital_gains_tax_rate: 15.0 # H2FAST default + debt_type: "Revolving debt" # H2FAST default + depreciation_method: "MACRS" + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + cp_capacity_credit_percent: [0] + degradation: [0] + revenue: + ppa_price_input: [0.0] # cents/kWh + ppa_escalation: 0 # % + battery: + system_capacity_kwh: 96 # 375750 + system_capacity_kw: 96 # 375750 + minimum_SOC: 20.0 + maximum_SOC: 100.0 + initial_SOC: 90.0 + fin_model: + battery_system: + batt_replacement_schedule_percent: [0] + batt_bank_replacement: [0] + batt_replacement_option: 0 + batt_computed_bank_capacity: 0 + batt_meter_position: 0 + system_costs: + om_fixed: [0] + om_production: [0] + om_capacity: [0] + om_batt_fixed_cost: 0 + om_batt_variable_cost: [0] + om_batt_capacity_cost: 0 + om_batt_replacement_cost: 0 + om_replacement_cost_escal: 0 + system_use_lifetime_output: 0 + financial_parameters: + inflation_rate: 0.0 # real basis + real_discount_rate: 6.6 # real return based on 2024 ATB baseline for utility-scale battery + federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates + state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation + property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + debt_percent: 75.4 # based on 2024 ATB for utility-scale pv plus battery + term_int_rate: 4.4 # based on 2024 ATB real interest rate for utility-scale battery + months_working_reserve: 1 + analysis_start_year: 2030 + installation_months: 36 + sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ + admin_expense_percent_of_sales: 0.0 # H2FAST default + capital_gains_tax_rate: 15.0 # H2FAST default + debt_type: "Revolving debt" # H2FAST default + depreciation_method: "MACRS" + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + cp_capacity_credit_percent: [0] + degradation: [0] + revenue: + ppa_price_input: [0.0] # cents/kWh + ppa_escalation: 0 # % + grid: + interconnect_kw: 2000000 # Set higher than rated generation capacity + fin_model: + battery_system: + batt_replacement_schedule_percent: [0] + batt_bank_replacement: [0] + batt_replacement_option: 0 + batt_computed_bank_capacity: 0 + batt_meter_position: 0 + system_costs: + om_fixed: [0] + om_production: [0] + om_capacity: [0] + om_batt_fixed_cost: 0 + om_batt_variable_cost: [0] + om_batt_capacity_cost: 0 + om_batt_replacement_cost: 0 + om_replacement_cost_escal: 0 + system_use_lifetime_output: 0 + financial_parameters: + inflation_rate: 0.0 # real basis + real_discount_rate: 6.3 # real return based on 2024 ATB baseline workbook for land-based wind. + federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates + state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation + property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + debt_percent: 72.4 # based on 2024 ATB for land-based wind + term_int_rate: 4.4 # based on 2024 ATB real interest rate for land-based onshore wind + months_working_reserve: 1 + analysis_start_year: 2030 + installation_months: 36 + sales_tax_rate_state: 0.0 # 8.20 # average combined state and local sales tax in TX https://taxfoundation.org/location/texas/ + admin_expense_percent_of_sales: 0.0 # H2FAST default + capital_gains_tax_rate: 15.0 # H2FAST default + debt_type: "Revolving debt" # H2FAST default + depreciation_method: "MACRS" + depreciation_period: 5 # years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + cp_capacity_credit_percent: [0] + degradation: [0] + revenue: + ppa_price_input: [0.0] # cents/kWh + ppa_escalation: 0 # % + +config: + simulation_options: + cache: true + wind: + skip_financial: false + dispatch_options: + battery_dispatch: load_following_heuristic # load_following_heuristic #heuristic + solver: cbc + n_look_ahead_periods: 48 + grid_charging: false + pv_charging_only: false + include_lifecycle_count: false + cost_info: + wind_installed_cost_mw: 1380000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for land-based wind. 2025 used as an overnight-capex lock-in date for 2030 operation + solar_installed_cost_mw: 1323000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale pv. 2025 used as an overnight-capex lock-in date for 2030 operation + storage_installed_cost_mwh: 310000 # (2022USD) 2025 battery costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation + storage_installed_cost_mw: 311000 # (2022USD) 2025 battery costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation + wind_om_per_kw: 29 # (2022USD) 2030 costs in 2022 USD from 2024 ATB for land-based wind + pv_om_per_kw: 18 # (2022USD) 2030 costs in 2022 USD from NREL 2024 ATB for utility-scale PV + battery_om_per_kw: 15.525 # (2022USD) based on 2.5 percent of battery capex/kW for a 1-hour battery using both power and energy costs above diff --git a/examples/25_sizing_modes/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv b/examples/25_sizing_modes/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv new file mode 100644 index 000000000..d3865c868 --- /dev/null +++ b/examples/25_sizing_modes/tech_inputs/weather/solar/32.31714_-100.18_psmv3_60_2013.csv @@ -0,0 +1,8763 @@ +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 Units,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 +NSRDB,611351,-,-,-,32.33,-100.18,-6,761,-6,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,v3.2.2 +Year,Month,Day,Hour,Minute,GHI,DHI,DNI,Wind Speed,Temperature,Solar Zenith Angle,Pressure,Dew Point +2013,1,1,0,30,0,0,0,3.5,1.5,170.13,929,-1.8 +2013,1,1,1,30,0,0,0,3.7,0.1,166.24,930,-1.8 +2013,1,1,2,30,0,0,0,3.7,-1.1,154.88,931,-2.1 +2013,1,1,3,30,0,0,0,3.6,-1.9000000000000001,142.39000000000001,931,-3.1 +2013,1,1,4,30,0,0,0,3.5,-2.4000000000000004,129.73,931,-4.3 +2013,1,1,5,30,0,0,0,3.4000000000000004,-2.9000000000000004,117.18,932,-5.1000000000000005 +2013,1,1,6,30,0,0,0,3.3000000000000003,-3.4000000000000004,104.92,933,-5.5 +2013,1,1,7,30,0,0,0,3.6,-3.5,93.15,934,-5.800000000000001 +2013,1,1,8,30,65,51,99,4.1000000000000005,-2.4000000000000004,82,934,-6 +2013,1,1,9,30,305,56,812,4,-0.6000000000000001,72.14,935,-6 +2013,1,1,10,30,391,112,634,3.9000000000000004,1.3,63.9,935,-6.1000000000000005 +2013,1,1,11,30,417,218,377,3.8000000000000003,3.1,58.04,934,-6.300000000000001 +2013,1,1,12,30,466,230,415,3.7,4.5,55.35,934,-6.2 +2013,1,1,13,30,503,161,617,3.8000000000000003,5.4,56.300000000000004,933,-6.2 +2013,1,1,14,30,462,102,735,3.9000000000000004,5.6000000000000005,60.7,933,-6.2 +2013,1,1,15,30,300,123,471,3.9000000000000004,4.9,67.89,933,-6.4 +2013,1,1,16,30,189,43,650,3,3.1,77.05,934,-6.5 +2013,1,1,17,30,20,20,0,2.2,1.8,87.42,934,-6.2 +2013,1,1,18,30,0,0,0,2.1,0,99.13,935,-6.300000000000001 +2013,1,1,19,30,0,0,0,2.1,-0.8,111.18,935,-6.6000000000000005 +2013,1,1,20,30,0,0,0,2,-1.6,123.60000000000001,936,-6.800000000000001 +2013,1,1,21,30,0,0,0,1.7000000000000002,-2.2,136.23,936,-7 +2013,1,1,22,30,0,0,0,1.5,-2.7,148.86,936,-7.2 +2013,1,1,23,30,0,0,0,1.3,-3.1,160.99,936,-7.4 +2013,1,2,0,30,0,0,0,1.1,-3.4000000000000004,170.02,936,-7.5 +2013,1,2,1,30,0,0,0,0.9,-3.8000000000000003,166.25,936,-7.6000000000000005 +2013,1,2,2,30,0,0,0,0.9,-4.1000000000000005,154.94,936,-7.7 +2013,1,2,3,30,0,0,0,0.9,-4.2,142.45000000000002,936,-7.7 +2013,1,2,4,30,0,0,0,0.9,-4.3,129.79,936,-7.800000000000001 +2013,1,2,5,30,0,0,0,0.9,-4.3,117.24000000000001,936,-7.800000000000001 +2013,1,2,6,30,0,0,0,0.8,-4.3,104.97,936,-7.800000000000001 +2013,1,2,7,30,0,0,0,1.2000000000000002,-3.6,93.19,936,-7.9 +2013,1,2,8,30,64,51,97,1.8,-2,82.03,936,-7.7 +2013,1,2,9,30,226,103,403,2,0,72.14,936,-7.7 +2013,1,2,10,30,387,117,615,2.3000000000000003,2,63.88,936,-7.4 +2013,1,2,11,30,490,134,672,2.6,4,57.99,936,-6.9 +2013,1,2,12,30,522,163,630,2.8000000000000003,5.9,55.27,935,-6.6000000000000005 +2013,1,2,13,30,517,147,663,2.8000000000000003,7.300000000000001,56.19,934,-6.7 +2013,1,2,14,30,534,65,953,2.6,7.9,60.57,933,-7 +2013,1,2,15,30,397,58,896,1.9000000000000001,7.6000000000000005,67.75,933,-7.1000000000000005 +2013,1,2,16,30,216,45,757,1.2000000000000002,5.6000000000000005,76.91,933,-5.9 +2013,1,2,17,30,35,18,361,1,4.1000000000000005,87.29,933,-5.2 +2013,1,2,18,30,0,0,0,1.3,1,98.99000000000001,934,-6.4 +2013,1,2,19,30,0,0,0,1.3,-0.2,111.04,935,-6.6000000000000005 +2013,1,2,20,30,0,0,0,1.3,-0.9,123.47,936,-6.800000000000001 +2013,1,2,21,30,0,0,0,1.2000000000000002,-1.2000000000000002,136.1,936,-6.800000000000001 +2013,1,2,22,30,0,0,0,1,-1.3,148.72,937,-6.7 +2013,1,2,23,30,0,0,0,0.8,-1.4000000000000001,160.85,937,-6.7 +2013,1,3,0,30,0,0,0,0.8,-1.8,169.89000000000001,937,-6.7 +2013,1,3,1,30,0,0,0,1,-2.7,166.25,937,-6.7 +2013,1,3,2,30,0,0,0,1.1,-3.8000000000000003,154.99,937,-6.7 +2013,1,3,3,30,0,0,0,1.2000000000000002,-4.7,142.51,938,-6.7 +2013,1,3,4,30,0,0,0,1.3,-5,129.85,938,-6.800000000000001 +2013,1,3,5,30,0,0,0,1.4000000000000001,-5.1000000000000005,117.29,939,-6.7 +2013,1,3,6,30,0,0,0,1.6,-4.9,105.02,939,-6.6000000000000005 +2013,1,3,7,30,0,0,0,2.4000000000000004,-3.7,93.22,940,-6.300000000000001 +2013,1,3,8,30,29,29,0,2.9000000000000004,-1.9000000000000001,82.04,940,-6 +2013,1,3,9,30,117,113,13,3.2,0.8,72.14,941,-5.5 +2013,1,3,10,30,297,190,242,3.5,3.3000000000000003,63.85,941,-5.2 +2013,1,3,11,30,279,238,78,3.5,4.800000000000001,57.93,940,-5.6000000000000005 +2013,1,3,12,30,450,244,359,3.4000000000000004,5.800000000000001,55.18,939,-6 +2013,1,3,13,30,455,225,411,3.3000000000000003,6.300000000000001,56.07,939,-6.6000000000000005 +2013,1,3,14,30,138,138,0,3.3000000000000003,6.300000000000001,60.44,938,-7.300000000000001 +2013,1,3,15,30,151,143,19,3,5.800000000000001,67.61,938,-7.800000000000001 +2013,1,3,16,30,35,35,0,1.9000000000000001,4,76.77,939,-7.800000000000001 +2013,1,3,17,30,16,16,0,1,2.6,87.15,939,-5.5 +2013,1,3,18,30,0,0,0,1.1,1.2000000000000002,98.84,939,-5.800000000000001 +2013,1,3,19,30,0,0,0,1.1,0.9,110.9,940,-5.800000000000001 +2013,1,3,20,30,0,0,0,0.9,0.8,123.33,940,-5.7 +2013,1,3,21,30,0,0,0,0.9,0.7000000000000001,135.96,941,-5.5 +2013,1,3,22,30,0,0,0,0.8,0.7000000000000001,148.58,941,-5.6000000000000005 +2013,1,3,23,30,0,0,0,0.6000000000000001,0.9,160.70000000000002,941,-5.9 +2013,1,4,0,30,0,0,0,0.30000000000000004,0.9,169.76,941,-5.9 +2013,1,4,1,30,0,0,0,0.4,0.30000000000000004,166.25,941,-5.5 +2013,1,4,2,30,0,0,0,0.7000000000000001,-0.5,155.03,941,-5.300000000000001 +2013,1,4,3,30,0,0,0,0.7000000000000001,-1.1,142.56,940,-4.9 +2013,1,4,4,30,0,0,0,0.8,-1.4000000000000001,129.9,940,-4.800000000000001 +2013,1,4,5,30,0,0,0,0.9,-1.7000000000000002,117.34,940,-4.800000000000001 +2013,1,4,6,30,0,0,0,0.9,-1.9000000000000001,105.06,941,-4.800000000000001 +2013,1,4,7,30,0,0,0,0.8,-1.2000000000000002,93.25,941,-4.800000000000001 +2013,1,4,8,30,43,43,0,1.4000000000000001,0.5,82.06,942,-4.1000000000000005 +2013,1,4,9,30,79,79,0,2.4000000000000004,2,72.13,942,-3.6 +2013,1,4,10,30,192,177,34,2.9000000000000004,2.9000000000000004,63.81,942,-3.5 +2013,1,4,11,30,224,209,27,3,3.6,57.86,941,-3.4000000000000004 +2013,1,4,12,30,269,243,44,2.9000000000000004,3.9000000000000004,55.08,940,-3.2 +2013,1,4,13,30,315,259,99,2.7,4.1000000000000005,55.94,939,-3 +2013,1,4,14,30,270,223,94,2.4000000000000004,4.1000000000000005,60.300000000000004,938,-2.9000000000000004 +2013,1,4,15,30,193,162,79,2.2,3.7,67.46000000000001,938,-2.7 +2013,1,4,16,30,116,91,107,1.5,2.6,76.62,938,-2.6 +2013,1,4,17,30,17,17,0,1,1.7000000000000002,87.01,938,-2.2 +2013,1,4,18,30,0,0,0,0.9,0,98.7,938,-2.2 +2013,1,4,19,30,0,0,0,1.2000000000000002,-0.5,110.76,938,-1.8 +2013,1,4,20,30,0,0,0,1.7000000000000002,-1,123.19,938,-1.6 +2013,1,4,21,30,0,0,0,2,-1.6,135.82,938,-1.6 +2013,1,4,22,30,0,0,0,2.2,-2.2,148.44,938,-2.2 +2013,1,4,23,30,0,0,0,2.5,-2.5,160.56,937,-2.5 +2013,1,5,0,30,0,0,0,2.8000000000000003,-2.6,169.62,937,-2.6 +2013,1,5,1,30,0,0,0,3.2,-2.3000000000000003,166.24,937,-2.3000000000000003 +2013,1,5,2,30,0,0,0,3.4000000000000004,-2.3000000000000003,155.07,937,-2.3000000000000003 +2013,1,5,3,30,0,0,0,3.4000000000000004,-2.4000000000000004,142.61,936,-2.4000000000000004 +2013,1,5,4,30,0,0,0,3.3000000000000003,-2.7,129.95,936,-2.7 +2013,1,5,5,30,0,0,0,3.4000000000000004,-2.8000000000000003,117.38,936,-2.8000000000000003 +2013,1,5,6,30,0,0,0,3.5,-3,105.09,936,-3 +2013,1,5,7,30,0,0,0,3.9000000000000004,-2.5,93.27,936,-2.8000000000000003 +2013,1,5,8,30,120,33,630,4.5,-0.9,82.06,936,-2.5 +2013,1,5,9,30,314,48,866,4.6000000000000005,1.6,72.12,936,-1.9000000000000001 +2013,1,5,10,30,479,56,959,4.5,4.5,63.77,936,-1.6 +2013,1,5,11,30,594,59,1003,4.4,7.4,57.79,935,-2.6 +2013,1,5,12,30,645,59,1022,4.2,9.700000000000001,54.97,934,-4.7 +2013,1,5,13,30,630,58,1017,4,11.100000000000001,55.81,933,-6.1000000000000005 +2013,1,5,14,30,548,54,992,3.5,11.700000000000001,60.15,933,-6.6000000000000005 +2013,1,5,15,30,408,48,935,2.4000000000000004,11.100000000000001,67.31,933,-6.6000000000000005 +2013,1,5,16,30,227,38,806,1.4000000000000001,8.6,76.47,933,-2.1 +2013,1,5,17,30,42,17,449,1.2000000000000002,6.9,86.87,933,-3.7 +2013,1,5,18,30,0,0,0,1.2000000000000002,5.2,98.55,934,-5.800000000000001 +2013,1,5,19,30,0,0,0,1.3,3.6,110.61,935,-6.1000000000000005 +2013,1,5,20,30,0,0,0,1.5,1.9000000000000001,123.05,936,-6.300000000000001 +2013,1,5,21,30,0,0,0,1.7000000000000002,0.5,135.68,936,-6.6000000000000005 +2013,1,5,22,30,0,0,0,1.9000000000000001,-0.6000000000000001,148.3,937,-7 +2013,1,5,23,30,0,0,0,2.2,-1.5,160.41,937,-7.5 +2013,1,6,0,30,0,0,0,2.3000000000000003,-2.2,169.48,938,-7.9 +2013,1,6,1,30,0,0,0,2.3000000000000003,-2.9000000000000004,166.22,938,-8.200000000000001 +2013,1,6,2,30,0,0,0,2.3000000000000003,-3.5,155.1,938,-8.3 +2013,1,6,3,30,0,0,0,2.3000000000000003,-4,142.65,939,-8.200000000000001 +2013,1,6,4,30,0,0,0,2.3000000000000003,-4.5,129.99,939,-8 +2013,1,6,5,30,0,0,0,2.2,-4.800000000000001,117.42,939,-7.5 +2013,1,6,6,30,0,0,0,2.1,-5,105.12,940,-7 +2013,1,6,7,30,0,0,0,2.5,-3.8000000000000003,93.29,940,-6.6000000000000005 +2013,1,6,8,30,121,29,663,2.9000000000000004,-1.1,82.06,940,-5.9 +2013,1,6,9,30,313,42,879,2.5,2.2,72.10000000000001,941,-5 +2013,1,6,10,30,478,50,968,2.5,5.9,63.72,941,-4.3 +2013,1,6,11,30,592,52,1011,2.5,8.5,57.71,940,-4.800000000000001 +2013,1,6,12,30,647,58,1023,2.2,10,54.86,939,-5 +2013,1,6,13,30,632,56,1021,2,10.8,55.67,938,-5 +2013,1,6,14,30,551,53,995,2,11,60,938,-5.2 +2013,1,6,15,30,412,48,936,1.7000000000000002,10.3,67.15,937,-5.2 +2013,1,6,16,30,230,38,810,1.3,7.7,76.31,937,-3.1 +2013,1,6,17,30,44,18,461,1.2000000000000002,5.6000000000000005,86.72,937,-3 +2013,1,6,18,30,0,0,0,1.4000000000000001,2.8000000000000003,98.4,937,-4.7 +2013,1,6,19,30,0,0,0,1.5,1.7000000000000002,110.46000000000001,937,-5.1000000000000005 +2013,1,6,20,30,0,0,0,1.5,0.7000000000000001,122.9,937,-5.4 +2013,1,6,21,30,0,0,0,1.5,-0.1,135.54,937,-5.7 +2013,1,6,22,30,0,0,0,1.6,-0.8,148.15,937,-6 +2013,1,6,23,30,0,0,0,1.6,-1.5,160.25,937,-6.1000000000000005 +2013,1,7,0,30,0,0,0,1.7000000000000002,-1.9000000000000001,169.32,936,-6.1000000000000005 +2013,1,7,1,30,0,0,0,1.7000000000000002,-1.8,166.19,936,-6 +2013,1,7,2,30,0,0,0,1.6,-1.7000000000000002,155.13,935,-5.9 +2013,1,7,3,30,0,0,0,1.5,-2.1,142.69,935,-5.7 +2013,1,7,4,30,0,0,0,1.4000000000000001,-3,130.03,935,-5.6000000000000005 +2013,1,7,5,30,0,0,0,1.4000000000000001,-3.7,117.45,935,-5.6000000000000005 +2013,1,7,6,30,0,0,0,1.5,-3.5,105.15,935,-5.4 +2013,1,7,7,30,0,0,0,1.9000000000000001,-2,93.3,935,-5.2 +2013,1,7,8,30,79,47,229,2.6,-0.1,82.06,935,-4.800000000000001 +2013,1,7,9,30,250,83,540,2.9000000000000004,1.7000000000000002,72.07000000000001,935,-4.6000000000000005 +2013,1,7,10,30,279,197,185,3.3000000000000003,4.3,63.660000000000004,934,-4.1000000000000005 +2013,1,7,11,30,374,245,242,4,6.9,57.620000000000005,933,-4.4 +2013,1,7,12,30,419,267,263,4,8,54.74,932,-5.1000000000000005 +2013,1,7,13,30,394,265,228,3.6,8.1,55.53,931,-5 +2013,1,7,14,30,398,199,395,3.4000000000000004,8.200000000000001,59.84,931,-4.7 +2013,1,7,15,30,198,167,79,3.1,8,66.98,930,-4.4 +2013,1,7,16,30,225,45,753,2.2,5.7,76.15,930,-3.7 +2013,1,7,17,30,25,22,52,1.5,3.7,86.57000000000001,930,-3 +2013,1,7,18,30,0,0,0,1.8,1.5,98.25,930,-3.5 +2013,1,7,19,30,0,0,0,2,1.5,110.32000000000001,930,-3.3000000000000003 +2013,1,7,20,30,0,0,0,2.2,1.3,122.76,929,-3 +2013,1,7,21,30,0,0,0,2.2,1.1,135.39000000000001,929,-2.8000000000000003 +2013,1,7,22,30,0,0,0,2.1,0.9,148.01,929,-2.6 +2013,1,7,23,30,0,0,0,2,0.5,160.1,929,-2.2 +2013,1,8,0,30,0,0,0,1.9000000000000001,0.1,169.17000000000002,928,-1.9000000000000001 +2013,1,8,1,30,0,0,0,1.9000000000000001,-0.4,166.16,928,-1.6 +2013,1,8,2,30,0,0,0,1.7000000000000002,-1,155.15,928,-1.4000000000000001 +2013,1,8,3,30,0,0,0,1.6,-1.5,142.73,928,-1.5 +2013,1,8,4,30,0,0,0,1.4000000000000001,-1.8,130.07,927,-1.8 +2013,1,8,5,30,0,0,0,1.2000000000000002,-1.8,117.48,927,-1.8 +2013,1,8,6,30,0,0,0,1.1,-1,105.17,928,-1 +2013,1,8,7,30,0,0,0,1.3,0.7000000000000001,93.31,928,0.4 +2013,1,8,8,30,101,45,403,1.6,2.2,82.05,929,0.9 +2013,1,8,9,30,10,10,0,1.8,3.1,72.03,929,1.4000000000000001 +2013,1,8,10,30,32,32,0,1.9000000000000001,4.2,63.6,928,2.1 +2013,1,8,11,30,29,29,0,2,5.300000000000001,57.52,927,3.1 +2013,1,8,12,30,107,107,0,2.1,6.300000000000001,54.61,926,4.1000000000000005 +2013,1,8,13,30,125,125,0,2.3000000000000003,7.1000000000000005,55.370000000000005,925,4.800000000000001 +2013,1,8,14,30,128,128,0,2.6,7.5,59.67,924,5.300000000000001 +2013,1,8,15,30,72,72,0,2.9000000000000004,7.4,66.82000000000001,925,5.5 +2013,1,8,16,30,13,13,0,2.6,6.7,75.98,926,5.6000000000000005 +2013,1,8,17,30,38,25,215,2.3000000000000003,6.1000000000000005,86.42,926,5.6000000000000005 +2013,1,8,18,30,0,0,0,2.7,5,98.09,927,5 +2013,1,8,19,30,0,0,0,3.2,4.5,110.17,928,4.5 +2013,1,8,20,30,0,0,0,3.8000000000000003,4.1000000000000005,122.61,927,4.1000000000000005 +2013,1,8,21,30,0,0,0,3.6,4,135.25,928,4 +2013,1,8,22,30,0,0,0,3.7,4,147.86,929,4 +2013,1,8,23,30,0,0,0,4.4,4,159.94,928,4 +2013,1,9,0,30,0,0,0,3.8000000000000003,3.9000000000000004,169,929,3.9000000000000004 +2013,1,9,1,30,0,0,0,2.7,3.9000000000000004,166.11,930,3.9000000000000004 +2013,1,9,2,30,0,0,0,2.6,3.9000000000000004,155.16,931,3.9000000000000004 +2013,1,9,3,30,0,0,0,2.9000000000000004,4,142.76,931,4 +2013,1,9,4,30,0,0,0,3.1,4,130.1,931,4 +2013,1,9,5,30,0,0,0,4,3.9000000000000004,117.51,931,3.9000000000000004 +2013,1,9,6,30,0,0,0,4.7,3.9000000000000004,105.18,931,3.9000000000000004 +2013,1,9,7,30,0,0,0,4.9,4.1000000000000005,93.31,931,4.1000000000000005 +2013,1,9,8,30,22,22,0,5.4,4.7,82.03,932,4.3 +2013,1,9,9,30,21,21,0,5.9,5.7,71.99,932,4.7 +2013,1,9,10,30,32,32,0,6.6000000000000005,6.300000000000001,63.53,931,5 +2013,1,9,11,30,123,123,0,6.2,6.2,57.42,930,5 +2013,1,9,12,30,253,235,31,5.5,5.800000000000001,54.480000000000004,930,4.800000000000001 +2013,1,9,13,30,61,61,0,5.9,5.300000000000001,55.22,928,4.6000000000000005 +2013,1,9,14,30,57,57,0,5.800000000000001,5,59.5,927,4.4 +2013,1,9,15,30,98,98,0,5.4,4.800000000000001,66.64,927,4.3 +2013,1,9,16,30,7,7,0,4.9,4.5,75.81,928,4.3 +2013,1,9,17,30,4,4,0,4.5,4.4,86.26,928,4.4 +2013,1,9,18,30,0,0,0,3.4000000000000004,4.3,97.93,928,4.3 +2013,1,9,19,30,0,0,0,2.7,4.3,110.01,928,4.3 +2013,1,9,20,30,0,0,0,2,4.3,122.46000000000001,928,4.3 +2013,1,9,21,30,0,0,0,1.5,4.3,135.1,928,4.3 +2013,1,9,22,30,0,0,0,1.1,4.4,147.71,928,4.4 +2013,1,9,23,30,0,0,0,0.5,4.3,159.78,927,4.3 +2013,1,10,0,30,0,0,0,0.30000000000000004,4,168.83,927,4 +2013,1,10,1,30,0,0,0,0.8,3.8000000000000003,166.06,926,3.8000000000000003 +2013,1,10,2,30,0,0,0,1.6,3.8000000000000003,155.17000000000002,925,3.8000000000000003 +2013,1,10,3,30,0,0,0,2.3000000000000003,3.9000000000000004,142.78,924,3.9000000000000004 +2013,1,10,4,30,0,0,0,1.9000000000000001,4,130.12,924,4 +2013,1,10,5,30,0,0,0,1.4000000000000001,4,117.53,925,4 +2013,1,10,6,30,0,0,0,1.6,4.2,105.19,926,4.2 +2013,1,10,7,30,0,0,0,2.4000000000000004,4.5,93.3,927,4.2 +2013,1,10,8,30,108,39,496,3.4000000000000004,5.4,82.01,927,4.1000000000000005 +2013,1,10,9,30,124,117,22,4,7.2,71.95,927,4.3 +2013,1,10,10,30,271,200,157,4.5,9.700000000000001,63.46,926,4.7 +2013,1,10,11,30,331,254,144,5.1000000000000005,12.100000000000001,57.31,925,4.800000000000001 +2013,1,10,12,30,630,67,964,5.4,13.700000000000001,54.33,924,4.5 +2013,1,10,13,30,615,65,960,5.300000000000001,14.5,55.050000000000004,924,4.5 +2013,1,10,14,30,538,61,935,5,14.8,59.33,924,4.5 +2013,1,10,15,30,403,54,873,4.2,14.3,66.47,924,4.6000000000000005 +2013,1,10,16,30,228,43,747,2.5,11.8,75.64,924,5 +2013,1,10,17,30,48,20,411,1.5,9.8,86.10000000000001,925,5.300000000000001 +2013,1,10,18,30,0,0,0,2.1,7.4,97.78,925,4.4 +2013,1,10,19,30,0,0,0,2.7,6.9,109.86,925,3.9000000000000004 +2013,1,10,20,30,0,0,0,3.2,6.2,122.31,925,3.1 +2013,1,10,21,30,0,0,0,3.3000000000000003,5.5,134.95,925,2.1 +2013,1,10,22,30,0,0,0,3.5,4.9,147.56,925,1.3 +2013,1,10,23,30,0,0,0,3.9000000000000004,4.5,159.61,924,1 +2013,1,11,0,30,0,0,0,4.3,4.2,168.65,924,1 +2013,1,11,1,30,0,0,0,4.5,4.2,166,924,1.3 +2013,1,11,2,30,0,0,0,4.6000000000000005,4.3,155.17000000000002,924,1.7000000000000002 +2013,1,11,3,30,0,0,0,4.6000000000000005,4.4,142.8,923,2.2 +2013,1,11,4,30,0,0,0,4.800000000000001,4.7,130.14000000000001,923,2.7 +2013,1,11,5,30,0,0,0,4.9,5,117.54,922,3 +2013,1,11,6,30,0,0,0,5,5.300000000000001,105.2,922,3.2 +2013,1,11,7,30,0,0,0,5.4,6.2,93.29,923,3.6 +2013,1,11,8,30,78,49,213,5.9,8.4,81.98,923,4.1000000000000005 +2013,1,11,9,30,259,79,580,7.1000000000000005,11.9,71.9,923,5 +2013,1,11,10,30,383,140,544,8.3,15.4,63.370000000000005,923,5.4 +2013,1,11,11,30,516,125,723,8.200000000000001,17.5,57.19,921,5.1000000000000005 +2013,1,11,12,30,648,67,992,7.6000000000000005,18.400000000000002,54.18,920,4.7 +2013,1,11,13,30,636,68,986,7,18.900000000000002,54.88,919,4.3 +2013,1,11,14,30,456,151,595,6.2,19.200000000000003,59.14,919,3.9000000000000004 +2013,1,11,15,30,234,176,144,4.7,18.1,66.29,919,3.6 +2013,1,11,16,30,106,96,37,3.1,15.3,75.47,919,4.7 +2013,1,11,17,30,25,24,5,2.5,13.700000000000001,85.94,920,5.2 +2013,1,11,18,30,0,0,0,2.7,12.200000000000001,97.61,920,5.1000000000000005 +2013,1,11,19,30,0,0,0,3,12,109.7,921,5.300000000000001 +2013,1,11,20,30,0,0,0,3.1,11.5,122.16,921,5.5 +2013,1,11,21,30,0,0,0,2.7,10.700000000000001,134.8,922,5.6000000000000005 +2013,1,11,22,30,0,0,0,2.1,9.700000000000001,147.4,922,5.6000000000000005 +2013,1,11,23,30,0,0,0,1.7000000000000002,8.9,159.44,922,5.300000000000001 +2013,1,12,0,30,0,0,0,1.6,8.3,168.47,923,4.800000000000001 +2013,1,12,1,30,0,0,0,1.7000000000000002,7.6000000000000005,165.93,923,3.9000000000000004 +2013,1,12,2,30,0,0,0,2.3000000000000003,6.9,155.16,923,2.7 +2013,1,12,3,30,0,0,0,3,5.9,142.81,923,1 +2013,1,12,4,30,0,0,0,3.4000000000000004,4.7,130.15,922,-0.8 +2013,1,12,5,30,0,0,0,3.7,3.6,117.55,922,-3 +2013,1,12,6,30,0,0,0,3.8000000000000003,3,105.19,922,-5.300000000000001 +2013,1,12,7,30,0,0,0,3.9000000000000004,3.2,93.28,922,-6.2 +2013,1,12,8,30,39,39,0,4.3,4.3,81.95,923,-6.2 +2013,1,12,9,30,19,19,0,4.6000000000000005,5.9,71.84,923,-6.1000000000000005 +2013,1,12,10,30,206,186,45,4.800000000000001,7.4,63.28,923,-6.1000000000000005 +2013,1,12,11,30,181,177,7,4.800000000000001,8.5,57.07,923,-5.9 +2013,1,12,12,30,176,174,4,4.7,9.3,54.03,922,-5.7 +2013,1,12,13,30,99,99,0,4.6000000000000005,9.600000000000001,54.7,922,-5.4 +2013,1,12,14,30,94,94,0,4.7,9.3,58.96,922,-5.4 +2013,1,12,15,30,228,178,123,4.800000000000001,8.3,66.1,922,-5.6000000000000005 +2013,1,12,16,30,245,49,774,4.2,6.300000000000001,75.29,923,-5.800000000000001 +2013,1,12,17,30,56,24,430,3.7,4.9,85.77,924,-5.300000000000001 +2013,1,12,18,30,0,0,0,3.9000000000000004,1.9000000000000001,97.45,925,-5.1000000000000005 +2013,1,12,19,30,0,0,0,4.4,0.5,109.55,926,-5.300000000000001 +2013,1,12,20,30,0,0,0,4.7,-0.9,122.01,926,-5.2 +2013,1,12,21,30,0,0,0,4.6000000000000005,-2.1,134.65,927,-5 +2013,1,12,22,30,0,0,0,4.5,-3,147.25,927,-4.9 +2013,1,12,23,30,0,0,0,4.2,-3.6,159.27,928,-5.2 +2013,1,13,0,30,0,0,0,3.9000000000000004,-4.2,168.28,929,-5.9 +2013,1,13,1,30,0,0,0,3.8000000000000003,-4.7,165.85,930,-6.7 +2013,1,13,2,30,0,0,0,3.7,-5.2,155.15,930,-7.6000000000000005 +2013,1,13,3,30,0,0,0,3.7,-5.7,142.81,931,-8.6 +2013,1,13,4,30,0,0,0,3.8000000000000003,-6.1000000000000005,130.16,931,-9.5 +2013,1,13,5,30,0,0,0,3.8000000000000003,-6.5,117.55,932,-10.3 +2013,1,13,6,30,0,0,0,3.6,-6.7,105.19,933,-11 +2013,1,13,7,30,0,0,0,4,-6.2,93.26,934,-11.4 +2013,1,13,8,30,125,34,648,4.7,-4.6000000000000005,81.9,935,-12 +2013,1,13,9,30,324,51,872,4.7,-2.6,71.77,935,-13.100000000000001 +2013,1,13,10,30,496,60,967,4.3,-0.8,63.190000000000005,935,-12.8 +2013,1,13,11,30,616,65,1011,4.1000000000000005,0.8,56.94,934,-12.100000000000001 +2013,1,13,12,30,673,67,1028,3.8000000000000003,2.1,53.86,933,-11.4 +2013,1,13,13,30,661,66,1025,3.6,3,54.51,932,-10.9 +2013,1,13,14,30,582,63,1000,3.5,3.3000000000000003,58.76,932,-10.600000000000001 +2013,1,13,15,30,442,56,946,3.5,2.9000000000000004,65.91,932,-10.4 +2013,1,13,16,30,257,44,828,2.6,1,75.10000000000001,932,-10.4 +2013,1,13,17,30,62,23,502,1.8,-0.5,85.59,933,-8.700000000000001 +2013,1,13,18,30,0,0,0,1.8,-3.3000000000000003,97.29,933,-8.8 +2013,1,13,19,30,0,0,0,1.9000000000000001,-4,109.39,934,-9.3 +2013,1,13,20,30,0,0,0,2.1,-4.6000000000000005,121.86,934,-9.600000000000001 +2013,1,13,21,30,0,0,0,2.5,-5.1000000000000005,134.5,934,-10 +2013,1,13,22,30,0,0,0,3,-5.6000000000000005,147.09,934,-10.5 +2013,1,13,23,30,0,0,0,3.1,-6.1000000000000005,159.1,934,-10.9 +2013,1,14,0,30,0,0,0,2.7,-6.5,168.09,934,-11.200000000000001 +2013,1,14,1,30,0,0,0,2.4000000000000004,-6.9,165.76,935,-11.4 +2013,1,14,2,30,0,0,0,2.4000000000000004,-7,155.13,935,-11.600000000000001 +2013,1,14,3,30,0,0,0,2.6,-7.1000000000000005,142.81,935,-11.8 +2013,1,14,4,30,0,0,0,2.7,-7.1000000000000005,130.17000000000002,935,-12 +2013,1,14,5,30,0,0,0,2.8000000000000003,-7,117.55,935,-12.100000000000001 +2013,1,14,6,30,0,0,0,2.9000000000000004,-6.9,105.18,936,-12.100000000000001 +2013,1,14,7,30,0,0,0,3.5,-6.1000000000000005,93.23,936,-12.100000000000001 +2013,1,14,8,30,122,34,626,4.3,-4.4,81.86,936,-12.4 +2013,1,14,9,30,319,50,854,4.6000000000000005,-2.3000000000000003,71.7,936,-12.600000000000001 +2013,1,14,10,30,488,58,951,4.2,-0.4,63.08,935,-12.3 +2013,1,14,11,30,608,63,995,3.7,1.3,56.800000000000004,934,-11.8 +2013,1,14,12,30,664,64,1014,3.4000000000000004,2.7,53.69,933,-11.200000000000001 +2013,1,14,13,30,653,63,1011,3.3000000000000003,3.5,54.32,932,-10.700000000000001 +2013,1,14,14,30,575,60,987,3.3000000000000003,3.8000000000000003,58.56,932,-10.200000000000001 +2013,1,14,15,30,437,54,931,3.2,3.5,65.71000000000001,932,-9.9 +2013,1,14,16,30,255,45,810,2.2,1.2000000000000002,74.92,933,-9.600000000000001 +2013,1,14,17,30,62,23,489,1.3,-0.7000000000000001,85.42,933,-7.800000000000001 +2013,1,14,18,30,0,0,0,1.4000000000000001,-3.4000000000000004,97.12,934,-8.8 +2013,1,14,19,30,0,0,0,1.7000000000000002,-3.9000000000000004,109.23,934,-9.4 +2013,1,14,20,30,0,0,0,2,-4.2,121.7,934,-10 +2013,1,14,21,30,0,0,0,2.2,-4.5,134.35,933,-10.4 +2013,1,14,22,30,0,0,0,2.2,-4.9,146.94,933,-10.700000000000001 +2013,1,14,23,30,0,0,0,2.2,-5.4,158.93,933,-10.8 +2013,1,15,0,30,0,0,0,2.3000000000000003,-5.7,167.89000000000001,933,-10.8 +2013,1,15,1,30,0,0,0,2.4000000000000004,-5.9,165.67000000000002,933,-10.9 +2013,1,15,2,30,0,0,0,2.7,-6.2,155.11,933,-11 +2013,1,15,3,30,0,0,0,2.8000000000000003,-6.4,142.81,933,-11 +2013,1,15,4,30,0,0,0,2.9000000000000004,-6.6000000000000005,130.16,933,-11 +2013,1,15,5,30,0,0,0,2.9000000000000004,-6.7,117.55,933,-10.9 +2013,1,15,6,30,0,0,0,2.9000000000000004,-6.7,105.16,933,-10.9 +2013,1,15,7,30,0,0,0,3.3000000000000003,-6,93.2,933,-10.8 +2013,1,15,8,30,120,35,595,3.8000000000000003,-4,81.8,934,-10.8 +2013,1,15,9,30,41,41,0,4.1000000000000005,-1.3,71.62,934,-10.8 +2013,1,15,10,30,111,111,0,4.3,0.9,62.97,934,-10.4 +2013,1,15,11,30,204,196,14,4.5,2.3000000000000003,56.65,933,-9.8 +2013,1,15,12,30,201,196,9,4.800000000000001,3.1,53.52,932,-9.700000000000001 +2013,1,15,13,30,168,166,2,5,3.4000000000000004,54.13,932,-9.700000000000001 +2013,1,15,14,30,183,179,9,5.1000000000000005,3.2,58.36,932,-9.8 +2013,1,15,15,30,434,65,890,4.800000000000001,2.6,65.52,933,-9.8 +2013,1,15,16,30,253,51,766,3.4000000000000004,0.5,74.73,934,-9.600000000000001 +2013,1,15,17,30,63,26,456,2.3000000000000003,-1,85.25,934,-8.8 +2013,1,15,18,30,0,0,0,1.6,-3.9000000000000004,96.95,935,-9 +2013,1,15,19,30,0,0,0,1.4000000000000001,-4.3,109.07000000000001,935,-9.3 +2013,1,15,20,30,0,0,0,1.2000000000000002,-4.5,121.55,935,-9.5 +2013,1,15,21,30,0,0,0,1.2000000000000002,-4.6000000000000005,134.2,935,-9.700000000000001 +2013,1,15,22,30,0,0,0,1.1,-5,146.78,935,-9.700000000000001 +2013,1,15,23,30,0,0,0,1.2000000000000002,-5.4,158.75,935,-9.700000000000001 +2013,1,16,0,30,0,0,0,1.3,-5.5,167.68,934,-9.700000000000001 +2013,1,16,1,30,0,0,0,1.5,-5.6000000000000005,165.56,934,-9.600000000000001 +2013,1,16,2,30,0,0,0,1.8,-5.6000000000000005,155.07,934,-9.600000000000001 +2013,1,16,3,30,0,0,0,2,-5.6000000000000005,142.8,934,-9.600000000000001 +2013,1,16,4,30,0,0,0,2.2,-5.7,130.16,934,-9.600000000000001 +2013,1,16,5,30,0,0,0,2.2,-5.800000000000001,117.53,934,-9.8 +2013,1,16,6,30,0,0,0,2.1,-5.9,105.13,935,-10 +2013,1,16,7,30,0,0,0,2.6,-5,93.16,935,-10.200000000000001 +2013,1,16,8,30,127,32,665,3.1,-2.4000000000000004,81.75,935,-10.200000000000001 +2013,1,16,9,30,327,47,884,3.2,1.1,71.53,936,-10.200000000000001 +2013,1,16,10,30,494,53,966,3.7,4,62.86,935,-11.700000000000001 +2013,1,16,11,30,608,55,1002,4.2,5.800000000000001,56.5,934,-12.3 +2013,1,16,12,30,661,57,1012,4.7,7.1000000000000005,53.33,933,-11.8 +2013,1,16,13,30,643,56,997,5.2,8.1,53.92,933,-10.100000000000001 +2013,1,16,14,30,564,53,969,5.4,8.6,58.15,932,-8.200000000000001 +2013,1,16,15,30,428,48,910,4.800000000000001,8.5,65.31,933,-6.5 +2013,1,16,16,30,250,39,790,3.1,5.9,74.54,933,-4.9 +2013,1,16,17,30,64,21,493,2,3.6,85.08,933,-3.6 +2013,1,16,18,30,0,0,0,1.8,1,96.78,935,-3.9000000000000004 +2013,1,16,19,30,0,0,0,1.7000000000000002,0.5,108.91,935,-3.8000000000000003 +2013,1,16,20,30,0,0,0,1.7000000000000002,0.1,121.39,936,-3.6 +2013,1,16,21,30,0,0,0,1.8,-0.30000000000000004,134.04,936,-3.2 +2013,1,16,22,30,0,0,0,1.9000000000000001,-0.7000000000000001,146.62,936,-2.7 +2013,1,16,23,30,0,0,0,2.1,-1,158.57,937,-2.3000000000000003 +2013,1,17,0,30,0,0,0,2.3000000000000003,-1.2000000000000002,167.47,937,-2.1 +2013,1,17,1,30,0,0,0,2.4000000000000004,-1.5,165.44,938,-2.1 +2013,1,17,2,30,0,0,0,2.4000000000000004,-1.7000000000000002,155.03,938,-2.2 +2013,1,17,3,30,0,0,0,2.5,-1.8,142.78,938,-2.4000000000000004 +2013,1,17,4,30,0,0,0,2.7,-1.8,130.14000000000001,938,-2.5 +2013,1,17,5,30,0,0,0,2.9000000000000004,-1.9000000000000001,117.51,939,-2.6 +2013,1,17,6,30,0,0,0,2.9000000000000004,-2.1,105.11,940,-2.7 +2013,1,17,7,30,0,0,0,3.3000000000000003,-1,93.11,941,-2.8000000000000003 +2013,1,17,8,30,121,29,638,3.7,1.7000000000000002,81.68,942,-2.9000000000000004 +2013,1,17,9,30,313,41,853,3.5,5.1000000000000005,71.44,943,-2.6 +2013,1,17,10,30,481,50,941,3.6,8.6,62.730000000000004,943,-2.8000000000000003 +2013,1,17,11,30,599,54,984,3.6,11.3,56.34,943,-3.3000000000000003 +2013,1,17,12,30,656,56,1002,3.5,13,53.14,942,-3.8000000000000003 +2013,1,17,13,30,646,55,999,3.3000000000000003,13.5,53.71,941,-3.6 +2013,1,17,14,30,570,53,975,3,13.5,57.94,941,-3.3000000000000003 +2013,1,17,15,30,437,51,917,2.4000000000000004,12.700000000000001,65.11,941,-2.9000000000000004 +2013,1,17,16,30,258,41,804,1.6,9.9,74.35000000000001,941,-1.4000000000000001 +2013,1,17,17,30,68,23,508,1.2000000000000002,7.800000000000001,84.9,941,0.1 +2013,1,17,18,30,0,0,0,1.4000000000000001,5.5,96.61,942,-1.6 +2013,1,17,19,30,0,0,0,1.3,5,108.75,942,-1.9000000000000001 +2013,1,17,20,30,0,0,0,1.3,4.4,121.24000000000001,943,-2.1 +2013,1,17,21,30,0,0,0,1.3,3.8000000000000003,133.89000000000001,943,-2.2 +2013,1,17,22,30,0,0,0,1.3,3.1,146.46,943,-2.3000000000000003 +2013,1,17,23,30,0,0,0,1.3,2.4000000000000004,158.39000000000001,942,-2.4000000000000004 +2013,1,18,0,30,0,0,0,1.3,1.7000000000000002,167.26,942,-2.5 +2013,1,18,1,30,0,0,0,1.3,0.9,165.32,942,-2.6 +2013,1,18,2,30,0,0,0,1.4000000000000001,0.1,154.99,942,-2.7 +2013,1,18,3,30,0,0,0,1.4000000000000001,-0.8,142.76,941,-2.7 +2013,1,18,4,30,0,0,0,1.5,-1.5,130.12,941,-2.6 +2013,1,18,5,30,0,0,0,1.7000000000000002,-1.8,117.49000000000001,941,-2.5 +2013,1,18,6,30,0,0,0,2.1,-1.9000000000000001,105.07000000000001,941,-2.3000000000000003 +2013,1,18,7,30,0,0,0,3.2,-0.2,93.06,941,-2.1 +2013,1,18,8,30,123,32,626,4.1000000000000005,2.9000000000000004,81.61,941,-1.6 +2013,1,18,9,30,317,48,841,4.5,6.6000000000000005,71.34,941,-0.9 +2013,1,18,10,30,486,58,932,5.300000000000001,10.600000000000001,62.6,941,-0.6000000000000001 +2013,1,18,11,30,606,63,975,5.5,13.4,56.18,939,-1.2000000000000002 +2013,1,18,12,30,664,68,989,5.300000000000001,15.100000000000001,52.95,938,-1.4000000000000001 +2013,1,18,13,30,654,68,985,5,16,53.5,936,-1.4000000000000001 +2013,1,18,14,30,578,66,960,4.800000000000001,16.3,57.72,936,-1.4000000000000001 +2013,1,18,15,30,442,60,900,4,15.5,64.9,935,-1.6 +2013,1,18,16,30,264,49,787,2.7,12.4,74.15,935,-0.6000000000000001 +2013,1,18,17,30,71,27,480,2,9.9,84.72,935,0.6000000000000001 +2013,1,18,18,30,0,0,0,2.5,7.2,96.44,935,-0.2 +2013,1,18,19,30,0,0,0,2.9000000000000004,6.7,108.58,935,-0.5 +2013,1,18,20,30,0,0,0,3.4000000000000004,6.1000000000000005,121.08,935,-0.6000000000000001 +2013,1,18,21,30,0,0,0,3.7,5.5,133.73,935,-0.6000000000000001 +2013,1,18,22,30,0,0,0,4,4.9,146.29,935,-0.6000000000000001 +2013,1,18,23,30,0,0,0,4.1000000000000005,4.4,158.20000000000002,934,-0.5 +2013,1,19,0,30,0,0,0,4.2,4,167.04,934,-0.4 +2013,1,19,1,30,0,0,0,4.3,3.7,165.19,934,-0.30000000000000004 +2013,1,19,2,30,0,0,0,4.1000000000000005,3.3000000000000003,154.93,934,-0.2 +2013,1,19,3,30,0,0,0,3.8000000000000003,2.7,142.72,933,-0.30000000000000004 +2013,1,19,4,30,0,0,0,3.6,2,130.1,933,-0.30000000000000004 +2013,1,19,5,30,0,0,0,3.5,1.4000000000000001,117.46000000000001,933,-0.2 +2013,1,19,6,30,0,0,0,3.6,1,105.03,933,-0.1 +2013,1,19,7,30,0,0,0,4.2,1.6,93.01,933,0 +2013,1,19,8,30,97,45,352,4.6000000000000005,4,81.54,933,0.2 +2013,1,19,9,30,325,49,856,4.7,7.7,71.24,933,0.5 +2013,1,19,10,30,495,57,948,4.9,11.700000000000001,62.47,933,0.30000000000000004 +2013,1,19,11,30,616,61,994,4.7,15,56.01,932,0.1 +2013,1,19,12,30,679,61,1021,4.5,17.400000000000002,52.74,931,-0.9 +2013,1,19,13,30,669,61,1019,4.1000000000000005,18.8,53.28,930,-2.3000000000000003 +2013,1,19,14,30,593,57,997,3.6,19.1,57.5,930,-3.1 +2013,1,19,15,30,455,51,946,2.4000000000000004,18,64.69,930,-3.6 +2013,1,19,16,30,273,41,839,1.3,14.600000000000001,73.96000000000001,930,2.1 +2013,1,19,17,30,78,23,571,1.3,12.200000000000001,84.54,931,0.9 +2013,1,19,18,30,0,0,0,1.5,8.700000000000001,96.26,932,-1.4000000000000001 +2013,1,19,19,30,0,0,0,1.6,7.2,108.42,933,-1.6 +2013,1,19,20,30,0,0,0,1.7000000000000002,5.800000000000001,120.92,933,-1.8 +2013,1,19,21,30,0,0,0,1.7000000000000002,4.6000000000000005,133.58,934,-1.9000000000000001 +2013,1,19,22,30,0,0,0,1.6,3.6,146.13,934,-2.1 +2013,1,19,23,30,0,0,0,1.5,2.7,158.02,934,-2.3000000000000003 +2013,1,20,0,30,0,0,0,1.5,2,166.81,934,-2.6 +2013,1,20,1,30,0,0,0,1.5,1.4000000000000001,165.05,934,-2.8000000000000003 +2013,1,20,2,30,0,0,0,1.6,0.8,154.87,934,-2.9000000000000004 +2013,1,20,3,30,0,0,0,1.7000000000000002,0.30000000000000004,142.69,934,-3 +2013,1,20,4,30,0,0,0,1.7000000000000002,-0.1,130.06,934,-3 +2013,1,20,5,30,0,0,0,1.7000000000000002,-0.6000000000000001,117.42,934,-3.1 +2013,1,20,6,30,0,0,0,1.6,-1,104.98,934,-3.3000000000000003 +2013,1,20,7,30,0,0,0,2,0.7000000000000001,92.94,934,-3.5 +2013,1,20,8,30,131,30,685,2.5,4.1000000000000005,81.46000000000001,934,-3.1 +2013,1,20,9,30,328,43,881,2.1,7.6000000000000005,71.13,935,-2.8000000000000003 +2013,1,20,10,30,500,50,969,1,12.100000000000001,62.32,934,-1.3 +2013,1,20,11,30,622,54,1011,0.9,15.9,55.83,933,-1 +2013,1,20,12,30,683,62,1022,1.5,17.6,52.53,932,-2.3000000000000003 +2013,1,20,13,30,674,62,1019,1.9000000000000001,18.2,53.050000000000004,931,-2.9000000000000004 +2013,1,20,14,30,598,59,997,2,18.3,57.28,930,-3.4000000000000004 +2013,1,20,15,30,461,54,943,1.6,17.400000000000002,64.47,930,-3.9000000000000004 +2013,1,20,16,30,281,46,842,1.1,15.100000000000001,73.76,930,1.6 +2013,1,20,17,30,81,26,558,1.1,13.600000000000001,84.36,930,-0.1 +2013,1,20,18,30,0,0,0,1.2000000000000002,11.600000000000001,96.09,930,-2.8000000000000003 +2013,1,20,19,30,0,0,0,1.4000000000000001,10.200000000000001,108.26,930,-3 +2013,1,20,20,30,0,0,0,1.5,8.700000000000001,120.76,931,-3 +2013,1,20,21,30,0,0,0,1.6,7.4,133.42000000000002,931,-3 +2013,1,20,22,30,0,0,0,1.6,6.300000000000001,145.97,931,-3 +2013,1,20,23,30,0,0,0,1.5,5.5,157.83,932,-3.1 +2013,1,21,0,30,0,0,0,1.4000000000000001,5.1000000000000005,166.58,932,-3.3000000000000003 +2013,1,21,1,30,0,0,0,1.1,4.7,164.9,932,-3.4000000000000004 +2013,1,21,2,30,0,0,0,1.2000000000000002,3.4000000000000004,154.8,933,-3.5 +2013,1,21,3,30,0,0,0,1.9000000000000001,1.7000000000000002,142.64000000000001,933,-3.3000000000000003 +2013,1,21,4,30,0,0,0,2.7,0.7000000000000001,130.03,933,-2.9000000000000004 +2013,1,21,5,30,0,0,0,3.4000000000000004,-0.2,117.38,934,-2.5 +2013,1,21,6,30,0,0,0,3.8000000000000003,-1.4000000000000001,104.93,935,-2.4000000000000004 +2013,1,21,7,30,0,0,0,4.4,-1.7000000000000002,92.88,936,-3 +2013,1,21,8,30,130,35,631,5.2,-0.30000000000000004,81.37,936,-4.3 +2013,1,21,9,30,328,53,848,5.300000000000001,1.7000000000000002,71.01,937,-5.4 +2013,1,21,10,30,381,166,460,5.1000000000000005,4,62.17,937,-5.7 +2013,1,21,11,30,623,67,985,4.7,6,55.64,937,-5.300000000000001 +2013,1,21,12,30,683,68,1006,4,7.6000000000000005,52.32,936,-4.7 +2013,1,21,13,30,670,67,997,3.1,8.700000000000001,52.82,935,-4 +2013,1,21,14,30,594,64,973,2.2,9.3,57.04,935,-3.3000000000000003 +2013,1,21,15,30,458,57,923,1.4000000000000001,9.200000000000001,64.25,934,-2.8000000000000003 +2013,1,21,16,30,277,47,811,0.8,8,73.55,934,-2.4000000000000004 +2013,1,21,17,30,80,27,525,0.6000000000000001,7,84.17,934,-1.4000000000000001 +2013,1,21,18,30,0,0,0,0.7000000000000001,5,95.92,935,-2.2 +2013,1,21,19,30,0,0,0,0.9,4.1000000000000005,108.09,935,-2.5 +2013,1,21,20,30,0,0,0,1,3.2,120.61,935,-2.9000000000000004 +2013,1,21,21,30,0,0,0,1.2000000000000002,2.2,133.26,935,-3.2 +2013,1,21,22,30,0,0,0,1.2000000000000002,1.4000000000000001,145.8,935,-3.4000000000000004 +2013,1,21,23,30,0,0,0,1.1,1,157.64000000000001,935,-3.6 +2013,1,22,0,30,0,0,0,1,0.8,166.35,935,-3.8000000000000003 +2013,1,22,1,30,0,0,0,1,0.6000000000000001,164.74,935,-3.8000000000000003 +2013,1,22,2,30,0,0,0,1,0.6000000000000001,154.72,935,-3.7 +2013,1,22,3,30,0,0,0,1,0.7000000000000001,142.59,935,-3.4000000000000004 +2013,1,22,4,30,0,0,0,0.9,0.8,129.98,935,-3 +2013,1,22,5,30,0,0,0,0.9,0.8,117.33,935,-2.7 +2013,1,22,6,30,0,0,0,1,0.7000000000000001,104.87,935,-2.3000000000000003 +2013,1,22,7,30,0,0,0,1.6,2,92.8,935,-1.8 +2013,1,22,8,30,118,48,467,2.7,4.7,81.27,935,-0.7000000000000001 +2013,1,22,9,30,221,126,289,3.4000000000000004,7.9,70.89,935,0.9 +2013,1,22,10,30,480,90,831,4.1000000000000005,11.700000000000001,62.02,935,4 +2013,1,22,11,30,600,95,890,4.9,15,55.45,934,7.2 +2013,1,22,12,30,665,82,949,5.1000000000000005,17.2,52.1,933,8.700000000000001 +2013,1,22,13,30,655,81,944,5,18.400000000000002,52.58,932,8.9 +2013,1,22,14,30,580,77,920,4.7,18.900000000000002,56.81,932,8.8 +2013,1,22,15,30,449,64,879,4,18.6,64.03,931,8.6 +2013,1,22,16,30,271,53,761,2.6,16,73.35000000000001,931,8.6 +2013,1,22,17,30,79,30,470,1.8,13.9,83.99,931,8.6 +2013,1,22,18,30,0,0,0,2,11,95.74000000000001,932,8.200000000000001 +2013,1,22,19,30,0,0,0,2.3000000000000003,10.4,107.93,932,8.4 +2013,1,22,20,30,0,0,0,2.9000000000000004,9.8,120.45,932,8.700000000000001 +2013,1,22,21,30,0,0,0,3.4000000000000004,9.3,133.1,933,9.1 +2013,1,22,22,30,0,0,0,3.6,8.700000000000001,145.63,933,8.700000000000001 +2013,1,22,23,30,0,0,0,3.6,8.3,157.44,933,8.3 +2013,1,23,0,30,0,0,0,3.5,8.1,166.11,933,8.1 +2013,1,23,1,30,0,0,0,3.3000000000000003,8,164.57,934,8 +2013,1,23,2,30,0,0,0,3.1,7.7,154.63,934,7.7 +2013,1,23,3,30,0,0,0,2.9000000000000004,7.6000000000000005,142.54,934,7.6000000000000005 +2013,1,23,4,30,0,0,0,2.8000000000000003,7.5,129.93,934,7.5 +2013,1,23,5,30,0,0,0,2.7,7.4,117.28,934,7.4 +2013,1,23,6,30,0,0,0,2.6,7.4,104.81,934,7.4 +2013,1,23,7,30,0,0,0,3.1,7.800000000000001,92.72,935,7.800000000000001 +2013,1,23,8,30,125,45,527,3.9000000000000004,8.700000000000001,81.18,935,7.800000000000001 +2013,1,23,9,30,325,67,784,4.5,10.5,70.76,935,8 +2013,1,23,10,30,502,72,911,4.7,13.5,61.86,935,8.1 +2013,1,23,11,30,627,72,975,4.6000000000000005,16.7,55.25,934,7.7 +2013,1,23,12,30,688,67,1005,4.6000000000000005,19.400000000000002,51.870000000000005,933,6.6000000000000005 +2013,1,23,13,30,679,65,1005,4.6000000000000005,21.200000000000003,52.34,933,4.7 +2013,1,23,14,30,607,62,990,4.7,22,56.57,932,2.5 +2013,1,23,15,30,471,55,941,3.8000000000000003,21.400000000000002,63.81,932,1 +2013,1,23,16,30,288,46,834,2.5,17.900000000000002,73.14,932,2.6 +2013,1,23,17,30,88,27,567,2,15.3,83.81,932,3.3000000000000003 +2013,1,23,18,30,0,0,0,2.3000000000000003,12,95.56,932,1.7000000000000002 +2013,1,23,19,30,0,0,0,2.6,11.200000000000001,107.76,932,1 +2013,1,23,20,30,0,0,0,2.9000000000000004,10.600000000000001,120.29,932,0.7000000000000001 +2013,1,23,21,30,0,0,0,3.2,10.200000000000001,132.94,932,0.8 +2013,1,23,22,30,0,0,0,3.5,9.8,145.47,933,1.6 +2013,1,23,23,30,0,0,0,3.9000000000000004,9.4,157.25,933,3.1 +2013,1,24,0,30,0,0,0,4.1000000000000005,8.9,165.86,933,4.800000000000001 +2013,1,24,1,30,0,0,0,4.1000000000000005,8.3,164.39000000000001,933,6.5 +2013,1,24,2,30,0,0,0,4.1000000000000005,7.9,154.54,933,7.6000000000000005 +2013,1,24,3,30,0,0,0,4.2,7.800000000000001,142.47,933,7.800000000000001 +2013,1,24,4,30,0,0,0,4.2,7.6000000000000005,129.88,932,7.6000000000000005 +2013,1,24,5,30,0,0,0,4,7.2,117.22,933,7.2 +2013,1,24,6,30,0,0,0,4.1000000000000005,6.7,104.74000000000001,933,6.7 +2013,1,24,7,30,0,0,0,4.4,7,92.64,933,5.7 +2013,1,24,8,30,97,51,293,4.4,8.700000000000001,81.07000000000001,934,4 +2013,1,24,9,30,282,80,610,4,11.9,70.63,934,2.5 +2013,1,24,10,30,508,60,945,3.7,15.9,61.690000000000005,934,1.4000000000000001 +2013,1,24,11,30,631,65,989,3.6,19.200000000000003,55.050000000000004,933,0.2 +2013,1,24,12,30,691,65,1009,3.7,21.700000000000003,51.63,932,0 +2013,1,24,13,30,680,64,1002,3.7,23.3,52.09,931,0.6000000000000001 +2013,1,24,14,30,605,61,980,3.4000000000000004,24.1,56.33,930,1.4000000000000001 +2013,1,24,15,30,467,57,923,2.4000000000000004,23.1,63.58,929,2.1 +2013,1,24,16,30,285,48,809,1.3,20.200000000000003,72.93,929,7.4 +2013,1,24,17,30,78,31,420,1.2000000000000002,18.400000000000002,83.62,929,6.5 +2013,1,24,18,30,0,0,0,2,15.3,95.39,929,5.4 +2013,1,24,19,30,0,0,0,2.7,14.5,107.59,929,5.5 +2013,1,24,20,30,0,0,0,3.4000000000000004,14,120.13,929,5.7 +2013,1,24,21,30,0,0,0,3.9000000000000004,13.3,132.78,929,5.9 +2013,1,24,22,30,0,0,0,4.1000000000000005,12.600000000000001,145.3,929,6.300000000000001 +2013,1,24,23,30,0,0,0,4.1000000000000005,12.100000000000001,157.05,929,6.7 +2013,1,25,0,30,0,0,0,4,11.8,165.61,929,7 +2013,1,25,1,30,0,0,0,4,11.4,164.21,929,7.2 +2013,1,25,2,30,0,0,0,3.8000000000000003,10.700000000000001,154.44,929,7.2 +2013,1,25,3,30,0,0,0,3.6,9.700000000000001,142.4,929,6.9 +2013,1,25,4,30,0,0,0,3.2,8.8,129.81,929,6.300000000000001 +2013,1,25,5,30,0,0,0,2.7,7.9,117.16,929,5.5 +2013,1,25,6,30,0,0,0,2.2,7.1000000000000005,104.67,930,4.6000000000000005 +2013,1,25,7,30,0,0,0,2.7,7.2,92.55,931,3.8000000000000003 +2013,1,25,8,30,76,58,111,3.6,7.800000000000001,80.96000000000001,932,2.7 +2013,1,25,9,30,218,133,255,4,8.200000000000001,70.49,933,1.9000000000000001 +2013,1,25,10,30,391,171,460,4.2,8.4,61.51,933,1.3 +2013,1,25,11,30,454,247,359,4,8.9,54.84,933,1.1 +2013,1,25,12,30,502,273,366,3.7,9.700000000000001,51.39,932,1 +2013,1,25,13,30,551,209,553,3.2,10.4,51.84,932,0.9 +2013,1,25,14,30,450,228,398,2.9000000000000004,10.8,56.08,931,0.9 +2013,1,25,15,30,453,63,870,2.7,10.700000000000001,63.35,931,0.8 +2013,1,25,16,30,251,68,618,2.2,9.700000000000001,72.72,931,0.6000000000000001 +2013,1,25,17,30,46,41,50,1.8,9,83.42,932,1 +2013,1,25,18,30,0,0,0,1.5,7,95.21000000000001,932,1.2000000000000002 +2013,1,25,19,30,0,0,0,1.5,6.4,107.43,932,0.6000000000000001 +2013,1,25,20,30,0,0,0,1.4000000000000001,5.800000000000001,119.97,933,0.4 +2013,1,25,21,30,0,0,0,1.1,5.2,132.62,933,0.2 +2013,1,25,22,30,0,0,0,0.8,4.6000000000000005,145.13,933,0.2 +2013,1,25,23,30,0,0,0,0.6000000000000001,4.1000000000000005,156.85,933,0.1 +2013,1,26,0,30,0,0,0,0.4,3.9000000000000004,165.36,933,-0.30000000000000004 +2013,1,26,1,30,0,0,0,0.4,3.6,164.02,933,-0.6000000000000001 +2013,1,26,2,30,0,0,0,0.5,3.2,154.33,932,-0.8 +2013,1,26,3,30,0,0,0,0.7000000000000001,2.8000000000000003,142.33,932,-1 +2013,1,26,4,30,0,0,0,0.7000000000000001,2.6,129.75,932,-1.1 +2013,1,26,5,30,0,0,0,0.8,2.5,117.09,932,-1.1 +2013,1,26,6,30,0,0,0,0.7000000000000001,2.5,104.59,932,-1.1 +2013,1,26,7,30,0,0,0,0.7000000000000001,3.6,92.45,932,-1.1 +2013,1,26,8,30,130,35,596,0.8,5.800000000000001,80.84,933,-0.7000000000000001 +2013,1,26,9,30,238,124,338,0.9,8.5,70.34,933,-0.30000000000000004 +2013,1,26,10,30,381,183,412,1.3,11.4,61.33,933,0.4 +2013,1,26,11,30,459,247,366,1.7000000000000002,13.9,54.620000000000005,932,1.4000000000000001 +2013,1,26,12,30,540,241,476,2.3000000000000003,15.8,51.15,931,3 +2013,1,26,13,30,651,78,922,2.9000000000000004,17,51.58,929,4.7 +2013,1,26,14,30,436,242,344,3.5,17.2,55.83,929,6.300000000000001 +2013,1,26,15,30,265,203,138,3.8000000000000003,16.7,63.120000000000005,928,7.6000000000000005 +2013,1,26,16,30,46,46,0,3.2,15.200000000000001,72.51,928,8.6 +2013,1,26,17,30,85,33,434,2.6,14,83.24,928,9.3 +2013,1,26,18,30,0,0,0,2.7,11.600000000000001,95.03,929,9.8 +2013,1,26,19,30,0,0,0,3.1,11.200000000000001,107.26,929,10.5 +2013,1,26,20,30,0,0,0,3.4000000000000004,10.8,119.81,928,10.8 +2013,1,26,21,30,0,0,0,3.4000000000000004,10.8,132.46,928,10.8 +2013,1,26,22,30,0,0,0,3.3000000000000003,10.8,144.96,929,10.8 +2013,1,26,23,30,0,0,0,3.3000000000000003,10.8,156.64000000000001,929,10.8 +2013,1,27,0,30,0,0,0,3.6,10.8,165.1,928,10.8 +2013,1,27,1,30,0,0,0,4,10.8,163.82,928,10.8 +2013,1,27,2,30,0,0,0,4.6000000000000005,10.9,154.21,928,10.9 +2013,1,27,3,30,0,0,0,4.9,11,142.24,927,10.9 +2013,1,27,4,30,0,0,0,4.7,11,129.67000000000002,927,10.9 +2013,1,27,5,30,0,0,0,4.4,10.9,117.01,927,10.9 +2013,1,27,6,30,0,0,0,4.2,10.9,104.5,927,10.9 +2013,1,27,7,30,0,0,0,4.4,11.5,92.35000000000001,928,11.5 +2013,1,27,8,30,20,20,0,5.300000000000001,13,80.72,928,11.8 +2013,1,27,9,30,253,117,403,6.5,15.600000000000001,70.19,928,12 +2013,1,27,10,30,484,73,851,6.9,18.5,61.15,928,11.4 +2013,1,27,11,30,605,79,904,6.6000000000000005,20.700000000000003,54.4,927,10.700000000000001 +2013,1,27,12,30,664,82,923,6.2,22.3,50.89,926,10.4 +2013,1,27,13,30,658,82,922,5.800000000000001,23.3,51.32,925,10.3 +2013,1,27,14,30,588,79,901,5.4,23.700000000000003,55.57,924,10.200000000000001 +2013,1,27,15,30,460,66,862,4.800000000000001,23.3,62.88,924,10 +2013,1,27,16,30,285,53,763,3.4000000000000004,21.1,72.3,924,10 +2013,1,27,17,30,93,31,512,2.5,19.3,83.05,924,10.5 +2013,1,27,18,30,0,0,0,2.8000000000000003,16.400000000000002,94.85000000000001,925,10.100000000000001 +2013,1,27,19,30,0,0,0,3.2,15.8,107.09,925,10.100000000000001 +2013,1,27,20,30,0,0,0,3.7,15.4,119.65,925,10.3 +2013,1,27,21,30,0,0,0,4.2,14.8,132.3,926,10.600000000000001 +2013,1,27,22,30,0,0,0,4.3,14.100000000000001,144.78,926,11 +2013,1,27,23,30,0,0,0,4.3,13.4,156.44,926,11.3 +2013,1,28,0,30,0,0,0,4.2,12.8,164.84,926,11.5 +2013,1,28,1,30,0,0,0,3.8000000000000003,12.100000000000001,163.61,926,11.700000000000001 +2013,1,28,2,30,0,0,0,3.4000000000000004,11.5,154.09,926,11.5 +2013,1,28,3,30,0,0,0,3,11.100000000000001,142.15,926,11.100000000000001 +2013,1,28,4,30,0,0,0,2.8000000000000003,11.100000000000001,129.59,926,11.100000000000001 +2013,1,28,5,30,0,0,0,2.8000000000000003,11.4,116.93,926,11.4 +2013,1,28,6,30,0,0,0,3,11.8,104.41,926,11.8 +2013,1,28,7,30,0,0,0,3.8000000000000003,13,92.24,926,13 +2013,1,28,8,30,130,43,530,5.4,15.4,80.59,926,14.100000000000001 +2013,1,28,9,30,222,137,248,7.1000000000000005,18.2,70.03,926,14.700000000000001 +2013,1,28,10,30,354,207,304,8,20.700000000000003,60.95,926,14.3 +2013,1,28,11,30,484,238,420,8.200000000000001,22.700000000000003,54.17,925,13.100000000000001 +2013,1,28,12,30,680,79,948,8.200000000000001,24,50.64,924,11.600000000000001 +2013,1,28,13,30,674,81,944,8,24.5,51.050000000000004,923,10 +2013,1,28,14,30,605,79,924,7.6000000000000005,24.5,55.31,922,8.4 +2013,1,28,15,30,472,69,876,6.800000000000001,23.900000000000002,62.64,921,7.300000000000001 +2013,1,28,16,30,216,111,340,5.300000000000001,21.8,72.08,921,6.9 +2013,1,28,17,30,68,43,201,4.4,20.3,82.85000000000001,921,7.4 +2013,1,28,18,30,0,0,0,4.1000000000000005,17.400000000000002,94.67,922,7.9 +2013,1,28,19,30,0,0,0,4.3,16.8,106.92,922,8.6 +2013,1,28,20,30,0,0,0,4.5,16.2,119.48,922,9.600000000000001 +2013,1,28,21,30,0,0,0,4.7,15.8,132.14000000000001,922,10.9 +2013,1,28,22,30,0,0,0,4.800000000000001,15.4,144.61,921,12.5 +2013,1,28,23,30,0,0,0,4.9,15,156.23,920,14 +2013,1,29,0,30,0,0,0,5.1000000000000005,14.8,164.57,919,14.8 +2013,1,29,1,30,0,0,0,5.6000000000000005,14.8,163.39000000000001,918,14.8 +2013,1,29,2,30,0,0,0,6.300000000000001,14.9,153.96,918,14.9 +2013,1,29,3,30,0,0,0,6.5,14.8,142.05,918,14.8 +2013,1,29,4,30,0,0,0,6.1000000000000005,14.4,129.5,917,14.4 +2013,1,29,5,30,0,0,0,5.4,13.8,116.84,917,13.8 +2013,1,29,6,30,0,0,0,4.7,13,104.31,918,13 +2013,1,29,7,30,0,0,0,4.5,12.8,92.13,918,12.8 +2013,1,29,8,30,72,62,60,4.9,13.8,80.46000000000001,918,11.5 +2013,1,29,9,30,202,145,166,5.9,15.700000000000001,69.87,918,8.700000000000001 +2013,1,29,10,30,436,133,619,7.2,17.3,60.76,918,3.9000000000000004 +2013,1,29,11,30,611,90,885,8.3,17.7,53.93,917,0.2 +2013,1,29,12,30,150,150,1,9.200000000000001,17.3,50.370000000000005,916,-2.2 +2013,1,29,13,30,576,208,582,9.9,16.6,50.77,916,-3.9000000000000004 +2013,1,29,14,30,414,265,261,10.100000000000001,15.600000000000001,55.050000000000004,916,-4.6000000000000005 +2013,1,29,15,30,391,155,510,9.8,14.100000000000001,62.4,916,-4.6000000000000005 +2013,1,29,16,30,246,92,494,9.1,12.200000000000001,71.86,917,-4.9 +2013,1,29,17,30,48,45,26,8.700000000000001,11.200000000000001,82.66,918,-6.4 +2013,1,29,18,30,0,0,0,7.2,9,94.49,919,-7.800000000000001 +2013,1,29,19,30,0,0,0,6.800000000000001,8,106.76,919,-8.3 +2013,1,29,20,30,0,0,0,6.4,7.1000000000000005,119.32000000000001,920,-8.1 +2013,1,29,21,30,0,0,0,6.1000000000000005,6.300000000000001,131.98,920,-7.9 +2013,1,29,22,30,0,0,0,6.2,5.6000000000000005,144.44,920,-8.6 +2013,1,29,23,30,0,0,0,6.300000000000001,4.800000000000001,156.02,921,-10.3 +2013,1,30,0,30,0,0,0,6.4,3.8000000000000003,164.3,921,-11.200000000000001 +2013,1,30,1,30,0,0,0,6.6000000000000005,2.5,163.17000000000002,923,-8.8 +2013,1,30,2,30,0,0,0,6.5,1.4000000000000001,153.82,924,-5.7 +2013,1,30,3,30,0,0,0,6.2,0.8,141.95000000000002,925,-4.9 +2013,1,30,4,30,0,0,0,6.1000000000000005,0.4,129.41,926,-5.800000000000001 +2013,1,30,5,30,0,0,0,6,0,116.74000000000001,927,-7.5 +2013,1,30,6,30,0,0,0,5.9,-0.30000000000000004,104.21000000000001,928,-9.1 +2013,1,30,7,30,0,0,0,6.1000000000000005,0.30000000000000004,92.01,930,-10 +2013,1,30,8,30,152,34,702,6.800000000000001,2.1,80.31,932,-10.4 +2013,1,30,9,30,363,47,910,7,4.2,69.7,933,-10.700000000000001 +2013,1,30,10,30,543,53,996,6.5,6.1000000000000005,60.550000000000004,933,-10.8 +2013,1,30,11,30,670,56,1038,6,7.6000000000000005,53.69,932,-12.100000000000001 +2013,1,30,12,30,734,58,1055,5.9,8.700000000000001,50.1,931,-13 +2013,1,30,13,30,728,59,1052,5.7,9.4,50.5,931,-13.5 +2013,1,30,14,30,652,57,1032,5.7,9.700000000000001,54.79,930,-13.8 +2013,1,30,15,30,507,53,973,5.4,9.600000000000001,62.160000000000004,930,-14 +2013,1,30,16,30,321,45,877,4,8.1,71.65,930,-13.9 +2013,1,30,17,30,113,29,643,2.7,6.800000000000001,82.46000000000001,930,-10.9 +2013,1,30,18,30,0,0,0,1.6,2.8000000000000003,94.31,931,-8.6 +2013,1,30,19,30,0,0,0,1.7000000000000002,2.2,106.59,932,-8.700000000000001 +2013,1,30,20,30,0,0,0,1.8,1.6,119.16,932,-9.200000000000001 +2013,1,30,21,30,0,0,0,1.8,1,131.82,932,-9.5 +2013,1,30,22,30,0,0,0,1.7000000000000002,0.5,144.26,932,-9.9 +2013,1,30,23,30,0,0,0,1.7000000000000002,0.1,155.81,932,-10.200000000000001 +2013,1,31,0,30,0,0,0,2,-0.1,164.03,932,-10.600000000000001 +2013,1,31,1,30,0,0,0,2.7,0.2,162.93,932,-11.200000000000001 +2013,1,31,2,30,0,0,0,3.3000000000000003,0.2,153.67000000000002,932,-11.600000000000001 +2013,1,31,3,30,0,0,0,3.5,-0.1,141.84,931,-11.5 +2013,1,31,4,30,0,0,0,3.8000000000000003,-0.4,129.31,931,-11.100000000000001 +2013,1,31,5,30,0,0,0,4,-0.7000000000000001,116.64,931,-10.8 +2013,1,31,6,30,0,0,0,3.9000000000000004,-1,104.10000000000001,932,-10.4 +2013,1,31,7,30,0,0,0,4.3,0,91.89,932,-9.9 +2013,1,31,8,30,152,30,718,4.5,2.9000000000000004,80.17,932,-9.4 +2013,1,31,9,30,358,41,905,4.6000000000000005,7.1000000000000005,69.52,933,-8 +2013,1,31,10,30,536,49,984,5.2,11.4,60.34,933,-6.4 +2013,1,31,11,30,662,53,1023,5.6000000000000005,14.5,53.45,932,-5.4 +2013,1,31,12,30,727,59,1035,5.6000000000000005,16.400000000000002,49.83,932,-5.300000000000001 +2013,1,31,13,30,629,154,742,5.2,17.3,50.21,931,-5.7 +2013,1,31,14,30,517,185,572,4.6000000000000005,17.6,54.52,931,-6.4 +2013,1,31,15,30,384,168,458,3.6,17.1,61.910000000000004,931,-6.9 +2013,1,31,16,30,327,47,878,2.2,14.3,71.43,931,-5.800000000000001 +2013,1,31,17,30,81,44,277,1.3,12,82.27,931,-1.2000000000000002 +2013,1,31,18,30,0,0,0,1.4000000000000001,9.9,94.13,932,-3.1 +2013,1,31,19,30,0,0,0,1.4000000000000001,9.4,106.42,933,-3.7 +2013,1,31,20,30,0,0,0,1.5,8.4,119,934,-4.3 +2013,1,31,21,30,0,0,0,2.1,7,131.65,934,-4.800000000000001 +2013,1,31,22,30,0,0,0,2.8000000000000003,5.7,144.08,935,-4.7 +2013,1,31,23,30,0,0,0,3.4000000000000004,4.5,155.59,936,-4.2 +2013,2,1,0,30,0,0,0,3.7,3,163.75,937,-3.8000000000000003 +2013,2,1,1,30,0,0,0,3.8000000000000003,1.5,162.70000000000002,937,-3.4000000000000004 +2013,2,1,2,30,0,0,0,3.6,0.4,153.51,937,-3.4000000000000004 +2013,2,1,3,30,0,0,0,3.1,-0.30000000000000004,141.72,937,-3.6 +2013,2,1,4,30,0,0,0,2.9000000000000004,-0.7000000000000001,129.21,937,-3.8000000000000003 +2013,2,1,5,30,0,0,0,2.8000000000000003,-1,116.54,937,-4.1000000000000005 +2013,2,1,6,30,0,0,0,2.4000000000000004,-1.3,103.98,937,-4.5 +2013,2,1,7,30,0,0,0,2.2,-0.8,91.76,938,-4.800000000000001 +2013,2,1,8,30,154,37,676,2.3000000000000003,0.9,80.02,938,-5.1000000000000005 +2013,2,1,9,30,361,53,873,2.4000000000000004,3.6,69.34,937,-5.1000000000000005 +2013,2,1,10,30,539,62,958,2.6,7.1000000000000005,60.120000000000005,937,-4.6000000000000005 +2013,2,1,11,30,666,67,1000,3.3000000000000003,10.9,53.19,936,-4 +2013,2,1,12,30,729,70,1016,4.2,14.200000000000001,49.550000000000004,935,-3.9000000000000004 +2013,2,1,13,30,722,70,1013,4.7,16.400000000000002,49.93,933,-4.1000000000000005 +2013,2,1,14,30,647,69,989,5,17.400000000000002,54.24,932,-3.9000000000000004 +2013,2,1,15,30,506,65,929,4.7,17.400000000000002,61.67,932,-3.6 +2013,2,1,16,30,320,55,823,3.4000000000000004,15.100000000000001,71.21000000000001,931,-2.7 +2013,2,1,17,30,114,35,569,2.4000000000000004,13.100000000000001,82.07000000000001,931,-0.4 +2013,2,1,18,30,0,0,0,3.4000000000000004,10.200000000000001,93.95,931,-0.5 +2013,2,1,19,30,0,0,0,4.2,9.9,106.25,931,-0.30000000000000004 +2013,2,1,20,30,0,0,0,4.5,9.200000000000001,118.84,931,0.30000000000000004 +2013,2,1,21,30,0,0,0,4.7,8.5,131.49,931,1 +2013,2,1,22,30,0,0,0,4.800000000000001,7.7,143.9,931,1.8 +2013,2,1,23,30,0,0,0,4.800000000000001,7,155.38,931,2.5 +2013,2,2,0,30,0,0,0,4.9,6.300000000000001,163.47,931,3.1 +2013,2,2,1,30,0,0,0,4.9,5.5,162.45000000000002,931,3.5 +2013,2,2,2,30,0,0,0,4.7,4.800000000000001,153.35,931,3.7 +2013,2,2,3,30,0,0,0,4.2,4,141.6,931,3.6 +2013,2,2,4,30,0,0,0,3.7,3.1,129.1,931,3.1 +2013,2,2,5,30,0,0,0,3.2,2.2,116.43,932,2.1 +2013,2,2,6,30,0,0,0,3,1.5,103.86,933,0.4 +2013,2,2,7,30,0,0,0,3.5,2.3000000000000003,91.62,934,-1.6 +2013,2,2,8,30,115,56,337,4.4,5,79.86,935,-3 +2013,2,2,9,30,267,124,404,5.1000000000000005,8.3,69.16,936,-3.3000000000000003 +2013,2,2,10,30,410,186,446,5.800000000000001,11.5,59.9,936,-2.8000000000000003 +2013,2,2,11,30,514,231,471,6.2,14.100000000000001,52.94,936,-2.7 +2013,2,2,12,30,733,69,1017,6,15.700000000000001,49.26,936,-3.1 +2013,2,2,13,30,722,69,1009,5.4,16.6,49.64,936,-3.1 +2013,2,2,14,30,648,67,988,5,16.8,53.97,935,-3.1 +2013,2,2,15,30,511,62,939,4.6000000000000005,16.3,61.42,936,-3.2 +2013,2,2,16,30,326,52,841,3.1,14,70.99,936,-3.2 +2013,2,2,17,30,119,33,606,2,12.100000000000001,81.87,936,-1 +2013,2,2,18,30,0,0,0,1.6,7.7,93.77,937,-1.2000000000000002 +2013,2,2,19,30,0,0,0,1.5,6.800000000000001,106.09,937,-1.7000000000000002 +2013,2,2,20,30,0,0,0,1.4000000000000001,6.1000000000000005,118.68,938,-2 +2013,2,2,21,30,0,0,0,1.4000000000000001,5.6000000000000005,131.33,938,-2.5 +2013,2,2,22,30,0,0,0,1.3,5.300000000000001,143.72,939,-3 +2013,2,2,23,30,0,0,0,1.2000000000000002,5,155.15,938,-3.5 +2013,2,3,0,30,0,0,0,1.2000000000000002,4.6000000000000005,163.18,938,-3.8000000000000003 +2013,2,3,1,30,0,0,0,1.2000000000000002,4.3,162.20000000000002,938,-4.2 +2013,2,3,2,30,0,0,0,1.2000000000000002,3.8000000000000003,153.18,938,-4.5 +2013,2,3,3,30,0,0,0,1.2000000000000002,3.3000000000000003,141.47,937,-4.7 +2013,2,3,4,30,0,0,0,1.3,2.8000000000000003,128.98,937,-4.6000000000000005 +2013,2,3,5,30,0,0,0,1.3,2.2,116.31,937,-4.3 +2013,2,3,6,30,0,0,0,1.4000000000000001,1.8,103.74000000000001,937,-3.8000000000000003 +2013,2,3,7,30,0,0,0,1.8,3.7,91.48,937,-3.1 +2013,2,3,8,30,94,66,157,2.7,7.4,79.7,937,-1.4000000000000001 +2013,2,3,9,30,361,55,852,3.7,11.3,68.97,937,-0.5 +2013,2,3,10,30,533,68,920,4.7,14.700000000000001,59.68,937,-1 +2013,2,3,11,30,507,245,431,5.300000000000001,16.400000000000002,52.67,935,0.2 +2013,2,3,12,30,711,91,944,5.5,17.1,48.97,933,2.6 +2013,2,3,13,30,581,228,542,5.6000000000000005,17.5,49.34,932,4.3 +2013,2,3,14,30,538,179,607,5.5,17.7,53.69,930,5.4 +2013,2,3,15,30,484,95,807,5.2,17.400000000000002,61.17,929,5.9 +2013,2,3,16,30,220,128,280,4.2,16.2,70.76,929,6.2 +2013,2,3,17,30,77,52,176,3.6,15.4,81.68,928,6.800000000000001 +2013,2,3,18,30,0,0,0,3.8000000000000003,13.600000000000001,93.59,928,7.1000000000000005 +2013,2,3,19,30,0,0,0,4.3,13.100000000000001,105.92,928,7.6000000000000005 +2013,2,3,20,30,0,0,0,4.1000000000000005,12.4,118.51,927,8 +2013,2,3,21,30,0,0,0,3.7,11.700000000000001,131.16,927,8.5 +2013,2,3,22,30,0,0,0,3.3000000000000003,11.200000000000001,143.54,926,8.9 +2013,2,3,23,30,0,0,0,3,10.8,154.93,926,9.3 +2013,2,4,0,30,0,0,0,2.8000000000000003,10.3,162.89000000000001,926,9.600000000000001 +2013,2,4,1,30,0,0,0,2.6,9.9,161.94,925,9.600000000000001 +2013,2,4,2,30,0,0,0,2.6,9.600000000000001,153,925,9.600000000000001 +2013,2,4,3,30,0,0,0,2.7,9.5,141.33,924,9.5 +2013,2,4,4,30,0,0,0,3.1,9.3,128.86,924,9.3 +2013,2,4,5,30,0,0,0,3.4000000000000004,9,116.19,924,9 +2013,2,4,6,30,0,0,0,3.4000000000000004,8.6,103.61,924,8.6 +2013,2,4,7,30,0,0,0,3.9000000000000004,9.1,91.33,924,9.1 +2013,2,4,8,30,98,67,168,4.4,11.100000000000001,79.54,924,9.1 +2013,2,4,9,30,262,135,349,4.3,13.600000000000001,68.77,924,8.4 +2013,2,4,10,30,532,74,900,4.1000000000000005,16.2,59.45,924,6.2 +2013,2,4,11,30,658,78,951,4.1000000000000005,18.400000000000002,52.410000000000004,924,3.3000000000000003 +2013,2,4,12,30,724,77,980,4.2,19.700000000000003,48.68,923,0.6000000000000001 +2013,2,4,13,30,718,76,980,4.3,20.400000000000002,49.04,922,-1.2000000000000002 +2013,2,4,14,30,559,164,663,4.2,20.400000000000002,53.410000000000004,922,-2 +2013,2,4,15,30,511,64,921,3.9000000000000004,19.700000000000003,60.92,922,-2.2 +2013,2,4,16,30,327,54,822,2.7,17.2,70.54,923,-1.8 +2013,2,4,17,30,122,35,591,1.9000000000000001,15.200000000000001,81.48,923,1.5 +2013,2,4,18,30,0,0,0,2,11.700000000000001,93.41,924,1 +2013,2,4,19,30,0,0,0,2.2,10.600000000000001,105.75,925,0.6000000000000001 +2013,2,4,20,30,0,0,0,2.1,9.4,118.35000000000001,925,0.5 +2013,2,4,21,30,0,0,0,1.9000000000000001,8.200000000000001,131,925,0.6000000000000001 +2013,2,4,22,30,0,0,0,1.8,7.2,143.36,926,0.4 +2013,2,4,23,30,0,0,0,1.7000000000000002,6.2,154.71,926,0 +2013,2,5,0,30,0,0,0,1.6,5.4,162.6,926,-0.6000000000000001 +2013,2,5,1,30,0,0,0,1.5,4.7,161.67000000000002,926,-1.5 +2013,2,5,2,30,0,0,0,1.5,4.2,152.82,926,-2.3000000000000003 +2013,2,5,3,30,0,0,0,1.4000000000000001,4,141.18,926,-3 +2013,2,5,4,30,0,0,0,1.3,3.8000000000000003,128.73,926,-3.5 +2013,2,5,5,30,0,0,0,1.3,3.6,116.06,926,-3.9000000000000004 +2013,2,5,6,30,0,0,0,1.3,3.3000000000000003,103.47,926,-4.2 +2013,2,5,7,30,0,0,0,1.6,5.2,91.18,927,-4.1000000000000005 +2013,2,5,8,30,168,34,725,2,8.5,79.36,928,-3.3000000000000003 +2013,2,5,9,30,378,47,905,1.6,12.3,68.57000000000001,928,-3.5 +2013,2,5,10,30,559,55,983,1.2000000000000002,16.5,59.21,928,-3 +2013,2,5,11,30,682,60,1014,1,19.200000000000003,52.13,928,-4.3 +2013,2,5,12,30,748,67,1025,0.8,20.5,48.38,927,-4.2 +2013,2,5,13,30,742,67,1022,0.8,21.3,48.74,926,-4 +2013,2,5,14,30,666,65,1003,1.2000000000000002,21.400000000000002,53.13,926,-3.9000000000000004 +2013,2,5,15,30,529,60,957,1.7000000000000002,20.900000000000002,60.660000000000004,925,-3.9000000000000004 +2013,2,5,16,30,342,51,863,1.7000000000000002,18.1,70.32000000000001,925,-3.1 +2013,2,5,17,30,131,34,641,1.4000000000000001,15.8,81.29,925,2.2 +2013,2,5,18,30,0,0,0,2.3000000000000003,11.8,93.23,926,-0.1 +2013,2,5,19,30,0,0,0,2.7,11.200000000000001,105.58,927,-0.2 +2013,2,5,20,30,0,0,0,2.8000000000000003,10.8,118.19,927,0.8 +2013,2,5,21,30,0,0,0,2.7,10.3,130.83,927,2.7 +2013,2,5,22,30,0,0,0,2.5,9.8,143.18,927,4.9 +2013,2,5,23,30,0,0,0,2.4000000000000004,9.4,154.48,927,6.7 +2013,2,6,0,30,0,0,0,2.3000000000000003,9.1,162.3,927,8 +2013,2,6,1,30,0,0,0,2.4000000000000004,9,161.4,927,8.700000000000001 +2013,2,6,2,30,0,0,0,2.4000000000000004,8.8,152.62,927,8.8 +2013,2,6,3,30,0,0,0,2.5,8.5,141.03,926,8.5 +2013,2,6,4,30,0,0,0,2.6,8.200000000000001,128.59,926,8.200000000000001 +2013,2,6,5,30,0,0,0,2.8000000000000003,7.7,115.93,926,7.7 +2013,2,6,6,30,0,0,0,3,7.300000000000001,103.33,926,7.300000000000001 +2013,2,6,7,30,0,0,0,3.5,8,91.03,927,6.800000000000001 +2013,2,6,8,30,154,46,577,4.1000000000000005,10.5,79.19,927,6.1000000000000005 +2013,2,6,9,30,355,66,783,4.9,14.4,68.37,926,6.300000000000001 +2013,2,6,10,30,529,78,876,5.6000000000000005,18,58.97,926,8.1 +2013,2,6,11,30,656,84,926,5.5,20.5,51.85,925,8.4 +2013,2,6,12,30,722,80,960,5.1000000000000005,21.900000000000002,48.08,923,8.3 +2013,2,6,13,30,716,80,960,4.800000000000001,22.700000000000003,48.43,922,8 +2013,2,6,14,30,645,77,940,4.6000000000000005,22.900000000000002,52.84,921,7.300000000000001 +2013,2,6,15,30,513,68,899,4.2,22.5,60.410000000000004,921,6.4 +2013,2,6,16,30,196,143,155,2.9000000000000004,20.3,70.10000000000001,921,5.5 +2013,2,6,17,30,126,38,569,1.9000000000000001,18.5,81.09,922,6.5 +2013,2,6,18,30,0,0,0,1.8,15,93.05,922,5.7 +2013,2,6,19,30,0,0,0,1.9000000000000001,14.5,105.41,923,5.5 +2013,2,6,20,30,0,0,0,2,14,118.03,923,5.5 +2013,2,6,21,30,0,0,0,2.3000000000000003,13.700000000000001,130.66,923,5.7 +2013,2,6,22,30,0,0,0,2.9000000000000004,13.600000000000001,142.99,922,6.2 +2013,2,6,23,30,0,0,0,3.6,13.4,154.25,923,7 +2013,2,7,0,30,0,0,0,4.2,12.9,162,923,7.7 +2013,2,7,1,30,0,0,0,4.5,12.200000000000001,161.12,923,8 +2013,2,7,2,30,0,0,0,4.6000000000000005,11.3,152.43,923,7.7 +2013,2,7,3,30,0,0,0,4.5,10.4,140.88,923,7 +2013,2,7,4,30,0,0,0,4.4,9.4,128.45,923,6 +2013,2,7,5,30,0,0,0,4.3,8.5,115.79,923,5.2 +2013,2,7,6,30,0,0,0,4.2,7.800000000000001,103.19,924,4.7 +2013,2,7,7,30,0,0,0,4.4,8.5,90.87,925,4.2 +2013,2,7,8,30,168,40,669,4.9,10.9,79.01,926,3.1 +2013,2,7,9,30,376,56,858,5.4,13.5,68.15,926,0.8 +2013,2,7,10,30,554,67,939,5.800000000000001,15.700000000000001,58.72,927,0.5 +2013,2,7,11,30,678,74,972,6.2,17.6,51.57,927,1.4000000000000001 +2013,2,7,12,30,741,78,987,6.6000000000000005,18.8,47.77,927,2.4000000000000004 +2013,2,7,13,30,735,80,982,7,19.3,48.120000000000005,926,3 +2013,2,7,14,30,660,78,958,7,19,52.550000000000004,927,3.1 +2013,2,7,15,30,521,71,904,6.800000000000001,18.1,60.15,927,3 +2013,2,7,16,30,337,60,803,5.9,16.400000000000002,69.87,928,2.8000000000000003 +2013,2,7,17,30,130,40,570,5.300000000000001,15.3,80.89,929,2.8000000000000003 +2013,2,7,18,30,0,0,0,3.4000000000000004,11.5,92.87,930,3.1 +2013,2,7,19,30,0,0,0,3,10.200000000000001,105.25,931,3.2 +2013,2,7,20,30,0,0,0,2.6,9,117.86,932,3.2 +2013,2,7,21,30,0,0,0,2.4000000000000004,7.9,130.5,933,3.1 +2013,2,7,22,30,0,0,0,2.3000000000000003,7,142.81,934,2.8000000000000003 +2013,2,7,23,30,0,0,0,2.3000000000000003,6.2,154.02,934,2.2 +2013,2,8,0,30,0,0,0,2.4000000000000004,5.5,161.69,934,1.4000000000000001 +2013,2,8,1,30,0,0,0,2.3000000000000003,4.7,160.83,934,0.6000000000000001 +2013,2,8,2,30,0,0,0,2.2,4,152.22,934,-0.1 +2013,2,8,3,30,0,0,0,2.1,3.3000000000000003,140.71,934,-0.8 +2013,2,8,4,30,0,0,0,2,2.6,128.3,934,-1.4000000000000001 +2013,2,8,5,30,0,0,0,1.8,1.9000000000000001,115.64,935,-1.8 +2013,2,8,6,30,0,0,0,1.7000000000000002,1.5,103.03,935,-2 +2013,2,8,7,30,0,0,0,2.2,3.1,90.14,935,-2.1 +2013,2,8,8,30,116,69,243,3,6.4,78.82000000000001,936,-1.8 +2013,2,8,9,30,286,131,412,3.5,9.600000000000001,67.94,936,-2.8000000000000003 +2013,2,8,10,30,572,67,965,3.5,12.3,58.47,936,-5.2 +2013,2,8,11,30,569,197,595,3.3000000000000003,14.3,51.28,935,-6.5 +2013,2,8,12,30,757,76,1007,3,15.600000000000001,47.45,934,-6.6000000000000005 +2013,2,8,13,30,752,76,1006,2.8000000000000003,16.400000000000002,47.81,932,-6.4 +2013,2,8,14,30,673,73,980,2.9000000000000004,16.6,52.26,931,-6.300000000000001 +2013,2,8,15,30,400,193,413,3,16.2,59.89,931,-6.300000000000001 +2013,2,8,16,30,308,70,684,2.4000000000000004,14.3,69.64,930,-6.300000000000001 +2013,2,8,17,30,67,59,45,1.7000000000000002,12.700000000000001,80.69,930,-2.6 +2013,2,8,18,30,0,0,0,2.1,8.8,92.69,930,-2.9000000000000004 +2013,2,8,19,30,0,0,0,2.5,8.200000000000001,105.08,930,-3.9000000000000004 +2013,2,8,20,30,0,0,0,2.8000000000000003,7.6000000000000005,117.7,930,-4.3 +2013,2,8,21,30,0,0,0,3.1,7,130.33,930,-4.3 +2013,2,8,22,30,0,0,0,3.4000000000000004,6.5,142.62,929,-4.2 +2013,2,8,23,30,0,0,0,3.7,6.4,153.78,929,-3.9000000000000004 +2013,2,9,0,30,0,0,0,3.9000000000000004,6.6000000000000005,161.38,928,-3.4000000000000004 +2013,2,9,1,30,0,0,0,3.9000000000000004,6.6000000000000005,160.54,928,-2.7 +2013,2,9,2,30,0,0,0,4.1000000000000005,6.7,152,928,-1.7000000000000002 +2013,2,9,3,30,0,0,0,4.4,6.800000000000001,140.54,927,-0.6000000000000001 +2013,2,9,4,30,0,0,0,4.9,7.1000000000000005,128.15,927,0.5 +2013,2,9,5,30,0,0,0,5.2,7.300000000000001,115.49000000000001,927,1.8 +2013,2,9,6,30,0,0,0,5.2,7.300000000000001,102.88,927,2.8000000000000003 +2013,2,9,7,30,0,0,0,5.5,7.5,90.01,926,3.3000000000000003 +2013,2,9,8,30,14,14,0,6.5,8.700000000000001,78.63,925,4.1000000000000005 +2013,2,9,9,30,145,139,15,7.7,10.9,67.72,925,5.9 +2013,2,9,10,30,285,238,90,8.200000000000001,13.5,58.21,924,7.300000000000001 +2013,2,9,11,30,333,289,71,8.3,16,50.99,923,8.200000000000001 +2013,2,9,12,30,505,330,258,8.3,18.2,47.13,921,9.5 +2013,2,9,13,30,438,335,153,8.3,19.700000000000003,47.49,920,10.3 +2013,2,9,14,30,417,297,194,8.200000000000001,20.400000000000002,51.97,918,10.600000000000001 +2013,2,9,15,30,410,192,431,7.9,20.400000000000002,59.64,918,10.4 +2013,2,9,16,30,269,118,428,7,19.200000000000003,69.42,918,10.100000000000001 +2013,2,9,17,30,86,61,153,6.4,18.3,80.5,918,10.3 +2013,2,9,18,30,0,0,0,6.1000000000000005,15.200000000000001,92.51,918,10.8 +2013,2,9,19,30,0,0,0,5.800000000000001,13.9,104.91,918,11.700000000000001 +2013,2,9,20,30,0,0,0,5.2,13.200000000000001,117.54,918,12.5 +2013,2,9,21,30,0,0,0,4.6000000000000005,13,130.16,919,12.9 +2013,2,9,22,30,0,0,0,4.3,12.4,142.43,920,12.4 +2013,2,9,23,30,0,0,0,4.3,11.5,153.54,921,11.100000000000001 +2013,2,10,0,30,0,0,0,4.1000000000000005,10.3,161.07,922,7.6000000000000005 +2013,2,10,1,30,0,0,0,3.8000000000000003,8.9,160.24,922,2.9000000000000004 +2013,2,10,2,30,0,0,0,3.8000000000000003,7.7,151.78,922,-1.3 +2013,2,10,3,30,0,0,0,4.1000000000000005,7,140.36,922,-4 +2013,2,10,4,30,0,0,0,4.1000000000000005,6.5,127.99000000000001,923,-5.300000000000001 +2013,2,10,5,30,0,0,0,4,5.800000000000001,115.34,923,-6 +2013,2,10,6,30,0,0,0,3.9000000000000004,5.1000000000000005,102.72,923,-6.6000000000000005 +2013,2,10,7,30,0,0,0,4.3,5.6000000000000005,89.86,924,-7.1000000000000005 +2013,2,10,8,30,135,63,359,5.300000000000001,7.9,78.43,925,-7.5 +2013,2,10,9,30,334,91,635,6,10.600000000000001,67.49,925,-7.800000000000001 +2013,2,10,10,30,440,199,453,5.9,12.5,57.95,925,-8.6 +2013,2,10,11,30,719,71,1024,5.800000000000001,13.9,50.69,924,-9.4 +2013,2,10,12,30,784,75,1036,5.800000000000001,14.8,46.81,924,-10 +2013,2,10,13,30,778,75,1034,5.7,15.5,47.17,923,-10.5 +2013,2,10,14,30,702,73,1013,5.5,15.700000000000001,51.67,923,-10.700000000000001 +2013,2,10,15,30,560,68,966,4.9,15.5,59.38,923,-10.9 +2013,2,10,16,30,369,58,877,3.3000000000000003,13.9,69.19,924,-10.5 +2013,2,10,17,30,152,39,669,2.1,12.5,80.3,924,-5.5 +2013,2,10,18,30,0,0,0,1.5,8.8,92.33,925,-3.8000000000000003 +2013,2,10,19,30,0,0,0,1.4000000000000001,8.4,104.74000000000001,926,-3.8000000000000003 +2013,2,10,20,30,0,0,0,1.3,8.4,117.38,926,-4.4 +2013,2,10,21,30,0,0,0,1.2000000000000002,8.700000000000001,129.99,927,-5.5 +2013,2,10,22,30,0,0,0,1,8.8,142.24,927,-6.7 +2013,2,10,23,30,0,0,0,0.7000000000000001,8.700000000000001,153.3,927,-7 +2013,2,11,0,30,0,0,0,0.4,8.1,160.76,928,-6.9 +2013,2,11,1,30,0,0,0,0.30000000000000004,7.1000000000000005,159.94,928,-6.800000000000001 +2013,2,11,2,30,0,0,0,0.5,6.1000000000000005,151.56,928,-6.6000000000000005 +2013,2,11,3,30,0,0,0,0.8,5.1000000000000005,140.18,928,-6.300000000000001 +2013,2,11,4,30,0,0,0,1.1,4,127.83,928,-5.5 +2013,2,11,5,30,0,0,0,1.4000000000000001,3,115.18,929,-4.3 +2013,2,11,6,30,0,0,0,1.6,2.5,102.55,929,-3.5 +2013,2,11,7,30,0,0,0,2.2,3.5,89.69,930,-2.8000000000000003 +2013,2,11,8,30,102,78,116,3,5.9,78.23,930,-2.4000000000000004 +2013,2,11,9,30,382,70,806,3.6,8.700000000000001,67.26,930,-2 +2013,2,11,10,30,558,84,886,3.9000000000000004,11,57.69,930,-1.6 +2013,2,11,11,30,681,96,918,4.1000000000000005,12.5,50.39,929,-0.4 +2013,2,11,12,30,681,178,731,4.2,13.3,46.480000000000004,929,1.1 +2013,2,11,13,30,524,325,290,4.2,13.4,46.84,928,2.5 +2013,2,11,14,30,661,99,899,4.1000000000000005,13.100000000000001,51.370000000000005,927,3.4000000000000004 +2013,2,11,15,30,499,92,793,4.1000000000000005,12.5,59.120000000000005,927,4 +2013,2,11,16,30,250,138,314,4,11.600000000000001,68.97,927,4.2 +2013,2,11,17,30,82,64,104,3.9000000000000004,11,80.10000000000001,927,4.2 +2013,2,11,18,30,0,0,0,3.3000000000000003,8.200000000000001,92.15,928,3.9000000000000004 +2013,2,11,19,30,0,0,0,3.6,7,104.58,928,3.5 +2013,2,11,20,30,0,0,0,3.8000000000000003,6,117.22,928,2.9000000000000004 +2013,2,11,21,30,0,0,0,4,5.1000000000000005,129.82,927,2.3000000000000003 +2013,2,11,22,30,0,0,0,3.8000000000000003,4.5,142.05,927,1.9000000000000001 +2013,2,11,23,30,0,0,0,3.5,4.3,153.06,926,2.2 +2013,2,12,0,30,0,0,0,3.2,4.7,160.44,926,3.1 +2013,2,12,1,30,0,0,0,3.4000000000000004,5.4,159.63,926,4.3 +2013,2,12,2,30,0,0,0,3.5,5.9,151.32,925,5.5 +2013,2,12,3,30,0,0,0,3.1,6.2,139.99,925,6.1000000000000005 +2013,2,12,4,30,0,0,0,2.7,6.300000000000001,127.66,924,6.300000000000001 +2013,2,12,5,30,0,0,0,2.4000000000000004,6.4,115.01,924,6.4 +2013,2,12,6,30,0,0,0,2.2,6.5,102.38,924,6.5 +2013,2,12,7,30,0,0,0,2,6.9,89.54,924,6.800000000000001 +2013,2,12,8,30,30,30,0,1.9000000000000001,7.800000000000001,78.03,924,7 +2013,2,12,9,30,45,45,0,2.7,9.200000000000001,67.03,924,7 +2013,2,12,10,30,92,92,0,4,10.4,57.42,924,5.800000000000001 +2013,2,12,11,30,305,276,45,5.2,10.8,50.08,924,3.6 +2013,2,12,12,30,760,108,941,5.800000000000001,10.700000000000001,46.15,924,1.7000000000000002 +2013,2,12,13,30,237,228,13,6,10.700000000000001,46.51,924,0.6000000000000001 +2013,2,12,14,30,686,93,944,6.1000000000000005,10.5,51.08,925,0.1 +2013,2,12,15,30,198,189,17,6.300000000000001,9.8,58.86,925,0 +2013,2,12,16,30,66,66,0,6.300000000000001,8.4,68.74,926,-0.2 +2013,2,12,17,30,9,9,0,6.2,7.4,79.9,927,-0.5 +2013,2,12,18,30,0,0,0,5.2,4.3,91.97,929,-0.9 +2013,2,12,19,30,0,0,0,4.6000000000000005,2.7,104.41,930,-1.3 +2013,2,12,20,30,0,0,0,3.8000000000000003,1.4000000000000001,117.05,931,-1.5 +2013,2,12,21,30,0,0,0,2.9000000000000004,0.4,129.65,931,-1.5 +2013,2,12,22,30,0,0,0,2.3000000000000003,-0.4,141.85,932,-1.5 +2013,2,12,23,30,0,0,0,2.2,-0.9,152.81,931,-1.6 +2013,2,13,0,30,0,0,0,2.1,-1.4000000000000001,160.12,931,-1.6 +2013,2,13,1,30,0,0,0,2.1,-1.8,159.32,931,-1.8 +2013,2,13,2,30,0,0,0,1.9000000000000001,-2.2,151.08,931,-2.2 +2013,2,13,3,30,0,0,0,1.9000000000000001,-2.5,139.8,930,-2.5 +2013,2,13,4,30,0,0,0,1.8,-2.9000000000000004,127.48,930,-2.9000000000000004 +2013,2,13,5,30,0,0,0,1.8,-3.2,114.84,931,-3.2 +2013,2,13,6,30,0,0,0,2,-3,102.2,931,-3 +2013,2,13,7,30,0,0,0,2.9000000000000004,-0.8,89.36,931,-2.3000000000000003 +2013,2,13,8,30,198,42,737,3.2,3.1,77.82000000000001,932,-2.3000000000000003 +2013,2,13,9,30,415,57,908,2.9000000000000004,7.5,66.79,932,-2.9000000000000004 +2013,2,13,10,30,600,65,986,2.8000000000000003,10.9,57.14,931,-5.6000000000000005 +2013,2,13,11,30,732,70,1025,3.1,12.9,49.77,931,-6.7 +2013,2,13,12,30,791,72,1031,3.4000000000000004,14.3,45.82,930,-7.300000000000001 +2013,2,13,13,30,785,72,1029,3.7,15.100000000000001,46.18,929,-7.9 +2013,2,13,14,30,708,69,1010,3.8000000000000003,15.4,50.78,928,-8.700000000000001 +2013,2,13,15,30,573,64,977,3.7,15.100000000000001,58.59,927,-9.600000000000001 +2013,2,13,16,30,380,55,889,2.6,13,68.52,927,-10.3 +2013,2,13,17,30,161,38,690,1.6,11.200000000000001,79.71000000000001,927,-5 +2013,2,13,18,30,0,0,0,1.5,6.5,91.8,928,-5.4 +2013,2,13,19,30,0,0,0,1.6,5.5,104.25,928,-6 +2013,2,13,20,30,0,0,0,1.7000000000000002,4.7,116.89,928,-6.4 +2013,2,13,21,30,0,0,0,1.9000000000000001,4,129.49,929,-6.6000000000000005 +2013,2,13,22,30,0,0,0,2,3.4000000000000004,141.66,929,-6.800000000000001 +2013,2,13,23,30,0,0,0,2.2,3,152.57,929,-6.9 +2013,2,14,0,30,0,0,0,2.4000000000000004,2.6,159.79,929,-6.800000000000001 +2013,2,14,1,30,0,0,0,2.6,2.1,159,928,-6.5 +2013,2,14,2,30,0,0,0,2.6,1.5,150.83,928,-6.2 +2013,2,14,3,30,0,0,0,2.6,0.8,139.59,928,-5.9 +2013,2,14,4,30,0,0,0,2.4000000000000004,0.2,127.3,928,-5.6000000000000005 +2013,2,14,5,30,0,0,0,2.4000000000000004,-0.4,114.66,928,-5.6000000000000005 +2013,2,14,6,30,0,0,0,2.5,-0.5,102.02,929,-5.800000000000001 +2013,2,14,7,30,0,0,0,3.4000000000000004,1.3,89.2,929,-6 +2013,2,14,8,30,199,43,729,3.8000000000000003,4.800000000000001,77.60000000000001,929,-6.2 +2013,2,14,9,30,415,58,898,3.8000000000000003,8.9,66.54,930,-6 +2013,2,14,10,30,599,67,975,4.2,12.9,56.86,929,-6.800000000000001 +2013,2,14,11,30,730,72,1013,4.5,16,49.45,928,-7.5 +2013,2,14,12,30,795,77,1025,4.5,17.8,45.480000000000004,927,-7.9 +2013,2,14,13,30,789,79,1020,4.3,18.7,45.85,927,-8.1 +2013,2,14,14,30,712,77,998,4.1000000000000005,19,50.47,926,-8 +2013,2,14,15,30,572,68,959,3.5,18.6,58.33,926,-7.800000000000001 +2013,2,14,16,30,380,59,868,2.1,16.400000000000002,68.29,926,-7 +2013,2,14,17,30,161,41,661,1.1,14.600000000000001,79.51,925,-0.8 +2013,2,14,18,30,0,0,0,0.6000000000000001,11.9,91.62,926,-3.8000000000000003 +2013,2,14,19,30,0,0,0,0.9,10.8,104.08,927,-4.6000000000000005 +2013,2,14,20,30,0,0,0,2,9,116.73,928,-4.6000000000000005 +2013,2,14,21,30,0,0,0,3.5,6.9,129.32,929,-4.1000000000000005 +2013,2,14,22,30,0,0,0,5.300000000000001,5.2,141.46,930,-3.1 +2013,2,14,23,30,0,0,0,6.6000000000000005,3.9000000000000004,152.32,931,-1.9000000000000001 +2013,2,15,0,30,0,0,0,6.9,2.9000000000000004,159.46,932,-0.7000000000000001 +2013,2,15,1,30,0,0,0,6.6000000000000005,2.3000000000000003,158.67000000000002,933,-0.2 +2013,2,15,2,30,0,0,0,6.1000000000000005,1.8,150.58,933,0.1 +2013,2,15,3,30,0,0,0,5.6000000000000005,1.4000000000000001,139.39000000000001,934,0.2 +2013,2,15,4,30,0,0,0,5.300000000000001,1,127.11,934,0.2 +2013,2,15,5,30,0,0,0,4.9,0.6000000000000001,114.48,935,0 +2013,2,15,6,30,0,0,0,4.6000000000000005,0.30000000000000004,101.83,936,-0.30000000000000004 +2013,2,15,7,30,0,0,0,5.1000000000000005,1.3,89.02,937,-0.8 +2013,2,15,8,30,61,61,0,6,3.6,77.39,938,-2 +2013,2,15,9,30,255,171,210,6.4,5.7,66.3,939,-4.3 +2013,2,15,10,30,462,206,464,6,7.2,56.58,939,-6.2 +2013,2,15,11,30,550,275,420,5.5,8.4,49.13,938,-7.5 +2013,2,15,12,30,527,342,262,5.2,9,45.13,938,-8.200000000000001 +2013,2,15,13,30,549,329,315,5.1000000000000005,9.200000000000001,45.51,937,-8.6 +2013,2,15,14,30,568,220,543,5.1000000000000005,8.8,50.17,937,-8.5 +2013,2,15,15,30,286,238,90,5.1000000000000005,7.800000000000001,58.07,937,-8.3 +2013,2,15,16,30,214,159,146,4.9,6.4,68.07000000000001,938,-7.9 +2013,2,15,17,30,49,49,0,4.6000000000000005,5.5,79.32000000000001,938,-7.4 +2013,2,15,18,30,0,0,0,2.4000000000000004,2.3000000000000003,91.44,939,-6.4 +2013,2,15,19,30,0,0,0,1.6,1,103.92,939,-5.800000000000001 +2013,2,15,20,30,0,0,0,1.1,0,116.57000000000001,939,-5.5 +2013,2,15,21,30,0,0,0,0.8,-0.4,129.14000000000001,940,-5.6000000000000005 +2013,2,15,22,30,0,0,0,0.7000000000000001,-0.6000000000000001,141.27,939,-5.9 +2013,2,15,23,30,0,0,0,0.9,-1,152.06,939,-6 +2013,2,16,0,30,0,0,0,1.2000000000000002,-1.8,159.13,939,-6 +2013,2,16,1,30,0,0,0,1.5,-2.4000000000000004,158.34,939,-6 +2013,2,16,2,30,0,0,0,1.9000000000000001,-2.5,150.32,939,-6 +2013,2,16,3,30,0,0,0,2.2,-2.7,139.17000000000002,939,-6 +2013,2,16,4,30,0,0,0,2.3000000000000003,-2.9000000000000004,126.92,939,-6.2 +2013,2,16,5,30,0,0,0,2.3000000000000003,-3.3000000000000003,114.3,939,-6.6000000000000005 +2013,2,16,6,30,0,0,0,2.4000000000000004,-3.2,101.64,940,-6.9 +2013,2,16,7,30,16,11,227,3.1,-1.3,88.83,940,-7 +2013,2,16,8,30,206,43,732,3.3000000000000003,2.3000000000000003,77.16,940,-6.800000000000001 +2013,2,16,9,30,422,57,898,3.2,6.6000000000000005,66.05,940,-6.2 +2013,2,16,10,30,606,66,973,3.5,10.3,56.29,939,-5.800000000000001 +2013,2,16,11,30,736,70,1012,3.8000000000000003,12.8,48.81,938,-5.7 +2013,2,16,12,30,801,71,1028,4,14.600000000000001,44.79,937,-5.800000000000001 +2013,2,16,13,30,796,71,1027,4,15.9,45.17,935,-6.300000000000001 +2013,2,16,14,30,724,70,1015,3.9000000000000004,16.6,49.870000000000005,934,-6.7 +2013,2,16,15,30,583,65,971,3.6,16.6,57.81,933,-7 +2013,2,16,16,30,390,57,884,2.4000000000000004,14.700000000000001,67.85,932,-7.1000000000000005 +2013,2,16,17,30,170,41,687,1.5,12.8,79.12,932,-2.1 +2013,2,16,18,30,0,0,0,1.7000000000000002,7.9,91.27,932,-3.4000000000000004 +2013,2,16,19,30,0,0,0,2.1,7.1000000000000005,103.75,932,-4.1000000000000005 +2013,2,16,20,30,0,0,0,2.6,6.6000000000000005,116.41,932,-4.6000000000000005 +2013,2,16,21,30,0,0,0,3.3000000000000003,6.300000000000001,128.97,932,-4.800000000000001 +2013,2,16,22,30,0,0,0,4.1000000000000005,5.9,141.07,931,-4.9 +2013,2,16,23,30,0,0,0,4.800000000000001,5.4,151.81,931,-4.800000000000001 +2013,2,17,0,30,0,0,0,5,4.6000000000000005,158.8,931,-4.7 +2013,2,17,1,30,0,0,0,4.800000000000001,3.7,158.01,930,-4.800000000000001 +2013,2,17,2,30,0,0,0,4.5,2.8000000000000003,150.05,930,-4.9 +2013,2,17,3,30,0,0,0,4.4,2,138.95000000000002,930,-5 +2013,2,17,4,30,0,0,0,4.4,1.3,126.72,929,-5.1000000000000005 +2013,2,17,5,30,0,0,0,4.4,0.7000000000000001,114.10000000000001,929,-5.1000000000000005 +2013,2,17,6,30,0,0,0,4.6000000000000005,0.4,101.45,929,-5.1000000000000005 +2013,2,17,7,30,18,13,235,5,1.8,88.65,929,-5 +2013,2,17,8,30,215,46,747,5.5,5.300000000000001,76.94,929,-4.9 +2013,2,17,9,30,434,62,909,6.2,10.100000000000001,65.79,929,-4.800000000000001 +2013,2,17,10,30,621,71,984,7,14.5,56,928,-5.300000000000001 +2013,2,17,11,30,753,77,1020,7.4,17.7,48.480000000000004,927,-6.1000000000000005 +2013,2,17,12,30,819,79,1037,7.5,19.6,44.44,926,-7 +2013,2,17,13,30,812,80,1033,7.5,20.400000000000002,44.83,925,-7.1000000000000005 +2013,2,17,14,30,734,80,1009,7.4,20.5,49.56,924,-7 +2013,2,17,15,30,585,75,950,7,19.8,57.550000000000004,923,-6.9 +2013,2,17,16,30,294,130,429,6.1000000000000005,18,67.62,922,-6.4 +2013,2,17,17,30,114,68,240,5.4,16.7,78.93,922,-5.1000000000000005 +2013,2,17,18,30,0,0,0,5,12.8,91.09,923,-3.3000000000000003 +2013,2,17,19,30,0,0,0,5.4,11.700000000000001,103.59,923,-1.8 +2013,2,17,20,30,0,0,0,5.6000000000000005,10.600000000000001,116.24000000000001,922,0.1 +2013,2,17,21,30,0,0,0,5.800000000000001,9.8,128.8,922,2.1 +2013,2,17,22,30,0,0,0,5.9,9.1,140.87,922,3.9000000000000004 +2013,2,17,23,30,0,0,0,6,8.6,151.55,921,5.4 +2013,2,18,0,30,0,0,0,6,8.1,158.46,921,6.5 +2013,2,18,1,30,0,0,0,6.1000000000000005,7.9,157.67000000000002,921,7.4 +2013,2,18,2,30,0,0,0,6.4,8.1,149.78,920,8.1 +2013,2,18,3,30,0,0,0,7.1000000000000005,8.8,138.73,920,8.8 +2013,2,18,4,30,0,0,0,7.7,9.4,126.52,920,9.4 +2013,2,18,5,30,0,0,0,7.5,9.3,113.91,920,9.3 +2013,2,18,6,30,0,0,0,6.800000000000001,8.8,101.25,921,8.8 +2013,2,18,7,30,18,14,161,6.4,9.200000000000001,88.47,922,7.9 +2013,2,18,8,30,213,50,709,6.1000000000000005,11.5,76.71000000000001,923,5.6000000000000005 +2013,2,18,9,30,433,65,887,6.5,14,65.53,923,0.1 +2013,2,18,10,30,619,74,968,6.9,15.4,55.71,924,-4.800000000000001 +2013,2,18,11,30,752,77,1011,6.9,16.1,48.15,925,-5.4 +2013,2,18,12,30,817,78,1030,6.7,16.6,44.09,925,-4.800000000000001 +2013,2,18,13,30,812,77,1031,6.6000000000000005,16.8,44.49,925,-4.2 +2013,2,18,14,30,729,73,1006,6.4,16.5,49.25,926,-4 +2013,2,18,15,30,588,66,966,6,15.9,57.29,926,-4.1000000000000005 +2013,2,18,16,30,396,58,881,5.2,14.5,67.4,927,-4.3 +2013,2,18,17,30,176,41,691,4.5,13.5,78.74,927,-4.2 +2013,2,18,18,30,0,0,0,2.9000000000000004,9.200000000000001,90.92,929,-3.2 +2013,2,18,19,30,0,0,0,3.2,8,103.43,930,-3.5 +2013,2,18,20,30,0,0,0,3.2,6.800000000000001,116.08,931,-4.1000000000000005 +2013,2,18,21,30,0,0,0,3,5.9,128.63,932,-4.7 +2013,2,18,22,30,0,0,0,2.7,5,140.67000000000002,932,-5.2 +2013,2,18,23,30,0,0,0,2.4000000000000004,4.3,151.29,932,-5.6000000000000005 +2013,2,19,0,30,0,0,0,2.2,4,158.13,932,-5.800000000000001 +2013,2,19,1,30,0,0,0,2,3.7,157.33,932,-5.800000000000001 +2013,2,19,2,30,0,0,0,1.7000000000000002,3.3000000000000003,149.51,932,-5.6000000000000005 +2013,2,19,3,30,0,0,0,1.5,2.7,138.5,932,-5.300000000000001 +2013,2,19,4,30,0,0,0,1.4000000000000001,2.1,126.31,932,-5.2 +2013,2,19,5,30,0,0,0,1.3,1.8,113.71000000000001,933,-5.2 +2013,2,19,6,30,0,0,0,1.4000000000000001,2.2,101.05,934,-4.9 +2013,2,19,7,30,7,7,0,2.1,3.7,88.26,935,-4.6000000000000005 +2013,2,19,8,30,217,46,730,3.4000000000000004,6.4,76.47,935,-4.800000000000001 +2013,2,19,9,30,295,169,302,4.5,9.3,65.27,936,-5.2 +2013,2,19,10,30,507,170,594,4.9,11.200000000000001,55.410000000000004,935,-6 +2013,2,19,11,30,744,78,991,5.1000000000000005,12.4,47.82,935,-6.300000000000001 +2013,2,19,12,30,807,86,998,5.4,13.200000000000001,43.730000000000004,933,-6.4 +2013,2,19,13,30,654,259,550,5.7,13.600000000000001,44.14,932,-6.4 +2013,2,19,14,30,549,276,415,5.9,13.9,48.95,931,-6.2 +2013,2,19,15,30,337,253,155,5.9,13.700000000000001,57.03,930,-6 +2013,2,19,16,30,182,160,58,5.2,12.700000000000001,67.18,930,-5.7 +2013,2,19,17,30,57,57,0,4.7,11.9,78.55,930,-5.1000000000000005 +2013,2,19,18,30,0,0,0,3.1,9.4,90.19,930,-4 +2013,2,19,19,30,0,0,0,2.8000000000000003,8.5,103.26,931,-2.7 +2013,2,19,20,30,0,0,0,3.7,7.800000000000001,115.92,932,-1.7000000000000002 +2013,2,19,21,30,0,0,0,4.5,7.2,128.46,931,-1.1 +2013,2,19,22,30,0,0,0,4.6000000000000005,6.7,140.47,931,-0.30000000000000004 +2013,2,19,23,30,0,0,0,4.5,6.4,151.03,930,0.2 +2013,2,20,0,30,0,0,0,4.5,6.2,157.78,929,0.6000000000000001 +2013,2,20,1,30,0,0,0,4.6000000000000005,6.2,156.99,928,1 +2013,2,20,2,30,0,0,0,4.800000000000001,6.300000000000001,149.22,928,1.7000000000000002 +2013,2,20,3,30,0,0,0,4.4,6.1000000000000005,138.26,928,2.6 +2013,2,20,4,30,0,0,0,4,5.9,126.10000000000001,927,3.6 +2013,2,20,5,30,0,0,0,4.4,5.9,113.5,927,4.2 +2013,2,20,6,30,0,0,0,4.9,6,100.84,926,4.3 +2013,2,20,7,30,20,16,113,5,6.4,88.07000000000001,926,4.5 +2013,2,20,8,30,59,59,0,5.1000000000000005,7.1000000000000005,76.24,926,4.800000000000001 +2013,2,20,9,30,69,69,0,5.300000000000001,7.800000000000001,65,925,5.2 +2013,2,20,10,30,124,124,0,5.5,8.6,55.11,925,5.800000000000001 +2013,2,20,11,30,295,274,31,5.7,9.600000000000001,47.480000000000004,923,6.5 +2013,2,20,12,30,302,284,26,5.7,10.600000000000001,43.37,922,7.300000000000001 +2013,2,20,13,30,262,250,16,5.7,11.600000000000001,43.800000000000004,920,8.200000000000001 +2013,2,20,14,30,104,104,0,5.6000000000000005,12.4,48.64,919,9.1 +2013,2,20,15,30,115,115,0,5.4,12.8,56.76,918,9.8 +2013,2,20,16,30,35,35,0,5.2,12.3,66.96000000000001,918,10.200000000000001 +2013,2,20,17,30,6,6,0,5.1000000000000005,11.8,78.36,918,10.3 +2013,2,20,18,30,0,0,0,5.6000000000000005,9.9,90.05,918,9.9 +2013,2,20,19,30,0,0,0,5.9,9.3,103.10000000000001,918,9.3 +2013,2,20,20,30,0,0,0,6,9,115.76,917,9 +2013,2,20,21,30,0,0,0,5.9,9.1,128.28,916,9.1 +2013,2,20,22,30,0,0,0,5.800000000000001,9.700000000000001,140.26,916,9.700000000000001 +2013,2,20,23,30,0,0,0,5.800000000000001,10.700000000000001,150.77,915,10.700000000000001 +2013,2,21,0,30,0,0,0,6.1000000000000005,12,157.44,914,12 +2013,2,21,1,30,0,0,0,6.4,12.700000000000001,156.64000000000001,913,12.700000000000001 +2013,2,21,2,30,0,0,0,6.300000000000001,12.100000000000001,148.93,913,12.100000000000001 +2013,2,21,3,30,0,0,0,6,10.3,138.02,914,10.3 +2013,2,21,4,30,0,0,0,5.800000000000001,8.200000000000001,125.88000000000001,915,8.200000000000001 +2013,2,21,5,30,0,0,0,5.7,6.5,113.29,916,4.4 +2013,2,21,6,30,0,0,0,5.7,5.5,100.63,917,1.3 +2013,2,21,7,30,28,15,347,6.2,6.2,87.86,918,-0.9 +2013,2,21,8,30,236,43,796,7.5,8.4,76,918,-2.1 +2013,2,21,9,30,453,59,923,8.700000000000001,10.5,64.73,918,-4.5 +2013,2,21,10,30,634,72,976,9.3,12.200000000000001,54.800000000000004,918,-6.4 +2013,2,21,11,30,759,82,995,9.600000000000001,13.600000000000001,47.14,918,-6.2 +2013,2,21,12,30,823,88,1006,9.5,14.8,43.01,918,-4.9 +2013,2,21,13,30,817,87,1005,9.1,15.8,43.45,918,-4.2 +2013,2,21,14,30,739,83,988,8.4,16.5,48.33,918,-4.1000000000000005 +2013,2,21,15,30,598,74,950,7.4,16.5,56.5,918,-4.4 +2013,2,21,16,30,408,62,876,5.4,15.200000000000001,66.74,919,-4.9 +2013,2,21,17,30,186,44,692,4,14.100000000000001,78.17,919,-3.9000000000000004 +2013,2,21,18,30,0,0,0,2.1,8.200000000000001,89.9,921,-1.6 +2013,2,21,19,30,0,0,0,2.6,6.7,102.94,923,-1.4000000000000001 +2013,2,21,20,30,0,0,0,3.4000000000000004,5.1000000000000005,115.60000000000001,924,-1.4000000000000001 +2013,2,21,21,30,0,0,0,3.8000000000000003,3,128.11,925,-1.4000000000000001 +2013,2,21,22,30,0,0,0,3.8000000000000003,1.1,140.06,926,-1.8 +2013,2,21,23,30,0,0,0,4,-0.30000000000000004,150.5,926,-2.6 +2013,2,22,0,30,0,0,0,4.2,-1.5,157.09,926,-3.9000000000000004 +2013,2,22,1,30,0,0,0,4.4,-2.5,156.28,926,-5.300000000000001 +2013,2,22,2,30,0,0,0,3.9000000000000004,-3.3000000000000003,148.64000000000001,927,-6.5 +2013,2,22,3,30,0,0,0,3.2,-3.7,137.77,928,-7.2 +2013,2,22,4,30,0,0,0,2.7,-4.1000000000000005,125.66,929,-7.7 +2013,2,22,5,30,0,0,0,2.4000000000000004,-4.5,113.08,929,-8 +2013,2,22,6,30,0,0,0,2.5,-4.6000000000000005,100.41,930,-8.3 +2013,2,22,7,30,11,11,0,3.2,-3.4000000000000004,87.63,930,-8.6 +2013,2,22,8,30,200,55,589,3.7,-1.3,75.75,930,-9.700000000000001 +2013,2,22,9,30,374,113,605,3.4000000000000004,1.2000000000000002,64.46000000000001,930,-9.8 +2013,2,22,10,30,636,73,969,3,3.7,54.5,930,-9.3 +2013,2,22,11,30,767,78,1007,2.4000000000000004,6,46.79,929,-8.4 +2013,2,22,12,30,832,80,1023,1.9000000000000001,8.1,42.64,928,-7.2 +2013,2,22,13,30,821,80,1013,2,9.700000000000001,43.09,927,-6.300000000000001 +2013,2,22,14,30,742,80,990,2.4000000000000004,10.8,48.02,927,-5.7 +2013,2,22,15,30,601,72,952,2.6,11.100000000000001,56.24,927,-5.5 +2013,2,22,16,30,407,62,865,2.3000000000000003,10.200000000000001,66.52,928,-5.300000000000001 +2013,2,22,17,30,186,45,678,1.9000000000000001,9.3,77.98,928,-4.2 +2013,2,22,18,30,0,0,0,2.3000000000000003,4.4,89.75,928,-3.6 +2013,2,22,19,30,0,0,0,2.9000000000000004,3.2,102.78,928,-4.7 +2013,2,22,20,30,0,0,0,2.9000000000000004,1.9000000000000001,115.44,929,-5.1000000000000005 +2013,2,22,21,30,0,0,0,2.5,0.8,127.94,929,-5.300000000000001 +2013,2,22,22,30,0,0,0,2.1,-0.2,139.85,929,-5.4 +2013,2,22,23,30,0,0,0,1.7000000000000002,-1.1,150.23,929,-5.5 +2013,2,23,0,30,0,0,0,1.3,-1.8,156.74,929,-5.800000000000001 +2013,2,23,1,30,0,0,0,1.1,-2.4000000000000004,155.93,929,-6 +2013,2,23,2,30,0,0,0,1,-2.9000000000000004,148.34,928,-6.2 +2013,2,23,3,30,0,0,0,1,-3.2,137.52,927,-6.300000000000001 +2013,2,23,4,30,0,0,0,1.1,-3.5,125.43,927,-6.300000000000001 +2013,2,23,5,30,0,0,0,1.1,-3.8000000000000003,112.86,927,-6.1000000000000005 +2013,2,23,6,30,0,0,0,1.4000000000000001,-3.3000000000000003,100.19,928,-5.800000000000001 +2013,2,23,7,30,30,18,285,2.1,-1,87.42,928,-5.4 +2013,2,23,8,30,237,49,753,2.8000000000000003,2.9000000000000004,75.5,928,-5 +2013,2,23,9,30,464,61,923,3.2,7,64.18,928,-5.1000000000000005 +2013,2,23,10,30,651,69,995,3.7,10.4,54.18,927,-5.7 +2013,2,23,11,30,784,73,1031,4.2,12.9,46.45,926,-6.9 +2013,2,23,12,30,849,77,1043,4.3,14.600000000000001,42.27,926,-7.300000000000001 +2013,2,23,13,30,842,78,1040,4.2,15.600000000000001,42.74,925,-7.5 +2013,2,23,14,30,763,75,1022,3.9000000000000004,16.3,47.71,924,-7.9 +2013,2,23,15,30,619,69,983,3.3000000000000003,16.3,55.980000000000004,924,-8.5 +2013,2,23,16,30,422,59,904,2,14.9,66.3,923,-8.9 +2013,2,23,17,30,197,43,727,1,13.600000000000001,77.79,923,-2.5 +2013,2,23,18,30,0,0,0,1.4000000000000001,8.4,89.61,923,-5 +2013,2,23,19,30,0,0,0,1.8,6.5,102.62,923,-5.1000000000000005 +2013,2,23,20,30,0,0,0,2.3000000000000003,5.800000000000001,115.28,923,-5.9 +2013,2,23,21,30,0,0,0,3,5.6000000000000005,127.76,923,-6.7 +2013,2,23,22,30,0,0,0,3.6,5.2,139.64000000000001,923,-7.2 +2013,2,23,23,30,0,0,0,4,4.6000000000000005,149.96,922,-7.4 +2013,2,24,0,30,0,0,0,4.3,3.8000000000000003,156.39000000000001,922,-7.2 +2013,2,24,1,30,0,0,0,4.4,3,155.56,921,-6.9 +2013,2,24,2,30,0,0,0,4.3,2.3000000000000003,148.04,921,-6.4 +2013,2,24,3,30,0,0,0,4.1000000000000005,1.7000000000000002,137.26,921,-5.4 +2013,2,24,4,30,0,0,0,4.1000000000000005,1.3,125.2,920,-4.3 +2013,2,24,5,30,0,0,0,4.1000000000000005,1.1,112.64,920,-3.2 +2013,2,24,6,30,0,0,0,4.4,1.5,99.97,920,-2.1 +2013,2,24,7,30,32,19,280,4.9,3.6,87.21000000000001,920,-0.7000000000000001 +2013,2,24,8,30,234,52,715,5.7,7.5,75.25,920,0.7000000000000001 +2013,2,24,9,30,449,69,865,6.800000000000001,12.200000000000001,63.910000000000004,920,2.4000000000000004 +2013,2,24,10,30,633,80,937,7.4,16.3,53.870000000000005,919,3.8000000000000003 +2013,2,24,11,30,762,87,974,7.2,19.200000000000003,46.09,918,3.8000000000000003 +2013,2,24,12,30,827,88,992,6.800000000000001,21.200000000000003,41.9,917,3.2 +2013,2,24,13,30,819,90,987,6.300000000000001,22.3,42.39,916,2.4000000000000004 +2013,2,24,14,30,741,87,966,5.800000000000001,22.700000000000003,47.4,915,1.4000000000000001 +2013,2,24,15,30,602,80,927,5.4,22.400000000000002,55.72,914,0.30000000000000004 +2013,2,24,16,30,409,68,841,4.2,20.3,66.08,914,-0.1 +2013,2,24,17,30,189,49,653,3.4000000000000004,18.7,77.60000000000001,914,2.3000000000000003 +2013,2,24,18,30,0,0,0,4.2,14.200000000000001,89.48,913,3.4000000000000004 +2013,2,24,19,30,0,0,0,5.300000000000001,13.3,102.46000000000001,913,5 +2013,2,24,20,30,0,0,0,5.1000000000000005,12.200000000000001,115.12,913,6.7 +2013,2,24,21,30,0,0,0,4.5,11.5,127.59,913,7.800000000000001 +2013,2,24,22,30,0,0,0,4.5,11,139.43,914,8.4 +2013,2,24,23,30,0,0,0,4.800000000000001,10.200000000000001,149.69,914,8.200000000000001 +2013,2,25,0,30,0,0,0,4.7,8.9,156.04,914,6.300000000000001 +2013,2,25,1,30,0,0,0,4.7,7,155.20000000000002,914,3.1 +2013,2,25,2,30,0,0,0,5.1000000000000005,5.2,147.73,914,0.2 +2013,2,25,3,30,0,0,0,5,4,137,914,-0.8 +2013,2,25,4,30,0,0,0,4.6000000000000005,3.1,124.96000000000001,914,-1.1 +2013,2,25,5,30,0,0,0,4.4,2.5,112.41,914,-1.6 +2013,2,25,6,30,0,0,0,4.5,2.2,99.74000000000001,914,-2.3000000000000003 +2013,2,25,7,30,32,23,164,5.6000000000000005,3,86.98,915,-2.6 +2013,2,25,8,30,161,96,250,7.4,4.3,75,915,-2.2 +2013,2,25,9,30,264,197,151,8.6,4.800000000000001,63.620000000000005,915,-2.7 +2013,2,25,10,30,257,238,31,9.3,4.9,53.550000000000004,915,-3.6 +2013,2,25,11,30,167,164,4,10,5.1000000000000005,45.74,915,-4.1000000000000005 +2013,2,25,12,30,128,128,0,10.9,5.300000000000001,41.53,916,-4.2 +2013,2,25,13,30,208,202,9,11.5,5.1000000000000005,42.03,916,-4.3 +2013,2,25,14,30,214,207,10,11.8,4.6000000000000005,47.09,917,-4.2 +2013,2,25,15,30,227,214,22,11.5,4.2,55.46,918,-4 +2013,2,25,16,30,184,166,46,10.8,3.7,65.86,919,-3.8000000000000003 +2013,2,25,17,30,51,51,0,10.4,3.4000000000000004,77.41,920,-3.6 +2013,2,25,18,30,0,0,0,9,2.7,89.31,922,-3.5 +2013,2,25,19,30,0,0,0,8.4,2.6,102.3,923,-3.4000000000000004 +2013,2,25,20,30,0,0,0,7.800000000000001,2.4000000000000004,114.95,924,-3.5 +2013,2,25,21,30,0,0,0,6.9,1.9000000000000001,127.41,924,-3.7 +2013,2,25,22,30,0,0,0,6.1000000000000005,1.3,139.22,924,-4 +2013,2,25,23,30,0,0,0,5.5,0.6000000000000001,149.41,924,-4.2 +2013,2,26,0,30,0,0,0,4.9,-0.2,155.68,924,-4.5 +2013,2,26,1,30,0,0,0,4.7,-0.9,154.83,924,-4.9 +2013,2,26,2,30,0,0,0,4.5,-1.6,147.42000000000002,924,-5.300000000000001 +2013,2,26,3,30,0,0,0,4.2,-2.1,136.74,924,-5.7 +2013,2,26,4,30,0,0,0,3.8000000000000003,-2.7,124.72,924,-6.1000000000000005 +2013,2,26,5,30,0,0,0,3.4000000000000004,-3.3000000000000003,112.18,924,-6.4 +2013,2,26,6,30,0,0,0,3.5,-3.3000000000000003,99.51,924,-6.7 +2013,2,26,7,30,42,19,394,3.8000000000000003,-1.5,86.74,925,-6.800000000000001 +2013,2,26,8,30,254,47,785,4,1.8,74.74,925,-6.5 +2013,2,26,9,30,476,61,925,3.8000000000000003,5,63.34,925,-6.1000000000000005 +2013,2,26,10,30,662,69,992,3.4000000000000004,7.5,53.230000000000004,925,-6.1000000000000005 +2013,2,26,11,30,794,73,1026,3.1,9.700000000000001,45.38,925,-6.4 +2013,2,26,12,30,858,76,1040,3,11.5,41.15,924,-6.5 +2013,2,26,13,30,851,75,1039,3.1,13.100000000000001,41.67,923,-6.7 +2013,2,26,14,30,771,70,1023,3.1,14.200000000000001,46.78,922,-7.2 +2013,2,26,15,30,632,66,993,2.7,14.600000000000001,55.21,922,-7.7 +2013,2,26,16,30,435,57,918,1.6,13.9,65.65,921,-7.9 +2013,2,26,17,30,208,42,752,0.8,13,77.23,921,-2.3000000000000003 +2013,2,26,18,30,0,0,0,1.2000000000000002,8.5,89.17,921,-5.2 +2013,2,26,19,30,0,0,0,1.6,6.2,102.14,921,-5 +2013,2,26,20,30,0,0,0,1.9000000000000001,5,114.79,921,-5.2 +2013,2,26,21,30,0,0,0,2.3000000000000003,4.4,127.23,921,-5.6000000000000005 +2013,2,26,22,30,0,0,0,2.1,3.7,139.01,921,-5.7 +2013,2,26,23,30,0,0,0,1.2000000000000002,2.6,149.13,922,-5.6000000000000005 +2013,2,27,0,30,0,0,0,1.5,1.8,155.33,922,-5.5 +2013,2,27,1,30,0,0,0,3.1,0.9,154.46,923,-5.300000000000001 +2013,2,27,2,30,0,0,0,4.2,-0.30000000000000004,147.1,925,-4.6000000000000005 +2013,2,27,3,30,0,0,0,4.7,-1.3,136.47,926,-4.1000000000000005 +2013,2,27,4,30,0,0,0,4.6000000000000005,-2,124.48,928,-3.9000000000000004 +2013,2,27,5,30,0,0,0,4.1000000000000005,-2.5,111.95,929,-4.1000000000000005 +2013,2,27,6,30,0,0,0,3.9000000000000004,-2.3000000000000003,99.27,931,-4.7 +2013,2,27,7,30,44,21,380,4.4,-0.30000000000000004,86.51,931,-5.4 +2013,2,27,8,30,258,50,778,5.7,3.2,74.48,932,-5.4 +2013,2,27,9,30,480,65,915,6.6000000000000005,6.2,63.050000000000004,933,-4.6000000000000005 +2013,2,27,10,30,672,74,993,6.7,8.3,52.910000000000004,933,-4.800000000000001 +2013,2,27,11,30,805,78,1029,6.800000000000001,9.9,45.02,933,-6.4 +2013,2,27,12,30,870,78,1045,6.800000000000001,11,40.77,933,-8.6 +2013,2,27,13,30,862,77,1046,6.7,11.700000000000001,41.31,933,-10.200000000000001 +2013,2,27,14,30,782,73,1029,6.5,11.9,46.47,933,-10.5 +2013,2,27,15,30,637,69,989,6.2,11.3,54.95,933,-10.100000000000001 +2013,2,27,16,30,439,60,912,5.5,10,65.43,933,-9.3 +2013,2,27,17,30,209,45,732,5,9.1,77.05,933,-8.3 +2013,2,27,18,30,0,0,0,2.4000000000000004,4.3,89.01,934,-6.2 +2013,2,27,19,30,0,0,0,2.1,2.8000000000000003,101.98,935,-5.300000000000001 +2013,2,27,20,30,0,0,0,1.9000000000000001,1.8,114.63,936,-4.9 +2013,2,27,21,30,0,0,0,1.6,0.9,127.06,936,-4.6000000000000005 +2013,2,27,22,30,0,0,0,1.4000000000000001,0.1,138.79,936,-4.5 +2013,2,27,23,30,0,0,0,1.3,-0.5,148.85,936,-4.5 +2013,2,28,0,30,0,0,0,1.3,-1.2000000000000002,154.96,936,-4.5 +2013,2,28,1,30,0,0,0,1.4000000000000001,-1.7000000000000002,154.09,936,-4.6000000000000005 +2013,2,28,2,30,0,0,0,1.6,-2.2,146.78,936,-4.6000000000000005 +2013,2,28,3,30,0,0,0,1.7000000000000002,-2.7,136.19,936,-4.800000000000001 +2013,2,28,4,30,0,0,0,1.9000000000000001,-3.1,124.23,936,-5 +2013,2,28,5,30,0,0,0,1.9000000000000001,-3.6,111.71000000000001,937,-5.4 +2013,2,28,6,30,0,0,0,2.2,-3.2,99.04,937,-6 +2013,2,28,7,30,47,21,400,2.8000000000000003,-1,86.27,937,-6.4 +2013,2,28,8,30,263,49,785,3.2,3,74.22,937,-6.5 +2013,2,28,9,30,485,63,923,3.6,7.1000000000000005,62.76,938,-7.300000000000001 +2013,2,28,10,30,672,72,988,3.8000000000000003,9.8,52.59,937,-8.4 +2013,2,28,11,30,803,78,1019,3.7,11.5,44.660000000000004,937,-8.700000000000001 +2013,2,28,12,30,867,83,1029,3.7,12.700000000000001,40.39,936,-8.9 +2013,2,28,13,30,858,83,1026,3.7,13.3,40.95,935,-9 +2013,2,28,14,30,777,82,1004,3.8000000000000003,13.5,46.160000000000004,935,-9.1 +2013,2,28,15,30,632,77,959,3.8000000000000003,13.100000000000001,54.69,934,-9.3 +2013,2,28,16,30,435,67,877,3,11.8,65.22,934,-9.3 +2013,2,28,17,30,208,49,700,2.2,10.8,76.86,934,-6.7 +2013,2,28,18,30,15,12,159,1.2000000000000002,6.2,88.86,935,-4.9 +2013,2,28,19,30,0,0,0,1.2000000000000002,5.4,101.83,935,-5.800000000000001 +2013,2,28,20,30,0,0,0,1.2000000000000002,4.7,114.47,935,-6.4 +2013,2,28,21,30,0,0,0,1.2000000000000002,4,126.88000000000001,935,-6.800000000000001 +2013,2,28,22,30,0,0,0,1.1,3.2,138.58,935,-7 +2013,2,28,23,30,0,0,0,1.1,2.6,148.57,935,-7.300000000000001 +2013,3,1,0,30,0,0,0,1,2.2,154.6,935,-7.5 +2013,3,1,1,30,0,0,0,0.9,1.8,153.71,934,-7.800000000000001 +2013,3,1,2,30,0,0,0,0.8,1.4000000000000001,146.46,934,-7.9 +2013,3,1,3,30,0,0,0,0.9,0.9,135.91,934,-7.7 +2013,3,1,4,30,0,0,0,1,0.30000000000000004,123.98,934,-7.300000000000001 +2013,3,1,5,30,0,0,0,1,0,111.47,934,-7.1000000000000005 +2013,3,1,6,30,0,0,0,0.7000000000000001,0.4,98.8,934,-7 +2013,3,1,7,30,23,23,0,0.5,2.2,86.03,935,-5.9 +2013,3,1,8,30,263,52,766,0.8,5.6000000000000005,73.95,935,-6.5 +2013,3,1,9,30,485,65,909,1.1,9.3,62.47,935,-7.6000000000000005 +2013,3,1,10,30,676,73,985,1.8,12.100000000000001,52.26,935,-7.9 +2013,3,1,11,30,807,78,1018,3.3000000000000003,13.700000000000001,44.300000000000004,935,-7.9 +2013,3,1,12,30,865,81,1024,5.1000000000000005,14.4,40.01,935,-7.800000000000001 +2013,3,1,13,30,857,82,1021,6.300000000000001,14.4,40.59,934,-7.7 +2013,3,1,14,30,777,78,1004,6.9,13.8,45.85,934,-7.7 +2013,3,1,15,30,436,256,310,7.1000000000000005,12.8,54.44,935,-8 +2013,3,1,16,30,440,61,896,6.6000000000000005,11.4,65.01,935,-8.200000000000001 +2013,3,1,17,30,214,45,734,6.2,10.5,76.68,935,-7.800000000000001 +2013,3,1,18,30,17,12,203,3.2,6,88.72,936,-6.5 +2013,3,1,19,30,0,0,0,2.4000000000000004,4.1000000000000005,101.67,937,-5.5 +2013,3,1,20,30,0,0,0,1.9000000000000001,2.7,114.31,937,-4.9 +2013,3,1,21,30,0,0,0,1.5,1.6,126.7,937,-4.6000000000000005 +2013,3,1,22,30,0,0,0,1.3,0.8,138.36,938,-4.5 +2013,3,1,23,30,0,0,0,1.3,0.2,148.29,938,-4.5 +2013,3,2,0,30,0,0,0,1.3,-0.30000000000000004,154.24,938,-4.6000000000000005 +2013,3,2,1,30,0,0,0,1.4000000000000001,-0.8,153.34,939,-4.6000000000000005 +2013,3,2,2,30,0,0,0,1.5,-1.2000000000000002,146.13,939,-4.6000000000000005 +2013,3,2,3,30,0,0,0,1.5,-1.6,135.63,939,-4.7 +2013,3,2,4,30,0,0,0,1.6,-2.1,123.72,939,-4.7 +2013,3,2,5,30,0,0,0,1.5,-2.6,111.23,939,-4.7 +2013,3,2,6,30,0,0,0,1.7000000000000002,-2.1,98.55,940,-4.7 +2013,3,2,7,30,51,24,372,2.2,0.30000000000000004,85.79,940,-4.7 +2013,3,2,8,30,263,52,750,2.6,4.1000000000000005,73.68,941,-4.4 +2013,3,2,9,30,482,66,891,2.7,7.800000000000001,62.17,941,-5.2 +2013,3,2,10,30,666,75,958,3.1,10.8,51.93,940,-5.4 +2013,3,2,11,30,795,79,994,3.6,13.4,43.93,939,-5 +2013,3,2,12,30,858,84,1004,4,15.4,39.62,938,-3.9000000000000004 +2013,3,2,13,30,849,84,1003,4.2,16.7,40.230000000000004,937,-2.9000000000000004 +2013,3,2,14,30,770,80,985,4.1000000000000005,17.5,45.54,936,-2.2 +2013,3,2,15,30,627,72,949,3.8000000000000003,17.6,54.19,935,-1.9000000000000001 +2013,3,2,16,30,434,62,873,2.5,16.5,64.8,934,-1.8 +2013,3,2,17,30,211,46,706,1.5,15.5,76.5,934,1.6 +2013,3,2,18,30,17,12,204,0.9,12,88.57000000000001,934,0.1 +2013,3,2,19,30,0,0,0,1.1,10.5,101.51,934,-0.8 +2013,3,2,20,30,0,0,0,1.3,8.5,114.15,934,-1 +2013,3,2,21,30,0,0,0,1.5,6.9,126.52,934,-1.2000000000000002 +2013,3,2,22,30,0,0,0,1.7000000000000002,6.1000000000000005,138.14000000000001,934,-1.5 +2013,3,2,23,30,0,0,0,2.1,5.7,148,934,-1.9000000000000001 +2013,3,3,0,30,0,0,0,2.6,5.5,153.87,933,-2.3000000000000003 +2013,3,3,1,30,0,0,0,3.1,5.4,152.96,933,-2.6 +2013,3,3,2,30,0,0,0,3.6,5.1000000000000005,145.8,932,-3 +2013,3,3,3,30,0,0,0,3.9000000000000004,4.7,135.34,932,-3.2 +2013,3,3,4,30,0,0,0,4,4.2,123.46000000000001,932,-3.4000000000000004 +2013,3,3,5,30,0,0,0,4.3,3.8000000000000003,110.98,931,-3.7 +2013,3,3,6,30,0,0,0,4.7,4,98.31,931,-4.2 +2013,3,3,7,30,56,24,414,4.9,5.7,85.55,931,-4.800000000000001 +2013,3,3,8,30,274,51,779,5.1000000000000005,9.5,73.41,930,-5 +2013,3,3,9,30,495,65,913,6.300000000000001,14.100000000000001,61.88,930,-4.800000000000001 +2013,3,3,10,30,555,199,573,7.4,18.3,51.6,928,-5.800000000000001 +2013,3,3,11,30,809,105,971,7.5,21.400000000000002,43.56,927,-6.2 +2013,3,3,12,30,873,80,1024,7.5,23.6,39.24,926,-6.1000000000000005 +2013,3,3,13,30,869,81,1027,7.5,24.8,39.86,924,-5.9 +2013,3,3,14,30,788,80,1005,7.4,25.3,45.24,923,-5.800000000000001 +2013,3,3,15,30,642,75,963,6.800000000000001,25.200000000000003,53.93,922,-5.800000000000001 +2013,3,3,16,30,445,65,885,5.5,23.6,64.59,921,-5.5 +2013,3,3,17,30,180,62,502,4.5,22.200000000000003,76.32000000000001,921,-3.5 +2013,3,3,18,30,10,10,0,5,17.6,88.44,920,-3.1 +2013,3,3,19,30,0,0,0,6.300000000000001,17.2,101.35000000000001,920,-4.1000000000000005 +2013,3,3,20,30,0,0,0,6.9,16.400000000000002,113.99000000000001,920,-4.4 +2013,3,3,21,30,0,0,0,6.5,14.8,126.34,920,-4.6000000000000005 +2013,3,3,22,30,0,0,0,5.9,13.100000000000001,137.92000000000002,919,-4.6000000000000005 +2013,3,3,23,30,0,0,0,5.7,11.700000000000001,147.71,919,-4.7 +2013,3,4,0,30,0,0,0,5.4,10.5,153.51,919,-4.7 +2013,3,4,1,30,0,0,0,5.1000000000000005,9.4,152.57,919,-4.6000000000000005 +2013,3,4,2,30,0,0,0,4.800000000000001,8.700000000000001,145.46,919,-4.6000000000000005 +2013,3,4,3,30,0,0,0,4.5,8.3,135.05,919,-4.5 +2013,3,4,4,30,0,0,0,4.2,8.3,123.2,919,-4.3 +2013,3,4,5,30,0,0,0,4.1000000000000005,8.700000000000001,110.73,919,-4.1000000000000005 +2013,3,4,6,30,0,0,0,4.3,9.4,98.06,920,-3.9000000000000004 +2013,3,4,7,30,39,28,133,4.7,11.3,85.3,920,-3.7 +2013,3,4,8,30,179,112,231,4.9,14.3,73.14,920,-3.4000000000000004 +2013,3,4,9,30,379,175,429,4.800000000000001,17.900000000000002,61.58,920,-2.5 +2013,3,4,10,30,460,290,272,5.300000000000001,22.200000000000003,51.26,920,-1.9000000000000001 +2013,3,4,11,30,549,356,265,5.7,25.6,43.19,919,-2.5 +2013,3,4,12,30,737,288,576,5.5,26.8,38.85,918,-2.1 +2013,3,4,13,30,845,81,989,5.2,27.1,39.5,917,-1.2000000000000002 +2013,3,4,14,30,413,343,98,5,27,44.93,917,-0.5 +2013,3,4,15,30,421,274,247,4.7,26.3,53.68,916,-0.30000000000000004 +2013,3,4,16,30,342,151,441,4.2,24.3,64.38,916,0.1 +2013,3,4,17,30,119,94,105,4,23,76.15,916,0 +2013,3,4,18,30,19,14,169,4.7,18.6,88.29,917,-2.8000000000000003 +2013,3,4,19,30,0,0,0,5,17.400000000000002,101.2,917,-5.4 +2013,3,4,20,30,0,0,0,4.6000000000000005,16.3,113.82000000000001,918,-5.4 +2013,3,4,21,30,0,0,0,3.9000000000000004,15.100000000000001,126.15,919,-3.5 +2013,3,4,22,30,0,0,0,5.4,13.9,137.70000000000002,921,-0.9 +2013,3,4,23,30,0,0,0,8.700000000000001,11.700000000000001,147.42000000000002,925,1.4000000000000001 +2013,3,5,0,30,0,0,0,10.3,8.4,153.14000000000001,928,0.9 +2013,3,5,1,30,0,0,0,9.9,5.800000000000001,152.19,930,-1.2000000000000002 +2013,3,5,2,30,0,0,0,8.9,4.3,145.12,932,-2 +2013,3,5,3,30,0,0,0,7.7,3.6,134.76,934,-2.3000000000000003 +2013,3,5,4,30,0,0,0,6.7,3.1,122.93,935,-2.7 +2013,3,5,5,30,0,0,0,6,2.5,110.47,936,-3.3000000000000003 +2013,3,5,6,30,0,0,0,5.7,2.4000000000000004,97.81,937,-3.8000000000000003 +2013,3,5,7,30,65,27,451,6.300000000000001,3.4000000000000004,85.04,938,-4.6000000000000005 +2013,3,5,8,30,294,53,818,7.2,5.300000000000001,72.87,939,-7.6000000000000005 +2013,3,5,9,30,522,66,948,7.4,7,61.28,940,-11.3 +2013,3,5,10,30,721,74,1027,7.1000000000000005,8.6,50.93,940,-13.3 +2013,3,5,11,30,855,78,1059,6.6000000000000005,10.200000000000001,42.82,939,-13.9 +2013,3,5,12,30,920,79,1073,6.1000000000000005,11.5,38.45,939,-14 +2013,3,5,13,30,910,78,1073,5.5,12.5,39.13,938,-14 +2013,3,5,14,30,827,75,1056,4.9,12.9,44.62,938,-14 +2013,3,5,15,30,677,69,1021,4.4,12.600000000000001,53.43,938,-13.9 +2013,3,5,16,30,474,60,950,3.5,11.600000000000001,64.17,938,-13.8 +2013,3,5,17,30,239,46,797,3,10.8,75.97,938,-12.9 +2013,3,5,18,30,25,15,307,1.3,5.1000000000000005,88.12,938,-7.5 +2013,3,5,19,30,0,0,0,1.3,3.8000000000000003,101.04,939,-8 +2013,3,5,20,30,0,0,0,1.3,2.9000000000000004,113.66,939,-8.6 +2013,3,5,21,30,0,0,0,1.3,2.2,125.97,939,-9 +2013,3,5,22,30,0,0,0,1.2000000000000002,1.9000000000000001,137.47,939,-9.4 +2013,3,5,23,30,0,0,0,1.2000000000000002,1.6,147.13,939,-9.9 +2013,3,6,0,30,0,0,0,1.2000000000000002,1.1,152.77,939,-10.5 +2013,3,6,1,30,0,0,0,1.2000000000000002,0.5,151.8,938,-10.9 +2013,3,6,2,30,0,0,0,1.1,0.30000000000000004,144.78,938,-11.200000000000001 +2013,3,6,3,30,0,0,0,1,0.1,134.46,938,-11.600000000000001 +2013,3,6,4,30,0,0,0,1.1,-0.7000000000000001,122.66,938,-11.700000000000001 +2013,3,6,5,30,0,0,0,1.2000000000000002,-1.2000000000000002,110.22,939,-11.3 +2013,3,6,6,30,0,0,0,1.3,-0.5,97.55,939,-10.600000000000001 +2013,3,6,7,30,41,32,100,1.8,1.5,84.79,940,-9.200000000000001 +2013,3,6,8,30,226,89,457,2.8000000000000003,3.7,72.59,940,-10.700000000000001 +2013,3,6,9,30,518,76,912,3.5,5.9,60.980000000000004,940,-10.600000000000001 +2013,3,6,10,30,694,89,953,3.9000000000000004,7.6000000000000005,50.59,939,-11.100000000000001 +2013,3,6,11,30,615,329,388,4,9,42.45,938,-11.100000000000001 +2013,3,6,12,30,683,326,453,4,10.5,38.06,937,-10.9 +2013,3,6,13,30,464,385,101,3.9000000000000004,11.8,38.77,936,-10.8 +2013,3,6,14,30,553,338,300,4,12.9,44.31,935,-10.700000000000001 +2013,3,6,15,30,601,101,835,4.2,13.700000000000001,53.18,934,-10.5 +2013,3,6,16,30,433,80,805,3.9000000000000004,13.4,63.97,933,-10.3 +2013,3,6,17,30,213,58,633,3.4000000000000004,12.8,75.79,933,-8.9 +2013,3,6,18,30,15,15,0,2.7,8,87.97,933,-6.5 +2013,3,6,19,30,0,0,0,3.3000000000000003,7.2,100.89,933,-7.2 +2013,3,6,20,30,0,0,0,3.6,6.5,113.5,932,-7.4 +2013,3,6,21,30,0,0,0,3.8000000000000003,5.800000000000001,125.79,932,-7.2 +2013,3,6,22,30,0,0,0,3.8000000000000003,5.1000000000000005,137.25,932,-7.1000000000000005 +2013,3,6,23,30,0,0,0,3.8000000000000003,4.6000000000000005,146.84,931,-7 +2013,3,7,0,30,0,0,0,3.7,4.3,152.39000000000001,931,-7 +2013,3,7,1,30,0,0,0,3.6,3.9000000000000004,151.41,930,-7 +2013,3,7,2,30,0,0,0,3.3000000000000003,3.4000000000000004,144.44,930,-7 +2013,3,7,3,30,0,0,0,2.8000000000000003,2.8000000000000003,134.16,930,-6.9 +2013,3,7,4,30,0,0,0,2.4000000000000004,2.2,122.39,930,-6.800000000000001 +2013,3,7,5,30,0,0,0,2.4000000000000004,2,109.96000000000001,930,-6.800000000000001 +2013,3,7,6,30,0,0,0,3,2.9000000000000004,97.3,931,-6.800000000000001 +2013,3,7,7,30,66,31,366,4.1000000000000005,5.5,84.53,931,-6.9 +2013,3,7,8,30,209,107,336,5,9.3,72.32000000000001,931,-6.2 +2013,3,7,9,30,376,191,379,5.800000000000001,13,60.68,931,-3.6 +2013,3,7,10,30,673,103,890,6,16,50.25,931,-1.6 +2013,3,7,11,30,798,114,921,5.9,18.400000000000002,42.07,930,-0.8 +2013,3,7,12,30,865,102,964,5.800000000000001,20.5,37.67,929,0.1 +2013,3,7,13,30,734,294,562,5.800000000000001,22,38.4,928,0.9 +2013,3,7,14,30,766,110,912,5.800000000000001,22.6,44.01,928,1.4000000000000001 +2013,3,7,15,30,618,112,839,5.9,22.1,52.94,928,1.7000000000000002 +2013,3,7,16,30,332,168,372,5.4,20.5,63.77,928,2.1 +2013,3,7,17,30,202,75,509,4.9,19.5,75.62,928,2.7 +2013,3,7,18,30,15,15,0,3.6,14.8,87.83,928,3.5 +2013,3,7,19,30,0,0,0,3.9000000000000004,13.3,100.73,929,3.8000000000000003 +2013,3,7,20,30,0,0,0,4.1000000000000005,12.3,113.34,929,4.1000000000000005 +2013,3,7,21,30,0,0,0,4.2,11.700000000000001,125.60000000000001,929,4.6000000000000005 +2013,3,7,22,30,0,0,0,4.3,11.3,137.02,929,5.300000000000001 +2013,3,7,23,30,0,0,0,4,10.8,146.54,929,6.1000000000000005 +2013,3,8,0,30,0,0,0,3.7,10,152.02,928,7 +2013,3,8,1,30,0,0,0,3.7,9.700000000000001,151.02,928,8 +2013,3,8,2,30,0,0,0,4.1000000000000005,10.200000000000001,144.09,928,9 +2013,3,8,3,30,0,0,0,4.800000000000001,11,133.86,928,10.100000000000001 +2013,3,8,4,30,0,0,0,4.800000000000001,11.600000000000001,122.11,928,11.200000000000001 +2013,3,8,5,30,0,0,0,4.2,11.9,109.7,928,11.8 +2013,3,8,6,30,0,0,0,4.1000000000000005,12.3,97.04,929,12.3 +2013,3,8,7,30,9,9,0,4.3,13.200000000000001,84.28,929,12.700000000000001 +2013,3,8,8,30,14,14,0,4.5,14.700000000000001,72.04,929,13 +2013,3,8,9,30,42,42,0,5,16.7,60.370000000000005,929,13.3 +2013,3,8,10,30,297,271,41,5.5,18.400000000000002,49.92,929,13.100000000000001 +2013,3,8,11,30,277,263,18,5.9,19.200000000000003,41.69,928,12.600000000000001 +2013,3,8,12,30,419,371,60,6.1000000000000005,19.700000000000003,37.27,927,12.200000000000001 +2013,3,8,13,30,362,334,36,6.4,20.700000000000003,38.04,926,12 +2013,3,8,14,30,348,315,45,6.7,21.700000000000003,43.7,925,11.8 +2013,3,8,15,30,135,135,0,6.9,22,52.69,925,11.4 +2013,3,8,16,30,330,173,351,6.7,21.3,63.56,925,11.3 +2013,3,8,17,30,204,72,523,6.5,20.6,75.44,925,11.600000000000001 +2013,3,8,18,30,21,18,88,5.9,17.6,87.68,925,12.200000000000001 +2013,3,8,19,30,0,0,0,6,16.2,100.58,925,13 +2013,3,8,20,30,0,0,0,6,15.100000000000001,113.17,925,13.5 +2013,3,8,21,30,0,0,0,5.9,14.3,125.42,924,13.8 +2013,3,8,22,30,0,0,0,5.9,13.600000000000001,136.79,924,13.600000000000001 +2013,3,8,23,30,0,0,0,6.1000000000000005,13,146.24,923,13 +2013,3,9,0,30,0,0,0,6.300000000000001,12.700000000000001,151.64000000000001,923,12.700000000000001 +2013,3,9,1,30,0,0,0,6.4,12.600000000000001,150.63,922,12.600000000000001 +2013,3,9,2,30,0,0,0,6.5,12.700000000000001,143.74,922,12.600000000000001 +2013,3,9,3,30,0,0,0,6.5,12.9,133.55,921,12.700000000000001 +2013,3,9,4,30,0,0,0,6.7,13.100000000000001,121.83,921,12.9 +2013,3,9,5,30,0,0,0,6.5,13.200000000000001,109.43,921,13.100000000000001 +2013,3,9,6,30,0,0,0,6.300000000000001,13.4,96.78,921,13.200000000000001 +2013,3,9,7,30,71,33,372,6.6000000000000005,14.700000000000001,84.02,921,13.3 +2013,3,9,8,30,113,111,8,7.1000000000000005,17.3,71.76,921,13 +2013,3,9,9,30,399,185,429,6.9,19.900000000000002,60.07,921,11.4 +2013,3,9,10,30,511,287,345,6.4,21.8,49.58,921,8.8 +2013,3,9,11,30,475,376,131,6.1000000000000005,22.700000000000003,41.31,920,6.800000000000001 +2013,3,9,12,30,256,245,14,6,23.1,36.88,920,5.300000000000001 +2013,3,9,13,30,866,93,976,6.1000000000000005,23.200000000000003,37.67,919,4 +2013,3,9,14,30,400,344,77,6.2,22.8,43.4,918,2.8000000000000003 +2013,3,9,15,30,478,263,353,6.300000000000001,22.1,52.45,919,1.2000000000000002 +2013,3,9,16,30,454,67,863,5.9,20.700000000000003,63.36,919,-0.7000000000000001 +2013,3,9,17,30,229,50,704,5.4,19.900000000000002,75.27,919,-2.3000000000000003 +2013,3,9,18,30,27,17,240,2.5,14.9,87.53,920,-2 +2013,3,9,19,30,0,0,0,2.1,13.700000000000001,100.42,920,-1.8 +2013,3,9,20,30,0,0,0,2.5,13.200000000000001,113.01,920,-1.6 +2013,3,9,21,30,0,0,0,3.1,12.600000000000001,125.23,921,-1.4000000000000001 +2013,3,9,22,30,0,0,0,2.9000000000000004,11.4,136.56,922,-0.9 +2013,3,9,23,30,0,0,0,2.6,10.200000000000001,145.94,922,-0.2 +2013,3,10,0,30,0,0,0,2.7,9.3,151.27,922,-0.1 +2013,3,10,1,30,0,0,0,3.6,8.700000000000001,150.24,921,-0.7000000000000001 +2013,3,10,2,30,0,0,0,4.6000000000000005,7.9,143.38,922,-2.3000000000000003 +2013,3,10,3,30,0,0,0,5.4,6.6000000000000005,133.24,923,-2.7 +2013,3,10,4,30,0,0,0,6.4,5.2,121.55,925,-2.7 +2013,3,10,5,30,0,0,0,7.1000000000000005,4,109.17,926,-3.2 +2013,3,10,6,30,0,0,0,7.5,3.6,96.52,927,-3.6 +2013,3,10,7,30,81,33,443,8.1,4.7,83.75,928,-3.9000000000000004 +2013,3,10,8,30,307,59,780,8.700000000000001,6.300000000000001,71.47,928,-4.6000000000000005 +2013,3,10,9,30,534,70,921,8.700000000000001,7.800000000000001,59.76,928,-5.6000000000000005 +2013,3,10,10,30,720,76,986,8.4,9.200000000000001,49.230000000000004,928,-6.9 +2013,3,10,11,30,849,81,1017,7.9,10.5,40.93,928,-8 +2013,3,10,12,30,917,82,1039,7.4,11.700000000000001,36.480000000000004,928,-8.9 +2013,3,10,13,30,906,82,1036,7.1000000000000005,12.5,37.300000000000004,928,-9.9 +2013,3,10,14,30,823,80,1018,7,12.700000000000001,43.09,928,-10.8 +2013,3,10,15,30,675,73,981,7,12.4,52.2,928,-11.600000000000001 +2013,3,10,16,30,479,64,918,6.6000000000000005,11.4,63.160000000000004,928,-12.3 +2013,3,10,17,30,246,49,766,6.2,10.700000000000001,75.10000000000001,929,-12.5 +2013,3,10,18,30,32,18,319,3.1,6.7,87.37,930,-11.100000000000001 +2013,3,10,19,30,0,0,0,2.2,4.7,100.27,931,-9.200000000000001 +2013,3,10,20,30,0,0,0,1.9000000000000001,3.5,112.85000000000001,931,-8.4 +2013,3,10,21,30,0,0,0,1.8,2.7,125.04,932,-8.1 +2013,3,10,22,30,0,0,0,1.9000000000000001,1.9000000000000001,136.33,931,-8.200000000000001 +2013,3,10,23,30,0,0,0,2.2,1.3,145.64000000000001,931,-8.4 +2013,3,11,0,30,0,0,0,2.6,0.7000000000000001,150.89000000000001,931,-8.700000000000001 +2013,3,11,1,30,0,0,0,3,0.2,149.84,931,-9.1 +2013,3,11,2,30,0,0,0,2.8000000000000003,-0.6000000000000001,143.03,931,-9.3 +2013,3,11,3,30,0,0,0,2.3000000000000003,-1.7000000000000002,132.93,931,-9.4 +2013,3,11,4,30,0,0,0,1.8,-2.5,121.27,931,-9.5 +2013,3,11,5,30,0,0,0,1.6,-2.9000000000000004,108.9,931,-9.700000000000001 +2013,3,11,6,30,0,0,0,2,-1.8,96.25,932,-9.9 +2013,3,11,7,30,90,32,510,2.7,1.4000000000000001,83.48,932,-10 +2013,3,11,8,30,318,57,810,3,5.800000000000001,71.19,932,-10.4 +2013,3,11,9,30,543,70,930,3.2,9.9,59.45,932,-12 +2013,3,11,10,30,729,78,990,3.4000000000000004,13.100000000000001,48.89,932,-11.600000000000001 +2013,3,11,11,30,859,82,1023,3.5,15.8,40.550000000000004,931,-10.5 +2013,3,11,12,30,916,82,1031,3.4000000000000004,18,36.08,930,-9.4 +2013,3,11,13,30,904,81,1030,3.1,19.400000000000002,36.94,928,-8.6 +2013,3,11,14,30,822,78,1013,2.8000000000000003,20.1,42.79,927,-8.1 +2013,3,11,15,30,673,74,972,2.7,20.200000000000003,51.96,926,-7.800000000000001 +2013,3,11,16,30,473,66,896,2,19.1,62.97,926,-7.7 +2013,3,11,17,30,243,50,742,1.3,18.2,74.93,926,-1.7000000000000002 +2013,3,11,18,30,32,18,295,1.4000000000000001,12.3,87.23,926,-1.9000000000000001 +2013,3,11,19,30,0,0,0,1.6,10.3,100.11,926,-3 +2013,3,11,20,30,0,0,0,2,9.4,112.68,927,-3.6 +2013,3,11,21,30,0,0,0,2.6,9.1,124.86,927,-4.3 +2013,3,11,22,30,0,0,0,3.4000000000000004,8.9,136.1,927,-5 +2013,3,11,23,30,0,0,0,4,8.6,145.33,927,-5.300000000000001 +2013,3,12,0,30,0,0,0,4.3,8,150.51,927,-5.5 +2013,3,12,1,30,0,0,0,4.5,7.300000000000001,149.45000000000002,927,-5.6000000000000005 +2013,3,12,2,30,0,0,0,4.800000000000001,6.7,142.67000000000002,927,-6 +2013,3,12,3,30,0,0,0,4.7,6,132.61,927,-6.6000000000000005 +2013,3,12,4,30,0,0,0,4.5,5.300000000000001,120.98,927,-7.1000000000000005 +2013,3,12,5,30,0,0,0,4.2,4.5,108.63,927,-7.1000000000000005 +2013,3,12,6,30,0,0,0,4.2,4.6000000000000005,95.99000000000001,927,-6.9 +2013,3,12,7,30,91,32,500,4.2,6.6000000000000005,83.22,928,-6.6000000000000005 +2013,3,12,8,30,317,58,793,4.1000000000000005,9.600000000000001,70.91,929,-5.800000000000001 +2013,3,12,9,30,539,72,910,4.1000000000000005,12.200000000000001,59.14,930,-5 +2013,3,12,10,30,723,83,967,4.1000000000000005,14.200000000000001,48.550000000000004,931,-4 +2013,3,12,11,30,847,90,991,4.1000000000000005,15.8,40.17,932,-3.4000000000000004 +2013,3,12,12,30,910,86,1014,4.3,17.1,35.68,932,-3.1 +2013,3,12,13,30,894,87,1004,4.800000000000001,17.900000000000002,36.57,932,-2.9000000000000004 +2013,3,12,14,30,811,85,984,5.4,18,42.49,932,-3 +2013,3,12,15,30,664,79,944,5.800000000000001,17.5,51.72,932,-3.3000000000000003 +2013,3,12,16,30,467,69,870,5.800000000000001,16.400000000000002,62.77,933,-3.7 +2013,3,12,17,30,240,52,716,5.7,15.600000000000001,74.76,933,-3.9000000000000004 +2013,3,12,18,30,33,19,282,4.4,11.3,87.08,935,-3.5 +2013,3,12,19,30,0,0,0,4.3,9.600000000000001,99.96000000000001,936,-3.5 +2013,3,12,20,30,0,0,0,3.8000000000000003,8.200000000000001,112.52,937,-3.5 +2013,3,12,21,30,0,0,0,2.9000000000000004,6.800000000000001,124.67,938,-3.5 +2013,3,12,22,30,0,0,0,2.2,5.5,135.86,938,-3.3000000000000003 +2013,3,12,23,30,0,0,0,1.7000000000000002,4.5,145.03,938,-3.2 +2013,3,13,0,30,0,0,0,1.5,3.8000000000000003,150.13,938,-3.1 +2013,3,13,1,30,0,0,0,1.4000000000000001,3.3000000000000003,149.05,938,-3.1 +2013,3,13,2,30,0,0,0,1.3,2.9000000000000004,142.31,938,-3 +2013,3,13,3,30,0,0,0,1.3,2.6,132.3,938,-2.9000000000000004 +2013,3,13,4,30,0,0,0,1.2000000000000002,2.4000000000000004,120.69,939,-2.6 +2013,3,13,5,30,0,0,0,1.2000000000000002,2.3000000000000003,108.36,939,-2.4000000000000004 +2013,3,13,6,30,0,0,0,1.2000000000000002,3.4000000000000004,95.72,940,-2.1 +2013,3,13,7,30,94,33,496,1.7000000000000002,6.4,82.95,940,-1.5 +2013,3,13,8,30,320,59,786,3.1,10.5,70.62,941,-1.1 +2013,3,13,9,30,542,74,904,4.1000000000000005,14.100000000000001,58.83,940,-1.4000000000000001 +2013,3,13,10,30,725,83,963,4.1000000000000005,16.5,48.2,940,-0.9 +2013,3,13,11,30,853,89,994,3.9000000000000004,18.400000000000002,39.79,939,-0.30000000000000004 +2013,3,13,12,30,764,316,549,3.9000000000000004,20,35.29,938,-0.1 +2013,3,13,13,30,895,95,993,3.8000000000000003,21.1,36.21,937,-0.1 +2013,3,13,14,30,812,92,973,3.6,21.8,42.2,936,-0.2 +2013,3,13,15,30,666,83,937,3.2,21.900000000000002,51.49,935,-0.5 +2013,3,13,16,30,468,73,857,2.3000000000000003,21,62.58,935,-0.7000000000000001 +2013,3,13,17,30,241,56,695,1.6,20.1,74.59,935,2.5 +2013,3,13,18,30,33,20,249,1.5,14.3,86.93,935,2.9000000000000004 +2013,3,13,19,30,0,0,0,2,12.8,99.8,935,1.8 +2013,3,13,20,30,0,0,0,2.5,12,112.35000000000001,936,1.7000000000000002 +2013,3,13,21,30,0,0,0,3,11.3,124.48,936,1.7000000000000002 +2013,3,13,22,30,0,0,0,3.4000000000000004,10.600000000000001,135.63,936,1.7000000000000002 +2013,3,13,23,30,0,0,0,3.6,10,144.72,936,1.5 +2013,3,14,0,30,0,0,0,3.7,9.3,149.75,936,1.2000000000000002 +2013,3,14,1,30,0,0,0,3.5,8.4,148.65,936,1.1 +2013,3,14,2,30,0,0,0,3.2,7.6000000000000005,141.95000000000002,936,1.1 +2013,3,14,3,30,0,0,0,3.1,7,131.98,935,1.1 +2013,3,14,4,30,0,0,0,3,6.6000000000000005,120.41,935,1.4000000000000001 +2013,3,14,5,30,0,0,0,3,6.300000000000001,108.08,936,1.9000000000000001 +2013,3,14,6,30,0,0,0,3.6,7,95.45,936,2.5 +2013,3,14,7,30,94,37,448,4.7,9.600000000000001,82.68,936,3.3000000000000003 +2013,3,14,8,30,317,66,745,5.7,13.3,70.34,937,4.6000000000000005 +2013,3,14,9,30,536,82,870,6.1000000000000005,17.1,58.53,936,5.6000000000000005 +2013,3,14,10,30,718,92,934,5.800000000000001,20.400000000000002,47.86,936,5.4 +2013,3,14,11,30,842,98,964,5.4,23.1,39.410000000000004,935,4.5 +2013,3,14,12,30,906,90,994,5.2,25,34.89,934,3.6 +2013,3,14,13,30,893,91,989,5.2,26,35.84,933,2.8000000000000003 +2013,3,14,14,30,810,89,968,5.2,26.3,41.9,932,2.1 +2013,3,14,15,30,660,85,920,5.1000000000000005,25.900000000000002,51.25,932,1.6 +2013,3,14,16,30,464,75,839,4.4,24.6,62.38,932,1.3 +2013,3,14,17,30,177,94,310,3.8000000000000003,23.6,74.43,932,2.1 +2013,3,14,18,30,35,21,245,3.3000000000000003,18.1,86.79,932,3.4000000000000004 +2013,3,14,19,30,0,0,0,4.4,17.2,99.65,933,2.9000000000000004 +2013,3,14,20,30,0,0,0,5.2,16.400000000000002,112.19,933,2.9000000000000004 +2013,3,14,21,30,0,0,0,5.6000000000000005,15.3,124.29,933,2.9000000000000004 +2013,3,14,22,30,0,0,0,5.7,14.3,135.39000000000001,933,3 +2013,3,14,23,30,0,0,0,5.6000000000000005,13.4,144.41,932,3 +2013,3,15,0,30,0,0,0,5.2,12.5,149.37,932,3 +2013,3,15,1,30,0,0,0,4.800000000000001,11.4,148.25,932,2.9000000000000004 +2013,3,15,2,30,0,0,0,4.6000000000000005,10.5,141.59,932,2.8000000000000003 +2013,3,15,3,30,0,0,0,4.5,9.700000000000001,131.66,931,2.8000000000000003 +2013,3,15,4,30,0,0,0,4.3,9.1,120.11,931,2.9000000000000004 +2013,3,15,5,30,0,0,0,4.1000000000000005,8.5,107.81,931,3.3000000000000003 +2013,3,15,6,30,0,0,0,4.3,8.8,95.18,931,3.9000000000000004 +2013,3,15,7,30,102,35,505,4.9,11,82.42,931,4.5 +2013,3,15,8,30,328,60,788,5.6000000000000005,14.700000000000001,70.05,931,5.300000000000001 +2013,3,15,9,30,549,73,903,6,18.900000000000002,58.22,931,5.800000000000001 +2013,3,15,10,30,731,82,961,6.1000000000000005,22.700000000000003,47.52,930,5.300000000000001 +2013,3,15,11,30,858,88,992,6.1000000000000005,25.700000000000003,39.02,929,4.1000000000000005 +2013,3,15,12,30,918,88,1007,6.1000000000000005,27.6,34.49,928,2.6 +2013,3,15,13,30,906,88,1004,6.2,28.6,35.480000000000004,926,1.4000000000000001 +2013,3,15,14,30,819,86,981,6.1000000000000005,28.8,41.6,925,0.7000000000000001 +2013,3,15,15,30,672,80,941,5.9,28.3,51.02,924,0.1 +2013,3,15,16,30,475,72,866,5.300000000000001,27,62.190000000000005,924,-0.1 +2013,3,15,17,30,247,55,706,4.800000000000001,26,74.26,924,0.7000000000000001 +2013,3,15,18,30,37,21,279,4.800000000000001,20.8,86.65,924,2 +2013,3,15,19,30,0,0,0,5.7,19.3,99.5,924,2.2 +2013,3,15,20,30,0,0,0,5.800000000000001,17.8,112.03,924,2.6 +2013,3,15,21,30,0,0,0,5.7,16.3,124.09,924,3.1 +2013,3,15,22,30,0,0,0,5.800000000000001,15.200000000000001,135.15,924,3.2 +2013,3,15,23,30,0,0,0,5.800000000000001,14.3,144.11,923,3.2 +2013,3,16,0,30,0,0,0,5.800000000000001,13.5,148.99,923,3.2 +2013,3,16,1,30,0,0,0,5.7,12.9,147.85,922,3.1 +2013,3,16,2,30,0,0,0,5.5,12.3,141.23,922,3 +2013,3,16,3,30,0,0,0,5.300000000000001,11.5,131.33,921,2.9000000000000004 +2013,3,16,4,30,0,0,0,5.2,10.700000000000001,119.82000000000001,921,3 +2013,3,16,5,30,0,0,0,5,9.8,107.53,921,3.2 +2013,3,16,6,30,0,0,0,5,9.8,94.91,921,3.4000000000000004 +2013,3,16,7,30,107,37,515,5.4,11.700000000000001,82.15,921,3.6 +2013,3,16,8,30,339,61,804,5.800000000000001,15.5,69.77,921,3.6 +2013,3,16,9,30,563,74,920,5.800000000000001,20,57.910000000000004,921,3.1 +2013,3,16,10,30,747,83,978,5.300000000000001,24,47.17,920,1.6 +2013,3,16,11,30,870,88,1002,4.6000000000000005,27.3,38.64,920,-0.2 +2013,3,16,12,30,930,90,1014,4,29.700000000000003,34.08,919,-1.5 +2013,3,16,13,30,917,93,1007,3.5,31,35.11,918,-2.4000000000000004 +2013,3,16,14,30,715,253,614,3,31.5,41.31,917,-2.9000000000000004 +2013,3,16,15,30,609,150,726,2.3000000000000003,31.3,50.79,916,-3.2 +2013,3,16,16,30,390,153,505,1.1,29.5,62,916,-2.5 +2013,3,16,17,30,201,83,429,0.4,28,74.10000000000001,916,4.9 +2013,3,16,18,30,29,22,126,1.2000000000000002,22.200000000000003,86.5,917,2.7 +2013,3,16,19,30,0,0,0,1.5,19.5,99.35000000000001,917,2.8000000000000003 +2013,3,16,20,30,0,0,0,1.6,17.2,111.86,918,3.9000000000000004 +2013,3,16,21,30,0,0,0,1.5,15.4,123.9,919,4.6000000000000005 +2013,3,16,22,30,0,0,0,1.2000000000000002,14,134.91,919,5 +2013,3,16,23,30,0,0,0,1,13,143.79,919,5.1000000000000005 +2013,3,17,0,30,0,0,0,1.1,12,148.61,919,5.2 +2013,3,17,1,30,0,0,0,1.8,10.9,147.45000000000002,920,5.4 +2013,3,17,2,30,0,0,0,3.1,9.9,140.86,920,5.4 +2013,3,17,3,30,0,0,0,4.1000000000000005,8.9,131.01,920,4.800000000000001 +2013,3,17,4,30,0,0,0,4.1000000000000005,7.800000000000001,119.52,921,3.7 +2013,3,17,5,30,0,0,0,3.5,6.9,107.25,921,2.6 +2013,3,17,6,30,0,0,0,3.4000000000000004,6.800000000000001,94.64,922,1.7000000000000002 +2013,3,17,7,30,106,41,460,3.6,8.1,81.87,923,1.2000000000000002 +2013,3,17,8,30,332,68,751,3.4000000000000004,10.4,69.48,923,1.6 +2013,3,17,9,30,552,83,875,3.1,12.700000000000001,57.6,923,2.4000000000000004 +2013,3,17,10,30,734,91,938,2.8000000000000003,15,46.83,923,3.1 +2013,3,17,11,30,860,96,973,2.4000000000000004,17.1,38.26,922,3.7 +2013,3,17,12,30,919,97,988,2.3000000000000003,19,33.68,921,4.1000000000000005 +2013,3,17,13,30,910,94,993,2.5,20.5,34.75,920,4.3 +2013,3,17,14,30,826,90,976,2.8000000000000003,21.700000000000003,41.02,919,4.2 +2013,3,17,15,30,679,83,938,2.8000000000000003,22.3,50.56,918,3.7 +2013,3,17,16,30,480,72,864,2.2,22,61.82,918,3 +2013,3,17,17,30,252,56,708,1.6,21.6,73.94,918,3.8000000000000003 +2013,3,17,18,30,41,22,296,0.8,17.1,86.35000000000001,918,4.800000000000001 +2013,3,17,19,30,0,0,0,1.5,14.9,99.19,917,3.7 +2013,3,17,20,30,0,0,0,1.9000000000000001,14,111.7,917,3.3000000000000003 +2013,3,17,21,30,0,0,0,2.7,14.100000000000001,123.71000000000001,917,2.8000000000000003 +2013,3,17,22,30,0,0,0,3.7,14.700000000000001,134.67000000000002,917,2.3000000000000003 +2013,3,17,23,30,0,0,0,4.4,14.700000000000001,143.48,917,1.6 +2013,3,18,0,30,0,0,0,4.3,14,148.23,917,0.6000000000000001 +2013,3,18,1,30,0,0,0,4.1000000000000005,13,147.05,918,-0.5 +2013,3,18,2,30,0,0,0,4.2,12.3,140.5,918,-1.4000000000000001 +2013,3,18,3,30,0,0,0,4.3,11.600000000000001,130.68,919,-1.8 +2013,3,18,4,30,0,0,0,3.7,10.4,119.23,919,-1.9000000000000001 +2013,3,18,5,30,0,0,0,3.6,9.3,106.97,920,-1.8 +2013,3,18,6,30,0,0,0,4.800000000000001,9.5,94.36,922,-1.8 +2013,3,18,7,30,119,37,568,6.4,10.700000000000001,81.60000000000001,924,-1.3 +2013,3,18,8,30,350,61,812,7,12.200000000000001,69.19,925,0.8 +2013,3,18,9,30,571,79,911,6.800000000000001,13.9,57.29,926,2.1 +2013,3,18,10,30,749,92,953,6.2,15.600000000000001,46.480000000000004,927,2.6 +2013,3,18,11,30,874,101,978,5.4,17.3,37.87,926,2.8000000000000003 +2013,3,18,12,30,777,340,522,4.6000000000000005,18.8,33.28,926,2.8000000000000003 +2013,3,18,13,30,915,106,981,3.9000000000000004,19.8,34.39,926,2.6 +2013,3,18,14,30,824,115,935,3.7,20.1,40.730000000000004,926,2.2 +2013,3,18,15,30,598,175,663,3.8000000000000003,19.700000000000003,50.33,926,1.7000000000000002 +2013,3,18,16,30,307,208,207,3.6,18.900000000000002,61.63,926,1.2000000000000002 +2013,3,18,17,30,221,70,540,3.2,18.3,73.78,926,1.1 +2013,3,18,18,30,31,23,113,1.6,13.4,86.2,926,2.6 +2013,3,18,19,30,0,0,0,1.9000000000000001,11.700000000000001,99.04,926,2 +2013,3,18,20,30,0,0,0,2.3000000000000003,11,111.53,927,1.6 +2013,3,18,21,30,0,0,0,2.6,10.3,123.51,927,1.6 +2013,3,18,22,30,0,0,0,2.6,9.5,134.42000000000002,927,1.8 +2013,3,18,23,30,0,0,0,2.4000000000000004,8.700000000000001,143.17000000000002,926,2.1 +2013,3,19,0,30,0,0,0,2.1,7.9,147.84,926,2.5 +2013,3,19,1,30,0,0,0,2,7.2,146.65,926,3 +2013,3,19,2,30,0,0,0,1.9000000000000001,6.7,140.13,926,3.6 +2013,3,19,3,30,0,0,0,1.9000000000000001,6.2,130.36,926,4.1000000000000005 +2013,3,19,4,30,0,0,0,1.9000000000000001,5.7,118.93,926,4.6000000000000005 +2013,3,19,5,30,0,0,0,2,5.1000000000000005,106.69,927,5 +2013,3,19,6,30,0,0,0,2.9000000000000004,5.9,94.09,927,5.4 +2013,3,19,7,30,65,54,71,3.9000000000000004,8.4,81.33,927,5.6000000000000005 +2013,3,19,8,30,205,150,155,4.3,11.5,68.91,927,5.6000000000000005 +2013,3,19,9,30,404,231,317,4.3,14.600000000000001,56.980000000000004,927,5.300000000000001 +2013,3,19,10,30,471,338,192,4,17.7,46.14,927,4.6000000000000005 +2013,3,19,11,30,675,340,422,3.5,21.1,37.49,926,3.7 +2013,3,19,12,30,778,345,515,2.7,23.3,32.88,925,2.4000000000000004 +2013,3,19,13,30,713,356,431,2.6,23.3,34.03,925,1.1 +2013,3,19,14,30,500,382,156,3.2,21.900000000000002,40.44,925,0.4 +2013,3,19,15,30,340,292,75,4,19.8,50.1,925,1.7000000000000002 +2013,3,19,16,30,332,202,273,4.800000000000001,17.8,61.45,926,3 +2013,3,19,17,30,97,97,2,5.1000000000000005,16.8,73.62,926,4.3 +2013,3,19,18,30,24,23,4,5.800000000000001,13.700000000000001,86.06,928,5.5 +2013,3,19,19,30,0,0,0,5.9,12.3,98.89,929,5.7 +2013,3,19,20,30,0,0,0,5.6000000000000005,11.4,111.36,930,5.2 +2013,3,19,21,30,0,0,0,5,10.700000000000001,123.32000000000001,931,4.5 +2013,3,19,22,30,0,0,0,4.3,9.9,134.18,932,3.9000000000000004 +2013,3,19,23,30,0,0,0,3.8000000000000003,9.1,142.86,932,3.2 +2013,3,20,0,30,0,0,0,3.2,8.4,147.46,933,2.5 +2013,3,20,1,30,0,0,0,2.6,7.9,146.25,933,2 +2013,3,20,2,30,0,0,0,2.1,7.300000000000001,139.76,933,1.6 +2013,3,20,3,30,0,0,0,1.9000000000000001,6.7,130.03,934,1.4000000000000001 +2013,3,20,4,30,0,0,0,1.9000000000000001,5.9,118.63,934,1.3 +2013,3,20,5,30,0,0,0,1.9000000000000001,5.2,106.41,935,1.4000000000000001 +2013,3,20,6,30,0,0,0,2.6,5.6000000000000005,93.82000000000001,936,1.4000000000000001 +2013,3,20,7,30,121,42,507,3.4000000000000004,8,81.05,937,1.5 +2013,3,20,8,30,350,67,776,4,11.4,68.62,937,0.6000000000000001 +2013,3,20,9,30,574,81,897,4.4,14.3,56.67,937,-0.9 +2013,3,20,10,30,756,89,956,4.2,16.400000000000002,45.800000000000004,937,-1.9000000000000001 +2013,3,20,11,30,882,94,987,3.7,18,37.1,936,-2.6 +2013,3,20,12,30,939,98,998,3.3000000000000003,19.200000000000003,32.480000000000004,934,-2.8000000000000003 +2013,3,20,13,30,922,97,991,3.2,20,33.67,933,-2.6 +2013,3,20,14,30,837,95,971,3.3000000000000003,20.400000000000002,40.160000000000004,931,-2.3000000000000003 +2013,3,20,15,30,685,94,917,3.4000000000000004,20.1,49.88,930,-2 +2013,3,20,16,30,382,172,436,3.5,19.200000000000003,61.27,929,-1.9000000000000001 +2013,3,20,17,30,162,112,178,3.4000000000000004,18.5,73.46000000000001,929,-1.6 +2013,3,20,18,30,27,24,31,2.1,14.4,85.91,929,0.5 +2013,3,20,19,30,0,0,0,2.6,13.100000000000001,98.74000000000001,929,0.6000000000000001 +2013,3,20,20,30,0,0,0,3.4000000000000004,12.700000000000001,111.2,928,0.30000000000000004 +2013,3,20,21,30,0,0,0,4.2,12.4,123.12,928,0.4 +2013,3,20,22,30,0,0,0,4.4,11.8,133.94,927,0.8 +2013,3,20,23,30,0,0,0,4.2,11.200000000000001,142.54,926,1.4000000000000001 +2013,3,21,0,30,0,0,0,3.9000000000000004,10.5,147.08,925,2.1 +2013,3,21,1,30,0,0,0,4,9.9,145.85,924,2.5 +2013,3,21,2,30,0,0,0,4.2,9.5,139.39000000000001,923,2.6 +2013,3,21,3,30,0,0,0,4.3,9.1,129.7,922,2.6 +2013,3,21,4,30,0,0,0,4.5,8.700000000000001,118.33,921,2.4000000000000004 +2013,3,21,5,30,0,0,0,4.7,8.5,106.13,921,2.5 +2013,3,21,6,30,0,0,0,5,9,93.54,920,3.3000000000000003 +2013,3,21,7,30,89,55,212,6.300000000000001,11.3,80.78,919,4.6000000000000005 +2013,3,21,8,30,207,155,142,7.6000000000000005,15.200000000000001,68.33,919,7.6000000000000005 +2013,3,21,9,30,363,254,197,7.800000000000001,19.200000000000003,56.36,918,9.700000000000001 +2013,3,21,10,30,518,336,261,7.5,22.700000000000003,45.45,917,9.8 +2013,3,21,11,30,686,342,430,7.4,25.200000000000003,36.72,916,8.700000000000001 +2013,3,21,12,30,702,409,345,7.300000000000001,26.900000000000002,32.08,915,6.800000000000001 +2013,3,21,13,30,663,413,299,7.1000000000000005,28.1,33.31,914,4.5 +2013,3,21,14,30,827,108,937,7,29,39.87,912,1.9000000000000001 +2013,3,21,15,30,583,209,578,6.6000000000000005,29,49.660000000000004,912,-0.8 +2013,3,21,16,30,434,112,667,5.2,27.900000000000002,61.09,911,-2.5 +2013,3,21,17,30,230,70,556,4.1000000000000005,27,73.3,911,-1.6 +2013,3,21,18,30,39,25,188,2.1,20,85.78,912,1.1 +2013,3,21,19,30,0,0,0,2.1,18.2,98.59,912,0.8 +2013,3,21,20,30,0,0,0,2.2,17.1,111.03,913,0.6000000000000001 +2013,3,21,21,30,0,0,0,2.2,16,122.93,913,0.4 +2013,3,21,22,30,0,0,0,2.4000000000000004,15.200000000000001,133.69,913,0.30000000000000004 +2013,3,21,23,30,0,0,0,2.9000000000000004,14.8,142.23,914,0 +2013,3,22,0,30,0,0,0,3.6,14.3,146.70000000000002,914,-0.4 +2013,3,22,1,30,0,0,0,3.9000000000000004,13.600000000000001,145.45000000000002,915,-0.7000000000000001 +2013,3,22,2,30,0,0,0,3.8000000000000003,12.4,139.02,915,-0.7000000000000001 +2013,3,22,3,30,0,0,0,4.1000000000000005,10.8,129.37,916,0 +2013,3,22,4,30,0,0,0,4.7,9.3,118.03,918,2.3000000000000003 +2013,3,22,5,30,0,0,0,5.1000000000000005,8.1,105.84,919,4.6000000000000005 +2013,3,22,6,30,0,0,0,5.4,7.5,93.27,920,5.7 +2013,3,22,7,30,87,59,170,5.4,7.6000000000000005,80.51,921,5.800000000000001 +2013,3,22,8,30,80,80,0,5.2,8.1,68.05,921,5.300000000000001 +2013,3,22,9,30,211,202,18,4.7,8.6,56.050000000000004,922,4.9 +2013,3,22,10,30,348,312,52,4.2,8.9,45.11,923,4.6000000000000005 +2013,3,22,11,30,340,318,27,3.9000000000000004,9.3,36.34,923,4.4 +2013,3,22,12,30,498,423,89,3.5,9.8,31.68,922,4.3 +2013,3,22,13,30,510,422,105,3.1,10.200000000000001,32.96,922,4.2 +2013,3,22,14,30,455,378,100,2.8000000000000003,10.600000000000001,39.59,922,4.2 +2013,3,22,15,30,451,309,218,2.8000000000000003,10.9,49.44,922,4.1000000000000005 +2013,3,22,16,30,308,215,191,2.8000000000000003,10.9,60.910000000000004,922,4 +2013,3,22,17,30,174,112,213,2.8000000000000003,10.600000000000001,73.14,922,3.9000000000000004 +2013,3,22,18,30,16,16,0,2.4000000000000004,8.200000000000001,85.62,922,3.8000000000000003 +2013,3,22,19,30,0,0,0,2.4000000000000004,6.800000000000001,98.44,921,3.6 +2013,3,22,20,30,0,0,0,2.4000000000000004,5.7,110.86,921,3.5 +2013,3,22,21,30,0,0,0,1.9000000000000001,4.9,122.73,921,3.5 +2013,3,22,22,30,0,0,0,1.4000000000000001,4.2,133.44,921,3.5 +2013,3,22,23,30,0,0,0,1,4,141.91,921,3.5 +2013,3,23,0,30,0,0,0,1,4.2,146.31,921,3.6 +2013,3,23,1,30,0,0,0,1,4.3,145.05,921,3.6 +2013,3,23,2,30,0,0,0,1.1,4.2,138.65,921,3.7 +2013,3,23,3,30,0,0,0,1.3,4,129.04,921,3.7 +2013,3,23,4,30,0,0,0,1.6,3.7,117.73,921,3.7 +2013,3,23,5,30,0,0,0,2.1,3.7,105.56,920,3.7 +2013,3,23,6,30,0,0,0,2.7,4.3,92.99,920,3.7 +2013,3,23,7,30,124,56,401,3.1,6.300000000000001,80.23,920,4 +2013,3,23,8,30,115,115,0,3.3000000000000003,9.600000000000001,67.76,920,4.6000000000000005 +2013,3,23,9,30,213,203,18,3.3000000000000003,13.5,55.74,920,5.300000000000001 +2013,3,23,10,30,356,317,55,3.4000000000000004,17.8,44.77,919,5.9 +2013,3,23,11,30,889,103,971,3.8000000000000003,21.8,35.96,918,5.1000000000000005 +2013,3,23,12,30,951,102,994,4.4,24.700000000000003,31.28,917,2.5 +2013,3,23,13,30,944,100,1002,5.1000000000000005,26.1,32.6,916,-1.1 +2013,3,23,14,30,861,100,983,5.5,26.5,39.31,915,-4.7 +2013,3,23,15,30,711,97,941,5.5,26.1,49.230000000000004,915,-7.5 +2013,3,23,16,30,413,150,537,4.4,24.700000000000003,60.730000000000004,914,-8.8 +2013,3,23,17,30,270,65,700,3.5,23.700000000000003,72.99,914,-5.800000000000001 +2013,3,23,18,30,51,30,261,2.7,17.5,85.49,915,-2.8000000000000003 +2013,3,23,19,30,0,0,0,5.6000000000000005,16.7,98.29,917,-5.4 +2013,3,23,20,30,0,0,0,8.8,15.200000000000001,110.7,920,-10 +2013,3,23,21,30,0,0,0,9.200000000000001,12,122.53,923,-13.3 +2013,3,23,22,30,0,0,0,9.5,8.6,133.19,925,-9.8 +2013,3,23,23,30,0,0,0,9.4,5.1000000000000005,141.59,927,-5.300000000000001 +2013,3,24,0,30,0,0,0,8.3,2.6,145.93,929,-3.9000000000000004 +2013,3,24,1,30,0,0,0,7.5,1.3,144.66,929,-4.6000000000000005 +2013,3,24,2,30,0,0,0,7,0.30000000000000004,138.28,929,-5.800000000000001 +2013,3,24,3,30,0,0,0,6.6000000000000005,-0.5,128.71,930,-6.800000000000001 +2013,3,24,4,30,0,0,0,6.300000000000001,-1.1,117.43,930,-7.4 +2013,3,24,5,30,0,0,0,6,-1.6,105.28,931,-7.9 +2013,3,24,6,30,0,0,0,6.2,-1.5,92.72,932,-8.5 +2013,3,24,7,30,147,42,607,6.6000000000000005,-0.30000000000000004,79.96000000000001,933,-8.9 +2013,3,24,8,30,388,62,849,6.7,1.7000000000000002,67.47,934,-9.5 +2013,3,24,9,30,613,74,950,6.5,3.9000000000000004,55.43,934,-10 +2013,3,24,10,30,797,81,1002,6.1000000000000005,6,44.43,934,-10.5 +2013,3,24,11,30,922,86,1028,5.7,7.9,35.57,933,-11.100000000000001 +2013,3,24,12,30,979,88,1038,5.4,9.4,30.88,932,-11.700000000000001 +2013,3,24,13,30,963,88,1035,5.2,10.3,32.25,932,-12.3 +2013,3,24,14,30,875,85,1018,5.1000000000000005,10.700000000000001,39.04,931,-13 +2013,3,24,15,30,722,80,979,5,10.5,49.01,930,-13.700000000000001 +2013,3,24,16,30,519,69,914,4.7,9.8,60.56,930,-14.200000000000001 +2013,3,24,17,30,284,54,782,4.5,9.200000000000001,72.84,930,-14.5 +2013,3,24,18,30,59,25,420,2.6,5.2,85.33,931,-13 +2013,3,24,19,30,0,0,0,2.8000000000000003,3.6,98.14,931,-12 +2013,3,24,20,30,0,0,0,3.1,2.8000000000000003,110.53,932,-12.700000000000001 +2013,3,24,21,30,0,0,0,3.1,1.8,122.33,932,-12.700000000000001 +2013,3,24,22,30,0,0,0,2.9000000000000004,0.9,132.94,933,-12.5 +2013,3,24,23,30,0,0,0,2.7,0,141.27,933,-12.3 +2013,3,25,0,30,0,0,0,2.4000000000000004,-0.9,145.55,933,-11.9 +2013,3,25,1,30,0,0,0,2,-1.6,144.26,934,-11.600000000000001 +2013,3,25,2,30,0,0,0,1.7000000000000002,-2.4000000000000004,137.91,935,-11.3 +2013,3,25,3,30,0,0,0,1.4000000000000001,-3,128.38,935,-11.100000000000001 +2013,3,25,4,30,0,0,0,1.4000000000000001,-3.6,117.12,936,-11 +2013,3,25,5,30,0,0,0,1.5,-3.9000000000000004,104.99000000000001,937,-11.100000000000001 +2013,3,25,6,30,0,0,0,2.4000000000000004,-2.7,92.44,938,-11.200000000000001 +2013,3,25,7,30,154,43,621,3.7,0.30000000000000004,79.68,939,-11.3 +2013,3,25,8,30,392,65,844,4.3,3.5,67.19,939,-11.9 +2013,3,25,9,30,616,78,940,4,5.800000000000001,55.13,939,-11.9 +2013,3,25,10,30,799,88,989,3.4000000000000004,7.800000000000001,44.09,939,-12 +2013,3,25,11,30,924,94,1016,2.8000000000000003,9.4,35.19,938,-12 +2013,3,25,12,30,974,96,1019,2.6,10.600000000000001,30.48,938,-11.8 +2013,3,25,13,30,958,95,1016,2.7,11.3,31.89,937,-11.600000000000001 +2013,3,25,14,30,871,91,1001,3,11.5,38.76,936,-11.5 +2013,3,25,15,30,716,92,948,3.2,11.3,48.800000000000004,935,-11.5 +2013,3,25,16,30,513,79,879,3.2,10.5,60.38,936,-11.4 +2013,3,25,17,30,281,60,741,3.2,9.9,72.68,936,-11.4 +2013,3,25,18,30,59,27,378,1.7000000000000002,5.5,85.19,937,-8.6 +2013,3,25,19,30,0,0,0,1.7000000000000002,3.8000000000000003,97.98,937,-8.1 +2013,3,25,20,30,0,0,0,1.8,2.9000000000000004,110.36,938,-8.700000000000001 +2013,3,25,21,30,0,0,0,1.8,2,122.13,939,-8.9 +2013,3,25,22,30,0,0,0,1.6,1,132.69,939,-9 +2013,3,25,23,30,0,0,0,1.5,0.2,140.95000000000002,939,-9.1 +2013,3,26,0,30,0,0,0,1.3,-0.6000000000000001,145.17000000000002,939,-9.1 +2013,3,26,1,30,0,0,0,1.2000000000000002,-1.3,143.86,939,-9.200000000000001 +2013,3,26,2,30,0,0,0,1.2000000000000002,-1.8,137.54,939,-9.4 +2013,3,26,3,30,0,0,0,1.2000000000000002,-2.3000000000000003,128.04,939,-9.5 +2013,3,26,4,30,0,0,0,1.2000000000000002,-2.7,116.82000000000001,939,-9.600000000000001 +2013,3,26,5,30,0,0,0,1.2000000000000002,-3,104.71000000000001,940,-9.600000000000001 +2013,3,26,6,30,0,0,0,1.8,-1.5,92.17,940,-9.4 +2013,3,26,7,30,156,44,607,2.7,2,79.41,941,-8.700000000000001 +2013,3,26,8,30,392,66,830,3.5,6.2,66.91,941,-9.1 +2013,3,26,9,30,615,80,928,3.9000000000000004,9.700000000000001,54.82,940,-10.3 +2013,3,26,10,30,796,90,979,3.9000000000000004,12.3,43.75,940,-10.100000000000001 +2013,3,26,11,30,916,96,999,4,14.3,34.81,939,-10 +2013,3,26,12,30,972,96,1013,4.2,15.8,30.080000000000002,938,-10 +2013,3,26,13,30,956,96,1009,4.4,16.900000000000002,31.54,936,-10 +2013,3,26,14,30,868,94,989,4.5,17.400000000000002,38.49,935,-10 +2013,3,26,15,30,716,87,950,4.6000000000000005,17.5,48.59,934,-9.9 +2013,3,26,16,30,512,79,873,4.5,16.8,60.21,933,-9.9 +2013,3,26,17,30,279,62,723,4.3,16.3,72.53,933,-9.600000000000001 +2013,3,26,18,30,37,30,90,2.8000000000000003,10.9,85.05,933,-7 +2013,3,26,19,30,0,0,0,3.4000000000000004,9.4,97.83,933,-6.9 +2013,3,26,20,30,0,0,0,4.2,8.700000000000001,110.19,934,-7.1000000000000005 +2013,3,26,21,30,0,0,0,4.6000000000000005,7.800000000000001,121.93,934,-6.9 +2013,3,26,22,30,0,0,0,4.4,6.800000000000001,132.44,934,-6.800000000000001 +2013,3,26,23,30,0,0,0,4.3,5.9,140.64000000000001,933,-6.6000000000000005 +2013,3,27,0,30,0,0,0,4.5,5.300000000000001,144.78,933,-6.6000000000000005 +2013,3,27,1,30,0,0,0,4.6000000000000005,4.7,143.46,932,-6.7 +2013,3,27,2,30,0,0,0,4.7,4.2,137.17000000000002,932,-6.800000000000001 +2013,3,27,3,30,0,0,0,4.6000000000000005,3.8000000000000003,127.71000000000001,932,-6.800000000000001 +2013,3,27,4,30,0,0,0,4.5,3.5,116.52,932,-6.5 +2013,3,27,5,30,0,0,0,4.4,3.4000000000000004,104.43,932,-5.800000000000001 +2013,3,27,6,30,0,0,0,4.7,4.1000000000000005,91.89,932,-4.800000000000001 +2013,3,27,7,30,153,51,541,6.1000000000000005,6.7,79.14,933,-3.5 +2013,3,27,8,30,382,78,767,7.5,10.4,66.62,933,-0.1 +2013,3,27,9,30,601,95,872,7.6000000000000005,13.8,54.52,932,2.4000000000000004 +2013,3,27,10,30,777,106,924,7.300000000000001,16.8,43.410000000000004,932,2.9000000000000004 +2013,3,27,11,30,899,113,953,6.9,19.400000000000002,34.43,931,2.8000000000000003 +2013,3,27,12,30,953,110,970,6.6000000000000005,21.3,29.68,930,2.6 +2013,3,27,13,30,836,304,623,6.1000000000000005,22.6,31.2,929,2.4000000000000004 +2013,3,27,14,30,849,106,945,5.7,23.3,38.230000000000004,928,2.3000000000000003 +2013,3,27,15,30,698,100,900,5.5,23.200000000000003,48.39,928,2.2 +2013,3,27,16,30,436,131,610,5.300000000000001,22.200000000000003,60.04,928,2.2 +2013,3,27,17,30,272,67,677,5.1000000000000005,21.5,72.39,928,2.6 +2013,3,27,18,30,50,29,242,4.1000000000000005,16.7,84.92,928,3.6 +2013,3,27,19,30,0,0,0,4.7,14.8,97.68,929,4.2 +2013,3,27,20,30,0,0,0,5.1000000000000005,13.700000000000001,110.03,929,4.800000000000001 +2013,3,27,21,30,0,0,0,5.2,12.8,121.73,930,5.4 +2013,3,27,22,30,0,0,0,5.2,11.9,132.19,930,6 +2013,3,27,23,30,0,0,0,4.9,11.100000000000001,140.32,930,6.5 +2013,3,28,0,30,0,0,0,4.4,10.5,144.4,930,7 +2013,3,28,1,30,0,0,0,4.2,10.200000000000001,143.06,930,7.4 +2013,3,28,2,30,0,0,0,3.9000000000000004,9.9,136.81,929,7.7 +2013,3,28,3,30,0,0,0,3.6,9.3,127.38000000000001,929,8.1 +2013,3,28,4,30,0,0,0,3.4000000000000004,8.8,116.22,929,8.4 +2013,3,28,5,30,0,0,0,3.3000000000000003,8.6,104.14,929,8.6 +2013,3,28,6,30,0,0,0,3.6,9.3,91.62,930,9.1 +2013,3,28,7,30,149,58,470,4.4,11.3,78.87,930,9.4 +2013,3,28,8,30,373,88,711,4.9,14.3,66.34,931,9.9 +2013,3,28,9,30,589,105,828,4.7,17.5,54.22,931,10.100000000000001 +2013,3,28,10,30,764,114,889,4.6000000000000005,20.3,43.08,931,10.200000000000001 +2013,3,28,11,30,739,339,483,4.5,22.8,34.06,930,10.100000000000001 +2013,3,28,12,30,937,111,947,4.5,24.8,29.29,929,9.700000000000001 +2013,3,28,13,30,918,110,941,4.5,26.200000000000003,30.85,929,9.1 +2013,3,28,14,30,831,106,920,4.3,26.8,37.96,928,8.5 +2013,3,28,15,30,684,99,877,4.1000000000000005,26.900000000000002,48.18,927,7.9 +2013,3,28,16,30,488,87,799,3.8000000000000003,26.1,59.88,927,7.300000000000001 +2013,3,28,17,30,265,69,645,3.6,25.5,72.24,927,7.4 +2013,3,28,18,30,57,31,283,3.2,20.400000000000002,84.78,928,8.5 +2013,3,28,19,30,0,0,0,4.6000000000000005,19,97.53,929,8.200000000000001 +2013,3,28,20,30,0,0,0,5.300000000000001,18,109.86,929,8.5 +2013,3,28,21,30,0,0,0,5.2,16.7,121.53,930,8.9 +2013,3,28,22,30,0,0,0,5,15.5,131.94,930,9.600000000000001 +2013,3,28,23,30,0,0,0,4.9,14.600000000000001,140,930,10.5 +2013,3,29,0,30,0,0,0,4.6000000000000005,13.8,144.02,930,11.4 +2013,3,29,1,30,0,0,0,4.3,13.100000000000001,142.67000000000002,930,12 +2013,3,29,2,30,0,0,0,4,12.600000000000001,136.44,930,12.5 +2013,3,29,3,30,0,0,0,3.5,12.3,127.05,930,12.3 +2013,3,29,4,30,0,0,0,3.1,12.100000000000001,115.91,930,12.100000000000001 +2013,3,29,5,30,0,0,0,2.9000000000000004,11.9,103.86,930,11.9 +2013,3,29,6,30,0,0,0,3.2,12.4,91.35000000000001,930,12.4 +2013,3,29,7,30,102,73,146,4.1000000000000005,13.600000000000001,78.60000000000001,931,12.5 +2013,3,29,8,30,271,163,267,4.7,15.100000000000001,66.06,931,12.600000000000001 +2013,3,29,9,30,451,248,345,4.7,16.400000000000002,53.92,931,12.600000000000001 +2013,3,29,10,30,633,282,478,4.3,17.6,42.74,931,12.5 +2013,3,29,11,30,725,346,455,4.3,18.900000000000002,33.68,930,12.3 +2013,3,29,12,30,635,452,209,4.7,20.5,28.89,929,12.200000000000001 +2013,3,29,13,30,771,365,470,5,21.8,30.51,929,12 +2013,3,29,14,30,626,376,316,5,22.1,37.7,929,11.9 +2013,3,29,15,30,288,267,31,4.6000000000000005,21.900000000000002,47.980000000000004,928,11.9 +2013,3,29,16,30,240,211,56,4.1000000000000005,21.6,59.71,928,12.100000000000001 +2013,3,29,17,30,13,13,0,3.8000000000000003,21.3,72.09,927,12.3 +2013,3,29,18,30,41,32,99,2.6,17.8,84.64,928,12.600000000000001 +2013,3,29,19,30,0,0,0,3.2,16.400000000000002,97.38,928,13 +2013,3,29,20,30,0,0,0,3.8000000000000003,15.8,109.69,929,13.4 +2013,3,29,21,30,0,0,0,4.1000000000000005,15.100000000000001,121.32000000000001,929,13.700000000000001 +2013,3,29,22,30,0,0,0,4.2,14.600000000000001,131.68,929,13.700000000000001 +2013,3,29,23,30,0,0,0,4.2,14.200000000000001,139.68,929,13.5 +2013,3,30,0,30,0,0,0,4,13.8,143.64000000000001,929,13.200000000000001 +2013,3,30,1,30,0,0,0,3.9000000000000004,13.4,142.27,928,13 +2013,3,30,2,30,0,0,0,3.8000000000000003,12.9,136.07,928,12.8 +2013,3,30,3,30,0,0,0,3.8000000000000003,12.5,126.72,928,12.5 +2013,3,30,4,30,0,0,0,3.7,12,115.61,928,12 +2013,3,30,5,30,0,0,0,3.6,11.700000000000001,103.58,928,11.700000000000001 +2013,3,30,6,30,0,0,0,4,12.3,91.07000000000001,928,12.3 +2013,3,30,7,30,163,51,554,4.800000000000001,14.3,78.33,928,12.600000000000001 +2013,3,30,8,30,393,74,779,5.1000000000000005,17.3,65.78,928,12.700000000000001 +2013,3,30,9,30,613,85,890,4.5,20.700000000000003,53.620000000000005,928,12.4 +2013,3,30,10,30,768,128,867,3.6,24.1,42.410000000000004,928,11.600000000000001 +2013,3,30,11,30,878,175,842,2.9000000000000004,27.3,33.31,927,9.700000000000001 +2013,3,30,12,30,966,96,989,2.2,29.400000000000002,28.5,926,6.7 +2013,3,30,13,30,948,96,985,1.8,30.3,30.16,925,4.800000000000001 +2013,3,30,14,30,837,147,869,1.6,30.6,37.44,924,3.6 +2013,3,30,15,30,607,217,580,1.6,30.3,47.78,923,2.6 +2013,3,30,16,30,437,141,584,1.2000000000000002,29.200000000000003,59.550000000000004,923,1.7000000000000002 +2013,3,30,17,30,179,123,180,0.8,28.3,71.94,923,5.2 +2013,3,30,18,30,35,32,26,0.9,23.1,84.5,923,7.800000000000001 +2013,3,30,19,30,0,0,0,1.2000000000000002,21.1,97.23,923,6.2 +2013,3,30,20,30,0,0,0,1.5,20,109.52,923,5.800000000000001 +2013,3,30,21,30,0,0,0,1.8,19.3,121.12,924,5.300000000000001 +2013,3,30,22,30,0,0,0,2.1,18.7,131.43,923,4.6000000000000005 +2013,3,30,23,30,0,0,0,2.7,18.3,139.35,923,3.7 +2013,3,31,0,30,0,0,0,3.8000000000000003,18.1,143.26,923,2.5 +2013,3,31,1,30,0,0,0,5,18.400000000000002,141.88,923,1.3 +2013,3,31,2,30,0,0,0,5.7,18.8,135.7,923,0.7000000000000001 +2013,3,31,3,30,0,0,0,5.1000000000000005,18.7,126.38000000000001,924,1.3 +2013,3,31,4,30,0,0,0,4,18,115.31,924,2.6 +2013,3,31,5,30,0,0,0,3.5,17.1,103.3,925,3.9000000000000004 +2013,3,31,6,30,0,0,0,5,16.400000000000002,90.25,926,5.7 +2013,3,31,7,30,102,78,116,7,16.3,78.06,928,8 +2013,3,31,8,30,154,148,15,7.7,16.900000000000002,65.51,928,9.4 +2013,3,31,9,30,599,91,851,7.300000000000001,18.2,53.33,929,9.9 +2013,3,31,10,30,771,103,900,6.5,19.6,42.08,929,9.9 +2013,3,31,11,30,889,110,929,5.800000000000001,20.900000000000002,32.93,929,9.8 +2013,3,31,12,30,943,106,949,5,22.1,28.11,928,9.600000000000001 +2013,3,31,13,30,926,104,948,4.2,23,29.82,928,9.5 +2013,3,31,14,30,840,99,930,3.7,23.400000000000002,37.18,927,9.3 +2013,3,31,15,30,694,92,892,3.5,23.3,47.58,927,8.9 +2013,3,31,16,30,501,79,828,3.4000000000000004,22.5,59.38,926,8.4 +2013,3,31,17,30,278,60,696,3.4000000000000004,22,71.8,926,8 +2013,3,31,18,30,65,30,355,1.9000000000000001,18,84.36,927,8.1 +2013,3,31,19,30,0,0,0,1.7000000000000002,16.1,97.08,927,7.800000000000001 +2013,3,31,20,30,0,0,0,1.7000000000000002,15,109.35000000000001,928,7.4 +2013,3,31,21,30,0,0,0,1.6,13.9,120.92,928,7.1000000000000005 +2013,3,31,22,30,0,0,0,1.5,12.9,131.17000000000002,928,7 +2013,3,31,23,30,0,0,0,1.4000000000000001,12,139.03,928,7.1000000000000005 +2013,4,1,0,30,0,0,0,1.4000000000000001,11.3,142.89000000000001,928,7.300000000000001 +2013,4,1,1,30,0,0,0,1.4000000000000001,10.700000000000001,141.49,928,7.6000000000000005 +2013,4,1,2,30,0,0,0,1.4000000000000001,10.100000000000001,135.34,928,7.9 +2013,4,1,3,30,0,0,0,1.5,9.600000000000001,126.05,928,8.200000000000001 +2013,4,1,4,30,0,0,0,1.5,9.200000000000001,115.01,929,8.700000000000001 +2013,4,1,5,30,0,0,0,1.5,9,103.01,929,9 +2013,4,1,6,30,0,0,0,2.2,10.700000000000001,90.01,929,9.4 +2013,4,1,7,30,173,50,580,3.2,14.4,77.8,930,9.700000000000001 +2013,4,1,8,30,402,74,783,3.9000000000000004,18.5,65.23,930,9.5 +2013,4,1,9,30,617,88,878,4.3,22.1,53.03,930,8.4 +2013,4,1,10,30,789,98,926,4.3,24.6,41.76,929,7.9 +2013,4,1,11,30,905,104,950,4.3,26.5,32.56,929,7.7 +2013,4,1,12,30,959,103,967,4.4,27.900000000000002,27.71,927,7.5 +2013,4,1,13,30,941,102,963,4.4,28.6,29.48,926,7.300000000000001 +2013,4,1,14,30,853,99,944,4.5,28.8,36.92,925,7.1000000000000005 +2013,4,1,15,30,701,94,895,4.7,28.6,47.39,924,7 +2013,4,1,16,30,503,84,818,4.7,27.700000000000003,59.22,924,6.9 +2013,4,1,17,30,276,68,662,4.7,27,71.65,924,7.1000000000000005 +2013,4,1,18,30,64,34,303,4.3,23,84.22,924,8 +2013,4,1,19,30,0,0,0,4.7,21.3,96.93,924,8.4 +2013,4,1,20,30,0,0,0,4.7,20,109.18,925,9.1 +2013,4,1,21,30,0,0,0,4.4,18.900000000000002,120.71000000000001,925,9.9 +2013,4,1,22,30,0,0,0,3.9000000000000004,17.900000000000002,130.92000000000002,925,10.700000000000001 +2013,4,1,23,30,0,0,0,3.2,16.900000000000002,138.71,925,11.5 +2013,4,2,0,30,0,0,0,2.6,15.9,142.51,925,12.200000000000001 +2013,4,2,1,30,0,0,0,2.6,15.100000000000001,141.1,925,12.600000000000001 +2013,4,2,2,30,0,0,0,3,14.700000000000001,134.97,925,12.9 +2013,4,2,3,30,0,0,0,3.2,14.5,125.72,925,13.200000000000001 +2013,4,2,4,30,0,0,0,3,14.3,114.71000000000001,925,13.5 +2013,4,2,5,30,0,0,0,2.4000000000000004,14,102.74000000000001,925,13.700000000000001 +2013,4,2,6,30,0,0,0,2.1,14.100000000000001,89.79,926,13.700000000000001 +2013,4,2,7,30,6,6,0,2.5,14.5,77.53,927,13.600000000000001 +2013,4,2,8,30,34,34,0,3.4000000000000004,14.600000000000001,64.96000000000001,927,13 +2013,4,2,9,30,42,42,0,4.3,14,52.74,928,11.9 +2013,4,2,10,30,63,63,0,4.6000000000000005,13.200000000000001,41.43,928,10.3 +2013,4,2,11,30,106,106,0,4.5,12.700000000000001,32.19,928,9 +2013,4,2,12,30,104,104,0,4.3,12.5,27.32,928,8.1 +2013,4,2,13,30,185,178,8,4.1000000000000005,12.3,29.150000000000002,928,7.7 +2013,4,2,14,30,274,262,16,4,11.9,36.67,927,7.300000000000001 +2013,4,2,15,30,172,169,5,4.1000000000000005,11.3,47.19,927,6.9 +2013,4,2,16,30,162,160,4,4.1000000000000005,10.8,59.06,927,6.4 +2013,4,2,17,30,105,105,0,4.1000000000000005,10.600000000000001,71.51,927,6.1000000000000005 +2013,4,2,18,30,24,24,0,3.8000000000000003,9.8,84.08,927,6.2 +2013,4,2,19,30,0,0,0,3.7,9.5,96.78,928,6.5 +2013,4,2,20,30,0,0,0,3.8000000000000003,9.1,109.01,929,6.9 +2013,4,2,21,30,0,0,0,4,8.700000000000001,120.51,929,7.2 +2013,4,2,22,30,0,0,0,4.2,8.1,130.66,929,7.300000000000001 +2013,4,2,23,30,0,0,0,4.4,7.4,138.39000000000001,929,7.1000000000000005 +2013,4,3,0,30,0,0,0,4.7,6.800000000000001,142.13,929,6.5 +2013,4,3,1,30,0,0,0,4.9,6.2,140.71,929,5.800000000000001 +2013,4,3,2,30,0,0,0,4.9,5.6000000000000005,134.61,929,4.9 +2013,4,3,3,30,0,0,0,4.9,5.1000000000000005,125.4,929,4.2 +2013,4,3,4,30,0,0,0,4.800000000000001,4.7,114.41,930,3.6 +2013,4,3,5,30,0,0,0,4.7,4.4,102.46000000000001,930,3.2 +2013,4,3,6,30,0,0,0,4.6000000000000005,4.2,89.54,930,2.8000000000000003 +2013,4,3,7,30,159,89,315,4.6000000000000005,4.3,77.27,931,2.5 +2013,4,3,8,30,132,132,0,4.4,4.5,64.69,931,2.3000000000000003 +2013,4,3,9,30,102,102,0,4.3,5.1000000000000005,52.45,932,2.2 +2013,4,3,10,30,187,182,7,4.1000000000000005,5.800000000000001,41.11,932,2.2 +2013,4,3,11,30,89,89,0,3.8000000000000003,6.4,31.830000000000002,932,2.3000000000000003 +2013,4,3,12,30,99,99,0,3.7,6.800000000000001,26.94,932,2.5 +2013,4,3,13,30,217,207,11,3.8000000000000003,7.1000000000000005,28.82,931,2.7 +2013,4,3,14,30,98,98,0,4.4,7.6000000000000005,36.42,931,2.6 +2013,4,3,15,30,177,174,5,4.800000000000001,8.1,47,930,2.4000000000000004 +2013,4,3,16,30,185,179,13,4.7,8.200000000000001,58.910000000000004,930,2.1 +2013,4,3,17,30,157,128,91,4.5,8,71.37,931,1.9000000000000001 +2013,4,3,18,30,20,20,0,3.6,6.1000000000000005,83.94,932,1.8 +2013,4,3,19,30,0,0,0,3.2,4.7,96.63,933,1.7000000000000002 +2013,4,3,20,30,0,0,0,2.9000000000000004,3.6,108.83,933,1.6 +2013,4,3,21,30,0,0,0,2.6,2.8000000000000003,120.3,934,1.5 +2013,4,3,22,30,0,0,0,2.5,2.3000000000000003,130.4,934,1.5 +2013,4,3,23,30,0,0,0,2.6,1.9000000000000001,138.07,933,1.4000000000000001 +2013,4,4,0,30,0,0,0,2.8000000000000003,1.7000000000000002,141.76,933,1.3 +2013,4,4,1,30,0,0,0,3,1.5,140.32,933,1.1 +2013,4,4,2,30,0,0,0,3.3000000000000003,1.4000000000000001,134.24,932,0.9 +2013,4,4,3,30,0,0,0,3.5,1.3,125.07000000000001,933,0.6000000000000001 +2013,4,4,4,30,0,0,0,3.6,1.1,114.11,933,0.30000000000000004 +2013,4,4,5,30,0,0,0,3.6,0.9,102.18,933,-0.1 +2013,4,4,6,30,0,0,0,3.8000000000000003,1.2000000000000002,89.31,934,-0.30000000000000004 +2013,4,4,7,30,35,35,0,4.3,2.7,77,934,-0.7000000000000001 +2013,4,4,8,30,124,124,0,4.4,5.2,64.42,935,-0.8 +2013,4,4,9,30,207,201,11,4.3,8,52.160000000000004,935,-0.6000000000000001 +2013,4,4,10,30,404,351,70,4.2,10.8,40.79,934,-0.30000000000000004 +2013,4,4,11,30,730,365,427,4.3,13.5,31.46,934,0.1 +2013,4,4,12,30,992,103,993,4.3,15.700000000000001,26.55,933,0.5 +2013,4,4,13,30,977,99,1000,4.2,17.5,28.48,932,0.6000000000000001 +2013,4,4,14,30,889,91,988,4.1000000000000005,18.6,36.17,931,0.5 +2013,4,4,15,30,738,83,957,4,19,46.81,930,0.2 +2013,4,4,16,30,535,73,891,3.7,18.5,58.75,930,-0.1 +2013,4,4,17,30,303,58,762,3.5,18,71.23,930,-0.30000000000000004 +2013,4,4,18,30,79,30,451,1.8,12.100000000000001,83.8,931,1.9000000000000001 +2013,4,4,19,30,0,0,0,1.7000000000000002,9.5,96.48,932,1.5 +2013,4,4,20,30,0,0,0,1.6,8.1,108.66,932,1.3 +2013,4,4,21,30,0,0,0,1.4000000000000001,6.800000000000001,120.09,933,1.3 +2013,4,4,22,30,0,0,0,1.3,5.7,130.15,933,1.3 +2013,4,4,23,30,0,0,0,1.2000000000000002,4.800000000000001,137.75,933,1.5 +2013,4,5,0,30,0,0,0,1.3,4.1000000000000005,141.39000000000001,933,1.8 +2013,4,5,1,30,0,0,0,1.3,3.5,139.94,933,2 +2013,4,5,2,30,0,0,0,1.3,2.9000000000000004,133.88,933,2.2 +2013,4,5,3,30,0,0,0,1.3,2.5,124.74000000000001,933,2.4000000000000004 +2013,4,5,4,30,0,0,0,1.3,2.1,113.82000000000001,933,2.1 +2013,4,5,5,30,0,0,0,1.3,1.9000000000000001,101.9,933,1.9000000000000001 +2013,4,5,6,30,0,0,0,2.1,3.7,89.08,934,3 +2013,4,5,7,30,198,53,636,2.7,7.2,76.74,934,3.1 +2013,4,5,8,30,368,115,579,2.9000000000000004,11.3,64.15,934,3.3000000000000003 +2013,4,5,9,30,548,184,590,3.5,15.5,51.88,933,3.3000000000000003 +2013,4,5,10,30,648,303,454,3.9000000000000004,19,40.47,933,3 +2013,4,5,11,30,762,359,471,4.2,21.6,31.1,932,2.5 +2013,4,5,12,30,869,352,576,4.6000000000000005,23.400000000000002,26.16,930,2.3000000000000003 +2013,4,5,13,30,862,322,612,5,24.5,28.16,929,2.3000000000000003 +2013,4,5,14,30,733,318,512,5.300000000000001,25,35.93,928,2.4000000000000004 +2013,4,5,15,30,569,278,424,5.5,24.8,46.63,927,2.4000000000000004 +2013,4,5,16,30,519,97,810,5.300000000000001,23.8,58.6,926,2.4000000000000004 +2013,4,5,17,30,293,73,677,5,23.1,71.09,926,2.9000000000000004 +2013,4,5,18,30,75,35,360,3.7,18.2,83.67,926,4.3 +2013,4,5,19,30,0,0,0,4,16.3,96.33,926,4.9 +2013,4,5,20,30,0,0,0,4.6000000000000005,15.4,108.49000000000001,927,5.5 +2013,4,5,21,30,0,0,0,4.9,14.600000000000001,119.88,926,5.9 +2013,4,5,22,30,0,0,0,5.2,13.9,129.89000000000001,926,6.1000000000000005 +2013,4,5,23,30,0,0,0,5.4,13.3,137.43,925,6.2 +2013,4,6,0,30,0,0,0,5.4,12.700000000000001,141.01,925,6.2 +2013,4,6,1,30,0,0,0,5.4,12.200000000000001,139.55,924,6.1000000000000005 +2013,4,6,2,30,0,0,0,5.5,11.700000000000001,133.52,924,5.9 +2013,4,6,3,30,0,0,0,5.5,11.100000000000001,124.42,923,5.7 +2013,4,6,4,30,0,0,0,5.5,10.4,113.52,923,5.5 +2013,4,6,5,30,0,0,0,5.5,9.8,101.63,923,5.4 +2013,4,6,6,30,13,11,87,5.9,10.4,88.85000000000001,923,5.5 +2013,4,6,7,30,196,56,599,7.1000000000000005,13.100000000000001,76.49,923,6 +2013,4,6,8,30,429,77,799,7.4,17.2,63.89,923,6.6000000000000005 +2013,4,6,9,30,647,90,897,6.6000000000000005,21.3,51.6,923,6.300000000000001 +2013,4,6,10,30,826,99,952,5.800000000000001,25,40.160000000000004,923,4.9 +2013,4,6,11,30,945,106,976,5.2,27.900000000000002,30.740000000000002,922,3.4000000000000004 +2013,4,6,12,30,965,189,862,4.7,29.700000000000003,25.78,922,2.2 +2013,4,6,13,30,793,386,461,4.2,30.400000000000002,27.830000000000002,921,1.2000000000000002 +2013,4,6,14,30,646,388,319,3.6,30.200000000000003,35.69,920,0.4 +2013,4,6,15,30,588,256,482,2.7,29.5,46.44,920,-0.1 +2013,4,6,16,30,462,134,626,1.8,27.5,58.44,920,1.1 +2013,4,6,17,30,246,99,448,1.4000000000000001,26,70.95,920,7.800000000000001 +2013,4,6,18,30,60,37,205,1.8,21.200000000000003,83.53,921,7.1000000000000005 +2013,4,6,19,30,0,0,0,1.8,18.7,96.18,922,7 +2013,4,6,20,30,0,0,0,1.6,16.7,108.32000000000001,922,7.300000000000001 +2013,4,6,21,30,0,0,0,1.4000000000000001,15.200000000000001,119.68,923,7.6000000000000005 +2013,4,6,22,30,0,0,0,1.5,14.100000000000001,129.63,923,8.1 +2013,4,6,23,30,0,0,0,1.9000000000000001,13.600000000000001,137.11,923,8.5 +2013,4,7,0,30,0,0,0,2.5,13.3,140.64000000000001,923,8.9 +2013,4,7,1,30,0,0,0,3,13.100000000000001,139.17000000000002,922,9.200000000000001 +2013,4,7,2,30,0,0,0,3.3000000000000003,12.9,133.17000000000002,922,9.700000000000001 +2013,4,7,3,30,0,0,0,3.6,12.600000000000001,124.09,921,10.4 +2013,4,7,4,30,0,0,0,3.8000000000000003,12,113.23,921,11.100000000000001 +2013,4,7,5,30,0,0,0,4,11.600000000000001,101.36,922,11.600000000000001 +2013,4,7,6,30,6,6,0,4.5,12.5,88.62,922,11.700000000000001 +2013,4,7,7,30,56,56,0,5.2,15.200000000000001,76.23,922,11.8 +2013,4,7,8,30,239,191,108,5.7,18.900000000000002,63.63,922,12 +2013,4,7,9,30,404,294,175,6,22.200000000000003,51.32,922,11.5 +2013,4,7,10,30,677,294,499,6.1000000000000005,24.900000000000002,39.85,922,10.100000000000001 +2013,4,7,11,30,828,330,577,6.1000000000000005,27.200000000000003,30.38,921,8 +2013,4,7,12,30,985,114,964,6.1000000000000005,29.200000000000003,25.400000000000002,920,6.2 +2013,4,7,13,30,966,108,968,6.2,30.6,27.51,919,4.5 +2013,4,7,14,30,880,103,954,6.2,31.200000000000003,35.45,918,3.2 +2013,4,7,15,30,727,99,908,6.1000000000000005,31.1,46.26,917,2.1 +2013,4,7,16,30,361,229,251,5.5,30.1,58.29,917,1.4000000000000001 +2013,4,7,17,30,297,71,688,4.9,29.3,70.81,917,2.3000000000000003 +2013,4,7,18,30,78,37,360,3.4000000000000004,23.200000000000003,83.39,917,5.1000000000000005 +2013,4,7,19,30,0,0,0,4.1000000000000005,21.200000000000003,96.03,918,6.7 +2013,4,7,20,30,0,0,0,4.7,20.3,108.14,918,8.700000000000001 +2013,4,7,21,30,0,0,0,4.800000000000001,19.200000000000003,119.47,918,10.700000000000001 +2013,4,7,22,30,0,0,0,4.7,18.1,129.37,918,12.200000000000001 +2013,4,7,23,30,0,0,0,4.7,17.2,136.79,918,13 +2013,4,8,0,30,0,0,0,4.800000000000001,16.400000000000002,140.28,918,13.4 +2013,4,8,1,30,0,0,0,5,15.700000000000001,138.79,918,13.8 +2013,4,8,2,30,0,0,0,5.1000000000000005,15.100000000000001,132.81,918,14.3 +2013,4,8,3,30,0,0,0,4.9,14.600000000000001,123.77,917,14.600000000000001 +2013,4,8,4,30,0,0,0,4.7,14.3,112.94,917,14.3 +2013,4,8,5,30,0,0,0,4.4,14.3,101.08,917,14.3 +2013,4,8,6,30,15,13,56,4.9,15,88.39,918,14.9 +2013,4,8,7,30,194,70,511,5.9,17.2,75.98,918,14.9 +2013,4,8,8,30,351,154,441,6.4,20.400000000000002,63.370000000000005,918,14.9 +2013,4,8,9,30,557,196,574,6.1000000000000005,23.700000000000003,51.04,918,14.100000000000001 +2013,4,8,10,30,813,110,912,5.7,26.8,39.54,917,12.3 +2013,4,8,11,30,930,111,946,5.4,29.400000000000002,30.03,916,9.8 +2013,4,8,12,30,981,110,961,5.300000000000001,31,25.02,915,7.800000000000001 +2013,4,8,13,30,965,105,966,5.5,31.900000000000002,27.19,914,6.4 +2013,4,8,14,30,876,99,951,5.800000000000001,32.1,35.21,913,5.4 +2013,4,8,15,30,724,97,903,6,31.700000000000003,46.08,913,4.800000000000001 +2013,4,8,16,30,524,87,828,5.9,30.5,58.14,913,4.800000000000001 +2013,4,8,17,30,297,70,687,5.800000000000001,29.700000000000003,70.67,913,5.6000000000000005 +2013,4,8,18,30,79,37,366,5.6000000000000005,25,83.26,913,7.300000000000001 +2013,4,8,19,30,0,0,0,6.1000000000000005,22.6,95.88,914,9 +2013,4,8,20,30,0,0,0,6.6000000000000005,21.1,107.97,914,10.8 +2013,4,8,21,30,0,0,0,7,19.8,119.26,914,12.9 +2013,4,8,22,30,0,0,0,7.1000000000000005,18.8,129.11,914,15 +2013,4,8,23,30,0,0,0,6.9,17.8,136.47,914,16.3 +2013,4,9,0,30,0,0,0,7.1000000000000005,17.400000000000002,139.91,914,17 +2013,4,9,1,30,0,0,0,7.6000000000000005,17.3,138.41,914,17 +2013,4,9,2,30,0,0,0,7.800000000000001,17.3,132.46,914,16.900000000000002 +2013,4,9,3,30,0,0,0,7.7,17.3,123.45,914,16.7 +2013,4,9,4,30,0,0,0,7.2,17.1,112.64,914,16.7 +2013,4,9,5,30,0,0,0,6.6000000000000005,16.7,100.82000000000001,914,16.7 +2013,4,9,6,30,17,15,77,6.5,17.2,88.15,915,16.7 +2013,4,9,7,30,201,68,537,7,19.1,75.73,915,16.8 +2013,4,9,8,30,431,89,757,7.5,22.1,63.11,915,16.3 +2013,4,9,9,30,645,99,862,7.5,25.200000000000003,50.77,915,14.200000000000001 +2013,4,9,10,30,819,108,918,7,27.700000000000003,39.24,915,11.3 +2013,4,9,11,30,936,112,948,6.2,29.5,29.68,915,8.9 +2013,4,9,12,30,989,111,966,5.4,30.8,24.650000000000002,914,7.1000000000000005 +2013,4,9,13,30,968,110,961,4.7,31.6,26.87,914,5.7 +2013,4,9,14,30,880,108,943,4,31.8,34.980000000000004,913,4.5 +2013,4,9,15,30,727,104,895,3.3000000000000003,31.3,45.9,913,3.7 +2013,4,9,16,30,527,93,817,2.7,30,57.99,913,3.4000000000000004 +2013,4,9,17,30,297,75,666,2.3000000000000003,29.1,70.53,913,4.2 +2013,4,9,18,30,56,41,118,1.2000000000000002,23.1,83.12,914,9.1 +2013,4,9,19,30,0,0,0,1.2000000000000002,20.400000000000002,95.73,915,8.200000000000001 +2013,4,9,20,30,0,0,0,1.9000000000000001,18.6,107.8,916,8.6 +2013,4,9,21,30,0,0,0,3.9000000000000004,16.7,119.05,918,8.9 +2013,4,9,22,30,0,0,0,6.5,14,128.85,920,8.700000000000001 +2013,4,9,23,30,0,0,0,7.800000000000001,10.5,136.16,922,7 +2013,4,10,0,30,0,0,0,7.9,7.4,139.54,923,4.3 +2013,4,10,1,30,0,0,0,7.9,5.2,138.04,924,1.9000000000000001 +2013,4,10,2,30,0,0,0,7.7,3.5,132.11,925,0.8 +2013,4,10,3,30,0,0,0,7.2,2.1,123.14,925,0.4 +2013,4,10,4,30,0,0,0,6.5,1.3,112.36,926,-0.1 +2013,4,10,5,30,0,0,0,6.1000000000000005,0.8,100.55,927,-0.6000000000000001 +2013,4,10,6,30,4,4,0,6,0.4,87.89,928,-1.1 +2013,4,10,7,30,99,92,30,6.2,0.6000000000000001,75.48,928,-1.7000000000000002 +2013,4,10,8,30,135,135,0,6.2,1.6,62.86,929,-2.2 +2013,4,10,9,30,479,280,312,5.9,3.5,50.5,929,-2.5 +2013,4,10,10,30,601,369,299,5.4,6.1000000000000005,38.94,928,-2.4000000000000004 +2013,4,10,11,30,624,448,202,5,8.6,29.330000000000002,927,-2.1 +2013,4,10,12,30,777,409,404,4.7,10.8,24.27,927,-1.8 +2013,4,10,13,30,992,114,982,4.5,12.5,26.560000000000002,926,-1.7000000000000002 +2013,4,10,14,30,901,108,966,4.4,13.600000000000001,34.75,925,-1.9000000000000001 +2013,4,10,15,30,748,99,930,4.3,13.9,45.730000000000004,925,-2.4000000000000004 +2013,4,10,16,30,545,86,862,4.1000000000000005,13.5,57.84,925,-2.9000000000000004 +2013,4,10,17,30,313,69,728,3.9000000000000004,13.100000000000001,70.39,925,-3.2 +2013,4,10,18,30,88,38,413,2,9,82.98,925,-1.5 +2013,4,10,19,30,0,0,0,1.8,6.7,95.58,926,-0.5 +2013,4,10,20,30,0,0,0,2,5.7,107.62,927,-1.2000000000000002 +2013,4,10,21,30,0,0,0,2,4.800000000000001,118.84,927,-1.8 +2013,4,10,22,30,0,0,0,1.8,4.1000000000000005,128.59,927,-2 +2013,4,10,23,30,0,0,0,1.8,3.6,135.84,927,-2.1 +2013,4,11,0,30,0,0,0,1.6,3.3000000000000003,139.18,927,-2.3000000000000003 +2013,4,11,1,30,0,0,0,1.3,2.8000000000000003,137.67000000000002,927,-2.3000000000000003 +2013,4,11,2,30,0,0,0,1,2.2,131.76,926,-2.1 +2013,4,11,3,30,0,0,0,0.9,1.4000000000000001,122.82000000000001,926,-2.4000000000000004 +2013,4,11,4,30,0,0,0,1,0.6000000000000001,112.07000000000001,926,-2.9000000000000004 +2013,4,11,5,30,0,0,0,1.1,0.30000000000000004,100.28,925,-3.4000000000000004 +2013,4,11,6,30,24,17,163,1.7000000000000002,1.3,87.66,926,-3.5 +2013,4,11,7,30,222,59,640,1.9000000000000001,3.5,75.23,926,-5.300000000000001 +2013,4,11,8,30,457,80,820,1.2000000000000002,5.9,62.61,926,-6.7 +2013,4,11,9,30,674,93,908,0.7000000000000001,8.5,50.24,926,-6.4 +2013,4,11,10,30,849,102,956,1.1,11.3,38.64,925,-5.7 +2013,4,11,11,30,962,108,977,1.9000000000000001,14,28.98,924,-4.800000000000001 +2013,4,11,12,30,1014,104,995,2.4000000000000004,16.400000000000002,23.900000000000002,923,-3.9000000000000004 +2013,4,11,13,30,992,103,992,2.5,18.400000000000002,26.25,922,-3.2 +2013,4,11,14,30,901,99,973,2.4000000000000004,19.700000000000003,34.52,920,-2.7 +2013,4,11,15,30,748,93,935,2.3000000000000003,20.200000000000003,45.56,920,-2.6 +2013,4,11,16,30,546,83,866,1.9000000000000001,20,57.7,920,-2.6 +2013,4,11,17,30,315,66,737,1.6,19.700000000000003,70.26,920,-2.5 +2013,4,11,18,30,91,36,437,0.5,15.8,82.84,920,2.4000000000000004 +2013,4,11,19,30,0,0,0,1,13.600000000000001,95.43,921,-0.4 +2013,4,11,20,30,0,0,0,1.3,11.600000000000001,107.45,921,-0.1 +2013,4,11,21,30,0,0,0,1.7000000000000002,10,118.63,922,0.1 +2013,4,11,22,30,0,0,0,2.2,9.200000000000001,128.33,922,-0.30000000000000004 +2013,4,11,23,30,0,0,0,2.9000000000000004,8.6,135.52,923,-0.4 +2013,4,12,0,30,0,0,0,3.1,7.9,138.82,923,-0.2 +2013,4,12,1,30,0,0,0,3.1,7.1000000000000005,137.3,923,0.2 +2013,4,12,2,30,0,0,0,2.7,6.300000000000001,131.41,923,0.6000000000000001 +2013,4,12,3,30,0,0,0,2.1,5.6000000000000005,122.51,923,0.9 +2013,4,12,4,30,0,0,0,1.7000000000000002,5,111.79,924,1.2000000000000002 +2013,4,12,5,30,0,0,0,1.4000000000000001,4.800000000000001,100.02,924,1.4000000000000001 +2013,4,12,6,30,27,18,202,1.9000000000000001,6.6000000000000005,87.43,925,1.5 +2013,4,12,7,30,227,57,658,2.3000000000000003,10.100000000000001,74.99,926,1.8 +2013,4,12,8,30,459,78,821,2.8000000000000003,14.4,62.36,926,2.4000000000000004 +2013,4,12,9,30,673,93,902,3.5,18.900000000000002,49.97,926,2.4000000000000004 +2013,4,12,10,30,843,104,942,3.7,22.1,38.35,926,1 +2013,4,12,11,30,957,111,964,4.1000000000000005,24,28.64,925,0.2 +2013,4,12,12,30,1003,113,970,4.5,25.3,23.53,924,0 +2013,4,12,13,30,980,117,960,4.7,26,25.94,923,0 +2013,4,12,14,30,801,276,635,4.7,26.1,34.300000000000004,922,0.30000000000000004 +2013,4,12,15,30,730,115,876,4.6000000000000005,25.8,45.39,921,0.6000000000000001 +2013,4,12,16,30,527,106,785,4.2,25,57.56,921,1.1 +2013,4,12,17,30,300,86,628,3.9000000000000004,24.5,70.12,921,2.2 +2013,4,12,18,30,84,44,313,3.1,19.700000000000003,82.71000000000001,921,4.3 +2013,4,12,19,30,0,0,0,3.9000000000000004,17.900000000000002,95.27,922,4.2 +2013,4,12,20,30,0,0,0,4.800000000000001,17.2,107.27,922,4.4 +2013,4,12,21,30,0,0,0,5.1000000000000005,16.3,118.42,923,4.9 +2013,4,12,22,30,0,0,0,4.9,15.3,128.08,923,5.2 +2013,4,12,23,30,0,0,0,4.5,14.200000000000001,135.21,924,5.5 +2013,4,13,0,30,0,0,0,4.1000000000000005,13.3,138.46,924,5.7 +2013,4,13,1,30,0,0,0,4,12.5,136.93,924,5.9 +2013,4,13,2,30,0,0,0,3.7,11.700000000000001,131.07,924,6 +2013,4,13,3,30,0,0,0,3.2,11.100000000000001,122.2,924,6.1000000000000005 +2013,4,13,4,30,0,0,0,2.6,10.4,111.5,924,6.2 +2013,4,13,5,30,0,0,0,2,9.9,99.76,924,6.4 +2013,4,13,6,30,17,17,0,2.3000000000000003,10.700000000000001,87.2,924,6.800000000000001 +2013,4,13,7,30,187,78,415,3.3000000000000003,13,74.75,925,7.5 +2013,4,13,8,30,392,132,555,4,15.8,62.120000000000005,925,8.3 +2013,4,13,9,30,582,194,600,4.7,19,49.72,925,8 +2013,4,13,10,30,822,127,882,5.2,21.900000000000002,38.06,924,6.6000000000000005 +2013,4,13,11,30,821,369,514,5.5,24,28.3,923,5.4 +2013,4,13,12,30,986,125,937,5.5,25.3,23.16,922,5 +2013,4,13,13,30,962,128,925,5.4,26,25.63,921,4.9 +2013,4,13,14,30,867,130,890,5.2,26.1,34.08,921,5 +2013,4,13,15,30,687,166,739,5.1000000000000005,25.6,45.22,920,5 +2013,4,13,16,30,427,202,417,4.9,24.5,57.410000000000004,919,5.1000000000000005 +2013,4,13,17,30,290,101,551,4.800000000000001,23.8,69.99,919,5.4 +2013,4,13,18,30,48,44,32,3.5,20.3,82.57000000000001,920,6.300000000000001 +2013,4,13,19,30,0,0,0,3.8000000000000003,18.8,95.12,920,6.7 +2013,4,13,20,30,0,0,0,4.2,17.7,107.10000000000001,920,6.7 +2013,4,13,21,30,0,0,0,4.1000000000000005,16.3,118.21000000000001,920,7 +2013,4,13,22,30,0,0,0,4,15.200000000000001,127.82000000000001,920,7.300000000000001 +2013,4,13,23,30,0,0,0,4,14.200000000000001,134.9,919,7.6000000000000005 +2013,4,14,0,30,0,0,0,4.1000000000000005,13.5,138.1,919,7.9 +2013,4,14,1,30,0,0,0,4.3,12.8,136.57,918,8 +2013,4,14,2,30,0,0,0,4.4,12.3,130.73,918,8.200000000000001 +2013,4,14,3,30,0,0,0,4.5,11.8,121.89,917,8.3 +2013,4,14,4,30,0,0,0,4.6000000000000005,11.4,111.22,917,8.5 +2013,4,14,5,30,0,0,0,4.800000000000001,11.200000000000001,99.5,917,8.9 +2013,4,14,6,30,30,21,157,5.5,12.3,86.97,917,9.5 +2013,4,14,7,30,229,64,617,6.6000000000000005,15.700000000000001,74.52,917,10.4 +2013,4,14,8,30,464,84,805,6.9,20.400000000000002,61.88,917,10.700000000000001 +2013,4,14,9,30,677,98,892,6.800000000000001,25,49.46,917,8.6 +2013,4,14,10,30,853,107,944,6.9,28.200000000000003,37.77,916,2.8000000000000003 +2013,4,14,11,30,969,113,969,6.7,29.900000000000002,27.97,916,-0.8 +2013,4,14,12,30,1022,114,985,6.5,30.900000000000002,22.8,915,-2.2 +2013,4,14,13,30,999,113,981,6.300000000000001,31.400000000000002,25.330000000000002,914,-2.7 +2013,4,14,14,30,908,108,963,6.1000000000000005,31.6,33.86,913,-2.9000000000000004 +2013,4,14,15,30,754,101,923,5.7,31.200000000000003,45.050000000000004,913,-2.8000000000000003 +2013,4,14,16,30,552,89,856,4.800000000000001,30.200000000000003,57.27,913,-2.6 +2013,4,14,17,30,321,71,725,4.2,29.5,69.86,913,-0.9 +2013,4,14,18,30,94,40,414,2.4000000000000004,22.900000000000002,82.44,914,2.6 +2013,4,14,19,30,0,0,0,2.6,20.5,94.97,914,1.6 +2013,4,14,20,30,0,0,0,3,19.8,106.92,915,0.7000000000000001 +2013,4,14,21,30,0,0,0,3.6,19.200000000000003,118,916,0 +2013,4,14,22,30,0,0,0,4.2,18.8,127.56,916,-0.9 +2013,4,14,23,30,0,0,0,4.800000000000001,18.2,134.58,916,-1.6 +2013,4,15,0,30,0,0,0,4.9,17.2,137.75,916,-2 +2013,4,15,1,30,0,0,0,4.7,15.9,136.2,916,-1.9000000000000001 +2013,4,15,2,30,0,0,0,4.5,14.9,130.39000000000001,916,-1.6 +2013,4,15,3,30,0,0,0,4.2,14.100000000000001,121.58,917,-1.2000000000000002 +2013,4,15,4,30,0,0,0,4,13.5,110.95,917,-0.7000000000000001 +2013,4,15,5,30,0,0,0,3.8000000000000003,13,99.25,918,-0.2 +2013,4,15,6,30,34,21,228,3.9000000000000004,14.100000000000001,86.74,918,0.6000000000000001 +2013,4,15,7,30,237,60,657,3.9000000000000004,17.3,74.28,919,1.4000000000000001 +2013,4,15,8,30,470,80,822,3.8000000000000003,21.200000000000003,61.64,919,2.2 +2013,4,15,9,30,684,92,906,3.7,24.900000000000002,49.21,920,1.6 +2013,4,15,10,30,856,100,953,3.5,27.8,37.49,920,0.6000000000000001 +2013,4,15,11,30,971,105,977,3.4000000000000004,30.200000000000003,27.64,919,0.30000000000000004 +2013,4,15,12,30,979,217,824,3.4000000000000004,32.1,22.44,919,0.30000000000000004 +2013,4,15,13,30,896,324,632,3.7,33.300000000000004,25.03,918,0.4 +2013,4,15,14,30,902,102,960,4.3,33.7,33.65,917,0.4 +2013,4,15,15,30,749,97,921,4.7,33.5,44.89,916,0.2 +2013,4,15,16,30,512,100,759,4.5,32.4,57.13,916,-0.2 +2013,4,15,17,30,321,69,728,4.1000000000000005,31.6,69.73,916,1 +2013,4,15,18,30,79,42,275,2.1,24.700000000000003,82.3,917,4.6000000000000005 +2013,4,15,19,30,0,0,0,2.4000000000000004,22.1,94.82000000000001,917,4.2 +2013,4,15,20,30,0,0,0,3.3000000000000003,21.6,106.75,918,4.5 +2013,4,15,21,30,0,0,0,4.1000000000000005,21.200000000000003,117.79,919,5.1000000000000005 +2013,4,15,22,30,0,0,0,4.6000000000000005,20.5,127.3,919,5.4 +2013,4,15,23,30,0,0,0,4.3,19.400000000000002,134.27,919,5.6000000000000005 +2013,4,16,0,30,0,0,0,3.7,18.1,137.4,919,6 +2013,4,16,1,30,0,0,0,3.3000000000000003,17.1,135.85,919,6.6000000000000005 +2013,4,16,2,30,0,0,0,3.1,16.5,130.05,920,7.2 +2013,4,16,3,30,0,0,0,2.9000000000000004,16,121.28,920,7.9 +2013,4,16,4,30,0,0,0,2.9000000000000004,15.600000000000001,110.67,921,8.9 +2013,4,16,5,30,0,0,0,3,15.4,98.99000000000001,921,10.200000000000001 +2013,4,16,6,30,24,21,41,3.6,16.5,86.51,922,11.700000000000001 +2013,4,16,7,30,210,70,511,4.5,19.1,74.05,923,13.3 +2013,4,16,8,30,389,157,483,4.5,22.1,61.410000000000004,923,14.700000000000001 +2013,4,16,9,30,563,226,513,3.7,25,48.96,923,14.600000000000001 +2013,4,16,10,30,830,121,890,2.9000000000000004,27.6,37.21,923,13.8 +2013,4,16,11,30,940,127,915,2.8000000000000003,29.700000000000003,27.310000000000002,923,13 +2013,4,16,12,30,983,132,918,3.2,31.200000000000003,22.080000000000002,922,12.600000000000001 +2013,4,16,13,30,955,132,907,3.9000000000000004,32.300000000000004,24.740000000000002,921,12.5 +2013,4,16,14,30,862,132,876,4.6000000000000005,32.6,33.44,920,12.8 +2013,4,16,15,30,703,142,790,5.1000000000000005,32.4,44.730000000000004,919,13.3 +2013,4,16,16,30,380,237,264,5.4,31.5,56.99,919,13.8 +2013,4,16,17,30,257,113,414,5.5,30.900000000000002,69.59,919,14.3 +2013,4,16,18,30,71,46,186,5.300000000000001,27.6,82.17,920,14.600000000000001 +2013,4,16,19,30,0,0,0,5.9,25.700000000000003,94.67,920,14.700000000000001 +2013,4,16,20,30,0,0,0,6.2,24.3,106.57000000000001,921,14.8 +2013,4,16,21,30,0,0,0,6.4,22.900000000000002,117.58,921,15.200000000000001 +2013,4,16,22,30,0,0,0,6.4,21.6,127.05,921,15.9 +2013,4,16,23,30,0,0,0,6.300000000000001,20.3,133.96,921,16.7 +2013,4,17,0,30,0,0,0,6.2,19.3,137.05,921,17.3 +2013,4,17,1,30,0,0,0,6,18.8,135.49,921,17.8 +2013,4,17,2,30,0,0,0,5.7,18.6,129.72,920,18.1 +2013,4,17,3,30,0,0,0,5.300000000000001,18.7,120.98,920,18.3 +2013,4,17,4,30,0,0,0,4.9,18.8,110.4,920,18.400000000000002 +2013,4,17,5,30,0,0,0,4.7,19,98.74000000000001,920,18.6 +2013,4,17,6,30,25,22,38,5,19.900000000000002,86.29,920,18.8 +2013,4,17,7,30,200,124,272,6,21.6,73.82000000000001,920,19.1 +2013,4,17,8,30,408,199,433,7.1000000000000005,23.8,61.18,920,19.200000000000003 +2013,4,17,9,30,607,239,558,7.7,26,48.72,920,18.8 +2013,4,17,10,30,774,248,659,7.7,27.900000000000002,36.94,919,18 +2013,4,17,11,30,890,236,735,7.5,29.6,26.990000000000002,918,17 +2013,4,17,12,30,945,215,785,7.2,31,21.73,917,16 +2013,4,17,13,30,928,192,809,7,32.1,24.45,916,14.9 +2013,4,17,14,30,847,171,807,6.800000000000001,32.6,33.230000000000004,915,13.700000000000001 +2013,4,17,15,30,552,324,320,6.6000000000000005,32.5,44.57,914,12.4 +2013,4,17,16,30,462,170,535,6.1000000000000005,31.6,56.86,913,11.200000000000001 +2013,4,17,17,30,243,126,332,5.800000000000001,30.900000000000002,69.46000000000001,913,11.3 +2013,4,17,18,30,91,47,313,5.9,26.5,82.04,913,13.100000000000001 +2013,4,17,19,30,0,0,0,6.4,24.3,94.52,913,14.9 +2013,4,17,20,30,0,0,0,6.4,23,106.4,914,16.3 +2013,4,17,21,30,0,0,0,6,21.900000000000002,117.37,915,17.3 +2013,4,17,22,30,0,0,0,4.9,21,126.79,916,18 +2013,4,17,23,30,0,0,0,3.8000000000000003,20.400000000000002,133.66,917,17.8 +2013,4,18,0,30,0,0,0,3.7,19.700000000000003,136.70000000000002,918,16.1 +2013,4,18,1,30,0,0,0,4.7,18.1,135.14000000000001,920,11.600000000000001 +2013,4,18,2,30,0,0,0,6.2,15.200000000000001,129.39000000000001,921,4.800000000000001 +2013,4,18,3,30,0,0,0,7.300000000000001,11.5,120.68,923,-0.2 +2013,4,18,4,30,0,0,0,7.800000000000001,8.1,110.13,924,-0.2 +2013,4,18,5,30,0,0,0,7.800000000000001,5.7,98.5,926,0 +2013,4,18,6,30,34,23,151,7.9,4.9,86.05,927,-1 +2013,4,18,7,30,189,95,336,7.9,5.6000000000000005,73.59,928,-2.6 +2013,4,18,8,30,494,79,856,7.7,7.2,60.95,928,-4.1000000000000005 +2013,4,18,9,30,711,88,941,7.300000000000001,9.1,48.480000000000004,928,-5.2 +2013,4,18,10,30,891,92,996,7,11.200000000000001,36.67,928,-6 +2013,4,18,11,30,1007,94,1022,6.800000000000001,13,26.67,928,-6.6000000000000005 +2013,4,18,12,30,1055,93,1033,6.800000000000001,14.4,21.37,928,-7.1000000000000005 +2013,4,18,13,30,1032,91,1031,6.7,15.4,24.16,928,-7.6000000000000005 +2013,4,18,14,30,939,87,1016,6.6000000000000005,15.700000000000001,33.03,928,-8.200000000000001 +2013,4,18,15,30,782,86,974,6.4,15.600000000000001,44.410000000000004,928,-8.8 +2013,4,18,16,30,578,77,913,6.2,14.8,56.72,928,-9.5 +2013,4,18,17,30,343,63,795,6,14.200000000000001,69.33,928,-10 +2013,4,18,18,30,112,37,527,4.6000000000000005,11.100000000000001,81.89,930,-10.100000000000001 +2013,4,18,19,30,0,0,0,3.6,9,94.37,931,-9.1 +2013,4,18,20,30,0,0,0,3.1,7.5,106.22,932,-8.200000000000001 +2013,4,18,21,30,0,0,0,2.8000000000000003,6.300000000000001,117.16,933,-7.5 +2013,4,18,22,30,0,0,0,2.7,5.4,126.53,933,-7.1000000000000005 +2013,4,18,23,30,0,0,0,2.7,4.6000000000000005,133.35,934,-7.1000000000000005 +2013,4,19,0,30,0,0,0,2.7,3.9000000000000004,136.36,934,-7.300000000000001 +2013,4,19,1,30,0,0,0,2.6,3.1,134.79,934,-7.6000000000000005 +2013,4,19,2,30,0,0,0,2.3000000000000003,2.4000000000000004,129.06,934,-7.9 +2013,4,19,3,30,0,0,0,2,1.6,120.38,935,-8.1 +2013,4,19,4,30,0,0,0,1.8,0.9,109.86,935,-8.200000000000001 +2013,4,19,5,30,0,0,0,2,0.8,98.25,936,-8.4 +2013,4,19,6,30,49,25,324,2.8000000000000003,2.5,85.82000000000001,937,-8.700000000000001 +2013,4,19,7,30,264,63,706,3.6,5.6000000000000005,73.37,937,-9.600000000000001 +2013,4,19,8,30,502,86,850,3.7,8.8,60.72,938,-10 +2013,4,19,9,30,718,101,926,3.4000000000000004,11.5,48.24,937,-9.8 +2013,4,19,10,30,892,110,972,3.2,13.8,36.410000000000004,937,-9.5 +2013,4,19,11,30,1008,114,998,2.9000000000000004,15.8,26.36,936,-9.5 +2013,4,19,12,30,1057,113,1011,2.6,17.2,21.03,935,-9.9 +2013,4,19,13,30,1033,109,1011,2.3000000000000003,18.1,23.88,934,-10.3 +2013,4,19,14,30,940,105,994,2.3000000000000003,18.7,32.82,933,-10.600000000000001 +2013,4,19,15,30,783,98,957,2.2,18.8,44.25,932,-11 +2013,4,19,16,30,578,86,893,2.1,18.400000000000002,56.58,932,-11.3 +2013,4,19,17,30,344,69,775,2.1,18.1,69.2,931,-11.600000000000001 +2013,4,19,18,30,113,40,507,1.1,13.200000000000001,81.76,931,-3.6 +2013,4,19,19,30,0,0,0,1.4000000000000001,10.3,94.22,931,-4.2 +2013,4,19,20,30,0,0,0,2,9.4,106.05,931,-5.5 +2013,4,19,21,30,0,0,0,3.1,9.200000000000001,116.95,931,-6.800000000000001 +2013,4,19,22,30,0,0,0,4.1000000000000005,8.9,126.28,931,-7.300000000000001 +2013,4,19,23,30,0,0,0,4.7,8.200000000000001,133.05,931,-6.7 +2013,4,20,0,30,0,0,0,4.9,7.5,136.02,930,-6.2 +2013,4,20,1,30,0,0,0,4.800000000000001,6.800000000000001,134.45,930,-5.9 +2013,4,20,2,30,0,0,0,4.4,5.9,128.74,930,-5.6000000000000005 +2013,4,20,3,30,0,0,0,4,5.300000000000001,120.09,929,-5.1000000000000005 +2013,4,20,4,30,0,0,0,4.1000000000000005,4.9,109.60000000000001,929,-4.6000000000000005 +2013,4,20,5,30,0,0,0,4.3,4.800000000000001,98.01,930,-4 +2013,4,20,6,30,50,27,294,4.7,5.800000000000001,85.61,930,-3.4000000000000004 +2013,4,20,7,30,263,64,686,5.9,8.8,73.15,930,-3.1 +2013,4,20,8,30,498,84,842,7.300000000000001,12.9,60.51,930,-3.7 +2013,4,20,9,30,714,97,921,7.9,16.400000000000002,48.01,930,-4.4 +2013,4,20,10,30,880,106,959,7.800000000000001,19.200000000000003,36.15,929,-4.7 +2013,4,20,11,30,994,111,983,7.6000000000000005,21.3,26.05,928,-4.6000000000000005 +2013,4,20,12,30,1041,112,993,7.4,22.900000000000002,20.68,927,-4.6000000000000005 +2013,4,20,13,30,1017,113,986,7.2,23.900000000000002,23.6,926,-4.6000000000000005 +2013,4,20,14,30,923,110,965,7.1000000000000005,24.3,32.62,925,-4.7 +2013,4,20,15,30,764,105,918,6.800000000000001,24.1,44.1,924,-4.7 +2013,4,20,16,30,561,95,844,6.4,23.3,56.45,924,-4.7 +2013,4,20,17,30,328,78,698,6.1000000000000005,22.700000000000003,69.07000000000001,924,-4.4 +2013,4,20,18,30,103,47,386,5.2,18.8,81.63,924,-3.6 +2013,4,20,19,30,0,0,0,5.1000000000000005,16.3,94.07000000000001,925,-2.7 +2013,4,20,20,30,0,0,0,5,14.700000000000001,105.88,926,-1.9000000000000001 +2013,4,20,21,30,0,0,0,4.9,13.200000000000001,116.74000000000001,926,-1.2000000000000002 +2013,4,20,22,30,0,0,0,5.1000000000000005,12,126.02,926,-1 +2013,4,20,23,30,0,0,0,5,11,132.74,926,-0.9 +2013,4,21,0,30,0,0,0,4.800000000000001,10.100000000000001,135.68,926,-0.7000000000000001 +2013,4,21,1,30,0,0,0,4.6000000000000005,9.200000000000001,134.1,926,-0.5 +2013,4,21,2,30,0,0,0,4.1000000000000005,8.4,128.42000000000002,926,0.30000000000000004 +2013,4,21,3,30,0,0,0,3.6,7.5,119.8,926,1.2000000000000002 +2013,4,21,4,30,0,0,0,3.2,6.9,109.34,927,2.1 +2013,4,21,5,30,0,0,0,3.3000000000000003,6.6000000000000005,97.77,927,2.9000000000000004 +2013,4,21,6,30,49,29,247,4.1000000000000005,7.9,85.39,928,3.8000000000000003 +2013,4,21,7,30,256,72,626,5,10.700000000000001,72.94,929,5 +2013,4,21,8,30,486,96,786,5.2,14,60.29,929,6.1000000000000005 +2013,4,21,9,30,697,111,873,4.7,17.5,47.78,930,6.1000000000000005 +2013,4,21,10,30,864,120,918,4.1000000000000005,20.700000000000003,35.89,929,5.7 +2013,4,21,11,30,976,125,944,3.8000000000000003,23.3,25.740000000000002,929,5 +2013,4,21,12,30,1021,126,954,3.7,25.200000000000003,20.34,928,4.3 +2013,4,21,13,30,998,124,952,3.7,26.400000000000002,23.32,927,3.6 +2013,4,21,14,30,907,118,935,3.7,27.1,32.43,926,2.8000000000000003 +2013,4,21,15,30,756,107,901,3.8000000000000003,27.200000000000003,43.95,926,1.9000000000000001 +2013,4,21,16,30,559,94,839,3.8000000000000003,26.6,56.32,925,1 +2013,4,21,17,30,332,75,716,3.9000000000000004,26.200000000000003,68.95,925,0.8 +2013,4,21,18,30,109,43,444,3.5,21,81.5,926,3.7 +2013,4,21,19,30,0,0,0,4.3,18.400000000000002,93.92,926,5.1000000000000005 +2013,4,21,20,30,0,0,0,4.9,16.900000000000002,105.7,927,6.300000000000001 +2013,4,21,21,30,0,0,0,5.2,15.700000000000001,116.53,928,7.2 +2013,4,21,22,30,0,0,0,5.300000000000001,14.700000000000001,125.77,928,7.6000000000000005 +2013,4,21,23,30,0,0,0,5.2,13.8,132.44,927,8 +2013,4,22,0,30,0,0,0,5.1000000000000005,13,135.35,927,8.200000000000001 +2013,4,22,1,30,0,0,0,5.2,12.600000000000001,133.77,927,8.3 +2013,4,22,2,30,0,0,0,5.2,12.3,128.11,927,8.3 +2013,4,22,3,30,0,0,0,4.800000000000001,12,119.52,927,8.4 +2013,4,22,4,30,0,0,0,4.6000000000000005,11.600000000000001,109.09,927,8.9 +2013,4,22,5,30,0,0,0,4.7,11.5,97.54,927,9.9 +2013,4,22,6,30,50,32,209,5.5,12.8,85.18,927,11 +2013,4,22,7,30,253,80,583,6.800000000000001,15.4,72.73,927,12 +2013,4,22,8,30,483,99,768,7.4,18.8,60.08,927,12.3 +2013,4,22,9,30,694,109,867,7.2,22.200000000000003,47.56,927,11.9 +2013,4,22,10,30,861,116,916,6.800000000000001,25.200000000000003,35.64,926,10.8 +2013,4,22,11,30,972,120,944,6.5,27.700000000000003,25.44,925,9.600000000000001 +2013,4,22,12,30,1019,117,960,6.300000000000001,29.6,20,924,8.5 +2013,4,22,13,30,994,118,952,6.2,30.700000000000003,23.05,923,7.4 +2013,4,22,14,30,902,116,930,6.1000000000000005,31.3,32.24,922,6.4 +2013,4,22,15,30,750,109,888,5.9,31.400000000000002,43.800000000000004,921,5.4 +2013,4,22,16,30,554,97,821,5.5,30.8,56.19,920,4.3 +2013,4,22,17,30,329,78,697,5.2,30.3,68.82000000000001,920,3.7 +2013,4,22,18,30,108,45,420,4.2,25.5,81.37,920,4.9 +2013,4,22,19,30,0,0,0,5.1000000000000005,23.3,93.77,921,6.1000000000000005 +2013,4,22,20,30,0,0,0,5.6000000000000005,22,105.53,921,7.1000000000000005 +2013,4,22,21,30,0,0,0,5.5,20.5,116.32000000000001,921,8.1 +2013,4,22,22,30,0,0,0,5.6000000000000005,19.200000000000003,125.52,921,9 +2013,4,22,23,30,0,0,0,5.6000000000000005,18.2,132.14000000000001,921,9.9 +2013,4,23,0,30,0,0,0,5.300000000000001,17.3,135.02,921,10.600000000000001 +2013,4,23,1,30,0,0,0,4.5,16.400000000000002,133.43,921,11.100000000000001 +2013,4,23,2,30,0,0,0,2.6,15.100000000000001,127.79,921,11.4 +2013,4,23,3,30,0,0,0,2,13.600000000000001,119.24000000000001,922,11.4 +2013,4,23,4,30,0,0,0,3.6,12.200000000000001,108.83,924,10.600000000000001 +2013,4,23,5,30,0,0,0,5.2,10.5,97.31,926,8.700000000000001 +2013,4,23,6,30,15,15,0,6.1000000000000005,9.1,84.97,927,5.800000000000001 +2013,4,23,7,30,64,64,0,6.6000000000000005,8.6,72.52,929,3.4000000000000004 +2013,4,23,8,30,183,175,15,6.5,8.5,59.870000000000005,930,2 +2013,4,23,9,30,246,235,17,6.2,8.5,47.34,930,1.1 +2013,4,23,10,30,405,363,51,5.7,9.200000000000001,35.4,931,0.4 +2013,4,23,11,30,384,358,28,5.1000000000000005,10.200000000000001,25.150000000000002,931,0.2 +2013,4,23,12,30,447,410,39,4.4,11.4,19.66,930,0.2 +2013,4,23,13,30,531,455,82,4,12.5,22.78,930,0.30000000000000004 +2013,4,23,14,30,483,411,85,3.9000000000000004,13.100000000000001,32.05,929,0.30000000000000004 +2013,4,23,15,30,382,330,71,4,13.200000000000001,43.65,929,0.2 +2013,4,23,16,30,434,217,387,4.3,12.600000000000001,56.06,929,-0.30000000000000004 +2013,4,23,17,30,192,149,120,4.4,12.100000000000001,68.69,929,-0.8 +2013,4,23,18,30,112,45,438,4.2,9.200000000000001,81.23,930,-1.2000000000000002 +2013,4,23,19,30,0,0,0,4.4,7.300000000000001,93.62,931,-1.5 +2013,4,23,20,30,0,0,0,5,5.9,105.35000000000001,933,-1.6 +2013,4,23,21,30,0,0,0,5.6000000000000005,4.6000000000000005,116.12,934,-1.8 +2013,4,23,22,30,0,0,0,5.7,3.4000000000000004,125.27,935,-2.2 +2013,4,23,23,30,0,0,0,5.2,2.3000000000000003,131.85,936,-2.8000000000000003 +2013,4,24,0,30,0,0,0,4.6000000000000005,1.4000000000000001,134.69,936,-3.4000000000000004 +2013,4,24,1,30,0,0,0,4.3,0.7000000000000001,133.1,936,-3.8000000000000003 +2013,4,24,2,30,0,0,0,4.1000000000000005,0.2,127.49000000000001,936,-4.2 +2013,4,24,3,30,0,0,0,3.7,0,118.96000000000001,936,-4.4 +2013,4,24,4,30,0,0,0,3.3000000000000003,-0.2,108.58,936,-4.6000000000000005 +2013,4,24,5,30,0,0,0,3.3000000000000003,-0.30000000000000004,97.08,937,-4.7 +2013,4,24,6,30,60,30,332,3.9000000000000004,0.7000000000000001,84.75,937,-4.800000000000001 +2013,4,24,7,30,273,64,689,4.3,2.8000000000000003,72.32000000000001,938,-4.9 +2013,4,24,8,30,504,82,836,4.2,5.2,59.67,938,-4.800000000000001 +2013,4,24,9,30,715,94,912,3.9000000000000004,7.800000000000001,47.13,938,-4.6000000000000005 +2013,4,24,10,30,883,102,955,3.6,10.4,35.160000000000004,937,-4.5 +2013,4,24,11,30,994,107,977,3.2,12.8,24.85,936,-4.4 +2013,4,24,12,30,1035,109,982,2.8000000000000003,14.8,19.330000000000002,935,-4.3 +2013,4,24,13,30,1006,110,970,2.4000000000000004,16.400000000000002,22.51,935,-4.3 +2013,4,24,14,30,914,109,948,2.1,17.3,31.86,934,-4.2 +2013,4,24,15,30,757,106,898,2.1,17.6,43.51,934,-4 +2013,4,24,16,30,560,95,829,2.1,17.2,55.93,933,-3.8000000000000003 +2013,4,24,17,30,207,149,159,2.2,16.8,68.57000000000001,933,-3.6 +2013,4,24,18,30,113,45,438,1.6,13.200000000000001,81.10000000000001,934,-2.7 +2013,4,24,19,30,0,0,0,1.5,10.8,93.47,934,-0.7000000000000001 +2013,4,24,20,30,0,0,0,2.1,10.100000000000001,105.18,935,-2 +2013,4,24,21,30,0,0,0,2.6,9.600000000000001,115.91,936,-2.7 +2013,4,24,22,30,0,0,0,2.7,9,125.02,936,-2.7 +2013,4,24,23,30,0,0,0,2.6,8.5,131.55,936,-2.4000000000000004 +2013,4,25,0,30,0,0,0,2.5,7.800000000000001,134.37,936,-2 +2013,4,25,1,30,0,0,0,2.1,7.2,132.77,936,-1.7000000000000002 +2013,4,25,2,30,0,0,0,1.7000000000000002,6.800000000000001,127.18,936,-1.3 +2013,4,25,3,30,0,0,0,1.5,6.6000000000000005,118.69,937,-1 +2013,4,25,4,30,0,0,0,1.4000000000000001,6.5,108.34,937,-0.8 +2013,4,25,5,30,0,0,0,1.6,6.7,96.85000000000001,937,-0.7000000000000001 +2013,4,25,6,30,60,33,280,2.3000000000000003,8.3,84.55,937,-0.7000000000000001 +2013,4,25,7,30,72,72,0,3.1,11,72.12,938,-1.1 +2013,4,25,8,30,345,215,256,3.7,13.700000000000001,59.47,937,-1.8 +2013,4,25,9,30,598,226,545,4.1000000000000005,16.400000000000002,46.92,937,-1.5 +2013,4,25,10,30,638,389,303,4.1000000000000005,18.900000000000002,34.92,936,-0.6000000000000001 +2013,4,25,11,30,792,396,435,4.1000000000000005,21.1,24.57,935,0.6000000000000001 +2013,4,25,12,30,773,456,335,4.4,22.8,19.01,934,1.9000000000000001 +2013,4,25,13,30,371,349,24,4.800000000000001,23.900000000000002,22.25,933,3.2 +2013,4,25,14,30,385,355,35,5.300000000000001,24.3,31.68,932,4.3 +2013,4,25,15,30,455,352,142,5.6000000000000005,24.1,43.36,931,5 +2013,4,25,16,30,332,254,138,5.7,23.400000000000002,55.800000000000004,930,5.300000000000001 +2013,4,25,17,30,323,87,642,5.7,23,68.44,930,5.7 +2013,4,25,18,30,109,49,379,4.6000000000000005,19.6,80.97,930,6.2 +2013,4,25,19,30,0,0,0,4.5,17.3,93.32000000000001,930,6.800000000000001 +2013,4,25,20,30,0,0,0,4.7,15.9,105.01,931,7.300000000000001 +2013,4,25,21,30,0,0,0,4.6000000000000005,14.8,115.7,931,7.9 +2013,4,25,22,30,0,0,0,4.4,14,124.77,931,8.4 +2013,4,25,23,30,0,0,0,4.6000000000000005,13.5,131.26,931,8.9 +2013,4,26,0,30,0,0,0,4.9,13.3,134.04,930,9.4 +2013,4,26,1,30,0,0,0,4.9,13.100000000000001,132.45,930,9.9 +2013,4,26,2,30,0,0,0,4.7,12.9,126.88000000000001,929,10.3 +2013,4,26,3,30,0,0,0,4.5,12.700000000000001,118.41,929,10.600000000000001 +2013,4,26,4,30,0,0,0,4.5,12.4,108.09,929,10.9 +2013,4,26,5,30,0,0,0,4.7,12.4,96.63,929,11.200000000000001 +2013,4,26,6,30,57,36,211,5.1000000000000005,13.5,84.36,929,11.5 +2013,4,26,7,30,257,86,551,6,15.8,71.92,929,11.700000000000001 +2013,4,26,8,30,382,198,360,6.5,18.8,59.28,929,12 +2013,4,26,9,30,606,225,556,6.4,21.8,46.72,929,12 +2013,4,26,10,30,863,121,902,5.800000000000001,24.700000000000003,34.69,929,11.5 +2013,4,26,11,30,977,120,940,5.1000000000000005,27.400000000000002,24.29,928,10.3 +2013,4,26,12,30,1025,116,960,4.6000000000000005,29.5,18.68,927,8.3 +2013,4,26,13,30,1005,112,964,4.4,30.900000000000002,21.990000000000002,926,5.9 +2013,4,26,14,30,918,105,954,4.3,31.700000000000003,31.5,926,3.4000000000000004 +2013,4,26,15,30,758,112,887,4.2,31.900000000000002,43.22,925,1 +2013,4,26,16,30,578,82,879,3.7,31.3,55.68,925,-1.2000000000000002 +2013,4,26,17,30,353,65,779,3.4000000000000004,30.8,68.32000000000001,925,-2.1 +2013,4,26,18,30,125,40,536,1.6,23.700000000000003,80.84,926,3.8000000000000003 +2013,4,26,19,30,0,0,0,1.9000000000000001,20.700000000000003,93.18,926,3.4000000000000004 +2013,4,26,20,30,0,0,0,2,19.400000000000002,104.83,927,3.9000000000000004 +2013,4,26,21,30,0,0,0,1.5,18.3,115.5,928,5.1000000000000005 +2013,4,26,22,30,0,0,0,1.3,17,124.53,929,6.5 +2013,4,26,23,30,0,0,0,1.5,15.4,130.97,930,7.800000000000001 +2013,4,27,0,30,0,0,0,1.4000000000000001,14.200000000000001,133.73,930,7.9 +2013,4,27,1,30,0,0,0,1.4000000000000001,13.200000000000001,132.13,930,7.7 +2013,4,27,2,30,0,0,0,1.4000000000000001,12.200000000000001,126.58,931,7.9 +2013,4,27,3,30,0,0,0,1.6,11.5,118.15,931,8.3 +2013,4,27,4,30,0,0,0,1.9000000000000001,11,107.85000000000001,931,9.1 +2013,4,27,5,30,0,0,0,2.5,11.100000000000001,96.42,932,9.9 +2013,4,27,6,30,65,35,295,3.5,12.4,84.16,932,10.4 +2013,4,27,7,30,273,74,637,4.1000000000000005,14.700000000000001,71.73,933,11.100000000000001 +2013,4,27,8,30,502,91,800,4.1000000000000005,17.5,59.08,933,11.200000000000001 +2013,4,27,9,30,710,100,885,3.9000000000000004,20.1,46.52,933,10.5 +2013,4,27,10,30,875,107,931,3.7,22.6,34.47,933,9 +2013,4,27,11,30,984,111,955,3.6,24.6,24.01,932,7 +2013,4,27,12,30,1028,111,967,3.5,26,18.36,931,5 +2013,4,27,13,30,1007,109,967,3.4000000000000004,26.900000000000002,21.740000000000002,930,3.7 +2013,4,27,14,30,915,104,949,3.3000000000000003,27.3,31.32,929,2.7 +2013,4,27,15,30,764,98,912,3.2,27.200000000000003,43.08,929,1.9000000000000001 +2013,4,27,16,30,570,86,855,3.2,26.5,55.550000000000004,928,1.3 +2013,4,27,17,30,345,69,742,3.2,25.900000000000002,68.2,928,1 +2013,4,27,18,30,122,42,492,1.9000000000000001,21,80.71000000000001,928,2.7 +2013,4,27,19,30,0,0,0,1.9000000000000001,18.1,93.03,929,3.8000000000000003 +2013,4,27,20,30,0,0,0,2.2,16.900000000000002,104.66,930,3.4000000000000004 +2013,4,27,21,30,0,0,0,2.4000000000000004,16,115.29,930,3.5 +2013,4,27,22,30,0,0,0,2.5,15,124.28,930,3.8000000000000003 +2013,4,27,23,30,0,0,0,2.6,14.200000000000001,130.69,929,4.2 +2013,4,28,0,30,0,0,0,2.6,13.5,133.41,929,4.7 +2013,4,28,1,30,0,0,0,2.6,12.8,131.82,928,5.5 +2013,4,28,2,30,0,0,0,2.5,12.3,126.29,928,6.7 +2013,4,28,3,30,0,0,0,2.5,11.9,117.89,928,8.1 +2013,4,28,4,30,0,0,0,2.5,11.9,107.62,928,9.9 +2013,4,28,5,30,0,0,0,2.8000000000000003,12.600000000000001,96.2,928,11.600000000000001 +2013,4,28,6,30,66,36,288,3.4000000000000004,14.8,83.97,928,13.200000000000001 +2013,4,28,7,30,273,74,628,4.1000000000000005,18.3,71.55,928,14.5 +2013,4,28,8,30,499,91,790,4.5,21.900000000000002,58.9,928,15.3 +2013,4,28,9,30,704,102,872,4.1000000000000005,24.6,46.33,928,13.9 +2013,4,28,10,30,868,111,915,3.7,26.900000000000002,34.25,927,11.9 +2013,4,28,11,30,976,117,938,3.5,28.700000000000003,23.740000000000002,927,10.100000000000001 +2013,4,28,12,30,1021,120,948,3.7,30,18.05,926,8.200000000000001 +2013,4,28,13,30,935,299,684,4,30.6,21.490000000000002,925,6.7 +2013,4,28,14,30,356,333,27,4.3,30.6,31.14,924,5.7 +2013,4,28,15,30,494,355,190,4.7,30.1,42.94,923,5.1000000000000005 +2013,4,28,16,30,556,99,805,4.9,28.900000000000002,55.43,923,5 +2013,4,28,17,30,333,82,673,4.9,28.200000000000003,68.07000000000001,923,5.4 +2013,4,28,18,30,115,50,402,3.8000000000000003,24.3,80.58,923,6.5 +2013,4,28,19,30,0,0,0,3.5,21.900000000000002,92.88,924,8.200000000000001 +2013,4,28,20,30,0,0,0,3.7,20.700000000000003,104.49000000000001,924,9.5 +2013,4,28,21,30,0,0,0,3.8000000000000003,19.700000000000003,115.09,925,10.8 +2013,4,28,22,30,0,0,0,3.8000000000000003,18.8,124.04,925,11.9 +2013,4,28,23,30,0,0,0,3.7,17.8,130.4,925,12.8 +2013,4,29,0,30,0,0,0,3.6,16.900000000000002,133.1,924,13.600000000000001 +2013,4,29,1,30,0,0,0,3.6,16.1,131.51,924,14.100000000000001 +2013,4,29,2,30,0,0,0,3.5,15.4,126,924,14.4 +2013,4,29,3,30,0,0,0,3.3000000000000003,14.700000000000001,117.63,924,14.600000000000001 +2013,4,29,4,30,0,0,0,3.1,14.3,107.39,924,14.3 +2013,4,29,5,30,0,0,0,3.1,14.3,96,924,14.3 +2013,4,29,6,30,69,36,306,3.6,15.600000000000001,83.78,925,14.700000000000001 +2013,4,29,7,30,279,72,646,4.1000000000000005,18.5,71.36,925,14.8 +2013,4,29,8,30,507,89,805,4.3,22.1,58.72,925,14 +2013,4,29,9,30,714,100,887,4.3,25.5,46.14,925,10.8 +2013,4,29,10,30,879,108,931,4.4,27.900000000000002,34.04,924,7.6000000000000005 +2013,4,29,11,30,988,112,955,4.5,29.5,23.48,923,6.2 +2013,4,29,12,30,1032,112,966,4.6000000000000005,30.5,17.740000000000002,922,5.800000000000001 +2013,4,29,13,30,1007,111,962,4.6000000000000005,31,21.240000000000002,921,5.800000000000001 +2013,4,29,14,30,916,107,944,4.6000000000000005,31,30.970000000000002,921,5.9 +2013,4,29,15,30,763,99,906,4.5,30.6,42.81,920,6 +2013,4,29,16,30,568,87,844,4.5,29.6,55.300000000000004,920,6 +2013,4,29,17,30,345,70,731,4.5,29,67.95,920,6.2 +2013,4,29,18,30,123,43,480,3.8000000000000003,25.200000000000003,80.45,920,7.1000000000000005 +2013,4,29,19,30,0,0,0,4,22.8,92.73,920,8.700000000000001 +2013,4,29,20,30,0,0,0,4.6000000000000005,21.400000000000002,104.32000000000001,920,10 +2013,4,29,21,30,0,0,0,4.9,20.1,114.88,921,11.4 +2013,4,29,22,30,0,0,0,4.9,19,123.8,921,12.600000000000001 +2013,4,29,23,30,0,0,0,4.9,17.900000000000002,130.12,921,13.5 +2013,4,30,0,30,0,0,0,4.800000000000001,16.900000000000002,132.8,920,14.3 +2013,4,30,1,30,0,0,0,4.6000000000000005,16.1,131.2,920,14.9 +2013,4,30,2,30,0,0,0,4.3,15.5,125.72,920,15.200000000000001 +2013,4,30,3,30,0,0,0,4.1000000000000005,15.200000000000001,117.37,920,15.200000000000001 +2013,4,30,4,30,0,0,0,3.9000000000000004,15.100000000000001,107.16,920,15.100000000000001 +2013,4,30,5,30,0,0,0,4,15.100000000000001,95.79,920,15.100000000000001 +2013,4,30,6,30,71,36,313,4.7,16.2,83.59,921,15 +2013,4,30,7,30,278,72,638,5.300000000000001,18.6,71.19,921,14.8 +2013,4,30,8,30,502,90,789,5.4,21.700000000000003,58.54,921,14.3 +2013,4,30,9,30,707,102,870,5.4,24.900000000000002,45.95,920,13.4 +2013,4,30,10,30,870,108,916,5.2,27.6,33.83,920,12.200000000000001 +2013,4,30,11,30,977,112,942,5.1000000000000005,29.8,23.22,919,11 +2013,4,30,12,30,1020,113,950,4.9,31.3,17.43,919,10.100000000000001 +2013,4,30,13,30,995,112,946,4.7,32.2,21,918,9.4 +2013,4,30,14,30,905,108,928,4.7,32.6,30.8,917,8.700000000000001 +2013,4,30,15,30,755,102,889,4.7,32.5,42.67,917,8.1 +2013,4,30,16,30,562,90,827,4.800000000000001,31.8,55.18,917,7.7 +2013,4,30,17,30,343,72,716,4.800000000000001,31.3,67.83,917,7.6000000000000005 +2013,4,30,18,30,123,45,463,4.2,27.1,80.32000000000001,917,8.5 +2013,4,30,19,30,0,0,0,4.4,24.5,92.59,918,9.600000000000001 +2013,4,30,20,30,0,0,0,4.800000000000001,22.8,104.15,919,10.200000000000001 +2013,4,30,21,30,0,0,0,4.9,21.3,114.68,919,10.8 +2013,4,30,22,30,0,0,0,4.9,20,123.56,919,11.3 +2013,4,30,23,30,0,0,0,4.7,18.900000000000002,129.85,919,11.9 +2013,5,1,0,30,0,0,0,4.4,18,132.49,919,12.5 +2013,5,1,1,30,0,0,0,4.2,17.3,130.9,920,13.100000000000001 +2013,5,1,2,30,0,0,0,3.9000000000000004,16.900000000000002,125.44,920,13.600000000000001 +2013,5,1,3,30,0,0,0,3.7,16.400000000000002,117.12,920,13.9 +2013,5,1,4,30,0,0,0,3.4000000000000004,15.8,106.94,920,14.200000000000001 +2013,5,1,5,30,0,0,0,3.3000000000000003,15.600000000000001,95.59,920,14.4 +2013,5,1,6,30,50,39,94,3.8000000000000003,16.900000000000002,83.41,921,14.700000000000001 +2013,5,1,7,30,251,88,501,4.6000000000000005,19.900000000000002,71.01,921,15.3 +2013,5,1,8,30,410,193,413,4.5,23.5,58.370000000000005,922,15.5 +2013,5,1,9,30,603,243,516,3.3000000000000003,26.6,45.77,922,13.700000000000001 +2013,5,1,10,30,755,330,511,1.9000000000000001,28.900000000000002,33.63,922,11.200000000000001 +2013,5,1,11,30,856,402,493,1.5,30.200000000000003,22.97,922,9.4 +2013,5,1,12,30,1012,138,915,1.9000000000000001,30.8,17.13,922,8.4 +2013,5,1,13,30,987,133,913,2.4000000000000004,31.1,20.76,922,8 +2013,5,1,14,30,898,125,898,2.8000000000000003,31,30.63,922,7.9 +2013,5,1,15,30,752,113,867,3.1,30.6,42.54,923,7.7 +2013,5,1,16,30,261,235,46,3.3000000000000003,29.700000000000003,55.06,923,7.5 +2013,5,1,17,30,340,78,690,3.3000000000000003,29.1,67.71000000000001,923,7.6000000000000005 +2013,5,1,18,30,108,50,341,2.9000000000000004,24.5,80.19,925,9.600000000000001 +2013,5,1,19,30,0,0,0,3.3000000000000003,21.3,92.44,926,10.600000000000001 +2013,5,1,20,30,0,0,0,4.2,19,103.98,927,10.5 +2013,5,1,21,30,0,0,0,5.2,16.8,114.48,929,9.9 +2013,5,1,22,30,0,0,0,6,14.600000000000001,123.32000000000001,930,9.1 +2013,5,1,23,30,0,0,0,6.6000000000000005,12.200000000000001,129.57,931,8.1 +2013,5,2,0,30,0,0,0,7.2,9.8,132.2,932,6.9 +2013,5,2,1,30,0,0,0,7.5,8,130.6,933,5.4 +2013,5,2,2,30,0,0,0,7.7,6.6000000000000005,125.17,934,4.1000000000000005 +2013,5,2,3,30,0,0,0,7.9,5.4,116.88,935,2.9000000000000004 +2013,5,2,4,30,0,0,0,7.9,4.5,106.72,936,1.8 +2013,5,2,5,30,0,0,0,7.800000000000001,4,95.39,937,1 +2013,5,2,6,30,71,45,215,7.9,4.3,83.23,938,0.6000000000000001 +2013,5,2,7,30,91,91,0,8.200000000000001,5.300000000000001,70.84,939,0.2 +2013,5,2,8,30,66,66,0,8.5,6.800000000000001,58.2,939,-0.2 +2013,5,2,9,30,160,158,3,8.8,8.3,45.6,939,-0.30000000000000004 +2013,5,2,10,30,161,156,5,8.9,9.600000000000001,33.43,940,-0.30000000000000004 +2013,5,2,11,30,162,156,6,8.8,10.600000000000001,22.72,940,-0.4 +2013,5,2,12,30,157,151,6,8.5,11.5,16.830000000000002,940,-0.8 +2013,5,2,13,30,276,262,15,8.200000000000001,12.5,20.52,939,-1.2000000000000002 +2013,5,2,14,30,360,336,27,8.1,13.3,30.47,939,-1.6 +2013,5,2,15,30,337,307,40,8.1,13.4,42.410000000000004,939,-1.9000000000000001 +2013,5,2,16,30,237,220,30,8,12.8,54.94,939,-2.4000000000000004 +2013,5,2,17,30,129,127,5,7.9,12.3,67.58,939,-3.1 +2013,5,2,18,30,130,51,456,6.300000000000001,10,80.05,940,-3.8000000000000003 +2013,5,2,19,30,0,0,0,5.1000000000000005,8.5,92.29,940,-4.4 +2013,5,2,20,30,0,0,0,4.5,7.4,103.81,941,-4.800000000000001 +2013,5,2,21,30,0,0,0,4.2,6.5,114.28,941,-5.300000000000001 +2013,5,2,22,30,0,0,0,4.2,5.9,123.08,941,-5.7 +2013,5,2,23,30,0,0,0,4.4,5.4,129.3,941,-6.300000000000001 +2013,5,3,0,30,0,0,0,4.4,4.9,131.9,940,-6.9 +2013,5,3,1,30,0,0,0,4.1000000000000005,4.2,130.31,940,-7.300000000000001 +2013,5,3,2,30,0,0,0,3.7,3.5,124.9,940,-7.5 +2013,5,3,3,30,0,0,0,3.2,2.7,116.64,940,-7.7 +2013,5,3,4,30,0,0,0,2.8000000000000003,1.9000000000000001,106.51,940,-7.7 +2013,5,3,5,30,0,0,0,2.9000000000000004,2,95.2,940,-7.800000000000001 +2013,5,3,6,30,87,40,389,3.5,3.8000000000000003,83.05,940,-8.200000000000001 +2013,5,3,7,30,309,74,711,4.1000000000000005,7.5,70.67,940,-8.5 +2013,5,3,8,30,544,93,853,4.5,11,58.04,939,-9.4 +2013,5,3,9,30,750,105,919,4.6000000000000005,13.3,45.43,939,-10.200000000000001 +2013,5,3,10,30,918,112,964,4.4,15.100000000000001,33.24,938,-10.9 +2013,5,3,11,30,1028,115,988,4.2,16.7,22.48,936,-11.3 +2013,5,3,12,30,1073,113,1001,4,18.1,16.53,934,-11.3 +2013,5,3,13,30,1049,111,1000,3.8000000000000003,19,20.29,933,-11.3 +2013,5,3,14,30,956,105,986,3.6,19.6,30.310000000000002,932,-11.200000000000001 +2013,5,3,15,30,802,99,950,3.4000000000000004,19.8,42.28,931,-11.200000000000001 +2013,5,3,16,30,601,87,892,3.1,19.6,54.82,930,-11.100000000000001 +2013,5,3,17,30,372,71,787,2.9000000000000004,19.3,67.46000000000001,930,-11 +2013,5,3,18,30,142,45,554,1,15.9,79.93,929,-4.3 +2013,5,3,19,30,0,0,0,1,13.4,92.15,929,-4.800000000000001 +2013,5,3,20,30,0,0,0,1.3,11.200000000000001,103.64,929,-5.1000000000000005 +2013,5,3,21,30,0,0,0,1.6,9.8,114.08,929,-5.300000000000001 +2013,5,3,22,30,0,0,0,1.9000000000000001,9.200000000000001,122.85000000000001,928,-6.4 +2013,5,3,23,30,0,0,0,2.3000000000000003,8.8,129.03,928,-7.2 +2013,5,4,0,30,0,0,0,2.4000000000000004,8.3,131.61,928,-7.7 +2013,5,4,1,30,0,0,0,2.4000000000000004,7.6000000000000005,130.03,928,-7.9 +2013,5,4,2,30,0,0,0,2.2,6.7,124.63000000000001,928,-7.9 +2013,5,4,3,30,0,0,0,2.1,5.800000000000001,116.4,928,-7.800000000000001 +2013,5,4,4,30,0,0,0,2,5.2,106.3,928,-7.800000000000001 +2013,5,4,5,30,0,0,0,2.2,5.4,95.01,928,-7.7 +2013,5,4,6,30,93,34,481,2.7,7.7,82.89,929,-7.5 +2013,5,4,7,30,316,59,771,3.1,11.700000000000001,70.51,929,-7.6000000000000005 +2013,5,4,8,30,545,74,887,3.3000000000000003,16.1,57.88,929,-8.3 +2013,5,4,9,30,753,84,951,3.4000000000000004,19.5,45.27,929,-9 +2013,5,4,10,30,919,91,988,3.3000000000000003,21.6,33.05,929,-8.5 +2013,5,4,11,30,1027,96,1006,3.1,23.200000000000003,22.240000000000002,928,-7.800000000000001 +2013,5,4,12,30,1065,101,1004,3,24.3,16.240000000000002,927,-7.4 +2013,5,4,13,30,1038,103,995,3,25,20.06,927,-7 +2013,5,4,14,30,796,349,517,3,25.3,30.150000000000002,926,-6.9 +2013,5,4,15,30,635,276,484,3.1,25,42.15,926,-6.800000000000001 +2013,5,4,16,30,592,87,874,3.1,24.3,54.7,926,-6.7 +2013,5,4,17,30,367,70,771,3.2,23.8,67.34,926,-6.5 +2013,5,4,18,30,140,45,536,1.9000000000000001,18.8,79.8,926,-3.5 +2013,5,4,19,30,0,0,0,2,15.700000000000001,92,927,-1.7000000000000002 +2013,5,4,20,30,0,0,0,2.5,14.5,103.47,928,-2.8000000000000003 +2013,5,4,21,30,0,0,0,2.8000000000000003,13.3,113.88,929,-3.4000000000000004 +2013,5,4,22,30,0,0,0,2.6,11.9,122.61,929,-3.8000000000000003 +2013,5,4,23,30,0,0,0,2.2,10.3,128.76,930,-4 +2013,5,5,0,30,0,0,0,2,9,131.33,930,-4.1000000000000005 +2013,5,5,1,30,0,0,0,2.2,8.1,129.74,931,-4 +2013,5,5,2,30,0,0,0,2.4000000000000004,7.300000000000001,124.37,931,-3.2 +2013,5,5,3,30,0,0,0,2.3000000000000003,6.5,116.17,932,-1.8 +2013,5,5,4,30,0,0,0,2,5.6000000000000005,106.09,932,-0.30000000000000004 +2013,5,5,5,30,0,0,0,2.1,5.6000000000000005,94.83,933,0.8 +2013,5,5,6,30,89,39,397,3,7.5,82.72,933,1.5 +2013,5,5,7,30,305,73,690,3.9000000000000004,10.5,70.36,934,1.6 +2013,5,5,8,30,531,93,821,4.3,13.4,57.730000000000004,934,1.1 +2013,5,5,9,30,736,106,893,4.4,16,45.11,934,0.1 +2013,5,5,10,30,900,115,934,4.2,18.3,32.87,933,-0.8 +2013,5,5,11,30,1007,122,955,4.1000000000000005,20.3,22.01,933,-1.3 +2013,5,5,12,30,1046,123,960,4,21.900000000000002,15.96,932,-1.5 +2013,5,5,13,30,1019,127,949,3.9000000000000004,22.900000000000002,19.84,931,-1.7000000000000002 +2013,5,5,14,30,922,127,918,3.7,23.3,29.990000000000002,930,-1.9000000000000001 +2013,5,5,15,30,773,109,894,3.5,23.3,42.02,930,-2.2 +2013,5,5,16,30,578,97,831,3.3000000000000003,22.8,54.58,929,-2.3000000000000003 +2013,5,5,17,30,356,78,717,3.2,22.5,67.22,929,-2.3000000000000003 +2013,5,5,18,30,52,52,0,1.7000000000000002,18.1,79.67,929,-0.5 +2013,5,5,19,30,0,0,0,1.3,15,91.86,930,2 +2013,5,5,20,30,0,0,0,1.5,13.700000000000001,103.3,930,2 +2013,5,5,21,30,0,0,0,1.6,12.9,113.69,930,2.5 +2013,5,5,22,30,0,0,0,1.7000000000000002,12.200000000000001,122.38,931,3.1 +2013,5,5,23,30,0,0,0,1.8,11.5,128.5,931,3.5 +2013,5,6,0,30,0,0,0,1.8,10.8,131.05,930,3.8000000000000003 +2013,5,6,1,30,0,0,0,1.8,10.100000000000001,129.47,930,4 +2013,5,6,2,30,0,0,0,1.7000000000000002,9.4,124.11,930,4.3 +2013,5,6,3,30,0,0,0,1.4000000000000001,8.8,115.94,930,4.5 +2013,5,6,4,30,0,0,0,1.2000000000000002,8.4,105.89,930,4.7 +2013,5,6,5,30,0,0,0,1.3,8.9,94.65,930,5 +2013,5,6,6,30,86,43,333,1.8,10.700000000000001,82.56,931,5.2 +2013,5,6,7,30,192,134,171,2.1,13.200000000000001,70.21000000000001,931,5.5 +2013,5,6,8,30,371,227,269,2.4000000000000004,15.4,57.58,932,5.5 +2013,5,6,9,30,525,323,286,2.6,16.900000000000002,44.96,932,5.300000000000001 +2013,5,6,10,30,695,364,394,2.8000000000000003,18.2,32.7,931,5.2 +2013,5,6,11,30,773,419,381,2.8000000000000003,19.400000000000002,21.79,931,5.2 +2013,5,6,12,30,481,436,47,2.3000000000000003,20.200000000000003,15.68,931,5.6000000000000005 +2013,5,6,13,30,245,233,14,1.9000000000000001,20.900000000000002,19.62,930,6.4 +2013,5,6,14,30,160,155,6,1.8,21.400000000000002,29.84,929,7 +2013,5,6,15,30,120,120,0,2.2,21.6,41.9,929,7.300000000000001 +2013,5,6,16,30,274,243,54,2.6,21.400000000000002,54.47,928,7.2 +2013,5,6,17,30,239,156,214,2.7,21.200000000000003,67.11,928,6.9 +2013,5,6,18,30,123,69,297,1.9000000000000001,18.1,79.54,928,7.2 +2013,5,6,19,30,0,0,0,1.6,15.700000000000001,91.71000000000001,928,7.6000000000000005 +2013,5,6,20,30,0,0,0,1.7000000000000002,14.600000000000001,103.14,929,7.1000000000000005 +2013,5,6,21,30,0,0,0,1.9000000000000001,13.8,113.49000000000001,929,6.7 +2013,5,6,22,30,0,0,0,2.1,13.100000000000001,122.16,929,6.4 +2013,5,6,23,30,0,0,0,2.2,12.5,128.24,929,6.300000000000001 +2013,5,7,0,30,0,0,0,2.2,11.9,130.77,929,6.2 +2013,5,7,1,30,0,0,0,2.1,11.200000000000001,129.19,928,6.2 +2013,5,7,2,30,0,0,0,1.9000000000000001,10.600000000000001,123.86,928,6.4 +2013,5,7,3,30,0,0,0,1.8,9.9,115.72,929,6.7 +2013,5,7,4,30,0,0,0,1.7000000000000002,9.4,105.69,929,7 +2013,5,7,5,30,0,0,0,2.3000000000000003,9.9,94.48,929,7.2 +2013,5,7,6,30,89,40,369,3,12,82.41,929,7.300000000000001 +2013,5,7,7,30,298,74,654,3.8000000000000003,15.8,70.06,929,7.4 +2013,5,7,8,30,519,95,789,4.7,20,57.44,929,6.9 +2013,5,7,9,30,720,108,862,5.1000000000000005,23.3,44.81,929,6.4 +2013,5,7,10,30,878,117,902,5.2,25.700000000000003,32.53,928,6.7 +2013,5,7,11,30,980,121,924,5.2,27.5,21.580000000000002,928,7.300000000000001 +2013,5,7,12,30,1021,118,936,5.300000000000001,28.6,15.4,927,7.800000000000001 +2013,5,7,13,30,993,119,927,5.300000000000001,29.200000000000003,19.400000000000002,926,8.3 +2013,5,7,14,30,903,115,907,5.4,29.200000000000003,29.69,925,8.700000000000001 +2013,5,7,15,30,757,106,873,5.5,28.700000000000003,41.77,924,9 +2013,5,7,16,30,568,94,813,5.4,27.900000000000002,54.35,924,9 +2013,5,7,17,30,350,77,698,5.4,27.400000000000002,66.99,924,8.9 +2013,5,7,18,30,135,50,461,4,23.700000000000003,79.42,924,9 +2013,5,7,19,30,0,0,0,3.5,21.200000000000003,91.57000000000001,925,9.600000000000001 +2013,5,7,20,30,0,0,0,4.1000000000000005,20.1,102.97,925,9.5 +2013,5,7,21,30,0,0,0,4.6000000000000005,19.400000000000002,113.3,925,9.600000000000001 +2013,5,7,22,30,0,0,0,4.7,18.8,121.93,925,10 +2013,5,7,23,30,0,0,0,4.7,18.2,127.99000000000001,925,11 +2013,5,8,0,30,0,0,0,4.6000000000000005,17.6,130.5,925,12.200000000000001 +2013,5,8,1,30,0,0,0,4.2,16.900000000000002,128.93,925,13 +2013,5,8,2,30,0,0,0,3.7,16.3,123.62,924,13.600000000000001 +2013,5,8,3,30,0,0,0,3.6,15.9,115.5,924,13.9 +2013,5,8,4,30,0,0,0,3.9000000000000004,15.600000000000001,105.5,925,14.3 +2013,5,8,5,30,0,0,0,4.2,15.600000000000001,94.31,925,14.600000000000001 +2013,5,8,6,30,84,48,266,4.7,16.6,82.26,926,14.9 +2013,5,8,7,30,282,97,539,5.4,18.400000000000002,69.92,926,15.3 +2013,5,8,8,30,371,231,260,5.7,20.3,57.300000000000004,926,15.8 +2013,5,8,9,30,517,330,263,5.800000000000001,22.5,44.67,926,16 +2013,5,8,10,30,357,333,29,5.7,25,32.37,926,15.700000000000001 +2013,5,8,11,30,740,459,302,5.6000000000000005,27.3,21.37,925,15.100000000000001 +2013,5,8,12,30,741,493,256,5.5,29.3,15.13,924,14.3 +2013,5,8,13,30,903,394,538,5.4,30.8,19.19,923,13.3 +2013,5,8,14,30,606,441,189,5.2,31.400000000000002,29.54,922,12.200000000000001 +2013,5,8,15,30,717,199,693,4.9,31.3,41.65,922,11 +2013,5,8,16,30,248,229,33,4.5,30.8,54.24,921,9.8 +2013,5,8,17,30,344,92,643,4.3,30.5,66.87,921,8.700000000000001 +2013,5,8,18,30,135,54,439,3.3000000000000003,26.200000000000003,79.29,921,9.4 +2013,5,8,19,30,0,0,0,3.3000000000000003,23.3,91.42,922,9.600000000000001 +2013,5,8,20,30,0,0,0,3.6,21.8,102.81,922,9.4 +2013,5,8,21,30,0,0,0,4.1000000000000005,20.900000000000002,113.11,923,9.9 +2013,5,8,22,30,0,0,0,4.4,20.200000000000003,121.71000000000001,923,11.100000000000001 +2013,5,8,23,30,0,0,0,4.3,19.400000000000002,127.74000000000001,923,12.4 +2013,5,9,0,30,0,0,0,4.3,18.8,130.23,923,13.4 +2013,5,9,1,30,0,0,0,4.3,18.2,128.66,923,14.100000000000001 +2013,5,9,2,30,0,0,0,4,17.8,123.38000000000001,923,14.600000000000001 +2013,5,9,3,30,0,0,0,3.8000000000000003,17.7,115.29,923,15.200000000000001 +2013,5,9,4,30,0,0,0,4.1000000000000005,17.8,105.32000000000001,924,15.8 +2013,5,9,5,30,0,0,0,4.3,18,94.14,924,16.3 +2013,5,9,6,30,87,48,279,4.1000000000000005,18.5,82.11,925,16.6 +2013,5,9,7,30,258,104,448,3.9000000000000004,19.8,69.78,926,16.8 +2013,5,9,8,30,382,228,284,3.8000000000000003,21.400000000000002,57.17,926,16.7 +2013,5,9,9,30,507,334,243,3.4000000000000004,23.1,44.53,926,16.3 +2013,5,9,10,30,532,422,129,2.6,25.1,32.21,926,15.5 +2013,5,9,11,30,205,195,11,1.7000000000000002,27,21.16,925,14.100000000000001 +2013,5,9,12,30,758,488,280,1.7000000000000002,28.1,14.870000000000001,925,12.700000000000001 +2013,5,9,13,30,832,430,425,2.3000000000000003,28.3,18.98,924,12.100000000000001 +2013,5,9,14,30,94,94,0,2.9000000000000004,27.400000000000002,29.39,924,12.100000000000001 +2013,5,9,15,30,111,111,0,3.5,26.200000000000003,41.53,924,12.4 +2013,5,9,16,30,209,200,15,3.9000000000000004,25.1,54.120000000000005,923,13 +2013,5,9,17,30,344,89,645,4,24.6,66.75,923,13.600000000000001 +2013,5,9,18,30,134,55,421,2.9000000000000004,21.5,79.16,924,14.3 +2013,5,9,19,30,0,0,0,2.1,19.3,91.28,924,15.100000000000001 +2013,5,9,20,30,0,0,0,1.8,18,102.64,925,15.3 +2013,5,9,21,30,0,0,0,1.5,16.900000000000002,112.92,925,15.700000000000001 +2013,5,9,22,30,0,0,0,1.2000000000000002,16.1,121.49000000000001,926,16.1 +2013,5,9,23,30,0,0,0,0.9,15.600000000000001,127.49000000000001,926,15.600000000000001 +2013,5,10,0,30,0,0,0,0.7000000000000001,15.3,129.97,926,15.3 +2013,5,10,1,30,0,0,0,0.5,15.100000000000001,128.41,927,15.100000000000001 +2013,5,10,2,30,0,0,0,0.6000000000000001,14.9,123.14,927,14.9 +2013,5,10,3,30,0,0,0,1.4000000000000001,14.700000000000001,115.08,928,14.700000000000001 +2013,5,10,4,30,0,0,0,2.5,14.600000000000001,105.14,928,14.600000000000001 +2013,5,10,5,30,0,0,0,3.1,14.3,93.98,928,14.3 +2013,5,10,6,30,58,49,67,3.5,14.200000000000001,81.97,929,13.8 +2013,5,10,7,30,290,91,572,4.1000000000000005,14.8,69.65,929,13.3 +2013,5,10,8,30,509,112,728,4.6000000000000005,16.3,57.04,929,13 +2013,5,10,9,30,325,296,41,4.800000000000001,18.400000000000002,44.4,929,12.8 +2013,5,10,10,30,866,126,874,4.9,20.400000000000002,32.06,929,12.600000000000001 +2013,5,10,11,30,974,126,908,4.800000000000001,21.700000000000003,20.96,929,12.5 +2013,5,10,12,30,168,161,8,4.6000000000000005,22.400000000000002,14.61,929,12.200000000000001 +2013,5,10,13,30,223,212,12,4.5,22.5,18.78,928,11.9 +2013,5,10,14,30,135,133,2,4.7,22.3,29.25,928,11.4 +2013,5,10,15,30,679,254,566,4.800000000000001,22.1,41.410000000000004,928,11 +2013,5,10,16,30,234,219,25,4,21.400000000000002,54.01,928,10.5 +2013,5,10,17,30,97,97,0,3.3000000000000003,20.700000000000003,66.64,929,10.4 +2013,5,10,18,30,70,66,22,1.7000000000000002,18.2,79.04,930,10.9 +2013,5,10,19,30,0,0,0,1.2000000000000002,16.7,91.14,930,11.4 +2013,5,10,20,30,0,0,0,1.1,15.8,102.48,931,10.9 +2013,5,10,21,30,0,0,0,1.1,14.9,112.73,931,10.200000000000001 +2013,5,10,22,30,0,0,0,1.1,14.100000000000001,121.27,931,9.600000000000001 +2013,5,10,23,30,0,0,0,1.2000000000000002,13.4,127.25,931,9.200000000000001 +2013,5,11,0,30,0,0,0,1.3,12.8,129.71,932,8.9 +2013,5,11,1,30,0,0,0,1.3,12.200000000000001,128.15,932,8.700000000000001 +2013,5,11,2,30,0,0,0,1.3,11.600000000000001,122.91,932,8.700000000000001 +2013,5,11,3,30,0,0,0,1.2000000000000002,11.200000000000001,114.88,933,8.8 +2013,5,11,4,30,0,0,0,1.1,10.8,104.96000000000001,933,8.9 +2013,5,11,5,30,0,0,0,1.3,11.3,93.83,934,9 +2013,5,11,6,30,98,41,397,2,13.4,81.83,934,9.200000000000001 +2013,5,11,7,30,309,71,681,3,16.8,69.52,934,9.4 +2013,5,11,8,30,533,88,815,4,19.700000000000003,56.92,934,8.5 +2013,5,11,9,30,733,99,886,4.5,21.700000000000003,44.27,934,7.1000000000000005 +2013,5,11,10,30,893,106,926,4.7,23.400000000000002,31.92,934,6.4 +2013,5,11,11,30,997,111,947,5,24.6,20.77,933,5.9 +2013,5,11,12,30,1036,119,946,5,25.6,14.35,933,5.7 +2013,5,11,13,30,1007,119,936,4.7,26,18.580000000000002,933,5.7 +2013,5,11,14,30,666,428,273,4.4,25.900000000000002,29.11,932,5.5 +2013,5,11,15,30,767,119,862,4.3,25.400000000000002,41.29,932,5.1000000000000005 +2013,5,11,16,30,578,103,807,4.1000000000000005,24.900000000000002,53.9,932,4.5 +2013,5,11,17,30,361,82,700,3.9000000000000004,24.5,66.52,932,4 +2013,5,11,18,30,144,52,478,2.1,20.700000000000003,78.91,933,4.9 +2013,5,11,19,30,0,0,0,1.5,17.8,91,933,6.6000000000000005 +2013,5,11,20,30,0,0,0,1.5,16.6,102.32000000000001,934,6.300000000000001 +2013,5,11,21,30,0,0,0,1.5,15.8,112.54,934,6.2 +2013,5,11,22,30,0,0,0,1.4000000000000001,14.8,121.06,934,6.1000000000000005 +2013,5,11,23,30,0,0,0,1.3,14,127.01,934,6 +2013,5,12,0,30,0,0,0,1.3,13.3,129.46,934,6 +2013,5,12,1,30,0,0,0,1.3,12.600000000000001,127.91,934,6 +2013,5,12,2,30,0,0,0,1.4000000000000001,11.9,122.69,934,6.1000000000000005 +2013,5,12,3,30,0,0,0,1.5,11.3,114.68,934,6.4 +2013,5,12,4,30,0,0,0,1.7000000000000002,10.8,104.79,935,6.9 +2013,5,12,5,30,0,0,0,2.3000000000000003,11.3,93.68,936,7.4 +2013,5,12,6,30,74,49,171,3.2,13.3,81.69,936,7.7 +2013,5,12,7,30,273,96,502,3.7,16.2,69.39,937,6.9 +2013,5,12,8,30,530,100,786,3.7,19.200000000000003,56.800000000000004,937,6.300000000000001 +2013,5,12,9,30,730,115,858,3.2,21.700000000000003,44.15,937,6.800000000000001 +2013,5,12,10,30,889,124,900,2.5,23.6,31.78,936,7.300000000000001 +2013,5,12,11,30,994,133,920,2,24.900000000000002,20.59,935,7.2 +2013,5,12,12,30,988,288,722,1.7000000000000002,25.8,14.1,935,6.6000000000000005 +2013,5,12,13,30,845,431,437,1.7000000000000002,26.3,18.38,934,6 +2013,5,12,14,30,770,366,462,2,26.400000000000002,28.97,933,5.6000000000000005 +2013,5,12,15,30,623,298,431,2.5,26.1,41.17,932,5.300000000000001 +2013,5,12,16,30,524,153,628,2.9000000000000004,25.3,53.79,932,5.1000000000000005 +2013,5,12,17,30,342,80,654,3,24.8,66.41,932,5 +2013,5,12,18,30,89,71,96,2.3000000000000003,21.400000000000002,78.79,932,5.9 +2013,5,12,19,30,0,0,0,2.4000000000000004,19.1,90.86,933,7.4 +2013,5,12,20,30,0,0,0,3,18.1,102.16,934,7.4 +2013,5,12,21,30,0,0,0,3.3000000000000003,17.2,112.36,934,7.6000000000000005 +2013,5,12,22,30,0,0,0,3.4000000000000004,16.3,120.85000000000001,934,7.7 +2013,5,12,23,30,0,0,0,3.4000000000000004,15.5,126.77,934,7.800000000000001 +2013,5,13,0,30,0,0,0,3.5,14.700000000000001,129.21,934,7.800000000000001 +2013,5,13,1,30,0,0,0,3.5,14,127.67,934,7.7 +2013,5,13,2,30,0,0,0,3.4000000000000004,13.3,122.47,934,7.7 +2013,5,13,3,30,0,0,0,3.3000000000000003,12.700000000000001,114.49000000000001,934,7.7 +2013,5,13,4,30,0,0,0,3.2,12.100000000000001,104.62,935,7.4 +2013,5,13,5,30,0,0,0,3.5,12.4,93.53,935,7 +2013,5,13,6,30,106,41,446,3.8000000000000003,14.3,81.57000000000001,936,6.6000000000000005 +2013,5,13,7,30,321,68,715,4.1000000000000005,18,69.27,936,6.4 +2013,5,13,8,30,546,84,841,4.4,22.200000000000003,56.68,936,5.1000000000000005 +2013,5,13,9,30,748,93,910,4.2,25.200000000000003,44.03,935,3.1 +2013,5,13,10,30,908,100,949,4,27.200000000000003,31.650000000000002,935,2.4000000000000004 +2013,5,13,11,30,1013,104,971,4.1000000000000005,28.700000000000003,20.41,934,2 +2013,5,13,12,30,1055,103,981,4.4,29.700000000000003,13.86,934,2.1 +2013,5,13,13,30,1027,102,974,4.7,30.200000000000003,18.19,933,2.4000000000000004 +2013,5,13,14,30,936,99,956,4.9,30.200000000000003,28.830000000000002,932,2.7 +2013,5,13,15,30,789,96,918,4.800000000000001,29.700000000000003,41.06,932,2.8000000000000003 +2013,5,13,16,30,596,86,860,4.6000000000000005,28.8,53.68,932,2.8000000000000003 +2013,5,13,17,30,375,71,756,4.4,28.200000000000003,66.29,932,2.7 +2013,5,13,18,30,154,48,540,2.8000000000000003,23.700000000000003,78.67,932,3.8000000000000003 +2013,5,13,19,30,0,0,0,2.5,20.700000000000003,90.19,932,5.6000000000000005 +2013,5,13,20,30,0,0,0,3.2,19.700000000000003,102,933,5.6000000000000005 +2013,5,13,21,30,0,0,0,3.9000000000000004,19,112.18,933,5.9 +2013,5,13,22,30,0,0,0,4,18.1,120.64,933,6.6000000000000005 +2013,5,13,23,30,0,0,0,3.9000000000000004,17.2,126.54,933,7.7 +2013,5,14,0,30,0,0,0,3.8000000000000003,16.5,128.97,932,8.9 +2013,5,14,1,30,0,0,0,3.6,15.9,127.43,932,9.9 +2013,5,14,2,30,0,0,0,3.5,15.4,122.26,932,10.5 +2013,5,14,3,30,0,0,0,3.2,14.8,114.3,932,11 +2013,5,14,4,30,0,0,0,2.8000000000000003,14.200000000000001,104.46000000000001,932,11.3 +2013,5,14,5,30,0,0,0,2.9000000000000004,14.3,93.39,932,11.600000000000001 +2013,5,14,6,30,100,45,374,3.7,16.2,81.44,932,12 +2013,5,14,7,30,305,82,626,4.800000000000001,19.400000000000002,69.16,932,12.3 +2013,5,14,8,30,516,108,742,5.300000000000001,22.400000000000002,56.57,932,12.100000000000001 +2013,5,14,9,30,708,131,801,5.300000000000001,24.8,43.92,932,11.9 +2013,5,14,10,30,859,148,834,5.300000000000001,26.700000000000003,31.52,931,11.9 +2013,5,14,11,30,957,159,850,5.5,27.900000000000002,20.240000000000002,930,12.100000000000001 +2013,5,14,12,30,1004,138,892,5.800000000000001,28.400000000000002,13.620000000000001,930,12.5 +2013,5,14,13,30,977,143,877,6.1000000000000005,28.1,18,929,13 +2013,5,14,14,30,887,146,845,6.300000000000001,27.200000000000003,28.7,928,13.5 +2013,5,14,15,30,748,126,824,6.300000000000001,26.200000000000003,40.94,928,14 +2013,5,14,16,30,561,114,753,5.9,25.200000000000003,53.57,928,14.4 +2013,5,14,17,30,350,93,636,5.7,24.700000000000003,66.18,928,14.700000000000001 +2013,5,14,18,30,142,58,422,4.4,22.5,78.55,927,15 +2013,5,14,19,30,0,0,0,3.7,21.1,90.08,928,15.3 +2013,5,14,20,30,0,0,0,3.5,20.1,101.85000000000001,928,15.4 +2013,5,14,21,30,0,0,0,3.6,19.3,112,928,15.3 +2013,5,14,22,30,0,0,0,3.7,18.5,120.44,928,15.100000000000001 +2013,5,14,23,30,0,0,0,3.8000000000000003,18,126.31,928,15.100000000000001 +2013,5,15,0,30,0,0,0,3.8000000000000003,17.7,128.73,928,15.3 +2013,5,15,1,30,0,0,0,3.7,17.5,127.2,927,15.600000000000001 +2013,5,15,2,30,0,0,0,3.6,17.2,122.05,927,16.2 +2013,5,15,3,30,0,0,0,3.6,17,114.12,926,16.7 +2013,5,15,4,30,0,0,0,3.6,16.900000000000002,104.3,926,16.900000000000002 +2013,5,15,5,30,0,0,0,3.8000000000000003,17.1,93.25,926,17.1 +2013,5,15,6,30,46,46,0,4.3,17.7,81.32000000000001,926,17.5 +2013,5,15,7,30,193,144,135,5.300000000000001,19.1,69.05,926,17.900000000000002 +2013,5,15,8,30,331,247,153,6.1000000000000005,21.5,56.47,926,17.7 +2013,5,15,9,30,711,139,793,6.1000000000000005,24,43.82,925,16.8 +2013,5,15,10,30,866,143,847,5.800000000000001,26,31.400000000000002,925,15.8 +2013,5,15,11,30,968,149,872,5.5,27.6,20.080000000000002,924,14.8 +2013,5,15,12,30,654,507,151,5.2,28.900000000000002,13.39,923,14 +2013,5,15,13,30,981,146,877,4.9,30,17.82,922,13.200000000000001 +2013,5,15,14,30,891,146,848,4.6000000000000005,30.8,28.560000000000002,921,12.600000000000001 +2013,5,15,15,30,160,157,5,4.3,31.200000000000003,40.83,920,12 +2013,5,15,16,30,561,123,736,3.7,30.6,53.46,919,11.600000000000001 +2013,5,15,17,30,84,84,0,3.3000000000000003,30,66.07000000000001,919,13.200000000000001 +2013,5,15,18,30,71,69,12,2.4000000000000004,25.6,78.43,919,16.2 +2013,5,15,19,30,0,0,0,2.5,23.200000000000003,89.97,919,15.700000000000001 +2013,5,15,20,30,0,0,0,2.6,21.900000000000002,101.69,919,15 +2013,5,15,21,30,0,0,0,2.5,20.8,111.82000000000001,920,14.4 +2013,5,15,22,30,0,0,0,2.6,19.700000000000003,120.23,920,14.100000000000001 +2013,5,15,23,30,0,0,0,3.1,18.900000000000002,126.09,920,14 +2013,5,16,0,30,0,0,0,3.5,18.400000000000002,128.5,920,14.5 +2013,5,16,1,30,0,0,0,3.5,17.900000000000002,126.98,920,15.700000000000001 +2013,5,16,2,30,0,0,0,3.3000000000000003,17.400000000000002,121.85000000000001,920,16.900000000000002 +2013,5,16,3,30,0,0,0,2.9000000000000004,17.1,113.94,920,17.1 +2013,5,16,4,30,0,0,0,2.4000000000000004,16.900000000000002,104.15,920,16.900000000000002 +2013,5,16,5,30,0,0,0,2.3000000000000003,17.2,93.12,920,17.2 +2013,5,16,6,30,103,49,351,2.9000000000000004,18.5,81.21000000000001,920,17.900000000000002 +2013,5,16,7,30,309,81,635,3.3000000000000003,20.900000000000002,68.95,921,17.900000000000002 +2013,5,16,8,30,529,94,786,2.8000000000000003,23.900000000000002,56.370000000000005,921,17 +2013,5,16,9,30,729,103,867,1.9000000000000001,26.900000000000002,43.72,921,15.9 +2013,5,16,10,30,887,108,911,1.8,29.8,31.29,921,14.8 +2013,5,16,11,30,992,111,938,2.2,32.300000000000004,19.92,921,13 +2013,5,16,12,30,1033,112,945,2.3000000000000003,33.9,13.16,920,11.200000000000001 +2013,5,16,13,30,1005,111,938,2.1,34.6,17.64,920,10.700000000000001 +2013,5,16,14,30,917,107,921,1.7000000000000002,34.9,28.43,919,10.4 +2013,5,16,15,30,772,101,886,1.2000000000000002,34.7,40.72,919,10.200000000000001 +2013,5,16,16,30,584,90,828,1,34.1,53.35,919,10 +2013,5,16,17,30,369,74,724,1.2000000000000002,33.7,65.96000000000001,919,10.200000000000001 +2013,5,16,18,30,153,50,507,1.8,28.8,78.31,919,13.5 +2013,5,16,19,30,0,0,0,2.9000000000000004,26.1,89.86,919,13 +2013,5,16,20,30,0,0,0,3.8000000000000003,24.900000000000002,101.54,920,12.8 +2013,5,16,21,30,0,0,0,4.1000000000000005,23.6,111.65,921,14.3 +2013,5,16,22,30,0,0,0,4,22.400000000000002,120.04,921,15.600000000000001 +2013,5,16,23,30,0,0,0,3.8000000000000003,21.400000000000002,125.87,921,16.5 +2013,5,17,0,30,0,0,0,3.6,20.5,128.27,921,17 +2013,5,17,1,30,0,0,0,3.5,19.6,126.76,921,17.2 +2013,5,17,2,30,0,0,0,3.6,18.6,121.65,921,16.8 +2013,5,17,3,30,0,0,0,3.6,17.900000000000002,113.77,921,15.8 +2013,5,17,4,30,0,0,0,3.6,17.2,104,921,14.4 +2013,5,17,5,30,0,0,0,3.9000000000000004,17.2,92.99,922,12.600000000000001 +2013,5,17,6,30,112,43,445,4.2,19,81.10000000000001,922,11.100000000000001 +2013,5,17,7,30,328,71,713,4.1000000000000005,22.5,68.85000000000001,922,10.3 +2013,5,17,8,30,552,87,837,3.8000000000000003,26.8,56.28,922,10.3 +2013,5,17,9,30,753,98,905,3.7,30.8,43.62,922,10 +2013,5,17,10,30,913,105,944,3.9000000000000004,34.4,31.18,922,8.9 +2013,5,17,11,30,1014,109,962,4,36.9,19.77,922,6.300000000000001 +2013,5,17,12,30,1056,110,971,3.8000000000000003,38.2,12.94,921,5.300000000000001 +2013,5,17,13,30,1027,110,961,3.7,38.800000000000004,17.46,921,4.9 +2013,5,17,14,30,934,109,937,3.6,38.800000000000004,28.310000000000002,920,4.800000000000001 +2013,5,17,15,30,782,105,892,3.7,38.2,40.61,920,5.1000000000000005 +2013,5,17,16,30,586,98,816,3.7,37,53.25,920,5.800000000000001 +2013,5,17,17,30,287,150,335,3.6,36.1,65.85,919,8.3 +2013,5,17,18,30,150,58,448,3.3000000000000003,31.400000000000002,78.19,920,12.100000000000001 +2013,5,17,19,30,0,0,0,4.2,29.400000000000002,89.75,920,13.4 +2013,5,17,20,30,0,0,0,4.800000000000001,28.1,101.39,921,14.200000000000001 +2013,5,17,21,30,0,0,0,4.800000000000001,26.700000000000003,111.48,922,14.700000000000001 +2013,5,17,22,30,0,0,0,4.7,25.5,119.84,922,15.200000000000001 +2013,5,17,23,30,0,0,0,4.800000000000001,24.6,125.66,922,15.700000000000001 +2013,5,18,0,30,0,0,0,5,24.1,128.05,922,16.1 +2013,5,18,1,30,0,0,0,5.300000000000001,23.700000000000003,126.55,922,16.6 +2013,5,18,2,30,0,0,0,5.4,23.3,121.46000000000001,922,17.1 +2013,5,18,3,30,0,0,0,5.4,22.8,113.61,922,17.7 +2013,5,18,4,30,0,0,0,5.1000000000000005,22.1,103.86,922,18.3 +2013,5,18,5,30,0,0,0,5,21.700000000000003,92.87,922,18.8 +2013,5,18,6,30,104,50,342,5.2,22.700000000000003,80.99,923,19.200000000000003 +2013,5,18,7,30,308,85,615,5.800000000000001,25.200000000000003,68.75,923,19.5 +2013,5,18,8,30,312,247,117,6.2,28.5,56.19,923,19.1 +2013,5,18,9,30,629,255,516,6.300000000000001,31.3,43.53,923,17.7 +2013,5,18,10,30,769,350,489,6.6000000000000005,33.300000000000004,31.07,922,16.400000000000002 +2013,5,18,11,30,741,466,292,6.9,34.5,19.63,922,15.9 +2013,5,18,12,30,834,448,396,7.2,35.1,12.72,921,15.8 +2013,5,18,13,30,538,466,75,7.4,35.2,17.29,920,15.5 +2013,5,18,14,30,804,368,495,7.5,34.800000000000004,28.18,920,15.200000000000001 +2013,5,18,15,30,633,300,437,7.6000000000000005,34,40.5,919,15 +2013,5,18,16,30,557,134,705,7.5,33,53.14,919,14.700000000000001 +2013,5,18,17,30,354,100,618,7.5,32.4,65.74,919,14.700000000000001 +2013,5,18,18,30,147,62,410,7.2,29.1,78.07000000000001,919,15.700000000000001 +2013,5,18,19,30,0,0,0,7,27,89.63,920,17.1 +2013,5,18,20,30,0,0,0,6.9,25.6,101.24000000000001,920,18.1 +2013,5,18,21,30,0,0,0,6.800000000000001,24.700000000000003,111.31,921,18.5 +2013,5,18,22,30,0,0,0,6.6000000000000005,24.1,119.65,921,18.2 +2013,5,18,23,30,0,0,0,6.2,23.3,125.45,921,17.6 +2013,5,19,0,30,0,0,0,5.800000000000001,22.5,127.83,921,17.3 +2013,5,19,1,30,0,0,0,5.300000000000001,21.6,126.34,921,17.2 +2013,5,19,2,30,0,0,0,4.800000000000001,20.8,121.27,920,17.1 +2013,5,19,3,30,0,0,0,4.6000000000000005,20,113.45,920,17.1 +2013,5,19,4,30,0,0,0,4.6000000000000005,19.3,103.72,920,17.1 +2013,5,19,5,30,0,0,0,4.7,19.1,92.75,920,17.1 +2013,5,19,6,30,108,50,367,5.2,20.5,80.89,920,16.900000000000002 +2013,5,19,7,30,321,82,655,5.6000000000000005,23.6,68.66,920,16.2 +2013,5,19,8,30,544,97,801,5.300000000000001,27.400000000000002,56.1,920,13.4 +2013,5,19,9,30,747,104,885,5,30.8,43.44,920,9 +2013,5,19,10,30,910,109,934,5,33.1,30.98,920,4.9 +2013,5,19,11,30,1019,109,965,5.300000000000001,34.7,19.490000000000002,919,2.6 +2013,5,19,12,30,1067,105,985,5.5,35.7,12.51,919,1.5 +2013,5,19,13,30,1042,105,980,5.6000000000000005,36.2,17.12,918,0.8 +2013,5,19,14,30,951,103,960,5.5,36.300000000000004,28.060000000000002,918,0.2 +2013,5,19,15,30,804,97,928,5.4,36,40.4,917,-0.4 +2013,5,19,16,30,610,89,866,5.2,35.2,53.04,917,-1 +2013,5,19,17,30,389,76,758,5,34.6,65.63,917,-1.1 +2013,5,19,18,30,166,54,536,2.6,29.1,77.95,918,2 +2013,5,19,19,30,0,0,0,2.1,25.400000000000002,89.51,918,4.5 +2013,5,19,20,30,0,0,0,2.2,23.900000000000002,101.10000000000001,919,4.2 +2013,5,19,21,30,0,0,0,2.3000000000000003,22.900000000000002,111.14,919,4.3 +2013,5,19,22,30,0,0,0,2.6,22.200000000000003,119.46000000000001,919,5.2 +2013,5,19,23,30,0,0,0,3.1,21.6,125.24000000000001,919,7.2 +2013,5,20,0,30,0,0,0,3.8000000000000003,21.1,127.62,919,9.9 +2013,5,20,1,30,0,0,0,4,20.700000000000003,126.14,919,12.600000000000001 +2013,5,20,2,30,0,0,0,4,20.1,121.09,919,14.700000000000001 +2013,5,20,3,30,0,0,0,4,19.5,113.29,920,16.6 +2013,5,20,4,30,0,0,0,3.8000000000000003,19,103.59,920,17.8 +2013,5,20,5,30,0,0,0,3.9000000000000004,19.200000000000003,92.64,920,18.5 +2013,5,20,6,30,103,59,274,4.9,20.700000000000003,80.8,921,18.8 +2013,5,20,7,30,305,108,540,6.1000000000000005,23.5,68.58,921,19 +2013,5,20,8,30,523,128,707,6.4,26.700000000000003,56.02,921,18.6 +2013,5,20,9,30,724,134,811,6.2,29.700000000000003,43.36,921,17.1 +2013,5,20,10,30,883,138,868,5.800000000000001,32.4,30.88,920,14.600000000000001 +2013,5,20,11,30,991,138,903,5.4,34.5,19.36,920,11.8 +2013,5,20,12,30,1037,131,927,4.9,36,12.31,919,9.1 +2013,5,20,13,30,1017,126,931,4.6000000000000005,36.9,16.96,918,6.7 +2013,5,20,14,30,932,118,921,4.4,37.1,27.94,918,4.800000000000001 +2013,5,20,15,30,787,116,880,4.2,36.800000000000004,40.29,917,3.1 +2013,5,20,16,30,600,102,826,3.7,35.9,52.94,917,1.7000000000000002 +2013,5,20,17,30,385,83,728,3.5,35.4,65.52,917,0.8 +2013,5,20,18,30,166,56,521,1.3,29.6,77.84,917,6.6000000000000005 +2013,5,20,19,30,0,0,0,1.1,26.6,89.4,918,8.1 +2013,5,20,20,30,0,0,0,0.9,25.900000000000002,100.95,918,6.9 +2013,5,20,21,30,0,0,0,1.1,24.700000000000003,110.98,919,6.300000000000001 +2013,5,20,22,30,0,0,0,1.8,22.6,119.28,919,7.5 +2013,5,20,23,30,0,0,0,2.8000000000000003,21.700000000000003,125.04,919,10 +2013,5,21,0,30,0,0,0,3.9000000000000004,21.6,127.42,919,13.4 +2013,5,21,1,30,0,0,0,4.3,21.200000000000003,125.95,919,16.6 +2013,5,21,2,30,0,0,0,4.1000000000000005,20.6,120.92,919,18.5 +2013,5,21,3,30,0,0,0,3.3000000000000003,19.900000000000002,113.14,919,19 +2013,5,21,4,30,0,0,0,2.3000000000000003,19.200000000000003,103.47,919,19 +2013,5,21,5,30,0,0,0,1.7000000000000002,19.3,92.53,919,18.7 +2013,5,21,6,30,96,64,202,2.2,20.900000000000002,80.71000000000001,920,18.3 +2013,5,21,7,30,149,137,34,3.1,23.3,68.49,920,18.3 +2013,5,21,8,30,290,243,83,3.3000000000000003,25.5,55.95,921,17.8 +2013,5,21,9,30,687,211,654,3.8000000000000003,26.8,43.29,921,16.3 +2013,5,21,10,30,121,121,0,5.300000000000001,27.1,30.8,922,14.4 +2013,5,21,11,30,294,279,16,6.6000000000000005,26.400000000000002,19.23,923,12.600000000000001 +2013,5,21,12,30,727,505,227,6.800000000000001,25.8,12.11,923,10.8 +2013,5,21,13,30,1005,151,892,6.4,25.700000000000003,16.79,923,9.3 +2013,5,21,14,30,931,124,912,6.1000000000000005,25.8,27.82,923,7.800000000000001 +2013,5,21,15,30,792,100,906,5.7,25.700000000000003,40.19,923,6.800000000000001 +2013,5,21,16,30,604,87,856,5.2,25,52.83,923,6.6000000000000005 +2013,5,21,17,30,388,71,762,4.9,24.6,65.42,923,6.7 +2013,5,21,18,30,170,49,566,3.1,21.8,77.72,924,7 +2013,5,21,19,30,0,0,0,1.7000000000000002,19.400000000000002,89.28,924,7.9 +2013,5,21,20,30,0,0,0,1.3,18,100.81,925,8.5 +2013,5,21,21,30,0,0,0,1.3,17,110.82000000000001,925,8.5 +2013,5,21,22,30,0,0,0,1.3,16.2,119.10000000000001,925,8.4 +2013,5,21,23,30,0,0,0,1.3,15.600000000000001,124.85000000000001,925,8.3 +2013,5,22,0,30,0,0,0,1.4000000000000001,15,127.22,924,8.3 +2013,5,22,1,30,0,0,0,1.4000000000000001,14.5,125.76,924,8.3 +2013,5,22,2,30,0,0,0,1.4000000000000001,14,120.75,924,8.4 +2013,5,22,3,30,0,0,0,1.3,13.5,113,925,8.5 +2013,5,22,4,30,0,0,0,1.2000000000000002,13,103.34,925,8.700000000000001 +2013,5,22,5,30,0,0,0,1.6,13.8,92.43,925,8.8 +2013,5,22,6,30,123,38,520,2.1,16.3,80.62,926,8.9 +2013,5,22,7,30,336,60,751,2.9000000000000004,20.3,68.42,926,9.1 +2013,5,22,8,30,555,74,859,3.9000000000000004,24.6,55.88,926,5.800000000000001 +2013,5,22,9,30,754,84,920,4.3,27.400000000000002,43.22,926,3.5 +2013,5,22,10,30,911,91,954,4.5,29.5,30.72,926,3.2 +2013,5,22,11,30,1013,96,971,4.7,31.200000000000003,19.11,925,3.2 +2013,5,22,12,30,1053,99,975,4.9,32.5,11.92,924,3.1 +2013,5,22,13,30,1028,100,968,5,33.4,16.64,923,3.1 +2013,5,22,14,30,939,98,950,5.1000000000000005,33.9,27.7,922,3.1 +2013,5,22,15,30,796,95,916,5.1000000000000005,33.9,40.09,922,3.1 +2013,5,22,16,30,603,88,849,5,33.2,52.730000000000004,921,3.2 +2013,5,22,17,30,384,78,734,5,32.800000000000004,65.31,921,3.5 +2013,5,22,18,30,164,56,505,4.2,29,77.61,921,4.800000000000001 +2013,5,22,19,30,0,0,0,4.5,26.400000000000002,89.18,922,6.1000000000000005 +2013,5,22,20,30,0,0,0,4.9,24.700000000000003,100.67,922,7.1000000000000005 +2013,5,22,21,30,0,0,0,5,23.400000000000002,110.66,923,8.5 +2013,5,22,22,30,0,0,0,5.1000000000000005,22.6,118.92,923,10.100000000000001 +2013,5,22,23,30,0,0,0,5.1000000000000005,22.200000000000003,124.66,923,11.700000000000001 +2013,5,23,0,30,0,0,0,4.9,21.8,127.02,923,13.3 +2013,5,23,1,30,0,0,0,4.6000000000000005,21.3,125.57000000000001,924,14.700000000000001 +2013,5,23,2,30,0,0,0,4.2,20.900000000000002,120.59,924,15.8 +2013,5,23,3,30,0,0,0,4,20.5,112.86,924,17 +2013,5,23,4,30,0,0,0,3.9000000000000004,20.200000000000003,103.23,925,18.3 +2013,5,23,5,30,0,0,0,4,20.400000000000002,92.34,925,19.400000000000002 +2013,5,23,6,30,105,59,275,4.5,21.700000000000003,80.54,926,20.200000000000003 +2013,5,23,7,30,304,102,548,5.2,23.900000000000002,68.35000000000001,926,20.900000000000002 +2013,5,23,8,30,519,118,713,5.4,26.1,55.81,926,20.6 +2013,5,23,9,30,712,127,801,5.1000000000000005,27.5,43.15,926,20 +2013,5,23,10,30,865,134,850,4.9,28.400000000000002,30.64,927,20 +2013,5,23,11,30,966,138,876,5,28.8,19,926,20.400000000000002 +2013,5,23,12,30,1004,150,872,5.2,29.1,11.73,926,20.700000000000003 +2013,5,23,13,30,981,146,871,5.5,29.200000000000003,16.48,926,20.8 +2013,5,23,14,30,898,139,856,5.800000000000001,29,27.59,926,20.6 +2013,5,23,15,30,753,144,795,6,28.6,39.980000000000004,926,20.3 +2013,5,23,16,30,573,123,740,6,27.8,52.63,926,19.900000000000002 +2013,5,23,17,30,115,115,0,6.1000000000000005,27.3,65.21000000000001,925,19.5 +2013,5,23,18,30,57,57,0,5.7,24.700000000000003,77.5,925,19.5 +2013,5,23,19,30,0,0,0,4,23.1,89.06,926,19.8 +2013,5,23,20,30,0,0,0,2.7,22.1,100.53,928,20.1 +2013,5,23,21,30,0,0,0,2.7,21.700000000000003,110.51,929,20.3 +2013,5,23,22,30,0,0,0,3.5,21.3,118.75,929,20.1 +2013,5,23,23,30,0,0,0,4,20.900000000000002,124.47,929,20 +2013,5,24,0,30,0,0,0,4.1000000000000005,20.5,126.84,928,20 +2013,5,24,1,30,0,0,0,3.7,20.200000000000003,125.4,928,20 +2013,5,24,2,30,0,0,0,3.2,19.900000000000002,120.43,928,19.900000000000002 +2013,5,24,3,30,0,0,0,2.7,19.5,112.73,928,19.5 +2013,5,24,4,30,0,0,0,2.7,19.3,103.12,929,19.3 +2013,5,24,5,30,0,0,0,3,19.3,92.24,929,19.3 +2013,5,24,6,30,45,45,0,3.5,19.700000000000003,80.46000000000001,929,19.6 +2013,5,24,7,30,207,149,155,4.1000000000000005,20.8,68.28,930,19.700000000000003 +2013,5,24,8,30,369,247,215,4.2,22.200000000000003,55.75,931,19.6 +2013,5,24,9,30,490,348,194,4.1000000000000005,23.400000000000002,43.09,931,19.400000000000002 +2013,5,24,10,30,659,414,284,4,24.3,30.57,931,19.3 +2013,5,24,11,30,760,457,320,4,24.700000000000003,18.900000000000002,931,19.200000000000003 +2013,5,24,12,30,712,507,210,4.2,24.900000000000002,11.56,931,19 +2013,5,24,13,30,780,453,341,4.3,24.8,16.330000000000002,930,18.900000000000002 +2013,5,24,14,30,720,403,356,4.6000000000000005,24.5,27.48,930,19 +2013,5,24,15,30,595,346,325,4.7,24,39.89,930,19.1 +2013,5,24,16,30,452,254,325,4.7,23.400000000000002,52.53,930,19.200000000000003 +2013,5,24,17,30,213,173,94,4.7,23,65.11,930,19.200000000000003 +2013,5,24,18,30,110,80,137,3.9000000000000004,21.5,77.39,930,19.3 +2013,5,24,19,30,4,4,0,3.7,20.5,88.95,931,19.400000000000002 +2013,5,24,20,30,0,0,0,3.7,19.900000000000002,100.4,931,19.6 +2013,5,24,21,30,0,0,0,3.8000000000000003,19.400000000000002,110.35000000000001,931,19.400000000000002 +2013,5,24,22,30,0,0,0,3.6,18.8,118.59,931,18.8 +2013,5,24,23,30,0,0,0,3.4000000000000004,18.3,124.29,931,18.3 +2013,5,25,0,30,0,0,0,3.3000000000000003,18,126.66,931,18 +2013,5,25,1,30,0,0,0,3.3000000000000003,17.900000000000002,125.23,930,17.900000000000002 +2013,5,25,2,30,0,0,0,3.2,17.8,120.28,931,17.8 +2013,5,25,3,30,0,0,0,3,17.7,112.60000000000001,931,17.7 +2013,5,25,4,30,0,0,0,3.1,17.6,103.01,931,17.6 +2013,5,25,5,30,0,0,0,3.5,17.8,92.16,931,17.8 +2013,5,25,6,30,114,47,403,4.3,18.7,80.39,931,18.1 +2013,5,25,7,30,105,105,0,5.2,20,68.21000000000001,932,18 +2013,5,25,8,30,153,152,1,5.5,21.6,55.69,932,17.400000000000002 +2013,5,25,9,30,717,105,838,5.4,23.3,43.04,932,17.1 +2013,5,25,10,30,869,114,877,5.2,24.900000000000002,30.51,931,17 +2013,5,25,11,30,763,452,329,5.1000000000000005,26.400000000000002,18.8,931,17.1 +2013,5,25,12,30,1008,123,903,5,27.700000000000003,11.38,930,17.1 +2013,5,25,13,30,837,437,417,4.9,28.3,16.19,929,17.2 +2013,5,25,14,30,784,377,459,4.800000000000001,28.400000000000002,27.37,928,17.2 +2013,5,25,15,30,725,223,654,4.7,28.1,39.79,928,17.3 +2013,5,25,16,30,375,278,160,4.5,27.400000000000002,52.44,928,17.3 +2013,5,25,17,30,304,150,363,4.4,26.900000000000002,65.01,927,17.5 +2013,5,25,18,30,162,63,449,3.7,24.5,77.28,927,18.1 +2013,5,25,19,30,11,10,48,3.8000000000000003,23.1,88.84,928,18.6 +2013,5,25,20,30,0,0,0,4,22,100.26,928,19.200000000000003 +2013,5,25,21,30,0,0,0,4.1000000000000005,21.1,110.21000000000001,928,19.700000000000003 +2013,5,25,22,30,0,0,0,4.3,20.400000000000002,118.42,928,20 +2013,5,25,23,30,0,0,0,4.2,19.900000000000002,124.12,928,19.900000000000002 +2013,5,26,0,30,0,0,0,3.7,19.700000000000003,126.48,928,19.700000000000003 +2013,5,26,1,30,0,0,0,3.3000000000000003,19.5,125.06,928,19.5 +2013,5,26,2,30,0,0,0,3.5,19.400000000000002,120.14,928,19.400000000000002 +2013,5,26,3,30,0,0,0,3.8000000000000003,19.3,112.48,928,19.3 +2013,5,26,4,30,0,0,0,3.9000000000000004,19.200000000000003,102.91,928,19.200000000000003 +2013,5,26,5,30,0,0,0,3.7,19.400000000000002,92.07000000000001,928,19.400000000000002 +2013,5,26,6,30,83,59,142,4.1000000000000005,20.5,80.32000000000001,928,19.700000000000003 +2013,5,26,7,30,192,150,111,4.800000000000001,22.6,68.16,929,19.8 +2013,5,26,8,30,455,195,462,5.1000000000000005,24.8,55.64,929,19.3 +2013,5,26,9,30,715,116,819,4.9,26.700000000000003,42.99,929,18.8 +2013,5,26,10,30,868,122,865,4.9,28.3,30.45,929,18.2 +2013,5,26,11,30,969,126,889,4.800000000000001,29.6,18.71,928,17.6 +2013,5,26,12,30,1012,116,913,4.800000000000001,30.700000000000003,11.22,927,17.1 +2013,5,26,13,30,991,114,913,4.9,31.400000000000002,16.05,927,16.8 +2013,5,26,14,30,907,108,898,5,31.8,27.26,926,16.5 +2013,5,26,15,30,756,173,758,5.2,31.700000000000003,39.69,925,16.3 +2013,5,26,16,30,588,88,818,5.4,31,52.34,925,16.3 +2013,5,26,17,30,380,73,723,5.5,30.5,64.91,925,16.5 +2013,5,26,18,30,170,51,537,4.9,27.700000000000003,77.17,925,16.900000000000002 +2013,5,26,19,30,12,10,96,4.5,25.900000000000002,88.74,925,17.5 +2013,5,26,20,30,0,0,0,4.5,24.5,100.13,926,18.1 +2013,5,26,21,30,0,0,0,4.9,23.5,110.06,926,18.6 +2013,5,26,22,30,0,0,0,5.300000000000001,22.400000000000002,118.26,926,19.200000000000003 +2013,5,26,23,30,0,0,0,5.300000000000001,21.3,123.95,926,19.8 +2013,5,27,0,30,0,0,0,5.2,20.400000000000002,126.31,925,19.900000000000002 +2013,5,27,1,30,0,0,0,5.1000000000000005,19.700000000000003,124.91,925,19.700000000000003 +2013,5,27,2,30,0,0,0,4.7,19.200000000000003,120,925,19.200000000000003 +2013,5,27,3,30,0,0,0,4.3,18.8,112.37,925,18.8 +2013,5,27,4,30,0,0,0,4.1000000000000005,18.6,102.82000000000001,925,18.6 +2013,5,27,5,30,0,0,0,4.4,18.8,92,925,18.400000000000002 +2013,5,27,6,30,114,53,361,5.300000000000001,20.3,80.26,925,18.400000000000002 +2013,5,27,7,30,317,87,615,6.2,22.6,68.1,925,18.3 +2013,5,27,8,30,528,105,749,6.6000000000000005,25.3,55.59,925,18.400000000000002 +2013,5,27,9,30,720,115,826,6.7,27.700000000000003,42.94,925,18.2 +2013,5,27,10,30,872,122,869,6.6000000000000005,29.700000000000003,30.39,924,17.8 +2013,5,27,11,30,971,127,891,6.7,31.3,18.62,924,17.400000000000002 +2013,5,27,12,30,1011,123,905,6.7,32.4,11.06,923,17.2 +2013,5,27,13,30,986,127,893,6.9,33,15.91,922,17 +2013,5,27,14,30,897,130,862,7,32.9,27.16,921,16.900000000000002 +2013,5,27,15,30,760,118,833,6.9,32.2,39.6,921,17 +2013,5,27,16,30,575,114,754,6.7,30.900000000000002,52.25,920,17.1 +2013,5,27,17,30,184,165,44,6.5,30.200000000000003,64.81,920,17.3 +2013,5,27,18,30,59,59,0,5.800000000000001,27.700000000000003,77.07000000000001,921,17.5 +2013,5,27,19,30,6,6,0,5.4,26,88.63,921,17.8 +2013,5,27,20,30,0,0,0,5.300000000000001,24.6,100,922,18.1 +2013,5,27,21,30,0,0,0,5.4,23.6,109.92,922,18.2 +2013,5,27,22,30,0,0,0,5.5,22.900000000000002,118.11,922,18.3 +2013,5,27,23,30,0,0,0,5.5,22.200000000000003,123.79,922,18.6 +2013,5,28,0,30,0,0,0,5.5,21.5,126.15,922,18.900000000000002 +2013,5,28,1,30,0,0,0,5.4,20.900000000000002,124.75,922,19.1 +2013,5,28,2,30,0,0,0,5.300000000000001,20.400000000000002,119.87,922,19.200000000000003 +2013,5,28,3,30,0,0,0,5.2,20.1,112.26,922,19.1 +2013,5,28,4,30,0,0,0,5.1000000000000005,19.900000000000002,102.73,922,18.900000000000002 +2013,5,28,5,30,0,0,0,5.2,19.900000000000002,91.92,921,18.7 +2013,5,28,6,30,70,60,56,5.800000000000001,20.400000000000002,80.2,921,18.3 +2013,5,28,7,30,37,37,0,6.6000000000000005,21.700000000000003,68.05,922,17.900000000000002 +2013,5,28,8,30,80,80,0,7.4,23.400000000000002,55.550000000000004,922,17.6 +2013,5,28,9,30,84,84,0,7.4,25.3,42.9,922,17.6 +2013,5,28,10,30,457,401,65,6.9,27.400000000000002,30.34,921,16.7 +2013,5,28,11,30,303,287,17,6.5,29,18.55,921,14.5 +2013,5,28,12,30,178,169,9,6.1000000000000005,29.6,10.9,921,13 +2013,5,28,13,30,455,417,39,5.6000000000000005,28.900000000000002,15.77,920,12.9 +2013,5,28,14,30,255,243,14,5.7,27.8,27.05,920,13.9 +2013,5,28,15,30,634,313,415,6.2,26.8,39.5,920,15.4 +2013,5,28,16,30,241,227,24,6.5,26.1,52.15,919,17 +2013,5,28,17,30,170,158,28,6.4,25.700000000000003,64.71000000000001,919,17.900000000000002 +2013,5,28,18,30,77,76,5,5.9,24.700000000000003,76.96000000000001,919,18.2 +2013,5,28,19,30,8,8,0,5.7,23.700000000000003,88.53,919,18.3 +2013,5,28,20,30,0,0,0,5.7,23,99.88,919,18.400000000000002 +2013,5,28,21,30,0,0,0,5.800000000000001,22.5,109.78,919,18.6 +2013,5,28,22,30,0,0,0,6.2,22,117.96000000000001,919,18.900000000000002 +2013,5,28,23,30,0,0,0,6.6000000000000005,21.6,123.63000000000001,919,19.400000000000002 +2013,5,29,0,30,0,0,0,6.800000000000001,21.200000000000003,125.99000000000001,919,19.700000000000003 +2013,5,29,1,30,0,0,0,6.5,21,124.61,919,19.700000000000003 +2013,5,29,2,30,0,0,0,6.1000000000000005,20.8,119.75,919,19.700000000000003 +2013,5,29,3,30,0,0,0,5.7,20.700000000000003,112.16,919,19.6 +2013,5,29,4,30,0,0,0,5.4,20.6,102.65,919,19.5 +2013,5,29,5,30,0,0,0,5.4,20.700000000000003,91.86,919,19.400000000000002 +2013,5,29,6,30,78,61,98,5.9,21.3,80.14,919,19.400000000000002 +2013,5,29,7,30,212,151,163,6.7,22.5,68.01,919,19.3 +2013,5,29,8,30,326,253,129,7.4,24.1,55.51,919,19.1 +2013,5,29,9,30,446,350,130,7.5,25.6,42.86,919,19 +2013,5,29,10,30,851,151,811,7.4,26.700000000000003,30.3,918,19 +2013,5,29,11,30,949,163,828,7.1000000000000005,27.8,18.47,918,18.8 +2013,5,29,12,30,986,173,828,7,29.1,10.76,917,18.400000000000002 +2013,5,29,13,30,454,417,39,7,30.200000000000003,15.64,917,17.900000000000002 +2013,5,29,14,30,640,449,214,7.1000000000000005,30.8,26.95,916,17.5 +2013,5,29,15,30,541,373,217,7.2,30.700000000000003,39.410000000000004,916,17.1 +2013,5,29,16,30,567,135,703,7.4,30.3,52.06,915,16.6 +2013,5,29,17,30,366,106,607,7.5,30,64.62,915,16.400000000000002 +2013,5,29,18,30,163,69,412,7.300000000000001,27.6,76.86,915,16.6 +2013,5,29,19,30,12,11,40,7.4,25.900000000000002,88.43,916,17.2 +2013,5,29,20,30,0,0,0,7.5,24.700000000000003,99.76,917,18.1 +2013,5,29,21,30,0,0,0,7.5,23.700000000000003,109.65,918,19 +2013,5,29,22,30,0,0,0,7.4,22.8,117.81,918,19.6 +2013,5,29,23,30,0,0,0,7,22,123.48,918,20 +2013,5,30,0,30,0,0,0,6.7,21.400000000000002,125.84,918,20.3 +2013,5,30,1,30,0,0,0,6.300000000000001,20.900000000000002,124.47,918,20.3 +2013,5,30,2,30,0,0,0,6.2,20.6,119.63,918,20.1 +2013,5,30,3,30,0,0,0,6.2,20.400000000000002,112.06,918,19.900000000000002 +2013,5,30,4,30,0,0,0,5.9,20.200000000000003,102.57000000000001,919,19.8 +2013,5,30,5,30,0,0,0,5.9,20.5,91.8,919,19.700000000000003 +2013,5,30,6,30,113,59,312,6.4,21.8,80.10000000000001,920,19.700000000000003 +2013,5,30,7,30,205,152,141,6.9,23.900000000000002,67.97,920,19.6 +2013,5,30,8,30,531,109,744,6.7,26.5,55.480000000000004,920,19.3 +2013,5,30,9,30,726,115,834,6.2,29.1,42.83,920,18.7 +2013,5,30,10,30,882,119,883,5.6000000000000005,31.400000000000002,30.26,920,17.5 +2013,5,30,11,30,986,122,911,5.2,33.4,18.41,920,16 +2013,5,30,12,30,1029,125,920,4.800000000000001,34.800000000000004,10.620000000000001,919,14.3 +2013,5,30,13,30,1009,122,921,4.7,35.7,15.52,918,12.600000000000001 +2013,5,30,14,30,927,114,911,4.7,36,26.85,918,11.100000000000001 +2013,5,30,15,30,744,206,695,4.6000000000000005,35.9,39.32,917,9.3 +2013,5,30,16,30,605,92,832,4.3,35.2,51.97,917,7.5 +2013,5,30,17,30,403,73,766,4.1000000000000005,34.7,64.52,917,6.5 +2013,5,30,18,30,186,51,590,2.3000000000000003,29.6,76.76,918,10.5 +2013,5,30,19,30,17,13,128,2.4000000000000004,26.3,88.33,919,11.600000000000001 +2013,5,30,20,30,0,0,0,3.2,24.900000000000002,99.64,919,11.200000000000001 +2013,5,30,21,30,0,0,0,4.3,24.200000000000003,109.52,920,12.5 +2013,5,30,22,30,0,0,0,5.1000000000000005,23.400000000000002,117.67,920,14.5 +2013,5,30,23,30,0,0,0,5.300000000000001,22.5,123.33,920,16.400000000000002 +2013,5,31,0,30,0,0,0,5.4,21.8,125.69,921,17.900000000000002 +2013,5,31,1,30,0,0,0,5.4,21.400000000000002,124.34,921,19 +2013,5,31,2,30,0,0,0,5.5,21.200000000000003,119.52,921,19.8 +2013,5,31,3,30,0,0,0,5.5,20.8,111.97,921,20.200000000000003 +2013,5,31,4,30,0,0,0,5.300000000000001,20.400000000000002,102.5,921,20.400000000000002 +2013,5,31,5,30,0,0,0,5.5,20.5,91.74,921,20.400000000000002 +2013,5,31,6,30,122,51,407,6.300000000000001,22,80.05,922,20.3 +2013,5,31,7,30,329,80,664,7,24.700000000000003,67.94,922,20.200000000000003 +2013,5,31,8,30,543,95,790,7.1000000000000005,27.8,55.45,922,19.900000000000002 +2013,5,31,9,30,737,106,860,6.9,30.6,42.800000000000004,922,19.1 +2013,5,31,10,30,890,114,899,6.6000000000000005,33.1,30.23,921,17.900000000000002 +2013,5,31,11,30,989,118,918,6.4,35.1,18.35,921,16.7 +2013,5,31,12,30,1032,114,934,6.300000000000001,36.5,10.48,920,15.600000000000001 +2013,5,31,13,30,1009,115,927,6.300000000000001,37.4,15.39,919,14.600000000000001 +2013,5,31,14,30,923,113,906,6.300000000000001,37.7,26.75,918,13.5 +2013,5,31,15,30,782,108,870,6.2,37.6,39.230000000000004,918,12.5 +2013,5,31,16,30,598,99,808,6,37,51.88,917,11.600000000000001 +2013,5,31,17,30,389,83,707,5.800000000000001,36.5,64.43,917,11.5 +2013,5,31,18,30,176,58,511,5.300000000000001,32.9,76.67,917,13.100000000000001 +2013,5,31,19,30,16,13,87,5.6000000000000005,30.5,88.23,917,15.200000000000001 +2013,5,31,20,30,0,0,0,6,29,99.52,918,17.2 +2013,5,31,21,30,0,0,0,6.1000000000000005,27.8,109.39,918,18.6 +2013,5,31,22,30,0,0,0,6.2,26.900000000000002,117.53,919,19.5 +2013,5,31,23,30,0,0,0,6.4,26,123.19,919,20.1 +2013,6,1,0,30,0,0,0,6.6000000000000005,25.200000000000003,125.55,919,20.200000000000003 +2013,6,1,1,30,0,0,0,6.800000000000001,24.3,124.21000000000001,919,20.1 +2013,6,1,2,30,0,0,0,6.5,23.5,119.41,919,20 +2013,6,1,3,30,0,0,0,5.5,22.700000000000003,111.88,920,20 +2013,6,1,4,30,0,0,0,3.9000000000000004,21.900000000000002,102.43,920,20 +2013,6,1,5,30,0,0,0,2.9000000000000004,21.900000000000002,91.69,921,20 +2013,6,1,6,30,119,51,394,3,23.400000000000002,80.01,922,19.700000000000003 +2013,6,1,7,30,321,84,629,3.2,25.5,67.91,923,19.200000000000003 +2013,6,1,8,30,239,220,34,3.5,27.400000000000002,55.43,924,18.8 +2013,6,1,9,30,634,260,510,4.3,28.8,42.78,924,18.1 +2013,6,1,10,30,872,134,854,5.4,29.6,30.2,925,17.2 +2013,6,1,11,30,805,424,402,6.1000000000000005,30.3,18.29,925,16.1 +2013,6,1,12,30,949,404,554,6.300000000000001,30.900000000000002,10.36,925,15 +2013,6,1,13,30,950,342,630,6.300000000000001,31.200000000000003,15.27,925,13.8 +2013,6,1,14,30,905,151,844,6.2,31.200000000000003,26.66,925,12.8 +2013,6,1,15,30,767,144,802,5.9,30.8,39.14,925,11.8 +2013,6,1,16,30,590,122,757,5.6000000000000005,30,51.800000000000004,925,10.700000000000001 +2013,6,1,17,30,384,95,667,5.4,29.400000000000002,64.34,925,9.8 +2013,6,1,18,30,177,63,492,3.8000000000000003,26.3,76.57000000000001,926,8.9 +2013,6,1,19,30,17,14,85,2.7,23.700000000000003,88.12,927,8.8 +2013,6,1,20,30,0,0,0,2.4000000000000004,21.900000000000002,99.41,928,8.6 +2013,6,1,21,30,0,0,0,2.4000000000000004,20.900000000000002,109.27,928,8.3 +2013,6,1,22,30,0,0,0,2.2,19.8,117.4,929,8.4 +2013,6,1,23,30,0,0,0,2,18.900000000000002,123.05,929,8.6 +2013,6,2,0,30,0,0,0,1.9000000000000001,18.1,125.42,929,8.8 +2013,6,2,1,30,0,0,0,1.9000000000000001,17.5,124.09,929,9 +2013,6,2,2,30,0,0,0,1.9000000000000001,16.8,119.31,929,9.1 +2013,6,2,3,30,0,0,0,1.9000000000000001,16.2,111.8,929,9.3 +2013,6,2,4,30,0,0,0,1.9000000000000001,15.600000000000001,102.37,930,9.700000000000001 +2013,6,2,5,30,0,0,0,2.5,15.9,91.64,931,10.200000000000001 +2013,6,2,6,30,127,46,463,3.6,18,79.97,932,10.700000000000001 +2013,6,2,7,30,336,74,697,4.6000000000000005,20.900000000000002,67.88,932,10.700000000000001 +2013,6,2,8,30,552,89,814,4.800000000000001,23.400000000000002,55.4,932,10 +2013,6,2,9,30,747,98,884,4.4,25.400000000000002,42.76,932,9.700000000000001 +2013,6,2,10,30,901,102,924,3.8000000000000003,27.3,30.17,931,9.4 +2013,6,2,11,30,1005,104,949,3.3000000000000003,28.8,18.240000000000002,931,9.1 +2013,6,2,12,30,1043,108,951,2.9000000000000004,30.1,10.24,930,8.700000000000001 +2013,6,2,13,30,1018,105,947,2.5,31,15.16,929,8.4 +2013,6,2,14,30,934,102,930,2.2,31.400000000000002,26.57,928,8.1 +2013,6,2,15,30,792,100,891,1.9000000000000001,31.5,39.050000000000004,927,7.7 +2013,6,2,16,30,608,92,833,1.9000000000000001,31.1,51.71,927,7.300000000000001 +2013,6,2,17,30,398,78,735,2,30.700000000000003,64.25,926,6.9 +2013,6,2,18,30,184,56,550,1.5,27.1,76.47,926,8.1 +2013,6,2,19,30,18,14,129,1.5,24.3,88.03,926,10.700000000000001 +2013,6,2,20,30,0,0,0,2.1,23.200000000000003,99.3,926,9.5 +2013,6,2,21,30,0,0,0,3,22.700000000000003,109.15,925,8.8 +2013,6,2,22,30,0,0,0,3.1,21.700000000000003,117.28,925,8.700000000000001 +2013,6,2,23,30,0,0,0,2.1,20.400000000000002,122.92,926,9.4 +2013,6,3,0,30,0,0,0,1.4000000000000001,19.3,125.3,927,10.4 +2013,6,3,1,30,0,0,0,1.9000000000000001,18.6,123.98,928,10.700000000000001 +2013,6,3,2,30,0,0,0,2.7,18.2,119.22,927,10.600000000000001 +2013,6,3,3,30,0,0,0,3,17.900000000000002,111.73,927,10.9 +2013,6,3,4,30,0,0,0,3,17.5,102.31,927,11.4 +2013,6,3,5,30,0,0,0,3.4000000000000004,17.900000000000002,91.60000000000001,927,11.8 +2013,6,3,6,30,85,61,135,4.1000000000000005,19.6,79.95,927,11.9 +2013,6,3,7,30,231,148,222,4.4,22.200000000000003,67.86,927,11.700000000000001 +2013,6,3,8,30,369,250,208,4.6000000000000005,25,55.39,927,11.700000000000001 +2013,6,3,9,30,561,327,319,4.7,27.5,42.74,927,13.600000000000001 +2013,6,3,10,30,870,130,856,4.800000000000001,29.5,30.150000000000002,926,15.100000000000001 +2013,6,3,11,30,908,379,557,4.7,30.8,18.2,925,15.600000000000001 +2013,6,3,12,30,1011,126,899,4.4,31.5,10.13,924,15.700000000000001 +2013,6,3,13,30,987,128,889,4.2,32,15.05,923,15.8 +2013,6,3,14,30,903,127,867,4.2,32.5,26.48,923,16 +2013,6,3,15,30,768,116,839,4.4,33,38.97,922,16.1 +2013,6,3,16,30,589,106,779,4.5,33,51.620000000000005,922,16.1 +2013,6,3,17,30,383,92,668,4.5,32.9,64.16,922,16.1 +2013,6,3,18,30,175,66,464,3.6,30.400000000000002,76.38,922,16.2 +2013,6,3,19,30,17,15,79,3.5,28.3,87.94,922,16.6 +2013,6,3,20,30,0,0,0,4.1000000000000005,27.1,99.19,923,16.7 +2013,6,3,21,30,0,0,0,4.4,26.1,109.03,923,16.900000000000002 +2013,6,3,22,30,0,0,0,4.3,25,117.15,923,17.2 +2013,6,3,23,30,0,0,0,4.3,24,122.8,923,17.5 +2013,6,4,0,30,0,0,0,4.4,23,125.18,923,17.5 +2013,6,4,1,30,0,0,0,4.4,22.1,123.87,923,17.400000000000002 +2013,6,4,2,30,0,0,0,4.2,21.3,119.13,923,17 +2013,6,4,3,30,0,0,0,4,20.700000000000003,111.66,923,16.5 +2013,6,4,4,30,0,0,0,3.8000000000000003,20.3,102.26,923,16.2 +2013,6,4,5,30,0,0,0,4,20.5,91.56,923,16 +2013,6,4,6,30,120,51,392,4.9,22.400000000000002,79.92,923,16.1 +2013,6,4,7,30,320,83,629,5.9,25.5,67.84,923,16.8 +2013,6,4,8,30,531,102,755,6.1000000000000005,29,55.38,923,16.900000000000002 +2013,6,4,9,30,722,115,826,5.800000000000001,32,42.730000000000004,923,16.6 +2013,6,4,10,30,875,124,869,5.5,34.4,30.14,922,16.3 +2013,6,4,11,30,976,127,893,5.2,36.300000000000004,18.17,922,16.2 +2013,6,4,12,30,1024,112,926,5.1000000000000005,37.7,10.02,921,16 +2013,6,4,13,30,1000,111,920,5.1000000000000005,38.6,14.94,920,15.600000000000001 +2013,6,4,14,30,914,108,901,5.2,39,26.39,919,15.3 +2013,6,4,15,30,723,250,608,5.2,38.900000000000006,38.89,919,14.9 +2013,6,4,16,30,596,92,810,5.2,38.300000000000004,51.54,918,14.4 +2013,6,4,17,30,389,79,709,5.2,37.800000000000004,64.07000000000001,918,14.4 +2013,6,4,18,30,180,57,520,5.300000000000001,34.1,76.29,919,15.700000000000001 +2013,6,4,19,30,19,14,118,5.6000000000000005,31.6,87.85000000000001,919,16.3 +2013,6,4,20,30,0,0,0,6,29.8,99.08,920,16.5 +2013,6,4,21,30,0,0,0,5.9,28.3,108.92,921,16.2 +2013,6,4,22,30,0,0,0,5.800000000000001,26.700000000000003,117.04,921,15.4 +2013,6,4,23,30,0,0,0,5.7,25.200000000000003,122.68,922,14.600000000000001 +2013,6,5,0,30,0,0,0,5.7,24,125.06,922,14.200000000000001 +2013,6,5,1,30,0,0,0,5.5,23,123.77,922,14.100000000000001 +2013,6,5,2,30,0,0,0,5.300000000000001,22.200000000000003,119.05,922,14.4 +2013,6,5,3,30,0,0,0,5,21.5,111.60000000000001,922,14.9 +2013,6,5,4,30,0,0,0,4.6000000000000005,20.8,102.22,922,15.5 +2013,6,5,5,30,0,0,0,4.6000000000000005,20.6,91.53,923,16.1 +2013,6,5,6,30,84,62,128,5.4,22,79.9,923,16.6 +2013,6,5,7,30,284,115,447,5.9,24.6,67.83,923,16.7 +2013,6,5,8,30,512,126,678,5.7,27.700000000000003,55.370000000000005,923,16.5 +2013,6,5,9,30,508,348,219,5.2,30.700000000000003,42.730000000000004,923,16 +2013,6,5,10,30,880,116,883,4.7,33.300000000000004,30.13,923,15.600000000000001 +2013,6,5,11,30,977,122,900,4.3,35.2,18.13,922,15.3 +2013,6,5,12,30,1018,119,913,4,36.4,9.92,922,15.3 +2013,6,5,13,30,992,119,903,3.8000000000000003,37,14.83,921,15.4 +2013,6,5,14,30,907,118,880,3.7,37,26.3,921,15.600000000000001 +2013,6,5,15,30,767,113,839,3.8000000000000003,36.300000000000004,38.800000000000004,920,15.8 +2013,6,5,16,30,586,106,770,3.8000000000000003,35.1,51.46,920,16 +2013,6,5,17,30,380,94,653,3.7,34.300000000000004,63.99,920,16.5 +2013,6,5,18,30,173,70,432,2.2,29.900000000000002,76.2,921,18.8 +2013,6,5,19,30,14,14,0,2.1,27.200000000000003,87.76,922,20 +2013,6,5,20,30,0,0,0,2.5,25.700000000000003,98.98,922,19 +2013,6,5,21,30,0,0,0,2.3000000000000003,24.200000000000003,108.81,923,18.3 +2013,6,5,22,30,0,0,0,1.6,22.8,116.92,924,18.3 +2013,6,5,23,30,0,0,0,1.5,21.8,122.56,924,18.900000000000002 +2013,6,6,0,30,0,0,0,1.9000000000000001,21.200000000000003,124.96000000000001,925,19.200000000000003 +2013,6,6,1,30,0,0,0,2.1,20.6,123.68,924,19.3 +2013,6,6,2,30,0,0,0,2.2,20.1,118.97,924,19.400000000000002 +2013,6,6,3,30,0,0,0,2.4000000000000004,19.6,111.54,925,19.400000000000002 +2013,6,6,4,30,0,0,0,2.7,19.1,102.17,925,19.1 +2013,6,6,5,30,0,0,0,3.4000000000000004,18.900000000000002,91.5,925,18.900000000000002 +2013,6,6,6,30,115,61,307,4.4,19.3,79.88,926,18.900000000000002 +2013,6,6,7,30,308,111,524,4.9,20.5,67.82000000000001,926,18.400000000000002 +2013,6,6,8,30,512,145,646,4.9,22.200000000000003,55.36,927,17.8 +2013,6,6,9,30,698,168,721,4.9,23.900000000000002,42.72,927,17.400000000000002 +2013,6,6,10,30,678,407,313,4.800000000000001,25.5,30.12,927,17.2 +2013,6,6,11,30,762,457,321,4.7,26.8,18.11,927,17 +2013,6,6,12,30,614,503,112,4.7,27.8,9.83,926,16.8 +2013,6,6,13,30,744,485,268,4.7,28.200000000000003,14.73,926,16.6 +2013,6,6,14,30,572,451,134,4.7,28.200000000000003,26.21,926,16.5 +2013,6,6,15,30,478,377,129,4.5,27.700000000000003,38.72,925,16.2 +2013,6,6,16,30,583,128,728,4.3,26.8,51.38,925,16 +2013,6,6,17,30,278,179,227,4.2,26.200000000000003,63.910000000000004,925,15.700000000000001 +2013,6,6,18,30,176,70,440,3.5,24,76.11,926,15.5 +2013,6,6,19,30,19,15,87,2.8000000000000003,22.400000000000002,87.67,926,15.600000000000001 +2013,6,6,20,30,0,0,0,2.5,21.200000000000003,98.89,927,15.8 +2013,6,6,21,30,0,0,0,2.3000000000000003,20.400000000000002,108.71000000000001,928,15.700000000000001 +2013,6,6,22,30,0,0,0,2,19.6,116.82000000000001,928,15.700000000000001 +2013,6,6,23,30,0,0,0,1.7000000000000002,18.900000000000002,122.46000000000001,928,15.600000000000001 +2013,6,7,0,30,0,0,0,1.4000000000000001,18.2,124.86,928,15.5 +2013,6,7,1,30,0,0,0,1,17.5,123.60000000000001,928,15.5 +2013,6,7,2,30,0,0,0,0.8,16.900000000000002,118.91,929,15.5 +2013,6,7,3,30,0,0,0,0.7000000000000001,16.5,111.49000000000001,929,15.5 +2013,6,7,4,30,0,0,0,0.6000000000000001,16.1,102.14,929,15.5 +2013,6,7,5,30,0,0,0,0.7000000000000001,16.7,91.48,929,15.5 +2013,6,7,6,30,79,62,96,1.3,18.7,79.87,929,15.4 +2013,6,7,7,30,234,147,232,1.9000000000000001,21.1,67.81,929,13.9 +2013,6,7,8,30,372,249,216,2.3000000000000003,23.5,55.36,929,12.4 +2013,6,7,9,30,491,350,193,2.5,25.5,42.730000000000004,929,11.4 +2013,6,7,10,30,691,399,338,2.5,27.3,30.12,929,10.700000000000001 +2013,6,7,11,30,732,473,273,2.5,28.6,18.09,928,10.3 +2013,6,7,12,30,857,458,405,2.4000000000000004,29.6,9.75,928,10 +2013,6,7,13,30,766,476,300,2.4000000000000004,30.200000000000003,14.64,927,9.8 +2013,6,7,14,30,746,388,398,2.5,30.400000000000002,26.13,926,9.700000000000001 +2013,6,7,15,30,763,182,744,2.7,30.200000000000003,38.65,926,9.600000000000001 +2013,6,7,16,30,608,92,825,2.8000000000000003,29.700000000000003,51.300000000000004,926,9.3 +2013,6,7,17,30,401,77,734,2.8000000000000003,29.3,63.83,925,9.1 +2013,6,7,18,30,191,54,568,2.4000000000000004,26.1,76.03,925,9.600000000000001 +2013,6,7,19,30,23,16,171,2.7,23.700000000000003,87.58,925,11.200000000000001 +2013,6,7,20,30,0,0,0,3.6,22.6,98.79,925,10.4 +2013,6,7,21,30,0,0,0,3.3000000000000003,21.5,108.61,925,10.5 +2013,6,7,22,30,0,0,0,2.5,20.200000000000003,116.71000000000001,926,11.100000000000001 +2013,6,7,23,30,0,0,0,2.5,19.3,122.36,926,11.5 +2013,6,8,0,30,0,0,0,3.1,18.8,124.76,927,11.700000000000001 +2013,6,8,1,30,0,0,0,3.5,18.2,123.52,927,12.100000000000001 +2013,6,8,2,30,0,0,0,3.4000000000000004,17.5,118.84,926,12.9 +2013,6,8,3,30,0,0,0,3.1,16.900000000000002,111.45,926,13.700000000000001 +2013,6,8,4,30,0,0,0,3,16.5,102.11,925,14.3 +2013,6,8,5,30,0,0,0,3.2,16.8,91.46000000000001,925,14.8 +2013,6,8,6,30,69,61,41,3.9000000000000004,18.7,79.86,925,15.200000000000001 +2013,6,8,7,30,268,128,372,4.800000000000001,21.5,67.81,925,14.700000000000001 +2013,6,8,8,30,290,245,79,5.4,24,55.370000000000005,925,13.200000000000001 +2013,6,8,9,30,456,351,143,5.5,25.8,42.730000000000004,925,13.200000000000001 +2013,6,8,10,30,487,414,84,5.5,27,30.12,925,14.200000000000001 +2013,6,8,11,30,827,430,418,5.4,27.6,18.07,924,15.200000000000001 +2013,6,8,12,30,885,469,422,5.4,27.5,9.67,924,16.1 +2013,6,8,13,30,825,439,399,5.300000000000001,26.8,14.540000000000001,923,16.900000000000002 +2013,6,8,14,30,744,391,393,5.2,26,26.05,922,17.6 +2013,6,8,15,30,766,120,825,5,25.6,38.57,922,18.1 +2013,6,8,16,30,591,105,775,4.7,25.400000000000002,51.22,922,18.5 +2013,6,8,17,30,389,86,684,4.5,25.3,63.75,921,18.8 +2013,6,8,18,30,184,61,509,3.1,23.5,75.95,922,19.400000000000002 +2013,6,8,19,30,22,17,125,2.8000000000000003,22.1,87.5,922,19.8 +2013,6,8,20,30,0,0,0,3.2,21.3,98.7,923,19.6 +2013,6,8,21,30,0,0,0,3.6,20.8,108.52,923,19.5 +2013,6,8,22,30,0,0,0,3.7,20.200000000000003,116.62,923,19.5 +2013,6,8,23,30,0,0,0,3.5,19.8,122.26,923,19.6 +2013,6,9,0,30,0,0,0,3.1,19.400000000000002,124.68,923,19.400000000000002 +2013,6,9,1,30,0,0,0,2.5,19.3,123.44,923,19.3 +2013,6,9,2,30,0,0,0,2,19.1,118.79,924,19.1 +2013,6,9,3,30,0,0,0,1.7000000000000002,18.8,111.41,924,18.8 +2013,6,9,4,30,0,0,0,1.9000000000000001,18.7,102.09,924,18.7 +2013,6,9,5,30,0,0,0,2.5,18.900000000000002,91.45,925,18.900000000000002 +2013,6,9,6,30,28,28,0,2.9000000000000004,19.8,79.86,926,19.5 +2013,6,9,7,30,275,122,405,3,21.6,67.81,926,19.8 +2013,6,9,8,30,527,107,739,2.7,24,55.370000000000005,926,19.8 +2013,6,9,9,30,579,315,358,2.1,26.3,42.74,926,19.5 +2013,6,9,10,30,878,116,881,1.9000000000000001,28.3,30.13,926,18.900000000000002 +2013,6,9,11,30,982,118,909,2.1,29.700000000000003,18.06,926,18.3 +2013,6,9,12,30,1028,107,934,2.4000000000000004,30.700000000000003,9.6,926,17.8 +2013,6,9,13,30,1008,103,935,2.6,31.400000000000002,14.450000000000001,926,17.2 +2013,6,9,14,30,927,98,922,2.8000000000000003,31.700000000000003,25.98,925,16.6 +2013,6,9,15,30,793,91,897,2.9000000000000004,31.6,38.5,925,16.1 +2013,6,9,16,30,613,81,847,2.9000000000000004,31,51.15,925,15.5 +2013,6,9,17,30,407,69,762,2.9000000000000004,30.6,63.67,925,15 +2013,6,9,18,30,196,50,597,1.7000000000000002,27.3,75.87,925,15.9 +2013,6,9,19,30,25,16,193,1.3,24.6,87.43,926,17.400000000000002 +2013,6,9,20,30,0,0,0,1.4000000000000001,23.200000000000003,98.62,927,16.400000000000002 +2013,6,9,21,30,0,0,0,1.5,22.400000000000002,108.43,927,16 +2013,6,9,22,30,0,0,0,1.6,21.700000000000003,116.53,928,15.8 +2013,6,9,23,30,0,0,0,1.9000000000000001,21.200000000000003,122.17,928,15.700000000000001 +2013,6,10,0,30,0,0,0,2.2,20.700000000000003,124.59,928,15.9 +2013,6,10,1,30,0,0,0,2.6,20.200000000000003,123.38000000000001,927,16.3 +2013,6,10,2,30,0,0,0,2.8000000000000003,19.700000000000003,118.74000000000001,927,17 +2013,6,10,3,30,0,0,0,2.7,19.200000000000003,111.38,927,17.7 +2013,6,10,4,30,0,0,0,2.6,18.6,102.07000000000001,927,18.400000000000002 +2013,6,10,5,30,0,0,0,3.1,19.200000000000003,91.44,927,18.8 +2013,6,10,6,30,131,43,502,3.8000000000000003,21.5,79.86,928,19.200000000000003 +2013,6,10,7,30,340,65,728,4.3,24.5,67.82000000000001,928,19.400000000000002 +2013,6,10,8,30,554,78,838,4.5,27.3,55.38,928,18.5 +2013,6,10,9,30,747,87,900,4.5,29.5,42.75,928,17.2 +2013,6,10,10,30,900,92,934,4.4,31.400000000000002,30.14,928,16.1 +2013,6,10,11,30,1003,95,955,4.3,32.9,18.06,928,15.100000000000001 +2013,6,10,12,30,1042,98,957,4.2,33.9,9.540000000000001,927,14.5 +2013,6,10,13,30,1021,98,953,4.1000000000000005,34.5,14.370000000000001,927,14.100000000000001 +2013,6,10,14,30,939,95,938,3.9000000000000004,34.7,25.900000000000002,926,13.8 +2013,6,10,15,30,799,94,900,3.9000000000000004,34.4,38.42,925,13.3 +2013,6,10,16,30,620,86,850,3.9000000000000004,33.6,51.08,925,12.700000000000001 +2013,6,10,17,30,411,73,762,3.9000000000000004,33.1,63.6,925,12.200000000000001 +2013,6,10,18,30,199,53,596,2.7,29.1,75.79,926,13.100000000000001 +2013,6,10,19,30,26,17,184,2.7,26.400000000000002,87.35000000000001,926,13.600000000000001 +2013,6,10,20,30,0,0,0,3.4000000000000004,25.200000000000003,98.53,927,12.4 +2013,6,10,21,30,0,0,0,3.8000000000000003,24.3,108.34,927,12 +2013,6,10,22,30,0,0,0,3.8000000000000003,23.200000000000003,116.44,927,12.3 +2013,6,10,23,30,0,0,0,3.6,22.3,122.09,927,12.9 +2013,6,11,0,30,0,0,0,3.5,21.6,124.52,927,13.700000000000001 +2013,6,11,1,30,0,0,0,3.3000000000000003,21,123.32000000000001,927,14.3 +2013,6,11,2,30,0,0,0,3.1,20.6,118.7,928,14.8 +2013,6,11,3,30,0,0,0,2.8000000000000003,20.1,111.35000000000001,928,15.200000000000001 +2013,6,11,4,30,0,0,0,2.4000000000000004,19.6,102.05,928,15.600000000000001 +2013,6,11,5,30,0,0,0,2.8000000000000003,20.1,91.44,928,16.2 +2013,6,11,6,30,126,49,438,3.8000000000000003,22.3,79.86,929,17 +2013,6,11,7,30,331,77,673,4.4,25.3,67.83,929,18.3 +2013,6,11,8,30,544,95,791,4.5,28,55.4,929,18.7 +2013,6,11,9,30,735,107,854,4.4,30,42.77,929,18 +2013,6,11,10,30,886,116,891,4.4,31.6,30.150000000000002,929,17.2 +2013,6,11,11,30,987,121,910,4.5,32.9,18.06,928,16.7 +2013,6,11,12,30,1026,118,921,4.5,33.9,9.48,928,16.6 +2013,6,11,13,30,1005,117,916,4.6000000000000005,34.6,14.290000000000001,927,16.5 +2013,6,11,14,30,921,113,897,4.6000000000000005,34.800000000000004,25.830000000000002,926,16.6 +2013,6,11,15,30,784,104,868,4.5,34.6,38.35,926,16.6 +2013,6,11,16,30,606,92,817,4.5,34,51.01,925,16.5 +2013,6,11,17,30,402,77,727,4.5,33.5,63.53,925,16.400000000000002 +2013,6,11,18,30,193,56,555,3.3000000000000003,30.700000000000003,75.72,925,16.5 +2013,6,11,19,30,25,18,144,3.1,28.6,87.28,926,17 +2013,6,11,20,30,0,0,0,3.9000000000000004,27.3,98.45,926,16.7 +2013,6,11,21,30,0,0,0,4.6000000000000005,26.200000000000003,108.26,927,16.900000000000002 +2013,6,11,22,30,0,0,0,4.9,25,116.36,927,17.6 +2013,6,11,23,30,0,0,0,4.9,24,122.01,928,18.6 +2013,6,12,0,30,0,0,0,4.6000000000000005,23.1,124.45,928,19.400000000000002 +2013,6,12,1,30,0,0,0,4.4,22.400000000000002,123.27,928,20 +2013,6,12,2,30,0,0,0,4.2,21.8,118.66,928,20.200000000000003 +2013,6,12,3,30,0,0,0,3.9000000000000004,21.200000000000003,111.33,928,20.3 +2013,6,12,4,30,0,0,0,3.6,20.700000000000003,102.04,928,20.200000000000003 +2013,6,12,5,30,0,0,0,3.8000000000000003,20.900000000000002,91.44,929,20.1 +2013,6,12,6,30,124,47,437,4.7,22.5,79.87,929,19.900000000000002 +2013,6,12,7,30,325,72,673,5.2,24.8,67.84,930,19.3 +2013,6,12,8,30,534,86,790,5.1000000000000005,27.1,55.42,930,18.8 +2013,6,12,9,30,723,95,855,5,29.200000000000003,42.79,930,18.2 +2013,6,12,10,30,875,101,895,5,31,30.17,929,17.8 +2013,6,12,11,30,976,105,916,5.1000000000000005,32.300000000000004,18.06,929,17.6 +2013,6,12,12,30,1019,104,927,5.4,33.1,9.44,928,17.400000000000002 +2013,6,12,13,30,998,106,920,5.6000000000000005,33.4,14.21,927,17.3 +2013,6,12,14,30,917,107,900,5.800000000000001,33.2,25.76,927,17.1 +2013,6,12,15,30,604,357,315,5.800000000000001,32.7,38.29,927,16.900000000000002 +2013,6,12,16,30,602,105,788,5.6000000000000005,31.8,50.94,926,16.6 +2013,6,12,17,30,395,91,681,5.4,31.3,63.46,926,16.5 +2013,6,12,18,30,187,67,485,3.8000000000000003,29,75.65,927,16.6 +2013,6,12,19,30,23,18,100,2.6,27.1,87.21000000000001,927,17.2 +2013,6,12,20,30,0,0,0,2.4000000000000004,25.900000000000002,98.38,928,17.7 +2013,6,12,21,30,0,0,0,2.7,25.200000000000003,108.19,928,18 +2013,6,12,22,30,0,0,0,3,24.6,116.29,929,18.5 +2013,6,12,23,30,0,0,0,3,23.900000000000002,121.94,929,19 +2013,6,13,0,30,0,0,0,2.9000000000000004,23.200000000000003,124.39,929,19.700000000000003 +2013,6,13,1,30,0,0,0,2.7,22.6,123.22,929,20.200000000000003 +2013,6,13,2,30,0,0,0,2.6,22,118.63,929,20.5 +2013,6,13,3,30,0,0,0,2.5,21.5,111.31,929,20.700000000000003 +2013,6,13,4,30,0,0,0,2.4000000000000004,21.200000000000003,102.04,929,20.8 +2013,6,13,5,30,0,0,0,2.9000000000000004,21.5,91.44,929,20.900000000000002 +2013,6,13,6,30,118,53,374,3.8000000000000003,23.1,79.88,930,20.8 +2013,6,13,7,30,319,82,629,4.1000000000000005,25.6,67.86,930,20.200000000000003 +2013,6,13,8,30,527,98,756,3.7,28,55.44,930,19.6 +2013,6,13,9,30,717,109,829,3.4000000000000004,29.900000000000002,42.81,930,19 +2013,6,13,10,30,866,116,868,3.5,31.3,30.19,930,18.400000000000002 +2013,6,13,11,30,966,120,889,3.8000000000000003,32.4,18.07,929,17.8 +2013,6,13,12,30,1010,115,907,4.1000000000000005,32.9,9.39,929,17.2 +2013,6,13,13,30,990,114,904,4.3,32.9,14.14,928,16.900000000000002 +2013,6,13,14,30,850,340,565,4.5,32.6,25.69,928,16.7 +2013,6,13,15,30,443,370,92,4.7,32,38.22,927,16.5 +2013,6,13,16,30,600,92,805,4.7,31.200000000000003,50.870000000000005,927,16.400000000000002 +2013,6,13,17,30,398,79,712,4.7,30.8,63.39,927,16.2 +2013,6,13,18,30,187,58,517,3.8000000000000003,28.400000000000002,75.58,927,16.400000000000002 +2013,6,13,19,30,16,16,0,3.4000000000000004,26.5,87.14,927,17 +2013,6,13,20,30,0,0,0,3.4000000000000004,25.1,98.31,927,17.3 +2013,6,13,21,30,0,0,0,3.2,24,108.11,928,17.8 +2013,6,13,22,30,0,0,0,2.8000000000000003,23,116.22,928,18.3 +2013,6,13,23,30,0,0,0,2.4000000000000004,22.3,121.88,928,18.8 +2013,6,14,0,30,0,0,0,2.1,21.8,124.34,928,19.200000000000003 +2013,6,14,1,30,0,0,0,1.8,21.3,123.18,928,19.6 +2013,6,14,2,30,0,0,0,1.6,20.900000000000002,118.61,928,19.900000000000002 +2013,6,14,3,30,0,0,0,1.5,20.700000000000003,111.3,928,20.200000000000003 +2013,6,14,4,30,0,0,0,1.6,20.6,102.04,928,20.400000000000002 +2013,6,14,5,30,0,0,0,2.1,20.900000000000002,91.45,928,20.6 +2013,6,14,6,30,29,29,0,3,21.8,79.9,929,20.700000000000003 +2013,6,14,7,30,12,12,0,3.9000000000000004,22.900000000000002,67.88,929,20.200000000000003 +2013,6,14,8,30,88,88,0,4.6000000000000005,23.900000000000002,55.46,929,18.400000000000002 +2013,6,14,9,30,63,63,0,4.9,24.900000000000002,42.84,929,16.400000000000002 +2013,6,14,10,30,287,273,16,5.1000000000000005,25.900000000000002,30.21,929,15.600000000000001 +2013,6,14,11,30,472,427,48,5.300000000000001,26.700000000000003,18.09,928,15.4 +2013,6,14,12,30,301,285,17,5.4,27,9.36,928,15.700000000000001 +2013,6,14,13,30,396,371,26,5.4,26.900000000000002,14.07,927,16.1 +2013,6,14,14,30,245,233,13,5.300000000000001,26.5,25.62,927,16.6 +2013,6,14,15,30,350,321,36,5,25.8,38.160000000000004,927,17.1 +2013,6,14,16,30,214,206,13,4.5,24.8,50.81,927,17.6 +2013,6,14,17,30,28,28,0,4.1000000000000005,24.3,63.32,927,18.1 +2013,6,14,18,30,54,54,0,2.5,22.700000000000003,75.51,927,18.8 +2013,6,14,19,30,14,14,0,1.6,21.8,87.07000000000001,927,19.5 +2013,6,14,20,30,0,0,0,1.4000000000000001,21.200000000000003,98.24000000000001,927,19.8 +2013,6,14,21,30,0,0,0,1.4000000000000001,20.8,108.05,927,19.700000000000003 +2013,6,14,22,30,0,0,0,1.3,20.400000000000002,116.15,927,19.400000000000002 +2013,6,14,23,30,0,0,0,1.1,20.1,121.82000000000001,928,19.3 +2013,6,15,0,30,0,0,0,1,19.900000000000002,124.29,928,19.200000000000003 +2013,6,15,1,30,0,0,0,0.9,20,123.15,928,19.200000000000003 +2013,6,15,2,30,0,0,0,0.7000000000000001,20,118.59,927,19.3 +2013,6,15,3,30,0,0,0,0.7000000000000001,19.900000000000002,111.3,927,19.3 +2013,6,15,4,30,0,0,0,1,19.8,102.05,928,19.400000000000002 +2013,6,15,5,30,0,0,0,1.7000000000000002,20.1,91.47,928,19.400000000000002 +2013,6,15,6,30,116,53,358,2.6,21,79.92,928,19.5 +2013,6,15,7,30,123,122,3,3.4000000000000004,22.5,67.91,929,19.6 +2013,6,15,8,30,180,176,8,4.1000000000000005,24.6,55.49,929,19.1 +2013,6,15,9,30,428,345,113,4.5,26.700000000000003,42.86,929,17.6 +2013,6,15,10,30,329,310,22,4.6000000000000005,28.700000000000003,30.240000000000002,928,16.6 +2013,6,15,11,30,270,256,15,4.6000000000000005,30.200000000000003,18.1,928,16.5 +2013,6,15,12,30,484,440,45,4.7,30.900000000000002,9.33,927,16.7 +2013,6,15,13,30,976,133,869,4.800000000000001,31,14.01,926,17 +2013,6,15,14,30,895,131,847,4.800000000000001,30.900000000000002,25.560000000000002,926,17.3 +2013,6,15,15,30,763,122,815,4.7,30.400000000000002,38.1,925,17.5 +2013,6,15,16,30,589,108,761,4.6000000000000005,29.8,50.75,925,17.7 +2013,6,15,17,30,391,89,670,4.5,29.400000000000002,63.26,925,17.8 +2013,6,15,18,30,189,63,503,3.6,27.400000000000002,75.45,925,18 +2013,6,15,19,30,26,19,141,2.9000000000000004,25.900000000000002,87.02,926,18.3 +2013,6,15,20,30,0,0,0,2.9000000000000004,24.8,98.18,926,18.5 +2013,6,15,21,30,0,0,0,3,24,107.99000000000001,927,18.6 +2013,6,15,22,30,0,0,0,2.8000000000000003,23.3,116.09,927,18.900000000000002 +2013,6,15,23,30,0,0,0,2.7,22.6,121.77,927,19.200000000000003 +2013,6,16,0,30,0,0,0,2.5,21.900000000000002,124.25,927,19.5 +2013,6,16,1,30,0,0,0,2.4000000000000004,21.400000000000002,123.12,927,19.8 +2013,6,16,2,30,0,0,0,2.2,20.900000000000002,118.58,927,20.1 +2013,6,16,3,30,0,0,0,1.9000000000000001,20.5,111.3,927,20.3 +2013,6,16,4,30,0,0,0,1.6,20.1,102.06,928,20.1 +2013,6,16,5,30,0,0,0,2.2,20.700000000000003,91.48,928,20.400000000000002 +2013,6,16,6,30,115,56,333,3.4000000000000004,22.6,79.94,929,20.5 +2013,6,16,7,30,312,91,586,4.1000000000000005,25.200000000000003,67.93,929,20.5 +2013,6,16,8,30,521,106,734,4.2,27.900000000000002,55.52,928,20.5 +2013,6,16,9,30,713,113,818,4,30.1,42.9,928,20.400000000000002 +2013,6,16,10,30,865,120,862,4,31.8,30.27,928,20.200000000000003 +2013,6,16,11,30,965,123,886,4.2,33,18.13,927,20 +2013,6,16,12,30,1011,116,907,4.5,33.800000000000004,9.31,927,19.8 +2013,6,16,13,30,991,114,904,4.6000000000000005,34.300000000000004,13.950000000000001,926,19.6 +2013,6,16,14,30,910,110,886,4.6000000000000005,34.4,25.5,926,19.3 +2013,6,16,15,30,777,103,855,4.5,34.1,38.04,925,19.1 +2013,6,16,16,30,601,93,802,4.4,33.300000000000004,50.69,925,19 +2013,6,16,17,30,400,79,711,4.4,32.9,63.21,925,19 +2013,6,16,18,30,193,58,539,3.7,30.400000000000002,75.4,925,19 +2013,6,16,19,30,21,18,44,3.1,28.5,86.96000000000001,925,19.3 +2013,6,16,20,30,0,0,0,3.1,27.1,98.12,926,19.5 +2013,6,16,21,30,0,0,0,3.3000000000000003,26.200000000000003,107.93,927,19.6 +2013,6,16,22,30,0,0,0,3.4000000000000004,25.400000000000002,116.04,927,19.6 +2013,6,16,23,30,0,0,0,3.5,24.6,121.73,927,19.6 +2013,6,17,0,30,0,0,0,3.5,23.900000000000002,124.22,927,19.6 +2013,6,17,1,30,0,0,0,3.4000000000000004,23.200000000000003,123.10000000000001,927,19.6 +2013,6,17,2,30,0,0,0,3.3000000000000003,22.6,118.57000000000001,926,19.6 +2013,6,17,3,30,0,0,0,3,21.900000000000002,111.3,926,19.700000000000003 +2013,6,17,4,30,0,0,0,2.4000000000000004,21.3,102.07000000000001,927,19.900000000000002 +2013,6,17,5,30,0,0,0,2.6,21.5,91.51,927,20.1 +2013,6,17,6,30,57,57,0,3.5,22.8,79.97,928,20.400000000000002 +2013,6,17,7,30,12,12,0,4,24.900000000000002,67.96000000000001,928,20.700000000000003 +2013,6,17,8,30,250,226,43,3.9000000000000004,26.900000000000002,55.550000000000004,928,20.700000000000003 +2013,6,17,9,30,514,342,234,3.7,28.3,42.93,928,20.700000000000003 +2013,6,17,10,30,697,382,365,3.6,29,30.3,927,20.900000000000002 +2013,6,17,11,30,944,154,831,3.4000000000000004,29.5,18.150000000000002,927,21.3 +2013,6,17,12,30,990,150,851,3,29.700000000000003,9.3,927,21.700000000000003 +2013,6,17,13,30,973,144,854,2.5,29.900000000000002,13.89,926,22 +2013,6,17,14,30,897,134,845,2.1,30.200000000000003,25.45,926,22.1 +2013,6,17,15,30,602,362,304,1.8,30.3,37.980000000000004,925,22.200000000000003 +2013,6,17,16,30,411,289,192,1.6,30.1,50.63,925,22.200000000000003 +2013,6,17,17,30,180,167,29,1.6,29.8,63.15,925,22.400000000000002 +2013,6,17,18,30,161,82,311,1.4000000000000001,27.400000000000002,75.34,925,23.400000000000002 +2013,6,17,19,30,16,16,0,1.4000000000000001,25.3,86.91,925,23.700000000000003 +2013,6,17,20,30,0,0,0,1.1,24.3,98.07000000000001,926,23.1 +2013,6,17,21,30,0,0,0,0.9,23.8,107.88,927,23.1 +2013,6,17,22,30,0,0,0,0.9,23.3,116,928,22.900000000000002 +2013,6,17,23,30,0,0,0,0.9,22.6,121.69,927,22.6 +2013,6,18,0,30,0,0,0,1,22,124.19,927,22 +2013,6,18,1,30,0,0,0,0.9,21.5,123.09,927,21.5 +2013,6,18,2,30,0,0,0,0.8,21.200000000000003,118.57000000000001,927,21.200000000000003 +2013,6,18,3,30,0,0,0,0.8,21,111.32000000000001,928,21 +2013,6,18,4,30,0,0,0,0.8,20.900000000000002,102.09,928,20.900000000000002 +2013,6,18,5,30,0,0,0,1,21,91.53,928,21 +2013,6,18,6,30,63,59,21,1.5,21.6,80,928,21.400000000000002 +2013,6,18,7,30,232,145,232,1.9000000000000001,22.6,68,928,21.3 +2013,6,18,8,30,513,111,711,2.7,24.1,55.59,929,21.1 +2013,6,18,9,30,700,124,788,3.2,25.900000000000002,42.97,929,20.8 +2013,6,18,10,30,854,129,839,3.3000000000000003,27.200000000000003,30.34,929,20.5 +2013,6,18,11,30,958,130,871,3,28.3,18.18,928,20.1 +2013,6,18,12,30,1013,105,920,2.5,29,9.290000000000001,928,19.8 +2013,6,18,13,30,996,101,922,2.1,29.5,13.84,927,19.6 +2013,6,18,14,30,921,96,913,2,29.8,25.39,927,19.400000000000002 +2013,6,18,15,30,788,97,876,2,29.8,37.93,927,18.900000000000002 +2013,6,18,16,30,613,85,832,2.1,29.5,50.58,926,18.400000000000002 +2013,6,18,17,30,410,72,749,2.1,29.200000000000003,63.1,926,18 +2013,6,18,18,30,203,52,593,1.5,26.700000000000003,75.29,926,18.400000000000002 +2013,6,18,19,30,30,18,219,1.3,24.5,86.86,926,19.6 +2013,6,18,20,30,0,0,0,1.5,23.400000000000002,98.02,927,18.5 +2013,6,18,21,30,0,0,0,1.7000000000000002,22.700000000000003,107.83,927,18.1 +2013,6,18,22,30,0,0,0,1.8,22.1,115.96000000000001,927,18 +2013,6,18,23,30,0,0,0,2.1,21.5,121.66,927,17.900000000000002 +2013,6,19,0,30,0,0,0,2.4000000000000004,21,124.18,927,17.900000000000002 +2013,6,19,1,30,0,0,0,2.6,20.6,123.08,927,18.1 +2013,6,19,2,30,0,0,0,2.7,20.200000000000003,118.58,927,18.3 +2013,6,19,3,30,0,0,0,2.4000000000000004,19.900000000000002,111.33,927,18.6 +2013,6,19,4,30,0,0,0,2.2,19.700000000000003,102.12,927,18.8 +2013,6,19,5,30,0,0,0,2.6,20.3,91.56,927,18.900000000000002 +2013,6,19,6,30,117,50,390,3.4000000000000004,22.200000000000003,80.04,928,19.1 +2013,6,19,7,30,315,81,626,4.1000000000000005,24.900000000000002,68.04,928,19.400000000000002 +2013,6,19,8,30,523,99,750,4.5,27.3,55.63,927,19.5 +2013,6,19,9,30,710,111,820,4.5,29.200000000000003,43.01,927,19.5 +2013,6,19,10,30,861,120,859,4.4,30.5,30.38,927,19.6 +2013,6,19,11,30,960,127,878,4.2,31.400000000000002,18.22,927,19.700000000000003 +2013,6,19,12,30,997,144,864,4.2,31.8,9.290000000000001,926,19.8 +2013,6,19,13,30,931,391,557,4.2,32,13.8,926,19.8 +2013,6,19,14,30,374,350,27,4.3,31.900000000000002,25.34,925,19.700000000000003 +2013,6,19,15,30,672,301,470,4.2,31.5,37.88,925,19.5 +2013,6,19,16,30,580,143,688,3.9000000000000004,30.900000000000002,50.53,924,19.400000000000002 +2013,6,19,17,30,382,118,583,3.7,30.6,63.050000000000004,924,19.6 +2013,6,19,18,30,157,86,277,2.5,27.900000000000002,75.24,924,20.3 +2013,6,19,19,30,21,19,38,2.3000000000000003,26,86.81,925,20.400000000000002 +2013,6,19,20,30,0,0,0,2.6,25,97.97,925,19.6 +2013,6,19,21,30,0,0,0,2.9000000000000004,24.3,107.79,926,19 +2013,6,19,22,30,0,0,0,3,23.400000000000002,115.92,926,18.5 +2013,6,19,23,30,0,0,0,2.9000000000000004,22.5,121.63,926,18 +2013,6,20,0,30,0,0,0,2.9000000000000004,21.8,124.16,926,17.5 +2013,6,20,1,30,0,0,0,3.1,21.200000000000003,123.09,926,17 +2013,6,20,2,30,0,0,0,3.4000000000000004,20.8,118.59,926,16.8 +2013,6,20,3,30,0,0,0,3.6,20.400000000000002,111.36,927,17 +2013,6,20,4,30,0,0,0,3.6,20.1,102.15,927,17.6 +2013,6,20,5,30,0,0,0,3.8000000000000003,20.400000000000002,91.60000000000001,927,18.1 +2013,6,20,6,30,88,59,164,4.9,21.900000000000002,80.07000000000001,928,18.7 +2013,6,20,7,30,308,94,573,5.9,24.200000000000003,68.08,928,19.200000000000003 +2013,6,20,8,30,515,118,705,6.2,26.6,55.67,928,19.5 +2013,6,20,9,30,703,134,780,6.300000000000001,28.6,43.050000000000004,928,19.5 +2013,6,20,10,30,854,144,823,6.300000000000001,30.1,30.42,928,19.200000000000003 +2013,6,20,11,30,957,150,849,6.300000000000001,31.3,18.25,928,18.7 +2013,6,20,12,30,996,160,847,6.2,32.300000000000004,9.3,927,18.2 +2013,6,20,13,30,815,437,388,6.1000000000000005,33.1,13.76,927,17.7 +2013,6,20,14,30,805,388,461,6,33.5,25.3,926,17.2 +2013,6,20,15,30,758,210,693,5.9,33.2,37.83,926,16.900000000000002 +2013,6,20,16,30,574,162,646,5.6000000000000005,32.2,50.480000000000004,926,16.7 +2013,6,20,17,30,403,83,705,5.4,31.5,63,926,16.8 +2013,6,20,18,30,158,86,285,4.2,28.700000000000003,75.19,926,17.2 +2013,6,20,19,30,22,19,48,3.8000000000000003,27.1,86.77,927,17.5 +2013,6,20,20,30,0,0,0,3.7,25.900000000000002,97.93,927,17.5 +2013,6,20,21,30,0,0,0,3.5,24.900000000000002,107.76,927,17.5 +2013,6,20,22,30,0,0,0,3.4000000000000004,24.1,115.89,928,17.5 +2013,6,20,23,30,0,0,0,3.4000000000000004,23.400000000000002,121.61,928,17.5 +2013,6,21,0,30,0,0,0,3.5,22.900000000000002,124.16,928,17.6 +2013,6,21,1,30,0,0,0,3.5,22.5,123.09,928,17.8 +2013,6,21,2,30,0,0,0,3.6,22.1,118.61,929,18.1 +2013,6,21,3,30,0,0,0,3.8000000000000003,21.8,111.38,929,18.400000000000002 +2013,6,21,4,30,0,0,0,3.9000000000000004,21.400000000000002,102.18,929,18.6 +2013,6,21,5,30,0,0,0,4.1000000000000005,21.6,91.64,929,18.8 +2013,6,21,6,30,48,48,0,5,22.700000000000003,80.11,929,19 +2013,6,21,7,30,296,95,540,5.7,24.5,68.12,929,19 +2013,6,21,8,30,382,241,250,6,26.400000000000002,55.72,930,18.900000000000002 +2013,6,21,9,30,601,276,445,6.1000000000000005,28.3,43.1,930,18.400000000000002 +2013,6,21,10,30,707,367,395,6,30.1,30.47,929,17.8 +2013,6,21,11,30,852,428,446,6,31.6,18.3,929,17.400000000000002 +2013,6,21,12,30,1010,120,901,5.9,32.6,9.32,928,17 +2013,6,21,13,30,993,120,899,5.9,33.2,13.72,928,16.6 +2013,6,21,14,30,913,118,879,6,33.300000000000004,25.25,927,16.2 +2013,6,21,15,30,781,113,844,6,33,37.78,927,16 +2013,6,21,16,30,604,103,787,6,32.300000000000004,50.44,926,15.8 +2013,6,21,17,30,402,88,692,5.9,31.8,62.96,926,15.8 +2013,6,21,18,30,195,64,511,4.9,29.3,75.15,926,16 +2013,6,21,19,30,29,22,118,4.6000000000000005,27.5,86.73,927,16.3 +2013,6,21,20,30,0,0,0,4.5,26.3,97.9,927,16.3 +2013,6,21,21,30,0,0,0,4.1000000000000005,25.3,107.73,927,16.5 +2013,6,21,22,30,0,0,0,3.7,24.3,115.87,927,16.6 +2013,6,21,23,30,0,0,0,3.5,23.5,121.60000000000001,927,16.7 +2013,6,22,0,30,0,0,0,3.4000000000000004,22.900000000000002,124.16,927,16.7 +2013,6,22,1,30,0,0,0,3.4000000000000004,22.3,123.11,927,16.7 +2013,6,22,2,30,0,0,0,3.4000000000000004,21.6,118.64,927,16.8 +2013,6,22,3,30,0,0,0,3.7,21,111.42,927,17.1 +2013,6,22,4,30,0,0,0,3.9000000000000004,20.5,102.22,928,17.6 +2013,6,22,5,30,0,0,0,4.4,20.6,91.68,928,18.2 +2013,6,22,6,30,105,65,234,5.4,22,80.16,928,18.8 +2013,6,22,7,30,302,104,532,6.300000000000001,24.400000000000002,68.17,928,19.3 +2013,6,22,8,30,515,119,704,6.7,26.8,55.76,928,19 +2013,6,22,9,30,705,127,793,6.800000000000001,28.900000000000002,43.15,928,18.1 +2013,6,22,10,30,861,132,847,6.800000000000001,30.6,30.52,928,17.2 +2013,6,22,11,30,964,134,874,6.7,31.8,18.34,927,16.6 +2013,6,22,12,30,1009,133,888,6.6000000000000005,32.7,9.34,927,16.2 +2013,6,22,13,30,990,135,881,6.4,33.1,13.69,926,15.8 +2013,6,22,14,30,910,134,858,6.2,33.1,25.21,925,15.600000000000001 +2013,6,22,15,30,774,134,810,6,32.800000000000004,37.74,925,15.4 +2013,6,22,16,30,598,122,747,5.800000000000001,32.2,50.4,924,15.200000000000001 +2013,6,22,17,30,349,150,436,5.6000000000000005,31.900000000000002,62.910000000000004,924,15.200000000000001 +2013,6,22,18,30,166,82,328,4.7,29.5,75.11,924,15.4 +2013,6,22,19,30,21,20,29,4.5,27.700000000000003,86.7,924,15.700000000000001 +2013,6,22,20,30,0,0,0,4.6000000000000005,26.5,97.86,925,15.700000000000001 +2013,6,22,21,30,0,0,0,4.4,25.400000000000002,107.7,925,15.9 +2013,6,22,22,30,0,0,0,4.1000000000000005,24.5,115.85000000000001,926,16.1 +2013,6,22,23,30,0,0,0,4.2,23.900000000000002,121.60000000000001,925,16.3 +2013,6,23,0,30,0,0,0,4.5,23.3,124.17,925,16.5 +2013,6,23,1,30,0,0,0,4.7,22.700000000000003,123.13000000000001,925,16.8 +2013,6,23,2,30,0,0,0,4.7,22.1,118.67,925,17.2 +2013,6,23,3,30,0,0,0,4.4,21.6,111.46000000000001,925,17.5 +2013,6,23,4,30,0,0,0,3.9000000000000004,21.1,102.27,925,17.7 +2013,6,23,5,30,0,0,0,3.9000000000000004,21.200000000000003,91.73,926,17.900000000000002 +2013,6,23,6,30,85,59,152,4.800000000000001,22.3,80.21000000000001,926,18.2 +2013,6,23,7,30,234,141,250,5.9,24.200000000000003,68.22,926,18.400000000000002 +2013,6,23,8,30,439,206,414,6.5,26.400000000000002,55.81,926,18.400000000000002 +2013,6,23,9,30,698,141,764,6.800000000000001,28.5,43.2,926,17.900000000000002 +2013,6,23,10,30,850,148,816,6.9,30.6,30.57,926,17.3 +2013,6,23,11,30,826,428,420,6.9,32.300000000000004,18.39,925,16.900000000000002 +2013,6,23,12,30,868,465,408,6.800000000000001,33.6,9.370000000000001,925,16.7 +2013,6,23,13,30,940,376,580,6.7,34.5,13.67,924,16.5 +2013,6,23,14,30,908,135,854,6.7,34.800000000000004,25.17,923,16.3 +2013,6,23,15,30,776,128,818,6.7,34.5,37.7,923,16.1 +2013,6,23,16,30,602,115,762,6.6000000000000005,33.7,50.36,923,15.9 +2013,6,23,17,30,400,95,669,6.5,33.1,62.88,923,15.8 +2013,6,23,18,30,197,67,504,5.4,30.3,75.08,924,15.8 +2013,6,23,19,30,30,21,145,4.800000000000001,28.3,86.67,924,16 +2013,6,23,20,30,0,0,0,4.7,26.900000000000002,97.84,925,16.1 +2013,6,23,21,30,0,0,0,4.5,25.8,107.68,926,16.2 +2013,6,23,22,30,0,0,0,4.1000000000000005,24.700000000000003,115.84,926,16.400000000000002 +2013,6,23,23,30,0,0,0,3.9000000000000004,23.8,121.60000000000001,926,16.5 +2013,6,24,0,30,0,0,0,4.1000000000000005,23.1,124.18,926,16.6 +2013,6,24,1,30,0,0,0,4.3,22.400000000000002,123.16,926,16.7 +2013,6,24,2,30,0,0,0,4.6000000000000005,21.8,118.71000000000001,926,17 +2013,6,24,3,30,0,0,0,4.6000000000000005,21.200000000000003,111.5,927,17.6 +2013,6,24,4,30,0,0,0,4.4,20.900000000000002,102.31,927,18.2 +2013,6,24,5,30,0,0,0,4.6000000000000005,20.900000000000002,91.78,927,18.7 +2013,6,24,6,30,107,63,259,5.5,22,80.26,928,19.200000000000003 +2013,6,24,7,30,300,111,511,6.2,23.8,68.27,928,19.3 +2013,6,24,8,30,425,215,373,6.5,25.8,55.870000000000005,928,19.200000000000003 +2013,6,24,9,30,689,180,699,6.6000000000000005,27.8,43.25,927,19 +2013,6,24,10,30,837,249,683,6.5,29.5,30.62,927,18.6 +2013,6,24,11,30,960,155,849,6.300000000000001,31,18.44,927,18.2 +2013,6,24,12,30,1003,157,858,6.1000000000000005,32.2,9.4,926,17.8 +2013,6,24,13,30,756,483,280,6,32.800000000000004,13.64,925,17.5 +2013,6,24,14,30,791,390,443,5.9,32.9,25.14,925,17.3 +2013,6,24,15,30,781,120,835,5.9,32.7,37.67,924,17.2 +2013,6,24,16,30,607,105,786,5.9,32.4,50.32,924,17.1 +2013,6,24,17,30,406,86,700,5.800000000000001,32.1,62.84,924,16.900000000000002 +2013,6,24,18,30,199,62,534,4.9,30,75.05,924,16.8 +2013,6,24,19,30,31,21,167,4.4,28.200000000000003,86.64,924,16.7 +2013,6,24,20,30,0,0,0,4.3,26.900000000000002,97.82000000000001,925,16.6 +2013,6,24,21,30,0,0,0,3.9000000000000004,25.700000000000003,107.67,925,16.5 +2013,6,24,22,30,0,0,0,3.6,24.700000000000003,115.84,926,16.6 +2013,6,24,23,30,0,0,0,3.7,23.900000000000002,121.60000000000001,926,16.5 +2013,6,25,0,30,0,0,0,3.9000000000000004,23.3,124.2,926,16.6 +2013,6,25,1,30,0,0,0,4.2,22.6,123.19,926,16.8 +2013,6,25,2,30,0,0,0,4.3,21.900000000000002,118.75,926,17.3 +2013,6,25,3,30,0,0,0,4.2,21.3,111.55,926,18 +2013,6,25,4,30,0,0,0,4.2,20.8,102.37,926,18.6 +2013,6,25,5,30,0,0,0,4.6000000000000005,21,91.83,926,19.1 +2013,6,25,6,30,108,59,293,5.800000000000001,22.6,80.31,927,19.6 +2013,6,25,7,30,304,96,562,6.6000000000000005,25,68.32000000000001,927,19.700000000000003 +2013,6,25,8,30,512,116,707,6.6000000000000005,27.700000000000003,55.92,927,19.5 +2013,6,25,9,30,699,129,783,6.2,30.3,43.300000000000004,926,19.200000000000003 +2013,6,25,10,30,849,139,825,5.7,32.5,30.67,926,19 +2013,6,25,11,30,950,146,848,5.2,34.4,18.5,925,19 +2013,6,25,12,30,1000,123,890,4.7,35.800000000000004,9.44,925,19 +2013,6,25,13,30,981,126,880,4.5,36.7,13.63,924,18.900000000000002 +2013,6,25,14,30,903,125,859,4.5,37.2,25.11,923,18.8 +2013,6,25,15,30,772,119,824,4.7,37.1,37.63,923,18.7 +2013,6,25,16,30,599,108,767,4.9,36.6,50.29,922,18.400000000000002 +2013,6,25,17,30,398,92,668,5,36.1,62.81,922,18 +2013,6,25,18,30,181,72,423,4.7,33.300000000000004,75.02,922,17.8 +2013,6,25,19,30,26,20,94,4.4,30.900000000000002,86.62,923,17.5 +2013,6,25,20,30,0,0,0,4.5,29.200000000000003,97.8,923,16.900000000000002 +2013,6,25,21,30,0,0,0,4.6000000000000005,27.900000000000002,107.66,924,16.5 +2013,6,25,22,30,0,0,0,4.6000000000000005,26.900000000000002,115.84,924,16.3 +2013,6,25,23,30,0,0,0,4.6000000000000005,25.900000000000002,121.62,924,16.2 +2013,6,26,0,30,0,0,0,4.5,25.1,124.23,924,16.2 +2013,6,26,1,30,0,0,0,4.4,24.3,123.23,924,16.3 +2013,6,26,2,30,0,0,0,4.3,23.6,118.8,924,16.3 +2013,6,26,3,30,0,0,0,4.2,22.900000000000002,111.61,924,16.6 +2013,6,26,4,30,0,0,0,4.2,22.3,102.42,924,17 +2013,6,26,5,30,0,0,0,4.6000000000000005,22.400000000000002,91.89,925,17.5 +2013,6,26,6,30,78,59,118,5.7,23.8,80.37,925,18 +2013,6,26,7,30,241,135,288,6.300000000000001,26.3,68.38,925,18.7 +2013,6,26,8,30,491,141,626,5.9,29.1,55.980000000000004,925,19.1 +2013,6,26,9,30,677,162,708,5.4,31.6,43.36,925,19.200000000000003 +2013,6,26,10,30,829,179,756,4.9,33.800000000000004,30.73,925,19.200000000000003 +2013,6,26,11,30,931,187,785,4.7,35.6,18.56,925,19.1 +2013,6,26,12,30,976,190,798,4.6000000000000005,36.9,9.49,925,18.900000000000002 +2013,6,26,13,30,959,185,796,4.7,37.800000000000004,13.620000000000001,924,18.6 +2013,6,26,14,30,885,175,783,4.800000000000001,38.300000000000004,25.080000000000002,924,18.2 +2013,6,26,15,30,762,143,782,5,38.2,37.6,923,17.7 +2013,6,26,16,30,593,125,732,5,37.5,50.26,923,17.2 +2013,6,26,17,30,395,103,639,5,37,62.79,923,16.8 +2013,6,26,18,30,192,71,466,3.9000000000000004,33.800000000000004,75,923,16.6 +2013,6,26,19,30,28,21,117,3.6,31.5,86.61,924,16.900000000000002 +2013,6,26,20,30,0,0,0,4,30.1,97.79,925,16.5 +2013,6,26,21,30,0,0,0,4.3,28.900000000000002,107.65,925,16.6 +2013,6,26,22,30,0,0,0,4.1000000000000005,27.8,115.85000000000001,926,16.900000000000002 +2013,6,26,23,30,0,0,0,3.8000000000000003,26.8,121.64,926,17.400000000000002 +2013,6,27,0,30,0,0,0,3.4000000000000004,25.900000000000002,124.27,926,17.8 +2013,6,27,1,30,0,0,0,3.2,25.1,123.28,926,18.1 +2013,6,27,2,30,0,0,0,3.1,24.3,118.85000000000001,926,18.3 +2013,6,27,3,30,0,0,0,2.9000000000000004,23.6,111.67,926,18.400000000000002 +2013,6,27,4,30,0,0,0,2.9000000000000004,22.900000000000002,102.49000000000001,927,18.6 +2013,6,27,5,30,0,0,0,3.4000000000000004,23,91.95,928,18.8 +2013,6,27,6,30,108,53,331,4.5,24.5,80.43,928,19 +2013,6,27,7,30,305,90,585,5.1000000000000005,27,68.44,929,19.1 +2013,6,27,8,30,516,111,725,4.9,29.8,56.04,929,18.8 +2013,6,27,9,30,708,123,805,4.4,32.5,43.42,929,18 +2013,6,27,10,30,863,131,853,4.1000000000000005,34.800000000000004,30.79,928,17 +2013,6,27,11,30,968,135,880,3.8000000000000003,36.6,18.62,928,16 +2013,6,27,12,30,1020,123,909,3.8000000000000003,37.9,9.540000000000001,927,15 +2013,6,27,13,30,1003,121,908,3.7,38.7,13.61,927,14.200000000000001 +2013,6,27,14,30,926,116,894,3.7,39,25.060000000000002,926,13.600000000000001 +2013,6,27,15,30,794,106,869,3.6,38.800000000000004,37.58,926,13.200000000000001 +2013,6,27,16,30,618,95,817,3.4000000000000004,38.1,50.230000000000004,926,13 +2013,6,27,17,30,415,80,732,3.4000000000000004,37.5,62.76,926,12.8 +2013,6,27,18,30,206,58,571,2,33.5,74.98,926,13.8 +2013,6,27,19,30,32,21,193,1.6,30.3,86.59,926,15.600000000000001 +2013,6,27,20,30,0,0,0,1.9000000000000001,28.8,97.78,927,14.700000000000001 +2013,6,27,21,30,0,0,0,2.1,27.900000000000002,107.66,928,13.9 +2013,6,27,22,30,0,0,0,2.4000000000000004,26.900000000000002,115.86,928,13.3 +2013,6,27,23,30,0,0,0,2.6,26,121.67,928,12.9 +2013,6,28,0,30,0,0,0,2.8000000000000003,25,124.31,928,12.600000000000001 +2013,6,28,1,30,0,0,0,2.8000000000000003,24.200000000000003,123.33,928,12.5 +2013,6,28,2,30,0,0,0,2.9000000000000004,23.5,118.92,927,12.5 +2013,6,28,3,30,0,0,0,3,22.900000000000002,111.73,927,12.5 +2013,6,28,4,30,0,0,0,3,22.3,102.55,927,12.600000000000001 +2013,6,28,5,30,0,0,0,3.3000000000000003,22.400000000000002,92.02,928,12.700000000000001 +2013,6,28,6,30,75,58,106,3.5,24.200000000000003,80.5,929,12.9 +2013,6,28,7,30,220,143,210,3.7,27.5,68.51,929,13.4 +2013,6,28,8,30,354,244,196,4,31.3,56.1,929,12.9 +2013,6,28,9,30,536,327,288,3.9000000000000004,34.2,43.480000000000004,929,12.100000000000001 +2013,6,28,10,30,666,403,306,3.6,36.300000000000004,30.85,929,12 +2013,6,28,11,30,815,422,415,3.4000000000000004,37.9,18.68,928,12.600000000000001 +2013,6,28,12,30,861,460,406,3.5,39.1,9.6,927,13.100000000000001 +2013,6,28,13,30,938,377,577,3.6,39.800000000000004,13.61,926,13.600000000000001 +2013,6,28,14,30,786,390,437,3.8000000000000003,40.1,25.04,925,14 +2013,6,28,15,30,766,202,711,3.9000000000000004,39.7,37.550000000000004,925,14.100000000000001 +2013,6,28,16,30,613,99,804,4,38.900000000000006,50.21,924,14 +2013,6,28,17,30,412,80,725,4,38.300000000000004,62.74,924,13.700000000000001 +2013,6,28,18,30,206,57,573,2.8000000000000003,34.5,74.96000000000001,924,13.700000000000001 +2013,6,28,19,30,32,20,208,2.1,31.200000000000003,86.58,925,15.100000000000001 +2013,6,28,20,30,0,0,0,2.4000000000000004,29.5,97.78,926,14.600000000000001 +2013,6,28,21,30,0,0,0,2.8000000000000003,28.5,107.66,926,14.100000000000001 +2013,6,28,22,30,0,0,0,2.9000000000000004,27.5,115.88,926,13.9 +2013,6,28,23,30,0,0,0,2.7,26.5,121.7,926,14.200000000000001 +2013,6,29,0,30,0,0,0,2.3000000000000003,25.5,124.36,926,14.600000000000001 +2013,6,29,1,30,0,0,0,1.8,24.5,123.39,926,15 +2013,6,29,2,30,0,0,0,1.4000000000000001,23.6,118.98,926,15.100000000000001 +2013,6,29,3,30,0,0,0,1.1,22.900000000000002,111.8,926,15.100000000000001 +2013,6,29,4,30,0,0,0,0.9,22.400000000000002,102.62,927,15.200000000000001 +2013,6,29,5,30,0,0,0,0.8,23.3,92.09,927,15.3 +2013,6,29,6,30,77,57,123,0.8,25.400000000000002,80.56,927,15.9 +2013,6,29,7,30,239,134,288,1.1,29.1,68.57000000000001,927,16 +2013,6,29,8,30,522,94,770,1.8,32.9,56.17,927,13.3 +2013,6,29,9,30,711,109,830,2.4000000000000004,34.9,43.550000000000004,927,11.4 +2013,6,29,10,30,755,348,475,2.5,36.2,30.92,927,11.200000000000001 +2013,6,29,11,30,825,425,422,2.6,37,18.75,926,11.200000000000001 +2013,6,29,12,30,869,464,411,2.7,37.5,9.67,926,11.4 +2013,6,29,13,30,871,453,430,2.9000000000000004,37.7,13.620000000000001,925,11.600000000000001 +2013,6,29,14,30,796,391,447,3.1,37.6,25.03,924,11.9 +2013,6,29,15,30,505,386,150,3.1,37.300000000000004,37.53,924,12.100000000000001 +2013,6,29,16,30,593,142,705,3.2,36.7,50.19,923,12.200000000000001 +2013,6,29,17,30,363,141,483,3.2,36.2,62.72,923,12.3 +2013,6,29,18,30,151,92,225,2.3000000000000003,32.7,74.95,923,12.700000000000001 +2013,6,29,19,30,33,20,207,1.7000000000000002,29.700000000000003,86.57000000000001,924,14.8 +2013,6,29,20,30,0,0,0,1.8,28.200000000000003,97.78,924,14.8 +2013,6,29,21,30,0,0,0,2,27.3,107.68,925,14.4 +2013,6,29,22,30,0,0,0,1.9000000000000001,26.400000000000002,115.91,925,14.4 +2013,6,29,23,30,0,0,0,1.7000000000000002,25.6,121.74000000000001,926,14.4 +2013,6,30,0,30,0,0,0,1.4000000000000001,25.1,124.41,926,14.600000000000001 +2013,6,30,1,30,0,0,0,1,24.6,123.46000000000001,926,14.9 +2013,6,30,2,30,0,0,0,0.7000000000000001,24.1,119.06,926,16.2 +2013,6,30,3,30,0,0,0,0.6000000000000001,23.3,111.87,927,18 +2013,6,30,4,30,0,0,0,1,22.3,102.7,927,18.400000000000002 +2013,6,30,5,30,0,0,0,1.6,21.5,92.16,928,18 +2013,6,30,6,30,58,55,19,2,21.700000000000003,80.63,928,17.7 +2013,6,30,7,30,193,146,129,2.3000000000000003,23,68.64,929,17.7 +2013,6,30,8,30,421,212,377,2.5,24.700000000000003,56.230000000000004,929,17.3 +2013,6,30,9,30,525,330,269,2.4000000000000004,26.3,43.61,929,16.900000000000002 +2013,6,30,10,30,733,350,447,2.1,28,30.990000000000002,928,16.400000000000002 +2013,6,30,11,30,788,419,390,1.8,29.700000000000003,18.82,928,16 +2013,6,30,12,30,893,464,434,1.8,31,9.74,927,15.8 +2013,6,30,13,30,989,123,890,1.9000000000000001,31.900000000000002,13.63,927,15.5 +2013,6,30,14,30,691,442,274,2.2,32.300000000000004,25.01,926,15.100000000000001 +2013,6,30,15,30,583,374,263,2.5,32.2,37.52,926,14.700000000000001 +2013,6,30,16,30,469,275,303,2.7,31.8,50.18,925,14.200000000000001 +2013,6,30,17,30,411,83,717,2.7,31.5,62.71,925,13.700000000000001 +2013,6,30,18,30,204,58,562,1.9000000000000001,29,74.94,926,13.700000000000001 +2013,6,30,19,30,33,20,211,1.4000000000000001,26.700000000000003,86.57000000000001,926,15.700000000000001 +2013,6,30,20,30,0,0,0,1.6,25.200000000000003,97.78,927,15 +2013,6,30,21,30,0,0,0,2,24.1,107.69,927,13.9 +2013,6,30,22,30,0,0,0,2.4000000000000004,23.200000000000003,115.94,927,12.9 +2013,6,30,23,30,0,0,0,2.3000000000000003,22.200000000000003,121.79,928,12.100000000000001 +2013,7,1,0,30,0,0,0,2,21.200000000000003,124.47,928,11.700000000000001 +2013,7,1,1,30,0,0,0,1.8,20.5,123.53,928,11.600000000000001 +2013,7,1,2,30,0,0,0,1.8,20.200000000000003,119.14,929,11.600000000000001 +2013,7,1,3,30,0,0,0,1.8,20,111.95,929,11.700000000000001 +2013,7,1,4,30,0,0,0,1.6,19.700000000000003,102.77,930,12 +2013,7,1,5,30,0,0,0,2,19.8,92.24,930,12.3 +2013,7,1,6,30,35,35,0,2.6,20.900000000000002,80.7,931,12.4 +2013,7,1,7,30,90,90,0,3.3000000000000003,22.900000000000002,68.71000000000001,931,11.8 +2013,7,1,8,30,107,107,0,4.2,25.1,56.300000000000004,931,10.8 +2013,7,1,9,30,308,285,33,4.9,26.8,43.68,931,10 +2013,7,1,10,30,661,403,301,5.300000000000001,28.1,31.05,931,9.600000000000001 +2013,7,1,11,30,798,417,403,5.4,29.200000000000003,18.900000000000002,931,9.4 +2013,7,1,12,30,976,336,650,5.4,30,9.82,930,9.1 +2013,7,1,13,30,1008,141,892,5.2,30.400000000000002,13.65,930,8.700000000000001 +2013,7,1,14,30,930,137,875,5.1000000000000005,30.400000000000002,25.01,929,8.200000000000001 +2013,7,1,15,30,424,365,75,4.9,30,37.5,929,7.7 +2013,7,1,16,30,607,138,733,4.7,29.1,50.160000000000004,929,7.1000000000000005 +2013,7,1,17,30,404,112,638,4.5,28.6,62.7,929,6.6000000000000005 +2013,7,1,18,30,196,74,470,2.9000000000000004,25.400000000000002,74.93,930,6.4 +2013,7,1,19,30,29,20,155,1.6,22.700000000000003,86.57000000000001,930,8.3 +2013,7,1,20,30,0,0,0,1.4000000000000001,21.1,97.8,931,9.1 +2013,7,1,21,30,0,0,0,1.3,20.200000000000003,107.72,931,9.3 +2013,7,1,22,30,0,0,0,1.3,19.400000000000002,115.98,931,9.4 +2013,7,1,23,30,0,0,0,1.3,18.7,121.84,931,9.600000000000001 +2013,7,2,0,30,0,0,0,1.2000000000000002,18,124.54,931,9.700000000000001 +2013,7,2,1,30,0,0,0,1.1,17.400000000000002,123.61,931,9.700000000000001 +2013,7,2,2,30,0,0,0,1,16.900000000000002,119.22,931,9.600000000000001 +2013,7,2,3,30,0,0,0,0.9,16.6,112.04,932,9.4 +2013,7,2,4,30,0,0,0,0.9,16.2,102.86,932,9.200000000000001 +2013,7,2,5,30,0,0,0,1.1,16.900000000000002,92.31,932,9.1 +2013,7,2,6,30,98,55,266,1.6,18.900000000000002,80.78,933,9.700000000000001 +2013,7,2,7,30,294,111,505,2.4000000000000004,21.900000000000002,68.78,933,9.3 +2013,7,2,8,30,506,143,655,3.2,24.700000000000003,56.370000000000005,933,7.9 +2013,7,2,9,30,701,163,745,3.7,26.400000000000002,43.75,933,7 +2013,7,2,10,30,861,173,803,3.9000000000000004,27.700000000000003,31.13,933,6.800000000000001 +2013,7,2,11,30,971,176,841,3.9000000000000004,28.8,18.98,932,6.6000000000000005 +2013,7,2,12,30,1034,141,906,3.8000000000000003,29.700000000000003,9.91,932,6.4 +2013,7,2,13,30,1020,137,909,3.7,30.200000000000003,13.67,931,6.2 +2013,7,2,14,30,943,128,899,3.6,30.3,25,930,6.1000000000000005 +2013,7,2,15,30,812,116,877,3.5,30.1,37.5,930,5.9 +2013,7,2,16,30,634,102,832,3.4000000000000004,29.5,50.15,929,5.5 +2013,7,2,17,30,427,83,749,3.3000000000000003,29,62.7,929,5.300000000000001 +2013,7,2,18,30,213,60,589,1.9000000000000001,25.6,74.93,930,5.5 +2013,7,2,19,30,24,20,67,1.1,22.700000000000003,86.58,930,9.3 +2013,7,2,20,30,0,0,0,1.2000000000000002,21.3,97.81,930,9 +2013,7,2,21,30,0,0,0,1.3,20.5,107.75,931,8.4 +2013,7,2,22,30,0,0,0,1.6,19.700000000000003,116.02,931,7.7 +2013,7,2,23,30,0,0,0,1.7000000000000002,18.900000000000002,121.91,931,7.1000000000000005 +2013,7,3,0,30,0,0,0,1.7000000000000002,18.2,124.62,931,6.9 +2013,7,3,1,30,0,0,0,1.7000000000000002,17.7,123.7,931,6.7 +2013,7,3,2,30,0,0,0,1.7000000000000002,17.2,119.31,931,6.6000000000000005 +2013,7,3,3,30,0,0,0,1.7000000000000002,16.7,112.13,930,6.5 +2013,7,3,4,30,0,0,0,1.6,16.2,102.94,930,6.4 +2013,7,3,5,30,0,0,0,2,17.1,92.4,931,6.5 +2013,7,3,6,30,114,41,460,2.7,19.700000000000003,80.86,931,6.5 +2013,7,3,7,30,244,126,329,2.5,23.400000000000002,68.86,931,6.4 +2013,7,3,8,30,532,88,804,1.7000000000000002,26.900000000000002,56.44,931,6 +2013,7,3,9,30,707,134,795,1.5,29,43.82,931,5.7 +2013,7,3,10,30,882,115,897,1.8,30.400000000000002,31.2,930,5.800000000000001 +2013,7,3,11,30,986,124,912,2,31.5,19.06,930,6 +2013,7,3,12,30,977,333,654,2.2,32.2,10,929,6.2 +2013,7,3,13,30,867,451,429,2.2,32.5,13.700000000000001,928,6.300000000000001 +2013,7,3,14,30,749,393,393,2.4000000000000004,32.5,25.01,927,6.4 +2013,7,3,15,30,636,341,372,2.6,32.2,37.49,927,6.300000000000001 +2013,7,3,16,30,550,195,554,2.8000000000000003,31.5,50.15,926,5.9 +2013,7,3,17,30,249,193,123,2.8000000000000003,31.1,62.690000000000005,926,5.6000000000000005 +2013,7,3,18,30,203,67,520,2.1,27.6,74.94,926,5.800000000000001 +2013,7,3,19,30,31,20,179,1.9000000000000001,24.700000000000003,86.59,927,8.5 +2013,7,3,20,30,0,0,0,2.5,23.400000000000002,97.84,927,7.6000000000000005 +2013,7,3,21,30,0,0,0,3,22.700000000000003,107.78,927,7.1000000000000005 +2013,7,3,22,30,0,0,0,3.5,22,116.07000000000001,928,7 +2013,7,3,23,30,0,0,0,3.7,21.200000000000003,121.97,928,7 +2013,7,4,0,30,0,0,0,3.8000000000000003,20.400000000000002,124.7,927,7.1000000000000005 +2013,7,4,1,30,0,0,0,3.6,19.700000000000003,123.79,927,7.2 +2013,7,4,2,30,0,0,0,3.4000000000000004,19.1,119.41,927,7.4 +2013,7,4,3,30,0,0,0,3.2,18.6,112.22,927,7.7 +2013,7,4,4,30,0,0,0,2.8000000000000003,18,103.03,927,8.1 +2013,7,4,5,30,0,0,0,2.9000000000000004,18.2,92.48,927,8.5 +2013,7,4,6,30,79,53,163,3.3000000000000003,19.8,80.94,928,8.700000000000001 +2013,7,4,7,30,204,142,173,3.8000000000000003,23,68.93,928,8.9 +2013,7,4,8,30,412,213,360,4.1000000000000005,26.400000000000002,56.52,928,9.3 +2013,7,4,9,30,689,161,732,3.6,28.5,43.89,928,9.600000000000001 +2013,7,4,10,30,839,180,771,3.1,29,31.27,929,9.600000000000001 +2013,7,4,11,30,944,184,804,2.9000000000000004,28.400000000000002,19.14,929,9.9 +2013,7,4,12,30,952,387,574,2.8000000000000003,28,10.1,929,10.200000000000001 +2013,7,4,13,30,979,170,833,3,28.3,13.74,928,10.600000000000001 +2013,7,4,14,30,905,158,825,3.2,28.8,25.01,927,10.8 +2013,7,4,15,30,784,124,832,3.7,29.400000000000002,37.49,927,10.8 +2013,7,4,16,30,613,106,791,4,29.400000000000002,50.15,926,10.600000000000001 +2013,7,4,17,30,411,86,710,4.1000000000000005,29.3,62.7,926,10.4 +2013,7,4,18,30,204,61,551,3,26.8,74.95,926,10.4 +2013,7,4,19,30,31,20,194,2,24.3,86.61,926,11.3 +2013,7,4,20,30,0,0,0,1.9000000000000001,23.1,97.86,927,11.4 +2013,7,4,21,30,0,0,0,2,22.6,107.82000000000001,927,11.200000000000001 +2013,7,4,22,30,0,0,0,2.3000000000000003,22.3,116.13,927,11 +2013,7,4,23,30,0,0,0,3,22.200000000000003,122.05,927,10.700000000000001 +2013,7,5,0,30,0,0,0,3.5,21.8,124.79,927,10.600000000000001 +2013,7,5,1,30,0,0,0,3.6,21,123.89,927,10.600000000000001 +2013,7,5,2,30,0,0,0,3.4000000000000004,20.1,119.51,927,10.700000000000001 +2013,7,5,3,30,0,0,0,3.2,19.400000000000002,112.32000000000001,927,10.8 +2013,7,5,4,30,0,0,0,3.2,19,103.13,927,11.200000000000001 +2013,7,5,5,30,0,0,0,3.4000000000000004,19.3,92.57000000000001,927,11.700000000000001 +2013,7,5,6,30,104,47,362,4.3,21.200000000000003,81.02,928,12.4 +2013,7,5,7,30,303,83,614,5.2,24.400000000000002,69.01,928,13 +2013,7,5,8,30,514,104,746,5.6000000000000005,27.700000000000003,56.59,928,12.5 +2013,7,5,9,30,708,117,822,5.5,30.400000000000002,43.97,928,11.8 +2013,7,5,10,30,866,125,868,5.300000000000001,32.300000000000004,31.35,927,11.100000000000001 +2013,7,5,11,30,973,129,894,5.300000000000001,33.7,19.23,927,10.5 +2013,7,5,12,30,1023,132,905,5.2,34.7,10.200000000000001,926,9.9 +2013,7,5,13,30,1008,129,905,5.1000000000000005,35.300000000000004,13.780000000000001,925,9.3 +2013,7,5,14,30,931,125,889,5,35.5,25.02,924,8.9 +2013,7,5,15,30,797,121,851,4.9,35.2,37.49,924,8.4 +2013,7,5,16,30,621,111,795,4.800000000000001,34.4,50.15,923,8 +2013,7,5,17,30,415,93,702,4.7,33.800000000000004,62.7,923,7.7 +2013,7,5,18,30,169,82,333,3.5,30.5,74.96000000000001,923,8 +2013,7,5,19,30,31,21,174,3.2,28,86.63,924,9.3 +2013,7,5,20,30,0,0,0,4,27,97.9,924,9.5 +2013,7,5,21,30,0,0,0,4,26.1,107.87,925,9.8 +2013,7,5,22,30,0,0,0,3.6,25.1,116.19,926,10.4 +2013,7,5,23,30,0,0,0,3.4000000000000004,24.3,122.13,926,10.8 +2013,7,6,0,30,0,0,0,3.5,23.6,124.89,926,11.200000000000001 +2013,7,6,1,30,0,0,0,3.4000000000000004,22.900000000000002,123.99000000000001,925,11.4 +2013,7,6,2,30,0,0,0,3.3000000000000003,22.200000000000003,119.61,925,11.700000000000001 +2013,7,6,3,30,0,0,0,3.3000000000000003,21.700000000000003,112.42,926,12.200000000000001 +2013,7,6,4,30,0,0,0,3.4000000000000004,21.3,103.22,926,12.700000000000001 +2013,7,6,5,30,0,0,0,3.6,21.5,92.66,926,13.4 +2013,7,6,6,30,102,48,347,4.4,23,81.11,926,13.9 +2013,7,6,7,30,230,131,279,5.2,25.6,69.09,927,13.9 +2013,7,6,8,30,382,229,279,5.300000000000001,28.400000000000002,56.67,927,13.5 +2013,7,6,9,30,659,205,631,5.1000000000000005,30.700000000000003,44.04,927,13.4 +2013,7,6,10,30,613,418,229,5.1000000000000005,32.5,31.43,927,13.200000000000001 +2013,7,6,11,30,841,425,441,5.2,33.7,19.32,926,13 +2013,7,6,12,30,1003,145,872,5.300000000000001,34.5,10.31,925,12.700000000000001 +2013,7,6,13,30,938,377,577,5.5,34.9,13.83,924,12.5 +2013,7,6,14,30,911,135,856,5.6000000000000005,34.9,25.04,924,12.5 +2013,7,6,15,30,783,120,836,5.7,34.7,37.5,923,12.100000000000001 +2013,7,6,16,30,611,106,789,5.5,34.1,50.160000000000004,923,11.3 +2013,7,6,17,30,410,88,701,5.4,33.6,62.71,923,10.3 +2013,7,6,18,30,202,63,536,4,30.700000000000003,74.98,924,9.5 +2013,7,6,19,30,31,20,181,3.3000000000000003,28.400000000000002,86.65,924,9.700000000000001 +2013,7,6,20,30,0,0,0,3.2,26.900000000000002,97.93,925,9.8 +2013,7,6,21,30,0,0,0,3.1,25.700000000000003,107.92,926,10 +2013,7,6,22,30,0,0,0,3,24.700000000000003,116.26,926,10.4 +2013,7,6,23,30,0,0,0,2.7,23.8,122.21000000000001,926,10.9 +2013,7,7,0,30,0,0,0,2.4000000000000004,22.900000000000002,124.99000000000001,926,11.3 +2013,7,7,1,30,0,0,0,2.2,22.3,124.11,926,11.700000000000001 +2013,7,7,2,30,0,0,0,2.2,22,119.72,926,12 +2013,7,7,3,30,0,0,0,2.3000000000000003,21.900000000000002,112.53,926,12.3 +2013,7,7,4,30,0,0,0,2.4000000000000004,21.6,103.33,927,12.9 +2013,7,7,5,30,0,0,0,2.9000000000000004,22,92.76,927,13.700000000000001 +2013,7,7,6,30,99,47,341,4,23.8,81.19,928,14.9 +2013,7,7,7,30,295,80,605,4.7,26.400000000000002,69.18,928,17 +2013,7,7,8,30,503,98,739,4.7,28.900000000000002,56.75,928,17.6 +2013,7,7,9,30,696,111,815,4.5,31,44.12,928,17.2 +2013,7,7,10,30,852,122,856,4.4,32.6,31.51,928,16.6 +2013,7,7,11,30,957,126,882,4.3,33.9,19.41,928,15.9 +2013,7,7,12,30,1004,133,885,4.2,34.9,10.42,927,15.200000000000001 +2013,7,7,13,30,991,128,889,4.1000000000000005,35.5,13.88,926,14.600000000000001 +2013,7,7,14,30,918,120,880,4,35.7,25.060000000000002,926,14 +2013,7,7,15,30,780,132,816,4.1000000000000005,35.4,37.51,925,13.700000000000001 +2013,7,7,16,30,591,146,695,4.1000000000000005,34.7,50.17,925,13.4 +2013,7,7,17,30,289,188,219,4.1000000000000005,34.2,62.730000000000004,925,13.200000000000001 +2013,7,7,18,30,196,69,492,3.2,31.400000000000002,75,926,13.200000000000001 +2013,7,7,19,30,29,21,142,2.3000000000000003,29,86.68,927,13.9 +2013,7,7,20,30,0,0,0,2.3000000000000003,27.6,97.98,927,14.3 +2013,7,7,21,30,0,0,0,2.4000000000000004,26.900000000000002,107.98,928,14.4 +2013,7,7,22,30,0,0,0,2.8000000000000003,26.400000000000002,116.34,928,14.5 +2013,7,7,23,30,0,0,0,3.3000000000000003,26,122.31,928,14.700000000000001 +2013,7,8,0,30,0,0,0,3.6,25.6,125.10000000000001,928,15.4 +2013,7,8,1,30,0,0,0,3.7,25.200000000000003,124.22,928,16.5 +2013,7,8,2,30,0,0,0,3.5,24.8,119.84,929,17.5 +2013,7,8,3,30,0,0,0,3.1,24.200000000000003,112.64,929,18.3 +2013,7,8,4,30,0,0,0,2.7,23.5,103.43,929,18.8 +2013,7,8,5,30,0,0,0,3,23.6,92.85000000000001,930,19.200000000000003 +2013,7,8,6,30,97,46,338,3.6,25.1,81.28,931,19.6 +2013,7,8,7,30,291,81,591,3.6,27.3,69.26,931,19.6 +2013,7,8,8,30,499,104,722,3.3000000000000003,29.5,56.83,931,19.3 +2013,7,8,9,30,688,119,794,3.1,31.400000000000002,44.2,931,18.8 +2013,7,8,10,30,841,130,834,3.2,32.9,31.59,931,18.3 +2013,7,8,11,30,944,137,856,3.3000000000000003,34,19.5,930,17.8 +2013,7,8,12,30,992,137,869,3.5,34.800000000000004,10.540000000000001,929,17.400000000000002 +2013,7,8,13,30,907,425,496,3.7,35.2,13.94,928,17.2 +2013,7,8,14,30,900,133,847,3.9000000000000004,35.2,25.080000000000002,928,17 +2013,7,8,15,30,749,231,654,4,34.800000000000004,37.52,928,16.8 +2013,7,8,16,30,600,108,769,4.1000000000000005,34.1,50.18,927,16.6 +2013,7,8,17,30,401,89,681,4.2,33.6,62.75,927,16.400000000000002 +2013,7,8,18,30,196,63,516,3.9000000000000004,31.400000000000002,75.02,928,16.3 +2013,7,8,19,30,30,20,163,3.7,29.700000000000003,86.72,929,16.400000000000002 +2013,7,8,20,30,0,0,0,3.9000000000000004,28.400000000000002,98.02,930,16.5 +2013,7,8,21,30,0,0,0,4.2,27.3,108.04,931,16.5 +2013,7,8,22,30,0,0,0,4.4,26.200000000000003,116.42,931,16.400000000000002 +2013,7,8,23,30,0,0,0,4.4,25.3,122.41,931,16.3 +2013,7,9,0,30,0,0,0,4.3,24.5,125.21000000000001,931,16.1 +2013,7,9,1,30,0,0,0,4,23.8,124.35000000000001,931,16 +2013,7,9,2,30,0,0,0,3.6,23.3,119.96000000000001,931,16.1 +2013,7,9,3,30,0,0,0,3.2,22.8,112.76,931,16.2 +2013,7,9,4,30,0,0,0,2.9000000000000004,22.3,103.54,931,16.5 +2013,7,9,5,30,0,0,0,3.4000000000000004,22.6,92.95,932,17 +2013,7,9,6,30,98,42,374,4.6000000000000005,24.1,81.37,932,18 +2013,7,9,7,30,294,69,638,5.2,26.3,69.35000000000001,932,18.8 +2013,7,9,8,30,504,82,773,5,28.700000000000003,56.910000000000004,932,18.2 +2013,7,9,9,30,696,90,847,4.800000000000001,30.900000000000002,44.28,932,17.2 +2013,7,9,10,30,852,95,890,4.6000000000000005,32.7,31.67,932,16.2 +2013,7,9,11,30,960,97,915,4.6000000000000005,34.2,19.6,931,15.4 +2013,7,9,12,30,1009,98,928,4.7,35.300000000000004,10.67,930,14.700000000000001 +2013,7,9,13,30,994,96,925,4.800000000000001,36,14.01,929,14.3 +2013,7,9,14,30,920,94,912,4.800000000000001,36.300000000000004,25.11,929,14 +2013,7,9,15,30,790,89,884,4.800000000000001,36.1,37.54,928,13.8 +2013,7,9,16,30,617,81,837,4.800000000000001,35.5,50.2,928,13.700000000000001 +2013,7,9,17,30,414,69,754,4.7,35.1,62.77,928,13.600000000000001 +2013,7,9,18,30,205,51,597,3.6,32.4,75.05,928,13.700000000000001 +2013,7,9,19,30,31,19,221,2.7,30.1,86.76,929,14.3 +2013,7,9,20,30,0,0,0,2.9000000000000004,28.8,98.08,929,14.700000000000001 +2013,7,9,21,30,0,0,0,3.2,28,108.11,930,15 +2013,7,9,22,30,0,0,0,3.2,27.1,116.5,930,15.3 +2013,7,9,23,30,0,0,0,3,26.3,122.51,930,15.600000000000001 +2013,7,10,0,30,0,0,0,2.9000000000000004,25.6,125.34,930,15.8 +2013,7,10,1,30,0,0,0,2.9000000000000004,25,124.47,930,16 +2013,7,10,2,30,0,0,0,3,24.5,120.09,930,16.3 +2013,7,10,3,30,0,0,0,3.2,23.900000000000002,112.88,930,16.900000000000002 +2013,7,10,4,30,0,0,0,3.2,23.3,103.65,930,17.6 +2013,7,10,5,30,0,0,0,3.6,23.3,93.05,931,18.5 +2013,7,10,6,30,67,51,108,4.6000000000000005,24.8,81.47,931,19.200000000000003 +2013,7,10,7,30,209,135,211,4.800000000000001,27.3,69.43,932,19.3 +2013,7,10,8,30,380,225,285,4.3,30,57,932,18.8 +2013,7,10,9,30,604,250,494,3.6,32.300000000000004,44.36,931,18.2 +2013,7,10,10,30,682,378,357,3.1,34,31.76,931,17.7 +2013,7,10,11,30,904,350,588,3,35.300000000000004,19.7,930,17.2 +2013,7,10,12,30,839,448,398,3.1,36.300000000000004,10.8,929,16.8 +2013,7,10,13,30,985,117,895,3.1,37,14.09,928,16.5 +2013,7,10,14,30,910,113,880,3.1,37.2,25.14,927,16.2 +2013,7,10,15,30,645,326,403,3.1,37,37.57,927,16 +2013,7,10,16,30,607,94,802,3,36.300000000000004,50.230000000000004,926,15.600000000000001 +2013,7,10,17,30,406,79,715,3,35.9,62.800000000000004,926,15.4 +2013,7,10,18,30,199,57,552,2.2,33.300000000000004,75.09,927,15.3 +2013,7,10,19,30,20,19,14,1.6,31.1,86.8,927,16.2 +2013,7,10,20,30,0,0,0,1.8,29.900000000000002,98.14,927,16.2 +2013,7,10,21,30,0,0,0,2.2,29.400000000000002,108.19,928,15.9 +2013,7,10,22,30,0,0,0,2.7,28.8,116.60000000000001,928,15.600000000000001 +2013,7,10,23,30,0,0,0,3.1,28.1,122.63,928,15.4 +2013,7,11,0,30,0,0,0,3.3000000000000003,27.3,125.46000000000001,928,15.3 +2013,7,11,1,30,0,0,0,3.3000000000000003,26.6,124.61,928,15.200000000000001 +2013,7,11,2,30,0,0,0,3.2,25.900000000000002,120.22,928,15.3 +2013,7,11,3,30,0,0,0,3,25.200000000000003,113,928,15.5 +2013,7,11,4,30,0,0,0,2.9000000000000004,24.6,103.76,928,15.9 +2013,7,11,5,30,0,0,0,3.3000000000000003,24.6,93.16,928,16.3 +2013,7,11,6,30,67,51,109,4.2,26.200000000000003,81.56,929,16.900000000000002 +2013,7,11,7,30,216,132,240,4.4,28.8,69.52,929,17.2 +2013,7,11,8,30,399,213,341,3.4000000000000004,31.8,57.08,929,16.6 +2013,7,11,9,30,554,305,348,2.3000000000000003,34.300000000000004,44.45,928,15.3 +2013,7,11,10,30,699,355,405,1.7000000000000002,35.9,31.85,928,14.700000000000001 +2013,7,11,11,30,760,435,346,1.7000000000000002,37,19.8,928,14.700000000000001 +2013,7,11,12,30,781,483,304,2.1,37.5,10.94,927,14.8 +2013,7,11,13,30,698,497,208,2.6,37.5,14.17,926,14.700000000000001 +2013,7,11,14,30,801,389,455,3,37,25.18,926,14.8 +2013,7,11,15,30,502,385,148,3.4000000000000004,36.7,37.6,925,14.700000000000001 +2013,7,11,16,30,511,243,419,3.6,36.300000000000004,50.25,925,14.600000000000001 +2013,7,11,17,30,313,177,298,3.7,36,62.83,925,14.3 +2013,7,11,18,30,190,63,495,3.1,33.5,75.13,925,14.100000000000001 +2013,7,11,19,30,23,19,74,2.4000000000000004,31.200000000000003,86.85000000000001,925,14.600000000000001 +2013,7,11,20,30,0,0,0,2.5,29.8,98.2,926,14.9 +2013,7,11,21,30,0,0,0,2.9000000000000004,28.900000000000002,108.27,926,15 +2013,7,11,22,30,0,0,0,3,28,116.7,927,15.200000000000001 +2013,7,11,23,30,0,0,0,3,27.200000000000003,122.75,927,15.4 +2013,7,12,0,30,0,0,0,3,26.5,125.60000000000001,927,15.4 +2013,7,12,1,30,0,0,0,3.1,25.900000000000002,124.75,927,15.5 +2013,7,12,2,30,0,0,0,3,25.5,120.36,927,15.5 +2013,7,12,3,30,0,0,0,2.9000000000000004,25.1,113.13,927,15.600000000000001 +2013,7,12,4,30,0,0,0,2.9000000000000004,24.700000000000003,103.88,927,15.700000000000001 +2013,7,12,5,30,0,0,0,3.3000000000000003,24.8,93.27,927,15.8 +2013,7,12,6,30,68,50,130,4.1000000000000005,26.1,81.66,928,16.3 +2013,7,12,7,30,289,72,623,4.2,28.6,69.62,928,16.900000000000002 +2013,7,12,8,30,497,90,751,3.2,31.400000000000002,57.17,928,16.3 +2013,7,12,9,30,689,103,823,2.7,33.800000000000004,44.53,928,15.3 +2013,7,12,10,30,846,110,867,3.2,35.5,31.94,928,14.600000000000001 +2013,7,12,11,30,953,114,892,3.7,36.800000000000004,19.91,927,14.200000000000001 +2013,7,12,12,30,1000,120,897,4.1000000000000005,37.5,11.08,926,14 +2013,7,12,13,30,986,119,894,4.3,37.9,14.25,926,13.8 +2013,7,12,14,30,912,117,878,4.3,37.9,25.23,925,13.600000000000001 +2013,7,12,15,30,776,123,824,4.3,37.4,37.63,925,13.3 +2013,7,12,16,30,427,289,216,4.3,36.6,50.29,925,13.200000000000001 +2013,7,12,17,30,402,92,679,4.2,36.1,62.870000000000005,925,13.100000000000001 +2013,7,12,18,30,195,65,507,3.3000000000000003,33.6,75.17,925,13.100000000000001 +2013,7,12,19,30,28,20,139,2.4000000000000004,31.400000000000002,86.9,925,13.600000000000001 +2013,7,12,20,30,0,0,0,2.4000000000000004,30.1,98.27,926,13.9 +2013,7,12,21,30,0,0,0,2.8000000000000003,29.3,108.35000000000001,927,14 +2013,7,12,22,30,0,0,0,3.1,28.5,116.8,927,14 +2013,7,12,23,30,0,0,0,3.3000000000000003,27.700000000000003,122.87,927,14 +2013,7,13,0,30,0,0,0,3.2,26.8,125.74000000000001,927,13.700000000000001 +2013,7,13,1,30,0,0,0,3,25.900000000000002,124.9,927,13.200000000000001 +2013,7,13,2,30,0,0,0,2.7,25.1,120.5,927,12.700000000000001 +2013,7,13,3,30,0,0,0,2.3000000000000003,24.3,113.26,927,12.200000000000001 +2013,7,13,4,30,0,0,0,2.2,23.700000000000003,104,928,12 +2013,7,13,5,30,0,0,0,2.7,24.1,93.38,928,11.9 +2013,7,13,6,30,97,40,395,3.4000000000000004,26.200000000000003,81.76,929,12.200000000000001 +2013,7,13,7,30,297,69,659,3.5,29.200000000000003,69.71000000000001,929,13.200000000000001 +2013,7,13,8,30,511,85,789,2.9000000000000004,32.1,57.26,929,13.4 +2013,7,13,9,30,707,95,860,2.4000000000000004,34.300000000000004,44.62,929,13.100000000000001 +2013,7,13,10,30,866,102,901,2.3000000000000003,36,32.03,928,12.9 +2013,7,13,11,30,974,107,923,2.4000000000000004,37.2,20.02,928,12.600000000000001 +2013,7,13,12,30,1023,109,933,2.6,38.1,11.23,927,12.100000000000001 +2013,7,13,13,30,958,326,652,2.7,38.6,14.35,926,11.600000000000001 +2013,7,13,14,30,564,452,124,2.8000000000000003,38.7,25.28,926,11.200000000000001 +2013,7,13,15,30,755,218,678,2.8000000000000003,38.300000000000004,37.67,925,10.700000000000001 +2013,7,13,16,30,265,246,31,2.7,37.6,50.32,925,10.200000000000001 +2013,7,13,17,30,339,158,396,2.7,37.1,62.910000000000004,924,9.8 +2013,7,13,18,30,203,57,575,1.8,34,75.22,925,9.700000000000001 +2013,7,13,19,30,29,19,182,1.2000000000000002,31.5,86.96000000000001,925,12.100000000000001 +2013,7,13,20,30,0,0,0,1.4000000000000001,30.200000000000003,98.34,926,12.200000000000001 +2013,7,13,21,30,0,0,0,1.7000000000000002,29.6,108.45,926,12 +2013,7,13,22,30,0,0,0,2,29,116.92,926,12.100000000000001 +2013,7,13,23,30,0,0,0,2.2,28.400000000000002,123.01,926,12.3 +2013,7,14,0,30,0,0,0,2.4000000000000004,27.700000000000003,125.89,926,12.5 +2013,7,14,1,30,0,0,0,2.4000000000000004,26.900000000000002,125.05,926,12.600000000000001 +2013,7,14,2,30,0,0,0,2.3000000000000003,25.900000000000002,120.65,926,12.600000000000001 +2013,7,14,3,30,0,0,0,2.3000000000000003,25,113.4,925,12.4 +2013,7,14,4,30,0,0,0,2.6,24.400000000000002,104.12,925,12.100000000000001 +2013,7,14,5,30,0,0,0,3.2,24.5,93.49,926,11.9 +2013,7,14,6,30,94,41,378,3.6,26.1,81.86,926,11.9 +2013,7,14,7,30,292,71,641,3.9000000000000004,29.1,69.8,926,12 +2013,7,14,8,30,504,89,769,3.9000000000000004,32.4,57.34,925,11.9 +2013,7,14,9,30,452,336,163,3.3000000000000003,34.800000000000004,44.7,925,11.200000000000001 +2013,7,14,10,30,856,110,881,2.4000000000000004,36.4,32.12,925,10.600000000000001 +2013,7,14,11,30,962,117,900,1.6,37.300000000000004,20.13,924,10.4 +2013,7,14,12,30,954,373,593,1.1,37.4,11.38,924,10.4 +2013,7,14,13,30,985,136,877,1.5,37,14.450000000000001,923,10.700000000000001 +2013,7,14,14,30,795,390,448,2.5,36.1,25.34,923,11.3 +2013,7,14,15,30,686,298,491,3.8000000000000003,34.7,37.71,922,12 +2013,7,14,16,30,307,270,57,5.1000000000000005,33,50.36,922,13.100000000000001 +2013,7,14,17,30,253,192,135,5.800000000000001,31.900000000000002,62.95,923,14.4 +2013,7,14,18,30,90,87,13,6.5,27.3,75.28,924,16 +2013,7,14,19,30,9,9,0,6.300000000000001,24.400000000000002,87.02,925,17.5 +2013,7,14,20,30,0,0,0,5.7,22.3,98.42,926,18.5 +2013,7,14,21,30,0,0,0,5,21.1,108.54,926,18.900000000000002 +2013,7,14,22,30,0,0,0,4.6000000000000005,20.3,117.04,927,18.7 +2013,7,14,23,30,0,0,0,4.2,19.6,123.14,927,18.400000000000002 +2013,7,15,0,30,0,0,0,3.8000000000000003,19,126.04,928,18.3 +2013,7,15,1,30,0,0,0,3.6,18.6,125.21000000000001,927,18.1 +2013,7,15,2,30,0,0,0,3.4000000000000004,18.3,120.8,927,18 +2013,7,15,3,30,0,0,0,3.3000000000000003,18.1,113.54,927,17.900000000000002 +2013,7,15,4,30,0,0,0,3.3000000000000003,17.900000000000002,104.25,927,17.8 +2013,7,15,5,30,0,0,0,3.4000000000000004,17.8,93.60000000000001,927,17.7 +2013,7,15,6,30,16,16,0,3.6,17.900000000000002,81.96000000000001,928,17.5 +2013,7,15,7,30,5,5,0,3.7,18.3,69.89,928,17.3 +2013,7,15,8,30,71,71,0,3.8000000000000003,19.200000000000003,57.43,928,17.3 +2013,7,15,9,30,118,118,0,3.9000000000000004,20.200000000000003,44.79,929,17.2 +2013,7,15,10,30,91,91,0,3.8000000000000003,21.400000000000002,32.21,928,17.2 +2013,7,15,11,30,173,165,8,3.7,22.700000000000003,20.240000000000002,928,17.3 +2013,7,15,12,30,245,231,14,3.6,23.900000000000002,11.540000000000001,928,17.400000000000002 +2013,7,15,13,30,202,191,11,3.6,24.5,14.56,927,17.5 +2013,7,15,14,30,260,247,14,3.5,24.5,25.400000000000002,927,17.7 +2013,7,15,15,30,209,201,10,3.3000000000000003,24,37.76,927,17.900000000000002 +2013,7,15,16,30,264,245,31,3.1,23.1,50.410000000000004,927,18.3 +2013,7,15,17,30,61,61,0,3,22.6,63,927,18.7 +2013,7,15,18,30,72,72,0,2.3000000000000003,21.1,75.33,928,19.1 +2013,7,15,19,30,16,16,0,1.8,20.3,87.08,928,19.5 +2013,7,15,20,30,0,0,0,1.5,19.900000000000002,98.51,929,19.700000000000003 +2013,7,15,21,30,0,0,0,1.6,19.8,108.65,929,19.8 +2013,7,15,22,30,0,0,0,2.2,19.700000000000003,117.16,930,19.700000000000003 +2013,7,15,23,30,0,0,0,2.8000000000000003,19.6,123.29,929,19.6 +2013,7,16,0,30,0,0,0,3.3000000000000003,19.5,126.2,929,19.5 +2013,7,16,1,30,0,0,0,3.5,19.5,125.37,929,19.5 +2013,7,16,2,30,0,0,0,3.6,19.5,120.96000000000001,929,19.5 +2013,7,16,3,30,0,0,0,3.7,19.6,113.68,929,19.6 +2013,7,16,4,30,0,0,0,4,19.700000000000003,104.38,929,19.700000000000003 +2013,7,16,5,30,0,0,0,4.3,20,93.72,930,20 +2013,7,16,6,30,10,10,0,4.5,20.700000000000003,82.06,930,20.400000000000002 +2013,7,16,7,30,6,6,0,5,21.700000000000003,69.99,931,20.700000000000003 +2013,7,16,8,30,171,167,7,5.300000000000001,22.700000000000003,57.52,931,20.200000000000003 +2013,7,16,9,30,50,50,0,5.1000000000000005,23.5,44.88,932,19.5 +2013,7,16,10,30,370,342,33,4.800000000000001,24.400000000000002,32.3,932,19.200000000000003 +2013,7,16,11,30,441,404,40,4.5,24.900000000000002,20.36,932,19.200000000000003 +2013,7,16,12,30,332,314,18,4.1000000000000005,24.900000000000002,11.700000000000001,932,19 +2013,7,16,13,30,298,282,16,3.7,24.5,14.67,932,19.200000000000003 +2013,7,16,14,30,147,143,4,3.5,24,25.46,932,19.6 +2013,7,16,15,30,200,193,9,3.3000000000000003,23.400000000000002,37.81,932,20 +2013,7,16,16,30,301,267,53,3,22.8,50.46,932,20.400000000000002 +2013,7,16,17,30,41,41,0,2.8000000000000003,22.6,63.06,932,20.8 +2013,7,16,18,30,138,92,185,2.4000000000000004,21.6,75.4,933,21.1 +2013,7,16,19,30,15,15,0,2.5,21,87.16,933,21 +2013,7,16,20,30,0,0,0,2.7,20.8,98.60000000000001,933,20.8 +2013,7,16,21,30,0,0,0,2.8000000000000003,20.6,108.76,934,20.6 +2013,7,16,22,30,0,0,0,2.7,20.5,117.29,934,20.5 +2013,7,16,23,30,0,0,0,2.5,20.5,123.44,934,20.5 +2013,7,17,0,30,0,0,0,2.5,20.400000000000002,126.37,934,20.400000000000002 +2013,7,17,1,30,0,0,0,2.6,20.400000000000002,125.54,934,20.400000000000002 +2013,7,17,2,30,0,0,0,2.8000000000000003,20.3,121.12,933,20.3 +2013,7,17,3,30,0,0,0,2.9000000000000004,20.200000000000003,113.83,933,20.200000000000003 +2013,7,17,4,30,0,0,0,2.8000000000000003,20.1,104.51,933,20.1 +2013,7,17,5,30,0,0,0,2.8000000000000003,20.1,93.83,934,20.1 +2013,7,17,6,30,13,13,0,3.1,20.3,82.17,934,20.3 +2013,7,17,7,30,15,15,0,3.3000000000000003,20.700000000000003,70.09,935,20.700000000000003 +2013,7,17,8,30,122,122,0,3.4000000000000004,21.400000000000002,57.61,935,20.6 +2013,7,17,9,30,274,258,23,3.3000000000000003,22.3,44.97,935,20.5 +2013,7,17,10,30,544,417,150,3.3000000000000003,23.200000000000003,32.4,935,20.3 +2013,7,17,11,30,296,281,16,3.3000000000000003,23.900000000000002,20.48,935,20.3 +2013,7,17,12,30,642,503,142,3.4000000000000004,24.3,11.870000000000001,935,20.400000000000002 +2013,7,17,13,30,766,478,298,3.5,24.3,14.8,934,20.5 +2013,7,17,14,30,616,454,179,3.6,24.1,25.54,934,20.700000000000003 +2013,7,17,15,30,156,152,4,3.6,23.700000000000003,37.87,934,21 +2013,7,17,16,30,126,126,0,3.4000000000000004,23,50.52,934,21.400000000000002 +2013,7,17,17,30,192,174,41,3.2,22.700000000000003,63.120000000000005,934,21.700000000000003 +2013,7,17,18,30,127,93,135,2.6,21.700000000000003,75.46000000000001,934,21.700000000000003 +2013,7,17,19,30,14,14,0,2.4000000000000004,21.200000000000003,87.23,934,21.200000000000003 +2013,7,17,20,30,0,0,0,2.3000000000000003,20.900000000000002,98.7,934,20.900000000000002 +2013,7,17,21,30,0,0,0,2.3000000000000003,20.700000000000003,108.87,934,20.700000000000003 +2013,7,17,22,30,0,0,0,2.3000000000000003,20.5,117.43,934,20.5 +2013,7,17,23,30,0,0,0,2.3000000000000003,20.3,123.60000000000001,934,20.3 +2013,7,18,0,30,0,0,0,2.1,20.1,126.54,934,20.1 +2013,7,18,1,30,0,0,0,1.9000000000000001,20,125.71000000000001,934,20 +2013,7,18,2,30,0,0,0,1.8,19.8,121.28,934,19.8 +2013,7,18,3,30,0,0,0,1.7000000000000002,19.700000000000003,113.98,934,19.700000000000003 +2013,7,18,4,30,0,0,0,1.7000000000000002,19.6,104.64,934,19.6 +2013,7,18,5,30,0,0,0,2,19.8,93.95,934,19.8 +2013,7,18,6,30,27,27,0,2.7,20.400000000000002,82.27,934,20.400000000000002 +2013,7,18,7,30,74,74,0,3.3000000000000003,21.400000000000002,70.18,935,20.6 +2013,7,18,8,30,325,233,172,3.7,22.6,57.71,935,20.400000000000002 +2013,7,18,9,30,475,330,206,3.9000000000000004,23.900000000000002,45.06,934,20.1 +2013,7,18,10,30,620,407,254,4,25,32.5,934,20 +2013,7,18,11,30,601,474,136,3.9000000000000004,25.900000000000002,20.6,934,19.8 +2013,7,18,12,30,586,490,98,3.8000000000000003,26.5,12.05,933,19.700000000000003 +2013,7,18,13,30,980,101,910,3.6,26.8,14.93,932,19.700000000000003 +2013,7,18,14,30,410,377,37,3.4000000000000004,26.8,25.62,932,19.700000000000003 +2013,7,18,15,30,170,166,6,3.2,26.700000000000003,37.93,931,19.6 +2013,7,18,16,30,605,81,824,2.9000000000000004,26.400000000000002,50.58,931,19.700000000000003 +2013,7,18,17,30,403,69,739,2.8000000000000003,26.200000000000003,63.18,931,19.700000000000003 +2013,7,18,18,30,195,50,577,1.5,24.200000000000003,75.54,931,20.400000000000002 +2013,7,18,19,30,25,16,192,1,22.6,87.32000000000001,931,21.3 +2013,7,18,20,30,0,0,0,1,21.8,98.8,931,20.8 +2013,7,18,21,30,0,0,0,1,21.200000000000003,108.99000000000001,931,20.5 +2013,7,18,22,30,0,0,0,1,20.700000000000003,117.57000000000001,931,20.200000000000003 +2013,7,18,23,30,0,0,0,1.1,20.200000000000003,123.76,931,19.900000000000002 +2013,7,19,0,30,0,0,0,1.1,19.8,126.72,931,19.700000000000003 +2013,7,19,1,30,0,0,0,1.1,19.400000000000002,125.89,931,19.400000000000002 +2013,7,19,2,30,0,0,0,1.1,19,121.45,930,19 +2013,7,19,3,30,0,0,0,1.1,18.7,114.13,930,18.7 +2013,7,19,4,30,0,0,0,1.1,18.400000000000002,104.78,930,18.400000000000002 +2013,7,19,5,30,0,0,0,1.5,19.1,94.07000000000001,931,19.1 +2013,7,19,6,30,86,38,362,2.1,20.900000000000002,82.38,931,19.5 +2013,7,19,7,30,281,69,630,2.7,23.5,70.28,931,20 +2013,7,19,8,30,491,87,757,3,25.8,57.800000000000004,931,19.6 +2013,7,19,9,30,685,101,828,3.1,27.200000000000003,45.15,931,19.6 +2013,7,19,10,30,842,111,868,3.1,28.1,32.59,931,19.5 +2013,7,19,11,30,950,117,890,3.1,28.8,20.72,930,19.6 +2013,7,19,12,30,1000,116,905,3,29.3,12.22,929,19.6 +2013,7,19,13,30,987,113,905,2.9000000000000004,29.5,15.06,929,19.6 +2013,7,19,14,30,912,108,892,2.8000000000000003,29.5,25.7,928,19.5 +2013,7,19,15,30,783,101,864,2.7,29.200000000000003,38,927,19.400000000000002 +2013,7,19,16,30,607,90,815,2.7,28.6,50.64,927,19.3 +2013,7,19,17,30,404,76,729,2.6,28.200000000000003,63.25,927,19.200000000000003 +2013,7,19,18,30,194,55,561,1.6,25.6,75.62,927,20.3 +2013,7,19,19,30,24,17,170,1.3,23.900000000000002,87.4,928,21.1 +2013,7,19,20,30,0,0,0,1.3,23,98.9,928,20.400000000000002 +2013,7,19,21,30,0,0,0,1.5,22.400000000000002,109.12,929,20 +2013,7,19,22,30,0,0,0,1.8,21.900000000000002,117.72,929,19.700000000000003 +2013,7,19,23,30,0,0,0,2.2,21.400000000000002,123.93,928,19.3 +2013,7,20,0,30,0,0,0,2.4000000000000004,20.8,126.9,928,19.1 +2013,7,20,1,30,0,0,0,2.4000000000000004,20.200000000000003,126.08,928,18.900000000000002 +2013,7,20,2,30,0,0,0,2.2,19.6,121.63,928,18.900000000000002 +2013,7,20,3,30,0,0,0,1.9000000000000001,19.200000000000003,114.29,928,18.8 +2013,7,20,4,30,0,0,0,1.7000000000000002,18.900000000000002,104.92,928,18.8 +2013,7,20,5,30,0,0,0,2.3000000000000003,19.400000000000002,94.2,928,18.900000000000002 +2013,7,20,6,30,85,36,373,2.9000000000000004,21.3,82.49,928,19.3 +2013,7,20,7,30,281,65,643,3.4000000000000004,23.900000000000002,70.38,928,20 +2013,7,20,8,30,492,83,771,3.3000000000000003,26.400000000000002,57.89,928,20.1 +2013,7,20,9,30,686,95,839,2.7,27.900000000000002,45.25,928,20.1 +2013,7,20,10,30,843,105,876,2.5,29,32.7,928,20 +2013,7,20,11,30,950,113,895,2.6,29.700000000000003,20.85,927,19.900000000000002 +2013,7,20,12,30,1002,102,922,2.9000000000000004,30.1,12.41,927,19.700000000000003 +2013,7,20,13,30,986,105,912,3.1,30.3,15.200000000000001,926,19.5 +2013,7,20,14,30,909,105,893,3.3000000000000003,30.200000000000003,25.79,926,19.3 +2013,7,20,15,30,778,100,861,3.3000000000000003,29.900000000000002,38.07,925,19.1 +2013,7,20,16,30,602,91,808,3.2,29.3,50.71,925,19 +2013,7,20,17,30,399,77,717,3.1,28.900000000000002,63.33,925,19 +2013,7,20,18,30,155,80,304,1.9000000000000001,26.400000000000002,75.7,925,20.200000000000003 +2013,7,20,19,30,23,16,161,1.6,24.700000000000003,87.5,926,20.900000000000002 +2013,7,20,20,30,0,0,0,1.6,23.8,99.02,926,20.5 +2013,7,20,21,30,0,0,0,1.8,23.1,109.25,927,20.3 +2013,7,20,22,30,0,0,0,1.9000000000000001,22.5,117.87,927,20.1 +2013,7,20,23,30,0,0,0,2.1,22,124.11,927,20 +2013,7,21,0,30,0,0,0,2.2,21.400000000000002,127.09,926,19.900000000000002 +2013,7,21,1,30,0,0,0,2.2,20.900000000000002,126.27,926,19.8 +2013,7,21,2,30,0,0,0,2,20.5,121.81,926,19.6 +2013,7,21,3,30,0,0,0,1.9000000000000001,20.200000000000003,114.45,926,19.3 +2013,7,21,4,30,0,0,0,2,19.900000000000002,105.06,926,19.1 +2013,7,21,5,30,0,0,0,2.5,20.3,94.32000000000001,926,18.900000000000002 +2013,7,21,6,30,83,35,376,3.1,22,82.60000000000001,927,19.1 +2013,7,21,7,30,279,62,651,3.6,24.400000000000002,70.49,927,19.400000000000002 +2013,7,21,8,30,490,77,780,3.8000000000000003,26.700000000000003,57.99,927,19.200000000000003 +2013,7,21,9,30,685,87,850,3.6,28.5,45.34,927,19 +2013,7,21,10,30,844,93,893,3.5,29.8,32.8,927,18.900000000000002 +2013,7,21,11,30,953,96,917,3.7,30.8,20.98,926,18.900000000000002 +2013,7,21,12,30,1002,97,928,4,31.400000000000002,12.6,926,18.900000000000002 +2013,7,21,13,30,989,96,926,4.1000000000000005,31.700000000000003,15.35,925,18.900000000000002 +2013,7,21,14,30,914,92,914,4.1000000000000005,31.700000000000003,25.89,925,18.900000000000002 +2013,7,21,15,30,780,96,869,4.1000000000000005,31.400000000000002,38.15,924,18.8 +2013,7,21,16,30,603,88,815,4,30.700000000000003,50.79,924,18.8 +2013,7,21,17,30,398,76,721,3.9000000000000004,30.200000000000003,63.410000000000004,924,19 +2013,7,21,18,30,188,55,544,2.7,27.400000000000002,75.79,925,20 +2013,7,21,19,30,22,16,143,2.5,25.700000000000003,87.59,925,20.5 +2013,7,21,20,30,0,0,0,2.8000000000000003,25,99.13,926,20.3 +2013,7,21,21,30,0,0,0,2.9000000000000004,24.3,109.39,926,20.400000000000002 +2013,7,21,22,30,0,0,0,2.9000000000000004,23.6,118.03,927,20.400000000000002 +2013,7,21,23,30,0,0,0,2.9000000000000004,23,124.29,927,20.400000000000002 +2013,7,22,0,30,0,0,0,2.7,22.5,127.29,927,20.3 +2013,7,22,1,30,0,0,0,2.5,21.900000000000002,126.46000000000001,926,20.200000000000003 +2013,7,22,2,30,0,0,0,2.3000000000000003,21.400000000000002,121.99000000000001,926,20.1 +2013,7,22,3,30,0,0,0,2.2,21,114.61,927,20.1 +2013,7,22,4,30,0,0,0,2.2,20.700000000000003,105.2,927,20.1 +2013,7,22,5,30,0,0,0,2.6,21,94.45,927,20.1 +2013,7,22,6,30,76,41,281,3.4000000000000004,22.5,82.71000000000001,927,20.3 +2013,7,22,7,30,266,79,564,4.1000000000000005,24.8,70.59,927,20.6 +2013,7,22,8,30,473,102,701,4.3,26.8,58.08,927,20.8 +2013,7,22,9,30,663,120,775,4.2,28.5,45.43,927,21 +2013,7,22,10,30,816,137,809,4.1000000000000005,29.6,32.9,927,21 +2013,7,22,11,30,920,151,824,4.1000000000000005,30.200000000000003,21.11,927,21 +2013,7,22,12,30,970,149,841,4.3,30.5,12.790000000000001,926,20.900000000000002 +2013,7,22,13,30,895,427,486,4.5,30.5,15.51,926,21 +2013,7,22,14,30,878,148,813,4.800000000000001,30.3,25.990000000000002,925,21.1 +2013,7,22,15,30,752,132,790,4.9,30.1,38.24,925,21.1 +2013,7,22,16,30,582,113,743,4.7,29.6,50.870000000000005,925,21 +2013,7,22,17,30,383,91,653,4.6000000000000005,29.3,63.49,925,20.8 +2013,7,22,18,30,179,62,482,3.2,27.400000000000002,75.88,925,21.1 +2013,7,22,19,30,12,12,0,2.6,26.200000000000003,87.69,925,21.1 +2013,7,22,20,30,0,0,0,2.6,25.5,99.26,926,20.8 +2013,7,22,21,30,0,0,0,2.8000000000000003,25,109.53,926,20.700000000000003 +2013,7,22,22,30,0,0,0,2.8000000000000003,24.400000000000002,118.2,927,20.6 +2013,7,22,23,30,0,0,0,2.6,23.8,124.48,927,20.5 +2013,7,23,0,30,0,0,0,2.4000000000000004,23.200000000000003,127.49000000000001,927,20.400000000000002 +2013,7,23,1,30,0,0,0,2.5,22.700000000000003,126.66,927,20.3 +2013,7,23,2,30,0,0,0,2.8000000000000003,22.3,122.18,927,20.200000000000003 +2013,7,23,3,30,0,0,0,3.1,21.900000000000002,114.78,927,20.200000000000003 +2013,7,23,4,30,0,0,0,3.3000000000000003,21.6,105.35000000000001,927,20.3 +2013,7,23,5,30,0,0,0,3.6,21.8,94.58,927,20.400000000000002 +2013,7,23,6,30,76,39,300,4.6000000000000005,23.1,82.82000000000001,927,20.700000000000003 +2013,7,23,7,30,268,72,592,5.4,25.400000000000002,70.69,927,21.1 +2013,7,23,8,30,477,91,733,5.300000000000001,27.8,58.18,927,21.400000000000002 +2013,7,23,9,30,670,103,809,4.9,29.8,45.53,927,21.400000000000002 +2013,7,23,10,30,827,114,850,4.5,31.400000000000002,33,927,21.400000000000002 +2013,7,23,11,30,932,122,870,4.3,32.5,21.240000000000002,927,21.400000000000002 +2013,7,23,12,30,985,110,898,4.2,33.1,12.99,926,21.3 +2013,7,23,13,30,969,113,890,4.2,33.300000000000004,15.67,926,21.200000000000003 +2013,7,23,14,30,892,113,867,4.2,33.2,26.1,925,21.1 +2013,7,23,15,30,761,111,827,4.3,32.800000000000004,38.33,925,21 +2013,7,23,16,30,586,103,767,4.3,32,50.95,924,20.900000000000002 +2013,7,23,17,30,384,87,666,4.3,31.5,63.58,924,21 +2013,7,23,18,30,178,62,478,3.3000000000000003,28.900000000000002,75.98,924,21.5 +2013,7,23,19,30,19,15,84,3.2,27.6,87.8,925,21.6 +2013,7,23,20,30,0,0,0,3.2,26.8,99.38,925,21.5 +2013,7,23,21,30,0,0,0,2.9000000000000004,26.200000000000003,109.68,926,21.400000000000002 +2013,7,23,22,30,0,0,0,2.7,25.6,118.37,926,21.200000000000003 +2013,7,23,23,30,0,0,0,2.5,25.1,124.67,926,21 +2013,7,24,0,30,0,0,0,2.6,24.700000000000003,127.69,926,20.700000000000003 +2013,7,24,1,30,0,0,0,2.8000000000000003,24.3,126.87,926,20.3 +2013,7,24,2,30,0,0,0,3,23.8,122.37,926,19.6 +2013,7,24,3,30,0,0,0,3,23.200000000000003,114.95,926,18.900000000000002 +2013,7,24,4,30,0,0,0,3,22.5,105.5,926,18.5 +2013,7,24,5,30,0,0,0,3.3000000000000003,22.3,94.7,927,18.400000000000002 +2013,7,24,6,30,74,40,280,3.6,23,82.94,927,18.5 +2013,7,24,7,30,268,76,584,3.7,24.700000000000003,70.79,927,18.900000000000002 +2013,7,24,8,30,480,95,732,3.7,26.900000000000002,58.28,927,19.400000000000002 +2013,7,24,9,30,675,107,813,3.4000000000000004,29,45.63,927,19.700000000000003 +2013,7,24,10,30,834,115,858,2.9000000000000004,30.8,33.11,927,19.6 +2013,7,24,11,30,797,409,417,2.7,32.1,21.38,927,19.700000000000003 +2013,7,24,12,30,859,452,417,2.8000000000000003,32.800000000000004,13.19,927,20 +2013,7,24,13,30,794,435,373,3.1,32.6,15.85,927,20.200000000000003 +2013,7,24,14,30,740,390,390,3.1,32.1,26.21,927,20.400000000000002 +2013,7,24,15,30,689,287,514,3,31.5,38.42,927,20.5 +2013,7,24,16,30,591,102,778,2.5,30.700000000000003,51.04,927,20.6 +2013,7,24,17,30,387,87,677,2.2,30.3,63.67,927,21.200000000000003 +2013,7,24,18,30,179,62,486,1.2000000000000002,28,76.08,927,22.5 +2013,7,24,19,30,18,15,81,1.1,26.8,87.91,927,22.200000000000003 +2013,7,24,20,30,0,0,0,1.2000000000000002,26.200000000000003,99.52,928,21.700000000000003 +2013,7,24,21,30,0,0,0,1.4000000000000001,25.8,109.83,928,21.5 +2013,7,24,22,30,0,0,0,1.5,25.400000000000002,118.55,928,21.400000000000002 +2013,7,24,23,30,0,0,0,1.6,25,124.87,928,21.3 +2013,7,25,0,30,0,0,0,1.8,24.6,127.91,928,21.200000000000003 +2013,7,25,1,30,0,0,0,1.8,24.200000000000003,127.08,928,21.1 +2013,7,25,2,30,0,0,0,1.8,23.900000000000002,122.56,929,21 +2013,7,25,3,30,0,0,0,1.6,23.6,115.12,929,20.8 +2013,7,25,4,30,0,0,0,1.2000000000000002,23.200000000000003,105.65,929,20.6 +2013,7,25,5,30,0,0,0,1,23.200000000000003,94.84,929,20.400000000000002 +2013,7,25,6,30,72,40,265,1.2000000000000002,23.900000000000002,83.05,929,20.6 +2013,7,25,7,30,264,77,571,1.3,25.3,70.9,930,20.3 +2013,7,25,8,30,474,97,719,1.3,27,58.38,930,19.900000000000002 +2013,7,25,9,30,669,110,800,1.3,28.6,45.72,930,19.6 +2013,7,25,10,30,828,117,850,1.4000000000000001,29.8,33.22,930,19.900000000000002 +2013,7,25,11,30,801,408,423,1.7000000000000002,30.200000000000003,21.52,930,20.3 +2013,7,25,12,30,784,462,331,2.1,30.200000000000003,13.4,930,20.6 +2013,7,25,13,30,450,413,39,2.5,30.1,16.02,930,20.900000000000002 +2013,7,25,14,30,823,364,512,2.8000000000000003,29.8,26.330000000000002,929,21.200000000000003 +2013,7,25,15,30,756,127,805,3,29.400000000000002,38.52,929,21.400000000000002 +2013,7,25,16,30,581,112,747,3,28.8,51.14,929,21.5 +2013,7,25,17,30,169,159,22,3,28.5,63.77,929,21.900000000000002 +2013,7,25,18,30,98,87,46,2.5,26.8,76.19,929,22.400000000000002 +2013,7,25,19,30,9,9,0,2.6,25.900000000000002,88.02,929,22.3 +2013,7,25,20,30,0,0,0,2.9000000000000004,25.5,99.66,929,22.1 +2013,7,25,21,30,0,0,0,3.1,25.1,109.99000000000001,929,21.900000000000002 +2013,7,25,22,30,0,0,0,3.2,24.700000000000003,118.73,929,21.6 +2013,7,25,23,30,0,0,0,3.2,24.200000000000003,125.08,929,21.3 +2013,7,26,0,30,0,0,0,3,23.8,128.13,929,21 +2013,7,26,1,30,0,0,0,2.8000000000000003,23.400000000000002,127.3,928,20.700000000000003 +2013,7,26,2,30,0,0,0,2.7,23.1,122.76,928,20.5 +2013,7,26,3,30,0,0,0,2.6,22.700000000000003,115.29,928,20.200000000000003 +2013,7,26,4,30,0,0,0,2.6,22.200000000000003,105.8,928,19.900000000000002 +2013,7,26,5,30,0,0,0,2.8000000000000003,22.200000000000003,94.97,928,19.700000000000003 +2013,7,26,6,30,21,21,0,3.2,23.1,83.17,929,19.6 +2013,7,26,7,30,190,124,205,3.7,25.200000000000003,71,929,19.6 +2013,7,26,8,30,376,206,325,4.1000000000000005,27.900000000000002,58.47,929,19.3 +2013,7,26,9,30,663,118,783,4,30.3,45.82,929,18.8 +2013,7,26,10,30,795,261,639,3.7,32.300000000000004,33.33,929,18.3 +2013,7,26,11,30,927,133,855,3.5,33.7,21.67,928,18.2 +2013,7,26,12,30,975,137,862,3.8000000000000003,34.4,13.620000000000001,928,18.5 +2013,7,26,13,30,881,433,466,4.3,34.2,16.21,927,18.7 +2013,7,26,14,30,883,140,829,4.7,33.5,26.46,927,18.7 +2013,7,26,15,30,756,128,804,5,32.9,38.63,927,18.400000000000002 +2013,7,26,16,30,587,106,769,5,32,51.24,927,17.900000000000002 +2013,7,26,17,30,388,82,693,5,31.5,63.88,927,17.5 +2013,7,26,18,30,180,55,529,4,28.200000000000003,76.3,928,17.6 +2013,7,26,19,30,17,13,127,3.5,26.1,88.14,929,18 +2013,7,26,20,30,0,0,0,3.4000000000000004,24.8,99.8,930,18.2 +2013,7,26,21,30,0,0,0,3.1,23.8,110.16,930,18.400000000000002 +2013,7,26,22,30,0,0,0,2.8000000000000003,23,118.92,931,18.7 +2013,7,26,23,30,0,0,0,2.7,22.3,125.29,931,18.8 +2013,7,27,0,30,0,0,0,2.7,21.700000000000003,128.35,931,18.8 +2013,7,27,1,30,0,0,0,2.5,21,127.52,930,18.7 +2013,7,27,2,30,0,0,0,2.3000000000000003,20.1,122.96000000000001,930,18.6 +2013,7,27,3,30,0,0,0,2.2,19.400000000000002,115.47,930,18.5 +2013,7,27,4,30,0,0,0,2.1,18.900000000000002,105.95,930,18.5 +2013,7,27,5,30,0,0,0,2.6,19.1,95.10000000000001,930,18.400000000000002 +2013,7,27,6,30,76,35,357,3.4000000000000004,20.8,83.28,931,18.400000000000002 +2013,7,27,7,30,277,65,653,3.8000000000000003,23.1,71.11,931,18 +2013,7,27,8,30,430,150,538,3.8000000000000003,25.1,58.57,931,17.5 +2013,7,27,9,30,606,225,549,3.6,26.900000000000002,45.92,931,17.2 +2013,7,27,10,30,836,184,782,3.5,28.400000000000002,33.44,931,17 +2013,7,27,11,30,841,405,470,3.4000000000000004,29.700000000000003,21.81,930,16.7 +2013,7,27,12,30,968,313,675,3.4000000000000004,30.700000000000003,13.83,929,16.2 +2013,7,27,13,30,958,298,689,3.4000000000000004,31.200000000000003,16.4,929,15.8 +2013,7,27,14,30,931,93,938,3.4000000000000004,31.400000000000002,26.59,928,15.4 +2013,7,27,15,30,796,87,909,3.4000000000000004,31.1,38.74,928,15 +2013,7,27,16,30,616,79,859,3.3000000000000003,30.3,51.35,927,14.4 +2013,7,27,17,30,328,148,409,3.3000000000000003,29.8,63.980000000000004,927,13.8 +2013,7,27,18,30,155,71,358,1.9000000000000001,26.200000000000003,76.41,927,14.700000000000001 +2013,7,27,19,30,17,13,146,1.4000000000000001,23.900000000000002,88.26,927,15.8 +2013,7,27,20,30,0,0,0,1.5,23,99.95,928,15.3 +2013,7,27,21,30,0,0,0,1.7000000000000002,22.3,110.33,928,15 +2013,7,27,22,30,0,0,0,1.9000000000000001,21.700000000000003,119.12,928,14.8 +2013,7,27,23,30,0,0,0,2.1,21,125.51,928,14.600000000000001 +2013,7,28,0,30,0,0,0,2.2,20.3,128.58,928,14.700000000000001 +2013,7,28,1,30,0,0,0,2.1,19.700000000000003,127.74000000000001,928,14.8 +2013,7,28,2,30,0,0,0,2,19,123.16,928,15.100000000000001 +2013,7,28,3,30,0,0,0,1.8,18.3,115.65,928,15.4 +2013,7,28,4,30,0,0,0,1.8,17.7,106.11,928,15.600000000000001 +2013,7,28,5,30,0,0,0,2.2,18,95.24,928,15.8 +2013,7,28,6,30,78,32,407,3,19.900000000000002,83.4,928,16.1 +2013,7,28,7,30,282,59,692,3.5,22.700000000000003,71.22,928,16.3 +2013,7,28,8,30,501,75,820,3.4000000000000004,25.200000000000003,58.67,928,16.2 +2013,7,28,9,30,700,84,887,2.9000000000000004,27.200000000000003,46.02,928,15.600000000000001 +2013,7,28,10,30,862,91,925,2.6,28.900000000000002,33.55,927,14.9 +2013,7,28,11,30,971,95,945,2.6,30.3,21.96,927,14.3 +2013,7,28,12,30,1018,103,943,2.7,31.400000000000002,14.06,926,14 +2013,7,28,13,30,1001,103,938,2.9000000000000004,32.2,16.59,925,13.700000000000001 +2013,7,28,14,30,920,100,918,3.1,32.6,26.73,925,13.700000000000001 +2013,7,28,15,30,782,101,875,3.3000000000000003,32.6,38.85,924,13.700000000000001 +2013,7,28,16,30,600,93,814,3.4000000000000004,32.1,51.46,924,13.700000000000001 +2013,7,28,17,30,389,82,702,3.4000000000000004,31.700000000000003,64.1,924,14 +2013,7,28,18,30,126,84,182,2.3000000000000003,28.6,76.54,924,16 +2013,7,28,19,30,13,12,37,2.3000000000000003,26.900000000000002,88.39,925,16.5 +2013,7,28,20,30,0,0,0,3,26.5,100.10000000000001,925,16.2 +2013,7,28,21,30,0,0,0,3.6,26.200000000000003,110.5,925,16.7 +2013,7,28,22,30,0,0,0,3.9000000000000004,25.700000000000003,119.32000000000001,925,17.6 +2013,7,28,23,30,0,0,0,3.8000000000000003,25.3,125.73,925,18.5 +2013,7,29,0,30,0,0,0,3.6,24.900000000000002,128.81,925,19.200000000000003 +2013,7,29,1,30,0,0,0,3.4000000000000004,24.5,127.97,925,19.6 +2013,7,29,2,30,0,0,0,3.4000000000000004,24,123.37,925,19.900000000000002 +2013,7,29,3,30,0,0,0,3.5,23.6,115.83,925,19.900000000000002 +2013,7,29,4,30,0,0,0,3.6,23.200000000000003,106.26,926,19.900000000000002 +2013,7,29,5,30,0,0,0,3.9000000000000004,23.1,95.37,926,20.1 +2013,7,29,6,30,31,31,0,4.7,24,83.52,927,20.5 +2013,7,29,7,30,114,110,12,5.6000000000000005,25.5,71.32000000000001,927,21.1 +2013,7,29,8,30,441,145,570,5.800000000000001,27.400000000000002,58.78,927,21.1 +2013,7,29,9,30,635,159,687,5.800000000000001,29.200000000000003,46.12,927,20.700000000000003 +2013,7,29,10,30,547,412,163,5.7,30.6,33.67,927,20.400000000000002 +2013,7,29,11,30,810,408,433,5.4,31.6,22.12,927,20.1 +2013,7,29,12,30,523,461,64,5.2,32.1,14.280000000000001,927,20 +2013,7,29,13,30,845,438,425,4.9,32.1,16.8,926,19.8 +2013,7,29,14,30,677,436,270,4.4,31.8,26.88,926,19.700000000000003 +2013,7,29,15,30,743,132,785,3.8000000000000003,31.200000000000003,38.97,926,19.700000000000003 +2013,7,29,16,30,568,118,725,2.9000000000000004,30.5,51.57,926,19.900000000000002 +2013,7,29,17,30,325,146,411,2.3000000000000003,30.200000000000003,64.22,926,20.900000000000002 +2013,7,29,18,30,85,81,21,1.5,28.200000000000003,76.66,926,21.900000000000002 +2013,7,29,19,30,5,5,0,1.8,27.200000000000003,88.51,927,21 +2013,7,29,20,30,0,0,0,2.2,26.700000000000003,100.26,927,20.1 +2013,7,29,21,30,0,0,0,2.6,26.1,110.69,928,19.3 +2013,7,29,22,30,0,0,0,2.6,25.3,119.52,928,18.7 +2013,7,29,23,30,0,0,0,2.8000000000000003,24.5,125.96000000000001,928,18.400000000000002 +2013,7,30,0,30,0,0,0,3.2,23.900000000000002,129.05,928,18 +2013,7,30,1,30,0,0,0,3.6,23.3,128.2,928,17.6 +2013,7,30,2,30,0,0,0,3.8000000000000003,22.8,123.59,928,17.3 +2013,7,30,3,30,0,0,0,3.8000000000000003,22.5,116.02,928,17.400000000000002 +2013,7,30,4,30,0,0,0,3.8000000000000003,22.400000000000002,106.42,929,18 +2013,7,30,5,30,0,0,0,4,22.400000000000002,95.51,929,18.8 +2013,7,30,6,30,36,36,5,4.800000000000001,23.3,83.63,929,19.6 +2013,7,30,7,30,192,118,230,5.6000000000000005,25.1,71.43,930,20.400000000000002 +2013,7,30,8,30,338,219,232,5.7,27.5,58.88,930,20.5 +2013,7,30,9,30,388,318,101,5.1000000000000005,29.700000000000003,46.230000000000004,930,20 +2013,7,30,10,30,709,331,455,4.4,31.400000000000002,33.78,930,19.700000000000003 +2013,7,30,11,30,811,407,436,3.7,32.6,22.27,929,19.6 +2013,7,30,12,30,870,448,436,3.2,33.300000000000004,14.52,929,19.6 +2013,7,30,13,30,859,436,442,2.7,33.6,17.01,929,19.6 +2013,7,30,14,30,786,377,459,2.4000000000000004,33.7,27.03,928,19.700000000000003 +2013,7,30,15,30,649,299,450,2.3000000000000003,33.7,39.1,928,19.700000000000003 +2013,7,30,16,30,453,263,305,2.2,33.300000000000004,51.69,928,19.700000000000003 +2013,7,30,17,30,310,156,354,2.1,33,64.34,928,20.1 +2013,7,30,18,30,146,71,329,1.5,30.3,76.79,928,21.700000000000003 +2013,7,30,19,30,8,8,0,1.5,28.700000000000003,88.65,928,21.3 +2013,7,30,20,30,0,0,0,1.7000000000000002,27.900000000000002,100.42,928,20.8 +2013,7,30,21,30,0,0,0,1.8,27.3,110.87,929,20.6 +2013,7,30,22,30,0,0,0,1.9000000000000001,26.900000000000002,119.73,929,20.400000000000002 +2013,7,30,23,30,0,0,0,2.2,26.5,126.19,929,20.3 +2013,7,31,0,30,0,0,0,2.5,26.3,129.3,929,20 +2013,7,31,1,30,0,0,0,2.7,26,128.44,929,19.700000000000003 +2013,7,31,2,30,0,0,0,3,25.6,123.8,929,19.400000000000002 +2013,7,31,3,30,0,0,0,3.2,25,116.21000000000001,929,19.1 +2013,7,31,4,30,0,0,0,3.4000000000000004,24.5,106.58,930,19 +2013,7,31,5,30,0,0,0,3.7,24.3,95.65,931,19 +2013,7,31,6,30,42,36,50,3.9000000000000004,25.200000000000003,83.75,931,19.1 +2013,7,31,7,30,239,105,425,3.8000000000000003,27.200000000000003,71.54,932,19.3 +2013,7,31,8,30,449,137,605,3.1,29.6,58.980000000000004,932,19.3 +2013,7,31,9,30,643,158,702,2,31.8,46.33,931,19.3 +2013,7,31,10,30,800,172,757,1.3,33.4,33.9,931,19.5 +2013,7,31,11,30,878,354,568,1.6,34.4,22.43,931,19.8 +2013,7,31,12,30,964,161,830,2.3000000000000003,34.800000000000004,14.75,930,20 +2013,7,31,13,30,948,160,825,2.8000000000000003,34.6,17.22,929,20.1 +2013,7,31,14,30,871,155,804,3.1,34.1,27.19,929,20 +2013,7,31,15,30,413,355,74,3.1,33.5,39.230000000000004,929,19.900000000000002 +2013,7,31,16,30,490,240,404,2.8000000000000003,32.800000000000004,51.82,929,19.700000000000003 +2013,7,31,17,30,129,129,0,2.5,32.4,64.47,929,19.700000000000003 +2013,7,31,18,30,158,70,389,1.3,30.200000000000003,76.93,929,20.700000000000003 +2013,7,31,19,30,7,7,0,1,28.8,88.79,929,20.6 +2013,7,31,20,30,0,0,0,0.9,28,100.59,930,20.1 +2013,7,31,21,30,0,0,0,0.8,27.5,111.06,930,19.8 +2013,7,31,22,30,0,0,0,0.8,27,119.95,930,19.5 +2013,7,31,23,30,0,0,0,0.9,26.5,126.43,930,19.400000000000002 +2013,8,1,0,30,0,0,0,1.1,25.900000000000002,129.55,930,19.3 +2013,8,1,1,30,0,0,0,1.2000000000000002,25.400000000000002,128.68,930,19.400000000000002 +2013,8,1,2,30,0,0,0,1.2000000000000002,24.900000000000002,124.02,929,19.6 +2013,8,1,3,30,0,0,0,1.1,24.400000000000002,116.4,929,19.900000000000002 +2013,8,1,4,30,0,0,0,0.9,24,106.75,929,20.3 +2013,8,1,5,30,0,0,0,1.1,24.1,95.79,930,20.6 +2013,8,1,6,30,46,36,97,1.4000000000000001,25.3,83.87,930,21.1 +2013,8,1,7,30,163,123,127,1.5,27.400000000000002,71.65,930,21 +2013,8,1,8,30,405,175,447,1.5,29.700000000000003,59.08,930,20.8 +2013,8,1,9,30,593,227,531,1.9000000000000001,31.400000000000002,46.44,930,20.400000000000002 +2013,8,1,10,30,793,250,655,2.3000000000000003,32.5,34.02,930,20.400000000000002 +2013,8,1,11,30,926,126,867,2.5,33.1,22.59,930,20.200000000000003 +2013,8,1,12,30,979,119,891,2.5,33.300000000000004,15,929,19.900000000000002 +2013,8,1,13,30,966,116,891,2.2,33.300000000000004,17.45,929,19.5 +2013,8,1,14,30,890,111,878,1.9000000000000001,33.2,27.35,928,19.1 +2013,8,1,15,30,757,108,839,1.7000000000000002,32.9,39.37,927,18.7 +2013,8,1,16,30,379,281,160,1.6,32.6,51.95,927,18.2 +2013,8,1,17,30,289,165,289,1.6,32.300000000000004,64.6,927,18 +2013,8,1,18,30,143,69,328,1,29.700000000000003,77.07000000000001,927,19.5 +2013,8,1,19,30,5,5,0,1,27.8,88.93,927,19.8 +2013,8,1,20,30,0,0,0,1.2000000000000002,26.900000000000002,100.76,928,19.3 +2013,8,1,21,30,0,0,0,1.5,26.400000000000002,111.26,928,19.1 +2013,8,1,22,30,0,0,0,1.7000000000000002,26,120.17,928,19 +2013,8,1,23,30,0,0,0,2,25.700000000000003,126.68,927,19 +2013,8,2,0,30,0,0,0,2.1,25.400000000000002,129.81,927,19 +2013,8,2,1,30,0,0,0,2.2,25,128.93,927,19.1 +2013,8,2,2,30,0,0,0,2.2,24.700000000000003,124.24000000000001,926,19.1 +2013,8,2,3,30,0,0,0,2.3000000000000003,24.200000000000003,116.59,926,19.1 +2013,8,2,4,30,0,0,0,2.6,23.8,106.91,926,19 +2013,8,2,5,30,0,0,0,3.2,23.8,95.93,927,18.7 +2013,8,2,6,30,62,35,263,4.2,24.900000000000002,83.99,927,18.2 +2013,8,2,7,30,255,72,586,5.300000000000001,27.200000000000003,71.76,928,17.400000000000002 +2013,8,2,8,30,471,92,739,5.9,30,59.19,928,15.8 +2013,8,2,9,30,670,105,820,5.6000000000000005,32.7,46.54,928,14.8 +2013,8,2,10,30,832,115,866,5,34.7,34.14,928,15.100000000000001 +2013,8,2,11,30,941,120,890,4.6000000000000005,36.1,22.76,927,15.600000000000001 +2013,8,2,12,30,993,118,907,4.4,37,15.24,926,15.8 +2013,8,2,13,30,977,118,901,4.3,37.4,17.67,925,15.600000000000001 +2013,8,2,14,30,899,116,882,4.3,37.5,27.52,925,15.600000000000001 +2013,8,2,15,30,766,106,855,4.2,37.1,39.51,924,15.5 +2013,8,2,16,30,586,95,798,4.1000000000000005,36.300000000000004,52.08,924,15.4 +2013,8,2,17,30,377,80,697,4.1000000000000005,35.800000000000004,64.74,924,15.4 +2013,8,2,18,30,166,55,501,2.7,32.1,77.22,924,16.3 +2013,8,2,19,30,0,0,0,2.6,29.900000000000002,89.07000000000001,925,17.1 +2013,8,2,20,30,0,0,0,3.3000000000000003,29,100.94,925,16.6 +2013,8,2,21,30,0,0,0,4,28.200000000000003,111.46000000000001,926,16.3 +2013,8,2,22,30,0,0,0,4.3,27.3,120.4,926,15.9 +2013,8,2,23,30,0,0,0,4.4,26.400000000000002,126.93,926,15.4 +2013,8,3,0,30,0,0,0,4.4,25.5,130.07,927,15.100000000000001 +2013,8,3,1,30,0,0,0,4.4,24.900000000000002,129.18,927,14.9 +2013,8,3,2,30,0,0,0,4.2,24.3,124.47,927,14.9 +2013,8,3,3,30,0,0,0,4.1000000000000005,23.8,116.78,927,15.200000000000001 +2013,8,3,4,30,0,0,0,4.1000000000000005,23.200000000000003,107.07000000000001,927,15.9 +2013,8,3,5,30,0,0,0,4.1000000000000005,23,96.07000000000001,927,16.8 +2013,8,3,6,30,62,33,284,4.9,24.200000000000003,84.11,928,17.6 +2013,8,3,7,30,259,68,614,5.7,26.8,71.87,928,18.1 +2013,8,3,8,30,476,86,763,5.6000000000000005,29.8,59.29,928,17.7 +2013,8,3,9,30,676,98,843,5,32.4,46.65,928,17 +2013,8,3,10,30,839,105,888,4.2,34.5,34.27,928,16.3 +2013,8,3,11,30,949,110,911,3.8000000000000003,36,22.93,928,15.8 +2013,8,3,12,30,1002,105,930,3.6,37,15.49,927,15.4 +2013,8,3,13,30,986,104,927,3.6,37.6,17.91,926,15.200000000000001 +2013,8,3,14,30,906,100,910,3.8000000000000003,37.7,27.7,926,15.200000000000001 +2013,8,3,15,30,771,94,880,4,37.300000000000004,39.660000000000004,926,15.200000000000001 +2013,8,3,16,30,589,85,823,4.1000000000000005,36.4,52.22,926,15.4 +2013,8,3,17,30,380,71,727,4.1000000000000005,35.9,64.88,926,15.5 +2013,8,3,18,30,167,50,534,2.8000000000000003,32.4,77.36,926,16.1 +2013,8,3,19,30,0,0,0,2.7,30.3,89.22,927,17 +2013,8,3,20,30,0,0,0,3.4000000000000004,29.400000000000002,101.12,928,16.7 +2013,8,3,21,30,0,0,0,3.8000000000000003,28.5,111.66,928,16.3 +2013,8,3,22,30,0,0,0,3.8000000000000003,27.5,120.63,929,15.8 +2013,8,3,23,30,0,0,0,3.7,26.6,127.18,929,15.3 +2013,8,4,0,30,0,0,0,3.5,25.700000000000003,130.33,929,14.9 +2013,8,4,1,30,0,0,0,3.6,25.1,129.44,929,14.9 +2013,8,4,2,30,0,0,0,3.7,24.6,124.69,929,14.9 +2013,8,4,3,30,0,0,0,3.5,24,116.98,929,15.600000000000001 +2013,8,4,4,30,0,0,0,3.4000000000000004,23.5,107.24000000000001,930,16.900000000000002 +2013,8,4,5,30,0,0,0,3.5,23.400000000000002,96.21000000000001,930,18.2 +2013,8,4,6,30,60,31,289,4.4,24.6,84.23,931,19.400000000000002 +2013,8,4,7,30,254,65,610,5.1000000000000005,27,71.98,931,20.3 +2013,8,4,8,30,466,84,752,4.800000000000001,29.400000000000002,59.4,931,20.400000000000002 +2013,8,4,9,30,663,96,828,4.2,31.6,46.76,930,20 +2013,8,4,10,30,823,107,869,3.7,33.2,34.39,930,19.6 +2013,8,4,11,30,932,113,891,3.6,34.300000000000004,23.1,929,19.5 +2013,8,4,12,30,980,116,898,3.6,35,15.75,928,19.3 +2013,8,4,13,30,963,116,891,3.7,35.300000000000004,18.150000000000002,928,19.200000000000003 +2013,8,4,14,30,885,113,874,3.8000000000000003,35.2,27.88,927,19.1 +2013,8,4,15,30,721,225,645,3.8000000000000003,34.7,39.82,927,18.900000000000002 +2013,8,4,16,30,434,264,279,3.8000000000000003,34,52.370000000000005,927,18.7 +2013,8,4,17,30,366,83,670,3.7,33.6,65.02,926,18.400000000000002 +2013,8,4,18,30,157,56,471,2.3000000000000003,31.3,77.52,927,18.5 +2013,8,4,19,30,0,0,0,1.8,29.6,89.37,927,19 +2013,8,4,20,30,0,0,0,2.3000000000000003,28.900000000000002,101.31,928,18.6 +2013,8,4,21,30,0,0,0,3.1,28.5,111.87,928,18.3 +2013,8,4,22,30,0,0,0,3.7,28,120.87,928,18.1 +2013,8,4,23,30,0,0,0,3.9000000000000004,27.400000000000002,127.44,928,18 +2013,8,5,0,30,0,0,0,3.8000000000000003,26.700000000000003,130.6,928,17.8 +2013,8,5,1,30,0,0,0,3.5,26,129.7,928,17.6 +2013,8,5,2,30,0,0,0,3.5,25.3,124.93,928,17.400000000000002 +2013,8,5,3,30,0,0,0,3.6,24.6,117.17,928,17.2 +2013,8,5,4,30,0,0,0,3.6,23.8,107.41,928,17.1 +2013,8,5,5,30,0,0,0,3.6,23.5,96.35000000000001,929,17.1 +2013,8,5,6,30,60,30,308,4.2,24.6,84.36,929,17.1 +2013,8,5,7,30,256,61,634,4.9,27,72.09,929,16.900000000000002 +2013,8,5,8,30,472,79,776,4.800000000000001,29.700000000000003,59.5,929,16.5 +2013,8,5,9,30,672,90,851,4.2,32.2,46.87,929,16.2 +2013,8,5,10,30,833,97,893,3.8000000000000003,34.2,34.52,928,16 +2013,8,5,11,30,944,101,918,3.7,35.7,23.28,928,15.8 +2013,8,5,12,30,998,99,935,3.9000000000000004,36.7,16.01,927,15.600000000000001 +2013,8,5,13,30,984,96,936,4.1000000000000005,37.300000000000004,18.400000000000002,926,15.3 +2013,8,5,14,30,906,91,924,4.2,37.6,28.07,925,14.8 +2013,8,5,15,30,772,87,893,4.3,37.4,39.980000000000004,924,14.4 +2013,8,5,16,30,590,79,841,4.2,36.800000000000004,52.52,924,14 +2013,8,5,17,30,381,66,750,4.1000000000000005,36.300000000000004,65.18,924,13.600000000000001 +2013,8,5,18,30,165,46,558,2.6,32.6,77.68,924,14.100000000000001 +2013,8,5,19,30,0,0,0,2.4000000000000004,30.1,89.52,924,15 +2013,8,5,20,30,0,0,0,3.2,29.3,101.5,925,14.600000000000001 +2013,8,5,21,30,0,0,0,3.9000000000000004,28.700000000000003,112.09,925,14.5 +2013,8,5,22,30,0,0,0,4.2,27.8,121.11,925,14.8 +2013,8,5,23,30,0,0,0,4,26.8,127.71000000000001,925,15.100000000000001 +2013,8,6,0,30,0,0,0,3.8000000000000003,26,130.88,925,15.3 +2013,8,6,1,30,0,0,0,3.8000000000000003,25.400000000000002,129.96,925,15.200000000000001 +2013,8,6,2,30,0,0,0,3.8000000000000003,24.8,125.16,925,15.100000000000001 +2013,8,6,3,30,0,0,0,3.8000000000000003,24.200000000000003,117.37,925,15.100000000000001 +2013,8,6,4,30,0,0,0,3.8000000000000003,23.700000000000003,107.57000000000001,925,15.5 +2013,8,6,5,30,0,0,0,3.9000000000000004,23.5,96.49000000000001,925,15.9 +2013,8,6,6,30,59,30,306,4.7,24.700000000000003,84.48,926,16.5 +2013,8,6,7,30,256,61,638,5.6000000000000005,27.400000000000002,72.2,926,17.1 +2013,8,6,8,30,474,78,782,5.6000000000000005,30.5,59.61,926,17 +2013,8,6,9,30,675,89,858,5.1000000000000005,33.300000000000004,46.980000000000004,926,16.5 +2013,8,6,10,30,839,97,901,4.5,35.5,34.65,925,16.1 +2013,8,6,11,30,950,103,924,4.2,37,23.46,925,15.8 +2013,8,6,12,30,999,103,934,4.2,38.1,16.27,924,15.4 +2013,8,6,13,30,982,103,928,4.2,38.7,18.650000000000002,923,14.9 +2013,8,6,14,30,903,102,909,4.2,38.900000000000006,28.26,923,14.600000000000001 +2013,8,6,15,30,762,107,856,4.1000000000000005,38.6,40.14,922,14.200000000000001 +2013,8,6,16,30,578,101,787,4,37.9,52.67,922,13.600000000000001 +2013,8,6,17,30,365,89,662,3.9000000000000004,37.300000000000004,65.33,922,13.3 +2013,8,6,18,30,151,63,414,2.2,33.2,77.84,922,14.4 +2013,8,6,19,30,0,0,0,2,30.700000000000003,89.68,923,15.3 +2013,8,6,20,30,0,0,0,2.5,29.700000000000003,101.7,923,14.5 +2013,8,6,21,30,0,0,0,3.1,29,112.31,924,14.100000000000001 +2013,8,6,22,30,0,0,0,3.6,28.200000000000003,121.36,924,14.200000000000001 +2013,8,6,23,30,0,0,0,3.9000000000000004,27.3,127.98,924,14.4 +2013,8,7,0,30,0,0,0,3.9000000000000004,26.400000000000002,131.16,924,14.600000000000001 +2013,8,7,1,30,0,0,0,3.9000000000000004,25.6,130.23,924,14.8 +2013,8,7,2,30,0,0,0,3.6,24.900000000000002,125.39,924,14.9 +2013,8,7,3,30,0,0,0,3.3000000000000003,24.3,117.57000000000001,924,15.200000000000001 +2013,8,7,4,30,0,0,0,3.1,23.700000000000003,107.74000000000001,924,15.600000000000001 +2013,8,7,5,30,0,0,0,3.3000000000000003,23.700000000000003,96.64,924,16.1 +2013,8,7,6,30,49,36,137,4.2,25,84.60000000000001,925,16.6 +2013,8,7,7,30,234,89,478,5.2,27.6,72.32000000000001,925,17.400000000000002 +2013,8,7,8,30,445,118,649,5.4,30.700000000000003,59.72,925,17.6 +2013,8,7,9,30,642,136,742,5,33.7,47.09,925,17 +2013,8,7,10,30,803,148,798,4.2,36.300000000000004,34.78,924,16.2 +2013,8,7,11,30,912,155,827,3.5,38,23.64,924,15.8 +2013,8,7,12,30,981,106,913,3.2,38.800000000000004,16.54,923,15.700000000000001 +2013,8,7,13,30,964,109,904,3.2,38.900000000000006,18.91,923,15.9 +2013,8,7,14,30,883,109,880,3.4000000000000004,38.6,28.46,922,16.1 +2013,8,7,15,30,747,105,842,3.5,37.9,40.31,922,16.400000000000002 +2013,8,7,16,30,566,96,777,3.6,36.800000000000004,52.83,922,16.6 +2013,8,7,17,30,358,81,669,3.6,36.1,65.49,922,17.400000000000002 +2013,8,7,18,30,149,55,452,2.3000000000000003,32.1,78.01,922,20 +2013,8,7,19,30,0,0,0,2,30.200000000000003,89.84,923,21 +2013,8,7,20,30,0,0,0,2,29.3,101.9,923,20.8 +2013,8,7,21,30,0,0,0,2,28.6,112.54,924,20.8 +2013,8,7,22,30,0,0,0,2.1,27.700000000000003,121.61,924,20.6 +2013,8,7,23,30,0,0,0,2.3000000000000003,26.8,128.25,924,20.200000000000003 +2013,8,8,0,30,0,0,0,2.5,26,131.44,923,19.700000000000003 +2013,8,8,1,30,0,0,0,2.6,25.200000000000003,130.5,923,19.200000000000003 +2013,8,8,2,30,0,0,0,2.4000000000000004,24.5,125.63000000000001,924,18.8 +2013,8,8,3,30,0,0,0,2.1,23.8,117.77,924,18.6 +2013,8,8,4,30,0,0,0,2,23.3,107.91,924,18.5 +2013,8,8,5,30,0,0,0,2.5,23.200000000000003,96.78,924,18.400000000000002 +2013,8,8,6,30,23,23,0,3.5,24.5,84.72,924,18.3 +2013,8,8,7,30,164,116,157,4.3,27.1,72.43,924,18.400000000000002 +2013,8,8,8,30,445,107,673,4.5,30.1,59.82,924,18.400000000000002 +2013,8,8,9,30,460,315,212,4.4,32.7,47.2,924,18 +2013,8,8,10,30,588,400,230,4.2,34.5,34.910000000000004,924,17.400000000000002 +2013,8,8,11,30,914,141,845,4,35.800000000000004,23.82,924,17.3 +2013,8,8,12,30,969,129,877,4.1000000000000005,36.5,16.81,923,17.3 +2013,8,8,13,30,954,127,876,4.1000000000000005,36.800000000000004,19.17,923,17.2 +2013,8,8,14,30,876,124,856,4.1000000000000005,36.800000000000004,28.66,922,17.1 +2013,8,8,15,30,334,307,35,4,36.5,40.49,922,16.8 +2013,8,8,16,30,556,115,733,3.6,35.800000000000004,53,922,16.2 +2013,8,8,17,30,131,130,2,3.3000000000000003,35.300000000000004,65.66,922,16.3 +2013,8,8,18,30,70,69,7,1.9000000000000001,31.1,78.18,922,19.1 +2013,8,8,19,30,0,0,0,1.9000000000000001,29,90,923,18.900000000000002 +2013,8,8,20,30,0,0,0,2.3000000000000003,28.3,102.10000000000001,923,17.6 +2013,8,8,21,30,0,0,0,2.7,27.8,112.76,924,16.6 +2013,8,8,22,30,0,0,0,3.1,27.1,121.86,924,15.8 +2013,8,8,23,30,0,0,0,3.4000000000000004,26.400000000000002,128.53,924,15.3 +2013,8,9,0,30,0,0,0,3.4000000000000004,25.6,131.73,924,15 +2013,8,9,1,30,0,0,0,3.3000000000000003,25,130.77,924,14.9 +2013,8,9,2,30,0,0,0,3.1,24.3,125.87,925,14.8 +2013,8,9,3,30,0,0,0,3,23.6,117.98,925,14.9 +2013,8,9,4,30,0,0,0,3,22.900000000000002,108.08,925,15.3 +2013,8,9,5,30,0,0,0,3,22.700000000000003,96.92,926,16.2 +2013,8,9,6,30,46,36,108,3.7,23.900000000000002,84.85000000000001,926,17.2 +2013,8,9,7,30,230,93,456,4.2,26.200000000000003,72.54,927,18.6 +2013,8,9,8,30,443,123,638,4,29,59.93,927,19.3 +2013,8,9,9,30,641,142,735,3.3000000000000003,31.5,47.32,927,19.200000000000003 +2013,8,9,10,30,802,156,789,2.4000000000000004,33.5,35.050000000000004,927,18.7 +2013,8,9,11,30,911,163,819,1.4000000000000001,34.9,24.01,927,18.5 +2013,8,9,12,30,978,118,900,0.6000000000000001,35.800000000000004,17.080000000000002,927,18.2 +2013,8,9,13,30,964,119,896,0.6000000000000001,36.300000000000004,19.44,926,17.8 +2013,8,9,14,30,883,115,876,1.2000000000000002,36.4,28.88,926,17.400000000000002 +2013,8,9,15,30,744,114,832,1.8,36,40.67,926,17.1 +2013,8,9,16,30,476,229,413,2.3000000000000003,35.1,53.17,926,16.900000000000002 +2013,8,9,17,30,292,144,361,2.6,34.5,65.83,926,16.900000000000002 +2013,8,9,18,30,145,54,452,2.3000000000000003,31.400000000000002,78.36,927,17.400000000000002 +2013,8,9,19,30,0,0,0,2.5,29.400000000000002,90.16,928,18.400000000000002 +2013,8,9,20,30,0,0,0,3.1,28.200000000000003,102.31,929,18.5 +2013,8,9,21,30,0,0,0,3.3000000000000003,27.3,113,930,18.6 +2013,8,9,22,30,0,0,0,3.3000000000000003,26.3,122.12,930,18.7 +2013,8,9,23,30,0,0,0,3.3000000000000003,25.5,128.82,930,18.8 +2013,8,10,0,30,0,0,0,3.2,24.700000000000003,132.02,930,18.7 +2013,8,10,1,30,0,0,0,3.1,23.900000000000002,131.05,931,18.6 +2013,8,10,2,30,0,0,0,3,23.200000000000003,126.12,931,18.400000000000002 +2013,8,10,3,30,0,0,0,3,22.6,118.18,931,18.3 +2013,8,10,4,30,0,0,0,3.1,22,108.25,931,18.1 +2013,8,10,5,30,0,0,0,3.4000000000000004,21.700000000000003,97.07000000000001,932,18 +2013,8,10,6,30,48,31,197,4.2,22.6,84.97,932,18.1 +2013,8,10,7,30,236,74,542,4.800000000000001,24.6,72.65,933,18.1 +2013,8,10,8,30,172,167,11,4.800000000000001,26.8,60.04,933,17.3 +2013,8,10,9,30,268,251,25,4.6000000000000005,28.8,47.43,933,17 +2013,8,10,10,30,278,265,16,4.3,30.6,35.19,933,16.8 +2013,8,10,11,30,609,464,159,3.9000000000000004,32.1,24.2,932,16.7 +2013,8,10,12,30,973,123,890,3.7,33.300000000000004,17.36,931,16.7 +2013,8,10,13,30,959,118,893,3.5,34.1,19.72,930,16.7 +2013,8,10,14,30,881,111,881,3.4000000000000004,34.300000000000004,29.09,930,16.7 +2013,8,10,15,30,745,101,852,3.4000000000000004,34.2,40.85,929,16.6 +2013,8,10,16,30,566,89,800,3.4000000000000004,33.5,53.34,929,16.5 +2013,8,10,17,30,357,72,701,3.3000000000000003,33,66,929,16.5 +2013,8,10,18,30,146,48,493,2.2,30,78.54,929,16.7 +2013,8,10,19,30,0,0,0,1.7000000000000002,28,90.86,930,17.7 +2013,8,10,20,30,0,0,0,2,27.1,102.53,931,17.6 +2013,8,10,21,30,0,0,0,2.2,26.400000000000002,113.24000000000001,931,17.5 +2013,8,10,22,30,0,0,0,2.2,25.6,122.39,931,17.5 +2013,8,10,23,30,0,0,0,2,24.900000000000002,129.11,931,17.5 +2013,8,11,0,30,0,0,0,1.7000000000000002,24.200000000000003,132.32,931,17.5 +2013,8,11,1,30,0,0,0,1.5,23.5,131.33,931,17.6 +2013,8,11,2,30,0,0,0,1.3,22.900000000000002,126.36,931,17.7 +2013,8,11,3,30,0,0,0,1.2000000000000002,22.3,118.39,930,17.900000000000002 +2013,8,11,4,30,0,0,0,1.1,21.8,108.42,931,18.1 +2013,8,11,5,30,0,0,0,1.4000000000000001,21.900000000000002,97.21000000000001,931,18.3 +2013,8,11,6,30,48,30,209,1.8,23.6,85.09,931,18.5 +2013,8,11,7,30,236,72,553,1.8,26.6,72.77,932,18.900000000000002 +2013,8,11,8,30,450,96,710,1.6,29.700000000000003,60.15,932,18.900000000000002 +2013,8,11,9,30,648,112,794,1.4000000000000001,31.900000000000002,47.550000000000004,932,18.5 +2013,8,11,10,30,810,123,842,1.4000000000000001,33.6,35.33,931,18 +2013,8,11,11,30,921,131,867,1.7000000000000002,34.800000000000004,24.400000000000002,930,17.5 +2013,8,11,12,30,973,123,892,2.1,35.7,17.650000000000002,930,17 +2013,8,11,13,30,658,482,188,2.5,36.300000000000004,20,929,16.5 +2013,8,11,14,30,683,414,308,2.8000000000000003,36.300000000000004,29.32,928,16.2 +2013,8,11,15,30,478,364,152,3.2,36,41.050000000000004,928,15.9 +2013,8,11,16,30,544,132,693,3.5,35.1,53.52,928,15.600000000000001 +2013,8,11,17,30,304,129,433,3.5,34.6,66.18,928,15.5 +2013,8,11,18,30,111,66,232,2.7,31.700000000000003,78.72,928,16 +2013,8,11,19,30,0,0,0,2.4000000000000004,30.1,91.06,929,17.1 +2013,8,11,20,30,0,0,0,2.7,29.400000000000002,102.75,929,17.400000000000002 +2013,8,11,21,30,0,0,0,3,28.6,113.48,930,17.6 +2013,8,11,22,30,0,0,0,3.2,27.8,122.66,930,17.7 +2013,8,11,23,30,0,0,0,3.2,26.900000000000002,129.4,930,17.7 +2013,8,12,0,30,0,0,0,3.1,25.900000000000002,132.62,930,17.7 +2013,8,12,1,30,0,0,0,3.2,25.1,131.61,930,17.7 +2013,8,12,2,30,0,0,0,3,24.400000000000002,126.61,929,17.8 +2013,8,12,3,30,0,0,0,2.8000000000000003,23.700000000000003,118.60000000000001,929,17.900000000000002 +2013,8,12,4,30,0,0,0,2.6,23,108.60000000000001,930,18.2 +2013,8,12,5,30,0,0,0,2.8000000000000003,22.8,97.36,930,18.400000000000002 +2013,8,12,6,30,49,27,257,3.6,23.900000000000002,85.21000000000001,930,18.6 +2013,8,12,7,30,241,63,605,4.2,26.3,72.88,931,18.8 +2013,8,12,8,30,459,82,761,3.9000000000000004,29.1,60.26,931,18.400000000000002 +2013,8,12,9,30,661,93,843,3.4000000000000004,31.400000000000002,47.660000000000004,931,17.6 +2013,8,12,10,30,823,100,887,3.2,33.2,35.47,930,16.8 +2013,8,12,11,30,935,103,915,3,34.6,24.6,930,16.2 +2013,8,12,12,30,986,97,934,3,35.6,17.94,929,15.700000000000001 +2013,8,12,13,30,968,96,930,3.1,36.1,20.28,928,15.4 +2013,8,12,14,30,887,92,914,3.1,36.2,29.55,927,15.200000000000001 +2013,8,12,15,30,749,86,882,3.1,35.800000000000004,41.24,927,15.200000000000001 +2013,8,12,16,30,567,77,827,3.1,35,53.71,927,15.3 +2013,8,12,17,30,355,64,727,3.1,34.4,66.36,927,15.5 +2013,8,12,18,30,143,43,519,2.2,31.400000000000002,78.91,927,16 +2013,8,12,19,30,0,0,0,2,29.5,91.26,928,17.3 +2013,8,12,20,30,0,0,0,2.5,28.700000000000003,102.97,928,17.400000000000002 +2013,8,12,21,30,0,0,0,2.9000000000000004,28.1,113.73,929,17.5 +2013,8,12,22,30,0,0,0,3,27.400000000000002,122.93,929,17.6 +2013,8,12,23,30,0,0,0,3,26.8,129.7,929,17.5 +2013,8,13,0,30,0,0,0,3,26.1,132.93,928,17.3 +2013,8,13,1,30,0,0,0,3,25.5,131.9,928,17.1 +2013,8,13,2,30,0,0,0,2.8000000000000003,24.8,126.86,928,16.900000000000002 +2013,8,13,3,30,0,0,0,2.7,24.3,118.8,929,16.7 +2013,8,13,4,30,0,0,0,2.7,23.900000000000002,108.77,929,16.6 +2013,8,13,5,30,0,0,0,3,23.8,97.5,930,16.7 +2013,8,13,6,30,48,24,293,4.1000000000000005,24.900000000000002,85.34,930,17.1 +2013,8,13,7,30,240,55,634,5,27.1,73,930,17.8 +2013,8,13,8,30,455,71,776,4.7,29.5,60.370000000000005,930,17.8 +2013,8,13,9,30,654,83,850,3.8000000000000003,31.5,47.78,930,17.5 +2013,8,13,10,30,815,90,892,2.9000000000000004,33,35.61,930,17.400000000000002 +2013,8,13,11,30,926,94,916,2.1,34,24.8,929,17.400000000000002 +2013,8,13,12,30,973,106,913,1.4000000000000001,34.6,18.23,929,17.400000000000002 +2013,8,13,13,30,956,104,910,0.8,35,20.57,928,17.2 +2013,8,13,14,30,876,101,893,0.8,35,29.78,927,17.1 +2013,8,13,15,30,730,119,815,1.2000000000000002,34.800000000000004,41.45,927,16.900000000000002 +2013,8,13,16,30,548,106,749,1.7000000000000002,34.2,53.9,926,16.6 +2013,8,13,17,30,338,87,632,2,33.7,66.55,926,16.6 +2013,8,13,18,30,131,54,404,1.7000000000000002,30.6,79.11,927,18.400000000000002 +2013,8,13,19,30,0,0,0,2.1,28.900000000000002,91.47,927,19.3 +2013,8,13,20,30,0,0,0,2.8000000000000003,28.200000000000003,103.2,928,18.8 +2013,8,13,21,30,0,0,0,3.2,27.6,113.98,928,18.8 +2013,8,13,22,30,0,0,0,3.3000000000000003,26.900000000000002,123.21000000000001,928,19 +2013,8,13,23,30,0,0,0,3.1,26.3,130,929,19.3 +2013,8,14,0,30,0,0,0,2.9000000000000004,25.6,133.24,929,19.5 +2013,8,14,1,30,0,0,0,2.5,24.900000000000002,132.19,929,19.700000000000003 +2013,8,14,2,30,0,0,0,2.1,24.200000000000003,127.11,929,19.8 +2013,8,14,3,30,0,0,0,1.9000000000000001,23.400000000000002,119.01,929,19.900000000000002 +2013,8,14,4,30,0,0,0,1.8,22.8,108.94,929,20 +2013,8,14,5,30,0,0,0,2.1,22.6,97.65,929,20.200000000000003 +2013,8,14,6,30,24,24,0,2.5,23.400000000000002,85.46000000000001,929,20.400000000000002 +2013,8,14,7,30,22,22,0,2.4000000000000004,25.3,73.11,930,20.400000000000002 +2013,8,14,8,30,21,21,0,1.8,27.3,60.480000000000004,930,20 +2013,8,14,9,30,38,38,0,2.1,28.900000000000002,47.9,930,19.6 +2013,8,14,10,30,204,197,9,3.1,29.5,35.76,930,19.400000000000002 +2013,8,14,11,30,544,450,103,3.8000000000000003,29.400000000000002,25.01,930,19.5 +2013,8,14,12,30,528,458,73,4,29,18.52,930,19.8 +2013,8,14,13,30,347,328,21,3.8000000000000003,28.6,20.87,929,19.900000000000002 +2013,8,14,14,30,544,432,129,3.3000000000000003,28.3,30.02,929,19.900000000000002 +2013,8,14,15,30,688,231,612,2.9000000000000004,28.1,41.65,928,19.700000000000003 +2013,8,14,16,30,546,95,770,2.7,27.900000000000002,54.09,928,19.5 +2013,8,14,17,30,339,76,667,2.6,27.700000000000003,66.74,928,19.3 +2013,8,14,18,30,132,48,450,1.7000000000000002,25.900000000000002,79.3,929,19.6 +2013,8,14,19,30,0,0,0,1.2000000000000002,24.700000000000003,91.68,929,20.200000000000003 +2013,8,14,20,30,0,0,0,1.2000000000000002,24,103.43,930,20 +2013,8,14,21,30,0,0,0,1.3,23.400000000000002,114.23,930,19.8 +2013,8,14,22,30,0,0,0,1.5,22.900000000000002,123.5,930,19.6 +2013,8,14,23,30,0,0,0,1.5,22.5,130.31,930,19.700000000000003 +2013,8,15,0,30,0,0,0,1.5,22,133.55,929,19.8 +2013,8,15,1,30,0,0,0,1.3,21.6,132.48,929,20 +2013,8,15,2,30,0,0,0,1.1,21.1,127.36,929,20.200000000000003 +2013,8,15,3,30,0,0,0,0.8,20.700000000000003,119.22,929,20.3 +2013,8,15,4,30,0,0,0,0.6000000000000001,20.400000000000002,109.12,930,20.400000000000002 +2013,8,15,5,30,0,0,0,0.7000000000000001,20.6,97.8,930,20.6 +2013,8,15,6,30,25,25,7,0.9,21.8,85.58,930,20.700000000000003 +2013,8,15,7,30,68,68,0,0.6000000000000001,24,73.22,930,20.8 +2013,8,15,8,30,230,201,60,0.6000000000000001,26.6,60.6,930,19.900000000000002 +2013,8,15,9,30,647,99,818,1.1,28.6,48.02,930,18.900000000000002 +2013,8,15,10,30,701,315,476,1.4000000000000001,30,35.9,930,18.5 +2013,8,15,11,30,837,373,513,1.8,31.1,25.22,929,18.3 +2013,8,15,12,30,816,423,416,2.1,31.8,18.82,929,18.1 +2013,8,15,13,30,877,387,526,2.4000000000000004,32.1,21.17,928,17.900000000000002 +2013,8,15,14,30,875,111,885,2.6,32,30.27,928,17.6 +2013,8,15,15,30,732,115,828,2.9000000000000004,31.5,41.87,928,17.400000000000002 +2013,8,15,16,30,550,101,770,3,30.6,54.29,928,17.400000000000002 +2013,8,15,17,30,338,81,657,3.1,30.1,66.94,928,17.7 +2013,8,15,18,30,128,51,425,2.4000000000000004,27.200000000000003,79.5,928,18.7 +2013,8,15,19,30,0,0,0,2.3000000000000003,25.5,91.9,929,19.5 +2013,8,15,20,30,0,0,0,2.4000000000000004,24.6,103.66,929,19.6 +2013,8,15,21,30,0,0,0,2.4000000000000004,23.900000000000002,114.49000000000001,929,19.8 +2013,8,15,22,30,0,0,0,2.3000000000000003,23.3,123.78,929,19.8 +2013,8,15,23,30,0,0,0,2.2,22.700000000000003,130.62,929,19.8 +2013,8,16,0,30,0,0,0,2.2,22.1,133.87,929,19.900000000000002 +2013,8,16,1,30,0,0,0,2,21.5,132.78,929,20 +2013,8,16,2,30,0,0,0,1.8,21,127.62,929,20.3 +2013,8,16,3,30,0,0,0,1.6,20.6,119.43,929,20.5 +2013,8,16,4,30,0,0,0,1.5,20.3,109.29,929,20.3 +2013,8,16,5,30,0,0,0,1.7000000000000002,20.5,97.94,930,20.5 +2013,8,16,6,30,18,18,0,2.3000000000000003,21.8,85.71000000000001,930,20.900000000000002 +2013,8,16,7,30,149,110,135,2.6,24.200000000000003,73.34,930,21.1 +2013,8,16,8,30,21,21,0,2.3000000000000003,26.900000000000002,60.71,930,20.8 +2013,8,16,9,30,72,72,0,1.7000000000000002,29.1,48.14,930,19.5 +2013,8,16,10,30,562,396,205,1.8,30.6,36.050000000000004,930,18.5 +2013,8,16,11,30,922,115,894,2.5,31.5,25.43,929,17.900000000000002 +2013,8,16,12,30,976,111,915,3,32,19.13,929,17.6 +2013,8,16,13,30,961,108,917,3.4000000000000004,31.8,21.47,929,17.6 +2013,8,16,14,30,880,104,900,3.6,31.1,30.52,928,17.8 +2013,8,16,15,30,741,96,869,3.6,30.3,42.08,928,18.1 +2013,8,16,16,30,556,86,809,3.4000000000000004,29.3,54.49,928,18.2 +2013,8,16,17,30,343,71,700,3.3000000000000003,28.700000000000003,67.14,928,18.3 +2013,8,16,18,30,129,45,472,1.7000000000000002,25.6,79.71000000000001,929,19.5 +2013,8,16,19,30,0,0,0,1.3,23.900000000000002,92.12,930,20.3 +2013,8,16,20,30,0,0,0,1.3,23.1,103.9,930,19.700000000000003 +2013,8,16,21,30,0,0,0,1.4000000000000001,22.5,114.75,931,19.200000000000003 +2013,8,16,22,30,0,0,0,1.4000000000000001,21.900000000000002,124.07000000000001,931,18.6 +2013,8,16,23,30,0,0,0,1.4000000000000001,21.3,130.93,931,18.3 +2013,8,17,0,30,0,0,0,1.4000000000000001,20.700000000000003,134.19,931,18 +2013,8,17,1,30,0,0,0,1.4000000000000001,20.200000000000003,133.08,931,17.900000000000002 +2013,8,17,2,30,0,0,0,1.5,19.6,127.87,931,17.8 +2013,8,17,3,30,0,0,0,1.5,19,119.65,931,17.7 +2013,8,17,4,30,0,0,0,1.4000000000000001,18.400000000000002,109.46000000000001,931,17.6 +2013,8,17,5,30,0,0,0,1.7000000000000002,18.2,98.09,931,17.5 +2013,8,17,6,30,41,25,228,2.5,19.5,85.83,932,17.400000000000002 +2013,8,17,7,30,230,68,570,2.9000000000000004,22,73.45,932,17 +2013,8,17,8,30,444,94,718,2.7,24.900000000000002,60.82,932,16.7 +2013,8,17,9,30,643,112,798,2.5,27.8,48.27,932,16.400000000000002 +2013,8,17,10,30,805,125,844,2.5,29.900000000000002,36.21,931,15.4 +2013,8,17,11,30,914,133,867,2.6,31.3,25.64,931,14.9 +2013,8,17,12,30,964,130,884,2.7,32.2,19.43,930,14.700000000000001 +2013,8,17,13,30,944,133,873,2.8000000000000003,32.6,21.78,929,14.700000000000001 +2013,8,17,14,30,858,136,840,3,32.4,30.77,928,14.600000000000001 +2013,8,17,15,30,716,131,791,3.3000000000000003,31.5,42.300000000000004,928,14.600000000000001 +2013,8,17,16,30,531,118,715,3.7,30.200000000000003,54.7,928,14.8 +2013,8,17,17,30,323,93,596,3.9000000000000004,29.5,67.35,928,15.100000000000001 +2013,8,17,18,30,118,55,364,3.1,26.6,79.92,928,15.700000000000001 +2013,8,17,19,30,0,0,0,2.5,25,92.34,929,16.2 +2013,8,17,20,30,0,0,0,2.2,24,104.14,929,16.3 +2013,8,17,21,30,0,0,0,2.1,23.3,115.02,929,16.3 +2013,8,17,22,30,0,0,0,2.1,22.8,124.37,930,16.1 +2013,8,17,23,30,0,0,0,2.2,22.200000000000003,131.25,930,15.700000000000001 +2013,8,18,0,30,0,0,0,2.3000000000000003,21.6,134.51,930,15.4 +2013,8,18,1,30,0,0,0,2.2,21,133.38,930,14.9 +2013,8,18,2,30,0,0,0,2.1,20.3,128.13,930,14.600000000000001 +2013,8,18,3,30,0,0,0,2.2,19.900000000000002,119.86,930,14.4 +2013,8,18,4,30,0,0,0,2.2,19.6,109.64,930,14.3 +2013,8,18,5,30,0,0,0,2.3000000000000003,19.5,98.23,930,14.4 +2013,8,18,6,30,31,25,84,2.4000000000000004,20.200000000000003,85.95,931,14.5 +2013,8,18,7,30,207,109,346,2.8000000000000003,22.1,73.57000000000001,931,14.5 +2013,8,18,8,30,416,158,531,3.3000000000000003,24.700000000000003,60.94,932,13.700000000000001 +2013,8,18,9,30,616,180,657,3.4000000000000004,27.3,48.39,932,12.9 +2013,8,18,10,30,782,188,738,3.2,29.400000000000002,36.36,931,12.8 +2013,8,18,11,30,896,191,783,3.2,31,25.86,931,12.9 +2013,8,18,12,30,949,179,818,3.3000000000000003,32.2,19.740000000000002,930,13.100000000000001 +2013,8,18,13,30,831,411,453,3.6,33,22.1,929,13.3 +2013,8,18,14,30,852,163,805,3.9000000000000004,33.2,31.03,929,13.3 +2013,8,18,15,30,715,148,770,4.3,32.800000000000004,42.53,928,13.3 +2013,8,18,16,30,534,125,710,4.5,31.900000000000002,54.910000000000004,928,13.3 +2013,8,18,17,30,323,97,594,4.6000000000000005,31.200000000000003,67.56,928,13.3 +2013,8,18,18,30,116,54,364,3.9000000000000004,27.700000000000003,80.13,928,13.8 +2013,8,18,19,30,0,0,0,3.9000000000000004,25.8,92.57000000000001,928,14 +2013,8,18,20,30,0,0,0,4,24.6,104.39,929,14.100000000000001 +2013,8,18,21,30,0,0,0,3.8000000000000003,23.8,115.29,929,14.3 +2013,8,18,22,30,0,0,0,3.6,23,124.67,929,14.4 +2013,8,18,23,30,0,0,0,3.4000000000000004,22.400000000000002,131.58,929,14.5 +2013,8,19,0,30,0,0,0,3.1,21.8,134.84,929,14.5 +2013,8,19,1,30,0,0,0,2.7,21.3,133.68,929,14.600000000000001 +2013,8,19,2,30,0,0,0,2.7,20.900000000000002,128.39000000000001,929,14.700000000000001 +2013,8,19,3,30,0,0,0,3,20.8,120.07000000000001,929,14.8 +2013,8,19,4,30,0,0,0,3.2,20.700000000000003,109.81,929,14.8 +2013,8,19,5,30,0,0,0,3.3000000000000003,20.6,98.38,930,15 +2013,8,19,6,30,31,25,90,3.6,21.3,86.07000000000001,930,15.100000000000001 +2013,8,19,7,30,206,104,362,4.1000000000000005,23,73.68,930,15.200000000000001 +2013,8,19,8,30,413,156,531,4.800000000000001,25.3,61.050000000000004,931,14.8 +2013,8,19,9,30,610,186,640,5.300000000000001,27.5,48.52,931,14.200000000000001 +2013,8,19,10,30,774,202,711,5.4,29.5,36.52,931,13.700000000000001 +2013,8,19,11,30,886,206,757,5.2,31.1,26.09,930,13.600000000000001 +2013,8,19,12,30,925,239,730,4.9,32.4,20.06,929,13.700000000000001 +2013,8,19,13,30,912,221,747,4.6000000000000005,33.300000000000004,22.41,928,13.9 +2013,8,19,14,30,834,201,742,4.3,33.7,31.3,928,14.100000000000001 +2013,8,19,15,30,701,176,715,4,33.5,42.76,927,14.100000000000001 +2013,8,19,16,30,517,147,647,3.7,32.7,55.13,927,14.200000000000001 +2013,8,19,17,30,309,111,524,3.6,32.1,67.77,927,14.200000000000001 +2013,8,19,18,30,108,59,292,2.3000000000000003,28.400000000000002,80.35000000000001,927,15.4 +2013,8,19,19,30,0,0,0,2.4000000000000004,26.6,92.8,927,15.5 +2013,8,19,20,30,0,0,0,2.8000000000000003,25.900000000000002,104.64,928,15.3 +2013,8,19,21,30,0,0,0,3.1,25.200000000000003,115.57000000000001,928,15.4 +2013,8,19,22,30,0,0,0,3.4000000000000004,24.6,124.97,928,15.600000000000001 +2013,8,19,23,30,0,0,0,3.5,23.900000000000002,131.9,928,15.8 +2013,8,20,0,30,0,0,0,3.5,23.3,135.18,928,15.9 +2013,8,20,1,30,0,0,0,3.4000000000000004,22.8,133.99,928,16 +2013,8,20,2,30,0,0,0,3.3000000000000003,22.400000000000002,128.65,928,16 +2013,8,20,3,30,0,0,0,3.1,22.1,120.28,928,15.9 +2013,8,20,4,30,0,0,0,2.9000000000000004,21.900000000000002,109.99000000000001,929,15.8 +2013,8,20,5,30,0,0,0,2.8000000000000003,21.900000000000002,98.53,929,15.700000000000001 +2013,8,20,6,30,26,22,57,3,22.400000000000002,86.2,930,15.600000000000001 +2013,8,20,7,30,201,108,334,3.7,24,73.8,930,15.5 +2013,8,20,8,30,416,146,560,4.2,26.8,61.17,930,15.200000000000001 +2013,8,20,9,30,620,159,698,3.9000000000000004,29.700000000000003,48.64,930,14.600000000000001 +2013,8,20,10,30,789,162,781,3.3000000000000003,32,36.68,929,14.4 +2013,8,20,11,30,904,165,824,3,33.6,26.310000000000002,929,14.600000000000001 +2013,8,20,12,30,951,172,831,3,34.6,20.38,928,14.700000000000001 +2013,8,20,13,30,935,167,832,3.3000000000000003,35.2,22.740000000000002,927,14.600000000000001 +2013,8,20,14,30,811,292,609,3.6,35.2,31.57,927,14.4 +2013,8,20,15,30,707,164,742,4,34.6,43,926,14.200000000000001 +2013,8,20,16,30,523,139,674,4.1000000000000005,33.6,55.35,926,14 +2013,8,20,17,30,312,106,550,4.2,32.9,67.99,926,13.700000000000001 +2013,8,20,18,30,108,56,318,3.4000000000000004,29.3,80.57000000000001,927,13.9 +2013,8,20,19,30,0,0,0,3.6,27.400000000000002,93.03,928,13.8 +2013,8,20,20,30,0,0,0,3.9000000000000004,26.200000000000003,104.89,928,13.3 +2013,8,20,21,30,0,0,0,3.8000000000000003,25.1,115.84,929,13.100000000000001 +2013,8,20,22,30,0,0,0,3.5,24.1,125.28,929,13 +2013,8,20,23,30,0,0,0,3.3000000000000003,23.200000000000003,132.23,929,13 +2013,8,21,0,30,0,0,0,3.1,22.400000000000002,135.51,929,13.200000000000001 +2013,8,21,1,30,0,0,0,2.8000000000000003,21.700000000000003,134.3,929,13.700000000000001 +2013,8,21,2,30,0,0,0,2.7,21.1,128.91,930,14.4 +2013,8,21,3,30,0,0,0,2.5,20.400000000000002,120.5,930,15.200000000000001 +2013,8,21,4,30,0,0,0,2.2,19.8,110.16,930,15.8 +2013,8,21,5,30,0,0,0,2.2,19.6,98.67,930,16.2 +2013,8,21,6,30,35,23,186,2.6,21,86.32000000000001,931,16.5 +2013,8,21,7,30,224,71,554,2.7,24.1,73.92,931,17.1 +2013,8,21,8,30,445,96,726,2.3000000000000003,27.200000000000003,61.28,931,16.3 +2013,8,21,9,30,650,111,818,2.2,29.3,48.77,931,14.200000000000001 +2013,8,21,10,30,815,120,868,2.3000000000000003,30.700000000000003,36.84,931,13.5 +2013,8,21,11,30,926,123,897,2.7,31.8,26.54,931,13.200000000000001 +2013,8,21,12,30,933,293,684,2.9000000000000004,32.5,20.7,930,13.200000000000001 +2013,8,21,13,30,871,369,546,3.1,32.800000000000004,23.06,929,13.4 +2013,8,21,14,30,636,414,262,3.1,32.9,31.85,929,13.700000000000001 +2013,8,21,15,30,460,349,152,3.2,32.7,43.24,928,14 +2013,8,21,16,30,350,253,171,3.3000000000000003,32,55.57,928,14.200000000000001 +2013,8,21,17,30,233,144,241,3.3000000000000003,31.5,68.21000000000001,928,14.600000000000001 +2013,8,21,18,30,44,44,0,2.5,28.700000000000003,80.8,928,15.600000000000001 +2013,8,21,19,30,0,0,0,2.6,27.200000000000003,93.27,929,16.5 +2013,8,21,20,30,0,0,0,3.1,26.700000000000003,105.15,930,16.8 +2013,8,21,21,30,0,0,0,3.3000000000000003,26,116.13,930,17.2 +2013,8,21,22,30,0,0,0,3.4000000000000004,25.3,125.59,930,17.400000000000002 +2013,8,21,23,30,0,0,0,3.3000000000000003,24.700000000000003,132.57,930,17.5 +2013,8,22,0,30,0,0,0,3.3000000000000003,24.1,135.85,930,17.5 +2013,8,22,1,30,0,0,0,3.1,23.5,134.61,930,17.7 +2013,8,22,2,30,0,0,0,2.8000000000000003,23,129.18,930,18 +2013,8,22,3,30,0,0,0,2.6,22.400000000000002,120.71000000000001,930,18.400000000000002 +2013,8,22,4,30,0,0,0,2.3000000000000003,21.900000000000002,110.34,931,18.8 +2013,8,22,5,30,0,0,0,2.3000000000000003,21.700000000000003,98.82000000000001,931,19.1 +2013,8,22,6,30,33,22,188,2.8000000000000003,22.900000000000002,86.44,931,19.3 +2013,8,22,7,30,218,65,557,3.2,25.400000000000002,74.03,932,19.200000000000003 +2013,8,22,8,30,434,87,725,2.9000000000000004,27.700000000000003,61.4,932,18.8 +2013,8,22,9,30,633,100,811,2.7,29.400000000000002,48.9,932,18.2 +2013,8,22,10,30,796,108,862,2.9000000000000004,30.700000000000003,37,931,17.7 +2013,8,22,11,30,907,112,890,3.3000000000000003,31.6,26.77,930,17.3 +2013,8,22,12,30,951,125,884,3.5,32.300000000000004,21.02,930,16.900000000000002 +2013,8,22,13,30,932,124,881,3.5,32.6,23.39,929,16.6 +2013,8,22,14,30,850,118,864,3.5,32.6,32.13,928,16.400000000000002 +2013,8,22,15,30,714,102,843,3.4000000000000004,32.4,43.49,927,16.2 +2013,8,22,16,30,452,200,448,3.2,31.900000000000002,55.800000000000004,927,16 +2013,8,22,17,30,315,73,658,3.1,31.6,68.43,927,15.8 +2013,8,22,18,30,107,43,407,1.5,28.8,81.02,927,16.900000000000002 +2013,8,22,19,30,0,0,0,1.4000000000000001,27.3,93.51,928,17.2 +2013,8,22,20,30,0,0,0,1.8,26.700000000000003,105.41,928,16.7 +2013,8,22,21,30,0,0,0,2.4000000000000004,26.1,116.41,929,16.5 +2013,8,22,22,30,0,0,0,3,25.6,125.9,929,16.400000000000002 +2013,8,22,23,30,0,0,0,3.3000000000000003,25.1,132.91,929,16.400000000000002 +2013,8,23,0,30,0,0,0,3.3000000000000003,24.700000000000003,136.19,929,16.6 +2013,8,23,1,30,0,0,0,3.1,24.3,134.92000000000002,929,16.7 +2013,8,23,2,30,0,0,0,2.7,23.900000000000002,129.44,929,16.7 +2013,8,23,3,30,0,0,0,2.2,23.5,120.93,929,16.7 +2013,8,23,4,30,0,0,0,1.8,23,110.51,929,16.7 +2013,8,23,5,30,0,0,0,1.8,23,98.96000000000001,929,16.7 +2013,8,23,6,30,31,21,163,2.2,23.900000000000002,86.57000000000001,930,16.7 +2013,8,23,7,30,214,68,536,2.5,26.3,74.15,930,16.8 +2013,8,23,8,30,429,90,710,2,29.3,61.52,930,16.8 +2013,8,23,9,30,630,103,804,1.5,31.400000000000002,49.03,930,16.6 +2013,8,23,10,30,793,112,854,2,32.6,37.17,930,16.400000000000002 +2013,8,23,11,30,832,355,535,2.7,33.4,27.01,929,16.3 +2013,8,23,12,30,894,364,569,3.2,33.7,21.35,928,16.3 +2013,8,23,13,30,937,105,909,3.5,33.5,23.73,928,16.2 +2013,8,23,14,30,853,103,888,3.7,32.9,32.410000000000004,927,16.2 +2013,8,23,15,30,710,96,850,3.7,32.2,43.74,927,16.3 +2013,8,23,16,30,525,85,787,3.7,31.5,56.04,927,16.5 +2013,8,23,17,30,238,136,280,3.6,31.1,68.66,927,16.8 +2013,8,23,18,30,71,53,116,2.4000000000000004,28.400000000000002,81.25,927,17.8 +2013,8,23,19,30,0,0,0,2.3000000000000003,27,93.76,927,18.5 +2013,8,23,20,30,0,0,0,2.5,26.400000000000002,105.67,928,18.5 +2013,8,23,21,30,0,0,0,2.4000000000000004,25.700000000000003,116.7,928,18.7 +2013,8,23,22,30,0,0,0,2.3000000000000003,25.1,126.22,929,19 +2013,8,23,23,30,0,0,0,2,24.5,133.25,929,19.1 +2013,8,24,0,30,0,0,0,1.8,23.900000000000002,136.54,929,19.200000000000003 +2013,8,24,1,30,0,0,0,1.5,23.3,135.23,929,19.3 +2013,8,24,2,30,0,0,0,1.4000000000000001,22.8,129.7,929,19.3 +2013,8,24,3,30,0,0,0,1.3,22.3,121.14,929,19.400000000000002 +2013,8,24,4,30,0,0,0,1.2000000000000002,21.900000000000002,110.69,929,19.400000000000002 +2013,8,24,5,30,0,0,0,1.3,21.8,99.11,930,19.3 +2013,8,24,6,30,32,20,198,1.8,23.1,86.69,931,19.3 +2013,8,24,7,30,218,61,579,2.2,26.3,74.27,931,19.1 +2013,8,24,8,30,435,82,742,2,29.5,61.64,931,17.7 +2013,8,24,9,30,636,96,826,1.9000000000000001,31.5,49.17,931,17.2 +2013,8,24,10,30,798,106,870,2.3000000000000003,32.9,37.34,931,16.8 +2013,8,24,11,30,841,338,566,2.8000000000000003,33.9,27.25,930,16.400000000000002 +2013,8,24,12,30,317,300,18,3.3000000000000003,34.6,21.68,929,16.1 +2013,8,24,13,30,855,375,526,3.7,34.7,24.07,929,15.9 +2013,8,24,14,30,714,345,438,4,34.4,32.7,928,15.8 +2013,8,24,15,30,521,334,261,4.1000000000000005,33.7,43.99,928,15.8 +2013,8,24,16,30,505,122,689,4.1000000000000005,32.6,56.27,928,15.9 +2013,8,24,17,30,293,100,534,4.1000000000000005,32,68.89,928,16.2 +2013,8,24,18,30,91,52,263,2.6,29.5,81.49,929,16.8 +2013,8,24,19,30,0,0,0,1.9000000000000001,28,94,930,17.6 +2013,8,24,20,30,0,0,0,1.6,27.1,105.94,930,17.900000000000002 +2013,8,24,21,30,0,0,0,1.4000000000000001,26.400000000000002,116.99000000000001,931,18.1 +2013,8,24,22,30,0,0,0,1.3,25.8,126.54,931,18.1 +2013,8,24,23,30,0,0,0,1.3,25.200000000000003,133.59,931,18 +2013,8,25,0,30,0,0,0,1.3,24.700000000000003,136.88,931,17.900000000000002 +2013,8,25,1,30,0,0,0,1.3,24.200000000000003,135.55,931,17.8 +2013,8,25,2,30,0,0,0,1.3,23.700000000000003,129.97,931,17.8 +2013,8,25,3,30,0,0,0,1.3,23.1,121.35000000000001,932,17.900000000000002 +2013,8,25,4,30,0,0,0,1.2000000000000002,22.6,110.86,932,17.900000000000002 +2013,8,25,5,30,0,0,0,1.2000000000000002,22.400000000000002,99.25,932,18 +2013,8,25,6,30,26,20,104,1.6,23.700000000000003,86.81,933,18.2 +2013,8,25,7,30,203,84,440,2,26.8,74.39,933,18.2 +2013,8,25,8,30,415,120,622,2.2,29.900000000000002,61.75,933,17.5 +2013,8,25,9,30,614,141,725,2.7,31.700000000000003,49.300000000000004,933,17 +2013,8,25,10,30,777,153,786,3.4000000000000004,33,37.51,933,16.7 +2013,8,25,11,30,333,314,21,4,34,27.490000000000002,932,16.400000000000002 +2013,8,25,12,30,943,135,871,4.3,34.5,22.01,932,16.2 +2013,8,25,13,30,583,463,132,4.5,34.800000000000004,24.41,931,16 +2013,8,25,14,30,756,330,508,4.6000000000000005,34.7,33,930,15.9 +2013,8,25,15,30,234,225,13,4.6000000000000005,34.300000000000004,44.25,930,15.700000000000001 +2013,8,25,16,30,461,167,533,4.6000000000000005,33.4,56.51,930,15.4 +2013,8,25,17,30,308,66,680,4.5,32.800000000000004,69.13,930,15.3 +2013,8,25,18,30,99,38,425,3,29.6,81.72,930,15.4 +2013,8,25,19,30,0,0,0,2.4000000000000004,27.700000000000003,94.25,931,16 +2013,8,25,20,30,0,0,0,2.4000000000000004,26.8,106.2,932,16.1 +2013,8,25,21,30,0,0,0,2.3000000000000003,25.900000000000002,117.28,933,16.2 +2013,8,25,22,30,0,0,0,2.1,25.1,126.86,933,16.3 +2013,8,25,23,30,0,0,0,1.9000000000000001,24.400000000000002,133.94,933,16.400000000000002 +2013,8,26,0,30,0,0,0,1.8,23.8,137.23,933,16.5 +2013,8,26,1,30,0,0,0,1.6,23.200000000000003,135.87,933,16.7 +2013,8,26,2,30,0,0,0,1.4000000000000001,22.5,130.24,933,17.1 +2013,8,26,3,30,0,0,0,1.2000000000000002,22,121.57000000000001,933,17.5 +2013,8,26,4,30,0,0,0,1.2000000000000002,21.5,111.03,933,17.900000000000002 +2013,8,26,5,30,0,0,0,1.5,21.400000000000002,99.4,933,18.2 +2013,8,26,6,30,30,19,206,2.4000000000000004,22.6,86.93,934,18.6 +2013,8,26,7,30,217,56,602,3.2,25,74.5,934,19 +2013,8,26,8,30,437,74,770,3.6,27.3,61.88,934,18.7 +2013,8,26,9,30,640,86,853,4,29.200000000000003,49.44,934,18 +2013,8,26,10,30,805,92,901,4.3,30.8,37.69,934,17.2 +2013,8,26,11,30,916,94,929,4.6000000000000005,32.1,27.740000000000002,933,16.6 +2013,8,26,12,30,830,409,455,4.800000000000001,33,22.35,932,16 +2013,8,26,13,30,942,91,938,4.9,33.5,24.76,931,15.700000000000001 +2013,8,26,14,30,532,416,139,4.9,33.7,33.29,930,15.5 +2013,8,26,15,30,714,81,889,4.800000000000001,33.4,44.51,930,15.4 +2013,8,26,16,30,409,217,350,4.7,32.5,56.76,930,15.4 +2013,8,26,17,30,310,58,714,4.6000000000000005,32,69.36,930,15.4 +2013,8,26,18,30,98,34,457,3.1,29.1,81.96000000000001,930,15.5 +2013,8,26,19,30,0,0,0,2.6,27.5,94.51,930,16.1 +2013,8,26,20,30,0,0,0,2.7,26.6,106.48,931,16.400000000000002 +2013,8,26,21,30,0,0,0,2.7,25.8,117.58,931,16.6 +2013,8,26,22,30,0,0,0,2.6,24.900000000000002,127.19,931,16.900000000000002 +2013,8,26,23,30,0,0,0,2.4000000000000004,24,134.29,931,17.3 +2013,8,27,0,30,0,0,0,2.3000000000000003,23.200000000000003,137.59,931,17.8 +2013,8,27,1,30,0,0,0,1.9000000000000001,22.400000000000002,136.19,931,18.5 +2013,8,27,2,30,0,0,0,1.5,21.700000000000003,130.5,931,19.200000000000003 +2013,8,27,3,30,0,0,0,1.2000000000000002,21.3,121.78,931,19.700000000000003 +2013,8,27,4,30,0,0,0,1.1,21,111.21000000000001,931,20.1 +2013,8,27,5,30,0,0,0,1.3,21,99.55,931,20.3 +2013,8,27,6,30,28,18,177,1.9000000000000001,21.900000000000002,87.05,931,20.400000000000002 +2013,8,27,7,30,210,56,581,2.4000000000000004,23.8,74.62,932,20.3 +2013,8,27,8,30,426,72,753,2.8000000000000003,25.700000000000003,62,931,19.6 +2013,8,27,9,30,547,218,508,3.2,27.200000000000003,49.58,931,19.1 +2013,8,27,10,30,441,373,86,3.5,28.1,37.86,931,19 +2013,8,27,11,30,285,271,16,4,28.1,27.990000000000002,930,19.1 +2013,8,27,12,30,615,474,153,4.6000000000000005,27.700000000000003,22.69,930,19.400000000000002 +2013,8,27,13,30,662,458,225,5.2,27.200000000000003,25.1,929,19.6 +2013,8,27,14,30,712,338,449,5.4,26.700000000000003,33.6,929,19.6 +2013,8,27,15,30,549,311,336,5.4,26.5,44.78,929,19.5 +2013,8,27,16,30,455,163,537,4.9,26.6,57.01,929,19.200000000000003 +2013,8,27,17,30,185,140,129,4.7,26.6,69.61,929,18.900000000000002 +2013,8,27,18,30,54,47,52,3.2,25.700000000000003,82.21000000000001,929,18.6 +2013,8,27,19,30,0,0,0,2.8000000000000003,24.900000000000002,94.76,929,18.3 +2013,8,27,20,30,0,0,0,3.2,24.400000000000002,106.75,929,18 +2013,8,27,21,30,0,0,0,3.6,23.700000000000003,117.88,930,17.8 +2013,8,27,22,30,0,0,0,3.7,23.1,127.51,930,17.6 +2013,8,27,23,30,0,0,0,3.6,22.5,134.65,930,17.400000000000002 +2013,8,28,0,30,0,0,0,3.5,22,137.94,930,17.400000000000002 +2013,8,28,1,30,0,0,0,3.3000000000000003,21.6,136.51,930,17.5 +2013,8,28,2,30,0,0,0,3.1,21.200000000000003,130.77,930,17.6 +2013,8,28,3,30,0,0,0,2.9000000000000004,20.900000000000002,122,930,17.900000000000002 +2013,8,28,4,30,0,0,0,2.7,20.6,111.38,930,18.2 +2013,8,28,5,30,0,0,0,2.7,20.5,99.69,931,18.6 +2013,8,28,6,30,24,20,88,3.4000000000000004,21.400000000000002,87.17,931,19 +2013,8,28,7,30,200,70,496,4.5,23.8,74.74,932,19.5 +2013,8,28,8,30,417,92,694,4.800000000000001,26.5,62.120000000000005,932,19.3 +2013,8,28,9,30,618,106,792,4.5,29,49.72,932,18.6 +2013,8,28,10,30,781,114,847,4.1000000000000005,30.900000000000002,38.04,932,18.1 +2013,8,28,11,30,892,116,881,4.1000000000000005,32.300000000000004,28.25,931,17.6 +2013,8,28,12,30,943,104,911,4.3,33.4,23.03,931,17 +2013,8,28,13,30,923,102,909,4.5,34.1,25.46,930,16.3 +2013,8,28,14,30,839,97,894,4.5,34.300000000000004,33.9,929,15.600000000000001 +2013,8,28,15,30,697,89,861,4.4,33.9,45.050000000000004,929,15 +2013,8,28,16,30,511,77,801,4.2,33.1,57.26,928,14.4 +2013,8,28,17,30,297,61,686,4.1000000000000005,32.5,69.85000000000001,929,13.9 +2013,8,28,18,30,89,34,417,2.3000000000000003,28.700000000000003,82.45,929,14.3 +2013,8,28,19,30,0,0,0,2,26.6,95.02,930,15 +2013,8,28,20,30,0,0,0,2.1,25.700000000000003,107.03,930,14.700000000000001 +2013,8,28,21,30,0,0,0,2.1,24.900000000000002,118.18,931,14.700000000000001 +2013,8,28,22,30,0,0,0,1.9000000000000001,24.1,127.85000000000001,931,14.700000000000001 +2013,8,28,23,30,0,0,0,1.7000000000000002,23.400000000000002,135,931,14.9 +2013,8,29,0,30,0,0,0,1.6,22.8,138.3,931,15 +2013,8,29,1,30,0,0,0,1.6,22.400000000000002,136.84,931,15.200000000000001 +2013,8,29,2,30,0,0,0,1.7000000000000002,22,131.04,931,15.5 +2013,8,29,3,30,0,0,0,1.9000000000000001,21.700000000000003,122.21000000000001,931,15.8 +2013,8,29,4,30,0,0,0,2.1,21.3,111.56,931,16.1 +2013,8,29,5,30,0,0,0,2.4000000000000004,21.3,99.84,932,16.2 +2013,8,29,6,30,27,17,208,3,22.400000000000002,87.3,932,16.400000000000002 +2013,8,29,7,30,214,51,623,3.7,25.400000000000002,74.86,933,16.7 +2013,8,29,8,30,433,70,780,4.1000000000000005,28.8,62.24,933,16.6 +2013,8,29,9,30,635,81,859,3.7,31.200000000000003,49.86,933,16.2 +2013,8,29,10,30,798,90,901,3.3000000000000003,33,38.230000000000004,932,15.9 +2013,8,29,11,30,906,96,922,3.1,34.4,28.5,931,15.600000000000001 +2013,8,29,12,30,950,104,922,2.9000000000000004,35.5,23.38,930,15.3 +2013,8,29,13,30,929,103,918,2.8000000000000003,36.1,25.810000000000002,930,15 +2013,8,29,14,30,843,99,899,2.7,36.300000000000004,34.21,929,14.8 +2013,8,29,15,30,700,92,864,2.6,36,45.32,928,14.600000000000001 +2013,8,29,16,30,510,82,797,2.6,35.2,57.51,928,14.5 +2013,8,29,17,30,294,65,672,2.6,34.6,70.10000000000001,928,14.4 +2013,8,29,18,30,85,35,391,1.8,30.400000000000002,82.7,928,16 +2013,8,29,19,30,0,0,0,2.2,28.5,95.28,929,16.2 +2013,8,29,20,30,0,0,0,2.7,27.700000000000003,107.3,929,15.700000000000001 +2013,8,29,21,30,0,0,0,2.8000000000000003,26.900000000000002,118.48,929,15.700000000000001 +2013,8,29,22,30,0,0,0,2.7,26.1,128.18,929,15.8 +2013,8,29,23,30,0,0,0,2.6,25.400000000000002,135.36,929,15.8 +2013,8,30,0,30,0,0,0,2.5,24.700000000000003,138.66,929,15.9 +2013,8,30,1,30,0,0,0,2.4000000000000004,24.1,137.16,929,15.9 +2013,8,30,2,30,0,0,0,2.4000000000000004,23.6,131.31,929,16 +2013,8,30,3,30,0,0,0,2.3000000000000003,23,122.43,929,16.1 +2013,8,30,4,30,0,0,0,2.1,22.5,111.73,929,16.1 +2013,8,30,5,30,0,0,0,2.3000000000000003,22.200000000000003,99.98,930,16.2 +2013,8,30,6,30,25,17,179,2.8000000000000003,23.400000000000002,87.42,930,16.3 +2013,8,30,7,30,210,57,589,3.1,26.400000000000002,74.98,931,16.400000000000002 +2013,8,30,8,30,429,78,756,2.7,30.1,62.370000000000005,931,16.1 +2013,8,30,9,30,633,92,842,2.2,32.7,50,930,14.700000000000001 +2013,8,30,10,30,797,101,889,2.1,34.2,38.410000000000004,930,14.3 +2013,8,30,11,30,908,105,915,2.1,35.4,28.76,929,13.9 +2013,8,30,12,30,959,99,939,2.3000000000000003,36.2,23.73,929,13.5 +2013,8,30,13,30,938,98,936,2.4000000000000004,36.7,26.17,928,12.9 +2013,8,30,14,30,852,93,921,2.4000000000000004,36.800000000000004,34.53,927,12.4 +2013,8,30,15,30,704,93,874,2.4000000000000004,36.4,45.6,926,12 +2013,8,30,16,30,512,82,807,2.4000000000000004,35.5,57.77,926,11.700000000000001 +2013,8,30,17,30,294,65,681,2.4000000000000004,35,70.35000000000001,926,11.600000000000001 +2013,8,30,18,30,83,35,393,1.3,30.3,82.95,926,14.600000000000001 +2013,8,30,19,30,0,0,0,1.3,28.1,95.55,926,14.8 +2013,8,30,20,30,0,0,0,1.5,27.200000000000003,107.59,927,14.4 +2013,8,30,21,30,0,0,0,1.6,26.5,118.79,927,14.4 +2013,8,30,22,30,0,0,0,1.8,25.900000000000002,128.52,927,14.5 +2013,8,30,23,30,0,0,0,1.9000000000000001,25.400000000000002,135.72,927,14.600000000000001 +2013,8,31,0,30,0,0,0,2.1,24.900000000000002,139.03,927,14.8 +2013,8,31,1,30,0,0,0,2.2,24.5,137.49,926,15 +2013,8,31,2,30,0,0,0,2.3000000000000003,24.1,131.58,926,15.3 +2013,8,31,3,30,0,0,0,2.3000000000000003,23.5,122.64,926,15.600000000000001 +2013,8,31,4,30,0,0,0,2.2,23,111.9,926,15.8 +2013,8,31,5,30,0,0,0,2.3000000000000003,22.700000000000003,100.13,927,15.8 +2013,8,31,6,30,24,17,168,2.8000000000000003,23.700000000000003,87.54,927,15.9 +2013,8,31,7,30,207,59,579,3.1,26.700000000000003,75.11,927,16 +2013,8,31,8,30,428,80,753,2.6,30.700000000000003,62.5,927,15.9 +2013,8,31,9,30,632,94,840,2,33.800000000000004,50.15,927,14.700000000000001 +2013,8,31,10,30,797,103,888,1.8,35.4,38.6,927,14.3 +2013,8,31,11,30,907,108,914,2,36.5,29.03,926,14 +2013,8,31,12,30,948,124,903,2.1,37.300000000000004,24.080000000000002,925,13.700000000000001 +2013,8,31,13,30,926,123,898,2.1,37.7,26.53,924,13.5 +2013,8,31,14,30,838,118,877,2.1,37.7,34.84,924,13.4 +2013,8,31,15,30,688,118,819,2,37.300000000000004,45.88,923,13.200000000000001 +2013,8,31,16,30,495,103,741,2,36.4,58.03,923,13 +2013,8,31,17,30,279,80,599,2,35.800000000000004,70.60000000000001,923,12.9 +2013,8,31,18,30,75,39,303,1.1,31.3,83.21000000000001,923,16 +2013,8,31,19,30,0,0,0,1.3,29.200000000000003,95.81,924,16 +2013,8,31,20,30,0,0,0,1.6,28.400000000000002,107.87,924,15.600000000000001 +2013,8,31,21,30,0,0,0,1.9000000000000001,27.700000000000003,119.10000000000001,924,15.5 +2013,8,31,22,30,0,0,0,2.1,27.1,128.85,924,15.5 +2013,8,31,23,30,0,0,0,2.5,26.5,136.09,924,15.4 +2013,9,1,0,30,0,0,0,2.7,26,139.39000000000001,924,15.5 +2013,9,1,1,30,0,0,0,2.7,25.3,137.82,924,15.600000000000001 +2013,9,1,2,30,0,0,0,2.7,24.700000000000003,131.84,925,15.8 +2013,9,1,3,30,0,0,0,2.8000000000000003,24.1,122.86,925,16.1 +2013,9,1,4,30,0,0,0,2.9000000000000004,23.5,112.08,925,16.400000000000002 +2013,9,1,5,30,0,0,0,3.2,23.200000000000003,100.27,926,16.6 +2013,9,1,6,30,20,16,104,3.5,24,87.66,926,16.7 +2013,9,1,7,30,196,71,488,3.8000000000000003,26.8,75.23,926,16.900000000000002 +2013,9,1,8,30,409,102,668,3.4000000000000004,30.400000000000002,62.620000000000005,927,17 +2013,9,1,9,30,608,122,762,2.3000000000000003,33.4,50.300000000000004,927,16.3 +2013,9,1,10,30,770,136,813,1.1,35.4,38.79,926,15.5 +2013,9,1,11,30,876,147,836,0.9,36.7,29.3,926,15.100000000000001 +2013,9,1,12,30,855,377,526,1.1,37.5,24.43,925,14.9 +2013,9,1,13,30,910,116,891,1.3,37.7,26.900000000000002,924,14.700000000000001 +2013,9,1,14,30,172,166,7,1.4000000000000001,37.7,35.160000000000004,924,14.600000000000001 +2013,9,1,15,30,628,211,602,1.5,37.2,46.17,923,14.4 +2013,9,1,16,30,489,89,762,1.5,36.4,58.300000000000004,923,14.100000000000001 +2013,9,1,17,30,188,129,182,1.5,35.9,70.86,923,14.100000000000001 +2013,9,1,18,30,55,38,151,0.9,32.1,83.46000000000001,924,17 +2013,9,1,19,30,0,0,0,1.1,30.200000000000003,96.08,925,17.8 +2013,9,1,20,30,0,0,0,1.3,29.3,108.16,925,17.3 +2013,9,1,21,30,0,0,0,1.5,28.5,119.41,925,17.3 +2013,9,1,22,30,0,0,0,1.4000000000000001,27.8,129.2,926,17.5 +2013,9,1,23,30,0,0,0,1.1,26.900000000000002,136.46,926,17.8 +2013,9,2,0,30,0,0,0,1,26.200000000000003,139.76,926,18 +2013,9,2,1,30,0,0,0,0.9,25.6,138.15,926,18.2 +2013,9,2,2,30,0,0,0,0.9,25.200000000000003,132.11,926,18.3 +2013,9,2,3,30,0,0,0,0.9,24.8,123.07000000000001,927,18.5 +2013,9,2,4,30,0,0,0,0.9,24.3,112.25,927,18.7 +2013,9,2,5,30,0,0,0,1.1,23.900000000000002,100.42,927,18.7 +2013,9,2,6,30,19,15,93,1.8,24.1,87.78,928,18.7 +2013,9,2,7,30,193,68,495,2.5,25.700000000000003,75.35000000000001,929,18.400000000000002 +2013,9,2,8,30,409,94,689,2.9000000000000004,28.1,62.75,929,18.3 +2013,9,2,9,30,612,108,791,3.3000000000000003,30.400000000000002,50.45,929,18 +2013,9,2,10,30,775,115,849,3.7,32.300000000000004,38.980000000000004,929,17.900000000000002 +2013,9,2,11,30,884,119,880,4.1000000000000005,33.6,29.57,928,17.8 +2013,9,2,12,30,924,138,866,4.2,34.5,24.79,927,17.7 +2013,9,2,13,30,904,131,870,4.4,34.800000000000004,27.26,926,17.7 +2013,9,2,14,30,819,122,856,4.4,34.7,35.49,926,17.5 +2013,9,2,15,30,654,167,706,4.3,34.2,46.45,925,17 +2013,9,2,16,30,487,95,751,4.1000000000000005,33.2,58.56,925,16.5 +2013,9,2,17,30,218,112,330,3.9000000000000004,32.6,71.12,925,16.2 +2013,9,2,18,30,68,35,306,2.2,29.400000000000002,83.72,926,16.8 +2013,9,2,19,30,0,0,0,1.5,27.5,96.35000000000001,927,17.8 +2013,9,2,20,30,0,0,0,1.4000000000000001,26.5,108.44,928,18.2 +2013,9,2,21,30,0,0,0,1.2000000000000002,25.700000000000003,119.72,928,18.3 +2013,9,2,22,30,0,0,0,1,25.1,129.54,928,18.400000000000002 +2013,9,2,23,30,0,0,0,0.8,24.6,136.83,928,18.400000000000002 +2013,9,3,0,30,0,0,0,0.7000000000000001,24.3,140.13,928,18.400000000000002 +2013,9,3,1,30,0,0,0,0.5,24.3,138.48,929,18.400000000000002 +2013,9,3,2,30,0,0,0,0.30000000000000004,24.1,132.38,929,18.400000000000002 +2013,9,3,3,30,0,0,0,0.4,23.6,123.29,929,18.400000000000002 +2013,9,3,4,30,0,0,0,0.6000000000000001,22.8,112.42,929,18.400000000000002 +2013,9,3,5,30,0,0,0,0.8,22.200000000000003,100.56,929,18.5 +2013,9,3,6,30,20,15,136,1.5,23.1,87.9,930,18.5 +2013,9,3,7,30,201,59,566,2,25.900000000000002,75.47,930,18.3 +2013,9,3,8,30,421,80,748,2.2,28.8,62.88,930,17.7 +2013,9,3,9,30,627,92,842,2.5,31,50.6,930,17.5 +2013,9,3,10,30,793,98,897,2.9000000000000004,32.800000000000004,39.18,930,17.1 +2013,9,3,11,30,906,100,929,3.2,34.1,29.84,929,16.3 +2013,9,3,12,30,952,99,942,3.3000000000000003,35.1,25.150000000000002,928,15.200000000000001 +2013,9,3,13,30,932,96,943,3.4000000000000004,35.7,27.63,928,13.9 +2013,9,3,14,30,845,91,929,3.5,35.800000000000004,35.81,927,12.8 +2013,9,3,15,30,697,90,886,3.5,35.4,46.75,926,11.8 +2013,9,3,16,30,505,77,825,3.4000000000000004,34.4,58.83,926,10.8 +2013,9,3,17,30,284,60,703,3.3000000000000003,33.800000000000004,71.38,926,10 +2013,9,3,18,30,54,34,186,1.6,28.8,83.97,927,12 +2013,9,3,19,30,0,0,0,1.4000000000000001,26.400000000000002,96.62,928,12.600000000000001 +2013,9,3,20,30,0,0,0,1.5,25.3,108.73,928,12.3 +2013,9,3,21,30,0,0,0,1.5,24.400000000000002,120.03,929,12.200000000000001 +2013,9,3,22,30,0,0,0,1.4000000000000001,23.5,129.88,929,12.200000000000001 +2013,9,3,23,30,0,0,0,1.3,22.8,137.20000000000002,929,12.3 +2013,9,4,0,30,0,0,0,1.2000000000000002,22.200000000000003,140.5,929,12.3 +2013,9,4,1,30,0,0,0,1.1,21.700000000000003,138.81,929,12.4 +2013,9,4,2,30,0,0,0,1,21.200000000000003,132.65,929,12.4 +2013,9,4,3,30,0,0,0,0.9,20.900000000000002,123.5,929,12.4 +2013,9,4,4,30,0,0,0,0.9,20.6,112.59,930,12.4 +2013,9,4,5,30,0,0,0,0.9,20.400000000000002,100.7,930,12.4 +2013,9,4,6,30,21,14,211,1.4000000000000001,21.400000000000002,88.02,930,12.600000000000001 +2013,9,4,7,30,213,49,657,2.1,24.3,75.60000000000001,931,12.8 +2013,9,4,8,30,439,66,823,2.4000000000000004,28.3,63.01,931,13 +2013,9,4,9,30,648,75,906,2.8000000000000003,31.6,50.75,931,12.3 +2013,9,4,10,30,817,81,952,3.2,33.300000000000004,39.38,931,11.200000000000001 +2013,9,4,11,30,926,84,973,3.4000000000000004,34.5,30.12,931,10.3 +2013,9,4,12,30,972,85,983,3.5,35.4,25.51,930,9.5 +2013,9,4,13,30,948,83,980,3.5,35.800000000000004,28,929,8.8 +2013,9,4,14,30,857,79,964,3.4000000000000004,35.9,36.14,929,8.200000000000001 +2013,9,4,15,30,709,73,932,3.4000000000000004,35.4,47.04,928,7.6000000000000005 +2013,9,4,16,30,511,65,869,3.2,34.5,59.11,928,7.2 +2013,9,4,17,30,286,52,745,3.1,33.9,71.64,928,7.2 +2013,9,4,18,30,70,27,432,1.4000000000000001,28.5,84.23,929,10.700000000000001 +2013,9,4,19,30,0,0,0,1.3,26.3,96.9,930,11.4 +2013,9,4,20,30,0,0,0,1.3,25.400000000000002,109.02,930,11.600000000000001 +2013,9,4,21,30,0,0,0,1.3,24.8,120.35000000000001,930,12.100000000000001 +2013,9,4,22,30,0,0,0,1.2000000000000002,24.200000000000003,130.23,930,12.9 +2013,9,4,23,30,0,0,0,1.2000000000000002,23.700000000000003,137.57,930,13.700000000000001 +2013,9,5,0,30,0,0,0,1.1,23.200000000000003,140.88,930,14.5 +2013,9,5,1,30,0,0,0,1.1,22.8,139.14000000000001,930,15.4 +2013,9,5,2,30,0,0,0,1.1,22.400000000000002,132.92000000000002,930,16.1 +2013,9,5,3,30,0,0,0,1.2000000000000002,21.900000000000002,123.71000000000001,930,16.7 +2013,9,5,4,30,0,0,0,1.2000000000000002,21.5,112.76,931,17.1 +2013,9,5,5,30,0,0,0,1.2000000000000002,21.3,100.85000000000001,931,17.3 +2013,9,5,6,30,17,14,113,1.7000000000000002,22.6,88.14,932,17.5 +2013,9,5,7,30,194,64,530,1.9000000000000001,25.8,75.72,932,17.7 +2013,9,5,8,30,411,90,712,1,29.5,63.14,932,17.2 +2013,9,5,9,30,614,107,803,1,32.1,50.910000000000004,932,15.9 +2013,9,5,10,30,774,120,849,1.6,33.7,39.58,932,15.100000000000001 +2013,9,5,11,30,791,347,515,2,34.800000000000004,30.400000000000002,931,14.9 +2013,9,5,12,30,583,459,138,2.3000000000000003,35.4,25.87,931,14.8 +2013,9,5,13,30,833,337,564,2.6,35.7,28.38,930,14.8 +2013,9,5,14,30,542,399,178,2.9000000000000004,35.4,36.480000000000004,929,14.9 +2013,9,5,15,30,514,299,318,3.2,34.5,47.34,929,15.100000000000001 +2013,9,5,16,30,247,213,66,3.5,33.4,59.38,929,15.4 +2013,9,5,17,30,189,117,232,3.5,32.800000000000004,71.91,929,15.700000000000001 +2013,9,5,18,30,51,31,208,2.5,29.8,84.5,930,16.6 +2013,9,5,19,30,0,0,0,2.5,28.1,97.17,930,17.400000000000002 +2013,9,5,20,30,0,0,0,2.6,27.200000000000003,109.32000000000001,931,17.6 +2013,9,5,21,30,0,0,0,2.5,26.400000000000002,120.67,931,17.8 +2013,9,5,22,30,0,0,0,2.4000000000000004,25.700000000000003,130.58,931,17.8 +2013,9,5,23,30,0,0,0,2.2,25.1,137.95000000000002,931,17.7 +2013,9,6,0,30,0,0,0,2.1,24.6,141.25,931,17.6 +2013,9,6,1,30,0,0,0,2.1,24.1,139.47,931,17.6 +2013,9,6,2,30,0,0,0,2,23.6,133.19,931,17.5 +2013,9,6,3,30,0,0,0,1.9000000000000001,23,123.92,931,17.6 +2013,9,6,4,30,0,0,0,1.7000000000000002,22.5,112.93,931,17.6 +2013,9,6,5,30,0,0,0,1.6,22.200000000000003,100.99000000000001,931,17.7 +2013,9,6,6,30,15,13,83,2.1,23.1,88.26,932,17.900000000000002 +2013,9,6,7,30,187,70,479,2.2,26.200000000000003,75.84,932,17.900000000000002 +2013,9,6,8,30,401,102,665,1.5,29.5,63.28,932,17.3 +2013,9,6,9,30,601,123,761,1.5,31.700000000000003,51.06,932,16.7 +2013,9,6,10,30,762,139,810,2,33.2,39.79,932,16.2 +2013,9,6,11,30,801,333,544,2.5,34.2,30.68,931,15.700000000000001 +2013,9,6,12,30,928,107,915,2.7,34.9,26.240000000000002,930,15.4 +2013,9,6,13,30,904,105,912,2.9000000000000004,35.300000000000004,28.75,929,15.100000000000001 +2013,9,6,14,30,815,99,894,3,35.2,36.81,929,14.700000000000001 +2013,9,6,15,30,629,175,673,3.1,34.800000000000004,47.64,928,14.4 +2013,9,6,16,30,473,80,778,3,33.9,59.660000000000004,928,14.200000000000001 +2013,9,6,17,30,257,63,635,3,33.300000000000004,72.18,928,14.100000000000001 +2013,9,6,18,30,55,28,296,1.8,30,84.76,928,14.8 +2013,9,6,19,30,0,0,0,1.8,28.5,97.45,929,15.600000000000001 +2013,9,6,20,30,0,0,0,2.1,27.8,109.61,929,15.5 +2013,9,6,21,30,0,0,0,2.4000000000000004,27.1,120.99000000000001,929,15.5 +2013,9,6,22,30,0,0,0,2.7,26.3,130.93,929,15.600000000000001 +2013,9,6,23,30,0,0,0,2.9000000000000004,25.6,138.33,929,15.700000000000001 +2013,9,7,0,30,0,0,0,3,24.900000000000002,141.63,929,15.9 +2013,9,7,1,30,0,0,0,3,24.3,139.81,929,16.1 +2013,9,7,2,30,0,0,0,2.8000000000000003,23.700000000000003,133.46,929,16.3 +2013,9,7,3,30,0,0,0,2.5,23,124.13000000000001,929,16.5 +2013,9,7,4,30,0,0,0,2.1,22.400000000000002,113.10000000000001,929,16.7 +2013,9,7,5,30,0,0,0,1.9000000000000001,22.1,101.13,929,16.900000000000002 +2013,9,7,6,30,14,12,86,2.2,22.900000000000002,88.38,930,17 +2013,9,7,7,30,184,67,483,2.4000000000000004,25.8,75.97,930,17.1 +2013,9,7,8,30,396,99,665,1.8,29.400000000000002,63.410000000000004,930,16.6 +2013,9,7,9,30,470,268,321,1.6,31.8,51.22,930,15.3 +2013,9,7,10,30,676,282,514,2,33.300000000000004,39.99,930,14.9 +2013,9,7,11,30,812,316,578,2.6,34.2,30.96,929,14.9 +2013,9,7,12,30,536,446,101,2.9000000000000004,34.7,26.6,929,14.9 +2013,9,7,13,30,817,346,539,3.2,34.9,29.13,928,14.9 +2013,9,7,14,30,227,218,11,3.4000000000000004,34.7,37.15,927,14.700000000000001 +2013,9,7,15,30,628,169,685,3.5,34,47.94,927,14.5 +2013,9,7,16,30,441,140,601,3.5,33.1,59.94,927,14.3 +2013,9,7,17,30,233,98,450,3.5,32.5,72.45,927,14.100000000000001 +2013,9,7,18,30,46,32,160,2.2,29.3,85.03,927,14.600000000000001 +2013,9,7,19,30,0,0,0,2,27.8,97.73,928,15.100000000000001 +2013,9,7,20,30,0,0,0,2.3000000000000003,26.900000000000002,109.91,928,14.8 +2013,9,7,21,30,0,0,0,2.5,26.1,121.31,929,14.700000000000001 +2013,9,7,22,30,0,0,0,2.8000000000000003,25.200000000000003,131.28,928,14.700000000000001 +2013,9,7,23,30,0,0,0,2.9000000000000004,24.400000000000002,138.71,928,15 +2013,9,8,0,30,0,0,0,2.8000000000000003,23.6,142.01,928,15.600000000000001 +2013,9,8,1,30,0,0,0,2.5,22.900000000000002,140.14000000000001,928,16.400000000000002 +2013,9,8,2,30,0,0,0,2,22.1,133.73,928,17.2 +2013,9,8,3,30,0,0,0,1.5,21.400000000000002,124.35000000000001,928,17.900000000000002 +2013,9,8,4,30,0,0,0,1.1,20.700000000000003,113.27,928,18.400000000000002 +2013,9,8,5,30,0,0,0,1,20.400000000000002,101.28,928,18.7 +2013,9,8,6,30,14,12,108,1.4000000000000001,21.200000000000003,88.5,928,19 +2013,9,8,7,30,189,57,549,1.7000000000000002,24.3,76.10000000000001,929,19.200000000000003 +2013,9,8,8,30,407,78,738,1.9000000000000001,27.8,63.550000000000004,929,17.6 +2013,9,8,9,30,610,90,833,2.7,30,51.38,929,16.1 +2013,9,8,10,30,772,96,885,3.4000000000000004,31.5,40.2,928,15.600000000000001 +2013,9,8,11,30,880,100,913,3.9000000000000004,32.6,31.25,928,15.200000000000001 +2013,9,8,12,30,923,97,927,4.2,33.300000000000004,26.97,927,15 +2013,9,8,13,30,809,349,528,4.4,33.5,29.51,926,15 +2013,9,8,14,30,807,92,901,4.4,33.300000000000004,37.49,925,15 +2013,9,8,15,30,656,89,851,4.5,32.7,48.24,925,15.100000000000001 +2013,9,8,16,30,259,214,92,4.6000000000000005,31.700000000000003,60.22,925,15.200000000000001 +2013,9,8,17,30,247,61,625,4.5,31,72.72,925,15.3 +2013,9,8,18,30,30,27,33,3.5,28.6,85.29,925,15.600000000000001 +2013,9,8,19,30,0,0,0,3.2,27.400000000000002,98.01,926,16 +2013,9,8,20,30,0,0,0,3.2,26.6,110.2,926,16.3 +2013,9,8,21,30,0,0,0,3.2,25.700000000000003,121.63,927,16.7 +2013,9,8,22,30,0,0,0,3.1,24.900000000000002,131.63,927,17 +2013,9,8,23,30,0,0,0,3,24.200000000000003,139.09,927,17.5 +2013,9,9,0,30,0,0,0,3,23.6,142.39000000000001,927,18 +2013,9,9,1,30,0,0,0,3.1,23.1,140.48,928,18.5 +2013,9,9,2,30,0,0,0,2.9000000000000004,22.6,134,928,19 +2013,9,9,3,30,0,0,0,2.4000000000000004,22,124.56,927,19.400000000000002 +2013,9,9,4,30,0,0,0,2,21.5,113.44,927,19.5 +2013,9,9,5,30,0,0,0,1.9000000000000001,21.1,101.42,928,19.6 +2013,9,9,6,30,13,11,89,2.5,21.400000000000002,88.62,928,19.700000000000003 +2013,9,9,7,30,184,57,530,3.2,22.700000000000003,76.22,929,19.5 +2013,9,9,8,30,400,78,727,3.6,24.6,63.68,929,18.8 +2013,9,9,9,30,601,88,825,3.9000000000000004,26.400000000000002,51.550000000000004,929,17.900000000000002 +2013,9,9,10,30,763,96,876,4.2,27.900000000000002,40.42,929,17.1 +2013,9,9,11,30,869,100,903,4.4,28.900000000000002,31.54,928,16.5 +2013,9,9,12,30,858,322,604,4.6000000000000005,29.6,27.34,928,16.3 +2013,9,9,13,30,891,88,926,4.6000000000000005,30,29.89,927,16 +2013,9,9,14,30,800,86,905,4.6000000000000005,30,37.84,926,15.8 +2013,9,9,15,30,649,87,849,4.7,29.8,48.550000000000004,926,15.700000000000001 +2013,9,9,16,30,230,202,57,4.7,29.3,60.51,926,15.4 +2013,9,9,17,30,241,61,615,4.7,28.900000000000002,73,926,15.3 +2013,9,9,18,30,45,25,250,3.6,26.900000000000002,85.56,926,15.5 +2013,9,9,19,30,0,0,0,3.4000000000000004,25.8,98.29,927,15.9 +2013,9,9,20,30,0,0,0,3.7,25.1,110.5,928,16.3 +2013,9,9,21,30,0,0,0,3.9000000000000004,24.3,121.95,928,16.900000000000002 +2013,9,9,22,30,0,0,0,3.9000000000000004,23.5,131.99,928,17.5 +2013,9,9,23,30,0,0,0,3.8000000000000003,22.8,139.47,929,18.2 +2013,9,10,0,30,0,0,0,3.6,22.1,142.77,929,18.8 +2013,9,10,1,30,0,0,0,3.4000000000000004,21.5,140.81,928,19.200000000000003 +2013,9,10,2,30,0,0,0,3.3000000000000003,21,134.26,928,19.6 +2013,9,10,3,30,0,0,0,3.2,20.700000000000003,124.76,928,19.900000000000002 +2013,9,10,4,30,0,0,0,2.9000000000000004,20.400000000000002,113.61,929,20 +2013,9,10,5,30,0,0,0,2.7,20.3,101.56,929,20 +2013,9,10,6,30,13,11,93,3.4000000000000004,20.900000000000002,88.74,930,19.8 +2013,9,10,7,30,183,54,545,4.1000000000000005,22.700000000000003,76.35000000000001,931,19.400000000000002 +2013,9,10,8,30,113,113,0,4.5,25,63.82,931,18.6 +2013,9,10,9,30,259,241,30,4.7,27.1,51.71,931,18 +2013,9,10,10,30,187,182,7,5,28.700000000000003,40.63,931,17.6 +2013,9,10,11,30,488,413,89,5.2,29.900000000000002,31.84,930,17.3 +2013,9,10,12,30,685,437,280,5.4,30.5,27.72,929,17.2 +2013,9,10,13,30,489,418,83,5.4,30.5,30.28,929,17.2 +2013,9,10,14,30,786,99,874,5.4,30.200000000000003,38.18,928,17.3 +2013,9,10,15,30,502,286,328,5.4,29.700000000000003,48.86,928,17.5 +2013,9,10,16,30,251,208,87,5.300000000000001,28.8,60.800000000000004,928,17.7 +2013,9,10,17,30,229,67,562,5.2,28.3,73.27,928,17.900000000000002 +2013,9,10,18,30,39,26,185,4,26.700000000000003,85.83,929,18.2 +2013,9,10,19,30,0,0,0,3.4000000000000004,26,98.58,930,18.5 +2013,9,10,20,30,0,0,0,3.2,25.400000000000002,110.8,930,18.900000000000002 +2013,9,10,21,30,0,0,0,3.1,24.8,122.27,930,19.1 +2013,9,10,22,30,0,0,0,3,24.200000000000003,132.34,931,19.400000000000002 +2013,9,10,23,30,0,0,0,2.9000000000000004,23.6,139.86,931,19.700000000000003 +2013,9,11,0,30,0,0,0,2.9000000000000004,23,143.16,931,19.900000000000002 +2013,9,11,1,30,0,0,0,2.8000000000000003,22.400000000000002,141.15,931,20.200000000000003 +2013,9,11,2,30,0,0,0,2.7,21.900000000000002,134.53,931,20.400000000000002 +2013,9,11,3,30,0,0,0,2.6,21.6,124.97,931,20.6 +2013,9,11,4,30,0,0,0,2.5,21.3,113.78,931,20.6 +2013,9,11,5,30,0,0,0,2.5,21.200000000000003,101.71000000000001,931,20.5 +2013,9,11,6,30,11,10,61,2.7,21.6,88.86,932,20.400000000000002 +2013,9,11,7,30,100,87,58,3.1,23.1,76.48,932,19.900000000000002 +2013,9,11,8,30,239,186,120,3.4000000000000004,25.3,63.96,932,18.6 +2013,9,11,9,30,597,85,831,3.6,27.3,51.88,933,17.400000000000002 +2013,9,11,10,30,653,284,488,3.8000000000000003,29.1,40.85,932,16.8 +2013,9,11,11,30,759,343,491,3.9000000000000004,30.5,32.14,932,16.400000000000002 +2013,9,11,12,30,611,451,182,4.1000000000000005,31.6,28.09,931,16.1 +2013,9,11,13,30,622,433,219,4.2,32.2,30.66,930,15.9 +2013,9,11,14,30,787,97,882,4.2,32.300000000000004,38.53,929,15.700000000000001 +2013,9,11,15,30,348,295,80,4.1000000000000005,32.1,49.17,929,15.4 +2013,9,11,16,30,447,78,762,3.9000000000000004,31.3,61.08,929,15.100000000000001 +2013,9,11,17,30,151,110,144,3.8000000000000003,30.8,73.55,929,14.8 +2013,9,11,18,30,23,23,8,2.1,27.700000000000003,86.10000000000001,930,15.100000000000001 +2013,9,11,19,30,0,0,0,1.8,26.1,98.86,930,15.5 +2013,9,11,20,30,0,0,0,2.1,25.400000000000002,111.10000000000001,930,15.3 +2013,9,11,21,30,0,0,0,2.5,24.700000000000003,122.60000000000001,930,15.3 +2013,9,11,22,30,0,0,0,2.8000000000000003,24,132.7,931,15.600000000000001 +2013,9,11,23,30,0,0,0,2.7,23.200000000000003,140.24,930,15.9 +2013,9,12,0,30,0,0,0,2.4000000000000004,22.3,143.54,930,16.3 +2013,9,12,1,30,0,0,0,2,21.400000000000002,141.48,930,16.8 +2013,9,12,2,30,0,0,0,1.6,20.700000000000003,134.8,930,17.1 +2013,9,12,3,30,0,0,0,1.4000000000000001,20.1,125.18,930,17.400000000000002 +2013,9,12,4,30,0,0,0,1.4000000000000001,19.6,113.94,930,17.7 +2013,9,12,5,30,0,0,0,1.4000000000000001,19.3,101.85000000000001,931,18 +2013,9,12,6,30,11,10,61,1.9000000000000001,20.200000000000003,88.97,931,18.3 +2013,9,12,7,30,177,61,502,2.5,23,76.61,931,18.400000000000002 +2013,9,12,8,30,392,89,695,2.6,26.3,64.1,932,17.6 +2013,9,12,9,30,591,107,787,2.7,28.5,52.050000000000004,932,17.1 +2013,9,12,10,30,752,119,839,2.9000000000000004,30.1,41.07,932,17.1 +2013,9,12,11,30,832,247,694,3,31.200000000000003,32.43,931,16.900000000000002 +2013,9,12,12,30,690,429,297,3.2,32.1,28.47,930,16.6 +2013,9,12,13,30,509,423,100,3.3000000000000003,32.6,31.05,929,16.3 +2013,9,12,14,30,782,113,860,3.4000000000000004,32.6,38.88,928,16.1 +2013,9,12,15,30,628,115,790,3.4000000000000004,32.300000000000004,49.480000000000004,928,15.700000000000001 +2013,9,12,16,30,347,187,334,3.3000000000000003,31.5,61.370000000000005,927,15.4 +2013,9,12,17,30,222,71,541,3.3000000000000003,30.900000000000002,73.83,927,15.100000000000001 +2013,9,12,18,30,24,22,32,1.6,27.700000000000003,86.37,928,15.600000000000001 +2013,9,12,19,30,0,0,0,1.3,26.200000000000003,99.15,928,16.1 +2013,9,12,20,30,0,0,0,1.3,25.400000000000002,111.4,929,16.1 +2013,9,12,21,30,0,0,0,1.3,24.8,122.92,929,15.9 +2013,9,12,22,30,0,0,0,1.2000000000000002,24.1,133.06,929,15.8 +2013,9,12,23,30,0,0,0,1.2000000000000002,23.5,140.63,929,15.600000000000001 +2013,9,13,0,30,0,0,0,1.2000000000000002,23,143.93,929,15.5 +2013,9,13,1,30,0,0,0,1.1,22.400000000000002,141.82,928,15.4 +2013,9,13,2,30,0,0,0,1.1,21.900000000000002,135.06,928,15.4 +2013,9,13,3,30,0,0,0,1,21.5,125.39,928,15.4 +2013,9,13,4,30,0,0,0,1,21.200000000000003,114.11,928,15.5 +2013,9,13,5,30,0,0,0,0.9,21,101.99000000000001,928,15.5 +2013,9,13,6,30,0,0,0,1.5,21.8,89.09,929,15.600000000000001 +2013,9,13,7,30,166,75,396,1.6,24.1,76.74,929,15.8 +2013,9,13,8,30,376,115,602,1.1,27.1,64.25,929,15.600000000000001 +2013,9,13,9,30,577,136,720,1.2000000000000002,29.3,52.22,929,15.200000000000001 +2013,9,13,10,30,618,315,403,1.8,30.6,41.29,928,15.200000000000001 +2013,9,13,11,30,73,73,0,2.3000000000000003,31.8,32.74,928,15.200000000000001 +2013,9,13,12,30,815,356,525,2.7,32.800000000000004,28.85,927,14.9 +2013,9,13,13,30,564,433,154,2.8000000000000003,33.4,31.44,926,14.4 +2013,9,13,14,30,778,130,836,2.9000000000000004,33.5,39.230000000000004,925,14 +2013,9,13,15,30,626,123,779,3,33.2,49.800000000000004,924,13.5 +2013,9,13,16,30,429,110,672,3.1,32.300000000000004,61.67,924,13.200000000000001 +2013,9,13,17,30,214,82,484,3.1,31.700000000000003,74.11,924,13.100000000000001 +2013,9,13,18,30,29,22,115,2.3000000000000003,28.700000000000003,86.64,925,14.4 +2013,9,13,19,30,0,0,0,2.8000000000000003,27.5,99.43,925,15.4 +2013,9,13,20,30,0,0,0,3.3000000000000003,26.700000000000003,111.7,926,16.1 +2013,9,13,21,30,0,0,0,3.4000000000000004,25.700000000000003,123.25,926,17 +2013,9,13,22,30,0,0,0,3,24.8,133.42000000000002,926,17.900000000000002 +2013,9,13,23,30,0,0,0,2.5,24,141.02,926,18.5 +2013,9,14,0,30,0,0,0,1.9000000000000001,23.3,144.31,926,18.7 +2013,9,14,1,30,0,0,0,1.4000000000000001,22.5,142.15,926,18.7 +2013,9,14,2,30,0,0,0,1.1,21.900000000000002,135.33,926,18.5 +2013,9,14,3,30,0,0,0,0.8,21.3,125.59,925,18.2 +2013,9,14,4,30,0,0,0,0.6000000000000001,20.8,114.28,926,17.900000000000002 +2013,9,14,5,30,0,0,0,0.5,20.400000000000002,102.13,926,17.7 +2013,9,14,6,30,0,0,0,0.8,21.3,89.21000000000001,927,17.6 +2013,9,14,7,30,175,61,504,1.4000000000000001,24.1,76.87,927,17.3 +2013,9,14,8,30,391,88,702,1.9000000000000001,27.6,64.39,927,15.9 +2013,9,14,9,30,591,105,796,1.9000000000000001,30.200000000000003,52.39,928,14.9 +2013,9,14,10,30,752,115,851,2,32,41.52,927,14.5 +2013,9,14,11,30,592,422,204,2.2,33.1,33.04,927,14.3 +2013,9,14,12,30,743,374,423,2.5,33.7,29.23,926,14.100000000000001 +2013,9,14,13,30,861,148,838,2.8000000000000003,34,31.830000000000002,925,13.9 +2013,9,14,14,30,173,168,6,3,33.800000000000004,39.58,925,13.8 +2013,9,14,15,30,519,258,408,3.4000000000000004,33.2,50.120000000000005,924,13.700000000000001 +2013,9,14,16,30,411,137,584,3.6,32.300000000000004,61.96,924,13.8 +2013,9,14,17,30,163,98,241,3.7,31.700000000000003,74.39,924,14 +2013,9,14,18,30,19,19,1,2.9000000000000004,29,86.91,925,14.700000000000001 +2013,9,14,19,30,0,0,0,3.2,27.900000000000002,99.72,925,15.600000000000001 +2013,9,14,20,30,0,0,0,3.5,27.3,112,926,16.1 +2013,9,14,21,30,0,0,0,3.6,26.8,123.58,926,16.7 +2013,9,14,22,30,0,0,0,3.6,26.3,133.78,926,17.1 +2013,9,14,23,30,0,0,0,3.5,25.900000000000002,141.41,927,17.400000000000002 +2013,9,15,0,30,0,0,0,3.4000000000000004,25.400000000000002,144.70000000000002,927,17.5 +2013,9,15,1,30,0,0,0,3.2,24.8,142.49,927,17.3 +2013,9,15,2,30,0,0,0,2.9000000000000004,24.1,135.59,927,17 +2013,9,15,3,30,0,0,0,2.7,23.400000000000002,125.8,927,16.6 +2013,9,15,4,30,0,0,0,2.5,22.700000000000003,114.44,927,16.2 +2013,9,15,5,30,0,0,0,2.4000000000000004,22.200000000000003,102.27,928,15.8 +2013,9,15,6,30,0,0,0,2.7,22.400000000000002,89.33,928,15.600000000000001 +2013,9,15,7,30,79,77,6,3.3000000000000003,24.200000000000003,77,929,15.9 +2013,9,15,8,30,346,129,505,3.6,26.5,64.53,929,17.1 +2013,9,15,9,30,464,254,346,3.5,28.200000000000003,52.57,929,17.5 +2013,9,15,10,30,724,159,758,3.2,29.200000000000003,41.75,929,17.7 +2013,9,15,11,30,827,168,790,3.2,30.1,33.35,929,17.8 +2013,9,15,12,30,849,291,641,3.4000000000000004,30.700000000000003,29.61,929,17.7 +2013,9,15,13,30,585,428,185,3.7,30.8,32.22,928,17.5 +2013,9,15,14,30,584,360,292,3.9000000000000004,30.700000000000003,39.94,928,17.3 +2013,9,15,15,30,564,192,584,4.1000000000000005,30.400000000000002,50.44,928,17.1 +2013,9,15,16,30,320,189,282,4.1000000000000005,29.8,62.26,928,16.8 +2013,9,15,17,30,94,92,9,4,29.400000000000002,74.67,928,16.6 +2013,9,15,18,30,20,20,0,2.6,27.3,87.17,929,16.7 +2013,9,15,19,30,0,0,0,2,26.200000000000003,100,929,16.7 +2013,9,15,20,30,0,0,0,1.8,25.700000000000003,112.3,929,16.5 +2013,9,15,21,30,0,0,0,1.7000000000000002,25.3,123.9,930,16.5 +2013,9,15,22,30,0,0,0,1.7000000000000002,25,134.13,930,16.5 +2013,9,15,23,30,0,0,0,1.9000000000000001,24.700000000000003,141.8,930,16.5 +2013,9,16,0,30,0,0,0,2.1,24.3,145.09,930,16.5 +2013,9,16,1,30,0,0,0,2.1,23.900000000000002,142.82,930,16.5 +2013,9,16,2,30,0,0,0,2.1,23.400000000000002,135.85,930,16.6 +2013,9,16,3,30,0,0,0,2,22.900000000000002,126,930,16.8 +2013,9,16,4,30,0,0,0,1.8,22.400000000000002,114.61,930,17.1 +2013,9,16,5,30,0,0,0,1.7000000000000002,22,102.41,931,17.5 +2013,9,16,6,30,0,0,0,2,22.5,89.44,931,17.8 +2013,9,16,7,30,87,80,29,2.4000000000000004,24.5,77.13,931,18.1 +2013,9,16,8,30,268,177,213,2.5,26.8,64.68,932,18.3 +2013,9,16,9,30,481,239,401,2.5,28.400000000000002,52.75,932,18.3 +2013,9,16,10,30,44,44,0,2.9000000000000004,29.6,41.980000000000004,931,18.2 +2013,9,16,11,30,393,359,42,3.3000000000000003,30.400000000000002,33.660000000000004,931,18.1 +2013,9,16,12,30,696,413,327,3.7,30.8,29.990000000000002,930,17.900000000000002 +2013,9,16,13,30,652,409,289,3.9000000000000004,30.700000000000003,32.61,930,17.7 +2013,9,16,14,30,579,359,288,3.9000000000000004,30.200000000000003,40.29,929,17.400000000000002 +2013,9,16,15,30,17,17,0,3.7,29.3,50.76,929,17.2 +2013,9,16,16,30,117,117,0,3.1,28.3,62.550000000000004,929,17 +2013,9,16,17,30,178,80,375,2.7,27.8,74.96000000000001,929,17.2 +2013,9,16,18,30,12,12,0,1.1,25.200000000000003,87.44,930,19.1 +2013,9,16,19,30,0,0,0,0.9,24.200000000000003,100.29,930,19.3 +2013,9,16,20,30,0,0,0,1,23.700000000000003,112.61,931,18.900000000000002 +2013,9,16,21,30,0,0,0,1,23.1,124.23,931,18.5 +2013,9,16,22,30,0,0,0,1.1,22.6,134.49,931,18.3 +2013,9,16,23,30,0,0,0,1.1,22.1,142.19,931,18 +2013,9,17,0,30,0,0,0,1.1,21.700000000000003,145.48,931,17.900000000000002 +2013,9,17,1,30,0,0,0,1.1,21.400000000000002,143.16,931,18 +2013,9,17,2,30,0,0,0,1.1,21.3,136.11,931,18.2 +2013,9,17,3,30,0,0,0,1.1,21.1,126.2,931,18.5 +2013,9,17,4,30,0,0,0,1,20.900000000000002,114.77,931,18.900000000000002 +2013,9,17,5,30,0,0,0,1,20.8,102.55,931,19.3 +2013,9,17,6,30,0,0,0,1.3,21.200000000000003,89.55,931,19.6 +2013,9,17,7,30,58,58,0,1.8,22.400000000000002,77.26,932,19.900000000000002 +2013,9,17,8,30,182,165,39,2.2,23.900000000000002,64.83,932,19.900000000000002 +2013,9,17,9,30,207,200,12,2.5,25.1,52.93,932,19.3 +2013,9,17,10,30,353,318,46,2.8000000000000003,26,42.21,932,18.7 +2013,9,17,11,30,292,277,17,3.1,26.5,33.97,931,18.2 +2013,9,17,12,30,471,410,71,3.4000000000000004,26.900000000000002,30.37,931,17.8 +2013,9,17,13,30,562,424,165,3.5,27.200000000000003,33,930,17.5 +2013,9,17,14,30,480,372,142,3.4000000000000004,27.5,40.65,929,17.1 +2013,9,17,15,30,342,285,90,3.3000000000000003,27.700000000000003,51.08,929,16.7 +2013,9,17,16,30,217,188,63,3,27.6,62.85,928,16.2 +2013,9,17,17,30,67,67,0,2.8000000000000003,27.400000000000002,75.24,928,15.9 +2013,9,17,18,30,13,13,0,1.3,25,87.71000000000001,928,16.6 +2013,9,17,19,30,0,0,0,1.4000000000000001,24.1,100.58,929,16.6 +2013,9,17,20,30,0,0,0,1.7000000000000002,23.8,112.91,929,16.3 +2013,9,17,21,30,0,0,0,2.2,23.400000000000002,124.55,929,16.3 +2013,9,17,22,30,0,0,0,2.5,23,134.85,929,16.6 +2013,9,17,23,30,0,0,0,2.7,22.6,142.58,929,17.1 +2013,9,18,0,30,0,0,0,2.7,22.200000000000003,145.87,929,17.7 +2013,9,18,1,30,0,0,0,2.5,21.8,143.49,929,18.3 +2013,9,18,2,30,0,0,0,2.3000000000000003,21.400000000000002,136.37,929,18.8 +2013,9,18,3,30,0,0,0,2,20.900000000000002,126.4,928,19.200000000000003 +2013,9,18,4,30,0,0,0,1.9000000000000001,20.5,114.93,928,19.400000000000002 +2013,9,18,5,30,0,0,0,1.8,20.1,102.69,929,19.700000000000003 +2013,9,18,6,30,0,0,0,2.3000000000000003,20.700000000000003,89.67,929,19.900000000000002 +2013,9,18,7,30,6,6,0,3.4000000000000004,22.8,77.39,929,20.1 +2013,9,18,8,30,62,62,0,4.1000000000000005,25.200000000000003,64.98,929,19.8 +2013,9,18,9,30,281,251,49,4.4,27.400000000000002,53.11,929,18.5 +2013,9,18,10,30,492,360,179,4.7,29.1,42.45,929,17.3 +2013,9,18,11,30,560,417,174,4.9,30.5,34.28,928,16.6 +2013,9,18,12,30,826,310,601,5,31.400000000000002,30.75,927,16.3 +2013,9,18,13,30,802,285,619,5.1000000000000005,31.8,33.39,926,16.1 +2013,9,18,14,30,553,362,253,5.1000000000000005,31.8,41.01,925,16.1 +2013,9,18,15,30,613,74,864,5.1000000000000005,31.3,51.4,925,16 +2013,9,18,16,30,419,65,783,4.9,30.400000000000002,63.15,925,15.8 +2013,9,18,17,30,104,93,46,4.800000000000001,29.8,75.53,925,15.700000000000001 +2013,9,18,18,30,20,14,169,3.2,26.900000000000002,87.98,925,15.9 +2013,9,18,19,30,0,0,0,2.8000000000000003,25.6,100.87,926,16.2 +2013,9,18,20,30,0,0,0,2.9000000000000004,24.900000000000002,113.21000000000001,926,16.400000000000002 +2013,9,18,21,30,0,0,0,3.1,24.3,124.88000000000001,927,16.8 +2013,9,18,22,30,0,0,0,3.1,23.700000000000003,135.21,927,17.2 +2013,9,18,23,30,0,0,0,3,23.200000000000003,142.97,927,17.7 +2013,9,19,0,30,0,0,0,2.8000000000000003,22.700000000000003,146.26,927,18.1 +2013,9,19,1,30,0,0,0,2.8000000000000003,22.5,143.83,927,18.5 +2013,9,19,2,30,0,0,0,3,22.3,136.63,926,18.900000000000002 +2013,9,19,3,30,0,0,0,3,22.1,126.61,926,19.3 +2013,9,19,4,30,0,0,0,2.8000000000000003,21.8,115.09,926,19.700000000000003 +2013,9,19,5,30,0,0,0,2.8000000000000003,21.6,102.84,927,20.1 +2013,9,19,6,30,0,0,0,3.1,21.6,89.78,927,20.3 +2013,9,19,7,30,30,30,0,3.7,22.200000000000003,77.53,927,20.5 +2013,9,19,8,30,67,67,0,4.2,23,65.13,928,20 +2013,9,19,9,30,144,144,0,4.3,23.700000000000003,53.29,928,18.8 +2013,9,19,10,30,124,124,0,4.1000000000000005,24.3,42.68,928,18.1 +2013,9,19,11,30,139,137,2,3.9000000000000004,24.6,34.6,928,17.900000000000002 +2013,9,19,12,30,205,197,10,3.6,24.6,31.14,927,17.900000000000002 +2013,9,19,13,30,346,323,27,3.5,24.400000000000002,33.78,926,18.1 +2013,9,19,14,30,357,323,45,3.4000000000000004,24.1,41.37,926,18.400000000000002 +2013,9,19,15,30,172,169,4,3.2,23.6,51.730000000000004,926,18.8 +2013,9,19,16,30,105,105,0,2.8000000000000003,22.8,63.45,926,19.3 +2013,9,19,17,30,68,68,0,2.5,22.400000000000002,75.81,926,19.8 +2013,9,19,18,30,5,5,0,1.7000000000000002,21.1,88.23,926,20.5 +2013,9,19,19,30,0,0,0,1.7000000000000002,20.8,101.15,926,20.700000000000003 +2013,9,19,20,30,0,0,0,1.7000000000000002,20.6,113.51,926,20.6 +2013,9,19,21,30,0,0,0,1.5,20.6,125.21000000000001,926,20.6 +2013,9,19,22,30,0,0,0,1.2000000000000002,20.5,135.57,926,20.5 +2013,9,19,23,30,0,0,0,1,20.5,143.36,925,20.5 +2013,9,20,0,30,0,0,0,0.9,20.400000000000002,146.65,925,20.400000000000002 +2013,9,20,1,30,0,0,0,0.9,20.3,144.16,925,20.3 +2013,9,20,2,30,0,0,0,1.2000000000000002,20.200000000000003,136.89000000000001,925,20.200000000000003 +2013,9,20,3,30,0,0,0,1.6,20,126.8,925,20 +2013,9,20,4,30,0,0,0,2.3000000000000003,19.8,115.26,925,19.8 +2013,9,20,5,30,0,0,0,3,19.6,102.98,926,19.6 +2013,9,20,6,30,0,0,0,3.7,19.400000000000002,89.89,926,19.400000000000002 +2013,9,20,7,30,3,3,0,4.6000000000000005,19.5,77.66,927,19.5 +2013,9,20,8,30,48,48,0,5.5,19.700000000000003,65.28,927,19.5 +2013,9,20,9,30,154,154,1,5.9,20.200000000000003,53.480000000000004,927,19.3 +2013,9,20,10,30,184,179,7,5.800000000000001,20.6,42.92,927,19 +2013,9,20,11,30,185,179,8,5.5,21,34.910000000000004,927,18.6 +2013,9,20,12,30,241,230,13,5.300000000000001,21.3,31.52,927,18.400000000000002 +2013,9,20,13,30,161,157,5,5.1000000000000005,21.3,34.18,927,18.1 +2013,9,20,14,30,210,203,9,4.9,21.1,41.730000000000004,926,17.8 +2013,9,20,15,30,108,108,0,4.7,20.6,52.050000000000004,926,17.5 +2013,9,20,16,30,249,190,135,4.4,19.8,63.75,926,17.1 +2013,9,20,17,30,91,86,21,4.3,19.400000000000002,76.09,926,16.6 +2013,9,20,18,30,7,7,0,3.8000000000000003,17.8,88.49,927,16.2 +2013,9,20,19,30,0,0,0,3.7,16.900000000000002,101.44,927,15.8 +2013,9,20,20,30,0,0,0,3.5,16.2,113.81,928,15.3 +2013,9,20,21,30,0,0,0,3.5,15.700000000000001,125.53,928,15 +2013,9,20,22,30,0,0,0,3.5,15.3,135.93,929,14.600000000000001 +2013,9,20,23,30,0,0,0,3.5,14.8,143.75,929,14.100000000000001 +2013,9,21,0,30,0,0,0,3.5,14.200000000000001,147.04,929,13.5 +2013,9,21,1,30,0,0,0,3.4000000000000004,13.700000000000001,144.49,929,12.700000000000001 +2013,9,21,2,30,0,0,0,3.2,13.100000000000001,137.15,929,11.8 +2013,9,21,3,30,0,0,0,3,12.600000000000001,127,929,11 +2013,9,21,4,30,0,0,0,2.9000000000000004,12.100000000000001,115.42,929,10.200000000000001 +2013,9,21,5,30,0,0,0,2.7,11.600000000000001,103.12,929,9.600000000000001 +2013,9,21,6,30,0,0,0,2.9000000000000004,12,89.99,929,9.200000000000001 +2013,9,21,7,30,181,40,664,3.4000000000000004,14.4,77.8,930,9.200000000000001 +2013,9,21,8,30,409,56,851,3.8000000000000003,17.6,65.43,930,9 +2013,9,21,9,30,618,64,935,4,20.3,53.660000000000004,930,8.200000000000001 +2013,9,21,10,30,780,69,974,3.9000000000000004,22.3,43.17,930,7.7 +2013,9,21,11,30,887,73,997,3.6,23.700000000000003,35.230000000000004,929,7.6000000000000005 +2013,9,21,12,30,923,77,997,3.3000000000000003,24.8,31.91,929,7.7 +2013,9,21,13,30,892,76,992,3,25.400000000000002,34.57,928,7.9 +2013,9,21,14,30,794,73,972,2.8000000000000003,25.6,42.09,927,8.200000000000001 +2013,9,21,15,30,635,68,928,2.8000000000000003,25.3,52.38,926,8.5 +2013,9,21,16,30,432,58,853,2.5,24.400000000000002,64.05,926,8.5 +2013,9,21,17,30,206,43,692,2.2,23.700000000000003,76.38,926,9.5 +2013,9,21,18,30,16,11,213,1.2000000000000002,18.8,88.75,926,12.200000000000001 +2013,9,21,19,30,0,0,0,1.3,17.2,101.73,926,10.8 +2013,9,21,20,30,0,0,0,1.3,16.3,114.11,927,10.200000000000001 +2013,9,21,21,30,0,0,0,1.3,15.5,125.86,927,9.8 +2013,9,21,22,30,0,0,0,1.1,14.8,136.29,926,9.3 +2013,9,21,23,30,0,0,0,1.1,14.5,144.15,926,8.700000000000001 +2013,9,22,0,30,0,0,0,1,14.3,147.43,926,8.1 +2013,9,22,1,30,0,0,0,0.9,14.200000000000001,144.82,926,7.6000000000000005 +2013,9,22,2,30,0,0,0,0.9,13.9,137.4,926,7.1000000000000005 +2013,9,22,3,30,0,0,0,0.9,13.600000000000001,127.2,926,6.800000000000001 +2013,9,22,4,30,0,0,0,0.9,13.200000000000001,115.58,926,6.6000000000000005 +2013,9,22,5,30,0,0,0,0.9,12.9,103.26,926,6.5 +2013,9,22,6,30,0,0,0,0.8,13.700000000000001,90.11,926,6.5 +2013,9,22,7,30,181,39,679,1,15.8,77.94,927,8.6 +2013,9,22,8,30,409,55,857,1.6,19.1,65.59,927,8 +2013,9,22,9,30,618,64,938,2,22.1,53.85,927,7 +2013,9,22,10,30,783,70,982,1.8,23.900000000000002,43.410000000000004,927,6.7 +2013,9,22,11,30,890,73,1004,1.7000000000000002,25.200000000000003,35.550000000000004,926,7.2 +2013,9,22,12,30,929,76,1009,1.9000000000000001,26.1,32.3,925,7.5 +2013,9,22,13,30,897,74,1004,2.2,26.700000000000003,34.97,924,7.5 +2013,9,22,14,30,801,71,990,2.7,26.700000000000003,42.45,923,7.2 +2013,9,22,15,30,640,67,945,3.1,26.3,52.7,923,6.9 +2013,9,22,16,30,434,58,868,3.1,25,64.35,922,6.6000000000000005 +2013,9,22,17,30,205,42,704,2.8000000000000003,24.200000000000003,76.67,922,7.9 +2013,9,22,18,30,0,0,0,1.6,18.900000000000002,89.01,922,10.3 +2013,9,22,19,30,0,0,0,1.6,17.400000000000002,102.02,923,9.600000000000001 +2013,9,22,20,30,0,0,0,1.7000000000000002,16.5,114.41,923,9.4 +2013,9,22,21,30,0,0,0,1.7000000000000002,15.700000000000001,126.18,923,9.3 +2013,9,22,22,30,0,0,0,1.8,15.100000000000001,136.65,923,9.200000000000001 +2013,9,22,23,30,0,0,0,1.9000000000000001,14.600000000000001,144.54,923,9.200000000000001 +2013,9,23,0,30,0,0,0,2.1,14.100000000000001,147.82,923,9.200000000000001 +2013,9,23,1,30,0,0,0,2.3000000000000003,13.600000000000001,145.15,923,9.4 +2013,9,23,2,30,0,0,0,2.6,13.100000000000001,137.66,923,9.8 +2013,9,23,3,30,0,0,0,2.8000000000000003,12.700000000000001,127.4,923,10.100000000000001 +2013,9,23,4,30,0,0,0,3.1,12.3,115.74000000000001,922,10.3 +2013,9,23,5,30,0,0,0,3.2,11.9,103.4,922,10.3 +2013,9,23,6,30,0,0,0,3.6,12.4,90.22,922,10.4 +2013,9,23,7,30,169,44,604,3.9000000000000004,14.700000000000001,78.07000000000001,923,10.700000000000001 +2013,9,23,8,30,388,65,785,4.2,18.6,65.75,923,11.3 +2013,9,23,9,30,589,78,871,4.800000000000001,22.8,54.050000000000004,923,10.700000000000001 +2013,9,23,10,30,749,86,916,4.7,25.6,43.660000000000004,922,9.4 +2013,9,23,11,30,851,90,939,4.4,27.5,35.88,922,10 +2013,9,23,12,30,889,92,946,4.1000000000000005,28.900000000000002,32.68,921,10.9 +2013,9,23,13,30,859,92,941,4,29.900000000000002,35.36,920,11.700000000000001 +2013,9,23,14,30,762,88,919,3.7,30.400000000000002,42.81,919,12.3 +2013,9,23,15,30,605,83,868,3.4000000000000004,30.400000000000002,53.03,919,12.5 +2013,9,23,16,30,405,73,776,2.6,29.400000000000002,64.65,919,12.600000000000001 +2013,9,23,17,30,184,52,587,2,28.5,76.96000000000001,919,14.9 +2013,9,23,18,30,0,0,0,1.7000000000000002,23.6,89.27,920,15.3 +2013,9,23,19,30,0,0,0,1.8,22.1,102.3,921,13.600000000000001 +2013,9,23,20,30,0,0,0,1.7000000000000002,20.900000000000002,114.71000000000001,922,13.100000000000001 +2013,9,23,21,30,0,0,0,1.7000000000000002,19.900000000000002,126.5,922,12.600000000000001 +2013,9,23,22,30,0,0,0,1.7000000000000002,19,137.01,923,12.3 +2013,9,23,23,30,0,0,0,1.7000000000000002,18.1,144.93,923,12.100000000000001 +2013,9,24,0,30,0,0,0,1.5,17.2,148.21,923,11.8 +2013,9,24,1,30,0,0,0,1.1,16.3,145.48,924,11.5 +2013,9,24,2,30,0,0,0,1,15.4,137.91,924,11.100000000000001 +2013,9,24,3,30,0,0,0,1.2000000000000002,14.700000000000001,127.59,924,10.9 +2013,9,24,4,30,0,0,0,1.7000000000000002,14.3,115.9,925,11 +2013,9,24,5,30,0,0,0,2.3000000000000003,14.200000000000001,103.54,925,11.5 +2013,9,24,6,30,0,0,0,3.2,15.100000000000001,90.91,926,12 +2013,9,24,7,30,167,46,594,3.9000000000000004,17.7,78.21000000000001,927,12.600000000000001 +2013,9,24,8,30,388,66,789,4.3,21.3,65.91,928,13 +2013,9,24,9,30,593,78,882,5,25,54.24,928,12.9 +2013,9,24,10,30,756,85,932,5.2,27.5,43.910000000000004,928,11.600000000000001 +2013,9,24,11,30,860,88,957,4.9,28.900000000000002,36.2,928,11 +2013,9,24,12,30,902,86,974,4.4,29.6,33.07,927,10.8 +2013,9,24,13,30,870,83,969,3.9000000000000004,30,35.76,926,10.5 +2013,9,24,14,30,771,79,948,3.7,29.900000000000002,43.18,926,10.100000000000001 +2013,9,24,15,30,612,73,902,3.4000000000000004,29.3,53.36,926,9.700000000000001 +2013,9,24,16,30,411,62,824,2.8000000000000003,28,64.95,925,9.4 +2013,9,24,17,30,187,44,650,2.3000000000000003,27.1,77.24,926,11.5 +2013,9,24,18,30,0,0,0,1.4000000000000001,21.8,89.51,926,12.9 +2013,9,24,19,30,0,0,0,1.4000000000000001,20.3,102.59,926,11.5 +2013,9,24,20,30,0,0,0,1.4000000000000001,19.5,115.01,927,10.9 +2013,9,24,21,30,0,0,0,1.3,18.900000000000002,126.82000000000001,927,10.4 +2013,9,24,22,30,0,0,0,1.3,18.400000000000002,137.36,927,9.9 +2013,9,24,23,30,0,0,0,1.2000000000000002,18.1,145.32,927,9.4 +2013,9,25,0,30,0,0,0,1.1,17.900000000000002,148.6,927,9 +2013,9,25,1,30,0,0,0,1.1,17.7,145.81,927,8.6 +2013,9,25,2,30,0,0,0,1.1,17.3,138.16,926,8.3 +2013,9,25,3,30,0,0,0,1.2000000000000002,16.7,127.79,926,8.1 +2013,9,25,4,30,0,0,0,1.3,16,116.06,926,8 +2013,9,25,5,30,0,0,0,1.3,15.3,103.68,926,8.1 +2013,9,25,6,30,0,0,0,1.5,16.2,91.04,926,8.4 +2013,9,25,7,30,168,42,624,2.2,19.200000000000003,78.36,926,10.5 +2013,9,25,8,30,392,62,813,2.9000000000000004,22.900000000000002,66.07000000000001,926,10.4 +2013,9,25,9,30,595,75,895,3.3000000000000003,26.5,54.44,926,11.8 +2013,9,25,10,30,755,83,937,3.6,29,44.160000000000004,926,12 +2013,9,25,11,30,857,89,956,3.6,30.200000000000003,36.53,925,12.3 +2013,9,25,12,30,894,92,961,3.6,31.1,33.46,924,12.4 +2013,9,25,13,30,859,91,950,3.7,31.700000000000003,36.15,922,12.5 +2013,9,25,14,30,756,88,921,3.7,31.900000000000002,43.54,922,12.600000000000001 +2013,9,25,15,30,597,84,865,3.7,31.5,53.68,921,12.700000000000001 +2013,9,25,16,30,393,74,764,3.3000000000000003,30.3,65.26,921,13 +2013,9,25,17,30,173,53,556,2.8000000000000003,29.5,77.53,921,14.5 +2013,9,25,18,30,0,0,0,2.8000000000000003,25.1,89.76,921,15.700000000000001 +2013,9,25,19,30,0,0,0,3.8000000000000003,24.3,102.87,921,15.600000000000001 +2013,9,25,20,30,0,0,0,4.6000000000000005,23.700000000000003,115.31,922,15.9 +2013,9,25,21,30,0,0,0,4.9,22.900000000000002,127.14,922,15.9 +2013,9,25,22,30,0,0,0,5.1000000000000005,22.200000000000003,137.72,922,15.8 +2013,9,25,23,30,0,0,0,5.1000000000000005,21.5,145.71,922,15.5 +2013,9,26,0,30,0,0,0,4.9,20.8,148.99,922,15.100000000000001 +2013,9,26,1,30,0,0,0,4.7,20.1,146.14000000000001,922,14.9 +2013,9,26,2,30,0,0,0,4.3,19.3,138.41,922,14.700000000000001 +2013,9,26,3,30,0,0,0,3.9000000000000004,18.5,127.98,922,14.700000000000001 +2013,9,26,4,30,0,0,0,3.7,17.900000000000002,116.21000000000001,922,14.8 +2013,9,26,5,30,0,0,0,3.7,17.400000000000002,103.82000000000001,923,14.9 +2013,9,26,6,30,0,0,0,4,17.7,91.18,923,14.9 +2013,9,26,7,30,156,50,533,4.7,19.700000000000003,78.5,924,15 +2013,9,26,8,30,374,75,742,5.6000000000000005,23,66.23,924,15.4 +2013,9,26,9,30,576,89,840,6.2,26.1,54.63,924,15.8 +2013,9,26,10,30,734,99,889,6,28.400000000000002,44.42,924,15.5 +2013,9,26,11,30,837,105,915,5.7,30,36.86,924,15.200000000000001 +2013,9,26,12,30,882,88,957,5.4,31.1,33.85,923,15.100000000000001 +2013,9,26,13,30,849,87,948,5.2,31.6,36.54,923,14.9 +2013,9,26,14,30,751,83,927,5.1000000000000005,31.5,43.9,922,14.600000000000001 +2013,9,26,15,30,593,78,877,5.2,30.900000000000002,54.01,922,14.4 +2013,9,26,16,30,393,66,791,5,29.6,65.56,922,14.200000000000001 +2013,9,26,17,30,174,46,602,4.800000000000001,28.8,77.81,922,14.3 +2013,9,26,18,30,0,0,0,3.7,24.8,90,922,14.700000000000001 +2013,9,26,19,30,0,0,0,4,23.5,103.15,923,14.600000000000001 +2013,9,26,20,30,0,0,0,4.2,22.5,115.60000000000001,923,14.5 +2013,9,26,21,30,0,0,0,4.3,21.5,127.46000000000001,924,14.3 +2013,9,26,22,30,0,0,0,4.4,20.700000000000003,138.07,924,14.100000000000001 +2013,9,26,23,30,0,0,0,4.3,20,146.1,924,14 +2013,9,27,0,30,0,0,0,3.9000000000000004,19.3,149.38,924,13.9 +2013,9,27,1,30,0,0,0,3.5,18.7,146.47,924,14 +2013,9,27,2,30,0,0,0,3.4000000000000004,18.2,138.66,924,14.5 +2013,9,27,3,30,0,0,0,3.5,17.900000000000002,128.17000000000002,924,15.4 +2013,9,27,4,30,0,0,0,3.5,17.900000000000002,116.37,924,16.7 +2013,9,27,5,30,0,0,0,3.4000000000000004,18.1,103.96000000000001,924,17.8 +2013,9,27,6,30,0,0,0,3.7,18.8,91.31,924,18.7 +2013,9,27,7,30,148,54,480,4.6000000000000005,20.700000000000003,78.64,925,19.400000000000002 +2013,9,27,8,30,260,161,246,5.7,23.3,66.39,925,20.200000000000003 +2013,9,27,9,30,446,234,368,6.2,25.900000000000002,54.83,925,20.1 +2013,9,27,10,30,717,98,870,6.1000000000000005,28,44.67,924,19.700000000000003 +2013,9,27,11,30,820,99,905,6.1000000000000005,29.700000000000003,37.19,924,19.200000000000003 +2013,9,27,12,30,857,98,918,6,30.8,34.230000000000004,923,18.6 +2013,9,27,13,30,823,95,910,6.1000000000000005,31.5,36.94,922,18.3 +2013,9,27,14,30,725,89,887,6.2,31.5,44.26,921,18 +2013,9,27,15,30,569,81,836,6.2,31,54.34,921,18 +2013,9,27,16,30,372,69,741,6,29.8,65.86,921,18.3 +2013,9,27,17,30,159,48,540,5.800000000000001,29.1,78.10000000000001,921,18.8 +2013,9,27,18,30,0,0,0,4.5,26.1,90.25,922,19.5 +2013,9,27,19,30,0,0,0,4.2,24.8,103.44,922,19.900000000000002 +2013,9,27,20,30,0,0,0,4.2,24.1,115.9,923,20.3 +2013,9,27,21,30,0,0,0,4.6000000000000005,23.6,127.78,923,20.6 +2013,9,27,22,30,0,0,0,4.9,23.200000000000003,138.42000000000002,923,20.900000000000002 +2013,9,27,23,30,0,0,0,5,22.8,146.49,923,21.200000000000003 +2013,9,28,0,30,0,0,0,4.9,22.400000000000002,149.77,923,21.400000000000002 +2013,9,28,1,30,0,0,0,4.800000000000001,22.1,146.79,923,21.700000000000003 +2013,9,28,2,30,0,0,0,4.6000000000000005,21.900000000000002,138.91,924,21.8 +2013,9,28,3,30,0,0,0,4.1000000000000005,21.8,128.36,924,21.8 +2013,9,28,4,30,0,0,0,3.7,21.700000000000003,116.53,924,21.700000000000003 +2013,9,28,5,30,0,0,0,3.2,21.5,104.10000000000001,925,21.5 +2013,9,28,6,30,0,0,0,2.6,21.200000000000003,91.45,926,21.200000000000003 +2013,9,28,7,30,32,32,0,3,20.400000000000002,78.78,927,20.400000000000002 +2013,9,28,8,30,16,16,0,4.3,19.400000000000002,66.56,928,19.200000000000003 +2013,9,28,9,30,23,23,0,5.4,18.6,55.04,929,17 +2013,9,28,10,30,100,100,0,5.9,18.8,44.93,930,15.700000000000001 +2013,9,28,11,30,128,128,0,5.9,19.6,37.52,930,15.4 +2013,9,28,12,30,231,221,12,5.7,20.6,34.62,929,15.5 +2013,9,28,13,30,422,369,66,5.4,21.3,37.33,929,15.3 +2013,9,28,14,30,590,290,422,5.2,21.5,44.62,929,14.9 +2013,9,28,15,30,342,265,132,4.800000000000001,21.400000000000002,54.660000000000004,929,14.200000000000001 +2013,9,28,16,30,359,84,679,4.3,20.8,66.16,929,13.200000000000001 +2013,9,28,17,30,151,53,489,4,20.3,78.38,930,12.3 +2013,9,28,18,30,0,0,0,2.1,17.1,91.05,930,12.700000000000001 +2013,9,28,19,30,0,0,0,1.9000000000000001,15.9,103.72,931,12.3 +2013,9,28,20,30,0,0,0,1.7000000000000002,15,116.19,932,11.600000000000001 +2013,9,28,21,30,0,0,0,1.6,14.4,128.1,932,10.9 +2013,9,28,22,30,0,0,0,1.8,14,138.77,932,10.3 +2013,9,28,23,30,0,0,0,2,13.700000000000001,146.88,932,9.600000000000001 +2013,9,29,0,30,0,0,0,2.3000000000000003,13.4,150.16,932,9 +2013,9,29,1,30,0,0,0,2.3000000000000003,13,147.12,932,8.6 +2013,9,29,2,30,0,0,0,2.2,12.700000000000001,139.16,932,8.4 +2013,9,29,3,30,0,0,0,2,12.3,128.55,932,8.200000000000001 +2013,9,29,4,30,0,0,0,1.9000000000000001,11.8,116.69,932,8 +2013,9,29,5,30,0,0,0,1.8,11.3,104.24000000000001,932,7.800000000000001 +2013,9,29,6,30,0,0,0,2.3000000000000003,11.700000000000001,91.59,932,7.5 +2013,9,29,7,30,161,39,636,3,13.700000000000001,78.93,932,7.5 +2013,9,29,8,30,387,55,842,3.6,16.900000000000002,66.73,932,7.6000000000000005 +2013,9,29,9,30,596,63,935,4.1000000000000005,19.900000000000002,55.24,932,5.6000000000000005 +2013,9,29,10,30,760,69,979,4.1000000000000005,21.700000000000003,45.19,931,4.5 +2013,9,29,11,30,864,73,1002,3.6,23,37.85,931,4.6000000000000005 +2013,9,29,12,30,903,74,1012,3,24,35.01,930,4.800000000000001 +2013,9,29,13,30,869,73,1006,2.4000000000000004,24.5,37.72,929,4.9 +2013,9,29,14,30,766,70,984,1.9000000000000001,24.6,44.99,928,5 +2013,9,29,15,30,603,63,941,1.6,24.3,54.99,928,5 +2013,9,29,16,30,397,54,858,1.1,23.400000000000002,66.46000000000001,927,4.9 +2013,9,29,17,30,170,38,673,0.8,22.700000000000003,78.66,927,6.7 +2013,9,29,18,30,0,0,0,0.9,18.400000000000002,91.33,927,9.200000000000001 +2013,9,29,19,30,0,0,0,1.2000000000000002,16.5,104,927,7.9 +2013,9,29,20,30,0,0,0,1.3,15.200000000000001,116.48,928,7.7 +2013,9,29,21,30,0,0,0,1.4000000000000001,14.3,128.41,928,7.4 +2013,9,29,22,30,0,0,0,1.5,13.600000000000001,139.12,927,7.2 +2013,9,29,23,30,0,0,0,1.6,13,147.27,927,7 +2013,9,30,0,30,0,0,0,1.8,12.5,150.55,927,6.800000000000001 +2013,9,30,1,30,0,0,0,2,12.200000000000001,147.44,926,6.7 +2013,9,30,2,30,0,0,0,2.2,11.8,139.4,926,6.7 +2013,9,30,3,30,0,0,0,2.4000000000000004,11.5,128.74,925,6.7 +2013,9,30,4,30,0,0,0,2.4000000000000004,11.200000000000001,116.84,925,6.9 +2013,9,30,5,30,0,0,0,2.4000000000000004,10.9,104.38,925,7.1000000000000005 +2013,9,30,6,30,0,0,0,3,11.700000000000001,91.73,925,7.4 +2013,9,30,7,30,159,41,624,3.5,14.200000000000001,79.07000000000001,925,8.1 +2013,9,30,8,30,383,59,826,3.7,17.900000000000002,66.89,925,9.3 +2013,9,30,9,30,587,69,914,4.2,22,55.45,924,11 +2013,9,30,10,30,750,76,961,4.6000000000000005,25.6,45.46,924,11.9 +2013,9,30,11,30,853,80,984,4.5,28.200000000000003,38.18,924,11.3 +2013,9,30,12,30,886,82,987,4.3,29.8,35.4,923,10.4 +2013,9,30,13,30,851,81,979,4.1000000000000005,30.5,38.12,922,9.9 +2013,9,30,14,30,746,77,952,3.9000000000000004,30.700000000000003,45.35,922,9.600000000000001 +2013,9,30,15,30,585,72,903,3.5,30.200000000000003,55.32,921,9.4 +2013,9,30,16,30,381,61,811,2.8000000000000003,28.3,66.76,921,10.200000000000001 +2013,9,30,17,30,158,42,605,2.4000000000000004,26.900000000000002,78.94,921,14.100000000000001 +2013,9,30,18,30,0,0,0,3.1,22.3,91.60000000000001,922,13 +2013,9,30,19,30,0,0,0,3.9000000000000004,21.400000000000002,104.27,922,12.200000000000001 +2013,9,30,20,30,0,0,0,4.2,20.6,116.77,922,12.100000000000001 +2013,9,30,21,30,0,0,0,4.4,19.700000000000003,128.72,923,12.200000000000001 +2013,9,30,22,30,0,0,0,4.5,18.900000000000002,139.47,923,12.4 +2013,9,30,23,30,0,0,0,4.4,18.2,147.66,923,12.700000000000001 +2013,10,1,0,30,0,0,0,4.3,17.7,150.94,923,13.100000000000001 +2013,10,1,1,30,0,0,0,4.2,17.3,147.77,923,13.5 +2013,10,1,2,30,0,0,0,4.1000000000000005,17,139.64000000000001,923,13.700000000000001 +2013,10,1,3,30,0,0,0,4,16.7,128.93,923,13.9 +2013,10,1,4,30,0,0,0,3.7,16.3,117,923,14.100000000000001 +2013,10,1,5,30,0,0,0,3.5,15.9,104.52,923,14.3 +2013,10,1,6,30,0,0,0,3.8000000000000003,16.3,91.87,923,14.5 +2013,10,1,7,30,149,44,562,4,18.2,79.22,924,14.8 +2013,10,1,8,30,366,65,772,4.5,21.700000000000003,67.07000000000001,924,15.600000000000001 +2013,10,1,9,30,567,77,868,5.2,25.3,55.660000000000004,925,16.7 +2013,10,1,10,30,724,85,915,5.4,27.700000000000003,45.72,924,16.2 +2013,10,1,11,30,825,90,940,5.300000000000001,29.3,38.52,924,15.600000000000001 +2013,10,1,12,30,860,83,957,5.2,30.3,35.79,924,15.200000000000001 +2013,10,1,13,30,823,84,946,5.2,30.8,38.51,923,14.9 +2013,10,1,14,30,722,80,919,5.1000000000000005,30.8,45.71,922,14.8 +2013,10,1,15,30,563,74,866,4.9,30.3,55.64,922,14.8 +2013,10,1,16,30,362,63,769,4.3,29,67.06,922,15 +2013,10,1,17,30,147,43,557,3.8000000000000003,28.1,79.22,923,16 +2013,10,1,18,30,0,0,0,3.2,24.3,91.88,923,16.6 +2013,10,1,19,30,0,0,0,3.8000000000000003,23.3,104.55,924,16.6 +2013,10,1,20,30,0,0,0,4.1000000000000005,22.400000000000002,117.05,924,16.7 +2013,10,1,21,30,0,0,0,4.2,21.5,129.03,925,17 +2013,10,1,22,30,0,0,0,4.2,20.700000000000003,139.82,925,17.2 +2013,10,1,23,30,0,0,0,4.1000000000000005,19.900000000000002,148.04,925,17.400000000000002 +2013,10,2,0,30,0,0,0,3.9000000000000004,19.3,151.33,925,17.6 +2013,10,2,1,30,0,0,0,3.7,18.7,148.09,925,17.8 +2013,10,2,2,30,0,0,0,3.5,18.1,139.89000000000001,924,18 +2013,10,2,3,30,0,0,0,3.2,17.7,129.12,924,17.7 +2013,10,2,4,30,0,0,0,3,17.6,117.15,924,17.6 +2013,10,2,5,30,0,0,0,2.9000000000000004,17.6,104.66,925,17.6 +2013,10,2,6,30,0,0,0,3.2,18.1,92.01,925,18.1 +2013,10,2,7,30,139,52,473,4,20.1,79.37,926,18.7 +2013,10,2,8,30,352,79,707,4.9,23,67.24,926,19.5 +2013,10,2,9,30,553,92,821,5.300000000000001,25.8,55.870000000000005,926,19.900000000000002 +2013,10,2,10,30,712,98,884,5.4,28,45.99,926,19.5 +2013,10,2,11,30,814,100,917,5.300000000000001,29.6,38.85,925,18.900000000000002 +2013,10,2,12,30,852,92,941,5.300000000000001,30.700000000000003,36.17,924,18.2 +2013,10,2,13,30,814,92,928,5.2,31.400000000000002,38.9,923,17.5 +2013,10,2,14,30,712,90,897,5.2,31.5,46.07,922,16.900000000000002 +2013,10,2,15,30,556,79,852,5,31.1,55.97,922,16.400000000000002 +2013,10,2,16,30,355,68,745,4.4,29.900000000000002,67.35,922,15.9 +2013,10,2,17,30,140,46,515,3.9000000000000004,29.1,79.5,922,16.5 +2013,10,2,18,30,0,0,0,3.8000000000000003,25.5,92.15,923,17.1 +2013,10,2,19,30,0,0,0,4.3,24.6,104.82000000000001,923,17.2 +2013,10,2,20,30,0,0,0,4.6000000000000005,23.8,117.34,924,17.5 +2013,10,2,21,30,0,0,0,4.6000000000000005,22.900000000000002,129.34,924,17.8 +2013,10,2,22,30,0,0,0,4.4,22,140.16,924,18 +2013,10,2,23,30,0,0,0,4.4,21.200000000000003,148.43,924,18.1 +2013,10,3,0,30,0,0,0,4.3,20.6,151.72,924,18.2 +2013,10,3,1,30,0,0,0,4.2,20,148.4,924,18.3 +2013,10,3,2,30,0,0,0,4,19.400000000000002,140.13,924,18.3 +2013,10,3,3,30,0,0,0,3.7,18.8,129.3,924,18.3 +2013,10,3,4,30,0,0,0,3.6,18.3,117.31,924,18.3 +2013,10,3,5,30,0,0,0,3.7,18.1,104.8,924,18.1 +2013,10,3,6,30,0,0,0,4.2,18.5,92.15,924,18.2 +2013,10,3,7,30,139,48,500,5.1000000000000005,20.400000000000002,79.52,925,18.3 +2013,10,3,8,30,353,71,734,5.800000000000001,23.400000000000002,67.41,925,18.6 +2013,10,3,9,30,552,84,837,6.2,26.200000000000003,56.08,925,18.6 +2013,10,3,10,30,707,93,888,6.2,28.400000000000002,46.25,924,18.1 +2013,10,3,11,30,805,99,911,6,30.1,39.19,924,17.7 +2013,10,3,12,30,844,83,948,5.800000000000001,31.3,36.56,923,17.2 +2013,10,3,13,30,807,85,933,5.7,32,39.29,922,16.8 +2013,10,3,14,30,706,83,902,5.6000000000000005,32.1,46.42,921,16.400000000000002 +2013,10,3,15,30,548,75,852,5.5,31.6,56.29,921,16.1 +2013,10,3,16,30,350,63,754,5.1000000000000005,30.3,67.65,921,15.700000000000001 +2013,10,3,17,30,136,42,529,4.7,29.400000000000002,79.78,921,15.9 +2013,10,3,18,30,0,0,0,4,25.700000000000003,92.42,921,16 +2013,10,3,19,30,0,0,0,4.2,24.3,105.10000000000001,922,15.9 +2013,10,3,20,30,0,0,0,4.4,23.400000000000002,117.62,922,16 +2013,10,3,21,30,0,0,0,4.4,22.8,129.64000000000001,922,16.2 +2013,10,3,22,30,0,0,0,4.4,22.3,140.5,922,16.5 +2013,10,3,23,30,0,0,0,4.3,21.8,148.81,922,16.8 +2013,10,4,0,30,0,0,0,4.2,21.400000000000002,152.1,923,17.1 +2013,10,4,1,30,0,0,0,4.1000000000000005,21,148.72,923,17.400000000000002 +2013,10,4,2,30,0,0,0,4,20.6,140.36,923,17.7 +2013,10,4,3,30,0,0,0,3.9000000000000004,20.1,129.49,923,18.1 +2013,10,4,4,30,0,0,0,3.9000000000000004,19.8,117.46000000000001,923,18.5 +2013,10,4,5,30,0,0,0,3.8000000000000003,19.6,104.95,923,18.8 +2013,10,4,6,30,0,0,0,3.9000000000000004,19.700000000000003,92.29,923,19.1 +2013,10,4,7,30,67,63,22,4.7,20.700000000000003,79.67,924,19.400000000000002 +2013,10,4,8,30,257,147,288,5.800000000000001,22.400000000000002,67.59,924,19.6 +2013,10,4,9,30,534,98,786,6.2,24.400000000000002,56.29,924,19.400000000000002 +2013,10,4,10,30,690,105,850,6.1000000000000005,26.1,46.52,924,18.900000000000002 +2013,10,4,11,30,790,108,884,5.800000000000001,27.5,39.52,924,18.2 +2013,10,4,12,30,576,400,221,5.5,28.700000000000003,36.94,923,17.6 +2013,10,4,13,30,719,270,584,5.300000000000001,29.900000000000002,39.67,922,17.1 +2013,10,4,14,30,582,257,475,5.2,30.700000000000003,46.78,922,16.8 +2013,10,4,15,30,380,244,247,5.1000000000000005,30.900000000000002,56.61,921,16.5 +2013,10,4,16,30,338,68,720,4.5,30,67.95,921,16.3 +2013,10,4,17,30,128,44,487,4.1000000000000005,29.200000000000003,80.06,922,16.7 +2013,10,4,18,30,0,0,0,3.7,25.700000000000003,92.69,922,16.900000000000002 +2013,10,4,19,30,0,0,0,4,24.8,105.36,923,16.8 +2013,10,4,20,30,0,0,0,4.3,24.1,117.9,923,16.8 +2013,10,4,21,30,0,0,0,4.4,23.5,129.94,924,16.900000000000002 +2013,10,4,22,30,0,0,0,4.3,22.700000000000003,140.84,924,17.1 +2013,10,4,23,30,0,0,0,3.8000000000000003,21.8,149.19,924,17.3 +2013,10,5,0,30,0,0,0,3,21.200000000000003,152.49,924,17.400000000000002 +2013,10,5,1,30,0,0,0,2.1,20.5,149.04,925,17.2 +2013,10,5,2,30,0,0,0,2.4000000000000004,19.5,140.6,926,16.400000000000002 +2013,10,5,3,30,0,0,0,3.7,18.2,129.67000000000002,927,14.600000000000001 +2013,10,5,4,30,0,0,0,5,16.400000000000002,117.62,927,11.8 +2013,10,5,5,30,0,0,0,5.800000000000001,14.3,105.09,929,8.200000000000001 +2013,10,5,6,30,0,0,0,6.2,12.5,92.43,930,4.5 +2013,10,5,7,30,126,57,391,6.300000000000001,12,79.82000000000001,931,1.6 +2013,10,5,8,30,51,51,0,6.300000000000001,12.9,67.76,931,0.1 +2013,10,5,9,30,361,249,202,6.1000000000000005,14.4,56.51,932,0.30000000000000004 +2013,10,5,10,30,96,96,0,5.800000000000001,15.9,46.79,932,1.1 +2013,10,5,11,30,101,101,0,5.5,17.5,39.86,932,2 +2013,10,5,12,30,665,344,404,5.1000000000000005,18.8,37.33,931,2.8000000000000003 +2013,10,5,13,30,798,102,909,4.9,19.900000000000002,40.06,931,3.5 +2013,10,5,14,30,431,328,152,4.7,20.5,47.14,930,4 +2013,10,5,15,30,546,83,848,4.6000000000000005,20.400000000000002,56.93,930,4 +2013,10,5,16,30,348,65,765,4.1000000000000005,19.6,68.24,930,3.4000000000000004 +2013,10,5,17,30,134,40,560,3.8000000000000003,19,80.33,930,2.9000000000000004 +2013,10,5,18,30,0,0,0,1.4000000000000001,14.5,92.96000000000001,931,4.9 +2013,10,5,19,30,0,0,0,1.2000000000000002,13,105.63,932,5.1000000000000005 +2013,10,5,20,30,0,0,0,1.1,12.100000000000001,118.18,932,4.9 +2013,10,5,21,30,0,0,0,1,11.3,130.24,933,4.6000000000000005 +2013,10,5,22,30,0,0,0,1.1,10.700000000000001,141.17000000000002,933,4.2 +2013,10,5,23,30,0,0,0,1.1,10.100000000000001,149.57,933,3.6 +2013,10,6,0,30,0,0,0,1.2000000000000002,9.5,152.87,933,3 +2013,10,6,1,30,0,0,0,1.2000000000000002,8.8,149.35,933,2.3000000000000003 +2013,10,6,2,30,0,0,0,1.3,8.3,140.84,933,1.8 +2013,10,6,3,30,0,0,0,1.4000000000000001,7.800000000000001,129.85,933,1.2000000000000002 +2013,10,6,4,30,0,0,0,1.7000000000000002,7.4,117.77,933,0.7000000000000001 +2013,10,6,5,30,0,0,0,1.9000000000000001,7.2,105.23,933,0.2 +2013,10,6,6,30,0,0,0,2.5,8.1,92.57000000000001,933,-0.4 +2013,10,6,7,30,152,35,668,3.3000000000000003,10.600000000000001,79.98,934,-0.8 +2013,10,6,8,30,380,53,871,4,14.3,67.94,934,-1.1 +2013,10,6,9,30,588,64,957,4.4,17.6,56.72,935,-2.7 +2013,10,6,10,30,752,70,1002,4.3,19.700000000000003,47.07,934,-4 +2013,10,6,11,30,850,74,1017,3.9000000000000004,21.3,40.2,934,-3.9000000000000004 +2013,10,6,12,30,885,76,1023,3.6,22.5,37.71,933,-3.6 +2013,10,6,13,30,843,74,1010,3.5,23.400000000000002,40.45,933,-3.2 +2013,10,6,14,30,737,70,987,3.5,23.8,47.49,932,-2.9000000000000004 +2013,10,6,15,30,568,64,933,3.2,23.700000000000003,57.25,932,-2.9000000000000004 +2013,10,6,16,30,361,53,841,2.1,22.5,68.53,931,-2.9000000000000004 +2013,10,6,17,30,136,35,621,1.2000000000000002,21.5,80.60000000000001,931,4.3 +2013,10,6,18,30,0,0,0,0.7000000000000001,19,93.22,932,2.7 +2013,10,6,19,30,0,0,0,0.5,18.400000000000002,105.9,932,0.30000000000000004 +2013,10,6,20,30,0,0,0,0.6000000000000001,17.400000000000002,118.45,932,0 +2013,10,6,21,30,0,0,0,0.9,15.9,130.54,932,-0.1 +2013,10,6,22,30,0,0,0,1.2000000000000002,14.3,141.51,933,0.7000000000000001 +2013,10,6,23,30,0,0,0,1.3,12.8,149.95000000000002,933,1.1 +2013,10,7,0,30,0,0,0,1.4000000000000001,11.8,153.25,933,1.3 +2013,10,7,1,30,0,0,0,1.5,11.200000000000001,149.66,933,1.1 +2013,10,7,2,30,0,0,0,1.5,10.9,141.07,933,0.9 +2013,10,7,3,30,0,0,0,1.6,10.600000000000001,130.03,933,0.6000000000000001 +2013,10,7,4,30,0,0,0,1.6,10.200000000000001,117.93,933,0.4 +2013,10,7,5,30,0,0,0,1.6,9.8,105.37,933,0.4 +2013,10,7,6,30,0,0,0,1.7000000000000002,10.5,92.72,933,0.7000000000000001 +2013,10,7,7,30,143,33,640,2.2,13.3,80.13,934,1.8 +2013,10,7,8,30,363,48,845,2.3000000000000003,16.900000000000002,68.12,934,1.5 +2013,10,7,9,30,566,57,933,1.9000000000000001,20.900000000000002,56.94,934,2.6 +2013,10,7,10,30,725,62,979,1.8,23.900000000000002,47.34,934,2.8000000000000003 +2013,10,7,11,30,824,66,997,1.8,25.400000000000002,40.53,933,3.5 +2013,10,7,12,30,858,75,995,1.8,26.200000000000003,38.1,932,4 +2013,10,7,13,30,821,75,986,1.9000000000000001,26.700000000000003,40.83,931,4.2 +2013,10,7,14,30,714,71,958,1.9000000000000001,26.700000000000003,47.84,931,4.3 +2013,10,7,15,30,551,68,901,1.9000000000000001,26.200000000000003,57.57,931,4.3 +2013,10,7,16,30,346,56,801,1.6,24.8,68.82000000000001,931,4.3 +2013,10,7,17,30,127,36,572,1.2000000000000002,23.700000000000003,80.87,931,7.800000000000001 +2013,10,7,18,30,0,0,0,1.2000000000000002,18.3,93.49,931,8.5 +2013,10,7,19,30,0,0,0,1.4000000000000001,16.900000000000002,106.16,931,7.1000000000000005 +2013,10,7,20,30,0,0,0,1.4000000000000001,16,118.72,931,6.7 +2013,10,7,21,30,0,0,0,1.4000000000000001,15.100000000000001,130.83,931,6.300000000000001 +2013,10,7,22,30,0,0,0,1.4000000000000001,14.3,141.84,931,6.1000000000000005 +2013,10,7,23,30,0,0,0,1.5,13.600000000000001,150.32,931,5.800000000000001 +2013,10,8,0,30,0,0,0,1.5,12.9,153.63,931,5.6000000000000005 +2013,10,8,1,30,0,0,0,1.5,12.3,149.97,931,5.5 +2013,10,8,2,30,0,0,0,1.5,11.8,141.3,930,5.300000000000001 +2013,10,8,3,30,0,0,0,1.5,11.3,130.22,930,5.2 +2013,10,8,4,30,0,0,0,1.4000000000000001,10.9,118.08,930,5 +2013,10,8,5,30,0,0,0,1.3,10.5,105.52,930,4.9 +2013,10,8,6,30,0,0,0,1.4000000000000001,11.100000000000001,92.86,930,4.800000000000001 +2013,10,8,7,30,139,36,610,2,13.8,80.29,930,5.6000000000000005 +2013,10,8,8,30,360,55,824,2.3000000000000003,17.5,68.3,930,5.5 +2013,10,8,9,30,563,66,917,2.9000000000000004,21.900000000000002,57.160000000000004,930,5.9 +2013,10,8,10,30,723,73,964,3.7,25.5,47.62,930,3.4000000000000004 +2013,10,8,11,30,824,77,987,3.8000000000000003,27.1,40.87,929,3.5 +2013,10,8,12,30,751,256,633,3.9000000000000004,28,38.480000000000004,928,3.7 +2013,10,8,13,30,721,232,650,3.9000000000000004,28.6,41.21,927,3.8000000000000003 +2013,10,8,14,30,610,204,610,3.9000000000000004,28.5,48.2,926,3.8000000000000003 +2013,10,8,15,30,520,80,828,3.8000000000000003,27.700000000000003,57.89,926,3.9000000000000004 +2013,10,8,16,30,342,61,789,3.1,26,69.11,926,4.2 +2013,10,8,17,30,113,37,492,2.4000000000000004,24.700000000000003,81.14,926,7 +2013,10,8,18,30,0,0,0,2.2,19.5,93.75,926,7.300000000000001 +2013,10,8,19,30,0,0,0,2.6,18.5,106.42,926,6.800000000000001 +2013,10,8,20,30,0,0,0,3,17.7,118.99000000000001,927,6.7 +2013,10,8,21,30,0,0,0,3.3000000000000003,16.8,131.12,927,6.9 +2013,10,8,22,30,0,0,0,3.4000000000000004,15.8,142.16,926,7 +2013,10,8,23,30,0,0,0,3.4000000000000004,14.9,150.70000000000002,927,7.1000000000000005 +2013,10,9,0,30,0,0,0,3.4000000000000004,14.100000000000001,154.01,927,7.2 +2013,10,9,1,30,0,0,0,3.3000000000000003,13.4,150.28,927,7.2 +2013,10,9,2,30,0,0,0,3.1,12.8,141.53,927,7.2 +2013,10,9,3,30,0,0,0,2.9000000000000004,12.200000000000001,130.39000000000001,927,7.2 +2013,10,9,4,30,0,0,0,2.8000000000000003,11.8,118.23,927,7.1000000000000005 +2013,10,9,5,30,0,0,0,2.9000000000000004,11.5,105.66,927,7.2 +2013,10,9,6,30,0,0,0,3.3000000000000003,11.8,93.01,928,7.6000000000000005 +2013,10,9,7,30,97,55,252,3.9000000000000004,13.700000000000001,80.45,928,8.4 +2013,10,9,8,30,265,129,372,5,17.1,68.49,929,10 +2013,10,9,9,30,553,73,891,6,20.700000000000003,57.39,929,11.700000000000001 +2013,10,9,10,30,698,99,894,6,23.5,47.89,928,11.3 +2013,10,9,11,30,810,84,964,5.7,25.6,41.21,928,10.600000000000001 +2013,10,9,12,30,843,84,974,5.4,27,38.86,927,10.100000000000001 +2013,10,9,13,30,802,82,963,5.2,28,41.59,926,9.700000000000001 +2013,10,9,14,30,695,80,930,5,28.200000000000003,48.550000000000004,926,9.4 +2013,10,9,15,30,533,70,878,4.800000000000001,27.700000000000003,58.2,925,9.200000000000001 +2013,10,9,16,30,330,59,769,4,26.200000000000003,69.4,925,9.200000000000001 +2013,10,9,17,30,114,37,517,3.4000000000000004,25.200000000000003,81.41,925,10.100000000000001 +2013,10,9,18,30,0,0,0,3,21.1,94.01,926,10.5 +2013,10,9,19,30,0,0,0,3.6,20.3,106.68,926,10.3 +2013,10,9,20,30,0,0,0,4.1000000000000005,19.3,119.26,927,10.3 +2013,10,9,21,30,0,0,0,4.3,18.3,131.41,927,10.4 +2013,10,9,22,30,0,0,0,4.2,17.400000000000002,142.49,927,10.600000000000001 +2013,10,9,23,30,0,0,0,4.1000000000000005,16.6,151.07,927,10.700000000000001 +2013,10,10,0,30,0,0,0,3.8000000000000003,15.9,154.39000000000001,927,10.9 +2013,10,10,1,30,0,0,0,3.5,15.200000000000001,150.59,927,11.100000000000001 +2013,10,10,2,30,0,0,0,3.4000000000000004,14.700000000000001,141.76,927,11.4 +2013,10,10,3,30,0,0,0,3.4000000000000004,14.3,130.57,927,11.9 +2013,10,10,4,30,0,0,0,3.4000000000000004,14,118.39,927,12.600000000000001 +2013,10,10,5,30,0,0,0,3.4000000000000004,13.8,105.8,927,13.4 +2013,10,10,6,30,0,0,0,3.7,14.3,93.15,927,14.200000000000001 +2013,10,10,7,30,120,48,443,4.6000000000000005,16.1,80.61,928,14.700000000000001 +2013,10,10,8,30,330,77,695,5.800000000000001,19.1,68.67,928,15.5 +2013,10,10,9,30,528,90,819,6.300000000000001,22,57.61,928,15.9 +2013,10,10,10,30,687,93,890,6.2,24.5,48.17,927,15.600000000000001 +2013,10,10,11,30,785,93,925,6.2,26.6,41.550000000000004,926,15 +2013,10,10,12,30,821,81,956,6.2,28.200000000000003,39.24,925,14.200000000000001 +2013,10,10,13,30,783,81,943,6.2,29.1,41.97,924,13.5 +2013,10,10,14,30,677,79,909,6.300000000000001,29.400000000000002,48.89,923,12.9 +2013,10,10,15,30,516,71,853,6.4,29.1,58.52,922,12.4 +2013,10,10,16,30,316,60,739,6,27.900000000000002,69.68,922,12 +2013,10,10,17,30,106,37,480,5.7,27.1,81.67,922,12 +2013,10,10,18,30,0,0,0,4.3,23.3,94.26,922,12.4 +2013,10,10,19,30,0,0,0,4.6000000000000005,21.8,106.93,923,12.700000000000001 +2013,10,10,20,30,0,0,0,4.800000000000001,20.8,119.52,923,12.9 +2013,10,10,21,30,0,0,0,5,19.900000000000002,131.69,923,13.200000000000001 +2013,10,10,22,30,0,0,0,5,19.200000000000003,142.81,923,13.5 +2013,10,10,23,30,0,0,0,4.800000000000001,18.7,151.43,923,13.9 +2013,10,11,0,30,0,0,0,4.3,18.3,154.77,923,14.3 +2013,10,11,1,30,0,0,0,4.2,17.900000000000002,150.89000000000001,923,14.600000000000001 +2013,10,11,2,30,0,0,0,4.3,17.6,141.98,923,15.100000000000001 +2013,10,11,3,30,0,0,0,3.7,17.1,130.75,923,15.4 +2013,10,11,4,30,0,0,0,3,16.5,118.54,924,15.700000000000001 +2013,10,11,5,30,0,0,0,2.6,16.1,105.95,924,15.9 +2013,10,11,6,30,0,0,0,2.8000000000000003,16.3,93.3,924,16 +2013,10,11,7,30,119,44,472,3.7,18.1,80.77,925,16.1 +2013,10,11,8,30,332,67,734,4.4,21.1,68.86,925,15.9 +2013,10,11,9,30,533,76,858,4.2,23.900000000000002,57.83,925,14.5 +2013,10,11,10,30,694,80,925,3.7,26.5,48.45,925,12.4 +2013,10,11,11,30,796,81,960,3.7,28.6,41.88,924,10.100000000000001 +2013,10,11,12,30,827,84,963,3.8000000000000003,30,39.61,924,7.800000000000001 +2013,10,11,13,30,791,81,962,3.8000000000000003,30.700000000000003,42.34,923,6.1000000000000005 +2013,10,11,14,30,687,75,937,3.8000000000000003,30.8,49.24,922,5 +2013,10,11,15,30,526,69,884,3.6,30.3,58.83,922,4.5 +2013,10,11,16,30,325,57,782,2.6,28.400000000000002,69.96000000000001,922,4.4 +2013,10,11,17,30,109,35,530,1.7000000000000002,27,81.93,922,8.8 +2013,10,11,18,30,0,0,0,1.4000000000000001,21.6,94.51,923,8.8 +2013,10,11,19,30,0,0,0,1.4000000000000001,20.400000000000002,107.18,924,8.1 +2013,10,11,20,30,0,0,0,1.4000000000000001,19.5,119.78,924,7.800000000000001 +2013,10,11,21,30,0,0,0,1.4000000000000001,18.7,131.97,924,7.7 +2013,10,11,22,30,0,0,0,1.5,17.8,143.12,925,7.6000000000000005 +2013,10,11,23,30,0,0,0,1.5,17.1,151.8,925,7.6000000000000005 +2013,10,12,0,30,0,0,0,1.6,16.400000000000002,155.14000000000001,925,7.6000000000000005 +2013,10,12,1,30,0,0,0,1.7000000000000002,15.700000000000001,151.20000000000002,926,7.5 +2013,10,12,2,30,0,0,0,1.6,15,142.21,926,6.9 +2013,10,12,3,30,0,0,0,1.5,14.3,130.93,927,6 +2013,10,12,4,30,0,0,0,1.3,13.700000000000001,118.69,927,5 +2013,10,12,5,30,0,0,0,1.3,13.200000000000001,106.09,928,4 +2013,10,12,6,30,0,0,0,1.6,13.4,93.45,928,3.3000000000000003 +2013,10,12,7,30,120,42,492,2.3000000000000003,15.3,80.92,929,2.5 +2013,10,12,8,30,332,66,743,2.7,18.2,69.04,929,1.2000000000000002 +2013,10,12,9,30,529,80,850,2.7,21.6,58.06,929,2.2 +2013,10,12,10,30,686,87,908,2.1,24.8,48.730000000000004,929,4.4 +2013,10,12,11,30,784,90,938,1.6,27.200000000000003,42.22,929,7.2 +2013,10,12,12,30,816,88,950,1.6,28.6,39.99,929,8.4 +2013,10,12,13,30,778,85,943,1.8,29.3,42.72,928,8.9 +2013,10,12,14,30,674,81,915,2.2,29.400000000000002,49.58,928,9 +2013,10,12,15,30,512,72,857,2.7,28.8,59.13,928,8.9 +2013,10,12,16,30,311,59,746,2.7,27.200000000000003,70.24,928,8.700000000000001 +2013,10,12,17,30,101,35,484,2.4000000000000004,26.1,82.19,928,10.100000000000001 +2013,10,12,18,30,0,0,0,2.9000000000000004,21.900000000000002,94.77,929,9.700000000000001 +2013,10,12,19,30,0,0,0,3.6,21,107.43,930,8.700000000000001 +2013,10,12,20,30,0,0,0,3.9000000000000004,20.200000000000003,120.03,930,8.5 +2013,10,12,21,30,0,0,0,3.7,19.3,132.24,931,8.9 +2013,10,12,22,30,0,0,0,3.4000000000000004,18.400000000000002,143.44,931,9.700000000000001 +2013,10,12,23,30,0,0,0,3.1,17.6,152.16,931,10.600000000000001 +2013,10,13,0,30,0,0,0,3,17,155.51,932,11.5 +2013,10,13,1,30,0,0,0,3.1,16.5,151.5,932,12.200000000000001 +2013,10,13,2,30,0,0,0,3.1,16.2,142.43,932,13 +2013,10,13,3,30,0,0,0,2.9000000000000004,15.8,131.1,932,13.8 +2013,10,13,4,30,0,0,0,2.8000000000000003,15.600000000000001,118.84,932,14.4 +2013,10,13,5,30,0,0,0,2.8000000000000003,15.5,106.23,932,14.8 +2013,10,13,6,30,0,0,0,2.8000000000000003,15.5,93.59,932,15.100000000000001 +2013,10,13,7,30,39,39,0,3,15.9,81.09,933,15.3 +2013,10,13,8,30,137,130,20,3.2,16.8,69.23,933,15.8 +2013,10,13,9,30,246,219,51,3.3000000000000003,18,58.29,934,16.400000000000002 +2013,10,13,10,30,254,241,20,3.5,19.200000000000003,49,933,17.2 +2013,10,13,11,30,229,221,11,3.7,20.200000000000003,42.56,933,17.900000000000002 +2013,10,13,12,30,299,283,22,4,20.900000000000002,40.36,932,18.5 +2013,10,13,13,30,393,340,73,4.2,21.200000000000003,43.09,931,18.900000000000002 +2013,10,13,14,30,280,259,33,4.3,21.200000000000003,49.92,931,19.1 +2013,10,13,15,30,283,226,111,3.9000000000000004,20.8,59.44,931,19.1 +2013,10,13,16,30,146,130,48,3.2,20,70.52,931,19.1 +2013,10,13,17,30,33,33,0,2.7,19.5,82.44,931,19 +2013,10,13,18,30,0,0,0,2.5,18.2,95.01,932,18.2 +2013,10,13,19,30,0,0,0,2.5,17.900000000000002,107.68,932,17.900000000000002 +2013,10,13,20,30,0,0,0,1.7000000000000002,17.6,120.29,932,17.6 +2013,10,13,21,30,0,0,0,1,17.5,132.52,932,17.5 +2013,10,13,22,30,0,0,0,0.9,17.400000000000002,143.74,932,17.400000000000002 +2013,10,13,23,30,0,0,0,0.9,17.3,152.52,931,17.3 +2013,10,14,0,30,0,0,0,1,17.3,155.88,931,17.3 +2013,10,14,1,30,0,0,0,1.5,17.3,151.79,930,17.3 +2013,10,14,2,30,0,0,0,2,17.400000000000002,142.65,930,17.400000000000002 +2013,10,14,3,30,0,0,0,2.1,17.6,131.28,929,17.6 +2013,10,14,4,30,0,0,0,2.2,17.7,118.99000000000001,929,17.7 +2013,10,14,5,30,0,0,0,2.3000000000000003,17.900000000000002,106.38,929,17.900000000000002 +2013,10,14,6,30,0,0,0,2.6,18.2,93.74,929,18.2 +2013,10,14,7,30,38,38,0,3.2,18.900000000000002,81.25,929,18.900000000000002 +2013,10,14,8,30,56,56,0,4.2,19.900000000000002,69.42,929,19.5 +2013,10,14,9,30,137,137,0,5.300000000000001,21.3,58.52,928,19.900000000000002 +2013,10,14,10,30,99,99,0,5.9,22.700000000000003,49.29,928,19.6 +2013,10,14,11,30,282,267,21,5.7,23.6,42.89,927,19.3 +2013,10,14,12,30,388,344,57,5.4,24.1,40.74,926,19.3 +2013,10,14,13,30,415,347,93,5.300000000000001,24.3,43.46,926,19.3 +2013,10,14,14,30,133,133,0,5,24.1,50.26,925,19.200000000000003 +2013,10,14,15,30,216,199,34,4.3,23.8,59.74,925,19.1 +2013,10,14,16,30,170,134,110,3.5,23.1,70.8,925,19.1 +2013,10,14,17,30,28,28,0,3.1,22.700000000000003,82.7,925,19.3 +2013,10,14,18,30,0,0,0,3,21.200000000000003,95.26,926,19.200000000000003 +2013,10,14,19,30,0,0,0,3.2,20.900000000000002,107.92,926,19.200000000000003 +2013,10,14,20,30,0,0,0,3.3000000000000003,20.5,120.53,926,19.200000000000003 +2013,10,14,21,30,0,0,0,3.3000000000000003,20.1,132.78,926,19.200000000000003 +2013,10,14,22,30,0,0,0,3.3000000000000003,19.700000000000003,144.05,926,19.200000000000003 +2013,10,14,23,30,0,0,0,3.3000000000000003,19.3,152.88,926,19.200000000000003 +2013,10,15,0,30,0,0,0,3.3000000000000003,19.1,156.25,926,19.1 +2013,10,15,1,30,0,0,0,3.6,19,152.09,926,19 +2013,10,15,2,30,0,0,0,3.7,19,142.87,926,19 +2013,10,15,3,30,0,0,0,3.1,18.900000000000002,131.45,926,18.900000000000002 +2013,10,15,4,30,0,0,0,2.3000000000000003,18.6,119.14,927,18.6 +2013,10,15,5,30,0,0,0,2.5,17.900000000000002,106.52,927,17.900000000000002 +2013,10,15,6,30,0,0,0,3.7,16.7,93.89,928,16.7 +2013,10,15,7,30,11,11,0,4.9,15.200000000000001,81.41,929,15.200000000000001 +2013,10,15,8,30,64,64,0,5.7,14.100000000000001,69.61,929,12.100000000000001 +2013,10,15,9,30,80,80,0,5.9,13.600000000000001,58.74,930,9.3 +2013,10,15,10,30,159,158,2,5.800000000000001,13.600000000000001,49.57,930,7.800000000000001 +2013,10,15,11,30,108,108,0,5.6000000000000005,13.8,43.230000000000004,930,7.4 +2013,10,15,12,30,71,71,0,5.2,13.8,41.11,929,7.4 +2013,10,15,13,30,386,334,72,4.800000000000001,13.8,43.82,929,7.4 +2013,10,15,14,30,273,253,32,4.4,13.8,50.6,929,7.300000000000001 +2013,10,15,15,30,109,109,0,4.2,13.4,60.04,929,7.2 +2013,10,15,16,30,56,56,0,3.8000000000000003,12.700000000000001,71.07000000000001,929,7 +2013,10,15,17,30,30,30,0,3.6,12.200000000000001,82.94,929,7.2 +2013,10,15,18,30,0,0,0,2.5,10.600000000000001,95.5,930,7.800000000000001 +2013,10,15,19,30,0,0,0,2.2,10.100000000000001,108.15,931,8 +2013,10,15,20,30,0,0,0,2.2,9.700000000000001,120.78,931,8 +2013,10,15,21,30,0,0,0,2.2,9.5,133.05,931,8 +2013,10,15,22,30,0,0,0,2.3000000000000003,9.4,144.35,931,8 +2013,10,15,23,30,0,0,0,2.5,9.200000000000001,153.23,931,7.9 +2013,10,16,0,30,0,0,0,2.7,9,156.62,931,7.9 +2013,10,16,1,30,0,0,0,3,8.9,152.38,931,7.7 +2013,10,16,2,30,0,0,0,3.2,8.8,143.08,931,7.5 +2013,10,16,3,30,0,0,0,3.4000000000000004,8.9,131.62,931,7.1000000000000005 +2013,10,16,4,30,0,0,0,3.5,8.8,119.3,931,6.7 +2013,10,16,5,30,0,0,0,3.6,8.700000000000001,106.67,931,6.1000000000000005 +2013,10,16,6,30,0,0,0,3.7,8.6,94.04,932,5.4 +2013,10,16,7,30,26,26,0,4.1000000000000005,9,81.57000000000001,932,4.6000000000000005 +2013,10,16,8,30,96,96,0,4.3,10.100000000000001,69.8,933,3.7 +2013,10,16,9,30,520,61,891,4.1000000000000005,11.600000000000001,58.97,933,3.4000000000000004 +2013,10,16,10,30,383,305,120,3.7,13.3,49.85,932,3.6 +2013,10,16,11,30,774,71,970,3.3000000000000003,15,43.56,931,4 +2013,10,16,12,30,558,364,259,2.9000000000000004,16.3,41.47,931,4.5 +2013,10,16,13,30,471,353,165,2.8000000000000003,17.3,44.19,930,5 +2013,10,16,14,30,305,272,52,2.9000000000000004,17.6,50.93,929,5.4 +2013,10,16,15,30,211,195,34,3.1,17.400000000000002,60.34,929,5.6000000000000005 +2013,10,16,16,30,152,128,76,3,16.400000000000002,71.34,929,5.5 +2013,10,16,17,30,87,31,471,2.8000000000000003,15.700000000000001,83.19,930,5.6000000000000005 +2013,10,16,18,30,0,0,0,1.4000000000000001,11.8,95.74000000000001,930,6.800000000000001 +2013,10,16,19,30,0,0,0,1.4000000000000001,10.600000000000001,108.39,931,6.2 +2013,10,16,20,30,0,0,0,1.3,9.600000000000001,121.02,931,5.6000000000000005 +2013,10,16,21,30,0,0,0,1.3,8.700000000000001,133.31,932,5 +2013,10,16,22,30,0,0,0,1.1,7.800000000000001,144.64000000000001,931,4.5 +2013,10,16,23,30,0,0,0,1,7,153.58,931,4 +2013,10,17,0,30,0,0,0,0.8,6.5,156.98,931,3.6 +2013,10,17,1,30,0,0,0,0.7000000000000001,6.300000000000001,152.67000000000002,931,3.1 +2013,10,17,2,30,0,0,0,0.5,6.300000000000001,143.3,931,2.7 +2013,10,17,3,30,0,0,0,0.4,6.2,131.79,931,2.4000000000000004 +2013,10,17,4,30,0,0,0,0.6000000000000001,5.800000000000001,119.45,931,2.3000000000000003 +2013,10,17,5,30,0,0,0,0.8,5.300000000000001,106.81,931,2.3000000000000003 +2013,10,17,6,30,0,0,0,1,5.5,94.19,931,2.3000000000000003 +2013,10,17,7,30,116,34,573,1.7000000000000002,7.5,81.74,932,3.1 +2013,10,17,8,30,332,53,814,2,11,70,932,3.5 +2013,10,17,9,30,530,64,910,1.8,14.5,59.21,932,5.2 +2013,10,17,10,30,686,71,960,1.9000000000000001,16.900000000000002,50.13,931,6.6000000000000005 +2013,10,17,11,30,781,76,979,2.2,18.7,43.9,930,7.5 +2013,10,17,12,30,809,79,980,2.5,20.1,41.84,929,8 +2013,10,17,13,30,769,78,969,2.8000000000000003,21,44.550000000000004,928,8.3 +2013,10,17,14,30,660,75,935,3,21.3,51.26,928,8.4 +2013,10,17,15,30,495,68,871,3.1,21,60.64,927,8.6 +2013,10,17,16,30,291,56,745,2.7,19.700000000000003,71.61,927,8.8 +2013,10,17,17,30,83,32,450,2.3000000000000003,18.7,83.44,927,10.100000000000001 +2013,10,17,18,30,0,0,0,2.6,15,95.97,927,9.9 +2013,10,17,19,30,0,0,0,3.4000000000000004,14.200000000000001,108.62,927,9.4 +2013,10,17,20,30,0,0,0,3.7,13.5,121.25,928,9.3 +2013,10,17,21,30,0,0,0,3.7,12.9,133.56,927,9.4 +2013,10,17,22,30,0,0,0,3.6,12.4,144.94,927,9.600000000000001 +2013,10,17,23,30,0,0,0,3.5,12,153.92000000000002,927,9.8 +2013,10,18,0,30,0,0,0,3.3000000000000003,11.700000000000001,157.34,927,10.100000000000001 +2013,10,18,1,30,0,0,0,3.1,11.4,152.96,926,10.3 +2013,10,18,2,30,0,0,0,2.9000000000000004,11.200000000000001,143.51,926,10.600000000000001 +2013,10,18,3,30,0,0,0,2.7,11.100000000000001,131.96,926,10.9 +2013,10,18,4,30,0,0,0,2.4000000000000004,10.9,119.60000000000001,926,10.9 +2013,10,18,5,30,0,0,0,2.5,10.8,106.96000000000001,926,10.8 +2013,10,18,6,30,0,0,0,3,11.200000000000001,94.35000000000001,926,11.100000000000001 +2013,10,18,7,30,38,38,0,3.6,12.600000000000001,81.91,926,11.200000000000001 +2013,10,18,8,30,62,62,0,4.3,15.100000000000001,70.19,926,11.600000000000001 +2013,10,18,9,30,94,94,0,4.7,17.6,59.44,926,12.3 +2013,10,18,10,30,205,199,9,4.7,19.8,50.410000000000004,926,13.4 +2013,10,18,11,30,260,248,17,4.3,21.700000000000003,44.230000000000004,925,14.200000000000001 +2013,10,18,12,30,595,340,345,3.9000000000000004,23.200000000000003,42.2,924,14.600000000000001 +2013,10,18,13,30,740,101,902,3.4000000000000004,24.200000000000003,44.910000000000004,923,14.3 +2013,10,18,14,30,636,94,873,3.1,24.3,51.59,923,13.5 +2013,10,18,15,30,465,107,737,3.4000000000000004,23.5,60.93,923,12.4 +2013,10,18,16,30,27,27,0,5.4,20.5,71.87,925,11.4 +2013,10,18,17,30,17,17,0,6.9,18.400000000000002,83.68,926,10.600000000000001 +2013,10,18,18,30,0,0,0,8.6,9.4,96.2,930,7.2 +2013,10,18,19,30,0,0,0,7.800000000000001,6.5,108.85000000000001,932,3.9000000000000004 +2013,10,18,20,30,0,0,0,7.1000000000000005,5.5,121.49000000000001,933,2.3000000000000003 +2013,10,18,21,30,0,0,0,6.300000000000001,4.800000000000001,133.81,934,1.4000000000000001 +2013,10,18,22,30,0,0,0,5.300000000000001,4.1000000000000005,145.22,934,0.8 +2013,10,18,23,30,0,0,0,4.4,3.5,154.27,935,0.6000000000000001 +2013,10,19,0,30,0,0,0,3.6,2.9000000000000004,157.70000000000002,935,0.5 +2013,10,19,1,30,0,0,0,2.9000000000000004,2.3000000000000003,153.24,934,0.4 +2013,10,19,2,30,0,0,0,2.6,1.9000000000000001,143.72,934,0.30000000000000004 +2013,10,19,3,30,0,0,0,2.6,1.6,132.13,934,0.1 +2013,10,19,4,30,0,0,0,2.6,1.4000000000000001,119.75,934,0 +2013,10,19,5,30,0,0,0,2.6,1.3,107.10000000000001,934,-0.2 +2013,10,19,6,30,0,0,0,2.8000000000000003,1.6,94.5,935,-0.30000000000000004 +2013,10,19,7,30,114,33,590,3.1,3.5,82.07000000000001,935,-0.4 +2013,10,19,8,30,333,52,835,3.1,6.9,70.38,935,-0.5 +2013,10,19,9,30,536,63,937,2.7,10.3,59.67,935,-1 +2013,10,19,10,30,694,69,987,2.4000000000000004,12.9,50.69,935,-1.4000000000000001 +2013,10,19,11,30,789,72,1006,2,15,44.56,934,-1.6 +2013,10,19,12,30,819,73,1013,1.5,16.6,42.56,933,-1.4000000000000001 +2013,10,19,13,30,778,71,1004,0.9,17.5,45.26,932,-1.1 +2013,10,19,14,30,666,67,971,0.5,18,51.910000000000004,931,-0.7000000000000001 +2013,10,19,15,30,501,61,914,0.6000000000000001,17.8,61.22,930,-0.4 +2013,10,19,16,30,295,50,800,0.8,16.7,72.13,930,0 +2013,10,19,17,30,82,27,509,0.8,15.700000000000001,83.91,930,4.3 +2013,10,19,18,30,0,0,0,1.2000000000000002,10.9,96.43,930,3.7 +2013,10,19,19,30,0,0,0,1.6,9.700000000000001,109.07000000000001,930,2.9000000000000004 +2013,10,19,20,30,0,0,0,2.1,9.200000000000001,121.71000000000001,930,2.3000000000000003 +2013,10,19,21,30,0,0,0,2.6,8.9,134.05,930,2 +2013,10,19,22,30,0,0,0,3.1,8.5,145.5,930,2 +2013,10,19,23,30,0,0,0,3.2,7.9,154.6,930,2.2 +2013,10,20,0,30,0,0,0,3.2,7.4,158.06,930,2.4000000000000004 +2013,10,20,1,30,0,0,0,3.1,6.9,153.53,929,2.6 +2013,10,20,2,30,0,0,0,3,6.5,143.93,929,2.8000000000000003 +2013,10,20,3,30,0,0,0,3,6.2,132.3,928,3 +2013,10,20,4,30,0,0,0,2.9000000000000004,6,119.9,928,3.3000000000000003 +2013,10,20,5,30,0,0,0,3,5.800000000000001,107.25,927,3.6 +2013,10,20,6,30,0,0,0,3.2,6,94.65,927,4 +2013,10,20,7,30,105,36,511,3.7,7.7,82.24,927,4.4 +2013,10,20,8,30,318,60,774,4.2,11.200000000000001,70.58,927,5.1000000000000005 +2013,10,20,9,30,515,74,880,5.1000000000000005,15.3,59.910000000000004,927,5.9 +2013,10,20,10,30,671,81,935,5.9,18.8,50.97,926,7 +2013,10,20,11,30,767,86,962,6.1000000000000005,21.400000000000002,44.89,925,8.4 +2013,10,20,12,30,796,81,977,6,23.3,42.92,924,9.1 +2013,10,20,13,30,755,82,962,5.9,24.400000000000002,45.61,923,9.3 +2013,10,20,14,30,645,79,923,5.7,24.700000000000003,52.230000000000004,922,9.3 +2013,10,20,15,30,483,67,873,5.300000000000001,24.3,61.51,922,9.200000000000001 +2013,10,20,16,30,279,55,739,4.2,22.6,72.39,922,9.4 +2013,10,20,17,30,72,30,417,3.5,21.200000000000003,84.15,922,10.700000000000001 +2013,10,20,18,30,0,0,0,4.2,17.7,96.65,922,10.8 +2013,10,20,19,30,0,0,0,5,16.8,109.29,923,11.100000000000001 +2013,10,20,20,30,0,0,0,5.300000000000001,15.8,121.94,923,11.3 +2013,10,20,21,30,0,0,0,5.1000000000000005,14.700000000000001,134.29,924,11.4 +2013,10,20,22,30,0,0,0,4.800000000000001,13.700000000000001,145.78,924,11.5 +2013,10,20,23,30,0,0,0,4.5,13,154.94,924,11.5 +2013,10,21,0,30,0,0,0,4,12.200000000000001,158.41,924,11.5 +2013,10,21,1,30,0,0,0,3.3000000000000003,11.5,153.81,925,11.5 +2013,10,21,2,30,0,0,0,2.8000000000000003,10.8,144.14000000000001,925,10.8 +2013,10,21,3,30,0,0,0,2.4000000000000004,10.100000000000001,132.47,925,10.100000000000001 +2013,10,21,4,30,0,0,0,2.2,9.600000000000001,120.05,926,9.600000000000001 +2013,10,21,5,30,0,0,0,2.3000000000000003,9,107.4,926,8.700000000000001 +2013,10,21,6,30,0,0,0,2.8000000000000003,8.700000000000001,94.81,926,7 +2013,10,21,7,30,101,35,502,4,9.700000000000001,82.41,927,5.6000000000000005 +2013,10,21,8,30,124,119,15,5.1000000000000005,12,70.78,928,5 +2013,10,21,9,30,191,182,18,5.6000000000000005,14.3,60.14,928,6 +2013,10,21,10,30,369,295,118,5.9,16.3,51.25,929,7.2 +2013,10,21,11,30,506,341,235,6.2,17.8,45.22,929,8 +2013,10,21,12,30,568,340,314,6.4,18.7,43.28,929,8.3 +2013,10,21,13,30,524,327,284,6.4,19,45.96,929,8.200000000000001 +2013,10,21,14,30,629,93,880,6.300000000000001,18.900000000000002,52.550000000000004,929,7.6000000000000005 +2013,10,21,15,30,471,75,836,5.9,18.400000000000002,61.79,929,6.9 +2013,10,21,16,30,271,58,713,5.1000000000000005,17.1,72.64,929,6 +2013,10,21,17,30,69,29,405,4.5,16.3,84.37,930,5.6000000000000005 +2013,10,21,18,30,0,0,0,2.1,12.100000000000001,96.87,931,5.800000000000001 +2013,10,21,19,30,0,0,0,1.8,10.8,109.5,932,5.6000000000000005 +2013,10,21,20,30,0,0,0,1.6,9.8,122.15,932,5.4 +2013,10,21,21,30,0,0,0,1.4000000000000001,8.9,134.53,933,5.2 +2013,10,21,22,30,0,0,0,1.2000000000000002,8.1,146.05,933,4.9 +2013,10,21,23,30,0,0,0,1.1,7.6000000000000005,155.27,933,4.7 +2013,10,22,0,30,0,0,0,1,7.300000000000001,158.77,933,4.4 +2013,10,22,1,30,0,0,0,1,6.9,154.09,933,4.1000000000000005 +2013,10,22,2,30,0,0,0,1,6.6000000000000005,144.35,933,3.7 +2013,10,22,3,30,0,0,0,1,6.2,132.63,933,3.2 +2013,10,22,4,30,0,0,0,1.1,5.9,120.2,933,2.8000000000000003 +2013,10,22,5,30,0,0,0,1.2000000000000002,5.6000000000000005,107.55,933,2.4000000000000004 +2013,10,22,6,30,0,0,0,1.3,5.800000000000001,94.96000000000001,934,2.1 +2013,10,22,7,30,102,30,560,2.1,8.4,82.58,934,2.3000000000000003 +2013,10,22,8,30,312,49,809,2.6,12.3,70.98,934,2.7 +2013,10,22,9,30,510,59,912,2.3000000000000003,16.1,60.38,934,2.6 +2013,10,22,10,30,664,64,965,2.3000000000000003,19.200000000000003,51.54,934,1.2000000000000002 +2013,10,22,11,30,760,67,990,2.3000000000000003,20.900000000000002,45.550000000000004,933,1.6 +2013,10,22,12,30,790,69,996,2.2,22.1,43.63,932,2 +2013,10,22,13,30,746,67,984,2.1,22.8,46.300000000000004,931,2.4000000000000004 +2013,10,22,14,30,640,63,955,2.1,23,52.86,931,2.6 +2013,10,22,15,30,477,56,898,2,22.6,62.07,931,2.8000000000000003 +2013,10,22,16,30,275,46,781,1.3,21,72.89,930,3.3000000000000003 +2013,10,22,17,30,69,24,477,0.8,19.700000000000003,84.60000000000001,930,9 +2013,10,22,18,30,0,0,0,1.3,15.700000000000001,97.09,931,5.4 +2013,10,22,19,30,0,0,0,1.5,14.100000000000001,109.71000000000001,931,5.2 +2013,10,22,20,30,0,0,0,1.7000000000000002,13.100000000000001,122.37,931,4.800000000000001 +2013,10,22,21,30,0,0,0,2,12.600000000000001,134.76,932,4.3 +2013,10,22,22,30,0,0,0,2.3000000000000003,12.100000000000001,146.32,932,3.8000000000000003 +2013,10,22,23,30,0,0,0,2.4000000000000004,11.600000000000001,155.59,932,3.4000000000000004 +2013,10,23,0,30,0,0,0,2.4000000000000004,11.100000000000001,159.12,932,3.1 +2013,10,23,1,30,0,0,0,2.4000000000000004,10.4,154.36,932,3 +2013,10,23,2,30,0,0,0,2.4000000000000004,9.8,144.55,932,3 +2013,10,23,3,30,0,0,0,2.4000000000000004,9.3,132.8,932,3 +2013,10,23,4,30,0,0,0,2.5,8.8,120.35000000000001,932,3.1 +2013,10,23,5,30,0,0,0,2.5,8.3,107.69,932,3.2 +2013,10,23,6,30,0,0,0,2.7,8.4,95.12,933,3.3000000000000003 +2013,10,23,7,30,99,29,551,3.2,10.100000000000001,82.75,933,3.5 +2013,10,23,8,30,309,48,807,3.2,13.3,71.18,933,3.8000000000000003 +2013,10,23,9,30,506,58,913,3,17.7,60.61,933,5 +2013,10,23,10,30,660,64,965,3.5,21.900000000000002,51.82,933,4.3 +2013,10,23,11,30,755,66,991,3.8000000000000003,24.200000000000003,45.88,932,3.4000000000000004 +2013,10,23,12,30,782,71,987,3.9000000000000004,25.200000000000003,43.980000000000004,932,3.8000000000000003 +2013,10,23,13,30,741,70,978,4,25.6,46.65,931,4.1000000000000005 +2013,10,23,14,30,635,67,948,4,25.5,53.18,930,4.3 +2013,10,23,15,30,472,61,884,3.8000000000000003,24.700000000000003,62.35,930,4.3 +2013,10,23,16,30,270,50,758,2.8000000000000003,22.400000000000002,73.14,929,4.9 +2013,10,23,17,30,65,25,435,1.9000000000000001,20.6,84.82000000000001,929,8.200000000000001 +2013,10,23,18,30,0,0,0,2.2,16.2,97.3,930,6.9 +2013,10,23,19,30,0,0,0,2.6,15.4,109.92,930,6.1000000000000005 +2013,10,23,20,30,0,0,0,3,14.600000000000001,122.58,931,5.6000000000000005 +2013,10,23,21,30,0,0,0,3.3000000000000003,13.700000000000001,134.98,931,5 +2013,10,23,22,30,0,0,0,3.4000000000000004,12.8,146.58,931,4.7 +2013,10,23,23,30,0,0,0,3.4000000000000004,12,155.91,932,4.6000000000000005 +2013,10,24,0,30,0,0,0,3.2,11.200000000000001,159.46,932,4.5 +2013,10,24,1,30,0,0,0,2.9000000000000004,10.5,154.64000000000001,932,4.4 +2013,10,24,2,30,0,0,0,2.5,9.700000000000001,144.75,932,4.3 +2013,10,24,3,30,0,0,0,2.1,9,132.97,932,4.2 +2013,10,24,4,30,0,0,0,1.7000000000000002,8.3,120.5,932,4.1000000000000005 +2013,10,24,5,30,0,0,0,1.4000000000000001,8,107.84,933,4.1000000000000005 +2013,10,24,6,30,0,0,0,1.2000000000000002,8.4,95.28,933,4.2 +2013,10,24,7,30,58,43,123,1.6,10.100000000000001,82.92,934,4.6000000000000005 +2013,10,24,8,30,302,56,772,1.8,12.700000000000001,71.38,935,5 +2013,10,24,9,30,499,69,884,1.3,15.8,60.85,935,5.5 +2013,10,24,10,30,654,76,942,1.1,19.5,52.1,935,5.5 +2013,10,24,11,30,750,79,969,0.9,22.200000000000003,46.2,935,5 +2013,10,24,12,30,777,77,978,0.7000000000000001,23.6,44.33,934,5 +2013,10,24,13,30,736,75,969,1,24.3,46.980000000000004,933,5 +2013,10,24,14,30,630,71,939,1.6,24.400000000000002,53.480000000000004,933,5.1000000000000005 +2013,10,24,15,30,466,65,871,2,23.8,62.620000000000005,932,5.1000000000000005 +2013,10,24,16,30,264,52,743,1.7000000000000002,21.700000000000003,73.38,932,5.4 +2013,10,24,17,30,61,26,409,1.2000000000000002,20,85.04,932,9.4 +2013,10,24,18,30,0,0,0,1.5,15.600000000000001,97.51,933,7.800000000000001 +2013,10,24,19,30,0,0,0,1.7000000000000002,14.600000000000001,110.12,934,7.5 +2013,10,24,20,30,0,0,0,1.7000000000000002,13.700000000000001,122.78,935,7.5 +2013,10,24,21,30,0,0,0,1.6,12.600000000000001,135.2,935,7.5 +2013,10,24,22,30,0,0,0,1.5,11.600000000000001,146.83,936,7.5 +2013,10,24,23,30,0,0,0,1.3,10.700000000000001,156.23,936,7.6000000000000005 +2013,10,25,0,30,0,0,0,1.3,9.9,159.8,936,7.800000000000001 +2013,10,25,1,30,0,0,0,1.3,9.1,154.91,936,8 +2013,10,25,2,30,0,0,0,1.4000000000000001,8.4,144.95000000000002,936,8.1 +2013,10,25,3,30,0,0,0,1.4000000000000001,7.800000000000001,133.13,937,7.800000000000001 +2013,10,25,4,30,0,0,0,1.7000000000000002,7.5,120.65,937,7.5 +2013,10,25,5,30,0,0,0,2,7.4,107.99000000000001,938,7.4 +2013,10,25,6,30,0,0,0,2.4000000000000004,7.5,95.43,938,7.5 +2013,10,25,7,30,47,42,41,2.8000000000000003,8.700000000000001,83.09,938,7.7 +2013,10,25,8,30,289,64,712,3.1,11.3,71.58,938,7.7 +2013,10,25,9,30,482,77,838,3.2,14.4,61.09,938,8.3 +2013,10,25,10,30,632,85,897,3.5,17.3,52.38,938,9.1 +2013,10,25,11,30,576,283,426,3.8000000000000003,19.8,46.52,937,9.5 +2013,10,25,12,30,634,254,534,3.9000000000000004,21.400000000000002,44.68,936,9 +2013,10,25,13,30,716,85,931,3.7,22.1,47.32,935,8.5 +2013,10,25,14,30,610,81,896,3.7,22.200000000000003,53.79,935,8.1 +2013,10,25,15,30,449,70,830,3.9000000000000004,21.700000000000003,62.89,934,7.9 +2013,10,25,16,30,251,56,691,3.3000000000000003,20.200000000000003,73.62,934,7.9 +2013,10,25,17,30,54,26,339,2.6,19.1,85.25,933,8.9 +2013,10,25,18,30,0,0,0,2.1,15.700000000000001,97.71000000000001,934,9.4 +2013,10,25,19,30,0,0,0,3,15.5,110.31,934,9.700000000000001 +2013,10,25,20,30,0,0,0,3.7,15.3,122.98,934,10.200000000000001 +2013,10,25,21,30,0,0,0,4,15.100000000000001,135.42000000000002,934,10.9 +2013,10,25,22,30,0,0,0,4,14.9,147.08,934,11.600000000000001 +2013,10,25,23,30,0,0,0,3.8000000000000003,14.9,156.54,933,12.200000000000001 +2013,10,26,0,30,0,0,0,3.7,14.700000000000001,160.14000000000001,933,12.8 +2013,10,26,1,30,0,0,0,3.7,14.4,155.17000000000002,933,13.4 +2013,10,26,2,30,0,0,0,3.4000000000000004,14,145.15,932,13.9 +2013,10,26,3,30,0,0,0,3,13.600000000000001,133.3,932,13.600000000000001 +2013,10,26,4,30,0,0,0,2.8000000000000003,13.5,120.8,932,13.5 +2013,10,26,5,30,0,0,0,3,13.600000000000001,108.14,932,13.600000000000001 +2013,10,26,6,30,0,0,0,3.4000000000000004,13.9,95.59,932,13.9 +2013,10,26,7,30,74,44,258,3.9000000000000004,14.9,83.27,933,14.600000000000001 +2013,10,26,8,30,98,98,0,4.5,16.7,71.78,933,15 +2013,10,26,9,30,454,103,731,5.2,18.900000000000002,61.32,933,15.200000000000001 +2013,10,26,10,30,280,254,43,5.5,20.8,52.660000000000004,932,14.8 +2013,10,26,11,30,117,117,0,5.2,22.200000000000003,46.84,932,14.3 +2013,10,26,12,30,728,114,868,4.800000000000001,23.1,45.02,931,14 +2013,10,26,13,30,688,112,855,4.3,23.700000000000003,47.65,930,13.5 +2013,10,26,14,30,586,104,821,3.8000000000000003,23.900000000000002,54.08,930,13 +2013,10,26,15,30,431,89,757,3.2,23.8,63.15,929,12.4 +2013,10,26,16,30,100,98,7,1.9000000000000001,22.5,73.85000000000001,930,11.9 +2013,10,26,17,30,50,28,278,1,21.400000000000002,85.46000000000001,930,14.200000000000001 +2013,10,26,18,30,0,0,0,0.8,18.900000000000002,97.91,930,12.200000000000001 +2013,10,26,19,30,0,0,0,0.9,17.8,110.5,931,11.700000000000001 +2013,10,26,20,30,0,0,0,1.7000000000000002,16.6,123.17,931,11.600000000000001 +2013,10,26,21,30,0,0,0,2.7,15.3,135.62,932,11.4 +2013,10,26,22,30,0,0,0,3.5,13.9,147.32,932,11.200000000000001 +2013,10,26,23,30,0,0,0,3.9000000000000004,12.700000000000001,156.84,932,11.4 +2013,10,27,0,30,0,0,0,4,11.8,160.48,932,11.600000000000001 +2013,10,27,1,30,0,0,0,3.9000000000000004,11.3,155.44,932,11.3 +2013,10,27,2,30,0,0,0,3.7,10.8,145.35,932,10.8 +2013,10,27,3,30,0,0,0,3.3000000000000003,10.3,133.46,932,10.200000000000001 +2013,10,27,4,30,0,0,0,2.7,9.700000000000001,120.95,932,9.4 +2013,10,27,5,30,0,0,0,2.4000000000000004,8.9,108.29,932,8.4 +2013,10,27,6,30,0,0,0,2.4000000000000004,8.4,95.75,932,7.1000000000000005 +2013,10,27,7,30,83,32,444,2.7,9.1,83.44,932,5.7 +2013,10,27,8,30,88,88,0,2.8000000000000003,11.600000000000001,71.98,933,4.5 +2013,10,27,9,30,308,209,207,2.5,14.4,61.56,932,4.4 +2013,10,27,10,30,409,282,211,2.1,16.6,52.94,932,4.9 +2013,10,27,11,30,733,76,966,1.7000000000000002,18.3,47.160000000000004,931,4.9 +2013,10,27,12,30,497,343,219,1.3,19.6,45.35,930,5.1000000000000005 +2013,10,27,13,30,719,78,957,1.1,20.400000000000002,47.97,929,5.300000000000001 +2013,10,27,14,30,613,72,928,1.2000000000000002,20.8,54.38,928,5.4 +2013,10,27,15,30,452,65,865,1.2000000000000002,20.6,63.410000000000004,928,5.300000000000001 +2013,10,27,16,30,252,51,735,1.1,19.3,74.08,928,5.2 +2013,10,27,17,30,53,23,384,0.8,18.2,85.66,928,8.3 +2013,10,27,18,30,0,0,0,1.2000000000000002,14.100000000000001,98.10000000000001,928,7.1000000000000005 +2013,10,27,19,30,0,0,0,1.4000000000000001,13,110.69,928,7 +2013,10,27,20,30,0,0,0,1.8,12.700000000000001,123.36,928,7.300000000000001 +2013,10,27,21,30,0,0,0,2.4000000000000004,12.8,135.83,928,8.1 +2013,10,27,22,30,0,0,0,2.7,12.600000000000001,147.56,928,9 +2013,10,27,23,30,0,0,0,2.8000000000000003,12,157.14000000000001,928,10 +2013,10,28,0,30,0,0,0,2.9000000000000004,11.700000000000001,160.82,928,10.9 +2013,10,28,1,30,0,0,0,3,11.8,155.70000000000002,928,11.8 +2013,10,28,2,30,0,0,0,3.1,12.200000000000001,145.55,927,12.200000000000001 +2013,10,28,3,30,0,0,0,2.9000000000000004,12.5,133.62,927,12.5 +2013,10,28,4,30,0,0,0,2.9000000000000004,12.8,121.10000000000001,927,12.8 +2013,10,28,5,30,0,0,0,2.9000000000000004,13.100000000000001,108.44,927,13.100000000000001 +2013,10,28,6,30,0,0,0,3,13.5,95.91,928,13.5 +2013,10,28,7,30,28,28,0,3.4000000000000004,14.5,83.62,928,14.3 +2013,10,28,8,30,263,69,633,4.4,16.5,72.19,928,15 +2013,10,28,9,30,312,206,224,5.7,19.400000000000002,61.800000000000004,928,16.2 +2013,10,28,10,30,335,277,98,6.4,21.900000000000002,53.22,928,16.7 +2013,10,28,11,30,562,287,407,6.300000000000001,23.3,47.480000000000004,927,16.400000000000002 +2013,10,28,12,30,582,300,404,6.1000000000000005,24.3,45.69,926,15.9 +2013,10,28,13,30,504,308,296,6,24.900000000000002,48.300000000000004,926,15.5 +2013,10,28,14,30,388,269,206,5.800000000000001,24.900000000000002,54.67,925,15 +2013,10,28,15,30,238,193,101,5.5,24.400000000000002,63.67,925,14.600000000000001 +2013,10,28,16,30,149,106,156,5.2,23.3,74.31,926,14.4 +2013,10,28,17,30,29,25,59,4.9,22.6,85.86,926,14.3 +2013,10,28,18,30,0,0,0,4.6000000000000005,20.400000000000002,98.29,927,14.3 +2013,10,28,19,30,0,0,0,4.7,19.5,110.87,927,14.5 +2013,10,28,20,30,0,0,0,4.7,18.8,123.54,928,14.8 +2013,10,28,21,30,0,0,0,4.6000000000000005,18.3,136.02,928,15.200000000000001 +2013,10,28,22,30,0,0,0,4.5,17.900000000000002,147.79,928,15.700000000000001 +2013,10,28,23,30,0,0,0,4.5,17.5,157.44,928,16.1 +2013,10,29,0,30,0,0,0,4.6000000000000005,17.3,161.15,927,16.3 +2013,10,29,1,30,0,0,0,4.6000000000000005,17,155.96,928,16.5 +2013,10,29,2,30,0,0,0,4.4,16.900000000000002,145.74,928,16.6 +2013,10,29,3,30,0,0,0,4.1000000000000005,16.900000000000002,133.79,928,16.8 +2013,10,29,4,30,0,0,0,3.8000000000000003,16.900000000000002,121.25,928,16.900000000000002 +2013,10,29,5,30,0,0,0,3.4000000000000004,16.900000000000002,108.60000000000001,928,16.900000000000002 +2013,10,29,6,30,0,0,0,3.3000000000000003,17,96.07000000000001,928,17 +2013,10,29,7,30,37,36,7,3.5,17.7,83.8,928,17.5 +2013,10,29,8,30,118,112,21,4.2,19.200000000000003,72.39,929,17.900000000000002 +2013,10,29,9,30,268,208,129,5,21,62.04,929,18.400000000000002 +2013,10,29,10,30,433,269,275,5.4,22.6,53.5,928,18.900000000000002 +2013,10,29,11,30,529,302,338,5.2,23.8,47.79,928,19 +2013,10,29,12,30,583,290,422,4.9,24.8,46.02,927,18.8 +2013,10,29,13,30,543,280,396,4.5,25.400000000000002,48.620000000000005,926,18.6 +2013,10,29,14,30,463,229,408,4.1000000000000005,25.400000000000002,54.96,926,18.3 +2013,10,29,15,30,287,188,224,3.5,25,63.92,926,18.1 +2013,10,29,16,30,153,103,184,2.7,23.8,74.53,926,18.3 +2013,10,29,17,30,23,23,0,2.2,22.900000000000002,86.05,926,18.5 +2013,10,29,18,30,0,0,0,3.3000000000000003,21.400000000000002,98.48,927,18.400000000000002 +2013,10,29,19,30,0,0,0,4.2,21,111.05,927,18.400000000000002 +2013,10,29,20,30,0,0,0,4.5,20.5,123.72,927,18.400000000000002 +2013,10,29,21,30,0,0,0,4.4,19.8,136.21,927,18.3 +2013,10,29,22,30,0,0,0,4.1000000000000005,19,148.02,927,18.2 +2013,10,29,23,30,0,0,0,3.9000000000000004,18.5,157.72,926,18.2 +2013,10,30,0,30,0,0,0,3.9000000000000004,18.2,161.47,926,18.2 +2013,10,30,1,30,0,0,0,3.8000000000000003,18.1,156.22,926,18.1 +2013,10,30,2,30,0,0,0,3.9000000000000004,18.2,145.93,925,18.2 +2013,10,30,3,30,0,0,0,4.3,18.400000000000002,133.95,925,18.400000000000002 +2013,10,30,4,30,0,0,0,4.800000000000001,18.6,121.4,925,18.6 +2013,10,30,5,30,0,0,0,5,18.7,108.75,925,18.6 +2013,10,30,6,30,0,0,0,4.800000000000001,18.8,96.24000000000001,925,18.6 +2013,10,30,7,30,22,22,0,5,19.400000000000002,83.98,926,18.6 +2013,10,30,8,30,27,27,0,5.7,20.700000000000003,72.60000000000001,926,18.7 +2013,10,30,9,30,126,126,0,6.1000000000000005,22.3,62.28,926,18.7 +2013,10,30,10,30,173,171,4,5.9,23.900000000000002,53.77,925,18.5 +2013,10,30,11,30,95,95,0,5.4,25.400000000000002,48.1,925,18.1 +2013,10,30,12,30,119,119,0,5,26.1,46.35,924,17.5 +2013,10,30,13,30,137,137,0,4.5,26.3,48.93,923,16.7 +2013,10,30,14,30,114,114,0,4.3,26.3,55.24,922,16 +2013,10,30,15,30,85,85,0,4.1000000000000005,26,64.17,922,15.5 +2013,10,30,16,30,123,103,74,3.3000000000000003,24.700000000000003,74.75,922,15.100000000000001 +2013,10,30,17,30,12,12,0,2.7,23.700000000000003,86.24,922,15.9 +2013,10,30,18,30,0,0,0,2.9000000000000004,21.5,98.65,922,16 +2013,10,30,19,30,0,0,0,3.6,21.1,111.22,922,16.2 +2013,10,30,20,30,0,0,0,3.9000000000000004,20.5,123.89,922,16.5 +2013,10,30,21,30,0,0,0,4.1000000000000005,19.900000000000002,136.4,922,16.5 +2013,10,30,22,30,0,0,0,4.5,19.3,148.23,921,16.2 +2013,10,30,23,30,0,0,0,4.800000000000001,18.7,158.01,921,15.8 +2013,10,31,0,30,0,0,0,5.1000000000000005,18.3,161.8,921,15.5 +2013,10,31,1,30,0,0,0,5.2,18,156.47,921,15.200000000000001 +2013,10,31,2,30,0,0,0,4.800000000000001,17.400000000000002,146.13,921,14.9 +2013,10,31,3,30,0,0,0,4.5,16.3,134.11,922,13.9 +2013,10,31,4,30,0,0,0,4.2,14.700000000000001,121.55,922,11.5 +2013,10,31,5,30,0,0,0,4,12.9,108.9,923,8.200000000000001 +2013,10,31,6,30,0,0,0,4.1000000000000005,11.600000000000001,96.4,924,5.4 +2013,10,31,7,30,83,26,560,4.7,12,84.15,924,3.5 +2013,10,31,8,30,292,46,832,5.800000000000001,14,72.8,925,2.1 +2013,10,31,9,30,491,57,940,6.7,16.400000000000002,62.51,925,-0.30000000000000004 +2013,10,31,10,30,646,64,992,7,18.400000000000002,54.050000000000004,925,-1.3 +2013,10,31,11,30,738,68,1009,6.800000000000001,19.900000000000002,48.410000000000004,924,-1.8 +2013,10,31,12,30,766,69,1016,6.300000000000001,21,46.67,924,-2 +2013,10,31,13,30,724,67,1006,5.6000000000000005,21.6,49.24,923,-2.1 +2013,10,31,14,30,615,63,976,4.7,21.700000000000003,55.52,923,-2.3000000000000003 +2013,10,31,15,30,451,55,915,3.6,21.3,64.41,923,-2.5 +2013,10,31,16,30,247,44,784,2,19.400000000000002,74.96000000000001,923,-2.5 +2013,10,31,17,30,46,19,420,1,17.8,86.42,923,4.1000000000000005 +2013,10,31,18,30,0,0,0,0.7000000000000001,15.600000000000001,98.83,924,1.2000000000000002 +2013,10,31,19,30,0,0,0,0.9,14.4,111.39,924,0.30000000000000004 +2013,10,31,20,30,0,0,0,1.2000000000000002,12.700000000000001,124.06,924,0.5 +2013,10,31,21,30,0,0,0,1.4000000000000001,11.3,136.58,924,0.7000000000000001 +2013,10,31,22,30,0,0,0,1.6,10.4,148.44,923,0.4 +2013,10,31,23,30,0,0,0,1.9000000000000001,10,158.28,923,0 +2013,11,1,0,30,0,0,0,2.5,9.8,162.12,923,-0.4 +2013,11,1,1,30,0,0,0,3,9.5,156.73,923,-0.6000000000000001 +2013,11,1,2,30,0,0,0,3.4000000000000004,8.9,146.32,922,-0.6000000000000001 +2013,11,1,3,30,0,0,0,3.4000000000000004,8.3,134.27,922,-0.5 +2013,11,1,4,30,0,0,0,3.4000000000000004,7.9,121.71000000000001,922,-0.6000000000000001 +2013,11,1,5,30,0,0,0,3.4000000000000004,7.6000000000000005,109.05,923,-0.8 +2013,11,1,6,30,0,0,0,3.5,7.5,96.56,923,-0.9 +2013,11,1,7,30,77,25,527,4,8.8,84.32000000000001,924,-1 +2013,11,1,8,30,283,45,815,4.7,11.600000000000001,73,925,-0.9 +2013,11,1,9,30,479,56,925,4.9,14.9,62.75,925,-0.8 +2013,11,1,10,30,633,63,977,5.1000000000000005,17.7,54.32,925,-0.6000000000000001 +2013,11,1,11,30,729,68,1001,5.5,19.900000000000002,48.72,925,-0.4 +2013,11,1,12,30,753,71,999,6.1000000000000005,21.3,46.99,925,-0.4 +2013,11,1,13,30,711,71,987,6.6000000000000005,21.8,49.54,925,-0.30000000000000004 +2013,11,1,14,30,601,66,951,6.7,21.6,55.79,926,-0.5 +2013,11,1,15,30,438,59,886,6.300000000000001,20.900000000000002,64.65,927,-0.8 +2013,11,1,16,30,238,45,753,5.2,19.200000000000003,75.17,927,-0.9 +2013,11,1,17,30,42,19,382,4.4,18,86.60000000000001,928,-0.1 +2013,11,1,18,30,0,0,0,3.2,14,99,930,1 +2013,11,1,19,30,0,0,0,3.1,12.9,111.55,931,1.3 +2013,11,1,20,30,0,0,0,2.9000000000000004,11.8,124.22,932,1.7000000000000002 +2013,11,1,21,30,0,0,0,2.6,10.700000000000001,136.75,933,1.8 +2013,11,1,22,30,0,0,0,2.3000000000000003,9.600000000000001,148.65,934,1.6 +2013,11,1,23,30,0,0,0,2,8.700000000000001,158.55,934,1.2000000000000002 +2013,11,2,0,30,0,0,0,1.9000000000000001,7.9,162.43,935,0.8 +2013,11,2,1,30,0,0,0,1.9000000000000001,7.300000000000001,156.98,935,0.5 +2013,11,2,2,30,0,0,0,2,6.800000000000001,146.51,935,0.2 +2013,11,2,3,30,0,0,0,2,6.300000000000001,134.43,936,0.1 +2013,11,2,4,30,0,0,0,1.9000000000000001,5.7,121.86,936,0 +2013,11,2,5,30,0,0,0,1.8,5.2,109.21000000000001,936,-0.1 +2013,11,2,6,30,0,0,0,1.6,5,96.72,937,-0.30000000000000004 +2013,11,2,7,30,74,26,505,2.1,6.7,84.5,938,-0.30000000000000004 +2013,11,2,8,30,279,47,805,2.6,10.100000000000001,73.21000000000001,938,-0.30000000000000004 +2013,11,2,9,30,475,57,919,2.8000000000000003,13.700000000000001,62.99,938,-1.1 +2013,11,2,10,30,625,63,969,2.7,16.400000000000002,54.59,938,-3.3000000000000003 +2013,11,2,11,30,720,67,995,2.1,18,49.02,938,-3.5 +2013,11,2,12,30,748,69,1000,1.7000000000000002,19,47.300000000000004,937,-2.9000000000000004 +2013,11,2,13,30,706,67,991,1.4000000000000001,19.700000000000003,49.84,936,-2.3000000000000003 +2013,11,2,14,30,599,63,960,1.1,19.8,56.06,935,-1.9000000000000001 +2013,11,2,15,30,437,59,890,0.8,19.400000000000002,64.88,934,-1.7000000000000002 +2013,11,2,16,30,236,45,754,0.7000000000000001,17.6,75.37,934,-1.6 +2013,11,2,17,30,40,19,374,0.7000000000000001,16.3,86.77,934,3.8000000000000003 +2013,11,2,18,30,0,0,0,1.3,11.8,99.16,934,1.9000000000000001 +2013,11,2,19,30,0,0,0,1.6,10.700000000000001,111.7,934,1.2000000000000002 +2013,11,2,20,30,0,0,0,2,10.100000000000001,124.37,934,0.5 +2013,11,2,21,30,0,0,0,2.4000000000000004,9.600000000000001,136.91,934,0.2 +2013,11,2,22,30,0,0,0,2.8000000000000003,9.1,148.85,934,0.2 +2013,11,2,23,30,0,0,0,3,8.5,158.81,933,0.5 +2013,11,3,0,30,0,0,0,3,7.9,162.75,933,0.8 +2013,11,3,1,30,0,0,0,3.1,7.300000000000001,157.22,933,1.2000000000000002 +2013,11,3,2,30,0,0,0,3.3000000000000003,6.9,146.69,933,1.5 +2013,11,3,3,30,0,0,0,3.7,6.5,134.59,932,1.7000000000000002 +2013,11,3,4,30,0,0,0,3.9000000000000004,6.1000000000000005,122.01,931,1.8 +2013,11,3,5,30,0,0,0,3.6,5.5,109.36,932,1.8 +2013,11,3,6,30,0,0,0,3.7,5.5,96.89,933,1.8 +2013,11,3,7,30,70,25,478,4.3,6.5,84.68,932,1.7000000000000002 +2013,11,3,8,30,272,48,784,4.7,8,73.41,932,1.6 +2013,11,3,9,30,342,171,379,5.5,10,63.22,931,1.4000000000000001 +2013,11,3,10,30,451,241,365,6.4,12.200000000000001,54.86,931,0.30000000000000004 +2013,11,3,11,30,232,222,14,6.7,14.3,49.32,929,-0.30000000000000004 +2013,11,3,12,30,251,239,17,6.9,16.1,47.62,928,-0.2 +2013,11,3,13,30,208,202,10,6.9,17.5,50.14,926,0 +2013,11,3,14,30,75,75,0,6.800000000000001,18.3,56.32,926,0.30000000000000004 +2013,11,3,15,30,102,102,0,6.6000000000000005,18,65.11,925,0.7000000000000001 +2013,11,3,16,30,124,98,104,5.6000000000000005,16.5,75.57000000000001,926,1.3 +2013,11,3,17,30,15,15,0,4.800000000000001,15.5,86.94,926,2.3000000000000003 +2013,11,3,18,30,0,0,0,4.800000000000001,12.600000000000001,99.32000000000001,926,3.3000000000000003 +2013,11,3,19,30,0,0,0,5.300000000000001,11.4,111.85000000000001,926,4.2 +2013,11,3,20,30,0,0,0,5.4,10.3,124.52,927,5.5 +2013,11,3,21,30,0,0,0,5.1000000000000005,9.700000000000001,137.07,927,6.4 +2013,11,3,22,30,0,0,0,4.9,9.5,149.04,926,6.6000000000000005 +2013,11,3,23,30,0,0,0,4.800000000000001,9.600000000000001,159.07,926,6.1000000000000005 +2013,11,4,0,30,0,0,0,4.6000000000000005,9.8,163.06,926,5.2 +2013,11,4,1,30,0,0,0,4.2,9.8,157.47,925,4.3 +2013,11,4,2,30,0,0,0,4,9.8,146.88,925,3.9000000000000004 +2013,11,4,3,30,0,0,0,3.8000000000000003,9.8,134.75,925,3.9000000000000004 +2013,11,4,4,30,0,0,0,3.7,9.9,122.16,925,4.3 +2013,11,4,5,30,0,0,0,3.5,9.9,109.51,925,4.9 +2013,11,4,6,30,0,0,0,3.7,10.100000000000001,97.05,926,5.5 +2013,11,4,7,30,38,31,74,4.2,10.9,84.86,926,6.300000000000001 +2013,11,4,8,30,95,95,0,4.800000000000001,12.700000000000001,73.62,926,7.2 +2013,11,4,9,30,148,147,3,5.2,15.200000000000001,63.46,927,7.7 +2013,11,4,10,30,462,229,408,5.2,17.7,55.13,927,8.1 +2013,11,4,11,30,544,262,436,5,19.8,49.620000000000005,926,8.9 +2013,11,4,12,30,704,78,933,4.9,21.200000000000003,47.92,926,9.700000000000001 +2013,11,4,13,30,663,78,918,4.9,21.8,50.43,925,10.200000000000001 +2013,11,4,14,30,559,75,880,5.1000000000000005,21.5,56.58,924,10.4 +2013,11,4,15,30,403,65,810,5.4,20.400000000000002,65.33,924,10.5 +2013,11,4,16,30,151,90,247,5.5,18.400000000000002,75.76,925,10.700000000000001 +2013,11,4,17,30,12,12,0,5.4,17.2,87.11,925,10.9 +2013,11,4,18,30,0,0,0,4.3,14.200000000000001,99.48,926,11.4 +2013,11,4,19,30,0,0,0,4,13.3,112,927,11.700000000000001 +2013,11,4,20,30,0,0,0,3.7,12.8,124.66,927,12 +2013,11,4,21,30,0,0,0,3.1,12.4,137.23,928,12.200000000000001 +2013,11,4,22,30,0,0,0,2.6,12.200000000000001,149.22,927,12.200000000000001 +2013,11,4,23,30,0,0,0,2.5,12.200000000000001,159.32,927,12.200000000000001 +2013,11,5,0,30,0,0,0,2.5,12.4,163.36,927,12.4 +2013,11,5,1,30,0,0,0,2.7,12.5,157.71,926,12.5 +2013,11,5,2,30,0,0,0,2.7,12.600000000000001,147.06,926,12.600000000000001 +2013,11,5,3,30,0,0,0,2.7,12.600000000000001,134.91,926,12.600000000000001 +2013,11,5,4,30,0,0,0,2.7,12.700000000000001,122.31,926,12.700000000000001 +2013,11,5,5,30,0,0,0,3,12.9,109.67,926,12.9 +2013,11,5,6,30,0,0,0,3.4000000000000004,13.3,97.22,926,13.3 +2013,11,5,7,30,55,30,295,4,14.3,85.04,927,14.3 +2013,11,5,8,30,241,62,643,4.800000000000001,16.1,73.82000000000001,927,15 +2013,11,5,9,30,226,190,80,5.6000000000000005,18.2,63.690000000000005,927,15.600000000000001 +2013,11,5,10,30,418,252,293,6.300000000000001,20.1,55.4,927,15.600000000000001 +2013,11,5,11,30,350,298,80,6.5,21.6,49.92,926,15.600000000000001 +2013,11,5,12,30,208,202,9,6.300000000000001,22.400000000000002,48.22,925,15.5 +2013,11,5,13,30,294,267,42,6,22.900000000000002,50.71,924,15.4 +2013,11,5,14,30,157,156,1,5.5,23.1,56.83,923,15.200000000000001 +2013,11,5,15,30,81,81,0,4.800000000000001,22.8,65.55,923,15 +2013,11,5,16,30,130,95,144,3.6,21.700000000000003,75.95,924,14.700000000000001 +2013,11,5,17,30,26,20,121,2.7,20.8,87.27,924,14.8 +2013,11,5,18,30,0,0,0,2.4000000000000004,17.900000000000002,99.62,925,14.4 +2013,11,5,19,30,0,0,0,2.8000000000000003,17.1,112.14,926,14 +2013,11,5,20,30,0,0,0,3.1,16.5,124.8,926,13.700000000000001 +2013,11,5,21,30,0,0,0,3.2,15.8,137.37,927,13.5 +2013,11,5,22,30,0,0,0,2.7,15,149.4,928,13.3 +2013,11,5,23,30,0,0,0,2.9000000000000004,14,159.57,929,12.9 +2013,11,6,0,30,0,0,0,4.3,12.4,163.66,930,11.700000000000001 +2013,11,6,1,30,0,0,0,5.300000000000001,10.4,157.95000000000002,931,9.4 +2013,11,6,2,30,0,0,0,5.6000000000000005,8.3,147.25,932,6.5 +2013,11,6,3,30,0,0,0,5.5,7.1000000000000005,135.07,932,3.9000000000000004 +2013,11,6,4,30,0,0,0,5.4,6.6000000000000005,122.46000000000001,933,2.3000000000000003 +2013,11,6,5,30,0,0,0,5.300000000000001,6.300000000000001,109.82000000000001,934,1.3 +2013,11,6,6,30,0,0,0,5.1000000000000005,6,97.38,936,0.5 +2013,11,6,7,30,56,27,348,5.1000000000000005,6.1000000000000005,85.21000000000001,937,0.2 +2013,11,6,8,30,247,54,700,5.4,6.9,74.03,937,-0.30000000000000004 +2013,11,6,9,30,373,126,561,5.5,8.6,63.93,938,-1.3 +2013,11,6,10,30,595,69,931,5.5,10.8,55.67,937,-2.5 +2013,11,6,11,30,693,71,972,5.5,13,50.21,937,-3.8000000000000003 +2013,11,6,12,30,726,70,990,5.4,14.8,48.52,936,-4.7 +2013,11,6,13,30,692,67,992,5.300000000000001,15.9,50.99,936,-5 +2013,11,6,14,30,593,63,975,5.1000000000000005,16.1,57.08,936,-5.2 +2013,11,6,15,30,433,55,921,4.7,15.600000000000001,65.76,936,-5.4 +2013,11,6,16,30,230,42,784,3.4000000000000004,13.600000000000001,76.13,936,-5.6000000000000005 +2013,11,6,17,30,33,16,375,2.4000000000000004,12.100000000000001,87.41,937,-3.5 +2013,11,6,18,30,0,0,0,1.6,7.6000000000000005,99.77,937,-2.3000000000000003 +2013,11,6,19,30,0,0,0,1.5,6.6000000000000005,112.27,938,-2.5 +2013,11,6,20,30,0,0,0,1.5,5.7,124.93,939,-2.7 +2013,11,6,21,30,0,0,0,1.4000000000000001,4.9,137.51,939,-2.8000000000000003 +2013,11,6,22,30,0,0,0,1.3,4.2,149.57,939,-2.9000000000000004 +2013,11,6,23,30,0,0,0,1.2000000000000002,3.6,159.8,940,-3.1 +2013,11,7,0,30,0,0,0,1.1,3.1,163.96,940,-3.3000000000000003 +2013,11,7,1,30,0,0,0,1.1,2.7,158.18,940,-3.5 +2013,11,7,2,30,0,0,0,1,2.5,147.43,940,-3.7 +2013,11,7,3,30,0,0,0,0.9,2.4000000000000004,135.23,941,-4 +2013,11,7,4,30,0,0,0,0.9,2.2,122.62,941,-4.3 +2013,11,7,5,30,0,0,0,1,1.7000000000000002,109.98,942,-4.5 +2013,11,7,6,30,0,0,0,1.1,1.4000000000000001,97.55,943,-4.5 +2013,11,7,7,30,39,28,134,1.5,3.3000000000000003,85.39,943,-4.2 +2013,11,7,8,30,194,86,397,1.9000000000000001,6.800000000000001,74.23,943,-3.5 +2013,11,7,9,30,459,52,934,1.8,10.600000000000001,64.16,943,-3.8000000000000003 +2013,11,7,10,30,613,60,989,2.1,13.9,55.93,943,-5.9 +2013,11,7,11,30,621,142,754,2.4000000000000004,15.5,50.49,942,-5.9 +2013,11,7,12,30,598,212,586,2.4000000000000004,16.400000000000002,48.82,941,-5.5 +2013,11,7,13,30,520,252,430,2.3000000000000003,16.7,51.27,941,-5.2 +2013,11,7,14,30,483,147,624,2.3000000000000003,16.5,57.32,940,-4.9 +2013,11,7,15,30,262,171,224,2,15.600000000000001,65.97,940,-4.5 +2013,11,7,16,30,110,92,78,1.4000000000000001,13.4,76.31,940,-2 +2013,11,7,17,30,17,17,0,1.1,11.8,87.56,940,1.1 +2013,11,7,18,30,0,0,0,1.5,9.4,99.91,940,0.1 +2013,11,7,19,30,0,0,0,1.6,8.700000000000001,112.4,940,-0.2 +2013,11,7,20,30,0,0,0,1.7000000000000002,8.200000000000001,125.06,940,-0.30000000000000004 +2013,11,7,21,30,0,0,0,1.7000000000000002,7.800000000000001,137.65,940,-0.4 +2013,11,7,22,30,0,0,0,1.7000000000000002,7.300000000000001,149.73,940,-0.4 +2013,11,7,23,30,0,0,0,1.8,7,160.03,940,-0.5 +2013,11,8,0,30,0,0,0,1.9000000000000001,6.7,164.25,939,-0.6000000000000001 +2013,11,8,1,30,0,0,0,2,6.5,158.42000000000002,939,-0.6000000000000001 +2013,11,8,2,30,0,0,0,2.3000000000000003,6.4,147.61,939,-0.6000000000000001 +2013,11,8,3,30,0,0,0,2.4000000000000004,6.300000000000001,135.38,938,-0.5 +2013,11,8,4,30,0,0,0,2.5,6.2,122.77,938,-0.4 +2013,11,8,5,30,0,0,0,2.5,6.1000000000000005,110.13,937,-0.2 +2013,11,8,6,30,0,0,0,2.8000000000000003,6.300000000000001,97.72,937,0 +2013,11,8,7,30,55,23,421,3.3000000000000003,7.1000000000000005,85.57000000000001,937,0.2 +2013,11,8,8,30,247,47,744,3.7,8.6,74.44,937,0.5 +2013,11,8,9,30,300,177,284,4.5,10.5,64.39,937,0.8 +2013,11,8,10,30,246,226,36,5.5,12.100000000000001,56.19,937,-0.4 +2013,11,8,11,30,326,284,66,5.9,13.200000000000001,50.78,936,-1.9000000000000001 +2013,11,8,12,30,335,295,62,6.2,13.8,49.1,935,-2.8000000000000003 +2013,11,8,13,30,174,172,4,6.300000000000001,14,51.54,934,-3.1 +2013,11,8,14,30,293,242,94,6.300000000000001,13.8,57.56,933,-2.8000000000000003 +2013,11,8,15,30,91,91,0,5.800000000000001,12.9,66.17,932,-1.7000000000000002 +2013,11,8,16,30,50,50,0,5,11.600000000000001,76.48,932,-0.1 +2013,11,8,17,30,7,7,0,4.5,10.8,87.7,932,1.3 +2013,11,8,18,30,0,0,0,4.5,9,100.04,932,2.3000000000000003 +2013,11,8,19,30,0,0,0,4.6000000000000005,8.4,112.52,932,3 +2013,11,8,20,30,0,0,0,4.6000000000000005,8,125.18,931,3.3000000000000003 +2013,11,8,21,30,0,0,0,4.7,7.7,137.78,931,3.4000000000000004 +2013,11,8,22,30,0,0,0,4.6000000000000005,7.5,149.89000000000001,931,3.3000000000000003 +2013,11,8,23,30,0,0,0,4.4,7.300000000000001,160.25,931,3.2 +2013,11,9,0,30,0,0,0,4.2,6.9,164.54,930,3.1 +2013,11,9,1,30,0,0,0,3.9000000000000004,6.5,158.65,930,3 +2013,11,9,2,30,0,0,0,3.6,6,147.79,929,3 +2013,11,9,3,30,0,0,0,3.4000000000000004,5.6000000000000005,135.54,929,2.9000000000000004 +2013,11,9,4,30,0,0,0,3.3000000000000003,5.2,122.92,929,3 +2013,11,9,5,30,0,0,0,3.2,4.9,110.29,929,3.1 +2013,11,9,6,30,0,0,0,3.3000000000000003,4.800000000000001,97.88,930,3.3000000000000003 +2013,11,9,7,30,51,24,369,3.7,5.7,85.74,930,3.5 +2013,11,9,8,30,242,52,719,4.1000000000000005,8.200000000000001,74.64,930,4.2 +2013,11,9,9,30,434,65,861,4.1000000000000005,11.5,64.62,931,5.7 +2013,11,9,10,30,584,71,928,3.8000000000000003,14.700000000000001,56.45,930,6.800000000000001 +2013,11,9,11,30,677,74,959,3.6,17.6,51.06,930,7.7 +2013,11,9,12,30,703,72,969,3.5,19.900000000000002,49.39,929,8.200000000000001 +2013,11,9,13,30,663,71,958,3.4000000000000004,21.400000000000002,51.800000000000004,929,8.4 +2013,11,9,14,30,558,67,922,3.3000000000000003,22.200000000000003,57.79,928,8 +2013,11,9,15,30,400,60,849,2.9000000000000004,22.1,66.37,928,7.6000000000000005 +2013,11,9,16,30,206,46,694,2,19.8,76.65,929,8 +2013,11,9,17,30,25,15,262,1.3,17.8,87.84,929,9.3 +2013,11,9,18,30,0,0,0,2.2,14.600000000000001,100.17,930,8.200000000000001 +2013,11,9,19,30,0,0,0,2.8000000000000003,14,112.64,930,8.6 +2013,11,9,20,30,0,0,0,3.1,13,125.29,931,9 +2013,11,9,21,30,0,0,0,2.8000000000000003,11.700000000000001,137.9,931,9.1 +2013,11,9,22,30,0,0,0,2.5,10.4,150.04,932,9.1 +2013,11,9,23,30,0,0,0,2.3000000000000003,9.4,160.47,932,8.9 +2013,11,10,0,30,0,0,0,2,8.5,164.82,932,8.5 +2013,11,10,1,30,0,0,0,1.8,7.7,158.87,933,7.7 +2013,11,10,2,30,0,0,0,1.6,7.2,147.96,933,7.2 +2013,11,10,3,30,0,0,0,1.4000000000000001,6.800000000000001,135.7,934,6.800000000000001 +2013,11,10,4,30,0,0,0,1.2000000000000002,6.6000000000000005,123.07000000000001,934,6.6000000000000005 +2013,11,10,5,30,0,0,0,1,6.5,110.45,935,6.5 +2013,11,10,6,30,0,0,0,1,6.6000000000000005,98.05,935,6.6000000000000005 +2013,11,10,7,30,46,25,298,1.4000000000000001,7.800000000000001,85.92,936,7.800000000000001 +2013,11,10,8,30,231,59,660,2,10.200000000000001,74.84,937,8.1 +2013,11,10,9,30,417,76,802,2.5,13,64.85,937,8.8 +2013,11,10,10,30,565,88,868,3.2,15.9,56.71,937,10 +2013,11,10,11,30,657,93,903,3.6,18.3,51.34,936,10.9 +2013,11,10,12,30,352,300,80,3.8000000000000003,20,49.67,936,11.200000000000001 +2013,11,10,13,30,334,283,83,3.9000000000000004,21,52.06,935,11.200000000000001 +2013,11,10,14,30,398,223,330,3.8000000000000003,21.400000000000002,58.02,934,11 +2013,11,10,15,30,384,77,774,3.4000000000000004,21.1,66.56,934,10.8 +2013,11,10,16,30,194,57,602,2.3000000000000003,19.1,76.81,934,10.600000000000001 +2013,11,10,17,30,22,16,156,1.5,17.400000000000002,87.97,934,11.100000000000001 +2013,11,10,18,30,0,0,0,1.8,14,100.29,935,10.600000000000001 +2013,11,10,19,30,0,0,0,2.3000000000000003,13.4,112.75,935,10.8 +2013,11,10,20,30,0,0,0,2.7,12.700000000000001,125.4,935,10.9 +2013,11,10,21,30,0,0,0,2.9000000000000004,11.8,138.01,936,11 +2013,11,10,22,30,0,0,0,2.9000000000000004,11,150.18,936,11 +2013,11,10,23,30,0,0,0,2.9000000000000004,10.5,160.67000000000002,936,10.5 +2013,11,11,0,30,0,0,0,3,10.200000000000001,165.1,935,10.200000000000001 +2013,11,11,1,30,0,0,0,3,10.100000000000001,159.1,935,10.100000000000001 +2013,11,11,2,30,0,0,0,2.8000000000000003,9.9,148.14000000000001,935,9.9 +2013,11,11,3,30,0,0,0,2.4000000000000004,9.600000000000001,135.85,935,9.600000000000001 +2013,11,11,4,30,0,0,0,2.2,9.4,123.22,935,9.4 +2013,11,11,5,30,0,0,0,2.1,9.1,110.60000000000001,935,9.1 +2013,11,11,6,30,0,0,0,2.1,8.9,98.21000000000001,935,8.9 +2013,11,11,7,30,44,25,266,2.2,9.5,86.10000000000001,936,9.200000000000001 +2013,11,11,8,30,48,48,0,2.5,11.700000000000001,75.04,936,9.5 +2013,11,11,9,30,163,156,18,2.9000000000000004,15.100000000000001,65.08,936,10.3 +2013,11,11,10,30,263,233,54,3.3000000000000003,18.5,56.96,936,11.5 +2013,11,11,11,30,488,271,349,3.2,20.700000000000003,51.61,935,11.5 +2013,11,11,12,30,526,273,393,3,22,49.94,934,10.8 +2013,11,11,13,30,648,80,928,2.8000000000000003,22.8,52.32,933,10.100000000000001 +2013,11,11,14,30,545,74,895,2.5,22.900000000000002,58.24,933,9.5 +2013,11,11,15,30,388,63,823,2.2,22.3,66.75,932,9.1 +2013,11,11,16,30,197,47,667,1.5,20,76.97,932,9.200000000000001 +2013,11,11,17,30,22,14,224,0.9,18.2,88.09,933,10.9 +2013,11,11,18,30,0,0,0,1.2000000000000002,14.700000000000001,100.41,933,9.8 +2013,11,11,19,30,0,0,0,1.2000000000000002,13.600000000000001,112.85000000000001,934,10.3 +2013,11,11,20,30,0,0,0,1.2000000000000002,12.8,125.5,935,10.8 +2013,11,11,21,30,0,0,0,1.2000000000000002,12.100000000000001,138.12,935,11.200000000000001 +2013,11,11,22,30,0,0,0,0.9,12,150.31,936,11.3 +2013,11,11,23,30,0,0,0,0.7000000000000001,11.9,160.87,937,11.4 +2013,11,12,0,30,0,0,0,1.7000000000000002,11.4,165.37,938,11.3 +2013,11,12,1,30,0,0,0,4.2,10.8,159.32,939,10.8 +2013,11,12,2,30,0,0,0,6.4,9.9,148.31,941,9.5 +2013,11,12,3,30,0,0,0,7.300000000000001,7.9,136.01,942,6.5 +2013,11,12,4,30,0,0,0,7.4,6,123.37,944,2.6 +2013,11,12,5,30,0,0,0,7.300000000000001,4.6000000000000005,110.76,945,-0.2 +2013,11,12,6,30,0,0,0,7.300000000000001,3.8000000000000003,98.38,946,-1.7000000000000002 +2013,11,12,7,30,40,26,226,7.4,3.2,86.27,948,-2.7 +2013,11,12,8,30,65,65,0,7.300000000000001,3,75.24,948,-4.1000000000000005 +2013,11,12,9,30,119,119,0,7.2,3.6,65.3,949,-5.5 +2013,11,12,10,30,110,110,0,7.1000000000000005,5,57.21,949,-6.6000000000000005 +2013,11,12,11,30,412,293,192,6.9,6.6000000000000005,51.88,948,-7.300000000000001 +2013,11,12,12,30,691,81,953,6.7,8,50.21,947,-7.7 +2013,11,12,13,30,655,75,955,6.6000000000000005,8.9,52.56,947,-7.800000000000001 +2013,11,12,14,30,555,66,933,6.300000000000001,9.1,58.45,946,-8.200000000000001 +2013,11,12,15,30,398,57,870,5.9,8.6,66.93,946,-9 +2013,11,12,16,30,203,41,726,5,7.300000000000001,77.11,947,-10.100000000000001 +2013,11,12,17,30,22,13,295,4.3,6.5,88.2,947,-10.8 +2013,11,12,18,30,0,0,0,2.2,3.4000000000000004,100.52,948,-9.9 +2013,11,12,19,30,0,0,0,2,2.5,112.95,948,-9.700000000000001 +2013,11,12,20,30,0,0,0,1.9000000000000001,1.6,125.60000000000001,948,-9.9 +2013,11,12,21,30,0,0,0,1.8,0.9,138.22,948,-10.200000000000001 +2013,11,12,22,30,0,0,0,1.7000000000000002,0.1,150.44,948,-10.5 +2013,11,12,23,30,0,0,0,1.7000000000000002,-0.7000000000000001,161.06,948,-10.8 +2013,11,13,0,30,0,0,0,1.6,-1.5,165.64000000000001,948,-11 +2013,11,13,1,30,0,0,0,1.5,-2.3000000000000003,159.54,948,-11.200000000000001 +2013,11,13,2,30,0,0,0,1.3,-3.1,148.48,948,-11.200000000000001 +2013,11,13,3,30,0,0,0,1.1,-3.8000000000000003,136.16,948,-11 +2013,11,13,4,30,0,0,0,0.9,-4.3,123.52,947,-10.9 +2013,11,13,5,30,0,0,0,0.8,-4.5,110.91,947,-10.9 +2013,11,13,6,30,0,0,0,0.7000000000000001,-4.4,98.55,947,-11.200000000000001 +2013,11,13,7,30,47,18,469,0.8,-3.1,86.44,947,-11.200000000000001 +2013,11,13,8,30,246,38,828,1.2000000000000002,-0.2,75.44,947,-11.4 +2013,11,13,9,30,441,47,951,1.5,2.8000000000000003,65.53,946,-13.3 +2013,11,13,10,30,595,52,1009,1.7000000000000002,5.5,57.46,946,-13.600000000000001 +2013,11,13,11,30,684,55,1025,1.9000000000000001,7.9,52.14,944,-13.600000000000001 +2013,11,13,12,30,714,59,1030,2.1,9.9,50.47,943,-13.600000000000001 +2013,11,13,13,30,674,58,1020,2.3000000000000003,11.200000000000001,52.81,942,-13.5 +2013,11,13,14,30,568,55,988,2.5,11.9,58.660000000000004,941,-13.3 +2013,11,13,15,30,408,50,918,2.6,11.600000000000001,67.1,940,-13.200000000000001 +2013,11,13,16,30,209,39,771,1.9000000000000001,9.3,77.26,939,-12.700000000000001 +2013,11,13,17,30,23,13,327,1.3,7.300000000000001,88.31,939,-6.800000000000001 +2013,11,13,18,30,0,0,0,1.8,3.8000000000000003,100.62,939,-7.300000000000001 +2013,11,13,19,30,0,0,0,2.1,3.3000000000000003,113.05,939,-7.800000000000001 +2013,11,13,20,30,0,0,0,2.5,2.8000000000000003,125.69,938,-7.800000000000001 +2013,11,13,21,30,0,0,0,2.9000000000000004,2.4000000000000004,138.32,938,-7.4 +2013,11,13,22,30,0,0,0,3.2,2,150.56,938,-6.800000000000001 +2013,11,13,23,30,0,0,0,3.3000000000000003,1.5,161.25,937,-6.2 +2013,11,14,0,30,0,0,0,3.4000000000000004,1.2000000000000002,165.9,936,-5.5 +2013,11,14,1,30,0,0,0,3.5,1.1,159.75,936,-4.9 +2013,11,14,2,30,0,0,0,3.5,1.2000000000000002,148.66,935,-4.3 +2013,11,14,3,30,0,0,0,3.4000000000000004,1.3,136.32,934,-3.8000000000000003 +2013,11,14,4,30,0,0,0,3.3000000000000003,1.4000000000000001,123.67,934,-3.4000000000000004 +2013,11,14,5,30,0,0,0,3.2,1.5,111.07000000000001,933,-3.2 +2013,11,14,6,30,0,0,0,3.3000000000000003,1.6,98.71000000000001,933,-3 +2013,11,14,7,30,19,19,0,3.5,2.2,86.62,933,-2.9000000000000004 +2013,11,14,8,30,132,97,141,3.9000000000000004,3.7,75.64,933,-2.9000000000000004 +2013,11,14,9,30,177,162,35,4.5,5.9,65.75,932,-3.2 +2013,11,14,10,30,229,212,31,5,8.200000000000001,57.7,932,-2.6 +2013,11,14,11,30,293,263,49,5.4,11,52.4,930,-1 +2013,11,14,12,30,259,244,24,5.6000000000000005,13.4,50.730000000000004,929,0.5 +2013,11,14,13,30,441,276,275,5.6000000000000005,14.4,53.04,928,1.9000000000000001 +2013,11,14,14,30,521,86,840,5.4,14.4,58.86,927,2.8000000000000003 +2013,11,14,15,30,369,74,762,5.2,14,67.27,927,3.2 +2013,11,14,16,30,61,61,0,4.6000000000000005,12.9,77.4,927,3.4000000000000004 +2013,11,14,17,30,17,14,134,4.1000000000000005,12.100000000000001,88.43,927,3.7 +2013,11,14,18,30,0,0,0,4,9.600000000000001,100.72,927,3.7 +2013,11,14,19,30,0,0,0,4.3,9,113.14,927,3.9000000000000004 +2013,11,14,20,30,0,0,0,4.5,8.4,125.77,926,4.1000000000000005 +2013,11,14,21,30,0,0,0,4.6000000000000005,7.7,138.41,926,4.3 +2013,11,14,22,30,0,0,0,4.5,6.9,150.67000000000002,926,4.4 +2013,11,14,23,30,0,0,0,4.3,6.2,161.42000000000002,926,4.3 +2013,11,15,0,30,0,0,0,4.1000000000000005,5.6000000000000005,166.16,926,4.3 +2013,11,15,1,30,0,0,0,3.9000000000000004,5.1000000000000005,159.97,926,4.4 +2013,11,15,2,30,0,0,0,3.6,4.6000000000000005,148.83,926,4.3 +2013,11,15,3,30,0,0,0,3.2,4.2,136.47,925,4.2 +2013,11,15,4,30,0,0,0,3,3.9000000000000004,123.83,925,3.9000000000000004 +2013,11,15,5,30,0,0,0,2.8000000000000003,3.6,111.22,926,3.6 +2013,11,15,6,30,0,0,0,2.8000000000000003,3.6,98.88,926,3.6 +2013,11,15,7,30,39,19,345,3.2,4.9,86.79,926,4.1000000000000005 +2013,11,15,8,30,226,46,737,3.1,7.800000000000001,75.84,927,4.1000000000000005 +2013,11,15,9,30,416,57,882,2.4000000000000004,11.8,65.97,927,4.3 +2013,11,15,10,30,566,63,949,2,16,57.94,927,4.9 +2013,11,15,11,30,660,66,980,2.3000000000000003,19.700000000000003,52.660000000000004,925,5.1000000000000005 +2013,11,15,12,30,686,67,984,3.3000000000000003,22.700000000000003,50.99,924,4.4 +2013,11,15,13,30,574,141,725,4,24.3,53.27,923,3.5 +2013,11,15,14,30,537,65,919,4.4,24.6,59.06,922,3.5 +2013,11,15,15,30,378,59,833,4,23.8,67.44,921,3.9000000000000004 +2013,11,15,16,30,187,44,660,3.2,21.1,77.53,921,5.4 +2013,11,15,17,30,17,12,190,2.9000000000000004,19.1,88.54,921,6.5 +2013,11,15,18,30,0,0,0,4.5,17.8,100.81,922,6.6000000000000005 +2013,11,15,19,30,0,0,0,5.1000000000000005,17.3,113.22,922,7.4 +2013,11,15,20,30,0,0,0,5.2,16.7,125.85000000000001,922,8.3 +2013,11,15,21,30,0,0,0,5.2,15.9,138.49,922,8.700000000000001 +2013,11,15,22,30,0,0,0,5,14.700000000000001,150.77,922,8.9 +2013,11,15,23,30,0,0,0,4.9,13.8,161.59,922,8.9 +2013,11,16,0,30,0,0,0,4.800000000000001,13.100000000000001,166.42000000000002,921,8.9 +2013,11,16,1,30,0,0,0,4.7,12.8,160.18,921,9 +2013,11,16,2,30,0,0,0,4.6000000000000005,12.600000000000001,149,921,9.1 +2013,11,16,3,30,0,0,0,4.2,12.5,136.62,921,9.200000000000001 +2013,11,16,4,30,0,0,0,3.8000000000000003,12.3,123.98,921,9.4 +2013,11,16,5,30,0,0,0,3.6,12.200000000000001,111.38,921,9.600000000000001 +2013,11,16,6,30,0,0,0,3.6,11.9,99.04,921,9.8 +2013,11,16,7,30,33,19,274,4.3,12.4,86.97,921,9.9 +2013,11,16,8,30,209,46,677,5.300000000000001,14.5,76.04,922,10.200000000000001 +2013,11,16,9,30,390,58,824,6.1000000000000005,17.6,66.19,921,10.600000000000001 +2013,11,16,10,30,417,211,391,6.5,20.700000000000003,58.18,921,11.100000000000001 +2013,11,16,11,30,483,256,376,6.6000000000000005,23.400000000000002,52.910000000000004,921,11.600000000000001 +2013,11,16,12,30,655,71,932,6.7,25.3,51.230000000000004,919,11.700000000000001 +2013,11,16,13,30,527,193,563,6.7,26.200000000000003,53.5,918,11.4 +2013,11,16,14,30,471,121,684,6.6000000000000005,26.400000000000002,59.25,918,11.100000000000001 +2013,11,16,15,30,364,61,797,6,26,67.6,917,10.9 +2013,11,16,16,30,180,45,631,4.9,24.200000000000003,77.66,917,10.8 +2013,11,16,17,30,16,12,168,4.3,22.8,88.64,917,11.200000000000001 +2013,11,16,18,30,0,0,0,4.800000000000001,19.8,100.9,918,11.4 +2013,11,16,19,30,0,0,0,5.1000000000000005,18.7,113.29,918,11.9 +2013,11,16,20,30,0,0,0,5.300000000000001,17.7,125.92,918,12.5 +2013,11,16,21,30,0,0,0,5.7,17.1,138.56,919,13.100000000000001 +2013,11,16,22,30,0,0,0,5.800000000000001,16.6,150.87,919,13.5 +2013,11,16,23,30,0,0,0,5.4,16.1,161.75,919,13.8 +2013,11,17,0,30,0,0,0,4.800000000000001,15.5,166.67000000000002,920,13.9 +2013,11,17,1,30,0,0,0,4.5,14.9,160.39000000000001,920,13.9 +2013,11,17,2,30,0,0,0,4.7,14.600000000000001,149.16,921,13.700000000000001 +2013,11,17,3,30,0,0,0,4.7,14.3,136.78,921,13.100000000000001 +2013,11,17,4,30,0,0,0,4.3,13.8,124.13000000000001,921,12.3 +2013,11,17,5,30,0,0,0,3.9000000000000004,13.200000000000001,111.54,922,11.100000000000001 +2013,11,17,6,30,0,0,0,3.7,12.600000000000001,99.21000000000001,923,10 +2013,11,17,7,30,35,17,356,4,13.5,87.14,924,9.1 +2013,11,17,8,30,222,41,757,4.3,16.2,76.24,924,8.5 +2013,11,17,9,30,411,53,894,4.800000000000001,19.700000000000003,66.41,925,8.3 +2013,11,17,10,30,561,59,958,5.7,22.900000000000002,58.42,925,6 +2013,11,17,11,30,656,64,987,5.800000000000001,24.6,53.160000000000004,925,3.2 +2013,11,17,12,30,685,65,995,5.6000000000000005,25.6,51.47,924,1.5 +2013,11,17,13,30,646,64,983,5.300000000000001,26,53.72,923,0.30000000000000004 +2013,11,17,14,30,543,60,949,4.800000000000001,26,59.44,923,-0.5 +2013,11,17,15,30,385,53,878,3.5,24.8,67.75,923,-0.8 +2013,11,17,16,30,193,41,718,1.9000000000000001,21.6,77.78,924,2.7 +2013,11,17,17,30,17,12,235,1.3,19.200000000000003,88.73,924,5.4 +2013,11,17,18,30,0,0,0,1.2000000000000002,17.3,100.99000000000001,925,4.2 +2013,11,17,19,30,0,0,0,1.2000000000000002,16.8,113.36,926,4 +2013,11,17,20,30,0,0,0,1.2000000000000002,15.9,125.98,927,3.8000000000000003 +2013,11,17,21,30,0,0,0,1.4000000000000001,14.4,138.63,927,3.7 +2013,11,17,22,30,0,0,0,1.6,12.8,150.96,928,3.6 +2013,11,17,23,30,0,0,0,2,11.4,161.9,929,3.7 +2013,11,18,0,30,0,0,0,2.6,10.5,166.91,929,3.6 +2013,11,18,1,30,0,0,0,3.3000000000000003,9.8,160.59,930,3.6 +2013,11,18,2,30,0,0,0,3.5,9.200000000000001,149.33,930,3.5 +2013,11,18,3,30,0,0,0,3.3000000000000003,8.9,136.93,931,3.1 +2013,11,18,4,30,0,0,0,2.9000000000000004,8.700000000000001,124.28,931,2.3000000000000003 +2013,11,18,5,30,0,0,0,2.5,8.5,111.69,932,1.2000000000000002 +2013,11,18,6,30,0,0,0,2.5,8.3,99.37,933,0.4 +2013,11,18,7,30,18,18,0,2.8000000000000003,8.6,87.31,933,-0.2 +2013,11,18,8,30,103,90,55,3.1,9.700000000000001,76.43,934,-0.6000000000000001 +2013,11,18,9,30,272,160,281,3.3000000000000003,11.5,66.62,934,-1.1 +2013,11,18,10,30,339,238,195,3.3000000000000003,13.4,58.65,934,-1.9000000000000001 +2013,11,18,11,30,369,283,143,3,15,53.4,934,-2.1 +2013,11,18,12,30,492,269,359,2.5,16.2,51.71,933,-1.7000000000000002 +2013,11,18,13,30,623,70,940,2.3000000000000003,16.7,53.93,932,-1.1 +2013,11,18,14,30,521,65,902,2.2,16.8,59.620000000000005,931,-0.5 +2013,11,18,15,30,254,151,274,2.1,16.5,67.89,931,0.1 +2013,11,18,16,30,111,80,150,1.7000000000000002,14.9,77.9,932,1.8 +2013,11,18,17,30,5,5,0,1.5,13.700000000000001,88.81,932,3.2 +2013,11,18,18,30,0,0,0,1.9000000000000001,12.200000000000001,101.06,932,2.4000000000000004 +2013,11,18,19,30,0,0,0,2,11.8,113.43,932,2.2 +2013,11,18,20,30,0,0,0,2,11.4,126.04,932,2.5 +2013,11,18,21,30,0,0,0,2.2,11.100000000000001,138.70000000000002,932,3 +2013,11,18,22,30,0,0,0,2.4000000000000004,10.600000000000001,151.04,932,3.6 +2013,11,18,23,30,0,0,0,2.2,9.9,162.04,931,4.2 +2013,11,19,0,30,0,0,0,1.7000000000000002,9.200000000000001,167.14000000000001,931,4.7 +2013,11,19,1,30,0,0,0,1.4000000000000001,8.700000000000001,160.79,931,5.1000000000000005 +2013,11,19,2,30,0,0,0,1.2000000000000002,8.3,149.49,931,5.5 +2013,11,19,3,30,0,0,0,1.2000000000000002,7.800000000000001,137.08,931,5.800000000000001 +2013,11,19,4,30,0,0,0,1.4000000000000001,7.300000000000001,124.43,931,6.2 +2013,11,19,5,30,0,0,0,1.8,7.2,111.85000000000001,931,6.6000000000000005 +2013,11,19,6,30,0,0,0,2.3000000000000003,7.4,99.54,931,7 +2013,11,19,7,30,27,18,211,3.1,8.700000000000001,87.48,931,7.1000000000000005 +2013,11,19,8,30,197,55,617,4.2,11.3,76.62,931,7 +2013,11,19,9,30,283,151,335,5,14.200000000000001,66.83,931,5.9 +2013,11,19,10,30,411,202,404,5.2,16.8,58.88,931,5.4 +2013,11,19,11,30,616,88,890,5.1000000000000005,19.1,53.63,929,7 +2013,11,19,12,30,648,81,920,5,20.700000000000003,51.94,928,8.6 +2013,11,19,13,30,609,79,904,4.9,21.6,54.14,927,9.200000000000001 +2013,11,19,14,30,509,75,862,4.9,22,59.79,926,9.5 +2013,11,19,15,30,358,64,787,4.9,21.6,68.03,925,9.700000000000001 +2013,11,19,16,30,174,48,610,4.4,20.200000000000003,78.01,925,9.9 +2013,11,19,17,30,14,11,130,3.9000000000000004,19.1,88.89,925,10.200000000000001 +2013,11,19,18,30,0,0,0,4.7,16.900000000000002,101.13,925,10.200000000000001 +2013,11,19,19,30,0,0,0,5.300000000000001,16,113.49000000000001,925,10.4 +2013,11,19,20,30,0,0,0,5.4,15.100000000000001,126.10000000000001,925,10.8 +2013,11,19,21,30,0,0,0,5.1000000000000005,14.100000000000001,138.75,925,11.4 +2013,11,19,22,30,0,0,0,4.800000000000001,13.200000000000001,151.12,925,11.9 +2013,11,19,23,30,0,0,0,4.6000000000000005,12.600000000000001,162.18,925,12.200000000000001 +2013,11,20,0,30,0,0,0,4.5,12.200000000000001,167.38,925,12.200000000000001 +2013,11,20,1,30,0,0,0,4.4,11.9,160.99,925,11.9 +2013,11,20,2,30,0,0,0,4.3,11.8,149.66,925,11.8 +2013,11,20,3,30,0,0,0,4.2,11.8,137.23,924,11.8 +2013,11,20,4,30,0,0,0,4.1000000000000005,11.8,124.58,924,11.8 +2013,11,20,5,30,0,0,0,4.1000000000000005,11.8,112,924,11.8 +2013,11,20,6,30,0,0,0,4.2,11.9,99.7,925,11.9 +2013,11,20,7,30,8,8,0,4.5,12.600000000000001,87.65,925,12.5 +2013,11,20,8,30,95,86,38,5.5,14.4,76.82000000000001,925,12.8 +2013,11,20,9,30,249,164,218,6.4,17.1,67.04,925,13.4 +2013,11,20,10,30,368,225,279,6.5,20,59.1,925,13.8 +2013,11,20,11,30,501,222,472,6.300000000000001,22.3,53.870000000000005,924,13.9 +2013,11,20,12,30,640,78,916,6.2,24,52.160000000000004,923,13.700000000000001 +2013,11,20,13,30,599,79,893,6,24.700000000000003,54.34,922,13.3 +2013,11,20,14,30,498,77,841,5.5,24.400000000000002,59.96,922,13.100000000000001 +2013,11,20,15,30,269,139,347,4.7,23.3,68.16,921,13.100000000000001 +2013,11,20,16,30,140,65,368,3.6,21.6,78.12,922,13.3 +2013,11,20,17,30,4,4,0,3,20.5,88.97,922,13.600000000000001 +2013,11,20,18,30,0,0,0,3.3000000000000003,18.2,101.2,923,13.700000000000001 +2013,11,20,19,30,0,0,0,3.9000000000000004,17.5,113.54,924,13.9 +2013,11,20,20,30,0,0,0,4.1000000000000005,16.7,126.14,924,14.200000000000001 +2013,11,20,21,30,0,0,0,4.1000000000000005,15.8,138.8,924,14.5 +2013,11,20,22,30,0,0,0,3.9000000000000004,15,151.19,925,14.9 +2013,11,20,23,30,0,0,0,3.7,14.600000000000001,162.3,925,14.600000000000001 +2013,11,21,0,30,0,0,0,3.4000000000000004,14.5,167.6,925,14.5 +2013,11,21,1,30,0,0,0,3,14.4,161.19,925,14.4 +2013,11,21,2,30,0,0,0,2.7,14.200000000000001,149.82,925,14.200000000000001 +2013,11,21,3,30,0,0,0,2.4000000000000004,14.200000000000001,137.38,925,14.200000000000001 +2013,11,21,4,30,0,0,0,2.3000000000000003,14.3,124.73,925,14.3 +2013,11,21,5,30,0,0,0,2.3000000000000003,14.5,112.16,925,14.5 +2013,11,21,6,30,0,0,0,2,14.600000000000001,99.87,926,14.600000000000001 +2013,11,21,7,30,14,14,0,2.1,15.200000000000001,87.82000000000001,927,15.200000000000001 +2013,11,21,8,30,138,81,252,2.7,16.6,77.01,927,15.8 +2013,11,21,9,30,258,158,257,3.6,18.900000000000002,67.25,928,16.400000000000002 +2013,11,21,10,30,352,228,243,4.4,21.5,59.33,928,17 +2013,11,21,11,30,328,272,95,4.3,23.5,54.09,927,16.6 +2013,11,21,12,30,484,265,359,3.7,24.6,52.38,927,16 +2013,11,21,13,30,422,265,271,3,25.3,54.53,926,15.4 +2013,11,21,14,30,194,185,19,2.2,25.400000000000002,60.120000000000005,926,14.8 +2013,11,21,15,30,342,72,730,1.1,24.700000000000003,68.29,926,14.3 +2013,11,21,16,30,163,52,541,1,22.900000000000002,78.21000000000001,927,14.200000000000001 +2013,11,21,17,30,0,0,0,1.4000000000000001,21.5,89.04,927,15.100000000000001 +2013,11,21,18,30,0,0,0,4.9,17.900000000000002,101.26,929,13.700000000000001 +2013,11,21,19,30,0,0,0,7.300000000000001,14.3,113.59,932,12.200000000000001 +2013,11,21,20,30,0,0,0,8.1,9.600000000000001,126.19,934,8.700000000000001 +2013,11,21,21,30,0,0,0,7.7,5.6000000000000005,138.85,935,3.4000000000000004 +2013,11,21,22,30,0,0,0,7.2,3.6,151.25,936,-0.9 +2013,11,21,23,30,0,0,0,7,2.6,162.42000000000002,936,-2.8000000000000003 +2013,11,22,0,30,0,0,0,7,1.7000000000000002,167.82,937,-3.7 +2013,11,22,1,30,0,0,0,7.1000000000000005,0.7000000000000001,161.38,937,-4.7 +2013,11,22,2,30,0,0,0,7.2,-0.2,149.98,938,-5.6000000000000005 +2013,11,22,3,30,0,0,0,7.2,-1,137.53,939,-6.2 +2013,11,22,4,30,0,0,0,7.1000000000000005,-1.6,124.88000000000001,939,-6.4 +2013,11,22,5,30,0,0,0,7.2,-2.2,112.31,940,-6.800000000000001 +2013,11,22,6,30,0,0,0,7.300000000000001,-2.7,100.03,941,-7.2 +2013,11,22,7,30,6,6,0,7.300000000000001,-2.9000000000000004,87.96000000000001,942,-7.5 +2013,11,22,8,30,186,54,598,7.1000000000000005,-2.6,77.19,943,-7.6000000000000005 +2013,11,22,9,30,366,71,769,6.800000000000001,-1.8,67.45,943,-7.4 +2013,11,22,10,30,512,81,850,6.6000000000000005,-0.9,59.54,943,-6.9 +2013,11,22,11,30,26,26,0,6.4,0,54.31,943,-6.1000000000000005 +2013,11,22,12,30,120,120,0,6.4,0.7000000000000001,52.59,942,-5.4 +2013,11,22,13,30,195,190,9,6.4,1.2000000000000002,54.71,941,-4.9 +2013,11,22,14,30,186,179,15,6.300000000000001,1.4000000000000001,60.27,941,-4.4 +2013,11,22,15,30,52,52,0,6.1000000000000005,1.3,68.41,941,-4.2 +2013,11,22,16,30,29,29,0,5.7,0.5,78.3,941,-4 +2013,11,22,17,30,0,0,0,5.4,-0.1,89.07000000000001,941,-4.2 +2013,11,22,18,30,0,0,0,4.9,-1.4000000000000001,101.31,942,-4.4 +2013,11,22,19,30,0,0,0,4.9,-1.8,113.63,942,-4.6000000000000005 +2013,11,22,20,30,0,0,0,4.800000000000001,-2,126.22,942,-4.7 +2013,11,22,21,30,0,0,0,4.800000000000001,-2.1,138.88,942,-4.9 +2013,11,22,22,30,0,0,0,4.9,-2.1,151.3,942,-5 +2013,11,22,23,30,0,0,0,5,-2.1,162.53,942,-5.2 +2013,11,23,0,30,0,0,0,5.1000000000000005,-2.1,168.03,942,-5.4 +2013,11,23,1,30,0,0,0,5.2,-2,161.57,942,-5.6000000000000005 +2013,11,23,2,30,0,0,0,5.300000000000001,-2,150.14000000000001,942,-5.800000000000001 +2013,11,23,3,30,0,0,0,5.4,-2,137.68,942,-6.1000000000000005 +2013,11,23,4,30,0,0,0,5.5,-2,125.03,942,-6.4 +2013,11,23,5,30,0,0,0,5.6000000000000005,-1.9000000000000001,112.46000000000001,942,-6.7 +2013,11,23,6,30,0,0,0,5.5,-1.9000000000000001,100.19,943,-6.9 +2013,11,23,7,30,21,15,160,5.5,-1.5,88.12,944,-6.800000000000001 +2013,11,23,8,30,15,15,0,5.7,-0.9,77.38,944,-6.4 +2013,11,23,9,30,62,62,0,5.9,-0.1,67.65,944,-5.7 +2013,11,23,10,30,37,37,0,6,0.7000000000000001,59.75,944,-4.9 +2013,11,23,11,30,88,88,0,6,1.5,54.53,943,-4.5 +2013,11,23,12,30,204,198,9,5.9,2,52.800000000000004,943,-4.5 +2013,11,23,13,30,216,207,16,5.5,2.3000000000000003,54.89,942,-4.7 +2013,11,23,14,30,240,211,59,5.1000000000000005,2.1,60.410000000000004,942,-5 +2013,11,23,15,30,158,144,37,5,1.5,68.52,942,-4.9 +2013,11,23,16,30,84,75,43,4.6000000000000005,0.9,78.38,942,-4.7 +2013,11,23,17,30,0,0,0,4.3,0.6000000000000001,89.12,943,-4.7 +2013,11,23,18,30,0,0,0,3.9000000000000004,0.1,101.36,943,-4.7 +2013,11,23,19,30,0,0,0,4,-0.1,113.67,943,-4.9 +2013,11,23,20,30,0,0,0,4.1000000000000005,-0.2,126.25,943,-5 +2013,11,23,21,30,0,0,0,4.3,-0.4,138.91,944,-5.1000000000000005 +2013,11,23,22,30,0,0,0,4.6000000000000005,-0.7000000000000001,151.35,944,-5.4 +2013,11,23,23,30,0,0,0,4.800000000000001,-1.1,162.63,944,-6 +2013,11,24,0,30,0,0,0,4.800000000000001,-1.4000000000000001,168.24,943,-6.4 +2013,11,24,1,30,0,0,0,4.5,-1.7000000000000002,161.76,944,-6.5 +2013,11,24,2,30,0,0,0,4,-1.9000000000000001,150.3,944,-6.300000000000001 +2013,11,24,3,30,0,0,0,3.8000000000000003,-2,137.83,944,-6.2 +2013,11,24,4,30,0,0,0,3.8000000000000003,-2.1,125.17,944,-5.9 +2013,11,24,5,30,0,0,0,3.8000000000000003,-2.3000000000000003,112.62,944,-5.7 +2013,11,24,6,30,0,0,0,3.8000000000000003,-2.5,100.35000000000001,944,-5.6000000000000005 +2013,11,24,7,30,7,7,0,4,-2.6,88.28,944,-5.4 +2013,11,24,8,30,7,7,0,4.2,-2.4000000000000004,77.56,943,-5.4 +2013,11,24,9,30,132,131,4,4.2,-1.7000000000000002,67.85,943,-5.6000000000000005 +2013,11,24,10,30,146,146,0,3.8000000000000003,-0.7000000000000001,59.96,942,-5.4 +2013,11,24,11,30,264,240,40,3.2,0.2,54.74,942,-5 +2013,11,24,12,30,355,285,118,2.5,0.8,53,940,-4.5 +2013,11,24,13,30,319,264,97,2,1.2000000000000002,55.07,939,-4 +2013,11,24,14,30,279,222,116,1.7000000000000002,1.3,60.550000000000004,938,-3.7 +2013,11,24,15,30,361,74,789,1.6,1.1,68.63,938,-3.5 +2013,11,24,16,30,173,51,608,1.5,0.5,78.46000000000001,938,-3.4000000000000004 +2013,11,24,17,30,0,0,0,1.4000000000000001,0,89.18,938,-3.5 +2013,11,24,18,30,0,0,0,1.5,-1,101.4,938,-3.7 +2013,11,24,19,30,0,0,0,1.5,-1.3,113.7,938,-3.7 +2013,11,24,20,30,0,0,0,1.6,-1.7000000000000002,126.27,937,-3.7 +2013,11,24,21,30,0,0,0,1.6,-2,138.94,937,-3.7 +2013,11,24,22,30,0,0,0,1.6,-2.2,151.39000000000001,936,-3.7 +2013,11,24,23,30,0,0,0,1.6,-2.2,162.72,936,-3.7 +2013,11,25,0,30,0,0,0,1.5,-2.2,168.44,935,-3.7 +2013,11,25,1,30,0,0,0,1.5,-2.3000000000000003,161.95000000000002,934,-3.6 +2013,11,25,2,30,0,0,0,1.6,-2.5,150.46,934,-3.7 +2013,11,25,3,30,0,0,0,1.6,-2.6,137.98,933,-3.7 +2013,11,25,4,30,0,0,0,1.4000000000000001,-2.7,125.32000000000001,933,-3.7 +2013,11,25,5,30,0,0,0,1.3,-2.7,112.77,932,-3.7 +2013,11,25,6,30,0,0,0,1.4000000000000001,-2.8000000000000003,100.51,932,-3.7 +2013,11,25,7,30,4,4,0,1.9000000000000001,-2.3000000000000003,88.44,933,-3.9000000000000004 +2013,11,25,8,30,111,82,140,2.4000000000000004,-1.3,77.74,933,-3.6 +2013,11,25,9,30,122,122,0,2.4000000000000004,-0.30000000000000004,68.04,933,-3.3000000000000003 +2013,11,25,10,30,95,95,0,2.2,0.6000000000000001,60.17,933,-2.9000000000000004 +2013,11,25,11,30,102,102,0,2,1.7000000000000002,54.95,932,-2.4000000000000004 +2013,11,25,12,30,140,140,0,1.9000000000000001,2.9000000000000004,53.19,931,-2 +2013,11,25,13,30,126,126,0,1.9000000000000001,4.1000000000000005,55.230000000000004,930,-1.8 +2013,11,25,14,30,86,86,0,1.7000000000000002,4.800000000000001,60.69,930,-1.6 +2013,11,25,15,30,60,60,0,1.5,5,68.73,930,-1.4000000000000001 +2013,11,25,16,30,176,43,673,1.1,3.8000000000000003,78.54,930,-1.3 +2013,11,25,17,30,0,0,0,0.8,2.7,89.23,930,-0.7000000000000001 +2013,11,25,18,30,0,0,0,1.4000000000000001,-0.1,101.44,931,-2 +2013,11,25,19,30,0,0,0,2,-0.7000000000000001,113.72,932,-2.2 +2013,11,25,20,30,0,0,0,2.5,-1.2000000000000002,126.29,933,-2.1 +2013,11,25,21,30,0,0,0,2.8000000000000003,-1.6,138.96,933,-2.2 +2013,11,25,22,30,0,0,0,2.8000000000000003,-2,151.42000000000002,934,-2.3000000000000003 +2013,11,25,23,30,0,0,0,2.8000000000000003,-2.5,162.8,934,-2.6 +2013,11,26,0,30,0,0,0,2.9000000000000004,-3,168.64000000000001,934,-3 +2013,11,26,1,30,0,0,0,3.2,-3.3000000000000003,162.13,934,-3.4000000000000004 +2013,11,26,2,30,0,0,0,3.5,-3.3000000000000003,150.62,934,-3.6 +2013,11,26,3,30,0,0,0,3.6,-3.2,138.13,934,-3.5 +2013,11,26,4,30,0,0,0,3.3000000000000003,-3.2,125.47,934,-3.5 +2013,11,26,5,30,0,0,0,2.9000000000000004,-3.5,112.92,934,-3.7 +2013,11,26,6,30,0,0,0,2.7,-3.8000000000000003,100.67,935,-4.1000000000000005 +2013,11,26,7,30,3,3,0,3.4000000000000004,-3.1,88.59,936,-4.5 +2013,11,26,8,30,191,42,708,4.4,-0.8,77.92,937,-4 +2013,11,26,9,30,378,54,873,5.300000000000001,1.8,68.23,937,-3.3000000000000003 +2013,11,26,10,30,529,60,948,5.9,4,60.370000000000005,937,-3.2 +2013,11,26,11,30,624,62,983,6.300000000000001,5.800000000000001,55.15,937,-3.5 +2013,11,26,12,30,655,61,996,6.6000000000000005,7.2,53.38,936,-4.5 +2013,11,26,13,30,619,60,985,6.800000000000001,8.200000000000001,55.39,936,-5.4 +2013,11,26,14,30,520,56,951,6.7,8.4,60.81,936,-5.800000000000001 +2013,11,26,15,30,367,49,879,6.2,8,68.82000000000001,936,-5.800000000000001 +2013,11,26,16,30,178,36,718,4.7,6.2,78.61,937,-5.6000000000000005 +2013,11,26,17,30,0,0,0,3.5,4.7,89.27,937,-4.5 +2013,11,26,18,30,0,0,0,2.4000000000000004,1.6,101.47,938,-4.3 +2013,11,26,19,30,0,0,0,2.5,0.9,113.74000000000001,939,-4.5 +2013,11,26,20,30,0,0,0,2.8000000000000003,0.4,126.3,939,-4.800000000000001 +2013,11,26,21,30,0,0,0,3.1,0.1,138.97,940,-5.1000000000000005 +2013,11,26,22,30,0,0,0,3.2,-0.4,151.45000000000002,940,-5.300000000000001 +2013,11,26,23,30,0,0,0,3.2,-1.1,162.88,940,-5.6000000000000005 +2013,11,27,0,30,0,0,0,3,-1.9000000000000001,168.82,940,-5.800000000000001 +2013,11,27,1,30,0,0,0,2.8000000000000003,-2.7,162.31,940,-6.1000000000000005 +2013,11,27,2,30,0,0,0,2.4000000000000004,-3.5,150.77,940,-6.4 +2013,11,27,3,30,0,0,0,2.1,-4.4,138.28,940,-6.7 +2013,11,27,4,30,0,0,0,1.8,-5.300000000000001,125.62,941,-7 +2013,11,27,5,30,0,0,0,1.5,-6,113.07000000000001,941,-7.300000000000001 +2013,11,27,6,30,0,0,0,1.3,-6.4,100.83,941,-7.6000000000000005 +2013,11,27,7,30,18,12,312,1.6,-4.9,88.74,942,-7.800000000000001 +2013,11,27,8,30,197,37,777,2,-1.7000000000000002,78.10000000000001,942,-7.5 +2013,11,27,9,30,389,48,927,1.9000000000000001,1,68.42,941,-9.200000000000001 +2013,11,27,10,30,542,54,994,1.6,3.1,60.56,941,-9.700000000000001 +2013,11,27,11,30,640,57,1025,1,4.800000000000001,55.34,940,-9.5 +2013,11,27,12,30,666,59,1022,0.6000000000000001,6.4,53.56,939,-9 +2013,11,27,13,30,631,58,1012,0.7000000000000001,7.5,55.550000000000004,938,-8.1 +2013,11,27,14,30,531,56,977,0.9,8,60.93,937,-7.300000000000001 +2013,11,27,15,30,376,55,891,0.9,7.7,68.91,936,-6.800000000000001 +2013,11,27,16,30,183,41,724,0.9,5.9,78.67,936,-5.7 +2013,11,27,17,30,0,0,0,0.9,4.5,89.31,936,-3.4000000000000004 +2013,11,27,18,30,0,0,0,1.3,2.4000000000000004,101.49000000000001,937,-4.2 +2013,11,27,19,30,0,0,0,1.5,2,113.75,937,-4.5 +2013,11,27,20,30,0,0,0,1.8,1.8,126.31,937,-5 +2013,11,27,21,30,0,0,0,2.1,1.7000000000000002,138.97,936,-5.6000000000000005 +2013,11,27,22,30,0,0,0,2.5,1.6,151.46,936,-6.1000000000000005 +2013,11,27,23,30,0,0,0,2.7,1.4000000000000001,162.94,936,-6.4 +2013,11,28,0,30,0,0,0,2.8000000000000003,1.2000000000000002,169,936,-6.4 +2013,11,28,1,30,0,0,0,2.8000000000000003,0.9,162.49,936,-6.2 +2013,11,28,2,30,0,0,0,2.7,0.7000000000000001,150.92000000000002,936,-5.9 +2013,11,28,3,30,0,0,0,2.3000000000000003,0.30000000000000004,138.42000000000002,936,-5.6000000000000005 +2013,11,28,4,30,0,0,0,2,-0.30000000000000004,125.76,936,-5.2 +2013,11,28,5,30,0,0,0,1.8,-1.2000000000000002,113.22,936,-5.2 +2013,11,28,6,30,0,0,0,1.7000000000000002,-2,100.99000000000001,937,-5.300000000000001 +2013,11,28,7,30,16,11,227,2.4000000000000004,-1,88.89,937,-5.300000000000001 +2013,11,28,8,30,123,72,253,3,1.6,78.28,937,-4.6000000000000005 +2013,11,28,9,30,372,55,870,3.4000000000000004,4.800000000000001,68.61,937,-3.9000000000000004 +2013,11,28,10,30,523,62,943,3.8000000000000003,8.200000000000001,60.76,937,-3.9000000000000004 +2013,11,28,11,30,619,66,976,3.6,10.700000000000001,55.53,937,-3.6 +2013,11,28,12,30,646,59,992,3.4000000000000004,12.200000000000001,53.730000000000004,936,-3.2 +2013,11,28,13,30,612,60,979,3.2,13.100000000000001,55.69,936,-2.9000000000000004 +2013,11,28,14,30,514,58,943,2.8000000000000003,13.3,61.050000000000004,936,-2.6 +2013,11,28,15,30,362,49,872,2.2,12.700000000000001,68.99,935,-2.3000000000000003 +2013,11,28,16,30,175,37,709,1.5,9.8,78.72,936,-0.9 +2013,11,28,17,30,0,0,0,1.2000000000000002,7.6000000000000005,89.34,936,0.4 +2013,11,28,18,30,0,0,0,1.7000000000000002,4.800000000000001,101.51,937,-1.1 +2013,11,28,19,30,0,0,0,2,4.1000000000000005,113.76,938,-1.5 +2013,11,28,20,30,0,0,0,2.1,3.4000000000000004,126.31,938,-1.8 +2013,11,28,21,30,0,0,0,2.2,2.5,138.97,938,-2 +2013,11,28,22,30,0,0,0,2.2,1.7000000000000002,151.48,939,-2 +2013,11,28,23,30,0,0,0,2.1,1,163,939,-1.8 +2013,11,29,0,30,0,0,0,2,0.2,169.18,939,-1.6 +2013,11,29,1,30,0,0,0,1.8,-0.4,162.66,939,-1.4000000000000001 +2013,11,29,2,30,0,0,0,1.7000000000000002,-0.9,151.08,939,-1.3 +2013,11,29,3,30,0,0,0,1.6,-1.4000000000000001,138.57,939,-1.5 +2013,11,29,4,30,0,0,0,1.5,-1.8,125.91,939,-1.8 +2013,11,29,5,30,0,0,0,1.4000000000000001,-2.1,113.37,939,-2.2 +2013,11,29,6,30,0,0,0,1.3,-2.4000000000000004,101.15,940,-2.5 +2013,11,29,7,30,0,0,0,1.8,-0.9,89.04,940,-2.8000000000000003 +2013,11,29,8,30,138,61,385,2.4000000000000004,2,78.45,940,-2.7 +2013,11,29,9,30,368,56,863,3,5.6000000000000005,68.79,940,-2.2 +2013,11,29,10,30,519,64,937,3.8000000000000003,9.3,60.94,940,-2.1 +2013,11,29,11,30,462,222,427,4.3,11.700000000000001,55.72,940,-1.7000000000000002 +2013,11,29,12,30,516,198,539,4.4,13.200000000000001,53.9,938,-1 +2013,11,29,13,30,610,68,966,4.4,14.100000000000001,55.83,937,-0.4 +2013,11,29,14,30,512,63,930,4.2,14.5,61.15,937,0.1 +2013,11,29,15,30,256,132,347,3.7,14,69.07000000000001,936,0.6000000000000001 +2013,11,29,16,30,174,41,684,2.5,11.3,78.77,936,1.3 +2013,11,29,17,30,0,0,0,1.7000000000000002,9.1,89.37,936,2.3000000000000003 +2013,11,29,18,30,0,0,0,2.2,6.9,101.52,936,1.8 +2013,11,29,19,30,0,0,0,2.6,6.6000000000000005,113.76,936,1.9000000000000001 +2013,11,29,20,30,0,0,0,3.1,6.2,126.31,937,2.2 +2013,11,29,21,30,0,0,0,3.4000000000000004,5.7,138.97,937,2.4000000000000004 +2013,11,29,22,30,0,0,0,3.5,5,151.48,937,2.5 +2013,11,29,23,30,0,0,0,3.4000000000000004,4.4,163.05,937,2.4000000000000004 +2013,11,30,0,30,0,0,0,3.3000000000000003,3.7,169.34,937,2.4000000000000004 +2013,11,30,1,30,0,0,0,3.2,3.2,162.83,936,2.4000000000000004 +2013,11,30,2,30,0,0,0,3.1,2.8000000000000003,151.23,936,2.7 +2013,11,30,3,30,0,0,0,2.9000000000000004,2.7,138.71,936,2.7 +2013,11,30,4,30,0,0,0,2.9000000000000004,2.8000000000000003,126.06,936,2.8000000000000003 +2013,11,30,5,30,0,0,0,2.9000000000000004,3.1,113.52,936,3.1 +2013,11,30,6,30,0,0,0,3,3.4000000000000004,101.3,936,3.4000000000000004 +2013,11,30,7,30,0,0,0,3.3000000000000003,4,89.19,937,4 +2013,11,30,8,30,168,51,595,3.6,5.4,78.62,937,4.4 +2013,11,30,9,30,351,69,787,4.3,8.1,68.97,936,5 +2013,11,30,10,30,362,197,342,4.9,11.700000000000001,61.120000000000005,936,5.9 +2013,11,30,11,30,597,76,929,5,14.9,55.9,935,6.300000000000001 +2013,11,30,12,30,632,67,962,4.7,17.3,54.06,934,6.4 +2013,11,30,13,30,598,66,952,4.4,18.900000000000002,55.97,933,6.5 +2013,11,30,14,30,500,63,910,4.1000000000000005,19.400000000000002,61.25,932,6.5 +2013,11,30,15,30,314,76,669,3.2,18.6,69.14,931,6.5 +2013,11,30,16,30,168,41,656,2.1,15.600000000000001,78.82000000000001,931,7.6000000000000005 +2013,11,30,17,30,0,0,0,1.6,13.3,89.4,931,7.6000000000000005 +2013,11,30,18,30,0,0,0,2.3000000000000003,11.200000000000001,101.53,932,7.1000000000000005 +2013,11,30,19,30,0,0,0,3.1,11,113.76,932,7.5 +2013,11,30,20,30,0,0,0,3.5,10.4,126.3,932,7.800000000000001 +2013,11,30,21,30,0,0,0,3.7,9.600000000000001,138.96,932,8.1 +2013,11,30,22,30,0,0,0,3.7,8.9,151.48,932,8.5 +2013,11,30,23,30,0,0,0,3.6,8.3,163.09,932,8.3 +2013,12,1,0,30,0,0,0,3.6,8.1,169.5,932,8.1 +2013,12,1,1,30,0,0,0,3.6,8.200000000000001,163,932,8.200000000000001 +2013,12,1,2,30,0,0,0,3.4000000000000004,8,151.38,932,8 +2013,12,1,3,30,0,0,0,3.4000000000000004,7.9,138.86,932,7.9 +2013,12,1,4,30,0,0,0,3.4000000000000004,8,126.2,931,8 +2013,12,1,5,30,0,0,0,3.3000000000000003,8,113.67,931,8 +2013,12,1,6,30,0,0,0,3.3000000000000003,7.800000000000001,101.46000000000001,931,7.800000000000001 +2013,12,1,7,30,0,0,0,3.4000000000000004,8.1,89.34,931,7.9 +2013,12,1,8,30,80,73,40,3.5,9.3,78.79,931,7.7 +2013,12,1,9,30,110,110,0,3.5,11.600000000000001,69.14,931,7.800000000000001 +2013,12,1,10,30,99,99,0,3.5,14.100000000000001,61.300000000000004,931,7.7 +2013,12,1,11,30,85,85,0,3.4000000000000004,16.3,56.07,930,7.300000000000001 +2013,12,1,12,30,160,159,1,3.4000000000000004,18,54.22,929,6.6000000000000005 +2013,12,1,13,30,116,116,0,3.6,19.3,56.09,929,5.5 +2013,12,1,14,30,114,114,0,3.6,19.8,61.34,928,4.5 +2013,12,1,15,30,140,133,20,2.6,18.900000000000002,69.2,927,4.1000000000000005 +2013,12,1,16,30,110,71,205,1.6,16.2,78.85000000000001,927,6.5 +2013,12,1,17,30,0,0,0,1.5,14.4,89.41,927,6.2 +2013,12,1,18,30,0,0,0,1.9000000000000001,12.8,101.53,927,5.300000000000001 +2013,12,1,19,30,0,0,0,2.1,12.3,113.75,927,5 +2013,12,1,20,30,0,0,0,2.3000000000000003,11.5,126.28,927,4.5 +2013,12,1,21,30,0,0,0,2.4000000000000004,10.4,138.94,927,3.9000000000000004 +2013,12,1,22,30,0,0,0,2.4000000000000004,9.1,151.47,926,3.2 +2013,12,1,23,30,0,0,0,2.4000000000000004,7.800000000000001,163.12,926,2.5 +2013,12,2,0,30,0,0,0,2.5,6.9,169.65,926,1.8 +2013,12,2,1,30,0,0,0,2.6,6,163.17000000000002,925,1.1 +2013,12,2,2,30,0,0,0,2.6,5.1000000000000005,151.53,925,0.4 +2013,12,2,3,30,0,0,0,2.4000000000000004,4.4,139,924,-0.30000000000000004 +2013,12,2,4,30,0,0,0,2.4000000000000004,3.9000000000000004,126.34,924,-0.8 +2013,12,2,5,30,0,0,0,2.4000000000000004,3.5,113.82000000000001,923,-1.3 +2013,12,2,6,30,0,0,0,2.6,3.2,101.61,923,-1.6 +2013,12,2,7,30,0,0,0,3.4000000000000004,4.2,89.48,923,-1.9000000000000001 +2013,12,2,8,30,122,64,301,4,6.800000000000001,78.95,923,-1.8 +2013,12,2,9,30,279,112,474,4,10.200000000000001,69.31,923,-1.5 +2013,12,2,10,30,511,49,966,3.9000000000000004,13.700000000000001,61.47,922,-1.6 +2013,12,2,11,30,604,52,993,3.7,16.3,56.230000000000004,921,-1.4000000000000001 +2013,12,2,12,30,638,53,1003,3.7,18.3,54.36,920,-1 +2013,12,2,13,30,602,54,986,3.8000000000000003,19.5,56.21,919,-0.7000000000000001 +2013,12,2,14,30,506,50,952,3.6,20.1,61.43,919,-0.4 +2013,12,2,15,30,356,44,880,2.5,19.3,69.26,918,-0.1 +2013,12,2,16,30,172,33,719,1.4000000000000001,16.5,78.88,918,4.2 +2013,12,2,17,30,0,0,0,1.2000000000000002,14.5,89.43,918,3.4000000000000004 +2013,12,2,18,30,0,0,0,1.2000000000000002,13.100000000000001,101.52,919,1.5 +2013,12,2,19,30,0,0,0,1.3,11.9,113.73,919,1.2000000000000002 +2013,12,2,20,30,0,0,0,1.4000000000000001,10.4,126.26,919,1 +2013,12,2,21,30,0,0,0,1.7000000000000002,9.200000000000001,138.92000000000002,918,0.8 +2013,12,2,22,30,0,0,0,2.4000000000000004,8.8,151.46,918,0.5 +2013,12,2,23,30,0,0,0,3.1,8.8,163.15,918,-0.1 +2013,12,3,0,30,0,0,0,3.6,8.700000000000001,169.79,918,-0.9 +2013,12,3,1,30,0,0,0,4,8.5,163.33,917,-1.6 +2013,12,3,2,30,0,0,0,4.3,8.1,151.67000000000002,917,-1.8 +2013,12,3,3,30,0,0,0,4.5,7.6000000000000005,139.14000000000001,917,-1.7000000000000002 +2013,12,3,4,30,0,0,0,4.4,7.4,126.48,916,-1.6 +2013,12,3,5,30,0,0,0,4.3,7.300000000000001,113.96000000000001,916,-1.5 +2013,12,3,6,30,0,0,0,4.2,7.2,101.76,917,-1.4000000000000001 +2013,12,3,7,30,0,0,0,4.3,7.800000000000001,89.62,917,-1.3 +2013,12,3,8,30,172,35,721,4.6000000000000005,9.8,79.11,917,-1.1 +2013,12,3,9,30,299,88,601,4.4,13.200000000000001,69.48,917,-0.7000000000000001 +2013,12,3,10,30,418,133,600,4.3,17.400000000000002,61.64,917,0.2 +2013,12,3,11,30,470,205,478,4.5,21.400000000000002,56.39,917,-0.1 +2013,12,3,12,30,641,56,1007,4.7,23.900000000000002,54.5,916,-1.4000000000000001 +2013,12,3,13,30,605,55,991,4.7,24.900000000000002,56.32,915,-2.7 +2013,12,3,14,30,398,166,484,4.3,24.700000000000003,61.51,914,-2.4000000000000004 +2013,12,3,15,30,263,126,388,3.1,22.700000000000003,69.31,914,-0.5 +2013,12,3,16,30,130,61,362,2.1,18.6,78.91,914,4.2 +2013,12,3,17,30,0,0,0,1.9000000000000001,16.2,89.44,914,3.7 +2013,12,3,18,30,0,0,0,2.4000000000000004,13.9,101.52,915,2.5 +2013,12,3,19,30,0,0,0,3,13.4,113.71000000000001,915,1.7000000000000002 +2013,12,3,20,30,0,0,0,3.6,13,126.23,916,0.9 +2013,12,3,21,30,0,0,0,3.8000000000000003,12.4,138.89000000000001,916,0.30000000000000004 +2013,12,3,22,30,0,0,0,4,11.9,151.44,916,0.1 +2013,12,3,23,30,0,0,0,4,11.600000000000001,163.17000000000002,916,0.30000000000000004 +2013,12,4,0,30,0,0,0,4.1000000000000005,11.5,169.93,916,0.9 +2013,12,4,1,30,0,0,0,4.4,11.9,163.49,916,1.9000000000000001 +2013,12,4,2,30,0,0,0,4.3,12.3,151.82,916,3.2 +2013,12,4,3,30,0,0,0,3.9000000000000004,12.3,139.28,917,4.5 +2013,12,4,4,30,0,0,0,3.7,12.3,126.63000000000001,917,5.5 +2013,12,4,5,30,0,0,0,3.6,12.4,114.11,917,6.2 +2013,12,4,6,30,0,0,0,3.3000000000000003,12.3,101.91,918,6.6000000000000005 +2013,12,4,7,30,0,0,0,3.4000000000000004,12.700000000000001,89.76,918,6.7 +2013,12,4,8,30,112,66,247,3.5,14.4,79.27,919,7 +2013,12,4,9,30,342,52,832,3.5,17.2,69.64,919,7.4 +2013,12,4,10,30,491,58,916,4.3,20.700000000000003,61.800000000000004,919,7.800000000000001 +2013,12,4,11,30,587,61,954,5.300000000000001,23.200000000000003,56.550000000000004,919,6.9 +2013,12,4,12,30,619,63,961,5.300000000000001,24.400000000000002,54.64,918,5.9 +2013,12,4,13,30,464,211,457,5,24.900000000000002,56.42,917,5.300000000000001 +2013,12,4,14,30,367,189,373,4.2,24.8,61.58,917,5.2 +2013,12,4,15,30,310,78,657,2.6,23.400000000000002,69.35000000000001,917,5.6000000000000005 +2013,12,4,16,30,85,73,61,1,20.5,78.93,917,9.4 +2013,12,4,17,30,0,0,0,0.6000000000000001,18.7,89.44,917,8.6 +2013,12,4,18,30,0,0,0,1,16.400000000000002,101.5,919,7.300000000000001 +2013,12,4,19,30,0,0,0,1.7000000000000002,14.700000000000001,113.69,919,7.300000000000001 +2013,12,4,20,30,0,0,0,2.6,13.100000000000001,126.2,920,7 +2013,12,4,21,30,0,0,0,3.7,11.3,138.86,922,5.9 +2013,12,4,22,30,0,0,0,4.800000000000001,9.1,151.41,923,4 +2013,12,4,23,30,0,0,0,5.5,6.5,163.18,924,1.6 +2013,12,5,0,30,0,0,0,6,4.1000000000000005,170.06,925,-1.3 +2013,12,5,1,30,0,0,0,6.300000000000001,2.1,163.65,926,-4 +2013,12,5,2,30,0,0,0,6.6000000000000005,0.6000000000000001,151.96,927,-5.800000000000001 +2013,12,5,3,30,0,0,0,6.800000000000001,-0.7000000000000001,139.42000000000002,928,-7 +2013,12,5,4,30,0,0,0,6.800000000000001,-1.9000000000000001,126.77,929,-7.9 +2013,12,5,5,30,0,0,0,6.800000000000001,-3,114.25,930,-8.8 +2013,12,5,6,30,0,0,0,6.6000000000000005,-3.8000000000000003,102.05,931,-9.600000000000001 +2013,12,5,7,30,0,0,0,6.300000000000001,-4.3,89.85000000000001,931,-10 +2013,12,5,8,30,41,41,0,6,-4.4,79.42,932,-10.100000000000001 +2013,12,5,9,30,163,141,63,5.800000000000001,-4.3,69.8,932,-10 +2013,12,5,10,30,272,212,128,5.6000000000000005,-3.7,61.96,932,-9.8 +2013,12,5,11,30,146,146,0,5.5,-2.8000000000000003,56.69,932,-9.700000000000001 +2013,12,5,12,30,142,142,0,5.1000000000000005,-1.8,54.76,931,-9.600000000000001 +2013,12,5,13,30,111,111,0,4.7,-1,56.52,930,-9.5 +2013,12,5,14,30,63,63,0,4.2,-0.9,61.64,930,-9.200000000000001 +2013,12,5,15,30,151,138,35,3.9000000000000004,-1.4000000000000001,69.38,930,-9.200000000000001 +2013,12,5,16,30,36,36,0,3.6,-2.4000000000000004,78.93,930,-9.4 +2013,12,5,17,30,0,0,0,3.5,-3,89.39,930,-9.8 +2013,12,5,18,30,0,0,0,3.9000000000000004,-4.1000000000000005,101.48,931,-10.4 +2013,12,5,19,30,0,0,0,4.3,-4.6000000000000005,113.66,931,-10.9 +2013,12,5,20,30,0,0,0,4.5,-5.1000000000000005,126.16,931,-11.4 +2013,12,5,21,30,0,0,0,4.3,-5.4,138.82,932,-11.3 +2013,12,5,22,30,0,0,0,4.3,-5.7,151.38,933,-10.4 +2013,12,5,23,30,0,0,0,4.6000000000000005,-6,163.18,932,-9.8 +2013,12,6,0,30,0,0,0,4.6000000000000005,-6.2,170.17000000000002,932,-9.8 +2013,12,6,1,30,0,0,0,4.5,-6.4,163.8,932,-9.8 +2013,12,6,2,30,0,0,0,4.9,-6.5,152.1,932,-9.8 +2013,12,6,3,30,0,0,0,5.2,-6.7,139.56,933,-9.9 +2013,12,6,4,30,0,0,0,5.300000000000001,-6.800000000000001,126.9,933,-10 +2013,12,6,5,30,0,0,0,5.2,-6.9,114.39,934,-10.100000000000001 +2013,12,6,6,30,0,0,0,5,-7,102.2,935,-10.200000000000001 +2013,12,6,7,30,0,0,0,5,-6.9,89.97,936,-10.3 +2013,12,6,8,30,9,9,0,5.2,-6.2,79.57000000000001,937,-10.4 +2013,12,6,9,30,349,66,827,5.300000000000001,-5.2,69.95,938,-10.4 +2013,12,6,10,30,205,189,36,5.2,-4.1000000000000005,62.11,938,-10.200000000000001 +2013,12,6,11,30,298,249,89,5.2,-3.2,56.83,938,-10 +2013,12,6,12,30,377,272,182,5.1000000000000005,-2.4000000000000004,54.88,938,-9.5 +2013,12,6,13,30,347,258,162,5,-2,56.61,937,-9.1 +2013,12,6,14,30,312,211,213,4.9,-2,61.7,937,-8.700000000000001 +2013,12,6,15,30,184,148,103,4.800000000000001,-2.4000000000000004,69.41,937,-8.700000000000001 +2013,12,6,16,30,180,44,708,4.4,-3.6,78.94,938,-8.9 +2013,12,6,17,30,0,0,0,4,-4.3,89.38,938,-9.700000000000001 +2013,12,6,18,30,0,0,0,3,-6.6000000000000005,101.45,939,-10.600000000000001 +2013,12,6,19,30,0,0,0,2.7,-7.5,113.62,940,-11.200000000000001 +2013,12,6,20,30,0,0,0,2.6,-8.1,126.12,941,-11.600000000000001 +2013,12,6,21,30,0,0,0,2.7,-8.5,138.77,941,-11.9 +2013,12,6,22,30,0,0,0,2.9000000000000004,-8.700000000000001,151.35,942,-12.200000000000001 +2013,12,6,23,30,0,0,0,3.2,-8.700000000000001,163.17000000000002,942,-12.600000000000001 +2013,12,7,0,30,0,0,0,3.6,-8.8,170.28,942,-13.200000000000001 +2013,12,7,1,30,0,0,0,3.9000000000000004,-9,163.95000000000002,941,-13.8 +2013,12,7,2,30,0,0,0,4.1000000000000005,-9.1,152.24,942,-14.5 +2013,12,7,3,30,0,0,0,4.2,-9.3,139.70000000000002,942,-15 +2013,12,7,4,30,0,0,0,4.1000000000000005,-9.3,127.04,942,-15.4 +2013,12,7,5,30,0,0,0,4.1000000000000005,-9.3,114.53,942,-15.700000000000001 +2013,12,7,6,30,0,0,0,4,-9.3,102.34,942,-16 +2013,12,7,7,30,0,0,0,4,-8.9,90.08,942,-16.2 +2013,12,7,8,30,60,60,0,4,-8.200000000000001,79.72,942,-16.1 +2013,12,7,9,30,112,112,0,3.8000000000000003,-7.4,70.10000000000001,942,-15.9 +2013,12,7,10,30,234,201,70,3.5,-6.7,62.25,941,-15.600000000000001 +2013,12,7,11,30,231,215,28,3.2,-6,56.96,940,-15.100000000000001 +2013,12,7,12,30,177,175,4,2.9000000000000004,-5.4,54.99,939,-14.5 +2013,12,7,13,30,332,257,136,2.5,-4.800000000000001,56.69,937,-13.8 +2013,12,7,14,30,321,208,237,2.2,-4.5,61.75,936,-13.200000000000001 +2013,12,7,15,30,113,113,0,1.9000000000000001,-4.7,69.43,935,-12.600000000000001 +2013,12,7,16,30,85,73,65,1.7000000000000002,-5.1000000000000005,78.93,935,-12.3 +2013,12,7,17,30,0,0,0,1.6,-5.4,89.36,935,-12.100000000000001 +2013,12,7,18,30,0,0,0,1.1,-5.9,101.42,935,-12.100000000000001 +2013,12,7,19,30,0,0,0,0.8,-6,113.58,936,-12 +2013,12,7,20,30,0,0,0,0.9,-6.1000000000000005,126.07000000000001,936,-11.8 +2013,12,7,21,30,0,0,0,1.1,-6.300000000000001,138.73,935,-11.700000000000001 +2013,12,7,22,30,0,0,0,1.2000000000000002,-6.800000000000001,151.3,934,-11.700000000000001 +2013,12,7,23,30,0,0,0,1.2000000000000002,-7.300000000000001,163.16,933,-11.8 +2013,12,8,0,30,0,0,0,1.4000000000000001,-7.6000000000000005,170.39000000000001,933,-11.8 +2013,12,8,1,30,0,0,0,1.8,-7.800000000000001,164.09,932,-11.8 +2013,12,8,2,30,0,0,0,2,-7.800000000000001,152.38,931,-11.700000000000001 +2013,12,8,3,30,0,0,0,2.1,-7.7,139.83,931,-11.600000000000001 +2013,12,8,4,30,0,0,0,1.9000000000000001,-7.5,127.18,930,-11.4 +2013,12,8,5,30,0,0,0,1.8,-7.300000000000001,114.67,930,-11.100000000000001 +2013,12,8,6,30,0,0,0,1.7000000000000002,-7.1000000000000005,102.48,929,-10.9 +2013,12,8,7,30,0,0,0,2.1,-6.4,90.22,929,-10.8 +2013,12,8,8,30,73,65,43,2.8000000000000003,-4.4,79.86,929,-10 +2013,12,8,9,30,191,142,145,3.5,-1.7000000000000002,70.25,929,-8.700000000000001 +2013,12,8,10,30,506,67,949,3.8000000000000003,1,62.4,929,-7.1000000000000005 +2013,12,8,11,30,608,73,986,4,3.6,57.09,928,-5.1000000000000005 +2013,12,8,12,30,646,78,993,4,6,55.1,927,-3.5 +2013,12,8,13,30,615,75,986,3.9000000000000004,8.1,56.76,926,-2.1 +2013,12,8,14,30,519,69,952,3.6,9.3,61.79,926,-1 +2013,12,8,15,30,366,59,877,2.3000000000000003,8.3,69.45,926,0 +2013,12,8,16,30,178,42,711,1.5,5,78.93,926,1.5 +2013,12,8,17,30,0,0,0,1.5,3.1,89.36,926,-0.6000000000000001 +2013,12,8,18,30,0,0,0,1.5,2.6,101.39,927,-1.1 +2013,12,8,19,30,0,0,0,1.5,2.1,113.53,927,-1.1 +2013,12,8,20,30,0,0,0,1.5,0.8,126.02,927,-1.1 +2013,12,8,21,30,0,0,0,1.5,-0.4,138.67000000000002,928,-1 +2013,12,8,22,30,0,0,0,1.5,-0.9,151.26,928,-0.9 +2013,12,8,23,30,0,0,0,1.4000000000000001,-1,163.14000000000001,929,-1 +2013,12,9,0,30,0,0,0,1.1,-1,170.48,929,-1 +2013,12,9,1,30,0,0,0,1,-1.3,164.24,928,-1.3 +2013,12,9,2,30,0,0,0,1.4000000000000001,-2.1,152.52,928,-2.1 +2013,12,9,3,30,0,0,0,2.3000000000000003,-3,139.96,929,-3 +2013,12,9,4,30,0,0,0,3.2,-3.4000000000000004,127.31,929,-3.4000000000000004 +2013,12,9,5,30,0,0,0,4.1000000000000005,-3.6,114.8,930,-3.6 +2013,12,9,6,30,0,0,0,4.5,-3.9000000000000004,102.62,931,-3.9000000000000004 +2013,12,9,7,30,0,0,0,5,-3.9000000000000004,90.96000000000001,932,-4.1000000000000005 +2013,12,9,8,30,146,51,550,5.2,-3.4000000000000004,80,932,-4.5 +2013,12,9,9,30,330,78,750,4.9,-2.7,70.39,933,-4.6000000000000005 +2013,12,9,10,30,100,100,0,4.4,-1.9000000000000001,62.53,934,-4.800000000000001 +2013,12,9,11,30,133,133,0,3.9000000000000004,-1.1,57.21,934,-4.9 +2013,12,9,12,30,134,134,0,3.5,-0.6000000000000001,55.19,933,-4.9 +2013,12,9,13,30,593,104,894,3.3000000000000003,-0.30000000000000004,56.83,933,-5 +2013,12,9,14,30,501,93,864,3.5,-0.5,61.83,933,-5.1000000000000005 +2013,12,9,15,30,352,77,785,3.8000000000000003,-1.1,69.45,934,-5.5 +2013,12,9,16,30,168,52,603,3.9000000000000004,-2.2,78.92,935,-6.1000000000000005 +2013,12,9,17,30,0,0,0,3.7,-3,89.32000000000001,935,-7.1000000000000005 +2013,12,9,18,30,0,0,0,2.6,-5.1000000000000005,101.35000000000001,937,-8.200000000000001 +2013,12,9,19,30,0,0,0,1.9000000000000001,-6.300000000000001,113.48,938,-9.200000000000001 +2013,12,9,20,30,0,0,0,1.5,-7,125.97,939,-9.9 +2013,12,9,21,30,0,0,0,1.2000000000000002,-7.300000000000001,138.62,939,-10.4 +2013,12,9,22,30,0,0,0,1,-7.5,151.21,940,-10.700000000000001 +2013,12,9,23,30,0,0,0,1,-7.800000000000001,163.12,940,-10.9 +2013,12,10,0,30,0,0,0,1.1,-8.1,170.56,940,-11.100000000000001 +2013,12,10,1,30,0,0,0,1.1,-8.3,164.38,940,-11.200000000000001 +2013,12,10,2,30,0,0,0,1,-8.3,152.65,940,-11.200000000000001 +2013,12,10,3,30,0,0,0,1.1,-8.200000000000001,140.1,940,-11 +2013,12,10,4,30,0,0,0,1.3,-8,127.44,940,-10.600000000000001 +2013,12,10,5,30,0,0,0,1.5,-7.800000000000001,114.94,940,-10.200000000000001 +2013,12,10,6,30,0,0,0,1.5,-7.7,102.75,940,-9.8 +2013,12,10,7,30,0,0,0,1.8,-6.5,91.09,940,-9.5 +2013,12,10,8,30,162,34,744,1.9000000000000001,-4,80.14,940,-9.1 +2013,12,10,9,30,221,130,273,1.6,-0.8,70.52,940,-8.200000000000001 +2013,12,10,10,30,504,53,982,1.9000000000000001,2.2,62.660000000000004,941,-7.800000000000001 +2013,12,10,11,30,600,57,1006,2.5,4.3,57.33,940,-8.3 +2013,12,10,12,30,639,63,1011,3,5.7,55.28,939,-8.700000000000001 +2013,12,10,13,30,604,61,995,3.3000000000000003,6.5,56.89,937,-9 +2013,12,10,14,30,507,57,954,3.4000000000000004,6.7,61.86,936,-8.9 +2013,12,10,15,30,357,51,872,2.6,5.7,69.46000000000001,936,-8.6 +2013,12,10,16,30,174,38,708,1.7000000000000002,2.3000000000000003,78.9,935,-5.800000000000001 +2013,12,10,17,30,0,0,0,1.6,-0.2,89.29,935,-6.5 +2013,12,10,18,30,0,0,0,2,-1.7000000000000002,101.3,935,-7.4 +2013,12,10,19,30,0,0,0,2.3000000000000003,-1.7000000000000002,113.43,935,-7.300000000000001 +2013,12,10,20,30,0,0,0,2.7,-1.6,125.91,935,-7.2 +2013,12,10,21,30,0,0,0,3.1,-1.4000000000000001,138.55,935,-7.1000000000000005 +2013,12,10,22,30,0,0,0,3.3000000000000003,-1.4000000000000001,151.15,935,-6.9 +2013,12,10,23,30,0,0,0,3,-1.9000000000000001,163.08,935,-6.7 +2013,12,11,0,30,0,0,0,2.9000000000000004,-2.2,170.64000000000001,935,-6.6000000000000005 +2013,12,11,1,30,0,0,0,2.8000000000000003,-2.4000000000000004,164.51,934,-6.300000000000001 +2013,12,11,2,30,0,0,0,2.6,-3,152.78,934,-6.1000000000000005 +2013,12,11,3,30,0,0,0,2.5,-3.4000000000000004,140.23,935,-6.2 +2013,12,11,4,30,0,0,0,2.6,-3.5,127.57000000000001,935,-6.2 +2013,12,11,5,30,0,0,0,2.6,-3.4000000000000004,115.07000000000001,936,-6.300000000000001 +2013,12,11,6,30,0,0,0,2.6,-3.4000000000000004,102.89,936,-6.5 +2013,12,11,7,30,0,0,0,2.9000000000000004,-2.8000000000000003,91.23,937,-6.9 +2013,12,11,8,30,82,63,111,3.5,-1.2000000000000002,80.27,938,-7.2 +2013,12,11,9,30,261,100,486,4.1000000000000005,0.7000000000000001,70.65,939,-7.6000000000000005 +2013,12,11,10,30,379,155,489,4.6000000000000005,2.4000000000000004,62.78,940,-7.800000000000001 +2013,12,11,11,30,459,191,499,5,3.8000000000000003,57.43,940,-7.6000000000000005 +2013,12,11,12,30,501,184,557,5.2,4.9,55.370000000000005,940,-7.300000000000001 +2013,12,11,13,30,461,203,474,5.300000000000001,5.4,56.94,940,-7 +2013,12,11,14,30,388,165,472,5.300000000000001,5.1000000000000005,61.88,940,-6.7 +2013,12,11,15,30,218,145,207,4.800000000000001,4.2,69.45,941,-6.4 +2013,12,11,16,30,87,73,71,3.5,2.6,78.87,942,-6 +2013,12,11,17,30,0,0,0,2.6,1.6,89.26,942,-5.300000000000001 +2013,12,11,18,30,0,0,0,2,-0.4,101.25,943,-5.2 +2013,12,11,19,30,0,0,0,2.1,-1.2000000000000002,113.37,944,-5.300000000000001 +2013,12,11,20,30,0,0,0,2,-1.8,125.84,944,-5.300000000000001 +2013,12,11,21,30,0,0,0,1.8,-2.5,138.49,944,-5.4 +2013,12,11,22,30,0,0,0,1.7000000000000002,-2.9000000000000004,151.09,945,-5.4 +2013,12,11,23,30,0,0,0,1.8,-3,163.05,945,-5.300000000000001 +2013,12,12,0,30,0,0,0,1.7000000000000002,-3.3000000000000003,170.71,944,-5.300000000000001 +2013,12,12,1,30,0,0,0,1.3,-3.6,164.64000000000001,944,-5.2 +2013,12,12,2,30,0,0,0,1.1,-3.8000000000000003,152.91,944,-5.1000000000000005 +2013,12,12,3,30,0,0,0,0.9,-3.9000000000000004,140.35,944,-5.1000000000000005 +2013,12,12,4,30,0,0,0,0.7000000000000001,-4,127.7,944,-5 +2013,12,12,5,30,0,0,0,0.4,-3.9000000000000004,115.2,944,-4.9 +2013,12,12,6,30,0,0,0,0.30000000000000004,-3.8000000000000003,103.02,944,-4.800000000000001 +2013,12,12,7,30,0,0,0,0.7000000000000001,-3.4000000000000004,91.36,944,-4.800000000000001 +2013,12,12,8,30,142,39,620,1.3,-1.9000000000000001,80.4,944,-4.7 +2013,12,12,9,30,246,110,412,1.7000000000000002,0.30000000000000004,70.78,944,-4.4 +2013,12,12,10,30,473,65,896,1.9000000000000001,2.5,62.9,943,-4 +2013,12,12,11,30,568,70,928,2.1,4.3,57.54,943,-3.6 +2013,12,12,12,30,482,213,473,2.2,5.6000000000000005,55.44,941,-3.4000000000000004 +2013,12,12,13,30,401,242,292,2.3000000000000003,6.5,56.99,940,-3.2 +2013,12,12,14,30,39,39,0,2.5,7,61.89,938,-3.1 +2013,12,12,15,30,238,138,284,2.2,6.6000000000000005,69.44,938,-2.9000000000000004 +2013,12,12,16,30,79,72,35,1.7000000000000002,5.300000000000001,78.85000000000001,937,-1.9000000000000001 +2013,12,12,17,30,0,0,0,1.6,4.4,89.22,937,-1.3 +2013,12,12,18,30,0,0,0,2.1,3.9000000000000004,101.19,937,-1.4000000000000001 +2013,12,12,19,30,0,0,0,2.3000000000000003,3.7,113.31,937,-1.3 +2013,12,12,20,30,0,0,0,2.6,3.7,125.77,937,-1.2000000000000002 +2013,12,12,21,30,0,0,0,3.3000000000000003,3.7,138.42000000000002,936,-1.1 +2013,12,12,22,30,0,0,0,3.9000000000000004,3.7,151.02,935,-0.7000000000000001 +2013,12,12,23,30,0,0,0,4.3,3.6,163,934,-0.2 +2013,12,13,0,30,0,0,0,4.4,3.3000000000000003,170.76,933,0.6000000000000001 +2013,12,13,1,30,0,0,0,4,3,164.77,932,1.4000000000000001 +2013,12,13,2,30,0,0,0,3.5,2.7,153.04,931,1.9000000000000001 +2013,12,13,3,30,0,0,0,3.2,2.6,140.48,930,2 +2013,12,13,4,30,0,0,0,3,2.4000000000000004,127.83,930,2 +2013,12,13,5,30,0,0,0,2.8000000000000003,1.9000000000000001,115.32000000000001,929,1.9000000000000001 +2013,12,13,6,30,0,0,0,2.5,1.3,103.14,928,1.3 +2013,12,13,7,30,0,0,0,3.1,1.8,91.48,928,1.5 +2013,12,13,8,30,47,47,0,4.3,3.6,80.53,928,1.8 +2013,12,13,9,30,211,131,245,5.2,6.1000000000000005,70.9,927,2 +2013,12,13,10,30,306,198,237,5.9,8.700000000000001,63.01,926,2.5 +2013,12,13,11,30,392,238,288,6.1000000000000005,11.200000000000001,57.63,925,3.2 +2013,12,13,12,30,151,151,0,6.2,13.5,55.51,923,4 +2013,12,13,13,30,14,14,0,6.300000000000001,15.3,57.03,922,4.9 +2013,12,13,14,30,104,104,0,6.300000000000001,16.3,61.9,921,5.4 +2013,12,13,15,30,291,99,548,5.6000000000000005,16.1,69.43,920,5.4 +2013,12,13,16,30,169,44,644,4.2,13.9,78.81,920,5.2 +2013,12,13,17,30,0,0,0,3.5,12.100000000000001,89.2,921,4.7 +2013,12,13,18,30,0,0,0,4.2,10.3,101.13,921,3.7 +2013,12,13,19,30,0,0,0,4.4,9.5,113.24000000000001,922,2.9000000000000004 +2013,12,13,20,30,0,0,0,4.6000000000000005,8.6,125.7,922,2.2 +2013,12,13,21,30,0,0,0,4.6000000000000005,7.7,138.34,922,1.7000000000000002 +2013,12,13,22,30,0,0,0,4.5,6.800000000000001,150.95000000000002,923,1.2000000000000002 +2013,12,13,23,30,0,0,0,4.1000000000000005,5.6000000000000005,162.95000000000002,923,0.7000000000000001 +2013,12,14,0,30,0,0,0,3.8000000000000003,4.4,170.81,924,0.1 +2013,12,14,1,30,0,0,0,3.8000000000000003,3.3000000000000003,164.89000000000001,925,-0.8 +2013,12,14,2,30,0,0,0,4.1000000000000005,2.2,153.16,925,-1.9000000000000001 +2013,12,14,3,30,0,0,0,4.5,1.4000000000000001,140.6,926,-3 +2013,12,14,4,30,0,0,0,4.7,0.6000000000000001,127.95,927,-4.1000000000000005 +2013,12,14,5,30,0,0,0,4.800000000000001,-0.1,115.45,928,-4.7 +2013,12,14,6,30,0,0,0,4.7,-0.8,103.27,930,-5 +2013,12,14,7,30,0,0,0,5,-0.8,91.61,932,-5.1000000000000005 +2013,12,14,8,30,140,37,636,6.1000000000000005,0.30000000000000004,80.65,933,-5.1000000000000005 +2013,12,14,9,30,324,53,835,6.6000000000000005,2,71.02,935,-4.9 +2013,12,14,10,30,478,60,924,6.300000000000001,3.9000000000000004,63.11,935,-5.2 +2013,12,14,11,30,580,64,966,6,5.7,57.72,935,-5.7 +2013,12,14,12,30,619,63,983,5.9,7.2,55.57,935,-6 +2013,12,14,13,30,592,62,975,5.9,8.3,57.06,935,-5.9 +2013,12,14,14,30,502,58,942,5.800000000000001,8.9,61.9,935,-5.7 +2013,12,14,15,30,357,50,873,5.300000000000001,8.700000000000001,69.4,935,-5.4 +2013,12,14,16,30,176,36,716,3.6,6.6000000000000005,78.77,936,-4.9 +2013,12,14,17,30,0,0,0,2.3000000000000003,4.800000000000001,89.13,936,-3.8000000000000003 +2013,12,14,18,30,0,0,0,1.7000000000000002,1.9000000000000001,101.06,937,-3.8000000000000003 +2013,12,14,19,30,0,0,0,1.5,0.9,113.16,937,-4 +2013,12,14,20,30,0,0,0,1.4000000000000001,0.2,125.62,938,-4.3 +2013,12,14,21,30,0,0,0,1.3,-0.30000000000000004,138.26,938,-4.5 +2013,12,14,22,30,0,0,0,1.2000000000000002,-0.4,150.87,938,-4.6000000000000005 +2013,12,14,23,30,0,0,0,1.1,-0.1,162.89000000000001,938,-4.7 +2013,12,15,0,30,0,0,0,1,-0.1,170.85,938,-4.800000000000001 +2013,12,15,1,30,0,0,0,1.2000000000000002,-0.8,165.01,938,-4.800000000000001 +2013,12,15,2,30,0,0,0,1.3,-1.8,153.29,938,-4.800000000000001 +2013,12,15,3,30,0,0,0,1.4000000000000001,-2.4000000000000004,140.73,938,-4.9 +2013,12,15,4,30,0,0,0,1.5,-2.8000000000000003,128.07,937,-5 +2013,12,15,5,30,0,0,0,1.5,-3.1,115.57000000000001,937,-5.1000000000000005 +2013,12,15,6,30,0,0,0,1.7000000000000002,-3.2,103.39,938,-5.1000000000000005 +2013,12,15,7,30,0,0,0,2.3000000000000003,-1.7000000000000002,91.73,938,-5.2 +2013,12,15,8,30,141,29,698,3.2,1.5,80.76,938,-4.9 +2013,12,15,9,30,326,41,883,3.6,5.1000000000000005,71.13,938,-4.5 +2013,12,15,10,30,481,47,963,4,9,63.21,938,-4 +2013,12,15,11,30,584,50,1000,4.4,12,57.800000000000004,937,-4.5 +2013,12,15,12,30,621,57,1000,4.3,13.5,55.63,936,-4.5 +2013,12,15,13,30,596,57,990,4.2,14.200000000000001,57.08,935,-4.5 +2013,12,15,14,30,506,55,957,4.1000000000000005,14.3,61.9,935,-4.7 +2013,12,15,15,30,361,49,886,3.3000000000000003,13.4,69.37,934,-4.7 +2013,12,15,16,30,179,37,725,2.1,10,78.72,934,-2.7 +2013,12,15,17,30,0,0,0,1.7000000000000002,7.4,89.08,934,-1.9000000000000001 +2013,12,15,18,30,0,0,0,1.9000000000000001,5.2,100.99000000000001,934,-2.8000000000000003 +2013,12,15,19,30,0,0,0,2,4.6000000000000005,113.09,935,-3 +2013,12,15,20,30,0,0,0,2.2,4,125.54,935,-3.1 +2013,12,15,21,30,0,0,0,2.4000000000000004,3.6,138.18,935,-3.3000000000000003 +2013,12,15,22,30,0,0,0,2.8000000000000003,3.2,150.79,935,-3.3000000000000003 +2013,12,15,23,30,0,0,0,3,2.7,162.83,935,-3.3000000000000003 +2013,12,16,0,30,0,0,0,3,2,170.88,935,-3.3000000000000003 +2013,12,16,1,30,0,0,0,3,1.2000000000000002,165.12,934,-3.3000000000000003 +2013,12,16,2,30,0,0,0,2.9000000000000004,0.5,153.41,934,-3.2 +2013,12,16,3,30,0,0,0,3,0,140.85,934,-3.2 +2013,12,16,4,30,0,0,0,2.9000000000000004,-0.5,128.19,934,-3.2 +2013,12,16,5,30,0,0,0,2.8000000000000003,-1,115.69,934,-3.2 +2013,12,16,6,30,0,0,0,2.7,-1.4000000000000001,103.51,934,-3.3000000000000003 +2013,12,16,7,30,0,0,0,3,-0.4,91.84,934,-3.5 +2013,12,16,8,30,140,30,693,3.3000000000000003,2.2,80.88,934,-3.7 +2013,12,16,9,30,325,41,883,2.9000000000000004,5.7,71.23,934,-3.6 +2013,12,16,10,30,480,47,963,2.8000000000000003,9.9,63.31,934,-2.8000000000000003 +2013,12,16,11,30,582,50,1001,3.1,13.8,57.870000000000005,934,-2.6 +2013,12,16,12,30,622,50,1015,3.4000000000000004,16.7,55.67,933,-2.9000000000000004 +2013,12,16,13,30,596,49,1007,3.5,18.1,57.09,932,-3.7 +2013,12,16,14,30,506,46,976,3.1,18.400000000000002,61.88,932,-3.6 +2013,12,16,15,30,361,41,908,2,17,69.34,932,-3.1 +2013,12,16,16,30,180,32,754,1.2000000000000002,14,78.67,932,3.2 +2013,12,16,17,30,0,0,0,1.3,12.200000000000001,89.03,932,-0.30000000000000004 +2013,12,16,18,30,0,0,0,1.5,8.700000000000001,100.92,933,-1.4000000000000001 +2013,12,16,19,30,0,0,0,1.6,7.1000000000000005,113.01,933,-1.3 +2013,12,16,20,30,0,0,0,1.7000000000000002,6.1000000000000005,125.45,933,-1.4000000000000001 +2013,12,16,21,30,0,0,0,1.8,5.4,138.09,934,-1.4000000000000001 +2013,12,16,22,30,0,0,0,2,4.800000000000001,150.71,934,-1.5 +2013,12,16,23,30,0,0,0,2.2,4.2,162.76,934,-1.7000000000000002 +2013,12,17,0,30,0,0,0,2.4000000000000004,3.6,170.9,934,-2 +2013,12,17,1,30,0,0,0,2.4000000000000004,2.9000000000000004,165.23,934,-2.2 +2013,12,17,2,30,0,0,0,2.4000000000000004,2.3000000000000003,153.52,934,-2.4000000000000004 +2013,12,17,3,30,0,0,0,2.3000000000000003,1.8,140.96,934,-2.6 +2013,12,17,4,30,0,0,0,2.2,1.4000000000000001,128.31,934,-2.7 +2013,12,17,5,30,0,0,0,2,1,115.81,934,-2.7 +2013,12,17,6,30,0,0,0,1.8,0.8,103.62,935,-2.8000000000000003 +2013,12,17,7,30,0,0,0,1.6,2.1,91.96000000000001,935,-3 +2013,12,17,8,30,138,30,687,1.8,5.4,80.98,936,-2.3000000000000003 +2013,12,17,9,30,323,42,879,1.6,8.9,71.33,936,-2.5 +2013,12,17,10,30,479,48,961,0.9,12.5,63.39,936,-1.8 +2013,12,17,11,30,582,52,999,0.7000000000000001,16.2,57.93,936,-1 +2013,12,17,12,30,625,58,1007,0.9,18.5,55.71,935,-1.8 +2013,12,17,13,30,595,57,991,1.1,19.3,57.1,935,-2 +2013,12,17,14,30,506,54,959,1.4000000000000001,19.200000000000003,61.86,934,-2 +2013,12,17,15,30,362,47,891,1.2000000000000002,17.8,69.29,934,-1.7000000000000002 +2013,12,17,16,30,181,36,733,1.1,14.200000000000001,78.61,935,3.8000000000000003 +2013,12,17,17,30,15,10,271,1.3,11.9,88.96000000000001,935,1.6 +2013,12,17,18,30,0,0,0,1.5,8.9,100.84,935,0.2 +2013,12,17,19,30,0,0,0,1.5,7.9,112.92,936,-0.1 +2013,12,17,20,30,0,0,0,1.6,7,125.37,936,-0.30000000000000004 +2013,12,17,21,30,0,0,0,1.6,6.2,138,936,-0.4 +2013,12,17,22,30,0,0,0,1.6,5.4,150.62,936,-0.4 +2013,12,17,23,30,0,0,0,1.7000000000000002,4.800000000000001,162.69,935,-0.30000000000000004 +2013,12,18,0,30,0,0,0,1.8,4.2,170.92000000000002,935,-0.1 +2013,12,18,1,30,0,0,0,1.9000000000000001,3.8000000000000003,165.34,935,0.2 +2013,12,18,2,30,0,0,0,2,3.3000000000000003,153.64000000000001,934,0.4 +2013,12,18,3,30,0,0,0,2,2.9000000000000004,141.08,934,0.5 +2013,12,18,4,30,0,0,0,2.2,2.6,128.43,934,0.4 +2013,12,18,5,30,0,0,0,2.3000000000000003,2.2,115.92,934,0.1 +2013,12,18,6,30,0,0,0,2.4000000000000004,2,103.74000000000001,934,-0.30000000000000004 +2013,12,18,7,30,0,0,0,3,2.9000000000000004,92.07000000000001,934,-0.5 +2013,12,18,8,30,85,56,186,3.7,5.5,81.09,934,-0.2 +2013,12,18,9,30,315,56,813,3.7,8.700000000000001,71.42,934,0.6000000000000001 +2013,12,18,10,30,469,65,905,4.5,12.700000000000001,63.47,933,2.1 +2013,12,18,11,30,573,70,949,5.7,16.2,57.99,932,3.6 +2013,12,18,12,30,615,63,981,6.1000000000000005,18.3,55.74,930,3.5 +2013,12,18,13,30,587,64,964,6,19.200000000000003,57.1,929,3.1 +2013,12,18,14,30,499,63,925,5.800000000000001,19.400000000000002,61.84,928,2.9000000000000004 +2013,12,18,15,30,356,58,842,5.1000000000000005,18.400000000000002,69.25,927,2.8000000000000003 +2013,12,18,16,30,92,76,81,4,15.9,78.55,927,3.3000000000000003 +2013,12,18,17,30,7,7,0,3.6,14.100000000000001,88.9,927,3.8000000000000003 +2013,12,18,18,30,0,0,0,4.800000000000001,12.700000000000001,100.76,927,4 +2013,12,18,19,30,0,0,0,5.1000000000000005,11.8,112.83,927,4.5 +2013,12,18,20,30,0,0,0,5,10.700000000000001,125.27,926,5.1000000000000005 +2013,12,18,21,30,0,0,0,5.1000000000000005,9.8,137.91,926,5.7 +2013,12,18,22,30,0,0,0,5.300000000000001,9.200000000000001,150.53,925,6.300000000000001 +2013,12,18,23,30,0,0,0,5.4,8.9,162.61,925,6.7 +2013,12,19,0,30,0,0,0,5.4,8.8,170.92000000000002,924,6.9 +2013,12,19,1,30,0,0,0,5.7,8.8,165.44,924,7.1000000000000005 +2013,12,19,2,30,0,0,0,6,9,153.75,923,7.300000000000001 +2013,12,19,3,30,0,0,0,6,9.1,141.19,923,7.9 +2013,12,19,4,30,0,0,0,5.800000000000001,9.1,128.54,922,8.5 +2013,12,19,5,30,0,0,0,5.4,9,116.03,922,9 +2013,12,19,6,30,0,0,0,5.2,9,103.84,922,9 +2013,12,19,7,30,0,0,0,5.300000000000001,9.4,92.17,922,9.4 +2013,12,19,8,30,84,55,193,6.1000000000000005,10.700000000000001,81.19,922,9.9 +2013,12,19,9,30,182,132,157,7.2,12.9,71.51,922,10.3 +2013,12,19,10,30,355,163,433,7.5,15.700000000000001,63.550000000000004,922,10.100000000000001 +2013,12,19,11,30,459,176,535,7.4,18.2,58.050000000000004,921,9.3 +2013,12,19,12,30,421,253,300,7.1000000000000005,20,55.76,920,8.4 +2013,12,19,13,30,446,215,426,6.6000000000000005,20.8,57.09,919,7.6000000000000005 +2013,12,19,14,30,348,199,315,5.7,20.6,61.800000000000004,919,6.7 +2013,12,19,15,30,289,106,514,4.5,19.6,69.19,919,6.300000000000001 +2013,12,19,16,30,177,40,688,3.2,16.7,78.48,919,6.6000000000000005 +2013,12,19,17,30,16,11,235,2.7,14.600000000000001,88.83,919,6.7 +2013,12,19,18,30,0,0,0,3.6,12.8,100.67,919,6.4 +2013,12,19,19,30,0,0,0,4.2,12.100000000000001,112.74000000000001,920,6.7 +2013,12,19,20,30,0,0,0,4.4,11.200000000000001,125.18,920,7.2 +2013,12,19,21,30,0,0,0,4.7,10.8,137.81,920,7.800000000000001 +2013,12,19,22,30,0,0,0,4.800000000000001,10.5,150.43,920,8.3 +2013,12,19,23,30,0,0,0,4.6000000000000005,10.200000000000001,162.52,920,8.8 +2013,12,20,0,30,0,0,0,4.3,9.8,170.91,920,9 +2013,12,20,1,30,0,0,0,3.6,9.200000000000001,165.54,920,9.1 +2013,12,20,2,30,0,0,0,3,8.6,153.86,920,8.6 +2013,12,20,3,30,0,0,0,2.3000000000000003,8.200000000000001,141.3,920,8.200000000000001 +2013,12,20,4,30,0,0,0,1.8,7.7,128.65,920,7.7 +2013,12,20,5,30,0,0,0,1.5,7.1000000000000005,116.14,921,7.1000000000000005 +2013,12,20,6,30,0,0,0,2.2,6.7,103.95,922,6.7 +2013,12,20,7,30,0,0,0,3.4000000000000004,6.4,92.27,923,5.7 +2013,12,20,8,30,12,12,0,3.7,6,81.28,924,3.8000000000000003 +2013,12,20,9,30,25,25,0,3.7,5.6000000000000005,71.60000000000001,924,2 +2013,12,20,10,30,80,80,0,3.8000000000000003,5.800000000000001,63.61,923,0.8 +2013,12,20,11,30,46,46,0,3.6,6.5,58.09,923,0.7000000000000001 +2013,12,20,12,30,76,76,0,3.2,6.4,55.78,923,0.8 +2013,12,20,13,30,36,36,0,3.2,5.5,57.08,923,1 +2013,12,20,14,30,59,59,0,3.4000000000000004,4.800000000000001,61.76,921,1 +2013,12,20,15,30,69,69,0,3.1,4.4,69.13,920,0.8 +2013,12,20,16,30,79,74,23,2.6,3.7,78.4,921,0.7000000000000001 +2013,12,20,17,30,4,4,0,2.3000000000000003,3.3000000000000003,88.74,921,0.5 +2013,12,20,18,30,0,0,0,2.5,2,100.57000000000001,921,0.2 +2013,12,20,19,30,0,0,0,2.1,1.4000000000000001,112.64,921,-0.1 +2013,12,20,20,30,0,0,0,1.8,1.3,125.08,920,-0.1 +2013,12,20,21,30,0,0,0,2.1,1.3,137.71,919,0.2 +2013,12,20,22,30,0,0,0,2.1,1.3,150.33,919,0.5 +2013,12,20,23,30,0,0,0,1.7000000000000002,1.3,162.43,919,0.8 +2013,12,21,0,30,0,0,0,1.9000000000000001,1.5,170.9,919,1 +2013,12,21,1,30,0,0,0,2.4000000000000004,1.6,165.63,918,1.3 +2013,12,21,2,30,0,0,0,2.5,1.7000000000000002,153.96,918,1.5 +2013,12,21,3,30,0,0,0,2.4000000000000004,1.8,141.41,917,1.5 +2013,12,21,4,30,0,0,0,2,2.1,128.75,917,1.6 +2013,12,21,5,30,0,0,0,1.6,2.3000000000000003,116.24000000000001,916,1.8 +2013,12,21,6,30,0,0,0,1.3,2.3000000000000003,104.05,916,2.1 +2013,12,21,7,30,0,0,0,1.7000000000000002,3.1,92.37,916,2.3000000000000003 +2013,12,21,8,30,41,41,0,3.3000000000000003,5.2,81.37,916,3.4000000000000004 +2013,12,21,9,30,99,99,0,5.4,7.800000000000001,71.67,916,4.9 +2013,12,21,10,30,227,193,77,7.1000000000000005,9.8,63.67,916,4.2 +2013,12,21,11,30,570,59,968,7.9,10.9,58.13,915,0.8 +2013,12,21,12,30,610,60,977,8.1,11.4,55.79,914,-0.7000000000000001 +2013,12,21,13,30,587,64,962,8.1,11.700000000000001,57.06,913,-0.6000000000000001 +2013,12,21,14,30,194,183,24,7.5,11.8,61.71,913,-0.1 +2013,12,21,15,30,358,57,843,6.2,11.5,69.06,913,0.2 +2013,12,21,16,30,178,44,662,4.4,10,78.32000000000001,914,0.7000000000000001 +2013,12,21,17,30,16,12,163,3.4000000000000004,8.8,88.67,915,1.4000000000000001 +2013,12,21,18,30,0,0,0,4.2,7.9,100.48,916,1.5 +2013,12,21,19,30,0,0,0,4.800000000000001,7.7,112.54,917,1.7000000000000002 +2013,12,21,20,30,0,0,0,5,7.2,124.97,918,1.8 +2013,12,21,21,30,0,0,0,4.7,6.4,137.6,919,1.6 +2013,12,21,22,30,0,0,0,3.8000000000000003,4.9,150.23,920,1.2000000000000002 +2013,12,21,23,30,0,0,0,3.2,2.9000000000000004,162.34,922,0.9 +2013,12,22,0,30,0,0,0,3.5,1.2000000000000002,170.87,923,0.30000000000000004 +2013,12,22,1,30,0,0,0,3.8000000000000003,-0.30000000000000004,165.71,924,-0.7000000000000001 +2013,12,22,2,30,0,0,0,3.5,-1.6,154.06,925,-2.2 +2013,12,22,3,30,0,0,0,3,-2.6,141.51,926,-3.7 +2013,12,22,4,30,0,0,0,2.6,-3.4000000000000004,128.86,927,-4.800000000000001 +2013,12,22,5,30,0,0,0,2.7,-3.7,116.35000000000001,928,-5.4 +2013,12,22,6,30,0,0,0,2.9000000000000004,-3.9000000000000004,104.15,929,-5.7 +2013,12,22,7,30,0,0,0,3.5,-3.3000000000000003,92.46000000000001,930,-5.9 +2013,12,22,8,30,23,23,0,4.5,-1.5,81.45,932,-5.800000000000001 +2013,12,22,9,30,157,129,90,5.1000000000000005,0.7000000000000001,71.74,933,-6.1000000000000005 +2013,12,22,10,30,464,62,908,5.1000000000000005,2.7,63.730000000000004,934,-5.9 +2013,12,22,11,30,570,67,953,5,4.3,58.15,934,-5.800000000000001 +2013,12,22,12,30,613,67,973,4.9,5.6000000000000005,55.79,933,-5.7 +2013,12,22,13,30,591,66,965,4.7,6.300000000000001,57.03,933,-5.5 +2013,12,22,14,30,505,62,933,4.5,6.5,61.660000000000004,933,-5 +2013,12,22,15,30,363,55,860,4,5.9,68.99,934,-4.5 +2013,12,22,16,30,185,41,702,2.6,3.9000000000000004,78.23,934,-4 +2013,12,22,17,30,19,12,258,1.6,2.3000000000000003,88.56,935,-2.9000000000000004 +2013,12,22,18,30,0,0,0,1.2000000000000002,-0.1,100.38,936,-3.3000000000000003 +2013,12,22,19,30,0,0,0,1.2000000000000002,-1,112.44,937,-3.7 +2013,12,22,20,30,0,0,0,1.1,-1.7000000000000002,124.87,937,-4.1000000000000005 +2013,12,22,21,30,0,0,0,1,-2.4000000000000004,137.5,937,-4.6000000000000005 +2013,12,22,22,30,0,0,0,1,-2.9000000000000004,150.12,938,-5 +2013,12,22,23,30,0,0,0,1,-3.2,162.24,938,-5.4 +2013,12,23,0,30,0,0,0,1,-3.6,170.84,938,-5.7 +2013,12,23,1,30,0,0,0,1,-4.1000000000000005,165.79,938,-5.9 +2013,12,23,2,30,0,0,0,1,-4.5,154.16,938,-6 +2013,12,23,3,30,0,0,0,1.1,-4.7,141.61,939,-5.9 +2013,12,23,4,30,0,0,0,1.2000000000000002,-4.9,128.96,939,-5.800000000000001 +2013,12,23,5,30,0,0,0,1.3,-4.9,116.44,939,-5.5 +2013,12,23,6,30,0,0,0,1.4000000000000001,-4.9,104.24000000000001,940,-5.2 +2013,12,23,7,30,0,0,0,2.1,-3.7,92.55,940,-4.9 +2013,12,23,8,30,126,32,637,2.7,-1.1,81.52,941,-4.4 +2013,12,23,9,30,313,47,850,2.8000000000000003,2,71.81,942,-3.8000000000000003 +2013,12,23,10,30,470,55,938,3.2,5.300000000000001,63.77,942,-3.3000000000000003 +2013,12,23,11,30,576,60,979,3.3000000000000003,8.200000000000001,58.18,941,-2.5 +2013,12,23,12,30,620,61,994,3.2,10.200000000000001,55.78,940,-2 +2013,12,23,13,30,598,59,988,3,11.3,56.99,940,-1.7000000000000002 +2013,12,23,14,30,512,55,959,2.6,11.8,61.59,939,-1.6 +2013,12,23,15,30,373,49,900,1.7000000000000002,11.3,68.91,939,-1.7000000000000002 +2013,12,23,16,30,192,37,753,0.6000000000000001,9.600000000000001,78.14,939,1 +2013,12,23,17,30,21,12,318,0.2,8.6,88.48,940,-1.5 +2013,12,23,18,30,0,0,0,1.1,4.9,100.27,940,-2.2 +2013,12,23,19,30,0,0,0,1.2000000000000002,2.9000000000000004,112.33,941,-2.2 +2013,12,23,20,30,0,0,0,1.2000000000000002,1.5,124.76,941,-2.3000000000000003 +2013,12,23,21,30,0,0,0,1.2000000000000002,0.5,137.38,942,-2.4000000000000004 +2013,12,23,22,30,0,0,0,1.2000000000000002,-0.30000000000000004,150.01,942,-2.7 +2013,12,23,23,30,0,0,0,1.2000000000000002,-1,162.14000000000001,942,-3.1 +2013,12,24,0,30,0,0,0,1.3,-1.7000000000000002,170.8,941,-3.3000000000000003 +2013,12,24,1,30,0,0,0,1.3,-2.2,165.86,941,-3.4000000000000004 +2013,12,24,2,30,0,0,0,1.4000000000000001,-2.6,154.26,941,-3.3000000000000003 +2013,12,24,3,30,0,0,0,1.4000000000000001,-3.1,141.71,940,-3.1 +2013,12,24,4,30,0,0,0,1.5,-3.4000000000000004,129.06,940,-3.4000000000000004 +2013,12,24,5,30,0,0,0,1.5,-3.6,116.54,940,-3.6 +2013,12,24,6,30,0,0,0,1.7000000000000002,-3.7,104.33,940,-3.7 +2013,12,24,7,30,0,0,0,2.4000000000000004,-2.4000000000000004,92.63,940,-2.4000000000000004 +2013,12,24,8,30,128,32,654,3.3000000000000003,0.30000000000000004,81.60000000000001,939,-2 +2013,12,24,9,30,315,47,861,3.8000000000000003,3.7,71.87,939,-1.5 +2013,12,24,10,30,473,55,948,5,7.800000000000001,63.82,939,-0.8 +2013,12,24,11,30,581,60,988,6.1000000000000005,11.100000000000001,58.19,937,-0.6000000000000001 +2013,12,24,12,30,626,63,1000,6.6000000000000005,13.100000000000001,55.76,936,-0.8 +2013,12,24,13,30,604,63,992,6.7,14.100000000000001,56.95,934,-1.2000000000000002 +2013,12,24,14,30,518,60,959,6.5,14.3,61.53,933,-1.7000000000000002 +2013,12,24,15,30,375,52,894,5.9,13.4,68.82000000000001,933,-2 +2013,12,24,16,30,194,40,741,4.4,10.600000000000001,78.04,933,-1.8 +2013,12,24,17,30,21,13,291,3.6,8.5,88.39,932,-1 +2013,12,24,18,30,0,0,0,4.3,6.2,100.16,932,-1.2000000000000002 +2013,12,24,19,30,0,0,0,4.6000000000000005,5.2,112.22,932,-1.3 +2013,12,24,20,30,0,0,0,4.5,4.2,124.64,932,-1.3 +2013,12,24,21,30,0,0,0,4.3,3.3000000000000003,137.27,932,-1.5 +2013,12,24,22,30,0,0,0,4,2.6,149.9,932,-1.6 +2013,12,24,23,30,0,0,0,3.6,1.9000000000000001,162.03,932,-1.8 +2013,12,25,0,30,0,0,0,3.2,1.2000000000000002,170.75,932,-1.9000000000000001 +2013,12,25,1,30,0,0,0,2.5,0.4,165.93,932,-1.9000000000000001 +2013,12,25,2,30,0,0,0,1.9000000000000001,-0.4,154.35,933,-1.8 +2013,12,25,3,30,0,0,0,1.7000000000000002,-1,141.81,933,-1.6 +2013,12,25,4,30,0,0,0,1.6,-1.3,129.15,933,-1.4000000000000001 +2013,12,25,5,30,0,0,0,1.9000000000000001,-1.6,116.63,934,-1.6 +2013,12,25,6,30,0,0,0,2.6,-1.7000000000000002,104.42,935,-1.7000000000000002 +2013,12,25,7,30,0,0,0,3.9000000000000004,-1,92.71000000000001,935,-1.1 +2013,12,25,8,30,119,37,565,5.300000000000001,0.6000000000000001,81.67,936,-1.1 +2013,12,25,9,30,150,127,75,5.9,2.7,71.92,937,-0.9 +2013,12,25,10,30,185,173,28,6,4.800000000000001,63.85,938,-0.6000000000000001 +2013,12,25,11,30,359,241,224,5.9,6.6000000000000005,58.2,938,-0.4 +2013,12,25,12,30,608,75,947,5.7,7.9,55.74,937,-0.2 +2013,12,25,13,30,425,231,356,5.6000000000000005,8.6,56.89,937,-0.1 +2013,12,25,14,30,346,203,297,5.5,8.700000000000001,61.45,938,-0.2 +2013,12,25,15,30,365,60,840,5.300000000000001,8,68.73,938,-0.5 +2013,12,25,16,30,188,44,688,4,6.1000000000000005,77.94,938,-0.9 +2013,12,25,17,30,22,14,265,3,4.7,88.28,938,-1.1 +2013,12,25,18,30,0,0,0,2.2,1.9000000000000001,100.05,939,-1.5 +2013,12,25,19,30,0,0,0,2,0.8,112.10000000000001,940,-2.1 +2013,12,25,20,30,0,0,0,1.7000000000000002,-0.2,124.53,940,-2.8000000000000003 +2013,12,25,21,30,0,0,0,1.5,-1.1,137.15,941,-3.4000000000000004 +2013,12,25,22,30,0,0,0,1.4000000000000001,-1.9000000000000001,149.78,941,-3.8000000000000003 +2013,12,25,23,30,0,0,0,1.3,-2.6,161.92000000000002,940,-4.2 +2013,12,26,0,30,0,0,0,1.3,-3.2,170.69,940,-4.5 +2013,12,26,1,30,0,0,0,1.4000000000000001,-3.7,166,940,-4.800000000000001 +2013,12,26,2,30,0,0,0,1.5,-4.1000000000000005,154.43,940,-5 +2013,12,26,3,30,0,0,0,1.5,-4.4,141.9,940,-5.1000000000000005 +2013,12,26,4,30,0,0,0,1.4000000000000001,-4.5,129.24,939,-5.300000000000001 +2013,12,26,5,30,0,0,0,1.4000000000000001,-4.6000000000000005,116.72,939,-5.4 +2013,12,26,6,30,0,0,0,1.3,-4.5,104.5,940,-5.5 +2013,12,26,7,30,0,0,0,1.3,-2.9000000000000004,92.79,940,-5.7 +2013,12,26,8,30,128,29,692,1.7000000000000002,0.2,81.73,941,-5 +2013,12,26,9,30,318,42,893,1.5,3.8000000000000003,71.97,941,-4.9 +2013,12,26,10,30,473,48,966,0.7000000000000001,7.4,63.88,940,-6.1000000000000005 +2013,12,26,11,30,582,52,1007,0.7000000000000001,9.8,58.2,939,-8.4 +2013,12,26,12,30,630,56,1019,0.9,11,55.71,938,-8.700000000000001 +2013,12,26,13,30,609,55,1013,1.1,11.600000000000001,56.83,937,-8.6 +2013,12,26,14,30,523,52,984,1.1,11.600000000000001,61.370000000000005,936,-8.5 +2013,12,26,15,30,381,47,919,0.7000000000000001,10.9,68.63,936,-8.3 +2013,12,26,16,30,157,58,468,0.4,9.200000000000001,77.83,936,-5.4 +2013,12,26,17,30,24,13,358,0.5,8.1,88.18,936,-6.9 +2013,12,26,18,30,0,0,0,1.2000000000000002,4.9,99.93,937,-6.9 +2013,12,26,19,30,0,0,0,1.4000000000000001,3.1,111.98,937,-6.300000000000001 +2013,12,26,20,30,0,0,0,1.4000000000000001,1.7000000000000002,124.41,938,-6 +2013,12,26,21,30,0,0,0,1.5,0.6000000000000001,137.03,938,-5.7 +2013,12,26,22,30,0,0,0,1.5,-0.1,149.66,938,-5.300000000000001 +2013,12,26,23,30,0,0,0,1.4000000000000001,-0.30000000000000004,161.8,939,-4.9 +2013,12,27,0,30,0,0,0,1.4000000000000001,-0.5,170.62,939,-4.5 +2013,12,27,1,30,0,0,0,1.4000000000000001,-0.8,166.05,939,-4.4 +2013,12,27,2,30,0,0,0,1.4000000000000001,-1.3,154.52,938,-4.5 +2013,12,27,3,30,0,0,0,1.4000000000000001,-1.9000000000000001,141.99,938,-4.7 +2013,12,27,4,30,0,0,0,1.4000000000000001,-2.5,129.33,938,-5.1000000000000005 +2013,12,27,5,30,0,0,0,1.5,-3,116.8,939,-5.6000000000000005 +2013,12,27,6,30,0,0,0,1.5,-3.3000000000000003,104.58,939,-6.2 +2013,12,27,7,30,0,0,0,1.8,-2,92.86,940,-6.6000000000000005 +2013,12,27,8,30,122,30,647,2.3000000000000003,0.8,81.79,940,-5.9 +2013,12,27,9,30,308,45,854,2,3.9000000000000004,72.02,940,-5.7 +2013,12,27,10,30,464,52,935,1.1,7.7,63.9,940,-4.6000000000000005 +2013,12,27,11,30,569,57,970,1.3,10.8,58.2,940,-6 +2013,12,27,12,30,615,59,986,1.9000000000000001,12,55.67,939,-6.5 +2013,12,27,13,30,592,59,973,2.1,12.5,56.77,938,-6.2 +2013,12,27,14,30,507,56,938,2,12.5,61.28,937,-5.7 +2013,12,27,15,30,369,50,869,1.5,11.700000000000001,68.53,937,-5 +2013,12,27,16,30,74,74,0,1.1,9.5,77.72,937,-1.2000000000000002 +2013,12,27,17,30,9,9,0,1.1,7.800000000000001,88.07000000000001,937,-1.2000000000000002 +2013,12,27,18,30,0,0,0,1.4000000000000001,5.1000000000000005,99.81,938,-2.2 +2013,12,27,19,30,0,0,0,1.5,4.1000000000000005,111.86,938,-2.1 +2013,12,27,20,30,0,0,0,1.6,3.4000000000000004,124.29,937,-2 +2013,12,27,21,30,0,0,0,1.8,2.9000000000000004,136.91,937,-1.6 +2013,12,27,22,30,0,0,0,2.1,2.5,149.54,937,-1.1 +2013,12,27,23,30,0,0,0,2.2,2,161.68,937,-0.4 +2013,12,28,0,30,0,0,0,2.1,1.5,170.54,936,0.4 +2013,12,28,1,30,0,0,0,2,1,166.1,936,1 +2013,12,28,2,30,0,0,0,1.9000000000000001,0.7000000000000001,154.6,935,0.7000000000000001 +2013,12,28,3,30,0,0,0,2,0.8,142.07,935,0.8 +2013,12,28,4,30,0,0,0,2.2,1.2000000000000002,129.41,934,1.2000000000000002 +2013,12,28,5,30,0,0,0,2.4000000000000004,1.7000000000000002,116.88,934,1.7000000000000002 +2013,12,28,6,30,0,0,0,2.7,2.2,104.65,934,2.2 +2013,12,28,7,30,0,0,0,2.9000000000000004,2.6,92.92,933,2.6 +2013,12,28,8,30,26,26,0,3.1,3.4000000000000004,81.84,933,3.1 +2013,12,28,9,30,58,58,0,3.5,5.1000000000000005,72.05,933,3.6 +2013,12,28,10,30,116,116,0,4.2,8,63.910000000000004,932,4.6000000000000005 +2013,12,28,11,30,300,243,108,4.9,11,58.18,931,5.300000000000001 +2013,12,28,12,30,324,264,107,5.300000000000001,12.9,55.63,929,5.4 +2013,12,28,13,30,294,250,81,5.5,13.9,56.69,928,5.1000000000000005 +2013,12,28,14,30,300,220,167,5.300000000000001,14.200000000000001,61.18,927,4.2 +2013,12,28,15,30,372,61,845,4.5,13.600000000000001,68.42,926,3.1 +2013,12,28,16,30,196,46,699,2.8000000000000003,10.8,77.61,925,2.6 +2013,12,28,17,30,25,15,279,1.8,8.6,87.96000000000001,925,2.7 +2013,12,28,18,30,0,0,0,2,6.300000000000001,99.69,925,2.3000000000000003 +2013,12,28,19,30,0,0,0,2.5,5.800000000000001,111.74000000000001,925,2.9000000000000004 +2013,12,28,20,30,0,0,0,3.2,5.5,124.16,925,3.8000000000000003 +2013,12,28,21,30,0,0,0,3.9000000000000004,5,136.79,925,4.7 +2013,12,28,22,30,0,0,0,4.4,4.6000000000000005,149.41,925,4.6000000000000005 +2013,12,28,23,30,0,0,0,4.800000000000001,4.4,161.56,925,4.4 +2013,12,29,0,30,0,0,0,4.9,4.3,170.46,925,4.3 +2013,12,29,1,30,0,0,0,4.6000000000000005,4.2,166.14000000000001,924,4.2 +2013,12,29,2,30,0,0,0,4.1000000000000005,4.2,154.67000000000002,924,4.2 +2013,12,29,3,30,0,0,0,3.6,4.3,142.15,924,4.3 +2013,12,29,4,30,0,0,0,3,4.3,129.49,925,4.3 +2013,12,29,5,30,0,0,0,2.6,4.2,116.96000000000001,926,4.2 +2013,12,29,6,30,0,0,0,3.3000000000000003,3.5,104.72,927,3.5 +2013,12,29,7,30,0,0,0,4.9,2.3000000000000003,92.98,929,2.3000000000000003 +2013,12,29,8,30,46,46,0,6.5,1.2000000000000002,81.89,931,0.2 +2013,12,29,9,30,5,5,0,7.1000000000000005,0.5,72.08,932,-2.1 +2013,12,29,10,30,93,93,0,7,0.1,63.92,933,-4.2 +2013,12,29,11,30,56,56,0,6.6000000000000005,0.1,58.160000000000004,934,-5.800000000000001 +2013,12,29,12,30,165,164,2,6.1000000000000005,0.30000000000000004,55.58,933,-7.2 +2013,12,29,13,30,77,77,0,5.7,0.5,56.61,933,-8.200000000000001 +2013,12,29,14,30,61,61,0,5.4,0.5,61.08,933,-8.9 +2013,12,29,15,30,48,48,0,5.2,0,68.3,934,-9.3 +2013,12,29,16,30,59,59,0,5,-0.8,77.48,934,-9.8 +2013,12,29,17,30,8,8,0,4.800000000000001,-1.3,87.83,935,-10.200000000000001 +2013,12,29,18,30,0,0,0,4,-2.5,99.56,936,-10.4 +2013,12,29,19,30,0,0,0,3.1,-3.5,111.61,936,-10.600000000000001 +2013,12,29,20,30,0,0,0,2.1,-4.5,124.03,936,-10.5 +2013,12,29,21,30,0,0,0,1.6,-5.2,136.66,936,-10.3 +2013,12,29,22,30,0,0,0,1.6,-5.7,149.29,936,-10.3 +2013,12,29,23,30,0,0,0,1.7000000000000002,-6,161.43,936,-10.600000000000001 +2013,12,30,0,30,0,0,0,1.7000000000000002,-6.2,170.37,936,-10.700000000000001 +2013,12,30,1,30,0,0,0,1.7000000000000002,-6.300000000000001,166.18,936,-10.700000000000001 +2013,12,30,2,30,0,0,0,1.9000000000000001,-6.300000000000001,154.74,936,-10.8 +2013,12,30,3,30,0,0,0,1.7000000000000002,-6.4,142.23,935,-10.8 +2013,12,30,4,30,0,0,0,1.5,-6.4,129.57,935,-10.600000000000001 +2013,12,30,5,30,0,0,0,1.3,-6.4,117.03,935,-10.5 +2013,12,30,6,30,0,0,0,1.2000000000000002,-6.300000000000001,104.79,935,-10.4 +2013,12,30,7,30,0,0,0,1.6,-5.300000000000001,93.04,935,-10.200000000000001 +2013,12,30,8,30,122,31,643,2.1,-2.7,81.93,935,-10.100000000000001 +2013,12,30,9,30,310,47,857,2.1,0.30000000000000004,72.11,936,-10 +2013,12,30,10,30,472,56,945,2,3.1,63.92,936,-9.3 +2013,12,30,11,30,582,61,988,2,5.6000000000000005,58.13,935,-8.200000000000001 +2013,12,30,12,30,630,61,1005,2,7.7,55.52,934,-7 +2013,12,30,13,30,612,60,1001,1.6,9.200000000000001,56.52,933,-6 +2013,12,30,14,30,524,56,964,1,10.100000000000001,60.97,933,-5.2 +2013,12,30,15,30,384,49,903,0.5,9.9,68.18,934,-4.800000000000001 +2013,12,30,16,30,205,38,763,0.8,7.300000000000001,77.36,934,-2 +2013,12,30,17,30,29,15,364,1.2000000000000002,5.2,87.71000000000001,935,-3.1 +2013,12,30,18,30,0,0,0,1.4000000000000001,2.1,99.43,937,-4.1000000000000005 +2013,12,30,19,30,0,0,0,1.4000000000000001,1.2000000000000002,111.48,938,-4.5 +2013,12,30,20,30,0,0,0,1.3,0.7000000000000001,123.9,939,-5.1000000000000005 +2013,12,30,21,30,0,0,0,1.1,0.6000000000000001,136.53,939,-5.7 +2013,12,30,22,30,0,0,0,0.8,1,149.16,940,-6.2 +2013,12,30,23,30,0,0,0,0.4,1.3,161.3,939,-6.5 +2013,12,31,0,30,0,0,0,0.5,0.8,170.27,939,-6.6000000000000005 +2013,12,31,1,30,0,0,0,0.9,-0.2,166.21,939,-6.6000000000000005 +2013,12,31,2,30,0,0,0,1.2000000000000002,-1.1,154.81,939,-6.6000000000000005 +2013,12,31,3,30,0,0,0,1.2000000000000002,-1.6,142.3,939,-6.6000000000000005 +2013,12,31,4,30,0,0,0,1,-1.4000000000000001,129.64000000000001,939,-6.5 +2013,12,31,5,30,0,0,0,0.8,-1,117.10000000000001,939,-6.5 +2013,12,31,6,30,0,0,0,0.7000000000000001,-1,104.85000000000001,939,-6.4 +2013,12,31,7,30,0,0,0,0.9,-0.7000000000000001,93.09,939,-6.4 +2013,12,31,8,30,120,27,662,1.6,1.2000000000000002,81.96000000000001,940,-5.2 +2013,12,31,9,30,308,41,869,2.6,4.3,72.12,940,-5.2 +2013,12,31,10,30,466,49,947,3.5,7.6000000000000005,63.910000000000004,939,-4.9 +2013,12,31,11,30,576,53,989,4.2,10,58.1,938,-4.5 +2013,12,31,12,30,626,58,1001,4.6000000000000005,11.8,55.45,936,-3.9000000000000004 +2013,12,31,13,30,609,59,994,4.800000000000001,13,56.43,935,-3.4000000000000004 +2013,12,31,14,30,527,57,965,4.800000000000001,13.5,60.86,934,-3.1 +2013,12,31,15,30,385,52,890,4,12.8,68.05,933,-2.7 +2013,12,31,16,30,206,41,749,2.7,9.600000000000001,77.23,933,-1.4000000000000001 +2013,12,31,17,30,30,16,345,2.1,7.2,87.59,933,-0.7000000000000001 +2013,12,31,18,30,0,0,0,1.6,7.1000000000000005,99.26,927,-1.7000000000000002 +2013,12,31,19,30,0,0,0,1.5,6.2,111.31,927,-2 +2013,12,31,20,30,0,0,0,1.5,5.5,123.74000000000001,928,-2.2 +2013,12,31,21,30,0,0,0,1.4000000000000001,4.800000000000001,136.37,928,-2.4000000000000004 +2013,12,31,22,30,0,0,0,1.7000000000000002,3.9000000000000004,148.99,928,-2.3000000000000003 +2013,12,31,23,30,0,0,0,2.6,2.9000000000000004,161.13,929,-2.1 diff --git a/examples/25_sizing_modes/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw b/examples/25_sizing_modes/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw new file mode 100644 index 000000000..cda6d99dd --- /dev/null +++ b/examples/25_sizing_modes/tech_inputs/weather/wind/32.31714_-100.18_windtoolkit_2013_60min_100m_120m.srw @@ -0,0 +1,8765 @@ +1052613,city??,TX,country??,2013,32.3187141418,-100.181152344,Not Available,1,8760 +WIND Toolkit data from NREL downloaded on 2024-10-21 +Temperature,Pressure,Speed,Direction,Temperature,Pressure,Speed,Direction +C,atm,m/s,Degrees,C,atm,m/s,Degrees +100,100,100,100,120,120,120,120 +10.1,0.91,9.780,300.7,10.2,0.91,10.210,301.8 +3.4,0.91,6.670,11.6,3.8,0.91,6.760,12.0 +2.9,0.91,5.490,18.0,2.8,0.91,5.720,18.7 +3.4,0.91,4.840,19.7,3.3,0.91,4.960,20.5 +3.0,0.91,6.270,22.7,2.9,0.91,6.360,23.3 +2.0,0.91,6.980,7.1,1.8,0.91,7.170,7.5 +0.7,0.91,7.500,4.0,0.6,0.91,7.550,4.1 +-0.8,0.91,8.190,3.8,-1.0,0.91,8.400,4.1 +-2.5,0.91,8.300,15.3,-2.7,0.91,8.700,15.6 +-3.0,0.91,7.710,11.7,-3.2,0.91,7.760,12.1 +-2.4,0.91,7.400,11.7,-2.6,0.91,7.430,11.6 +-1.3,0.91,6.610,4.2,-1.5,0.91,6.640,4.0 +-0.3,0.91,6.930,359.1,-0.5,0.91,6.940,358.8 +0.8,0.91,5.970,354.5,0.6,0.91,6.010,354.1 +1.8,0.91,6.030,354.5,1.6,0.91,6.070,354.0 +2.4,0.91,5.790,356.3,2.2,0.91,5.830,355.9 +2.5,0.91,5.570,358.2,2.3,0.91,5.620,357.9 +2.2,0.91,5.240,3.8,2.0,0.91,5.300,3.4 +1.6,0.91,5.240,0.3,1.5,0.91,5.350,0.9 +1.2,0.91,7.040,4.0,1.1,0.91,7.260,3.6 +0.8,0.91,7.720,2.0,0.7,0.91,7.750,2.7 +0.3,0.91,7.580,5.0,0.2,0.91,7.760,6.2 +-0.2,0.91,7.200,16.4,-0.4,0.91,7.430,17.1 +-0.8,0.91,7.960,19.0,-1.0,0.91,8.100,20.3 +-1.6,0.91,7.340,29.8,-1.7,0.91,7.530,32.1 +-2.0,0.91,6.620,33.7,-2.2,0.91,6.790,32.8 +-2.5,0.91,6.210,26.3,-2.6,0.91,6.320,24.5 +-2.9,0.91,5.090,32.4,-3.0,0.91,5.250,29.8 +-3.1,0.91,4.510,29.3,-3.1,0.91,4.750,25.6 +-3.1,0.91,4.150,21.4,-3.1,0.91,4.440,19.4 +-3.4,0.91,3.050,37.3,-3.4,0.91,3.360,33.6 +-3.4,0.91,2.520,25.6,-3.4,0.91,2.840,24.3 +-3.3,0.91,2.520,13.8,-3.3,0.91,2.810,15.0 +-3.0,0.91,1.780,354.6,-3.0,0.91,2.180,358.3 +-1.5,0.91,1.810,342.4,-1.7,0.91,1.830,340.8 +-0.0,0.91,2.230,338.5,-0.2,0.91,2.240,337.4 +1.5,0.91,2.550,334.9,1.3,0.91,2.560,334.7 +2.6,0.91,3.020,328.8,2.4,0.91,3.030,329.5 +3.7,0.91,2.980,342.7,3.5,0.91,3.010,342.5 +4.3,0.91,3.410,357.6,4.1,0.91,3.420,356.6 +4.5,0.91,3.800,7.0,4.3,0.91,3.790,6.0 +4.4,0.91,3.570,5.2,4.2,0.91,3.570,5.3 +3.9,0.91,3.690,40.3,3.8,0.91,3.710,39.1 +3.4,0.91,3.360,45.7,3.3,0.91,3.650,45.0 +2.9,0.91,3.150,52.3,2.9,0.91,3.510,51.0 +2.7,0.91,2.890,39.3,2.7,0.91,3.240,39.6 +2.3,0.91,3.270,41.9,2.4,0.91,3.610,42.8 +1.9,0.91,3.260,49.6,2.0,0.91,3.630,49.2 +2.2,0.91,3.320,41.0,2.2,0.91,3.680,40.0 +2.2,0.92,3.590,35.1,2.3,0.92,4.010,35.6 +1.9,0.92,3.720,32.2,2.0,0.92,4.170,33.4 +1.2,0.92,4.270,33.6,1.3,0.92,4.730,34.4 +-0.1,0.92,4.800,17.5,-0.0,0.92,5.050,19.6 +-0.5,0.92,5.770,24.5,-0.3,0.92,6.090,26.4 +-1.2,0.92,6.420,29.1,-1.1,0.92,6.870,30.8 +-2.0,0.92,6.810,34.0,-1.9,0.92,7.110,37.4 +-2.5,0.92,6.930,38.6,-2.3,0.92,7.290,41.5 +-2.5,0.92,6.220,34.5,-2.4,0.92,6.870,36.0 +-1.4,0.92,5.530,32.5,-1.6,0.92,5.660,32.6 +-0.1,0.92,6.140,35.4,-0.3,0.92,6.210,35.3 +1.1,0.92,6.120,36.7,0.9,0.92,6.170,36.5 +1.9,0.92,5.350,32.5,1.7,0.92,5.390,32.4 +2.4,0.92,5.260,36.1,2.2,0.92,5.300,36.1 +2.6,0.92,4.510,32.1,2.5,0.92,4.540,32.3 +2.7,0.92,4.160,30.2,2.5,0.92,4.180,30.4 +2.7,0.92,4.030,41.0,2.5,0.92,4.070,41.2 +2.5,0.92,3.990,61.4,2.3,0.92,4.010,60.6 +2.3,0.92,3.840,61.6,2.2,0.92,3.780,60.9 +2.1,0.92,2.540,55.8,2.0,0.92,2.750,55.9 +1.8,0.92,2.340,70.1,1.7,0.92,2.580,71.0 +1.6,0.92,1.710,60.6,1.5,0.92,1.960,64.3 +1.3,0.92,1.660,71.5,1.2,0.92,1.890,73.8 +1.1,0.92,1.190,92.3,1.1,0.92,1.450,91.6 +1.0,0.92,0.700,94.3,0.9,0.92,0.940,90.8 +1.0,0.92,1.330,174.2,0.8,0.92,1.390,164.5 +0.8,0.92,2.190,171.5,0.7,0.92,2.280,166.2 +0.6,0.92,3.480,173.5,0.5,0.92,3.590,170.4 +0.3,0.92,5.550,170.9,0.2,0.92,5.700,170.7 +-0.5,0.92,4.400,165.4,-0.6,0.92,4.470,161.6 +-0.8,0.92,3.690,174.8,-1.0,0.92,3.960,171.5 +-0.8,0.92,3.520,159.5,-0.9,0.92,3.150,158.5 +-0.5,0.92,2.520,223.1,-0.7,0.92,2.530,220.3 +0.5,0.92,3.320,182.6,0.3,0.92,3.390,181.8 +1.1,0.92,4.310,172.1,0.9,0.92,4.350,171.9 +1.8,0.92,4.640,178.3,1.6,0.92,4.680,177.9 +2.5,0.92,4.660,183.7,2.3,0.92,4.710,183.5 +3.1,0.92,4.480,187.9,2.9,0.92,4.530,187.9 +3.6,0.92,4.510,191.0,3.4,0.92,4.550,190.7 +3.7,0.92,4.450,196.7,3.5,0.92,4.470,196.4 +3.7,0.92,4.710,193.2,3.5,0.92,4.740,193.3 +3.6,0.92,4.930,198.8,3.4,0.92,4.970,199.6 +3.4,0.92,4.820,192.0,3.2,0.92,4.810,192.4 +3.0,0.92,6.390,197.6,2.8,0.92,6.540,198.1 +2.8,0.92,6.760,201.0,2.6,0.92,7.200,200.9 +2.7,0.92,7.030,205.4,2.6,0.92,7.260,206.2 +2.2,0.91,7.500,208.0,2.1,0.91,7.780,208.3 +1.7,0.91,9.270,220.4,1.6,0.91,9.600,220.2 +1.3,0.91,9.320,217.8,1.2,0.91,9.690,218.3 +0.9,0.91,10.630,225.0,0.9,0.91,10.990,226.2 +0.5,0.91,10.750,228.3,0.5,0.91,11.160,229.1 +0.2,0.91,11.340,228.6,0.2,0.91,11.720,229.2 +-0.0,0.91,10.680,232.6,0.0,0.91,11.260,234.2 +-0.3,0.91,10.880,229.5,-0.1,0.91,11.540,232.3 +-0.5,0.91,10.870,228.8,-0.3,0.91,11.600,231.9 +-0.3,0.91,11.520,231.6,0.0,0.91,12.170,234.7 +-0.2,0.91,10.280,234.7,-0.1,0.91,10.850,236.6 +1.6,0.91,8.330,240.3,1.4,0.91,8.420,240.9 +3.6,0.91,7.760,239.7,3.4,0.91,7.800,240.1 +5.4,0.91,6.430,237.8,5.2,0.91,6.480,238.1 +6.8,0.91,5.830,240.0,6.6,0.91,5.860,240.4 +8.1,0.91,6.760,241.4,7.9,0.91,6.790,241.8 +9.0,0.91,5.750,255.5,8.8,0.91,5.810,255.9 +9.5,0.91,6.340,258.9,9.3,0.91,6.400,259.1 +9.3,0.91,5.510,278.6,9.1,0.91,5.640,278.6 +9.0,0.91,6.540,277.3,8.8,0.91,6.620,277.1 +9.2,0.91,5.800,278.1,9.1,0.91,5.850,282.1 +9.6,0.91,6.310,297.4,9.5,0.91,6.280,299.9 +9.2,0.91,6.230,348.9,9.1,0.91,6.160,351.1 +8.5,0.91,6.160,8.2,8.4,0.91,6.310,9.2 +7.3,0.91,8.160,1.9,7.3,0.91,8.290,5.8 +6.6,0.92,8.850,358.1,6.6,0.92,9.010,359.0 +4.2,0.92,11.970,13.8,4.0,0.92,12.660,16.4 +2.9,0.92,11.900,14.0,2.9,0.92,12.480,17.3 +2.1,0.92,11.640,13.2,2.1,0.92,12.100,17.4 +1.7,0.92,11.020,14.6,1.7,0.92,11.290,18.7 +1.4,0.92,10.820,14.5,1.5,0.92,11.190,18.4 +1.3,0.92,10.730,17.1,1.4,0.92,11.070,20.8 +1.1,0.92,10.350,17.6,1.1,0.92,10.660,21.1 +1.0,0.92,10.090,18.8,1.1,0.92,10.210,21.9 +0.6,0.92,8.010,17.1,0.7,0.92,8.540,19.4 +1.3,0.92,6.020,16.6,1.2,0.92,6.170,17.3 +2.8,0.92,5.490,21.7,2.6,0.92,5.510,21.8 +4.2,0.92,4.910,24.0,4.0,0.92,4.930,23.9 +5.3,0.92,4.140,26.7,5.1,0.92,4.150,26.8 +6.4,0.92,3.790,29.3,6.2,0.92,3.810,29.5 +7.1,0.92,2.990,35.1,6.9,0.92,3.000,35.1 +7.3,0.92,3.060,50.5,7.1,0.92,3.050,50.1 +7.0,0.92,2.890,58.4,6.8,0.92,2.810,58.9 +6.6,0.92,3.110,72.4,6.5,0.92,3.100,71.8 +6.4,0.92,2.700,88.4,6.3,0.92,2.640,89.9 +6.1,0.92,3.180,95.2,6.0,0.92,3.230,95.8 +6.2,0.92,3.740,117.7,6.1,0.92,3.900,119.8 +5.8,0.92,4.470,134.7,5.7,0.92,4.440,135.0 +5.6,0.91,5.980,146.7,5.5,0.91,6.070,148.5 +5.5,0.91,7.570,160.3,5.5,0.91,7.650,160.8 +5.2,0.91,9.000,166.4,5.2,0.91,9.210,167.1 +4.6,0.91,9.720,168.4,4.8,0.91,9.970,168.6 +4.4,0.91,10.230,170.4,4.7,0.91,10.540,170.3 +4.2,0.91,10.210,171.1,4.5,0.91,10.560,171.0 +3.9,0.91,10.070,174.8,4.3,0.91,10.430,173.9 +3.4,0.91,10.240,174.2,3.8,0.91,10.670,173.2 +3.2,0.91,10.110,172.9,3.7,0.91,10.620,172.2 +3.1,0.91,9.620,171.4,3.5,0.91,10.060,170.6 +2.4,0.91,8.960,173.0,2.9,0.91,9.700,172.5 +3.0,0.91,7.170,172.1,3.0,0.91,7.900,171.1 +4.2,0.91,6.440,168.2,4.0,0.91,6.530,168.0 +5.1,0.91,6.170,168.8,4.9,0.91,6.230,168.8 +6.3,0.91,6.490,167.9,6.1,0.91,6.550,167.8 +7.3,0.91,6.150,165.3,7.1,0.91,6.210,165.2 +7.8,0.91,5.990,157.8,7.6,0.91,6.060,157.8 +7.8,0.91,6.450,155.7,7.6,0.91,6.520,155.8 +7.4,0.91,6.360,151.1,7.2,0.91,6.560,151.2 +6.9,0.91,5.600,147.4,6.7,0.91,6.090,148.6 +6.3,0.91,7.530,146.1,6.2,0.91,7.990,146.7 +6.1,0.91,9.330,145.9,6.0,0.91,9.920,146.3 +5.9,0.91,10.050,152.1,5.8,0.91,10.720,152.4 +5.7,0.91,10.070,154.8,5.6,0.91,10.770,154.9 +5.2,0.91,9.370,153.9,5.2,0.91,10.260,154.4 +4.9,0.91,9.880,158.5,4.9,0.91,10.810,159.4 +4.7,0.91,10.480,164.9,4.7,0.91,11.340,166.1 +4.2,0.91,9.550,168.0,4.3,0.91,10.460,169.6 +3.7,0.91,8.920,167.6,3.8,0.91,9.750,169.6 +3.9,0.91,9.240,176.3,4.0,0.91,9.730,178.2 +5.0,0.91,7.800,186.9,5.3,0.91,8.380,187.4 +4.5,0.91,6.230,173.8,4.7,0.91,6.780,174.2 +5.0,0.91,5.390,165.0,5.3,0.91,5.820,165.3 +5.0,0.91,3.720,152.5,5.2,0.91,4.030,154.3 +4.3,0.91,3.070,132.1,4.4,0.91,3.530,137.3 +4.7,0.91,3.020,116.5,5.0,0.91,3.430,120.5 +4.7,0.91,3.150,98.0,4.8,0.91,3.560,103.7 +3.9,0.91,3.110,83.0,4.1,0.91,3.410,88.7 +4.1,0.91,4.050,78.4,4.3,0.91,4.610,82.8 +4.2,0.91,3.710,73.2,4.4,0.91,4.350,80.0 +4.0,0.91,4.220,61.5,4.0,0.91,4.590,67.3 +3.7,0.91,3.970,46.2,3.6,0.91,4.210,50.3 +3.6,0.91,4.570,46.4,3.6,0.91,4.900,49.2 +3.7,0.91,4.640,37.4,3.7,0.91,4.920,40.4 +3.7,0.91,5.400,41.0,3.6,0.91,5.600,42.6 +3.7,0.91,7.110,37.4,3.6,0.91,7.330,38.6 +3.6,0.91,7.980,36.2,3.5,0.91,8.120,37.4 +3.5,0.91,7.990,37.4,3.3,0.91,8.180,37.9 +3.5,0.91,8.880,32.4,3.4,0.91,9.270,33.4 +3.5,0.91,9.180,29.1,3.5,0.91,9.640,30.2 +3.7,0.91,9.380,30.2,3.7,0.91,9.860,31.4 +3.9,0.91,8.990,34.7,3.8,0.91,9.390,35.5 +4.0,0.91,9.220,21.4,4.0,0.91,9.590,23.4 +4.1,0.91,10.750,24.9,4.1,0.91,11.250,26.5 +4.2,0.91,8.770,29.6,4.1,0.91,9.140,29.9 +4.0,0.91,8.760,21.3,4.0,0.91,9.140,22.0 +3.9,0.91,9.460,23.4,3.8,0.91,9.920,23.6 +4.1,0.91,8.990,18.9,4.0,0.91,9.450,19.4 +3.7,0.91,10.210,23.1,3.5,0.91,10.630,23.8 +3.6,0.91,10.400,17.2,3.4,0.91,10.760,18.3 +3.3,0.91,7.680,18.1,3.1,0.91,7.930,18.8 +2.6,0.91,8.510,6.7,2.4,0.91,8.760,8.1 +2.3,0.91,10.140,8.3,2.2,0.91,10.530,9.7 +2.5,0.91,10.130,11.7,2.4,0.91,10.590,12.6 +2.7,0.91,10.120,16.3,2.6,0.91,10.610,17.6 +2.9,0.91,11.070,14.4,2.8,0.91,11.660,15.6 +3.1,0.91,9.630,21.2,3.0,0.91,10.100,22.2 +3.5,0.91,9.830,31.8,3.4,0.91,10.230,32.4 +3.7,0.91,8.160,23.8,3.6,0.91,8.530,24.5 +3.9,0.91,7.070,22.8,3.8,0.91,7.360,23.4 +4.0,0.91,6.400,7.4,3.9,0.91,6.660,8.6 +4.0,0.91,5.600,12.5,3.9,0.91,5.900,13.3 +4.1,0.91,4.580,4.0,4.1,0.91,4.770,7.8 +4.2,0.91,3.250,340.7,4.2,0.91,3.250,348.0 +4.7,0.91,3.380,357.9,5.0,0.91,3.130,2.2 +3.9,0.91,4.280,354.3,4.0,0.91,4.000,357.2 +4.4,0.91,2.810,322.9,4.6,0.91,2.680,325.3 +4.8,0.91,1.810,336.7,5.0,0.91,1.600,331.3 +6.0,0.91,1.970,241.9,6.1,0.91,2.140,232.6 +5.9,0.91,2.750,242.4,6.0,0.91,2.840,236.4 +5.4,0.91,5.050,249.3,5.5,0.91,5.340,247.9 +4.9,0.91,5.640,263.3,5.0,0.91,6.010,265.5 +5.1,0.91,4.970,288.9,5.0,0.91,5.500,289.0 +5.6,0.91,4.270,263.7,5.5,0.91,4.790,266.0 +6.7,0.91,6.000,259.2,6.5,0.91,6.050,259.7 +7.5,0.91,5.310,276.4,7.3,0.91,5.380,276.4 +9.3,0.91,5.940,276.7,9.1,0.91,6.060,276.5 +9.9,0.91,6.920,268.9,9.7,0.91,7.000,268.9 +10.2,0.91,5.790,264.2,10.0,0.91,5.880,264.3 +10.7,0.91,5.520,246.8,10.5,0.91,5.610,246.9 +10.8,0.90,6.650,238.0,10.6,0.90,6.850,238.3 +10.8,0.90,6.580,232.9,10.7,0.90,6.730,232.8 +11.2,0.90,9.280,226.2,11.1,0.90,9.520,226.4 +11.8,0.90,11.150,216.2,11.9,0.90,11.390,216.8 +10.5,0.90,12.670,216.0,10.7,0.90,13.220,219.3 +11.4,0.90,13.400,222.1,11.7,0.90,13.790,223.1 +11.6,0.90,13.840,215.6,12.2,0.90,14.530,215.7 +11.0,0.90,14.590,212.5,11.4,0.90,15.760,215.2 +9.6,0.90,16.710,215.8,10.0,0.90,17.930,217.7 +10.9,0.90,19.540,215.3,11.2,0.90,20.540,215.4 +11.3,0.90,19.370,210.4,11.5,0.90,20.420,210.2 +9.7,0.90,19.010,201.8,10.0,0.90,20.160,202.7 +9.7,0.90,18.720,202.3,10.1,0.90,20.050,203.1 +9.1,0.90,18.640,201.0,9.3,0.90,19.970,202.1 +8.5,0.90,17.890,201.0,8.8,0.90,19.260,202.2 +8.3,0.90,17.210,200.2,8.5,0.90,18.340,201.0 +9.3,0.90,17.990,202.3,9.4,0.90,18.730,202.9 +10.1,0.90,16.470,202.8,10.0,0.90,17.270,203.4 +11.6,0.90,12.870,202.4,11.5,0.90,13.080,202.9 +13.3,0.90,11.630,201.7,13.1,0.90,11.740,202.0 +14.9,0.90,10.200,203.2,14.7,0.90,10.320,203.5 +16.1,0.90,11.080,204.9,16.0,0.90,11.170,205.1 +17.5,0.90,9.630,205.9,17.3,0.90,9.760,206.2 +17.4,0.90,8.610,199.8,17.2,0.90,8.780,200.2 +16.9,0.90,9.880,198.9,16.8,0.90,10.520,200.8 +16.7,0.90,12.630,201.6,16.6,0.90,13.330,202.2 +16.0,0.90,11.680,197.1,16.0,0.90,12.250,198.7 +15.3,0.90,11.130,196.3,15.3,0.90,11.860,198.0 +14.8,0.90,10.670,201.7,14.8,0.90,11.340,203.6 +14.3,0.90,9.410,205.8,14.4,0.90,10.010,207.7 +14.1,0.90,7.940,215.5,14.2,0.90,8.260,219.2 +14.7,0.90,5.490,255.0,14.9,0.90,5.820,267.9 +13.1,0.90,6.930,328.9,13.2,0.90,7.190,326.1 +12.8,0.90,8.050,348.3,12.7,0.90,8.340,350.7 +10.1,0.90,10.410,10.1,9.9,0.90,10.640,10.5 +8.4,0.90,7.790,18.1,8.3,0.90,8.020,18.8 +7.4,0.90,7.340,29.2,7.2,0.90,7.540,29.4 +6.4,0.90,8.530,29.4,6.3,0.90,8.990,29.3 +6.0,0.90,9.190,22.0,5.8,0.90,9.630,23.0 +5.8,0.90,9.450,28.5,5.6,0.90,9.880,29.2 +5.4,0.90,10.320,32.8,5.2,0.90,10.640,33.1 +5.0,0.90,9.560,23.7,4.9,0.90,9.650,23.9 +5.1,0.90,9.570,32.9,5.0,0.90,9.630,33.0 +5.7,0.90,8.610,22.0,5.5,0.90,8.670,22.1 +6.1,0.90,8.470,14.8,5.9,0.90,8.510,14.9 +6.3,0.90,7.680,11.0,6.1,0.90,7.720,10.8 +6.7,0.90,7.920,12.3,6.5,0.90,7.960,12.2 +6.6,0.90,8.120,16.8,6.4,0.90,8.180,16.6 +6.1,0.90,8.090,19.4,5.9,0.90,8.150,19.4 +5.0,0.90,8.960,23.6,4.9,0.90,9.290,23.4 +3.6,0.90,9.880,19.1,3.4,0.90,10.390,19.4 +2.4,0.90,9.680,18.0,2.3,0.90,10.140,18.4 +1.3,0.90,9.250,30.0,1.1,0.90,9.820,29.5 +-0.5,0.90,11.410,30.0,-0.7,0.90,11.670,29.0 +-1.6,0.90,10.850,29.9,-1.8,0.90,11.460,29.9 +-2.5,0.91,10.580,27.9,-2.6,0.91,11.200,28.5 +-3.2,0.91,11.090,26.0,-3.4,0.91,11.670,27.0 +-3.9,0.91,11.090,28.0,-4.1,0.91,11.630,28.6 +-4.3,0.91,10.350,26.4,-4.5,0.91,10.770,26.6 +-4.4,0.91,8.390,17.1,-4.6,0.91,8.680,16.7 +-4.8,0.91,8.640,9.2,-5.0,0.91,8.750,9.3 +-5.2,0.91,9.160,5.2,-5.4,0.91,9.270,5.3 +-5.4,0.91,9.230,13.7,-5.6,0.91,9.360,13.8 +-5.5,0.91,8.850,13.7,-5.7,0.91,8.990,13.9 +-5.2,0.91,7.750,13.5,-5.4,0.91,7.800,13.5 +-4.4,0.91,8.340,15.3,-4.5,0.91,8.390,15.2 +-3.5,0.91,8.490,18.1,-3.7,0.91,8.530,17.9 +-2.5,0.91,7.890,19.6,-2.7,0.91,7.940,19.6 +-1.6,0.91,7.230,21.4,-1.8,0.91,7.270,21.4 +-0.8,0.91,6.930,21.2,-1.1,0.91,6.970,21.2 +-0.5,0.91,6.620,26.5,-0.7,0.91,6.660,26.4 +-0.4,0.91,6.890,32.3,-0.6,0.91,6.940,32.2 +-0.8,0.91,6.790,35.4,-1.0,0.91,6.870,35.4 +-1.2,0.91,7.820,30.7,-1.4,0.91,7.780,31.3 +-1.8,0.91,8.080,46.0,-1.9,0.91,8.490,47.1 +-2.4,0.91,9.730,50.9,-2.4,0.91,10.080,51.7 +-3.2,0.91,8.620,50.9,-3.3,0.91,9.130,51.8 +-3.6,0.91,8.980,48.9,-3.7,0.91,9.590,49.6 +-4.0,0.91,9.330,50.9,-4.2,0.91,9.820,52.1 +-4.6,0.91,9.590,53.9,-4.8,0.91,10.080,55.1 +-5.1,0.91,9.440,54.8,-5.3,0.91,9.870,55.8 +-5.6,0.91,8.890,54.2,-5.8,0.91,9.170,55.0 +-6.0,0.91,8.520,53.7,-6.2,0.91,8.830,54.5 +-6.3,0.91,7.670,47.1,-6.4,0.91,7.950,47.9 +-6.6,0.91,6.960,39.2,-6.8,0.91,7.100,40.3 +-7.0,0.91,7.080,40.0,-7.2,0.91,7.220,40.9 +-7.3,0.91,6.930,35.5,-7.5,0.91,7.180,36.8 +-7.7,0.91,7.250,33.2,-7.9,0.91,7.470,34.5 +-7.5,0.91,6.930,36.5,-7.7,0.91,6.950,37.0 +-6.7,0.91,6.910,39.7,-6.9,0.91,6.930,39.9 +-5.5,0.91,6.960,41.4,-5.7,0.91,6.990,41.6 +-4.3,0.91,6.700,44.0,-4.5,0.91,6.720,44.2 +-3.1,0.91,6.500,46.9,-3.3,0.91,6.520,47.2 +-2.4,0.91,6.360,48.2,-2.6,0.91,6.380,48.6 +-1.9,0.91,6.100,48.5,-2.1,0.91,6.130,48.9 +-1.8,0.91,6.350,47.9,-1.9,0.91,6.390,48.4 +-1.9,0.91,6.430,53.0,-2.0,0.91,6.570,53.5 +-2.4,0.91,7.960,55.4,-2.5,0.91,7.880,55.2 +-2.8,0.91,8.160,57.4,-2.9,0.91,8.460,58.8 +-3.5,0.91,8.060,58.6,-3.5,0.91,8.510,58.7 +-3.5,0.91,7.990,55.4,-3.5,0.91,8.150,55.7 +-3.6,0.91,7.690,54.9,-3.6,0.91,8.070,54.5 +-4.0,0.91,6.940,54.1,-3.8,0.91,7.460,54.3 +-4.2,0.91,6.060,54.4,-4.0,0.91,6.620,55.0 +-4.7,0.91,5.380,46.4,-4.5,0.91,5.780,48.6 +-4.7,0.91,5.070,45.5,-4.5,0.91,5.470,48.3 +-5.5,0.91,5.120,35.8,-5.5,0.91,5.330,41.4 +-5.9,0.91,5.300,23.7,-5.8,0.91,5.440,30.0 +-6.3,0.91,4.990,25.1,-6.1,0.91,5.270,31.3 +-6.3,0.91,5.530,13.8,-6.2,0.91,5.890,18.7 +-6.7,0.91,6.270,4.9,-6.8,0.91,6.560,7.0 +-7.0,0.91,6.250,8.0,-7.0,0.91,6.610,10.5 +-6.6,0.91,6.330,10.4,-6.8,0.91,6.410,10.7 +-5.5,0.91,5.710,10.1,-5.7,0.91,5.740,10.3 +-4.0,0.91,6.870,7.0,-4.2,0.91,6.910,7.1 +-2.7,0.91,7.640,4.0,-2.9,0.91,7.700,4.2 +-1.8,0.91,7.310,2.7,-2.0,0.91,7.360,2.9 +-1.0,0.91,7.540,0.8,-1.2,0.91,7.620,0.7 +-0.6,0.91,7.550,358.7,-0.8,0.91,7.640,358.4 +-0.5,0.91,8.300,355.4,-0.7,0.91,8.350,355.4 +-0.8,0.91,7.700,349.9,-0.9,0.91,7.900,350.1 +-0.9,0.91,8.530,351.4,-1.1,0.91,8.500,351.6 +-1.1,0.91,7.620,352.9,-1.2,0.91,7.810,353.2 +-1.2,0.91,7.530,357.5,-1.3,0.91,7.730,356.9 +-1.2,0.91,6.960,358.1,-1.4,0.91,7.170,358.3 +-1.3,0.91,6.590,353.4,-1.5,0.91,6.770,352.9 +-1.4,0.91,6.690,343.1,-1.5,0.91,6.990,344.0 +-1.2,0.91,6.790,341.2,-1.3,0.91,6.960,342.6 +-1.0,0.91,6.500,335.8,-1.1,0.91,6.590,337.6 +-0.9,0.91,6.210,326.0,-0.9,0.91,6.460,328.9 +-1.4,0.91,5.360,311.1,-1.2,0.91,5.650,315.2 +-1.2,0.91,5.790,298.9,-1.2,0.91,5.790,301.1 +-1.7,0.91,7.740,298.7,-1.6,0.91,7.740,301.4 +-1.9,0.91,9.030,302.7,-1.7,0.91,8.910,306.2 +-1.3,0.91,8.740,306.4,-1.1,0.91,8.640,309.2 +-1.3,0.91,9.420,295.4,-1.1,0.91,9.080,298.9 +-1.0,0.91,8.270,289.5,-0.7,0.91,8.830,291.8 +0.4,0.91,6.210,281.9,0.2,0.91,6.490,282.6 +1.4,0.91,7.410,291.3,1.2,0.91,7.500,291.5 +2.9,0.91,7.620,299.8,2.8,0.91,7.720,300.0 +4.3,0.91,8.490,304.8,4.1,0.91,8.610,304.9 +5.3,0.91,8.810,310.6,5.1,0.91,8.960,310.6 +6.4,0.91,9.160,306.1,6.2,0.91,9.320,306.3 +6.8,0.91,9.820,326.3,6.6,0.91,10.030,326.2 +7.3,0.91,8.900,322.6,7.1,0.91,9.240,322.4 +7.8,0.91,11.690,322.1,7.7,0.91,12.290,322.6 +7.7,0.91,10.740,329.5,7.7,0.91,11.260,332.0 +8.2,0.91,11.650,334.1,8.2,0.91,11.830,335.6 +8.2,0.91,11.510,335.7,8.1,0.91,11.500,337.0 +8.8,0.91,13.760,339.0,8.8,0.91,13.980,340.7 +8.2,0.91,13.390,343.2,8.4,0.91,13.620,347.4 +7.4,0.91,12.570,340.0,7.9,0.91,12.890,345.7 +6.9,0.92,12.070,341.2,7.4,0.92,12.570,347.1 +7.9,0.92,11.420,348.5,8.2,0.92,11.620,353.4 +7.6,0.92,10.750,345.3,7.9,0.92,10.750,349.3 +7.4,0.92,11.330,345.5,7.7,0.92,11.410,348.9 +6.2,0.92,11.260,347.4,6.5,0.92,11.680,351.7 +6.0,0.92,12.460,355.2,6.2,0.92,12.750,359.2 +5.1,0.92,11.870,3.6,5.3,0.92,12.260,7.8 +4.3,0.92,10.420,0.4,4.4,0.92,10.720,5.1 +3.9,0.92,8.230,357.2,3.9,0.92,8.660,359.8 +4.1,0.92,7.720,356.9,4.0,0.92,8.100,358.3 +5.1,0.92,6.710,8.8,5.0,0.92,6.760,8.9 +6.5,0.92,6.060,9.5,6.3,0.92,6.090,9.7 +7.5,0.92,5.690,9.0,7.3,0.92,5.710,9.2 +8.3,0.92,5.200,11.7,8.1,0.92,5.230,11.6 +8.8,0.92,4.780,17.2,8.6,0.92,4.790,16.8 +9.0,0.92,3.970,23.9,8.8,0.92,3.970,23.9 +8.9,0.92,4.230,26.5,8.7,0.92,4.250,26.8 +8.2,0.92,4.460,48.1,8.0,0.92,4.460,47.2 +8.0,0.92,4.060,42.3,8.0,0.92,4.280,43.0 +7.6,0.92,2.660,48.0,7.6,0.92,3.020,47.3 +7.6,0.92,3.040,58.5,7.6,0.92,3.330,57.8 +7.8,0.92,2.310,70.6,7.8,0.92,2.570,68.8 +7.9,0.92,2.450,88.4,7.9,0.92,2.610,84.5 +7.8,0.92,2.710,104.1,7.8,0.92,2.710,103.5 +8.1,0.92,3.290,133.5,8.0,0.92,3.330,136.8 +8.1,0.92,3.380,149.2,8.1,0.92,3.310,151.9 +7.9,0.92,4.730,159.0,8.0,0.92,4.620,161.4 +7.8,0.92,6.390,165.2,8.0,0.92,6.220,166.2 +7.7,0.92,7.500,173.8,8.0,0.92,7.280,174.0 +7.9,0.92,7.840,179.9,8.1,0.92,7.650,180.0 +7.5,0.92,9.280,180.1,7.8,0.92,9.320,180.1 +7.3,0.92,10.240,183.8,7.8,0.92,10.410,183.7 +7.2,0.92,11.100,185.2,7.7,0.92,11.550,184.5 +7.0,0.92,10.520,187.5,7.4,0.92,11.320,186.7 +7.5,0.92,9.030,188.9,7.4,0.92,9.320,188.8 +8.7,0.92,8.920,191.3,8.5,0.92,9.030,191.3 +10.0,0.92,8.620,197.3,9.8,0.92,8.700,197.6 +11.0,0.92,8.700,200.2,10.8,0.92,8.780,200.3 +11.6,0.92,9.080,200.7,11.4,0.92,9.200,201.0 +12.5,0.92,9.040,200.7,12.3,0.92,9.190,201.0 +12.7,0.91,8.500,202.0,12.6,0.91,8.830,202.4 +12.5,0.91,10.560,201.8,12.3,0.91,10.760,202.4 +12.3,0.91,12.120,204.3,12.2,0.91,12.140,204.7 +11.6,0.91,12.940,209.8,11.6,0.91,13.430,210.0 +10.8,0.91,13.710,209.1,11.0,0.91,14.180,209.4 +10.1,0.91,14.910,209.7,10.2,0.91,15.540,209.7 +9.2,0.91,15.100,209.4,9.3,0.91,15.840,209.5 +8.4,0.91,15.100,207.0,8.6,0.91,15.900,207.7 +8.0,0.91,15.190,206.4,8.2,0.91,16.070,207.3 +7.8,0.91,15.300,207.6,8.0,0.91,16.240,208.5 +7.6,0.91,15.050,206.9,7.8,0.91,15.930,208.0 +7.0,0.91,14.290,204.5,7.1,0.91,14.930,206.2 +6.6,0.91,13.630,205.6,6.8,0.91,14.330,207.7 +6.4,0.91,13.960,210.0,6.7,0.91,14.860,211.7 +6.5,0.91,14.700,212.3,6.7,0.91,15.710,213.9 +6.5,0.91,15.680,215.6,6.8,0.91,16.560,217.1 +6.8,0.91,13.430,217.2,7.0,0.91,13.960,218.9 +7.6,0.91,10.970,218.4,7.6,0.91,11.700,220.3 +9.4,0.91,8.400,224.8,9.3,0.91,8.460,225.6 +11.6,0.91,7.400,231.7,11.5,0.91,7.440,232.4 +13.8,0.91,6.510,236.6,13.6,0.91,6.560,237.2 +15.1,0.91,6.030,240.7,14.9,0.91,6.090,241.4 +15.6,0.91,5.020,259.4,15.4,0.91,5.080,259.4 +15.5,0.91,5.090,266.8,15.3,0.91,5.170,266.7 +15.2,0.91,5.810,265.7,15.0,0.91,5.930,265.0 +15.0,0.91,5.140,289.9,14.8,0.91,5.180,289.1 +14.6,0.91,5.130,294.2,14.6,0.91,5.380,294.0 +12.6,0.91,6.290,348.9,12.6,0.91,5.920,347.9 +12.5,0.91,4.340,356.6,12.5,0.91,4.230,353.8 +12.1,0.91,4.590,1.1,12.0,0.91,4.620,2.6 +11.7,0.91,5.720,10.8,11.7,0.91,5.830,12.4 +11.5,0.91,5.370,13.3,11.5,0.91,5.450,14.8 +12.2,0.91,5.310,11.9,12.2,0.91,5.400,13.7 +11.2,0.91,5.400,24.3,11.2,0.91,5.430,25.3 +10.4,0.91,4.620,16.8,10.4,0.91,4.720,19.6 +10.4,0.91,5.160,11.6,10.5,0.91,5.130,15.4 +9.8,0.91,5.350,17.0,9.9,0.91,5.450,19.7 +8.2,0.91,5.110,17.0,8.5,0.91,5.230,17.9 +7.3,0.91,4.850,19.7,7.6,0.91,5.000,21.0 +7.4,0.91,4.320,17.1,7.8,0.91,4.370,18.3 +7.8,0.91,2.850,14.6,8.1,0.91,2.960,20.1 +8.6,0.91,2.380,14.5,9.1,0.91,2.650,24.2 +9.7,0.91,1.220,349.7,9.6,0.91,1.190,351.9 +11.7,0.91,0.850,352.1,11.5,0.91,0.790,349.3 +13.3,0.91,0.690,202.9,13.1,0.91,0.720,206.8 +14.7,0.91,1.260,222.3,14.6,0.91,1.320,222.3 +15.6,0.91,2.270,225.5,15.4,0.91,2.290,225.6 +15.5,0.91,2.930,224.3,15.4,0.91,2.920,224.9 +15.3,0.91,3.610,212.3,15.1,0.91,3.580,212.4 +14.7,0.91,4.400,205.4,14.6,0.91,4.120,208.6 +14.6,0.91,3.630,226.1,14.5,0.91,3.610,229.8 +15.0,0.91,3.500,227.2,14.9,0.91,3.410,230.9 +14.8,0.91,3.470,217.8,14.7,0.91,3.420,221.4 +14.7,0.91,4.220,207.2,14.8,0.91,4.130,211.6 +14.8,0.91,4.610,199.6,14.8,0.91,4.480,203.0 +15.3,0.91,4.460,206.3,15.4,0.91,4.370,209.4 +15.0,0.91,3.720,198.8,15.2,0.91,3.470,202.8 +15.0,0.91,3.570,207.6,15.2,0.91,3.240,212.2 +14.7,0.91,3.430,208.4,15.0,0.91,2.970,211.7 +4.6,0.91,8.030,22.8,5.0,0.91,8.240,23.1 +1.3,0.91,9.790,28.4,1.2,0.91,10.170,31.7 +-0.1,0.91,10.360,25.4,-0.2,0.91,10.840,27.8 +-1.2,0.91,11.100,25.5,-1.4,0.91,11.530,27.4 +-2.1,0.91,11.010,25.0,-2.3,0.91,11.450,27.1 +-2.3,0.91,9.640,30.6,-2.4,0.91,9.750,31.0 +-1.2,0.91,8.310,28.1,-1.4,0.91,8.310,28.3 +-0.1,0.91,8.160,29.7,-0.2,0.91,8.160,29.8 +1.4,0.91,7.410,27.0,1.2,0.91,7.410,27.0 +2.7,0.91,6.390,26.2,2.5,0.91,6.400,26.2 +3.8,0.91,5.710,26.4,3.6,0.91,5.720,26.5 +4.5,0.91,5.060,28.5,4.4,0.91,5.060,28.4 +4.9,0.91,4.370,30.3,4.7,0.91,4.370,30.1 +4.9,0.91,3.980,34.0,4.7,0.91,3.970,33.7 +4.5,0.91,3.610,39.6,4.3,0.91,3.540,39.5 +4.5,0.91,2.550,38.1,4.5,0.91,2.480,40.4 +4.4,0.91,2.310,54.0,4.4,0.91,2.550,55.3 +4.5,0.91,2.450,54.7,4.6,0.91,2.530,56.7 +4.8,0.91,1.780,71.8,5.0,0.91,1.590,80.0 +5.1,0.91,1.370,91.8,5.3,0.91,1.110,105.3 +6.0,0.91,0.600,200.8,6.3,0.91,1.010,227.0 +6.2,0.91,1.120,209.8,6.4,0.91,1.480,221.2 +6.7,0.91,2.030,223.7,7.0,0.91,2.410,225.9 +7.1,0.91,1.510,226.7,7.2,0.91,1.900,224.3 +7.4,0.91,1.950,204.4,7.4,0.91,2.280,204.5 +7.7,0.91,3.240,191.6,7.8,0.91,3.370,193.9 +8.1,0.91,4.140,189.8,8.4,0.91,4.190,192.4 +8.7,0.91,5.590,192.2,8.9,0.91,5.670,194.4 +8.5,0.91,6.340,192.9,8.8,0.91,6.450,195.5 +7.9,0.91,8.020,193.9,8.2,0.91,8.010,196.9 +7.5,0.91,8.030,199.2,7.6,0.91,8.790,200.9 +8.4,0.91,7.560,207.7,8.3,0.91,7.730,208.7 +10.6,0.91,7.630,220.0,10.4,0.91,7.690,220.1 +12.1,0.91,8.800,217.5,11.9,0.91,8.870,217.7 +13.1,0.91,8.200,218.1,13.0,0.91,8.290,218.4 +14.0,0.91,8.130,217.6,13.8,0.91,8.200,217.8 +14.3,0.91,7.980,215.1,14.1,0.91,8.090,215.4 +14.6,0.91,8.650,208.2,14.4,0.91,8.950,208.5 +14.2,0.91,11.070,212.3,14.1,0.91,11.440,212.5 +13.6,0.91,11.910,212.5,13.6,0.91,12.190,213.1 +13.1,0.91,10.910,215.0,13.1,0.91,11.140,215.8 +12.6,0.91,13.070,216.3,12.6,0.91,13.680,216.5 +12.2,0.91,13.420,214.4,12.2,0.91,13.960,214.2 +11.7,0.91,13.570,215.7,11.8,0.91,14.190,215.6 +11.4,0.91,13.620,213.6,11.5,0.91,14.350,214.4 +11.1,0.91,13.960,219.6,11.2,0.91,14.910,220.9 +11.0,0.91,14.800,219.8,11.2,0.91,15.770,220.5 +10.8,0.91,14.570,220.0,11.1,0.91,15.610,220.8 +10.9,0.91,15.010,220.8,11.2,0.91,16.100,221.4 +11.0,0.91,14.780,222.9,11.3,0.91,15.750,223.3 +11.1,0.91,14.430,225.2,11.5,0.91,15.250,225.6 +10.6,0.91,13.610,222.5,10.9,0.91,14.340,223.6 +10.1,0.91,11.730,228.2,10.9,0.91,12.420,227.8 +8.4,0.91,11.270,227.0,8.5,0.91,11.690,227.1 +8.8,0.91,10.960,224.9,8.7,0.91,11.210,225.2 +9.4,0.91,9.030,226.4,9.2,0.91,9.150,226.8 +11.3,0.91,8.070,228.8,11.2,0.91,8.050,229.9 +14.2,0.91,8.020,226.6,14.1,0.91,8.050,227.1 +15.7,0.91,8.060,229.7,15.6,0.91,8.070,230.2 +17.0,0.91,7.730,226.6,16.8,0.91,7.740,227.1 +17.5,0.91,7.800,221.5,17.3,0.91,7.840,221.9 +17.6,0.91,8.280,212.2,17.4,0.91,8.510,213.5 +17.9,0.91,10.690,208.0,17.8,0.91,11.000,209.9 +19.0,0.91,12.090,213.7,18.9,0.91,12.320,214.7 +19.1,0.91,13.190,220.8,19.3,0.91,13.580,221.7 +18.4,0.91,13.550,224.8,18.7,0.91,13.730,225.8 +17.5,0.91,14.310,227.8,17.9,0.91,14.630,229.2 +17.3,0.91,14.480,232.1,17.9,0.91,14.830,233.1 +16.6,0.91,15.400,228.5,17.3,0.91,16.140,229.3 +15.7,0.91,15.030,228.6,16.5,0.91,15.930,230.4 +15.7,0.91,16.330,231.4,16.5,0.91,17.280,232.5 +15.4,0.91,16.310,230.0,16.0,0.91,17.160,231.2 +14.5,0.91,15.900,231.0,15.1,0.91,16.850,232.0 +14.8,0.91,14.290,233.8,15.4,0.91,15.010,234.8 +14.0,0.91,12.970,234.7,14.5,0.91,13.690,235.5 +14.3,0.91,14.020,238.3,14.8,0.91,14.630,238.3 +14.4,0.91,13.000,243.2,15.1,0.91,13.520,243.6 +13.0,0.91,9.680,256.5,13.6,0.91,10.370,257.8 +13.6,0.91,6.620,265.0,13.7,0.91,7.710,267.2 +15.2,0.91,5.460,257.0,15.2,0.91,5.590,259.8 +17.3,0.91,4.330,266.4,17.2,0.91,4.370,266.9 +18.6,0.91,3.590,252.5,18.4,0.91,3.620,252.8 +19.6,0.91,3.830,233.8,19.4,0.91,3.860,234.3 +20.1,0.91,3.750,227.8,19.9,0.91,3.770,228.6 +20.4,0.91,3.970,214.1,20.2,0.91,3.970,214.6 +20.0,0.91,3.580,212.1,19.8,0.91,3.610,212.4 +19.4,0.91,2.160,170.6,19.4,0.91,2.560,182.2 +21.0,0.91,5.130,195.5,21.2,0.91,5.810,199.6 +20.9,0.91,10.950,201.5,21.0,0.91,11.870,207.1 +19.6,0.91,14.220,217.9,19.7,0.91,15.070,219.3 +18.9,0.91,14.450,225.6,19.1,0.91,15.420,226.2 +18.4,0.91,14.420,225.8,18.6,0.91,15.570,226.7 +17.0,0.91,14.720,221.8,17.2,0.91,15.860,222.7 +16.6,0.91,14.810,223.4,16.8,0.91,15.860,224.3 +16.5,0.91,15.520,225.8,16.6,0.91,16.550,226.4 +16.0,0.91,14.980,228.8,16.1,0.91,15.940,229.3 +15.9,0.91,14.510,230.6,16.0,0.91,15.440,231.3 +15.6,0.91,12.350,238.7,15.8,0.91,13.320,239.9 +15.4,0.91,12.740,247.3,15.6,0.91,13.380,249.3 +15.7,0.91,10.130,261.0,16.5,0.91,9.810,266.3 +16.2,0.91,7.290,277.2,17.1,0.91,6.780,287.6 +9.6,0.91,5.670,19.9,10.0,0.91,5.400,18.1 +6.8,0.91,5.480,7.7,6.7,0.91,5.420,7.2 +6.8,0.91,6.130,16.5,6.6,0.91,6.100,16.1 +8.0,0.91,6.230,18.4,7.8,0.91,6.220,18.1 +8.8,0.91,6.220,21.3,8.6,0.91,6.210,21.4 +9.3,0.91,6.200,22.5,9.1,0.91,6.190,22.4 +9.5,0.91,5.810,19.7,9.3,0.91,5.800,19.7 +9.4,0.91,5.330,21.6,9.2,0.91,5.320,21.6 +9.1,0.91,4.920,25.3,8.9,0.91,4.930,25.2 +8.7,0.91,5.170,28.6,8.5,0.91,5.170,28.2 +8.3,0.91,4.470,28.2,8.2,0.91,4.470,27.9 +8.2,0.91,4.220,30.7,8.0,0.91,4.230,30.7 +7.9,0.91,4.580,30.7,7.8,0.91,4.610,30.8 +7.5,0.91,4.270,43.1,7.4,0.91,4.360,43.8 +7.3,0.91,4.020,49.1,7.2,0.91,4.180,50.1 +6.9,0.91,4.880,50.1,6.7,0.91,4.840,51.3 +6.5,0.91,3.900,53.8,6.3,0.91,3.440,48.0 +6.0,0.91,3.040,41.7,5.8,0.91,2.900,38.4 +5.4,0.91,2.960,36.2,5.4,0.91,2.950,31.7 +5.1,0.91,2.400,27.1,5.2,0.91,2.460,21.2 +5.0,0.91,2.730,22.3,5.3,0.91,2.850,15.9 +4.7,0.91,2.810,25.1,5.1,0.91,2.910,18.2 +4.7,0.91,2.750,18.8,5.2,0.91,2.900,13.7 +4.9,0.91,2.270,29.8,5.5,0.91,2.260,24.7 +5.9,0.91,0.780,63.3,6.8,0.91,0.600,83.1 +6.6,0.91,1.290,116.3,6.9,0.91,1.450,140.6 +9.6,0.91,1.980,139.6,9.4,0.91,2.070,143.3 +12.3,0.91,1.840,146.7,12.1,0.91,1.940,149.4 +13.7,0.91,3.930,165.4,13.5,0.91,3.920,165.2 +14.5,0.91,4.960,162.3,14.3,0.91,4.990,162.6 +15.1,0.91,5.790,160.6,14.9,0.91,5.840,160.8 +15.6,0.91,6.090,154.6,15.4,0.91,6.170,154.7 +14.2,0.91,6.930,168.6,14.0,0.91,7.010,168.8 +13.4,0.91,7.080,179.4,13.2,0.91,7.400,178.0 +13.4,0.91,7.330,166.7,13.2,0.91,7.720,165.7 +13.0,0.91,7.810,149.8,13.0,0.91,8.380,150.6 +13.2,0.91,9.590,149.8,13.1,0.91,10.130,150.7 +13.2,0.91,13.100,161.6,13.1,0.91,13.690,161.9 +13.4,0.91,15.840,175.2,13.4,0.91,16.380,175.6 +13.7,0.91,17.070,178.3,13.7,0.91,17.640,178.5 +13.6,0.91,17.850,177.3,13.5,0.91,18.410,177.4 +13.7,0.91,19.620,179.3,13.7,0.91,20.200,179.5 +13.6,0.91,18.480,186.6,13.5,0.91,19.040,186.7 +13.5,0.91,18.220,186.7,13.4,0.91,18.770,187.0 +13.6,0.91,18.680,187.5,13.5,0.91,19.240,187.9 +13.5,0.91,17.340,187.6,13.5,0.91,17.900,188.2 +13.3,0.91,17.610,186.3,13.2,0.91,18.200,186.7 +13.0,0.91,16.370,192.7,12.9,0.91,16.950,193.2 +13.3,0.91,16.410,194.6,13.2,0.91,16.910,194.9 +13.7,0.91,15.350,194.5,13.5,0.91,15.520,194.7 +14.5,0.91,13.380,194.9,14.3,0.91,13.500,195.0 +15.7,0.91,12.310,197.3,15.5,0.91,12.430,197.5 +17.6,0.91,12.430,199.8,17.4,0.91,12.580,200.0 +19.0,0.91,12.190,202.9,18.8,0.91,12.330,203.1 +20.0,0.91,10.750,204.3,19.8,0.91,10.870,204.5 +20.7,0.91,9.710,204.7,20.5,0.91,9.850,205.0 +20.9,0.90,9.170,200.4,20.8,0.90,9.420,200.8 +20.6,0.91,9.380,197.7,20.6,0.91,9.740,200.3 +19.9,0.91,11.700,196.6,20.1,0.91,12.570,197.9 +19.4,0.91,11.750,199.7,19.6,0.91,12.570,200.7 +18.8,0.91,11.710,204.2,19.0,0.91,12.730,205.6 +18.0,0.91,12.620,199.3,18.2,0.91,13.610,201.0 +17.1,0.91,14.380,201.2,17.2,0.91,15.540,202.8 +16.3,0.91,13.150,197.0,16.3,0.91,14.080,198.6 +15.4,0.91,12.150,196.2,15.3,0.91,12.730,197.9 +14.2,0.91,13.360,194.1,14.1,0.91,14.120,195.0 +13.7,0.91,12.710,189.7,13.6,0.91,13.140,189.9 +14.6,0.91,12.680,189.0,14.5,0.91,13.180,189.1 +14.6,0.91,12.560,188.0,14.6,0.91,13.230,188.9 +15.2,0.91,15.270,188.6,15.1,0.91,15.750,188.9 +15.0,0.91,13.840,182.4,14.8,0.91,14.360,182.7 +14.7,0.91,12.680,175.6,14.7,0.91,13.110,175.6 +15.2,0.91,14.770,182.6,15.0,0.91,15.190,182.8 +15.3,0.91,14.750,186.3,15.2,0.91,15.030,186.7 +15.9,0.91,13.170,186.0,15.7,0.91,13.330,186.2 +17.7,0.90,12.820,189.7,17.5,0.90,12.980,189.8 +19.0,0.90,12.280,194.8,18.8,0.90,12.420,194.8 +21.0,0.90,13.510,204.8,20.8,0.90,13.710,204.8 +21.8,0.90,12.710,209.8,21.6,0.90,12.910,209.8 +21.9,0.90,12.600,210.2,21.7,0.90,12.790,210.2 +21.5,0.90,10.220,205.2,21.3,0.90,10.520,205.4 +20.8,0.90,11.620,209.3,20.8,0.90,12.610,209.7 +20.3,0.90,12.540,200.3,20.3,0.90,13.210,200.1 +19.4,0.90,15.370,195.9,19.5,0.90,16.380,196.0 +17.9,0.90,14.670,185.8,17.8,0.90,15.480,186.2 +16.9,0.90,16.800,188.5,16.9,0.90,17.590,188.5 +16.7,0.90,16.090,187.4,16.7,0.90,17.100,187.5 +16.1,0.90,16.130,185.9,16.1,0.90,17.270,186.3 +15.9,0.90,14.850,182.1,15.9,0.90,15.790,182.5 +15.0,0.90,15.320,179.7,15.0,0.90,16.250,180.1 +14.8,0.90,15.750,182.8,14.9,0.90,16.770,183.7 +14.5,0.90,15.730,191.7,14.5,0.90,16.650,192.9 +13.8,0.90,13.400,189.7,13.8,0.90,14.230,190.6 +13.8,0.90,12.030,217.1,13.7,0.90,12.580,218.1 +14.3,0.90,11.060,227.7,14.3,0.90,11.290,230.1 +13.6,0.90,9.390,250.4,13.6,0.90,9.440,254.6 +13.5,0.90,8.580,255.0,13.4,0.90,9.750,256.1 +13.8,0.90,7.420,274.2,13.6,0.90,7.520,274.2 +13.3,0.90,8.230,295.9,13.1,0.90,8.350,295.8 +13.2,0.90,10.440,272.5,13.0,0.90,10.640,272.4 +13.0,0.90,14.920,270.2,12.8,0.90,15.180,270.2 +12.9,0.90,15.850,254.1,12.7,0.90,16.160,254.0 +12.7,0.90,15.630,252.8,12.5,0.90,15.930,252.7 +12.3,0.90,16.040,261.4,12.1,0.90,16.460,261.4 +10.9,0.90,19.510,259.9,10.7,0.90,19.930,260.0 +9.8,0.90,18.350,256.6,9.7,0.90,18.930,256.6 +8.7,0.90,14.270,249.3,8.6,0.90,15.050,249.8 +8.2,0.90,15.680,253.0,8.0,0.90,16.400,253.2 +7.4,0.90,13.130,248.0,7.3,0.90,13.970,248.9 +6.8,0.90,13.430,255.0,6.7,0.90,14.320,256.0 +6.2,0.90,12.940,259.5,6.1,0.90,14.010,261.0 +5.4,0.90,12.290,263.6,5.3,0.90,13.080,263.6 +4.7,0.90,14.880,270.6,4.6,0.90,15.940,271.5 +3.8,0.90,13.670,280.0,3.7,0.90,14.610,281.0 +1.0,0.90,14.080,309.9,0.8,0.90,14.590,310.3 +1.6,0.90,11.750,308.9,1.4,0.90,12.420,309.7 +1.1,0.90,11.810,302.3,1.0,0.90,12.440,302.9 +0.7,0.90,13.660,312.0,0.6,0.90,14.290,312.5 +0.6,0.91,13.700,311.0,0.5,0.91,14.370,312.0 +0.4,0.91,13.360,311.4,0.3,0.91,14.030,312.5 +0.8,0.91,12.240,318.8,0.6,0.91,12.500,319.1 +1.6,0.91,11.630,323.3,1.4,0.91,11.820,323.5 +2.4,0.91,10.180,326.2,2.2,0.91,10.340,326.2 +3.3,0.91,9.920,320.1,3.1,0.91,10.080,320.1 +4.1,0.91,9.790,315.6,3.9,0.91,9.940,315.5 +5.1,0.91,8.440,308.0,4.9,0.91,8.600,307.8 +6.0,0.91,9.570,302.1,5.8,0.91,9.750,302.0 +6.4,0.91,9.220,299.5,6.2,0.91,9.390,299.4 +6.7,0.91,9.390,287.5,6.5,0.91,9.590,287.8 +6.7,0.91,8.120,286.4,6.6,0.91,8.410,286.4 +6.8,0.91,7.280,273.0,6.7,0.91,7.680,274.6 +6.9,0.91,8.310,263.1,6.9,0.91,8.770,265.1 +7.3,0.91,10.350,276.2,7.3,0.91,10.530,280.3 +7.7,0.91,9.170,284.4,7.7,0.91,9.150,287.9 +8.0,0.91,9.300,274.6,8.1,0.91,9.190,277.3 +8.2,0.91,9.790,267.2,8.4,0.91,9.670,268.7 +8.0,0.91,12.320,268.8,8.4,0.91,12.670,270.8 +7.8,0.91,11.640,260.4,8.4,0.91,12.130,263.7 +7.9,0.91,13.730,256.1,8.4,0.91,14.190,258.2 +5.7,0.91,11.620,253.1,6.0,0.91,12.550,258.9 +5.9,0.91,12.360,262.4,6.3,0.91,13.200,267.2 +6.5,0.91,15.130,271.1,6.9,0.91,16.330,274.6 +6.4,0.91,14.860,279.1,6.7,0.91,15.890,280.3 +5.9,0.91,13.140,261.0,6.2,0.91,13.890,264.3 +5.7,0.91,10.090,263.4,5.6,0.91,10.290,263.7 +6.8,0.91,8.270,267.1,6.6,0.91,8.410,267.4 +8.2,0.91,6.740,264.8,8.0,0.91,6.830,265.1 +9.8,0.91,6.910,257.3,9.6,0.91,6.990,257.6 +11.0,0.91,6.950,252.3,10.8,0.91,7.020,252.6 +12.1,0.91,6.490,255.8,11.9,0.91,6.570,256.1 +13.0,0.91,5.530,274.6,12.8,0.91,5.610,274.5 +13.4,0.91,5.560,278.4,13.2,0.91,5.640,278.3 +13.4,0.91,5.250,275.7,13.3,0.91,5.370,275.8 +13.3,0.91,5.030,274.8,13.2,0.91,5.180,275.4 +13.4,0.91,4.580,272.6,13.3,0.91,4.690,274.6 +13.4,0.91,3.390,270.4,13.3,0.91,3.490,274.2 +13.6,0.91,3.550,279.8,13.5,0.91,3.660,283.2 +13.4,0.91,2.830,268.2,13.3,0.91,2.830,273.8 +13.5,0.91,1.980,313.7,13.3,0.91,1.980,322.8 +6.7,0.91,8.090,58.2,6.8,0.91,8.600,62.9 +4.9,0.91,9.720,71.6,4.8,0.91,10.720,75.0 +3.6,0.92,8.340,71.7,3.5,0.92,9.860,76.8 +2.7,0.92,7.470,73.0,2.6,0.92,8.700,78.4 +2.3,0.91,7.270,80.9,2.4,0.91,8.400,87.2 +1.4,0.91,6.780,82.4,1.5,0.91,7.460,89.4 +1.2,0.92,6.170,104.6,1.3,0.92,7.150,109.7 +1.2,0.92,8.960,116.3,1.5,0.92,10.190,117.7 +0.5,0.92,9.530,120.3,0.8,0.92,10.970,121.7 +1.3,0.92,5.270,130.9,1.2,0.92,5.850,133.2 +3.9,0.92,5.410,155.7,3.7,0.92,5.500,155.8 +6.1,0.91,5.520,165.5,6.0,0.91,5.560,165.6 +8.4,0.91,6.210,179.7,8.3,0.91,6.250,179.7 +10.2,0.91,7.400,187.1,10.0,0.91,7.450,187.3 +11.4,0.91,8.250,188.9,11.2,0.91,8.320,189.1 +12.3,0.91,9.740,190.3,12.1,0.91,9.840,190.4 +12.9,0.91,9.200,191.7,12.7,0.91,9.310,191.8 +13.1,0.91,7.980,180.0,13.0,0.91,8.230,180.6 +13.7,0.91,9.360,173.0,13.6,0.91,9.500,175.4 +14.6,0.91,11.620,195.9,14.7,0.91,12.410,200.2 +14.3,0.91,14.340,203.4,14.3,0.91,14.920,204.3 +13.2,0.91,15.490,208.7,13.3,0.91,16.280,209.1 +12.3,0.91,15.360,208.8,12.4,0.91,16.260,209.6 +11.8,0.91,15.330,210.4,11.9,0.91,16.190,211.2 +11.2,0.91,14.280,213.3,11.3,0.91,15.210,214.3 +10.9,0.91,14.510,215.6,11.1,0.91,15.630,217.0 +10.9,0.91,14.620,219.5,11.1,0.91,15.900,220.9 +10.9,0.91,14.480,224.2,11.1,0.91,15.650,225.4 +10.3,0.91,12.840,234.7,10.5,0.91,13.450,235.8 +10.6,0.91,9.700,260.4,10.8,0.91,9.970,260.1 +10.3,0.91,9.600,268.6,10.5,0.91,9.700,270.4 +9.4,0.91,8.940,301.4,9.7,0.91,9.310,305.1 +6.3,0.91,8.680,354.6,6.3,0.91,8.520,358.3 +5.5,0.91,6.570,12.3,5.7,0.91,7.320,14.4 +6.6,0.91,6.200,14.7,6.5,0.91,6.380,15.2 +8.7,0.92,6.890,24.5,8.6,0.92,6.920,24.7 +10.1,0.92,7.790,34.4,10.0,0.92,7.840,34.5 +11.0,0.92,8.000,35.8,10.8,0.92,8.070,35.8 +12.0,0.92,7.410,39.3,11.8,0.92,7.480,39.3 +12.7,0.92,6.980,39.4,12.5,0.92,7.040,39.4 +13.3,0.92,6.030,42.6,13.1,0.92,6.110,42.4 +13.4,0.92,5.820,44.1,13.2,0.92,5.890,43.9 +13.2,0.92,6.420,50.9,13.0,0.92,6.500,50.2 +12.7,0.92,7.650,49.8,12.7,0.92,7.570,50.0 +11.7,0.92,5.310,52.8,11.8,0.92,5.910,52.1 +11.0,0.92,4.890,59.3,11.1,0.92,5.400,59.4 +10.8,0.92,4.270,69.0,11.0,0.92,4.810,69.6 +10.8,0.92,4.280,72.1,11.0,0.92,4.810,72.0 +10.8,0.92,4.280,85.2,11.0,0.92,4.710,84.2 +10.9,0.92,4.510,95.5,11.0,0.92,4.840,94.4 +10.9,0.92,4.530,96.0,10.9,0.92,4.700,95.4 +11.1,0.92,4.460,107.3,11.0,0.92,4.590,105.3 +11.1,0.92,5.590,129.4,11.2,0.92,5.550,127.4 +11.4,0.92,6.060,133.3,11.4,0.92,5.930,132.8 +11.4,0.92,6.500,136.6,11.4,0.92,6.380,136.3 +11.2,0.92,7.830,147.3,11.1,0.92,7.900,146.9 +10.8,0.92,8.450,157.8,11.0,0.92,8.580,156.1 +10.3,0.92,8.960,165.8,10.7,0.92,9.290,163.3 +10.2,0.92,7.440,170.9,10.3,0.92,8.220,168.6 +11.5,0.91,7.480,167.5,11.3,0.91,7.570,167.3 +12.4,0.91,7.900,169.0,12.2,0.91,7.980,168.9 +13.2,0.91,9.540,172.4,13.0,0.91,9.650,172.4 +13.9,0.91,9.300,174.7,13.7,0.91,9.410,174.7 +14.1,0.91,9.200,180.9,13.9,0.91,9.300,181.0 +14.6,0.91,9.660,178.9,14.4,0.91,9.800,179.1 +14.9,0.91,7.940,173.7,14.7,0.91,8.150,173.7 +15.1,0.91,9.360,171.8,15.0,0.91,9.880,172.0 +14.4,0.91,11.580,166.8,14.3,0.91,12.280,166.5 +13.6,0.91,12.890,167.6,13.6,0.91,13.550,167.9 +13.5,0.91,12.920,196.0,13.4,0.91,13.540,196.6 +13.2,0.91,15.050,198.5,13.1,0.91,15.620,198.7 +12.8,0.91,14.950,194.1,12.7,0.91,15.510,194.2 +12.4,0.91,14.530,194.1,12.3,0.91,15.090,194.5 +12.4,0.90,14.850,197.3,12.3,0.90,15.360,197.6 +12.4,0.90,13.460,193.4,12.3,0.90,13.890,193.8 +12.2,0.90,12.260,194.1,12.1,0.90,12.660,194.8 +12.5,0.90,12.600,199.3,12.3,0.90,13.050,200.0 +12.3,0.90,11.770,200.2,12.2,0.90,12.240,201.0 +12.1,0.90,11.680,201.3,12.0,0.90,12.220,202.8 +11.7,0.90,12.370,207.6,11.6,0.90,13.060,209.1 +11.3,0.90,12.740,208.9,11.1,0.90,13.190,210.1 +11.2,0.90,9.110,233.4,11.0,0.90,9.250,233.8 +12.1,0.90,8.930,242.6,11.9,0.90,8.990,243.0 +14.7,0.90,7.670,259.7,14.5,0.90,7.710,260.1 +16.3,0.90,6.720,288.1,16.1,0.90,6.780,287.9 +17.2,0.90,5.850,293.1,17.0,0.90,5.930,292.8 +18.2,0.90,5.580,290.8,18.0,0.90,5.650,290.4 +18.7,0.90,5.200,297.7,18.4,0.90,5.250,297.2 +18.7,0.90,5.000,302.3,18.5,0.90,5.050,301.8 +17.3,0.90,6.680,342.2,17.1,0.90,6.750,342.2 +16.1,0.90,7.680,357.3,16.0,0.90,7.800,357.5 +15.9,0.90,6.370,353.8,15.8,0.90,6.350,355.7 +15.8,0.90,7.270,11.8,15.7,0.90,7.310,16.7 +14.1,0.90,9.680,21.9,14.0,0.90,10.530,25.0 +12.7,0.90,9.130,22.7,12.6,0.90,10.090,26.3 +11.9,0.90,9.650,29.5,12.0,0.90,10.510,32.6 +11.3,0.90,8.550,34.3,11.3,0.90,9.200,38.5 +10.8,0.91,8.080,42.1,10.8,0.91,8.550,46.1 +10.6,0.91,6.230,36.4,10.6,0.91,6.410,39.3 +10.3,0.91,5.050,26.5,10.4,0.91,5.120,28.6 +9.9,0.91,4.150,21.3,10.1,0.91,4.390,23.6 +10.0,0.91,4.330,18.1,10.2,0.91,4.560,20.1 +10.1,0.91,3.790,21.2,10.3,0.91,4.040,23.1 +10.1,0.91,3.780,24.5,10.4,0.91,4.030,25.2 +10.6,0.91,3.070,30.9,10.9,0.91,3.340,32.1 +11.3,0.91,3.150,24.7,11.6,0.91,3.330,26.8 +11.2,0.91,1.930,27.4,11.1,0.91,2.010,26.0 +12.3,0.91,2.450,41.9,12.1,0.91,2.390,41.7 +13.8,0.91,2.050,57.2,13.6,0.91,1.990,58.3 +15.1,0.91,1.940,43.2,15.0,0.91,1.870,43.4 +16.1,0.91,2.070,36.8,16.0,0.91,2.010,37.1 +16.8,0.91,2.170,46.1,16.6,0.91,2.120,46.8 +16.9,0.91,3.110,57.5,16.7,0.91,3.090,58.3 +16.7,0.91,3.680,77.3,16.5,0.91,3.680,77.5 +16.1,0.91,4.770,73.2,15.9,0.91,4.780,75.6 +14.0,0.91,6.180,110.9,14.1,0.91,5.890,111.5 +12.3,0.91,8.080,131.8,12.6,0.91,7.940,131.7 +13.5,0.91,7.240,135.6,14.2,0.91,6.910,137.5 +13.9,0.91,6.940,137.7,14.6,0.91,6.780,141.0 +14.8,0.91,6.720,137.8,15.0,0.91,6.680,140.2 +15.2,0.91,6.800,153.9,15.1,0.91,6.790,155.5 +12.5,0.91,8.450,151.5,13.2,0.91,8.530,154.0 +11.2,0.91,8.500,151.7,12.7,0.91,9.210,151.4 +9.5,0.91,8.190,164.2,10.7,0.91,9.150,162.8 +9.4,0.91,8.500,160.6,10.3,0.91,9.400,159.8 +8.7,0.91,8.520,159.9,9.1,0.91,9.280,159.4 +8.5,0.91,9.020,165.1,8.4,0.91,9.480,165.1 +8.8,0.91,10.250,172.2,8.7,0.91,10.550,172.3 +9.2,0.91,8.420,181.5,9.1,0.91,8.780,181.5 +9.4,0.91,7.900,192.5,9.2,0.91,8.420,192.5 +11.0,0.91,9.150,202.0,11.1,0.91,9.640,202.1 +13.1,0.90,9.470,190.7,13.0,0.90,9.640,191.0 +14.7,0.90,10.950,189.3,14.5,0.90,11.080,189.3 +15.2,0.90,11.980,185.5,15.0,0.90,12.070,185.6 +16.4,0.90,10.710,188.5,16.2,0.90,10.810,188.6 +17.1,0.90,9.830,185.5,16.9,0.90,9.920,185.5 +17.9,0.90,9.130,185.6,17.7,0.90,9.240,185.7 +18.5,0.90,9.050,183.8,18.3,0.90,9.180,183.8 +18.3,0.90,8.010,174.7,18.2,0.90,8.270,174.1 +18.3,0.90,10.670,169.2,18.3,0.90,11.250,170.2 +18.1,0.90,11.840,175.8,18.2,0.90,12.330,176.2 +16.9,0.90,12.970,179.2,17.0,0.90,13.740,180.6 +16.4,0.90,13.280,186.4,16.4,0.90,13.810,187.4 +15.7,0.90,12.890,195.8,15.7,0.90,13.640,197.8 +14.9,0.90,11.120,196.4,15.0,0.90,11.850,199.1 +14.3,0.90,12.080,197.1,14.4,0.90,12.890,199.4 +13.7,0.90,12.220,204.2,13.8,0.90,12.890,205.8 +13.7,0.90,10.520,205.2,13.7,0.90,11.020,206.9 +13.5,0.90,10.890,217.2,13.4,0.90,11.340,218.3 +13.5,0.90,12.460,228.6,13.4,0.90,12.920,229.0 +13.1,0.90,11.520,235.6,12.9,0.90,11.940,236.6 +13.0,0.90,11.190,238.6,12.9,0.90,11.900,240.4 +12.3,0.90,9.710,252.2,12.4,0.90,10.470,255.1 +12.2,0.90,6.790,278.1,12.1,0.90,6.960,278.5 +12.2,0.91,7.590,300.5,12.1,0.91,7.640,300.5 +12.4,0.91,7.910,320.8,12.2,0.91,7.970,320.8 +12.3,0.91,9.100,322.4,12.1,0.91,9.190,322.5 +13.0,0.91,9.100,323.5,12.7,0.91,9.210,323.6 +13.9,0.91,10.230,333.7,13.7,0.91,10.370,333.6 +14.3,0.91,10.580,335.0,14.1,0.91,10.710,335.0 +14.3,0.91,9.880,347.0,14.1,0.91,10.000,346.9 +14.0,0.91,9.980,358.6,13.8,0.91,10.120,358.6 +12.8,0.91,9.080,18.6,12.6,0.91,9.440,18.3 +12.5,0.91,8.120,19.0,12.3,0.91,8.370,19.5 +11.2,0.91,9.560,22.1,11.0,0.91,10.150,22.2 +10.7,0.91,9.590,21.8,10.6,0.91,9.920,24.5 +10.3,0.91,9.170,19.0,10.2,0.91,9.390,20.6 +9.2,0.91,11.300,21.4,9.0,0.91,12.220,25.0 +8.3,0.91,11.600,29.5,8.1,0.91,12.540,31.5 +7.7,0.91,11.780,35.9,7.7,0.91,12.890,38.1 +7.4,0.91,12.980,39.5,7.4,0.91,13.810,40.2 +6.6,0.91,13.040,40.8,6.5,0.91,13.840,42.9 +5.8,0.91,12.400,44.8,5.7,0.91,13.210,47.4 +5.1,0.91,11.120,48.8,4.9,0.91,11.600,52.2 +4.3,0.91,9.490,52.6,4.1,0.91,9.620,55.5 +3.5,0.91,8.120,54.0,3.4,0.91,8.570,57.5 +2.9,0.91,7.480,56.1,2.9,0.91,8.050,59.1 +3.1,0.91,6.160,65.2,2.9,0.91,6.570,65.8 +4.5,0.91,5.170,62.0,4.3,0.91,5.220,62.9 +6.5,0.91,5.100,66.9,6.3,0.91,5.150,67.6 +8.4,0.91,4.990,71.7,8.2,0.91,5.030,72.2 +10.0,0.91,5.160,79.9,9.8,0.91,5.200,80.3 +11.1,0.91,5.050,90.5,10.9,0.91,5.080,90.9 +11.9,0.91,5.000,109.1,11.7,0.91,5.060,109.2 +12.0,0.91,5.620,117.9,11.8,0.91,5.670,118.0 +12.0,0.91,6.230,120.8,11.8,0.91,6.320,120.9 +11.6,0.91,7.700,120.9,11.5,0.91,7.930,121.6 +11.0,0.91,8.130,127.8,11.0,0.91,8.670,128.0 +10.4,0.91,8.790,128.7,10.3,0.91,9.440,129.2 +10.1,0.91,9.740,134.3,10.0,0.91,10.390,134.8 +9.6,0.91,10.600,139.4,9.5,0.91,11.340,139.6 +9.3,0.91,10.660,142.9,9.2,0.91,11.320,142.9 +9.0,0.91,10.680,146.2,8.8,0.91,11.310,146.2 +9.0,0.91,12.200,152.1,8.9,0.91,12.820,152.0 +8.6,0.91,12.460,155.6,8.5,0.91,13.090,155.6 +8.7,0.91,14.020,159.0,8.5,0.91,14.730,159.0 +8.8,0.91,16.320,161.8,8.7,0.91,16.900,161.8 +8.9,0.91,18.350,172.1,8.8,0.91,18.860,172.0 +8.5,0.90,20.570,168.7,8.4,0.90,21.060,168.8 +8.3,0.90,17.680,167.0,8.3,0.90,18.200,167.1 +8.0,0.90,18.900,170.1,7.9,0.90,19.590,169.9 +9.0,0.90,18.430,175.1,8.9,0.90,19.180,175.1 +9.9,0.90,17.110,177.7,9.8,0.90,17.570,178.0 +11.3,0.90,18.230,176.8,11.1,0.90,18.460,177.0 +12.0,0.90,18.680,172.8,11.8,0.90,18.900,172.9 +13.2,0.90,18.260,174.3,13.0,0.90,18.470,174.4 +13.8,0.90,18.160,173.8,13.7,0.90,18.370,173.9 +14.6,0.90,16.580,176.4,14.4,0.90,16.770,176.4 +15.3,0.90,17.040,180.9,15.1,0.90,17.290,181.0 +14.8,0.90,16.520,182.1,14.7,0.90,16.800,182.2 +14.0,0.90,15.560,177.3,13.9,0.90,16.060,177.6 +14.3,0.90,15.660,172.7,14.2,0.90,16.290,173.2 +14.8,0.90,17.050,177.5,14.7,0.90,17.560,177.8 +14.7,0.90,15.500,182.1,14.5,0.90,15.960,182.4 +14.6,0.90,15.030,192.3,14.4,0.90,15.460,192.6 +14.5,0.90,12.360,215.4,14.3,0.90,12.810,215.6 +14.5,0.90,9.430,275.3,14.4,0.90,9.830,273.9 +13.6,0.90,16.520,286.2,13.4,0.90,17.220,286.5 +12.3,0.90,14.000,279.6,12.2,0.90,14.770,279.7 +10.9,0.90,14.790,285.1,10.8,0.90,15.760,285.7 +10.0,0.90,17.570,285.5,9.8,0.90,18.300,286.0 +9.1,0.90,14.810,282.7,9.0,0.90,15.670,283.4 +8.2,0.90,13.900,282.5,8.1,0.90,14.860,283.8 +7.4,0.90,11.560,284.3,7.3,0.90,12.780,285.6 +7.3,0.90,12.630,286.2,7.1,0.90,13.430,286.8 +7.5,0.90,11.600,288.4,7.3,0.90,11.890,288.5 +8.2,0.90,11.370,289.8,8.0,0.90,11.590,289.8 +9.2,0.90,10.610,289.7,9.0,0.90,10.800,289.6 +10.4,0.90,9.370,289.4,10.2,0.90,9.540,289.3 +11.4,0.90,8.090,283.7,11.2,0.90,8.240,283.6 +12.3,0.90,8.130,274.9,12.1,0.90,8.270,274.8 +12.9,0.90,8.660,275.1,12.7,0.90,8.810,275.0 +13.2,0.90,8.090,274.5,13.0,0.90,8.230,274.4 +13.2,0.90,8.020,276.2,13.0,0.90,8.180,276.1 +13.0,0.90,7.860,275.6,12.8,0.90,8.220,275.7 +12.8,0.90,8.440,280.5,12.6,0.90,8.610,280.7 +12.6,0.91,7.210,281.7,12.5,0.91,7.270,281.7 +12.7,0.91,5.560,289.9,12.6,0.91,5.270,291.0 +12.8,0.91,3.270,301.5,12.7,0.91,3.120,303.8 +13.1,0.91,2.020,344.9,13.1,0.91,2.160,351.5 +12.2,0.91,1.650,55.0,12.3,0.91,1.770,51.7 +12.6,0.91,2.110,64.0,12.7,0.91,2.420,61.4 +12.5,0.91,2.760,77.5,12.6,0.91,3.040,75.3 +11.3,0.91,3.950,53.7,11.5,0.91,4.330,55.5 +11.0,0.91,4.380,88.7,11.3,0.91,4.890,90.2 +10.2,0.91,4.840,96.6,10.5,0.91,5.280,99.2 +8.7,0.91,5.010,82.8,9.0,0.91,5.390,87.0 +6.3,0.91,5.060,66.8,6.8,0.91,5.310,71.0 +4.6,0.91,6.040,54.2,4.9,0.91,6.370,57.5 +3.9,0.91,6.020,63.3,3.9,0.91,6.860,65.9 +5.1,0.91,5.220,63.4,5.0,0.91,5.250,64.5 +7.2,0.91,5.710,67.5,7.0,0.91,5.740,68.1 +9.3,0.91,5.960,77.2,9.1,0.91,6.000,77.8 +10.9,0.91,5.790,91.9,10.7,0.91,5.850,92.4 +12.1,0.91,5.670,102.2,11.9,0.91,5.730,102.3 +12.5,0.91,6.560,110.5,12.3,0.91,6.610,110.2 +12.6,0.91,7.270,109.6,12.4,0.91,7.330,109.5 +12.6,0.91,7.740,106.1,12.4,0.91,7.870,106.5 +11.9,0.91,7.540,101.8,11.7,0.91,7.970,102.2 +11.2,0.91,10.850,100.2,11.1,0.91,11.310,100.5 +9.9,0.91,10.560,93.0,9.9,0.91,11.490,94.3 +9.0,0.91,10.210,95.7,9.0,0.91,11.240,97.7 +8.2,0.91,9.290,99.6,8.2,0.91,10.480,101.6 +7.6,0.91,10.480,109.8,7.5,0.91,11.540,110.8 +6.8,0.90,8.430,115.3,6.5,0.90,9.190,116.2 +7.5,0.90,11.170,128.2,7.3,0.90,11.760,128.2 +7.7,0.90,8.190,127.2,7.5,0.90,8.700,128.0 +7.5,0.90,8.660,136.8,7.3,0.90,9.030,137.4 +7.8,0.90,8.040,154.9,7.6,0.90,8.470,154.6 +7.6,0.90,10.240,161.9,7.5,0.90,10.620,161.9 +7.5,0.90,8.910,166.9,7.3,0.90,9.340,167.0 +7.6,0.90,6.460,176.3,7.4,0.90,6.950,176.6 +7.8,0.90,6.210,177.7,7.6,0.90,6.620,179.0 +8.3,0.90,4.550,183.4,8.2,0.90,5.010,188.3 +7.9,0.90,3.040,324.1,7.8,0.90,2.930,321.0 +3.8,0.90,5.940,344.1,3.6,0.90,5.920,343.7 +3.5,0.90,7.640,335.8,3.3,0.90,7.700,335.7 +3.1,0.90,7.250,343.4,2.9,0.90,7.280,343.4 +2.9,0.91,5.990,337.1,2.7,0.91,6.020,336.7 +2.5,0.91,6.120,325.0,2.3,0.91,6.160,324.9 +3.0,0.91,7.260,327.2,2.8,0.91,7.380,327.1 +3.4,0.91,8.610,331.1,3.2,0.91,8.740,330.9 +3.3,0.91,7.780,331.4,3.2,0.91,8.300,330.7 +2.3,0.91,10.440,338.2,2.1,0.91,10.960,338.1 +1.4,0.91,10.540,339.6,1.3,0.91,11.020,339.4 +1.0,0.91,11.840,331.1,0.8,0.91,12.420,331.4 +0.3,0.91,9.600,327.9,0.1,0.91,10.110,329.0 +-0.0,0.91,9.610,335.9,-0.2,0.91,10.280,337.1 +-0.3,0.91,9.650,331.5,-0.4,0.91,10.300,333.3 +-0.4,0.91,8.510,327.7,-0.4,0.91,9.110,329.8 +0.2,0.91,9.210,318.2,0.4,0.91,9.730,320.7 +0.9,0.91,9.010,319.1,1.1,0.91,9.380,323.5 +1.4,0.91,9.720,316.5,1.7,0.91,9.790,320.6 +1.9,0.91,8.070,318.0,2.4,0.91,8.020,323.2 +2.8,0.91,8.500,314.3,3.3,0.91,8.560,318.8 +3.0,0.91,8.340,306.2,3.5,0.91,8.490,310.0 +3.2,0.91,8.460,302.1,3.7,0.91,8.670,305.4 +3.6,0.91,7.140,296.6,3.6,0.91,7.990,298.6 +5.0,0.91,5.790,295.3,4.8,0.91,5.870,295.4 +6.4,0.91,5.780,298.2,6.2,0.91,5.820,298.1 +7.9,0.91,4.560,301.6,7.7,0.91,4.610,301.4 +9.3,0.91,4.400,301.7,9.1,0.91,4.460,301.5 +10.3,0.91,4.520,302.6,10.1,0.91,4.580,302.3 +10.8,0.91,4.790,294.0,10.6,0.91,4.850,293.8 +11.3,0.91,4.150,282.6,11.1,0.91,4.220,282.3 +11.4,0.91,4.630,269.2,11.2,0.91,4.690,269.1 +11.4,0.91,3.560,270.3,11.3,0.91,3.720,270.6 +11.3,0.91,2.770,251.3,11.2,0.91,2.910,254.6 +11.4,0.91,2.820,236.3,11.3,0.91,2.990,238.3 +11.3,0.91,3.990,219.0,11.3,0.91,4.090,221.9 +11.0,0.91,5.590,197.6,11.0,0.91,5.480,200.8 +10.6,0.91,7.150,198.3,10.6,0.91,7.310,197.7 +10.1,0.91,7.770,192.3,10.4,0.91,7.660,195.1 +10.7,0.91,6.300,197.9,10.8,0.91,5.980,201.7 +10.9,0.91,5.390,207.2,11.0,0.91,5.310,211.1 +10.5,0.91,7.000,209.2,10.8,0.91,6.940,212.2 +10.2,0.91,8.310,214.8,10.4,0.91,8.430,216.3 +10.2,0.91,9.300,219.4,10.4,0.91,9.530,220.5 +9.5,0.91,9.640,214.5,9.8,0.91,9.880,215.9 +9.2,0.91,10.550,210.4,9.5,0.91,10.860,211.8 +8.1,0.91,11.020,207.3,8.3,0.91,11.280,208.3 +7.9,0.91,9.460,210.0,8.5,0.91,9.820,213.1 +8.9,0.91,8.040,213.8,8.9,0.91,8.290,215.1 +10.8,0.91,8.310,214.2,10.7,0.91,8.360,214.6 +12.0,0.91,7.430,213.9,11.8,0.91,7.510,214.2 +13.4,0.91,7.480,208.6,13.2,0.91,7.560,208.7 +13.9,0.91,6.790,204.1,13.7,0.91,6.830,204.3 +14.8,0.91,5.480,210.7,14.7,0.91,5.550,210.8 +15.5,0.91,5.220,218.5,15.3,0.91,5.280,218.7 +15.6,0.91,4.920,234.6,15.4,0.91,4.970,234.6 +15.5,0.91,3.300,250.3,15.3,0.91,3.440,250.1 +15.4,0.91,1.780,293.4,15.3,0.91,1.830,290.6 +12.3,0.91,5.800,20.4,12.6,0.91,5.680,18.4 +11.0,0.91,7.080,39.6,11.3,0.91,7.650,39.3 +10.0,0.91,10.760,45.7,10.1,0.91,11.490,47.4 +7.7,0.91,11.980,8.6,7.7,0.91,12.670,11.3 +5.8,0.91,12.620,16.2,5.7,0.91,13.480,17.9 +4.8,0.91,13.830,20.7,4.7,0.91,14.650,21.9 +3.8,0.91,13.870,20.6,3.7,0.91,14.550,21.1 +2.7,0.91,14.360,25.8,2.6,0.91,15.070,26.2 +2.3,0.91,14.160,28.0,2.1,0.91,14.870,28.3 +1.5,0.91,13.730,29.4,1.4,0.91,14.410,29.9 +1.1,0.91,12.850,30.1,1.0,0.91,13.520,30.9 +1.0,0.91,12.980,30.5,0.9,0.91,13.700,31.5 +0.7,0.92,11.560,25.6,0.6,0.92,12.230,26.0 +0.9,0.92,11.560,31.0,0.7,0.92,11.710,31.3 +1.5,0.92,12.060,40.1,1.3,0.92,12.180,40.3 +2.3,0.92,10.880,38.4,2.1,0.92,10.980,38.4 +3.3,0.92,9.320,36.6,3.1,0.92,9.400,36.6 +4.3,0.92,8.370,31.3,4.1,0.92,8.440,31.4 +5.1,0.92,7.870,26.4,4.9,0.92,7.930,26.5 +5.5,0.92,7.480,28.1,5.3,0.92,7.530,28.0 +5.8,0.92,7.070,29.4,5.5,0.92,7.130,29.2 +5.7,0.92,7.070,23.7,5.5,0.92,7.150,23.6 +5.0,0.92,7.040,20.9,4.9,0.92,7.170,21.0 +4.6,0.92,5.980,22.6,4.5,0.92,6.210,22.8 +4.3,0.92,5.620,23.7,4.1,0.92,5.690,23.9 +4.3,0.92,4.110,15.8,4.2,0.92,4.100,14.7 +4.2,0.92,2.800,10.7,4.1,0.92,3.000,8.3 +4.3,0.92,2.470,332.2,4.3,0.92,2.710,334.7 +4.6,0.92,2.940,306.2,4.5,0.92,3.010,311.3 +4.7,0.92,3.390,297.4,4.7,0.92,3.460,302.5 +4.8,0.92,4.110,278.8,4.8,0.92,4.220,283.3 +4.7,0.92,5.120,271.6,4.8,0.92,5.130,274.9 +5.1,0.92,6.680,271.9,5.2,0.92,6.630,274.9 +5.4,0.92,7.570,270.6,5.4,0.92,7.510,273.9 +5.8,0.92,8.210,276.8,5.9,0.92,8.040,281.3 +5.7,0.92,9.110,282.5,6.0,0.92,8.880,286.4 +1.3,0.92,8.450,303.0,1.9,0.92,8.810,301.3 +2.8,0.92,8.840,290.8,3.1,0.92,9.480,291.9 +5.1,0.92,6.320,286.5,5.0,0.92,6.500,287.1 +7.3,0.92,6.240,282.7,7.1,0.92,6.320,282.5 +8.7,0.92,6.230,280.2,8.5,0.92,6.310,279.9 +10.2,0.92,6.750,270.5,10.0,0.92,6.830,270.4 +11.5,0.92,6.890,258.1,11.3,0.92,6.970,258.1 +12.6,0.91,6.760,256.8,12.4,0.91,6.860,256.8 +13.4,0.91,6.790,251.5,13.2,0.91,6.900,251.5 +13.8,0.91,6.070,240.7,13.6,0.91,6.180,241.0 +14.2,0.91,5.880,237.4,14.0,0.91,6.100,237.4 +14.3,0.91,7.650,228.4,14.2,0.91,7.900,231.0 +14.1,0.91,9.360,227.6,14.1,0.91,9.460,228.3 +14.0,0.91,10.870,233.0,14.0,0.91,10.760,234.3 +12.6,0.91,13.790,225.6,12.7,0.91,14.530,226.7 +11.2,0.91,14.780,221.7,11.3,0.91,15.710,222.9 +10.7,0.91,14.730,219.5,11.0,0.91,15.810,221.0 +9.6,0.91,14.660,214.8,9.8,0.91,15.630,216.5 +8.8,0.91,16.000,215.7,9.0,0.91,17.210,217.1 +8.4,0.91,16.600,215.7,8.6,0.91,17.760,216.7 +8.2,0.91,16.370,216.0,8.5,0.91,17.450,217.2 +8.1,0.91,16.170,214.9,8.5,0.91,17.220,216.2 +7.8,0.91,15.820,212.6,8.1,0.91,16.880,214.1 +7.4,0.91,15.820,214.2,7.7,0.91,16.830,215.3 +6.9,0.91,15.270,214.2,7.1,0.91,16.160,215.0 +7.4,0.91,14.630,213.1,7.4,0.91,15.650,213.6 +8.6,0.91,12.390,208.3,8.5,0.91,12.580,208.8 +10.6,0.91,11.240,204.6,10.4,0.91,11.310,205.0 +12.3,0.91,12.540,205.7,12.1,0.91,12.620,206.0 +14.0,0.91,12.400,204.8,13.8,0.91,12.510,204.9 +15.5,0.91,12.810,202.6,15.3,0.91,12.960,202.8 +16.3,0.90,13.220,201.2,16.1,0.90,13.390,201.3 +16.7,0.90,13.790,201.0,16.5,0.90,13.970,201.0 +16.4,0.90,14.040,197.8,16.3,0.90,14.300,197.9 +15.3,0.90,15.870,192.9,15.2,0.90,16.590,193.0 +14.1,0.90,17.570,192.8,14.1,0.90,18.360,192.8 +13.1,0.90,19.020,191.8,13.0,0.90,19.680,191.8 +12.1,0.90,19.960,191.7,12.0,0.90,20.630,191.7 +11.6,0.90,20.010,191.2,11.5,0.90,20.730,191.5 +11.0,0.90,19.170,191.3,11.0,0.90,20.010,192.0 +10.5,0.90,18.800,186.8,10.5,0.90,19.550,187.7 +9.8,0.90,17.520,186.8,9.8,0.90,18.320,188.3 +9.7,0.90,18.210,193.4,9.6,0.90,18.860,193.9 +9.6,0.90,15.900,194.3,9.4,0.90,16.450,194.8 +10.3,0.90,17.230,202.0,10.2,0.90,17.840,202.4 +10.4,0.90,15.810,204.0,10.2,0.90,16.360,204.6 +10.2,0.90,14.980,207.6,10.1,0.90,15.520,208.0 +9.9,0.90,14.720,213.4,9.7,0.90,15.350,214.3 +9.9,0.90,14.160,231.8,9.8,0.90,14.670,232.9 +11.3,0.90,9.040,255.8,11.2,0.90,9.330,257.0 +13.3,0.90,9.930,269.6,13.1,0.90,10.120,270.2 +14.7,0.90,11.570,284.2,14.5,0.90,11.780,284.2 +14.7,0.90,10.370,306.3,14.5,0.90,10.540,306.2 +14.5,0.90,10.180,315.6,14.3,0.90,10.290,315.3 +14.2,0.90,9.070,325.8,14.0,0.90,9.190,325.5 +14.0,0.91,9.200,327.1,13.8,0.91,9.310,327.0 +13.6,0.91,8.680,338.7,13.4,0.91,8.810,338.4 +13.2,0.91,9.110,344.5,13.0,0.91,9.240,344.2 +12.3,0.91,8.810,2.4,12.1,0.91,9.130,2.1 +11.4,0.91,9.340,15.1,11.3,0.91,10.110,14.2 +10.5,0.91,11.190,13.0,10.4,0.91,11.740,13.6 +9.9,0.91,10.500,25.8,9.8,0.91,11.050,26.2 +9.8,0.91,10.140,31.5,9.8,0.91,10.490,30.9 +9.3,0.91,9.840,36.8,9.4,0.91,10.130,36.3 +9.1,0.91,10.390,44.4,9.0,0.91,10.330,44.5 +8.3,0.91,10.160,53.4,8.3,0.91,10.520,52.5 +7.7,0.91,9.950,58.2,7.7,0.91,10.380,57.3 +6.8,0.91,8.750,71.0,6.9,0.91,9.280,70.5 +6.5,0.91,8.810,86.8,6.5,0.91,9.230,86.0 +6.5,0.91,8.710,89.3,6.6,0.91,9.280,87.8 +6.2,0.91,8.670,94.7,6.2,0.91,9.290,93.3 +5.3,0.91,9.070,106.8,5.4,0.91,9.900,106.0 +4.9,0.91,8.370,123.4,4.8,0.91,8.930,122.9 +5.2,0.91,7.320,123.2,5.1,0.91,7.530,123.0 +6.5,0.91,8.300,126.3,6.3,0.91,8.400,126.3 +8.1,0.91,7.690,123.5,7.9,0.91,7.780,123.5 +9.4,0.91,8.450,123.8,9.2,0.91,8.550,123.8 +10.3,0.91,8.960,126.6,10.1,0.91,9.070,126.7 +11.1,0.91,9.120,131.9,10.9,0.91,9.230,132.1 +11.5,0.91,9.850,135.6,11.3,0.91,9.980,135.7 +11.6,0.91,9.960,141.3,11.4,0.91,10.130,141.3 +11.3,0.91,10.870,144.6,11.1,0.91,11.080,144.5 +11.1,0.91,10.790,147.6,10.9,0.91,11.100,147.6 +9.5,0.91,11.340,149.1,9.3,0.91,11.620,149.2 +8.3,0.91,10.110,146.8,8.1,0.91,10.320,146.8 +6.4,0.91,7.910,130.2,6.2,0.91,8.080,130.6 +8.3,0.91,9.970,138.8,8.1,0.91,10.440,139.2 +8.1,0.91,10.860,139.6,8.0,0.91,11.240,140.2 +7.3,0.91,12.840,148.6,7.1,0.91,13.280,148.8 +5.9,0.91,12.690,148.7,5.8,0.91,13.490,148.8 +5.0,0.91,11.090,140.5,4.9,0.91,11.610,140.9 +4.5,0.91,11.600,135.5,4.4,0.91,12.270,136.0 +4.4,0.91,8.000,137.0,4.3,0.91,8.900,139.9 +3.9,0.91,7.870,128.0,3.7,0.91,8.200,128.7 +3.8,0.91,4.500,95.0,3.6,0.91,4.710,98.0 +3.9,0.91,9.100,128.9,3.7,0.91,9.810,131.7 +3.9,0.90,11.920,139.4,3.8,0.90,12.640,139.8 +3.9,0.90,12.700,145.2,3.7,0.90,13.210,145.3 +3.9,0.91,7.830,125.9,3.7,0.91,8.030,126.6 +3.7,0.90,8.600,120.0,3.5,0.90,8.760,120.5 +3.6,0.90,8.680,124.3,3.4,0.90,8.830,124.6 +3.7,0.90,8.140,121.4,3.6,0.90,8.280,121.9 +3.9,0.90,7.900,124.3,3.7,0.90,8.010,124.7 +4.2,0.90,7.430,120.2,4.1,0.90,7.580,120.9 +4.4,0.90,6.730,111.6,4.3,0.90,6.850,112.4 +4.3,0.90,6.460,111.6,4.2,0.90,6.850,113.3 +4.9,0.90,8.310,115.9,4.9,0.90,9.630,119.4 +5.2,0.90,10.470,119.1,5.1,0.90,11.100,120.1 +5.7,0.90,13.260,128.7,5.7,0.90,14.130,129.2 +5.5,0.90,12.920,129.4,5.5,0.90,13.640,130.0 +5.8,0.90,13.150,135.8,5.7,0.90,13.800,136.2 +6.3,0.90,15.090,138.1,6.2,0.90,15.590,138.4 +6.0,0.90,14.960,143.1,5.9,0.90,15.660,143.0 +13.3,0.89,16.220,208.7,13.6,0.89,17.700,212.6 +8.0,0.89,12.960,151.3,8.1,0.89,13.550,151.5 +8.7,0.89,10.710,157.4,8.7,0.89,11.160,157.7 +5.9,0.90,4.310,293.7,6.4,0.90,4.530,285.2 +5.3,0.90,5.970,299.1,5.5,0.90,6.510,297.6 +5.4,0.90,7.040,287.7,5.8,0.90,7.800,284.4 +6.8,0.90,10.450,265.9,6.9,0.90,11.210,267.6 +5.8,0.90,9.370,257.1,5.8,0.90,10.390,259.1 +7.1,0.90,14.370,254.7,7.0,0.90,14.940,255.4 +7.5,0.90,16.140,260.5,7.4,0.90,16.450,260.7 +8.7,0.90,14.400,255.7,8.5,0.90,14.610,255.9 +9.3,0.90,13.790,258.1,9.1,0.90,14.050,258.2 +10.3,0.90,12.390,255.9,10.0,0.90,12.640,256.0 +11.0,0.90,12.660,255.2,10.8,0.90,12.880,255.3 +11.9,0.90,11.080,255.6,11.7,0.90,11.310,255.8 +12.4,0.90,9.990,256.9,12.2,0.90,10.170,257.3 +12.6,0.90,8.440,268.2,12.4,0.90,8.590,268.2 +12.4,0.90,7.050,261.5,12.3,0.90,7.480,262.0 +12.9,0.90,8.500,258.7,12.8,0.90,8.980,259.6 +13.1,0.90,9.790,253.1,13.0,0.90,10.170,254.3 +13.0,0.90,11.450,257.7,12.9,0.90,11.490,258.5 +6.6,0.90,8.720,20.7,6.6,0.90,8.760,20.9 +2.6,0.90,10.460,26.8,2.4,0.90,10.880,26.4 +1.5,0.90,8.990,26.8,1.3,0.90,9.580,26.8 +0.4,0.90,9.430,25.9,0.2,0.90,9.510,27.1 +-0.5,0.91,8.700,40.4,-0.7,0.91,8.880,41.2 +-1.6,0.91,8.670,34.0,-1.8,0.91,8.870,34.1 +-2.7,0.91,8.480,36.9,-2.9,0.91,8.740,37.3 +-3.8,0.91,9.660,42.6,-4.0,0.91,9.900,42.3 +-4.2,0.91,8.850,41.2,-4.3,0.91,8.960,41.6 +-4.5,0.91,5.990,36.5,-4.7,0.91,6.040,36.4 +-4.8,0.91,6.020,37.7,-5.0,0.91,6.020,37.3 +-3.9,0.91,5.760,37.0,-4.1,0.91,5.750,36.8 +-2.5,0.91,5.600,41.6,-2.7,0.91,5.600,41.5 +-0.9,0.91,5.040,41.3,-1.1,0.91,5.020,41.2 +0.6,0.91,4.480,43.8,0.5,0.91,4.450,43.8 +2.0,0.91,3.950,40.1,1.8,0.91,3.910,40.1 +3.4,0.91,2.970,35.6,3.3,0.91,2.930,35.4 +4.4,0.91,3.200,40.6,4.2,0.91,3.150,40.6 +4.9,0.91,3.150,45.8,4.7,0.91,3.120,45.9 +5.0,0.91,3.870,39.0,4.8,0.91,3.840,39.2 +4.5,0.91,4.850,46.1,4.4,0.91,4.830,46.1 +4.1,0.91,6.000,48.2,4.0,0.91,5.930,48.7 +3.4,0.91,6.930,54.3,3.3,0.91,7.250,54.8 +2.6,0.91,8.790,64.2,2.5,0.91,9.010,63.6 +1.8,0.91,8.460,75.2,1.7,0.91,8.830,76.1 +1.3,0.91,8.440,78.7,1.4,0.91,8.340,76.3 +0.8,0.91,8.660,79.8,0.9,0.91,8.970,79.0 +0.1,0.91,7.840,85.2,0.3,0.91,8.160,85.8 +-0.1,0.91,7.000,86.4,0.1,0.91,7.040,87.9 +0.4,0.91,5.920,97.7,0.7,0.91,5.710,96.4 +-0.2,0.91,6.440,105.5,0.1,0.91,6.310,105.8 +0.2,0.91,4.050,105.3,0.5,0.91,4.010,106.6 +0.8,0.91,3.100,141.7,0.9,0.91,3.200,142.2 +1.9,0.91,6.260,173.2,2.2,0.91,6.210,175.1 +2.4,0.91,9.670,184.2,2.8,0.91,9.950,186.4 +1.7,0.91,1.840,181.8,1.5,0.91,1.950,182.7 +3.2,0.91,3.070,191.0,3.0,0.91,3.100,191.3 +5.2,0.91,4.610,226.5,5.0,0.91,4.630,227.0 +7.4,0.91,3.360,250.5,7.2,0.91,3.400,251.2 +9.5,0.91,4.780,260.6,9.2,0.91,4.850,260.5 +10.4,0.91,6.320,262.3,10.2,0.91,6.340,262.3 +11.1,0.90,4.820,255.4,10.9,0.90,4.900,255.5 +12.3,0.90,5.570,255.5,12.1,0.90,5.670,255.3 +12.8,0.90,5.680,248.5,12.6,0.90,5.790,248.5 +12.7,0.90,4.190,244.7,12.6,0.90,4.380,245.5 +12.7,0.90,4.250,240.0,12.6,0.90,4.380,241.0 +12.9,0.90,4.060,209.3,12.8,0.90,4.230,211.5 +12.9,0.90,6.380,190.4,12.9,0.90,6.530,191.9 +12.3,0.90,8.660,183.6,12.7,0.90,9.070,186.4 +11.2,0.90,11.960,175.3,11.6,0.90,11.560,177.9 +10.1,0.90,14.250,168.8,10.7,0.90,14.440,171.3 +10.5,0.90,15.540,173.1,11.3,0.90,15.970,174.6 +9.6,0.90,15.280,176.4,10.5,0.90,15.520,178.4 +8.7,0.90,15.040,176.6,9.3,0.90,15.190,178.0 +8.9,0.90,15.580,177.9,9.7,0.90,15.920,179.2 +7.9,0.90,16.050,180.5,8.5,0.90,16.580,181.9 +8.1,0.90,16.470,183.0,8.7,0.90,16.820,184.3 +8.1,0.90,16.140,179.8,8.5,0.90,16.530,180.7 +7.7,0.90,15.860,179.1,7.7,0.90,16.260,179.6 +7.7,0.90,15.530,180.5,7.7,0.90,16.050,180.8 +8.9,0.90,13.810,180.9,8.8,0.90,14.160,181.1 +10.8,0.90,13.460,180.7,10.6,0.90,13.610,180.9 +12.2,0.90,13.430,184.9,12.0,0.90,13.570,185.1 +14.3,0.90,11.330,188.5,14.1,0.90,11.480,188.6 +16.3,0.90,10.420,187.2,16.1,0.90,10.580,187.5 +17.4,0.90,10.440,188.9,17.2,0.90,10.600,189.1 +18.1,0.90,9.640,182.7,17.9,0.90,9.800,182.8 +18.4,0.90,9.820,183.7,18.3,0.90,10.020,183.8 +18.1,0.90,9.580,176.4,18.0,0.90,9.950,176.6 +16.8,0.90,12.740,160.8,16.9,0.90,13.710,162.1 +15.7,0.90,14.400,161.2,15.8,0.90,15.390,162.9 +14.2,0.89,14.160,160.2,14.2,0.89,15.150,161.1 +13.2,0.89,12.360,168.8,13.2,0.89,13.120,169.4 +7.7,0.89,6.580,319.3,7.6,0.89,6.710,319.2 +12.1,0.89,10.360,240.9,12.1,0.89,10.940,240.9 +11.4,0.90,12.230,257.0,11.3,0.90,12.860,258.4 +10.0,0.90,16.180,282.9,10.0,0.90,17.220,283.4 +9.9,0.90,11.990,287.1,9.8,0.90,12.590,288.0 +6.8,0.89,8.670,286.4,6.8,0.89,8.950,285.9 +6.6,0.89,6.110,275.4,6.5,0.89,6.230,271.6 +4.4,0.89,11.040,278.4,4.3,0.89,11.630,280.9 +2.6,0.89,10.730,304.4,2.4,0.89,10.950,304.3 +0.7,0.89,10.010,307.1,0.5,0.89,10.220,307.0 +-0.2,0.89,11.500,295.4,-0.4,0.89,11.670,295.6 +0.7,0.89,12.210,293.6,0.5,0.89,12.380,293.6 +0.3,0.90,13.770,300.4,0.1,0.90,14.000,300.4 +0.8,0.90,15.250,307.4,0.6,0.90,15.500,307.4 +1.3,0.90,17.160,313.1,1.1,0.90,17.480,313.1 +1.0,0.90,18.780,317.5,0.8,0.90,19.140,317.5 +1.2,0.90,18.590,323.9,1.0,0.90,18.960,323.9 +0.8,0.90,18.210,321.2,0.6,0.90,18.550,321.1 +0.1,0.90,17.180,324.6,-0.0,0.90,17.550,324.5 +-0.4,0.90,14.600,324.9,-0.5,0.90,15.070,324.6 +0.3,0.90,18.710,326.5,0.1,0.90,19.470,326.5 +1.2,0.90,16.050,322.3,1.0,0.90,16.670,322.4 +0.9,0.90,16.540,319.2,0.8,0.90,17.290,319.5 +0.8,0.90,14.720,317.9,0.6,0.90,15.440,318.1 +0.6,0.90,16.170,319.7,0.4,0.90,16.940,319.9 +0.4,0.90,15.650,320.9,0.3,0.90,16.420,321.3 +0.2,0.90,16.130,320.0,0.1,0.90,16.900,320.9 +-0.2,0.90,14.120,318.7,-0.3,0.90,14.990,319.9 +-0.5,0.90,12.900,321.9,-0.5,0.90,13.880,323.6 +-1.0,0.90,11.750,318.4,-1.0,0.90,12.680,320.6 +-1.3,0.90,10.140,316.8,-1.3,0.90,10.910,318.7 +-1.4,0.90,10.810,315.4,-1.4,0.90,11.530,318.0 +-1.6,0.90,9.410,312.5,-1.6,0.90,10.140,315.4 +-1.2,0.90,8.060,320.8,-1.2,0.90,8.650,323.2 +-0.1,0.90,6.150,324.7,-0.3,0.90,6.250,325.4 +1.5,0.90,5.090,324.9,1.4,0.90,5.130,325.3 +3.1,0.90,4.840,318.2,2.9,0.90,4.870,318.5 +4.5,0.90,4.510,313.5,4.3,0.90,4.550,313.8 +5.9,0.90,3.760,307.9,5.7,0.90,3.790,307.8 +7.4,0.90,2.720,298.2,7.2,0.90,2.760,296.8 +9.2,0.90,3.100,289.6,9.0,0.90,3.150,288.4 +10.3,0.90,1.600,281.9,10.1,0.90,1.660,279.1 +10.9,0.90,2.050,240.5,10.7,0.90,2.090,240.4 +10.9,0.90,1.120,94.7,10.8,0.90,0.880,106.1 +9.3,0.90,3.870,86.5,9.5,0.90,3.140,89.7 +9.2,0.90,4.000,92.5,9.3,0.90,3.720,96.4 +8.9,0.90,4.840,82.7,9.1,0.90,4.590,84.2 +7.7,0.90,4.410,82.5,8.2,0.90,4.350,89.3 +7.8,0.90,4.750,73.3,8.2,0.90,4.660,76.2 +6.5,0.90,5.280,53.1,6.9,0.90,5.540,54.6 +2.6,0.90,10.180,344.2,2.8,0.90,10.290,347.6 +1.2,0.90,9.470,353.1,1.4,0.90,9.970,357.2 +0.2,0.90,8.630,358.7,0.2,0.90,8.980,2.9 +-1.0,0.91,9.840,358.3,-1.2,0.91,10.460,0.2 +-1.3,0.91,10.190,354.9,-1.3,0.91,10.970,356.2 +1.5,0.91,10.040,357.4,2.1,0.91,10.840,2.0 +-0.5,0.91,11.250,341.0,-0.3,0.91,12.070,343.6 +0.2,0.91,9.970,335.6,0.4,0.91,10.740,338.3 +1.2,0.91,6.820,329.3,1.1,0.91,7.100,330.4 +3.3,0.91,9.550,335.0,3.1,0.91,9.710,335.1 +4.2,0.91,10.970,345.4,4.0,0.91,11.140,345.4 +4.9,0.91,11.270,348.4,4.7,0.91,11.410,348.2 +5.7,0.91,11.420,350.6,5.4,0.91,11.560,350.4 +6.2,0.91,11.150,352.2,6.0,0.91,11.290,352.0 +6.4,0.91,11.480,352.7,6.2,0.91,11.620,352.4 +6.3,0.91,11.300,354.3,6.1,0.91,11.450,354.1 +5.9,0.91,11.220,352.7,5.7,0.91,11.380,352.6 +5.2,0.91,10.550,0.4,5.0,0.91,10.870,0.1 +4.4,0.91,9.020,1.5,4.3,0.91,9.730,1.6 +3.6,0.91,10.830,0.2,3.5,0.91,11.310,0.8 +2.9,0.91,9.830,3.6,2.8,0.91,10.380,3.8 +2.7,0.91,8.370,12.0,2.5,0.91,8.610,12.9 +2.4,0.91,9.680,16.7,2.2,0.91,10.010,17.7 +2.2,0.91,8.790,25.7,2.1,0.91,9.540,25.1 +2.2,0.91,9.830,19.8,2.2,0.91,9.960,22.1 +1.4,0.91,8.280,33.4,1.3,0.91,8.080,30.4 +1.7,0.91,5.730,14.6,1.7,0.91,6.040,16.2 +1.5,0.91,5.090,35.5,1.5,0.91,5.560,34.2 +1.9,0.91,6.680,11.4,1.9,0.91,7.110,12.7 +1.7,0.91,6.390,18.7,1.7,0.91,6.760,19.5 +1.7,0.91,5.050,12.4,1.7,0.91,5.490,12.5 +1.6,0.92,3.930,350.3,1.6,0.92,4.300,351.9 +2.1,0.92,3.560,326.2,1.9,0.92,3.560,328.6 +3.4,0.92,3.950,359.9,3.2,0.92,3.990,359.8 +4.4,0.92,4.870,358.8,4.2,0.92,4.900,358.2 +5.6,0.92,4.440,354.3,5.4,0.92,4.480,353.6 +6.7,0.92,4.990,350.4,6.4,0.92,5.030,349.7 +7.5,0.91,4.990,347.7,7.3,0.91,5.040,347.1 +8.3,0.91,5.020,344.7,8.1,0.91,5.070,344.2 +8.6,0.91,5.400,340.7,8.4,0.91,5.470,340.3 +8.7,0.91,5.500,345.7,8.5,0.91,5.560,345.2 +8.6,0.91,5.270,352.0,8.4,0.91,5.390,351.3 +8.4,0.91,6.070,349.2,8.2,0.91,6.070,349.6 +8.0,0.91,5.430,16.2,7.9,0.91,5.480,16.2 +7.2,0.91,4.850,32.8,7.1,0.91,5.260,32.1 +6.3,0.91,3.980,46.2,6.2,0.91,4.290,43.9 +6.5,0.91,3.850,35.7,6.6,0.91,4.190,34.1 +6.9,0.91,3.310,30.1,7.1,0.91,3.750,28.9 +6.7,0.91,3.230,29.4,6.9,0.91,3.680,30.2 +6.0,0.91,2.360,43.2,6.2,0.91,2.670,43.9 +5.9,0.91,2.040,48.7,6.1,0.91,2.400,47.6 +5.7,0.91,1.380,91.8,5.9,0.91,1.520,85.6 +5.8,0.91,2.280,119.7,6.0,0.91,2.230,123.9 +5.7,0.91,2.450,155.7,5.7,0.91,2.480,158.5 +6.2,0.91,1.880,181.3,6.3,0.91,1.880,179.0 +5.9,0.91,0.490,129.0,6.2,0.91,0.680,163.2 +5.1,0.91,1.110,14.5,5.4,0.91,0.940,23.6 +6.6,0.91,1.300,335.2,6.5,0.91,1.270,330.0 +8.1,0.91,2.780,337.8,7.9,0.91,2.810,336.9 +9.0,0.91,4.790,310.7,8.8,0.91,4.820,311.1 +10.1,0.91,6.740,331.4,9.9,0.91,6.850,331.4 +10.2,0.91,8.740,348.4,10.0,0.91,8.840,348.2 +10.5,0.91,10.080,346.0,10.3,0.91,10.230,345.8 +10.6,0.91,11.850,341.2,10.4,0.91,12.060,341.0 +10.4,0.91,12.130,345.6,10.2,0.91,12.360,345.4 +10.9,0.91,12.790,343.4,10.7,0.91,13.260,343.6 +10.0,0.91,11.620,355.4,9.9,0.91,12.540,355.8 +9.2,0.91,11.520,9.0,9.1,0.91,12.610,9.2 +8.3,0.91,10.530,20.1,8.1,0.91,11.560,21.0 +7.4,0.92,10.430,26.6,7.3,0.92,11.570,28.3 +5.6,0.92,7.700,45.2,5.4,0.92,9.010,50.6 +4.8,0.92,8.000,57.2,4.6,0.92,9.100,54.1 +4.1,0.92,7.250,43.3,4.0,0.92,7.710,40.2 +3.6,0.92,6.060,26.4,3.5,0.92,6.490,26.4 +3.2,0.92,6.990,23.1,3.1,0.92,7.380,23.7 +2.8,0.92,6.680,17.6,2.7,0.92,7.030,18.7 +2.4,0.92,7.010,16.2,2.3,0.92,7.190,17.5 +1.9,0.92,7.120,17.3,1.8,0.92,7.300,18.1 +1.4,0.92,6.220,9.9,1.3,0.92,6.440,10.9 +1.4,0.92,5.340,355.7,1.4,0.92,5.630,359.0 +2.3,0.92,3.630,343.2,2.1,0.92,3.740,344.9 +4.2,0.92,2.880,331.0,4.0,0.92,2.910,331.5 +5.9,0.92,4.230,313.4,5.7,0.92,4.250,313.8 +7.8,0.92,4.540,303.8,7.6,0.92,4.590,303.7 +9.7,0.92,4.840,304.9,9.5,0.92,4.900,304.9 +11.1,0.92,5.250,305.9,10.9,0.92,5.310,305.9 +12.3,0.92,5.220,303.2,12.1,0.92,5.280,303.4 +13.2,0.91,5.050,301.5,13.0,0.91,5.130,301.5 +13.9,0.91,4.690,300.8,13.7,0.91,4.780,300.7 +14.1,0.91,4.060,285.9,13.9,0.91,4.160,286.4 +14.2,0.91,5.120,252.6,14.1,0.91,5.180,253.6 +14.3,0.91,6.780,233.7,14.2,0.91,6.790,235.3 +14.6,0.91,7.580,239.0,14.6,0.91,7.850,242.5 +14.9,0.91,9.660,245.8,15.0,0.91,9.860,249.7 +14.9,0.91,8.990,238.7,15.0,0.91,8.970,242.1 +15.2,0.91,9.240,236.1,15.3,0.91,9.320,237.5 +15.3,0.91,8.780,234.2,15.5,0.91,8.960,237.2 +14.9,0.91,9.580,230.1,15.2,0.91,9.680,232.0 +14.9,0.91,10.240,225.9,15.1,0.91,10.290,226.9 +13.9,0.91,11.090,218.1,14.4,0.91,11.350,218.4 +14.2,0.91,11.610,222.2,14.6,0.91,12.010,222.9 +12.5,0.91,12.470,221.5,12.9,0.91,13.060,222.7 +11.8,0.91,14.920,220.5,12.3,0.91,15.690,220.7 +11.1,0.91,14.670,216.3,11.4,0.91,15.610,216.8 +11.1,0.91,12.690,211.0,11.0,0.91,13.480,211.8 +13.0,0.91,11.790,207.2,12.9,0.91,11.920,207.6 +14.8,0.91,11.520,203.5,14.7,0.91,11.630,203.9 +16.8,0.91,12.470,202.1,16.6,0.91,12.600,202.4 +18.7,0.91,12.670,205.0,18.5,0.91,12.810,205.2 +20.4,0.91,13.260,208.7,20.2,0.91,13.410,208.8 +21.4,0.90,13.460,212.4,21.2,0.90,13.630,212.6 +22.1,0.90,14.050,215.8,21.9,0.90,14.250,216.0 +22.3,0.90,14.130,212.7,22.1,0.90,14.370,212.8 +21.6,0.90,14.140,203.9,21.5,0.90,14.780,204.6 +20.2,0.90,16.180,200.4,20.2,0.90,17.060,201.6 +18.5,0.90,18.260,204.3,18.5,0.90,19.390,205.4 +17.2,0.90,18.210,205.8,17.2,0.90,19.420,206.8 +16.2,0.90,18.830,207.5,16.3,0.90,20.060,208.2 +15.8,0.90,19.030,210.2,15.8,0.90,20.280,211.0 +15.5,0.90,19.390,212.2,15.7,0.90,20.780,213.3 +15.2,0.90,19.600,214.5,15.3,0.90,21.010,215.2 +14.5,0.90,19.020,214.5,14.6,0.90,20.310,215.3 +14.1,0.90,15.680,225.2,14.4,0.90,16.900,227.1 +14.6,0.90,14.160,239.5,15.0,0.90,15.470,242.8 +17.4,0.90,15.600,264.5,17.8,0.90,16.720,267.7 +18.2,0.90,15.590,273.8,18.5,0.90,16.810,277.5 +18.1,0.90,15.540,276.8,18.4,0.90,16.810,279.4 +17.9,0.90,13.010,289.2,18.0,0.90,14.050,292.9 +17.7,0.90,10.760,292.3,17.5,0.90,11.370,293.5 +18.5,0.90,8.980,283.0,18.4,0.90,9.090,283.1 +20.7,0.90,7.650,273.6,20.5,0.90,7.770,273.8 +21.7,0.90,8.160,284.2,21.5,0.90,8.290,284.1 +22.5,0.90,6.920,289.5,22.3,0.90,7.020,289.5 +23.2,0.90,6.720,268.8,23.0,0.90,6.820,268.6 +23.9,0.90,6.860,264.7,23.7,0.90,6.940,264.5 +24.6,0.90,7.430,266.2,24.4,0.90,7.550,265.8 +25.5,0.90,7.620,270.3,25.3,0.90,7.810,270.1 +25.2,0.90,7.650,266.4,25.1,0.90,7.990,267.9 +24.6,0.90,10.960,284.3,24.6,0.90,11.400,285.9 +24.5,0.90,10.900,266.8,24.4,0.90,11.320,267.3 +22.8,0.90,14.050,268.3,22.9,0.90,15.140,269.3 +22.8,0.90,14.800,277.4,22.7,0.90,15.580,277.9 +19.0,0.90,12.670,302.0,19.1,0.90,13.890,303.0 +14.0,0.90,12.340,24.3,13.9,0.90,13.150,26.4 +11.8,0.91,13.450,17.4,11.7,0.91,14.660,18.5 +10.0,0.91,19.080,22.1,9.8,0.91,20.300,22.8 +7.4,0.91,16.580,11.3,7.2,0.91,17.090,11.0 +4.8,0.91,16.690,21.4,4.6,0.91,17.000,21.2 +3.9,0.91,16.300,15.4,3.7,0.91,16.750,15.4 +3.6,0.91,12.930,5.4,3.4,0.91,13.380,5.4 +3.0,0.91,14.020,8.1,2.9,0.91,14.720,8.9 +3.2,0.92,14.240,13.6,3.0,0.92,14.800,14.0 +3.8,0.92,14.710,16.5,3.6,0.92,14.900,16.6 +4.2,0.92,13.980,16.4,4.0,0.92,14.140,16.5 +5.0,0.92,12.330,13.5,4.8,0.92,12.450,13.5 +5.9,0.92,11.540,14.3,5.6,0.92,11.650,14.3 +6.8,0.92,11.260,14.7,6.5,0.92,11.360,14.7 +7.8,0.92,8.170,16.0,7.6,0.92,8.240,15.8 +8.8,0.92,7.010,14.6,8.6,0.92,7.080,14.2 +9.1,0.92,6.460,14.6,8.9,0.92,6.520,14.3 +9.2,0.92,5.690,17.8,9.0,0.92,5.720,17.6 +8.9,0.92,5.100,23.7,8.7,0.92,5.140,23.1 +8.6,0.92,4.720,28.1,8.4,0.92,4.840,27.9 +7.8,0.92,4.610,35.8,7.8,0.92,4.870,36.1 +7.1,0.92,4.130,39.6,7.1,0.92,4.510,39.5 +6.6,0.92,3.180,43.3,6.7,0.92,3.640,42.9 +6.4,0.92,3.160,42.2,6.5,0.92,3.620,43.1 +6.0,0.92,2.740,66.8,6.1,0.92,3.130,63.6 +6.1,0.92,3.120,56.3,6.2,0.92,3.530,54.7 +5.9,0.92,3.390,67.6,6.1,0.92,3.780,65.2 +5.6,0.92,4.200,78.3,5.8,0.92,4.510,75.7 +5.4,0.92,4.900,91.2,5.5,0.92,5.150,88.5 +5.0,0.92,5.420,86.9,4.9,0.92,5.510,87.9 +5.5,0.92,6.270,91.9,5.3,0.92,6.200,91.7 +5.3,0.92,6.640,117.0,5.3,0.92,6.490,114.5 +4.3,0.92,8.030,136.3,4.5,0.92,8.300,134.8 +4.7,0.92,6.060,146.1,4.6,0.92,6.220,145.2 +5.9,0.92,6.390,153.4,5.7,0.92,6.440,153.3 +7.1,0.92,5.820,157.7,6.9,0.92,5.870,157.7 +8.5,0.92,6.070,159.4,8.3,0.92,6.120,159.5 +9.9,0.92,6.460,166.0,9.7,0.92,6.520,165.9 +11.1,0.91,7.040,164.0,10.9,0.91,7.110,164.0 +11.9,0.91,7.550,169.9,11.7,0.91,7.630,169.8 +12.1,0.91,7.730,169.4,11.9,0.91,7.820,169.4 +12.5,0.91,8.880,166.0,12.3,0.91,9.000,166.1 +12.3,0.91,8.530,159.9,12.1,0.91,8.870,160.2 +11.8,0.91,10.480,152.4,11.7,0.91,11.170,152.9 +11.4,0.91,11.800,155.1,11.4,0.91,12.650,155.3 +10.5,0.91,13.260,162.2,10.5,0.91,14.080,162.1 +10.0,0.91,14.620,167.1,10.0,0.91,15.460,167.1 +9.6,0.91,15.810,174.9,9.7,0.91,16.610,175.7 +9.8,0.91,16.730,193.2,9.8,0.91,17.370,193.6 +9.3,0.91,17.820,197.2,9.3,0.91,18.540,197.5 +9.2,0.91,18.650,196.8,9.3,0.91,19.360,197.0 +8.8,0.91,17.860,196.6,8.9,0.91,18.620,197.0 +8.4,0.91,16.370,196.7,8.5,0.91,17.080,197.1 +8.2,0.91,16.800,197.0,8.3,0.91,17.540,197.6 +8.1,0.91,17.000,196.2,8.2,0.91,17.650,196.8 +7.9,0.91,16.690,195.3,8.0,0.91,17.280,195.8 +7.8,0.91,15.940,194.3,7.9,0.91,16.730,195.0 +9.0,0.91,14.800,195.2,8.9,0.91,15.230,195.4 +10.3,0.91,13.280,190.8,10.1,0.91,13.410,191.0 +11.8,0.91,12.300,190.2,11.6,0.91,12.400,190.3 +13.7,0.91,11.230,188.1,13.5,0.91,11.350,188.1 +15.2,0.91,11.510,185.2,15.0,0.91,11.650,185.2 +16.7,0.91,10.910,177.8,16.5,0.91,11.040,177.7 +17.4,0.91,10.280,171.1,17.2,0.91,10.390,171.2 +18.1,0.91,10.580,167.5,17.9,0.91,10.730,167.6 +18.0,0.91,12.110,169.1,17.8,0.91,12.300,169.3 +17.9,0.91,11.630,175.4,17.8,0.91,12.080,175.2 +17.0,0.91,12.650,168.8,16.9,0.91,13.520,168.9 +16.0,0.91,13.810,169.1,15.9,0.91,14.570,169.3 +15.4,0.91,14.310,177.0,15.3,0.91,15.090,177.0 +14.3,0.91,17.440,180.8,14.2,0.91,18.140,180.7 +13.3,0.91,18.680,183.1,13.2,0.91,19.330,183.1 +13.1,0.91,18.990,184.7,13.0,0.91,19.550,184.7 +13.0,0.91,18.480,187.5,12.9,0.91,19.010,187.5 +13.2,0.91,19.090,191.3,13.0,0.91,19.600,191.3 +13.4,0.91,19.460,192.2,13.2,0.91,19.970,192.2 +13.7,0.91,20.100,194.1,13.5,0.91,20.600,194.3 +13.8,0.91,18.520,191.6,13.7,0.91,18.940,191.7 +13.7,0.91,17.970,187.3,13.5,0.91,18.390,187.5 +13.6,0.91,17.570,189.4,13.5,0.91,17.990,189.6 +13.9,0.91,17.860,188.7,13.8,0.91,18.280,189.0 +13.7,0.91,16.520,185.6,13.5,0.91,17.090,185.6 +14.4,0.91,16.590,187.3,14.2,0.91,16.870,187.4 +14.8,0.91,16.330,183.5,14.7,0.91,16.550,183.8 +15.9,0.91,14.890,186.9,15.7,0.91,15.040,187.1 +17.5,0.91,13.320,173.3,17.3,0.91,13.440,173.4 +18.8,0.91,13.390,174.6,18.6,0.91,13.550,174.6 +19.4,0.91,13.530,168.3,19.2,0.91,13.720,168.5 +20.7,0.91,13.140,171.1,20.5,0.91,13.360,171.3 +20.0,0.90,14.970,165.5,19.8,0.90,15.220,165.5 +19.7,0.90,15.090,162.1,19.5,0.90,15.480,162.3 +18.6,0.90,14.590,160.6,18.5,0.90,15.120,160.7 +18.1,0.90,15.970,168.1,17.9,0.90,16.560,168.2 +17.0,0.90,15.650,167.5,16.8,0.90,16.220,167.6 +15.8,0.90,15.470,165.1,15.6,0.90,16.240,165.3 +15.6,0.90,14.560,169.7,15.4,0.90,15.040,169.7 +15.1,0.90,15.680,170.8,15.0,0.90,16.330,170.9 +14.7,0.90,16.450,169.3,14.5,0.90,17.050,169.4 +14.3,0.90,16.890,171.0,14.1,0.90,17.630,171.1 +14.1,0.90,16.780,174.6,13.9,0.90,17.380,174.6 +14.0,0.90,17.010,176.7,13.8,0.90,17.340,176.8 +14.4,0.90,15.820,183.4,14.3,0.90,16.230,183.7 +14.6,0.90,14.350,188.2,14.4,0.90,14.790,188.4 +14.7,0.90,14.060,191.4,14.5,0.90,14.520,191.7 +14.5,0.90,13.000,198.1,14.3,0.90,13.400,198.3 +14.7,0.90,9.270,210.1,14.5,0.90,9.800,210.1 +14.8,0.90,12.190,218.2,14.6,0.90,12.720,218.2 +15.9,0.90,10.440,217.5,15.7,0.90,10.570,217.8 +17.4,0.90,7.630,270.5,17.2,0.90,7.710,270.2 +18.0,0.90,7.880,272.6,17.8,0.90,7.990,272.4 +18.6,0.90,7.980,259.1,18.4,0.90,8.060,259.6 +19.3,0.90,8.490,267.9,19.0,0.90,8.630,267.1 +19.0,0.90,8.330,265.4,18.8,0.90,8.470,265.4 +18.7,0.90,8.740,276.7,18.5,0.90,8.860,276.0 +18.2,0.90,8.560,282.8,18.0,0.90,8.940,282.8 +17.2,0.90,11.440,280.2,17.1,0.90,12.100,279.7 +15.2,0.90,14.580,293.3,15.1,0.90,15.180,292.9 +15.4,0.90,12.500,297.1,15.3,0.90,12.970,297.1 +15.6,0.90,8.500,279.0,15.5,0.90,9.200,280.6 +15.0,0.90,7.250,279.6,14.8,0.90,8.080,283.8 +14.2,0.90,6.940,282.1,14.1,0.90,8.150,284.3 +13.6,0.90,10.440,307.7,13.5,0.90,10.940,308.0 +13.0,0.90,9.320,306.9,12.9,0.90,10.180,309.2 +12.5,0.90,10.510,301.4,12.3,0.90,11.230,302.6 +10.4,0.90,14.850,314.3,10.2,0.90,15.350,315.7 +6.5,0.90,14.280,335.5,6.3,0.90,14.900,335.4 +5.1,0.90,10.570,335.8,4.9,0.90,11.570,335.7 +3.7,0.90,14.190,341.1,3.6,0.90,14.800,340.5 +3.1,0.91,13.260,326.1,2.9,0.91,13.560,326.2 +3.1,0.91,14.950,339.8,2.9,0.91,15.240,339.7 +3.8,0.91,13.290,337.1,3.6,0.91,13.510,337.0 +4.8,0.91,13.360,333.4,4.5,0.91,13.590,333.3 +5.5,0.91,13.400,337.1,5.3,0.91,13.620,337.0 +6.3,0.91,12.050,341.1,6.0,0.91,12.240,340.9 +7.1,0.91,12.030,337.0,6.9,0.91,12.220,336.8 +8.0,0.91,10.950,332.1,7.7,0.91,11.140,331.9 +8.4,0.91,11.500,322.8,8.2,0.91,11.710,322.9 +8.6,0.91,11.450,324.7,8.4,0.91,11.680,324.7 +8.2,0.91,11.520,333.2,8.0,0.91,11.820,333.3 +7.6,0.91,9.220,338.4,7.5,0.91,9.760,338.3 +7.2,0.91,11.470,343.4,7.1,0.91,12.250,343.9 +6.6,0.91,8.370,357.0,6.5,0.91,8.520,359.5 +6.2,0.91,10.010,349.9,6.0,0.91,11.110,351.5 +5.7,0.91,9.600,351.0,5.6,0.91,9.660,352.1 +5.1,0.91,11.630,342.0,5.0,0.91,12.210,344.8 +4.4,0.91,10.150,335.7,4.4,0.91,10.550,338.6 +3.9,0.91,12.400,343.3,3.8,0.91,13.200,345.4 +3.0,0.91,12.400,342.7,2.9,0.91,12.890,343.3 +2.6,0.91,12.100,333.4,2.5,0.91,12.760,336.4 +2.1,0.91,11.230,334.7,2.0,0.91,11.570,338.6 +1.9,0.91,9.880,334.3,1.9,0.91,9.930,337.5 +1.7,0.91,8.850,324.9,1.9,0.91,8.990,327.6 +1.5,0.91,7.070,321.5,1.8,0.91,7.640,324.7 +3.0,0.91,4.970,310.3,2.9,0.91,5.140,310.9 +5.2,0.91,4.390,306.4,5.0,0.91,4.440,306.7 +7.6,0.91,4.480,305.1,7.4,0.91,4.530,305.2 +10.0,0.91,4.350,300.4,9.8,0.91,4.400,300.2 +12.3,0.91,5.000,290.4,12.1,0.91,5.100,289.9 +13.9,0.91,6.180,281.1,13.7,0.91,6.270,280.9 +15.1,0.91,5.280,272.8,14.8,0.91,5.360,272.8 +15.9,0.91,6.230,269.5,15.7,0.91,6.300,269.6 +16.6,0.91,5.300,276.7,16.4,0.91,5.400,276.9 +16.8,0.91,5.130,248.6,16.6,0.91,5.350,250.1 +16.8,0.91,4.510,238.9,16.7,0.91,4.750,239.3 +17.1,0.91,6.170,226.2,17.0,0.91,6.310,228.5 +17.1,0.91,7.370,217.5,17.0,0.91,7.460,219.7 +16.3,0.91,7.940,210.5,16.4,0.91,7.880,217.3 +15.9,0.91,8.040,214.3,16.0,0.91,8.140,218.3 +15.4,0.91,9.330,208.9,15.6,0.91,9.620,211.8 +15.0,0.91,10.670,204.6,15.2,0.91,11.050,206.7 +13.7,0.91,11.900,203.4,14.0,0.91,12.240,206.0 +14.6,0.91,12.500,214.6,15.0,0.91,13.200,216.7 +14.7,0.91,13.280,224.8,15.2,0.91,13.890,227.3 +14.0,0.91,15.190,232.5,14.4,0.91,16.080,235.1 +13.6,0.91,13.430,231.8,14.0,0.91,13.720,235.7 +11.3,0.91,12.100,242.1,11.8,0.91,12.720,247.9 +11.7,0.91,10.210,266.7,12.0,0.91,10.760,270.0 +12.3,0.91,6.560,286.2,12.2,0.91,6.670,286.6 +10.5,0.91,5.970,320.1,10.3,0.91,5.980,319.9 +10.5,0.91,6.340,337.9,10.3,0.91,6.360,337.6 +10.9,0.91,7.630,354.5,10.7,0.91,7.640,354.2 +11.6,0.91,7.980,4.7,11.4,0.91,8.040,4.4 +12.2,0.91,8.560,13.0,12.0,0.91,8.620,12.9 +13.0,0.91,8.820,15.1,12.8,0.91,8.900,15.2 +13.6,0.91,9.310,23.2,13.4,0.91,9.410,23.2 +13.8,0.91,9.430,27.2,13.6,0.91,9.540,27.4 +13.4,0.91,9.720,32.2,13.2,0.91,9.910,32.4 +12.6,0.91,10.500,39.2,12.5,0.91,11.160,40.0 +11.7,0.91,11.280,41.7,11.7,0.91,12.030,43.0 +10.6,0.91,10.600,45.1,10.7,0.91,11.530,47.1 +10.1,0.92,11.690,53.5,10.2,0.92,12.700,55.1 +9.4,0.92,10.110,58.7,9.7,0.92,11.460,60.2 +9.2,0.92,9.260,67.3,9.4,0.92,10.220,67.5 +9.0,0.92,8.050,69.5,9.1,0.92,8.550,69.0 +8.5,0.92,6.630,71.3,8.6,0.92,7.210,71.2 +7.7,0.92,5.980,52.0,7.9,0.92,6.430,54.6 +7.2,0.92,5.850,65.0,7.4,0.92,6.370,66.9 +7.2,0.92,6.230,72.8,7.6,0.92,6.730,74.5 +7.9,0.92,5.860,94.7,8.2,0.92,6.280,96.2 +8.0,0.92,5.820,99.5,8.2,0.92,6.180,101.3 +8.8,0.92,5.610,111.8,9.0,0.92,6.050,113.1 +9.7,0.92,5.390,129.5,9.6,0.92,5.540,129.3 +11.1,0.92,5.990,143.7,10.9,0.92,6.070,143.9 +12.2,0.92,5.840,152.0,12.0,0.92,5.900,152.1 +13.4,0.92,5.180,156.9,13.2,0.92,5.240,157.0 +14.6,0.92,5.300,161.9,14.4,0.92,5.350,162.0 +15.6,0.92,5.450,168.9,15.4,0.92,5.510,168.8 +16.3,0.92,5.710,177.2,16.1,0.92,5.750,177.0 +16.7,0.92,5.350,183.0,16.5,0.92,5.410,183.3 +17.1,0.92,5.450,182.8,16.9,0.92,5.520,183.1 +17.1,0.92,4.730,164.2,16.9,0.92,4.820,164.5 +17.0,0.92,5.600,146.3,16.9,0.92,5.650,147.2 +16.9,0.92,7.580,139.4,16.8,0.92,7.670,140.3 +16.0,0.92,11.770,147.0,16.1,0.92,12.120,148.4 +15.1,0.92,13.340,150.8,15.3,0.92,14.020,151.1 +14.4,0.91,14.430,162.2,14.5,0.91,15.140,164.9 +14.6,0.91,12.950,195.5,15.0,0.91,13.350,199.6 +13.8,0.91,13.760,203.6,14.0,0.91,14.760,205.3 +13.4,0.91,14.420,202.9,13.7,0.91,15.380,203.8 +12.9,0.91,15.490,201.1,13.0,0.91,16.410,201.2 +12.2,0.91,15.920,203.9,12.4,0.91,16.910,204.4 +12.1,0.91,15.750,206.7,12.2,0.91,16.640,207.5 +11.3,0.91,15.820,204.8,11.3,0.91,16.580,206.0 +10.7,0.91,15.380,205.2,10.8,0.91,15.960,206.3 +10.6,0.91,14.690,204.2,10.6,0.91,15.460,205.2 +11.7,0.92,12.670,203.6,11.6,0.92,12.960,204.1 +13.5,0.92,11.660,203.0,13.3,0.92,11.720,203.4 +15.3,0.92,11.830,202.8,15.1,0.92,11.890,203.0 +17.1,0.91,11.770,201.2,16.9,0.91,11.850,201.3 +18.4,0.91,11.020,200.4,18.2,0.91,11.100,200.5 +19.6,0.91,10.090,198.6,19.3,0.91,10.170,198.7 +20.5,0.91,9.750,196.4,20.3,0.91,9.840,196.6 +21.1,0.91,9.020,193.7,20.9,0.91,9.120,193.9 +21.3,0.91,9.320,192.6,21.1,0.91,9.440,192.8 +21.0,0.91,9.540,186.5,20.9,0.91,9.900,186.7 +20.8,0.91,12.220,191.0,20.8,0.91,12.520,190.9 +20.1,0.91,13.600,195.8,20.1,0.91,14.170,196.5 +18.7,0.91,14.550,201.7,18.9,0.91,15.370,202.8 +17.7,0.91,16.190,205.1,17.7,0.91,17.030,205.4 +16.3,0.91,16.430,201.6,16.4,0.91,17.350,202.1 +15.8,0.91,16.870,202.1,15.9,0.91,17.800,202.5 +15.1,0.91,16.390,199.7,15.3,0.91,17.310,200.6 +15.0,0.91,17.320,204.5,15.1,0.91,18.300,205.3 +14.5,0.91,17.800,205.5,14.7,0.91,18.810,206.1 +13.8,0.91,17.300,206.2,14.0,0.91,18.300,207.3 +13.9,0.91,16.390,213.9,14.1,0.91,17.510,214.7 +12.7,0.91,16.710,206.3,12.8,0.91,17.490,207.6 +11.9,0.91,16.700,210.2,12.1,0.91,17.560,211.3 +12.4,0.91,13.950,210.6,12.4,0.91,14.750,211.2 +13.7,0.91,12.270,208.0,13.6,0.91,12.600,208.7 +15.8,0.91,11.550,209.2,15.6,0.91,11.640,209.5 +17.3,0.91,12.300,203.3,17.1,0.91,12.360,203.5 +19.4,0.91,12.030,204.1,19.2,0.91,12.110,204.2 +21.3,0.91,11.070,206.0,21.0,0.91,11.160,206.2 +22.9,0.91,10.580,204.8,22.7,0.91,10.680,205.0 +23.9,0.91,10.410,202.0,23.7,0.91,10.520,202.3 +24.3,0.91,10.500,201.7,24.1,0.91,10.620,201.9 +24.1,0.91,11.000,199.9,23.9,0.91,11.130,200.1 +23.6,0.91,11.490,195.2,23.4,0.91,11.860,195.4 +22.6,0.91,13.870,196.5,22.6,0.91,14.550,197.0 +21.1,0.90,14.660,193.5,21.2,0.90,15.410,194.5 +19.7,0.90,16.860,196.3,19.7,0.90,17.720,196.9 +18.6,0.90,17.320,197.1,18.6,0.90,18.200,197.8 +17.5,0.90,17.850,196.8,17.5,0.90,18.760,197.6 +16.8,0.90,18.510,198.4,16.9,0.90,19.500,199.3 +16.4,0.90,18.900,201.8,16.5,0.90,20.040,202.8 +16.1,0.90,19.850,203.1,16.2,0.90,20.960,204.0 +15.6,0.90,19.070,205.0,15.7,0.90,20.140,205.9 +15.3,0.90,18.380,206.3,15.4,0.90,19.390,207.3 +14.6,0.90,18.610,204.8,14.7,0.90,19.440,205.8 +14.0,0.90,17.740,206.1,14.2,0.90,18.390,207.2 +13.5,0.90,17.140,206.4,13.6,0.90,17.750,207.7 +13.8,0.90,15.300,206.6,13.9,0.90,16.070,207.7 +14.8,0.90,13.520,205.7,14.7,0.90,13.950,206.5 +16.9,0.90,12.600,208.8,16.8,0.90,12.700,209.3 +19.6,0.90,12.440,208.3,19.4,0.90,12.500,208.7 +22.1,0.90,11.430,211.3,21.9,0.90,11.520,211.5 +24.2,0.90,9.840,212.9,24.0,0.90,9.930,213.0 +26.0,0.90,8.350,215.4,25.8,0.90,8.440,215.6 +27.4,0.90,7.710,210.8,27.2,0.90,7.800,211.1 +28.5,0.90,7.480,216.2,28.3,0.90,7.590,216.3 +28.7,0.90,7.670,207.2,28.5,0.90,7.780,207.6 +28.4,0.90,9.870,189.8,28.2,0.90,10.140,190.4 +26.6,0.90,13.290,180.0,26.7,0.90,14.200,181.4 +21.6,0.90,11.000,28.9,21.8,0.90,11.340,30.6 +20.1,0.90,7.880,59.1,19.8,0.90,8.900,57.1 +18.4,0.90,8.290,39.9,18.1,0.90,8.700,41.0 +16.8,0.90,4.750,18.7,16.7,0.90,4.930,20.2 +14.5,0.90,6.020,10.7,14.3,0.90,5.740,13.6 +13.5,0.90,5.450,33.4,13.4,0.90,4.490,38.2 +12.6,0.90,4.730,26.4,12.6,0.90,4.390,30.5 +10.9,0.90,8.160,20.8,10.5,0.90,8.290,24.5 +9.9,0.90,9.090,11.0,9.8,0.90,9.460,15.1 +8.6,0.90,10.480,14.1,8.4,0.90,11.230,16.4 +7.7,0.90,9.400,19.0,7.5,0.90,10.270,21.1 +6.8,0.90,9.790,12.2,6.6,0.90,10.510,14.2 +6.4,0.90,7.950,15.3,6.2,0.90,7.990,15.6 +7.0,0.90,7.150,21.4,6.9,0.90,7.170,21.4 +8.7,0.90,6.180,17.0,8.5,0.90,6.190,17.0 +10.6,0.90,5.120,16.2,10.4,0.90,5.130,16.0 +12.4,0.90,3.930,17.4,12.2,0.90,3.920,16.9 +14.0,0.90,3.440,16.1,13.8,0.90,3.430,15.1 +15.4,0.90,2.490,30.8,15.2,0.90,2.450,28.8 +17.0,0.90,1.010,41.7,16.8,0.90,0.940,37.5 +18.4,0.90,0.520,80.1,18.3,0.90,0.410,84.4 +19.9,0.90,2.970,202.9,19.7,0.90,3.000,202.9 +20.1,0.90,4.240,176.3,19.9,0.90,4.360,177.1 +19.5,0.90,8.070,166.0,19.4,0.90,8.190,166.9 +19.5,0.90,11.160,173.3,19.5,0.90,11.230,175.9 +13.5,0.90,15.800,335.0,13.3,0.90,16.760,334.9 +13.1,0.90,7.020,85.8,14.0,0.90,6.080,79.9 +20.5,0.90,9.610,182.9,20.7,0.90,9.680,185.9 +19.9,0.90,10.380,213.1,20.1,0.90,10.920,219.5 +19.0,0.90,10.860,191.5,20.2,0.90,11.230,196.2 +17.8,0.90,12.160,208.7,18.9,0.90,12.660,210.1 +18.6,0.90,11.670,222.2,19.7,0.90,12.160,224.8 +19.0,0.90,11.810,269.2,19.4,0.90,12.250,276.4 +16.6,0.90,10.360,307.2,16.8,0.90,10.940,313.4 +15.4,0.90,12.190,326.6,15.3,0.90,14.780,333.0 +13.3,0.90,13.770,334.0,13.4,0.90,16.460,338.7 +11.1,0.90,9.640,1.0,10.9,0.90,10.030,0.5 +10.2,0.90,10.300,5.3,10.0,0.90,10.350,5.3 +9.1,0.90,10.600,13.2,8.8,0.90,10.650,13.0 +9.8,0.91,9.920,14.6,9.6,0.91,9.980,14.5 +11.5,0.91,9.520,12.1,11.3,0.91,9.580,11.9 +12.8,0.91,8.560,11.1,12.6,0.91,8.620,10.8 +14.1,0.91,7.040,12.0,13.9,0.91,7.090,11.8 +15.0,0.91,5.960,16.1,14.8,0.91,5.990,15.7 +15.5,0.91,5.090,25.6,15.3,0.91,5.110,25.3 +15.9,0.91,4.580,20.8,15.7,0.91,4.600,20.8 +15.4,0.91,4.410,43.0,15.2,0.91,4.420,42.6 +14.9,0.91,4.310,62.6,14.7,0.91,4.260,64.8 +14.5,0.91,5.320,91.1,14.4,0.91,5.280,92.3 +14.3,0.91,6.790,82.2,14.2,0.91,6.760,82.6 +13.4,0.91,9.400,106.2,13.6,0.91,9.120,104.7 +13.5,0.91,10.040,120.3,13.9,0.91,9.620,120.2 +12.8,0.90,11.410,129.0,13.2,0.90,11.850,129.7 +13.0,0.90,12.210,144.4,13.7,0.90,12.590,145.9 +10.2,0.90,10.220,144.1,10.3,0.90,11.340,143.5 +9.8,0.90,10.290,158.2,9.9,0.90,11.600,157.9 +10.1,0.90,15.330,166.8,10.3,0.90,16.140,166.3 +9.6,0.90,16.340,168.2,9.8,0.90,17.150,167.8 +7.8,0.91,6.440,171.3,7.8,0.91,8.250,168.0 +7.8,0.91,11.110,151.1,7.9,0.91,12.530,151.2 +8.4,0.91,9.460,161.8,8.3,0.91,10.120,162.0 +10.2,0.91,7.010,166.5,10.0,0.91,7.140,166.7 +12.5,0.91,5.840,173.1,12.3,0.91,5.880,173.3 +14.9,0.91,5.280,177.4,14.8,0.91,5.310,177.6 +17.6,0.91,4.630,197.7,17.4,0.91,4.670,198.2 +19.2,0.91,4.460,204.5,19.0,0.91,4.500,205.1 +20.5,0.91,2.820,202.7,20.3,0.91,2.830,203.7 +21.4,0.90,0.900,143.6,21.3,0.90,0.840,144.2 +22.0,0.90,4.020,43.5,21.8,0.90,4.040,43.7 +19.3,0.91,13.690,44.3,19.1,0.91,13.830,44.6 +17.4,0.91,12.240,58.1,17.2,0.91,12.450,58.3 +15.2,0.91,14.380,59.5,15.1,0.91,14.880,59.5 +14.3,0.91,12.230,50.3,14.1,0.91,12.510,50.5 +13.8,0.91,11.820,52.5,13.6,0.91,12.030,52.9 +12.7,0.91,9.880,52.9,12.5,0.91,10.300,53.4 +12.5,0.91,10.750,50.8,12.3,0.91,11.090,51.0 +11.7,0.91,9.680,62.3,11.6,0.91,9.980,62.8 +11.1,0.91,8.020,61.9,11.0,0.91,8.440,62.6 +10.7,0.91,8.080,60.3,10.5,0.91,8.510,62.0 +10.1,0.91,8.600,57.7,10.0,0.91,8.930,61.0 +9.5,0.91,8.740,49.9,9.5,0.91,9.050,53.8 +9.1,0.91,8.200,63.9,9.2,0.91,8.930,68.0 +8.8,0.91,8.190,64.1,8.9,0.91,8.920,66.4 +8.0,0.91,7.550,53.4,8.0,0.91,7.980,55.1 +7.6,0.91,5.820,56.6,7.8,0.91,6.690,59.3 +8.7,0.92,5.050,64.4,8.6,0.92,5.200,65.3 +10.6,0.92,5.780,67.4,10.4,0.92,5.870,67.7 +11.9,0.91,6.490,77.5,11.7,0.91,6.560,77.7 +13.1,0.91,5.990,83.8,12.9,0.91,6.030,83.9 +14.0,0.91,5.110,87.5,13.8,0.91,5.140,87.9 +15.1,0.91,4.700,128.3,14.8,0.91,4.710,128.0 +15.5,0.91,4.770,120.9,15.3,0.91,4.780,121.2 +16.1,0.91,5.020,133.2,15.9,0.91,5.090,133.8 +16.1,0.91,5.060,139.8,16.0,0.91,5.130,140.2 +16.0,0.91,6.300,143.2,15.8,0.91,6.410,143.7 +15.4,0.91,8.660,146.0,15.3,0.91,9.090,145.5 +14.7,0.91,9.160,155.5,14.6,0.91,9.720,155.6 +14.0,0.91,10.520,159.8,13.9,0.91,11.150,159.9 +13.3,0.91,12.480,162.5,13.2,0.91,13.230,162.4 +12.8,0.91,13.610,165.6,12.7,0.91,14.330,165.6 +12.1,0.91,14.880,169.0,12.1,0.91,15.730,168.8 +11.6,0.90,15.220,174.7,11.6,0.90,15.930,174.7 +11.8,0.90,16.040,182.4,11.8,0.90,16.820,182.4 +11.3,0.90,16.690,184.9,11.3,0.90,17.430,185.2 +10.9,0.90,17.320,182.7,10.9,0.90,17.980,183.2 +11.0,0.90,17.350,183.1,10.9,0.90,17.950,183.5 +10.5,0.90,16.390,182.9,10.5,0.90,16.940,183.6 +9.9,0.90,16.430,184.3,9.9,0.90,17.080,185.3 +10.3,0.90,16.970,188.8,10.2,0.90,17.320,189.0 +11.6,0.90,16.150,190.0,11.5,0.90,16.370,190.3 +12.8,0.90,16.500,195.4,12.6,0.90,16.690,195.7 +14.9,0.90,15.950,194.8,14.7,0.90,16.080,195.0 +17.9,0.90,13.830,197.5,17.7,0.90,13.980,197.7 +20.6,0.90,12.490,204.4,20.4,0.90,12.630,204.7 +22.9,0.90,11.090,225.2,22.7,0.90,11.230,225.6 +24.3,0.90,10.610,244.7,24.1,0.90,10.800,245.0 +25.3,0.89,12.000,262.4,25.1,0.89,12.210,262.2 +25.8,0.89,10.860,260.5,25.6,0.89,11.050,261.0 +25.6,0.89,10.920,274.8,25.5,0.89,11.570,274.8 +25.6,0.89,12.520,260.9,25.5,0.89,13.000,261.4 +25.3,0.89,12.210,274.1,25.3,0.89,13.380,276.5 +25.0,0.89,11.130,273.1,24.9,0.89,11.740,276.9 +23.1,0.89,11.370,219.7,23.0,0.89,12.300,220.1 +21.4,0.89,11.830,226.8,21.4,0.89,12.750,229.6 +20.6,0.89,12.370,229.4,21.1,0.89,12.830,235.2 +21.4,0.90,9.980,261.6,22.1,0.90,10.330,271.5 +22.2,0.90,11.350,300.6,22.1,0.90,12.010,306.2 +20.6,0.90,10.920,315.2,20.5,0.90,11.470,321.7 +15.5,0.90,10.480,352.7,15.4,0.90,10.550,352.6 +11.0,0.90,8.100,358.5,10.8,0.90,8.210,358.8 +9.2,0.90,9.320,8.8,9.0,0.90,9.420,8.1 +8.5,0.90,7.560,12.0,8.3,0.90,7.690,12.4 +8.3,0.90,9.180,16.7,8.2,0.90,9.270,16.8 +7.7,0.90,8.640,10.4,7.5,0.90,8.690,10.4 +7.0,0.90,8.750,10.8,6.8,0.90,8.780,10.8 +6.5,0.90,8.370,18.7,6.3,0.90,8.380,18.7 +6.4,0.90,7.950,13.2,6.2,0.90,7.970,13.1 +6.4,0.90,7.790,11.6,6.3,0.90,7.810,11.5 +6.4,0.90,7.120,17.7,6.3,0.90,7.140,17.6 +6.3,0.90,6.560,20.1,6.1,0.90,6.560,20.0 +6.3,0.90,5.230,25.6,6.1,0.90,5.230,25.6 +6.5,0.90,4.770,23.4,6.3,0.90,4.750,23.4 +6.1,0.90,6.490,15.0,5.9,0.90,6.500,14.8 +5.8,0.90,5.520,36.5,5.6,0.90,5.520,36.6 +5.6,0.90,5.240,64.7,5.6,0.90,5.530,64.3 +6.2,0.90,5.160,86.5,6.5,0.90,5.610,85.5 +5.6,0.90,5.890,43.9,5.5,0.90,6.090,46.1 +5.7,0.90,5.480,54.0,5.7,0.90,5.760,55.9 +5.4,0.90,5.800,57.5,5.2,0.90,6.030,57.8 +4.8,0.90,5.480,76.9,4.8,0.90,5.870,77.3 +5.0,0.90,5.000,78.7,5.0,0.90,5.880,80.1 +5.1,0.90,5.150,14.6,4.9,0.90,5.100,19.1 +6.2,0.90,3.780,74.6,6.3,0.90,4.310,74.1 +5.3,0.90,1.790,63.0,5.2,0.90,2.070,75.2 +6.9,0.90,2.710,142.3,7.0,0.90,3.030,141.6 +7.2,0.90,1.280,190.3,7.1,0.90,1.810,177.9 +7.4,0.90,3.080,60.7,7.5,0.90,3.210,59.4 +9.0,0.90,2.740,142.5,8.8,0.90,2.780,143.8 +11.5,0.90,6.860,179.0,11.3,0.90,6.900,179.2 +14.2,0.90,8.350,197.0,14.0,0.90,8.400,197.3 +17.0,0.90,5.670,224.8,16.8,0.90,5.710,225.5 +18.5,0.90,5.020,230.3,18.3,0.90,5.060,230.7 +21.5,0.90,7.090,267.2,21.3,0.90,7.270,267.5 +21.8,0.90,4.430,274.8,21.5,0.90,4.540,275.2 +23.2,0.90,11.130,284.2,23.0,0.90,11.310,284.1 +23.4,0.90,14.800,274.5,23.2,0.90,15.060,274.6 +23.1,0.90,11.470,277.6,22.9,0.90,11.990,277.5 +22.3,0.90,11.550,289.5,22.2,0.90,12.340,291.6 +15.7,0.90,6.730,19.1,15.6,0.90,6.800,22.6 +16.0,0.90,6.150,8.6,16.4,0.90,7.080,354.8 +7.5,0.90,12.280,356.6,7.3,0.90,12.470,356.6 +8.4,0.90,11.840,350.7,8.3,0.90,12.490,351.0 +6.0,0.90,15.390,354.6,5.8,0.90,15.660,354.9 +3.8,0.91,13.010,356.0,3.6,0.91,13.350,355.9 +2.1,0.91,14.830,3.8,1.9,0.91,15.210,3.6 +1.7,0.91,14.040,357.6,1.5,0.91,14.520,357.8 +1.1,0.91,17.980,349.8,0.9,0.91,18.510,350.1 +0.1,0.91,16.750,352.4,-0.0,0.91,17.290,352.7 +-0.4,0.91,13.360,343.2,-0.6,0.91,14.110,343.1 +-0.8,0.91,11.500,343.4,-0.9,0.91,12.000,343.2 +-1.0,0.91,12.340,349.4,-1.2,0.91,12.570,349.5 +-0.5,0.91,11.560,349.4,-0.7,0.91,11.720,349.4 +0.4,0.91,10.450,349.6,0.2,0.91,10.590,349.6 +1.7,0.91,10.020,349.5,1.4,0.91,10.150,349.4 +3.1,0.91,8.870,346.1,2.8,0.91,8.980,345.9 +4.3,0.91,8.170,345.5,4.0,0.91,8.270,345.3 +5.2,0.91,8.440,350.4,5.0,0.91,8.540,350.2 +5.8,0.91,8.080,353.2,5.6,0.91,8.170,353.2 +6.4,0.91,7.530,356.2,6.2,0.91,7.620,356.2 +6.6,0.91,7.290,4.6,6.4,0.91,7.370,4.1 +6.5,0.91,6.900,12.3,6.3,0.91,7.000,12.1 +6.1,0.91,7.560,22.6,5.9,0.91,7.700,22.9 +5.5,0.91,8.150,33.5,5.4,0.91,8.540,35.4 +5.0,0.91,8.960,48.1,4.9,0.91,9.400,48.3 +3.9,0.91,8.450,58.1,3.9,0.91,9.620,57.6 +2.9,0.91,8.340,64.6,2.9,0.91,9.430,63.0 +2.2,0.91,8.420,66.7,2.2,0.91,9.610,65.6 +1.6,0.91,8.810,66.7,1.5,0.91,9.850,66.8 +0.5,0.91,8.700,73.0,0.5,0.91,9.570,73.0 +-0.1,0.91,8.090,73.1,-0.1,0.91,8.980,73.0 +-0.6,0.91,7.910,71.6,-0.6,0.91,8.690,71.9 +-1.1,0.91,7.180,61.4,-1.1,0.91,7.750,62.0 +-1.5,0.91,6.510,50.9,-1.4,0.91,7.080,51.3 +-1.8,0.92,6.110,46.0,-1.7,0.92,6.700,46.6 +-1.9,0.92,5.300,43.2,-2.0,0.92,6.050,43.4 +-0.4,0.92,5.600,44.6,-0.6,0.92,5.660,44.7 +0.9,0.92,5.650,41.3,0.7,0.92,5.710,41.4 +2.1,0.92,5.490,42.8,1.9,0.92,5.520,42.8 +3.2,0.92,4.710,43.2,3.0,0.92,4.730,43.1 +4.3,0.92,3.710,45.9,4.1,0.92,3.720,45.6 +5.3,0.92,3.480,34.3,5.1,0.92,3.490,34.1 +6.0,0.92,3.370,24.6,5.8,0.92,3.370,24.7 +6.4,0.91,3.150,28.3,6.2,0.91,3.140,28.3 +6.7,0.91,3.400,48.2,6.5,0.91,3.420,47.5 +6.7,0.92,3.720,22.6,6.5,0.92,3.720,22.5 +6.3,0.92,5.030,60.1,6.1,0.92,5.030,58.3 +5.7,0.92,5.240,61.9,5.6,0.92,5.280,61.0 +5.8,0.92,5.170,53.2,5.6,0.92,5.060,53.6 +4.7,0.92,4.570,72.0,4.8,0.92,5.050,70.7 +4.5,0.92,5.070,76.4,4.6,0.92,5.310,76.8 +4.8,0.92,4.290,90.3,4.6,0.92,4.210,88.7 +4.7,0.92,4.250,108.9,4.7,0.92,4.040,106.5 +5.0,0.92,4.000,135.9,5.0,0.92,3.730,133.6 +4.3,0.92,6.120,146.7,4.4,0.92,5.680,147.7 +3.9,0.92,7.690,157.9,4.0,0.92,7.450,158.1 +4.6,0.92,8.020,163.9,4.7,0.92,8.010,164.4 +3.5,0.92,8.440,179.1,3.8,0.92,8.440,177.2 +3.6,0.92,8.880,185.4,3.9,0.92,9.050,183.8 +4.0,0.92,8.430,186.0,4.4,0.92,8.960,184.9 +4.6,0.92,7.170,185.2,4.5,0.92,7.320,184.9 +6.1,0.92,7.960,185.5,5.9,0.92,8.020,185.5 +7.5,0.92,7.560,187.5,7.3,0.92,7.630,187.5 +8.9,0.92,7.290,188.4,8.7,0.92,7.360,188.4 +10.1,0.92,6.930,187.9,9.9,0.92,7.020,188.0 +11.3,0.92,6.760,187.4,11.1,0.92,6.830,187.1 +12.3,0.91,7.540,180.0,12.1,0.91,7.620,180.1 +13.2,0.91,7.590,183.9,13.0,0.91,7.680,183.9 +13.6,0.91,8.910,189.4,13.3,0.91,9.020,189.0 +13.6,0.91,9.060,182.6,13.5,0.91,9.260,182.8 +13.4,0.91,11.620,169.7,13.3,0.91,12.280,170.4 +12.5,0.91,12.450,166.6,12.5,0.91,13.170,166.7 +11.0,0.91,13.160,169.3,11.1,0.91,13.860,169.9 +9.8,0.91,13.730,174.7,9.9,0.91,14.500,175.5 +8.8,0.91,13.690,184.1,8.9,0.91,14.520,185.7 +8.5,0.91,16.160,190.8,8.6,0.91,17.200,191.3 +8.2,0.91,18.140,191.3,8.3,0.91,18.980,191.5 +7.6,0.91,17.900,194.0,7.6,0.91,18.660,194.4 +7.7,0.91,18.800,196.3,7.7,0.91,19.570,196.5 +7.0,0.91,18.340,193.5,7.1,0.91,19.080,193.9 +6.3,0.91,18.050,191.5,6.3,0.91,18.790,192.0 +5.8,0.91,17.920,191.0,5.8,0.91,18.680,191.4 +5.7,0.91,18.120,195.3,5.7,0.91,18.900,195.7 +6.0,0.91,17.690,195.9,5.9,0.91,18.730,195.8 +7.3,0.91,17.350,194.7,7.1,0.91,17.620,194.8 +8.8,0.91,17.030,194.9,8.6,0.91,17.200,195.0 +10.8,0.91,16.190,194.4,10.6,0.91,16.360,194.4 +12.8,0.91,15.830,194.1,12.6,0.91,16.010,194.2 +14.4,0.91,14.030,192.8,14.2,0.91,14.200,192.8 +15.6,0.91,12.830,191.4,15.4,0.91,12.980,191.5 +16.6,0.91,12.500,190.2,16.4,0.91,12.650,190.3 +17.4,0.91,12.260,189.2,17.2,0.91,12.410,189.3 +17.6,0.91,12.960,188.0,17.4,0.91,13.120,188.1 +17.0,0.91,13.370,188.8,16.8,0.91,13.580,188.6 +16.0,0.91,14.870,185.2,16.0,0.91,15.640,185.4 +14.6,0.91,15.920,185.5,14.5,0.91,16.540,185.7 +12.8,0.91,17.090,188.3,12.7,0.91,17.710,188.5 +11.0,0.91,18.690,192.4,10.8,0.91,19.340,192.8 +9.8,0.91,18.090,192.2,9.7,0.91,18.730,192.6 +9.2,0.91,17.360,193.6,9.1,0.91,18.140,194.3 +8.8,0.91,16.890,191.4,8.8,0.91,17.650,192.4 +8.7,0.91,16.490,193.2,8.7,0.91,17.250,194.4 +8.8,0.91,17.880,196.9,8.8,0.91,18.630,197.4 +8.9,0.91,18.240,200.1,8.8,0.91,18.820,200.4 +8.8,0.91,18.540,199.6,8.7,0.91,19.220,200.1 +9.5,0.91,16.530,197.0,9.3,0.91,16.960,197.2 +9.9,0.91,14.700,194.4,9.8,0.91,15.100,194.5 +10.6,0.91,15.520,193.5,10.5,0.91,15.970,193.7 +11.5,0.91,14.270,195.3,11.3,0.91,14.650,195.6 +12.6,0.91,13.080,194.8,12.4,0.91,13.270,195.0 +13.9,0.91,13.450,193.5,13.7,0.91,13.570,193.5 +16.0,0.91,10.950,194.4,15.8,0.91,11.070,194.5 +17.8,0.91,9.620,187.7,17.6,0.91,9.730,188.1 +19.5,0.91,9.700,190.6,19.3,0.91,9.810,190.8 +20.7,0.91,8.850,187.7,20.5,0.91,8.970,187.8 +21.4,0.91,9.050,184.2,21.2,0.91,9.170,184.4 +21.7,0.91,9.220,188.2,21.5,0.91,9.340,187.9 +21.2,0.91,10.440,178.6,21.0,0.91,10.620,178.5 +20.8,0.91,11.590,180.6,20.8,0.91,12.250,181.4 +18.4,0.91,15.550,181.6,18.3,0.91,16.220,181.8 +17.2,0.91,16.560,188.5,17.2,0.91,17.260,189.2 +16.3,0.91,17.220,190.4,16.2,0.91,17.860,190.5 +15.6,0.91,16.840,197.0,15.5,0.91,17.460,197.1 +14.8,0.91,17.120,193.2,14.8,0.91,17.810,193.6 +14.3,0.91,17.690,194.7,14.1,0.91,18.150,194.8 +14.1,0.91,17.450,197.5,13.9,0.91,17.990,197.6 +14.1,0.91,18.570,201.3,13.9,0.91,19.040,201.1 +14.2,0.91,15.570,198.7,14.0,0.91,16.000,198.8 +14.3,0.91,16.780,202.5,14.1,0.91,17.180,202.7 +14.0,0.91,14.800,197.6,13.8,0.91,15.150,197.9 +14.0,0.91,15.230,207.1,13.9,0.91,15.610,207.1 +14.2,0.91,13.690,202.9,14.0,0.91,14.080,203.2 +15.1,0.91,15.740,206.0,14.9,0.91,15.910,206.0 +16.5,0.91,7.120,206.9,16.3,0.91,7.250,206.9 +17.5,0.91,6.830,198.2,17.3,0.91,6.900,198.1 +19.0,0.91,7.560,191.8,18.8,0.91,7.630,191.8 +20.4,0.91,8.270,188.3,20.1,0.91,8.360,188.4 +21.4,0.91,8.570,191.7,21.1,0.91,8.640,191.4 +22.3,0.91,9.170,186.8,22.1,0.91,9.280,186.9 +22.9,0.91,9.300,185.2,22.7,0.91,9.460,185.3 +22.8,0.91,9.950,179.3,22.6,0.91,10.120,179.1 +22.1,0.91,8.670,166.8,21.9,0.91,9.030,167.1 +13.4,0.91,20.320,289.4,13.3,0.91,20.560,289.6 +14.0,0.91,5.920,112.8,13.8,0.91,5.930,112.6 +15.3,0.91,8.980,168.2,15.7,0.91,9.420,172.2 +15.1,0.91,4.840,342.1,15.2,0.91,4.900,339.5 +15.7,0.91,8.540,168.8,15.7,0.91,8.950,171.8 +15.2,0.91,7.420,159.1,15.3,0.91,8.340,161.4 +14.4,0.91,6.580,137.4,14.4,0.91,6.980,140.7 +14.8,0.91,10.780,169.5,14.8,0.91,11.360,169.4 +13.9,0.91,11.290,168.1,13.9,0.91,12.180,168.1 +14.2,0.91,14.470,180.1,14.2,0.91,14.960,180.5 +14.0,0.91,14.220,187.3,14.0,0.91,14.640,188.0 +13.7,0.91,13.720,198.0,13.7,0.91,14.130,198.8 +13.9,0.91,14.330,200.9,13.9,0.91,14.790,201.3 +13.6,0.91,14.570,202.3,13.5,0.91,14.920,202.5 +14.4,0.91,13.560,212.4,14.3,0.91,13.900,212.8 +15.8,0.91,12.960,214.4,15.7,0.91,13.040,214.5 +17.8,0.91,11.570,210.9,17.6,0.91,11.630,211.1 +19.8,0.91,8.270,219.6,19.6,0.91,8.340,219.6 +21.6,0.91,5.670,219.2,21.3,0.91,5.720,219.6 +23.3,0.91,5.190,222.4,23.1,0.91,5.240,222.9 +24.9,0.91,4.410,225.0,24.7,0.91,4.450,225.6 +26.0,0.90,3.620,217.8,25.8,0.90,3.660,219.0 +27.0,0.90,4.370,279.4,26.8,0.90,4.460,279.2 +26.8,0.90,5.150,275.5,26.7,0.90,5.140,275.9 +21.6,0.90,5.630,59.4,21.8,0.90,5.800,56.4 +22.8,0.90,8.400,74.0,22.6,0.90,8.430,73.4 +23.4,0.90,3.410,110.4,23.6,0.90,3.000,111.8 +22.9,0.90,3.850,129.2,22.9,0.90,3.710,132.3 +18.9,0.90,9.470,140.0,19.1,0.90,9.840,140.7 +19.8,0.90,8.420,181.5,20.4,0.90,7.860,190.2 +19.2,0.90,9.850,183.3,19.5,0.90,9.930,188.5 +18.6,0.90,12.050,190.5,18.8,0.90,12.540,192.7 +18.9,0.90,12.440,193.2,19.1,0.90,12.840,195.2 +18.7,0.90,12.260,201.4,18.8,0.90,12.700,203.1 +18.9,0.90,10.790,211.8,19.1,0.90,11.270,214.1 +18.7,0.90,3.630,276.9,18.6,0.90,4.160,270.5 +14.5,0.91,9.150,12.8,14.3,0.91,9.760,15.6 +14.1,0.91,10.770,21.9,13.9,0.91,10.930,22.1 +13.8,0.91,10.440,29.6,13.7,0.91,10.540,29.8 +14.2,0.91,11.270,38.0,14.0,0.91,11.390,38.1 +14.9,0.91,10.800,36.5,14.7,0.91,10.910,36.6 +16.4,0.91,9.450,39.8,16.2,0.91,9.560,39.9 +17.7,0.91,8.920,43.4,17.4,0.91,9.000,43.4 +18.6,0.91,7.800,42.1,18.4,0.91,7.890,42.3 +19.1,0.91,7.490,53.3,18.9,0.91,7.550,53.0 +19.6,0.91,6.830,41.4,19.4,0.91,6.910,41.4 +19.6,0.91,5.920,51.3,19.4,0.91,5.990,51.5 +19.3,0.91,5.480,58.1,19.1,0.91,5.500,58.1 +19.0,0.91,4.780,45.8,18.8,0.91,4.790,46.1 +18.7,0.91,5.920,52.7,18.6,0.91,5.920,52.9 +17.9,0.91,6.020,69.4,17.9,0.91,6.570,68.7 +17.1,0.91,4.660,69.6,17.1,0.91,5.190,72.2 +16.9,0.91,4.760,84.2,16.9,0.91,4.950,85.0 +16.5,0.91,5.070,88.1,16.5,0.91,5.050,90.5 +16.7,0.91,5.990,110.8,16.6,0.91,5.580,110.8 +16.6,0.91,7.760,136.7,16.5,0.91,7.500,137.8 +16.8,0.91,6.600,139.2,16.9,0.91,6.350,141.0 +16.3,0.91,8.230,143.8,16.4,0.91,7.840,146.4 +15.9,0.91,8.200,154.6,15.9,0.91,7.940,156.7 +15.6,0.91,9.060,157.9,15.7,0.91,8.870,159.3 +15.2,0.91,9.610,162.2,15.4,0.91,9.630,163.3 +14.6,0.91,8.600,167.9,15.0,0.91,9.360,167.1 +16.3,0.91,7.150,171.9,16.1,0.91,7.260,171.6 +17.8,0.91,7.630,165.7,17.7,0.91,7.690,165.8 +18.5,0.91,7.240,162.4,18.3,0.91,7.290,162.5 +19.6,0.91,7.220,166.3,19.4,0.91,7.270,166.3 +21.3,0.91,6.810,165.6,21.1,0.91,6.880,165.6 +22.6,0.91,6.800,162.9,22.4,0.91,6.880,162.9 +23.5,0.91,7.000,163.6,23.3,0.91,7.080,163.6 +23.9,0.91,8.290,163.9,23.7,0.91,8.390,164.0 +23.8,0.90,10.440,156.5,23.6,0.90,10.600,156.6 +24.1,0.90,9.880,161.3,23.9,0.90,10.060,161.4 +23.1,0.90,11.810,150.4,22.9,0.90,12.400,150.4 +22.0,0.90,11.550,158.7,21.9,0.90,12.190,158.6 +14.8,0.91,11.670,14.5,14.8,0.91,12.310,14.3 +14.6,0.91,6.170,43.6,14.5,0.91,6.820,41.9 +14.3,0.91,9.250,82.9,14.2,0.91,9.650,82.4 +14.4,0.91,7.880,107.0,14.3,0.91,8.460,107.1 +14.9,0.91,7.980,134.5,14.9,0.91,8.550,135.9 +15.8,0.90,10.240,148.7,15.8,0.90,10.990,149.2 +15.3,0.91,9.120,142.6,15.3,0.91,9.660,143.3 +15.3,0.90,8.100,151.0,15.3,0.90,8.730,151.9 +15.6,0.91,7.020,150.7,15.5,0.91,7.440,152.0 +15.7,0.91,6.060,156.9,15.5,0.91,6.420,158.0 +15.9,0.91,4.830,172.5,15.7,0.91,5.090,172.9 +16.4,0.91,3.650,195.0,16.3,0.91,4.130,197.3 +12.2,0.91,4.960,45.6,12.4,0.91,4.730,46.2 +12.0,0.91,4.770,54.6,11.9,0.91,4.840,54.9 +12.3,0.91,5.070,70.2,12.2,0.91,5.220,71.1 +13.3,0.91,6.300,53.8,13.1,0.91,6.360,54.2 +8.9,0.91,7.320,34.4,8.7,0.91,7.330,34.6 +8.0,0.91,8.310,28.3,7.8,0.91,8.310,28.5 +7.9,0.91,8.500,28.7,7.7,0.91,8.520,28.8 +7.6,0.91,9.520,33.5,7.4,0.91,9.560,33.6 +7.2,0.91,10.570,39.6,7.0,0.91,10.650,39.7 +6.3,0.91,8.430,1.3,6.1,0.91,8.480,1.4 +5.6,0.91,5.990,28.2,5.4,0.91,6.020,28.3 +5.2,0.91,9.990,74.0,5.0,0.91,10.310,74.0 +5.1,0.91,10.870,18.1,4.9,0.91,11.020,18.3 +4.2,0.91,10.920,19.5,4.0,0.91,11.050,19.8 +3.9,0.91,10.710,26.2,3.7,0.91,10.860,26.3 +3.4,0.91,9.800,32.9,3.2,0.91,9.950,32.8 +3.0,0.91,9.120,28.2,2.8,0.91,9.220,28.3 +2.9,0.91,8.860,21.9,2.7,0.91,8.960,22.2 +2.7,0.91,9.460,7.6,2.5,0.91,9.600,7.6 +2.3,0.91,8.940,8.3,2.1,0.91,9.040,8.3 +2.0,0.91,9.920,4.0,1.8,0.91,10.010,4.3 +1.8,0.91,8.710,20.8,1.6,0.91,8.810,20.8 +1.8,0.91,7.120,40.4,1.6,0.91,7.220,40.5 +1.9,0.91,7.800,12.9,1.7,0.91,7.880,13.0 +2.0,0.91,6.540,16.0,1.9,0.91,6.630,15.9 +2.3,0.91,6.410,358.0,2.1,0.91,6.470,358.2 +1.9,0.91,8.160,352.2,1.7,0.91,8.260,352.1 +2.3,0.91,7.170,351.0,2.1,0.91,7.250,351.0 +2.5,0.91,6.330,354.6,2.4,0.91,6.380,354.0 +2.4,0.91,8.060,351.7,2.2,0.91,8.160,351.5 +2.8,0.91,7.900,341.7,2.6,0.91,7.970,341.8 +3.0,0.91,7.620,342.3,2.8,0.91,7.720,342.1 +2.7,0.91,7.890,350.9,2.5,0.91,7.960,351.0 +2.5,0.91,5.850,356.0,2.3,0.91,5.880,355.6 +2.4,0.91,5.960,353.6,2.2,0.91,6.000,353.4 +2.3,0.91,6.570,348.3,2.1,0.91,6.660,348.4 +2.2,0.91,5.300,358.1,2.0,0.91,5.350,358.1 +2.1,0.91,6.320,358.1,1.9,0.91,6.430,358.0 +1.8,0.91,6.500,357.7,1.6,0.91,6.570,357.5 +1.8,0.91,5.050,352.0,1.6,0.91,5.090,351.9 +1.6,0.91,5.660,354.9,1.4,0.91,5.780,354.4 +0.8,0.91,7.800,351.0,0.7,0.91,8.110,351.6 +0.1,0.91,7.290,341.4,0.0,0.91,7.490,341.5 +-0.4,0.91,8.400,349.9,-0.5,0.91,8.830,350.7 +-0.7,0.91,8.120,343.3,-0.8,0.91,8.640,345.3 +-0.7,0.91,7.760,355.8,-0.8,0.91,8.140,357.8 +-0.7,0.91,8.190,346.1,-0.8,0.91,8.630,347.4 +-0.3,0.91,6.680,353.5,-0.5,0.91,6.770,353.5 +1.2,0.91,6.040,343.9,1.0,0.91,6.120,343.6 +3.4,0.91,5.990,343.4,3.2,0.91,6.050,343.0 +5.4,0.91,5.840,339.3,5.2,0.91,5.900,338.9 +7.5,0.91,5.850,339.9,7.2,0.91,5.920,339.4 +9.4,0.91,6.120,340.1,9.2,0.91,6.190,339.7 +11.0,0.91,6.490,337.9,10.8,0.91,6.570,337.6 +12.2,0.91,6.190,346.1,12.0,0.91,6.250,345.6 +13.1,0.91,6.150,344.3,12.8,0.91,6.220,344.0 +13.6,0.91,5.690,351.3,13.4,0.91,5.740,350.9 +13.5,0.91,5.210,9.3,13.3,0.91,5.250,8.7 +12.9,0.91,5.500,28.0,12.7,0.91,5.560,26.4 +12.2,0.91,5.810,35.0,12.1,0.91,5.630,32.3 +11.3,0.91,5.520,50.1,11.2,0.91,5.480,45.9 +10.4,0.91,4.950,61.9,10.2,0.91,4.690,58.9 +9.4,0.91,4.370,64.7,9.4,0.91,4.150,62.1 +9.0,0.91,2.780,75.9,9.1,0.91,2.710,73.1 +9.0,0.91,2.020,88.5,9.2,0.91,2.110,79.4 +9.3,0.91,2.630,182.4,9.5,0.91,2.290,180.1 +10.9,0.91,0.930,236.6,11.0,0.91,0.720,246.8 +10.7,0.91,1.090,148.4,10.8,0.91,1.050,154.3 +10.7,0.91,2.740,166.1,11.0,0.91,2.320,161.2 +9.0,0.91,5.850,174.7,9.6,0.91,5.160,171.8 +8.5,0.91,6.500,189.5,9.6,0.91,5.630,188.0 +8.2,0.91,8.230,195.1,9.3,0.91,8.380,195.6 +10.0,0.91,6.540,190.9,10.4,0.91,7.000,191.7 +11.8,0.91,6.900,186.5,11.6,0.91,6.880,186.6 +13.7,0.91,6.460,189.2,13.6,0.91,6.470,189.4 +15.4,0.91,6.990,186.5,15.2,0.91,7.030,186.6 +17.1,0.91,7.120,182.6,16.9,0.91,7.170,182.7 +18.4,0.91,7.680,181.4,18.2,0.91,7.740,181.5 +19.3,0.91,8.190,180.7,19.1,0.91,8.250,180.9 +20.0,0.91,8.720,172.6,19.8,0.91,8.830,172.8 +20.1,0.91,9.230,167.3,19.9,0.91,9.360,167.6 +20.0,0.91,9.830,159.3,19.8,0.91,10.060,159.5 +19.2,0.91,11.740,153.8,19.1,0.91,12.460,153.9 +18.3,0.91,13.420,154.9,18.2,0.91,14.180,155.0 +17.0,0.91,14.960,162.6,16.9,0.91,15.690,162.6 +15.9,0.91,15.950,165.1,15.8,0.91,16.650,165.1 +15.6,0.90,15.960,176.9,15.6,0.90,16.540,177.5 +15.5,0.90,17.670,185.4,15.4,0.90,18.320,185.7 +14.8,0.90,18.720,188.1,14.8,0.90,19.310,188.3 +14.2,0.90,19.250,188.2,14.1,0.90,19.850,188.4 +13.8,0.90,19.870,189.1,13.7,0.90,20.480,189.3 +13.3,0.90,19.380,189.7,13.2,0.90,19.980,190.0 +12.9,0.90,19.730,193.2,12.8,0.90,20.410,193.5 +12.8,0.90,18.910,195.5,12.8,0.90,19.700,196.2 +12.5,0.90,19.190,198.3,12.4,0.90,19.890,198.8 +12.6,0.90,17.160,201.8,12.4,0.90,17.580,202.0 +13.3,0.90,16.280,200.2,13.2,0.90,16.440,200.4 +15.2,0.90,14.370,202.9,15.0,0.90,14.490,203.1 +17.5,0.90,13.450,206.3,17.3,0.90,13.560,206.6 +19.8,0.90,12.580,209.5,19.6,0.90,12.700,209.7 +22.1,0.90,10.840,214.8,21.9,0.90,10.950,215.0 +24.2,0.90,9.700,221.0,24.0,0.90,9.800,221.3 +25.7,0.90,8.420,228.7,25.4,0.90,8.520,229.0 +26.6,0.90,6.640,224.2,26.4,0.90,6.730,224.6 +27.2,0.90,6.060,211.3,27.0,0.90,6.140,211.8 +27.2,0.90,6.600,184.3,27.0,0.90,6.820,185.3 +26.7,0.90,9.210,189.2,26.6,0.90,9.360,192.1 +24.5,0.90,10.710,180.7,24.6,0.90,11.320,184.3 +22.4,0.90,13.440,194.1,22.5,0.90,14.570,196.6 +21.0,0.90,11.170,182.7,21.0,0.90,11.490,186.7 +19.8,0.90,11.890,181.7,19.8,0.90,12.260,185.0 +18.7,0.90,11.810,189.4,18.6,0.90,12.180,193.0 +17.9,0.90,12.750,190.0,17.9,0.90,13.400,192.6 +17.4,0.90,12.790,191.0,17.5,0.90,13.390,193.6 +17.1,0.90,13.290,196.6,17.2,0.90,13.930,198.8 +16.5,0.90,13.540,193.5,16.6,0.90,14.050,195.5 +15.9,0.90,14.050,190.9,16.0,0.90,14.560,192.5 +15.5,0.90,14.600,193.5,15.5,0.90,15.200,194.9 +14.8,0.90,14.560,195.1,14.9,0.90,15.240,196.5 +14.9,0.90,13.850,200.5,14.8,0.90,14.740,201.3 +16.5,0.90,12.230,202.2,16.4,0.90,12.340,202.7 +18.6,0.90,11.540,200.0,18.4,0.90,11.610,200.3 +20.7,0.90,12.110,199.8,20.4,0.90,12.190,200.1 +22.7,0.90,11.920,198.0,22.5,0.90,12.030,198.2 +24.7,0.90,11.270,201.5,24.5,0.90,11.390,201.7 +26.1,0.90,10.880,203.2,25.9,0.90,11.020,203.5 +27.6,0.90,10.190,203.8,27.4,0.90,10.340,204.1 +28.6,0.90,10.540,215.7,28.4,0.90,10.700,216.0 +28.9,0.90,11.130,221.2,28.7,0.90,11.320,221.3 +28.6,0.90,10.270,209.7,28.5,0.90,10.660,210.0 +28.3,0.90,13.330,205.7,28.3,0.90,13.700,205.8 +27.5,0.90,14.620,202.9,27.6,0.90,15.160,203.8 +24.9,0.90,15.970,198.1,25.0,0.90,16.980,198.7 +22.4,0.90,14.230,188.1,22.5,0.90,15.090,189.7 +20.8,0.90,14.780,190.2,20.8,0.90,15.620,191.5 +19.7,0.90,14.650,187.9,19.7,0.90,15.440,189.8 +18.9,0.90,15.850,186.1,18.9,0.90,16.580,187.5 +17.9,0.90,15.690,189.3,17.9,0.90,16.490,190.5 +17.2,0.90,15.670,189.2,17.2,0.90,16.360,190.7 +16.7,0.90,15.710,191.0,16.7,0.90,16.400,192.2 +16.2,0.90,15.280,190.9,16.2,0.90,15.860,192.1 +15.8,0.90,15.920,189.9,15.8,0.90,16.260,190.2 +16.1,0.90,15.670,191.8,16.0,0.90,15.950,192.1 +16.3,0.90,14.900,195.9,16.1,0.90,15.640,196.5 +17.1,0.90,14.940,197.7,16.9,0.90,15.210,198.0 +18.0,0.90,15.030,198.6,17.8,0.90,15.180,198.6 +19.1,0.90,15.710,193.8,18.9,0.90,15.840,194.0 +20.2,0.90,14.570,192.1,20.0,0.90,14.690,192.3 +21.7,0.90,14.150,195.0,21.5,0.90,14.280,194.9 +23.0,0.90,13.080,191.3,22.7,0.90,13.200,191.5 +24.5,0.90,11.580,189.2,24.3,0.90,11.720,189.4 +25.4,0.90,11.280,182.9,25.2,0.90,11.450,183.1 +26.2,0.90,11.690,180.0,26.0,0.90,11.880,180.2 +26.3,0.89,12.320,176.7,26.1,0.89,12.650,176.7 +22.9,0.89,13.540,153.5,22.8,0.89,14.310,153.8 +21.2,0.89,16.090,158.0,21.0,0.89,16.820,158.3 +20.2,0.90,15.290,161.5,20.1,0.90,15.990,161.7 +20.1,0.89,15.790,168.6,20.0,0.89,16.620,168.7 +18.5,0.89,17.400,166.3,18.4,0.89,18.110,166.5 +17.9,0.89,15.580,168.6,17.7,0.89,16.430,168.6 +17.6,0.89,17.020,170.0,17.4,0.89,17.820,170.1 +17.5,0.90,16.300,171.8,17.4,0.90,17.090,171.9 +17.4,0.89,17.220,175.3,17.2,0.89,18.000,175.6 +17.4,0.89,16.510,177.7,17.2,0.89,17.240,177.7 +17.3,0.89,14.750,180.3,17.1,0.89,15.290,180.4 +17.3,0.90,14.600,185.4,17.1,0.90,15.170,185.6 +17.0,0.90,15.510,190.3,16.9,0.90,16.030,190.3 +16.8,0.90,14.310,190.4,16.6,0.90,14.930,190.7 +17.7,0.90,14.670,196.4,17.5,0.90,14.920,196.6 +19.4,0.90,11.570,198.0,19.2,0.90,11.730,198.3 +21.9,0.90,10.050,213.7,21.7,0.90,10.240,213.9 +23.5,0.90,10.720,217.4,23.3,0.90,10.870,217.5 +25.2,0.90,9.400,221.1,25.0,0.90,9.520,221.2 +26.1,0.90,8.300,219.1,25.9,0.90,8.410,219.1 +26.9,0.90,7.270,204.3,26.7,0.90,7.390,204.5 +28.1,0.89,7.720,199.8,27.9,0.89,7.830,200.2 +28.7,0.89,8.870,199.3,28.5,0.89,8.990,199.4 +28.7,0.89,9.000,205.5,28.6,0.89,9.280,205.7 +28.6,0.89,9.630,196.4,28.4,0.89,9.680,196.5 +26.2,0.90,6.690,9.0,26.1,0.90,6.750,9.1 +23.6,0.90,3.070,144.9,23.7,0.90,2.770,140.6 +14.1,0.90,15.980,353.7,14.0,0.90,16.430,353.7 +11.3,0.90,11.910,13.9,11.1,0.90,12.110,13.6 +7.8,0.90,12.330,9.1,7.6,0.90,12.500,8.8 +4.6,0.90,12.060,3.5,4.4,0.90,12.220,2.8 +3.4,0.90,12.130,7.9,3.2,0.90,12.390,7.4 +2.6,0.90,12.690,3.4,2.4,0.90,12.890,3.4 +2.0,0.90,12.070,10.4,1.9,0.90,12.350,10.5 +1.7,0.90,11.290,6.9,1.5,0.90,11.430,7.0 +1.5,0.90,10.070,8.0,1.4,0.90,10.170,8.1 +1.0,0.90,10.380,29.5,0.8,0.90,10.460,29.2 +1.0,0.90,9.760,16.1,0.8,0.90,9.840,15.7 +0.5,0.91,12.870,0.3,0.3,0.91,12.970,0.4 +1.1,0.91,10.840,355.0,0.9,0.91,10.930,354.9 +2.0,0.91,9.720,354.5,1.8,0.91,9.800,354.2 +3.8,0.91,9.180,357.4,3.5,0.91,9.250,357.1 +5.9,0.91,8.380,355.3,5.7,0.91,8.470,355.2 +7.3,0.91,8.310,353.1,7.1,0.91,8.390,353.2 +8.2,0.90,7.610,358.9,8.0,0.90,7.670,358.6 +8.9,0.90,7.630,359.6,8.7,0.90,7.700,359.3 +9.0,0.90,6.940,359.8,8.8,0.90,7.010,359.7 +8.9,0.90,6.720,355.1,8.7,0.90,6.780,355.7 +8.3,0.90,7.670,353.7,8.1,0.90,7.800,354.4 +7.6,0.90,7.200,22.7,7.5,0.90,7.460,22.0 +7.4,0.90,8.300,18.6,7.2,0.90,8.620,19.0 +6.8,0.91,8.460,33.9,6.7,0.91,8.800,33.8 +6.4,0.90,9.800,30.1,6.2,0.90,9.800,29.3 +5.8,0.91,9.870,36.2,5.6,0.91,10.030,36.7 +5.2,0.91,10.460,42.0,5.0,0.91,10.720,42.3 +4.6,0.91,10.200,45.6,4.5,0.91,10.390,44.6 +4.0,0.91,9.030,55.6,3.8,0.91,9.280,53.9 +3.4,0.90,8.130,51.0,3.2,0.90,8.220,49.7 +2.9,0.90,7.600,42.8,2.7,0.90,7.760,42.3 +2.5,0.90,7.560,39.0,2.3,0.90,7.550,39.9 +1.8,0.90,5.660,44.8,1.7,0.90,5.920,43.7 +2.0,0.90,3.660,45.9,1.8,0.90,3.760,45.6 +3.4,0.90,2.810,47.5,3.2,0.90,2.810,47.6 +5.4,0.90,2.180,50.7,5.2,0.90,2.150,51.4 +7.7,0.90,0.610,113.6,7.5,0.90,0.620,119.8 +10.1,0.90,1.510,187.8,9.9,0.90,1.560,188.0 +12.0,0.90,3.430,207.8,11.8,0.90,3.460,208.3 +13.2,0.90,4.230,226.5,12.9,0.90,4.250,227.0 +14.4,0.90,5.240,234.9,14.2,0.90,5.300,235.4 +15.5,0.90,5.240,244.7,15.3,0.90,5.310,245.1 +16.1,0.90,4.100,231.5,15.9,0.90,4.170,232.3 +16.7,0.90,2.890,249.0,16.5,0.90,2.990,249.8 +15.6,0.90,4.540,146.6,15.5,0.90,4.390,146.4 +15.2,0.90,5.210,144.3,15.1,0.90,4.800,144.6 +15.5,0.90,5.660,160.3,15.4,0.90,5.580,161.0 +15.1,0.90,6.100,174.6,15.1,0.90,5.770,175.4 +14.8,0.90,7.950,175.5,14.9,0.90,7.700,177.3 +14.3,0.90,10.290,173.6,14.4,0.90,10.340,174.1 +13.1,0.90,12.810,170.7,13.3,0.90,13.010,170.2 +13.1,0.90,13.320,169.7,13.3,0.90,13.640,169.1 +12.3,0.90,14.620,166.6,12.5,0.90,15.070,166.6 +11.8,0.90,12.980,175.4,12.1,0.90,13.170,175.8 +11.0,0.90,11.810,179.5,11.4,0.90,11.690,178.8 +12.4,0.90,10.200,193.7,13.2,0.90,10.110,197.2 +12.3,0.90,10.030,189.9,12.8,0.90,10.270,191.3 +12.6,0.90,9.510,192.6,13.2,0.90,10.120,193.5 +13.7,0.90,7.660,191.4,13.6,0.90,7.840,191.6 +15.5,0.91,6.810,184.5,15.3,0.91,6.840,184.5 +17.0,0.91,5.580,171.7,16.8,0.91,5.630,171.8 +18.2,0.90,5.640,165.0,18.0,0.90,5.700,165.1 +19.2,0.90,6.860,167.5,19.0,0.90,6.940,167.5 +19.9,0.90,7.740,168.3,19.7,0.90,7.820,168.4 +20.7,0.90,7.780,164.8,20.5,0.90,7.900,165.0 +21.7,0.90,8.460,166.9,21.5,0.90,8.600,167.0 +22.1,0.90,9.010,166.1,21.9,0.90,9.170,166.3 +22.1,0.90,9.500,165.2,21.9,0.90,9.710,165.4 +21.2,0.90,10.400,144.6,21.1,0.90,10.980,145.3 +20.0,0.90,12.790,144.2,20.0,0.90,13.730,144.6 +18.8,0.90,14.300,149.1,18.9,0.90,15.240,149.5 +17.7,0.90,14.610,159.4,17.7,0.90,15.530,159.9 +16.8,0.90,15.410,171.0,16.9,0.90,16.240,171.9 +16.1,0.90,16.290,176.4,16.1,0.90,17.180,176.6 +15.4,0.90,17.260,178.5,15.5,0.90,18.220,178.6 +14.8,0.90,17.590,175.6,14.8,0.90,18.480,175.6 +14.0,0.90,17.530,178.8,14.0,0.90,18.310,179.2 +13.4,0.90,16.370,181.9,13.4,0.90,17.130,182.3 +13.4,0.90,16.430,181.1,13.4,0.90,17.170,181.3 +13.0,0.90,16.830,183.2,13.0,0.90,17.520,183.5 +12.6,0.90,15.440,187.9,12.6,0.90,16.000,188.3 +12.4,0.90,14.090,184.0,12.3,0.90,14.700,184.3 +13.7,0.90,9.030,180.2,13.5,0.90,9.200,180.5 +15.3,0.90,8.520,183.4,15.1,0.90,8.640,183.5 +16.9,0.90,9.070,180.4,16.7,0.90,9.200,180.4 +18.1,0.90,9.660,179.7,17.9,0.90,9.780,179.8 +19.6,0.90,8.790,176.9,19.3,0.90,8.910,176.9 +20.6,0.90,8.950,172.8,20.4,0.90,9.070,172.9 +21.3,0.90,9.710,172.8,21.1,0.90,9.830,172.8 +21.7,0.90,9.950,171.1,21.5,0.90,10.110,171.2 +21.9,0.90,9.160,172.3,21.7,0.90,9.330,172.4 +21.9,0.90,9.660,169.5,21.7,0.90,9.870,169.5 +21.1,0.90,10.840,160.0,21.1,0.90,11.450,160.0 +19.7,0.90,12.820,164.5,19.7,0.90,13.690,164.5 +18.0,0.90,10.150,185.8,17.9,0.90,10.910,187.1 +17.5,0.90,10.330,193.9,17.6,0.90,11.200,193.9 +17.0,0.90,10.130,193.2,17.1,0.90,11.130,193.4 +17.0,0.90,13.150,193.9,17.0,0.90,13.880,193.9 +16.7,0.90,13.410,187.2,16.6,0.90,14.060,187.1 +15.7,0.90,15.850,187.1,15.6,0.90,16.510,187.1 +14.5,0.90,15.570,190.0,14.4,0.90,16.280,190.5 +13.7,0.90,15.560,194.6,13.6,0.90,16.330,195.3 +13.1,0.90,16.400,199.2,13.1,0.90,17.130,199.8 +13.1,0.90,17.120,200.2,13.1,0.90,17.940,200.9 +12.9,0.90,15.700,201.2,12.8,0.90,16.280,202.2 +13.6,0.90,13.610,201.8,13.5,0.90,14.170,203.3 +15.9,0.90,11.940,207.7,15.7,0.90,12.040,208.3 +18.8,0.90,10.580,213.7,18.6,0.90,10.660,214.2 +22.1,0.90,10.780,232.6,21.9,0.90,10.910,233.0 +24.5,0.90,10.590,251.2,24.3,0.90,10.770,251.3 +26.2,0.90,10.320,256.4,25.9,0.90,10.500,256.4 +27.0,0.90,10.160,252.8,26.8,0.90,10.320,252.6 +27.6,0.90,9.740,252.4,27.4,0.90,9.920,252.4 +28.0,0.90,10.650,245.8,27.8,0.90,10.780,246.1 +28.2,0.90,9.570,254.3,28.0,0.90,9.790,254.4 +27.9,0.90,8.270,241.8,27.8,0.90,8.600,242.0 +27.4,0.90,10.710,238.8,27.3,0.90,11.190,239.4 +27.2,0.90,13.420,242.2,27.4,0.90,14.190,244.2 +26.5,0.90,12.500,237.4,26.7,0.90,13.220,239.4 +26.7,0.90,15.110,245.4,26.9,0.90,16.060,247.1 +26.5,0.90,15.230,246.3,26.8,0.90,15.870,247.9 +26.0,0.90,15.380,247.5,26.4,0.90,16.170,249.8 +25.7,0.90,15.710,257.7,26.1,0.90,16.390,259.2 +21.4,0.90,10.140,220.2,22.1,0.90,10.650,232.4 +21.8,0.90,12.980,216.4,22.0,0.90,12.800,218.8 +23.3,0.90,15.780,229.9,23.6,0.90,16.320,228.9 +23.1,0.90,14.930,228.5,23.4,0.90,15.460,229.3 +21.5,0.90,17.750,222.9,21.6,0.90,18.860,223.1 +20.7,0.90,15.210,226.7,21.0,0.90,16.040,227.4 +21.7,0.90,10.520,232.2,22.5,0.90,11.550,234.2 +21.7,0.90,8.350,218.0,21.5,0.90,8.360,218.8 +23.8,0.90,8.230,223.7,23.6,0.90,8.310,223.9 +25.1,0.90,6.310,225.6,24.9,0.90,6.380,225.8 +26.6,0.90,6.390,222.9,26.4,0.90,6.450,223.1 +27.8,0.90,7.660,226.4,27.6,0.90,7.760,226.6 +28.5,0.90,7.330,221.5,28.3,0.90,7.440,221.6 +29.0,0.90,8.770,215.2,28.8,0.90,8.870,215.3 +29.2,0.90,9.300,211.3,29.0,0.90,9.430,211.5 +29.7,0.90,10.050,222.7,29.5,0.90,10.220,222.9 +29.2,0.90,9.970,226.5,29.0,0.90,10.230,226.5 +28.8,0.90,9.620,225.2,28.6,0.90,9.810,227.7 +28.5,0.90,10.690,226.2,28.4,0.90,11.190,226.4 +28.6,0.90,10.470,231.1,28.5,0.90,10.760,231.9 +28.4,0.90,11.650,237.9,28.4,0.90,11.800,238.4 +27.9,0.90,11.020,227.5,27.9,0.90,11.260,228.3 +27.3,0.90,10.310,214.1,27.3,0.90,10.420,213.2 +25.0,0.90,11.450,193.7,25.3,0.90,11.700,197.1 +23.5,0.90,13.290,191.5,23.4,0.90,13.960,193.1 +22.2,0.90,14.060,198.4,22.1,0.90,14.860,199.6 +21.1,0.90,13.380,199.2,21.1,0.90,14.120,200.8 +20.3,0.90,13.000,194.7,20.4,0.90,13.450,195.8 +19.3,0.90,13.730,189.9,19.3,0.90,14.220,190.8 +18.9,0.90,12.250,195.2,18.9,0.90,12.740,195.6 +19.3,0.90,10.370,199.2,19.2,0.90,10.650,199.3 +20.4,0.90,9.900,202.1,20.3,0.90,9.990,202.2 +22.1,0.90,6.600,202.5,21.9,0.90,6.670,202.5 +23.9,0.90,5.430,190.3,23.7,0.90,5.490,190.5 +25.3,0.90,4.380,169.2,25.1,0.90,4.440,169.2 +26.3,0.90,4.850,153.4,26.0,0.90,4.890,153.3 +26.8,0.90,5.640,138.2,26.6,0.90,5.690,138.5 +27.8,0.90,7.310,142.2,27.5,0.90,7.400,142.2 +28.5,0.90,8.030,141.2,28.3,0.90,8.180,141.3 +28.9,0.90,9.730,146.7,28.7,0.90,9.900,146.7 +28.0,0.90,13.210,143.3,27.8,0.90,13.460,143.5 +27.1,0.90,12.480,138.0,26.9,0.90,13.160,138.1 +25.7,0.90,14.890,145.1,25.6,0.90,15.630,145.3 +24.2,0.90,16.340,154.8,24.0,0.90,17.000,154.8 +23.1,0.90,14.850,161.4,22.9,0.90,15.470,161.5 +21.9,0.90,14.970,167.5,21.7,0.90,15.470,167.6 +21.0,0.90,16.480,174.0,20.8,0.90,17.040,173.9 +20.5,0.90,18.570,176.7,20.4,0.90,19.260,176.7 +20.5,0.90,17.660,182.7,20.3,0.90,18.300,182.6 +20.4,0.90,18.290,181.8,20.2,0.90,18.680,181.7 +19.9,0.90,17.420,184.2,19.7,0.90,17.690,184.2 +19.8,0.90,17.820,183.2,19.7,0.90,18.350,183.0 +20.1,0.90,17.130,186.1,19.9,0.90,17.620,186.1 +20.1,0.90,15.320,184.9,19.9,0.90,15.680,184.9 +20.2,0.90,16.500,187.5,20.0,0.90,16.790,187.6 +20.3,0.90,14.990,186.7,20.1,0.90,15.190,186.8 +21.1,0.90,14.720,188.0,20.9,0.90,14.910,188.1 +22.6,0.90,15.120,194.9,22.4,0.90,15.330,194.6 +23.6,0.90,14.920,188.8,23.4,0.90,15.100,189.0 +25.3,0.90,13.230,195.1,25.0,0.90,13.420,195.3 +26.8,0.90,11.920,193.4,26.5,0.90,12.090,193.6 +27.7,0.90,10.570,187.9,27.4,0.90,10.700,188.3 +28.8,0.90,11.280,197.0,28.5,0.90,11.420,196.9 +29.4,0.90,11.130,193.9,29.2,0.90,11.370,193.9 +27.6,0.89,3.060,226.6,27.6,0.89,3.680,219.3 +29.1,0.89,14.180,191.7,29.0,0.89,14.840,191.6 +26.0,0.89,12.780,174.1,25.9,0.89,13.770,174.8 +25.4,0.89,13.260,185.2,25.4,0.89,14.160,185.8 +24.7,0.90,13.060,189.1,24.6,0.90,13.960,190.2 +24.3,0.90,13.030,206.9,24.2,0.90,13.950,206.9 +20.2,0.90,9.180,295.9,20.2,0.90,9.970,294.9 +22.2,0.90,11.080,280.7,22.2,0.90,13.320,284.6 +19.8,0.90,16.190,305.9,19.8,0.90,17.190,306.4 +13.9,0.90,13.670,5.3,13.5,0.90,14.030,5.2 +9.1,0.90,10.710,350.8,8.8,0.90,11.290,350.2 +7.6,0.90,10.290,350.6,7.4,0.90,10.730,349.9 +5.9,0.90,13.450,350.8,5.7,0.90,13.940,350.6 +4.2,0.90,11.760,349.8,4.0,0.90,11.960,349.3 +3.3,0.91,12.900,347.1,3.1,0.91,13.060,347.1 +3.4,0.91,12.880,347.5,3.2,0.91,13.050,347.3 +4.6,0.91,11.670,343.5,4.4,0.91,11.810,343.5 +5.8,0.91,11.590,346.8,5.6,0.91,11.720,346.6 +7.2,0.91,10.470,346.8,7.0,0.91,10.610,346.6 +8.4,0.91,10.750,343.0,8.2,0.91,10.900,342.9 +9.4,0.91,10.970,340.6,9.2,0.91,11.130,340.6 +10.1,0.91,10.090,344.9,9.8,0.91,10.230,344.7 +10.5,0.91,9.960,343.3,10.3,0.91,10.110,343.1 +10.5,0.91,9.300,349.4,10.3,0.91,9.440,349.1 +10.5,0.91,9.970,351.9,10.3,0.91,10.120,351.8 +9.8,0.91,9.060,12.3,9.6,0.91,9.430,11.8 +9.2,0.91,10.650,11.0,9.1,0.91,11.350,11.3 +8.6,0.91,9.120,16.4,8.5,0.91,9.930,16.5 +8.3,0.91,9.860,23.6,8.2,0.91,10.290,24.6 +7.8,0.91,10.550,29.0,7.7,0.91,10.830,29.0 +7.1,0.91,13.700,19.8,7.0,0.91,14.490,20.7 +5.9,0.91,11.550,24.4,5.8,0.91,12.270,25.2 +5.3,0.91,10.540,26.1,5.2,0.91,11.110,26.7 +4.5,0.91,8.900,21.7,4.3,0.91,9.880,23.4 +3.7,0.91,9.740,30.9,3.7,0.91,10.680,30.9 +3.3,0.91,9.170,29.6,3.3,0.91,10.000,29.7 +3.3,0.91,8.230,25.2,3.2,0.91,8.580,24.6 +3.1,0.91,7.100,23.5,3.0,0.91,7.450,24.1 +3.6,0.91,4.920,14.0,3.4,0.91,5.070,13.7 +5.0,0.91,4.980,4.7,4.8,0.91,5.030,4.5 +6.7,0.92,4.040,357.3,6.5,0.92,4.080,357.0 +8.5,0.91,3.250,342.5,8.3,0.91,3.280,341.7 +9.9,0.91,3.800,305.4,9.7,0.91,3.830,305.6 +11.4,0.91,3.500,299.4,11.2,0.91,3.560,299.0 +12.8,0.91,3.710,295.8,12.6,0.91,3.760,295.3 +13.7,0.91,3.540,294.7,13.5,0.91,3.590,294.0 +14.4,0.91,3.570,272.3,14.2,0.91,3.610,271.8 +14.8,0.91,3.370,278.0,14.6,0.91,3.400,276.6 +14.9,0.91,4.070,240.2,14.7,0.91,4.090,240.6 +14.7,0.91,5.130,205.2,14.5,0.91,5.130,205.7 +14.4,0.91,6.050,187.2,14.3,0.91,6.100,189.1 +14.1,0.91,8.470,177.3,13.9,0.91,8.460,177.6 +13.2,0.91,10.710,169.4,13.2,0.91,10.800,170.1 +12.5,0.91,12.020,170.2,12.6,0.91,12.320,171.3 +11.7,0.91,13.790,172.7,12.0,0.91,14.480,173.5 +11.2,0.91,15.080,171.9,11.4,0.91,15.870,172.0 +10.3,0.91,15.790,174.1,10.5,0.91,16.600,174.5 +9.6,0.91,16.720,177.6,9.9,0.91,17.660,178.1 +9.2,0.91,17.350,179.0,9.4,0.91,18.230,179.5 +8.8,0.91,17.610,180.2,9.0,0.91,18.480,180.8 +7.9,0.91,18.310,181.0,8.1,0.91,19.190,181.5 +7.8,0.91,17.810,183.8,7.9,0.91,18.470,184.0 +7.9,0.91,15.740,182.5,7.8,0.91,16.500,182.6 +10.0,0.91,15.460,186.4,9.8,0.91,15.720,186.4 +12.0,0.91,16.010,184.3,11.8,0.91,16.210,184.4 +13.6,0.91,15.910,181.9,13.4,0.91,16.120,182.0 +15.4,0.91,15.240,181.9,15.2,0.91,15.480,182.0 +16.9,0.91,15.190,183.1,16.7,0.91,15.410,183.1 +17.8,0.91,15.210,177.8,17.5,0.91,15.460,178.1 +18.3,0.91,15.680,177.9,18.0,0.91,15.870,178.0 +18.6,0.91,15.150,179.0,18.4,0.91,15.250,179.1 +18.8,0.90,15.010,173.3,18.6,0.90,15.210,173.3 +18.6,0.90,13.300,171.8,18.4,0.90,13.580,171.8 +17.9,0.90,12.920,166.3,17.8,0.90,13.660,166.5 +16.5,0.91,13.580,157.4,16.4,0.91,14.370,157.5 +15.2,0.90,15.560,159.1,15.1,0.90,16.390,159.3 +14.2,0.91,17.620,165.2,14.1,0.91,18.450,165.2 +13.4,0.90,19.680,170.5,13.3,0.90,20.450,170.5 +12.4,0.91,19.630,170.4,12.3,0.91,20.420,170.3 +11.5,0.91,19.670,169.9,11.4,0.91,20.520,169.8 +10.6,0.91,20.220,172.0,10.5,0.91,21.010,172.1 +9.8,0.91,20.530,175.5,9.8,0.91,21.280,175.6 +9.4,0.91,20.940,177.0,9.3,0.91,21.660,177.0 +8.9,0.91,19.760,178.9,8.8,0.91,20.450,179.0 +8.5,0.91,18.490,182.1,8.5,0.91,19.100,182.3 +7.8,0.91,17.000,179.3,7.7,0.91,17.710,179.7 +8.2,0.91,13.730,175.6,8.1,0.91,14.480,175.7 +9.3,0.91,11.390,180.3,9.2,0.91,11.780,180.3 +10.5,0.91,7.410,172.0,10.3,0.91,7.560,172.3 +11.7,0.91,7.470,171.5,11.5,0.91,7.570,171.8 +13.1,0.91,9.200,179.3,12.9,0.91,9.320,179.7 +14.2,0.91,8.850,184.9,14.0,0.91,8.960,185.0 +15.7,0.91,8.210,180.5,15.5,0.91,8.280,180.7 +17.3,0.91,7.360,178.7,17.1,0.91,7.440,179.0 +17.9,0.91,6.860,174.0,17.7,0.91,6.930,174.4 +18.7,0.91,6.480,166.4,18.5,0.91,6.540,166.8 +18.4,0.91,7.480,148.7,18.2,0.91,7.540,149.1 +17.7,0.91,8.070,141.4,17.6,0.91,8.320,142.1 +17.2,0.91,10.780,140.0,17.2,0.91,11.360,140.5 +17.0,0.91,13.530,142.1,16.9,0.91,14.270,142.2 +16.6,0.91,14.420,147.4,16.6,0.91,15.210,147.4 +16.5,0.91,16.710,156.8,16.4,0.91,17.480,156.6 +15.8,0.91,17.380,165.3,15.8,0.91,18.100,165.6 +15.1,0.91,17.700,171.7,15.1,0.91,18.420,171.9 +14.1,0.91,17.640,170.1,14.1,0.91,18.350,170.4 +13.5,0.91,18.170,175.1,13.5,0.91,18.930,175.3 +12.9,0.91,18.320,179.1,12.9,0.91,19.100,179.4 +12.2,0.91,18.240,182.9,12.2,0.91,18.940,183.2 +12.2,0.91,18.220,187.6,12.1,0.91,18.510,187.7 +13.4,0.91,18.180,185.7,13.2,0.91,18.800,185.8 +14.0,0.91,17.650,190.2,13.8,0.91,18.440,190.5 +14.7,0.91,18.270,196.0,14.5,0.91,18.660,196.1 +15.6,0.91,18.020,194.2,15.4,0.91,18.220,194.3 +17.4,0.91,16.650,199.1,17.1,0.91,16.810,199.1 +20.2,0.91,15.070,200.4,19.9,0.91,15.250,200.5 +22.1,0.90,13.990,199.2,21.9,0.90,14.150,199.3 +23.9,0.90,13.340,198.6,23.7,0.90,13.500,198.8 +25.2,0.90,12.700,203.7,25.0,0.90,12.860,203.8 +26.2,0.90,11.720,203.3,25.9,0.90,11.880,203.3 +26.7,0.90,11.030,201.1,26.5,0.90,11.210,201.3 +26.9,0.90,10.560,199.5,26.8,0.90,10.770,199.6 +25.9,0.90,12.050,184.5,25.9,0.90,12.580,185.2 +24.5,0.90,15.370,183.5,24.5,0.90,16.080,184.2 +22.5,0.90,15.650,184.1,22.4,0.90,16.480,184.7 +21.4,0.90,16.530,188.7,21.3,0.90,17.290,189.3 +20.1,0.90,16.690,184.6,20.0,0.90,17.480,185.7 +18.9,0.90,16.570,185.2,18.9,0.90,17.280,186.4 +18.4,0.90,18.170,194.7,18.4,0.90,19.110,195.5 +18.2,0.90,16.590,193.9,18.3,0.90,17.580,195.2 +18.1,0.90,16.720,196.2,18.1,0.90,17.620,197.6 +17.3,0.90,16.510,194.9,17.3,0.90,17.150,196.0 +17.1,0.90,6.420,359.2,16.9,0.90,6.590,358.7 +11.7,0.90,7.590,11.0,11.5,0.90,7.670,10.4 +9.4,0.91,8.690,15.5,9.3,0.91,8.740,14.9 +7.9,0.91,10.640,19.0,7.7,0.91,10.700,18.9 +6.3,0.91,12.030,14.8,6.1,0.91,12.100,14.9 +5.2,0.91,11.970,21.3,5.0,0.91,12.070,21.2 +4.6,0.91,11.740,15.2,4.4,0.91,11.820,15.3 +3.9,0.91,11.750,18.8,3.7,0.91,11.850,18.7 +3.8,0.91,10.860,12.8,3.6,0.91,10.940,12.9 +3.5,0.91,10.450,16.8,3.3,0.91,10.530,16.7 +3.5,0.91,10.010,13.8,3.3,0.91,10.090,13.9 +3.1,0.91,9.740,17.3,2.9,0.91,9.830,17.2 +2.8,0.91,9.620,16.6,2.6,0.91,9.700,16.6 +2.6,0.91,9.710,19.7,2.4,0.91,9.810,19.6 +2.2,0.91,10.030,20.1,2.0,0.91,10.130,20.2 +1.8,0.91,10.180,22.6,1.6,0.91,10.290,22.4 +1.6,0.91,10.680,21.3,1.4,0.91,10.800,21.3 +1.4,0.91,11.350,19.0,1.2,0.91,11.490,18.9 +1.2,0.91,12.190,16.8,1.0,0.91,12.350,16.7 +1.4,0.91,12.250,14.7,1.3,0.91,12.430,14.5 +1.3,0.91,12.670,17.4,1.1,0.91,12.860,17.4 +0.4,0.91,12.850,23.5,0.3,0.91,13.450,23.8 +-0.0,0.91,12.440,24.0,-0.2,0.91,13.080,24.7 +-0.4,0.91,11.790,24.8,-0.6,0.91,12.410,25.4 +-0.6,0.91,11.450,26.4,-0.8,0.91,12.120,27.3 +-0.8,0.91,10.710,30.9,-0.8,0.91,11.310,31.3 +-0.7,0.91,9.950,26.6,-0.8,0.91,10.510,26.6 +-0.1,0.92,9.530,22.4,-0.2,0.92,9.620,22.4 +1.3,0.92,8.340,19.4,1.1,0.92,8.410,19.4 +2.9,0.92,7.260,23.4,2.7,0.92,7.320,23.4 +4.8,0.91,7.040,25.9,4.5,0.91,7.080,25.8 +6.5,0.91,5.620,36.2,6.3,0.91,5.650,36.1 +8.3,0.91,4.880,35.6,8.1,0.91,4.910,35.6 +9.8,0.91,4.500,46.3,9.5,0.91,4.510,46.1 +11.0,0.91,4.050,48.7,10.8,0.91,4.050,49.0 +11.9,0.91,3.690,53.3,11.7,0.91,3.710,53.9 +12.0,0.91,3.210,80.4,11.8,0.91,3.210,80.4 +12.0,0.91,3.450,77.5,11.8,0.91,3.470,78.0 +11.9,0.91,4.820,85.1,11.8,0.91,4.900,85.6 +11.2,0.91,5.650,109.7,11.0,0.91,5.710,109.8 +10.9,0.91,5.070,108.7,10.7,0.91,5.210,109.0 +11.0,0.91,5.200,110.2,10.8,0.91,5.280,110.2 +10.8,0.91,4.800,106.3,10.7,0.91,4.890,106.7 +10.5,0.91,4.820,100.8,10.4,0.91,4.870,101.4 +10.3,0.91,5.150,111.7,10.1,0.91,5.270,112.6 +9.6,0.92,6.050,117.7,9.4,0.92,6.300,117.9 +9.1,0.92,6.950,115.7,8.9,0.92,7.020,115.2 +8.6,0.92,7.240,124.4,8.4,0.92,7.510,124.9 +8.2,0.92,6.070,126.5,8.1,0.92,6.470,126.5 +8.2,0.92,5.710,131.5,8.0,0.92,5.930,131.7 +8.0,0.92,6.050,144.6,7.9,0.92,6.340,144.1 +7.9,0.92,5.420,142.4,7.8,0.92,5.580,142.3 +8.5,0.92,5.390,142.0,8.3,0.92,5.490,142.1 +8.8,0.92,6.010,147.9,8.6,0.92,6.070,148.0 +10.6,0.92,5.310,147.4,10.4,0.92,5.380,147.8 +12.5,0.91,5.860,150.6,12.3,0.91,5.930,150.4 +12.7,0.91,6.320,154.1,12.5,0.91,6.390,154.2 +14.7,0.91,7.370,155.2,14.5,0.91,7.420,155.1 +15.1,0.91,7.360,167.3,14.9,0.91,7.480,167.0 +15.5,0.91,8.420,164.1,15.3,0.91,8.520,163.9 +14.6,0.91,8.700,158.7,14.4,0.91,8.770,158.6 +14.4,0.91,9.630,158.6,14.2,0.91,9.750,158.4 +13.9,0.91,8.990,158.5,13.7,0.91,9.360,158.4 +14.0,0.91,10.020,161.7,13.9,0.91,10.710,161.8 +13.9,0.91,9.460,165.2,13.7,0.91,9.950,165.2 +13.7,0.91,9.190,163.4,13.6,0.91,9.630,163.7 +13.7,0.91,11.260,166.7,13.5,0.91,11.800,166.9 +13.8,0.91,11.560,179.6,13.6,0.91,12.140,179.5 +13.4,0.91,12.830,174.2,13.2,0.91,13.420,174.4 +13.2,0.91,14.610,181.9,13.0,0.91,15.360,182.0 +12.8,0.91,15.190,190.8,12.6,0.91,16.550,189.9 +13.0,0.91,18.370,176.9,12.9,0.91,19.000,177.0 +13.0,0.91,15.990,190.9,12.9,0.91,16.570,190.9 +12.5,0.91,11.070,188.0,12.3,0.91,11.560,188.0 +12.9,0.91,14.260,196.0,12.8,0.91,14.870,196.8 +13.7,0.91,13.390,195.1,13.6,0.91,14.240,195.4 +14.3,0.91,13.050,199.5,14.1,0.91,13.340,199.5 +15.0,0.91,12.740,202.5,14.8,0.91,13.010,202.5 +15.8,0.91,14.210,196.7,15.6,0.91,14.430,196.8 +17.9,0.91,13.590,199.3,17.7,0.91,13.740,199.4 +20.3,0.91,11.300,201.0,20.1,0.91,11.420,201.2 +22.1,0.91,10.010,199.4,21.9,0.91,10.110,199.7 +24.1,0.91,8.580,205.5,23.8,0.91,8.670,205.7 +24.9,0.91,8.610,202.6,24.7,0.91,8.720,203.0 +25.5,0.91,7.290,189.8,25.3,0.91,7.360,190.3 +25.3,0.91,9.580,176.6,25.1,0.91,9.690,176.8 +24.7,0.91,11.840,169.7,24.5,0.91,12.290,169.9 +24.6,0.91,12.570,181.3,24.5,0.91,12.750,181.4 +23.6,0.91,13.370,186.2,23.6,0.91,13.870,187.0 +22.2,0.91,12.720,191.1,22.3,0.91,13.350,192.5 +22.0,0.91,12.550,205.6,21.9,0.91,13.220,207.2 +20.9,0.91,10.680,210.4,20.8,0.91,11.450,212.4 +18.4,0.91,11.340,357.1,18.4,0.91,11.520,358.8 +16.6,0.91,7.190,348.4,16.5,0.91,8.270,352.7 +15.0,0.91,8.260,4.0,14.9,0.91,8.690,6.2 +13.5,0.91,8.660,13.5,13.3,0.91,9.610,14.6 +12.6,0.91,9.470,17.4,12.5,0.91,10.430,17.0 +11.7,0.91,9.390,24.1,11.6,0.91,9.840,22.6 +11.3,0.91,7.760,14.4,11.2,0.91,7.870,14.9 +11.0,0.91,7.580,17.3,10.8,0.91,7.640,17.4 +11.3,0.91,7.210,24.8,11.1,0.91,7.230,24.1 +13.0,0.91,7.420,27.1,12.8,0.91,7.460,26.8 +14.9,0.91,5.170,32.3,14.7,0.91,5.200,31.7 +17.5,0.91,5.890,30.3,17.3,0.91,5.950,30.1 +19.2,0.91,6.180,30.9,19.0,0.91,6.230,30.8 +20.6,0.91,5.850,38.7,20.4,0.91,5.900,38.6 +21.6,0.91,5.630,46.0,21.3,0.91,5.670,45.9 +22.1,0.91,5.870,51.1,21.9,0.91,5.920,51.0 +22.2,0.91,6.480,52.1,22.0,0.91,6.540,52.2 +22.0,0.91,7.140,48.9,21.8,0.91,7.210,48.8 +21.5,0.91,7.920,53.6,21.3,0.91,7.980,53.6 +20.8,0.91,8.820,66.1,20.6,0.91,8.810,66.6 +19.1,0.91,9.850,115.0,19.1,0.91,10.250,114.2 +18.7,0.91,9.930,116.4,18.6,0.91,9.980,116.4 +18.7,0.91,7.800,119.0,18.7,0.91,7.450,121.1 +18.1,0.91,8.870,121.6,18.0,0.91,8.600,123.5 +17.7,0.91,9.320,133.6,17.7,0.91,9.070,135.9 +17.2,0.91,9.660,151.7,17.2,0.91,9.600,153.3 +16.3,0.91,10.860,158.7,16.4,0.91,10.830,160.1 +16.6,0.91,12.100,168.4,16.8,0.91,12.350,169.1 +16.1,0.91,12.430,178.1,16.3,0.91,12.730,178.4 +16.8,0.91,11.860,196.1,17.1,0.91,12.240,196.8 +16.6,0.91,11.480,199.5,17.0,0.91,12.030,199.2 +16.3,0.91,10.420,201.5,16.3,0.91,11.170,201.7 +18.3,0.91,8.920,206.7,18.1,0.91,9.010,206.7 +20.5,0.91,7.640,210.9,20.3,0.91,7.700,211.0 +22.6,0.91,6.170,208.7,22.3,0.91,6.230,208.8 +24.0,0.91,4.560,193.7,23.8,0.91,4.590,194.0 +25.0,0.91,4.030,181.9,24.8,0.91,4.050,182.2 +25.7,0.91,4.100,173.3,25.5,0.91,4.110,173.5 +26.2,0.91,4.260,171.6,26.0,0.91,4.300,172.2 +26.3,0.90,4.460,161.6,26.1,0.90,4.500,161.9 +26.3,0.90,6.190,155.6,26.1,0.90,6.220,155.9 +26.1,0.90,5.380,161.7,25.9,0.90,5.440,161.8 +25.6,0.90,7.720,151.1,25.4,0.90,7.770,151.2 +24.8,0.90,11.240,157.7,24.8,0.90,11.610,158.3 +24.0,0.90,13.070,160.1,24.1,0.90,13.710,160.4 +21.7,0.90,14.440,160.4,21.7,0.90,15.270,160.5 +20.9,0.90,14.630,181.9,21.0,0.90,15.440,182.9 +20.6,0.90,14.580,191.6,20.7,0.90,15.410,192.0 +20.1,0.90,13.870,190.8,20.2,0.90,14.500,191.8 +19.4,0.90,14.660,199.6,19.5,0.90,15.340,200.6 +18.6,0.90,14.030,204.7,18.7,0.90,14.710,206.4 +18.1,0.90,14.040,206.3,18.2,0.90,14.760,207.2 +17.5,0.90,13.750,207.5,17.6,0.90,14.440,208.3 +17.2,0.90,12.890,213.8,17.3,0.90,13.570,213.9 +16.4,0.90,11.770,207.9,16.4,0.90,12.240,208.2 +17.4,0.90,9.610,212.6,17.2,0.90,9.780,212.8 +18.8,0.90,8.900,209.8,18.6,0.90,8.980,209.9 +21.0,0.90,7.650,203.8,20.8,0.90,7.730,203.8 +22.2,0.90,7.180,193.3,22.0,0.90,7.250,193.4 +23.5,0.90,6.570,187.5,23.3,0.90,6.630,187.6 +24.7,0.90,6.680,182.2,24.4,0.90,6.750,181.9 +25.5,0.90,5.740,170.9,25.3,0.90,5.790,171.8 +26.1,0.90,5.630,188.6,25.9,0.90,5.690,187.3 +26.4,0.90,5.470,182.8,26.2,0.90,5.520,181.2 +26.4,0.90,5.230,181.4,26.2,0.90,5.290,180.6 +26.3,0.90,5.940,161.5,26.1,0.90,6.030,161.7 +25.7,0.90,8.270,151.6,25.5,0.90,8.670,152.3 +21.9,0.90,13.540,158.9,21.8,0.90,14.250,159.2 +20.0,0.90,14.650,166.2,19.8,0.90,15.350,166.3 +18.8,0.90,15.200,172.1,18.8,0.90,15.950,172.2 +18.4,0.90,15.360,169.5,18.4,0.90,15.970,170.0 +18.0,0.90,15.470,176.7,18.1,0.90,16.120,177.5 +16.8,0.90,15.330,177.3,16.9,0.90,15.950,178.1 +16.3,0.90,16.120,186.2,16.4,0.90,16.840,186.9 +15.7,0.90,16.410,186.1,15.7,0.90,17.070,186.8 +15.5,0.90,15.480,191.2,15.6,0.90,16.120,192.3 +15.4,0.90,15.780,198.1,15.5,0.90,16.580,199.2 +14.3,0.90,15.600,190.2,14.3,0.90,16.200,191.2 +14.9,0.90,14.650,194.8,14.8,0.90,15.340,195.8 +15.8,0.90,13.160,196.5,15.6,0.90,13.350,196.8 +17.1,0.90,12.360,196.1,17.0,0.90,12.450,196.3 +19.2,0.90,12.360,187.5,19.1,0.90,12.450,187.6 +21.1,0.90,10.430,185.6,20.9,0.90,10.540,185.7 +22.7,0.90,9.830,188.7,22.5,0.90,9.930,188.8 +24.2,0.90,9.960,185.3,24.0,0.90,10.060,185.4 +25.8,0.90,11.110,172.5,25.6,0.90,11.240,172.8 +27.2,0.90,9.540,176.7,27.0,0.90,9.680,176.7 +27.9,0.90,10.620,176.8,27.7,0.90,10.760,177.0 +28.2,0.90,11.100,175.4,28.0,0.90,11.310,175.7 +28.0,0.90,11.960,168.3,27.8,0.90,12.160,168.5 +27.3,0.90,10.530,156.9,27.2,0.90,11.120,157.3 +25.6,0.90,13.920,153.9,25.6,0.90,14.760,154.2 +23.9,0.90,15.250,156.2,23.8,0.90,16.040,156.3 +19.1,0.90,9.430,289.4,18.9,0.90,9.860,290.7 +20.5,0.90,10.040,234.1,20.8,0.90,9.670,235.4 +27.2,0.90,12.200,196.1,27.2,0.90,11.990,198.0 +22.2,0.90,10.240,154.1,22.5,0.90,10.060,159.5 +20.7,0.90,14.840,172.6,20.9,0.90,15.690,170.8 +18.7,0.90,16.690,183.1,18.7,0.90,17.460,182.8 +19.0,0.90,16.270,178.9,19.1,0.90,16.880,179.7 +18.8,0.90,16.280,181.1,18.9,0.90,16.970,182.4 +18.7,0.90,15.690,185.8,18.8,0.90,16.280,186.9 +18.5,0.90,14.780,194.9,18.5,0.90,15.260,195.7 +18.8,0.90,16.130,199.4,18.6,0.90,16.470,199.6 +19.6,0.90,14.790,208.0,19.4,0.90,14.920,208.0 +21.4,0.90,12.320,201.6,21.2,0.90,12.450,201.7 +23.2,0.90,8.190,196.3,23.0,0.90,8.270,196.6 +25.2,0.90,5.140,196.4,24.9,0.90,5.180,197.1 +26.4,0.90,4.910,175.5,26.1,0.90,4.940,176.2 +27.5,0.90,3.420,164.2,27.3,0.90,3.420,165.1 +28.2,0.90,2.960,132.8,28.0,0.90,2.940,133.2 +28.8,0.90,2.200,113.3,28.6,0.90,2.190,113.0 +29.2,0.90,0.760,121.6,29.0,0.90,0.750,118.9 +28.9,0.90,4.000,62.8,28.7,0.90,4.040,63.0 +21.0,0.90,4.920,91.5,20.8,0.90,5.250,94.2 +18.3,0.90,8.600,39.4,18.1,0.90,8.650,39.9 +17.9,0.91,9.370,35.1,17.8,0.91,9.610,36.0 +16.9,0.91,9.720,52.2,16.7,0.91,10.010,52.6 +13.7,0.91,10.850,31.1,13.5,0.91,10.980,31.1 +10.9,0.91,11.290,35.1,10.7,0.91,11.380,34.7 +9.5,0.91,11.040,19.1,9.3,0.91,11.160,18.9 +8.8,0.91,11.810,4.3,8.6,0.91,11.970,4.3 +7.4,0.91,12.430,5.7,7.2,0.91,12.600,5.7 +6.3,0.91,12.480,9.8,6.1,0.91,12.630,9.6 +5.3,0.91,13.340,1.6,5.1,0.91,13.540,1.5 +4.5,0.92,15.840,4.9,4.3,0.92,16.090,4.8 +4.0,0.92,14.550,5.1,3.8,0.92,14.770,5.0 +3.9,0.92,15.430,1.2,3.7,0.92,15.710,1.2 +3.5,0.92,14.410,2.9,3.3,0.92,14.610,2.7 +2.8,0.92,15.650,359.2,2.6,0.92,15.910,359.2 +2.7,0.92,15.590,1.7,2.5,0.92,15.830,1.7 +2.4,0.92,16.340,359.6,2.2,0.92,16.570,359.6 +2.4,0.92,15.130,0.3,2.2,0.92,15.350,0.3 +2.7,0.92,14.750,0.3,2.5,0.92,14.970,0.3 +3.2,0.92,14.220,0.9,3.0,0.92,14.430,0.9 +3.7,0.92,12.890,4.6,3.5,0.92,13.070,4.5 +4.2,0.92,10.290,9.2,4.0,0.92,10.440,9.0 +6.8,0.92,10.600,12.1,6.6,0.92,10.790,12.1 +8.1,0.92,12.470,17.3,8.0,0.92,12.970,17.0 +7.3,0.92,13.820,17.5,7.2,0.92,14.670,17.6 +6.4,0.92,12.660,22.6,6.4,0.92,13.370,23.8 +5.9,0.92,11.700,19.5,5.9,0.92,12.330,20.2 +5.8,0.92,11.610,9.8,5.7,0.92,12.520,11.5 +5.4,0.92,13.730,10.3,5.4,0.92,14.870,12.3 +5.6,0.92,13.740,7.0,5.6,0.92,14.680,9.5 +5.4,0.92,12.140,357.6,5.5,0.92,12.870,1.3 +5.2,0.92,11.870,351.4,5.3,0.92,12.490,355.8 +5.0,0.92,12.300,348.3,5.2,0.92,12.860,353.5 +5.1,0.92,11.720,347.1,5.4,0.92,12.220,354.1 +4.8,0.92,11.330,341.7,5.2,0.92,11.690,349.4 +4.4,0.92,9.790,333.0,4.7,0.92,10.270,337.3 +5.1,0.92,6.930,325.3,5.0,0.92,7.360,327.8 +7.0,0.92,7.070,330.2,6.8,0.92,7.180,330.7 +8.4,0.92,6.510,334.9,8.2,0.92,6.610,334.9 +9.6,0.92,6.690,327.4,9.4,0.92,6.780,327.4 +10.7,0.92,6.460,320.6,10.5,0.92,6.550,320.7 +11.9,0.91,6.040,313.4,11.6,0.91,6.120,313.6 +13.0,0.91,6.140,317.3,12.7,0.91,6.220,317.2 +13.9,0.91,5.310,315.0,13.7,0.91,5.390,314.8 +14.8,0.91,5.090,301.3,14.6,0.91,5.170,301.3 +15.3,0.91,5.480,302.2,15.1,0.91,5.560,302.2 +15.8,0.91,3.590,301.7,15.6,0.91,3.690,301.2 +15.8,0.91,3.460,274.7,15.6,0.91,3.590,275.3 +15.8,0.91,6.260,250.2,15.7,0.91,6.490,253.2 +15.9,0.91,7.790,240.9,15.8,0.91,7.850,242.0 +16.3,0.91,8.940,245.6,16.2,0.91,9.030,247.3 +16.1,0.91,10.540,236.3,16.2,0.91,10.690,238.6 +15.9,0.91,10.910,238.0,16.2,0.91,11.210,241.1 +15.4,0.91,13.280,247.1,15.9,0.91,13.750,248.4 +15.6,0.91,13.330,254.6,16.1,0.91,13.770,256.8 +15.7,0.91,13.160,266.1,16.1,0.91,13.670,267.8 +11.9,0.91,10.910,293.5,12.2,0.91,11.370,290.7 +14.3,0.91,12.010,290.3,14.5,0.91,12.220,293.1 +12.3,0.91,10.310,298.2,12.3,0.91,10.180,300.5 +11.3,0.91,7.420,314.4,12.3,0.91,7.460,319.0 +11.1,0.91,3.490,322.8,11.2,0.91,3.810,333.0 +12.9,0.91,3.100,346.8,12.7,0.91,3.100,347.8 +14.7,0.91,3.360,22.6,14.6,0.91,3.360,22.7 +16.1,0.91,4.100,26.2,15.8,0.91,4.100,25.9 +17.1,0.91,4.000,25.0,16.9,0.91,4.000,24.6 +18.1,0.91,3.910,18.8,17.9,0.91,3.920,18.3 +19.1,0.91,3.600,9.5,18.9,0.91,3.620,8.9 +19.7,0.91,4.150,358.7,19.5,0.91,4.160,358.4 +20.1,0.91,3.780,0.8,19.9,0.91,3.780,0.6 +20.6,0.91,4.870,350.1,20.4,0.91,4.890,350.2 +20.3,0.91,4.220,12.6,20.1,0.91,4.250,12.6 +19.8,0.91,6.490,24.2,19.6,0.91,6.570,23.5 +19.2,0.91,8.400,31.8,19.1,0.91,8.490,31.8 +17.5,0.91,8.000,50.7,17.6,0.91,8.900,51.3 +15.9,0.91,9.310,56.7,15.9,0.91,10.370,56.9 +14.1,0.91,9.790,58.9,14.1,0.91,11.130,58.0 +13.0,0.91,10.710,57.1,12.9,0.91,11.570,57.2 +12.1,0.91,10.020,58.4,12.1,0.91,10.820,58.9 +10.3,0.91,10.580,56.8,10.0,0.91,11.600,59.8 +8.6,0.91,11.520,57.6,8.6,0.91,12.400,57.2 +8.0,0.91,10.010,51.0,8.0,0.91,10.910,52.0 +7.1,0.91,9.720,48.5,7.1,0.91,10.100,49.1 +6.7,0.91,9.440,46.3,6.6,0.91,9.750,47.0 +5.9,0.91,7.240,38.8,5.8,0.91,7.760,38.6 +6.8,0.91,6.460,23.2,6.6,0.91,6.540,23.0 +8.2,0.91,6.670,17.1,8.0,0.91,6.720,16.9 +9.8,0.91,5.800,10.9,9.6,0.91,5.850,10.6 +11.6,0.91,6.120,4.4,11.3,0.91,6.180,4.2 +13.0,0.91,5.600,4.7,12.8,0.91,5.650,4.5 +14.7,0.91,5.390,10.4,14.5,0.91,5.410,10.2 +16.0,0.91,4.990,7.9,15.8,0.91,4.990,7.8 +17.4,0.91,4.590,359.4,17.2,0.91,4.630,359.9 +18.2,0.91,4.420,10.6,18.0,0.91,4.480,11.3 +18.4,0.91,4.720,20.4,18.2,0.91,4.730,19.9 +18.4,0.91,4.470,29.0,18.2,0.91,4.510,28.6 +17.8,0.91,5.100,56.4,17.6,0.91,5.120,55.8 +16.8,0.91,6.050,79.2,16.6,0.91,5.940,78.7 +16.1,0.91,6.320,86.7,15.9,0.91,6.230,85.7 +15.4,0.91,6.300,89.3,15.4,0.91,6.040,87.0 +14.7,0.91,5.950,96.7,14.8,0.91,6.110,92.9 +15.0,0.91,5.740,103.9,15.0,0.91,5.380,98.5 +15.0,0.91,5.000,111.9,15.0,0.91,4.810,109.0 +14.3,0.91,7.180,144.3,14.6,0.91,6.420,144.4 +13.9,0.91,8.720,148.4,14.3,0.91,8.420,149.7 +13.1,0.91,7.620,137.2,13.4,0.91,7.780,138.6 +13.6,0.91,7.680,141.1,13.7,0.91,7.520,141.6 +13.8,0.91,8.660,160.9,13.9,0.91,8.590,159.9 +12.9,0.91,8.850,168.4,13.6,0.91,9.010,166.0 +13.6,0.91,7.490,172.6,13.7,0.91,8.120,171.6 +16.2,0.91,5.830,169.7,16.0,0.91,5.840,170.0 +17.9,0.91,5.050,168.4,17.7,0.91,5.070,168.5 +18.8,0.91,6.480,191.8,18.6,0.91,6.520,191.9 +19.2,0.91,6.600,192.7,19.0,0.91,6.640,192.7 +15.5,0.91,3.670,221.6,15.4,0.91,3.760,220.6 +15.5,0.91,1.730,220.1,15.3,0.91,1.700,217.8 +15.8,0.91,1.310,66.5,15.6,0.91,1.310,69.0 +16.3,0.91,4.830,59.9,16.1,0.91,4.850,60.3 +17.9,0.91,5.050,65.6,17.7,0.91,5.060,66.1 +18.4,0.91,5.840,81.2,18.3,0.91,5.890,81.3 +18.3,0.91,6.280,90.9,18.1,0.91,6.360,91.7 +18.0,0.91,7.260,109.2,17.9,0.91,7.340,109.8 +17.8,0.91,8.770,129.8,17.9,0.91,8.960,130.4 +17.4,0.91,9.520,146.6,17.7,0.91,9.690,150.0 +17.5,0.91,8.060,166.7,17.5,0.91,7.700,172.6 +17.2,0.91,8.900,166.2,17.3,0.91,8.880,167.5 +17.0,0.91,11.000,164.0,17.1,0.91,11.170,164.9 +16.7,0.91,11.820,164.2,16.9,0.91,12.290,164.8 +16.4,0.91,12.330,168.6,16.7,0.91,12.800,169.8 +16.0,0.91,12.030,176.0,16.2,0.91,12.430,178.0 +15.7,0.91,11.800,181.8,15.9,0.91,12.370,183.1 +15.1,0.91,9.600,185.0,15.3,0.91,10.050,186.3 +14.6,0.91,8.630,182.4,14.9,0.91,9.220,183.1 +14.8,0.91,7.790,181.3,14.7,0.91,8.020,181.4 +16.8,0.91,8.390,180.6,16.6,0.91,8.490,180.5 +18.6,0.91,9.080,176.7,18.4,0.91,9.200,176.7 +20.3,0.91,8.750,173.5,20.0,0.91,8.860,173.6 +21.7,0.91,8.430,173.3,21.4,0.91,8.540,173.4 +22.9,0.91,8.160,168.3,22.7,0.91,8.270,168.4 +23.8,0.91,8.630,166.9,23.6,0.91,8.740,167.1 +24.7,0.91,8.460,171.2,24.5,0.91,8.590,171.3 +25.2,0.91,8.840,165.0,25.0,0.91,8.960,165.3 +25.5,0.90,9.420,156.0,25.3,0.90,9.560,156.3 +25.3,0.90,11.610,156.8,25.1,0.90,11.820,157.0 +24.5,0.90,10.690,151.5,24.3,0.90,11.210,151.6 +23.4,0.90,9.870,141.2,23.3,0.90,10.550,141.7 +14.7,0.91,12.970,205.1,14.8,0.91,13.930,205.1 +15.1,0.91,12.250,158.8,15.2,0.91,12.590,159.8 +17.3,0.91,1.490,130.9,17.5,0.91,0.950,133.9 +18.6,0.91,6.390,141.6,18.9,0.91,6.350,145.3 +19.1,0.91,11.380,156.5,19.2,0.91,12.050,156.4 +17.4,0.91,12.780,156.1,17.5,0.91,13.580,156.2 +16.7,0.91,9.450,152.0,16.7,0.91,10.220,154.0 +16.7,0.91,11.010,163.7,16.8,0.91,11.770,165.7 +16.4,0.91,13.050,170.1,16.4,0.91,13.670,170.9 +15.8,0.91,13.910,174.3,15.7,0.91,14.520,175.0 +15.0,0.91,14.140,182.9,14.9,0.91,14.530,183.3 +15.4,0.91,11.420,188.7,15.3,0.91,11.620,188.9 +16.5,0.91,11.930,197.3,16.3,0.91,12.140,197.5 +17.9,0.91,13.090,196.5,17.7,0.91,13.270,196.7 +18.8,0.91,12.460,190.3,18.6,0.91,12.630,190.6 +20.0,0.91,12.620,193.2,19.8,0.91,12.800,193.3 +20.8,0.91,11.430,195.3,20.5,0.91,11.570,195.4 +21.2,0.91,10.720,193.2,21.0,0.91,10.850,193.2 +22.5,0.90,9.400,194.8,22.3,0.90,9.510,194.7 +23.0,0.90,8.960,183.3,22.7,0.90,9.080,183.2 +22.8,0.90,10.190,171.1,22.6,0.90,10.330,171.7 +22.7,0.90,10.760,169.5,22.5,0.90,10.930,169.6 +21.8,0.90,12.290,170.8,21.6,0.90,12.700,170.7 +20.3,0.90,13.760,169.3,20.1,0.90,14.340,169.4 +19.8,0.90,14.770,177.1,19.7,0.90,15.380,177.3 +19.5,0.90,14.550,178.5,19.4,0.90,15.170,179.0 +19.4,0.90,14.920,181.6,19.3,0.90,15.560,182.5 +19.1,0.90,13.860,186.1,19.1,0.90,14.390,187.1 +18.8,0.90,12.370,187.9,18.8,0.90,12.870,189.6 +18.6,0.90,11.590,193.7,18.6,0.90,12.010,195.3 +18.1,0.90,11.750,195.8,18.1,0.90,12.270,196.8 +17.6,0.90,12.090,197.1,17.5,0.90,12.540,198.3 +17.3,0.90,12.860,195.2,17.2,0.90,13.230,196.1 +17.6,0.90,11.060,206.2,17.5,0.90,11.570,207.7 +18.2,0.90,10.900,207.0,18.2,0.90,11.440,208.4 +19.1,0.90,11.560,203.1,19.1,0.90,12.350,204.2 +20.6,0.90,10.280,213.7,20.4,0.90,10.370,214.0 +19.4,0.91,11.580,190.0,19.2,0.91,11.680,190.2 +20.5,0.90,10.210,181.2,20.3,0.90,10.270,181.3 +23.5,0.90,10.160,195.9,23.3,0.90,10.240,196.3 +23.8,0.90,11.800,177.4,23.6,0.90,11.930,177.6 +19.9,0.91,13.390,244.8,19.7,0.91,13.250,245.1 +16.9,0.90,10.540,162.5,16.9,0.90,10.790,164.4 +18.4,0.90,8.160,25.3,18.1,0.90,8.130,25.5 +19.0,0.90,5.840,43.6,18.8,0.90,5.810,43.7 +20.9,0.90,5.850,123.4,20.8,0.90,5.850,123.2 +19.9,0.90,7.150,154.0,19.7,0.90,7.410,154.7 +19.4,0.90,7.030,163.0,19.5,0.90,7.200,168.7 +19.5,0.90,9.200,174.0,19.7,0.90,9.290,175.8 +15.8,0.91,9.140,55.6,15.7,0.91,9.790,54.7 +16.7,0.90,8.160,74.0,16.9,0.90,8.400,71.3 +16.3,0.91,5.560,76.4,16.4,0.91,5.620,73.9 +16.5,0.91,4.670,61.4,16.8,0.91,4.960,62.2 +15.9,0.91,3.870,69.4,16.5,0.91,4.170,64.8 +13.5,0.91,7.310,29.2,13.6,0.91,7.400,32.5 +13.6,0.91,6.360,38.1,13.7,0.91,6.330,40.6 +13.6,0.91,6.880,29.1,13.8,0.91,7.060,31.7 +14.6,0.91,5.950,45.1,14.8,0.91,6.410,45.0 +13.2,0.91,5.990,25.4,13.4,0.91,6.500,26.0 +14.4,0.91,7.180,65.2,14.7,0.91,7.780,62.8 +14.3,0.91,8.080,30.1,14.1,0.91,8.090,30.1 +16.5,0.91,10.550,20.1,16.3,0.91,10.680,20.1 +17.7,0.91,9.960,18.6,17.5,0.91,10.070,18.6 +17.5,0.91,9.520,357.1,17.3,0.91,9.600,357.3 +16.2,0.91,8.940,351.9,16.0,0.91,9.020,352.1 +15.8,0.91,9.720,340.0,15.6,0.91,9.830,340.3 +16.0,0.91,6.730,31.0,15.8,0.91,6.770,30.9 +17.8,0.91,5.180,26.7,17.6,0.91,5.200,26.9 +18.2,0.91,4.270,20.6,18.0,0.91,4.270,20.9 +18.8,0.91,3.670,48.6,18.6,0.91,3.720,48.6 +19.0,0.91,3.630,51.3,18.8,0.91,3.690,50.7 +19.0,0.91,3.860,9.5,18.8,0.91,3.930,11.2 +14.0,0.91,11.700,349.0,13.8,0.91,12.010,349.6 +13.5,0.91,6.650,31.5,13.3,0.91,7.120,31.5 +13.3,0.91,6.630,54.2,13.1,0.91,7.310,52.6 +14.5,0.91,5.630,53.9,14.8,0.91,6.380,52.8 +14.5,0.91,5.560,49.6,14.6,0.91,6.120,47.7 +14.6,0.91,7.680,55.3,14.7,0.91,8.300,54.6 +14.6,0.91,5.350,30.3,14.7,0.91,5.820,30.8 +14.2,0.91,6.240,29.3,14.3,0.91,6.650,29.7 +14.0,0.91,4.700,23.2,14.1,0.91,5.060,26.7 +14.1,0.91,5.860,20.2,14.1,0.91,5.990,23.4 +13.6,0.91,5.520,12.5,13.6,0.91,5.850,16.4 +14.2,0.91,4.570,21.3,14.0,0.91,4.640,21.9 +15.8,0.91,6.150,22.6,15.6,0.91,6.250,22.7 +17.0,0.91,7.360,26.8,16.8,0.91,7.450,26.9 +18.1,0.91,7.890,28.9,17.9,0.91,7.980,28.9 +18.9,0.91,7.830,29.5,18.6,0.91,7.920,29.5 +19.5,0.91,7.300,33.5,19.3,0.91,7.370,33.5 +20.1,0.91,6.860,44.4,19.9,0.91,6.930,44.3 +20.7,0.91,7.290,40.3,20.4,0.91,7.370,40.3 +21.0,0.91,7.370,41.7,20.8,0.91,7.440,41.8 +21.2,0.91,7.480,53.7,21.0,0.91,7.580,53.6 +21.0,0.91,7.640,55.1,20.8,0.91,7.740,55.1 +20.7,0.91,6.880,65.9,20.6,0.91,7.110,65.5 +20.5,0.91,6.840,59.1,20.4,0.91,7.040,58.4 +19.6,0.91,4.760,85.2,19.4,0.91,5.090,86.7 +19.5,0.91,7.340,95.7,19.4,0.91,7.370,94.3 +18.3,0.91,5.860,89.7,18.3,0.91,6.890,91.9 +19.4,0.91,6.700,103.1,19.5,0.91,6.810,97.8 +16.8,0.91,4.200,54.0,16.9,0.91,4.480,56.5 +16.8,0.91,3.980,72.2,17.0,0.91,4.570,74.5 +14.9,0.91,4.680,60.4,15.0,0.91,5.020,63.1 +14.9,0.91,5.050,54.3,15.3,0.91,5.470,57.0 +14.4,0.91,4.910,68.0,14.6,0.91,5.370,70.1 +14.4,0.91,5.350,76.0,14.6,0.91,5.820,78.3 +14.0,0.91,5.050,79.0,14.2,0.91,5.620,81.3 +14.5,0.92,3.570,84.9,14.4,0.92,3.700,88.0 +16.4,0.92,4.090,115.5,16.2,0.92,4.170,116.5 +17.8,0.92,4.250,140.1,17.6,0.92,4.300,140.6 +18.9,0.92,3.500,160.5,18.7,0.92,3.520,160.6 +20.1,0.91,2.640,156.9,19.9,0.91,2.660,156.9 +21.0,0.91,2.520,156.8,20.8,0.91,2.520,156.8 +21.7,0.91,2.960,156.1,21.5,0.91,2.960,156.0 +22.2,0.91,3.470,164.5,22.0,0.91,3.480,164.5 +22.2,0.91,5.140,179.8,22.0,0.91,5.130,179.4 +22.5,0.91,2.960,172.1,22.3,0.91,3.150,170.1 +22.3,0.91,3.790,152.7,22.1,0.91,3.810,152.7 +21.9,0.91,6.210,176.1,21.7,0.91,6.370,176.0 +21.6,0.91,7.830,164.1,21.5,0.91,7.740,164.4 +20.6,0.91,10.550,169.7,20.6,0.91,11.040,169.0 +20.1,0.91,11.290,169.2,20.1,0.91,11.710,169.3 +19.7,0.91,11.530,171.5,19.8,0.91,11.760,172.2 +19.2,0.91,12.570,178.3,19.4,0.91,12.900,178.4 +18.5,0.91,12.900,187.9,18.7,0.91,13.500,187.7 +18.1,0.91,13.340,193.6,18.3,0.91,13.870,193.5 +18.1,0.91,12.520,202.8,18.4,0.91,13.030,202.4 +17.7,0.91,13.090,209.5,18.0,0.91,13.620,209.1 +17.8,0.91,13.200,212.6,18.1,0.91,13.660,212.0 +17.1,0.91,13.680,219.3,17.4,0.91,14.200,219.1 +16.8,0.91,12.110,222.9,16.9,0.91,12.540,222.8 +17.3,0.91,9.670,227.2,17.3,0.91,10.390,227.7 +19.3,0.91,9.540,225.4,19.1,0.91,9.640,225.4 +20.8,0.91,8.520,220.7,20.6,0.91,8.620,220.7 +21.9,0.91,7.750,217.6,21.7,0.91,7.830,217.5 +23.1,0.91,6.850,211.1,22.9,0.91,6.910,211.1 +24.0,0.91,6.680,195.7,23.8,0.91,6.750,195.9 +24.5,0.91,6.770,189.3,24.3,0.91,6.840,189.3 +25.0,0.91,6.320,186.8,24.8,0.91,6.400,186.6 +25.2,0.91,6.520,185.6,25.0,0.91,6.610,185.7 +25.4,0.91,6.710,184.0,25.2,0.91,6.760,183.0 +25.3,0.91,7.320,165.2,25.1,0.91,7.430,165.5 +25.1,0.91,6.950,175.9,24.9,0.91,6.970,174.6 +24.2,0.91,10.220,158.1,24.2,0.91,10.620,159.1 +23.2,0.91,12.510,158.2,23.3,0.91,12.860,158.8 +22.3,0.91,14.150,162.3,22.5,0.91,15.000,162.6 +21.2,0.91,14.410,171.8,21.4,0.91,15.240,173.0 +20.2,0.91,13.440,186.2,20.4,0.91,14.110,188.1 +19.5,0.91,13.290,194.2,19.7,0.91,14.090,195.6 +18.9,0.91,13.620,198.5,19.1,0.91,14.630,199.1 +18.4,0.91,13.660,199.3,18.6,0.91,14.640,199.7 +18.1,0.91,13.470,200.6,18.3,0.91,14.440,201.0 +17.7,0.91,13.300,202.7,17.9,0.91,14.270,202.6 +17.1,0.91,12.850,201.5,17.2,0.91,13.630,202.0 +16.6,0.91,12.410,208.8,16.5,0.91,13.190,209.4 +17.1,0.91,9.430,207.8,16.9,0.91,9.580,208.1 +18.6,0.91,9.370,209.1,18.4,0.91,9.490,209.3 +19.9,0.91,9.860,203.4,19.7,0.91,9.990,203.6 +21.4,0.91,10.190,201.8,21.2,0.91,10.320,201.9 +22.7,0.91,9.840,199.9,22.5,0.91,9.970,200.0 +23.6,0.91,10.190,194.6,23.4,0.91,10.330,194.6 +24.4,0.91,10.500,197.9,24.2,0.91,10.630,197.8 +25.3,0.91,10.270,190.4,25.1,0.91,10.430,190.5 +25.9,0.91,10.620,188.9,25.7,0.91,10.800,188.8 +26.1,0.91,11.420,184.5,25.9,0.91,11.620,184.5 +25.9,0.91,12.750,187.3,25.8,0.91,12.990,187.2 +25.2,0.91,11.230,203.4,25.0,0.91,11.600,203.4 +16.4,0.91,11.240,281.1,16.6,0.91,11.950,279.3 +19.5,0.91,6.380,227.0,19.8,0.91,7.200,225.3 +19.4,0.91,11.850,192.5,19.7,0.91,12.820,193.9 +19.1,0.91,11.890,187.3,19.2,0.91,12.520,188.1 +18.7,0.91,11.170,187.8,18.7,0.91,11.750,188.1 +19.2,0.91,13.260,188.3,19.4,0.91,14.040,188.6 +18.4,0.91,12.820,191.0,18.4,0.91,13.250,191.7 +17.7,0.91,13.190,199.9,17.7,0.91,13.800,200.6 +17.8,0.91,15.610,193.3,17.9,0.91,16.330,192.7 +17.0,0.91,14.860,191.6,17.0,0.91,15.630,192.0 +16.6,0.91,14.160,190.6,16.5,0.91,14.700,191.2 +16.3,0.91,13.920,194.1,16.1,0.91,14.560,194.9 +17.1,0.91,13.250,195.8,17.0,0.91,13.940,196.6 +18.6,0.91,12.610,200.9,18.4,0.91,12.790,201.1 +20.5,0.91,13.340,196.7,20.3,0.91,13.500,196.8 +22.4,0.90,12.590,200.8,22.2,0.90,12.760,201.0 +24.2,0.90,11.720,189.8,24.0,0.90,11.860,190.0 +26.0,0.90,11.840,211.0,25.8,0.90,11.960,211.1 +26.3,0.90,9.840,199.2,26.0,0.90,10.000,199.5 +27.6,0.90,11.040,213.9,27.4,0.90,11.210,214.2 +28.8,0.90,10.890,221.6,28.6,0.90,11.060,221.9 +29.7,0.90,9.880,229.7,29.4,0.90,10.080,229.9 +28.4,0.90,12.610,223.6,28.2,0.90,12.770,223.8 +28.5,0.90,11.460,208.5,28.4,0.90,12.080,209.9 +27.0,0.90,14.340,223.1,26.9,0.90,15.030,223.5 +26.8,0.90,12.520,231.2,27.0,0.90,13.170,233.6 +25.6,0.90,12.680,216.3,25.6,0.90,13.830,220.4 +24.5,0.90,10.380,206.0,24.5,0.90,10.570,209.4 +23.2,0.90,8.770,182.1,23.1,0.90,9.570,181.3 +21.1,0.90,13.480,161.3,21.1,0.90,14.250,161.2 +20.0,0.90,15.420,175.2,20.2,0.90,15.930,175.7 +20.8,0.90,15.100,186.8,21.1,0.90,15.670,188.0 +20.4,0.90,17.000,188.7,20.5,0.90,17.780,189.7 +19.5,0.90,15.610,189.7,19.5,0.90,16.420,191.2 +19.2,0.90,13.850,189.7,19.2,0.90,14.490,191.9 +18.9,0.90,12.100,190.0,18.8,0.90,12.770,191.4 +19.9,0.90,10.620,200.8,19.8,0.90,10.750,201.2 +21.8,0.90,7.980,199.2,21.6,0.90,7.960,199.7 +24.1,0.90,5.240,211.8,23.9,0.90,5.250,212.1 +26.3,0.90,0.950,215.6,26.1,0.90,0.950,217.3 +27.9,0.90,0.960,129.4,27.7,0.90,0.930,130.4 +29.5,0.90,1.950,41.1,29.3,0.90,1.940,41.6 +30.5,0.90,2.270,32.8,30.3,0.90,2.230,32.4 +31.1,0.90,1.680,29.3,30.9,0.90,1.650,28.5 +31.7,0.90,1.490,36.9,31.5,0.90,1.470,37.0 +32.1,0.90,2.910,99.2,31.9,0.90,2.920,99.5 +31.9,0.90,3.190,121.2,31.8,0.90,3.160,122.0 +23.8,0.90,15.270,76.2,23.7,0.90,15.110,77.7 +21.6,0.90,6.420,35.5,22.0,0.90,6.330,35.4 +23.0,0.90,14.420,116.9,22.9,0.90,15.280,116.9 +21.9,0.90,11.460,119.2,22.2,0.90,12.220,117.9 +24.5,0.90,8.570,102.3,25.3,0.90,8.280,93.9 +25.6,0.90,8.260,130.3,25.7,0.90,8.040,133.2 +23.9,0.90,11.780,157.1,24.5,0.90,12.200,158.3 +22.3,0.90,14.130,169.0,22.6,0.90,14.840,169.4 +22.3,0.90,16.740,181.9,22.6,0.90,17.580,182.2 +20.9,0.90,16.460,171.7,21.0,0.90,16.970,172.6 +20.7,0.90,16.070,174.5,20.7,0.90,16.520,175.5 +20.3,0.90,14.650,185.1,20.6,0.90,15.050,187.5 +20.5,0.90,14.940,196.2,21.1,0.90,15.640,198.8 +21.4,0.90,13.340,198.3,21.4,0.90,14.180,200.0 +23.6,0.90,11.530,199.4,23.5,0.90,11.650,200.2 +26.3,0.90,10.300,203.0,26.2,0.90,10.340,203.5 +29.4,0.90,8.850,204.3,29.2,0.90,8.930,204.8 +32.7,0.90,7.830,213.8,32.5,0.90,7.930,214.1 +34.0,0.90,7.350,222.5,33.8,0.90,7.430,222.6 +34.6,0.90,6.830,207.1,34.4,0.90,6.880,207.5 +35.3,0.90,5.570,224.2,35.0,0.90,5.640,224.3 +35.4,0.90,6.330,243.2,35.2,0.90,6.370,242.6 +35.6,0.90,3.710,217.2,35.4,0.90,3.830,218.2 +35.1,0.90,6.490,191.9,34.9,0.90,6.840,193.7 +30.3,0.90,4.900,17.7,31.0,0.90,4.160,14.2 +27.7,0.90,11.700,170.0,27.8,0.90,11.750,171.0 +24.3,0.90,20.590,198.3,24.1,0.90,21.210,199.1 +23.4,0.90,20.700,152.4,23.6,0.90,21.580,152.1 +23.1,0.90,14.620,144.3,23.0,0.90,15.310,145.7 +26.9,0.90,14.460,148.4,26.9,0.90,15.070,148.9 +27.3,0.90,15.360,157.9,27.2,0.90,15.820,159.0 +25.9,0.90,12.240,166.8,25.9,0.90,12.870,167.4 +24.3,0.90,13.870,171.1,24.1,0.90,14.340,170.8 +22.6,0.90,13.870,180.3,22.5,0.90,14.520,181.3 +22.4,0.90,2.560,81.8,22.1,0.90,2.530,107.3 +21.8,0.90,6.350,159.4,21.7,0.90,6.470,162.4 +21.2,0.90,4.580,133.4,20.9,0.90,4.690,135.9 +21.6,0.90,10.890,179.4,21.4,0.90,11.420,180.2 +22.9,0.90,12.680,187.0,22.7,0.90,12.880,187.3 +24.9,0.90,13.420,182.1,24.7,0.90,13.580,182.3 +25.8,0.90,14.040,179.4,25.6,0.90,14.190,179.5 +27.7,0.90,13.920,181.3,27.4,0.90,14.110,181.4 +29.3,0.90,13.960,175.9,29.1,0.90,14.150,176.4 +30.5,0.90,13.100,186.3,30.2,0.90,13.280,186.1 +30.1,0.90,14.680,179.6,29.9,0.90,14.870,179.7 +31.5,0.90,13.880,177.9,31.3,0.90,14.000,177.9 +32.4,0.90,12.250,179.9,32.1,0.90,12.480,180.1 +31.8,0.90,15.080,172.8,31.6,0.90,15.370,173.1 +29.7,0.90,16.020,169.5,29.6,0.90,16.490,169.7 +28.3,0.90,18.570,174.8,28.2,0.90,19.210,174.8 +27.6,0.90,15.060,183.6,27.5,0.90,15.670,184.2 +25.8,0.90,14.330,185.3,25.6,0.90,15.260,185.1 +26.8,0.90,14.640,180.2,26.7,0.90,15.230,181.0 +25.8,0.90,14.090,179.9,25.7,0.90,14.700,180.4 +25.0,0.90,13.730,182.8,24.9,0.90,14.140,184.8 +24.2,0.90,13.220,189.4,24.2,0.90,14.010,192.0 +23.1,0.90,13.840,183.6,23.1,0.90,14.430,185.6 +22.7,0.90,14.600,187.6,22.7,0.90,15.410,189.4 +22.1,0.90,15.170,190.1,22.1,0.90,15.900,191.9 +21.3,0.90,13.810,195.8,21.4,0.90,14.530,197.6 +20.9,0.90,12.500,202.4,20.9,0.90,13.350,203.7 +22.2,0.90,12.180,206.7,22.0,0.90,12.380,207.1 +23.6,0.90,11.530,211.0,23.4,0.90,11.620,211.3 +25.5,0.90,9.720,209.9,25.3,0.90,9.780,210.3 +28.0,0.90,7.340,225.4,27.8,0.90,7.430,225.9 +30.4,0.90,7.130,244.8,30.2,0.90,7.240,245.0 +31.2,0.90,8.310,244.7,31.0,0.90,8.440,244.8 +31.9,0.90,8.890,244.3,31.7,0.90,9.030,244.1 +32.3,0.90,9.680,238.1,32.1,0.90,9.840,238.1 +32.5,0.90,9.930,241.5,32.3,0.90,10.100,241.4 +32.9,0.90,9.950,237.4,32.6,0.90,10.130,237.2 +32.5,0.90,11.650,231.1,32.3,0.90,11.850,231.2 +31.9,0.90,11.830,227.6,31.8,0.90,12.370,227.7 +31.4,0.90,9.730,232.6,31.4,0.90,10.300,233.8 +31.4,0.90,9.940,234.2,31.2,0.90,10.110,235.8 +30.8,0.90,10.490,245.2,30.8,0.90,10.850,248.2 +31.5,0.90,10.460,243.3,31.4,0.90,10.450,242.6 +27.8,0.90,17.440,200.5,27.7,0.90,18.580,202.3 +25.9,0.90,13.360,200.7,26.0,0.90,14.150,202.1 +24.4,0.90,14.090,189.9,24.3,0.90,15.090,191.1 +22.5,0.90,13.920,183.3,22.5,0.90,14.630,185.7 +21.2,0.90,14.810,190.3,21.2,0.90,15.650,191.7 +20.7,0.90,15.250,195.2,20.7,0.90,16.100,196.6 +20.4,0.90,14.330,194.4,20.4,0.90,15.100,196.2 +20.0,0.90,13.090,197.6,20.0,0.90,13.900,198.4 +21.2,0.90,12.120,205.2,21.0,0.90,12.300,205.5 +22.6,0.90,11.330,203.2,22.4,0.90,11.430,203.6 +24.3,0.90,12.190,202.4,24.1,0.90,12.310,202.7 +26.6,0.90,11.530,202.0,26.4,0.90,11.670,202.2 +28.3,0.90,9.810,204.1,28.1,0.90,9.930,204.4 +30.2,0.90,9.040,212.4,30.0,0.90,9.160,212.6 +31.7,0.90,8.720,210.9,31.4,0.90,8.850,211.3 +32.6,0.90,9.390,220.3,32.4,0.90,9.540,220.4 +33.2,0.90,10.130,222.3,33.0,0.90,10.300,222.7 +33.4,0.90,10.110,221.4,33.2,0.90,10.280,221.5 +33.6,0.90,9.960,230.3,33.4,0.90,10.170,230.4 +32.7,0.90,7.930,236.3,32.6,0.90,8.350,237.5 +31.4,0.90,9.260,253.2,31.7,0.90,9.750,255.0 +32.2,0.90,12.320,255.5,32.0,0.90,12.060,255.5 +31.8,0.90,11.340,263.9,31.8,0.90,11.390,263.8 +28.3,0.90,14.210,207.0,28.5,0.90,15.230,208.1 +26.7,0.90,12.240,196.6,26.6,0.90,13.090,198.2 +25.1,0.90,12.230,185.0,25.2,0.90,12.970,187.4 +23.4,0.90,13.660,179.9,23.3,0.90,14.150,181.8 +22.1,0.90,13.500,186.6,22.1,0.90,14.030,188.5 +21.5,0.90,14.620,191.5,21.5,0.90,15.300,192.9 +20.9,0.90,13.540,200.0,20.8,0.90,14.400,201.7 +20.3,0.90,13.210,193.6,20.3,0.90,13.830,195.3 +20.4,0.90,12.600,197.7,20.2,0.90,13.250,198.3 +21.4,0.90,11.070,209.2,21.2,0.90,11.200,209.4 +22.8,0.90,9.560,218.2,22.6,0.90,9.680,218.3 +24.4,0.90,8.600,235.2,24.2,0.90,8.700,235.4 +22.7,0.90,7.620,308.4,22.6,0.90,7.670,307.7 +22.7,0.90,9.320,325.9,22.5,0.90,9.360,325.7 +20.8,0.90,10.140,342.2,20.5,0.90,10.220,341.9 +18.1,0.90,11.320,2.2,17.9,0.90,11.380,2.0 +16.6,0.90,11.240,12.7,16.4,0.90,11.340,12.5 +18.1,0.90,8.800,17.1,17.9,0.90,8.880,17.0 +19.4,0.90,8.530,22.9,19.1,0.90,8.620,22.8 +19.9,0.90,6.890,27.0,19.7,0.90,6.950,26.9 +20.1,0.90,5.520,20.3,19.9,0.90,5.600,20.4 +19.7,0.90,5.030,35.2,19.6,0.90,4.980,34.9 +19.4,0.90,3.790,40.4,19.2,0.90,3.870,40.6 +19.1,0.90,2.840,54.6,19.0,0.90,3.060,54.4 +18.9,0.90,3.080,79.0,18.9,0.90,3.300,77.1 +18.7,0.90,5.010,107.0,18.4,0.90,4.870,106.5 +19.7,0.90,5.710,122.2,19.8,0.90,5.560,118.9 +17.4,0.90,9.100,150.4,18.0,0.90,8.630,147.1 +18.5,0.90,8.530,154.5,19.2,0.90,8.300,149.1 +16.4,0.90,10.970,165.7,16.8,0.90,11.110,163.9 +18.3,0.90,9.090,164.6,18.8,0.90,9.160,161.2 +18.4,0.90,10.070,157.3,18.8,0.90,10.240,155.2 +19.0,0.90,9.720,159.6,19.5,0.90,10.240,157.4 +19.1,0.91,6.980,161.2,19.1,0.91,7.860,158.3 +20.4,0.91,7.340,165.1,20.2,0.91,7.420,164.7 +21.8,0.91,7.070,168.2,21.6,0.91,7.140,168.0 +23.7,0.91,8.060,155.0,23.5,0.91,8.160,155.0 +25.0,0.91,8.330,160.1,24.8,0.91,8.440,160.2 +26.4,0.91,7.950,163.1,26.2,0.91,8.050,163.2 +27.2,0.90,8.300,169.8,27.0,0.90,8.400,169.9 +28.0,0.90,8.280,169.2,27.8,0.90,8.390,169.4 +28.8,0.90,8.190,161.8,28.5,0.90,8.310,162.1 +29.3,0.90,8.380,163.9,29.0,0.90,8.520,164.2 +29.3,0.90,9.090,155.0,29.1,0.90,9.240,155.3 +28.5,0.90,9.720,144.4,28.3,0.90,10.170,144.9 +27.4,0.90,11.410,142.6,27.4,0.90,12.240,143.0 +26.5,0.90,13.520,149.8,26.4,0.90,14.350,149.9 +25.3,0.90,14.480,152.8,25.3,0.90,15.320,152.8 +24.8,0.90,15.220,161.0,24.7,0.90,15.960,161.1 +24.1,0.90,15.970,164.8,24.1,0.90,16.680,165.0 +23.8,0.90,16.160,173.9,23.8,0.90,16.870,174.2 +23.0,0.90,16.540,172.8,22.9,0.90,17.220,173.1 +22.4,0.90,17.770,174.4,22.3,0.90,18.520,174.5 +21.5,0.90,16.550,178.9,21.5,0.90,17.250,179.3 +21.4,0.90,16.890,183.0,21.4,0.90,17.630,183.2 +21.0,0.90,16.230,186.4,21.0,0.90,16.970,186.7 +20.7,0.91,15.340,187.1,20.6,0.91,16.240,186.9 +21.7,0.91,13.590,189.7,21.5,0.91,13.790,189.7 +23.0,0.91,13.300,191.3,22.8,0.91,13.430,191.4 +24.7,0.91,11.820,192.1,24.5,0.91,11.960,192.1 +26.3,0.91,8.600,187.8,26.0,0.91,8.730,187.9 +27.6,0.91,7.320,174.7,27.3,0.91,7.390,174.9 +28.7,0.91,6.220,148.3,28.4,0.91,6.290,148.6 +29.6,0.91,7.210,155.1,29.4,0.91,7.300,155.2 +30.1,0.90,9.850,155.7,29.9,0.90,10.000,155.7 +30.3,0.90,11.080,143.5,30.0,0.90,11.250,143.8 +30.4,0.90,11.860,150.8,30.2,0.90,12.070,150.9 +17.2,0.91,18.420,350.5,17.9,0.91,19.520,350.1 +17.2,0.91,7.340,10.1,17.0,0.91,7.610,8.9 +17.9,0.91,7.120,18.7,17.8,0.91,7.170,17.9 +18.7,0.91,7.320,305.4,18.5,0.91,7.400,305.5 +18.7,0.91,9.660,323.0,19.2,0.91,10.800,319.3 +22.4,0.91,7.400,74.4,22.7,0.91,7.670,72.7 +20.3,0.91,5.600,73.4,20.6,0.91,5.790,73.8 +21.8,0.91,6.390,109.3,21.7,0.91,6.760,110.5 +21.1,0.91,7.430,130.9,21.1,0.91,8.090,130.8 +21.0,0.91,7.660,130.8,21.0,0.91,8.390,134.2 +20.4,0.91,9.590,155.8,20.4,0.91,10.280,157.5 +20.2,0.91,9.410,162.9,20.1,0.91,10.080,165.6 +19.7,0.91,9.250,167.7,19.8,0.91,9.870,170.0 +19.4,0.91,9.570,176.6,19.4,0.91,10.320,177.3 +20.3,0.91,8.180,173.0,20.1,0.91,8.340,173.2 +21.6,0.91,8.700,166.1,21.4,0.91,8.810,166.2 +22.6,0.91,8.020,164.0,22.4,0.91,8.130,164.1 +24.0,0.91,7.010,145.5,23.8,0.91,7.100,145.6 +25.2,0.91,7.690,136.0,25.0,0.91,7.800,136.1 +26.6,0.91,8.650,140.3,26.3,0.91,8.780,140.5 +26.8,0.91,9.510,135.2,26.6,0.91,9.610,135.4 +25.7,0.91,7.340,107.1,25.5,0.91,7.490,109.6 +27.7,0.91,9.380,135.6,27.4,0.91,9.500,135.7 +27.5,0.91,10.980,127.6,27.3,0.91,11.130,128.1 +23.7,0.91,6.020,245.8,23.5,0.91,6.170,246.5 +24.1,0.91,1.900,292.0,23.9,0.91,1.680,281.1 +24.4,0.91,3.660,139.1,24.3,0.91,4.210,139.8 +24.9,0.91,12.790,138.9,24.9,0.91,14.030,139.9 +21.5,0.91,12.720,168.3,21.3,0.91,13.270,167.5 +20.8,0.91,11.950,165.7,20.7,0.91,12.750,165.1 +20.4,0.91,11.480,159.6,20.3,0.91,12.230,159.3 +19.8,0.91,11.100,164.2,19.7,0.91,11.840,164.1 +19.4,0.91,11.330,167.9,19.4,0.91,12.060,168.0 +19.2,0.91,11.920,167.8,19.2,0.91,12.460,168.6 +18.9,0.91,12.000,170.0,18.9,0.91,12.610,170.3 +18.7,0.91,12.320,171.9,18.6,0.91,12.940,172.5 +18.2,0.91,12.520,166.8,18.1,0.91,13.100,167.2 +18.2,0.91,11.950,177.0,18.1,0.91,12.290,177.1 +18.5,0.91,10.560,171.9,18.3,0.91,10.720,172.0 +19.9,0.91,9.450,173.6,19.7,0.91,9.580,173.7 +21.1,0.91,9.570,168.7,20.9,0.91,9.730,168.9 +20.3,0.91,11.020,172.6,20.1,0.91,11.160,172.5 +21.2,0.91,9.970,175.5,20.9,0.91,10.100,175.4 +22.3,0.91,9.790,172.7,22.1,0.91,9.910,172.7 +23.9,0.91,9.100,173.0,23.7,0.91,9.220,173.1 +24.9,0.91,8.060,166.5,24.6,0.91,8.170,166.7 +24.9,0.91,10.930,160.0,24.7,0.91,11.030,160.2 +25.3,0.91,9.850,158.6,25.1,0.91,10.030,158.5 +25.0,0.91,9.770,163.0,24.8,0.91,9.910,163.1 +25.3,0.91,9.450,164.2,25.1,0.91,9.690,164.4 +24.4,0.91,10.970,159.4,24.2,0.91,11.550,159.0 +23.0,0.91,12.990,157.2,22.9,0.91,13.650,157.4 +22.2,0.91,12.450,165.0,22.1,0.91,13.040,165.0 +21.5,0.91,13.640,180.4,21.4,0.91,14.150,180.6 +20.7,0.91,13.170,180.8,20.5,0.91,13.720,181.1 +19.8,0.91,13.430,190.1,19.7,0.91,13.980,190.5 +19.4,0.91,11.760,202.4,19.3,0.91,12.240,202.6 +19.2,0.91,12.780,202.8,19.0,0.91,13.200,203.4 +18.9,0.91,13.370,182.3,18.8,0.91,13.780,182.8 +18.6,0.91,13.460,177.0,18.5,0.91,13.940,177.0 +18.9,0.91,13.300,190.5,18.9,0.91,13.920,190.7 +18.5,0.91,11.880,193.6,18.3,0.91,12.280,194.0 +20.1,0.91,12.130,198.4,19.9,0.91,12.280,198.5 +21.1,0.91,12.200,191.5,20.9,0.91,12.310,191.6 +22.4,0.91,12.130,190.2,22.2,0.91,12.260,190.4 +24.4,0.91,11.530,191.6,24.2,0.91,11.680,191.8 +26.0,0.91,10.850,189.2,25.8,0.91,10.990,189.3 +27.3,0.91,10.950,190.3,27.1,0.91,11.070,190.3 +28.3,0.91,9.890,184.5,28.0,0.91,10.000,184.3 +29.2,0.91,9.320,184.3,28.9,0.91,9.430,184.1 +29.7,0.91,8.650,181.8,29.5,0.91,8.750,181.3 +29.9,0.91,10.010,169.8,29.6,0.91,10.180,170.2 +29.7,0.91,10.650,168.9,29.5,0.91,10.760,169.1 +29.3,0.91,10.090,172.7,29.1,0.91,10.340,173.1 +28.1,0.91,11.590,173.9,28.0,0.91,12.310,174.2 +27.1,0.91,13.650,177.3,27.0,0.91,14.290,177.5 +25.9,0.91,15.370,181.8,25.7,0.91,16.010,181.9 +25.0,0.91,16.230,188.6,24.9,0.91,16.940,188.7 +23.5,0.91,15.870,183.2,23.4,0.91,16.380,182.9 +22.0,0.91,16.260,189.1,21.9,0.91,16.930,189.2 +21.0,0.90,17.440,188.6,20.9,0.90,18.060,189.0 +20.5,0.91,17.020,190.8,20.4,0.91,17.700,191.3 +19.9,0.90,18.000,194.1,19.9,0.90,18.700,194.6 +19.3,0.90,17.860,192.9,19.2,0.90,18.570,193.4 +18.8,0.90,18.050,193.0,18.7,0.90,18.780,193.6 +18.8,0.90,16.740,195.7,18.7,0.90,17.240,196.0 +19.8,0.90,16.220,201.3,19.6,0.90,16.420,201.4 +21.4,0.90,15.050,199.8,21.2,0.90,15.210,199.9 +23.2,0.90,13.890,198.0,23.0,0.90,14.050,198.1 +25.2,0.90,12.930,193.9,25.0,0.90,13.100,194.0 +26.9,0.90,11.670,190.0,26.7,0.90,11.830,190.1 +28.3,0.90,11.860,190.0,28.1,0.90,12.020,190.2 +29.4,0.90,12.140,191.7,29.2,0.90,12.290,191.7 +30.4,0.90,11.960,183.8,30.1,0.90,12.150,184.1 +30.8,0.90,12.540,193.1,30.6,0.90,12.680,192.9 +30.8,0.90,12.820,184.9,30.5,0.90,13.060,185.0 +30.2,0.90,15.630,185.4,30.0,0.90,15.790,185.5 +29.3,0.90,13.890,182.3,29.2,0.90,14.270,182.3 +28.0,0.90,15.360,190.8,27.9,0.90,15.850,190.8 +26.9,0.90,16.280,193.9,26.8,0.90,16.970,193.8 +25.7,0.90,16.830,188.4,25.6,0.90,17.480,188.5 +24.9,0.90,18.380,186.1,24.8,0.90,19.090,186.2 +24.3,0.90,19.220,188.0,24.2,0.90,20.010,188.0 +23.7,0.90,18.850,183.9,23.7,0.90,19.720,184.1 +23.2,0.90,19.570,187.8,23.1,0.90,20.360,188.0 +22.5,0.90,17.330,186.2,22.4,0.90,17.980,186.4 +21.3,0.90,19.290,189.7,21.3,0.90,20.050,190.2 +20.8,0.90,18.840,195.7,20.7,0.90,19.560,196.0 +20.0,0.90,18.580,192.9,19.9,0.90,19.330,193.3 +19.8,0.90,18.170,189.8,19.7,0.90,19.160,189.9 +19.9,0.90,17.690,191.8,19.8,0.90,18.040,191.9 +21.3,0.90,17.000,192.8,21.1,0.90,17.200,192.9 +22.6,0.90,16.080,190.1,22.4,0.90,16.270,190.2 +23.8,0.90,15.680,187.3,23.6,0.90,15.880,187.4 +25.6,0.90,15.140,185.0,25.4,0.90,15.350,185.1 +26.6,0.90,8.630,180.1,26.4,0.90,8.890,179.8 +28.0,0.90,15.040,180.2,27.8,0.90,15.210,180.1 +29.4,0.90,14.020,172.2,29.1,0.90,14.270,172.1 +29.7,0.90,14.750,171.4,29.5,0.90,14.980,171.6 +29.6,0.90,14.820,198.3,29.4,0.90,15.160,198.4 +25.3,0.90,12.050,161.2,25.1,0.90,12.570,161.0 +25.9,0.90,14.810,165.1,25.9,0.90,15.590,164.9 +25.9,0.90,16.670,161.4,25.8,0.90,17.700,161.1 +25.6,0.90,19.170,168.2,25.5,0.90,20.030,168.0 +24.7,0.90,18.900,169.4,24.6,0.90,19.680,169.2 +23.4,0.90,19.960,171.5,23.3,0.90,20.720,171.4 +22.2,0.90,19.940,171.6,22.1,0.90,20.600,171.6 +21.1,0.90,20.740,175.8,20.9,0.90,21.400,175.8 +20.5,0.90,20.980,179.5,20.4,0.90,21.610,179.5 +20.1,0.90,20.900,183.0,20.0,0.90,21.580,182.9 +19.7,0.90,21.860,186.6,19.5,0.90,22.540,186.5 +19.3,0.90,20.080,190.3,19.2,0.90,20.700,190.4 +19.2,0.90,19.560,188.0,19.1,0.90,20.230,188.0 +19.3,0.90,20.220,191.7,19.1,0.90,20.810,191.7 +19.9,0.90,17.400,189.2,19.7,0.90,17.660,189.1 +21.1,0.90,19.310,189.5,20.9,0.90,19.590,189.5 +23.1,0.90,18.800,191.1,22.9,0.90,19.070,191.2 +24.5,0.90,16.870,192.1,24.3,0.90,17.120,192.1 +25.8,0.90,16.940,193.8,25.6,0.90,17.190,193.8 +27.0,0.90,15.730,189.3,26.8,0.90,15.970,189.4 +28.5,0.90,14.780,192.8,28.3,0.90,15.030,192.9 +29.2,0.90,13.660,187.2,29.0,0.90,13.900,187.5 +30.0,0.90,13.460,193.6,29.7,0.90,13.680,193.6 +30.5,0.90,12.670,193.8,30.3,0.90,12.860,194.1 +30.5,0.90,12.050,195.6,30.3,0.90,12.290,195.6 +26.3,0.90,21.490,187.2,26.1,0.90,21.780,187.0 +26.1,0.90,12.140,154.8,26.1,0.90,12.250,155.9 +26.5,0.90,13.630,155.3,26.5,0.90,14.320,156.6 +25.5,0.90,15.470,174.0,25.5,0.90,16.370,174.5 +24.8,0.90,15.450,173.9,24.7,0.90,16.260,174.5 +23.0,0.90,16.480,171.1,22.9,0.90,17.110,171.3 +21.9,0.90,15.500,170.9,21.8,0.90,16.060,171.2 +21.4,0.90,16.500,176.5,21.2,0.90,17.060,176.8 +20.8,0.90,16.290,180.0,20.7,0.90,16.870,180.4 +20.6,0.90,16.230,186.3,20.4,0.90,16.810,186.7 +20.3,0.90,15.120,187.9,20.1,0.90,15.680,188.3 +20.1,0.90,15.460,187.1,19.9,0.90,15.840,187.4 +20.2,0.90,16.220,189.8,20.0,0.90,16.880,190.1 +20.8,0.90,15.940,191.9,20.6,0.90,16.190,192.1 +22.1,0.90,15.570,196.3,21.9,0.90,15.750,196.4 +24.2,0.90,13.770,201.1,24.0,0.90,13.940,201.2 +26.5,0.90,11.490,209.8,26.3,0.90,11.660,210.0 +28.1,0.90,10.080,218.9,27.9,0.90,10.210,219.0 +29.6,0.90,8.900,225.8,29.4,0.90,9.020,225.9 +30.9,0.90,8.320,229.2,30.7,0.90,8.410,229.2 +32.0,0.90,7.750,244.0,31.8,0.90,7.820,243.8 +32.4,0.90,7.030,247.0,32.2,0.90,7.120,246.7 +33.0,0.90,8.220,216.8,32.7,0.90,8.340,217.2 +32.8,0.90,8.640,247.8,32.6,0.90,8.690,247.3 +32.9,0.90,7.840,212.9,32.8,0.90,7.750,213.8 +32.6,0.90,8.690,223.3,32.5,0.90,8.750,222.0 +32.6,0.90,10.370,230.6,32.5,0.90,10.510,231.1 +31.6,0.90,10.030,226.0,31.7,0.90,10.520,226.4 +27.6,0.90,14.220,201.8,27.5,0.90,15.200,202.3 +26.3,0.90,14.050,200.3,26.3,0.90,14.940,201.0 +25.3,0.90,14.790,198.0,25.3,0.90,15.700,199.2 +24.2,0.90,15.020,188.7,24.2,0.90,15.680,189.7 +23.2,0.90,16.040,189.3,23.2,0.90,16.690,190.3 +22.2,0.90,16.250,191.3,22.2,0.90,16.950,192.3 +21.7,0.90,16.830,194.3,21.7,0.90,17.560,195.3 +21.0,0.90,16.950,195.1,20.9,0.90,17.640,195.8 +20.7,0.90,16.780,194.3,20.6,0.90,17.560,194.9 +21.8,0.90,15.350,196.8,21.6,0.90,15.530,197.0 +23.5,0.90,14.880,196.4,23.4,0.90,15.010,196.5 +25.7,0.90,14.240,197.9,25.5,0.90,14.380,198.1 +27.8,0.90,13.440,199.7,27.6,0.90,13.580,199.8 +30.0,0.90,11.600,198.3,29.8,0.90,11.740,198.5 +31.8,0.90,10.460,201.5,31.6,0.90,10.590,201.8 +33.3,0.90,9.640,209.0,33.0,0.90,9.780,209.2 +34.3,0.90,10.190,227.7,34.1,0.90,10.320,227.7 +34.7,0.90,9.980,219.7,34.4,0.90,10.130,219.9 +34.9,0.90,10.130,213.8,34.7,0.90,10.280,214.1 +35.0,0.90,10.860,214.7,34.8,0.90,11.050,215.0 +34.5,0.90,11.170,202.9,34.3,0.90,11.630,203.2 +33.8,0.90,13.240,203.6,33.8,0.90,14.140,204.5 +32.1,0.90,14.640,203.7,32.0,0.90,15.570,204.0 +30.5,0.90,15.030,195.4,30.5,0.90,16.060,195.9 +29.3,0.90,15.440,196.1,29.2,0.90,16.260,196.4 +28.0,0.90,13.930,189.2,28.0,0.90,14.740,190.1 +27.1,0.90,14.230,188.7,27.1,0.90,15.050,190.6 +26.6,0.90,15.650,193.8,26.5,0.90,16.480,195.4 +25.4,0.90,16.820,191.8,25.4,0.90,17.600,193.2 +24.7,0.90,16.510,195.3,24.7,0.90,17.400,196.6 +23.9,0.90,11.640,207.1,23.9,0.90,12.430,208.6 +22.5,0.90,3.490,252.9,22.7,0.90,4.080,249.7 +24.1,0.90,4.400,273.4,24.2,0.90,5.010,280.1 +22.7,0.90,4.730,355.7,22.6,0.90,4.680,355.0 +22.8,0.90,6.330,4.7,22.6,0.90,6.350,4.6 +24.2,0.90,6.790,12.4,24.0,0.90,6.820,12.2 +24.8,0.91,8.070,25.0,24.6,0.91,8.130,25.0 +25.3,0.91,8.810,30.1,25.0,0.91,8.890,30.1 +26.4,0.91,8.670,29.6,26.1,0.91,8.750,29.8 +26.5,0.91,9.470,42.9,26.3,0.91,9.560,42.7 +27.1,0.91,7.550,35.2,26.9,0.91,7.660,35.4 +27.5,0.91,8.750,40.1,27.3,0.91,8.850,40.1 +27.3,0.91,9.840,34.5,27.1,0.91,9.930,34.6 +27.1,0.91,9.640,35.3,26.9,0.91,9.750,35.4 +26.7,0.91,9.470,35.7,26.5,0.91,9.700,35.8 +25.5,0.91,11.370,40.9,25.4,0.91,11.990,41.3 +24.4,0.91,10.480,58.2,24.3,0.91,11.450,58.9 +23.1,0.91,11.830,66.8,23.1,0.91,13.070,67.5 +22.1,0.91,10.860,77.6,22.2,0.91,12.090,77.2 +21.8,0.91,11.260,82.7,21.9,0.91,12.140,81.9 +21.1,0.91,11.000,91.5,21.2,0.91,12.150,91.4 +21.0,0.91,11.320,95.7,21.1,0.91,12.600,94.1 +20.4,0.91,11.380,101.7,20.5,0.91,12.570,100.1 +19.7,0.91,11.790,104.5,19.8,0.91,12.710,101.1 +18.7,0.91,10.680,111.9,18.8,0.91,11.170,110.4 +18.1,0.91,8.150,109.0,18.2,0.91,8.780,107.2 +17.6,0.91,5.700,95.6,17.5,0.91,6.400,96.3 +18.8,0.91,5.990,75.7,18.7,0.91,6.060,76.7 +20.1,0.91,6.900,78.5,19.9,0.91,6.970,79.0 +21.3,0.91,6.440,77.5,21.1,0.91,6.490,77.9 +22.8,0.91,5.560,79.6,22.6,0.91,5.610,80.2 +24.1,0.91,4.890,81.0,23.8,0.91,4.930,82.4 +25.1,0.91,3.930,110.2,24.9,0.91,3.990,110.9 +26.1,0.91,3.690,133.4,25.8,0.91,3.680,133.0 +26.9,0.91,4.030,114.0,26.6,0.91,4.080,114.4 +27.5,0.91,4.470,135.0,27.3,0.91,4.500,135.2 +27.7,0.91,5.050,131.4,27.5,0.91,5.120,131.8 +27.6,0.91,5.470,140.5,27.4,0.91,5.500,140.5 +27.1,0.91,7.220,128.9,27.0,0.91,7.310,128.9 +26.6,0.91,8.800,133.6,26.4,0.91,9.070,133.6 +24.8,0.91,9.620,124.0,24.8,0.91,10.340,124.0 +23.5,0.91,10.680,124.9,23.6,0.91,11.540,124.8 +23.1,0.91,10.890,134.0,23.1,0.91,11.640,133.9 +22.4,0.91,10.840,139.8,22.5,0.91,11.630,139.7 +21.8,0.91,10.500,145.7,21.8,0.91,11.220,145.6 +20.9,0.91,11.610,151.4,20.9,0.91,12.400,151.0 +20.1,0.91,10.980,157.4,20.1,0.91,11.760,157.0 +19.8,0.91,11.680,167.2,19.8,0.91,12.290,166.9 +19.7,0.91,11.470,168.5,19.6,0.91,12.080,168.3 +19.5,0.91,12.460,172.0,19.5,0.91,12.970,172.1 +19.6,0.91,11.830,175.6,19.5,0.91,12.720,175.1 +20.9,0.91,11.730,178.1,20.7,0.91,11.910,178.2 +22.4,0.91,11.600,178.7,22.2,0.91,11.740,178.8 +23.9,0.91,12.460,183.3,23.7,0.91,12.600,183.3 +25.5,0.91,9.660,191.3,25.2,0.91,9.800,191.4 +26.9,0.91,8.990,191.9,26.7,0.91,9.120,192.0 +28.3,0.91,8.380,194.4,28.0,0.91,8.500,194.5 +29.4,0.90,7.620,194.4,29.1,0.90,7.710,194.5 +29.9,0.90,8.050,187.9,29.7,0.90,8.090,188.2 +30.4,0.90,9.000,182.6,30.2,0.90,9.010,182.9 +30.9,0.90,8.640,172.3,30.7,0.90,8.740,173.0 +31.1,0.90,9.560,188.8,30.9,0.90,9.650,188.5 +30.8,0.90,9.890,176.2,30.6,0.90,10.120,176.3 +29.9,0.90,10.410,172.8,29.8,0.90,10.910,173.1 +29.2,0.90,11.210,181.2,29.2,0.90,11.890,182.4 +28.2,0.90,11.970,186.7,28.1,0.90,12.660,187.4 +27.4,0.90,14.970,191.5,27.3,0.90,15.640,191.6 +26.5,0.90,15.810,188.7,26.4,0.90,16.510,189.1 +25.7,0.90,15.400,184.0,25.7,0.90,16.090,184.2 +24.3,0.90,4.960,153.8,24.2,0.90,5.790,160.3 +23.8,0.90,11.120,171.1,23.8,0.90,11.840,173.3 +19.9,0.90,8.130,114.3,20.0,0.90,8.980,116.3 +21.5,0.90,8.250,146.7,21.5,0.90,9.040,149.4 +20.0,0.90,5.430,88.6,19.9,0.90,5.530,96.4 +20.5,0.90,4.880,134.4,20.6,0.90,6.030,147.2 +22.3,0.90,6.380,166.6,22.2,0.90,6.470,167.5 +24.2,0.90,9.630,185.9,24.0,0.90,9.750,186.1 +25.7,0.90,11.070,184.8,25.5,0.90,11.180,185.0 +27.9,0.90,11.700,189.4,27.6,0.90,11.830,189.6 +29.7,0.90,11.830,183.2,29.5,0.90,11.970,183.4 +31.2,0.90,12.070,182.1,30.9,0.90,12.170,182.3 +32.7,0.90,10.190,187.4,32.5,0.90,10.350,187.9 +33.5,0.90,9.910,190.8,33.3,0.90,10.020,191.0 +34.4,0.90,8.730,193.8,34.1,0.90,8.860,194.0 +34.6,0.90,8.850,186.2,34.3,0.90,8.990,186.3 +34.2,0.90,12.610,179.0,34.0,0.90,12.690,179.2 +33.7,0.90,15.970,184.7,33.5,0.90,16.330,184.9 +33.1,0.90,11.720,189.2,32.9,0.90,11.990,188.4 +31.1,0.90,15.770,186.4,31.0,0.90,16.360,186.4 +29.3,0.90,15.730,189.7,29.2,0.90,16.510,189.9 +28.1,0.90,16.880,188.2,28.0,0.90,17.610,188.5 +26.7,0.90,8.180,166.7,26.7,0.90,8.850,170.0 +25.7,0.90,10.500,170.4,25.7,0.90,11.300,172.1 +24.6,0.90,13.730,172.6,24.5,0.90,14.260,173.8 +24.0,0.90,14.640,184.3,24.0,0.90,15.210,185.3 +23.3,0.90,14.600,187.0,23.4,0.90,15.250,188.3 +22.9,0.90,15.440,183.9,22.9,0.90,16.060,185.1 +22.2,0.90,16.000,190.0,22.2,0.90,16.660,191.0 +21.9,0.90,9.950,196.3,21.7,0.90,10.870,196.4 +23.0,0.90,8.340,198.1,22.8,0.90,8.460,198.4 +24.3,0.90,5.370,180.6,24.1,0.90,5.490,180.9 +25.6,0.90,5.100,175.6,25.4,0.90,5.150,175.9 +27.2,0.90,5.780,173.8,27.0,0.90,5.860,174.3 +28.5,0.90,6.280,167.4,28.3,0.90,6.360,167.6 +29.5,0.90,3.970,138.1,29.3,0.90,3.980,138.7 +30.5,0.90,4.740,137.7,30.2,0.90,4.780,138.3 +31.3,0.90,4.570,127.0,31.1,0.90,4.620,127.4 +32.0,0.90,5.700,93.5,31.7,0.90,5.740,94.1 +32.0,0.90,8.530,118.0,31.8,0.90,8.670,118.5 +20.9,0.90,20.150,232.1,20.8,0.90,20.680,231.8 +20.9,0.90,11.150,191.1,20.9,0.90,10.250,191.1 +22.4,0.90,14.660,132.2,22.5,0.90,15.310,132.0 +25.6,0.90,6.280,101.1,25.8,0.90,6.520,99.2 +19.3,0.91,11.120,345.6,19.1,0.91,11.430,345.4 +18.3,0.91,6.790,27.4,18.2,0.91,7.000,26.4 +17.7,0.90,4.390,67.0,17.9,0.90,4.700,62.7 +20.9,0.90,3.630,57.4,21.6,0.90,3.730,49.2 +17.9,0.91,4.810,332.0,17.9,0.91,4.660,335.7 +18.7,0.91,6.370,302.5,18.6,0.91,6.670,306.3 +18.5,0.91,6.790,22.5,18.3,0.91,7.120,21.8 +17.7,0.91,5.710,32.6,17.5,0.91,5.820,32.5 +17.4,0.91,7.570,2.1,17.3,0.91,8.130,2.8 +16.8,0.91,5.340,35.1,16.7,0.91,5.390,35.3 +17.1,0.91,6.610,26.0,16.9,0.91,6.630,26.2 +17.5,0.91,6.930,22.6,17.3,0.91,6.990,22.7 +18.2,0.91,5.390,23.5,18.0,0.91,5.430,24.1 +20.4,0.91,6.110,30.6,20.2,0.91,6.160,30.6 +21.7,0.91,6.610,18.2,21.5,0.91,6.660,18.3 +22.7,0.91,6.310,23.6,22.4,0.91,6.350,23.8 +22.9,0.91,7.970,359.8,22.7,0.91,8.020,0.3 +23.7,0.91,5.250,11.5,23.4,0.91,5.280,11.4 +23.9,0.91,8.530,23.3,23.7,0.91,8.590,23.4 +23.8,0.91,7.020,20.3,23.6,0.91,7.080,20.2 +23.5,0.91,8.190,47.9,23.3,0.91,8.280,48.0 +23.1,0.91,8.350,39.1,22.9,0.91,8.500,39.5 +22.3,0.91,7.680,45.1,22.1,0.91,8.020,45.7 +21.5,0.91,7.740,44.4,21.3,0.91,8.130,45.2 +20.8,0.91,8.340,61.4,20.6,0.91,8.810,61.7 +20.0,0.91,7.540,66.8,19.8,0.91,8.130,67.5 +19.2,0.91,7.430,75.9,19.1,0.91,8.070,77.2 +18.8,0.91,7.550,85.4,18.6,0.91,8.000,85.8 +18.2,0.91,8.930,77.5,18.2,0.91,9.450,77.7 +17.7,0.91,8.950,78.0,17.7,0.91,9.540,78.5 +17.7,0.91,7.850,79.0,17.7,0.91,8.160,78.6 +17.7,0.91,7.140,100.4,17.8,0.91,7.230,98.1 +16.9,0.91,5.180,85.8,16.9,0.91,5.670,85.8 +17.1,0.91,3.900,136.1,17.0,0.91,4.150,134.1 +18.4,0.91,4.160,150.6,18.2,0.91,4.190,150.3 +19.7,0.91,3.420,135.7,19.5,0.91,3.460,135.5 +21.0,0.91,3.920,135.9,20.8,0.91,3.950,135.8 +22.1,0.91,4.010,132.6,21.9,0.91,4.040,132.7 +23.4,0.91,3.550,125.7,23.2,0.91,3.570,125.9 +24.6,0.91,3.920,120.9,24.4,0.91,3.970,120.7 +25.5,0.91,3.720,119.0,25.3,0.91,3.750,119.1 +26.1,0.91,4.110,118.3,25.9,0.91,4.130,118.3 +26.5,0.91,4.790,122.3,26.3,0.91,4.830,122.6 +26.7,0.91,6.370,137.9,26.5,0.91,6.440,137.9 +26.6,0.91,6.970,137.6,26.4,0.91,7.040,137.6 +25.9,0.91,8.090,134.9,25.7,0.91,8.350,134.7 +24.7,0.90,9.320,131.8,24.6,0.90,9.790,132.2 +23.6,0.91,10.580,133.3,23.5,0.91,11.270,132.9 +22.5,0.91,11.060,136.8,22.5,0.91,11.840,136.5 +21.9,0.91,11.770,142.6,21.9,0.91,12.530,142.7 +21.3,0.91,12.580,157.0,21.4,0.91,13.490,156.3 +21.0,0.91,13.350,162.4,21.1,0.91,14.070,162.2 +20.8,0.91,14.210,169.2,20.8,0.91,14.880,169.4 +20.4,0.91,11.970,175.7,20.4,0.91,12.440,176.3 +19.8,0.91,12.140,178.2,19.8,0.91,12.590,178.6 +19.6,0.91,12.160,178.5,19.6,0.91,12.610,178.9 +18.8,0.90,13.230,179.5,18.9,0.90,13.690,179.9 +18.4,0.90,11.510,183.4,18.3,0.90,12.030,183.5 +19.4,0.91,11.020,184.2,19.3,0.91,11.150,184.2 +20.7,0.91,9.460,182.0,20.5,0.91,9.570,182.0 +22.4,0.91,8.620,187.8,22.2,0.91,8.720,187.9 +23.7,0.90,8.600,190.4,23.5,0.90,8.720,190.5 +25.1,0.90,8.600,187.0,24.9,0.90,8.720,187.1 +26.1,0.90,8.540,183.7,25.8,0.90,8.630,183.8 +26.9,0.90,8.510,186.6,26.7,0.90,8.600,186.1 +28.1,0.90,8.130,183.1,27.8,0.90,8.230,183.1 +28.5,0.90,9.380,171.5,28.3,0.90,9.490,171.9 +28.8,0.90,8.950,170.5,28.6,0.90,9.070,170.9 +29.0,0.90,9.570,179.4,28.8,0.90,9.650,179.4 +28.7,0.90,10.350,162.5,28.6,0.90,10.590,162.8 +27.6,0.90,12.060,160.7,27.4,0.90,12.580,161.1 +26.7,0.90,12.780,160.7,26.6,0.90,13.340,161.0 +26.0,0.90,11.650,174.3,25.9,0.90,12.100,174.5 +25.2,0.90,11.770,177.8,25.1,0.90,12.420,177.9 +24.1,0.90,6.290,144.5,23.9,0.90,6.830,147.6 +15.6,0.90,6.150,337.5,15.6,0.90,6.840,334.4 +17.1,0.91,4.360,239.8,16.9,0.91,4.380,240.4 +17.7,0.90,4.520,204.3,18.0,0.90,4.610,208.8 +19.8,0.91,5.290,304.7,20.2,0.91,5.780,309.0 +18.2,0.91,4.160,96.9,18.3,0.91,3.220,87.6 +18.3,0.91,5.810,195.8,18.7,0.91,5.340,200.0 +20.2,0.91,4.620,202.6,20.3,0.91,4.610,203.5 +20.1,0.91,2.280,223.5,20.0,0.91,2.260,224.0 +22.0,0.91,1.440,107.3,21.8,0.91,1.450,108.1 +23.7,0.91,2.690,116.1,23.5,0.91,2.700,116.0 +25.0,0.91,2.910,108.6,24.8,0.91,2.930,108.1 +26.2,0.91,3.380,66.8,26.0,0.91,3.380,67.2 +27.0,0.91,4.180,76.0,26.8,0.91,4.180,76.1 +27.8,0.91,4.560,88.8,27.6,0.91,4.600,88.8 +28.4,0.91,4.470,79.0,28.2,0.91,4.500,79.5 +28.8,0.91,4.510,78.2,28.6,0.91,4.540,79.7 +28.9,0.91,5.010,66.2,28.8,0.91,5.020,67.4 +29.0,0.91,4.580,102.1,28.8,0.91,4.580,102.0 +28.5,0.91,5.040,103.2,28.3,0.91,5.000,103.4 +27.9,0.91,6.050,97.1,27.8,0.91,5.950,97.8 +27.3,0.91,8.860,128.2,27.2,0.91,9.030,127.6 +26.7,0.91,8.180,136.4,26.5,0.91,7.840,137.1 +25.8,0.91,8.450,152.6,25.7,0.91,8.270,154.3 +25.5,0.91,10.130,161.8,25.4,0.91,10.200,163.0 +24.6,0.91,10.520,161.1,24.6,0.91,10.760,161.5 +23.2,0.91,10.760,194.8,23.1,0.91,11.300,195.8 +22.9,0.91,12.240,190.3,23.0,0.91,12.790,189.8 +22.2,0.91,12.860,195.2,22.3,0.91,13.500,194.9 +21.1,0.91,12.990,202.4,21.2,0.91,13.730,202.9 +20.9,0.91,12.370,206.4,21.1,0.91,12.940,205.8 +20.6,0.91,9.880,214.9,20.5,0.91,10.950,214.2 +21.9,0.91,8.830,210.0,21.7,0.91,8.960,209.8 +23.2,0.91,9.390,207.3,23.0,0.91,9.500,207.3 +25.0,0.91,8.140,209.7,24.8,0.91,8.230,209.7 +26.7,0.91,7.310,202.9,26.4,0.91,7.400,202.9 +27.9,0.91,7.970,194.2,27.7,0.91,8.060,194.2 +29.0,0.91,7.950,188.8,28.8,0.91,8.040,188.9 +30.0,0.91,6.930,185.7,29.8,0.91,7.010,185.3 +30.7,0.91,6.530,175.7,30.5,0.91,6.590,175.9 +31.1,0.91,6.630,177.3,30.9,0.91,6.730,176.1 +31.1,0.91,6.280,175.6,30.9,0.91,6.370,175.1 +31.2,0.91,7.380,159.9,30.9,0.91,7.470,159.9 +30.6,0.91,8.310,148.3,30.5,0.91,8.660,148.9 +30.1,0.91,10.240,153.7,30.0,0.91,10.590,152.8 +29.2,0.91,11.880,150.3,29.2,0.91,12.420,151.1 +28.1,0.91,12.660,157.0,28.1,0.91,13.430,157.5 +27.3,0.91,13.300,166.4,27.2,0.91,14.330,167.2 +26.5,0.91,12.720,174.8,26.5,0.91,13.450,176.5 +25.8,0.91,12.360,183.8,25.9,0.91,13.110,185.9 +25.3,0.91,11.280,192.7,25.3,0.91,11.910,195.0 +24.6,0.91,11.090,196.1,24.6,0.91,11.900,197.8 +23.9,0.91,11.040,194.6,23.8,0.91,11.750,196.2 +23.1,0.91,11.020,199.0,23.0,0.91,11.740,201.9 +22.3,0.91,11.560,196.3,22.3,0.91,12.270,198.6 +21.9,0.91,8.150,204.3,21.7,0.91,8.530,205.0 +22.5,0.91,8.790,196.6,22.3,0.91,8.870,196.8 +23.6,0.91,8.320,200.1,23.4,0.91,8.420,200.2 +25.0,0.91,7.250,197.2,24.8,0.91,7.330,197.3 +26.1,0.91,8.470,189.8,25.9,0.91,8.570,189.9 +27.3,0.91,7.730,186.3,27.1,0.91,7.820,186.3 +28.3,0.91,6.930,185.8,28.1,0.91,7.010,185.6 +29.1,0.91,8.490,189.9,28.9,0.91,8.550,188.8 +29.7,0.91,7.130,183.2,29.5,0.91,7.170,183.5 +30.2,0.91,8.310,172.0,30.0,0.91,8.360,172.2 +30.4,0.91,8.250,170.0,30.3,0.91,8.310,170.1 +30.6,0.91,8.810,177.6,30.4,0.91,8.850,177.7 +30.3,0.91,8.800,171.5,30.1,0.91,9.010,171.6 +29.7,0.91,10.720,170.9,29.6,0.91,11.160,171.2 +28.7,0.91,11.540,177.0,28.7,0.91,12.400,178.0 +27.5,0.91,12.030,182.5,27.4,0.91,12.870,183.0 +26.4,0.91,11.840,186.4,26.4,0.91,12.640,186.5 +25.6,0.91,12.380,189.0,25.5,0.91,13.210,189.2 +24.9,0.91,13.170,192.7,24.8,0.91,14.040,192.9 +24.1,0.91,13.440,192.4,24.0,0.91,14.270,192.6 +23.4,0.91,13.680,194.0,23.4,0.91,14.590,194.3 +22.4,0.91,12.430,195.5,22.4,0.91,13.280,195.9 +21.5,0.91,12.540,195.9,21.4,0.91,13.380,196.5 +20.7,0.91,12.460,197.0,20.6,0.91,13.250,197.6 +20.6,0.91,11.670,199.1,20.5,0.91,11.930,199.4 +21.3,0.91,10.310,200.8,21.1,0.91,10.430,201.0 +22.6,0.91,9.980,197.8,22.4,0.91,10.080,197.9 +24.1,0.91,8.930,195.6,23.9,0.91,9.030,195.7 +25.6,0.91,7.850,191.9,25.4,0.91,7.940,192.0 +26.9,0.91,7.840,185.3,26.7,0.91,7.920,185.3 +28.2,0.91,7.320,184.6,28.0,0.91,7.390,184.2 +29.2,0.91,7.530,172.5,28.9,0.91,7.620,172.6 +29.9,0.91,7.030,176.2,29.6,0.91,7.120,175.5 +30.3,0.91,8.650,169.1,30.0,0.91,8.730,169.3 +30.5,0.91,9.240,167.7,30.3,0.91,9.310,167.6 +30.6,0.91,7.890,173.2,30.4,0.91,8.030,172.9 +30.2,0.91,9.540,168.6,30.0,0.91,9.710,168.7 +29.4,0.91,10.280,163.8,29.4,0.91,10.760,164.7 +28.4,0.91,12.480,162.7,28.4,0.91,13.140,163.3 +27.0,0.91,12.320,169.4,27.1,0.91,13.180,170.1 +26.2,0.91,13.450,179.6,26.2,0.91,14.280,180.2 +25.5,0.91,12.680,184.8,25.6,0.91,13.520,185.4 +24.9,0.91,13.310,188.1,25.0,0.91,14.260,188.8 +24.5,0.91,12.200,189.3,24.5,0.91,12.890,189.7 +23.8,0.91,12.390,188.5,23.8,0.91,12.990,189.2 +22.7,0.91,12.660,193.4,22.5,0.91,13.580,194.6 +21.8,0.91,11.600,198.3,21.7,0.91,12.380,199.5 +21.2,0.91,10.620,199.4,21.2,0.91,11.260,200.3 +21.0,0.91,8.660,198.7,20.9,0.91,9.350,199.0 +21.9,0.91,8.100,196.6,21.7,0.91,8.180,196.8 +23.2,0.91,7.310,199.8,23.0,0.91,7.370,200.0 +24.9,0.91,5.110,185.1,24.7,0.91,5.160,185.2 +26.2,0.91,5.710,180.6,26.0,0.91,5.760,180.5 +27.3,0.91,5.890,163.4,27.1,0.91,5.920,163.6 +28.5,0.91,5.710,163.4,28.2,0.91,5.780,163.3 +29.4,0.91,6.390,164.3,29.2,0.91,6.480,164.1 +30.0,0.91,6.080,153.2,29.8,0.91,6.170,153.2 +30.5,0.91,7.420,151.3,30.3,0.91,7.520,151.3 +30.5,0.91,7.490,153.4,30.3,0.91,7.580,153.4 +30.5,0.91,7.640,154.9,30.3,0.91,7.770,154.8 +30.1,0.91,8.700,151.1,29.9,0.91,8.990,151.4 +29.7,0.91,8.880,150.6,29.5,0.91,9.250,151.7 +28.7,0.91,11.340,157.5,28.7,0.91,12.000,157.7 +27.6,0.91,12.010,157.1,27.6,0.91,12.900,157.3 +27.2,0.91,12.350,172.2,27.1,0.91,12.720,173.4 +26.2,0.91,12.640,179.6,26.2,0.91,13.170,180.8 +25.4,0.91,10.950,184.5,25.4,0.91,11.530,185.2 +24.8,0.91,11.190,187.1,24.8,0.91,11.610,188.1 +24.2,0.91,11.890,186.8,24.1,0.91,12.290,187.1 +23.3,0.91,10.480,178.8,23.2,0.91,11.030,179.4 +22.5,0.91,10.850,183.8,22.4,0.91,11.330,185.4 +21.9,0.91,10.490,187.3,21.9,0.91,10.900,188.6 +21.3,0.91,7.730,189.5,21.1,0.91,7.980,189.6 +22.1,0.91,8.000,183.7,21.9,0.91,8.080,183.6 +23.1,0.91,7.550,183.1,22.9,0.91,7.620,183.0 +24.2,0.91,6.710,177.8,24.0,0.91,6.800,177.9 +25.4,0.91,7.610,174.4,25.2,0.91,7.690,174.5 +26.5,0.91,7.560,167.5,26.3,0.91,7.670,167.5 +27.8,0.91,8.180,163.8,27.6,0.91,8.300,163.9 +28.7,0.91,9.350,168.5,28.4,0.91,9.470,168.4 +28.9,0.91,11.170,173.8,28.7,0.91,11.270,173.7 +25.9,0.91,7.960,245.3,25.7,0.91,8.030,244.7 +25.7,0.91,7.270,266.1,25.6,0.91,7.190,265.9 +25.1,0.91,1.560,311.2,25.2,0.91,1.190,300.9 +24.7,0.91,3.790,55.4,24.5,0.91,3.720,55.6 +24.1,0.91,1.160,97.9,24.3,0.91,1.210,116.1 +26.5,0.91,6.290,145.4,26.7,0.91,7.110,151.9 +26.1,0.91,5.640,143.2,26.3,0.91,6.280,158.2 +26.6,0.91,8.290,162.3,26.4,0.91,8.430,160.5 +26.3,0.91,11.870,165.7,26.2,0.91,12.030,166.2 +25.3,0.91,10.360,174.8,25.3,0.91,11.100,175.8 +24.8,0.91,11.890,175.9,24.8,0.91,12.360,176.2 +24.2,0.91,11.170,179.7,24.1,0.91,11.610,179.6 +23.5,0.91,11.130,181.7,23.5,0.91,11.820,183.3 +23.1,0.91,10.530,193.5,23.1,0.91,11.050,194.3 +22.7,0.91,8.120,201.4,22.6,0.91,8.280,202.5 +22.1,0.91,7.220,192.0,22.2,0.91,7.680,192.3 +22.7,0.91,6.720,189.0,22.5,0.91,6.780,189.2 +23.3,0.91,7.150,198.8,23.1,0.91,7.220,198.8 +24.1,0.91,7.410,190.0,23.9,0.91,7.500,190.0 +23.7,0.91,7.820,189.4,23.5,0.91,7.900,189.3 +23.8,0.91,7.640,189.7,23.6,0.91,7.700,189.9 +24.9,0.91,8.310,182.3,24.7,0.91,8.410,182.6 +26.0,0.91,7.220,176.4,25.7,0.91,7.330,176.6 +27.0,0.91,7.420,185.5,26.8,0.91,7.510,185.2 +28.1,0.91,7.280,167.0,27.9,0.91,7.370,167.7 +28.7,0.91,7.420,183.8,28.4,0.91,7.520,183.5 +28.5,0.91,8.400,187.6,28.3,0.91,8.510,187.2 +28.2,0.91,9.450,181.7,28.0,0.91,9.520,181.7 +27.5,0.91,9.130,191.3,27.4,0.91,9.570,191.2 +27.1,0.91,8.390,185.8,27.0,0.91,8.860,185.5 +26.8,0.91,8.790,182.2,26.7,0.91,9.220,182.7 +26.5,0.91,8.360,171.2,26.5,0.91,8.710,172.8 +26.1,0.91,8.810,184.3,25.9,0.91,8.980,185.4 +25.3,0.91,8.640,174.0,25.3,0.91,8.920,176.4 +25.3,0.91,10.190,190.5,25.2,0.91,10.450,191.2 +24.4,0.91,10.020,195.3,24.3,0.91,10.550,196.4 +23.9,0.91,10.810,199.3,23.8,0.91,11.500,200.3 +22.8,0.91,11.200,196.4,22.7,0.91,11.930,197.8 +22.2,0.91,11.350,199.7,22.2,0.91,12.120,200.3 +22.1,0.91,9.250,200.3,22.0,0.91,9.600,200.6 +23.0,0.91,9.020,198.2,22.8,0.91,9.110,198.4 +24.2,0.91,9.010,201.7,24.0,0.91,9.090,201.8 +25.8,0.91,7.990,200.1,25.6,0.91,8.060,200.2 +27.3,0.91,5.480,193.9,27.1,0.91,5.530,194.0 +28.4,0.91,4.660,184.3,28.2,0.91,4.690,184.4 +29.3,0.91,4.900,189.7,29.0,0.91,4.920,189.5 +30.1,0.91,6.070,165.5,29.9,0.91,6.130,166.2 +30.8,0.91,5.520,182.2,30.6,0.91,5.550,182.0 +31.5,0.91,6.930,172.5,31.2,0.91,7.010,172.9 +31.8,0.91,6.720,172.0,31.6,0.91,6.840,171.6 +31.6,0.90,8.610,184.3,31.4,0.90,8.700,184.3 +31.7,0.90,7.710,183.8,31.5,0.90,7.830,183.7 +31.3,0.91,9.080,185.5,31.1,0.91,9.400,186.0 +20.8,0.91,18.330,302.1,20.6,0.91,18.760,302.4 +21.0,0.91,15.140,283.8,20.9,0.91,15.810,284.0 +25.3,0.91,8.030,306.4,25.9,0.91,8.280,305.7 +28.0,0.91,9.630,201.0,27.9,0.91,9.950,201.3 +26.3,0.91,3.370,220.8,26.1,0.91,3.660,222.3 +24.6,0.91,7.630,217.8,24.6,0.91,7.840,218.4 +23.4,0.91,8.110,200.1,23.5,0.91,8.530,202.0 +23.0,0.91,9.940,198.7,23.2,0.91,10.400,199.3 +21.9,0.91,11.900,192.1,22.0,0.91,12.340,192.3 +22.0,0.91,11.320,195.3,22.0,0.91,11.760,196.1 +22.2,0.91,6.010,197.7,22.1,0.91,6.970,199.1 +23.6,0.91,7.220,207.7,23.4,0.91,7.300,207.9 +24.9,0.91,7.310,202.1,24.7,0.91,7.370,202.4 +26.2,0.91,7.070,196.3,25.9,0.91,7.130,196.5 +27.7,0.91,5.550,198.6,27.5,0.91,5.600,198.7 +29.0,0.91,5.090,184.3,28.8,0.91,5.130,184.4 +30.1,0.91,4.520,173.9,29.9,0.91,4.530,174.2 +31.2,0.91,4.260,183.2,31.0,0.91,4.300,183.0 +31.5,0.91,5.560,171.9,31.3,0.91,5.560,172.2 +32.2,0.90,4.830,190.4,32.0,0.90,4.830,189.2 +32.5,0.90,6.600,163.4,32.2,0.90,6.670,163.8 +32.4,0.90,8.360,157.6,32.2,0.90,8.480,157.7 +32.3,0.90,8.980,161.2,32.1,0.90,9.260,161.3 +25.0,0.90,12.130,28.6,24.9,0.90,12.430,29.9 +18.6,0.91,8.780,333.3,18.4,0.91,9.010,333.4 +18.3,0.91,6.760,51.1,18.3,0.91,7.410,49.1 +19.0,0.91,9.050,132.0,18.8,0.91,9.310,132.0 +19.2,0.91,5.560,101.8,19.0,0.91,6.040,103.2 +20.8,0.91,3.510,132.5,21.1,0.91,3.780,129.5 +20.1,0.91,3.490,41.7,19.9,0.91,3.540,43.0 +19.7,0.91,2.240,22.9,19.6,0.91,2.350,24.8 +19.6,0.91,0.850,359.4,19.4,0.91,1.020,10.1 +19.7,0.91,2.120,42.0,19.5,0.91,2.150,45.3 +19.8,0.91,3.610,50.3,19.8,0.91,3.930,50.0 +19.4,0.91,3.920,75.6,19.2,0.91,4.010,75.7 +20.0,0.91,2.470,69.4,19.8,0.91,2.490,71.0 +21.6,0.91,1.430,80.3,21.4,0.91,1.440,81.7 +23.2,0.91,2.420,54.9,23.0,0.91,2.400,55.8 +24.2,0.91,2.110,47.4,24.0,0.91,2.090,48.4 +25.3,0.91,2.520,47.6,25.1,0.91,2.500,47.6 +26.3,0.91,2.530,49.1,26.1,0.91,2.500,49.4 +27.1,0.91,2.850,53.6,26.8,0.91,2.830,54.1 +27.7,0.91,2.470,52.2,27.5,0.91,2.450,52.5 +28.3,0.91,2.150,56.5,28.1,0.91,2.110,56.9 +28.5,0.91,3.000,55.8,28.3,0.91,2.970,56.7 +28.6,0.91,3.140,76.8,28.4,0.91,3.140,76.8 +28.3,0.91,4.090,79.1,28.1,0.91,4.140,79.7 +28.0,0.91,5.260,100.1,27.9,0.91,5.170,101.3 +27.0,0.91,8.530,94.7,26.9,0.91,9.040,94.4 +26.2,0.91,8.850,104.1,26.1,0.91,9.530,104.8 +25.1,0.91,8.890,122.5,24.9,0.91,9.500,123.8 +24.8,0.91,9.450,141.8,24.8,0.91,10.140,142.0 +23.9,0.91,10.860,157.2,23.8,0.91,11.600,157.0 +23.3,0.91,8.870,155.5,23.3,0.91,9.620,156.3 +22.6,0.91,7.240,26.1,22.7,0.91,7.110,23.7 +19.4,0.91,8.100,69.5,19.2,0.91,8.590,70.4 +19.8,0.91,8.450,113.4,19.7,0.91,8.940,113.2 +20.5,0.91,11.530,126.8,20.4,0.91,12.000,127.0 +21.5,0.91,10.220,149.0,21.4,0.91,10.550,149.0 +22.1,0.91,9.880,173.0,21.9,0.91,9.980,173.2 +23.6,0.91,9.650,185.5,23.4,0.91,9.730,185.5 +25.3,0.91,7.540,188.9,25.1,0.91,7.610,189.0 +26.8,0.91,2.380,228.9,26.6,0.91,2.410,229.0 +18.8,0.91,11.900,13.7,18.6,0.91,12.090,13.9 +20.6,0.91,9.790,64.3,20.4,0.91,9.820,64.3 +23.8,0.91,7.360,84.5,23.6,0.91,7.370,84.7 +26.3,0.91,7.250,105.5,26.1,0.91,7.330,105.9 +27.8,0.91,7.740,125.6,27.6,0.91,7.840,126.0 +29.2,0.91,8.640,145.9,29.0,0.91,8.770,146.1 +29.7,0.90,9.550,148.3,29.5,0.90,9.710,148.5 +29.2,0.90,10.180,148.1,29.1,0.90,10.610,148.2 +29.0,0.90,11.120,147.7,29.0,0.90,11.980,147.1 +28.0,0.91,11.790,142.7,28.0,0.91,12.590,143.3 +27.8,0.91,14.800,167.0,27.7,0.91,15.640,167.0 +27.0,0.91,14.520,173.9,27.0,0.91,15.350,174.2 +26.6,0.91,15.660,181.1,26.5,0.91,16.460,181.3 +25.9,0.91,5.000,307.1,25.9,0.91,4.410,290.9 +22.7,0.91,2.230,289.9,23.1,0.91,1.860,223.0 +24.6,0.91,7.830,178.5,24.6,0.91,8.480,179.1 +24.1,0.91,12.760,189.5,24.0,0.91,13.280,190.9 +23.1,0.91,15.150,192.1,23.1,0.91,15.860,192.8 +22.3,0.91,15.810,193.3,22.2,0.91,16.520,193.7 +21.9,0.91,15.110,193.4,21.7,0.91,15.590,193.7 +22.5,0.91,12.870,194.4,22.3,0.91,13.050,194.5 +23.6,0.91,12.230,190.1,23.4,0.91,12.380,190.2 +25.2,0.91,11.860,189.2,25.0,0.91,12.010,189.3 +26.8,0.91,10.800,183.7,26.6,0.91,10.940,183.8 +28.3,0.91,10.740,181.9,28.1,0.91,10.900,182.0 +29.6,0.91,10.300,176.9,29.4,0.91,10.440,177.1 +30.5,0.91,9.970,172.3,30.3,0.91,10.120,172.6 +31.3,0.91,10.260,172.0,31.0,0.91,10.400,172.3 +31.4,0.91,12.300,168.6,31.2,0.91,12.450,168.8 +31.6,0.91,11.850,170.0,31.4,0.91,12.020,170.1 +31.4,0.91,11.920,173.6,31.2,0.91,12.150,173.5 +30.8,0.91,12.670,175.7,30.6,0.91,13.070,175.6 +29.6,0.91,12.980,169.3,29.4,0.91,13.760,169.7 +28.4,0.91,12.640,175.9,28.3,0.91,13.400,176.0 +27.8,0.91,12.000,177.6,27.7,0.91,12.720,177.7 +26.8,0.91,12.430,177.6,26.8,0.91,13.280,177.6 +26.2,0.91,13.780,181.0,26.2,0.91,14.600,181.2 +25.2,0.91,12.340,184.7,25.2,0.91,13.410,184.4 +24.3,0.91,14.900,190.2,24.2,0.91,15.630,190.5 +23.5,0.91,13.410,192.0,23.4,0.91,14.130,192.4 +22.8,0.91,12.900,191.1,22.7,0.91,13.570,191.6 +22.1,0.91,13.490,191.5,21.9,0.91,14.140,191.9 +21.4,0.91,14.060,191.5,21.3,0.91,14.730,192.0 +21.3,0.91,12.520,190.5,21.2,0.91,12.810,190.7 +21.9,0.91,11.830,187.0,21.7,0.91,11.970,187.1 +22.9,0.91,11.940,189.5,22.7,0.91,12.090,189.5 +24.4,0.91,10.630,191.6,24.2,0.91,10.760,191.6 +25.9,0.91,10.760,189.8,25.6,0.91,10.910,189.8 +27.0,0.91,10.500,185.9,26.8,0.91,10.650,186.0 +28.3,0.91,11.130,185.4,28.0,0.91,11.240,185.4 +29.5,0.91,9.740,189.2,29.3,0.91,9.870,188.8 +29.9,0.91,12.340,180.5,29.7,0.91,12.400,180.6 +30.6,0.91,11.740,188.3,30.4,0.91,11.860,187.6 +30.8,0.91,11.670,174.2,30.5,0.91,11.820,174.5 +30.7,0.91,12.350,179.7,30.5,0.91,12.410,179.7 +30.3,0.91,10.820,165.2,30.1,0.91,11.160,165.4 +29.4,0.91,11.700,166.2,29.3,0.91,12.470,166.7 +28.5,0.91,12.390,170.2,28.4,0.91,13.320,170.3 +27.4,0.91,13.610,176.2,27.4,0.91,14.410,176.0 +26.4,0.91,13.630,174.5,26.3,0.91,14.440,174.8 +25.8,0.91,14.930,177.8,25.8,0.91,15.790,178.0 +25.3,0.91,13.600,178.8,25.3,0.91,14.720,178.9 +24.2,0.91,14.950,183.1,24.1,0.91,15.770,183.5 +23.2,0.91,16.240,183.6,23.1,0.91,17.020,183.9 +22.3,0.91,15.320,185.7,22.2,0.91,16.040,186.0 +21.4,0.91,15.790,184.8,21.3,0.91,16.470,185.2 +21.0,0.91,15.130,187.6,20.9,0.91,15.730,188.0 +20.8,0.91,14.200,193.1,20.7,0.91,14.500,193.2 +21.6,0.91,13.510,189.2,21.4,0.91,13.710,189.2 +22.8,0.91,12.120,187.4,22.6,0.91,12.290,187.5 +24.5,0.91,12.130,189.2,24.3,0.91,12.300,189.2 +26.1,0.91,11.940,184.0,25.9,0.91,12.100,184.1 +27.4,0.91,11.850,184.0,27.2,0.91,12.020,184.0 +28.8,0.91,10.860,182.7,28.5,0.91,11.030,182.6 +29.8,0.91,11.170,179.2,29.6,0.91,11.340,179.4 +30.4,0.91,11.720,177.5,30.2,0.91,11.810,177.5 +31.0,0.91,11.580,172.3,30.8,0.91,11.740,172.5 +31.2,0.90,13.150,172.2,30.9,0.90,13.290,172.2 +31.1,0.90,13.510,176.6,30.9,0.90,13.590,176.6 +30.7,0.90,11.890,176.5,30.5,0.90,12.450,176.9 +29.4,0.90,13.240,176.7,29.3,0.90,14.090,176.4 +28.5,0.90,14.520,180.0,28.4,0.90,15.270,180.0 +27.7,0.91,14.500,178.9,27.6,0.91,15.320,179.0 +26.7,0.91,15.060,178.8,26.6,0.91,15.810,179.0 +26.1,0.91,12.840,175.5,26.1,0.91,13.690,175.9 +24.9,0.91,17.130,177.6,24.8,0.91,17.850,177.9 +23.7,0.91,18.130,181.3,23.6,0.91,18.860,181.5 +22.9,0.91,16.060,185.5,22.8,0.91,16.710,185.5 +22.4,0.91,16.900,187.6,22.3,0.91,17.520,187.8 +21.9,0.91,16.720,189.0,21.8,0.91,17.300,189.4 +21.3,0.91,17.050,191.4,21.2,0.91,17.610,191.7 +21.4,0.91,15.500,195.0,21.3,0.91,15.850,195.1 +22.0,0.91,15.470,190.5,21.8,0.91,15.650,190.6 +23.3,0.91,15.390,191.0,23.1,0.91,15.550,191.1 +24.8,0.91,15.030,187.3,24.6,0.91,15.210,187.3 +26.4,0.91,11.410,185.2,26.1,0.91,11.590,185.2 +28.1,0.91,10.400,175.1,27.8,0.91,10.540,175.3 +29.5,0.91,10.330,174.9,29.3,0.91,10.470,175.1 +30.4,0.91,11.560,172.0,30.2,0.91,11.750,172.2 +31.2,0.90,10.850,175.0,30.9,0.90,11.020,174.8 +31.3,0.90,12.900,175.8,31.1,0.90,12.990,175.8 +31.4,0.90,12.720,171.7,31.2,0.90,12.930,172.0 +31.4,0.90,11.280,171.4,31.3,0.90,11.450,171.4 +30.8,0.90,10.480,160.2,30.6,0.90,10.890,160.4 +29.7,0.91,11.590,158.2,29.6,0.91,12.680,159.1 +28.6,0.91,13.340,165.0,28.6,0.91,14.210,165.4 +27.4,0.91,14.200,166.6,27.3,0.91,14.970,166.9 +26.4,0.91,14.740,172.5,26.3,0.91,15.490,172.6 +25.8,0.91,14.360,177.4,25.7,0.91,15.030,177.4 +24.6,0.91,16.420,179.7,24.4,0.91,17.100,179.8 +23.6,0.91,14.380,181.3,23.5,0.91,15.060,181.4 +22.7,0.91,14.760,183.6,22.6,0.91,15.430,183.8 +22.1,0.91,14.540,184.2,21.9,0.91,15.180,184.3 +21.3,0.91,12.390,183.1,21.2,0.91,13.040,183.4 +20.6,0.91,14.000,187.2,20.5,0.91,14.630,187.5 +20.6,0.91,12.110,190.0,20.4,0.91,12.380,190.1 +21.3,0.91,10.990,192.7,21.1,0.91,11.140,192.8 +22.5,0.91,10.390,188.0,22.3,0.91,10.520,188.1 +23.9,0.91,11.300,182.8,23.7,0.91,11.440,182.8 +25.5,0.91,11.520,181.8,25.2,0.91,11.680,181.9 +27.1,0.91,11.650,180.4,26.9,0.91,11.800,180.2 +28.6,0.91,10.830,177.3,28.3,0.91,11.010,177.4 +29.3,0.91,11.230,178.8,29.1,0.91,11.270,178.9 +30.1,0.91,10.800,177.4,29.9,0.91,10.830,177.5 +30.6,0.91,11.040,174.2,30.4,0.91,11.090,174.3 +30.8,0.91,11.710,172.5,30.6,0.91,11.790,172.5 +30.9,0.91,10.470,174.1,30.7,0.91,10.640,174.6 +30.5,0.91,11.120,174.9,30.3,0.91,11.390,174.6 +29.6,0.90,11.570,171.6,29.6,0.90,12.230,171.8 +28.9,0.91,12.640,176.6,28.9,0.91,13.410,176.9 +28.2,0.91,12.560,180.2,28.1,0.91,13.340,180.4 +27.3,0.91,13.690,180.4,27.2,0.91,14.520,180.7 +25.8,0.91,13.180,172.2,25.7,0.91,13.790,172.3 +24.8,0.91,17.160,176.0,24.7,0.91,17.850,176.2 +23.8,0.91,16.090,181.8,23.7,0.91,16.690,181.8 +22.9,0.91,16.630,185.9,22.8,0.91,17.290,186.1 +22.2,0.91,16.120,188.7,22.0,0.91,16.730,188.9 +21.5,0.91,17.210,191.3,21.4,0.91,17.820,191.5 +21.0,0.91,17.480,193.6,20.8,0.91,18.110,193.8 +20.9,0.91,16.630,198.6,20.8,0.91,17.000,198.7 +21.6,0.91,16.280,197.4,21.4,0.91,16.460,197.5 +23.1,0.91,16.040,196.7,22.9,0.91,16.210,196.7 +24.8,0.91,14.840,197.4,24.6,0.91,14.990,197.5 +26.8,0.91,13.270,197.7,26.6,0.91,13.430,197.7 +28.7,0.91,11.740,197.0,28.5,0.91,11.880,197.0 +30.2,0.91,10.650,194.5,29.9,0.91,10.780,194.6 +31.4,0.91,10.370,187.5,31.2,0.91,10.490,187.6 +32.4,0.91,9.610,185.8,32.2,0.91,9.720,186.0 +33.0,0.90,9.200,180.6,32.8,0.90,9.320,181.1 +33.4,0.90,9.170,184.2,33.2,0.90,9.310,184.2 +33.4,0.90,9.390,184.1,33.2,0.90,9.540,183.9 +33.1,0.90,10.460,185.1,32.9,0.90,10.680,184.7 +32.0,0.90,12.030,177.5,31.9,0.90,12.680,177.7 +30.9,0.90,13.990,183.0,30.9,0.90,14.740,183.5 +29.9,0.90,14.310,189.4,29.8,0.90,14.990,189.8 +29.0,0.90,16.150,191.4,29.0,0.90,16.930,191.7 +28.2,0.90,16.790,192.5,28.2,0.90,17.540,192.7 +27.6,0.90,16.550,195.8,27.5,0.90,17.310,196.1 +26.6,0.90,16.590,195.6,26.5,0.90,17.340,196.1 +25.5,0.90,16.390,192.5,25.4,0.90,17.080,192.8 +24.3,0.90,16.680,194.0,24.1,0.90,17.350,194.5 +23.5,0.90,16.190,202.6,23.4,0.90,16.890,203.1 +22.9,0.90,16.610,204.2,22.8,0.90,17.320,204.9 +23.1,0.90,15.080,203.7,23.0,0.90,15.590,204.0 +23.7,0.90,14.350,197.7,23.6,0.90,14.480,197.9 +25.4,0.91,13.100,203.3,25.2,0.91,13.190,203.4 +27.4,0.91,12.550,196.1,27.2,0.91,12.630,196.3 +29.1,0.91,11.620,192.5,28.9,0.91,11.720,192.7 +30.7,0.91,10.110,191.3,30.4,0.91,10.200,191.5 +32.2,0.91,8.450,187.1,32.0,0.91,8.530,187.3 +33.4,0.91,7.690,180.5,33.2,0.91,7.760,180.7 +34.3,0.91,6.880,168.7,34.1,0.91,6.940,169.6 +34.8,0.91,7.390,170.6,34.6,0.91,7.430,170.6 +35.3,0.90,7.590,169.1,35.1,0.90,7.690,169.1 +35.3,0.90,8.890,170.6,35.1,0.90,9.020,170.7 +34.7,0.90,9.190,166.6,34.5,0.90,9.570,166.7 +33.8,0.90,11.100,160.1,33.7,0.90,11.550,160.3 +32.8,0.90,12.060,167.2,32.7,0.90,12.750,167.8 +31.6,0.91,13.980,175.6,31.5,0.91,14.740,176.1 +30.3,0.91,13.970,183.9,30.2,0.91,14.700,184.4 +29.3,0.91,14.640,186.9,29.3,0.91,15.390,187.5 +28.4,0.91,14.940,189.6,28.4,0.91,15.680,190.2 +27.6,0.91,15.270,191.6,27.6,0.91,16.060,192.1 +26.6,0.91,15.340,189.2,26.5,0.91,16.040,189.8 +25.1,0.91,15.900,193.9,25.1,0.91,16.570,194.6 +24.1,0.91,15.320,198.2,24.0,0.91,16.050,198.9 +23.2,0.91,13.400,198.0,23.2,0.91,14.120,198.9 +23.2,0.91,10.840,205.3,23.0,0.91,11.160,205.6 +24.1,0.91,9.860,202.7,23.9,0.91,9.960,203.0 +25.7,0.91,8.760,199.2,25.5,0.91,8.840,199.5 +27.7,0.91,6.920,198.2,27.4,0.91,6.980,198.3 +29.2,0.91,6.320,186.7,29.0,0.91,6.370,186.9 +31.0,0.91,5.110,183.2,30.8,0.91,5.140,183.3 +32.6,0.91,4.220,171.3,32.4,0.91,4.260,171.2 +33.7,0.91,4.610,166.0,33.5,0.91,4.650,165.7 +34.4,0.91,5.120,161.6,34.2,0.91,5.170,161.5 +34.9,0.91,5.420,161.6,34.6,0.91,5.480,161.5 +34.9,0.91,6.100,145.7,34.7,0.91,6.130,146.0 +35.0,0.91,5.360,152.6,34.7,0.91,5.450,152.7 +34.6,0.91,6.150,154.0,34.4,0.91,6.380,154.1 +34.0,0.91,7.990,160.7,33.9,0.91,8.060,160.8 +32.9,0.91,10.140,159.1,32.8,0.91,10.700,159.2 +32.1,0.91,11.130,164.8,32.0,0.91,11.470,165.6 +31.4,0.91,12.940,169.7,31.4,0.91,13.500,170.2 +30.5,0.91,12.500,181.6,30.6,0.91,12.980,183.8 +29.5,0.91,11.920,202.9,29.6,0.91,12.330,206.3 +28.8,0.91,12.310,209.8,28.8,0.91,12.880,210.7 +28.0,0.91,12.540,210.6,28.0,0.91,13.330,211.2 +27.3,0.91,11.660,219.1,27.4,0.91,12.230,219.3 +26.9,0.91,11.890,229.2,27.0,0.91,12.380,229.6 +26.4,0.91,10.590,236.8,26.4,0.91,11.080,237.1 +25.6,0.91,9.430,245.5,25.5,0.91,9.740,245.7 +26.9,0.91,6.270,247.3,26.7,0.91,6.340,247.9 +28.5,0.91,5.960,258.1,28.3,0.91,6.000,258.4 +30.0,0.91,5.250,294.6,29.8,0.91,5.290,294.5 +30.9,0.91,5.470,312.0,30.7,0.91,5.520,312.0 +32.3,0.91,3.850,329.2,32.1,0.91,3.890,329.4 +33.5,0.91,3.840,9.1,33.3,0.91,3.870,8.6 +34.5,0.91,3.450,4.5,34.3,0.91,3.500,4.8 +35.4,0.91,5.790,26.8,35.2,0.91,5.820,26.4 +35.9,0.91,5.750,23.1,35.7,0.91,5.820,23.3 +35.8,0.91,7.490,39.4,35.6,0.91,7.560,39.3 +35.4,0.91,7.910,51.6,35.2,0.91,7.980,51.6 +34.9,0.91,7.330,50.4,34.7,0.91,7.550,50.6 +34.1,0.91,7.560,51.7,34.0,0.91,7.780,52.7 +32.1,0.91,8.640,76.5,31.9,0.91,9.590,77.5 +30.8,0.91,9.300,81.8,30.8,0.91,10.310,81.3 +30.4,0.91,9.440,83.2,30.5,0.91,10.050,82.8 +30.2,0.91,9.590,81.9,30.2,0.91,9.830,82.0 +29.5,0.91,9.970,82.5,29.6,0.91,10.630,82.5 +29.1,0.91,9.830,93.9,29.1,0.91,10.140,94.1 +28.3,0.91,10.330,104.4,28.3,0.91,10.810,103.7 +28.4,0.91,9.540,113.8,28.3,0.91,9.160,114.3 +28.0,0.91,11.010,120.1,28.0,0.91,10.970,120.6 +27.8,0.91,9.040,128.5,27.8,0.91,8.450,129.6 +26.8,0.91,7.490,138.9,27.0,0.91,8.020,137.4 +27.0,0.91,3.550,59.1,26.9,0.91,3.540,60.9 +27.6,0.91,8.710,13.0,27.4,0.91,8.730,13.2 +27.8,0.91,6.150,34.3,27.6,0.91,6.200,34.2 +28.9,0.91,4.870,31.3,28.7,0.91,4.900,31.1 +29.8,0.91,3.250,41.9,29.6,0.91,3.260,41.3 +31.0,0.91,1.710,42.0,30.8,0.91,1.710,41.4 +32.0,0.91,1.500,66.0,31.8,0.91,1.480,64.0 +33.2,0.91,1.360,62.9,33.0,0.91,1.370,60.5 +33.6,0.90,1.630,67.8,33.4,0.90,1.600,65.9 +34.1,0.90,1.800,59.9,33.9,0.90,1.820,59.0 +34.0,0.90,2.500,63.1,33.8,0.90,2.480,62.8 +33.8,0.90,3.420,65.3,33.6,0.90,3.400,65.7 +33.5,0.90,4.360,61.0,33.3,0.90,4.180,60.1 +32.5,0.90,7.580,71.7,32.5,0.90,7.860,71.7 +30.0,0.90,10.490,118.9,29.9,0.90,11.020,118.6 +29.2,0.90,9.150,117.2,29.2,0.90,9.900,117.2 +28.4,0.90,8.880,117.0,28.4,0.90,9.660,116.4 +25.9,0.91,15.190,297.2,26.0,0.91,14.780,298.9 +21.3,0.91,7.540,333.2,21.2,0.91,8.020,332.6 +22.0,0.91,3.730,125.9,22.0,0.91,3.390,123.5 +20.7,0.91,9.110,94.3,20.8,0.91,9.420,92.9 +20.8,0.91,5.550,137.6,20.8,0.91,6.090,136.4 +20.8,0.91,1.880,193.6,20.8,0.91,1.970,177.4 +22.0,0.91,0.980,121.5,22.2,0.91,1.480,128.3 +23.6,0.91,1.230,131.7,23.4,0.91,1.240,133.1 +24.7,0.91,3.020,72.9,24.5,0.91,3.020,73.3 +25.5,0.91,3.360,48.3,25.3,0.91,3.360,48.6 +26.4,0.91,3.360,45.4,26.2,0.91,3.360,45.4 +27.5,0.91,3.230,39.7,27.3,0.91,3.240,39.0 +28.6,0.91,3.690,8.9,28.4,0.91,3.690,9.2 +29.6,0.91,4.690,41.6,29.4,0.91,4.730,41.3 +30.1,0.91,5.590,40.1,29.9,0.91,5.620,39.9 +30.4,0.91,6.500,48.1,30.2,0.91,6.550,47.9 +30.4,0.91,5.980,54.8,30.2,0.91,6.020,54.7 +30.3,0.91,6.380,57.7,30.1,0.91,6.430,57.8 +29.9,0.91,6.950,64.5,29.7,0.91,7.080,64.5 +29.1,0.91,8.430,63.0,29.0,0.91,8.700,64.0 +27.8,0.91,8.460,76.3,27.7,0.91,9.090,76.0 +26.4,0.91,7.800,92.3,26.3,0.91,8.570,91.4 +25.8,0.91,10.030,88.5,25.7,0.91,10.460,87.5 +24.6,0.91,7.410,94.4,24.4,0.91,8.380,93.9 +24.1,0.91,8.410,83.1,23.8,0.91,9.340,83.8 +23.1,0.91,6.620,86.1,23.0,0.91,7.640,89.4 +22.6,0.91,6.960,88.9,22.6,0.91,7.770,90.3 +21.9,0.91,5.930,83.8,21.8,0.91,6.690,85.8 +21.2,0.91,5.610,78.1,21.1,0.91,6.280,82.9 +21.1,0.91,6.140,78.2,21.1,0.91,6.540,81.7 +20.5,0.91,4.380,64.3,20.4,0.91,4.910,67.8 +21.1,0.91,4.330,50.7,20.9,0.91,4.380,51.2 +21.9,0.91,4.550,49.3,21.7,0.91,4.590,49.3 +22.7,0.91,5.390,36.1,22.5,0.91,5.450,35.9 +23.7,0.91,6.320,27.3,23.5,0.91,6.390,27.2 +24.4,0.91,6.590,26.4,24.1,0.91,6.650,26.2 +25.0,0.91,7.400,26.0,24.8,0.91,7.480,25.8 +25.4,0.91,8.290,27.8,25.2,0.91,8.340,27.6 +25.9,0.91,7.980,24.3,25.7,0.91,8.090,24.1 +25.9,0.91,8.690,32.5,25.7,0.91,8.770,32.4 +26.0,0.91,8.850,31.8,25.8,0.91,8.950,31.9 +25.9,0.91,7.710,47.2,25.7,0.91,7.800,47.1 +25.4,0.91,7.580,50.8,25.2,0.91,7.710,50.7 +24.8,0.91,8.430,57.5,24.6,0.91,8.880,57.5 +23.8,0.91,7.350,74.8,23.7,0.91,7.990,74.7 +23.0,0.91,6.600,86.0,22.9,0.91,7.300,85.9 +22.2,0.91,5.800,90.7,22.1,0.91,6.700,90.1 +21.9,0.91,6.810,94.6,21.9,0.91,7.730,93.8 +21.4,0.91,6.240,87.9,21.4,0.91,6.860,86.9 +21.1,0.91,5.980,89.0,20.9,0.91,6.110,86.8 +20.4,0.91,4.290,81.9,20.4,0.91,4.660,82.1 +20.0,0.91,4.020,77.4,20.1,0.91,4.430,78.1 +19.7,0.91,3.690,64.2,19.8,0.91,4.120,66.1 +19.4,0.91,3.240,52.4,19.5,0.91,3.620,55.1 +19.2,0.91,3.000,60.1,19.3,0.91,3.380,62.0 +19.9,0.91,2.590,49.3,19.7,0.91,2.620,51.0 +21.3,0.91,3.650,46.1,21.1,0.91,3.690,46.3 +22.2,0.91,4.360,43.4,22.0,0.91,4.390,43.2 +23.1,0.91,4.810,37.4,22.8,0.91,4.850,37.1 +23.9,0.91,5.350,31.3,23.6,0.91,5.390,31.1 +24.5,0.91,5.820,33.7,24.3,0.91,5.870,33.5 +25.4,0.91,5.240,29.2,25.1,0.91,5.280,29.4 +26.0,0.91,5.300,42.2,25.7,0.91,5.360,41.9 +26.0,0.91,4.250,47.9,25.8,0.91,4.280,47.7 +26.1,0.91,4.780,52.0,25.9,0.91,4.770,51.8 +26.1,0.91,4.870,65.8,25.9,0.91,4.880,65.8 +25.9,0.91,4.690,71.5,25.8,0.91,4.760,71.4 +25.4,0.91,5.120,72.2,25.3,0.91,5.320,72.5 +24.6,0.91,8.810,101.7,24.5,0.91,9.050,102.5 +24.0,0.91,9.820,108.5,23.9,0.91,10.140,107.6 +22.8,0.91,10.320,119.9,22.7,0.91,11.100,120.1 +22.8,0.91,10.870,123.9,22.9,0.91,11.110,123.6 +22.4,0.91,10.860,133.1,22.5,0.91,10.970,133.0 +22.7,0.91,10.170,135.2,22.8,0.91,10.020,135.7 +22.4,0.91,10.090,140.3,22.5,0.91,9.950,140.9 +22.3,0.91,9.710,141.1,22.5,0.91,9.510,142.1 +22.3,0.91,9.700,146.0,22.4,0.91,9.580,146.4 +22.2,0.91,9.220,149.2,22.3,0.91,9.160,148.7 +20.2,0.91,8.670,165.2,20.4,0.91,9.410,163.5 +21.6,0.91,6.660,171.0,21.4,0.91,6.870,170.5 +23.4,0.91,6.480,162.8,23.2,0.91,6.540,162.6 +24.6,0.91,5.150,158.2,24.4,0.91,5.180,158.1 +25.4,0.91,3.560,140.5,25.2,0.91,3.580,140.4 +26.0,0.91,2.610,125.9,25.8,0.91,2.620,125.0 +26.5,0.91,2.860,64.5,26.3,0.91,2.840,64.1 +27.3,0.91,4.500,51.7,27.1,0.91,4.480,52.6 +27.6,0.91,5.160,137.6,27.4,0.91,5.120,137.0 +27.8,0.91,3.680,65.7,27.6,0.91,3.670,66.4 +27.9,0.91,3.670,102.8,27.7,0.91,3.680,103.2 +27.9,0.91,4.490,109.3,27.7,0.91,4.530,110.3 +27.6,0.91,4.700,113.9,27.4,0.91,4.810,114.9 +26.7,0.91,7.720,120.1,26.6,0.91,7.990,120.5 +25.6,0.91,10.420,123.6,25.5,0.91,11.020,123.4 +25.2,0.91,11.000,124.9,25.2,0.91,11.570,124.8 +24.6,0.91,11.360,132.8,24.7,0.91,12.040,132.3 +24.3,0.91,12.240,134.0,24.4,0.91,12.950,133.7 +23.9,0.91,11.960,143.0,24.0,0.91,12.590,143.2 +23.6,0.91,11.720,146.8,23.7,0.91,12.340,147.3 +22.8,0.91,12.570,159.1,22.9,0.91,13.150,160.3 +22.3,0.91,9.770,166.5,22.6,0.91,10.000,167.6 +22.2,0.91,8.780,171.3,22.6,0.91,8.810,174.5 +21.6,0.91,10.520,168.2,22.0,0.91,10.640,167.3 +20.9,0.91,9.360,180.0,21.3,0.91,10.010,181.7 +21.2,0.91,5.170,204.3,21.0,0.91,5.420,202.8 +22.8,0.91,6.030,186.9,22.7,0.91,6.100,187.3 +24.9,0.91,5.860,195.4,24.7,0.91,5.940,195.5 +26.1,0.91,5.620,199.8,25.9,0.91,5.670,200.0 +26.9,0.91,4.360,212.3,26.7,0.91,4.400,212.1 +27.6,0.91,5.370,200.8,27.4,0.91,5.410,200.5 +25.1,0.91,12.570,210.4,24.9,0.91,12.590,210.6 +25.9,0.91,10.790,200.8,25.7,0.91,10.890,200.7 +26.3,0.91,8.580,196.8,26.1,0.91,8.700,196.8 +27.4,0.91,6.200,202.5,27.2,0.91,6.280,202.1 +27.7,0.91,4.800,189.8,27.5,0.91,4.860,189.7 +27.2,0.91,6.420,186.4,27.0,0.91,6.500,186.3 +22.9,0.91,8.890,143.0,22.8,0.91,9.350,142.8 +22.5,0.91,10.290,147.6,22.4,0.91,10.850,147.2 +22.2,0.91,12.060,158.4,22.2,0.91,12.780,157.9 +21.1,0.91,12.520,163.3,21.0,0.91,13.330,162.7 +21.6,0.91,12.670,167.5,21.7,0.91,13.350,167.6 +21.7,0.91,13.640,166.3,21.8,0.91,14.260,166.4 +22.0,0.91,14.410,174.0,22.2,0.91,15.130,174.0 +21.8,0.91,15.080,178.2,22.0,0.91,15.900,178.5 +21.4,0.91,14.560,180.4,21.5,0.91,15.280,181.3 +20.9,0.91,13.320,183.7,20.9,0.91,13.900,185.3 +20.8,0.91,12.900,194.3,20.9,0.91,13.500,195.4 +20.5,0.91,12.720,195.5,20.3,0.91,12.980,195.6 +21.7,0.91,11.550,192.5,21.5,0.91,11.670,192.7 +23.1,0.91,11.270,193.9,22.9,0.91,11.370,194.1 +24.9,0.91,10.980,193.1,24.7,0.91,11.100,193.2 +26.5,0.91,10.230,190.9,26.3,0.91,10.350,190.9 +27.9,0.91,8.730,190.1,27.6,0.91,8.830,190.0 +29.1,0.91,7.530,182.4,28.9,0.91,7.620,182.5 +29.9,0.91,7.590,191.2,29.7,0.91,7.650,190.2 +30.7,0.91,6.560,183.6,30.4,0.91,6.650,183.1 +30.8,0.91,7.400,162.8,30.6,0.91,7.500,163.1 +30.8,0.90,8.520,162.3,30.5,0.90,8.590,162.6 +30.5,0.90,10.200,153.3,30.3,0.90,10.340,153.6 +30.1,0.90,8.530,157.6,30.0,0.90,8.840,157.6 +29.2,0.90,11.020,149.6,29.2,0.90,11.740,149.7 +28.2,0.91,13.240,155.4,28.2,0.91,13.970,155.3 +27.3,0.91,13.630,158.7,27.3,0.91,14.620,158.8 +26.5,0.91,13.730,163.1,26.5,0.91,14.610,163.2 +25.7,0.91,14.790,172.3,25.7,0.91,15.710,172.7 +25.2,0.91,14.310,182.4,25.3,0.91,15.220,183.0 +24.7,0.91,14.370,186.6,24.7,0.91,15.280,186.9 +24.2,0.91,14.200,186.9,24.3,0.91,15.000,187.5 +23.6,0.91,14.770,180.8,23.6,0.91,15.580,181.2 +22.1,0.91,14.740,188.3,22.1,0.91,15.470,189.3 +21.5,0.91,13.430,195.0,21.5,0.91,14.100,195.6 +21.2,0.91,12.330,185.6,21.0,0.91,12.920,185.8 +22.1,0.91,11.310,194.1,21.9,0.91,11.430,194.1 +23.7,0.91,10.980,183.1,23.5,0.91,11.120,183.2 +25.7,0.91,10.030,183.7,25.5,0.91,10.150,183.6 +26.9,0.91,9.170,180.3,26.7,0.91,9.260,180.4 +28.3,0.91,8.310,173.5,28.0,0.91,8.420,173.7 +29.0,0.91,8.830,165.9,28.8,0.91,8.870,165.8 +29.9,0.91,8.280,159.3,29.7,0.91,8.360,159.4 +30.3,0.91,8.060,158.6,30.1,0.91,8.160,158.6 +30.5,0.91,9.470,157.2,30.3,0.91,9.590,157.2 +30.5,0.90,8.450,154.6,30.3,0.90,8.560,154.6 +30.4,0.90,9.550,148.8,30.2,0.90,9.640,148.9 +30.0,0.90,9.410,151.1,29.8,0.90,9.700,151.4 +29.0,0.90,10.810,147.6,28.9,0.90,11.470,147.7 +28.7,0.91,11.670,152.1,28.7,0.91,12.280,152.5 +27.8,0.91,12.550,151.6,27.8,0.91,13.220,152.3 +27.2,0.91,13.080,154.5,27.3,0.91,13.880,154.9 +26.6,0.91,12.180,159.1,26.6,0.91,12.860,159.5 +25.6,0.91,12.180,159.8,25.6,0.91,12.840,160.5 +24.9,0.91,12.670,161.6,25.0,0.91,13.380,162.2 +24.2,0.91,12.270,165.2,24.2,0.91,13.020,166.5 +23.8,0.91,11.800,176.6,23.9,0.91,12.420,178.7 +23.1,0.91,11.540,186.8,23.2,0.91,12.070,189.5 +22.4,0.91,10.340,187.4,22.4,0.91,10.740,190.0 +21.9,0.91,8.290,187.8,21.8,0.91,8.950,188.1 +23.0,0.91,7.690,190.7,22.8,0.91,7.770,190.7 +24.4,0.91,7.350,184.5,24.2,0.91,7.420,184.5 +25.6,0.91,6.370,179.3,25.4,0.91,6.420,179.1 +27.0,0.91,5.270,161.3,26.8,0.91,5.310,161.2 +28.1,0.91,4.820,155.4,27.9,0.91,4.870,155.3 +29.0,0.91,5.840,143.6,28.8,0.91,5.890,143.7 +29.9,0.91,5.430,149.8,29.7,0.91,5.490,149.7 +30.1,0.91,5.510,139.4,29.8,0.91,5.560,139.4 +30.0,0.91,6.210,152.1,29.8,0.91,6.270,152.1 +30.0,0.91,7.400,120.6,29.8,0.91,7.470,121.0 +30.3,0.91,7.250,133.2,30.1,0.91,7.410,133.5 +30.1,0.91,7.950,136.2,29.9,0.91,8.090,136.4 +29.6,0.91,6.860,122.8,29.4,0.91,7.150,122.9 +28.4,0.91,7.380,125.2,28.3,0.91,7.850,126.4 +27.6,0.91,7.710,140.3,27.5,0.91,8.200,139.9 +27.3,0.91,8.910,160.4,27.2,0.91,9.530,161.7 +26.2,0.91,10.550,162.4,26.0,0.91,11.270,163.0 +25.4,0.91,10.570,169.3,25.3,0.91,11.060,170.0 +24.8,0.91,10.910,176.8,24.7,0.91,11.420,177.6 +24.2,0.91,10.080,179.3,24.1,0.91,10.570,180.4 +23.8,0.91,10.270,187.0,23.7,0.91,10.700,188.3 +23.1,0.91,10.600,185.5,23.0,0.91,11.040,186.7 +22.6,0.91,9.780,189.6,22.5,0.91,10.260,191.3 +22.5,0.91,8.610,196.7,22.3,0.91,8.720,197.0 +23.4,0.91,7.340,199.4,23.2,0.91,7.400,199.6 +24.7,0.91,6.690,194.8,24.5,0.91,6.750,194.9 +26.0,0.91,5.400,194.0,25.8,0.91,5.440,194.1 +27.2,0.91,4.810,187.7,26.9,0.91,4.840,187.7 +28.2,0.91,5.040,182.1,28.0,0.91,5.070,181.9 +29.3,0.91,4.330,169.1,29.1,0.91,4.360,169.6 +29.9,0.91,4.700,158.5,29.6,0.91,4.720,158.6 +30.6,0.91,5.950,154.7,30.4,0.91,5.980,154.8 +31.1,0.91,5.210,158.2,30.9,0.91,5.300,158.0 +31.0,0.91,6.060,149.1,30.8,0.91,6.090,149.1 +30.9,0.91,6.870,151.4,30.7,0.91,6.930,151.4 +30.6,0.91,7.640,157.3,30.4,0.91,7.790,157.3 +29.9,0.91,9.120,160.8,29.8,0.91,9.360,160.7 +29.3,0.91,9.650,158.9,29.2,0.91,10.160,158.7 +28.3,0.91,12.010,163.1,28.1,0.91,12.700,163.6 +27.0,0.91,11.370,181.7,26.8,0.91,11.900,181.9 +26.2,0.91,12.410,187.7,26.1,0.91,13.170,187.9 +25.4,0.91,10.670,196.3,25.2,0.91,11.270,196.5 +24.6,0.91,10.430,198.5,24.4,0.91,10.920,198.8 +23.8,0.91,11.370,193.5,23.7,0.91,11.750,193.7 +23.1,0.91,12.760,195.6,23.0,0.91,13.260,196.1 +22.6,0.91,12.250,200.8,22.4,0.91,12.770,201.2 +22.1,0.91,11.280,198.5,22.0,0.91,11.810,199.0 +22.2,0.91,11.300,204.0,22.0,0.91,11.480,204.2 +23.0,0.91,10.640,204.8,22.8,0.91,10.760,204.9 +24.3,0.91,9.370,207.1,24.0,0.91,9.480,207.2 +25.5,0.91,9.320,204.3,25.3,0.91,9.420,204.4 +26.8,0.91,7.400,197.0,26.6,0.91,7.480,197.1 +28.0,0.91,7.390,189.0,27.8,0.91,7.460,189.1 +29.1,0.91,7.430,190.1,28.9,0.91,7.510,190.1 +30.1,0.91,7.340,186.2,29.9,0.91,7.430,186.3 +30.6,0.91,7.060,188.5,30.4,0.91,7.130,188.8 +31.4,0.91,7.070,190.2,31.2,0.91,7.180,190.0 +31.5,0.91,9.080,179.8,31.3,0.91,9.090,180.0 +31.7,0.91,7.660,180.3,31.4,0.91,7.760,179.6 +31.4,0.91,8.960,177.3,31.2,0.91,9.120,178.0 +30.7,0.91,9.170,170.5,30.6,0.91,9.470,172.2 +30.0,0.91,9.930,174.3,29.9,0.91,10.510,174.4 +29.1,0.91,10.040,178.3,29.1,0.91,10.670,179.2 +28.2,0.91,10.710,187.5,28.1,0.91,11.920,188.2 +27.4,0.91,11.310,189.1,27.4,0.91,12.270,189.5 +26.8,0.91,12.010,194.2,26.7,0.91,12.990,194.9 +26.2,0.91,10.480,196.2,26.2,0.91,11.240,196.8 +25.6,0.91,11.390,199.5,25.5,0.91,12.270,199.9 +25.0,0.91,9.420,198.3,24.9,0.91,10.000,199.1 +24.3,0.91,9.160,201.3,24.2,0.91,9.760,202.5 +23.5,0.91,10.240,198.9,23.4,0.91,10.710,200.4 +23.2,0.91,9.390,201.6,23.0,0.91,9.560,202.0 +24.0,0.91,8.380,210.3,23.8,0.91,8.460,210.4 +25.2,0.91,7.800,208.4,25.0,0.91,7.870,208.5 +26.7,0.91,6.510,205.8,26.5,0.91,6.570,205.9 +28.1,0.91,5.690,200.4,27.8,0.91,5.740,200.6 +29.2,0.91,5.610,194.6,28.9,0.91,5.660,194.8 +30.2,0.91,4.920,186.2,29.9,0.91,4.960,186.2 +30.8,0.91,5.520,199.3,30.6,0.91,5.540,198.6 +31.7,0.91,4.350,190.6,31.4,0.91,4.400,188.6 +32.0,0.91,5.440,184.4,31.8,0.91,5.460,184.2 +32.2,0.91,5.580,182.1,32.0,0.91,5.580,181.8 +32.5,0.91,5.740,171.1,32.3,0.91,5.820,171.1 +32.2,0.91,6.080,161.3,32.0,0.91,6.170,161.5 +31.8,0.91,8.010,155.9,31.7,0.91,8.300,155.7 +31.5,0.91,8.490,156.3,31.4,0.91,8.690,156.0 +30.5,0.91,10.640,161.9,30.5,0.91,11.190,162.6 +29.8,0.91,12.060,167.7,29.8,0.91,12.860,168.0 +29.0,0.91,12.490,174.2,29.0,0.91,13.150,175.4 +28.5,0.91,11.440,195.8,28.5,0.91,11.870,197.9 +27.8,0.91,11.540,201.4,27.8,0.91,12.030,202.8 +27.2,0.91,11.660,208.4,27.2,0.91,12.430,209.4 +26.4,0.91,12.440,208.2,26.4,0.91,13.190,209.0 +25.8,0.91,12.300,208.8,25.8,0.91,13.060,210.0 +25.2,0.91,11.960,215.1,25.1,0.91,12.640,216.4 +24.9,0.91,9.900,217.4,24.8,0.91,10.390,218.1 +25.9,0.91,8.320,218.3,25.7,0.91,8.380,218.4 +27.4,0.91,5.940,223.9,27.2,0.91,5.980,224.0 +29.0,0.91,4.400,208.1,28.8,0.91,4.430,208.0 +30.1,0.91,2.940,174.6,29.9,0.91,2.950,174.5 +31.2,0.91,3.230,142.5,30.9,0.91,3.260,142.4 +31.8,0.91,4.080,144.7,31.6,0.91,4.120,144.6 +32.5,0.91,4.430,139.1,32.3,0.91,4.480,139.0 +33.0,0.91,5.040,129.6,32.7,0.91,5.050,129.7 +33.3,0.91,4.630,149.3,33.1,0.91,4.670,148.9 +33.5,0.91,5.050,132.0,33.3,0.91,5.110,132.5 +33.4,0.91,5.740,125.5,33.2,0.91,5.830,125.8 +32.9,0.91,7.380,126.5,32.7,0.91,7.550,126.5 +31.8,0.91,7.440,114.7,31.7,0.91,7.770,115.7 +30.7,0.91,9.720,143.7,30.5,0.91,10.610,144.5 +29.4,0.91,10.290,137.6,29.3,0.91,11.020,137.2 +28.9,0.91,11.420,145.8,28.8,0.91,12.390,145.5 +28.4,0.91,11.590,157.4,28.4,0.91,12.220,158.9 +28.0,0.91,11.090,165.8,28.1,0.91,11.350,168.0 +27.2,0.91,11.120,177.8,27.2,0.91,11.490,180.3 +26.9,0.91,10.300,190.2,27.0,0.91,10.810,194.9 +26.5,0.91,9.810,201.2,26.5,0.91,10.580,204.7 +26.0,0.91,9.960,207.8,25.9,0.91,10.480,210.4 +25.4,0.91,9.730,206.8,25.3,0.91,10.230,208.2 +24.9,0.91,7.490,214.9,24.8,0.91,8.140,216.0 +25.8,0.91,7.270,214.9,25.6,0.91,7.310,215.0 +27.4,0.91,4.950,210.9,27.2,0.91,4.980,210.8 +28.7,0.91,4.360,187.9,28.5,0.91,4.380,187.8 +29.8,0.91,4.220,168.2,29.6,0.91,4.250,167.8 +30.6,0.91,4.850,151.0,30.4,0.91,4.870,151.0 +31.5,0.91,5.440,145.7,31.2,0.91,5.490,145.8 +32.1,0.91,5.980,149.5,31.8,0.91,6.040,149.4 +30.1,0.91,10.570,92.5,30.3,0.91,10.140,95.8 +31.7,0.91,5.860,70.0,31.5,0.91,5.810,70.9 +31.0,0.91,1.380,15.6,30.9,0.91,1.230,28.3 +30.7,0.91,5.600,149.0,30.5,0.91,5.830,149.2 +30.2,0.91,9.670,140.0,30.0,0.91,9.870,139.8 +29.6,0.91,8.280,133.5,29.5,0.91,8.750,134.2 +29.0,0.91,10.740,146.0,28.8,0.91,11.310,146.1 +28.3,0.91,10.340,156.7,28.3,0.91,10.920,156.8 +28.2,0.91,10.550,166.0,28.1,0.91,11.100,166.2 +27.4,0.91,10.850,168.6,27.3,0.91,11.450,168.6 +27.0,0.91,10.700,179.1,27.0,0.91,11.250,180.6 +27.2,0.91,10.680,197.5,27.3,0.91,11.140,200.8 +27.8,0.91,10.120,210.7,27.8,0.91,10.550,212.2 +27.4,0.91,9.130,221.5,27.4,0.91,9.550,221.7 +27.0,0.91,9.780,215.6,27.0,0.91,10.270,216.6 +26.7,0.91,9.420,218.7,26.7,0.91,9.850,219.4 +26.2,0.91,7.320,213.9,26.3,0.91,7.780,215.0 +27.0,0.91,6.290,217.1,26.9,0.91,6.330,217.3 +28.6,0.91,4.750,212.2,28.4,0.91,4.770,212.1 +29.7,0.91,4.240,197.5,29.4,0.91,4.270,197.2 +30.6,0.91,3.920,178.7,30.4,0.91,3.940,178.5 +31.4,0.91,4.610,165.6,31.2,0.91,4.630,165.4 +32.0,0.91,3.830,152.1,31.8,0.91,3.850,151.8 +32.8,0.91,5.000,138.5,32.5,0.91,5.000,138.8 +33.3,0.91,3.640,143.9,33.1,0.91,3.690,143.8 +33.5,0.91,3.740,123.6,33.2,0.91,3.790,124.6 +33.7,0.91,4.580,154.6,33.5,0.91,4.640,154.7 +33.5,0.91,3.140,128.3,33.3,0.91,3.180,128.8 +33.3,0.91,4.870,143.3,33.1,0.91,4.930,143.5 +32.9,0.91,5.270,177.7,32.8,0.91,5.210,176.8 +32.4,0.91,4.980,182.5,32.3,0.91,5.100,179.8 +29.1,0.91,11.000,145.1,29.0,0.91,11.730,144.3 +28.8,0.91,12.110,152.7,28.8,0.91,12.800,152.3 +28.3,0.91,12.180,149.7,28.2,0.91,12.860,149.1 +27.6,0.91,12.510,149.7,27.6,0.91,13.150,150.0 +27.2,0.91,11.340,156.3,27.2,0.91,12.160,156.1 +26.6,0.91,11.210,166.1,26.6,0.91,11.890,166.0 +26.5,0.91,8.460,198.4,26.7,0.91,8.090,203.0 +26.6,0.91,7.910,219.3,26.7,0.91,7.980,222.4 +26.5,0.91,6.720,226.6,26.4,0.91,6.910,228.8 +25.7,0.91,6.450,217.0,25.8,0.91,6.950,219.3 +26.7,0.91,5.570,218.8,26.5,0.91,5.620,219.3 +28.1,0.91,4.160,235.2,27.9,0.91,4.200,235.7 +29.5,0.91,2.780,244.3,29.3,0.91,2.800,244.8 +30.8,0.91,2.310,248.6,30.6,0.91,2.340,249.2 +31.8,0.91,1.760,5.3,31.5,0.91,1.730,4.8 +32.2,0.91,3.010,46.2,31.9,0.91,3.000,45.5 +30.7,0.90,12.460,63.3,30.4,0.90,12.490,63.6 +29.5,0.90,12.450,89.0,29.3,0.90,12.570,89.5 +27.0,0.91,13.950,84.5,26.8,0.91,14.080,84.8 +25.8,0.90,12.950,93.7,25.6,0.90,13.160,94.0 +25.1,0.91,11.810,101.4,24.9,0.91,12.000,101.7 +24.0,0.91,13.020,69.0,23.8,0.91,13.230,69.3 +19.1,0.91,14.490,66.3,18.9,0.91,14.720,66.6 +17.9,0.91,10.210,75.9,17.7,0.91,10.460,76.3 +17.4,0.91,6.500,77.2,17.2,0.91,6.760,77.9 +17.4,0.91,7.460,50.5,17.3,0.91,7.590,51.3 +17.2,0.91,8.060,73.5,17.0,0.91,8.250,73.7 +16.1,0.91,10.000,24.7,16.0,0.91,10.470,28.4 +16.5,0.91,9.160,64.5,16.4,0.91,9.740,65.7 +15.6,0.91,7.340,60.8,15.5,0.91,7.660,61.6 +16.1,0.91,6.920,64.4,16.0,0.91,7.070,64.7 +15.9,0.91,7.360,70.2,15.8,0.91,7.560,70.3 +16.0,0.91,6.010,66.0,15.8,0.91,6.220,67.0 +16.0,0.91,5.930,45.7,15.9,0.91,6.040,46.7 +15.8,0.91,5.880,71.3,15.7,0.91,6.170,71.4 +15.8,0.91,6.470,43.4,15.6,0.91,6.640,43.5 +15.2,0.91,6.490,38.6,15.1,0.91,6.640,38.8 +15.1,0.91,5.800,32.1,15.0,0.91,5.840,33.0 +15.8,0.91,6.390,46.1,15.7,0.91,6.390,46.7 +16.0,0.91,5.890,33.3,15.8,0.91,5.920,33.4 +16.2,0.91,6.060,45.0,16.1,0.91,6.130,44.9 +16.2,0.91,3.580,53.5,16.1,0.91,3.610,53.4 +16.2,0.91,4.520,60.2,16.1,0.91,4.590,62.3 +16.5,0.91,3.610,61.4,16.3,0.91,3.650,62.1 +16.6,0.91,2.520,75.9,16.5,0.91,2.810,79.0 +16.5,0.91,3.230,125.7,16.4,0.91,3.450,128.4 +16.6,0.91,3.320,130.2,16.5,0.91,3.360,131.2 +16.6,0.91,5.680,147.2,16.5,0.91,6.110,145.5 +16.8,0.91,5.330,135.0,16.6,0.91,5.570,134.9 +16.5,0.91,5.050,139.2,16.4,0.91,5.950,139.7 +16.9,0.91,5.100,135.9,16.8,0.91,5.810,138.0 +17.2,0.91,4.990,139.8,17.0,0.91,5.190,140.6 +17.3,0.91,3.110,144.6,17.1,0.91,3.690,146.1 +17.4,0.91,2.780,136.2,17.3,0.91,3.060,140.7 +17.4,0.91,2.850,127.3,17.3,0.91,3.120,124.1 +17.5,0.91,2.710,88.2,17.4,0.91,2.780,94.8 +17.6,0.91,3.800,135.0,17.5,0.91,4.150,139.2 +17.8,0.91,4.760,147.1,17.7,0.91,5.150,148.0 +17.9,0.91,4.330,161.1,17.8,0.91,4.800,163.7 +17.9,0.91,7.190,147.8,17.8,0.91,7.440,146.8 +18.2,0.91,3.230,140.0,18.0,0.91,3.380,139.6 +18.5,0.91,1.800,211.1,18.3,0.91,1.880,209.3 +18.8,0.91,1.310,202.6,18.6,0.91,1.430,198.8 +20.1,0.91,1.230,158.4,19.9,0.91,1.320,159.5 +19.3,0.91,4.490,70.6,19.2,0.91,4.460,70.1 +20.3,0.91,6.570,73.5,20.1,0.91,6.640,74.4 +19.8,0.91,4.940,99.4,19.6,0.91,4.950,100.2 +21.3,0.91,4.780,105.3,21.1,0.91,4.800,105.3 +21.4,0.91,6.220,133.2,21.2,0.91,6.320,133.4 +19.4,0.91,4.280,88.2,19.2,0.91,4.490,89.9 +19.1,0.91,5.360,76.8,19.0,0.91,5.700,79.8 +19.2,0.91,5.780,83.2,19.1,0.91,6.230,84.5 +19.1,0.91,4.220,79.3,19.0,0.91,4.670,83.7 +19.0,0.91,6.170,90.2,18.9,0.91,6.820,91.8 +19.1,0.91,6.200,96.5,19.0,0.91,6.660,97.2 +18.7,0.91,6.360,118.7,18.5,0.91,6.750,119.4 +19.3,0.91,8.480,124.0,19.3,0.91,8.990,123.0 +19.2,0.91,5.050,104.5,19.3,0.91,5.500,108.4 +18.9,0.91,5.950,87.8,18.8,0.91,6.090,88.8 +19.0,0.91,5.220,92.2,18.9,0.91,5.480,95.5 +18.8,0.91,5.520,78.3,18.7,0.91,5.650,78.7 +18.9,0.91,4.930,85.1,18.8,0.91,5.080,85.1 +18.8,0.91,5.340,80.0,18.7,0.91,5.610,82.7 +19.5,0.92,4.870,103.8,19.3,0.92,4.980,104.7 +20.3,0.92,5.100,89.3,20.2,0.92,5.170,89.9 +21.7,0.92,6.050,101.4,21.5,0.92,6.130,101.5 +21.6,0.91,5.820,73.6,21.4,0.91,5.910,73.7 +20.3,0.91,4.240,53.4,20.2,0.91,4.710,55.1 +21.0,0.91,5.490,108.7,20.9,0.91,6.150,109.5 +19.9,0.91,11.030,106.9,19.9,0.91,12.030,109.9 +20.9,0.91,5.380,120.9,20.7,0.91,5.460,121.4 +20.9,0.91,4.890,117.4,20.7,0.91,4.980,117.4 +21.9,0.91,4.980,87.0,21.7,0.91,5.080,88.0 +21.3,0.91,6.540,120.1,21.2,0.91,6.730,119.9 +20.7,0.91,6.770,109.1,20.6,0.91,7.150,108.5 +20.7,0.91,5.610,121.5,20.6,0.91,6.110,122.9 +20.7,0.91,6.390,144.6,20.7,0.91,6.860,144.9 +20.2,0.91,6.690,140.4,20.1,0.91,7.680,142.1 +20.3,0.91,5.750,149.2,20.3,0.91,6.270,148.3 +19.8,0.91,5.800,150.8,19.8,0.91,6.340,155.8 +19.5,0.91,6.710,147.3,19.4,0.91,7.080,149.0 +19.3,0.91,6.040,147.9,19.3,0.91,6.520,149.8 +19.8,0.91,6.590,175.4,19.9,0.91,7.020,176.6 +19.2,0.91,5.580,165.0,19.2,0.91,5.960,165.5 +19.3,0.91,6.220,163.3,19.4,0.91,6.590,162.9 +19.0,0.91,5.700,154.8,19.1,0.91,6.140,155.3 +18.6,0.91,4.070,151.8,18.6,0.91,5.120,152.3 +19.0,0.91,2.950,163.2,18.9,0.91,3.030,162.9 +21.7,0.91,4.640,154.5,21.5,0.91,4.700,154.3 +23.0,0.91,5.620,154.5,22.8,0.91,5.670,154.6 +23.7,0.91,4.870,141.9,23.5,0.91,4.920,142.0 +24.8,0.91,5.400,141.2,24.6,0.91,5.460,141.4 +25.6,0.91,6.130,141.8,25.4,0.91,6.200,142.0 +26.2,0.91,5.440,141.2,26.0,0.91,5.510,141.5 +26.7,0.91,5.380,147.3,26.5,0.91,5.450,147.4 +27.0,0.91,5.520,154.2,26.8,0.91,5.570,154.2 +26.9,0.91,5.450,166.7,26.7,0.91,5.550,166.7 +26.8,0.91,4.330,156.9,26.6,0.91,4.490,157.5 +24.4,0.91,6.140,228.5,24.3,0.91,6.250,226.3 +24.4,0.91,5.120,221.4,24.4,0.91,5.210,215.0 +24.2,0.91,5.240,213.6,24.1,0.91,5.340,209.1 +24.1,0.91,5.160,203.7,24.0,0.91,5.370,201.8 +24.0,0.91,5.820,193.3,23.9,0.91,6.090,192.4 +23.6,0.91,6.330,196.6,23.5,0.91,6.580,195.6 +22.9,0.91,7.040,191.6,22.8,0.91,7.280,192.0 +22.6,0.91,7.990,198.0,22.5,0.91,8.170,197.5 +22.4,0.91,7.580,203.9,22.4,0.91,7.930,204.3 +22.4,0.91,6.770,207.0,22.4,0.91,7.010,205.6 +21.9,0.91,7.240,206.0,22.0,0.91,7.480,206.4 +21.5,0.91,6.360,209.2,21.7,0.91,6.860,210.5 +21.9,0.91,4.620,215.9,21.8,0.91,4.660,216.5 +23.2,0.91,4.650,209.8,23.0,0.91,4.690,210.0 +24.2,0.91,4.190,228.6,23.9,0.91,4.210,228.6 +25.2,0.91,3.210,199.7,25.0,0.91,3.240,199.7 +26.1,0.91,4.210,182.9,25.9,0.91,4.230,183.0 +26.8,0.91,4.240,184.5,26.6,0.91,4.260,184.6 +27.7,0.91,3.710,187.8,27.4,0.91,3.740,187.8 +28.1,0.91,4.700,179.9,27.9,0.91,4.700,179.6 +28.4,0.91,3.800,177.1,28.2,0.91,3.860,176.0 +28.7,0.91,4.460,169.9,28.5,0.91,4.500,169.6 +28.6,0.91,5.730,154.8,28.4,0.91,5.800,155.2 +28.4,0.91,5.180,159.2,28.2,0.91,5.230,158.4 +28.3,0.91,5.710,161.5,28.1,0.91,5.730,162.6 +27.8,0.91,5.410,170.8,27.6,0.91,5.610,171.3 +27.7,0.91,6.970,143.0,27.6,0.91,7.530,144.5 +27.3,0.91,8.860,164.5,27.2,0.91,9.050,164.9 +26.4,0.91,9.560,170.3,26.4,0.91,9.900,171.7 +26.7,0.91,11.830,165.4,26.6,0.91,12.110,166.7 +24.9,0.91,10.560,167.4,24.9,0.91,10.830,168.2 +24.8,0.91,10.480,191.2,24.9,0.91,10.730,196.6 +24.3,0.91,9.260,208.3,24.3,0.91,9.580,211.4 +23.7,0.91,9.260,208.3,23.7,0.91,9.610,208.6 +23.2,0.91,9.080,204.8,23.2,0.91,9.460,204.8 +22.4,0.91,8.520,210.3,22.4,0.91,8.960,211.2 +22.5,0.91,7.770,211.7,22.4,0.91,7.860,212.0 +23.6,0.91,6.460,218.2,23.4,0.91,6.520,218.3 +24.8,0.91,5.340,219.8,24.6,0.91,5.390,219.8 +25.9,0.91,4.730,206.9,25.7,0.91,4.770,207.0 +27.0,0.91,4.880,183.8,26.8,0.91,4.930,184.0 +27.8,0.91,5.010,183.0,27.6,0.91,5.030,183.1 +28.4,0.91,5.080,180.5,28.2,0.91,5.120,180.2 +28.8,0.91,5.820,175.5,28.6,0.91,5.850,175.6 +29.3,0.91,5.650,160.4,29.1,0.91,5.720,160.5 +29.3,0.90,6.150,168.8,29.1,0.90,6.200,168.9 +29.3,0.90,6.130,167.5,29.1,0.90,6.230,167.3 +29.2,0.90,6.080,158.3,29.0,0.90,6.360,158.6 +29.1,0.90,8.400,152.7,29.0,0.90,8.320,152.6 +28.6,0.91,9.200,160.2,28.6,0.91,9.530,161.1 +28.4,0.91,9.470,157.7,28.3,0.91,9.800,158.1 +27.8,0.91,11.370,167.3,27.8,0.91,11.840,167.3 +26.3,0.91,6.220,213.5,26.2,0.91,6.510,220.8 +25.5,0.91,6.680,208.2,25.5,0.91,7.190,213.8 +24.8,0.91,7.760,198.5,24.9,0.91,7.950,203.2 +23.8,0.91,7.920,202.7,23.9,0.91,7.700,213.8 +23.5,0.91,6.840,227.8,23.5,0.91,7.180,229.5 +23.2,0.91,9.800,229.7,23.2,0.91,10.340,229.4 +22.1,0.91,10.250,230.5,22.0,0.91,10.910,231.2 +21.7,0.91,9.110,225.6,21.6,0.91,9.780,225.0 +22.5,0.91,8.780,213.0,22.4,0.91,8.860,212.9 +23.7,0.91,7.270,209.8,23.5,0.91,7.340,209.8 +24.8,0.91,6.300,207.2,24.6,0.91,6.360,207.2 +25.8,0.91,5.950,205.3,25.6,0.91,6.010,205.4 +26.8,0.91,6.820,202.8,26.6,0.91,6.890,203.0 +27.6,0.91,6.390,199.2,27.4,0.91,6.450,199.3 +28.4,0.91,4.770,186.2,28.1,0.91,4.820,186.2 +29.0,0.91,4.920,171.4,28.8,0.91,4.970,172.3 +29.5,0.91,5.550,162.4,29.3,0.91,5.550,163.1 +26.6,0.91,9.530,209.9,26.4,0.91,9.640,209.7 +27.3,0.90,8.000,192.6,27.1,0.90,8.110,192.8 +27.3,0.90,7.020,199.0,27.1,0.90,7.150,198.8 +27.0,0.91,6.010,207.1,26.9,0.91,6.140,206.8 +27.1,0.91,7.780,185.8,27.1,0.91,8.090,187.2 +26.9,0.91,8.240,184.9,26.8,0.91,8.490,187.1 +26.4,0.91,8.830,190.7,26.4,0.91,9.080,192.1 +25.9,0.91,10.290,189.6,25.9,0.91,10.730,190.5 +25.7,0.91,11.600,191.1,25.9,0.91,12.420,192.8 +25.7,0.91,12.000,198.0,25.9,0.91,12.820,198.8 +25.6,0.91,13.270,200.0,25.8,0.91,14.140,200.6 +25.2,0.91,13.070,202.1,25.4,0.91,14.060,202.7 +23.3,0.91,13.040,200.6,23.3,0.91,14.050,201.4 +22.3,0.91,13.460,200.7,22.3,0.91,14.560,202.1 +21.9,0.91,12.390,205.2,21.8,0.91,13.000,205.8 +22.3,0.91,11.010,204.8,22.1,0.91,11.180,205.0 +23.6,0.91,9.830,205.9,23.4,0.91,9.940,206.1 +24.8,0.91,9.480,202.5,24.6,0.91,9.580,202.6 +26.0,0.91,8.640,199.0,25.8,0.91,8.730,199.1 +27.2,0.91,7.670,191.8,27.0,0.91,7.750,191.9 +28.2,0.91,7.940,186.7,28.0,0.91,8.030,186.9 +29.0,0.91,8.210,180.7,28.8,0.91,8.300,181.0 +29.7,0.91,8.160,176.2,29.5,0.91,8.270,176.5 +30.3,0.91,7.450,174.1,30.1,0.91,7.550,174.6 +30.4,0.91,8.510,168.7,30.2,0.91,8.620,169.1 +30.5,0.91,8.630,171.1,30.3,0.91,8.810,171.3 +30.3,0.90,9.600,168.5,30.1,0.90,10.200,168.6 +29.9,0.91,11.120,165.2,29.9,0.91,11.670,165.3 +29.1,0.91,11.440,174.3,29.1,0.91,12.350,174.7 +28.8,0.91,12.540,186.0,28.9,0.91,13.480,187.0 +28.0,0.91,11.720,195.6,28.1,0.91,12.620,196.6 +28.2,0.91,12.910,202.8,28.2,0.91,13.830,202.7 +27.5,0.91,11.550,196.0,27.7,0.91,12.460,196.8 +25.4,0.91,15.740,189.1,25.3,0.91,16.680,189.0 +24.6,0.91,13.650,190.2,24.5,0.91,14.520,191.2 +23.8,0.91,13.170,195.2,23.7,0.91,13.950,196.2 +23.1,0.91,12.430,195.2,23.0,0.91,13.150,196.2 +22.6,0.91,12.870,193.9,22.5,0.91,13.630,195.3 +22.4,0.91,12.030,198.3,22.3,0.91,12.330,198.7 +23.1,0.91,11.010,201.3,22.9,0.91,11.150,201.5 +24.2,0.91,10.480,204.5,24.0,0.91,10.590,204.6 +25.8,0.91,9.790,197.3,25.6,0.91,9.890,197.4 +27.2,0.91,9.070,197.0,27.0,0.91,9.170,197.2 +28.4,0.91,8.160,191.3,28.2,0.91,8.250,191.4 +29.5,0.91,7.930,186.9,29.3,0.91,8.030,187.1 +30.4,0.91,7.650,188.8,30.2,0.91,7.750,188.9 +31.1,0.91,8.730,187.2,30.8,0.91,8.810,187.2 +31.6,0.91,8.340,171.7,31.4,0.91,8.410,172.2 +32.0,0.91,8.230,196.4,31.8,0.91,8.290,195.9 +32.1,0.90,8.760,181.2,31.9,0.90,8.880,181.5 +31.8,0.90,8.150,174.3,31.6,0.90,8.490,176.3 +31.2,0.90,10.230,179.4,31.2,0.90,11.260,179.8 +30.7,0.90,11.990,181.1,30.6,0.90,12.370,181.2 +29.2,0.91,11.580,186.6,29.2,0.91,12.710,186.4 +29.0,0.91,12.850,194.1,29.0,0.91,13.720,193.9 +28.6,0.91,12.740,203.7,28.6,0.91,13.120,203.9 +28.7,0.91,13.470,199.7,28.8,0.91,14.230,200.4 +27.9,0.91,13.690,201.7,28.0,0.91,14.380,202.4 +27.5,0.91,11.590,205.6,27.7,0.91,12.190,206.8 +26.7,0.91,11.780,207.6,26.8,0.91,12.370,207.9 +25.3,0.91,12.890,207.8,25.2,0.91,13.790,208.9 +24.4,0.91,11.460,206.8,24.4,0.91,12.250,208.9 +23.7,0.91,10.320,211.4,23.7,0.91,10.840,212.5 +24.3,0.91,6.520,211.3,24.1,0.91,6.570,211.8 +25.6,0.91,6.070,216.6,25.4,0.91,6.110,217.0 +27.1,0.91,3.730,205.1,26.9,0.91,3.750,205.4 +28.2,0.91,3.140,187.5,28.0,0.91,3.140,187.8 +29.2,0.91,3.280,169.8,29.0,0.91,3.280,169.8 +30.0,0.91,3.710,170.1,29.8,0.91,3.710,170.0 +30.7,0.91,4.050,161.9,30.5,0.91,4.080,162.2 +31.2,0.91,3.550,163.5,31.0,0.91,3.560,163.2 +31.8,0.91,4.620,153.7,31.6,0.91,4.660,154.1 +31.9,0.91,5.020,152.9,31.7,0.91,5.040,152.9 +31.9,0.91,4.400,151.2,31.7,0.91,4.440,151.3 +31.9,0.91,4.880,154.8,31.7,0.91,4.930,154.5 +31.6,0.91,6.480,145.2,31.5,0.91,6.480,144.9 +31.5,0.91,5.480,149.0,31.3,0.91,5.590,149.1 +31.0,0.91,7.690,146.0,30.9,0.91,7.530,146.0 +30.3,0.91,9.500,150.5,30.3,0.91,9.570,151.7 +29.8,0.91,9.750,164.8,29.8,0.91,10.040,166.0 +29.2,0.91,10.180,166.8,29.2,0.91,10.430,167.1 +28.5,0.91,8.950,180.1,28.5,0.91,8.880,182.4 +27.8,0.91,8.120,214.9,27.8,0.91,7.870,216.8 +27.7,0.91,7.730,216.7,27.8,0.91,7.840,218.2 +27.4,0.91,6.210,218.9,27.4,0.91,6.220,219.9 +27.1,0.91,5.210,213.6,27.3,0.91,5.340,214.3 +26.7,0.91,5.260,211.7,26.8,0.91,5.310,212.7 +26.4,0.91,4.120,214.1,26.4,0.91,4.420,214.8 +26.9,0.91,4.670,204.5,26.7,0.91,4.690,205.1 +28.2,0.91,3.460,215.7,28.0,0.91,3.470,216.0 +29.3,0.91,2.360,204.5,29.1,0.91,2.370,204.3 +30.0,0.91,3.310,161.6,29.8,0.91,3.310,161.6 +30.5,0.91,3.870,173.5,30.3,0.91,3.890,173.3 +30.8,0.91,4.370,175.6,30.6,0.91,4.370,175.6 +31.3,0.91,4.920,175.0,31.1,0.91,4.930,175.1 +31.6,0.91,5.660,175.9,31.4,0.91,5.670,175.8 +32.0,0.91,5.390,178.2,31.8,0.91,5.480,177.8 +31.9,0.91,5.750,163.7,31.8,0.91,5.830,164.2 +31.6,0.91,6.930,160.0,31.4,0.91,7.340,161.0 +31.5,0.91,7.580,154.5,31.4,0.91,7.770,154.2 +31.2,0.91,10.470,163.4,31.1,0.91,10.920,165.1 +30.3,0.91,12.100,164.8,30.3,0.91,12.450,165.5 +29.6,0.91,12.640,167.4,29.6,0.91,13.100,168.1 +28.7,0.91,12.790,165.1,28.8,0.91,13.600,165.3 +27.8,0.91,12.280,182.8,27.9,0.91,12.720,186.0 +27.3,0.91,12.050,197.7,27.3,0.91,12.530,200.6 +26.6,0.91,12.700,208.5,26.6,0.91,13.600,209.7 +25.9,0.91,12.390,209.0,26.0,0.91,13.260,209.7 +25.4,0.91,12.130,209.2,25.4,0.91,12.940,209.6 +24.7,0.91,12.180,214.1,24.8,0.91,13.070,215.3 +24.2,0.91,10.690,215.2,24.2,0.91,11.250,216.3 +24.6,0.91,8.660,214.5,24.5,0.91,8.780,215.1 +25.8,0.91,7.960,217.1,25.6,0.91,7.990,217.4 +27.6,0.91,6.120,227.8,27.4,0.91,6.150,228.2 +29.3,0.91,4.650,248.1,29.1,0.91,4.690,248.6 +30.6,0.91,3.360,272.1,30.4,0.91,3.410,272.5 +31.4,0.91,3.780,307.4,31.2,0.91,3.800,306.8 +32.1,0.91,3.970,305.6,31.9,0.91,4.010,305.4 +32.5,0.91,3.570,299.4,32.3,0.91,3.620,299.6 +33.0,0.91,2.970,307.1,32.8,0.91,3.010,307.5 +33.1,0.91,2.380,324.3,32.9,0.91,2.400,324.3 +33.4,0.91,4.090,350.1,33.2,0.91,4.180,350.4 +32.8,0.91,6.550,30.6,32.6,0.91,6.530,30.7 +31.6,0.91,8.090,30.7,31.5,0.91,8.730,30.2 +30.2,0.91,9.570,35.6,30.1,0.91,10.340,35.1 +28.8,0.91,10.210,36.7,28.7,0.91,11.150,36.8 +28.1,0.91,8.790,34.2,28.0,0.91,9.340,33.3 +26.7,0.91,11.050,44.3,26.5,0.91,12.000,46.6 +24.8,0.91,12.010,39.5,24.7,0.91,12.570,39.9 +23.8,0.91,9.230,43.9,23.6,0.91,9.850,44.7 +23.1,0.91,8.080,41.3,23.0,0.91,8.580,42.3 +22.5,0.91,8.440,35.7,22.4,0.91,8.950,36.9 +21.8,0.91,7.200,35.0,21.6,0.91,7.650,38.0 +20.9,0.91,7.420,41.8,20.8,0.91,7.890,45.0 +20.3,0.91,6.090,43.6,20.1,0.91,6.170,44.4 +20.7,0.91,5.460,43.3,20.5,0.91,5.500,43.4 +21.6,0.91,5.550,42.9,21.4,0.91,5.590,42.8 +22.7,0.91,4.880,44.9,22.5,0.91,4.920,44.9 +24.0,0.91,4.790,46.4,23.8,0.91,4.810,46.6 +25.4,0.91,4.800,46.7,25.2,0.91,4.830,47.0 +26.7,0.91,5.140,47.3,26.4,0.91,5.180,47.6 +27.8,0.91,4.870,63.5,27.6,0.91,4.910,63.9 +28.6,0.91,5.140,78.4,28.4,0.91,5.200,78.6 +28.9,0.91,5.880,86.1,28.7,0.91,5.920,86.4 +29.0,0.91,5.460,76.5,28.8,0.91,5.490,76.3 +28.9,0.91,5.600,98.6,28.7,0.91,5.670,98.9 +28.5,0.91,6.020,110.2,28.3,0.91,6.240,111.1 +27.9,0.91,8.260,117.4,27.8,0.91,8.450,117.9 +27.3,0.91,8.900,120.1,27.1,0.91,8.630,120.2 +26.1,0.91,8.280,119.4,25.9,0.91,8.650,118.6 +25.8,0.91,8.560,129.3,25.6,0.91,8.890,128.1 +25.2,0.91,8.810,132.8,25.1,0.91,8.970,132.8 +24.6,0.91,9.960,130.3,24.6,0.91,10.100,130.9 +23.7,0.91,10.330,134.9,23.7,0.91,10.730,135.2 +23.0,0.91,10.430,139.1,23.0,0.91,10.770,139.6 +22.4,0.91,10.240,145.3,22.5,0.91,10.540,146.2 +22.0,0.91,10.810,153.3,22.0,0.91,11.320,153.6 +21.7,0.91,10.400,149.1,21.7,0.91,10.820,150.2 +21.3,0.91,8.790,158.9,21.2,0.91,9.280,159.0 +22.2,0.91,7.640,163.6,22.0,0.91,7.760,163.8 +23.3,0.91,7.490,168.2,23.1,0.91,7.580,168.3 +24.7,0.91,6.640,166.4,24.5,0.91,6.720,166.5 +26.0,0.91,5.420,170.9,25.8,0.91,5.470,170.9 +27.2,0.91,4.410,171.1,26.9,0.91,4.440,171.1 +28.2,0.91,4.080,178.7,27.9,0.91,4.100,178.9 +29.0,0.91,4.270,178.5,28.8,0.91,4.270,178.8 +29.9,0.91,5.010,178.5,29.7,0.91,5.010,178.7 +30.5,0.91,5.550,157.3,30.3,0.91,5.590,157.9 +30.8,0.90,6.010,165.9,30.6,0.90,6.080,166.1 +30.9,0.90,6.940,170.5,30.7,0.90,7.080,170.7 +29.4,0.90,5.330,214.6,29.3,0.90,5.460,213.7 +29.3,0.90,7.570,157.5,29.1,0.90,7.980,157.9 +29.3,0.90,8.770,160.6,29.3,0.90,9.280,160.9 +28.9,0.91,9.810,153.8,28.9,0.91,10.470,153.5 +28.9,0.91,10.400,155.0,28.9,0.91,11.060,156.1 +29.0,0.91,11.690,160.8,29.1,0.91,12.440,163.6 +28.0,0.91,11.920,184.1,28.1,0.91,12.590,185.9 +27.6,0.91,13.640,193.5,27.6,0.91,14.560,193.4 +26.3,0.91,13.790,188.5,26.2,0.91,14.890,188.2 +25.2,0.91,14.380,189.4,25.1,0.91,15.410,190.1 +24.2,0.91,14.050,186.7,24.1,0.91,14.870,187.3 +23.5,0.91,13.820,190.0,23.4,0.91,14.520,190.7 +23.3,0.91,13.370,190.3,23.1,0.91,13.600,190.4 +24.1,0.91,11.770,195.3,23.9,0.91,11.920,195.6 +25.3,0.91,10.950,197.0,25.1,0.91,11.080,197.2 +26.8,0.91,10.640,193.4,26.6,0.91,10.760,193.6 +28.3,0.91,10.260,192.9,28.0,0.91,10.390,193.0 +29.6,0.91,9.480,195.2,29.4,0.91,9.600,195.3 +30.8,0.91,9.670,192.3,30.5,0.91,9.790,192.4 +31.7,0.91,8.930,192.1,31.5,0.91,9.060,192.2 +32.4,0.91,9.300,182.4,32.1,0.91,9.400,182.9 +32.8,0.91,9.680,194.6,32.6,0.91,9.740,194.4 +33.2,0.91,8.640,197.3,33.0,0.91,8.750,197.0 +33.3,0.91,8.290,193.5,33.1,0.91,8.450,193.7 +33.0,0.91,9.210,189.1,32.8,0.91,9.580,189.3 +31.9,0.91,10.760,179.0,31.9,0.91,11.410,179.7 +31.0,0.91,12.890,179.8,31.0,0.91,13.680,180.2 +30.2,0.91,13.630,188.5,30.2,0.91,14.470,189.1 +29.7,0.91,15.100,194.6,29.8,0.91,15.970,194.7 +29.2,0.91,15.670,195.9,29.2,0.91,16.520,195.9 +28.3,0.91,15.330,195.0,28.3,0.91,16.210,195.3 +27.0,0.91,15.290,192.3,26.9,0.91,16.090,193.0 +25.6,0.91,15.690,195.0,25.5,0.91,16.480,195.6 +24.5,0.91,16.330,197.6,24.5,0.91,17.150,198.2 +23.8,0.91,16.230,197.7,23.8,0.91,17.060,198.4 +23.4,0.91,16.070,200.6,23.3,0.91,16.930,201.4 +23.3,0.91,15.420,199.7,23.3,0.91,16.110,200.4 +24.1,0.91,13.080,202.1,23.9,0.91,13.290,202.4 +25.3,0.91,12.190,208.0,25.1,0.91,12.290,208.2 +26.9,0.91,11.280,206.8,26.7,0.91,11.370,207.0 +28.6,0.91,10.090,208.4,28.4,0.91,10.180,208.6 +30.1,0.91,8.640,205.3,29.9,0.91,8.710,205.5 +31.3,0.91,7.180,199.7,31.1,0.91,7.240,200.0 +32.2,0.91,5.920,193.3,32.0,0.91,5.960,193.6 +33.0,0.91,5.300,193.8,32.8,0.91,5.340,193.9 +33.4,0.91,6.000,172.6,33.1,0.91,6.030,173.1 +33.8,0.91,4.640,190.6,33.6,0.91,4.660,190.4 +33.7,0.91,5.780,173.8,33.5,0.91,5.850,174.1 +33.7,0.91,6.600,172.0,33.5,0.91,6.540,172.1 +33.1,0.91,5.600,171.9,33.0,0.91,6.120,169.5 +33.0,0.91,7.500,167.8,32.8,0.91,7.480,168.2 +31.9,0.91,11.290,178.5,31.8,0.91,11.760,179.9 +30.8,0.91,12.220,188.8,30.8,0.91,12.740,191.3 +30.1,0.91,11.980,200.6,30.1,0.91,12.680,202.6 +29.1,0.91,11.120,204.7,29.1,0.91,12.100,206.1 +28.6,0.91,12.550,207.6,28.6,0.91,13.560,208.3 +28.2,0.91,13.120,210.2,28.2,0.91,14.090,210.5 +27.3,0.91,12.780,205.3,27.1,0.91,13.610,206.0 +26.1,0.91,12.720,210.4,26.0,0.91,13.270,212.4 +25.5,0.91,11.100,213.9,25.5,0.91,11.740,215.5 +24.9,0.91,11.070,217.4,24.9,0.91,11.700,218.2 +25.5,0.91,8.370,221.2,25.4,0.91,8.480,221.5 +26.9,0.91,6.900,222.1,26.8,0.91,6.920,222.5 +28.6,0.91,4.470,238.1,28.3,0.91,4.490,238.6 +30.1,0.91,1.650,282.6,29.9,0.91,1.670,283.1 +31.2,0.91,1.080,329.1,30.9,0.91,1.110,328.8 +32.1,0.91,2.490,20.9,31.9,0.91,2.490,20.5 +32.9,0.91,1.540,46.5,32.7,0.91,1.580,47.2 +33.3,0.91,3.250,60.7,33.1,0.91,3.250,60.3 +33.6,0.91,3.900,61.6,33.4,0.91,3.890,61.1 +33.9,0.91,3.140,73.3,33.7,0.91,3.140,72.9 +33.9,0.91,3.080,60.8,33.7,0.91,3.110,61.4 +33.6,0.91,5.190,91.7,33.5,0.91,5.330,90.3 +32.1,0.91,6.450,159.7,32.0,0.91,6.480,158.5 +32.1,0.91,4.620,147.6,31.9,0.91,4.660,143.9 +31.5,0.91,3.930,150.6,31.3,0.91,3.940,148.2 +30.7,0.91,2.290,112.6,30.6,0.91,2.480,111.7 +29.6,0.91,2.620,58.2,29.6,0.91,2.820,61.9 +29.0,0.91,2.810,58.6,29.1,0.91,2.960,65.1 +28.2,0.91,3.860,87.8,28.2,0.91,4.190,88.8 +28.2,0.91,5.110,85.2,28.2,0.91,5.380,87.3 +28.4,0.91,6.320,101.7,28.3,0.91,6.480,101.4 +27.7,0.91,6.570,124.9,27.7,0.91,6.910,126.1 +27.1,0.91,5.320,116.0,27.1,0.91,5.430,117.4 +26.4,0.91,4.260,114.2,26.4,0.91,4.360,117.0 +26.5,0.91,1.770,133.5,26.4,0.91,1.770,136.3 +28.5,0.91,3.700,240.9,28.3,0.91,3.750,241.3 +29.8,0.91,3.320,260.4,29.6,0.91,3.390,260.5 +30.8,0.91,2.230,325.0,30.6,0.91,2.240,324.5 +31.5,0.91,2.350,22.2,31.2,0.91,2.320,21.4 +32.0,0.91,2.580,34.6,31.8,0.91,2.550,34.6 +32.6,0.91,2.980,47.9,32.4,0.91,2.950,48.9 +33.2,0.91,3.730,92.7,32.9,0.91,3.740,92.5 +33.4,0.91,3.470,67.5,33.2,0.91,3.470,67.9 +33.8,0.91,2.590,95.9,33.6,0.91,2.610,97.7 +34.3,0.91,3.990,167.7,34.1,0.91,4.020,167.3 +34.0,0.91,4.330,157.7,33.8,0.91,4.420,156.7 +33.3,0.91,4.640,145.6,33.2,0.91,4.680,146.7 +31.9,0.91,8.310,131.8,31.7,0.91,8.580,130.1 +31.0,0.91,9.830,126.3,30.9,0.91,10.660,125.3 +30.5,0.91,11.160,127.1,30.5,0.91,11.710,127.5 +29.9,0.91,11.410,138.3,30.0,0.91,11.930,138.6 +29.3,0.91,12.420,148.0,29.3,0.91,13.100,147.6 +28.6,0.91,12.090,183.8,28.7,0.91,12.530,187.1 +28.6,0.91,12.350,214.1,28.6,0.91,13.040,215.3 +27.8,0.91,11.730,216.1,27.8,0.91,12.560,217.1 +27.0,0.91,11.780,206.0,27.0,0.91,12.460,207.6 +26.7,0.91,12.270,209.0,26.8,0.91,12.910,210.5 +26.2,0.91,12.660,208.5,26.2,0.91,13.260,209.3 +26.7,0.91,11.330,210.7,26.5,0.91,11.490,211.0 +28.1,0.91,11.420,211.1,27.9,0.91,11.540,211.2 +29.5,0.91,9.860,211.5,29.3,0.91,9.950,211.5 +30.6,0.91,9.190,207.3,30.4,0.91,9.280,207.4 +31.7,0.91,8.480,198.8,31.5,0.91,8.560,198.9 +32.5,0.91,7.060,197.2,32.3,0.91,7.130,197.3 +33.2,0.91,6.450,193.7,33.0,0.91,6.500,193.8 +33.7,0.91,5.470,203.2,33.5,0.91,5.520,202.8 +34.1,0.91,5.590,195.5,33.9,0.91,5.600,194.7 +34.3,0.91,5.250,183.7,34.1,0.91,5.330,183.6 +34.2,0.91,5.350,177.2,34.0,0.91,5.450,176.8 +33.8,0.91,7.950,161.9,33.6,0.91,8.090,161.7 +33.4,0.91,8.690,161.9,33.2,0.91,9.240,161.7 +32.6,0.91,10.580,152.4,32.5,0.91,11.010,153.1 +31.6,0.91,12.240,157.0,31.6,0.91,13.000,157.5 +30.7,0.91,13.050,161.0,30.7,0.91,13.820,161.8 +29.3,0.91,13.260,178.5,29.3,0.91,13.980,180.2 +28.9,0.91,12.940,191.7,28.9,0.91,13.670,192.8 +28.1,0.91,13.200,192.7,28.1,0.91,13.920,194.0 +27.4,0.91,13.790,195.3,27.4,0.91,14.550,196.3 +26.9,0.91,14.400,199.8,26.9,0.91,15.260,200.8 +26.2,0.91,14.250,199.9,26.2,0.91,15.100,201.3 +25.3,0.91,14.030,199.1,25.3,0.91,14.770,200.6 +24.6,0.91,13.390,202.1,24.5,0.91,14.020,202.8 +24.9,0.91,12.180,204.4,24.8,0.91,12.310,204.6 +26.4,0.91,10.850,204.6,26.2,0.91,10.920,204.8 +28.1,0.91,9.860,204.7,27.9,0.91,9.940,204.9 +29.7,0.91,8.170,199.1,29.5,0.91,8.240,199.2 +30.9,0.91,6.640,190.8,30.6,0.91,6.680,190.9 +31.8,0.91,4.860,176.6,31.6,0.91,4.870,176.6 +32.6,0.91,4.850,154.7,32.4,0.91,4.880,155.1 +33.2,0.91,4.920,156.9,33.0,0.91,4.970,156.9 +33.4,0.91,5.650,152.3,33.2,0.91,5.670,152.6 +33.6,0.91,7.460,151.8,33.4,0.91,7.550,152.1 +33.5,0.91,6.070,170.6,33.3,0.91,6.140,170.5 +33.1,0.91,7.960,162.8,33.0,0.91,8.160,162.7 +32.3,0.91,9.980,149.5,32.2,0.91,10.510,149.5 +31.4,0.91,11.920,152.9,31.4,0.91,12.570,153.3 +30.7,0.91,12.030,158.7,30.7,0.91,12.830,159.6 +29.8,0.91,12.610,169.5,29.8,0.91,13.310,170.9 +28.9,0.91,12.310,181.9,28.8,0.91,13.010,182.9 +28.3,0.91,12.070,189.7,28.3,0.91,12.680,191.2 +27.7,0.91,12.280,191.3,27.6,0.91,12.960,192.1 +27.1,0.91,12.390,191.4,27.0,0.91,13.080,191.9 +25.8,0.91,12.200,186.0,25.7,0.91,12.690,186.6 +24.7,0.91,12.810,191.5,24.7,0.91,13.620,193.0 +24.0,0.91,12.230,194.4,24.0,0.91,12.990,195.5 +23.6,0.91,10.770,197.5,23.5,0.91,11.350,198.0 +24.3,0.91,9.420,196.0,24.1,0.91,9.510,196.2 +25.5,0.91,7.940,200.1,25.3,0.91,8.010,200.2 +26.9,0.91,7.160,198.1,26.7,0.91,7.220,198.2 +28.1,0.91,6.540,187.1,27.9,0.91,6.600,187.2 +29.2,0.91,5.760,180.2,29.0,0.91,5.800,180.3 +30.4,0.91,4.540,168.7,30.2,0.91,4.580,169.4 +30.9,0.91,5.370,170.7,30.7,0.91,5.380,170.6 +31.8,0.91,5.230,192.5,31.6,0.91,5.260,190.9 +32.3,0.91,5.600,165.3,32.1,0.91,5.680,165.3 +32.2,0.91,7.080,160.4,32.0,0.91,7.130,160.2 +32.3,0.91,6.720,147.2,32.1,0.91,6.810,147.4 +32.1,0.91,7.100,150.8,31.9,0.91,7.360,150.8 +31.9,0.91,9.140,161.1,31.8,0.91,9.540,161.4 +31.1,0.91,10.130,156.2,31.0,0.91,10.720,156.6 +30.1,0.91,10.310,160.3,30.1,0.91,11.080,162.2 +29.1,0.91,11.880,173.3,29.1,0.91,12.710,174.6 +28.3,0.91,12.100,183.7,28.3,0.91,12.890,184.9 +27.7,0.91,12.070,191.7,27.7,0.91,12.820,192.7 +27.1,0.91,13.030,194.6,27.0,0.91,13.910,195.1 +26.2,0.91,13.480,193.5,26.1,0.91,14.360,193.8 +25.0,0.91,13.170,195.3,24.9,0.91,14.020,196.4 +24.1,0.91,12.630,202.5,24.1,0.91,13.460,203.1 +23.7,0.91,12.910,202.8,23.7,0.91,13.830,203.8 +23.6,0.91,12.370,207.9,23.4,0.91,12.650,208.2 +24.3,0.91,10.820,207.8,24.1,0.91,10.950,208.1 +25.7,0.91,9.120,207.1,25.5,0.91,9.210,207.2 +27.3,0.91,7.990,211.0,27.0,0.91,8.070,211.1 +28.6,0.91,6.900,200.6,28.4,0.91,6.960,200.8 +29.8,0.91,6.460,194.8,29.6,0.91,6.520,195.0 +30.8,0.91,6.080,191.1,30.6,0.91,6.140,191.3 +31.8,0.91,6.010,187.1,31.5,0.91,6.050,187.5 +32.4,0.91,6.220,200.7,32.2,0.91,6.260,200.2 +33.2,0.91,5.090,190.6,33.0,0.91,5.150,190.6 +33.3,0.91,5.860,173.6,33.1,0.91,5.930,173.7 +33.2,0.91,6.410,176.2,33.0,0.91,6.460,176.1 +33.1,0.91,5.930,175.8,32.9,0.91,6.040,175.1 +32.7,0.91,8.730,164.0,32.5,0.91,9.050,163.5 +31.5,0.91,10.690,165.1,31.5,0.91,11.240,166.4 +30.6,0.91,13.750,180.5,30.6,0.91,14.550,182.0 +29.5,0.91,12.840,195.5,29.6,0.91,13.830,196.3 +28.5,0.91,13.570,194.9,28.5,0.91,14.590,196.2 +27.8,0.91,14.400,198.5,27.8,0.91,15.430,199.0 +27.4,0.91,15.200,196.8,27.5,0.91,16.250,197.3 +26.8,0.91,16.030,199.1,26.8,0.91,17.080,199.4 +25.9,0.91,15.480,200.4,25.9,0.91,16.460,201.0 +24.9,0.91,15.520,201.0,24.9,0.91,16.510,201.8 +24.2,0.91,15.460,202.6,24.3,0.91,16.440,203.9 +23.7,0.91,14.870,204.3,23.7,0.91,15.610,204.9 +24.2,0.91,12.720,206.8,24.1,0.91,12.970,207.1 +25.8,0.91,12.200,205.1,25.6,0.91,12.290,205.3 +27.7,0.91,10.560,205.3,27.5,0.91,10.630,205.5 +29.6,0.91,9.290,205.8,29.4,0.91,9.360,205.9 +31.2,0.91,7.820,206.2,30.9,0.91,7.880,206.4 +32.5,0.91,6.540,195.8,32.3,0.91,6.580,196.1 +33.6,0.91,6.050,190.9,33.3,0.91,6.100,191.2 +34.3,0.90,6.030,194.4,34.1,0.90,6.070,194.7 +34.8,0.90,5.610,195.3,34.5,0.90,5.660,195.5 +34.9,0.90,6.750,173.7,34.6,0.90,6.780,174.4 +35.0,0.90,5.840,181.6,34.8,0.90,5.900,181.8 +34.7,0.90,8.170,172.7,34.5,0.90,8.200,172.2 +34.5,0.90,9.280,163.0,34.4,0.90,9.330,163.3 +33.7,0.90,11.000,164.2,33.7,0.90,11.310,164.7 +32.1,0.90,14.040,171.4,32.1,0.90,14.830,172.7 +30.7,0.90,13.560,184.3,30.7,0.90,14.110,186.3 +29.7,0.90,13.710,190.1,29.7,0.90,14.430,192.2 +28.9,0.90,13.200,198.5,28.8,0.90,13.990,200.8 +28.3,0.90,14.300,200.7,28.4,0.90,15.290,202.0 +27.9,0.90,14.810,199.2,27.9,0.90,15.860,200.5 +27.3,0.90,14.460,203.9,27.3,0.90,15.360,204.9 +26.4,0.90,15.350,205.8,26.4,0.90,16.260,206.9 +25.5,0.90,14.110,205.7,25.6,0.90,14.890,207.5 +24.9,0.91,13.080,211.3,24.9,0.91,13.820,212.6 +25.9,0.91,11.740,211.0,25.7,0.91,11.950,211.6 +27.8,0.91,10.590,212.1,27.6,0.91,10.670,212.5 +29.9,0.91,10.310,215.6,29.7,0.91,10.400,215.9 +31.9,0.91,9.460,212.8,31.7,0.91,9.550,213.0 +33.4,0.91,7.150,210.9,33.2,0.91,7.220,211.0 +34.4,0.91,7.330,198.4,34.1,0.91,7.400,198.6 +35.1,0.90,7.000,192.3,34.8,0.90,7.070,192.4 +35.4,0.90,6.650,187.7,35.2,0.90,6.710,187.9 +35.7,0.90,5.990,197.3,35.5,0.90,6.030,196.9 +35.9,0.90,6.800,177.5,35.7,0.90,6.880,177.2 +35.7,0.90,7.470,181.0,35.5,0.90,7.510,181.0 +35.3,0.90,8.730,156.7,35.2,0.90,9.170,156.4 +34.6,0.90,11.470,156.7,34.6,0.90,11.960,157.5 +33.6,0.90,13.310,158.6,33.6,0.90,14.190,159.6 +32.1,0.90,7.530,260.3,31.8,0.90,7.440,260.6 +32.4,0.90,5.410,265.3,32.3,0.90,5.360,261.2 +30.6,0.90,4.570,184.9,30.5,0.90,4.400,179.9 +30.3,0.90,4.120,238.3,30.2,0.90,4.300,240.5 +29.6,0.90,9.100,207.7,29.6,0.90,8.960,207.8 +28.9,0.90,12.490,209.4,29.0,0.90,13.260,210.2 +28.4,0.90,11.740,201.8,28.3,0.90,12.380,203.0 +27.4,0.90,11.820,204.0,27.3,0.90,12.550,205.0 +25.9,0.91,10.990,203.7,25.8,0.91,11.910,207.1 +25.3,0.91,11.100,215.7,25.3,0.91,11.760,216.7 +25.9,0.91,7.890,208.3,25.7,0.91,7.960,208.9 +27.5,0.91,7.360,203.6,27.3,0.91,7.410,204.1 +29.2,0.91,7.050,201.3,29.0,0.91,7.110,201.6 +30.4,0.91,7.120,190.5,30.2,0.91,7.180,190.6 +31.6,0.91,7.070,185.4,31.4,0.91,7.140,185.5 +32.7,0.91,6.780,183.4,32.4,0.91,6.860,183.2 +33.7,0.90,7.370,180.2,33.5,0.90,7.440,180.7 +34.2,0.90,8.490,179.1,34.0,0.90,8.550,179.0 +34.6,0.90,8.130,181.6,34.4,0.90,8.140,181.7 +35.0,0.90,7.740,187.3,34.8,0.90,7.810,186.6 +34.9,0.90,8.940,186.3,34.7,0.90,8.990,186.3 +34.7,0.90,8.770,182.0,34.5,0.90,8.890,182.5 +33.6,0.90,10.460,169.3,33.6,0.90,11.420,169.6 +31.0,0.90,4.980,188.0,31.0,0.90,5.860,181.2 +30.1,0.90,6.270,205.0,30.3,0.90,7.320,223.5 +30.9,0.90,10.110,168.1,31.0,0.90,10.520,168.4 +29.7,0.90,13.810,184.1,29.8,0.90,14.300,184.6 +29.2,0.90,14.590,191.8,29.3,0.90,15.390,192.8 +28.8,0.91,13.220,196.1,28.8,0.91,13.990,197.4 +28.2,0.91,12.820,199.0,28.3,0.91,13.800,200.9 +26.8,0.91,12.360,187.8,26.9,0.91,12.850,189.8 +25.6,0.91,7.430,193.8,25.8,0.91,8.630,195.0 +25.4,0.91,6.820,200.1,25.4,0.91,7.610,204.6 +25.1,0.91,6.350,208.9,25.0,0.91,6.750,210.5 +25.3,0.91,5.940,214.2,25.1,0.91,6.030,214.7 +26.5,0.91,5.270,219.3,26.3,0.91,5.320,219.5 +28.1,0.91,4.200,227.1,27.9,0.91,4.220,227.3 +29.6,0.91,2.610,214.2,29.4,0.91,2.610,214.7 +30.9,0.91,1.140,203.4,30.7,0.91,1.150,203.3 +32.0,0.91,0.860,126.6,31.8,0.91,0.870,128.4 +32.9,0.91,2.010,131.5,32.6,0.91,2.040,131.8 +33.3,0.91,1.070,128.8,33.1,0.91,1.070,128.7 +33.8,0.91,1.820,105.7,33.5,0.91,1.790,106.4 +33.9,0.91,2.630,98.2,33.7,0.91,2.620,98.8 +34.0,0.91,2.900,119.7,33.8,0.91,2.920,119.6 +33.5,0.91,5.150,29.6,33.4,0.91,5.080,32.3 +31.8,0.91,5.190,139.2,31.6,0.91,5.560,141.6 +30.9,0.91,9.400,142.5,30.8,0.91,10.080,142.2 +30.2,0.91,6.780,154.5,30.1,0.91,7.190,152.5 +29.4,0.91,5.480,125.7,29.6,0.91,6.940,124.4 +29.7,0.91,7.270,108.9,29.5,0.91,6.570,108.4 +28.0,0.91,6.000,66.4,27.9,0.91,6.320,68.0 +27.4,0.91,6.890,72.0,27.2,0.91,7.080,68.7 +26.8,0.91,6.950,64.8,26.5,0.91,7.050,64.9 +25.7,0.91,5.420,53.6,25.5,0.91,5.540,53.1 +24.6,0.91,6.310,45.4,24.4,0.91,6.460,44.5 +24.2,0.91,7.240,34.3,24.0,0.91,7.510,35.3 +23.1,0.91,6.280,39.1,22.9,0.91,6.500,40.0 +23.4,0.91,6.320,52.1,23.2,0.91,6.350,52.2 +24.7,0.91,6.100,40.0,24.5,0.91,6.130,40.1 +25.9,0.91,5.770,42.7,25.7,0.91,5.790,42.8 +27.1,0.91,5.650,42.7,26.9,0.91,5.680,42.6 +28.1,0.91,5.070,42.1,27.9,0.91,5.090,42.2 +29.1,0.91,4.980,46.6,28.9,0.91,5.000,46.8 +30.0,0.91,4.540,40.5,29.8,0.91,4.550,40.8 +30.8,0.91,4.560,44.2,30.5,0.91,4.580,44.4 +31.2,0.91,5.060,52.9,30.9,0.91,5.090,53.1 +31.6,0.91,4.990,59.4,31.4,0.91,5.040,59.8 +31.4,0.91,5.870,57.6,31.2,0.91,5.940,58.0 +30.9,0.91,5.630,90.4,30.7,0.91,5.760,90.4 +30.2,0.91,3.350,106.8,30.0,0.91,3.720,105.0 +27.3,0.91,6.230,202.0,27.3,0.91,6.620,200.1 +28.4,0.91,4.420,207.3,28.4,0.91,4.290,200.8 +27.0,0.91,3.960,269.2,27.3,0.91,3.410,260.1 +28.1,0.91,0.640,113.2,28.0,0.91,1.120,109.6 +27.2,0.91,3.020,38.6,27.1,0.91,3.260,42.6 +26.1,0.91,3.830,33.2,26.0,0.91,4.040,34.4 +25.1,0.91,3.400,35.8,25.1,0.91,3.690,39.1 +24.6,0.91,3.510,32.8,24.5,0.91,3.510,39.9 +24.3,0.91,2.210,40.7,24.3,0.91,2.370,46.1 +24.1,0.91,0.860,30.6,24.2,0.91,0.690,50.6 +24.3,0.91,0.960,242.9,24.3,0.91,1.220,225.9 +25.4,0.91,2.220,217.3,25.2,0.91,2.270,217.6 +27.0,0.91,3.370,241.8,26.8,0.91,3.400,241.8 +28.3,0.91,2.310,249.1,28.0,0.91,2.330,249.3 +29.2,0.91,2.370,204.4,29.0,0.91,2.370,204.8 +30.2,0.91,1.820,204.4,29.9,0.91,1.830,203.6 +30.9,0.91,1.620,170.2,30.7,0.91,1.610,169.7 +31.7,0.91,3.040,154.3,31.4,0.91,3.020,154.2 +30.9,0.91,5.810,91.2,30.7,0.91,5.680,93.1 +28.7,0.91,5.310,49.4,28.5,0.91,5.280,50.2 +28.4,0.91,6.400,47.2,28.2,0.91,6.370,47.2 +30.1,0.91,2.570,41.0,29.9,0.91,2.540,41.2 +26.6,0.91,12.510,140.1,26.4,0.91,12.910,139.3 +28.0,0.91,8.310,128.5,28.1,0.91,8.380,129.8 +27.5,0.91,12.050,142.9,27.4,0.91,12.660,142.7 +26.9,0.91,11.310,154.3,26.8,0.91,11.850,154.7 +25.9,0.91,10.600,162.9,25.8,0.91,11.130,162.8 +25.3,0.91,8.280,161.9,25.2,0.91,8.840,162.1 +24.7,0.91,4.760,174.0,24.6,0.91,5.700,173.7 +24.4,0.91,7.920,178.8,24.4,0.91,8.610,180.1 +24.3,0.91,9.850,201.0,24.3,0.91,10.390,202.8 +23.8,0.91,9.540,198.1,23.8,0.91,9.910,199.3 +23.4,0.91,9.970,213.3,23.3,0.91,10.480,214.7 +23.0,0.91,8.970,218.7,22.9,0.91,9.570,219.8 +22.8,0.91,8.060,221.7,22.6,0.91,8.360,221.8 +23.5,0.91,7.190,221.3,23.3,0.91,7.250,221.2 +24.9,0.91,5.590,223.3,24.7,0.91,5.630,223.2 +26.3,0.91,5.110,206.0,26.1,0.91,5.150,205.9 +27.8,0.91,4.600,193.6,27.6,0.91,4.630,193.7 +28.9,0.91,4.280,183.6,28.6,0.91,4.290,183.7 +29.7,0.91,3.860,175.2,29.5,0.91,3.870,175.2 +30.7,0.91,3.890,182.7,30.5,0.91,3.920,180.9 +31.3,0.91,4.010,166.4,31.1,0.91,4.040,166.3 +31.3,0.91,6.180,160.7,31.1,0.91,6.180,160.8 +31.5,0.91,5.100,165.0,31.3,0.91,5.130,164.9 +31.5,0.91,4.920,170.1,31.3,0.91,4.960,170.1 +31.2,0.91,4.940,159.3,31.0,0.91,5.050,159.7 +30.7,0.91,6.830,168.7,30.6,0.91,7.150,169.2 +29.8,0.91,8.760,162.7,29.7,0.91,9.140,163.0 +29.6,0.91,10.340,177.1,29.5,0.91,11.040,178.0 +28.7,0.91,11.100,192.5,28.7,0.91,11.820,193.9 +28.0,0.91,11.410,206.2,28.0,0.91,12.280,207.6 +27.2,0.91,11.570,205.6,27.1,0.91,12.420,206.6 +26.5,0.91,12.520,208.5,26.4,0.91,13.420,209.0 +26.0,0.91,12.470,209.2,26.0,0.91,13.260,209.6 +25.6,0.91,13.000,208.7,25.6,0.91,13.840,209.1 +25.2,0.91,12.650,212.3,25.2,0.91,13.470,213.0 +24.6,0.91,13.290,212.4,24.5,0.91,14.160,213.1 +23.9,0.91,11.960,217.6,23.8,0.91,12.460,217.6 +24.4,0.91,10.010,219.6,24.3,0.91,10.140,219.7 +25.9,0.91,8.470,221.2,25.7,0.91,8.550,221.3 +27.3,0.91,6.860,226.6,27.1,0.91,6.930,226.7 +28.6,0.91,4.850,226.1,28.4,0.91,4.890,226.3 +29.8,0.91,3.240,212.0,29.6,0.91,3.250,212.2 +30.7,0.91,3.810,194.7,30.5,0.91,3.830,194.8 +31.4,0.91,2.900,181.0,31.2,0.91,2.910,181.3 +32.1,0.91,3.190,180.2,31.9,0.91,3.190,180.1 +32.4,0.91,3.010,160.9,32.2,0.91,3.020,161.4 +32.6,0.91,4.150,202.3,32.4,0.91,4.090,201.7 +32.7,0.91,3.140,177.4,32.5,0.91,3.160,178.5 +32.7,0.91,3.630,165.7,32.5,0.91,3.570,167.5 +32.2,0.91,3.730,178.9,32.0,0.91,3.730,179.9 +31.8,0.91,2.250,84.6,31.7,0.91,2.250,85.3 +26.1,0.91,8.310,56.6,25.9,0.91,8.900,58.0 +25.0,0.91,8.080,65.3,24.8,0.91,8.640,66.2 +24.2,0.91,7.490,50.7,23.9,0.91,7.860,52.9 +22.9,0.91,7.830,41.1,22.7,0.91,8.050,42.6 +22.2,0.91,8.920,57.8,22.1,0.91,9.280,58.3 +21.6,0.91,8.340,56.4,21.4,0.91,8.690,57.4 +21.2,0.91,7.810,63.4,21.1,0.91,8.200,65.2 +21.1,0.91,6.430,80.8,21.0,0.91,7.140,82.9 +20.9,0.91,7.200,41.5,20.8,0.91,7.350,44.3 +20.8,0.91,6.500,45.2,20.7,0.91,6.870,45.4 +21.1,0.91,6.630,48.6,20.9,0.91,6.650,48.8 +21.9,0.91,5.670,50.7,21.7,0.91,5.670,51.0 +24.3,0.91,4.870,56.1,24.1,0.91,4.910,56.3 +25.9,0.91,4.810,58.9,25.7,0.91,4.850,59.0 +26.9,0.91,5.090,35.6,26.7,0.91,5.100,35.9 +28.1,0.91,4.320,38.0,27.9,0.91,4.320,38.1 +28.7,0.91,4.710,45.3,28.4,0.91,4.720,45.4 +29.3,0.91,4.340,44.2,29.1,0.91,4.330,44.4 +30.0,0.91,3.210,50.5,29.8,0.91,3.210,50.6 +30.4,0.91,3.890,59.5,30.1,0.91,3.900,59.1 +30.3,0.91,4.380,53.4,30.1,0.91,4.420,53.6 +27.5,0.91,7.900,53.4,27.3,0.91,8.160,53.3 +27.0,0.91,7.080,106.0,26.9,0.91,7.360,104.6 +26.5,0.91,6.680,84.2,26.3,0.91,6.960,85.3 +25.9,0.91,6.540,83.5,25.7,0.91,6.900,84.8 +24.9,0.91,5.760,93.0,24.8,0.91,6.110,93.8 +23.6,0.91,4.610,80.7,23.4,0.91,4.860,84.0 +22.7,0.91,8.020,123.1,22.6,0.91,8.420,123.7 +22.9,0.91,4.940,133.2,22.8,0.91,5.360,134.4 +20.8,0.91,5.410,355.1,20.7,0.91,5.770,353.0 +20.9,0.91,7.090,136.4,20.7,0.91,7.420,138.5 +20.8,0.91,5.130,160.7,20.6,0.91,5.430,159.9 +20.9,0.91,4.820,181.9,20.8,0.91,5.240,182.8 +20.8,0.91,3.180,175.1,20.7,0.91,3.350,176.3 +21.8,0.91,2.450,149.6,21.6,0.91,2.490,150.2 +23.6,0.91,2.780,201.7,23.4,0.91,2.780,201.8 +25.1,0.91,1.530,303.4,24.9,0.91,1.550,303.8 +26.3,0.91,1.820,3.2,26.0,0.91,1.810,1.2 +27.1,0.91,2.950,23.2,26.9,0.91,2.930,22.3 +28.4,0.91,3.540,12.1,28.2,0.91,3.530,11.7 +29.1,0.91,3.160,37.0,28.9,0.91,3.120,35.5 +29.9,0.91,3.220,53.0,29.7,0.91,3.200,52.4 +30.3,0.91,3.870,44.6,30.1,0.91,3.820,45.0 +29.8,0.91,4.740,75.1,29.6,0.91,4.740,74.8 +29.2,0.91,2.380,78.9,29.1,0.91,2.420,78.7 +24.7,0.91,1.550,278.1,24.6,0.91,1.170,293.7 +24.3,0.91,4.590,110.9,24.1,0.91,4.560,114.3 +25.5,0.91,8.070,131.4,25.4,0.91,8.540,131.6 +25.2,0.91,9.260,156.2,25.1,0.91,9.710,156.4 +25.0,0.91,7.830,167.8,25.0,0.91,8.610,164.9 +23.3,0.91,8.820,194.1,23.2,0.91,9.180,192.4 +23.3,0.91,10.220,188.9,23.2,0.91,10.780,187.8 +23.0,0.91,9.600,209.4,22.9,0.91,9.970,208.2 +23.4,0.91,8.770,198.4,23.4,0.91,9.060,195.8 +22.9,0.91,5.800,190.4,22.9,0.91,6.060,186.8 +16.9,0.91,15.700,54.7,16.7,0.91,16.270,53.6 +16.8,0.91,10.230,93.6,16.6,0.91,10.740,93.6 +16.9,0.91,6.720,88.4,16.7,0.91,6.920,89.3 +19.1,0.91,4.480,98.9,18.9,0.91,4.570,99.5 +18.6,0.91,8.330,87.7,18.5,0.91,8.460,87.6 +22.4,0.91,5.670,131.1,22.2,0.91,5.750,130.3 +25.2,0.91,5.260,121.4,24.9,0.91,5.310,121.4 +25.5,0.91,4.460,119.9,25.3,0.91,4.480,120.2 +27.0,0.91,1.950,120.3,26.8,0.91,1.950,120.3 +28.2,0.91,2.340,67.9,27.9,0.91,2.310,69.4 +29.1,0.91,3.260,49.0,28.9,0.91,3.220,49.7 +29.5,0.91,2.720,30.6,29.2,0.91,2.700,32.0 +29.7,0.91,3.280,73.5,29.5,0.91,3.290,73.0 +29.0,0.91,7.370,85.9,28.8,0.91,7.440,85.7 +28.2,0.91,7.570,82.1,28.0,0.91,7.880,82.4 +26.9,0.91,8.360,81.0,26.8,0.91,8.830,81.3 +26.1,0.91,8.220,89.7,26.0,0.91,8.780,89.6 +25.8,0.91,7.810,88.6,25.7,0.91,8.110,88.5 +25.4,0.91,8.650,96.1,25.3,0.91,8.990,96.3 +24.7,0.91,8.930,114.3,24.7,0.91,9.590,113.9 +24.1,0.91,9.790,118.1,24.1,0.91,10.180,118.3 +23.8,0.91,9.350,119.9,23.8,0.91,9.770,119.5 +23.3,0.91,10.160,129.4,23.3,0.91,10.570,129.8 +23.0,0.91,8.850,138.5,23.0,0.91,8.920,138.7 +22.6,0.91,6.860,138.3,22.6,0.91,6.380,139.2 +22.2,0.91,6.360,140.8,22.1,0.91,5.840,140.4 +21.7,0.91,5.630,141.8,22.0,0.91,5.410,141.9 +21.5,0.91,4.580,145.1,21.4,0.91,4.610,145.2 +23.1,0.91,3.890,129.8,22.9,0.91,3.890,130.0 +24.5,0.91,4.020,131.2,24.3,0.91,4.030,131.4 +25.6,0.91,4.090,130.6,25.4,0.91,4.100,130.9 +26.9,0.91,4.360,136.8,26.7,0.91,4.390,137.3 +28.0,0.91,4.220,118.1,27.8,0.91,4.220,118.3 +28.8,0.91,4.740,129.7,28.5,0.91,4.770,129.8 +29.3,0.91,5.430,123.7,29.1,0.91,5.480,124.0 +29.7,0.91,5.520,123.9,29.4,0.91,5.560,124.3 +29.8,0.91,5.290,128.3,29.5,0.91,5.340,128.5 +29.5,0.91,6.810,123.0,29.3,0.91,6.880,123.5 +28.9,0.91,7.810,126.2,28.7,0.91,8.060,126.4 +27.7,0.91,8.970,124.2,27.5,0.91,9.520,124.5 +26.6,0.91,9.690,128.3,26.4,0.91,10.280,128.2 +25.7,0.91,10.220,129.5,25.6,0.91,10.930,129.3 +25.1,0.91,11.040,132.6,25.0,0.91,11.760,132.4 +24.7,0.91,10.550,142.8,24.6,0.91,11.300,142.3 +24.2,0.91,11.620,143.0,24.1,0.91,12.410,143.1 +23.8,0.91,11.390,149.2,23.8,0.91,12.130,149.4 +22.9,0.91,12.330,155.2,22.9,0.91,13.090,155.2 +22.3,0.91,6.530,195.0,22.2,0.91,7.250,191.7 +21.5,0.91,10.570,142.3,21.4,0.91,10.840,143.1 +21.8,0.91,10.500,175.4,22.0,0.91,10.750,175.4 +22.5,0.91,10.420,179.8,22.8,0.91,11.020,179.3 +22.5,0.91,7.320,179.5,22.4,0.91,7.420,179.6 +24.0,0.91,5.570,172.1,23.9,0.91,5.630,172.3 +25.3,0.91,5.970,175.9,25.1,0.91,6.020,176.1 +26.5,0.91,5.320,163.4,26.3,0.91,5.350,163.6 +27.8,0.91,4.750,159.1,27.5,0.91,4.780,159.3 +29.0,0.91,4.900,157.6,28.8,0.91,4.940,157.7 +29.8,0.91,5.690,151.2,29.6,0.91,5.740,151.4 +30.4,0.91,5.900,146.3,30.1,0.91,5.960,146.5 +30.7,0.91,6.970,145.7,30.4,0.91,7.050,146.0 +30.6,0.91,7.510,136.9,30.4,0.91,7.590,137.4 +30.3,0.91,7.990,137.8,30.1,0.91,8.100,138.0 +29.7,0.91,8.520,144.7,29.5,0.91,8.860,144.9 +28.6,0.91,10.520,144.3,28.4,0.91,11.100,144.2 +27.8,0.91,11.090,142.8,27.7,0.91,11.740,142.9 +27.1,0.91,11.740,153.6,26.9,0.91,12.420,153.3 +26.4,0.91,12.660,155.6,26.3,0.91,13.360,155.7 +25.9,0.91,12.630,161.7,25.8,0.91,13.260,161.6 +25.5,0.91,12.740,166.3,25.5,0.91,13.390,166.3 +25.2,0.91,13.380,168.3,25.2,0.91,14.030,168.7 +24.7,0.91,12.980,178.5,24.8,0.91,13.630,179.5 +24.2,0.91,11.970,177.6,24.2,0.91,12.650,178.6 +23.9,0.91,11.700,176.7,23.9,0.91,12.270,178.0 +23.3,0.91,10.790,171.0,23.3,0.91,11.350,172.5 +23.3,0.91,11.210,170.5,23.4,0.91,11.670,171.5 +23.8,0.91,8.590,171.4,23.7,0.91,8.750,171.5 +25.4,0.91,8.380,174.4,25.2,0.91,8.490,174.5 +26.6,0.91,7.700,179.2,26.4,0.91,7.790,179.3 +27.6,0.91,7.490,178.8,27.4,0.91,7.560,178.8 +28.5,0.91,6.950,175.8,28.3,0.91,6.970,175.8 +29.4,0.91,6.620,172.8,29.2,0.91,6.630,172.7 +30.4,0.91,6.390,158.2,30.2,0.91,6.440,158.6 +30.9,0.91,6.010,150.0,30.7,0.91,6.050,150.3 +31.2,0.91,7.130,141.7,30.9,0.91,7.190,142.0 +31.3,0.91,6.640,151.1,31.0,0.91,6.710,151.2 +31.1,0.91,7.000,142.7,30.9,0.91,7.100,143.1 +30.4,0.91,8.810,137.4,30.2,0.91,9.110,137.9 +29.7,0.91,9.680,142.8,29.6,0.91,10.150,142.8 +28.9,0.91,10.120,143.8,28.8,0.91,10.550,143.9 +28.1,0.91,10.870,148.5,27.9,0.91,11.560,148.5 +27.5,0.91,12.600,160.1,27.4,0.91,13.110,159.9 +26.9,0.91,5.190,224.1,26.7,0.91,5.280,217.9 +25.1,0.91,7.130,243.5,25.2,0.91,7.200,238.8 +22.8,0.91,5.590,167.4,22.6,0.91,5.980,168.4 +23.1,0.91,3.380,117.1,23.1,0.91,3.450,127.3 +23.7,0.91,9.720,179.8,23.9,0.91,9.800,180.2 +23.9,0.91,9.710,179.8,24.0,0.91,10.080,180.9 +24.0,0.91,10.390,185.5,24.1,0.91,10.710,186.1 +23.6,0.91,10.960,182.4,23.6,0.91,11.330,182.5 +23.9,0.91,9.980,183.4,23.7,0.91,10.100,183.5 +25.4,0.91,9.410,191.7,25.2,0.91,9.490,191.8 +26.6,0.91,8.330,192.1,26.4,0.91,8.390,192.2 +27.5,0.91,7.780,184.1,27.3,0.91,7.840,184.1 +28.6,0.91,5.790,181.8,28.3,0.91,5.850,181.5 +29.0,0.91,5.080,165.4,28.8,0.91,5.100,165.5 +29.9,0.91,5.090,154.3,29.7,0.91,5.140,154.3 +30.3,0.91,5.270,136.8,30.1,0.91,5.320,137.0 +30.6,0.91,5.390,130.4,30.4,0.91,5.420,130.6 +30.5,0.91,5.720,127.8,30.3,0.91,5.760,128.0 +30.2,0.91,6.770,131.4,30.0,0.91,6.830,131.5 +29.5,0.91,8.410,137.3,29.3,0.91,8.700,137.5 +28.5,0.91,10.400,144.6,28.4,0.91,10.960,144.6 +27.9,0.91,11.320,145.1,27.8,0.91,11.950,145.1 +27.2,0.91,12.530,151.3,27.2,0.91,13.260,151.0 +26.9,0.91,12.980,153.6,26.9,0.91,13.590,153.6 +26.9,0.91,12.420,153.8,26.9,0.91,12.760,154.2 +25.3,0.91,12.440,162.2,25.5,0.91,12.770,162.2 +23.3,0.91,12.180,181.2,23.3,0.91,12.690,182.1 +22.7,0.91,11.240,186.1,22.7,0.91,11.630,187.2 +22.6,0.91,10.780,187.3,22.6,0.91,11.170,187.3 +22.6,0.91,9.620,186.3,22.7,0.91,9.940,186.5 +21.8,0.91,9.750,189.4,21.9,0.91,10.020,190.9 +21.7,0.91,9.790,188.8,21.8,0.91,9.960,190.9 +21.9,0.91,7.370,191.2,21.8,0.91,7.590,192.1 +23.6,0.91,6.140,193.4,23.4,0.91,6.180,193.4 +25.8,0.91,4.550,164.7,25.6,0.91,4.580,164.3 +26.8,0.91,3.360,131.9,26.6,0.91,3.370,131.8 +27.7,0.91,3.340,120.2,27.4,0.91,3.360,120.2 +28.4,0.91,3.560,120.5,28.2,0.91,3.610,120.4 +29.1,0.91,2.100,88.5,28.9,0.91,2.090,89.8 +29.7,0.91,5.070,136.6,29.4,0.91,5.070,136.8 +29.6,0.91,3.970,107.7,29.4,0.91,3.990,108.6 +29.9,0.91,2.850,152.4,29.7,0.91,2.900,152.1 +29.9,0.91,5.530,132.9,29.6,0.91,5.600,133.2 +27.7,0.91,10.200,162.1,27.5,0.91,10.350,162.1 +26.5,0.91,8.670,155.4,26.4,0.91,8.920,155.6 +26.1,0.91,9.890,160.1,25.9,0.91,10.240,160.1 +25.8,0.91,8.900,164.1,25.7,0.91,9.250,164.5 +24.8,0.91,10.320,168.8,24.6,0.91,10.730,168.8 +24.2,0.91,9.750,180.0,24.0,0.91,10.140,181.0 +24.1,0.91,10.480,189.5,24.0,0.91,10.890,190.9 +23.5,0.91,10.870,186.9,23.4,0.91,11.210,188.1 +23.0,0.91,10.180,203.2,22.9,0.91,10.610,204.6 +22.8,0.91,10.600,208.8,22.7,0.91,11.070,209.4 +22.4,0.91,9.630,203.5,22.3,0.91,10.150,204.3 +22.1,0.91,9.040,191.8,22.0,0.91,9.480,192.8 +21.5,0.91,7.210,185.7,21.4,0.91,7.640,186.1 +22.5,0.91,6.500,196.2,22.3,0.91,6.540,196.4 +23.9,0.91,6.140,186.2,23.7,0.91,6.190,186.3 +25.5,0.91,5.570,188.7,25.3,0.91,5.630,188.7 +26.8,0.91,5.550,183.0,26.6,0.91,5.600,182.7 +28.1,0.91,5.400,173.4,27.9,0.91,5.450,174.1 +28.9,0.91,5.850,168.6,28.7,0.91,5.890,168.8 +29.6,0.91,6.070,172.7,29.4,0.91,6.110,172.5 +30.3,0.91,5.030,182.2,30.1,0.91,5.070,180.8 +30.7,0.91,5.120,191.8,30.5,0.91,5.130,190.0 +30.8,0.91,4.610,157.6,30.6,0.91,4.670,157.7 +30.7,0.91,5.620,154.7,30.5,0.91,5.680,155.1 +30.4,0.91,6.760,144.9,30.2,0.91,6.920,145.4 +29.7,0.91,7.520,149.0,29.6,0.91,7.930,148.5 +27.2,0.91,11.600,171.5,27.0,0.91,12.050,171.5 +25.6,0.91,10.490,181.5,25.4,0.91,10.880,181.5 +25.2,0.91,9.270,184.9,25.1,0.91,9.660,185.3 +24.9,0.91,10.140,188.2,24.8,0.91,10.590,189.0 +24.3,0.91,10.230,197.4,24.2,0.91,10.680,198.3 +24.6,0.91,9.750,199.1,24.6,0.91,10.320,199.0 +23.9,0.91,7.950,194.5,24.0,0.91,8.470,196.6 +24.0,0.91,7.130,194.3,24.1,0.91,7.380,194.0 +24.0,0.91,7.410,197.9,24.1,0.91,7.530,197.7 +24.0,0.91,6.970,191.5,24.1,0.91,6.990,191.9 +23.8,0.91,6.280,184.1,24.0,0.91,6.480,184.7 +24.2,0.91,4.870,201.4,24.1,0.91,4.940,201.8 +25.7,0.91,4.280,209.7,25.5,0.91,4.310,210.0 +27.0,0.91,3.680,187.7,26.8,0.91,3.710,187.6 +28.0,0.91,3.740,188.9,27.8,0.91,3.750,188.6 +28.9,0.91,3.860,173.5,28.7,0.91,3.880,173.1 +29.8,0.91,4.060,147.6,29.5,0.91,4.080,147.8 +30.4,0.91,4.690,146.3,30.2,0.91,4.730,146.3 +31.0,0.91,5.960,131.3,30.8,0.91,6.000,131.6 +31.0,0.91,7.460,115.3,30.8,0.91,7.470,115.7 +31.0,0.91,8.010,134.2,30.8,0.91,8.020,134.2 +30.5,0.91,3.160,177.1,30.3,0.91,3.190,171.3 +29.3,0.91,5.690,99.5,29.2,0.91,5.970,102.1 +28.5,0.91,5.560,216.2,28.3,0.91,5.670,215.5 +27.8,0.91,4.500,215.2,27.7,0.91,4.640,218.1 +26.4,0.91,7.350,193.2,26.4,0.91,7.460,194.6 +26.3,0.91,4.690,220.3,26.3,0.91,4.400,218.7 +26.0,0.91,3.580,205.7,25.9,0.91,3.600,201.1 +25.7,0.91,3.350,200.7,25.7,0.91,3.490,196.1 +25.7,0.91,3.750,181.7,25.7,0.91,4.000,181.0 +25.6,0.91,4.410,199.1,25.6,0.91,4.550,199.8 +25.1,0.91,5.420,199.5,25.1,0.91,5.590,199.3 +24.4,0.91,5.600,209.1,24.4,0.91,5.710,210.7 +24.9,0.91,4.900,208.3,25.0,0.91,5.040,206.5 +24.9,0.91,5.070,207.6,25.0,0.91,5.200,206.5 +25.2,0.91,3.940,205.7,25.1,0.91,4.080,205.8 +26.4,0.91,4.110,198.0,26.2,0.91,4.130,197.9 +27.4,0.91,3.670,183.0,27.2,0.91,3.680,182.8 +28.2,0.91,4.040,169.9,28.0,0.91,4.080,169.5 +29.2,0.91,4.390,148.4,29.0,0.91,4.410,148.5 +30.0,0.91,4.930,144.7,29.8,0.91,4.980,144.7 +30.7,0.91,5.260,150.7,30.4,0.91,5.330,150.5 +28.7,0.91,13.870,102.6,28.6,0.91,13.610,103.4 +31.1,0.91,7.760,120.6,30.8,0.91,7.830,120.7 +28.4,0.91,6.120,65.9,28.2,0.91,6.180,66.5 +30.7,0.91,8.020,103.5,30.5,0.91,8.090,103.7 +29.3,0.91,6.950,77.0,29.1,0.91,7.120,78.1 +30.1,0.91,7.310,87.3,29.9,0.91,7.730,87.2 +29.7,0.91,7.370,120.4,29.5,0.91,8.390,117.9 +28.8,0.91,11.000,120.0,28.8,0.91,11.950,120.4 +28.7,0.91,10.450,120.9,28.8,0.91,11.150,121.2 +27.7,0.91,11.180,148.3,27.7,0.91,12.130,150.9 +27.5,0.91,10.990,166.4,27.4,0.91,11.700,167.3 +26.6,0.91,10.580,158.7,26.5,0.91,11.170,159.5 +26.1,0.91,10.290,160.4,26.0,0.91,10.800,161.6 +25.5,0.91,10.260,163.1,25.5,0.91,10.520,164.5 +24.9,0.91,10.600,161.9,25.0,0.91,10.980,162.9 +24.5,0.91,10.370,164.5,24.6,0.91,10.690,165.8 +24.1,0.91,7.800,169.0,24.1,0.91,8.060,169.9 +24.8,0.91,5.710,170.1,24.6,0.91,5.780,170.2 +26.4,0.91,3.590,167.3,26.2,0.91,3.610,167.2 +27.5,0.91,3.310,144.2,27.3,0.91,3.340,144.0 +28.4,0.91,4.370,120.6,28.2,0.91,4.400,120.5 +29.2,0.91,5.160,106.2,29.0,0.91,5.200,106.2 +29.8,0.91,5.310,111.6,29.6,0.91,5.350,111.5 +30.2,0.91,5.760,88.9,30.0,0.91,5.800,89.5 +30.7,0.91,6.440,104.5,30.4,0.91,6.540,105.1 +31.1,0.91,6.910,113.3,30.8,0.91,7.000,113.1 +30.9,0.91,7.790,104.8,30.7,0.91,7.910,104.9 +30.3,0.91,9.050,108.6,30.1,0.91,9.190,108.6 +29.6,0.91,9.230,113.6,29.4,0.91,9.650,114.1 +28.7,0.91,9.000,113.0,28.6,0.91,9.520,113.8 +28.1,0.91,9.480,118.1,28.0,0.91,10.130,118.1 +27.4,0.91,9.760,123.2,27.4,0.91,10.530,123.3 +26.8,0.91,9.540,127.9,26.7,0.91,10.310,128.4 +26.0,0.91,10.300,133.5,25.9,0.91,11.180,133.9 +25.3,0.91,10.360,138.3,25.2,0.91,11.160,138.5 +24.7,0.91,10.150,141.8,24.6,0.91,10.850,142.1 +24.2,0.91,10.350,147.2,24.1,0.91,11.030,148.3 +23.3,0.91,10.270,161.0,23.2,0.91,10.780,162.2 +22.9,0.91,9.260,159.9,22.7,0.91,9.640,159.8 +22.6,0.91,8.140,153.3,22.6,0.91,8.210,153.8 +22.2,0.91,7.830,152.7,22.3,0.91,8.270,153.2 +22.7,0.91,6.240,149.1,22.5,0.91,6.310,149.2 +23.6,0.91,5.710,142.7,23.4,0.91,5.770,142.6 +24.7,0.91,5.230,132.7,24.5,0.91,5.280,132.8 +25.8,0.91,5.380,116.4,25.6,0.91,5.450,116.2 +26.7,0.91,6.230,112.4,26.5,0.91,6.300,112.4 +27.4,0.91,6.130,113.2,27.2,0.91,6.210,113.0 +27.8,0.91,6.870,130.0,27.6,0.91,6.910,129.4 +28.7,0.91,5.250,104.9,28.4,0.91,5.310,105.3 +27.7,0.91,5.390,129.2,27.6,0.91,5.600,128.4 +28.8,0.91,6.840,110.3,28.6,0.91,6.960,110.4 +28.6,0.91,8.710,106.9,28.4,0.91,8.850,107.0 +28.1,0.91,7.460,117.5,27.9,0.91,7.810,117.6 +27.2,0.91,8.890,112.9,27.1,0.91,9.470,113.1 +26.5,0.91,8.400,117.4,26.4,0.91,8.940,117.9 +25.9,0.91,9.030,123.1,25.9,0.91,9.600,123.6 +25.5,0.91,9.170,133.6,25.5,0.91,9.920,134.4 +23.9,0.91,9.830,151.1,23.7,0.91,10.390,152.9 +23.2,0.91,8.280,171.0,23.0,0.91,8.900,171.4 +22.7,0.91,9.600,170.4,22.6,0.91,9.830,170.8 +22.4,0.91,8.120,167.3,22.3,0.91,8.190,168.5 +21.7,0.91,7.710,167.7,21.7,0.91,7.670,168.7 +21.2,0.91,7.390,174.9,21.1,0.91,7.450,176.7 +20.7,0.91,7.150,178.4,20.7,0.91,7.390,180.1 +20.5,0.91,5.540,179.0,20.4,0.91,5.830,179.9 +21.3,0.91,4.580,179.5,21.1,0.91,4.600,179.6 +22.6,0.91,3.140,182.6,22.4,0.91,3.150,182.7 +23.7,0.91,3.120,172.2,23.5,0.91,3.130,172.2 +24.0,0.91,3.960,161.8,23.9,0.91,3.910,164.7 +25.5,0.91,4.100,171.9,25.3,0.91,4.100,171.6 +24.6,0.91,6.130,170.1,24.4,0.91,6.170,169.7 +26.1,0.91,5.270,153.1,25.9,0.91,5.290,154.2 +23.6,0.91,10.670,181.3,23.4,0.91,10.690,181.2 +24.8,0.91,9.180,175.4,24.6,0.91,9.250,175.6 +25.1,0.91,7.950,180.2,24.9,0.91,8.020,180.6 +24.9,0.91,8.520,182.0,24.7,0.91,8.560,182.0 +24.3,0.91,7.740,177.8,24.1,0.91,7.860,178.0 +24.3,0.91,8.740,181.2,24.1,0.91,9.040,181.8 +24.3,0.91,8.000,194.1,24.2,0.91,8.400,194.0 +24.1,0.91,8.340,186.3,24.0,0.91,8.790,186.5 +22.5,0.91,10.000,164.7,22.4,0.91,10.670,165.0 +22.3,0.91,10.140,173.5,22.2,0.91,10.620,174.3 +22.4,0.91,10.220,188.6,22.2,0.91,10.590,189.0 +21.7,0.91,10.920,198.2,21.6,0.91,11.510,199.1 +21.3,0.91,10.570,195.9,21.2,0.91,11.100,196.8 +20.9,0.91,11.800,200.9,20.8,0.91,12.480,201.6 +20.8,0.91,12.180,205.0,20.8,0.91,12.920,205.2 +20.6,0.91,11.330,206.2,20.5,0.91,12.030,206.4 +20.3,0.91,10.820,209.8,20.3,0.91,11.450,210.1 +21.2,0.91,8.870,207.0,21.0,0.91,8.990,207.2 +22.7,0.91,8.740,208.4,22.5,0.91,8.840,208.5 +24.2,0.91,7.660,205.7,24.0,0.91,7.740,205.8 +25.7,0.91,7.400,203.4,25.4,0.91,7.480,203.5 +27.1,0.91,7.090,199.3,26.8,0.91,7.170,199.4 +28.3,0.91,6.850,194.3,28.0,0.91,6.920,194.5 +29.2,0.91,7.550,191.3,29.0,0.91,7.630,191.4 +29.8,0.91,6.870,190.4,29.6,0.91,6.950,190.5 +30.0,0.91,7.030,186.3,29.8,0.91,7.100,186.5 +30.2,0.91,6.810,196.9,30.0,0.91,6.880,196.5 +30.2,0.91,5.390,194.1,30.0,0.91,5.480,193.9 +30.1,0.91,5.600,169.1,29.9,0.91,5.700,172.9 +29.8,0.91,8.160,160.0,29.7,0.91,8.070,161.1 +29.5,0.91,9.430,163.7,29.3,0.91,9.550,164.9 +29.1,0.91,9.400,173.6,29.0,0.91,9.580,174.6 +28.5,0.91,8.590,184.6,28.4,0.91,8.620,185.2 +27.4,0.91,7.960,180.8,27.4,0.91,8.040,182.5 +27.0,0.91,6.100,192.9,27.0,0.91,6.080,194.8 +26.3,0.91,6.790,213.2,26.2,0.91,6.980,213.1 +25.6,0.91,7.280,213.5,25.5,0.91,7.570,214.6 +25.1,0.91,7.730,213.4,25.0,0.91,8.070,213.5 +24.5,0.91,8.050,214.0,24.5,0.91,8.390,215.0 +23.8,0.91,8.820,206.1,23.8,0.91,9.250,207.1 +23.2,0.91,8.960,207.1,23.1,0.91,9.440,208.3 +23.7,0.91,7.610,211.9,23.5,0.91,7.730,212.3 +25.1,0.91,6.950,209.3,24.9,0.91,7.010,209.4 +26.5,0.91,6.050,204.8,26.3,0.91,6.110,204.7 +27.6,0.91,6.020,194.9,27.4,0.91,6.080,195.1 +28.6,0.91,5.480,191.4,28.4,0.91,5.520,191.5 +29.5,0.91,5.690,191.3,29.2,0.91,5.710,191.3 +30.4,0.91,5.380,182.8,30.1,0.91,5.420,183.0 +30.9,0.91,4.760,195.5,30.7,0.91,4.790,195.3 +31.2,0.91,4.330,186.5,31.0,0.91,4.360,186.3 +31.5,0.91,4.910,192.5,31.3,0.91,4.950,192.3 +31.4,0.91,3.710,179.6,31.2,0.91,3.740,179.3 +31.0,0.91,4.340,180.6,30.8,0.91,4.460,182.3 +30.9,0.91,5.570,179.2,30.7,0.91,5.610,178.5 +30.4,0.91,8.470,167.6,30.3,0.91,8.670,167.8 +30.0,0.91,9.380,173.2,29.9,0.91,9.650,174.3 +29.0,0.91,8.350,180.9,29.0,0.91,8.610,184.0 +28.8,0.91,10.150,185.9,28.7,0.91,10.350,186.0 +28.1,0.91,9.080,199.2,28.1,0.91,9.400,201.6 +27.6,0.91,8.840,213.6,27.6,0.91,9.170,215.5 +27.0,0.91,10.320,224.6,27.1,0.91,10.970,225.9 +26.7,0.91,9.780,230.0,26.8,0.91,10.260,229.7 +26.2,0.91,11.090,229.5,26.3,0.91,11.470,229.3 +26.0,0.91,11.100,235.2,26.2,0.91,11.200,234.4 +25.6,0.91,10.380,236.4,25.9,0.91,10.700,236.0 +25.6,0.91,6.610,242.0,25.6,0.91,7.540,241.7 +27.4,0.91,5.320,241.6,27.2,0.91,5.380,241.2 +28.6,0.91,4.910,219.5,28.4,0.91,4.950,219.5 +29.7,0.91,3.990,209.2,29.4,0.91,4.020,209.2 +30.5,0.91,4.140,204.5,30.2,0.91,4.150,204.5 +31.2,0.91,4.140,191.4,31.0,0.91,4.160,191.7 +31.9,0.91,3.550,183.9,31.6,0.91,3.560,184.3 +32.2,0.91,4.220,171.0,32.0,0.91,4.220,171.3 +32.8,0.91,3.750,194.7,32.5,0.91,3.780,194.5 +32.6,0.91,4.370,193.5,32.5,0.91,4.330,193.4 +32.6,0.91,4.540,163.1,32.4,0.91,4.540,163.9 +32.3,0.91,3.950,191.5,32.1,0.91,4.010,191.6 +32.0,0.91,5.760,188.0,31.8,0.91,5.960,188.2 +31.8,0.91,5.400,186.8,31.6,0.91,5.240,187.6 +31.1,0.91,6.680,168.8,31.1,0.91,7.140,167.8 +30.4,0.91,6.950,172.8,30.5,0.91,7.420,173.2 +29.9,0.91,6.280,205.5,29.9,0.91,6.310,208.4 +29.4,0.91,6.660,231.2,29.3,0.91,6.940,233.0 +28.9,0.91,7.130,235.1,28.8,0.91,7.550,236.4 +27.9,0.91,8.280,231.5,27.9,0.91,8.820,233.5 +27.8,0.91,6.470,232.3,27.8,0.91,6.980,234.8 +27.1,0.91,10.520,238.3,27.3,0.91,11.040,239.6 +26.4,0.91,9.690,238.9,26.6,0.91,10.270,240.6 +26.4,0.91,9.270,245.4,26.7,0.91,9.730,246.3 +26.4,0.91,7.010,243.1,26.4,0.91,7.610,244.4 +28.6,0.91,5.760,245.2,28.4,0.91,5.800,245.4 +30.0,0.91,4.910,242.0,29.8,0.91,4.940,242.0 +30.7,0.91,3.740,213.2,30.5,0.91,3.750,213.2 +31.5,0.91,3.270,195.4,31.3,0.91,3.290,195.3 +32.1,0.91,3.790,178.5,31.9,0.91,3.790,178.6 +32.6,0.91,3.680,188.0,32.4,0.91,3.700,187.8 +33.0,0.91,4.040,188.2,32.8,0.91,4.020,188.3 +33.1,0.90,4.430,178.2,32.9,0.90,4.430,178.3 +33.5,0.90,4.040,188.5,33.2,0.90,4.070,187.0 +33.4,0.90,3.410,201.6,33.1,0.90,3.430,201.1 +33.0,0.90,4.280,180.9,32.8,0.90,4.300,181.6 +32.6,0.90,6.470,169.9,32.5,0.90,6.530,170.2 +32.0,0.90,8.530,173.4,31.9,0.90,8.650,173.2 +31.8,0.90,9.390,173.0,31.7,0.90,9.450,173.4 +31.5,0.90,8.740,178.1,31.4,0.90,8.740,178.1 +30.4,0.90,8.810,210.9,30.4,0.90,8.780,212.3 +29.4,0.90,10.510,230.4,29.4,0.90,11.270,231.3 +28.6,0.90,11.810,228.8,28.6,0.90,12.560,229.2 +27.6,0.91,11.730,228.7,27.6,0.91,12.520,229.1 +26.8,0.91,11.960,230.0,26.8,0.91,12.790,230.4 +26.3,0.91,12.070,230.0,26.4,0.91,12.870,230.8 +25.8,0.91,11.860,233.3,25.9,0.91,12.600,234.5 +25.3,0.91,9.950,232.1,25.3,0.91,10.430,233.6 +25.8,0.91,6.950,248.1,25.7,0.91,7.400,248.2 +27.3,0.91,6.180,245.5,27.2,0.91,6.230,245.8 +29.4,0.91,4.300,267.0,29.2,0.91,4.350,267.3 +30.9,0.91,3.100,310.7,30.7,0.91,3.110,310.4 +31.9,0.91,2.270,337.9,31.6,0.91,2.270,338.0 +32.8,0.91,2.450,39.0,32.5,0.91,2.430,38.6 +33.3,0.91,1.600,37.5,33.1,0.91,1.640,38.1 +33.5,0.90,2.690,46.5,33.3,0.90,2.650,46.2 +32.8,0.90,5.860,206.6,32.6,0.90,5.860,205.7 +33.5,0.90,4.990,173.3,33.3,0.90,5.030,173.3 +32.9,0.90,1.610,144.6,32.7,0.90,1.640,143.7 +32.8,0.90,2.690,196.8,32.6,0.90,2.760,195.5 +31.3,0.90,10.680,173.2,31.2,0.90,10.960,174.6 +30.9,0.91,9.370,191.4,30.8,0.91,9.830,192.0 +29.5,0.91,8.500,180.7,29.4,0.91,8.600,182.1 +29.2,0.91,9.840,184.8,29.2,0.91,10.200,186.1 +29.4,0.91,9.270,196.9,29.3,0.91,9.310,197.6 +28.6,0.91,7.810,195.0,28.8,0.91,7.820,199.3 +28.4,0.91,6.580,207.8,28.4,0.91,6.350,209.5 +27.1,0.91,4.510,239.1,27.2,0.91,4.620,235.7 +27.7,0.91,3.690,242.2,27.7,0.91,3.730,246.4 +27.9,0.91,4.410,257.3,27.9,0.91,4.410,261.3 +25.3,0.91,4.190,304.3,25.4,0.91,4.010,305.3 +24.7,0.91,5.220,8.1,24.9,0.91,4.800,12.4 +24.6,0.91,3.390,350.3,24.4,0.91,3.420,351.8 +25.9,0.91,3.290,6.0,25.7,0.91,3.270,5.7 +27.2,0.91,3.230,28.9,27.0,0.91,3.220,29.3 +28.0,0.91,3.210,30.2,27.8,0.91,3.220,31.1 +27.2,0.91,6.680,17.2,27.1,0.91,6.660,17.7 +30.0,0.91,4.480,64.0,29.8,0.91,4.510,63.9 +30.1,0.91,7.530,56.1,29.9,0.91,7.570,56.1 +30.7,0.91,6.370,58.8,30.4,0.91,6.430,58.7 +29.2,0.91,4.750,20.0,29.1,0.91,4.790,24.2 +27.4,0.91,3.170,144.8,27.2,0.91,3.250,145.3 +28.0,0.91,4.460,120.7,28.0,0.91,4.820,122.5 +27.9,0.91,5.170,130.3,27.8,0.91,5.500,129.8 +25.8,0.91,6.390,175.8,25.8,0.91,6.630,173.0 +26.8,0.91,6.370,159.2,26.9,0.91,6.670,156.6 +26.9,0.91,5.420,159.7,27.1,0.91,5.760,154.6 +27.3,0.91,4.770,143.1,27.3,0.91,4.950,141.0 +27.1,0.91,5.080,146.8,27.3,0.91,5.400,144.0 +26.8,0.91,4.390,144.7,26.9,0.91,4.660,140.6 +26.0,0.91,6.430,155.5,26.1,0.91,6.450,156.8 +26.0,0.91,5.830,169.4,26.1,0.91,5.810,168.8 +26.3,0.91,5.630,172.9,26.3,0.91,5.490,171.5 +26.7,0.91,4.690,173.6,26.6,0.91,4.630,172.1 +26.7,0.91,3.320,169.6,26.7,0.91,3.180,166.2 +22.9,0.91,2.620,52.4,23.5,0.91,2.280,57.7 +22.7,0.91,2.470,25.7,23.0,0.91,2.890,27.2 +24.4,0.91,2.770,21.0,24.2,0.91,2.780,19.8 +27.0,0.91,2.120,67.9,26.8,0.91,2.110,69.5 +28.1,0.91,2.660,43.0,27.9,0.91,2.650,44.0 +29.1,0.91,3.260,35.3,28.9,0.91,3.250,36.4 +30.0,0.91,3.930,39.0,29.8,0.91,3.950,39.7 +30.9,0.91,4.400,59.8,30.7,0.91,4.430,60.1 +31.2,0.91,4.440,47.8,31.0,0.91,4.450,48.4 +31.5,0.91,5.560,67.7,31.3,0.91,5.530,67.5 +31.6,0.91,6.480,61.9,31.4,0.91,6.570,61.9 +31.2,0.91,5.420,61.3,31.0,0.91,5.480,61.3 +30.5,0.91,5.830,55.3,30.4,0.91,5.900,55.9 +30.5,0.91,5.390,63.9,30.4,0.91,5.720,67.0 +29.8,0.91,9.350,87.5,29.7,0.91,9.610,87.2 +29.0,0.91,7.410,104.0,29.0,0.91,7.980,105.7 +28.8,0.91,5.860,122.0,28.7,0.91,6.200,123.8 +28.2,0.91,5.800,112.1,28.0,0.91,5.510,112.8 +27.2,0.91,7.410,98.3,27.0,0.91,8.200,100.0 +26.7,0.91,8.000,97.1,26.8,0.91,8.870,99.6 +26.0,0.91,7.010,92.3,25.9,0.91,7.660,93.5 +25.2,0.91,6.620,90.6,25.2,0.91,7.330,93.2 +24.6,0.91,4.550,99.2,24.7,0.91,4.610,102.0 +24.9,0.91,3.140,74.9,25.4,0.91,3.320,81.0 +23.9,0.91,3.200,69.8,24.4,0.91,3.200,76.0 +23.5,0.91,2.910,63.3,24.0,0.91,3.240,68.6 +24.6,0.91,2.920,47.1,24.5,0.91,2.860,48.5 +26.9,0.91,2.400,45.7,26.7,0.91,2.360,46.3 +28.6,0.91,3.430,46.4,28.4,0.91,3.420,46.7 +29.6,0.91,4.280,42.4,29.3,0.91,4.300,42.6 +30.5,0.91,4.790,45.3,30.3,0.91,4.810,45.6 +31.2,0.91,5.650,45.7,31.0,0.91,5.680,46.0 +31.6,0.91,5.890,48.6,31.3,0.91,5.920,48.8 +31.8,0.91,5.760,66.4,31.6,0.91,5.820,66.2 +31.9,0.91,6.070,48.5,31.7,0.91,6.140,49.1 +31.9,0.91,4.820,72.3,31.7,0.91,4.910,73.4 +31.5,0.91,5.980,69.2,31.4,0.91,6.140,71.1 +30.5,0.91,6.660,73.0,30.5,0.91,7.320,73.4 +29.8,0.91,7.380,85.2,29.7,0.91,8.060,84.8 +29.2,0.91,7.000,88.9,29.3,0.91,7.570,89.9 +28.9,0.91,5.870,106.3,29.0,0.91,6.170,110.1 +28.6,0.91,9.100,124.0,28.6,0.91,9.180,125.7 +27.3,0.91,9.930,134.5,27.5,0.91,10.310,136.8 +27.5,0.91,8.850,159.1,27.5,0.91,8.750,163.2 +27.4,0.91,7.720,205.0,27.6,0.91,7.710,208.9 +26.6,0.91,7.360,209.5,26.8,0.91,7.420,211.2 +26.1,0.91,7.410,211.2,26.1,0.91,7.600,210.5 +25.8,0.91,7.520,218.8,25.9,0.91,7.620,221.0 +25.9,0.91,7.020,225.7,25.8,0.91,7.190,226.6 +25.3,0.91,5.480,218.3,25.2,0.91,6.120,220.2 +26.5,0.91,4.770,225.3,26.3,0.91,4.790,225.5 +27.8,0.91,2.750,223.0,27.6,0.91,2.760,222.7 +28.7,0.91,2.560,190.8,28.5,0.91,2.560,190.6 +29.5,0.91,2.680,164.2,29.2,0.91,2.680,163.9 +30.1,0.91,3.250,148.7,29.9,0.91,3.250,148.8 +30.2,0.91,3.120,90.2,30.0,0.91,3.110,91.7 +30.9,0.91,3.370,121.7,30.7,0.91,3.380,122.0 +30.4,0.91,7.000,40.2,30.2,0.91,6.900,41.8 +28.4,0.91,11.960,151.1,28.2,0.91,12.040,151.1 +28.7,0.91,9.270,147.1,28.5,0.91,9.390,147.2 +28.5,0.91,7.250,153.8,28.4,0.91,7.500,153.6 +28.7,0.91,7.600,165.7,28.6,0.91,7.990,165.2 +28.5,0.91,6.150,154.8,28.5,0.91,6.520,150.6 +27.2,0.91,5.400,206.6,27.3,0.91,5.250,187.5 +27.7,0.91,5.650,175.6,27.6,0.91,6.040,176.8 +26.7,0.91,7.340,197.2,26.5,0.91,7.460,198.3 +25.8,0.91,8.910,209.1,25.8,0.91,9.180,208.0 +25.6,0.91,8.710,220.5,25.6,0.91,8.930,218.8 +25.5,0.91,8.180,208.7,25.5,0.91,8.390,204.8 +24.4,0.91,7.520,203.5,24.4,0.91,7.750,200.6 +24.2,0.91,6.900,202.8,24.2,0.91,7.150,203.2 +24.3,0.91,6.100,206.6,24.4,0.91,6.210,208.4 +24.1,0.91,5.510,211.4,24.2,0.91,5.530,213.4 +24.3,0.91,3.840,213.7,24.4,0.91,4.330,216.8 +25.8,0.91,3.400,221.1,25.6,0.91,3.410,221.3 +27.2,0.91,2.630,198.3,26.9,0.91,2.640,197.8 +28.1,0.91,2.940,169.4,27.9,0.91,2.950,169.2 +29.0,0.91,3.460,149.9,28.8,0.91,3.470,149.9 +29.6,0.91,4.000,158.9,29.4,0.91,4.020,158.6 +30.4,0.91,4.160,156.1,30.1,0.91,4.190,156.1 +30.8,0.91,4.410,139.0,30.6,0.91,4.410,139.3 +30.8,0.91,3.360,152.6,30.6,0.91,3.360,152.6 +30.7,0.91,6.430,144.0,30.5,0.91,6.420,144.7 +30.8,0.91,4.790,179.4,30.6,0.91,4.830,179.0 +30.6,0.91,5.230,172.0,30.4,0.91,5.310,170.8 +30.0,0.91,6.990,153.5,29.9,0.91,7.210,153.5 +29.6,0.91,9.740,150.0,29.5,0.91,9.920,150.3 +29.3,0.91,10.190,151.4,29.2,0.91,10.340,151.8 +27.0,0.91,10.630,186.0,26.9,0.91,10.700,191.5 +26.6,0.91,8.470,210.2,26.6,0.91,8.860,208.6 +26.7,0.91,7.370,203.8,26.7,0.91,7.570,201.5 +26.5,0.91,7.320,195.1,26.5,0.91,7.550,195.3 +25.7,0.91,8.310,186.1,25.8,0.91,8.400,187.0 +25.1,0.91,8.120,197.4,25.3,0.91,7.980,200.7 +24.4,0.91,9.440,195.6,24.6,0.91,9.560,198.0 +24.3,0.91,8.600,209.4,24.3,0.91,8.730,212.2 +24.2,0.91,8.200,215.8,24.4,0.91,8.510,218.0 +24.4,0.91,5.870,218.8,24.4,0.91,6.620,220.1 +26.1,0.91,5.270,214.9,25.9,0.91,5.310,215.1 +27.5,0.91,4.070,199.6,27.3,0.91,4.100,199.4 +28.5,0.91,3.790,169.9,28.3,0.91,3.800,169.7 +29.2,0.91,3.670,146.2,28.9,0.91,3.690,146.1 +29.9,0.91,3.930,139.7,29.7,0.91,3.970,139.6 +30.3,0.91,4.840,139.7,30.1,0.91,4.870,139.7 +30.6,0.91,3.070,154.0,30.3,0.91,3.090,153.1 +30.7,0.91,4.660,117.1,30.5,0.91,4.690,117.2 +30.9,0.91,5.180,152.8,30.7,0.91,5.210,152.2 +30.7,0.91,5.890,123.0,30.5,0.91,5.960,123.3 +30.3,0.91,7.680,129.8,30.1,0.91,7.710,128.9 +29.6,0.91,8.810,127.7,29.5,0.91,9.140,127.6 +28.5,0.91,10.240,122.1,28.5,0.91,11.050,122.0 +28.1,0.91,9.810,129.8,28.1,0.91,10.370,131.2 +26.5,0.91,8.920,184.7,26.4,0.91,9.310,186.5 +25.6,0.91,9.560,179.1,25.5,0.91,9.820,179.6 +24.9,0.91,9.000,184.8,24.9,0.91,9.120,186.1 +24.3,0.91,9.470,178.2,24.4,0.91,9.670,180.0 +23.4,0.91,9.320,178.2,23.5,0.91,9.490,180.0 +22.9,0.91,9.160,182.2,23.0,0.91,9.270,183.4 +22.4,0.91,7.920,196.6,22.6,0.91,7.800,200.5 +22.6,0.91,5.890,196.8,22.8,0.91,5.700,199.4 +22.3,0.91,5.420,197.0,22.4,0.91,5.260,198.4 +22.1,0.91,5.310,191.6,22.1,0.91,5.510,192.2 +23.9,0.91,3.540,195.0,23.7,0.91,3.520,195.0 +25.4,0.91,2.810,171.8,25.2,0.91,2.800,171.3 +26.6,0.91,2.930,134.4,26.4,0.91,2.960,134.1 +27.6,0.91,3.470,129.6,27.4,0.91,3.490,129.8 +28.4,0.91,4.940,130.4,28.1,0.91,4.970,130.5 +28.9,0.91,4.970,131.3,28.7,0.91,5.020,131.5 +29.4,0.91,5.230,134.8,29.1,0.91,5.290,134.9 +29.4,0.91,5.890,138.2,29.2,0.91,5.930,138.3 +29.5,0.91,6.520,139.7,29.3,0.91,6.580,139.6 +28.5,0.91,9.300,162.6,28.3,0.91,9.350,162.5 +25.6,0.91,6.280,154.7,25.5,0.91,6.660,150.4 +26.4,0.91,7.800,167.9,26.5,0.91,8.130,165.9 +22.9,0.91,9.670,194.4,22.7,0.91,10.030,194.6 +23.3,0.91,9.010,183.8,23.4,0.91,9.520,183.1 +22.7,0.91,10.350,187.8,22.6,0.91,10.790,187.6 +22.3,0.91,10.390,190.6,22.2,0.91,10.880,190.7 +21.9,0.91,8.740,192.4,21.9,0.91,9.220,192.8 +21.9,0.91,9.050,186.3,21.8,0.91,9.560,186.3 +21.6,0.91,8.680,181.0,21.6,0.91,9.120,181.4 +21.3,0.91,8.900,182.8,21.3,0.91,9.340,183.4 +20.9,0.91,8.620,182.7,20.8,0.91,8.900,184.3 +20.3,0.91,8.190,187.2,20.3,0.91,8.340,189.4 +19.7,0.91,8.100,188.1,19.7,0.91,8.320,189.2 +20.3,0.91,6.900,190.7,20.1,0.91,6.970,190.9 +21.4,0.91,6.100,185.6,21.2,0.91,6.150,185.7 +22.5,0.91,6.080,180.9,22.3,0.91,6.140,180.9 +23.8,0.91,5.990,174.8,23.6,0.91,6.040,174.9 +25.0,0.91,6.350,171.1,24.8,0.91,6.400,171.1 +26.1,0.91,6.490,173.4,25.8,0.91,6.560,173.3 +27.0,0.91,6.760,163.9,26.7,0.91,6.840,164.0 +27.6,0.91,7.430,160.8,27.4,0.91,7.500,160.8 +28.1,0.91,7.480,164.2,27.9,0.91,7.550,163.8 +27.5,0.91,5.270,119.8,27.4,0.91,5.400,122.0 +27.7,0.91,9.100,148.7,27.5,0.91,9.240,148.8 +22.2,0.91,13.290,146.0,22.0,0.91,13.780,146.2 +23.2,0.91,11.600,152.3,23.3,0.91,12.320,152.7 +22.8,0.91,11.760,161.5,22.6,0.91,12.150,161.6 +22.4,0.91,12.130,172.1,22.2,0.91,12.570,171.9 +21.9,0.91,11.430,171.8,21.7,0.91,11.890,171.7 +21.3,0.91,11.570,171.7,21.1,0.91,12.110,171.4 +20.8,0.91,10.250,171.4,20.7,0.91,10.770,171.0 +20.4,0.91,10.350,162.9,20.3,0.91,11.060,162.6 +20.0,0.91,9.860,176.2,19.9,0.91,10.380,176.4 +19.4,0.91,9.700,177.0,19.3,0.91,10.200,177.2 +19.2,0.91,9.680,174.0,19.1,0.91,10.100,174.5 +19.2,0.91,9.090,173.7,19.1,0.91,9.520,174.2 +19.2,0.91,8.410,171.2,19.1,0.91,8.990,172.0 +19.6,0.91,7.030,169.7,19.5,0.91,7.170,170.2 +21.1,0.91,7.320,172.1,20.9,0.91,7.430,172.2 +22.3,0.91,6.650,163.5,22.1,0.91,6.730,163.5 +23.3,0.91,7.330,161.2,23.1,0.91,7.400,161.0 +23.8,0.91,7.770,151.6,23.6,0.91,7.830,151.8 +25.2,0.91,7.660,152.7,24.9,0.91,7.750,152.6 +26.6,0.91,8.330,154.6,26.3,0.91,8.440,154.7 +26.8,0.91,8.400,143.0,26.6,0.91,8.480,143.3 +27.5,0.91,8.490,157.3,27.3,0.91,8.600,157.1 +27.6,0.91,8.850,146.1,27.4,0.91,9.010,146.3 +27.2,0.91,9.630,141.7,27.0,0.91,9.780,141.8 +23.8,0.91,10.620,136.3,23.7,0.91,11.420,136.7 +24.1,0.91,11.780,152.0,23.9,0.91,12.130,151.9 +23.9,0.91,10.180,153.9,23.8,0.91,10.620,153.9 +23.5,0.91,10.330,163.3,23.3,0.91,10.740,163.2 +22.5,0.91,10.430,163.3,22.3,0.91,10.940,163.2 +21.8,0.91,9.410,165.3,21.7,0.91,9.890,165.1 +21.3,0.91,8.640,172.1,21.2,0.91,9.110,172.2 +20.7,0.91,8.660,170.0,20.5,0.91,9.100,169.8 +20.4,0.91,8.130,170.1,20.2,0.91,8.380,170.2 +20.1,0.91,8.310,173.2,19.9,0.91,8.780,173.5 +19.9,0.91,8.140,166.8,19.7,0.91,8.600,167.3 +19.7,0.91,7.400,167.5,19.5,0.91,7.850,167.5 +19.5,0.91,7.390,166.7,19.4,0.91,7.740,167.0 +20.2,0.91,6.310,161.3,20.0,0.91,6.380,161.5 +20.3,0.91,5.620,167.1,20.2,0.91,5.690,167.2 +22.5,0.91,5.670,161.9,22.3,0.91,5.750,162.3 +24.1,0.91,5.550,156.7,23.9,0.91,5.620,156.6 +25.1,0.91,5.940,151.8,24.9,0.91,6.020,151.8 +25.8,0.91,6.370,142.5,25.6,0.91,6.440,143.0 +26.1,0.91,7.840,158.6,25.9,0.91,7.830,158.5 +26.5,0.91,4.280,129.5,26.3,0.91,4.560,130.7 +27.1,0.91,7.300,123.5,26.9,0.91,7.370,123.8 +27.2,0.91,6.380,146.0,27.0,0.91,6.460,146.0 +27.3,0.91,7.010,140.8,27.1,0.91,7.140,141.0 +27.0,0.91,7.320,148.0,26.9,0.91,7.620,149.2 +25.5,0.91,8.380,160.0,25.4,0.91,8.900,160.1 +25.2,0.91,7.940,173.0,25.1,0.91,8.490,173.1 +24.6,0.91,7.050,183.6,24.4,0.91,7.430,184.7 +23.9,0.91,7.680,180.0,23.7,0.91,8.120,181.6 +23.3,0.91,7.630,187.5,23.1,0.91,8.410,188.0 +22.7,0.91,9.710,180.2,22.5,0.91,10.390,181.1 +22.3,0.91,7.740,185.9,22.2,0.91,8.340,189.7 +22.0,0.91,7.890,189.9,22.0,0.91,8.260,191.8 +21.7,0.91,8.110,188.7,21.7,0.91,8.260,190.8 +21.7,0.91,7.190,197.8,21.7,0.91,7.290,198.8 +21.4,0.91,6.430,189.6,21.4,0.91,6.420,190.5 +21.5,0.91,5.210,191.9,21.6,0.91,5.440,191.8 +21.4,0.91,4.550,184.0,21.4,0.91,5.050,184.3 +22.9,0.91,3.420,182.6,22.7,0.91,3.440,182.2 +24.2,0.91,3.600,151.2,24.0,0.91,3.650,150.9 +25.4,0.91,4.000,138.0,25.2,0.91,4.050,137.9 +26.5,0.91,5.320,127.0,26.3,0.91,5.370,127.1 +27.1,0.91,4.610,126.4,26.9,0.91,4.660,126.2 +28.1,0.91,5.820,118.7,27.9,0.91,5.880,118.9 +28.6,0.91,5.720,110.9,28.4,0.91,5.770,111.3 +29.0,0.91,5.780,122.8,28.8,0.91,5.850,122.9 +29.0,0.91,6.180,131.3,28.8,0.91,6.270,131.3 +28.8,0.91,5.730,131.8,28.6,0.91,5.810,131.8 +28.4,0.91,6.070,134.9,28.3,0.91,6.210,135.5 +28.1,0.91,7.620,145.9,28.0,0.91,7.810,146.5 +26.3,0.91,8.670,127.9,26.1,0.91,8.780,127.8 +26.1,0.91,8.420,127.2,26.1,0.91,8.510,128.0 +25.9,0.91,8.740,137.9,26.1,0.91,8.640,138.3 +26.4,0.91,8.170,150.1,26.5,0.91,7.900,152.1 +26.4,0.91,6.350,162.4,26.4,0.91,6.100,162.1 +25.6,0.91,5.840,170.8,25.5,0.91,5.930,171.9 +25.2,0.91,5.830,180.7,25.2,0.91,5.920,182.4 +24.9,0.91,6.560,195.0,25.0,0.91,6.740,196.1 +25.0,0.91,6.650,206.0,25.1,0.91,6.720,205.9 +25.1,0.91,6.250,211.1,25.1,0.91,6.320,210.0 +24.9,0.91,5.380,210.9,25.0,0.91,5.320,209.0 +23.6,0.91,2.410,209.8,23.8,0.91,3.020,209.0 +25.3,0.91,1.750,204.9,25.1,0.91,1.800,204.9 +26.4,0.91,2.000,178.8,26.2,0.91,2.000,178.6 +27.2,0.91,2.670,140.8,27.0,0.91,2.700,140.5 +27.8,0.91,3.270,127.2,27.6,0.91,3.300,127.0 +28.5,0.91,4.170,131.3,28.3,0.91,4.210,130.7 +29.0,0.91,4.920,119.5,28.8,0.91,4.980,119.6 +29.1,0.91,5.430,147.9,28.9,0.91,5.500,146.8 +29.8,0.91,5.880,130.7,29.6,0.91,5.970,130.8 +29.7,0.91,5.390,126.1,29.5,0.91,5.470,126.6 +29.4,0.91,6.060,130.0,29.2,0.91,6.100,130.2 +29.2,0.91,5.710,145.9,29.0,0.91,5.700,145.3 +28.7,0.91,6.200,133.9,28.6,0.91,6.410,135.5 +28.7,0.91,7.110,143.5,28.6,0.91,7.070,143.6 +27.7,0.91,7.180,126.6,27.6,0.91,7.480,129.3 +26.1,0.91,12.210,121.7,26.3,0.91,12.300,122.7 +25.6,0.91,11.790,118.3,25.8,0.91,12.890,120.2 +23.1,0.91,6.050,71.6,23.0,0.91,6.470,77.7 +22.8,0.91,5.090,85.6,22.8,0.91,5.820,91.6 +23.7,0.91,7.190,131.8,23.9,0.91,7.550,137.4 +23.4,0.91,5.400,128.3,23.5,0.91,5.490,136.4 +23.4,0.91,4.580,145.3,23.6,0.91,4.780,150.3 +23.6,0.91,5.670,168.6,23.8,0.91,5.500,174.1 +24.0,0.91,5.520,186.8,24.3,0.91,5.240,190.6 +23.6,0.91,4.970,185.1,24.1,0.91,5.010,190.7 +25.3,0.91,2.660,204.9,25.1,0.91,2.670,206.4 +26.4,0.91,2.750,195.2,26.2,0.91,2.760,195.2 +27.3,0.91,3.230,165.4,27.1,0.91,3.260,165.2 +27.9,0.91,4.210,160.2,27.7,0.91,4.230,160.1 +28.4,0.91,4.730,159.4,28.2,0.91,4.740,159.2 +29.0,0.91,3.640,154.0,28.8,0.91,3.720,154.0 +29.8,0.91,5.630,156.8,29.6,0.91,5.680,156.9 +27.1,0.91,10.650,181.0,26.9,0.91,10.730,180.8 +28.8,0.91,8.080,176.3,28.6,0.91,8.170,175.8 +28.2,0.91,8.000,193.1,28.0,0.91,8.040,193.0 +26.1,0.91,8.860,140.9,26.0,0.91,9.340,140.7 +25.4,0.91,7.940,126.1,25.4,0.91,8.450,125.8 +26.0,0.91,8.820,125.1,26.1,0.91,9.000,126.4 +24.8,0.91,10.790,134.0,24.7,0.91,11.170,134.5 +24.3,0.91,10.980,143.3,24.3,0.91,11.710,143.1 +24.2,0.91,10.650,154.3,24.2,0.91,11.450,154.3 +24.0,0.91,11.880,161.3,23.9,0.91,12.700,161.6 +23.8,0.91,12.070,172.5,23.7,0.91,12.650,172.8 +23.3,0.91,11.580,176.6,23.3,0.91,12.180,177.2 +22.8,0.91,11.160,179.1,22.7,0.91,11.720,179.8 +22.3,0.91,10.090,184.8,22.3,0.91,10.610,186.0 +21.9,0.91,9.190,189.3,21.9,0.91,9.720,190.7 +21.6,0.91,8.420,194.6,21.5,0.91,8.900,196.4 +21.8,0.91,6.820,195.3,21.6,0.91,6.970,195.8 +22.8,0.91,7.330,191.9,22.6,0.91,7.390,192.0 +24.1,0.91,6.660,185.5,23.9,0.91,6.730,185.5 +25.3,0.91,5.790,179.0,25.1,0.91,5.850,179.1 +26.5,0.91,6.200,173.3,26.3,0.91,6.230,173.2 +27.7,0.91,5.500,163.6,27.4,0.91,5.560,163.4 +28.5,0.91,5.860,152.5,28.3,0.91,5.940,152.4 +29.0,0.91,6.360,154.4,28.8,0.91,6.430,154.3 +29.4,0.91,7.080,158.2,29.1,0.91,7.170,157.9 +29.6,0.91,7.930,136.9,29.4,0.91,8.070,137.2 +29.3,0.91,8.490,142.1,29.1,0.91,8.640,142.1 +28.9,0.91,7.590,134.1,28.7,0.91,8.170,134.2 +28.4,0.91,9.410,145.8,28.3,0.91,9.750,146.0 +27.8,0.91,9.990,141.9,27.7,0.91,10.260,141.8 +27.3,0.91,10.060,145.8,27.2,0.91,10.140,146.5 +25.7,0.91,11.230,159.2,25.5,0.91,11.920,160.8 +24.2,0.91,10.450,172.5,24.1,0.91,11.030,173.2 +23.8,0.91,9.830,181.6,23.7,0.91,10.250,182.7 +23.8,0.91,8.750,186.8,23.7,0.91,9.050,188.5 +23.6,0.91,7.330,175.4,23.5,0.91,7.610,176.3 +23.1,0.91,7.340,171.8,23.0,0.91,7.420,172.6 +22.7,0.91,8.230,170.9,22.7,0.91,8.360,172.3 +22.4,0.91,7.330,171.7,22.4,0.91,7.330,174.9 +22.0,0.91,7.400,187.7,22.0,0.91,7.460,188.7 +22.0,0.91,5.360,188.7,21.9,0.91,5.520,188.1 +23.4,0.91,3.950,180.9,23.2,0.91,3.970,180.9 +24.8,0.91,3.110,173.3,24.5,0.91,3.140,173.2 +26.0,0.91,2.740,142.9,25.8,0.91,2.780,142.7 +27.0,0.91,4.340,120.3,26.8,0.91,4.370,120.4 +27.7,0.91,4.910,121.6,27.4,0.91,4.960,121.4 +28.3,0.91,6.430,123.2,28.1,0.91,6.490,123.3 +28.0,0.91,7.630,155.2,27.8,0.91,7.570,154.8 +28.6,0.91,6.560,154.8,28.4,0.91,6.660,154.8 +28.2,0.91,8.280,139.8,27.9,0.91,8.370,140.0 +28.0,0.91,6.420,133.7,27.8,0.91,6.530,134.0 +25.1,0.91,9.400,147.8,24.9,0.91,9.750,147.4 +23.3,0.91,3.350,340.0,23.2,0.91,2.930,341.3 +20.7,0.91,3.230,20.0,20.5,0.91,3.310,19.9 +20.5,0.91,2.970,14.3,20.5,0.91,2.820,19.6 +20.4,0.91,3.330,16.5,20.2,0.91,3.500,16.6 +19.5,0.91,3.970,42.6,19.5,0.91,4.160,43.5 +19.8,0.91,3.570,32.6,19.6,0.91,3.720,34.0 +19.6,0.91,2.630,38.1,19.4,0.91,2.630,38.8 +20.7,0.91,0.950,167.1,21.1,0.91,1.590,166.6 +20.6,0.91,1.680,123.3,21.0,0.91,2.120,140.6 +21.4,0.91,3.420,158.5,21.6,0.91,3.810,161.2 +21.3,0.91,3.210,177.8,21.6,0.91,3.650,181.9 +21.9,0.91,3.650,175.0,21.9,0.91,3.910,179.1 +22.1,0.91,2.670,209.6,21.9,0.91,2.880,210.6 +23.5,0.91,2.460,196.8,23.3,0.91,2.510,196.6 +24.6,0.91,4.060,177.8,24.4,0.91,4.110,177.9 +25.6,0.91,4.040,181.0,25.4,0.91,4.070,180.6 +26.5,0.91,4.350,161.7,26.3,0.91,4.390,162.0 +27.0,0.91,4.810,168.4,26.8,0.91,4.830,168.5 +27.9,0.91,5.300,165.8,27.7,0.91,5.350,166.0 +28.3,0.91,5.030,178.1,28.1,0.91,5.080,177.7 +28.7,0.91,5.230,167.7,28.5,0.91,5.290,167.6 +28.7,0.91,5.520,164.0,28.5,0.91,5.600,163.9 +28.7,0.91,6.830,152.7,28.5,0.91,6.910,152.8 +23.6,0.91,6.680,178.0,23.4,0.91,6.930,179.2 +23.3,0.91,7.630,162.2,23.1,0.91,7.890,161.8 +23.2,0.91,7.700,161.6,23.0,0.91,8.060,161.8 +23.1,0.91,8.190,160.6,22.9,0.91,8.600,160.5 +23.1,0.91,8.830,177.6,22.9,0.91,9.230,177.6 +22.2,0.91,11.120,172.7,22.0,0.91,11.390,172.8 +21.9,0.91,8.550,167.2,21.7,0.91,8.850,167.4 +21.2,0.91,7.450,181.9,21.0,0.91,7.630,181.9 +21.2,0.91,8.600,184.8,21.1,0.91,9.020,184.7 +21.1,0.91,8.610,180.0,21.1,0.91,9.120,179.9 +20.9,0.91,8.280,176.4,20.8,0.91,8.750,176.7 +20.8,0.91,8.370,176.4,20.9,0.91,8.950,177.4 +21.1,0.91,8.290,179.8,21.0,0.91,8.710,180.6 +21.0,0.91,7.750,175.6,20.8,0.91,7.960,176.1 +21.9,0.91,7.190,179.8,21.7,0.91,7.270,179.8 +23.6,0.91,7.520,182.9,23.4,0.91,7.630,182.8 +24.9,0.91,8.000,181.2,24.6,0.91,8.110,181.0 +26.0,0.91,7.070,179.0,25.8,0.91,7.150,179.1 +27.0,0.91,7.840,191.4,26.8,0.91,7.930,191.0 +28.0,0.91,7.520,190.9,27.7,0.91,7.580,190.4 +28.4,0.91,6.700,194.8,28.2,0.91,6.800,195.1 +28.7,0.91,7.160,186.4,28.5,0.91,7.250,186.6 +28.8,0.91,5.520,168.2,28.6,0.91,5.580,169.1 +24.3,0.91,9.710,121.0,24.1,0.91,9.910,120.9 +25.1,0.91,11.210,149.2,24.9,0.91,11.670,149.2 +24.2,0.91,11.720,159.0,24.1,0.91,12.210,159.2 +24.0,0.91,10.150,158.9,23.9,0.91,10.610,159.2 +23.9,0.91,10.270,166.5,23.7,0.91,10.830,166.1 +23.4,0.91,11.550,169.1,23.3,0.91,12.140,169.6 +22.6,0.91,11.340,172.7,22.5,0.91,11.830,173.0 +22.3,0.91,10.670,180.1,22.2,0.91,11.230,180.8 +22.0,0.91,11.330,185.4,21.9,0.91,11.950,186.0 +21.7,0.91,10.580,188.7,21.6,0.91,11.180,189.2 +21.2,0.91,9.130,183.3,21.1,0.91,9.680,184.0 +20.9,0.91,8.450,185.5,20.8,0.91,8.960,186.3 +20.7,0.91,8.180,187.0,20.6,0.91,8.640,187.7 +20.6,0.91,7.010,190.1,20.5,0.91,7.400,191.0 +20.6,0.91,5.840,184.3,20.5,0.91,6.090,184.6 +21.3,0.91,5.900,185.0,21.1,0.91,5.980,185.4 +21.8,0.91,5.690,191.7,21.6,0.91,5.750,191.8 +22.7,0.91,6.050,196.2,22.4,0.91,6.120,196.3 +23.5,0.91,6.020,191.3,23.3,0.91,6.080,191.3 +24.4,0.91,6.320,190.6,24.2,0.91,6.370,190.7 +25.2,0.91,5.730,181.3,25.0,0.91,5.790,181.3 +26.1,0.91,6.010,173.7,25.9,0.91,6.080,173.8 +25.8,0.90,8.300,169.0,25.6,0.90,8.380,168.9 +23.1,0.90,9.950,157.6,22.9,0.90,10.050,157.6 +22.0,0.91,8.250,156.9,21.8,0.91,8.320,156.9 +21.9,0.91,4.390,151.2,21.7,0.91,4.420,151.4 +21.6,0.91,4.380,143.0,21.4,0.91,4.480,143.5 +21.4,0.91,4.900,149.3,21.3,0.91,5.280,149.6 +21.2,0.91,4.400,153.4,21.0,0.91,4.500,153.7 +21.1,0.91,5.380,151.0,21.1,0.91,5.660,148.7 +20.3,0.91,5.130,151.1,20.1,0.91,5.260,150.7 +19.9,0.91,4.700,157.0,19.7,0.91,4.900,156.8 +20.2,0.91,5.320,158.9,20.1,0.91,5.790,157.2 +19.7,0.91,2.320,119.8,19.6,0.91,3.730,135.2 +19.5,0.91,1.780,37.6,19.3,0.91,1.680,40.1 +19.4,0.91,3.270,30.2,19.2,0.91,3.290,30.6 +18.9,0.91,3.680,47.1,18.8,0.91,3.740,46.5 +19.3,0.91,5.620,34.8,19.2,0.91,5.900,35.4 +18.6,0.91,7.560,34.1,18.5,0.91,8.000,34.6 +18.5,0.91,7.090,19.6,18.4,0.91,7.260,19.5 +18.5,0.91,8.650,36.0,18.4,0.91,8.890,36.7 +18.4,0.91,7.650,45.1,18.3,0.91,7.760,45.3 +18.9,0.91,7.130,49.7,18.7,0.91,7.180,49.8 +19.0,0.91,9.610,28.9,18.8,0.91,9.750,28.9 +19.7,0.91,6.920,40.8,19.5,0.91,7.000,40.8 +19.6,0.91,7.640,34.0,19.4,0.91,7.700,34.1 +19.8,0.91,8.240,32.1,19.6,0.91,8.320,32.1 +18.8,0.91,5.250,65.6,18.6,0.91,5.380,65.4 +18.3,0.91,6.220,64.0,18.1,0.91,6.420,63.9 +18.5,0.91,6.240,36.7,18.3,0.91,6.400,36.6 +17.8,0.91,5.700,25.4,17.7,0.91,6.050,25.8 +17.3,0.91,7.280,15.7,17.1,0.91,7.380,16.1 +17.0,0.91,7.770,12.6,16.9,0.91,7.920,12.7 +16.8,0.91,7.370,16.3,16.6,0.91,7.480,16.4 +16.2,0.91,6.310,17.3,16.1,0.91,6.390,17.6 +16.1,0.91,5.810,14.5,15.9,0.91,5.880,14.7 +16.0,0.91,6.630,18.2,15.8,0.91,6.700,18.0 +15.8,0.91,6.770,19.9,15.6,0.91,6.840,20.0 +15.7,0.91,7.210,25.4,15.5,0.91,7.290,25.6 +15.3,0.91,7.080,24.4,15.2,0.91,7.340,26.2 +15.5,0.91,7.370,29.3,15.3,0.91,7.770,30.5 +15.4,0.91,7.460,29.5,15.3,0.91,7.810,30.1 +15.1,0.91,6.610,37.4,14.9,0.91,6.660,38.0 +15.8,0.91,5.910,39.2,15.6,0.91,5.950,39.4 +16.9,0.91,5.090,35.8,16.7,0.91,5.120,35.8 +18.1,0.91,4.740,38.2,17.9,0.91,4.770,38.3 +19.4,0.91,4.500,37.8,19.2,0.91,4.530,37.8 +20.7,0.91,4.220,41.2,20.4,0.91,4.230,41.2 +21.6,0.91,4.010,41.1,21.4,0.91,4.020,41.3 +22.3,0.91,4.050,44.1,22.1,0.91,4.060,44.1 +22.7,0.91,4.070,46.8,22.5,0.91,4.080,46.8 +22.8,0.91,3.870,52.5,22.6,0.91,3.890,52.5 +22.6,0.91,3.950,60.6,22.4,0.91,3.990,60.7 +22.2,0.91,4.970,68.6,22.0,0.91,4.870,69.1 +21.6,0.91,4.760,79.5,21.4,0.91,4.510,78.4 +21.1,0.91,4.700,100.2,20.9,0.91,4.310,97.7 +20.6,0.91,3.680,113.7,20.5,0.91,3.580,110.5 +20.4,0.91,2.720,113.7,20.4,0.91,2.900,108.3 +20.2,0.91,3.640,121.3,20.2,0.91,3.520,118.8 +19.9,0.91,4.730,144.2,19.8,0.91,4.610,143.0 +19.4,0.91,5.140,147.1,19.4,0.91,5.020,149.0 +19.2,0.91,6.300,158.3,19.2,0.91,6.160,157.2 +19.1,0.91,6.280,158.8,19.0,0.91,6.110,158.5 +18.8,0.91,6.390,162.1,18.8,0.91,6.220,162.2 +18.4,0.91,6.650,165.7,18.5,0.91,6.510,165.2 +18.2,0.91,6.430,170.0,18.3,0.91,6.370,168.8 +18.0,0.91,6.770,170.0,18.1,0.91,6.750,169.2 +18.0,0.91,5.630,174.8,17.9,0.91,5.720,174.2 +19.2,0.91,5.420,172.0,19.0,0.91,5.420,171.9 +20.3,0.91,4.340,170.5,20.1,0.91,4.350,170.3 +21.4,0.91,3.880,167.1,21.2,0.91,3.900,167.0 +22.3,0.91,4.000,161.6,22.1,0.91,4.010,161.6 +23.0,0.90,4.060,160.6,22.8,0.90,4.090,160.6 +23.6,0.90,4.590,163.1,23.4,0.90,4.630,163.1 +23.8,0.90,5.280,165.7,23.6,0.90,5.330,165.6 +23.7,0.90,5.500,166.9,23.5,0.90,5.570,166.8 +23.1,0.90,6.360,162.3,23.0,0.90,6.490,162.7 +22.6,0.90,8.380,162.3,22.4,0.90,8.290,162.3 +22.0,0.90,8.950,160.2,21.9,0.90,8.880,160.2 +21.2,0.90,10.550,155.0,21.2,0.90,10.610,156.0 +20.9,0.90,10.680,156.2,20.9,0.90,10.740,157.2 +20.7,0.90,11.460,158.6,20.7,0.90,11.570,160.0 +19.7,0.90,12.320,158.4,19.9,0.90,12.820,158.9 +19.2,0.90,12.970,159.4,19.4,0.90,13.510,160.0 +18.3,0.90,13.230,162.2,18.6,0.90,14.010,162.2 +17.5,0.90,13.220,163.5,17.8,0.90,14.020,163.3 +17.2,0.90,13.340,169.6,17.5,0.90,14.090,169.8 +16.6,0.90,12.740,173.4,16.9,0.90,13.160,174.8 +17.0,0.90,12.210,182.0,17.4,0.90,12.650,183.0 +16.4,0.90,11.620,185.8,16.9,0.90,11.970,187.5 +16.7,0.90,11.400,188.9,17.4,0.90,12.100,190.4 +17.6,0.90,10.480,190.2,17.6,0.90,11.460,190.9 +19.5,0.90,10.620,188.7,19.4,0.90,10.730,189.0 +21.5,0.90,10.510,190.5,21.3,0.90,10.620,190.7 +22.9,0.90,10.400,193.6,22.7,0.90,10.510,193.7 +24.3,0.90,10.380,193.8,24.1,0.90,10.490,193.9 +25.5,0.90,9.150,199.0,25.3,0.90,9.260,199.2 +26.5,0.90,7.830,207.7,26.2,0.90,7.930,207.9 +27.2,0.90,7.180,210.4,26.9,0.90,7.270,210.6 +27.3,0.90,6.920,207.0,27.1,0.90,7.020,207.3 +27.2,0.90,6.680,187.5,27.0,0.90,6.860,188.2 +26.8,0.90,9.210,179.4,26.6,0.90,9.370,180.0 +26.2,0.90,9.720,179.8,26.2,0.90,10.000,180.8 +25.8,0.90,9.060,185.5,25.8,0.90,9.420,187.5 +25.1,0.90,9.610,194.1,25.1,0.90,9.930,196.3 +23.9,0.90,8.920,190.6,24.1,0.90,8.920,198.6 +23.7,0.90,6.280,205.0,23.9,0.90,5.580,212.9 +23.8,0.90,3.890,229.8,24.2,0.90,3.470,233.9 +23.0,0.90,4.030,255.2,23.3,0.90,3.950,263.9 +25.0,0.90,5.190,316.7,25.2,0.90,4.820,320.9 +24.3,0.90,6.070,329.0,24.4,0.90,5.880,332.0 +23.0,0.91,6.830,328.0,23.3,0.91,6.580,331.9 +18.1,0.91,9.640,341.5,18.1,0.91,10.070,344.4 +17.1,0.91,8.420,349.4,17.5,0.91,8.500,354.6 +16.5,0.91,7.320,347.5,16.9,0.91,7.640,351.9 +17.7,0.91,5.900,355.3,17.6,0.91,5.970,355.9 +19.9,0.91,6.080,5.5,19.7,0.91,6.090,6.0 +21.5,0.91,6.600,17.4,21.4,0.91,6.610,17.4 +23.3,0.91,6.880,23.5,23.0,0.91,6.930,23.7 +24.5,0.91,6.720,36.6,24.3,0.91,6.770,36.6 +25.7,0.91,6.870,45.7,25.5,0.91,6.930,45.8 +26.4,0.91,5.860,48.6,26.2,0.91,5.900,48.7 +26.8,0.91,5.440,48.0,26.6,0.91,5.470,48.1 +26.8,0.91,5.700,48.3,26.6,0.91,5.760,48.6 +26.5,0.91,5.730,63.4,26.3,0.91,5.860,63.5 +25.9,0.91,6.090,71.9,25.8,0.91,6.330,71.8 +25.3,0.91,7.030,71.5,25.3,0.91,7.400,71.6 +24.7,0.91,6.830,78.1,24.7,0.91,7.430,78.6 +25.0,0.91,7.490,92.5,25.1,0.91,7.560,91.4 +24.8,0.91,7.770,98.4,24.9,0.91,7.960,97.6 +24.6,0.91,7.110,104.9,24.8,0.91,7.320,104.4 +25.0,0.91,8.530,119.7,24.9,0.91,8.430,120.7 +25.2,0.91,7.990,124.2,25.1,0.91,7.470,127.3 +24.4,0.91,8.300,135.5,24.3,0.91,8.070,136.8 +23.4,0.91,8.870,146.1,23.5,0.91,8.920,147.0 +23.7,0.91,9.190,151.4,23.8,0.91,9.410,151.0 +23.1,0.91,9.900,155.0,23.3,0.91,10.190,154.7 +22.7,0.91,9.580,155.9,22.9,0.91,9.850,155.5 +21.6,0.91,9.370,165.1,22.2,0.91,9.920,164.8 +22.1,0.91,6.740,176.1,22.1,0.91,7.150,176.1 +23.5,0.91,7.660,181.9,23.4,0.91,7.740,182.0 +24.7,0.91,7.520,188.0,24.5,0.91,7.590,188.2 +26.0,0.90,7.190,194.0,25.8,0.90,7.260,194.2 +27.1,0.90,7.170,205.9,26.9,0.90,7.250,206.1 +27.8,0.90,7.580,197.9,27.6,0.90,7.670,198.2 +28.5,0.90,7.680,199.3,28.3,0.90,7.770,199.5 +28.8,0.90,6.590,195.8,28.6,0.90,6.700,195.7 +29.0,0.90,9.080,186.1,28.8,0.90,9.220,186.3 +28.7,0.90,7.440,202.6,28.6,0.90,7.710,202.6 +28.1,0.90,10.520,183.6,28.0,0.90,10.970,183.4 +27.6,0.90,11.970,184.3,27.6,0.90,12.480,185.0 +27.0,0.90,11.620,190.0,27.1,0.90,12.250,190.9 +26.9,0.90,12.520,196.9,27.0,0.90,13.140,197.2 +26.1,0.90,12.780,198.9,26.3,0.90,13.780,199.4 +25.1,0.90,14.770,198.5,25.2,0.90,16.000,198.6 +24.4,0.90,15.570,196.7,24.6,0.90,16.870,197.2 +23.6,0.90,16.510,195.6,23.7,0.90,17.700,195.8 +22.9,0.90,16.960,197.3,23.1,0.90,18.110,197.6 +22.3,0.90,16.880,198.7,22.5,0.90,18.030,198.9 +21.7,0.90,16.220,196.9,21.9,0.90,17.390,197.4 +21.1,0.90,16.490,196.1,21.3,0.90,17.530,196.7 +20.6,0.90,16.640,197.7,20.8,0.90,17.620,198.3 +20.1,0.90,14.690,196.6,19.9,0.90,14.780,196.7 +21.0,0.90,12.670,195.9,20.8,0.90,12.940,196.0 +22.6,0.90,12.500,191.7,22.4,0.90,12.630,191.9 +24.3,0.90,12.850,188.6,24.1,0.90,12.980,188.7 +25.9,0.90,11.700,186.9,25.7,0.90,11.830,186.9 +27.3,0.90,10.380,184.3,27.1,0.90,10.520,184.3 +28.0,0.90,10.600,174.8,27.8,0.90,10.690,175.2 +28.7,0.90,9.030,172.1,28.5,0.90,9.140,172.8 +28.8,0.90,8.920,176.5,28.6,0.90,9.060,176.0 +28.6,0.90,10.440,164.3,28.4,0.90,10.580,164.5 +28.1,0.90,10.180,163.8,27.9,0.90,10.580,164.2 +27.0,0.90,11.630,155.7,27.0,0.90,12.410,156.2 +26.0,0.90,12.840,153.3,26.0,0.90,13.800,153.3 +25.2,0.90,13.100,156.5,25.2,0.90,14.020,156.6 +24.2,0.90,12.640,161.1,24.2,0.90,13.610,161.7 +23.4,0.90,12.920,167.3,23.4,0.90,13.900,168.3 +22.5,0.90,12.560,176.6,22.6,0.90,13.610,177.3 +21.9,0.90,12.870,181.7,22.0,0.90,14.010,182.1 +21.4,0.90,13.230,182.4,21.5,0.90,14.350,182.7 +20.7,0.90,13.100,176.0,20.7,0.90,14.050,176.3 +19.7,0.90,13.480,178.0,19.7,0.90,14.370,178.5 +19.3,0.90,13.980,181.8,19.3,0.90,14.940,182.3 +18.7,0.90,14.370,181.3,18.7,0.90,15.180,181.8 +18.6,0.90,14.510,180.6,18.6,0.90,15.340,181.2 +19.1,0.90,14.090,180.2,19.0,0.90,15.030,180.4 +20.4,0.90,13.580,182.2,20.3,0.90,13.780,182.3 +21.9,0.90,13.250,182.2,21.8,0.90,13.440,182.3 +23.6,0.90,13.150,180.7,23.4,0.90,13.330,180.7 +25.0,0.90,12.760,181.0,24.8,0.90,12.960,181.0 +26.1,0.90,12.310,181.5,25.8,0.90,12.510,181.5 +26.8,0.90,14.000,180.7,26.6,0.90,14.060,180.8 +27.5,0.90,13.980,180.6,27.3,0.90,14.000,180.7 +28.1,0.90,14.530,180.8,27.9,0.90,14.590,180.9 +28.2,0.90,15.080,177.9,28.0,0.90,15.210,178.0 +27.9,0.90,14.000,176.2,27.7,0.90,14.330,176.1 +27.0,0.90,12.880,173.9,26.9,0.90,13.620,173.8 +26.2,0.90,13.190,174.3,26.1,0.90,13.830,174.7 +25.5,0.90,15.150,173.2,25.4,0.90,15.820,173.3 +24.9,0.90,16.670,175.7,24.8,0.90,17.340,175.6 +24.5,0.90,16.700,179.2,24.3,0.90,17.360,179.2 +23.9,0.90,16.610,178.6,23.8,0.90,17.290,178.5 +23.1,0.90,16.740,178.0,22.9,0.90,17.450,178.0 +22.4,0.90,15.860,179.7,22.2,0.90,16.550,179.8 +21.8,0.90,15.000,181.2,21.7,0.90,15.660,181.5 +21.7,0.90,13.810,185.8,21.6,0.90,14.510,186.0 +21.6,0.90,10.730,198.6,21.4,0.90,11.160,198.2 +21.7,0.91,10.440,187.1,21.6,0.91,10.870,187.7 +21.3,0.91,10.490,193.8,21.3,0.91,10.940,194.8 +21.3,0.91,8.070,204.6,21.1,0.91,8.480,204.6 +16.8,0.91,6.610,334.7,16.6,0.91,7.080,335.7 +17.4,0.91,6.490,349.9,17.2,0.91,6.550,349.6 +17.2,0.91,6.410,344.1,17.0,0.91,6.460,343.9 +17.9,0.91,7.840,356.0,17.7,0.91,7.880,355.9 +18.3,0.91,8.370,5.2,18.1,0.91,8.450,4.9 +17.7,0.91,8.600,6.1,17.5,0.91,8.630,6.5 +17.1,0.91,8.470,16.9,16.9,0.91,8.490,17.0 +16.7,0.91,6.690,32.5,16.5,0.91,6.710,32.1 +17.7,0.91,7.150,29.8,17.5,0.91,7.190,29.7 +18.0,0.91,7.390,32.8,17.8,0.91,7.450,32.7 +17.8,0.91,7.340,28.8,17.6,0.91,7.480,29.4 +17.3,0.91,6.620,40.3,17.2,0.91,6.720,40.5 +17.2,0.91,7.770,33.6,17.0,0.91,7.880,33.9 +16.8,0.91,5.960,49.6,16.6,0.91,6.070,49.7 +16.5,0.91,6.770,39.6,16.3,0.91,6.910,39.8 +16.1,0.91,4.800,47.5,15.9,0.91,4.900,47.1 +14.9,0.91,4.840,49.9,15.0,0.91,5.250,46.2 +14.3,0.91,3.030,58.2,14.3,0.91,3.450,51.8 +14.1,0.91,2.880,60.4,14.2,0.91,3.790,52.7 +14.1,0.91,2.850,42.1,14.2,0.91,3.670,42.2 +14.2,0.91,4.150,30.5,14.3,0.91,4.580,31.6 +14.3,0.91,4.550,27.1,14.2,0.91,5.020,28.9 +14.2,0.91,5.130,19.2,14.2,0.91,5.510,21.1 +14.2,0.91,4.380,8.7,14.2,0.91,5.130,11.4 +15.3,0.91,4.390,17.4,15.1,0.91,4.420,17.5 +16.5,0.91,4.600,17.7,16.3,0.91,4.620,17.5 +17.8,0.91,4.280,17.4,17.6,0.91,4.300,17.0 +19.1,0.91,3.510,12.6,18.9,0.91,3.530,11.7 +20.3,0.91,3.330,356.1,20.1,0.91,3.350,355.3 +21.1,0.91,2.910,349.6,20.9,0.91,2.910,348.8 +21.9,0.91,3.210,327.1,21.7,0.91,3.250,326.6 +22.2,0.91,3.060,320.4,22.0,0.91,3.070,320.4 +22.4,0.91,2.100,332.0,22.2,0.91,2.110,331.6 +22.2,0.91,2.060,337.8,22.0,0.91,2.010,336.9 +21.7,0.91,2.390,52.3,21.5,0.91,2.290,49.9 +21.2,0.91,2.570,78.1,21.1,0.91,2.500,77.5 +20.9,0.91,1.870,104.0,20.9,0.91,1.650,108.7 +20.9,0.91,4.800,157.1,20.9,0.91,4.840,159.3 +20.9,0.91,6.400,178.5,20.9,0.91,6.410,180.6 +20.6,0.91,7.740,187.7,20.6,0.91,7.890,189.0 +19.8,0.91,8.760,188.5,20.1,0.91,8.740,191.4 +19.7,0.91,9.640,195.3,20.0,0.91,9.680,197.6 +20.1,0.91,9.170,201.9,20.3,0.91,9.260,203.8 +20.6,0.91,9.390,206.8,20.9,0.91,9.510,208.8 +20.4,0.91,9.790,215.5,20.8,0.91,10.090,217.5 +20.3,0.90,10.470,210.7,20.7,0.90,10.750,212.6 +19.9,0.90,10.660,211.3,20.4,0.90,10.900,213.7 +20.4,0.90,9.940,220.6,20.9,0.90,10.390,222.6 +19.9,0.90,9.110,211.1,20.2,0.90,9.960,213.3 +20.8,0.90,8.150,199.7,20.7,0.90,8.160,200.6 +22.9,0.90,7.730,200.9,22.7,0.90,7.740,201.6 +24.7,0.90,7.130,207.2,24.5,0.90,7.170,207.7 +25.9,0.90,6.360,206.0,25.7,0.90,6.400,206.4 +27.2,0.90,5.890,202.0,27.0,0.90,5.950,202.4 +27.9,0.90,5.880,198.0,27.7,0.90,5.930,198.4 +28.0,0.90,6.590,189.5,27.8,0.90,6.650,189.9 +28.0,0.90,7.020,182.8,27.8,0.90,7.120,183.2 +27.7,0.90,7.010,175.1,27.5,0.90,7.350,174.9 +27.3,0.90,9.760,169.5,27.2,0.90,9.920,170.4 +26.4,0.90,11.140,158.2,26.5,0.90,11.180,160.5 +25.1,0.90,13.560,155.2,25.4,0.90,14.090,156.6 +24.0,0.90,14.450,157.1,24.3,0.90,15.050,158.8 +23.6,0.90,14.390,163.3,23.8,0.90,14.930,164.7 +22.8,0.90,15.260,170.5,22.9,0.90,15.970,171.4 +22.2,0.90,14.480,172.1,22.4,0.90,15.020,173.2 +22.4,0.90,12.910,188.7,22.7,0.90,13.260,191.2 +21.9,0.90,13.740,197.8,22.2,0.90,14.540,199.4 +21.6,0.90,14.430,198.7,21.8,0.90,15.250,199.9 +21.2,0.90,14.300,196.5,21.4,0.90,14.960,197.4 +20.6,0.90,14.290,198.6,20.7,0.90,14.950,199.6 +20.0,0.90,14.310,195.6,20.2,0.90,14.920,196.6 +19.7,0.90,13.000,193.1,20.0,0.90,13.750,194.4 +20.3,0.90,11.630,191.4,20.2,0.90,11.970,191.8 +21.9,0.90,10.980,193.8,21.7,0.90,11.080,194.0 +23.6,0.90,10.190,185.2,23.4,0.90,10.260,185.4 +24.8,0.90,10.110,183.4,24.6,0.90,10.230,183.4 +26.4,0.90,8.650,181.0,26.2,0.90,8.770,181.1 +27.5,0.90,8.290,176.7,27.3,0.90,8.380,176.9 +28.0,0.90,8.710,171.5,27.8,0.90,8.780,171.7 +28.5,0.90,7.880,170.1,28.3,0.90,7.990,170.3 +28.8,0.90,7.400,173.9,28.6,0.90,7.540,173.8 +28.0,0.90,8.460,150.5,27.9,0.90,8.830,151.0 +27.0,0.90,10.740,142.0,27.0,0.90,11.320,142.7 +25.8,0.90,12.810,140.6,25.8,0.90,13.640,141.0 +25.3,0.90,13.970,144.9,25.3,0.90,14.780,145.1 +24.1,0.90,15.120,150.7,24.1,0.90,15.890,151.2 +23.6,0.90,15.680,164.9,23.6,0.90,16.400,165.7 +22.9,0.90,14.820,172.5,22.9,0.90,15.470,173.4 +22.2,0.90,14.700,176.1,22.2,0.90,15.430,177.0 +21.7,0.90,14.820,179.6,21.7,0.90,15.570,180.4 +21.4,0.90,15.120,183.4,21.5,0.90,15.930,183.9 +20.9,0.90,15.000,179.5,20.9,0.90,15.730,180.2 +20.3,0.91,14.590,183.2,20.4,0.91,15.320,184.4 +19.6,0.91,13.910,182.4,19.6,0.91,14.500,183.5 +19.1,0.91,14.020,183.8,19.0,0.91,14.620,184.5 +19.4,0.91,13.820,187.3,19.3,0.91,14.490,187.6 +20.5,0.91,11.760,183.0,20.3,0.91,11.920,183.4 +22.0,0.91,11.870,188.0,21.8,0.91,11.960,188.2 +23.4,0.91,11.930,185.3,23.2,0.91,12.050,185.4 +24.8,0.91,11.650,182.8,24.5,0.91,11.770,182.9 +26.3,0.91,10.770,184.6,26.1,0.91,10.910,184.8 +27.7,0.90,9.990,187.5,27.5,0.90,10.120,187.7 +28.5,0.90,9.460,186.0,28.3,0.90,9.570,185.8 +29.0,0.90,8.460,184.7,28.8,0.90,8.600,185.4 +29.1,0.90,8.150,182.9,28.9,0.90,8.270,183.5 +28.8,0.90,9.000,172.0,28.7,0.90,9.240,172.2 +28.1,0.90,9.540,164.6,28.1,0.90,10.140,165.4 +27.1,0.90,11.670,159.3,27.0,0.90,12.310,160.0 +25.7,0.90,13.780,161.4,25.7,0.90,14.650,162.1 +25.0,0.90,13.840,171.4,24.9,0.90,14.600,172.1 +24.2,0.90,14.940,183.0,24.2,0.90,15.780,183.5 +23.7,0.90,15.200,192.6,23.7,0.90,16.220,193.2 +22.8,0.90,14.580,189.3,22.8,0.90,15.410,190.3 +21.9,0.90,15.100,183.7,22.0,0.90,15.800,184.7 +21.8,0.90,15.700,185.7,21.9,0.90,16.440,186.7 +21.1,0.90,15.530,185.6,21.1,0.90,16.160,186.5 +20.9,0.90,16.180,189.0,20.9,0.90,16.770,189.7 +20.5,0.90,16.110,190.3,20.5,0.90,16.690,191.2 +20.1,0.90,16.790,192.5,20.1,0.90,17.380,193.1 +19.4,0.90,15.700,192.8,19.4,0.90,16.370,193.1 +20.2,0.90,14.600,192.4,20.1,0.90,14.830,192.7 +21.6,0.90,15.060,190.2,21.4,0.90,15.210,190.3 +23.4,0.90,14.450,192.8,23.2,0.90,14.590,192.8 +25.1,0.90,14.330,192.7,24.8,0.90,14.470,192.7 +26.5,0.90,14.150,190.3,26.3,0.90,14.300,190.3 +27.6,0.90,13.580,188.2,27.4,0.90,13.720,188.4 +28.5,0.90,13.290,185.9,28.3,0.90,13.430,186.1 +29.1,0.90,12.790,188.4,28.9,0.90,12.940,188.4 +29.2,0.90,12.350,183.4,28.9,0.90,12.550,183.4 +28.6,0.90,12.340,176.3,28.4,0.90,12.870,176.1 +27.9,0.90,13.960,171.5,27.9,0.90,14.640,171.4 +26.7,0.90,14.940,175.6,26.6,0.90,15.680,175.9 +25.6,0.90,16.160,179.4,25.6,0.90,16.980,179.8 +24.2,0.90,16.250,182.4,24.2,0.90,17.030,182.7 +23.4,0.90,17.370,184.3,23.3,0.90,18.140,184.7 +22.7,0.90,18.000,185.5,22.7,0.90,18.800,185.9 +22.3,0.90,18.120,187.2,22.3,0.90,18.890,187.6 +21.9,0.90,18.070,188.2,21.9,0.90,18.910,188.7 +21.4,0.90,17.290,190.1,21.4,0.90,18.130,190.8 +21.0,0.90,17.770,191.6,21.0,0.90,18.550,192.2 +20.4,0.90,17.500,192.0,20.3,0.90,18.210,192.6 +19.6,0.90,16.760,193.2,19.6,0.90,17.470,194.0 +19.1,0.90,16.910,197.4,19.1,0.90,17.660,197.9 +19.0,0.90,16.840,195.2,18.8,0.90,17.510,195.2 +19.8,0.90,14.710,195.4,19.7,0.90,14.900,195.6 +21.0,0.90,14.600,195.5,20.8,0.90,14.710,195.6 +22.7,0.90,14.750,197.1,22.5,0.90,14.860,197.3 +24.3,0.90,13.740,196.3,24.1,0.90,13.860,196.3 +25.7,0.90,12.960,196.2,25.5,0.90,13.100,196.3 +27.0,0.90,12.030,199.4,26.8,0.90,12.160,199.5 +27.5,0.90,11.680,192.4,27.3,0.90,11.830,192.6 +28.5,0.90,11.170,195.1,28.3,0.90,11.320,195.2 +28.7,0.90,10.670,192.1,28.5,0.90,10.840,192.3 +28.5,0.90,9.530,186.9,28.4,0.90,9.950,186.7 +28.2,0.90,12.890,188.0,28.2,0.90,13.420,187.9 +27.5,0.90,12.950,189.3,27.5,0.90,13.580,189.3 +26.5,0.90,12.940,191.6,26.5,0.90,13.690,192.2 +25.6,0.90,15.110,191.6,25.6,0.90,15.970,191.8 +24.3,0.90,14.380,191.3,24.3,0.90,15.150,192.2 +23.7,0.90,14.550,192.3,23.7,0.90,15.300,192.7 +23.4,0.90,15.380,190.4,23.4,0.90,16.070,190.7 +23.1,0.90,14.250,199.0,23.1,0.90,14.990,199.0 +22.3,0.91,7.660,222.6,22.4,0.91,8.430,220.5 +16.9,0.91,8.390,346.8,16.6,0.91,9.440,347.2 +15.1,0.91,8.880,7.4,14.9,0.91,8.930,7.9 +13.8,0.91,9.790,4.9,13.7,0.91,9.880,5.1 +12.5,0.91,13.200,17.0,12.3,0.91,13.400,17.1 +12.1,0.91,12.400,19.7,11.9,0.91,12.570,19.6 +11.6,0.91,11.630,15.5,11.4,0.91,11.760,15.3 +11.2,0.91,11.250,14.6,11.0,0.91,11.350,14.4 +10.9,0.91,11.090,12.2,10.7,0.91,11.200,12.2 +11.2,0.91,10.950,13.1,11.0,0.91,11.040,13.0 +11.6,0.91,10.590,14.4,11.4,0.91,10.710,14.4 +12.4,0.91,9.390,15.7,12.2,0.91,9.490,15.7 +13.2,0.91,9.470,18.8,13.0,0.91,9.540,18.9 +14.1,0.91,8.030,23.6,13.9,0.91,8.120,23.5 +14.9,0.91,6.880,24.3,14.7,0.91,6.960,23.8 +15.2,0.91,5.530,34.3,15.0,0.91,5.640,33.8 +15.0,0.91,4.400,41.8,14.9,0.91,4.540,39.4 +15.8,0.91,8.920,26.8,15.8,0.91,9.310,26.8 +15.4,0.91,7.650,34.1,15.4,0.91,7.840,34.0 +15.0,0.91,7.170,35.7,14.9,0.91,7.330,35.8 +14.7,0.91,6.830,30.2,14.6,0.91,6.940,31.6 +14.1,0.91,5.500,28.6,14.1,0.91,5.630,29.0 +14.3,0.91,4.880,16.2,14.3,0.91,5.260,16.5 +14.5,0.91,4.080,13.3,14.6,0.91,4.470,15.1 +14.9,0.91,4.110,357.4,14.9,0.91,4.430,0.6 +15.3,0.91,5.490,341.6,15.3,0.91,5.610,345.6 +15.2,0.91,6.000,327.8,15.3,0.91,6.020,331.8 +15.7,0.91,7.040,320.7,16.0,0.91,7.050,325.6 +15.3,0.91,8.200,321.7,15.7,0.91,8.420,326.5 +11.3,0.91,9.920,335.4,11.4,0.91,10.460,337.6 +11.7,0.91,6.610,355.3,11.5,0.91,6.780,356.5 +13.6,0.91,5.890,8.3,13.5,0.91,5.960,8.5 +15.3,0.91,5.590,6.2,15.1,0.91,5.640,6.2 +16.6,0.91,4.950,357.8,16.4,0.91,4.990,357.6 +18.1,0.91,4.700,346.8,17.9,0.91,4.760,346.4 +19.3,0.91,4.620,332.9,19.1,0.91,4.690,332.9 +20.1,0.91,4.400,325.3,19.8,0.91,4.470,325.4 +20.7,0.91,4.970,324.6,20.5,0.91,5.040,324.5 +21.0,0.91,4.060,335.9,20.8,0.91,4.140,335.5 +21.0,0.91,3.900,349.7,20.8,0.91,3.980,349.3 +20.7,0.91,3.000,18.7,20.6,0.91,3.250,16.7 +20.4,0.91,1.960,34.6,20.4,0.91,2.310,34.6 +20.3,0.91,1.170,65.4,20.3,0.91,1.500,57.2 +20.2,0.91,1.210,163.5,20.1,0.91,0.990,158.2 +20.3,0.91,1.990,211.4,20.2,0.91,1.890,212.8 +20.6,0.91,2.700,215.6,20.5,0.91,2.450,218.9 +20.7,0.91,2.810,234.9,20.7,0.91,2.510,239.9 +20.9,0.91,3.010,240.5,20.8,0.91,2.770,243.9 +20.7,0.91,2.740,238.8,20.7,0.91,2.380,242.7 +20.2,0.91,2.310,249.0,20.4,0.91,1.920,254.4 +20.2,0.91,1.530,314.5,20.3,0.91,1.330,331.1 +18.1,0.91,2.460,16.1,18.0,0.91,2.500,19.4 +17.9,0.91,2.160,25.9,18.3,0.91,2.380,35.4 +18.3,0.91,2.310,11.5,18.7,0.91,2.540,14.3 +18.1,0.91,2.670,7.0,18.6,0.91,3.020,14.0 +19.0,0.91,2.360,13.8,18.9,0.91,2.360,13.2 +20.4,0.91,2.290,43.4,20.2,0.91,2.260,42.8 +21.4,0.91,2.070,38.4,21.2,0.91,2.050,37.4 +22.2,0.91,2.340,44.5,22.0,0.91,2.320,44.0 +22.9,0.91,1.920,50.9,22.7,0.91,1.890,50.4 +23.3,0.91,1.750,48.8,23.1,0.91,1.720,48.3 +23.6,0.91,1.800,40.5,23.4,0.91,1.770,39.8 +23.7,0.91,1.730,51.3,23.5,0.91,1.690,51.4 +23.3,0.91,4.010,75.2,23.1,0.91,4.000,74.9 +22.8,0.91,4.910,87.6,22.6,0.91,4.840,87.7 +22.3,0.91,4.820,114.9,22.3,0.91,4.760,114.9 +22.4,0.91,5.430,128.3,22.2,0.91,5.370,128.5 +21.7,0.91,7.420,145.4,21.7,0.91,7.130,147.6 +21.3,0.91,8.610,156.8,21.2,0.91,8.420,159.1 +20.9,0.91,8.660,162.0,21.0,0.91,8.580,163.6 +20.4,0.91,9.910,169.8,20.7,0.91,10.110,169.7 +19.6,0.91,10.620,166.0,20.0,0.91,10.830,166.2 +19.4,0.91,10.300,171.8,19.8,0.91,10.680,171.3 +19.6,0.91,10.760,172.3,20.1,0.91,11.180,172.5 +19.4,0.91,10.600,172.0,19.9,0.91,10.910,172.0 +19.5,0.91,10.030,171.3,20.2,0.91,10.230,171.8 +18.5,0.91,9.720,177.4,19.4,0.91,9.700,177.4 +18.4,0.91,8.810,195.0,19.3,0.91,8.760,198.9 +18.7,0.91,8.740,205.3,19.6,0.91,9.290,208.0 +19.3,0.91,7.360,199.5,19.2,0.91,7.450,200.3 +20.6,0.91,8.050,197.9,20.4,0.91,8.110,198.3 +22.0,0.91,8.300,198.6,21.8,0.91,8.400,198.8 +22.8,0.91,8.390,192.5,22.5,0.91,8.490,192.5 +23.4,0.91,7.600,186.6,23.2,0.91,7.700,186.7 +24.1,0.91,7.180,186.0,23.9,0.91,7.290,186.0 +24.9,0.91,7.920,181.3,24.7,0.91,8.030,181.2 +24.9,0.91,7.320,182.3,24.7,0.91,7.430,181.9 +24.7,0.91,9.680,178.6,24.6,0.91,9.770,178.5 +24.0,0.91,9.910,169.7,24.0,0.91,10.430,169.8 +23.3,0.91,11.400,168.1,23.5,0.91,12.190,169.4 +21.4,0.91,11.280,162.2,21.5,0.91,11.790,164.5 +20.1,0.91,11.320,177.0,20.3,0.91,11.840,180.3 +19.2,0.91,12.640,187.9,19.4,0.91,13.580,190.0 +18.7,0.91,14.880,192.3,18.9,0.91,16.010,193.4 +18.6,0.91,16.370,194.0,18.9,0.91,17.440,193.7 +18.1,0.91,15.980,191.9,18.3,0.91,16.940,191.9 +17.2,0.91,15.320,186.4,17.5,0.91,16.150,186.9 +16.2,0.91,16.010,183.8,16.4,0.91,16.980,184.7 +16.3,0.91,16.050,186.8,16.5,0.91,16.870,187.5 +15.5,0.91,15.170,184.6,15.8,0.91,15.840,186.0 +15.1,0.91,14.830,183.3,15.4,0.91,15.430,184.3 +15.3,0.91,14.520,186.3,15.7,0.91,15.170,186.8 +15.8,0.91,12.510,187.1,15.8,0.91,13.370,187.2 +17.2,0.91,11.480,188.8,17.0,0.91,11.630,188.9 +18.7,0.91,10.460,181.8,18.5,0.91,10.590,182.0 +20.0,0.91,9.910,179.8,19.8,0.91,10.030,180.0 +21.6,0.91,9.920,176.6,21.3,0.91,10.030,176.6 +22.8,0.91,9.130,171.3,22.6,0.91,9.250,171.5 +23.6,0.91,9.130,167.0,23.4,0.91,9.270,167.2 +24.0,0.91,9.350,165.4,23.8,0.91,9.500,165.6 +24.1,0.91,9.790,166.3,23.9,0.91,9.960,166.5 +23.8,0.91,9.760,162.6,23.6,0.91,10.230,162.6 +22.4,0.91,10.780,153.6,22.3,0.91,11.600,154.0 +21.7,0.91,12.860,157.8,21.7,0.91,13.680,158.0 +21.1,0.91,14.550,163.1,21.0,0.91,15.350,163.3 +20.2,0.91,14.710,172.7,20.1,0.91,15.450,173.0 +19.3,0.91,14.580,179.6,19.3,0.91,15.270,179.9 +18.8,0.91,15.630,182.0,18.7,0.91,16.320,182.2 +18.6,0.91,16.180,181.5,18.5,0.91,16.800,181.6 +18.3,0.91,16.750,183.4,18.2,0.91,17.360,183.6 +17.7,0.91,16.940,183.0,17.7,0.91,17.590,183.3 +17.3,0.91,17.410,184.2,17.2,0.91,18.030,184.5 +16.9,0.91,17.040,184.6,16.8,0.91,17.610,185.0 +16.6,0.91,15.930,183.1,16.5,0.91,16.430,183.4 +16.3,0.91,14.320,184.3,16.2,0.91,14.740,184.5 +16.4,0.91,12.070,183.2,16.2,0.91,12.960,183.2 +16.4,0.91,10.390,185.2,16.3,0.91,10.780,185.3 +18.5,0.91,11.630,188.3,18.3,0.91,11.820,188.4 +19.1,0.91,11.630,180.2,18.9,0.91,11.760,180.3 +20.7,0.91,11.560,182.6,20.5,0.91,11.700,182.5 +22.3,0.91,11.430,177.7,22.1,0.91,11.570,177.9 +23.7,0.91,11.980,173.3,23.4,0.91,12.140,173.5 +24.4,0.90,11.650,173.4,24.2,0.90,11.850,173.5 +25.0,0.90,12.830,173.2,24.8,0.90,13.070,173.2 +25.0,0.90,13.760,174.0,24.8,0.90,14.010,173.8 +24.4,0.90,14.470,168.8,24.3,0.90,14.980,168.8 +23.6,0.90,15.910,170.5,23.5,0.90,16.610,170.7 +22.9,0.90,17.030,173.5,22.8,0.90,17.700,173.7 +22.0,0.90,17.510,176.3,21.9,0.90,18.250,176.4 +21.0,0.90,17.570,175.2,20.9,0.90,18.200,175.3 +20.4,0.90,17.000,174.7,20.3,0.90,17.640,175.0 +20.0,0.90,17.390,176.6,19.9,0.90,18.040,176.8 +19.7,0.90,18.350,178.5,19.6,0.90,19.000,178.8 +19.2,0.90,15.000,195.6,19.1,0.90,15.580,195.7 +19.3,0.90,14.060,191.8,19.3,0.90,14.550,192.8 +19.3,0.90,13.350,196.3,19.2,0.90,13.890,196.9 +19.6,0.90,14.000,206.6,19.5,0.90,14.480,206.9 +19.7,0.90,12.030,209.0,19.5,0.90,12.440,209.5 +19.2,0.90,10.950,206.4,19.2,0.90,11.560,207.7 +19.4,0.90,8.500,209.9,19.3,0.90,9.050,210.7 +20.4,0.90,9.040,225.6,20.3,0.90,9.200,225.7 +21.4,0.90,6.730,224.0,21.2,0.90,6.800,224.3 +22.5,0.90,5.840,244.6,22.3,0.90,5.920,244.3 +24.1,0.90,5.600,239.4,23.8,0.90,5.670,239.3 +25.5,0.90,5.680,243.7,25.3,0.90,5.760,243.8 +26.6,0.90,5.140,251.4,26.4,0.90,5.230,251.1 +27.0,0.90,5.250,255.3,26.8,0.90,5.320,255.0 +27.4,0.90,5.270,242.6,27.2,0.90,5.330,242.5 +27.6,0.90,6.420,250.2,27.4,0.90,6.490,250.0 +27.1,0.90,6.800,276.9,26.9,0.90,6.800,276.6 +26.8,0.90,5.690,274.5,26.7,0.90,5.600,273.8 +26.8,0.90,4.720,267.8,26.7,0.90,4.660,264.9 +26.4,0.90,6.940,273.2,26.3,0.90,6.970,272.0 +26.3,0.90,7.080,266.8,26.2,0.90,7.070,266.1 +25.4,0.90,7.310,282.8,25.6,0.90,7.610,278.9 +23.2,0.91,4.200,252.8,23.8,0.91,4.810,261.2 +24.5,0.91,6.010,185.7,24.4,0.91,5.950,187.8 +24.9,0.91,5.820,180.6,24.9,0.91,5.990,179.9 +24.3,0.91,6.490,202.7,24.2,0.91,6.650,203.4 +22.5,0.91,6.830,228.8,22.5,0.91,7.160,228.9 +22.4,0.91,5.780,260.1,22.2,0.91,5.870,256.9 +22.4,0.91,4.460,287.4,22.5,0.91,4.630,286.8 +22.9,0.91,2.960,325.7,23.0,0.91,2.750,330.2 +18.7,0.91,3.070,350.7,19.0,0.91,3.590,352.5 +18.7,0.91,4.160,2.6,18.6,0.91,4.570,3.1 +20.7,0.91,3.330,18.1,20.5,0.91,3.340,18.2 +22.5,0.91,3.760,32.6,22.3,0.91,3.740,32.3 +23.3,0.91,4.520,30.1,23.1,0.91,4.500,29.9 +24.4,0.91,2.710,30.7,24.2,0.91,2.690,30.6 +25.2,0.91,3.120,44.3,25.0,0.91,3.110,44.5 +25.8,0.91,4.540,41.7,25.6,0.91,4.550,41.8 +26.0,0.91,6.140,48.8,25.8,0.91,6.170,49.1 +25.6,0.91,7.600,52.1,25.4,0.91,7.660,52.3 +25.0,0.91,8.550,49.1,24.9,0.91,8.830,49.5 +23.6,0.91,6.620,102.8,23.5,0.91,6.770,100.6 +20.6,0.91,6.070,154.0,20.4,0.91,6.160,153.7 +20.4,0.91,5.850,170.2,20.3,0.91,6.280,169.5 +19.9,0.91,2.610,177.5,19.7,0.91,2.900,178.0 +19.9,0.91,2.780,79.1,19.7,0.91,2.630,90.7 +19.5,0.91,1.990,136.7,19.3,0.91,2.020,136.9 +19.3,0.91,2.840,100.0,19.3,0.91,2.850,115.4 +20.0,0.91,4.000,108.3,20.2,0.91,4.360,104.6 +18.7,0.91,2.010,60.5,18.8,0.91,2.030,67.3 +19.5,0.91,1.020,52.1,19.6,0.91,0.990,71.6 +18.3,0.91,3.320,293.7,18.8,0.91,2.600,293.2 +16.7,0.91,3.440,278.9,17.6,0.91,3.010,272.6 +18.4,0.91,4.630,301.6,18.5,0.91,4.240,300.0 +17.1,0.91,0.480,290.5,17.6,0.91,0.750,311.9 +18.4,0.91,1.080,96.5,18.3,0.91,0.930,105.9 +19.2,0.91,3.560,81.3,19.2,0.91,3.920,82.8 +18.5,0.91,2.960,92.7,18.5,0.91,3.310,97.0 +19.1,0.91,2.590,100.9,18.9,0.91,2.630,102.5 +19.9,0.91,2.120,78.8,19.8,0.91,2.170,83.7 +19.9,0.91,3.830,152.8,19.7,0.91,3.860,151.8 +19.9,0.91,2.490,84.5,19.7,0.91,2.540,85.2 +19.5,0.91,3.290,73.4,19.3,0.91,3.280,74.2 +20.0,0.91,4.340,99.6,19.8,0.91,4.370,99.7 +18.9,0.91,5.690,76.5,18.8,0.91,5.870,78.8 +19.0,0.91,5.930,106.8,18.8,0.91,6.400,107.3 +18.5,0.91,5.190,94.4,18.4,0.91,5.660,96.3 +18.6,0.91,5.160,105.8,18.5,0.91,5.620,106.9 +18.6,0.91,5.490,124.8,18.5,0.91,5.880,125.4 +18.4,0.91,7.060,140.3,18.2,0.91,7.260,140.6 +18.5,0.91,7.310,143.3,18.4,0.91,7.780,143.3 +18.6,0.91,8.740,148.7,18.4,0.91,9.180,148.9 +18.6,0.91,10.060,156.8,18.5,0.91,10.440,156.5 +18.7,0.91,11.380,167.3,18.6,0.91,11.880,167.8 +18.9,0.91,10.150,173.6,18.7,0.91,10.520,173.5 +18.8,0.91,10.240,181.2,18.7,0.91,10.640,181.0 +18.6,0.91,10.470,179.0,18.5,0.91,10.840,179.1 +19.0,0.91,13.440,183.6,18.8,0.91,13.810,183.7 +18.8,0.91,14.660,180.3,18.6,0.91,15.030,180.5 +18.4,0.91,11.780,184.2,18.2,0.91,12.190,184.3 +18.6,0.91,10.390,196.5,18.4,0.91,10.580,196.9 +19.4,0.91,9.140,191.1,19.3,0.91,9.250,191.1 +20.6,0.91,9.430,191.9,20.4,0.91,9.510,192.0 +21.8,0.91,9.890,196.2,21.6,0.91,9.990,196.3 +22.7,0.91,10.320,193.2,22.5,0.91,10.420,193.5 +21.1,0.91,6.020,204.9,21.2,0.91,6.460,201.1 +22.4,0.91,10.420,178.1,22.2,0.91,10.490,178.2 +20.7,0.91,7.510,193.1,20.5,0.91,7.630,196.4 +21.0,0.91,5.920,215.5,20.9,0.91,6.250,212.8 +20.2,0.91,6.460,170.2,20.2,0.91,6.690,176.7 +20.5,0.91,9.610,182.2,20.4,0.91,9.960,183.7 +21.1,0.91,12.100,192.8,21.0,0.91,12.580,193.5 +20.8,0.91,12.200,191.1,20.7,0.91,12.770,191.6 +20.2,0.91,12.480,200.5,20.1,0.91,12.950,201.5 +19.7,0.91,12.940,200.4,19.6,0.91,13.490,201.0 +19.8,0.91,12.940,202.3,19.8,0.91,13.550,203.4 +19.7,0.91,12.900,201.9,19.7,0.91,13.420,203.6 +19.7,0.91,13.080,203.4,19.6,0.91,13.700,204.7 +19.6,0.91,13.200,206.0,19.5,0.91,13.790,206.7 +19.7,0.91,12.120,213.3,19.6,0.91,12.660,214.1 +19.3,0.91,3.820,11.6,19.1,0.91,3.260,10.9 +19.7,0.91,1.290,317.9,19.5,0.91,1.470,301.8 +13.9,0.91,10.500,356.0,13.8,0.91,10.550,356.4 +10.7,0.91,10.550,14.6,10.5,0.91,10.860,14.8 +9.5,0.91,11.380,24.1,9.3,0.91,11.570,24.0 +9.2,0.91,8.690,3.3,9.0,0.91,8.720,3.6 +8.2,0.91,11.770,30.0,8.0,0.91,11.880,29.9 +8.0,0.91,9.360,19.9,7.9,0.91,9.450,19.6 +8.0,0.91,10.060,15.8,7.8,0.91,10.150,16.0 +8.5,0.91,9.410,21.0,8.4,0.91,9.500,20.9 +8.7,0.91,8.420,26.8,8.5,0.91,8.490,26.6 +8.6,0.91,7.410,23.6,8.5,0.91,7.480,23.5 +8.2,0.91,7.950,23.3,8.1,0.91,8.120,23.5 +8.2,0.91,7.770,26.0,8.0,0.91,7.970,25.8 +7.9,0.91,8.320,11.0,7.7,0.91,8.420,11.3 +7.8,0.91,8.170,25.2,7.6,0.91,8.310,25.6 +7.9,0.91,7.800,31.9,7.8,0.91,7.980,32.2 +7.9,0.91,8.490,26.8,7.7,0.91,8.630,27.1 +7.9,0.91,8.170,32.2,7.7,0.91,8.360,32.6 +8.0,0.91,7.520,33.9,7.8,0.91,7.740,34.3 +8.1,0.91,7.450,34.1,7.9,0.91,7.660,34.3 +8.1,0.91,7.260,30.9,7.9,0.91,7.430,31.4 +8.3,0.91,5.970,25.8,8.1,0.91,6.250,26.4 +8.4,0.91,9.300,27.3,8.3,0.91,9.820,28.3 +8.5,0.91,8.390,28.6,8.3,0.91,8.810,29.3 +8.2,0.91,9.970,36.2,8.0,0.91,10.300,36.7 +7.9,0.91,8.470,31.4,7.8,0.91,8.830,32.3 +7.7,0.91,8.230,31.6,7.5,0.91,8.340,31.9 +7.7,0.91,7.920,33.7,7.5,0.91,7.980,33.8 +8.1,0.91,6.910,34.6,7.9,0.91,6.960,34.6 +8.3,0.91,6.180,27.0,8.1,0.91,6.210,27.0 +8.4,0.91,6.080,15.2,8.2,0.91,6.130,15.2 +8.5,0.91,5.490,4.0,8.3,0.91,5.530,4.7 +9.3,0.91,4.460,5.7,9.1,0.91,4.510,5.9 +10.5,0.91,4.950,8.5,10.4,0.91,5.000,8.4 +11.1,0.91,4.710,13.7,10.9,0.91,4.770,13.4 +10.6,0.91,6.110,344.4,10.4,0.91,6.250,344.8 +9.7,0.91,4.870,352.9,9.5,0.91,5.040,353.1 +9.6,0.91,3.750,346.2,9.5,0.91,3.930,347.4 +9.6,0.91,3.360,357.4,9.5,0.91,3.380,0.8 +9.7,0.91,3.340,2.5,9.6,0.91,3.300,5.1 +9.5,0.91,2.560,8.5,9.5,0.91,2.840,10.1 +9.3,0.91,2.170,10.6,9.3,0.91,2.410,11.3 +9.3,0.91,1.470,4.4,9.4,0.91,1.690,359.4 +9.7,0.91,1.230,359.1,9.9,0.91,1.550,358.9 +10.5,0.91,0.740,288.4,10.6,0.91,0.720,311.5 +11.0,0.91,1.520,235.3,11.0,0.91,1.270,240.7 +10.9,0.91,2.420,225.8,10.8,0.91,2.120,229.5 +10.6,0.91,3.630,215.8,10.7,0.91,3.250,217.8 +10.8,0.91,4.010,216.2,11.0,0.91,3.630,218.3 +11.3,0.91,5.180,218.2,11.4,0.91,4.800,219.0 +11.4,0.91,5.360,216.7,11.6,0.91,5.560,215.7 +12.5,0.91,4.330,217.7,12.3,0.91,4.320,217.6 +13.9,0.91,3.660,215.3,13.8,0.91,3.650,215.2 +15.3,0.91,3.240,206.3,15.1,0.91,3.250,206.3 +16.4,0.91,4.190,186.9,16.1,0.91,4.200,187.2 +17.1,0.91,4.580,185.1,16.9,0.91,4.600,185.3 +17.8,0.91,4.680,183.4,17.6,0.91,4.700,183.6 +18.1,0.91,5.120,178.5,17.9,0.91,5.170,178.7 +18.1,0.91,6.210,175.5,17.9,0.91,6.230,175.5 +17.7,0.91,6.920,167.8,17.6,0.91,7.180,168.4 +16.9,0.91,9.240,156.7,16.8,0.91,9.570,157.0 +16.4,0.91,10.550,160.1,16.4,0.91,10.950,160.3 +15.7,0.91,11.170,159.0,15.8,0.91,11.880,159.5 +15.5,0.91,11.810,163.9,15.6,0.91,12.600,164.4 +15.2,0.91,12.710,167.2,15.2,0.91,13.340,167.7 +14.9,0.91,14.190,173.4,15.0,0.91,14.810,173.6 +15.0,0.91,15.610,174.2,15.0,0.91,16.290,174.2 +14.3,0.91,15.340,182.3,14.4,0.91,15.990,182.9 +14.3,0.91,14.440,180.6,14.5,0.91,14.990,181.6 +13.5,0.91,13.380,185.6,13.6,0.91,13.990,186.2 +13.8,0.91,13.920,187.3,13.9,0.91,14.480,187.9 +13.4,0.91,13.730,186.9,13.5,0.91,14.190,187.7 +13.0,0.90,14.010,190.9,13.1,0.90,14.500,191.5 +13.0,0.90,14.670,187.9,13.3,0.90,15.470,188.6 +13.6,0.90,12.900,188.6,13.5,0.90,13.330,189.0 +14.3,0.90,12.720,192.8,14.2,0.90,12.940,193.2 +15.2,0.90,12.460,193.8,15.0,0.90,12.580,194.2 +16.3,0.90,10.450,200.5,16.1,0.90,10.580,200.8 +17.4,0.90,8.580,210.4,17.2,0.90,8.660,210.6 +18.4,0.91,5.690,216.2,18.2,0.91,5.750,216.7 +19.3,0.91,5.180,222.1,19.1,0.91,5.220,222.3 +19.5,0.91,3.660,196.1,19.3,0.91,3.650,197.6 +16.0,0.91,11.780,7.5,15.8,0.91,12.060,7.6 +10.4,0.91,12.810,7.0,10.2,0.91,12.980,7.1 +8.5,0.91,13.460,5.2,8.3,0.91,13.630,5.3 +6.8,0.91,14.140,12.3,6.6,0.91,14.360,12.0 +5.6,0.91,13.430,8.1,5.4,0.91,13.750,8.2 +5.1,0.91,11.750,13.3,5.0,0.91,12.160,13.3 +4.5,0.91,12.050,11.0,4.3,0.91,12.420,11.1 +4.1,0.91,11.090,10.7,4.0,0.91,11.470,10.6 +3.8,0.91,11.670,10.2,3.7,0.91,12.130,10.7 +3.4,0.91,10.240,12.5,3.3,0.91,10.780,13.1 +3.3,0.91,10.290,14.1,3.2,0.91,10.900,15.2 +3.2,0.91,10.080,13.1,3.2,0.91,10.670,14.5 +3.2,0.91,9.610,5.2,3.1,0.91,9.980,7.0 +3.1,0.91,8.880,356.9,3.1,0.91,9.070,358.6 +3.2,0.91,7.860,348.4,3.2,0.91,7.900,351.3 +3.4,0.91,5.840,339.7,3.6,0.91,6.010,344.5 +4.3,0.91,3.840,327.1,4.2,0.91,3.900,329.6 +6.1,0.91,3.430,326.0,6.0,0.91,3.410,326.9 +8.1,0.91,2.960,325.5,7.9,0.91,2.950,326.1 +10.1,0.91,1.770,327.4,9.9,0.91,1.760,327.9 +11.8,0.91,0.680,343.0,11.6,0.91,0.670,342.2 +13.2,0.91,0.310,168.6,13.0,0.91,0.290,172.1 +14.4,0.91,1.600,179.9,14.2,0.91,1.600,181.0 +15.0,0.91,2.550,172.9,14.8,0.91,2.570,173.7 +15.0,0.91,3.890,189.3,14.8,0.91,3.910,189.3 +14.5,0.91,5.340,185.2,14.3,0.91,5.270,185.4 +13.8,0.91,6.800,188.0,13.6,0.91,6.760,187.7 +12.9,0.91,9.140,183.3,12.8,0.91,9.200,183.4 +12.4,0.91,10.340,183.2,12.4,0.91,10.480,183.1 +12.2,0.91,11.370,186.1,12.3,0.91,11.630,187.1 +12.0,0.91,12.350,190.0,12.1,0.91,12.630,190.7 +11.7,0.91,12.850,190.8,11.9,0.91,13.220,191.6 +11.5,0.91,13.630,192.8,11.7,0.91,14.040,193.3 +12.2,0.91,13.480,198.3,12.6,0.91,13.880,199.2 +11.9,0.91,13.530,201.1,12.3,0.91,14.010,201.8 +12.2,0.91,13.410,202.4,12.6,0.91,13.870,202.7 +11.9,0.91,13.530,207.8,12.4,0.91,14.120,209.5 +11.8,0.91,13.990,213.5,12.2,0.91,14.700,214.5 +11.3,0.91,14.650,209.3,11.7,0.91,15.270,210.3 +11.2,0.91,14.340,206.8,11.3,0.91,14.910,207.4 +11.5,0.91,13.330,204.1,11.5,0.91,13.990,204.9 +12.9,0.91,12.310,201.1,12.8,0.91,12.460,201.6 +14.3,0.90,11.360,200.5,14.2,0.90,11.410,200.9 +15.8,0.90,11.050,199.6,15.7,0.90,11.100,199.8 +17.8,0.90,11.100,198.4,17.6,0.90,11.170,198.6 +19.4,0.90,11.260,196.1,19.2,0.90,11.360,196.3 +20.4,0.90,11.180,195.9,20.2,0.90,11.310,196.1 +20.9,0.90,11.190,194.9,20.7,0.90,11.330,195.0 +20.8,0.90,11.240,194.9,20.6,0.90,11.420,195.1 +20.2,0.90,12.970,192.1,20.1,0.90,13.400,192.3 +19.0,0.90,13.160,187.3,19.0,0.90,13.510,188.4 +18.3,0.90,14.740,192.3,18.3,0.90,15.510,193.8 +17.6,0.90,14.930,199.6,17.6,0.90,15.960,201.4 +16.5,0.90,14.510,197.4,16.5,0.90,15.590,199.8 +15.8,0.90,14.750,199.6,15.9,0.90,15.800,201.7 +15.4,0.90,15.000,203.7,15.6,0.90,16.140,205.7 +15.4,0.90,14.000,201.8,15.5,0.90,14.760,203.8 +15.2,0.90,14.530,202.6,15.3,0.90,15.370,204.5 +15.0,0.90,14.150,202.7,15.1,0.90,14.790,204.5 +14.5,0.90,10.620,215.2,14.7,0.90,11.280,215.8 +13.9,0.91,6.780,253.1,14.0,0.91,7.540,246.8 +13.8,0.91,5.700,293.0,13.8,0.91,5.990,291.5 +11.0,0.91,7.770,332.5,10.9,0.91,8.460,338.5 +9.9,0.91,8.890,349.3,9.8,0.91,9.300,350.2 +10.0,0.91,7.830,359.0,9.8,0.91,7.890,359.1 +11.0,0.91,7.960,5.8,10.8,0.91,8.020,5.9 +12.5,0.91,8.940,9.0,12.3,0.91,9.020,9.0 +13.5,0.91,9.790,10.3,13.3,0.91,9.890,10.2 +14.1,0.91,10.160,14.1,13.9,0.91,10.280,14.2 +14.9,0.91,10.370,17.1,14.7,0.91,10.490,17.1 +13.9,0.91,10.150,16.7,13.7,0.91,10.270,16.9 +14.2,0.91,11.110,28.0,14.0,0.91,11.240,28.0 +14.8,0.91,8.260,27.9,14.6,0.91,8.370,27.9 +14.9,0.91,7.440,31.9,14.7,0.91,7.690,31.8 +14.5,0.91,7.480,29.0,14.4,0.91,7.850,29.3 +13.9,0.91,9.450,30.6,13.8,0.91,9.970,33.1 +13.4,0.91,9.550,33.0,13.3,0.91,9.950,35.4 +12.6,0.91,8.730,45.7,12.5,0.91,8.780,49.1 +11.9,0.91,6.660,51.1,11.8,0.91,6.970,52.6 +11.3,0.91,5.880,48.1,11.2,0.91,6.100,47.8 +10.5,0.91,4.610,48.6,10.6,0.91,5.030,47.2 +10.4,0.91,4.030,38.6,10.5,0.91,4.440,40.0 +10.3,0.91,3.150,32.3,10.4,0.91,3.520,35.2 +10.7,0.91,2.900,10.7,10.8,0.91,3.190,16.1 +11.2,0.91,2.550,354.0,11.3,0.91,2.710,1.9 +11.8,0.91,2.270,347.1,11.9,0.91,2.350,356.4 +12.3,0.91,1.800,322.1,12.3,0.91,1.690,332.3 +13.3,0.91,2.530,303.8,13.4,0.91,2.280,309.4 +13.5,0.91,3.610,285.7,13.8,0.91,3.230,287.6 +14.1,0.91,3.160,275.4,13.9,0.91,3.140,275.2 +15.7,0.91,3.240,282.0,15.6,0.91,3.250,281.6 +17.1,0.91,3.680,287.2,16.9,0.91,3.700,287.0 +18.0,0.91,3.960,287.1,17.8,0.91,3.990,286.8 +18.7,0.91,3.960,286.3,18.5,0.91,3.990,286.1 +19.3,0.91,3.880,288.6,19.1,0.91,3.920,288.5 +19.7,0.91,3.460,285.4,19.5,0.91,3.500,285.3 +19.8,0.91,3.470,277.7,19.6,0.91,3.530,277.9 +19.7,0.91,3.500,256.5,19.5,0.91,3.560,257.1 +19.5,0.91,4.920,252.4,19.4,0.91,4.830,253.9 +19.4,0.91,5.640,241.5,19.3,0.91,5.640,241.9 +19.4,0.91,6.700,241.7,19.3,0.91,6.680,243.1 +18.8,0.91,7.300,228.2,18.7,0.91,7.190,230.5 +18.6,0.91,7.900,238.5,18.6,0.91,7.960,239.4 +18.4,0.91,9.180,239.9,18.4,0.91,9.120,241.0 +18.1,0.91,10.090,237.1,18.2,0.91,10.070,237.8 +18.0,0.91,10.880,238.0,18.1,0.91,10.910,238.3 +17.6,0.91,11.440,239.4,17.9,0.91,11.520,239.7 +17.7,0.91,11.460,240.3,18.0,0.91,11.270,240.1 +18.0,0.91,10.650,243.5,18.1,0.91,10.350,243.1 +18.1,0.91,9.630,241.5,18.2,0.91,9.350,240.5 +18.1,0.91,9.160,240.9,18.2,0.91,8.850,239.5 +18.4,0.91,8.690,239.7,18.5,0.91,8.430,237.6 +18.1,0.91,8.320,237.6,18.7,0.91,8.740,236.4 +18.3,0.91,6.500,232.7,18.2,0.91,6.690,232.9 +19.8,0.91,6.540,229.6,19.6,0.91,6.600,229.6 +20.6,0.91,7.020,222.1,20.4,0.91,7.090,222.2 +21.3,0.91,7.660,216.6,21.1,0.91,7.750,216.5 +21.6,0.91,8.260,214.0,21.4,0.91,8.360,214.0 +22.0,0.91,8.250,211.2,21.8,0.91,8.350,211.2 +22.0,0.91,8.170,212.2,21.8,0.91,8.280,212.2 +21.9,0.91,8.000,209.0,21.7,0.91,8.160,209.0 +21.3,0.91,10.210,201.3,21.2,0.91,10.450,201.7 +20.9,0.91,11.370,205.6,20.8,0.91,11.570,205.7 +20.3,0.91,11.990,209.4,20.4,0.91,12.280,209.2 +19.9,0.91,12.470,214.1,19.9,0.91,12.770,214.1 +19.4,0.91,12.310,214.1,19.5,0.91,12.570,213.6 +18.9,0.91,12.500,215.6,19.0,0.91,12.860,215.0 +18.5,0.91,13.150,215.8,18.7,0.91,13.600,215.1 +17.9,0.91,13.070,215.3,18.1,0.91,13.580,214.6 +17.4,0.91,13.160,216.3,17.6,0.91,13.760,215.7 +17.0,0.91,12.610,217.6,17.4,0.91,13.140,217.5 +16.7,0.91,12.210,217.9,17.0,0.91,12.700,217.7 +16.7,0.91,11.310,218.2,17.0,0.91,11.710,218.1 +16.7,0.91,10.580,215.6,17.0,0.91,10.920,215.7 +16.6,0.91,9.730,217.1,17.0,0.91,10.030,217.4 +16.4,0.91,8.650,213.2,16.8,0.91,8.930,213.7 +16.8,0.91,7.810,211.3,17.2,0.91,8.210,211.7 +17.1,0.91,2.230,201.5,17.0,0.91,2.300,202.4 +18.3,0.91,1.450,207.2,18.1,0.91,1.460,208.5 +19.3,0.91,1.910,192.2,19.1,0.91,1.920,192.7 +20.1,0.91,2.380,188.6,19.9,0.91,2.370,188.7 +20.6,0.91,2.650,166.3,20.4,0.91,2.650,165.9 +21.0,0.91,2.710,147.6,20.8,0.91,2.720,147.7 +21.2,0.91,3.680,128.1,21.0,0.91,3.670,128.7 +21.1,0.91,3.300,159.6,20.9,0.91,3.370,159.0 +20.7,0.91,5.410,145.8,20.5,0.91,5.480,145.9 +20.4,0.91,5.020,136.0,20.3,0.91,5.070,137.2 +20.7,0.91,5.900,134.2,20.6,0.91,5.730,137.0 +17.6,0.91,4.350,86.2,17.6,0.91,4.310,94.8 +14.8,0.91,6.440,69.7,15.2,0.91,6.310,79.5 +13.4,0.91,6.450,73.3,13.6,0.91,7.610,84.7 +12.1,0.91,6.860,80.4,12.2,0.91,7.950,88.5 +11.5,0.92,7.200,89.9,11.6,0.92,8.060,97.1 +11.1,0.92,7.960,106.3,11.3,0.92,9.910,110.0 +10.6,0.92,8.050,107.8,11.0,0.92,9.320,111.7 +11.3,0.92,8.050,116.6,12.2,0.92,8.310,125.4 +11.6,0.92,7.240,122.0,13.0,0.92,7.370,133.0 +10.5,0.92,6.510,119.5,11.8,0.92,7.160,131.6 +10.9,0.92,6.140,125.1,12.4,0.92,6.370,137.6 +9.5,0.92,4.930,127.2,10.4,0.92,5.600,132.8 +11.0,0.92,4.430,141.0,11.4,0.92,5.270,144.6 +11.5,0.92,2.730,115.9,11.5,0.92,3.070,127.0 +14.6,0.92,2.920,120.9,14.5,0.92,3.040,124.5 +16.5,0.92,5.140,162.1,16.3,0.92,5.200,162.3 +17.5,0.92,6.040,173.0,17.3,0.92,6.110,173.1 +18.0,0.92,5.780,174.0,17.8,0.92,5.850,174.0 +18.6,0.91,6.170,170.2,18.4,0.91,6.250,170.4 +18.8,0.91,6.540,174.0,18.6,0.91,6.640,174.1 +18.4,0.91,7.210,174.6,18.2,0.91,7.310,174.6 +17.8,0.91,7.620,149.6,17.7,0.91,7.960,149.6 +17.2,0.91,8.370,136.4,17.0,0.91,8.910,136.4 +16.6,0.91,9.370,141.1,16.5,0.91,9.910,141.2 +16.0,0.91,9.540,149.8,16.0,0.91,10.540,149.3 +15.5,0.91,10.110,148.7,15.4,0.91,10.930,148.6 +14.7,0.91,11.010,151.0,14.6,0.91,12.100,151.2 +14.5,0.91,11.720,164.4,14.5,0.91,12.640,163.9 +14.7,0.91,11.280,171.2,14.6,0.91,11.830,171.5 +14.3,0.91,11.600,175.4,14.2,0.91,12.170,175.5 +14.8,0.91,12.140,182.9,14.6,0.91,12.550,183.1 +15.2,0.91,12.000,197.1,15.1,0.91,12.420,197.3 +15.5,0.91,10.190,187.3,15.3,0.91,10.600,187.7 +15.4,0.91,10.220,193.8,15.3,0.91,10.600,194.0 +15.3,0.91,10.950,188.5,15.2,0.91,11.410,189.4 +15.4,0.91,11.610,196.3,15.3,0.91,12.070,197.2 +15.3,0.91,8.990,195.3,15.2,0.91,9.290,196.1 +16.3,0.91,9.480,202.4,16.1,0.91,9.620,202.8 +17.4,0.91,9.120,209.1,17.2,0.91,9.240,209.5 +16.4,0.91,6.610,223.8,16.3,0.91,6.670,222.0 +19.4,0.91,8.010,227.8,19.2,0.91,8.100,228.0 +19.8,0.91,8.420,230.5,19.6,0.91,8.500,230.9 +20.4,0.91,7.410,225.3,20.3,0.91,7.480,226.2 +20.9,0.91,6.180,232.8,20.7,0.91,6.220,233.3 +21.4,0.91,6.240,251.5,21.3,0.91,6.310,251.6 +21.6,0.91,4.550,304.8,21.4,0.91,4.780,305.0 +20.4,0.91,2.530,5.7,20.3,0.91,3.150,3.7 +20.4,0.91,6.400,356.9,20.3,0.91,6.430,356.9 +19.7,0.91,6.820,7.8,19.6,0.91,7.010,8.7 +17.8,0.91,4.950,31.9,17.6,0.91,5.120,31.2 +16.4,0.91,5.420,55.6,16.3,0.91,5.620,51.8 +15.4,0.91,6.610,34.7,15.3,0.91,6.850,36.4 +14.3,0.91,5.990,28.4,14.2,0.91,6.520,29.8 +13.8,0.91,6.990,20.7,13.7,0.91,7.440,21.3 +13.8,0.91,6.100,23.0,13.7,0.91,6.420,22.8 +13.1,0.91,7.580,20.4,12.9,0.91,7.850,20.6 +12.5,0.91,6.300,4.2,12.3,0.91,6.340,4.6 +11.9,0.91,5.440,358.3,11.7,0.91,5.450,358.4 +11.2,0.91,4.930,360.0,11.0,0.91,4.980,359.7 +11.0,0.91,4.290,10.6,10.8,0.91,4.290,10.8 +11.1,0.91,4.100,5.5,10.9,0.91,4.110,5.4 +12.1,0.91,3.470,5.1,12.0,0.91,3.480,4.7 +13.5,0.91,2.650,20.1,13.3,0.91,2.650,19.2 +14.7,0.91,1.530,27.0,14.5,0.91,1.500,25.0 +16.3,0.91,1.260,338.4,16.1,0.91,1.280,335.2 +17.6,0.91,1.110,263.5,17.4,0.91,1.130,262.2 +18.5,0.91,0.850,241.0,18.3,0.91,0.900,240.1 +19.2,0.91,2.700,197.4,19.0,0.91,2.690,198.0 +18.8,0.91,4.760,182.9,18.6,0.91,4.770,183.6 +18.0,0.91,6.430,182.0,17.8,0.91,6.550,182.4 +17.4,0.91,6.990,175.6,17.3,0.91,6.940,176.9 +16.7,0.91,8.710,173.1,16.7,0.91,8.990,173.7 +15.6,0.91,9.280,168.2,15.7,0.91,9.640,169.6 +15.8,0.91,10.470,178.3,15.8,0.91,10.840,178.6 +15.5,0.91,11.750,175.8,15.5,0.91,12.180,176.1 +15.2,0.91,12.590,174.8,15.2,0.91,13.080,175.2 +15.8,0.91,12.760,182.1,15.8,0.91,13.250,182.4 +16.0,0.91,13.460,184.9,16.1,0.91,13.990,185.1 +15.8,0.91,13.300,181.0,15.8,0.91,13.810,181.5 +15.4,0.91,13.440,182.6,15.4,0.91,14.040,183.2 +15.3,0.91,13.470,182.0,15.3,0.91,14.280,182.5 +16.1,0.91,13.520,185.5,16.0,0.91,13.910,185.7 +16.6,0.91,13.840,186.4,16.5,0.91,14.270,186.7 +16.9,0.91,14.420,185.8,16.7,0.91,14.830,186.1 +16.6,0.91,14.560,181.7,16.5,0.91,14.980,181.8 +17.7,0.91,14.300,184.8,17.6,0.91,14.570,185.0 +18.4,0.91,14.340,185.8,18.2,0.91,14.530,185.9 +19.2,0.91,13.770,186.1,19.0,0.91,13.930,186.3 +20.6,0.91,12.390,179.7,20.4,0.91,12.550,180.0 +22.3,0.91,12.460,184.1,22.1,0.91,12.630,184.1 +22.9,0.91,11.860,178.8,22.6,0.91,12.050,179.1 +23.5,0.91,13.050,179.3,23.3,0.91,13.270,179.5 +23.6,0.91,15.080,179.8,23.4,0.91,15.270,179.8 +22.9,0.91,12.100,175.3,22.7,0.91,12.690,175.2 +22.4,0.91,14.110,174.7,22.3,0.91,14.780,174.6 +21.6,0.91,17.190,174.4,21.5,0.91,17.810,174.6 +20.6,0.91,18.530,178.2,20.6,0.91,19.290,178.4 +20.8,0.91,21.190,183.5,20.7,0.91,21.940,183.6 +20.2,0.91,19.920,184.0,20.2,0.91,20.680,184.0 +19.5,0.91,17.500,183.0,19.4,0.91,18.280,183.0 +18.9,0.91,17.050,183.7,18.8,0.91,17.840,183.9 +18.3,0.91,17.280,186.0,18.3,0.91,18.090,186.3 +18.3,0.91,17.390,186.5,18.2,0.91,18.140,186.7 +18.0,0.91,16.500,188.1,17.9,0.91,17.180,188.5 +17.9,0.91,17.160,190.4,17.8,0.91,17.800,190.8 +17.6,0.91,16.760,192.2,17.6,0.91,17.420,192.5 +17.6,0.91,16.480,193.4,17.5,0.91,17.120,193.6 +17.6,0.91,15.930,193.8,17.5,0.91,16.530,194.1 +17.9,0.91,14.720,193.6,17.8,0.91,15.350,193.7 +18.8,0.91,14.300,193.6,18.6,0.91,14.490,193.7 +19.8,0.91,12.550,193.7,19.6,0.91,12.690,193.8 +20.8,0.91,11.400,195.3,20.6,0.91,11.520,195.4 +21.9,0.91,9.670,195.1,21.7,0.91,9.790,195.1 +23.0,0.91,9.800,192.7,22.8,0.91,9.930,192.7 +23.7,0.91,9.540,189.8,23.5,0.91,9.680,189.8 +23.9,0.91,8.590,183.2,23.7,0.91,8.730,183.3 +24.0,0.91,9.830,176.5,23.9,0.91,10.080,176.6 +23.7,0.91,8.460,175.5,23.6,0.91,9.180,175.7 +23.4,0.91,10.720,180.5,23.3,0.91,11.440,180.5 +22.9,0.91,11.770,183.9,22.8,0.91,12.380,184.0 +22.4,0.91,12.990,183.5,22.3,0.91,13.690,183.5 +21.6,0.91,10.850,178.2,21.4,0.91,11.540,177.7 +20.6,0.91,11.820,174.6,20.6,0.91,12.820,174.5 +20.2,0.91,13.060,172.8,20.1,0.91,13.630,173.1 +20.0,0.91,14.180,170.9,19.9,0.91,14.660,171.3 +19.7,0.91,15.210,178.9,19.6,0.91,15.720,179.1 +19.6,0.91,16.620,189.6,19.4,0.91,17.060,189.9 +19.3,0.91,15.230,187.3,19.1,0.91,15.570,187.6 +19.2,0.91,15.630,192.0,19.0,0.91,16.180,192.4 +19.1,0.91,17.090,175.8,18.9,0.91,17.580,176.5 +18.9,0.91,17.250,187.1,18.7,0.91,17.730,187.3 +18.6,0.90,15.240,187.6,18.5,0.90,15.720,187.5 +19.4,0.91,14.240,187.9,19.3,0.91,14.530,188.0 +19.7,0.91,14.220,182.2,19.5,0.91,14.430,182.4 +20.2,0.91,13.220,192.4,20.0,0.91,13.380,192.6 +20.4,0.90,12.490,186.7,20.2,0.90,12.620,186.9 +22.0,0.90,10.140,200.1,21.8,0.90,10.260,200.3 +22.4,0.90,8.930,195.1,22.2,0.90,9.040,195.8 +23.5,0.90,8.950,215.3,23.3,0.90,9.110,215.6 +20.7,0.90,9.910,217.6,21.0,0.90,10.610,218.5 +22.2,0.90,9.840,214.4,22.1,0.90,10.270,214.4 +19.2,0.90,12.550,182.0,19.1,0.90,12.930,182.4 +18.4,0.90,12.180,188.6,18.3,0.90,12.600,188.8 +18.4,0.90,11.710,192.7,18.4,0.90,12.230,193.4 +19.4,0.90,12.100,209.4,19.4,0.90,12.770,210.2 +19.2,0.90,12.410,196.6,19.2,0.90,13.100,196.9 +18.8,0.90,11.520,196.1,18.7,0.90,12.120,196.8 +18.8,0.90,11.260,213.5,18.8,0.90,11.870,214.1 +19.0,0.90,12.370,228.3,18.9,0.90,13.150,228.8 +18.6,0.90,11.660,237.2,18.5,0.90,12.200,238.2 +18.5,0.90,11.820,239.1,18.5,0.90,12.530,240.3 +18.8,0.90,11.930,250.7,18.8,0.90,12.680,251.5 +17.1,0.90,14.370,283.4,17.0,0.90,15.480,285.0 +16.2,0.90,15.610,299.5,16.1,0.90,16.410,299.3 +14.7,0.90,14.340,286.7,14.6,0.90,15.610,288.8 +13.2,0.90,13.150,285.8,13.2,0.90,14.290,287.3 +13.1,0.90,13.950,293.8,12.9,0.90,14.400,293.9 +13.4,0.90,12.840,299.1,13.2,0.90,13.010,299.3 +14.6,0.90,10.420,300.7,14.4,0.90,10.570,300.9 +15.8,0.90,9.020,297.4,15.6,0.90,9.160,297.5 +16.7,0.90,9.200,299.6,16.5,0.90,9.330,299.5 +17.2,0.90,8.230,297.7,17.0,0.90,8.370,297.7 +17.7,0.90,6.900,295.4,17.5,0.90,7.030,295.3 +18.0,0.90,6.750,288.8,17.8,0.90,6.860,288.8 +18.1,0.90,5.660,292.3,17.9,0.90,5.770,291.8 +17.9,0.90,6.710,289.8,17.7,0.90,6.720,290.2 +17.9,0.90,6.050,277.4,17.8,0.90,6.010,278.1 +17.9,0.90,7.260,260.9,17.8,0.90,7.260,262.1 +18.0,0.90,8.330,267.9,18.0,0.90,8.390,268.1 +18.0,0.90,8.150,249.1,17.9,0.90,8.100,249.6 +18.2,0.90,10.420,263.0,18.2,0.90,10.360,264.6 +19.0,0.90,9.640,257.4,19.1,0.90,9.610,257.6 +19.4,0.90,9.380,244.2,19.4,0.90,9.410,245.2 +16.8,0.90,11.380,222.6,17.2,0.90,11.710,223.7 +14.9,0.90,9.600,267.6,15.0,0.90,9.850,273.0 +15.9,0.90,14.680,281.2,16.0,0.90,15.910,284.7 +14.6,0.90,14.700,278.2,14.6,0.90,15.860,281.6 +13.1,0.90,15.680,276.0,13.3,0.90,17.020,279.3 +12.6,0.90,16.030,279.1,12.7,0.90,17.220,282.4 +11.8,0.90,15.410,286.6,12.0,0.90,16.510,289.6 +11.5,0.90,10.820,285.0,11.4,0.90,11.530,286.2 +12.2,0.90,9.390,299.1,12.0,0.90,9.470,299.5 +13.7,0.90,8.740,308.9,13.5,0.90,8.780,309.3 +15.3,0.91,8.290,317.3,15.1,0.91,8.350,317.5 +16.7,0.91,7.450,338.1,16.5,0.91,7.560,338.1 +17.5,0.91,9.560,354.0,17.3,0.91,9.680,353.9 +17.6,0.91,9.860,1.1,17.4,0.91,10.020,1.0 +17.3,0.91,10.550,8.4,17.1,0.91,10.700,8.2 +17.1,0.91,10.770,10.3,16.9,0.91,10.960,10.2 +17.3,0.91,9.990,20.1,17.2,0.91,10.500,20.0 +17.2,0.91,10.520,17.4,17.2,0.91,10.900,18.1 +16.6,0.91,10.710,14.3,16.6,0.91,11.370,16.1 +15.5,0.91,12.400,25.8,15.5,0.91,13.100,27.3 +14.8,0.91,11.390,31.9,14.8,0.91,11.990,32.5 +14.5,0.91,10.470,34.2,14.5,0.91,11.200,34.3 +13.4,0.91,8.990,35.2,13.7,0.91,10.600,35.7 +12.9,0.91,7.810,42.8,13.1,0.91,8.910,42.7 +12.1,0.91,5.770,39.7,12.1,0.91,6.430,38.8 +11.3,0.91,5.210,33.7,11.4,0.91,5.710,34.0 +11.1,0.91,5.440,29.7,11.2,0.91,5.940,30.9 +10.8,0.92,5.380,26.6,10.9,0.92,5.800,28.1 +10.6,0.92,5.830,17.8,10.7,0.92,6.190,19.7 +10.3,0.92,6.000,15.9,10.3,0.92,6.180,18.3 +10.1,0.92,5.550,21.0,10.2,0.92,5.640,22.7 +9.9,0.92,4.450,15.3,9.9,0.92,5.130,17.7 +11.0,0.92,4.080,25.6,10.8,0.92,4.120,25.6 +12.2,0.92,3.800,35.1,12.0,0.92,3.800,35.0 +13.3,0.92,2.490,45.8,13.1,0.92,2.490,45.6 +14.3,0.92,1.760,34.9,14.1,0.92,1.730,34.5 +15.3,0.92,1.060,46.3,15.1,0.92,1.020,46.3 +16.0,0.91,0.600,18.6,15.8,0.91,0.550,17.6 +16.5,0.91,0.170,353.8,16.3,0.91,0.110,345.7 +16.6,0.91,1.890,118.5,16.4,0.91,1.880,120.3 +16.2,0.91,2.900,179.3,16.1,0.91,3.040,181.3 +16.1,0.91,5.330,169.3,15.9,0.91,5.340,169.9 +15.3,0.91,7.800,170.1,15.3,0.91,7.850,171.3 +15.4,0.91,8.440,175.8,15.3,0.91,8.470,176.5 +14.4,0.91,10.280,170.4,14.4,0.91,10.140,171.7 +13.6,0.91,12.010,167.1,13.8,0.91,12.260,168.4 +12.8,0.91,13.160,168.2,13.1,0.91,13.610,169.1 +12.4,0.91,13.340,172.5,12.8,0.91,13.910,173.1 +12.3,0.91,13.760,172.0,12.7,0.91,14.420,172.7 +11.0,0.91,14.120,178.0,11.3,0.91,14.770,178.4 +10.5,0.91,13.900,181.4,10.8,0.91,14.630,181.7 +10.2,0.91,13.770,181.6,10.6,0.91,14.510,182.2 +9.7,0.91,13.790,179.6,10.1,0.91,14.500,180.2 +9.1,0.91,13.790,179.6,9.4,0.91,14.520,180.4 +8.7,0.91,13.210,178.4,8.9,0.91,13.950,178.8 +8.3,0.91,12.450,181.8,8.3,0.91,13.810,182.1 +10.2,0.91,11.610,183.7,10.1,0.91,11.820,183.7 +11.6,0.91,11.340,183.7,11.5,0.91,11.490,183.8 +13.8,0.91,12.700,186.4,13.6,0.91,12.910,186.5 +14.7,0.91,12.300,184.2,14.5,0.91,12.500,184.3 +15.8,0.91,14.130,185.2,15.6,0.91,14.350,185.2 +16.3,0.91,14.800,193.8,16.1,0.91,15.070,193.7 +16.2,0.91,14.450,189.0,16.0,0.91,14.730,189.0 +16.0,0.91,13.230,190.4,15.8,0.91,13.590,190.4 +13.7,0.91,13.740,195.7,13.5,0.91,14.110,195.6 +14.0,0.91,14.690,195.6,13.8,0.91,15.140,195.3 +14.0,0.91,16.300,187.6,13.8,0.91,16.870,187.7 +13.4,0.91,16.270,191.0,13.2,0.91,16.910,191.0 +13.3,0.90,16.770,192.3,13.2,0.90,17.290,192.5 +13.4,0.90,17.870,192.1,13.3,0.90,18.460,192.1 +13.3,0.90,18.090,192.7,13.2,0.90,18.680,192.9 +13.1,0.90,19.240,194.7,13.0,0.90,19.840,195.0 +12.8,0.90,18.570,192.6,12.6,0.90,19.150,192.7 +12.4,0.90,18.200,192.1,12.2,0.90,18.790,192.5 +12.2,0.90,17.400,194.6,12.0,0.90,17.920,195.0 +12.0,0.90,18.070,197.1,11.9,0.90,18.610,197.3 +11.9,0.90,17.240,196.9,11.8,0.90,17.740,197.2 +11.8,0.90,16.210,199.6,11.7,0.90,16.730,199.9 +11.8,0.91,15.360,200.5,11.7,0.91,15.840,200.7 +12.2,0.91,14.000,197.2,12.1,0.91,14.550,197.4 +13.3,0.91,14.370,198.3,13.1,0.91,14.520,198.5 +13.5,0.91,11.960,197.8,13.3,0.91,12.100,198.1 +13.6,0.91,10.890,199.0,13.4,0.91,10.980,199.1 +13.2,0.91,10.640,195.0,13.0,0.91,10.780,195.5 +13.8,0.91,8.090,190.6,14.0,0.91,8.790,189.5 +17.7,0.91,9.230,181.8,17.5,0.91,9.390,181.9 +17.9,0.91,10.040,182.6,17.7,0.91,10.220,182.5 +15.1,0.91,11.920,168.3,14.9,0.91,12.070,168.5 +13.5,0.91,11.590,174.4,13.3,0.91,12.000,174.7 +13.2,0.91,12.240,181.2,13.1,0.91,12.690,181.3 +12.9,0.91,11.180,169.4,12.8,0.91,11.740,169.2 +13.0,0.91,11.450,159.6,12.9,0.91,11.970,159.6 +13.8,0.91,11.520,158.5,13.7,0.91,11.970,158.8 +14.2,0.91,11.840,165.9,14.1,0.91,12.380,166.2 +14.8,0.91,10.730,168.5,14.7,0.91,11.160,168.4 +15.2,0.91,11.590,172.3,15.0,0.91,12.040,172.6 +15.4,0.91,12.950,176.2,15.2,0.91,13.380,176.2 +15.5,0.91,14.020,179.2,15.3,0.91,14.520,179.3 +15.4,0.91,13.820,178.8,15.3,0.91,14.310,178.8 +15.5,0.91,14.960,181.4,15.3,0.91,15.380,181.5 +15.3,0.91,14.310,181.4,15.1,0.91,14.810,181.5 +15.0,0.91,15.030,183.5,14.8,0.91,15.530,183.7 +15.2,0.91,14.380,185.1,15.0,0.91,14.810,185.3 +15.1,0.91,14.130,187.2,15.0,0.91,14.820,187.5 +16.0,0.91,13.500,187.1,15.9,0.91,13.780,187.4 +17.1,0.91,13.470,188.3,16.9,0.91,13.690,188.6 +17.8,0.91,13.490,190.7,17.6,0.91,13.660,190.9 +18.2,0.91,12.640,188.1,18.0,0.91,12.790,188.5 +18.9,0.91,10.600,188.0,18.7,0.91,10.730,188.1 +19.6,0.90,11.110,189.3,19.4,0.90,11.190,189.2 +20.3,0.90,10.180,179.7,20.1,0.90,10.330,179.7 +21.0,0.90,10.410,190.1,20.8,0.90,10.590,190.0 +20.9,0.90,11.420,181.8,20.8,0.90,11.990,181.8 +20.3,0.90,11.120,166.1,20.2,0.90,11.530,167.7 +19.6,0.91,11.640,186.8,19.7,0.91,12.450,188.0 +16.1,0.91,6.730,233.6,16.2,0.91,6.790,237.0 +17.9,0.91,8.410,228.2,18.3,0.91,8.780,230.9 +18.4,0.91,6.790,237.3,18.9,0.91,6.790,242.3 +19.2,0.91,6.690,231.6,19.1,0.91,6.780,232.7 +18.1,0.91,5.260,308.2,18.1,0.91,5.280,307.8 +10.9,0.91,10.600,358.3,10.7,0.91,11.330,358.3 +9.6,0.91,12.210,358.5,9.5,0.91,12.730,358.5 +8.3,0.91,14.490,357.1,8.1,0.91,14.920,357.1 +7.2,0.91,12.780,4.3,7.0,0.91,13.230,4.5 +6.5,0.91,10.750,1.2,6.3,0.91,11.390,1.6 +5.5,0.91,12.230,0.3,5.4,0.91,12.710,0.8 +5.0,0.91,13.900,8.9,4.8,0.91,14.320,9.1 +4.9,0.91,12.830,8.1,4.7,0.91,12.980,8.2 +5.7,0.91,10.110,7.9,5.5,0.91,10.210,7.9 +6.8,0.92,9.970,4.6,6.6,0.92,10.060,4.6 +8.2,0.92,9.140,5.8,8.0,0.92,9.220,5.7 +9.7,0.92,8.390,7.6,9.5,0.92,8.470,7.5 +10.8,0.92,8.370,4.2,10.6,0.92,8.450,4.2 +11.5,0.92,7.600,6.5,11.3,0.92,7.690,6.2 +11.9,0.92,7.260,7.9,11.7,0.92,7.350,7.8 +11.8,0.92,6.930,14.0,11.6,0.92,7.010,13.8 +11.3,0.92,6.610,31.7,11.1,0.92,6.760,31.2 +10.7,0.92,7.880,36.3,10.6,0.92,8.010,36.5 +9.9,0.92,7.630,51.5,9.8,0.92,7.870,51.6 +9.2,0.92,6.840,55.0,9.2,0.92,7.320,54.1 +8.3,0.92,7.130,63.1,8.4,0.92,7.570,61.2 +8.1,0.92,6.630,59.8,8.2,0.92,7.160,58.4 +7.7,0.92,5.720,62.9,7.9,0.92,6.240,61.6 +7.5,0.92,4.870,63.1,7.6,0.92,5.320,61.9 +7.6,0.92,4.200,62.3,7.8,0.92,4.720,61.1 +7.6,0.92,3.470,70.3,7.8,0.92,3.930,67.4 +7.6,0.92,3.250,73.8,7.8,0.92,3.660,70.6 +8.0,0.92,3.600,68.4,8.3,0.92,4.010,67.1 +8.2,0.92,3.340,68.9,8.4,0.92,3.770,67.7 +8.3,0.92,3.170,67.8,8.6,0.92,3.600,67.0 +8.5,0.92,3.220,79.4,8.7,0.92,3.570,78.4 +9.0,0.92,3.270,90.3,9.1,0.92,3.610,90.0 +9.5,0.92,1.960,90.1,9.3,0.92,2.030,91.9 +10.8,0.92,1.850,87.2,10.6,0.92,1.860,89.5 +12.1,0.92,1.910,102.0,11.9,0.92,1.930,103.1 +13.0,0.92,3.300,129.3,12.8,0.92,3.300,128.7 +13.6,0.92,3.360,127.7,13.4,0.92,3.370,127.3 +14.0,0.92,3.280,130.5,13.8,0.92,3.310,130.9 +14.2,0.92,3.550,133.9,14.0,0.92,3.590,134.2 +14.0,0.92,4.150,147.3,13.8,0.92,4.230,147.3 +13.6,0.92,5.260,157.9,13.4,0.92,5.290,157.6 +13.1,0.92,6.080,159.5,13.0,0.92,5.930,160.4 +12.7,0.92,7.000,156.1,12.6,0.92,6.980,156.8 +12.1,0.92,7.810,172.5,12.0,0.92,8.110,172.8 +11.8,0.92,8.790,172.0,11.8,0.92,9.160,171.9 +11.3,0.92,9.730,177.4,11.3,0.92,10.190,177.3 +11.1,0.92,10.950,178.3,11.1,0.92,11.450,178.4 +10.8,0.92,11.350,179.2,10.8,0.92,11.850,179.5 +10.4,0.92,11.450,180.0,10.4,0.92,11.970,180.3 +10.0,0.92,11.080,184.2,10.0,0.92,11.670,184.1 +9.8,0.92,11.850,184.8,9.7,0.92,12.400,184.9 +9.5,0.92,11.610,183.6,9.5,0.92,12.110,183.6 +9.2,0.92,11.310,184.1,9.2,0.92,11.850,184.3 +9.1,0.92,11.640,184.8,9.1,0.92,12.180,185.0 +9.2,0.92,11.300,187.1,9.1,0.92,11.740,187.1 +8.8,0.92,10.810,186.6,8.7,0.92,11.400,186.4 +9.4,0.92,9.510,188.6,9.3,0.92,9.690,188.7 +10.5,0.92,10.370,191.6,10.3,0.92,10.520,191.8 +11.3,0.91,10.830,191.8,11.1,0.91,10.960,191.8 +12.2,0.91,11.810,193.3,12.0,0.91,11.960,193.4 +12.7,0.91,11.870,198.6,12.5,0.91,12.040,198.6 +11.4,0.91,11.160,202.5,11.2,0.91,11.310,202.5 +9.0,0.91,11.300,199.7,8.8,0.91,11.410,199.7 +8.1,0.91,11.600,195.3,7.9,0.91,11.820,195.2 +8.1,0.91,12.930,194.9,7.9,0.91,13.300,195.0 +8.3,0.91,14.000,200.4,8.1,0.91,14.690,200.6 +9.0,0.91,14.630,200.1,9.0,0.91,15.170,199.9 +9.9,0.91,13.920,197.9,9.8,0.91,14.440,198.0 +10.3,0.91,14.650,198.4,10.2,0.91,15.210,198.6 +10.3,0.91,15.390,198.8,10.2,0.91,15.980,199.3 +10.3,0.91,14.980,202.8,10.3,0.91,15.670,203.3 +10.2,0.91,14.580,202.4,10.2,0.91,15.300,203.1 +9.9,0.91,15.300,205.1,9.9,0.91,16.030,205.8 +9.6,0.91,16.110,206.4,9.6,0.91,16.910,207.1 +9.5,0.91,16.440,207.6,9.5,0.91,17.280,208.2 +9.2,0.91,15.740,205.4,9.3,0.91,16.510,206.4 +8.9,0.91,14.600,204.2,8.9,0.91,15.250,205.9 +8.7,0.91,14.270,208.1,8.8,0.91,14.920,209.7 +8.7,0.91,14.140,209.8,8.8,0.91,14.760,211.5 +9.2,0.91,11.930,211.3,9.1,0.91,12.640,212.7 +10.7,0.91,10.110,208.9,10.6,0.91,10.270,209.9 +12.7,0.91,8.460,209.0,12.5,0.91,8.470,209.7 +14.5,0.91,8.110,207.3,14.3,0.91,8.130,207.8 +16.0,0.91,7.050,201.2,15.8,0.91,7.080,201.6 +17.4,0.91,6.500,196.2,17.2,0.91,6.540,196.5 +18.4,0.91,6.100,195.3,18.2,0.91,6.150,195.5 +19.0,0.91,6.150,183.3,18.8,0.91,6.210,183.5 +18.9,0.91,6.670,177.9,18.8,0.91,6.830,178.1 +18.6,0.91,8.640,165.5,18.5,0.91,8.760,166.7 +18.5,0.91,10.600,169.4,18.5,0.91,10.770,170.0 +17.9,0.91,11.540,169.4,18.1,0.91,11.600,170.9 +17.1,0.91,11.960,183.8,17.3,0.91,12.390,186.6 +16.3,0.91,12.710,190.8,16.6,0.91,13.200,192.3 +15.8,0.91,12.240,193.1,16.0,0.91,12.540,193.5 +14.9,0.91,11.370,192.6,15.2,0.91,11.670,193.6 +14.7,0.91,11.570,194.0,15.1,0.91,11.930,194.3 +14.6,0.91,11.630,194.5,15.0,0.91,11.970,194.4 +14.1,0.91,11.360,195.2,14.6,0.91,11.640,195.9 +13.7,0.91,11.060,191.1,14.1,0.91,11.250,192.4 +12.8,0.91,8.300,189.9,13.3,0.91,8.710,191.1 +12.9,0.91,6.650,191.1,13.1,0.91,6.850,192.4 +12.5,0.91,4.770,192.1,12.7,0.91,4.980,193.9 +12.0,0.91,3.760,178.5,12.2,0.91,3.990,181.3 +12.6,0.92,3.500,183.0,12.7,0.92,3.860,185.5 +13.1,0.92,2.860,164.8,12.9,0.92,2.850,165.6 +14.3,0.92,3.130,177.3,14.1,0.92,3.150,177.4 +15.4,0.92,3.950,179.5,15.2,0.92,3.970,179.3 +16.3,0.92,4.290,181.6,16.1,0.92,4.310,181.6 +17.1,0.91,4.720,177.5,16.9,0.91,4.750,177.5 +17.6,0.91,5.070,181.0,17.4,0.91,5.100,181.0 +17.7,0.91,5.630,176.6,17.5,0.91,5.650,176.7 +17.2,0.91,6.270,168.4,17.0,0.91,6.320,168.4 +16.1,0.91,7.630,155.8,15.9,0.91,7.910,156.3 +14.9,0.91,9.330,154.3,14.8,0.91,9.680,154.3 +14.4,0.91,9.770,158.5,14.4,0.91,10.180,158.9 +14.4,0.91,10.050,162.3,14.5,0.91,10.520,163.1 +13.8,0.91,11.130,161.8,13.9,0.91,11.660,162.6 +13.2,0.91,11.990,172.4,13.3,0.91,12.580,172.3 +12.5,0.91,12.480,178.7,12.6,0.91,13.060,178.3 +12.3,0.91,12.800,183.8,12.5,0.91,13.440,183.7 +12.0,0.91,11.840,186.4,12.0,0.91,12.480,186.8 +12.3,0.91,10.650,192.0,12.5,0.91,11.210,193.9 +12.1,0.91,9.580,192.9,12.2,0.91,10.130,193.6 +12.1,0.91,9.540,204.4,12.1,0.91,10.030,204.5 +12.0,0.91,9.390,211.3,11.9,0.91,9.730,211.7 +12.2,0.91,9.050,215.9,12.1,0.91,9.290,215.9 +12.4,0.91,8.450,218.5,12.3,0.91,8.730,219.1 +12.2,0.91,6.050,221.4,12.0,0.91,6.160,222.3 +12.8,0.91,5.920,225.8,12.6,0.91,5.980,225.9 +12.8,0.91,6.350,224.9,12.6,0.91,6.380,224.8 +13.8,0.91,5.540,224.4,13.6,0.91,5.580,224.2 +14.8,0.91,5.040,221.7,14.6,0.91,5.050,221.8 +16.1,0.91,4.440,215.5,15.9,0.91,4.450,215.7 +17.2,0.91,3.900,209.6,17.0,0.91,3.930,209.6 +17.7,0.91,3.720,198.1,17.5,0.91,3.720,198.7 +17.6,0.91,3.420,189.4,17.4,0.91,3.430,190.0 +17.1,0.91,4.380,176.3,16.9,0.91,4.340,177.1 +17.0,0.91,4.320,173.8,16.9,0.91,4.300,174.2 +16.7,0.91,4.530,167.2,16.6,0.91,4.150,169.5 +16.8,0.91,3.840,166.1,16.8,0.91,3.680,168.1 +16.9,0.91,2.880,164.5,16.9,0.91,2.650,168.1 +17.1,0.92,1.200,114.0,17.0,0.92,0.960,106.3 +16.7,0.92,1.530,68.9,16.9,0.92,1.370,63.0 +16.5,0.92,3.020,45.4,16.6,0.92,3.310,45.4 +10.6,0.92,8.530,32.5,10.5,0.92,8.890,32.5 +10.4,0.92,7.820,34.5,10.3,0.92,8.450,35.1 +8.3,0.92,10.010,24.9,8.1,0.92,10.140,25.0 +5.6,0.92,12.670,28.9,5.5,0.92,12.850,29.0 +4.4,0.92,13.240,26.2,4.2,0.92,13.410,26.2 +3.8,0.92,13.070,22.8,3.6,0.92,13.230,22.8 +2.5,0.92,14.490,21.8,2.3,0.92,14.660,22.1 +1.4,0.93,14.100,19.5,1.2,0.93,14.270,19.5 +-0.1,0.93,14.790,20.0,-0.3,0.93,14.950,20.0 +-0.3,0.93,13.320,21.2,-0.6,0.93,13.430,21.1 +-0.4,0.93,12.210,19.2,-0.6,0.93,12.290,19.2 +0.1,0.93,11.640,16.0,-0.1,0.93,11.710,16.1 +1.8,0.93,10.550,19.8,1.6,0.93,10.650,19.8 +3.7,0.93,10.530,21.8,3.5,0.93,10.630,21.8 +4.0,0.93,10.580,26.3,3.8,0.93,10.680,26.1 +3.8,0.93,9.800,27.2,3.6,0.93,9.900,27.1 +3.5,0.93,9.720,22.5,3.3,0.93,10.020,22.8 +3.1,0.93,9.660,29.1,2.9,0.93,10.160,29.5 +2.6,0.93,9.410,29.9,2.5,0.93,9.740,30.9 +2.2,0.93,9.960,32.2,2.1,0.93,10.390,32.8 +1.7,0.93,9.200,38.6,1.6,0.93,9.520,40.7 +0.8,0.93,9.140,49.8,0.6,0.93,9.510,51.6 +0.2,0.93,8.290,52.8,-0.0,0.93,8.630,54.4 +-0.6,0.93,7.720,55.9,-0.8,0.93,8.050,57.9 +-1.2,0.93,6.600,67.0,-1.4,0.93,6.910,69.2 +-1.3,0.93,4.820,75.3,-1.3,0.93,5.070,72.6 +-1.7,0.93,4.010,87.3,-1.7,0.93,3.750,82.7 +-1.7,0.93,2.760,99.0,-1.6,0.93,2.660,92.4 +-1.3,0.92,1.710,104.1,-1.2,0.92,1.710,94.4 +-0.9,0.92,1.590,133.7,-0.8,0.92,1.570,122.4 +-0.3,0.92,1.830,167.6,-0.2,0.92,1.600,157.9 +0.3,0.92,2.140,191.4,0.5,0.92,1.950,185.2 +1.7,0.92,2.590,196.2,1.5,0.92,2.540,195.8 +3.4,0.92,2.390,203.2,3.2,0.92,2.380,203.5 +4.7,0.92,2.740,203.6,4.5,0.92,2.740,204.0 +6.0,0.92,3.220,200.8,5.8,0.92,3.210,201.2 +7.0,0.92,3.670,197.8,6.8,0.92,3.670,198.3 +7.8,0.92,3.900,197.3,7.6,0.92,3.900,197.9 +8.1,0.92,4.340,190.5,7.9,0.92,4.350,190.9 +7.8,0.92,5.150,188.5,7.6,0.92,5.160,188.8 +7.4,0.92,6.400,183.8,7.2,0.92,6.440,183.7 +6.7,0.92,8.720,179.1,6.6,0.92,8.710,180.1 +6.3,0.92,9.940,178.2,6.4,0.92,9.990,179.7 +6.2,0.92,10.580,182.0,6.4,0.92,10.820,184.2 +5.3,0.92,12.090,177.6,5.5,0.92,12.560,178.3 +4.9,0.92,13.100,183.4,5.1,0.92,13.660,183.9 +4.9,0.91,13.500,187.2,5.2,0.91,14.130,187.7 +4.8,0.91,13.730,190.8,5.2,0.91,14.320,191.5 +4.7,0.91,14.730,195.4,5.0,0.91,15.280,195.6 +4.2,0.91,12.930,198.7,4.6,0.91,13.540,200.1 +4.8,0.91,13.920,202.9,5.1,0.91,14.600,203.6 +4.7,0.91,13.870,203.5,4.9,0.91,14.580,204.1 +4.2,0.91,14.040,200.9,4.4,0.91,14.660,201.4 +4.0,0.91,14.260,199.3,4.1,0.91,14.810,199.7 +4.1,0.91,14.400,200.8,4.1,0.91,14.980,201.2 +4.0,0.91,14.070,196.8,3.9,0.91,14.510,197.1 +4.9,0.91,12.550,197.0,4.7,0.91,12.870,197.3 +6.4,0.91,11.160,197.8,6.2,0.91,11.280,198.0 +8.2,0.91,11.890,198.9,8.0,0.91,11.990,199.1 +9.8,0.91,11.610,195.2,9.7,0.91,11.720,195.4 +11.4,0.91,12.080,197.0,11.2,0.91,12.200,197.1 +12.4,0.91,12.060,194.5,12.2,0.91,12.200,194.6 +12.9,0.91,12.250,196.7,12.7,0.91,12.400,196.9 +12.9,0.91,12.560,194.0,12.8,0.91,12.890,194.1 +12.5,0.91,14.160,191.2,12.4,0.91,14.690,191.4 +12.0,0.91,14.530,194.3,12.0,0.91,15.060,194.6 +11.2,0.91,14.680,198.2,11.2,0.91,15.200,198.7 +10.2,0.91,14.820,200.5,10.1,0.91,15.430,201.3 +9.3,0.91,15.990,202.8,9.3,0.91,16.670,203.8 +8.9,0.90,15.140,202.6,8.9,0.90,15.800,204.4 +8.8,0.90,15.070,207.5,8.9,0.90,15.980,209.5 +8.6,0.90,14.440,205.8,8.8,0.90,15.350,208.1 +9.1,0.91,15.010,210.3,9.3,0.91,16.020,212.6 +9.3,0.90,15.320,216.0,9.6,0.90,16.410,218.2 +9.3,0.90,14.160,220.3,9.6,0.90,15.000,222.5 +10.2,0.90,12.730,231.7,10.8,0.90,13.100,234.3 +11.6,0.90,12.640,240.7,12.3,0.90,13.270,241.8 +12.1,0.90,12.450,242.5,13.1,0.90,12.640,244.7 +12.6,0.90,10.950,246.3,13.6,0.90,11.110,249.2 +12.4,0.90,9.190,238.0,13.6,0.90,9.730,240.7 +13.0,0.90,8.130,227.3,13.5,0.90,8.970,230.8 +15.2,0.90,6.890,221.1,15.1,0.90,6.970,222.1 +16.9,0.90,7.070,211.4,16.8,0.90,7.080,211.9 +18.6,0.90,7.490,207.0,18.4,0.90,7.510,207.5 +19.1,0.90,7.880,194.7,18.9,0.90,7.890,195.2 +19.6,0.90,8.920,193.8,19.4,0.90,8.990,194.0 +20.1,0.90,9.870,186.2,19.9,0.90,9.950,186.4 +20.0,0.90,10.580,175.7,19.8,0.90,10.970,175.9 +20.6,0.90,12.840,179.7,20.6,0.90,13.280,180.2 +19.9,0.90,14.910,185.1,19.9,0.90,15.620,185.6 +19.1,0.90,14.470,187.8,19.1,0.90,15.100,188.5 +18.1,0.90,14.270,186.4,18.1,0.90,15.000,187.7 +17.0,0.90,14.130,189.1,17.0,0.90,14.880,190.3 +16.2,0.90,14.680,190.5,16.2,0.90,15.470,191.6 +15.4,0.90,13.920,192.4,15.4,0.90,14.630,193.7 +15.2,0.90,14.750,193.0,15.2,0.90,15.580,194.2 +14.4,0.90,15.220,193.9,14.4,0.90,15.930,195.1 +14.0,0.90,13.920,194.5,14.0,0.90,14.850,196.1 +14.1,0.90,14.720,200.1,14.1,0.90,15.530,200.8 +14.5,0.90,14.540,212.2,14.5,0.90,15.310,212.2 +14.6,0.90,15.740,213.1,14.6,0.90,16.680,212.7 +14.0,0.90,15.540,208.3,14.0,0.90,16.510,208.8 +14.1,0.90,16.830,206.3,14.1,0.90,17.710,206.8 +14.2,0.90,15.210,210.8,14.1,0.90,16.400,211.4 +15.4,0.90,12.890,207.8,15.2,0.90,13.100,208.2 +17.2,0.90,13.040,207.0,17.1,0.90,13.220,207.4 +18.8,0.90,12.670,202.6,18.6,0.90,12.790,202.9 +20.3,0.90,13.120,208.2,20.1,0.90,13.260,208.5 +21.3,0.90,12.980,206.2,21.1,0.90,13.120,206.3 +22.7,0.90,12.560,206.7,22.5,0.90,12.720,206.9 +23.4,0.90,12.510,205.7,23.2,0.90,12.710,205.8 +23.3,0.90,12.030,193.9,23.1,0.90,12.390,194.2 +22.6,0.90,12.860,189.2,22.5,0.90,13.390,190.5 +21.7,0.90,14.050,198.9,21.7,0.90,14.890,199.3 +21.1,0.90,15.920,204.1,21.1,0.90,16.950,204.5 +20.0,0.90,15.560,211.0,19.9,0.90,16.550,211.2 +18.8,0.90,15.550,211.6,18.8,0.90,16.640,212.0 +18.3,0.90,15.800,214.1,18.3,0.90,16.720,214.5 +18.1,0.90,14.450,216.7,18.2,0.90,15.370,217.3 +17.9,0.90,15.530,220.6,18.1,0.90,16.710,221.4 +17.9,0.90,14.370,223.9,18.0,0.90,15.540,224.7 +17.8,0.90,13.020,228.2,18.1,0.90,14.230,230.4 +17.6,0.90,11.520,228.7,17.9,0.90,12.420,233.0 +17.4,0.90,11.540,231.2,17.7,0.90,12.160,238.1 +18.8,0.90,16.140,264.1,19.1,0.90,17.780,267.4 +17.9,0.90,16.450,273.8,18.2,0.90,18.170,276.4 +16.8,0.90,13.840,270.6,17.0,0.90,15.440,273.5 +17.4,0.90,11.440,279.5,17.3,0.90,12.120,279.9 +17.5,0.90,8.830,282.0,17.4,0.90,9.020,282.2 +18.6,0.90,7.070,300.8,18.4,0.90,7.160,300.7 +20.0,0.90,7.010,295.1,19.8,0.90,7.110,295.2 +20.6,0.91,7.130,299.0,20.4,0.91,7.220,298.9 +21.5,0.91,7.810,285.3,21.3,0.91,7.900,285.3 +22.1,0.91,6.990,290.6,21.9,0.91,7.090,290.6 +22.4,0.91,5.820,282.9,22.3,0.91,5.970,283.2 +22.3,0.91,7.290,299.4,22.1,0.91,7.450,299.1 +22.1,0.91,6.890,292.8,21.9,0.91,6.900,292.1 +22.0,0.91,5.980,298.6,21.8,0.91,5.720,298.1 +21.9,0.91,4.700,304.0,21.9,0.91,4.880,303.5 +21.8,0.91,4.890,306.6,21.9,0.91,5.030,308.3 +20.9,0.91,4.510,331.4,21.0,0.91,4.770,334.0 +17.7,0.91,5.250,32.4,17.7,0.91,5.330,34.4 +17.2,0.91,8.130,86.1,17.2,0.91,8.900,87.2 +14.7,0.91,8.280,75.6,14.7,0.91,9.290,78.0 +13.4,0.91,9.070,69.3,13.4,0.91,10.400,74.7 +12.1,0.91,9.040,65.2,12.0,0.91,9.970,71.3 +11.3,0.91,8.250,62.4,11.3,0.91,8.800,67.2 +10.7,0.91,8.250,59.9,10.7,0.91,8.640,63.6 +10.3,0.91,8.140,57.0,10.3,0.91,8.520,60.8 +9.7,0.91,7.980,56.7,9.7,0.91,8.350,60.2 +9.2,0.91,7.740,54.4,9.2,0.91,8.110,58.3 +9.0,0.91,6.420,59.5,8.9,0.91,7.040,62.1 +9.9,0.91,6.150,60.2,9.7,0.91,6.180,60.9 +11.1,0.91,6.010,62.3,10.9,0.91,6.030,62.9 +12.5,0.91,5.940,61.8,12.3,0.91,5.980,62.3 +13.5,0.91,5.890,61.9,13.3,0.91,5.920,62.2 +14.3,0.91,5.740,60.8,14.2,0.91,5.780,61.1 +15.0,0.91,5.550,65.9,14.8,0.91,5.600,66.1 +15.1,0.91,5.510,66.8,14.9,0.91,5.550,67.1 +15.0,0.91,5.580,67.2,14.8,0.91,5.710,67.8 +14.7,0.91,5.960,77.7,14.5,0.91,6.330,79.4 +14.3,0.91,6.940,77.5,14.2,0.91,7.480,79.0 +13.8,0.91,6.750,93.1,13.6,0.91,7.200,94.4 +13.3,0.91,7.950,112.3,13.2,0.91,8.590,112.2 +13.0,0.91,7.610,117.7,12.9,0.91,8.600,117.8 +12.7,0.91,8.560,119.2,12.7,0.91,9.630,119.9 +12.4,0.91,7.110,122.7,12.3,0.91,8.460,124.3 +12.3,0.91,9.910,128.3,12.2,0.91,10.790,129.4 +12.3,0.91,11.130,133.1,12.3,0.91,11.830,135.4 +12.2,0.91,11.380,146.8,12.3,0.91,11.940,148.3 +12.0,0.91,11.540,153.2,12.1,0.91,12.100,154.3 +11.7,0.91,11.340,162.2,11.8,0.91,11.620,163.6 +11.3,0.91,11.330,162.4,11.5,0.91,11.700,163.5 +11.1,0.91,12.070,164.9,11.3,0.91,12.530,165.6 +10.5,0.91,12.270,165.4,10.7,0.91,12.710,166.2 +10.5,0.91,11.990,171.7,10.4,0.91,12.180,171.7 +11.7,0.91,10.340,174.6,11.5,0.91,10.550,174.6 +12.7,0.91,9.710,173.5,12.5,0.91,9.800,173.7 +13.7,0.91,8.770,174.3,13.5,0.91,8.840,174.5 +15.2,0.91,8.700,171.8,15.0,0.91,8.780,172.0 +15.8,0.91,8.920,169.0,15.6,0.91,9.000,169.2 +16.3,0.91,9.490,174.1,16.1,0.91,9.590,174.2 +16.3,0.91,10.970,171.9,16.1,0.91,11.090,172.1 +16.4,0.91,11.170,173.4,16.2,0.91,11.390,173.4 +16.0,0.91,13.090,166.8,15.9,0.91,13.570,166.8 +15.8,0.91,14.340,166.7,15.7,0.91,14.990,166.8 +15.2,0.90,15.460,165.5,15.1,0.90,16.120,165.6 +14.3,0.90,17.180,166.6,14.2,0.90,17.920,166.5 +13.7,0.90,18.040,170.5,13.7,0.90,18.760,170.7 +13.4,0.90,18.060,175.8,13.4,0.90,18.730,176.2 +13.4,0.90,16.980,180.2,13.3,0.90,17.540,180.3 +13.2,0.90,16.530,181.2,13.1,0.90,17.040,181.4 +12.6,0.90,16.670,180.7,12.6,0.90,17.240,181.2 +12.3,0.90,16.730,182.9,12.3,0.90,17.250,183.6 +12.3,0.90,16.540,186.2,12.3,0.90,17.050,186.8 +12.3,0.90,16.430,187.8,12.3,0.90,16.970,188.6 +12.2,0.90,15.670,191.9,12.0,0.90,16.040,192.3 +12.9,0.90,15.830,194.2,12.8,0.90,16.260,194.5 +13.4,0.90,15.200,195.5,13.2,0.90,15.630,195.8 +13.7,0.90,15.030,196.0,13.6,0.90,15.710,196.8 +14.0,0.90,14.740,197.8,13.9,0.90,15.350,198.3 +14.8,0.90,15.200,198.3,14.6,0.90,15.500,198.9 +15.6,0.90,14.170,202.7,15.4,0.90,14.340,203.0 +16.9,0.90,13.660,196.2,16.6,0.90,13.770,196.6 +18.1,0.90,12.990,194.5,17.9,0.90,13.130,194.8 +19.4,0.90,13.120,200.0,19.2,0.90,13.290,200.0 +19.2,0.90,13.930,195.3,19.0,0.90,14.080,195.4 +18.5,0.90,13.370,189.7,18.3,0.90,13.590,189.8 +17.8,0.90,14.420,190.2,17.6,0.90,15.010,190.3 +17.3,0.90,15.710,192.2,17.1,0.90,16.220,192.3 +17.2,0.90,15.850,192.6,17.0,0.90,16.290,192.8 +17.0,0.90,15.950,192.1,16.9,0.90,16.370,192.2 +16.9,0.90,13.990,185.9,16.7,0.90,14.420,186.0 +16.5,0.90,15.170,190.5,16.4,0.90,15.640,190.8 +15.9,0.90,14.330,187.8,15.8,0.90,14.750,188.0 +16.1,0.90,13.900,191.2,16.0,0.90,14.270,191.3 +16.6,0.90,15.630,191.8,16.4,0.90,16.130,192.1 +16.5,0.90,13.630,188.9,16.3,0.90,14.050,189.1 +16.9,0.90,14.520,191.6,16.7,0.90,14.960,191.8 +16.6,0.90,14.250,192.6,16.5,0.90,14.660,193.1 +16.6,0.90,13.050,190.0,16.4,0.90,13.380,190.4 +16.7,0.91,13.050,191.6,16.5,0.91,13.410,192.0 +16.9,0.91,12.030,193.2,16.8,0.91,12.430,193.8 +17.2,0.91,11.890,198.3,17.1,0.91,12.320,199.1 +17.7,0.91,10.010,200.6,17.6,0.91,10.150,201.3 +18.1,0.91,9.410,203.5,17.9,0.91,9.570,204.3 +19.8,0.91,8.300,212.9,19.6,0.91,8.420,213.3 +20.2,0.91,6.710,200.7,20.0,0.91,6.830,201.1 +21.5,0.91,6.550,218.5,21.3,0.91,6.660,218.3 +21.7,0.91,5.690,196.2,21.5,0.91,5.720,196.3 +22.3,0.91,4.100,236.8,22.1,0.91,4.150,236.0 +22.2,0.91,2.780,254.7,22.0,0.91,2.810,253.1 +21.8,0.91,4.560,11.9,21.6,0.91,4.580,11.7 +18.5,0.91,8.050,27.8,18.4,0.91,8.440,27.4 +11.6,0.91,14.930,22.3,11.4,0.91,15.050,22.6 +8.0,0.91,12.880,31.0,7.8,0.91,13.010,30.7 +6.7,0.91,12.790,29.6,6.5,0.91,12.910,29.4 +4.8,0.91,12.950,32.9,4.7,0.91,13.050,32.5 +3.8,0.91,14.220,26.5,3.6,0.91,14.370,26.4 +2.4,0.92,14.310,23.4,2.2,0.92,14.440,23.5 +1.2,0.92,13.990,20.7,1.0,0.92,14.120,20.7 +0.3,0.92,15.230,20.9,0.1,0.92,15.410,21.0 +-0.2,0.92,14.550,19.1,-0.4,0.92,14.710,19.2 +-0.8,0.92,14.680,21.2,-1.0,0.92,14.840,21.1 +-1.8,0.92,14.090,15.4,-2.0,0.92,14.250,15.6 +-2.8,0.92,14.650,10.8,-3.0,0.92,14.820,11.0 +-3.1,0.92,13.680,18.2,-3.3,0.92,13.820,18.2 +-3.6,0.92,14.030,19.3,-3.8,0.92,14.220,19.2 +-4.1,0.92,13.620,18.0,-4.3,0.92,13.790,17.9 +-4.3,0.92,13.580,15.7,-4.5,0.92,13.750,15.6 +-4.6,0.92,14.790,13.8,-4.8,0.92,14.940,13.9 +-4.3,0.92,11.920,12.6,-4.5,0.92,12.040,12.6 +-4.4,0.92,11.770,14.8,-4.6,0.92,11.880,14.7 +-4.4,0.92,12.300,14.1,-4.6,0.92,12.440,14.2 +-4.4,0.92,11.360,9.3,-4.6,0.92,11.480,9.4 +-4.5,0.92,11.210,15.2,-4.7,0.92,11.330,15.1 +-4.4,0.92,10.400,10.6,-4.6,0.92,10.530,10.5 +-4.6,0.92,9.490,13.8,-4.8,0.92,9.610,13.7 +-4.6,0.92,10.570,15.0,-4.8,0.92,10.700,14.8 +-4.6,0.92,11.020,8.8,-4.8,0.92,11.120,9.0 +-4.5,0.92,10.060,10.1,-4.7,0.92,10.210,10.1 +-4.4,0.92,9.040,5.7,-4.6,0.92,9.130,5.7 +-4.3,0.92,10.140,11.3,-4.5,0.92,10.290,11.3 +-4.2,0.92,10.170,16.0,-4.4,0.92,10.370,16.1 +-3.8,0.92,9.580,12.0,-4.0,0.92,9.770,11.8 +-3.6,0.92,10.240,10.1,-3.8,0.92,10.410,10.3 +-3.6,0.92,10.530,5.8,-3.8,0.92,10.720,6.0 +-3.7,0.92,11.450,15.8,-3.9,0.92,11.740,15.8 +-4.0,0.92,12.600,22.8,-4.2,0.92,12.850,22.7 +-4.1,0.92,11.200,11.2,-4.3,0.92,11.400,11.7 +-4.0,0.92,11.490,16.9,-4.2,0.92,11.760,16.9 +-3.7,0.92,10.380,18.3,-3.9,0.92,10.580,18.3 +-3.5,0.92,11.300,23.1,-3.6,0.92,11.630,22.9 +-3.6,0.92,12.600,22.9,-3.8,0.92,12.790,23.0 +-3.5,0.92,11.280,15.7,-3.7,0.92,11.420,15.6 +-3.9,0.92,11.990,19.6,-4.0,0.92,12.120,19.7 +-4.0,0.92,12.020,22.6,-4.2,0.92,12.160,22.7 +-4.3,0.92,11.570,18.3,-4.5,0.92,11.690,18.4 +-4.6,0.92,11.230,15.9,-4.8,0.92,11.350,16.1 +-4.7,0.92,10.790,22.0,-4.8,0.92,10.960,22.2 +-4.4,0.92,11.440,26.1,-4.6,0.92,11.640,26.3 +-4.3,0.92,10.670,17.6,-4.5,0.92,10.880,17.9 +-4.2,0.92,10.390,23.5,-4.4,0.92,10.600,23.8 +-4.0,0.92,10.760,33.2,-4.1,0.92,11.150,33.5 +-3.5,0.92,11.000,39.5,-3.7,0.92,11.190,39.7 +-3.4,0.92,10.620,38.1,-3.6,0.92,10.780,38.4 +-3.3,0.92,9.570,40.4,-3.5,0.92,9.740,40.7 +-3.4,0.92,8.810,40.2,-3.5,0.92,9.020,40.6 +-3.1,0.92,8.620,46.3,-3.3,0.92,8.770,46.6 +-2.9,0.92,8.540,46.8,-3.0,0.92,8.680,47.1 +-2.9,0.92,7.190,39.5,-3.1,0.92,7.330,40.1 +-3.0,0.92,7.620,38.1,-3.2,0.92,7.830,38.9 +-3.4,0.92,8.670,40.6,-3.5,0.92,8.930,41.4 +-3.4,0.92,7.500,52.9,-3.6,0.92,7.650,52.8 +-3.9,0.92,8.240,46.0,-4.0,0.92,8.310,46.5 +-4.2,0.92,7.290,43.6,-4.3,0.92,7.550,45.0 +-4.2,0.92,7.470,49.7,-4.3,0.92,7.650,50.7 +-4.1,0.92,5.290,47.8,-4.3,0.92,5.420,48.1 +-4.8,0.92,5.960,38.7,-5.0,0.92,6.200,39.6 +-5.4,0.92,5.650,58.2,-5.6,0.92,5.970,58.2 +-4.9,0.92,4.730,48.9,-5.0,0.92,4.750,48.9 +-5.0,0.92,3.890,27.1,-5.2,0.92,3.850,28.3 +-5.2,0.92,3.870,33.9,-5.4,0.92,3.850,34.2 +-5.2,0.92,4.000,40.0,-5.4,0.92,3.980,40.2 +-5.2,0.92,3.050,44.2,-5.4,0.92,3.050,45.9 +-5.3,0.92,2.660,40.0,-5.4,0.92,2.670,42.4 +-5.2,0.92,1.880,53.9,-5.3,0.92,1.960,58.2 +-5.0,0.92,1.420,76.3,-4.9,0.92,1.600,86.3 +-4.7,0.91,1.080,111.3,-4.6,0.91,1.520,131.9 +-4.5,0.91,1.530,140.0,-4.5,0.91,2.230,153.9 +-4.1,0.91,1.700,175.9,-4.3,0.91,2.040,177.3 +-3.9,0.91,2.340,179.1,-4.1,0.91,2.530,180.4 +-3.8,0.91,2.660,185.9,-4.0,0.91,2.810,186.7 +-3.7,0.91,3.220,205.9,-3.8,0.91,3.320,206.2 +-3.5,0.91,2.920,209.4,-3.6,0.91,2.970,209.9 +-3.3,0.91,3.630,212.0,-3.5,0.91,3.680,212.9 +-3.2,0.91,3.010,213.3,-3.4,0.91,3.040,214.5 +-3.1,0.91,4.270,211.7,-3.2,0.91,4.530,216.3 +-2.9,0.91,4.340,221.3,-3.0,0.91,4.540,225.6 +-2.7,0.91,4.280,232.6,-2.7,0.91,4.740,238.2 +-2.3,0.91,2.420,246.5,-2.5,0.91,2.610,251.7 +-1.9,0.91,2.650,228.7,-2.0,0.91,2.630,234.5 +-1.3,0.91,2.010,235.7,-1.4,0.91,2.010,238.8 +-0.8,0.91,1.980,232.6,-1.0,0.91,1.980,234.9 +-0.2,0.91,1.160,276.9,-0.3,0.91,1.260,282.1 +0.6,0.91,1.890,325.4,0.4,0.91,1.970,324.1 +0.8,0.91,3.090,332.8,0.6,0.91,3.340,331.8 +0.3,0.91,2.890,28.0,0.2,0.91,2.900,23.6 +-0.3,0.91,3.750,45.6,-0.3,0.91,3.930,42.5 +-0.6,0.91,5.120,46.7,-0.7,0.91,5.470,45.8 +-0.8,0.91,6.050,42.3,-0.8,0.91,6.470,42.3 +-1.9,0.91,8.010,44.1,-1.9,0.91,8.410,43.5 +-2.5,0.91,9.610,27.4,-2.5,0.91,10.070,29.2 +-3.1,0.91,9.700,18.1,-3.1,0.91,10.120,19.4 +-3.1,0.91,9.660,8.8,-3.1,0.91,10.110,10.5 +-3.1,0.91,10.000,352.4,-3.1,0.91,10.410,354.3 +-3.4,0.91,10.490,345.4,-3.4,0.91,10.970,347.2 +-4.1,0.91,10.830,338.3,-4.0,0.91,11.410,341.1 +-4.2,0.91,11.940,337.9,-3.9,0.91,12.480,341.9 +-4.4,0.91,11.810,333.8,-4.1,0.91,12.410,338.6 +-3.9,0.91,12.170,337.2,-3.6,0.91,12.880,341.4 +-3.3,0.91,13.120,339.7,-3.0,0.91,13.800,343.4 +-2.8,0.91,14.070,348.2,-2.6,0.91,14.910,351.9 +-2.4,0.91,13.160,347.6,-2.3,0.91,13.710,349.4 +-1.8,0.91,12.050,345.0,-1.8,0.91,12.700,345.9 +-0.8,0.91,10.830,344.9,-1.0,0.91,11.400,345.6 +-0.1,0.92,9.140,340.1,-0.3,0.92,9.380,340.7 +0.7,0.92,9.500,338.0,0.6,0.92,9.730,338.3 +1.7,0.92,10.010,339.2,1.5,0.92,10.310,339.4 +2.1,0.92,10.070,341.2,1.9,0.92,10.430,341.4 +2.0,0.92,10.110,335.0,1.9,0.92,10.650,335.6 +2.0,0.92,10.790,331.1,1.9,0.92,11.510,332.3 +1.5,0.92,12.560,328.4,1.6,0.92,13.640,330.6 +1.5,0.92,13.620,334.3,1.5,0.92,14.880,336.8 +1.3,0.92,13.790,337.1,1.4,0.92,15.050,340.2 +1.0,0.92,14.740,349.5,1.0,0.92,15.740,351.7 +0.6,0.92,15.100,356.8,0.6,0.92,15.960,359.2 +0.1,0.92,14.720,6.0,0.1,0.92,15.480,8.9 +-0.2,0.92,12.850,13.3,-0.2,0.92,13.480,16.4 +-0.5,0.92,10.450,18.2,-0.5,0.92,10.930,21.7 +-1.0,0.92,9.930,25.0,-1.0,0.92,10.250,28.5 +-1.4,0.92,9.240,28.6,-1.5,0.92,9.360,30.8 +-1.9,0.92,8.020,29.1,-1.9,0.92,8.110,30.9 +-2.2,0.92,6.100,35.8,-2.2,0.92,6.140,39.1 +-2.4,0.92,6.030,31.7,-2.3,0.92,6.320,32.0 +-2.2,0.92,4.260,28.0,-2.2,0.92,4.490,29.1 +-1.9,0.92,4.800,13.3,-1.9,0.92,5.020,15.0 +-1.9,0.92,3.320,25.6,-1.9,0.92,3.510,26.2 +-1.3,0.92,1.070,10.5,-1.2,0.92,1.480,21.3 +-0.7,0.92,0.970,359.9,-0.9,0.92,1.060,2.6 +-0.1,0.92,1.110,217.9,-0.2,0.92,1.000,219.7 +0.7,0.92,2.980,213.5,0.5,0.92,2.980,215.3 +1.4,0.92,3.710,220.3,1.3,0.92,3.720,219.8 +1.9,0.92,3.680,217.4,1.7,0.92,3.690,218.0 +2.2,0.92,4.120,222.8,2.1,0.92,4.160,222.2 +2.4,0.92,5.500,211.6,2.3,0.92,5.450,212.0 +2.8,0.92,6.610,208.7,3.0,0.92,6.620,211.3 +3.5,0.92,7.490,207.4,3.6,0.92,7.390,208.7 +3.9,0.92,7.790,207.0,3.9,0.92,7.830,208.9 +3.9,0.92,8.570,202.7,3.9,0.92,8.620,204.5 +4.0,0.92,8.950,202.3,4.0,0.92,9.000,204.0 +4.2,0.91,9.530,200.7,4.2,0.91,9.600,202.2 +4.3,0.91,9.530,200.3,4.4,0.91,9.650,201.8 +4.5,0.91,9.480,201.5,4.6,0.91,9.610,203.3 +4.2,0.91,10.060,198.4,4.4,0.91,10.180,200.4 +4.6,0.91,9.740,201.7,4.8,0.91,9.820,203.8 +4.4,0.91,9.550,202.5,4.6,0.91,9.680,204.6 +4.2,0.91,9.890,205.4,4.5,0.91,10.150,206.7 +4.4,0.91,10.490,210.2,4.8,0.91,10.810,211.1 +4.4,0.92,10.400,209.2,4.8,0.92,10.610,210.7 +4.1,0.92,9.940,209.5,4.6,0.92,10.160,211.5 +4.1,0.92,9.950,211.8,4.5,0.92,10.310,213.4 +3.7,0.92,9.310,207.6,4.0,0.92,9.820,208.9 +4.1,0.92,8.330,206.9,4.3,0.92,8.810,207.9 +4.5,0.92,8.000,202.7,4.6,0.92,8.460,204.2 +5.0,0.92,7.500,200.2,5.0,0.92,7.920,201.5 +5.5,0.92,6.930,199.1,5.4,0.92,7.230,200.0 +6.1,0.92,7.150,191.5,5.9,0.92,7.330,191.7 +6.7,0.92,6.910,189.3,6.5,0.92,7.040,189.4 +7.1,0.92,7.000,182.7,7.0,0.92,7.100,183.6 +7.7,0.92,8.310,186.4,7.6,0.92,8.280,187.8 +7.5,0.92,8.120,175.6,7.6,0.92,8.120,180.1 +8.0,0.92,8.300,172.1,8.0,0.92,8.120,175.4 +7.8,0.92,10.730,173.5,7.8,0.92,10.560,174.0 +6.9,0.92,11.920,176.7,7.0,0.92,11.930,178.3 +6.3,0.92,12.070,180.4,6.6,0.92,12.160,181.4 +6.5,0.92,12.090,186.7,6.8,0.92,12.270,187.8 +6.5,0.92,10.650,200.7,6.9,0.92,10.790,202.8 +5.8,0.92,10.270,201.3,6.1,0.92,10.480,201.8 +5.5,0.92,10.660,201.4,5.9,0.92,10.920,201.5 +5.5,0.92,10.960,202.3,5.9,0.92,11.250,202.2 +5.7,0.92,11.070,206.1,6.1,0.92,11.310,205.8 +5.3,0.92,11.070,208.3,5.7,0.92,11.290,208.9 +4.6,0.92,10.940,206.8,5.1,0.92,11.220,207.8 +5.0,0.92,11.160,208.5,5.4,0.92,11.450,208.8 +4.8,0.92,10.900,206.2,5.3,0.92,11.360,206.7 +5.0,0.92,10.290,203.0,5.1,0.92,10.760,203.5 +5.5,0.92,10.020,205.2,5.9,0.92,10.800,206.0 +5.9,0.92,9.910,202.3,5.9,0.92,10.400,202.6 +6.3,0.92,8.300,197.1,6.2,0.92,8.580,197.7 +7.0,0.92,8.150,192.7,6.8,0.92,8.280,192.8 +7.3,0.92,8.540,193.3,7.1,0.92,8.780,193.5 +7.7,0.92,9.330,191.9,7.6,0.92,9.700,192.4 +8.5,0.92,9.880,186.6,8.5,0.92,10.230,188.2 +9.7,0.92,12.090,194.2,9.6,0.92,12.400,194.1 +10.0,0.92,12.710,194.8,10.1,0.92,13.010,194.8 +10.2,0.92,13.460,196.2,10.3,0.92,13.890,196.5 +9.9,0.91,14.000,198.2,10.2,0.91,14.550,199.0 +9.1,0.91,14.760,203.2,9.4,0.91,15.350,203.6 +8.4,0.91,16.240,208.8,8.7,0.91,16.980,208.6 +7.8,0.91,16.190,210.5,8.1,0.91,17.000,210.5 +7.4,0.91,16.280,210.4,7.6,0.91,17.230,210.9 +7.0,0.92,16.210,211.8,7.2,0.92,17.150,212.7 +6.8,0.91,15.820,213.4,7.0,0.91,16.800,214.5 +6.4,0.91,15.680,212.1,6.6,0.91,16.590,213.1 +6.3,0.91,15.720,213.1,6.5,0.91,16.610,213.8 +6.3,0.91,15.030,212.0,6.6,0.91,15.840,212.9 +6.4,0.91,14.990,210.7,6.6,0.91,15.720,211.6 +5.6,0.91,14.270,210.5,5.9,0.91,14.910,211.4 +4.5,0.91,13.740,211.2,4.6,0.91,14.400,212.1 +4.6,0.91,12.760,207.5,4.7,0.91,13.080,208.0 +5.0,0.91,11.930,204.4,4.9,0.91,12.630,205.5 +7.7,0.91,10.030,206.8,7.7,0.91,10.690,208.5 +9.6,0.91,9.770,206.3,9.4,0.91,9.850,206.9 +10.8,0.91,9.770,204.8,10.6,0.91,9.820,205.2 +12.1,0.91,9.360,202.8,11.9,0.91,9.460,203.1 +13.1,0.91,9.090,203.2,13.0,0.91,9.240,203.3 +13.6,0.91,10.570,203.2,13.5,0.91,10.840,203.7 +14.0,0.91,11.660,205.0,13.9,0.91,11.900,205.3 +14.3,0.91,13.110,210.3,14.3,0.91,13.410,210.3 +14.2,0.91,13.980,212.3,14.2,0.91,14.230,212.3 +13.4,0.91,14.560,216.1,13.6,0.91,14.880,216.5 +12.9,0.91,14.770,218.3,13.1,0.91,15.220,218.4 +12.2,0.91,15.150,221.3,12.4,0.91,15.820,221.6 +11.4,0.91,14.970,221.5,11.6,0.91,15.930,222.2 +11.4,0.91,14.600,226.2,11.6,0.91,15.550,227.0 +10.9,0.91,13.620,226.2,11.2,0.91,14.640,227.3 +11.0,0.91,13.470,226.6,11.3,0.91,14.340,227.2 +10.4,0.91,12.630,225.4,10.7,0.91,13.370,226.4 +8.8,0.91,10.760,220.7,8.8,0.91,11.270,221.4 +8.3,0.91,9.290,221.9,8.2,0.91,9.790,224.4 +8.1,0.91,9.550,227.8,8.2,0.91,10.170,229.9 +8.3,0.91,10.400,233.8,8.4,0.91,10.980,235.1 +9.6,0.91,9.190,237.2,10.4,0.91,9.650,240.8 +9.1,0.91,8.180,231.0,9.5,0.91,9.120,236.9 +10.7,0.91,6.840,230.0,10.6,0.91,7.530,234.8 +12.8,0.91,6.340,237.6,12.7,0.91,6.540,239.7 +14.3,0.91,6.580,240.7,14.1,0.91,6.610,241.6 +15.2,0.91,6.310,243.7,15.1,0.91,6.330,244.3 +15.5,0.91,6.660,243.1,15.3,0.91,6.720,243.9 +15.3,0.91,7.460,242.9,15.2,0.91,7.840,244.5 +15.3,0.91,8.780,241.7,15.2,0.91,9.280,243.8 +17.4,0.91,10.000,234.3,17.5,0.91,10.520,236.7 +17.5,0.91,11.990,246.1,17.7,0.91,12.540,248.5 +17.7,0.91,13.210,264.4,18.0,0.91,13.930,267.6 +17.8,0.91,13.220,278.8,18.2,0.91,14.180,282.7 +17.8,0.91,13.770,288.6,18.1,0.91,14.540,291.0 +15.6,0.91,11.550,291.7,15.9,0.91,12.300,294.4 +15.6,0.91,12.150,294.8,15.9,0.91,12.750,298.1 +15.5,0.91,10.690,299.6,15.7,0.91,10.840,302.3 +15.1,0.91,12.260,295.8,15.3,0.91,12.770,298.7 +14.3,0.90,11.860,293.8,14.6,0.90,12.240,297.4 +13.7,0.90,11.940,294.0,13.9,0.90,12.120,296.9 +13.0,0.90,12.660,292.0,13.3,0.90,13.140,295.9 +12.8,0.90,12.430,290.0,13.0,0.90,13.030,293.8 +11.9,0.90,13.360,286.6,12.3,0.90,14.140,290.3 +11.4,0.90,13.860,284.7,11.7,0.90,14.600,288.1 +10.8,0.90,11.930,279.5,10.9,0.90,12.560,281.2 +11.2,0.90,8.770,279.9,11.0,0.90,8.980,280.5 +12.3,0.90,8.030,282.0,12.2,0.90,8.100,282.2 +13.8,0.90,5.740,283.8,13.6,0.90,5.800,283.7 +15.4,0.90,6.370,278.4,15.2,0.90,6.400,278.4 +16.8,0.90,6.760,279.4,16.6,0.90,6.820,279.4 +17.7,0.90,6.310,279.1,17.5,0.90,6.370,279.0 +18.0,0.90,5.970,269.4,17.8,0.90,6.040,269.4 +18.0,0.90,7.370,261.4,17.8,0.90,7.490,261.7 +17.7,0.90,7.980,257.3,17.6,0.90,7.950,258.9 +18.1,0.90,10.330,260.8,18.0,0.90,9.730,261.7 +18.8,0.90,9.790,263.2,18.8,0.90,9.480,263.5 +18.8,0.90,10.470,264.6,18.9,0.90,10.420,264.0 +18.9,0.90,10.000,257.2,18.9,0.90,10.140,259.2 +19.2,0.90,13.100,262.6,19.6,0.90,13.400,264.6 +18.5,0.90,15.580,260.5,19.0,0.90,16.530,262.3 +18.6,0.90,16.380,265.2,19.1,0.90,17.030,266.0 +18.0,0.90,16.430,272.3,18.5,0.90,17.210,274.5 +17.1,0.90,16.560,273.6,17.5,0.90,17.480,275.1 +16.8,0.90,15.470,271.5,17.2,0.90,16.460,273.2 +16.1,0.90,14.270,269.6,16.4,0.90,15.130,271.7 +14.9,0.90,14.090,273.9,15.3,0.90,15.030,277.2 +15.4,0.90,14.360,274.3,16.0,0.90,15.000,277.1 +15.7,0.90,15.240,280.3,16.0,0.90,16.000,282.5 +15.6,0.90,13.350,280.6,15.9,0.90,14.370,282.4 +16.8,0.90,10.880,285.2,16.8,0.90,11.740,285.2 +18.4,0.90,9.870,281.5,18.3,0.90,10.260,281.8 +19.6,0.90,8.370,278.5,19.4,0.90,8.550,278.8 +22.3,0.90,7.840,276.2,22.1,0.90,8.010,276.3 +22.7,0.90,6.610,260.6,22.5,0.90,6.680,260.8 +22.3,0.90,7.540,236.3,22.1,0.90,7.600,236.6 +22.2,0.90,8.300,239.1,21.9,0.90,8.370,239.3 +21.9,0.90,6.990,231.8,21.7,0.90,7.350,232.8 +21.4,0.90,7.470,227.0,21.3,0.90,8.060,233.7 +21.7,0.90,11.860,228.6,21.8,0.90,12.320,229.7 +21.3,0.90,14.410,231.2,21.4,0.90,15.070,233.7 +20.0,0.90,13.440,227.8,20.2,0.90,14.460,232.0 +19.6,0.90,15.670,234.0,20.0,0.90,16.910,236.7 +19.7,0.90,15.850,235.1,20.0,0.90,16.880,238.0 +19.7,0.90,16.940,245.9,20.0,0.90,18.070,248.0 +18.5,0.90,15.550,244.3,19.1,0.90,17.160,247.1 +18.6,0.90,15.540,245.7,19.2,0.90,16.980,248.4 +18.6,0.90,15.890,245.0,19.0,0.90,17.200,246.6 +18.1,0.90,15.720,244.8,18.6,0.90,16.840,246.1 +18.0,0.90,16.980,252.1,18.6,0.90,18.540,254.9 +17.7,0.90,16.400,251.5,18.1,0.90,17.850,254.2 +16.9,0.90,14.310,253.1,17.3,0.90,15.710,256.2 +16.2,0.90,15.610,258.1,16.7,0.90,17.060,260.8 +16.5,0.90,12.030,262.4,16.7,0.90,12.900,264.7 +17.8,0.90,8.310,259.1,17.7,0.90,8.540,260.1 +18.9,0.90,6.710,249.9,18.8,0.90,6.790,250.5 +20.3,0.90,11.180,263.9,20.1,0.90,11.390,264.0 +21.5,0.90,11.530,266.5,21.3,0.90,11.760,266.5 +22.1,0.90,7.740,252.1,21.9,0.90,7.900,252.0 +22.4,0.90,7.500,251.6,22.2,0.90,7.630,251.6 +22.7,0.90,7.050,254.1,22.5,0.90,7.210,253.8 +22.5,0.90,6.030,245.3,22.3,0.90,6.500,245.4 +22.5,0.90,7.640,230.1,22.4,0.90,7.950,232.3 +22.3,0.90,8.710,257.9,22.1,0.90,8.800,258.0 +22.3,0.90,6.540,245.9,22.2,0.90,6.480,244.3 +21.6,0.90,4.770,236.5,21.4,0.90,4.980,235.5 +20.1,0.90,4.220,202.1,20.1,0.90,4.630,206.8 +17.2,0.90,3.000,64.5,17.6,0.90,2.620,68.3 +11.0,0.90,7.840,46.8,10.8,0.90,8.260,49.3 +8.6,0.90,9.610,45.5,8.4,0.90,9.750,45.9 +6.2,0.90,10.800,38.3,6.0,0.90,10.870,38.4 +4.3,0.91,11.470,40.2,4.1,0.91,11.550,40.3 +2.5,0.91,11.810,33.3,2.3,0.91,11.890,33.4 +1.1,0.91,12.380,31.5,0.9,0.91,12.470,31.7 +-0.8,0.91,12.130,35.2,-1.0,0.91,12.200,35.4 +-1.7,0.91,11.620,33.0,-1.9,0.91,11.730,32.8 +-1.9,0.91,11.330,35.8,-2.1,0.91,11.430,35.7 +-2.7,0.91,11.200,29.2,-2.9,0.91,11.280,29.1 +-3.5,0.91,11.490,31.8,-3.7,0.91,11.580,31.9 +-3.4,0.91,10.340,34.7,-3.6,0.91,10.410,34.6 +-3.6,0.91,10.040,30.4,-3.8,0.91,10.110,30.5 +-3.9,0.91,9.350,39.4,-4.1,0.91,9.410,39.5 +-4.2,0.91,8.660,30.5,-4.4,0.91,8.700,30.6 +-4.3,0.91,8.240,35.7,-4.4,0.91,8.280,35.8 +-4.2,0.91,7.770,37.8,-4.4,0.91,7.810,37.9 +-4.2,0.91,8.080,40.5,-4.4,0.91,8.120,40.3 +-4.4,0.91,8.250,40.8,-4.5,0.91,8.280,40.9 +-4.5,0.91,8.040,33.2,-4.6,0.91,8.080,33.4 +-4.5,0.91,9.530,63.9,-4.7,0.91,9.550,63.7 +-4.6,0.91,7.950,50.6,-4.8,0.91,7.990,50.5 +-4.0,0.91,5.690,49.0,-4.2,0.91,5.750,48.6 +-4.5,0.91,10.470,38.5,-4.7,0.91,10.510,38.1 +-4.6,0.91,7.940,33.3,-4.8,0.91,7.940,33.6 +-5.4,0.91,10.600,16.5,-5.6,0.91,10.660,17.1 +-5.6,0.91,8.980,19.0,-5.8,0.91,8.980,19.4 +-6.0,0.91,10.920,13.6,-6.2,0.91,11.000,13.8 +-6.7,0.91,9.930,12.5,-6.9,0.91,10.020,12.6 +-6.7,0.91,9.490,21.0,-6.9,0.91,9.580,20.7 +-6.7,0.91,10.910,16.1,-6.9,0.91,11.020,16.0 +-6.6,0.91,10.490,15.1,-6.8,0.91,10.550,15.0 +-8.5,0.91,9.570,5.7,-8.7,0.91,9.630,5.8 +-9.4,0.91,11.320,12.2,-9.6,0.91,11.430,12.0 +-9.4,0.91,9.650,6.6,-9.6,0.91,9.740,6.5 +-9.1,0.91,10.210,13.5,-9.3,0.91,10.290,13.5 +-8.4,0.91,9.900,13.1,-8.6,0.91,9.970,13.0 +-7.9,0.91,9.620,14.4,-8.1,0.91,9.680,14.3 +-7.4,0.92,8.930,14.4,-7.6,0.92,8.980,14.3 +-7.3,0.92,8.980,15.6,-7.5,0.92,9.040,15.5 +-7.1,0.92,8.890,17.9,-7.3,0.92,8.960,17.9 +-7.3,0.92,8.100,21.4,-7.5,0.92,8.300,21.4 +-7.6,0.92,9.050,27.3,-7.8,0.92,9.300,27.0 +-7.9,0.92,9.920,30.1,-8.0,0.92,10.220,30.3 +-8.4,0.92,11.010,34.5,-8.5,0.92,11.450,34.7 +-8.8,0.92,11.170,37.2,-8.9,0.92,11.660,37.5 +-9.2,0.92,11.290,37.4,-9.3,0.92,11.850,37.8 +-9.8,0.92,10.910,38.1,-10.0,0.92,11.450,38.9 +-10.5,0.92,10.510,40.4,-10.6,0.92,11.060,41.1 +-11.1,0.92,10.410,38.0,-11.3,0.92,10.980,39.2 +-11.7,0.92,10.170,36.2,-11.8,0.92,10.740,37.8 +-12.2,0.92,9.520,36.3,-12.3,0.92,10.040,38.2 +-12.6,0.92,9.040,35.7,-12.7,0.92,9.430,37.1 +-12.8,0.92,8.210,34.7,-13.0,0.92,8.520,35.9 +-13.1,0.92,7.770,33.2,-13.2,0.92,8.070,34.0 +-13.1,0.92,8.060,28.2,-13.3,0.92,8.350,29.0 +-13.3,0.92,7.510,28.1,-13.5,0.92,7.720,28.8 +-13.5,0.92,6.970,29.6,-13.6,0.92,7.070,30.0 +-13.4,0.92,6.960,28.5,-13.6,0.92,6.990,28.9 +-13.2,0.92,6.540,26.4,-13.4,0.92,6.560,26.7 +-13.1,0.92,6.030,29.7,-13.2,0.92,6.040,29.8 +-13.0,0.92,5.450,23.8,-13.2,0.92,5.450,24.1 +-12.8,0.92,5.020,21.1,-13.0,0.92,5.020,21.5 +-12.6,0.92,4.480,24.1,-12.8,0.92,4.480,24.8 +-12.4,0.91,3.860,23.4,-12.6,0.91,3.860,23.8 +-12.1,0.91,3.520,25.4,-12.3,0.91,3.520,25.6 +-11.9,0.91,2.980,24.6,-12.1,0.91,2.980,24.6 +-11.6,0.91,2.500,31.9,-11.8,0.91,2.500,31.9 +-11.3,0.91,1.990,32.2,-11.5,0.91,1.980,32.1 +-11.1,0.91,1.610,73.6,-11.3,0.91,1.560,74.9 +-10.7,0.91,1.160,44.0,-10.9,0.91,1.080,46.6 +-10.3,0.91,1.360,99.4,-10.5,0.91,1.340,104.9 +-9.8,0.91,1.390,171.0,-10.0,0.91,1.460,172.9 +-9.1,0.91,3.030,192.2,-9.3,0.91,3.060,193.2 +-9.2,0.91,3.050,216.7,-9.3,0.91,3.280,216.9 +-9.6,0.91,6.550,195.6,-9.6,0.91,6.660,197.5 +-9.7,0.91,7.150,198.7,-9.5,0.91,7.680,200.0 +-9.1,0.91,7.870,208.1,-8.4,0.91,8.510,209.3 +-8.3,0.91,8.960,203.5,-7.6,0.91,9.610,205.3 +-5.8,0.91,10.690,216.5,-4.7,0.91,11.210,217.3 +-3.7,0.91,12.040,224.1,-2.7,0.91,12.320,224.8 +-3.9,0.91,12.990,215.3,-2.7,0.91,13.600,217.0 +-3.5,0.91,13.080,217.0,-2.6,0.91,13.990,218.9 +-2.0,0.91,11.650,223.0,-1.5,0.91,12.540,225.1 +0.0,0.91,10.530,224.1,0.4,0.91,11.310,227.4 +1.7,0.91,8.790,227.0,1.8,0.91,9.420,229.7 +3.0,0.91,8.450,229.1,3.1,0.91,9.230,232.5 +4.9,0.91,10.300,237.8,5.3,0.91,11.270,241.4 +5.8,0.91,9.050,240.6,5.9,0.91,9.730,243.3 +6.2,0.91,9.580,242.1,6.8,0.91,10.550,247.9 +7.9,0.91,11.180,248.6,8.7,0.91,12.360,253.3 +9.2,0.91,11.230,257.0,9.8,0.91,11.970,260.1 +9.6,0.91,10.020,266.6,10.0,0.91,10.330,269.4 +10.0,0.91,8.550,272.5,10.3,0.91,8.730,274.8 +10.5,0.91,6.830,277.6,10.5,0.91,6.830,280.2 +10.4,0.91,5.280,284.1,10.5,0.91,5.270,287.5 +8.7,0.91,4.170,358.9,8.7,0.91,4.420,1.9 +4.6,0.91,3.710,14.8,5.1,0.91,3.800,7.6 +5.9,0.91,4.280,16.6,6.2,0.91,4.700,20.8 +2.7,0.91,6.720,24.4,2.9,0.91,6.930,25.6 +-1.6,0.91,7.940,16.5,-1.5,0.91,8.050,20.1 +-3.5,0.91,8.700,30.0,-3.3,0.91,8.950,34.3 +-5.5,0.91,8.820,30.3,-5.3,0.91,9.030,35.4 +-6.7,0.91,8.910,27.3,-6.7,0.91,9.220,30.8 +-7.6,0.91,9.280,28.8,-7.6,0.91,9.690,31.1 +-8.1,0.91,8.980,32.7,-8.2,0.91,9.400,33.9 +-8.3,0.91,8.470,31.8,-8.4,0.91,8.840,32.5 +-8.3,0.91,7.640,28.0,-8.5,0.91,7.700,28.4 +-8.0,0.91,7.330,27.1,-8.2,0.91,7.350,27.3 +-7.5,0.91,7.220,24.3,-7.7,0.91,7.250,24.4 +-6.8,0.91,6.830,21.8,-7.0,0.91,6.860,21.7 +-6.3,0.91,6.290,19.8,-6.4,0.91,6.320,19.7 +-6.0,0.91,6.620,17.1,-6.2,0.91,6.660,17.0 +-5.9,0.91,6.800,12.3,-6.0,0.91,6.930,12.2 +-5.7,0.91,7.180,13.7,-5.8,0.91,7.370,13.5 +-5.7,0.91,8.440,14.3,-5.9,0.91,8.620,15.0 +-5.8,0.92,8.510,15.3,-6.0,0.92,8.630,15.3 +-6.1,0.92,7.810,18.6,-6.3,0.92,7.960,18.6 +-6.4,0.92,7.950,13.7,-6.6,0.92,8.090,13.9 +-6.7,0.92,7.800,10.2,-6.7,0.92,8.160,9.0 +-6.6,0.92,7.010,8.4,-6.5,0.92,7.330,8.2 +-6.9,0.92,6.460,8.9,-6.8,0.92,6.860,8.2 +-6.4,0.92,6.870,0.5,-6.2,0.92,7.270,1.0 +-5.5,0.92,6.070,353.1,-5.3,0.92,6.340,355.0 +-5.0,0.92,5.400,354.0,-4.8,0.92,5.640,356.2 +-3.9,0.92,5.520,349.4,-3.7,0.92,5.700,352.4 +-3.5,0.92,5.070,350.0,-3.4,0.92,5.160,354.2 +-3.1,0.92,4.290,343.6,-3.0,0.92,4.300,349.3 +-2.6,0.92,2.850,332.9,-2.5,0.92,2.800,342.5 +-1.9,0.92,2.070,320.8,-1.9,0.92,1.870,331.5 +-1.5,0.92,1.960,280.5,-1.2,0.92,1.590,286.9 +-0.9,0.92,2.380,213.1,-1.0,0.92,2.360,213.5 +0.2,0.92,3.570,214.3,0.0,0.92,3.560,214.2 +0.9,0.92,4.200,216.2,0.7,0.92,4.190,215.9 +1.6,0.92,5.020,208.0,1.4,0.92,5.020,207.9 +1.7,0.92,6.110,203.5,1.5,0.92,6.120,204.0 +1.4,0.92,6.810,200.9,1.3,0.92,6.960,201.7 +0.8,0.91,9.740,201.0,0.8,0.91,10.040,202.7 +1.4,0.91,11.290,198.8,1.5,0.91,11.580,201.4 +1.6,0.91,11.580,195.2,1.7,0.91,11.820,197.9 +1.8,0.91,12.000,198.5,2.2,0.91,12.270,201.5 +2.4,0.91,12.500,197.2,2.7,0.91,12.820,199.2 +2.6,0.91,13.140,199.3,3.1,0.91,13.510,201.7 +2.7,0.91,12.870,202.8,3.4,0.91,13.400,204.8 +3.6,0.91,12.760,207.5,4.3,0.91,13.320,209.0 +4.0,0.91,13.390,211.0,4.8,0.91,13.990,212.4 +4.6,0.91,12.870,214.5,5.3,0.91,13.420,215.5 +4.7,0.91,12.280,219.3,5.4,0.91,12.800,220.6 +4.7,0.91,11.380,225.1,5.3,0.91,11.640,226.9 +4.8,0.91,11.880,231.2,5.4,0.91,11.990,233.1 +4.9,0.91,11.660,247.7,5.4,0.91,11.860,249.8 +4.2,0.91,10.240,269.5,4.6,0.91,10.300,271.3 +2.6,0.92,10.390,300.6,3.1,0.92,10.740,304.2 +-0.7,0.92,8.570,339.5,-0.8,0.92,9.100,341.5 +-1.3,0.92,7.250,345.0,-1.5,0.92,7.460,345.3 +-1.2,0.92,8.130,356.4,-1.4,0.92,8.210,356.6 +-0.7,0.92,9.240,3.0,-0.9,0.92,9.280,3.2 +-0.1,0.92,9.630,10.1,-0.3,0.92,9.690,10.1 +-0.0,0.92,9.630,12.3,-0.2,0.92,9.690,12.2 +-0.1,0.92,9.610,14.8,-0.3,0.92,9.680,14.7 +-0.3,0.92,9.100,13.5,-0.5,0.92,9.170,13.6 +-0.6,0.92,8.510,12.3,-0.8,0.92,8.800,12.8 +-1.0,0.92,9.880,20.7,-1.2,0.92,10.530,20.8 +-1.4,0.92,10.830,19.7,-1.5,0.92,11.260,20.0 +-1.9,0.92,10.240,21.9,-2.0,0.92,10.590,22.8 +-2.6,0.92,10.300,25.1,-2.6,0.92,10.740,26.4 +-3.0,0.92,9.530,28.0,-3.0,0.92,9.860,29.9 +-3.3,0.92,8.240,33.4,-3.3,0.92,8.600,35.9 +-3.9,0.92,7.230,40.7,-3.9,0.92,7.620,44.3 +-4.2,0.92,6.130,44.3,-4.1,0.92,6.340,47.6 +-4.6,0.92,5.060,39.5,-4.5,0.92,5.130,43.3 +-5.0,0.92,3.750,45.9,-4.9,0.92,3.810,48.4 +-3.7,0.92,2.900,34.8,-3.5,0.92,3.290,37.3 +-4.0,0.92,2.820,24.3,-3.8,0.92,3.040,28.7 +-1.6,0.92,0.890,49.7,-1.3,0.92,1.270,53.7 +-2.6,0.92,1.660,14.9,-2.2,0.92,1.730,26.6 +-1.6,0.92,0.750,40.0,-1.3,0.92,0.880,66.1 +-0.8,0.92,1.260,170.1,-0.7,0.92,1.500,165.2 +-0.6,0.92,2.280,201.2,-0.7,0.92,2.320,201.2 +0.7,0.92,1.820,201.5,0.5,0.92,1.810,201.6 +2.0,0.92,2.830,201.6,1.9,0.92,2.840,201.6 +3.0,0.92,3.970,209.3,2.8,0.92,3.980,209.8 +3.4,0.92,3.860,206.4,3.3,0.92,3.870,206.5 +3.9,0.92,3.810,203.6,3.7,0.92,3.830,203.9 +3.9,0.92,3.960,200.6,3.7,0.92,3.950,201.6 +3.1,0.92,5.800,192.4,3.0,0.92,5.760,194.4 +3.0,0.92,8.680,190.1,3.1,0.92,8.930,192.0 +3.2,0.92,9.910,185.8,3.3,0.92,10.190,187.0 +3.3,0.91,11.270,189.6,3.5,0.91,11.620,191.3 +3.8,0.91,12.210,194.4,4.0,0.91,12.710,195.1 +3.8,0.91,11.810,189.6,4.0,0.91,12.330,190.1 +3.6,0.91,11.510,187.4,3.7,0.91,12.120,187.9 +4.2,0.91,12.950,189.9,4.3,0.91,13.630,190.2 +3.9,0.91,13.550,199.1,3.9,0.91,14.230,199.2 +4.6,0.91,15.240,198.3,4.7,0.91,15.960,199.1 +5.2,0.91,16.800,202.3,5.3,0.91,17.440,202.9 +5.1,0.91,16.900,203.3,5.2,0.91,17.630,203.9 +4.9,0.91,16.080,207.7,4.9,0.91,16.810,208.2 +4.7,0.91,16.550,207.2,4.7,0.91,17.280,207.7 +4.5,0.91,16.690,207.2,4.6,0.91,17.460,208.0 +4.4,0.91,16.360,207.7,4.4,0.91,17.090,208.9 +4.4,0.91,16.610,205.1,4.4,0.91,17.210,205.6 +4.7,0.91,15.920,204.1,4.6,0.91,16.620,204.8 +5.4,0.90,13.550,205.7,5.2,0.90,13.790,206.4 +6.8,0.90,12.460,205.7,6.7,0.90,12.620,206.4 +8.4,0.90,11.430,204.4,8.2,0.90,11.500,205.1 +10.0,0.90,10.850,203.6,9.8,0.90,10.910,204.0 +11.4,0.90,9.410,204.2,11.2,0.90,9.500,204.8 +12.7,0.90,8.380,213.2,12.5,0.90,8.780,215.0 +13.0,0.90,10.270,208.5,13.0,0.90,10.720,211.1 +13.6,0.90,10.720,217.4,13.5,0.90,11.130,223.7 +14.1,0.90,12.740,231.5,14.2,0.90,13.220,234.0 +13.2,0.90,14.460,246.8,13.6,0.90,16.000,250.6 +13.3,0.90,15.240,253.4,13.7,0.90,16.840,256.8 +12.3,0.90,14.880,264.0,12.7,0.90,16.170,268.2 +12.0,0.90,16.460,273.7,12.3,0.90,17.560,276.7 +9.7,0.90,14.640,284.8,9.8,0.90,15.690,287.0 +7.5,0.90,12.680,310.3,7.3,0.90,13.250,315.3 +5.2,0.90,10.090,351.6,5.2,0.90,10.880,351.7 +3.6,0.91,13.290,338.9,3.5,0.91,14.590,341.0 +2.3,0.91,14.330,345.7,2.2,0.91,15.600,347.2 +1.2,0.91,15.140,348.1,1.0,0.91,16.250,349.3 +-0.1,0.91,15.880,353.4,-0.2,0.91,16.810,354.4 +-0.7,0.91,15.100,356.1,-0.8,0.91,16.020,356.8 +-1.2,0.91,15.680,357.7,-1.3,0.91,16.560,358.5 +-1.3,0.91,13.520,358.6,-1.5,0.91,14.230,359.0 +-0.8,0.91,13.370,1.4,-1.0,0.91,13.530,1.4 +-0.1,0.91,12.250,359.7,-0.3,0.91,12.370,359.6 +1.1,0.91,11.050,352.5,0.9,0.91,11.160,352.5 +2.1,0.91,11.150,349.4,1.9,0.91,11.270,349.3 +3.1,0.91,10.200,351.3,3.0,0.91,10.320,351.1 +4.0,0.91,9.570,351.4,3.8,0.91,9.690,351.2 +4.6,0.91,9.330,348.8,4.4,0.91,9.460,348.6 +4.7,0.91,7.690,351.8,4.5,0.91,7.990,351.4 +5.1,0.92,8.680,353.2,4.9,0.92,8.890,353.2 +5.1,0.92,8.440,355.8,4.9,0.92,8.960,356.1 +5.0,0.92,7.990,4.6,4.8,0.92,8.310,5.1 +4.8,0.92,6.550,8.7,4.7,0.92,6.860,9.2 +5.1,0.92,6.030,2.5,5.1,0.92,6.360,3.1 +5.3,0.92,5.310,348.6,5.4,0.92,5.560,350.9 +5.9,0.92,5.110,336.8,6.0,0.92,5.360,339.8 +6.5,0.92,4.970,327.2,6.5,0.92,5.160,331.1 +6.9,0.92,4.420,316.5,6.9,0.92,4.440,321.1 +7.2,0.92,4.840,306.6,7.2,0.92,4.880,310.6 +7.1,0.92,4.110,287.2,7.3,0.92,4.080,291.9 +7.1,0.92,3.960,268.7,7.2,0.92,3.850,270.9 +7.3,0.92,4.710,257.2,7.3,0.92,4.510,258.8 +8.3,0.92,5.560,253.2,8.3,0.92,5.520,255.9 +8.8,0.92,6.040,252.3,8.8,0.92,6.020,254.3 +8.8,0.92,7.220,242.7,9.0,0.92,6.960,244.1 +8.2,0.92,7.780,231.7,8.8,0.92,8.110,234.4 +8.0,0.92,6.050,222.6,7.9,0.92,6.140,224.1 +9.0,0.92,5.930,227.4,8.8,0.92,5.950,228.1 +10.0,0.92,6.250,219.6,9.8,0.92,6.260,220.3 +10.9,0.91,6.790,225.5,10.7,0.91,6.850,226.0 +11.5,0.91,7.060,225.8,11.3,0.91,7.130,226.2 +11.6,0.91,7.200,229.9,11.5,0.91,7.320,230.0 +11.8,0.91,7.730,228.9,11.7,0.91,7.960,229.6 +11.9,0.91,8.240,225.3,11.7,0.91,8.380,227.2 +11.5,0.91,10.780,224.5,11.5,0.91,10.940,225.5 +11.9,0.91,10.500,225.2,11.8,0.91,10.550,225.3 +11.8,0.91,10.240,224.1,11.9,0.91,10.370,224.8 +11.8,0.91,9.270,221.8,11.8,0.91,9.430,223.2 +11.1,0.91,11.220,222.2,11.3,0.91,11.380,222.6 +10.4,0.91,12.100,229.2,10.8,0.91,12.450,230.4 +10.6,0.91,13.150,231.0,11.1,0.91,13.570,231.8 +10.3,0.91,13.140,231.6,11.0,0.91,13.400,233.1 +9.4,0.91,12.440,237.2,10.1,0.91,12.860,238.2 +9.6,0.91,12.650,239.5,10.3,0.91,12.900,240.5 +9.1,0.91,12.310,237.1,9.7,0.91,12.490,238.2 +9.0,0.91,12.180,240.7,9.6,0.91,12.280,241.4 +9.3,0.91,11.620,237.9,9.9,0.91,11.500,239.0 +10.0,0.91,10.630,238.8,10.8,0.91,10.370,239.5 +10.8,0.91,9.640,240.0,12.0,0.91,9.550,241.4 +11.4,0.91,8.960,238.8,12.6,0.91,9.490,240.4 +11.2,0.91,6.820,238.3,11.6,0.91,7.950,241.3 +12.3,0.91,5.340,242.4,12.2,0.91,5.380,243.4 +13.6,0.91,4.980,240.6,13.4,0.91,4.980,241.2 +14.7,0.91,4.820,239.1,14.5,0.91,4.830,239.6 +15.1,0.91,4.750,232.8,14.9,0.91,4.760,233.2 +14.8,0.91,4.730,222.2,14.6,0.91,4.740,222.7 +14.1,0.91,6.260,210.8,14.0,0.91,6.330,211.2 +14.4,0.91,6.660,213.7,14.5,0.91,6.780,216.6 +15.0,0.91,7.450,206.3,15.0,0.91,7.500,209.3 +15.1,0.91,7.370,206.9,15.1,0.91,7.320,209.2 +15.3,0.91,7.090,212.2,15.4,0.91,7.100,214.3 +15.2,0.91,6.980,212.2,15.4,0.91,6.990,215.3 +15.1,0.91,6.480,222.0,15.3,0.91,6.520,224.7 +15.0,0.91,6.380,225.7,15.2,0.91,6.560,227.1 +15.2,0.91,5.330,238.3,15.5,0.91,5.310,240.1 +15.4,0.91,5.250,248.3,15.6,0.91,5.240,251.7 +15.6,0.91,5.640,261.7,15.8,0.91,5.600,265.1 +14.6,0.91,5.140,240.0,14.9,0.91,4.860,243.2 +14.6,0.91,4.970,247.7,14.9,0.91,4.680,250.0 +14.4,0.91,3.670,257.6,14.5,0.91,3.540,258.9 +14.8,0.91,2.780,260.6,15.0,0.91,2.440,261.6 +14.9,0.91,0.430,345.3,14.9,0.91,0.460,19.1 +14.2,0.91,0.840,127.3,14.3,0.91,0.890,135.0 +13.7,0.91,0.910,103.5,13.7,0.91,1.050,90.7 +14.0,0.91,1.090,177.9,14.2,0.91,1.120,155.4 +15.1,0.91,0.910,114.0,14.9,0.91,0.940,115.7 +14.2,0.92,3.610,52.1,14.0,0.92,3.520,52.5 +14.5,0.92,2.800,57.6,14.3,0.92,2.740,59.5 +15.0,0.92,3.130,62.3,14.8,0.92,3.090,63.8 +15.1,0.91,2.890,68.0,14.9,0.91,2.860,69.0 +14.5,0.91,3.450,74.4,14.4,0.91,3.550,77.2 +14.3,0.92,4.150,86.4,14.3,0.92,4.240,89.6 +14.2,0.92,4.390,97.9,14.3,0.92,4.470,101.1 +13.9,0.92,5.020,103.5,13.9,0.92,5.030,107.4 +14.3,0.91,5.310,144.8,14.4,0.91,5.280,145.5 +14.0,0.91,6.570,159.6,14.0,0.91,6.640,159.1 +14.1,0.91,6.820,164.8,14.1,0.91,6.830,165.1 +13.8,0.91,7.800,176.8,13.9,0.91,7.880,177.2 +13.7,0.91,8.860,186.0,13.9,0.91,9.020,186.2 +12.3,0.91,9.830,190.7,12.7,0.91,10.000,190.2 +12.8,0.91,10.600,190.5,13.2,0.91,10.940,190.8 +12.0,0.91,10.820,195.3,12.4,0.91,11.090,196.5 +11.7,0.91,10.930,209.2,12.2,0.91,11.230,210.6 +10.9,0.91,11.670,211.7,11.4,0.91,12.060,212.1 +10.1,0.91,12.240,213.4,10.6,0.91,12.690,213.8 +9.6,0.91,12.770,213.4,10.1,0.91,13.340,213.7 +9.2,0.91,12.010,211.7,9.6,0.91,12.680,211.9 +9.3,0.91,10.690,207.3,9.6,0.91,11.530,208.0 +10.6,0.91,8.690,201.8,10.5,0.91,9.030,202.7 +11.6,0.91,9.170,198.4,11.4,0.91,9.250,198.9 +12.9,0.91,9.830,199.3,12.8,0.91,9.900,199.6 +13.7,0.91,10.010,193.4,13.5,0.91,10.100,193.6 +14.8,0.91,10.780,192.9,14.6,0.91,10.910,193.0 +15.5,0.91,11.030,192.7,15.3,0.91,11.210,192.8 +15.3,0.91,12.390,188.9,15.2,0.91,12.930,189.2 +15.0,0.91,14.460,190.1,15.0,0.91,15.090,190.5 +14.3,0.91,15.100,193.3,14.3,0.91,15.950,193.9 +13.4,0.91,15.770,196.5,13.4,0.91,16.540,196.9 +12.1,0.91,16.370,194.4,12.0,0.91,17.100,194.8 +10.8,0.91,16.180,194.9,10.7,0.91,16.970,195.6 +10.2,0.90,15.700,195.0,10.1,0.90,16.450,195.8 +10.1,0.90,16.570,196.5,10.1,0.90,17.350,197.1 +9.8,0.90,16.760,196.2,9.8,0.90,17.610,197.0 +9.8,0.90,16.460,195.2,9.8,0.90,17.240,195.8 +10.3,0.90,16.750,196.7,10.2,0.90,17.420,197.1 +10.5,0.90,16.910,201.1,10.4,0.90,17.560,201.4 +10.4,0.90,16.810,199.2,10.3,0.90,17.380,199.4 +10.7,0.90,17.000,198.2,10.6,0.90,17.550,198.5 +11.0,0.90,16.880,197.0,10.9,0.90,17.400,197.3 +11.2,0.90,18.120,197.4,11.1,0.90,18.620,197.7 +11.2,0.90,16.920,197.2,11.1,0.90,17.480,197.3 +11.2,0.90,16.230,198.0,11.1,0.90,16.770,198.3 +11.7,0.90,15.420,199.7,11.5,0.90,15.580,199.9 +13.1,0.90,13.760,199.0,12.9,0.90,13.870,199.3 +14.7,0.90,13.990,198.9,14.5,0.90,14.090,199.2 +15.9,0.90,13.910,196.6,15.7,0.90,14.000,196.8 +16.7,0.90,12.910,193.6,16.6,0.90,13.010,193.9 +16.8,0.90,12.530,188.0,16.6,0.90,12.650,188.3 +16.8,0.90,11.960,188.7,16.7,0.90,12.340,188.9 +16.2,0.90,13.120,190.2,16.2,0.90,13.680,192.2 +16.2,0.90,13.100,188.7,16.3,0.90,13.320,191.6 +15.8,0.90,13.190,194.1,16.0,0.90,13.620,197.2 +14.8,0.90,13.770,193.8,15.0,0.90,14.570,196.5 +14.1,0.90,13.520,194.4,14.3,0.90,14.120,196.6 +13.6,0.90,14.630,200.7,13.9,0.90,15.510,202.7 +13.6,0.90,14.430,197.8,13.8,0.90,15.210,199.3 +13.7,0.90,14.890,199.9,14.0,0.90,15.690,201.1 +13.8,0.90,14.540,201.8,14.1,0.90,15.270,202.5 +13.7,0.90,13.450,206.2,13.9,0.90,14.160,206.9 +13.3,0.90,11.880,206.0,13.5,0.90,12.390,207.2 +12.9,0.90,11.920,217.1,13.1,0.90,12.630,217.9 +13.0,0.90,11.380,217.6,13.1,0.90,11.850,219.5 +12.0,0.90,5.040,238.3,12.3,0.90,5.850,238.8 +12.9,0.90,6.770,282.6,13.2,0.90,7.050,289.5 +9.8,0.90,4.710,331.9,9.8,0.90,4.900,334.0 +9.6,0.90,6.350,8.7,9.5,0.90,6.470,8.8 +6.7,0.90,6.940,31.1,6.5,0.90,6.960,30.3 +5.8,0.90,6.560,33.4,5.6,0.90,6.530,33.3 +5.5,0.90,6.600,43.0,5.4,0.90,6.560,42.9 +5.4,0.90,5.270,52.2,5.3,0.90,5.240,52.5 +5.8,0.90,4.740,48.8,5.6,0.90,4.690,49.0 +5.3,0.90,6.080,49.8,5.1,0.90,6.050,49.8 +4.9,0.90,6.230,52.2,4.7,0.90,6.220,52.2 +4.5,0.90,6.260,49.5,4.3,0.90,6.400,50.3 +4.3,0.90,6.560,46.4,4.1,0.90,6.650,46.7 +4.1,0.90,5.900,31.6,3.9,0.90,5.880,31.9 +3.6,0.90,5.520,25.2,3.4,0.90,5.500,25.8 +3.2,0.90,4.110,39.8,3.0,0.90,4.070,40.0 +3.1,0.90,4.810,70.7,3.7,0.90,4.950,76.9 +2.0,0.90,4.420,45.3,2.2,0.90,4.440,49.4 +2.7,0.90,1.730,249.6,2.9,0.90,2.200,241.4 +4.1,0.90,1.150,137.3,4.9,0.90,1.890,155.5 +8.0,0.90,3.880,165.6,9.4,0.90,4.470,178.3 +7.9,0.90,6.980,165.3,8.9,0.90,7.820,171.2 +10.0,0.89,9.160,191.1,10.7,0.89,9.810,194.0 +7.3,0.89,2.000,183.1,7.4,0.89,2.680,189.0 +7.1,0.89,5.160,202.5,7.3,0.89,5.770,202.3 +7.2,0.89,7.450,211.8,7.4,0.89,8.380,215.0 +8.8,0.89,7.060,212.8,8.9,0.89,7.770,215.8 +9.7,0.89,6.760,242.3,9.6,0.89,6.930,243.5 +10.5,0.89,9.460,267.4,10.3,0.89,9.630,267.5 +10.7,0.89,9.460,238.7,10.5,0.89,9.620,238.8 +11.0,0.89,10.040,241.0,10.8,0.89,10.220,241.0 +11.5,0.89,10.530,235.6,11.2,0.89,10.750,235.7 +11.5,0.89,12.950,238.1,11.3,0.89,13.230,238.2 +11.4,0.89,13.900,240.3,11.2,0.89,14.200,240.4 +11.2,0.89,10.760,238.1,11.0,0.89,11.370,238.5 +10.8,0.89,12.300,231.4,10.8,0.89,13.180,232.7 +10.9,0.90,13.440,232.6,10.9,0.90,14.340,234.0 +10.3,0.90,13.230,232.2,10.5,0.90,14.470,235.3 +9.8,0.90,14.690,244.8,9.9,0.90,16.010,246.9 +9.3,0.90,14.520,253.2,9.4,0.90,15.910,255.7 +8.9,0.90,12.440,260.1,9.0,0.90,13.950,261.5 +0.7,0.90,7.190,9.0,0.6,0.90,7.280,7.6 +-0.5,0.90,7.340,12.6,-0.7,0.90,7.370,12.0 +-1.6,0.90,7.540,0.8,-1.8,0.90,7.870,0.7 +-2.4,0.90,9.630,1.7,-2.6,0.90,9.960,1.9 +-2.6,0.90,8.730,3.0,-2.7,0.90,9.100,2.8 +-2.5,0.90,8.970,353.1,-2.7,0.90,9.390,353.3 +-2.9,0.91,9.930,353.2,-3.1,0.91,10.290,353.2 +-3.3,0.91,9.760,351.1,-3.5,0.91,10.050,351.2 +-3.5,0.91,9.470,357.4,-3.7,0.91,9.760,357.3 +-3.4,0.91,9.960,354.3,-3.6,0.91,10.080,354.4 +-2.5,0.91,9.220,355.2,-2.7,0.91,9.310,355.2 +-1.4,0.91,8.870,357.3,-1.6,0.91,8.950,357.2 +-0.2,0.91,7.690,348.3,-0.4,0.91,7.770,348.2 +1.0,0.91,7.660,353.1,0.7,0.91,7.730,352.7 +1.9,0.91,6.810,344.9,1.7,0.91,6.880,344.7 +2.5,0.91,6.460,342.5,2.3,0.91,6.540,342.3 +2.9,0.91,6.580,343.0,2.7,0.91,6.670,342.7 +2.8,0.91,6.080,350.8,2.6,0.91,6.250,350.1 +2.5,0.91,6.480,1.0,2.3,0.91,6.560,0.5 +2.2,0.91,7.030,12.5,2.0,0.91,7.020,12.1 +1.7,0.91,7.310,24.0,1.6,0.91,7.270,23.2 +1.3,0.92,6.590,32.9,1.2,0.92,6.570,29.6 +0.8,0.92,5.690,33.5,0.8,0.92,5.640,30.8 +0.3,0.92,4.620,46.8,0.3,0.92,4.810,44.2 +0.3,0.92,3.580,42.7,0.4,0.92,3.850,38.4 +0.6,0.92,2.830,38.3,0.9,0.92,3.140,31.5 +1.2,0.92,2.070,49.5,1.5,0.92,2.240,39.9 +1.7,0.92,0.640,81.4,1.9,0.92,0.710,49.6 +2.0,0.92,1.190,180.2,2.1,0.92,0.810,178.2 +2.7,0.92,2.720,198.9,2.8,0.92,2.380,201.3 +3.1,0.92,4.440,211.9,3.5,0.92,4.010,215.7 +2.8,0.92,6.210,206.3,3.3,0.92,5.710,210.3 +2.6,0.92,7.660,207.8,3.2,0.92,7.280,211.1 +3.1,0.92,8.020,207.6,3.6,0.92,7.990,210.6 +2.7,0.92,7.240,203.1,2.9,0.92,7.960,207.0 +4.1,0.92,6.660,210.1,4.0,0.92,6.690,211.2 +5.8,0.92,6.000,208.0,5.6,0.92,6.010,208.6 +6.7,0.92,5.240,221.4,6.5,0.92,5.250,221.8 +7.5,0.92,4.720,224.1,7.3,0.92,4.730,224.8 +7.8,0.92,4.530,206.3,7.6,0.92,4.540,207.0 +7.8,0.92,4.690,199.8,7.7,0.92,4.710,200.4 +8.2,0.92,4.690,209.5,8.1,0.92,4.640,214.4 +8.1,0.92,2.600,234.6,8.1,0.92,2.630,243.3 +8.1,0.92,1.920,316.6,7.9,0.92,2.000,322.4 +6.8,0.92,3.910,359.5,6.6,0.92,4.150,1.7 +4.8,0.92,5.400,44.9,4.9,0.92,5.510,43.9 +4.7,0.92,4.900,33.9,4.9,0.92,5.210,33.9 +3.1,0.92,4.050,41.5,3.4,0.92,4.320,42.6 +3.4,0.92,3.450,40.0,4.2,0.92,3.340,44.8 +4.1,0.92,2.370,54.5,5.0,0.92,2.150,68.8 +5.0,0.92,1.790,108.8,5.7,0.92,2.100,129.1 +5.4,0.92,3.160,155.4,5.7,0.92,3.630,159.9 +5.2,0.92,5.170,176.2,5.5,0.92,5.340,180.9 +6.2,0.92,7.760,196.7,6.6,0.92,7.880,200.1 +6.3,0.92,9.390,205.0,6.6,0.92,9.620,207.0 +6.0,0.92,10.160,206.6,6.4,0.92,10.470,208.0 +5.5,0.92,10.970,201.8,6.0,0.92,11.350,203.0 +4.6,0.92,11.760,201.8,4.9,0.92,12.300,202.3 +4.0,0.92,11.570,197.9,4.1,0.92,12.480,198.9 +5.4,0.92,11.040,199.5,5.3,0.92,11.370,200.0 +6.9,0.92,11.640,199.2,6.8,0.92,11.780,199.6 +7.8,0.92,11.960,194.9,7.6,0.92,12.070,195.1 +9.3,0.91,12.360,194.7,9.1,0.91,12.500,194.9 +10.4,0.91,13.000,198.8,10.2,0.91,13.180,198.9 +10.5,0.91,13.120,198.3,10.4,0.91,13.390,198.4 +10.1,0.91,13.950,197.4,10.0,0.91,14.580,197.6 +9.2,0.91,14.610,199.2,9.2,0.91,15.320,199.8 +8.3,0.91,15.210,199.8,8.4,0.91,15.940,200.5 +7.5,0.91,17.410,202.1,7.6,0.91,18.370,202.7 +6.6,0.91,15.720,199.9,6.7,0.91,16.710,201.0 +5.8,0.91,15.020,198.8,5.8,0.91,16.030,200.6 +5.4,0.91,16.860,202.8,5.4,0.91,17.880,204.2 +5.2,0.91,16.510,205.9,5.4,0.91,17.470,207.3 +5.4,0.91,16.780,206.6,5.6,0.91,17.480,207.6 +5.4,0.91,16.540,205.2,5.6,0.91,17.270,206.2 +5.4,0.91,13.990,208.3,5.6,0.91,14.450,209.3 +5.5,0.91,12.610,214.3,5.7,0.91,13.250,215.5 +3.3,0.91,7.120,302.1,3.4,0.91,6.900,294.0 +1.4,0.91,9.060,337.2,1.8,0.91,8.520,332.8 +-0.6,0.91,10.590,347.5,-0.9,0.91,11.700,350.6 +-1.1,0.91,11.150,354.1,-1.2,0.91,11.990,356.7 +-1.0,0.92,9.650,2.6,-1.2,0.92,9.950,2.9 +-0.1,0.92,9.760,6.4,-0.3,0.92,9.840,6.5 +1.1,0.92,9.850,8.3,0.9,0.92,9.930,8.3 +2.4,0.92,10.130,9.3,2.2,0.92,10.220,9.2 +3.3,0.92,9.740,11.4,3.1,0.92,9.830,11.2 +4.0,0.92,9.800,10.0,3.8,0.92,9.890,9.8 +4.6,0.92,9.370,12.7,4.4,0.92,9.450,12.5 +4.8,0.92,9.210,13.4,4.6,0.92,9.280,13.1 +4.6,0.92,8.490,15.9,4.4,0.92,8.670,15.7 +4.1,0.92,9.240,18.2,4.0,0.92,9.610,18.0 +3.8,0.92,9.090,21.3,3.7,0.92,9.470,21.4 +3.4,0.92,10.390,25.4,3.4,0.92,10.840,25.8 +2.8,0.92,9.490,30.9,2.7,0.92,9.840,30.6 +2.4,0.92,9.440,30.8,2.3,0.92,9.740,30.1 +1.9,0.92,9.080,27.5,1.8,0.92,9.320,27.1 +1.7,0.92,8.790,22.0,1.5,0.92,8.940,21.2 +1.3,0.92,8.420,17.9,1.2,0.92,8.600,18.3 +1.0,0.92,7.150,18.9,1.0,0.92,7.320,19.7 +0.8,0.92,6.380,17.9,0.9,0.92,6.550,20.0 +0.9,0.92,5.970,21.9,1.0,0.92,6.160,24.7 +1.0,0.92,5.100,24.3,1.1,0.92,5.340,26.4 +1.0,0.92,4.350,21.3,1.1,0.92,4.600,23.9 +1.2,0.92,3.620,14.8,1.3,0.92,3.890,18.2 +1.6,0.92,3.230,7.6,1.6,0.92,3.420,12.5 +2.3,0.92,2.950,355.5,2.3,0.92,3.030,1.9 +2.8,0.92,1.710,351.8,2.7,0.92,1.860,359.4 +4.2,0.92,1.480,340.7,4.0,0.92,1.440,341.4 +5.5,0.92,1.190,358.6,5.3,0.92,1.150,357.1 +6.4,0.92,1.100,15.0,6.3,0.92,1.050,12.5 +7.0,0.92,0.910,48.7,6.9,0.92,0.860,47.3 +7.6,0.92,0.790,80.9,7.4,0.92,0.750,83.4 +7.9,0.92,0.580,75.6,7.7,0.92,0.540,80.2 +7.6,0.92,1.590,75.8,7.4,0.92,1.550,81.7 +7.2,0.92,2.220,141.6,7.1,0.92,2.230,146.1 +6.9,0.92,4.550,182.8,6.8,0.92,4.450,183.4 +6.8,0.92,4.780,179.6,6.7,0.92,4.830,180.1 +6.7,0.92,5.270,185.6,6.6,0.92,5.300,185.5 +6.6,0.92,4.960,193.8,6.6,0.92,4.960,192.8 +6.6,0.92,5.160,195.7,6.6,0.92,5.150,195.0 +6.6,0.92,5.060,199.8,6.6,0.92,4.920,200.7 +6.5,0.92,5.150,201.5,6.6,0.92,4.940,202.3 +6.6,0.92,4.790,210.1,6.7,0.92,4.500,211.7 +6.8,0.92,4.160,216.1,7.0,0.92,3.850,218.7 +7.0,0.92,3.630,224.3,7.1,0.92,3.240,228.1 +7.2,0.92,2.830,240.8,7.3,0.92,2.540,246.4 +7.4,0.92,2.270,278.1,7.3,0.92,2.100,285.2 +7.2,0.92,1.980,268.0,7.2,0.92,1.550,271.5 +7.3,0.92,0.670,12.2,7.2,0.92,0.770,34.9 +6.5,0.92,0.710,66.8,6.8,0.92,0.520,76.3 +6.9,0.92,0.880,102.0,7.1,0.92,1.120,98.9 +7.6,0.92,0.990,137.8,7.4,0.92,1.030,139.9 +8.5,0.92,0.910,121.6,8.3,0.92,0.930,122.1 +9.2,0.92,1.250,157.6,9.0,0.92,1.290,157.4 +9.6,0.92,2.340,189.7,9.4,0.92,2.340,189.1 +9.9,0.92,2.270,190.3,9.7,0.92,2.270,189.9 +9.8,0.92,2.840,188.5,9.6,0.92,2.810,188.3 +9.4,0.92,4.180,191.4,9.2,0.92,4.150,191.5 +9.1,0.92,4.590,200.2,8.9,0.92,4.550,199.3 +9.0,0.92,5.490,199.0,8.9,0.92,5.460,198.6 +9.0,0.92,5.710,189.8,8.8,0.92,5.570,190.9 +8.0,0.92,7.770,183.2,8.1,0.92,7.370,184.2 +6.2,0.92,9.460,182.6,6.5,0.92,9.290,186.4 +6.5,0.92,8.530,192.0,6.8,0.92,8.340,194.7 +7.0,0.91,7.340,213.1,7.1,0.91,7.230,214.7 +6.8,0.91,8.120,218.4,6.9,0.91,8.300,217.1 +6.1,0.91,8.850,210.5,6.2,0.91,9.190,209.9 +6.5,0.91,9.560,212.5,6.7,0.91,9.860,212.4 +6.7,0.91,9.570,212.4,6.8,0.91,9.690,212.2 +7.0,0.91,8.350,219.3,7.1,0.91,8.420,221.5 +6.7,0.91,7.550,227.3,6.8,0.91,7.660,228.8 +5.7,0.91,7.990,213.5,5.8,0.91,8.190,215.5 +5.5,0.91,8.090,215.5,5.6,0.91,8.140,218.4 +5.2,0.91,7.760,208.7,5.4,0.91,8.080,211.6 +6.1,0.91,7.720,209.5,6.1,0.91,8.030,211.4 +6.7,0.91,8.940,214.4,6.5,0.91,9.100,214.9 +7.3,0.91,8.810,212.8,7.1,0.91,8.920,213.1 +9.0,0.91,9.290,210.6,8.8,0.91,9.410,210.8 +10.0,0.91,9.470,209.0,9.8,0.91,9.580,209.3 +10.5,0.91,9.170,203.2,10.3,0.91,9.270,203.7 +11.1,0.91,8.860,203.7,10.9,0.91,8.970,204.0 +10.8,0.91,8.830,197.5,10.7,0.91,9.110,197.9 +10.5,0.91,11.000,195.1,10.4,0.91,11.310,195.7 +10.1,0.90,12.440,196.2,10.1,0.90,13.010,196.9 +9.5,0.90,13.460,199.7,9.6,0.90,14.170,201.4 +8.7,0.90,14.290,205.5,8.8,0.90,15.130,207.3 +7.8,0.90,13.620,207.6,7.9,0.90,14.430,209.3 +7.3,0.90,13.890,211.9,7.4,0.90,14.800,213.4 +6.8,0.90,13.420,212.9,6.9,0.90,14.190,214.5 +6.1,0.90,12.390,210.7,6.0,0.90,12.800,211.3 +5.9,0.90,12.260,214.3,5.8,0.90,12.590,214.8 +6.0,0.90,11.130,215.5,5.9,0.90,11.420,216.1 +5.8,0.90,10.480,222.5,5.7,0.90,10.710,222.7 +5.7,0.90,7.830,225.8,5.6,0.90,7.940,227.5 +5.1,0.91,7.080,243.9,4.9,0.91,7.230,244.0 +4.7,0.91,6.890,314.7,4.5,0.91,7.250,315.3 +0.9,0.91,8.300,341.2,0.7,0.91,8.420,341.1 +-0.3,0.91,12.410,6.1,-0.5,0.91,12.640,6.6 +-1.3,0.91,12.930,11.4,-1.5,0.91,13.140,11.7 +-2.9,0.91,12.430,6.5,-3.1,0.91,12.500,6.7 +-3.7,0.91,11.650,17.5,-3.9,0.91,11.770,17.4 +-3.4,0.91,12.100,15.0,-3.6,0.91,12.230,14.9 +-2.8,0.91,10.510,9.9,-3.0,0.91,10.610,9.9 +-2.5,0.91,10.210,13.8,-2.7,0.91,10.310,13.6 +-2.2,0.91,10.020,14.9,-2.4,0.91,10.130,14.7 +-1.8,0.91,9.810,11.9,-2.0,0.91,9.980,11.8 +-1.9,0.91,9.340,17.9,-2.1,0.91,9.610,17.8 +-2.1,0.91,8.190,21.4,-2.3,0.91,8.560,21.5 +-2.3,0.91,8.780,19.7,-2.5,0.91,9.280,20.8 +-2.6,0.91,9.220,16.9,-2.7,0.91,9.520,16.3 +-3.1,0.91,9.030,12.7,-3.3,0.91,9.370,13.5 +-3.6,0.91,8.780,8.8,-3.7,0.91,9.000,8.6 +-4.0,0.91,7.430,11.3,-4.2,0.91,7.830,11.9 +-4.2,0.91,6.670,9.3,-4.3,0.91,7.030,9.0 +-4.4,0.91,5.820,358.8,-4.6,0.91,6.160,358.4 +-4.7,0.91,5.900,351.4,-4.8,0.91,6.140,352.2 +-4.8,0.91,5.330,341.5,-4.9,0.91,5.610,341.3 +-4.9,0.91,4.890,335.3,-5.0,0.91,5.270,333.7 +-4.8,0.91,4.870,317.0,-4.8,0.91,5.230,316.3 +-4.3,0.91,5.480,304.7,-4.2,0.91,6.000,305.8 +-3.4,0.91,5.600,300.3,-3.3,0.91,5.920,302.5 +-2.3,0.91,5.480,295.3,-2.1,0.91,5.970,297.6 +-0.8,0.91,3.570,289.1,-1.0,0.91,3.750,289.7 +1.4,0.91,3.110,285.4,1.3,0.91,3.170,285.2 +3.5,0.91,2.760,277.2,3.3,0.91,2.800,276.9 +5.2,0.91,2.530,285.6,5.0,0.91,2.560,284.9 +6.4,0.91,1.800,288.1,6.3,0.91,1.810,286.6 +6.9,0.91,2.070,313.3,6.8,0.91,2.040,311.6 +6.8,0.91,2.520,330.9,6.7,0.91,2.490,330.1 +6.5,0.91,2.590,13.9,6.3,0.91,2.600,12.9 +5.9,0.91,2.980,39.7,5.8,0.91,3.140,34.5 +5.4,0.92,3.390,47.2,5.5,0.92,3.620,43.6 +4.9,0.92,4.010,46.5,5.0,0.92,4.320,45.9 +4.3,0.92,3.810,57.4,4.4,0.92,4.180,57.4 +4.3,0.92,3.770,58.0,4.4,0.92,4.120,58.3 +4.1,0.92,3.360,61.5,4.3,0.92,3.680,60.6 +4.2,0.92,2.830,59.6,4.3,0.92,3.190,58.5 +4.0,0.92,2.550,47.5,4.1,0.92,2.920,48.1 +4.0,0.92,2.480,41.2,4.2,0.92,2.820,43.1 +4.2,0.92,2.140,53.2,4.4,0.92,2.430,53.7 +4.2,0.92,1.800,64.1,4.4,0.92,2.090,64.2 +4.6,0.92,1.320,84.9,4.8,0.92,1.510,85.8 +4.7,0.92,1.580,129.3,4.9,0.92,1.720,128.7 +4.8,0.92,2.990,167.6,4.9,0.92,2.880,168.7 +4.6,0.92,5.450,183.6,4.8,0.92,5.150,184.4 +4.9,0.92,6.790,192.2,5.1,0.92,6.720,193.9 +4.5,0.92,6.920,199.5,4.8,0.92,7.540,200.8 +5.5,0.92,6.370,202.7,5.4,0.92,6.430,203.3 +6.5,0.92,7.320,204.1,6.3,0.92,7.350,204.4 +7.3,0.91,7.820,204.3,7.2,0.91,7.860,204.7 +7.7,0.91,8.090,203.5,7.6,0.91,8.130,203.9 +8.3,0.91,8.510,199.4,8.1,0.91,8.580,199.6 +9.0,0.91,9.530,198.1,8.8,0.91,9.650,198.5 +9.0,0.91,10.160,192.9,8.9,0.91,10.540,193.5 +13.3,0.91,7.920,275.8,13.2,0.91,8.330,276.2 +12.4,0.91,12.130,278.5,12.4,0.91,12.930,278.3 +11.8,0.91,12.380,279.4,11.9,0.91,12.840,279.4 +11.0,0.91,10.520,287.1,11.1,0.91,11.650,286.5 +10.0,0.91,7.290,290.2,10.1,0.91,8.380,288.7 +10.4,0.91,9.400,289.7,10.6,0.91,10.430,290.0 diff --git a/h2integrate/control/control_rules/pyomo_rule_baseclass.py b/h2integrate/control/control_rules/pyomo_rule_baseclass.py index 60788d151..e34d6028d 100644 --- a/h2integrate/control/control_rules/pyomo_rule_baseclass.py +++ b/h2integrate/control/control_rules/pyomo_rule_baseclass.py @@ -5,7 +5,7 @@ from h2integrate.core.utilities import BaseConfig -@define +@define(kw_only=True) class PyomoRuleBaseConfig(BaseConfig): """ Configuration class for the PyomoRuleBaseConfig. diff --git a/h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py b/h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py index ed5ef77d0..9374ba4d6 100644 --- a/h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py +++ b/h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py @@ -8,7 +8,7 @@ ) -@define +@define(kw_only=True) class FlexibleDemandOpenLoopConverterControllerConfig(DemandOpenLoopControlBaseConfig): """Configuration for defining a flexible demand open-loop controller. diff --git a/h2integrate/control/control_strategies/demand_openloop_controller.py b/h2integrate/control/control_strategies/demand_openloop_controller.py index 499ccbebe..f0724d922 100644 --- a/h2integrate/control/control_strategies/demand_openloop_controller.py +++ b/h2integrate/control/control_strategies/demand_openloop_controller.py @@ -4,7 +4,7 @@ from h2integrate.core.utilities import BaseConfig -@define +@define(kw_only=True) class DemandOpenLoopControlBaseConfig(BaseConfig): """Configuration for defining an open-loop demand profile. diff --git a/h2integrate/control/control_strategies/passthrough_openloop_controller.py b/h2integrate/control/control_strategies/passthrough_openloop_controller.py index c8197a472..b6be718d5 100644 --- a/h2integrate/control/control_strategies/passthrough_openloop_controller.py +++ b/h2integrate/control/control_strategies/passthrough_openloop_controller.py @@ -5,7 +5,7 @@ from h2integrate.control.control_strategies.controller_baseclass import ControllerBaseClass -@define +@define(kw_only=True) class PassThroughOpenLoopControllerConfig(BaseConfig): commodity_name: str = field() commodity_units: str = field() diff --git a/h2integrate/control/control_strategies/pyomo_controllers.py b/h2integrate/control/control_strategies/pyomo_controllers.py index 47ae68af8..d89869a1f 100644 --- a/h2integrate/control/control_strategies/pyomo_controllers.py +++ b/h2integrate/control/control_strategies/pyomo_controllers.py @@ -13,7 +13,7 @@ pass -@define +@define(kw_only=True) class PyomoControllerBaseConfig(BaseConfig): """ Configuration data container for Pyomo-based storage / dispatch controllers. @@ -678,7 +678,7 @@ def round_trip_efficiency(self, round_trip_efficiency: float): self.discharge_efficiency = efficiency -@define +@define(kw_only=True) class HeuristicLoadFollowingControllerConfig(PyomoControllerBaseConfig): max_charge_rate: int | float = field() charge_efficiency: float = field(default=None) diff --git a/h2integrate/control/control_strategies/storage/demand_openloop_controller.py b/h2integrate/control/control_strategies/storage/demand_openloop_controller.py index 57c27be90..0516b30df 100644 --- a/h2integrate/control/control_strategies/storage/demand_openloop_controller.py +++ b/h2integrate/control/control_strategies/storage/demand_openloop_controller.py @@ -11,7 +11,7 @@ ) -@define +@define(kw_only=True) class DemandOpenLoopStorageControllerConfig(DemandOpenLoopControlBaseConfig): """ Configuration class for the DemandOpenLoopStorageController. diff --git a/h2integrate/converters/ammonia/ammonia_synloop.py b/h2integrate/converters/ammonia/ammonia_synloop.py index f2f53f545..26ea56a8b 100644 --- a/h2integrate/converters/ammonia/ammonia_synloop.py +++ b/h2integrate/converters/ammonia/ammonia_synloop.py @@ -1,22 +1,38 @@ import numpy as np -import openmdao.api as om from attrs import field, define -from h2integrate.core.utilities import BaseConfig, CostModelBaseConfig, merge_shared_inputs +from h2integrate.core.utilities import ( + CostModelBaseConfig, + ResizeablePerformanceModelBaseConfig, + merge_shared_inputs, +) from h2integrate.core.validators import gt_zero, range_val from h2integrate.tools.constants import H_MW, N_MW -from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.core.model_baseclasses import ( + CostModelBaseClass, + ResizeablePerformanceModelBaseClass, +) from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci -@define -class AmmoniaSynLoopPerformanceConfig(BaseConfig): +@define(kw_only=True) +class AmmoniaSynLoopPerformanceConfig(ResizeablePerformanceModelBaseConfig): """ Configuration inputs for the ammonia synthesis loop performance model. *Starred inputs are from tech_config/ammonia/model_inputs/shared_parameters The other inputs are from tech_config/ammonia/model_inputs/performance_parameters Attributes: + size_mode (str): The mode in which the component is sized. Options: + - "normal": The component size is taken from the tech_config. + - "resize_by_max_feedstock": Resize based on maximum feedstock availability. + - "resize_by_max_commodity": Resize based on maximum commodity demand. + flow_used_for_sizing (str | None): The feedstock/commodity flow used for sizing. + Required when size_mode is not "normal". + max_feedstock_ratio (float): Ratio for sizing in "resize_by_max_feedstock" mode. + Defaults to 1.0. + max_commodity_ratio (float): Ratio for sizing in "resize_by_max_commodity" mode. + Defaults to 1.0. *production_capacity (float): The total production capacity of the ammonia synthesis loop (in kg ammonia per hour) *catalyst_consumption_rate (float): The mass ratio of catalyst consumed by the reactor over @@ -64,7 +80,7 @@ class AmmoniaSynLoopPerformanceConfig(BaseConfig): purge_gas_mass_ratio: float = field(validator=gt_zero) -class AmmoniaSynLoopPerformanceModel(om.ExplicitComponent): +class AmmoniaSynLoopPerformanceModel(ResizeablePerformanceModelBaseClass): """ OpenMDAO component modeling the performance of an ammonia synthesis loop. @@ -113,6 +129,10 @@ class AmmoniaSynLoopPerformanceModel(om.ExplicitComponent): Total electricity consumed over the modeled period. limiting_output: array of ints [-] 0: nitrogen-limited, 1: hydrogen-limited, 2: electricity-limited 3: capacity-limited + max_hydrogen_capacity : float [kg/h] + The maximum rate of hydrogen consumption. + ammonia_capacity_factor : float [-] + The ratio of ammonia produced to the maximum production capacity. Notes ----- @@ -121,16 +141,12 @@ class AmmoniaSynLoopPerformanceModel(om.ExplicitComponent): conversion efficiency up to the limiting reagent or energy input. """ - def initialize(self): - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - self.options.declare("driver_config", types=dict) - def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] self.config = AmmoniaSynLoopPerformanceConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") ) + super().setup() self.add_input("hydrogen_in", val=0.0, shape=n_timesteps, units="kg/h") self.add_input("nitrogen_in", val=0.0, shape=n_timesteps, units="kg/h") @@ -146,9 +162,13 @@ def setup(self): self.add_output("total_hydrogen_consumed", val=0.0, units="kg/year") self.add_output("total_nitrogen_consumed", val=0.0, units="kg/year") self.add_output("total_electricity_consumed", val=0.0, units="kW*h/year") - self.add_output("limiting_input", val=0, shape=n_timesteps, units=None) + self.add_output( + "limiting_input", val=0, shape_by_conn=True, copy_shape="hydrogen_in", units=None + ) + self.add_output("max_hydrogen_capacity", val=1000.0, units="kg/h") + self.add_output("ammonia_capacity_factor", val=0.0, units="unitless") - def compute(self, inputs, outputs): + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): # Get config values nh3_cap = self.config.production_capacity # kg NH3 per hour cat_consume = self.config.catalyst_consumption_rate # kg Cat per kg NH3 @@ -162,6 +182,26 @@ def compute(self, inputs, outputs): x_n2_purge = self.config.purge_gas_x_n2 # mol frac ratio_purge = self.config.purge_gas_mass_ratio # kg/kg NH3 + # Resize if needed + size_mode = discrete_inputs["size_mode"] + if size_mode == "normal": + pass + elif size_mode == "resize_by_max_feedstock": + if discrete_inputs["flow_used_for_sizing"] == "hydrogen": + max_cap_ratio = inputs["max_feedstock_ratio"] + feed_mw = x_h2_feed * H_MW * 2 + x_n2_feed * N_MW * 2 # g / mol + w_h2_feed = x_h2_feed * H_MW * 2 / feed_mw # kg H2 / kg feed gas + nh3_cap = np.max(inputs["hydrogen_in"]) / (ratio_feed * w_h2_feed) * max_cap_ratio + else: + flow = discrete_inputs["flow_used_for_sizing"] + NotImplementedError( + f"The sizing mode '{size_mode}' is not implemented for the '{flow}' flow" + ) + else: + NotImplementedError( + f"The sizing mode '{size_mode}' is not implemented for this converter" + ) + # Inputs (arrays of length n_timesteps) h2_in = inputs["hydrogen_in"] n2_in = inputs["nitrogen_in"] @@ -226,13 +266,19 @@ def compute(self, inputs, outputs): outputs["electricity_out"] = elec_in - used_elec outputs["heat_out"] = nh3_prod * heat_output outputs["catalyst_mass"] = cat_mass - outputs["total_ammonia_produced"] = nh3_prod.sum() + outputs["total_ammonia_produced"] = max(nh3_prod.sum(), 1e-6) outputs["total_hydrogen_consumed"] = h2_in.sum() outputs["total_nitrogen_consumed"] = n2_in.sum() outputs["total_electricity_consumed"] = elec_in.sum() + h2_cap = nh3_cap * h2_rate # kg H2 per hour + outputs["max_hydrogen_capacity"] = h2_cap + + # Calculate capacity factor + outputs["ammonia_capacity_factor"] = np.mean(nh3_prod) / nh3_cap + -@define +@define(kw_only=True) class AmmoniaSynLoopCostConfig(CostModelBaseConfig): """ Configuration inputs for the ammonia synthesis loop cost model. diff --git a/h2integrate/converters/ammonia/simple_ammonia_model.py b/h2integrate/converters/ammonia/simple_ammonia_model.py index 5a08ceae7..4d164b962 100644 --- a/h2integrate/converters/ammonia/simple_ammonia_model.py +++ b/h2integrate/converters/ammonia/simple_ammonia_model.py @@ -6,7 +6,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class AmmoniaPerformanceModelConfig(BaseConfig): """Configuration inputs for the ammonia performance model, including plant capacity and capacity factor. @@ -49,7 +49,7 @@ def compute(self, inputs, outputs): outputs["total_ammonia_produced"] = ammonia_production_kgpy -@define +@define(kw_only=True) class AmmoniaCostModelConfig(CostModelBaseConfig): """ Configuration inputs for the ammonia cost model, including plant capacity and diff --git a/h2integrate/converters/ammonia/test/test_ammonia_synloop_model.py b/h2integrate/converters/ammonia/test/test_ammonia_synloop_model.py index 61485227d..ae342a097 100644 --- a/h2integrate/converters/ammonia/test/test_ammonia_synloop_model.py +++ b/h2integrate/converters/ammonia/test/test_ammonia_synloop_model.py @@ -1,7 +1,12 @@ +import os + import numpy as np import pytest import openmdao.api as om +from h2integrate import EXAMPLE_DIR +from h2integrate.core.h2integrate_model import H2IntegrateModel +from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml from h2integrate.converters.ammonia.ammonia_synloop import AmmoniaSynLoopPerformanceModel @@ -14,6 +19,7 @@ def make_synloop_config(): "catalyst_replacement_interval": 3, }, "performance_parameters": { + "size_mode": "normal", "capacity_factor": 0.9, "energy_demand": 0.530645243, "heat_output": 0.8299956, @@ -91,3 +97,41 @@ def test_ammonia_synloop_limiting_cases(subtests): # Check total NH3 output with subtests.test("Total ammonia"): assert np.allclose(total, np.sum(expected_nh3), rtol=1e-6) + + +def test_size_mode_outputs(subtests): + # Change the current working directory to the example's directory + os.chdir(EXAMPLE_DIR / "25_sizing_modes") + + # Load the 'base' configs needed to create the H2I model + driver_config = load_driver_yaml(EXAMPLE_DIR / "25_sizing_modes" / "driver_config.yaml") + plant_config = load_plant_yaml(EXAMPLE_DIR / "25_sizing_modes" / "plant_config.yaml") + tech_config = load_tech_yaml(EXAMPLE_DIR / "25_sizing_modes" / "tech_config.yaml") + input_config = { + "name": "H2Integrate_config", + "system_summary": "hybrid plant containing ammonia plant and electrolyzer", + "driver_config": driver_config, + "plant_config": plant_config, + "technology_config": tech_config, + } + + # Create a H2Integrate model, modifying tech_config as necessary + tech_config["technologies"]["ammonia"]["model_inputs"]["performance_parameters"][ + "size_mode" + ] = "resize_by_max_feedstock" + tech_config["technologies"]["ammonia"]["model_inputs"]["performance_parameters"][ + "flow_used_for_sizing" + ] = "hydrogen" + tech_config["technologies"]["ammonia"]["model_inputs"]["performance_parameters"][ + "max_feedstock_ratio" + ] = 1.0 + input_config["technology_config"] = tech_config + model = H2IntegrateModel(input_config) + + model.run() + + with subtests.test("Test `resize_by_max_feedstock` mode"): + assert ( + pytest.approx(model.prob.get_val("ammonia.max_hydrogen_capacity")[0], rel=1e-3) + == 12543.68246215831 + ) diff --git a/h2integrate/converters/co2/marine/direct_ocean_capture.py b/h2integrate/converters/co2/marine/direct_ocean_capture.py index 05116d9e8..4d4365157 100644 --- a/h2integrate/converters/co2/marine/direct_ocean_capture.py +++ b/h2integrate/converters/co2/marine/direct_ocean_capture.py @@ -33,7 +33,7 @@ def setup_electrodialysis_inputs(config): ) -@define +@define(kw_only=True) class DOCPerformanceConfig(MarineCarbonCapturePerformanceConfig): """Extended configuration for Direct Ocean Capture (DOC) performance model. @@ -134,7 +134,7 @@ def compute(self, inputs, outputs): outputs["plant_mCC_capacity_mtph"] = max(range_outputs.S1["mCC"]) -@define +@define(kw_only=True) class DOCCostModelConfig(DOCPerformanceConfig): """Configuration for the DOC cost model. diff --git a/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py b/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py index dcda17246..0c0228764 100644 --- a/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py +++ b/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py @@ -5,7 +5,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class MarineCarbonCapturePerformanceConfig(BaseConfig): """Configuration options for marine carbon capture performance modeling. diff --git a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py index 4e51b330e..e9b343dfb 100644 --- a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py +++ b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py @@ -29,7 +29,7 @@ def setup_ocean_alkalinity_enhancement_inputs(config): ) -@define +@define(kw_only=True) class OAEPerformanceConfig(MarineCarbonCapturePerformanceConfig): """Extended configuration for Ocean Alkalinity Enhancement (OAE) performance model. @@ -233,7 +233,7 @@ def compute(self, inputs, outputs): outputs["unused_energy"] = oae_outputs.OAE_outputs["P_xs"] -@define +@define(kw_only=True) class OAECostModelConfig(BaseConfig): """Configuration for the OAE cost model. diff --git a/h2integrate/converters/grid/grid.py b/h2integrate/converters/grid/grid.py index a62d3575b..f08fb0bc7 100644 --- a/h2integrate/converters/grid/grid.py +++ b/h2integrate/converters/grid/grid.py @@ -6,7 +6,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class GridPerformanceModelConfig(BaseConfig): """Configuration for the grid performance model. @@ -131,7 +131,7 @@ def compute(self, inputs, outputs): outputs["electricity_excess"] = inputs["electricity_in"] - electricity_sold -@define +@define(kw_only=True) class GridCostModelConfig(CostModelBaseConfig): """Configuration for the grid cost model. diff --git a/h2integrate/converters/hydrogen/basic_cost_model.py b/h2integrate/converters/hydrogen/basic_cost_model.py index d91d793d2..0b95b2576 100644 --- a/h2integrate/converters/hydrogen/basic_cost_model.py +++ b/h2integrate/converters/hydrogen/basic_cost_model.py @@ -8,7 +8,7 @@ from h2integrate.converters.hydrogen.electrolyzer_baseclass import ElectrolyzerCostBaseClass -@define +@define(kw_only=True) class BasicElectrolyzerCostModelConfig(CostModelBaseConfig): """ Configuration class for the basic_H2_cost_model which is based on costs from diff --git a/h2integrate/converters/hydrogen/custom_electrolyzer_cost_model.py b/h2integrate/converters/hydrogen/custom_electrolyzer_cost_model.py index cded4f6da..1bd2a86bc 100644 --- a/h2integrate/converters/hydrogen/custom_electrolyzer_cost_model.py +++ b/h2integrate/converters/hydrogen/custom_electrolyzer_cost_model.py @@ -5,7 +5,7 @@ from h2integrate.converters.hydrogen.electrolyzer_baseclass import ElectrolyzerCostBaseClass -@define +@define(kw_only=True) class CustomElectrolyzerCostModelConfig(CostModelBaseConfig): """Configuration class for the CustomElectrolyzerCostModel. diff --git a/h2integrate/converters/hydrogen/electrolyzer_baseclass.py b/h2integrate/converters/hydrogen/electrolyzer_baseclass.py index 9b26d468f..09692255d 100644 --- a/h2integrate/converters/hydrogen/electrolyzer_baseclass.py +++ b/h2integrate/converters/hydrogen/electrolyzer_baseclass.py @@ -1,16 +1,15 @@ import openmdao.api as om -from h2integrate.core.model_baseclasses import CostModelBaseClass +from h2integrate.core.model_baseclasses import ( + CostModelBaseClass, + ResizeablePerformanceModelBaseClass, +) -class ElectrolyzerPerformanceBaseClass(om.ExplicitComponent): - def initialize(self): - self.options.declare("driver_config", types=dict) - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - +class ElectrolyzerPerformanceBaseClass(ResizeablePerformanceModelBaseClass): def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + super().setup() # Define inputs for electricity and outputs for hydrogen and oxygen generation self.add_input("electricity_in", val=0.0, shape=n_timesteps, units="kW") self.add_output("hydrogen_out", val=0.0, shape=n_timesteps, units="kg/h") diff --git a/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py b/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py index 973e73b91..e622645ad 100644 --- a/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py +++ b/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py @@ -7,7 +7,7 @@ from h2integrate.tools.inflation.inflate import inflate_cepci -@define +@define(kw_only=True) class GeoH2SubsurfacePerformanceConfig(BaseConfig): """Configuration for performance parameters in natural and geologic hydrogen subsurface well sub-models. @@ -91,7 +91,7 @@ def setup(self): self.add_output("total_hydrogen_produced", val=0.0, units="kg/year") -@define +@define(kw_only=True) class GeoH2SubsurfaceCostConfig(CostModelBaseConfig): """Configuration for cost parameters in natural and geologic hydrogen well subsurface sub-models. diff --git a/h2integrate/converters/hydrogen/geologic/mathur_modified.py b/h2integrate/converters/hydrogen/geologic/mathur_modified.py index 985f1e362..383ca6609 100644 --- a/h2integrate/converters/hydrogen/geologic/mathur_modified.py +++ b/h2integrate/converters/hydrogen/geologic/mathur_modified.py @@ -11,7 +11,7 @@ ) -@define +@define(kw_only=True) class GeoH2SubsurfaceCostConfig(GeoH2SubsurfaceCostConfig): """Configuration for subsurface well cost parameters in geologic hydrogen models. diff --git a/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py b/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py index 10986f568..c08244f53 100644 --- a/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py +++ b/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py @@ -8,7 +8,7 @@ ) -@define +@define(kw_only=True) class NaturalGeoH2PerformanceConfig(GeoH2SubsurfacePerformanceConfig): """Configuration for performance parameters for a natural geologic hydrogen subsurface well. This class defines performance parameters specific to **natural** geologic hydrogen diff --git a/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py b/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py index 26303290c..4f4c75045 100644 --- a/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py +++ b/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py @@ -13,7 +13,7 @@ M_H2 = 1.00 # kg/kmol -@define +@define(kw_only=True) class StimulatedGeoH2PerformanceConfig(GeoH2SubsurfacePerformanceConfig): """Configuration parameters for stimulated geologic hydrogen well subsurface performance models. diff --git a/h2integrate/converters/hydrogen/pem_electrolyzer.py b/h2integrate/converters/hydrogen/pem_electrolyzer.py index f69d9475c..1c03f9f06 100644 --- a/h2integrate/converters/hydrogen/pem_electrolyzer.py +++ b/h2integrate/converters/hydrogen/pem_electrolyzer.py @@ -1,24 +1,31 @@ import math +import numpy as np from attrs import field, define -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.utilities import ResizeablePerformanceModelBaseConfig, merge_shared_inputs from h2integrate.core.validators import gt_zero, contains +from h2integrate.converters.hydrogen.utilities import size_electrolyzer_for_hydrogen_demand from h2integrate.converters.hydrogen.pem_model.run_h2_PEM import run_h2_PEM from h2integrate.converters.hydrogen.electrolyzer_baseclass import ElectrolyzerPerformanceBaseClass -@define -class ECOElectrolyzerPerformanceModelConfig(BaseConfig): +@define(kw_only=True) +class ECOElectrolyzerPerformanceModelConfig(ResizeablePerformanceModelBaseConfig): """ Configuration class for the ECOElectrolyzerPerformanceModel. Args: - sizing (dict): A dictionary containing the following model sizing parameters: - - resize_for_enduse (bool): Flag to adjust the electrolyzer based on the enduse. - - size_for (str): Determines the sizing strategy, either "BOL" (generous), or - "EOL" (conservative). - - hydrogen_dmd (#TODO): #TODO + size_mode (str): The mode in which the component is sized. Options: + - "normal": The component size is taken from the tech_config. + - "resize_by_max_feedstock": Resize based on maximum feedstock availability. + - "resize_by_max_commodity": Resize based on maximum commodity demand. + flow_used_for_sizing (str | None): The feedstock/commodity flow used for sizing. + Required when size_mode is not "normal". + max_feedstock_ratio (float): Ratio for sizing in "resize_by_max_feedstock" mode. + Defaults to 1.0. + max_commodity_ratio (float): Ratio for sizing in "resize_by_max_commodity" mode. + Defaults to 1.0. n_clusters (int): number of electrolyzer clusters within the system. location (str): The location of the electrolyzer; options include "onshore" or "offshore". cluster_rating_MW (float): The rating of the clusters that the electrolyzer is grouped @@ -35,7 +42,6 @@ class ECOElectrolyzerPerformanceModelConfig(BaseConfig): (https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/24005-clean-hydrogen-production-cost-pem-electrolyzer.pdf?sfvrsn=8cb10889_1) """ - sizing: dict = field() n_clusters: int = field(validator=gt_zero) location: str = field(validator=contains(["onshore", "offshore"])) cluster_rating_MW: float = field(validator=gt_zero) @@ -53,11 +59,11 @@ class ECOElectrolyzerPerformanceModel(ElectrolyzerPerformanceBaseClass): """ def setup(self): - super().setup() self.config = ECOElectrolyzerPerformanceModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), strict=False, ) + super().setup() self.add_output("efficiency", val=0.0, desc="Average efficiency of the electrolyzer") self.add_output( "rated_h2_production_kg_pr_hr", @@ -79,8 +85,11 @@ def setup(self): units="MW", desc="Size of the electrolyzer in MW", ) + self.add_input("cluster_size", val=-1.0, units="MW") + self.add_input("max_hydrogen_capacity", val=1000.0, units="kg/h") + self.add_output("hydrogen_capacity_factor", val=0.0, units="unitless") - def compute(self, inputs, outputs): + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): plant_life = self.options["plant_config"]["plant"]["plant_life"] electrolyzer_size_mw = inputs["n_clusters"][0] * self.config.cluster_rating_MW electrolyzer_capex_kw = self.config.electrolyzer_capex @@ -89,6 +98,36 @@ def compute(self, inputs, outputs): grid_connection_scenario = "off-grid" energy_to_electrolyzer_kw = inputs["electricity_in"] + # Resize if necessary based on sizing mode + size_mode = discrete_inputs["size_mode"] + # Make changes to computation based on sizing_mode: + if size_mode != "normal": + size_flow = discrete_inputs["flow_used_for_sizing"] + if size_mode == "resize_by_max_feedstock": + # In this sizing mode, electrolyzer size comes from feedstock + feed_ratio = inputs["max_feedstock_ratio"] + # Make sure COBLYA doesn't cause any shenanigans trying to set feed_ratio <= 0 + if feed_ratio <= 1e-6: + feed_ratio = 1e-6 + if size_flow == "electricity": + electrolyzer_size_mw = np.max(inputs["electricity_in"]) / 1000 * feed_ratio + else: + raise ValueError(f"Cannot resize for '{size_flow}' feedstock") + elif size_mode == "resize_by_max_commodity": + # In this sizing mode, electrolyzer size comes from a connected tech's capacity + # to take in one of the electrolyzer's commodities + comm_ratio = inputs["max_commodity_ratio"] + # Make sure COBLYA doesn't cause any shenanigans trying to set comm_ratio <= 0 + if comm_ratio <= 1e-6: + comm_ratio = 1e-6 + if size_flow == "hydrogen": + h2_kgphr = inputs["max_hydrogen_capacity"] + electrolyzer_size_mw = size_electrolyzer_for_hydrogen_demand(h2_kgphr * comm_ratio) + else: + raise ValueError(f"Cannot resize for '{size_flow}' commodity") + elif size_mode != "normal": + raise NotImplementedError("Sizing mode '%s' not implemented".format()) + n_pem_clusters = int(math.ceil(electrolyzer_size_mw / self.config.cluster_rating_MW)) electrolyzer_actual_capacity_MW = n_pem_clusters * self.config.cluster_rating_MW @@ -99,6 +138,7 @@ def compute(self, inputs, outputs): "turndown_ratio": self.config.turndown_ratio, } + energy_to_electrolyzer_kw = inputs["electricity_in"] H2_Results, h2_ts, h2_tot, power_to_electrolyzer_kw = run_h2_PEM( electrical_generation_timeseries=energy_to_electrolyzer_kw, electrolyzer_size=electrolyzer_size_mw, @@ -119,3 +159,4 @@ def compute(self, inputs, outputs): outputs["time_until_replacement"] = H2_Results["Time Until Replacement [hrs]"] outputs["rated_h2_production_kg_pr_hr"] = H2_Results["Rated BOL: H2 Production [kg/hr]"] outputs["electrolyzer_size_mw"] = electrolyzer_actual_capacity_MW + outputs["hydrogen_capacity_factor"] = H2_Results["Life: Capacity Factor"] diff --git a/h2integrate/converters/hydrogen/singlitico_cost_model.py b/h2integrate/converters/hydrogen/singlitico_cost_model.py index d668e8e18..c69919ff8 100644 --- a/h2integrate/converters/hydrogen/singlitico_cost_model.py +++ b/h2integrate/converters/hydrogen/singlitico_cost_model.py @@ -5,7 +5,7 @@ from h2integrate.converters.hydrogen.electrolyzer_baseclass import ElectrolyzerCostBaseClass -@define +@define(kw_only=True) class SingliticoCostModelConfig(CostModelBaseConfig): """ Configuration class for the ECOElectrolyzerPerformanceModel, outputs costs in 2021 USD. diff --git a/h2integrate/converters/hydrogen/test/test_size_modes.py b/h2integrate/converters/hydrogen/test/test_size_modes.py new file mode 100644 index 000000000..c663947c6 --- /dev/null +++ b/h2integrate/converters/hydrogen/test/test_size_modes.py @@ -0,0 +1,78 @@ +import os + +import pytest + +from h2integrate import EXAMPLE_DIR +from h2integrate.core.h2integrate_model import H2IntegrateModel +from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml + + +# Load the 'base' configs needed to create the H2I model +driver_config = load_driver_yaml(EXAMPLE_DIR / "25_sizing_modes" / "driver_config.yaml") +plant_config = load_plant_yaml(EXAMPLE_DIR / "25_sizing_modes" / "plant_config.yaml") +tech_config = load_tech_yaml(EXAMPLE_DIR / "25_sizing_modes" / "tech_config.yaml") +input_config = { + "name": "H2Integrate_config", + "system_summary": "hybrid plant containing ammonia plant and electrolyzer", + "driver_config": driver_config, + "plant_config": plant_config, + "technology_config": tech_config, +} + + +def test_resize_by_max_feedstock(subtests): + # Change the current working directory to the example's directory + os.chdir(EXAMPLE_DIR / "25_sizing_modes") + + # Create a H2Integrate model, modifying tech_config as necessary + tech_config["technologies"]["electrolyzer"]["model_inputs"]["performance_parameters"][ + "size_mode" + ] = "resize_by_max_feedstock" + tech_config["technologies"]["electrolyzer"]["model_inputs"]["performance_parameters"][ + "flow_used_for_sizing" + ] = "electricity" + tech_config["technologies"]["electrolyzer"]["model_inputs"]["performance_parameters"][ + "max_feedstock_ratio" + ] = 1.0 + input_config["technology_config"] = tech_config + model = H2IntegrateModel(input_config) + + model.run() + + with subtests.test("Check electrolyzer size"): + assert ( + pytest.approx(model.prob.get_val("electrolyzer.electrolyzer_size_mw")[0], rel=1e-3) + == 1080 + ) + + +def test_resize_by_max_commodity(subtests): + # Change the current working directory to the example's directory + os.chdir(EXAMPLE_DIR / "25_sizing_modes") + + # Create a H2Integrate model, modifying tech_config as necessary + tech_config["technologies"]["electrolyzer"]["model_inputs"]["performance_parameters"][ + "size_mode" + ] = "resize_by_max_commodity" + tech_config["technologies"]["electrolyzer"]["model_inputs"]["performance_parameters"][ + "flow_used_for_sizing" + ] = "hydrogen" + tech_config["technologies"]["electrolyzer"]["model_inputs"]["performance_parameters"][ + "max_commodity_ratio" + ] = 1.0 + input_config["technology_config"] = tech_config + plant_config["technology_interconnections"] = [ + ["hopp", "electrolyzer", "electricity", "cable"], + ["electrolyzer", "ammonia", "hydrogen", "pipe"], + ["ammonia", "electrolyzer", "max_hydrogen_capacity"], + ] + input_config["plant_config"] = plant_config + model = H2IntegrateModel(input_config) + + model.run() + + with subtests.test("Check electrolyzer size"): + assert ( + pytest.approx(model.prob.get_val("electrolyzer.electrolyzer_size_mw")[0], rel=1e-3) + == 560 + ) diff --git a/h2integrate/converters/hydrogen/test/test_wombat_model.py b/h2integrate/converters/hydrogen/test/test_wombat_model.py index 7654a37ce..bc71d74d7 100644 --- a/h2integrate/converters/hydrogen/test/test_wombat_model.py +++ b/h2integrate/converters/hydrogen/test/test_wombat_model.py @@ -24,11 +24,7 @@ def test_wombat_model_outputs(subtests): "shared_parameters": { "location": "onshore", "electrolyzer_capex": 1295, - "sizing": { - "resize_for_enduse": False, - "size_for": "BOL", - "hydrogen_dmd": None, - }, + "size_mode": "normal", "n_clusters": 1, "cluster_rating_MW": 40, "eol_eff_percent_loss": 13, @@ -85,11 +81,7 @@ def test_wombat_error(subtests): "shared_parameters": { "location": "onshore", "electrolyzer_capex": 1295, - "sizing": { - "resize_for_enduse": False, - "size_for": "BOL", - "hydrogen_dmd": None, - }, + "size_mode": "normal", "n_clusters": 0.75, "cluster_rating_MW": 40, "eol_eff_percent_loss": 13, diff --git a/h2integrate/converters/hydrogen/utilities.py b/h2integrate/converters/hydrogen/utilities.py new file mode 100644 index 000000000..af31d8eae --- /dev/null +++ b/h2integrate/converters/hydrogen/utilities.py @@ -0,0 +1,86 @@ +import numpy as np + +from h2integrate.converters.hydrogen.pem_model.PEM_H2_LT_electrolyzer_Clusters import ( + PEM_H2_Clusters as PEMClusters, +) + + +def create_1MW_reference_PEM(curve_coeff=None): + """Create a 1MW reference PEM electrolyzer cluster. + + Args: + curve_coeff: Optional curve coefficients for the electrolyzer efficiency curve. + Defaults to None. + + Returns: + PEMClusters: A configured PEM electrolyzer cluster object with 1MW capacity + and 30-year plant life. + """ + pem_param_dict = { + "eol_eff_percent_loss": 10, + "uptime_hours_until_eol": 77600, + "include_degradation_penalty": True, + "turndown_ratio": 0.1, + "curve_coeff": curve_coeff, + } + pem = PEMClusters(cluster_size_mw=1, plant_life=30, **pem_param_dict) + return pem + + +def get_electrolyzer_BOL_efficiency(): + """Get the beginning-of-life (BOL) efficiency of a reference electrolyzer. + + Creates a 1MW reference PEM electrolyzer and extracts its BOL efficiency + at the highest operating point. + + Returns: + float: BOL efficiency in kWh/kg, rounded to 2 decimal places. + """ + pem_1MW = create_1MW_reference_PEM() + bol_eff = pem_1MW.output_dict["BOL Efficiency Curve Info"]["Efficiency [kWh/kg]"].values[-1] + + return np.round(bol_eff, 2) + + +def size_electrolyzer_for_hydrogen_demand( + hydrogen_production_capacity_required_kgphr, + size_for="BOL", + electrolyzer_degradation_power_increase=None, +): + """Size an electrolyzer based on hydrogen production demand. + + Calculates the required electrolyzer capacity in MW to meet a specified + hydrogen production rate, accounting for either beginning-of-life (BOL) + or end-of-life (EOL) efficiency. + + Args: + hydrogen_production_capacity_required_kgphr: Required hydrogen production + capacity in kg per hour. + size_for: Sizing criterion, either "BOL" for beginning-of-life or "EOL" + for end-of-life efficiency. Defaults to "BOL". + electrolyzer_degradation_power_increase: Fractional increase in power + consumption due to degradation (e.g., 0.1 for 10% increase). + Required if size_for="EOL". Defaults to None. + + Returns: + float: Required electrolyzer capacity in MW. + """ + electrolyzer_energy_kWh_per_kg_estimate_BOL = get_electrolyzer_BOL_efficiency() + if size_for == "BOL": + electrolyzer_capacity_MW = ( + hydrogen_production_capacity_required_kgphr + * electrolyzer_energy_kWh_per_kg_estimate_BOL + / 1000 + ) + elif size_for == "EOL": + electrolyzer_energy_kWh_per_kg_estimate_EOL = ( + electrolyzer_energy_kWh_per_kg_estimate_BOL + * (1 + electrolyzer_degradation_power_increase) + ) + electrolyzer_capacity_MW = ( + hydrogen_production_capacity_required_kgphr + * electrolyzer_energy_kWh_per_kg_estimate_EOL + / 1000 + ) + + return electrolyzer_capacity_MW diff --git a/h2integrate/converters/hydrogen/wombat_model.py b/h2integrate/converters/hydrogen/wombat_model.py index f2abfd248..5ab991c62 100644 --- a/h2integrate/converters/hydrogen/wombat_model.py +++ b/h2integrate/converters/hydrogen/wombat_model.py @@ -12,7 +12,7 @@ ) -@define +@define(kw_only=True) class WOMBATModelConfig(ECOElectrolyzerPerformanceModelConfig): """ library_path: Path to the WOMBAT library directory, relative from this file @@ -63,7 +63,7 @@ def setup(self): ) def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - super().compute(inputs, outputs) + super().compute(inputs, outputs, discrete_inputs, discrete_outputs) # Ensure library_path is a Path object library_path = self.config.library_path diff --git a/h2integrate/converters/iron/iron.py b/h2integrate/converters/iron/iron.py index 6e9cc35ec..df2234c53 100644 --- a/h2integrate/converters/iron/iron.py +++ b/h2integrate/converters/iron/iron.py @@ -16,7 +16,7 @@ model_locs = load_yaml(model_locs_fp) -@define +@define(kw_only=True) class IronPerformanceModelConfig: """ Configuration inputs for the iron performance model. @@ -51,7 +51,7 @@ def __attrs_post_init__(self): self.model[fieldname] = False -@define +@define(kw_only=True) class IronPerformanceModelOutputs: """ Outputs from the iron performance model. @@ -96,10 +96,10 @@ def run_size_iron_plant_performance( model_outputs = model.main(config) performances_df = model_outputs - return IronPerformanceModelOutputs(performances_df) + return IronPerformanceModelOutputs(performances_df=performances_df) -@define +@define(kw_only=True) class IronCostModelConfig: """ Configuration inputs for the iron cost model. @@ -136,7 +136,7 @@ def __attrs_post_init__(self): self.model[fieldname] = False -@define +@define(kw_only=True) class IronCostModelOutputs: """ Outputs from the iron cost model. @@ -186,7 +186,7 @@ def run_iron_cost_model(config: IronCostModelConfig) -> IronCostModelOutputs: return IronCostModelOutputs(costs_df=model_outputs) -@define +@define(kw_only=True) class IronFinanceModelConfig(IronCostModelConfig): """ Configuration inputs for the iron finance model. @@ -227,7 +227,7 @@ def __attrs_post_init__(self): self.model[fieldname] = False -@define +@define(kw_only=True) class IronFinanceModelOutputs: """ Represents the outputs of the iron finance model, encapsulating the diff --git a/h2integrate/converters/iron/iron_mine.py b/h2integrate/converters/iron/iron_mine.py index 4a941af94..b6cca3e90 100644 --- a/h2integrate/converters/iron/iron_mine.py +++ b/h2integrate/converters/iron/iron_mine.py @@ -18,7 +18,7 @@ from h2integrate.converters.iron.rosner_ore.variable_om_cost import rosner_ore_variable_om_cost -@define +@define(kw_only=True) class IronMineBaseConfig(BaseConfig): mine: str = field(validator=contains(["Hibbing", "Northshore", "United", "Minorca", "Tilden"])) @@ -44,7 +44,7 @@ def make_site_dict(self): return {"name": self.mine} -@define +@define(kw_only=True) class IronMinePerformanceConfig(IronMineBaseConfig): ore_cf_estimate: float = field(default=0.9, validator=range_val(0, 1)) # ore @@ -97,7 +97,7 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): outputs["total_iron_ore_produced"] = ore_produced_mtpy -@define +@define(kw_only=True) class IronMineCostConfig(IronMineBaseConfig): LCOE: float = field(kw_only=True) # $/MWh LCOH: float = field(kw_only=True) # $/kg @@ -146,7 +146,9 @@ def setup(self): self.add_discrete_output("iron_mine_cost", val=pd.DataFrame, desc="iron mine cost results") def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - ore_performance = IronPerformanceModelOutputs(discrete_inputs["iron_mine_performance"]) + ore_performance = IronPerformanceModelOutputs( + performances_df=discrete_inputs["iron_mine_performance"] + ) ore_cost_inputs = { "lcoe": inputs["LCOE"][0] / 1e3, diff --git a/h2integrate/converters/iron/iron_plant.py b/h2integrate/converters/iron/iron_plant.py index 1fd52a1c8..dfe964f09 100644 --- a/h2integrate/converters/iron/iron_plant.py +++ b/h2integrate/converters/iron/iron_plant.py @@ -17,7 +17,7 @@ from h2integrate.converters.iron.load_top_down_coeffs import load_top_down_coeffs -@define +@define(kw_only=True) class IronPlantBaseConfig(BaseConfig): winning_type: str = field( kw_only=True, converter=(str.lower, str.strip), validator=contains(["h2", "ng"]) @@ -45,7 +45,7 @@ def make_site_dict(self): return {"name": self.site_name} -@define +@define(kw_only=True) class IronPlantPerformanceConfig(IronPlantBaseConfig): def make_model_dict(self): keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] @@ -99,7 +99,7 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): discrete_outputs["iron_plant_performance"] = iron_plant_performance.performances_df -@define +@define(kw_only=True) class IronPlantCostConfig(IronPlantBaseConfig): LCOE: float = field(kw_only=True) # $/MWh LCOH: float = field(kw_only=True) # $/kg @@ -159,7 +159,7 @@ def setup(self): def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): iron_plant_performance = IronPerformanceModelOutputs( - discrete_inputs["iron_plant_performance"] + performances_df=discrete_inputs["iron_plant_performance"] ) iron_plant_cost_inputs = { diff --git a/h2integrate/converters/iron/iron_transport.py b/h2integrate/converters/iron/iron_transport.py index 9f248e9a7..be72e2568 100644 --- a/h2integrate/converters/iron/iron_transport.py +++ b/h2integrate/converters/iron/iron_transport.py @@ -11,7 +11,7 @@ from h2integrate.converters.iron.load_top_down_coeffs import load_top_down_coeffs -@define +@define(kw_only=True) class IronTransportPerformanceConfig(BaseConfig): find_closest_ship_site: bool = field() shipment_site: str = field( @@ -154,7 +154,7 @@ def compute(self, inputs, outputs): outputs["water_transport_distance"] = water_distance_km -@define +@define(kw_only=True) class IronTransportCostConfig(BaseConfig): transport_year: int = field(converter=int, validator=range_val(2022, 2065)) cost_year: int = field(converter=int, validator=range_val(2010, 2024)) diff --git a/h2integrate/converters/iron/iron_wrapper.py b/h2integrate/converters/iron/iron_wrapper.py index 48546707f..067d26279 100644 --- a/h2integrate/converters/iron/iron_wrapper.py +++ b/h2integrate/converters/iron/iron_wrapper.py @@ -12,7 +12,7 @@ from h2integrate.converters.iron.martin_transport.iron_transport import calc_iron_ship_cost -@define +@define(kw_only=True) class IronConfig(CostModelBaseConfig): """Configuration class for IronComponent. diff --git a/h2integrate/converters/iron/martin_mine_cost_model.py b/h2integrate/converters/iron/martin_mine_cost_model.py index ba1d2aa9e..da6594bca 100644 --- a/h2integrate/converters/iron/martin_mine_cost_model.py +++ b/h2integrate/converters/iron/martin_mine_cost_model.py @@ -11,7 +11,7 @@ from h2integrate.tools.inflation.inflate import inflate_cpi -@define +@define(kw_only=True) class MartinIronMineCostConfig(BaseConfig): """Configuration class for MartinIronMineCostComponent. diff --git a/h2integrate/converters/iron/martin_mine_perf_model.py b/h2integrate/converters/iron/martin_mine_perf_model.py index 83e498ff9..d39bf17ae 100644 --- a/h2integrate/converters/iron/martin_mine_perf_model.py +++ b/h2integrate/converters/iron/martin_mine_perf_model.py @@ -9,7 +9,7 @@ from h2integrate.core.validators import contains -@define +@define(kw_only=True) class MartinIronMinePerformanceConfig(BaseConfig): """Configuration class for MartinIronMinePerformanceComponent. diff --git a/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml b/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml index 7b5b3c1b5..372226d1f 100644 --- a/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml +++ b/h2integrate/converters/iron/old_input/h2integrate_config_modular.yaml @@ -55,10 +55,7 @@ finance_parameters: wind: expected_plant_cost: 'none' electrolyzer: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" rating: 1160 # MW cluster_rating_MW: 40 eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol diff --git a/h2integrate/converters/methanol/co2h_methanol_plant.py b/h2integrate/converters/methanol/co2h_methanol_plant.py index e8ca0f28a..eb7d817bf 100644 --- a/h2integrate/converters/methanol/co2h_methanol_plant.py +++ b/h2integrate/converters/methanol/co2h_methanol_plant.py @@ -13,7 +13,7 @@ ) -@define +@define(kw_only=True) class CO2HPerformanceConfig(MethanolPerformanceConfig): meoh_syn_cat_consume_ratio: float = field() ng_consume_ratio: float = field() @@ -122,7 +122,7 @@ def compute(self, inputs, outputs): outputs["electricity_consume"] = meoh_prod * elec_ratio -@define +@define(kw_only=True) class CO2HCostConfig(MethanolCostConfig): ng_lhv: float = field() meoh_syn_cat_price: float = field() diff --git a/h2integrate/converters/methanol/methanol_baseclass.py b/h2integrate/converters/methanol/methanol_baseclass.py index fe0a03557..99bd94f6d 100644 --- a/h2integrate/converters/methanol/methanol_baseclass.py +++ b/h2integrate/converters/methanol/methanol_baseclass.py @@ -6,7 +6,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class MethanolPerformanceConfig(BaseConfig): plant_capacity_kgpy: float = field() plant_capacity_flow: str = field(validator=contains(["hydrogen", "methanol"])) @@ -52,7 +52,7 @@ def setup(self): self.add_output("h2o_consumption", units="kg/h", shape=n_timesteps) -@define +@define(kw_only=True) class MethanolCostConfig(BaseConfig): plant_capacity_kgpy: float = field() plant_capacity_flow: str = field(validator=contains(["hydrogen", "methanol"])) @@ -100,7 +100,7 @@ def setup(self): self.add_output("Variable_OpEx", units="USD/year") -@define +@define(kw_only=True) class MethanolFinanceConfig(BaseConfig): tasc_toc_multiplier: float = field() fixed_charge_rate: float = field() diff --git a/h2integrate/converters/methanol/smr_methanol_plant.py b/h2integrate/converters/methanol/smr_methanol_plant.py index 5a34a8acd..e30aec6eb 100644 --- a/h2integrate/converters/methanol/smr_methanol_plant.py +++ b/h2integrate/converters/methanol/smr_methanol_plant.py @@ -13,7 +13,7 @@ ) -@define +@define(kw_only=True) class SMRPerformanceConfig(MethanolPerformanceConfig): meoh_syn_cat_consume_ratio: float = field() meoh_atr_cat_consume_ratio: float = field() @@ -106,7 +106,7 @@ def compute(self, inputs, outputs): outputs["electricity_out"] = meoh_prod * elec_ratio -@define +@define(kw_only=True) class SMRCostConfig(MethanolCostConfig): ng_lhv: float = field() meoh_syn_cat_price: float = field() diff --git a/h2integrate/converters/natural_gas/natural_gas_cc_ct.py b/h2integrate/converters/natural_gas/natural_gas_cc_ct.py index efe0d6422..5e4f1c9cf 100644 --- a/h2integrate/converters/natural_gas/natural_gas_cc_ct.py +++ b/h2integrate/converters/natural_gas/natural_gas_cc_ct.py @@ -7,7 +7,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class NaturalGasPerformanceConfig(BaseConfig): """ Configuration class for natural gas plant performance model. @@ -160,7 +160,7 @@ def compute(self, inputs, outputs): outputs["natural_gas_consumed"] = natural_gas_consumed -@define +@define(kw_only=True) class NaturalGasCostModelConfig(CostModelBaseConfig): """ Configuration class for natural gas plant cost model. diff --git a/h2integrate/converters/nitrogen/simple_ASU.py b/h2integrate/converters/nitrogen/simple_ASU.py index cd02b87f3..fa67fa298 100644 --- a/h2integrate/converters/nitrogen/simple_ASU.py +++ b/h2integrate/converters/nitrogen/simple_ASU.py @@ -8,7 +8,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class SimpleASUPerformanceConfig(BaseConfig): """Configuration for ASU model. To represent a cryogenic ASU, it is recommended to set the parameter `efficiency_kWh_pr_kg_N2` to 0.119. @@ -263,7 +263,7 @@ def make_cost_unit_multiplier(unit_str): return conversion_multiplier, "mass" -@define +@define(kw_only=True) class SimpleASUCostConfig(CostModelBaseConfig): capex_usd_per_unit: float = field() diff --git a/h2integrate/converters/solar/atb_res_com_pv_cost.py b/h2integrate/converters/solar/atb_res_com_pv_cost.py index 54a3474bf..ab168beba 100644 --- a/h2integrate/converters/solar/atb_res_com_pv_cost.py +++ b/h2integrate/converters/solar/atb_res_com_pv_cost.py @@ -5,7 +5,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class ATBResComPVCostModelConfig(CostModelBaseConfig): """Configuration class for the ATBResComPVCostModel with costs based on DC capacity. Recommended to use with commercial or residential PV models. More information on diff --git a/h2integrate/converters/solar/atb_utility_pv_cost.py b/h2integrate/converters/solar/atb_utility_pv_cost.py index d68100d13..5405e89f9 100644 --- a/h2integrate/converters/solar/atb_utility_pv_cost.py +++ b/h2integrate/converters/solar/atb_utility_pv_cost.py @@ -5,7 +5,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class ATBUtilityPVCostModelConfig(CostModelBaseConfig): """Configuration class for the ATBUtilityPVCostModel with costs based on AC capacity. Recommended to use with utility-scale PV models. More information on diff --git a/h2integrate/converters/solar/solar_pysam.py b/h2integrate/converters/solar/solar_pysam.py index 3ba54b986..712cb6ddd 100644 --- a/h2integrate/converters/solar/solar_pysam.py +++ b/h2integrate/converters/solar/solar_pysam.py @@ -6,7 +6,7 @@ from h2integrate.converters.solar.solar_baseclass import SolarPerformanceBaseClass -@define +@define(kw_only=True) class PYSAMSolarPlantPerformanceModelDesignConfig(BaseConfig): """Configuration class for design parameters of the solar pv plant. PYSAMSolarPlantPerformanceModel which uses the Pvwattsv8 module diff --git a/h2integrate/converters/steel/electric_arc_furnance.py b/h2integrate/converters/steel/electric_arc_furnance.py index 137618379..86b79bd05 100644 --- a/h2integrate/converters/steel/electric_arc_furnance.py +++ b/h2integrate/converters/steel/electric_arc_furnance.py @@ -17,7 +17,7 @@ from h2integrate.converters.iron.load_top_down_coeffs import load_top_down_coeffs -@define +@define(kw_only=True) class EAFPlantBaseConfig(BaseConfig): eaf_type: str = field( kw_only=True, converter=(str.lower, str.strip), validator=contains(["h2", "ng"]) @@ -38,7 +38,7 @@ def make_site_dict(self): return {"name": self.site_name} -@define +@define(kw_only=True) class EAFPlantPerformanceConfig(EAFPlantBaseConfig): def make_model_dict(self): keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] @@ -88,7 +88,7 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): discrete_outputs["steel_plant_performance"] = iron_post_plant_performance.performances_df -@define +@define(kw_only=True) class EAFPlantCostConfig(EAFPlantBaseConfig): LCOE: float = field(kw_only=True) # $/MWh LCOH: float = field(kw_only=True) # $/kg @@ -147,7 +147,7 @@ def setup(self): def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): steel_plant_performance = IronPerformanceModelOutputs( - discrete_inputs["steel_plant_performance"] + performances_df=discrete_inputs["steel_plant_performance"] ) steel_plant_cost_inputs = { diff --git a/h2integrate/converters/steel/steel.py b/h2integrate/converters/steel/steel.py index 782e9fda8..c87f13759 100644 --- a/h2integrate/converters/steel/steel.py +++ b/h2integrate/converters/steel/steel.py @@ -9,7 +9,7 @@ ) -@define +@define(kw_only=True) class SteelPerformanceModelConfig(BaseConfig): plant_capacity_mtpy: float = field() capacity_factor: float = field() @@ -32,7 +32,7 @@ def compute(self, inputs, outputs): outputs["steel"] = steel_production_mtpy / len(inputs["electricity_in"]) -@define +@define(kw_only=True) class SteelCostAndFinancialModelConfig(BaseConfig): installation_time: int = field() inflation_rate: float = field() diff --git a/h2integrate/converters/water/desal/desalination.py b/h2integrate/converters/water/desal/desalination.py index b9e63df5d..d9d5c058e 100644 --- a/h2integrate/converters/water/desal/desalination.py +++ b/h2integrate/converters/water/desal/desalination.py @@ -8,7 +8,7 @@ ) -@define +@define(kw_only=True) class ReverseOsmosisPerformanceModelConfig(BaseConfig): """Configuration class for the ReverseOsmosisDesalinationPerformanceModel. @@ -100,7 +100,7 @@ def compute(self, inputs, outputs): outputs["footprint"] = desal_size_m2 -@define +@define(kw_only=True) class ReverseOsmosisCostModelConfig(CostModelBaseConfig): """Configuration class for the ReverseOsmosisDesalinationCostModel. diff --git a/h2integrate/converters/water_power/hydro_plant_run_of_river.py b/h2integrate/converters/water_power/hydro_plant_run_of_river.py index 2d3e5375f..4a5cc2f78 100644 --- a/h2integrate/converters/water_power/hydro_plant_run_of_river.py +++ b/h2integrate/converters/water_power/hydro_plant_run_of_river.py @@ -6,7 +6,7 @@ from h2integrate.converters.water_power.hydro_plant_baseclass import HydroPerformanceBaseClass -@define +@define(kw_only=True) class RunOfRiverHydroPerformanceConfig(BaseConfig): """Configuration class for the RunOfRiverHydroPerformanceComponent. This class defines the parameters for the run-of-river hydropower plant performance model. @@ -63,7 +63,7 @@ def compute(self, inputs, outputs): outputs["electricity_out"] = power_output -@define +@define(kw_only=True) class RunOfRiverHydroCostConfig(CostModelBaseConfig): """Configuration class for the RunOfRiverHydroCostComponent. This class defines the parameters for the run-of-river hydropower plant cost model. diff --git a/h2integrate/converters/wind/atb_wind_cost.py b/h2integrate/converters/wind/atb_wind_cost.py index 447a1b97a..b49da946d 100644 --- a/h2integrate/converters/wind/atb_wind_cost.py +++ b/h2integrate/converters/wind/atb_wind_cost.py @@ -5,7 +5,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class ATBWindPlantCostModelConfig(CostModelBaseConfig): """Configuration class for the ATBWindCostModel. Recommended to use with wind models (Land-Based, Offshore and Distributed diff --git a/h2integrate/converters/wind/layout/simple_grid_layout.py b/h2integrate/converters/wind/layout/simple_grid_layout.py index 6fc44c4ea..26d64af60 100644 --- a/h2integrate/converters/wind/layout/simple_grid_layout.py +++ b/h2integrate/converters/wind/layout/simple_grid_layout.py @@ -5,7 +5,7 @@ from h2integrate.core.validators import contains, gte_zero, range_val -@define +@define(kw_only=True) class BasicGridLayoutConfig(BaseConfig): """Configuration class for 'basicgrid' wind layout. diff --git a/h2integrate/converters/wind/wind_pysam.py b/h2integrate/converters/wind/wind_pysam.py index 9a05b9af3..db312f333 100644 --- a/h2integrate/converters/wind/wind_pysam.py +++ b/h2integrate/converters/wind/wind_pysam.py @@ -16,7 +16,7 @@ ) -@define +@define(kw_only=True) class PySAMPowerCurveCalculationInputs(BaseConfig): """Inputs for the ``calculate_powercurve()`` function in the PySAM Windpower module. The PySAM documentation of the inputs for this function can be found @@ -50,7 +50,7 @@ class PySAMPowerCurveCalculationInputs(BaseConfig): ) -@define +@define(kw_only=True) class PYSAMWindPlantPerformanceModelConfig(BaseConfig): """Configuration class for PYSAMWindPlantPerformanceModel. diff --git a/h2integrate/core/feedstocks.py b/h2integrate/core/feedstocks.py index 33a6a76d9..d8129d999 100644 --- a/h2integrate/core/feedstocks.py +++ b/h2integrate/core/feedstocks.py @@ -6,7 +6,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class FeedstockPerformanceConfig(BaseConfig): """Config class for feedstock. @@ -44,7 +44,7 @@ def compute(self, inputs, outputs): outputs[f"{feedstock_type}_out"] = np.full(n_timesteps, self.config.rated_capacity) -@define +@define(kw_only=True) class FeedstockCostConfig(CostModelBaseConfig): """Config class for feedstock. diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index 3e58b847d..d95e5dbd5 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -1,6 +1,7 @@ import importlib.util import numpy as np +import networkx as nx import openmdao.api as om import matplotlib.pyplot as plt @@ -1124,15 +1125,20 @@ def connect_technologies(self): self.plant.options["auto_order"] = True - # Check if there are any connections FROM a finance group to ammonia - # This handles the case where LCOH is computed in the finance group and passed to ammonia + # Check if there are any loops in the technology interconnections + # If loops are present, add solvers to resolve the coupling + # Create a directed graph from the technology interconnections + G = nx.DiGraph() for connection in technology_interconnections: - if connection[0].startswith("finance_subgroup_") and connection[1] == "ammonia": - # If the connection is from a finance group, set solvers for the - # plant to resolve the coupling - self.plant.nonlinear_solver = om.NonlinearBlockGS() - self.plant.linear_solver = om.DirectSolver() - break + source = connection[0] + destination = connection[1] + G.add_edge(source, destination) + + # Check if there are any cycles (loops) in the graph + if list(nx.simple_cycles(G)): + # If cycles are found, set solvers for the plant to resolve the coupling + self.plant.nonlinear_solver = om.NonlinearBlockGS() + self.plant.linear_solver = om.DirectSolver() # initialize dispatch rules connection list tech_to_dispatch_connections = self.plant_config.get("tech_to_dispatch_connections", []) diff --git a/h2integrate/core/model_baseclasses.py b/h2integrate/core/model_baseclasses.py index 77a47aedf..d779fb694 100644 --- a/h2integrate/core/model_baseclasses.py +++ b/h2integrate/core/model_baseclasses.py @@ -45,3 +45,70 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): """ raise NotImplementedError("This method should be implemented in a subclass.") + + +class ResizeablePerformanceModelBaseClass(om.ExplicitComponent): + """Baseclass to be used for all resizeable performance models. The built-in inputs + are used by the performance models to resize themselves. + + These parameters are all set as attributes within the config class, which inherits from + h2integrate.core.utilities.ResizeablePerformanceModelBaseConfig + + Discrete Inputs: + - size_mode (str): The mode in which the component is sized. Options: + - "normal": The component size is taken from the tech_config. + - "resize_by_max_feedstock": The component size is calculated relative to the + maximum available amount of a certain feedstock or feedstocks + - "resize_by_max_commodity": The electrolyzer size is calculated relative to the + maximum amount of the commodity used by another tech + - flow_used_for_sizing (str): The feedstock/commodity flow used to determine the plant size + in "resize_by_max_feedstock" and "resize_by_max_commodity" modes + + Inputs: + - max_feedstock_ratio (float): The ratio of the max feedstock that can be consumed by + this component to the max feedstock available. + - max_commodity_ratio (float): The ratio of the max commodity that can be produced by + this component to the max commodity consumed by the downstream tech. + """ + + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + # Parse in sizing parameters + size_mode = self.config.size_mode + self.add_discrete_input("size_mode", val=size_mode) + + if size_mode not in ["normal", "resize_by_max_feedstock", "resize_by_max_commodity"]: + raise ValueError( + f"Sizing mode '{size_mode}' is not a valid sizing mode." + " Options are 'normal', 'resize_by_max_feedstock'," + "'resize_by_max_commodity'." + ) + + if size_mode != "normal": + if self.config.flow_used_for_sizing is not None: + size_flow = self.config.flow_used_for_sizing + self.add_discrete_input("flow_used_for_sizing", val=size_flow) + else: + raise ValueError( + "'flow_used_for_sizing' must be set when size_mode is " + "'resize_by_max_feedstock' or 'resize_by_max_commodity'" + ) + if size_mode == "resize_by_max_commodity": + comm_ratio = self.config.max_commodity_ratio + self.add_input("max_commodity_ratio", val=comm_ratio, units="unitless") + else: + feed_ratio = self.config.max_feedstock_ratio + self.add_input("max_feedstock_ratio", val=feed_ratio, units="unitless") + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + """ + Computation for the OM component. + + For a template class this is not implement and raises an error. + """ + + raise NotImplementedError("This method should be implemented in a subclass.") diff --git a/h2integrate/core/utilities.py b/h2integrate/core/utilities.py index 7d61eb986..755d67309 100644 --- a/h2integrate/core/utilities.py +++ b/h2integrate/core/utilities.py @@ -113,7 +113,7 @@ def merge_shared_inputs(config, input_type): return config["shared_parameters"] -@define +@define(kw_only=True) class BaseConfig: """ A Mixin class to allow for kwargs overloading when a data class doesn't @@ -173,11 +173,35 @@ def as_dict(self) -> dict: return attrs.asdict(self, filter=attr_filter, value_serializer=attr_serializer) -@define +@define(kw_only=True) class CostModelBaseConfig(BaseConfig): cost_year: int = field(converter=int) +@define(kw_only=True) +class ResizeablePerformanceModelBaseConfig(BaseConfig): + size_mode: str = field(default="normal") + flow_used_for_sizing: str | None = field(default=None) + max_feedstock_ratio: float = field(default=1.0) + max_commodity_ratio: float = field(default=1.0) + + def __attrs_post_init__(self): + """Validate sizing parameters after initialization.""" + valid_modes = ["normal", "resize_by_max_feedstock", "resize_by_max_commodity"] + if self.size_mode not in valid_modes: + raise ValueError( + f"Sizing mode '{self.size_mode}' is not a valid sizing mode. " + f"Options are {valid_modes}." + ) + + if self.size_mode != "normal": + if self.flow_used_for_sizing is None: + raise ValueError( + "'flow_used_for_sizing' must be set when size_mode is " + "'resize_by_max_feedstock' or 'resize_by_max_commodity'" + ) + + def attr_serializer(inst: type, field: Attribute, value: Any): if isinstance(value, np.ndarray): return value.tolist() diff --git a/h2integrate/finances/numpy_financial_npv.py b/h2integrate/finances/numpy_financial_npv.py index f3f50d42b..0db051ac8 100644 --- a/h2integrate/finances/numpy_financial_npv.py +++ b/h2integrate/finances/numpy_financial_npv.py @@ -10,7 +10,7 @@ from h2integrate.core.validators import gte_zero, range_val -@define +@define(kw_only=True) class NumpyFinancialNPVFinanceConfig(BaseConfig): """Configuration for NumpyFinancialNPVFinance. diff --git a/h2integrate/finances/profast_base.py b/h2integrate/finances/profast_base.py index ca2aa0f28..ccf04a6b7 100644 --- a/h2integrate/finances/profast_base.py +++ b/h2integrate/finances/profast_base.py @@ -123,7 +123,7 @@ def check_parameter_inputs(finance_params, plant_config): return fin_params -@define +@define(kw_only=True) class BasicProFASTParameterConfig(BaseConfig): """Configuration class for financial parameters used in ProFAST models. @@ -286,7 +286,7 @@ def as_dict(self) -> dict: return params -@define +@define(kw_only=True) class ProFASTDefaultCapitalItem(BaseConfig): """Default configuration for ProFAST capital cost items. @@ -324,7 +324,7 @@ def create_dict(self): return d -@define +@define(kw_only=True) class ProFASTDefaultFixedCost(BaseConfig): """Default configuration for ProFAST fixed operating costs. @@ -353,7 +353,7 @@ def create_dict(self): return self.as_dict() -@define +@define(kw_only=True) class ProFASTDefaultVariableCost(BaseConfig): """Default configuration for ProFAST variable costs. @@ -383,7 +383,7 @@ def create_dict(self): return self.as_dict() -@define +@define(kw_only=True) class ProFASTDefaultCoproduct(BaseConfig): """Default configuration for ProFAST coproduct settings. @@ -413,7 +413,7 @@ def create_dict(self): return self.as_dict() -@define +@define(kw_only=True) class ProFASTDefaultIncentive(BaseConfig): """Default configuration for ProFAST production-based incentives. @@ -523,12 +523,13 @@ def setup(self): # Add production input (CO2 capture or total commodity produced) if self.options["commodity_type"] == "co2": - self.add_input("co2_capture_kgpy", val=0.0, units="kg/year") + self.add_input("co2_capture_kgpy", val=0.0, units="kg/year", require_connection=True) else: self.add_input( f"total_{self.options['commodity_type']}_produced", - val=0.0, + val=-1.0, units=commodity_units, + require_connection=True, ) # Add inputs for CapEx, OpEx, and variable OpEx for each technology @@ -630,8 +631,6 @@ def populate_profast(self, inputs): else: capacity = float(inputs["co2_capture_kgpy"]) / 365.0 total_production = float(inputs["co2_capture_kgpy"]) - if capacity == 0.0: - raise ValueError("Capacity cannot be zero") # define profast parameters for capacity and utilization profast_params["capacity"] = capacity # TODO: update to actual daily capacity diff --git a/h2integrate/finances/test/test_finances.py b/h2integrate/finances/test/test_finances.py index 8c6ad251d..72fddba8d 100644 --- a/h2integrate/finances/test/test_finances.py +++ b/h2integrate/finances/test/test_finances.py @@ -80,6 +80,9 @@ def test_electrolyzer_refurb_results(self): driver_config=self.driver_config, commodity_type="hydrogen", ) + ivc = om.IndepVarComp() + ivc.add_output("total_hydrogen_produced", 4.0e5, units="kg/year") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.model.add_subsystem("comp", comp, promotes=["*"]) prob.setup() @@ -87,7 +90,6 @@ def test_electrolyzer_refurb_results(self): prob.set_val("capex_adjusted_electrolyzer", 1.0e7, units="USD") prob.set_val("opex_adjusted_electrolyzer", 1.0e4, units="USD/year") - prob.set_val("total_hydrogen_produced", 4.0e5, units="kg/year") prob.set_val("electrolyzer_time_until_replacement", 5.0e3, units="h") prob.run_model() @@ -112,6 +114,9 @@ def test_modified_lcoe_calc(self): driver_config=driver_config, commodity_type="electricity", ) + ivc = om.IndepVarComp() + ivc.add_output("total_electricity_produced", 2.0e7, units="kW*h/year") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.model.add_subsystem("comp", comp, promotes=["*"]) prob.setup() @@ -124,7 +129,6 @@ def test_modified_lcoe_calc(self): prob.set_val("opex_adjusted_h2_storage", 5.0e3, units="USD/year") prob.set_val("capex_adjusted_steel", 3.0e6, units="USD") prob.set_val("opex_adjusted_steel", 3.0e3, units="USD/year") - prob.set_val("total_electricity_produced", 2.0e7, units="kW*h/year") prob.set_val("electrolyzer_time_until_replacement", 80000.0, units="h") prob.run_model() @@ -155,6 +159,9 @@ def test_lcoe_with_selected_technologies(self): driver_config=driver_config, commodity_type="electricity", ) + ivc = om.IndepVarComp() + ivc.add_output("total_electricity_produced", 2.0e7, units="kW*h/year") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.model.add_subsystem("comp", comp, promotes=["*"]) prob.setup() @@ -167,7 +174,6 @@ def test_lcoe_with_selected_technologies(self): prob.set_val("opex_adjusted_h2_storage", 5.0e3, units="USD/year") prob.set_val("capex_adjusted_steel", 3.0e6, units="USD") prob.set_val("opex_adjusted_steel", 3.0e3, units="USD/year") - prob.set_val("total_electricity_produced", 2.0e7, units="kW*h/year") prob.set_val("electrolyzer_time_until_replacement", 80000.0, units="h") prob.run_model() @@ -284,6 +290,9 @@ def test_profast_config_provided(): driver_config=driver_config, commodity_type="hydrogen", ) + ivc = om.IndepVarComp() + ivc.add_output("total_hydrogen_produced", 4.0e5, units="kg/year") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.model.add_subsystem("comp", comp, promotes=["*"]) prob.setup() @@ -291,7 +300,6 @@ def test_profast_config_provided(): prob.set_val("capex_adjusted_electrolyzer", 1.0e7, units="USD") prob.set_val("opex_adjusted_electrolyzer", 1.0e4, units="USD/year") - prob.set_val("total_hydrogen_produced", 4.0e5, units="kg/year") prob.set_val("electrolyzer_time_until_replacement", 5.0e3, units="h") prob.run_model() diff --git a/h2integrate/finances/test/test_profast_finance.py b/h2integrate/finances/test/test_profast_finance.py index 3c1485795..2a3a76906 100644 --- a/h2integrate/finances/test/test_profast_finance.py +++ b/h2integrate/finances/test/test_profast_finance.py @@ -75,9 +75,11 @@ def test_profast_comp(profast_inputs_no1, fake_filtered_tech_config, fake_cost_d commodity_type="electricity", description="no1", ) - prob.model.add_subsystem("pf", pf) + ivc = om.IndepVarComp() + ivc.add_output("total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + prob.model.add_subsystem("pf", pf, promotes=["total_electricity_produced"]) prob.setup() - prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") for variable, cost in fake_cost_dict.items(): units = "USD" if "capex" in variable else "USD/year" prob.set_val(f"pf.{variable}", cost, units=units) @@ -142,9 +144,11 @@ def test_profast_comp_coproduct( commodity_type="electricity", description="no1", ) - prob.model.add_subsystem("pf", pf) + ivc = om.IndepVarComp() + ivc.add_output("total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + prob.model.add_subsystem("pf", pf, promotes=["total_electricity_produced"]) prob.setup() - prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") for variable, cost in fake_cost_dict.items(): units = "USD" if "capex" in variable else "USD/year" prob.set_val(f"pf.{variable}", cost, units=units) diff --git a/h2integrate/finances/test/test_profast_npv.py b/h2integrate/finances/test/test_profast_npv.py index f18cf577d..f0760cbea 100644 --- a/h2integrate/finances/test/test_profast_npv.py +++ b/h2integrate/finances/test/test_profast_npv.py @@ -108,9 +108,11 @@ def test_profast_npv_no1(profast_inputs_no1, fake_filtered_tech_config, fake_cos commodity_type="electricity", description="no1", ) - prob.model.add_subsystem("pf", pf) + ivc = om.IndepVarComp() + ivc.add_output("total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + prob.model.add_subsystem("pf", pf, promotes=["total_electricity_produced"]) prob.setup() - prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") for variable, cost in fake_cost_dict.items(): units = "USD" if "capex" in variable else "USD/year" prob.set_val(f"pf.{variable}", cost, units=units) @@ -150,9 +152,8 @@ def test_profast_npv_no1_change_sell_price( commodity_type="electricity", description="no1", ) - prob.model.add_subsystem("pf", pf) - pf = ProFastNPV( + pf2 = ProFastNPV( driver_config={}, plant_config=plant_config, tech_config=fake_filtered_tech_config, @@ -160,17 +161,19 @@ def test_profast_npv_no1_change_sell_price( description="no1_expensive", ) - prob.model.add_subsystem("pf2", pf) + ivc = om.IndepVarComp() + ivc.add_output("total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + prob.model.add_subsystem("pf", pf, promotes=["total_electricity_produced"]) + prob.model.add_subsystem("pf2", pf2, promotes=["total_electricity_produced"]) prob.setup() # set inputs for 'pf' with commodity sell price of 0.04 USD/(kW*h) - prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") for variable, cost in fake_cost_dict.items(): units = "USD" if "capex" in variable else "USD/year" prob.set_val(f"pf.{variable}", cost, units=units) # set inputs for 'pf2' with commodity sell price of 0.07 USD/(kW*h) new_sell_price = 0.07 - prob.set_val("pf2.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") prob.set_val("pf2.sell_price_electricity_no1_expensive", new_sell_price, units="USD/(kW*h)") for variable, cost in fake_cost_dict.items(): units = "USD" if "capex" in variable else "USD/year" @@ -232,9 +235,11 @@ def test_profast_npv_no2(profast_inputs_no2, fake_filtered_tech_config, fake_cos commodity_type="electricity", description="no2", ) - prob.model.add_subsystem("pf", pf) + ivc = om.IndepVarComp() + ivc.add_output("total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") + prob.model.add_subsystem("ivc", ivc, promotes=["*"]) + prob.model.add_subsystem("pf", pf, promotes=["total_electricity_produced"]) prob.setup() - prob.set_val("pf.total_electricity_produced", mean_hourly_production * 8760, units="kW*h/year") for variable, cost in fake_cost_dict.items(): units = "USD" if "capex" in variable else "USD/year" prob.set_val(f"pf.{variable}", cost, units=units) diff --git a/h2integrate/resource/resource_base.py b/h2integrate/resource/resource_base.py index fb881bffe..9996bc686 100644 --- a/h2integrate/resource/resource_base.py +++ b/h2integrate/resource/resource_base.py @@ -9,7 +9,7 @@ from h2integrate.resource.utilities.download_tools import download_from_api -@define +@define(kw_only=True) class ResourceBaseAPIConfig(BaseConfig): """Base configuration class for resource data downloaded from an API. diff --git a/h2integrate/resource/river.py b/h2integrate/resource/river.py index 2a60366a6..a666a27fe 100644 --- a/h2integrate/resource/river.py +++ b/h2integrate/resource/river.py @@ -7,7 +7,7 @@ from h2integrate.core.utilities import BaseConfig -@define +@define(kw_only=True) class RiverResourceConfig(BaseConfig): filename: str | Path = field() diff --git a/h2integrate/resource/solar/nrel_developer_goes_api_models.py b/h2integrate/resource/solar/nrel_developer_goes_api_models.py index 80798359e..1beece719 100644 --- a/h2integrate/resource/solar/nrel_developer_goes_api_models.py +++ b/h2integrate/resource/solar/nrel_developer_goes_api_models.py @@ -7,7 +7,7 @@ from h2integrate.resource.solar.nrel_developer_api_base import NRELDeveloperAPISolarResourceBase -@define +@define(kw_only=True) class GOESAggregatedAPIConfig(ResourceBaseAPIConfig): """Configuration class to download solar resource data from `GOES Aggregated PSM v4 `_. @@ -52,7 +52,7 @@ def setup(self): super().setup() -@define +@define(kw_only=True) class GOESConusAPIConfig(ResourceBaseAPIConfig): """Configuration class to download solar resource data from `GOES Conus PSM v4 `_. @@ -100,7 +100,7 @@ def setup(self): super().setup() -@define +@define(kw_only=True) class GOESFullDiscAPIConfig(ResourceBaseAPIConfig): """Configuration class to download solar resource data from `GOES Full Disc PSM v4 `_. @@ -145,7 +145,7 @@ def setup(self): super().setup() -@define +@define(kw_only=True) class GOESTMYAPIConfig(ResourceBaseAPIConfig): """Configuration class to download solar resource data from `GOES Full Disc PSM v4 `_. diff --git a/h2integrate/resource/solar/nrel_developer_himawari_api_models.py b/h2integrate/resource/solar/nrel_developer_himawari_api_models.py index 2caf2127a..6ffc3cd74 100644 --- a/h2integrate/resource/solar/nrel_developer_himawari_api_models.py +++ b/h2integrate/resource/solar/nrel_developer_himawari_api_models.py @@ -7,7 +7,7 @@ from h2integrate.resource.solar.nrel_developer_api_base import NRELDeveloperAPISolarResourceBase -@define +@define(kw_only=True) class Himawari7SolarAPIConfig(ResourceBaseAPIConfig): """Configuration class to download solar resource data from `Himawari 2011-15: PSM v3 `_. @@ -53,7 +53,7 @@ def setup(self): super().setup() -@define +@define(kw_only=True) class Himawari8SolarAPIConfig(ResourceBaseAPIConfig): """Configuration class to download solar resource data from `Himawari 2016-2020: PSM v3 `_. @@ -99,7 +99,7 @@ def setup(self): super().setup() -@define +@define(kw_only=True) class HimawariTMYAPIConfig(ResourceBaseAPIConfig): """Configuration class to download solar resource data from `Himawari TMY: PSM v3 `_. diff --git a/h2integrate/resource/solar/nrel_developer_meteosat_prime_meridian_models.py b/h2integrate/resource/solar/nrel_developer_meteosat_prime_meridian_models.py index 43d82eef3..a553d71d3 100644 --- a/h2integrate/resource/solar/nrel_developer_meteosat_prime_meridian_models.py +++ b/h2integrate/resource/solar/nrel_developer_meteosat_prime_meridian_models.py @@ -7,7 +7,7 @@ from h2integrate.resource.solar.nrel_developer_api_base import NRELDeveloperAPISolarResourceBase -@define +@define(kw_only=True) class MeteosatPrimeMeridianAPIConfig(ResourceBaseAPIConfig): """Configuration class to download solar resource data from `Meteosat Prime Meridian PSM v4 `_. @@ -55,7 +55,7 @@ def setup(self): super().setup() -@define +@define(kw_only=True) class MeteosatPrimeMeridianTMYAPIConfig(ResourceBaseAPIConfig): """Configuration class to download solar resource data from `Meteosat Prime Meridian TMY: PSM v4 `_, diff --git a/h2integrate/resource/wind/nrel_developer_wtk_api.py b/h2integrate/resource/wind/nrel_developer_wtk_api.py index e2a480cc3..0b81328d7 100644 --- a/h2integrate/resource/wind/nrel_developer_wtk_api.py +++ b/h2integrate/resource/wind/nrel_developer_wtk_api.py @@ -13,7 +13,7 @@ ) -@define +@define(kw_only=True) class WTKNRELDeveloperAPIConfig(ResourceBaseAPIConfig): """Configuration class to download wind resource data from `Wind Toolkit Data V2 `_. diff --git a/h2integrate/resource/wind/openmeteo_wind.py b/h2integrate/resource/wind/openmeteo_wind.py index 16c9a886b..f8b5edac0 100644 --- a/h2integrate/resource/wind/openmeteo_wind.py +++ b/h2integrate/resource/wind/openmeteo_wind.py @@ -12,7 +12,7 @@ from h2integrate.resource.wind.wind_resource_base import WindResourceBaseAPIModel -@define +@define(kw_only=True) class OpenMeteoHistoricalWindAPIConfig(ResourceBaseAPIConfig): """Configuration class to download wind resource data from `Open-Meteo Weather API `_. diff --git a/h2integrate/storage/battery/atb_battery_cost.py b/h2integrate/storage/battery/atb_battery_cost.py index 88e68bc28..114599837 100644 --- a/h2integrate/storage/battery/atb_battery_cost.py +++ b/h2integrate/storage/battery/atb_battery_cost.py @@ -6,7 +6,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class ATBBatteryCostConfig(CostModelBaseConfig): """Configuration class for the ATBBatteryCostModel with costs based on storage capacity and charge rate. More information on ATB methodology and representative diff --git a/h2integrate/storage/battery/pysam_battery.py b/h2integrate/storage/battery/pysam_battery.py index eb518517b..6b1b551fd 100644 --- a/h2integrate/storage/battery/pysam_battery.py +++ b/h2integrate/storage/battery/pysam_battery.py @@ -68,7 +68,7 @@ def export(self): return asdict(self) -@define +@define(kw_only=True) class PySAMBatteryPerformanceModelConfig(BaseConfig): """Configuration class for battery performance models. diff --git a/h2integrate/storage/generic_storage_cost.py b/h2integrate/storage/generic_storage_cost.py index 2b94b3231..2e025cacf 100644 --- a/h2integrate/storage/generic_storage_cost.py +++ b/h2integrate/storage/generic_storage_cost.py @@ -5,7 +5,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class GenericStorageCostConfig(CostModelBaseConfig): """Configuration class for the GenericStorageCostModel with costs based on storage capacity and charge rate for any commodity. diff --git a/h2integrate/storage/hydrogen/h2_storage_cost.py b/h2integrate/storage/hydrogen/h2_storage_cost.py index e5e17867c..e9edd8543 100644 --- a/h2integrate/storage/hydrogen/h2_storage_cost.py +++ b/h2integrate/storage/hydrogen/h2_storage_cost.py @@ -8,7 +8,7 @@ from h2integrate.storage.hydrogen.h2_transport.h2_compression import Compressor -@define +@define(kw_only=True) class HydrogenStorageBaseCostModelConfig(BaseConfig): """Base config class for HydrogenStorageBaseCostModel diff --git a/h2integrate/storage/hydrogen/mch_storage.py b/h2integrate/storage/hydrogen/mch_storage.py index c149f2fba..a5007f8cd 100644 --- a/h2integrate/storage/hydrogen/mch_storage.py +++ b/h2integrate/storage/hydrogen/mch_storage.py @@ -7,7 +7,7 @@ from h2integrate.core.model_baseclasses import CostModelBaseClass -@define +@define(kw_only=True) class MCHTOLStorageCostModelConfig(BaseConfig): """Config class for MCHTOLStorageCostModel diff --git a/h2integrate/storage/hydrogen/tank_baseclass.py b/h2integrate/storage/hydrogen/tank_baseclass.py index dec89e4d9..ffbbc7a10 100644 --- a/h2integrate/storage/hydrogen/tank_baseclass.py +++ b/h2integrate/storage/hydrogen/tank_baseclass.py @@ -55,7 +55,7 @@ def compute(self, inputs, outputs): outputs["stored_hydrogen"] = initial_hydrogen + hydrogen_in - hydrogen_out -@define +@define(kw_only=True) class TankCostModelConfig(CostModelBaseConfig): total_capacity: float = field() diff --git a/h2integrate/storage/simple_generic_storage.py b/h2integrate/storage/simple_generic_storage.py index 9f885d971..2f8c7b73e 100644 --- a/h2integrate/storage/simple_generic_storage.py +++ b/h2integrate/storage/simple_generic_storage.py @@ -4,7 +4,7 @@ from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -@define +@define(kw_only=True) class SimpleGenericStorageConfig(BaseConfig): commodity_name: str = field() commodity_units: str = field() diff --git a/h2integrate/storage/simple_storage_auto_sizing.py b/h2integrate/storage/simple_storage_auto_sizing.py index 675a19e92..a16cb070a 100644 --- a/h2integrate/storage/simple_storage_auto_sizing.py +++ b/h2integrate/storage/simple_storage_auto_sizing.py @@ -5,7 +5,7 @@ from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -@define +@define(kw_only=True) class StorageSizingModelConfig(BaseConfig): """Configuration class for the StorageAutoSizingModel. diff --git a/h2integrate/tools/test/test_inputs.csv b/h2integrate/tools/test/test_inputs.csv index 8194d3a11..7323ea18a 100644 --- a/h2integrate/tools/test/test_inputs.csv +++ b/h2integrate/tools/test/test_inputs.csv @@ -2,4 +2,3 @@ Index 0,Index 1,Index 2,Index 3,Index 4,Index 5,Type,Float Test,Int Test,Bool Te technologies,solar,model_inputs,performance_parameters,pv_capacity_kWdc,,float,100000.,150000.,150000.,150000. technologies,electrolyzer,model_inputs,performance_parameters,n_clusters,,int,18,20,18,18 technologies,electrolyzer,model_inputs,performance_parameters,include_degradation_penalty,,bool,TRUE,TRUE,FALSE,TRUE -technologies,electrolyzer,model_inputs,performance_parameters,sizing,size_for,str,BOL,BOL,BOL,EOL diff --git a/h2integrate/transporters/cable.py b/h2integrate/transporters/cable.py index cd25dcfe6..5b369367b 100644 --- a/h2integrate/transporters/cable.py +++ b/h2integrate/transporters/cable.py @@ -14,14 +14,14 @@ def setup(self): self.output_name = self.options["transport_item"] + "_out" self.add_input( self.input_name, - val=0.0, + val=-1.0, shape_by_conn=True, copy_shape=self.output_name, units="kW", ) self.add_output( self.output_name, - val=0.0, + val=-1.0, shape_by_conn=True, copy_shape=self.input_name, units="kW", diff --git a/h2integrate/transporters/generic_combiner.py b/h2integrate/transporters/generic_combiner.py index 72a8218ce..221368350 100644 --- a/h2integrate/transporters/generic_combiner.py +++ b/h2integrate/transporters/generic_combiner.py @@ -4,7 +4,7 @@ from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -@define +@define(kw_only=True) class GenericCombinerPerformanceConfig(BaseConfig): """Configuration class for a generic combiner. diff --git a/h2integrate/transporters/generic_splitter.py b/h2integrate/transporters/generic_splitter.py index 513dcf288..a1259fa38 100644 --- a/h2integrate/transporters/generic_splitter.py +++ b/h2integrate/transporters/generic_splitter.py @@ -6,7 +6,7 @@ from h2integrate.core.validators import contains, range_val_or_none -@define +@define(kw_only=True) class GenericSplitterPerformanceConfig(BaseConfig): """Configuration class for the GenericSplitterPerformanceModel. diff --git a/h2integrate/transporters/generic_summer.py b/h2integrate/transporters/generic_summer.py index 7976b6c5d..6926b1670 100644 --- a/h2integrate/transporters/generic_summer.py +++ b/h2integrate/transporters/generic_summer.py @@ -5,7 +5,7 @@ from h2integrate.core.validators import contains -@define +@define(kw_only=True) class GenericSummerPerformanceConfig(BaseConfig): """Configuration class for a generic summer for commodities or feedstocks. diff --git a/h2integrate/transporters/pipe.py b/h2integrate/transporters/pipe.py index 524e68622..75b6f338b 100644 --- a/h2integrate/transporters/pipe.py +++ b/h2integrate/transporters/pipe.py @@ -34,14 +34,14 @@ def setup(self): self.add_input( self.input_name, - val=0.0, + val=-1.0, shape_by_conn=True, copy_shape=self.output_name, units=units, ) self.add_output( self.output_name, - val=0.0, + val=-1.0, shape_by_conn=True, copy_shape=self.input_name, units=units, diff --git a/tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml b/tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml index e080e847b..6542880d5 100644 --- a/tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml +++ b/tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml @@ -55,10 +55,7 @@ finance_parameters: wind: expected_plant_cost: 'none' electrolyzer: - sizing: - resize_for_enduse: False - size_for: 'BOL' #'BOL' (generous) or 'EOL' (conservative) - hydrogen_dmd: + size_mode: "normal" rating: 1160 # MW cluster_rating_MW: 40 eol_eff_percent_loss: 13 #eol defined as x% change in efficiency from bol From 3a25e3fb12ae7106de4eb5874c5b566e531956e2 Mon Sep 17 00:00:00 2001 From: John Jasa Date: Wed, 17 Dec 2025 13:21:44 -0600 Subject: [PATCH 78/79] Moved last of the high-level tests (#412) * Move h2 compressor test * Moved iron tests * Removed defunct files in tests * Moved test all examples * Removed last test folder at high level * Reverted rosner cost coeffs * Updated changelog * Added back conftest * Fixed test folder naming * Added back init file * Moved test --- CHANGELOG.md | 1 + .../test}/test_all_examples.py | 0 .../iron/test}/input/default_fin_config.yaml | 0 .../input/h2integrate_config_modular.yaml | 0 .../iron/test}/input/hopp_config.yaml | 0 .../converters/iron/test}/test_iron_ore.py | 0 .../converters/iron/test}/test_iron_post.py | 0 .../converters/iron/test}/test_iron_win.py | 0 .../hydrogen/test}/test_h2_compressor.py | 0 test/__init__.py | 0 {tests => test}/conftest.py | 0 tests/__init__.py | 3 - .../floris/floris_input_osw_18MW.yaml | 118 - .../input_files/plant/default_fin_config.yaml | 39 - .../input_files/plant/hopp_config.yaml | 51 - .../plant/hopp_config_wind_wave.yaml | 83 - .../plant/hopp_config_wind_wave_solar.yaml | 88 - .../hopp_config_wind_wave_solar_battery.yaml | 105 - .../plant/orbit-config-osw_18MW-stripped.yaml | 68 - .../input_files/turbines/osw_18MW.yaml | 204 - tests/h2integrate/inputs/floris_input.yaml | 241 - tests/h2integrate/inputs/hopp_config.yaml | 47 - .../input_files/GS_gridonly_power_signal.csv | 8761 ----------------- .../input_files/GS_offgrid_power_signal.csv | 8761 ----------------- 24 files changed, 1 insertion(+), 18569 deletions(-) rename {tests/h2integrate => examples/test}/test_all_examples.py (100%) rename {tests/h2integrate/test_iron => h2integrate/converters/iron/test}/input/default_fin_config.yaml (100%) rename {tests/h2integrate/test_iron => h2integrate/converters/iron/test}/input/h2integrate_config_modular.yaml (100%) rename {tests/h2integrate/test_iron => h2integrate/converters/iron/test}/input/hopp_config.yaml (100%) rename {tests/h2integrate/test_iron => h2integrate/converters/iron/test}/test_iron_ore.py (100%) rename {tests/h2integrate/test_iron => h2integrate/converters/iron/test}/test_iron_post.py (100%) rename {tests/h2integrate/test_iron => h2integrate/converters/iron/test}/test_iron_win.py (100%) rename {tests/h2integrate/test_hydrogen/test_h2_transport => h2integrate/storage/hydrogen/test}/test_h2_compressor.py (100%) create mode 100644 test/__init__.py rename {tests => test}/conftest.py (100%) delete mode 100644 tests/__init__.py delete mode 100644 tests/h2integrate/input_files/floris/floris_input_osw_18MW.yaml delete mode 100644 tests/h2integrate/input_files/plant/default_fin_config.yaml delete mode 100644 tests/h2integrate/input_files/plant/hopp_config.yaml delete mode 100644 tests/h2integrate/input_files/plant/hopp_config_wind_wave.yaml delete mode 100644 tests/h2integrate/input_files/plant/hopp_config_wind_wave_solar.yaml delete mode 100644 tests/h2integrate/input_files/plant/hopp_config_wind_wave_solar_battery.yaml delete mode 100644 tests/h2integrate/input_files/plant/orbit-config-osw_18MW-stripped.yaml delete mode 100644 tests/h2integrate/input_files/turbines/osw_18MW.yaml delete mode 100644 tests/h2integrate/inputs/floris_input.yaml delete mode 100644 tests/h2integrate/inputs/hopp_config.yaml delete mode 100644 tests/h2integrate/test_hydrogen/input_files/GS_gridonly_power_signal.csv delete mode 100644 tests/h2integrate/test_hydrogen/input_files/GS_offgrid_power_signal.csv diff --git a/CHANGELOG.md b/CHANGELOG.md index bd1692258..95503f6e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ - Allow multiple instances of the same electricity producing technologies using prefix-based matching - Allow multiple instances of custom models in the same hybrid system - Removed a large portion of the old GreenHEART code that was no longer being used +- Moved high-level tests to the appropriate directory and removed defunct tests - Updated generic combiner to accept any number of inflow streams instead of just 2 ## 0.4.0 [October 1, 2025] diff --git a/tests/h2integrate/test_all_examples.py b/examples/test/test_all_examples.py similarity index 100% rename from tests/h2integrate/test_all_examples.py rename to examples/test/test_all_examples.py diff --git a/tests/h2integrate/test_iron/input/default_fin_config.yaml b/h2integrate/converters/iron/test/input/default_fin_config.yaml similarity index 100% rename from tests/h2integrate/test_iron/input/default_fin_config.yaml rename to h2integrate/converters/iron/test/input/default_fin_config.yaml diff --git a/tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml b/h2integrate/converters/iron/test/input/h2integrate_config_modular.yaml similarity index 100% rename from tests/h2integrate/test_iron/input/h2integrate_config_modular.yaml rename to h2integrate/converters/iron/test/input/h2integrate_config_modular.yaml diff --git a/tests/h2integrate/test_iron/input/hopp_config.yaml b/h2integrate/converters/iron/test/input/hopp_config.yaml similarity index 100% rename from tests/h2integrate/test_iron/input/hopp_config.yaml rename to h2integrate/converters/iron/test/input/hopp_config.yaml diff --git a/tests/h2integrate/test_iron/test_iron_ore.py b/h2integrate/converters/iron/test/test_iron_ore.py similarity index 100% rename from tests/h2integrate/test_iron/test_iron_ore.py rename to h2integrate/converters/iron/test/test_iron_ore.py diff --git a/tests/h2integrate/test_iron/test_iron_post.py b/h2integrate/converters/iron/test/test_iron_post.py similarity index 100% rename from tests/h2integrate/test_iron/test_iron_post.py rename to h2integrate/converters/iron/test/test_iron_post.py diff --git a/tests/h2integrate/test_iron/test_iron_win.py b/h2integrate/converters/iron/test/test_iron_win.py similarity index 100% rename from tests/h2integrate/test_iron/test_iron_win.py rename to h2integrate/converters/iron/test/test_iron_win.py diff --git a/tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_compressor.py b/h2integrate/storage/hydrogen/test/test_h2_compressor.py similarity index 100% rename from tests/h2integrate/test_hydrogen/test_h2_transport/test_h2_compressor.py rename to h2integrate/storage/hydrogen/test/test_h2_compressor.py diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/conftest.py b/test/conftest.py similarity index 100% rename from tests/conftest.py rename to test/conftest.py diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index 70e89bb10..000000000 --- a/tests/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from pathlib import Path - -TEST_ROOT_DIR = Path(__file__).parent diff --git a/tests/h2integrate/input_files/floris/floris_input_osw_18MW.yaml b/tests/h2integrate/input_files/floris/floris_input_osw_18MW.yaml deleted file mode 100644 index da6db011b..000000000 --- a/tests/h2integrate/input_files/floris/floris_input_osw_18MW.yaml +++ /dev/null @@ -1,118 +0,0 @@ -name: Gauss -description: Three turbines using Gauss model -floris_version: v3.0.0 - -logging: - console: - enable: false - level: WARNING - file: - enable: false - level: WARNING - -solver: - type: turbine_grid - turbine_grid_points: 1 - -flow_field: - air_density: 1.225 - reference_wind_height: -1 # -1 is code for use the hub height - turbulence_intensities: - - 0.06 - wind_directions: - - 270.0 - wind_shear: 0.33 - wind_speeds: - - 8.0 - wind_veer: 0.0 - -### -# Configure the turbine types and their placement within the wind farm. -farm: - - ### - # Coordinates for the turbine locations in the x-direction which is typically considered - # to be the streamwise direction (left, right) when the wind is out of the west. - # The order of the coordinates here corresponds to the index of the turbine in the primary - # data structures. - layout_x: - - 0.0 - - 630.0 - - 1260.0 - - 2000.0 - - 2200.0 - - 2400.0 - - ### - # Coordinates for the turbine locations in the y-direction which is typically considered - # to be the spanwise direction (up, down) when the wind is out of the west. - # The order of the coordinates here corresponds to the index of the turbine in the primary - # data structures. - layout_y: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - ### - # Listing of turbine types for placement at the x and y coordinates given above. - # The list length must be 1 or the same as ``layout_x`` and ``layout_y``. If it is a - # single value, all turbines are of the same type. Otherwise, the turbine type - # is mapped to the location at the same index in ``layout_x`` and ``layout_y``. - # The types can be either a name included in the turbine_library or - # a full definition of a wind turbine directly. - turbine_type: - - nrel_5MW - -wake: - model_strings: - combination_model: sosfs # TODO followup on why not using linear free-stream superposition? - ask Chris Bay and Gen S. - deflection_model: gauss - turbulence_model: crespo_hernandez - velocity_model: gauss - - enable_secondary_steering: false - enable_yaw_added_recovery: false - enable_active_wake_mixing: false - enable_transverse_velocities: false - - wake_deflection_parameters: - gauss: - ad: 0.0 - alpha: 0.58 - bd: 0.0 - beta: 0.077 - dm: 1.0 - ka: 0.38 - kb: 0.004 - jimenez: - ad: 0.0 - bd: 0.0 - kd: 0.05 - - wake_velocity_parameters: - cc: - a_s: 0.179367259 - b_s: 0.0118889215 - c_s1: 0.0563691592 - c_s2: 0.13290157 - a_f: 3.11 - b_f: -0.68 - c_f: 2.41 - alpha_mod: 1.0 - gauss: - alpha: 0.58 - beta: 0.077 - ka: 0.38 - kb: 0.004 - jensen: - we: 0.05 - - wake_turbulence_parameters: - crespo_hernandez: - initial: 0.1 - constant: 0.5 - ai: 0.8 - downstream: -0.32 diff --git a/tests/h2integrate/input_files/plant/default_fin_config.yaml b/tests/h2integrate/input_files/plant/default_fin_config.yaml deleted file mode 100644 index 07d0f438a..000000000 --- a/tests/h2integrate/input_files/plant/default_fin_config.yaml +++ /dev/null @@ -1,39 +0,0 @@ -battery_system: - batt_replacement_schedule_percent: [0] - batt_bank_replacement: [0] - batt_replacement_option: 0 - batt_computed_bank_capacity: 0 - batt_meter_position: 0 -system_costs: - om_fixed: [1] - om_production: [2] - om_capacity: [0] - om_batt_fixed_cost: 0 - om_batt_variable_cost: [0.75] - om_batt_capacity_cost: 0 - om_batt_replacement_cost: 0 - om_replacement_cost_escal: 0 -revenue: - ppa_price_input: [25] # cents/kWh - ppa_escalation: 2.5 # % -system_use_lifetime_output: 0 -financial_parameters: - inflation_rate: 2.5 - real_discount_rate: 6.4 - federal_tax_rate: 21.0 - state_tax_rate: 4.0 - property_tax_rate: 1.0 - insurance_rate: 0.5 - debt_percent: 68.5 - term_int_rate: 6.0 - months_working_reserve: 1 - analysis_start_year: 2025 - installation_months: 12 - sales_tax_rate_state: 4.5 - admin_expense_percent_of_sales: 1.0 - capital_gains_tax_rate: 15.0 - debt_type: "Revolving debt" - depreciation_method: "MACRS" - depreciation_period: 5 -cp_capacity_credit_percent: [0] -degradation: [0] diff --git a/tests/h2integrate/input_files/plant/hopp_config.yaml b/tests/h2integrate/input_files/plant/hopp_config.yaml deleted file mode 100644 index f136f7306..000000000 --- a/tests/h2integrate/input_files/plant/hopp_config.yaml +++ /dev/null @@ -1,51 +0,0 @@ -site: #!include flatirons_site.yaml - data: - lat: 27.18624 - lon: -96.9516 - elev: 0 - year: 2013 - site_boundaries: - verts: - - [0.0, 0.0] - - [0.0, 15000.0] - - [15000.0, 15000.0] - - [15000.0, 0.0] - verts_simple: - - [0.0, 0.0] - - [0.0, 15000.0] - - [15000.0, 15000.0] - - [15000.0, 0.0] - solar_resource_file: "" - wind_resource_file: "../../../../resource_files/wind/27.18624_-96.9516_windtoolkit_2013_60min_160m_200m.srw" - wave_resource_file: "" - grid_resource_file: "" - hub_height: 161.0 - capacity_hours: [] - solar: false - wind: true - wave: false - wind_resource_origin: "WTK" - - -technologies: - wind: - num_turbines: 10 - turbine_rating_kw: 18000.0 - model_name: floris - timestep: [0, 8760] - floris_config: input_files/floris/floris_input_osw_18MW.yaml - fin_model: !include default_fin_config.yaml - layout_mode: "floris_layout" - grid: - interconnect_kw: 180000 - fin_model: !include default_fin_config.yaml - -config: - simulation_options: - wind: - skip_financial: true - dispatch_options: - battery_dispatch: load_following_heuristic #heuristic - cost_info: - wind_installed_cost_mw: 3526000 # based on 2023 ATB moderate case for offshore wind - # wind_om_per_kw: 104.271 # based on 2023 ATB moderate case for offshore wind diff --git a/tests/h2integrate/input_files/plant/hopp_config_wind_wave.yaml b/tests/h2integrate/input_files/plant/hopp_config_wind_wave.yaml deleted file mode 100644 index c2ee5ebdf..000000000 --- a/tests/h2integrate/input_files/plant/hopp_config_wind_wave.yaml +++ /dev/null @@ -1,83 +0,0 @@ -site: #!include flatirons_site.yaml - data: - lat: 27.18624 - lon: -96.9516 - elev: 0 - year: 2013 - site_boundaries: - verts: - - [0.0, 0.0] - - [0.0, 2000.0] - - [2000.0, 2000.0] - - [2000.0, 0.0] - verts_simple: - - [0.0, 0.0] - - [0.0, 2000.0] - - [2000.0, 2000.0] - - [2000.0, 0.0] - solar_resource_file: "" - wind_resource_file: "../../../../resource_files/wind/27.18624_-96.9516_windtoolkit_2013_60min_160m_200m.srw" - wave_resource_file: "../../../../resource_files/wave/Wave_resource_timeseries.csv" - grid_resource_file: "" - hub_height: 161.0 - capacity_hours: [] - solar: false - wind: true - wave: true - wind_resource_origin: "WTK" - -technologies: - wind: - num_turbines: 10 - turbine_rating_kw: 18000.0 - model_name: floris - timestep: [0, 8760] - floris_config: input_files/floris/floris_input_osw_18MW.yaml - fin_model: !include default_fin_config.yaml - layout_mode: "floris_layout" - wave: - device_rating_kw: 286 - wave_power_matrix: - - [0.000000, 0.500000, 1.500000, 2.500000, 3.500000, 4.500000, 5.500000, 6.500000, 7.500000, 8.500000, 9.500000, 10.500000, 11.500000, 12.500000, 13.500000, 14.500000, 15.500000, 16.500000, 17.500000, 18.500000, 19.500000, 20.500000] - - [0.250000, 0.000000, 0.000000, 0.000000, 0.000000, 0.400000, 0.600000, 0.800000, 1.000000, 1.100000, 1.100000, 1.000000, 0.800000, 0.700000, 0.600000, 0.500000, 0.400000, 0.300000, 0.300000, 0.200000, 0.200000, 0.000000] - - [0.750000, 0.000000, 0.000000, 0.000000, 0.000000, 3.200000, 5.300000, 7.400000, 9.100000, 9.800000, 9.500000, 8.600000, 7.400000, 6.200000, 5.100000, 4.100000, 3.400000, 2.800000, 2.300000, 1.900000, 1.600000, 0.000000] - - [1.250000, 0.000000, 0.000000, 0.000000, 0.000000, 9.000000, 14.800000, 20.500000, 25.000000, 26.800000, 25.900000, 23.300000, 20.000000, 16.800000, 13.800000, 11.300000, 9.200000, 7.600000, 6.300000, 5.200000, 4.300000, 0.000000] - - [1.750000, 0.000000, 0.000000, 0.000000, 0.000000, 17.600000, 28.900000, 39.900000, 48.300000, 51.600000, 49.700000, 44.700000, 38.400000, 32.200000, 26.500000, 21.700000, 17.800000, 14.600000, 12.100000, 10.000000, 8.400000, 0.000000] - - [2.250000, 0.000000, 0.000000, 0.000000, 0.000000, 29.000000, 47.500000, 65.400000, 78.800000, 83.800000, 80.600000, 72.400000, 62.300000, 52.200000, 43.000000, 35.300000, 28.900000, 23.800000, 19.700000, 16.300000, 13.700000, 0.000000] - - [2.750000, 0.000000, 0.000000, 0.000000, 0.000000, 43.200000, 70.700000, 97.000000, 116.300000, 123.100000, 118.100000, 106.100000, 91.300000, 76.500000, 63.200000, 51.900000, 42.500000, 35.000000, 28.900000, 24.100000, 20.100000, 0.000000] - - [3.250000, 0.000000, 0.000000, 0.000000, 0.000000, 60.200000, 98.300000, 134.500000, 160.500000, 169.300000, 162.100000, 145.500000, 125.200000, 105.000000, 86.800000, 71.300000, 58.500000, 48.200000, 39.900000, 33.200000, 27.800000, 0.000000] - - [3.750000, 0.000000, 0.000000, 0.000000, 0.000000, 79.900000, 130.400000, 177.800000, 211.200000, 222.000000, 212.200000, 190.400000, 164.000000, 137.600000, 113.800000, 93.600000, 76.900000, 63.300000, 52.500000, 43.700000, 36.600000, 0.000000] - - [4.250000, 0.000000, 0.000000, 0.000000, 0.000000, 102.400000, 166.700000, 226.700000, 268.300000, 281.100000, 268.200000, 240.500000, 207.200000, 174.100000, 144.100000, 118.500000, 97.400000, 80.300000, 66.600000, 55.500000, 46.500000, 0.000000] - - [4.750000, 0.000000, 0.000000, 0.000000, 0.000000, 127.600000, 207.400000, 281.200000, 286.000000, 286.000000, 286.000000, 286.000000, 255.000000, 214.300000, 177.500000, 146.100000, 120.200000, 99.200000, 82.200000, 68.600000, 57.600000, 0.000000] - - [5.250000, 0.000000, 0.000000, 0.000000, 0.000000, 155.400000, 252.400000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 258.200000, 214.000000, 176.300000, 145.100000, 119.800000, 99.400000, 83.000000, 69.700000, 0.000000] - - [5.750000, 0.000000, 0.000000, 0.000000, 0.000000, 186.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 253.600000, 209.000000, 172.200000, 142.200000, 118.100000, 98.600000, 82.800000, 0.000000] - - [6.250000, 0.000000, 0.000000, 0.000000, 0.000000, 219.200000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 244.200000, 201.200000, 166.400000, 138.200000, 115.500000, 97.100000, 0.000000] - - [6.750000, 0.000000, 0.000000, 0.000000, 0.000000, 255.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 281.900000, 232.400000, 192.200000, 159.700000, 133.500000, 112.300000, 0.000000] - - [7.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 265.600000, 219.800000, 182.800000, 152.900000, 128.700000, 0.000000] - - [7.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 249.000000, 207.200000, 173.400000, 146.000000, 0.000000] - - [8.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 279.900000, 233.000000, 195.100000, 164.400000, 0.000000] - - [8.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 260.200000, 218.000000, 183.800000, 0.000000] - - [9.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 242.100000, 204.100000, 0.000000] - - [9.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 267.400000, 225.600000, 0.000000] - num_devices: 100 - cost_inputs: - reference_model_num: 3 - water_depth: 100 - distance_to_shore: 80 - number_rows: 10 - device_spacing: 600 - row_spacing: 600 - cable_system_overbuild: 20 - fin_model: !include default_fin_config.yaml - grid: - interconnect_kw: 222900 - fin_model: !include default_fin_config.yaml - -config: - simulation_options: - wind: - skip_financial: true - dispatch_options: - battery_dispatch: load_following_heuristic #heuristic - cost_info: - wind_installed_cost_mw: 3526000 # based on 2023 ATB moderate case for offshore wind diff --git a/tests/h2integrate/input_files/plant/hopp_config_wind_wave_solar.yaml b/tests/h2integrate/input_files/plant/hopp_config_wind_wave_solar.yaml deleted file mode 100644 index 20ad92d74..000000000 --- a/tests/h2integrate/input_files/plant/hopp_config_wind_wave_solar.yaml +++ /dev/null @@ -1,88 +0,0 @@ -site: #!include flatirons_site.yaml - data: - lat: 27.18624 - lon: -96.9516 - elev: 0 - year: 2013 - site_boundaries: - verts: - - [0.0, 0.0] - - [0.0, 2000.0] - - [2000.0, 2000.0] - - [2000.0, 0.0] - verts_simple: - - [0.0, 0.0] - - [0.0, 2000.0] - - [2000.0, 2000.0] - - [2000.0, 0.0] - solar_resource_file: "../../../../resource_files/solar/27.18624_-96.9516_psmv3_60_2013.csv" - wind_resource_file: "../../../../resource_files/wind/27.18624_-96.9516_windtoolkit_2013_60min_160m_200m.srw" - wave_resource_file: "../../../../resource_files/wave/Wave_resource_timeseries.csv" - grid_resource_file: "" - hub_height: 161.0 - capacity_hours: [] - solar: true - wind: true - wave: true - wind_resource_origin: "WTK" - -technologies: - wind: - num_turbines: 10 - turbine_rating_kw: 18000.0 - model_name: floris - timestep: [0, 8760] - floris_config: input_files/floris/floris_input_osw_18MW.yaml - fin_model: !include default_fin_config.yaml - layout_mode: "floris_layout" - wave: - device_rating_kw: 286 - wave_power_matrix: - - [0.000000, 0.500000, 1.500000, 2.500000, 3.500000, 4.500000, 5.500000, 6.500000, 7.500000, 8.500000, 9.500000, 10.500000, 11.500000, 12.500000, 13.500000, 14.500000, 15.500000, 16.500000, 17.500000, 18.500000, 19.500000, 20.500000] - - [0.250000, 0.000000, 0.000000, 0.000000, 0.000000, 0.400000, 0.600000, 0.800000, 1.000000, 1.100000, 1.100000, 1.000000, 0.800000, 0.700000, 0.600000, 0.500000, 0.400000, 0.300000, 0.300000, 0.200000, 0.200000, 0.000000] - - [0.750000, 0.000000, 0.000000, 0.000000, 0.000000, 3.200000, 5.300000, 7.400000, 9.100000, 9.800000, 9.500000, 8.600000, 7.400000, 6.200000, 5.100000, 4.100000, 3.400000, 2.800000, 2.300000, 1.900000, 1.600000, 0.000000] - - [1.250000, 0.000000, 0.000000, 0.000000, 0.000000, 9.000000, 14.800000, 20.500000, 25.000000, 26.800000, 25.900000, 23.300000, 20.000000, 16.800000, 13.800000, 11.300000, 9.200000, 7.600000, 6.300000, 5.200000, 4.300000, 0.000000] - - [1.750000, 0.000000, 0.000000, 0.000000, 0.000000, 17.600000, 28.900000, 39.900000, 48.300000, 51.600000, 49.700000, 44.700000, 38.400000, 32.200000, 26.500000, 21.700000, 17.800000, 14.600000, 12.100000, 10.000000, 8.400000, 0.000000] - - [2.250000, 0.000000, 0.000000, 0.000000, 0.000000, 29.000000, 47.500000, 65.400000, 78.800000, 83.800000, 80.600000, 72.400000, 62.300000, 52.200000, 43.000000, 35.300000, 28.900000, 23.800000, 19.700000, 16.300000, 13.700000, 0.000000] - - [2.750000, 0.000000, 0.000000, 0.000000, 0.000000, 43.200000, 70.700000, 97.000000, 116.300000, 123.100000, 118.100000, 106.100000, 91.300000, 76.500000, 63.200000, 51.900000, 42.500000, 35.000000, 28.900000, 24.100000, 20.100000, 0.000000] - - [3.250000, 0.000000, 0.000000, 0.000000, 0.000000, 60.200000, 98.300000, 134.500000, 160.500000, 169.300000, 162.100000, 145.500000, 125.200000, 105.000000, 86.800000, 71.300000, 58.500000, 48.200000, 39.900000, 33.200000, 27.800000, 0.000000] - - [3.750000, 0.000000, 0.000000, 0.000000, 0.000000, 79.900000, 130.400000, 177.800000, 211.200000, 222.000000, 212.200000, 190.400000, 164.000000, 137.600000, 113.800000, 93.600000, 76.900000, 63.300000, 52.500000, 43.700000, 36.600000, 0.000000] - - [4.250000, 0.000000, 0.000000, 0.000000, 0.000000, 102.400000, 166.700000, 226.700000, 268.300000, 281.100000, 268.200000, 240.500000, 207.200000, 174.100000, 144.100000, 118.500000, 97.400000, 80.300000, 66.600000, 55.500000, 46.500000, 0.000000] - - [4.750000, 0.000000, 0.000000, 0.000000, 0.000000, 127.600000, 207.400000, 281.200000, 286.000000, 286.000000, 286.000000, 286.000000, 255.000000, 214.300000, 177.500000, 146.100000, 120.200000, 99.200000, 82.200000, 68.600000, 57.600000, 0.000000] - - [5.250000, 0.000000, 0.000000, 0.000000, 0.000000, 155.400000, 252.400000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 258.200000, 214.000000, 176.300000, 145.100000, 119.800000, 99.400000, 83.000000, 69.700000, 0.000000] - - [5.750000, 0.000000, 0.000000, 0.000000, 0.000000, 186.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 253.600000, 209.000000, 172.200000, 142.200000, 118.100000, 98.600000, 82.800000, 0.000000] - - [6.250000, 0.000000, 0.000000, 0.000000, 0.000000, 219.200000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 244.200000, 201.200000, 166.400000, 138.200000, 115.500000, 97.100000, 0.000000] - - [6.750000, 0.000000, 0.000000, 0.000000, 0.000000, 255.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 281.900000, 232.400000, 192.200000, 159.700000, 133.500000, 112.300000, 0.000000] - - [7.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 265.600000, 219.800000, 182.800000, 152.900000, 128.700000, 0.000000] - - [7.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 249.000000, 207.200000, 173.400000, 146.000000, 0.000000] - - [8.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 279.900000, 233.000000, 195.100000, 164.400000, 0.000000] - - [8.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 260.200000, 218.000000, 183.800000, 0.000000] - - [9.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 242.100000, 204.100000, 0.000000] - - [9.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 267.400000, 225.600000, 0.000000] - num_devices: 100 - cost_inputs: - reference_model_num: 3 - water_depth: 100 - distance_to_shore: 2.5 # should be distance to platform in km - number_rows: 10 - device_spacing: 600 - row_spacing: 600 - cable_system_overbuild: 20 - fin_model: !include default_fin_config.yaml - pv: - system_capacity_kw: 1000 - dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - fin_model: !include default_fin_config.yaml - grid: - interconnect_kw: 222900 - fin_model: !include default_fin_config.yaml - -config: - simulation_options: - wind: - skip_financial: true - dispatch_options: - battery_dispatch: load_following_heuristic #heuristic - cost_info: - solar_installed_cost_mw: 1331353 # based on 2023 ATB moderate case for utility-scale pv - wind_installed_cost_mw: 3526000 # based on 2023 ATB moderate case for offshore wind diff --git a/tests/h2integrate/input_files/plant/hopp_config_wind_wave_solar_battery.yaml b/tests/h2integrate/input_files/plant/hopp_config_wind_wave_solar_battery.yaml deleted file mode 100644 index 89cde9f2d..000000000 --- a/tests/h2integrate/input_files/plant/hopp_config_wind_wave_solar_battery.yaml +++ /dev/null @@ -1,105 +0,0 @@ -site: #!include flatirons_site.yaml - data: - lat: 27.18624 - lon: -96.9516 - elev: 0 - year: 2013 - site_boundaries: - verts: - - [0.0, 0.0] - - [0.0, 20000.0] - - [20000.0, 20000.0] - - [20000.0, 0.0] - verts_simple: - - [0.0, 0.0] - - [0.0, 20000.0] - - [20000.0, 20000.0] - - [20000.0, 0.0] - solar_resource_file: "../../../../resource_files/solar/27.18624_-96.9516_psmv3_60_2013.csv" - wind_resource_file: "../../../../resource_files/wind/27.18624_-96.9516_windtoolkit_2013_60min_160m_200m.srw" - wave_resource_file: "../../../../resource_files/wave/Wave_resource_timeseries.csv" - grid_resource_file: "" - hub_height: 161.0 - capacity_hours: [] - solar: true - wind: true - wave: true - wind_resource_origin: "WTK" - -technologies: - wind: - num_turbines: 10 - turbine_rating_kw: 18000.0 - model_name: floris - timestep: [0, 8760] - floris_config: input_files/floris/floris_input_osw_18MW.yaml - fin_model: !include default_fin_config.yaml - layout_mode: "floris_layout" - wave: - device_rating_kw: 286 - wave_power_matrix: - - [0.000000, 0.500000, 1.500000, 2.500000, 3.500000, 4.500000, 5.500000, 6.500000, 7.500000, 8.500000, 9.500000, 10.500000, 11.500000, 12.500000, 13.500000, 14.500000, 15.500000, 16.500000, 17.500000, 18.500000, 19.500000, 20.500000] - - [0.250000, 0.000000, 0.000000, 0.000000, 0.000000, 0.400000, 0.600000, 0.800000, 1.000000, 1.100000, 1.100000, 1.000000, 0.800000, 0.700000, 0.600000, 0.500000, 0.400000, 0.300000, 0.300000, 0.200000, 0.200000, 0.000000] - - [0.750000, 0.000000, 0.000000, 0.000000, 0.000000, 3.200000, 5.300000, 7.400000, 9.100000, 9.800000, 9.500000, 8.600000, 7.400000, 6.200000, 5.100000, 4.100000, 3.400000, 2.800000, 2.300000, 1.900000, 1.600000, 0.000000] - - [1.250000, 0.000000, 0.000000, 0.000000, 0.000000, 9.000000, 14.800000, 20.500000, 25.000000, 26.800000, 25.900000, 23.300000, 20.000000, 16.800000, 13.800000, 11.300000, 9.200000, 7.600000, 6.300000, 5.200000, 4.300000, 0.000000] - - [1.750000, 0.000000, 0.000000, 0.000000, 0.000000, 17.600000, 28.900000, 39.900000, 48.300000, 51.600000, 49.700000, 44.700000, 38.400000, 32.200000, 26.500000, 21.700000, 17.800000, 14.600000, 12.100000, 10.000000, 8.400000, 0.000000] - - [2.250000, 0.000000, 0.000000, 0.000000, 0.000000, 29.000000, 47.500000, 65.400000, 78.800000, 83.800000, 80.600000, 72.400000, 62.300000, 52.200000, 43.000000, 35.300000, 28.900000, 23.800000, 19.700000, 16.300000, 13.700000, 0.000000] - - [2.750000, 0.000000, 0.000000, 0.000000, 0.000000, 43.200000, 70.700000, 97.000000, 116.300000, 123.100000, 118.100000, 106.100000, 91.300000, 76.500000, 63.200000, 51.900000, 42.500000, 35.000000, 28.900000, 24.100000, 20.100000, 0.000000] - - [3.250000, 0.000000, 0.000000, 0.000000, 0.000000, 60.200000, 98.300000, 134.500000, 160.500000, 169.300000, 162.100000, 145.500000, 125.200000, 105.000000, 86.800000, 71.300000, 58.500000, 48.200000, 39.900000, 33.200000, 27.800000, 0.000000] - - [3.750000, 0.000000, 0.000000, 0.000000, 0.000000, 79.900000, 130.400000, 177.800000, 211.200000, 222.000000, 212.200000, 190.400000, 164.000000, 137.600000, 113.800000, 93.600000, 76.900000, 63.300000, 52.500000, 43.700000, 36.600000, 0.000000] - - [4.250000, 0.000000, 0.000000, 0.000000, 0.000000, 102.400000, 166.700000, 226.700000, 268.300000, 281.100000, 268.200000, 240.500000, 207.200000, 174.100000, 144.100000, 118.500000, 97.400000, 80.300000, 66.600000, 55.500000, 46.500000, 0.000000] - - [4.750000, 0.000000, 0.000000, 0.000000, 0.000000, 127.600000, 207.400000, 281.200000, 286.000000, 286.000000, 286.000000, 286.000000, 255.000000, 214.300000, 177.500000, 146.100000, 120.200000, 99.200000, 82.200000, 68.600000, 57.600000, 0.000000] - - [5.250000, 0.000000, 0.000000, 0.000000, 0.000000, 155.400000, 252.400000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 258.200000, 214.000000, 176.300000, 145.100000, 119.800000, 99.400000, 83.000000, 69.700000, 0.000000] - - [5.750000, 0.000000, 0.000000, 0.000000, 0.000000, 186.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 253.600000, 209.000000, 172.200000, 142.200000, 118.100000, 98.600000, 82.800000, 0.000000] - - [6.250000, 0.000000, 0.000000, 0.000000, 0.000000, 219.200000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 244.200000, 201.200000, 166.400000, 138.200000, 115.500000, 97.100000, 0.000000] - - [6.750000, 0.000000, 0.000000, 0.000000, 0.000000, 255.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 281.900000, 232.400000, 192.200000, 159.700000, 133.500000, 112.300000, 0.000000] - - [7.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 265.600000, 219.800000, 182.800000, 152.900000, 128.700000, 0.000000] - - [7.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 249.000000, 207.200000, 173.400000, 146.000000, 0.000000] - - [8.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 279.900000, 233.000000, 195.100000, 164.400000, 0.000000] - - [8.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 260.200000, 218.000000, 183.800000, 0.000000] - - [9.250000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 242.100000, 204.100000, 0.000000] - - [9.750000, 0.000000, 0.000000, 0.000000, 0.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 286.000000, 267.400000, 225.600000, 0.000000] - num_devices: 100 - cost_inputs: - reference_model_num: 3 - water_depth: 100 - distance_to_shore: 2.5 # should be distance to platform in km - number_rows: 10 - device_spacing: 600 - row_spacing: 600 - cable_system_overbuild: 20 - fin_model: !include default_fin_config.yaml - pv: - system_capacity_kw: 1000 - dc_degradation: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - fin_model: !include default_fin_config.yaml - battery: - system_capacity_kwh: 4000 - system_capacity_kw: 1000 - minimum_SOC: 20.0 - maximum_SOC: 100.0 - initial_SOC: 90.0 - fin_model: !include default_fin_config.yaml - grid: - interconnect_kw: 2229000 - fin_model: !include default_fin_config.yaml - -config: - simulation_options: - wind: - skip_financial: true - dispatch_options: - battery_dispatch: load_following_heuristic - solver: cbc - n_look_ahead_periods: 48 - grid_charging: false - pv_charging_only: false - include_lifecycle_count: false - cost_info: - storage_installed_cost_mwh: 347000 # based on 2023 ATB moderate case for utility-scale battery energy costs - storage_installed_cost_mw: 329000 # based on 2023 ATB moderate case for utility-scale battery power costs - wind_installed_cost_mw: 3526000 # based on 2023 ATB moderate case for offshore wind - solar_installed_cost_mw: 1331353 # based on 2023 ATB moderate case for utility-scale pv - pv_om_per_kw: 21.496 - wind_om_per_kw: 104.271 - battery_om_per_kw: 42.888 diff --git a/tests/h2integrate/input_files/plant/orbit-config-osw_18MW-stripped.yaml b/tests/h2integrate/input_files/plant/orbit-config-osw_18MW-stripped.yaml deleted file mode 100644 index b684ca6f8..000000000 --- a/tests/h2integrate/input_files/plant/orbit-config-osw_18MW-stripped.yaml +++ /dev/null @@ -1,68 +0,0 @@ -turbine: "osw_18MW" -# atb_year: 2025 # as per discussions of operational by 2027. This also makes the estimates a little more conservative -# cost_year: 2022 # to match ATB -installation_availability: 0.7 # 30% downtime during installation to match ORCA -site: - area: 142 # km^2 - depth: 45 # m - this value is overridden by h2integrate config - distance: 80 # km - distance_to_landfall: 85 # km - mean_windspeed: False #8.45863584474886 # required input for ORBIT, provide desired mean wind speed or set to False to give ORBIT the mean wind speed from the lat/lon selection -plant: - capacity: 180 # MW - layout: grid - num_turbines: 10 # needs to be changed based on turbine model - this value is overridden by h2integrate config - row_spacing: 7 # rotor diameters # based on rule of thumb of 7D - this value is overridden by h2integrate config - substation_distance: 1 # from ORBIT/examples/configs/example_fixed_project.yaml - turbine_spacing: 7 # rotor diameters # original 10 - this value is overridden by h2integrate config -landfall: - interconnection_distance: 5 # km - trench_length: 4 # km -port: - monthly_rate: 2000000.0 # USD - sub_assembly_lines: 1 - turbine_assembly_cranes: 1 -# Vessels -array_cable_install_vessel: example_cable_lay_vessel # from ORBIT/examples/configs/example_fixed_project.yaml -export_cable_install_vessel: example_cable_lay_vessel # from ORBIT/examples/configs/example_fixed_project.yaml -export_cable_bury_vessel: example_cable_lay_vessel # from ORBIT/examples/configs/example_fixed_project.yaml -oss_install_vessel: example_heavy_lift_vessel # from ORBIT/examples/configs/example_fixed_project.yaml -spi_vessel: example_scour_protection_vessel # from ORBIT/examples/configs/example_fixed_project.yaml -wtiv: example_wtiv # from ORBIT/examples/configs/example_fixed_project.yaml -# Module Specific -OffshoreSubstationInstallation: - feeder: example_heavy_feeder # from ORBIT/examples/configs/example_fixed_project.yaml - num_feeders: 1 # from ORBIT/examples/configs/example_fixed_project.yaml -array_system_design: - cables: - - XLPE_630mm_66kV -export_system_design: - cables: HVDC_2000mm_320kV - percent_added_length: 0.0 -scour_protection_design: - cost_per_tonne: 40 - scour_protection_depth: 1 # ORBIT default -MonopileDesign: - monopile_steel_cost: 2250 #OSW - tp_steel_cost: 3230 #OSW -# Configured Phases -design_phases: -- ArraySystemDesign # from ORBIT/examples/configs/example_fixed_project.yaml -- MonopileDesign # from ORBIT/examples/configs/example_fixed_project.yaml -- ScourProtectionDesign # from ORBIT/examples/configs/example_fixed_project.yaml -- ElectricalDesign # new addition from Sophie Bradenkamp combined ExportSystemDesign and OffshoreSubstationDesign phases -install_phases: # these are hours into installation - ArrayCableInstallation: 0 # from ORBIT/examples/configs/example_fixed_project.yaml - ExportCableInstallation: 2000 # from ORBIT/examples/configs/example_fixed_project.yaml - MonopileInstallation: 0 # from ORBIT/examples/configs/example_fixed_project.yaml - # JacketInstallation: 0 # Jacket not ready yet in ORBIT - OffshoreSubstationInstallation: 0 # from ORBIT/examples/configs/example_fixed_project.yaml - ScourProtectionInstallation: 0 # from ORBIT/examples/configs/example_fixed_project.yaml - TurbineInstallation: 0 # from ORBIT/examples/configs/example_fixed_project.yaml -# Wind Project Inputs -project_parameters: - turbine_capex: 1300 # $USD turbine CAPEX only as per 2022 ATB https://atb.nrel.gov/electricity/2022/offshore_wind - opex_rate: 97 # $USD/kW/yr ATB 2022, OpEx based on R&D assumptions with a base year of 2022. - commissioning: 0.01 # ORBIT default - decommissioning: 0.15 # ORBIT default - # project_lifetime: 30 # 2022 ATB capital recovery period for offshore wind diff --git a/tests/h2integrate/input_files/turbines/osw_18MW.yaml b/tests/h2integrate/input_files/turbines/osw_18MW.yaml deleted file mode 100644 index be7230bd4..000000000 --- a/tests/h2integrate/input_files/turbines/osw_18MW.yaml +++ /dev/null @@ -1,204 +0,0 @@ -# [1] https://www.nrel.gov/docs/fy20osti/75698.pdf -# [2] https://github.com/IEAWindTask37/IEA-15-240-RWT/blob/97cf629a622270ed421de98abf99f4314044fcf2/Documentation/IEA-15-240-RWT_tabular.xlsx -# [3] https://github.com/NREL/floris/blob/main/floris/turbine_library/iea_15MW.yaml -# [4] https://www.sciencedirect.com/science/article/pii/S1364032122003811 -# [5] 10.1016/j.apenergy.2021.117189 -# Turbine is scaled from osw_15MW -turbine_type: 'osw_18MW' -rated_windspeed: 10.66 # m/s [2] -rotor_diameter: 265.36 # m scaled from 15MW -turbine_rating: 18.0 # MW -hub_height: 161.0 # m scaled from 15MW -TSR: 9.0 # [2] -operation_model: cosine-loss # [3] -tower: - deck_space: 78.5 # m^2 (old power-fit=10.2m diam) [4] - sections: 2 - type: Tower - length: 157 # m estimate - mass: 930.508 #t scaled from 15MW based on length - section_diameters: # m estimate - diameter for bottom and top - - 10.2 - - 6.7 # 8.833m at 67m height - section_heights: # m estimate - just bottom and top - - 0.0 - - 157.0 -nacelle: - deck_space: 281 # shields et al. [5] m^2 old [4] - type: Nacelle - mass: 1003 # shields et al. [5] t (old power-fit 1068) [4] -blade: - deck_space: 581 # shields et al. [5] m^2 (old length * root diam = 822) approx [4] - length: 128.5 # m estimate - type: Blade - mass: 91 # shields [5] # t (old power-fit 82.3) -power_thrust_table: - ref_air_density: 1.225 # [3] - ref_tilt: 6.0 # [3] - cosine_loss_exponent_yaw: 1.88 # [3] - cosine_loss_exponent_tilt: 1.88 # [3] - power: - - 0.0 - - 51.89812866 - - 355.335549 - - 738.35433 - - 1191.5092 - - 1702.657221 - - 2257.291446 - - 2838.905165 - - 3429.768457 - - 4011.457616 - - 4565.700477 - - 5074.81091 - - 5522.406384 - - 5896.645687 - - 6183.495679 - - 6374.064733 - - 6461.91924 - - 6479.592501 - - 6604.148228 - - 6838.961942 - - 7190.826094 - - 7669.490971 - - 8288.084487 - - 9063.370607 - - 10005.20457 - - 11134.18105 - - 12491.03547 - - 14108.73528 - - 16024.16395 - - 18216.98485 - - 18216.98636 - - 18216.94945 - - 18216.99607 - - 18216.98557 - - 18216.98492 - - 18216.92049 - - 18217.08293 - - 18217.04798 - - 18217.02839 - - 18217.01583 - - 18217.00705 - - 18217.00026 - - 18216.9948 - - 18216.99065 - - 18216.9877 - - 18216.98559 - - 18216.82862 - - 18216.98516 - - 18216.98706 - - 18216.98982 - - 18216.99332 - - 0.0 - - 0.0 - - - thrust_coefficient: - - 0.0 - - 0.80742173 - - 0.784655297 - - 0.781771245 - - 0.785377072 - - 0.788045584 - - 0.789922119 - - 0.790464625 - - 0.789868339 - - 0.788727582 - - 0.787359348 - - 0.785895402 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.778275899 - - 0.77176172 - - 0.747149663 - - 0.562338457 - - 0.463477777 - - 0.389083718 - - 0.329822385 - - 0.281465071 - - 0.241494345 - - 0.208180574 - - 0.180257568 - - 0.156747535 - - 0.136877529 - - 0.120026379 - - 0.105689427 - - 0.093453742 - - 0.082979637 - - 0.073986457 - - 0.066241166 - - 0.059552107 - - 0.053756866 - - 0.048721662 - - 0.044334197 - - 0.0 - - 0.0 - - wind_speed: - - 0.0 - - 3.0 - - 3.54953237 - - 4.067900771 - - 4.553906848 - - 5.006427063 - - 5.424415288 - - 5.806905228 - - 6.153012649 - - 6.461937428 - - 6.732965398 - - 6.965470002 - - 7.158913742 - - 7.312849418 - - 7.426921164 - - 7.500865272 - - 7.534510799 - - 7.541241633 - - 7.58833327 - - 7.675676842 - - 7.803070431 - - 7.970219531 - - 8.176737731 - - 8.422147605 - - 8.70588182 - - 9.027284445 - - 9.385612468 - - 9.780037514 - - 10.20964776 - - 10.65845809 - - 10.67345004 - - 11.17037214 - - 11.6992653 - - 12.25890683 - - 12.84800295 - - 13.46519181 - - 14.10904661 - - 14.77807889 - - 15.470742 - - 16.18543466 - - 16.92050464 - - 17.67425264 - - 18.44493615 - - 19.23077353 - - 20.02994808 - - 20.8406123 - - 21.66089211 - - 22.4888912 - - 23.32269542 - - 24.1603772 - - 25.0 - - 25.02 - - 50.0 diff --git a/tests/h2integrate/inputs/floris_input.yaml b/tests/h2integrate/inputs/floris_input.yaml deleted file mode 100644 index 40c6077b8..000000000 --- a/tests/h2integrate/inputs/floris_input.yaml +++ /dev/null @@ -1,241 +0,0 @@ - -### -# A name for this input file. -# This is not currently only for the user's reference. -name: GCH - -### -# A description of the contents of this input file. -# This is not currently only for the user's reference. -description: Three turbines using Gauss Curl Hybrid model - -### -# The earliest verion of FLORIS this input file supports. -# This is not currently only for the user's reference. -floris_version: v3.0.0 - -### -# Configure the logging level and where to show the logs. -logging: - - ### - # Settings for logging to the console (i.e. terminal). - console: - - ### - # Can be "true" or "false". - enable: true - - ### - # Set the severity to show output. Messages at this level or higher will be shown. - # Can be one of "CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG". - level: WARNING - - ### - # Settings for logging to a file. - file: - - ### - # Can be "true" or "false". - enable: false - - ### - # Set the severity to show output. Messages at this level or higher will be shown. - # Can be one of "CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG". - level: WARNING - -### -# Configure the solver for the type of simulation. -solver: - - ### - # Select the solver type. - # Can be one of: "turbine_grid", "flow_field_grid", "flow_field_planar_grid". - type: turbine_grid - - ### - # Options for the turbine type selected above. See the solver documentation for available parameters. - turbine_grid_points: 1 - -### -# Configure the turbine types and their placement within the wind farm. -farm: - - ### - # Coordinates for the turbine locations in the x-direction which is typically considered - # to be the streamwise direction (left, right) when the wind is out of the west. - # The order of the coordinates here corresponds to the index of the turbine in the primary - # data structures. - layout_x: - - 0.0 - - 630.0 - - 1260.0 - - 2000.0 - - 2200.0 - - 2400.0 - - ### - # Coordinates for the turbine locations in the y-direction which is typically considered - # to be the spanwise direction (up, down) when the wind is out of the west. - # The order of the coordinates here corresponds to the index of the turbine in the primary - # data structures. - layout_y: - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - 0.0 - - ### - # Listing of turbine types for placement at the x and y coordinates given above. - # The list length must be 1 or the same as ``layout_x`` and ``layout_y``. If it is a - # single value, all turbines are of the same type. Otherwise, the turbine type - # is mapped to the location at the same index in ``layout_x`` and ``layout_y``. - # The types can be either a name included in the turbine_library or - # a full definition of a wind turbine directly. - turbine_type: - - nrel_5MW - -### -# Configure the atmospheric conditions. -flow_field: - - ### - # Air density. - air_density: 1.225 - - ### - # The height to consider the "center" of the vertical wind speed profile - # due to shear. With a shear exponent not 1, the wind speed at this height - # will be the value given in ``wind_speeds``. Above and below this height, - # the wind speed will change according to the shear profile; see - # :py:meth:`.FlowField.initialize_velocity_field`. - # For farms consisting of one wind turbine type, use ``reference_wind_height: -1`` - # to use the hub height of the wind turbine definition. For multiple wind turbine - # types, the reference wind height must be given explicitly. - reference_wind_height: -1 - - ### - # The level of turbulence intensity level in the wind. - turbulence_intensities: - - 0.06 - - ### - # The wind directions to include in the simulation. - # 0 is north and 270 is west. - wind_directions: - - 270.0 - - ### - # The exponent used to model the wind shear profile; see - # :py:meth:`.FlowField.initialize_velocity_field`. - wind_shear: 0.12 - - ### - # The wind speeds to include in the simulation. - wind_speeds: - - 8.0 - - ### - # The wind veer as a constant value for all points in the grid. - wind_veer: 0.0 - -### -# Configure the wake model. -wake: - - ### - # Select the models to use for the simulation. - # See :py:mod:`~.wake` for a list - # of available models and their descriptions. - model_strings: - - ### - # Select the wake combination model. - combination_model: sosfs - - ### - # Select the wake deflection model. - deflection_model: gauss - - ### - # Select the wake turbulence model. - turbulence_model: crespo_hernandez - - ### - # Select the wake velocity deficit model. - velocity_model: gauss - - ### - # Can be "true" or "false". - enable_secondary_steering: true - - ### - # Can be "true" or "false". - enable_yaw_added_recovery: true - - ### - # Can be "true" or "fasle". - enable_active_wake_mixing: false - - ### - # Can be "true" or "false". - enable_transverse_velocities: true - - ### - # Configure the parameters for the wake deflection model - # selected above. - # Additional blocks can be provided for - # models that are not enabled, but the enabled model - # must have a corresponding parameter block. - wake_deflection_parameters: - gauss: - ad: 0.0 - alpha: 0.58 - bd: 0.0 - beta: 0.077 - dm: 1.0 - ka: 0.38 - kb: 0.004 - jimenez: - ad: 0.0 - bd: 0.0 - kd: 0.05 - - ### - # Configure the parameters for the wake velocity deficit model - # selected above. - # Additional blocks can be provided for - # models that are not enabled, but the enabled model - # must have a corresponding parameter block. - wake_velocity_parameters: - cc: - a_s: 0.179367259 - b_s: 0.0118889215 - c_s1: 0.0563691592 - c_s2: 0.13290157 - a_f: 3.11 - b_f: -0.68 - c_f: 2.41 - alpha_mod: 1.0 - gauss: - alpha: 0.58 - beta: 0.077 - ka: 0.38 - kb: 0.004 - jensen: - we: 0.05 - - ### - # Configure the parameters for the wake turbulence model - # selected above. - # Additional blocks can be provided for - # models that are not enabled, but the enabled model - # must have a corresponding parameter block. - wake_turbulence_parameters: - crespo_hernandez: - initial: 0.1 - constant: 0.5 - ai: 0.8 - downstream: -0.32 diff --git a/tests/h2integrate/inputs/hopp_config.yaml b/tests/h2integrate/inputs/hopp_config.yaml deleted file mode 100644 index 3c762bf0a..000000000 --- a/tests/h2integrate/inputs/hopp_config.yaml +++ /dev/null @@ -1,47 +0,0 @@ -site: #!include flatirons_site.yaml - data: - lat: 27.776985 # - lon: -97.267676 # - elev: 0 - year: 2014 # - site_boundaries: - verts: - - [0.0, 0.0] - - [0.0, 600.0] - - [600.0, 600.0] - - [600.0, 0.0] - urdb_label: "5ca4d1175457a39b23b3d45e" - solar_resource_file: "" - wind_resource_file: "" # - wave_resource_file: "" - grid_resource_file: "" - hub_height: 110.0 # - capacity_hours: [] - desired_schedule: [] - solar: false - wind: true - wave: false - wind_resource_origin: "WTK" - -technologies: - pv: - system_capacity_kw: 50000 # - # dc_degradation: [0] * 25 # - wind: - num_turbines: 6 # - turbine_rating_kw: 5000.0 # - model_name: floris # - timestep: [0, 8760] # - floris_config: "" # - layout_mode: "floris_layout" - # battery: - # system_capacity_kwh: 100 # - # system_capacity_kw: 100 # - grid: - interconnect_kw: 50000 # - ppa_price: 0.01 # - -config: - simulation_options: - wind: - skip_financial: true diff --git a/tests/h2integrate/test_hydrogen/input_files/GS_gridonly_power_signal.csv b/tests/h2integrate/test_hydrogen/input_files/GS_gridonly_power_signal.csv deleted file mode 100644 index e9d5cb905..000000000 --- a/tests/h2integrate/test_hydrogen/input_files/GS_gridonly_power_signal.csv +++ /dev/null @@ -1,8761 +0,0 @@ -,combined_hybrid_power_production_hopp -0,422849.88080252585 -1,422850.58904050366 -2,422851.2972784814 -3,422852.00551645923 -4,422852.71375443705 -5,422853.42199241486 -6,422854.1302303926 -7,422854.8384683705 -8,422855.54670634825 -9,422856.25494432607 -10,422856.9631823039 -11,422857.67142028164 -12,422858.37965825945 -13,422859.0878962373 -14,422859.796134215 -15,422860.50437219284 -16,422861.2126101707 -17,422861.92084814847 -18,422862.6290861263 -19,422863.3373241041 -20,422864.04556208185 -21,422864.7538000597 -22,422865.4620380375 -23,422866.1702760153 -24,422866.8785139931 -25,422867.5867519709 -26,422868.2949899487 -27,422869.0032279265 -28,422869.7114659043 -29,422870.41970388213 -30,422871.1279418599 -31,422871.8361798377 -32,422872.5444178156 -33,422873.25265579333 -34,422873.9608937711 -35,422874.66913174896 -36,422875.37736972666 -37,422876.08560770453 -38,422876.79384568235 -39,422877.5020836601 -40,422878.21032163786 -41,422878.9185596158 -42,422879.62679759355 -43,422880.3350355713 -44,422881.0432735491 -45,422881.751511527 -46,422882.45974950475 -47,422883.16798748256 -48,422883.8762254603 -49,422884.5844634382 -50,422885.29270141595 -51,422886.00093939377 -52,422886.7091773715 -53,422887.4174153494 -54,422888.1256533272 -55,422888.83389130497 -56,422889.5421292827 -57,422890.25036726065 -58,422890.95860523835 -59,422891.66684321617 -60,422892.375081194 -61,422893.0833191718 -62,422893.7915571495 -63,422894.4997951274 -64,422895.2080331051 -65,422895.91627108294 -66,422896.62450906076 -67,422897.33274703857 -68,422898.0409850163 -69,422898.7492229942 -70,422899.45746097196 -71,422900.1656989498 -72,422900.8739369275 -73,422901.5821749054 -74,422902.29041288316 -75,422902.998650861 -76,422903.70688883873 -77,422904.41512681654 -78,422905.12336479436 -79,422905.8316027722 -80,422906.53984074993 -81,422907.24807872775 -82,422907.9563167056 -83,422908.6645546834 -84,422909.37279266113 -85,422910.081030639 -86,422910.7892686168 -87,422911.4975065946 -88,422912.2057445724 -89,422912.9139825502 -90,422913.622220528 -91,422914.33045850584 -92,422915.0386964836 -93,422915.7469344614 -94,422916.4551724392 -95,422917.16341041704 -96,422917.8716483948 -97,422918.5798863726 -98,422919.2881243504 -99,422919.99636232824 -100,422920.704600306 -101,422921.4128382838 -102,422922.1210762616 -103,422922.82931423944 -104,422923.53755221725 -105,422924.245790195 -106,422924.9540281728 -107,422925.6622661507 -108,422926.3705041284 -109,422927.0787421062 -110,422927.7869800841 -111,422928.49521806184 -112,422929.2034560396 -113,422929.9116940175 -114,422930.6199319953 -115,422931.32816997304 -116,422932.03640795086 -117,422932.7446459287 -118,422933.4528839065 -119,422934.1611218843 -120,422934.86935986206 -121,422935.5775978399 -122,422936.28583581763 -123,422936.9940737955 -124,422937.70231177326 -125,422938.4105497511 -126,422939.1187877288 -127,422939.8270257067 -128,422940.5352636844 -129,422941.24350166233 -130,422941.95173964003 -131,422942.65997761785 -132,422943.36821559566 -133,422944.0764535735 -134,422944.7846915512 -135,422945.4929295291 -136,422946.20116750686 -137,422946.9094054846 -138,422947.61764346244 -139,422948.3258814403 -140,422949.03411941807 -141,422949.7423573959 -142,422950.45059537364 -143,422951.1588333515 -144,422951.86707132927 -145,422952.5753093071 -146,422953.28354728484 -147,422953.9917852627 -148,422954.70002324047 -149,422955.4082612183 -150,422956.11649919604 -151,422956.8247371739 -152,422957.53297515167 -153,422958.2412131295 -154,422958.9494511073 -155,422959.6576890851 -156,422960.36592706287 -157,422961.07416504074 -158,422961.7824030185 -159,422962.4906409963 -160,422963.19887897413 -161,422963.90711695194 -162,422964.61535492964 -163,422965.3235929076 -164,422966.03183088533 -165,422966.7400688631 -166,422967.4483068409 -167,422968.1565448187 -168,422968.86478279653 -169,422969.57302077435 -170,422970.2812587521 -171,422970.9894967299 -172,422971.69773470773 -173,422972.40597268555 -174,422973.11421066336 -175,422973.8224486411 -176,422974.530686619 -177,422975.2389245968 -178,422975.9471625745 -179,422976.6554005524 -180,422977.3636385302 -181,422978.07187650795 -182,422978.78011448577 -183,422979.4883524636 -184,422980.19659044134 -185,422980.9048284192 -186,422981.61306639697 -187,422982.3213043747 -188,422983.0295423526 -189,422983.7377803304 -190,422984.44601830817 -191,422985.154256286 -192,422985.86249426374 -193,422986.5707322416 -194,422987.2789702193 -195,422987.9872081971 -196,422988.69544617494 -197,422989.40368415276 -198,422990.1119221305 -199,422990.8201601084 -200,422991.52839808614 -201,422992.23663606396 -202,422992.9448740418 -203,422993.6531120195 -204,422994.3613499974 -205,422995.0695879752 -206,422995.7778259529 -207,422996.4860639308 -208,422997.19430190854 -209,422997.90253988636 -210,422998.6107778642 -211,422999.319015842 -212,423000.02725381975 -213,423000.7354917976 -214,423001.4437297754 -215,423002.1519677532 -216,423002.86020573095 -217,423003.5684437088 -218,423004.27668168664 -219,423004.9849196644 -220,423005.69315764215 -221,423006.4013956201 -222,423007.1096335978 -223,423007.8178715756 -224,423008.5261095534 -225,423009.2343475312 -226,423009.94258550904 -227,423010.65082348685 -228,423011.35906146455 -229,423012.0672994425 -230,423012.77553742024 -231,423013.483775398 -232,423014.1920133758 -233,423014.9002513537 -234,423015.6084893314 -235,423016.31672730925 -236,423017.024965287 -237,423017.7332032648 -238,423018.44144124264 -239,423019.14967922046 -240,423019.8579171982 -241,423020.5661551761 -242,423021.27439315384 -243,423021.98263113166 -244,423022.6908691094 -245,423023.3991070873 -246,423024.1073450651 -247,423024.81558304286 -248,423025.5238210206 -249,423026.23205899855 -250,423026.94029697625 -251,423027.6485349541 -252,423028.3567729319 -253,423029.06501090963 -254,423029.7732488875 -255,423030.4814868653 -256,423031.189724843 -257,423031.8979628209 -258,423032.60620079865 -259,423033.31443877646 -260,423034.0226767542 -261,423034.73091473203 -262,423035.4391527099 -263,423036.14739068766 -264,423036.8556286654 -265,423037.5638666433 -266,423038.27210462105 -267,423038.98034259886 -268,423039.6885805767 -269,423040.39681855444 -270,423041.10505653225 -271,423041.8132945101 -272,423042.5215324879 -273,423043.22977046564 -274,423043.93800844357 -275,423044.64624642127 -276,423045.3544843991 -277,423046.0627223769 -278,423046.7709603547 -279,423047.4791983325 -280,423048.18743631034 -281,423048.89567428804 -282,423049.603912266 -283,423050.3121502437 -284,423051.0203882215 -285,423051.7286261993 -286,423052.4368641772 -287,423053.14510215493 -288,423053.85334013274 -289,423054.5615781105 -290,423055.2698160884 -291,423055.97805406613 -292,423056.68629204395 -293,423057.39453002176 -294,423058.1027679996 -295,423058.81100597733 -296,423059.5192439552 -297,423060.2274819329 -298,423060.9357199107 -299,423061.6439578886 -300,423062.35219586635 -301,423063.06043384416 -302,423063.768671822 -303,423064.47690979973 -304,423065.1851477776 -305,423065.89338575536 -306,423066.6016237332 -307,423067.309861711 -308,423068.0180996888 -309,423068.72633766657 -310,423069.4345756444 -311,423070.1428136222 -312,423070.8510516 -313,423071.55928957777 -314,423072.2675275556 -315,423072.97576553345 -316,423073.6840035112 -317,423074.39224148897 -318,423075.10047946684 -319,423075.8087174446 -320,423076.5169554224 -321,423077.2251934002 -322,423077.933431378 -323,423078.64166935574 -324,423079.3499073337 -325,423080.0581453113 -326,423080.7663832891 -327,423081.474621267 -328,423082.18285924476 -329,423082.8910972226 -330,423083.5993352004 -331,423084.3075731782 -332,423085.015811156 -333,423085.7240491338 -334,423086.4322871116 -335,423087.1405250894 -336,423087.8487630672 -337,423088.55700104503 -338,423089.2652390228 -339,423089.97347700055 -340,423090.6817149785 -341,423091.3899529562 -342,423092.098190934 -343,423092.8064289118 -344,423093.5146668896 -345,423094.2229048674 -346,423094.93114284525 -347,423095.639380823 -348,423096.3476188008 -349,423097.05585677864 -350,423097.76409475645 -351,423098.4723327342 -352,423099.1805707121 -353,423099.88880868984 -354,423100.59704666765 -355,423101.3052846454 -356,423102.0135226233 -357,423102.72176060104 -358,423103.42999857885 -359,423104.1382365566 -360,423104.8464745345 -361,423105.55471251224 -362,423106.26295049005 -363,423106.9711884678 -364,423107.6794264457 -365,423108.3876644235 -366,423109.09590240126 -367,423109.804140379 -368,423110.51237835694 -369,423111.22061633464 -370,423111.92885431246 -371,423112.6370922903 -372,423113.3453302681 -373,423114.0535682459 -374,423114.7618062237 -375,423115.4700442015 -376,423116.17828217935 -377,423116.8865201571 -378,423117.5947581349 -379,423118.3029961127 -380,423119.01123409055 -381,423119.7194720683 -382,423120.4277100461 -383,423121.1359480239 -384,423121.84418600175 -385,423122.5524239795 -386,423123.2606619573 -387,423123.96889993513 -388,423124.6771379129 -389,423125.38537589065 -390,423126.0936138685 -391,423126.8018518463 -392,423127.51008982403 -393,423128.2183278019 -394,423128.9265657797 -395,423129.6348037574 -396,423130.3430417353 -397,423131.0512797131 -398,423131.75951769087 -399,423132.4677556687 -400,423133.1759936465 -401,423133.8842316243 -402,423134.5924696021 -403,423135.3007075799 -404,423136.0089455577 -405,423136.7171835355 -406,423137.4254215133 -407,423138.1336594911 -408,423138.8418974689 -409,423139.5501354467 -410,423140.2583734245 -411,423140.9666114023 -412,423141.6748493801 -413,423142.3830873579 -414,423143.0913253357 -415,423143.79956331354 -416,423144.5078012913 -417,423145.2160392691 -418,423145.924277247 -419,423146.63251522474 -420,423147.3407532025 -421,423148.0489911804 -422,423148.7572291582 -423,423149.46546713595 -424,423150.17370511376 -425,423150.8819430916 -426,423151.5901810694 -427,423152.29841904715 -428,423153.00665702496 -429,423153.7148950027 -430,423154.4231329806 -431,423155.13137095835 -432,423155.83960893616 -433,423156.5478469139 -434,423157.2560848918 -435,423157.96432286955 -436,423158.67256084736 -437,423159.3807988252 -438,423160.089036803 -439,423160.79727478075 -440,423161.5055127586 -441,423162.2137507364 -442,423162.9219887142 -443,423163.630226692 -444,423164.3384646698 -445,423165.0467026475 -446,423165.75494062545 -447,423166.4631786032 -448,423167.17141658097 -449,423167.8796545588 -450,423168.58789253666 -451,423169.2961305144 -452,423170.0043684922 -453,423170.7126064699 -454,423171.42084444786 -455,423172.12908242556 -456,423172.83732040337 -457,423173.5455583811 -458,423174.253796359 -459,423174.9620343368 -460,423175.6702723146 -461,423176.3785102923 -462,423177.08674827026 -463,423177.794986248 -464,423178.5032242258 -465,423179.2114622036 -466,423179.91970018146 -467,423180.62793815916 -468,423181.33617613703 -469,423182.0444141148 -470,423182.75265209255 -471,423183.4608900704 -472,423184.16912804823 -473,423184.877366026 -474,423185.5856040038 -475,423186.2938419816 -476,423187.00207995943 -477,423187.7103179372 -478,423188.418555915 -479,423189.1267938928 -480,423189.83503187064 -481,423190.5432698484 -482,423191.25150782627 -483,423191.959745804 -484,423192.66798378184 -485,423193.37622175965 -486,423194.0844597374 -487,423194.7926977153 -488,423195.5009356931 -489,423196.2091736708 -490,423196.91741164867 -491,423197.6256496265 -492,423198.33388760424 -493,423199.04212558205 -494,423199.75036355987 -495,423200.4586015376 -496,423201.1668395155 -497,423201.87507749326 -498,423202.58331547107 -499,423203.2915534489 -500,423203.9997914267 -501,423204.70802940446 -502,423205.4162673823 -503,423206.1245053601 -504,423206.8327433379 -505,423207.54098131566 -506,423208.2492192935 -507,423208.9574572713 -508,423209.6656952491 -509,423210.3739332269 -510,423211.08217120473 -511,423211.7904091825 -512,423212.49864716036 -513,423213.2068851381 -514,423213.9151231159 -515,423214.62336109375 -516,423215.33159907156 -517,423216.0398370492 -518,423216.74807502714 -519,423217.45631300483 -520,423218.16455098265 -521,423218.87278896046 -522,423219.5810269383 -523,423220.2892649161 -524,423220.9975028939 -525,423221.70574087166 -526,423222.41397884954 -527,423223.12221682724 -528,423223.8304548051 -529,423224.5386927829 -530,423225.2469307607 -531,423225.95516873844 -532,423226.66340671637 -533,423227.37164469407 -534,423228.0798826719 -535,423228.7881206497 -536,423229.4963586275 -537,423230.2045966053 -538,423230.91283458314 -539,423231.62107256084 -540,423232.3293105388 -541,423233.0375485165 -542,423233.7457864943 -543,423234.45402447216 -544,423235.16226245 -545,423235.8705004277 -546,423236.57873840554 -547,423237.28697638336 -548,423237.9952143612 -549,423238.703452339 -550,423239.41169031675 -551,423240.11992829456 -552,423240.8281662724 -553,423241.5364042502 -554,423242.244642228 -555,423242.95288020576 -556,423243.6611181836 -557,423244.36935616145 -558,423245.07759413915 -559,423245.78583211696 -560,423246.49407009484 -561,423247.2023080726 -562,423247.9105460504 -563,423248.6187840282 -564,423249.3270220059 -565,423250.03525998385 -566,423250.7434979616 -567,423251.45173593936 -568,423252.1599739172 -569,423252.86821189505 -570,423253.5764498728 -571,423254.2846878506 -572,423254.9929258284 -573,423255.70116380625 -574,423256.409401784 -575,423257.1176397618 -576,423257.82587773964 -577,423258.53411571746 -578,423259.2423536952 -579,423259.9505916731 -580,423260.6588296508 -581,423261.36706762866 -582,423262.0753056065 -583,423262.7835435842 -584,423263.49178156204 -585,423264.20001953986 -586,423264.90825751756 -587,423265.61649549543 -588,423266.3247334732 -589,423267.032971451 -590,423267.7412094288 -591,423268.44944740663 -592,423269.1576853844 -593,423269.86592336226 -594,423270.57416134 -595,423271.28239931783 -596,423271.9906372956 -597,423272.69887527346 -598,423273.4071132513 -599,423274.11535122903 -600,423274.8235892068 -601,423275.5318271847 -602,423276.2400651624 -603,423276.94830314023 -604,423277.65654111805 -605,423278.3647790958 -606,423279.0730170736 -607,423279.7812550515 -608,423280.4894930292 -609,423281.197731007 -610,423281.9059689849 -611,423282.61420696264 -612,423283.32244494045 -613,423284.03068291827 -614,423284.7389208961 -615,423285.4471588739 -616,423286.15539685165 -617,423286.86363482947 -618,423287.5718728073 -619,423288.2801107851 -620,423288.9883487629 -621,423289.69658674067 -622,423290.4048247185 -623,423291.11306269636 -624,423291.82130067406 -625,423292.52953865187 -626,423293.23777662974 -627,423293.9460146075 -628,423294.65425258526 -629,423295.36249056313 -630,423296.0707285409 -631,423296.7789665187 -632,423297.4872044965 -633,423298.1954424743 -634,423298.90368045215 -635,423299.61191842996 -636,423300.32015640766 -637,423301.02839438553 -638,423301.73663236335 -639,423302.4448703411 -640,423303.1531083189 -641,423303.86134629673 -642,423304.56958427455 -643,423305.27782225236 -644,423305.9860602301 -645,423306.69429820793 -646,423307.40253618575 -647,423308.11077416356 -648,423308.8190121414 -649,423309.52725011914 -650,423310.23548809683 -651,423310.94372607477 -652,423311.65196405246 -653,423312.3602020303 -654,423313.0684400081 -655,423313.7766779859 -656,423314.48491596367 -657,423315.19315394154 -658,423315.9013919193 -659,423316.6096298971 -660,423317.3178678749 -661,423318.02610585274 -662,423318.7343438305 -663,423319.44258180837 -664,423320.1508197861 -665,423320.85905776394 -666,423321.5672957417 -667,423322.27553371957 -668,423322.9837716973 -669,423323.69200967514 -670,423324.40024765296 -671,423325.1084856308 -672,423325.8167236085 -673,423326.5249615864 -674,423327.2331995641 -675,423327.941437542 -676,423328.6496755198 -677,423329.35791349754 -678,423330.0661514753 -679,423330.77438945323 -680,423331.48262743093 -681,423332.19086540875 -682,423332.89910338656 -683,423333.6073413644 -684,423334.3155793422 -685,423335.02381732 -686,423335.73205529776 -687,423336.44029327563 -688,423337.1485312534 -689,423337.8567692312 -690,423338.56500720896 -691,423339.27324518684 -692,423339.9814831646 -693,423340.6897211424 -694,423341.39795912016 -695,423342.106197098 -696,423342.8144350758 -697,423343.5226730536 -698,423344.2309110314 -699,423344.9391490092 -700,423345.647386987 -701,423346.35562496487 -702,423347.0638629426 -703,423347.7721009204 -704,423348.48033889825 -705,423349.18857687607 -706,423349.8968148538 -707,423350.60505283164 -708,423351.31329080946 -709,423352.02152878727 -710,423352.729766765 -711,423353.43800474284 -712,423354.14624272066 -713,423354.8544806985 -714,423355.56271867617 -715,423356.270956654 -716,423356.9791946318 -717,423357.6874326096 -718,423358.3956705874 -719,423359.1039085652 -720,423359.81214654306 -721,423360.5203845208 -722,423361.2286224986 -723,423361.93686047645 -724,423362.6450984542 -725,423363.353336432 -726,423364.06157440983 -727,423364.76981238765 -728,423365.4780503654 -729,423366.1862883433 -730,423366.89452632103 -731,423367.6027642988 -732,423368.31100227666 -733,423369.0192402545 -734,423369.72747823223 -735,423370.43571621005 -736,423371.1439541878 -737,423371.8521921657 -738,423372.56043014344 -739,423373.26866812125 -740,423373.976906099 -741,423374.6851440769 -742,423375.3933820547 -743,423376.10162003245 -744,423376.8098580102 -745,423377.51809598814 -746,423378.2263339659 -747,423378.93457194365 -748,423379.64280992147 -749,423380.35104789934 -750,423381.05928587704 -751,423381.7675238549 -752,423382.47576183267 -753,423383.1839998105 -754,423383.8922377883 -755,423384.6004757661 -756,423385.30871374387 -757,423386.01695172174 -758,423386.7251896995 -759,423387.4334276773 -760,423388.1416656551 -761,423388.84990363294 -762,423389.5581416107 -763,423390.2663795885 -764,423390.9746175663 -765,423391.68285554415 -766,423392.3910935219 -767,423393.0993314997 -768,423393.8075694775 -769,423394.51580745535 -770,423395.22404543316 -771,423395.9322834109 -772,423396.6405213887 -773,423397.3487593666 -774,423398.05699734436 -775,423398.7652353221 -776,423399.47347329993 -777,423400.1817112778 -778,423400.88994925545 -779,423401.5981872334 -780,423402.3064252111 -781,423403.01466318883 -782,423403.7229011667 -783,423404.4311391445 -784,423405.1393771223 -785,423405.8476151001 -786,423406.5558530779 -787,423407.2640910557 -788,423407.9723290335 -789,423408.6805670113 -790,423409.38880498917 -791,423410.0970429669 -792,423410.80528094474 -793,423411.51351892255 -794,423412.2217569003 -795,423412.9299948782 -796,423413.63823285594 -797,423414.3464708337 -798,423415.05470881157 -799,423415.7629467894 -800,423416.4711847671 -801,423417.17942274496 -802,423417.8876607228 -803,423418.5958987005 -804,423419.30413667834 -805,423420.01237465616 -806,423420.720612634 -807,423421.4288506118 -808,423422.13708858954 -809,423422.84532656736 -810,423423.5535645452 -811,423424.261802523 -812,423424.97004050075 -813,423425.67827847856 -814,423426.38651645643 -815,423427.0947544342 -816,423427.802992412 -817,423428.51123038976 -818,423429.21946836764 -819,423429.9277063454 -820,423430.6359443232 -821,423431.344182301 -822,423432.05242027884 -823,423432.76065825665 -824,423433.46889623447 -825,423434.17713421216 -826,423434.8853721901 -827,423435.59361016785 -828,423436.3018481456 -829,423437.0100861234 -830,423437.71832410124 -831,423438.42656207905 -832,423439.13480005687 -833,423439.8430380346 -834,423440.55127601244 -835,423441.25951399026 -836,423441.96775196807 -837,423442.6759899459 -838,423443.38422792364 -839,423444.09246590146 -840,423444.80070387933 -841,423445.508941857 -842,423446.21717983484 -843,423446.9254178127 -844,423447.6336557905 -845,423448.3418937682 -846,423449.05013174604 -847,423449.7583697238 -848,423450.4666077017 -849,423451.17484567943 -850,423451.8830836572 -851,423452.59132163506 -852,423453.2995596129 -853,423454.0077975906 -854,423454.71603556845 -855,423455.42427354626 -856,423456.132511524 -857,423456.84074950183 -858,423457.54898747965 -859,423458.25722545746 -860,423458.9654634353 -861,423459.67370141303 -862,423460.3819393909 -863,423461.09017736866 -864,423461.7984153465 -865,423462.5066533243 -866,423463.21489130205 -867,423463.9231292799 -868,423464.63136725774 -869,423465.33960523544 -870,423466.0478432133 -871,423466.75608119107 -872,423467.4643191689 -873,423468.1725571467 -874,423468.8807951245 -875,423469.58903310227 -876,423470.29727108014 -877,423471.0055090579 -878,423471.7137470357 -879,423472.42198501347 -880,423473.13022299134 -881,423473.83846096916 -882,423474.5466989469 -883,423475.25493692467 -884,423475.9631749026 -885,423476.6714128803 -886,423477.3796508581 -887,423478.08788883593 -888,423478.79612681374 -889,423479.5043647915 -890,423480.2126027694 -891,423480.9208407471 -892,423481.62907872495 -893,423482.33731670276 -894,423483.0455546805 -895,423483.75379265833 -896,423484.4620306362 -897,423485.1702686139 -898,423485.8785065918 -899,423486.58674456953 -900,423487.29498254735 -901,423488.00322052516 -902,423488.711458503 -903,423489.41969648073 -904,423490.1279344586 -905,423490.83617243636 -906,423491.5444104142 -907,423492.25264839194 -908,423492.9608863698 -909,423493.6691243476 -910,423494.3773623253 -911,423495.0856003031 -912,423495.793838281 -913,423496.5020762587 -914,423497.2103142365 -915,423497.91855221434 -916,423498.6267901921 -917,423499.33502816997 -918,423500.0432661478 -919,423500.75150412554 -920,423501.45974210335 -921,423502.16798008117 -922,423502.876218059 -923,423503.58445603674 -924,423504.29269401456 -925,423505.00093199237 -926,423505.7091699702 -927,423506.41740794794 -928,423507.12564592576 -929,423507.8338839036 -930,423508.5421218814 -931,423509.2503598592 -932,423509.95859783696 -933,423510.6668358148 -934,423511.37507379265 -935,423512.08331177034 -936,423512.79154974816 -937,423513.49978772603 -938,423514.2080257038 -939,423514.91626368155 -940,423515.6245016594 -941,423516.3327396372 -942,423517.040977615 -943,423517.7492155928 -944,423518.45745357056 -945,423519.16569154843 -946,423519.87392952625 -947,423520.582167504 -948,423521.2904054818 -949,423521.99864345964 -950,423522.70688143745 -951,423523.4151194152 -952,423524.123357393 -953,423524.8315953709 -954,423525.53983334865 -955,423526.2480713264 -956,423526.9563093043 -957,423527.664547282 -958,423528.37278525985 -959,423529.08102323767 -960,423529.7892612154 -961,423530.4974991932 -962,423531.2057371711 -963,423531.9139751488 -964,423532.6222131266 -965,423533.33045110444 -966,423534.03868908226 -967,423534.74692706007 -968,423535.4551650379 -969,423536.16340301564 -970,423536.8716409935 -971,423537.5798789713 -972,423538.2881169491 -973,423538.99635492684 -974,423539.7045929047 -975,423540.4128308824 -976,423541.12106886023 -977,423541.829306838 -978,423542.53754481586 -979,423543.2457827936 -980,423543.95402077143 -981,423544.66225874925 -982,423545.37049672706 -983,423546.0787347048 -984,423546.7869726827 -985,423547.4952106604 -986,423548.20344863826 -987,423548.9116866161 -988,423549.61992459383 -989,423550.32816257165 -990,423551.0364005495 -991,423551.7446385273 -992,423552.4528765051 -993,423553.16111448285 -994,423553.8693524607 -995,423554.5775904385 -996,423555.2858284163 -997,423555.99406639405 -998,423556.7023043719 -999,423557.4105423497 -1000,423558.1187803275 -1001,423558.82701830525 -1002,423559.53525628307 -1003,423560.24349426094 -1004,423560.9517322387 -1005,423561.65997021645 -1006,423562.3682081943 -1007,423563.0764461721 -1008,423563.7846841499 -1009,423564.4929221277 -1010,423565.2011601055 -1011,423565.9093980833 -1012,423566.61763606116 -1013,423567.3258740389 -1014,423568.03411201667 -1015,423568.74234999454 -1016,423569.45058797236 -1017,423570.1588259501 -1018,423570.86706392793 -1019,423571.57530190574 -1020,423572.28353988356 -1021,423572.9917778613 -1022,423573.70001583913 -1023,423574.40825381695 -1024,423575.11649179476 -1025,423575.8247297725 -1026,423576.53296775033 -1027,423577.24120572815 -1028,423577.94944370596 -1029,423578.6576816837 -1030,423579.36591966153 -1031,423580.0741576394 -1032,423580.78239561716 -1033,423581.4906335949 -1034,423582.1988715728 -1035,423582.90710955055 -1036,423583.61534752836 -1037,423584.3235855062 -1038,423585.031823484 -1039,423585.7400614618 -1040,423586.44829943957 -1041,423587.1565374173 -1042,423587.86477539514 -1043,423588.5730133729 -1044,423589.28125135077 -1045,423589.9894893285 -1046,423590.69772730634 -1047,423591.4059652841 -1048,423592.11420326197 -1049,423592.8224412397 -1050,423593.53067921754 -1051,423594.23891719535 -1052,423594.94715517317 -1053,423595.655393151 -1054,423596.3636311288 -1055,423597.0718691065 -1056,423597.7801070844 -1057,423598.4883450622 -1058,423599.19658303994 -1059,423599.90482101776 -1060,423600.61305899563 -1061,423601.3212969733 -1062,423602.0295349512 -1063,423602.73777292896 -1064,423603.4460109068 -1065,423604.1542488846 -1066,423604.8624868624 -1067,423605.57072484016 -1068,423606.27896281803 -1069,423606.9872007958 -1070,423607.6954387736 -1071,423608.40367675136 -1072,423609.11191472923 -1073,423609.820152707 -1074,423610.5283906848 -1075,423611.2366286626 -1076,423611.94486664044 -1077,423612.6531046182 -1078,423613.36134259606 -1079,423614.0695805738 -1080,423614.77781855164 -1081,423615.48605652945 -1082,423616.19429450727 -1083,423616.902532485 -1084,423617.6107704629 -1085,423618.3190084407 -1086,423619.0272464184 -1087,423619.7354843963 -1088,423620.4437223741 -1089,423621.15196035185 -1090,423621.86019832967 -1091,423622.5684363075 -1092,423623.27667428524 -1093,423623.9849122631 -1094,423624.69315024087 -1095,423625.4013882187 -1096,423626.10962619644 -1097,423626.8178641743 -1098,423627.5261021521 -1099,423628.2343401299 -1100,423628.94257810764 -1101,423629.6508160855 -1102,423630.3590540633 -1103,423631.0672920411 -1104,423631.7755300189 -1105,423632.48376799666 -1106,423633.1920059745 -1107,423633.9002439523 -1108,423634.60848193 -1109,423635.3167199079 -1110,423636.0249578857 -1111,423636.73319586343 -1112,423637.44143384125 -1113,423638.1496718191 -1114,423638.8579097969 -1115,423639.5661477747 -1116,423640.27438575245 -1117,423640.9826237303 -1118,423641.6908617081 -1119,423642.3990996859 -1120,423643.10733766365 -1121,423643.8155756415 -1122,423644.5238136193 -1123,423645.2320515971 -1124,423645.94028957485 -1125,423646.6485275527 -1126,423647.35676553054 -1127,423648.0650035083 -1128,423648.7732414861 -1129,423649.481479464 -1130,423650.1897174417 -1131,423650.89795541955 -1132,423651.6061933973 -1133,423652.31443137507 -1134,423653.02266935294 -1135,423653.73090733076 -1136,423654.43914530845 -1137,423655.1473832863 -1138,423655.85562126414 -1139,423656.5638592419 -1140,423657.2720972197 -1141,423657.9803351975 -1142,423658.68857317534 -1143,423659.39681115316 -1144,423660.1050491309 -1145,423660.8132871088 -1146,423661.52152508654 -1147,423662.22976306436 -1148,423662.9380010422 -1149,423663.64623901993 -1150,423664.35447699775 -1151,423665.0627149756 -1152,423665.7709529533 -1153,423666.47919093113 -1154,423667.187428909 -1155,423667.89566688676 -1156,423668.6039048646 -1157,423669.3121428424 -1158,423670.02038082015 -1159,423670.728618798 -1160,423671.4368567758 -1161,423672.14509475353 -1162,423672.8533327314 -1163,423673.5615707092 -1164,423674.269808687 -1165,423674.9780466648 -1166,423675.6862846426 -1167,423676.3945226204 -1168,423677.1027605982 -1169,423677.810998576 -1170,423678.5192365538 -1171,423679.22747453157 -1172,423679.9357125093 -1173,423680.6439504872 -1174,423681.3521884649 -1175,423682.06042644277 -1176,423682.7686644206 -1177,423683.47690239834 -1178,423684.18514037615 -1179,423684.893378354 -1180,423685.6016163317 -1181,423686.3098543096 -1182,423687.01809228736 -1183,423687.72633026517 -1184,423688.434568243 -1185,423689.1428062208 -1186,423689.85104419856 -1187,423690.55928217643 -1188,423691.2675201542 -1189,423691.975758132 -1190,423692.68399610976 -1191,423693.39223408763 -1192,423694.10047206545 -1193,423694.8087100432 -1194,423695.51694802096 -1195,423696.2251859989 -1196,423696.9334239766 -1197,423697.6416619544 -1198,423698.3498999322 -1199,423699.05813791003 -1200,423699.76637588785 -1201,423700.47461386566 -1202,423701.18285184336 -1203,423701.8910898213 -1204,423702.59932779905 -1205,423703.3075657768 -1206,423704.0158037546 -1207,423704.7240417325 -1208,423705.4322797102 -1209,423706.14051768807 -1210,423706.8487556658 -1211,423707.55699364364 -1212,423708.26523162145 -1213,423708.97346959927 -1214,423709.6817075771 -1215,423710.3899455549 -1216,423711.09818353265 -1217,423711.8064215105 -1218,423712.5146594882 -1219,423713.2228974661 -1220,423713.9311354439 -1221,423714.63937342167 -1222,423715.3476113994 -1223,423716.05584937736 -1224,423716.76408735506 -1225,423717.47232533287 -1226,423718.1805633107 -1227,423718.88880128844 -1228,423719.5970392663 -1229,423720.30527724413 -1230,423721.0135152219 -1231,423721.7217531997 -1232,423722.4299911775 -1233,423723.13822915533 -1234,423723.8464671331 -1235,423724.55470511084 -1236,423725.2629430887 -1237,423725.9711810665 -1238,423726.67941904423 -1239,423727.3876570221 -1240,423728.09589499986 -1241,423728.8041329777 -1242,423729.5123709555 -1243,423730.22060893325 -1244,423730.92884691106 -1245,423731.63708488893 -1246,423732.34532286663 -1247,423733.05356084445 -1248,423733.7617988223 -1249,423734.4700368001 -1250,423735.1782747779 -1251,423735.8865127557 -1252,423736.59475073346 -1253,423737.30298871134 -1254,423738.0112266891 -1255,423738.7194646669 -1256,423739.4277026447 -1257,423740.13594062254 -1258,423740.8441786003 -1259,423741.5524165781 -1260,423742.2606545559 -1261,423742.96889253374 -1262,423743.6771305115 -1263,423744.3853684893 -1264,423745.0936064672 -1265,423745.80184444494 -1266,423746.5100824227 -1267,423747.21832040057 -1268,423747.92655837827 -1269,423748.63479635614 -1270,423749.34303433396 -1271,423750.0512723117 -1272,423750.75951028947 -1273,423751.4677482674 -1274,423752.17598624516 -1275,423752.8842242229 -1276,423753.59246220073 -1277,423754.3007001786 -1278,423755.00893815636 -1279,423755.7171761342 -1280,423756.42541411193 -1281,423757.1336520898 -1282,423757.84189006756 -1283,423758.5501280454 -1284,423759.25836602313 -1285,423759.966604001 -1286,423760.6748419788 -1287,423761.3830799566 -1288,423762.09131793433 -1289,423762.79955591226 -1290,423763.50779388996 -1291,423764.2160318678 -1292,423764.9242698456 -1293,423765.6325078234 -1294,423766.34074580116 -1295,423767.04898377904 -1296,423767.75722175674 -1297,423768.4654597346 -1298,423769.1736977124 -1299,423769.8819356902 -1300,423770.59017366794 -1301,423771.2984116458 -1302,423772.00664962357 -1303,423772.7148876014 -1304,423773.42312557914 -1305,423774.131363557 -1306,423774.83960153477 -1307,423775.5478395126 -1308,423776.25607749034 -1309,423776.96431546815 -1310,423777.67255344597 -1311,423778.3807914238 -1312,423779.08902940154 -1313,423779.79726737936 -1314,423780.5055053572 -1315,423781.213743335 -1316,423781.92198131274 -1317,423782.6302192906 -1318,423783.33845726843 -1319,423784.0466952462 -1320,423784.754933224 -1321,423785.4631712018 -1322,423786.17140917963 -1323,423786.87964715745 -1324,423787.5878851352 -1325,423788.296123113 -1326,423789.00436109083 -1327,423789.71259906865 -1328,423790.4208370464 -1329,423791.1290750242 -1330,423791.83731300203 -1331,423792.54555097985 -1332,423793.2537889576 -1333,423793.9620269354 -1334,423794.67026491323 -1335,423795.37850289105 -1336,423796.08674086886 -1337,423796.7949788466 -1338,423797.50321682444 -1339,423798.2114548023 -1340,423798.91969278 -1341,423799.6279307578 -1342,423800.3361687357 -1343,423801.04440671345 -1344,423801.7526446912 -1345,423802.4608826691 -1346,423803.1691206469 -1347,423803.87735862465 -1348,423804.58559660247 -1349,423805.2938345803 -1350,423806.0020725581 -1351,423806.7103105359 -1352,423807.41854851367 -1353,423808.1267864915 -1354,423808.83502446924 -1355,423809.5432624471 -1356,423810.2515004249 -1357,423810.9597384027 -1358,423811.6679763805 -1359,423812.3762143583 -1360,423813.08445233613 -1361,423813.79269031395 -1362,423814.5009282917 -1363,423815.2091662695 -1364,423815.9174042474 -1365,423816.6256422251 -1366,423817.33388020284 -1367,423818.0421181807 -1368,423818.75035615853 -1369,423819.45859413623 -1370,423820.1668321141 -1371,423820.8750700919 -1372,423821.5833080697 -1373,423822.2915460475 -1374,423822.9997840253 -1375,423823.7080220031 -1376,423824.41625998094 -1377,423825.1244979587 -1378,423825.8327359365 -1379,423826.5409739143 -1380,423827.24921189214 -1381,423827.9574498699 -1382,423828.6656878477 -1383,423829.3739258255 -1384,423830.08216380334 -1385,423830.7904017811 -1386,423831.4986397589 -1387,423832.2068777367 -1388,423832.91511571454 -1389,423833.62335369235 -1390,423834.33159167017 -1391,423835.0398296479 -1392,423835.7480676258 -1393,423836.45630560355 -1394,423837.1645435813 -1395,423837.8727815592 -1396,423838.581019537 -1397,423839.2892575147 -1398,423839.9974954926 -1399,423840.7057334703 -1400,423841.41397144814 -1401,423842.12220942596 -1402,423842.8304474038 -1403,423843.5386853815 -1404,423844.2469233594 -1405,423844.95516133716 -1406,423845.663399315 -1407,423846.37163729273 -1408,423847.0798752706 -1409,423847.7881132484 -1410,423848.4963512262 -1411,423849.204589204 -1412,423849.91282718186 -1413,423850.62106515956 -1414,423851.32930313743 -1415,423852.0375411152 -1416,423852.745779093 -1417,423853.4540170708 -1418,423854.16225504864 -1419,423854.87049302633 -1420,423855.57873100427 -1421,423856.286968982 -1422,423856.9952069598 -1423,423857.7034449376 -1424,423858.41168291547 -1425,423859.1199208932 -1426,423859.82815887104 -1427,423860.5363968488 -1428,423861.24463482667 -1429,423861.9528728044 -1430,423862.6611107822 -1431,423863.36934876 -1432,423864.0775867378 -1433,423864.78582471557 -1434,423865.49406269344 -1435,423866.20230067114 -1436,423866.910538649 -1437,423867.6187766268 -1438,423868.3270146046 -1439,423869.0352525824 -1440,423869.7434905603 -1441,423870.45172853797 -1442,423871.15996651584 -1443,423871.8682044936 -1444,423872.57644247136 -1445,423873.28468044923 -1446,423873.99291842704 -1447,423874.7011564048 -1448,423875.4093943826 -1449,423876.11763236043 -1450,423876.82587033825 -1451,423877.534108316 -1452,423878.2423462938 -1453,423878.9505842717 -1454,423879.65882224945 -1455,423880.3670602272 -1456,423881.0752982051 -1457,423881.78353618283 -1458,423882.49177416065 -1459,423883.20001213846 -1460,423883.9082501162 -1461,423884.6164880941 -1462,423885.3247260719 -1463,423886.0329640496 -1464,423886.7412020275 -1465,423887.4494400053 -1466,423888.15767798305 -1467,423888.86591596087 -1468,423889.5741539387 -1469,423890.28239191644 -1470,423890.9906298943 -1471,423891.69886787207 -1472,423892.4071058498 -1473,423893.1153438277 -1474,423893.8235818055 -1475,423894.53181978327 -1476,423895.2400577611 -1477,423895.9482957389 -1478,423896.6565337167 -1479,423897.36477169447 -1480,423898.0730096723 -1481,423898.78124765016 -1482,423899.4894856279 -1483,423900.1977236057 -1484,423900.90596158354 -1485,423901.61419956124 -1486,423902.3224375392 -1487,423903.03067551693 -1488,423903.7389134947 -1489,423904.4471514725 -1490,423905.1553894504 -1491,423905.8636274281 -1492,423906.57186540595 -1493,423907.2801033837 -1494,423907.9883413615 -1495,423908.6965793393 -1496,423909.4048173171 -1497,423910.1130552949 -1498,423910.8212932727 -1499,423911.5295312505 -1500,423912.23776922835 -1501,423912.94600720605 -1502,423913.6542451839 -1503,423914.36248316173 -1504,423915.0707211395 -1505,423915.77895911725 -1506,423916.4871970952 -1507,423917.1954350729 -1508,423917.9036730507 -1509,423918.6119110285 -1510,423919.3201490063 -1511,423920.02838698414 -1512,423920.73662496195 -1513,423921.44486293965 -1514,423922.1531009176 -1515,423922.86133889534 -1516,423923.5695768731 -1517,423924.2778148509 -1518,423924.9860528288 -1519,423925.69429080654 -1520,423926.40252878435 -1521,423927.1107667621 -1522,423927.81900474 -1523,423928.52724271774 -1524,423929.23548069556 -1525,423929.94371867337 -1526,423930.6519566512 -1527,423931.36019462894 -1528,423932.0684326068 -1529,423932.7766705845 -1530,423933.4849085623 -1531,423934.1931465402 -1532,423934.90138451796 -1533,423935.6096224958 -1534,423936.3178604736 -1535,423937.02609845134 -1536,423937.7343364292 -1537,423938.442574407 -1538,423939.1508123848 -1539,423939.8590503626 -1540,423940.5672883404 -1541,423941.2755263182 -1542,423941.983764296 -1543,423942.6920022738 -1544,423943.4002402516 -1545,423944.1084782294 -1546,423944.8167162072 -1547,423945.52495418506 -1548,423946.2331921628 -1549,423946.9414301406 -1550,423947.64966811845 -1551,423948.3579060962 -1552,423949.066144074 -1553,423949.77438205184 -1554,423950.4826200296 -1555,423951.1908580074 -1556,423951.8990959853 -1557,423952.607333963 -1558,423953.3155719408 -1559,423954.02380991867 -1560,423954.73204789637 -1561,423955.4402858742 -1562,423956.148523852 -1563,423956.8567618298 -1564,423957.5649998076 -1565,423958.2732377854 -1566,423958.9814757632 -1567,423959.689713741 -1568,423960.3979517188 -1569,423961.10618969664 -1570,423961.8144276744 -1571,423962.52266565216 -1572,423963.2309036301 -1573,423963.9391416078 -1574,423964.6473795856 -1575,423965.3556175634 -1576,423966.06385554123 -1577,423966.772093519 -1578,423967.48033149686 -1579,423968.1885694746 -1580,423968.89680745243 -1581,423969.60504543025 -1582,423970.31328340806 -1583,423971.0215213858 -1584,423971.7297593637 -1585,423972.43799734145 -1586,423973.14623531926 -1587,423973.854473297 -1588,423974.5627112749 -1589,423975.27094925265 -1590,423975.97918723046 -1591,423976.6874252082 -1592,423977.3956631861 -1593,423978.10390116385 -1594,423978.81213914166 -1595,423979.5203771194 -1596,423980.2286150973 -1597,423980.9368530751 -1598,423981.64509105287 -1599,423982.3533290306 -1600,423983.06156700855 -1601,423983.76980498625 -1602,423984.47804296407 -1603,423985.1862809419 -1604,423985.8945189197 -1605,423986.6027568975 -1606,423987.3109948753 -1607,423988.0192328531 -1608,423988.72747083096 -1609,423989.4357088087 -1610,423990.1439467865 -1611,423990.8521847643 -1612,423991.56042274216 -1613,423992.2686607199 -1614,423992.9768986977 -1615,423993.6851366755 -1616,423994.39337465336 -1617,423995.1016126311 -1618,423995.80985060893 -1619,423996.51808858674 -1620,423997.2263265645 -1621,423997.9345645423 -1622,423998.6428025202 -1623,423999.3510404979 -1624,424000.0592784757 -1625,424000.76751645363 -1626,424001.47575443133 -1627,424002.1839924091 -1628,424002.8922303869 -1629,424003.6004683648 -1630,424004.3087063425 -1631,424005.01694432035 -1632,424005.7251822981 -1633,424006.4334202759 -1634,424007.14165825373 -1635,424007.84989623155 -1636,424008.5581342093 -1637,424009.2663721872 -1638,424009.97461016494 -1639,424010.68284814275 -1640,424011.3910861205 -1641,424012.0993240984 -1642,424012.80756207614 -1643,424013.51580005395 -1644,424014.2240380317 -1645,424014.9322760096 -1646,424015.64051398734 -1647,424016.3487519652 -1648,424017.0569899429 -1649,424017.7652279208 -1650,424018.4734658986 -1651,424019.18170387635 -1652,424019.8899418541 -1653,424020.59817983204 -1654,424021.3064178098 -1655,424022.01465578756 -1656,424022.72289376537 -1657,424023.43113174324 -1658,424024.139369721 -1659,424024.8476076988 -1660,424025.5558456766 -1661,424026.26408365445 -1662,424026.9723216322 -1663,424027.68055961 -1664,424028.3887975878 -1665,424029.0970355656 -1666,424029.8052735434 -1667,424030.5135115212 -1668,424031.221749499 -1669,424031.9299874768 -1670,424032.6382254546 -1671,424033.3464634324 -1672,424034.05470141023 -1673,424034.76293938805 -1674,424035.4711773658 -1675,424036.1794153437 -1676,424036.88765332144 -1677,424037.5958912992 -1678,424038.30412927706 -1679,424039.0123672549 -1680,424039.7206052326 -1681,424040.42884321045 -1682,424041.13708118827 -1683,424041.845319166 -1684,424042.55355714384 -1685,424043.26179512165 -1686,424043.97003309947 -1687,424044.6782710773 -1688,424045.38650905504 -1689,424046.09474703285 -1690,424046.8029850106 -1691,424047.5112229884 -1692,424048.2194609662 -1693,424048.927698944 -1694,424049.63593692187 -1695,424050.3441748996 -1696,424051.0524128774 -1697,424051.76065085526 -1698,424052.4688888331 -1699,424053.1771268108 -1700,424053.88536478864 -1701,424054.59360276646 -1702,424055.30184074416 -1703,424056.0100787221 -1704,424056.71831669984 -1705,424057.4265546776 -1706,424058.1347926554 -1707,424058.8430306333 -1708,424059.55126861105 -1709,424060.25950658886 -1710,424060.9677445666 -1711,424061.6759825445 -1712,424062.38422052225 -1713,424063.09245850006 -1714,424063.8006964779 -1715,424064.5089344557 -1716,424065.21717243345 -1717,424065.9254104113 -1718,424066.633648389 -1719,424067.3418863669 -1720,424068.0501243447 -1721,424068.75836232246 -1722,424069.4666003003 -1723,424070.17483827815 -1724,424070.88307625585 -1725,424071.5913142337 -1726,424072.2995522115 -1727,424073.0077901893 -1728,424073.7160281671 -1729,424074.4242661449 -1730,424075.1325041227 -1731,424075.84074210055 -1732,424076.5489800783 -1733,424077.2572180561 -1734,424077.9654560339 -1735,424078.67369401176 -1736,424079.3819319895 -1737,424080.0901699673 -1738,424080.7984079451 -1739,424081.50664592296 -1740,424082.2148839007 -1741,424082.9231218785 -1742,424083.63135985634 -1743,424084.33959783416 -1744,424085.047835812 -1745,424085.7560737898 -1746,424086.4643117675 -1747,424087.1725497454 -1748,424087.8807877232 -1749,424088.58902570093 -1750,424089.29726367875 -1751,424090.0055016566 -1752,424090.7137396343 -1753,424091.4219776122 -1754,424092.13021558995 -1755,424092.8384535677 -1756,424093.5466915455 -1757,424094.25492952333 -1758,424094.96316750115 -1759,424095.6714054789 -1760,424096.3796434567 -1761,424097.0878814346 -1762,424097.7961194123 -1763,424098.5043573901 -1764,424099.212595368 -1765,424099.92083334574 -1766,424100.6290713235 -1767,424101.33730930137 -1768,424102.0455472791 -1769,424102.75378525694 -1770,424103.46202323475 -1771,424104.1702612125 -1772,424104.8784991904 -1773,424105.5867371682 -1774,424106.2949751459 -1775,424107.00321312377 -1776,424107.7114511016 -1777,424108.41968907934 -1778,424109.12792705715 -1779,424109.83616503497 -1780,424110.5444030128 -1781,424111.2526409906 -1782,424111.96087896836 -1783,424112.66911694617 -1784,424113.377354924 -1785,424114.0855929018 -1786,424114.7938308796 -1787,424115.5020688574 -1788,424116.2103068352 -1789,424116.91854481306 -1790,424117.62678279076 -1791,424118.3350207686 -1792,424119.04325874645 -1793,424119.7514967242 -1794,424120.459734702 -1795,424121.16797267983 -1796,424121.87621065753 -1797,424122.58444863546 -1798,424123.2926866132 -1799,424124.000924591 -1800,424124.7091625688 -1801,424125.41740054666 -1802,424126.1256385244 -1803,424126.83387650223 -1804,424127.54211448 -1805,424128.25035245786 -1806,424128.9585904356 -1807,424129.66682841344 -1808,424130.37506639125 -1809,424131.08330436907 -1810,424131.7915423468 -1811,424132.4997803247 -1812,424133.2080183024 -1813,424133.91625628027 -1814,424134.6244942581 -1815,424135.33273223584 -1816,424136.04097021365 -1817,424136.7492081915 -1818,424137.4574461692 -1819,424138.1656841471 -1820,424138.8739221248 -1821,424139.5821601026 -1822,424140.2903980804 -1823,424140.99863605824 -1824,424141.706874036 -1825,424142.41511201387 -1826,424143.1233499916 -1827,424143.83158796944 -1828,424144.5398259472 -1829,424145.2480639251 -1830,424145.9563019029 -1831,424146.66453988064 -1832,424147.3727778584 -1833,424148.08101583633 -1834,424148.78925381403 -1835,424149.49749179184 -1836,424150.20572976966 -1837,424150.9139677474 -1838,424151.62220572523 -1839,424152.3304437031 -1840,424153.0386816808 -1841,424153.7469196586 -1842,424154.4551576365 -1843,424155.16339561425 -1844,424155.87163359206 -1845,424156.5798715699 -1846,424157.2881095477 -1847,424157.9963475255 -1848,424158.70458550326 -1849,424159.4128234811 -1850,424160.1210614589 -1851,424160.8292994367 -1852,424161.5375374145 -1853,424162.2457753923 -1854,424162.9540133701 -1855,424163.66225134797 -1856,424164.37048932567 -1857,424165.0787273035 -1858,424165.78696528135 -1859,424166.4952032591 -1860,424167.20344123687 -1861,424167.91167921474 -1862,424168.6199171925 -1863,424169.3281551703 -1864,424170.0363931481 -1865,424170.7446311259 -1866,424171.45286910376 -1867,424172.16110708157 -1868,424172.86934505927 -1869,424173.57758303714 -1870,424174.28582101496 -1871,424174.9940589927 -1872,424175.7022969705 -1873,424176.41053494834 -1874,424177.11877292616 -1875,424177.827010904 -1876,424178.53524888173 -1877,424179.24348685954 -1878,424179.95172483736 -1879,424180.6599628152 -1880,424181.368200793 -1881,424182.07643877075 -1882,424182.7846767485 -1883,424183.49291472643 -1884,424184.20115270413 -1885,424184.9093906819 -1886,424185.6176286597 -1887,424186.3258666375 -1888,424187.0341046153 -1889,424187.74234259315 -1890,424188.4505805709 -1891,424189.1588185487 -1892,424189.86705652653 -1893,424190.57529450435 -1894,424191.2835324821 -1895,424191.99177046 -1896,424192.70000843774 -1897,424193.40824641555 -1898,424194.11648439337 -1899,424194.8247223712 -1900,424195.532960349 -1901,424196.24119832675 -1902,424196.94943630457 -1903,424197.6576742824 -1904,424198.3659122602 -1905,424199.074150238 -1906,424199.78238821577 -1907,424200.4906261936 -1908,424201.19886417146 -1909,424201.90710214915 -1910,424202.61534012697 -1911,424203.32357810484 -1912,424204.0318160826 -1913,424204.74005406036 -1914,424205.4482920382 -1915,424206.156530016 -1916,424206.8647679938 -1917,424207.5730059716 -1918,424208.28124394943 -1919,424208.98948192724 -1920,424209.69771990506 -1921,424210.4059578828 -1922,424211.11419586063 -1923,424211.82243383845 -1924,424212.53067181626 -1925,424213.238909794 -1926,424213.94714777183 -1927,424214.6553857496 -1928,424215.36362372746 -1929,424216.0718617052 -1930,424216.78009968303 -1931,424217.4883376608 -1932,424218.19657563866 -1933,424218.9048136165 -1934,424219.61305159424 -1935,424220.321289572 -1936,424221.0295275499 -1937,424221.7377655277 -1938,424222.44600350544 -1939,424223.15424148325 -1940,424223.8624794611 -1941,424224.5707174389 -1942,424225.2789554167 -1943,424225.98719339445 -1944,424226.6954313723 -1945,424227.4036693501 -1946,424228.1119073279 -1947,424228.82014530565 -1948,424229.5283832835 -1949,424230.2366212613 -1950,424230.9448592391 -1951,424231.6530972168 -1952,424232.36133519467 -1953,424233.0695731724 -1954,424233.77781115024 -1955,424234.48604912806 -1956,424235.1942871059 -1957,424235.9025250836 -1958,424236.6107630615 -1959,424237.31900103926 -1960,424238.0272390171 -1961,424238.7354769949 -1962,424239.4437149727 -1963,424240.1519529504 -1964,424240.86019092833 -1965,424241.5684289061 -1966,424242.27666688384 -1967,424242.98490486166 -1968,424243.69314283953 -1969,424244.4013808173 -1970,424245.1096187951 -1971,424245.81785677286 -1972,424246.5260947507 -1973,424247.2343327285 -1974,424247.9425707063 -1975,424248.65080868406 -1976,424249.3590466619 -1977,424250.06728463975 -1978,424250.7755226175 -1979,424251.48376059526 -1980,424252.19199857314 -1981,424252.90023655095 -1982,424253.6084745287 -1983,424254.3167125065 -1984,424255.02495048434 -1985,424255.7331884621 -1986,424256.44142643997 -1987,424257.1496644177 -1988,424257.8579023955 -1989,424258.56614037335 -1990,424259.27437835117 -1991,424259.9826163289 -1992,424260.69085430674 -1993,424261.39909228456 -1994,424262.10733026237 -1995,424262.8155682401 -1996,424263.52380621794 -1997,424264.23204419576 -1998,424264.9402821736 -1999,424265.6485201513 -2000,424266.35675812914 -2001,424267.06499610696 -2002,424267.7732340848 -2003,424268.4814720625 -2004,424269.18971004034 -2005,424269.8979480182 -2006,424270.606185996 -2007,424271.31442397373 -2008,424272.0226619516 -2009,424272.7308999294 -2010,424273.4391379072 -2011,424274.147375885 -2012,424274.8556138628 -2013,424275.5638518405 -2014,424276.27208981843 -2015,424276.98032779613 -2016,424277.688565774 -2017,424278.3968037517 -2018,424279.1050417296 -2019,424279.81327970733 -2020,424280.52151768515 -2021,424281.2297556629 -2022,424281.9379936408 -2023,424282.64623161854 -2024,424283.35446959635 -2025,424284.06270757416 -2026,424284.770945552 -2027,424285.4791835298 -2028,424286.1874215076 -2029,424286.8956594853 -2030,424287.60389746324 -2031,424288.312135441 -2032,424289.02037341875 -2033,424289.72861139657 -2034,424290.43684937444 -2035,424291.14508735214 -2036,424291.85332533 -2037,424292.56156330777 -2038,424293.2698012856 -2039,424293.9780392634 -2040,424294.6862772412 -2041,424295.39451521897 -2042,424296.10275319684 -2043,424296.8109911746 -2044,424297.5192291524 -2045,424298.2274671302 -2046,424298.93570510804 -2047,424299.6439430858 -2048,424300.3521810636 -2049,424301.0604190414 -2050,424301.76865701925 -2051,424302.476894997 -2052,424303.1851329748 -2053,424303.89337095263 -2054,424304.60160893045 -2055,424305.30984690826 -2056,424306.0180848861 -2057,424306.7263228638 -2058,424307.4345608417 -2059,424308.14279881946 -2060,424308.8510367972 -2061,424309.55927477503 -2062,424310.26751275285 -2063,424310.97575073066 -2064,424311.6839887085 -2065,424312.39222668624 -2066,424313.10046466405 -2067,424313.80870264187 -2068,424314.5169406197 -2069,424315.2251785975 -2070,424315.93341657525 -2071,424316.64165455307 -2072,424317.34989253094 -2073,424318.05813050864 -2074,424318.76636848645 -2075,424319.4746064643 -2076,424320.1828444421 -2077,424320.8910824199 -2078,424321.5993203977 -2079,424322.30755837547 -2080,424323.01579635334 -2081,424323.72403433104 -2082,424324.4322723088 -2083,424325.14051028667 -2084,424325.8487482645 -2085,424326.5569862422 -2086,424327.26522422006 -2087,424327.9734621979 -2088,424328.6817001756 -2089,424329.38993815344 -2090,424330.09817613126 -2091,424330.8064141091 -2092,424331.5146520869 -2093,424332.22289006464 -2094,424332.9311280425 -2095,424333.6393660203 -2096,424334.3476039981 -2097,424335.0558419759 -2098,424335.76407995366 -2099,424336.47231793153 -2100,424337.18055590935 -2101,424337.88879388705 -2102,424338.5970318649 -2103,424339.3052698427 -2104,424340.0135078205 -2105,424340.7217457983 -2106,424341.4299837761 -2107,424342.1382217539 -2108,424342.84645973175 -2109,424343.5546977095 -2110,424344.2629356873 -2111,424344.9711736651 -2112,424345.67941164295 -2113,424346.38764962077 -2114,424347.0958875985 -2115,424347.8041255763 -2116,424348.5123635542 -2117,424349.2206015319 -2118,424349.9288395097 -2119,424350.63707748754 -2120,424351.34531546535 -2121,424352.0535534431 -2122,424352.761791421 -2123,424353.4700293987 -2124,424354.17826737656 -2125,424354.88650535437 -2126,424355.5947433321 -2127,424356.30298130994 -2128,424357.0112192878 -2129,424357.7194572655 -2130,424358.4276952434 -2131,424359.13593322114 -2132,424359.84417119896 -2133,424360.5524091768 -2134,424361.2606471546 -2135,424361.96888513234 -2136,424362.6771231102 -2137,424363.385361088 -2138,424364.0935990658 -2139,424364.80183704355 -2140,424365.5100750214 -2141,424366.21831299923 -2142,424366.926550977 -2143,424367.63478895475 -2144,424368.3430269327 -2145,424369.0512649103 -2146,424369.75950288813 -2147,424370.46774086595 -2148,424371.1759788437 -2149,424371.8842168216 -2150,424372.5924547994 -2151,424373.30069277715 -2152,424374.00893075496 -2153,424374.7171687328 -2154,424375.4254067106 -2155,424376.13364468835 -2156,424376.84188266617 -2157,424377.550120644 -2158,424378.2583586218 -2159,424378.96659659955 -2160,424379.67483457737 -2161,424380.3830725552 -2162,424381.091310533 -2163,424381.7995485108 -2164,424382.50778648857 -2165,424383.2160244664 -2166,424383.92426244426 -2167,424384.632500422 -2168,424385.34073839977 -2169,424386.0489763777 -2170,424386.7572143554 -2171,424387.4654523332 -2172,424388.173690311 -2173,424388.88192828884 -2174,424389.5901662666 -2175,424390.2984042445 -2176,424391.0066422222 -2177,424391.71488020004 -2178,424392.42311817786 -2179,424393.1313561556 -2180,424393.83959413343 -2181,424394.5478321113 -2182,424395.25607008906 -2183,424395.9643080669 -2184,424396.67254604463 -2185,424397.3807840225 -2186,424398.08902200026 -2187,424398.7972599781 -2188,424399.5054979559 -2189,424400.2137359337 -2190,424400.92197391146 -2191,424401.63021188934 -2192,424402.33844986703 -2193,424403.04668784485 -2194,424403.7549258227 -2195,424404.4631638005 -2196,424405.17140177824 -2197,424405.8796397561 -2198,424406.58787773387 -2199,424407.2961157117 -2200,424408.0043536895 -2201,424408.7125916673 -2202,424409.4208296451 -2203,424410.12906762294 -2204,424410.8373056007 -2205,424411.5455435785 -2206,424412.2537815563 -2207,424412.96201953414 -2208,424413.6702575119 -2209,424414.3784954897 -2210,424415.08673346747 -2211,424415.79497144534 -2212,424416.50320942304 -2213,424417.21144740086 -2214,424417.91968537867 -2215,424418.6279233565 -2216,424419.3361613343 -2217,424420.04439931206 -2218,424420.7526372899 -2219,424421.46087526774 -2220,424422.16911324544 -2221,424422.87735122326 -2222,424423.58558920113 -2223,424424.2938271789 -2224,424425.0020651567 -2225,424425.7103031345 -2226,424426.41854111233 -2227,424427.12677909015 -2228,424427.8350170679 -2229,424428.5432550457 -2230,424429.25149302353 -2231,424429.95973100135 -2232,424430.6679689791 -2233,424431.3762069569 -2234,424432.0844449347 -2235,424432.79268291255 -2236,424433.5009208903 -2237,424434.2091588681 -2238,424434.91739684594 -2239,424435.62563482375 -2240,424436.3338728015 -2241,424437.0421107794 -2242,424437.75034875714 -2243,424438.45858673495 -2244,424439.16682471277 -2245,424439.8750626906 -2246,424440.5833006683 -2247,424441.2915386462 -2248,424441.99977662397 -2249,424442.7080146017 -2250,424443.41625257954 -2251,424444.1244905574 -2252,424444.83272853517 -2253,424445.540966513 -2254,424446.24920449074 -2255,424446.9574424686 -2256,424447.6656804464 -2257,424448.3739184242 -2258,424449.08215640194 -2259,424449.7903943798 -2260,424450.4986323576 -2261,424451.2068703354 -2262,424451.91510831314 -2263,424452.6233462911 -2264,424453.3315842688 -2265,424454.0398222466 -2266,424454.7480602244 -2267,424455.4562982022 -2268,424456.16453618 -2269,424456.87277415785 -2270,424457.5810121356 -2271,424458.2892501134 -2272,424458.99748809123 -2273,424459.70572606905 -2274,424460.4139640468 -2275,424461.1222020247 -2276,424461.8304400024 -2277,424462.53867798025 -2278,424463.24691595795 -2279,424463.95515393576 -2280,424464.6633919136 -2281,424465.3716298914 -2282,424466.07986786915 -2283,424466.78810584696 -2284,424467.4963438248 -2285,424468.2045818026 -2286,424468.9128197804 -2287,424469.62105775817 -2288,424470.32929573604 -2289,424471.03753371385 -2290,424471.74577169155 -2291,424472.4540096694 -2292,424473.16224764724 -2293,424473.870485625 -2294,424474.5787236028 -2295,424475.2869615806 -2296,424475.9951995584 -2297,424476.70343753626 -2298,424477.411675514 -2299,424478.11991349177 -2300,424478.82815146964 -2301,424479.53638944746 -2302,424480.2446274252 -2303,424480.95286540303 -2304,424481.66110338084 -2305,424482.36934135866 -2306,424483.0775793364 -2307,424483.78581731423 -2308,424484.49405529205 -2309,424485.20229326986 -2310,424485.9105312477 -2311,424486.61876922543 -2312,424487.32700720325 -2313,424488.0352451811 -2314,424488.7434831589 -2315,424489.45172113663 -2316,424490.1599591145 -2317,424490.8681970923 -2318,424491.57643507 -2319,424492.2846730479 -2320,424492.9929110257 -2321,424493.70114900346 -2322,424494.4093869813 -2323,424495.1176249591 -2324,424495.82586293685 -2325,424496.5341009147 -2326,424497.2423388925 -2327,424497.9505768703 -2328,424498.65881484805 -2329,424499.3670528259 -2330,424500.0752908037 -2331,424500.7835287815 -2332,424501.49176675925 -2333,424502.2000047371 -2334,424502.9082427149 -2335,424503.6164806927 -2336,424504.3247186705 -2337,424505.0329566483 -2338,424505.74119462614 -2339,424506.44943260396 -2340,424507.1576705816 -2341,424507.8659085596 -2342,424508.5741465373 -2343,424509.28238451504 -2344,424509.99062249286 -2345,424510.69886047073 -2346,424511.4070984485 -2347,424512.1153364263 -2348,424512.82357440406 -2349,424513.53181238193 -2350,424514.2400503597 -2351,424514.9482883375 -2352,424515.65652631526 -2353,424516.36476429313 -2354,424517.0730022709 -2355,424517.7812402487 -2356,424518.48947822646 -2357,424519.19771620433 -2358,424519.90595418215 -2359,424520.6141921599 -2360,424521.3224301377 -2361,424522.0306681156 -2362,424522.7389060933 -2363,424523.44714407116 -2364,424524.1553820489 -2365,424524.8636200267 -2366,424525.57185800455 -2367,424526.28009598237 -2368,424526.98833396006 -2369,424527.69657193794 -2370,424528.40480991575 -2371,424529.1130478935 -2372,424529.8212858713 -2373,424530.52952384914 -2374,424531.23776182695 -2375,424531.94599980477 -2376,424532.6542377825 -2377,424533.3624757604 -2378,424534.07071373815 -2379,424534.77895171597 -2380,424535.4871896938 -2381,424536.19542767154 -2382,424536.90366564936 -2383,424537.6119036272 -2384,424538.3201416049 -2385,424539.0283795828 -2386,424539.7366175606 -2387,424540.4448555384 -2388,424541.1530935162 -2389,424541.861331494 -2390,424542.56956947176 -2391,424543.27780744963 -2392,424543.9860454274 -2393,424544.69428340514 -2394,424545.402521383 -2395,424546.11075936083 -2396,424546.8189973386 -2397,424547.5272353164 -2398,424548.2354732942 -2399,424548.94371127203 -2400,424549.6519492498 -2401,424550.3601872276 -2402,424551.0684252054 -2403,424551.77666318323 -2404,424552.484901161 -2405,424553.19313913886 -2406,424553.9013771165 -2407,424554.6096150944 -2408,424555.3178530722 -2409,424556.02609104995 -2410,424556.73432902776 -2411,424557.44256700564 -2412,424558.15080498334 -2413,424558.8590429612 -2414,424559.56728093897 -2415,424560.2755189168 -2416,424560.9837568946 -2417,424561.6919948724 -2418,424562.40023285017 -2419,424563.10847082804 -2420,424563.8167088058 -2421,424564.5249467836 -2422,424565.23318476137 -2423,424565.94142273924 -2424,424566.64966071706 -2425,424567.3578986948 -2426,424568.06613667257 -2427,424568.7743746505 -2428,424569.4826126282 -2429,424570.190850606 -2430,424570.8990885838 -2431,424571.60732656164 -2432,424572.31556453946 -2433,424573.0238025173 -2434,424573.732040495 -2435,424574.4402784729 -2436,424575.14851645066 -2437,424575.8567544284 -2438,424576.56499240623 -2439,424577.2732303841 -2440,424577.98146836186 -2441,424578.6897063397 -2442,424579.3979443175 -2443,424580.10618229525 -2444,424580.8144202731 -2445,424581.5226582509 -2446,424582.2308962287 -2447,424582.9391342065 -2448,424583.6473721843 -2449,424584.35561016214 -2450,424585.0638481399 -2451,424585.7720861177 -2452,424586.4803240956 -2453,424587.1885620733 -2454,424587.8968000511 -2455,424588.60503802897 -2456,424589.3132760067 -2457,424590.0215139845 -2458,424590.72975196235 -2459,424591.43798994005 -2460,424592.1462279179 -2461,424592.85446589574 -2462,424593.5627038735 -2463,424594.2709418513 -2464,424594.9791798292 -2465,424595.68741780694 -2466,424596.39565578476 -2467,424597.1038937625 -2468,424597.8121317404 -2469,424598.52036971814 -2470,424599.22860769596 -2471,424599.9368456738 -2472,424600.6450836516 -2473,424601.3533216293 -2474,424602.0615596072 -2475,424602.76979758486 -2476,424603.47803556273 -2477,424604.18627354054 -2478,424604.8945115183 -2479,424605.60274949606 -2480,424606.310987474 -2481,424607.0192254517 -2482,424607.7274634295 -2483,424608.4357014073 -2484,424609.14393938513 -2485,424609.85217736295 -2486,424610.56041534076 -2487,424611.2686533185 -2488,424611.9768912964 -2489,424612.68512927415 -2490,424613.39336725196 -2491,424614.1016052297 -2492,424614.8098432076 -2493,424615.51808118535 -2494,424616.22631916316 -2495,424616.9345571409 -2496,424617.6427951188 -2497,424618.35103309655 -2498,424619.05927107437 -2499,424619.7675090522 -2500,424620.47574702994 -2501,424621.18398500775 -2502,424621.8922229856 -2503,424622.6004609633 -2504,424623.30869894114 -2505,424624.016936919 -2506,424624.72517489677 -2507,424625.4334128746 -2508,424626.1416508524 -2509,424626.8498888302 -2510,424627.558126808 -2511,424628.2663647858 -2512,424628.9746027636 -2513,424629.6828407414 -2514,424630.3910787192 -2515,424631.099316697 -2516,424631.8075546748 -2517,424632.5157926526 -2518,424633.22403063043 -2519,424633.9322686082 -2520,424634.640506586 -2521,424635.3487445639 -2522,424636.05698254163 -2523,424636.7652205194 -2524,424637.47345849726 -2525,424638.181696475 -2526,424638.88993445283 -2527,424639.59817243065 -2528,424640.3064104084 -2529,424641.0146483862 -2530,424641.7228863641 -2531,424642.4311243418 -2532,424643.1393623196 -2533,424643.8476002975 -2534,424644.55583827524 -2535,424645.26407625305 -2536,424645.97231423086 -2537,424646.6805522086 -2538,424647.3887901865 -2539,424648.0970281642 -2540,424648.805266142 -2541,424649.51350411976 -2542,424650.22174209764 -2543,424650.9299800754 -2544,424651.6382180532 -2545,424652.34645603097 -2546,424653.05469400884 -2547,424653.7629319866 -2548,424654.4711699644 -2549,424655.1794079422 -2550,424655.88764592004 -2551,424656.5958838978 -2552,424657.30412187567 -2553,424658.0123598534 -2554,424658.72059783124 -2555,424659.42883580906 -2556,424660.1370737869 -2557,424660.8453117646 -2558,424661.5535497425 -2559,424662.26178772026 -2560,424662.9700256981 -2561,424663.6782636758 -2562,424664.3865016537 -2563,424665.09473963146 -2564,424665.8029776093 -2565,424666.51121558703 -2566,424667.2194535649 -2567,424667.92769154266 -2568,424668.6359295205 -2569,424669.34416749823 -2570,424670.0524054761 -2571,424670.7606434539 -2572,424671.4688814317 -2573,424672.17711940943 -2574,424672.88535738736 -2575,424673.59359536506 -2576,424674.3018333429 -2577,424675.0100713207 -2578,424675.7183092985 -2579,424676.42654727626 -2580,424677.13478525414 -2581,424677.8430232319 -2582,424678.5512612097 -2583,424679.2594991875 -2584,424679.96773716534 -2585,424680.6759751431 -2586,424681.38421312097 -2587,424682.0924510987 -2588,424682.80068907654 -2589,424683.5089270543 -2590,424684.2171650321 -2591,424684.9254030099 -2592,424685.63364098774 -2593,424686.34187896556 -2594,424687.0501169433 -2595,424687.7583549211 -2596,424688.466592899 -2597,424689.17483087676 -2598,424689.8830688545 -2599,424690.5913068324 -2600,424691.2995448102 -2601,424692.00778278784 -2602,424692.7160207658 -2603,424693.42425874353 -2604,424694.1324967213 -2605,424694.8407346991 -2606,424695.5489726769 -2607,424696.25721065473 -2608,424696.96544863255 -2609,424697.6736866103 -2610,424698.3819245881 -2611,424699.09016256593 -2612,424699.79840054375 -2613,424700.5066385215 -2614,424701.2148764993 -2615,424701.92311447713 -2616,424702.63135245495 -2617,424703.3395904327 -2618,424704.0478284105 -2619,424704.75606638833 -2620,424705.46430436615 -2621,424706.17254234396 -2622,424706.8807803218 -2623,424707.58901829954 -2624,424708.2972562774 -2625,424709.00549425517 -2626,424709.7137322329 -2627,424710.4219702108 -2628,424711.1302081886 -2629,424711.83844616637 -2630,424712.5466841442 -2631,424713.25492212194 -2632,424713.9631600998 -2633,424714.67139807757 -2634,424715.3796360554 -2635,424716.08787403314 -2636,424716.796112011 -2637,424717.50434998877 -2638,424718.2125879666 -2639,424718.92082594434 -2640,424719.6290639222 -2641,424720.3373019 -2642,424721.0455398778 -2643,424721.7537778556 -2644,424722.4620158335 -2645,424723.1702538112 -2646,424723.87849178904 -2647,424724.5867297668 -2648,424725.2949677446 -2649,424726.00320572243 -2650,424726.71144370025 -2651,424727.41968167794 -2652,424728.1279196559 -2653,424728.83615763363 -2654,424729.5443956114 -2655,424730.2526335892 -2656,424730.9608715671 -2657,424731.66910954483 -2658,424732.37734752265 -2659,424733.0855855004 -2660,424733.7938234783 -2661,424734.50206145603 -2662,424735.21029943385 -2663,424735.9185374116 -2664,424736.6267753895 -2665,424737.3350133672 -2666,424738.04325134505 -2667,424738.75148932275 -2668,424739.4597273006 -2669,424740.16796527844 -2670,424740.8762032562 -2671,424741.584441234 -2672,424742.2926792119 -2673,424743.0009171896 -2674,424743.70915516745 -2675,424744.4173931452 -2676,424745.12563112297 -2677,424745.83386910084 -2678,424746.54210707865 -2679,424747.2503450564 -2680,424747.9585830342 -2681,424748.66682101204 -2682,424749.37505898986 -2683,424750.0832969676 -2684,424750.7915349454 -2685,424751.4997729233 -2686,424752.20801090106 -2687,424752.9162488788 -2688,424753.6244868567 -2689,424754.33272483444 -2690,424755.04096281226 -2691,424755.7492007901 -2692,424756.45743876783 -2693,424757.1656767457 -2694,424757.8739147235 -2695,424758.5821527012 -2696,424759.2903906791 -2697,424759.9986286569 -2698,424760.70686663466 -2699,424761.4151046125 -2700,424762.1233425903 -2701,424762.83158056805 -2702,424763.5398185459 -2703,424764.2480565237 -2704,424764.95629450143 -2705,424765.6645324793 -2706,424766.3727704571 -2707,424767.0810084349 -2708,424767.7892464127 -2709,424768.49748439057 -2710,424769.2057223683 -2711,424769.91396034614 -2712,424770.6221983239 -2713,424771.33043630177 -2714,424772.0386742795 -2715,424772.74691225734 -2716,424773.45515023515 -2717,424774.16338821297 -2718,424774.8716261908 -2719,424775.5798641686 -2720,424776.2881021463 -2721,424776.9963401242 -2722,424777.704578102 -2723,424778.41281607974 -2724,424779.12105405756 -2725,424779.82929203537 -2726,424780.5375300131 -2727,424781.245767991 -2728,424781.95400596876 -2729,424782.6622439466 -2730,424783.3704819244 -2731,424784.0787199022 -2732,424784.78695788 -2733,424785.4951958578 -2734,424786.20343383553 -2735,424786.91167181346 -2736,424787.6199097911 -2737,424788.3281477689 -2738,424789.0363857468 -2739,424789.74462372455 -2740,424790.4528617023 -2741,424791.1610996802 -2742,424791.86933765793 -2743,424792.57757563575 -2744,424793.28581361356 -2745,424793.9940515913 -2746,424794.7022895692 -2747,424795.410527547 -2748,424796.1187655247 -2749,424796.8270035026 -2750,424797.5352414804 -2751,424798.24347945815 -2752,424798.95171743596 -2753,424799.6599554138 -2754,424800.3681933916 -2755,424801.0764313694 -2756,424801.78466934717 -2757,424802.49290732504 -2758,424803.2011453028 -2759,424803.9093832806 -2760,424804.6176212584 -2761,424805.3258592362 -2762,424806.03409721394 -2763,424806.74233519187 -2764,424807.45057316957 -2765,424808.1588111474 -2766,424808.8670491252 -2767,424809.575287103 -2768,424810.2835250808 -2769,424810.99176305864 -2770,424811.7000010364 -2771,424812.4082390143 -2772,424813.116476992 -2773,424813.82471496984 -2774,424814.5329529476 -2775,424815.2411909255 -2776,424815.94942890323 -2777,424816.65766688104 -2778,424817.3659048588 -2779,424818.0741428367 -2780,424818.78238081443 -2781,424819.49061879225 -2782,424820.19885677006 -2783,424820.9070947479 -2784,424821.61533272563 -2785,424822.3235707035 -2786,424823.0318086812 -2787,424823.7400466591 -2788,424824.4482846369 -2789,424825.15652261465 -2790,424825.8647605924 -2791,424826.57299857034 -2792,424827.28123654803 -2793,424827.98947452585 -2794,424828.69771250366 -2795,424829.4059504815 -2796,424830.1141884593 -2797,424830.8224264371 -2798,424831.5306644148 -2799,424832.23890239274 -2800,424832.94714037044 -2801,424833.65537834825 -2802,424834.363616326 -2803,424835.0718543039 -2804,424835.7800922817 -2805,424836.48833025945 -2806,424837.1965682372 -2807,424837.90480621514 -2808,424838.61304419284 -2809,424839.32128217065 -2810,424840.02952014847 -2811,424840.7377581262 -2812,424841.44599610404 -2813,424842.1542340819 -2814,424842.86247205967 -2815,424843.5707100374 -2816,424844.2789480153 -2817,424844.9871859931 -2818,424845.6954239709 -2819,424846.4036619487 -2820,424847.1118999265 -2821,424847.8201379043 -2822,424848.5283758821 -2823,424849.2366138599 -2824,424849.9448518377 -2825,424850.6530898155 -2826,424851.3613277933 -2827,424852.0695657711 -2828,424852.7778037489 -2829,424853.4860417267 -2830,424854.1942797045 -2831,424854.9025176823 -2832,424855.61075566016 -2833,424856.3189936379 -2834,424857.0272316157 -2835,424857.73546959355 -2836,424858.4437075713 -2837,424859.1519455491 -2838,424859.86018352694 -2839,424860.5684215047 -2840,424861.27665948257 -2841,424861.9848974604 -2842,424862.69313543814 -2843,424863.40137341595 -2844,424864.10961139377 -2845,424864.8178493716 -2846,424865.52608734934 -2847,424866.23432532715 -2848,424866.94256330497 -2849,424867.6508012828 -2850,424868.35903926054 -2851,424869.06727723836 -2852,424869.7755152161 -2853,424870.483753194 -2854,424871.1919911718 -2855,424871.90022914956 -2856,424872.6084671273 -2857,424873.31670510524 -2858,424874.02494308294 -2859,424874.73318106076 -2860,424875.4414190386 -2861,424876.1496570164 -2862,424876.8578949941 -2863,424877.566132972 -2864,424878.2743709497 -2865,424878.98260892753 -2866,424879.69084690535 -2867,424880.39908488316 -2868,424881.1073228609 -2869,424881.8155608388 -2870,424882.52379881655 -2871,424883.23203679436 -2872,424883.9402747721 -2873,424884.64851275 -2874,424885.35675072775 -2875,424886.06498870556 -2876,424886.7732266834 -2877,424887.4814646612 -2878,424888.18970263895 -2879,424888.8979406168 -2880,424889.6061785945 -2881,424890.3144165724 -2882,424891.0226545502 -2883,424891.73089252796 -2884,424892.4391305057 -2885,424893.14736848365 -2886,424893.8556064614 -2887,424894.56384443917 -2888,424895.272082417 -2889,424895.98032039485 -2890,424896.6885583726 -2891,424897.3967963504 -2892,424898.1050343282 -2893,424898.81327230606 -2894,424899.5215102838 -2895,424900.2297482616 -2896,424900.9379862394 -2897,424901.6462242172 -2898,424902.354462195 -2899,424903.0627001728 -2900,424903.7709381506 -2901,424904.4791761284 -2902,424905.1874141062 -2903,424905.89565208403 -2904,424906.60389006184 -2905,424907.31212803966 -2906,424908.0203660174 -2907,424908.7286039953 -2908,424909.43684197305 -2909,424910.1450799508 -2910,424910.8533179287 -2911,424911.5615559065 -2912,424912.2697938842 -2913,424912.97803186206 -2914,424913.6862698399 -2915,424914.39450781763 -2916,424915.10274579545 -2917,424915.81098377326 -2918,424916.5192217511 -2919,424917.2274597289 -2920,424917.93569770665 -2921,424918.64393568446 -2922,424919.3521736623 -2923,424920.0604116401 -2924,424920.76864961785 -2925,424921.47688759567 -2926,424922.18512557354 -2927,424922.8933635513 -2928,424923.601601529 -2929,424924.3098395069 -2930,424925.0180774847 -2931,424925.72631546244 -2932,424926.43455344025 -2933,424927.14279141807 -2934,424927.85102939577 -2935,424928.5592673737 -2936,424929.26750535145 -2937,424929.9757433292 -2938,424930.683981307 -2939,424931.3922192849 -2940,424932.10045726266 -2941,424932.80869524047 -2942,424933.5169332182 -2943,424934.2251711961 -2944,424934.93340917386 -2945,424935.6416471517 -2946,424936.3498851295 -2947,424937.0581231073 -2948,424937.76636108506 -2949,424938.47459906293 -2950,424939.18283704063 -2951,424939.8910750185 -2952,424940.5993129963 -2953,424941.3075509741 -2954,424942.0157889519 -2955,424942.72402692976 -2956,424943.43226490746 -2957,424944.14050288533 -2958,424944.8487408631 -2959,424945.5569788409 -2960,424946.2652168187 -2961,424946.97345479653 -2962,424947.6816927743 -2963,424948.38993075216 -2964,424949.0981687299 -2965,424949.80640670774 -2966,424950.5146446855 -2967,424951.22288266337 -2968,424951.9311206411 -2969,424952.63935861894 -2970,424953.3475965967 -2971,424954.05583457457 -2972,424954.7640725523 -2973,424955.47231053014 -2974,424956.18054850795 -2975,424956.88878648577 -2976,424957.5970244636 -2977,424958.3052624414 -2978,424959.01350041915 -2979,424959.721738397 -2980,424960.4299763748 -2981,424961.13821435254 -2982,424961.8464523304 -2983,424962.5546903082 -2984,424963.262928286 -2985,424963.9711662638 -2986,424964.6794042416 -2987,424965.3876422193 -2988,424966.09588019724 -2989,424966.804118175 -2990,424967.51235615276 -2991,424968.2205941306 -2992,424968.92883210845 -2993,424969.6370700862 -2994,424970.345308064 -2995,424971.0535460417 -2996,424971.76178401965 -2997,424972.47002199735 -2998,424973.17825997516 -2999,424973.886497953 -3000,424974.5947359308 -3001,424975.3029739086 -3002,424976.0112118864 -3003,424976.7194498641 -3004,424977.42768784205 -3005,424978.1359258198 -3006,424978.84416379756 -3007,424979.5524017754 -3008,424980.26063975325 -3009,424980.96887773095 -3010,424981.6771157088 -3011,424982.3853536866 -3012,424983.0935916644 -3013,424983.8018296422 -3014,424984.51006762 -3015,424985.2183055978 -3016,424985.92654357565 -3017,424986.6347815534 -3018,424987.3430195312 -3019,424988.051257509 -3020,424988.75949548685 -3021,424989.46773346467 -3022,424990.1759714424 -3023,424990.8842094202 -3024,424991.5924473981 -3025,424992.3006853758 -3026,424993.0089233536 -3027,424993.71716133144 -3028,424994.4253993092 -3029,424995.1336372871 -3030,424995.8418752649 -3031,424996.5501132426 -3032,424997.25835122046 -3033,424997.9665891983 -3034,424998.67482717603 -3035,424999.38306515384 -3036,425000.09130313166 -3037,425000.7995411095 -3038,425001.5077790873 -3039,425002.21601706505 -3040,425002.92425504286 -3041,425003.6324930207 -3042,425004.3407309985 -3043,425005.0489689763 -3044,425005.75720695406 -3045,425006.4654449319 -3046,425007.17368290975 -3047,425007.88192088745 -3048,425008.59015886526 -3049,425009.29839684314 -3050,425010.0066348209 -3051,425010.7148727987 -3052,425011.4231107765 -3053,425012.1313487543 -3054,425012.83958673215 -3055,425013.5478247099 -3056,425014.25606268767 -3057,425014.96430066554 -3058,425015.67253864335 -3059,425016.38077662105 -3060,425017.0890145989 -3061,425017.7972525767 -3062,425018.5054905545 -3063,425019.21372853225 -3064,425019.92196651007 -3065,425020.63020448794 -3066,425021.3384424657 -3067,425022.04668044345 -3068,425022.7549184213 -3069,425023.463156399 -3070,425024.1713943769 -3071,425024.8796323547 -3072,425025.58787033247 -3073,425026.2961083102 -3074,425027.00434628816 -3075,425027.71258426586 -3076,425028.4208222437 -3077,425029.1290602215 -3078,425029.8372981993 -3079,425030.5455361771 -3080,425031.25377415493 -3081,425031.9620121327 -3082,425032.67025011056 -3083,425033.3784880883 -3084,425034.08672606613 -3085,425034.7949640439 -3086,425035.50320202176 -3087,425036.2114399996 -3088,425036.91967797733 -3089,425037.6279159551 -3090,425038.336153933 -3091,425039.0443919107 -3092,425039.75262988854 -3093,425040.46086786635 -3094,425041.16910584416 -3095,425041.8773438219 -3096,425042.5855817998 -3097,425043.2938197775 -3098,425044.00205775537 -3099,425044.7102957332 -3100,425045.41853371094 -3101,425046.12677168875 -3102,425046.8350096666 -3103,425047.5432476443 -3104,425048.2514856222 -3105,425048.95972359995 -3106,425049.66796157777 -3107,425050.3761995556 -3108,425051.0844375334 -3109,425051.79267551115 -3110,425052.500913489 -3111,425053.2091514668 -3112,425053.9173894446 -3113,425054.62562742236 -3114,425055.33386540023 -3115,425056.04210337804 -3116,425056.7503413558 -3117,425057.45857933356 -3118,425058.1668173115 -3119,425058.8750552892 -3120,425059.583293267 -3121,425060.2915312448 -3122,425060.9997692226 -3123,425061.70800720045 -3124,425062.41624517826 -3125,425063.12448315596 -3126,425063.83272113383 -3127,425064.5409591116 -3128,425065.2491970894 -3129,425065.95743506716 -3130,425066.665673045 -3131,425067.3739110228 -3132,425068.0821490006 -3133,425068.79038697836 -3134,425069.4986249562 -3135,425070.206862934 -3136,425070.9151009118 -3137,425071.6233388896 -3138,425072.3315768674 -3139,425073.0398148452 -3140,425073.74805282307 -3141,425074.45629080076 -3142,425075.1645287786 -3143,425075.87276675645 -3144,425076.5810047342 -3145,425077.28924271197 -3146,425077.99748068984 -3147,425078.7057186676 -3148,425079.4139566454 -3149,425080.1221946232 -3150,425080.83043260104 -3151,425081.53867057886 -3152,425082.24690855667 -3153,425082.9551465344 -3154,425083.66338451224 -3155,425084.37162249006 -3156,425085.0798604679 -3157,425085.7880984456 -3158,425086.49633642344 -3159,425087.2045744012 -3160,425087.9128123791 -3161,425088.6210503568 -3162,425089.32928833464 -3163,425090.0375263124 -3164,425090.7457642903 -3165,425091.4540022681 -3166,425092.16224024585 -3167,425092.8704782236 -3168,425093.57871620153 -3169,425094.2869541793 -3170,425094.99519215705 -3171,425095.70343013486 -3172,425096.41166811273 -3173,425097.1199060905 -3174,425097.8281440683 -3175,425098.53638204606 -3176,425099.24462002394 -3177,425099.9528580017 -3178,425100.6610959795 -3179,425101.36933395726 -3180,425102.07757193514 -3181,425102.7858099129 -3182,425103.4940478907 -3183,425104.20228586846 -3184,425104.91052384634 -3185,425105.6187618241 -3186,425106.3269998019 -3187,425107.0352377797 -3188,425107.74347575754 -3189,425108.45171373524 -3190,425109.15995171317 -3191,425109.86818969087 -3192,425110.5764276687 -3193,425111.2846656465 -3194,425111.9929036243 -3195,425112.701141602 -3196,425113.40937957994 -3197,425114.1176175577 -3198,425114.82585553546 -3199,425115.53409351327 -3200,425116.24233149114 -3201,425116.9505694689 -3202,425117.6588074467 -3203,425118.3670454245 -3204,425119.0752834023 -3205,425119.7835213801 -3206,425120.4917593579 -3207,425121.1999973357 -3208,425121.9082353135 -3209,425122.61647329136 -3210,425123.3247112691 -3211,425124.0329492469 -3212,425124.74118722475 -3213,425125.44942520256 -3214,425126.1576631803 -3215,425126.86590115813 -3216,425127.57413913595 -3217,425128.2823771137 -3218,425128.9906150916 -3219,425129.69885306933 -3220,425130.4070910471 -3221,425131.11532902496 -3222,425131.8235670028 -3223,425132.53180498054 -3224,425133.24004295835 -3225,425133.94828093617 -3226,425134.656518914 -3227,425135.36475689174 -3228,425136.07299486955 -3229,425136.78123284737 -3230,425137.4894708252 -3231,425138.19770880294 -3232,425138.90594678075 -3233,425139.61418475857 -3234,425140.3224227364 -3235,425141.03066071414 -3236,425141.73889869195 -3237,425142.4471366698 -3238,425143.1553746476 -3239,425143.86361262534 -3240,425144.5718506032 -3241,425145.280088581 -3242,425145.9883265588 -3243,425146.6965645366 -3244,425147.4048025144 -3245,425148.11304049223 -3246,425148.82127847004 -3247,425149.5295164478 -3248,425150.2377544256 -3249,425150.9459924034 -3250,425151.65423038125 -3251,425152.36246835906 -3252,425153.0707063368 -3253,425153.77894431463 -3254,425154.48718229245 -3255,425155.19542027026 -3256,425155.90365824796 -3257,425156.61189622583 -3258,425157.3201342036 -3259,425158.0283721814 -3260,425158.7366101592 -3261,425159.444848137 -3262,425160.15308611485 -3263,425160.86132409266 -3264,425161.56956207036 -3265,425162.27780004824 -3266,425162.98603802605 -3267,425163.6942760038 -3268,425164.4025139816 -3269,425165.11075195944 -3270,425165.8189899372 -3271,425166.52722791507 -3272,425167.2354658928 -3273,425167.9437038706 -3274,425168.65194184845 -3275,425169.36017982627 -3276,425170.068417804 -3277,425170.77665578184 -3278,425171.48489375965 -3279,425172.19313173747 -3280,425172.9013697152 -3281,425173.60960769304 -3282,425174.31784567086 -3283,425175.02608364867 -3284,425175.7343216264 -3285,425176.4425596043 -3286,425177.15079758206 -3287,425177.8590355599 -3288,425178.5672735377 -3289,425179.27551151544 -3290,425179.9837494933 -3291,425180.69198747113 -3292,425181.40022544883 -3293,425182.1084634267 -3294,425182.81670140446 -3295,425183.5249393823 -3296,425184.2331773601 -3297,425184.9414153379 -3298,425185.64965331566 -3299,425186.35789129353 -3300,425187.0661292713 -3301,425187.7743672491 -3302,425188.48260522686 -3303,425189.19084320473 -3304,425189.89908118255 -3305,425190.6073191603 -3306,425191.31555713806 -3307,425192.023795116 -3308,425192.7320330937 -3309,425193.4402710715 -3310,425194.1485090493 -3311,425194.85674702714 -3312,425195.56498500495 -3313,425196.27322298277 -3314,425196.98146096047 -3315,425197.6896989384 -3316,425198.39793691615 -3317,425199.1061748939 -3318,425199.8144128717 -3319,425200.5226508496 -3320,425201.23088882724 -3321,425201.93912680517 -3322,425202.64736478287 -3323,425203.3556027607 -3324,425204.0638407385 -3325,425204.7720787163 -3326,425205.4803166941 -3327,425206.18855467194 -3328,425206.8967926497 -3329,425207.6050306276 -3330,425208.31326860527 -3331,425209.02150658314 -3332,425209.72974456096 -3333,425210.4379825387 -3334,425211.14622051653 -3335,425211.8544584944 -3336,425212.5626964721 -3337,425213.27093445 -3338,425213.97917242773 -3339,425214.6874104055 -3340,425215.39564838336 -3341,425216.1038863612 -3342,425216.81212433893 -3343,425217.52036231675 -3344,425218.22860029456 -3345,425218.9368382724 -3346,425219.64507625013 -3347,425220.35331422795 -3348,425221.0615522058 -3349,425221.7697901836 -3350,425222.47802816133 -3351,425223.1862661392 -3352,425223.89450411696 -3353,425224.6027420948 -3354,425225.3109800726 -3355,425226.01921805035 -3356,425226.72745602817 -3357,425227.43569400604 -3358,425228.14393198374 -3359,425228.85216996155 -3360,425229.5604079394 -3361,425230.2686459172 -3362,425230.976883895 -3363,425231.6851218728 -3364,425232.39335985057 -3365,425233.10159782844 -3366,425233.8098358062 -3367,425234.51807378395 -3368,425235.2263117618 -3369,425235.93454973964 -3370,425236.6427877174 -3371,425237.3510256952 -3372,425238.059263673 -3373,425238.76750165084 -3374,425239.4757396286 -3375,425240.1839776064 -3376,425240.8922155843 -3377,425241.60045356205 -3378,425242.3086915398 -3379,425243.0169295177 -3380,425243.7251674954 -3381,425244.43340547325 -3382,425245.14164345106 -3383,425245.8498814288 -3384,425246.55811940663 -3385,425247.2663573845 -3386,425247.9745953622 -3387,425248.6828333401 -3388,425249.3910713178 -3389,425250.09930929565 -3390,425250.8075472734 -3391,425251.5157852512 -3392,425252.224023229 -3393,425252.93226120685 -3394,425253.6404991846 -3395,425254.3487371624 -3396,425255.0569751402 -3397,425255.76521311805 -3398,425256.47345109587 -3399,425257.1816890736 -3400,425257.8899270514 -3401,425258.5981650293 -3402,425259.306403007 -3403,425260.0146409848 -3404,425260.72287896264 -3405,425261.43111694045 -3406,425262.1393549182 -3407,425262.8475928961 -3408,425263.5558308738 -3409,425264.26406885165 -3410,425264.97230682947 -3411,425265.6805448072 -3412,425266.38878278504 -3413,425267.0970207629 -3414,425267.8052587407 -3415,425268.5134967185 -3416,425269.22173469624 -3417,425269.9299726741 -3418,425270.6382106519 -3419,425271.3464486297 -3420,425272.0546866075 -3421,425272.7629245853 -3422,425273.4711625631 -3423,425274.17940054095 -3424,425274.88763851864 -3425,425275.59587649646 -3426,425276.30411447433 -3427,425277.0123524521 -3428,425277.72059042985 -3429,425278.4288284077 -3430,425279.1370663855 -3431,425279.8453043633 -3432,425280.5535423411 -3433,425281.2617803189 -3434,425281.97001829674 -3435,425282.67825627455 -3436,425283.3864942523 -3437,425284.0947322301 -3438,425284.80297020794 -3439,425285.51120818575 -3440,425286.2194461635 -3441,425286.9276841413 -3442,425287.63592211914 -3443,425288.34416009695 -3444,425289.0523980747 -3445,425289.7606360525 -3446,425290.46887403034 -3447,425291.17711200815 -3448,425291.88534998597 -3449,425292.5935879637 -3450,425293.3018259415 -3451,425294.0100639194 -3452,425294.71830189705 -3453,425295.42653987487 -3454,425296.13477785274 -3455,425296.8430158305 -3456,425297.5512538083 -3457,425298.2594917861 -3458,425298.96772976394 -3459,425299.67596774176 -3460,425300.3842057195 -3461,425301.09244369733 -3462,425301.80068167514 -3463,425302.50891965296 -3464,425303.2171576307 -3465,425303.92539560853 -3466,425304.6336335863 -3467,425305.34187156416 -3468,425306.0501095419 -3469,425306.75834751973 -3470,425307.46658549755 -3471,425308.17482347536 -3472,425308.8830614531 -3473,425309.591299431 -3474,425310.29953740875 -3475,425311.00777538656 -3476,425311.7160133644 -3477,425312.4242513422 -3478,425313.1324893199 -3479,425313.8407272978 -3480,425314.5489652756 -3481,425315.25720325334 -3482,425315.96544123115 -3483,425316.673679209 -3484,425317.3819171868 -3485,425318.0901551646 -3486,425318.79839314235 -3487,425319.5066311202 -3488,425320.214869098 -3489,425320.9231070758 -3490,425321.63134505355 -3491,425322.3395830314 -3492,425323.04782100924 -3493,425323.756058987 -3494,425324.46429696475 -3495,425325.1725349427 -3496,425325.8807729204 -3497,425326.5890108982 -3498,425327.297248876 -3499,425328.0054868538 -3500,425328.7137248316 -3501,425329.42196280946 -3502,425330.1302007872 -3503,425330.83843876503 -3504,425331.54667674284 -3505,425332.25491472066 -3506,425332.9631526984 -3507,425333.6713906763 -3508,425334.37962865405 -3509,425335.08786663186 -3510,425335.7961046096 -3511,425336.5043425875 -3512,425337.21258056525 -3513,425337.92081854306 -3514,425338.62905652076 -3515,425339.33729449863 -3516,425340.0455324764 -3517,425340.7537704542 -3518,425341.462008432 -3519,425342.1702464098 -3520,425342.87848438765 -3521,425343.58672236546 -3522,425344.29496034316 -3523,425345.00319832104 -3524,425345.7114362989 -3525,425346.4196742766 -3526,425347.1279122545 -3527,425347.83615023224 -3528,425348.54438821005 -3529,425349.25262618787 -3530,425349.9608641657 -3531,425350.6691021434 -3532,425351.3773401213 -3533,425352.08557809907 -3534,425352.7938160769 -3535,425353.50205405464 -3536,425354.2102920325 -3537,425354.91853001027 -3538,425355.6267679881 -3539,425356.33500596584 -3540,425357.0432439437 -3541,425357.75148192147 -3542,425358.4597198993 -3543,425359.16795787704 -3544,425359.8761958549 -3545,425360.58443383273 -3546,425361.2926718105 -3547,425362.00090978824 -3548,425362.7091477662 -3549,425363.41738574393 -3550,425364.1256237217 -3551,425364.8338616995 -3552,425365.5420996774 -3553,425366.2503376551 -3554,425366.95857563295 -3555,425367.6668136107 -3556,425368.37505158846 -3557,425369.08328956633 -3558,425369.79152754415 -3559,425370.4997655219 -3560,425371.2080034997 -3561,425371.91624147753 -3562,425372.62447945535 -3563,425373.3327174331 -3564,425374.0409554109 -3565,425374.74919338874 -3566,425375.45743136655 -3567,425376.1656693443 -3568,425376.8739073222 -3569,425377.58214529994 -3570,425378.29038327775 -3571,425378.99862125557 -3572,425379.7068592333 -3573,425380.4150972112 -3574,425381.123335189 -3575,425381.8315731667 -3576,425382.5398111446 -3577,425383.2480491224 -3578,425383.95628710015 -3579,425384.66452507797 -3580,425385.3727630558 -3581,425386.0810010336 -3582,425386.7892390114 -3583,425387.4974769891 -3584,425388.2057149669 -3585,425388.91395294474 -3586,425389.62219092256 -3587,425390.3304289003 -3588,425391.0386668781 -3589,425391.74690485594 -3590,425392.45514283376 -3591,425393.1633808115 -3592,425393.87161878933 -3593,425394.5798567672 -3594,425395.28809474496 -3595,425395.9963327228 -3596,425396.7045707006 -3597,425397.4128086783 -3598,425398.1210466562 -3599,425398.829284634 -3600,425399.53752261173 -3601,425400.24576058955 -3602,425400.9539985674 -3603,425401.6622365451 -3604,425402.370474523 -3605,425403.07871250075 -3606,425403.78695047856 -3607,425404.4951884564 -3608,425405.2034264342 -3609,425405.911664412 -3610,425406.6199023898 -3611,425407.3281403676 -3612,425408.03637834545 -3613,425408.74461632315 -3614,425409.452854301 -3615,425410.16109227884 -3616,425410.8693302566 -3617,425411.5775682344 -3618,425412.2858062123 -3619,425412.99404419 -3620,425413.70228216785 -3621,425414.4105201456 -3622,425415.1187581234 -3623,425415.82699610124 -3624,425416.53523407906 -3625,425417.24347205675 -3626,425417.9517100347 -3627,425418.65994801244 -3628,425419.3681859902 -3629,425420.076423968 -3630,425420.7846619459 -3631,425421.49289992364 -3632,425422.20113790146 -3633,425422.9093758792 -3634,425423.6176138571 -3635,425424.32585183484 -3636,425425.03408981266 -3637,425425.7423277905 -3638,425426.4505657683 -3639,425427.15880374605 -3640,425427.8670417239 -3641,425428.5752797016 -3642,425429.2835176795 -3643,425429.9917556573 -3644,425430.69999363506 -3645,425431.4082316129 -3646,425432.11646959075 -3647,425432.8247075684 -3648,425433.53294554626 -3649,425434.241183524 -3650,425434.94942150183 -3651,425435.65765947965 -3652,425436.36589745746 -3653,425437.0741354352 -3654,425437.78237341304 -3655,425438.49061139085 -3656,425439.19884936867 -3657,425439.9070873464 -3658,425440.61532532424 -3659,425441.3235633021 -3660,425442.03180127987 -3661,425442.7400392576 -3662,425443.4482772355 -3663,425444.15651521325 -3664,425444.86475319107 -3665,425445.5729911689 -3666,425446.28122914664 -3667,425446.9894671245 -3668,425447.6977051023 -3669,425448.40594308 -3670,425449.1141810579 -3671,425449.8224190357 -3672,425450.53065701347 -3673,425451.2388949913 -3674,425451.9471329691 -3675,425452.65537094686 -3676,425453.36360892473 -3677,425454.0718469025 -3678,425454.7800848803 -3679,425455.4883228581 -3680,425456.19656083593 -3681,425456.90479881375 -3682,425457.6130367915 -3683,425458.3212747693 -3684,425459.0295127472 -3685,425459.7377507249 -3686,425460.4459887027 -3687,425461.1542266806 -3688,425461.86246465833 -3689,425462.5707026361 -3690,425463.27894061396 -3691,425463.98717859166 -3692,425464.69541656954 -3693,425465.40365454735 -3694,425466.1118925251 -3695,425466.8201305029 -3696,425467.5283684808 -3697,425468.23660645855 -3698,425468.94484443637 -3699,425469.6530824141 -3700,425470.361320392 -3701,425471.06955836975 -3702,425471.77779634757 -3703,425472.4860343254 -3704,425473.1942723032 -3705,425473.90251028095 -3706,425474.6107482588 -3707,425475.3189862365 -3708,425476.0272242144 -3709,425476.7354621922 -3710,425477.44370016997 -3711,425478.15193814767 -3712,425478.86017612566 -3713,425479.5684141033 -3714,425480.2766520811 -3715,425480.9848900589 -3716,425481.69312803674 -3717,425482.40136601456 -3718,425483.1096039924 -3719,425483.8178419701 -3720,425484.526079948 -3721,425485.23431792576 -3722,425485.9425559036 -3723,425486.65079388133 -3724,425487.3590318592 -3725,425488.06726983696 -3726,425488.7755078148 -3727,425489.48374579253 -3728,425490.1919837704 -3729,425490.90022174816 -3730,425491.608459726 -3731,425492.3166977038 -3732,425493.02493568155 -3733,425493.73317365936 -3734,425494.44141163724 -3735,425495.14964961493 -3736,425495.85788759275 -3737,425496.5661255706 -3738,425497.2743635484 -3739,425497.9826015262 -3740,425498.690839504 -3741,425499.3990774818 -3742,425500.10731545964 -3743,425500.8155534374 -3744,425501.5237914152 -3745,425502.232029393 -3746,425502.94026737084 -3747,425503.6485053486 -3748,425504.3567433264 -3749,425505.0649813042 -3750,425505.77321928204 -3751,425506.4814572598 -3752,425507.1896952376 -3753,425507.8979332155 -3754,425508.60617119324 -3755,425509.314409171 -3756,425510.0226471489 -3757,425510.7308851266 -3758,425511.43912310444 -3759,425512.14736108226 -3760,425512.85559906 -3761,425513.56383703783 -3762,425514.2720750157 -3763,425514.9803129934 -3764,425515.6885509712 -3765,425516.3967889491 -3766,425517.10502692685 -3767,425517.81326490466 -3768,425518.5215028825 -3769,425519.2297408603 -3770,425519.9379788381 -3771,425520.64621681586 -3772,425521.3544547937 -3773,425522.0626927715 -3774,425522.7709307493 -3775,425523.479168727 -3776,425524.1874067049 -3777,425524.8956446826 -3778,425525.60388266045 -3779,425526.3121206382 -3780,425527.020358616 -3781,425527.72859659384 -3782,425528.43683457165 -3783,425529.1450725494 -3784,425529.8533105273 -3785,425530.56154850504 -3786,425531.26978648285 -3787,425531.97802446067 -3788,425532.6862624385 -3789,425533.39450041624 -3790,425534.1027383941 -3791,425534.81097637187 -3792,425535.5192143497 -3793,425536.2274523275 -3794,425536.9356903053 -3795,425537.6439282831 -3796,425538.3521662609 -3797,425539.0604042387 -3798,425539.7686422165 -3799,425540.4768801943 -3800,425541.1851181721 -3801,425541.8933561499 -3802,425542.6015941277 -3803,425543.30983210553 -3804,425544.0180700833 -3805,425544.7263080611 -3806,425545.434546039 -3807,425546.14278401673 -3808,425546.8510219945 -3809,425547.55925997236 -3810,425548.2674979501 -3811,425548.97573592793 -3812,425549.68397390575 -3813,425550.39221188356 -3814,425551.1004498613 -3815,425551.8086878392 -3816,425552.51692581695 -3817,425553.2251637947 -3818,425553.9334017726 -3819,425554.6416397504 -3820,425555.34987772815 -3821,425556.05811570596 -3822,425556.7663536837 -3823,425557.4745916616 -3824,425558.18282963935 -3825,425558.89106761717 -3826,425559.5993055949 -3827,425560.3075435728 -3828,425561.0157815506 -3829,425561.72401952837 -3830,425562.4322575061 -3831,425563.14049548405 -3832,425563.8487334618 -3833,425564.55697143957 -3834,425565.2652094174 -3835,425565.97344739526 -3836,425566.68168537295 -3837,425567.3899233508 -3838,425568.0981613286 -3839,425568.8063993064 -3840,425569.5146372842 -3841,425570.222875262 -3842,425570.9311132398 -3843,425571.6393512176 -3844,425572.34758919536 -3845,425573.0558271732 -3846,425573.7640651509 -3847,425574.4723031288 -3848,425575.18054110656 -3849,425575.8887790844 -3850,425576.59701706213 -3851,425577.30525504 -3852,425578.01349301776 -3853,425578.7217309956 -3854,425579.4299689734 -3855,425580.1382069512 -3856,425580.846444929 -3857,425581.55468290683 -3858,425582.26292088453 -3859,425582.97115886246 -3860,425583.6793968402 -3861,425584.387634818 -3862,425585.0958727958 -3863,425585.80411077366 -3864,425586.5123487514 -3865,425587.22058672924 -3866,425587.928824707 -3867,425588.6370626848 -3868,425589.3453006626 -3869,425590.05353864044 -3870,425590.7617766182 -3871,425591.470014596 -3872,425592.1782525738 -3873,425592.88649055164 -3874,425593.5947285294 -3875,425594.3029665072 -3876,425595.0112044851 -3877,425595.71944246284 -3878,425596.42768044065 -3879,425597.13591841847 -3880,425597.8441563962 -3881,425598.5523943741 -3882,425599.26063235186 -3883,425599.9688703296 -3884,425600.6771083075 -3885,425601.3853462853 -3886,425602.093584263 -3887,425602.8018222409 -3888,425603.5100602187 -3889,425604.21829819644 -3890,425604.92653617426 -3891,425605.6347741521 -3892,425606.3430121299 -3893,425607.0512501077 -3894,425607.75948808546 -3895,425608.4677260633 -3896,425609.1759640411 -3897,425609.8842020189 -3898,425610.59243999666 -3899,425611.3006779745 -3900,425612.0089159523 -3901,425612.7171539301 -3902,425613.42539190786 -3903,425614.13362988573 -3904,425614.84186786355 -3905,425615.5501058413 -3906,425616.2583438191 -3907,425616.96658179694 -3908,425617.6748197746 -3909,425618.3830577525 -3910,425619.09129573026 -3911,425619.799533708 -3912,425620.50777168584 -3913,425621.2160096637 -3914,425621.92424764147 -3915,425622.6324856193 -3916,425623.34072359704 -3917,425624.0489615749 -3918,425624.75719955267 -3919,425625.4654375305 -3920,425626.1736755083 -3921,425626.8819134861 -3922,425627.59015146387 -3923,425628.29838944174 -3924,425629.00662741944 -3925,425629.7148653973 -3926,425630.4231033751 -3927,425631.1313413529 -3928,425631.8395793307 -3929,425632.5478173086 -3930,425633.25605528627 -3931,425633.96429326414 -3932,425634.6725312419 -3933,425635.3807692197 -3934,425636.08900719753 -3935,425636.79724517534 -3936,425637.50548315304 -3937,425638.213721131 -3938,425638.92195910873 -3939,425639.6301970865 -3940,425640.3384350643 -3941,425641.0466730422 -3942,425641.75491101993 -3943,425642.46314899775 -3944,425643.1713869755 -3945,425643.8796249534 -3946,425644.58786293113 -3947,425645.29610090895 -3948,425646.00433888676 -3949,425646.7125768646 -3950,425647.4208148424 -3951,425648.1290528202 -3952,425648.8372907979 -3953,425649.54552877584 -3954,425650.2537667536 -3955,425650.96200473135 -3956,425651.67024270917 -3957,425652.378480687 -3958,425653.08671866474 -3959,425653.7949566426 -3960,425654.50319462037 -3961,425655.2114325982 -3962,425655.919670576 -3963,425656.6279085538 -3964,425657.3361465316 -3965,425658.0443845094 -3966,425658.7526224872 -3967,425659.4608604651 -3968,425660.16909844277 -3969,425660.8773364206 -3970,425661.58557439846 -3971,425662.2938123762 -3972,425663.0020503539 -3973,425663.7102883318 -3974,425664.41852630954 -3975,425665.12676428736 -3976,425665.8350022652 -3977,425666.5432402429 -3978,425667.2514782208 -3979,425667.9597161986 -3980,425668.6679541763 -3981,425669.3761921542 -3982,425670.084430132 -3983,425670.79266810976 -3984,425671.5009060876 -3985,425672.2091440654 -3986,425672.9173820432 -3987,425673.625620021 -3988,425674.3338579988 -3989,425675.04209597665 -3990,425675.7503339544 -3991,425676.4585719322 -3992,425677.16680991004 -3993,425677.8750478878 -3994,425678.58328586555 -3995,425679.2915238435 -3996,425679.9997618212 -3997,425680.707999799 -3998,425681.4162377768 -3999,425682.1244757546 -4000,425682.83271373244 -4001,425683.54095171025 -4002,425684.249189688 -4003,425684.9574276659 -4004,425685.66566564364 -4005,425686.37390362145 -4006,425687.0821415992 -4007,425687.7903795771 -4008,425688.49861755484 -4009,425689.20685553266 -4010,425689.9150935104 -4011,425690.6233314883 -4012,425691.33156946604 -4013,425692.03980744386 -4014,425692.7480454217 -4015,425693.4562833995 -4016,425694.16452137724 -4017,425694.8727593551 -4018,425695.5809973328 -4019,425696.2892353107 -4020,425696.9974732885 -4021,425697.70571126626 -4022,425698.413949244 -4023,425699.12218722195 -4024,425699.83042519965 -4025,425700.5386631775 -4026,425701.2469011553 -4027,425701.9551391331 -4028,425702.6633771109 -4029,425703.3716150887 -4030,425704.0798530665 -4031,425704.78809104435 -4032,425705.4963290221 -4033,425706.2045669999 -4034,425706.9128049777 -4035,425707.62104295555 -4036,425708.32928093337 -4037,425709.0375189111 -4038,425709.7457568888 -4039,425710.45399486675 -4040,425711.16223284445 -4041,425711.87047082226 -4042,425712.5787088001 -4043,425713.28694677784 -4044,425713.99518475565 -4045,425714.7034227335 -4046,425715.4116607113 -4047,425716.11989868904 -4048,425716.8281366669 -4049,425717.5363746447 -4050,425718.2446126225 -4051,425718.9528506003 -4052,425719.6610885781 -4053,425720.3693265559 -4054,425721.0775645337 -4055,425721.7858025115 -4056,425722.4940404893 -4057,425723.2022784671 -4058,425723.9105164449 -4059,425724.6187544227 -4060,425725.3269924005 -4061,425726.03523037833 -4062,425726.74346835614 -4063,425727.4517063339 -4064,425728.1599443118 -4065,425728.86818228953 -4066,425729.57642026735 -4067,425730.28465824516 -4068,425730.992896223 -4069,425731.70113420073 -4070,425732.4093721786 -4071,425733.1176101563 -4072,425733.8258481342 -4073,425734.534086112 -4074,425735.24232408975 -4075,425735.95056206756 -4076,425736.65880004544 -4077,425737.3670380232 -4078,425738.075276001 -4079,425738.78351397876 -4080,425739.49175195664 -4081,425740.1999899344 -4082,425740.9082279122 -4083,425741.61646588997 -4084,425742.32470386784 -4085,425743.0329418456 -4086,425743.7411798234 -4087,425744.44941780117 -4088,425745.157655779 -4089,425745.86589375685 -4090,425746.5741317346 -4091,425747.28236971237 -4092,425747.99060769024 -4093,425748.698845668 -4094,425749.4070836458 -4095,425750.1153216236 -4096,425750.82355960144 -4097,425751.5317975792 -4098,425752.2400355571 -4099,425752.9482735348 -4100,425753.6565115126 -4101,425754.36474949046 -4102,425755.0729874683 -4103,425755.781225446 -4104,425756.4894634238 -4105,425757.1977014016 -4106,425757.9059393794 -4107,425758.6141773572 -4108,425759.322415335 -4109,425760.0306533128 -4110,425760.7388912906 -4111,425761.44712926843 -4112,425762.1553672462 -4113,425762.863605224 -4114,425763.5718432019 -4115,425764.2800811796 -4116,425764.9883191574 -4117,425765.69655713526 -4118,425766.404795113 -4119,425767.1130330908 -4120,425767.82127106865 -4121,425768.52950904646 -4122,425769.2377470242 -4123,425769.94598500204 -4124,425770.65422297985 -4125,425771.36246095767 -4126,425772.0706989355 -4127,425772.77893691324 -4128,425773.48717489105 -4129,425774.1954128688 -4130,425774.9036508467 -4131,425775.61188882444 -4132,425776.32012680225 -4133,425777.02836478 -4134,425777.7366027579 -4135,425778.44484073564 -4136,425779.15307871345 -4137,425779.86131669127 -4138,425780.5695546691 -4139,425781.2777926469 -4140,425781.9860306247 -4141,425782.6942686024 -4142,425783.40250658034 -4143,425784.1107445581 -4144,425784.81898253586 -4145,425785.5272205137 -4146,425786.23545849154 -4147,425786.94369646924 -4148,425787.6519344471 -4149,425788.3601724249 -4150,425789.06841040275 -4151,425789.7766483805 -4152,425790.4848863583 -4153,425791.1931243361 -4154,425791.90136231395 -4155,425792.6096002917 -4156,425793.3178382695 -4157,425794.0260762473 -4158,425794.73431422515 -4159,425795.4425522029 -4160,425796.1507901807 -4161,425796.85902815853 -4162,425797.56726613635 -4163,425798.2755041141 -4164,425798.983742092 -4165,425799.69198006974 -4166,425800.40021804755 -4167,425801.10845602537 -4168,425801.8166940031 -4169,425802.5249319808 -4170,425803.23316995875 -4171,425803.9414079365 -4172,425804.64964591427 -4173,425805.3578838921 -4174,425806.0661218699 -4175,425806.7743598477 -4176,425807.4825978255 -4177,425808.1908358033 -4178,425808.8990737811 -4179,425809.6073117589 -4180,425810.3155497367 -4181,425811.02378771454 -4182,425811.7320256923 -4183,425812.4402636701 -4184,425813.148501648 -4185,425813.8567396257 -4186,425814.5649776035 -4187,425815.2732155814 -4188,425815.9814535591 -4189,425816.68969153694 -4190,425817.39792951476 -4191,425818.1061674925 -4192,425818.8144054704 -4193,425819.52264344814 -4194,425820.2308814259 -4195,425820.9391194038 -4196,425821.6473573816 -4197,425822.35559535935 -4198,425823.06383333716 -4199,425823.772071315 -4200,425824.4803092928 -4201,425825.18854727055 -4202,425825.89678524836 -4203,425826.6050232262 -4204,425827.313261204 -4205,425828.02149918175 -4206,425828.72973715956 -4207,425829.4379751374 -4208,425830.1462131152 -4209,425830.854451093 -4210,425831.56268907076 -4211,425832.27092704864 -4212,425832.97916502645 -4213,425833.68740300415 -4214,425834.395640982 -4215,425835.10387895984 -4216,425835.8121169376 -4217,425836.5203549154 -4218,425837.2285928932 -4219,425837.9368308709 -4220,425838.64506884885 -4221,425839.3533068266 -4222,425840.06154480437 -4223,425840.7697827822 -4224,425841.47802076006 -4225,425842.1862587378 -4226,425842.8944967156 -4227,425843.6027346934 -4228,425844.31097267126 -4229,425845.019210649 -4230,425845.7274486268 -4231,425846.43568660464 -4232,425847.14392458246 -4233,425847.8521625602 -4234,425848.56040053803 -4235,425849.2686385157 -4236,425849.97687649366 -4237,425850.6851144714 -4238,425851.3933524492 -4239,425852.101590427 -4240,425852.80982840486 -4241,425853.51806638256 -4242,425854.22630436043 -4243,425854.9345423382 -4244,425855.642780316 -4245,425856.3510182938 -4246,425857.05925627163 -4247,425857.7674942494 -4248,425858.47573222726 -4249,425859.183970205 -4250,425859.89220818284 -4251,425860.6004461606 -4252,425861.30868413846 -4253,425862.0169221163 -4254,425862.72516009404 -4255,425863.4333980718 -4256,425864.1416360497 -4257,425864.8498740274 -4258,425865.55811200524 -4259,425866.26634998305 -4260,425866.9745879608 -4261,425867.6828259387 -4262,425868.3910639165 -4263,425869.0993018942 -4264,425869.80753987207 -4265,425870.5157778499 -4266,425871.22401582764 -4267,425871.93225380545 -4268,425872.64049178327 -4269,425873.3487297611 -4270,425874.0569677389 -4271,425874.76520571666 -4272,425875.47344369453 -4273,425876.1816816723 -4274,425876.8899196501 -4275,425877.5981576279 -4276,425878.3063956057 -4277,425879.0146335835 -4278,425879.72287156136 -4279,425880.43110953906 -4280,425881.1393475169 -4281,425881.84758549475 -4282,425882.5558234725 -4283,425883.2640614503 -4284,425883.97229942813 -4285,425884.6805374059 -4286,425885.38877538376 -4287,425886.0970133615 -4288,425886.8052513393 -4289,425887.51348931715 -4290,425888.22172729496 -4291,425888.92996527266 -4292,425889.63820325054 -4293,425890.34644122835 -4294,425891.0546792061 -4295,425891.7629171839 -4296,425892.47115516174 -4297,425893.17939313955 -4298,425893.8876311173 -4299,425894.59586909506 -4300,425895.30410707294 -4301,425896.01234505064 -4302,425896.7205830285 -4303,425897.4288210063 -4304,425898.1370589841 -4305,425898.84529696184 -4306,425899.55353493977 -4307,425900.26177291747 -4308,425900.9700108953 -4309,425901.6782488731 -4310,425902.3864868509 -4311,425903.0947248287 -4312,425903.80296280654 -4313,425904.5112007843 -4314,425905.2194387622 -4315,425905.9276767399 -4316,425906.63591471774 -4317,425907.3441526955 -4318,425908.0523906734 -4319,425908.7606286512 -4320,425909.46886662894 -4321,425910.1771046067 -4322,425910.88534258463 -4323,425911.59358056233 -4324,425912.30181854015 -4325,425913.01005651796 -4326,425913.7182944958 -4327,425914.42653247353 -4328,425915.1347704514 -4329,425915.8430084291 -4330,425916.551246407 -4331,425917.25948438485 -4332,425917.96772236255 -4333,425918.67596034036 -4334,425919.38419831824 -4335,425920.092436296 -4336,425920.8006742738 -4337,425921.5089122516 -4338,425922.2171502294 -4339,425922.92538820725 -4340,425923.633626185 -4341,425924.3418641628 -4342,425925.05010214064 -4343,425925.75834011845 -4344,425926.4665780962 -4345,425927.174816074 -4346,425927.88305405184 -4347,425928.59129202965 -4348,425929.2995300074 -4349,425930.0077679852 -4350,425930.7160059631 -4351,425931.42424394086 -4352,425932.1324819186 -4353,425932.8407198965 -4354,425933.5489578742 -4355,425934.25719585206 -4356,425934.9654338299 -4357,425935.6736718076 -4358,425936.38190978544 -4359,425937.0901477633 -4360,425937.7983857411 -4361,425938.5066237189 -4362,425939.21486169664 -4363,425939.92309967446 -4364,425940.6313376522 -4365,425941.33957563003 -4366,425942.0478136078 -4367,425942.75605158566 -4368,425943.4642895634 -4369,425944.17252754123 -4370,425944.880765519 -4371,425945.58900349686 -4372,425946.2972414747 -4373,425947.00547945243 -4374,425947.7137174302 -4375,425948.4219554081 -4376,425949.1301933858 -4377,425949.83843136363 -4378,425950.54666934145 -4379,425951.25490731926 -4380,425951.963145297 -4381,425952.6713832749 -4382,425953.37962125265 -4383,425954.08785923047 -4384,425954.7960972083 -4385,425955.5043351861 -4386,425956.21257316385 -4387,425956.9208111417 -4388,425957.6290491195 -4389,425958.3372870973 -4390,425959.04552507505 -4391,425959.7537630529 -4392,425960.4620010307 -4393,425961.1702390085 -4394,425961.8784769863 -4395,425962.58671496407 -4396,425963.2949529419 -4397,425964.00319091976 -4398,425964.71142889746 -4399,425965.41966687527 -4400,425966.12790485314 -4401,425966.8361428309 -4402,425967.54438080866 -4403,425968.25261878653 -4404,425968.96085676434 -4405,425969.6690947421 -4406,425970.3773327199 -4407,425971.08557069773 -4408,425971.79380867555 -4409,425972.50204665336 -4410,425973.2102846311 -4411,425973.91852260893 -4412,425974.62676058675 -4413,425975.33499856456 -4414,425976.0432365423 -4415,425976.75147452013 -4416,425977.45971249795 -4417,425978.16795047576 -4418,425978.8761884535 -4419,425979.58442643133 -4420,425980.29266440915 -4421,425981.00090238696 -4422,425981.7091403648 -4423,425982.41737834254 -4424,425983.12561632035 -4425,425983.8338542982 -4426,425984.5420922759 -4427,425985.25033025374 -4428,425985.95856823155 -4429,425986.66680620937 -4430,425987.37504418707 -4431,425988.08328216494 -4432,425988.79152014275 -4433,425989.4997581205 -4434,425990.2079960983 -4435,425990.91623407614 -4436,425991.6244720539 -4437,425992.33271003177 -4438,425993.0409480095 -4439,425993.74918598734 -4440,425994.4574239651 -4441,425995.16566194297 -4442,425995.8738999207 -4443,425996.58213789854 -4444,425997.29037587636 -4445,425997.9986138542 -4446,425998.7068518319 -4447,425999.4150898098 -4448,426000.12332778756 -4449,426000.8315657654 -4450,426001.5398037432 -4451,426002.248041721 -4452,426002.9562796987 -4453,426003.66451767663 -4454,426004.3727556544 -4455,426005.08099363215 -4456,426005.78923160996 -4457,426006.49746958783 -4458,426007.2057075656 -4459,426007.9139455434 -4460,426008.62218352116 -4461,426009.33042149903 -4462,426010.0386594768 -4463,426010.7468974546 -4464,426011.45513543236 -4465,426012.16337341024 -4466,426012.871611388 -4467,426013.5798493658 -4468,426014.28808734356 -4469,426014.99632532144 -4470,426015.7045632992 -4471,426016.412801277 -4472,426017.1210392548 -4473,426017.82927723264 -4474,426018.5375152104 -4475,426019.24575318827 -4476,426019.953991166 -4477,426020.66222914384 -4478,426021.37046712165 -4479,426022.07870509947 -4480,426022.7869430772 -4481,426023.4951810551 -4482,426024.20341903286 -4483,426024.91165701067 -4484,426025.6198949884 -4485,426026.32813296624 -4486,426027.03637094406 -4487,426027.7446089219 -4488,426028.4528468996 -4489,426029.16108487744 -4490,426029.86932285526 -4491,426030.5775608331 -4492,426031.2857988109 -4493,426031.9940367886 -4494,426032.70227476646 -4495,426033.4105127443 -4496,426034.118750722 -4497,426034.82698869985 -4498,426035.53522667766 -4499,426036.2434646554 -4500,426036.95170263323 -4501,426037.65994061105 -4502,426038.3681785888 -4503,426039.0764165667 -4504,426039.78465454443 -4505,426040.4928925222 -4506,426041.20113050006 -4507,426041.9093684779 -4508,426042.61760645563 -4509,426043.32584443345 -4510,426044.03408241126 -4511,426044.7423203891 -4512,426045.45055836684 -4513,426046.15879634465 -4514,426046.86703432247 -4515,426047.5752723003 -4516,426048.28351027804 -4517,426048.9917482559 -4518,426049.69998623367 -4519,426050.40822421154 -4520,426051.1164621893 -4521,426051.82470016705 -4522,426052.5329381449 -4523,426053.24117612274 -4524,426053.94941410044 -4525,426054.6576520783 -4526,426055.36589005607 -4527,426056.0741280339 -4528,426056.7823660117 -4529,426057.4906039895 -4530,426058.19884196727 -4531,426058.90707994514 -4532,426059.6153179229 -4533,426060.3235559007 -4534,426061.0317938785 -4535,426061.74003185635 -4536,426062.44826983416 -4537,426063.1565078119 -4538,426063.8647457897 -4539,426064.5729837676 -4540,426065.2812217453 -4541,426065.9894597231 -4542,426066.69769770093 -4543,426067.40593567875 -4544,426068.11417365656 -4545,426068.8224116344 -4546,426069.5306496121 -4547,426070.23888759 -4548,426070.94712556776 -4549,426071.6553635455 -4550,426072.36360152334 -4551,426073.0718395012 -4552,426073.7800774789 -4553,426074.4883154568 -4554,426075.19655343454 -4555,426075.90479141235 -4556,426076.61302939017 -4557,426077.321267368 -4558,426078.02950534574 -4559,426078.73774332355 -4560,426079.4459813013 -4561,426080.1542192792 -4562,426080.8624572569 -4563,426081.57069523475 -4564,426082.27893321257 -4565,426082.9871711903 -4566,426083.69540916814 -4567,426084.403647146 -4568,426085.1118851237 -4569,426085.8201231016 -4570,426086.52836107934 -4571,426087.2365990571 -4572,426087.944837035 -4573,426088.6530750128 -4574,426089.36131299054 -4575,426090.06955096836 -4576,426090.7777889462 -4577,426091.486026924 -4578,426092.19426490174 -4579,426092.90250287956 -4580,426093.61074085743 -4581,426094.3189788352 -4582,426095.02721681294 -4583,426095.7354547908 -4584,426096.4436927686 -4585,426097.1519307464 -4586,426097.8601687242 -4587,426098.56840670196 -4588,426099.2766446798 -4589,426099.98488265765 -4590,426100.69312063535 -4591,426101.40135861316 -4592,426102.10959659104 -4593,426102.8178345688 -4594,426103.5260725466 -4595,426104.2343105244 -4596,426104.9425485022 -4597,426105.65078648005 -4598,426106.3590244578 -4599,426107.06726243556 -4600,426107.77550041344 -4601,426108.48373839125 -4602,426109.191976369 -4603,426109.9002143468 -4604,426110.6084523247 -4605,426111.31669030245 -4606,426112.02492828027 -4607,426112.733166258 -4608,426113.4414042359 -4609,426114.14964221366 -4610,426114.85788019147 -4611,426115.5661181693 -4612,426116.2743561471 -4613,426116.98259412486 -4614,426117.69083210273 -4615,426118.3990700804 -4616,426119.10730805824 -4617,426119.8155460361 -4618,426120.5237840139 -4619,426121.2320219917 -4620,426121.9402599695 -4621,426122.64849794726 -4622,426123.35673592513 -4623,426124.06497390283 -4624,426124.77321188065 -4625,426125.48144985846 -4626,426126.1896878363 -4627,426126.89792581403 -4628,426127.60616379185 -4629,426128.31440176966 -4630,426129.0226397475 -4631,426129.73087772523 -4632,426130.43911570305 -4633,426131.1473536809 -4634,426131.8555916587 -4635,426132.56382963643 -4636,426133.2720676143 -4637,426133.98030559206 -4638,426134.6885435699 -4639,426135.3967815477 -4640,426136.10501952545 -4641,426136.8132575033 -4642,426137.52149548114 -4643,426138.22973345884 -4644,426138.9379714367 -4645,426139.6462094145 -4646,426140.3544473923 -4647,426141.0626853701 -4648,426141.7709233479 -4649,426142.4791613257 -4650,426143.18739930354 -4651,426143.8956372813 -4652,426144.6038752591 -4653,426145.3121132369 -4654,426146.02035121474 -4655,426146.72858919256 -4656,426147.4368271703 -4657,426148.14506514807 -4658,426148.853303126 -4659,426149.5615411037 -4660,426150.2697790815 -4661,426150.97801705933 -4662,426151.68625503714 -4663,426152.3944930149 -4664,426153.1027309928 -4665,426153.81096897053 -4666,426154.51920694835 -4667,426155.22744492616 -4668,426155.935682904 -4669,426156.64392088173 -4670,426157.3521588596 -4671,426158.06039683736 -4672,426158.7686348152 -4673,426159.47687279293 -4674,426160.1851107708 -4675,426160.89334874856 -4676,426161.6015867264 -4677,426162.30982470413 -4678,426163.018062682 -4679,426163.72630065976 -4680,426164.4345386376 -4681,426165.14277661534 -4682,426165.8510145932 -4683,426166.559252571 -4684,426167.2674905488 -4685,426167.97572852654 -4686,426168.68396650447 -4687,426169.39220448217 -4688,426170.1004424599 -4689,426170.80868043774 -4690,426171.51691841555 -4691,426172.22515639337 -4692,426172.9333943712 -4693,426173.64163234894 -4694,426174.3498703268 -4695,426175.05810830457 -4696,426175.7663462824 -4697,426176.47458426014 -4698,426177.182822238 -4699,426177.89106021577 -4700,426178.5992981936 -4701,426179.30753617134 -4702,426180.01577414916 -4703,426180.724012127 -4704,426181.4322501048 -4705,426182.1404880826 -4706,426182.84872606036 -4707,426183.5569640382 -4708,426184.26520201605 -4709,426184.9734399938 -4710,426185.68167797156 -4711,426186.38991594943 -4712,426187.09815392725 -4713,426187.80639190495 -4714,426188.5146298828 -4715,426189.22286786063 -4716,426189.9311058384 -4717,426190.6393438162 -4718,426191.347581794 -4719,426192.05581977183 -4720,426192.76405774965 -4721,426193.4722957274 -4722,426194.1805337052 -4723,426194.88877168304 -4724,426195.59700966085 -4725,426196.3052476386 -4726,426197.0134856164 -4727,426197.7217235943 -4728,426198.42996157205 -4729,426199.1381995498 -4730,426199.8464375277 -4731,426200.55467550544 -4732,426201.26291348325 -4733,426201.97115146107 -4734,426202.6793894388 -4735,426203.38762741664 -4736,426204.0958653945 -4737,426204.80410337227 -4738,426205.51234135 -4739,426206.2205793279 -4740,426206.9288173057 -4741,426207.63705528347 -4742,426208.3452932613 -4743,426209.0535312391 -4744,426209.7617692169 -4745,426210.4700071947 -4746,426211.1782451725 -4747,426211.88648315024 -4748,426212.5947211281 -4749,426213.3029591059 -4750,426214.0111970837 -4751,426214.71943506144 -4752,426215.4276730393 -4753,426216.1359110171 -4754,426216.84414899483 -4755,426217.55238697265 -4756,426218.2606249505 -4757,426218.9688629282 -4758,426219.6771009061 -4759,426220.38533888385 -4760,426221.09357686166 -4761,426221.8018148395 -4762,426222.5100528173 -4763,426223.21829079505 -4764,426223.9265287729 -4765,426224.6347667507 -4766,426225.3430047285 -4767,426226.05124270625 -4768,426226.7594806841 -4769,426227.4677186619 -4770,426228.1759566397 -4771,426228.88419461745 -4772,426229.5924325953 -4773,426230.3006705731 -4774,426231.0089085509 -4775,426231.71714652865 -4776,426232.4253845065 -4777,426233.13362248434 -4778,426233.8418604621 -4779,426234.55009843985 -4780,426235.2583364178 -4781,426235.96657439554 -4782,426236.6748123733 -4783,426237.3830503511 -4784,426238.091288329 -4785,426238.7995263067 -4786,426239.50776428456 -4787,426240.2160022623 -4788,426240.92424024007 -4789,426241.63247821794 -4790,426242.34071619576 -4791,426243.0489541735 -4792,426243.75719215133 -4793,426244.46543012914 -4794,426245.17366810696 -4795,426245.8819060847 -4796,426246.59014406253 -4797,426247.29838204035 -4798,426248.00662001816 -4799,426248.7148579959 -4800,426249.4230959738 -4801,426250.13133395155 -4802,426250.83957192936 -4803,426251.5478099072 -4804,426252.25604788493 -4805,426252.9642858628 -4806,426253.6725238406 -4807,426254.3807618183 -4808,426255.0889997962 -4809,426255.797237774 -4810,426256.50547575176 -4811,426257.2137137296 -4812,426257.9219517074 -4813,426258.6301896852 -4814,426259.338427663 -4815,426260.0466656408 -4816,426260.7549036186 -4817,426261.4631415964 -4818,426262.17137957417 -4819,426262.8796175519 -4820,426263.58785552974 -4821,426264.29609350755 -4822,426265.00433148537 -4823,426265.7125694631 -4824,426266.42080744094 -4825,426267.1290454188 -4826,426267.83728339657 -4827,426268.5455213744 -4828,426269.2537593522 -4829,426269.9619973299 -4830,426270.6702353078 -4831,426271.3784732856 -4832,426272.08671126334 -4833,426272.79494924116 -4834,426273.50318721903 -4835,426274.2114251967 -4836,426274.9196631746 -4837,426275.62790115236 -4838,426276.3361391302 -4839,426277.044377108 -4840,426277.7526150858 -4841,426278.4608530636 -4842,426279.16909104143 -4843,426279.8773290192 -4844,426280.58556699706 -4845,426281.29380497476 -4846,426282.00204295263 -4847,426282.71028093045 -4848,426283.4185189082 -4849,426284.126756886 -4850,426284.8349948639 -4851,426285.5432328416 -4852,426286.25147081946 -4853,426286.9597087972 -4854,426287.66794677504 -4855,426288.37618475285 -4856,426289.08442273067 -4857,426289.79266070836 -4858,426290.5008986863 -4859,426291.20913666405 -4860,426291.9173746418 -4861,426292.6256126196 -4862,426293.3338505975 -4863,426294.04208857525 -4864,426294.75032655307 -4865,426295.4585645308 -4866,426296.1668025087 -4867,426296.87504048645 -4868,426297.58327846427 -4869,426298.2915164421 -4870,426298.9997544199 -4871,426299.70799239766 -4872,426300.41623037553 -4873,426301.1244683533 -4874,426301.8327063311 -4875,426302.5409443089 -4876,426303.2491822867 -4877,426303.9574202645 -4878,426304.66565824236 -4879,426305.3738962201 -4880,426306.08213419793 -4881,426306.79037217575 -4882,426307.49861015345 -4883,426308.2068481314 -4884,426308.9150861091 -4885,426309.6233240869 -4886,426310.33156206465 -4887,426311.0398000425 -4888,426311.74803802033 -4889,426312.4562759981 -4890,426313.16451397585 -4891,426313.8727519538 -4892,426314.5809899315 -4893,426315.2892279093 -4894,426315.9974658871 -4895,426316.7057038649 -4896,426317.4139418427 -4897,426318.12217982055 -4898,426318.83041779825 -4899,426319.5386557761 -4900,426320.24689375394 -4901,426320.9551317317 -4902,426321.6633697095 -4903,426322.3716076874 -4904,426323.0798456651 -4905,426323.78808364295 -4906,426324.4963216207 -4907,426325.2045595985 -4908,426325.91279757634 -4909,426326.62103555416 -4910,426327.3292735319 -4911,426328.0375115098 -4912,426328.74574948754 -4913,426329.45398746536 -4914,426330.1622254431 -4915,426330.870463421 -4916,426331.5787013988 -4917,426332.28693937656 -4918,426332.9951773543 -4919,426333.70341533225 -4920,426334.41165330994 -4921,426335.11989128776 -4922,426335.8281292656 -4923,426336.53636724333 -4924,426337.24460522115 -4925,426337.952843199 -4926,426338.6610811767 -4927,426339.36931915453 -4928,426340.0775571324 -4929,426340.78579511016 -4930,426341.494033088 -4931,426342.2022710658 -4932,426342.9105090436 -4933,426343.6187470214 -4934,426344.3269849992 -4935,426345.035222977 -4936,426345.7434609548 -4937,426346.4516989326 -4938,426347.15993691044 -4939,426347.8681748882 -4940,426348.576412866 -4941,426349.2846508439 -4942,426349.9928888216 -4943,426350.7011267994 -4944,426351.40936477727 -4945,426352.117602755 -4946,426352.8258407328 -4947,426353.53407871065 -4948,426354.24231668835 -4949,426354.95055466617 -4950,426355.658792644 -4951,426356.36703062174 -4952,426357.0752685996 -4953,426357.7835065774 -4954,426358.4917445552 -4955,426359.199982533 -4956,426359.9082205108 -4957,426360.6164584886 -4958,426361.3246964664 -4959,426362.0329344442 -4960,426362.741172422 -4961,426363.44941039983 -4962,426364.1576483776 -4963,426364.8658863554 -4964,426365.57412433316 -4965,426366.28236231103 -4966,426366.99060028885 -4967,426367.6988382666 -4968,426368.40707624436 -4969,426369.1153142223 -4970,426369.8235522 -4971,426370.5317901778 -4972,426371.2400281556 -4973,426371.94826613343 -4974,426372.65650411125 -4975,426373.36474208906 -4976,426374.0729800668 -4977,426374.7812180447 -4978,426375.48945602245 -4979,426376.19769400026 -4980,426376.905931978 -4981,426377.6141699559 -4982,426378.32240793365 -4983,426379.03064591147 -4984,426379.7388838892 -4985,426380.4471218671 -4986,426381.15535984485 -4987,426381.86359782267 -4988,426382.5718358005 -4989,426383.2800737783 -4990,426383.98831175605 -4991,426384.6965497339 -4992,426385.4047877116 -4993,426386.1130256895 -4994,426386.8212636673 -4995,426387.52950164507 -4996,426388.2377396228 -4997,426388.94597760076 -4998,426389.65421557846 -4999,426390.36245355627 -5000,426391.0706915341 -5001,426391.7789295119 -5002,426392.4871674897 -5003,426393.19540546753 -5004,426393.9036434453 -5005,426394.61188142316 -5006,426395.3201194009 -5007,426396.02835737873 -5008,426396.7365953565 -5009,426397.44483333436 -5010,426398.1530713122 -5011,426398.86130928993 -5012,426399.5695472677 -5013,426400.2777852456 -5014,426400.98602322326 -5015,426401.6942612011 -5016,426402.4024991789 -5017,426403.1107371567 -5018,426403.81897513446 -5019,426404.52721311233 -5020,426405.2354510901 -5021,426405.94368906785 -5022,426406.6519270457 -5023,426407.36016502354 -5024,426408.0684030013 -5025,426408.7766409791 -5026,426409.4848789569 -5027,426410.19311693474 -5028,426410.9013549125 -5029,426411.6095928903 -5030,426412.3178308681 -5031,426413.02606884594 -5032,426413.7343068237 -5033,426414.4425448015 -5034,426415.1507827793 -5035,426415.85902075714 -5036,426416.5672587349 -5037,426417.2754967127 -5038,426417.9837346906 -5039,426418.69197266834 -5040,426419.4002106461 -5041,426420.10844862397 -5042,426420.8166866017 -5043,426421.52492457954 -5044,426422.23316255736 -5045,426422.9414005352 -5046,426423.6496385129 -5047,426424.3578764908 -5048,426425.06611446856 -5049,426425.7743524463 -5050,426426.4825904242 -5051,426427.190828402 -5052,426427.89906637976 -5053,426428.6073043576 -5054,426429.31554233533 -5055,426430.0237803132 -5056,426430.73201829096 -5057,426431.4402562688 -5058,426432.14849424653 -5059,426432.8567322244 -5060,426433.5649702022 -5061,426434.27320818 -5062,426434.98144615773 -5063,426435.68968413566 -5064,426436.3979221134 -5065,426437.1061600912 -5066,426437.814398069 -5067,426438.52263604687 -5068,426439.23087402456 -5069,426439.93911200244 -5070,426440.6473499802 -5071,426441.355587958 -5072,426442.0638259358 -5073,426442.77206391364 -5074,426443.4803018914 -5075,426444.18853986927 -5076,426444.896777847 -5077,426445.60501582484 -5078,426446.31325380254 -5079,426447.0214917804 -5080,426447.72972975817 -5081,426448.437967736 -5082,426449.14620571374 -5083,426449.8544436916 -5084,426450.56268166937 -5085,426451.2709196472 -5086,426451.979157625 -5087,426452.6873956028 -5088,426453.3956335806 -5089,426454.10387155844 -5090,426454.81210953614 -5091,426455.5203475141 -5092,426456.22858549183 -5093,426456.9368234696 -5094,426457.6450614474 -5095,426458.3532994253 -5096,426459.06153740303 -5097,426459.76977538085 -5098,426460.4780133586 -5099,426461.1862513364 -5100,426461.89448931423 -5101,426462.60272729205 -5102,426463.3109652698 -5103,426464.0192032476 -5104,426464.72744122543 -5105,426465.43567920325 -5106,426466.143917181 -5107,426466.8521551588 -5108,426467.5603931367 -5109,426468.26863111445 -5110,426468.97686909226 -5111,426469.6851070701 -5112,426470.39334504784 -5113,426471.1015830257 -5114,426471.80982100347 -5115,426472.5180589812 -5116,426473.2262969591 -5117,426473.9345349369 -5118,426474.6427729146 -5119,426475.3510108925 -5120,426476.0592488703 -5121,426476.76748684805 -5122,426477.47572482587 -5123,426478.1839628037 -5124,426478.8922007815 -5125,426479.6004387593 -5126,426480.30867673707 -5127,426481.0169147149 -5128,426481.7251526927 -5129,426482.4333906705 -5130,426483.14162864827 -5131,426483.8498666261 -5132,426484.55810460396 -5133,426485.2663425817 -5134,426485.9745805595 -5135,426486.68281853735 -5136,426487.39105651516 -5137,426488.0992944929 -5138,426488.80753247073 -5139,426489.51577044855 -5140,426490.22400842624 -5141,426490.9322464042 -5142,426491.640484382 -5143,426492.34872235963 -5144,426493.05696033745 -5145,426493.7651983153 -5146,426494.4734362931 -5147,426495.1816742709 -5148,426495.88991224865 -5149,426496.5981502265 -5150,426497.30638820434 -5151,426498.0146261821 -5152,426498.72286415996 -5153,426499.4311021377 -5154,426500.13934011554 -5155,426500.84757809335 -5156,426501.5558160711 -5157,426502.2640540489 -5158,426502.9722920268 -5159,426503.6805300045 -5160,426504.3887679823 -5161,426505.0970059602 -5162,426505.80524393794 -5163,426506.51348191575 -5164,426507.22171989357 -5165,426507.9299578713 -5166,426508.6381958492 -5167,426509.34643382696 -5168,426510.0546718047 -5169,426510.7629097826 -5170,426511.4711477604 -5171,426512.1793857381 -5172,426512.887623716 -5173,426513.5958616938 -5174,426514.30409967154 -5175,426515.01233764936 -5176,426515.7205756272 -5177,426516.428813605 -5178,426517.1370515828 -5179,426517.84528956056 -5180,426518.55352753843 -5181,426519.2617655162 -5182,426519.970003494 -5183,426520.6782414718 -5184,426521.3864794496 -5185,426522.09471742745 -5186,426522.80295540526 -5187,426523.51119338296 -5188,426524.21943136083 -5189,426524.9276693386 -5190,426525.6359073164 -5191,426526.3441452942 -5192,426527.05238327204 -5193,426527.7606212498 -5194,426528.46885922767 -5195,426529.1770972054 -5196,426529.88533518324 -5197,426530.593573161 -5198,426531.30181113887 -5199,426532.0100491167 -5200,426532.71828709444 -5201,426533.4265250722 -5202,426534.1347630501 -5203,426534.8430010278 -5204,426535.55123900564 -5205,426536.25947698345 -5206,426536.96771496127 -5207,426537.675952939 -5208,426538.3841909169 -5209,426539.09242889454 -5210,426539.8006668724 -5211,426540.5089048502 -5212,426541.217142828 -5213,426541.9253808058 -5214,426542.6336187837 -5215,426543.34185676137 -5216,426544.05009473924 -5217,426544.758332717 -5218,426545.4665706948 -5219,426546.17480867263 -5220,426546.88304665044 -5221,426547.59128462826 -5222,426548.2995226061 -5223,426549.00776058383 -5224,426549.7159985617 -5225,426550.4242365394 -5226,426551.1324745173 -5227,426551.8407124951 -5228,426552.54895047285 -5229,426553.2571884506 -5230,426553.96542642853 -5231,426554.67366440623 -5232,426555.38190238405 -5233,426556.09014036186 -5234,426556.7983783396 -5235,426557.5066163175 -5236,426558.2148542953 -5237,426558.92309227306 -5238,426559.6313302509 -5239,426560.3395682287 -5240,426561.0478062065 -5241,426561.75604418427 -5242,426562.4642821621 -5243,426563.1725201399 -5244,426563.8807581177 -5245,426564.58899609547 -5246,426565.2972340733 -5247,426566.0054720511 -5248,426566.7137100289 -5249,426567.4219480067 -5250,426568.1301859845 -5251,426568.8384239623 -5252,426569.54666194017 -5253,426570.25489991787 -5254,426570.9631378957 -5255,426571.67137587356 -5256,426572.3796138513 -5257,426573.0878518291 -5258,426573.79608980694 -5259,426574.5043277847 -5260,426575.2125657626 -5261,426575.92080374033 -5262,426576.6290417181 -5263,426577.33727969596 -5264,426578.0455176738 -5265,426578.75375565153 -5266,426579.46199362935 -5267,426580.17023160716 -5268,426580.878469585 -5269,426581.58670756273 -5270,426582.29494554055 -5271,426583.0031835184 -5272,426583.7114214962 -5273,426584.4196594739 -5274,426585.1278974518 -5275,426585.83613542945 -5276,426586.5443734073 -5277,426587.25261138513 -5278,426587.9608493629 -5279,426588.66908734065 -5280,426589.3773253186 -5281,426590.08556329634 -5282,426590.7938012741 -5283,426591.5020392519 -5284,426592.2102772298 -5285,426592.91851520754 -5286,426593.62675318535 -5287,426594.3349911631 -5288,426595.043229141 -5289,426595.75146711874 -5290,426596.45970509655 -5291,426597.1679430743 -5292,426597.8761810522 -5293,426598.58441902994 -5294,426599.29265700775 -5295,426600.0008949855 -5296,426600.7091329634 -5297,426601.41737094114 -5298,426602.12560891896 -5299,426602.83384689677 -5300,426603.5420848746 -5301,426604.25032285234 -5302,426604.9585608302 -5303,426605.6667988079 -5304,426606.3750367858 -5305,426607.0832747636 -5306,426607.79151274136 -5307,426608.4997507192 -5308,426609.20798869705 -5309,426609.9162266748 -5310,426610.6244646526 -5311,426611.3327026304 -5312,426612.04094060825 -5313,426612.749178586 -5314,426613.4574165638 -5315,426614.1656545416 -5316,426614.87389251945 -5317,426615.5821304972 -5318,426616.290368475 -5319,426616.9986064528 -5320,426617.7068444306 -5321,426618.41508240846 -5322,426619.1233203862 -5323,426619.831558364 -5324,426620.53979634185 -5325,426621.2480343196 -5326,426621.9562722974 -5327,426622.66451027524 -5328,426623.37274825305 -5329,426624.0809862308 -5330,426624.7892242087 -5331,426625.49746218644 -5332,426626.2057001642 -5333,426626.91393814207 -5334,426627.6221761199 -5335,426628.33041409764 -5336,426629.03865207545 -5337,426629.74689005327 -5338,426630.4551280311 -5339,426631.1633660088 -5340,426631.8716039866 -5341,426632.5798419644 -5342,426633.2880799422 -5343,426633.99631792004 -5344,426634.7045558978 -5345,426635.4127938756 -5346,426636.1210318535 -5347,426636.8292698312 -5348,426637.537507809 -5349,426638.2457457869 -5350,426638.95398376463 -5351,426639.6622217424 -5352,426640.37045972026 -5353,426641.0786976981 -5354,426641.78693567583 -5355,426642.49517365365 -5356,426643.20341163146 -5357,426643.9116496093 -5358,426644.6198875871 -5359,426645.32812556485 -5360,426646.03636354266 -5361,426646.7446015204 -5362,426647.4528394983 -5363,426648.16107747605 -5364,426648.86931545386 -5365,426649.5775534316 -5366,426650.2857914095 -5367,426650.99402938725 -5368,426651.70226736506 -5369,426652.4105053429 -5370,426653.1187433207 -5371,426653.8269812985 -5372,426654.5352192763 -5373,426655.243457254 -5374,426655.95169523195 -5375,426656.6599332097 -5376,426657.36817118747 -5377,426658.0764091653 -5378,426658.78464714315 -5379,426659.4928851209 -5380,426660.2011230987 -5381,426660.9093610765 -5382,426661.61759905436 -5383,426662.3258370321 -5384,426663.0340750099 -5385,426663.7423129877 -5386,426664.45055096556 -5387,426665.1587889433 -5388,426665.8670269211 -5389,426666.5752648989 -5390,426667.28350287676 -5391,426667.9917408545 -5392,426668.69997883233 -5393,426669.40821681014 -5394,426670.11645478796 -5395,426670.8246927657 -5396,426671.5329307436 -5397,426672.24116872135 -5398,426672.94940669916 -5399,426673.657644677 -5400,426674.3658826548 -5401,426675.0741206325 -5402,426675.7823586104 -5403,426676.4905965881 -5404,426677.1988345659 -5405,426677.9070725437 -5406,426678.6153105215 -5407,426679.3235484993 -5408,426680.03178647714 -5409,426680.7400244549 -5410,426681.4482624327 -5411,426682.1565004105 -5412,426682.86473838834 -5413,426683.57297636615 -5414,426684.2812143439 -5415,426684.9894523218 -5416,426685.6976902996 -5417,426686.4059282773 -5418,426687.1141662551 -5419,426687.82240423304 -5420,426688.53064221074 -5421,426689.23888018855 -5422,426689.94711816637 -5423,426690.6553561442 -5424,426691.363594122 -5425,426692.0718320998 -5426,426692.7800700775 -5427,426693.48830805544 -5428,426694.1965460332 -5429,426694.90478401096 -5430,426695.6130219888 -5431,426696.32125996664 -5432,426697.0294979444 -5433,426697.7377359222 -5434,426698.4459739 -5435,426699.15421187785 -5436,426699.8624498556 -5437,426700.5706878334 -5438,426701.2789258112 -5439,426701.98716378905 -5440,426702.6954017668 -5441,426703.4036397446 -5442,426704.1118777224 -5443,426704.82011570025 -5444,426705.52835367806 -5445,426706.2365916558 -5446,426706.94482963363 -5447,426707.6530676115 -5448,426708.3613055892 -5449,426709.0695435671 -5450,426709.77778154484 -5451,426710.4860195226 -5452,426711.19425750047 -5453,426711.9024954783 -5454,426712.610733456 -5455,426713.31897143385 -5456,426714.02720941167 -5457,426714.7354473894 -5458,426715.44368536724 -5459,426716.15192334505 -5460,426716.86016132287 -5461,426717.5683993007 -5462,426718.27663727844 -5463,426718.9848752563 -5464,426719.69311323407 -5465,426720.4013512119 -5466,426721.1095891897 -5467,426721.81782716746 -5468,426722.5260651453 -5469,426723.23430312314 -5470,426723.9425411008 -5471,426724.6507790787 -5472,426725.3590170565 -5473,426726.0672550342 -5474,426726.77549301204 -5475,426727.48373098986 -5476,426728.1919689676 -5477,426728.9002069455 -5478,426729.60844492324 -5479,426730.316682901 -5480,426731.0249208789 -5481,426731.7331588567 -5482,426732.44139683445 -5483,426733.14963481226 -5484,426733.8578727901 -5485,426734.5661107679 -5486,426735.27434874565 -5487,426735.98258672346 -5488,426736.69082470133 -5489,426737.3990626791 -5490,426738.10730065685 -5491,426738.8155386347 -5492,426739.5237766124 -5493,426740.2320145903 -5494,426740.9402525681 -5495,426741.64849054586 -5496,426742.3567285237 -5497,426743.06496650155 -5498,426743.77320447925 -5499,426744.4814424571 -5500,426745.1896804349 -5501,426745.8979184127 -5502,426746.6061563905 -5503,426747.3143943683 -5504,426748.02263234614 -5505,426748.73087032395 -5506,426749.4391083017 -5507,426750.1473462796 -5508,426750.8555842573 -5509,426751.56382223516 -5510,426752.27206021297 -5511,426752.9802981907 -5512,426753.6885361685 -5513,426754.3967741464 -5514,426755.1050121241 -5515,426755.8132501019 -5516,426756.52148807974 -5517,426757.22972605756 -5518,426757.9379640354 -5519,426758.6462020132 -5520,426759.3544399909 -5521,426760.0626779688 -5522,426760.7709159466 -5523,426761.47915392433 -5524,426762.18739190215 -5525,426762.89562988 -5526,426763.6038678577 -5527,426764.3121058356 -5528,426765.02034381335 -5529,426765.72858179116 -5530,426766.436819769 -5531,426767.1450577468 -5532,426767.8532957246 -5533,426768.5615337024 -5534,426769.2697716801 -5535,426769.97800965805 -5536,426770.6862476357 -5537,426771.3944856135 -5538,426772.1027235914 -5539,426772.81096156914 -5540,426773.5191995469 -5541,426774.22743752477 -5542,426774.9356755025 -5543,426775.64391348034 -5544,426776.35215145815 -5545,426777.06038943597 -5546,426777.7686274138 -5547,426778.4768653916 -5548,426779.18510336935 -5549,426779.89334134717 -5550,426780.601579325 -5551,426781.3098173028 -5552,426782.01805528055 -5553,426782.72629325837 -5554,426783.43453123624 -5555,426784.142769214 -5556,426784.85100719176 -5557,426785.5592451696 -5558,426786.2674831474 -5559,426786.9757211252 -5560,426787.683959103 -5561,426788.3921970808 -5562,426789.1004350586 -5563,426789.80867303646 -5564,426790.51691101416 -5565,426791.225148992 -5566,426791.93338696985 -5567,426792.6416249476 -5568,426793.3498629254 -5569,426794.05810090323 -5570,426794.766338881 -5571,426795.47457685886 -5572,426796.1828148366 -5573,426796.89105281443 -5574,426797.59929079225 -5575,426798.30752877006 -5576,426799.0157667478 -5577,426799.72400472563 -5578,426800.43224270345 -5579,426801.14048068126 -5580,426801.848718659 -5581,426802.55695663684 -5582,426803.2651946147 -5583,426803.97343259247 -5584,426804.6816705702 -5585,426805.3899085481 -5586,426806.0981465258 -5587,426806.80638450367 -5588,426807.5146224815 -5589,426808.22286045924 -5590,426808.93109843705 -5591,426809.6393364149 -5592,426810.3475743927 -5593,426811.0558123705 -5594,426811.76405034825 -5595,426812.4722883261 -5596,426813.1805263039 -5597,426813.8887642817 -5598,426814.5970022594 -5599,426815.3052402373 -5600,426816.013478215 -5601,426816.72171619284 -5602,426817.4299541706 -5603,426818.1381921485 -5604,426818.8464301263 -5605,426819.55466810404 -5606,426820.2629060818 -5607,426820.97114405973 -5608,426821.67938203743 -5609,426822.38762001524 -5610,426823.09585799306 -5611,426823.8040959709 -5612,426824.51233394863 -5613,426825.2205719265 -5614,426825.92880990426 -5615,426826.6370478821 -5616,426827.3452858599 -5617,426828.0535238377 -5618,426828.76176181546 -5619,426829.46999979333 -5620,426830.1782377711 -5621,426830.8864757489 -5622,426831.59471372666 -5623,426832.30295170454 -5624,426833.0111896823 -5625,426833.7194276601 -5626,426834.4276656379 -5627,426835.1359036157 -5628,426835.8441415935 -5629,426836.55237957137 -5630,426837.26061754907 -5631,426837.9688555269 -5632,426838.67709350475 -5633,426839.3853314825 -5634,426840.09356946027 -5635,426840.80180743814 -5636,426841.51004541595 -5637,426842.2182833937 -5638,426842.9265213715 -5639,426843.63475934934 -5640,426844.34299732716 -5641,426845.05123530497 -5642,426845.7594732827 -5643,426846.46771126054 -5644,426847.17594923836 -5645,426847.8841872162 -5646,426848.5924251939 -5647,426849.30066317174 -5648,426850.00890114956 -5649,426850.7171391274 -5650,426851.42537710513 -5651,426852.13361508294 -5652,426852.84185306076 -5653,426853.5500910386 -5654,426854.2583290164 -5655,426854.96656699415 -5656,426855.67480497196 -5657,426856.38304294983 -5658,426857.09128092753 -5659,426857.79951890535 -5660,426858.5077568832 -5661,426859.215994861 -5662,426859.92423283873 -5663,426860.6324708166 -5664,426861.34070879436 -5665,426862.0489467721 -5666,426862.75718474993 -5667,426863.46542272775 -5668,426864.1736607055 -5669,426864.8818986834 -5670,426865.59013666114 -5671,426866.29837463895 -5672,426867.0066126167 -5673,426867.7148505946 -5674,426868.42308857234 -5675,426869.13132655015 -5676,426869.83956452797 -5677,426870.5478025058 -5678,426871.25604048354 -5679,426871.9642784614 -5680,426872.67251643917 -5681,426873.380754417 -5682,426874.0889923948 -5683,426874.7972303726 -5684,426875.50546835037 -5685,426876.21370632824 -5686,426876.921944306 -5687,426877.63018228376 -5688,426878.3384202616 -5689,426879.04665823944 -5690,426879.7548962172 -5691,426880.463134195 -5692,426881.17137217283 -5693,426881.87961015065 -5694,426882.58784812846 -5695,426883.2960861062 -5696,426884.00432408403 -5697,426884.71256206185 -5698,426885.42080003966 -5699,426886.1290380174 -5700,426886.83727599523 -5701,426887.54551397305 -5702,426888.25375195086 -5703,426888.9619899286 -5704,426889.67022790643 -5705,426890.37846588425 -5706,426891.08670386206 -5707,426891.7949418399 -5708,426892.5031798177 -5709,426893.21141779545 -5710,426893.9196557733 -5711,426894.6278937511 -5712,426895.33613172884 -5713,426896.0443697067 -5714,426896.7526076845 -5715,426897.4608456623 -5716,426898.1690836401 -5717,426898.87732161785 -5718,426899.5855595957 -5719,426900.2937975735 -5720,426901.0020355513 -5721,426901.71027352905 -5722,426902.4185115069 -5723,426903.1267494847 -5724,426903.8349874625 -5725,426904.54322544025 -5726,426905.2514634181 -5727,426905.95970139594 -5728,426906.6679393737 -5729,426907.3761773515 -5730,426908.0844153294 -5731,426908.792653307 -5732,426909.50089128496 -5733,426910.20912926266 -5734,426910.9173672405 -5735,426911.6256052183 -5736,426912.3338431961 -5737,426913.0420811738 -5738,426913.75031915173 -5739,426914.4585571295 -5740,426915.16679510724 -5741,426915.87503308506 -5742,426916.58327106293 -5743,426917.2915090407 -5744,426917.9997470185 -5745,426918.70798499626 -5746,426919.41622297413 -5747,426920.1244609519 -5748,426920.8326989297 -5749,426921.5409369075 -5750,426922.24917488534 -5751,426922.95741286315 -5752,426923.66565084097 -5753,426924.37388881866 -5754,426925.0821267966 -5755,426925.79036477435 -5756,426926.4986027521 -5757,426927.2068407299 -5758,426927.9150787078 -5759,426928.6233166855 -5760,426929.33155466337 -5761,426930.0397926411 -5762,426930.7480306189 -5763,426931.45626859675 -5764,426932.16450657457 -5765,426932.8727445523 -5766,426933.58098253014 -5767,426934.28922050796 -5768,426934.99745848577 -5769,426935.7056964635 -5770,426936.41393444134 -5771,426937.1221724192 -5772,426937.830410397 -5773,426938.5386483747 -5774,426939.2468863526 -5775,426939.95512433036 -5776,426940.6633623082 -5777,426941.371600286 -5778,426942.07983826374 -5779,426942.7880762416 -5780,426943.49631421943 -5781,426944.20455219713 -5782,426944.912790175 -5783,426945.6210281528 -5784,426946.3292661306 -5785,426947.0375041084 -5786,426947.7457420862 -5787,426948.45398006396 -5788,426949.16221804183 -5789,426949.8704560196 -5790,426950.5786939974 -5791,426951.2869319752 -5792,426951.99516995304 -5793,426952.7034079308 -5794,426953.4116459086 -5795,426954.11988388636 -5796,426954.82812186424 -5797,426955.53635984194 -5798,426956.24459781975 -5799,426956.9528357976 -5800,426957.6610737754 -5801,426958.3693117532 -5802,426959.077549731 -5803,426959.7857877087 -5804,426960.49402568664 -5805,426961.2022636644 -5806,426961.91050164215 -5807,426962.61873961997 -5808,426963.32697759784 -5809,426964.0352155756 -5810,426964.7434535534 -5811,426965.45169153117 -5812,426966.15992950904 -5813,426966.8681674868 -5814,426967.5764054646 -5815,426968.2846434424 -5816,426968.99288142024 -5817,426969.701119398 -5818,426970.4093573759 -5819,426971.1175953536 -5820,426971.82583333144 -5821,426972.53407130926 -5822,426973.242309287 -5823,426973.9505472648 -5824,426974.6587852427 -5825,426975.3670232204 -5826,426976.0752611982 -5827,426976.78349917603 -5828,426977.49173715385 -5829,426978.19997513166 -5830,426978.9082131095 -5831,426979.6164510872 -5832,426980.3246890651 -5833,426981.03292704286 -5834,426981.7411650206 -5835,426982.44940299843 -5836,426983.1576409763 -5837,426983.86587895406 -5838,426984.5741169319 -5839,426985.28235490964 -5840,426985.9905928875 -5841,426986.69883086527 -5842,426987.4070688431 -5843,426988.1153068209 -5844,426988.8235447987 -5845,426989.53178277647 -5846,426990.24002075434 -5847,426990.94825873204 -5848,426991.65649670985 -5849,426992.3647346877 -5850,426993.0729726655 -5851,426993.7812106433 -5852,426994.4894486211 -5853,426995.19768659887 -5854,426995.90592457674 -5855,426996.6141625545 -5856,426997.3224005323 -5857,426998.0306385101 -5858,426998.73887648794 -5859,426999.44711446564 -5860,427000.1553524435 -5861,427000.8635904213 -5862,427001.5718283991 -5863,427002.28006637684 -5864,427002.98830435466 -5865,427003.69654233253 -5866,427004.4047803103 -5867,427005.11301828804 -5868,427005.8212562659 -5869,427006.5294942437 -5870,427007.2377322215 -5871,427007.9459701993 -5872,427008.65420817706 -5873,427009.36244615493 -5874,427010.07068413275 -5875,427010.77892211045 -5876,427011.4871600883 -5877,427012.19539806613 -5878,427012.9036360439 -5879,427013.6118740217 -5880,427014.3201119995 -5881,427015.02834997734 -5882,427015.73658795515 -5883,427016.4448259329 -5884,427017.1530639107 -5885,427017.86130188854 -5886,427018.56953986635 -5887,427019.27777784417 -5888,427019.9860158219 -5889,427020.6942537997 -5890,427021.4024917776 -5891,427022.1107297553 -5892,427022.8189677331 -5893,427023.52720571094 -5894,427024.23544368875 -5895,427024.9436816665 -5896,427025.6519196444 -5897,427026.36015762214 -5898,427027.06839559996 -5899,427027.77663357777 -5900,427028.4848715556 -5901,427029.19310953334 -5902,427029.9013475112 -5903,427030.609585489 -5904,427031.3178234668 -5905,427032.02606144454 -5906,427032.7342994224 -5907,427033.4425374002 -5908,427034.150775378 -5909,427034.85901335574 -5910,427035.5672513336 -5911,427036.2754893114 -5912,427036.9837272892 -5913,427037.69196526695 -5914,427038.4002032448 -5915,427039.10844122263 -5916,427039.8166792004 -5917,427040.52491717815 -5918,427041.2331551561 -5919,427041.9413931338 -5920,427042.6496311116 -5921,427043.3578690894 -5922,427044.0661070672 -5923,427044.77434504504 -5924,427045.48258302285 -5925,427046.19082100055 -5926,427046.8990589785 -5927,427047.6072969562 -5928,427048.315534934 -5929,427049.02377291175 -5930,427049.7320108896 -5931,427050.4402488674 -5932,427051.1484868452 -5933,427051.85672482295 -5934,427052.56496280077 -5935,427053.2732007786 -5936,427053.9814387564 -5937,427054.6896767342 -5938,427055.39791471197 -5939,427056.1061526898 -5940,427056.81439066766 -5941,427057.5226286454 -5942,427058.23086662317 -5943,427058.93910460104 -5944,427059.64734257886 -5945,427060.35558055656 -5946,427061.0638185344 -5947,427061.77205651224 -5948,427062.48029449 -5949,427063.1885324678 -5950,427063.89677044563 -5951,427064.60500842344 -5952,427065.31324640126 -5953,427066.021484379 -5954,427066.72972235683 -5955,427067.43796033465 -5956,427068.14619831246 -5957,427068.8544362903 -5958,427069.56267426803 -5959,427070.2709122459 -5960,427070.97915022366 -5961,427071.6873882015 -5962,427072.3956261793 -5963,427073.1038641571 -5964,427073.81210213486 -5965,427074.52034011274 -5966,427075.22857809043 -5967,427075.9368160683 -5968,427076.6450540461 -5969,427077.3532920239 -5970,427078.06153000164 -5971,427078.76976797957 -5972,427079.4780059573 -5973,427080.1862439351 -5974,427080.8944819129 -5975,427081.60271989077 -5976,427082.3109578685 -5977,427083.01919584634 -5978,427083.7274338241 -5979,427084.43567180197 -5980,427085.1439097797 -5981,427085.85214775754 -5982,427086.5603857353 -5983,427087.2686237131 -5984,427087.9768616909 -5985,427088.68509966874 -5986,427089.3933376465 -5987,427090.1015756243 -5988,427090.8098136021 -5989,427091.51805157994 -5990,427092.22628955776 -5991,427092.9345275356 -5992,427093.6427655133 -5993,427094.3510034912 -5994,427095.0592414689 -5995,427095.76747944666 -5996,427096.47571742453 -5997,427097.18395540235 -5998,427097.8921933801 -5999,427098.6004313579 -6000,427099.30866933573 -6001,427100.01690731355 -6002,427100.7251452913 -6003,427101.4333832691 -6004,427102.14162124693 -6005,427102.84985922475 -6006,427103.5580972025 -6007,427104.2663351803 -6008,427104.97457315814 -6009,427105.68281113595 -6010,427106.3910491137 -6011,427107.0992870915 -6012,427107.8075250694 -6013,427108.51576304715 -6014,427109.2240010249 -6015,427109.9322390028 -6016,427110.6404769806 -6017,427111.34871495835 -6018,427112.05695293617 -6019,427112.765190914 -6020,427113.4734288917 -6021,427114.1816668696 -6022,427114.88990484737 -6023,427115.5981428251 -6024,427116.30638080294 -6025,427117.0146187808 -6026,427117.72285675857 -6027,427118.4310947364 -6028,427119.13933271414 -6029,427119.847570692 -6030,427120.5558086698 -6031,427121.2640466476 -6032,427121.9722846254 -6033,427122.6805226032 -6034,427123.388760581 -6035,427124.09699855885 -6036,427124.80523653654 -6037,427125.5134745145 -6038,427126.22171249223 -6039,427126.92995047 -6040,427127.6381884478 -6041,427128.3464264257 -6042,427129.0546644034 -6043,427129.76290238125 -6044,427130.471140359 -6045,427131.1793783368 -6046,427131.88761631463 -6047,427132.59585429245 -6048,427133.3040922702 -6049,427134.0123302481 -6050,427134.72056822584 -6051,427135.42880620365 -6052,427136.1370441814 -6053,427136.8452821593 -6054,427137.55352013704 -6055,427138.26175811485 -6056,427138.96999609255 -6057,427139.6782340705 -6058,427140.3864720482 -6059,427141.094710026 -6060,427141.8029480038 -6061,427142.5111859816 -6062,427143.21942395944 -6063,427143.92766193725 -6064,427144.63589991495 -6065,427145.3441378929 -6066,427146.05237587064 -6067,427146.7606138484 -6068,427147.4688518262 -6069,427148.177089804 -6070,427148.8853277818 -6071,427149.59356575966 -6072,427150.3018037374 -6073,427151.0100417152 -6074,427151.71827969304 -6075,427152.42651767086 -6076,427153.1347556487 -6077,427153.84299362643 -6078,427154.55123160424 -6079,427155.2594695821 -6080,427155.9677075598 -6081,427156.67594553763 -6082,427157.3841835155 -6083,427158.09242149326 -6084,427158.8006594711 -6085,427159.5088974489 -6086,427160.21713542665 -6087,427160.9253734045 -6088,427161.6336113823 -6089,427162.34184936003 -6090,427163.0500873379 -6091,427163.7583253157 -6092,427164.4665632934 -6093,427165.1748012713 -6094,427165.8830392491 -6095,427166.59127722686 -6096,427167.2995152047 -6097,427168.0077531825 -6098,427168.7159911603 -6099,427169.4242291381 -6100,427170.1324671159 -6101,427170.8407050937 -6102,427171.5489430715 -6103,427172.2571810493 -6104,427172.96541902714 -6105,427173.6736570049 -6106,427174.3818949827 -6107,427175.0901329606 -6108,427175.7983709383 -6109,427176.5066089161 -6110,427177.21484689397 -6111,427177.9230848717 -6112,427178.63132284954 -6113,427179.33956082736 -6114,427180.04779880506 -6115,427180.756036783 -6116,427181.46427476074 -6117,427182.1725127385 -6118,427182.8807507163 -6119,427183.5889886942 -6120,427184.29722667194 -6121,427185.00546464976 -6122,427185.71370262746 -6123,427186.4219406054 -6124,427187.1301785831 -6125,427187.8384165609 -6126,427188.5466545387 -6127,427189.25489251653 -6128,427189.9631304943 -6129,427190.67136847216 -6130,427191.37960644986 -6131,427192.08784442773 -6132,427192.79608240555 -6133,427193.5043203833 -6134,427194.2125583611 -6135,427194.920796339 -6136,427195.6290343167 -6137,427196.33727229456 -6138,427197.0455102723 -6139,427197.75374825014 -6140,427198.46198622795 -6141,427199.17022420577 -6142,427199.8784621835 -6143,427200.5867001614 -6144,427201.29493813915 -6145,427202.00317611697 -6146,427202.7114140947 -6147,427203.4196520726 -6148,427204.1278900504 -6149,427204.83612802817 -6150,427205.5443660059 -6151,427206.25260398386 -6152,427206.96084196155 -6153,427207.66907993937 -6154,427208.3773179172 -6155,427209.08555589494 -6156,427209.79379387276 -6157,427210.5020318506 -6158,427211.2102698283 -6159,427211.9185078062 -6160,427212.626745784 -6161,427213.3349837618 -6162,427214.0432217396 -6163,427214.7514597174 -6164,427215.4596976952 -6165,427216.16793567303 -6166,427216.8761736508 -6167,427217.5844116286 -6168,427218.2926496064 -6169,427219.00088758423 -6170,427219.70912556205 -6171,427220.4173635398 -6172,427221.1256015176 -6173,427221.8338394955 -6174,427222.5420774732 -6175,427223.250315451 -6176,427223.9585534289 -6177,427224.66679140663 -6178,427225.3750293844 -6179,427226.08326736226 -6180,427226.79150534 -6181,427227.49974331784 -6182,427228.20798129565 -6183,427228.9162192734 -6184,427229.6244572513 -6185,427230.3326952291 -6186,427231.0409332068 -6187,427231.74917118467 -6188,427232.4574091624 -6189,427233.16564714024 -6190,427233.873885118 -6191,427234.5821230958 -6192,427235.2903610736 -6193,427235.99859905144 -6194,427236.7068370292 -6195,427237.415075007 -6196,427238.12331298477 -6197,427238.83155096264 -6198,427239.53978894046 -6199,427240.2480269182 -6200,427240.95626489597 -6201,427241.6645028739 -6202,427242.3727408516 -6203,427243.0809788294 -6204,427243.7892168072 -6205,427244.49745478504 -6206,427245.20569276286 -6207,427245.9139307407 -6208,427246.62216871843 -6209,427247.3304066963 -6210,427248.03864467406 -6211,427248.7468826519 -6212,427249.45512062963 -6213,427250.1633586075 -6214,427250.87159658526 -6215,427251.5798345631 -6216,427252.28807254083 -6217,427252.9963105187 -6218,427253.70454849646 -6219,427254.4127864743 -6220,427255.1210244521 -6221,427255.8292624299 -6222,427256.53750040766 -6223,427257.24573838554 -6224,427257.95397636323 -6225,427258.6622143411 -6226,427259.370452319 -6227,427260.0786902967 -6228,427260.78692827444 -6229,427261.49516625237 -6230,427262.2034042301 -6231,427262.9116422079 -6232,427263.6198801857 -6233,427264.3281181635 -6234,427265.0363561413 -6235,427265.74459411914 -6236,427266.45283209695 -6237,427267.16107007477 -6238,427267.8693080526 -6239,427268.57754603034 -6240,427269.28578400816 -6241,427269.994021986 -6242,427270.7022599638 -6243,427271.41049794154 -6244,427272.11873591936 -6245,427272.82697389723 -6246,427273.535211875 -6247,427274.24344985274 -6248,427274.9516878306 -6249,427275.6599258083 -6250,427276.3681637862 -6251,427277.076401764 -6252,427277.78463974176 -6253,427278.49287771946 -6254,427279.2011156974 -6255,427279.90935367515 -6256,427280.6175916529 -6257,427281.3258296307 -6258,427282.0340676086 -6259,427282.74230558635 -6260,427283.45054356416 -6261,427284.1587815419 -6262,427284.8670195198 -6263,427285.57525749755 -6264,427286.28349547536 -6265,427286.9917334531 -6266,427287.699971431 -6267,427288.40820940875 -6268,427289.11644738656 -6269,427289.8246853643 -6270,427290.5329233422 -6271,427291.24116131995 -6272,427291.94939929777 -6273,427292.6576372756 -6274,427293.3658752534 -6275,427294.07411323115 -6276,427294.782351209 -6277,427295.4905891868 -6278,427296.1988271646 -6279,427296.9070651424 -6280,427297.6153031202 -6281,427298.323541098 -6282,427299.03177907586 -6283,427299.7400170536 -6284,427300.4482550314 -6285,427301.1564930092 -6286,427301.86473098706 -6287,427302.5729689648 -6288,427303.2812069426 -6289,427303.9894449204 -6290,427304.6976828982 -6291,427305.405920876 -6292,427306.11415885383 -6293,427306.8223968316 -6294,427307.5306348094 -6295,427308.2388727873 -6296,427308.94711076503 -6297,427309.6553487428 -6298,427310.36358672066 -6299,427311.0718246985 -6300,427311.78006267623 -6301,427312.48830065405 -6302,427313.19653863186 -6303,427313.9047766096 -6304,427314.6130145875 -6305,427315.32125256525 -6306,427316.029490543 -6307,427316.7377285209 -6308,427317.4459664987 -6309,427318.15420447645 -6310,427318.86244245426 -6311,427319.5706804321 -6312,427320.2789184099 -6313,427320.98715638765 -6314,427321.69539436547 -6315,427322.4036323433 -6316,427323.1118703211 -6317,427323.8201082988 -6318,427324.52834627667 -6319,427325.2365842544 -6320,427325.94482223224 -6321,427326.65306021005 -6322,427327.3612981878 -6323,427328.0695361657 -6324,427328.7777741435 -6325,427329.4860121212 -6326,427330.19425009907 -6327,427330.9024880769 -6328,427331.61072605464 -6329,427332.31896403246 -6330,427333.0272020103 -6331,427333.735439988 -6332,427334.4436779659 -6333,427335.15191594366 -6334,427335.8601539215 -6335,427336.5683918992 -6336,427337.2766298771 -6337,427337.98486785486 -6338,427338.6931058327 -6339,427339.40134381043 -6340,427340.1095817883 -6341,427340.81781976606 -6342,427341.5260577439 -6343,427342.2342957217 -6344,427342.9425336995 -6345,427343.6507716773 -6346,427344.35900965513 -6347,427345.06724763283 -6348,427345.77548561076 -6349,427346.4837235885 -6350,427347.1919615663 -6351,427347.9001995441 -6352,427348.60843752197 -6353,427349.31667549966 -6354,427350.02491347754 -6355,427350.7331514553 -6356,427351.4413894331 -6357,427352.1496274109 -6358,427352.85786538874 -6359,427353.5661033665 -6360,427354.27434134437 -6361,427354.9825793221 -6362,427355.69081729994 -6363,427356.3990552777 -6364,427357.10729325557 -6365,427357.8155312333 -6366,427358.52376921114 -6367,427359.23200718896 -6368,427359.94024516677 -6369,427360.6484831445 -6370,427361.3567211224 -6371,427362.06495910016 -6372,427362.773197078 -6373,427363.4814350558 -6374,427364.1896730336 -6375,427364.8979110113 -6376,427365.60614898923 -6377,427366.314386967 -6378,427367.02262494474 -6379,427367.73086292256 -6380,427368.4391009004 -6381,427369.1473388782 -6382,427369.855576856 -6383,427370.5638148337 -6384,427371.2720528116 -6385,427371.98029078933 -6386,427372.68852876715 -6387,427373.39676674496 -6388,427374.1050047227 -6389,427374.81324270053 -6390,427375.5214806784 -6391,427376.2297186561 -6392,427376.9379566339 -6393,427377.6461946118 -6394,427378.35443258955 -6395,427379.06267056736 -6396,427379.7709085452 -6397,427380.47914652294 -6398,427381.1873845008 -6399,427381.89562247857 -6400,427382.6038604563 -6401,427383.3120984342 -6402,427384.020336412 -6403,427384.7285743897 -6404,427385.4368123676 -6405,427386.1450503454 -6406,427386.8532883232 -6407,427387.56152630097 -6408,427388.2697642788 -6409,427388.9780022566 -6410,427389.6862402344 -6411,427390.39447821217 -6412,427391.10271619004 -6413,427391.8109541678 -6414,427392.5191921456 -6415,427393.2274301234 -6416,427393.9356681012 -6417,427394.64390607906 -6418,427395.3521440569 -6419,427396.0603820346 -6420,427396.76862001244 -6421,427397.4768579902 -6422,427398.185095968 -6423,427398.89333394583 -6424,427399.60157192365 -6425,427400.3098099014 -6426,427401.0180478793 -6427,427401.72628585703 -6428,427402.43452383485 -6429,427403.1427618126 -6430,427403.8509997905 -6431,427404.5592377683 -6432,427405.26747574605 -6433,427405.9757137238 -6434,427406.68395170174 -6435,427407.39218967943 -6436,427408.10042765725 -6437,427408.80866563506 -6438,427409.5169036129 -6439,427410.22514159064 -6440,427410.9333795685 -6441,427411.6416175462 -6442,427412.3498555241 -6443,427413.0580935019 -6444,427413.76633147965 -6445,427414.47456945747 -6446,427415.18280743534 -6447,427415.891045413 -6448,427416.5992833909 -6449,427417.3075213686 -6450,427418.0157593464 -6451,427418.72399732424 -6452,427419.43223530205 -6453,427420.14047327987 -6454,427420.8487112577 -6455,427421.55694923544 -6456,427422.2651872133 -6457,427422.973425191 -6458,427423.6816631689 -6459,427424.3899011467 -6460,427425.09813912446 -6461,427425.8063771022 -6462,427426.51461508014 -6463,427427.22285305784 -6464,427427.93109103566 -6465,427428.6393290135 -6466,427429.34756699123 -6467,427430.0558049691 -6468,427430.7640429469 -6469,427431.4722809247 -6470,427432.1805189025 -6471,427432.8887568803 -6472,427433.5969948581 -6473,427434.3052328359 -6474,427435.0134708137 -6475,427435.7217087915 -6476,427436.4299467693 -6477,427437.1381847471 -6478,427437.8464227249 -6479,427438.5546607027 -6480,427439.2628986805 -6481,427439.97113665834 -6482,427440.6793746361 -6483,427441.3876126139 -6484,427442.0958505918 -6485,427442.8040885695 -6486,427443.5123265473 -6487,427444.22056452517 -6488,427444.9288025029 -6489,427445.63704048074 -6490,427446.34527845855 -6491,427447.0535164363 -6492,427447.7617544142 -6493,427448.46999239194 -6494,427449.1782303697 -6495,427449.88646834757 -6496,427450.5947063254 -6497,427451.30294430314 -6498,427452.01118228096 -6499,427452.7194202588 -6500,427453.4276582366 -6501,427454.13589621434 -6502,427454.84413419216 -6503,427455.55237217003 -6504,427456.2606101478 -6505,427456.9688481256 -6506,427457.6770861034 -6507,427458.38532408123 -6508,427459.093562059 -6509,427459.80180003686 -6510,427460.51003801456 -6511,427461.2182759924 -6512,427461.92651397025 -6513,427462.634751948 -6514,427463.3429899257 -6515,427464.0512279036 -6516,427464.7594658814 -6517,427465.46770385915 -6518,427466.17594183696 -6519,427466.8841798148 -6520,427467.5924177926 -6521,427468.3006557704 -6522,427469.00889374816 -6523,427469.717131726 -6524,427470.4253697038 -6525,427471.1336076816 -6526,427471.84184565936 -6527,427472.5500836372 -6528,427473.25832161505 -6529,427473.9665595928 -6530,427474.67479757057 -6531,427475.38303554844 -6532,427476.0912735262 -6533,427476.799511504 -6534,427477.5077494818 -6535,427478.2159874596 -6536,427478.9242254374 -6537,427479.63246341527 -6538,427480.34070139297 -6539,427481.0489393708 -6540,427481.75717734866 -6541,427482.4654153264 -6542,427483.1736533042 -6543,427483.88189128204 -6544,427484.59012925986 -6545,427485.2983672377 -6546,427486.0066052154 -6547,427486.71484319324 -6548,427487.42308117106 -6549,427488.1313191489 -6550,427488.83955712663 -6551,427489.54779510444 -6552,427490.2560330822 -6553,427490.9642710601 -6554,427491.67250903783 -6555,427492.38074701565 -6556,427493.08898499346 -6557,427493.7972229713 -6558,427494.50546094903 -6559,427495.2136989269 -6560,427495.92193690466 -6561,427496.6301748825 -6562,427497.3384128603 -6563,427498.0466508381 -6564,427498.7548888158 -6565,427499.46312679374 -6566,427500.1713647715 -6567,427500.87960274925 -6568,427501.58784072706 -6569,427502.29607870494 -6570,427503.0043166827 -6571,427503.7125546605 -6572,427504.42079263827 -6573,427505.12903061614 -6574,427505.8372685939 -6575,427506.5455065717 -6576,427507.25374454947 -6577,427507.96198252734 -6578,427508.67022050516 -6579,427509.37845848285 -6580,427510.0866964606 -6581,427510.79493443854 -6582,427511.50317241624 -6583,427512.21141039405 -6584,427512.91964837187 -6585,427513.6278863497 -6586,427514.33612432744 -6587,427515.0443623053 -6588,427515.7526002831 -6589,427516.4608382609 -6590,427517.1690762387 -6591,427517.8773142165 -6592,427518.5855521943 -6593,427519.29379017215 -6594,427520.0020281499 -6595,427520.7102661277 -6596,427521.4185041055 -6597,427522.1267420833 -6598,427522.8349800611 -6599,427523.5432180389 -6600,427524.2514560167 -6601,427524.9596939945 -6602,427525.6679319723 -6603,427526.3761699501 -6604,427527.08440792793 -6605,427527.7926459057 -6606,427528.50088388356 -6607,427529.2091218614 -6608,427529.9173598391 -6609,427530.62559781695 -6610,427531.33383579477 -6611,427532.0420737725 -6612,427532.75031175034 -6613,427533.45854972815 -6614,427534.16678770597 -6615,427534.8750256838 -6616,427535.58326366154 -6617,427536.29150163935 -6618,427536.99973961717 -6619,427537.707977595 -6620,427538.41621557274 -6621,427539.12445355055 -6622,427539.83269152837 -6623,427540.5409295062 -6624,427541.24916748394 -6625,427541.95740546176 -6626,427542.66564343957 -6627,427543.3738814174 -6628,427544.0821193952 -6629,427544.79035737296 -6630,427545.4985953508 -6631,427546.20683332864 -6632,427546.9150713064 -6633,427547.62330928416 -6634,427548.33154726203 -6635,427549.03978523985 -6636,427549.74802321754 -6637,427550.4562611954 -6638,427551.16449917323 -6639,427551.872737151 -6640,427552.5809751288 -6641,427553.2892131066 -6642,427553.9974510844 -6643,427554.70568906225 -6644,427555.41392703995 -6645,427556.12216501776 -6646,427556.8304029955 -6647,427557.5386409734 -6648,427558.2468789512 -6649,427558.95511692896 -6650,427559.6633549068 -6651,427560.37159288465 -6652,427561.07983086235 -6653,427561.7880688402 -6654,427562.496306818 -6655,427563.2045447958 -6656,427563.9127827736 -6657,427564.6210207514 -6658,427565.3292587291 -6659,427566.03749670705 -6660,427566.7457346848 -6661,427567.45397266257 -6662,427568.1622106404 -6663,427568.87044861825 -6664,427569.578686596 -6665,427570.2869245738 -6666,427570.9951625516 -6667,427571.70340052946 -6668,427572.4116385072 -6669,427573.119876485 -6670,427573.8281144628 -6671,427574.53635244066 -6672,427575.2445904184 -6673,427575.9528283962 -6674,427576.661066374 -6675,427577.36930435186 -6676,427578.0775423297 -6677,427578.78578030743 -6678,427579.49401828524 -6679,427580.2022562631 -6680,427580.9104942408 -6681,427581.6187322187 -6682,427582.32697019645 -6683,427583.0352081742 -6684,427583.7434461521 -6685,427584.4516841299 -6686,427585.1599221076 -6687,427585.86816008546 -6688,427586.5763980633 -6689,427587.28463604103 -6690,427587.99287401885 -6691,427588.70111199666 -6692,427589.4093499745 -6693,427590.1175879523 -6694,427590.82582593005 -6695,427591.5340639079 -6696,427592.2423018857 -6697,427592.9505398635 -6698,427593.6587778413 -6699,427594.36701581907 -6700,427595.07525379694 -6701,427595.78349177475 -6702,427596.49172975245 -6703,427597.1999677303 -6704,427597.90820570814 -6705,427598.6164436859 -6706,427599.3246816637 -6707,427600.0329196415 -6708,427600.7411576192 -6709,427601.4493955971 -6710,427602.15763357485 -6711,427602.8658715526 -6712,427603.5741095305 -6713,427604.2823475083 -6714,427604.99058548606 -6715,427605.69882346387 -6716,427606.4070614417 -6717,427607.1152994195 -6718,427607.82353739726 -6719,427608.5317753751 -6720,427609.24001335294 -6721,427609.9482513307 -6722,427610.65648930846 -6723,427611.36472728633 -6724,427612.07296526403 -6725,427612.7812032419 -6726,427613.4894412197 -6727,427614.1976791975 -6728,427614.9059171753 -6729,427615.61415515316 -6730,427616.32239313086 -6731,427617.03063110873 -6732,427617.7388690865 -6733,427618.4471070643 -6734,427619.1553450421 -6735,427619.86358301993 -6736,427620.57182099775 -6737,427621.28005897556 -6738,427621.9882969533 -6739,427622.6965349312 -6740,427623.4047729089 -6741,427624.11301088677 -6742,427624.8212488646 -6743,427625.52948684234 -6744,427626.2377248201 -6745,427626.945962798 -6746,427627.6542007757 -6747,427628.36243875354 -6748,427629.07067673135 -6749,427629.77891470917 -6750,427630.487152687 -6751,427631.1953906648 -6752,427631.9036286425 -6753,427632.6118666204 -6754,427633.3201045982 -6755,427634.02834257594 -6756,427634.73658055376 -6757,427635.4448185316 -6758,427636.1530565093 -6759,427636.8612944872 -6760,427637.56953246496 -6761,427638.2777704428 -6762,427638.9860084206 -6763,427639.6942463984 -6764,427640.4024843762 -6765,427641.11072235403 -6766,427641.8189603318 -6767,427642.52719830966 -6768,427643.2354362874 -6769,427643.94367426523 -6770,427644.65191224305 -6771,427645.3601502208 -6772,427646.0683881986 -6773,427646.7766261765 -6774,427647.48486415413 -6775,427648.193102132 -6776,427648.9013401098 -6777,427649.6095780876 -6778,427650.31781606545 -6779,427651.0260540432 -6780,427651.734292021 -6781,427652.4425299988 -6782,427653.15076797665 -6783,427653.8590059544 -6784,427654.5672439322 -6785,427655.27548191 -6786,427655.98371988785 -6787,427656.6919578656 -6788,427657.4001958434 -6789,427658.10843382124 -6790,427658.81667179905 -6791,427659.5249097768 -6792,427660.2331477547 -6793,427660.9413857324 -6794,427661.64962371025 -6795,427662.35786168807 -6796,427663.0660996658 -6797,427663.7743376436 -6798,427664.4825756215 -6799,427665.1908135992 -6800,427665.899051577 -6801,427666.60728955484 -6802,427667.31552753266 -6803,427668.0237655105 -6804,427668.7320034883 -6805,427669.44024146604 -6806,427670.1484794439 -6807,427670.8567174217 -6808,427671.5649553995 -6809,427672.27319337724 -6810,427672.9814313551 -6811,427673.6896693329 -6812,427674.3979073107 -6813,427675.10614528845 -6814,427675.8143832663 -6815,427676.5226212441 -6816,427677.2308592219 -6817,427677.9390971997 -6818,427678.64733517746 -6819,427679.3555731553 -6820,427680.06381113315 -6821,427680.77204911085 -6822,427681.48028708866 -6823,427682.18852506654 -6824,427682.8967630443 -6825,427683.6050010221 -6826,427684.3132389999 -6827,427685.02147697774 -6828,427685.72971495555 -6829,427686.4379529333 -6830,427687.1461909111 -6831,427687.85442888894 -6832,427688.56266686675 -6833,427689.2709048445 -6834,427689.9791428223 -6835,427690.68738080014 -6836,427691.39561877795 -6837,427692.1038567557 -6838,427692.8120947335 -6839,427693.52033271134 -6840,427694.2285706891 -6841,427694.93680866685 -6842,427695.6450466447 -6843,427696.3532846225 -6844,427697.0615226003 -6845,427697.7697605781 -6846,427698.47799855587 -6847,427699.1862365337 -6848,427699.89447451156 -6849,427700.6027124893 -6850,427701.3109504671 -6851,427702.01918844495 -6852,427702.72742642276 -6853,427703.4356644005 -6854,427704.14390237833 -6855,427704.85214035615 -6856,427705.56037833396 -6857,427706.2686163117 -6858,427706.97685428953 -6859,427707.6850922673 -6860,427708.39333024516 -6861,427709.101568223 -6862,427709.80980620073 -6863,427710.5180441785 -6864,427711.2262821564 -6865,427711.9345201341 -6866,427712.64275811194 -6867,427713.35099608975 -6868,427714.05923406756 -6869,427714.7674720453 -6870,427715.4757100232 -6871,427716.18394800095 -6872,427716.89218597877 -6873,427717.6004239566 -6874,427718.3086619344 -6875,427719.01689991215 -6876,427719.72513789 -6877,427720.4333758678 -6878,427721.1416138456 -6879,427721.84985182335 -6880,427722.5580898012 -6881,427723.266327779 -6882,427723.9745657568 -6883,427724.68280373455 -6884,427725.3910417124 -6885,427726.0992796902 -6886,427726.807517668 -6887,427727.51575564576 -6888,427728.22399362363 -6889,427728.93223160144 -6890,427729.6404695792 -6891,427730.34870755696 -6892,427731.0569455349 -6893,427731.7651835126 -6894,427732.4734214904 -6895,427733.1816594682 -6896,427733.88989744603 -6897,427734.59813542385 -6898,427735.30637340166 -6899,427736.0146113794 -6900,427736.7228493573 -6901,427737.43108733505 -6902,427738.13932531286 -6903,427738.8475632906 -6904,427739.5558012684 -6905,427740.2640392462 -6906,427740.972277224 -6907,427741.68051520176 -6908,427742.3887531796 -6909,427743.0969911574 -6910,427743.8052291352 -6911,427744.513467113 -6912,427745.22170509084 -6913,427745.9299430686 -6914,427746.63818104647 -6915,427747.3464190242 -6916,427748.054657002 -6917,427748.76289497985 -6918,427749.47113295767 -6919,427750.17937093537 -6920,427750.88760891324 -6921,427751.59584689105 -6922,427752.3040848688 -6923,427753.0123228466 -6924,427753.72056082444 -6925,427754.42879880226 -6926,427755.13703678007 -6927,427755.8452747578 -6928,427756.55351273564 -6929,427757.26175071346 -6930,427757.9699886913 -6931,427758.678226669 -6932,427759.38646464684 -6933,427760.09470262466 -6934,427760.8029406025 -6935,427761.51117858023 -6936,427762.21941655804 -6937,427762.92765453586 -6938,427763.6358925137 -6939,427764.3441304915 -6940,427765.0523684693 -6941,427765.76060644706 -6942,427766.46884442493 -6943,427767.1770824027 -6944,427767.88532038045 -6945,427768.5935583583 -6946,427769.30179633613 -6947,427770.0100343139 -6948,427770.7182722917 -6949,427771.42651026946 -6950,427772.13474824734 -6951,427772.8429862251 -6952,427773.5512242029 -6953,427774.25946218066 -6954,427774.96770015854 -6955,427775.6759381363 -6956,427776.3841761141 -6957,427777.09241409187 -6958,427777.80065206974 -6959,427778.50889004755 -6960,427779.2171280253 -6961,427779.9253660031 -6962,427780.633603981 -6963,427781.3418419587 -6964,427782.05007993657 -6965,427782.7583179143 -6966,427783.46655589214 -6967,427784.17479386996 -6968,427784.88303184777 -6969,427785.5912698254 -6970,427786.29950780334 -6971,427787.0077457811 -6972,427787.71598375886 -6973,427788.42422173667 -6974,427789.13245971454 -6975,427789.8406976923 -6976,427790.5489356701 -6977,427791.2571736479 -6978,427791.96541162574 -6979,427792.6736496035 -6980,427793.3818875813 -6981,427794.09012555913 -6982,427794.79836353695 -6983,427795.50660151476 -6984,427796.2148394926 -6985,427796.9230774703 -6986,427797.6313154482 -6987,427798.33955342596 -6988,427799.0477914037 -6989,427799.75602938153 -6990,427800.4642673594 -6991,427801.1725053371 -6992,427801.880743315 -6993,427802.58898129273 -6994,427803.2972192705 -6995,427804.00545724836 -6996,427804.7136952262 -6997,427805.42193320394 -6998,427806.13017118175 -6999,427806.83840915957 -7000,427807.5466471374 -7001,427808.25488511514 -7002,427808.96312309295 -7003,427809.6713610708 -7004,427810.3795990486 -7005,427811.08783702634 -7006,427811.7960750042 -7007,427812.50431298197 -7008,427813.2125509598 -7009,427813.9207889376 -7010,427814.62902691535 -7011,427815.3372648932 -7012,427816.04550287104 -7013,427816.75374084874 -7014,427817.4619788266 -7015,427818.1702168044 -7016,427818.8784547822 -7017,427819.58669276 -7018,427820.2949307378 -7019,427821.00316871563 -7020,427821.71140669344 -7021,427822.4196446712 -7022,427823.127882649 -7023,427823.83612062683 -7024,427824.54435860465 -7025,427825.2525965824 -7026,427825.9608345602 -7027,427826.66907253803 -7028,427827.37731051585 -7029,427828.0855484936 -7030,427828.7937864714 -7031,427829.5020244493 -7032,427830.21026242705 -7033,427830.91850040486 -7034,427831.6267383826 -7035,427832.3349763603 -7036,427833.04321433825 -7037,427833.75145231606 -7038,427834.45969029376 -7039,427835.1679282716 -7040,427835.87616624945 -7041,427836.5844042272 -7042,427837.292642205 -7043,427838.0008801828 -7044,427838.70911816065 -7045,427839.41735613847 -7046,427840.1255941162 -7047,427840.83383209404 -7048,427841.54207007185 -7049,427842.25030804967 -7050,427842.9585460275 -7051,427843.66678400524 -7052,427844.37502198305 -7053,427845.0832599609 -7054,427845.7914979386 -7055,427846.49973591644 -7056,427847.2079738943 -7057,427847.91621187207 -7058,427848.6244498498 -7059,427849.3326878277 -7060,427850.04092580546 -7061,427850.7491637833 -7062,427851.4574017611 -7063,427852.16563973884 -7064,427852.8738777167 -7065,427853.58211569453 -7066,427854.29035367223 -7067,427854.9985916501 -7068,427855.7068296279 -7069,427856.4150676057 -7070,427857.1233055835 -7071,427857.8315435613 -7072,427858.5397815391 -7073,427859.24801951693 -7074,427859.9562574947 -7075,427860.66449547256 -7076,427861.3727334503 -7077,427862.08097142813 -7078,427862.78920940595 -7079,427863.4974473837 -7080,427864.20568536146 -7081,427864.9139233394 -7082,427865.6221613171 -7083,427866.3303992949 -7084,427867.0386372727 -7085,427867.74687525054 -7086,427868.45511322835 -7087,427869.16335120617 -7088,427869.8715891839 -7089,427870.5798271618 -7090,427871.28806513955 -7091,427871.99630311737 -7092,427872.7045410951 -7093,427873.412779073 -7094,427874.12101705075 -7095,427874.82925502857 -7096,427875.5374930063 -7097,427876.2457309842 -7098,427876.95396896196 -7099,427877.6622069397 -7100,427878.3704449175 -7101,427879.07868289534 -7102,427879.7869208731 -7103,427880.495158851 -7104,427881.20339682867 -7105,427881.91163480654 -7106,427882.61987278436 -7107,427883.3281107621 -7108,427884.03634873993 -7109,427884.7445867178 -7110,427885.4528246955 -7111,427886.1610626734 -7112,427886.86930065113 -7113,427887.57753862895 -7114,427888.28577660676 -7115,427888.9940145846 -7116,427889.70225256233 -7117,427890.4104905402 -7118,427891.11872851796 -7119,427891.8269664958 -7120,427892.53520447353 -7121,427893.2434424514 -7122,427893.9516804292 -7123,427894.659918407 -7124,427895.36815638473 -7125,427896.07639436267 -7126,427896.78463234036 -7127,427897.4928703182 -7128,427898.201108296 -7129,427898.90934627375 -7130,427899.61758425157 -7131,427900.32582222944 -7132,427901.0340602072 -7133,427901.74229818495 -7134,427902.4505361628 -7135,427903.15877414064 -7136,427903.8670121184 -7137,427904.5752500962 -7138,427905.283488074 -7139,427905.99172605184 -7140,427906.6999640296 -7141,427907.4082020074 -7142,427908.1164399852 -7143,427908.82467796304 -7144,427909.53291594086 -7145,427910.2411539186 -7146,427910.9493918964 -7147,427911.6576298743 -7148,427912.365867852 -7149,427913.0741058298 -7150,427913.7823438077 -7151,427914.49058178545 -7152,427915.1988197632 -7153,427915.9070577411 -7154,427916.61529571883 -7155,427917.32353369665 -7156,427918.03177167446 -7157,427918.7400096522 -7158,427919.4482476301 -7159,427920.1564856079 -7160,427920.86472358566 -7161,427921.5729615635 -7162,427922.2811995413 -7163,427922.9894375191 -7164,427923.6976754968 -7165,427924.4059134746 -7166,427925.1141514524 -7167,427925.82238943025 -7168,427926.530627408 -7169,427927.2388653858 -7170,427927.9471033636 -7171,427928.65534134145 -7172,427929.36357931927 -7173,427930.071817297 -7174,427930.7800552748 -7175,427931.4882932527 -7176,427932.19653123047 -7177,427932.9047692082 -7178,427933.61300718604 -7179,427934.3212451639 -7180,427935.0294831416 -7181,427935.7377211195 -7182,427936.44595909724 -7183,427937.15419707505 -7184,427937.86243505287 -7185,427938.5706730307 -7186,427939.27891100844 -7187,427939.9871489863 -7188,427940.6953869641 -7189,427941.4036249419 -7190,427942.11186291964 -7191,427942.8201008975 -7192,427943.5283388753 -7193,427944.2365768531 -7194,427944.9448148309 -7195,427945.6530528087 -7196,427946.3612907865 -7197,427947.06952876435 -7198,427947.77776674205 -7199,427948.4860047199 -7200,427949.19424269773 -7201,427949.9024806755 -7202,427950.61071865325 -7203,427951.3189566312 -7204,427952.02719460893 -7205,427952.7354325867 -7206,427953.4436705645 -7207,427954.1519085424 -7208,427954.86014652014 -7209,427955.56838449795 -7210,427956.2766224757 -7211,427956.9848604536 -7212,427957.69309843134 -7213,427958.40133640915 -7214,427959.1095743869 -7215,427959.8178123647 -7216,427960.52605034254 -7217,427961.23428832035 -7218,427961.9425262981 -7219,427962.6507642759 -7220,427963.35900225374 -7221,427964.06724023155 -7222,427964.77547820937 -7223,427965.4837161872 -7224,427966.19195416494 -7225,427966.9001921428 -7226,427967.60843012057 -7227,427968.3166680983 -7228,427969.0249060762 -7229,427969.73314405396 -7230,427970.4413820317 -7231,427971.1496200095 -7232,427971.85785798734 -7233,427972.56609596516 -7234,427973.2743339429 -7235,427973.98257192073 -7236,427974.69080989854 -7237,427975.39904787636 -7238,427976.1072858541 -7239,427976.81552383193 -7240,427977.52376180975 -7241,427978.23199978756 -7242,427978.9402377653 -7243,427979.64847574313 -7244,427980.356713721 -7245,427981.06495169876 -7246,427981.7731896765 -7247,427982.4814276544 -7248,427983.1896656322 -7249,427983.89790360996 -7250,427984.6061415878 -7251,427985.3143795656 -7252,427986.0226175433 -7253,427986.7308555212 -7254,427987.439093499 -7255,427988.14733147674 -7256,427988.85556945455 -7257,427989.5638074324 -7258,427990.2720454102 -7259,427990.980283388 -7260,427991.68852136575 -7261,427992.3967593436 -7262,427993.1049973214 -7263,427993.8132352992 -7264,427994.521473277 -7265,427995.2297112548 -7266,427995.93794923264 -7267,427996.64618721046 -7268,427997.35442518815 -7269,427998.0626631661 -7270,427998.77090114384 -7271,427999.4791391216 -7272,428000.1873770994 -7273,428000.8956150773 -7274,428001.603853055 -7275,428002.31209103286 -7276,428003.0203290106 -7277,428003.72856698843 -7278,428004.43680496624 -7279,428005.14504294406 -7280,428005.8532809218 -7281,428006.5615188997 -7282,428007.26975687745 -7283,428007.97799485526 -7284,428008.686232833 -7285,428009.3944708109 -7286,428010.10270878865 -7287,428010.81094676646 -7288,428011.5191847442 -7289,428012.2274227221 -7290,428012.93566069985 -7291,428013.64389867766 -7292,428014.3521366555 -7293,428015.0603746333 -7294,428015.76861261105 -7295,428016.47685058886 -7296,428017.18508856656 -7297,428017.8933265445 -7298,428018.60156452225 -7299,428019.3098025 -7300,428020.0180404778 -7301,428020.72627845564 -7302,428021.4345164334 -7303,428022.14275441127 -7304,428022.850992389 -7305,428023.55923036684 -7306,428024.26746834465 -7307,428024.97570632247 -7308,428025.6839443003 -7309,428026.39218227804 -7310,428027.1004202559 -7311,428027.8086582337 -7312,428028.5168962114 -7313,428029.22513418924 -7314,428029.9333721672 -7315,428030.64161014487 -7316,428031.3498481227 -7317,428032.0580861005 -7318,428032.7663240783 -7319,428033.47456205613 -7320,428034.18280003394 -7321,428034.89103801164 -7322,428035.5992759896 -7323,428036.30751396733 -7324,428037.0157519451 -7325,428037.7239899229 -7326,428038.4322279008 -7327,428039.1404658785 -7328,428039.84870385635 -7329,428040.5569418341 -7330,428041.2651798119 -7331,428041.97341778973 -7332,428042.68165576755 -7333,428043.3898937453 -7334,428044.0981317232 -7335,428044.80636970093 -7336,428045.51460767875 -7337,428046.2228456565 -7338,428046.9310836344 -7339,428047.6393216122 -7340,428048.34755958995 -7341,428049.0557975677 -7342,428049.76403554564 -7343,428050.47227352334 -7344,428051.18051150115 -7345,428051.88874947897 -7346,428052.5969874567 -7347,428053.3052254346 -7348,428054.0134634124 -7349,428054.7217013901 -7350,428055.429939368 -7351,428056.1381773458 -7352,428056.84641532355 -7353,428057.55465330137 -7354,428058.2628912792 -7355,428058.971129257 -7356,428059.6793672348 -7357,428060.38760521257 -7358,428061.09584319044 -7359,428061.80408116814 -7360,428062.51231914596 -7361,428063.2205571238 -7362,428063.9287951015 -7363,428064.63703307934 -7364,428065.3452710572 -7365,428066.0535090349 -7366,428066.76174701273 -7367,428067.4699849906 -7368,428068.17822296836 -7369,428068.8864609462 -7370,428069.594698924 -7371,428070.30293690175 -7372,428071.0111748796 -7373,428071.7194128574 -7374,428072.42765083513 -7375,428073.135888813 -7376,428073.8441267908 -7377,428074.5523647686 -7378,428075.2606027464 -7379,428075.9688407242 -7380,428076.677078702 -7381,428077.3853166798 -7382,428078.0935546576 -7383,428078.80179263547 -7384,428079.5100306132 -7385,428080.218268591 -7386,428080.92650656885 -7387,428081.63474454655 -7388,428082.3429825244 -7389,428083.05122050224 -7390,428083.75945848 -7391,428084.4676964578 -7392,428085.1759344357 -7393,428085.8841724134 -7394,428086.59241039125 -7395,428087.300648369 -7396,428088.0088863468 -7397,428088.71712432464 -7398,428089.42536230246 -7399,428090.1336002802 -7400,428090.8418382581 -7401,428091.55007623584 -7402,428092.25831421366 -7403,428092.9665521914 -7404,428093.6747901693 -7405,428094.3830281471 -7406,428095.09126612486 -7407,428095.7995041026 -7408,428096.50774208055 -7409,428097.21598005824 -7410,428097.92421803606 -7411,428098.6324560139 -7412,428099.3406939917 -7413,428100.04893196945 -7414,428100.7571699473 -7415,428101.465407925 -7416,428102.1736459029 -7417,428102.8818838807 -7418,428103.59012185846 -7419,428104.2983598363 -7420,428105.00659781415 -7421,428105.71483579185 -7422,428106.4230737697 -7423,428107.1313117475 -7424,428107.8395497253 -7425,428108.54778770305 -7426,428109.25602568086 -7427,428109.9642636586 -7428,428110.6725016365 -7429,428111.38073961425 -7430,428112.08897759207 -7431,428112.7972155698 -7432,428113.50545354764 -7433,428114.2136915255 -7434,428114.92192950327 -7435,428115.630167481 -7436,428116.3384054589 -7437,428117.04664343665 -7438,428117.75488141447 -7439,428118.4631193923 -7440,428119.1713573701 -7441,428119.8795953479 -7442,428120.5878333257 -7443,428121.2960713035 -7444,428122.0043092813 -7445,428122.7125472591 -7446,428123.4207852369 -7447,428124.1290232147 -7448,428124.8372611925 -7449,428125.5454991703 -7450,428126.25373714813 -7451,428126.9619751259 -7452,428127.6702131037 -7453,428128.3784510815 -7454,428129.08668905933 -7455,428129.79492703715 -7456,428130.5031650149 -7457,428131.2114029927 -7458,428131.9196409706 -7459,428132.6278789483 -7460,428133.3361169261 -7461,428134.044354904 -7462,428134.75259288173 -7463,428135.4608308595 -7464,428136.16906883736 -7465,428136.8773068151 -7466,428137.58554479294 -7467,428138.29378277075 -7468,428139.00202074856 -7469,428139.7102587264 -7470,428140.4184967042 -7471,428141.12673468195 -7472,428141.83497265977 -7473,428142.5432106376 -7474,428143.2514486154 -7475,428143.95968659315 -7476,428144.66792457097 -7477,428145.37616254884 -7478,428146.0844005266 -7479,428146.79263850435 -7480,428147.5008764822 -7481,428148.2091144599 -7482,428148.9173524378 -7483,428149.6255904156 -7484,428150.33382839337 -7485,428151.0420663711 -7486,428151.75030434906 -7487,428152.4585423268 -7488,428153.1667803046 -7489,428153.8750182823 -7490,428154.5832562602 -7491,428155.29149423796 -7492,428155.9997322158 -7493,428156.7079701935 -7494,428157.4162081714 -7495,428158.12444614916 -7496,428158.832684127 -7497,428159.54092210473 -7498,428160.2491600826 -7499,428160.95739806036 -7500,428161.6656360382 -7501,428162.37387401593 -7502,428163.0821119938 -7503,428163.79034997156 -7504,428164.4985879494 -7505,428165.2068259272 -7506,428165.915063905 -7507,428166.62330188276 -7508,428167.33153986064 -7509,428168.0397778384 -7510,428168.7480158162 -7511,428169.456253794 -7512,428170.16449177184 -7513,428170.8727297496 -7514,428171.58096772747 -7515,428172.2892057052 -7516,428172.99744368304 -7517,428173.7056816608 -7518,428174.41391963867 -7519,428175.1221576164 -7520,428175.83039559424 -7521,428176.538633572 -7522,428177.2468715498 -7523,428177.9551095276 -7524,428178.66334750544 -7525,428179.3715854832 -7526,428180.079823461 -7527,428180.7880614389 -7528,428181.49629941664 -7529,428182.2045373944 -7530,428182.9127753723 -7531,428183.6210133501 -7532,428184.32925132784 -7533,428185.03748930566 -7534,428185.7457272835 -7535,428186.45396526123 -7536,428187.1622032391 -7537,428187.87044121686 -7538,428188.5786791946 -7539,428189.2869171725 -7540,428189.9951551503 -7541,428190.70339312806 -7542,428191.4116311059 -7543,428192.1198690837 -7544,428192.8281070615 -7545,428193.53634503926 -7546,428194.2445830171 -7547,428194.9528209949 -7548,428195.6610589727 -7549,428196.36929695046 -7550,428197.0775349283 -7551,428197.7857729061 -7552,428198.4940108839 -7553,428199.20224886166 -7554,428199.9104868394 -7555,428200.6187248173 -7556,428201.3269627951 -7557,428202.0352007728 -7558,428202.7434387507 -7559,428203.4516767285 -7560,428204.15991470625 -7561,428204.86815268407 -7562,428205.5763906619 -7563,428206.28462863964 -7564,428206.9928666175 -7565,428207.70110459527 -7566,428208.4093425731 -7567,428209.11758055084 -7568,428209.8258185287 -7569,428210.53405650647 -7570,428211.2422944843 -7571,428211.95053246204 -7572,428212.6587704399 -7573,428213.36700841767 -7574,428214.0752463955 -7575,428214.7834843733 -7576,428215.4917223511 -7577,428216.19996032893 -7578,428216.90819830674 -7579,428217.6164362845 -7580,428218.3246742624 -7581,428219.03291224013 -7582,428219.7411502179 -7583,428220.44938819576 -7584,428221.1576261736 -7585,428221.8658641513 -7586,428222.57410212915 -7587,428223.28234010696 -7588,428223.9905780847 -7589,428224.6988160626 -7590,428225.40705404035 -7591,428226.1152920181 -7592,428226.823529996 -7593,428227.5317679738 -7594,428228.24000595155 -7595,428228.94824392936 -7596,428229.6564819072 -7597,428230.364719885 -7598,428231.07295786275 -7599,428231.78119584057 -7600,428232.4894338184 -7601,428233.1976717962 -7602,428233.905909774 -7603,428234.6141477518 -7604,428235.3223857296 -7605,428236.03062370745 -7606,428236.7388616852 -7607,428237.44709966297 -7608,428238.15533764084 -7609,428238.86357561866 -7610,428239.57181359635 -7611,428240.2800515742 -7612,428240.988289552 -7613,428241.6965275298 -7614,428242.4047655076 -7615,428243.1130034854 -7616,428243.8212414632 -7617,428244.52947944106 -7618,428245.2377174188 -7619,428245.94595539663 -7620,428246.6541933743 -7621,428247.3624313522 -7622,428248.07066933 -7623,428248.7789073078 -7624,428249.48714528553 -7625,428250.19538326346 -7626,428250.90362124116 -7627,428251.611859219 -7628,428252.3200971968 -7629,428253.0283351746 -7630,428253.7365731524 -7631,428254.44481113023 -7632,428255.15304910793 -7633,428255.86128708586 -7634,428256.5695250636 -7635,428257.2777630414 -7636,428257.9860010192 -7637,428258.69423899706 -7638,428259.4024769748 -7639,428260.11071495264 -7640,428260.8189529304 -7641,428261.52719090827 -7642,428262.235428886 -7643,428262.94366686384 -7644,428263.65190484165 -7645,428264.36014281947 -7646,428265.0683807972 -7647,428265.7766187751 -7648,428266.4848567528 -7649,428267.19309473067 -7650,428267.9013327085 -7651,428268.60957068624 -7652,428269.31780866405 -7653,428270.0260466419 -7654,428270.7342846196 -7655,428271.4425225975 -7656,428272.15076057526 -7657,428272.858998553 -7658,428273.5672365309 -7659,428274.2754745087 -7660,428274.98371248646 -7661,428275.6919504643 -7662,428276.4001884421 -7663,428277.1084264199 -7664,428277.81666439766 -7665,428278.5249023755 -7666,428279.23314035335 -7667,428279.9413783311 -7668,428280.64961630886 -7669,428281.35785428673 -7670,428282.0660922645 -7671,428282.7743302423 -7672,428283.4825682201 -7673,428284.1908061979 -7674,428284.8990441757 -7675,428285.60728215356 -7676,428286.31552013126 -7677,428287.0237581091 -7678,428287.73199608695 -7679,428288.4402340647 -7680,428289.1484720425 -7681,428289.85671002034 -7682,428290.5649479981 -7683,428291.27318597597 -7684,428291.98142395366 -7685,428292.6896619315 -7686,428293.3978999093 -7687,428294.1061378871 -7688,428294.8143758649 -7689,428295.5226138427 -7690,428296.2308518205 -7691,428296.93908979837 -7692,428297.64732777607 -7693,428298.3555657539 -7694,428299.06380373175 -7695,428299.7720417095 -7696,428300.48027968727 -7697,428301.18851766514 -7698,428301.89675564284 -7699,428302.6049936207 -7700,428303.3132315985 -7701,428304.0214695763 -7702,428304.7297075541 -7703,428305.437945532 -7704,428306.1461835097 -7705,428306.85442148754 -7706,428307.5626594653 -7707,428308.2708974432 -7708,428308.97913542093 -7709,428309.68737339874 -7710,428310.3956113765 -7711,428311.1038493544 -7712,428311.81208733213 -7713,428312.52032530995 -7714,428313.2285632877 -7715,428313.9368012656 -7716,428314.6450392434 -7717,428315.35327722115 -7718,428316.0615151989 -7719,428316.76975317684 -7720,428317.47799115453 -7721,428318.18622913235 -7722,428318.89446711016 -7723,428319.602705088 -7724,428320.3109430658 -7725,428321.0191810436 -7726,428321.7274190213 -7727,428322.43565699924 -7728,428323.143894977 -7729,428323.85213295475 -7730,428324.56037093257 -7731,428325.26860891044 -7732,428325.9768468882 -7733,428326.685084866 -7734,428327.39332284377 -7735,428328.10156082164 -7736,428328.8097987994 -7737,428329.5180367772 -7738,428330.226274755 -7739,428330.93451273284 -7740,428331.6427507106 -7741,428332.3509886885 -7742,428333.05922666617 -7743,428333.767464644 -7744,428334.47570262186 -7745,428335.1839405996 -7746,428335.8921785774 -7747,428336.60041655524 -7748,428337.308654533 -7749,428338.01689251076 -7750,428338.7251304886 -7751,428339.4333684664 -7752,428340.1416064442 -7753,428340.849844422 -7754,428341.5580823998 -7755,428342.2663203776 -7756,428342.9745583554 -7757,428343.6827963332 -7758,428344.391034311 -7759,428345.0992722888 -7760,428345.80751026666 -7761,428346.5157482444 -7762,428347.2239862222 -7763,428347.93222420005 -7764,428348.6404621778 -7765,428349.3487001556 -7766,428350.05693813344 -7767,428350.7651761112 -7768,428351.473414089 -7769,428352.1816520669 -7770,428352.8898900446 -7771,428353.5981280224 -7772,428354.30636600027 -7773,428355.014603978 -7774,428355.72284195584 -7775,428356.43107993365 -7776,428357.13931791147 -7777,428357.8475558893 -7778,428358.55579386704 -7779,428359.26403184485 -7780,428359.97226982267 -7781,428360.6805078005 -7782,428361.38874577824 -7783,428362.09698375606 -7784,428362.8052217338 -7785,428363.5134597117 -7786,428364.22169768944 -7787,428364.92993566726 -7788,428365.6381736451 -7789,428366.3464116229 -7790,428367.05464960064 -7791,428367.7628875785 -7792,428368.4711255563 -7793,428369.1793635341 -7794,428369.8876015119 -7795,428370.5958394897 -7796,428371.3040774674 -7797,428372.01231544535 -7798,428372.7205534231 -7799,428373.42879140086 -7800,428374.1370293787 -7801,428374.84526735655 -7802,428375.5535053343 -7803,428376.2617433121 -7804,428376.9699812899 -7805,428377.67821926775 -7806,428378.3864572455 -7807,428379.0946952233 -7808,428379.8029332011 -7809,428380.51117117895 -7810,428381.21940915677 -7811,428381.9276471345 -7812,428382.6358851123 -7813,428383.3441230902 -7814,428384.05236106785 -7815,428384.76059904567 -7816,428385.4688370235 -7817,428386.1770750013 -7818,428386.88531297905 -7819,428387.5935509569 -7820,428388.3017889347 -7821,428389.0100269125 -7822,428389.7182648903 -7823,428390.4265028681 -7824,428391.1347408459 -7825,428391.84297882376 -7826,428392.5512168015 -7827,428393.2594547793 -7828,428393.9676927571 -7829,428394.6759307349 -7830,428395.3841687127 -7831,428396.0924066905 -7832,428396.8006446683 -7833,428397.5088826461 -7834,428398.2171206239 -7835,428398.92535860173 -7836,428399.63359657954 -7837,428400.3418345573 -7838,428401.0500725352 -7839,428401.758310513 -7840,428402.4665484907 -7841,428403.17478646856 -7842,428403.8830244464 -7843,428404.59126242413 -7844,428405.29950040195 -7845,428406.00773837976 -7846,428406.7159763576 -7847,428407.4242143354 -7848,428408.13245231315 -7849,428408.84069029096 -7850,428409.5489282688 -7851,428410.2571662466 -7852,428410.9654042244 -7853,428411.67364220216 -7854,428412.38188018 -7855,428413.0901181578 -7856,428413.7983561356 -7857,428414.50659411337 -7858,428415.21483209124 -7859,428415.923070069 -7860,428416.6313080468 -7861,428417.33954602457 -7862,428418.04778400244 -7863,428418.75602198025 -7864,428419.464259958 -7865,428420.17249793577 -7866,428420.8807359137 -7867,428421.58897389146 -7868,428422.2972118692 -7869,428423.005449847 -7870,428423.7136878249 -7871,428424.4219258026 -7872,428425.1301637805 -7873,428425.8384017582 -7874,428426.546639736 -7875,428427.25487771386 -7876,428427.9631156917 -7877,428428.67135366943 -7878,428429.37959164724 -7879,428430.087829625 -7880,428430.7960676029 -7881,428431.5043055806 -7882,428432.2125435584 -7883,428432.92078153626 -7884,428433.629019514 -7885,428434.33725749183 -7886,428435.04549546965 -7887,428435.7537334474 -7888,428436.4619714253 -7889,428437.17020940303 -7890,428437.8784473808 -7891,428438.58668535866 -7892,428439.2949233365 -7893,428440.0031613142 -7894,428440.71139929205 -7895,428441.41963726986 -7896,428442.1278752476 -7897,428442.83611322544 -7898,428443.54435120325 -7899,428444.25258918107 -7900,428444.9608271589 -7901,428445.66906513664 -7902,428446.37730311445 -7903,428447.08554109227 -7904,428447.7937790701 -7905,428448.50201704784 -7906,428449.21025502565 -7907,428449.91849300347 -7908,428450.6267309813 -7909,428451.33496895904 -7910,428452.04320693685 -7911,428452.7514449147 -7912,428453.4596828925 -7913,428454.1679208703 -7914,428454.8761588481 -7915,428455.5843968258 -7916,428456.29263480374 -7917,428457.0008727815 -7918,428457.70911075926 -7919,428458.4173487371 -7920,428459.12558671494 -7921,428459.83382469264 -7922,428460.5420626705 -7923,428461.2503006483 -7924,428461.95853862615 -7925,428462.6667766039 -7926,428463.3750145817 -7927,428464.08325255953 -7928,428464.79149053735 -7929,428465.4997285151 -7930,428466.207966493 -7931,428466.9162044707 -7932,428467.62444244855 -7933,428468.33268042636 -7934,428469.0409184041 -7935,428469.74915638193 -7936,428470.4573943598 -7937,428471.1656323375 -7938,428471.8738703154 -7939,428472.58210829314 -7940,428473.29034627095 -7941,428473.99858424877 -7942,428474.7068222266 -7943,428475.4150602043 -7944,428476.1232981822 -7945,428476.8315361599 -7946,428477.53977413767 -7947,428478.2480121155 -7948,428478.95625009335 -7949,428479.6644880711 -7950,428480.3727260489 -7951,428481.0809640267 -7952,428481.78920200455 -7953,428482.4974399823 -7954,428483.2056779601 -7955,428483.91391593794 -7956,428484.62215391576 -7957,428485.3303918935 -7958,428486.0386298714 -7959,428486.7468678491 -7960,428487.4551058269 -7961,428488.1633438048 -7962,428488.8715817825 -7963,428489.57981976034 -7964,428490.28805773816 -7965,428490.9962957159 -7966,428491.7045336938 -7967,428492.41277167154 -7968,428493.12100964936 -7969,428493.8292476272 -7970,428494.537485605 -7971,428495.2457235828 -7972,428495.95396156056 -7973,428496.6621995384 -7974,428497.37043751625 -7975,428498.07867549395 -7976,428498.78691347176 -7977,428499.49515144964 -7978,428500.2033894274 -7979,428500.91162740515 -7980,428501.619865383 -7981,428502.3281033608 -7982,428503.0363413386 -7983,428503.7445793164 -7984,428504.45281729416 -7985,428505.16105527204 -7986,428505.86929324985 -7987,428506.57753122755 -7988,428507.2857692054 -7989,428507.99400718324 -7990,428508.702245161 -7991,428509.4104831388 -7992,428510.1187211166 -7993,428510.8269590944 -7994,428511.53519707225 -7995,428512.24343505 -7996,428512.9516730278 -7997,428513.65991100564 -7998,428514.36814898346 -7999,428515.0763869613 -8000,428515.784624939 -8001,428516.49286291684 -8002,428517.2011008947 -8003,428517.9093388724 -8004,428518.6175768502 -8005,428519.3258148281 -8006,428520.03405280586 -8007,428520.7422907837 -8008,428521.4505287615 -8009,428522.1587667392 -8010,428522.8670047171 -8011,428523.5752426948 -8012,428524.28348067263 -8013,428524.9917186504 -8014,428525.69995662826 -8015,428526.408194606 -8016,428527.11643258383 -8017,428527.8246705616 -8018,428528.53290853946 -8019,428529.2411465172 -8020,428529.94938449503 -8021,428530.65762247285 -8022,428531.36586045066 -8023,428532.0740984284 -8024,428532.7823364063 -8025,428533.490574384 -8026,428534.19881236186 -8027,428534.9070503397 -8028,428535.61528831744 -8029,428536.3235262952 -8030,428537.0317642731 -8031,428537.7400022508 -8032,428538.44824022864 -8033,428539.15647820645 -8034,428539.86471618427 -8035,428540.5729541621 -8036,428541.2811921399 -8037,428541.98943011765 -8038,428542.6976680955 -8039,428543.4059060733 -8040,428544.1141440511 -8041,428544.82238202885 -8042,428545.5306200067 -8043,428546.2388579845 -8044,428546.9470959623 -8045,428547.65533394006 -8046,428548.363571918 -8047,428549.0718098957 -8048,428549.7800478735 -8049,428550.4882858513 -8050,428551.1965238291 -8051,428551.9047618069 -8052,428552.61299978476 -8053,428553.32123776246 -8054,428554.0294757403 -8055,428554.73771371815 -8056,428555.4459516959 -8057,428556.1541896737 -8058,428556.86242765153 -8059,428557.57066562935 -8060,428558.27890360716 -8061,428558.9871415849 -8062,428559.69537956273 -8063,428560.40361754055 -8064,428561.11185551836 -8065,428561.8200934961 -8066,428562.52833147394 -8067,428563.23656945175 -8068,428563.94480742957 -8069,428564.6530454073 -8070,428565.36128338514 -8071,428566.069521363 -8072,428566.77775934077 -8073,428567.4859973185 -8074,428568.1942352964 -8075,428568.9024732741 -8076,428569.6107112519 -8077,428570.3189492297 -8078,428571.0271872075 -8079,428571.7354251853 -8080,428572.44366316317 -8081,428573.1519011409 -8082,428573.8601391187 -8083,428574.56837709656 -8084,428575.27661507437 -8085,428575.9848530521 -8086,428576.69309102994 -8087,428577.40132900776 -8088,428578.1095669856 -8089,428578.8178049633 -8090,428579.52604294114 -8091,428580.2342809189 -8092,428580.9425188968 -8093,428581.6507568746 -8094,428582.35899485234 -8095,428583.0672328301 -8096,428583.77547080803 -8097,428584.48370878573 -8098,428585.19194676355 -8099,428585.90018474136 -8100,428586.6084227192 -8101,428587.31666069693 -8102,428588.0248986748 -8103,428588.73313665256 -8104,428589.4413746304 -8105,428590.1496126082 -8106,428590.857850586 -8107,428591.56608856376 -8108,428592.27432654164 -8109,428592.9825645194 -8110,428593.6908024972 -8111,428594.39904047496 -8112,428595.10727845284 -8113,428595.8155164306 -8114,428596.5237544084 -8115,428597.23199238617 -8116,428597.94023036404 -8117,428598.6484683418 -8118,428599.3567063196 -8119,428600.06494429737 -8120,428600.77318227524 -8121,428601.48142025305 -8122,428602.1896582308 -8123,428602.89789620857 -8124,428603.6061341865 -8125,428604.31437216426 -8126,428605.022610142 -8127,428605.7308481198 -8128,428606.43908609764 -8129,428607.14732407546 -8130,428607.8555620533 -8131,428608.5638000311 -8132,428609.2720380089 -8133,428609.9802759867 -8134,428610.6885139645 -8135,428611.3967519423 -8136,428612.1049899201 -8137,428612.8132278979 -8138,428613.5214658757 -8139,428614.2297038535 -8140,428614.9379418312 -8141,428615.6461798091 -8142,428616.3544177868 -8143,428617.06265576463 -8144,428617.77089374245 -8145,428618.47913172026 -8146,428619.1873696981 -8147,428619.8956076759 -8148,428620.6038456536 -8149,428621.3120836315 -8150,428622.0203216093 -8151,428622.72855958703 -8152,428623.43679756485 -8153,428624.1450355427 -8154,428624.8532735204 -8155,428625.5615114983 -8156,428626.26974947605 -8157,428626.97798745387 -8158,428627.6862254317 -8159,428628.3944634095 -8160,428629.10270138725 -8161,428629.8109393651 -8162,428630.5191773429 -8163,428631.2274153207 -8164,428631.93565329845 -8165,428632.6438912763 -8166,428633.3521292541 -8167,428634.0603672319 -8168,428634.76860520965 -8169,428635.4768431875 -8170,428636.1850811653 -8171,428636.89331914316 -8172,428637.6015571209 -8173,428638.3097950987 -8174,428639.01803307654 -8175,428639.72627105436 -8176,428640.43450903206 -8177,428641.14274701 -8178,428641.85098498774 -8179,428642.5592229655 -8180,428643.2674609433 -8181,428643.9756989212 -8182,428644.68393689895 -8183,428645.39217487676 -8184,428646.1004128545 -8185,428646.80865083233 -8186,428647.51688881015 -8187,428648.22512678796 -8188,428648.9333647657 -8189,428649.64160274353 -8190,428650.34984072135 -8191,428651.05807869916 -8192,428651.7663166769 -8193,428652.47455465473 -8194,428653.1827926326 -8195,428653.89103061036 -8196,428654.5992685882 -8197,428655.307506566 -8198,428656.01574454375 -8199,428656.7239825216 -8200,428657.4322204994 -8201,428658.14045847714 -8202,428658.848696455 -8203,428659.5569344328 -8204,428660.26517241047 -8205,428660.9734103884 -8206,428661.68164836615 -8207,428662.3898863439 -8208,428663.0981243217 -8209,428663.80636229954 -8210,428664.51460027735 -8211,428665.22283825517 -8212,428665.9310762329 -8213,428666.63931421074 -8214,428667.34755218856 -8215,428668.05579016637 -8216,428668.7640281442 -8217,428669.47226612194 -8218,428670.1805040998 -8219,428670.88874207763 -8220,428671.5969800553 -8221,428672.3052180332 -8222,428673.013456011 -8223,428673.7216939888 -8224,428674.4299319666 -8225,428675.1381699444 -8226,428675.8464079221 -8227,428676.55464590003 -8228,428677.2628838778 -8229,428677.97112185555 -8230,428678.67935983336 -8231,428679.38759781123 -8232,428680.095835789 -8233,428680.8040737668 -8234,428681.51231174456 -8235,428682.22054972243 -8236,428682.9287877002 -8237,428683.637025678 -8238,428684.3452636558 -8239,428685.05350163364 -8240,428685.7617396114 -8241,428686.46997758927 -8242,428687.17821556696 -8243,428687.88645354484 -8244,428688.59469152265 -8245,428689.3029295004 -8246,428690.0111674782 -8247,428690.7194054561 -8248,428691.4276434338 -8249,428692.13588141167 -8250,428692.8441193894 -8251,428693.55235736724 -8252,428694.26059534505 -8253,428694.96883332287 -8254,428695.6770713006 -8255,428696.3853092785 -8256,428697.09354725626 -8257,428697.80178523407 -8258,428698.5100232118 -8259,428699.2182611897 -8260,428699.92649916746 -8261,428700.6347371453 -8262,428701.342975123 -8263,428702.0512131009 -8264,428702.75945107866 -8265,428703.4676890565 -8266,428704.1759270343 -8267,428704.8841650121 -8268,428705.5924029899 -8269,428706.30064096773 -8270,428707.0088789454 -8271,428707.71711692336 -8272,428708.42535490106 -8273,428709.1335928788 -8274,428709.84183085663 -8275,428710.55006883445 -8276,428711.25830681226 -8277,428711.9665447901 -8278,428712.67478276783 -8279,428713.38302074565 -8280,428714.09125872346 -8281,428714.7994967013 -8282,428715.5077346791 -8283,428716.21597265685 -8284,428716.92421063466 -8285,428717.63244861254 -8286,428718.34068659024 -8287,428719.04892456805 -8288,428719.7571625459 -8289,428720.4654005237 -8290,428721.17363850144 -8291,428721.8818764793 -8292,428722.59011445707 -8293,428723.29835243494 -8294,428724.0065904127 -8295,428724.71482839045 -8296,428725.4230663683 -8297,428726.13130434614 -8298,428726.83954232384 -8299,428727.5477803017 -8300,428728.2560182795 -8301,428728.9642562573 -8302,428729.6724942351 -8303,428730.3807322129 -8304,428731.0889701907 -8305,428731.79720816854 -8306,428732.5054461463 -8307,428733.2136841242 -8308,428733.92192210193 -8309,428734.63016007975 -8310,428735.33839805756 -8311,428736.0466360353 -8312,428736.7548740131 -8313,428737.463111991 -8314,428738.1713499687 -8315,428738.8795879465 -8316,428739.58782592433 -8317,428740.29606390215 -8318,428741.00430187996 -8319,428741.7125398578 -8320,428742.42077783553 -8321,428743.1290158134 -8322,428743.83725379116 -8323,428744.545491769 -8324,428745.25372974674 -8325,428745.9619677246 -8326,428746.67020570236 -8327,428747.3784436802 -8328,428748.08668165794 -8329,428748.7949196358 -8330,428749.50315761357 -8331,428750.2113955914 -8332,428750.9196335692 -8333,428751.627871547 -8334,428752.3361095247 -8335,428753.04434750264 -8336,428753.7525854803 -8337,428754.46082345815 -8338,428755.16906143597 -8339,428755.8772994137 -8340,428756.58553739154 -8341,428757.2937753694 -8342,428758.0020133471 -8343,428758.710251325 -8344,428759.41848930274 -8345,428760.12672728056 -8346,428760.8349652584 -8347,428761.5432032362 -8348,428762.25144121394 -8349,428762.9596791918 -8350,428763.6679171696 -8351,428764.3761551474 -8352,428765.08439312514 -8353,428765.792631103 -8354,428766.50086908083 -8355,428767.2091070586 -8356,428767.91734503635 -8357,428768.6255830143 -8358,428769.333820992 -8359,428770.0420589698 -8360,428770.7502969476 -8361,428771.45853492536 -8362,428772.1667729032 -8363,428772.87501088105 -8364,428773.5832488588 -8365,428774.29148683656 -8366,428774.99972481444 -8367,428775.70796279225 -8368,428776.41620077 -8369,428777.1244387478 -8370,428777.83267672564 -8371,428778.54091470345 -8372,428779.2491526812 -8373,428779.957390659 -8374,428780.66562863684 -8375,428781.37386661465 -8376,428782.08210459247 -8377,428782.7903425702 -8378,428783.49858054804 -8379,428784.2068185259 -8380,428784.9150565036 -8381,428785.6232944814 -8382,428786.3315324593 -8383,428787.03977043706 -8384,428787.7480084148 -8385,428788.4562463927 -8386,428789.16448437044 -8387,428789.87272234826 -8388,428790.5809603261 -8389,428791.2891983038 -8390,428791.9974362817 -8391,428792.7056742595 -8392,428793.4139122373 -8393,428794.1221502151 -8394,428794.83038819296 -8395,428795.5386261707 -8396,428796.2468641485 -8397,428796.9551021263 -8398,428797.66334010416 -8399,428798.3715780819 -8400,428799.07981605973 -8401,428799.78805403743 -8402,428800.49629201536 -8403,428801.20452999306 -8404,428801.9127679709 -8405,428802.62100594863 -8406,428803.32924392645 -8407,428804.0374819043 -8408,428804.7457198821 -8409,428805.45395785983 -8410,428806.1621958377 -8411,428806.8704338155 -8412,428807.5786717933 -8413,428808.2869097711 -8414,428808.9951477489 -8415,428809.7033857267 -8416,428810.41162370454 -8417,428811.1198616823 -8418,428811.8280996601 -8419,428812.5363376379 -8420,428813.24457561574 -8421,428813.9528135935 -8422,428814.6610515713 -8423,428815.3692895491 -8424,428816.07752752694 -8425,428816.7857655047 -8426,428817.4940034825 -8427,428818.2022414603 -8428,428818.91047943814 -8429,428819.61871741596 -8430,428820.3269553937 -8431,428821.0351933715 -8432,428821.7434313494 -8433,428822.4516693271 -8434,428823.1599073049 -8435,428823.8681452828 -8436,428824.57638326054 -8437,428825.2846212383 -8438,428825.9928592162 -8439,428826.701097194 -8440,428827.40933517175 -8441,428828.11757314956 -8442,428828.8258111274 -8443,428829.5340491052 -8444,428830.242287083 -8445,428830.95052506076 -8446,428831.6587630386 -8447,428832.36700101633 -8448,428833.0752389942 -8449,428833.78347697196 -8450,428834.4917149498 -8451,428835.19995292753 -8452,428835.9081909054 -8453,428836.61642888316 -8454,428837.324666861 -8455,428838.0329048388 -8456,428838.7411428166 -8457,428839.4493807944 -8458,428840.15761877224 -8459,428840.86585674994 -8460,428841.57409472787 -8461,428842.2823327056 -8462,428842.9905706834 -8463,428843.6988086612 -8464,428844.40704663907 -8465,428845.1152846168 -8466,428845.82352259464 -8467,428846.53176057234 -8468,428847.23999855027 -8469,428847.94823652797 -8470,428848.6564745058 -8471,428849.36471248354 -8472,428850.0729504614 -8473,428850.78118843917 -8474,428851.489426417 -8475,428852.19766439474 -8476,428852.9059023726 -8477,428853.6141403504 -8478,428854.3223783282 -8479,428855.030616306 -8480,428855.7388542838 -8481,428856.4470922616 -8482,428857.15533023945 -8483,428857.8635682172 -8484,428858.571806195 -8485,428859.28004417283 -8486,428859.98828215065 -8487,428860.69652012835 -8488,428861.4047581063 -8489,428862.11299608403 -8490,428862.8212340618 -8491,428863.5294720396 -8492,428864.2377100174 -8493,428864.94594799523 -8494,428865.65418597305 -8495,428866.3624239508 -8496,428867.0706619286 -8497,428867.77889990644 -8498,428868.48713788425 -8499,428869.19537586207 -8500,428869.9036138398 -8501,428870.6118518177 -8502,428871.3200897955 -8503,428872.0283277732 -8504,428872.7365657511 -8505,428873.4448037289 -8506,428874.15304170665 -8507,428874.86127968447 -8508,428875.5695176623 -8509,428876.27775564004 -8510,428876.9859936179 -8511,428877.69423159567 -8512,428878.4024695734 -8513,428879.1107075513 -8514,428879.8189455291 -8515,428880.52718350687 -8516,428881.2354214847 -8517,428881.9436594625 -8518,428882.6518974403 -8519,428883.3601354181 -8520,428884.0683733959 -8521,428884.7766113737 -8522,428885.4848493515 -8523,428886.1930873293 -8524,428886.9013253071 -8525,428887.6095632849 -8526,428888.3178012627 -8527,428889.02603924053 -8528,428889.7342772183 -8529,428890.44251519616 -8530,428891.150753174 -8531,428891.8589911516 -8532,428892.56722912955 -8533,428893.27546710725 -8534,428893.98370508506 -8535,428894.6919430629 -8536,428895.4001810407 -8537,428896.10841901845 -8538,428896.8166569963 -8539,428897.5248949741 -8540,428898.2331329519 -8541,428898.94137092965 -8542,428899.6496089075 -8543,428900.35784688534 -8544,428901.0660848631 -8545,428901.77432284085 -8546,428902.4825608188 -8547,428903.1907987965 -8548,428903.8990367743 -8549,428904.6072747521 -8550,428905.3155127299 -8551,428906.02375070774 -8552,428906.73198868555 -8553,428907.44022666325 -8554,428908.1484646412 -8555,428908.85670261894 -8556,428909.5649405967 -8557,428910.2731785745 -8558,428910.9814165524 -8559,428911.6896545301 -8560,428912.39789250796 -8561,428913.1061304857 -8562,428913.8143684635 -8563,428914.52260644134 -8564,428915.23084441916 -8565,428915.9390823969 -8566,428916.6473203748 -8567,428917.35555835254 -8568,428918.06379633036 -8569,428918.7720343081 -8570,428919.480272286 -8571,428920.1885102638 -8572,428920.89674824156 -8573,428921.6049862193 -8574,428922.31322419725 -8575,428923.02146217495 -8576,428923.72970015276 -8577,428924.4379381306 -8578,428925.14617610833 -8579,428925.8544140862 -8580,428926.562652064 -8581,428927.2708900417 -8582,428927.9791280196 -8583,428928.6873659974 -8584,428929.39560397516 -8585,428930.103841953 -8586,428930.8120799308 -8587,428931.5203179086 -8588,428932.2285558864 -8589,428932.9367938642 -8590,428933.64503184205 -8591,428934.3532698198 -8592,428935.0615077976 -8593,428935.76974577544 -8594,428936.4779837532 -8595,428937.18622173095 -8596,428937.8944597089 -8597,428938.6026976865 -8598,428939.31093566434 -8599,428940.0191736422 -8600,428940.72741161997 -8601,428941.4356495978 -8602,428942.1438875756 -8603,428942.85212555336 -8604,428943.5603635312 -8605,428944.268601509 -8606,428944.97683948674 -8607,428945.6850774646 -8608,428946.39331544243 -8609,428947.1015534202 -8610,428947.809791398 -8611,428948.5180293758 -8612,428949.22626735363 -8613,428949.9345053314 -8614,428950.6427433092 -8615,428951.3509812871 -8616,428952.05921926483 -8617,428952.7674572426 -8618,428953.47569522046 -8619,428954.18393319816 -8620,428954.89217117603 -8621,428955.60040915385 -8622,428956.3086471316 -8623,428957.0168851094 -8624,428957.7251230873 -8625,428958.433361065 -8626,428959.14159904286 -8627,428959.8498370206 -8628,428960.55807499844 -8629,428961.26631297625 -8630,428961.97455095407 -8631,428962.6827889318 -8632,428963.3910269097 -8633,428964.09926488745 -8634,428964.80750286527 -8635,428965.515740843 -8636,428966.2239788209 -8637,428966.9322167987 -8638,428967.64045477647 -8639,428968.3486927542 -8640,428969.05693073216 -8641,428969.76516870986 -8642,428970.47340668767 -8643,428971.1816446655 -8644,428971.8898826433 -8645,428972.59812062106 -8646,428973.30635859893 -8647,428974.0145965766 -8648,428974.7228345545 -8649,428975.4310725323 -8650,428976.1393105101 -8651,428976.8475484879 -8652,428977.55578646576 -8653,428978.26402444346 -8654,428978.97226242133 -8655,428979.6805003991 -8656,428980.3887383769 -8657,428981.0969763547 -8658,428981.80521433253 -8659,428982.51345231023 -8660,428983.22169028816 -8661,428983.92992826586 -8662,428984.6381662438 -8663,428985.34640422155 -8664,428986.05464219925 -8665,428986.7628801771 -8666,428987.4711181549 -8667,428988.1793561327 -8668,428988.8875941105 -8669,428989.59583208826 -8670,428990.3040700661 -8671,428991.01230804395 -8672,428991.7205460217 -8673,428992.4287839995 -8674,428993.13702197734 -8675,428993.84525995515 -8676,428994.5534979329 -8677,428995.2617359108 -8678,428995.96997388854 -8679,428996.67821186635 -8680,428997.3864498441 -8681,428998.094687822 -8682,428998.80292579974 -8683,428999.51116377756 -8684,429000.2194017553 -8685,429000.9276397332 -8686,429001.63587771094 -8687,429002.34411568876 -8688,429003.0523536665 -8689,429003.7605916444 -8690,429004.4688296222 -8691,429005.17706759996 -8692,429005.8853055777 -8693,429006.59354355565 -8694,429007.30178153334 -8695,429008.01001951116 -8696,429008.718257489 -8697,429009.4264954668 -8698,429010.13473344455 -8699,429010.8429714224 -8700,429011.5512094002 -8701,429012.259447378 -8702,429012.9676853558 -8703,429013.6759233336 -8704,429014.3841613114 -8705,429015.09239928925 -8706,429015.800637267 -8707,429016.5088752448 -8708,429017.2171132226 -8709,429017.92535120045 -8710,429018.6335891782 -8711,429019.341827156 -8712,429020.05006513384 -8713,429020.7583031116 -8714,429021.4665410894 -8715,429022.1747790673 -8716,429022.883017045 -8717,429023.5912550228 -8718,429024.29949300067 -8719,429025.0077309784 -8720,429025.7159689562 -8721,429026.42420693405 -8722,429027.13244491187 -8723,429027.8406828896 -8724,429028.54892086744 -8725,429029.25715884526 -8726,429029.96539682307 -8727,429030.6736348009 -8728,429031.3818727786 -8729,429032.09011075646 -8730,429032.7983487342 -8731,429033.506586712 -8732,429034.2148246898 -8733,429034.9230626676 -8734,429035.6313006454 -8735,429036.33953862323 -8736,429037.047776601 -8737,429037.7560145788 -8738,429038.4642525566 -8739,429039.17249053443 -8740,429039.88072851225 -8741,429040.58896649 -8742,429041.2972044678 -8743,429042.0054424457 -8744,429042.71368042345 -8745,429043.4219184012 -8746,429044.1301563791 -8747,429044.8383943569 -8748,429045.54663233465 -8749,429046.25487031246 -8750,429046.9631082903 -8751,429047.6713462681 -8752,429048.37958424585 -8753,429049.08782222366 -8754,429049.7960602014 -8755,429050.5042981793 -8756,429051.21253615705 -8757,429051.92077413487 -8758,429052.6290121126 -8759,429053.3372500905 diff --git a/tests/h2integrate/test_hydrogen/input_files/GS_offgrid_power_signal.csv b/tests/h2integrate/test_hydrogen/input_files/GS_offgrid_power_signal.csv deleted file mode 100644 index 72ee09093..000000000 --- a/tests/h2integrate/test_hydrogen/input_files/GS_offgrid_power_signal.csv +++ /dev/null @@ -1,8761 +0,0 @@ -,combined_hybrid_power_production_hopp -0,133100.3596215997 -1,108426.7273066506 -2,105741.32205761713 -3,113618.33385104235 -4,65040.48591575581 -5,66627.45186037038 -6,65283.30206959561 -7,62845.29700860518 -8,36165.488979019 -9,22763.429329728307 -10,0.0 -11,0.0 -12,12114.48522479367 -13,4686.8061270615 -14,0.0 -15,0.0 -16,0.0 -17,0.0 -18,19810.09567971384 -19,86138.08952017964 -20,87846.18370856222 -21,81837.50598351257 -22,15230.379515538703 -23,0.0 -24,0.0 -25,0.0 -26,0.0 -27,0.0 -28,0.0 -29,0.0 -30,0.0 -31,0.0 -32,0.0 -33,0.0 -34,0.0 -35,0.0 -36,0.0 -37,0.0 -38,0.0 -39,0.0 -40,4782.187574530431 -41,65321.30158038905 -42,310999.60991537775 -43,796407.8636419304 -44,849883.9862889352 -45,501637.55038205814 -46,682127.1928575771 -47,519014.4558688273 -48,617889.4888131695 -49,525709.7008271804 -50,421045.9202017178 -51,320206.8215153654 -52,324791.4529679774 -53,271823.9945081263 -54,238973.2228002736 -55,265443.4090511285 -56,221502.37515493628 -57,71644.74661327887 -58,0.0 -59,0.0 -60,0.0 -61,0.0 -62,4153.497915861247 -63,0.0 -64,0.0 -65,0.0 -66,0.0 -67,33472.153744152536 -68,43476.46737803165 -69,66338.41503235506 -70,75629.02805829898 -71,84659.14204747623 -72,104917.4098092558 -73,140129.5863207439 -74,121499.65198906267 -75,91916.96165021574 -76,93561.38117120744 -77,85588.89750065393 -78,113301.21509663649 -79,162917.93998800663 -80,155620.30428354003 -81,102554.03556445069 -82,96920.83772044758 -83,99187.03737295739 -84,105634.26452335509 -85,90827.67875069009 -86,97761.57474945503 -87,118482.68442332653 -88,154513.6757367253 -89,232582.68997000513 -90,552971.0728917159 -91,452003.0019959934 -92,576249.8197690449 -93,550472.2531516961 -94,675790.8658859427 -95,716390.9288670977 -96,782798.5600845058 -97,849883.9862889352 -98,849883.9862889352 -99,849883.9862889352 -100,849883.9862889352 -101,849883.9862889352 -102,849883.9862889352 -103,849883.9862889352 -104,849883.9862889352 -105,814991.2508179995 -106,277478.65684290626 -107,121035.98671742086 -108,48715.307230088656 -109,83597.52385917577 -110,174540.86892379227 -111,185645.32923004855 -112,126591.07371300904 -113,124489.68808208412 -114,132663.9750340626 -115,305297.78834343 -116,454570.74822855525 -117,849883.9862889352 -118,849883.9862889352 -119,749797.1482048224 -120,574833.4950654155 -121,618380.6053028348 -122,672316.3531005477 -123,418424.92831111874 -124,378474.24267153215 -125,236239.0477549529 -126,104249.23995647188 -127,52148.19176090579 -128,0.0 -129,0.0 -130,0.0 -131,0.0 -132,0.0 -133,0.0 -134,0.0 -135,0.0 -136,49396.86073857315 -137,58190.03644717161 -138,98634.91835821973 -139,250431.917196312 -140,263999.9349068399 -141,250472.01137009208 -142,366431.95627964335 -143,499194.7774523803 -144,556844.5766861559 -145,482740.0146462056 -146,386200.1933869608 -147,339759.0040492524 -148,543515.5069499911 -149,311316.106930578 -150,362617.87025791657 -151,341736.4645618532 -152,315393.28220248426 -153,225935.77807449552 -154,77011.52386273623 -155,68202.91632625581 -156,110294.95621599196 -157,131105.00134079167 -158,139370.7985346937 -159,90108.61969848025 -160,75645.01664338581 -161,79616.83413716195 -162,266779.3419275541 -163,248470.10469423953 -164,545752.987294723 -165,565019.8392989181 -166,718858.7844475266 -167,461848.6406868684 -168,612254.7532875974 -169,637506.9956507302 -170,649920.0371202468 -171,571439.9923378808 -172,383037.04727248376 -173,443942.53971557005 -174,393530.2893537154 -175,142678.21438663895 -176,159205.43477253956 -177,88755.72841136077 -178,22240.974712207244 -179,4095.7710780579896 -180,0.0 -181,7860.618466500381 -182,56857.48971718732 -183,0.0 -184,0.0 -185,0.0 -186,10353.428953656776 -187,0.0 -188,24356.291667746853 -189,41798.95175797831 -190,73966.04791753925 -191,346175.83472164936 -192,849883.9862889352 -193,849883.9862889352 -194,849883.9862889352 -195,849883.9862889352 -196,849883.9862889352 -197,849883.9862889352 -198,849883.9862889352 -199,849883.9862889352 -200,849883.9862889352 -201,849883.9862889352 -202,412436.85482078174 -203,551033.2288342429 -204,836363.4078620577 -205,849883.9862889352 -206,849883.9862889352 -207,849883.9862889352 -208,849883.9862889352 -209,791595.6558650116 -210,849883.9862889352 -211,849883.9862889352 -212,849883.9862889352 -213,849883.9862889352 -214,849883.9862889352 -215,473040.0222661754 -216,123533.69896970571 -217,264023.0039403998 -218,435810.29914601473 -219,331860.7689801948 -220,252425.10385152086 -221,302938.3967239107 -222,313683.533496634 -223,238975.70135335237 -224,90489.21346363203 -225,38856.38593233882 -226,12605.048692274739 -227,63374.88085319311 -228,24488.938482789217 -229,26801.67174691996 -230,174102.79451980523 -231,127325.78389269981 -232,158608.46261916502 -233,182439.72365986154 -234,829484.4367592806 -235,849883.9862889352 -236,849883.9862889352 -237,849883.9862889352 -238,849883.9862889352 -239,849883.9862889352 -240,849883.9862889352 -241,849883.9862889352 -242,849883.9862889352 -243,849883.9862889352 -244,849883.9862889352 -245,849883.9862889352 -246,849883.9862889352 -247,849883.9862889352 -248,849883.9862889352 -249,849883.9862889352 -250,849883.9862889352 -251,849883.9862889352 -252,849883.9862889352 -253,849883.9862889352 -254,849883.9862889352 -255,849883.9862889352 -256,849883.9862889352 -257,849883.9862889352 -258,849883.9862889352 -259,404778.67924675904 -260,344761.8415443831 -261,452718.8373283557 -262,37486.855286388374 -263,139625.58013760985 -264,849883.9862889352 -265,849883.9862889352 -266,849883.9862889352 -267,841666.5456914374 -268,453754.01884292456 -269,124192.99381563379 -270,49317.1192210962 -271,0.0 -272,38248.76339526396 -273,53318.562536486264 -274,33526.98751344437 -275,0.0 -276,0.0 -277,0.0 -278,0.0 -279,0.0 -280,0.0 -281,0.0 -282,0.0 -283,319815.69328514655 -284,526213.5456450297 -285,588351.295732447 -286,258517.9930404947 -287,269780.2915882441 -288,280012.666522748 -289,160953.1449510895 -290,94820.29381050394 -291,80761.16904927864 -292,58883.28586963538 -293,44413.816365877225 -294,115042.97874621068 -295,51146.27499742434 -296,30145.53877435933 -297,0.0 -298,0.0 -299,0.0 -300,0.0 -301,0.0 -302,0.0 -303,0.0 -304,0.0 -305,35075.558146160925 -306,109655.75469911378 -307,304964.0394487827 -308,320690.3456879627 -309,354565.12020852714 -310,227282.7743359737 -311,283679.1490856311 -312,261506.78839022366 -313,322956.5964053444 -314,340331.7847252972 -315,370386.1022739479 -316,322532.98383673164 -317,300071.16289793566 -318,182011.09657903673 -319,121844.12611850901 -320,174518.7703490018 -321,192605.0880222649 -322,169579.7890988411 -323,117648.39425516724 -324,121466.32258167375 -325,164076.2574653904 -326,133952.7826693256 -327,144108.06080246062 -328,155425.85952831848 -329,181646.7784483926 -330,204148.58516357603 -331,208195.0459135843 -332,360361.4868732271 -333,180612.58570350902 -334,98799.4703943985 -335,73328.10764563546 -336,8754.260285258895 -337,72905.71142609553 -338,3511.503572751019 -339,0.0 -340,0.0 -341,0.0 -342,0.0 -343,0.0 -344,0.0 -345,20524.714904029996 -346,0.0 -347,16022.196441730122 -348,46577.64945729582 -349,73793.46515173872 -350,94329.25601967373 -351,84650.59709028067 -352,104239.35269059033 -353,77245.03867771378 -354,123417.71889104747 -355,109924.59447056027 -356,167043.68572582965 -357,200332.38218393468 -358,198508.31695586463 -359,182728.78491635466 -360,234025.05705379142 -361,273003.80683124065 -362,531955.0233942244 -363,687220.7998614613 -364,519565.7153641898 -365,794826.1777823751 -366,849883.9862889352 -367,849883.9862889352 -368,849883.9862889352 -369,341975.9243290886 -370,114925.05816589438 -371,272189.313365463 -372,307702.67983679136 -373,405537.07651436375 -374,517244.5293039165 -375,566620.6145747448 -376,346947.9664085893 -377,324656.68523996725 -378,363170.1674364294 -379,485469.2689740173 -380,427260.30563004286 -381,479710.82649672154 -382,395743.23039097484 -383,334983.461774096 -384,294216.71526456863 -385,238809.01916037628 -386,237689.12019045404 -387,310813.83175418316 -388,525109.1607433131 -389,469099.3580973525 -390,393617.8629684848 -391,302703.07748453086 -392,263479.20024783665 -393,102588.4116047003 -394,0.0 -395,0.0 -396,0.0 -397,0.0 -398,0.0 -399,0.0 -400,0.0 -401,0.0 -402,28277.823107164695 -403,42113.00239125743 -404,72678.23960753123 -405,59740.07523326646 -406,104140.04161621866 -407,76627.01673819315 -408,69036.76116324464 -409,151507.04078813392 -410,313760.2051422757 -411,345410.98646517907 -412,424620.11105963285 -413,654404.6663186064 -414,697079.3239820875 -415,628691.2717890469 -416,469242.43370763905 -417,476681.7406489675 -418,241752.4349443339 -419,140386.10514155036 -420,376119.77325445483 -421,612915.2184822588 -422,549748.4265859983 -423,533383.4188232603 -424,525591.4571018562 -425,525591.4571018562 -426,849883.9862889352 -427,849883.9862889352 -428,849883.9862889352 -429,849883.9862889352 -430,849883.9862889352 -431,849883.9862889352 -432,849883.9862889352 -433,849883.9862889352 -434,849883.9862889352 -435,849883.9862889352 -436,652475.484155355 -437,846140.4140760879 -438,849883.9862889352 -439,849883.9862889352 -440,747259.3004003128 -441,260770.20717897726 -442,137130.71990824744 -443,15281.918834019463 -444,26521.55623016684 -445,302311.2970689861 -446,165759.6135443176 -447,129051.2986632435 -448,119040.07361933599 -449,150039.83120041867 -450,288933.9724049116 -451,757532.0910116321 -452,770720.7962546758 -453,480824.4117567719 -454,439586.2220300602 -455,475247.5161130511 -456,208135.12403027716 -457,40293.889549664316 -458,0.0 -459,0.0 -460,0.0 -461,0.0 -462,0.0 -463,60834.76125107243 -464,96310.16945290254 -465,112935.77870662048 -466,108960.03475003419 -467,41509.9753188911 -468,55598.800023388285 -469,87721.4691044884 -470,77739.53518573641 -471,37589.80503502941 -472,25142.22934065438 -473,90147.88578520862 -474,74098.78265609335 -475,148285.62500216183 -476,849883.9862889352 -477,849883.9862889352 -478,849883.9862889352 -479,849883.9862889352 -480,849883.9862889352 -481,849883.9862889352 -482,849883.9862889352 -483,849883.9862889352 -484,846168.8183221669 -485,580289.0760125127 -486,317769.4968665492 -487,190479.65609752113 -488,175399.87150965907 -489,21745.238026322648 -490,0.0 -491,0.0 -492,0.0 -493,0.0 -494,0.0 -495,0.0 -496,0.0 -497,4303.384170336713 -498,18861.976543476227 -499,139183.55496039608 -500,161938.77938252082 -501,273851.8958883656 -502,259003.2648414225 -503,343183.3857220803 -504,231416.24673922855 -505,447714.057261799 -506,92018.6035438764 -507,89127.62289070062 -508,162782.7141046563 -509,287654.0271711138 -510,620310.3941454319 -511,476954.8054146018 -512,486529.35089670576 -513,270502.57458337053 -514,72822.80581635064 -515,70417.75333712534 -516,103815.33655088139 -517,110754.70645154557 -518,115730.88779754772 -519,94996.59659578493 -520,90448.24356916524 -521,67344.37546587664 -522,109322.87404241509 -523,142187.4531826588 -524,80400.76288539424 -525,224266.46823609193 -526,211898.52251487243 -527,273708.0490009781 -528,317573.37314414285 -529,702916.9723216555 -530,316675.89851917146 -531,119422.65012340217 -532,173666.59885829137 -533,163000.78641801566 -534,85015.10048084176 -535,0.0 -536,54874.0942469351 -537,87659.36928866792 -538,109684.3210188453 -539,0.0 -540,52117.91694803908 -541,102169.92675113158 -542,193372.9064765507 -543,103452.32304539141 -544,165142.7140254249 -545,201176.10009430643 -546,358527.9101935504 -547,429213.4619908002 -548,849883.9862889352 -549,849883.9862889352 -550,849883.9862889352 -551,849883.9862889352 -552,849883.9862889352 -553,849883.9862889352 -554,849883.9862889352 -555,849883.9862889352 -556,849883.9862889352 -557,849883.9862889352 -558,809306.0745020796 -559,732709.8284229623 -560,485229.1095297525 -561,438607.0472977904 -562,124227.690029638 -563,102565.83848049812 -564,179813.7934400762 -565,362923.9451797049 -566,358947.5968812445 -567,615003.6717820963 -568,717378.5382788361 -569,849883.9862889352 -570,849883.9862889352 -571,849883.9862889352 -572,849883.9862889352 -573,849883.9862889352 -574,849883.9862889352 -575,849883.9862889352 -576,849883.9862889352 -577,849883.9862889352 -578,849883.9862889352 -579,849883.9862889352 -580,849883.9862889352 -581,749931.3676755104 -582,650276.8498838673 -583,463856.7224268917 -584,353639.0668538039 -585,214357.3351716822 -586,78374.34725692806 -587,84312.60063918095 -588,97209.17567818853 -589,69858.69157319416 -590,43335.34076455644 -591,23143.45434539828 -592,39862.71367969849 -593,3847.5655648546763 -594,0.0 -595,63181.446324716744 -596,187802.20065505963 -597,150018.7860413875 -598,161945.58207804774 -599,208400.69109728636 -600,223070.27665334372 -601,222341.82547244546 -602,269803.8116080452 -603,347917.9979965925 -604,321570.51910144655 -605,352840.7109437013 -606,138155.9620025041 -607,297972.3268826449 -608,327850.9501054235 -609,261743.43985801152 -610,85979.92738634492 -611,32369.834330525984 -612,67574.36286329203 -613,111715.57096975634 -614,260348.51344546012 -615,755091.3508775135 -616,163754.4616916562 -617,42025.037765516325 -618,192449.69317319206 -619,236145.4109749681 -620,247124.92662676948 -621,470417.29149397725 -622,361924.68742206757 -623,833772.4106989632 -624,849883.9862889352 -625,395569.3575055297 -626,849883.9862889352 -627,224976.96726319607 -628,129158.5005935445 -629,713620.0206292046 -630,448906.63948588906 -631,849883.9862889352 -632,464628.29995850625 -633,512669.7910309208 -634,849883.9862889352 -635,589315.3754771752 -636,599880.8664518802 -637,597894.9735028384 -638,446888.7873236828 -639,620928.5213497139 -640,631403.6285421833 -641,455042.2262560749 -642,303908.41939934983 -643,716452.5461768039 -644,295921.6518422648 -645,576318.6494565746 -646,679002.3381242891 -647,849883.9862889352 -648,849883.9862889352 -649,849883.9862889352 -650,490912.95746472385 -651,391681.59883281647 -652,721694.5389645675 -653,195333.9046102774 -654,215093.1565042861 -655,258981.21618299576 -656,507690.2985783406 -657,619718.4186381334 -658,849883.9862889352 -659,849883.9862889352 -660,849883.9862889352 -661,849883.9862889352 -662,849883.9862889352 -663,849883.9862889352 -664,849883.9862889352 -665,849883.9862889352 -666,849883.9862889352 -667,825160.5090534139 -668,849883.9862889352 -669,849883.9862889352 -670,849883.9862889352 -671,849883.9862889352 -672,846383.3382059297 -673,849883.9862889352 -674,849883.9862889352 -675,849883.9862889352 -676,849883.9862889352 -677,802000.6181901352 -678,840381.2701300031 -679,849883.9862889352 -680,849883.9862889352 -681,849883.9862889352 -682,758682.5930460035 -683,805571.0368500317 -684,849883.9862889352 -685,849883.9862889352 -686,849883.9862889352 -687,849883.9862889352 -688,806739.9123829533 -689,849883.9862889352 -690,849883.9862889352 -691,849883.9862889352 -692,849883.9862889352 -693,821126.5027849751 -694,849883.9862889352 -695,849883.9862889352 -696,849883.9862889352 -697,640923.5231041989 -698,517955.35406306956 -699,849883.9862889352 -700,849883.9862889352 -701,849883.9862889352 -702,746676.8701198191 -703,518833.6267426916 -704,470228.9197392321 -705,165793.7707476263 -706,289557.06923841685 -707,277220.53448765597 -708,440212.09517747705 -709,764285.4660852404 -710,804092.9137696491 -711,849883.9862889352 -712,849883.9862889352 -713,396322.4015705917 -714,441240.9768532133 -715,533908.2136046689 -716,849883.9862889352 -717,849883.9862889352 -718,849883.9862889352 -719,849883.9862889352 -720,849883.9862889352 -721,849883.9862889352 -722,849883.9862889352 -723,775061.987332134 -724,849883.9862889352 -725,849883.9862889352 -726,849883.9862889352 -727,849883.9862889352 -728,841999.119620657 -729,494726.5867741692 -730,226553.94385516347 -731,174732.16049506722 -732,134873.36724246564 -733,97434.1033686602 -734,49198.03656667676 -735,21876.788522887648 -736,0.0 -737,93939.68231201697 -738,54325.74370525881 -739,38933.91707465355 -740,25867.583568204063 -741,24277.538892015054 -742,0.0 -743,80076.22274677802 -744,849883.9862889352 -745,849883.9862889352 -746,849883.9862889352 -747,806119.5863680625 -748,420913.8663438285 -749,222761.83525114076 -750,98813.37970541496 -751,415843.59553689335 -752,174119.3875953989 -753,102071.3899641997 -754,52632.543416504246 -755,52405.99426512659 -756,160696.1026527685 -757,230562.2566915987 -758,629572.9687541858 -759,804158.495802276 -760,615936.2384693135 -761,373082.8528327398 -762,510673.320457127 -763,523669.8753969388 -764,849883.9862889352 -765,849883.9862889352 -766,267635.46991862904 -767,830810.4997748667 -768,508215.1128397985 -769,125325.89115066602 -770,691514.2265477753 -771,846762.6791969864 -772,849883.9862889352 -773,849883.9862889352 -774,551717.2518677814 -775,664699.2056469942 -776,648817.7630788104 -777,190222.27174671876 -778,5651.813229391022 -779,30919.131040864722 -780,44817.75826166249 -781,22353.605659132198 -782,22551.82389778275 -783,16444.735141795172 -784,0.0 -785,0.0 -786,0.0 -787,35079.668364467536 -788,8333.426367520771 -789,0.0 -790,14083.521612149187 -791,71876.93934021203 -792,302636.74924801505 -793,574838.4790855421 -794,690179.9180691123 -795,701632.3527434118 -796,849883.9862889352 -797,652908.0175963057 -798,559131.0619217209 -799,607147.7077766885 -800,397956.5167792846 -801,263161.72995652887 -802,95353.02134488299 -803,151338.48510455058 -804,494798.1182799253 -805,596896.0815237082 -806,740610.8274397571 -807,579620.9446619521 -808,403291.61358408915 -809,573631.8451732614 -810,500353.64097367896 -811,849883.9862889352 -812,849883.9862889352 -813,849883.9862889352 -814,793114.7640484029 -815,849883.9862889352 -816,849883.9862889352 -817,849883.9862889352 -818,849883.9862889352 -819,849883.9862889352 -820,849883.9862889352 -821,822261.9942263223 -822,849883.9862889352 -823,849883.9862889352 -824,787063.8523412036 -825,738927.472517929 -826,377660.91288282076 -827,417208.43725491525 -828,323635.69167382526 -829,169233.2926871485 -830,95579.13623120962 -831,70459.82972070143 -832,34798.06826419322 -833,0.0 -834,0.0 -835,0.0 -836,0.0 -837,0.0 -838,0.0 -839,0.0 -840,31171.01846963523 -841,65920.17202637062 -842,93645.94339312936 -843,171136.33302593746 -844,120827.68963426292 -845,403080.8856189026 -846,849883.9862889352 -847,849883.9862889352 -848,849883.9862889352 -849,403560.9141735378 -850,135659.52102335365 -851,56624.26935176803 -852,4224.455476289911 -853,0.0 -854,0.0 -855,0.0 -856,0.0 -857,0.0 -858,0.0 -859,0.0 -860,0.0 -861,0.0 -862,0.0 -863,0.0 -864,0.0 -865,0.0 -866,0.0 -867,35235.797135249246 -868,42686.799860137864 -869,43443.70157192641 -870,60098.599611987025 -871,49826.14817455532 -872,29898.301461706757 -873,52135.43087192616 -874,49663.68815307249 -875,9523.886268481396 -876,0.0 -877,55542.3618258571 -878,67849.60171034183 -879,75288.39782739662 -880,23810.359331777916 -881,366176.70858367934 -882,216441.98701500942 -883,843133.8283369782 -884,849883.9862889352 -885,849883.9862889352 -886,849883.9862889352 -887,849883.9862889352 -888,849883.9862889352 -889,849883.9862889352 -890,849883.9862889352 -891,849883.9862889352 -892,849883.9862889352 -893,849883.9862889352 -894,849883.9862889352 -895,849883.9862889352 -896,849883.9862889352 -897,849883.9862889352 -898,849883.9862889352 -899,849883.9862889352 -900,849883.9862889352 -901,848513.1609318043 -902,490286.08902373735 -903,500394.6055142528 -904,360190.457812179 -905,281671.9497494095 -906,273063.3687310725 -907,503733.57577808714 -908,558687.0699380619 -909,554391.8235939844 -910,608600.9327712891 -911,444750.01330332836 -912,486545.85430826084 -913,553095.2190271766 -914,814196.8074037638 -915,849883.9862889352 -916,849883.9862889352 -917,849883.9862889352 -918,849883.9862889352 -919,849883.9862889352 -920,668197.6002450043 -921,143280.22662828377 -922,90615.07015400437 -923,183955.58174532032 -924,262173.14196128777 -925,294184.75804758514 -926,451441.70613010705 -927,655163.124453965 -928,682893.5165127183 -929,830697.4223172562 -930,615298.8297988665 -931,849883.9862889352 -932,669803.0620241037 -933,786408.0066478744 -934,762501.8525861824 -935,576953.9351413475 -936,487357.955345688 -937,849883.9862889352 -938,849883.9862889352 -939,849883.9862889352 -940,849883.9862889352 -941,849883.9862889352 -942,776047.7878744348 -943,849883.9862889352 -944,586092.31065485 -945,301595.6692446603 -946,344908.78781046305 -947,363221.7111217081 -948,730064.9100531451 -949,849883.9862889352 -950,849883.9862889352 -951,849883.9862889352 -952,849883.9862889352 -953,849883.9862889352 -954,849883.9862889352 -955,849883.9862889352 -956,849883.9862889352 -957,849883.9862889352 -958,849883.9862889352 -959,849883.9862889352 -960,849883.9862889352 -961,849883.9862889352 -962,849883.9862889352 -963,849883.9862889352 -964,849883.9862889352 -965,849883.9862889352 -966,849883.9862889352 -967,849883.9862889352 -968,849883.9862889352 -969,849883.9862889352 -970,849883.9862889352 -971,849883.9862889352 -972,849883.9862889352 -973,849883.9862889352 -974,774373.9770552266 -975,789491.6235678946 -976,548659.7289880171 -977,476215.18635023636 -978,315979.8581803796 -979,105615.55248015704 -980,83577.18440133674 -981,0.0 -982,0.0 -983,0.0 -984,0.0 -985,0.0 -986,14793.49300784829 -987,162079.2105201953 -988,825004.3252267394 -989,835387.6401941555 -990,809862.9579286654 -991,823093.5936344416 -992,849883.9862889352 -993,734464.0336778522 -994,539359.7764471695 -995,469239.7955611792 -996,356052.97094600345 -997,329091.3468252572 -998,303943.45025692513 -999,357843.39622220123 -1000,401630.25610879343 -1001,535651.9953013491 -1002,740344.4833313272 -1003,849883.9862889352 -1004,849883.9862889352 -1005,619856.2253692454 -1006,849883.9862889352 -1007,849883.9862889352 -1008,801646.5482356827 -1009,387554.4685733708 -1010,711148.8138212084 -1011,413623.7042275803 -1012,134167.66450186822 -1013,154475.37718536326 -1014,62332.776651359156 -1015,95903.76505351938 -1016,70795.30326539892 -1017,107472.56464280465 -1018,171421.37296202517 -1019,297320.84960023715 -1020,408285.0908610639 -1021,590416.7573508598 -1022,396671.1717173539 -1023,390306.7101622845 -1024,287322.4550195015 -1025,183525.91191505504 -1026,133773.02559257325 -1027,79460.42527947742 -1028,2349.98540922387 -1029,4517.674650104973 -1030,0.0 -1031,5078.595975681077 -1032,28207.809358989172 -1033,38029.577727369506 -1034,63541.91960332983 -1035,83901.51272077757 -1036,102939.79403569651 -1037,67329.64233185991 -1038,58042.794948135124 -1039,52511.806007413354 -1040,99720.19961508947 -1041,69296.69489611396 -1042,0.0 -1043,0.0 -1044,0.0 -1045,27114.96529979173 -1046,39058.879224724646 -1047,81623.78437617263 -1048,50117.76959583991 -1049,49117.16077665366 -1050,52957.53200010894 -1051,0.0 -1052,0.0 -1053,85123.05030656974 -1054,186433.9945884694 -1055,92976.84170519821 -1056,49108.08497979788 -1057,48570.4238906244 -1058,46573.08418404968 -1059,56656.74059400679 -1060,0.0 -1061,0.0 -1062,0.0 -1063,0.0 -1064,0.0 -1065,0.0 -1066,29054.488830202008 -1067,36450.81386991676 -1068,31699.923225774848 -1069,23299.834944032482 -1070,0.0 -1071,24677.449528578472 -1072,39214.05786079872 -1073,209396.58854286958 -1074,605524.4552108677 -1075,849883.9862889352 -1076,849883.9862889352 -1077,849883.9862889352 -1078,849883.9862889352 -1079,849883.9862889352 -1080,849883.9862889352 -1081,849883.9862889352 -1082,849883.9862889352 -1083,849883.9862889352 -1084,817203.7700302507 -1085,593280.2266348655 -1086,659415.8030844732 -1087,579127.2217369473 -1088,302785.46105282183 -1089,66851.28299970934 -1090,35567.69447292122 -1091,0.0 -1092,0.0 -1093,0.0 -1094,0.0 -1095,0.0 -1096,0.0 -1097,27822.901002694667 -1098,0.0 -1099,30838.756675142624 -1100,89625.73474873089 -1101,117877.41944470281 -1102,28168.48204294446 -1103,123199.27118420677 -1104,133531.1991645702 -1105,80235.90527464847 -1106,120818.12940678863 -1107,39848.68833080565 -1108,0.0 -1109,0.0 -1110,0.0 -1111,0.0 -1112,0.0 -1113,24535.608995103088 -1114,13796.600957232615 -1115,81262.45056920002 -1116,127743.63673598456 -1117,175619.0142748959 -1118,201041.9889339113 -1119,317338.63831638277 -1120,196652.1709264572 -1121,174980.49913473995 -1122,48071.49484003871 -1123,214205.10226674072 -1124,849883.9862889352 -1125,400745.1768378771 -1126,663511.209600319 -1127,666410.779846352 -1128,849883.9862889352 -1129,849883.9862889352 -1130,849883.9862889352 -1131,849883.9862889352 -1132,849883.9862889352 -1133,849883.9862889352 -1134,849883.9862889352 -1135,849883.9862889352 -1136,849883.9862889352 -1137,477186.3347131882 -1138,486082.6028362442 -1139,460918.06920019357 -1140,849883.9862889352 -1141,849883.9862889352 -1142,578845.541307328 -1143,679762.3356723146 -1144,553980.2569099413 -1145,683389.7583654841 -1146,849883.9862889352 -1147,515532.15717888996 -1148,849883.9862889352 -1149,849883.9862889352 -1150,849883.9862889352 -1151,849883.9862889352 -1152,849883.9862889352 -1153,849883.9862889352 -1154,849883.9862889352 -1155,849883.9862889352 -1156,849883.9862889352 -1157,849883.9862889352 -1158,849883.9862889352 -1159,849883.9862889352 -1160,849883.9862889352 -1161,849883.9862889352 -1162,375449.39741802984 -1163,483963.21039843065 -1164,397009.79533791414 -1165,222782.15372991373 -1166,264309.32982852624 -1167,187257.58792099313 -1168,88618.65500748839 -1169,96279.88688441519 -1170,150764.99803511976 -1171,90601.02365362333 -1172,175474.76997072075 -1173,461141.07714265765 -1174,455272.3620791552 -1175,537883.3516498824 -1176,771793.2019761667 -1177,553842.4230471158 -1178,775937.3037004956 -1179,849883.9862889352 -1180,849883.9862889352 -1181,849883.9862889352 -1182,833523.7120530203 -1183,717681.3378621562 -1184,720732.1520853975 -1185,204226.34636384866 -1186,199502.2619127736 -1187,298903.4477096393 -1188,471544.5058143087 -1189,656578.0339395968 -1190,849883.9862889352 -1191,849883.9862889352 -1192,849883.9862889352 -1193,849883.9862889352 -1194,849883.9862889352 -1195,849883.9862889352 -1196,801449.675291317 -1197,849883.9862889352 -1198,849883.9862889352 -1199,849883.9862889352 -1200,849883.9862889352 -1201,849883.9862889352 -1202,849883.9862889352 -1203,849883.9862889352 -1204,151636.3398329022 -1205,164457.49057520725 -1206,150659.0133591403 -1207,849883.9862889352 -1208,380431.40365355456 -1209,330805.8638870807 -1210,546755.3402903663 -1211,761494.7503755618 -1212,849883.9862889352 -1213,849883.9862889352 -1214,796731.1835901437 -1215,835705.1250810265 -1216,751596.1268101779 -1217,745124.0078060972 -1218,652530.1769421626 -1219,371618.2536250254 -1220,489611.8420500173 -1221,518994.71564273344 -1222,405156.6792801215 -1223,176668.3085428197 -1224,340638.5819076401 -1225,849883.9862889352 -1226,506505.4303703987 -1227,79783.2237023546 -1228,24317.471666330304 -1229,80520.34048046151 -1230,256052.8963861918 -1231,383014.7971442751 -1232,849883.9862889352 -1233,849883.9862889352 -1234,849883.9862889352 -1235,849883.9862889352 -1236,849883.9862889352 -1237,849883.9862889352 -1238,849883.9862889352 -1239,696250.032576533 -1240,297851.14654733834 -1241,122146.18692579698 -1242,209742.78832226482 -1243,417734.9176053395 -1244,549392.9905584501 -1245,371530.97453160014 -1246,337341.61191280576 -1247,303258.09882195195 -1248,584371.552086859 -1249,403137.6224204104 -1250,109257.58128320848 -1251,107525.6239362745 -1252,141878.40634499223 -1253,93434.19085297853 -1254,22055.66837211473 -1255,35279.605769505746 -1256,53601.466969291396 -1257,0.0 -1258,45471.43854643232 -1259,38766.57819926519 -1260,36878.317772126575 -1261,22552.187890212357 -1262,7205.431303956796 -1263,0.0 -1264,0.0 -1265,52241.73386310948 -1266,64820.12617073462 -1267,350558.38178596756 -1268,429095.76270481176 -1269,352008.25956946297 -1270,321825.2422839444 -1271,231359.59654705678 -1272,694225.3678515949 -1273,364193.10974956676 -1274,73358.3197638595 -1275,266487.0119277934 -1276,83211.20345109733 -1277,294331.67761619133 -1278,204016.90338632994 -1279,196522.51748914804 -1280,142731.77767486806 -1281,69084.18960346263 -1282,26693.58869580639 -1283,112172.31486925985 -1284,387419.3985222476 -1285,329817.5718300493 -1286,422425.6266116052 -1287,735476.2965889802 -1288,574366.6234529979 -1289,766615.3647531143 -1290,640472.5533906572 -1291,849883.9862889352 -1292,849883.9862889352 -1293,849883.9862889352 -1294,849883.9862889352 -1295,779769.7645133645 -1296,109366.36788514102 -1297,152852.1422467775 -1298,84179.2572545483 -1299,147402.0208602774 -1300,435064.7309081855 -1301,356962.83996961406 -1302,721689.5841493823 -1303,626674.9102284118 -1304,578783.0221906253 -1305,193577.2212763294 -1306,44762.51675367741 -1307,23488.728098400305 -1308,26551.592084119646 -1309,25321.478352009668 -1310,66496.24981748612 -1311,433074.5537499882 -1312,849883.9862889352 -1313,849883.9862889352 -1314,849883.9862889352 -1315,849883.9862889352 -1316,505485.92871217075 -1317,849883.9862889352 -1318,607077.7581830696 -1319,753072.0455316196 -1320,849883.9862889352 -1321,849883.9862889352 -1322,849883.9862889352 -1323,849883.9862889352 -1324,849883.9862889352 -1325,849883.9862889352 -1326,849883.9862889352 -1327,849883.9862889352 -1328,849883.9862889352 -1329,849883.9862889352 -1330,849883.9862889352 -1331,849883.9862889352 -1332,849883.9862889352 -1333,849883.9862889352 -1334,849883.9862889352 -1335,849883.9862889352 -1336,849883.9862889352 -1337,849883.9862889352 -1338,849883.9862889352 -1339,849883.9862889352 -1340,849883.9862889352 -1341,849883.9862889352 -1342,849883.9862889352 -1343,849883.9862889352 -1344,849883.9862889352 -1345,553559.6549216832 -1346,273777.1834445612 -1347,33261.5752199897 -1348,169987.958355407 -1349,15989.25302196677 -1350,42900.99420601089 -1351,21912.97040303932 -1352,0.0 -1353,0.0 -1354,0.0 -1355,0.0 -1356,0.0 -1357,0.0 -1358,0.0 -1359,0.0 -1360,265462.6724517368 -1361,476381.7741961175 -1362,844120.4296110217 -1363,378038.4777482522 -1364,849883.9862889352 -1365,849883.9862889352 -1366,849883.9862889352 -1367,536843.4339237781 -1368,587873.5291893254 -1369,849883.9862889352 -1370,636392.9872998588 -1371,386182.9644169078 -1372,658951.180054938 -1373,727936.6068218509 -1374,819473.7907048592 -1375,849883.9862889352 -1376,849883.9862889352 -1377,849883.9862889352 -1378,849883.9862889352 -1379,846912.0376915863 -1380,722242.3330306787 -1381,486387.3571525236 -1382,272189.3133654631 -1383,220984.72415066478 -1384,191735.60839473645 -1385,111292.61497596785 -1386,112741.04039340919 -1387,50407.35529625465 -1388,56699.51178514382 -1389,42142.20201379019 -1390,19611.271217913472 -1391,0.0 -1392,0.0 -1393,0.0 -1394,0.0 -1395,0.0 -1396,0.0 -1397,0.0 -1398,0.0 -1399,0.0 -1400,0.0 -1401,0.0 -1402,0.0 -1403,0.0 -1404,0.0 -1405,0.0 -1406,0.0 -1407,0.0 -1408,0.0 -1409,0.0 -1410,0.0 -1411,0.0 -1412,0.0 -1413,0.0 -1414,0.0 -1415,0.0 -1416,0.0 -1417,0.0 -1418,0.0 -1419,0.0 -1420,0.0 -1421,235.56085418036352 -1422,83029.44106084543 -1423,327452.925057476 -1424,570884.898195375 -1425,60491.89640780265 -1426,0.0 -1427,121954.54744458575 -1428,39435.985542907976 -1429,31598.271127954216 -1430,106136.52958439894 -1431,140472.8391354779 -1432,255270.88538470707 -1433,256164.40508976177 -1434,278123.07704993815 -1435,334840.7830799897 -1436,296117.3982165035 -1437,241990.86515984187 -1438,250050.21004726726 -1439,451830.7527971736 -1440,662137.1013261108 -1441,151582.5277190257 -1442,138953.15345883323 -1443,57452.96264158468 -1444,25987.610123018447 -1445,0.0 -1446,15477.84728146438 -1447,47937.33573397967 -1448,63014.366837742054 -1449,51375.06446472925 -1450,56123.77875466088 -1451,101922.46795987677 -1452,162298.4747797175 -1453,217979.54387028443 -1454,137892.01350188022 -1455,117919.58436426494 -1456,80849.73672552605 -1457,92689.72105887611 -1458,146831.8175124748 -1459,119974.16515300427 -1460,91560.59436564245 -1461,47977.06003463466 -1462,232346.91706246397 -1463,301930.25299804757 -1464,381678.71068157314 -1465,215267.37972711283 -1466,522305.0949174199 -1467,461945.7368858672 -1468,429725.79225363483 -1469,526217.0657590837 -1470,494964.80486856756 -1471,617803.7835873994 -1472,849883.9862889352 -1473,849883.9862889352 -1474,849883.9862889352 -1475,448557.080518092 -1476,463349.94669534336 -1477,849883.9862889352 -1478,849883.9862889352 -1479,849883.9862889352 -1480,849883.9862889352 -1481,849883.9862889352 -1482,849883.9862889352 -1483,849883.9862889352 -1484,849883.9862889352 -1485,849883.9862889352 -1486,849883.9862889352 -1487,849883.9862889352 -1488,849883.9862889352 -1489,849883.9862889352 -1490,849883.9862889352 -1491,849883.9862889352 -1492,849883.9862889352 -1493,849883.9862889352 -1494,849883.9862889352 -1495,849883.9862889352 -1496,735831.1116000543 -1497,600399.641356142 -1498,849883.9862889352 -1499,849883.9862889352 -1500,849883.9862889352 -1501,849883.9862889352 -1502,849883.9862889352 -1503,849883.9862889352 -1504,849883.9862889352 -1505,849883.9862889352 -1506,849883.9862889352 -1507,824479.7503112506 -1508,849883.9862889352 -1509,849883.9862889352 -1510,849883.9862889352 -1511,849883.9862889352 -1512,849883.9862889352 -1513,849883.9862889352 -1514,849883.9862889352 -1515,691757.8844950431 -1516,535595.9584032221 -1517,191513.5511952095 -1518,224297.72931508746 -1519,276997.7580414976 -1520,120869.50875638389 -1521,134579.8691590332 -1522,88716.30654631734 -1523,16099.371162881287 -1524,0.0 -1525,0.0 -1526,0.0 -1527,0.0 -1528,0.0 -1529,0.0 -1530,0.0 -1531,42266.536213119536 -1532,100662.4001510752 -1533,306738.6895313307 -1534,398987.95345513104 -1535,498723.8669049062 -1536,804702.0073619956 -1537,849883.9862889352 -1538,473921.02814892563 -1539,849883.9862889352 -1540,849883.9862889352 -1541,842608.5633742625 -1542,833967.4624466024 -1543,849883.9862889352 -1544,841458.8801755097 -1545,116062.1926151559 -1546,98788.18872440667 -1547,323190.21081583673 -1548,669959.8292941528 -1549,706775.5162258281 -1550,718720.4025189847 -1551,665044.1645357312 -1552,849883.9862889352 -1553,763484.4597795149 -1554,504466.67460731184 -1555,849883.9862889352 -1556,820216.0863030306 -1557,759020.6310240193 -1558,849883.9862889352 -1559,849883.9862889352 -1560,849883.9862889352 -1561,737193.8841648143 -1562,366938.0403749301 -1563,359874.50369110197 -1564,263902.45071422594 -1565,155762.10241714946 -1566,43057.228163950385 -1567,23648.39806289115 -1568,5477.446684824538 -1569,0.0 -1570,0.0 -1571,0.0 -1572,14795.681013006466 -1573,117461.85265441936 -1574,123974.93507427096 -1575,231798.14188439236 -1576,254996.53895273546 -1577,411890.1459731705 -1578,525746.7025724035 -1579,849883.9862889352 -1580,849883.9862889352 -1581,849883.9862889352 -1582,849883.9862889352 -1583,849883.9862889352 -1584,849883.9862889352 -1585,572406.0368939553 -1586,260101.99920930163 -1587,237042.52918886664 -1588,447178.5918513067 -1589,345507.46649757586 -1590,240098.8603688573 -1591,141792.44490826744 -1592,128667.22090231773 -1593,219142.25907981177 -1594,127544.6483066142 -1595,74585.88918109778 -1596,194616.89824162828 -1597,750065.8758318604 -1598,833024.7294800623 -1599,849883.9862889352 -1600,849883.9862889352 -1601,849883.9862889352 -1602,849883.9862889352 -1603,604924.8045287055 -1604,849883.9862889352 -1605,849883.9862889352 -1606,849883.9862889352 -1607,849883.9862889352 -1608,849883.9862889352 -1609,849883.9862889352 -1610,375962.7660441588 -1611,409212.08273671963 -1612,288187.52868615696 -1613,116953.66690999674 -1614,558023.0916317275 -1615,849883.9862889352 -1616,849883.9862889352 -1617,755821.8595510424 -1618,849883.9862889352 -1619,849883.9862889352 -1620,849883.9862889352 -1621,849883.9862889352 -1622,849883.9862889352 -1623,849883.9862889352 -1624,849883.9862889352 -1625,849883.9862889352 -1626,849883.9862889352 -1627,849883.9862889352 -1628,849883.9862889352 -1629,849883.9862889352 -1630,849883.9862889352 -1631,849883.9862889352 -1632,849883.9862889352 -1633,849883.9862889352 -1634,849883.9862889352 -1635,849883.9862889352 -1636,849883.9862889352 -1637,849883.9862889352 -1638,849883.9862889352 -1639,849883.9862889352 -1640,849883.9862889352 -1641,849883.9862889352 -1642,849883.9862889352 -1643,849883.9862889352 -1644,849883.9862889352 -1645,849883.9862889352 -1646,849883.9862889352 -1647,849883.9862889352 -1648,849883.9862889352 -1649,849883.9862889352 -1650,849883.9862889352 -1651,230301.10168821766 -1652,351855.4528411434 -1653,584622.3405281819 -1654,783764.3203838451 -1655,469577.92073655484 -1656,849883.9862889352 -1657,849883.9862889352 -1658,849883.9862889352 -1659,103421.77355109231 -1660,51616.495505278486 -1661,89098.69031056862 -1662,172256.43314876556 -1663,300525.6764903537 -1664,332048.5469243976 -1665,148616.8385517963 -1666,168597.8129375987 -1667,269706.560396176 -1668,295744.99633702496 -1669,441367.3091980964 -1670,389953.7854279906 -1671,306486.36603164097 -1672,336574.9106483323 -1673,285695.3825234371 -1674,283785.8509983211 -1675,175259.21075946226 -1676,849883.9862889352 -1677,849883.9862889352 -1678,849883.9862889352 -1679,849883.9862889352 -1680,849883.9862889352 -1681,849883.9862889352 -1682,849883.9862889352 -1683,849883.9862889352 -1684,311947.60715952225 -1685,538303.523980176 -1686,849883.9862889352 -1687,849883.9862889352 -1688,849883.9862889352 -1689,720831.1500131666 -1690,729982.9678644958 -1691,537574.9411510967 -1692,391183.0596019143 -1693,247039.8156296181 -1694,162439.75453690925 -1695,114697.77122876856 -1696,76817.10530068613 -1697,47608.75106807 -1698,62062.15498175139 -1699,112500.07038830475 -1700,271967.72293949145 -1701,403270.468297606 -1702,646189.0751569092 -1703,728667.7196001788 -1704,739396.7353388445 -1705,835416.0192525409 -1706,849883.9862889352 -1707,838692.8400604097 -1708,797638.814467251 -1709,805943.9670424707 -1710,793943.3995071249 -1711,737665.2610457535 -1712,220637.95706425572 -1713,38887.68990374255 -1714,150689.8417311062 -1715,253420.2644890257 -1716,230882.4420145182 -1717,249093.43333516832 -1718,286852.9961500057 -1719,328803.4697485021 -1720,267320.44019373774 -1721,298742.517004146 -1722,283681.5659074352 -1723,268544.6047400795 -1724,849883.9862889352 -1725,849883.9862889352 -1726,849883.9862889352 -1727,739382.8726049713 -1728,354141.87914424966 -1729,171723.87069466643 -1730,142947.69229743516 -1731,150677.71161489072 -1732,209772.47128807238 -1733,138776.92561425056 -1734,228765.49038210997 -1735,467459.7370775909 -1736,59051.656204077604 -1737,94844.27082035161 -1738,31879.07503286722 -1739,58963.073691292266 -1740,207560.9122958243 -1741,188231.02744141725 -1742,61130.58558255179 -1743,0.0 -1744,0.0 -1745,0.0 -1746,0.0 -1747,64200.368503665544 -1748,86000.75430447617 -1749,48216.939960736076 -1750,0.0 -1751,0.0 -1752,0.0 -1753,0.0 -1754,306506.9368790077 -1755,405527.91063679144 -1756,398971.0977787871 -1757,108456.19984272993 -1758,67507.57673702644 -1759,199564.6082027212 -1760,239171.3490043305 -1761,158074.20854122678 -1762,34677.605883056734 -1763,54522.937462647955 -1764,141248.9699497955 -1765,388588.2597874267 -1766,570046.8051519924 -1767,289347.01999171166 -1768,239330.8804396625 -1769,151110.33495764487 -1770,278207.34688170406 -1771,129004.74093176812 -1772,24608.13485378217 -1773,173897.43539726373 -1774,502412.13509983313 -1775,623381.0373808835 -1776,849883.9862889352 -1777,386242.9085501269 -1778,721776.5222755603 -1779,841931.1434969323 -1780,722276.5421161774 -1781,849883.9862889352 -1782,849883.9862889352 -1783,849883.9862889352 -1784,849883.9862889352 -1785,242309.4665755056 -1786,200924.99254031692 -1787,285927.6411033103 -1788,180240.8629634645 -1789,106521.75138387113 -1790,70213.5960401946 -1791,58477.32967208954 -1792,27578.344030414468 -1793,38380.398078170765 -1794,317911.57855369576 -1795,660631.5870424742 -1796,799204.4586027132 -1797,849883.9862889352 -1798,849883.9862889352 -1799,849883.9862889352 -1800,415233.53536633065 -1801,552997.1504796259 -1802,408956.1272683419 -1803,378986.219647206 -1804,336598.14735335176 -1805,184741.0715564268 -1806,22455.505120408372 -1807,25949.253403143346 -1808,0.0 -1809,0.0 -1810,0.0 -1811,0.0 -1812,63252.97787856806 -1813,161227.0660187234 -1814,385986.7188266765 -1815,374689.3269330829 -1816,688316.2329161597 -1817,505079.4609711928 -1818,849883.9862889352 -1819,849883.9862889352 -1820,849883.9862889352 -1821,771965.7464455701 -1822,792929.0048401178 -1823,849883.9862889352 -1824,740145.102461978 -1825,683772.4259187919 -1826,833600.5346188074 -1827,755088.3354322093 -1828,849883.9862889352 -1829,849883.9862889352 -1830,849883.9862889352 -1831,849883.9862889352 -1832,659632.5644869609 -1833,305314.66654213856 -1834,123859.89782435985 -1835,30829.802072594848 -1836,0.0 -1837,0.0 -1838,0.0 -1839,23211.377130473324 -1840,98120.02267507558 -1841,187284.65499210614 -1842,220190.18034382904 -1843,263354.4695178597 -1844,351541.862973261 -1845,413323.97129877354 -1846,0.0 -1847,0.0 -1848,0.0 -1849,0.0 -1850,0.0 -1851,77225.12232340107 -1852,163967.01083167587 -1853,136172.92104978007 -1854,63423.68978245132 -1855,77979.46923486088 -1856,79577.21590360315 -1857,0.0 -1858,0.0 -1859,1054.385976723248 -1860,93977.7697655008 -1861,184966.11145677447 -1862,252338.46774718128 -1863,316259.6333488973 -1864,403999.0897156386 -1865,477121.9189549661 -1866,275856.1978211127 -1867,233703.51380294512 -1868,355155.3648986231 -1869,489412.42375765933 -1870,240624.87432461948 -1871,294586.88122592884 -1872,456005.1950419922 -1873,608679.2980603412 -1874,744336.5600964647 -1875,849347.3568462915 -1876,849883.9862889352 -1877,620396.1800672087 -1878,159705.27262106267 -1879,96569.2680891092 -1880,47655.11625481239 -1881,0.0 -1882,29205.924368061216 -1883,82466.88695837454 -1884,99419.68360304652 -1885,113621.24051633562 -1886,219025.39615409478 -1887,299503.56854495447 -1888,387066.37834873516 -1889,519067.3814838464 -1890,611682.6745452526 -1891,692344.3355619797 -1892,716088.933229588 -1893,823855.0525848755 -1894,849883.9862889352 -1895,849883.9862889352 -1896,849883.9862889352 -1897,849883.9862889352 -1898,849883.9862889352 -1899,788513.2558306721 -1900,705532.8997452264 -1901,583644.6725610025 -1902,815577.0602909846 -1903,758939.2459349987 -1904,849883.9862889352 -1905,849883.9862889352 -1906,849883.9862889352 -1907,849883.9862889352 -1908,849883.9862889352 -1909,849883.9862889352 -1910,849883.9862889352 -1911,849883.9862889352 -1912,849883.9862889352 -1913,849883.9862889352 -1914,849883.9862889352 -1915,849883.9862889352 -1916,849883.9862889352 -1917,849883.9862889352 -1918,849883.9862889352 -1919,849883.9862889352 -1920,849883.9862889352 -1921,849883.9862889352 -1922,752911.4032850914 -1923,654662.298135142 -1924,567444.2901980758 -1925,248032.84889884948 -1926,539953.7128876699 -1927,365910.18706093327 -1928,162900.63382786588 -1929,56035.76169700219 -1930,34787.12069575962 -1931,32024.62296085572 -1932,0.0 -1933,25762.7092717963 -1934,2465.6569225478293 -1935,12707.44419654677 -1936,0.0 -1937,9847.419666169126 -1938,44992.04124518342 -1939,385493.5891731158 -1940,164019.77658277823 -1941,440004.5348990444 -1942,752145.2162607277 -1943,501153.05677821423 -1944,849883.9862889352 -1945,748432.6281632619 -1946,338334.66671233514 -1947,142646.22429282052 -1948,849883.9862889352 -1949,849883.9862889352 -1950,849883.9862889352 -1951,849883.9862889352 -1952,605202.7784651106 -1953,568710.0877920836 -1954,790118.1144895866 -1955,849883.9862889352 -1956,849883.9862889352 -1957,849883.9862889352 -1958,849883.9862889352 -1959,849883.9862889352 -1960,849883.9862889352 -1961,849883.9862889352 -1962,849883.9862889352 -1963,849883.9862889352 -1964,849883.9862889352 -1965,849883.9862889352 -1966,849883.9862889352 -1967,849883.9862889352 -1968,849883.9862889352 -1969,849883.9862889352 -1970,849883.9862889352 -1971,849883.9862889352 -1972,849883.9862889352 -1973,849883.9862889352 -1974,849883.9862889352 -1975,849883.9862889352 -1976,504573.41166937957 -1977,404628.38244615577 -1978,236652.15887332964 -1979,135480.6427414622 -1980,70522.92556254014 -1981,23441.8323808883 -1982,0.0 -1983,0.0 -1984,0.0 -1985,0.0 -1986,0.0 -1987,26646.93419722046 -1988,136728.21242969335 -1989,254862.12669559853 -1990,532245.058266671 -1991,545299.5450152437 -1992,849883.9862889352 -1993,804424.9902289666 -1994,560387.1796678735 -1995,482358.1980414962 -1996,259506.4244801797 -1997,177598.148572556 -1998,171308.8868708709 -1999,299079.70337244624 -2000,76584.59445840173 -2001,28470.89263314618 -2002,0.0 -2003,0.0 -2004,0.0 -2005,0.0 -2006,0.0 -2007,0.0 -2008,0.0 -2009,0.0 -2010,0.0 -2011,0.0 -2012,0.0 -2013,233055.2630290423 -2014,293523.8750734948 -2015,374466.9164440969 -2016,353496.97730321804 -2017,293114.74040841934 -2018,452818.92822118493 -2019,508406.29832008295 -2020,849883.9862889352 -2021,849883.9862889352 -2022,792571.3489110968 -2023,849883.9862889352 -2024,270256.40240840265 -2025,298238.91527735814 -2026,365381.4281811286 -2027,720455.4146511249 -2028,849883.9862889352 -2029,849883.9862889352 -2030,831622.3905236189 -2031,789720.5263734319 -2032,849883.9862889352 -2033,849883.9862889352 -2034,849883.9862889352 -2035,849883.9862889352 -2036,849883.9862889352 -2037,849883.9862889352 -2038,849883.9862889352 -2039,849883.9862889352 -2040,849883.9862889352 -2041,849883.9862889352 -2042,849883.9862889352 -2043,849883.9862889352 -2044,679091.8981182629 -2045,849883.9862889352 -2046,596491.9335383221 -2047,422941.1201442226 -2048,500072.377216279 -2049,148893.83624400874 -2050,88924.42318154556 -2051,116927.02405048984 -2052,66384.89246565303 -2053,58617.17336466171 -2054,46320.59898453253 -2055,133869.28395126038 -2056,157765.39665377073 -2057,133427.08082292313 -2058,147110.269036745 -2059,131490.82644950668 -2060,844316.1659537995 -2061,849883.9862889352 -2062,849883.9862889352 -2063,849883.9862889352 -2064,550013.548742919 -2065,849883.9862889352 -2066,745412.7334056633 -2067,298850.2437147128 -2068,274856.81753650575 -2069,75991.95949636529 -2070,128129.0613199099 -2071,437772.0469126837 -2072,103021.25490785213 -2073,0.0 -2074,15108.512887039733 -2075,0.0 -2076,0.0 -2077,0.0 -2078,0.0 -2079,0.0 -2080,79586.7756104159 -2081,164157.8959001783 -2082,94700.75936207804 -2083,54098.92385523831 -2084,32311.982108587057 -2085,166525.61207386843 -2086,201562.71867475644 -2087,246340.8159022301 -2088,158066.70105657412 -2089,849883.9862889352 -2090,403040.8843404558 -2091,73490.61571859542 -2092,58431.58548308399 -2093,45079.51087116199 -2094,293153.4457471656 -2095,157720.66777960688 -2096,0.0 -2097,0.0 -2098,0.0 -2099,0.0 -2100,0.0 -2101,0.0 -2102,0.0 -2103,48333.23038291031 -2104,849883.9862889352 -2105,221583.8334409055 -2106,0.0 -2107,376357.3209523237 -2108,197193.17839467953 -2109,296136.2073311936 -2110,165064.0860619121 -2111,64045.01660860016 -2112,9022.915530767652 -2113,0.0 -2114,0.0 -2115,19130.475583573807 -2116,47278.68864971743 -2117,89053.73497460423 -2118,591935.95839614 -2119,778607.3277745388 -2120,228821.80897791468 -2121,91916.52101324049 -2122,92199.20902039207 -2123,121269.11846342409 -2124,54461.601779970435 -2125,27744.543368398365 -2126,0.0 -2127,0.0 -2128,0.0 -2129,0.0 -2130,28654.856815053256 -2131,42127.808011946036 -2132,13017.78101313536 -2133,104632.06723219603 -2134,461700.4685957652 -2135,764046.4877043301 -2136,849883.9862889352 -2137,815746.036762244 -2138,656090.647068037 -2139,644986.1267378796 -2140,849883.9862889352 -2141,849883.9862889352 -2142,849883.9862889352 -2143,849883.9862889352 -2144,568589.3017806424 -2145,219092.1008992395 -2146,137392.09952790337 -2147,66049.45990855506 -2148,115728.98113009603 -2149,30844.26739580264 -2150,0.0 -2151,0.0 -2152,0.0 -2153,0.0 -2154,0.0 -2155,21152.606147820014 -2156,42422.59347323594 -2157,135286.75435238134 -2158,247873.04158518426 -2159,437014.195410512 -2160,642189.8408545135 -2161,849883.9862889352 -2162,849883.9862889352 -2163,693964.573527091 -2164,584098.0667389653 -2165,849883.9862889352 -2166,849883.9862889352 -2167,830072.9795085562 -2168,512374.7905685323 -2169,126094.97477367622 -2170,97516.84489903957 -2171,258480.52279365703 -2172,491380.4630972307 -2173,508749.48913297855 -2174,666269.6810876942 -2175,848112.4875340511 -2176,556370.6141826712 -2177,849883.9862889352 -2178,0.0 -2179,710248.8172685641 -2180,849883.9862889352 -2181,771358.6684163505 -2182,849883.9862889352 -2183,849883.9862889352 -2184,821955.6894058086 -2185,849883.9862889352 -2186,849883.9862889352 -2187,823664.1784925429 -2188,584123.4051002334 -2189,651260.9914687369 -2190,493931.35563420906 -2191,524461.2507782461 -2192,441533.4316956839 -2193,444645.55295858986 -2194,473150.6688211236 -2195,367504.4776208 -2196,429455.8918554754 -2197,378777.16601419344 -2198,244525.0961227223 -2199,227734.3937138145 -2200,350513.8745837867 -2201,343470.0593919445 -2202,465748.3424369149 -2203,396491.13440877263 -2204,56908.96458838647 -2205,823634.6864986573 -2206,412446.4717009187 -2207,317066.2579044788 -2208,295334.3876227288 -2209,394011.7923344807 -2210,167831.72225796102 -2211,163225.6108325764 -2212,101043.46003371335 -2213,106083.4774860331 -2214,177798.08840537717 -2215,246020.94625604758 -2216,249978.05890544245 -2217,154067.58036116863 -2218,149651.43794875155 -2219,151575.14103403568 -2220,83639.04459696864 -2221,67869.37343811637 -2222,61986.60995667518 -2223,76153.04616650114 -2224,100080.8635589226 -2225,53213.54107695339 -2226,38698.04928360046 -2227,45056.27649128025 -2228,110122.3120046008 -2229,264272.86980074015 -2230,93325.2390780176 -2231,35265.90314402895 -2232,111826.52004561892 -2233,10356.149262411736 -2234,0.0 -2235,0.0 -2236,0.0 -2237,16004.579744937526 -2238,19167.83879326086 -2239,22272.311903919443 -2240,58296.65875593993 -2241,36254.26009772749 -2242,0.0 -2243,0.0 -2244,0.0 -2245,0.0 -2246,0.0 -2247,0.0 -2248,0.0 -2249,0.0 -2250,0.0 -2251,69716.4046450354 -2252,232059.66201979533 -2253,495834.94826741953 -2254,849883.9862889352 -2255,849883.9862889352 -2256,849883.9862889352 -2257,846440.3437756202 -2258,554273.9753108466 -2259,405680.4691476212 -2260,450854.6892586149 -2261,777016.6919791967 -2262,589955.6936457289 -2263,590974.461133725 -2264,429135.4814359571 -2265,188050.0446128921 -2266,251525.18652587032 -2267,443025.06521803024 -2268,849883.9862889352 -2269,849883.9862889352 -2270,849883.9862889352 -2271,849883.9862889352 -2272,849883.9862889352 -2273,849883.9862889352 -2274,849883.9862889352 -2275,849883.9862889352 -2276,809081.2567325217 -2277,849883.9862889352 -2278,849883.9862889352 -2279,849883.9862889352 -2280,849883.9862889352 -2281,849883.9862889352 -2282,849883.9862889352 -2283,849883.9862889352 -2284,564767.688581635 -2285,504346.51211436355 -2286,849883.9862889352 -2287,849883.9862889352 -2288,426894.57395760616 -2289,69463.73447286015 -2290,40580.617581579565 -2291,118703.91660979754 -2292,43564.38159325317 -2293,0.0 -2294,0.0 -2295,0.0 -2296,0.0 -2297,0.0 -2298,0.0 -2299,0.0 -2300,25270.517599218023 -2301,168352.86812264824 -2302,849883.9862889352 -2303,849883.9862889352 -2304,849883.9862889352 -2305,815263.5613116338 -2306,354719.58333873056 -2307,405763.66161018546 -2308,659628.2088840811 -2309,479268.3876550809 -2310,283973.5365254664 -2311,164482.96973571685 -2312,201786.4279379809 -2313,31847.655512819598 -2314,65949.8602151088 -2315,147335.7397168581 -2316,160309.3742404107 -2317,268975.88133274915 -2318,393588.73200765613 -2319,257741.54553520135 -2320,763831.6575412351 -2321,405319.36998274724 -2322,849883.9862889352 -2323,849883.9862889352 -2324,849883.9862889352 -2325,849883.9862889352 -2326,708389.9431770586 -2327,641093.3025470386 -2328,587283.3519093421 -2329,304882.33146619383 -2330,849883.9862889352 -2331,601371.9053488986 -2332,0.0 -2333,0.0 -2334,51775.846015153154 -2335,257214.35864849028 -2336,327653.79858998494 -2337,100260.68037546259 -2338,139965.6536457926 -2339,157753.25055521072 -2340,211610.75403091265 -2341,299939.264550383 -2342,722234.0290866724 -2343,849883.9862889352 -2344,849883.9862889352 -2345,849883.9862889352 -2346,849883.9862889352 -2347,849883.9862889352 -2348,849883.9862889352 -2349,506991.2667467082 -2350,849883.9862889352 -2351,849883.9862889352 -2352,849883.9862889352 -2353,849883.9862889352 -2354,849883.9862889352 -2355,849883.9862889352 -2356,270993.4366640118 -2357,849883.9862889352 -2358,849883.9862889352 -2359,560744.1443667663 -2360,56184.579411370214 -2361,473429.39436518593 -2362,426627.69452606153 -2363,825666.0413780347 -2364,849883.9862889352 -2365,849883.9862889352 -2366,849883.9862889352 -2367,849883.9862889352 -2368,849883.9862889352 -2369,849883.9862889352 -2370,849883.9862889352 -2371,849883.9862889352 -2372,849883.9862889352 -2373,849883.9862889352 -2374,849883.9862889352 -2375,849883.9862889352 -2376,849883.9862889352 -2377,849883.9862889352 -2378,849883.9862889352 -2379,849883.9862889352 -2380,849883.9862889352 -2381,629315.07313046 -2382,831717.0994453063 -2383,535336.0442287377 -2384,824598.8325852612 -2385,564992.4273272357 -2386,583969.1854491847 -2387,393385.6032598294 -2388,212456.15919504073 -2389,129942.43949989753 -2390,64475.729989049076 -2391,51302.18903318117 -2392,37093.30823726983 -2393,19156.324267953525 -2394,0.0 -2395,0.0 -2396,17103.936455103383 -2397,266112.405828192 -2398,364243.1181283474 -2399,391062.0866572702 -2400,365217.16280470765 -2401,594272.5500126046 -2402,168478.65772138018 -2403,307036.15119940776 -2404,303786.1746842479 -2405,399684.9497160014 -2406,650345.2971275172 -2407,422821.9392286988 -2408,165302.8301487154 -2409,175685.66320915663 -2410,150996.7110057062 -2411,250762.38909206862 -2412,276669.6529373247 -2413,212070.47577794528 -2414,123965.04355169676 -2415,63125.22251468089 -2416,20429.64588723677 -2417,36364.55657695631 -2418,0.0 -2419,0.0 -2420,0.0 -2421,26042.199579583128 -2422,164500.18975752377 -2423,226991.40352418527 -2424,127871.23209827887 -2425,294067.2284082658 -2426,99226.92393150358 -2427,321167.89664236887 -2428,849883.9862889352 -2429,849883.9862889352 -2430,849883.9862889352 -2431,849883.9862889352 -2432,226451.39704097368 -2433,123454.8074170967 -2434,161162.79410762768 -2435,187561.8676217466 -2436,188502.0235828303 -2437,191149.53083332622 -2438,131885.53744714562 -2439,34445.989708952824 -2440,29352.366001834383 -2441,16769.122377610187 -2442,67441.34923271887 -2443,135494.26991399133 -2444,190607.2493145343 -2445,0.0 -2446,350564.85481478676 -2447,841514.5569378526 -2448,581669.1628633667 -2449,769562.8947950209 -2450,57095.37830455576 -2451,0.0 -2452,127511.62337002011 -2453,43853.80292628641 -2454,88850.21257965437 -2455,0.0 -2456,38813.86424038916 -2457,33487.75997866042 -2458,67849.60171034183 -2459,414030.4398482528 -2460,219200.0899881998 -2461,619690.5944584172 -2462,825326.176674875 -2463,849883.9862889352 -2464,565225.710232064 -2465,435812.5532301298 -2466,849883.9862889352 -2467,402088.5629793749 -2468,849883.9862889352 -2469,849883.9862889352 -2470,665590.0290119027 -2471,670894.5867623532 -2472,849883.9862889352 -2473,849883.9862889352 -2474,846757.5987399773 -2475,696761.5764882355 -2476,573515.0995924108 -2477,804201.3211583134 -2478,786625.695050432 -2479,849883.9862889352 -2480,849883.9862889352 -2481,849883.9862889352 -2482,849883.9862889352 -2483,849883.9862889352 -2484,849883.9862889352 -2485,823470.2610476736 -2486,849883.9862889352 -2487,849883.9862889352 -2488,817090.3323721205 -2489,849883.9862889352 -2490,849883.9862889352 -2491,771928.7891091668 -2492,663813.307916475 -2493,617968.1002070969 -2494,247286.2059153931 -2495,201317.24604936023 -2496,451970.5801041354 -2497,842082.3172518642 -2498,849883.9862889352 -2499,151899.79987435602 -2500,288266.4757966589 -2501,269935.6264580027 -2502,244502.44470345834 -2503,102025.05755877952 -2504,25200.66830184338 -2505,0.0 -2506,0.0 -2507,0.0 -2508,18509.049411443244 -2509,138045.65692589546 -2510,178328.6994436453 -2511,460427.9050985728 -2512,696003.1734772744 -2513,635287.7200249506 -2514,671459.5221902399 -2515,849883.9862889352 -2516,849883.9862889352 -2517,849883.9862889352 -2518,849883.9862889352 -2519,849883.9862889352 -2520,849883.9862889352 -2521,289502.61032028386 -2522,499407.8688871858 -2523,271663.5590733948 -2524,200516.93763380693 -2525,139145.55165054073 -2526,82132.57200143574 -2527,268033.74007846415 -2528,81229.67550931459 -2529,50491.110106691165 -2530,48122.0347709787 -2531,66340.97016662775 -2532,63823.2565671091 -2533,187776.06847071435 -2534,300181.73595319677 -2535,391400.64775699336 -2536,849883.9862889352 -2537,849883.9862889352 -2538,849883.9862889352 -2539,849883.9862889352 -2540,849883.9862889352 -2541,849883.9862889352 -2542,849883.9862889352 -2543,849883.9862889352 -2544,290191.1692190364 -2545,460488.68631886033 -2546,273299.4364294558 -2547,849883.9862889352 -2548,842819.7012424897 -2549,849883.9862889352 -2550,849883.9862889352 -2551,849883.9862889352 -2552,225467.81206935918 -2553,104198.93713514983 -2554,221754.0770462887 -2555,493780.2136054842 -2556,827897.4971214308 -2557,849883.9862889352 -2558,849883.9862889352 -2559,849883.9862889352 -2560,849883.9862889352 -2561,849883.9862889352 -2562,849883.9862889352 -2563,849883.9862889352 -2564,849883.9862889352 -2565,849883.9862889352 -2566,849883.9862889352 -2567,849883.9862889352 -2568,849883.9862889352 -2569,849883.9862889352 -2570,849883.9862889352 -2571,849883.9862889352 -2572,849883.9862889352 -2573,849883.9862889352 -2574,849883.9862889352 -2575,849883.9862889352 -2576,849883.9862889352 -2577,849883.9862889352 -2578,762183.23440106 -2579,628236.1322175334 -2580,421844.4464950605 -2581,384529.39554923464 -2582,246871.22153165346 -2583,216765.43310453786 -2584,269888.36524563684 -2585,155891.8272620869 -2586,144127.33861214374 -2587,94388.58637124988 -2588,341738.05556580925 -2589,510735.51764895325 -2590,723965.5502486724 -2591,683214.1581963167 -2592,217197.67953218083 -2593,237540.0692769761 -2594,51786.206523772424 -2595,0.0 -2596,0.0 -2597,0.0 -2598,0.0 -2599,0.0 -2600,26769.2078711687 -2601,14514.73060615115 -2602,85663.45496162129 -2603,128396.4738345255 -2604,123132.32927399829 -2605,87696.62824668673 -2606,90809.3411004559 -2607,99241.63044456668 -2608,194308.10690746183 -2609,206621.24760976768 -2610,246147.50256068382 -2611,470295.22744541505 -2612,494208.03150751756 -2613,849883.9862889352 -2614,849883.9862889352 -2615,849883.9862889352 -2616,849883.9862889352 -2617,849883.9862889352 -2618,849883.9862889352 -2619,685076.524039971 -2620,736494.6359624107 -2621,849883.9862889352 -2622,638494.0191111717 -2623,807054.9659950355 -2624,443435.2606587691 -2625,159594.89236073312 -2626,247634.67778098138 -2627,232953.75256532407 -2628,220740.2666894214 -2629,201343.2353563315 -2630,386005.24228801514 -2631,717050.471100422 -2632,400801.2840143037 -2633,217577.04949244985 -2634,15.133649478231906 -2635,0.0 -2636,509146.26783280267 -2637,628443.088317816 -2638,849883.9862889352 -2639,849883.9862889352 -2640,352858.20932632237 -2641,849883.9862889352 -2642,849883.9862889352 -2643,232459.70837567624 -2644,62210.3206679845 -2645,140400.8336302589 -2646,251589.47757874118 -2647,0.0 -2648,0.0 -2649,0.0 -2650,0.0 -2651,0.0 -2652,0.0 -2653,0.0 -2654,0.0 -2655,0.0 -2656,0.0 -2657,25017.845951938187 -2658,213470.76173769205 -2659,26273.018793338953 -2660,0.0 -2661,0.0 -2662,43767.84189794904 -2663,849883.9862889352 -2664,849883.9862889352 -2665,849883.9862889352 -2666,849883.9862889352 -2667,229500.10379115926 -2668,33845.79071612531 -2669,0.0 -2670,10276.680517248837 -2671,0.0 -2672,134213.39638664742 -2673,102566.56880433731 -2674,103030.6996295672 -2675,73803.2777624425 -2676,142635.72225389624 -2677,428966.1127688824 -2678,584133.3534762972 -2679,844804.2126736114 -2680,540401.6965133555 -2681,516733.89828728465 -2682,619603.6198447751 -2683,581358.9636778543 -2684,642476.3028413283 -2685,849883.9862889352 -2686,613688.3230551363 -2687,67008.46564788313 -2688,849883.9862889352 -2689,849883.9862889352 -2690,849883.9862889352 -2691,849883.9862889352 -2692,849883.9862889352 -2693,849883.9862889352 -2694,849883.9862889352 -2695,849883.9862889352 -2696,849883.9862889352 -2697,841199.5121173918 -2698,478929.0271065779 -2699,471800.32682943746 -2700,266051.9970254381 -2701,158983.08539855146 -2702,163119.08322738195 -2703,85078.3362302337 -2704,198721.44200970474 -2705,174259.26329742756 -2706,472973.52740880806 -2707,382675.4387263608 -2708,435984.6208264336 -2709,737362.1822091425 -2710,489003.44352633343 -2711,369006.6698975326 -2712,541321.1691937329 -2713,397960.9738641916 -2714,184538.58283776266 -2715,64838.86227633408 -2716,81174.17050018882 -2717,50260.25960475108 -2718,0.0 -2719,0.0 -2720,0.0 -2721,0.0 -2722,0.0 -2723,0.0 -2724,0.0 -2725,0.0 -2726,0.0 -2727,0.0 -2728,23235.895911581807 -2729,56040.24705816217 -2730,81255.61641754987 -2731,139615.92813397243 -2732,368847.40123306256 -2733,653054.1308344525 -2734,849883.9862889352 -2735,811882.093709778 -2736,840609.4061192777 -2737,352285.38118327456 -2738,543128.6770709738 -2739,793029.6105611474 -2740,370023.4122453559 -2741,287207.8472168981 -2742,275234.3405240508 -2743,150606.6594278031 -2744,77765.56088213337 -2745,173459.93454969657 -2746,347649.58974266116 -2747,173901.31252655401 -2748,123881.39895308914 -2749,176054.2465536802 -2750,141060.00547986233 -2751,235598.19311962527 -2752,159556.95959902668 -2753,268575.8663445146 -2754,505629.30187380593 -2755,707055.6498873122 -2756,572338.9373848708 -2757,849883.9862889352 -2758,729967.4156248407 -2759,308352.5306131145 -2760,516175.3036528006 -2761,407863.1436124272 -2762,336689.05923566537 -2763,123504.40030091578 -2764,70029.93907982917 -2765,303034.75683633715 -2766,122164.46297181457 -2767,122173.59438981597 -2768,104494.10899371163 -2769,49913.0658787447 -2770,96414.29483810476 -2771,389832.309275189 -2772,596005.9517283941 -2773,837392.446698573 -2774,672220.8507041123 -2775,415601.4404576081 -2776,351397.41393740615 -2777,251846.37914190697 -2778,608759.97042253 -2779,849883.9862889352 -2780,718241.3852154788 -2781,849883.9862889352 -2782,849883.9862889352 -2783,666889.4424649208 -2784,776087.5486105243 -2785,849883.9862889352 -2786,849883.9862889352 -2787,849883.9862889352 -2788,707845.3928337176 -2789,392630.24068588665 -2790,56127.45861328837 -2791,38990.147181000335 -2792,0.0 -2793,0.0 -2794,0.0 -2795,0.0 -2796,0.0 -2797,30083.73607343347 -2798,0.0 -2799,0.0 -2800,0.0 -2801,0.0 -2802,0.0 -2803,0.0 -2804,64471.22399785026 -2805,183623.4742714667 -2806,849883.9862889352 -2807,849883.9862889352 -2808,729420.7134330198 -2809,369213.48494212626 -2810,276347.4619612354 -2811,672797.6644993944 -2812,841292.3770048872 -2813,505777.36233411724 -2814,471857.77018514357 -2815,411278.8789453944 -2816,147934.45849002386 -2817,193846.48871643946 -2818,293586.9897858863 -2819,305981.9161648495 -2820,211883.61617545717 -2821,121010.39365843033 -2822,102091.79969075501 -2823,360437.6099823451 -2824,102409.37722360848 -2825,233701.71216027683 -2826,95263.88273440511 -2827,39567.539346956764 -2828,50335.47514779828 -2829,754547.5888606791 -2830,849883.9862889352 -2831,849883.9862889352 -2832,849883.9862889352 -2833,849883.9862889352 -2834,849883.9862889352 -2835,849883.9862889352 -2836,849883.9862889352 -2837,849883.9862889352 -2838,849883.9862889352 -2839,849883.9862889352 -2840,626382.170727026 -2841,247215.43149667076 -2842,544045.5933256119 -2843,765479.0592718641 -2844,542633.1517532667 -2845,338102.95169681875 -2846,316554.3909598607 -2847,233625.30021704285 -2848,187911.71763375384 -2849,138034.36939138564 -2850,202993.7224406691 -2851,264408.5743012236 -2852,663457.361633034 -2853,849883.9862889352 -2854,849883.9862889352 -2855,849883.9862889352 -2856,0.0 -2857,719045.338047749 -2858,192777.02478353673 -2859,849883.9862889352 -2860,838734.4238177099 -2861,635519.4437817861 -2862,425846.3348237698 -2863,547004.3675051399 -2864,59446.56955746217 -2865,0.0 -2866,26365.582565998287 -2867,0.0 -2868,0.0 -2869,0.0 -2870,92685.79588101254 -2871,849883.9862889352 -2872,666357.4840287216 -2873,148311.38865728403 -2874,849883.9862889352 -2875,829954.7419739487 -2876,849883.9862889352 -2877,134686.25823198495 -2878,849883.9862889352 -2879,849883.9862889352 -2880,849883.9862889352 -2881,849883.9862889352 -2882,849883.9862889352 -2883,849883.9862889352 -2884,849883.9862889352 -2885,849883.9862889352 -2886,263602.80069755256 -2887,561386.1005574954 -2888,831742.7337269034 -2889,822137.4065828179 -2890,849883.9862889352 -2891,849883.9862889352 -2892,844104.4011740816 -2893,728654.7780355659 -2894,715151.9850771357 -2895,849883.9862889352 -2896,778143.9878127588 -2897,849883.9862889352 -2898,849883.9862889352 -2899,849883.9862889352 -2900,849883.9862889352 -2901,849883.9862889352 -2902,849883.9862889352 -2903,849883.9862889352 -2904,849883.9862889352 -2905,849883.9862889352 -2906,849883.9862889352 -2907,849883.9862889352 -2908,849883.9862889352 -2909,849883.9862889352 -2910,849883.9862889352 -2911,849883.9862889352 -2912,849883.9862889352 -2913,849883.9862889352 -2914,849883.9862889352 -2915,849883.9862889352 -2916,849883.9862889352 -2917,849883.9862889352 -2918,849883.9862889352 -2919,849883.9862889352 -2920,849883.9862889352 -2921,849883.9862889352 -2922,849883.9862889352 -2923,849883.9862889352 -2924,516810.82077699463 -2925,562134.462210816 -2926,418918.09207871894 -2927,327389.1782274156 -2928,183819.20275726737 -2929,28072.966742336936 -2930,0.0 -2931,0.0 -2932,31118.465813433984 -2933,105163.23659143431 -2934,217473.63715953135 -2935,285526.10983804305 -2936,72405.38750984635 -2937,119862.38085746703 -2938,212004.25513369875 -2939,245531.19192483314 -2940,267919.88431813143 -2941,312957.1622365187 -2942,263632.8479832997 -2943,209146.9769385695 -2944,178444.0323450737 -2945,157446.3085232913 -2946,146068.25598899333 -2947,140945.05367654026 -2948,68826.69178075937 -2949,114138.69132813836 -2950,132927.14958275363 -2951,256061.69126598325 -2952,137009.37633252476 -2953,231235.73326090723 -2954,204082.09902693317 -2955,759083.6125021861 -2956,351095.92275477503 -2957,79537.9056045561 -2958,38281.11576594503 -2959,51428.13532054443 -2960,0.0 -2961,0.0 -2962,21507.834913713617 -2963,24505.999104163653 -2964,0.0 -2965,0.0 -2966,0.0 -2967,0.0 -2968,0.0 -2969,0.0 -2970,22223.416509389062 -2971,112017.36779177455 -2972,504188.63332850125 -2973,849883.9862889352 -2974,822439.6508581908 -2975,839351.6887045199 -2976,812265.3886969406 -2977,769372.5059505303 -2978,373572.2045465623 -2979,205547.52786747942 -2980,150121.78700567555 -2981,226195.1201677257 -2982,241554.11959998705 -2983,82852.86202594951 -2984,0.0 -2985,0.0 -2986,0.0 -2987,0.0 -2988,0.0 -2989,0.0 -2990,0.0 -2991,0.0 -2992,0.0 -2993,0.0 -2994,34419.57025179671 -2995,13534.716882830302 -2996,158520.47382331945 -2997,190115.56769941445 -2998,201664.34247770056 -2999,181975.3891843788 -3000,148845.1931515352 -3001,587734.2863812292 -3002,557989.9113141717 -3003,468894.8550989075 -3004,597641.3309626667 -3005,450094.6490224531 -3006,635880.1242132117 -3007,275735.7985243269 -3008,222574.09889057183 -3009,0.0 -3010,34256.82381538581 -3011,172724.72345976118 -3012,311227.04831614107 -3013,650868.5503832332 -3014,487235.35274819116 -3015,410559.0991146114 -3016,121458.30036131786 -3017,459680.2830137761 -3018,411481.184623795 -3019,192810.12604392722 -3020,370591.8086432769 -3021,400845.80363809655 -3022,95328.92591154443 -3023,77224.71728254738 -3024,57947.407562406755 -3025,449581.06834815495 -3026,425392.024619782 -3027,246044.35271062658 -3028,403667.91523645114 -3029,666300.64973292 -3030,322868.5892839993 -3031,216827.04226818145 -3032,63935.668571157155 -3033,36369.82604907747 -3034,26126.08612258908 -3035,30044.071810929883 -3036,26268.6129617687 -3037,23116.29133182937 -3038,50909.89257429524 -3039,71532.14389605951 -3040,98189.31819511716 -3041,751045.9143804401 -3042,306325.7305856828 -3043,614282.5848065601 -3044,97590.93579643281 -3045,525312.0856319105 -3046,849883.9862889352 -3047,643773.1529337369 -3048,356513.9711503385 -3049,775277.9481122178 -3050,701324.9910643048 -3051,734139.9416653998 -3052,849883.9862889352 -3053,462075.3142291424 -3054,590348.1516962239 -3055,275913.17856619443 -3056,130365.57548699244 -3057,53142.87253194889 -3058,50493.26136780823 -3059,107662.99513276183 -3060,264388.56110986415 -3061,254805.9989429334 -3062,242353.86362496778 -3063,272287.53754083475 -3064,404251.13917049684 -3065,504500.1330994441 -3066,314202.00863702083 -3067,352544.1185100719 -3068,113891.32440663925 -3069,154990.20315105026 -3070,660594.13010216 -3071,849883.9862889352 -3072,836191.1031418226 -3073,676800.2776882239 -3074,355106.1230626307 -3075,64052.25305940428 -3076,186784.2206689208 -3077,437144.4003677092 -3078,440928.6387461593 -3079,354491.91180957115 -3080,152578.2370190724 -3081,58884.31383152275 -3082,98268.68441531013 -3083,109409.05461285685 -3084,34461.92719438446 -3085,0.0 -3086,849883.9862889352 -3087,143776.49319695376 -3088,43935.060627982835 -3089,114725.03746301377 -3090,87336.99090906643 -3091,211436.7902847483 -3092,348651.9866440545 -3093,849883.9862889352 -3094,849883.9862889352 -3095,360920.39970656263 -3096,303831.183431041 -3097,138904.2807984291 -3098,561228.5563439763 -3099,849883.9862889352 -3100,202919.1864984321 -3101,82660.68991798627 -3102,145466.9386497505 -3103,176136.9560742099 -3104,149977.08772980495 -3105,157886.05024695635 -3106,85603.61289098799 -3107,147825.5751120826 -3108,21068.74171019727 -3109,162551.6665355338 -3110,85276.66818726317 -3111,194114.78546060732 -3112,14420.770787388255 -3113,111849.7109679801 -3114,32268.447197423648 -3115,312596.08089968766 -3116,0.0 -3117,0.0 -3118,167342.3754797063 -3119,27700.250428789004 -3120,9318.590685023748 -3121,48326.410216390126 -3122,81268.2907107569 -3123,2820.3464123651893 -3124,0.0 -3125,0.0 -3126,0.0 -3127,0.0 -3128,0.0 -3129,0.0 -3130,0.0 -3131,0.0 -3132,23139.917270960563 -3133,0.0 -3134,157466.29433227004 -3135,174776.1681359762 -3136,0.0 -3137,114058.37925616461 -3138,0.0 -3139,0.0 -3140,0.0 -3141,0.0 -3142,0.0 -3143,178182.32988572336 -3144,842605.026486042 -3145,849883.9862889352 -3146,686581.9095420704 -3147,595250.4978192083 -3148,631338.9764526853 -3149,374738.38389866246 -3150,191842.5963227335 -3151,118248.90645055613 -3152,7665.27595668561 -3153,29736.065098516472 -3154,108559.08581073476 -3155,165773.63379375398 -3156,141206.55161020384 -3157,150641.7750657246 -3158,143498.49750288745 -3159,134589.28383839017 -3160,120603.19526710045 -3161,126422.93799722513 -3162,202784.4000613731 -3163,226059.55463555243 -3164,705859.3943079275 -3165,849883.9862889352 -3166,849883.9862889352 -3167,849883.9862889352 -3168,849883.9862889352 -3169,849883.9862889352 -3170,675945.8834640972 -3171,747262.914623802 -3172,810847.0158234683 -3173,849883.9862889352 -3174,849883.9862889352 -3175,757889.7313183803 -3176,376445.9647793908 -3177,342780.0150708894 -3178,399319.8542090617 -3179,306213.61909267225 -3180,243997.38148374515 -3181,241591.0738813233 -3182,205293.88484791465 -3183,223483.35922238638 -3184,236939.16573041264 -3185,261406.55348290032 -3186,301266.5040293598 -3187,584696.750926072 -3188,627914.7851386126 -3189,849883.9862889352 -3190,849883.9862889352 -3191,849883.9862889352 -3192,849883.9862889352 -3193,849883.9862889352 -3194,849883.9862889352 -3195,849883.9862889352 -3196,849883.9862889352 -3197,849883.9862889352 -3198,648460.1239696861 -3199,536320.174699082 -3200,244220.95917991418 -3201,269846.78047898575 -3202,265789.92264442827 -3203,260662.2129469402 -3204,271153.5283341921 -3205,340426.47965074785 -3206,377396.95234877727 -3207,336641.8498219623 -3208,343200.20266149816 -3209,218061.3738538396 -3210,276589.0307006593 -3211,360719.62755122996 -3212,849883.9862889352 -3213,849883.9862889352 -3214,849883.9862889352 -3215,849883.9862889352 -3216,849883.9862889352 -3217,849883.9862889352 -3218,849883.9862889352 -3219,849883.9862889352 -3220,830821.022688003 -3221,794585.7134869568 -3222,297899.3646179002 -3223,666123.8254669555 -3224,0.0 -3225,0.0 -3226,0.0 -3227,21735.58307430069 -3228,169635.08107340414 -3229,147722.68719116744 -3230,88559.32922011503 -3231,55878.112916755046 -3232,52940.90554234763 -3233,849883.9862889352 -3234,47717.00237983418 -3235,219102.04842109507 -3236,702335.748026875 -3237,0.0 -3238,18536.62502034467 -3239,0.0 -3240,226620.68424415024 -3241,849883.9862889352 -3242,158059.99357296308 -3243,94199.13509386909 -3244,0.0 -3245,0.0 -3246,25088.984209019403 -3247,140536.46810730064 -3248,0.0 -3249,0.0 -3250,0.0 -3251,0.0 -3252,0.0 -3253,30686.095797966023 -3254,159595.03440874076 -3255,210071.41089807168 -3256,434775.31285432633 -3257,346934.9691276492 -3258,498698.6859130118 -3259,469556.0871153524 -3260,644716.6732505423 -3261,517809.52493588044 -3262,849883.9862889352 -3263,849883.9862889352 -3264,849883.9862889352 -3265,849883.9862889352 -3266,849883.9862889352 -3267,623131.6865949645 -3268,123416.74457227704 -3269,2392.4636997923385 -3270,0.0 -3271,16860.30934386716 -3272,33852.51332694653 -3273,0.0 -3274,14781.325400598445 -3275,0.0 -3276,0.0 -3277,5085.709945646287 -3278,49792.725838345934 -3279,24959.252392033064 -3280,0.0 -3281,439143.72648851195 -3282,248120.494614281 -3283,79483.65913591953 -3284,92797.63099547314 -3285,17788.031827792398 -3286,0.0 -3287,0.0 -3288,452212.1739977537 -3289,849883.9862889352 -3290,224214.4741571672 -3291,477746.3280639216 -3292,321726.7208948266 -3293,215524.97312287072 -3294,528539.3995054334 -3295,185503.68413884926 -3296,52576.52108864657 -3297,55584.56590014691 -3298,46114.69249497303 -3299,31946.441565092377 -3300,105596.23376083412 -3301,269328.30107103 -3302,329459.00653280027 -3303,733222.8087766838 -3304,849883.9862889352 -3305,849883.9862889352 -3306,849883.9862889352 -3307,101961.11868160042 -3308,413721.66404309624 -3309,198846.8221290144 -3310,849883.9862889352 -3311,849883.9862889352 -3312,849883.9862889352 -3313,849883.9862889352 -3314,505978.20119655196 -3315,849883.9862889352 -3316,503381.18146600935 -3317,812108.8112928233 -3318,849883.9862889352 -3319,555113.7418699557 -3320,357324.82906006183 -3321,359366.75021172897 -3322,416748.2468278751 -3323,570060.5934889164 -3324,751079.5426993389 -3325,827247.3650015899 -3326,814349.6099184128 -3327,849883.9862889352 -3328,849883.9862889352 -3329,849883.9862889352 -3330,849883.9862889352 -3331,414025.3809561364 -3332,453157.93616596714 -3333,230600.28966962738 -3334,112936.23037557788 -3335,558175.7068861166 -3336,579735.603942171 -3337,497480.32405648 -3338,234221.16631408967 -3339,394502.7403956734 -3340,368418.2471212736 -3341,534782.9142323246 -3342,325326.0701922954 -3343,167571.17411590694 -3344,65447.75593269263 -3345,79557.0409202742 -3346,279769.39965067414 -3347,542433.5083746838 -3348,532636.4529989905 -3349,408289.96548385144 -3350,603381.4380036704 -3351,849883.9862889352 -3352,601748.3102307711 -3353,820036.3300940995 -3354,524353.866141467 -3355,472645.2848962618 -3356,673994.6964917402 -3357,849883.9862889352 -3358,849883.9862889352 -3359,444038.8642497795 -3360,849883.9862889352 -3361,849883.9862889352 -3362,737524.7748237867 -3363,849883.9862889352 -3364,849883.9862889352 -3365,849883.9862889352 -3366,849883.9862889352 -3367,446631.11403512384 -3368,613655.7583307337 -3369,217968.34244870092 -3370,199698.30463766548 -3371,132638.5618757161 -3372,113736.71512363851 -3373,29469.226056603424 -3374,0.0 -3375,0.0 -3376,83634.94348275557 -3377,83498.49619351393 -3378,38480.70938147872 -3379,59545.30900715818 -3380,29389.65580831995 -3381,0.0 -3382,58316.06069194155 -3383,253432.31354493764 -3384,452781.1542999592 -3385,849883.9862889352 -3386,290122.3167720587 -3387,699786.3609627067 -3388,524421.5343055807 -3389,665926.6451903618 -3390,497514.4247273563 -3391,281999.4297566679 -3392,104314.69941568682 -3393,139924.30169468682 -3394,217045.70451642212 -3395,338696.3585182436 -3396,437246.4767397071 -3397,492552.46162264753 -3398,324164.00206017 -3399,183059.4039693827 -3400,532521.1785746352 -3401,294147.3393509852 -3402,442495.7484281922 -3403,223500.5486610945 -3404,254005.3271966657 -3405,849883.9862889352 -3406,849883.9862889352 -3407,849883.9862889352 -3408,849883.9862889352 -3409,273946.1163752992 -3410,349107.2066105794 -3411,539272.0282016845 -3412,631662.9553985671 -3413,194406.0380750928 -3414,307080.0233980535 -3415,335404.02871749393 -3416,293812.69628021243 -3417,369720.74186772853 -3418,118022.58606935876 -3419,49762.418125272954 -3420,14861.848053268435 -3421,31528.419462155343 -3422,44034.645091831015 -3423,41440.600477290645 -3424,849883.9862889352 -3425,647595.3163269812 -3426,744799.7053116171 -3427,783359.311693976 -3428,849883.9862889352 -3429,849883.9862889352 -3430,849883.9862889352 -3431,348638.565522561 -3432,376331.25013345655 -3433,109628.871635758 -3434,116639.02378625571 -3435,396566.9598537707 -3436,163064.04898161424 -3437,101024.6433336421 -3438,84474.75758091027 -3439,84326.23582389922 -3440,0.0 -3441,158473.83990383998 -3442,86877.47985119892 -3443,274293.88111624576 -3444,264942.41832839575 -3445,778494.7266295414 -3446,820080.7483436322 -3447,699545.8743445469 -3448,849883.9862889352 -3449,849883.9862889352 -3450,849883.9862889352 -3451,849883.9862889352 -3452,849883.9862889352 -3453,849883.9862889352 -3454,849883.9862889352 -3455,760602.4951125882 -3456,621857.5530809757 -3457,215808.2152108768 -3458,501345.70665965066 -3459,455671.76309847337 -3460,558325.5836018345 -3461,284380.53108728526 -3462,374485.39379051514 -3463,121762.20678226097 -3464,199755.93635558986 -3465,119172.22533587288 -3466,155456.39124771944 -3467,201715.9783941351 -3468,105812.23803139507 -3469,159902.61375782572 -3470,277637.707020734 -3471,306140.26834314095 -3472,307098.1055501264 -3473,512252.2717318473 -3474,562845.6181389991 -3475,98091.86008409162 -3476,0.0 -3477,91151.2434372043 -3478,0.0 -3479,59138.46868777779 -3480,795009.8825660084 -3481,849883.9862889352 -3482,849883.9862889352 -3483,749433.9726271884 -3484,849883.9862889352 -3485,639783.2372523686 -3486,830561.4576005611 -3487,639799.1039868655 -3488,267943.6860197568 -3489,250227.4366902009 -3490,262653.2989293541 -3491,348787.6135691716 -3492,251832.22955883507 -3493,210565.73445216654 -3494,284638.5940362457 -3495,488293.3914537482 -3496,546224.8569731439 -3497,563024.2521899476 -3498,586277.7551145069 -3499,849883.9862889352 -3500,849883.9862889352 -3501,849883.9862889352 -3502,849883.9862889352 -3503,849883.9862889352 -3504,849883.9862889352 -3505,849883.9862889352 -3506,849883.9862889352 -3507,849883.9862889352 -3508,849883.9862889352 -3509,849883.9862889352 -3510,849883.9862889352 -3511,849883.9862889352 -3512,250263.39285903767 -3513,127753.58375903664 -3514,322581.69093642884 -3515,350926.0216630514 -3516,538773.7341352478 -3517,602155.4166868001 -3518,849883.9862889352 -3519,842146.6770749756 -3520,849883.9862889352 -3521,680187.2394519167 -3522,353224.4838183832 -3523,149509.76830463877 -3524,376960.0474559867 -3525,849883.9862889352 -3526,849883.9862889352 -3527,849883.9862889352 -3528,22865.989344795096 -3529,835510.1109470202 -3530,481798.96443626966 -3531,849883.9862889352 -3532,488556.2163761271 -3533,849883.9862889352 -3534,728468.0725906043 -3535,221532.65122597647 -3536,109285.2561543184 -3537,0.0 -3538,28038.96730944731 -3539,117864.50456472168 -3540,225031.60292636688 -3541,353174.68986027275 -3542,604352.195378595 -3543,849883.9862889352 -3544,849883.9862889352 -3545,849883.9862889352 -3546,849883.9862889352 -3547,849883.9862889352 -3548,849883.9862889352 -3549,849883.9862889352 -3550,849883.9862889352 -3551,849883.9862889352 -3552,849883.9862889352 -3553,849883.9862889352 -3554,849883.9862889352 -3555,849883.9862889352 -3556,849883.9862889352 -3557,849883.9862889352 -3558,849883.9862889352 -3559,849883.9862889352 -3560,409423.1916732539 -3561,295115.0716615491 -3562,443891.1621087834 -3563,585935.7955032806 -3564,607238.7545265957 -3565,638168.4260706208 -3566,440317.98262350156 -3567,849883.9862889352 -3568,849883.9862889352 -3569,849883.9862889352 -3570,849883.9862889352 -3571,849883.9862889352 -3572,849883.9862889352 -3573,849883.9862889352 -3574,629235.9960342561 -3575,849883.9862889352 -3576,813813.0616709804 -3577,265439.5871608675 -3578,459082.2695962387 -3579,309160.2256781327 -3580,143170.04536045337 -3581,491844.46272612025 -3582,394999.7911819756 -3583,362431.37310944765 -3584,32413.460888452304 -3585,0.0 -3586,0.0 -3587,97473.5552373338 -3588,448982.94320243265 -3589,520658.60558369954 -3590,490254.6823630176 -3591,503500.70132168004 -3592,849883.9862889352 -3593,638624.7028073798 -3594,849883.9862889352 -3595,514929.31255246507 -3596,522978.1160226621 -3597,849883.9862889352 -3598,849883.9862889352 -3599,849883.9862889352 -3600,509163.2824886577 -3601,635082.2291987431 -3602,630002.3603173669 -3603,99842.27731806564 -3604,62891.84898924691 -3605,229848.48014418795 -3606,152721.37627968492 -3607,31625.372665283394 -3608,28234.06071910799 -3609,0.0 -3610,0.0 -3611,0.0 -3612,0.0 -3613,58906.66032817897 -3614,240375.51294998516 -3615,438433.6206044118 -3616,310116.9266417108 -3617,383556.2467932733 -3618,815679.9873253602 -3619,672733.3163141278 -3620,319217.14971158124 -3621,489711.28220828733 -3622,849883.9862889352 -3623,849883.9862889352 -3624,849883.9862889352 -3625,849883.9862889352 -3626,849883.9862889352 -3627,849883.9862889352 -3628,849883.9862889352 -3629,849883.9862889352 -3630,849883.9862889352 -3631,820237.2724609167 -3632,745163.7882283945 -3633,751780.1319454652 -3634,526680.1543925949 -3635,405108.6751705846 -3636,299634.15832581295 -3637,226718.35537239187 -3638,162924.7297243364 -3639,94597.57141988607 -3640,111690.47854939444 -3641,53570.61861087636 -3642,49901.75755199656 -3643,23112.65650643976 -3644,184338.87730347432 -3645,201492.0562467511 -3646,442686.6940996629 -3647,777892.6847854751 -3648,849883.9862889352 -3649,849883.9862889352 -3650,849883.9862889352 -3651,819660.5319743666 -3652,849883.9862889352 -3653,829673.5273272832 -3654,844804.1610539202 -3655,388455.47468827845 -3656,175207.52531195965 -3657,275578.2417649276 -3658,212605.22764844526 -3659,250386.34890634503 -3660,210503.4377733874 -3661,224054.58994893046 -3662,294789.6425101794 -3663,369029.1836057038 -3664,487149.99299687485 -3665,463951.1403054823 -3666,573485.8266681723 -3667,519814.0534655737 -3668,339556.9091123315 -3669,489188.9605183697 -3670,405000.4463528569 -3671,414114.4386682667 -3672,849883.9862889352 -3673,849883.9862889352 -3674,849883.9862889352 -3675,651556.7898998334 -3676,849883.9862889352 -3677,849883.9862889352 -3678,846395.3491222466 -3679,340517.1964708221 -3680,90565.48325619535 -3681,183095.01162878072 -3682,299748.0406253315 -3683,316446.7182959126 -3684,488772.362120865 -3685,401798.912841685 -3686,512179.67438181845 -3687,566875.1408134195 -3688,701957.9842391222 -3689,836812.7944846501 -3690,762984.9597090733 -3691,562485.4428337138 -3692,473612.542660059 -3693,0.0 -3694,105532.09909957586 -3695,0.0 -3696,0.0 -3697,98082.97221342345 -3698,269866.02190086275 -3699,0.0 -3700,344077.5414508977 -3701,539365.237861221 -3702,685366.638087532 -3703,290338.7507175965 -3704,55605.48288143069 -3705,0.0 -3706,0.0 -3707,0.0 -3708,0.0 -3709,0.0 -3710,0.0 -3711,93915.98697138394 -3712,59137.2764657233 -3713,66549.63080857864 -3714,216749.57673413135 -3715,141822.0404539817 -3716,65290.859511706454 -3717,249623.51746649918 -3718,708386.009562742 -3719,184460.01709359567 -3720,849883.9862889352 -3721,758147.3376346966 -3722,525335.0772008849 -3723,849883.9862889352 -3724,46416.44259849685 -3725,323743.4688753911 -3726,849883.9862889352 -3727,662586.2626907164 -3728,849883.9862889352 -3729,849883.9862889352 -3730,849883.9862889352 -3731,849883.9862889352 -3732,849883.9862889352 -3733,731239.4621428603 -3734,606687.1337366425 -3735,341965.68056906917 -3736,362854.6665552756 -3737,286584.83372087806 -3738,0.0 -3739,686031.5542886603 -3740,849883.9862889352 -3741,228098.80864242112 -3742,723090.2501818119 -3743,849883.9862889352 -3744,0.0 -3745,34539.27798803882 -3746,383142.0615755114 -3747,124045.45802679793 -3748,385246.4182675625 -3749,376945.08957787894 -3750,167698.6971770551 -3751,44083.32363363272 -3752,201640.33544816595 -3753,135923.8010559734 -3754,24991.579986986966 -3755,0.0 -3756,0.0 -3757,0.0 -3758,0.0 -3759,0.0 -3760,0.0 -3761,18352.088723510427 -3762,9588.745776172273 -3763,0.0 -3764,0.0 -3765,36506.11742057893 -3766,129656.16690079319 -3767,265427.69947806647 -3768,172832.24387173424 -3769,0.0 -3770,181688.77114050637 -3771,236756.2147637499 -3772,225054.35928974702 -3773,220284.07063967796 -3774,282851.25134558475 -3775,258243.28928603776 -3776,135731.04152825597 -3777,85454.29102624451 -3778,59287.55737101745 -3779,86395.18928530622 -3780,158216.50183867308 -3781,157118.23734829895 -3782,230399.97043098038 -3783,518054.53786685894 -3784,416325.82397718553 -3785,382426.1824960457 -3786,583281.9564239631 -3787,639997.1512115668 -3788,669881.5370273645 -3789,849883.9862889352 -3790,174146.5375616215 -3791,365893.86775132705 -3792,839814.3376121152 -3793,819895.9338824166 -3794,484995.66375780123 -3795,481271.48600906273 -3796,236065.88391684188 -3797,508932.38335494394 -3798,772445.7932241312 -3799,663488.5989307625 -3800,427500.4619083974 -3801,273302.3750125321 -3802,234959.53732023752 -3803,344806.54420829215 -3804,262792.6409482023 -3805,241791.12677317153 -3806,289638.70504619024 -3807,410896.1399028859 -3808,599067.4151335708 -3809,569404.5777573023 -3810,311429.5079211586 -3811,96642.89391352127 -3812,26079.821087143548 -3813,142692.61020695342 -3814,0.0 -3815,0.0 -3816,0.0 -3817,653225.7164414852 -3818,835742.3804974101 -3819,647503.4164164423 -3820,449379.4393500026 -3821,297092.4064704692 -3822,161124.42042601932 -3823,123912.9202460197 -3824,77950.47567056467 -3825,140685.23497077613 -3826,94027.27686352354 -3827,140061.7680705214 -3828,157228.14314124186 -3829,185747.88536539653 -3830,199208.39138400488 -3831,171241.39231810695 -3832,120420.77233981687 -3833,144521.5897058536 -3834,131256.70795803488 -3835,85507.33400797486 -3836,148892.54054513006 -3837,489584.2327900075 -3838,779417.3955649409 -3839,849883.9862889352 -3840,849883.9862889352 -3841,849883.9862889352 -3842,849883.9862889352 -3843,659791.4156441243 -3844,849883.9862889352 -3845,794051.6817728928 -3846,743880.8809261128 -3847,651807.4015508005 -3848,221570.03984950078 -3849,259919.23323026192 -3850,239345.70577364482 -3851,377975.5094233833 -3852,439716.4899506119 -3853,439847.12689952686 -3854,464701.9144318756 -3855,513162.4691642112 -3856,652804.1796844185 -3857,849883.9862889352 -3858,849883.9862889352 -3859,849883.9862889352 -3860,849883.9862889352 -3861,849883.9862889352 -3862,340972.40052806097 -3863,720908.9971054795 -3864,218200.66530871307 -3865,433122.1128202644 -3866,365709.0390601492 -3867,645700.6596459686 -3868,782446.139766258 -3869,849883.9862889352 -3870,398702.10067873413 -3871,212584.12679846422 -3872,135277.45810900323 -3873,293074.97842006886 -3874,431843.7756091256 -3875,540536.7845495192 -3876,386862.6788757771 -3877,353910.1149141463 -3878,403001.3439841564 -3879,480256.3875393939 -3880,461002.11196457554 -3881,613235.6494675913 -3882,723355.8311667881 -3883,711474.2743233959 -3884,849883.9862889352 -3885,849883.9862889352 -3886,607465.9668690753 -3887,616021.62699803 -3888,849883.9862889352 -3889,849883.9862889352 -3890,849883.9862889352 -3891,849883.9862889352 -3892,421592.8404384303 -3893,548867.0561517039 -3894,679827.4287815045 -3895,496125.3600290721 -3896,281801.34320307546 -3897,184426.04956731127 -3898,126760.7584001672 -3899,174630.5507226034 -3900,105215.18261878777 -3901,94123.50047613292 -3902,99007.9616714714 -3903,72251.81894973037 -3904,161848.01954113037 -3905,168622.2117641839 -3906,374805.56545430276 -3907,381820.54163899523 -3908,458100.25475969823 -3909,849883.9862889352 -3910,849883.9862889352 -3911,849883.9862889352 -3912,849883.9862889352 -3913,849883.9862889352 -3914,849883.9862889352 -3915,849883.9862889352 -3916,849883.9862889352 -3917,608207.6461572845 -3918,766720.6069607759 -3919,663429.8813025056 -3920,275216.45826699765 -3921,191222.8665421918 -3922,149276.10653986502 -3923,100971.36721637427 -3924,133771.99628474357 -3925,159938.3725788489 -3926,181501.95181669536 -3927,237842.05261758374 -3928,410449.0888762385 -3929,350647.1161045326 -3930,323818.2094471019 -3931,506544.4301222315 -3932,376660.9584438989 -3933,630677.9220148202 -3934,849883.9862889352 -3935,789993.0498348457 -3936,839093.7290989679 -3937,849883.9862889352 -3938,849883.9862889352 -3939,849883.9862889352 -3940,465386.5676464622 -3941,538800.135540523 -3942,849883.9862889352 -3943,223938.2754824477 -3944,211619.90958093363 -3945,87019.26894996931 -3946,145244.21354803513 -3947,131945.62677349334 -3948,195555.71294084558 -3949,160136.57767929565 -3950,236769.23250304634 -3951,238933.9759605336 -3952,292607.4856092285 -3953,849883.9862889352 -3954,849883.9862889352 -3955,571458.2056266225 -3956,427262.3714672041 -3957,248501.317168992 -3958,95241.34147843046 -3959,0.0 -3960,0.0 -3961,403609.91985245486 -3962,336943.85255129996 -3963,417814.0049426912 -3964,370673.9119935119 -3965,568667.2660400791 -3966,301051.87795878935 -3967,174780.426256045 -3968,150956.24446944764 -3969,176397.20425396823 -3970,182394.76305454626 -3971,153044.09920383414 -3972,103884.72060760466 -3973,95949.0292215286 -3974,44875.07698104656 -3975,66307.9750610994 -3976,97341.43471062336 -3977,155548.97534176926 -3978,168840.46317263707 -3979,234111.31136654608 -3980,496493.6717422399 -3981,521442.1767146219 -3982,722723.121888777 -3983,600332.0588689824 -3984,580089.7406793461 -3985,221110.98019340084 -3986,849883.9862889352 -3987,849883.9862889352 -3988,618062.3846184176 -3989,21710.22431509064 -3990,88245.46757036529 -3991,310411.6157998184 -3992,540169.1224140131 -3993,372317.98942094116 -3994,363868.03483008145 -3995,252391.23921939207 -3996,119724.78063702096 -3997,69823.61983702886 -3998,132067.35161479848 -3999,36611.41927801741 -4000,50316.736626864214 -4001,849883.9862889352 -4002,849883.9862889352 -4003,578655.5523832176 -4004,849883.9862889352 -4005,523256.36217627215 -4006,849883.9862889352 -4007,849883.9862889352 -4008,849883.9862889352 -4009,383643.3554105198 -4010,405986.99962763663 -4011,552111.9866304938 -4012,413131.2496016406 -4013,437183.65666748706 -4014,41531.84907245306 -4015,58907.76570669123 -4016,0.0 -4017,29096.431248175977 -4018,28748.409956706608 -4019,17573.627625773872 -4020,0.0 -4021,0.0 -4022,0.0 -4023,55235.522780003754 -4024,810362.537795105 -4025,849883.9862889352 -4026,618558.3513168679 -4027,849883.9862889352 -4028,849883.9862889352 -4029,479945.2458544275 -4030,567162.8593142799 -4031,111031.03432467376 -4032,740889.7838963062 -4033,323890.4807322998 -4034,299537.7991578731 -4035,158440.10189158784 -4036,0.0 -4037,49494.69147703557 -4038,849883.9862889352 -4039,74182.5757432113 -4040,62842.9393814321 -4041,0.0 -4042,0.0 -4043,0.0 -4044,0.0 -4045,0.0 -4046,0.0 -4047,41121.38279811007 -4048,94870.66976650737 -4049,180401.26766606088 -4050,252907.40516979323 -4051,298714.8758577619 -4052,402211.4686009341 -4053,421690.2692327402 -4054,806259.9363927974 -4055,849883.9862889352 -4056,849883.9862889352 -4057,849883.9862889352 -4058,849883.9862889352 -4059,849883.9862889352 -4060,849883.9862889352 -4061,679152.6613275359 -4062,302218.9463011757 -4063,848383.2439768369 -4064,849883.9862889352 -4065,849883.9862889352 -4066,849883.9862889352 -4067,849883.9862889352 -4068,849883.9862889352 -4069,808978.7674293222 -4070,824655.9339945598 -4071,818959.734003653 -4072,849883.9862889352 -4073,849883.9862889352 -4074,172361.7340049085 -4075,332058.12037793844 -4076,499849.3683915605 -4077,849883.9862889352 -4078,0.0 -4079,216959.25495241195 -4080,242213.29609062374 -4081,849883.9862889352 -4082,538523.0462504303 -4083,849883.9862889352 -4084,551776.4154239271 -4085,808503.4257391954 -4086,404111.6000378535 -4087,849883.9862889352 -4088,849883.9862889352 -4089,849883.9862889352 -4090,724279.288649366 -4091,659858.9280076488 -4092,849883.9862889352 -4093,621052.3547753096 -4094,652717.4779709264 -4095,720338.5044443575 -4096,849883.9862889352 -4097,849883.9862889352 -4098,849883.9862889352 -4099,849883.9862889352 -4100,446337.2861400289 -4101,849883.9862889352 -4102,849883.9862889352 -4103,849883.9862889352 -4104,849883.9862889352 -4105,849883.9862889352 -4106,849883.9862889352 -4107,849883.9862889352 -4108,104514.97130542825 -4109,21607.001398433735 -4110,199413.28773379014 -4111,519365.8669449194 -4112,159553.4710367128 -4113,76049.9044089678 -4114,198478.21528297043 -4115,631897.2965950138 -4116,381988.5515553653 -4117,386287.72654665966 -4118,305027.9312596007 -4119,315810.15010019427 -4120,486006.3226129183 -4121,464240.2095986776 -4122,849883.9862889352 -4123,849883.9862889352 -4124,849883.9862889352 -4125,849883.9862889352 -4126,849883.9862889352 -4127,849883.9862889352 -4128,849883.9862889352 -4129,849883.9862889352 -4130,849883.9862889352 -4131,849883.9862889352 -4132,849883.9862889352 -4133,849883.9862889352 -4134,849883.9862889352 -4135,448687.7623251179 -4136,849883.9862889352 -4137,397326.1606147587 -4138,559375.3183532823 -4139,849883.9862889352 -4140,849883.9862889352 -4141,659954.8459177831 -4142,511777.42613244226 -4143,383307.5641274744 -4144,562516.1056097903 -4145,696143.1265103455 -4146,66474.07290229862 -4147,158637.26982151376 -4148,849883.9862889352 -4149,849883.9862889352 -4150,849883.9862889352 -4151,374059.9729886011 -4152,696965.9243693112 -4153,849883.9862889352 -4154,624339.0411852516 -4155,247045.94682160096 -4156,849883.9862889352 -4157,754620.2493969966 -4158,617652.1319307713 -4159,523360.608450039 -4160,297241.7656112982 -4161,279896.2334282476 -4162,325859.12323482294 -4163,251670.00604880575 -4164,162030.7037616984 -4165,66102.90456777778 -4166,70170.93024739735 -4167,319022.47171168186 -4168,378877.33469303447 -4169,849883.9862889352 -4170,849883.9862889352 -4171,849883.9862889352 -4172,849883.9862889352 -4173,849883.9862889352 -4174,421189.9432873818 -4175,849883.9862889352 -4176,849883.9862889352 -4177,296061.64903358044 -4178,623306.7968625155 -4179,594980.2938060596 -4180,653834.7816864832 -4181,675484.3918223793 -4182,377642.8434533044 -4183,347427.81591437024 -4184,849883.9862889352 -4185,694557.7775905809 -4186,479289.3945789261 -4187,558998.9131616123 -4188,667259.0884737828 -4189,638801.5272155151 -4190,603362.769662702 -4191,542233.8699668302 -4192,608550.4281892693 -4193,737902.6328852834 -4194,849883.9862889352 -4195,405932.2609902371 -4196,849883.9862889352 -4197,849883.9862889352 -4198,849883.9862889352 -4199,849883.9862889352 -4200,849883.9862889352 -4201,849883.9862889352 -4202,849883.9862889352 -4203,849883.9862889352 -4204,849883.9862889352 -4205,849883.9862889352 -4206,498442.4593703736 -4207,830378.0620402734 -4208,456448.36146990047 -4209,107707.73320877919 -4210,167060.8126092287 -4211,175618.90764958254 -4212,160415.04715750559 -4213,161652.97494038733 -4214,201332.428150759 -4215,693249.2267226563 -4216,330137.5310592753 -4217,460816.9494359632 -4218,340796.4034924426 -4219,205618.22732433947 -4220,261192.07297639083 -4221,369431.06323956477 -4222,545532.4594156581 -4223,102627.23219075649 -4224,277985.10068700765 -4225,849883.9862889352 -4226,849883.9862889352 -4227,849883.9862889352 -4228,445403.3943747311 -4229,264733.0283004378 -4230,540319.379657834 -4231,153544.1496708208 -4232,0.0 -4233,0.0 -4234,0.0 -4235,0.0 -4236,0.0 -4237,24739.622881359446 -4238,2403.022817374177 -4239,0.0 -4240,34765.63415855864 -4241,4030.221622430957 -4242,234225.34050833344 -4243,206508.00965640132 -4244,272855.6532015074 -4245,458740.8096283778 -4246,704750.6354401496 -4247,727813.475990158 -4248,849883.9862889352 -4249,849883.9862889352 -4250,849883.9862889352 -4251,849883.9862889352 -4252,849883.9862889352 -4253,606189.508149787 -4254,702814.4988890964 -4255,406023.09132530936 -4256,82198.83224895416 -4257,28866.88045249168 -4258,33924.49164484418 -4259,43224.47821453714 -4260,59952.95401777365 -4261,184870.26911036117 -4262,180804.05802489043 -4263,217276.4947030103 -4264,191095.5647404828 -4265,147601.7683457745 -4266,179560.92046921796 -4267,194051.38817073422 -4268,368390.55456213816 -4269,333829.99799490307 -4270,849883.9862889352 -4271,849883.9862889352 -4272,849883.9862889352 -4273,476417.7338442028 -4274,849883.9862889352 -4275,849883.9862889352 -4276,356344.5150851673 -4277,371634.21505418204 -4278,849883.9862889352 -4279,93627.03142674734 -4280,25805.721334429767 -4281,54962.58035911452 -4282,17445.496081259524 -4283,0.0 -4284,0.0 -4285,0.0 -4286,26854.38463486259 -4287,208.01152782354836 -4288,36350.27381062393 -4289,30145.017503554718 -4290,0.0 -4291,86523.51304014238 -4292,249405.4754978821 -4293,642991.2562685881 -4294,0.0 -4295,219938.76445485558 -4296,77317.7263412825 -4297,198692.89817085234 -4298,93338.3733224258 -4299,63115.62804474962 -4300,849883.9862889352 -4301,100836.31788537306 -4302,849883.9862889352 -4303,849883.9862889352 -4304,448365.05490437703 -4305,232809.69508873214 -4306,454686.21461873926 -4307,198615.54655214632 -4308,225952.5916627066 -4309,187648.01340217397 -4310,30796.408276236652 -4311,24607.187721353992 -4312,2630.168258573021 -4313,0.0 -4314,22754.218779523806 -4315,849883.9862889352 -4316,849883.9862889352 -4317,849883.9862889352 -4318,410739.2610795738 -4319,325501.0818202327 -4320,207730.1284553997 -4321,164397.54195295725 -4322,0.0 -4323,0.0 -4324,0.0 -4325,94187.25437786209 -4326,211852.6329250169 -4327,158560.8315986399 -4328,68611.2813339863 -4329,44218.75536111412 -4330,31516.88900455686 -4331,26519.32894844074 -4332,0.0 -4333,15750.441763603178 -4334,0.0 -4335,0.0 -4336,38276.722277492016 -4337,129286.14168673231 -4338,349410.8176708479 -4339,355444.74540368345 -4340,320066.92718802154 -4341,0.0 -4342,306318.5493325039 -4343,69779.82363482474 -4344,0.0 -4345,152316.05153069165 -4346,0.0 -4347,0.0 -4348,0.0 -4349,0.0 -4350,0.0 -4351,0.0 -4352,0.0 -4353,0.0 -4354,24518.75824850884 -4355,48120.37906691864 -4356,27883.077617972038 -4357,78190.67260399066 -4358,0.0 -4359,0.0 -4360,0.0 -4361,143396.71571429627 -4362,0.0 -4363,66507.7800197447 -4364,50758.447678844655 -4365,0.0 -4366,0.0 -4367,0.0 -4368,38498.885317632325 -4369,162143.09744248298 -4370,223265.7275937076 -4371,249293.85120830266 -4372,210968.19579032948 -4373,234358.81486329073 -4374,427170.21302744345 -4375,157245.87859003904 -4376,20927.559518527058 -4377,59795.5071016715 -4378,64558.180471770465 -4379,35042.803878894294 -4380,0.0 -4381,0.0 -4382,4676.507754607354 -4383,103350.07262439611 -4384,60245.08696939687 -4385,46809.287338798305 -4386,53223.43707999077 -4387,20035.036091146263 -4388,13675.171755849413 -4389,158622.38132669462 -4390,279074.7037475899 -4391,119252.21714804907 -4392,559932.8468753588 -4393,825598.2109607342 -4394,470703.65589527134 -4395,96221.20874954811 -4396,293685.9189327782 -4397,124926.90327814336 -4398,153130.80223948348 -4399,0.0 -4400,0.0 -4401,32462.446439218216 -4402,103673.92492345496 -4403,12211.729318791067 -4404,85633.3988923007 -4405,164106.2212307208 -4406,227458.0182486746 -4407,222543.951230907 -4408,253214.79560381616 -4409,849883.9862889352 -4410,849883.9862889352 -4411,849883.9862889352 -4412,502618.4491758519 -4413,2713.5148335803947 -4414,849883.9862889352 -4415,342445.66243673157 -4416,778894.6645273608 -4417,684975.2125997875 -4418,845462.4164354902 -4419,571129.820003229 -4420,387094.72627662733 -4421,601587.0436746897 -4422,358307.974209683 -4423,138890.2658360042 -4424,374924.8543531888 -4425,403523.01424288313 -4426,648115.9285652789 -4427,609218.525497722 -4428,492000.0774982537 -4429,354159.70854983636 -4430,343598.2011349284 -4431,276529.05556577025 -4432,106929.86378066262 -4433,221479.003962943 -4434,269262.44514180825 -4435,309510.6858891359 -4436,295282.792659526 -4437,577999.416532825 -4438,754024.3210373585 -4439,695516.1135632389 -4440,796223.8640709792 -4441,305928.23081115464 -4442,392152.34294005693 -4443,334015.5412767353 -4444,326833.909235901 -4445,351780.0844752646 -4446,262183.26569079957 -4447,469694.45345846214 -4448,238481.95546143837 -4449,372279.4074539523 -4450,296305.6063189295 -4451,539736.5500082878 -4452,608560.9249443132 -4453,661652.8513489808 -4454,659668.4757401176 -4455,708940.3307422105 -4456,814673.0537198435 -4457,791048.4604631504 -4458,829583.4913777743 -4459,849883.9862889352 -4460,591668.68263129 -4461,0.0 -4462,59592.63232430205 -4463,698939.6518520503 -4464,620104.2121513638 -4465,708499.773624355 -4466,849883.9862889352 -4467,849883.9862889352 -4468,849883.9862889352 -4469,803622.3081423732 -4470,257687.80365538938 -4471,842527.7846963893 -4472,593440.4134765844 -4473,553934.1059497948 -4474,753377.1468251545 -4475,696246.4303235696 -4476,611512.1234952912 -4477,599765.1220264144 -4478,617963.988264849 -4479,604864.7981436714 -4480,601894.8897156294 -4481,849883.9862889352 -4482,729082.7070014385 -4483,717424.4540780609 -4484,849883.9862889352 -4485,849883.9862889352 -4486,849883.9862889352 -4487,849883.9862889352 -4488,849883.9862889352 -4489,628972.7587611314 -4490,176008.22445640212 -4491,306807.49256582774 -4492,106466.29488069307 -4493,169407.25184563256 -4494,35160.822640051025 -4495,194269.15552062422 -4496,159383.5324395618 -4497,210652.1341530703 -4498,112092.81355243316 -4499,66777.97124297704 -4500,148934.82103204296 -4501,169003.9196763351 -4502,175226.72832817875 -4503,253893.24441937354 -4504,531036.1694240912 -4505,289202.6565617334 -4506,436385.83284408634 -4507,383109.46639901126 -4508,391081.07357872213 -4509,396834.26438940904 -4510,596641.5839694729 -4511,849883.9862889352 -4512,821428.3791424638 -4513,830923.5007548013 -4514,637581.3134305795 -4515,251275.94620917292 -4516,248807.6548009353 -4517,234577.56398626327 -4518,381474.241162267 -4519,158071.34814023573 -4520,40559.14858726518 -4521,92393.84194449996 -4522,90564.50213129053 -4523,112391.45493761932 -4524,86085.1355767402 -4525,103685.87444282323 -4526,101964.1189136551 -4527,70660.16503576314 -4528,216101.15817250533 -4529,263714.36131351383 -4530,255221.33856553005 -4531,343170.107814744 -4532,370165.0261528154 -4533,483227.29334796884 -4534,527188.2559689484 -4535,719415.5714462945 -4536,849883.9862889352 -4537,849883.9862889352 -4538,849883.9862889352 -4539,849883.9862889352 -4540,849883.9862889352 -4541,620226.8131243362 -4542,209882.19692465 -4543,450504.2795833167 -4544,282770.757465116 -4545,213193.52800442136 -4546,145008.88873616882 -4547,97432.87266249594 -4548,79639.30512770366 -4549,63049.85615008001 -4550,48186.32716186944 -4551,62868.92619084739 -4552,139484.40046872332 -4553,98870.31323456098 -4554,118745.73142497372 -4555,252225.5181665617 -4556,316785.67474807624 -4557,302761.7991465521 -4558,640717.2268051989 -4559,613534.9459556609 -4560,836365.5120916333 -4561,849883.9862889352 -4562,849883.9862889352 -4563,849883.9862889352 -4564,299072.86019563896 -4565,203285.84401750664 -4566,274553.3474974139 -4567,231532.0738655751 -4568,66237.019007856 -4569,51277.58044907646 -4570,7741.970005569089 -4571,0.0 -4572,0.0 -4573,10900.322225324591 -4574,39303.443679434786 -4575,60922.99272143636 -4576,98178.71701199154 -4577,168626.48521450392 -4578,112882.8262745707 -4579,154112.82419999898 -4580,293250.25555541815 -4581,647796.417926588 -4582,692013.845549986 -4583,849883.9862889352 -4584,581000.2361615273 -4585,465184.8135583768 -4586,557039.3332590851 -4587,335969.62439556903 -4588,493851.3959551283 -4589,451160.1400955715 -4590,320341.43736858235 -4591,260480.5272764328 -4592,45205.98824020506 -4593,48695.9197595111 -4594,16268.811893023447 -4595,29997.523383578067 -4596,55181.661134567716 -4597,62638.7873253504 -4598,150010.4228371222 -4599,97520.57723660574 -4600,169123.6739940112 -4601,137237.92930433218 -4602,158728.88796346236 -4603,363222.7230911215 -4604,594741.42135946 -4605,618889.2927945241 -4606,766498.4879257367 -4607,849883.9862889352 -4608,849883.9862889352 -4609,849883.9862889352 -4610,849883.9862889352 -4611,849883.9862889352 -4612,561074.5251448826 -4613,517517.131355056 -4614,324226.65221976244 -4615,355535.2764922573 -4616,155862.76042204807 -4617,183300.82187015383 -4618,181975.05655505156 -4619,93850.1207857838 -4620,139056.47361793733 -4621,87807.66032081305 -4622,103894.28606952388 -4623,109200.92434035879 -4624,247625.71475406925 -4625,272306.3020021254 -4626,263862.6212229135 -4627,379237.29533914436 -4628,317911.23708445736 -4629,421520.8666390758 -4630,849883.9862889352 -4631,848974.7762391848 -4632,765031.8196674322 -4633,849883.9862889352 -4634,849883.9862889352 -4635,849883.9862889352 -4636,491342.61516717635 -4637,532420.687701237 -4638,288002.28205600305 -4639,339780.7629206843 -4640,62251.28238067131 -4641,107090.40692935762 -4642,75103.3546945854 -4643,74122.71981339452 -4644,77388.53795732775 -4645,64909.503186242604 -4646,92044.09617729031 -4647,50092.19221289808 -4648,81217.01857870448 -4649,112259.67111122125 -4650,159150.4277619732 -4651,267318.89653523185 -4652,304996.23647099885 -4653,538742.3574740379 -4654,587735.6651704722 -4655,756866.7146269733 -4656,677973.3539722592 -4657,662618.4195052213 -4658,617482.3113324712 -4659,512851.83199409256 -4660,346074.17363370437 -4661,372033.2925256932 -4662,255526.30077158017 -4663,295677.85207074106 -4664,41509.268637136905 -4665,24415.301375915013 -4666,12894.469029579455 -4667,0.0 -4668,0.0 -4669,0.0 -4670,17908.654296631194 -4671,0.0 -4672,849883.9862889352 -4673,849883.9862889352 -4674,849883.9862889352 -4675,849883.9862889352 -4676,849883.9862889352 -4677,803331.1280907162 -4678,268801.5402922958 -4679,537943.6052527813 -4680,849248.7827215564 -4681,390718.3868113613 -4682,274839.5988932647 -4683,404732.8499825857 -4684,0.0 -4685,0.0 -4686,0.0 -4687,27492.357333954074 -4688,188113.65842900012 -4689,139687.86240974587 -4690,82827.12314155263 -4691,87717.32749122095 -4692,43605.4052242879 -4693,43200.35957452123 -4694,90237.21592970444 -4695,119522.02837502657 -4696,198339.3272678874 -4697,10016.437571314083 -4698,77409.5996019078 -4699,96106.98454992558 -4700,442357.24663327314 -4701,278588.7405322354 -4702,248625.88140077968 -4703,140435.33604787558 -4704,171985.8195211955 -4705,193250.4225920556 -4706,77674.59294360697 -4707,26312.028014358108 -4708,0.0 -4709,0.0 -4710,0.0 -4711,0.0 -4712,0.0 -4713,0.0 -4714,111301.51926557698 -4715,71260.03481662496 -4716,26196.218160223507 -4717,0.0 -4718,0.0 -4719,0.0 -4720,136522.35109897266 -4721,132108.07865212695 -4722,102425.37978748909 -4723,0.0 -4724,0.0 -4725,59102.38683205953 -4726,216007.0364123666 -4727,43669.02858965241 -4728,57792.03287813015 -4729,34869.981929138 -4730,0.0 -4731,51223.091291368146 -4732,0.0 -4733,79769.23471327694 -4734,64135.31005582018 -4735,97876.7856906734 -4736,74074.79207904503 -4737,0.0 -4738,0.0 -4739,105990.91823801362 -4740,86725.98568229382 -4741,35465.103594895474 -4742,0.0 -4743,108639.22052125784 -4744,88007.36165547813 -4745,25713.2005327462 -4746,206318.9925570144 -4747,44797.61309694593 -4748,208183.6826119664 -4749,141368.98205708002 -4750,64657.57879717563 -4751,63600.76556683494 -4752,3852.7925924883593 -4753,14915.481660943511 -4754,0.0 -4755,0.0 -4756,66092.4452873933 -4757,41608.860130629546 -4758,82950.87730844328 -4759,36391.73984590468 -4760,70560.12170417978 -4761,50124.18072037541 -4762,91550.1053066108 -4763,59583.94440889738 -4764,72022.71277096028 -4765,85353.98113310206 -4766,125791.34178835076 -4767,335683.2467449086 -4768,252576.7865956616 -4769,673087.6521980411 -4770,409922.787280302 -4771,247378.72279777707 -4772,270039.18707117427 -4773,150046.95513841553 -4774,131185.78930502172 -4775,215435.4214971195 -4776,384652.6604185033 -4777,585350.763536365 -4778,505076.0766637978 -4779,483585.5545848667 -4780,611766.0294488854 -4781,654590.72230941 -4782,561851.5360938293 -4783,305705.55693382147 -4784,221215.04022769106 -4785,193977.4314159205 -4786,182561.71975526848 -4787,181946.85286211278 -4788,235141.37052149247 -4789,203732.65923273348 -4790,296103.9867419981 -4791,296119.89583440265 -4792,303202.5684025026 -4793,298152.02467757626 -4794,306674.8172133895 -4795,397801.7306977361 -4796,234750.809745261 -4797,298894.6097923694 -4798,309323.2587660052 -4799,349292.08975085744 -4800,258115.47657758286 -4801,544696.1591270406 -4802,725011.1824849623 -4803,849883.9862889352 -4804,493425.8540418763 -4805,469248.33985407656 -4806,361728.56048946496 -4807,257871.2109200287 -4808,109301.64913946348 -4809,170396.09532294166 -4810,192003.29194978517 -4811,173757.33177741765 -4812,134740.0411523675 -4813,164801.7463530089 -4814,137998.38672028223 -4815,189268.3358467802 -4816,311419.7847552657 -4817,421053.13886845624 -4818,271125.2681834821 -4819,365572.0554210072 -4820,347258.90040955064 -4821,262505.43827432836 -4822,487138.6114157799 -4823,849883.9862889352 -4824,849883.9862889352 -4825,849883.9862889352 -4826,686871.7405485834 -4827,500757.6985434245 -4828,417544.19055854826 -4829,379028.20978339046 -4830,660937.9185258403 -4831,402582.9393613131 -4832,224393.980965904 -4833,230461.8531968941 -4834,245337.92787906792 -4835,196308.99937966306 -4836,202468.2671957714 -4837,217924.26768141403 -4838,220761.13463615885 -4839,166871.12062332063 -4840,193665.85791226948 -4841,194165.98954817178 -4842,339173.816058861 -4843,412310.6405741678 -4844,397914.1790116913 -4845,600960.8128387656 -4846,649634.3030903524 -4847,849883.9862889352 -4848,849883.9862889352 -4849,553128.2687793971 -4850,753762.7149446089 -4851,473581.5900272094 -4852,470121.1442384833 -4853,454941.10550949135 -4854,197096.06213697247 -4855,190719.62553336564 -4856,98242.80488325335 -4857,107443.05141360295 -4858,65080.18755298138 -4859,81324.00089787577 -4860,32907.06142136932 -4861,73456.94378346004 -4862,92728.93195366488 -4863,43077.87676782193 -4864,117381.46046699333 -4865,140991.60026551035 -4866,146642.94461437516 -4867,219558.01168992254 -4868,278979.8290065742 -4869,503745.1958119322 -4870,684596.4882612003 -4871,564204.8404038955 -4872,576196.366531846 -4873,849883.9862889352 -4874,849883.9862889352 -4875,710367.4065515641 -4876,486902.9051689715 -4877,428013.08277813654 -4878,389198.7672341161 -4879,311878.33038997155 -4880,22312.846439637287 -4881,104473.6311871561 -4882,49871.271353262695 -4883,73761.05770788618 -4884,64165.19584986171 -4885,85111.25114588809 -4886,90961.68791853396 -4887,172555.02628672868 -4888,165674.4291219029 -4889,170119.995806972 -4890,196534.30306577467 -4891,191170.3986724952 -4892,281067.05481919023 -4893,380224.3326940879 -4894,346740.5155106438 -4895,461026.0386867086 -4896,749228.4168466198 -4897,849883.9862889352 -4898,849883.9862889352 -4899,654282.0672617235 -4900,507446.6262374841 -4901,240421.60485880997 -4902,128019.7834495903 -4903,32999.08393260691 -4904,0.0 -4905,0.0 -4906,0.0 -4907,33487.173828636136 -4908,68620.79520416904 -4909,118069.86978918542 -4910,211894.44726807484 -4911,420261.2005183977 -4912,498987.9115801871 -4913,428203.94398929103 -4914,502265.47478832025 -4915,849883.9862889352 -4916,192485.57773774615 -4917,163855.15845030174 -4918,18670.64966466564 -4919,0.0 -4920,348384.27032780607 -4921,413305.81301363185 -4922,52096.72684013516 -4923,26312.05614069896 -4924,29112.92091786894 -4925,242961.95877040675 -4926,166317.86466530993 -4927,78266.20225922808 -4928,21433.167180054283 -4929,22538.123701870823 -4930,66680.27837416988 -4931,176184.82117425426 -4932,312304.21756138245 -4933,443705.2493750663 -4934,458932.0526506237 -4935,649625.3194051628 -4936,660251.58213503 -4937,806981.4256709648 -4938,837683.191829963 -4939,694672.9169018258 -4940,809196.1415066294 -4941,644955.3429051139 -4942,849883.9862889352 -4943,660403.886716034 -4944,259137.99680786137 -4945,466440.961764067 -4946,186970.21238083218 -4947,26864.11519731479 -4948,0.0 -4949,0.0 -4950,18120.660473521362 -4951,70989.17207860766 -4952,0.0 -4953,39688.25692593666 -4954,59830.16411681182 -4955,93125.3005640991 -4956,80834.4284853844 -4957,105252.41683622105 -4958,130338.77600525807 -4959,121933.04709725389 -4960,195107.32104043826 -4961,191923.64503266301 -4962,334567.7132850342 -4963,232789.99984716883 -4964,528449.9850393642 -4965,457999.0240150864 -4966,472448.4990993245 -4967,695131.9480156179 -4968,356558.068275464 -4969,201260.78682498686 -4970,267713.6372953625 -4971,258779.04861649597 -4972,272270.3013335945 -4973,160228.8573226616 -4974,198096.96385947522 -4975,22103.786691369405 -4976,0.0 -4977,0.0 -4978,23024.259515503305 -4979,33914.55210100724 -4980,55912.531425256384 -4981,59555.398332293444 -4982,99120.67892111492 -4983,148551.44841411698 -4984,171752.08941047083 -4985,307123.88434183225 -4986,333418.9615821221 -4987,416221.8244778174 -4988,466959.542882619 -4989,683809.0573047427 -4990,107431.90996768497 -4991,152440.83453923574 -4992,849883.9862889352 -4993,849883.9862889352 -4994,849883.9862889352 -4995,739948.7840059102 -4996,849883.9862889352 -4997,677263.4176731206 -4998,757786.3923467274 -4999,849883.9862889352 -5000,444339.35405713756 -5001,472132.8524121975 -5002,398482.67000487825 -5003,321907.5479021057 -5004,306437.13806142 -5005,283982.0576442469 -5006,330936.04902838625 -5007,358873.31016550824 -5008,311010.8480616725 -5009,419155.6579614061 -5010,436615.6336869447 -5011,303986.58722908486 -5012,815066.4619484558 -5013,849883.9862889352 -5014,849883.9862889352 -5015,849883.9862889352 -5016,849883.9862889352 -5017,849883.9862889352 -5018,760764.3311392972 -5019,747084.6400773898 -5020,774778.3216108424 -5021,849883.9862889352 -5022,772312.064557162 -5023,385181.72972544783 -5024,57508.91811536267 -5025,135659.3305239059 -5026,105047.82179931065 -5027,117673.24301427713 -5028,147956.59113586394 -5029,191483.7477185566 -5030,181815.79929562839 -5031,214797.8709938899 -5032,311083.12796597515 -5033,214685.59766326912 -5034,452201.015600465 -5035,222652.46031353285 -5036,367386.5408177496 -5037,637951.161112584 -5038,849883.9862889352 -5039,849883.9862889352 -5040,849883.9862889352 -5041,343519.34251652326 -5042,245820.99794277563 -5043,575636.0886496445 -5044,413564.8896105619 -5045,101828.50324562303 -5046,849883.9862889352 -5047,491171.0106805174 -5048,338238.57132598414 -5049,219252.58105577528 -5050,241964.02234620438 -5051,183501.1328671836 -5052,161948.90101429468 -5053,124838.32754617499 -5054,90584.85061811458 -5055,52422.918454015904 -5056,54242.59529538029 -5057,26446.3909974622 -5058,37688.32037041865 -5059,59021.17144893063 -5060,42534.19307603134 -5061,284142.7485681705 -5062,627774.9500031995 -5063,849883.9862889352 -5064,849883.9862889352 -5065,849883.9862889352 -5066,849883.9862889352 -5067,849883.9862889352 -5068,849883.9862889352 -5069,278356.6328043049 -5070,79220.39436130934 -5071,0.0 -5072,0.0 -5073,0.0 -5074,0.0 -5075,0.0 -5076,32617.546527087772 -5077,18410.262953554356 -5078,30247.561663353164 -5079,43753.20159096187 -5080,58339.16511101238 -5081,45663.06763745093 -5082,76791.11331154258 -5083,101065.04739458334 -5084,342873.6773681075 -5085,150409.79294363232 -5086,459018.14226738 -5087,716343.0833713183 -5088,573358.9347030097 -5089,250432.89488241513 -5090,282412.02059831074 -5091,657101.7772963297 -5092,202678.25525974244 -5093,60573.24173458946 -5094,66988.81854707364 -5095,30735.696354758482 -5096,0.0 -5097,51365.87900538305 -5098,61519.167816339796 -5099,49798.7911261113 -5100,28035.90132295476 -5101,38300.424214763305 -5102,65240.47582383707 -5103,46684.94482512162 -5104,184964.9470752966 -5105,328570.193998415 -5106,276407.32556005166 -5107,507429.201133383 -5108,505146.71116697363 -5109,416082.7260493727 -5110,685096.6256273042 -5111,791733.555783312 -5112,849883.9862889352 -5113,533410.7956507731 -5114,491187.823215208 -5115,618181.4899743134 -5116,691833.1195722332 -5117,400398.4016899682 -5118,247039.00290112387 -5119,262459.92719547026 -5120,338204.67513233266 -5121,300901.3948469519 -5122,435873.75670729316 -5123,344567.0227162477 -5124,302669.72001461487 -5125,268029.6858392994 -5126,337553.23683412664 -5127,232549.3157884145 -5128,186278.53538780124 -5129,215079.0430418799 -5130,284325.7946224606 -5131,191079.68017533058 -5132,824548.8905902454 -5133,849883.9862889352 -5134,849883.9862889352 -5135,849883.9862889352 -5136,849883.9862889352 -5137,849883.9862889352 -5138,849883.9862889352 -5139,849883.9862889352 -5140,849883.9862889352 -5141,677116.2920152532 -5142,849883.9862889352 -5143,754220.9014613932 -5144,119551.38197030609 -5145,73290.93210433963 -5146,53665.31015515687 -5147,64807.7643115464 -5148,45186.40774039311 -5149,63009.37591723878 -5150,129825.95609527189 -5151,118836.32510724642 -5152,225992.49230528763 -5153,331481.749746186 -5154,206576.11666996815 -5155,573299.9422926287 -5156,849883.9862889352 -5157,849883.9862889352 -5158,849883.9862889352 -5159,849883.9862889352 -5160,849883.9862889352 -5161,849883.9862889352 -5162,712457.3914824214 -5163,849883.9862889352 -5164,234846.4380854603 -5165,200606.92702109268 -5166,54287.0646160552 -5167,69466.55005069134 -5168,65349.80589539879 -5169,100764.11839063393 -5170,70842.4142245387 -5171,43352.283013687156 -5172,28959.380677160294 -5173,30481.067216972482 -5174,25705.685871871818 -5175,62103.23437638685 -5176,101210.12203558187 -5177,164882.7470656249 -5178,226967.1989630802 -5179,233970.51160795212 -5180,505838.4499827548 -5181,527736.1598226846 -5182,849883.9862889352 -5183,849883.9862889352 -5184,849883.9862889352 -5185,849883.9862889352 -5186,849883.9862889352 -5187,770432.1884087608 -5188,730930.9821400684 -5189,281800.66550688504 -5190,264084.1762315858 -5191,229895.27063471253 -5192,175013.76265545737 -5193,208848.57067272993 -5194,252919.8132012822 -5195,133570.07509591486 -5196,45659.44754520069 -5197,57479.05487324962 -5198,96989.21838820106 -5199,82551.79725936525 -5200,100853.20379479758 -5201,152808.37047320788 -5202,177320.91564040878 -5203,298428.3411505196 -5204,647859.8864624521 -5205,849883.9862889352 -5206,849883.9862889352 -5207,849883.9862889352 -5208,849883.9862889352 -5209,849883.9862889352 -5210,730109.6736374866 -5211,849883.9862889352 -5212,849883.9862889352 -5213,849883.9862889352 -5214,849883.9862889352 -5215,849883.9862889352 -5216,86355.93557489188 -5217,23250.571771564155 -5218,48087.603824789745 -5219,46226.848885426545 -5220,66180.31470086095 -5221,51510.54875166382 -5222,59884.30378570388 -5223,54417.44848154141 -5224,83258.74393248229 -5225,275912.72385011555 -5226,275862.27593949845 -5227,46387.82015940797 -5228,178259.62794176338 -5229,113258.59605256574 -5230,629089.9095112262 -5231,712422.9420160191 -5232,238896.97054186082 -5233,288122.7206092877 -5234,117913.4969861503 -5235,68434.67106297046 -5236,44566.170095301786 -5237,0.0 -5238,50371.91446388692 -5239,49687.16599317651 -5240,19127.596791569726 -5241,0.0 -5242,0.0 -5243,30815.117558807822 -5244,5657.454334655138 -5245,45879.62534806358 -5246,0.0 -5247,250501.2424522867 -5248,0.0 -5249,0.0 -5250,0.0 -5251,69964.7251664305 -5252,235284.30109833117 -5253,0.0 -5254,174575.15105102677 -5255,849883.9862889352 -5256,696527.5354321885 -5257,599797.5826031017 -5258,388488.092324437 -5259,336950.52298164036 -5260,357019.5997417926 -5261,220007.68801212677 -5262,258835.35894779974 -5263,47754.46907639452 -5264,0.0 -5265,0.0 -5266,0.0 -5267,0.0 -5268,0.0 -5269,0.0 -5270,117821.26628836589 -5271,34162.50448805843 -5272,177012.8456430396 -5273,223655.4199102901 -5274,164799.76686964286 -5275,152860.91220172963 -5276,188421.10821681816 -5277,849883.9862889352 -5278,586740.4895398975 -5279,448917.42113863927 -5280,423562.1082762301 -5281,664664.8104436615 -5282,824483.3211523519 -5283,849883.9862889352 -5284,660311.4398356483 -5285,567569.1619349294 -5286,513276.014642055 -5287,162553.4733153843 -5288,114535.41313616416 -5289,35021.275608606855 -5290,54357.70223210344 -5291,28615.67530472577 -5292,18908.273662194333 -5293,0.0 -5294,0.0 -5295,0.0 -5296,0.0 -5297,0.0 -5298,0.0 -5299,34949.15984482727 -5300,62616.85658762284 -5301,220034.8965261652 -5302,738688.2118775239 -5303,731309.4648686333 -5304,849883.9862889352 -5305,793297.6884916624 -5306,73889.13558035094 -5307,56560.9493689317 -5308,128661.96337449577 -5309,2856.8323354838717 -5310,0.0 -5311,141196.06142003936 -5312,143073.9840522481 -5313,0.0 -5314,0.0 -5315,0.0 -5316,0.0 -5317,0.0 -5318,0.0 -5319,10037.433145834268 -5320,18090.13624401313 -5321,0.0 -5322,8656.388534611591 -5323,166282.44853235016 -5324,406541.4865695946 -5325,849883.9862889352 -5326,646083.3766537609 -5327,34229.09321952567 -5328,12381.245514958793 -5329,790962.6953127763 -5330,73042.91065955612 -5331,0.0 -5332,94094.46124751242 -5333,0.0 -5334,0.0 -5335,0.0 -5336,0.0 -5337,23251.659718148007 -5338,93431.03641304477 -5339,218934.55175394434 -5340,151310.07189141156 -5341,175509.1138033533 -5342,164484.96074668993 -5343,158991.23629482184 -5344,849883.9862889352 -5345,29546.365898680422 -5346,554496.7358252159 -5347,129955.97430076767 -5348,166346.00050044397 -5349,277356.17188477726 -5350,849883.9862889352 -5351,399295.46542516374 -5352,762752.1226663046 -5353,464077.39140525524 -5354,238687.79439420576 -5355,425738.336484793 -5356,193833.3773567666 -5357,221069.7113395256 -5358,271998.29681417055 -5359,332765.0225501043 -5360,110375.67204709459 -5361,80668.34848814407 -5362,124680.04623166521 -5363,94534.79959736831 -5364,77130.57688499444 -5365,96624.25315172378 -5366,95112.64002779705 -5367,90779.56408843382 -5368,0.0 -5369,0.0 -5370,0.0 -5371,0.0 -5372,242888.629052091 -5373,622039.9629239758 -5374,482561.0038884188 -5375,601711.5705424935 -5376,582600.6765459192 -5377,507740.8614856764 -5378,116052.56523726671 -5379,97228.863929906 -5380,0.0 -5381,76837.90795536485 -5382,47827.143703882386 -5383,0.0 -5384,0.0 -5385,0.0 -5386,0.0 -5387,0.0 -5388,0.0 -5389,0.0 -5390,0.0 -5391,24515.14752001218 -5392,0.0 -5393,787723.7477174591 -5394,260448.71735321952 -5395,264698.73191958386 -5396,284151.046336853 -5397,100013.92441809922 -5398,479639.7048467155 -5399,338529.23318052955 -5400,356665.73865288164 -5401,167288.33250964896 -5402,160025.6170963017 -5403,245340.53554829492 -5404,250465.19393531463 -5405,136741.4334336606 -5406,154795.4714319028 -5407,58532.172909851404 -5408,41220.71302036559 -5409,19422.231691054814 -5410,20902.108538247787 -5411,4350.236913530608 -5412,0.0 -5413,0.0 -5414,0.0 -5415,10833.849435692413 -5416,70568.21912006836 -5417,146255.83355716593 -5418,648177.0074370934 -5419,849883.9862889352 -5420,849883.9862889352 -5421,403408.68474420893 -5422,291031.92148376047 -5423,278861.36005357164 -5424,108774.03769213564 -5425,74060.20254636266 -5426,29824.52695009816 -5427,0.0 -5428,43978.85241469703 -5429,115487.70785918999 -5430,606361.037191708 -5431,122193.05398563796 -5432,360096.31667774473 -5433,98334.78394164212 -5434,0.0 -5435,0.0 -5436,0.0 -5437,0.0 -5438,0.0 -5439,0.0 -5440,0.0 -5441,0.0 -5442,10130.230069994965 -5443,239085.79455017843 -5444,849883.9862889352 -5445,849883.9862889352 -5446,601547.0871045787 -5447,50118.526396498346 -5448,16394.648920098727 -5449,87731.0338168918 -5450,134324.91850922417 -5451,398617.6379210389 -5452,499716.70630082843 -5453,64203.025515724075 -5454,143269.61809408903 -5455,179920.7774373417 -5456,1599.5677102151112 -5457,0.0 -5458,13118.697003410301 -5459,12500.947486012785 -5460,13089.391764378342 -5461,26529.176633244526 -5462,23983.5800787629 -5463,42302.836430625604 -5464,65447.732840778306 -5465,849883.9862889352 -5466,784816.262196968 -5467,95021.12877235036 -5468,849883.9862889352 -5469,849883.9862889352 -5470,398559.3557244289 -5471,179207.52548311025 -5472,0.0 -5473,354480.2768576066 -5474,342842.0751268806 -5475,324117.5025787062 -5476,476152.0637549639 -5477,250502.01476278817 -5478,43988.82112996234 -5479,14910.117283398235 -5480,0.0 -5481,0.0 -5482,49269.10429928134 -5483,88611.17431112792 -5484,93002.31826883236 -5485,199873.0672428939 -5486,244861.90849396604 -5487,168062.0448841581 -5488,161199.3389847759 -5489,169447.1157919506 -5490,213087.67287403872 -5491,218823.0181701912 -5492,667252.3882913772 -5493,849883.9862889352 -5494,849883.9862889352 -5495,849883.9862889352 -5496,849883.9862889352 -5497,680696.0703596703 -5498,249124.82466716986 -5499,86443.49128768955 -5500,253377.4448089434 -5501,326685.8728774712 -5502,169498.5295521773 -5503,182448.43419417675 -5504,55372.089240140194 -5505,21430.138225243336 -5506,42166.939123804375 -5507,93595.8506134648 -5508,108434.99360925706 -5509,89443.01231314843 -5510,110371.75494047708 -5511,120404.48044074066 -5512,189248.45122285254 -5513,168826.23410882763 -5514,214607.38217137055 -5515,408640.8745733549 -5516,652919.3526941914 -5517,809835.9586019157 -5518,160548.07823835715 -5519,494689.43110349576 -5520,209640.6152724815 -5521,72766.78175799927 -5522,308573.96209933737 -5523,292185.3681898459 -5524,513630.1607851849 -5525,760386.1133816276 -5526,519140.9849914911 -5527,490209.3065706452 -5528,109456.54183690411 -5529,40215.61448895772 -5530,0.0 -5531,0.0 -5532,0.0 -5533,48583.77148693065 -5534,101688.65180010289 -5535,100080.61248114971 -5536,207416.27359438455 -5537,849883.9862889352 -5538,849883.9862889352 -5539,807585.3843916113 -5540,486221.52050445374 -5541,543542.8530908958 -5542,355376.452853388 -5543,181054.0629381261 -5544,31492.644589916148 -5545,243602.33671805475 -5546,45985.8988501546 -5547,0.0 -5548,0.0 -5549,0.0 -5550,0.0 -5551,0.0 -5552,0.0 -5553,5841.0647702028655 -5554,63961.979982627934 -5555,106206.09642049398 -5556,154511.5177634776 -5557,237924.1913094117 -5558,272172.759089129 -5559,406064.09720138955 -5560,347604.5009889009 -5561,391475.86313315365 -5562,467689.46540420165 -5563,407537.8469344425 -5564,754961.3649986591 -5565,277376.8157287974 -5566,849883.9862889352 -5567,710356.2317458838 -5568,609176.3837047833 -5569,849883.9862889352 -5570,810482.9508437213 -5571,518065.37437125796 -5572,465452.1029782041 -5573,598522.7383822289 -5574,720312.5803559961 -5575,594731.072939361 -5576,85420.54405068968 -5577,65105.77186838734 -5578,175354.53367247645 -5579,168226.02452377378 -5580,102738.05199542275 -5581,94982.11445665562 -5582,29631.42633714165 -5583,70867.65683469344 -5584,94146.55784131268 -5585,178163.47597912076 -5586,251048.67251688242 -5587,460164.42260824214 -5588,509090.5644657995 -5589,849883.9862889352 -5590,849883.9862889352 -5591,849883.9862889352 -5592,849883.9862889352 -5593,849883.9862889352 -5594,817176.2813534387 -5595,805658.0712145687 -5596,617612.6895726675 -5597,195317.18340497755 -5598,140545.4987037103 -5599,407683.30699191825 -5600,77989.34057843454 -5601,0.0 -5602,24569.255609341275 -5603,32641.196127486826 -5604,20512.636683075467 -5605,21884.806027266844 -5606,0.0 -5607,38394.91928098361 -5608,41005.933363414195 -5609,59489.313898115535 -5610,87812.55237213426 -5611,43215.2529716247 -5612,157630.34669328036 -5613,228118.0499079243 -5614,541400.1070130324 -5615,554680.6493835463 -5616,606090.1982237357 -5617,616030.9522649664 -5618,550275.4559710462 -5619,337553.717795633 -5620,364246.6036267137 -5621,467865.6963571914 -5622,475115.96628483734 -5623,368144.031922649 -5624,23797.18713160614 -5625,0.0 -5626,39129.40376559087 -5627,77710.42858283706 -5628,83089.73057706331 -5629,93733.30890465964 -5630,255901.42838402741 -5631,421125.3132503536 -5632,28217.08501991301 -5633,55234.16826921966 -5634,849883.9862889352 -5635,361196.14666680223 -5636,278319.64495554817 -5637,89209.28907280842 -5638,178754.06197221103 -5639,354450.8167879934 -5640,441048.81942903437 -5641,168761.85243139806 -5642,109470.8892587054 -5643,134093.14283242906 -5644,386632.06363030744 -5645,299912.5248933762 -5646,182512.9971645634 -5647,256530.59353540474 -5648,0.0 -5649,29780.953703505264 -5650,91727.05091721032 -5651,95912.16885436828 -5652,94115.8899201773 -5653,112131.01811047872 -5654,165859.8184338627 -5655,832869.4322177139 -5656,328686.5417483577 -5657,0.0 -5658,0.0 -5659,150016.22690903887 -5660,384202.85655836953 -5661,200163.86721720325 -5662,227019.66770694783 -5663,543535.0327859452 -5664,849883.9862889352 -5665,849883.9862889352 -5666,720112.4813384255 -5667,813274.7952536185 -5668,814646.3547607147 -5669,578468.7909341411 -5670,191769.9079411478 -5671,93935.28163868352 -5672,1021.2992933611639 -5673,0.0 -5674,20772.516767206795 -5675,43812.61083344403 -5676,24495.989872595594 -5677,62226.64187262989 -5678,75651.65912363083 -5679,147561.32391086055 -5680,117658.71646426969 -5681,182183.53023873447 -5682,293480.44020360784 -5683,452852.0690015278 -5684,584384.6736282164 -5685,849883.9862889352 -5686,849883.9862889352 -5687,849883.9862889352 -5688,849883.9862889352 -5689,849883.9862889352 -5690,849883.9862889352 -5691,849883.9862889352 -5692,820224.3813480648 -5693,563015.5244837877 -5694,562168.0233871324 -5695,561986.4119776565 -5696,64736.10742773918 -5697,61608.001281055076 -5698,112086.43342062205 -5699,86901.07564917435 -5700,100308.67261268603 -5701,96233.72100589496 -5702,114388.10126746862 -5703,57109.39374920932 -5704,246037.24329887494 -5705,261704.2632295726 -5706,253483.26305997677 -5707,407195.50280475226 -5708,599276.8729149414 -5709,575104.0992609153 -5710,849883.9862889352 -5711,849883.9862889352 -5712,849883.9862889352 -5713,844767.753221714 -5714,576540.1338272822 -5715,475245.9537056166 -5716,452138.555966781 -5717,536561.0677418128 -5718,609997.0788726206 -5719,539026.7160039535 -5720,42734.02854471245 -5721,86672.79051018745 -5722,89957.49655447021 -5723,62782.60803840045 -5724,30160.240295337648 -5725,65212.8349063805 -5726,58297.890767774035 -5727,61338.65737312091 -5728,54026.28848712756 -5729,81110.04158866552 -5730,163168.69413506953 -5731,207039.42126855114 -5732,262955.1684256783 -5733,548783.4984365616 -5734,606589.2854835661 -5735,849883.9862889352 -5736,849883.9862889352 -5737,771374.1203674824 -5738,552683.4993498751 -5739,268161.7642118827 -5740,357678.5084548372 -5741,210611.6468705771 -5742,429312.33195266133 -5743,350937.86888017313 -5744,179975.33888269486 -5745,182584.44562975317 -5746,179654.55026740866 -5747,149803.90750536136 -5748,130536.86948125929 -5749,182268.13917039672 -5750,183489.24730932765 -5751,140474.91761982988 -5752,234221.12434394148 -5753,147365.0783084378 -5754,271594.4894664224 -5755,644225.1798914641 -5756,525153.75228196 -5757,537044.1179761648 -5758,835297.6868958015 -5759,849883.9862889352 -5760,849883.9862889352 -5761,849883.9862889352 -5762,849883.9862889352 -5763,821021.1601312882 -5764,549460.5702451366 -5765,556860.6029464002 -5766,456569.54021874035 -5767,481648.7696150225 -5768,142881.94325748848 -5769,64525.8499130899 -5770,60060.26346008531 -5771,96147.51563961247 -5772,89957.282107923 -5773,109795.27307757195 -5774,93820.49529593128 -5775,120085.43089965277 -5776,90700.02216814976 -5777,136489.71803369952 -5778,177620.38116174025 -5779,285815.286750756 -5780,621665.8172418388 -5781,742727.6445391092 -5782,849883.9862889352 -5783,816983.4838736037 -5784,725138.8905199926 -5785,523556.3296238381 -5786,508184.21714567405 -5787,469778.1593608084 -5788,336331.2040498917 -5789,407075.88064911426 -5790,349749.60167628975 -5791,378704.760372025 -5792,314812.0911917886 -5793,157213.6666848147 -5794,86900.10876942394 -5795,47508.11020061745 -5796,27070.861472544137 -5797,11024.650159546574 -5798,36367.101272816726 -5799,45773.22588706626 -5800,80229.66304733651 -5801,69549.62621860059 -5802,169090.14229416644 -5803,553809.7273782487 -5804,723502.6605434632 -5805,837339.295117268 -5806,822959.305307357 -5807,727309.8636814413 -5808,681827.5519638305 -5809,719574.8974255478 -5810,682668.1177856566 -5811,466374.0171509113 -5812,653955.871739367 -5813,659786.8167741457 -5814,489057.4882897145 -5815,616793.1530200073 -5816,219271.05454088826 -5817,57727.361143104186 -5818,79413.56460507099 -5819,167778.84275432557 -5820,104883.27900325824 -5821,75363.94167681654 -5822,77068.80603388527 -5823,85232.44545604891 -5824,181003.19716323397 -5825,71839.65473705984 -5826,190384.0217335986 -5827,282696.99371678784 -5828,581297.3056099839 -5829,849883.9862889352 -5830,849883.9862889352 -5831,849883.9862889352 -5832,592158.6413149142 -5833,621436.9861518947 -5834,589356.4180131409 -5835,849883.9862889352 -5836,486503.036688391 -5837,589059.1600607081 -5838,335188.4766679543 -5839,163887.06749849275 -5840,90211.0026399907 -5841,0.0 -5842,0.0 -5843,0.0 -5844,0.0 -5845,0.0 -5846,0.0 -5847,0.0 -5848,0.0 -5849,0.0 -5850,0.0 -5851,849883.9862889352 -5852,307294.13118740637 -5853,137254.940037175 -5854,161300.8083686849 -5855,119493.63527190365 -5856,267837.16944292875 -5857,69447.99154246796 -5858,42160.96326577336 -5859,167142.73269294522 -5860,271120.29091360955 -5861,424808.4087094126 -5862,254386.3863255125 -5863,337375.5282335785 -5864,219357.08254870865 -5865,184860.7172353318 -5866,113081.58038800546 -5867,54255.88258896755 -5868,66012.23669855157 -5869,33801.845468524 -5870,19416.870810343935 -5871,23431.997687314288 -5872,283375.97651769203 -5873,54365.71224212374 -5874,0.0 -5875,48836.81861548855 -5876,0.0 -5877,0.0 -5878,0.0 -5879,15634.592223428173 -5880,265720.55727311445 -5881,407374.4117376514 -5882,325098.30958732613 -5883,82595.16531346524 -5884,15690.517308229404 -5885,62815.40727524607 -5886,27126.861733546317 -5887,29488.330424561285 -5888,0.0 -5889,0.0 -5890,36491.153214751714 -5891,63135.21546569023 -5892,19534.15538018467 -5893,14636.544245973637 -5894,37451.915632113996 -5895,50045.24878908459 -5896,87813.36025084156 -5897,102049.25094777219 -5898,54839.64741359589 -5899,95025.98638595524 -5900,379236.00238245423 -5901,402364.6493485135 -5902,747175.3609985752 -5903,373999.5989651858 -5904,277041.61663707957 -5905,314358.6545355642 -5906,575628.0459900816 -5907,542507.5181899628 -5908,584520.274070413 -5909,328768.6307607283 -5910,44465.951080955274 -5911,51270.17898773797 -5912,0.0 -5913,0.0 -5914,0.0 -5915,0.0 -5916,0.0 -5917,0.0 -5918,0.0 -5919,77440.21057008818 -5920,109956.96765438099 -5921,91571.46024089691 -5922,138909.78103319288 -5923,44938.761973854926 -5924,127316.2605065281 -5925,705711.9266005777 -5926,783009.1291297962 -5927,567457.126640483 -5928,849883.9862889352 -5929,736503.5551075378 -5930,515037.5536850201 -5931,443752.3933344408 -5932,373402.41192367004 -5933,71629.33405639029 -5934,0.0 -5935,0.0 -5936,0.0 -5937,0.0 -5938,0.0 -5939,17730.004341320855 -5940,0.0 -5941,20983.96095459234 -5942,10793.262331580485 -5943,64735.39378542767 -5944,34667.43815823538 -5945,35370.09329929706 -5946,57459.629336001846 -5947,194676.35730306248 -5948,168320.78778976397 -5949,329927.36440625327 -5950,255944.38084609073 -5951,189325.32791637184 -5952,148763.7780418187 -5953,849883.9862889352 -5954,849883.9862889352 -5955,566972.5863978349 -5956,474141.4138048596 -5957,327333.45918140933 -5958,159808.2178205757 -5959,136532.32584045868 -5960,59930.83988873447 -5961,0.0 -5962,0.0 -5963,0.0 -5964,24048.521131546284 -5965,33281.165024580194 -5966,36619.25588175357 -5967,74584.02298247725 -5968,68338.8817399776 -5969,72171.96885057032 -5970,80386.15233892048 -5971,268130.0067137678 -5972,429807.83647893864 -5973,662904.5995101447 -5974,719110.9143193475 -5975,849883.9862889352 -5976,808042.9543575419 -5977,849883.9862889352 -5978,780935.9733276448 -5979,787650.6329369916 -5980,562429.8072648734 -5981,532220.9128969781 -5982,462508.1208174669 -5983,131627.36641615 -5984,64474.05232711789 -5985,19992.456155502947 -5986,6624.406532710474 -5987,0.0 -5988,4057.367388160412 -5989,767.8424546299854 -5990,59124.34873561509 -5991,143789.28047645782 -5992,39026.62980685231 -5993,45049.38815880975 -5994,136507.90227240048 -5995,92359.8525575326 -5996,332307.70765893103 -5997,431362.6107876993 -5998,228330.0179146042 -5999,501982.3295939303 -6000,494610.4997049381 -6001,849883.9862889352 -6002,849883.9862889352 -6003,727124.4776070281 -6004,809338.4096230605 -6005,706666.1308648146 -6006,737932.5581672549 -6007,370087.9999140188 -6008,96195.2478040267 -6009,14403.919578470664 -6010,36168.93561565496 -6011,35464.87005660288 -6012,18720.12551174998 -6013,61849.05056409721 -6014,123095.42964490328 -6015,174686.36285916454 -6016,113507.04651668943 -6017,102862.07366652715 -6018,300187.66246321733 -6019,480291.1725631976 -6020,758364.0997150035 -6021,849883.9862889352 -6022,849883.9862889352 -6023,849883.9862889352 -6024,849883.9862889352 -6025,758415.2507794196 -6026,513663.3213177352 -6027,593660.2963236297 -6028,587601.6451802514 -6029,340936.59806151374 -6030,406625.2855013683 -6031,294543.3114452738 -6032,61411.6083079979 -6033,72236.49850694549 -6034,136631.66408716986 -6035,113209.41585937656 -6036,161337.9317210249 -6037,181792.45315232885 -6038,404226.85736633063 -6039,194819.99232676948 -6040,849883.9862889352 -6041,248662.33765162874 -6042,483021.25035094185 -6043,849883.9862889352 -6044,849883.9862889352 -6045,849883.9862889352 -6046,413076.8803694256 -6047,418147.384882278 -6048,551963.2745213376 -6049,849883.9862889352 -6050,847228.3705372073 -6051,679810.3778215785 -6052,658169.0988058961 -6053,423180.61284741084 -6054,532845.0977558389 -6055,362992.28252325096 -6056,0.0 -6057,130672.86372568418 -6058,142840.17361199297 -6059,144994.16673535394 -6060,137981.9771246246 -6061,338979.99161463167 -6062,505195.8132444698 -6063,524632.899676784 -6064,627995.6283705208 -6065,494372.93106016103 -6066,575168.05435734 -6067,849883.9862889352 -6068,699406.2858429991 -6069,539221.0853777312 -6070,569087.5326149693 -6071,523512.51603561884 -6072,350758.96943207603 -6073,401643.9647595222 -6074,314284.0694815707 -6075,220856.57841666244 -6076,294945.479780744 -6077,243037.32554779176 -6078,241382.16284859664 -6079,199776.57257338343 -6080,234761.51205181627 -6081,258930.30402686427 -6082,270209.77416929585 -6083,532005.6573688311 -6084,530035.3042101339 -6085,693497.0626719521 -6086,849883.9862889352 -6087,816995.1964918751 -6088,849883.9862889352 -6089,550026.6919616736 -6090,849883.9862889352 -6091,39186.3880966086 -6092,0.0 -6093,6414.636884184552 -6094,30424.38249743168 -6095,85735.03221638205 -6096,9345.038322989292 -6097,26409.295273619045 -6098,319887.19468695496 -6099,478261.76605562173 -6100,474313.92104736523 -6101,396564.4996932783 -6102,394203.15187473356 -6103,258635.62643773627 -6104,40858.05683898873 -6105,36222.32933852087 -6106,80883.97263264065 -6107,113521.55608914372 -6108,148594.20964394938 -6109,403443.12181223027 -6110,540052.550393962 -6111,631835.8694803158 -6112,208649.23821590576 -6113,97501.60824465146 -6114,1705.6046196837278 -6115,286842.4431621337 -6116,849883.9862889352 -6117,634898.2208166869 -6118,746266.1074014356 -6119,488880.0872159098 -6120,814999.398903409 -6121,716323.1854024266 -6122,632828.6989972426 -6123,849883.9862889352 -6124,811264.8794459067 -6125,682583.3446347453 -6126,178646.54096254718 -6127,134564.25878043834 -6128,0.0 -6129,47048.68366765657 -6130,0.0 -6131,71078.33811786165 -6132,201507.40175627905 -6133,183717.11183103907 -6134,266408.5337617864 -6135,244980.00465796285 -6136,326634.97506326943 -6137,245483.70965143744 -6138,325526.89419601223 -6139,228837.51861061092 -6140,262521.98642766516 -6141,587091.3334932154 -6142,497829.6697420119 -6143,370985.77985232533 -6144,580143.1845536068 -6145,296421.1494780964 -6146,341880.4740834039 -6147,299490.13777471246 -6148,75776.25091958564 -6149,100080.94805867596 -6150,42382.47346364423 -6151,14025.486080367635 -6152,0.0 -6153,0.0 -6154,0.0 -6155,25990.386273576918 -6156,7000.775389082718 -6157,0.0 -6158,58951.96727347182 -6159,41694.786481029994 -6160,210989.98108170478 -6161,175733.56900559686 -6162,0.0 -6163,14189.865230050857 -6164,0.0 -6165,61262.47623784582 -6166,3014.6611449963484 -6167,0.0 -6168,0.0 -6169,0.0 -6170,0.0 -6171,82225.76527302868 -6172,59655.56461839122 -6173,30049.191056856915 -6174,40648.342642442556 -6175,139094.1539425429 -6176,132280.8783296909 -6177,70525.93524344302 -6178,99993.97640494791 -6179,177334.156461433 -6180,170241.63426278043 -6181,126228.70957766449 -6182,161897.70251960165 -6183,164320.8334691989 -6184,502626.2543586789 -6185,589747.4786423342 -6186,392512.44473943696 -6187,837265.3766347729 -6188,368115.10794068995 -6189,126086.98035121801 -6190,226642.59251836952 -6191,97695.78744344974 -6192,0.0 -6193,25771.27811131063 -6194,0.0 -6195,0.0 -6196,0.0 -6197,16244.162796860306 -6198,0.0 -6199,0.0 -6200,18058.435729346893 -6201,0.0 -6202,0.0 -6203,39149.71771810851 -6204,71238.25602232527 -6205,95652.19422083699 -6206,155795.75515682853 -6207,46235.88744620333 -6208,143286.29589744235 -6209,370379.217276987 -6210,314248.56050101406 -6211,64518.41931897242 -6212,0.0 -6213,64523.255171021054 -6214,29597.542930677046 -6215,53726.218377396246 -6216,0.0 -6217,0.0 -6218,24044.38947712983 -6219,46366.05162533809 -6220,1531.2553640984152 -6221,0.0 -6222,28495.419507680366 -6223,39621.38735941872 -6224,20666.85927183289 -6225,65342.65174405608 -6226,56405.41324932156 -6227,128501.62260003795 -6228,75439.81419220973 -6229,119889.32099571748 -6230,208630.17717287393 -6231,303907.3101505332 -6232,398062.1690195249 -6233,478379.19719555485 -6234,467786.8541278454 -6235,696503.8194320325 -6236,849883.9862889352 -6237,849883.9862889352 -6238,740427.1840971244 -6239,504742.8590487489 -6240,563600.6252995905 -6241,616550.5110721492 -6242,519013.39300917427 -6243,665259.8990446428 -6244,568413.3808543768 -6245,233526.63560705347 -6246,350728.97562068934 -6247,414035.40470294247 -6248,272798.51010740845 -6249,531417.3431286605 -6250,305918.5609815243 -6251,476744.3098194436 -6252,458037.6299276658 -6253,367274.9111744485 -6254,375929.537247169 -6255,441154.39243175526 -6256,473415.671975447 -6257,484875.2217302321 -6258,485382.9964210065 -6259,499434.05966462573 -6260,800468.6791494875 -6261,622123.1450337464 -6262,744334.2826265369 -6263,640574.673558736 -6264,738963.5830765428 -6265,849883.9862889352 -6266,821392.2726397701 -6267,694688.3112975669 -6268,849883.9862889352 -6269,472028.3214911273 -6270,534832.4452616783 -6271,517514.4028236882 -6272,412787.02557812165 -6273,222075.81051946827 -6274,365808.22419056133 -6275,356654.5812301695 -6276,849883.9862889352 -6277,0.0 -6278,81179.18964205202 -6279,229689.15886420908 -6280,112634.29765663913 -6281,25431.664818892114 -6282,124933.6449265689 -6283,208152.23703630298 -6284,181058.03839645174 -6285,23046.49271595684 -6286,15827.666568576571 -6287,0.0 -6288,0.0 -6289,0.0 -6290,0.0 -6291,0.0 -6292,0.0 -6293,12330.922820399826 -6294,17379.66548102064 -6295,66569.54991919371 -6296,235952.33326042473 -6297,244856.31516517902 -6298,324405.90085586446 -6299,359164.430378993 -6300,427326.26774994103 -6301,159327.81777829246 -6302,187664.81234785446 -6303,89664.44258160495 -6304,336463.55500432436 -6305,311531.34222899383 -6306,170371.72587239475 -6307,140278.29762045312 -6308,171807.27463464896 -6309,275795.0120347211 -6310,231994.42407005085 -6311,171562.9383803199 -6312,80457.6818439602 -6313,1309.7302987868227 -6314,0.0 -6315,0.0 -6316,0.0 -6317,0.0 -6318,0.0 -6319,0.0 -6320,0.0 -6321,0.0 -6322,0.0 -6323,0.0 -6324,0.0 -6325,0.0 -6326,30017.707825779387 -6327,47109.96523816878 -6328,59842.268842399375 -6329,94713.14313219991 -6330,136744.29734834383 -6331,388076.37635398464 -6332,662751.7783673116 -6333,787323.590712305 -6334,849883.9862889352 -6335,849883.9862889352 -6336,849883.9862889352 -6337,849883.9862889352 -6338,849883.9862889352 -6339,844238.8417492079 -6340,489556.07726303197 -6341,405397.9687082525 -6342,387791.72903216234 -6343,462599.38514818007 -6344,377846.09551650065 -6345,93595.4496091721 -6346,246180.7849044746 -6347,343859.41170420166 -6348,388864.56041330297 -6349,464713.51140729507 -6350,511461.37554398726 -6351,663261.9277147703 -6352,849883.9862889352 -6353,849883.9862889352 -6354,488044.0484854543 -6355,849883.9862889352 -6356,849883.9862889352 -6357,849883.9862889352 -6358,849883.9862889352 -6359,849883.9862889352 -6360,849883.9862889352 -6361,849883.9862889352 -6362,849883.9862889352 -6363,849883.9862889352 -6364,849883.9862889352 -6365,43601.03753555014 -6366,192953.02481075778 -6367,206127.33973569862 -6368,500247.5578123829 -6369,213502.48630670973 -6370,443500.19760578434 -6371,805364.6763321282 -6372,849883.9862889352 -6373,602640.1177843629 -6374,424723.2905723363 -6375,403149.22777756955 -6376,232940.90336967955 -6377,148260.30162669442 -6378,136247.8205978759 -6379,190156.5399131086 -6380,123652.79280972267 -6381,37349.620583827375 -6382,6256.409254869712 -6383,12705.818953038148 -6384,52856.73408599023 -6385,61868.92701210695 -6386,55426.979916748045 -6387,482490.04556277225 -6388,537516.4528012726 -6389,831134.5474437388 -6390,849883.9862889352 -6391,703550.557686634 -6392,348780.6354509734 -6393,0.0 -6394,41252.76176102473 -6395,57972.11222223558 -6396,29870.5038956432 -6397,0.0 -6398,0.0 -6399,0.0 -6400,0.0 -6401,0.0 -6402,5465.612678608867 -6403,48036.087009729294 -6404,131494.304306447 -6405,283914.65914684796 -6406,340592.012710926 -6407,706403.318782485 -6408,849883.9862889352 -6409,849883.9862889352 -6410,849883.9862889352 -6411,849883.9862889352 -6412,849883.9862889352 -6413,849883.9862889352 -6414,849883.9862889352 -6415,849883.9862889352 -6416,483481.7076425097 -6417,92271.46195797731 -6418,133060.303491648 -6419,229516.48098984023 -6420,444152.8230088491 -6421,415758.4372614295 -6422,384198.9066569716 -6423,415086.92062989733 -6424,488453.5528657804 -6425,598630.5570377143 -6426,610546.998525633 -6427,849883.9862889352 -6428,849883.9862889352 -6429,849883.9862889352 -6430,849883.9862889352 -6431,849883.9862889352 -6432,849883.9862889352 -6433,849883.9862889352 -6434,849883.9862889352 -6435,849883.9862889352 -6436,849883.9862889352 -6437,849883.9862889352 -6438,849883.9862889352 -6439,849883.9862889352 -6440,849332.1279584283 -6441,186962.03333566757 -6442,116651.01779660504 -6443,306348.7107676782 -6444,387354.26014261355 -6445,622656.2520986511 -6446,722134.6670150385 -6447,782080.5126557285 -6448,849883.9862889352 -6449,849883.9862889352 -6450,849883.9862889352 -6451,223379.82218845072 -6452,849883.9862889352 -6453,849883.9862889352 -6454,849883.9862889352 -6455,849883.9862889352 -6456,849883.9862889352 -6457,849883.9862889352 -6458,124208.63397561185 -6459,354469.4531413868 -6460,810750.1530557645 -6461,678459.3267793978 -6462,629413.5735009995 -6463,849883.9862889352 -6464,849883.9862889352 -6465,427165.5348703919 -6466,404673.1104704552 -6467,510595.6834145909 -6468,638945.0679595458 -6469,831824.945453456 -6470,849883.9862889352 -6471,849883.9862889352 -6472,849883.9862889352 -6473,849883.9862889352 -6474,687346.0408288777 -6475,849883.9862889352 -6476,562573.871223701 -6477,849883.9862889352 -6478,849883.9862889352 -6479,654830.8316428327 -6480,288992.83111864526 -6481,305968.0214079795 -6482,632711.6518169014 -6483,467523.5458676046 -6484,516030.793877588 -6485,655964.8277769544 -6486,849883.9862889352 -6487,849883.9862889352 -6488,849883.9862889352 -6489,599828.0900517118 -6490,528107.9388845523 -6491,400925.4539395288 -6492,265928.3926839376 -6493,138271.45936081483 -6494,76236.76644636977 -6495,30189.622852175093 -6496,0.0 -6497,0.0 -6498,0.0 -6499,0.0 -6500,2388.096211863319 -6501,89116.84775177545 -6502,74342.22793223606 -6503,115334.39603588189 -6504,73530.22788488433 -6505,33068.24110239267 -6506,0.0 -6507,0.0 -6508,0.0 -6509,0.0 -6510,12222.656763535762 -6511,50199.99320147198 -6512,37650.19535018939 -6513,35410.903768311844 -6514,16805.151510106494 -6515,30614.861499723374 -6516,186200.36326648123 -6517,136111.47973899145 -6518,149247.89596805559 -6519,220262.53403514685 -6520,143887.47148678423 -6521,219301.7502253275 -6522,181811.83226801723 -6523,458038.1951621468 -6524,670279.5275457866 -6525,849883.9862889352 -6526,849883.9862889352 -6527,836670.591018805 -6528,849883.9862889352 -6529,849883.9862889352 -6530,849883.9862889352 -6531,849883.9862889352 -6532,846945.2753832991 -6533,849883.9862889352 -6534,849883.9862889352 -6535,849883.9862889352 -6536,849883.9862889352 -6537,168851.67101793108 -6538,68054.38024419181 -6539,38693.07452708105 -6540,0.0 -6541,0.0 -6542,0.0 -6543,0.0 -6544,20457.708181767397 -6545,0.0 -6546,0.0 -6547,0.0 -6548,0.0 -6549,0.0 -6550,13395.182446180333 -6551,55120.474864966585 -6552,114129.43760634624 -6553,232534.52870688573 -6554,407128.6977640611 -6555,558141.3226634607 -6556,428054.01612026774 -6557,750331.0220262933 -6558,836190.679226366 -6559,788322.3982772598 -6560,562924.6368879606 -6561,152710.585966212 -6562,61487.37244087065 -6563,33931.647188403134 -6564,31242.42040270356 -6565,0.0 -6566,0.0 -6567,0.0 -6568,0.0 -6569,0.0 -6570,0.0 -6571,390645.5459414757 -6572,567021.2115419746 -6573,340798.3541794769 -6574,120047.06516359704 -6575,94274.70360452052 -6576,0.0 -6577,30779.371911074577 -6578,4037.7782046603916 -6579,446239.0978681601 -6580,83930.91666231498 -6581,0.0 -6582,57416.26786596761 -6583,72946.14858027227 -6584,71707.64101257928 -6585,31593.538283731665 -6586,0.0 -6587,0.0 -6588,33332.90154858328 -6589,49306.54217011308 -6590,79912.49781612474 -6591,80043.63113025486 -6592,47455.16480835579 -6593,69769.76490979205 -6594,28335.502858087184 -6595,82702.39284926649 -6596,534432.755234437 -6597,134310.82690847057 -6598,726490.3943976542 -6599,689048.5907836565 -6600,373635.4836839729 -6601,343018.8501882017 -6602,485329.0582163609 -6603,29124.469803116586 -6604,0.0 -6605,35441.71198905606 -6606,248594.97935782303 -6607,195223.7441288795 -6608,102963.91431861048 -6609,122788.82997551521 -6610,359.10948788592526 -6611,59869.689304566244 -6612,176540.3053490548 -6613,516001.6760865747 -6614,849883.9862889352 -6615,849883.9862889352 -6616,849883.9862889352 -6617,729704.8592988692 -6618,849883.9862889352 -6619,849883.9862889352 -6620,849883.9862889352 -6621,849883.9862889352 -6622,658014.9595719076 -6623,849883.9862889352 -6624,849883.9862889352 -6625,849883.9862889352 -6626,849883.9862889352 -6627,849883.9862889352 -6628,849883.9862889352 -6629,849883.9862889352 -6630,767102.4465875488 -6631,451093.23939167574 -6632,200449.21374031465 -6633,120475.11889227346 -6634,112209.8525976929 -6635,282848.8657257164 -6636,267638.63132097264 -6637,172601.72421635545 -6638,165105.96422651978 -6639,313974.14273901883 -6640,212674.66193439168 -6641,178526.46047121062 -6642,371845.90420408576 -6643,849883.9862889352 -6644,849883.9862889352 -6645,849883.9862889352 -6646,849883.9862889352 -6647,849883.9862889352 -6648,849883.9862889352 -6649,849883.9862889352 -6650,849883.9862889352 -6651,849883.9862889352 -6652,672085.3753075046 -6653,734584.8710988677 -6654,849883.9862889352 -6655,338894.53248036245 -6656,515664.6604723391 -6657,359559.17134985287 -6658,231353.05835842967 -6659,166942.03221913797 -6660,85540.44708406509 -6661,53625.71568397432 -6662,22874.11671074892 -6663,25571.94688165862 -6664,31069.170818741317 -6665,68435.59190686358 -6666,99119.83913986276 -6667,28597.29521640553 -6668,60869.02306246782 -6669,47092.308577943964 -6670,0.0 -6671,0.0 -6672,0.0 -6673,34381.65534572152 -6674,61891.95186987664 -6675,77167.53500542877 -6676,99830.77750356146 -6677,230220.22072783584 -6678,98634.90929951769 -6679,186073.42994781505 -6680,80693.92524047905 -6681,16348.713089285351 -6682,0.0 -6683,0.0 -6684,12648.783781472313 -6685,45785.148497788876 -6686,39360.947369913854 -6687,13325.717214523387 -6688,9251.304774693992 -6689,43552.13650486842 -6690,88313.39549915111 -6691,81318.08176111663 -6692,219892.1318362102 -6693,269545.76989815454 -6694,0.0 -6695,0.0 -6696,0.0 -6697,0.0 -6698,0.0 -6699,0.0 -6700,0.0 -6701,0.0 -6702,0.0 -6703,13439.291430772162 -6704,0.0 -6705,0.0 -6706,0.0 -6707,0.0 -6708,20547.407234814997 -6709,24478.975128700095 -6710,0.0 -6711,27565.620846591883 -6712,112781.56162589898 -6713,120740.3284626373 -6714,274896.6492005427 -6715,567881.7374569164 -6716,849883.9862889352 -6717,849883.9862889352 -6718,849883.9862889352 -6719,849883.9862889352 -6720,849883.9862889352 -6721,849883.9862889352 -6722,841749.2362623168 -6723,846024.2443180314 -6724,849883.9862889352 -6725,849883.9862889352 -6726,825500.5366250123 -6727,849883.9862889352 -6728,849883.9862889352 -6729,642685.8501719997 -6730,229750.77249346493 -6731,466567.4556230496 -6732,682419.5183748249 -6733,599867.7497181355 -6734,578482.1072560193 -6735,565605.559838549 -6736,586233.8050724339 -6737,587728.6890646747 -6738,597276.090640734 -6739,849883.9862889352 -6740,849883.9862889352 -6741,849883.9862889352 -6742,849883.9862889352 -6743,849883.9862889352 -6744,849883.9862889352 -6745,849883.9862889352 -6746,849883.9862889352 -6747,686136.3350334058 -6748,467999.1303854134 -6749,827863.8824100781 -6750,849883.9862889352 -6751,542650.0462160916 -6752,367861.1265642266 -6753,45996.47106014525 -6754,68247.90881433876 -6755,75631.44195065262 -6756,139984.32476335214 -6757,189228.96636213583 -6758,348495.02128608484 -6759,318511.6285773294 -6760,361321.5597622308 -6761,453960.50375087355 -6762,495726.2734666355 -6763,849883.9862889352 -6764,849883.9862889352 -6765,849883.9862889352 -6766,849883.9862889352 -6767,849883.9862889352 -6768,849883.9862889352 -6769,849883.9862889352 -6770,417524.1718183439 -6771,290736.5229514659 -6772,667121.8004629019 -6773,101992.2326544154 -6774,286706.9349418081 -6775,87079.92467976258 -6776,409780.36735826836 -6777,451038.4225628816 -6778,849883.9862889352 -6779,849883.9862889352 -6780,828727.5881392255 -6781,713099.9037997391 -6782,849883.9862889352 -6783,849883.9862889352 -6784,849883.9862889352 -6785,222041.73855839056 -6786,849883.9862889352 -6787,849883.9862889352 -6788,849883.9862889352 -6789,813027.1951645762 -6790,202008.99337549988 -6791,220234.26483137824 -6792,68207.05402532773 -6793,585821.3090700061 -6794,250580.32831032423 -6795,525758.6162445656 -6796,105444.84912406307 -6797,473982.34626040433 -6798,505328.92287691985 -6799,849883.9862889352 -6800,837674.7526848479 -6801,646293.2005691624 -6802,429547.77248492255 -6803,502610.27662446303 -6804,608224.84383669 -6805,849883.9862889352 -6806,849883.9862889352 -6807,849883.9862889352 -6808,849883.9862889352 -6809,725043.0918399219 -6810,849883.9862889352 -6811,849883.9862889352 -6812,849883.9862889352 -6813,849883.9862889352 -6814,849883.9862889352 -6815,849883.9862889352 -6816,849883.9862889352 -6817,841010.2549539766 -6818,849883.9862889352 -6819,849883.9862889352 -6820,773050.8578116307 -6821,496857.13287858106 -6822,87055.75301607128 -6823,330409.4631936859 -6824,340623.63976684393 -6825,34541.24206390722 -6826,34692.96432130938 -6827,48481.125260905064 -6828,20592.96181111048 -6829,0.0 -6830,0.0 -6831,0.0 -6832,0.0 -6833,0.0 -6834,78459.18860150843 -6835,310738.59656371357 -6836,849883.9862889352 -6837,849883.9862889352 -6838,849883.9862889352 -6839,798218.26085766 -6840,849883.9862889352 -6841,849883.9862889352 -6842,700122.7125422935 -6843,740339.6453337222 -6844,674198.6614989503 -6845,613074.2369225519 -6846,849883.9862889352 -6847,468222.78470468253 -6848,415960.5999424361 -6849,598605.306146504 -6850,189822.5876120867 -6851,73683.24679975804 -6852,209991.6793301278 -6853,314080.99139555637 -6854,469337.18513713835 -6855,849883.9862889352 -6856,849883.9862889352 -6857,750837.5623608659 -6858,341340.51779191016 -6859,222047.26146405685 -6860,248337.42873162444 -6861,343684.38800754334 -6862,344076.886526113 -6863,525367.7566708961 -6864,763004.9747158006 -6865,749999.5795854251 -6866,605437.6516240996 -6867,620577.882499995 -6868,343050.17405521043 -6869,711754.5709745439 -6870,462512.92301846086 -6871,534911.6621068969 -6872,623167.9802281576 -6873,644599.164501233 -6874,822114.3213088958 -6875,616818.1818956789 -6876,849883.9862889352 -6877,656620.5093617863 -6878,466158.9064448964 -6879,739750.3570402137 -6880,425707.94726527925 -6881,493113.1750964128 -6882,508169.76458300924 -6883,328819.914991961 -6884,498151.28885815025 -6885,849883.9862889352 -6886,804259.9431488644 -6887,849883.9862889352 -6888,849883.9862889352 -6889,608913.1218245382 -6890,826718.4130146466 -6891,849883.9862889352 -6892,849883.9862889352 -6893,849883.9862889352 -6894,849883.9862889352 -6895,849883.9862889352 -6896,707968.5366905356 -6897,849883.9862889352 -6898,670293.085444348 -6899,627195.645582181 -6900,469626.83725541225 -6901,413491.2574545616 -6902,376214.7681379301 -6903,349245.24051026016 -6904,298751.9275600985 -6905,280088.4693821829 -6906,360272.0482675708 -6907,484516.73383024026 -6908,849883.9862889352 -6909,814234.5758350702 -6910,794982.6279853993 -6911,849883.9862889352 -6912,849883.9862889352 -6913,849883.9862889352 -6914,849883.9862889352 -6915,844991.8336207914 -6916,517498.5823310716 -6917,328874.92025616416 -6918,409982.5062621735 -6919,250977.55513051336 -6920,117657.50491126864 -6921,74468.9640401354 -6922,58278.857778340105 -6923,5725.729179079687 -6924,0.0 -6925,0.0 -6926,0.0 -6927,0.0 -6928,27647.75100321826 -6929,0.0 -6930,0.0 -6931,28267.065642795325 -6932,245303.0517642026 -6933,346807.9973718031 -6934,270416.4765506185 -6935,340638.8558570746 -6936,399735.3469763972 -6937,497139.4543757732 -6938,505684.4286049367 -6939,730772.0724495345 -6940,849883.9862889352 -6941,702217.4906844683 -6942,575529.9852227604 -6943,790804.103268748 -6944,705201.1795265035 -6945,116845.7814466307 -6946,12654.791553655668 -6947,27400.90597760042 -6948,145298.3421418334 -6949,184095.19079079718 -6950,175703.0305037145 -6951,222140.41776643417 -6952,257527.82988790167 -6953,178784.95048899046 -6954,73819.2296175751 -6955,108921.81174587726 -6956,849883.9862889352 -6957,849883.9862889352 -6958,849883.9862889352 -6959,594838.8791097857 -6960,849883.9862889352 -6961,611417.6051457908 -6962,272310.2052571154 -6963,157288.16970521596 -6964,350427.2472839851 -6965,366916.2609007809 -6966,120129.57871408561 -6967,276723.9749653769 -6968,468770.1242668727 -6969,33245.41993867983 -6970,94947.52079171732 -6971,363637.1751108482 -6972,553077.8670258464 -6973,849883.9862889352 -6974,849883.9862889352 -6975,849883.9862889352 -6976,761535.6412753296 -6977,735407.810205625 -6978,142453.54479392906 -6979,202369.88975597246 -6980,216328.42820345578 -6981,176903.49928973525 -6982,179751.60511437326 -6983,48551.544551500636 -6984,0.0 -6985,0.0 -6986,0.0 -6987,0.0 -6988,45531.725718595015 -6989,97012.78228924141 -6990,189856.11711137375 -6991,204825.28747768217 -6992,285498.3792681499 -6993,32371.736548023073 -6994,49402.33179919306 -6995,76216.82581344478 -6996,46137.60047619614 -6997,57611.45659240698 -6998,58110.74716966972 -6999,225300.528710405 -7000,234784.67821411177 -7001,270543.7567226111 -7002,207464.05006889315 -7003,265504.30376994424 -7004,364808.50539124786 -7005,849883.9862889352 -7006,744192.8119586243 -7007,365796.6393398382 -7008,419341.41484168265 -7009,849883.9862889352 -7010,849883.9862889352 -7011,789375.0468683044 -7012,531831.9825478444 -7013,849883.9862889352 -7014,849883.9862889352 -7015,849883.9862889352 -7016,849883.9862889352 -7017,849883.9862889352 -7018,758408.757105459 -7019,849883.9862889352 -7020,613095.3592115145 -7021,479021.4493567589 -7022,520401.18592409336 -7023,279400.8643646285 -7024,131513.3648888905 -7025,33458.88496231061 -7026,32575.28574753438 -7027,0.0 -7028,0.0 -7029,265609.7010485421 -7030,849883.9862889352 -7031,849883.9862889352 -7032,849883.9862889352 -7033,849883.9862889352 -7034,849883.9862889352 -7035,849883.9862889352 -7036,849883.9862889352 -7037,849883.9862889352 -7038,849883.9862889352 -7039,849883.9862889352 -7040,849883.9862889352 -7041,464203.5989470584 -7042,392378.59631429723 -7043,270636.29940873705 -7044,170172.18803541968 -7045,88621.0712179929 -7046,59433.38317678001 -7047,37255.166995123254 -7048,18589.917296581523 -7049,7868.519965620268 -7050,22008.699883677054 -7051,59087.88660769739 -7052,88103.39344791637 -7053,104375.55341524638 -7054,43915.47373100326 -7055,36033.35094129671 -7056,65460.891486870976 -7057,121664.4504967213 -7058,233095.09210011613 -7059,383919.67478487006 -7060,411937.25792203937 -7061,326257.8621549817 -7062,290423.90042808896 -7063,333765.90526111436 -7064,636624.2598454399 -7065,225586.9033660393 -7066,67632.66318472929 -7067,104370.873156546 -7068,147548.58470649415 -7069,116895.91203481947 -7070,72993.42842110878 -7071,53103.38633582829 -7072,41207.23637233892 -7073,32705.803236100048 -7074,27138.356685625833 -7075,22808.806504674612 -7076,24896.268199061815 -7077,34644.68229552256 -7078,51059.635821293516 -7079,97943.07234068283 -7080,89901.3424700879 -7081,89835.82820793505 -7082,117975.64927865057 -7083,181807.65636745788 -7084,334716.2783564221 -7085,480730.2920254849 -7086,470099.29554168077 -7087,471789.49854370166 -7088,420763.68945473747 -7089,283474.77512810414 -7090,36937.69455463076 -7091,30059.980835007485 -7092,36886.05607559019 -7093,86885.3905384918 -7094,212724.98924063018 -7095,249575.11308712626 -7096,205588.0701865212 -7097,147548.1345693314 -7098,187370.4514911097 -7099,164859.78433050352 -7100,604875.0063914747 -7101,655029.8895406922 -7102,849883.9862889352 -7103,759715.495522587 -7104,505895.1994616829 -7105,165310.74107544677 -7106,208030.54067330973 -7107,115450.83254155488 -7108,0.0 -7109,0.0 -7110,0.0 -7111,0.0 -7112,38223.67589352414 -7113,116679.14518561777 -7114,57590.53373388187 -7115,153869.39906960638 -7116,155343.5888498075 -7117,193530.2257012192 -7118,206589.97703175433 -7119,289457.53994310764 -7120,332085.854490007 -7121,413622.1173033098 -7122,585250.6771229065 -7123,849883.9862889352 -7124,849883.9862889352 -7125,828853.4203020175 -7126,634704.6863792497 -7127,614352.2221313169 -7128,596207.8967699056 -7129,423669.75275470584 -7130,475258.7221854067 -7131,386790.0897804768 -7132,294519.64410668175 -7133,163702.7805230676 -7134,88361.08923547894 -7135,30209.80173210304 -7136,32960.02571109817 -7137,0.0 -7138,0.0 -7139,0.0 -7140,0.0 -7141,0.0 -7142,8890.474509908869 -7143,101948.50022374076 -7144,299044.60376096185 -7145,94633.76431015389 -7146,51951.489863118884 -7147,71827.12254210339 -7148,82243.78528453794 -7149,91983.07733480049 -7150,18069.733207667654 -7151,192147.6228416759 -7152,436116.6824668089 -7153,849883.9862889352 -7154,849883.9862889352 -7155,370273.49825429654 -7156,326551.9132874988 -7157,339870.3564257996 -7158,69375.51809895285 -7159,91041.25873819739 -7160,83884.29668783296 -7161,97095.51553513618 -7162,56522.711253749214 -7163,20503.97687233686 -7164,286431.61573598895 -7165,690418.3953264616 -7166,584832.77906982 -7167,662627.9109685328 -7168,551934.882109875 -7169,326039.70163296605 -7170,287401.638408827 -7171,270677.79339674884 -7172,650882.4140582274 -7173,849883.9862889352 -7174,574610.8986303253 -7175,337739.161729138 -7176,212361.3956386271 -7177,20122.228066590687 -7178,0.0 -7179,0.0 -7180,0.0 -7181,91995.83489718649 -7182,118517.96793666299 -7183,162690.15658952983 -7184,234493.35335076152 -7185,143529.0696596521 -7186,12648.844915000403 -7187,45992.795322584745 -7188,64587.29716201791 -7189,66760.5467936024 -7190,34733.697887884024 -7191,115158.98919541725 -7192,198783.36751943786 -7193,290195.87081712973 -7194,286499.94849616423 -7195,347584.06281280913 -7196,849883.9862889352 -7197,849883.9862889352 -7198,849883.9862889352 -7199,765562.7387398494 -7200,834497.3054503875 -7201,720548.4687413782 -7202,498301.3926375132 -7203,510837.9595524452 -7204,545790.9156561478 -7205,381865.72481443494 -7206,372636.4678149667 -7207,142631.58797117844 -7208,77889.7700814844 -7209,118734.21949229283 -7210,105862.7808885356 -7211,203827.7258623007 -7212,174982.48397023947 -7213,275274.05013474217 -7214,361007.43897683173 -7215,488153.3622980738 -7216,608888.2879063184 -7217,632714.029793637 -7218,807672.6304206268 -7219,849883.9862889352 -7220,849883.9862889352 -7221,849883.9862889352 -7222,604820.9670046176 -7223,584609.512068769 -7224,754833.4075628665 -7225,849883.9862889352 -7226,849883.9862889352 -7227,849883.9862889352 -7228,849883.9862889352 -7229,849883.9862889352 -7230,849883.9862889352 -7231,793293.6391565321 -7232,643897.3046695673 -7233,260157.03383197827 -7234,99190.92590387679 -7235,58017.742216103914 -7236,190817.20729691314 -7237,412793.68843645556 -7238,674860.2275186824 -7239,524505.8788473689 -7240,500227.64142184966 -7241,372895.31025028444 -7242,118110.17132714448 -7243,367414.95990342705 -7244,571727.1838227122 -7245,353607.5416682007 -7246,110284.31593026093 -7247,401899.1244098193 -7248,471895.39463314187 -7249,106913.60943094506 -7250,68123.87007695663 -7251,93788.83136784592 -7252,408473.92331685335 -7253,849883.9862889352 -7254,478800.20816920575 -7255,849883.9862889352 -7256,629056.2766408763 -7257,231237.21769163897 -7258,72364.29289875038 -7259,468334.2689529709 -7260,266655.0563880189 -7261,94706.25348972392 -7262,216390.4934415446 -7263,515868.78258373914 -7264,659917.5870700142 -7265,830121.5872055325 -7266,817314.5600369347 -7267,849883.9862889352 -7268,849883.9862889352 -7269,710509.2970997777 -7270,849883.9862889352 -7271,849883.9862889352 -7272,849883.9862889352 -7273,849883.9862889352 -7274,849883.9862889352 -7275,849883.9862889352 -7276,849883.9862889352 -7277,849883.9862889352 -7278,849883.9862889352 -7279,849883.9862889352 -7280,849883.9862889352 -7281,423770.90899042593 -7282,322386.62020363717 -7283,292098.83731375023 -7284,404825.5769039016 -7285,324474.072873499 -7286,271299.8451038385 -7287,332819.3137200857 -7288,329932.1826626819 -7289,322017.2497985059 -7290,133058.83742391432 -7291,849883.9862889352 -7292,849883.9862889352 -7293,839293.5135444229 -7294,849883.9862889352 -7295,849883.9862889352 -7296,849883.9862889352 -7297,849883.9862889352 -7298,849883.9862889352 -7299,849883.9862889352 -7300,849883.9862889352 -7301,849883.9862889352 -7302,849883.9862889352 -7303,849883.9862889352 -7304,838763.8325926743 -7305,406496.7310735987 -7306,460003.6469898981 -7307,567305.997255088 -7308,497348.1529149441 -7309,367227.47925892647 -7310,182191.5936653537 -7311,69659.71161889854 -7312,36752.36021915834 -7313,25161.7333549841 -7314,133091.80871948393 -7315,156539.77095766953 -7316,475348.2862444778 -7317,423261.4439390685 -7318,702333.1536924907 -7319,609723.9659238724 -7320,576389.7597967112 -7321,288590.25703881745 -7322,127075.62765986213 -7323,40028.09247779104 -7324,0.0 -7325,0.0 -7326,0.0 -7327,0.0 -7328,0.0 -7329,0.0 -7330,0.0 -7331,31629.37741622859 -7332,154681.92743911425 -7333,221168.90963448244 -7334,282454.4558695843 -7335,385248.75417258375 -7336,378424.4625654676 -7337,418024.4976099223 -7338,516832.663117742 -7339,849883.9862889352 -7340,849883.9862889352 -7341,849883.9862889352 -7342,849883.9862889352 -7343,849883.9862889352 -7344,849883.9862889352 -7345,849883.9862889352 -7346,849883.9862889352 -7347,849883.9862889352 -7348,849883.9862889352 -7349,849883.9862889352 -7350,849883.9862889352 -7351,849883.9862889352 -7352,849883.9862889352 -7353,849883.9862889352 -7354,682166.6651493752 -7355,306237.06368790346 -7356,2304.7999281544817 -7357,440885.17498725944 -7358,626750.0798695622 -7359,675727.9177900286 -7360,478472.9429857568 -7361,639082.3045483014 -7362,425475.6955162629 -7363,849883.9862889352 -7364,849883.9862889352 -7365,849883.9862889352 -7366,849883.9862889352 -7367,849883.9862889352 -7368,849883.9862889352 -7369,849883.9862889352 -7370,700162.9685803478 -7371,528627.3145446567 -7372,283611.9185530691 -7373,87232.53966619477 -7374,20422.573692791982 -7375,39565.39521921465 -7376,0.0 -7377,1052.6965923790622 -7378,0.0 -7379,0.0 -7380,0.0 -7381,21348.65857514097 -7382,75550.97927774176 -7383,189415.07248992033 -7384,284642.86838149384 -7385,389898.093930795 -7386,680490.7565977505 -7387,849883.9862889352 -7388,343021.3775059673 -7389,787992.1589336151 -7390,586240.6982682178 -7391,615455.940332445 -7392,849883.9862889352 -7393,693520.6375001277 -7394,607494.6855086763 -7395,655398.7725346556 -7396,163467.0231515593 -7397,70641.61484630946 -7398,187542.2197082712 -7399,5411.527463786931 -7400,59122.4655752728 -7401,232368.70775667223 -7402,197393.0326034547 -7403,86004.21830976597 -7404,111317.00279327438 -7405,105554.71503539321 -7406,119901.98545223444 -7407,164103.5253396371 -7408,355002.48847588757 -7409,355737.04086117534 -7410,180487.3894725174 -7411,425692.4715068537 -7412,699046.0883825824 -7413,849883.9862889352 -7414,849883.9862889352 -7415,709114.3784816335 -7416,711644.5369601203 -7417,248589.0955492642 -7418,382137.56200050947 -7419,491688.81499105634 -7420,335266.7733509277 -7421,350387.731469719 -7422,683602.5981225909 -7423,466073.6684916835 -7424,374529.3455829237 -7425,22439.32743524256 -7426,4829.031485464272 -7427,0.0 -7428,0.0 -7429,0.0 -7430,0.0 -7431,0.0 -7432,0.0 -7433,0.0 -7434,0.0 -7435,0.0 -7436,0.0 -7437,0.0 -7438,0.0 -7439,0.0 -7440,2431.7781501219197 -7441,24734.01873787489 -7442,27277.759403919375 -7443,24528.385358492666 -7444,17745.23969610925 -7445,66265.87699623869 -7446,27055.158148868566 -7447,0.0 -7448,0.0 -7449,0.0 -7450,0.0 -7451,0.0 -7452,9931.274555212898 -7453,156295.16581849672 -7454,203035.74439958826 -7455,224870.0043954993 -7456,263960.898390269 -7457,252623.9047584248 -7458,460768.6141175706 -7459,849883.9862889352 -7460,849883.9862889352 -7461,849883.9862889352 -7462,849883.9862889352 -7463,849883.9862889352 -7464,849883.9862889352 -7465,849883.9862889352 -7466,849883.9862889352 -7467,849883.9862889352 -7468,849883.9862889352 -7469,849883.9862889352 -7470,849883.9862889352 -7471,849883.9862889352 -7472,849883.9862889352 -7473,596229.3905970927 -7474,173562.67066311362 -7475,161359.58823464176 -7476,270572.24877153186 -7477,435861.631662487 -7478,487702.2099658009 -7479,597112.1845842616 -7480,590421.6611190537 -7481,489048.9391268002 -7482,746916.4704049034 -7483,849883.9862889352 -7484,849883.9862889352 -7485,849883.9862889352 -7486,849883.9862889352 -7487,849883.9862889352 -7488,849883.9862889352 -7489,849883.9862889352 -7490,849883.9862889352 -7491,591103.2175793786 -7492,496575.0789644372 -7493,678093.422753493 -7494,849883.9862889352 -7495,650118.0149872248 -7496,643186.7699511737 -7497,384025.6917067277 -7498,102595.15700903663 -7499,121773.67865990597 -7500,108266.52809089176 -7501,95745.90383929267 -7502,64706.54760890339 -7503,56359.76594584634 -7504,40157.54132093058 -7505,82336.31062754623 -7506,209052.66303361443 -7507,448244.89249111264 -7508,308620.60322227614 -7509,568389.5340696884 -7510,397677.7604264568 -7511,322121.09747075266 -7512,288584.9732103192 -7513,389693.4003508702 -7514,424741.3070280803 -7515,328858.70508751477 -7516,247017.57413343154 -7517,210175.9075430776 -7518,140075.59155170675 -7519,161198.47546718706 -7520,118180.79330708655 -7521,64575.09243298595 -7522,0.0 -7523,0.0 -7524,0.0 -7525,0.0 -7526,0.0 -7527,0.0 -7528,0.0 -7529,6420.0333315776825 -7530,82547.36896976558 -7531,191999.25571856514 -7532,475014.01960168075 -7533,758319.5136110391 -7534,849883.9862889352 -7535,849883.9862889352 -7536,621897.7300604087 -7537,252781.5843204259 -7538,149789.90307878333 -7539,112120.1462514629 -7540,304092.20130102505 -7541,212586.1176726195 -7542,210278.18095163806 -7543,203097.9333752515 -7544,312431.02546248294 -7545,178305.66055559876 -7546,148616.16745772696 -7547,51382.95180354673 -7548,50226.95867477559 -7549,49147.99682494576 -7550,48627.630727916185 -7551,24397.06033050532 -7552,0.0 -7553,0.0 -7554,36259.911593597346 -7555,0.0 -7556,849883.9862889352 -7557,849883.9862889352 -7558,849883.9862889352 -7559,849883.9862889352 -7560,849883.9862889352 -7561,849883.9862889352 -7562,849883.9862889352 -7563,849883.9862889352 -7564,849883.9862889352 -7565,709326.5402843431 -7566,849883.9862889352 -7567,819823.3128524253 -7568,703025.7272521463 -7569,460087.46536525775 -7570,213474.82089435018 -7571,214263.04143231973 -7572,203540.6367704163 -7573,149154.6946322199 -7574,86018.87773209203 -7575,70873.87809707953 -7576,50871.421002786585 -7577,36784.662156486345 -7578,80145.36259101436 -7579,121977.8722375147 -7580,73170.6087461591 -7581,76995.68448423485 -7582,38666.735029642856 -7583,20910.71595331969 -7584,70718.04159036369 -7585,224178.13834851581 -7586,315672.0806256915 -7587,391044.27762482053 -7588,424085.86630106607 -7589,408275.542343316 -7590,277630.63331486814 -7591,313134.6222668316 -7592,288840.83655350824 -7593,115587.16780670985 -7594,36468.763784139286 -7595,57389.64137822928 -7596,152999.32495860537 -7597,206151.94020116015 -7598,241033.7935512211 -7599,274643.58451476344 -7600,320235.2950057222 -7601,358675.9532326865 -7602,551725.2896502797 -7603,849883.9862889352 -7604,849883.9862889352 -7605,849883.9862889352 -7606,849883.9862889352 -7607,849883.9862889352 -7608,716001.0386998228 -7609,729328.1184176586 -7610,650822.9717845836 -7611,697490.8298640574 -7612,525032.7813572884 -7613,374560.7933708957 -7614,313464.95961343945 -7615,294515.4576556476 -7616,255021.54620789902 -7617,254448.88510002807 -7618,57530.345782402146 -7619,71642.06598334006 -7620,260724.41888442496 -7621,295614.4472899339 -7622,178400.77853421605 -7623,92901.02519428812 -7624,38465.00238645218 -7625,37050.51966226226 -7626,448070.49684696563 -7627,581733.1374002211 -7628,688174.4107201297 -7629,610268.0149242306 -7630,468733.5609204827 -7631,193592.46329148608 -7632,46099.32947097883 -7633,0.0 -7634,0.0 -7635,0.0 -7636,78624.66696567013 -7637,54137.38786197554 -7638,165987.56337229558 -7639,78918.29734438092 -7640,236765.24885779957 -7641,206611.92446098424 -7642,101890.92884928756 -7643,50197.914108577424 -7644,69105.92849216193 -7645,216747.66426379164 -7646,849883.9862889352 -7647,849883.9862889352 -7648,849883.9862889352 -7649,849883.9862889352 -7650,807382.9946920632 -7651,709747.3197827303 -7652,849883.9862889352 -7653,270593.9357563428 -7654,551240.0509325699 -7655,589962.3363288277 -7656,157067.1448025148 -7657,105799.94503611089 -7658,849883.9862889352 -7659,849883.9862889352 -7660,849883.9862889352 -7661,849883.9862889352 -7662,849883.9862889352 -7663,849883.9862889352 -7664,849883.9862889352 -7665,849883.9862889352 -7666,849883.9862889352 -7667,849883.9862889352 -7668,849883.9862889352 -7669,849883.9862889352 -7670,849883.9862889352 -7671,849883.9862889352 -7672,849883.9862889352 -7673,849883.9862889352 -7674,849883.9862889352 -7675,849883.9862889352 -7676,849883.9862889352 -7677,449004.86422618496 -7678,452813.26351757045 -7679,822666.37918487 -7680,282309.1127037402 -7681,767742.9377805733 -7682,849883.9862889352 -7683,849883.9862889352 -7684,404799.5877649006 -7685,849883.9862889352 -7686,849883.9862889352 -7687,849883.9862889352 -7688,849883.9862889352 -7689,833295.2086409531 -7690,533437.7449312169 -7691,511555.8788208104 -7692,694475.3319162582 -7693,680431.1951101506 -7694,702406.0499914348 -7695,445672.4271882264 -7696,273026.4282912306 -7697,346358.01647149026 -7698,345670.952194851 -7699,171919.48152340244 -7700,118346.84124517991 -7701,222688.3631873602 -7702,319118.78905054845 -7703,0.0 -7704,8145.244810504548 -7705,849883.9862889352 -7706,849883.9862889352 -7707,847281.4087103562 -7708,511215.9019042168 -7709,329729.6435262191 -7710,372943.9698734435 -7711,414219.46715481346 -7712,483231.0547004353 -7713,464775.241114207 -7714,160199.26531041312 -7715,102046.554826101 -7716,68287.5242817968 -7717,54978.94789425914 -7718,59002.3373238056 -7719,48271.14099002221 -7720,27050.906851162512 -7721,113892.92138506597 -7722,139319.18335283038 -7723,277185.5790383068 -7724,557777.3372673076 -7725,849883.9862889352 -7726,842787.3558908898 -7727,733084.683590168 -7728,721927.7111284347 -7729,569281.4655701973 -7730,504788.62272002577 -7731,608963.9460576631 -7732,422662.75661921245 -7733,638461.8965678934 -7734,794991.370159851 -7735,817901.3466157408 -7736,849883.9862889352 -7737,487390.5561087052 -7738,100873.92903050227 -7739,0.0 -7740,71266.03140087264 -7741,125292.31935637363 -7742,270760.6575885964 -7743,278377.3216704914 -7744,408416.203576575 -7745,400528.23255513347 -7746,702211.8084919737 -7747,849883.9862889352 -7748,849883.9862889352 -7749,849883.9862889352 -7750,849883.9862889352 -7751,849883.9862889352 -7752,647412.5885021873 -7753,821033.3701128562 -7754,445957.81731620897 -7755,527985.6117640286 -7756,355753.31475875166 -7757,835966.2663392056 -7758,684522.7427545809 -7759,525646.4366497713 -7760,344292.9456741781 -7761,248915.7923579226 -7762,112982.42038527508 -7763,31694.65353756793 -7764,80960.31511042824 -7765,111509.40864351208 -7766,109607.09606641113 -7767,119366.75490232816 -7768,101614.4535486763 -7769,41477.575364960205 -7770,73061.20729055167 -7771,168453.65269568702 -7772,248599.73891800427 -7773,209739.97673205636 -7774,289897.65968162933 -7775,328760.95259380643 -7776,343741.7362750325 -7777,370261.0447568954 -7778,233756.33205609178 -7779,208247.68396467055 -7780,152216.63971295347 -7781,84283.21772825735 -7782,0.0 -7783,0.0 -7784,32336.790795868354 -7785,0.0 -7786,0.0 -7787,0.0 -7788,0.0 -7789,0.0 -7790,0.0 -7791,0.0 -7792,849883.9862889352 -7793,849883.9862889352 -7794,849883.9862889352 -7795,832349.0490065198 -7796,849883.9862889352 -7797,849883.9862889352 -7798,820518.3814196455 -7799,849883.9862889352 -7800,849883.9862889352 -7801,849883.9862889352 -7802,849883.9862889352 -7803,849883.9862889352 -7804,849883.9862889352 -7805,849883.9862889352 -7806,849883.9862889352 -7807,849883.9862889352 -7808,849883.9862889352 -7809,849883.9862889352 -7810,849883.9862889352 -7811,796075.7473841085 -7812,849883.9862889352 -7813,463995.03449553327 -7814,428137.9228033631 -7815,341090.5692917787 -7816,303121.89582953526 -7817,373265.2165066033 -7818,195609.93520905374 -7819,210831.676699299 -7820,249541.31220094705 -7821,390041.90108079347 -7822,553296.247845748 -7823,371320.0151757127 -7824,441581.8595393347 -7825,401469.18216557574 -7826,287762.49686772976 -7827,485167.0931070649 -7828,711536.8873052465 -7829,406254.7930672449 -7830,558542.300330445 -7831,378071.9246333282 -7832,633808.1258921751 -7833,599446.6565002666 -7834,849883.9862889352 -7835,422935.76901010354 -7836,285177.0850293961 -7837,349907.1926322466 -7838,490113.0293687077 -7839,613549.5040661792 -7840,468453.443367219 -7841,436836.03629976953 -7842,599282.8539846245 -7843,490374.77468794276 -7844,361405.1000203857 -7845,170558.47816024424 -7846,253532.0989872156 -7847,294820.72692027735 -7848,316187.7982781109 -7849,155470.99158081206 -7850,228638.5727552357 -7851,76221.454953197 -7852,91936.11970142038 -7853,55383.492405022 -7854,94757.65802801728 -7855,58129.80563023269 -7856,43084.47879304767 -7857,95408.72715078559 -7858,53327.57121661566 -7859,15119.721046878198 -7860,12320.945410437238 -7861,0.0 -7862,0.0 -7863,0.0 -7864,12287.771203889275 -7865,30021.69543855381 -7866,98799.9247018316 -7867,148854.2210160936 -7868,388684.9205990933 -7869,538900.2219407023 -7870,396498.4475639322 -7871,335761.11752414715 -7872,314817.66559685016 -7873,335853.75649181963 -7874,373244.92045495094 -7875,551437.8543166261 -7876,275699.71149197704 -7877,452007.12418955157 -7878,849883.9862889352 -7879,770709.5541527362 -7880,849883.9862889352 -7881,849883.9862889352 -7882,605289.1106000587 -7883,383826.6747140731 -7884,704550.5259573425 -7885,618239.3020484871 -7886,627165.4819988228 -7887,535355.8123756577 -7888,501135.88185687835 -7889,727190.0785339982 -7890,849883.9862889352 -7891,849883.9862889352 -7892,849883.9862889352 -7893,849883.9862889352 -7894,849883.9862889352 -7895,849883.9862889352 -7896,849883.9862889352 -7897,849883.9862889352 -7898,849883.9862889352 -7899,849883.9862889352 -7900,849883.9862889352 -7901,849883.9862889352 -7902,849883.9862889352 -7903,849883.9862889352 -7904,849883.9862889352 -7905,696082.0692603985 -7906,374437.8684681078 -7907,125982.90338699095 -7908,24316.530488930755 -7909,84870.07063461516 -7910,162960.00901673592 -7911,219706.3796214273 -7912,150724.91347200974 -7913,244757.22741657434 -7914,227024.60482000967 -7915,157904.5148722746 -7916,83797.51984091231 -7917,49970.08904238038 -7918,25682.184287608692 -7919,15838.433940653626 -7920,0.0 -7921,25927.662847195243 -7922,56897.59632237396 -7923,134326.43341440588 -7924,125149.02698365414 -7925,261256.34915197344 -7926,472705.6393582893 -7927,406564.9485865416 -7928,351341.5252960224 -7929,298561.2083973344 -7930,281485.9829625029 -7931,253100.73851430317 -7932,204880.37212287923 -7933,198680.9102286217 -7934,162758.0797419026 -7935,136044.3282156005 -7936,127774.60623888248 -7937,238619.53013277432 -7938,365186.58633023116 -7939,370685.3385510259 -7940,450863.24814375094 -7941,367806.66397952597 -7942,461114.6479241277 -7943,468380.90957973845 -7944,641297.7212223449 -7945,525597.4085966597 -7946,439119.0057284617 -7947,439222.25508760277 -7948,361931.1301242543 -7949,267929.95926249307 -7950,267021.12494062894 -7951,302275.6019595237 -7952,392623.4209360185 -7953,305498.1642609011 -7954,177374.05387791185 -7955,94095.35670399135 -7956,97701.46584794842 -7957,31834.394363303196 -7958,58019.31876964838 -7959,46465.040342323846 -7960,35272.90292854172 -7961,0.0 -7962,0.0 -7963,0.0 -7964,34398.05833120352 -7965,90318.84666610767 -7966,184945.8261087101 -7967,167245.43375624603 -7968,187205.79098578845 -7969,128495.06601573991 -7970,85527.19749277111 -7971,66158.09692457912 -7972,70647.54917565837 -7973,147952.21078960501 -7974,219926.51309785765 -7975,247753.81616007202 -7976,182250.15307597202 -7977,203728.06475303342 -7978,258536.4724075516 -7979,211317.93661439026 -7980,145915.34423978647 -7981,179867.20987249183 -7982,265418.1524186082 -7983,391740.78520947264 -7984,439318.17787506984 -7985,396356.71897893836 -7986,294368.2807548885 -7987,201603.0346236578 -7988,231439.67279999808 -7989,315139.9634667199 -7990,386589.7445846891 -7991,492572.2227056573 -7992,660613.6035899452 -7993,808820.2792231084 -7994,849883.9862889352 -7995,791813.8274045507 -7996,849883.9862889352 -7997,849883.9862889352 -7998,849883.9862889352 -7999,849883.9862889352 -8000,849883.9862889352 -8001,849883.9862889352 -8002,849883.9862889352 -8003,849883.9862889352 -8004,849883.9862889352 -8005,771622.2781898192 -8006,560765.3053087937 -8007,566073.0149211994 -8008,714423.31084064 -8009,849883.9862889352 -8010,849883.9862889352 -8011,849883.9862889352 -8012,849883.9862889352 -8013,849883.9862889352 -8014,849883.9862889352 -8015,849883.9862889352 -8016,849883.9862889352 -8017,849883.9862889352 -8018,849883.9862889352 -8019,849883.9862889352 -8020,849883.9862889352 -8021,849883.9862889352 -8022,796831.8170655575 -8023,849883.9862889352 -8024,849883.9862889352 -8025,849883.9862889352 -8026,849883.9862889352 -8027,671480.7700177024 -8028,451329.7225598927 -8029,447515.9803175882 -8030,280046.73464207764 -8031,107603.26815333648 -8032,238482.3531376783 -8033,329632.0770761455 -8034,849883.9862889352 -8035,450253.0240599434 -8036,555908.6581680238 -8037,674879.324183398 -8038,849883.9862889352 -8039,849883.9862889352 -8040,849883.9862889352 -8041,849883.9862889352 -8042,849883.9862889352 -8043,849883.9862889352 -8044,849883.9862889352 -8045,849883.9862889352 -8046,849883.9862889352 -8047,849883.9862889352 -8048,683024.3199693569 -8049,577717.2934358408 -8050,226224.85294145544 -8051,57285.984254767085 -8052,90651.10403117214 -8053,68338.50717507051 -8054,42065.89400857422 -8055,173792.54624599314 -8056,210934.05038675197 -8057,144920.5043175804 -8058,849883.9862889352 -8059,578308.8758432262 -8060,849883.9862889352 -8061,849883.9862889352 -8062,849883.9862889352 -8063,849883.9862889352 -8064,849883.9862889352 -8065,849883.9862889352 -8066,849883.9862889352 -8067,849883.9862889352 -8068,849883.9862889352 -8069,849883.9862889352 -8070,849883.9862889352 -8071,849883.9862889352 -8072,849883.9862889352 -8073,849883.9862889352 -8074,676045.7430153197 -8075,465582.0708564767 -8076,849883.9862889352 -8077,405615.8605360695 -8078,596553.130943012 -8079,849883.9862889352 -8080,767547.6578008434 -8081,441641.7106807261 -8082,849883.9862889352 -8083,638804.9305740797 -8084,599577.8115128665 -8085,849883.9862889352 -8086,536755.1590098233 -8087,849883.9862889352 -8088,849883.9862889352 -8089,849883.9862889352 -8090,849883.9862889352 -8091,849883.9862889352 -8092,849883.9862889352 -8093,702649.8929584865 -8094,440400.83190988755 -8095,287500.0358551946 -8096,109413.4697266832 -8097,58238.015495360894 -8098,186934.37905664634 -8099,278272.33329939534 -8100,435564.2431176087 -8101,417520.75282816123 -8102,568229.954748653 -8103,843131.416090307 -8104,849883.9862889352 -8105,849883.9862889352 -8106,849883.9862889352 -8107,663253.8870255098 -8108,807003.7816120422 -8109,849883.9862889352 -8110,849883.9862889352 -8111,849883.9862889352 -8112,849883.9862889352 -8113,849883.9862889352 -8114,816449.3913271555 -8115,818918.1399233714 -8116,693765.9746106358 -8117,540488.2164089606 -8118,436452.9133769965 -8119,457694.78228734434 -8120,419061.4527281089 -8121,446344.71300440736 -8122,382879.62043181225 -8123,314671.0654785932 -8124,320065.20871061936 -8125,187716.8438676557 -8126,158211.00310125473 -8127,164984.15448876948 -8128,209314.6975031794 -8129,178204.63869292533 -8130,222917.10499716538 -8131,112393.01988219898 -8132,211673.36300080855 -8133,247668.78198995595 -8134,127922.21568650016 -8135,133520.79386483537 -8136,80192.72052159709 -8137,116015.13165405073 -8138,111207.80529765127 -8139,120963.10516614279 -8140,47976.8486788285 -8141,32073.74875362345 -8142,159571.35389893127 -8143,222553.26829768956 -8144,186846.84405884342 -8145,50858.98492313316 -8146,14556.91344103669 -8147,2374.3577407637863 -8148,0.0 -8149,0.0 -8150,0.0 -8151,0.0 -8152,0.0 -8153,30221.33542347542 -8154,106993.39776440484 -8155,201411.17967299535 -8156,111505.41926681592 -8157,87690.48238535058 -8158,113889.80208435215 -8159,89068.85791719005 -8160,114984.45101747905 -8161,173937.2515118538 -8162,148136.46658987913 -8163,74739.15250426068 -8164,53926.522399683876 -8165,47052.28478308703 -8166,40888.14432243961 -8167,55790.18408684421 -8168,36864.46276964999 -8169,30385.051600573395 -8170,49542.6001570341 -8171,23812.48198992154 -8172,28215.311016166845 -8173,52063.28857021619 -8174,40737.128395986874 -8175,11893.202711885755 -8176,26181.065592920793 -8177,24415.784006769252 -8178,71935.90329373254 -8179,32279.084037748642 -8180,42196.03983245318 -8181,131450.23589072024 -8182,372681.06933988555 -8183,303922.5344616243 -8184,251826.22419451314 -8185,75607.88381099819 -8186,96223.17792357747 -8187,181814.13463959674 -8188,104338.85852522038 -8189,366801.3465588868 -8190,412425.1476853273 -8191,309057.21851070924 -8192,222633.95002403576 -8193,125563.97072459939 -8194,131004.38298024089 -8195,141840.07600928348 -8196,168028.65640423592 -8197,180661.56599299997 -8198,510154.9785940378 -8199,224932.1341245538 -8200,475154.5327532377 -8201,849883.9862889352 -8202,849883.9862889352 -8203,393913.2753031957 -8204,250935.86431440205 -8205,325476.68188818806 -8206,390511.77066676447 -8207,522558.916231339 -8208,404181.62625095097 -8209,265389.4625962726 -8210,485329.3212587858 -8211,201175.34078884317 -8212,139764.49260722342 -8213,137759.63255467988 -8214,118738.96551378968 -8215,83643.78450260626 -8216,75239.2958455152 -8217,61882.476959597305 -8218,54174.25267074632 -8219,34797.514358680666 -8220,0.0 -8221,0.0 -8222,0.0 -8223,0.0 -8224,0.0 -8225,0.0 -8226,0.0 -8227,0.0 -8228,102348.99532705988 -8229,142458.56794451308 -8230,318634.1467837233 -8231,91282.0614112255 -8232,23435.452636623777 -8233,15981.633262998856 -8234,61623.306569486565 -8235,91366.92941167149 -8236,141854.3690527438 -8237,394979.45287497045 -8238,657604.7014912325 -8239,742896.8929680868 -8240,426525.52705380303 -8241,484781.7005968775 -8242,307730.1163473634 -8243,210319.5986844056 -8244,141501.00554064437 -8245,271897.62133296113 -8246,344714.03111811396 -8247,479640.60931412113 -8248,752701.8254473805 -8249,814443.5432917222 -8250,849883.9862889352 -8251,849883.9862889352 -8252,849883.9862889352 -8253,849883.9862889352 -8254,849883.9862889352 -8255,849883.9862889352 -8256,849883.9862889352 -8257,849883.9862889352 -8258,503418.8346647479 -8259,849883.9862889352 -8260,849883.9862889352 -8261,849883.9862889352 -8262,849883.9862889352 -8263,849883.9862889352 -8264,849883.9862889352 -8265,849883.9862889352 -8266,381479.9555566076 -8267,265445.7233773158 -8268,203493.48661836848 -8269,150033.49561381858 -8270,116590.49122842014 -8271,61230.69740418256 -8272,32594.031759150184 -8273,17231.00972396878 -8274,0.0 -8275,0.0 -8276,0.0 -8277,0.0 -8278,0.0 -8279,32124.09017204788 -8280,140108.00752254156 -8281,44099.649340429496 -8282,75550.72169040311 -8283,158933.0741513677 -8284,150325.45566284197 -8285,166878.56814077593 -8286,266433.84603745484 -8287,364649.01302245253 -8288,378650.04093692405 -8289,418873.75283146685 -8290,236161.1001193325 -8291,82302.43749202347 -8292,91937.90141656592 -8293,146674.5665749807 -8294,97341.0134237511 -8295,139091.81491616595 -8296,456516.7052989708 -8297,524722.4676284796 -8298,635483.1382372921 -8299,849883.9862889352 -8300,347358.71161474497 -8301,364227.6244746829 -8302,607883.3106396152 -8303,525800.3916424525 -8304,355570.2319213183 -8305,342041.10741228075 -8306,849883.9862889352 -8307,849883.9862889352 -8308,849883.9862889352 -8309,849883.9862889352 -8310,556458.9863346344 -8311,508525.10826366703 -8312,819062.0629218528 -8313,849883.9862889352 -8314,849883.9862889352 -8315,815583.6728126624 -8316,849883.9862889352 -8317,849883.9862889352 -8318,849883.9862889352 -8319,849883.9862889352 -8320,849883.9862889352 -8321,849883.9862889352 -8322,849883.9862889352 -8323,849883.9862889352 -8324,849883.9862889352 -8325,849883.9862889352 -8326,849883.9862889352 -8327,849883.9862889352 -8328,849883.9862889352 -8329,849883.9862889352 -8330,849883.9862889352 -8331,849883.9862889352 -8332,849883.9862889352 -8333,849883.9862889352 -8334,849883.9862889352 -8335,849883.9862889352 -8336,733055.9610387641 -8337,849883.9862889352 -8338,715233.4564367002 -8339,627506.0241805502 -8340,460509.20236387255 -8341,423699.08099924173 -8342,472218.0848018522 -8343,364894.925373901 -8344,280480.79207842884 -8345,271693.97051418386 -8346,352624.06894086086 -8347,215508.2653301192 -8348,99662.22242484234 -8349,20944.632867340904 -8350,45678.411418148404 -8351,81272.25223160484 -8352,96254.41932646316 -8353,242470.9670388974 -8354,301684.3525248485 -8355,727485.2636464563 -8356,849883.9862889352 -8357,849883.9862889352 -8358,849883.9862889352 -8359,671108.0726311299 -8360,825547.2338923594 -8361,849883.9862889352 -8362,386202.8634102675 -8363,294507.01224351034 -8364,207985.355244816 -8365,132307.22473741253 -8366,107586.72065584747 -8367,90724.5502415153 -8368,70324.96617781687 -8369,179371.98721345753 -8370,161846.61997910036 -8371,182853.06358070252 -8372,168438.96178039224 -8373,142077.29631283626 -8374,89068.01066043388 -8375,142316.5870819525 -8376,158942.7640217201 -8377,204447.41833348767 -8378,347507.2710988215 -8379,192129.3441483486 -8380,203908.14163866814 -8381,199184.6716308142 -8382,256294.86865584194 -8383,258591.405798817 -8384,226311.27014256525 -8385,247261.9083696117 -8386,115073.29262713017 -8387,5625.798771227363 -8388,0.0 -8389,0.0 -8390,0.0 -8391,0.0 -8392,0.0 -8393,0.0 -8394,0.0 -8395,0.0 -8396,0.0 -8397,0.0 -8398,0.0 -8399,0.0 -8400,0.0 -8401,0.0 -8402,0.0 -8403,0.0 -8404,0.0 -8405,0.0 -8406,33160.97986902615 -8407,26649.173295479 -8408,35979.401860547616 -8409,52852.724114933524 -8410,60202.000654981304 -8411,7458.111634462084 -8412,0.0 -8413,0.0 -8414,0.0 -8415,0.0 -8416,0.0 -8417,65442.733606013884 -8418,47132.913603253146 -8419,28610.52510332646 -8420,48585.554463922796 -8421,70186.41386975204 -8422,187986.099267218 -8423,268611.1972851802 -8424,263814.5229158757 -8425,191265.26769212124 -8426,340502.69025271456 -8427,373034.2167465304 -8428,393508.4944812234 -8429,371915.51287505165 -8430,379719.6880418674 -8431,553237.9587003528 -8432,725545.3883879461 -8433,760880.3265445903 -8434,555186.2595359572 -8435,155772.58593624478 -8436,147668.05304140036 -8437,103424.18702154125 -8438,57567.07052781764 -8439,419676.4752793596 -8440,652623.2425592481 -8441,812841.6336011844 -8442,849883.9862889352 -8443,849883.9862889352 -8444,849883.9862889352 -8445,849883.9862889352 -8446,849883.9862889352 -8447,849883.9862889352 -8448,849883.9862889352 -8449,849883.9862889352 -8450,849883.9862889352 -8451,842599.5167724043 -8452,689488.1615659741 -8453,849883.9862889352 -8454,849883.9862889352 -8455,849883.9862889352 -8456,849883.9862889352 -8457,849883.9862889352 -8458,454700.7945576935 -8459,234878.9556269197 -8460,267872.0704993753 -8461,158193.84987267913 -8462,431764.7088130979 -8463,453637.33159710054 -8464,849883.9862889352 -8465,717674.3584421207 -8466,849883.9862889352 -8467,720976.0159980167 -8468,849883.9862889352 -8469,849883.9862889352 -8470,849883.9862889352 -8471,792489.1358448764 -8472,849883.9862889352 -8473,324628.39420816145 -8474,849883.9862889352 -8475,569883.0769237346 -8476,849883.9862889352 -8477,149136.0526517673 -8478,0.0 -8479,41764.72776959858 -8480,86294.40053106607 -8481,200631.83793565535 -8482,26713.35558377931 -8483,22119.65441414471 -8484,35515.825907963284 -8485,18634.579108657592 -8486,56374.79642637231 -8487,194695.8338818727 -8488,316915.19614834344 -8489,241700.84133998316 -8490,235475.39506402623 -8491,115932.33453344383 -8492,315376.02814306255 -8493,175424.14897887027 -8494,149152.1319436779 -8495,60017.790604769354 -8496,0.0 -8497,0.0 -8498,0.0 -8499,0.0 -8500,36019.61331637912 -8501,0.0 -8502,0.0 -8503,0.0 -8504,43573.20083837326 -8505,0.0 -8506,0.0 -8507,414848.1210419304 -8508,40538.820933458366 -8509,142463.79459007448 -8510,185988.86976525717 -8511,121986.20669162693 -8512,200242.83798224287 -8513,143944.68645144257 -8514,218055.31910042837 -8515,231785.7897547835 -8516,82670.05837082028 -8517,66634.60589104284 -8518,101038.7901765343 -8519,159251.29563197706 -8520,158844.89508875555 -8521,151158.03300010593 -8522,440937.2903660125 -8523,260314.8605153096 -8524,139125.9711584132 -8525,114109.76819864436 -8526,120689.14176829906 -8527,125886.37425509327 -8528,41242.753934498825 -8529,27514.957514216963 -8530,45704.06263049479 -8531,101941.38602116265 -8532,83401.29535648641 -8533,47493.656420943684 -8534,19557.708525037062 -8535,12310.478506394034 -8536,0.0 -8537,0.0 -8538,0.0 -8539,0.0 -8540,0.0 -8541,69270.59147604747 -8542,178081.62608765814 -8543,225320.63209201247 -8544,302419.26004837966 -8545,398058.50084513036 -8546,433118.9692058364 -8547,522215.6776130836 -8548,465252.4470638779 -8549,438714.0882250487 -8550,810261.4949825067 -8551,849883.9862889352 -8552,849883.9862889352 -8553,466793.67593630345 -8554,41340.773946967995 -8555,0.0 -8556,0.0 -8557,0.0 -8558,0.0 -8559,0.0 -8560,0.0 -8561,0.0 -8562,29414.544209241274 -8563,102331.10665742224 -8564,236786.11956756277 -8565,303018.0063753416 -8566,277132.83507867425 -8567,402877.49671200244 -8568,437117.93373087904 -8569,764628.4336903794 -8570,805894.8390813313 -8571,849352.4275133923 -8572,849883.9862889352 -8573,809916.0607341803 -8574,665811.5440324618 -8575,849883.9862889352 -8576,849883.9862889352 -8577,849883.9862889352 -8578,849883.9862889352 -8579,849883.9862889352 -8580,849883.9862889352 -8581,849883.9862889352 -8582,569818.8467637936 -8583,658624.1892523529 -8584,512213.48892832274 -8585,671712.6025903402 -8586,849883.9862889352 -8587,849883.9862889352 -8588,849883.9862889352 -8589,849883.9862889352 -8590,566302.5158678067 -8591,849883.9862889352 -8592,849883.9862889352 -8593,849883.9862889352 -8594,849883.9862889352 -8595,849883.9862889352 -8596,849883.9862889352 -8597,849883.9862889352 -8598,762480.6106290157 -8599,602020.936601839 -8600,584637.0172839685 -8601,484453.2592017477 -8602,280116.3504090111 -8603,233565.73140959218 -8604,226781.3872262507 -8605,163296.87991401966 -8606,127582.9879827183 -8607,95818.96590349726 -8608,87109.71327365965 -8609,74844.10173084367 -8610,99193.76283596546 -8611,101778.25853513842 -8612,58149.07971625141 -8613,17332.574986687356 -8614,0.0 -8615,0.0 -8616,0.0 -8617,0.0 -8618,29383.92176371111 -8619,77559.2697249821 -8620,105172.43219450126 -8621,123901.56365557981 -8622,187288.17922849077 -8623,373068.5061978269 -8624,364121.8479174493 -8625,384237.2744870001 -8626,75000.16884925845 -8627,59472.570302959626 -8628,68034.27252062205 -8629,81130.94444999668 -8630,45960.28923088023 -8631,23797.061008453606 -8632,86432.8443604239 -8633,123169.52252961315 -8634,134065.3672943152 -8635,144352.63696360763 -8636,76401.44353499757 -8637,32195.742693674954 -8638,0.0 -8639,0.0 -8640,0.0 -8641,8749.191433537548 -8642,22719.224238219478 -8643,28838.55275831647 -8644,29953.672880024144 -8645,5952.052226242872 -8646,47789.584682848945 -8647,43316.243431469076 -8648,32348.15275895802 -8649,0.0 -8650,0.0 -8651,0.0 -8652,0.0 -8653,0.0 -8654,0.0 -8655,0.0 -8656,0.0 -8657,1946.590533203137 -8658,48003.696461720065 -8659,76199.41561618116 -8660,132050.23525601762 -8661,160356.06998029072 -8662,288466.5894873459 -8663,437024.4873055399 -8664,350774.4000460041 -8665,142779.17019171442 -8666,255358.8120127591 -8667,412188.34291032574 -8668,488557.6462859263 -8669,526684.5752532741 -8670,498225.3876630974 -8671,533621.6430787675 -8672,423217.4399314401 -8673,225068.88566529469 -8674,177543.82337268206 -8675,120416.57768265241 -8676,99121.91623479944 -8677,200462.9571254971 -8678,257551.90203308687 -8679,244131.8445918943 -8680,337081.9421559597 -8681,574573.5722924198 -8682,837765.1932521472 -8683,849883.9862889352 -8684,849883.9862889352 -8685,849883.9862889352 -8686,530591.2499127948 -8687,414724.1419529309 -8688,786115.0823725876 -8689,849883.9862889352 -8690,849883.9862889352 -8691,849883.9862889352 -8692,849883.9862889352 -8693,849883.9862889352 -8694,849883.9862889352 -8695,849883.9862889352 -8696,849883.9862889352 -8697,849883.9862889352 -8698,849883.9862889352 -8699,849883.9862889352 -8700,800583.6790991285 -8701,567130.3256792168 -8702,583801.6769514302 -8703,407696.4108771611 -8704,292327.86440729216 -8705,176755.00370018635 -8706,163888.628524565 -8707,162680.7046587968 -8708,94379.35398934702 -8709,22353.72076841602 -8710,0.0 -8711,0.0 -8712,0.0 -8713,21374.65396424688 -8714,77756.81677408789 -8715,141485.74939351482 -8716,231195.42472915738 -8717,318224.19634878286 -8718,601204.9827440153 -8719,575426.6920550596 -8720,597270.6611759077 -8721,840270.7284430648 -8722,189654.92145499247 -8723,126975.31503057329 -8724,79539.38353128798 -8725,261479.5751532071 -8726,275612.569223073 -8727,209452.83533757128 -8728,168397.97598841647 -8729,170101.62364218853 -8730,188345.17667618688 -8731,164243.87379976633 -8732,153025.91362214411 -8733,67215.17101476424 -8734,0.0 -8735,0.0 -8736,0.0 -8737,0.0 -8738,37094.3102903052 -8739,77636.46247860683 -8740,179827.2648521481 -8741,248735.0416649573 -8742,427657.493561239 -8743,605958.8575589373 -8744,735401.6341113972 -8745,576406.9153073598 -8746,382066.38629835245 -8747,100459.23227987003 -8748,217450.06752096265 -8749,518842.65047984326 -8750,764688.051065643 -8751,614301.1270316418 -8752,722314.923287427 -8753,849883.9862889352 -8754,394371.32691203203 -8755,191751.2301198323 -8756,101008.46858158102 -8757,224661.12070268884 -8758,299081.7609372931 -8759,296470.3174996278 From 9d3ec0dff42fe7243648161f4d23a6073ee757df Mon Sep 17 00:00:00 2001 From: John Jasa Date: Wed, 17 Dec 2025 22:05:46 -0600 Subject: [PATCH 79/79] Prepping for v0.5.0 release (#414) * Updating changelog for v0.5.0 * Minor changelog modification --- CHANGELOG.md | 94 +++++++++++++++++++++++------------------ h2integrate/__init__.py | 2 +- 2 files changed, 54 insertions(+), 42 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95503f6e5..209dca574 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,46 +1,58 @@ # Changelog -## 0.4.x [TBD] -- Added `tools/run_cases.py` with tools to run different `tech_config` cases from a spreadsheet, with new docs page to describe: docs/user_guide/how_to_run_several_cases_in_sequence.md -- Added capability for user-defined finance models in the H2Integrate framework -- Added an optimized offshore methanol production case to examples/03_methanol/co2_hydrogenation_doc -- Updated setting up recorder in `PoseOptimization` -- Added resource models to make solar resource API calls to the NREL Developer GOES dataset -- Added framework to run heuristic load following dispatch for storage technologies -- Added PySAM battery model as a storage technology performance model -- Added `create_om_reports` option to driver config to enable/disable OpenMDAO reports (N2 diagrams, etc.) -- Added design of experiment functionality -- Added "csvgen" as generator type for design of experiments -- Added PySAM Windpower performance model to simulate wind. -- Added `simple_grid_layout.py` for wind plant layout modeling, can model square or rectangular layouts. -- Added ability to visualize the wind plant layout for PySAM Windpower model using `post_process(show_plots=True)`. -- Added Wind Annual Technology Baseline cost model `atb_wind_cost.py`. -- Updated inputs for the `ATBBatteryCostModel` and `DemandOpenLoopController` so storage capacity and charge rate can be design variables -- Created `ProFastBase`, a base class for the `ProFastLCO` and `ProFastNPV` models -- Added `ProFastNPV`, a finance model using ProFAST to calculate NPV of the commodity -- Moved `compute()` from `ProFastBase` to `ProFastLCO`. -- Added `NumpyFinancialNPV`, a finance model that uses NumPy Financial npv to calculate the npv from the cash flows -- Add feature for natural gas plant converter to take electricity demand as an input and added system capacity as an input -- Added wind resource model for API calls to Open-Meteo archive -- Added `load_yaml()` function and flexibility to input a config dictionary to H2IntegrateModel rather than a filepath -- Fixed stoichiometry mistake in ammonia synloop -- Removed `boundaries` from the necessary keys in `plant_config` validation -- Improved the readability of the postprocessing printout -- Split out cost models from coupled hydrogen storage performance and cost model -- Added storage auto-sizing performance model based on storage sizing calculations that existed in the coupled hydrogen storage performance and cost model -- Added ability for latitude and longitude to be design variables in design sweep -- Move geologic hydrogen models into specific geoh2 subsurface converters -- Enabled dynamic plant component sizing modes through the resizeable model class `ResizeablePerformanceModelBaseClass`. -- Added standalone iron mine performance and cost model -- Added solar resource models for Meteosat Prime Meridian and Himawari datasets available through NSRDB -- Improved readability of the postprocessing printout by simplifying numerical representation, especially for years -- Added grid converter performance and cost model which can be used to buy, sell, or buy and sell electricity to/from the grid -- Add open-loop load demand controllers: `DemandOpenLoopConverterController` and `FlexibleDemandOpenLoopConverterController` -- Allow multiple instances of the same electricity producing technologies using prefix-based matching -- Allow multiple instances of custom models in the same hybrid system -- Removed a large portion of the old GreenHEART code that was no longer being used -- Moved high-level tests to the appropriate directory and removed defunct tests -- Updated generic combiner to accept any number of inflow streams instead of just 2 +## 0.5.0 [December 18, 2025] + +### New Features and Technology Models + +- Added PySAM Windpower performance model to simulate wind [PR 306](https://github.com/NREL/H2Integrate/pull/306) +- Added `simple_grid_layout.py` for wind plant layout modeling, can model square or rectangular layouts [PR 306](https://github.com/NREL/H2Integrate/pull/306) +- Added ability to visualize the wind plant layout for PySAM Windpower model using `post_process(show_plots=True)` [PR 306](https://github.com/NREL/H2Integrate/pull/306) +- Added Wind Annual Technology Baseline cost model `atb_wind_cost.py` [PR 306](https://github.com/NREL/H2Integrate/pull/306) +- Added resource models to make solar resource API calls to the NREL Developer GOES dataset [PR 279](https://github.com/NREL/H2Integrate/pull/279) +- Added solar resource models for Meteosat Prime Meridian and Himawari datasets available through NSRDB [PR 377](https://github.com/NREL/H2Integrate/pull/377) +- Added wind resource model for API calls to Open-Meteo archive [PR 332](https://github.com/NREL/H2Integrate/pull/332) +- Added PySAM battery model as a storage technology performance model [PR 211](https://github.com/NREL/H2Integrate/pull/211) +- Added framework to run heuristic load following dispatch for storage technologies [PR 211](https://github.com/NREL/H2Integrate/pull/211) +- Added storage auto-sizing performance model based on storage sizing calculations that existed in the coupled hydrogen storage performance and cost model [PR 324](https://github.com/NREL/H2Integrate/pull/324) +- Added grid converter performance and cost model which can be used to buy, sell, or buy and sell electricity to/from the grid [PR 340](https://github.com/NREL/H2Integrate/pull/340) +- Add feature for natural gas plant converter to take electricity demand as an input and added system capacity as an input [PR 334](https://github.com/NREL/H2Integrate/pull/334) +- Added standalone iron mine performance and cost model [PR 364](https://github.com/NREL/H2Integrate/pull/364) +- Add open-loop load demand controllers: `DemandOpenLoopConverterController` and `FlexibleDemandOpenLoopConverterController` [PR 328](https://github.com/NREL/H2Integrate/pull/328) + +### Improvements and Refactoring + +- Updated inputs for the `ATBBatteryCostModel` and `DemandOpenLoopController` so storage capacity and charge rate can be design variables [PR 290](https://github.com/NREL/H2Integrate/pull/290) +- Split out cost models from coupled hydrogen storage performance and cost model [PR 324](https://github.com/NREL/H2Integrate/pull/324) +- Created `ProFastBase`, a base class for the `ProFastLCO` and `ProFastNPV` models [PR 310](https://github.com/NREL/H2Integrate/pull/310) +- Added `ProFastNPV`, a finance model using ProFAST to calculate NPV of the commodity [PR 310](https://github.com/NREL/H2Integrate/pull/310) +- Moved `compute()` from `ProFastBase` to `ProFastLCO` [PR 310](https://github.com/NREL/H2Integrate/pull/310) +- Added `NumpyFinancialNPV`, a finance model that uses NumPy Financial npv to calculate the npv from the cash flows [PR 310](https://github.com/NREL/H2Integrate/pull/310) +- Added capability for user-defined finance models in the H2Integrate framework [PR 247](https://github.com/NREL/H2Integrate/pull/247) +- Enabled dynamic plant component sizing modes through the resizeable model class `ResizeablePerformanceModelBaseClass` [PR 198](https://github.com/NREL/H2Integrate/pull/198) +- Move geologic hydrogen models into specific geoh2 subsurface converters [PR 367](https://github.com/NREL/H2Integrate/pull/367) +- Updated generic combiner to accept any number of inflow streams instead of just 2 [PR 406](https://github.com/NREL/H2Integrate/pull/406) +- Allow multiple instances of the same electricity producing technologies using prefix-based matching [PR 397](https://github.com/NREL/H2Integrate/pull/397) +- Allow multiple instances of custom models in the same hybrid system [PR 397](https://github.com/NREL/H2Integrate/pull/397) +- Removed a large portion of the old GreenHEART code that was no longer being used [PR 384](https://github.com/NREL/H2Integrate/pull/384) +- Moved high-level tests to the appropriate directory and removed defunct tests [PR 412](https://github.com/NREL/H2Integrate/pull/412) + +### Configuration and Optimization + +- Added `tools/run_cases.py` with tools to run different `tech_config` cases from a spreadsheet, with new docs page to describe: docs/user_guide/how_to_run_several_cases_in_sequence.md [PR 242](https://github.com/NREL/H2Integrate/pull/242) +- Updated setting up recorder in `PoseOptimization` [PR 291](https://github.com/NREL/H2Integrate/pull/291) +- Added `create_om_reports` option to driver config to enable/disable OpenMDAO reports (N2 diagrams, etc.) [PR 308](https://github.com/NREL/H2Integrate/pull/308) +- Added design of experiment functionality [PR 314](https://github.com/NREL/H2Integrate/pull/314) +- Added "csvgen" as generator type for design of experiments [PR 314](https://github.com/NREL/H2Integrate/pull/314) +- Added `load_yaml()` function and flexibility to input a config dictionary to H2IntegrateModel rather than a filepath [PR 313](https://github.com/NREL/H2Integrate/pull/313) +- Removed `boundaries` from the necessary keys in `plant_config` validation [PR 361](https://github.com/NREL/H2Integrate/pull/361) +- Added ability for latitude and longitude to be design variables in design sweep [PR 336](https://github.com/NREL/H2Integrate/pull/336) + +### Documentation, Examples, and Miscellaneous + +- Added an optimized offshore methanol production case to examples/03_methanol/co2_hydrogenation_doc [PR 137](https://github.com/NREL/H2Integrate/pull/137) +- Improved the readability of the postprocessing printout [PR 361](https://github.com/NREL/H2Integrate/pull/361) +- Improved readability of the postprocessing printout by simplifying numerical representation, especially for years [PR 378](https://github.com/NREL/H2Integrate/pull/378) +- Fixed stoichiometry mistake in ammonia synloop [PR 363](https://github.com/NREL/H2Integrate/pull/363) ## 0.4.0 [October 1, 2025] diff --git a/h2integrate/__init__.py b/h2integrate/__init__.py index 3cb234e05..ca9fde1e3 100644 --- a/h2integrate/__init__.py +++ b/h2integrate/__init__.py @@ -1,6 +1,6 @@ from pathlib import Path -__version__ = "0.4.0" +__version__ = "0.5.0" ROOT_DIR = Path(__file__).resolve().parent EXAMPLE_DIR = ROOT_DIR.parent / "examples"

zuBzU| zEHK72mS^$a)6^x;e1=JZ&FM5#+M_-Ajp$rA zW1zv?CtFFFKw=?FXu*&S!#O3CQB>$Hb z7xms1*2P8tbf!{^kLk@OxwIsy`uuYPojM7ZNJ!Li7im*rWbEs}XI z`P%?9_0~n6ax#-1^Kc3k55mc*XbaEy~HH8RMspH7%~(6~WEQ zyWumRxCNB0#9g`5k{Z{tz%MSbK?d5_aR$jW!`K%*o@{(fOEji!DY*lJhitWFN?pjT zXX>MR;)t3uRNDRMb1L=gjjy0h4zjo0FKR~)DQ@VXx`hK~iVHg+U%(N`m9z#qiQ!V| z$NkZ)RkWB-gvuOO8hZnMvHlO8vFQZ)vH6=^4Uv@9$F-bKgd1^3g!_S%1w6-f9*G;P zC`+sAdI4U;xUsigs-u-c{qGNrYRg2u%PZ(=8(tV*-9CvuGnN-0AAR*{PMgdnnB{PT zCf52_T0Xy41|iF@Z^$2?{0v2t=WJ?p3YQ#em>V5B!ST2-&5sr^HZM8W^lA_P;c}l0 z-R?0ZBBu95Uq8?a7sUp}Ld7qC1eZ&!S%vmr`piJ>!8lVHc;jj6_Ou2x0bNWiF{z1k zu$3mZFMUJs$8>I!yB=Ak@u3k5dj=1gL;dNDb@sN!MBvUI{!Z_%&G`3YZsk9x@DHw8 zE+9HB_i>j7c9rAmRcQ6@ZjePY!v3=1VKlC(u&Q$A=Hy^Pdni1+H8VY z5gm!GaRG@d>BiDudHjwE)!nD`osv}^V)b{lg2b44&#^@=SBGEPeDTN(WnIF$N~p;_G5|`F&DnVznadiPONxurpqUsizG7^Xtg{NPy*Kp+{OtK&QT(^f z7}5=|90QFHGcWrhbMFge>FJWZ6>p}WY~Ow+FHx_t+Bp#Pi<`3Z@{hbipnm#pl*BA= zcekg}3RfQpAsR)UE3f#O)pzw+?Jbt&1eoy0Nngmj~?xi#s?c&`YTCl3KF}J z3Po(UaTTQ%nD3iV7Z|>sll*8F*g5obyk(Lz$u5lWy1=n!jmsLpU2yRI;qLf@Rf*M^ zL_}iXRQ2TtTd;Uz$>_Y6{}<(C0iEWKF|ANd;zbN_Fl*T0u`+VslFKS`j~uMq;Ej_l z*pK`!ayF+Z-xN#^|GG`S%6HBQwO+8{lQq}4z^o0mY5H0;>6APmXk^y4R7KJw7rL6q zFmM_P7O$NyBQa(-q<`-r?|o?aYfR-73yQNIaRidy&Amr)Fk`^?i+s?A!7-ft2`Wi( zW#(q3+3%}d_|EB=l+hsWi>vQA-hTf8XGS9>c# zrO?_j?fwGHEpapIz7Z_4gk5+VE7VR)L^ZGxZO>p5uO1881LfMG>ho@~Ro}5?X7iAP z=k;QFiVOl2TRLpgR&6)bogH5Y0WEUK!HxqX@`;prCT8ZyxW`xeJo}Tj54d?5P0Z|f z_2c2HhnV3OFkJN-(&B9@>PTy6f&R1$nnqFe@~v4O>e#|cA3|*9>>*vp9NP)s6~==( z$z1}uV&)_DHQDv(K1&W(8%`b|(k30?#9rlL_+DAimaO#D<}Lg?^5%`Yiw`Cn(Qkp&Hb}jv|!! z0kmb|t?PftXwnOA#!zFqTXytMm(TeQ`%1M>EoUop`If3(8~ViK6GVVFG$E$2m7oQ> zbjuvd1JPr=A{K;g;)y!<_$ZA~zbyX}wso(5&hX$RrktF;lXGSMruBHRN`E`_3D29? zh<$H37bx%7Li{%k{ee;(X}iKKiU=hKQ~J4tI6pO>Q-!=UEGruZG(d6H_<4>F1=rN# zfoCG41THp2K?m3<%ZvS&ecK|bD-cdY&j_En_7dJD>@0e}H^O2JR>9CGF>7QZYKl&@ z^*Ddz1P%S=Q6^^Vsl zLir`yJg&59Q^KO|)grKM{b=w512ll{r+PK=O+9-?J#>vCUFH9ced~hu#_SP-OB}Lz zW}V>OM=Bkp(JB`@@@utT;*_o>=>Hcyt|3T5BeP>natgHFI~KN& zeHvtzPl#ZmyP#mJaE05JX%&26Fm<&7qszU=OEjH{+*P@WB4Y;Ws0pC8*sICDc?AF7 z%PF^|%-Ha+ag*~Y3M|?$?`!Z5ZoX5_PtCV$=C1nb+4&iU(hd(ZD4+QIh@8 zd*(a~;=9f{C$`{<-Of`JY@inHMdb14+u%^b$?2q8Y*#ei0u4XHhG-ZReo=3*N;!@H?KG03wx826@F{b_W1+*Z*(=vXM5K#g-ciqh8%%oh#_J=pJPpV8R~*i`FS^w zt8SZHeP{8d58(&6lAo`?@&pe4S>@0pGa`>H#LjXuNmKt-7ojl>a+u?!Dsc(u6>=Sp z@Cu$}N?Ka{a>Wl*K~UQY2Jqs+d`H1u`W!VFey!$*mLMl<(h(O0HN>?ql8+(7aQ9Ij zpS}EeNUThw@~)z28m*mRlQzXb1u;3{EfYy5M#iLrV7=k3p8Vib=f}JqGq;_b!Xp-! zlnjLt>qIsd*vQTGSGh9=E*}xvNEHb$oP^FWWm*}Fx~R28?e1H*!pnhbUDgN{N6q)& zTFlF_F zLU3&ME0%{?XD?a>5_^V56W%O3vBbSA*72Mv(hRsz%@{{Ey!Dk{V{xv}epQ&QZ2aab zCnbH=62|Sbl$4uo4ZW>p2JSOH4HjDd5>kwpElL*}G1YSL3V)X>)+@%fIYrn_ zHFpfDXGNCxECigqdy1>_Hr10k>mhqHaU6CnKDsy*0tM1sEVQCl@=GFBBogmSIVSiT zR53_q*$NDNS1TnJXs07{EltiZ<*Md)Qfs0;#Hjq{=k<*0m0rZvbSUHL#C-*UuYC1M z2Yibv_X8jeTAYWvFICIbaG|9=G9&x#)=+4nJx8_2;9YjT8f+_+G|uuL@64Kp@4}5RL<7Xcj^Ab)HSo zPk|pMs;2Q;FnAr$UXS{~N(@_`NKs@n3GHDRA07E(Lz{>Q&#t#WvbB}#Xy#jz9-ph3 zJcCVTuv|Aw?UBYrcH6<`(Ugn(S}flKn>P4!ooPRo@q~xy#|_9h!W}l@7DWn&A>J!N0}y@$XCdqj(EL_8E7UtQ5^Q>*Ki`8E1396 z5EzHRzJQI2`mYo#oO62iqz-DIWbh_=vy5teeN3}pHfk+YF-pfzC zWz3XKCxt_HveK}N11%79ZL(q~-D`bHI#`x6vTJ6pJg}lqBvRSJmmX`K1*xm>p~{=p z6Xt?{Q!$=fm$EwHPWgz_(@Q z7QrD7Ny6%1Sok%(&=lNqL6aVElS7EeZ=1G4e>v-jHRJn+OR|3uQP}N#kq`FOPD&+0 z5!nZuXQM`gwp$Kb8XCg#W~J@z;U7~Nk`Af-(E{-;bCDA0JZUlxV=p`Coe~?SNr|E3 zZC$fEkpG+hZCgEY3M*E`Q@(kS8YPiY=D6=Pk-E@u>gy#;dZOTz^p!ARJL(C333cjm zwo94v$G%YX%(9WF8+rHObx+TwzGfE;|Bxj8Zikz@4QFpcMp|}4 zbZ_))PvewDe|b0@QPBL3>d24#V+>r>pWj^rg&UgF`5v~w#!N04%AefQMq1Gl_4?5Y zD)gFZ&xaBLzXg|~gO8CBRd~8DLgld}Nw>aOMPJ|WNo$kEIHCxvyob5R(j-}p^im?+ zu(`dF*Q=57ak^ca1Nt3*l9P-u_X+Li+dK+tG|<2<@6oaREa1A?TQng(YgzO`a$Tc6 zozFxTSwECxdpSSE;o@%jwaB;kWVoNp*y3kBn}PY-mvjQd2oJEOSLV^nfN!z#@bs0JzfXS6*5!1Z(=_)cOElSu zRGrga*_PkTHRWkWy78{i*3M}jUn<`26Qz5*Xcv}w9;;y)eo?`AAPC!ByRS&PM>yWl z+)CQEu$zvjW}2_W;(*>nY?@Mp1&tDdkKv;+MVdE1Pesw+aS%JG^=BbwQmUP662W@B z?*3kA{{l^J;IxjHj!@87(y`xk?+lmNEgblp>}}Ya>{%(Bi~}~|Y6rS7U1q5v&Z0{x zBaUkA~VZ!-yoTM=2IVFBvAQxyU5m zizF{YrX@;L5aAHn+WsMR+VY+OPu@ip1a3Zkx%Z}~?A&#K#>f9NJqjwN9s7+MM`lh-bDdLQ8S1cmxdyF;y z99@UYwr|E$h8r7^^*ynv<=Z~a*7ZXd;AToh>ih@KI3=w_`%c5q_ViWorhqDVhLccz zhV!WNtm;5=+vk07>Z)ggi?~s&T>&YjKXQkMZEW3Bwh@>g|(;4+RXMU@=3>!FM-?ZA{`y#~4Tzg0P3RD}6zR z!kdQ0 zD9fRuoKT55jSGus-=~ug<`ijN#16kPZF5KN9VM0!RNB!uVlInEpM2aBt>xrs$hYS8 znaAMm{i4in^_`$LtR2QYDWY_-&~KnM@OVn^N&VL4V>P(w%_}g|ve=j6XgF#X)=y+sW!7b8LPw8@x!{=nG+&r@*EO zrZYzBL0;@MZS3BAiB~N9k>R7k5nwUb3P`N53z?*zpqhoCButrg z-XU3qQfq+7ttfI1svi4f3XY$P*YaR_C)?+g?n<$0Qlb*#6R`#X2X%PW{0QY~B&YMi z-3ubkwtajcm%tbY(I1~Rbq}#Y3pvw~ z?x^b0;Wq{!BkE39xp*)fKfEr)BTJ11&3k&}nU0$qxzg?zp49uWCLegG>apKv=XI&y zD8bg%PD5yU)A4PzBST8~)I#`AHGN)8nkReLcp5Txfp(l; zRRy~2R531$oaQ=?_6|P}sPa(8nq^O74|TI^80~z(u$6-3A+HcrZIBbp2D)VpSaLA? znn}+7v4-gX(E(15U=ET;PAMGc1g5iL!S7vB%G2rJ-t(3u@*#?JEVw~l3{~3Qy;^%# z&KPU9(@Hez@)B9~&DgQY242U`Fw-2TC3{8OCaO2@%gBD|#EG9>dkNIsq9YA7 zSedQd`MgUry=wek#L3jq@v%_EM!SCq&8>jE$5`S();=?jEsoiD+(aXrV{m=tO zUm>z>Icl;=^YBr92k#~WLofj@oaTnu70cGYmto31YKL=|tMO{sf$ylpJFk9hw9{WV zE!pWB4LIg^<@d*4g%lC+khSEI2joe+A>^lH$>=^WNpa?mbm@wI|BYxB{9? zo&8GFWj}kElgKw_6`~q>Yq=i)l>qFx8&LhATOi5RcB3b?lI47y$u>%WKCGDnp(Y+G z5nVbyoaq_FWKJQOgf=nfxO#eBriEJ(?WM*LCC=9GOi2tLjX;dqLd;4#=_GY_m4hZz zL7K*n(yES|h|ihyCxA8Xb`xWKx+<6MV|r(5$IW6IuMMB#f~_l12`N51H(!e*OIpA7 zPpPT`wzLW%H<-Df);}yr4OeLN}%>??=5YOU>uwP&I#eUBmSo!eEI0W~ZeV->u*MZb!2J4u74vyDru3-g6pRZxxm}dnvjAm|# zp|1)fN?sd9H9u0(qL1F-1d^q$>T*0ipusaMkABWNCwEWPDw220{Cn|p`A=~rpC3=6 z3u2@(KBUL5J`hY*&G)VF{cE#OkABhjWuh0)u(*s)MivKx2TFtEE)+$rh9tYE5qmA& zu!$h(Slu?2%l#%SJg&{f*k@{@zXTpR@7y?vCf_PHF%R9(*ICP-T$LZL#8(vPuALb% zc55ALImBThHC?BbrrvX7^%z4&XTm(S%Y+9@K9hl|@D#_?Di^wlIFlSIb(JoV@Dayo z?;$CxllB=p3F1AtF!kX5FmuTsFOQtV8b=eiJb1=LP!x&1GJNcC*r6R|=eT+6#hT`g z8Tsm1@iS@pxMWKx7688>`}HTXSZpQgbM^`fX>$M@-I!(8Ummg)kVl4Vic zAx%ejStR0B{Q0Gb5_7Bitu8`&=@y@%d~21OKTd>uGaX4W^youdp|8~`QK**{%G0|+ zvyS=qjI=;VZ>uY6A@% z?{}%+f6StokOUIgrM|Xp*Ypr2akiG~)))1p%Q77Mq}8{D{Cs8Dg*-jFKL{iUZgx6( zQdf$@mLw6-qUcZyg_NiumRwAD5Q6k>S`Ph@aPZUJw^;4mdo7In-JUKW%1fsBY~*VYdp}f+Y|(?CXue=})7XEL)0r01iJ8?xf^C$t z?;D1&be`&F9`#VXEp7Q8N+a-@9UHxWCJH5-y)DgqvvX$4Ilc#%-Hg?=YtRb6jh8o{ zAQj#Sk|H8EDYxLhX%m4eh7P9HWf1A!*CD1aS(|BPn&|LtXx;-CNYnSQWZA2&N4~p# zq;LAbbw|K|n6jP6F=uZ#!?w^~P7mc~AaAQjo_mkNNxU)uq3Y<~2ZK4js_Ew}B2L0Z zubE`}Stv={lPP-fpLnL!t#fy!bjMf^R>`G}J?<5}d<{5!a_oaTIYsNrApC z?)yx3hWhx2eB9U385coT-)6T@*r*082oUno$@e30Y}_J)KzuJMYl(NXKg3jHkw4lD z=oA0*$gy{={a_%++R|O))JbMJQM{Juf^bZZygO-=%lWc!E6Gls?UhE+@1z91yQ620 z90iQUrDzA<(QlB0cY9q|ad;f!<6RmA`qF2al1I^!m-PP`b+Y*05GK6-xX28;Vi>3} z)(wao#n(5d)#Jb15a5n_ZQ!~LML`l?iweRw;1Wz}{n#+|YW8$Zc$X^QmZB^eVmB~| z0bXK(ZjWI;utlJ_30H?ESCFnT9fft7sLvG8&;<%Rhn+WFr%qM$*}%_edEIR`dL1~c zh75E%IDy_A>BXrEtc)dX5*0_MSB1n(yIT|Dnbgv2|5Q1}x5-(%I&>F{?jm*v)sOr= z=VCm-z6iI5K4mHlC^&81tbJ8xZH%@qU<%zYJ(n2M1b&{Kq=mJPEwSc>$FX z6tSqrO2#909fWo!N$=Mw)zZJIHCF~5(g!LSblH2k38x+4_jvA6%^`9m9I*Lf)4VT? zK^L+KukqucsK-P5LcBr?J0X8&3xkvMjHtfoh~_}a6a1(82rB#7awHCc6nl8p2f7;P zWC@us&b-$zte!DrQ7P7L@#HWh2vibwO-PoL@+u3tM;NlC?F|17KBS+t|M!k>Izbd+ zO0To4-265c@7YLS-DZYIVe7u!`RhWj;bv^&(qeDifzTCx!!JoAmJRvM2V`&38!U=m za(ma`POqXr(xBZ28?1t?ll4RcJF9%Jg2n#3%c)>${$pN9_V(EC^O8-Tq}p`?&94CO zJlq6-s|dugRug8Q>)F&%cbipl-jHlY}iQTJh*K!2tuN zpYFjkjK8XOvtnI2-J_0WAlWkoB+EwcRVs@RWYe8~sRXMP0jPJPxD{h2NS+G!Vz!pTWpW6e~j-sC{{i9Q`<30~yH>J_= z|5a?UP@%wHqOCHnE+Tq8XX^_p?SQQ5Nat&#-)| zIi4f^HB{T`s=U6pWu6VWMj`1;AoDJoru_?A)OTlr_anCMGpIsF^ou7oZA`-(f5t`t z1oMmsLof6J8v1AYtSfXPf3wVW{RhGrDh>l_TrKE;qb&;ExLG@2F}R${>tb?y!b}=k z@~52aT*XoZ!;{Hu2}D`yHW=tJ3waxOKJa0&bA^$gC#P8ZRa*4qHIA^7zIVUsNt-gusCx!tij>*Mqk6r4U{%qTSz=w+(6t9yIjJyyI{P=8MJivh}oDI81L<52UC(HBEC_5)S;l zgfGi^l=+yZT_xR4zAb`qG22-kLi~fx0ofb!Q=OgSEsMOxUByNBHLWs^3Qt$d`~S=X z^s^s|Om~Uh)YfWrANVG=_$x2iBIYw@fCrGm{Tccf^At40bq+U%ONhjs=-X8yHK>!hF+U$3W=&`} zUy_aHzkU75h#U|t_qtr2Cxe@IbICMiuX>#6DnyQ>T>Ue$k8@eTQiP0_q^n9E%qI3^ zxSZG?6W;6c6@t*zbs?3_*8vC=Czeqe9Xu}bt?lwJb9U1D0Q5|n|{mG2#jq>)}6lRX8tEitL#N@BQ z5I;*W+l$F#P}E>qgw>|?R8F|&FpwkgXIEr7KNY<0W)VW(|rl9^1 z0<191CL^T;r-2`={ODmI2g_GL7PF$|>Y9{8PK^&U1a$qsRmxySCNUB9Q(~-ia>=yW zZ2$kL|DVzE=(Atn8k2q?C8WO0jZvD+7L;+y)a@`%M+wghbIso5LtlXD3mC8gOib2Afudm19&F?=m?si=5FD}rm- zU4FxY9dItzYy)N!Vc+;y@$f)HH^ZDJARn!R+Ca-~a@2F!NT1t(lq2qMQJgFtkg942 z>R)K}@4!%08q+jglh$d4U8QBz*4&Kw5H5JiGU1?h09@GAVD|)8uX_r&8_zd1mps88 zdx>BIMPGjbc)dSOwyWGw5gE7#%#84xwZ0BTN7$8d4R6NVjdvZ4_!R0}yBpB!GS7nj z4{ZQLkT%DZ?V*pDkf7H$pl7#|Yl3#Cv z(rdjvi`pim=*x4uAVTWc%mFOEc+hui2Do!WB)hvc4yTy~6?C>;?&WiO#Z37(*ogBm zJJf>N(6~>CkZWjI{RhAE7;}!sC|4^~teU@b`s&{0*ygz^V1GoPpou$4bLkwO0#8w} zn{td^e7f@OX&Vr)Hdo+A)kR%U=j0^-^2GR`As6CAyiT1xc;6ajnk4z6nK|91olN9? zwQh9)mj4LWwSQg29=8Kw~eE zGAUM;$4ZdWf(`XJfm%YDx{@-nPIZad|LnkOKnp_42&ByPS^vhrXZp;?lqTsuAz`P` z&HCGKVK{oxx$NaFmswL>E-fC&TZ10WJlESv_l&z9QKlhuwma3gp8@9k+VZisLCb;w zi?hERnW{^!pyN{&V;dvf7~HfsZ~Tm(Vg&U)1NCl&w+b*nzTM{&jf+(0uYxL|Oy%97N zj$_kFB1O#W&jqB_*a3S|f7POg03&2$fv@P(SP*7h;xb!pHyVJ<%$Ie62P9)nS&Qcl zLjGPW*ev4n4Mp?xrp3=QL&DX%l;BiYx&PT+lOd7-KS030Z}YM!sS7vgH>p_4V;uR* zRxJx1ZHT>P$nwWiMtyVCM+KMr-dmXb0LY~C!VD=?dh4ZR3VHr)<$`d!j;q_3{%}Y` z@8{{6k53Q7dYQ)EhDOt4M59nq?;G|awx6{yneKfjhdhtugyn{r=&bIi*vIJL+1*IW z9I(QZrT#X=hiu@gY7Cz2=`9FH+Rr0d&_^_4ilQc zwY9Ujwn~n~;>c~Qn~yt`=uv`ha<2{z1CmFk!oy;EHI%sKp-@ncP2^GK{2?=b+%u<6 zZ`S-ru818~mHMD*&pXA!R&gl2FIwJwd$tW3t@pEXCHj%de_~OG0W$zKhBJ5{pn8`Q8ay2X zLK}hrR)q$&Klh47@6ve|+QT$@J|gD*X^~!)7S$-nIEah$%(T}T!o*I#iVkTsj>kPt z$t$+gsdTjqDxU+e#^dEbad_mbP*=OV0!DT}>8TjR!zisH zT2Qw9T15A^qkJ|q*0^G?v>u!ItKQ9YRLCxv&X!;b{w}@EDr_@U&eNhPWsIvYLcHJ3 zLD|DCmWASnv&o4qbf$pyFP3ZTPI*?j0CaJASWxZBXfp)_KZ4hI-45O3ZV3&_ zkaM#P)1Ob9vD42@%?dz^rd4aq?>t$yBcu&m*emB44UzxJOy~{I`6RWGtU?&oTd@6@XDMyk%AVl}AMaob7+Y|W5@fJ4;+W%XI! ztO_D(rQ_2s5(SN$<+(hUo`?B|b>~+M5NHiX}DfPXInnEgq!o(2g2oWC0 zTgPEP0aIHg-+8L_G*0`fSoP!VFk>+Ws@kKj9qq?Cb>nYHIL1ujLQP9(s z4u2#fBGKpvfXfUgp?&B!+%Gf8cRmP_Dobg$u$fYfvBMVXm?WijxAOyim#H6oDffhn zP7w#MS%jfu?4TwN%B^9>rck8nz)0vaUq@T6<>L=14Z3)S@gV6lD}}<8W&reN-s38Z zL!m(($T+z4_}M8bz@SrZZn@b9^N#@(x`y{+n;kR5AC5@z)`c0Q#!l%#CEk}ZxaKxpV|Nm=PskB zE>u6hMbg7U6BP1q;DIHY%wVC8I=Ju;B5r8K7XOU-m?~zUF`MARIQYmYU1`z_lf}7^ zQYglY(^Z1MyJTWgt1)=9jm%)@KT^8RNM_UAR28w4BHrA@{kDeuHCibcF zFlG?ono?e-UZlgag&WNl=mn>_enl`vlTS170kAuvs%$4T*yeFh}Z;KN7P3d+-DqPX< z>NAn3*W32#pyZ8jLi5z{0&dVky~_epZujbX4X2i4e)im|zvJUnbB)bqw;t8%f^0&l z!(517M+M=6fh}e3?uPWrF8XPYhnvjoRm&QLK1jFGmwV36T7UK*?9woDvLv-`1v62P zZ!>6h*OyD>wdlIn-4Z0DGvH6A^6hrAM8q4R2#4zHH}1iq8|zcfC8a47@jiO>O#J-R zN+^!a14Ao$I&Rbe#>IUv?Bm^(e)dL}JI&x+{cy?DsfOY3kvwV12_aGcWT3w+Mqz*Ta8b+@2#OS1Z=jB^B{*B7KB&CB)~i>MI(nm231jf7k(W}7bdZuB&Ekgp(64+q z0;nCyO+~=NDNQW&37H-f6TJ$oOWDhNxPJ91vhyB1TMC;Oh^AGBZ2R;e&(eu6NCi2Y zmoIh9>h2D^tvAJsLy3ucI}mFnW<5S{@@~|P&oOG1%!HWEXtHVv}24mtJ`3nO0W7ln|YTc z+)`rWHfjxez2-^7qvJPUPaE%S(M?Z&?oneNB7OsN+UvGH$7UWFl7hG`e8^khIF~1^ zZvqWGY8`Pgvzmlfr4Llfm=i0$sX8}L0Dp)o=Y!O`{K*phR-R%Ab;-=GCsHX*75k9W zRX=$CWq4&UJ#A(CDk1r<^WV?k@3@|iR7bz5^6Oo_@!?OFUD+N9nZ43qwE&FlO&s@R z_vAWQZ~N2gur?lOANibnKAoAaJjm+|}FtFa#SsPYw#<)j1WjR;xK zpEoe2ICW5%?A#)7VNK$bBFmdkLCM9p)qNgpaKIUDkm!sz0-m2;aMryO~$wPvkv8+^p ztwaDeENF0jBCLh`)c|T3e2(&$HeNU8tB1|Ob7LrWen>j%ZJv7eKR_K@W%eQO>`c!3srNA$<{yf!BuTr|TdLz&JVH~G&qO;nA-4yTLwwSDm8k^GW`ViVNOMZIJ8zYU;XFu%Yq+E$mV@?nTza7*ENI(tYCuaZJFET4&FZlsCADM z|H0$1=!^d3suvpH?x|R79kkkhS#qHoh_U*(IAMZdSN|VYI3Vj;0D`ot?-u%Ni)m)99+PW{;(GBl zt<&Dh&Gx=a-AucnledB*Io6h>35jW@7AuKJfP|iT^QI^(k3M@P3yKRQz9?FS@n-4} zh~@g^&bSiHM6EJYE&@oS-ry;Q}lH-3pM(-)9Waf z%B)#f7NeWG@SJ1a;VleT)nO8yq~bhto>7O-;)tGJNC9?Hs~g=ojQaSD=RgZxj3VK7 z;7VD4F1HB0R1lu@#8r9`XN}%eigTjJBZx|4I`yi#RviBgdA5K>OVH5Zn zVPV#Qe*qu&c*hozB2P|*3HWD7&*Yz`3HAzUz1hdMLqFqRQ4icmP-(I{tFWdmP9ud+ znEO$#!`?pAa8uQ4wCj(pOBtkGI?FKuCL8~bqukbb-q(1)PD`@)5+gygC)Vi$88f&O*Lgv$sw&zq6GF9ctT4iE1eJ!* zM>F-q&PK8p!m1;*!dPapm9ezTW9K=XDUVtZk0~p1PZ2TGlg*qX`URXxe0w$8Gm^SZ z$oyC+9r2Ta8oh6j(l`eo_VE0{bldHKM0-b#oo+H7(bf?d2+xulO~a-%qqa09C7F?4 z1LD0C(ush>g$Izy<%`8T*hl}kE$N%w(>3tb^5vrdH8TNHRGPMpDaqV!^8!#W z6^B!rygy~~ClcPd$|~RB%xqq}s_*-`}(0rTw)_LW2>U+1=80-*EJ<1JHH3%+QmhED7$1bWCIi49&20#UD|Wb`^!Mv0vVAdT-17E!2P8R)bVbU~KCJ zWRI+-1MQ%K7n@6hPxd}Vy+%Ou@}e&sUA!fI;`Ppt_nT>~t#M9zVwq9@eucpMHb3}& zZcbdrFU!O%;KQ1Mvmp5OW7k;yPdTo9ymvu<&{k%Y?*VrLW?Qen{Yn~W(KC2e`L(Ja zvu}q?KBpHJqN!4#k<>)=jgo66-K+S{w?{SpMRl~~6Q9ICC5$SpS;)rp_QK}+HzB)1 zz{YOsP#Di#_Wj{!Z)nnxG$tQ@RONG?X|QZl-PKcJ7+bFuT^n$*HWPyNXaM^tB?dV1 z)(?$Waxtmfdts5Ht0~@n=?1zW8JN|gh)>?4SkvvIXxb@NB`@&jv-DrO=0`jd^yS_x zco9foYyfnD9VdKY$zj@=S1$IEOt}_2#?fmyseRfxZaEK#kAo;WWJ5&$s?JoD>;$wx z(Z65v?lIycTxHSG{#q8m8A31FUO?*sKOn1(Z3N&Nf!yk<>0j{6!c+v;-BZGaMZ;`$ zfSOV&XKv_JxlZdHlM0z$>g8UYW9G&w)D~8HUQVkRRYta$=l&`!dy0W%o*k5WsS-;M zxJ&6UHXMAi7QJ;%leMnt`VxoT>tY&5o-gddALtgnvAwTkFp)5c?N--$i@3%e-_i12 z;da*h@$^3~h2WEYEdW8!Mp*=47$0PLk4ChfzIv`ka|r`J~U$duJ_lcaFA_$D!6 zGn`0y>iodDf5&w*t1tZJ*U9QsU@sw`(s|ZoeuEf~YSw)Ntt_YjecQh;ijkw!j7IN&qLWz(E@D*Trui?w730t~piOor}B z_qv-3ra9cV4B}LB9e8D#TKzHSj@sf4e*agW-zpwEXtX`@3AOp^ZJXCzMM*zXn0Qrs zo$Il%2CcW26Eg__Kp>Sv$@9AHVeLHfu4gE}{6~21a!}+eKCC?m!Y?8kb znAGTaoahAbdfad@{HN)Ld0wfdF96jldO{qv7eASg1V@x(1ci{3S|;wi%KoUFj7zc9OpC%N{1*~B}AV;)6)5iibfQ!UtN7Ms&npome9F4JlTPK)I8 z3G-ybgKc&XhA(|&sg)&hN;Oh0%=8bnGb|)j$QpSwW?}=OR_2M9`*FH&RUS18X1Jws z9<1*2{*tQr&B5AJ-si%f&F-lxn3fWMQt|o-W#=N<&!hNjpm+FyysCOj;Fna(({}O| zP0-(7olF*5PWKD*P4DhU6w0H7w<<^9*5~eRgo{}$0p^*F5M?sc4p!N`U%YdEX(u;4 zbo32nH6V;WrCol9%JJe=P5W&*bS-S5MO`;jIb){&8I?28r+U&5t(`b~yCY^%|3j5O zPGj}A+~qpe{^ZQTjL69u^|_Q$g8`zaldPHZJBJ?`=)bMMs4R8&YXir$k^*#k~V?Gm2#@-NCL#>Y!|HN>Q?PF zY%lAwvKyt(UOB${1W3IeZ~UwL6T0mQsA0z*2rdZzx;M}B%X>CH=`&oZ{r!(g4o*o* z#9{uIKL6#w%{{BCBg2OWD7;XNUo^`dArcFTAICLGWRzN;W!v^0FaVbW=I+=0TIB)N zbez2<_^SgD1659|-MkdkB?rX&eag^KcyQr*fKv>hXBcCy&~a>&x|pBL2RVtmM1R{B zb=Wl2Ig(AR*&=sd`a*fO!%Sl`CZ4K1hI$E=;Cd&pu@;7wFu_vXq-oZL`o`ZaCeTXG zJWdFqh+m7{<4?S)mg{ak-lH`U6A(>ZrUQ9#T7}Ck&0^bR^OoQ>m5&pey|}ZC-}SNK za?KNAM^w<4>GlD>4eqaH)!Rk3f4oH+i*dJy{t&j{fInXLTyd#c51h>Zv$%~EvPf(* z7Ta4cZ8>fw-AbG^*KB$3X)CyKKp8K9dRePcHmNUEEBQG>g-X1wPrPFhB;i__p#j8L z_kWM1gOys4qZf@nR}W_f*My_0AOZ_z4dPaO_Od*w1@TCEgnt|sy z#C9IV&p?dPWkA49JU>JXZ5u>H)bryP6t%%}jUS()9R@anT;$1<@8Z0mnzKHQu=6uN zvInf>a|(t1w1P^r_~aAH@fEd8-9RSuGYUQK4PEjt2Mq=YMd-U24X z*3gb|#G7HcCtja!`7D-rTIZ=MI1MV+OVv0?#L$DF zy3E(!fVeppq+#4m0O1Q&PuQSYsI`459j9GBQi=9*?I>ZhWA-V?@z^ka8P+$(f7d2)Fyl_t>YodO9*RfIIcWykY8 z0Zv)mNOY0tSf7WhE^79Nj%gByP5f+*HadZ>HhA8nQs&GE%#%NC}9=BGA<$m;3D0oJ)e0Ctq zvb+B6&%>m+hhxrVhTx^}dx3|Z_i<0G2%hNF5mj=oIXG74Py{r_1KKF}^t<^KqI}|O zq>=Jo1cM7t)MaKjcx`Oq_OmV4W`k!wlMm{+O6iCk+~$twJl}0*i5qPa={bt$09c-b zbeQcz=@Vu2U6W5jI_nd<7AV@F5a#riEZG zR+R8sLG*SAE^br>L;=o|hqxKz15wmeO`GTu!kz9|T+J8ItZE8rID$;JtNX%S^RUHSD z&3N&s8C2l88^TTEE3zt|uMM zg0$z34f|4a-Wd)eLJzCkj08pJJwKMTwu67-ArlzKvG|S#X~$9`jdBVaySUY!_$J?wklQPi-FfX ze2?q)))|I~C=ozcL&&ot${d$v$?bcCOwF~hexRUj9ve( zuf3q^bH9LysFx=q&5PgSL}4q}*T*yU|CI;fdvj}Ez5@)M6ZI<3XgE$E!C}(^&UQq; z{Ys?Glz_0z!*f(vu_2+zwK|~f>)n@Md+7mCG+mXul2k>ntg^b=^Jok!!OJvAtB9CK zjWDQ3JpzQhh47h{P#5NzJWmmY;yzw`mQPwKo}Sw1&*e$YYZ;7A9iddYU3CoOA_ELw z&Vnpk;n9SF{YelFp1~k~8A^*A4)F)7bt$eDqO0YijLm-vCrZ1B z8G7?7lR_j9`(B_JTvLqJg7k)!q~6MfiL1+L} zs=;UY!$8yXN?>I0zE;_o%E^ zS%mUW#+8O!7JyGvC=A6-9X!EG=ty7gixe|xci!%8SJ-&{9Y56&TW%k)_CdG*br;E0 z;5F{rrLY$?eH*R=2$fhHNmzKkJ+Ak z$aeTu6G`pIay|*@m(?0qE((=?F}E3HmNt-9dH}3$S^Di2>NMR=Z2iNeoAC8iLznk{ zF%VAx9nri+4uLZQ9(!;X>`sd}l_lU5>xu8l+?>R?HFg7kK| zXWb|;o4^@8$ud};*3{O>yXUW;X#839k(E}GOTk}K?(JCI>HStG{AsN1CxHovg+Fcn*GYM>b!O89Ka~nq;V#7GG zPcE<8`z#vX#@{A|ogd2a{ps_KaZsiFKsXN236ohw^79069)o)9JQ#=9bpSXxaye}GhN-#cL>&1M z7t!}@M5}*q(o6%ifA-_S(gBv#rNm0vMDhXLsql>>*h(l80^SsU5J;KI94mIMD=a(g zO_2K;3(>zTmbfa`5@U@ciWQLiDoTtw+9jH4yw?~1h2OydInVRHGPCaJ$N++T8d3t> zLDm5eQ+cPHHl+*SWJm8slYEMTw?%Jpl#F^9()mNs2NVDcxA_YCd{Vu0K>$J~7(f`x zZ^)$622Te&47**o{9MXQ=t7feq*mj7lFeom_4iQD-Z%~5r?2av^(0WV0n5dcLf-K2kBwVo`p%hcqJ8=fsh}u^R^zS{4 zKdmx)6#sci+}T%t>3s3pS379`UQgqv=Hy7!rAajzLZoL}_Noe+%!%}#&H;h$r+Ylv z=);tkCn|38*@xBi>sC<81OCs;txbDx!cWm)DKRJFob%K$cirJFD(?2>VsnnhO66xK zh0B=-HER$zuFRE3s96KP2eipw{RCWpX4Tb+8jXY?lXx+fXFq}tg~1!f0+*5g9$J=+ zH)VZ%F5%VoOUtlqgHr&&hQ2Rg0!Q!)v|`l5V!&OU#H0C;zHTzWe(ks}YaAO;a=@`1#Le|mTDT&_wLyspy^&P-g;9W=3+I;0-)Ew=I8GTpct zx>mV&K0~Ef{cI$owY6S%7czfBN%F&Ep0X+QI!fH=VD9>L_NBqz*!H6_@2-4~Q$EUF zgv(7-)4k0CuRI&3+Fh=$?|ov4g%t%~xE?Ey+?0V=q*_S0v0qxVT7=-;BvpU?V=(1l z01xzyxAngc0_$Wxr2lfV;m-Y>up$x1QV$5u@D-n3^{BB%f2z3ID@g#80XG& zLh|7z1&{lQ{pd?!zcHwQww%0qvYjdNEvscA5#um6W9%I{&*9otB%)9zB zJ7}i4%D@FmEu`F^^10#s;)ACnDzehI+Rd+V^jS!%$D1N_lY|Ol3XM+ch+reC5jWVYon~a)? zD*SYPR70Uy-3dqOH5~~(^B0{dYhy*IZyx^L)LiZYekzwW$vK|w*}97bPVHF$tuahZ zA>aeu!fsd?0a}ioB!`q+`YFeqFoh&6AM}K3$8V<0DGFxT6zI6|A==EOww(Bnjo74X z+WKCH~Z=OUI0jZveJs4RJm=;tv(fi%46ch(Mo-gyr60ty}Lpzb=eT2m|)MyZs0b z=;mt<2FXYG>H(j!h^<6zHAv4bpVEBnv_9=>t?0#1)C5Xm7M9QoYH2WN4~lVb;+9f5cp-YPmgM~yPt`$CQ8RpLWX;3QMQT4=eVw-W4J)1y`j*ucDGPZRzO`pAi2>Jy z`-K^|uIM85NOVP+YTsrZY%}l=6^3pTdTN>2#(g@uTPbfeD5)PjG!M8sYwKPhVi9GM z8tV0l*YRwnuSP22V2F=FB=k&RKbDKw?h*b)DhxQ+);dim$1KI*j(jj=Q7eqwQ;RJg zBa#-d00@r2t~sOe?~0^dxNpe_@cttIT%lOQ3CFtv>>*LkG_+eKZ-im3<%N-WKTW2$ zmy@0u|EKGSkEUweICf?)qwF>d$s-=DHni6sLS2| zi#^iq^RimcElbvq{0YYau>hK)|K!bVQvj4R5nCzswc_dNDp#}0W|%t3{W;uy_o2(m z?u1vj`V~?q|}^nu6W{)p*j*K$qcz@)~$2Q2JTEAu&C1;rXZL#u_Vbnx}-L`GnuyZk=`xqTf2+4TR#?jSfnxQ~c5A|20{8Fp;R_-U|IA z?nP@xbMcM6#|`7K#SidB=T2x@HTf3P_&AD_T%DE@zF4M~B9#bW0_buwldD0g`?!)( zdH*^wl6FBd(lAkZOpL`dOOEs#68u|1jdV{JsaPpbMS>wJShq7W5GrtpTeM!S7Owan zsjQ{OqBu0|-)x>t*{VrNCxF)MH?#elbrZvQJ;DmpsJ0a(_w0{7-2;9GCl(mvpFsfu za2c}g7ECy)>zPb1A?1!=YwG9=O+ylqM-=)Eq7LxCD)zhqr(zeH#uR=8H7}egeB>Jh zpiICtXXV{05rt#N4?{m~=-s_pp@n2mR2;O^mYvCa$=m-Bqa`j;ExdA}Zuyak5`&Q> zd5t7Nqw~?>}uI=h;3Ke+9D-=A)zWezDwSh+f zn|e|OhU=IxDdBf}`PW;L#rQhH{<7NRq8Xy^njI<=O;z+( z(NWZXRE>ju=aIC=D_Aw}M;p8AoocGCuXG{2utcP@&1rgYvFP`hl{}s~AGa6DlYHgZ zmIT2|;<2GAj^5e22GPJitnu)oq=HAIZ*Lzf7-C{bGYuxubepp(pOrSpHe`n)H?kJ3 zFLGE!mB3>@%$rK?!$HV2rpW=B#3w93MWdFZOa6?zpS^}xp9tq!dsOL)Gqvs?F?6Q) z_^Bvf*!QtJIK_@oZ=b(@n(pg3QfZr2|EnBQe`{9veK*Fb^s+6lAdQ@|aK}BJYX1AY ze^y9=ZH}a*bB5RU%x3K$Pu7{KX$!4}pg(E9GPHX<)$-rBMHkksimyp7UpHY?(xJNg zeg+f*Y3wl%4d>{?U9Gm9Gp|exxfbdiZa0~HxDP!IHcg|WTiT3$(Bb*Pw5Xi!S6B?R zsNfP%Z*nzfemFc@^NQs9hM8dHEV5(5VD{>`G=RAFM4!c?0kl7NE68E!h0>!`JPkn_ zj3-*Z?rqKHlGX;<&H`cfEfDKJ>IN&?KWFcxh-iiZ4~;Jm!Tla zc53v;B3C_tgumm*1L|1D5TR$&4cBceUOwe)s*Jw%TDxm+>*=pCejI{qWME>jk6?zBTS8`PDUj898ZH;;JblzEGR{8^Wx}3zi0kJ{F>Xtct2NAnuoI z_CL57f%s^>m=krw?5?^Ic5o2tO5yZYtlTVdq`G=d-1Hlz>zs@9IpIoj$V4ZVS#Iml z4nrCeCvJDexQNzl6Les}(C(El_P9@fjKi?7As&qgHEYa}kIb7JADyaYof(^ElsSCR z#J&<;k$w78q`nL}M(UT-cvjg)XEy8OVyNGB8)RnSnvrbKhPcVtZd};sdh6Dmm%nmp zmu$cDUK<{lF+N|Hm&(y{VboJ0y`PPjH|CbQ>xo)RKQwRQnRVkBVO_hR@PGkGo!EH1 z7l8$XsLjmF_C515s`AL4)JvYv0@na~6J_^Q;e9u8$e~>5CvmDp*Zjub@KaR(aSt->Hpq12vV(EUHTr7! z$m;Li-%1eS$}au7%uLhf?dw0T&(^q_wW5qd!rj@L8`Z>M{o!3(oz|A5Yuv1!?>RRc zfBLF+qNg(2!(Q~iS_F4iuZ7efWU)oG4@bh=Svf(7lT8_rFs*EZzV+;H#Q{psJ`LIMm^a=&)N5U`*ZH+o{ORRs2RF|DZa&| zu`Dc^%_dbLmbrhPN26Qh)b$~dPRKvloAw>JlACb9_>jIEk1KU_pn6(9hnUQ*v8^$& zQah4J=st1|-=@mB7y8koacx6{r+M>vl-SIeiOjW7!zydfU#SRdC!fB_#L>v=seQOt z-W|%d7u=M+bd#ixaEa+)eUD5O25EFSF!o)Dx8LKhxJp3j)a3cflwvq8#s3hkHSFte zvId&8rA>v4=J$?v5eJbqt?8`u7eOz_B76O1qOd>A4ey~YK!-eYf0{a=*%7~DvQ8f; zJ~>4Z8w;)o_8SSUY572Nh^E`;MPu7n!k<46e%zTw^x)UbgEuDwXVg6aJhwl4EaXYqQsutOtN1+ zIO_aePft?=?IiGrx#ys!Ll}VIoV{rOOLW!yeOip=gBt!?u8XyD$CJ{pWp#v3VlQ@1 zEY{_ks!cn(#?fch<1T|!JWZ`WZGEDU(P_I@3u;0_w-!=VX>ob1TSUhUJV(JtrK>IORw_jzpM{75~>ts}qm1}Ef z@iv`(?NWd_eLQ36QigH^QEYHWiq~?+bsDv>Nnl-_`QjlhG0Imz%9Ygg)x!RXCgHkx z-^1t$8sp`5IcKB60|9?7uN-cmJGUK>8vDVQE?Z<1p>m5}Ci;B>Tr*R2h;|*qEieYZ zV={CC6tf8x!A@(=k%~uA9ezcR?3bpB?a?0sD4h4``;3STzp0ud1(1z2^`fc8>!rk+ zM{4XoSZ@`uhP8VmJLQG}&SoHAez~e7KotC~m<~+g(ua9WA$le(RQw_pmHRGaLZG!V zp=~yuM{(tZT_P%d**4aOP^Ps^^O}ojqL}LWbJ7aT>t=ZR>#A3?+EA9b^ii61s#!9- zIM6>4wcos$|5(R$p)PnksN3QoN2?Fv^iTKnDMm&*`Ph%YrILc#(Ii(+Y{ZMjlHE}7 zU0zW{{>^ws#i(EM$LzU_iUR$_iMQ=5dZlRYM0=;I@{p$^p^d~a7quf$HtNXTUtZ@f zkuZI?V=Hu?r-tl0nh#YwKVMH8sx36aYWx$AREem})R)(0 zp1B*TbL=$oK%akuH}UPaV3woNF zGS1|xQ{Yrpkz`2kAgR-A8r6A%@X1;#@vBL1=mXMzTKuJET+7pD3y52_z)KxVgKjM5~%iG;?zyac8sGr6xx ze@)*)UPh$KomUW{YN| zqr}E?w3A>x=crs>6kRr7?kjh`P3ZGjWCg%?(9Vxn6|UAVF*iSbXq>?4wOSjr>+_P-a2|Ee^;)9_t zO~hbS4!cg<%9XH0gw?kMTeN3yevFH`+R|N}+yv$(8l>4p!MkIn2Iqh%Km?P~2`RnJ zDEgU!PZW&iFUnUpFJ9Bx{Y)hdAK9k^2HXM$K#Ycpr-hKh(K!@(;tzWKvISdUm z54lA3F^V!nWU12PH0&ka{yS&CI=FV%CC8vg3I7CAR z<#-zWavs|2ngD1#z}Q_!M7-xM=M2N|&w#gU3r#Lv;{U{5o%b{S!~5~kG`%5JvDDLm zUCOldCDMnU&MCiQ z&`kO(L`xM|sb8=^UP#Gdvw-JG*?zmtLD(c;5|1%6kS=Vs0iaJ-;TK$>wD(+enHfMr zrmLDvh6E$A32(9I4*2|KyClu*GW%y5}|zn<-DUf82Ts zO^icw(ymOD7nUIJuy6a*8`e#vjf;rwj(g1bqv1)BeNJ=sDqB8On;p9MS%wd5rnVHmttK4ds^M(Pg!4|CB z9-O{w{lIV>bPIzGlBM68TpSgTMfE%8D{p6E8$yT}o1F0XtF)KSME~qCsiGaJBPkI(03)%~Q|bOc#5CRlMGD9w(T_g!2JH_o_VGH(>UTB!yWwnz>$UrV|DoT|Slo zK|sF04{O!042df-rH5)-kgZ;psLXF4Sx7OHa2LdgmyxNZ1(*SP&(8|HUYy@U0Ce5rpbC&^_k&J3GmAa3E&-*k8y2 zGY_t-_oCn%cu)i_K@f3~t)}m>qRw|bPKaBY`_)oE zHP^)z16SRZm3QBO?$KWVEKsXitUAZpr6y+8SfjRAW6-4fg9C_s+*=viL;hYUyP->p z9_wHg{z`QThgG#U3T+lRhpgaM=KFaC3w{EpugVKLn;xgNxS=x;-sZ!E{HoZBu|M(C z{s0DSm<9hdoAGnW&JI<-R!yc0=#Dz(!+S6A1G_Uj9O4d)@O!8s+A!nmyoa1luDT51 zD>AnRM!!C6>U4+G$X;J3?H}T>%^Ms2Y_3lOeBW%QBUp#yB2wQZSz}l%ec&}@)3=Wt zfruq%$v5zJyZz%-qqN=sgB+bs^|j?^;m%yfcsX5^PwOuNOS@L zBPnQk_=*mh#|@-PQNml}8h)R|8QuY|2*5_ShnW)FfBO9KsIDZu z#a8=9QBVxVLF-C~4{yE-3v8pQ1qRp2;RJtoO)xlm4NO@)R(`L>nh&}nIEEdhAxPJG zeiQe&tjwmMY?4TB!8o z=DTvX7hMC9_r-@{TvR#SkS%5eP4DBHTJ9>Iv7ckuZIT6i!TR9nr97iEbPKnRuKTC* zz0xJpYs}R<>>QLECk=4@c1;!f*;^5(JUGP>`@l}~ke7Q3`R;%x>t3KJO^14M{A#E< zUCl2j=rQ&VuHgK*`qgDEbVH-N#AB(glzl#1z#lNWIg7mlhI-)uyZz<{|J}I2yM7~d zNQog_#vsvTKq2a__I_8 zElfq_TE=T0OuVwFf^W>1rneJiIj4J(FSfh7qk`yXxfGf^*~7@0L4x=D**g#=WT$1} z$7z#B8syHwfIB;HD{FOSX3Sr7UV{h_qX;1jjZ*H9)2P;@TVe3ufJ9dRJd_}ND;(E@ z_&mI~z&3i0nS(`UsQ25jBxfqA)S(x)-F{~9M4Z!1YofC2Z1DB(VBZcUZdxl^=@hSP z0*#+>2hc3CJlsNc3b)8I^&c3pOT}jQI+Su!hsE2W#+!Dn#pOHCQQb+n5IeFzDwrTn zxwc^Z21oMwBt2{qqG)Qet<14$`p%nok(}~9W&BVe9Z+|Z4p@5*I&dFO>gg^6(7Eew z7d-$0oYO*UCSw5SY|sa*HR!b|izWTw5Da8tt_>D!4+b0xyQ+E7RE2piOdp(#!N%QY zAk>=q@91+(jvVml=x)IB$iMp({@%Nar(~!8c|Zfn zX#WI_>%nur%`15<&5$yzuB4e?fJDk=hk*G8Odsi(K@}OK{_m?Gktd-^B@%KCa~z#v z=29UHVuATKglif&O2CMx@!_3fs~^r)g50)gMf+e}Kt;=w4ac8M$qKl*1^908hCK*= z7{G#RHdy2W>L6A}|7_yfq3gXxhRHIAjUv_$FHZItqbp08{k>_T_fI5X-I6sf-=-2D z$QT0_hIRuMKA$Ah#~z86YQpLY&69Pc=wVLrJzNJV+yv9-Fn)d2xb`Fuj#mp(*M}BF z+v}1M^NpG{i`#qfY?~#uO~pin)_CBvS1Y3|&ZaGj72F~~ek)Xf>`-I??s0%H?X{?7 zQ!_7KmIBagdVZCC`Xiwe#_i~X8)4r`RDP?#ENcbdJ~agb>FqpZp53bEut^nh@(6cG zp@3~9INBLEYeM+k2BGOigFpqSa%`&I;dxWpvQ3?5NBa|Evb&O6hx^T}fL%S9Cm#~J z(~c4du2oG00;ovAU19+XojA~8X%0X|H%};Q6~^H$X0s+Ff}QB?Yi~q2p`1CBy#3^s z86Os~x%uh{8Qbe8askFuZ&9&c3sxA}8f03x4zBZQL9;k$ev>->Qg|C*-i2PsNp9w& zB%H7|vVSUPQi|G9>Me8y0Lx(!3uIcbhq6_zTBzctKIC_U!m;Bz)_Na0`0= znZ5N^G-FZMI}I^rx1`*)&*x@@WW3V^y?%Sl)4nUstUo?#yr!SKdexBh2$ZT~w9kP| z2yqCcZA9lYPTGc7{+}KeE+KVvlZ5Wq{au-B@kj|xe7>BTAl$DyS@)yim|FpfAlby6z=gnAMBgF}{ z;iLT#Rz|@c7T9Y#UPJwd9hGeL%-qtzM5Rz@ly!8t5*gQc$O+IpV53@)xDtDUw_t|G z`y2{k1hrgi+{cda$HzrW)T0u+RA~(SJtuQEM=@@OB`*-1di(1_9iP95|`qavz#VQPe{i25_i=zRylG)+-paX0Dknp9($s1pS#5JjiSK720Ju@solmp;75uz2 z($997Z<3tZQh{_LmX~(70t(h@1QGkU^h)wq&<2w~@?v9h*n zSMx$iR|xApu4aRxDmv?qb)<(#uU=l#R$`D&DezcERuXGThoU>Hfm5=rj3AYl^iw0G zyFJ>*D&>yNLjO^k2bv?}s_lq&n^G^_Y=pK8sKG=*@-iXKSLkIbx8%KO-C6p!X-4H?%3TW?&xlbjCW1*k zW9T$^uaQxCgfT33VRzlRn%h9;4dgi8>YSIkT=W5A$56tmVNQ-8>lgY$kntp1*Co)= zVj(!4x7QQs5SusrR>h)DncFT01Ug=#!b=!9sm;B*)P5pV$7WC;*iY_p;l2<;ubcF- zpvX$&-Jwu6drcukeBLZLrT)d{q`kY^LW@7Y5r&%W)=`U@jm45iD`{ET#CYj(CTHMvp&4MtBVLJ?XN)vNSVW zV_u^t*~ARn^x7k(lZbk@7ZjPE_dK@ZUEOYg2oGmkbJJXdS3HMIQ@0)RnLhCyaI7sM zk)Ll?ELMH*y9iE5>9RA0oS)f7AyRlyWd{` zQp?Mx5GfX>m?uY4)$w#lHr`4M8cIYnUTN=vq7u!-`foZv=jlBU1a?eYixj8#=(z!g z+lmMAx%|;5oyh5A0h-}cg|dE&&t)SF>J#Pb)?3*>q87GL)$GCiN7Jff`r>_MUUl{! zjWi?UrpOdaW&&1yq<@07VuDxGU)cyng;)rf+k{L@Mzz9XhKls0>w2 z%|L0KR56?q`WKnw*S2aH*1&hC_sR1lr?g1kt$t8Jh3kAa&3e@;zUeLaNoS;PRB(Ev zRjp(GNd!j8>;`{};rN=#OC|B|(BtD)t{89HUaDZmmu?4nR?JP08+4+Us)o0D+s^F{ z_N+U}wCOYsIeJ-o&Re+9G8Iguzj-jf^-^Izr3@A~_f193g8SIPEZ!&+NI zJS$8ic7jQxo`A${E*~Ib{IiQ^aIA@r+PCvtWd%|^MPcA^d(&6j)0rvdUwge6==Y2R<{pq&OegalpT+{y1fp3<3No=lUZmM@}61%oHja*zohvkl4DOWc&;Is|#9H5db zqpii-?Miawd@@_ggV|ru+Dnpf#TRc`4Anv_50_+FzMCUTqq6&2K3jbh5J7lfS6ZLcq=&@(%5qrY9#A~61TC6aZ3-O1!gl_p|u@$x#zey;N>W0CII)Ha| z5V{ef5qy4O5j1bMg=0-g)3E@y7`3VEv{aAXfdOT($3F@$k7|mdWI1vF_l{3*V;$em zE=*{95NRB3(1|RKAs~Af+NAY&+a#LoJP3e5&GY0G>_IXxq>TjK5PXH1 zKTnblrro@d#N1&X8=-BmEH9{d6gO%YXF7tOm?r|!S(yr)P2{5xFeE$ zaQ-$b&v&Zh4X*7(buHmXK#|dRM~H|!9NM6_+*GN6C29u&NFnRXFWM6G=`VI9N|?$T zABqCA2(t3V{UOV!M!0rjQ{_{P_R59FI#q0WJ)2z9>xI&EDFN$uKxksnHG$li)M?E> z_X?&!Dk*OSa6(-;oL!oH(&=We0>uoQK&ELj>-l)iawKLo1)p;PaE*K^YwPG=X^d5* zjl=|jz|&9ROP81CCPrwFgAMfHqy?#l;3twUNtgWNv)V`PJyMj=E$<(N0mw)=;QMs zzcRq8mOz)l=WKm%N?^ZyzlDIvz$OexDEMb<+(2t*J7|1sVq)cPKe%#4 zG4#5(_#SDt0PgwoKU60IsSy}YFwjt~`QRg3HbUwcRKXb^I%my65lA?ggr)BzNJhB0 z`(1p$2pli>c>W46^@rREx~b7NzK&k2JXt)1Z>m3&!|c5DV6B;x80l#Rr{0&O=$0^M zW1i5%28@u_v12uj<#Kn2cpsu7!`S}kN!hiFf-Qa+nTYU9>JJ`oka#?3tS&q_Vm7R* z^r|%fFi^hj3paHPbv}}fNA~_S)8+#mKO8VbI8#F71Rg(N4aIUc4a}H$Eg|E)SA$~a zt_(Rf2n%x|^>0N6Rg*Du_;`tkLtX^Y<4BA%K%PFN($;R@Z^4X47C;F?c-I)31-!z> zXjq)bt<=*t-|EuB39bpzw3vq+fMk;@(YH>t_Lv782CiTYuy+Q&{dow(scJ$q%%5`E zX)1H0tE#lQ;#VN9&@sR$JA@%F@0>2*PqMqi390z+ZCEKn-aQ`$keDz+OnfY&{Ffa_=4kJ zk`2gQikA~*;%{UN*N_a6ySeeyn6SqYe1M5j4+R!$$XA!`Fz7|1E(zQ_Vf1(nBp6{c zztMH|Zy#2jugy!2K<);o@ijr7TV?zpxB`ENHVdpqI}Ei(_70LF3@rc$Q@-p5nldiJ zpJt^+hT8+wpsgU*m7_o-4Yt0)xMBZS0bRK_K*z?ZER$oYys3*2_hA!reT~o{dgM}Y zy;vH9h+kXSSCbomPA%LH+emNU$^v-V`R22|;!~a-Ql`KroCmbM z9FfWDlfUw4;2F#K%ainLeL-YaE|;}oi0#NAT4WT%Hj~ZS{=`BrLh3J${MWVNj}nqyoCVa7nPM`m+5gMijX{rC#J3*H47{sQF>N^~gZ#sC1}AtMHDL;vgA{$Gi#0<+jZeSMvK5J4hzqOpe>__W(iY;`d4NXc~;PHvh!tXJ zR~I!=!7KJoeWw5ZVb3}9AD7!q(EmzQKz3TbV!*nx`d=kI0!gO2tFrvD1>LNnf+?fi z>;GJQ>-g8gk3h$f4!9rxbvvW3ztfR^K+lt&%={m|L2@3z?tfW`q-v`L%ldyCl+Z}# zuk7wEBJT8etqC8=np8vhPr}mZW$Xg~hpq39hO3R<4MGUQ7(@>vN}`QuqeLAd(LxfU zk52U7ON1Cb5=0XYY4E`@HYo zJVQJKI%$xqL7g-PA;43Kuf>qQ@mm(qOxhh_QaZs^k-laaI=ahZW({tVtg*J*Vx87s zJ2=|Ur@TAB9npJv5j-&Z`D>=8$-{RzZk|rih)7kh_9;?7u2c2MJVM`3-!9q2O)m4R zsbg|DtU_Ni5u+dX&7_JYQm|?u{I8ARNorn-Y!$}m;0QHg^M!cPs|vxpT+JDuY9)Iu zM{qxXJ!zhG$X{48a1k~Vas6yb?XYa7$lx?9K~oVmAt5^CCyjew&QBW$Ms-w)E@ZSJ zUlG*1bgbzbaeYFAZV!)BtpqQvH}ih*H!V>6__p&4JgVZqZ3^y>bgRCWB*$8kMlan; zFg`6WMS5UVt(4$ojR-Yic`b>`wIuZ|yQ&oFR2WQPxo-2QK?{kxr(+!gPcG5n%YABIjuwc{@u!WsQq6dl+nhl%X zuuC(Q6{U0;pCsgv)5&NDnf9tdy^NxYpp%5-FT3ui*Z1!Z%JKWPe#vx-J(^V+^^ud9 z_PP+7=Xz}T$L$*ML)wL}|Dn;=7h$}yHR|7t`r6n_yC@;6FaPs6>i@jnkaTcvHs{9- zE`myvybHF*pz+bXHXc(x9|`ox=c!l6OHLwrmFhdbN3PjSG^K_<=HTdS(lmkpg_ZSl z-<6r+uiTo%(Ez6QDTrU#xx(R#r5Eyzyf0N&AqgeJnR%_{#?Vi6OR8YYM2_z-#OFRX znb14wt_aZuw&u$5gqi?OYoqJ(=Z4-qv4;jsj5G^vIRTIkqjIza!mysqhwWhh69vB# zcy?2+H1q{oTfE{nQP)Zl0UIky%e5)UJlTXueeR0m?dLKtQk4$R){Y~Sc&f-Ax&A?` zF>jkMPE4Fc3|9MAa-yCTK|)LZR|EV9zv%&6b;1M{vJMN(gxrpU-1c$zD~wBcEk~Vc z3Gjs$FU==a4KECly?`0q*ZCe5&eLlYjMu=`d>$ItZ|mbF&CHsbmRcLAsIkxSf; zTO10=ZJR_ICCa@&6(kc(Fmu3{+C>ICX6~V!n*G-zVXJ7+{`IF-QNFzT>QHH23YRf4 z7Asd=xz@a_kU8t3&U>FGFT-SU=ubZ7mBO#<>6nrTBG5TwUgvc*3UZ?azaQ!~-B_y> zcB)3nDVGw+K7-CNk;Djf5%B(X7nhuI@(uf16rdu~dTf0tC877~Kr3N3IgfJViW}f- z(u{N(ts#rpLmZ2|h|DJOxmaO>u?O3WZ`PQ-Qx1+YA__=^2jqP1&v(=!jj1S!$f=Ih z1=W+JGSfQNi~0*+Qg3Y+bLKiydnbD($5ts9Tlf>!e90eVRgIUJ#Ohf7aqVIrY@V(l z`6DWkVpR`+az)CY1LBGfRND<-*h$o%+Wg|sSoT8*`h)N(?H?R{I&;t1tJ~YLvweOY zq0><O0-%-wX>U(bF-L$0S-N+K*`-pV^Y6 z;x;?!CV9=Jom~(q(WTVF;c^{M1sEdbqDldmN{5Pow?qdN05kfjGBMs$3UE$KDIIcs zZU4X+fIo!) z&MqF{5x5kC@)Hz43MHY~Y=RR`z0(!#Y8R|YTyM9Oc;#W#tJsKuzmIA*N#_DU| zC8P@!B~oX~3Fq(~U1|Hc-O+P}%iVeKS+pX7tk}Y)?v{NBV9SBYjdCvsv~Mcje-5pe z;jP3^9x8x#Um7uY0V*iFLJsvo>@wWG&CCk5&z%8n0RUg=GrMZI%;Z~&4fBMP>EQtR zbp1y-bnA!MH}V@w%=Z#FCSy<+wY~0aoux<7ncCuRNrgn-6YL<6*4#5MO3u3LE_FNkHhm%v}ww$bFPSg$`6sk%7 zAVCY<3Ui9-$FCNKHjHi1r;9RO79qc*7Mno(LtgGvq8Vm_iTKvd5QU2Kfmn-$Z%nWt za=xX%ahRt28BZqfb$lDP5;~S>&AGD$Fsv*5yuR7av|ybOjy;JCmC^2WFrqp?3_(8+ zsw7F3(RxJh{8n{$kV+NkzzS}i^PEw4$l#ivP|WbN{4jg)Iz+F8m-s`JwbFe9-YSw* zFUfsf@s;c&h&%D|2!k)$yVsGZ=Aa#b{$U?dve-|ze9<&H#YP=}$R8ILcN9Xi)pi%~g^^ zeH>30j3&o_nu2;9iEzkv_^xIK56L;JogZQPj+&bj8bD z2}th&#kWv4)1Az3AD?65GhvkFj{lT@VOXp})A!-A%@=bgKuFN>uU*8rzU=xC`>b=ZDpoz&f0A88P!mXT5VL6w7{6TC< zr_CmC8Si)Eo0=Z)oIlA3yd}D@1`KEHJiW73zaLm~XF#J*aZXm_7Jl)_yj zf)c#mwtS^p?pS(99a*)|Ywq(tPlAFUA2)GpjN2(2nd;4QaV*{n@Qmkvv@1(%HC^sl z+*8x&$MwY|#mVUl zsoe@CLGP{uKBC^5v&~Psgl3XiGMi(^b-S7;;E~8@!?(|jiSZ^5zy1EyP^O-l^`BmD z%eVwM`!6rAW};|s|GMx|zDVGN46@{z;-K(mhE zPLC}TPAH|j;ykgF6??wZXfi-56_yT%mt`AOQTxgoKgJ-k6=-&d6`68lNxzQ`(1y+! zott;JSGU1ON#Yc2^6$0!uQ2#*wZ?wHI+n8Ma!9Z%K3EHVHh6;G`CijRXhyqp<=*zk zbZJM7gE(Kk|MS*Q(jKflskYIO+*1TBA6GfDV|(=U z`O50w$YLcmCeloMn_Z6l7xI=I*neW>VpAV${MR!ns_(64x%X3!jvW?idg)q1&=Y=Y zlIf4>U5puzDu?w_>jQUe;FVHHA0>3rYr4GXbkm(}N$-4jEj)$IaZ%^sy9>Vo)$>6opr|UmNPUkQ*QTf0F-MN(k`xf7! zM}@(G1GLw4k$08y6?pZ`A_|-gq!_TVM(T2t=BnKe3{T_fPZn9sK@I@M;oDLO+lDvb zS4GG$KnXBb^kl-aLUYg6NmDzKY=l9hrMA$qquF<-7P9zu8W)bf8Q>)3rDJ=&ZbK9- zkva|1;NQ-&arb=Df=bl4(e16peliQbr}LD3^^<34IP z8Xm9C=lvCamGFQ%Tp5!*w*Kc7v?M5}=8VkG}M_Ee1aC%w=o2e`(wq;{}%; zrr5_n2916Lg33gmGA@Py(P^ci+9)SLo^q$r6%y`#`5yivnn;u1D)|9D0DT$=Lb&Fa z)c7Gc-hj^DwY&|pxMBggrX}6AVFz3cWVruC&aMx5kVq4Gh5U0PPl#08o6wzmZDFiI z@+>P#%8)D}nx@x>ek07#!&lbHO($?1Et0E2{*Vr^xC+m_kQfmIanqXlMv&T^%8n?3 z&S1-MeA-$5t8=Koa%Xsc5`s)Cm3P%?2^!C1e@0gqb*hQ--I8YxSJN%O1-z7!TCx5`%k`&xS;CX zuP~G`-@jVaIV%7fac#8LU4WlQ(P=h#LQQ$43_KFy+LP0r_@=}zq8{jcp=ATntdg^nE__2da#ej1O{n)w-) zvuTRf(QGEDxB-t{_BD92G+j;=DeM~Du=0o80D&SAC={&EzBHu9cV>qgVn*^csCEu~ zfNU11K`-8&`Hi78`j0I@EVf(4nktxPDtM|jOG3>eanlk6vL+Ep%BpJW&T@F2POt4h z1*|s?*hbnW0H`=9e&)`f0#F^Xq;jf!QdHm^sf@UTWgE!6jM+%@x#lW?%`{nNlCKqS z^6Ajc{8vbFz0>j15yDim!}ATTa-ro7BEOUA<`dpq6M+f=N5Vf`jUR!|68t?YH<&?N ze{^a)yH<($)%p;QoA0CBLl1?xX@ze~ zs6~U#7dT7SNxLs&Rl4D8Q5zpL5vFHZA~2_VQVUf%4}-kTh`3Uk#jG(Zq^<`le^MbE zgIX4?n!kj&_P!C3{oOQ(nO^?1+DKB5ItqH|LsV`8Rg=0LlPs-WMd}8gbsccSL^Wwg zY>))`n7RXLe!9g;ch)*G*n^GTUr!}i%;r>l7T*`po|heTh1gpTA?Ks6POcGf`jV&a zMY$$eGX%xkKK^=VOTzp6Vlh4NEOV?f&gEhESa2%62L33VAO%u(sP!zjg&h?hBr3~= zO8R;=1v!SmF*S0$s5disfsdcyGU{OVB$>bgGEY_ex>@Uo6`7pMobM^8+1t||JZBuS zJ-;;v9WI-VQWZaz-WzTgRz0vb!_b?tJ#qQTM=;kl!)p$^b{mVEfCf{_og%%fTLg{L z@jR?0HkC{y-F9gXK#XOQUd*`~tz*)&e=su(f8GE+p~sRjkT--;M~xht4xwKu&uy-` zw-tU%==Oa!@H1@}QNobhcX(*RQ1DzWsClP}Y0G~(U_I#LF9yu`*k!~oaZGdkaiEW3 z0_}(po3Kw3^{1L(nUZ7d8-|j&CxWg1_bA5msGbIHMs_Ma@T84+zd|s1_SMxuA}sE^3N6?;84nAzj8BtRL+RAZO@X4 zBk@QV?7FGDVd)P7!#)oMxYE`FO;Y$TL3OxgziqfKEtlMXaP1?VX)zysM&sZBpe%9C9M4>SoWH zCSbS@SLoB8@V8j6^QdTBn#lZlJa(xoLQx=1E&aZ!uH7rE z>*YO>{6=0*$u?+2xh5si6L?WNm9yC7mcfu$9DM8jM%kG_WR@8k2!iK~u&|q~a1J_bE%|YVw z^vL9c`}(%C+~d6GR-w0-x}Q`sVL8$mZdsVg-?_N7-@C+YF7ov_mXxF8Nyr-vSO-^Z9~QjClIj~f{G27lUUoFb+9)_k zBEvghM?s1SmanDn=W(yp*JY{no{c;ns-fmHbO7BkG+=|8a2|Nb9P0kMR#bW zkk#-&>CCd+%%Iq(bJD!j3>zKQf1`W6YGMB@XGW*KV?-mU4Iw`+uD+YG8SFo`71qfd za%J6YS9r>CL0e(gw71vM!7>3)IK{Houhvb-oS&Hn?ZvjZ3)=bAuh3m*!+na#g~x4O zWL*rn}O!><7}W$V=S8zl-7&d376Na_nvqNiWwboKHNQ zJQkWtZhU9kuOV#ZcqEr@cq@0hlo5hx0ZzFghKy_lj%s{@H517Nc338yES7!zf-`4y z{RsaqGgQUdTN+NeT03H28aTRhQv0;<&G&kVl~X;33$oWQ(BgGryUtH&wo`O18?}Dk z$$XYewhG2dD;4?=xTMq*sElW zVMk!n^@d-W-9$XM^V?&YiS!!&%jkG(Sr@+@aSXekjd5kt9pS-$9DRvRgbo^}OKXjJ zN#%D1tgqvgKZ6XOdk;% zG&x3#32Y7E68pEH*vi^W^bg_t&RY*BQpdFr`seKOMc%)fT^F`(Y$dCSzBhAJuBPZL zyx;w`Q(B>T8*+(Bo_0GUTHohMFxHX?ui&Q1YJ|^b2vRJ6t1(~Ro^FUDaykhYK}7H9 zwAq*l?AL5xsX+VXs01o1imeASfHTUxO5ae9o@QYZb_z!D4 z=JNHd&~Dno8bq=l!i1!1q~%Al;Z(963C6cY$XE=!pl*Oh$~M$c3Gac;z1bI4edHo6B-t2zY&kz&BoPu#^#1BEh+5>JxcDM(|0AmxhWN|7rc}afynuO z1x9&!3#mI|oNtJJ;%4490_Jo$kcZQVn&<-3l_|Mi{SzCYSspI?4@PCQud7wGfeK8z zO$9pBSZgF(URjD6o>rxOKcnzG6R^mD3MiXke0byu=w3WJ5JTMq5KRYhn77E$u1brS z1VXYfmO#1GWL*Rki?uU@Si_s)(B5XaICy&IQodg>fqarJ0)AEWoemdo|4c2%bM3Tw zp0+}u-Hw&qORT%)O>DID2q?eqPqvjg7k9Y0e+ExY(4dIzYA7uOS!#{2I0aR67VU$58>%; z^}msYrt&GwY^b^`nZ&(M^4|exF7B-L8598ncZk?dWo23y59irIQXfwoNvJPBj0Y(; zYyX`}7QBw#ao@F?v%Y6G|JIKk@z`w~x)h27f8e=^^PA{vbsD^bEEd8?7JqcvYPyJZ z5QTW-0-YtuS-{Sw#w2x*zJ=f6^uK)euJ@)?lGyvwOA}m%U{uhwPo&E^+1b)E5Vh0D zwTjhMNX8Th_mJAy#jljpRL+2HWkAK9YX;kR zN9x_q3L9}YN5e7vrReMfyPc*K0+0N+*B+S0LbrH(OgWT5W4xF3dCalkTb~@7ZWWV- z>c2;9fX6Si6CagxF}_tKt)4}-#ZAwoUFHMUv$|}D^hmQ+WENep{xS(tH=4P49R}PE zPdLDQ0+Tb2b!YJVRoNETE7?p|Lg^deAiTcsZjtd=1o$0?CDa# zbugl;HsrJP`lkMK{tBQ82Hx4@`URW^D%IZU@e6NQQ1RA+16Y#c!G_Pt7M z0uB^)I{{2Xr}Fs^zvRReTEE{JkK%1K5*?+jO^T9gi_)4@7fN;X~x~1F7{PH?PvW zvf3Ne?~+yd4+>vmigy0kmT9hJUz5!zbYkFNA|Qkbi}BW>f%Y88oWA}Y6#4It$zIq} zi3WI#}4vxmUfpl`I$0F}tW6PeJqg^Q1O6Z7Byt z8lxs66N$8W-f9O}+pY?W)OeGWvTgh?vc5VhsxN9=1*N6Cq(w@~p;20C=`QIUhE7E~ zMM_#gKtKj*7)rW_QbuBEh8Sc(I_I15x7PQ*YrX&8b?!cA@3Wuh?0xP%`{4UXW${b( zQPC!r1wiDOkaI7pzDx9EBl?k~fPbA6IunF-ZsQg6C@B^TB?N4q3r_JmIQv#^)eObc;{(jwiu^i%9uDL+qZNn zu{Djb;tOirHc+Xd>geGgu75aXvDRAb(%Xb93XCm&%+=SG36r1T#A>moORn`jt3=5$ zp_At_Z9A9U_I{VH{IPb!~bfllG@h+N`?92jwCfr%%kSz3lL zVkE1x0a5E6q)=K_2_|IgI;T6eAyp{^I~QcmfY@^ijTjjUZOScX%AqI>D8&S?T)fT62`ivdgKD#4LJu~ zWCGna+^#NL>eYpaYcD{Xs;+nn$%O*%(P z=~pZU0RNz(tt+hceUom=drDh5oSdA?HrpxsYYx^?uv^8Oyia-v%19Ub*&&iLxe+q$ z&yN+!Z{Af2D@0-uR7T7d!K`gAfn2>+T4B=D7kkaSwGu5V6xcfaB)(Xm!hQ=^lx!bf zT(49}o6o&VbI8R)(HJksa~YwkQ8YGgmlgX5OtbStLRohtV()G1is4odCRb)}fws2X z?l>596DZHf8@KEhYJKtT0C}s^HW^{K_x0n^%#~gxXL24n`cO4}ckFc9k2O&bc3M9r zZ|QDzdR7~WmiF=x5VfI+()osbujvlk<4QOET6%SMQtrv0LkY&X#PcV`(zrKa7Zm>S zpA<|a$*{n_M}~I}Yryx^d~kNmig_Qb zzxboY9RD_X{mgLc1(iPUEPfX$siOs~N_X>aKNnJ{oeccu-pJnyStamk9xb+e!fh)PX~(Nd2s~1EVVe9rP?%@-?EqJ( z5K+HKGr67w1u8VaL;cd-ApTWn)se4pphl*8rY#@nSUfjq829}L(_8H&t7A)0B#JrDfeS23*zaX8vT2B zWnMcLgS{O|%#MvglT#&qKX~J3)0=N@l@s$yMoxfftp%0x|c!!r&0i4m;DRF1Ps5 zqTAynZQ8+2$8kQ-Yoqn)9+(WgwAx z!L%$-g_1VO>tF93tzkNn(f||%Onk%ipheVt5+>L#b7QI}!>eUEFAkWV_eZs#<}!0T zrb5=oEW+|RPPT{3nn*mP*hjJFH+4oKtb(uHrGAF!)4!9P@^L>JVeF(Zo$rW5a-s7b zv0O3WNfTE}D=yTDd|JN~t7Hnv`5o2;q5XsCI_p*o>6OObf#OuBc!|M~e&g`u?YXm(Sl`&sxRvkK<~jX2ttNAeAJ#LTUxrlVmHfkWX9b z{COy}SU?!&@KpEenVvpSOz=;bw#01Pgu8QcX}Dv&DrdV7+^j#eTEwrWX8H9b8?WnfgKGgQbRlEIZ1)(v-yQqQR;#p7fAV8vl_oIh zXNl-nz9Y(J$y6tVYgvF&PG1~N`3X78tBtn(w996L-A@(4**v*Mi;sL!4F2JDD8^jc z8u`VLpHVSl7n(7M(f358;;8|wz5#qEnK2B_`wge=S!m()LGvE8QY)5Op|;vmXUi(*!r@NHtsB} zZgs4yeev5;3bq(1Yw}r0yYPJIUFcw5X2X>=MY1pYr~7zfSz+FS)G0C)D4|s^Q1Uk$ z^=a(}Upd&QPP>Vq*{9GhzCN}jHjOPAk?p+)Vy`_mDVilIVF6Gf!_+x*Ze^;x;1g4_SC}G(>Q}LxJ`HBuC zwZpF#0--;0)fFc>g8^hiO`J2{?Nh6F-$B^BW^hg~XJliBEonGC{bA#A;Dw1I7d7{w zZB@3I}L{|dn z;7F%oi`;a4<0u&Tr0+$mEq{!P2M*q_u!u*3NjnM%T*(1~ovBN&USO+IU09+A{hcfW zah8EYQk0-I*_t$zFQD3IZr%P;X*mrQK)DQe?{Iw?9)8ZmBxxviV~125arFFnO}Zfp zSl7v(?ev5!5Z3K$&mpHeT7~DYD!m$zZa}%S*6PG+Bx?PndCo^k!LeG}5d7;AENVG@ z{|Uy0QeC~3Bsy=`SDQ$Hz;=22c#Dns@KGsX9Tc>mP4pO)LO;4<+&USbh!by@z)<20 zkjhx7oBwF3-LV3?KHbM7#&CYbYS=;TF?AW;*0X*TyFFNukCX(~2^xl&I5ZN$w36!u z*dK~lH>93Nw*>^-7{bJwd_wQ?d^$=!x;=A(hbz?jz6i9Q`y)r(FH$JlFIW_C`390U zw%J8FdOc2+GQ?w zHD&*G3d(5fC3u9M@NI8RggH;AMxiIezFG=r^~n4KHxvejXb21B8?6w>f@*7o=Wp2b__gLTgn9@@mfA(>^Ckzl z;G*ocOFVU24rkQuV1z@;5wvPoNB!(GQcOkEwQomGgDEFG*RZ?oG&rfi`(b7s%c-bk zjHi~mHirezqQ^a;E;8t>?R&T>o8|@g9KydSv(e_LHs_$Ovw7s~L(F~HyVlUvoveKr z$~Z591{^v&H_=`w0#rfUKsfgZ1T+ixJe+>;rY-YWLri1s_NB~%1Fb(y{IMOrWv?x$ z9zQ%;FSwgYgZOqd*!$uPe6V(Wh;fkBch8}&_Kyo*j=mr1+F(F^ux~0gJmo{?m(7xB z1?=cmUo{Y_Tg>arvGOdh6LhM!G@=eA1uT;G2Ndko&*}pIA*-9-dL0Yx&>PfZX=n|gO69HL&togNow8_KV86EWm(nX{ z3G*`hBfx&ygJGevU*o>Ec5p|XS-R0LUcZ6gyhJwgU?YC?MpMTI-ick9VCI%v>&4d! z@uM&%y=LX_rAVTEEfSIhSeI$?6)V&Vx~0X$RqvvNSzpd1!<(y~w{NYN{q_~xFm?CI zU!6T!=p$g<*CVI{k2m>@Tdz}-cf6Q|2TAIZ-`Pje`>VSs_Ql!roTcu@fp!cD9q z)zeL8(IE(yOTRYhqaTW|CFVnAlX(X{63gXX4O^8mkC`}NAhXk!Y*mG7q{?2;BzFA? zKPodul$8DM_q{CHxqH?%Gab5a>|1lYmZY5(6F*w76*@r)%Jd`OpH-H-3aZdMtJm7S z?6}A?Z#{Lj;4y}_7TF6}Sdu;m@6>$RU*dkJu z50}2M>`@FL{!%GenVE|2oWo4DWtu1HKf1C1EPI|k7|Q~@)lg-!ao9VKLiEFhQW@d- zCNUiKS`D%b&C{Xw;T3axcf82F(!JFBD_Zhke?XXcx1EBgUUGW=>Y@Kt=91K$M@q10 zCL@@tH923R8T}rIAMm?_XRwV%=fQDydah^9!bfhXOYd6aVwFoy-!S>$_Dcvsct;0aiOk#DPH*$kxP?lZ-ifCtivooa0kT9n#XzJk-KR4LK3akuw_1? z+6xbF2o9c2)m%i?s5?GOsnQ)uX zQ`S=T0V@P}>>>0c=#pePEf)XvZM_?xLyEKSL_>B8F~>sqPxnn9vzeH-ALa!$39nk* z;klbFxpP?(w<#kR`5oBmu@|A6m*7=4t_5oLBd;To3V_61?U?=EOvB2T>->YD3;zimvD5F{5B^71iE75a{5{w4&ESAF%)(T};`(>Fw> ztst~?k~(a>_pbd_+UAitt$#QssouZSw})flkl_4sd5OxbZF#RLH6WPb`5QMv+llTrGaf9XHZ7qKWGrrQ2nwnuvitl)g9Gt*_U?J8hjSvbYi&;bBTo=ZCp>dw+B2Dk4=+yaYf5x$Mg{t z8r)BBHc6+xtf5{kp&QI#=X!=*7{(6+>WFyjg}(L}(T+Wx78&I;saebf8zX{4R6M4w za-08_g?dvi326Ojd+h3EmKMzNf$_j{4m=@k9HYCVSq+n!Ygm(#9JsB{uBWx~YmvaW z>c88gyTScO3jgrLKPJ;JbkYr>kd=&CMEqCx>fBFHK$nC-Z$V1OxTB?cuhUyCMLC5j zaHNF)RnCIvQbLJ+{8=w^05uBEzSZM9r{Vg=L|H!~OQks5D*os^);y*hg4f_dM-{X0 z+FJdt;Z;1x$xYd;TyroXDX9mMk1I+5lnD+loJ-7v)Z5>5mNmH+epuc^H~Vv2d+Tq) zNZAvLi|;*&e>=qeLBnW*^K-HAjBFaN4*Khqw!WA0UBzkHH1{BN1vO&>um1Z0sy>nz zWF{ISW)%3rzcXYxv-bnAnCq7FE+dlTjPCsh`;B`!fTTZ@&&D=kgmQGP!3yFul(Jgca;sK9#w`u*_o zqWVF!);G4{K(CPNdxI#g>j%<=N8dL zSBm4yX=r-7<3H!O8RuYFDb8VlcR_kzt|_-hN1HK2ln{Hjk-{SWuCtR=pQd%-W-D;*f0Ags6SZT81tQ#UHW;QV}1!+BcjykB;I86(9pK6 zgR}AbN)TX9=i|9Bwe4v^`k5iGdBKRgEimcmVB)x+}oTSTIt2C{O!S!5u z*&?2REhJIMJ0cu6kg=WmeRbHJmmQ|a{n-vCw~3P*H#igD^?>ZaQOHr%8bu$^ol9*1^y~uh)qPGtvzP| z-iCO)N{Zs16;S^1*CAXYHb3b<*?LRanwheFa#3b_MQ(DU2+n4gKC(Cg$tsrzs#~_} ztz|KD7HMW&kq3azQGx>Ejyv=?A$S{!e^|V*1_;KWZn9Kb2>iWyOsKiOLZ{kHrg-Jf zgFT9>Dzk>mu4H+~!&{FGvYx{9JOae}6FV0rk;#`)sCYf-on z>zF1P>8?3bKjl1X$^1eSU-vI&cydH*pJ~l^6gD3vM~w?NqFMVqrYuD{ZQrJ1TryE@ z)?5zpwn@We2>Ryt=4R{{5lgGVRl96%@+5IMd4A*H=a^1)A?L+5Osc}GI-i)tlSA*; zL`prXc~Lh1S>@{kLI#m;g;??!_mp|Q!n!a!D_|Ww^&!gbW%Ptsl?qc@*;130PtXmC zn*_ia`rhwNkgU*Wh1ltSTJ9G4cGk*h!6?CZr%@4+!rgT89h2EQIu|&7tPpz0cuCE31^n8<;a?dYLWP8~y>e0Y!*yFQ2Nl*$!z8uh!)QI5 zXtVs=C`W!P%2uyoW2|5XjO84frTi7mopkw)#+$LBZX1>RScOz zI_}dSMkw>XZgKvCW)+!K=aVgi3FE0@n@={0sEYOj!3WNfWE_PbMY;o!$K&nYCjy&Az~y*nP6I8~Zzub-7NhG?_@=@45%8X`s=AwiP#y#meC2O$T9 zY(4$w9KB=ZBVoT-|RB>^ls78*NT_K+;%(zlMs>iJ4pY(qaZipIDTx$R3{Gs`l z{BdmW<53KXUgbc4^LhqJ+6dE$ti|v%G z#D}5=#l~GpOb!9br++t2!2)IHgX9?Tx>RVeDCpiX(|s)P?gE3y;M#^ z$V`g=R%u@qTAwg!@4^81H)seK4;RB8kwQ)tM6B~Ubu5iS%&yJl)o#K0{oNl`WHz%i zJd^u&J=d)nDIMVxLkH%V39fbgK=2SBo{DxGy_vJa&j9jjG{m)Mfe%mzf& zjbW`aV5ZtY9R1LC`BY)=A%?u_4{@$ct{?e)xw;LCWjy5XGwg{`WIfovnGASL1cXQz zbre1NuMeaMPdk^HW9U{!;Hr=7ljBP3=qxuY9UK3#Mn7-`-xXLo@a0qIUH7YQVzk?u zTeDeX&cGFqM%$G{vnjr?So#~zbEjC2USL072^EzX7FqA?PV%N$UA4{JPr2;e>DJMW zJUzsp)2a4eRR;~oo;tro5Ci0BvzxwfJ|HA7#(g~JgI^|_uBh?uoTo3z7*Eq@G@f@z zz|$Tps+3E&$!j5kFqj8#?kkZ+LYmF6PlZFQhNnc9MP+_w$QU>t(5zZ6pbK+R*kkA% zB0vo9kyv;py!Pg4vw6;Kj8E?L%sgbe%}j3=Cy~(qO^?~^mw}M!>LRz#N1a z9JkVnsH;Rb@!AZy`XhF$9`ELTq1W(g>gB>aDyBcYe8?(7<1#L1m$ObYF2cmw7qBgA= zUC$Zf0B+TZzvM-nPjR01B!&C)P%2QBZ)iT9dBpOzg{j48P%MiR*~ zsxW8F`sjma&%bG=+iAt|$@KSOkzX453km8(0g`!e{*VTOg7%+ur`xY9;al)&H%IPI z89&CqApt#}%PgzTp2Mue8l1{EI74_bI&{`#%$IxH(3=2?J<5L2Jb(H?Z;_jC=kz() zB&`3#&xi@N_JH4sMW&+Q1W9O?ulsH5P@I`|tDv==418Y3g) zK-Vp(5hN|#47Hx{)`@PJH+e5&T#fp$W?e2kdwwq1VmWv(8Bjny2Zl@g;11enZ@LCg z-nZx>OwyBGkj)VN)Ke#*;&49Q*;^=w*H%x1E*pijuv7o>-+eksN*lcDW|q-T3o1TiSg^f8$2=Eo$)f! zha5ZBp>7*UKT}@JEjO+{-J22SiHsN5-M);U0mxxK(Jn~zf|Q+ZgdiR(Mg!F2ReD6_ zmqN>n@qGGo?QR~1En>LK84q)NCx)RUx(~~c#%cKvnRSf1IGVIfmNWAT9k-L)kU{xa z4{|UhQWzR!jvuia_>U9-QT$mnIrSo##dq9hS=7Tj0E*67zE4y7z5Ivkz=+O_9S9Dk z9%fI^XelOK#Fo2gauP{30&+GT1qUhe4ULLT0}!HrQc2WmvvZ$6eFh2T6Vi&Byn~73 zIXrqU?0@yAUgEK;kn4r6U;tHOY{DLo%sp6{ybUZp#zx=A5QJ?2ITos1&c{6?jHRA| zwI)oEKUVt$C57vyfR`O|w2S)TT#@i0Q32UEAhN3r7f@hTuhH=sOHCC1e9EkE9#$hQ zcwF+eXKh8MIqKT;;cN;o_667e8bPd0V|v6bp7ThEZWW8b(cZw_E1dLKMGx{>FR&nq zsT&Yhl`v&-w>5g+LD(MftReP!zpsq{4$ihT{!&)xv5i=oF5JN?q94XT#mWh!H+|EM zYNQZ`fdi=bZ`|-xxeEOEF#^5`HSUL8ZJ&HRrYuG?Z>ti@cbPoFrpgW{yFCfUhd)2Z z5napH8g>j>xR*_+pSY6_G3?rc7Ay3VW5<_#3LZl=ke&YOKajIJ*CgQSl~_zBF5K_< zEsf@Hr*C&wL}puSQ1k2S8AqQrq~*#H`j+h;)qszhJz2Ja)-6{Sw6^PuzEhwcNU-D9 zykoyBU0{o+$jf9h`NVNm2lb!~37UPQ7bDnc-15OU`1eXdeV;}4WqI3IlPlZDZi!KM z<=+c&lFGYL^t2r558Q?jLK@GB5xSE3{k+=^gy)jC{~v<2VXu z%5se_b*XTSJ`Nh9W}n;8=f!Mk2|TAfxrteo4iW;*b6#h1fC$l*M>ePts~6Z-eO()U zvH$jpe0!K!P2mL0U(!vUcvIa_&yR(*m0zbBqTYHA0goMLx$5nWCDi^x7s}|#sWK8038V3ZNT>B)n9<14@1Dml0Y0!RzKJ>-{zibtURIiHu5s9%s=Ety6TxD ziQUoYDi*5du)L3A1j8Sgv}^_&m;}wQMdSKDOS^DWlflOEirnhEcIN*kE46Qd<$1G$K9l)h>4u3$L)XO5zvqFB71>Hp`>+H5|MGZ{S+Ru!fw>j zbuoueT?J_utjF-+5wAbu>!8w??52iaf2qAL zd4p7i(rKxnYOYgW>Tj=arb=4$MM%oO)tePPqXlzhQ$bIRB!TBL-QO!?lVWMk)Dw9O z!x+Ht&MzDDOh>_moLl-&y`^tTp_Bw%i1wqW4qSeCT72QwN|+irJZom~yHEYy%|7y4 zr2V0#CrW`@>Yawt%~VKaQe-USM-56IO)9(T!oyyHzKYoau~BB@iIaB$j{>n!-5lVz zHM@eqlh=hZeSz7j!MI#`kB?SNkd}Z*UQEH?V*$Z*odeZ4-NhR9YQbxniye9M1>!(m z*Fc*HoWJ-zYX@D)py!|dNhsq7zx5BlEmGz|6KDz0pi|12IE#zcRaDsgAD{IXe_`6j z%{y;Prk1iYq$Cq=1MB;?DoV^z9=WTubLl^lza`++O^FnZXr;p)d}ZDeU_|;QCGE{duI{gdjy-Z`~e=rw-IS(L!o9#rTPax`Tz~#NN#u7HP1@&gANn_QqG+{YcRj}!{hmYG{rXXhNs4iC8b=$xW#4rU~DtbaPxf`aX zO+r-c^m>chsTIXRUGEY`Nj?@5C`b=}zjKOV%P1l~D4R{l)+VJhtp&ummPclgL|l4@ z9LWmEX}V|X2RQ@O@<{IU?2@ci;tVE|>xWft!i_=a%eM41aMoI4pUAf4MQo=;CL5TC zHB{cs=n$K0st~&i4aN3)<=W6m(-__z>;a`x1r{gCa9goKx`(#4>}gdI*mW1ErXuQr z<|1wV`yCW@iF=xI*Qx|){Jw+Ubm;=3wY0>G2qhn{N3(CQaC-` zh}H158Q&*OGpP-(@tY>i-r1n#GnhyFf}!gCZgu8I?jPGYiAtNS$0J7m2id%eMyebCbUa|2q22k z2r(`@!MT>XK@Z?e7hWcNpGqrH!L}>fY>_7DspKx{CC&yEt>F_ZVt&!c$lU#Ss{&;T zs6)#CQ$cu*qTx#)G4qD#C!|ENSB$@cen?adx$lu0iYf{0^~?DilD z`T4m##Tw(6SaDs6zc@m?I+S%`AW|x6fEkmD#FCq8P`vnX4X94Z0I=3K)2>66X%in| zCqc_GLCzcM>kiN3dmN=8pWrgt=Ek+>1M5>vhik=x*?$rWcTlv+YX@P87*OkWa;2R6 z@kX*5$v+*^LAf!AV`b_~d$|)E8e9cKe8lVU!dkCbeJ8bV$7GmLj8^oM*TL&g^(lFx z4SL4RnK<1xu4c|B`LDiDoh)o!HA%3`^F1B*G1l8Fa4nl}1-i^oIGi_zTG%ti1rBs@ z{FRj|p9dO}wi2z>G!c5t%LtRhAoAE`6aI4CPjcc&n%I66??k*K?@Ez1%tNwn&9O2G zlJC9TJVYtRTnD3-Y7=T8UySX|s*he_vP4$TNE~BgpnsRhx_Hq~Dy+t8mpY3fM=ZxZ z?Yl`Sbva`AGE~Dla+bWhD{j==JU?>6-SC3RG@oR5`}78nwfL8f)LY29_4}4$ybBZq z&y-3%G6%{ttIutc%{u60>l|1-;T)#=kmo$?kjCrRPPk-S9K@MKDs!tNUvwdTSa_}_ zLD;d$9r^S@Uqjyy-V2NJj$2lX`+peLtZcr!hoKMn(D7PI3a2LLtK*SudF$|!u?#&I zAYmNIkTXxy-Nvw)%_UUgB7(l-aIjIZgQX>f+87=0^K_*|R#p-h6F1U8JCsJ9S9TOH z%2Itlk+dn?t_E?YHF62%Ebpg9dn8qxp$~ryQ)<&JtyB;M89f?3hO^@o`9?NcUmv;L zU)1Xde@j`u>xxW;eP8>+s`bK)f9$!bar5nigtY^1<$%BrCBpsYqzAChYKc*_wnyq_ z_T3epFTu;o9#w=UL)3)YX-=qJyn(i!M^IcS@WgH(PXpFsfwd-<~r~+-L{6(HZ^A^d&PjxK zJ!_k$c=O&iDdM9`-LoL!31%eg=NE8dQ%l%bZV&0<62>BG`LVJaD z0IE^&lg-zW>Dv%piC^qQylw39tA%1dW z*}U`gK{M2lWSHmQLkr`UZUj0baB8lDsz4d9iSU@HoHQBB?KvveEM z`>{-Qm`2*TK$)|}!)nv)u$Le9?L#qo)0ETZ^v?sm5i`~$1Jlk-W=(qpx*F+_zU)QJ zxl&2YX?J#H6L@i_t|@rzA!vjEK#1qaLxVdKfG!pC&~_3tV+|~E)$Ce`N~@jRRk+iL zumhqs0-9@SZmEhrX;+S`)Rmx}LFSos!*6swS@Z=^49hcK7rsz7@}$50itFDzrS^Z1 z)s5EV#BRQ=Zukm_g!%>FOE>inaxA;m^tlGQC1QVRJC-+%=C}XZ6^B@jJ`3q3VzJI~ zIw|-gvvXg(E&MU6y?|IT#TYrevJ#(8$5 zS!;o|@|!NCJiBH8WEGA*`kXjBLoyw;2aC!8In3&d_$ZfV;_bq%NL)C(nmP%<)sH4J zcFtCw=J!oK9Xs^`E2kl9Hy?E=(4rnU@F0cG)WrPurwKh2x++Yk??WehIO^KGFUARp zoVl4m#Sbz}C4INb>6`9<-4z*=LDp>5u^7wug*d5t@2dieM zr=?S8nyT8dyOjYhEK!%bu(t-F5m|{zy2nioMw8^|hsSSL%arKh-@!RHq`>_CeKqzZ znK}&~P-@-vq4*$9(}8wV0yjvKhp&C2Tvz$d&!nXc+U|~P6AES!B#AJ1MxfM!g-E?v z%+~`HEo%Mi6=Cx1{Kb(pTehwlW)|Cawhb-Di@;ZH4|b zMWr?xDhk2=9=)IGwHmo9!-x-Jlc1$qU(;#cxAFf)DLZ|Qck&E#dO3mhotDGV%CRJs zrRtfr&Va?wh3bTnRLCXf)>k7{B5a=%L$~cS1*=6Xm-QP46z6>im!8e2$er^aZVvQM z#F?c9;9JLUsgvAY$opr#4_hLCy>PNVacDF@KL4zFQq1Y*(aDVK+I)HY$baVU z*AjnUFEcv*HIsJ1>3HdQ%%1wMS`!ERz1;d{!E()v0lJBxr&YMh0LL-}oTd^9nw`qz zQ0^~hyezy@B*In=?3WBrss}RsYc1feln}5_r)q@=i;*BE9=X)d-GO zH_*u5G7)lBu)7#Rsnv=x{IOMWD|h%%sm$pPF^C%sfnlL{D-|a)fQL>&76wk(uc9eE z@++pSeTCD~^V6&`^{qh<)5JjIGQ8%z`=$B@rj`<(GS6fY9JCHd<{@*@&n>C>%9G#f4^W+2UnBd?fspD&f6If!R5w)j zA4m|<4Ik8Lj^XX+)Hwl|mww*lPsf;bRf}T!^kZK(ssK@HOATuIJ=rdw%v0F?q#Dkk z-ee=Us(!uvy1ZLLMsVlRy3!I)j--O}ecHrV-b}jD)#YZGw{dg%T9%uDy4r>6R6i=~ zgNM??apmA(a2Zi7ahX@bY>)hiXiy=kPsWh)Yx~p!X*JH z(>Sygcvb9Cqj6NMGuOtcUFLn({tZ{>Nj=uF1ioa&I;Y+wjBJ_ntYq(ay(5;RZx_Z3 zj)_g#`?eie_9(WOur^00eJXO)fqF5)vbK#j8^}s92B5hQ{?5zd%K{zSi>g$zYFcXd z7OEw1b~u*Vh=3BOrnJ!=2YRgH-Tq%cf02)b)>|&&Q`tDNheTWDWt+KVj?ipN8IiKV zcig&Bb8E5%4&P6gUZUzLC2=ISOF7aA(!j1V8v<{9$3idg$m1Z1@aR1iq1k5C5@F+9 z;yWzMqR8xnE752XhY$T-Z&{;qSpf?7G62c(WIP_X%)B;%<1+{e)sQnG=%oZ z0~2O44J?jq&BHKff!n{gZH<&9Rir|=yRAWLqY%)P?B2mf|o3d3%abI3SW3@Swu5wZGrwLWH;5LFv>?dV>5MjOMBlQI{ zhP%Z<`#!1%815zDk6hhdy~jRcVGW{&hg2$m0(DJ>PZQYeJU5B2 z3T+?D4NbIvn(^FyY3K8os1+iI#<4HLPu->ut#x%)Uo~2k>yp{N2n+8?l$N=CjdR0j zHem@x5RNNC=}(Cx8<>Y0N8aoy$>7xH?Xw zllWVjO8`Q_*P7JUdE}=cnt=ZW-3@3M-EK~?W?Z)|RBx`>OjkaPqc zT4h+}%xERVV!cu8I3`m$68`N?*BCBQcGBjGQx1&*Mav5%9M2yz!Yny++8_TG|2Hr~{x2&sBNEjgc{ZZ@HsT74yIX%cbzS zWp%NrVv!T0)may5?fvgb&J*)`WMR}q(-rKMvk+}rJFEA4CLD2_)9ss{dU35k^~Eqg zk9`Hw1-ldT=!7=hr7;NGSqPVV#DrlqgDNCko;E=GMqMlvm$=+e8JQa5FUB7Y2=$%* zUU+0_$)a)#Nr$B92(%O9JjKQuO-8R!^A?DOI2oFJAbCF9#b&&tR@CP0!oz`E>O%+? z^Ar=8-q$Oda5{7mR+o@nE#T!p!a##VctvF_1qC>^vor{{bNiQ`_V?bi@0b5d?EVbqql#fC{u-(L7LUKTqZN@UF$;>KKHr-uBcbVoxSsg zxpXP98!?f3_+mbxoGQ_P|Lg%&%M_I!O_rA8k>U&dum=tv|B#k z({#XPAz+`gH-n>D#U9Eso?CUNPyKnNb&STBhJL?F38XTK+g7LKIh2Q!@AX7VuM?I8 zmD~Wj+;;pq1#Da0W|cHQslowd7?w4FXZE*MF_00tX#2FyyNkqM;OLs;H=KT07l2G@ zx$Kwy$P)ckzV>g^y!t+wjSSpjWpmcsR30wH*9s#J=JL6w+KkBa+`E|KL<=cQY+8x2 zea7}Iwm6Dt3&NlVGONIr4iQX>Qo0+m5J8STfh%;cD2oT1gF1M+JzSX*f=9SR7ot^zY%8 zA4@+IxZU+)Guhaj#knOgM=LIt+<~PrtKzpHkr}g9R~EEz_Lt2lcchm%J^lm%`u@;e z6&1ZOyFAgqY=7}=7H?l;x2F>u&bmQ97AT1~qOA5ZwpB!|NJ2&fS764hOB1)7- zS&Vmt^$5LF_(j8ml7Z6V?Y#7^&W5>G++?k$Huf`LmO{^3mIWn!i)33t(7(7w{%U!` z4&wgEGI2_JUO#ibf`P6}v2aJ>1Y?@(Ih}@(F5F%k8&F6vczxgJ;;ICed_(^tTmR@5 zP@i+iB#&zejCC6@8~h1$5LkM<`RkBjFHk95JpmK1e$aT8YWY&#IMZ+hmjZM9oV2OjtBj z34_>Kx5Qt5Ojoexz}Ixsp0~{*$AE-4&2S&x?WILe7d$Q92&~5}WTe@*NSo?a2e`IE zl=JgTJrwalknB7JW*6B?!!~jTFruDWd#OTkdJ}Wa&zW5|lbXHv-$uEb=qcFQC>j1) z9=*EWy!%eByj9-+!K3!iWy)S&F2Ur5m`S76@lu!f+*<=;=h_$DnxknNDBsJ0D``k| z5v9SC@16C4zOBf}RDplTM#Ap$H5cF*gpJ1;( z&I9|i?t7r&p_HxkQmFKW|1v`~z&^Z={u9Sl@uqhH9%63g(@m}-8<~VjOn0Z8z{Iw5{9;@fRY^oT@cfBu zm{9k>N&{$U%DO4{#`@zpx7LG2_aC-YcwX!MWlPo!6R!K7V+4N&bBa8QnV|QkWFLtV zS+)AF=SImBOPNmSYUns$PRT#>?ZLNB{Pj`7jF(Gvl^5f`%IUM!qm`OiGcID{wDdBW zpT=pS;(sGr(vsx3Uvkq=#}*~N8dUwVtMo0#Q|p_0CJMX8nxawdD}Ny-ClOm^_CFu* z3LMkoe*@$q$<$z+iYWT8WdClXQSxBC`O|1ZE0n#In}07{&zh-_RHsRSg+1ckM?7;T zkg_Evw}VuD{1`;z){=jV%|2Y8 z_!5=^JU5RAsY~+0xa(@-<}n0_>x!0ta+{4HWfNxIc;uoJfO5@i;?(`5R90 zL3dgt+Q#o;FCA(7<>lGwR-KC8xVQ%a5Fe!C98MKJi(o7FUg>1=v^{dvR=nFmgTI)4 z6sT>b)9;KLubij6e&KewL!m&;NY-hp&=%$rA=DcHIC`S=ZqHSg|6karP}c=JC;>tZ3J5N`fFJ}=Kw(J`kWllxm!ep9-S78#-{*b*_?^e`o_p?@GoLwg zX6D?>fIoSsW@)krG`sj5ttIaV1lP@Mo>la+I#eg<{kWid&q*-VpFaP>*+DN6cA9HU zb*d2hA?u!4>1Pfbva@q8K~Bi!daT^A*Od!TBk^a{6>m5Z%8}1fNc;sZa@;%9VXp{9 zHR@UqSs$BqtO`nvIldyJe$tTb*J;+*XbJ`dY^K6a~l~^d5W)i_ zyQ;%Z61{{wgM1t1=f%`y*2yo;0_Xi0;X=3V2C4V-2Eil>H|8$otam5xWjilY>ERYJ zFR(WO#Yb*3?mdq}`X34Sd0T0p%6Yl6r+G~Rzvt~yhj)ORp)yLpPjzUMx=Pid97JsE z?dGm!AhG*4`P1amts=wjdwQ`D67&Nv_)lz?v{n2?$7OGm(#>gTmX2hR^ImEl73`;6 zh)%P6a6j)-0`n5)taze77(}#ZJ6lsPaBlD<4VoQ(d!pqhkAm5Ut+sUs6vNzQ3UUmt z)!Ex5FD(T%*`AN%4fV1F=dT&N{NrSp=%4w4?MaXe+tYn zLe}1seaUqqCY~>>c9UBEV9pLyUe)6JC+L#W?F}Smj%HQH*2~v?RA8ZA=5;fMPcj=z zRmB=rEvD7}@*FmKxPNHP2fgsN51YmtE^j@mSQ8yIJorneAKx&4z*woY!xi&eJw3;= zw|aQ5jcr?YhFvb0{s&O$7{s;VHaS{8+^y+Z^>)Rb07N zPw~~8Ler-@;{QB9Ie2-m*U2Hz&Td8Pq0kqaUg{Iuh74ova!!Po^ZU~N;M(ig17BK< z%|=dxi`XVz8ko4=4#^#XXK3*Eq+4IOoN4{b*%5Fv^iv&HO`})(8B7S)2<5!A8=Du; z;h!?TFFB*R{B@Q0c4zo>S@2*LzePy#U`h_+z_1gk*z4i7OG+$Bu`r$kWU<%+zPqMDN{O%Ad?)y}()9BVa7(YtHZX$Xdr4DQs!FGBml; zV9K@)wc8YT7B6))f~-d2a-MctI)XcMG`8A8I#hHG7z>fSQX7ttDgfW84hF+l9k`nf z&o(jjJ`#?XQCf3&G-OFf57g;sNl?RSiIZPtZt^!N3ipU@j@Ue8+NvP1bn+Hd8_Iu; zV|L2t>q{saNo-h|W4zC-9uIOc1m=1AEPRsVr%Y$D>Kgg;Ir51cm6sI~ilpk!WI{gz zUbf=1p++p<%Y}or#r4Tdp6-gv6&|S?iZpf$8L061ZxFz8_6=IjH%WeHOPhhX))P=`n5ZTck#?ASmD*mu~n$5D+xxz-GZ9j zuCHCmVY+NS16-HjW?Ah!%H)UlqFo+>v8`#6SyrM#5 zmMTKgs5yToB0FI15XwV)V&BR(yL8sgXhOY4=xx#uEBkijP#w5%Yz9|#eyfOly=PRD zLDMjdBBBCfqYEe~9U>qg(nOjxX#xU5l-`3Voe)3~=?c=NNRu9V=t1edcaqRs2qCmU zLc$mC`~A*&e!TB<<(xf}-JRK;Ewi)NUON*KZf3T``nqriz{|4XcRCGrjsDAWS)1mz)@b{bfvDa+>&p>^; zH_xxz62$!gVp~FNLQb4&I}xY(s>U~sN?0S7;@+=b-IaU@QElGSQ*3ygm!}XX`eOW+ z8B_xHHcl`&v0sMfaYu`&vtZA6p!_U#XLuL)HI8bm&=Uc)xZ-iDS9_7REWi4nem;lC z&wB?xc6Yb&kAJskpLuHk?z5>*N}K$dxe%=l)>*U319%b-!h;Zdxv|Ocj8y6Gxe>;cMYQxW=1zru1 zAN{CZh7C=QPPb?C##(BmDA=nNG}6?ClwetqK)a?(G@^1g}Gcd>uyP$#UlH`+KE3^?hfg;M%W7ZZ=0Y1=q=MU>~nH4kN;G?p9Jp z@@ne?(_LT6Og!qtGEP{pzn%BIcmQeM)YljUw6KVF!m5WOx$mfr6f%9-NMdw2?~mYV z2^0$$oqxi;qa|V?z$QY`pBV@FFK|@H6?-IxeK1vl3st+yKau4j3Pn;ad;>@Pcpg|h zi}<`=Lmd&SOCkNquFVX<7Oq@H@p>H*l1)2+3HRa&JrVP zm)@B5_O93U7b_hZ^I!g5>d|6kmrmd02cF&hb)%@lJ(g~LJ)u$MrYH>4yc82&)ozC^ zFJn_$4PJ*Y0*|LDUKMSkg@D1YxL~`Z}-d;IzB^bC{Z`L|1-MNmM~D)+b=W}9_7HM`;)cC?s5E%M(9(fm{QVUG-fD(k2W@NW|(5Zx}S4SvO>AJfsqLElQiF12+gEf=ot}ReOl0w<~1OERDJXed{F2w_C*e!lQ#7-{}u@9 z2=!5(S5F~;J+a5~q7_jFJi_pj2jkNqJ#kg0cy%`A4Cltnjh}uw#lGWn^Xv0P!Q!TW zD=u>^w#q9Qv5&ekXT>(RnTin$T~7ekAPgIrs=$~Hm??XAe|P_)c}EYyZ1snnpoi@` zn<=xWt0`8X2;-^uY*tu?F<#}#y6)E>f0pvbG!WdE@(j~muRO88CPXJ==EFVN$X5@T z?DF3)X3>nT@niiw^H*vJSqF@eirz2xjquJG?$S)3IOP1>KY4Bb6>8rAlv~NAMUaJnNbJ-QVFm7X{Ep|a8 z#ko#a1^rP+>wSM9SLm;kp;-SmzgQB8|uUOBPHIF^jw$2VHB~ ze&5wA`_}2{C(!HA{%Vg5J)4j6K-shD{D`I$#WTu;<##@384H{2pxA4G#K zOX7F!qc|2$c`ImAF|z)u_Y1Mc+L9^o!zZcECmw8kFBgrymcU$}&8j7UqefrT9DEik zSN=(05t9a02@}5Vv7UbfUcRh<0kU!z6I zP$~MSfJ6S*nF1PGRDA`S_NUH_rTXIOsu_%zuKf&c;B${e18&CYAKU$Wj;QK{c6kx1-QR}wM*2HxUzr8 z_6B3m+&Nck@(bnmKt03<_gaMo(Vrq>Bc@o>bl^RX!Cc6$aL5;%e_%lc;TI2a6qBc2n7u#@iFz&3hl?gf6dV zZtFIDAKB;aGYRo3_AI~q^J~2m=6#tQ!?b(YhMwP)5{OCHNxGl={sZ(d{;zrLl+rXV z?%j}|BJRb{$eRQGqa~0`nstC=qWHC~A-dM`JoEJ8hWNKMN)9)ySHf^-JPw#<39mB;1Q-1F8{%Us(>#YcN*J3QzY2V9-u!(x)}E(H z0r~DdY)&kZ?sDC=0N>uu#Xfqc5HnR9_p%Z7ZSi&AeXqJP@5tZ%Kb-LOp+2PERkTJn zC&SgyJ-?)DVlofxl;%r4`b5is&<)NrK@b>g%<%o2XgPKaISzZ(m6d$QNq%Hooa@_9 zY1SHMY&}VEc63?GOX4nS(Ba>Qq z>%?#I&lW4Ql@9eA_<*P1y(JYnJtR(5D!Aa@l1XAag1YO|CChZG0c}o{FBqZqGlBA9yob4moKZ zP;RL5waiCm-b=b-!t}LhqZamHs@7@WNv3`$$WM$dQP_0Yt4?NGHRA5;@sroEM8Q&i z&M}GaL)8JVgBHcPCyvz3-C#6QibmQC7pa16A5f`=+Jz^Eu>+XDKK~?tO+-Zb`ZL;_ zzJ&_yJ;i;F`_B86X=kC$z1!vO(>^Ej=56Gs{ze)yRh@x2YDBa$uS!znjWO$nDvT#! z$jni3|kO2w5tkhkyL$E z+4ZGp9F6C5 z70SJ+>~8&_Q5fHC^G@%7?iRl<ha;CK;a6&A-@>K|7fNEUqf{Fnq;xUsN}Va&8L~sm;hu2=!zcp-aq z(yyOuaoF1tXr;nj(VhyKRLQ9j`v_l7zS)qc9iM^n%}1u5ix=^E!VUC%0-KFw zlc8s~ot@iVYfUeG!G|9A>~#7OdLt7i80gGAURSTSP0Z&!`PJbyV)_TKu?;Yo^?ERS ziw!e%8nw{%>iWa8R#S!X;j5PiUlRgUa?>vy=?4~Fp`tQhGzv60y|BpjS`6n&#c8j{ z%ML?g7)Jzd&rNtp10}XyE$hB~HHd;=*2~1dQ*|p0(H*((n}ejr)(ur`%RK)r@u4c} zId_wMR=-A;T=CY*BdVxTetAeKqUN^5j_KN8!66T*tew)jd=xJEhte z`l`b#4uRDdH8=jgpL%HZ>p&w%e@MzF$cSfyDJInq9wm3M^V7^_?Vws*cBm}K*JS{3 z+dk5!YkH1frf)rb3Lo}aEfnUAhYQ(!J7JI|Fi#wQt5uN6L&C$8fV|>GD2`RP^e~4@ zD_OMH?de~}ebr@~-`}ev-*B+o?Vq34Wt_V+TPS-g5k2vHSz&Pj!B(LsCSOQk6+HPC zl(YCfa4Uu68v*w>adTc-Q0VX7684zr>Z-@gjRP!Cq@5eG-+AzgK9m0L z>h$POvHo7Gh|V{$!y)mH4e#cOikZgB+)vr9_umwOEvA#~x6GT#f@;%&wFmKQn2Uqv zr*v}LFfWAS+tpwYX?(>bLHDE5nXk0cxc1)puy6b@Z=`H zWTKEe=<)hX(z{~1?x!Fh2{?o`G} z7h9|ZDw)r}p-tD6aX-VI{QI%6Hp=J)Or_{a?Kq~$qld$rrOvBO3_W=@e&cK6`+4jY zw>p&|_EuR?Uto4r(*2%$wiR>*6{BVar@0|2>H007zed)e!#|JBbUEF1vN*s=T>Q(t z^Z66?Rj-{Zf3z>9rj;3XGjCfZ^KqX^(&=yro$y?WxpJwaOS4Zi3^TKXHt+LimR4?9 zT+r^l_LKG2c)jD{%!QkU?+QwEdtU|!ze^_8nWj@6Fic9e%)(dtMBkaA2_`f}ifPSR zNxQ_5=@1hgoAjTSe(}mb=gMG#G)TpDEh*Ed&zMcIU4%D5Pv$yTz;^!aQiJu}mu^F= z8*I8sjn8S{j3Zn>`Ylg}MV;(3Fg&TX@cnd$TYU@qn>A0tvtA`;&cS2a+2UnlxH@*i zcd{~scint0N6R+9B+Umo>*k)biM9XHq6_7Hm%<)q<<+Pc~(hy2NrHv^+fiyHEskGUu}tnO(n-SA0s z2pl4Q><&}amJDb$y+S` zO-gDg&@P@2K`gBNs3GXmg5fUyF}PqSer=BM#z3porgwSknEtZp#LvHV<^oA~xUP(I zPuM^5{&T$CuR?{9Iqq7pkr!#xPLeA5{!4jF;&`gWKhbz%P&VGPs?Gt)8$h(f~ZHsXT8gGw{EO`&;_M2-|=B z4#~Qu7z4de+}PjBm^bQh0DLon=gSOK65Y+KKZaktUcLnajBTnHShCcr9dP6jLwhn~ zNJ;^;H~~Hl($G(@`?_%U!l%0_Tmc!Q9r+3K_sfa7M4iczFe`IU^N%HupE!Ke>azvM z3e+w9y&2f^xqj!-+Pf^+8+UWJ7BeOzj2PX zFE-*kW&v?gcSx#ttCF9k_dEMUNZ-M4={z~O57EfR143OaS*~fp%GhQ-zl@dKD&n5b zz~#OWt#94)(EkiBnOSq9A@FoV+O7^U(fFfWc^=c)Y+l{Ez(h;=nn7*0UCTv1$G+DU z6#X2EuZ)uG67T|@+;O(H`Qdej1a`)?6b)WW8R_J}u%i|Z-tbR*VVNvBe&!UMoB3V# zNvc94R+z`0lt0N-;wV9@-2thu$C-r!Xj|qOatV>?dVQh5jplIxxn@cAK_hGn&8KU@P_@SbN z=%g^T+6NwH9x`;#JGrreD^4 zKgy&)G$f*`Ydzb;Pi#p7FVj{;Rrwr@z}c!mNQJ1be+K^4Xv(%bOxc9p!tIBC=NG-L z$7XU7byq8BemwDUal0GQ2MQ!ds|}5CsukSRdFRDeaJtbG&HHZ6NfUhasnL9?bgfp^ z>fu>p?C#Ie^5|&ywp8I=3_izY^5+i)RlkMbwRB1wE6*~MzD=aZ;XD{Ox_>tcXvjjnUHHR zb=?UQX6|xc_Y3{=Ov7@&N`B!UwCWH1r5p$j)yj&w00i{Smv+oQl!__y$WI$-1P=5t z`IOI~^1Kx6vS2way0SitDORT3_*BR3Ok^RK6wx*)22*>;IV=(Xa^gy%z}&2cZ^pzc z>EXDnG9_jU>mMNP%%aHH?YcK3N72^hB`SIj8zXWB(Tks`EzKI$4cejU^sr`_FWaWWd;B6U zTzxlF11zWn6+b859>x*tvXGMx-UcedxPI`cUv zUdRY}`VSrtxQq9tTt|v-7(RI6SK?kHbAj=LVyf_j0Qnu1jz2nFxo3=<{gLybuzNbI z1EX3c?9r_uUE>MeR%X9%f=rNoeMb3;X(CI+R&V{wmV=Fp%u4Ze-qXJgJg5O3wAVAr zN{1HX*~`Y%00m1ho4YG7;yxi(Zu~iWsr)li@jkkV(N6Jh{GSJh5v8^D^hXp;(M>&`!K`>uf@advf$yyZLuqo$q&}k54f4~_hOUx4#LWD{l#*p=UzE2 z_F>!Kh#YUvU{lt-ipac5suY`GKfvqkji1`fk)5HF3)iVU=S{a?i7C=AecoR+%C4gA zHq30kNk=7&sW0(iE1j_#gwlFlO7^QYZWc+};DrXSk$VoTWgG74IKI6~tYW2MPUw8T zBSrg_VZHJ7ka69KBIUe0;UY7cdkZ>sfr{s|O{ya9TwUX8)5Oj4wE!!TXu7fRiqb=- zLs=~rI^tKxec4sILax;hFL(I4dD?gy2ULddlYy}cRAlOG98l^wYBg`pzV(^oBcLU1 zeA(WJB+XtQ9kavRt8}(DYM1$1`xRg3SS+@GjLlbkHf(xmQXbSVeb0P!c286N&C*hd zZv{%V*DiC=9#99fwi%RQJkqpH4c}944e`BS@wF@-YH7^k|HXX${#@f3eIUc7Jh*Sc z6=uJROAjFIz*Bsb{7s<|)@N(jOcn8pMl7(7MEyGONz$X|o+rf)Kh`dM`ruh!O>!hpe`%tr9GJPg@gYmg_R2`Sx^;()=Ay>vet$xTJa+bASxm`=W z!!&$;wi0(kdJ}oUm4kh_;C6Rxe~9Vyc+`Eo`1(DIC=_*YzHiM!Yk%O;S>Z({F)^8w ztf5b@V)ZI%W6qtqoIg;^nb@6Mad2?y`*8P6!_RDUul)FK`m`ys@Lt>7ikaYMzKT0< z<&x2A)VbW^Dq!=`wUf?B`9@3po^j_UnNTRD~Y) zz$Wzv*YAHt)n2{%E1tpO%kk|S9(;jXI4Rsq;?>-wE z3w-o0Xqu054W^|=d((=YA>=qD7pK^2Gx_-Qy|mo;%NKuSv!9N1J1*5cFuN11&V3m- zc0*ASC3Wpq^h>4mUTtjLi^uxP_vl}@9FkL1KVK+?WeLy?=M+B+{aUR0NFqA=QR$Y| zW#~0D(L}lV75Dqcixvz~(o~CAbh&}Wbaz9(z5Yu_`y}vZq1fG5j~!WJ)Kz>hxUc)f zgkIv6m}R2lyJvNq+4T<EG!^c8SKuKarOZ&c=+hFQQE|!Z#0N)}d(7CI^X?mjf$H-GE>Hf?u&S)D zwzn_P-@Nq-aB7+)g+N8O-GIB?dELPgt4=f-_Z?AOxWX&IwfMqp1U?yjx4wpb<}lXS z)P&bA8FxJ9``E43y$lD`t+gQxEDe|su|6X4cB-oyqKd=PU?oT zGoSB9J(9MtY)w41%x&Yb@@T#3=&JmHNl_yu=a!@R^ADGTgYy6cpJ=u0!JCV8RF6>? z{R7CDz)uESbdMS}Rb?+~uGzYwe_QkL+%lu1x~!?u7C}{&6&4{N7#z9kiT zfNN3@={yM&tC)0IUf!m$h^Bqi|N71|+@9JXgzr&MvRKxvRPcjE0#((a+J%dYBE#h7 zb)|6$tCJ01W!H+NVcg%@iD4JAWC+=^IWU$*hxe^c4_w=9J079d3DNG~`Xf_yX=mg4 z^@(YrbM629WUdk|W6onYQIjXw9vpX8c~Cn+ppR_W!Dy=jbuZDhvZ5J~gugm_QG!ZK zjtKvBntx?*@Us<-=}p>6@k=jB&+8*wE7k751?F2`d4TR`q4&pLjHfAJf~cU{=)xhj zkY7u_z-@BCJ+@vAl?dL+XSVXYx7IELm> zNA7?5g+wm9jSw3=n85w;ufx*y4{v_aJb$Aa{?LG)0KXBG1K9#Ty8q!!=i+i$E`x9p z(7AjBc1C1qu0pkO9B?nI-7{5W13$O|AW2@OW#amjbQ;jC*#T9J0Iuk&zTG?=e$X66 z#*p6BM~cAj6Z+tH!{L90k2%kSRxCRHn&SE^gC7z8!acJg{pWw+pP_2+fZgqPFOoU~ zRSabv9nVnR(5pD%o0m0D4Qql$Qu85vH?!N-ZyxOaxdB{o18!IR$cC%nwko=>*j+$ zo_Xhre&$k9D@C8gFf&W#y=;ehR-&flH&bkpaBh>ktF3f%R^>)?nW&MZhEnU;hPK0X2MGV4xY5T)+=PO_mGydva+`{ z!#$|u+e?7?lsS|Qa;gJWcJS%#?6Z>qp(U(eFN%LOb-%t$Fo|J2Dqcx&h4_3EG!{$w zI~Emxq(y>NeSH|jY_Ea=-H#%ojW?lrQZabbr~P5a4=rYn!{D}?a9c;9L=Av#E}5Pj z|LZ*d7r1w%l@eEFJ`byX7(Ypv=ZduLBwtsnvWC#|%=$t;k>`U>cr#09P#)#(otP$g zcLEcUxDH?Hjhx3ruKV61C6_KAlcoaX%__;>>gjH_SUR{VyvnnN-4oWg92!lV0-Wf_UsGyot;@^MB$cLYjen(y(e5OVTV{m)d?Q;?0LTr(>fyeQ-pRiHdz_oH7M%uft zCswCeV^w&D@6_P}@RZbp&v#8JMVyoTbV*B?v>-TmBV1mVm%uS)<<%?}&jiDkNZ!Wk zpOL@U2?Lh0g`S6_$F7yScX`xSdZF z^e_Rw%w61}L&hpZ@7MhIAadtvfRewc>l_QqB$y#&)=>h5BGUp*BH%l#7nLqDoK#&q zQ}82l%P(QmUcU~3%fW5`+^)r@+62C%A@A;Jkly`%4z54BUlM&*wtrHGg|CKn+q_@1 zVsc&J4VYAD7XO`UU$aX6zMz8BXugET=2hXu=I%0)pHf1|CFp)tnp zWzkcjjud=jo(R7IDgsZJY%yXszc8%=nnH}JqT)o)7!V>`SkxC# zFRB7ohSX%Lt9V4ONkZ<>8-tcpA=J!-7U z<{_2!1HI>`KO3)N*MXXJJt#ZrA6=z|@c5^n2?0_3Q3T;471s0CKNQ!Nx~TYXbNJbK z!nZ4f7kMFZ3oE^$W@_5a4-rkzA!B;UIec)hbbeDNwfHG65b~+ysW{Ge z)5nKaQ5fD!PKZW-I`#G1=%uLjnP-KBy3oJXEC}5@*Ma&z-55}U@4b0o`pf!kSOQ*=ld(#@J0k4^THwM|D~B^Q^l(Ch;brMo z=q6;M3R=mH^wIZtMFq6n^ve3*96dNGZIN+A?Z1R7N~O%eS`}WP8X8GeEXOExU}^|_ zx@D?O?v|9ZONz+e$MjQY6hsLl%8+xx58#dCpG`$M$N^3{x;_r`o^!Q(Zv>Pi(J4-O*#le=V%lgD~< zM7hWo>{pNbJB$v#V{@pEKPQugR{K8rduQSGT6I=;!>|o->_J{F9QWycKp=nMFi~X* z*LtFtbaF+`D**|jAOUfmkD_Al|AOyqy&otgDKNF@(m&THa)EmirU)G9)(Ec#GBa7> zaU?Q+&r?{omCFcT@xT%w-h zStvJ({5~qaj@MgY$sx;2|sEMWe5-9UZ2DMe#epA z5l_SU_^K zAB2S24I7d4kg%;487Kv%8h0vomdd&Sl0rga+HX#(;r4U zkdb#O=KX>!aE0N~=-CH~=!KeNN@hZl$UY3e8+;bSNkuR6idHF+>2%&*uNArWq3D)B z9q51=ku3T+C@|o49ylyrJMyL=5&~KGb10jKNo7wTQh)r5>xJw!52NbcwxAwHO07d* z=%veu&>4iHqSl51QDVON{k$jSc9;_O_W_RrI`F_v8=_WSoY}-C<=1UKd?LPJ!JT)& z1DQucDh^>3L&n=TK&Xe_D_~&=n4ETHqCt&(*?t9j198~<8sLh$pf`6Sd~6l=^z#ZB zoLPfQR?y5ym0x6Gtp)kcA-jOMc^=VLiZAbxBeTDHlw9x)NJoM+IkHNtcbys)k!K?CEMx_-^8^~!8Uo22C_ZUN2b-Kv=x!=l(o)F9i ze$>4(P%T*xVZSnz9PPah?k6nd`qpgO`4vV(CbFu(lplz%e|o+DC@) z2m^kfIsF$^noEQCIZcKy$e8GO&77`N9v!%IeDFM;^O|1oQ77FdEW0`+tMrbQV&n18HCZyV( z4Au80sAIHIDOqM;&McY7-^QFV1i9Gz0FkZG*6sv#^5w8Q8{RAGB-47AN{VARU@QEp zkLaQDdtH--9@HbJUC_z6j$7w4Envg({+XzU62fS9_6@`h0)Mzc`qys+k~&IVsY(9= zM3d`m=Xni0OfD`0t~@+Ai|9C|%c2~RGWfe6kMi8ba^UhJ;D72qc+0#e4;FwwN%+z9 zqB5U!x-Wwkwf^N$s*dmprBtpOt{Ny+2!?boSqOU{v^`~CFgF+NABO?Xbob`L>nsm3d4DEG`n|< zRqR-B=y$mCcS(N8UWT4h?cvzi;!s9@{wJi-Cq0JC+9>t~HrJnLAu=b2?^@wz1HTy* zH%+IMPRu|p2PQ5jX#O2S&(TtpPdFM1KG@yc8wxLL((_-%-lv1a`Inx%Dz`NH($u>089fPcIz@dQ0U0H}0apXx$2o~g8 z16rv6L$XA1k7`{eAM-={bFI+GUr__7^bDg6pl>cOMf)O_E&0KH>bm zi%_LgbZo3Y7BvTXa(dnslRR%Te11rFQJVGJA(EG3j@x&$waJPH7lFNPsIp#QH`b5h z7YsggaD1*7P^OUPy3-Fm60>4GCf8bsc|P3y`$bg3g32VR*R%L55hCU9SKZbyGq(pIZ>%=l;e4 zQ}mI~G8VZW6P~GrMDHTmPmn7vp{o%6+%5KW< zy$wW8S!vhTmFIMI@x6k)BJ8>!v7Mw;?GEJ9^Px4JIsYTIk^nq*u)29#W`S&l594K` zj_qP=X5h8=PT!leTaC244qC{)MYQU0jcLFpB2>`idHgF4*yhzf$_(O8qx20v+Fy4O zs@vSUwnpn<72=D)?|+g6tYP<)S_NiD`bnZ4(TZbngOm@?eAmh9z>2{WvjPLi6}h}q zEbMMcKhPQF!TfTClz&VDuaIKAXq-@{X&AD1Uq7e+6%j{Z6h-wZ|KmPDBJHVU4jjR- zox4++?-?;DawoM{mKLwT>5XHdh{2wTVy;EwUXH#m8P3BG z?2O{9CchP9{P(KjE`+vV|Hcq@r8f}55b$KWT5r#`4nAO-kUe)B6S zJWKA9z??~q(~j5K+2=Yid)gC;e`kClHwbTUU{lymIglU^iku%CdH^Yz0#>i2s}T=Q zOdlMaNs;B5acofo(M^wPu?F7<_QQKqw|2WombZIFAgMctlKZ#2lx70tQ`Z1;{7QX2 zdaM*$>H@>41Gdwv)thjU;o*OA^Q3^xf&FBuSrhf3zrN=bh1-lg*ORvickq+wN7Y6* z|1cm9bsX4G^Fq-6ilD8HUwP4IZX5&`5yoZT=FS9JvX;gyy(D**t*5tImT2lJE=A1& z46d_n2Dkfe#MV*l#skxZIk1d8iWXeX+U2Zq3Xdeu!IjR&02GRT8I_5fp_X(8CZJf> z!O5u&a7xHli@m?(u!%MDS&dga(>>3OL+H;N`t^qD{eA+h7xRBCDQ8MecV_$(wbSY2 zQNnw}tPiCejNckh$V#TA-H};ulT&!ola!j#aE}+F)Y_Fm`_y7%sHI{O=yEhvJETAg zGeJioP0&44<9|M75z@5o@Ev7N4vsq3z?)#Bh^8@4><&fHZk%GyrIE9T3LJhfwr06w zi6lmBD*|nW^??G<7HiXi2Sc#w^G#Q5sDtl%sLm8hSgAn*iD)@Wn3Uwu7>=gw7_Bl+ z0?>ybt2xH?E!OlM5PTZ$fk)=a-9>D2+JWS(;9iAzxOsA!E&pVz>5yyS6pDm4H8GVL zDz!SrxWF2bwHz=LJV@y=R~o$t2HQ2c)I>zdO<;~1SFuBgX~ve*187Q|)1!oWpXSEO zB`moUZ)!Sx*Ro~b5l`BEyD`d90uNfLIi0yK*^7D!sfE2Kb6}2M{`UE}_G%HU1owdY zEH$l%545cwBT_zo?uH{;NGtQ{F#d8qB!jdfk?ecm{RTj<EC`C`K zX-fG|WgA9ncZQeV#j0c>KmUxr=XMlHzJ zwpDPA*;kpL;q7~6St999Rd78?$h5U~PO69W{hUK&?Dnz0<;M*8R z@2+&8%%@3{`MUGTp2MOLQUVbfi;qwg9iiR3OiEt&=e(=K{&8PTA?OJ%A0yoNPy_|^ zzq2U`RD>&TA6fv}Y5LDTHsr10QB#>d`%pX{Pa?_f)Ljay5IIrmr#}M|OA^c>_`fV) zlqJZJFKeg7cCdYbQlMraK4?#=Ww^o>VgcCMft>JI%D?ru|0>dsN`U-%L)xU>DV(VL z0c?Ty11ii>3pu%#-C|G2k5E|sYQ?~ahbfOs=dP0q&)ix({0xigAMjSF)Tt;rfv-G8 zlYtRziMB02Xl3~lt+=Y}!3R;E;%K19*fm6U^>xF}<(pyOdkN{TQzI`0lkHO$T6^so zFe(0($kM~HO8h z%8R$DGm*XnXBcO?R_LI?+>$1y8gHm^g>w_oK`# z0uE0R_=Bif3kb=5W}~>~y^p?jO9f#^I{}W%f{5sx`|itaz=eX)^vUvArI+L(zn%A~ zcbu-D_(KCw$7K7eA&8Sfrhu@R>Z@7ubt=m9?Do6&T4#(@RBeyjKvfEMdz3?cQrj_fAg4rB!Y z=I)IQek~s}wgVGEW`4%5MwW3Ikl8gSzbedO&^ky1v1@?Xs(GU!!FlRXbvM}gS0*!z z$FF#8lqjG9%X|~n8e|#tO3cj43YZbQZ2(d!muWJw1e?u|Cr+P(wm?$vY>!Q5 z4D=uKmSnn~ud(Z(b)ZES%#)?X_mM%KMXT&v?1y&a`Q!5j(+L`lR$gg!$pg9tUM|Jp zIQVoe3)SSWZL@8=*?=5(a6=sb^yr%XWM-{*AlS0uZ1|mto=Mr3o^w@F9}B|Y&ui-& zT%*zo={@%FXl=4zw|P8yNXs;l|8}jhw=7j8g^(vC%Kz<;1S{sXttkUHz2syor3R}c z&=zL%VD+dfP$=QIkWIA}!NMSU*d!sZX#2%RTA=;xvh241eh*NlMbtP}taEIXnD?;1 zGx?&vR56kXSbz@W;Ux8*Znc<+CA>)zOD(m4Gv>jv5)Iu1`+3vNC+GF2Ghd>oM%U~T zO`!mtq26Li^BfB~Lgum)Sb?u6zk1A$@;+s)c~yd{SZxwM(ell|C`i{!DFzA^%J1(N z`mF+2%-7kkLJMXl!)lw4mLHB6h(WDP$y_Clj9!2qiq!OK*%poR>BU6WJk^88eB>-p zq<*Vc#aNKs+fcWiAi{FwY{}_&)Z1!{RU%*t@g|Az?W3yWox`-or&X|ID?PjI{o>l( zALR(0Io^iBkFAZa{)4VnumprsRb4tP^DNd7cYHBhXqAgqG&g@);i%0wR!9%Fz^4a% zxzTd!y_{68mIxI~Cz<8od%ce4jYNmdg&`c^Ez=3Y08Mj~%)XV6 z!1&~TRFg9&Rk6w>Y)nDi-Ls*2&A`gv?}tW%6CmF1RZu~HezH;Ko1vOa+lD;28Tw&A zx-PlpRf`)*g0pun_h?Mpb z$$TmbNQ5O=Cjb0h06tmi(ERB(16AP&cJgQo8uNER zNKGj!NZ|-(sFtoBP*&y^V4PRogMrd;n-)HU?l-!3WcEEwNC zMMmmnNsqfxJ<={D_+%(3mhAe?k4JXHx06P|Mw0>_r%(5L@KWS0J4wVfs_KrK0O{kr zK-W1(XFo z1QT+bx8F?GrGxO;~j6;Qoha3E7~_s8~Tyi?w`~jMC!>e9LBre~TYK`heL<67e+K zX)(Q0#T{S?rS;YjHqM+ivCrBGvYE3t5Gu(~{tt4Dpq~OqS?YsXu3jXc;aAAu3d&d8 zuGWmu(i*gQD^OCpr!0StHgZBPtI$F_<0XuD86^M!+O0StJV)+$xYqDOyU}A&k(vRW zL}X4~Zh1z$UDe!xYU)~in*tw7{_7*tJH*Bf21DAWTw@84xVho)Vz^wiIX zn;a3PfiVX$<+btJBWbEtwN;b6<*ZS^;hOzI523e#a+YEwMJrkly~DD_baCZrbKFBm z?GR0uHNh{ZQ}!&Daz$FH&8D!oR-`tXWsY{3&6nb`<^GZQn>dQ-wQ5}JJz8f<7*2QR zkOf$3Og+ukT$~rz*j?+j+iF(RnB*eVnJ;(`5Sz_JbNff37t$`Za&x>Y3(G9$hqip| zXDQ=6P^>O@tD4ivqE4eGJr@KH=VYHJI+_mWyq&j-nv3PjYI>3W3wZH=9e4i{qv*>I zFH=#OJ`1@()kaf4O&Njp7YTG!RASH0C}DXpnQ~`|uJ|it96zGL?v(f4J0VjvaucfW zR_QJ|w(nx)H~$fFH0(cD2kvXV_F)a~*0@V>5Vf=n7!XraRM{VIfBPs!yV?L+V6b|7 zf)o)o2_nc=X>WN>*8WcJ)!rYQT&`NHntNG0P>0z@jz`v6O0Dh8i9u2qytkx^a~(0p zH3-*jz(Fc`=LoiI^Kx_!O_m-!zSQu=wlS66y3wi*Pk7_?(pX%cV_u4x zAe#H9&esV~l}u*oT8haj!DH9&H%q(GOg4Hg8Rj0cTh~2qaY&gkVp4OFnfzvbTD->B zUoh)^RQD5Im%e6|Y+0Ui-1Oy@j0DlkZK@)-2vsnfd2jlg&NRYeq4=wniq5>4OG_iZ z+WIIxD0g=4V?$$7zq_FEQ%h~HJD5p(^jczZ6L5l>`0D#?xr-^6YBna)@FRfsU;!Pu zX(}mD46i0eAU=5uU!N;~ah{|lUQ z{;ymA)45`8C;up3{108K75G2lLm^GIcrlt%nPB06RSKqiME-vu{0Hs-ApcMJ;D6MD z^_+$>xbBfDAdy!go#|W(y4;tyAv!_BbT-#Xau`l3x@7fs5}m9Tt=<` z{|V8M{%IrH|Is+vTp4#(;2)V^Hb*MK`l2aCjojIehE$iHNk?8hqM(QP|9GSqaFfE= zGsFtKQ7QQun9{P@nU0UR)*|Q9bNv5H?0}o1hteDs+E!1pP*}@m`!5F*vSbcD{^6d6 zOaCGTC!lJ1zJDK`U!bC5J?akCJc@ZW!&DBV=&+$qTcE%@f6K_q{~;eF`s0ZCUlZLp za{jJ`SrDcy8B|o+B3{Dp4i5iQfZ+cr02;Q>yioGr0gy6vhB`S5-}g$ouuVthc=4#@ zzF@iQ8d_BAb}VJ)wxy__rN3I*mrA1kPx82tYUM+GF5^EA2H)apuKX9NJ5)DH`X9q- z&%x$*vat8g8!r7fMeWn8>Y@LSueXkB`hDYvhl&V@NC+xvpdj6nib^QbofD8QiO~ZE z5hO)GxY8F&K>f-uU^R=l93+oQHGZ?7X?(cU`aRx?b0{JGv*p zj1w~yAkYVD9HjWYCKw>%g&LIcRsBo3v@W=b8p1`;`)qT5?IN~wj3xJH%>N0-h5vOY@(-8GIbQ9kMr2Qv zOxjL?-X?dd@bSRTCnI8W8|Yz6^qD09uk!U#SZJRPxbA#Jzn1Lj{L<7Dm-4qLj2uT>(K~!r5un5*qcM76L-09L@dcI~{or(tp5rF>JEC{!iNfNr=y! zFZ>^@{{NK&K-3q9yi^G6pQhPS)sp}RU!Tp+)jMK-u40=CaTkVs#`fnQ8<$f3!neWNlTi0o_{u9?Pu_aVK&;M|QlRHmQf1Si8{--8}LJ`7g%+7cJX(C|>yccl{p#4j}JS0JxHTAon=ZowA z1BR!VN)(x-^(k{VHRzohQTUC>yeEhE-5o#&$(aczh;fnsstlB4H2DHH8~S(;fV5D4 zF5*DGxtIK3SCW+uSehe|g66hT|A2Af9DwB(E7NEFA(02hp9nRYP6~mLbKCdSO}{K- zGBD8OR1Qg8a7dX(PkdMLUFPvVZ$#0kL1Jk3<<`jpy1RygISXappxabNsQGfBe-n7O zg^$6`^HZ` z-XvP=Tc=4?^j6I$ZueP-vYg$AY(D@2_c*M`$6Bz9&f`{8o+#`0(U2ru?MH}I>Z zVi?u=X!dg+<1->(JBJ{hnXsA3ry5kfXP9!`&sbN8gXIrIWg-lI^w4fd&#;W+ zh@iBqqs;F+Li+adQf!7iX4ciEhc>H?{!?DMO5sgc1)%$Q8xw!l1-?uBF-L^lq4rwYr}9+&XmttocQ3|C%xDQNsFe zP^PRnmPFdOBUd&H>7|$`K)tlT<~-ZMy8#iaeZJwM(R-+UobF48&TKN!*t4p>qq+OA zA!2VPYR5@Z?yOWNY}5*Q?nrehfw5!#tvomcDpn%dNk2;h<`h2=E(n2T>;1mT-9psD ze@rM6Uroy5AaE$?DWr*^*JA&F7b|@wU;K>MQ|WMO%RdjTKp-50 zY*jF-%VLF|1;P!sjV}aK{tpU5_k14NyrY14DYJP=RvA4(eY5%J_gb7{ z+&Vd8vi^@U^amx0GN7aL;* zLpoY*=}1g>ix6s>|Fj4lTIQNNnKY;DKEEn2gq~=t2Asyi16IKO``Kl>+M4tRz0rte z#vf)#=6e%O4$#IQdM3y~g+PQ;wScztdI*u&zaAw&D7)aB>%tXP4D-S02LYaW&~&ny zZSpnh!IP@`^Z5d$l0`z-HqcA5=!s`iXb21e_$|BJzhqHTY|DM$UHIvLp8KclPpkM! zQJ0m?R4%l^Gi?(Kpp>EKdTK3&!4$85AWNS|^7fh`V_qPCL@`E;@d+(p)LbkEoTxKr zm}ZT_n!mw3m{QcmZpQl0{UaQv``3_3Z6T3c)3v@$#VJye1&V4?^q}&>aDS;w6_^W~ zn5B+jH(cn2i$c(LXy5u&hi6{L_sZ}+*K;9tP<}UOzxV_>r*H}vI%j%yn!P=i;LfE! z>BtbEw?cAuh>P&9i)mzT67@Ys$Huk{=PY)kWtA{2?jklJ>C@c(EeYnYpEABx#T|N# z1o1uim5w6Mbbg={B&K2#Ub`fH26*w7gU_on2{6aZ37>(BM_Gr zM>AIR$afW}H80rv7Eq_|MR;TITw7A}<)A@xUbN2hW&n?G0Cw=k{7R-(Kq9J3vc3)w z4s$f%3kuUq8v8UCY@$BCx3QA;f2E(%bhA9>rrV14v2;XvYt~$6Cv*zR-aTGtH(C(- zeH`$f_TJM;vh)cs+FlNfY2KPxc|~u%u}Gp+MYH=xMkH@i`_2=n?wdroIoYo=t{5L0I5cu^O4v6fIvwhp zj@|mj#+qjx2iux>g1y%ri+m_esR(n3aT!#fIk@DzUlEWI`GWYW@F&MIGP~$f#XXsV zflO7VDCe(VD-1Qb9rvL>Jhz(V^Y26Q_lCLWZ){TC$o2bsgeQyqeQ`;gs)Iqes(v*J zJ;wC_NZ=d-IQOn7_)UjuI?L`WKDQ@FM zh-GgbWyQlK@E7t(hGpTBaADG^M(~kH6#nBr`KvC>ULuYj!R8bKYrAcG6NH?cr+^Xj=9; z_9K6F*Zgo8YIuk*c@JVi_iuc`D0d zf>6TJ>7pOSa%}dmr?i~(WsrR^l}G28-Y zi~74~FefopFO(rCL)W=DWOtz`NLFBVBGb%oZ7C%3m&8$kkeh^{zQ52X*0EddqoIsq z0hu$QcO63>j|_wLx@k1QUnqEB$tKsq0`rP{c>$Nz*>v1j#G)iaZ1X!trEeR2TXJK< zc6N%jCksULKeV!wdLSST{!l}swOH#o&y)B&z=klGW}@uo8n>4>)M{o&qaYuCQ~ z)~h{yAofZOmBES|dacbzO8%2`1Zz@=`)e7(7=Idjc#s17zU;gY>q|EQqT;b7`-O}w zoub>(eKrGh*O&YD>qS{;V@?<}L>1p+MUHBG{~Xi&I!ykG)mmJ*@^rx3%CWsC?Mr4_ zU40Xdm6%8lD3FL-hVbX(@B6QFN3ECcQPBMvqVkG~vK-}>u!e0kT>TS(3jk}`@~zTX zS>w20GHIg1PX^@t_oo<|`iRb?K_YF6RzV{dwk*j)Km7gF*@WKUmE8b%^SStGNx^FHuY5suei-E zrZsta^$LMyd4uJ;On=Yxvw7*W`hzPk8gPAf!TVI%h!!p<7lDxe;6xbAg-P;oJL7%_ zas7z6w!;zRc{&x(p*DJyyMW7mNf_GWrWfcu5EGWayhY!RY!PQPn8_mZ__frDz-RgM zzPI1Xed?N9j}I*W_$_g!|GyAZlu7u|+T(U|w{}2Je|g2Eq*+<&lr1in^pj*t#}WF8 z{$jRmoF!N|^JHkRiy>1^>T_VM&ZQzeZ=e6>j@#KqtBrP>|ZZ6n{PTM>mX33hQ2;a~mXJRH*KEPSO_Bewb zd6b?j`kTx+7*&d7^1g`O=!YdU=26&3wMa>TYkVP}tJAswIXxgr@>D}e(5R8%%k;UcS}e0?XKHur59d71>f>_X=DSFQsFTrXX{_#( zbDH$wI2`&g&RGc2vMMxKFJLBlM~UUT`|D_<*Q{pC63*vbCfxTHo*1rN6&pjUVu%fK zGmr4KZig`LjC$Y32BlpBYSGo)lA%Sb3S)@Nugx%6UmBx&>66anGNuLuA(#y4&!@RC zXZcY{O*09?_1O%C7p;A7Z|}KQ(+J;=0%(F5#o_F=L%t{@eN@fDRhCHKDHTC8anlZ> z@1~73HmJi<^j{jHm-aPuqv20gx5=-7%U(1rJZ1Hjt$ihzJ@T1J55RNw*^W4h?3aVs z1sj>eJgMfpt9jN-R7?4y&BwHVw8EDl-^kI_z}0b3TYcz8|CfQxxAzdSHcy?c(c`U! zfr<2R5TJsWIPe*Ns$4AR1z4<-LmwN2r5)AzM6UpZyJhf6al^*ojT>76aVwkdFXxO^ z2x;sjez1quN98gisD-~uYNu!Qu#%3#&2`?$R+=z#e=G!jp~Vt4m5NcFC|AUUFj%J$9BDUt=WOjCw<=t@O|v_p|5Ky+HEt*IiNG z0Z6XQ^N6*|J7@eckJrXofp1?aKvlm>WJe66@Daz&fR<8cnh3j&a!@}QlPqgpn)7t4 z(gV%5tfs`F%PzsxVxdzI=ONj!^)snv25Sdrfss@w6Gv#abEEdNLP0}Dc2nzamO{+O z{=<;smCX_=J=vbjEA2azyqRV`*5M=;suKPOkIt&2H!wZEkW<&I+T6l4pnSJYDDjA-@kvv zaOM4$06iIHe|Yn~--9kMo_+K-XziV;f&BalZ!CZpZ|1_Y0>x}katWoGDWb^Zz8M_Z z7xs}ZHJ*1;Scg|iiz_LAHh%_SHd0Q~g)0U~7COGew5;@# zR*P6T#nT><;J){;rn-(nbnK#xbD0K}*Hw3B#=|Djn>w>iRN?4W<1dG_!>H{o!cyap zy?$L8iaWC7>7PsA2ln+9BYe^1D$)HX5ok1$i*wtL3&Sb@Sa!PUPZ4r)uM6nJZB6H( zw&mB+)euAfaRml2#oR1R3mJe;(>Ny6zB6AZhJ$9pzdLNc3nA$DK93AAurKzt<9pAg zRpjdC0pDO}T8#Vl?6%{H<x)9BD{Q$*eZ|$eSEC>22flB}ZgQ1M0gtsUZOo~B zUHJM6x-IkW`Hgb(`Dh_Ab~LrB;%MD{OfiA!$#(>Q`(bb`VLB*m({+R-v3Zk$`VEh) zKPtHMF~fFVo)I(8fdNbskBc2Dt7}`v2~rC&-^Z9}r-^PXE0H2xEd3R7qj5EhRI{~m ze3=5y-vZaj5?+fV+OUSmhGSpxu+Uq}SEqSUBmx$>Gp*BX9*fO^ryz8{r=T_$F7A|eQ_!@pDT z&{^oF*~~n2Z2Au0e5%UwWoL4B?JTHz8mY#L_A_PqB?;I4Rj9_mAw2C7${!woc6lR;vsZ-O^C9+JNQmm){#MnIqHWfIQt}TI?)^nWxG~O+(ZunSZe2W3 zAi!6gG5*Ci10{?AN^YlwFdg5};oTUt1&~6|ZSfJZhd9~J++$M`p%t9;inc0aBT=g^ z2w-m_fA+PFU}ZZO_r|*k)mLz#4e|czqW0DgQYaE6qdZ;88OPd4t+PYKxz>BpA@VLG zaq3W2E%{OA)xJM^{T1w^ryYxKoN8wV8)fj1%52nU%&XD+2=A%(Z~Q6rQ{CG8P7nOdZ7uXq#w5nW7Z7#g{IgJ&O!_XBm4QMdzq|ScKAbJyy3XH(3DWMOMMegj|K*uQ_ z;nXHqosd?hsL}TE)_hb4=>ls(DvI9%(1$f8$Et%LgQ(>b?O?*Q4X61Z8D=_7g6OnN zu`~P;!gC=g$Fuz;)68}LqcZxUhwa$G+Z+e_cI`r%VD4z$D#xF6Udes+j7!Bi zTHst{HHlnE7oC>fH-$a2fwMHZ3jg>mU;i@+{GrVX^g6TMz z`)kzzE>ArJ!9};Oukb*S8Ze%(zV&ldM=1KwFvT)bA1n}a2MBPxdDiJe_ ziaw57Q)oP-&3jLHrhXrL-9J#W2_qX`5JNCe3!;pD@@*E^*4SV`ocq4Y{#M=!_}}mI zi3^3$2e~X0cMj6w&REV&Ca+@G664tTDi=eUy%V_HmTnqFGQ|cK*>K}JE_75yRrHUP zQ<=th8+P_RMAcmc{kMGN5m@DOHRLfI@mTgpU)$=V)l-*PAJkNwdE`3jvg6X&FKoA2 zUEkQB#8Vdbp;#aAv}|uAu0i2c@WR!%yQ~S;1ewRqRSSsOy8QDLJK{$GL$E$@vWf`RAsO2CI zJFJk2`!OmV4T#s1dw|!OQ}-mS2!nhHmK^m)lxRe1f>r(iDvn#!s)2@QBYaS|s^kU3 zNui_b75(}BMD!li0XNRV*hYJK?VgyE`)5;TeIjQNey?9YxpIr-dH!*Ja|6`aXl^4ZkwImOGCz3jxW^5T=V#K^C&*F;~E)>x*|^ARk-uG zc}_kYZ=GI6PNy7ciW7$q-yQQFJeUD-;Br@2>TA0!(=0ml=i(~ zNZ3qmW(a^6k>mLAd)r%eKBzqUCnQH#N0N-Z`{P2v_65EBAffaZw>Gb0-~q#aE%fOR5zP6DoziLZ#O}wog_wOnV;cKH zN}G?shE%XJjk|>y9;?%`_dYJ=MUBUa2I2T9i|F>7o3EqyRExvJud70Pw9QyXnO}XH z3LSsWDrop~pXvzAeM`JkF!yy?sLxcGwgNQA^aZpnw?)=4i>00PtY{YKJUZMLUrLN) z7-jB$vFb$~djWgL>#WY15@yBMut~9d&+1fu0cxNWaY&2cYKp1IMqGatHQ!k+Wy0Z> zu$z1cIEDUMu=#8G>1$}X`mmkW%b#I{XIIATWEf)cyT5M&r+P;}`nKRNegwX2&$xgeh~Jp2UNs>zZ}n=Wa%FYC)sp%zzkVyoMrb?yyw2wB?L;r@*jIGYJs8hc$)=kncHt|WAuY@7tr zmLa+}cg<@A`EJFPn1c^8=G6g93U?TY<2S+vZ0kBI@GoQ6Yr#thkC~X`e%zRA){Gal z%d*zFF0rTz_2*`ZfC-*~%X*zUWd z_Q*#)f;uvSe8^zEhGtRbg7pySS)jMyq3(+4tcahOD&7e`@0Y357x1Ib#k-P!JAQ6c zZ(@C?PPxBnE^u-x_eJJf+fJKkLm8p&lPoilFsi(qFuM_Au=qkWkN>mTnP%5`-`&xH zBxf+PtvN9_QG_1V^u!@b8a1aQHPAfY24ORgB%GLG+!(-Qo8k-STmsx}CzEsQ%JJx* zhg#5xZQ}O}`;6rYVvv&4wr>yynPs3Af5222AT;Cv5xd|^v`@Q87&!m;F z{d5?+xA*gA;&?JqW31|n<5>4yT(V>7DKzq|d+fJS*rZ;70hykx0@?#+f_4nFvg1m? zzSw@VqR)o2-e1G!eZm^l|s{uDPDFb!K7XPid6-*yfK>6Lefv;8BgY zbw-?$PIZvoOeg8tlv7!oKkKGOjfTRsl3Cr8JdOT`Gh21aJ6f-}9bIOqCdQ`s($0np zb6A$$3gk*pHcwX?BAmeS-1=1#p=T0<6OXJRvU`22EHBFXAj$iEdib-juZhplr4)`= zS5|$x%WM+~0nVCRKHG9{(c1>I6M6fn@!H`xRnEvP`%~CqIs&(Q`_l(fDB`!urcM!z zuwq8iGxh#(`?%KuQYEgiJ;6RzaINf-B(!Xad8wTrJfrK}1KcJ)_-a!tU^x!nStVqS zDpMx0YrqKYB(KbB385* zd?M{SBU^SoG_f}vjz8F1@lYRQqs~1uQLw(Cd)5kU84DXEnJhmq#wjFza7j1gDZn-! zDcg8e(G(0IFZFsgyWs2p#C1)y?2k%nGz$st6#ELaE~_YEbF|I>aQLw$NnW&AG2rEw za42z)UETR|WT?de_5Q6t`^uK3W_(F9z!u!iXqJ?%Z)b9D(epDT4y?k zisD%Cg+bJXO^w~9#qN@0$9<-7l1WEr-~DPiaAK$dk^>!hIPz%Cf9Ctl7>QyHey5gD z`^5bN;Tgvc>QmSC7b&`jmB+q#qPBiA@m22jy#Y7C;}eVfacfd~J=9wK5DHbs_Cgi8 zEc>z!4%N|#q%6p0e3bHx)(yp?ic_?=hj`}*+2u#e3#j>Z5;c!jmPAGsj?EQo*x5DRZIP5DBjq=DSZKWF`Ut!p z8wdsQJ()9^bXhDPaS;f?RZB$>4GY9 zufV$QLU~LbX1CDvXZI`58jx44ioYKCDxCj=_H8Je4N{-+Pw>$i_Ii!uz_nsRUt?)N zS(2WcXLH$YILwIX9inZDH@CqyyP;^o>{IRDR^Gm@c+&||{!p%Vz(c@xeQzU4<9myv z3YV)!3(RdW3Ba4bF_tUjGt2NtdwH<>d2L3L8-CvuJ(8)F@sJ9)Z)#khx+%16frF56 zu40>xj<-r;BK;gV_y_dBk%SCaB$N9=gK1u&gPAOhr{J*ow0yciwzxm6cw*Vs#k>uqAGd!*{ zOa+cX;$c;}N_`&F)6#IRcJE^31L}oZk1x)0F~RLRQj=)bhgrpeEGqY*w%Q0a&!(Rb z!zDE~4?kd&_IyoGjv;kVMK?FZ=t$IqKlr=2JxS)6us_2RF-<)|KjDVmdtSUhIP6{D zZ5bz`s!y_c*lTI^XJUS4sEm0J>}N+av3j`}Ku=WIYcnx=1B&hog#IjjMF`?=2-M(b zf(fh+>Nq(?owwt4HjC>jGww-DeawTClaU58tf>$$A}Ucv8;QG z4WjOr?0=qD@{)X(%Sk|2$%QZyB-2{&96(Fnh=<#eS{+aN_eJ64a`@EY~|XlK0e> zb6j0k&<-zlDChoxM9zUvdN`5xveW-@;6tjX49bxS-4OmoNEA7aoI|JALu+nX8JhF( zf4n9~EI(!KJA94jX$FLVnl-x49nG`T^vCCFj_@0`_K|0~?n-Vwe@Lq&ruUV}-{+o> z6;P3=FNVVu@_5*OQiHg@DBV)keiI-FN&vze5GMssbw!COFYxgdKs!KRLh8HMYd>%o z5uf|8CO;AB+B16t57XFiCL?QifO@A9{7}iJC8$oREiZ{oP8635NObg zRwVN7^64{f`x}F0eTaKW^rwOF&Il>)`Gog)5IK~PCzg3I9O4@V#{Z%KW* z8Kmc2OCR=vl>%7W#r0*J`VqMcVIcvCGO`(m>w?}@wJcjj19SeK{vQu5OM+{(_7^k@ zzV17Zj?EsX6~|}mBM<7|7a3(Sx0A}^;XMWucS-}TU6u>jpaO4U1q@e z#`(^--hH=5V;QFuw1)&%B1@gRno~rP$lq(L#FJ_!&Y$sA59*mUf9zsY-64>H#P(`_ z5w=lRa-8Ak%;Vl{2}vWpuK z;o5v z^Qv}*1hIou_Tf6d$I$jmgpb2y9-;!h^?ZK%4td&U)%#gNs|*EcZ5(27<`{@^%_Q)y zU9l2>fU;jFU#*WAp9;1wt53@{u?3x7oM)z|2S=t7WCZ$kvk^THJgZ;6*DV>KUJ6R; z;~izTd2yS6SZaYj;lI%>lP9i?s`@lt2U1#^RR1^I14?)rAm{Yc)tp>lkp)fia!AoFbj@>f%)#Eo@%*H}2kD0Ag?6Y8`* zY_Z^(xBV=6lmyQXfaSjz0RF%B*Uu?S^46wPEaBOMCEgru6TR5xOzKn2a6M9%Wg`#> zuiT%XfRiQDHr=2xu6408s}1kde+;!%j!KfmTReZier| zw!m%BIFSF~(|}^fX+ha9#|XXi>>Q3%nkYz{9jzwSc?KhpfdqG9_bymF@D0&6Od?Pf zVoq<#w4H7<;X>V2mIL>YLR|It$0oQTR`*>>d zxPBUR>OKnEM(R%q@`pD_!x2F;Vi(=u&`IHe>j_F!{KH1!B7k5rByA^_m1cb{GpV_w zjw0+FT`3=#cGrQTthRh?0TrfyS%kEnjeQPX>mknUiPGdCG;i;X4eHIGo{1vQ+I(IF zb;TS~YqD=llTv}C$Ya^df62B(x#C)hsp9_7fL@`0!af3n-m|tFJS(lmAsc{f!Bd|0 ziMx3|#<=}rj(-+FiN={6V9$?!^kHa9`?KE++r??m1F7`)gtD-aDicDJLPf~{%~H@> z7jebrMKNk-d)Z|moK{n8bL8%*w@VZY21x!@zvNCEJw~0*>wurXyhXSEtW$<%el58o z(Bj$;Cz58wh4|29hBUezZ(!+-l1#|(XV`N!TwiejH>T;P)S4CR`&9BH5Q z#H$bIh#T|XYAW*x=-QeXHb87b&=IJxneDn{3w9eta9s_nX{e)sOT+REq6&^bDeE$r zm#b?IFt{Jo3>|PBpP9w5Z$^yG&X{{W7MZ>!7h~a4q87Am>m-kprzzwO#uWOyR5=k1 zn@tVUZKeWOV!QTTr`Eqy!&PtK_UO<)yNZdpnYRqU04@`20 zPCM-EIoI$iPgHn8Hd)pt#UU9cvCEN*GUHwuW?j>k@RPYPvqNN{tp~(SPB-Y*CiCjc z8C!>j>f#yAF|>CHf8fcXFcFu8iI6)qG??2Fh9_WHaTEFrgyY7NDDPU|WmrLU*c?v- zIGJrbt1xfrQLqMouRLk5%wrBhLLFkKm#WRc6XH`QxT@5ZR7kR1-@V$ehmp2m_-8BS zu@eb{wl0}?-+4`N@;%29FgD8hhEUfQ6v1yYbZU!s$K?^5Y|^b9R(Vl+UR%OoH5>cb zHFn{kzP5SS7_)FZ+vBCSz?1!S8CM}?bXM+)mHhTKw3kygb+!7lGJq8*Z-l!CbDbqnt^ zQA;v3IJn~$!{JdeU>`f=-P~|!f(`)@^GGj?4W!PD5HT220vrha;VG;~e2V3iUaxg|!{(Aa}y=q5br+l6peuLlN z{u_=BBVS;~vbn}8i1OM-c$`u>Vz5P3f|;&xTIZDs9P;|p3Iqw?#n?VSabVwP2nls8 zE>@Q_pYfYP)NXD}?@WV(1kSM4&rU`sy)T2Rg=dkyYzAgH?I-d(dbfgXjH=~mv3^sk zcq!0eKS5qpt)`TNqu_oSdtX|ut!0yI5R5HSdHS@q*C@-@EwQ5@Wf|hhLy!q`{W`O) zN@)7EWdtYTj_dcPs}c-G@Qn!{4<2^{U+e%+$4(mS?g%{hXGJ;TWk#95wKNh1|E`_w z4_uBt-fcJBY_{*2cpmueYsJ<8A=7PY7JQAvOw0F`9cb9 zpu@AUb0u7d3|pV@*ou0Qmd&WL(QBfDxR?pn+dcy35e_9K!8hXH> zE>J1+@8)HQp!7!e0&~HHw%bHkpR3%=1`5QkzBWC@=G8~J;N}=MNl4MM*@|Tw=~(2? zanN1bP5;i3g`fI9O%gG_at63mj5XFLi{52pwUK13TYYHNcRMyI6atKFxt>ZqeTYlkb?jF9a&_t{3oX7As_{ z!Gs^M&y9_cqzrAX%}7+SfU5JRQ(1qRr0b{j5BN~7Ds@tEBCG)=FYmcmyiPD*^pco> zT}BJGxDPc}us7bQ##BBSkY;=Cfdr}AMxWJXeQzCAIlLoF)uOH0UG+e7CLlp*g8b>r z64CRBf@S+Mc4Sr289B}O0S zw#O>CKB8>^?Hj5k5;r%%?8DEqBn_!o2w)QvV%O;!8>}G6NM&IA@D9N)9>k>?!#wKX zSk^VSV~!!oeo6>E2=EceCGOPup9+?|A11vJb9Nt+jqkXLMULiO-2;SiG>b!Kv{x)skLEZ!h zEB|5B>Hb5MFG&W&A=uSgnUI&|(oqm7zCE)OSD8r;YB9aOa!}+jH!*D@PgDdp7k>Ia zHUdMQZRejImePPgjML4jc?i_Ji;3h62sFr%o6~g)!`uXDj1Uv@Y+RH9(gBH$E&{gU zT*`{Mod=1n*`@%!lj*dwk3JE{Kf4__>%*=KKQ;#%wg2Yb*#*ps7Qe{9X0j=C+( zK2;J{EGlBb0c$55L5HFKv*su{7zrK8{Dio@h8w6(AR*T#N$%Xc8ev`Dqy>L4sdJNA zP+ofLL>uD0Q-Cbk8E!Tq70LFOija00bXH+!T_rQtXMb5p$8bMn^VyIigsn1Q&Y09U zk>MNrI8K9fU;hO=y|@ z3E{1#FFa}uhc;W?s`0z)2g(>go&k-UmnlA(XgfLkB?%51Z<5g7**#ibbKjRIoh|NJ zu^p73E?cajx<9Nb&aWY5WD$o;m{RRCM+Xx$NpgjFv=B-lVdovO@_~DygdpBX)+8JW z*bYSkwjgP$UcAHzx(os?5(C`<3C%s{xd3eb{J{bO-2k3=ySl#>^t7{fw*K$0uz-)V z)0UB{D}ypC(g5v!bDQlnobBrsijEi>{!8E6HQiV-G2RpdJ0&)qlnA|dCAvkAO8vOC zUFCG0MY`4f+*hyz=G%~r9$zUXE%aWr9%h$!F`QbF@Z7E#X^AAiW&`_^Ff zXye+~$kbZDc~_xi>K5-5y`z8A$uPYC;DujO?UU1myYt#~pD8a8UbrlNW9CV8(R(x; zX3aN%O}Jk!`S)%oRsP+QOBXmUqLTH{V`x9FPO&}BV5>L&R*!$kD?s~(XEH@FB1f+h zMycf)!cxU6xUWjw96NZf{x*!#^P^GEMJci;JMr-D=T}w9S@>ZN^5)hjmU*0(4wTNH z%WUPP%+#+(p+BjA3<)kDcXTqJVp;Wcf@wEx+Y8=czevN)BEhuFGKT9^pKE2&lyDM2qvkg}$N8JctlMzp z0hrcRzqU>m&2~Ex|a^TUVu zK&gfx(%<=kYd?7(Q}*Z%AW2J@u&nP$_8|P}F9Vk*zU3g&MinZMI838!y-)??AnyGg zs&bVlVZ$h{9mTYSh%{+f-5r9sM_u!|`bp~2mk&O25rH4=Q!F1+a;cZ+yJf>4RSr%( zOkNqPc;{^Czx(Yy)4~OFc2otUd{n!k7R9auqe+Wgzfl@>fto>0NhNdV%XKD!PU~5+ zPGy0qjD{nxE}p;pV*Ji_FZjgqw?49l-M>S%At!&gUBN3&y9ee!%51uy^Q?}?!3yp9 zGV5B2Q!1TVj&Qs6lJ@l_=VKcTlY_^qB~mrU>Ao(xjlj2$MlMZJT~uA_(Qdunza0$~ z1-NJ*w$`x<+;|~b;Lf$jMz?oN5)2muADo^^UTrGL96)dlG?q&RYtT-AQfoRGmHQFJ_LK77#E%UWeJ{0N zx!r?Lg^&Lh&|UR#V-jGTjEY-8GyMGCcBOzb-{$^D5nHxb3GS2z)Ky!5OC=YGIh8f5 z2ilZ&C5Jv=_+g2HY2+-T)P12|kL=V$4fQ6cLq{l!ty^y7jYT;`4pYTv4ENr{KNzKH zB@}#|_LF0v`5b(UvKl3Nd89nuH~j6#i(k7`W}59(`i`8*>oy{n(ZdqrGde0JTq@RX z(OgUULo#X!`B!bUh9NQrF?o=<%#?#pM-KO_Hy_*fTNWbu;$mE8N#qfSWV%mPU zWv1k0#?jci+P^`P%pLZ$& zHE*pY`tV1FbZ$4vyX;yzmp~!&(t5u#-@o$FOEw*0AiLq<^~S~^(3~8LJpMcO!RYp4 z)58t=4CCZqef5LCdS9V$R7uUD1{rnsZQs6ATeLcw?<}<_#9jnHE6|DKd<$OjLIfM} zV}O;ef1~#0bqaY$wxl?fKjI*`GRG4+Mm6}$ohu<}w5f6f8Nyc}If&wiS$xjscpo8# zgdy0YlFw`IHyW8;QWq&i@am;Vp@Ly8~=y zU7`YkfWrd*a~dAjo}TtDwjSpWqgo&3IwNsCkfWTWFoO)L{@H`WxT)4ZayZ^PtTqPODXluEPsJN>2N zrT3+ytVWY)T=G5QV3F3nhG*Z#6SUwQ1uwPRFGi<#WH7Bf6<(?y8vZ>l9j{%>@BDk0 zneTun&_AAK$}|1Srd*7;#q|(Io9Bs?PN$?wvUjP#nJd>*T;b$cv z?@hb?r&fpQvX}3+slRllof|Q}H^;p5#b7?c+wqS0&s!fa9!GO3#>Ms%8^Z;2>=7^j z8?>?O?{}+MDu_jootrVSgHMC znCaJ@{*e!rQ=HMaRXy`GFFH+V8}b_sw(Ser!*b}vNB_K8oY^n`NnoO&{_vP}(`ZJ3 z>w!R}`p5_tbF~ToGH`3(UzuL%YkqQxsWdO#_AS{jg9DZZ`Xeh_K5`{g6Y~16feW0i zzGs)n%cprOIe&Y7$(M9rb+!CeXslhDhhVtru-unERLganRkN^$D}i>*eGMC+di_(< zLiDNEr&F5l!Jv^F2`g=;#=OVd=FXfGNUwOrd{@^BHRhIt#h&7;lOL&n6~DeNfd059 zN1mcFvZ=T$@(w$!b~+$kV){X;sjgnBX`E3}75^YAL#dQwRrgZU10kK?!rBlBNI92X zh*h}uy)JnRMT_d|=*Byx;3}@+&5M}qoFMK{`@Ox-J!%}^Nu!lIa*ZP@xKL)@2SyTx z+7=idTKADLy>faX^4M(k1r3vJtf$IAS@pX(#0N~A;1!r^`?{kzCF_!q~9!P&y%Li@Ysda;Wxx?5_Fs z*Zcu-JP}fUo&(CpkFg4AIn7&JqGn-I*0^-Cdy$_$u{{wz5T<43Ga4L+?#7;vnR~M{c(4ET7vE8 z)6U}6`wNbjP8|~X_K&$$v2Q)a1y^&A)xMd&RRnG}U?yEtyDhISc)p+g|IH|0i#U;K z0mntixPd_D=Hnlu^zig`vi@fpnlfhGXBuyO!pMwxFRcG;e)qSEVZiHfQr*& zm@eP?17pb$amZ zOzo3(>qu*RtSCG0_t)4^!&RE?JlbtVn<0_-I|Ck&!I!3c^bdw_*kG=|r>C!tVzE!*y%G>3bccMk_;w=?cA&>tYcoTXyJIW=DK%3E5|>BzLOBKE|TPM-4VSby3$rP zlq85tW5^75q*IiwK_m;jXbRc-Ll2goVoIz|Ent?aWtX+AsbI9{677o3G8!^4ecKM=o0-Ja=%6Qo{1bC zZGLEP)BODNsF%bw>@!=)hjemLVc^DgG;Qf)jV#}iuRHG*x_gOmOP{t*H`C2)tC6gYmL5aq{Bw-#qB(sWWu2m z^353B_^4^kg3-Fmhv;Q1hR z1i@M2hFOEA;EEItsT~HXz)4RK(ommrPX%J5?NFmP8Ulas;cujKXQw5Oa*Xn~B{2H35AdB$Av_|tg0gTn>k#b#S9{5M^BQ=jSwA)>h z2n!t)lzcR5WRPYlL1qcX$`_%~V#|lhL_KFwo=1xg+CA0bq3+q+xP;UoI$9on14JY> zzC*Fowqo>E!cz9m1IFHvSw`@U$L^nYoIg20sM+rOJqtjJuEbUg8--fAp>o$8JFVYS zO>Y@|Zhy0*9`e?ikfbS)#jlFxQb{l-${>qk#X!>mGBz(Ejl;5LRgOtB_o5M9u2kco z9>XfU1o51xUd}$=*zqk=n(?io*p#YXCP=$r`ut}OI@&ZQVpu^)pjMBWnGTqVsTkBL zRPxBIv$70W2~`%GDX4)cU}FQyh5os8q6|?b+00D3S4D+O{H)A$KEIhWYO@xtC4HD- z!Oy9i{W#8*PTg<|$t#+Sp=EFFzS~dwUW{+jm)rW&d*U?2D`UEIdv(q?8pbOeb)ZKJ z+SMgC4DBY|k+*px>Z)G;9THLVekG>GHDsonf02S&N!n$!leKhbSjDZo;{d9@;j=+H z``3OhDR<-;tRedH>TPCA}-ooAm0?dB)iIn_U?ym&A*@9 zi^9-)jf$R5_G*@K#(-zSrPr9rdJm^Xhod@J;*EVjvh-#dN_D8{9T_aaWBNUY$08B! zMK!Vd&`8=V zY&vyEugZX)&|+Xv>q{tQXKn9Tb>Q&z=h4?<5st97XoN6C(y-k#dx#u<7gmZ_3X;tI z;M^8{jpYn<5XM>scjUMUBbqmX-J`G3V#l}B2?x#ywmHJ?ZC}dk@MO!A`zuz9o#@+f z0CA7>Td{#!jOcW4QCyJ31%(IEv}`VvGt9gtbH#Gx)FVX_`MqO67f0G)^jWHoAkImRTTVh(L;ni z;;8qXQ2t$V!_6Kk;eFWE@YF83bOBWNnr()ypv<-VWrx`6gJs4H*)1=HJv;p6cjp7x z-bWMqTnIBZo{b??nKjqbtmkMi*{!mDSIf~Z<~c6D3O1Es^e6S;Q34($PnRhwd?y*4dzc>@ zDOENa7w{D)|0^h%pIP7sC~l5RyzL{vH4B&5Ng1_bw3J6Bb|5a<(^?TNa3lFnNnSDv zgiIuy*+>&GARIuGp~mjS^d_T+rbAkAPsn^NUFmLmUlH*%pE+OCVV{^i+JG)r|K19x zi3Dxbt-4WOaX}+oA~;3hNkNyTnjIWlT_92XnZ#NWXyyNO+Gzrw@uNlG%Q&k=_a;x~ zA5;9V{9g$g&^`aH+)WjLztssp=XqtA)7*e|P)2nleJL`C%HRI=?ey(iT?5kOcWCw) z+!C=V(Warp=v^s$+`&DR=x0aAb@zfI?@K5uG1KMjc-%xX~(;fpj(V3*BUV;n|3t_YYfHAyc7;i zIWz%Fvc7fZ5KeY5Py-$KyATw&v@OiFsR|QT6rf!G4UT9`pT9=ZmdKNyb#_XjFRNj#+3OFy%?Gu%fqd&lVlphV-*GZ>;$ctCx_P? z#r>B|{~XW7j7GQe0JD+A0@MD{|M0#&EG@KudOJ@X?nB{=oC3}HgR(i5z#&-JXy%0r%B^NEGT8`7VPQ-~p04My(Z# zQ|r!-d_+7Owj0mnxjwWxi?p_+*IH7PGAi?CBje8uaHXr-!^sQaXo-OIF#5KYzECJG zv9keDggua;q%CaS9}CU7eP@)9myKiU(wBe|f|kh89uxPF_Z3 zXG5GH{98K&OiuHM*BWY5s_jkS!X^U2^3y*qtd)bktB$z^+VV@#<3-{SYD$f@+6Re9Ik_pIt_9&H$nU%|a)=#PW?_{e2rwKC&(u1qRJnPuGsV1eF zIE?FqGG3c2=84K2Z(wP5D*m!%6&1XA1AU>AFP|kqI0u`acGJ`wYZ+hz=e!B-F>sY* z93naKwAA{{EsSic^bHE1bnDfti+QxVZzNSUE}4|;<{h&4FlCJ3VFh!>OW<;TbryvM z+fKd<$Y2HA2MB?)HZxo`{f+ADWpN-+tC@GweMy(ihYu<9lN=e)OFW*b^N~>UltO;l zwPiA47LsTEAeS5oEYoga{M>WvvvFAA#~j4ehO+Qn#cem+GVD6BN>S+CnlfRS2)d5R zJJ|K!JlI;mEAOSoQ@P$~qBIM;fsBOesPb{jZpRfg7?vIqk-JQd40uOpz@~SrblLGn zjyA|QN7rPu`|iMfa?|mYYj%&Sg2nmP7(?~y42NV@)Y5M|wn}pujPseS#of>(qlgI4 z^y^Z;#RXjvBl&Q{o4}eIl9+t0r8nlVDm_Cl3W<*4wp!&#O^dm>0QD$~fAjB?crNbj zie2n}cGPsUUH-}~dt{Gz9Wl@AhDy^RTCsOmf|8x6c4S$Fz=TJn2LFZ;M}!?UQC(d9 zXsRBvXqv_ZG1~?*CBMJ*((7cnc>(hH4BU6LAW}S}!|j{S4vsEDw;i0ns^eTPA>R21 zAfU+q?IkKfOS41xRQGH3Lu$3xN=>vw{I@w(JrhC{qPprQAvY%)AL^yv^=XQxV)WYD zsQA!oT6tu9KAT6 zRVnz4z*QP}#98?wv{tI_{b?a^da3i5Vw&X+79Q3RdC1lpp&G__1qM?ekqNXp^{^I- z3yaCbXU469X&0%XKrOXr3I@@#Cdf(jcx-ZL+BR7dA#wS_0O^ z!f-3Gs|P##1zxBk*Nr4lLIIpp9%{8789en5RkphoCU4@A`R9qXMFQWO zFUy9XN~_U{4I`e5mAX;{FH}>W||QuZj;ChUKV@vA1%26K+Ally~va=gq8r6+NA((dW%a$c2#kTb_Q` zJLxDT`)#-s^Y!=h5@v~wx)=B7#Mf2=)hj{!LN{A{&U}z2khr(?fRed^P=bE(MPwJn zE59igT6*}M>A~e@hAZc)*zhIlTsq>;vhWT2P*hgb)cc-(&C%M^lOT0ws)J00p<)N! z_%@$_=#hT>(NKqSn+zuO6-Kr%owyWxzcpI6ZDUJdADV6LN*%#^c@h}caQxWC!xsR2 zmme8w#!?}ED?q6_!2Gel&!cT54?Kb`?OjcEyc{iEjK4_trrNIrka%$YCh%`+08$4Y z?LRHqKmgO!*%Iv{B=}{05~$R!)M5jCm|(y0Tbkn-*$OxTU*noUH}7T#RR5=XiAX3w z!0ei!%Y-1%*<&oQr3Yl%zrw#&{xiuR4e_eMrM`Ji0J@`1`!z{_OjZI6j`+%CXNj~i z7qYQ4x3&}!w6wE2*_PpAZG(`53OP{R95rK=VoPNzeEgJY@16e8NvY$#BvIJZ89H_MPDu zhwvo+S0CXR4FaiH5P^R47*4`}?XrJ{?<0SLfA7F=su2Mq1%ar5pAw++9BbhI0sRM* CBRjqT diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/lined_rock_cavern/lined_rock_cavern.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/lined_rock_cavern/lined_rock_cavern.py deleted file mode 100644 index 92cc16ea0..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/lined_rock_cavern/lined_rock_cavern.py +++ /dev/null @@ -1,168 +0,0 @@ -""" -Author: Kaitlin Brunik -Created: 7/20/2023 -Institution: National Renewable Energy Lab -Description: This file outputs capital and operational costs of lined rock cavern hydrogen storage. -It needs to be updated to with operational dynamics. -Costs are in 2018 USD - -Sources: - - [1] Papadias 2021: https://www.sciencedirect.com/science/article/pii/S0360319921030834?via%3Dihub - - [2] Papadias 2021: Bulk Hydrogen as Function of Capacity.docx documentation at - hopp/hydrogen/h2_storage - - [3] HDSAM V4.0 Gaseous H2 Geologic Storage sheet -""" - -import numpy as np - -from h2integrate.simulation.technologies.hydrogen.h2_transport.h2_compression import Compressor - - -class LinedRockCavernStorage: - """ - - Costs are in 2018 USD - """ - - def __init__(self, input_dict): - """ - Initialize LinedRockCavernStorage. - - Args: - input_dict (dict): - - h2_storage_kg (float): total capacity of hydrogen storage [kg] - - storage_duration_hrs (float): (optional if h2_storage_kg set) [hrs] - - flow_rate_kg_hr (float): (optional if h2_storage_kg set) [kg/hr] - - system_flow_rate (float): [kg/day] - - labor_rate (float): (optional, default: 37.40) [$2018/hr] - - insurance (float): (optional, default: 1%) [decimal percent] - - property_taxes (float): (optional, default: 1%) [decimal percent] - - licensing_permits (float): (optional, default: 0.01%) [decimal percent] - Returns: - - lined_rock_cavern_storage_capex_per_kg (float): the installed capital cost per kg h2 - in 2018 [USD/kg] - - installed_capex (float): the installed capital cost in 2018 [USD] (including - compressor) - - storage_compressor_capex (float): the installed capital cost in 2018 for the - compressor [USD] - - total_opex (float): the OPEX (annual, fixed) in 2018 excluding electricity costs - [USD/kg-yr] - - output_dict (dict): - - lined_rock_cavern_storage_capex (float): installed capital cost in 2018 [USD] - - lined_rock_cavern_storage_opex (float): OPEX (annual, fixed) in 2018 [USD/yr] - """ - self.input_dict = input_dict - self.output_dict = {} - - # inputs - if "h2_storage_kg" in input_dict: - self.h2_storage_kg = input_dict["h2_storage_kg"] # [kg] - elif "storage_duration_hrs" and "flow_rate_kg_hr" in input_dict: - self.h2_storage_kg = input_dict["storage_duration_hrs"] * input_dict["flow_rate_kg_hr"] - else: - raise Exception( - "input_dict must contain h2_storage_kg or storage_duration_hrs and flow_rate_kg_hr" - ) - - if "system_flow_rate" not in input_dict.keys(): - raise ValueError("system_flow_rate required for lined rock cavern storage model.") - else: - self.system_flow_rate = input_dict["system_flow_rate"] - - self.labor_rate = input_dict.get("labor_rate", 37.39817) # $(2018)/hr - self.insurance = input_dict.get("insurance", 1 / 100) # % of total capital investment - self.property_taxes = input_dict.get( - "property_taxes", 1 / 100 - ) # % of total capital investment - self.licensing_permits = input_dict.get( - "licensing_permits", 0.1 / 100 - ) # % of total capital investment - self.comp_om = input_dict.get( - "compressor_om", 4 / 100 - ) # % of compressor capital investment - self.facility_om = input_dict.get( - "facility_om", 1 / 100 - ) # % of facility capital investment minus compressor capital investment - - def lined_rock_cavern_capex(self): - """ - Calculates the installed capital cost of lined rock cavern hydrogen storage - Returns: - - lined_rock_cavern_storage_capex_per_kg (float): the installed capital cost per kg h2 - in 2018 [USD/kg] - - installed_capex (float): the installed capital cost in 2018 [USD] (including - compressor) - - storage_compressor_capex (float): the installed capital cost in 2018 for the - compressor [USD] - - output_dict (dict): - - lined_rock_cavern_storage_capex (float): installed capital cost in 2018 [USD] - """ - - # Installed capital cost - a = 0.095803 - b = 1.5868 - c = 10.332 - self.lined_rock_cavern_storage_capex_per_kg = np.exp( - a * (np.log(self.h2_storage_kg / 1000)) ** 2 - b * np.log(self.h2_storage_kg / 1000) + c - ) # 2019 [USD] from Papadias [2] - self.installed_capex = self.lined_rock_cavern_storage_capex_per_kg * self.h2_storage_kg - cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 - self.installed_capex = cepci_overall * self.installed_capex - self.output_dict["lined_rock_cavern_storage_capex"] = self.installed_capex - - outlet_pressure = 200 # Max outlet pressure of lined rock cavern in [1] - n_compressors = 2 - storage_compressor = Compressor( - outlet_pressure, self.system_flow_rate, n_compressors=n_compressors - ) - storage_compressor.compressor_power() - motor_rating, power = storage_compressor.compressor_system_power() - if motor_rating > 1600: - n_compressors += 1 - storage_compressor = Compressor( - outlet_pressure, self.system_flow_rate, n_compressors=n_compressors - ) - storage_compressor.compressor_power() - motor_rating, power = storage_compressor.compressor_system_power() - comp_capex, comp_OM = storage_compressor.compressor_costs() - cepci = 1.36 / 1.29 # convert from $2016 to $2018 - self.comp_capex = comp_capex * cepci - return ( - self.lined_rock_cavern_storage_capex_per_kg, - self.installed_capex, - self.comp_capex, - ) - - def lined_rock_cavern_opex(self): - """ - Calculates the operation and maintenance costs excluding electricity costs for the lined - rock cavern hydrogen storage - - Returns: - - total_opex (float): the OPEX (annual, fixed) in 2018 excluding electricity costs - [USD/kg-yr] - - output_dict (dict): - - lined_rock_cavern_storage_opex (float): OPEX (annual, fixed) in 2018 [USD/yr] - """ - # Operations and Maintenace costs [3] - # Labor - # Base case is 1 operator, 24 hours a day, 7 days a week for a 100,000 kg/day average - # capacity facility. Scaling factor of 0.25 is used for other sized facilities - annual_hours = 8760 * (self.system_flow_rate / 100000) ** 0.25 - self.overhead = 0.5 - labor = (annual_hours * self.labor_rate) * (1 + self.overhead) # Burdened labor cost - insurance = self.insurance * self.installed_capex - property_taxes = self.property_taxes * self.installed_capex - licensing_permits = self.licensing_permits * self.installed_capex - comp_op_maint = self.comp_om * self.comp_capex - facility_op_maint = self.facility_om * (self.installed_capex - self.comp_capex) - - # O&M excludes electricity requirements - total_om = ( - labor - + insurance - + licensing_permits - + property_taxes - + comp_op_maint - + facility_op_maint - ) - self.output_dict["lined_rock_cavern_storage_opex"] = total_om - return total_om diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/mch/mch_cost.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/mch/mch_cost.py deleted file mode 100644 index 29127da91..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/mch/mch_cost.py +++ /dev/null @@ -1,142 +0,0 @@ -from attrs import field, define - - -@define -class MCHStorage: - """ - Cost model representing a toluene/methylcyclohexane (TOL/MCH) hydrogen storage system. - - Costs are in 2024 USD. - - Sources: - Breunig, H., Rosner, F., Saqline, S. et al. "Achieving gigawatt-scale green hydrogen - production and seasonal storage at industrial locations across the U.S." *Nat Commun* - **15**, 9049 (2024). https://doi.org/10.1038/s41467-024-53189-2 - - Args: - max_H2_production_kg_pr_hr (float): Maximum amount of hydrogen that may be - used to fill storage in kg/hr. - hydrogen_storage_capacity_kg (float): Hydrogen storage capacity in kilograms. - hydrogen_demand_kg_pr_hr (float): Hydrogen demand in kg/hr. - annual_hydrogen_stored_kg_pr_yr (float): Sum of hydrogen used to fill storage - in kg/year. - - Note: - Hydrogenation capacity (HC) should be sized to allow for peak hydrogen charge rate. - Dehydrogenation capacity (DC) sized to assume that end-use requires a consistent H2 supply. - Maximum storage capacity (MS) is the maximum consecutive quantity of H2 stored - with lowest frequency of discharge. - Annual hydrogen storage (AS) is the hydrogen curtailed from production into storage. - - """ - - max_H2_production_kg_pr_hr: float - hydrogen_storage_capacity_kg: float - hydrogen_demand_kg_pr_hr: float - annual_hydrogen_stored_kg_pr_yr: float - - #: dehydrogenation capacity [metric tonnes/day] - Dc: float = field(init=False) - - #: hydrogenation capacity [metric tonnes/day] - Hc: float = field(init=False) - - #: maximum storage capacity [metric tonnes] - Ms: float = field(init=False) - - #: annual hydrogen into storage [metric tonnes] - As: float = field(init=False) - - # overnight capital cost coefficients - occ_coeff = (54706639.43, 147074.25, 588779.05, 20825.39, 10.31) - - #: fixed O&M cost coefficients - foc_coeff = (3419384.73, 3542.79, 13827.02, 61.22, 0.0) - - #: variable O&M cost coefficients - voc_coeff = (711326.78, 1698.76, 6844.86, 36.04, 376.31) - - #: lcos cost coefficients for a capital charge factor of 0.0710 - lcos_coeff = (8014882.91, 15683.82, 62475.19, 1575.86, 377.04) - - #: hydrogen storage efficiency - eta = 0.9984 - - #: cost year associated with the costs in this model - cost_year = 2024 - - def __attrs_post_init__(self): - # Equation (3): DC = P_avg - self.Dc = self.hydrogen_demand_kg_pr_hr * 24 / 1e3 - - # Equation (2): HC = P_nameplate - P_avg - P_nameplate = self.max_H2_production_kg_pr_hr * 24 / 1e3 - self.Hc = P_nameplate - self.Dc - - # Equation (1): AS = sum(curtailed_h2) - self.As = self.annual_hydrogen_stored_kg_pr_yr / 1e3 - - # Defined in paragraph between Equation (2) and (3) - self.Ms = self.hydrogen_storage_capacity_kg / 1e3 - - def calc_cost_value(self, b0, b1, b2, b3, b4): - """ - Calculate the value of the cost function for the given coefficients. - - Args: - b0 (float): Coefficient representing the base cost. - b1 (float): Coefficient for the Hc (hydrogenation capacity) term. - b2 (float): Coefficient for the Dc (dehydrogenation capacity) term. - b3 (float): Coefficient for the Ms (maximum storage) term. - b4 (float): Coefficient for the As (annual hydrogen into storage) term. - Returns: - float: The calculated cost value based on the provided coefficients and attributes. - - """ - return b0 + (b1 * self.Hc) + (b2 * self.Dc) + (b3 * self.Ms) + b4 * self.As - - def run_costs(self): - """Calculate the costs of TOL/MCH hydrogen storage. - - Returns: - dict: dictionary of costs for TOL/MCH storage - """ - cost_results = { - "mch_capex": self.calc_cost_value(*self.occ_coeff), - "mch_opex": self.calc_cost_value(*self.foc_coeff), - "mch_variable_om": self.calc_cost_value(*self.voc_coeff), - "mch_cost_year": self.cost_year, - } - return cost_results - - def estimate_lcos(self): - """Estimate the levelized cost of hydrogen storage. Based on Equation (7) of the - reference article. - - Returns: - float: levelized cost of storage in $2024/kg-H2 stored - """ - - lcos_numerator = self.calc_cost_value(*self.lcos_coeff) - lcos_denom = self.As * self.eta * 1e3 - lcos_est = lcos_numerator / lcos_denom - return lcos_est - - def estimate_lcos_from_costs(self, ccf=0.0710): - """Estimate the levelized cost of hydrogen storage. Based on Equation (5) of the - reference article. - - Args: - ccf (float, optional): Capital charge factor. Defaults to 0.0710. - - Returns: - float: levelized cost of storage in $2024/kg-H2 stored - """ - - toc = self.calc_cost_value(*self.occ_coeff) - voc = self.calc_cost_value(*self.voc_coeff) - foc = self.calc_cost_value(*self.foc_coeff) - costs = (toc * ccf) + voc + foc - denom = self.As * self.eta * 1e3 - lcos_est = costs / denom - return lcos_est diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/README.md b/h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/README.md deleted file mode 100644 index 1a042fde2..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/README.md +++ /dev/null @@ -1,117 +0,0 @@ - -# On-turbine hydrogen storage modeling - -## Implementation - -In this module, we create a model for storing hydrogen in a wind turbine tower -We follow, largely, the work of Kottenstette (see NREL/TP-500-34656), although -various assumptions in their study are not marked, and our goal is to flesh out -some of their assumptions. - -`PressurizedTower` is an object model that represents a pressurized wind turbine -tower with geometry specified on input. The Kottenstette work assumes a wind -turbine tower whose thickness is set by a constant diameter-thickness ratio, -which defaults to 320. The tower is specified by diameter/height pairs, between -which a linear taper is assumed. The material of the tower is assumed to be -steel with the following properties: - -- ultimate tensile strength: 636 MPa -- yield strength: 350 MPa -- welded joint efficiency: 0.80 (see ASME Boiler and Pressure Vessel Code for details) -- density: 7817 kg/m3 -- cost per kg: $1.50 - -These can be modified for alternative studies by variable access on the `PressurizedTower` object before running an analysis. Refer to the `__init__()` -function for definitions. Inner volume of the tower is computed by conic frustum -volume according to each section, assuming thin walls (s.t. $d \gg t$). Wall -material is computed by assuming the wall thickness is centered at the diameter -dimension (outer or inner thickness placement is available by specification). - -## Hydrogen storage - -### Wall increment - -When hydrogen is stored, a Goodman's equation thickness increment is assumed for -the vertical tower walls (see Kottenstette) in order to handle the additional -pressure stress contribution which is a zero-intercept linear function of -diameter, see `PressurizedTower.get_thickness_increment_const` for the leading -coefficient calculation. Hydrogen is assumed to be stored at the crossover -pressure where pressurized burst strength and aerodynamic moment fatigue are -balanced, see Kottenstette for theory and -`PressureizedTower.get_crossover_pressure` for implementation. - -### End cap sizing - -End caps are necessary for a pressure vessel tower, which are sized according to -the ASME Boiler and Pressure Vessel code. Caps are assumed to be welded with -flat pressure heads affixed by a rounded corner. Implementation in -`PressurizedTower.compute_cap_thickness` contains details on thickness -computation. Following Kottenstette, we use 2.66 \$/kg to cost the endcap -material. - -### Hydrogen - -A pressurized tower, then, is assumed to hold a volume of $\mathrm{H}_2$, stored -at pressure and the ambient temperature, and the ideal gas law is used to relate -the resulting mass of the stored hydrogen. - -### Summary and additional costs - -Above the baseline (non-pressurized) tower, hydrogen storage entails, then: -- increased wall thickness -- the addition of 2 pressure vessel endcaps -- additional fixed non-tower expenses, given in Kottenstette - - additional ladder - - conduit for weatherized wiring - - mainframe extension for safe addition of external ladder - - additional interior access door - - access mainway & nozzles for pressure vessel - -## Expenditure models - -### Capital expenditure (CapEx) model - -Capital expenses in addition to the baseline tower are given by: -- additional steel costs above baseline tower for wall reinforcement & pressure - end caps -- additional hardware requirements for/to facilitate hydrogen storage - -### Operational expenditure (OpEx) model - -Operational expenditure on pressure vessel is modeled roughly following the -relevant costs from `hopp/hydrogen/h2_storage/pressure_vessel`. The resulting -estimates are _rough_. Basically the annual operational expenditures are modeled -as: -$$ -OPEX= R_{\mathrm{maint}} \times CAPEX + \mathrm{Hours}_{\mathrm{staff}} \times \mathrm{Wage} -$$ -where $R_{\mathrm{maint}}$ is a maintenance rate. We assume: -- $R_{\mathrm{maint}}= 0.03$; i.e.: 3\% of the capital costs must be re-invested each year to cover maintenance -- $\mathrm{Wage}= \$36/\mathrm{hr}$ -- $\mathrm{Hours}= 60$: 60 man-hours of maintenance on the pressure vessel per year; this number very roughly derived from the other code - -## Unit testing - -Unit testing of this module consists of three tests under two approaches: -- comparison with simple geometries - - cylindrical tower - - conical tower -- comparison with Kottenstette results - - issue: Kottenstette results have some assumptions secreted away, so these - _at best_ are just to ensure the model remains in the ballpark of - the Kottenstette results - - specifically, Kottenstette's results table (Table 3 in NREL report) - imply a partial tower pressure vessel, inducing various - differences between this code and their results - - I can't figure out how to size the pressure vessel caps (heads) to get the - costs that are reported in Kottenstette - - tests against Table 3: - - traditional/non-pressurized tower: - - tower costs within 5% - - non-tower costs within 5% - - pressurized tower: - - wall costs within 10% - - _top cap within 100%_ - - _bottom cap within 200%_ - - non-tower cost within 10% - - capacity within 10% diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/__init__.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/__init__.py deleted file mode 100644 index 832c8d2d1..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from h2integrate.simulation.technologies.hydrogen.h2_storage.on_turbine.on_turbine_hydrogen_storage import ( - PressurizedTower, -) diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/on_turbine_hydrogen_storage.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/on_turbine_hydrogen_storage.py deleted file mode 100644 index d8fca53f7..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/on_turbine_hydrogen_storage.py +++ /dev/null @@ -1,527 +0,0 @@ -""" -Author: Cory Frontin -Date: 23 Jan 2023 -Institution: National Renewable Energy Lab -Description: This file handles the cost, sizing, and pressure of on-turbine H2 storage - -To use this class, specify a turbine - -Costs are assumed to be in 2003 dollars [1] - -Sources: - - [1] Kottenstette 2003 (use their chosen favorite design) -Args: - - year (int): construction year - - turbine (dict): contains various information about the turbine, including tower_length, - section_diameters, and section_heights -API member functions: - - get_capex(): return the total additional capex necessary for H2 production, in 2003 dollars - - get_opex(): return the result of a simple model for operational expenditures for pressure - vessel, in 2003 dollars - - get_mass_empty(): return the total additional empty mass necessary for H2 production, in kg - - get_capacity_H2(): return the capacity mass of hydrogen @ operating pressure, ambient temp., - in kg - - get_pressure_H2() return the operating hydrogen pressure, in Pa -""" - -from __future__ import annotations - -import numpy as np - - -class PressurizedTower: - def __init__(self, year: int, turbine: dict): - # key inputs - self.year = year - self.turbine = turbine - - self.tower_length = turbine["tower_length"] # m - self.section_diameters = turbine["section_diameters"] # m - self.section_heights = turbine["section_heights"] # m - - # calculation settings - self.setting_volume_thickness_calc = "centered" # ['centered', 'outer', 'inner'] - - # constants/parameters - self.d_t_ratio = 320.0 # Kottenstette 2003 - self.thickness_top = self.section_diameters[-1] / self.d_t_ratio # m - self.thickness_bot = self.section_diameters[0] / self.d_t_ratio # m - self.ultimate_tensile_strength = 636e6 # Pa, Kottenstette 2003 - self.yield_strength = 350e6 # Pa, Kottenstette 2003 - self.welded_joint_efficiency = 0.80 # journal edition - # self.welded_joint_efficiency= 0.85 # double-welded butt joint w/ spot inspection (ASME) - self.density_steel = 7817.0 # kg/m^3 - self.gasconstant_H2 = 4126.0 # J/(kg K) - self.operating_temp = 25.0 # degC - - self.costrate_steel = 1.50 # $/kg - self.costrate_endcap = 2.66 # $/kg - - self.costrate_ladder = 32.80 # $/m - self.cost_door = 2000 # $ - self.cost_mainframe_extension = 6300 # $ - self.cost_nozzles_manway = 16000 # $ - self.costrate_conduit = 35 # $/m - - # based on pressure_vessel maintenance costs - self.wage = 36 # 2003 dollars (per hour worked) - self.staff_hours = 60 # hours - self.maintenance_rate = 0.03 # factor - - # set the operating pressure @ the crossover pressure - self.operating_pressure = PressurizedTower.get_crossover_pressure( - self.welded_joint_efficiency, self.ultimate_tensile_strength, self.d_t_ratio - ) - - def run(self): - # get the inner volume and traditional material volume, mass, cost - self.tower_inner_volume = self.get_volume_tower_inner() - ( - self.wall_material_volume_trad, - self.cap_bot_material_volume_trad, - self.cap_top_material_volume_trad, - ) = self.get_volume_tower_material(pressure=0.0) - self.wall_material_mass_trad = self.wall_material_volume_trad * self.density_steel - self.wall_material_cost_trad = self.wall_material_mass_trad * self.costrate_steel - self.cap_material_mass_trad = ( - self.cap_top_material_volume_trad + self.cap_bot_material_volume_trad - ) * self.density_steel - self.cap_material_cost_trad = self.cap_material_mass_trad * self.costrate_steel - self.nonwall_cost_trad = self.get_cost_nontower(traditional=True) - - ( - self.wall_material_volume, - self.cap_bot_material_volume, - self.cap_top_material_volume, - ) = self.get_volume_tower_material() - self.wall_material_mass = self.wall_material_volume * self.density_steel - self.wall_material_cost = self.wall_material_mass * self.costrate_steel - self.wall_material_mass = self.wall_material_volume * self.density_steel - self.cap_material_mass = ( - self.cap_bot_material_volume + self.cap_top_material_volume - ) * self.density_steel - self.cap_material_cost = self.cap_material_mass * self.costrate_endcap - self.nonwall_cost = self.get_cost_nontower() - - if False: - # print the inner volume and pressure-free material properties - print("operating pressure:", self.operating_pressure) - print("tower inner volume:", self.tower_inner_volume) - print() - print( - "tower wall material volume (non-pressurized):", - self.wall_material_volume_trad, - ) - print( - "tower wall material mass (non-pressurized):", - self.wall_material_mass_trad, - ) - print( - "tower wall material cost (non-pressurized):", - self.wall_material_cost_trad, - ) - print( - "tower cap material volume (non-pressurized):", - self.cap_top_material_volume_trad + self.cap_bot_material_volume_trad, - ) - print( - "tower cap material mass (non-pressurized):", - self.cap_material_mass_trad, - ) - print( - "tower cap material cost (non-pressurized):", - self.cap_material_cost_trad, - ) - print( - "tower total material cost (non-pressurized):", - self.wall_material_cost_trad + self.cap_material_cost_trad, - ) - - # print the changes to the structure - print() - print("tower wall material volume (pressurized):", self.wall_material_volume) - print("tower wall material mass (pressurized):", self.wall_material_mass) - print("tower wall material cost (pressurized):", self.wall_material_cost) - print() - print( - "tower cap material volume (pressurized):", - self.cap_bot_material_volume + self.cap_top_material_volume, - ) - print("tower cap material mass (pressurized):", self.cap_material_mass) - print( - "tower top cap material cost (pressurized):", - self.cap_top_material_volume * self.density_steel * self.costrate_endcap, - ) - print( - "tower bot cap material cost (pressurized):", - self.cap_bot_material_volume * self.density_steel * self.costrate_endcap, - ) - print("tower cap material cost (pressurized):", self.cap_material_cost) - print() - print("operating mass fraction:", self.get_operational_mass_fraction()) - print("nonwall cost (non-pressurized):", self.nonwall_cost_trad) - print("nonwall cost (pressurized):", self.nonwall_cost) - print( - "tower total material cost (pressurized):", - self.wall_material_cost + self.cap_material_cost, - ) - - print() - print( - "delta tower wall material cost:", - self.wall_material_cost - self.wall_material_cost_trad, - ) - print("empty mass:", self.get_mass_empty()) - print() - print("capex:", self.get_capex()) - print("opex:", self.get_opex()) - print("capacity (H2):", self.get_capacity_H2()) - - def get_volume_tower_inner(self): - """ - get the inner volume of the tower in m^3 - - assume t << d - """ - - # count the sections, all assumed conic frustum - Nsection = len(self.section_diameters) - 1 - - # loop over sections, calclulating volume of each - vol_section = np.zeros((Nsection,)) - for i_section in range(Nsection): - diameter_bot = self.section_diameters[i_section] # m - height_bot = self.section_heights[i_section] # m - diameter_top = self.section_diameters[i_section + 1] # m - height_top = self.section_heights[i_section + 1] # m - dh = np.abs(height_top - height_bot) # height of section, m - - vol_section[i_section] = PressurizedTower.compute_frustum_volume( - dh, diameter_bot, diameter_top - ) - - # total volume: sum of sections - return np.sum(vol_section) # m^3 - - def get_volume_tower_material(self, pressure: float | None = None): - """ - get the material volume of the tower in m^3 - - if pressurized, use pressure to set thickness increment due to pressurization - - assume t << d - - params: - - pressure: gauge pressure of H2 (defaults to design op. pressure) - returns: - - Vmat_wall: material volume of vertical tower - - Vmat_bot: material volume of bottom cap (nonzero only if pressurized) - - Vmat_top: material volume of top cap (nonzero only if pressurized) - """ - - # override pressure iff requested - if pressure is None: - pressure = self.operating_pressure - - # this is the linear constant s.t. delta t ~ alpha * d - alpha_dtp = PressurizedTower.get_thickness_increment_const( - pressure, self.ultimate_tensile_strength - ) # - - # loop over the sections of the tower - Nsection = len(self.section_diameters) - 1 - matvol_section = np.zeros((Nsection,)) - for i_section in range(Nsection): - d1 = self.section_diameters[i_section] - h1 = self.section_heights[i_section] - d2 = self.section_diameters[i_section + 1] - h2 = self.section_heights[i_section + 1] - - if self.setting_volume_thickness_calc == "centered": - Vouter = PressurizedTower.compute_frustum_volume( - h2 - h1, - d1 * (1 + (1 / self.d_t_ratio + alpha_dtp)), - d2 * (1 + (1 / self.d_t_ratio + alpha_dtp)), - ) - Vinner = PressurizedTower.compute_frustum_volume( - h2 - h1, - d1 * (1 - (1 / self.d_t_ratio + alpha_dtp)), - d2 * (1 - (1 / self.d_t_ratio + alpha_dtp)), - ) - elif self.setting_volume_thickness_calc == "outer": - Vouter = PressurizedTower.compute_frustum_volume( - h2 - h1, - d1 * (1 + 2 * (1 / self.d_t_ratio + alpha_dtp)), - d2 * (1 + 2 * (1 / self.d_t_ratio + alpha_dtp)), - ) - Vinner = PressurizedTower.compute_frustum_volume(h2 - h1, d1, d2) - elif self.setting_volume_thickness_calc == "inner": - Vouter = PressurizedTower.compute_frustum_volume(h2 - h1, d1, d2) - Vinner = PressurizedTower.compute_frustum_volume( - h2 - h1, - d1 * (1 - 2 * (1 / self.d_t_ratio + alpha_dtp)), - d2 * (1 - 2 * (1 / self.d_t_ratio + alpha_dtp)), - ) - - matvol_section[i_section] = Vouter - Vinner - - # compute wall volume by summing sections - Vmat_wall = np.sum(matvol_section) # m^3 - - if pressure == 0: - Vmat_bot = 0.0 - Vmat_top = 0.0 - else: - # compute caps as well: area by thickness - Vmat_bot = (np.pi / 4 * self.section_diameters[0] ** 2) * ( - PressurizedTower.compute_cap_thickness( - pressure, - self.section_diameters[0], # assume first is bottom - self.yield_strength, - efficiency_weld=self.welded_joint_efficiency, - ) - ) # m^3 - Vmat_top = ( - np.pi - / 4 - * self.section_diameters[-1] ** 2 - * ( - PressurizedTower.compute_cap_thickness( - pressure, - self.section_diameters[-1], # assume last is top - self.yield_strength, - efficiency_weld=self.welded_joint_efficiency, - ) - ) - ) # m^3 - - # total material volume - return (Vmat_wall, Vmat_bot, Vmat_top) # m^3 - - def get_mass_tower_material(self, pressure: float | None = None): - """ - get the material mass of the tower in m^3 - - if pressurized, use pressure to set thickness increment due to pressurization - - assume t << d - - params: - - pressure: gauge pressure of H2 (defaults to design op. pressure) - returns: - - Mmat_wall: material mass of vertical tower - - Mmat_bot: material mass of bottom cap - - Mmat_top: material mass of top cap - """ - - # pass through to volume calculator, multiplying by steel density - return [self.density_steel * x for x in self.get_volume_tower_material(pressure)] # kg - - def get_cost_tower_material(self, pressure: float | None = None): - """ - get the material cost of the tower in m^3 - - if pressurized, use pressure to set thickness increment due to pressurization - - assume t << d - - params: - - pressure: gauge pressure of H2 (defaults to design op. pressure) - returns: - - Vmat_wall: material cost of vertical tower - - Vmat_bot: material cost of bottom cap - - Vmat_top: material cost of top cap - """ - - if pressure == 0: - return [ - self.costrate_steel * x for x in self.get_mass_tower_material(pressure=pressure) - ] # 2003 dollars - else: - Mmat_wall, Mmat_bot, Mmat_top = self.get_mass_tower_material(pressure=pressure) - # use adjusted pressure cap cost - return [ - self.costrate_steel * Mmat_wall, - self.costrate_endcap * Mmat_bot, - self.costrate_endcap * Mmat_top, - ] # 2003 dollars - - def get_operational_mass_fraction(self): - """ - get the fraction of stored hydrogen to tower mass - - following Kottenstette - """ - - Sut = self.ultimate_tensile_strength - rho = self.density_steel - R = self.gasconstant_H2 - T = self.operating_temp + 273.15 # convert to K - - frac = Sut / (rho * R * T) - - return frac # nondim. - - def get_cost_nontower(self, traditional: bool = False, naive: bool = True): - nonwall_cost = 0 - if traditional: - nonwall_cost += self.tower_length * self.costrate_ladder # add ladder cost - nonwall_cost += self.cost_door # add door cost - else: - naive = True - if naive: - nonwall_cost += self.cost_mainframe_extension - nonwall_cost += 2 * self.cost_door - nonwall_cost += 2 * self.tower_length * self.costrate_ladder - nonwall_cost += self.cost_nozzles_manway - nonwall_cost += self.tower_length * self.costrate_conduit - else: - # adjust length b.c. conduit, one ladder must ride outside pressure vessel - adj_length = np.sqrt( - (self.section_diameters[0] - self.section_diameters[-1]) ** 2 - + self.tower_length**2 - ) - nonwall_cost += self.cost_mainframe_extension - nonwall_cost += 2 * self.cost_door - nonwall_cost += self.tower_length * self.costrate_ladder - nonwall_cost += adj_length * self.costrate_ladder - nonwall_cost += self.cost_nozzles_manway - nonwall_cost += adj_length * self.costrate_conduit - return nonwall_cost # 2003 dollars - - ### OFFICIAL OUTPUT INTERFACE - - def get_capex(self): - """return the total additional capex necessary for H2 production""" - capex_withH2 = self.get_cost_nontower() + np.sum(self.get_cost_tower_material()) - capex_without = self.get_cost_nontower(traditional=True) + np.sum( - self.get_cost_tower_material(pressure=0) - ) - return capex_withH2 - capex_without # 2003 dollars - - def get_opex(self): - """ - a simple model for operational expenditures for PV - - maintenance for pressure vessel based on an annual maintenance rate - against the vessel-specific capital expenditure, plus wages times staff - hours per year - """ - - return ( - self.get_capex() * self.maintenance_rate + self.wage * self.staff_hours - ) # 2003 dollars - - def get_mass_empty(self): - """return the total additional empty mass necessary for H2 production in kg""" - - Mtower_withH2 = np.sum(self.get_mass_tower_material()) - Mnontower_withH2 = 0.0 # not specified - - Mtower_without = np.sum(self.get_mass_tower_material(pressure=0)) - Mnontower_without = 0.0 # not specified - - Mtotal_withH2 = Mtower_withH2 + Mnontower_withH2 - Mtotal_without = Mtower_without + Mnontower_without - - return Mtotal_withH2 - Mtotal_without # kg - - def get_capacity_H2(self): - """get the ideal gas H2 capacity in kg""" - - Tabs = self.operating_temp + 273.15 - R = self.gasconstant_H2 - p = self.operating_pressure - V = self.get_volume_tower_inner() - - # ideal gas law - m_H2 = p * V / (R * Tabs) - - return m_H2 # kg - - def get_pressure_H2(self): - return self.operating_pressure # Pa, trivial, but for delivery - - ### STATIC FUNCTIONS - - @staticmethod - def compute_cap_thickness( - pressure, - diameter, - strength_yield, - safetyfactor_Sy=1.5, - efficiency_weld=0.80, - constant=0.10, - ): - """ - compute the necessary thickness for a pressure vessel cap - - $$ - t= d \\sqrt{\\frac{C P}{S E}} - $$ - with weld joint efficiency E, allowable stress S, pressure P, diameter - of pressure action d, edge restraint factor C - - assumed: - - C= 0.10: Fig-UG-34 of ASME Code S VII, div. 1, via Rao's _Companion - Guide to the ASME Boiler and Pressure Vessel Code_ (2009), - fig. 21.3. type of sketch (a) assumed - - E= 0.80: conservatively butt weld, inspected - - using the ASME pressure vessel code definitions, and values given in - Rao _Companion Guide to the ASME Boiler and Pressure Vessel Code_ (2009) - """ - - return diameter * np.sqrt( - constant * pressure / (efficiency_weld * strength_yield / safetyfactor_Sy) - ) - - @staticmethod - def compute_frustum_volume(height, base_diameter, top_diameter): - """ - return the volume of a frustum (truncated cone) - """ - return ( - np.pi - / 12.0 - * height - * (base_diameter**2 + base_diameter * top_diameter + top_diameter**2) - ) # volume units - - @staticmethod - def get_crossover_pressure( - welded_joint_efficiency: float, - ultimate_tensile_strength: float, - d_t_ratio: float, - ): - """ - get burst/fatigue crossover pressure - - following Kottenstette 2003 - """ - - # convert to nice variables - E = welded_joint_efficiency # nondim. - Sut = ultimate_tensile_strength # pressure units - d_over_t = d_t_ratio # length-per-length; assumed fixed in this study - - p_crossover = 4 * E * Sut / (7 * d_over_t * (1 - E / 7.0)) # pressure units - - return p_crossover # pressure units - - @staticmethod - def get_thickness_increment_const(pressure: float, ultimate_tensile_strength: float): - """ - compute Goodman equation-based thickness increment in m - - following Kottenstette 2003 - """ - - # convert to text variables - p = pressure - # r= diameter/2 - Sut = ultimate_tensile_strength - - alpha_dtp = 0.25 * p / Sut - - return alpha_dtp # length per length diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/__init__.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/__init__.py deleted file mode 100644 index 4d3cf776e..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from h2integrate.simulation.technologies.hydrogen.h2_storage.pipe_storage.underground_pipe_storage import ( - UndergroundPipeStorage, -) diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/underground_pipe_storage.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/underground_pipe_storage.py deleted file mode 100644 index 5d9597f59..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/underground_pipe_storage.py +++ /dev/null @@ -1,177 +0,0 @@ -""" -Author: Kaitlin Brunik -Updated: 7/20/2023 -Institution: National Renewable Energy Lab -Description: This file outputs capital and operational costs of underground pipeline hydrogen -storage. It needs to be updated to with operational dynamics and physical size (footprint and mass). -Oversize pipe: pipe OD = 24'' schedule 60 [1] -Max pressure: 100 bar -Costs are in 2018 USD -Sources: - - [1] Papadias 2021: https://www.sciencedirect.com/science/article/pii/S0360319921030834?via%3Dihub - - [2] Papadias 2021: Bulk Hydrogen as Function of Capacity.docx documentation at - hopp/hydrogen/h2_storage - - [3] HDSAM V4.0 Gaseous H2 Geologic Storage sheet -""" - -import numpy as np - -from h2integrate.simulation.technologies.hydrogen.h2_transport.h2_compression import Compressor - - -class UndergroundPipeStorage: - """ - - Oversize pipe: pipe OD = 24'' schedule 60 - - Max pressure: 100 bar - - Costs are in 2018 USD - """ - - def __init__(self, input_dict): - """ - Initialize UndergroundPipeStorage. - - Args: - input_dict (dict): - - h2_storage_kg (float): total capacity of hydrogen storage [kg] - - storage_duration_hrs (float): (optional if h2_storage_kg set) [hrs] - - flow_rate_kg_hr (float): (optional if h2_storage_kg set) [kg/hr] - - compressor_output_pressure (float): 100 bar required [bar] - - system_flow_rate (float): [kg/day] - - labor_rate (float): (optional, default: 37.40) [$2018/hr] - - insurance (float): (optional, default: 1%) [decimal percent] - - property_taxes (float): (optional, default: 1%) [decimal percent] - - licensing_permits (float): (optional, default: 0.01%) [decimal percent] - Returns: - - pipe_storage_capex_per_kg (float): the installed capital cost per kg h2 in 2018 - [USD/kg] - - installed_capex (float): the installed capital cost in 2018 [USD] (including - compressor) - - storage_compressor_capex (float): the installed capital cost in 2018 for the - compressor [USD] - - total_opex (float): the OPEX (annual, fixed) in 2018 excluding electricity costs - [USD/kg-yr] - - output_dict (dict): - - pipe_storage_capex (float): installed capital cost in 2018 [USD] - - pipe_storage_opex (float): OPEX (annual, fixed) in 2018 [USD/yr] - """ - self.input_dict = input_dict - self.output_dict = {} - """""" - # inputs - if input_dict["compressor_output_pressure"] == 100: - self.compressor_output_pressure = input_dict["compressor_output_pressure"] # [bar] - else: - raise Exception( - "Error. compressor_output_pressure must = 100bar for pressure vessel storage." - ) - if "h2_storage_kg" in input_dict: - self.h2_storage_kg = input_dict["h2_storage_kg"] # [kg] - elif "storage_duration_hrs" and "flow_rate_kg_hr" in input_dict: - self.h2_storage_kg = input_dict["storage_duration_hrs"] * input_dict["flow_rate_kg_hr"] - else: - raise Exception( - "input_dict must contain h2_storage_kg or storage_duration_hrs and flow_rate_kg_hr" - ) - - if "system_flow_rate" not in input_dict.keys(): - raise ValueError("system_flow_rate required for underground pipe storage model.") - else: - self.system_flow_rate = input_dict["system_flow_rate"] - - self.labor_rate = input_dict.get("labor_rate", 37.39817) # $(2018)/hr - self.insurance = input_dict.get("insurance", 1 / 100) # % of total capital investment - self.property_taxes = input_dict.get( - "property_taxes", 1 / 100 - ) # % of total capital investment - self.licensing_permits = input_dict.get( - "licensing_permits", 0.1 / 100 - ) # % of total capital investment - self.comp_om = input_dict.get( - "compressor_om", 4 / 100 - ) # % of compressor capital investment - self.facility_om = input_dict.get( - "facility_om", 1 / 100 - ) # % of facility capital investment minus compressor capital investment - - def pipe_storage_capex(self): - """ - Calculates the installed capital cost of underground pipe hydrogen storage - Returns: - - pipe_storage_capex_per_kg (float): the installed capital cost per kg h2 in 2018 - [USD/kg] - - installed_capex (float): the installed capital cost in 2018 [USD] (including - compressor) - - storage_compressor_capex (float): the installed capital cost in 2018 for the - compressor [USD] - - output_dict (dict): - - pipe_storage_capex (float): installed capital cost in 2018 [USD] - """ - - # Installed capital cost - a = 0.0041617 - b = 0.060369 - c = 6.4581 - self.pipe_storage_capex_per_kg = np.exp( - a * (np.log(self.h2_storage_kg / 1000)) ** 2 - b * np.log(self.h2_storage_kg / 1000) + c - ) # 2019 [USD] from Papadias [2] - self.installed_capex = self.pipe_storage_capex_per_kg * self.h2_storage_kg - cepci_overall = 1.29 / 1.30 # Convert from $2019 to $2018 - self.installed_capex = cepci_overall * self.installed_capex - self.output_dict["pipe_storage_capex"] = self.installed_capex - - outlet_pressure = ( - self.compressor_output_pressure - ) # Max outlet pressure of underground pipe storage [1] - n_compressors = 2 - storage_compressor = Compressor( - outlet_pressure, self.system_flow_rate, n_compressors=n_compressors - ) - storage_compressor.compressor_power() - motor_rating, power = storage_compressor.compressor_system_power() - if motor_rating > 1600: - n_compressors += 1 - storage_compressor = Compressor( - outlet_pressure, self.system_flow_rate, n_compressors=n_compressors - ) - storage_compressor.compressor_power() - motor_rating, power = storage_compressor.compressor_system_power() - comp_capex, comp_OM = storage_compressor.compressor_costs() - cepci = 1.36 / 1.29 # convert from $2016 to $2018 - self.comp_capex = comp_capex * cepci - - return self.pipe_storage_capex_per_kg, self.installed_capex, self.comp_capex - - def pipe_storage_opex(self): - """ - Calculates the operation and maintenance costs excluding electricity costs for the - underground pipe hydrogen storage - - Returns: - - total_opex (float): the OPEX (annual, fixed) in 2018 excluding electricity costs - [USD/kg-yr] - - output_dict (dict): - - pipe_storage_opex (float): OPEX (annual, fixed) in 2018 [USD/yr] - """ - # Operations and Maintenace costs [3] - # Labor - # Base case is 1 operator, 24 hours a day, 7 days a week for a 100,000 kg/day average - # capacity facility. Scaling factor of 0.25 is used for other sized facilities - annual_hours = 8760 * (self.system_flow_rate / 100000) ** 0.25 - self.overhead = 0.5 - labor = (annual_hours * self.labor_rate) * (1 + self.overhead) # Burdened labor cost - insurance = self.insurance * self.installed_capex - property_taxes = self.property_taxes * self.installed_capex - licensing_permits = self.licensing_permits * self.installed_capex - comp_op_maint = self.comp_om * self.comp_capex - facility_op_maint = self.facility_om * (self.installed_capex - self.comp_capex) - - # O&M excludes electricity requirements - total_om = ( - labor - + insurance - + licensing_permits - + property_taxes - + comp_op_maint - + facility_op_maint - ) - self.output_dict["pipe_storage_opex"] = total_om - return total_om diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/__init__.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/__init__.py deleted file mode 100644 index 787241b9c..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -from h2integrate.simulation.technologies.hydrogen.h2_storage.pressure_vessel.tankinator import ( - LinedTank, - MetalMaterial, - Tank, - TypeIIITank, - TypeITank, - TypeIVTank, -) diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Compressed_all.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Compressed_all.py deleted file mode 100644 index 95c0f39ce..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Compressed_all.py +++ /dev/null @@ -1,255 +0,0 @@ -from __future__ import annotations - - -""" -Created on Mon Oct 17 20:08:09 2022 -@author: ppeng - -Revisions: -- 20221118: - Author: Jared J. Thomas - Description: - - Reformatted to be a class -""" - -""" -Model Revision Needed: storage space and mass -Description: This file should handle physical size (footprint and mass) needed for pressure vessel - storage -Sources: - - [1] ./README.md and other elements in this directory -Args: - - same as for the physics and cost model contained herein - - others may be added as needed -Returns:(can be from separate functions and/or methods as it makes sense): - - mass_empty (float): mass (approximate) for pressure vessel storage components ignoring stored - H2 - - footprint (float): area required for pressure vessel storage - - others may be added as needed -""" - - -from pathlib import Path - -import numpy as np - -from .Compressed_gas_function import CompressedGasFunction - - -class PressureVessel: - def __init__( - self, - Wind_avai=80, - H2_flow=200, - cdratio=1, - Energy_cost=0.07, - cycle_number=1, - parent_path=Path(__file__).parent, - spread_sheet_name="Tankinator.xlsx", - verbose=False, - ): - ########Key inputs########## - self.Wind_avai = Wind_avai # Wind availability in % - self.H2_flow = H2_flow # Flow rate of steel plants in metric ton/day - - # NOTE: Charge/discharge ratio, i.e. 2 means the charging is 2x faster than discharge - self.cdratio = cdratio - self.Energy_cost = Energy_cost # Renewable energy cost in $/kWh - - #######Other inputs######## - # NOTE: Equivalent cycle number for a year, only affects operation (the higher the number - # is the less effect there will be), set as now as I am not sure how the maximum storage - # capacity is determined and how the storage will be cycled - self.cycle_number = cycle_number - - _fn = parent_path / spread_sheet_name - self.compressed_gas_function = CompressedGasFunction(path_tankinator=_fn) - self.compressed_gas_function.verbose = verbose - - def run(self): - #####Run calculation######## - self.compressed_gas_function.func( - Wind_avai=self.Wind_avai, - H2_flow=self.H2_flow, - cdratio=self.cdratio, - Energy_cost=self.Energy_cost, - cycle_number=self.cycle_number, - ) - - ########Outputs################ - - ######Maximum equivalent storage capacity and duration - self.capacity_max = ( - self.compressed_gas_function.capacity_max - ) # This is the maximum equivalent H2 storage in kg - self.t_discharge_hr_max = ( - self.compressed_gas_function.t_discharge_hr_max - ) # This is tha maximum storage duration in kg - - ###Parameters for capital cost fitting for optimizing capital cost - self.a_fit_capex = self.compressed_gas_function.a_cap_fit - self.b_fit_capex = self.compressed_gas_function.b_cap_fit - self.c_fit_capex = self.compressed_gas_function.c_cap_fit - - # Parameters for operational cost fitting for optimizing capital cost - self.a_fit_opex = self.compressed_gas_function.a_op_fit - self.b_fit_opex = self.compressed_gas_function.b_op_fit - self.c_fit_opex = self.compressed_gas_function.c_op_fit - - def calculate_from_fit(self, capacity_kg): - capex_per_kg = self.compressed_gas_function.exp_log_fit( - [self.a_fit_capex, self.b_fit_capex, self.c_fit_capex], capacity_kg - ) - opex_per_kg = self.compressed_gas_function.exp_log_fit( - [self.a_fit_opex, self.b_fit_opex, self.c_fit_opex], capacity_kg - ) - energy_per_kg_h2 = self.compressed_gas_function.energy_function(capacity_kg) / capacity_kg - - # NOTE ON ENERGY: the energy value returned here is the energy used to fill the - # tanks initially for the first fill and so can be used as an approximation for the energy - # used on a per kg basis. - # If cycle_number > 1, the energy model output is incorrect. - - capex = capex_per_kg * capacity_kg - opex = opex_per_kg * capacity_kg - return capex, opex, energy_per_kg_h2 - - def get_tanks(self, capacity_kg): - """gets the number of tanks necessary""" - return np.ceil(capacity_kg / self.compressed_gas_function.m_H2_tank) - - def get_tank_footprint( - self, - capacity_kg, - upright: bool = True, - custom_packing: bool = False, - packing_ratio: float | None = None, - ): - """ - gets the footprint required for the H2 tanks - - assumes that packing is square (unless custom_packing is true) - - diameter D upright tank occupies D^2 - - diameter D, length L tank occupies D*L - - parameters: - - `upright`: place tanks vertically (default yes)? - - `custom_packing`: pack tanks at an alternate packing fraction? - - `packing_ratio`: ratio for custom packing, defaults to theoretical max (if known) - returns: - - `tank_footprint`: footprint of each tank in m^2 - - `array_footprint`: total footprint of all tanks in m^2 - """ - - tank_radius = self.compressed_gas_function.Router / 100 - tank_length = self.compressed_gas_function.Louter / 100 - Ntank = self.get_tanks(capacity_kg=capacity_kg) - - if upright: - tank_area = np.pi * tank_radius**2 - tank_footprint = 4 * tank_radius**2 - else: - tank_area = ( - np.pi * tank_radius**2 * ((tank_length - 2 * tank_radius) * (2 * tank_radius)) - ) - tank_footprint = tank_radius * tank_length - - if custom_packing: - if upright: - if packing_ratio is None: - packing_ratio = np.pi * np.sqrt(3.0) / 6.0 # default to tight packing - tank_footprint = tank_area * packing_ratio - else: - if packing_ratio is None: - raise NotImplementedError("tight packing ratio for cylinders isn't derived yet") - tank_footprint = tank_area * packing_ratio - - return (tank_footprint, Ntank * tank_footprint) - - def get_tank_mass(self, capacity_kg): - """ - gets the mass required for the H2 tanks - - returns - - `tank_mass`: mass of each tank - - `array_mass`: total mass of all tanks - """ - - tank_mass = self.compressed_gas_function.Mempty_tank - Ntank = self.get_tanks(capacity_kg=capacity_kg) - - return (tank_mass, Ntank * tank_mass) - - def plot(self): - self.compressed_gas_function.plot() - - def distributed_storage_vessels(self, capacity_total_tgt, N_sites): - """ - compute modified pressure vessel storage requirements for distributed - pressure vessels - - parameters: - - capacity_total_tgt: target gaseous H2 capacity in kilograms - - N_sites: number of sites (e.g. turbines) where pressure vessels will be placed - - returns: - - - """ - - # assume that the total target capacity is equally distributed across sites - capacity_site_tgt = capacity_total_tgt / N_sites - - # capex_centralized_total, opex_centralized_total, energy_kg_centralized_total= self.calculate_from_fit(capacity_total_tgt) # noqa: E501 - capex_site, opex_site, energy_kg_site = self.calculate_from_fit(capacity_site_tgt) - - # get the resulting capex & opex costs, incl. equivalent - capex_distributed_total = ( - N_sites * capex_site - ) # the cost for the total distributed storage facilities - opex_distributed_total = ( - N_sites * opex_site - ) # the cost for the total distributed storage facilities - - # get footprint stuff - area_footprint_site = self.get_tank_footprint(capacity_site_tgt)[1] - mass_tank_empty_site = self.get_tank_mass(capacity_site_tgt)[1] - - # return the outputs - return ( - capex_distributed_total, - opex_distributed_total, - energy_kg_site, - area_footprint_site, - mass_tank_empty_site, - capacity_site_tgt, - ) - - -if __name__ == "__main__": - storage = PressureVessel() - storage.run() - - capacity_req = 1e3 - print("tank type:", storage.compressed_gas_function.tank_type) - print("tank mass:", storage.get_tank_mass(capacity_req)[0]) - print("tank radius:", storage.compressed_gas_function.Router) - print("tank length:", storage.compressed_gas_function.Louter) - print( - "tank footprint (upright):", - storage.get_tank_footprint(capacity_req, upright=True)[0], - ) - print( - "tank footprint (flat):", - storage.get_tank_footprint(capacity_req, upright=False)[0], - ) - - print("\nnumber of tanks req'd:", storage.get_tanks(capacity_req)) - print( - "total footprint (upright):", - storage.get_tank_footprint(capacity_req, upright=True)[1], - ) - print( - "total footprint (flat):", - storage.get_tank_footprint(capacity_req, upright=False)[1], - ) - print("total mass:", storage.get_tank_mass(capacity_req)[1]) diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Compressed_gas_function.py b/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Compressed_gas_function.py deleted file mode 100644 index e4f95a4ee..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Compressed_gas_function.py +++ /dev/null @@ -1,791 +0,0 @@ -""" -Created on Fri Jan 15 15:06:21 2021 - -@author: ppeng -""" - -import math as math - -import numpy as np -import openpyxl as openpyxl -import matplotlib.pyplot as plt -from scipy.optimize import leastsq -from CoolProp.CoolProp import PropsSI - - -plt.rcParams.update({"font.size": 13}) - - -class CompressedGasFunction: - def __init__(self, path_tankinator): - # path to the excel spreadsheet to store material properties - self.wb_tankinator = openpyxl.load_workbook( - path_tankinator, data_only=True - ) # Add file name - - ################Other key inputs besides the main script########################## - self.MW_H2 = 2.02e-03 # molecular weight of H2 in kg/mol - - # NOTE: Important, if you change storage pressure, make sure to change it in the - # corresponding tab in Tankinator and save again - self.Pres = 350 # Define storage pressure in bar - self.Temp_c = 293 # Define storage temperature in K - self.Pin = 30 # Deinfe pressure out of electrolyzer in bar - self.Tin = 353 # Define temperature out of electrolyzer in K - self.T_amb = 295 - self.Pres3 = 35 # Define outlet pressure in bar - self.Temp3 = 353 # Define outlet temperature in K - - self.start_point = 10 # For setting the smallest capacity for fitting and plotting - - #################Economic parameters - self.CEPCI2007 = 525.4 - self.CEPCI2001 = 397 - self.CEPCI2017 = 567.5 - - self.CEPCI_current = 708 ####Change this value for current CEPCI - - self.wage = 36 - self.maintanance = 0.03 - self.Site_preparation = 100 # Site preparation in $/kg - - self.Tank_manufacturing = 1.8 # self.Markup for tank manufacturing - self.Markup = 1.5 # self.Markup for installation engineering/contingency - - #################Other minor input parameters############ - self.R = 8.314 # gas onstant m3*Pa/(molK) - self.Heat_Capacity_Wall = ( - 0.92 ##wall heat capacity at 298 K in kJ/kg*K for carbon fiber composite - ) - self.Efficiency_comp = 0.7 # Compressor efficiency - self.Efficiency_heater = 0.7 # Heat efficiency - - def exp_log_fit(self, var_op, capacity_1): - a_op = var_op[0] - b_op = var_op[1] - c_op = var_op[2] - - fit_op_kg = np.exp(a_op * (np.log(capacity_1)) ** 2 - b_op * np.log(capacity_1) + c_op) - - return fit_op_kg - - def residual_op(self, var_op, capacity_1, Op_c_Costs_kg): - fit_op_kg = self.exp_log_fit(var_op, capacity_1) - - return fit_op_kg - Op_c_Costs_kg - - def exp_fit(self, x, a, b): - return a * x**b - - def calculate_max_storage_capacity(self, Wind_avai, H2_flow, Release_efficiency): - # reference flow rate of steel plants in metric ton/day, in case in the future it is not - # 200 metric ton/day - H2_flow_ref = 200 - - capacity_max = ( - (0.8044 * Wind_avai**2 - 57.557 * Wind_avai + 4483.1) - * (H2_flow / H2_flow_ref) - / Release_efficiency - * 1000 - ) ###Total max equivalent storage capacity kg - - return capacity_max - - def calculate_max_storage_duration(self, Release_efficiency, H2_flow): - t_discharge_hr_max = ( - self.capacity_max / 1000 * Release_efficiency / H2_flow - ) ###This is the theoretical maximum storage duration - - return t_discharge_hr_max - - # TODO keep breaking this up so we can run the model without running the curve fit - def func( - self, - Wind_avai, - H2_flow, - cdratio, - Energy_cost, - cycle_number, - capacity_max_spec=None, - t_discharge_hr_max_spec=None, - ): - """ - Run the compressor and storage container cost models - - Wind_avai is only used for calculating the theoretical maximum storage capacity prior to - curve fitting - - H2_flow is (I think) the rate the H2 is being removed from the tank in metric ton/day - - cdratio is the charge/discharge ratio (1 means charge rate equals the discharge rate, 2 - means charge is 2x the discharge rate) - - Energy_cost is the renewable energy cost in $/kWh, or can be set to 0 to exclude energy - costs - - cycle number should just be left as 1 (see compressed_all.py) - """ - - ##############Calculation of storage capacity from duration############# - if 1 - self.Pres3 / self.Pres < 0.9: - Release_efficiency = 1 - self.Pres3 / self.Pres - else: - Release_efficiency = 0.9 - - if capacity_max_spec is None: - self.capacity_max = self.calculate_max_storage_capacity( - Wind_avai, H2_flow, Release_efficiency - ) - else: - self.capacity_max = capacity_max_spec - - if t_discharge_hr_max_spec is None: - self.t_discharge_hr_max = self.calculate_max_storage_duration( - Release_efficiency, H2_flow - ) - else: - self.t_discharge_hr_max = t_discharge_hr_max_spec - - if self.verbose: - print("Maximum capacity is", self.capacity_max, "kg H2") - print("Maximum storage duration is", self.t_discharge_hr_max, "hr") - - if self.Pres > 170: - ####Use this if use type IV tanks - tank_type = 4 - sheet_tankinator = self.wb_tankinator["type4_rev3"] # Add Sheet name - Vtank_c_cell = sheet_tankinator.cell(row=19, column=3) # tank internal volume in cm3 - Vtank_c = Vtank_c_cell.value / (10**6) # tank volume in m3 - m_c_wall_cell = sheet_tankinator.cell(row=55, column=3) - m_c_wall = m_c_wall_cell.value # Wall mass in kg - Mtank_c = m_c_wall # TODO why is this set but not used? - Louter_c_cell = sheet_tankinator.cell(row=36, column=3) - length_outer_c = Louter_c_cell.value # outer length of tank - Router_c_cell = sheet_tankinator.cell(row=37, column=3) - radius_outer_c = Router_c_cell.value # outer radius of tank - Cost_c_tank_cell = sheet_tankinator.cell(row=65, column=3) # Cost of one tank - Cost_c_tank = Cost_c_tank_cell.value ##Cost of the tank in $/tank - - if self.Pres <= 170: - ####Use this if use type I tanks - tank_type = 1 - sheet_tankinator = self.wb_tankinator["type1_rev3"] # Add Sheet nam - Vtank_c_cell = sheet_tankinator.cell(row=20, column=3) ##Tank's outer volume in cm^3 - Vtank_c = Vtank_c_cell.value / (10**6) # tank volume in m3 - m_c_wall_cell = sheet_tankinator.cell(row=188, column=3) - m_c_wall = m_c_wall_cell.value # Wall mass in kg - Mtank_c = m_c_wall # TODO why is this set but not used? - Louter_c_cell = sheet_tankinator.cell(row=184, column=3) - length_outer_c = Louter_c_cell.value - Router_c_cell = sheet_tankinator.cell(row=185, column=3) - radius_outer_c = Router_c_cell.value - Cost_c_tank_cell = sheet_tankinator.cell(row=193, column=3) # Cost of one tank - Cost_c_tank = Cost_c_tank_cell.value ##Cost of the tank in $/tank - - self.tank_type = tank_type - self.Vtank = Vtank_c - self.m_H2_tank = self.Vtank * PropsSI( - "D", "P", self.Pres * 10**5, "T", self.Temp_c, "Hydrogen" - ) - self.Mempty_tank = Mtank_c - self.Router = radius_outer_c - self.Louter = length_outer_c - - #####Define arrays for plotting and fitting - - self.t_discharge_hr_1 = np.linspace( - self.t_discharge_hr_max, self.t_discharge_hr_max / self.start_point, num=15 - ) - self.cost_kg = np.zeros(len(self.t_discharge_hr_1)) - cost_kg_tank = np.zeros(len(self.t_discharge_hr_1)) - cost_kg_comp = np.zeros(len(self.t_discharge_hr_1)) - cost_kg_ref = np.zeros(len(self.t_discharge_hr_1)) - cost_kg_heat = np.zeros(len(self.t_discharge_hr_1)) - self.number_of_tanks = np.zeros(len(self.t_discharge_hr_1)) - self.capacity_1 = np.zeros(len(self.t_discharge_hr_1)) - self.Op_c_Costs_kg = np.zeros(len(self.t_discharge_hr_1)) - self.total_energy_used_kwh = np.zeros(len(self.t_discharge_hr_1)) - - ########################################################################################### - ######################################################################################## - ############################################################################################ - ###############Starting detailed calculations################################# - ###############Stage 1 calculations################################# - - for i in range(0, len(self.t_discharge_hr_1 - 1)): - t_discharge_hr = self.t_discharge_hr_1[i] - capacity = ( - H2_flow * t_discharge_hr * 1000 / Release_efficiency - ) # Maximum capacity in kg H2 - - self.capacity_1[i] = capacity - - rgas = PropsSI( - "D", "P", self.Pres * 10**5, "T", self.Temp_c, "Hydrogen" - ) # h2 density in kg/m3 under storage conditions - H2_c_mass_gas_tank = Vtank_c * rgas # hydrogen mass per tank in kg - H2_c_mass_tank = H2_c_mass_gas_tank # Estimation of H2 amount per tank in kg - self.single_tank_h2_capacity_kg = H2_c_mass_tank - - number_c_of_tanks = np.ceil(capacity / H2_c_mass_tank) - self.number_of_tanks[i] = number_c_of_tanks - - # NOTE: This will be useful when changing to assume all tanks are full, but will cause - # the model to not perform well for small scales, where 1 tank makes a large difference - H2_c_Cap_Storage = H2_c_mass_tank * (number_c_of_tanks - 1) + capacity % H2_c_mass_tank - - #################Energy balance for adsorption (state 1 to state 2)######## - self.t_charge_hr = t_discharge_hr * (1 / cdratio) - - # NOTE: correcting first cycle, useful to size based on maximum power and also when - # calculating the operational cost - t_precondition_hr = self.t_charge_hr - m_c_flow_rate_1_2 = ( - H2_c_Cap_Storage / t_precondition_hr / 3600 - ) # mass flow rate in kg/s - Temp2 = self.Temp_c - Temp1_gas = self.Tin - Temp1_solid = self.T_amb - Pres2 = self.Pres * 10**5 - Pres1 = self.Pin * 10**5 - H_c_1_spec_g = ( - PropsSI("H", "P", Pres1, "T", Temp1_gas, "Hydrogen") / 1000 - ) # specific enthalpy of the gas under T1 P1 in kJ/kg - H_c_2_spec_g = ( - PropsSI("H", "P", Pres2, "T", Temp2, "Hydrogen") / 1000 - ) # specific enthalpy of the gas under T2 P2 in kJ/kg - H_c_1_gas = H2_c_Cap_Storage * H_c_1_spec_g - H_c_2_gas = H2_c_Cap_Storage * H_c_2_spec_g - deltaE_c_H2_1_2 = H_c_2_gas - H_c_1_gas - deltaE_c_Uwall_1_2 = ( - self.Heat_Capacity_Wall * (Temp2 - Temp1_solid) * m_c_wall * number_c_of_tanks - ) # Net energy/enthalpy change of adsorbent in kJ - deltaE_c_net_1_2 = ( - deltaE_c_H2_1_2 + deltaE_c_Uwall_1_2 - ) # Net energy/enthalpy change in kJ - deltaP_c_net_1_2 = deltaE_c_net_1_2 / self.t_charge_hr / 3600 # Net power change in kW - - #################Energy balance for desorption (state 2 to state 3)######## - Temp3_gas = self.Temp3 - Temp3_solid = Temp2 - self.Pres3 = self.Pres3 - Pres3_tank = self.Pres * (1 - Release_efficiency) * 10**5 * 10 - H_c_3_spec_g_fuel_cell = ( - PropsSI("H", "P", self.Pres3, "T", Temp3_gas, "Hydrogen") / 1000 - ) # specific enthalpy of the released gas in kJ/kg - H_c_3_spec_g_tank = ( - PropsSI("H", "P", Pres3_tank, "T", Temp2, "Hydrogen") / 1000 - ) # specific enthalpy of the remaining free volume gas in kJ/kg - H_c_3_gas = ( - H2_c_Cap_Storage * Release_efficiency * H_c_3_spec_g_fuel_cell - + H2_c_Cap_Storage * (1 - Release_efficiency) * H_c_3_spec_g_tank - ) # Total gas phase enthalpy in stage 3 in kJ - deltaE_c_H2_2_3 = H_c_3_gas - H_c_2_gas # Total h2 enthalpy change in kJ - deltaE_c_Uwall_2_3 = ( - self.Heat_Capacity_Wall * (Temp3_solid - Temp2) * m_c_wall * number_c_of_tanks - ) # kJ - deltaE_c_net_2_3 = ( - deltaE_c_H2_2_3 + deltaE_c_Uwall_2_3 - ) # Net enthalpy change during desorption - detlaP_c_net_2_3 = deltaE_c_net_2_3 / t_discharge_hr / 3600 - - ###############Energy balance for adsorption (state 4 to state 2)########## - m_c_flow_rate_4_2 = H2_c_Cap_Storage * Release_efficiency / self.t_charge_hr / 3600 - Temp4_tank = Temp2 - Pres4_tank = Pres3_tank - H_c_4_spec_g_electrolyzer = ( - PropsSI("H", "P", self.Pin, "T", self.Tin, "Hydrogen") / 1000 - ) # specific enthalpy of the released gas in kJ/kg - H_c_4_spec_g_tank = ( - PropsSI("H", "P", Pres4_tank, "T", Temp2 - 5, "Hydrogen") / 1000 - ) # specific enthalpy of the remaining free volume gas in kJ/kg - H_c_4_gas = ( - H2_c_Cap_Storage * Release_efficiency * H_c_4_spec_g_electrolyzer - + H2_c_Cap_Storage * (1 - Release_efficiency) * H_c_4_spec_g_tank - ) # Total gas phase enthalpy in stage 3 in kJ - deltaE_c_H2_4_2 = H_c_2_gas - H_c_4_gas # Total h2 enthalpy change in kJ - deltaE_c_Uwall_4_2 = ( - self.Heat_Capacity_Wall * (Temp2 - Temp4_tank) * m_c_wall * number_c_of_tanks - ) # kJ - deltaE_c_net_4_2 = ( - deltaE_c_H2_4_2 + deltaE_c_Uwall_4_2 - ) # Net enthalpy change during desorption - deltaP_c_net_4_2 = deltaE_c_net_4_2 / self.t_charge_hr / 3600 - - ########################################Costs for cycle 1 adsorption#################### - - ###############CAPITAL COSTS (sized based on cycle 1 requirements)###################### - - ###############################Compressor costs ### axial/centrifugal - if self.Pres >= self.Pin: - K = PropsSI( - "ISENTROPIC_EXPANSION_COEFFICIENT", - "P", - self.Pin * 10**5, - "T", - self.Tin, - "Hydrogen", - ) - P2nd = self.Pin * (self.Pres / self.Pin) ** (1 / 3) - P3rd = ( - self.Pin * (self.Pres / self.Pin) ** (1 / 3) * (self.Pres / self.Pin) ** (1 / 3) - ) - work_c_comp_1 = ( - K - / (K - 1) - * self.R - * self.Tin - / self.MW_H2 - * ((P2nd / self.Pin) ** ((K - 1) / K) - 1) - ) - work_c_comp_2 = ( - K - / (K - 1) - * self.R - * self.Tin - / self.MW_H2 - * ((P3rd / P2nd) ** ((K - 1) / K) - 1) - ) - work_c_comp_3 = ( - K - / (K - 1) - * self.R - * self.Tin - / self.MW_H2 - * ((self.Pres / P3rd) ** ((K - 1) / K) - 1) - ) - Work_c_comp = work_c_comp_1 + work_c_comp_2 + work_c_comp_3 - # Work_c_comp=K/(K-1)*self.R*self.Tin/self.MW_H2*((self.Pres/self.Pin)**((K-1)/K)-1) #mechanical energy required for compressor in J/kg (single stage) # noqa: E501 - Power_c_comp_1_2 = ( - Work_c_comp / 1000 * m_c_flow_rate_1_2 - ) # mechanical power of the pump in kW - Power_c_comp_4_2 = Work_c_comp / 1000 * m_c_flow_rate_4_2 - A_c_comp_1_2 = Power_c_comp_1_2 / self.Efficiency_comp # total power in kW - A_c_comp_4_2 = Power_c_comp_4_2 / self.Efficiency_comp # total power in kW - if A_c_comp_1_2 >= A_c_comp_4_2: - A_c_comp = A_c_comp_1_2 - else: - A_c_comp = A_c_comp_4_2 - - # print ('work of compressor is', Work_c_comp,'J/kg') - # print ('Adjusted storage capacity is', H2_c_Cap_Storage, 'kg') - # print ('flow rate is', m_c_flow_rate_1_2, 'and', m_c_flow_rate_4_2, 'kg/s') - # print('Total fluid power of compressor', A_c_comp, 'kW') - Number_c_Compressors = np.floor( - A_c_comp / 3000 - ) # Number of compressors excluding the last one - A_c_comp_1 = A_c_comp % 3000 # power of the last compressor - # print('Number of compressors', Number_c_Compressors+1) - k1 = 2.2897 - k2 = 1.3604 - k3 = -0.1027 - Compr_c_Cap_Cost = ( - 10 ** (k1 + k2 * np.log10(3000) + k3 * (np.log10(3000)) ** 2) - ) * Number_c_Compressors - Compr_c_Cap_Cost_1 = 10 ** ( - k1 + k2 * np.log10(A_c_comp_1) + k3 * (np.log10(A_c_comp_1)) ** 2 - ) - - compressor_energy_used_1 = Work_c_comp * H2_c_Cap_Storage * 2.8e-7 - compressor_energy_used_2 = ( - Work_c_comp * H2_c_Cap_Storage * Release_efficiency * 2.8e-7 - ) - - Compr_c_Energy_Costs_1 = ( - compressor_energy_used_1 * Energy_cost - ) # compressor electricity cost in cycle 1 - Compr_c_Energy_Costs_2 = ( - compressor_energy_used_2 * Energy_cost - ) # compressor electricity cost assuming in regular charging cycle - - Total_c_Compr_Cap_Cost = Compr_c_Cap_Cost + Compr_c_Cap_Cost_1 - Total_c_Compr_Cap_Cost = Total_c_Compr_Cap_Cost * ( - self.CEPCI_current / self.CEPCI2001 - ) ##Inflation - else: - Power_c_comp_1_2 = 0 # mechanical power of the pump in kW - Power_c_comp_4_2 = 0 - A_c_comp_1_2 = 0 # total power in kW - A_c_comp_4_2 = 0 # total power in kW - Work_c_comp = 0 - Compr_c_Cap_Cost = 0 - compressor_energy_used_1 = 0 - compressor_energy_used_2 = 0 - Compr_c_Energy_Costs_1 = 0 - Compr_c_Energy_Costs_2 = 0 - Total_c_Compr_Cap_Cost = 0 - - self.total_compressor_energy_used_kwh = ( - compressor_energy_used_1 # + compressor_energy_used_2 - ) - - # print ('Compressor energy cost is $', Compr_c_Energy_Costs) - # print ('refrigeration capcost for compressor is $') - # print('compressor capcost is $', Total_c_Compr_Cap_Cost) - # print("----------") - - ########################################Costs associated with storage tanks - - # print("Number of tanks is: ", number_c_of_tanks) - Storage_c_Tank_Cap_Costs = Cost_c_tank * number_c_of_tanks * self.Tank_manufacturing - Storage_c_Tank_Cap_Costs = Storage_c_Tank_Cap_Costs * ( - self.CEPCI_current / self.CEPCI2007 - ) ##Inflation - # print('Capcost for storage tank is', Storage_c_Tank_Cap_Costs) - # print("----------") - - ###############################Refrigeration costs estimation adsorption process - # print ('pre-conditioning time is', round (t_precondition_hr), 'hr') - Ref_c_P_net_1_2 = -( - deltaP_c_net_1_2 - Power_c_comp_1_2 - ) # Refrigeration power in kW from state 1 to state 2 (precondition) - Ref_c_P_net_4_2 = -( - deltaP_c_net_4_2 - Power_c_comp_4_2 - ) # Refrigeration power in kW from state 1 to state 2 (normal charging) - if Ref_c_P_net_1_2 >= Ref_c_P_net_4_2: - Net_c_Cooling_Power_Adsorption = Ref_c_P_net_1_2 # Net refrigeration power in kW - else: - Net_c_Cooling_Power_Adsorption = Ref_c_P_net_4_2 - # print( - # "Net Cooling power for refrigeration sizing is", - # Net_c_Cooling_Power_Adsorption, - # "kW", - # ) # Cooling power in kW - - if Net_c_Cooling_Power_Adsorption < 1000: - A1 = -3.53e-09 - A2 = -9.94e-06 - A3 = 3.30e-03 - nc = ( - (A1 * (self.Temp_c**3)) + (A2 * (self.Temp_c**2)) + A3 * self.Temp_c - ) # Carnot efficiency factor - COP = (self.Temp_c / (318 - self.Temp_c)) * nc # Coefficient of performance - B1 = 24000 - B2 = 3500 - B3 = 0.9 - Total_c_Refrig_Cap_Costs_adsorption = ( - B1 + (B2 * (Net_c_Cooling_Power_Adsorption / COP) ** B3) - ) * (self.CEPCI_current / 550.8) - else: - Total_c_Refrig_Cap_Costs_adsorption = ( - 2 - * 10**11 - * self.Temp_c**-2.077 - * (Net_c_Cooling_Power_Adsorption / 1000) ** 0.6 - ) - Total_c_Refrig_Cap_Costs_adsorption = Total_c_Refrig_Cap_Costs_adsorption * ( - self.CEPCI_current / self.CEPCI2017 - ) - - ####Utility for refrigeration - # NOTE: Utility in $/GJ, here, the utility is mostly for energy assumes 16.8 $/GJ - # (57 $/MWh) - Utility_c_ref = 4.07 * 10**7 * self.Temp_c ** (-2.669) - # Utility_c_refrigeration_1 = (self.CEPCI_current/self.CEPCI2017)*Utility_c_ref*-(deltaE_c_net_1_2-Work_c_comp*H2_c_Cap_Storage/1000)/1e6 # noqa: E501 - energy_consumption_refrigeration_1_kj = -( - deltaE_c_net_1_2 - Work_c_comp * H2_c_Cap_Storage / 1000 - ) # in kJ - - # NOTE: changed based on discussion with original author 20221216, energy separated - # out 20230317 - Utility_c_refrigeration_1 = ( - (Energy_cost / 0.057) * Utility_c_ref * energy_consumption_refrigeration_1_kj / 1e6 - ) - # print ('refrigerator capital cost for adsorption is $', Total_c_Refrig_Cap_Costs_adsorption) # noqa: E501 - # print("------------") - - # Utility_c_refrigeration_2 = ( - # (self.CEPCI_current / self.CEPCI2017) - # * Utility_c_ref - # * -(deltaE_c_net_4_2 - Work_c_comp * H2_c_Cap_Storage * Release_efficiency / 1000) - # / 1e6 - # ) - energy_consumption_refrigeration_2_kj = -( - deltaE_c_net_4_2 - Work_c_comp * H2_c_Cap_Storage * Release_efficiency / 1000 - ) # in kJ - - # NOTE: changed based on discussion with original author 20221216, energy separated - # out 20230317 - Utility_c_refrigeration_2 = ( - (Energy_cost / 0.057) * Utility_c_ref * energy_consumption_refrigeration_2_kj / 1e6 - ) - - # specify energy usage separately so energy usage can be used externally if desired - joule2watthour = 1.0 / 3600.0 # 3600 joules in a watt hour (as also 3600 kJ in a kWh) - energy_consumption_refrigeration_1_kwh = ( - energy_consumption_refrigeration_1_kj * joule2watthour - ) - (energy_consumption_refrigeration_2_kj * joule2watthour) - self.total_refrigeration_energy_used_kwh = ( - energy_consumption_refrigeration_1_kwh # + energy_consumption_refrigeration_2_kwh - ) - - if self.total_refrigeration_energy_used_kwh < 0: - raise (ValueError("energy usage must be greater than 0")) - ###############################Heating costs desorption process - k1 = 6.9617 - k2 = -1.48 - k3 = 0.3161 - Net_c_Heating_Power_Desorption = ( - detlaP_c_net_2_3 / self.Efficiency_heater - ) ## steam boiler power at 0.7 efficiency in kW - Number_c_Heaters = np.floor( - Net_c_Heating_Power_Desorption / 9400 - ) # Number of compressors excluding the last one - Heater_c_Power_1 = Net_c_Heating_Power_Desorption % 9400 # power of the last compressor - # print('Number of heaters', Number_c_Heaters+1) - Heater_c_Cap_Cost = ( - 10 ** (k1 + k2 * np.log10(9400) + k3 * (np.log10(9400)) ** 2) - ) * Number_c_Heaters - if Heater_c_Power_1 < 1000: - Heater_c_Cap_Cost_1 = ( - 10 ** (k1 + k2 * np.log10(1000) + k3 * (np.log10(1000)) ** 2) - ) * (Heater_c_Power_1 / 1000) - else: - Heater_c_Cap_Cost_1 = 10 ** ( - k1 + k2 * np.log10(Heater_c_Power_1) + k3 * (np.log10(Heater_c_Power_1)) ** 2 - ) - Total_c_Heater_Cap_Cost = Heater_c_Cap_Cost + Heater_c_Cap_Cost_1 - Total_c_Heater_Cap_Cost = Total_c_Heater_Cap_Cost * ( - self.CEPCI_current / self.CEPCI2001 - ) ##Inflation #TODO make inflation optional per user input - - # NOTE: Jared Thomas set to zero as per discussion with Peng Peng through Abhineet Gupta - # 20221215 was 13.28*deltaE_c_net_2_3/1e6 #$13.28/GJ for low pressure steam - Utility_c_Heater = 0 - - self.total_heating_energy_used_kwh = Net_c_Heating_Power_Desorption * t_discharge_hr - Total_c_Heating_Energy_Costs = self.total_heating_energy_used_kwh * Energy_cost - - # print('heater capcost is $', Total_c_Heater_Cap_Cost) - - #############Operational costs (sized based on cycle 1 requirements)#################### - Op_c_Costs_1 = ( - Compr_c_Energy_Costs_1 - + Utility_c_refrigeration_1 - + Utility_c_Heater - + Total_c_Heating_Energy_Costs - ) - Op_c_Costs_2 = ( - Compr_c_Energy_Costs_2 - + Utility_c_refrigeration_2 - + Utility_c_Heater - + Total_c_Heating_Energy_Costs - ) - Total_c_Cap_Costs = ( - Storage_c_Tank_Cap_Costs - + Total_c_Refrig_Cap_Costs_adsorption - + Total_c_Compr_Cap_Cost - + Total_c_Heater_Cap_Cost - ) - - # Op_c_Costs = ( - # ( - # Op_c_Costs_1 - # + Op_c_Costs_2 * (cycle_number - 1) - # + self.maintanance * Total_c_Cap_Costs - # + self.wage * 360 * 2 - # ) - # / cycle_number - # / capacity - # ) - # TODO check this. I changed the 2 to a 24 because it looks like it should be working hours in a year. - Op_c_Costs = ( - ( - Op_c_Costs_1 - + Op_c_Costs_2 * (cycle_number - 1) - + self.maintanance * Total_c_Cap_Costs - + self.wage * 360 * 2 - ) - / cycle_number - ) # checked, this was divided by capacity, but Peng Peng confirmed it was duplicating - # the following divisions by capacity - - ######################writing costs##################################################### - self.cost_kg[i] = (Total_c_Cap_Costs / capacity + self.Site_preparation) * self.Markup - cost_kg_tank[i] = Storage_c_Tank_Cap_Costs / capacity - cost_kg_comp[i] = Total_c_Compr_Cap_Cost / capacity - cost_kg_ref[i] = Total_c_Refrig_Cap_Costs_adsorption / capacity - cost_kg_heat[i] = Total_c_Heater_Cap_Cost / capacity - self.Op_c_Costs_kg[i] = Op_c_Costs / capacity - # print("\n Pressure Vessel Costs: ") - # print("cost_kg ") - # print("cost_kg_tank ") - # print("cost_kg_comp ") - # print("cost_kg_ref ") - # print("cost_kg_heat ") - ######################################## Total Energy Use (kWh) ###################### - self.total_energy_used_kwh[i] = ( - self.total_compressor_energy_used_kwh - + self.total_heating_energy_used_kwh - + self.total_refrigeration_energy_used_kwh - ) - - self.curve_fit() - - def curve_fit(self): - ################### plot prep ########### - self.plot_range = range(int(np.min(self.capacity_1)), int(np.max(self.capacity_1)), 100) - - ###################Fitting capital#################################################### - - var_cap = [0.01, 0.5, 5] # Initial guesses for the parameters, can be flexible - - varfinal_cap_fitted, success = leastsq( - self.residual_op, - var_cap, - args=(self.capacity_1, self.cost_kg), - maxfev=100000, - ) - - self.a_cap_fit = varfinal_cap_fitted[0] - self.b_cap_fit = varfinal_cap_fitted[1] - self.c_cap_fit = varfinal_cap_fitted[2] - - if self.verbose: - print("a_cap is", self.a_cap_fit) - print("b_cap is", self.b_cap_fit) - print("c_cap is", self.c_cap_fit) - print("***********") - - self.fitted_capex = self.exp_log_fit(varfinal_cap_fitted, self.plot_range) - - # popt, pcov = curve_fit(self.exp_fit, self.capacity_1, self.cost_kg, maxfev=100000) - - # self.a_cap_fit=popt[0] - # self.b_cap_fit=popt[1] - - # print ('a is', self.a_cap_fit) - # print ('b is', self.b_cap_fit) - # print ('***********') - - # self.fitted_kg = self.exp_fit(self.plot_range,self.a_cap_fit,self.b_cap_fit) - - ####################### fitting OpEx ################################# - var_op = [0.01, 0.5, 5] # Initial guesses for the parameters, can be flexible - - varfinal_op_fitted, success = leastsq( - self.residual_op, - var_op, - args=(self.capacity_1, self.Op_c_Costs_kg), - maxfev=100000, - ) - - self.a_op_fit = varfinal_op_fitted[0] - self.b_op_fit = varfinal_op_fitted[1] - self.c_op_fit = varfinal_op_fitted[2] - - if self.verbose: - print("a_op is", self.a_op_fit) - print("b_op is", self.b_op_fit) - print("c_op is", self.c_op_fit) - print("***********") - - self.fitted_op_kg = self.exp_log_fit(varfinal_op_fitted, self.plot_range) - - ##################### Fit energy usage ################################ - self.energy_coefficients = np.polyfit(self.capacity_1, self.total_energy_used_kwh, 1) - self.energy_function = np.poly1d(self.energy_coefficients) # kWh - self.fit_energy_wrt_capacity_kwh = self.energy_function(self.plot_range) - - def plot(self): - fig, ax = plt.subplots(2, 2, sharex=True, figsize=(10, 6)) - - ##################### CAPEX ####################### - ax[0, 0].scatter(self.capacity_1 * 1e-3, self.cost_kg, color="r", label="Calc") - ax[0, 0].plot(np.asarray(self.plot_range) * 1e-3, self.fitted_capex, label="Fit") - # ax[0,0].plot(self.capacity_1,cost_kg_tank, color='b', label = 'tank') - # ax[0,0].plot(self.capacity_1,cost_kg_comp, color='c', label = 'compressor') - # ax[0,0].plot(self.capacity_1,cost_kg_ref, color='m', label = 'refrigeration') - # ax[0,0].plot(self.capacity_1,cost_kg_heat, color='y', label = 'heater') - - np.round(self.a_cap_fit, 2) - np.round(self.b_cap_fit, 2) - # plt.ylim(0,np.amax(self.cost_kg)*2) - # equation_cap = 'y='+str(a_disp)+'x'+'^'+str(b_disp) - a_cap_fit_disp = np.round(self.a_cap_fit, 2) - b_cap_fit_disp = np.round(self.b_cap_fit, 2) - c_cap_fit_disp = np.round(self.c_cap_fit, 2) - equation_cap = ( - "y=" - + "exp(" - + str(a_cap_fit_disp) - + "(ln(x))^2\n-" - + str(b_cap_fit_disp) - + "ln(x)+" - + str(c_cap_fit_disp) - + ")" - ) - - ax[0, 0].annotate( - equation_cap, - xy=(np.amax(self.capacity_1) * 1e-3 * 0.4, np.amax(self.cost_kg) * 0.8), - ) - - ax[0, 0].set_ylabel("CAPEX ($/kg)") - ax[0, 0].legend(loc="best", frameon=False) - # plt.legend(loc='best') - # ax[0,0].title('Capital') - - ##################### OPEX ############################ - a_op_fit_disp = np.round(self.a_op_fit, 2) - b_op_fit_disp = np.round(self.b_op_fit, 2) - c_op_fit_disp = np.round(self.c_op_fit, 2) - - equation_op = ( - "y=" - + "exp(" - + str(a_op_fit_disp) - + "(ln(x))^2\n-" - + str(b_op_fit_disp) - + "ln(x)+" - + str(c_op_fit_disp) - + ")" - ) - - ax[0, 1].plot(np.asarray(self.plot_range) * 1e-3, self.fitted_op_kg, label="Fit") - ax[0, 1].scatter(self.capacity_1 * 1e-3, self.Op_c_Costs_kg, color="r", label="Calc") - ax[0, 1].set_ylabel("OPEX ($/kg)") - ax[0, 1].annotate( - equation_op, - xy=( - np.amax(self.capacity_1) * 1e-3 * 0.2, - np.amax(self.Op_c_Costs_kg) * 0.4, - ), - ) - ax[0, 1].legend(loc="best", frameon=False) - # plt.legend(loc='best') - # ax[0,1].title('Annual operational') - - ################## Energy ###################### - ax[1, 1].plot( - np.asarray(self.plot_range) * 1e-3, - self.fit_energy_wrt_capacity_kwh * 1e-6, - label="Fit", - ) - ax[1, 1].scatter( - self.capacity_1 * 1e-3, - self.total_energy_used_kwh * 1e-6, - color="r", - label="Calc", - ) - ax[1, 1].set_xlabel("Capacity (metric tons H2)") - ax[1, 1].set_ylabel("Energy Use (GWh)") - - equation_energy = ( - "y=" - + str(round(self.energy_coefficients[0], 2)) - + "x+" - + str(round(self.energy_coefficients[1], 2)) - ) - ax[1, 1].annotate(equation_energy, xy=(3000, 5)) - ax[1, 1].legend(loc="best", frameon=False) - ax[1, 1].legend(loc="best", frameon=False) - # ax[1,1].title('Annual operational') - - ################ Wrap Up ###################### - - ax[1, 0].set_xlabel("Capacity (metric tons H2)") - - plt.tight_layout() - plt.show() diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/README.md b/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/README.md deleted file mode 100644 index d27f04793..000000000 --- a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/README.md +++ /dev/null @@ -1,54 +0,0 @@ -# Compressed gas storage for wind-H2-steel project -- Author: Peng Peng (ppeng@lbl.gov) -- Date: 10/21/2022 -- Brief description: This script is for a high-level overall estimation of energy consumption for compressed gas H2 storage for a steel facility requiring 200 metric tons of hydrogen per day. - -## Required files: -1. Compressed_all.py -2. Compressed_gas_function.py -3. Tankinator_large.xlsx -## Key inputs: -1. Wind availability in % -2. Charge and discharge ratio -3. Flow rate -4. Energy (renewable) cost in $/kWh -## Key output: -1. Maximum equivalent storage capacity. -2. Maximum equivalent storage duration. -3. Fitting parameters for further calculations and optimizations. - 1. purchase capital storage cost ($/kg) vs. capacity - 2. annual operation cost ($/kg) vs. capacity. - -![](images/2022-11-18-15-30-34.png) -![](images/2022-11-18-15-31-18.png) - -## How to use: -1. Put all three files in one folder -2. Change the path of the Tankinator file -3. Change inputs and run Compressed_all.py - -## Notes: -1. Max storage capacity obtained from empirical relation from another project for 200 metric ton/day H2 flow into steel facility. See below. And is assumed to scale linearly with the steel facility. - - ![](images/2022-11-18-15-31-54.png) -2. Operation cost does not include electrolyzer. -3. Costs include the following dummy values, which can be changed later in the “Economic parameters” section (around line 64) in Compressed_gas_function.py - 1. Site preparation $100/kg H2 stored - 2. 80% markup for tank manufacturing based on materials - 3. 50% markup from purchase cost for engineering, installation, etc. - 4. labor @ 36 $/h, 360 days x2 - 5. annual maintenance @ 3% purchase capital -4. Capital cost is for 2021 CEPCI, which can be changed at the same place as above -5. The code is for 350 bar compressed gas storage. If change pressure make sure to change the pressure in the Tankinator file and save it again before running. -6. The main components included are storage tanks, compressors, refrigeration, and heater. -7. Calculations are based on high-level energy balances, detailed energy consumption should be performed with more comprehensive process simulation. -8. Heat transfer between the ambient, and friction losses are not included. -9. From the storage capacity (x) derived from the wind availability, the cost relation is derived from the Cost relation fitted from 0.1x to x. This is done because the fitting correlations do not work very well across a very large range (Let me know if you want to optimize for a larger range). This will lead to a small difference for the same capacity when the max changes. See the example below for different wind availabilities, the fitted values for 105 kg capacity are different. I tested different step sizes and ranges and found 0.1x-x, 15-25 steps tend to give the smallest difference for this fitting correlation. -![](images/2022-11-18-15-32-24.png) -![](images/2022-11-18-15-32-32.png) -10. Cost year for the model is 2021 with the chemical plant cost index set as 708. - -## Main references: -1. Geankoplis, C. J. "Transport processes and separation." Process Principles. Prentice Hall NJ, 2003. -2. Dicks, A. L. & Rand, D. A. J. in Fuel Cell Systems Explained 351-399 (Wiley, 2018). -3. Turton, R., Bailie, R. C., Whiting, W. B., & Shaeiwitz, J. A. (2018). Analysis, synthesis and design of chemical processes. Pearson Education. 5th edition. -4. Luyben, W. L. (2017). Estimating refrigeration costs at cryogenic temperatures. Computers & Chemical Engineering, 103, 144-150. diff --git a/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Tankinator.xlsx b/h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Tankinator.xlsx deleted file mode 100644 index 93fcd67824db259ef9f4d1b6274fd19ec32b144d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 120062 zcmeFX^K)!byDl2rwr$&XvSO}a#kOr{#kOs0#kOrH9a|^++xJ$TTf6RGaL%mi(bd)C zhiAO+gSTf-C0S4~G$05dC?FspVxZ%IxyDUkARvEOARtsAC=eY{J6mTHTW5V$4|@|Q zJqC9hYoY=$5UM;Nke~hk_xeA$0+Z_UaqCQIT^i?p;of@Wrf0TlYQg+R6lTwB;p7HIYQMsE*_* z|3(Vu%owVn4McD(;W)DS21Ke{qrlOBMs{ zfd_F=l!FDl;V_cA6WZDDyc70(T3>T?SJgtmYd@-~X;(z+eYvBM>9*20!m;V&bNO#> zY~-sq2q4h12e|kH8T%vvLvIEyo)C~(!MB_9PC!N3?RimFt%LYCQd1>n}l8CIEuv90ps;|HFCSr3;AsOyg zFC`w5Dozlnq+hr1$N0t;U(ER^@zXwARTK&uFKLTgb!h6Fg9{`Lg=30@L)G3Ovg^|0 z(o?#mj0cr#cN|S+TUoyB*bb@0!mU_6(hP$J4m4^pUML2CdVuz@ywUm$@vKtt#=Xo-yQS-@zIBZ$prNip?K zYpPw(MINHG1%{`V%%lER1*$jTPTasy6%|L3(;&w*jt||seB2vX~RFHqYCp74SkIJPS^%u}C8 z1`2!@XL~ltEQYU1r7MlYcR?<%;8iY@JHi>4rl+J%WV^E3F&JBU2ohpjDl_E1)UGjm z&0yx5^`Jni%XQVfk6u#b&8Zaq7h%XyP8Cr^%t)?ee=>hPUp<7tif}0L{IC-W4Z{w; z2*PPdCM|^V7(EKdPI7H!i1c07ci$GsqNB$zN8nj<>On~N|FQpg(z=~zoW7QN|ljBtFBCw_i?bMZrWu%fUG!C5ibSa6&n|> zI9++^r<6-ZQwAZ{eBb3I5W@r}1m@*AQzUf5hrc5fNjOSNhG(7(ctK?e5q z&2;BtA$6;YyUZ!&{e61QPuuVi9~L%1bB+n`1qgIxD29G+D<0LIXT(LFJb%fGfo1Zmc8?Np>o z#&$p35J)nke9vr9gP`~WOG_+GM&_r0LG(*Nb9}bv$uu;U5T3GzU=3B$%~KRAL~ytx z$jcWi)RoJzYgy=Ew7*3!sQ4;+yk!v37OVr*T)=UNgA(8wl2)SW;qI+zOBZ1xln z!8Q{V`j{T-QvtjV3IEOtf1*0TJ#VkTULp=orYMDAy}m^tdE72pVLLJBgC#`ziyow8 z*@-Yy?>i6ILuI0meNw3auAkr0i*(_Mek;NrO!!IOhwTn;3tzJ39X@U#0+;%&{DO6r zYVZiN(`d%LnK~Z634V!r-6e0>oRS|ZHQOL{9B~O}GcLK2_v)MH1?ZEw6q6v9fRPVt zdu!T`kQS z0JRVklo@mNNR#-mcY=@j+~2h}6AkJ&)=QGG!}|5RWyL}JQ@kAn33bls?tK(jY2nzt z2#p!2#}gf_mOz4my4q4@O^q;pn=={F*SI)WSYt|ImyIEfqasXa{Y(~6ro5EVrKMm8 zx}gb(R(}l}?TIp#h%Q15mxJ`K1FWEG}6C+Xz@S!rSB>#2ld0e z&7TCp`q}aSq=%EaiHWlleCn23W)%IE4Ucb*d6)%3bH(tqr@L#)@z^fJ zW{14$N*Iq@pf?C77&J*p`q23un&uh!9H+H#q&xdWd*?ly^F{6)Js4jA7E?h$==lL1 z{~-Pa8|59#iQ>H|%z<&22M@TaC^)j#@>#t0$7ks9X$)_0uLM_N8;o3L{E2TOSpsl(zAzI#UFIBL>HLs(qbtMV_C8 zvK)Z+J3!~zrZoj}l%6q~#Imo5+MWuA z?U2R2)C5i=UMISFT3$c7upz#o*Jc9o;exu00mNT~&I>~Z*YPS{9D}0E@gEi!o1>>u z>%Uob1XuU^jJ4z%ogW74M>?t*nRw}L^i51Y>3n8e&yt2I_eQ_}Gcf;0I#te2dPS(CV;9O$Ck> z)8k%OLgJ_=*Scq{&qa?7zUWy2NqO3aN_$B}ncSHR^2c5Zk&(~^=n$C-`iHJhB=^## zJ0}u7atfoqiGTm4^IdY1kJ=#tk__ApXTOtn-3|YKBpG-Zrpn)R)m^}pcU=JE`NnUYYUvr!mBw{op&&HF4H}`Zof*er60T1YjNCv-rp(tz1?=k z9qsmFo`RJ1<&6>^^t=t!TT5b%eJ=xezm0pG>M+HRVFd?UYN{snUhUF_OA`S$bxd4( z7v5ojw2vg)mC{V(jUz)oqfgDKNBu*N2NDj9kv}$P@6YWHj4ryr9#SB_nS7;d%Szwx z++733OvBajVBn**4ztC*SorW5=; zJXpAho1iRi;+wZ|CgMNUY!X$0b6I%8SVRPA2r(hld@|H+Y4e=U;yG&iKD-mbYyY@Q zn9kKt9(lz#Mc7pZXdjm9>M(7K4fI>JPnpysZlm)l!Amp$RRpg5UAx_0fwYzut!l`ptc0 z0LW^HYU#SWRQ`u9p zH~yv8E#dL`s$Ev;+1uN!`V!N_mOY>A)3ygMpp-4_hM|UOUl2uF2FPTAJ*-ENl|~l! zpbJ*#9ccr@oS600IWk7J=`ZdR2?xWxi0!5VYs{$wbuFfHkr3T&B0*k^PdKU zKmMlyD9g0Qh$-mZbE0EL{3o+`8Rw$`O`{?~$ykIKlDV}X7E@ps8~B>vGGJ2380QE1 zIOF#-a?o%Pg+HXRW5tHrW8%v#}*Ur`Oq7nhvNoHuIn?uRSH zWVqw{HQ*AUi;gznzX%a%H{$asvFU@U5snpuvyKy8bN*%EKKt%a(`R?`161hXzk%jE z{5R0y{|1Uf%XP&`x-pVCnt!X5v}Mob2po6m9Fu3}9~jHNWtEC5uOg>;fv;#rHpRNwkX` z3Yb|;n#@(gOujEtwl>$|ja;B4L@YVFxjs6Pi{|nH2ced-whkfjn;i@$#v>>a>eJ2( zXn5Bn7MQM2KbrlkV>$~>2EBe6=$L~$>`{}T^WR*zg;@()7=Bc0I1H_e0j{^KY#8cs za?S~XO!vv&EMZ5@;kYE`v{WEoeMUiDvgchV3iT&&llVNke3A zx}%A8S565xvJw2$l)!vflZQW36aNLl5hg$3{_5PZAHLQLpmFl7bxG+sNA!uXHNkVd zU62eEoph$~=Mvuf({5!ChGwFpA+@89iPQQ^J1~ki8f>KmjI*h(mAf08=j#t%jEw^t z+jbl*{pI5iv55Nqn^+EAn@rR0$zV{lcQeVjzuM}#QuE; zo_**)N%5OZr-@-pg9qvyO(BI@HLj8L1>bVCK&g7%((@pgKlB^ znKBfYu2%Jo)`RUVcCi(#vqFWlLc8Gdqf=7f@kFDsn(8QqIZ0Ej2V@=0Gg3~aX|HSn zM^gP*(w|SU)(8?+KdnQgQY8FTdV<8u-VDTNDb7A3uIg4Gq7}vti5Z9L(_b>ACb~T7 z{dnB??)VZG8BQr2I0R+mlLN(0pkfI6w_BT>-vAi#SYEN|$cf@|K5!b29bm&vfx)idi*fzp6 zrYf(qW}n%5kjir(CSpQXOyd&&B&j*IsbeniGrL|V#Q)kzp^^q}W`YsXj;VejXA%hH2qTMAp)aEhcX(pvuw*XE@jgH?=K5&#tPg2M!3%yH~^U zd>-(tou3sGfxgnTilE~eOJ3GRX$b~#<9N`9XTY~bXVFfEaVXUmyvuG;e?)GFlQrUB z$BQN?`4n0~cxHeQ`mC>6a}dZ{W`d5#(J*I>P#^;QaW)elHe%YpaM12AY?Bf3PFj_i zm+!$BTuK*53ns8UYWCYcadfOsR9Or9@r+LZ+mO@)v&IHqf1aIgN(?=Xz2w=b6x zL9o0p#PT%eP!KZZJ=;RgqAJB09eB4aO2JYoY@MDKvH36c;Gg(gWMYeer4e6rm8urX zxU?7uG4#ln<`aW46>F3lIr3Hzh|Tug&@)OJX9g zQN%FL)s6HO|Dp~MG8qGl8q)_6$n#0tu4#-6HMq3kbi%vgkNxodZ(r3Oh9gI&#*-ZE zt=)`KaSL0%@H(Wqv4B~uecqVq-n&KmC*Op>yTnMNc7TMdMq=q|fk7t*W2&M(xMQ`% z9=Y@{f+W!TJxprIFmPTW-m$)^l+NJ#_=1~Pe)*7F7rjjFOZ3Z8*bhRK{8r4SARWab zWWu}05Qks-i}lh|6YdK~z>I5gOD+rMg;7ykrcsDIIQ+MF*_XWU*glTnTicizqE0_X zCpK1~Fx|Jh`WJvPBDQ%EIS9RJE84fTkR1aJvNQQ)zjd(~`$d?uR}7d|G%w(B7Qx2x zLI^zlU+mH^#*tr9&PZm#2nj?tg|NYDyN6>1G!b^8phPdI>2aFZqa>K8@oQog!dEaK zRL64|%X#+MP3j8rk=swZ41Ql>n7Mz0?_O`2zZdwpDWf*g9yyl^OLK#rkzb3wAGBVn zzuo1onYF-plln?Ds_ zDXqBkRAYD}ZH!2Qa1#$gyGMeqi@A;Cx$xdl~ykk5mzh25N9+9q~A6e%6WHDhuTT~te*1( zuSauIT3}G|esK5y&^Q+*y^pDRwn}7mL`kaS?*)k*N0^%cEIlB8#cA~Uu3ke7DGLrZ?G_@EMmj49eAQf zs?0OCxw8ixFW6c;B9e}+{|?tS4^uj*KB?9&sN>#IRg1)exUghT94t^%n**P(fvv4ZOY(>}h>pxa@K{PFX@iZGP**aSt+=l?irnTMuaSVZC8DVRm0X+AFt-}z?EOCJ+9nM8oi z%we12&hB~+j-1PsVyY~Nlzg2VF^(8UsbYmS8*5McdZy++nu2-cz}!9{g+-=`q@-f` zS4&{FG$@2rW=fUYEBeG{Dqld#Ih3`&QJU{skL@Z(-Y#N|lf7E@!tio?V#Rl77@Obn zD`>QAUJP*{WiR`hLN=DVCQjo zURO>6vVTEBnHDVPc6A5?BQ$!p)r#V;4k)LxPuNyjmF>vCXqsbwIn7e{@LJRp?0IeT z`#4|2uc*WTqJ{)Hi?E zBG>!SjBrw5-JbORK}wy^H6-Mm$X!$m;y$u_x-F6KQ++^9w_m5!z3KW>HfAH@^bG>o z11amjxRyI@t#las8G~JV8tmjm5dFeM2Y4RyTu>f2*g%Jqz`Jg0DsBNxEGVRdEW+yK$T&RM0(B`blOj z9g0rV(9skSFU|PVqY|L4Iy57Lz3u>tJ%+$oIDQoV8*gQOdPtFBastvIQZ53ImvhXD3Ko9mfzaXOc%S?d2MKp`zb)a!oHru zRaEVb#vZ#!R&mYf_*~z*fu5$QXRkUVe_DXdxMvt!*FsjLD+Rw#19dt=6!iIcyVIBq zh+Uu6k6WmiJn3LnbF|E(S&vva3V=#<$(YBtz%CM+<94hBS;$)k4`G#af2EIN4n9k( zMf`ykd^B>LCQn%t^Yr!7HR3dRAhm}`Ov3$6g2E^aI!~)j7_>&NfdY|2*HtDK>CfRa znKqJSkytKj#QOIw@tpe1UNGNh3)Niq-jWK!8q0g~ftM~{apU~w z{;EmEk%i&n4!t|jQua_rIlFIt6wpM z(iFL7ZS9{FpvwNe)>zP#BOXt_c|w<=Tch~7X%0rgFu$>x&rnNWz>6O>i=!dm)}??u z{|+{hqT{N3w{ihSZuU2{wRiwao>O3VhL-dM^u^4>f6 zXu0WQl48DaGm*xv;+We(9YO&I|2ckn>^2_nXv6Hfq;ONlrF|(Pp->f-Heg&jy}EF2 z{~C+dOhJmZFNl6FUR!ht0(r}7#C9R6v~!JXT&Xmls3s)KAsBijqTlgC(j%Q3am-vY zvf<%(Dp{hsUy3D!?q9O+tF<#WUOA1KJ&sG3q%l5PW}12aK4w|}_oOei45VP*EBC(J z7Xe zJA%C3S~BM3ohN#u>eP`0~&U$5WP>)i(#Wn z*X~o@i!!+A7>2s+=hu%EiNegDLL((IJWS*`LJ|^murdAL=XJ$s!p2;1vs_yWKV9Rf zI@XGHCBnQuvHi-IV{7;y76&&?EDJ@hJCi7^W^%4O@^G@KGPJtu`iVKiKMpXK5&Kn& zCN}a)N<_J9C{NLSp#d(9Mj9l~cu2PMb7aVQG%%iW#Dm=zbkWngCVFPKtnmm!5Txkx z7Uifz3#OyoxJ5;ORK0f<*w1sP;O#zp zhZMkr;(b(%AoM?N@7G2`GU|cECc^X#bYdj%)=8uBk+a{tPnj4{|3wfNVe5b{a}fg9 z6=XqUYErsZ22ouMNOi{HfKQw=hDl=WL!9qhna#epUe&}WA6OvAS!PJRK=sTs=BlMY~ z=ZbhnizbjedCk-NN}$5)++OT!+HZyF>L)oVsh}VjZ-~RM7{TQuw~<+QPU7Ww(jZA9 zvR-XJAbW@w&RH9p=Zqf8(N>6h=I^-!D zW~90b*t2kngGZ>pOIoE|N*GX>EC$W%MNzVN*9N>P)Aw9%g!YNxPkn5sA)hHDtU(!DTq zELTo(n86s1;Q?Ol;F9-uX;@wDW1@6F`43D*(^TMm0ouDnT{HdZjyVP8bCuxUTtB#D zZp#&#FpCJz_h+}O-rTRJncnY5!tW0+nCuOUm`28MLGWZLI#0FiPeSApoi(n~nk%N~yWKJ5Z=RKWR5-_yz@O?nt((x4&CtAGW>pDF z@yO4&KQ=7TtT7T#yuG|8^EXwFaGHF&Ta)u2UFp24IDMgh-5m7#y&oX@eecb8D4NX7yEK37pT(2su5>HU{D61Oqswcd*Su{ zR{Dce$aHOvG#(|TtwJ!Np%h7^2i-VoO(Gm@s*xssYO_sf4c}E$yud>;+Ytb@G)F9= zR`v4|=qay&MsBfO-d4!9mk6#a*3Ti0TZve=L>7Jzk%?QSp+dom!fhvlzv3#QNB}n! z=S=KHE*ppGER|y?kIsZRHnIzbnpYE(k|V3^muaMxB7JBHH>j+WDRps!t=0*j^%Of* zN6v>t9{s})xxpxq=*4T}&Eq?D1v0#)>IGYdjZbQ=2>@mr`ZGWa2X+Ak!nIK7de|cM z;KitXX4)_^Q?Fut?av(0MMkn`Jr%ql3U+vYTWd?w4e6?7ghSuYTk4GK;7Ffca?m=& zX}-nv)!{s%uVFQ!ukyFhw&Xy+?ouu@Cssh)+WzQpDXC5?_IHJRtESWjRYQBKEuguu z>zVI))gxV=Gf~hJrt8)cn~|~JKInP`8=3@3BhJ?a^=$5%`KrruxIbq=w-r8X}tXL!ob3BcLd0Z!fQ%X`GQT4q)8eLQ} zpI^*Wnq<44Z3aD)E5A!doyr7{a)xz{avEaS0%vc;PPN;eMmIq z1nPLux?QMY1+Wux?o4i<8o4&(xv0lXd4$+Ko;x_eADxFk+(4#D0}XC9R){YZ$p_FiL(V27RuIrkm(nQd-rZ(b0= zN9b5J-l6*W6h)PYRW2A_FD&TfPprnydN`*8PK5GMqsK>Kldc^o`s=3HyEC0MsVP=2 zBO9T*ueh<2+6Z_}cB1oDnDl{E3N0pXSbMLnBS5mf<*MsVECF(zGjBXw7xVuH(}kR! zzo;x7cXrYC#Yi8MUR)$m+OZ;y*B%nqO&-jTf1zf>|B}(xYbLWm-)W!kCo0y-*=Cz6 zO-q=Da03zVh}C$JqA!$d^jW-3p03XTb2;H{Bctj7n=g-b+N&YDP-?Q@TugFiY(HEXFQq3L!tje&Oh^NU_*uiv;+-s zYolma94FYNVanq?)0foV&ksM_jIZ0JfuF|!Za$X|Dlh!LUKVCF3Ue@h8w(KbsSUE- z6jH}`(C8Z~7Nh*-6Wyn#Z0sWIgdhY2o@)2lDskJ^a^xC zCVjI0BAc?z(JcEq^Sj`%$1U*t z!IsKq^LzDKJ%5}%am~(2kaa&&eL4GeXcb%cSbKJK;;mn8=G&}&y3C(LQeo8 z6cF!*PUTT%FaI{8L>cQQYaj}l!DO+5v&&=<*I7OtTBUYG^w{Y-*9^8|c0?GTGkhPx zm7&H7M%VB;%7K3Hrn~SibUK*{(?l*(F2F9&91dFzRQ|F3e?0rs1mIFLW~n{P(|SuB zL-#*}*9qz(=Cs+1H4i>bAMskY2ZLhj+Je?B(&w2ur4vtKu=u|ez7%rBYZUS@!GF5` zy=DhS>z;EQxj6$wWNMi_uAX^Zdw3I(1WskcXI>!T^r;+-X-FSIJz)#st<;zVy5XJL z_2}diC6pbqJ60#iPc73cKWE+k^>_K+OdvOz-a6B1P2`K(1a?Dv9HV9RT_SRiSU2lc zY*l$uW*hPDL*|hyux&G@C8hlPz-`CRcS!X9inXFKbaS=WG5t5cpoZ#Uf%Qmth+kuS zoMNpY!&=UVfNh*eWXK{8v2O75Qn=$obpO!y$Pl5i13?^$L*h_7yUF$~ONO7Er)6i; zfNM?rqdIxKdiz|1Wxi{qi!OI=Y3?8>j$0&u3Ym&gB~mHOSd!aI?GaBP#r?$n4*#dC z_w7~8bhme5a>CK{M5LJVuf?u}=elx=)z?u_Q!OaXs(t(0p>MWDDoZsVlS(b&UhjA)h z)pvK)@ul=A`yhB2YMIaov_IA?+Z?}bwlwT%P@AakmK~BT0S|bU-w?=uI7mApx*iN5 zxdBEIky>qV`{FM|_f-gzrf7M74VUDz2nn4c<+Jxp2=FoK{ZU7pI$N4;Dg3wbDGhCwR7=NS%Q8*#xPwU{EFeDsFiisuPR%KH;#P7I4JS({4zcoWtk z_X&?eOm|MDW9Wq0FUCvQG{fI|_K3%Zov97FQ%F8~x-Ap%au&nYTu{aq z2uw*2^^)`!Fdfgquq@4N*0}B&@TKwzfOpA|iV$!^RXPxz+h^6uMDJlARt8Bm?=wV# zR8p(ypyi?-^17tv+b<{a%Q%&)4>+ zzV(b`T1BQYaHBoM8PvmGWh|Uzlut#Pg0X&A;2#BD9Sx1}_e6$htD;k0r*G&2Uca19 zAdDI|8BYl1q&H-!_KpUNtijYy|iT$&I+ z7}Putv}n22ru;NCF2?9TQ}N7GHw)BxFLpnAIg`;T?CvHNZ(df-$8wel)@@G0D8jm` zA;cH=uhMg>82RV9A=7UM!pC;c&9j_d>X&Smg01^qN`ep(Ag&6K++FgKWN9L zdS$WWw-@x1?@}(9mMC7DdsNxrqg2R&{p<%yc2D4Yz&^z8ZlG|gVs?N39>UjE-e`*h z`#850=B~3=>$LONw}ikWTWHDW(!CHJPba6%sV-ysWYCCu5D3~aNeyY|*sEpFSKr<7 zd|-tCsIO5Ew@k7kvsI}u#$MWU-IN6JQ)A6iD$Ks0E#2k})ymo&l$Ord7@0~Z2mM4( zFWD(JmAZz0T3*0EUJvfZaMlj+IWg4dUL}O?AX=2TY?S2cZlCyh2!pJSFe=?^Nv!iE zUy&$F%y`Ty3lAv7vPy1@j{CG$9P+6X@7J?4A}5t&DCwSVLB7oJpuHgqTKwNS-b0b+ z)iqH~gGY#L#!RS}PdoJ|s>#E&PS}{zOptz+1#lXXaK90UkOJ!X*ik+JUn37lGki)& zvu|pqsAsLyofGjvy4Enx?|#oR(oI3B%23Mf>9LZc19@ zp(3xekj=6YXHJhHMRVvuNgvBS_#mE5?VMcbD@^qxw8OxW4lrG$I_kRFRANj=eoaC=Au@1{eiS( zY7E(nuW_%5AWns!>5z%;X*>sC2cNQGKS#J?pY?V;c6E=ydEX_-2f2Rpjn{#T{AU74MLrO5G zeJQP}PHsHlVkpQwPFZ3Qmo8O4g5FbxSnntUB4qT6$%MEl2@;K^EycI+T+1`_-HVoPVl+`Sk3G_woR!BvTN1qaATiv4?_ z{)bA!`u>ox9Xc`k$-_g5lY%@Qu)q~i=TJHsM+;XpdPhKrQNn0EaMZMX$s{mfGB2Gw!3dN9TG=J2pxHP$)Ss3ao?9hvM^=~ z=5yUKN+x4w8TJ5!VBkZJ@R$S|<;LZqQ)qPCvo#Rn?h5>Ll%eLiu9sNuz=rB5;FFY1cgXP0h~Nq9dYN!K=X$N>=SvT7*607IXi=Zw;HC?VMtfu&3dCZ!87 zJ9@zwjf+wz(Z5I@`QWaEj`d%i5vdwB(fen_bbkZZBa!$oQ3{Hm;VdNt+7&Xdczrq9 zBo&lUVY!=jl5)4;z$64bas0ec{BT1IEs+m!hJixAh~n@%XBU|Cc5$XVQF<(+tag=% zDN>BxyT0#IGVV8qKWm&~&>b-6z)kjhzdsPE@89Jj_e^%^VYVpq)^!efY~0$Yrbtym zfiUx>EfDdrr5@ck=NR3Kh7I<7vMBu*q-SoUT6U!~h_oV9xok2rXaWKJsgPUeJVF|W zW|z6|Ks?WBO1ey+sz4bnnXus~{B!y!5qMR22OGI)zn$Z!Y4*4+e6px!0&g=CwTm^<7agy-};FHQrEtAXyM=lh( z9qbmHC&7kAg7)!^DDGog@8O3?xCa#!I+HVZP{B^im-6ZibfWtPLbM@zM>O{Lpg=Dd zUqQeb=+&JHo;bW8AQ#~h_^|fZC5~%Al_#~*yRUBxu0!5d(s=B)=htmg^+tZuZ;4s7qwY|;9g z$DcD4Nti$P){6eyf?y1uTia|b-k%kr*oY^eD zbl07vIMwKgAWN%s*xL|vS}y};TpC0nbJT7f^I!Qo3?>it;m9r*;hvO*w#@OkJTzsQ zH#TxQACu)a+r5-Wz`h7H>3-QzjYI|L9?~``LFy>dGfnAQaff{{G*-8FViTjkLlX-g zZ-kC*j)KJt8f;OO2PhEkq7H)`BSi&?=oK;IFf3cTf+fi9MpF*21{FM1lVJ#r0R43V*^A@g?<2vn3xbXj4Z@!Hv-4X?jc2=Q?yYA#zNSTz9rq~j zG`~bwhs;(qKcT(Cb;ydyg%pzvx~AnOv~sz2QCVzQEeR4D8yY@LS+Q|2ZJ%Hats4UE zkD-7l=_HA61eB*v@?j;6)G*=lAo<^{(q*u0I4PsErx^(S3**#nzAkJGOL?eoE`iSO zL$6-(U=guaQOpnwd?P}11_AIwAmr8kp12ekjOzB;;v+NNAHNLG(UWd|=`fKq#~d0O z$Vg*-UDyOWM8L_dprH}$uZ9F#P^Gl{+0H)j!C-{s88~=*KLQy2K1U?K-%ffzW3=Hu z-Z#D@d!uKwzmkl|mE=<&-(=kt!62>}2X6v&Zpb~ky0m7MF*6)3wuvZsNB_P=nuMvI z`OL~cpz0)no=SX@EgJ68w2%+co|XHRH?2mP8tHHkPNYb zkA-!G7UEW{`k!rpQm2r3-FI#JGwQhK(6TR4d#&VawRR-Ny~1s_0>+h!D{yqxV`Dk6|+vU#9{qsqRs>&Y>;WaAYX+@?k_f^O#QYv`As% zP@BQyf(=>8_N#`Lck|9%R<7r-aX`#D$?b%iJoRO$ZL;>u8t8HS=RJ0T$3A7t0NOEX3ylx+3}M*XrCF zzfamnGbs*0YKvk+O2=WH!EEiU-4mwe>&#YdAY!f>tnC6IlK;R<# z=j3VO<7mcEUQlMukOZXKYoP(p0(ya*iN~?X15Y)~Mu%g*57E*7TNN8rZY32Mr^*Bx ze~Og9rmgFhq-)qC>95C;|Lh8K_jlUJBNo)^k;BG zo!Q18b2ylGkrv1BS?4m<@j2#n8uT`Tqa z3SLZBj=|pJ()dd|Mn4|-X`BOY8?YcbzG%2VsU_X%wmIh=>K)8f(@E}+`WlqCB3h`K z1RO{^0ViNpm)r|ujG75VP?v6)NJgB-sX=Ae=0Bx{Zag*YPtgIJs)8B8YCY!6y5sM( z8FD1i!l=m`n#|}4IK}5e4XNkgN}SH@Rw$-I?@L6JtD>%%E}Q{yz+Y5bj$L#zadpgO zD^uj_Y?qs@XVV8h>7OjZg0_Ry;c-2YMcM9=xzLsgOl0!iQ9Z;P#lv!?tJ(h$3kh&v zoK#*rIHp{(^{Q-+i6pXN02QHgPsyX+X!n?X(>if7IpyMgEoHq zw>232R?0-pnEe7Fl}27`$-Jj7;6Px>oGuZ&yynJQz@@~UD<_-U#AJ80l2r3!Pyxp8 z@5pksCKMj~sw_^O>T_ zxsgL`Z_`$%ra7TSk8l=^&Z}Z7*H>(kW$_nOoEx4;T%OL2W{7k@dPgzOm@5aPDvP-+ zgDQ&IA+?gXR*tBN8YP}6X1PNC>BiBX;=GS3@`JMKd=HT2Qub)NkRbiL$1jUJ1Zf{( z`8f{Nlx^6fk!Cy=l1`pUc@7*{+DSpaOz+AJ0FIyLF`St>@R0Sk+LCFIAs?` zjXKOZC_Z178<3!wBpR>D z3ZPX_Z>}$q01apZCoOb%ef%&>p}1nRw~{Mb}qF#n}XHCLut8z~BypJHZ`> z;DftMa0~8EaCZ;x?iSqL-6goY>rTFZcdvFYIERbp?UJs3s=B977kYjihXdxQU(M=K zJ<4>7x2w!2m~-9>#wxN)1(1V46(Rz+%z|l%;4kNxD-ol6zGh#C%G=aMo2@|t1q7v_HSqcv@dK%(6W20^l6B`kLB*<=&*HLVVvF_Dk~o?+X{kChs#61 z9c2mZ@+VOzeAj|kB9TCS`0f=@$^}zh#7w@*W4#wQW zhaDUHC*dC$*7(nKn7-9Ls5pydeJ;w+=*Wi|;!U|<-R3D|u1z(05tu4GGNp2Y>+^N} z*Q`k}o!O4?h!=M(zkZmuZxMku$VnbS4>!-W7Hu}Ux*B8}d+P2sS2SMVd0qyO#kpcM z>(oz*C((zR81@c{a1y#^epcE{zx6rQ3;D`iQH*&DniGV4cs)5^i~O}zpv~kNQTcoC zCjDEl#H<0_68|%r?Zu_r2XyeC{Jt!AbqSv%5oT=@sG`x~mOQ8-%p#U@&!ONI2D+G! zN5AFzudm%ds~v)%O6+kcPS@SDqSg?+@r887kF&M7d^J1{7M^^gNxO;a>b#UG7VJJw z+iR9|ss`C6?wj!ZjUjX6^o?q%^GXTXWKcvT3o;LqlxjAyd){xxFj>&)!h#cwih&LD>c2=o1AM5FOrBI88%Mq@Bd1=ZIF|ChEn|=Oc zLcMB_t=|YlVX?OhMhz~=B~%26pepQ!rK3m34Nxn_k)xAND>gcRt}rsL7uu2cjfeDr zQ4W6FK@XMx)$_P}oQ?2dno!>yqxc1Ei>0%8zKI91uEXi~?{SF3 z7b@~t0qdEc0({}2-w1VXo~5w*t|$~9*q_na4nZuTJdH-nXP)2dq85aMHdXGgfXp!_ zkDjRCxJwr}d2&VP>^$bw^amm}G1>(O?li7j9c{v6+~ z=v(5!%s$UHQaJ8%LWXSraKv<0v3IGgoA`%5#*vn$D#ly&zV+``?M1S-QC$;EeebOy zFqN6&2L9TLE=d#?|}m?-+Y*4ObKOigG~enH`BiWw#yhyIm;}2I$bh{7xLPP zDUTr>%&&nKTk;1t6hS*yiXO#1Ru)?!4VM9>{)|d%^L)K(6W4jfqUV=g zCj3I)I`Mui{tB90;uN`hQc^Qniilo{>V#pvCAfi%CF!%%rc|*UCFU1zra>7vAo!bg zcc*QpTi_eZzP^lV@Kem^S!JPFJ3o27vkJN}pJfF@G5MBMf1<+eKZ)DVB^^ zWN7E@Lk5vM7ng%2g{Nr>FxU)=!!E35QN&Ws6TKgk7`YlKzbw6+uOo)T3+2aOp=G2 zxUlj%iUvOvx02*u@1BY;Hc9Qz~*^!La>i%AEh{6q%xAEJ|}Y5t}^5oAfd zN_|UEDB$s1E>sAdqqyJSDOs`eW|rHHr^gUUTKql}SSC@Or5m@MQCIm}KN$hRc<_-K zBY&+h2YjFQlhy3UFRNL6iUm_?$c6{kHiA9JH}i*0((jbnPdHU<;LjAw83dWS^Z^fv z-KZctw9J(|wK!K{WxKP$fQ7cN{!CfT|<_TO*FKp-$C-fRr%P`j$prkrubu7*z?jXS^W8vt{5PGHX>^M z#j=swo<{e2IJ~TlIsmOI;6=DP2q_o8pR01zf0x;&O*jQ^V)^`!7i81AZ!+w_(vfLj zJWZ%waw@M?Vu=I!%l@YPn2tyK0%}s~^ASMBHH$;XvK6s83;BuL)t>+6U%A$8LbFCd zttWWvp#&UObGxPV>iaFMu2u9__nui-dz`S|P;udXsQjyYV1Lw9ltt8>sM!8zhj*6^ z!A%JVobTPn{SrF4{OZmdSO-1gG(~j_S7CPRO^w$1C8ko7dTwOj4_dn(+r_dLZ-jv^ zXsinmIXwjXv;^KJ+VGvs*Pnga)Pw`RVy%Z1={k7ZSp3Q7#Z2MlwTNMpPb*)YR6DFj zldrClExY}hDA9MkV>jksq^8)UJ=5{Hioh7?s@$%9k94l4RQVGvd>2Vm7&gxzk*uY} zTalKwZ?->DWI{_tqJ90vn5KH!v%;6$<86XmW#orHfnxhv+cgOe_16U9-gu0Wb2?%5 z_f{3#ET-_Y{G<^uUnLH8g4!ua6^9yBi4#YOi(^ri6h4bJCr_pc{6WQtYBCdEPPo&a z=9d=U?fFXYK%9f}EeP_X?(ADjD`MI8fCcixhVz(F-p=vZm9qHUnf>ka)#KZ9#oGBu z450zY!@}106T{=r+vmg%?fEL_ZrZ9^Yy=MIM`N9Nj z$EDYz=DFV}4PQB3`R;8<7!KmN8^MC&##k|9y!@X^KJMdCQ+iBia@L&EkUyiXzYo~) zgzumC6x5E{0`im3-ds~%)g^PWQ!n_Em3K)Ti`@!2o6_HfNQ!R11H%N#OM=#OPdlab ziGx^|5}GraokKM%#px21*Z4bL;ztsdJ-EUh$m+zdRi^U9m#d0@Nl@Rtt`&D^i<32)*ir5n zrLk&PV%sbi+^+eiOp8SmHYbxe^y>u}H-lA=PE~{Ip#|r62%O>dmJgf)F%4|A zzr|P1J|3IwxZGoG6Zi}#wC$tV5_n0_^nnQ#;mhL!cD?%BF?l|=J)uqVXDZPrDTph3 zs_eMmPF;;N-G(}Gh6tJu!RV7pbe&7|wQC^m2KF;x@C>xt?PEVaJ;MAcwVB?vPp_nL z-X2(uz|PRTa0NWXW$-8}mDZHMAC|VXePi24aKvmSl_3aaK|p5{Z^C-)=6SMU(B@XK zG948>3BDdCu!XD?x}u_)-RmF)xNpuqS|`B~t;sO{TO#ycvgT7nH95yaw2Dv3Ot+6C z&fIUk0mGFMpk({S;zkEAOYV^n7kM`kXNH-l}s+{ zR5+W*He3--=fAl@l7H>Qq`0#WYgc{z3P)C^kMc@ZJ+FFPsj?~2JJq*Iv zm_O8|32EO(9X7%JMxz0QJc4a@VpNc5bu4W-g^;eRDPA6xoLdYV=TrDnRZJUc5|u>d zEH_OG=7E;9+tlGHekJ@j>vGB36|@!?_Mhl7qLOQ)u47_TmW!{4M?bRclj2l6QmPi} zGCP{<2hO#lL|RN&5lF)lUe21&_it{I1&x31W=T4K_a^i0wov_JPV)7I^-*Unp*43I zRG{Zz+v(_X+Q}%x}ti_lvx{;q=*^570t<_3A1ATRDxVt%{d-qoRn8;{XbdX2rb$BxDGf-b1t>?A)cv z9|g6~*12kt`U<#A-?v!(Pw)|QrepFJ+?%p5Q6mXhH;R>3CJv-e8QT=~n`&BSGe{h- zE_**lS9KNfwXaV8!r>urw=WcixO%bK`8Ct5!j!reekideoh`R=_nBXbyE@Le3H0uenci*}I@n`h!DgNlEC}B&#`ziL}XCE+d=-x{42Q#+rCe({n);CsV-lc&Ad4h zyLKyO^m!u^rHXeaMBmX8x{~GB+C&mJl-;Y_*W9Ge>;eyaLK#n$HMz7jkoDkrs2S`0 zuIwx3Hx4D)ljc`X+(7+-Drbd=sPl!OE}p%3+KKfKuu>JiR%l;?E&!wp`aQ!>;!KKVed6ksI|k`}wcVVqJDt2GDf_rM3rz5?;&1n*eX zdOy0A1np#!%%=zBFhuN6Z!@oM2_s*9>Gs_aFDF(^LcN(&6JCkcf1ZQ>;TA23T;Y{s zI45yWS6;)1zQ*ti!VV3UwT8k~^_)Wh@d)w=C*|tZ4kTz*GjUuy%Fl-5LAJy&RNpD} zRCLI@TK8l*ntwDLHxtFIBt@<#q~S*Bw)Iez1^vaLbz%=j(vN&z1<~HSx~z(|AKC+7 zlGhLF+BW$HMZWvoNFm|eam5jz*`vKb{iz~}GTH?J7tTJx^V4b&wMU3~H_Xpz^NlK`&GC88sps$;EziPZVM6l=Ss;gsSB4ad%Qj39>+UK^&Wdtm8sE~>hd{xENJ4w=5a-@EB$&8ZX2@Rw(^(Io@y zQhRP}z9)mHA|Mseq9&eH5)&)dc>!;7QS5c~m;OzmtukP%>}CJ&6>w(drL$>EWB4$v z!5P(448^s`QDPMdoT1=7jqxwoXc45nocTDAp zW}cqEizC6q9p6Thz&H3o!7Huy6>3geAQSY*eS&6ELGrKtb3M;W-v)>u#1uqY^qD*) z$Kp?xjDs2rn)=JjC5LQ6E^q_SEyl?7oRNq~$SK~IBNC|d8H1-;;|*^N{w@}=&-=iH zw@3%sm|Q?M>2rc4j}`#kM*U^!%-<`d_ve}hPIlJ{B-0gKlL-ioq>|fD8qxh>7R#gvNzs;vbZ8aO>4eS$*O8C0W zaPi1B)!mz}>(-D6IEk@f`owf;+FMk5Y=u{6>5H`P_WN?uBDgiv4LWdv3gX^~akFnu z{gM~rK!Q(EY!d&C^LMl+>!=VxCJH*_yfRGjshHX`Hydvb72jV8H=M5F)?yqoFQe00 z3P&;*AIQ1R6Hr5-A-A68qB3qP8J6Wxq^7RTrn4Ryxzp5fmBx&_4yTA_ES$W#MeNhi zC_g$2!v$Xon@ zQ@DBK5`F04R;Es9v&#J=O%b^#-&2Gy)u3<&%_JO_O{TExv5faiAJ7CqlXRzYDtL_< zVU8eQxq=2K*9MERGINMx1PZqTO*p6_o9qgt1riV%{tiC77RSbQB`bc+As{dzClFX1 zCN`OB`_EEBrBhz6+ZEoyx;tJu5Tm@%?boNs;Zf-h&Vlia=bZG2Y`^4ufjKXbqVzPp{&x>hX9aUmPo4^fHN_Zouu za1Ax|&#s4>e&2u5DNU1OteX5?#VkmA^snx=s%0(ut>`;bAW$H`>k}&jSCV0BM;;PJ zomJx291%e?u@pX;)nCWlU|gz72AKjwZZSeCA2I7MR^svBBwNCBU=8*M(TwOQ=O4f@ zw(~ZVb8{%)a%kwJR0p6a*(;pId2MTSP#9*!#;Z%WLs&%pa8(D0#wGlUux;*$X6!FJ zL*DoCcv#_8;bdkO3-)Ke!j1*mda~mI`v0M{dW294ggZ6SG*n`5UZg6l}_#H|(&8 zIW6*=FmHIQ>FYAxeJb;P)+5lfa%jQW@h?iUT#}YmS8GH%)@#6y-yxZrW{NQ0U*c=}3i)B^= zfm#7ACiXy^>LhVT1GIGh{d}|L>Qg*q5!jROY3xkxew0P3LyKXjtA+;XMahXqm=?D} zQ2AJJ%&(J3@%}64E_i=;E^?^dzu!VCCQo)zpHN#hcnA;Mvs5h~N{BMl7^@C8k5W8J z?h-QFx-~&lxvMXxvc>yK0fMV z9KB(nw%CE{z^#@51!DOx$_A>?dS<%_K|8AF zr{}V;wtb5aN`3ROkm9N6gAb8Lw*x72Gj^(jX5pAct8f9uM5FZmpQWO7 zQ>c^%mSN~ObfY5Rq-N77h9R@1Id;03 zjO2@#Nn`SzbD@H^Rq@^B#ue~KByru;f{PTCK=BZ52>BJaoYtQx$}^sokD^aB1m(_# ztzW+Md4v_4TdqCE7;tkSAZYxfVxCcSZ0GdH5T7KKWMU4G z{s`r`T1olkB;3}jg5~B7cH-er`%U2>6hD#!3?Vz?8BnklMt5vD%>BbMB~F% zT7EcXWiRx>NIytAc=u@2fqB_=I%!(QHi?jTLEtOHuq5~BG__Q91tNzK{;qx*=7=H- zfa8?r18ecJA>gLArcsd=H}vn2vnS1&LWdI~Fh{7|v4t5^lb2zK@)a`<$V!0G!3)oUu5DAGH;t7KnihRs7^>akX_sm+aH8*fm zu$d=h1@_;@D}*yKyUSH~>H>~Nzr{0jG2nBPTn`In$}R9VZd!wN zrJOe1j+^eUSK z8qncbzwc`B`GGzs?*vqYk>kK{p7>EF4)Cuig&=6&kz}F(DOcwM9{T8EMV$K<)#;Gq z;LCQq9_kLnqmH;1i9ps;7j8}yVZ;5)0+%Nr$TNk8XBh_taV9VLhKeJIh-plq*`h+& z`<36s$7DTX&vO0%l>R*C=-+UoWii)ym!Db0*n$0yYwXLrOlislX^%G#(ZxvZ6O<)- zBotjrp%R=|IOc1Sb6pdjRQ*A?ju()n7SyYF`ocof$G+PINb_d~k{o^xqI79FxZhVJ zeEH9xye|Lz*~^U&GAywNa*`tqj=Wtr(5cb>1ct7tr9b}%;)ay(5T_3vq5zo_DgkM< z$Yx?h$fCFS)^crDV-J%MmtUvs3MoJR9tK4Lr28rxmjkDn;Ma1|#Ru`+9*Z{Uq0)LJ z@;pJ1s@ul+QEsjXrf?ugD&oi!Bx0?oLGHqQctFvTvv02!4%t>*W{c)>|FQa6VPOlI z81Su+;!BZPb)oPD;(#a8o#uZ&A2Ue=C?}ZjL8eaR-AyIRbF&u@H!Wvzu+%|`l2fG^ zw9kSGG*>F|yH?*83L6QMN;!g}%qK6??4|19^q3aUS}4Z>{s!cxPFQ#p9VxM7>Uaz) zm4Ixv68vU9ToO+Mezbl3q)}~~#2*-V+l+z!?^C4QW=1kE%e zfP+aVGiQ+ctNyT{Jsl$7(FHXYld(N0*or;QFxYq2lAWj6)RQXC`l)t^VuUA7Im`1V{h!w_1EL1O(DU_SH1T7> zy9WtfmnPbnXoE)HpAN{QEKWk(kKxtXWlpzk=Bh$qK6XQM)pP3!4(kC9*j6lkD(e#S z8;{8PQs;RN$U*?sF3;VNonJ#jdMDNA5k15T-l51nm&6eRc4VI5M0TSA5BC}e9%-$1 zYwijQzQwVxv{BOi894x}m5ZP1Oi1?=v8Ut1s+H;HKbbDKZKmRJ4u48Sqwa_mTc6Y# zC~9ag|o4>Om|cLDBi&j_*qF`M}GhDhK?TVVuysF`WiOu@i)3uDi?>5Xz&WnF-NH zJ4$y>levucm{|)Ng!7`Oy>5y{ix+dK0;G7DR^+bz3v~>E!y2pfO=R2hFETgDU@yTp zPGbe7@{LRb=;Q0h@Jr&GY{i_<4)tf(hh!r=sc#-6mO^aU%uUt@^w1GBE-h;|%^Nxa zb%lLGtoBB>Dxg_vHNd#h?)11jbdFecK`Vd9rl67(;(U1uT`FL^*{YUi{=P(i%)Jk? z07GxvH)6?2iNTB+N19}wbqpg;LIxnAp_=kG###V|^5K<-o5x^$HOM9h^OFooD(}RW zNbbX=TK|&=$iRb&)*xc*_|3y@D!Vw`(UN>ufqzm$!<@~O9D{J>Cid!ZNs{K>?vQ+! z|D-KXsfZ5UI=WFUlM27pfpms_ZzQ&;Ezju7#yD}O+4~L4yR9`v`cFq^SrG;N*zb#X zv^sOeViqIlLwg*wTr{nTaH%BCT^TY!WGj8QrmsD+HrMn+Y(Q`j>qujC$2Z*NwM3@5>*th*cT0>E<*i$DWV3dZT*c!0n^0i({qwNSqwU!gaS;TG zz0*lal^Ig0Z^5cfHz(wtMC611DF8&-IzIWHT*-zZk8m{yKUUF}&@xAJ8QRlk31t8W zS(sBgI6L9NnZ61IUB=9K#-2M|hz%^HEOAd_nJ%aiqFR{3w;WyeeKzE#YbpxN#AZ@A zJ$;`SgOsA`$BG#`Ok-kyvEHZ?<(4wMM5z!{OPM0>iSX)~*^I2;l3P#OH>j$@gBMvx zdOMg@obE}IpXr+jbya3_m=L5gcBsbNk}`w+I$UCs`=^8S_8_S^!;>h0D@#3$2}7M0 zskPbEt|gbPu=n=p8q&hfU(qs!tQsFf%61pymD;=;S z5feJ;2yd1TPItT26=PUK)98 zBL;6v=4NzOq(9Xeq(x!)V_>u2Z5eSITa2c8p?FS{OM$Y8Z#hN~A1+u4;d>6#MyHk` zay`yZa}KZpJ~eG=1l1s@kWh@-s6J{=GK%DU8X%#czmQphdYcyMSdW*-6d8{(-w)Ck zJF+EHRC^X4hD+N=kJ#c-=Q%=Po7Q_(@MGC%#0Q!(bgdf7asHDWO^UC1E(%Jhd~0@2@qou@=&;*FLHIYpy%QqGZv5y)wU z4Xlh={%Qt_Mlx%NE-ta~o0VKmp;@6+2u(A4rqn`u6d4jSaqDMZ8BoNXT`E`s;fR!Q zuk1oET6|u%GHj{C6UpKBja&hs{}!1xpDMnso^*m@6^*WuSmBj=cG}rJlgdA}m&ngf z_WQa-I4m@1dD!<8Hl{*<<@!W>s#nHREP=?8djZPVaM%(EKK#&` zRy#?-1uu6Y@%55-;!^u^uP*lvQ~vaeWqzdVuxFc*#{& z{EfkH;r}QEEd!w>JQwJV0(}SxilfxkiRwp32&Edg?FPMDpu&ZRaZXT-CCHpmE1SpKE}tm`e?-1EAUhV_KfQ!Ft@eewG(AG0EAWO!gHIn^ z-~^!$x(Ydx=8hlnnpaWg#{^*}K=3|PlNDI~_QYLzLR5bYA`rqd=;>q65}Q1Yc3h2<~mXJ9^G z!%#CI_^(g=RoKKPf{{*|)6Ef^0T>dhLc{Rp8>Lz792eNJ)J2{o0U_W%hNuI)!V8hY zjQ-H&v9y0~R!E(_h0u!-GdX0%%QkZsE1{_)Fc&S;Ky<%kLlflA*_ z^9>0{t|{gZdX?oC_9AjOm<=pXVa&>qi>Y)?m@$;KS~%O%0E6FqBNW9=Z}rzi3Vgp% ztyC&aA9B@mDah&Ig%q6p<7uG02H*j6$G)e!0U*&XWW|dxj!UFstg*S+ubqSXn=H?%0;B9cR(qtiUBKU=A@r zvzG;n;Dq3(1;+#=aTtj-gm|CW|KniDiIBU<=`Fc5#)NX69BlVTg9M1$klaFlG8(C* zRLND>#JuAFNMir=LLw<8O?a;G)LAqwU+P>|yY?RuPqOn7KL3|rmLd7&ja}YL8_S%O zxHIab0?P!2`M_yr!Kc4ZX~y{taDvug?PAME<4vx76Ra^+nHh!IFpppBG5s1V18FdQ z4dTs|8_dcUsW!m_F;dm1_A=EeLiN~x9T=fh3u*ezSN=;wo{7c#4vNShiXoV$Qz+{G z(a#<+7R2XmIpXC8Sq5$YqrLJ8`gFOP<`H}9fI)9ef$xgD?D4U1&7OQC9g`m_!}_;>h|sT!NH{mR zTnD$)EpwzjK$50`66G}Z`*5gR9O_1l+sg?0?Oq6jqM-FYrSdE5U)}>lwRwT`8MV28 zRm%JDuv_kOBk8TaQbE~$2s*SW*~en7TlMBw4WMyaM;&~7H!;HA{m#zaj#;U4CnJlAtH z>SB}6CMcGLWl`j16YaZ^nEz~p_dr`%SFMB~e9j4|+4;_=W5Umh|63gPgP|UAZyWowVe%;?8~bU~ zF}_)8e*$AJh?Vjo5NfLHG1-*07#cAw9N^b|}S=`ZmE(`*-9F@Nu51}w&A zklzhw27G>ZRkX%witM}aGv8qKH;hq<^xs<}V^tapX^?yd_n{=QP_WQm+ItQs9WR1~ z@I!`k=%$BbwA#*3r$GuR(xP&|Oz~x?W-0D?VzmYYac5up)7Zlt(9qSi#vqVy3VI0O zG#f_pZvuVE%kI0}?9<3%8lkMtTb?xD*(czeY#kDgVRv0fu-y*roc`H<2eIAxmL!QtSvy)VRO*qx?_!tx z&K|eKQ6p5?`G~6=A5J@HM63)M0GoTz$tN{G;AVFbl!VzJgR88g%7y+Tp)gJ`!- zhwP)Xd+OV-X@xxiOl?rgf_|CSz?~iM^7~e^(DLHW`}#e zg|!GKlFarFQSmXR6sBE!c`X8&?J z{8KOng$YjIB_!d1i0q`PIFL;f@fb7dP1~`9+h`G$PfHXP{I_^v`valTsN69n@5y;us7^`8I z$cQTmuzVNjUQ}=1)^nh$704}_MI26ymK!U+)6y(%*&^$^@gS+W2?+XNB?@)^!M^}M zt@dB-7gAp`+olCw^COen)R5K@2zG4&YX!cMEcX{}DU6!t%(hYL?Li$z8>h%mjZv`K zVhj>miZ&?R`=DC`N+OGGljhe1dLEhOk3ccwR2q<@g76Xr4ltkbe`76$FGghS{Kz8` zOZxK-E&mMd&;qhUpkopAZfVu!_OW=47fqgmC*Rsp@Sqbp7V6L$KHW<_vp^>pq+=-| zS(7pu2@gz_Co2@ifl~K+_*6Iro$ufE*N9}=Q)d5vMuMP-EK{azSVDWl2ixQ%`w731 z4CK&qyF@IHLZacH?=gl>YH(afiw?Zq@uSs0Q{^V?edTKZ+Mu0^t3B7fKTAbB9U*f2 z7VI`VhN?$Rd+WGhX!Zkv(6_ep>5>Iy=MX-wwv7zY$n zjbr=DSnhRr5D<@o*3hqqE~V*ssmkC;-6Wpz7|0BluhOxVd|LZL?Iu8~nFZO5-j{q) z&E1pX+S!*hAs_x%o|-E;)Uo(<(o7*LK%_wwnofGCyU<#!+&$I$Ago5qj15Oo-uQ zz^eZj+^TMs**pN}CwiU5{@)o;Lmz!0l$*yEC7YS}0<6z2+MTh*gb1%&ATo_b~ZlkVEiuC`#LU zEN(6bGSbSbBN%FR=DX#_p}BkS=kpEk_h;FTx7P*WJMjPZozs$+{t0Qa`%2q?vrJAH z9uWJ$tg)EQh<$QKA+bdt!KLv2)!^yK0;C~HR`_Q8wT&~$0L%s1@Pf0nIz zS%s(Eu477+mbVpwa*wxxk>@J8w0l0?;C_#SK|WA;Zj0Gof4u?S8`kt@hqQ3X#VwdR(Zng>*K5jk=5;eyMHPTrYkbG@ zU)#jEmB`e8Z4+s43FtOp89%az398IhTgom(GIhcC&pOGJJe?7wMq8v(NpO&i z{@S&EyL^!XI@Ji^RYb^H`iLXz^=cMKOnpOmIX(7Z?HW{DPOOusXSm3~dtr2cw`x{) zGcq5i|0MVmUP}|wn95XbjGWEq$OVBmVLDdBWp-rJ;rGn6b*wbDm^`Kgjm9dPohO2j za)R!Qcy;|w`6=;lj#*zX#jx?OtV32^;w7rbR=x2jAF7cfs@ws6;F=fLB^qfg#G5u! zI3v@-zoCEm35Or4$(GSorEoW?dYp(KBR4JehZjScfPWF??r@~5xnh` zG%ES{Wi7y%x)rr=hPuSJ<)e>(99LSXS zU;I(rh3p2f64maNJdRq3T+MX|7qpr>>T~i>v?7ZKvvIz>#H{P%QKHu{P7BWoD zJS-`KNP+G^owq-)e@&~xysw^%nwY#Ef)28e27lhzM0!6`yZz|}Y~%zTzg_V8)kmqR zGU<0DCB?Yw55Dd8)aDkxllU!A*%}7#J|br{YP)-^MZA`_UX8%AA!T|zZ&P(R3qiW< zz1|jjd)=3IyxlPHw?5B$-kaebc6BgEoP)leKUeB_-}fc`Xmj#D=~#a&e?AKHe(2$M z*l>Dz9JzRO#NXSUx}90&c&!=_I~q+rw!Ug>JZot@bw6zZRE`$K-5ofvMz`S(^4B&j zpH)w91K;l_yq`zjpJe%8kKb*)>F6ZQ4uYHs-t9Hg&DS&E@}2k+bsyBxUZu)|7uEsK zx$3#zv$4-RD-!!%0KU?Y06-KPQ4ILx^Dbq8Q` zQDR?hKo@Uk%9MzGq&x3+gxMD|tb)1AFO@Z}MuF~*3Xec6QPZ=6JEn5`4ab?~M)SE2 za#*3df=C8YAy&@{;@H3~;wx`10E#!4)9GTr!37O$VK^e}w(Al9qti*X*@~Ab@Rivy zO?Qm*_;n9y_nH_pV(hZd)M9UfjeS~%3xh{P}FU6h!{nFJbnH3!n^FHDl+|6@|T%3N>>`y#h*zoTY&WfagDko{4 z+p)~;E|y7d z$hL8xtZQvQ`f!7A0P%qr-uDsnZgNP`%M7mWdMu6+F7$Xyg!Q#Z=adweVXO}D0R<=sl%&a?%aBn7#Xw z_3T^sqk6EjuAbRED7wEx_dq&W&2<#=Camx^_!mLlZr`cYc~g`da-w}Ml=98% znLr>NGMWRyG)%EN8t{{mn&};0b8N@V>Mj$CuY*_v#M7Y|P9Lk=H8QW_vrk?LPwJ5F znBM9G7kO`kCXjJH{x+oC=vq}=ain4$;brJymCc2TKQmZj!6S2f+n)_^F=hMG7?jv} zpM8qq=7mz5r4!h;ygYGAZq+qIM!f_Y)+`*rExcZgx^_vlRY&`33;U;5K{NhH)FHJV zr+=rnF8cXq(21DPBx2{(cJDOqVdxS&`bm$%^Hb~U;y_P{@Z+C04B$sNvTJPbZY^Yb z;&RQP`4coftCoCMx}T6|ayj$wW1ycRzV#NUltU$B(Q%Gc60$DM@JEP#^&JSkKjlT# zzSk|RP~6CVA;*+^RP#zQZb2SVHS&x)_YvP9zfx;BbVV_BA7*KteRfZP3)kx%C>326 z_hVYWA|0FOeN$H{=M9`cNvO+Gtpr%Go=*DMvckC714p798W1kQ3u>o7T0RT`tEV`) z&Rr{8V=+(c2=-P84+E>k$BFN&TRoP(^smxK-VT+sECIa!_T)Hk`zEVj+KKqgjbG3 zA6>1QRSn+oe&0p5UY73pC4yBOMf|>`Lc*Un|+~p zZFu+x?fH(0T}_y&+F8i1Mhz7FSin8&$)4%|Q=BUm7I7ykDH3n0l-*vZ(uU)I@${8p zaWqY|Xn^4E&f@Mai!Lk@+&xHecY;f>#a#mg3r=u?OK^90_n;wn^M3cACm@wdh!_l^OK0;hCf^|5YNh1y-Eyw`;Na(n@uQz4JfpGs%xQV#*1IHG3^8 zpC8wqeo|rVL>`d7SwDLw=y`kYQoe9(e%|gS*pq1E_<7N_W74&K&gQs%5|8$V)%->L zwbbIY71t+Y5vkVL!7nco-aiiW>U8n*>7aty#T~+f@1o&MJJ2G$JYTbmWbgt` zS>HE(I{b+7*zT^{WOQ|C&Mp>LOu2L;;5gFjTRCOs^XF#{Xf6EwHl(8myXpUYah`pl zWaYDFrMEfqvk=?s^!IqKfq*~vOmdQtoAR&k22%iOi{Cl-A>9n8+a-@xC^4YVd4q49$$qwxQ8JGzsgj58YG@ ziWxQ5Ov`>|bGmF-T4giY`S!_7Y&|`L>8I4^_wB_2pAm}w3?=-0`SvjWSxq~rY+k!B zRfpn*nxkxJ`}Q{kQ#!P;WI$Iype2#7I1oyB%qOw?mc^60j|#qR&Fi(~m18W8G4K06 zHIfRx&Jp<7JA<)MA~0L@fM&QTa+ zOV@|&RvPDw`wZ5VCM7cHbL^+>F;8maN-c~A@f(ZrPnBIV3AiT3qUfZ5(=o*sgSrBC z2b)ME^GDCy`?L14jAaFKEM=Ce#viwMhq8GJL+pmCUvvZQX_ar*!oBS)c}L!ujU80x zzQi=EpVM^grT+Z;eERndQM=VC?+%&w=Y{@b1c;pdS(Dj~bG@gqiZ$H&9W3 z=a=Rb%?_&U0Do3gyFXG_e}Ix4CqUO(J?6aWa2u5f68y{KjkNYpKUbe(Ou`WnnO5C^pVQ^E#8#;uIxA!)%>_>|!un zHitE+pk=i-vOQNISUui2zWMi2-nnX`h46*XTj;po?EjXMWLQfrsq<(gt5uUwvDC@lI<8rB^m5wTGr#maWt|-F0G7 znAt>K7ixd#^*Z|?!$mn@9qh=@XOUc`swBf{J2&VS!s`(D}7tv>A~+rSI68z z7kYI4Tj=}N*Vk9UgZq&el0XGyC((Z45SqJQ3UhN*l3p-@YjE0+a}tMs56V$;Unmi| zs?}{GD*aPsL!tYTk}3r{8l?sgPQT@xsI(sIQcXK#S6Nc#Qc1yn`+UGhd_c<15h5UW zk>=8qAsq|r=p8Vp&&~nmKc|kZuypY;D~Xs~!ffz;YnVyY;3L`K!(`#%=SU8&lY(1s zr`@lYF1&?wN(gil3~`)VNJ-ZZT{T)v(kQ(tR*J#AOM>*GL*AachvYw0$uHz+eN4ik z^nR^ODWq19aBu5Xx)UV-eEDh)kC9l!|9W6ReqP%3Rf;xYpGZG7sW`Vjzc_P;6Y~#H zvyf`&Bb_GA$dWtdXg+;ilKTlzbWBTe2J4usO0NiN zcR%NAor%sqAembwyi@wPI9+NI{6U6_-xp$Ao+okp5-aec8sHg1C{ z;W2}H)Ih{g-cU}Yfb6=xanKpb1XQ|QF*nZ;F-)B*>>RlWZ>bzVQGI%L)BWieKlDLO zf0*}-(6uTXAdu!>;LSU>XZtlSI#{=;+lVPYl*wx=hAo==ef*zK4qYD=; z%KJzn*j;2Kq$0p#^gtE((*P6+LqL@g(N8&#bT>U}A<NXvg^l=X3^fCxEZ zr*?~M;dEhU>S{&)#OtDhq>`7{=fz#^2zltpr6{>o^*rJgJMvqxnV-m;sKipS?m~;D zmCIupZpNl?0ERh?$3cWPs&uQfi-c8C%&-HEkXAx*Nok^rdk1CBctuC)w4KI`;aTh~ z+`58WFN}N{-_(1!_sDWMs;w{Dj;F+8Q3EgbAXTu+3Gr<6;pp{(BjNHJ-li%ERa>k4 z@{mpW&`rdFv^qOImO1}O;h9c+y=A^$mg?QK_hW^7F4rFCK+>n#>3M@=@!L-$;RCNX zv?~!WzYNT3Y-PD$H`eUn^Wy8QYs|3pqC=Hk)s1ckSH`g3$7)r?_!%IQ1Lhy9%=zK!EDPCEMVXv5p3 zkt$5!8g!M%sso%I3QB?s*oy>$nNtk=%~e zjYN7z1zoi;Cc%g;dV5k@U0rCFunez8e4zHtiBFc^GuK>_FSplJGXXCcPf@SPL^_A0 z{{C7VQkzP>e8K>IM<^AUgsVFKR(^LtXMa7DW+;Y#=BG@;tdvKg$%Zqh$0qdCXYO`} z-@6Oy8d2~={lB%m1K?NqNyf=TPhwrH5R2tC$5`U}d>y3K`YFu%5`m#HK~79NeSfy@ zE)jzg?%PoKi>G0icrZ~5{T$QXho*8ZJ&KorTpN~cJN}R!OgRN{enQ4~Q?&Ps;kr{~ z^U|_k4zT^O7*m}rN#MOd9BDC)9%L=a^Pyyf(}bQ@@08(JBtL3F;w@EwIt(ur zDYZ z?`c&Gg*2;%mK%|adWLelIN0}P022>?XCd%9b@{DY9|mp@s@RcK{}pO%cG#paZ;HUJ z0i;v#fOp~_$bTgm$<1d}YNGqR@OqMTTrCY9f;IkTJ9(^iJl*k$&btP?R1HZd zh)^J5l@sSqocg=PS$o;OTO8L~3GWCXAt5L2weUhqM4mQAi@U$`cwt-SKiTp!Vnv@A z_S_u|WyKrirl&{uGrE2184)5qV77*L5_yVVpW)V>3NZL%E=2P;H#RcUP_(M$gvfK8 zlzXqV<$c>Ew)-ON7Y@<1BMeHfKY*KzFGd7G~9jF`aWWG_1pHGiWr5wh-2h7xg708okMfkrdZ!4%wb^7 z`s;e-OD?H8`gE>t3AMvWV4~52MH)RTt88kzE#VM#TJVt)y3A+j6i0cvp;NRBVzSkx zbk5l+u@~uOnPYbwCv9g9jZJ5^WObq(Et-91P57us=Cixzoh>Evh95dSDw-%T@!9`r z-|q;6Ul{=xPzOuifyCo;H?>|NEo_@f>N2VDz$Rfd`fAiPwjQMt^J%r_J5Ns~>I~oc zLYmyVqrKv7NT!)ty9(Rc5~`zR!1GhyVYA&k4-Ty|gAMWV7*D?&-N{kcvC*AF*_$UJ zhWR6G$7iDJLrxaM!nF^+=I*m(SwsCTrOWp~e6`iP%2PhvuP!m9Su>3aUD$G_)tWP3 z+WD4m0u@|mlj;Q7wY*I>#Ff8H`0m$br5tDAy=n1}?$Li#PX?}u^j8v*@s}bt9pr&# z*GylEA4`QoKB|Ap4)jnSEvCzgAkCR+j9sTf{UQRl@(0nbU3`FD3}+SO|7L^006qUQ zw0Rwb*7+l(zdAPw?JOLdK}rO2I{8~c_pjmYa`NNrv~C2mvPCp+oXRSr_Zh+B=uF^C zy}L=Ehp=6ESy*M5DD%WBwr-7{rb6@}r`ox2D{1 zr8H0ADQt6O)DqP@Ef#(UpX08A!DIdFl%GYPo4@JYeye?JV#hV+XWKJ;lJOUhh|Y}- z&0;0&d{Z`xU>rKV|Eb+dx_6G-IKA@24((UG!?wjmk|3EABB2VE=;;&=E2?K3Xj6Q9 zhwnOZB?_5rVV`KA4Bb@+cW;W84ILyD^f$3 zEemm@;$J<#^L<)maYDjw{IavcM3$L@H)Xi18LW*VO_1pMX{6-k7x+-*ka0Cyrdc|($!CAU80|P37#4N zQVN|aAaP;Uj`(Qb{Sr=OlB>x4)le8p${H-Zhsziyd6Z#99I0;a+ck+uGV` zt@8~E+AGd8qw##7E$@2WZO*QdtmX@8boq)h6>%m*U39oGmUfV97a`1g%Il`Bu~FWlzh~24NMkzM`!4b)!h!J^T2}Ybc$4Fp+=YGR4Aw#cHCh(qIj-s# zeT-n1TR0tz#dk6ZcAuW13Xt29H%!Y8`LkCv*J9F&c5e0f4O9)&@QGsn6nK~i`m@`@ zr(lqBDev4am@z@cEFQOGSkwDFXwD5N`3h@jA<==_`m0Ym8C9YWmAaWfVEgNHP#dqY z580ra#rgMrrH7Bsfkhc+(*cl5Io9{nXE;~bK0gd^2Z^j|`F{|lUH_R`yLq<7n|JlT z9uL+NRqRi%Qu-nKpyU5IFu+2&&hoA1s4(TwjFm5b!$1H@1AIk?#C!D{vMdPb2z!Gc zw6QASt$u5pj`b(%-KCVG-z012@kU#`uax#VX4H-P!FU};lL@e2}_#N@Zo@zSR8*@pdrRpk%uJAW>a7{~IIK_@RW!Ylf zqcvm#PlZ4Xjh^>r?4JHBiPvC3lEpbuskp*%jxpI35w`505y36Cx*i5%!8K9?02zogwuuY8TfUP z`>g#v3}cCcKq)_p8kHCeK?pVat4@y~&Chg~%|H$^vb}F#!#vo&G;Xl7J~HkC^Z!=e z#o@8AVGxTuOu||964TQoyG4nZaAp7+Oe^rO7>u)()Yw@LV1+_TIZFXFMoNfr$zNQn z=H&aV22Q1KY8K*Ok!~uF@0JyGY_caySszQy5kYSU4{G`c(*dn?54~B5OJ!1=d?2Zj zyUcC*!`@THGv<33miec53sE`8=mjF*tu6xfxyO_!V6-T;L&UX#cvtZN*Q~UsTkF&u zEvDfm5RFh11>IzTXf2~;wrmY;BOH7j7WL!b%7FfAJ;J6=QmFtXUDQE@T_>k(((EH` zn|QPMaCYbhXHa_~V~hPW>_om6t@b{0w;^_1#_zt7+kpPxL1wWTv`q=iGdQ9!l%4U( zF5|u{39}Hya2T1awPyje-w0McBT_j8P4B5psg^kPEK3L8UiJ7a`GjE?Lz|bSTRtbT z!FUWy<1AOvZ3NBfbU0XE;UbTGkfL}VaIni7n9Ps+sPrjyH9QDjiEmUGcEpPKS{Z{A zWk0O!ckB2BYc3VI;nxE_(qc8;%r+y#MwSA9=bYio zphqfv1}OKk*Bt>l-JYlc;ekF(lQ6s#BkfbQ4l@xw(6D~l{$eH;F7Dg0B*v_lI)4+D zbdcm+g?OC?ABsShQ;TzL?8YOKFrc#cyZh zqyb2$|9K80@JmekrdwzhW29Ft(kcT!NXi9-jI7t^+2Wp+x1tN||Ii%QkV!XK(j zLpG<$^S8CrL2HwPz}VVM@4eZMGtai`?!BLwizrm2e^1Iv9j!~>J>msqYsXz{za#f0lK`-kv5Ttd4LBwcJR3zIA z<|SQpG>#bw+RDGU?si7)`Zi{&gK>Z!8psF9*!D=>$k@zCT);L$$T%L_HHKQ+`* zRi8KyEWDqOT|Pij;6x?53_)IG(-FfXHCC-?2+(MRX`yLPuya-vW zbM<>=d`Su-j0f_sL6}ax>H&2}U@Vuns;tE1<-LUs6e=LT@VtuB5}xBD{j@$gKh7cn z#dp+lFk0eeXi^=HbXZb(tXBy27<2hcMK&ikDg)9oQx1-XFEE2@2TDT)K$J5DW^=%M zs$N#hwirGoJ<4(kTFZT=P1=n>rRf3+-Gc&kpmqqd4&oe2X5OIy8oDK}+FVyj7bBfc z?_e4kc4=<#mxLEgbD;?jq06%>wSgq9bkivNZN*7rIP;*c{((J7lMsFPsq`zGLypAH z64)76`6d_3`huzQI`=r9ab`37%p2Z1s^7nHCaV5C&p$x(-RCfwNsd>_e{O$2bPg@ zo2-~OQTQ}cYr{yQCXj#*Vo=mgRJ$%1hcN7jZBLpNWtpX)_J^*J?#?e1?Vw?`Qb@fs z3M&^2?nTJf>ed=Wmm^5ran*9#s5dEKdOt}-F!JQ+Y%{c;CkQP;F769x*{l8jkjS@Su zJ`%=~_PgU_pp3TEMavE%pman2;5aHSNixp^ScQt)kdzGhT1bdP9V|c&q*i9FM$BX3 zVLU5tCz~1nrOUM`W8-u@fthwhj)f+EoedS$d;lVcH2zX zs1+_g2`@&q0~D@;%98BMPs|CzR|iO5N+NSh5>5RJ2N$!Wwb{om80s8zv8!YC2kKGx zmsk2nEEX(Q!{O#*b_#9Vd3*qlTlzY1lL$`dKW!n41+YFZ5>>kco~LMkK@%6 zqRW`?a?X;HVo7qjg^|7!f83O-0D;v6)G06CH~&5-49<7^$DkJ4xh~*v+0EPlSifiO z1q@^gg`N}VDAxD-^=t9wV}pnD0W=F$HKvAzXd(Ns_qux=to6|Ko2e_3go^8_9C4xm z7$Z0gh7JD>_9F=^Jr42#@tb9xzGrd(g&8Y0E^+F!{#LY#+(!!KprlhE>sD*nT&{?C ze=4o1CKr=Yh1GPakqi^cLVTVEQeD+tW{PE8mYuP0@T zn}h%qv}+Y1fy-duy7fRTksdUpOo>e$gsAl+6YrknM*H3T9 zp4JZ0kRhi~t8in{;o1mVmA*K(4Pjyy25uVyUu4wPU`cY64Q#GGVMHON2sg!Lw`>or z*9TSjLaJcR2h{cwm{SrZC z3VW2nC*z52F!vesNagJWNThD1sELWPXW`rYpH2B>ujARG5yR|srOY=$!wSXq zU)A;iw>Hr4s{YSCnmdxiP_v@CodGdw$#;Fe<_LxD5*q72w4R;+FPe^8P6!+&2!i7E z6fFpoT3G5Hq{X7!au)1|tgI=8AA;gp)IPZRc?;n3*us%FTnw<&*j}4!cAH64NLBb4 zE_Mp??~&)Yv4^-E?jX-IKx%^A#?0~B!>+Ot8PLb+2Q3wWfT0r)zAw`Keu9UFIXh{P z4W4iaVvdD&+)@}`ku03I%O>kZlyZ2ZsD>QF&bfCrjf>K7kQ;JSy-U2_A2Y%v1%;%G zvWR!7($YJ*;<`1X5@b9+n1?y1QfoNeTV&=cwEbD$)nm*U?GP+~Gg*Rai<|Epu0z$M zg7!dYcw5!u9EG)E?44vw4&lcPBmTIcQF&~R_K!42+L2nY=T4xX8u5@q(M53wh9myt zOgToPGUA48SeYoxFPkcaA8;ka*5Y^1p@|iOQvKMhfLI z;gy(!M&_cXl#93C%JZL*eI|?CtS){6EG304OP3Xf_Bt_vuJ=k^e8HwzFEEq1znH&p1=ZB)UFP@8p2gw9WVnk%3x{-?3c#5*XC`=wORYSq_1|=Ib{~hhjwGKPS#*Ng)?*n%%k*#PCe_)~*YAqy%84# zrErqZB~4PDqLql1wn~D~_8OhQagy=Ap!>yk4o~|78#VmIv6A3W@ykXyoso=gMmema zZZ{&~Am8Q#^`2OcTj}2}fMvH3C&elhv;_reVj#nC8Od{_JQ4az7`r)B0yi3tazL$4 zD8#J7(kO=+IZN%3%9Kxq#Vi?QXa%RDEt+lqbKdEfVJpe0f(%o}vt7|{(9cCvW4e%c zy~xPns=*Q>KWs5Uf5t<1$^FTRY{4*~FlX39>bG^d#A2tG?Mmi@=!OC*Xz~MBCC1P1 z6wjx=cbKR!^I4@XG1Xe~SRtNSCRwS9mqW1Nm)9*TXnDClMbo<}XNg6c9KIA-RyATH zp4eKlntqcE3kcY~;I9A8V2a4cjv!jXziP*RBK^PGxx@s~ptXb*$uyjAhiC#)MYUd0 z`~Mghs~IM1{aYka9_@M3j1dsEBH-Rx2;U`TFtYZ)f>rBL6* z++1@Q+63pPbbSi%WF}u+>tYZ)T;sS?iu8#0iMD#9oy*A%{7W{DGz{eA$pB< z$xedSew(sk>4=#A@(9om_SmB;%KUBZck+w!MiogU(PFafR+-!7#OL31{-99bPvqFLeG0({?L@Jq zCHJ|Gfb0oM?W5(AF{z;Nh5pT;-eJp;rjg!vL=!~nQ`sJ_n`!y&Lsv|U1b_VX@uiHv z3Y~FA%uQmWR|w4*y0}BhExRqUP5a~FZFR%2H>)%2FZYdYU*@tK&A)gf9p(smIl&0o zyR8D*w#br0ys~AZJCdug%YDGlQPrvs2NKq-^L~Ou(?=TuV6Wgros-RF!J)mw_3+|e z%;k3}(vdQd)GSHphK!9}!_G*z3HQ!sD`<}Ijt=n2cT6EZ^itabOPh8Z;QfPXu!= z3A=+`Hv=fjx9OgL!x;}~rC@P+HJXoE{8xN)cE1=D878J{>Q;C;PtbidTuzYLwW$Bd zo~*~~qVm5)0^eLSOJ(u4J_oy*N!Pt9s?LF}ZsCmai#E6pl-1B^KCvs7vzy^(m-eY! zXik%33|b&V*+?)X7=x`vKev$1WOm#|I560C;eMiLNyHG{HKRvWkVhVA=vob+A32C{ zqGZeL7u_oV(XoTjXnjL5p0#{*5^y6CEZ`~8k_Bkn|KiX0VuCG0;Jlm7sb1Sg(h$84XZ?aMOHKda!YDk<#x5##d^ue4Cr>9Xq}4Px9=JKlFVa0 z`Y^)uq1O6QMf&MgMN}jF0hNp#6cMHT>%FfbbalRtHuW{aBO;SjkfureSt+1#w8Fqy1GLRsP&PVqLW(q%-(Kzo2xe3 zG*f`95Gj(83Y9%{R2#AgM`&YT4O4(eCEtfR$Mj zL$cfEqAsh1 zgw-|FneM&#N_qb8TZ5j zh6wc|ITCg&TNId~gZPm4_-C8oIcYx?!Nkae)QB#$&faoy6Oie|tGB`&Ap24g1o_{m zenP|gQR+P(!0zYqudP$nFBJT=bbr>UiTeexVEhzVTmksuMW*A7g~FqnT&*=*K-=fG z4pp%wQb+_Jy_%&i4F%mCx5$Ffd7_%}YVc)W6m(Vji*2W%-6j-hY2OmZ0A@i;q{0S2 zUEQ%{F4FxkL5=AeobkSZG2JRJXBB`EH$X@L7FBSFPIW_;j-MRcD2pe2Z^g3QIGKS` zVCY|xC|MJ7v@q2Lm-rVNW@`R|-XGBs4kI{?M&+f~wmnS}L)HGFraDuy+K+L|o+1l% zmP?=_u_+J^`8G`L3(XF+9&4~rLWSp%raGIOh99+(=ID+2hg+Bu;FWT1SxYT)u!4iz zqULBe}R~sB}_rqO!=PcAcD#t%$4#gkb=?2}*Jm4E+mst<*F&N+7 z1TF(Y#lGR_s(PxcgXTC*SU7xS&OyJ;zPNRi_hb=#=5un9WgaDwD}BkTG?` z(=;t$gaH*FH=S*1diHBEx+SCVlNv9IvC13GTRfmT%31{)g_@&P+PFto`cJy&BN$XU zXckDxEx^;HHS*HK6M}hH9Z(bNWu$Zyj61ku|9mX?o%@zA-GEQQ3?|p2e!pGCzJ&<% zUM(KGb!QAZ)R=isfrUETB{0NcxDszM2g`~P5#JGkuNB>M?x(&0o}jz-!M)<9R5ky02o~t1L#ZHya~{OsEVhf zAIDsBhWUWLInpnsQbWc1Pzo3Y?3~!hNKmK2WIIo6gf^`WvWNwI|WsuXuNYEg;f=?0v6h&*A9?m*j6= z;{WXMmzQ%l^=DYWqBJ|7<3Bwn0M&QU%I)s>heMoCo%`i_S$ykLP#tK=Imzt|N96nV zVJmw-oOZoH1CZPk*bV2&y`1fZJwljzV`wNVxh3A|TC<#uiG6AIP4V{ud#%8KlI(1} z9TN5hLxuKO9-KWA=cl~kKkSVuqLm~do!F#o*&}C}B;dqt?kpc%_z5jbK&}Xn$~aj7 zs@nQgQuoF)s5&8l8!I2K&!-na#kgxkEVTWI;))U;AL5M;6rbeI%$~}24|u|)YLnyYZa1oTD|HP7bs4x{o@*;#M?;?^sOBP*wN7iooRB}a5q@q25g!xVD{ zd4k;TFBTM+W(@N6&_vp;0{CqOKK2Tei41N+i6A0F<8)!jdf@ZBg$i+}4CuA7XGo)q z53=KO!M_h2*Zer~LlVfgZ7nA7Ob%#+DPm3B{_j)LGn$d+}fTE@4y?gmUOS18)MFPrrmJe7wK_ zwl44vE<;Pf)mpLhJEBF{Tj=gBNH~#oa<31e>%j)3HwWPWHzmDIy_zW}A+saWlWf*? zJP*x=!AiAD*t=>e-$>yO<5jk|o)_y^>L97`pp6Cnq|Mm)u8xAy0^ou!6&R6iX9jGQG6uT0+$H)(jadz z$)U1Bymr$3)sA90yixTZ^ch3c_j~OHo|Yva86bkR=CGIlhKdUNo3t4BOzlHgyG$1| z-!Jl{!br_>tzzmbHw?GImHBT%d&B0kT^@j1nvd_=OI8`tSE~=1; zgDtdkbO!KA9w9cWzIj7-W}yGj6(mBReEUN``Z84Ei^jKL9*d4Ba+m(;2*|@${8z*3 z%n{SI54^va*0@@s(+cO;7-KA^QSai8+jspRNClA1)7Z#~FOocb_%>w3Pg?^$)jf1!ea?5HzU+P;;aw&1uYFRH)YZGH&%8d^Z(6B&NT496X|Fz&YQ0_)?J~;U`fS>n` z6mEijMUQ|5(Y8XJQq{-l&7lnc`gA1$3{xDmmOWh-GaQ$|okyz3fL=NnSLIo(n&os% z;>%1g=H>K}4;vG?WOK+}I>`Y(>50gCKvoo#2;;WQ*^Vu{-}}*nxy0w}M)^%;g+dfBB>b4ZI_L zw^DJ5t3&{BR{!JzLq-pM%Y0qn*b;5Bfx13d2NhHqM_19B(!-8I%^#4nL+(>2nwact zrBKRm%|eWVqE+_S(32i2|A7nJqR)X`Y%&k$K@yVVNnT@$I^d$EG`*<7cp1!lVFc5Tn}gyNu}^I*U!&`0+x`j5T2 z4T3k|L@kqbCM;n@xzKOtd))f+!{4aG_bGYI#!}3wuDLTuM)7LUub@Kqw`HzGrPtW7 zDXeT?4w3iXz)c>VCJgTtq>)&Wx(`1I*%mI(pTV4(r96Ylq8{46-r_3H5YQYFFMcfa zrjKTd#AVC`JqTH}Zg5{Y3(T`EN)C*H31AXH10AT)eNYHQ1yi&USQW`9nH{C(;%TR1 z{TiSF@X8H;@(&3mV^$6wMN#uzY>Lkr8B@~k3Sob9xRRS+^}O|%t+}c4G7z73{$1}O z)3C0|eEXQ8q8epVhC8`597?<<1{UlD3;Bbs52C}zJr+q^PQc!Er5u(=G8KpFUrew^ ziUBN;|bKk2B0_gIfUH&MBDK6S#hwb3* zw|EFocU-2u0s?ka9)&3V&VLHsdi%K0$usJk%n&OFfprpG)RDffgnrp(_aO>j1+)zT z_015t*JHm27YmcGnO66kG*UnxqOSbC^iiYPUpftBn@Bz}A#ZSh@?}`oh+_XPQPO&k zMYgxI%UUML+oWWV3QN1b5SJmi(VTJo3$C!;PIuv7sIJa0|P z!*DwzuG}xLN+dLYXJl0%pP8`k6}tD9^Md|Kv~H+GLjWs6z;tj@dol{5Xm)P(g&IKX z{2->yK#{KT#?G5>Z16mj{Nzq|ibdAk5r2jU$VLe{f6@6`73bha4>KSq=$j!SVC$KEp>5=@2dn3u;9#;$;gZ; z4_r)THgfLB^1W0^xd$=3>5VT~MZ5~+Gswl0V^%#umPz82=1JNt#8+bo!2TpXYf zl?I>5Fip@4n#!hC156os<~rt#17{sV}%EEXVo#0g(cXeIHA2pCa6@9^aO{P$vPF8 zA(&G9DDvtH6i=rse7@Wt81tf)lS&nx;^cQUCs2coAOu9AJbk6ZYY;;5mwcIK`2Lay zI1t0zQ^;mfS?PX`9~a>!R$yReTqe-J&Sfi_fs+G|^KtZpfg zUGK*E8i*ya+LAMq6w$T&sv9Ru%S>c)An-#2BW=pow==cwI8a>0Uc_KhGkGH-mZhsS zrMY4z!IBzvKeq2Tz7GO5BZW}kz)Pi`O)UlSb3rF>87bZ$wh^_rD(5{W{07ZUtdAc5 z8zqvS!3nnkCIlRKWCTW`H|FfYeT+ZPgJXC`ZljM9kM_Yt(BhVnZrU4&9m(X7gp6PX zL@|A&`CwER2_pNH^Z%&k|1$pygN|EuB24ys=j#9RNO zqgL(vR6a)GJ%@U9NbbFbJb8Zg{1Qa@fkwff9>dFBe}_$R4uDM7ZAM3a7VKm)cEIiM zoG~7a+llVT0Gbw@WS`}dqG$3Qwj_-x3FxMH3ESrl#R;r=Xt3fTc&}JrWE(K`QJ8($ zQkIf?q!KoP_PYdyQwF}UTz!OWz7@|wNK&Is5^5Wm0nc)#C=!eTvZWj;?ty`EuF%n6 zMMMmqZl>eZ4>Sou($T*Cgi>E09RZ#pIu?*z2{|hVEo-uTKM(ocmyuSmcdRchm;Cjz zg$kD>V3;oSI-Az1trchMtFY{6HG9HF%0VqF95QsBACslKAz(%W+{vx7 zakS(2t zqlrMFAf8MWMjO=RwEBrc9Da$&mbq%+^fo1Ppx%Y`cgZ?6wP0Rr%LO$oZgO19nS9Jl zcjSSmT16hFjd6)HV07|ZRzQcRYM=^~S z$KS?BTOqAg^dcj%nFVynS@Fgm{55C?;V9fvQ<2~upSy-ap|+et=rNpW1+G8;NViiC z-Z|1Mt4T{Kg<^`3IP?}ojv-;gACs%R>IfR2h}tWMid(r!#DbvhMLsIte`|s(j0FEm zWI8Y4gz&s8%VX{_R}K>&i46})Qn1;H{Zr@xhD3*nTPo6!W+D~Wx#*5xm*$OsjK2q2 zjUfOErx1ACz(WX`YDd%!wG`q}30vq#qg6mDJLWqm01;3(HD~3S33Wl;lr;UeQpK1F z0wK4pWOiCf`+^g@Z~;^XAK{6|vWJL+30tBaTdk;CSxYQZf{Zijz7_CQhGDRe@| zi~~d6?R`XjOTQdNx#u;Kh@E|=caVh{kTsrxst8wf?65(p4}}CBQR51e!cbEfm8M$i z->)0u7X5dn=qP&e`G27)BSXn;TLWrk=)eJCwn=CX&G|}2U zOmJJO?|L5AW+fb+-o|uMo)j7_WRN!y_sh6dXDEr;WY{n@)fqveqba!aHGOK!cUjT2 zdD&D_z#@2f2(p{+Cxz-Z?F($mZyIoMmDTPbPY0N61MYYi3V$_AX5taf<+<1zM-fyLZ;6v-iPbGX%=` z3*p1FBj?MG@J{wU+6{r#k_ZA=9<7QRDcJM_iFAXzj!R(}VfP-sNpiS9?~@P)=m(qA zmzn1B)L5Y+`g9y+kHm;mtfa$8fIhw)I0r|ZRD7>998?J0sUaVIuZZ(i@BZbXA37^8 zC=tUg3;)ntM+mE7R3Aoq#>I+{|8soiG+N21I~Xz&OTk^|E9iBk!&tJT#U^EE^Uv=H zfbwa*pEV zPp!~14#(5eaz04ep4q%+LW9QhE<;(8w|Cvgg+k8DaD1KVVbx%TN~|pnm0o*AE*Ur1!@NV5;;~P zr3Um548-s6oKPlfehNYQb;ImlE{9lSp zE{oJX^;;FsOcnQ$J#|X%pL?Pa^^2-g<78sT%q4soB)lMt8pnj^(q%9`3BD%p+cd3) zhTccEjR1b3NFUB@%Tk4Q>5A<6h7NvhX{#|^!17%4U@3IbRbc-63}xnK6zAkgP$ow) zdQ-DOU%6@nF^@J#n6Ga6ZAy6XSFr{q_wlFhi}-q-1?T7NQ{V_+{xcnqRaH{Zi2=MO zPj-AAH|)GL{qlRd$=UJXIiKSzL5W7_VO%(P&|zfmzf)ISQWWV2+7MN~IjSEkb|dnO zXH)VEGUryTIo5Cwm(h1}9#)ckB}t91;U=CRvg`$YOf2z_)R4KUxC5ED<^y=NUA0YT zQ2M4B=ZD?>Q$ghv+)VTE8p>hOZ(4ULvn*39I``rH!{zi?keu;@N>LS$&MW@2nS8zY zvthl|jrx=a#bk{8Pt{+QpsPo~FL1Zw&qldXnBSY1F;;#Dx)fc5ZHHYl7k2R&uMj6# z`NLU#L4{J;#iz@M`5j6O-TUjQ4Qh(%6YMr3S+-)Vqj1k$2Qg@|Hd5TFcsgC2Jjlaa zXGT^wyoWq>?D}^LxZWU~$meUPyyz*Z4I|VEsdQ%Fyd+H@!&aV#uY28M_~kH2ufSuk zN4N=gX5R;_W+JdNgCE@Rn;(G1-p*J0$e+qKvY6$Oh{}@v%!XB4Q;?73BIr=vnF!Q(# zPq!3e>#gSV1Zdxt*uZKS(WN>yW!VriR8vjp`LRAR(CwG1`Fl3c5$1gOwSNdkJa<)` zs{Q{%*E>d6+5~N*u_hCHVoo%%jfrjBwr$Oht%+^!aAMoGC$_&m&-tzxIz^ ztGl}T>Z+^jzVE8XgZ2~D%Ck`4ba_EGQNOMJmt&oBJgE8C^X^QcFt#yICw9;@IE(+L z0r!iOhpu@=uPH$aJ79jW8Pq|^JJkOGXuDg$`m&!Z#Jw@rRusSPWkTt4y&pEf-#dK# z25m(Hh^*l6?VGS;?>knmD2JLP;14z9x$pxX;K4LU8g-}raF&pz5=>+b#d2kNFvtaB z#t&cVB?CO%MynMOY(K`uU}>5Y*%ag;m2S0RNsuM>;F;_Ur_IhfU2 z&}k&R8Au#!rpxg6hmZ+&Jev43Quw=kRu!|ib=G}d71B*5&`Zh8S%`3|O>a5zIVeab zDn6+&dPN(gg+iRg1eff;f6--L+MM1hQ}2H!V8ZGJ=vco9Z(7clV-c@Gp2INF3rNDw zdn~%gn#+DCzS7(E3YmKpdWY0-%Il+vZ-zubtGblTZ+h$EB#yNJDKc3EYDvu^0EkGF zo5cl17$gi6E%akK{@MxfbH`bFCj;gxZ+y5@T;Q*5*5~}V(Ev4yIX6L}a<-u%uJm74 z6C!7v#EDjXCcA5v9s@LYA~aAc;TE{Lrgsm0tzDUt)of#;{uT`2X`ataWsBhwqyn*2 zOnj@PDB&<0yi=yY%=-ZyWTS+%7;v_7HkOmtT>6DJQ~D&4L+r0VzRSKmT~o_y9$%KF z5Xlz*`1C~vK%vfKEKm|HANuh^xpvmJzfBhz;P56PLD+69;A3tAGq8 zpbpg(l<-yw!q@Ce*u2h7EV!QpJJ8SM90#IV7400YRq@r26-r|tz6DNOXBXc131fHrS zUX}p|FJPD?|4HShjK)ao{<#yr{u8#2EEk7W>?0v4)0Oj=bpg-1J@*~NFu86>!CPKP zz|S1wxgKxhh+Z-otjO}RB@IFtAez8yfNy!5_Mg-%$i@ljE&|Z7vNY3}0-aiZq-BEJ z4Br{hBeG36jQsCxRxiv2Vk*YT{qQ~{awi&IHR%KndM{{RfAeNCE@g{oBV59}Od#6= zbJ;T6|B>HokaA}1vX91nC2LH)6Iv%Dy^jIP-qppCC-{H4$K?Cp$!F$>lU`+V^rZpd zhir>t@Z{Sa~oKH{~s~2 z;ypi`yE~G^W9|}5_wBLSJLQQYg69=vBee88{$ISmB<5b1*H3<+{(;q(jNC;HOhKxa zDm?df3r-`a>_lcfK|=%X=BP)@55G?L3a)-ZqxL`xEY47mZ0wx!!$}-3e6*amG`soh z8<17O#=h_Cp>YrqTZ(L7ghNa*2YCBW4=*BvSzGq0aJh;Bs(s%$SgFWHHY6#|RK4-y zbKmN#vs=b$=EQkR8k}~Sq1Wa4lMge5>ts&CZ;Wo6cMhuh<6m99D(jdo6AR_gFD{v7 zFO6AB+9l*3FI>P&V2KRA(u~jJXGE5jtt9_$=&L4Zw^t)5s?nufU$&r zr`GWxpj}2O8Il?7kWb*8P-~go$Gq*=Ax1nd`zMZcdInl=4OuP-~I^|R19Kn)wyS5K-} zlOZ%}+-g5U=4g1a;2_q4JI$}J|5HB^5==oF5()zh1`H0QA_s3yqx`@4bb}CihN5EJ3(n^#fR1X*# z{;9Xy@RL2cMT@>B)bbG~c+wb;J{6J-Q$V+GHZmb2a|%0jm1>`J#}SOcbi>~F2jKXPS_g;@NjrWRTgmOJ(dt~lZ|-;-2Wp9F{R=n+*@ zg09U6785ugz-Bs%u}(RXEo8+L|6*kodNtX>%8X#4fI3&VKPtqKkLjiSnsreW+2To1 z2y?^JW9kUsVETBCPW-P<=PKCnPTt|z1Jw?BVI`IBgFkv0dEVi-9T*ScfyZRg*&NJV zgFYU^0>Z=n*%d7et`AIt8gS9w6bqEE8%}QTgAHYmBUHcs#JnZ{SEaLsvv9Yu*l+w$=A!rkN z`Fysy+HM_b5ws6DC4*e>ze*ya7(Y&ikKhzQbGZG$Cn9TRR~sP;-$GZnoeGBcBJ3xN z6%|4&*$eLuR3~QSLJnLO+U1CD>y-c?Mu-n`zUL0Yy-5-z1?@}3jC8C0^y(zxx))2Z zaLL^)L|><%8raI%#;lVlX_c;)_S=BXYx)1y=sW??1Cz7$iyUSItav#N^M1DlFxMcu zpP7^!wtoFYBUVYJ>v5>aOBj1tdtE~u{4=plN$mombTEM)-ZS9nh#cMh@(e08dDk-K z|FlNL|9)EI|16;Yb{~#>9?szR@hI@NHud)4%j5I3EARihBeEpWcHIYhq<)$E`H=c~ zpX>i}`xz&2v;AosF7WpB-u=-%CGh^XC;vIPl_CDPGgsr6KA7ckp8Q&F_ImHSR{>C0yXrzZC<=?;tm5ckrrj3x-H;CwywVkL&G<{>cGe zzz3OMCl*;?Hcs5yt(>h2>y^qAXB}PkVMxA)UiLxUvZMK003n67iFZjiM|pccUZ210 z!DDTc1#siLROtWGr|sZl$v|WLB=zK*#`n$E7&|c}Dh<{m@Q)UnJ?UdziYI8bI(`bkE$_XX!7EWWjOw8G- zMKdlkk?o?~={v)cymu$msJGwKwEfd-9sIRFQdb4u5%sN>SYU>~y>_}=!36D|-QP?< zJu1q(a<3OYEtVih_bw)j#e z$u{hht8TY17GbUg8mDQgZI0``zPj5%gIrrUtdlx(oV-4`ieB=``8sF#V+;4scGKEh zf7gUBk+r$pv=Qf+c@F^;{yMK_S@(Yv>gO70>slGuYZL|oV4{ER08K=nla=6}356k)MZf+L+b=k|dM}(Qxn)3in zEYWsd_uKK6>6*e^_4%0Dw`P=IMc#kb# zTvojEzqMI~Q{_t0o+S^bTD3T?$@X1ogqP_aHWRQ(d%ByJta8?&HMNlY`qU1o5t7un zcq{z6A+2FrbtzbR_u&$Q(T~t_EV!H#sdBMLlCxuPnIkUQ_e=|~yIiv1%8$GAa`83i z%w`jx0xa}C`xI>in-x3#6~J>-xJz(88I;|iJU}kdw>MtouJ%KcUg(IC-@x&+D8JM< zkKL_4DgI!R9h;|P~cs&9m^v1n}l6amRigKw6X_Uk0oJXX+@1D5u-nxK z(BXc0Dr)E%7HF&KI_Wx0wfFSm=v_Z2&|Xn7V8Nas+R16REz^G;T4%i_Wp&94|5*hs z|H$@`0_%NsP!d^e*^`%d&a>IGo&Dlyd*nCU;a*|93uUT8^0%p6S=8I~Ib**YDtEB6 z+3{Vv=KgNg-}~djz56}YKV|au;r#W{zP;x7x8LP&LtmXWN6UPeEhMZtW5gV7G8k2d zX^YpgZ_DoCjydW0zC`pfi;{h%!pqyLRIv|UchgissaJCrXDdiByyPO!V`K9gZhQOI z?Qeu<`_??hS^Gr#1cxJz=UQ@z_`z$Mr7f$0{NXi#| zb8qZ^Jvq zK7D$Z+P*e~??v~GGw}?gt4soI<9w3S`HA7}_=P{FGx6XHPK!G|rr-+8W=RZSi<`4dp95X}1V&%;FQn>@}VCV>-xL^Atjxq2y=|HB!uB?vD>7!;V^_3qGe&Dv5ud0c7{N_udq5W{NC;lsn%G8d9 z&)F!!{U{S-w4OJ`Qjf_eGF$l4G^O2Kj%YQA^1MP$=H~81M7s%frs8b# zcfVX+j+=Ka@~7%gKQ;UL^`2yEV@_uUCr0OoznC>9eKu)S9~>=-{P}iZ3C68|f6p)B zC;8FK>*MJR!9WoWeeKH53A6S0e!cfMSJdeCKcAui=QjYDk8TY*A7&j2nr6D&cty%- zW`eWen6nXV8E4NOimz~0)kN~YHu3s~Jw=3GN$Ke88ghoVz`VhzUEN!6)mL7WAPiqH z??z`cUb>>w{${T&#TK1WUQ4$_`fGfKmwn>%)8=%nys@%AE%tppORFh8OL+Fkpa5aV zOVPFXtZ$j=oDXCtIma97=tA>$zT&F)m>wB#gY`2iBgQbmo`0iN$mPNqD@A(*3nuHL zMQ(FV;L2aR30W3CEYfPTWgJRlzRIdZ0`cCscq*TDC>s^d6JL*^1Rh1863ZM`!WNxJ zRHmm+3aYdcYh@)_vSO%%#==v!3=6~z?nSFB0eAy@O%^i2Atup6-9A9#qv9d$kLrSK zEG`2i%rUg|Z$k7%)De)IGE)^N$3H((;;?Rzy0Ywuw}C|$Kws1JVf3Z_?9LT9Ft`h# z6;XSOy*V8F(y!;$R-C(e-(5IG{sU!i!hgZ;x|+n~j>*Ng#f9wS{kzBfO&G2!oOZ{l zM##4h8^=!3PLNZj_j3g}j(>`+zFM54c3+zAEy9vSZKkyR@ozewIFT)nGtSfHkb4@# z3i`Etm>~q4-PxX6G?}SkBn)X!s#RaZ4L343RNYw$yhroF^Ss%}#0ih*Dau85N9c|M z{q|?iPKEQB8ah0t$%;pMrsn#k@EC5Du|!+f*Ap`u2>4Fw^<@j`wYm}SaS-=4=O=`~uxsh&o2IOM2H+O`&@4dekAT5W=e+7@k z`S^OP@tdJV-NzpMapZ2gdGF1<+JRmQp}A>z&JMfi<>hrwYk~_>U+LrHdl^ga;lk(1 zYRuYB7+Ldq$j#O`D_OPgUm|A~M&?Y<1s?v;!jTrmP=huk)$nhRjR=Q*= zqMvJ4H&_znXNAHun`|ixb!&<*OivVZKn|Ku)x2P5a*NH9c40%gz^YUIbGotW%k*!@ zKrcdp4g0P+c*sYFB}ZId3f(`gas*23VTaOVF5qW~fXe1G&Mdh~cCWm;NlB33`B5r; zb^W8dLNz)~`@jj`E+?w8=7U5)IiP6-%6IAk3wco=-360jG<=R6+X%_eC0+?e( zU{(61eJ#_m@KWo1W1tdPMUxEvF5ND3TmGA>^t6x-ii&=~Krcvsujiv%InqALK|DRbV6*mJ(J9@;Clc*{b2|((H}f*3yb(4FDW4y* zOVYnLHU(eB;@9Q(SVO~d@0|h(_4jc49;&!izxI^T7}fWboQB-cZ1Kq!_Kg=iYnTi# zk|CfCLQ~nkI?kp$__$jyZGUGI*R%XY@>bM%wX~F=!gY|T!C%i;4slH)MLB63)2%>h zJkxMa@^Y0oUeB5gM)zMOhAm0)C|U0IvM#bNqS5p5c_6oJ$U7S0=n2`y0J71M-tV#joXq9vdaQC#%3qd zK!}V{JxaWO@X25LY%d{o`b%`9Ml>_$gJA71}%5v#S#l~n$Ul3(huQxMmJhVF6i4Eb%yLFV9oTq=U`;kxCmM-eQP&G@H5 zTI~tjb2aw6@1WCx32&6I{5Y(!1-Y8GQ|g`L!3L&%OkPNl>%4hbH&5PJa$!u&YWBxI z$rhZJ^dJ9?90}3(`%1ZxjNep@I~;R&Jw`7sCc<(CmAel&cT8$*x89DXz^m{vk*LFt z9AvJ!?K24|)AqLg;TpeB0xXJ_d1NEJ0maz#^xJzxU8RqnT1sy8PJd^pdHNW`RUA+3>IEMWS8Hr=T~bB zce+$p3JdYw?Rui_@;J%^AxA8~YPYh)s-Ux{>9UtdUQ4hi$AVN}gwDPv;g_hWyYc}1ise?h#Al2OZojV}k_v}Q}$kWnoe+L-E zhAJcYo0sRLl!Hm#$LVnPVn_xVG>mn$)rRTG9PH8dUh6$C^dnUoyc_)@KgUBv_FpYA zeQ|>?Zi{;8Yg2Lzv4P%A;jUT;+atw)<1>h(mh3?4B2_Vu zfSh*ptJVT{dt7wij53N+AlV#6^c&4Mo_fSK4R)ATO@Az@@a&#Lm5}FuI4_E9^#tBHFRlHBp{KysM0fnp(neE0t)&zd0L|8VeOfK>aJ$ zjbsso>zFB|2PLd?#hm9LS6!zoZoF}j2gW+FnDiwhC%(xF)h zG3-4s?dALH3MLV~CRG>|Sx&_b&~w#zx^O-@v5)uzo)RsOWxqL|prR_b+5=J~C~1Fv^r&oo)=%fx87gWK1kU$9V zE=?x#VG+)5WQ89PQ3Wi)c2?cymiItP z2n-|T`=<*=e{$kkIB-Deec6auTr45X!Mly8ouo(bkOroAjxflKxH^k21hWPORvV)> z6%bKV`pu3EN)8eJbyG(KFNgP>$wF-#WD??YBt`fY)fFR2s#wOfO0cH9ewR{1=&6;= z&NfgwCXu%R^{16j1xt@RdC4@D7u`li=cJ#6&5ZK`*2G*F(H$1Zu6K|lsv^;;uH|OhxG0cS=n^ZySexw^*plA&EqHA`CQnl5=1|3Y#=K4Sd5v)4p?B$>%B2 zwzsOjYK6^vv`|;T3hDn8AlLE`9gZr6U`x}vhKcAW?9_QUMnmyST$HY$rGyRq^Igt; z+22t&(kC!y4#UZ~edS2R$W-@7rVBh+w=|hXfkq4Mci6lmAId`>ABEqsEEnnkPm;y4oXmx$M~&(~8;9T65jPcCP5^Vuf;CDVG*}>dcs@`gWJq7Pv^FI<5Ac+aQK+&(gN_5NN=rEg+NfhHlg}>^QP6kGJ<@C33 z4Kx_MUBO`p-Cyw~tr3E0zqj;8@uUDWyk>)zTgh0`X!(Ity83uQrE8Vy-I|Zcotn3j zDbJA?JM(i>(c1D4~&9LWw5jG*CiP2$;9tFq_yT4B4#I72-l6 zy&NwM1G1A*tj58$hy-iC`_gYN8@KAKatn+0eBf_Jz1IuR7 z!oQd07`{+V5Dkd4rTY&xK(DH`O3(Ev_)g9CAg4ad)9apibiPE*29)?b4(@;2IM(W& zv0D>965pAfBa8-aGs^0rd4(*$iqgpw9sh^Ckqp;%E3>g%!m!PnmV7792x5^5|MWQa zpJ6#r0&Min*f@e{L)LQY$%1b=vPr))aJ3b=h&3i6;K=0BF6yFMC874&!(9Y&_4L10 zD(%OsLtMW$=WJ^WY2rLhi{?PLU?`#~7rIav;Y8aS1&IvM2t9RvLqfeD#Da9ZM0n6~ zGb3i3wps^$1S+Z})@exCR8yncso3J%@@uOb{v#>?BdggQfU&#u^BU6#kg7g)dk#JF z>iQh3nSE!@{CBw!#T~Je{eKM zfO;*Na}hi!o!MjJ&xG+=U-rGSx~O&u6|HU_ARr}-MC>!$2y}DYy?1c3yIb;^tr=iY zbXJj35rrUPvUM|ITR_HB%6z#`D1~U7Y~2hL&1~~jobP%;^9?Ii3!jXVph5XnpuY85 zk^j)?(2@1t$F=*z@TLV93;a5h8$rYCp6$|kH4sHPXb?_N^hlv`l$7|e*ze!sfn~2> z5*u$IT9h;mV|fsJ1G72?8uP^@VMJMLFD_+PU&+`6s#_>A@58p{C3iZGzloN|2hc3< z!VC8&UJKIN6CVe-bhX-#)AQ@XFDNH}>*~geSTC~Z<6wZf@g4Z-t${w`XsSpyh}Nyi zx-awU^pUe*NuZqDkPeQ-BA>X-7dj!P?akM+Oe^r{Flj=Zn??Su)Q@PPa^? z84P9{<@1Kwi8!wUa{kkZUu1|xAzUy)iS=(3H6?KWgRjOv@*$j}<$pu~Fayb=p=RQ@ zm<+C>yha;)^tZ|#RG7g_x`hufAYD-)9IuHY40$X?!$758N4?KB#Zd?2^=jy{Y(4$!6gGWw1;X zxG;vBr#qk?bJva@vdaUR@Wt4u5$B`{DkwH>NaY1I@FDFsxUv-x(cnU92}&{H z-xR*$n$Jjjx8IX}r8T^@-+0Gln;S)kg9sochQ@;2O&DR{=j`tUu7@MdEvzN9W0P^k zSJ$ZWDM=E)eMLbVNzx=jfP?z2Lqi-B!E-?D&FzX&k;#>ukgPyV%LVmF)7nRC^`U5w z=@8+X1f>Y7cKP?aX5UNxCbMM!eG`HNMdTGW*|at;n&DPI<*pcr{?N47!u&nJxMQi~kR@2x zq^Ob$pY-}+uPl;jj@3F!>YNza@GL$qCga1GsY$pWz@u@&?1&1{HQNg=OljdFyO5{R z0D4O?y@_P^de3XC6d)*XaLZjSp|YmZM&9Aq-T15XA`RlBFXb$ViqJ53D8w-GsUdI$ zFR!!7G=^W5QWqY&J|UG;*SopB^_5<4SEvVq(Uwsl(j#1Aw=qI+<0gSXB}$0<&hn0TeCp!Z+y(9>eYIVXo3LKWe2wRe6L}g6{fF zA|oTI1O5K&;tUcr6MgaqLcM;MWC$nqkC;dM?bjD+mnYOBRmckk<58L>G!h-MNjm;c@o8x(R>d`4n)(N#t8__ zcP#W6C5Q`adJK>#-Hs4|Q%7;r2bQo6McCp@iS5wWSJ%ZUPcoFR-*-^Sj$Zvgf<|S`G%~j z{LTGx07-ls)R7aNLQaR7<38V+0pN|a@SpE=RT9xUL>@MQ za?5=HCu*TMAy5K#v{O7@{#vi~KEy*G8oD;&*n?gL%q#+ss@62s@EwwE80b)fZbo`D zKqkHUz9b)EDsx1Wtkqa=x09dH{4FNo__v`|3E_L|@AuJmuB{?*NDO5*6Vm59M&hrHfct)DMFl&mrYnsBOTtn{S z?|mZqZR)-hZB!tWE6`XMOE+to(1StC z3u*E7-!32&Q;00k#z8RlxyT63LXr}i{fH5IjeVuMjub6?(~G|g(HL~8hA8?;%#rw& zm_=p?<13#aK-A69MRecaXeZL-x;6$+W~emebVRCnuaO-X8OSnoPjy&XTz>@awA)2w z#2p`I&@m`Qwhn6-ETanYswUie&gj@qVJB&5S+EjL&imZ*Iv#~qL-CLowj-fzy0D>j zAe)-XFlLAjC5`Z+IHeksDR!>=2*0JO?f4vxo4Oj8BOn-1%v{$efsLaOC>J?}OQ6Y% zu(Ere#^EOnkb;n-46NZg`G-VGf*Ni3VZ<59QH>~uH?Wl-%POeLe|Cb5*`?&k3x_U- znDh6@NoiwZ^=xJ>ll3UyCNh+bW^uh(bt6yC@p_vEgiE*rytA2z#$>qF=|}T7jBi;a zm!o{!n3G9kbMQI65dSuFLIcCekdV4kqj6n8; z_a&563OyFN^P~!hq$4I()#{;sW2ZnFgdL}GC&G$`oJ@ye0~LqCOvI5Fyz@pHu*X0` z?)7kmRNS_J<22zUkf|u*#q}NBxBCoBVgxfpsdOV9Ogj;jL3r^|zB2(0q?HUSVaQ=a ziCw|#T_1C-vp^dy==IZQFs<`A%_)UPqL*(4KT@777te4;A{r)L+WHj~ z?(R)Mkb+3fUjOO+JVQxPl9BE_g<2yDhe$norB*%gi|p#+;K!q%jH(d$zb$-63&1Tl zjxr?dlvo{*_yKz=L2B>KqC$U^{J+ril^LA^Vfe=_7#As*=%D!}MrrD@`(M4(b>7*3 zAv#-KPY^v0HxW=);u)}i6>*%oela;EYZ2$24PGB}!l^rszVlVxpn zTeO*j1d?NU=l_W4KyyZ`sZF^ser80=McyJH3&s+p?+YWTOB9Nk$9fA*I?qrWa;v*e zq6O&XChGk=QPs|u17$)vVP6BHSxQo>M4SV>fs^QlxHDxcm;0>y`DZ<8b;oH|Ij~}X zzok`8bBMs0QSuW*SfXXSQ1r5uC~Y*jB4lZ};21Rj9GZXS72G{WIYNY~$Pvw^h(c(^ ze*4efDl`GjybPXbbQrk##xy~M#F0SqtSD)u$T=ZW8g5~b*I&wVp-_=mLnA2JIRWkD z5Pa-m1k!U<=`9&Gq`GTf+Kd64EO%+n<`3_GICp%>K?31~Q*)M1)QE?XpVTFQl19;S zrrwKzsts8+L<9ZyCy13>7?)i0i?rz=+I{;LstC^y&K8uN-0!f{%R{ zCB}BTwvLR$j$4DA`KSXWbYglsah~E8HzNm6ZPDf;>tc@RlB;QR9pm=-c&rrtv_f@$ zB)UgRFu_;P8M=gh19E?utrKeLH|iMhD;DPcKD|4)P>N%TRF#IE{7SfW7*G0Y9jrte zxSF=hXGEn5Ni^JUr^jFT`WRkSs}bf2_c%&V=44ak2pvV4IPlcw)@c5{qT>{vY`8D2 z==>k$@ibGf6T^pc+C9MdQFxeKR=ANp(E-kzKlU}zI9Kp>5j;DX)let4qE1Uq1KG_% z4aAPOhN)PnDD~VW67c#`z({+3AuLBKyXp$46HpJzKZh9&m|4(~e~76oz>+yHhQmoi z({Q3o(NRB>arj*G?`2OLF|!6ZQ4m;+b|~$M8sjy!q?iPYX;BqQkn&bDCPZ@Fm6hlq zQi%?}tVK--i^d3(+L+sXgu28(QHJ*Kt}}G~nRNElYwax;c(!H4Zj+sa#SV zRWb`n3QD%rf$r|%V_pUccQMi>xTA?Cg|HOwmpCB5mdk~!hdWY$I!~Q=_-&n1a;o*d zdmPApSltm4o3oy9>7f1w9Po|qt!|ph3^C{Ixwz3{sWB|Ck$~IW;w%4o{1air{dnT= z6GDn3qHTcSKZm6v4)QQAUK{`ula z0QTL0gdrM%^7>=Iuq#=F@Hii?;4t!_=ujsemxi*c0vK&1l2un1HVY^wzw;3%JbZyQ z7!h&<3)fhWZV?iA%?S2$T***A`f}C*$Jm($S|HpNINGDa5CxFDvLJBA+WPQ;z2MuJ z2Vm}^O4FHlYA1hcJVUwHS)wRl)F83nAv%ydfslA}B?n;23yZp0?i{`ZS4;*v^O#wC zT&=f}_J?59?#NP&8N~;Wcs)lJ^m|-#%PqxJd{aG-hS&JY3{N-}qFc@bNQE6FitG;< zhEC0|bsJ2onKP8BX=4&yhtl%6 ziYu=IQB!Ejn)wjEtgoP60v_vosfIz;o)4fED^JBV<2LgEP_y_1kYlJN+%T!5Iu4_X z$`5&`@1UEc3k{V)E(P52hG(pR92Eh-pd4BBX>i5gtLI_WSX7C`qe5ELSuhj73M{o6 z9=i0q#f-hE3Hplsec?E6ak{@wd@q}*{cCBtokahc+Y^xZg%Tge(A3-8MR-Uv;t8Db z*q}87PL-;YG|1ux6hJ^Zft)dDC~g zoW8_v%tImzoj*L=q|{0A%i)mK&tvsUL24K8Axzp5L0+GT?jomEwSFg+W8W5L_pVK0 z%9bKA?j3E}8C_X41JSJO&BSGZTN^a@6zF->PH`Q!Xkv_Zm%6f#H(Ce=jLkwA&B zPcElAeV92~uIPbDF3p!4bQ>rO z=?KQxbd1;z+lx~Ql%%RB-J&JQ4Q?9GS1yZ|=~zQz7IBf$-G?M!gW*Sh8@7;e=ydM* znIQ_Bd;)SzAbvmNSU-TzPdvAHGCD$k^nf%HP68)s7nN9%xcijs{cFDgL?h*j^q427 zJO7s?QO^2LL4&r zkrq>Jx~^v)K*w^TVnyvdb+DQE&*9J#5i54<&Gb^(VMH@?_?*op|HrnDRjlau7B>YC z8&eK?-cS&2DUn2XUrqSAnK@PeI?MN-+H?3ic(1>)8JaeFL+nkGaLx8LarI+4&o`Tzq$5}M{5 zr^r>;Gz{ysAt4wS2@Ofp2Q&3Kd(?sz90$Zfjwg&Bba4bP6mp$#e~(FK9ipWVo+;$w zO%ac1gAX)WpCVscj_1SE)YuqH;1Q3XWlpJWTRBcn`58FCubnOhT7VQWm^4y}_>pA;K0 z-^j=b-JT0AZaE8`&I{@%86Pe+GANsd%LStI?A%=YcyZrG@}5~1@s-V=k0qIQ7>R&3 z;O<;stXXyF6O2{MIA5i9&G#tRQ}g3Jb111P^IK@dada6WOfcANl)%bAHP%_Pxr^ZJm|GN zi)svJ(YR)kIPwf4Iy1XwBFFHhSX>A11XD?oo5?-4O@JKy;r@Oyty$}mty!AMxJa?x zEqH=NZaNt6TROAOo~BpLnokfN3o@7I0bX1V*MUpsPBRQ2ui&K9RD;eyXjRRST4DNJ zr^78$y+SK4MMPUe47QzFO#1i;h8;h#Q|Dh|Be&)7;pj*L!^hqUs(v)_v^n+alYt3d zs6QZ;LNodLbJl)3vrXe^7U4DO9N zNz6^yLLu;HUeKij;vO;7NhBU zDVcbb);0m#pKK`+_op>(tFb;_^c@s?l3ZMdok2#Ggk1&)MZ~hT4iTHoWCO+iT_6nJ zdBpOmAIM}6Mxa~OysenC18h2o4*WAJtyq7od;*^Jq^w&a=uWLN26A9_EKGqsphL_A z+L|~>a15sgaCOz)JOJ09PCHPWI8#t`X~FehfMHIOF*6EvK9MCHXW;gDf}`J_)lSOP zRuKD<?HqttwnRMrX)1rdxf{IlU(t?u(ul7;l@JDVly;vw|PWv z=1ym@eh|Uuyzh2}Q#j&=(3A;WsRX2YpPRuWH~JzLyWN7Lq3Trc2}==>p%$-sv}V{) zfs*Kn$(xKd8;HZSGp*VlQp-pLkwU9wWn^%(;>=1WFxnk#|I)a#<$L={c`j1z&t^My z_(tOLXb~KOfv^`CsiGyr`Ytt_K0kQD586~np)||3);-_N1ocJ+Cwh%fIWCF4XT>OV zZ4&};LX64U4?6>H|0h$Ylr{8)6Oy^lLk9c^lAMy$iFU?n4=(7LJqp{ghDB|Oc~F^p zTV`=m4u&~q2*ZJ2aP+{xUj@xwKHwH3G0+?QsDWw>N4_Y4#j*0+umTTAF(&9N-=wFsGxN!`xW`lkvgK~6v9x`} z{6S8W1iznmcHLDHQ;rn%(WEpNx`o?U$TpDjNw?rmFht-F8ubyH#w9UfXSO)gn~5h< zrCk43m;{1n3>EcZ2Q;3K3lpC36q5;?C~p&7*HpYwa@VI;s~#X0$){<# zcfC3W$}wH1t&WMy=i?(u%ut$)b-+(J*GT{1{Vy8F3|TY$hqvD#<=57n7_JFmVBk-&RBR@446(!!1p5%|XUv2B01k)6Cml!I;ugtk9T!?K!zg2Uv ztNqaz(AB8Z0Z`+Fk?fR|qCRw>XTBnC*Mpz^<}rx4v4SueM9ywWQEKgUl%CcqMNK)J z4@L-aPb2iQe54TcY_~$~Xqgv0>3T+9mzPWNEuvXm>K?Qv7(z5BTA>#(LW&-rhN~nT z4;0&Tp);851y&|TBcvbkqHSKXH14OY$qz3m~)4(mid3Y&Du1t*tz6Jsn0SlNSthX#^ ze#uHPIWqqq%$e}&MdQZd4jNlA5fMk)W~XV!sPInI!D4v|d^5q_b4(av>sw&S$--h` z8h+l1TB{~#&GgB3TpMYO!6y9gWO&slTywgb2n#qFjpGzc3Fb?NIHTDO0pqU@EOI-r zjros2ciUTp?)WRh}9xqZtW}cgx9<5PR%~xqbGU#)b5Z$+lknb5`O%KN642 zG)GW)KAQl0Ir1kZaOB9upluqSnK3j!hdRy2t@i{ z2|>+mo1j12x2D|ZY~?>1j|_^Niu)q{97HN@cnD?`@i)R#ol2Sjd57ZpTlfa5jxT%MDbT1C=VT30-ukRd z42;pcdGP`@Jf&Vha|5%|BUh*_3>@f+(sw8YC|3~gGrnsq2_2Za2qi1};*=t`S;ZS4_9v;6-O8RdE+j@ z-QC@T>)=jscXxLuI0FQCcXtSZ;O_3O!JX{n**)+6_Wfh*oSN>M>RWZ|c29r4w87EA zQF0a|gyexyw3)QjIx!u_e{p`8`;7rOmVe&+(F1jRb%PlZ=Vr6Aw{;vy@s04|Jd;te zYed?pixDT-36fJRYlBbiWn>>-ET9{47vWtGzC;?Q8?nqO0Z3zvwp1%YRt%~oj~q39 z*ED#F<~G84tde0wEEJ;D#j{*0^1mL1Y~krmHB!%}>+^^#A~Z72rfKApG2sq}Ki~y( zGs-)8t`GBAdbEeC=pXWY>;6v2X6}}vf(>Yu>`7}+WsaJr- zksmH)6+GWgqMOl+E7>tsQfRH6N< z#*C0+Fx^&WXB@$d5Hd>sI+^=I`mBz=H#$GVy7^YU#b_#;IybZ7RzEONPpXFh8aC>j z*%7_rkRTVA*b8@5BXHU1nAVUl>ukkt=J5j$+bl*rk5xK;esIKSX=ri;*&S^{H*yWy z0uQkg7)f1h6pBaBu?^Z1@oN~MnxN2kC6qO>9_2Tyy_#|-zKw%sW=J>a1~;h)=nV8( zSoz|$V49d3H6^2O3+ddjvj2+Efk>3BK$RoyjNd?T_N!YOr06nU6)MWYff}NFg3%fw zD1^{W?C~S#67%VJa)}if{*P3_g9k&VYY{7j;b?rO8*g*xb_J@OfKzu1!8*)K5B~WA zM|#OT)>FlfNg`M}6L#@~bI?^Kp`|>r8Y>G4Dp^N31ozDAr95(kFo8HTJ!dG_4BOCa zI{c+V|QkWEA_$HQ~E?GM>*=B$E1T_T=dT(LMqq3u*t$c%z8PGJ%Tzdaa^X@ zCi>uAqdiK2*F9)($4Ha(bo}xkiKD2gmu4eZJOsYtMJg2GSMvOGJfZX*

C zSUc{*H*7J-3@qCQQib@hDVAP1P1ID@7(e&3y^EO$2dA(h6YM`cC z#r_qgRRPaukFh0Q+0U%=cj{pAaiKmVRG|0K2{AC<7Kg|S0t?l^oz`njnY~6B5+NG+ zuecC9xdKi{&N<(r9+P@)z+o&m_ld9Vdc8b3KhQ06IY||}*g37f&bm8lxA%r#$xatO zxvdz=Sni${jNdWtx?d7c@}3h*33PmVfRtLtdTh~nve<6sJ#oJ0^z^72c+Lu3Tg{H2 zG6AAvt&LF?=K@m#Jf$(j?^m{!>c`E{3EX*|;2 zpRVjti!L`$EDKIG80xA8dc0fAl%F1O%fF3@lKQY9s5gg|)AKQP?61m0@M}Hnr_EAf zyv)x2xny^Y3=Xp3@PpKldcHvjAMfYjv=%BjmN6UnQ!P{L&iY2~=dC z_dhZmjJn`o9Zj@koJ@6oyfK<6)2+HjO=Rtye|kV76YtW}eCLSoa5PQilKk#MClpt% zIk30|LN%xfbk=hF#`4FQoM?{We*@nE{;uL?s)`h=lNWo851p7Jcm2#LsZn~gCA&+4 zR0ScT|K;3&5GT~q#TeXST0R1tfv@^IppUh(Nr^Bly2 zRX6i-cqgz^(6QdE0sIx>IeUH#G;fbJZ?LBU@bOmctq>7CGg<)u{?a#Fg`TTLf$}xe zvY|*F7jJR#`1CYC4UGLKRs+gRWCV_|H3M22y9e)JRqg(5wUJhgX7vE4Hl?8gKDfHL z5S36M9NZfz1l+|UIE9?VjzjJG114iXrJc_Jp_H!H z^|_~~p9Sv|;Gje-o~mfF8zDbl%@!PUpWZ1JE3}Jz8Ot`B$cyAyZ*KSEbuIPSc+LEWtm5{cA4x~<1^Np^Mn~ldFF@fu5JRHF6NG`fVr`s z&JtKxIb8c_O>SJ5IY~;l{Rocxk~sYVJPVA^8+5Su`Y@3Nd(880;rjk6aOQezJntA& zeEIyT(ZBNHj`26v{SV3=nm5#tz`j^zwKn|j#)sHvYmRZh_D}Xk0?190)?MukQ&z7E z#Ro>xvY4B6<5>lvV*W*~iI+9}%*?~G#YDen7LabeK{{_QB%2G<>0so=S@&ucn{tLU zOpOSVlN|962@=?lla-xA!NmUF*T{rXW0B_YL!ofrWem&<$*1I3P^BE!k_i1lJ9 zpEpos_#$?hgt%UC^<+Ehz3wJFhh8Z0Ng(|cF0j<*eX>%ScfGk5N>;RC<#vC{Qm9!8 z17vJ}S;Y*voyi8(*(RZoT@`SQy1?TZnca|3VJ3!sWptc34tlt}2trc$pavt0ze5K; zO?STws*Gd(>B)6bSP^ux{%oEkx%zUbETF|n&`>d-JrH$B@@Lgn;Y038F zQ8BGWMxrFf`SUh7tjx*tQ4vfPXB)WoU22Gnrw51>?cS)|IF^vR7yrAN08DKhl$@l$ zcvjFtGXpoY?@uzASWLfj-&FtBav7Gv59D%5{-GO-)FrjZcNJqvsw;5dA+_U!hNcq4nAmE2jYCC3)DD>LaMc%b- zpGQJ4d^WUg zXJDUX8W&{yFF0#0Gd^NSJb%PMj_llaqQ1M2d#CH0oj@)Y? zm)Y(K<|jw7YEMVpT%RmrwCPv=9$9pSZMX~=P~S^Z+p*Y-xuk_V6(<2t>{|Cxp2K}z zA~QGC&Sw76Q~uMbH`1s5n=R}?KKprNz2x3kQ<~nfU7_HKm(T)zDaRBs*$bvTETYFDKRo?A~vY{)sDIzzQho@8ytVvzok3@qBcC zi%D?D7xX)-LwMHn_IjbF6yjlxvMk$AGu%kmx%nHR zPosU=S3(qF!`v7Of-We9*B^FuP|Chip1R4mExI}n-HIsegW%K@sHDVQEU8GtwAq^O z4drS-N7BtSgt6*>m!Dp69ZEV~a6MXd-RzffL`pagZ7U0M!;>Bo|0wzjdq1I@Fe_0g z?G^I!jg%w1Y9-={u%G{nTBUD$gm1L^y1w4}P%sHok*2mdQXL*sb`^z-PHQfECHq=X zrpGI=4K|D?qZF0ApJ9MX;DmUDwfl)S6xcY}aHsO=s}43c^E`@Bfr0r(+n06@*Xt<7 zLk1o7^tqHqP3diR)|_0J8?v92C52fD1>33q$QwYrNuSZ8p^sQ4;M#{F?4 zSfVKo6iV-x_qJ4BmrA7>zXe%KiiZ+%u)ssuC7GO_7nEd#?dE4JeFr*cncEhrvSX^A z`UI-Xy*}Ry96XrIloxW7jmPR0WxtM9&NpX67K<$?*~YRQLr zYu*q|UQgXilbiawaIrxZd$~4Pz>)wKXu})i}`?*}h36|KYf=uVz z9b>Q}Nc=WiRb02kkf(4>g4@NulFzv05|3nX7uPfAp2B_1ageij0J{*hlbFfnM!U!9 zPzy5LKIZJ*Qn1}kT+{`JAB`(oxZGyDQ|!D|zjf|~H7z;5>S=k1-qoJqqZ7BQ^+dO` z>^GmG8658E?p9dfbUCNwd%Cx^+nYp~tFf$^7WKebKJvNYnym?W`^{~&BLHKsraF9X zRkvGvB&6p1M?0x(nfIE5=XZhx(7Z@+3jm5VC|j-bW(Kx=+Al4VITP9273B6}|+S@lzqpD6^SMcUd3 zMzqvo5ZG|rjPRTr^pu5_d-?gwL?uFLoyf=bMM7b&=+xVT?Mr=;7*$StTu0Y}(ZTl4 zqQ2+qh)DJ9RB5)Q{vNh{#$SYF?CCZYOd?*=(a;GiT8B?GOyGxPG;UueGAQj0Tp2 zjA@J3?$@dloiAUAH~ZstGkx~U{RBRLCi1v@VE^z@t!eOewT};!Ykryf=Ka|axan%q z)ZTLe&ja+7K4q17O9rl=WSa>PqsL2Bb(+d`U@D;? zK~2@w?SvM};4$HZ%LINF@e!~kQV;-N z2cS`Wus|}s;T<$6G%GbdSPOJ|19JT=fwkHbIMLn*2XUS+o1G&2z;hE78L8`tK5w9) zppZGfa`*K`?^uo@&*11v05|{X`uG^T;f@sxq>hfx`uh|S*G?1=+dJ1taU+10ZW^G> ztYo%p+)i43+}PThTL6Ca`1(d|*)+Iml@>&x&e1vrr53mgIh2J+l%T2OpxNGj_)%nT|)^x3qq$eVqhb=Da;j^xRy{aKW_24LMy4BM? zE_e#+`6`>2)|bq9UyB&-`1tzn)K7hu8yx=p5~gC(wvba={IIA1VaMfYC2`KZd|pH8 zoE-WPe1r4L<3}(^nvn%!;}M=Dx;d z2^M}APu4S>nmx2AkeMH9BZBd9jn%KIcHv#+?!_0Cr# z=yTTj<8XE4n^?QN9#tt4+M}WO!OGNH@;+rL5Mcd-_TD@YtNU!AGS#|I%k+!00mvT6v2@WDJj{sPIyg|l<9 zF2B^ib&YZzqkBX*K9ztM=e`^8M*_PN~H?LO6zet8e>a#NPb ze1jooh@L)?jvsVjleq-ve@zm7=LLOr*hNRxbBx84``RB)wEU*-=|zy*88;KNHeS}(T#H9iDR)E^N?{FOI7h23nU%w@fbAUSc{n3Z(pRTZR*o-VT!kC! zZuEz>3%{^9W6x`3u*O^2=l6dINL8a86>)zx#_ViQ{-qV~a#_mASC9sC7IL@Zl;=}z zmU|?yYwir?fKfl@tluha4u>qbQp{0^T*4zqPO|Xe>QLZjOBebhsJ09>mr%Zv_>Hu& zEY}hb+FSPSS&J&(TvJtejYn3^?!=Z{i@O6C!IW0O2ge|1m_2${0U@WA__tzwTjV_Cv9y0KD zo4I;{AgK4AkFNrBJbXv@X`wnO(#{Iwj{|-%jj@oEueR=45+5CZz7`YD98gvzKFw&$ z*W8RL;<%oiqm+^sR;Vd9VmC(BH151=t636!MK?QbbqCshny;9?xkiK8S-_1?WNRzY za&;2-Nk0~$UbRdPj_9Y|cfUbj-=Bv)>Xs1E;d*OcQit;@D#y15ESsub&>V+CVr6q- zat-X{ua|f+D2I4FxJcIql9YZYw&gm#9-q0kE zF&~r4G?nr$66A?~#*pK;7wM%1B9my*v7HM3xsk{mj!^T&#LKc*>STLUBzE0oSP^z< z^{0)@&gQ&E(v00|s`3?l@i_|7iCXehGjzb@EM#Ozq2+m$FssX3 ztU_D$k`KV-*48EIWhXI+jo5w>zKs;!9tPT9`ECqmY`qBqEmw)*lZng_d@a{Jeasl6 zx}2pX3^klcs$G);P;$jufeS;tp~DalBM+%?3d)Kh1C9gY=)R6D(Kfxd<<5_gKN8o! zS)3h-O*_AgZVR^UEz6nLLE`amrH9>q81}Yezy7>b@Z?3rhB4CaNA(iNwcnbLlPwGc z;CHo3a&<5XcGNPm!fn>-=yHp8-1r_oLK-PTp}to{4&xGdZib9+LLyG$8>eip4oTXz zM2c>|x!Q>j9`bhInl|j3NE(ojdfXvACa=mgSX^osl>7)XM_>0%@Z3g@XuicsHdqvK zuZNM;@f0o?aE#lDx0n`GB+571sQ=IQ2|SSzFI>lNLhun(`S%Ps`ucvDT=g~toj#2G zqWb%U3=$Jo{2C-KssNE}u-uqi{*a@iq6Y@zDiM|%cv8F6!2XoLYo?^3&%m?ul1-l* z6(<_bf^AGZ3{Zq{&Lw>*{=&I@bAqvuWv5MYD_MvzfM;9i?m`qy6{+mX$5^JutxwI= zbG(6Wx5+iQ=wLR#%jd~A|L}l3TZ6;|j3%8eX=$V3z&dPh-e%fD+;HDqDtn2@;EseI zB|KQ7rBNFZt6?>i!nzhfDy$aj`6TUbkclJB=e)IXxD@Ik&+E0U-Gn@wgGAlq-zCO< zH5U1PUTop^ezpcob(+1#n516u9p2})NRnepzS5BA!eO&C_SLV~hzh!2N(2x6SYfTM z1b$W}muvl9pU99~{=hxMCfAZZwDDCjtpst*iv%C)i2OMdI0C-{hc4m6R7oGoLOLAr z+^n{_nYgk8y7kX6!I>`9q<*^cg2uO~z*uHu6iRA3aJrK7_R3nYtZzy;HD=Cc_5}i0 zPR)&mr}#&)H$r0CON0n9DN~tgq-w^T( zje!Q#KfM61)vvltueGJ%{y8~@M`8TK2SY5~)~*P2m*XT2jk5}VaX&SqkYo>v?m_Jp z1Q#?Y1vF93IGoEo53C&i0J|?YD3s_=cptMh_Q8+v!QvBSou>!VT1v2?ewMV0HU38Z zspvjkX#7Pr%K^uG?G~iZXoj;aqZ`F{h@#>SG$hGIxBWOqKDZtOX9E15pCC72q_ay$ z_sW@YKQjPDchO&STKK133-{(ZC$vaQWDtpVrqX$T$fp$URErCIJ$>J>?R^z(h<8NE z;ec11g3nQPh?JyuqboaO(;M!TblPB@!Y;ikR42Xn!ysvmt&T2c{ixXw2{dJ)onjw2 zkKZb$QY`=!x8V;ajSUHfu&2}R+fMHLOYId`il2G++767E0yBHBC8Q~oP+ ziC~eho7Q2`2|nc!w@qvL%iqvuCT{YfQh?oaAo7K4ug!GR%g)Qf4bv2Oy$=ZTUz;|1 zndH>Wx=X;m+jog5hY&;aBVQ6Mi-KE2fH`X1apQz7n~!*l=0WY*+KMBQg1f9i921kKiL-OPq49A9UTyOG=A zXH#?V!Fm42=xA7@8z+b3!U~x*)%m(Q`fD`3`_)r2pm`^^o)LOM<90}xD&AI1-*heP z-P0Y;1j+}E5;=EmA|jZbFA<$MUoQy=S)+3(BX-2hSwP`4o`7ALlB@F#rGNC`? zzMqeatpowf`XMZAY~?*m1v^@vHPmq(=LR`SQ%t{nIao@|CD@Y3YD7!3g#cY&G6OBD z!rYE2N#nSSRT_gkJ@4o91_*e(zLOHB*yZeaTwf<|5AX5d%`^*QkImZcc&{iOeGOfT z$0N~X;imza^6LbxxmN!g1Ak>(M|a#osL6{SP4u{aTZe6&OUck44#HhN*z*%ql@Z^1 z#9WEYIZ~u6Qoq#sprS%tJmj0B!REPQ9MniWm+swPr56bNb=iOyscR{fGQ?U!T5LZ{ z4w9~_B2LM&8ZQ~v3m-7(qpk>@y3zgPZ%SP(XXA=&l+n>8wC>+A#W1|?et~ZFXjEDM zK$YcrL4I0Om|>zBcK$2**kl5wGvIDw>z=M9qn(6c^?IzL=fxH8JY|;j;&+1Z`_xyI zlALc^w7rp8ogwb;5Cw0yo_?D9t>B}6ENCw8M?1EN{2G@?prWO(yPWPy{w>(0&`_4c zZZn{UKxi<*vQ=BCEmqrmdM31hk)T!=%Xg^}O%PMr4^2kvl*4znUtq6pXl=QX@pz9D z=4MVM^ZJ?(N{a^t;^lWmEu{DHGNZC`kr5a9w_ zktoJWzc=oVQoc?1M=ljhdsxR+5V)DDrma;48SZyZy0^JG`F>CPaMqiZSesU?HL{b9 zYYha_yPISg~d+i9)MC<~OI&YehjXChSq@Zma5q zeeV0EUO!e{EXTg&qZP^@z{)P8xM&B&N9x#zCcm^I6bmifEfyD-!(!tTYX}X_DNWle z8yE7!gSqs|OR7SV=wXq-5?m#X#;;tEoe6-EqfGB-sQ=w41z?hRy`D_xv{lKbv|Z`w z-FC?C?bj*0?4$)^j}@F68i>f2{Fjgj+QGPNYljU-lgc@7F@7&Z2qLR$VA!!^!l&Lg zUJmDdLa`+dg2Q#3r?Ju4h*l7Wr)$W)oGMCGn)5($#EA;K;^ZxzlMF(|xQc47d?rx=H=mw>wVd#+V?m9OJ-_ppGcY)F@7ep_ z*IL(FYZnb!9kMy`$SZMz*G^=4R_BPW19%X$OP5JYMar~pB&sIaa?aXs?aL~C`lXO@1ZTzvnGMqt@!Wz7_ zjo;m_x(Yh>)MCRiVOEsytg*3hAgM|;dPpdpy(`ZxzaohJ&>N6F**$0kgm1m0OI{U`qx463Qyr?ytx&q7y&Wb*A;SxFu5i}qL4x%#V{25$ zrjX=pLGqArv}bUfk19I*%!u^$0okHlbFawW(^%vD$=L6j8K`S6dh)fmzlyNz79@>x zQOOEeo#RF*BAo-6RMqiNp zUci0)$ZosiC8Ga{MA^V#ue9aM@mqq6t3EkfiYJ%*yK2T_^z#F! z=6(&mAio_J!_@T*sv9fv>jQgu%-p>+&?qRmn8W1jz!dgys`GRlTYhfPjP{}mLjZ4w zEP~A`F-gZpOXuK-8l;d)w$^pKiy!VRvU7OUn_WOAD*>)HmC=eXI}865eDm|d;2b5v zH6Fu<)8nQKmBDT2Zyqi4U*J z?Usc-kB_=(3vTWjIuIKY6Nz5GdGlSHmzr*c#QhE>+^2%qrYGL~{82}P zhtXJ%OMXsSz7Cw0e)^5JOgldx`_F_!r4fXoTrbC8J;b{c;nAqD9CF>S{#p`H`p(EP z=?PUY{q`i!yn6{3R+Zo6(<uG=bZmJ;hq{=oPiRK{=Rm?S9-;OWSKjXr9*lHK`YV&9^dd zG9QxcE0{?xV-;GbQ_8;b&RL^m*s`}c2|nXXB#h)#BEE|^jq+n=YJF1g1pi4*rBOS@ zxlfLASQKd&5M6n%@(~h$AosnxIzLMuL#N+jIE~Q^1tL zQy?8UyTp}!&IHSynM0h+yL=7*8n~Y^lBJ)nt%%4k0wasN!22{0=#6Y1ioTaGUSC_A z_G$vS)fC#H+Kah7Y%b~Gq@xN2L3fTle1KRsdasKccB*Mx#+98T8wvQWW@cr6SuO8C}TL6Jwb zOI=gC%V&T8c9_L}2EcHqVWC_Mwc2}xRYNudf`STNPKn6U@;Vor(+^@=MNBu#{ruE- zwoy)Po0Dx{$UOH5c+!0 z+7?StxYr!!%Y#)N8CJY!ia`5GW!P`+a$o4EPkzAnh~}GrU!gwO9f4+~-K*fL#Zbz- zigIBi{-fH_vSy;G;+SL&7Y3iSDqDaIZcMv9bPv#V53T9_%@90pG$e3dc@k!3%|@7} zBDB@}+R1ZUnpIAf(spb}@@hyR>im9;{(y92iIpAtUCRv*Q5lyoVmq#Cn{8_cpMQ~F zo^1&kf$EOz*PzfV;wSW^-{fs?nDTDPQEC(8(jo0R5rEv=PMQ-RDW@9euAPn&Nhf{%Qa33$Vt$1NXMkQyIYf@KwY1Q zGqJ{$ktxTM`Reesh_YsKt|hJ-oNhAddEN(y|L`jSn0QYBCuY1>ca;u4IzmBVvoVlK zIr8D`nD16ikkB+FjyV-Udd~?5NQ65u8z=Qm*Wbk|t&$S>xZ0kE?*{m2y+yP()L^fr z?03`P@~hHamY!1~%S@crd0d1?gM^ z2HkU4C7Xt8)t2 z-QS1qi#nt#g|;{0IbS*-QB{Mqb?cY(VJ~+!B0iRTm9S2};ddnIJ1J~#)24NzBDpWz zKH9_}_h6TjBNYRXgP52%hFnuM(sZjgMnq(fhSzsZ-NW(^-x%qYz1D~0`q-fHL08X9 zd9LEX%F|2I%)t_FjD@tPZ$fE~mgZdYXmF!WZW5}69g<RGS=OL7{Hdc3pF-m-uK6$GbGO5eIREP zin|K|+L4OmRvX;2v#TOk!j+{#ZRZIKuZ2nzbnm-$l4^iVwxGM0rSQHwmL{F67&9-? zw1^P-Nj}im5fqEtGw@4kp-^ro^8M@o6!S=a9!OSFa_#5GD5p8MEy-?U9od`9R280! z-mz2fx(l{?iynb!dK-l5=5VG^zMN@AGTaZM*~`MxbwI~+G@f7^<=31}3)*PWRLsFL zQ-J#o#DgZFo0rYIGu3;mMpBltiT|pT-dl^iW4wpb|$;)Y+e6bhOY8A@8!I`5qlD=rqQBFI~06qXyf^V%Q{xuPOd6gvdPo^VU zJ%81k;P~YpubA?aLasQ~aCC=V_3qyt_SIKq=?=@dCa+xQU8j6@us%(;9=u`Kaq`=U z=&0y6{e9T1`jM-DzmT78@^ocmKA$a{deQ#};rgqiEAG`an3#Lb_rrv~lj7^zU(l91 z(}YgGw|IVp5Fr2^Vu5Uu)hFUPL}l*?A$+XxJl?m0f!~Z+T6##A7FX2Xl!?>S+DtgI!k=(pW z=kg}~83?4*(KEk)wdZ65$!FcazP_b*->#o@M3b#Qky|_KH7qS_$?y27e#e;kRx3p= zwe4AnW_yey|8|f0N-@6_&p#v;z-S5fzj?bIL{h%BkulzJBNW5j?b_|F_|}{6cc`$& zcmnAGL?)qg>TaUSMZ}@Nl+&1Z7(1`i9ONX>wamkv9n$=J{~H7nSujU90l{_RGRjD| zE1mAG!S&HT{6|GiD&e$Tr+8MqXgq)`f5pnmn|s@m2cmi_Y7lJ#*q%GQ3HMNx4&k$u_E zAQwHVXkN9ErHr3-ebcE_{f^${9G6|jD$WrTL!u*Pr{{(d*{0=w$p2nR8rojYtuBAXMU)sxA`FVMwL2PZT0Nt zo#7s7r3UvHO#f*fZO*5v8`e?HCO=3$ufvX2plPq;P~jY&{d~i6T0urf>93S!Iqv&G z5)QN&ApB%Bic0PLxSyV;w>4j;%ip#+9PU{3_OklHU?X3aK35;+efQ4m-qWtho3HY^ z@!;?-nBo-;8@&B|qv3Yi2^KbqrAlCl!z`?<;J!H^21*aga%GW8SF{i!7zGJCJn0AtBI{Se;1t=>!a&qiP5-aMg`tWWq zw`i1YSrNxfl@JrcTG4z)a|g3wi{FS(ib4rqG18+v)SYou-CL4y;n9K*-<sdFxewRBD&SqqU61N+_`&}2>3(H!C`Q5!(bIgH!QVwW@ zad*(!<>@cZD2a5-c|^2tN4&gErko4;M~AL?fv8@W@tStipu06{s54RZ3uV zFj9f*%V*=P!|E?`SY&-I9$Sutcqp97p5+pC-WXsyV9xqt>A|%-ZE-D@$>>4#;CAUY zaACOoWDOHUn~clf%1B9?WYC>7$N<*T1QBGdJFm(q;+te&Y(req^83dfy{+~+3k4N` zV=TVnlg~h)#zPvnJXiYF?GfDun=U#`@M$W341q};>^K&)L+5crRalt9G7J(`Ukf`e z)2-8FwS7j5HOH}nJVuh+g|v#0sbjU?vBKpi=H=PWb_hDS-b$?+rHto$M@@DXM<%*&lfAtHNY$@9ooDy`r(7ERF9y?V&0#7rf zj%P&fhA`B{+Y$aRtFiTI%WorF+7kBTj9}@d7uYGgj@*aY{ohX1MIAc z{L3Fh&#S1umbds8KYt~hiHuDY6)6*NJW9Vq#GAxmnuSm>=?LzWNut-7>*XJONFAF)@pO; zxNkf|d=48oDw=Dto&`j2!72A=EDplXLXCq*m#5*dkBVAaMMDzjDi?bX_w`RUFiCWj zI9v4%C$r`oD-K)BvNRv=H{aQ1vJ#o(=1s(|aBQ>c+13d7TqE-h@lfpeToEJEj~!%( zS~yuX*IzAOQ08m%Ob~!!B@b7oXfN2MzS}+Qd)^|S-G5?@KR(~FDLNl)yjpzd+O;>V z0QZ|1e_OF*cNMq`L&5%W*W&KvOja{f!>*%Qd{SAZ%;Pb80(GQJDdF$u|4*L>s9_PF zp68SB8Pku3L+zviy4_D)$T!+MGO4uBM7L?4&w4*0O*r#A_BZ2PON%stguCYBL5U$_ zXT=2ITNZ9(hTDz8*;4x2m=k)aRT!ZSFUD1OgWR+wMvpbfWAs2=PMrGOX11_Hw=xUz#uqJRSIA73zOS%zcIL&w z4yJ(B8P9afy}b6G`JEXF5t6N~?Osk3%G19F_>aVb5r@`}NkpNZP)duQaUaG}g9@2k z=qti9BLFC17-Ne#aR4x!vPptwz7#>qtFH>0h#sU9LI(10wWStGDEvq|L*KnGhs(ml ziTs(-lr|F^pY3};N^6uU$^O*ehn<4Mqk{7VYB1OcK9Pc0T_*5kr1@ww2T#tSxUaP< z=p9pQntA>8!p$?p%%M!7x~rBO+6&bouL*5MjQ)7%WMk2y9)T9eGNYo(<~_W z;hRR-kvF```RM+{;fe};K`T;_zay2N&R80|IMfYOB^Ivs+O6(E9I;s)>G4Qz55K6o zSo%IT2i+u^BaoIeq26OrJg^Rj5$t&RSXa%Y7fyBflx#MIo?rO;by5D=KK|9i>5_Wc z!-EAoty6TiwQH>55~u8G&An;AymZs@{)zA6I-9W%Mxonv3xp^v0*b6m@Ht$AYH2Rm z29O!02{t_R_YbWg?YM-FIc?TcC!`ynN@fC;9hdeKzKAsqHB$4EvcXaNyrA1nVi1eK zqK4`~O-9M!f#$=HGKpICvwT#$qmG}*UcYAI(1kPUZ~-lZ(*1ev!6PC>h2u?nL5%0i zpmmJB_VJ5pZ%%1$;o2I4HGytETJ{Lmp%ajby(;9YulJ?{{?3xOWJ(fOCMdDgY2jI< z#Hi5mjKPY6G+s+zIpr60ZNf03tT20BCLOdvo{bOb@;fTUf~}z}DrQ_6%p{&%j3&?A z-QoaYnn*%v-xugs?V_@GO*ySs5%IKO?e)z;oDEO%lPi-g9M488Vx8|Xvx6%2C&B2Q z-DRyoaX>x=0GNvu5_mXmez4;Sk3olOT6E7X3_B-O516~qjyr%nK;OQf7pvd{m?B#V z3oRqsZ8s(LBKYXpTKnX8@P)>jwbxQjX}UXGO|g1-XDrFV0|8^XTB=CI{n1#&rfk{n z+U1IA#;d|l4EXd_7taWP!)#mHFMv}=qyh1^>yOf=Vo) zvFV=CtFSf3w6_gDLrbaSpdZ8_&$5AHHgo;7NByCAl=uT-C%D$vkq>L9U_e zGIDIzdHt$9Vgo8wqn-k6`#swE`G-Dazb-jJ;;s9d=cWxvA%7Nrz!TZnv2b~1yO%+A zBqKwS5pReW)Y4Zz6wL)dfEDk7R5x1k(^x1kkw67afCV!EVf-9!rD2Y4PLGHW!CfJ- zZR&~7>$O$N>X#HU7anZ?^`L(GFH?X4@DZUI}`qap8pNcX@QDVf#V3<$YgD`FYB=|Gi)iD{2* z8+M8puI5M_9qwwzVh1-**?>1G5ylWcxLj`qn_lx<$B7WV)!$ZT^gbtM^j1CU)>iyOyCI$D z0uKlqn`2ZwoK`P$Ru%EdPk!64^hUbGDVpx*v#t&D91YC7uC%Lj`ga<6L>-+%Bq)@` z2C3lJz7&;qjS{AJE3)DpUko>hNGPB@50H>3I!v)@yG?XBJ*&5iL<#=x5?xdMXZrA! z4BhLb8zr7dFo4RqQrW1QYBU{P3^=O~(k%(p5#bZNqa{uUk?` z{u|h7RW!kGj2(M^8*;_FUF9l~1)w+)Z2M{UUd0@9D8H&tQtS=zwGJ5ATZV^u zn!KvV@eCp_*38(-pDUZ~?cg35$|16LloQddeo#06Aj>_-vLT_bF~t)RD8hK`E!}}w z>YJ%o%>V$XEBDn8GDY!xyv>aGWwoTi4y#zvXJ^wEYtWpp9XQ7M8Nz060j!D|^qL9n zEonRzrvhcaTTC-PY1Lsqb5{}G#L^vHz8IOcT^@nyNUZn9tTqz~2Gx2TM~&Ji*>AtD zU=%TukwMoj@o}G?re)4<3N=b(YnI=*6KCbGGFwc#w!0S4T&X@wGusmzz4$qVvHzag zhqdRK2e>_r{2TW}D&}2%8b5~2?D&n&iNhNH);Y>WZ$=0A*2r?m6Z|d-37%rZw?vU; zG^Y_UPKnK!X@;bueLCg?pr-QA;Vq|g76*3Y253N2%m7oq&$+O`wz$(LFfh<1qFWur zOR!$@_=9eFZ0+FPNB;O7AV$95t5gL#6}q}t4Qkm`n8j62m&u(A+#c6mpj~TasSE8# z9kM5#4BH~r_7=&`p(E)7;1C#HUSznpag#ZhGMt#MFnpfwu}yc@IN#uG2@cLFRq|+> zotmZRw|947C$E{ZA^G*7%p9wv9{4-&wZ-@x{!a}g(gecf~d8Iv?P`<48{fEN5w zmtq8WD}rs6**jsNdisrCj5E3Q7qhEhRMTxrV?|rQFfI4sNdbz~lBbnB>_=f4{nrn5;0v2VZ<9m+t zcg_M5Br}uq$~#r&Uc4b>V-B@!?7O;Gk`5Jyv zB^x|T#e_!l`i8}*Eq-rX>!untM{twT4}amz>rr^iCux?X0YS}A?#yu_X%?#kedfCA zvC@BxQ_Z!IlQA#OIbG^2u=sZscg9e8bg!V1ndB#sB*4H;A#!I3!8vn@8O_-hHfCh} z{OYIBoGr7m^RSTqO8v5mZM)V>odKQYW8lj@5P$4ME`Sxt*&+bp`NfAajM~naI*$(0 zN(_>cE7y4)`yh;qkU*N;i~V^^TNo*Gcc^{p2&9t?PmFSS011r@1YJ)b8fBk~dF5($ z5ir;kys=X{S<2T_ZyT;2Tn78^Cv!a||A+}MF|%y=bK#lH`6BwXBZAc9odm$wTnunc z+ss9oSnhAuERnifc458vDEcN1~=$6yL8csMwx zvtR0!T*>9utGbafjGaUG%<6|U-qQ6H!27Pq4&5PK09P|;kXcK{ z;eGh7aD)5@cG^M94aP2A|HkKYvN%QZ(*{MO%EiALG%wguRZmkqIa6N3fo`qi@>C-~|Y>y>3I?GfukQ2=obv*V8cL zfZNm`AC>*cPrMQ4<7)8mB=XdGWPaa$|v+`W)-cm*}HQf*T zsc886YyWb-VKr|AgVDcqnUI;Zb`)H~f`;>*Y1%t~c&`h23Gw1uU8TCdN z>omUOk4R8PAZEeIX#@+{&mV7oeqCpMT z;+(vr4Okz&~*BL>{1EH^t~F6ObG zt5Cj=pzOplGp+NIzOLNcMe;oErRm!=`A%@Ykj`cbnJ$gszwRmQrXcaRZQSEvOT*;9 zY%6r-0Fw=-^UcbbPFEVMI5t;eTTK?Ln}DPfn5(yY`w_d7*i4hR7}YC(6cRF!2-!9r ziL<5s3?7}o`ITIJ54#pI2V6-zc!K1YW%f&9+1dF ziQvwko7%pUG|K$L4sPHqVZBOv_Op)RBbw9T8P|8rmZ@0k2iIR5ez z3~xkioUAk}Gv(nrs^`)CoXrAo+R`uEvT!PoQ4a0CKBdd6w8?(sxxp$9e4>->WjtNp zZAITNkuUqM)O>%2bf?ZDo0m*uf6KO$kcjv4#br>1i~EGMwTPK!x`2S$*B(`&PZiyA zkLdm!vrr+jf=c3*$12iKy_5M9Y!16jdP5mGamfQ6$+|m^yzXcJw_3l??Hrc<96J#! zLT((fwt1zZd-(%{ZQ}sDE`D)42Q{?;Y-}j=<}+B&Yz(n?(K|R6pJDhWD|iY2MK=G& z?n1arOlkW^sE5KXe=xc$oR_ps(MOk}5%;1MewEF4@hh(hu1T zNC0;&mFWffYwt7mzRjr_z+i9~5+Z&eK`w5V!9R7e?V}K_p4LfeI;2DTW<{q6IU#GO zslI2rngp!lsqTF8dQE@oZtet$Y?xyHq24#ler?JV=86BAb$c|6>;8(cX9`N(EpUgX zo>H56_5+zCctiS15+z~~JiG0I+aOg)i`l>>jK z)fL5XM*#qw1oCU23qAvhsNlIT%Y`Ve6uPUs)9{2+G8uN=d-U>}+-onGe(n3BpqOjf z-PRrJtaR*^rUiVXOrUL6WYydA+A?0Nj~5MU9rpGbvF|gg9-^Tpuq==fTi2Z(v6xdk zwwnDiKg1vGkb`}+s=om%O`|v66CjilrI;zBsH`~w_ z1te2y(+|a<=tCXZD|IK;fwx)EnW|jUiB-Um;6Q6oguBu~JqSik6Ul16S-RLM<@{8A znLboYua0LH6>fzG_t&`mdr|65NEV=m^SbSHya^0^RNB7q3lG%kDTx%reu3$Z4~H)1 zJ5(j>)PjD<(p}d>%P3vC2>&hX`qdeSJzVT<)8#nbWwos?TcjR}X0H$FS60_W{#~Cv zXJrLi$#at;hWsw}#Y7^7b>~8uZ3^8qsfTx}1tz*Hi#6OU}gQ zQFWi%4Hk#p6O5)S0*4;K4V$-_zt(W+wANUS4(6V5valdH?-X8J79Nn`=be?lYYr5<^&?ym00R9JRO|$kV5vh-AeZjE)_y`PgzkKtw=yoVb}_ zwZWsVAdoEAobiGmJiR`X8Qb?vQL+!MkEs@?!cZJGZn%dI>!y5<+j@=I-t6%z z*H(8eyt{sDsvk1Tfy;2QX*JFuC0#?!|ZAN^NsY`lOJfC-ln5NOIs z{4z@4n=rB4vWrNru=Y{& z<4|coSo;NakmjJCG57wI&ArMwr#yP0Ptf)EhOY9I%mak%(;&~F2&Y?bV;^loi#PnW zzzLpQsg6IqZBqyqYr|DJO*;A!5|W^vFz@KYCA@ae*Lp8k7NH#0_TG}TuRi1 zTtfl!8I+v3Ek-y!^wtXjqGI*p(= zNBKAI(l`_p5sDtn<*!>>TH-l!fE}2&DmuMg&-h3aR;v9`jys(?ZI zmRC8aIxY8FI^$H< zX#kui?I7Y54ntt)(`yT58JA8(52*)VQ0BVYe&T@IQV_*NW6iYcT5Ip=WT1t|zXptL zJ>&v%#7Nu$)WHp>ma{d~@2Pj3GC%ld=`WuWBC@d9B1E}n{_Si^2KfF0DPIgTH=iobgF1uI$4b}?ejv?*s3aicC2SVswDTat%_Q-%uski8M}Rf@N>}(; z&MRZU9{XBvBxW$bqEyTvTIf%kYLM?K$55P7kMyH{Cso9Eh?7vc?AkGJqLk7I;d>^j zf$HU@o{{M5uUmKeIoKb>0%>1&epx&78{8^_j`kpnimhx%@QY%vg*wt0mIe3HPZa^e zp=Wp~V+?H+JRjZn)_kj zM@88QG=IIAIrEvMcU{9=EE)=24Oi7Sjw@-bCG>>z_jNxhe1N_nV1m1p$9>TcZLRs_ zHXdWK26Cc zUf6uHbiP#nR_pijvc9T1^N+Q&?ZdM+Y%&{p`9)G|3ERc@=Z}O11Pb6?9kr}lGQgt# z)JMXj&YlOdxk(m5S+0!ae=k5QWfN@e-%^cqP{Xu=w*EGFbUDevA?SzLDAp{Ivfte2}tmG zH`x<-w;G~0Fdx>UmvhRqN%P{Y3UM8^`?&;3i2xp#QEGlqXhL60gYTY;D>syoc(_LQN2jO0)mR{o!eSr7vxr~w!o`*Z1%ETV40kUXT%Kkk&T7JGDg30AbpGo0o8rLm=YI4Ah*CR|2NW`!U z=A~|K6#%5OFb;}_;88YmU?TXj&5T@|Y!Ow|00?)kCH+8Y$JTH{-^Sx+9gWOJ#Fl5~ zEWV6;CJ|~qbJ13ou48)6GYSDR6YkCKSob2TFXrS7C+$~ffEWLpO5v6cj)=hNTeFF% zJ9$|g60SX|Jnpi?KBF9y_Sc4G_u?sJIzvgp*MYUidhk~};;|G+Fr%uEaRbdxqdPat zM0#mBOXLd#5>%~)BkR0`{XPWNyA+Jt%T_KgnAz7)D4Fhj`_i?h16KuzF?3Pw#MBZp zlC%l~4fvmcHy=fmZa4uaasNE(NTCrsJ^h7EmX7y3WTL5ww=n`x^_bzVU0q$dJVN_{ zu!umo>pSRU+(68Tr|jG4gr;TyjB=QpGEqe5)c`8ZR!*zLig?#v#YZJ7jI@QYDt__L zlNEW?8m{2jW?aiTRe&};Kw_(kU+KdExDKvbJPJ;a8GSN-%;L4t%5mUFm#*n$+>^() z>J}1Z5SRHSj?>%wLj%SZ6-Our_@_FE5^q1lXXTX0l57My??%W*B4Pw!LGisUcSh-r>#EJ()l0c13(C}i)x;>A6S0~r%7WnOe;a@Q8st1 z-TkXF6f~rYl*e_sy)d^x@#b>J!6#_ieW96=Cm@?4sHLTqLn8XG6adSzHBV``Zs{~A>mb6;*O8PKjDZo&tkf#RRMSeI{;tEA!Ub80xkG7LgW0zvQB$>y z)! zgbcPFN@DA_g3)An8ccxG`M&-G^8a9d0OXJT0r|igumZ~D`6fJO@ZjjdWcGe5*v&z! z?LD5^G^VKkp?@WxZ>cp z`B?tMsD4BrKn1{NOs@TM!eo+Ie>%l95yCM=``)!rYrZBYhW>}B7@k9V9UZmr*9`t4 z2%BqBBaRS3m}=v&x`G{Mh6Fm&(ezf?ET_*)=GZA~TqZlJw~oI-_)k^!-|{+>8%sf& zgVB9ReP)srk zpsDWJw1D{m8?PwfL3~S1LzU~w@_NpjgqOAzO?rE%_2p52nL=_}pzkGuQ#!j6@zA}- z=}S1=-y`Phvfr`|-MS4UI%8B8T#_tX=+!=nJ`e*(Ht%ei4turpy@i_luiCbX^nJw# zEZ!oADCi$E99<5?8$ZDG4*JV7hYTZL1@f+ZrMxP&gC9A_T>Jyae^E)euP?)VuA9=_17GZbwkROT@XH=owraMeY!Vh8xrqvn zv$wf8VWIUWtWBsgWq~l?JSm~p3MxHWe`N}@*>yiMo`{RFgc)1_XSO*B`Zzsoz_E74 z8J=jLd_wB`CLR3yazpo};g|{O!zr7Q^}^>#T$(A;&$d>K|Gy}_@Yn%Q2@>)Lg`@fX zjly-s$-nt9c?c4t^T?%qHDFyQj)}H9_j4^g2@iArdvW}G6dt!*?x))A5ku0ZA=7-aVY7?tJqHL(Q?%qLE*By&Xt$H~%~ zXAJJc=nB6oOtr@&rN?hZ=XiJj1+&SWvhJ?4S7LiDGUR0#C*_j94z$+fOw?5vZT?S~ z%_p@O@Zq#&u~N5V zk*chU(;tpI&Og;~6VTcuMcJEw-m2@`{Jjv!YFHJcp$3JT8Rh(EVg2_Ck)GCR9H&=7 zW!3(WHUC_A=6BqeJY-!GVw`9Ck`E+we%ZL+=^5XUY`#AV2~iPe-mCg<|BI6vG1i^z zjrug+J?pciRmzM0y8dwrl1;TfTIg%(xv(wT{$Focn)RSB1az#64g@&R)^}$DflQNn z5;QZ%D^b>&J;C!q?Y=~!@sc8S{FaX&0oe?XT5w>eu8Ga`XWsw> z$nP&)#XW|1k?L-U6(lLCW%HJ%-UUQTq*3QlFRPqjkRyPb+z}Al#ujx0yGhUYI2C;Q zTg6*xG6WxU8MXmC@prA4fw=>ja}EsE+g2@=QKexs(zn|rYZHW{wJd<~SlI@2Ub#~9 z>qj3SKNyK1FK-gBjFwJ_GO!8y#wxS%<$JXIf^e^zzCQl{eJxSG>cF*hfnFKPf9q$n z4AOihMO^itFK-wRDIhw_&?CiV)9kPl9Mb)f@v1Vp12*~knrO0B0Dx6~kGGWFZ&7{z zB}<#{`UG4}WgoaVG=DtXh`G=rQ1rPb7MgEp59j?gmFWV&Us|*^@=Mp)7~eR*YzzV}1CfiXp}r8W{<`pyhY@b77?2;V1b(+T(86q~HBkmC+R`Ib{>pGUUQ z$}IT+Wx1l{7CQtlp3UTk9qGew={0>*9UP=wyTq{>=uh7ztbpgwq71Wm->Cf`=yzRO z&rXfVz|*rBV|c#0%eKRUcv_#r4-n1ZDW)4s|Nf8#WBLFm_Jx+7z7mS61LgV^?X)+8 z|9D7^OZ%+U>KEp!2g|4b&H~VG$b>@2vms?=Wk2`kH?J}Wq&yJ)<9^!CH@Zr2uO-&J z_V)IU=kRx?FX2UfKI|Cq<}u3W8Qk*a`*j@2q3QSlfQH86WB3BhEy0ggM4x%N`m_GK zUZ8kzw3Wqq{gV@tZ@NeVxo7WUD)2@4NlG z$w}z+<*)w()+$@>$xgNT^~^V7QZ|E&UIB@bZHch~!}oUrrrWLHy9K4FPxhr9zI&a=5cDK4YG11VlxS2CZl5n zxEw!?bf@Yt=NW&{$9E^$Y|}8Dtlq>w?7`zw^vjp^J#ZK9K~fY7iauJ?Xm0!r z5}m~yazE8r8m)q)p+hwV?PhMa)q{)R{rvkGs)A&?1EPk|o^iuW9C;nfZ7VSn<%){B zJ@Rdbu%+|*jO&7sz6*gAO4wn<7vGz$PfeUwa|%Usxp55Rrp%gh`ZP=-&r9ack#pm| zyDn~4+;4h&LghklidQtnc?*6K4(iI_aO~@U*n+ROe$EvLtD>|W^`&J zi&%f&f><~5)y~HPCg@YTVdl)0Q8cL{n6WjL=IxTYHaRn^Y;JrFoJcUgSvBk?EjyH=KW+(Ed!)4mJ^=b{IaDilms8&^0$$c#Jt-%$W40JhwWs!?sKnX> z^0b7U4^R+T^Co+Hm1(7m*#f}&Pk!GFx8Zf;(z*qC^5U;mSO2o79)Jb6TfH?DQqyTT z>PTt_Bo$tQNBWchAX>;dI5XI<>bh%##IZ_(mOa$#*-p{GzQ*83@Y$Kf`ClU3Onx{| z|Lu(xRC!L<)ku40KVCmjR0U;lM<`J*YGLYtlfk#5i0oZXsSyKk{k~4rM^ww?T5c@FiJXY^;Cv z1vrE);Sss2p;8!qNB6E-7H9@(CFlT{8&Fo}TAK z%g@Z|9?lLgpmcsuMOK@)q4Bf(MX=QPSS`@A?xAOKpmY^>Nm ztN@4s59hijpjB9r^RDy}>4B-xX>Ln4Pi7BuXhBO{96Xw%JNv_h zn#~sj5A3bmp5^8S*E+M*Wq<8%W^xEqby3>?z|(==F2rL`kQt)_V#E4-Ib!J*N;@DC zPEe z_Pg!3n1csd1-8JX>eU%k1+pF=9}x{sKc+rz9_Dh&qX2o9fFK3A*ZMIe&x`rrzQ)#q zKWY;>@Y#!Sad0D|gcCGXc=DK1-C_=CgM&N8nJnEC7$5uYp1+pC?<}v<{ye$Azo!pY z4#Br|mIf98#slOn8<^&CkqyQhD%hkpl1(3O67Vp&#K~XNz8fEB=xB)HCCj47k5- zEGJc`w{S~$t6xmcIQy6Jya*m;JptsJ)Hi9)8M~4^zxMdm_e-(}^fsF*HY~q1hay{q zITagy=+V&uSB1PQJIA>C+ozQ;^fDsM{_1_m;YSBnl~mC5dk|Bz)iJ{F-@jkX6MY?H zi>$H0*U+`+p6fx%lmIsCry{c)g0Rxdn6SCqjSu3L@35olsB7X-z*{h^1y2tUo$-I} zpn$tU6p57OefDsWA4_{HC|d}Z7&6w76cv>+UrSYg<`$uauI=K(&O zxt>VKD0eJ3mY1VNPWmT>6J&nA0{8c(<4gC~kGtxBH`6KVazA$05hR-_Ht> zOr^M-?@pUE^50(?uIXFU_;ZxgY!$0l4Y+t6wm&al@9j@d_ybebYpjw!v8Zqi&%3RJ zn}7h&n*M2pnuNpj5v5i+Z7CLYwe|E!%A|0V#AARZnAIzDCppG2NsW#AV(IczR-3WR zq7Y~oZ-{YIw!rz6I!;W-iIM-%xIo=(Hi-a?8ov&0_EM1z(;Wg zCwQEOOaO=+S}tM$NnYrNimWA8jzZ_Uv-a(pwlBdqE~IWd)_By^?L4pG9y^Ac*qxu6 zQx4K2%KhLU+ty)t7VQ5E{7Nx=ga3^?>^>=D%nS5E{gGt8NE9S-W_^V$lSS}h$ZNRI z8kb%b>V3k#GnJ9~QCg58bn)z>Z8#r2y7dl&jzJ~!LIks&;k~HW;B+&|9<{cAGfV4d z{s_LWc*kK3*;pK(Vhi3Gu29!0wPa!_(NH-Y>V2|)Or|@&zoC7D0aQad(GI_-aLx-g zr8Z_s`wH-lDNn?RP^%RcT~g;|;A6geyC{I$gF2oSVBK4a;_ zFQ*YWV6?!VSeI<8b!ISzW=}C$xY59h#YaMLkv5}!$8}XGk4{*IJvtChwd%0eVi}Ac zNNm43qz;9L>jLeEY@n}9D<%7L@`j*;;Wb_}g}WN@hKs<%XI8fg;lcD~u7+KBXtEt~ z!(d8is&-?=#?OSJS*=Eb#tbld7W{S2jR0ZfyHe7WgXA({1#xW!Mp!=+dA)zE#=D7kd)}2NMFc5)H~d*rEmEs<=DzwZIM9Wt?MUh1@|fxx#|; zZeX{Lqq(x~RNGUjV7{H~Ag%0$g!Og(18Ek9q3YMinW%d(RrjqUxr{`$;xtzLq}41K z(9C8%wf?bhnjum@^2P1A{KOI_H=z$Sv;R+&9Yr}Jz%1u}3-q%6SczN`d8cLOgO7!s z8ZFbeTT^NYf$Sf`H`CL7Z#ShrY=E&*38hddW*RZQTlYQK?ixsh`I=u+H#8^%V%Wc# zg?~Nqvw*917(Jq9gP)&{t~6NUnY9r6BX|7Qoe+Xm$4Ebe%|2q@g>bt9>L?Qd=ibSY zJDHpJRWX{3OR^iNve=RWx`^Urw`ccF?gXs8p}&;X640F(#b^{isYzk@d=HVAfwDT7 zXUK+Iw!C|%chDSNY=z>Jl)Zg#JZHQlz%g85_eD0oj(F^2e2TP=N4pujchii@qK_5P zz;rb#w^61eC(-cwaflIg)^9hhG4|cNZ*7}0!KUqf zLWl$A;8?zjo^4z+M<|{$JL2cDc!a6xw0d)FV40btD=(OD66jQO>l!X_j9^CPOPhGqTKxo`!#&061_i~of1mg_}_ z{=smQVZCn}b6L~w_r1|bpO+$DDrsB1*bDebOsd>2ufxL)##&KY zRq*MwX8No6Z;KT*&af6a?2A-LLZ34M`qI`(i4_=&qeD~Ms+ztbcHh@O%J+jT!M?5GX zplzi}_(UHnaHN>eMb!7OQORPHx$D$f^dl4W73P5XB%d0t&B!qB!V461@}`Q~Wi^M7 z525eg-tG^v$j|gPOE_uJ=pc}S*t_^ZveX2d2$f8z8nmMA&fvR)b$KogWPOp%OuMg( zpZ3VhOmqli4MfmD{QTp4+#*wjS-e4?s>k zeJ6-UNRj`8@FG0I)R@k6Hz|X)&8ep1^pkhfs#3f7j_xwu^x>u>>xjuK6f!uQ+s#O{ zeNWVvhBG*0zblbO^{tKw;j77FPr#1ye>fPhBwnKPLY#>S1#p6BM74D+yFYVJg3aPb z6g9ME?Wtd24u9HPL~Z1}YS%vHdu5GOP+k`cVsE1a49Kw|NY`mCK|f7-KfZS#k@ zz-w9&3NB>^?@u{a6Ofz!^`8i}-r6lwP}LN&@UyhHu_NqFIf&vfa~jvt^Y`OREeSFu z9UU2q|CUO+?{w?APHk3I=S`NZSP{zBi3yyL5WqflJ=T_fMGJHx^(Lm`YN{@)_E0@S zIZc-Wq~R@j=Wx9;d9Kj=-9o7;oqtMqjyajl)8}xN%P74Eb)Kppn}y=&k3BoWx_OK) zs~NXAFB=qwS4u8ChgGBdN)8#AvDkfxG$xnerS%Iw^;J(+xS5iy)Z2TzM`^wfJdbpG;e-`P%&X6p4%$ZW<4-mB7l zdk>dYip8PgU?;e>V-&uEUO&)Z9NaC5CAlgRt^(lB=Rp*$Ew_R4TPDh>_z%-;a5EX#<063KogxDi%3=?bM<771Qu=tH* zA%ANys%)UIW0d>t4Bt%KsW1ZaGUVrNzMG? z%&ty0mis|sNb?Ss5B9Hrg*5~^pD%E)QDaYs6yWcW!$$LrGHGF;#bXJCZ;jPrb7WN& zeZA?Op2+Or>JsVH;6N;jo@KSa@TzUbM)It$zLHB;yOQ_QpRSQnzd;^Uy&eoKN-Zeq z70FMo*^2l%c>^uL$}%EU-6C(#-N8_}>u$y6%>hyqvX^1_vSqf`Q}|RI`3MtjDsees zN@~M|$0!4mGux2K6$L>*gL?1xX$Vd4gL-7aWh(O}{v7pQ@W=q-UQx@XwUAxIp&;&Z+O5 z@kyylb?Nuk^0rnf_}}HN-;egSkHWv2EmG;q+5Q-9y$w`JP!}W`tIc(E3%IP=aWEF# zSJTomH}zlRarq}lo?~xf8V3RuaI~U=ukXc*Z!W=u33bRn5`@|%2QL<|h)=r@tKr_{ zDOogJKD5C0%Tw9|1B)mH`N+cQ*EUyMT3VP*!AQ|jgDGe^6o|e@e=c1v6tyCqW$)K*LAbjg!Xtp4HdGcO)LH_9tXD1#>5+;~Del^K_ zwWYIR2l`(x-V0*PfYtBO3@fujpM9?&4ogvwB+m{c&|x*sWuohO{Fd`CdW$L-nyqXX zjakS>RTp*S>N=-&gmb_GPfFf6J9#IP5&A^k8z#@q5b3#Rkzx1FgfTt;AU%m%%u%LOiLz)9_qC zbMy%-7rCIzmcLC|*!#4z5cvI1Ps`BJsyMLTb`ye9%6*XR=?*<#8<)u#u2$WwQ)=86Lys9|jAOCUy13PKOX+MHSu>Hd7;ZZ{kwHj#|&MkaA{2DE3EpL2(a-;p{ znWgFw`?uYMx_*c*Ro;g5D_JqR7o z*2ediRI&hrC}&cuDP&?t)tJGL(^apvF)xCfv{TGj6(husbI$s zyuu#wN&5z5ngN*m_lo-yLtM`#H4fisnxm$FWXcBh6u%o6w2o0|>9=JvAcvOY3@ddU zSOjc-$eq&R{p+9MbM9P2^yvpek^Jbu;zllz^*J*lEI;KBA?xEy-V5 zT75Y&gT7zxXiG}s`4@{R^U2ny)E<%U`f8eQx2{f@*4M^6=}`LJNxZ6jRE2nQ(65tg z8g$3!J*#%xwxRo572{{^saY%>(gXoTxLd=|tW(Q;eD~}-8EwdC%h>AU+#WhKOr_C( zKby0!3HWZrWcU<;FLZHwHT<3a{6M`hIUX|fgLFNYp_XNxBge;Q*{)l=4y*2`E5^qT zH`L%-J5d^!TY7Qg+kw=99j-eAt{+I+jIK&t)LLGec%#`*B7I%v(hu@}wuTxh>%!IH z##Mh-*S}GiE7;c*3byZeJG*~>k^FxX-0ywMb)Y{Zw0Y^_Gq(wEmy+K0c5@v`D2ww; zN@8hqw$l(5C9>^tG$dtyPz; z(A|gfV_Lj>J^Vg5ATwaV_+I;aX9KgGsQFVx!xXthtrxwLJFg`IusrqBGY>NOJ^`eu zOevXu7e0;RMuqqu!ER#e?q@Cf^CNTJxF^tR(ZbpQ5eI?DO(wI4ht0k1k;Zb$JWX%j zXj{;4{AXqS{=t>qm+{viH|^;#eh+e<2-B1KhmT153gk(c(v|4PWg??U$#RL;NJQut zzU3@lZTsr36j+UFyb!X4YIkgk2x5$r9?ITKPJT7}Dnlerj-3jaL*q+pp-C#~Lh3V7UZwlY^n1wIZr2S7DcD z^q23*fyNSnM17noS#`$LC-YKi4PRPbS)8tulNF5G^TjP#E#g%DkV4E$IW1`lrSyk3 zp13|y@T%GE_P?vReoq0QwaiNZAt)0*7@PHn z`k(#%RRyLY1HHW#t2D1te7;7 zgwkg>86PlXQ$f~*i2DhhY1EgNvYv{E4&@hQ$V^awoJ6Aziz+sJ7r>a8pO^H$+J_Z2 zMOV`CoS5mkV%e!sz8P2Zt+nAtk;=Ng&o|!wBsGsByu18GUF<*hCUMN@W+9=5K{rs-NFPivB#95tQGJ2gKNw*Gk6ZLLfu4#`xKRet&7X>zG@E^&^dXQQ*wk*+m&Z9ihW@!Lgy@;fX!>&4pD9TEis20WJgoQh zmzL-E879Wnv>gJFPrJov&_UjpmP>i(WK?7qxAfpvPmXsGUvM*Wa7z4WugEO{ZM>;38gNPOCntBup6CRyHnz4&af>ys3Fo{r!_{T^0X?f!C<61e?xymD7PeS@3^ zS&vJelwect!l9kFJ}5othc?=w)qti$<4z%!;95IkVCUXLyW=AveR$fxH+38-&JqtD z%E-RwlAEEIwcb;FNx4%OaxF)A+1B0MTY?*}q!Ngxz0Wv^sE4Q4`)|@zct&eqEqWar zYz0MkejxuC6W|M&otAGbJFx?OK9YQHrOFxrls?^OE0^aaof{rQ!KZI4F@xw(x;N4* z@k(9kURufjEymMfB10Oxk?}}dj4cU|rS`DNR0@8Ji1Oag+(uuVdQ&`bV3ZK&yn@?p zO8&U8Xo>J0xCzkBPMdYprGI2#UE&_DuQO0U^AYGo4*&Q+=Zk+jyr@2C6vPc%Qp{pt zYI@+n7!-t*21!5N%4OEbe$-`7W|-fa*Q8=!Yv_oJ30Blxo|0FRIsA6fzPG%hC~n<` z&8GO6=oK1Y_;846^^fO64mtef&xs5rRpo73?rP9w7|E&**^>~1X1;_!lvk8HT+5M@ zCyFE_m`mk#FtgR1OPjfy_%rcLHzrYm$m6?Gyw#YAf_VDm9^Qm<$%k{J%vj=kQd>(M z7H-Vxj)xiTfH*<^8sFmNriy5#S%RdRR@FTWS)AUJxhq8#*t;9fDNbAd+SS=y$&;RO zlRRUuX;G zhNGIn&S&Oa;O@ZGJFX%eps`*Qn&YC;g7L<9S$^66u$2f96ICTOHzM&%zwg{ddB-)F z#i5$dRgNk6t%ihGHdl)PPvdxR;7{xB4ybtkp3{=`wfKOl*YU6&AJvAS4*w@UAo|os zoz(EA;PA@)z4&aJ%yLqs< zeiG~qM!g1sXmGEDy&I^eirtrw*ipGd_r#k8Kv>T3Ajh^nm#?TAz)fOtx8~~{?Q|5< z8i;={+Nx9#sHNK&i=PdqG-X%D7cRf$Anl)1f(yn?saJq6&iRGUgn*`8b+KHGg47G$ z8!Fq>kw8~w+W)8zne=G&{dlGbbl4QBQa}W!!aD%|;IT-f9x3)vK(x&HHB!Q3wbp3OwxUg>AKu~G_U zfE}#*E`_}Xcqc4k@yjE_c}w2(ewb5==~B%RB$pv5N?GN4-J1$N3rsqI_`-kgx;fFe zvfd5VqHU8xgMnrvdxLZAOVe|k-K)#1^+^H3ZYpX=iY=bt7#yn_7m|jZ2D4Cn^*4PCVKcMOdOXly4RFXPy%0r z%+YQS4+zhWbDAdQ0^hQkOMstzE|&}I+MsSd)OV8Q_)oq;CGN%;R(mFC)F;xq11E2q z(V@A5kHisLOFzV05p3TRU!t$Atv!{Kd!rVNAen~6j_aD5X5`F-NtErp2@Jevefw}v zI;2Q3j`FUQkJ9>ga6k%y6Ahh!P50UzaZ=Wl7>|P6bHmcgX+}E33)puSBFx|6tV3^4wd{$0t%VVaEM}eDa zZ{vW45kL2ixf=i5j#TdCOH<%iW{P2q+S_>#eGm_dr(k7k?1oc&b9skdXiM@DMUqio~q@ktpRfcOJC3>)WbVc6=6 zx7?xqKI#pE7-gnKM+}d?WJt$dZpie(@_qrWoy$z4529vMj_M8i%>Gx3y^%}yrP(v? zP74c;J3{f)$(bLGO#stB>xm9y=Q|!Jy9V-RIUtbp(gQ|Df#$aG={)LGXZZMOGs*Y3 zWuUer5(dj$1obAG_-(w?{@~E?gJdQSjlKs;@A9m2EO`%wR zOLg9OAE1OkvRA^H26!8%e!!QNtq0_d7m>o=FR|AT)`mdj9Uk}R!!WfKesbW0Lqr}K z_y3OZCfR%wnJ+srYMkHu71V9Nq}1R=Pshejid1ec8jg%gjx(K1uwqGrm$+EX`9FuU z8c#i(`hC9tH^u>`q(2hp3pH@~tuFsk*zzyEJud|0p;h}nUV4N$vZZXZVEz!a zZ7Wzwke&F6hpAj01s&p)8Jr*)*%h3wy-^H!UIO~XOD4^OMzmG88IcoE@V&0z8ine{ zqgq)7cp?Pbo3HukykYj;`vlQ`>t402%*8##`8GnlCuPe?YM-*cH;%0YIbYK-?cW4~ z5Ire{)&QQDDOh+nUYNBe05(HMWBREvrbLM2&3BwbT(YlLpyRGxi6f@YoZ4xd-GF*B ztQ;TjGzJU#8X}f5n%=NWUow{OM?MlMPr*+NEBK7hC6~T`8SgSsiAC>n>5kdfn)*rs zeCSpd&~DV)tsvg)8zR;;FH6G+qb=h=`G`0kEqk5Y8A;F)XJ}qMgDOhsCI{{Vn%&?ILT4 zxA*1T>Z4Q7>r*GG)kJ``!i7qHmv#-A4y_j+w-i?D4hL=rrH0=fL5|l1Bf3wi#qrN) zwK4{w+d5|gKLo6vtVeX@N2iXi*i5FyIo8>nF?hDGm7Q*Tbg*c=@BWlqlvo}OcH;q} zX>5y5xnjpX!}Ml+!N`bb;e;OFqo2kINeT~F>x;@xlm>5h|1<@G_1#&j^_?D$S5@vu zOUq>%@91r6U$A>hNrheHKFi9@YFSXr9R~k&*$r1{cOy4jPvX6|l>#)=sRl3p-+U5( zg997z}S*=)20Cls;O^*OP*{WGu4`Ysk8Wmx2MU!EP#V#Ik=QM362z&V@Z5 zNiBKyQRCkEGYZjrmp=yygQJ8DM2@&TG^Fv=zmvZPeZttOmtWJm4BXpCRIcW&wmbZ# zH~-#|cH!tR;^06k`k+~|?RR=V$%|xO1WhG8d=Fh3u$}Xb#EGEoR5fRrkTiR$=s?U` z;usY2BF^$FT-ScGqqEjij?Im5x9!tl>(e`#DaLDHOUC-D?*tK#dGSHL5Csm$ zWqs201ilB%+)C+vd5kMbg6ZMY=cD_qqUnO^*#{v(d@*Gw+RnSLwHq!!_`JTNPA^Y+ z>=m>*m1%EJEWCD9`-AmI`-EnR4=s8Yt+Pz|19HNs{-mVHn0E00WmJUdH1ZO{Yc0Yn z#pn81K$F5>p+jRT&PiyqiItTIPZ!&+(x^emy&63Akk_`aa7JEE4L$iVB;FQ6F;JP8 zQ(3v^HLyLyx|OQ`MCc;>h+1~)@LELJFL=2j@HSyot88xn2itBc7{0l?_`WVe|0>5G z!cn&{9OO8%k+mbDqR{4MRsM#)CD{< zD%ti=v|!A{Mv1cCu5(Ri&w?&;=}VAaUCjEymh87mdyb6i+V}K0*wWGr>bbE+bBX{AopXFDYL1wr1)jlE`s(t$1w58$v7=5@xrLIzpISF)~nV?9MU znvN@7#i8c3DpObcM0mLpYkD3*tD4PN^<9TAeb9JC+p>v&%^}+#_9|+K`QdVxDgmdu zbpxP;O0uxvJb$W)FW@{lGBzq;(;GObqrRkwNhgde39YD(xo6_|)B@Y?iC$a4-3Xpi zUJEuh=9KNk&OL$mRy^S?w@8W>J2F+Z`}F)t2D1%BM!I50ib>7}tH@|6|6l6C#Yar< z@Xv3DI0^=k%b_O^IfgfC^c%dHxwr(?e(dk_!e$ed8#JhUs28Ri6FV6`cf3Z!P&82z zxc|Dqr{}Fx4#&12#xL~%a(OVMBsI2SN^BgK{4I#LS0capup!mvJ-`-7`e7yarZ~f2 zy~m%?V zaf9y}t;$#k)fIH~d|g>;9M{ubs!}vw>cMFVruH3X3I8Nzv69l7l}WWcoUQUnC9jxU zv{lnfFz5I#?5Q+fJsNz9&oJ#_oz() z=z-;$on2@FQXP9x6Xy#F`nNPoCWx~CzfVXd^tCM+{VV5}FuO;+jAl(mpEdjW9&ct+ ze%1oOf-mJ*PNYt%Au9Hq*&EbpCTy7P_tj590}=2H67 zN(VmC?7lrarT<`x=8{zHdMGygo=!&c;Pi>f#{8CM&vWN5U9NpwGs%lD^5Ey@U0^X% z>yD$fB2y3y%h_pjJR`T6L};=EzjSCqoLcy$ED9fE#`|+w0e;AJjvvK51$@BB9)Ull zt}w<3Mxjk*bX_A0!6+bdv}UiygFAhWRyzphX@GvMjOT*L8< z)MlfVr%a2kcIjL&kdb}~3`m?0gs8zkM(1yj4hXMY%LA@K-J8Z6Mb^&e+*1S`97Dob zL0hZq6pP#kK%V=E9eg=HQfw3pL^@*oRc1jQsG0@HT-dw9W_K}hr*j}H93p#s?&kzY z8CB52rcNqy>ee1X7BwA3+VW=ii?h2LEp$w~4hyil%jvrQl3(oti01?IB%o%G3El^E z2)o=9=KF?z5vH#eOza?|I#Ts>ew9?3&a^`2waQpa3!f$bvOg8!3uKLiLz33*^p9{g zIp*s8N%}H;@%OjwpC^;VnU-jk@b)Ah#Tt3oY@JN(T@G+ORC4beO-o6kUS4`Cay)4n z7Wpygkpr>JK#v^G%$E`O@Woh7%+P#KM>inKUk0LlnK^4U#MV$*e*XIIG1Jvr5MpWr ziHZk1w*h=X5JCWaj&c=x0Cr!=2HE%<$wcvsAJ}k#QI0lLbBCr47`N8WqqBcW|M2W3ml=K^QJv$?6Q$<=X&)Oq+1$(OR5in=71J75Ic# zlhJjC9{KfoCas@uE-H8c8G->Dm`H3ZpUOdgoh&LX)3C9XMO5TAzdr9DS#XSa*B~BL zA7os7=&B9Yp!_s_X|I}ymiiAEGGTlpX^&{^_yxY~`P1%_ z4!N!8>;|hC8ym+CFHk`WYLagkp|-T3(dNq#a$@Zydq?Xq5{B{fuAPpUg3h zqQn4*nYe{}`rx@bC7{w$;7@E{@@Utk3>uLL0*D$p)H4*=YN}&&VNNFgpTOQfTpA@% z1FltYIi{%B+p!J@>zQ5HOV0*j+9(dM?>mGV zPvYPOiXR334Jm5q6(tBR_t)+>ZBU-?-4tGZ^7b{SZvm`kJ%?K39AFbv-MauZ0cixMYsLoN9+@jW_ihum->c-~zhiLlT4Xw9wRXbUIQp;s|Ej=%@K`NTVd#D_S13=fYzbOeHUc@#6mp}U}P zYn58au5qxV13&UfI3BGtoQH=eCU`)z5g#w1dxhN@9#?Tc@tuSR6CJers2*YB`R|}e z(1qXK9FL1a$hz!2E|UR8Fj9pPJZ|j4MCP3m*WZsos*OF9MV{pZz2?%_SJuiLKanhOHpqu>qFbXd|HlB*>ElaUbte zwVj45v4HlySB%t3BDS-&rn$3T$FQzdD*#o9RBnRcZfHttJN|+c;?;JKrfhZojq=%H z)x$gi{Qf+!?gY`A=-yb{dh@lcpuoUppo#(z0ruLcuEYHPp8tjUKUc)B%uBlWFd!_M z3W?j5PiJw_LLSV!^J|2(F!=pjr!Yz7d(iaw!fOm_-(OY%Vp}YJpeV;{X~|-8SKiu< zveW$gZbzh{oPqNS(ppG@KpZ~!F5arf`25f8{yhpkw`5H1NF3*yGFV9XY`SeZ8T(xF=a`pUyY}g=@?1K+ zb>4m(bUZ6%-iD^QY`x^uK-rwA6LirNTf9-VqEs%90U(#Fd|QSO;zgCLU7CAv2_bN1 zhfyzF=Qq*>)UOl9di-cd0t`BSiv*-fWd9eCL12Y-SS6;NcDsi5CtqOs*qt7;lbk!k z7rE`=H^47Ub=zh031JU-%llA`FXI|!h+Le!Rs_iYe-wech6;Zafrh^o0p;6WDWYq` zDwR@ zYz@!9Om9-yYr%D*`7J+~YJ_guB{2?k>oo?gXBM@FNM{~@uG*5OYhgmWZq@DcIW7O; zj_`piBt%g~Js>`ioQ>k{gs@zp-MRBMxayE&UA$HfAtVI(`5w=v#yRTHdQc0`6=-bX zmRqCx3a_X@jENz$g0rvRaOf0oeelU~(gIurHc~_Go3_6^s57}Qyl7Fhka2T28GPr% zBFcbvqVW&Wkn=ObknPGr&|0~-N>A{TNNnj~((|}($%@^|UU$>Z=vg%1tzxr;4{0Ar zBBb)qM;s$Wr`mfrZAZgY_LUus^|IpvA&FXPaJi%H)`Hf)rl|GKhgTNF>#VHyt|P2v z$Scsr5{bhsV12S$+0#2n>^d^Kr}H0H3hhrA+4$kL&|2KHgl>n=EpuUs!ytpMK3qh4}~2^R-Ou3202*Rx9DC$Y-D+)n{O&w`-kF#6l)=M zVQ~Z_dGlFC_$%@9_*qx1@c;vmO}{G?z*(Zf<)G{}JDv~)NDG1MEq74nOL&Vob!Y1q z#)_D*YltC2&v>qW)$Q`IGeb9^e*=IR+O-5ob!gpGr5l`Ld8v})!TdI*>4E^m@FjnP zdD5Enj9pg(+QzfwUGYpBT|1bqM8USKqrW%ay!MxtpfaqZdiB#-MXW@_{d-i3zIMby<52&9*d@z7-up0wo{-(!iq~K4;MS5I_(1=E zecInjIHG^tE)gct`WLSGqJqB3`dQ8#J#nt0A|9#ee|NMD_p!o8P_urXjD!{Y?TVcw z)o=~AN3&?Y59FOm* zxzE$(WFIX6RD)nljs~>2W6){zxu;_fE%Q55YGKSil`h>=a_MZQJGbPXtFH0p;s*9l zR^owH#!CDmX2XroNv;%qkQ1%(JSpF>4E6DfOqG-!r6Wi_#bwb2&FG}q$xnMolWSvgB*Fhi- zLVP445Cq1o3kExqe$^^+iglnVX-bIF_oW?4UVO!e9G5>mEWB4SG)M)tHph|0RsV%H zq#W8)YQNCGY`V9;a;NsZK*mhR#M@Vnz(R#-C~E>r7S7?!DNY z|0;B{$J7}X#j{3Ds+eE>G4WXWvPxV)08;b~qlJJrLs{z@_5uhUr7+jcB*?*poE&!5 z9RpZ3GvfYOGS%S^;^m0Ndv<=b-iqllOEILysz32!tjGfJufLDI$lY>cVkOcBV>wzKDPUT zeG}%U>kpPsqoq*`Z{Zf7pAZEC-29Wo_fK1drP;vzpF;jKXPGyASvpuK^eBxiSQOq~ zJTz&1jdrb1@PF;=>w}+4bSf&@^EtkC#PE?Dvti6k^akg!Z-X$h^u9zFLHX001;ZOt zDMjMO?%d+Cvy#R`6Co&!Z768K|(PK#bJ9qd;D8X>%b#wHT z=wBj*0f_Auf$e9$S7myUxM&LZf!n4qF~kG?v)M@y?cT?JLO;SlB`v5d)$w6h&6`H7 zucM93VgCIW0(9#1He^Yh?UkW6sv-%>^nzRvn^b|;Ie zRY)hb;bD3do2^MgQRlRZWvia6CtDs}iK;`9Z6n8{I?QLbLe3W(&rbTK z0$#}}tjUL2Teff8cSZS*UAfMAX+n%L9KO9v%P^c5b;;gxcLN2csNk;Z12q!khX=ek zj8hZEE6f#S2{{&B>}%CgGXWCnuBfB7-%@=m~sn{MN$KiG0#l24Spr^{tSkeU|sL`*%)1 z5Y8e;x{XV>9DyPU*P-InDFpzB@4&T6#J3zBFnOu*tLC6yHM4|c;}InOvN;R`$oN0% z-$H0@tna!4N`^;J34q9pkhuV8f+sA+k-EsbdU`s$c^Y0&HZDL018DE=Zq_py%9lSv ztV>gy&(&n{ras5#ezO5>_gymx0}I8DY2o%Fm4i_Q$YQPu&iKWiRTL|@qg&l&V>QkZ zsEz=O$e20ACZSRXHbp@9-gJe}rkTLP*h z;&6G-h8%QBAAWp@n> zQ=L$gzjh8G>04QW?A0ABE!5IWEl+Xr9t*)kROp{!E&2(y>jpo&w{PiNQ>hdx*(9fSs;_-WS9y5EDDyUx9$sFWfzl_-x1pxx+3olaE z++)|hTJjw+yCuEi+H1X7GrQ^1=oUQ?f*N3Om|ruqU!)_ZTq{Rs1|(=&Ubl8xnNrj50#_Lg22o z7iK|y_S5P+RdoPYFa9w$kQD9v=mp3>A-chk16ebDl`}fAk63)A$pFVuZoccb6 zze;#KG%;i*{b5#dd+`pDqH!oE$x{UdS!HG7$IMP?nNR-*CGcOq>5`*DY$*sLW~3f- zN34q?13pOK5PkF^<*6Ek0D4c*{os!HJPRkMv!2yyv~3)HHohJ}Cj1gD{;8yRFh&FD zG%&Cywf&ju|Djp%-1tkgIPh4{0ao3{(XPv57HPg3K==vL7B?|5DR53jn%j7mIGqRv zFu3Pg@JCZ_a)N&LF2u;I^Cx#-S8j}{ecO1F5clo+0zj+kXf+r+ugBKv6UB84F&p?9 zU^4_MK%o5kT&I+a z%~gs94KNf8s1;$?G(<4?Jp4Ec0>@(t1PC4{*TnUM#R5yqMGwD*IlS{6%b2krxk=rE zZT|%lTzvN~O^;wUWkC&6xWZ25t{BVXIM^Jpbik%-K6xP$oS{kaM(IK zHa>L`JOkhjWTAkL5mzHABjX>#K45i|bcekTBO#isdv% z-3p#_ocfNw<~Id1{ju~yDdwXM|4lfr5V@|*qt$w>($%xIYxwO@k|FoQKXQj#P$e>- z?lu!BNgTVHHVsVeuk_iLulo^*NdQV!>2mFBhJclx*fFaakDWR*%J`mvFJpQh`PoRd zVLsW9z44HW=w6^yQcAaNU#uuG-exY5?>o=z-6=Z*a()(V0yF z2%!uK$eFqxfE<2N3z@TjQ41~4R>EpvSR9!DoJAWQZ*6k2wlvqcxN+W~JhdmvYVYvn zN>{YxYErTzQLn}3iZSq@PmfUkJX2=`q1l?Ez0W5#I>JZGG>A13`S%eQ08!?B`0O`+ z#!o3pnoHf8kenbt;R;G=_l_MD`O*D~sqojHpm2Q>R+yaPQUASIXrM_SQ{45ERq5yx zr085088^MR-6Ckkg4)IE2G+g>67eUAv+n;WUd+x6y}C4Y9gunh#9{qgITNgM1=U4_ z9zYk&34I?7E?X{bK`dBd+=n{(IrXh*8rk8)%AlJ>)9L#wBbyjfhaUqp$689l@S#kt&|N8V*k9+kNz_71*Xlfvy#;ZNI!EAYw z+jmo^f;eQ(;9UIb-O$cC6~3~uuA4g9dN$Okw_;;K{_qX7=9|NVpnK_OFC)e4j_&2O z7p(eXD9M@!YLh@&Ja~oqNnqWrbCXBLf9HnYHfBq{E@cw}uTtlKcLJp12lP9@vfnjE zpG^>PrL6gLZ{~$DYn4K7f;0n?e`d{{8gdEZuFm(KKY@dq`s0YSW%AsSsm2pP49E}J&o^i=}HX2hVCwPVE zxpQpAMb}MQ5}KcRrWYy2s?vZ;>gPwHZVT=zbMS=GH^ozML z5*vg=|3jceWjt9*^~uD-l~*#gEB}(FVWuif?JiIo-3VYUGOouqI4N&7yu*lgLy#%$ z<-Hu=+$*vs=QAruQFll2O@S z^8R!gXdMUGklj(w(8k^}fK#%2OFznrG){dTXS}&<#FGBLdioAk@sH{Kk-5pWJ1pG7 zb?Gh=bVv1Nq`4WouL}zkawqxkxgFer9O)7{i;-DPq?{eyxg|L{%(C?59PL!x#+N`i zSNJls6w|S@C$(2_)WCqVib_y?j?J?)sS>r6(iQL|;qw7ss`Zqc&+DVy%aK3f(@ZDvdP0_Oc9MuMmo_?(`zetdKm#H(s8R`3F)XGc{7`&K4p4y?XeDRPJScXnC4?qe6j0QhM%C%;r-hc2y3V&f;I+Hx zYC6_CRJJKoBN{5I(c<`pXVk^b2o_-9_rB|UYj4&2kotk*Rz=YAPWCGvy|t~yKvub{ zcK+#FY8s)>M9(RB??K2p+O8E?^Gz$r`VFI%iR3E11XQ%Tj+OHnq) zQaaFj`53)2W7d~I%qq{)Y*bdh>!PVyjgNM0YQw47)6V@llD(S|Wia>7$KqMpMD^-d zzpraj$0|8cXls@2L{0GXI4YN<_Nr*}_OK+0gH@4adMG3zu zD^2?>M=+eqHu7F<>vBkVBMGH zwGb+#7O32m$MbI~J z_lsE}RI#|Yq5*zPcmios0Xh5?i)+&3d&9gq&*Y_!Ex*4R(mT?!<1H6CcvMpG8I3C^ znryZVSGiAI-(U^i!Dr=hqLf#^#N*I;ngzB8aaBLf4+Qa0T#MwfJ5}TuJ5@E(L7NYZ z5V}WWbD>5Xn{DOsTn%^+&yS53n{+-cBBu^vm9H)OrBjE#m|xeZY4RUF9&rJTB*OM) z&&PipV-M_AkPBF)9xB@fd)d!aHElr%Ul4F<8uki-(kUt5Q;K922fG_R>355@74cnP zTTXQ0bms6Tt4Z*JrdQ)_jTaB>wJYUduvpj_>WZ8Vxt%%iSoW2S z$*msUyj03J-yJdE&9O+&CwM42PHknevq?QwUE&@BOtQD$HAve-1uoG2V)AoiMQ*-} zMi7w_`8Ga6XeB#-PjWwl4?A3f11Bn$svc`v1+7~yMzCa2h@&yY+xF{w+(|#ZnZ?Q_ z<*G~V8KhNjtO1%(i-|%gPGUg_Ewcplyu3gY&q}RbtZb>JC`XEN%RZZI$dhGl4YcNlFGH;m*O~gw$KUD6i z*Dm3IL+$80EZ7$#O4Kw}9Ajct?qxHl?o|5$i1)XL7wX}f`){!!;A*_hBO{c+wmia@ zOL}N>V4$oA$j6u4fAIx@X7=pFxBCrjoX-YCWvXb&W{glEaIN@hAM3g#<@P}cs(H)F zN$8#w0&S`_II>>0N{jw-K`LWGzje=KNdyt5t}S=gdl$;rK>D7W`12mpa*xv0yG z<2(uuTCeK^!c_Azfl`5TEor9c2@6@k_AuTX-fIn1SAb|3cp(#DtJoRu?jtGrF2Mf5 z2m){du6UQDdR3x2N~9ysRb9|GZpwanL=Lb`%8Bzm}mfXOOaVkiy89w)}J*M(>92 zr*_g`B4iuQ75wmSKViP)Cy{gfe>i)~s5sVb`#VAc1eX9o0|d9=?$QKzm*DOe8c%R( z9D)ZSCCqKU${BW0l*x_q{&~KSrHBQGP zaF!WRWb8pWo7V(Ps6@*Whe&eC);5bHGKQX<3%};2fXjt7cIP_=TojK`yIUyzsPeA_73D;!t6bbiip68lbBkTV2#{@V*&C>rHsuS7_Ghz480^ z5F6E-@0kXnpkH!;@~!0DgAqoK-5KLOit172Um^^)Um}eD{}N#^LW~x2#dM9GYMVSD z+745IEdwB3JipGXc6vMa7cE=Gk%LvBdA#}xI5m2`Z->YAMuBt)E)>aR#{rRl<-6a+H9)94$o7Eq%(9BHj>&`9Oy- zXj`N_j^m%DpZ0^A(qC8ERHYdz@?AA)+5mho6peP*!$=?e01Cxwk~9V8I)E4|_V z=e8oiQ8U}+F?dE*bBTZqhcno}$;I!#{uj2mul@^LV3zOyf)N(4?6Ra?UF!;S^0`C+ z`^zD|r>&7PsHg8EaFDQf%`%k*s=sv?Kd7=nvoS9J#9x=lM_7M7A00yl+pgUHjQqGY5^`l`qS&K`qBpf4mh3Pv>|(@F(8kh4SNb;tN>i*QhC3ZBL5;m){_?`De> zbGSpAd6{y}^>l+(vr517)xSg-KwgBjQxQq=znm8Rj&TgS)^C2|y?*V-sYE)f{!6VP z2_iGO_{!^6UGeG{!jOd3#~<%Y{cW|VS@fJ8`4Arw;r)i$m}Pib95hiLm6i2QDi^#+ zBGftx&%yv%-WD;u`%^v&G?2;30tZ$Lgmwr{T3?nAv{H8`C?(83kWxva;0x>zE1CSt ziO6M1rqHDB=De&);f@d-cH-LpAycjW-Q%wh{nr6~swJ0N)B}#^7SeDD94)ueBnTeo z2KkrwzrfCvEbISP;w*8%iNBk-YsFCh^US3&5;;-G7u9@~uig0{{vU{iJUH=hVv(5q z{r@5sF#jeNl>Y~@DF2&SQ1hcK^MW&O=Q!acq+q0(f4MOJMJx`G{z)v%T>mGrD6jNU zRWc-KbMdM}^5b?U2{cY|Zn>e}@e&BRw`^P=G*1Ew=4afyObc#ARWW>~^G=fnN15Sy zPQY$#;GWa&(z@`TSeQsWO%4rYanTh!1E^aMZqDICLqNl+jytF3uOp$s32C1G&sh*$ zk4RCXOTuU3PFp6o+#3>hgvb&mIeBRO8aF{U`{%z{` zUAE;r&=kt$Tu4-!r`VvYmq1#QjnIXvZsh2J8LPPSP`P5^<9^MzQ=|ChC5p7AZdF~< z<03}5{V{knUhvy>)o2ZvAISC3i9CI8W;DhR;Kl=JxNRfw?dK!^GmSza3D>gL?CH+7 zpwLE-^3>x1Q=!46g53a;?1>owa3ge;%>m)bBHl%tzwIc-qp73)G#JVIls!grZ zqz5=6d$3jWt&aV}>*^^K?m0CDa%rKx1QQao6_|CoU7*9clJf|*GIYCO-yOOhksQ7+ zpowjdOo^iFkJZ4tiXoUzLXs>W_k`oHxCzbUW=X@sCU zQBhX5lM2_rIEO7YDk{Z%ep!5n*xy%rE&Ny;0_z&BY5vxgoeK#bhZzj=!{y@=9)75f zmS$MSBmg{+hjSHUCUXwE;cJ9Bx6q;C!h1u+n0lAo_z#QNJwB?!GSlV-?DC*tgP&{Z zD|w|y2lJ>RFM94tNSBBRL?f+IG%LC7etfD5;|U%!_zA>C9Ag$k&-a)pKhqlzy`dKR zCDuM`d;kaU^$OEhtq0Zt?<-`jf`Y``T+mmp?P6tq+Z?Z}C3W&%aJ&QIEw@H=>lMe$ zgA?XH+ba(&`nS2dZ-C5-F@1h~yY3$bh}#iDke`sFoV=R62PCvWp16T{os6k6jMC9g zY^vNeJ;@(i!&{f}{4|@C4jd=zs(GdPf}+mIud1ymau-E1^S3QX7}2p)sBqOO|LzKa zqyiD|Qi9^F=SC*~`g*AZ{Stcc9w@*0JCFXOL~Cy^0ycT>$KgT#gpznat9Sudz?S)L7Pd#)1B|StzGSZVa(jz>3 zNs5GGK2=rc1vic4#i8(%umFM>x}Sb)h)B_})O5sAPJdSCU&=NRd?+NS-9%kIhexcl zBauGd@Aq1(m;%6gnR8yse?+L$V*s1!gW~mdy(F+54G95S6Vd)HJWnAo+#FLD`Tbj+Kiq8$UIGb<${0hU9`NnLkl>zUNVu*dr+Ys#R zK-PEf`3M0)h@QPl9NJ`u-KvI^ldG#a?hQzUgymhwlyBqT>(%e~Nb;GYnGjiSmAmKR z;Lgpw=_hp!&>cP5_!Z@EI_~2vDv<2BZ|>6b@$ZIn0aHiv?~*-R%*Bh+87S} zHgRTn&mj3Wb%g%F_4+lwTDcHsfRf0h%VOrLA2y}Q93V6ksVOYYG3E3sNV?$E4?t0T zdFXnr3`5@W#iESt-@Js9`!_EsxO0zf9u6Uy*NF0E%q({p*1x;EX^C_mw)yEcjyeoQ zt`|-#&Ke7!jfu7e(tKi1ZO3{gm4f@yV=#C41v#6iKA4PES>!VmI%!4IyR?h>I&(^M zB2KG!Lq5oCPAl+hF_(}~s6`em%sHn(^%=5>tTA^lR zvi`EODA5T(l=h4`$Ww5gvnsQg6}dAsKXI&NYRIl`XVDY=wYBqm8RLoZX3#cRoT_R_ zRI5v1QXEszK5kw{+i_?gcX4=cl5F>qn)YD(?(Qy;W+>{HFXj995yuq%aVxfHVqyRE zV1=!u4^PHJ*f1vYb9RlH;VZ@WUCFc4OTXc zj;W79kjuXsvIC~dP+(s7K$HQS45o4T1=opK*+ z!ud2fPX}2D$CufQ=zX}sD`0eSHkciV*A>er`kSa^gYBL&4sWqo;a2mVP^w5b$(^S- zw<#GmUh-An-3vP2?fW6kmVsx6rrOKd@d>V0?@{tJ9QhpYE}GV5&5b1Q&zjD$I>K=v z1dm{JzO#tWqaHUS(wB*nz}VXL-qwE@VK`DYTip&6X3v>|P9)Pc+#6CoU$)KHQ$bVB z#UJmsUfwy{d&>g#gH7-dLUzDYVk{IGM1ubgPcnw_7Zd&Rs1@1v1-4UIy{ zVRlk(MP}F53rH#{YnN8luuoODvH&7AR0?V1!!y7$B)|tzDFxhDbf=M3e?AleZZcFc z$SY?c*@Qy&v77R0i1tU(4z;1GQbuh~qA^_5U`7h$K89eT$xHa$ss?bk_PpetaM_)E zQMLAoW?;aFzn|VoN0t5j8KxXp-%=nPj6YZ3L}NWdL5}V>lHLM3ewM2M zpXub>{I~{}o1_?ALX(-$92=8J!NV4ptOqh#jM8>8RHYK#J!YHQR+g?h{&Yb#81F_4OJt8|$RLU4u>sF_ja8rwr-AmZvCLd}cgVx?X-W z1?E>37{#hYW73IPQ?Aj^xoP8|GfSMwmz~&1vo2SI@}IPg`veZ{42JhB>EX!m(DTT3 zc=|a?zEL)b&yWwkGq$D>`oyhL5!zopxDPba?8g9eN#UA{N47{k`UnEW`^>mlER#x*Z5BCHwfCWAVYd#-K$L*zvIWxW zoI^Il0SE*Q%+lvgS)D2C|E)IR26)TfStj7>sNUW>!bzC^3B(Tqyr`N;LnFrl5odOI zoUzMbs|L_Ds5{=27Xly&unGWs<}RU(Z+h|7uZBJ1%2NjcC(m5|FTKgCl?@jUxq%nw z0jTiOxn%y|8WrCSsy-f6tL36!d1;@!0;s=u7CV6cJ7CLw`fsM8*1+Q?kI^ zLarCW72-%p_%x3WIf~#T$ReMWF+4uEO76C3)J!^&-SaK4jHaRtyX%IK43~Y0vK)1{ ze7irXf3nrXTzrKbOhUfx?7IL=X5;!SHC)V4T-{S84tHkUy}Wpl0X7q}Vj_@-=V4f?tD>~H)HYTO}5Uma`TY>xk&DDTy9;h9??0LTcCt_s<`$THY;3#cnk z9bi?|H10Q8UIl>wAIBVU8GyMKiMu{sjVl9|DV~?B+-u&XC_V@L)MBMP7#E-Xh$do&epzLZa4-K4 zZd0Y?`2WUjn*ZW9|B##1=AeRRVl3|b0glt+aMc#8OhCo_72rX*AKX(+l}memrFr@) zYFHT?D`Wr0G-xp%0yO{-Gw3gPh)V!sUP!2to}_V?@LjEWIyr?p_*=MdySE%4qRbjA z5)V#g8AIL%-5h6lS{dF8^C@ z;u7jmlK6d=L-K#+Hpl;i+i(!W*e`ey`lPs#RxSbo5jPCJDU4Wx+BYc?R=bv2)mf1N-GMOS0TZ2LfBUg_V%_}W9I?p`-WFch|AkQCWVn%dZ%{Z&_RH+8Rj?-9?-)HDev%#8tiL3o zqRRi^1#!kyNK|{6O-U-mcbYe_Kovsio>u?wtaBMGA6meyK9+z@eMAncrtnoOJeBss z%BW$_{b4&djkbUJ0|ylqRot$TAL>;$us3`Vzwmsd<=5VD>lZk~mP`B$3K>P2`u0*j zn8Q}oTN$q4k}0s6ZWf(8u3m0hwrF{E){_K=d!+JBZ7LZqI{W=hJHBz`-ggx9;p(6n zsJ9`eHF4Q)08yFsxWszaY%Q1-d4JYLOQxPIoGbPy0;N0Do-bzrCH6*~u zRbKjefD?+NjP?VcfJ*5#tNZLl%*@QL?hn0e>U31#d~_3m+TC-T_wD^}R>cz|u*hE1 z-aA-TX5%1oo;THk;j~_oE6BVEp*?4LR=3833Y(Ic+5pJLMAW!~>%Sm{#!?O#8Y zNqZCiAOtU4V-~p*v0j5vM@(>{O6w~axk|QXWyfz48%g2tcvA7rq2{0O95;;ulen;( zFZ&r3qQS_HU`faO|Muzi~;T~uP6@C^?35_9z=Y(s`|6pyhGa-37tVVPfm4j z9un#`=lgwrk@W2~ORO`q`J9dX)j5>oY)?1RzTX3m{}kW0A?+|FNJJlv^}&ViAZH~k zZM8KTLB8CE+fG7w0FoZg}^AH0oUO_*m-cby%MEv&!ik{4~TJv={)Q2^{>RbzOB-QXjJ;m8aF$l*sC+;_n?9_?x&b*#wv+g({WB9h&I(pn0K$IT0GnVWzEc(@6wB4@n9QNUKt)2W<>3}NNiHBPi#Ik$(kf7-kZQ$ zmA+B5c=KZL@&52?R#H+21}AR~S=LVe3WTNZqF59+X~ zSgK_gUGWOz7@$9(L?9*09uU%+8W5+~)C%)Ux^fsMNqo&u zw0JIYlQ}&bt++YvjZ6iEi%Z44PyW|1Tp(l~rqS30IWSjD`OA{?WJW>N~du=3z!)g*b% zn1GudiM=M1mz+?p%vl2>d87urtLp_b)dMSTs_wXjEa}WMHhsECBufYjNls(1aY45UJp23r05(BB` zzT|;IPhL>{5Ji<^08kaZLQDo~n;0m&(0eY#8?#OJDb?pdN2Sk7*|1T-?_xd#@S$!QGT&%UMy2&-UJ*(K!E+G)di}{5ZTU$KW zim%E)X2a>-dAylcN@;us1{QqWQ}^N)DXI2P-rQJ-fb40N<38tjm3Gvf5;flrZ`~FOAWV3E_^33Jl2hv=bOeKi97Mn%R4kII9>W|CAO(-AOs!#3J_Ckti z9p~9@IDf(UDMb@hf07>jFg}?#IHXrlOg5S;|HZh!yL~nQ%j1ae8xou&Y6osbV0@b1 ztZY|Uws)%lF0%#OI6QJrr(zB&jMx;9HSA~gnuq&*{i?S!6-FW7>b3&m$O`lXrIg-@ zY6rhBlKdc%<3J(%oiIVvLQU=Vb}Ef!WtD1dwQ4d}+}UFO~KiD?8KQw;hcVOtTm54XR zLT^XeQ%%~NZB7|T;Sz-+6Q~?sTF;9$XG_Yz%FVgk-IDM5D1Qc4VzE-M(16c+4s8*( z){;ejM%XuFw{+^96b{e$hob&R7|D|LGxQHG?0*bkSm?G$1(_Y3BF6KLRVdd-M>gyeE{X~c7o^9$r8Yt$m19X3@w zJ;cD6hT~E50v2PmYu?i+4IT0w5^bF``VhlYrK~jBUV0_Iv&=nz*V~X$1gxaDghH4F z58EmymS>nCrz&NAeejuRkIlh!3Tn6sah(!a>6(}X)j*^}&)A-X_vAoS@AAu&Ws_(>M~ygl;3(U+PK99dP%kE$mzAVwatszZ-kCIbBv2oEUO%R~IbS z@u}wwFLUSVij$ZYqV`uN@t|~7RgVl31lHlvIw4lBnPMg~{F|W8&Zn3yo3LDuo?bmt z!MU&c7ONzzSRzZcHCqB-^s6F9x+7Z?(vIyfch`T0Zr^t}U=Hm{k9&@J<>tZt7#R#G z@W8LyGax&gX>ct#&$)_2+%|HyR5t{Pw{7;A-79b^i0`$bdZV6QmK&TMG+rz19z$cV z{PJqQ=24P4hb42xn)5Gw)i2e~{QjDz9Il3QQs8AMp6oics)}b|$!v`k-niwM9Ir43 z_`3n9inpUY_H>g*(B`Nkh^1f>fhEU=NMZ&2MKRt>8W|b6Zl?eCrO-m5P58Hs{TX?4 ziC4-ilvR#cG4v^%y;Un(+c=l^X(;?zOB2)ji_<{nbV}y+nVP+R6nYIXWQ*K8sSUPct$nA3Ipg$>LR5>;nJ%e09K}ZUJ z=$nU6d+QyVI-Ec8po^-|9BDXT56Qfs`CL6~3LmZvuNqFD1uC5|5IHOFnU}y$<%mjL zaMa!0q!RW#ja>vW`0qCN4=VWubzLyJ9}5=eXM55Ax~yM5yBM&>Ja5UTrXzvj1nGLU zbHT}q$L5Wv2x~~jzZyr{J$3UjrT_XogfXxq_{tKKU{_l)+wRP*ng}$;n=gV_9F~Or zsK9{c;~!9NMBXXCvYe*$3S`BpK&_!~raF+{AA|aJ6?MqX7wmMpVpib*eJNfCKdivK zd7>P<pS;CCj|oS`g!T zF5?((5vwsn{eufGN!%vL)v!Z5b5Vm6Z({XDhX{^>4dJ1xZn>&{f=1#Xku|n_bcvu7 z5}qKSZ{KTZdWD~hohv$y2#vor2sde2uM;d9Bcbm<9(V8Ooh?_B>zoXLX!k?nm}*jJ zYf@Xsd*fr7J1F|O&i4y-#B^!}@S1Oea~iL6(A^s);*0U79|HA!R{-rO3o{LMC56w@ZRVo=@*N9URS@jHQvx7^|#~@Li8T zOE7Y#dvLFIQb+9rB7RJzhUyi+Sk%j&H({*t!l~>?8a#rJ>*AfG%gY7DCgAfN)@185 z4qybR{?ih%rW=VyX6I7|)rGeOb*|t%<*(6It9cqD@pEctnEyy4{HL@1fc!1V{JfN5 z(681=08UMO>7=n{d!mX)$>Lfb%k%TrObx=;$>-x9yz})D`ZU%`-@w|+Zp-1`GP$O1 zNZC*aHXKOY1ip7ECLZExls8cCP!NY}-t&#`O~xS44vXUKk}Uk;9>TrgC|jPBnllYs z;t0tDIV=hhmJ2==?+FhUjU=y&mRrJMg@rO?#6U8<@nhbiKP4k@{cO$5)ERFg6TyWA zeswrH>e3Vf%l5t4rY$cza6$8js~fBEifW1unL(ESGC4sfH`{f$7@w>I#MH#rkrL*G zo!qtIE6O}ZTA1x5@GDERTj`1YK-$m74Iuzcf27Uh4Vdu?lu+ytvbQ)Iezek#1f~$X1*!+#@HFaLS zDb2IkHFV#b7a7J!!-&IQGIIx)L<&VfoUxlHgM3Dj_EeMKdu0%ctO6WUzMg)TPC`QSjvq)S z22oJRpxp3}_{v(M$fKVh(U!mLPa3_u{9!s;5Q`r+6}V&XOE~iBV5&^Vj^(u#9Pw<7 zPsM_r(&qj0=7Eg0HOWYVKJ`E2Y2N?#fYR;* z#;n{bV%1!P44TtaMEwz4ZYi(`Hhx6Cl7rIQAHQoS&->tV6UK(wVD%coKrs2H4CKu6 znqgB8#dE)PMcz44dec69Xq@$wgNs&S+?1QWJiMUYzpF8^debqgP)UTK%eR@9QRIhU zUdS3t2Va+%26@9S)%3)(i84*JdLy;OfJ)%|4H48|RsVe`D$xE72ML1KR|dADy;l7ua@ zAnV9v>1;L6^O`YtXWL3kjPN}5t(z)}@*`6Ihe!ze%2q4`g`G!(OaVclyIr$l|E+Gu{o$>KmaM`p!xevyb&e!oFj%_-yY`Pz0%~V(4qzXFifWIXvX%Kn-Cp49?f<$BW2{ z_s0G3pEtW+(=SXJ_!xcQ3*Uw=a;R0tL7D3Yt9CYUP!f?H*okhZJ6dluRr zUB^bRn@VkmnPLNJ1*?Af{vWlR0NfnxGggV%jC!MIQheq&@y#f_;uwA@PbA*(9Cu(C z6FKb|E_!QEZ4$52G{d}$D!DpvOQ`#`94@88$82A+P14-5-!F7YX1gG6T@!u2g7Mjl zyo^)aw*Im;l1sXco?Gas$2iEbo-t9Um>^N0G7~F`vDLGQ5gXyxO*i)5{)|TQDFY6xw$pBP7S4%Q0W_5nOj^&QcUk&Dn~r_#jzf zX5Pmq>#T_8f^C9mL~P|7ymETT89G-m&OS2-`N0iqU*9cd?^YREuow_)bSs-a=0LG^ zHpFIbN#=gH6$vk?j2CYlzQl-PC|F8XH*VTNvTn@9zD)*p945?kKJ-*i+(dueMUik9 z(U8cZIQLrSr#454^x1$WP<)1_F5+b$_02|qXm(|1Iwqtz@=RtLiuHpb!Zrz(Zu$_9 zfidPlPGq2eDU-f<#J(MUyh>TQTCw(%M0(Scfoi#Am!{PAohnY#TmhM27P#8QW~R~n zwa3lCC-V~)qA!+#9JkifOtA~)%21iHxZQl>dW)&GOS6e7MwUuR6S7vpT46(ijO8CF zdz-kQPL-&;hu|@&EQbVc^senkMl2H(hok2%AV_$o;uIxz(EXaF8AoM{iHtWkVL4>n z&I(%{?_kPb>=!mDI#F(g968w&G{iHR$n=4&Li2mZn-T{;C*%6_h@= z;^|`r6?p3Seo(E3!eEaX((oTWr#{#6sv_9QSQc`HKUCOhI!+74 zn}n;Hn=@y5=e9YA?ZLcKx|vn!DEDKe|CA!I)ZD>~RoP908#Q;N7AY%HWS-q9dFFV- zPjQCag_rw8FPsOLW%8#=&&3-L$j%= zMJA}7Zm7j8t>1M5kBJIPj5N}OUFU#w6`Wp#K|k;JhcVk|ZY(TL)s+Y|=eS?PeLE}! z6eP`~BU1`>gzB$yQ9BszF~UQo>N^K(h-1IV#$9^2tzyM1xzNbFhIsz__I zT-7gC{IGzcmfAI(qfQIa(O))Qtyvs7vRmDLS?c2CK!J_r7K$YAQa)*LRruL&VkG-& zcC<1bhG?&4%7U@$piW1a$8p6m%5<=QUikb)T9&WKiQzZ+xB+<^wL_?Z(^`E}qSaz$ zq_r)kR(SLM7|B(q!;O+GgN<;#gq3C}C-uoIR|g466s+S=I#yOucyEo_yfBwlv7(uQ zQD!&9nTsIWce(RYy{v~_dp_wd){M`2R%K`&;nK&qL!Pc~W z>+?1f7rFORA2u-a;&5TK*|FddGEuBipCrY^U`pl+`%S}Q3!{b=nD8C7Z6Yr=#A)bV z_;?>~ZRJ@2kF1hEE|!m3u79cXu1PI#gN2&mg5GJG15bidG=t9iVENwP4VI0)szBkJ zym}aCCc0Ykx~9vlFM3f<*~fQPGO&a>_et&7-?R6BT--`PakoWW>;Du%6#irHi^FsG z61tQ@U^m;WEA$O!AG>ZCPNa4;PfMM}?hs0|@Ud&zSkbZFrsK+$Zb9y^LsvU{8vVR_ zRS^!G8w|ZpO}%cV2&z!sD*v&g_;t{=_|5F+7YL@C11T(~LvPLJ>#Jr&SJ@e|4k7yk zRSkSw?<2S-!9sL2eVacgLZt_a>tdvd`DCk&Eoa(74kJJB4a9bRu8ukXtM8LSEu&fP zK(ntxvcR8n&{cCjL3#J1y}QKyIu+eK`K}i)PNby&JOfuqopv8oe-A(x#PK44@YSqBxoT7BQ z#1qDvK73t=*(41}G#y2A_orwtDPhx(O@3Z`M)F`|EF;iF0`_OADvI6%)T5QaPTCFl zwt*LYSibk(jPneW7OHEJ=W{X^)7~N2ogO`wu3n`@ zo(*sN=|v~kNlq@4kcgQRboa;#$As@a(waF7M?|Vv=*RC2 zryKr(1R-6Ud&<$$Akt0yCLBNgVa+nLdH!<7lcKVlkM3ZoF#?g6_|Pnh``P#EY9fm+ z6*Z5eH&0=Cp-56Ibggub0$D-5SlHkkpX%BdVgg_g?t? z;64?;CFB07GtZ66>!oQ0nm)d-UoKKU{&Z*Q`Wl^jXc6Y)?5;Ty&&oIBes=bps84io zb4-N~*QCi{^a7*HEPs1CO(V%~9JHDfR*`OEX%mJrGv5BhW9xhvVzj4N%&>~btNi5- zy0ARJ8B=vy?(d^R)c5P$YSl+&^)8-r@8b+zxOon87#AH6_ddDbI&Z6`YZB}_(QUjQ zj`*V`b3_&AJm*%%z2(d;c9#g4ykEpbGl+$Hxh~>4pV4HR56+kRA37y3^rvOtiO4mr zio6=}8acq$og+wYby3Kf?@8~4hsSJpi6h^sMR-Uvl*7F3(k>nz9>yFLij}72Yb&tM z$jBJeo_ctA!2EfB{Hi$HHVd7Qjfr8w=D|I{nUg^lQbHq0c&8D9Sr<>dq#u^boqGHn zNuJAZ7}T%@{NvRpZ76z8F2S=su(ufUFTu6yt6x@MN4^K&l*giwK!)N|%cpx_`)p~q z-Xs;fqmF+$gyD^>nz&lJ^4$)iu8Kv;_-H#CoVul~dA-C9i(PUiVm;FXjV4{ROUr8(PAgAu5A0Y-4|$^j)Derb%^$vzjSl+F4|l@ zekoVSEf4ths*j)}k35Q-0bHWH$EVD^pOdQiz@*z}4{6Ycaz7OMI}602Tr%V0@P$)& z%@j?GMZBwpVLpeNT4xs>NoEb3!c#+w8!Ge7pZ3=M>`R(~v;W5;`SDLqUENMBt&Zy%~2=zw7%Yyul1D5+ECzz#*mN7{#pIEAPGg@e@s?<5@2<@Uygs!ZZ_fqcyZ@1<9Y->@#5mBRVc6xzF| z-<-^OATTn-e$d78a?Dn2KMPwcRF`IfgIJ2r+zpz+zm}_ipH&(OYQopA(ce}M(B5Wq zTk~Mh%)q==d%V9~G^Pl`Gk^Bn!NiZLp}Yw7*`>IENWB{j<-wmLw6=>by_`I*{~@pB zrPFj{i=-uX8;;IFKqzzTHB%x|-`?On9E*T`@F7dH$4Mrc^I7&~1abXlRf@$WD~g$m zu1LK_WMrlNf|mJgG2S-Tc3&uI;^9bh&x*@E)6*SmE28EKoxhDezo`f&)-zbr61ndQ zwAAzvvOLZHxooCay|qU8m*Gz`E+Ao)61zJ!@R7#Jpg+_;?)^ zB{{E;oymh+M+_|y&k^|BWO+py5MO26%J5$I-?@%ibmJ+Nnkm-1AK>>RC5flpHi<~j zR`48^GrmTc=hgmrdgy{upT3 z0A7C;?g10-N+oE!`#3S%gEH%Nd<;E%h{}#h{wh$2O`jp$;Hlyi`92lfHF=RvQ_PEy zM_kJ_F-|5;rWEkwcioToB{)8uQN5znP31b@mXw~Ul(+IfTm%(j(`CTOkf{STvBauU z@rySceF;bOO^jwtv72>P+714mE8L=siL4>+lCdg>vJZB?^^JE-9uLC-EC-{5rn5D> zTQjlZJxdJ|Ubjx{bq)nRsn22MqXCf%7+;)fH&t=BFrBd%{O2?NXWQ8s=IvpZRMw~Z z$0A0V3bVJ(#yK@Bude|=d_DM5 zb_qhWTesA6|Fzo!yFhtDF zZTxHdMyW`AnD(7N(Nrnhbd3jh3b#`*gn+AP;c&h_%v~~GVegR(9K)oB*+lqST63aE z<=J-Y@nHl|`ulprRygD5DY_)>@&^8&7(7C}z9FIe4+R%WhePis;qF-xr)QVhjsFoT zq+d-@=9gKgQE6k7*Ut8Fj^ow-6)gd`d-waVPglDXIR_q50BGiPTWyt@7=~M50tb?H z-pi}@-s~~pl6t&85`JZ!LU)nEYxjACGf_62jN}a7Z}Qxw4@u^d=Ka#^ zjl7S5|8gU|Tj)KaYcscCpxfFoNIi>NJWR7DXB5<)4~y`{6)D4L%NL%y2Zi;N+z**V zG9|J#E}Z|_d2xdw&;6R>|%^r!o?!va`MDt##iQzt+q19f7NN+uMkH^P4u zUAREJAB^%w$n)t_7T2SXJA+iDlb*+%oC$gTSikvsP`T+Tx6>LN*<4^YsoP~iWx7T` zN1)p}hr|H7#n1{o*Y)k8BNvaBXeaMzVGTM__~S(qE+`CqerVp+qUB09r018E8=w)+ zsm={4Ad`$rD%{n+@BZhU9Ib8kw$;z>$=eQTdF{#^tucaeZ}d$JM(BwzcU` z&dz8rLmt+aM~mm!=@-q;o9i*dEvMTl;XM^%pjOU7WMj5)tFit@XE8ZK36ZlH%J7r8 zy#hC&R`L1@<8-O6mqW*P11n6%D)RZ&)f45SE^+v&lyw$HJl?&g6?(5kh4r>P%3Ex*RCF`JV)3Iu{I0m5~ zTv*Ram_UeBpJ}-2gkwhXmpu5tsKde9B-yHPSzPX}WC#ptDMw}f5TvEpq9dr&=(Q=8 z+!{h0mcTxik6OO7wXVlqX= z;j;j&pj3qo7Jd4oCsPteG5QOKu*N9-V;36U26B>&m#gZgeIMIu2|=(K^hEAxRsQwv z{{WcEFf0EBFfRM$SC%Jf6kMv908e6FCA3f3Q zz}S-NZ~yrQ9u1;@>T6*cr_t?o)$pL1&T~W}8!=KBtrZO9U2u6o^2}a=Y0~cO)j8t+#|# z&{om6L$8QJVUc8y8q0(NuZaQ!3K`vL?Qs@7wrh_>R%b+{{SkF|Ths$o^#Ie_qvyBV z^RA~#DK-BfW;u#9Sa@J*si~C;O}4Wu9{Ec&daL`9xoVn zxYtqeL~X*7N)=%i3(u)B>CfS7_aE-5a~OYqvVuXtC6`n(4~G^=JnuI2U7gu%dQV-c zT1d1&E}J_1y5!qet)U1-oeVhdZdzjGqzocVx$4i9(NXwPW2Ute7Ds40k)--5R@$$+r!$Dl+5=&;YIx{{&cKA zNQ``5znngVs78ACb=}>1n9MWxoi{G4{t{N(z1vj8LTwLxu2G(M2i&+P6PlPrc!dfE z8^w$MTMc;l9>!21iw_rmwZ;>*X=)1-$*!)h^6*&E5p1JjFUZERZ{InH;B~O6y#zIV z3yX5^Gi6;abKeZ-A3-8Cs99(_RuMfV>*$Pxt;z4FaC?y-*j9)iw%JL=9XT>GC8vmj z=A<#Z?M}P!k&Uo1h3%!)?OKP3#Ohdj*Qv~kX{%!3F=r^=+ zq2)f_lo@niTJ477G#AoU0n`RT=o7$ks-ek81RwKX8x!rx;^%@l02@*Bs6$31-Ll+Q zk0Va+Z2-_qhMv5x-go6cs<5lWKUtM#=?#F>sF_P_*Cy_OOnj?W@ zl63lwlNUpde6F8|BDPzxTWh=2Huh;Bj=hqyd803xUo(hbx>j4$8n-cB>67Z3DVE-I zS{XuhnkZ8i8#aodyNw$^^Ck4QUuY!@jn-bi0=mTNwb}&F7igu<@sGn?O*yb0b#8^Z)Ifg2>%5`V=;ptkd2S35)IU?G_YMgl7 zq~XRy`wRc(_gj#*yOp-cEpo%1o<2t!IHn{doN@cSSMdQ|_O{%J=o7yq8hnsr%3+7ph+TkZ`SS~JisTM7O8|kyZ0((RyY*NM zxXv_jJSw;7c?~KiU|phjwm~8F)S-MDW3j2_zevc-Ve)^G5T7%`$?B7*%uUc=7$oI0 zfI)7@aEU~iTF*p&&h)^dy{-MCDSK7`{E`(C$iXY04KR{t-xfS==iVwv%2opW=g8}6 z-#%iW0+157bbQojbEDWW2)lO$NS;*TtLBoe&LPrF0YHa4i`L)wQBKj6G3Pb+g+b&V@P1jMl^8Y^!l3~K>lpF2G|F%*l3>pbHoJ3^8sh!KO zi&?T9FGy%zvSuV`j#A9)`d^XvezC1a%|98UZQS1*A=4hL8nc#XNI%iP(e=7Fa*n#< z#lyidb#4MM$Oc@XxCtZ_7|8V3tseZ&2TzN8k150vTB1V}bsGJF7w1`Sd%M}A>};&K z%cn{Ddi&)cyg`nVCVg*BAOhRGhJgo9Z5}T)%?U>ingbmtNl4As8|%iZHQDb;QWEU6 z*5Sr2Xgw#9j#ROk+#M8xcT)2>{-b__^AQqS`q*J4!K#Qo7M5AjGwEI#5vt^WoDTQ4 z{))RK(|Q1yOcKKjK6_uI0R%Hwz=&iqhlr{CeGt(|0V##=aE_vO&>34924n(rJ8M^m z_TVO5X?jkokv=PfkoEA1LeS%_6H4q70>b5J#LAYq63YvR0&G>tknk&_|3k3%mi;N( zw*6^@%U^GguK*f(MCXsE3R=PHGE2{LPu1RU^X@!e;1sAdRNK!14b*+@4c;rw+Q5~s zn+4aWTR=$ET9+BJ1sgb7=MAgG`cfL#igdv|$Jd9cQyOKsR~gOi55kM|I#T>rYO+E2 z!#ExLO+5PVl-Hb~Kz8@JWc*O(Io{A9zq@RLRxY{kq0rvRNN>R)OG(Rj{Q(olt9adR zAHTGv+|&&0mwpNyxv6*lw}-52NClIXRN8zlkPUz7tbu!-j2x@k4esGZ=fj--LY3j^ zXbQ@sNKl^B=D=9}s6!9zsRol3ZVIPoXpeG%R4U(se>Lh)=kuP|gtu^nrwX5!CLW7x z#=(}4olv6DTgf;Dd;Mp{#$o}^_eDD-dOQp#94(sFp$~>SS{_LNKq>j8H>ca5`~gsU zXLz5i=PRZ)k7Y^YjT>J*cvOOiNhAWpvNgi+6mci%sJe$1lHm_W@S@2TT~lW#sw}p0 z&v&afteT zU59y_-dWCZw!0zyk|K~ZyEjf*e>z@~FQ<2tK@RA0$1eFFzs)z!13R~4)qt$!n^A>v z6kZ6gbegp=Udw|9ydB+)OS+xIhAsI2BknB2y4t#aZGebKBS?3*bl0Dd?hXOz?gr@w zk?wBk?(UNA?(VL$bZ>R<{p|NS=lyg(;-!~dYp$5%9`|odev}*iDH`GT!f7CJ9<)X` zF0PAVBkfLUq00k`-hosNw>zl{hGg$nz69NqYXyyTPCnn^!eDfRo->276eYToql;92 z?E0daPu#xGHiMPg`-Z+P60dejKbd^}_O~+oEjVV6KIgO=^QG?m&1H7LxQG5w6s6Bb z8a`gcTR(7GsW2oP($-=sZ+wQKME0IATcvUz?~10-`}g>qNxU5DPHO%iA?yw^fZnoj z%FHUif5R?R@(bboJ#WP&9Io#i_}n(sBXSkP(v*Z=a}{ft zl$zbzvfAw+VX|2(HZ0cJpkGH(WllZXoROp|-r9sX&z9;|AP7N(xcSaiXFUUBkEvJ{ zT4J^Nfcw8F?u2l{_g;osn}!gQtji0)CoFr$e!+x_2T+O-+vDNm)_Pbvv*8|D;@v9j z8wYQ!AdiRz+YGxuisq@e?w=tzzg0ve-^ww>-z-(L4W6@NRA*mRSJE5f`?ve)AnLo#h3zWTQc%{>SVk-^$trldU9tv3##Z_$A|a73&wfD0 zVDyDNyZUTXh=p21Bk}+NZ|gth&*G(;SU^{m%Ow#MPs~cfC4$-d*4V7c%*>qgf1x#m zU<#n?RNaM)Z#-nmCqL}Zw)r0a4#65~8fv}2o-6&E*gOGVx#6q7K_m$y7!I=><+h+; zdV1hM!eJLEd2i}{rVab?ty#juF>~army&pBGmVi^;@C|r32D?CMA%$hgx08+*ZTK2 zJ0|kFL~5%f#XB}TX!5tEDVy!*y(?OU!o9B@e2HMOL@IW(Afpm>r+IAvIX=e;n%_Ozo3<%11;b> z7RaXySa0ts5e8)v5tH*k&L(hJs6x77Eli&;{qz70JNfxlrH9ppq-tyi3@d&@ppGz? z>*<9875%=M3i<&2F|>01)Dh0c1u9StH?x|Keu%!#oFhjec9m~O zNqEzv_`kBEytE6Pl*r9g^x# z3N}pClaf=366pdhfEG#qgFLlz4r5bdWM)*26=s7?VAEQ8oK&7T)=pb&>8BHS)w+Z7 zxW8*|z@;ULFzt0=_5jYOf`WpM0dAAAPGbd5#73gS*|>D|$p9fb za2<)L{0-oEC7x7t<6u-9KN4|e)0RyS@)1-H0(PPvOlbNjoWvOeM?`U}#KB@826AvNp|KLdhqsEo% zj)r~*X#b5T_4fY@Pr~uu{I3ocAy{L}edJQf1f(gi|FK1Fabhk&_a)M5GY?{|<4@}f z9uJPM_A*5$q0$myNdXq#WO5GucF-Mb9zF>t22M+ zO~;#7zmI3U4r%l6+U|n4a$oo^TM@yAq*yKAlmFxM8Su;v|pJ~|XIcDnE#8q5x@zI?zv5lp6a3!Z* zjh*@G_P>(^*xwnVeZGv#j`fW1JIaQUye6n)fKE62eR@uedDrNO5xIfn+-V!$QG?|A zQRm|~N>0jJhrnbyI@y3$3Y(~pC$c@&{#uW$41|&Co2FsD(a~CAUm`@QObfwy&Zx8# zj+sm)U(j8wquI_d>WL?&Q9fR}A+Z`pD2I;4D9^kvfCklcSf0fuVnP+{#UD-*Us~Z` z)NVLVmJx@(u~}Hr((d__E)f&vl_#2W%g#cJ2L@O~nb%vH%@!8SP93t^xGsC|*-lft zd#g)O57l|S54t83Ty=1Cuqsb>Dzv~s7;Z`RO5HDyH!wWFQiX!qrVgfLq4ghOX2?0N z4@W?dBS=5CoiPGIZkX_?*ijG7Fy9GZhdn>k5JcWgxb8B9M7}yo9}o6sJ#*m_y^a0y z<%^bu6`XaLI#BU1Df*h{>KPwB9g;1K*Z&TVG8AoAUg~n3y2BnQciL5C%6|t(Eqp`H z#T*-6hfhQbXl_5atuX(PicS-g5QB{&eF6S7^i&i8Ql5t$DgqS}P%DyS&POgWJxsDX zM=bG~^1x4SU|mm`6%7IC^tcI}1=aS1^J=hX<@B8ha88gXy~~aDtBv>~ffH!msJI2! zZ-oq;rp`%0kN8o85ckaxk8TyGJRz5 zon^$1zMWk(InZCK_#NaEZKDBNVlZdardO|MD3FtJ}A5@H-&n!nfGdReP!0$?IAGZ== zD<^lg$xXdu-3zMUFua&BFN<NU2bI>q27}lT^a- znscTkg(#X%@SJrsv|-q;tm3q1+}C1NSKTP6LXR$fUHPj?KF6lA!A5Xp!G*DInQEX( z$CG=-wgEJ3(c&DMW>t!Nb;K~3^7h}abuGascB4d=?FwX*vVlu}8N0cp5ecsOQx+r? zh~g`8Kk!mJZv^F@vR0bhJjg;8<6!RM@-o{9!&^Z=IQ`@$EP5=2pnb$jox^jMxNouG zD%2rhV|e@rIxnxJ(l=o=?^5`h0L3QoV1$m*$OVo+GaH+7Cy(YvUrNETQ#Tkk1RWH= zwcRDp=?6CAqzcG4{byKal_xybuNo20_GFBl;d-8oA`%*rV}m{|!I*Lk=U1K_FFhjq z`HdpV83w~r!R_orbV1`)oPnGG`t*p>EGmJN#lU%`y1W1Xhb$ehP*6BJAI-mLg4ov{ zU@0naHnvGJ7UKc{Q|IybXaW2-MJmDUUtmW7H%2y*=n{5YHjB-Qjrcgp#Smh%Hxs+D zCa{G`^|R8G8>mW$fRU8uWd{r!EvZSJ-iQ)?HW4P?`^IK6IUwBZcwGym8-vr|ByJtc z7o5x=BrC_ZqtG2QV|S72%+GI0g}k)h47^-mA(ed0wRqq3mu(jC)?Z4-GbiPAf5!q0 z;wEol0t4%hBqVh8w=0{cZ-zw|F(p&J*@2|t9Y zt84h!h_*E&=06o13gm53ToqRB7c6Bs<4)ahGWn-!mG`q|xeh{g&-iQax$Z%Q81Sho z8LL9&@Eni)MZuUN4Cst$i%`eb2W;(?Nl#IPn0cRsfjcSo%ezr&CgWzOm^L> z$02I`YGnN=XO1Khn2{`46lxt;-&b29W%^lnf&w;-KpU=rHl$08f`mkXm#D!Y0ER-5Ej|PEB^pvM(HvFA&GP znf&A~8+HiB{vT!z6829sM_Y8Y4ibLA<_A;aPxvcS(tTjx`JbRt)BgmOh(ku>sQzl^ zq<2$+O4S-Hz16X3JpflAP0y)G-%tM5_E<}J=`2_=8qUsBo_g*2;6`bjxz%2M&BC?H z81>%a2*-lZM48ovwc(v%1lpwno!-dxXf{cTv%}6p0$f|`Mx3JfT++71s1 z8$aUO|19kQfOtD+w*Fh9!T}2)dJ0i121AiSU^!1g3k6vW$E1CxAK)L9 z0WXs^B9mD6ZIYr;?e5lWrosZ>rOBD4;&3`#Ks-?(x2LDvctUjC9B=XtYOyI9`*y2> zR+}`#$qspa<69BeL(ard@)=g3THV&4KqY6ahBbw>gAG(%?7dx#N|^Xeakm1CsHXKxLIRWi**%+#yWSYBD%} z{mEiAS9QHtn4ZsizR_ehM>pMP$6@KpZmTB*bNm8;a^?S%?sFZ$t^ed-qQk!5qr+NJ z(97XoimE@U+$1$Z6@j-lhpOI2zst@QmAI%VoTh%O^=L(g{gK&WY!T>q&^se=XsT(l-=ku-q#I(ME~!z7Uwxb?xfryQo(g(6u?rP#-y1+1b!l2>(0c zAh`fO3gj2QpPu|QgCy%;g4sJtG9XJmtmu=M+(GKE%rS`fZEdfnGYUYzdkIpJcjIGX z_Au?tGs_Y6epPO>kETp(SD4BJn!^PrYA5|OBq{+ZV*fbNuatLyp^i^RPPXzzc-apr zQf2b1{48GL3LW(s9_aJB-rwyY@Js^2;oW`Sh(N?iK2O{NoyaaMnIinbB&i{X$0>_; z1>ih4Oq-E3N4LM~Jqa37u&T|Ey^k(5` z@~&qpV8AE{qUdIC^=04kaHlGhOuDX6@}~vt*-c*Em-rw~`)FWAhAlAgk9GtO`q*)7+Lam?nsN3=0y1!#@&GY8Fs znARuV@NK$_=3vuqT(JZ1W&AyA1k~Rnrb5Xj>|AeGhj*N%OY^HnPOqW(m|q0$ z$0v{^1Z*b?GR5bvZgec&_LG|hNP2H0XffAhrkwURN2SWNL>mvWG5!;1WPSh?^_NX< z%qPt3dWxP_cPK$dhZ9IEEoD}lvBT^bGcX{A`TI zDY%K%otRaN9!8^b1xkUs^$c-Q002)#Y>R-qdU2`X(WOjW4GE=UVaIT;+T=>F*9zvC zerhEf0xlf66E^GlgBzhUh8gwg2!{U3>Y4ppR`039F=Pm{(P%|HLLcvUXjG;vhuK);0N(?ef*e|onx`O540|qI)01vtJ1b9kbJ3T%x?3j#eyt=|CTV4}7kE55v z1Ck5LsYR{}I<^`qnjqwjimbcmR*+B?e!^pTlqJD*R_Cj<;3u>zEh|+hf`}^+x&K_w zLa@A(fmE%I_)qxJKKkwF%^hCcu3&ptgCE1Ih|H#(f^3rm`iCx46*qSeM2pJ5ikC5B zyO4AS@-$AT!cab3BXwkFanWl>eb4WuBsZ%h?#N`1az+?zk1O4)`S}7jj{q2kBGvVG zq(mjxt4}&CCe9Mm3Y($VzciY579`r+-J2omYO+C38trCb@99?#79xMD^|Vv5x@TqG zB7t!%dN)M#no=A;u7h_oQY2cx50>j&^Ku($k_>&VeNcXxi_Sqa3}R;`TguuH5tw;(vL9`h45G?jP&!ZmlDfW0XT_)^IqIfo{- zy~iOQ5lh_8`m<@0iHDN8l5G#x;>r2=av2ssyhQ&)SPFD3xW8VCbsx)=7de+7EO?)Y z-CJX`%u&_p9&kvaibw)5rPP0AN-%fagzws+mkD0M+Za$x=o}kyaNPyqV6{bH%v}lY z7t~P)usArbtDEXcU}fHK1H*zy{nL?_eP=^Pu5Hw$*P8ot8dU?=qsm9V8jLk-Jy zu@E_3rH@AKOt@}1#-Nx+sjiOfMe$O$aSZ9TGW>Sd{~CGws7P#Sre6cn(pvymdD<2n4?De9{N*(vy*|TYo4C@SI|~uh z2IMCOjxP5JUCpzWIZemT3z{qaE{{0XL5%U;1g>gY$@ssJr+b6{H?_%;&)?5Fh444k zMq+zbeM=v9m?64e7lx03u+6&YADgy%aHa(z+T|6_EKL!IKlnwh6u-i{TDijD^`%}g zKRU2*;8Ou?TF%*7I=>pAe}VWkn|4qE6N}jt&Lk}x z8whcgWn5NQM#9Eyb1VRn(JiEgt`G)JzmK1`{l5TdFFbBIgLGoYae2<_d<=LC$28%B z;}&qckFN{D5%ZChB6{OoHSgTM=qe)df51B7`!w!z|M|*1f&O#{W`v;(NmNb`=qU z#NF+6azM>s#TJDGzQRWw_9g!%yf{KqOspfCenz*QZukIZJNa>cHpitWYU~yXaTUNQ#-S#&cAt7fmlr7CT8fesU?ELJF12uhSdh*IGnaD9n_Gq>Ufc(j%}P zPQ2mF9(exQ_3-+n14d=u>-^E0RwpC@`Z-gF{~MEM)ziykxiY%Mki*4V9Ra$NeF46q zpZu(07dgY>e~TcO+&EEgXR09*DTtGW^L*qhH#CUka3rKAhS%oV z-8lFQjY1ug-?#W5yC3crFc^MSsdW@llkFZU7GUlPo=kZZZmsQVXRt1@T!W(x{C59{ z1G9pk&?Pcs_ubD~0Okiws1?69UmpnFcN12m!C1+c-|$qS_`;0KrFS5COyv)+eF;D4 zAG>k0L_KKne(69*$fk9sEBuaMt@dL$E@p6}Fcl$2kM}4uuH5H;eEfeF9iQWYt5@UD z&Gu^>4OGnBGoPCZyO5VrXG{%+&~JX_!iN3-Yc4E~?k9bEF1o5r=C{Fm*GIk9e0}4Y z>=>Z_7D;$H!SN*i`ZQ7TdqTkB5_<#ob$p5ld`0{g_RAx{W@a)Z&4?a}Q>sr0exrZ|@H!DLSU zr|W$(*_h=z*VsNan z*){er#@KZvDc`0Tm9v_>niRCY(@ito!}S#kJT)w;6Zv1@ z@aMt-JMt$lr=VW^S~u>OND$9ptm82hh2F2!DgnbVKCDh^kmDBe-@?$F4q{kZ+WyFn zMPv{NuhoA1*X)>F*FUEIl?Tc=P{eWuqtP1)U@dT#Z+TwIp~G!S+Sk(t+FzsI+ zeD(5m1}!jq-vVaeF8(WYs{CI-C$dSt z{Py9G+Xe;{?-F%r`y#unV;=qmI(dgNHXoX3`Do)NRQW+4b&hs2ClE!mN0%v*f`ySX z6=BI-1qQl7(h8Sp`@-Z}$5)_PD0gGU*<)BWlWdiw`2XJ5< z?VZS%;Z~=Q#uezjWu($f4!;mq44k-7>1#A!58s?ao0NYHGaYXQCu`7apDtT#yB{-| z=`UUw3&dIIRNEPj<;DN^v0I=0tS#YwSL_`DpPI5E`dOb{z`&3NP~2GB zk_nZ2l!y7L=Xby>M=Lh-0LV?viy0iim*3NAq?(Y2i@q)q=#O4_{F?t<5drQkMvft``%g?qlf zwN1xtKsGETzFu=zCZY6J1<0o5LR&uIs1a|}e;C!}1H%~+V6_BIU-mr;Dg?*yM1VNh zMWAyj83F_SQwhXRuNB)~7*hNdp+%-+DD)@hn;2f8;$Z_NTr;baFPoJ46f6TeeFle0 zm1W$Z)mR!IL>oqliF*FJMx68fdi&h3 zQ#Ln)8XO{u7#k&8i)IyquESB4%M>eODk99kN7zV;u@&6fwvn|J z69OgS4UL+vJhm=O;vN?W2rb3#9l;%r8{_CKo>BYI>n=!!55{&>r_5ByxdF*$S@gvX zWqn0pklgqL<%2Y&NzSg%jd@molPb&1e@9OtS9Ou$jBlhok16Q!PGI0|bNZ?b#)aQV z`92WA*e8ZO+Q#fK85QEeF%>GN8cv!h*2@WBq4OtvHDL-co1#xY?2jyW;sBr4gvoF$c2x$R+@;(8csXiaI-^ zg^%MssxuWZpfwuGw;ul4&lf}h>(h*SFY~3|G?*P7!puw=uu0Ck!HWKoptPI-R$r$? zjlbpHw)?pVd>S8l3U%QvF6K*h$iTJ9k*#Mq7ZaP^{yHHFgNK5b9_7b`sBAl>PrQGd z5cMhq>9v9$^b4%?`D{FFM~uG>k)rxNL~0v$AVwzzSm7<=zhvWVpF%{5H2#r|d#5ZM(MgIX!@Q5PO0LWu#*U6o z!$La_d_o<6gb?;9MN1tElDeYVh<$|ahPuvQk z8F!(8dz-*eI}{X!3h|-F?%v*vN7n}ya4Y5E8JpcN_(RjNGFq%hjlNHII;8+j)!~Qs z)NAvClA#}V<%865i{2}#wD0M-JjAwRt$58SD7oG#5z0^Kq6b1%YR2-!Pr(74hBB#Gn(!wy3k; z+|?!jtHqDGT>)QU2OTUhwlpPUhQc?8k|o%H>}-qbW8Dw@RAuoL$jkk}Pe;={Kk(B; z+%-~#mAcA6c1|L(3LUo5V1Y%-%458sI3(OYGvhf$m~~c8_q$)a>y#jyjoF-%^HZ|gq}ls{QGjLY&S%LYdbsn2d_s1k zdxYAq)(aJK*owvLMUmna^M4+fATz#fB$PZG5gUmq#y}4RRJGNEj zrn+=WPu$sC6{)t4H*zv*keXFo+gdkqR8f7o=?iFVG1xm-vF`*qIn7w+;8pkL=VF-z z!fx?OIiNfsF;ESSJ9!5NR6V>C5e~{tD5p`Fl>9_jUB-j(pZ7(QiZD4O=M2FFT2BdH zh5bj_`seUhMR9HrYoAh2)X&!^5SYRHwB-R7qA#pzv4)Uc7qqUQIOgn?f=7Q2!5K-g zfrg1Gmdg^R3|rf_+tVX&1OMhtCU6D}APwzeh$-kpx2j+r?} zXh}@9|6vZra4~P8qC1~0P=>mA#xtIsX_I4Pi~^B7&(MWcz_`UfQ=EdmY+~h=N!}NO~B5 zFHacmCu~cLGRT+WI|xTFjt?3!WnG!Mw5?ac34MJvJx1N-d<D_pgbZ~|dZEkLkLqPFfQc~!(iyW&Hu=3(*(w?MQjYea(MN+@!#NMK z92oOu5Pgl0FyYZuqa5-g(7aoP8}m%2X)hc|Ea6iJr7fi;{$9Xu5u0~EGBTTZmPmhg z%?5INL81pUokz8mU)(p4bHO3-?t=mKR*niq z&{$u|MMFxiy%r!nRz1!2IxilhXRmyek#P?@I&(GW0)u&$2IA#WM{?QhmV`8GFi0rg z_#TD*;|$TCEz=BQ96U8gtP|m1zif90m~?mkmX?qZRZ{A8u3D2lyj7>04<~StsxX6L zPH)|oXP4Ij7%bB3o^kBXZw={>I!ZX|q-wSJ z&(KadC;F2^3w9^)0_qXTrJc-PV?Q;UvD-M({Hj*{L~eJiBjnr-C)RSXe0u>?O#?W! z4OIeHU^;&Hi0iRA3WTv3MR{!b_>`F^mDnxyK?C&+%aF;?OGTkbD{GP2di$Ogt-{pA z)>6=RzZICUV7@-5WFJZHi>y|g!k<0Z>$6$$p%+P&(+Z8SFTy+iwhb<5ug7-t!UXNs zJP7+6Hm14@C1nP|5cQXh&Re{;w&E{uF=uM{)|pq1>jhTtOpdh@@YEyvUqNMy%hlV@ z1vWmQO;RNYmPluQ%hjW%Hy#%bUT=SJQDm{B!sFvx9!+_=(zDw?f`9?%NByG7H!xdV zs!n~2!vBv}_}IMFWRa+_NbLu3BQ&~>;x7a&O0S~b1ebhUQW zSNF^k`*fAa^;AAa>ecoZs_93h4ZhGaSPsVBMs+&phF1gkQkeL8C9faVV4(PUhy~%d z-}NDn z$kFNi$gzisalHN+*Dp9k0BQY>t;CJ%e!qM7GITg*xh&k>IM-y9sq)22)H_d#KcCA-Hp zHpXxnAhdcMl9efq!9eK_U2Z==6n;~pH=0$x;c<5#`L-LqP^0=2N$+M#h$->os zXInRhM|*Y7jzU))PjjGx`{@~u)H`OJPxcz4wS6aH4#m9PI{WS( z6idPO9nYHmdSu{G5Ys0D(D#OmnhdLSCJS>WzoN$3?PY*fEb#f}5=>-Gcm%(myql&{ zvj{z5emLE1)AmJ0qLS~=;O;U3br6%lhb4>ru3>&H+xK#41QAZ6_KbZk^4IEq7J(#a zd(pFIvG#?_E$PjUu~3F{mbRerWcN{lI^fR23L zq@-RtF*X9U3d7)34d+~SS1wbExJskwDBps^7}~erN}h{jb7sg1F4AJBf1EBArq@2K zby2DOY_}k@Q?l5VoKs@HzSR7LBAG)4((!p$a9g*6dZ%E6BOdEJgz#tz2J&Ym98eBs z;dURwD^1`9ORoAp!^Og3OW=*ZK`2Ym7xg`UK+$Nf;?JA1Ti;V6_{@}?gn-Dug70q( z33*IlZ3DXA8D9qBQYq1sFD<9Gs+GRH**sY{eC>J1DWj#j?*naNe29g>&V+Y%fH^gM z+{KH=RT?t|%#8~4mGYYK=9i#a&y#KWyje#|8{yprA5NSuaQ|YgOD*DviqAvekkf+< z$n)GRydfX9HH#>eR6qWzUX+AD>mVjt0FI7U=x_>yS?oG3UC;M*n(df<{o?jB`-_1$ zOs{Nu)P1D?wkE%RaPJ3LR9`=+@;6wiiQwi$fFeVt@>+H0sj>D^lGsH($xyB{#~sAt z;9bTZN_pwPTcX%b7*?Ouh{lM-Q)SxHV6F*-?J5;3#4*p`5wf7#^+0{K98fl>;}H5* zW@pZAZ|;XsFhy4cihXBr8|V-zpQQhE(k#b>>vI*xBPueCXU~55?(sYMM|xOHrwiEy z3m=;xj!kFtz4gk^ysQi9M`08K2J2_Q2&K6!Snq?eSH8>aC1ynzBWv2yBYZ`D3J}n( zcFC?Dkk28$K*Zr2GMRdDVmrt5FfMi45QJ6fF4~%m?pxW~bR0K0$tg-AZ&eppD~x>j zy8Sw+{sGTX4^*iL#^427~y@m}wEM=zm&CBf87`9;@q*Mxk3e}1YC8ElC(z2ME*aBz@zj#JV^iG~e2+)BaBsdIGT!z64So+_f$3-#+1f^($t(#XGEB|U zRj)#RR?@9T%~veC2R%M4haLiMLvIsidO{Q!7Z$@E`d4wU5;7!{L>h0Syh^;uV3YHX zmbhRhd#sX9H#_NJxna;_li7P86i>M3Xg_qO5p1@Vm7D8}6nH^EvwYMumzK9;vNsCFE@H(K zWxM-!QK(aNqNxn&palH=AqhTa`dF+v8*PSS6PN6#>Ss=$YMb-|xxDrgE5T3?j$OvE zV)+EiRttNP0$>xs4Qc08Wh}4mM3EAicE1OHG1;p@GN(o3Z}rg2w?7F?6gnuKP7YSU zn_SE6ll(Lh&}O)hO_RCtYBR$Mhqh1)n8wx=Y2_w4ewdw+V?x1PnDiKqFvDDgzUfOR z9}q?1@8V`Abq-^^=wn6iR&d9Q^^wbs&eJ37Sz`o#D4#nKkz^wS*&f4N9$tK>g%V%P z&GlQW4$F0^uKVEKTdF|}mLS&PcoNul=)S1jIh)fRZyfElKpbD`*TX`Q1<6HlGwJh15UZ9bKTHWa&tqa%Yk;Hfd-9QAqB%&)ECl9?) znHKSkWb_|{Uo;x18+w!O>C7HbYc51pfNCg>~Asp4N999@fX1~`ij*ivb26ix6 zL2sWnxw=FOt#h+ONZid82b?h90vn_^9wjW0tOXkOQV#pju{7|bf^J?dYIP*bejRuh zU$xDu5g{&CWe`%Bk=8zytS(J9VNXyid5AYSW*W^Nfd}%>P877Ih-1nPwwXdK`!XFv9Tf7s1{*XKY$+NCVrj4d#k|#bR4--oGp?d|lJQ;F$;#-O#YEoh zsW64nsg@l@(gOqXP)y<5Xetf&&IAJz0VeaoI#g`|a#;S2`-LmWJoPH3#dZoVuKMBn zSmi*NqQ(FqrnxjL!PyC?jJSwQNpqM_t*MucU4hOhji>(zGo(2jl1Nj5JZIj?uxS#k zT+!-58Xl>D7b-|De!ai6z2_kfKDPwIWrF(5gbS7ZAKw%Edaz!U6Z?8hpnX!X>QLz=?2vUh$~h)EB}_h#sKHbY4k5co0` z30lcw^EXsZG(uXin9XWBn)u}I_ZrqWy$o@0e-w(5bZs3O8I3nd?ON894xKL9drrcO zC#Nguo7$Xe7*|t6-s;-Q*BdQ#tU7XsVGB*_7QbS1qzsDUUrz#bp*T7dlKm~Y-{(-@+CmJ|Q=W;4RT$Ik z0Lwc7F~*l+ zkfMOoD^%e)(P|z{Cxlk#*$N30&-R*jg4&}mA3^#Sw%{6HAcGmGiRPM;J%s2`W>>dc zOV#ka*R9P#5t9@MJzcdq9VV?#$K+kb8f4p0ukV3!x}bk_GERRZs0Vs`G{G2- z7EoM$mIf+sVb*?qqaFX&(`8LPdR@7_Yf%OzYzNpsBM=7QvvNKiB*59o4!o%xOG*k9 zG0=`8{?}UUgyyNI#;rq)hp5`Gw|%!2*c2V1&p~5<;4&5VrIuhggo>mj+`;gC;sl8% zE$#FU5e<#x{JvVbzLXa#q+4u(0Jg8xGsq0c*fuN9kiz~7R5-X4P^}gc8be4u0yLCw z^_r@6CKU3OLYrFYQ8tjxYmAR*cx{;my;#zdgzwnd$+(w!T5WPQDETlt8d_m&|Ip7f zG&Ln~IDb;l=v?NLot&1LoLt7iYp-aWqcq*O$utb{@{eos`2#jN{RJ*M!ZsEKn zDmXAOu+~#0l!>Yd_Nwr(%cRYyP5q-|gKL3iTQbWYbY>UgxH99N>#D`}x&63NTXOnz z$@2Nw>JPBy!!=ut&7mIXXi{FWdFhcf1owckei?#g##_03&2EbRu(w`voInB02OO@i zJDaPIR6|b+O>#X;LZ=}%nmXDn>}(#X&_q`U$eNz5@mCwuf`;VlhU@`cDjno(zwX!a(C0bTU`va4@Zzqo;K6PnajN8L6;+b_bLLVV z%7eM;vqk6)o*@XPLeRH!L2N;1)z`K~N?@+e5thcYhmXDXqQSUiXN8Wigi<8*R)pDK zLu+VzIf3V;l&G0&jhD1u6Yd_f)&>3c-fUT3RyL_eFq$D%u&8AjgG@H(XbT$E0GFKr z%m{@F%s1M3OuF9QB7#hgj1sh-Ua1Ftd)gJ6&+a}q`TkW$xm};Gk#+tJiBuX`ZzOp( zmHg3*K?VDVc8dz?kXDszK>@8pF*gi+T57-6a37f~G17nDrfclaqWSnNNZYR#gUwk& zhaAX>@OuY<(#DBbA(}s;X+t7iQbdYi1bjJJ?$l=9=G04E1={Jb_7V3^`~ZGC#7rY} zHhL(hreq7v{CZAXIq5crD+|^%Nu(i0w=kR!U153fJa8jVv7DNd2+hgu7TX&wurjAH zR~UlvD-Km|kmxvV)BN3B#ib;k_whT0*OPj?BT8qDw>_#h)5Kt2+%SaA&*p=_(GU*u zOZxGUhK4q`8jKbjZ-@r67MGiDC9)}U8WGJu(IRlp;^*L)j-*Opb~o9b$bFBoP!pc? zcp-#X8c|mw{s2He6p4?6xBZ&zN?%Wj&DdO<-v6`g#?gakb|!xUvF#(L?UudG6paKd z*;hgCRyF0&^QIY@_IYl5g?vvv$Foe^L+z*m0%5K|&-9^X*i!D7j z^sjfGL~6Txd#g23HJ{T7emGovc9>UjY&^u%Em)$jAa?t5-H4&R1HTS_&kZ^$vv0Y^ zj`NcWu0()R;_HhKY&EA6wQnOlN*T~oI{I9e*OcLKtIR&kmMX0|*r0+3Msa)E&dVh$ zwFCi2hNr?&W6txn%5usY9KDWfI%D)ORqc%8r#tG6LG3n6Mys;v$OzLvQiVlJE;77W z2~)dr>Je=Rd6AWr+8pAVlWwI_$?o5}Kn@<$>{V~lwrMj0TVarE_>d~Mw-vyPXfxFiX@m$$AA499! z;^o6PXK9r^)AVmz<8#hrM=5R_dAnZt>b$PCh4&VT;tAH>mt5Vpz0x@$VW=z+(an9k zwr<2kUz4RuyVT2)fE!|`&k+!r>j&e)<&p2CNg$mw?j}FjmZ|NuU0uSr?kKTpfQHVs z31{gvaUXOFQJG&szA8g4f~5>@wQp#1HLS`Z)3t3zN1Q`cUL*JdB9jf774{A+9%ZmO z5Wmsuc>{G}BCFRv`9@xGUVT<0rn-DrY$a#QgM!6szZ7ePadBiw+tv{r64`PAv$^1% z<3NzaQGefkMB18`6vjv$;+>QJr-l8;31Dsi#ygL49_y`+mgRRZf9vk(mbQD2y4 zx5fVE0>E&pRx6!k_e=}V>{pT_9;*XW(ad!>0D6MzuV#% zGaY-WYW7!TJh!pYyUc+i8tc)gC!YQ>w$$8;I%WddsdPT|a{)l9Lyn){q_^c4rMjN} zAJ+adEUI?@|A!S(2>}Ud7->XOx}~JMTR^(Io1wd;k?!s;Vd(De?r#2zEB4;MeeLgY z+z;+&GsFQiYpq$I^YxB%(}xI#r{z0CffM#r#(bSWu^tx!w$l1QH-QbDO!GVB9W>sX|B?v) zyo|rHL7^Oe!3!l@dmZ$-vsaE+`Uoy}E*~C@5}alcpda(K-AnR4_!CE?V-?DX(k~rp zNqEaz#}nptaobl1OZZursS8&%D2oo8_U0P$?ff6gwaS7ukDhe$ysWNECRj?fSQDD2 z-C_%KX!CWvFOPzGUt`Z5RgkUT?hy43&bv1V=V}w=_BpQ&XBwMh zL*9_QCtVDZzk$57-Y=6v1EI!D&d<2cNj2ySVh^d-+OD8Is?drbtkH(xMjn4cnaXE2 z1AF7RN%N|qkhq4zH3aFXx+`j-rW&1bfcqOmG+XcyFi=u7FfUmHtPhUK0#X!(#@E_i z%foX&3_f5W)e@XiERGpet=%lPP_#Fm#P(IfArjZ08%+=zb9#wju+Vb>&c5W+3lf zfCuGrxxx7P&3I4{B~&cA=7;P_Ih?+og~S+xJ4)C_0){Tv7AolmrolunQNgQp%Po!d zo*Qb3qnScz*~K2hLmoKso_4(=eYSj86=!A61mmgUN#F{!?q#_OhVb&L6*?i69pmBK zh!*Mgz)c+A-=Quq?|V^ky9@HwBAL48-&TJ`F0uMu24}=|mV~k$D!a&0y=AqsEP?X! z;e&n^&tKPEY1UO4RlpwIdGg1N6I6rw>=2YD3Wck-iiLWD?j?|BGdJ|10LRHnFqXkc z9jcxrW>`jpJ(11=d9Uu}K->uV<_0({d+4jUre=RC11x2|vYL=TV0%UL`oukZEF3jb zE~-fR@W?)2YXi&9Y|;u6js2w_hL1_-2)C-OT?&x?e8a=L-;WO>;Z9o_BL-)yK}weo zSJMwun*M3?U^mw#d5xo2T{kOvIf+_tLZYlYCjJfbmzk7)t?}<6s8lnsuNQ8z1rTEf7*_u(?I^b!UWKSaQTr zoht5ZJD8)lTxzlXtQYq5&NhLeZ5b9d<}2&vf_*su&1SmLaUz2axf(p$*RaP|Xo~2n z6%-@)Zlc0H`3d{~))@Z-Du$E6`jai7*6tq)h-N!6M0`{%G}&NyIcPyK)b#N3pa2^E zeDH8iBt?5FW>_`|I)QgxUEZT{O)1mLk|v#>bD-L-0iy@LB*>{p8{|B0$=dvYblPo{ zx~bcx^=PKffq-s>A|$sre8oq?5mO|Mq$r6m=NfzBC^D098`dd+9uwJ3-@t+ugKk-Y&Vmfr21 zWx+u*y`M`wuyjl|Be5NRu_;SQ8F3HNj1Y)VG?p1 zD7|qzAP+M9cFGU1jHjfpUlyby#o9v(nmD5^j#IX^E5SKUH3mgRzC!(6Ol@O3%NyjFG7GN>hO~Q*-WQi?=JKPlLV-pwA)v& zG4Dg?kA&%3!&<+J#}@ocuSn?lCU3r6Yl(T&+jpI-D9H~@b z+gtPwNx*WNuzY=}`I%C#{O4HHHhJlHxlB1_Q;fzhKB+&D_|f%iONErZ8ndo>(-a&Y zaob0gge4?IYU+gYtPD#Wn+MHaBjcebRS!%@6_6q2aaG-W4w@aVgEwOG@|!X$P@1Z# zQoV07mI%X|(usdm3mC#l_IAoG-2l-o_LD-mw(iv|!ISZ0IV^VCnrxMYbBI?E8+v;; zdvKp7e6xbPin?2HScn3_N7l-Gg)gU5)%q?BQ^i^=QWY0M(G0dpr!Ms99Xf3mpcZB& z=!sDHxB7}7P$o+yy0*Z9KNU2rw~+RwG;D#jA;C~5GrdC86fl;rzks^grf<<+;blP& z-^EIPOHyfcni&ti;0{&%94^*-5_lUmrTNc> zZS`{LSBXItQCilgYX3qT|K`!a>E`hDd0QeUa!eS>S+p7Bkj@XOq(vhp^K)ojLyT0C z@d}XR_V|_Rc9N!;7wM)tH1(|oTk;ZY=(%tDmC{aUPaYfAUG;ya9wrQ?^Me<8Y6#Zk zi}rGmqL}ByfR(zV3L*=Y&Bv`|dNiZykJJ<#MYe-TU0#tv&IG3(Rsu@H2bHeb(9FfH zXIuC7zTi1+Nm^PH^6hiK;S92>+*thLT6?z5;G z`m)Boj@PvoDeb|XJyjmF=k3F=hB^TOFhrX*Xp)1X`rEKQ_%5+%!1$g{QKM6h?}!tZ zfa=FwRasiI(Bu9nQZV=q$y7~vF+LAJ+mQVWhnD%Udw0fglaersJg2ab#0NQgxu|E! zA2_{IsHt-|m7(>I5?aa#-@ap1L}=?A5C@wwB#n#1an3Az`o*nWHYGA^jg!LQGEM;*# zR9-4!uDy>-xVGEa$EwAkE^Jpmt!8yM6FUoUaJ>1lp(W0Fv|^Ezs8}Rt%bK}vP1E8< z*coIzfbGh_ta!<>-VUXIV>B^t{q%WfNPYaHDQP~0=pjnK0mf5QKXx~p*RhOi%RB^Po{*cpR4>4g zL2Lw#8zXLP?@IGK8rL~zJH50Dr5RkQ)?XMhWSWigj&=^^1HB2Ca`3X6kuRK6I#>;l z*&=Tw3!?{^KrNDNmfFA@il^zaqLw^2R&&tSN`VyF#o-B*K%ne&d$Nc}gM$M`)eS8% zVU6S2JZ#KSC}%gzIKh%_s=UACVN_ESqPa>D#}HznX7=qMOBY%_ORe^(kan{;Y`8o& zM+SezdZyfvAaFmggJ?7-c6ew$k#CLF=a1^>Cvo?XMv=CTPZJGn`l07NpbzfM-+X*Ln(B?14TD<~nad0(C^ka62#8Cfgs$W& zawhl@_N-Ev-lF7ATL*Qh6(=P+HCt#3n$chS=%kq)w7(V!2TU7hIbsS>*fp9-jjbG_ zvHTwclsQQGJcHi;wwu3Nq)N2B>Bl0`D0_`S{lpcVforQDic6aFco+9D z<3O@6u2KK)^)}|6+q}|6vauP-z(CB_(CX&y4fm(Ckh`^e`z{gbgudpMnp~&1)#e>_ zYe++#ZZ}$pZjXAtw|b{pxQ^iNHJTG1hSz+Dl>YcLP4HViu>!U7+=HEpd`pU3XtvnQ zFX2;w6{Bq3%_NmtE+!_9DDr8N@vb^H$pXCBlKDS0p>Abp?BSyoU$mLu)0zX?omP|I zbs2a+{(N?XklA=5a4udC8pwGx51CetmU3-IA*lku zBFBJ_?q)i7%y^pC97XSFAs?DtvcxL-Rnc2Gv`^nyCsZgrO{aDRq7{dJ@(Ob`wswrI zyKRMT!w#}S(qI9^B7JcNz#|b_75X*Q*`MjBrDe=N@n991qLDf+Bq-mN`%M6oLx)1I zDujTMbx2+MC@`N&6T9!WPE+f!I|Z%1l%bJgN{AU_v+i=vl7bB6+*FmtVOo3$9-HX7 zP6v<`h2~Q-#AZN8s5x)y=OD6gwyJMP%KV$TDj1I?@HC3pf17tS-2aY zf(ovok8|z z`;GV~W_9o`SKMVAd2li(*@w6`{qj#4p=Wgn-_6v(Hs1^73 z$KTHMc1aWeLk9iUp|6^^IlZ=D(-|c10NKQ2PrHDp$v^T+;q(2@x-qrJeJSQ#@9JE+ zd)at;&u;mhd!scmiPW(=F>GAO!G5|GW+zp?e)U8YdIZzL623Ksg3^Ab`tO_Tb}t>zi`Q z_FTSZA4tx=LBe?3I8*o~+nnR(_d8dmyM(xwH4eg6nWpT=15azEF5-Inq)uAu{fNzV z6)E-1-h3KFkfEf811`mA>2FBaM}}^Y**ZcFtb7uPI^vcN7`N5sIMKVjiq(B^Hq^%U zD{n2Ok$2mX!UmMIO3JR|$UkUEHSpT(t$u=Y+~KX8ZjAnAeKW0LqI^$vE2(K#2wN56 zXwfZ!2VI<@k*nXCeXV=qXT<1~wV0v@<`T|3|W75xXov8<1NPd3uL*uX}1(h>01I*h(e7`DSwoWru zxDXrov^I}0*MFTfMaD(SHa3ehxpv7?S%4mSHk6wE(RWdDLC{54X<+>fiEV->2mVlq zX<5I#d>I4M^Mx9sj=RdiZX}QnK zy>mo4y@!{+mTd0nrcOoJ7mi+Y2~(Tu8KFa^>9E{(9Ne${Jwm5rxN=4%h|OnKwsO38 z&ox31s$RM3=TzYn6*a3U%kqCqX#`2UrqT`up03=SC7siL$KgW1J{um5oHMB$YUHo? zg#7XFNR9K|v~P?4wR89L^XrO)rqc`Hhl^835|?m0l1w_5T3qIVjh5z)^$|hbvFOIr zxWBqz%jQUcOG;?I{cmlWoQxsa57O18;`O;m!mND7T7wJmoVL4XtEWOgioT=T6jO+` zQWb~}PMZ9wPN!C0tdVKjY=;$d4UAXs_XE20nTj!2-2n$H`&rLm9V00BK6(4wh-Eni z;EVZ?rdF%zn1zLlgVjlAEj#Ix5^Sp!t`$brVfEN50ln0$SNrLpPB9BRcjlgzBr_&A zJVA%VbjzDe!mO*4wFuvN%#gLW(zJ#qwR5G#O(4pwB+6nnljFX3$}IPQ>9(8W9p}Zn z&t)&7q<_)R4-upXhQIx#a3~epAltxfNHfNH`nuO{-4p_5ttXIY5LNut0bD43(=};^ zX{&kKAI;ZjP&i2l|Ly{y>agwW?zc$Q!r4rz5KPqHIsH~}%)!c>q_rYd@b*zntM=2v znbZ16H-7NuEF(krGf2@*YS2o=O08(^ao-G_)F6kgQVczSIKsisnRe@Miv36h?4qpU zFP=W?S^7TmeNq4TeW+duMPOC9aBWKF5do^_*JoNJ9KtkmFPe3%rZ|16pUr-2H@tav zWzoMYrwiJ7cIB=4Lo+yG2$Fn{e5DmTFWfg!N{mv-Q!yI%4IzG4-Gr1mWETOFEnJ*FU760el~-| zIDcXSpQ@~9&;?Mq&xRk*`vq`PvzSyKlDfqcTT;plZL0*EaL*@)0v-%>M)5BOh0R@? z9xNV`j5@4`2B*(y`y@cxQ6fr1vj(;|(#~ck$?vX=x2QLF^-cH+3OM!V&G)Mm6rC9q z$kv#OiZA0VTgs*YqAH@>mk)%{gbX)2`knlhE#Qy0k`_ee0Iw%4IaSZ+JOBmw{guk82FV!3zCM zhWKk>@5uX%K?D#lmwP_8rtngh@<--?xgAx&;oA{k?OBB#y*w>wAs>s)9A6ro zqQS$Z8@wPUel*^o3#NZI7sMz6=7NohtCA4LLS230AJGyX-YeHN>}Od@87o8#cCXJx^ zuq>w8**({%<1L&p@e<}VMiYi3_LQhB5_YEhhrU$S`#MuYz_9?IoVt6%v3{c3;oE}B z@Fw<)&a;EytS1z~o$T1MC&m3RDxL+FS z46q>SlvL<+xE?2+CpG9!k=7)uo?&mVWGAccm92114@MFaCX+;G4x;jTfGdFGnf8dk z^@~-1#$Emq$c+@RZk@X|QB3iNA(3vKYxQ3L!A3mX<9ucPTVZZb9JpAZk=feQV1Flx zFZZu>z%)54ZUpol3aNh*BYoN!w|cy`?8UJc*l1%HPKz^3;`Ht+n!6|KcyKKNME)y!snB@J?j;7r(iYw zOKWJcB{!2nk<0%G-7mwEy#EHZP&G`8TWhNdUH@c+uroNjLSqYwC-SSnZ5!cqK5jEE z(NhlljJwc;18mV-oqHIiveO=bI$dp+421lX*>`Tt!x&<~W7%3W{qZwKYe$U67AO3h zjYC>CZ*REV-LL(?MA4^@|Ip!=d&n%-?Oq^`9U17j>+k3ZKfjJ2VIB^nx?zb*|NbW> z$vxT829LE3wo%z`=jluk-K_6!ZPy%Ezlfb^n7o5BU+gcH*ZAT&^#*D3gGe`K6`-_R zWR~)WWh7;Tc0&Pg9zOvW3vSr6%>Pe(!26LC*ivfrEL`zlO8Zx8(r{jUwV!vO$L$JPw>p%@4x(+l+k9y zU3+^j=%=X3_pmt-g9l_~lunzwk7*0K@MSg?9vN;r? z>{BHWU){d<_$Y;wD;H@UQqh|||BA{8uU{Gtzc@kr!c<@tzgr*mm5fkbA@fJezj6)# ze*f16o+VM5;`)BTwfG0h`HD~cJ?O5KgpQDujt*&%OJBTBu;tO{D^-J?fB*<&0;JPn zb;ReYAaO@6eofv)&A4Bn@uQ~-9U&4T9(&^2$Ykn||DA8ac@l$vGT5OMzrYaHh?ORW zN||oagq1mRVZb)ka6#@f5Nmk4g{O-)A1FC$DDBbr2F$6)<6{G~I{gL~X0`PpI2~2L z*f-s{q^sJX@W{l?hs(2Ov@G41q;NVL8;?iMv2u6zf^MQn2`E_@)%q!o{9d_y#=wUWB(Y>MZsBLJcmI!i+|27=|1YkJFqu{2dN) zl+v=1dDym(j~Yt{nZAfTP@L+0QLF@e2!_`gD=8SRRA+BwGYFquwC~4!w>{0{7#jmb zD*|jL_9kTSl%~%pR1v{J7;l5*z#N?NoSYTR6H7ZCexnIH?3+5#l&T5=djC>R&@pg= zc-&GymF3%Y__9>nBf)}kg}vRco*k@fEuakTz++5 z_!gG)`^83=*NCAKEdQ^Lf({#fCN3EeKzI_tU+v@LfWpb1?sBnfk^cVYK7nFu2OqfM zM_K6WVU_jQ(;1rF6D}vCS#-J9WE)kOSmg$@|7Xcc z51gqOMdjy6#^njBzM|qq0%V~W(x>z=#$mHRBkKqO7H;dWx4d;|YQSi>XZYYS%9Vp; zg*_nt(VIBn$Lj=WJQgX_HHyxLr*xlo(jeqPsY|Z6u%z#Bg%R)r0*$lHi#)dxKvd)COXp-6{h(@JDEYJDGhEr>D9^`8FyN% z{HJgBJQUv`dIcroz)I%b9E?)vo)8y2nrYOf`;^tj#W9>5^v=+WykED7rR*NKvDQiO zn+F1G5t@!cJmB2<=X$0-0+Lkcn-6FNVcgcbN1Nj7!q=a_Mf#~MWQ(^EFfWH#}OmnevHUbR>$bL!m>`Er~_3LlTd%~=?TP~+ZOjgK3m9e-dEPUHCLaz!;srILI4 zm&?_2!`1}S5g@6Q<%qmj; zzYHL!UtabI|NN<_x%qdW%||4ZV+(t~pMLBKQsgbX600j`nz&H7_u-x8!|e9t>NBpV z`$oZ>#0tsmPH6i()d4=mtI-)D9pamP`UU(I$IIVKX`|!fzIw?U)qWc+umfg?*(a%_ z@*iBAw`2QL)M~$c+M86F)=uN;MH;n{7|=%^)ymWy$CIa9kk-fr7l50){9@G~@r%Vj z;uoP6M?hcc+1M<@WjE^%%M`wIUKwqj)ge;;>_aqKRS39y;>=x!7v~Cca}*qtP9mzk zw4^H6^lGkV1=n(;$M@y#G@f=z@0?Stl1VGgW`<}$Tuv7xS#Xj4_4aV^qr?e{U4H(Ct38@ zj8P2(v8@{*JAqDf=`$$eO9lPt3vmP$N>|L$<{cwb8R5(l6rJnf#Sutb1A|NYN6 zpG4#cn1CPwlhuy*o(i}!i+h2SKv)gF|87@wdS*-TD2G@YbbP8LNfyL2jrBzVdt9sKbqh(zX>3giZ!!~0aD7X zEt0LihZ>vzKjJi$lsLM+uR!6}u;jA0gzfN-7kgxkxwo5h+4J83y;Oy}y!s0Z4bn#V z)Uljm2kH+IvQdeAM9L;U-CRY@M029vI6?Mr!H}%m+K>78d!LAiNWQzvix?3r&=j|e zE?_dClb!l%^)Szg8m&HBRL!JtHfQFyRIW&|c_Hw5pnrP)WnwABc&ap!<6Oh_Oq@T` zVQ+gK=I-qZWz{7LIgQ4TAJ9p{{xYV9?7^I)jfCB*gL0N>$MKZS0y21lr$9eggt&4Vh+K$KA5$Gp=&7z+kycvHm`$d#>d*q34i+ZO~N28ePrIbfi5^3&u0rd0e~l z$s(zlp{3_Sf967NC8t*34Df zVFvq8^kW?!rq`}TTlcIvvwx7FY%!h=Uj#a<_3px0Zd2~mw_h|a+jP&L^9n}# z^(2qweC{?yBWk7OL|c=2e$>G4njaSi0&4{Uq04`lM%H=1D1i9}_vA03 zM;A)%LNcmD`A`~~-Qob3mb>Mb9+9mZMFRbfhG}**@6*EqiD$0?!AW;1KTb1KX+U;( zbT;)PTR8c)m{$zNx7&uJ)xdo51VaD0?4Tn{SR3T{r!VMa`ux)D(!M&~N`4w=bZGb= zOn*r3k}6^cqEs1BV%>>MF+IQ_(Y-G?TnO^k8CfM4!Z$T4e8ZW!rd^sW$IU+)M-&n= zV}UpAyQx2&szuN6eV%||+>^SJeX9oW@zBnW2;34oJ#E*K#}tbLE$@{*+>>?d{5X$1 zh4v;uv?M&`#sUOb=h>NxhXjVE%Nw|ywmKe^`h01=ZfkunTKmWjk+3syIP3?qCB+3l zaY}L)*Ql6hw>gXJ+|0^HLSJ%15`lfQnG%xOjw!E)R0=CPKC&~--dhtgr-U(axtSTR z)G4un%u<6E-70TmFEcLEX7VJc?rGSWIH;?~WDB)21_X|#YnwH2IE^zbdjpteICEB6 zcjCjUZbv2~Kx19{>q_Eu)8<9i`ST9AnQMjO!~Gdasz+!799OI9X zVGp@h((SE_RunGi+421SHB|NP>H}XEb!=ma_V!_)P`&j;YKQu$G5SuXQfg~_haa-j zRWTgiP057>#$ZSc`JkpCzH>GlybBKxk5Kut8MCbEk6ANqN;R6mqZgBw7_?iz zf$qZsT(@c)A!g$zwQTC5GS7}+r$5)!9VweiJ{;$baA+Q%VbgFABaaSU$J@C-Ud$8p zbEljy%9~K(pp#6G0oBa_Thb7rMBl?wwKJWTkmTl|-aM`~buhhF8Xl9hGri^oaMbh| z{~wVGx0W5(R6U6A-LUii@mAO(<3MPL-Amb_1eHGDtsxBdi{JquLD8%yNyYhZAmT6y ze3u*5(Zs1y5daaXtWI}YIC^@!-#+PVK?4zsA!aVKa|gk4gs=e_9Mgk~X7}r}5J)!U z)rbmHLXAqo3vCmgFD8AV2!ip;L%5Ig)s;$pUEo2<3m5#;YaqL^1dIJjG`=iEW2kk1 z`q&-{l;KpX3;E_e^c<#8l(EtqvK%ZZI;fd+w6eQhIf6D$QdQjp;OoQj7CQ)j)=AmQ zM1RUR%#`y%X^$g*tKU^wrd(oHOZc;l;Gfg74XRM4wE~hVGPI31>MMe9aVWsBS1#P7 z^Z^Ck*W=g%x87Fu;dS{|42+F(R2FEiLvuHjUJy}V`RduzyIiGMQ3&}Edbk)uWvrko zcV(%#DuwoeLaMk5R|PQqr&&#ZpwYmcl1T01-ecw%6~d56^wo{lp<&w zS+Y~Wy)|2CkC=N2lX<0t*#!BAn?BqgHmL#Uovi!R#ue`(C+&~T9TauN>nMV{yh38Y;;A=yKtK+JIsyCRnRL8KHk$Wp(X>#M}AGN4{V26 zKCuiF!%fqe(2I?RMl~i+7%+`Y4yDBn(IK{2PGm5lSXSd$1v&bvEDJo%OHb(ej_A^L zc<|DpJpX_<>r_zpcPHcvt@`os1VILbMZfLWUwiK=GAEa;T%tHh`Q*Lgy75b}0;O*iTrL@D2AaIsQBaeMv!ab1|jcKiK4 zd5+4nT4vn+e!kJ_wP^E$0$3P(p#kIGEy-`&ALg$Dkj!xd>fFByK)_`cKNzNHG=3+Y zq^1q|fzo6`uzP<@b%k6TZ_pgyX;FtB&G|j2CwuEEjwuuosp@Tbf+UjVn|eC@(!RaY z#GR|a$@;92N!J|qFM85eO;~l+b&PzR?TYJU4e0#;vVfxn7W{1iFZxdlxI#V}+r@s? z=0J*f%kaI%pPeDl#mr;oxPX+27ot+b#17;a?Ba2qSps_Cv&Gsr=yRmY#guF7FvN_5 zIA;#$o5gkh%K`r19U)-cm49`Fq+k5lt{0I|IjFicUC z*kAGkwvi^+=K6l|8V=cBUZh^>vg?h#y79d3a*TATCKHZ zEVZsUo09Qj+A>&xX;2u}qDgptg=PQQFj!Np4)G|{8QFWdDl=Y7r7+3JBGP(EmGnDp z;YZE~#E2c`bZBiI?c;wMiM877`hFX#ZuiX+jd?#+sqP$n^XNRy z&ax_sf}!(i-w-Vzfb8-}(QEv#Dv;k_@+zFy~W3soM6a@g|S;~OefqYlQ~?uU4syMKTacAm#ak$39|&)_7wt?X|X zas5AC#939df7E_xmH$=yacRB~I793+X*de)O(rG>wJ~kK#DmgguGF9OY$yJ-r3ToE z-{Zdjy5}ffWq#PwSE)xAeI)&V9jo|f9H~dB`scACS~f@pm7s@0%HQ{)1gMyPAB}k5 ztqXnay7~2pnYfE67W(a{86v4HJ5$|l^)i%pZ*R+!@lU~zo2uiao`IrM%!{p&zz#M~ zl8|&8@To{<0nkq|3u#YLoUtMos~cBRqgda`Yg`-Bh zvDoipcDdXoqjW5iA~gVHgfJ93?F;cclHZWE&5h5%%$}!WKAz9$>vodm^vDSt2+*>Q z0`E6@Q?8KUXVKr{_BgFF;vDacP9&D90Gj)fqJ-$<6&uEF~RZ8RlTFSv|JHf8`2i<4g4aQE>Ew6ksrVq~(8buJ4RchsA^2 z>MXeIL|W5XC)e1m@FsCO`LuJV@I+{L zMzh35My7LgqRU_oI-_}&`PA5FXXgXUtm-UcvNdW)Px;~-i+Oxv%-N_K%|ALlOaK?B zSL4g7_A~82z|O=y;NdJdkO>|bT*kH z_qVDQ2f-oae?aVT)Lzm!$m)S)X8LI}1V#J}b2LIiiSwCwQ<1p(f8ba=_`-$UU>`73 z;x3-DT=Z!1DCe%VuWASrB_SNhajqKi@n-&C2%H{3;QwNS1<0jURp6i?`Yy*#?N&xb z;-#80m8Iu19Uj^Qs5h;ad#ASJn!RWqjZq*2m|wBq$6;hYDQ#`9DtxU1+4O;)Jt;%x zYW4j1HXq3M*E$*v8@@48m}zsQgISzhK~TEe$U+IeI4BZUnrm9CfN$m9y;~^Vxl1)>(2RUWtR2!wa=PG z2~LOZ8|6;@*C2SU|1R<<<(?CU+o)S_FfTJ3;f?W=ly^A(!?dXRY+6)3jCzaf{5ke7 zBJ{Gt;dFD&#X&hH5DeD_cKE;ge!ifF&#BP=O=1gBEC@z^B^kSkU4?ok7WqI|P`K<+ zDxxl5joBO-Ts&H3UtwYBqreB&*8XC1p=L6DmDgPifYOef2P6R!QNc5@90`i`jf)_R;c`(7 z-7d!kmLoi8r?Tm4fc6;Oxt^BNE3j~E;iFs*;&H-V7S8dvt628xLsqD&$^pG%ViK_1 z#Z2J`x$k>+Iqv-vD+xjVjg?v#@NgBPz|_xgw<8y&!Ji!-wcLa5`h{pz$|!e_i|M;~ zzvex*{7V%6vf90IcyM`UNZ8^o%i_Hn-pB+5--p;!)*==f#%GTcif%2bo3U@X1{hxg zb~|Z&|G(^Z5rRZp`2dTH`ntmdRhN;GQD^i&S)9+;6q1iAHjZ{Xx~sq%WStla-;6pp zo(BEwR8ULB0~PUirY~xruugOtj3-%uM~Numw`hMpX^gkE5klXU;H2ZY248KitovKr zdn5C%AZIBFc{EPCs8+T%mNfg|ZCvB93?eOsJ)j-g5`-~ns}zgK!(ClR8UbZL2_mJt zODn8EgDk3PLyM22rd!%+N(}jdIFzd5eUlx+E`y<1HItDzC6>S%lc}6RH#UOHSmQX$ zyUl9bJ=$DZ!Ej@|1R1k>xCvL<18-@iQd8$_iy*+$)ftUUv^-Tp0|Z$R6@ zXm}ns${f0Ejc4LD{VewqGfC(vU$y#Tp1`z$iRe?QEf2u0TYywrXt*DY7U}(R4 zyX$eLH(RSHrC)w){H`Z+lh=isByC-t7X_n8O|W8th3~7~-}}<8vCQ|p>JNa17DVAZ zls4dd>L!Plb?Atr*j3p7&@%E!G(sO8tR%OM&q#Mgc^qxV>b ze?siV7EZR7NF3NSoD+7MKepR+YzHcRKVEB#qYKf(s%tK5*CMSGCp+~~yB{jHk#_(& zmn<~9se=>Nr}o>r@ZBlfT^mR*AW3@b(!WttY1DjLahSuu;_GJh#*n<+Ul~Bg)jRD= zeewgWwK2O&3frDCcD2a^n1=vwz7A0t~o9)0El#%%&h`(n;gV zcQ=NE^OxJ^&GPux5n5@-gvf)XEj8Tt@1K2yWppFJ_^$!$sKTDKHxf13Rp5cMzf(*8 z72hL!(LEuA1K4EhZw>Gx8S1jsswL^5ct}Vh5&Q41uJ&Wx0VU23Q@|f!d7`NxjsFgE zNzUYZ@Z&;lkF3DS_pU+*m9ORMypZflp9&|GBhB7qvUFt}%0;3?-vrAvkS#O&4Xqk? z$JV^vs`t{${hSHR0@_U%jya}+@D-42vu?bYRNZyhOvJnh4l$ps@lrm*t89rC{hsgv1RBN*JttF&_g7Dv{sZhv6(oF=d+V3qGt6&os zDKQ$;hjfe2B@p2-t8~a0`RD7;p_26|P^@9Ct}Njgu{zCnBEC7}bYrxI>4G9d-FHe~ z7&9<9h|x&h$LvRLc$!;wAl8+0Os^ct!W*KyAVzcF^mS#0)Vbd2lr+njUf&WiE=jRW z5ZRPikWCD{W2^URweIfcwP}jTsRW)AGS4!dK6G;4_AKmz>Y;uW1_oOU<1R-%m!hhH zu*R@OBD?(uA?{hzouN=Sk8-lCG4Ct6$9tsLl6+(P99y89d%pS6_6zHBgeRpbc2EoEQS_%{&fhZp%`LxCf~k-C2l)J;4nt5h<&&NFdfG}8{9l~*dweH#*Io1H$N zK0ev!XZF}ZZa<$jNUIN%F*twu>WxyM$}V6SIQEBjd%V$~@M2%+#==iwb%Hsfr@&RV4`!#mD_}_0(;0a|-EV-ybX2jEk6gx`> z>a*{m>cTv5k_Q~-$TI3H5avx}!oMDY-a3JlomPU}mn)c)5oUa3G^pL{qmGy!z)=ol zgvl{s7;q6VkMuH7hI4rzAD>QQ9qPNV)oTzZ9}->V^9`(qJ)@5hX0|_5JmMeT$q8}< z{CwI~5)Wl~Ky{+L8w?C zz=2z@olN3>07V`W=G;!E{{aJO_g3`&{{{mA2COzIV@3V)ph05@rt=#T)!w8o65FN8 zDh{4fWr=Ve>f_B;s+f0a*0wAc7Z*wy5h~V9I4W#u4!*mlvJ8J_g-_)8A0-S*0beN{ zhXn*6-<_jhxgprL#W<*bzMx!y@to)R)yVfnBh%t1)k6F7?kco?ecz;906|#Mb{tTd zAKJczhJK>-1A3Jl%`;k%=)K)4^eP{(RHJU62{Rf9+t*_tQMz7L5#ZaCYvjyR4{xrp zxhx8#+8h9r&wE~bNitu-VKo)Zk|@;bMQ2R>b96AiErB`f)$T;mmoFWU^V@H2lf4cN zWGl&gSsQ+RbZj|MKMYg377R(DC3cY(H{S*s&yrj`tbxfTLQ0Z*|Dxz>8aS<6md=|cpFKrDgYos5;86mA1gD~cQW&dZ z5r$F)U^#UvViDY%PhQVBpWi`7wW)A`J)yiTU0fQo_+)`*VUuh6h`SYTQBgbKk)S!Z zNk@OBlu>LjfMf4(x*!P8Ud-y1GG!y#A{9nT^?J0CkrDK{V~1-X-|s1)jEB$EjW2q?2L zd;kYPav*x^-4W>Sn?RNBiHwlI^R1$FjpV%uYgutu=J#GxW;GPc!;|*dNo%T?=+!yU zEL!5ZoZn)C`B>o?mHe%KV4**1IsKH-rWsyJPn@z$wxVC};l<#%YMw)q_j~6nSd^fL z3=QJ&5k15BHL@SCw|6qQ{OT>T<>5V1fDJ4`TW#fc0+A}?pQaJi1$3IKWl$UYP6_Bc z4%By-LB9hH;wg{7Ql zXf$A&zJ?wJ|2F}Wr1ku9n_Pc<%UFre0u8?iN?<~Li<05u)CA^+dNrJP-J!N^_+dT3 z49caW<75pYK3gWFPS7D<3%?@56C8fi2Gf1;bzvbT05 z=JX!Q(c=aD!b5TWDt(F4^u`s(Xp-IVMfB{FOo?4M<)E82k%vE+Jv3ojD&}s13Q(~&r zCw5lgvD?KJY9td@{y^K&*4FNy9nX~}iV}io^laYdsW;e>Muc)s_RowLsWLx*)p^ro zccS2@aHb9ozcmvAHbXb@XxUXZYoadz2!!-cb0hJd#S2edk<>2g!l;l2FN_hIvn?O{WlXfEq|ys+v{FiC!3_>11(fPQ zwD?w70~wvMV-_7%9V69~m_a>g3WiV4-qP-~a>S!OM;qWEWT$=1{q4|iVY5|Ix?kO= zrMi(hNxt_j)t2c|p|tZ#{}PdxJG`P!+CHof?o?|E?+~;&fjIiZzw>F3w2eL(d3A$} z_nl?ah|h0zKN#!yaQ4HL!o8PK$0DRkQz1?6uKL(yKCa!`cXhvJi6H6l&^nX-RD@#= zMOR}N@oC9jaR1;1n)!uE{iR5?q4%$3c4_m|%u3eO1cuk40-Vw(Ma=Yw+y{()P)*e? zufa2go^y#c%Uoc^i{0^vuKUP*Ym+1p+(e#txcA!?m1Q7dgwtVK_H=qm%MyRXKiyv;gUjGX;x9he3KIc$f&UI$}_HaK5~8!*FDYiN*<)W@J?Ojq>Bu9l|W zxshr=n5W+!YY`JSdAAnLMTci@DZ$NF!RO?-hO`r7Ph20rLMe>2Ft`?)mlPA53a)e7 zUx2hLv>C}uZ_#s4*VX2i)kRapnDsM#>hVu!r={t?gG~`nY|Y~r=2vfgG3W|OvEsOL zj{aG?nFEsbAE>SsO5@BZ(cm-r`Y|Ay`3v1~uJWsuoS|@`cx-GR>*LpEONcchAI3sB z*Mgu?nE66+Uk4e>`!&8T3B{Acl&;=DaXrAMzNf{oLnAFG56GOFDwIwq^qVWZ+t@<8 z9YYr6zJV4dW~z{KGTCQYx3}g4GiyMaetrBs-W5*S{T=Qso!Ow zjA<%$(yt5>Q**!LOdaMM&G?4D`rqcxKabRRUt`6|IZ$@M-8T z`uzC}IGoD?AKzo+1%Zy(2nlCgx~s^vzkCrQ2Ok@C9E75zERCHmALjBf+p;{?MsIe$XUiOec3xY~muSm|qP`mRF1xeJyJ zcDh_I_~v-QVw0r`KCNxM)+dHQo>H6WUxww2+`8#5UHK6Ic*_d~9ofALlS@RM5xPbV zL&#PPs%;DmB%;{et4#ws4B1lIzfiAnQJ)QL!{qvxqki;(=0oppKH5`!LN(i#7)|Cf zHQb-TJ8XsR)jkDpO%aBtbAaqM|ofoW4-a9!gwl|Ym~niGryIr|Vn z$$s(~)3Z5#g=R5}wYs~eGYN|IR)rND(?TS{VJh_=_WNd`0j`|y*a>rH_)oz;T~4Q&C1?pu~yYA9pS9xS1%rWOvYe55x(q^x`c!pEeA1G z^5j56tG~G-CfVd^Eyw@ z`-=N{?)&|`e~H_1kM4cMTHp2itwVqfyqU&9!04!aWF{C%mX;Z^*L3tSv1;6L%YmjL zQA9ex?Aw7s-_+5m%j=N3opf_Y6C|ACjM;SWj{T5km%Fv8 z%*yJUtWp!fTXN4+q&!_*6S|$odkk-BzvxwDHwW1#F78XgH%a<@A(5U>3!VwfM-`rI zI<7K2E*3iprTZ}V#PXT-nKUY&+w;?QfYo0a@juoq1FC5wGhe;((1M4znh0*1_CnOg zBr+b|daZsJk6*c#qtHk|N0|8$8Dj~iz1$pp$)lj>{Kq?6YqiB`_QBf0+S1$3eQn13 zItNcu31)5xz=Y&<7lOU)VjSJcOX0+;*{`hHRNCG|4)2ddo!yUO4{4k-Ggq|pD|(G3 zHYI~eW0BC~HDIZ!iC9*<>e5MzZv$0bIj8LnR(8+3=F4rp*>X1rt&mTgUns1(bnz|) z{|I~@QOQSsTaz8t@N#|!&x_;Gea)6*RYQzQWTh}Sh%nG9U^L@m9uM3<(c4nmCft8y zJ_9pKDb&7OgcFbM`dspJyT^8;CIv69Yi%MPt_$3Ml0w|!d(uk!8y0n zUq{4aIy)D9mJg#y>vFHxAp^gXTwlf#eIwrq6?A6{2~D-tPGKQ{&5520TY|}Me`Y~7 z7#Qm%gZy&#h`HW!21=J_>2;~DGNw9d-FppPZe_n{F0%`ErPl6HDzG@I9Jh)LFDta9 zfU-S9zPlacC~gSe3EMj*29C{CdW|3rA2t~L=+D60BSZ6T^F|k>aG}-l-0LvY*7@u% ztMNzzpZ~Nv7F;UfLRkQWXK)idpp`yfwMS1zl>4Jk^KE`U9b&bgS3!XDKxc;y`q8UO`?4_PKp^{>HE^X393b+)010uyJ(M zdLk;)zDB4q%1eWKvMYwWw7dM@%+~A2*d6(09J2Z6LGa+$HNF%OGo^XPb=+ZQPh9m| zrF8W3{XOuHWUp9*DAF3u(1-OgaC!$<(`H&c^h zUEiZc=BV=yEG+bda&cn$8@_s|)EXsGTBX7`)J(f2yD*nnXh|}TRk+8jn3>$Zr1q55 zZPWboH2Q&YXo=ot!mIxZ-kOacy^zxYPhp4Dgi&_#XU z!onR}_=%vUI=zoq0`8=?i>=_NLj&5WzfPI_3zOZsNl?XpE}<8(Q#fQ75NVgKnODPm ztIA$#9>?j}RY>!SB3$bY@$t?<6kF5{WvfHnm-)%~%{a104`22TV9t72WUi?=Whrp&v-VJb!9-DriLNf4iL?{_}+|kIY`Zino!&=D@@}x+;G_}K|BK*+f z;72+c*~$v**+!w8t>I)K9{OY4_CDOc%bFXrt-9bDZsHa{_PgYxxQ4^1?S|(+8z!QX z`Ho()k-!qc+QOp}8C)xcira&9Chy=^Ykl%+)}AmMzJnQ;6~eB7c}j2UOXg^UWn zShxH>TU+E&HG0~{5!#4@GWF9hSXOZacy;%P^{3T4>Q@Mh_E7i;_%fB+!Nm<`UEhZZX7=( zuP_L~#5Xid9qR10Kl|ugT2gniv@S>j=3Hrmcd&!{T<6BTo#c$b;hfSgx!Z22OqWB~ z_f1bKSeNGRLVRZG#$=kh7qb_Q?YuWP@z?rTWwQrdW`g&?jtAo125fi9*d&MOv?)#>Mn zovw^I_c^#M5H%wtfXL3=Kw9qx!k{Fl+pcD? zx#0v?n>oTXEGY9?zMX401%mO8 z9~rFZmB@BpgGZ*lBjVztzk^)?zZ>)w$L5&TOKhytA2rYhYGhER&OGze=e?L@bb_R*WZi~%)y$l>JJzA!L$!7ZA4wG| zn{VVW5uoQaG$|q9(upq}jMZ_f=vxB9=la`!pb;*wE}v)Jhr7yP zT%}_hxkp`83N#I8pXuvoSOxp#GH67Owh~`SSUiEsHbw7!wnN-mvthn|tb0vW>TA5} zWicRONYq>qbj2r=dh4(GR+B?6-PBof$5FF?uvamup&+VHrAUW6kSjyI<#Vdu5lPw- zk*!QMmv?Ki;oN>ip-L)GTigB$A)LoSGRgVWi5E%2YGThvX3V}nCI3NKNX*+x+y9^7)JB__hnn)n+q!kv8&Y;6m4PZdu;b=iLng)X$k!52| zGBEYza)dTW^yLrA%G7d`Y19*L|>m-N+* zkZ$KG0DpxE9UB4MbyT41ZLSDLAp0;ojN|jhK&?HZv6l0$fonqTTi|QrZ+(oM!Om^q zwL{=exK9;!cIb+%JdGDw`hh0w*Ij!>;_6H{cH1!4bt8d=^m;(I;w=p}8sBNcQCgZ$ z0p3Jo?G-K9&M@j;5jA4FT2Q1Z+FVs+Mg3A8#X`Eg99<4fX5eE{bFt8sZCc#lZFk-8 z-&Fn)YI47zJwng+V)_-0jvkoZJj`oUD%Q4(gy!UsYax;L>?1zgJON^8DjzlEz>x8l z?YL37P*kaMdXM47?EDDYTp}%X^17m0LQ1|9Y9o=QFu~ba*g@@moNB_!VtagvHPOPF z$VcUEVh(h{f36nd-fD8;Cl1T7<~-8&RuQqW?I{hUpvxl7q9r0G);&Aic#I-_{8(6{ z(T7RNA0x_YefVQh`+l1z9)-^Sa!;~%N>x>~<>t69a8Uxvx6Il4!o&2l5M;=13ZR9$ zEcsn{czD490qR8=p`?i&&CQHTTBnrE%-?72K3ApAJb;v2ZLu3_9ohhR^C1C&c2PzI z>Gov(5ynd~dHIJ8@mdw`okb6_#OD!zJ}Q>iXB7T?3jFglBZl(#sJ*$5kB*{HyYG$ z-Ru9)xmbM|KkZP^mHwfl_l@M+9-cv2I53l5!{MAbe>N5G#=XK%YH*l7jGCI-0k)E{ zl9-%)xRRKk926Zri3;kB=$vl}Iz#ln?+b4|Sh9nyq#ef@>%#!fNI(_UP$~ZQR{;L& zCDcdrV{lFQsZg?XM0(v<*BPUxL^A>-Xrk0>iq|r23)A67RQrEG!q40 zNM&Ve`$aKU+nGm5TQjbOic6Sp=_(CYxV?+GSoqG*pod*^U%R3;E#fsJ9TU&}`Qjoj z&J<3YQ&>7hzpW0rNy_KvnT*KkGh*d9KT>%BiDv&pq3E2m3M z$?!g7P;sj*zFj*eLAUGt>*(=HHIid!+urFZRo2X7UVV1oQd_)*sw14V@yUaIGV;~$ zMis9{qV6A(klwh#e?v_0m3-kTWm-!MnXzLX!(sfr(u+3(+9#oz2=xvky^mV8y1M-z z1x`g07q7E#@zOoe?hNV}>+K-cm#Z;N^bbxr34W>|xIlE@QY7fU$%7I<9{Wo#Wj?Z-qVSU5;S;_TR zC*P*0v7(s6$1l!xxB8^yXpe4UKz4`yp(`A3m%NI~FVF7+sZC;m2T3BX;{ygDHNXT3 zH%EuihSb0OIH|k~3E>x78?-nYGC5{s%fZKXv0*2HjaP!q(>gjg%|!EDvtZ_=k{=v# zDBEMQk)J82jO9~l95_3K`DGsnMOh@9EgGuYQsHs!UZ*FoQBrb6afgugamT5P`NbuX zgluI|$#uc>uC6VTu3ijdcy5n%i6>17j_8iN@kkcf(%q61!+R)OTU+I>vFn|*$w;xN zlzTrr8(pNX#31WWAy#X2^Q&``;a%M6`x}LGq+f5#*K2tGo*jSA_Fq$_5>vFSZSu|M z-v>`KqGLkks7iD9l2b}`?{*q(zex?Hs7*WCNNDlrdHo7mbgMHP1pP7`{?)To?1+9z zCr5q(Tfpr@k5e@hi{mxfk$U6PD}YehIlcdo)%3fq$DGbQvQPfZdXwR-kmJQkG9|0y ziebUdDY0(fEM@-(B@q@?>*$0H<@VE!lLoJ&+spAqO2nuWom8;U1|6MzlLeLvH&4o^ zCHe@&5i=Io?0S03s1yX;fub-(9^!Rof;I^(F?=8r^pmRd4JUgOx6tIvB-A<+Vy=3c zTHlA}A*f4FPh^`hSLCZ~@;~*-zJ+%x3v!2)l2K}ket>00TG>=nv?k~ zax5)!&XtU9xBi){{CddO%;~epwUOu#O5lFm8Dth8>IWiPm=nMlwjnn&xXWs?{}{cK zN??}0O4K2P;YH%O)fIzbwbNI#;}VQJM3VjG_*@CoB`iO^y;&(9WI8A0J_YECaHY?I zweeEFzvo?V&aI>Uz0qp9@vj6Az>*hU_l8{4JKN=Zte4ROwcX{-$P5HSZzsW-ADa?& zV#?RbI0EWleI+aW#OZeHb*9n0btAK#?O1hqQ+P!QEuEGX#ig{GbZny%hgI~-C%?~o zGtG5$$j7XuGqGDtvY&b6#lLnAlW{GLup%<(A6Ge4Q?)%>E z<|&~GL)1JHDnvDlkPh3(F(vEnnndF9VZ|gRol^<;t?omg;SYK!mu&3yX#e zngdE%8?EYdW-jWfg%6fP#FG77(2t$@gIQ!t6nI}ON-!5o6A<45{n@Y`Gh%)ZEa$|yjk8|-L z4F=)rK%C>Kk3xDgT}=!#iCSuC)@F;ZwKT=i=pS{}nq6B}l#PI5wdWXyEPJ}p}}x3m;i zRufCpg@=(LG%oaRYpY~zT9?2{f&H;2%fQ-+G2}lcR4bQk0x5gYdbUlWP!6)k9ntcx zIq@hBcD$+-=fR?St~V3nc*OIy5Z9M5HH@pou{v3Ic|C- zuKh`#ehp56AN+(|EAY=Kv3P%m%0Q<8$Il{O%{321D>jK*kM|M^K3+beiJ;&7?j15m zf0@@N|7>VzNiBuE@e>17jWc=L#gQpaTx?^vLL?1vVC9gHMm$REPs~@G0F;TKrI$G`s8W*%Yi+M3VNsG zr)RABrnrS}kzci2SAk?oUuh+TU$E{BU6Uek3s=2 z7LP|99GV*J!61w^dj}}BT%WjSo z{R8TNcisvDRA)l>QJ|wKI|?CqpB*|9V1x(a7VJ|nfj|X|B%L6nsQDEiD*=BymNcnZqeka^)eqd?giML%P1!U1@AU&9l#C|rj zadka0Igk0ZVMPwUHll;9`b!1pcN|@|`z!N0Tmsx8Zn-K9<}}TpcCqg%l;QhlpnHTH zR|vC>j8qt*i}XTx-g}@i2PcdmC&uOVp$}(*1txgAx^We>y9g<4T0XhB=4ZxL*-gG1 zl9!Fw+kLX}1~_-Ke^ufKhhn9V1pp!?te-r9e!SIjvTJ_8w$e!K)37>WyuZ9@@lL%3 zltJ7^U@dpcb$PyGJ{*$LD2o)!OW=*lU@v$elCqcfS<4XST==U59coxn>+gpmgR%+Hi) zh;WCpMn+~r&?t;6#ay&=@>Nho@aPeLs)~$CGOdKhtd5oSvnXb=uXhw?oXqRgrEOBDm8ivoF>H?M5~5vS5_9_pMTG}fK*M?W~VJA3W-Ju z=e`rYU7*nI$hZdGldCG*Gj#(sntVi+`Wbfj6n3aW>oI4~?o+?)+dMp6^dI5sUc_M z-P*MEay^deijRgrXwg?AWfOY1tj=2&Z*I?VYU$>;c|vQ@H}LALHcbO;Y&xDB!m;Qw z<)686UkgaV38C)G!*?Jm!0nny#(>2Biu7-2%+Mdyn4@rK6Kix3FDdG80s9@yo66ip zxj|V~rQzcz&#F^Oy+G`&(yufq2Fxb1*?sS=zhX|B8}teFV^1StiMUiy<~A{(KD7>g z=3mVAXiq{;k24~Zhd%WD{QQOSQ^SD*0k$PuW4Ex|BNo^j=5qxnpaP=rN4Xo_#fxH?VV0bLx1k&3LUm#>)Ae@)|ob@xHEb5_+a z%f=p#k({N1Tx&C2OZgFtbE1%QcZ7j}-8DQ?x#RjCqncylf(T~vV>ySU9d>M3yeFUp z+XIkN$w_9pLoC`I>k%5@Q%iTs_Lw@U5J=}nXwwG_Kk0T6ZSb;sOykxV066?i+X3EU zegk;*QB#Gry1+llDWtX|C%@VX==y5mWaxX~*UNOMX&|R$Gv|~_k0!D@Y#wdk->J?c z<*rgz^zm|-z+eL7%~4-%N`kpP(J-x!t53ymZ}DsO0Q{7N{!rg_pD`IZ0kx3OZogF; z)7Fd8G3+DTHgP9I+EZ{fK$_r%;V4NjdAbbf%V|MHd;5fWL!M=A-q+#26fEVN5bSQXXby8`*r*@c)G_ z&HcaAr9r(#kCH#>5>CUkW;#GdHSQ8F`=CJzJfbr{`Gd#}a|{ti&7`Q+_zxcs#2ezks7WS?K}D?$HGCJY~Noa+_O9W(V zB2B=@U`?+~duJ4%{;mRI6W=Ofq)W|6oM0Q+x1D?i%b2-A$R6-HzVfd8)`$S*lp_j> z(Bw0ScRzPgn@=1&s?$?gGHO@ww)GvDa&hUZj`a-E#_paD;s0QO0sd=+a^RTT0SGE zWo59@T8lM0F+o9e-^B-ylV#g*dN;>Q`w)R6OMw(3vaesejN}nH>evlssc5ymsTLFx zlHpbxix9W4VAK5k`3F7o85jbQG&MEVYCAn6hnHR6ZL$3;$Wj-@`{KG;Uw7+tdOMDc zjUn7;?yk?t+`vzNjH~#Yk*%%G7B|Q{90Tz(d~_=McrSh+k5fCGzq|V0FZi@Y@_~?8 zM4J(1lI8zzB4NUp=pTl~j_lz@LgsL6Ovqz+*;dtAC%Nm6edcf&fQ{hd;^HyaTq!j* z^$)IuLLFUmB^I0AdEO|*AR-waHQFYosGuMO{45ni4~Kc%g=G9KUE^^ESrXc-$2WP0y&{K1XzjsFWbg5y7Q*yMcZv_jcBY6z7x37t?^@-C>#3ag^L>|h!}3XIm<{#Xpkag|Uw1u}i6Bp|~y<_K8;O1D5s zS$6k(gLt;B+G9=LGq9xHB13osk=DGB|lubp3Z*IfXMuSywzcgRKB!wEtOxe zpK`+5HIGaGKtet!NMJHB@S$DL*Kx<>)qMN5x3C0u2^I|PO_;UM7maHp1aBbMaEFwIQ)QMaX zj>)Pwb4$xG24ZZIsE3ZKf(5EoAx}mBQAGdeq>z!SJA`|}KHMHSJnA1Av|CNUvl~{mfs+zMwF1r-bF%*}BTjo1;A06>tuojw;nsk%-Uw8&N zYCOUm-8|i+m}g`D-b-Q|@cLM+qJ1eEwYd8&Yv*m2JSgAI#=ON!{??;RrJ)J6`kDIv z8aSh7RdlcytpIgQcEG=32Yp=L+pcZtv zl?5M($Ob+%J`UYz{iv-IW}ahxVQV?~Rhk$@oBH4JA@`gizoUEiQbYSv{>OkQZ!g)6 zB2Ul}atqKK2;-rU?J~yR!8hlOO1;?It6gZUz#YVVn}d-pRL_MuJ8)GLD;&{oOCl2| zXP`u!ORP!6U7fk>LzA)dk)hqkNyR;lYsQI^-eJ=EhL8^H85_SM^IVu1)g(cz_o$KK zx}e@aXpq(R)1hyBvEQP~b$Tb-UaWiOXFu2Hv(VY(GU2T&9jLvi+q}`av^BdSq>AL5 zqGRMwD&Jo~9-ojpWFR%ECBnX^$1r?F2EZ30IphFj6&IRkX0}K^n|egANKGx!+p9ZK z(U#eHpO)zg7rrEut3e}7&T>TNXZw6=jp`3g=f4F^zlXIDKN68g@teriyYORh;_Y_&?;ggX zfj6GbzPlx==9R*7Wja@eA^a@t9_qCl{&lvE9Dee(|2v=s`lu}!&t`J}Rr4e&MutIy zXL5}5fa28a|Av5^_5N=Nh^_1YR{+##LK?M>`{;L-=J!JZHVa#PTq+gg=YNW6fIlOQ zM;{+PF}XdoWc$>73pZ+JI_fcb`81*aOPW>oyud!;_(A3FL@yeb`+iJ`YOF|sLU83G z9{6V}N%?AR5>L+SfhYltjt~W;)-JAyolV-qkd#vQqLlK-=9f0}oSy`bpbic%REwjr zc+ZfsTT1XaWo)9kta3z_-s<{h+~mg?wNLSLeQRw%lz0`szXnw{eUz5JV zW}69^>CN@!NCCU^73!80ugOUj>&bs#-321!`S@lngqsRRc8E^G*!0Q z*kM(fjOD-rSlZmhmEK=Yk?8y0X(Y|}`+>SMNcKL8XYxWxA1m{{X;H%&@^}cc_S>mU zd%*q%8VIRj`%QJIMjRi2qy<^6&^DBpyxex+a@zh-oL>(o|fe# zjz6j@%>vD8YIDO5r?DR0SFAE5mUP_5Q&=*r+bHf?MPhu;fLhdr@&h^SYCREZVT_-OAU0g*ckkrxCVsuYRVYr2DrzWi=F| z?LeB9$KTD4$p(^)m6ff;#RtMe_~QDKWez6aV8JEiGNre&c==+c30d(eTsli>2a-l$ zmk)qrP)GEdTH@jmLT|vgZSCZ4u;Bgc9L9crOBGo=|8<{aNbvccJ3DAm0xIXn(ajAa zSyE>a>Bgi(W|!wrQ`jK;BXYM+NPM#3($WD6kl`LV7gyIpi`OTk0}+NdZ{GZi<1D7r z&L;LzKHvC_4(6iy8DqLn%p!g^WEmkSMJO|A8Im#;6oM5Lt;V|y8Kr6{p8ZI^I?zpH z;1-Mm76W|Z1f+#~ho?d0<#;}gZxV3~HnA>4E(zX8s>)L=0MFo;LW3AkGJMJrGB|-`PnFq<%9zLuX%9ukFcEZ8M^Yx2Qy2Z;itKaLriEx z`U%3my+q?t*&~oRSA&<=9EYtO;5a2d9-GjMSC6SwoZLQF{O&NImDV9tA^W;1+mC$-3R$hVaytAh9p37b1pa+AxbwL03XhjsF0 zBeb&gHk6zdK?6gBha*4vUi=`RY33Go@&3T!Cwed+#=-Y>vui^>;=N`b^c4^b16RK+!^72KjYuBYu$9G=<<%N`6+nIxR=6Ah zd;FvcU82b+y3KbktkY3_S)F)<#&59pQazopXk~f&xf<0KY4^Y@I}L87^?ImZx3lDM zGz=&57rikh(NC{oA1~?exv6c3P>+O1==&t3yBf}QEP)}6#>HwXP))w@bXPCy_ z5P%9z0;GGgpdx@R(*D0Ub5z1aBM5MUI& zJ3X8Gm7;9*j7XQi+*B=U1*Afy&YSi=dzcXISfk_OluVNegQ z;a3z{vNALw@_`+zX_~OCuWvzMjgAv)N*a}bg2>^?SpVBeKW?c(&HH2PoKi(1+Bwlw z^}twRbXvbxw278{wxZtO!^!Iv)Hxin`+L{MroC0T?xX)ndwg+~<}{-3&Zhd3_eNMo zJyyuvb8lOn1x-I9gxb`uxU6C*j+EBqYyrH5Gz18G@)c{DQ zLuG(tY315)FX8w4u6m|IOh%Icvlkdn5i#4e^7*7ii_|gVG7O8}AmU}>{(8ExGVYw$ zd2NcTxBU2eZ*GSStmJ8s>-;uOa?yKj`TGQ9W#0v7nd39)72v;UM16~}0T zaI3qAUE>-*GWA#%5TcvJw&)uV%(I}jsHc=nKO3}|zyj)grA`dKe=W_zeROvWTicWF za3sNXnf*M=!U)bKj)BJmYXUQxxq&W^2(b-D=ylK_2Bc9Z01~=V^n(_&JF-9>hhbDA zQB-3rpi8xxVf{7b97%xnP{Lq`$UT@i#vTS&)Cs@H(Rc?51o+q*7^6YVL(TcO+L+Pc z?sQ#&+gjJg?9iG`seFbhn$|G?cdtWo=}K*!5TM(QS#QWij@Urj86~{zS{G!o3Fv}S zhTdJ!y*NI<_YG=uSOZ-V|3-Z_F!W+|eM*;W<;@0v|H@*T_`$asVtMaRb1z!>zSNcI z6q&M=Ronaxh5Q-I)u>Z;H-nC=7f5n+R4a;cq6j#9XHRR3;_-0kj3*6xGVsoCXvxZc zA31e*zcZSr={>^S$1sEJ&{`kP1++oYqydv<7U|a)uVp|#e(02WuCA^EoCmBgMovMY z+x~+|D_vhtPp8Qbat&;J=6#?ErJH4`@`{Rmol#tp1mO;T-@dIXIAviS1zBz|>ua9^ zPcY)ag9mR24$j^q5f|j&@BGfUrOBmb-@n=-c-Sq{#P|p>(NmhQNUFD!Wh&pqm{dJ{p4FQ9FT!mF)C8z|iWwI2~8 z(6@tGjVA-mgAuPp@}E z!b9}Y6X8+!T{F{e-E~Y049DaNDITE~iN|vMW_i6YPq&Tk-wn%rz+&Dh}@` z7)-&lkYF&wJx2I~LekXs%YMc73H{f9hX}{zgMoMVBpN!HD|%fXqcI z)0lqJ(<7&ppcq-7e@Kehw75jLfzmNnh|%azhw}diG6Y$8na)BtwokF( zbdEW&K9$`oA{=FUM=08~tXDTHB{4&RLE7T&N=x*OxB|e$ z61=;Jx&<7l7%iv0uO^gHCR2>?WmMR<> zq3H#I%2wMQSanZ$f*GBv%)W=%SIZ=&?fd$pZonZAEC$0{!;5WJq6F8QBXjmGv7&e- zN8CrPa?H;hj)Ed%NPVl!$k=l6Goz!_F1&toB)9(!N6G^@(#g@=|Ao#7z(~ROYP@xD zryr^Yn!^+7uP%$f9lwqc7E~wO#d=_|7(U+-_#ygZ-1_WOLD*_h3@ zQ@A6KOj}#P2SuU|q*iT`*R^>0(m5T_v1#$-8(!pdJUENs(4*`r{#W=^sa8-w;XJwk zYfC>(b9A*`NeP|v-Z7oI1CHM028ooyB0sH)?TT;na`)-ZO=lf$mZfYAHm*ETq7jkd z+9I~Vz%k2&;-n3idOx42^r`cMp6TTs%6VvAyoQp_jIT~Rezdx=v}m<+NY2n%y7iba zwpZoUEbH{#pZ9HNUT~5`%K&hq9b6P;mUUlxf66!|DFcZdc@kl}Wd<N2dxa*$ zzGRUXM`$lw9e5xid62yyjR^n*t$w0IVad`8MgdV*%9*48hm0+hZ~e`^=e6BDQ? z$zdVyA;P-XA73fOSC41jMVLNd$Axkf)?^?&oQ4R; z;puLBfH*z7Z!>e^CM)`0%Jhrs%f$S`%yLXw6D{sTLc{l##SuU)VD61-MTuSIPF%G9 zvriQk=1Wh!`^#y!(ifD2$71??h}h<)$M=|W2j0Xrg>~!7QLiOc%RJ&*?p9nsahfg& zH^wWXD8YaeW)uEMv&l!p1HtYho{Bo@W<$J`xhsPp@#KG7Rel!&-1v=e&Hl4KB>0O* z{yh~uVv(b*2^K+ZYlGwke29>2>5?u}v^7>KRCXuPn! z{jOlfE8LOWO@v4r_ourccx9{@z5+TiSV6Q}2kN26Y1=^o^_1hW9B`GeQ~#RAg>j(; zuN|>o{&yV9jpRt$93Y93TXkro4)%VfF>VposbCm2!PC#Rz9;cUJ_hfjwis;q zME@=VTbG6|uK&?ddViScLiojQTkzRtxpLd4ZGxArNF`Uh4PdO9Z%01;L$~C+J9+gb z9I}C5K?Ge$qPs;kVFbsIIO?HloguWZ!z{2{2>ON>zn&v$+k%Io(zRf+I-=2Z>$37T z#PslBU9ReH#mqmWA7HKCM4!(coTuae=mc$fQAeJ7&?+Lt}IM>WpK6 z1X@E)-z7b|A=%MiEA!S-bgmgx(z{iysQXZ+FN5LLMaiu3pp1g>9kM*oL6Xoc?n zA5tb+PIOK^91v^F51kNl=Bqxb)YACx()jdqJx$9sO8Oya*axf9e1?r_3U2=vbg`;; z5*u5xtu4oXnSZ7rvQ;x$tguhII-AI*rQSwfDV=5;)F-or7kwZs&cRDi$fucN)# zw8M&Inh2#Y8(SWo=>XN7eQ%Pf8hP_d*~n}$sLC1S&9}2cX9}2jsaA&P##LK^;b1}F_UIa z&Tu}QQ0tAt0*3~)^)F>|NkxK)x2<{Q?LIH3%0d!4CgoNjGlV|CmiVa9<9`LjHqQTh z9!B%X^l_bxPA1zxvPw$VOooRicROaFn<$!|U|&O5xz8c@&a=!I4mF|XljlG4B?)LN zyHn+Kj^v!;Al#~>t~k=OY)*-Ql3$L2)$=b^leiZ0U{<1a#zQ^~u+Ft=4ao30y+%pO z_4wCTOgv4oQjCd_GQp1U!h5we9MVGA-SoGXs|$Qn~Dbpus~t^WL97YpaP zs4onBIw!^W$?uTDxP0ig++Hy;q$;*6NslEDS12gH@$uc&lWZ#XU#sS?!qAY!u-p%R zN}m*$j$fzAn6XlG82x~VC@mA8gv3YzkUhmNFkj zAK07-(s#}i6Q_d}OdiZ?imHoab)3wyEHtNgwXr-tvK4`~KS@`_Tdj=?jV4OZ4~no> zGcmJB0;Epe>%~K|0**Ir%%73=>Jjy}^jNxE``y(jS6!43Xi!dPkY9mw=P^IyiPEat zAsYCsy;p_@79%i7NezyR19vR0FD8f9#@$6JJG>&Zad%IF*$L16GR@_+K`FHzjw*6N zY?snf*$lPz(&-FPVtQd`%6qJf0m4lz%e9VApKuRcmH!tY=w ziTaf@EA2BM?jLH5SB>L-?HvVDCoiv)gugBPUvQx$m?b+FUB*zZR%txt><07XM-bB` zeM^z$r^MdZavSSii>m8i_nY1Uxf9;^gTJ;ApjP=MsLkX^U2ksRh2ZS8=e@5lx|J9O zmwLp>K%GV7C>N8(fwm~~@xXI7Q`zjew$~!vRcq1C!HyilHEeWaZN|3vCn`eB4S+>g|VB z&;~}nAB)=XS|{KU8a9Fz)zbGoslWzQ7)Oxhar`T{-%mEk+(g4)YWfM4&T(mN=N@AaPs$Lka@ z58Y&ExbC2G6-tCzyuEvTvE&Y;`Rt(r;o2I7naCKOeLV@dz3|1W(B!j!G*V!hyp>*A?g&=a7YL?e{nSB)sQa zhYr_&(m>E(cnsNTNTRAX>EV`kaj3thV9k7kupg*RXm_oz>@WKk@vX9=R~UyY?b?7R z?sC`(vB>hn0^7s6)80J-1STyT>j(Z{$t$DohpQDrdq1G>EKJUImQD*Y*$3a>&Ig1} zbHpU)z2W|GXgo>{*N>nUu!Y6Co@kVhUQ3yp1l!dBUCT{02u6GY!ozsrI}eoWmA|oJ%nl`Da#hEUP>9h5G{#Yzo`axM+0g4@XumQ4@#Kl8YhW ztYni%02GYxmu~8K1CUuIn7_fNimIb^`fCO`&j`o5Qv`e%PTdwzpmgZaMY9@M$2?0+luw)>jVAZLn89kDAMePP-}`P|2rvDOZWs5fQ;!V z_i#CW_C9g*$be+h40jn~+rIAhy9lQn9W$)))=fc6Rp+PI_PE7Gt!sN6U8AKNh#c^# zT|4DKB!E-yX`?U6Kb&$Eh+ncjqN2b~D1f(cZk!bXg1*|V-FIv1*q+zdZnCHt9j-3t zHC83J0Wj$tZaOEYeFmVeYB?xB!oWNjVrDd9@w1<2s*e-&EvPf}O1xM24`0Fc zsAfhtxhY-eSGu9>y6IctD&I(uPG0ZLe-OmyN zw^T3CFG5dg`-I@3>F&B?6oQhtYOc&?@)QoUV5DmExpv^4bd5)LDk7{0vNR^lvsqUSRBjsccygPFhR7MSz<1AKf*0=&FQgE7;M;0TES2d&(EC3m zF`%SeVk#7b{aLX6#h`v|FXy)CM8{+^Vdivz$b8|=v+B^GEU)Y_cEi!nc%9arhrNAb zL(M}Wg9uq!Sz7>eVHYF^MMMB{B@FFYwy6F6eN{LNik7+ZCYrl6EC|%euMhL&-CRj@ z)#!=@+F&OzR^U%R-ygc&Ma05v-bIi!YSQdAKl3zCwire=w@{yu9{u|1NX@j<0% zMWprW7(Z>KS}n=n2R4WOje8D})Tb;X_C8%Tb~WSW?hMt;`1wWo8SH1E!F{0y0H|3M zEOcra;tOnG_k~$B!;wg^ZO)#|sFm z01?oO^8B~ef^3|e^Bq#R8&wfx#WAUkFQ@WCKpF1^=-OXG>3m_wbVJmCBmSGRa5|LUOWa`SGTZ=_o2(xvf5| zZ|6UAu4hL+oH!@X|B6VkKi-P!7bATH8G8{=_SHX%@7e$mQKB{V({3v+g{3R@0!fp* zxugs`9~cTgy2N;BK54_cGHI6zXpjyokK-d8|Jf^7B%b?jzk@^X;=iF-d`_ch`+fbb z4mGbl~1r@jgqI^}C!{sBYHqT+VTudrrNtJitMw7T2+`%+oX_6Lg{lt6D6`2r&q zE2sM&IC5x1DA#@uzl&E*rN}A(9dqPv zp!PjsYj5=CP)F!1X~Kj$IVCy!8-cj6)T9FUizJAp-B9(kLKTMJHORCK%9rb z3qXYBQT@JF@A8F(Ygsu8nHro>B4|J%-4>`maCX=;-$WvVr)1)2VFGu6X5%t(tV}L| zbwkpSA3ddMPq#R)n5I(2)X`KGyFL;eh{Wp+o7R4jv_G!UFKQcK;Ae z;R1rGr1*wa5Xt-pQxf@Ha{|dSyC+|Plziax1`5=15$oG$Skp3CE2ERc^~HR#+}bXX zU}@ay9=7xfy#xM(7gq`XBOgcj|1OzA=93zHXl-o?r|6drj|_?={+gK7S7s9y32#`{ z?!x=17p*hjRk~lTgkTdPH7YCvP=Sx4Lmhj}@{3(xe+q3s+j|kLVulk$l8zu6Su$_zwT0y;vh!p`0ppbtTv@qd%*A`zA0%@6)4Xano1 z`rQZ1PpR}abx?wSSfgD%aPkX$9q9NYp*tA~* z!c*gSx;;1u+}IPp--B7@X)wL8_@3+8X9ADK^4ndLnhsz^r-rhS*!dK_ELRfBy=@Nb zoNw^<9hle>rS{qx?1&nw#3ohdoY3GTXggf08#C#C^^005&=u@bdG=`##Uow8fkUk; z&?p}6Orv`Os3kk6v0EFptpTEzy$cmP&lOB;yUHqD=WEBnx?-6v??}~FKQER1E_D6g zXMmvzwAF$BGZ~_l=Ph)Nwuy1=TV`Er;02(dnKJkSa-Hvg{0&8El5~5R{+Tviy zTm+i!ToZkn!}M$m;u|85$Xln8F8yZv5h5nIDBJZk43E1n>uX(8G8zRupsO8nLRN7M z1wycfAA4OC|A)1=4vVUN-@QdqKm8 zh;m@nW^aX5^T>p74JS-Px~@s&fE3@(^>b)wXlA@owim8~qR^k_y39-RKh1S5lM7Dp zA@a_FKh1UW_-1N>4d0dcn3@~rI!JMCoQ=CkmSE*Ex(>>Cju^~feB~ii+_Co zdoXqIGL?Y+bHp=Ff~CgbnE4xTBvQraX)AA8)-|GvVDx7@G^1s!w|6n`DrHdBaNYgM z%A*Ayo>p5kx8x)TA0h3PM}NGxTU9bLpu>okeO)YtAJrvO`(J7-37dnRG(e6OqWOW} zfTvc0k#nuQHF9v2Oj#F4-gF}t@t{XX3Id^h1eP37;{K=Gu19!CRaQn@z53m)GKSRN zt=e>;*<3jWSk<3j+cpn1!17$_o%@(rsi;AflF571AJMEcB?T+X#=v&a=J{}){fDi!Z20+N%4&e%&B{*f>Mk2B#?4q zt5l$}JFT#g2~j;oEp%UoFKev96NI0ROjEFbLjP)aKi4+ZmHoir`4LS}vav4z?)0hS ze;*ssuAgiGx;~H`iuwGHOYi;CBlyFO=mvz}5*TMH+LK2EZ|Re-=*>TKmcjr5s*q@3 zvo?%nNI*K_xPvKqf+0R7ud7Z@G@x0>suuRTeukK1@96+ltW*VXQF^(>;`n@$y1<&? z3WbOX(Z3a46p0qvqh1V3Y+5I!P_~mEaV7dTtgg6&nmiL4Q80 zyT9T2Df7xVR5tBHN^!9m$Ss;j1IeKpApWgaqkB!E#cq=>?7IE){#D2COPFj|2}dvbb&WBC0BPB+Fo#Ym zWu-)X^@rB0bc6?0Mg7C!0JBqPu1%qElYp;~lcbxgfDZOrIr-x3E>7@?=$0E0d0|zX zZ-vRY|H=Z8BO5HetrqlmPL>HrNE$(i+aG~g`)KN;#LL4Oz;JC~gH|BsHmw2E_xKhA z!{S${8&-CgAMP%(rCdG`9U=(&Bgg6YTTkfi*ZY|BX8Ee=uZy@ev#&~;f{I#xBFDl# z(wNCz5csbCAf^i}O3MoBxZM zZv{s<{Y~mfY%f0h@U*^gF)@XMZ(7zg#ENNilkK9yNI48i9^VFt!rqZ5jmbD25M_3C z(7>#p>&krg#Vj$ldkX-h|Ds%EEdb@B)8z5=tZbRx@Lguc+M!Za*5=UWKQ=0wH@X}!IM zTNJB@|6p6;|83^0x0sEO$PksF*3eax;ER3V{|#yc)f6z9<#kV*k0xurJ!Y~Plc$K0 zK8lV3yk(teY7XyC{zOOc8BLb9&p7D^k{m^~$!wXpJcd808`qvt@{=yp-SO=EX?*fq z7x~wc9ur|c^6Dy1NFGAed14X!G#zNX$ZckCq6FF3y7dEgF_6Ah&-Dk{TErkIoxcg_ zjsyi~|1NX9pQ6QTc^3&MB9T%{MFje|{5T7}J(8X4#U`u9=_;4wk8!J#$M_DG#fxN3 zXui5ONAC7~4h#P(LX-CTNkhk%{lqcVKD){17_p4;rDD6EJ~7An6>$(lHh0kV98Ksz zT2{AD3iOz*&yQ=pH*0>1#e~o9Pp(Ep5WW1Qjshi*&? z(2e!h+w~RT*nLJ#8+?E!S8V|rlOr3RyV1_Ll_gIx?#Mu!##uEo!wF$yy#Z%)>>|tdq8?pp1=%(~`YPAxjXkDMWYA#TE8n zsZm$h)93lW9DcFC9Dcp^I{@Apeg+W^^01~@*_zm$KwPpJ{8sV-v4u7_%gZfieUnDh zp3gG4wl5srI)K}L%LrL5pHz!!5k0X+ycg)i=rhgLjMQxlf!%uM5uqq%o|W;WL0U00 z%j}!i+T_XEX?N)#Qn2xG%O{%AdNf0)XC)hY)LB_s86_ow=Uikgb;~bLtedphrf6SJ z$H@0k#wj({QJFs*?{5^{6OhCnA}v;a$;7l9RD#Qt1aI}gwFq0i))|f8?=HcCmGo|`faC=yC>3swPAS!WO=o|u|z^4UjZ!k-Af@ye6?y677OV9 zxN1wRi>pvB_dv^lj1RaXICcOW1cH&q27YBoJ%4`*+4I1CxXg7QlnOvJ1Qi4YWP5#x zK|mc|{-gvU^=J?E0$71KD;LiHyId?e;+l&=MQ>k}Wq&;EAH?NEZ?&u4vzpg~HJb>4(-JI_v-#CA3xsl&I;>9ML%sq|qVnyQzIx!sB55k`NxqJJ zvJwo4L_h)ls@uo`#6|(w_o~2h4Y*3<4}n~*hqsbg5y`gSUq@cUuIz%m6&T=o1=1#t z`+teUwg_?W|Ke(Mk1a0OfEyLTbgPji(I&JT;AV9#1we%?e zO>4mt;Nm;3zjpC;a1@GT^f(=FERV<90m)I(wr)dj=P^O&cs;yJpKwb7ec!b^Ra87y zle~@;sh1b4843}%YjP}%)wBn(z`KrY5ni(?MGJLbihm!|yzilD-3U`rw#KQv3rN+1 z=#Sqk>pS3on=JB?s=bf_ue7@ji{PBxu4|Jl+xj$+Sv&SMi`c~L#UDB^yE>W5FE~@y zZ@`wWG$3wD4jpISXHzZ&x8Fod81O@Xxrs=bdGerU?svJ(GO_Y75t&u5I1mcu0>_wc zGqXDX)}}k9k?R|j%EFshGv^u{3PMovkFZ8cNq4f2iKBJ+D`2&RQEq4Ct%j+2~(0fB7k2Cac>QC7i zkk9{zLM-!mvYW%rYUoQ-Q&aa>7QLS;s=JMCV`Y|{Kz7vagH^F0N@(S`sV-m}CkbKu z-T&}@;PHSj(JB2=JRbuSnN;7Giebq=v|qLZG8;@KfSnz-kY0(A)lWhw=d73fD(`O; zM$FFHqjz@H^UP(&fwCwN6APR+C%N=@Z{)8oi$|hRLTwIGhySaYH6-0f{2q`F^_dl0 z-6pPHaOi)>z(693N4C8OOZP;cTFU|wWymllFVfcPjz$p5+GO}&_!sETT6;&6 zAm@GVn?>g*Tb7D5kylA7xyp<2u_BV3;{vr~*ameX+? z+RI+){1$&s^7xmM{Qu%soPOBJ=BJ|#PPoOnM{F#T z_CE}Ku0CWK_;4WjGGQI1aq(baemXc5LAPz z6v{GigU%hdBO3mH*Icg}*OYjEMfm4g62ZSOcKg_+Wqv>T9Mc0x?Ws!q9d2&=>5X@q%K; z1jWc0X`prx$<@--f7+FkoDt<$dr6iR_QAtQO)VZ5lHBRD{w-_BN`%bm-_h4wuKNJ_ zYJA7gLGhQ00}~CFCIefzIcA{XWg&3r?J3Kj?5ilV_^nJdv(CC~T!eg4S1_F0&hF@! zJJ83bywSvaxpMY^oYr{u=>gy7pr-Lt?tn)->-Rd`HgKeBO|SxWoyeipmtv#E4p=3F zgBhbHuA(MzyauY+;Sdb%emk?deR9U|WTj%YiFz+B29y`Q-DZ-cJ#%tCHL5l``=Y(hqys}In4{O}WN+T2Y`iaK< zIl*iAwUysV1Mzd2n`?_op7ebFMgdyz<^>d+*1IcOl;Fy?Y?XSpcuHXsgX-F>+pncA z3U~_@MsG3nL!{lMq9O^zPe1>47XQ5)|HAn-SilbXpJpb(o1l4-&R9F^>>y@?fgzlF zQiz2VU?ikvbr1FIrqr^(*Q4F3wbun034@vNQBQ=c#Sls%#yFpDoAvd4+BU-4^d2TeP|>z;6Udv+sS@ zr_lzKISRMakFqTa~&oH z$WaE$*O-u5(U2@HP+TPeWqrd`M`z_k$8jkmn`el@()?o`a|c)wE=BQ zHr1_f_CDY)jVdwG?04_9Hw9sK_KI|Lw!Wf*yPWE@Sh9+jj%?j$0jFj15CAW#fr zWL#L-kBL;VY3~X_cN@v8HDoI}o}4QE@Z{h57b6e~Es!B@^eF7Vvf+PSLql`~Fc_0D zg83i2^}}d%u``VB!ltLYFRl6Rbw*K+sVBN=0U6;yxRWrr^pf9s2~AhD59!C zih+gls+N1}FYZZh)>IjxqV^_gobB!H3}@>u#Rfjk?MHZ9bymWp?7zO2L9TmYgx~5+ zhcf_bug$eQ`PdMwT&%LKfg!8?MuT>=7WQ5(*J_rxC<>yGGRxD~CF9FQr9-{r6w11R z$^8yIh(iShd5;gvw91Mb%Y_T{r$KA;2Aku`nw;Ay{oy~zIpnI8QY=OTvZszTM?vbl ze7Gq0plTHv%;e%I%EyUZ>Kd7Y+*RcYex0uuzTSJx6idds*^&1>#9_UA?63)4>ZpRG z-t|-tR7u$6R-iDDtH&os72&b!(8#{hTLx9_@$(^JPIR(L+~z*g3is~wf3nNd*br6} z3S<V+s5!AR%zWDKvQ&>bI#*OywUx?D#n8O+q8@(c7W^ zr5|VqDN@iM8BA5Lqt#NW?C3#P^NQh9Lc<+Wlf zDzj;wqL9lMt8C$S3-{)N-i>|y>OW$r^S9?#DDhvYA6np5zq98kHyKz*sRkFf138LR+NKs{mnO_iv8}1W1&RuyRJ;_@q(-h!$>=u=RWK7}n zjLG@#Eo*A-9XWsxvP}Ewh^?0f$!Hm#Tl~QtyFLeA9S2I#X05bnA!(2KOrv+w0#RgE z0js#qXRp0Q1|O>Q%Kg+f8N2f+{HZpHbytIEKSHHy8W}m$kYur$qo};ORE$}o0Uy_xgqIl%rc{mi4zjS*{iebgs>nlHh#RT zH+O@?=(yA*nL;_I&7;}f8{KZj(|;&i0a1NEtfprjs4COQH9Y~IcCw``mh7=t@%hU!4V;=K5&w8f%hu9py z6wPN(m#BQ3jO|BT^>zQW@ua``0XN|YT_jcfjX&L!6c^oIZ__o@1#1l^s}W}B*1R>N zAD8;z?N3Ym`g|8@o__b~)gUX`5IQ?(zAu&cW6#KkMjTaAvvWt9O?xOk?GfNAvYvsH zRM(*sg_(wehewHdh7+2x&Av7Q_-ynVpPA<1u`Fr?U91S1zLk49{_V|uZMKSD*uOn$ zfE5)a5Q!*xy z{Pa6bw)ROPgk$}PLc^}W`MyV!TlUM$^q+yAInCs}E0>fEN0v2qe=C!~-Jx1a{_~J@-1+ zb_qzAo&k{R;1gdJrnk7;zwsT9Lp~;ihkjm#6nQz#9maGhit5zxA z*CMiQm*cayDh|%OTsZPRL0c4#N!KDB7ru90T!vs9?nVv}$Rf)oS8sm<6ErcUTlz-T zXN*$`G*|XLl=2B%N6b>g6u9U*AFFp}E+!XR3E?5>F&VxWFel-fH=C06ACQxb5zVff zNMT>WLjJM#a(vTHgAhfUaphBu2-!8M5lI?gC;gU>IijSxDR)z}9m%wl6J^@i3s<@G z-97q?D83C%4bSw_3_@2nJtx}k+afA#w|9_&q5XsVDBr7Bp{AG-;o%MON%!#N+2Z44 z7&M$5=O`*k2fTGyGl+F>OtkH$#rU}NxKyTme8S#&H>iW;#7M)3*%#jW4pb|jc};eX zXLW`+2H&08F7^e(9WJY{mVc%{UVDgp3wgrE0kU&hwonvb*}mpy7G0b*@KO`u!I?RX zc%SgN%q`PJuBl-7@v(|n&n9G##a68=n@h?k$kH5OMcIveOB<#tWQDj?1daeedj~R1 zm=mxK!=;)!K2DtDu}Q(T=_?2X4IC~nQwTfqFItl&0pAPU&^tV9fmGM6`~)adi@kT9 zrQwE6zhfcq+;%~9kfkBe3kCj5Syi76GhYag`=q zTLyk2E71^LvTZVU#{&r&0K4pZ<5=0j6*IWk%pIPq7ET2+%iO(7f0Y?H@af5=x1xxt zyHw|_Bm%;ZusDxtm>PI5)oG$~{3JZy$^Ij*IFMDQ=~Tjw5=G)O74h0Vh6-#%iBj`mM*L2 zRKS89g@GPj`z?Kfd|dW)fw+ITE$Kr97Bc1|@MBvg=+%O*);+FVs?KiwBN%IY zE9p8IYbyX%po+>l>HW!aosD%JtnS=0vsJnYezLY4x3zNZq-^~t`ukA*T=)a?4TUzx zVs-`sX+6E*9Bb;t9|ETH1f7$0RCMH=bTrzdd36~YaQ9Y8`?s4_nYEf{+!jO6N$Q+% z8ki{*@?T#z3mpkjixNWuGFu_82{KNs3l*nWD`>3BC% z*Da&)=c%xR0~f@8)4T@L(b4gEqiibkMbYJbK?5>~vhxl0NJ_s6fSkdL=(jZGY7X{L z+Z75VrDRk`mm%F1^%YX#;9w+?5!oqylvqSoh zZ2n@CzB?d@ZNARO*Ol>r;0*EWi_kG*AbqP$M`_F1x_7`|g6#K^An>yQJyMR*Kd55&Tuc#+y@t!rmRQB zDBdt?DK90PeIhRYc=hsZW{l}Ul=I>A@oo^l1kEzdpleVlVa>4Ve7JA*idYF=L@2@1 zwmZp_@VM^)tP>r+?Paw&%px&Wfh`{KLhy`xQ$S)%hyK|@EomP0ZVNdrXki+1G*vuR z`Up6>2iq(MOHqyN_DbVhuRN1V|7w~6ie)7k!N6-sS7s=e*ANqyk$b8ssPJmUjk%N` zj0MfD8hnt`vd8cPCBNo?5TCrdkpXDpXfmltI2K(Du(!1-s9CsV*rDS6mkI~m8jBkq(RNDjt! zCaX-y;i@t%)Ko4Kr5BzGt3&*!Jh9w{#iPVyG%~rx8x!{RD2SnwOa{WudHLPGqidRm z>R72&5;pc4bW_sgg$;rtjb%$2-!c2E#2AO$f$4q}Sa^dvlQqjdK3+n=45ovd8m3;G z{`eqOd1zPV@AKn77=%Fbqv>&4!^ffj_}T}on-t6k2Je$TM+6pOad%6-Dhl48la0V? z$I>+0>XPp3!d3j*%-!Z{bGO4g^P;8Q_W=UiKUQX(RJ~dqjLA$ zeka^xGumObv)zPBj~62yI!&hO=(S%*=S~5(h>t3&2st|9(90wKfuYMGqsQUBuS?H{ z>biF}xkHXG@ZMsm8plrpM-vM7>XYYE8F+TxJE3Ns7|6VR^NYDsXWghfdBph3JG0oB zDhCh{?nUDN!`1<9dcr_vry+*Nh#RYN0clNqWkh9 z47$Q?p9$V@Is})?^9I;hl1sbNQ1dgPUg@}6_R^)^;a);Huj9{dcuaKFNyt=~KfTDu#gxrb#HOHWHa>h2|2nm=sC=IiA*@sFforbcJ`6#f_5|8g=?>LV#cOdo2 z>H`|sd;!yt9YeAb*|VsnZ^i}HUms=?EqMg+I`=?#pR#c;tapGNFo_6(koa{MeWSOx zMH34q(84+Ga{n3!cO~5U1jGT#iVhaF&U19p8N~tQ?_SFLf3L((Vy^SJ}+lm4DRP(jo?;2 zto3opnnEaFj)nrEz9ttzSAxZalIG;|($d=u8kT$8GbE1>_n4KQ8nS?$iw>_mD7$2p zFUC$IWu`dO>!M`(Ri+BH{_UCjJ|Y7!ETc1G!n5CNsEAHK{V~Z8CUSB*BcPK@hin<9 zo&6%Mgs!zX>DrdKA4Gvg)LY~eO`k3}e(hJkEftdH*% z6e=@j&*|PzZDkVyW6(Xx3+uIpC=$-?$P$0s4_p5O4i21XOqISh(2LnS!-VyM)KB?R zg(m`eGVP}Y=d3h(E1$NvlFZjTDm+$ z#Z4MDCB^1UCBI-Gs*hBviL&5Tla%6lReN#2)AF>e65pZ*HF+c!KM7j#t_o#s-z&Ut zD{qj)2YzqBruJ?hTsKKmP+zjkt}twr7rts z7w1Iw=ry`jE$zw^#yE)E$a)j&dyD%K&O4CIn;!~c(Vm-%@rnmiT;WSISC^3#dhv2K zm1hBqtKn-CJFytdX9A+xI}O!yELOkRC3fhgR9SoVUD}0I^_l(%Z$cyeZ&2dl692-~ zr@Wx0F84?Uw^F%tTxJb(wvu0qD+(;G^CYeyo6ds`?${@6F2nf{MeW_mSEW!*bV*)F z%ir;!)7ej~6rRjwPkE%v%LlNHlE@^m5f8wUyGC`SZETcW*%1nJJ6xmESgx%%laj+4cm8MGnRIehJJq|{ z_T|Xhif_Yaz76|N+9_GB7OSmA*KC*ud+mLnL?)2*XhC&ag2!$d>iqs@>e;yeG@t7? zT>(nw#hghhR@j3+H)icqyD`TZu#?6iXk>83_+?L|9daaz~MdD}%i1m$VxWPHd zz;&gC{X)F^x@CNMa8rfqH>E%(*!Lx9cHR!j0HooC<))u z{m+keh%Niy5@F+~==67C@)TF9yg93VrU%;rPL`KvcDz(Imyxn7D?D<#?gM9K2NlOn zEX9uI95?Uipk28|_M3U-xS?7Wo_%f&AK5T+a~*y16kaB61t8NeeX}4-su%u2jYou! z2l}4|n3jQD>?sFC*4}+qn1k5ni0ORhH>&%@KjntOM;OwKTm6yUtR5Fk<9Avd0i0;P zv=!rNF#1F3OP-}yuD>!#f)l{xHWG}BWR;!7?e3LU!al-a)>Spkbpe586S;@(cIyWY z?=tlCkUTL@hQ z-V{fo)70Ii`r&NkXw;T$3zz7Gs5grQfb@P+tfzj}J6GRj>I3yG72y*%xowbjh6Rhd*%GV=uC+E3j^=(8q`H2C0%b}%rh z>KQ$l`wdqmSpR>()kLoJC&mleU4D$LiQ`B8n}pPA5tA+b0cOW3PCi)R5wD24_W26hVo$QTs;>FT zy6BM2z_VZ}%Kp^34Q*BemHXkn-2+&OuO7lzj{CplJY!>1(o6?yR}HcwEE$K2X7;V} za%JF%0e*n3Lh%1GisC*Cu3dCZaoMG^a*~dhx#%`MU)wg8-)mt`R|q)k(xc@n_8*M* z%Gab6?#^$IIRw|a`W)NGiC8zV9NSTS-0qR3$B;XZmHb9a*Fa^zFWNsIZ@oXFIX!ju zME|Ptj?R+pCucRYUa;q2Q17t`&3)DjwE2y5(oOsj%!+lDj}xcpcY`*Q7v{QmYa`!I z=(hQe1)t2NFCQP`+0NDMF6|HR=_$uEZn=**6&96${2;PAX3gXxQZRmp{b!) zttw3@hZ{Xx7w<_K+^-_&$3B%6MeTn>vrSrfBa_PAW@60%_I2z0`JLGB1w;g2&XLfd zf4DhZCf3LGL^RMuEU=1dX&mM+rMW_?67{|igmS+|Q+ zp0P9+&fEw4r4MWM){MOD#G--L`(FtLjLkT#Zg{`Y_4X`xa8P_ol|I1sky-<12JDUd z@PmR>oypHBHIm*U8YZ>MhhV@YgRW`gmx9fqa&3CP1z>Ka9Izd2p&}DMA6i`E<4jas z57%iTM!if)p{GknwIgWgc+SbG1gk53ElkpsC>_63RzgljDY;bJxUTkL;rcChcRL5z zyw(`GWxhxs+|~4Mk`0WIM904VOj=GbgCoi-2U_oiqfwpj4PIZiNrPrl;mBa)wJ5Obbk9pjb1 z23PMMUEDp|E>%9Yd4{1e9uxG){!Esh41shZUE^y2GrMZh?EboF|G z?$qdh0(Kt5HNDzz5R8=hzWsHA4s^xEp^#9UUuLk@xBj!z>=8v`Xy1eFk4rioq|-2-cs55(#$Wdk&OfHB&m8j9 z<{|(Cc(Ps)Fq6{yF-9&Er}*;r`8DL$wn%Cmu_9;UoW!uLv&n9JUmXobJcI_Sfqs7SCp+0JW+$dGMANXf5SZJ#2u$dp%KC}=RL0o_XomS( z)&d%BdO$t^+x3-Ms3?irdR2x`gH%`OmHDFtl;QRW3%W{4N^xmaYiR;5-YjE9aeCq4Anh8A=yuZw=l^?6{ zeQuK1893X6lrg+=KNjhHyw^(9&vC=U>(cM00#fyCsn6gBNq&+O)Zsij{TKX3+lE@qv+ERVFZbQKpA7>vzYe=^Gl%Jq4R~oS(~PfHb=Z}qq!1Swi(fsNtP{0_wQ=)rkaNw3x>N`*r!)Mk2a4;w>TM7L zRe`n@TDe33bP`Sg7@4h?&v7V1?~rOnJXTIFZKu7RQWBa=yZJ~|J^bxan=d^_{#-V|hOC$D zRB$0WKj@x-T~ir%HrxaQmBor9RGndukPl?ie|#x3>dSb>uB(JT)T`QK*g&E0a>WAf z7Rwlgvuj4{CMme~N;3NU>wa+JRadxYBt;Wdcg0Cm(`rJ^t6{ISmVISSCMT@r@);-f zG~3LgRkwERxqEW_sE&>Oc}mjcxf4!NwqY)~E=MtbZ8SGm1*K~7lY`Q2mcDTB8>}40 zmdrRKQPoEWu23opX1YVLw`=XGfM#emuEmYCV;ij1qCKSxkLAG8pk4KU=5HxtIv!w- zX+xiQ0Y4C@N}S4nXIu~8Fb$!AWnSzbsQQ8(^e-mT8%s%D|+AVx(gG8b>)hCbHru86dg5O+Xa^%8k( z$pBXVAp2e%v$?GW;htzFki`%aXSi4oJ@!-^;s9Dcog{W-%lUv{dg?0Rerfe`{|+Alw!h5k2>93oj_S&CtB z-sa(Qf3R(tnM=$CcG(&7tV&>1c4OU~OOe)4g$dAU1qR<-UMw7D8~wW3_|0PweLX-2 zkEPYh`|G=FLxNsFV^!-Kk4l(h_JwGl!n1 za;i5a*DWgau>qJ=NqS31N);S!dRdcAk&QuBJFJ$YBdfuy+%bp5ogui&HXoI31KWQv zjR-eQ*#U#*q^X3aZST`2VGu@iIbz@|dF67@Oze1Jyqw!gO^Pu*wwhY*3}+Y4Ws%U$|AAD*>Q6CSU5ew=F^ zP)k&L6vOPD^9f|@9m*8?MB!vBSo%&9fNx1fmF_6;Hm*VjPj~;E0{?fL?^=&bA)Da4 z8MrPjQvkNYiRKNuLp6 zxadKQmX>mps)^Hkq@6?Q%D3K^&lQv?h9WvH4RB@+d9_A-N(@Ub$Az9u4=ufK>T;uq zBOF=mtEhvo^_|9nG}bBRSh!Btn>;hZFBJV+DpPVRq84;(+=2QmTsY8dG5l$BCYf`E z5=Phkq6?T*Z)mD$=3qim8CBt6p2*~6XP9a6tM>@%TiAFTLX(>~N>`h{nSex6exYR4 zE~79v0xwEkY3?QCtuqCMCP7tfD)oL$OrU48r{jdRNg4OGcAc8%d{)}waKe6PH>p_y zY<*Mrh1R#{CkwOB+6C>ein?Y~KlyKW?=io+}P^H4!w-ykCGXoyvjaf^{p&|krw#K* zN7B43Q3ndd`j|6RbG zkpJx#&eH7mN3-cMy_X|8BjuNF4CIxZmZJDUc#rH(xz;H*#c>ChzO%2s8gxrAy|^uZ z!8_>&loQ_ko2z(R2;LWi+of!!M$ob5-uzK=8IE896Q((v!mON-Afbev`^Pp%78GZD zvg7C9Z(*7a{(Mzn*VFUxY&m%waL1dN)n3dK+Fxr5TZ^UUNd&YPVy_8oH4z z6+2(L{Cdqw9^}@$E2r34n0+Gc=Kb-QlI+yBuSpgIFbODG=m{$_V_`!F(MQ%HUtO}Q$tb)i5? z;lX!TjiUDxOjK7tn5BT_dG1bNgGu2+ROyZsIHdS!G)CKDH-`p2lwRYiG1&@Kx>^g{ zj-|GU5kjDDc9i;;yWZ8hB}_EL6i*>yJRh6y|{1?G}b zKG$EHe)0S}g57K>Iwzz2_)g|>!RTO-p6^vAcDgT{={IFv)eBbcMXpzQOa+_F3!x(t zxCxSVuhLJM})($cT|Y``q)cca2d5)wY+&T3Zr^@c)k<-|tV@ zuhrwve~-fWPUr!=H$Pl`=)kwz(`Aq1dhl{L<0`t>@>?KTBZaA+rr-%z2Lt_m5rqFw zQXveF^R;3Sojr;Bp%~PD&3^Cbm_NBM8*;$N!OeyEOS9$)b#APdjkr2mTFr4H3 z-B!d@clIac)pr_)mBR4$0+txzd4QcU#}KS z4^#A{$rCKbEoZD;v{JP*5+-8;PSW&$M%b{4~alwYE%?vqg>%BjV- zr-pQt>0ad3ZYbq+D%Mbq*I-P#)hf5_?(B(=;m#9gKab1JU8bb;zHwSxQKkAOL_H_N zh4ALzf7f4zDj@Gc|9X*sSU5$M|9Ovlq)9&d9=}SWa9UG8&&3rM=W!exn}#K1I6;f) z0&#Z>bbN8*$UBUts-od7%9^G(vp=L16P*8&2W&=sQ&@Ol>5@eIV{4jhtEXz(%+OX{ z-nviHR8p0FYZK>WaY|{5sFb0ML(*>GfV)ik$n0IRaskg||6IVmFCqQ@AHYQu%+cK|R6rzB8q*kQ1fonJp%k*j-W5 z)cJ+SRpk$#DRoGTV6xfXjLn4sL+#8WJV= ztZ%BDm>9cmR%{>UkTDL~bl-*}76eHw(UhE-#)t3{Cv~iBY!vC3v{%la{p))+=mR$I zThiBfDt_mC==1F-@l$u+{|;r`#=HMkT<9g3sr?6Ct4tN9JAZ7-ek74nS=M@3^5#7M z+sJ!#=s-!om$bH32#q-%Q!AOChR{@gvq^;ny`Vs@F05eT;o(_rwDvvY@#Yt;izc$@ znp;~PW<~Hq4zG{$liro%6p4*MdLF4!=8vH9sP-5tV5gpKA-$3mo#a~$fARq9yWwiPX%lg1h%9LzT!yI5l zo&!jU78hBq5H&l`7%)qCS>dE1N?=wOtmtc{vyizb7ukB03in?w#E@#cB65tQ#Dn zZqf#EX)MdmzL%PsYMAZ?d<&Oxl7ok)2$)QHsoh=D**#+e`&GWHb++ErUNRIOn3;NT z$v9wLK9bc4gv8BE-FCLMMd3Ka_w&Z*i~DrxUIQ(!l94S0V6t6$#DmzZDA_^I=#`8> z`-8h$L5^|R&N9uVKPpP}P&sgf2~a3GKMl3}`{@@*e*B$Ay29~_0K`kg!(04lyWvPCxY*zdK+0O-J}J8Y8B2t?Sq z+>#o4_dQk}uxVF=9AyA#W@)!mn{y4#hM6d(TR8@M44^@XgIe^`U2Z{e#JQA=_E zy#ongo_nDmH}UgQ6R@nTs8Nyo^Y`^O3m)NF;E|p(-_&K)_VaQ+Ixi780%@c3*v;V# z*XcRuL}z^dtj4zl3hO6`DuwMlp%|^gvlZ1bav#8$iAJ0$Di%C`PFz4rDv``T=UL^X z`Bz8j? zq-fv2vxMD!;xBE*1U?lK7BXiKU-*x|;*U?PBJNL{)ljdHa^x&57uX33atw9&jb6WM z?3fCb{+6v6e?(t)!QZI>&nB3C94kEy8+@UQ;H|sx{%l#Ds8Vw|kM1D1n&uPdUcXz> z6^v~?6RtYjceJQC*2Pa9^P~=9yWvN^Rf7i|EmPgFyEk=6M$+Q$;}&mm<9v8$Oz zv*J0WY^s_I;!?}u8zfSZy_Ul-11jBPoh;4PNvIyCpQ`Vkz7D5+$-aaB;D?F0L0f_4 zmATi#0O0uc%w6HseHZu{&4o{*?TVwqeAU*g zD`tAv?fBd#z;R#Rc6C6L@yc<4^EfWz4e}~3vn!2Q^|Io3uv+w4sZQ^3npOUbA5gYqwr;OyEy|LeY=zv*p~F|ht}w#=G77Zd7%X|Q~0ZB zhD_NP#ax3bJGD9|_S%zeVJ*A9Hx4eR_Xro4^j64=2or!K+H3c9d1abSNsYygC7(}u zHFtJD%p7151dFXuQ#nH+-XX$fq~QMdcvQIr=57{DX_L-)faUn*W<|y_y#8%9*x=Qn z#fXBiVTE{LC-6f5?d?_w`sI-UXxe2>yv@(O8$t2<;#otkFUMp?(5wz z=wB$XZzxfp9?i9fV`5?dlCy#1!UG$UMybyNICkmLe?I`fFIC2a>oZ&Bg2CipH*xes zG?L7mjn}tJ{X5!YhJVH^+H(Itw7q3ORR7vFEFqvEp`!jC0@TyzldVct0uQ;LQH*y?^^!YhBk`r@MK{ZEkb*nrZfE z79$TQ!booWG;6*_#(Ou;zc1Yz{xVwi4Q$R?eY_EXmYsn+kWS0$TB9Uzxsg*azq1uk zLn)1frxv`8?=8Jn7chgJWPf%#cL0<=>(dz+)vzsJ>ulSoh_H`e8gqg!E);WQRAfAm zGk7ty-Q8{W=16MXCIW*@#>`-FtHrA86`~LU)W-uWhgia%hm6pqI$~uRp2$4?}@_g|`HW*a{Z+rsr z;p}#2c&r|e4>)>EN~dNvR;T(^`u)KGzn10a;+5S+FYai3%=!a|I#I&pv%9VRJsu{% zc8?Admr1pHVtKmHzgF*Bln`eVM^`-M;rT{Fs(CLA#>hn;I>-f;R(%#fzp(IyKJrzQ zNmzS`N!k6cN4;N{KRcB2o@%TlF6r@NzqP-7@??JsgD;apRQ%lygY~gtS#G}jmm)^0 z6v3%eEjy!d{cV)eh}I~T6RX*7de7V37Yk=rCq?B&9JlVaMtGn!BAe0fDoq*@xbmI; zrs7J}qQ!>lj|?0eycEFHex5p(`*EhV4bxcl^QgGbQoY}5Q|LsC|D~q<+m#YS2hY5OP@_Ei|5BVy|J>9j>&Zxn8;$$x+y;nj&`B zfIHjIo9IkMsUG9IL0rgF*98cG{Q<7MOj|Q*vYm{AhGLIJn~*t|eb4N zcBVXzk*F=v0ju&>wr4UTt93Q{c`rmhPKS_Ng6#{E7YQ*FdHFcD9@&sE@Yk(%mZhGt zBl@z+Czue%l3y63aFFGoirp_yR!ErkC5_uXL`kb6vg)R7PkvgEw6L%~T!P0cKiLmZ zeGKb|-LyxU15vn^%f<>Nm}lo_!{urb5AL|Ue_I6L2gAcVFMf&!RFr$a{#7!7A5(<( z#ApD1myS--WKq(xJnkkWW$ZBobhq_}A?&P^xKmMTj@5^w=S^>$T3%P{mr6fx>&SU( zzOoWdEsKms0tx$!=yJJ{G4EuZP|JnaaD9frX}6U=sFtr$`-bD}4l8;yr>o1on-rXJ zoxi7uXWrA%ttdPLopWmgE2Nm;LUt4t)I>#TeCH|>+>(u3iZm^Fj$ZSs7v94%o0=qw zow4dI)iy{?O)Ssk+!8?2a(Te&ei|=+`@OgNet}fV>%@ssNf~u_BFT;oevG{-u`KqN z@_I_LoF`48$#|C`LxTx}hSkbo!O>Bz|FSUtcaf3Q=C;xQVro!4Dc&_E$l+QG&pfjx zB1(FyXT`yB!udLeA-}|FlT=5CCXJjcpI!0A?E#bBC&zgI-D((YiqT+GVVd=0p?JXe zkdG#OH~1w9ZV#8Vod}eJK>;Gn2Jf*r7S!a9C&oL7l{e@+xDTmrj)t)VYpfBks1A2F z8FjaE#X6p)RNHpsEp_N}h-@B^P-fJ6Bo9>f5(R|dej5Tq+z(#VGCDpcu3t4Sb1&{8 zQtgl%8^88JS43x1wrAVyd%LqG{(X~#YtBd89%N@a?UA+oeEFc#C*g&EuU~zN^45(H zr1s%<sN+tHo+4)L(FvO(?`djS6nHEbZp_m}0K$N0yIs20NjjA2KL z*W0`UzCz>Br2Xx5k<&@{^0jnpy=~oVzsiHFWO_IFDsiw^l-uL z=D1$NHUF6b>aAir+Hxg%h^Vwj{CgM*2MlfDnlgR5Je2L#E27zDOnJc&!}QO|r>6cR zs}o13$- z_o1!kgarb^bjd&&kQ2A9FjCfo1q@!zSgD9b#;(g$Yam9|p(>%POQDtFA2`zKSl6a!h~lwPY-! zRi>5VZ0}Y0@iAIhSj01`QUdgTXSVA7?D!Xskh zA>w1xGXH46JIpTu)o$*-<`fzzg}5-9gXJTz3`a%$V^tF}wr3Te-6d@EzW}`tNSsUi zd!KkXIoFVC`8J`_<0&m`1=UN1kfzBWr#@5TIVsNQ%}eW0b;3CUUZvO>(MRVl(;;i$ ztJf52dCs|8Um45-!<+UbW}Tc6PU%sO^e>^1)7O7!yu`Oy^Py?ewcNHkcnP5at+g7< zxUmfcBdPDdf82T@BglqRezQlJNP5>XrrrNhqrcb~;@*{OXU%=aN z7dxxT2B$>P%Yo8#r;lHA@ztx0-Cfh|ZPn-|0B0dmn&0BVQ3CCCao{?P1I7{EgB|8Z z@6r)X@qz&*ervtBT&zQOj)Yh&60R>n#22_oVJ_}>F!yqNAho4Y3uJe1Bd~>y-qx%{ z8NjVuEd6+V(>QBMrsN2 za=6?=fLfdyeRoC|_$aLX@gTPMz%#fE)+E)s0-hCk%M)Vs5|6$)sqT_rdD#}G?E00+ z+U7PS!sk(um0#MPqLY65sATr$^>>5+^{4;>G-@7ThlMSURXW7FcVwmt%Hw@WHQ99b z_@VtT%*g+Q{A+xu7oXgaCE4j7he8ZKYqU8C@!ONf{Z-N=)0}QDpuFBInqO$vShVV3 zeLz8M*Gn>X0gwx9zfWnqKQf?nGLCpUGI9rKsXypwi_@e9(+VIPV?V||t{~qu4SLc2 zp9tQC$5iQCE!9L;z1S0@bnKZ6QjKsCK%6JsS3Q*9$C9XnId6ktg}w6}z1pXU=V>uc zv{9CW#pLU&B3zxW;W$7rWGv;cDgUG-*6v8JhJRV6a3Zj zN+dRevghvW;Qx;ZRV$BW{Xr`?X$G%#_K(<3y!Ah4a8$}wru9E4&0*! zT0ubdl!+ZyZd$WZf2qjVl3#_i!(}fjYW=WYz37vi@@^AOifEF@CIj(g&HoGB>`W~U zAH6;yuqO3?7@#1@HR5-3U1|M7u({dTwx7TZVqlQuXAJvqiXO{@H_tUC|BkK)2#`*C zLF%hG8Nn=E;m`b_!czqRiEw!Yc`m+x0jhT>EbtsSU0%c^6WZq8fiGJgd1C_ zJst^-<-%(zsOwEP<3WBTXEs&3_r7STWe8P%PCb!q?Pj{H8(&bQ@lo9-jRw1Qs@m$t zPLP*#_Gn8$@^REFQFkHHzuLMeO0|lHRa==*mGXZfhdY@j z>oEWwvtNJ>JB2fr?Mc z%!qcHE<71=%5L7@Dts`_LVI6ZlPN0BhNRCK@3P!n5?A+b;uTyATs!1d{y=+k*;tJHBMyj%?t<%EWfuha zCiE)%vD~s$zd$Z)M016b9yQ>_;SNfJI?r7Mq|8&Ist9Zn-}nBLx>-G}TZY^tez&s6 zhPGD8dU=y&@~-$>>@zD^;$V)&2=zb_7A>KcmVqn-dQ+_mi187qC9#{n;zx?8uG+kK zU~-Iib7bH*iph`eRljU{@O2$pq94mK+3#0w zrkFa})fVtII>tXfmQ`mVa3ccy8*Fmuzu~WHQv!l4qEB;f7hkd;MPic#S3n(~CeW&Q zRGaGB6N%;NrKS$Yez2Zzi+q1%Kj$g`zPQDrDQ5^EP&C^hlNU>d)sl1hZ40iKR5%8D z**|E+Gk6_ps*5+%cGh}c0wM*92daPoPv5Hsaqf*c}y(P{~m z`)U8ZynJ_sY2M(FE8xGz3(l)}l40DgXk@vGkP%R8e2l*m zwsc|B)DuIVsj7D&Zq9TW5RO|0)2zc2*3a*ZC)q@dcxmTT~$|1lAG;f$v zi4$!laL;Cs-z+wZypfjjq2w5Jxw?9#+fd^av{LsA7{yop1B~d|lo4f0H4sm*-a$Cn zF0{@E?SF_QE7Aro2mR)mfOGwG6%wf*TPFGPA#}=8ez zgN@+$<{rO3Jrz2qM%LuuPga$3f-l z41kVademodHV=4la&r6dZ~{dh7lh}oBTh#nI0ATbfk05Mn$ z{Xh&>!-OdyvN({8=rq~^n5jYDg-6Hkm2!C>1MZ|8I&R+5wZV8;pA2%~`N-)e|rnBTpeW^>c&e&>gA<@`_cEZ|{stAAwg zdwTy)ytC`ym;`<|ZgKCcs#O>|*E%3v+StT-LI!nwzx3|WTVMdq=X-!S=gG5H3mGh0 zo1SFnJ+K7p$@R6WxhnE`di2ZoHIUwsq6F@H4$44 z)}DpTt{F`~H-7!>BUw7iA1O{YeR68b5Fi%&lO&XdMdPEb*vnRYSWFalIP9yj%p^>E z#-h#nog5HcUe?&Wqtuh#WlQL6`rza`7@aCcg*t(lmh40WG3i>~=lYUgr^`%)(9 z5^4)?O#;F$;M1~N0WmX;yzBSW>D?X%3|0WVyyQQz5vV)8%{jzbt9?|T$PB2Fxf#sp zQ*A^5VwxiwoGDNR;1K|)=VN7FaZYa!EC7q)wgW7jd2y(SuV;!)6u}(B=v~L@nr^N3L;_Dlp8_fmp!eD5p|d%2|fNCbP)nyzz4{M?=6S9dYVg zL_?`GBzu3&g7Jp}s%RlWbToTJ1SBE2V;)lk`HNTncT=|-it2wfxjs5gP+CC*U0YL~ zvyDP_d0H%KFp%;M+Z)%iJLlRwQ{INi>5zI8?-Yr`~P6N!g3&?J4{( z(8tgT@r<~KzQ~I87NYl&m4*t)GstAkc=so^D>IniP6{2Ckxm-2X#&)k%!so$7bfgn zELR3oXO1gR7#XQ(GI@41Y)*I2-VffMNHa?S)Q-Ul-XULV~qvmPNP{j&yA*#}H)Xe#Z?rzVzefZ-F zo+#ik^r+R^NdibnmkCWTp^$17QP%e2#nbZJ2}5HzU5)f#kK z7&dRLHeL1AXl7$sAGvRjd+K9h;k&e!`zxXmOX?7l;c~ZKmj*8E-tkYhA2#9{fl&UPow>2_p_* z)ZV(eK&!$O@fOKWk2e;+bOMI4J+KbAhovk%j2&`33TuXKH6vyaovf-A!+RJRqw1lTA2YO+n^%15gKem^V|XrHS5dwLsCBP&EfJ^tbMl+L$;GnuptG~= zl^Mo7wN&E4-#;9)eQZT31n=#B3H>TkwuUZq`2`zCB@#Q-Y+D8UC-n-HR#H+|C}00a zYEEG=P=jnQQK6F*%cYP@{uC%303{;^NB{N!mw)c}u^0%NA8jY1tdr_!6h zfXu~geZ3+tC4gl5{)J>7bOh%Fn^BFVlah-CD_L*=kOlw-=8@td4rW|7g|GJpE9lb> zwoT48red3xQ!gE6YsM>VUjp5aBF{!*wpic4HnX*r}BOeIGTuY6| zq&PMM?SAS}C%^P44fg{1KCSUubI@Z5$=_&Zt^%F3X+PA-rfeZZ@AvZl;mMyN%Iu(f zVg4b;Kl3k9V7@{3y2(>(9#VuV8c(ZNFZASJHp0zUTbl4{<&$l~u3#^rDNk)L?M(|l zn09x*S+Ti<4M{7|)~230)SmnpIx}s87cMoE*r1%!U0D?Ad?(q~D;Zm8*=`d)`|U}- z)v%hV_(Q#@TmnS{p3cSq`li*rdW4L|kG^xClru;R)au&*7n*suyL5LQlE8IC;VP?2y>)00aqpK z0~L`J4q2P1GIrS_p*7>~+%ffr;LTA`1%xDcWv@2nW<1CaP9()Do&z_<0?+zc@L%%J ziluG`NNlty&~aJzYAuTz-+l$B9M_DxxxmbW&!tmf zZDmC-_uGFy+>^&BiA*oZQ@AEg*G4r9Y$uuMxgOL4h(ZJm!+S})ciz)L>@V!qfxg2Z2v-&*=)t| zu+ZRl&Nx-e4zQ%sm=P0TR<~|Nyet1nl--|K{x_K6M~P#Er#o)UBGFW4#lZsj zk%>Vj>EBmI;zKxPf8vMxr(*X-2F}C75~B;G^@KqjYF$zyqa&e=h2rjq0w@Y`x%|mF z0g{-cq@?@D+&HSES)o04ib`=py&UR-wktQ~rAE5d0n^h&%gf92-Qh2>aB$M%EH&0b zwq_4P1BqBVAQt(K_SK&+AF?Z^^qD3QO=PCD=#HlV6Nz<8Rl(P7)D5;_yW zUG9{PSj>ioV1KVpm9cUnWl0p{RTRz=DH2fZB0T3b@}0Qr`n%$JZQfXP2WngauS9-E zK*y=$?ycx^$(ZyQFB6+7`Fs6Va586P_6PS9}0v1(5!gKcXZ)a>x3Hh!z zcN3KDMYC+1&U?Usk`RDp3hyF){}-0IV#u2)0y0lRI9;Y0x$tzISt&rksOKpH@QoW# zxq(oMpRSCneM(zfZ%6+Mo1cG0E~BLd`P3|kjf0mGHftdNT$8nK&5-j(!(OqV#I*QB zzAj2-)f5pWIVIjtBr`ZDBaXh4IRESl8X*7yTpE(WVjdaD@aq&N1g-{W`Z;VITW9b` zHg5$4JU8;sJ_J}i-dx`oc{;Z}G_pV#0(87h90jR>rT{cyAw64QvkKI)cDVbJFF;c& zzPCW_+$VB+*}_?Si#=$Ob%!kW*siYc%H%V4IpH+~{WfAy%Xtbj`qqBW$p=np#ydSn z7oG1o6%Z!&9aSD&=L34%#=hiYaWNC^luAZvsls)1JP^-&cIsd8sPB93>yMzDp4B}7 zD&2vb?Zlz7yZ^gwj`SZ?bFdc<(G9kB;03-Zh=Q}Bp_T_|C2ioUUPFS#9dU|xK*1(U zXRQqn^eeD}m;8jC(T*3Y`Ll_#(h;oL5AwZu%%$Ef0UrI zmT+_bgEoY@YC0Mw^Um89{-d%TK-Ru+2hfFS{uo z*w7EamT&AE^g)_PE<#^^BAm0Dlp1XSPQ}M=e;il<8gupA*#hrC>CE{!Gy2{Tq_78S zMUr6$DGD75Q=b~}$Y)Ey9Mn|w#f#3fHct9&vTSVZ0 zjmxpg{v4NceYbX|-v>Bka+<0O@l>q3dh85M02*9x9taGam3JvuugQLIu0TTvC*m0* zD-StB2Nlh_dxx&&b7pxWn@5I6?nh0?QKy3vof&>5udRn^6ON=-Lg#E2F8-zUoT$~f zwjf;{k0_s%=j1hE0A6fD&alz)%|QA~;|)2Y>6#9pTGwfXNUy5ONq_DHs6Gtt zDx+0X8)BYwr)NB%E!_`Tq0ppy15UQM?Sx9hhj70)zF*ZfzdXfP35+Xq|1Txy_JOwF+)XL^j9dun>tdKEL1hs{L=%5%!+iQoj@O4}=kmFE|CKu9hO zp3mEki~>pIz9?ekjt(#`D3+~D;>DOQ2G5!m>J3=j1IG49tgmjeYLz|pLJU`(%{|H&()~KKjpc8-K<{G z-n>zuGgoeAX=^0{v?(&i#98yXoxHF!pMF!;)5UP=jc3``lX5p1(83H}T^td+$zz}c zO#Q?+1`IkeV^tb1kDom6=vabLQp|5*%!+M(5e}0@T!BauE(mSlTU7749XG6#r8TSp zNnaaR=bcIGUA?ZCgWNaP@DxN`J}*l27tWdxP)sHslUsoDOlPVbnR%nRklFaoFsm`} z@0p+W4zF3BL>1v%9<;IUEaH@37Tv;(dqQt2?fm~oG5-q&%Y=KR z*5q~x@&0Lp3W~aCup8XdYt+hoWsn|$Pw1uC9YOk>(0&w5nrlLasUp zh}{Fjpic=xVb@>ByYQfui1RZS<-5kpHK-!XI&NA!w(r_P}sXSRYxa$SQ?TJewL)4};H{JRNPNviT11G!AJFoErnL3RwX8dtl zEir)6m9FMc6Q0})LxOs>YD6}^{d>F6*96FRd+krNMLGc0*X^Smr;5p{tB;0Xax9|Y9JfYSQYDGoXDsGYJ>IfIe%g2-<7dvIzKRt|(zDT!!hUxT{YVeVzP0A+)*uuk?6=SZcNgD3TT{SEV3_`JKDw8NNWam~c({fN&$ zmP;loxR1j2)M2i3js_G|ui_4^!I@f1?QMsBB37BAZ}N~HQB%DJw8M)6xSCmezL93-s4?K2-`B`o^9x zeRYoQe0q=5X+QChPFO|e_&!o6pe?dm+bQVL5;#WJ8cim*8BaIt&E&8oanDzu>_}(= zsJiP9)PV59a|#+a5z?LMPM*_B`RTJwn7;=tS^DIfHr-0bwsOtX zCo`Fj;5>H4pxmrxS*?${V<%r}Mog#>K%20GQ+df}S1Scvb~0Z2Jz<{cs0g3DvYhhN z0A!CKtM3rZHBt-1(Dg#}^_364BuVU>(|%Wn{AiI;*jU8WEmAQf-C^}(ZHz`I)agvc ze|1ASM*!hyk=F}3$LKSdmU{o4u%U#6K$QZlHD{(U$N-%bVMhIzu|g@pH*%0rMuGAbpG~`3^`3@|v<&b)Zx?x8-Y*t)|bKK8<`9i53ojAmH zE1R?Q5XIgxutfvrv@c*Ln`IGL@HS_()U_KI9rdXg$Qky!gjz8Q&tac6_#rAOA8hc+ zUzq%Fh%5f&Yn)BmZ<{q>yPc6>zP`$*4I$lyriDRbR3gtU%d`;LZHB(}JR)>#i8L62>wrxsJ-=6UiI22GUKt;uL+L~dypll$yvg0D$EE; z6G#HRo$zfduhA##9hpfHDbU;k40;n$O1t=Z-PL92L5Inw9-z@3*zCXqB|mLE74he z?AwH0#R;FJm@`QDghHmbEg(*rF3_ieLDl>7k2ex8v+;3Ba2+yu7;T@{9W7!zWov6& zFPM1}+41Z)Naxv$95%jO-28CBOW^F@X0w$Z_;wdcJe()3ou{&4L1zMkwv>v*M|e-Q zwGV<$(Np!n`a{JPt1`kpY6>O9zB|iw!Ymd7UZTP2;d}KtyeQ8nzVLK>ePVuOkT6iM z?Y3HLxtE0*O|Bg$J|xO5wZ(fARoWjKv12#{+Y}}!^r$R?b38s)HtbDZGgP>B>pDYj z0da3V6KW4ktI&3Uio$k9Znj;=EjnAeEPZVw0vXJEys)-j!!3-%AsF@r^Yy=G_19{97)~p@ zf$#hLUVckO#7`V$Z|B-Y2Apygmzz$rR}@>{C~H*&9!va-%JjgjG)Ht{zap-6etM9h z#jqyT{XH!e6^|;k1*8uqX2QBgOlI$x-v1u@;Cz^DYlNB4<`bjA3O!eV;&`<@C5|W) zBb}7vh_{$<)EFPHqrW3(wPMbPYF+&w3Q+s~k6!sKO)dFJOC7Pws#3b7f~IP)wS*^> zgEKb)8K-tKzc$+gt~XwP3JeC zYHK?~`P{Yz40`wtmA*arj~m{Yp9kR_J$bT(2sY!OVrw3SD=z#m0Foc$!R3r`9|@7F z#b4Wv*SknIrEvdS%oz7p*F$ZGk@(8DG?{$h^h5XnkD{PQHs}&9Na%RiIqxOAdVAAz zA14v?Y@IjPsu5Hz{Lm}=qQ+82y)`HKR9#!^!-gI!ae84>R|Fy$!b{Kkp4zHVDqDF> z$yV5QYg|RS-QiVP*V7srb%i+**f(zX8}2;Knuw>Yrf>FbT7xjTF=i&1M`AmC4m2eS z?hWJEyf}sGRqRN%ushV*_S4tx@FOEB^0+cjLPF}lK#I(qn5|k=j)}oB=x*{LoOS+V zB2?v+rKUAXF%gpvKM1tHUX81FkntAAeot^Kmf42EEfhW2oDa3F%B0L9T z=$owO(Lkl%ctGq>7+dmE$5^{lzW0DniOtpd3R#^i*asap;PLVl4`NP2&iURfHJ%^R znCKfj$|lzF$@&Z=z~$7c%DEm2og+3w>+K)7ybP%4kU+llBt}|~)B^3CVy>}@O$lKvlo;vv_;yKvy2P038Ix%&w~`D zrTY@EuDI*5(9;p9jh1`aK(oXyx<4>f5YFZOmVEeluVkLE{TLIcD~!xZ`9%1EyL2$c zE0&U5p>~$@{bDz<4}%>i&3ddBsMO21)oHRQU4B%EdwpKOpV-{NBMAABEdZT(aVhB= z@o4X$Ktm%TJqtU{iYhV^IS~fORqReCyM!1s)5_tASBf0e*7BzD1S3C)2*+S!KF-Ue z!o{tsOV%m^y?10?*%RW22K-_}z<5T})ZL4LX6zL>xVW5?EHr(bmF7)*e$Y#FgN?>< zpZaiH$@f*HT_xy&98UQH4EcxIy2~+RG3XH!PjWjBQr6VOYRX4bQsPZ4iES17I&F)w zKqh0~VNp7oj-yQ{r1>F4D}e{>5*>$}69Y$(H1vy2Kl}kk>-g<;{C)$*L5|{;)WAP` zlRQ?Vq$RF1;>w{Ue{^lvtAB)?9S^uPq#H^PG^9b~W3>GPz%9W! zSq6b_i35M~`dl{-lv~bxa%~?toYxaZb_KVWv9u@KbK^g`$nb@;d2d-g%Q-%G412^` zDK$LAX68Nw=JC9~=Q@;wz{A7o)N2H}oYq18JIE>V)04*g+D@WKAPFvsxdisN9S&;D z{W^vwyei^iFcQlPs@n=zE}qMNFDZ+$H(r1YG=$e3K_FX}6$-?==f&{NtvVUxj$gN6 z9M42*Z<=qC5jye#rOCc4%i#;=Yu#JkCB^-qnaWF~!6crVywMP+RkS>pJx$iaiBlK@ z34-3Ra&bt2iz$dBHXoA1&Rah?IAmM5qE*Zr{cEu4PsstuMV56aaos&BB+{)@SFHy} zWCnf?gB)JPrGNU3!U*A`3_NN)lgg$HHd<)Y;g2 zD^O)u#K6%IrL>$mOk2x5LQ%BBP=Lg2D*v!Um5!bx4}_pMqAVvJD`s9lH#E2o@2u2J z$?%+A#XDh0#}|k1LAlntwS2K%uAQkxtGD`8)PCXkXNbU#_L-31 zkXIdv(*_J{{bHlua5G$PqU>ZlOl3S$M80#i=e{v~psN6s{Z1b?Ur!e4q3%q;$R!;u z>N(=(t|GOQ6Z;vQ_PCU}pOps$DPqsBl)9Z;0|hIaw_={? zX)wM()55~>!E_Z(73IBTS3Z<1tHM;ZsV3oI@`88N>c_tgcl;@V2?G$E{ zgZ&SlPzBZH&&C`RJtE+Wh$%Hs$@aM!OK_K}BXRP3h)OrmFy|KFrqTcf63ba&yKpvr zg*u&>dCfFxIZqZynFi&I1_B9=r=UF8#8?9Hdz&JzzG&1VC*gZ_VhwxOBs?dFHV<=@ z@`jzvnkZ56*zDeh-@8XH_f}XyK~77GwIaItoqbkua3Epdl3AAj_!MqQdr+EwMSK73 z&QvCa#Z+OoA~gr8XU8p?9+bx^OIt*E}!XXt6kNsq3vY+(6wc1cJhW{M>`;QHBq9oi_D!~ zx(y|X{!cE=zY&g}i-^ys^{j}Q{&3dQt%#UQSJ;H;+usj_e8<0rrTe#%@CcFsjsuf( z#1a@h=h$r|JlSYkk78KJ@f*+q)ZEo%SZq7PnLStf<)I_H*_rP0;-(<^L?Up&22NY& zZ$G;jM6wgj*T`qcIh<^E$qbg7sXMK;QDdv+(b#Uxh!Jr51QO%~KDFRw_LLNv@u z`fNFdJo26!_%>#c1sj}rR_1tOjNV-pyz4X%=iHKXbfq+2pWwdQCw;sQ4qb;h@98b| zag~}4QKX&Tm@rd^w75Y4is9+i@zC*7`=c&Pc^0N`)?jNzbmlxyi?Q4!8P<^=9?|LKtIgi_{uNU{c;ymH0(?rg zf}1d6mrd##B+m7?FMQw6=Og4*gjt@pv^UHbGQ_aB5ykiYD6OGQblx0iRAV(@J-1{! zhE=o`d(wpj6?GK(UmC^op{Z+MI}?=c40?Y+p4KI75OWBKq=rt-f`o2-)|J?kNDE9~&MTyOtZ zsY-(ZR~}t7MS%~L!vQ!lKCwTu*OU1asl>wi!OS4IdR-}Rykytp5Cbil z)%2^^!K;5Lo5$z(5oH4Gb`19*JEm8YnP`;zU%TE&%5TkwBVtgKX!B*OHb9vMS&W8! zq=0B(F?6EDw-$Yh#8QT}x8%Y79Y?DJe$@2Y^$yXs;T<6EWTKFTz6So0t>Gl~4Js!l=uQp0U}_BLSN-4u1S-ntfMFah+}8j?Aqtgfx( zoCreAD9uDwXdM(dMKkS`c6K3sC&G=E&3P*;qOXgyzMHz480HDmld zMwzPQhZn&Uhs<2S((+v|GOZ~{NG`l83etqF9NzgUCFET<$z?3t z@KP@4cajQAK*Uymkxc*A@Sq_9{~@&|;&s{|4k?yhff+dNk@{UJZT=wISFDW4c9HyN5mz)eG1H?hcHW z_jj4-FqS#GOf4mZL#2>8TB*2+S-u#{Vynr=R-Bkw%oPrEfSI&<=&l-+QAi}-a$5=Z zsOkDK#Jy;nbo*qTwcVpqqay@9(65;7O5(F%=~Is_EaOvonL~?u!m9enJ1Z~pcR&BH zyX7Z&8yZoagq6X?#illH3b^BGHd`auQd~QMqDp zYK++3ln3Gk0gBZJQ|?rE9Gf-%578gp!H=rR{%y5?|G;kqpOzpVMo0d~ z4GSpbhA>f%57O+mL2FA3R*JfU=B)T4ybec?a1M*~>n^hE0gmj6wY!;0nVh2)Dc-a~ zudF>l!?EzWE~5a{N230_tug1U!?M-y*W(gpeSt$AxNBx9(ShGWtsHcYLHyIxiV zwdj>^Ot)DkjJXtswJ5CKJ?yD;(FDoKj`aluct=d8Ki6_hlQt_htH?WS6nstGhYFs3 zPa$%9lJu&lS+rLg_lI(O!)^Yxxc7Tub53X5=2#3L&f^#VkZrMDB^loOpOfgg$v*i& z68O)5Af7K0VHNV+QH27h09E)szJj(qsLo8MV7B?WOVsa z-UaF${2=IRG*)d_b7eh6mJor$bW?25f=N9d*+98z|C9FcGl*8!C= zANG92LCJ2Q%IzGA^UNZGA_6KFF;qLd;$IP|gneEMyS`$c87*ii_e+kcNEApB8|t#3 zQzVHJ=PW{gYW=0jW6-`6(`hfwsMN4MC(dh!$+min4o4qT^reGq(7G+2>)Ex^T`BA2 zTXzKA98)d}&@kcIrSA$_YkmL=TZ^t5DW-&h`5H9J-w_mIemH_T@9K51;DuXQFrKbl zkLk++4Bv2k$6-&*txR`=t&9&5{^Q7c-hfArK|MM&1N9irGoZ=3*qfr-SmUemnmwiV zuHsGMsLr3XUGXWD&-p%#@USrZbUt5`#^4!^*MNC{rfli@h%$$TmNZz4cjRlhJ3~}G zqs}KLe59g`Wy{_b+#gjZ`#>(0Owc4W;)D_7m}IJn_*SevD1|^eI9(a)BItNqw&fP9 zN6VVAvqLB|c!3~YH!!4~#1RTjk-fg8_98^H-_P|L|KMlKI8#mS6mJZ9j^=XpSD z*LZL8XbIzW(4$Vn0%~6k7Uuz@OCERi(Xk+*TD2*X{(K6G{2W$`vCez$hk6L{6%`fb z;`RUWAp*diq^n}it<+ww){wtyvr(*-3GB zAN$Zt)6>;2-G%xBxw1K6lgJjB>;)weRNrB1-V)#84 zb=Nkh&jB{2e0QbtF}-I8BIa%#l)w<5Jf)e$7@7Amj<0tc9QvkF)_yPA+#*344a=(W?_2j)~+GGFht@4B&fQg zGiNE&6)zmZ`|kc&-J7)CoW@L%Kw67zffZ3uu%eOf5!KFR7sG9fN~lhe`5o;$YBF}s zuGc>`(w-vO*F5dI@rZqjzcfAJ)f-#UQAU)2TU=7OU$CD8IVNp#71Sdpmv*28Lpi_YIy<=ygvfIz&2-8H7`cfCbV?wC8KAdfGtg1OugT8VX(R z$Z?qx-1bA(Q4q*4;quij^G8d7>Ffb;o|mT99!vN-c03ggSA`=`p0drk2&J&ch`$oE zwh~^Re7a}Z#bV*8&){-qDZZe9Z8DZm3y!qwD>>*F8oDakf2^0lnX2!)RXU8TT(~zV z+WC<6-bVf(!mA81R|6dz8(W6eIll=dtOJ;tPvz>+vUR-j;7eH3$<0~+7HS0%Lxa5vOsq zBo_Hxfp*9$%iz9`iF_GA@4UL;IaKx--yeiCoq8V;k!q4-|w|d z@%K5zrFkLCFywD-s5_1x%vYEnkRhUtLHtW>`soW>P^lo|0JVpDkA2q~aH_te4`D`c z=(L4?l94+8I_zCb+~s%gwlr_C2+E7J&pjDaegnA^+V|eU2g{hN>#@YT@9#ba46u%tuOgKJ;;I&)maXG+<4yLb zmeyIB1|e7=15HXoqYQ3sO2UoUlKjx1Qr%@vRiHO&!7{SyyOjb~kPZ9U^h_>yIQTew z11YTK?NAWd?{0wC^62q=OB`JZay%u;76+t3*yRX5B;)}cCFcG-0!9Z2k*!H}tq%wp zdB^b`Dfc-m{PN~;t(9P8f#ee+8b*&6M(A46CXTe5;rw@ThiQfP{Mr`IqFv6Gej zTQ~xID;}(sD6pVBk&7pZBPEIdLXvq&zPyUFhi9_GUW~@ZIw@I0zA^yC0uAR?fa*9a z4@Q6Tcs+^GgZHoQ2tzS?wrRqRomec;HrJV1e@oB$O}ahzIK~}wceYLtj0NKM0Jy&t z&hdPwcECd0=@j4r@f&9CfD`U2xd#()G+0lx*hd^Jkxa7?Su?Ji4lKk4>E@P!J&A)q z2A!OY4qW&wb;=H0q>G7}AXhsfuE85@tZziJLbtMXm#gn{0^dToW4#PATW@q31wA6n zS1;^aKL;@;r|d*JO*WmKzN)3Mb@gsKZ|I~HYQBiGs9Kh+6P(VgHq)U(v38gy(0Vxqs zYGBAA2Dp?;=g>oojD&OyNJxm%-AWBD!T>}125-Fk?(@!nv)0TyXPvY5KEM6h-?O&@ zlD|PhU*->YY+z+S1x<^bUiqQRf!NCb`C*?>=WOTa+~`vc@x=ZGT-DLhad(=Y9@^Nu zEfUonTgl*GPW`NgE7u(X;S@55I}7^E zsX0`?+Hc7>?bq8E0~>fAej%|bj9P+ZAY|XTAF|9G^`!5UnfP4^k`0bF`+c6a6~%WU z_$cjEz{a&uYGu~kP^?&qNqN!@$;f(Y+-!0;8pJw=*RDt{+pcrFeZHCdt(lnL(>Y&^ z0Vdwi&C2yD)+)}SIM1F4*u$2)2NnrD`DXX0VxAtphOI9*0u4b*Y*3)$1rs}*0_x;J~Zj_MZt4=$|;XGV2rVG&% zkMh`QDlT4vEtB#)lhB+DrNw|tsXqlXHR!#oKw$r;;tQvQaR$%VQiaY~ku9R%wMmq$ z{toGXk5qIKOET;xep`rgG7fIM6GRn$K={!&bAqUx61 zCUe@-(MdI~Cm@oj5*6F2N*acnD%IU_1qTdkqC#AeOXSS<_vaql;lYioIT__WUxoyU{u0pW=6jG}_*#EUCwrp|$u)dw1>q@*IQ4Ov*El{u(5Dl16m_w9pOf19 zy~*)Mze7%*D7l5yZmsE9HrcCB(`mFpDDL?mXrhO@$Cnpx6i17b2O>W9!%aNU1A(5C zxDig)IN}P$eDsAhTPoknsyrb3St-mu5CDIkH@x8Pg0KBJi3-%XM-B zbd);Ggn(3JWc@`FiHHgtQiBvs#lS&)&dwhfCqso?>dX7BqazV+cge}6R}BeV<%qDE zha6%xcGbBeerkXL=SaqdR=8AnNzFFAmoW)p?C(7f*IHc1vDf